From 8767b61d59f0da11c39c56bc4593e37f2ef9db89 Mon Sep 17 00:00:00 2001 From: Tanjona Rabemananjara Date: Wed, 5 Jun 2024 00:41:38 +0200 Subject: [PATCH 01/22] init CI to check new commondata add manual trigger add workflow revert mistakenly deleted file --- .github/workflows/check_newcd.yml | 32 +++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .github/workflows/check_newcd.yml diff --git a/.github/workflows/check_newcd.yml b/.github/workflows/check_newcd.yml new file mode 100644 index 0000000000..84aad4adad --- /dev/null +++ b/.github/workflows/check_newcd.yml @@ -0,0 +1,32 @@ +# A CI script with github workflow to test the new commondata +name: Test new commondata + +on: + push: + workflow_dispatch: + +jobs: + test-commondata: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + with: + fetch-tags: true + fetch-depth: 0 + - name: Install NNPDF data package 🐍 + run: pip install -e ./nnpdf_data/ + - name: Run the filters 📦 + shell: bash -l {0} + run: | + here=$PWD + readarray -d '' array < <(find ./nnpdf_data/nnpdf_data/new_commondata -name "filter.py" -print0) + for datname in "${array[@]}"; do dirpath=${datname%/*}; cd $dirpath; python filter.py; cd $here; done + - name: Check for modified files 🛎️ + uses: tj-actions/verify-changed-files@v20 + id: verify-changed-files + - name: List all changed tracked and untracked files 🛎️ + env: + CHANGED_FILES: ${{ steps.verify-changed-files.outputs.changed_files }} + run: | + echo "Changed files: $CHANGED_FILES" From 2d1d9cb3be653646599ec538c08a0dfed6fdfb0b Mon Sep 17 00:00:00 2001 From: Tanjona Rabemananjara Date: Wed, 5 Jun 2024 01:21:28 +0200 Subject: [PATCH 02/22] add pandas and numpy as dependencies to nnpdf_data add filter dependencies as exras & remove underscore --- .github/workflows/check_newcd.yml | 2 +- nnpdf_data/pyproject.toml | 7 ++++++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/check_newcd.yml b/.github/workflows/check_newcd.yml index 84aad4adad..02d5d84fe8 100644 --- a/.github/workflows/check_newcd.yml +++ b/.github/workflows/check_newcd.yml @@ -15,7 +15,7 @@ jobs: fetch-tags: true fetch-depth: 0 - name: Install NNPDF data package 🐍 - run: pip install -e ./nnpdf_data/ + run: pip install ./nnpdf_data/'[filter]' - name: Run the filters 📦 shell: bash -l {0} run: | diff --git a/nnpdf_data/pyproject.toml b/nnpdf_data/pyproject.toml index ab828cf652..7a9d432e43 100644 --- a/nnpdf_data/pyproject.toml +++ b/nnpdf_data/pyproject.toml @@ -34,9 +34,14 @@ include = [ [tool.poetry.dependencies] python = "^3.9" "ruamel.yaml" = "<0.18" +# Required to run filters: `filter_files_dependencies` +pandas = {version = "*", optional = true} +numpy = {version = "*", optional = true} +scipy = {version = "*", optional = true} +openpyxl = {version = "*", optional = true} [tool.poetry.extras] -filter_files_dependencies = ["openpyxl",] +filter = ["openpyxl", "numpy", "scipy", "pandas"] [tool.poetry-dynamic-versioning] enable = true From 306db71ba8ff8ac18f2d2d0e3a441a70e7a52add Mon Sep 17 00:00:00 2001 From: Tanjona Rabemananjara Date: Wed, 5 Jun 2024 09:59:51 +0200 Subject: [PATCH 03/22] fail with exit during some events --- .github/workflows/check_newcd.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/check_newcd.yml b/.github/workflows/check_newcd.yml index 02d5d84fe8..04a03e037e 100644 --- a/.github/workflows/check_newcd.yml +++ b/.github/workflows/check_newcd.yml @@ -21,10 +21,12 @@ jobs: run: | here=$PWD readarray -d '' array < <(find ./nnpdf_data/nnpdf_data/new_commondata -name "filter.py" -print0) - for datname in "${array[@]}"; do dirpath=${datname%/*}; cd $dirpath; python filter.py; cd $here; done + for datname in "${array[@]}"; do dirpath=${datname%/*}; cd $dirpath; python filter.py || exit $?; cd $here; done - name: Check for modified files 🛎️ uses: tj-actions/verify-changed-files@v20 id: verify-changed-files + with: + fail-if-changed: "true" - name: List all changed tracked and untracked files 🛎️ env: CHANGED_FILES: ${{ steps.verify-changed-files.outputs.changed_files }} From 411c932896c5b5fd6f16e5856053479f57ded191 Mon Sep 17 00:00:00 2001 From: Radonirinaunimi Date: Fri, 21 Jun 2024 11:52:46 +0200 Subject: [PATCH 04/22] add uproot as a dependency of the nnpdf data --- nnpdf_data/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nnpdf_data/pyproject.toml b/nnpdf_data/pyproject.toml index 7a9d432e43..c0918827db 100644 --- a/nnpdf_data/pyproject.toml +++ b/nnpdf_data/pyproject.toml @@ -41,7 +41,7 @@ scipy = {version = "*", optional = true} openpyxl = {version = "*", optional = true} [tool.poetry.extras] -filter = ["openpyxl", "numpy", "scipy", "pandas"] +filter = ["openpyxl", "numpy", "scipy", "pandas", "uproot"] [tool.poetry-dynamic-versioning] enable = true From 5aa3c9da94595a75169204d3ad9f8ce961d2fee4 Mon Sep 17 00:00:00 2001 From: Radonirinaunimi Date: Fri, 21 Jun 2024 11:56:01 +0200 Subject: [PATCH 05/22] fix some stupid missing line --- nnpdf_data/pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/nnpdf_data/pyproject.toml b/nnpdf_data/pyproject.toml index c0918827db..ed61afc86e 100644 --- a/nnpdf_data/pyproject.toml +++ b/nnpdf_data/pyproject.toml @@ -39,6 +39,7 @@ pandas = {version = "*", optional = true} numpy = {version = "*", optional = true} scipy = {version = "*", optional = true} openpyxl = {version = "*", optional = true} +uproot = {version = "*", optional = true} [tool.poetry.extras] filter = ["openpyxl", "numpy", "scipy", "pandas", "uproot"] From 6c53d9ae909ed9911022b1d619c0acf77620b204 Mon Sep 17 00:00:00 2001 From: Radonirinaunimi Date: Wed, 17 Jul 2024 14:01:20 +0200 Subject: [PATCH 06/22] attempt first not to fail when there are changed files --- .github/workflows/check_newcd.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/check_newcd.yml b/.github/workflows/check_newcd.yml index 04a03e037e..df41f02bbf 100644 --- a/.github/workflows/check_newcd.yml +++ b/.github/workflows/check_newcd.yml @@ -26,7 +26,7 @@ jobs: uses: tj-actions/verify-changed-files@v20 id: verify-changed-files with: - fail-if-changed: "true" + fail-if-changed: "false" - name: List all changed tracked and untracked files 🛎️ env: CHANGED_FILES: ${{ steps.verify-changed-files.outputs.changed_files }} From 7271ab597688beb959ef20b7dd332ba35fadc0c9 Mon Sep 17 00:00:00 2001 From: Radonirinaunimi Date: Wed, 17 Jul 2024 14:20:53 +0200 Subject: [PATCH 07/22] move TOPO_DEF to main poldata utils --- .../{eic_utils.py => poldata_utils.py} | 11 +++ .../ATHENA_NC_105GEV_EP/filter.py | 2 +- .../ATHENA_NC_140GEV_EP/filter.py | 2 +- .../ATHENA_NC_29GEV_EP/filter.py | 2 +- .../ATHENA_NC_45GEV_EP/filter.py | 2 +- .../ATHENA_NC_63GEV_EP/filter.py | 2 +- .../new_commondata/EICC_NC_15GEV_EP/filter.py | 2 +- .../new_commondata/EICC_NC_22GEV_EP/filter.py | 2 +- .../new_commondata/EIC_NC_211GEV_EP/filter.py | 2 +- .../new_commondata/EIC_NC_43GEV_EP/filter.py | 2 +- .../new_commondata/EIC_NC_67GEV_EP/filter.py | 2 +- .../STAR_2012_1JET_510GEV/filter.py | 67 +++---------------- .../STAR_2013_1JET_510GEV/filter.py | 54 +++++---------- 13 files changed, 47 insertions(+), 105 deletions(-) rename nnpdf_data/nnpdf_data/filter_utils/{eic_utils.py => poldata_utils.py} (92%) diff --git a/nnpdf_data/nnpdf_data/filter_utils/eic_utils.py b/nnpdf_data/nnpdf_data/filter_utils/poldata_utils.py similarity index 92% rename from nnpdf_data/nnpdf_data/filter_utils/eic_utils.py rename to nnpdf_data/nnpdf_data/filter_utils/poldata_utils.py index c7a6399f68..22f8cae683 100644 --- a/nnpdf_data/nnpdf_data/filter_utils/eic_utils.py +++ b/nnpdf_data/nnpdf_data/filter_utils/poldata_utils.py @@ -5,6 +5,17 @@ import pandas as pd import yaml +# Definition of various topologies used in Polarized Dijets +# NOTE: the observable is symmetric for jet1 and jet2, +# so 1 and 2 are not ordered in pT. +TOPO_DEF = { + "A": {"abs_eta1_min": 0.3, "abs_eta1_max": 0.9, "abs_eta2_min": 0.3, "abs_eta2_max": 0.9}, + "B": {"abs_eta1_min": 0, "abs_eta1_max": 0.3, "abs_eta2_min": 0.3, "abs_eta2_max": 0.9}, + "C": {"abs_eta1_min": 0, "abs_eta1_max": 0.3, "abs_eta2_min": 0, "abs_eta2_max": 0.3}, + "D": {"abs_eta1_min": 0.3, "abs_eta1_max": 0.9, "abs_eta2_min": 0.3, "abs_eta2_max": 0.9}, + "I": {"abs_eta_min": 0, "abs_eta_max": 0.9}, +} + def read_central_values(path: Path) -> np.ndarray: """Read the central values from the theory predictions. diff --git a/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_105GEV_EP/filter.py b/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_105GEV_EP/filter.py index c996daf879..0ed2862570 100644 --- a/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_105GEV_EP/filter.py +++ b/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_105GEV_EP/filter.py @@ -2,7 +2,7 @@ import numpy as np -from nnpdf_data.filter_utils.eic_utils import ( +from nnpdf_data.filter_utils.poldata_utils import ( fluctuate_data, read_central_values, read_excel, diff --git a/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_140GEV_EP/filter.py b/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_140GEV_EP/filter.py index 25a19cd0d1..df7ea62f4f 100644 --- a/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_140GEV_EP/filter.py +++ b/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_140GEV_EP/filter.py @@ -2,7 +2,7 @@ import numpy as np -from nnpdf_data.filter_utils.eic_utils import read_excel, write_data +from nnpdf_data.filter_utils.poldata_utils import read_excel, write_data np.random.seed(1234567890) diff --git a/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_29GEV_EP/filter.py b/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_29GEV_EP/filter.py index b932c2647e..6aa66c5845 100644 --- a/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_29GEV_EP/filter.py +++ b/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_29GEV_EP/filter.py @@ -2,7 +2,7 @@ import numpy as np -from nnpdf_data.filter_utils.eic_utils import ( +from nnpdf_data.filter_utils.poldata_utils import ( fluctuate_data, read_central_values, read_excel, diff --git a/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_45GEV_EP/filter.py b/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_45GEV_EP/filter.py index cc5188f9e0..ff71e98d05 100644 --- a/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_45GEV_EP/filter.py +++ b/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_45GEV_EP/filter.py @@ -2,7 +2,7 @@ import numpy as np -from nnpdf_data.filter_utils.eic_utils import ( +from nnpdf_data.filter_utils.poldata_utils import ( fluctuate_data, read_central_values, read_excel, diff --git a/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_63GEV_EP/filter.py b/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_63GEV_EP/filter.py index d07068c1a2..23b28e453f 100644 --- a/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_63GEV_EP/filter.py +++ b/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_63GEV_EP/filter.py @@ -2,7 +2,7 @@ import numpy as np -from nnpdf_data.filter_utils.eic_utils import ( +from nnpdf_data.filter_utils.poldata_utils import ( fluctuate_data, read_central_values, read_excel, diff --git a/nnpdf_data/nnpdf_data/new_commondata/EICC_NC_15GEV_EP/filter.py b/nnpdf_data/nnpdf_data/new_commondata/EICC_NC_15GEV_EP/filter.py index bc1f17f37d..5de3374346 100644 --- a/nnpdf_data/nnpdf_data/new_commondata/EICC_NC_15GEV_EP/filter.py +++ b/nnpdf_data/nnpdf_data/new_commondata/EICC_NC_15GEV_EP/filter.py @@ -2,7 +2,7 @@ import numpy as np -from nnpdf_data.filter_utils.eic_utils import ( +from nnpdf_data.filter_utils.poldata_utils import ( fluctuate_data, read_central_values, read_txt_data, diff --git a/nnpdf_data/nnpdf_data/new_commondata/EICC_NC_22GEV_EP/filter.py b/nnpdf_data/nnpdf_data/new_commondata/EICC_NC_22GEV_EP/filter.py index 649371c595..771429f086 100644 --- a/nnpdf_data/nnpdf_data/new_commondata/EICC_NC_22GEV_EP/filter.py +++ b/nnpdf_data/nnpdf_data/new_commondata/EICC_NC_22GEV_EP/filter.py @@ -2,7 +2,7 @@ import numpy as np -from nnpdf_data.filter_utils.eic_utils import ( +from nnpdf_data.filter_utils.poldata_utils import ( fluctuate_data, read_central_values, read_txt_data, diff --git a/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_211GEV_EP/filter.py b/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_211GEV_EP/filter.py index 1d4d4af877..06b204f401 100644 --- a/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_211GEV_EP/filter.py +++ b/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_211GEV_EP/filter.py @@ -2,7 +2,7 @@ import numpy as np -from nnpdf_data.filter_utils.eic_utils import ( +from nnpdf_data.filter_utils.poldata_utils import ( fluctuate_data, read_central_values, read_txt_data, diff --git a/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_43GEV_EP/filter.py b/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_43GEV_EP/filter.py index cf94f19908..51b8bc0074 100644 --- a/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_43GEV_EP/filter.py +++ b/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_43GEV_EP/filter.py @@ -2,7 +2,7 @@ import numpy as np -from nnpdf_data.filter_utils.eic_utils import ( +from nnpdf_data.filter_utils.poldata_utils import ( fluctuate_data, read_central_values, read_txt_data, diff --git a/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_67GEV_EP/filter.py b/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_67GEV_EP/filter.py index e7520141fb..d7975b25bf 100644 --- a/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_67GEV_EP/filter.py +++ b/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_67GEV_EP/filter.py @@ -2,7 +2,7 @@ import numpy as np -from nnpdf_data.filter_utils.eic_utils import ( +from nnpdf_data.filter_utils.poldata_utils import ( fluctuate_data, read_central_values, read_txt_data, diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_1JET_510GEV/filter.py b/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_1JET_510GEV/filter.py index ff41a0d9e1..5a8b594b70 100644 --- a/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_1JET_510GEV/filter.py +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_1JET_510GEV/filter.py @@ -1,17 +1,16 @@ """This script provides the common filer to the jet and dijet STAR 2012 datasets. -Files need to be parsed all together as there are correlations provided. +Files need to be parsed all together as there are correlations provided. """ -import pathlib + import math +import pathlib import numpy as np import pandas as pd import yaml -from nnpdf_data.filter_utils.correlations import ( - compute_covmat, - upper_triangular_to_symmetric, -) +from nnpdf_data.filter_utils.correlations import compute_covmat, upper_triangular_to_symmetric +from nnpdf_data.filter_utils.poldata_utils import TOPO_DEF # values from the paper https://arxiv.org/abs/1906.02740 SQRTS = 510 @@ -22,36 +21,6 @@ HERE = pathlib.Path(__file__).parent RAWDATA_PATH = HERE / "rawdata/" -# NOTE: the observable is symmetric for jet1 and jet2, -# so 1 and 2 are not ordered in pT. -TOPO_DEF = { - "A": { - "abs_eta1_min": 0.3, - "abs_eta1_max": 0.9, - "abs_eta2_min": 0.3, - "abs_eta2_max": 0.9, - }, - "B": { - "abs_eta1_min": 0, - "abs_eta1_max": 0.3, - "abs_eta2_min": 0.3, - "abs_eta2_max": 0.9, - }, - "C": { - "abs_eta1_min": 0, - "abs_eta1_max": 0.3, - "abs_eta2_min": 0, - "abs_eta2_max": 0.3, - }, - "D": { - "abs_eta1_min": 0.3, - "abs_eta1_max": 0.9, - "abs_eta2_min": 0.3, - "abs_eta2_max": 0.9, - }, - "I": {"abs_eta_min": 0, "abs_eta_max": 0.9}, -} - def read_1jet_data(): data_table = pathlib.Path(RAWDATA_PATH / "Figure12(Run12).csv") @@ -116,9 +85,7 @@ def read_correlations(ndata_dict): # build the block try: with open(RAWDATA_PATH / f"corr{a}Vs{b}.tex", encoding="utf-8") as file: - corr_df = pd.read_csv( - file, sep="&", skiprows=3, skipfooter=3, engine="python" - ) + corr_df = pd.read_csv(file, sep="&", skiprows=3, skipfooter=3, engine="python") # add some parsing corr_vals = [] @@ -196,10 +163,7 @@ def write_1jet_data(df, art_sys): } # loop on data points for i, sys_i in enumerate(art_sys): - e = { - "lumi_ue": float(df.loc[i, "lumi_ue"]), - "pol": float(df.loc[i, "pol"]), - } + e = {"lumi_ue": float(df.loc[i, "lumi_ue"]), "pol": float(df.loc[i, "pol"])} # loop on art sys for j, val in enumerate(sys_i): e[f"sys_{j}"] = val @@ -251,9 +215,7 @@ def write_2jet_data(df, topology, art_sys): } kin.append(kin_value) kinematics_yaml = {"bins": kin} - with open( - STORE_PATH / f"kinematics_{topology}.yaml", "w", encoding="utf-8" - ) as file: + with open(STORE_PATH / f"kinematics_{topology}.yaml", "w", encoding="utf-8") as file: yaml.dump(kinematics_yaml, file) # Write unc file @@ -272,10 +234,7 @@ def write_2jet_data(df, topology, art_sys): } # loop on data points for i, sys_i in enumerate(art_sys): - e = { - "lumi_ue": float(df.loc[i, "lumi_ue"]), - "pol": float(df.loc[i, "pol"]), - } + e = {"lumi_ue": float(df.loc[i, "lumi_ue"]), "pol": float(df.loc[i, "pol"])} # loop on art sys for j, val in enumerate(sys_i): e[f"sys_{j}"] = val @@ -294,9 +253,7 @@ def write_2jet_data(df, topology, art_sys): ) uncertainties_yaml = {"definitions": error_definition, "bins": error} - with open( - STORE_PATH / f"uncertainties_{topology}.yaml", "w", encoding="utf-8" - ) as file: + with open(STORE_PATH / f"uncertainties_{topology}.yaml", "w", encoding="utf-8") as file: yaml.dump(uncertainties_yaml, file, sort_keys=False) @@ -313,9 +270,7 @@ def write_2jet_data(df, topology, art_sys): # by E.Aschenauer, see https://github.com/NNPDF/nnpdf/pull/2035#issuecomment-2201979662 correlated_unc = [] for a in TOPOPLOGY_LIST: - correlated_unc.extend( - np.sqrt(dfs[a]["syst"] ** 2 + dfs[a]["stat"] ** 2).values.tolist() - ) + correlated_unc.extend(np.sqrt(dfs[a]["syst"] ** 2 + dfs[a]["stat"] ** 2).values.tolist()) ndata_points = np.sum((*ndata_dict.values(),)) # decompose uncertainties art_sys = np.array(compute_covmat(correlation_df, correlated_unc, ndata_points)) diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_1JET_510GEV/filter.py b/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_1JET_510GEV/filter.py index bd8c787d1e..98bed543a8 100644 --- a/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_1JET_510GEV/filter.py +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_1JET_510GEV/filter.py @@ -1,17 +1,15 @@ """This script provides the common filer to the jet and dijet STAR 2013 datasets. -Files need to be parsed all together as there are correlations provided. +Files need to be parsed all together as there are correlations provided. """ + import pathlib import numpy as np import pandas as pd import yaml -from nnpdf_data.filter_utils.correlations import ( - compute_covmat, - upper_triangular_to_symmetric, -) -from nnpdf_data.new_commondata.STAR_2012_1JET_510GEV.filter import TOPO_DEF +from nnpdf_data.filter_utils.correlations import compute_covmat, upper_triangular_to_symmetric +from nnpdf_data.filter_utils.poldata_utils import TOPO_DEF # values from the paper https://arxiv.org/pdf/2110.11020.pdf SQRTS = 510 @@ -29,20 +27,14 @@ def read_1jet_data(): data_table = pathlib.Path(RAWDATA_PATH / "Figure3.csv") with open(data_table, "r", encoding="utf-8") as file: - parton_jet_data = pd.read_csv( - file, delimiter=",", skiprows=lambda x: (x <= 21 or x >= 38) - ) + parton_jet_data = pd.read_csv(file, delimiter=",", skiprows=lambda x: (x <= 21 or x >= 38)) with open(data_table, "r", encoding="utf-8") as file: all_data = pd.read_csv(file, delimiter=",", skiprows=37) df = pd.DataFrame() df["pT"] = parton_jet_data[r"Parton Jet $p_{T}$ (GeV/$c$)"] - df["pT_min"] = ( - parton_jet_data[r"Parton Jet $p_{T}$ (GeV/$c$)"] + parton_jet_data["syst -"] - ) - df["pT_max"] = ( - parton_jet_data[r"Parton Jet $p_{T}$ (GeV/$c$)"] + parton_jet_data["syst +"] - ) + df["pT_min"] = parton_jet_data[r"Parton Jet $p_{T}$ (GeV/$c$)"] + parton_jet_data["syst -"] + df["pT_max"] = parton_jet_data[r"Parton Jet $p_{T}$ (GeV/$c$)"] + parton_jet_data["syst +"] df["eta"] = 0.0 df["eta_min"] = -TOPO_DEF["I"]["abs_eta_max"] df["eta_max"] = +TOPO_DEF["I"]["abs_eta_max"] @@ -60,20 +52,14 @@ def read_1jet_data(): def read_2jet_data(topology): data_table = RAWDATA_PATH / f"Figure5topology{topology}.csv" with open(data_table, "r", encoding="utf-8") as file: - mjj_data = pd.read_csv( - file, delimiter=",", skiprows=lambda x: (x <= 5 or x >= 20) - ) + mjj_data = pd.read_csv(file, delimiter=",", skiprows=lambda x: (x <= 5 or x >= 20)) with open(data_table, "r", encoding="utf-8") as file: all_data = pd.read_csv(file, delimiter=",", skiprows=20) df = pd.DataFrame() df["mjj"] = mjj_data[r"Parton Dijet $M_{inv}$ (GeV/$c^{2}$)"] - df["mjj_min"] = ( - mjj_data[r"Parton Dijet $M_{inv}$ (GeV/$c^{2}$)"] + mjj_data["syst -"] - ) - df["mjj_max"] = ( - mjj_data[r"Parton Dijet $M_{inv}$ (GeV/$c^{2}$)"] + mjj_data["syst +"] - ) + df["mjj_min"] = mjj_data[r"Parton Dijet $M_{inv}$ (GeV/$c^{2}$)"] + mjj_data["syst -"] + df["mjj_max"] = mjj_data[r"Parton Dijet $M_{inv}$ (GeV/$c^{2}$)"] + mjj_data["syst +"] for p in ["1", "2"]: df[f"abs_eta{p}_min"] = TOPO_DEF[topology][f"abs_eta{p}_min"] @@ -113,8 +99,7 @@ def read_correlations(ndata_dict): # build the block try: with open( - RAWDATA_PATH / f"{label_a}-{label_b}correlation.csv", - encoding="utf-8", + RAWDATA_PATH / f"{label_a}-{label_b}correlation.csv", encoding="utf-8" ) as file: corr_df = pd.read_csv(file, delimiter=",", skiprows=6) if a == b: @@ -232,9 +217,7 @@ def write_2jet_data(df, topology, art_sys): } kin.append(kin_value) kinematics_yaml = {"bins": kin} - with open( - STORE_PATH / f"kinematics_{topology}.yaml", "w", encoding="utf-8" - ) as file: + with open(STORE_PATH / f"kinematics_{topology}.yaml", "w", encoding="utf-8") as file: yaml.dump(kinematics_yaml, file) # Write unc file @@ -253,10 +236,7 @@ def write_2jet_data(df, topology, art_sys): } # loop on data points for i, sys_i in enumerate(art_sys): - e = { - "pol": float(df.loc[i, "pol"]), - "lumi": float(df.loc[i, "lumi"]), - } + e = {"pol": float(df.loc[i, "pol"]), "lumi": float(df.loc[i, "lumi"])} # loop on art sys for j, val in enumerate(sys_i): e[f"sys_{j}"] = val @@ -275,9 +255,7 @@ def write_2jet_data(df, topology, art_sys): ) uncertainties_yaml = {"definitions": error_definition, "bins": error} - with open( - STORE_PATH / f"uncertainties_{topology}.yaml", "w", encoding="utf-8" - ) as file: + with open(STORE_PATH / f"uncertainties_{topology}.yaml", "w", encoding="utf-8") as file: yaml.dump(uncertainties_yaml, file, sort_keys=False) @@ -294,9 +272,7 @@ def write_2jet_data(df, topology, art_sys): # by E.Aschenauer, see https://github.com/NNPDF/nnpdf/pull/2035#issuecomment-2201979662 correlated_unc = [] for a in TOPOPLOGY_LIST: - correlated_unc.extend( - np.sqrt(dfs[a]["syst"] ** 2 + dfs[a]["stat"] ** 2).values.tolist() - ) + correlated_unc.extend(np.sqrt(dfs[a]["syst"] ** 2 + dfs[a]["stat"] ** 2).values.tolist()) ndata_points = np.sum((*ndata_dict.values(),)) # decompose uncertainties art_sys = np.array(compute_covmat(correlation_df, correlated_unc, ndata_points)) From 21059dff24132f9f19a99cc05f88033727e5b93e Mon Sep 17 00:00:00 2001 From: Radonirinaunimi Date: Tue, 30 Jul 2024 22:02:16 +0200 Subject: [PATCH 08/22] re-generate new commondata --- .../ATLAS_2JET_7TEV_R06/uncertainties.yaml | 1386 +- .../uncertainties_stronger.yaml | 1386 +- .../uncertainties_weaker.yaml | 1386 +- .../ATLAS_Z0_8TEV_ZMASS/uncertainties.yaml | 96 +- .../CMS_1JET_8TEV/uncertainties.yaml | 59456 ++++++++-------- .../CMS_2JET_7TEV/uncertainties.yaml | 48 +- .../CMS_WPWM_13TEV_ETA/uncertainties_WM.yaml | 634 +- .../CMS_WPWM_13TEV_ETA/uncertainties_WP.yaml | 648 +- .../CMS_WPWM_7TEV_ELECTRON/uncertainties.yaml | 236 +- .../CMS_WPWM_7TEV_MUON/uncertainties.yaml | 236 +- .../CMS_WPWM_8TEV_MUON/uncertainties.yaml | 1912 +- .../CMS_Z0_7TEV_DIMUON/uncertainties.yaml | 34790 ++++----- .../uncertainties.yaml | 9216 +-- .../uncertainties_norm.yaml | 9200 +-- .../uncertainties.yaml | 9184 +-- .../uncertainties_norm.yaml | 9216 +-- .../HERMES_NC_7GEV_ED/uncertainties.yaml | 70 +- .../HERMES_NC_7GEV_EP/uncertainties.yaml | 280 +- .../LHCB_DY_7TEV_MUON/uncertainties.yaml | 2166 +- .../LHCB_DY_8TEV_MUON/uncertainties.yaml | 2234 +- .../LHCB_WPWM_7TEV_MUON/uncertainties.yaml | 1044 +- .../LHCB_WPWM_8TEV_MUON/uncertainties.yaml | 1042 +- .../uncertainties_dimuon_pT.yaml | 772 +- .../uncertainties_dielectron.yaml | 568 +- .../LHCB_Z0_13TEV/uncertainties_dimuon.yaml | 630 +- .../uncertainties_dimuon_y.yaml | 1294 +- .../uncertainties.yaml | 12 +- .../LHCB_Z0_7TEV_MUON/uncertainties.yaml | 1122 +- .../uncertainties.yaml | 540 +- .../LHCB_Z0_8TEV_MUON/uncertainties.yaml | 1192 +- .../uncertainties_CC.yaml | 1208 +- .../uncertainties_CF.yaml | 1210 +- .../uncertainties_A.yaml | 550 +- .../uncertainties_B.yaml | 770 +- .../uncertainties_C.yaml | 768 +- .../uncertainties_OS.yaml | 768 +- .../uncertainties_SS.yaml | 768 +- .../STAR_2012_1JET_510GEV/uncertainties.yaml | 1566 +- .../uncertainties_A.yaml | 1118 +- .../uncertainties_B.yaml | 1232 +- .../uncertainties_C.yaml | 1120 +- .../uncertainties_D.yaml | 1228 +- .../STAR_2013_1JET_510GEV/uncertainties.yaml | 1764 +- .../uncertainties_A.yaml | 1512 +- .../uncertainties_B.yaml | 1636 +- .../uncertainties_C.yaml | 1510 +- .../uncertainties_D.yaml | 1508 +- .../uncertainties_CC.yaml | 788 +- .../uncertainties_CF.yaml | 786 +- .../uncertainties_OS.yaml | 504 +- .../uncertainties_SS.yaml | 502 +- 51 files changed, 87406 insertions(+), 87406 deletions(-) diff --git a/nnpdf_data/nnpdf_data/new_commondata/ATLAS_2JET_7TEV_R06/uncertainties.yaml b/nnpdf_data/nnpdf_data/new_commondata/ATLAS_2JET_7TEV_R06/uncertainties.yaml index 1a4971a5f8..7a47f4e61e 100644 --- a/nnpdf_data/nnpdf_data/new_commondata/ATLAS_2JET_7TEV_R06/uncertainties.yaml +++ b/nnpdf_data/nnpdf_data/new_commondata/ATLAS_2JET_7TEV_R06/uncertainties.yaml @@ -900,26 +900,26 @@ definitions: treatment: MULT type: ATLASLUMI11 bins: -- art_sys_1: -8.66600397e+03 +- art_sys_1: 8.66600397e+03 art_sys_2: 1.65603952e+01 art_sys_3: 1.00466592e+01 art_sys_4: 1.26565519e-01 art_sys_5: 3.24886915e-02 art_sys_6: -5.12875512e-03 - art_sys_7: -1.53888278e-03 - art_sys_8: -7.95614472e-05 + art_sys_7: 1.53888278e-03 + art_sys_8: 7.95614472e-05 art_sys_9: 4.88924054e-05 art_sys_10: -1.68570003e-05 - art_sys_11: -3.46238064e-06 - art_sys_12: 9.73326696e-07 - art_sys_13: 3.97603562e-07 + art_sys_11: 3.46238064e-06 + art_sys_12: -9.73326696e-07 + art_sys_13: -3.97603562e-07 art_sys_14: -1.98321791e-08 - art_sys_15: 5.04287641e-08 + art_sys_15: -5.04287641e-08 art_sys_16: -3.05546432e-08 art_sys_17: -8.29975820e-09 art_sys_18: -2.32783123e-09 art_sys_19: 1.54448543e-09 - art_sys_20: -5.30147707e-10 + art_sys_20: 5.30147707e-10 art_sys_21: -1.40299436e-11 art_sys_22: 0.0 art_sys_23: 0.0 @@ -1125,26 +1125,26 @@ bins: sys_133: 3.78302128e+03 sys_134: -3.78302128e+03 luminosity_uncertainty: 1.92600000e+04 -- art_sys_1: 4.77033220e+01 +- art_sys_1: -4.77033220e+01 art_sys_2: 3.14268214e+03 art_sys_3: 3.50642944e+01 art_sys_4: 6.62067632e+00 art_sys_5: 8.28376346e-02 art_sys_6: -1.14440868e-02 - art_sys_7: -7.91206859e-03 - art_sys_8: 5.40010282e-04 + art_sys_7: 7.91206859e-03 + art_sys_8: -5.40010282e-04 art_sys_9: 4.01656084e-04 art_sys_10: 1.50718011e-05 - art_sys_11: -2.16191112e-06 - art_sys_12: -4.46031889e-06 - art_sys_13: 8.14636149e-08 + art_sys_11: 2.16191112e-06 + art_sys_12: 4.46031889e-06 + art_sys_13: -8.14636149e-08 art_sys_14: -4.17082996e-07 - art_sys_15: 1.05694529e-08 + art_sys_15: -1.05694529e-08 art_sys_16: -1.25633584e-08 art_sys_17: 2.95765951e-08 art_sys_18: 9.14156780e-09 art_sys_19: 1.96642808e-09 - art_sys_20: -1.01309289e-09 + art_sys_20: 1.01309289e-09 art_sys_21: -4.60286375e-11 art_sys_22: 0.0 art_sys_23: 0.0 @@ -1350,26 +1350,26 @@ bins: sys_133: 1.43542677e+03 sys_134: -1.43542677e+03 luminosity_uncertainty: 7.30800000e+03 -- art_sys_1: 7.00122739e+01 +- art_sys_1: -7.00122739e+01 art_sys_2: -9.20257933e+01 art_sys_3: 1.21913825e+03 art_sys_4: 1.80626131e+01 art_sys_5: 2.28059505e+00 art_sys_6: -7.90198445e-02 - art_sys_7: -1.06746073e-02 - art_sys_8: 2.44464005e-03 + art_sys_7: 1.06746073e-02 + art_sys_8: -2.44464005e-03 art_sys_9: 4.47952792e-04 art_sys_10: -1.08646766e-04 - art_sys_11: 9.08624166e-06 - art_sys_12: -3.11648575e-06 - art_sys_13: 5.35926874e-07 + art_sys_11: -9.08624166e-06 + art_sys_12: 3.11648575e-06 + art_sys_13: -5.35926874e-07 art_sys_14: -2.29584162e-06 - art_sys_15: 1.07006478e-06 + art_sys_15: -1.07006478e-06 art_sys_16: -1.28227265e-07 art_sys_17: 6.24732027e-08 art_sys_18: -6.45561067e-09 art_sys_19: 1.59017767e-09 - art_sys_20: -1.05553387e-08 + art_sys_20: 1.05553387e-08 art_sys_21: 3.63513279e-11 art_sys_22: 0.0 art_sys_23: 0.0 @@ -1575,26 +1575,26 @@ bins: sys_133: 5.37401154e+02 sys_134: -5.37401154e+02 luminosity_uncertainty: 2.73600000e+03 -- art_sys_1: -9.77545258e-01 +- art_sys_1: 9.77545258e-01 art_sys_2: -3.96231596e+01 art_sys_3: -4.64375276e+01 art_sys_4: 4.82951674e+02 art_sys_5: 5.44666874e+00 art_sys_6: -7.84822573e-01 - art_sys_7: -6.48303771e-02 - art_sys_8: 3.61645081e-03 + art_sys_7: 6.48303771e-02 + art_sys_8: -3.61645081e-03 art_sys_9: -7.83601275e-04 art_sys_10: -6.52654718e-04 - art_sys_11: -5.20483996e-05 - art_sys_12: 9.48094386e-06 - art_sys_13: 8.85394144e-06 + art_sys_11: 5.20483996e-05 + art_sys_12: -9.48094386e-06 + art_sys_13: -8.85394144e-06 art_sys_14: 1.78779821e-06 - art_sys_15: -7.30851279e-07 + art_sys_15: 7.30851279e-07 art_sys_16: -1.74720749e-07 art_sys_17: 2.62337554e-08 art_sys_18: 3.64352323e-08 art_sys_19: 1.29471700e-08 - art_sys_20: -9.46016641e-09 + art_sys_20: 9.46016641e-09 art_sys_21: 6.30046326e-11 art_sys_22: 0.0 art_sys_23: 0.0 @@ -1800,26 +1800,26 @@ bins: sys_133: 2.14253355e+02 sys_134: -2.14253355e+02 luminosity_uncertainty: 1.09080000e+03 -- art_sys_1: 6.24445985e-01 +- art_sys_1: -6.24445985e-01 art_sys_2: 8.09690516e-01 art_sys_3: -1.26198742e+01 art_sys_4: -1.33691170e+01 art_sys_5: 2.00649923e+02 art_sys_6: -4.88886178e-01 - art_sys_7: -5.72530475e-01 - art_sys_8: 3.85693232e-02 + art_sys_7: 5.72530475e-01 + art_sys_8: -3.85693232e-02 art_sys_9: -4.09551998e-03 art_sys_10: 5.10668135e-04 - art_sys_11: 3.58839834e-04 - art_sys_12: 4.01512348e-05 - art_sys_13: 9.94951973e-06 + art_sys_11: -3.58839834e-04 + art_sys_12: -4.01512348e-05 + art_sys_13: -9.94951973e-06 art_sys_14: -2.04343429e-05 - art_sys_15: 2.50511092e-06 + art_sys_15: -2.50511092e-06 art_sys_16: 6.54028672e-07 art_sys_17: -1.17787458e-07 art_sys_18: 4.26063451e-08 art_sys_19: 6.37371162e-08 - art_sys_20: 4.03966220e-09 + art_sys_20: -4.03966220e-09 art_sys_21: -3.40611967e-10 art_sys_22: 0.0 art_sys_23: 0.0 @@ -2025,26 +2025,26 @@ bins: sys_133: 9.08632214e+01 sys_134: -9.08632214e+01 luminosity_uncertainty: 4.62600000e+02 -- art_sys_1: 5.59880644e-01 +- art_sys_1: -5.59880644e-01 art_sys_2: 1.57221880e-03 art_sys_3: -7.70393233e-01 art_sys_4: -5.30516357e+00 art_sys_5: -1.58625879e+00 art_sys_6: -7.07597902e+01 - art_sys_7: -1.18820891e+00 - art_sys_8: 2.67790339e-01 + art_sys_7: 1.18820891e+00 + art_sys_8: -2.67790339e-01 art_sys_9: -2.42473600e-02 art_sys_10: -1.50349162e-04 - art_sys_11: -2.01220583e-04 - art_sys_12: -3.13977714e-05 - art_sys_13: 5.25624358e-05 + art_sys_11: 2.01220583e-04 + art_sys_12: 3.13977714e-05 + art_sys_13: -5.25624358e-05 art_sys_14: -4.73347355e-06 - art_sys_15: -4.79459747e-06 + art_sys_15: 4.79459747e-06 art_sys_16: -2.74900035e-06 art_sys_17: -9.39057694e-07 art_sys_18: -1.08451445e-07 art_sys_19: 1.47385495e-07 - art_sys_20: 1.36169505e-07 + art_sys_20: -1.36169505e-07 art_sys_21: 6.70958864e-10 art_sys_22: 0.0 art_sys_23: 0.0 @@ -2250,26 +2250,26 @@ bins: sys_133: 3.99515331e+01 sys_134: -3.99515331e+01 luminosity_uncertainty: 2.03400000e+02 -- art_sys_1: 3.40189430e-01 +- art_sys_1: -3.40189430e-01 art_sys_2: -6.68262358e-01 art_sys_3: -7.01607567e-02 art_sys_4: -5.39138259e-01 art_sys_5: -3.49927676e+00 art_sys_6: 2.64986079e+00 - art_sys_7: -3.25491051e+01 - art_sys_8: 6.34601537e-01 + art_sys_7: 3.25491051e+01 + art_sys_8: -6.34601537e-01 art_sys_9: -1.68143063e-01 art_sys_10: 1.30486891e-02 - art_sys_11: -1.30308546e-03 - art_sys_12: -3.27163776e-04 - art_sys_13: 5.97594369e-05 + art_sys_11: 1.30308546e-03 + art_sys_12: 3.27163776e-04 + art_sys_13: -5.97594369e-05 art_sys_14: -2.39257219e-05 - art_sys_15: 3.39099387e-05 + art_sys_15: -3.39099387e-05 art_sys_16: 5.32913752e-06 art_sys_17: -2.71306658e-06 art_sys_18: 7.25244740e-07 art_sys_19: 5.39198882e-07 - art_sys_20: -2.22646652e-07 + art_sys_20: 2.22646652e-07 art_sys_21: -4.71488044e-10 art_sys_22: 0.0 art_sys_23: 0.0 @@ -2475,26 +2475,26 @@ bins: sys_133: 1.84201316e+01 sys_134: -1.84201316e+01 luminosity_uncertainty: 9.37800000e+01 -- art_sys_1: -9.23387966e-02 +- art_sys_1: 9.23387966e-02 art_sys_2: -5.02852833e-02 art_sys_3: -1.35259611e-01 art_sys_4: 3.40255235e-02 art_sys_5: -3.51750100e-01 art_sys_6: 1.19370158e+00 - art_sys_7: 1.49352552e+00 - art_sys_8: 1.45575069e+01 + art_sys_7: -1.49352552e+00 + art_sys_8: -1.45575069e+01 art_sys_9: -5.13965110e-01 art_sys_10: 7.07131241e-02 - art_sys_11: -7.14714411e-03 - art_sys_12: -1.46476036e-03 - art_sys_13: -1.55464994e-04 + art_sys_11: 7.14714411e-03 + art_sys_12: 1.46476036e-03 + art_sys_13: 1.55464994e-04 art_sys_14: 6.28948301e-05 - art_sys_15: 5.53498030e-05 + art_sys_15: -5.53498030e-05 art_sys_16: 6.73724191e-06 art_sys_17: -4.59052397e-06 art_sys_18: 2.01812845e-06 art_sys_19: -6.57480973e-07 - art_sys_20: -2.07564586e-07 + art_sys_20: 2.07564586e-07 art_sys_21: 1.15028463e-09 art_sys_22: 0.0 art_sys_23: 0.0 @@ -2700,26 +2700,26 @@ bins: sys_133: 8.87419010e+00 sys_134: -8.87419010e+00 luminosity_uncertainty: 4.51800000e+01 -- art_sys_1: -5.80091660e-02 +- art_sys_1: 5.80091660e-02 art_sys_2: 1.94125450e-01 art_sys_3: 1.07567088e-01 art_sys_4: -1.04484248e-02 art_sys_5: -1.89766689e-03 art_sys_6: 9.06462642e-02 - art_sys_7: 6.72738390e-01 - art_sys_8: -1.08843898e+00 + art_sys_7: -6.72738390e-01 + art_sys_8: 1.08843898e+00 art_sys_9: -7.07546072e+00 art_sys_10: 1.95866968e-01 - art_sys_11: -3.55592631e-02 - art_sys_12: 8.11460358e-05 - art_sys_13: 9.47767711e-04 + art_sys_11: 3.55592631e-02 + art_sys_12: -8.11460358e-05 + art_sys_13: -9.47767711e-04 art_sys_14: -2.31004101e-04 - art_sys_15: 4.77814218e-05 + art_sys_15: -4.77814218e-05 art_sys_16: -8.70840560e-06 art_sys_17: -1.01696338e-05 art_sys_18: 3.19457414e-06 art_sys_19: 3.71284068e-06 - art_sys_20: 6.54733539e-07 + art_sys_20: -6.54733539e-07 art_sys_21: -8.56908310e-09 art_sys_22: 0.0 art_sys_23: 0.0 @@ -2925,26 +2925,26 @@ bins: sys_133: 4.38406204e+00 sys_134: -4.38406204e+00 luminosity_uncertainty: 2.23200000e+01 -- art_sys_1: -3.56841619e-02 +- art_sys_1: 3.56841619e-02 art_sys_2: -3.24320708e-02 art_sys_3: 2.84708301e-02 art_sys_4: 9.48380534e-02 art_sys_5: -4.90602185e-03 art_sys_6: -4.29393443e-02 - art_sys_7: 5.49746356e-02 - art_sys_8: -2.42621811e-01 + art_sys_7: -5.49746356e-02 + art_sys_8: 2.42621811e-01 art_sys_9: 4.23950443e-01 art_sys_10: 3.42538579e+00 - art_sys_11: -1.04010414e-01 - art_sys_12: -1.70034057e-02 - art_sys_13: 2.23313283e-03 + art_sys_11: 1.04010414e-01 + art_sys_12: 1.70034057e-02 + art_sys_13: -2.23313283e-03 art_sys_14: -6.97646425e-04 - art_sys_15: 1.62980195e-04 + art_sys_15: -1.62980195e-04 art_sys_16: 2.08230958e-05 art_sys_17: -9.55312842e-06 art_sys_18: 4.65891824e-06 art_sys_19: 1.33058018e-06 - art_sys_20: -4.62503045e-07 + art_sys_20: 4.62503045e-07 art_sys_21: 1.60785983e-08 art_sys_22: 0.0 art_sys_23: 0.0 @@ -3150,26 +3150,26 @@ bins: sys_133: 2.11778481e+00 sys_134: -2.11778481e+00 luminosity_uncertainty: 1.07820000e+01 -- art_sys_1: 2.20322705e-02 +- art_sys_1: -2.20322705e-02 art_sys_2: -5.11195278e-03 art_sys_3: 1.76398223e-03 art_sys_4: -2.29026537e-02 art_sys_5: 4.83961862e-02 art_sys_6: 2.23674578e-03 - art_sys_7: 1.64370589e-03 - art_sys_8: -2.51940803e-02 + art_sys_7: -1.64370589e-03 + art_sys_8: 2.51940803e-02 art_sys_9: 1.27765843e-01 art_sys_10: -2.22353667e-01 - art_sys_11: -1.65201313e+00 - art_sys_12: -2.89783643e-02 - art_sys_13: 1.48881977e-02 + art_sys_11: 1.65201313e+00 + art_sys_12: 2.89783643e-02 + art_sys_13: -1.48881977e-02 art_sys_14: -1.36497539e-03 - art_sys_15: -4.99751348e-04 + art_sys_15: 4.99751348e-04 art_sys_16: 6.37809257e-05 art_sys_17: 8.63674365e-06 art_sys_18: 1.56419238e-05 art_sys_19: 9.76743155e-06 - art_sys_20: 5.66044411e-07 + art_sys_20: -5.66044411e-07 art_sys_21: -7.19562227e-08 art_sys_22: 0.0 art_sys_23: 0.0 @@ -3375,26 +3375,26 @@ bins: sys_133: 1.02530483e+00 sys_134: -1.02530483e+00 luminosity_uncertainty: 5.22000000e+00 -- art_sys_1: -9.86610479e-03 +- art_sys_1: 9.86610479e-03 art_sys_2: -1.45568502e-02 art_sys_3: -5.91171276e-03 art_sys_4: 3.74820673e-03 art_sys_5: 9.11597314e-03 art_sys_6: 3.01618742e-04 - art_sys_7: 8.39904315e-03 - art_sys_8: -1.84897828e-02 + art_sys_7: -8.39904315e-03 + art_sys_8: 1.84897828e-02 art_sys_9: -1.17688968e-02 art_sys_10: -5.76594449e-02 - art_sys_11: 5.51521631e-02 - art_sys_12: -9.01414720e-01 - art_sys_13: -1.49158449e-03 + art_sys_11: -5.51521631e-02 + art_sys_12: 9.01414720e-01 + art_sys_13: 1.49158449e-03 art_sys_14: -9.46831670e-03 - art_sys_15: -9.07193600e-04 + art_sys_15: 9.07193600e-04 art_sys_16: 2.68164606e-04 art_sys_17: -8.18022041e-05 art_sys_18: 1.42749990e-06 art_sys_19: -1.09162130e-05 - art_sys_20: 2.82462222e-06 + art_sys_20: -2.82462222e-06 art_sys_21: 1.57577390e-07 art_sys_22: 0.0 art_sys_23: 0.0 @@ -3600,26 +3600,26 @@ bins: sys_133: 4.94974747e-01 sys_134: -4.94974747e-01 luminosity_uncertainty: 2.52000000e+00 -- art_sys_1: 5.63127896e-03 +- art_sys_1: -5.63127896e-03 art_sys_2: 2.48544381e-04 art_sys_3: -2.38378613e-04 art_sys_4: -6.78572413e-03 art_sys_5: -4.23603003e-03 art_sys_6: 6.79657670e-03 - art_sys_7: 2.51744701e-03 - art_sys_8: 7.47364840e-03 + art_sys_7: -2.51744701e-03 + art_sys_8: -7.47364840e-03 art_sys_9: 6.70918896e-03 art_sys_10: -8.14696942e-03 - art_sys_11: 4.51204560e-02 - art_sys_12: -2.01708171e-03 - art_sys_13: 5.51864445e-01 + art_sys_11: -4.51204560e-02 + art_sys_12: 2.01708171e-03 + art_sys_13: -5.51864445e-01 art_sys_14: 7.66459020e-03 - art_sys_15: -5.59610386e-03 + art_sys_15: 5.59610386e-03 art_sys_16: -1.68390971e-04 art_sys_17: 7.66965461e-05 art_sys_18: -1.42664030e-04 art_sys_19: 3.06825436e-05 - art_sys_20: -3.72320589e-06 + art_sys_20: 3.72320589e-06 art_sys_21: -2.88138736e-07 art_sys_22: 0.0 art_sys_23: 0.0 @@ -3825,26 +3825,26 @@ bins: sys_133: 2.31931024e-01 sys_134: -2.31931024e-01 luminosity_uncertainty: 1.1808 -- art_sys_1: 3.67271922e-04 +- art_sys_1: -3.67271922e-04 art_sys_2: -2.92790764e-03 art_sys_3: -7.83460395e-03 art_sys_4: 2.97479134e-03 art_sys_5: -1.19880779e-02 art_sys_6: 9.32768772e-04 - art_sys_7: 2.18413077e-03 - art_sys_8: 4.17107831e-03 + art_sys_7: -2.18413077e-03 + art_sys_8: -4.17107831e-03 art_sys_9: 3.77323538e-03 art_sys_10: -4.91183870e-03 - art_sys_11: 5.91482697e-03 - art_sys_12: 2.38533248e-02 - art_sys_13: 1.30018955e-02 + art_sys_11: -5.91482697e-03 + art_sys_12: -2.38533248e-02 + art_sys_13: -1.30018955e-02 art_sys_14: -3.52977558e-01 - art_sys_15: 1.78379506e-02 + art_sys_15: -1.78379506e-02 art_sys_16: 5.61951146e-03 art_sys_17: 3.75233618e-05 art_sys_18: 1.44107323e-05 art_sys_19: 1.42116169e-05 - art_sys_20: 2.92026217e-05 + art_sys_20: -2.92026217e-05 art_sys_21: 3.58813381e-07 art_sys_22: 0.0 art_sys_23: 0.0 @@ -4050,26 +4050,26 @@ bins: sys_133: 1.12783532e-01 sys_134: -1.12783532e-01 luminosity_uncertainty: 0.5742 -- art_sys_1: -1.59903365e-03 +- art_sys_1: 1.59903365e-03 art_sys_2: -4.88162348e-04 art_sys_3: 5.07425953e-03 art_sys_4: -1.14427437e-03 art_sys_5: 6.98922566e-04 art_sys_6: 2.22478502e-03 - art_sys_7: -4.42147469e-03 - art_sys_8: 3.66366543e-03 + art_sys_7: 4.42147469e-03 + art_sys_8: -3.66366543e-03 art_sys_9: -1.42404657e-03 art_sys_10: 3.11874450e-03 - art_sys_11: 2.67881701e-03 - art_sys_12: 5.53810261e-03 - art_sys_13: -1.28019058e-02 + art_sys_11: -2.67881701e-03 + art_sys_12: -5.53810261e-03 + art_sys_13: 1.28019058e-02 art_sys_14: -2.96640044e-02 - art_sys_15: -2.21406648e-01 + art_sys_15: 2.21406648e-01 art_sys_16: -1.41042611e-02 art_sys_17: 4.29514136e-03 art_sys_18: 1.08130828e-04 art_sys_19: -1.02810457e-05 - art_sys_20: -1.30791015e-05 + art_sys_20: 1.30791015e-05 art_sys_21: -5.15500715e-07 art_sys_22: 0.0 art_sys_23: 0.0 @@ -4275,26 +4275,26 @@ bins: sys_133: 5.26794552e-02 sys_134: -5.26794552e-02 luminosity_uncertainty: 2.68200000e-01 -- art_sys_1: -1.86630567e-03 +- art_sys_1: 1.86630567e-03 art_sys_2: 3.83806142e-04 art_sys_3: 2.00964972e-03 art_sys_4: 3.62178686e-04 art_sys_5: -3.01797270e-04 art_sys_6: -1.24848365e-03 - art_sys_7: 6.64336826e-04 - art_sys_8: -5.03706220e-04 + art_sys_7: -6.64336826e-04 + art_sys_8: 5.03706220e-04 art_sys_9: -7.27098351e-04 art_sys_10: 1.98502550e-04 - art_sys_11: 7.13523732e-04 - art_sys_12: 1.40810854e-03 - art_sys_13: -1.19428573e-03 + art_sys_11: -7.13523732e-04 + art_sys_12: -1.40810854e-03 + art_sys_13: 1.19428573e-03 art_sys_14: 1.08710787e-02 - art_sys_15: -2.35294277e-02 + art_sys_15: 2.35294277e-02 art_sys_16: 1.41191140e-01 art_sys_17: -8.59593556e-03 art_sys_18: -2.16721566e-03 art_sys_19: 1.67789486e-04 - art_sys_20: 3.31225966e-05 + art_sys_20: -3.31225966e-05 art_sys_21: 4.93166581e-07 art_sys_22: 0.0 art_sys_23: 0.0 @@ -4500,26 +4500,26 @@ bins: sys_133: 2.49255140e-02 sys_134: -2.49255140e-02 luminosity_uncertainty: 0.1269 -- art_sys_1: -9.45384979e-04 +- art_sys_1: 9.45384979e-04 art_sys_2: -8.70290331e-04 art_sys_3: -8.24770599e-04 art_sys_4: -1.44122756e-04 art_sys_5: 6.31617950e-05 art_sys_6: -7.87719135e-04 - art_sys_7: -5.00670262e-04 - art_sys_8: 2.95521635e-04 + art_sys_7: 5.00670262e-04 + art_sys_8: -2.95521635e-04 art_sys_9: -7.50044230e-04 art_sys_10: 2.03205224e-04 - art_sys_11: 1.17004163e-04 - art_sys_12: -8.68435111e-04 - art_sys_13: 1.35573286e-04 + art_sys_11: -1.17004163e-04 + art_sys_12: 8.68435111e-04 + art_sys_13: -1.35573286e-04 art_sys_14: 2.42616255e-03 - art_sys_15: 7.63035902e-03 + art_sys_15: -7.63035902e-03 art_sys_16: 1.34883722e-02 art_sys_17: 9.68893641e-02 art_sys_18: 4.47014928e-03 art_sys_19: -1.31066873e-03 - art_sys_20: -3.76798274e-05 + art_sys_20: 3.76798274e-05 art_sys_21: 1.30240207e-06 art_sys_22: 0.0 art_sys_23: 0.0 @@ -4725,26 +4725,26 @@ bins: sys_133: 1.14197745e-02 sys_134: -1.14197745e-02 luminosity_uncertainty: 5.81400000e-02 -- art_sys_1: 3.56896050e-04 +- art_sys_1: -3.56896050e-04 art_sys_2: 3.63503491e-04 art_sys_3: -3.17847991e-04 art_sys_4: 2.61995734e-04 art_sys_5: 1.06431135e-04 art_sys_6: 1.81061970e-04 - art_sys_7: -3.27832275e-04 - art_sys_8: 4.77320533e-04 + art_sys_7: 3.27832275e-04 + art_sys_8: -4.77320533e-04 art_sys_9: -3.31561633e-04 art_sys_10: 2.43172450e-04 - art_sys_11: -5.26275394e-04 - art_sys_12: -1.58830117e-04 - art_sys_13: -1.33750885e-03 + art_sys_11: 5.26275394e-04 + art_sys_12: 1.58830117e-04 + art_sys_13: 1.33750885e-03 art_sys_14: -3.76527065e-04 - art_sys_15: 1.08396822e-03 + art_sys_15: -1.08396822e-03 art_sys_16: -4.17900353e-03 art_sys_17: 7.95431387e-03 art_sys_18: -5.85661451e-02 art_sys_19: 3.70234911e-03 - art_sys_20: -1.08560343e-03 + art_sys_20: 1.08560343e-03 art_sys_21: -7.43505189e-07 art_sys_22: 0.0 art_sys_23: 0.0 @@ -4950,26 +4950,26 @@ bins: sys_133: 5.09116882e-03 sys_134: -5.09116882e-03 luminosity_uncertainty: 2.59200000e-02 -- art_sys_1: -2.86758898e-04 +- art_sys_1: 2.86758898e-04 art_sys_2: 2.33519970e-04 art_sys_3: 1.04214721e-04 art_sys_4: 1.68795778e-04 art_sys_5: 2.85234691e-04 art_sys_6: -1.37763681e-04 - art_sys_7: -4.72921381e-04 - art_sys_8: -2.84638522e-04 + art_sys_7: 4.72921381e-04 + art_sys_8: 2.84638522e-04 art_sys_9: -5.97962755e-04 art_sys_10: 1.16620506e-04 - art_sys_11: -4.51197945e-04 - art_sys_12: 2.81990902e-04 - art_sys_13: 3.12337233e-04 + art_sys_11: 4.51197945e-04 + art_sys_12: -2.81990902e-04 + art_sys_13: -3.12337233e-04 art_sys_14: -1.27655834e-04 - art_sys_15: -2.02533088e-04 + art_sys_15: 2.02533088e-04 art_sys_16: -2.93015810e-04 art_sys_17: -2.47588974e-03 art_sys_18: -6.13069375e-03 art_sys_19: -3.79796250e-02 - art_sys_20: 3.51514731e-03 + art_sys_20: -3.51514731e-03 art_sys_21: 1.64994813e-05 art_sys_22: 0.0 art_sys_23: 0.0 @@ -5175,26 +5175,26 @@ bins: sys_133: 2.40769859e-03 sys_134: -2.40769859e-03 luminosity_uncertainty: 1.22580000e-02 -- art_sys_1: 9.89119291e-05 +- art_sys_1: -9.89119291e-05 art_sys_2: -4.96248037e-05 art_sys_3: -4.96220320e-04 art_sys_4: -2.07463405e-04 art_sys_5: 8.05834636e-05 art_sys_6: -4.58438066e-04 - art_sys_7: 2.50109052e-04 - art_sys_8: -2.18443117e-04 + art_sys_7: -2.50109052e-04 + art_sys_8: 2.18443117e-04 art_sys_9: -2.59185077e-04 art_sys_10: -7.29630859e-05 - art_sys_11: -7.31535374e-05 - art_sys_12: -2.83446159e-05 - art_sys_13: 4.10025772e-05 + art_sys_11: 7.31535374e-05 + art_sys_12: 2.83446159e-05 + art_sys_13: -4.10025772e-05 art_sys_14: -4.02513392e-04 - art_sys_15: 2.00390623e-05 + art_sys_15: -2.00390623e-05 art_sys_16: 3.31415661e-04 art_sys_17: -8.80102295e-04 art_sys_18: 1.72450427e-03 art_sys_19: -5.67477883e-03 - art_sys_20: -2.42294647e-02 + art_sys_20: 2.42294647e-02 art_sys_21: -1.96414899e-05 art_sys_22: 0.0 art_sys_23: 0.0 @@ -5400,26 +5400,26 @@ bins: sys_133: 9.86413960e-04 sys_134: -9.86413960e-04 luminosity_uncertainty: 5.02200000e-03 -- art_sys_1: -3.51192820e-05 +- art_sys_1: 3.51192820e-05 art_sys_2: 4.91032841e-05 art_sys_3: -1.55057942e-05 art_sys_4: -1.49096125e-05 art_sys_5: 2.26975854e-05 art_sys_6: 1.50539349e-05 - art_sys_7: -7.50201119e-07 - art_sys_8: -5.73578075e-06 + art_sys_7: 7.50201119e-07 + art_sys_8: 5.73578075e-06 art_sys_9: -1.61928066e-05 art_sys_10: -2.03052775e-05 - art_sys_11: -3.51266809e-05 - art_sys_12: 4.16605593e-05 - art_sys_13: 4.65157679e-05 + art_sys_11: 3.51266809e-05 + art_sys_12: -4.16605593e-05 + art_sys_13: -4.65157679e-05 art_sys_14: 3.24008057e-05 - art_sys_15: -3.73927805e-05 + art_sys_15: 3.73927805e-05 art_sys_16: -2.85151249e-05 art_sys_17: -2.91284953e-05 art_sys_18: 2.79996968e-05 art_sys_19: 1.67718168e-04 - art_sys_20: -1.72603256e-04 + art_sys_20: 1.72603256e-04 art_sys_21: 3.09782100e-03 art_sys_22: 0.0 art_sys_23: 0.0 @@ -5647,26 +5647,26 @@ bins: art_sys_20: 0.0 art_sys_21: 0.0 art_sys_22: 1.00990660e+04 - art_sys_23: 9.26298040e+01 + art_sys_23: -9.26298040e+01 art_sys_24: 1.68373855e+01 - art_sys_25: -1.32147422e+00 - art_sys_26: 2.91699581e-02 + art_sys_25: 1.32147422e+00 + art_sys_26: -2.91699581e-02 art_sys_27: 2.09102772e-02 art_sys_28: -2.49685756e-03 art_sys_29: 3.45364601e-05 - art_sys_30: 1.84619899e-05 + art_sys_30: -1.84619899e-05 art_sys_31: -2.14903160e-05 - art_sys_32: -3.25400048e-06 + art_sys_32: 3.25400048e-06 art_sys_33: 3.78958112e-07 - art_sys_34: 1.90510808e-07 - art_sys_35: -6.75521200e-08 - art_sys_36: 7.32637398e-08 - art_sys_37: 5.94682736e-09 - art_sys_38: 1.91383404e-09 - art_sys_39: 1.03964175e-09 - art_sys_40: 1.08906283e-09 - art_sys_41: -2.89575025e-10 - art_sys_42: 6.90149159e-12 + art_sys_34: -1.90510808e-07 + art_sys_35: -6.90149159e-12 + art_sys_36: 6.75521200e-08 + art_sys_37: 7.32637398e-08 + art_sys_38: 5.94682736e-09 + art_sys_39: 1.91383404e-09 + art_sys_40: 1.03964175e-09 + art_sys_41: -1.08906283e-09 + art_sys_42: -2.89575025e-10 art_sys_43: 0.0 art_sys_44: 0.0 art_sys_45: 0.0 @@ -5872,26 +5872,26 @@ bins: art_sys_20: 0.0 art_sys_21: 0.0 art_sys_22: -2.58304026e+02 - art_sys_23: 3.65139021e+03 + art_sys_23: -3.65139021e+03 art_sys_24: 2.31061640e+01 - art_sys_25: -9.70689288e+00 - art_sys_26: -6.80608476e-01 + art_sys_25: 9.70689288e+00 + art_sys_26: 6.80608476e-01 art_sys_27: -7.02090387e-03 art_sys_28: 1.04366041e-02 art_sys_29: -7.44437571e-04 - art_sys_30: 9.39701438e-05 + art_sys_30: -9.39701438e-05 art_sys_31: 1.42058685e-05 - art_sys_32: -1.02961282e-05 + art_sys_32: 1.02961282e-05 art_sys_33: 3.49804795e-07 - art_sys_34: -2.15460810e-07 - art_sys_35: -9.04430956e-08 - art_sys_36: -1.30477283e-07 - art_sys_37: 4.14502348e-09 - art_sys_38: 4.93289716e-09 - art_sys_39: 4.01447858e-09 - art_sys_40: 1.33468720e-09 - art_sys_41: 6.90948811e-10 - art_sys_42: -2.58828392e-12 + art_sys_34: 2.15460810e-07 + art_sys_35: 2.58828392e-12 + art_sys_36: 9.04430956e-08 + art_sys_37: -1.30477283e-07 + art_sys_38: 4.14502348e-09 + art_sys_39: 4.93289716e-09 + art_sys_40: 4.01447858e-09 + art_sys_41: -1.33468720e-09 + art_sys_42: 6.90948811e-10 art_sys_43: 0.0 art_sys_44: 0.0 art_sys_45: 0.0 @@ -6097,26 +6097,26 @@ bins: art_sys_20: 0.0 art_sys_21: 0.0 art_sys_22: -1.13745686e+02 - art_sys_23: -6.10675898e+01 + art_sys_23: 6.10675898e+01 art_sys_24: 1.44672160e+03 - art_sys_25: -1.74066184e+01 - art_sys_26: -5.11740677e+00 + art_sys_25: 1.74066184e+01 + art_sys_26: 5.11740677e+00 art_sys_27: 3.25984936e-01 art_sys_28: -5.23491103e-02 art_sys_29: 9.07658039e-04 - art_sys_30: 1.13554253e-04 + art_sys_30: -1.13554253e-04 art_sys_31: -2.15376483e-04 - art_sys_32: 6.17320859e-05 + art_sys_32: -6.17320859e-05 art_sys_33: -1.46427221e-05 - art_sys_34: -2.89415554e-07 - art_sys_35: -1.04963353e-07 - art_sys_36: 8.19215976e-07 - art_sys_37: -6.30845370e-08 - art_sys_38: -2.84417240e-09 - art_sys_39: -9.13305396e-10 - art_sys_40: -5.54928127e-09 - art_sys_41: -1.34844779e-09 - art_sys_42: -1.28800958e-11 + art_sys_34: 2.89415554e-07 + art_sys_35: 1.28800958e-11 + art_sys_36: 1.04963353e-07 + art_sys_37: 8.19215976e-07 + art_sys_38: -6.30845370e-08 + art_sys_39: -2.84417240e-09 + art_sys_40: -9.13305396e-10 + art_sys_41: 5.54928127e-09 + art_sys_42: -1.34844779e-09 art_sys_43: 0.0 art_sys_44: 0.0 art_sys_45: 0.0 @@ -6322,26 +6322,26 @@ bins: art_sys_20: 0.0 art_sys_21: 0.0 art_sys_22: -1.39624776e+01 - art_sys_23: -5.52489968e+01 + art_sys_23: 5.52489968e+01 art_sys_24: -4.17074828e+01 - art_sys_25: -6.26769059e+02 - art_sys_26: -1.29573429e+01 + art_sys_25: 6.26769059e+02 + art_sys_26: 1.29573429e+01 art_sys_27: 2.39437533e+00 art_sys_28: -6.13805659e-02 art_sys_29: 1.12177924e-02 - art_sys_30: 2.59363742e-03 + art_sys_30: -2.59363742e-03 art_sys_31: -9.39279509e-04 - art_sys_32: 1.44880004e-04 + art_sys_32: -1.44880004e-04 art_sys_33: 2.34958238e-05 - art_sys_34: -9.12682930e-06 - art_sys_35: 2.87315519e-06 - art_sys_36: -1.12036980e-07 - art_sys_37: -2.13772792e-07 - art_sys_38: -7.60620444e-08 - art_sys_39: 1.02583970e-09 - art_sys_40: -1.58156715e-09 - art_sys_41: -1.11134246e-08 - art_sys_42: -6.53689079e-11 + art_sys_34: 9.12682930e-06 + art_sys_35: 6.53689079e-11 + art_sys_36: -2.87315519e-06 + art_sys_37: -1.12036980e-07 + art_sys_38: -2.13772792e-07 + art_sys_39: -7.60620444e-08 + art_sys_40: 1.02583970e-09 + art_sys_41: 1.58156715e-09 + art_sys_42: -1.11134246e-08 art_sys_43: 0.0 art_sys_44: 0.0 art_sys_45: 0.0 @@ -6547,26 +6547,26 @@ bins: art_sys_20: 0.0 art_sys_21: 0.0 art_sys_22: 4.22899608e+00 - art_sys_23: -4.97759534e+00 + art_sys_23: 4.97759534e+00 art_sys_24: -2.38505353e+01 - art_sys_25: 2.86626154e+01 - art_sys_26: -2.89238554e+02 + art_sys_25: -2.86626154e+01 + art_sys_26: 2.89238554e+02 art_sys_27: 2.63445182e+00 art_sys_28: -1.03045259e+00 art_sys_29: 4.83645775e-02 - art_sys_30: 1.16659734e-02 + art_sys_30: -1.16659734e-02 art_sys_31: -6.36159664e-04 - art_sys_32: 2.37469071e-04 + art_sys_32: -2.37469071e-04 art_sys_33: -4.59008783e-05 - art_sys_34: 7.38957035e-06 - art_sys_35: -1.58041072e-06 - art_sys_36: -9.96614505e-07 - art_sys_37: -1.62016668e-06 - art_sys_38: 9.45842804e-08 - art_sys_39: -3.08106821e-08 - art_sys_40: -2.71680892e-09 - art_sys_41: -4.95602545e-09 - art_sys_42: 2.12822070e-10 + art_sys_34: -7.38957035e-06 + art_sys_35: -2.12822070e-10 + art_sys_36: 1.58041072e-06 + art_sys_37: -9.96614505e-07 + art_sys_38: -1.62016668e-06 + art_sys_39: 9.45842804e-08 + art_sys_40: -3.08106821e-08 + art_sys_41: 2.71680892e-09 + art_sys_42: -4.95602545e-09 art_sys_43: 0.0 art_sys_44: 0.0 art_sys_45: 0.0 @@ -6772,26 +6772,26 @@ bins: art_sys_20: 0.0 art_sys_21: 0.0 art_sys_22: -1.23652955e+00 - art_sys_23: 1.53205129e+00 + art_sys_23: -1.53205129e+00 art_sys_24: -2.48576786e+00 - art_sys_25: 1.14117652e+01 - art_sys_26: 6.48354595e+00 + art_sys_25: -1.14117652e+01 + art_sys_26: -6.48354595e+00 art_sys_27: 1.25361233e+02 art_sys_28: -1.44792701e+00 art_sys_29: 3.80054092e-01 - art_sys_30: 1.71942618e-02 + art_sys_30: -1.71942618e-02 art_sys_31: -2.79005029e-03 - art_sys_32: 1.01608603e-03 + art_sys_32: -1.01608603e-03 art_sys_33: -1.01982594e-04 - art_sys_34: -3.32065169e-05 - art_sys_35: -4.78405689e-06 - art_sys_36: -9.41259663e-07 - art_sys_37: -2.94607804e-06 - art_sys_38: -1.56252706e-07 - art_sys_39: 1.94882985e-07 - art_sys_40: 1.36754544e-07 - art_sys_41: 3.91528408e-09 - art_sys_42: 4.67796909e-10 + art_sys_34: 3.32065169e-05 + art_sys_35: -4.67796909e-10 + art_sys_36: 4.78405689e-06 + art_sys_37: -9.41259663e-07 + art_sys_38: -2.94607804e-06 + art_sys_39: -1.56252706e-07 + art_sys_40: 1.94882985e-07 + art_sys_41: -1.36754544e-07 + art_sys_42: 3.91528408e-09 art_sys_43: 0.0 art_sys_44: 0.0 art_sys_45: 0.0 @@ -6997,26 +6997,26 @@ bins: art_sys_20: 0.0 art_sys_21: 0.0 art_sys_22: -4.22355459e-01 - art_sys_23: 8.46876719e-01 + art_sys_23: -8.46876719e-01 art_sys_24: -7.97461045e-01 - art_sys_25: -1.17547124e-01 - art_sys_26: 5.18134817e+00 + art_sys_25: 1.17547124e-01 + art_sys_26: -5.18134817e+00 art_sys_27: -3.32918160e+00 art_sys_28: -5.60384720e+01 art_sys_29: 4.01523101e-01 - art_sys_30: 2.30683314e-01 + art_sys_30: -2.30683314e-01 art_sys_31: -7.28439818e-03 - art_sys_32: 1.11017733e-03 + art_sys_32: -1.11017733e-03 art_sys_33: -2.00617662e-04 - art_sys_34: 1.25665158e-04 - art_sys_35: -2.77336736e-05 - art_sys_36: -6.23072218e-06 - art_sys_37: 4.56679298e-06 - art_sys_38: -9.64297853e-07 - art_sys_39: -2.23790103e-07 - art_sys_40: -3.10637309e-07 - art_sys_41: 7.24158239e-08 - art_sys_42: -2.20717904e-09 + art_sys_34: -1.25665158e-04 + art_sys_35: 2.20717904e-09 + art_sys_36: 2.77336736e-05 + art_sys_37: -6.23072218e-06 + art_sys_38: 4.56679298e-06 + art_sys_39: -9.64297853e-07 + art_sys_40: -2.23790103e-07 + art_sys_41: 3.10637309e-07 + art_sys_42: 7.24158239e-08 art_sys_43: 0.0 art_sys_44: 0.0 art_sys_45: 0.0 @@ -7222,26 +7222,26 @@ bins: art_sys_20: 0.0 art_sys_21: 0.0 art_sys_22: 5.82965172e-03 - art_sys_23: 1.16344122e-01 + art_sys_23: -1.16344122e-01 art_sys_24: 6.93014776e-02 - art_sys_25: 6.52324941e-02 - art_sys_26: 4.23154642e-01 + art_sys_25: -6.52324941e-02 + art_sys_26: -4.23154642e-01 art_sys_27: -2.01615206e+00 art_sys_28: 1.04757992e+00 art_sys_29: 2.30745202e+01 - art_sys_30: 4.39229675e-01 + art_sys_30: -4.39229675e-01 art_sys_31: -9.77952492e-02 - art_sys_32: 6.78121465e-03 + art_sys_32: -6.78121465e-03 art_sys_33: -1.60631357e-03 - art_sys_34: 1.04256662e-04 - art_sys_35: -1.51266971e-04 - art_sys_36: -1.42531411e-05 - art_sys_37: 8.28494075e-06 - art_sys_38: 3.06732482e-06 - art_sys_39: -1.49259153e-06 - art_sys_40: 5.99125235e-08 - art_sys_41: -7.91953270e-08 - art_sys_42: 3.40346514e-10 + art_sys_34: -1.04256662e-04 + art_sys_35: -3.40346514e-10 + art_sys_36: 1.51266971e-04 + art_sys_37: -1.42531411e-05 + art_sys_38: 8.28494075e-06 + art_sys_39: 3.06732482e-06 + art_sys_40: -1.49259153e-06 + art_sys_41: -5.99125235e-08 + art_sys_42: -7.91953270e-08 art_sys_43: 0.0 art_sys_44: 0.0 art_sys_45: 0.0 @@ -7447,26 +7447,26 @@ bins: art_sys_20: 0.0 art_sys_21: 0.0 art_sys_22: -5.37150165e-03 - art_sys_23: -3.56230445e-02 + art_sys_23: 3.56230445e-02 art_sys_24: 3.46221755e-02 - art_sys_25: 1.03983710e-01 - art_sys_26: 1.73891297e-01 + art_sys_25: -1.03983710e-01 + art_sys_26: -1.73891297e-01 art_sys_27: -5.06369185e-02 art_sys_28: 1.12923616e+00 art_sys_29: -9.42629549e-01 - art_sys_30: 1.10789527e+01 + art_sys_30: -1.10789527e+01 art_sys_31: -2.09584287e-01 - art_sys_32: 5.51389492e-02 + art_sys_32: -5.51389492e-02 art_sys_33: -1.97184331e-03 - art_sys_34: 1.86393536e-05 - art_sys_35: 2.42290281e-04 - art_sys_36: -6.95015185e-05 - art_sys_37: -1.85458063e-05 - art_sys_38: 7.58583947e-06 - art_sys_39: -1.66890514e-07 - art_sys_40: -1.42506911e-07 - art_sys_41: 3.54771850e-07 - art_sys_42: -9.65349257e-09 + art_sys_34: -1.86393536e-05 + art_sys_35: 9.65349257e-09 + art_sys_36: -2.42290281e-04 + art_sys_37: -6.95015185e-05 + art_sys_38: -1.85458063e-05 + art_sys_39: 7.58583947e-06 + art_sys_40: -1.66890514e-07 + art_sys_41: 1.42506911e-07 + art_sys_42: 3.54771850e-07 art_sys_43: 0.0 art_sys_44: 0.0 art_sys_45: 0.0 @@ -7672,26 +7672,26 @@ bins: art_sys_20: 0.0 art_sys_21: 0.0 art_sys_22: -3.48540058e-02 - art_sys_23: 2.20671127e-02 + art_sys_23: -2.20671127e-02 art_sys_24: -5.41995903e-02 - art_sys_25: 1.04787953e-01 - art_sys_26: 1.41029359e-02 + art_sys_25: -1.04787953e-01 + art_sys_26: -1.41029359e-02 art_sys_27: -2.72337984e-02 art_sys_28: 1.48874760e-02 art_sys_29: -4.17856240e-01 - art_sys_30: -4.91009114e-01 + art_sys_30: 4.91009114e-01 art_sys_31: -4.95403531e+00 - art_sys_32: 1.55479144e-01 + art_sys_32: -1.55479144e-01 art_sys_33: -2.96485780e-02 - art_sys_34: 2.34324854e-03 - art_sys_35: -1.55135891e-04 - art_sys_36: -8.68262610e-05 - art_sys_37: -4.95041606e-05 - art_sys_38: 4.59382385e-06 - art_sys_39: -5.83798876e-06 - art_sys_40: 7.84201589e-07 - art_sys_41: -5.73288382e-07 - art_sys_42: -1.76751750e-08 + art_sys_34: -2.34324854e-03 + art_sys_35: 1.76751750e-08 + art_sys_36: 1.55135891e-04 + art_sys_37: -8.68262610e-05 + art_sys_38: -4.95041606e-05 + art_sys_39: 4.59382385e-06 + art_sys_40: -5.83798876e-06 + art_sys_41: -7.84201589e-07 + art_sys_42: -5.73288382e-07 art_sys_43: 0.0 art_sys_44: 0.0 art_sys_45: 0.0 @@ -7897,26 +7897,26 @@ bins: art_sys_20: 0.0 art_sys_21: 0.0 art_sys_22: 1.81016211e-02 - art_sys_23: 1.81041225e-02 + art_sys_23: -1.81041225e-02 art_sys_24: -2.73720267e-02 - art_sys_25: 1.90837606e-02 - art_sys_26: 1.76601432e-02 + art_sys_25: -1.90837606e-02 + art_sys_26: -1.76601432e-02 art_sys_27: -4.10100786e-02 art_sys_28: -2.56387568e-03 art_sys_29: -1.68075428e-02 - art_sys_30: -2.11470708e-01 + art_sys_30: 2.11470708e-01 art_sys_31: 3.13302816e-01 - art_sys_32: 2.53953279e+00 + art_sys_32: -2.53953279e+00 art_sys_33: -6.08534883e-02 - art_sys_34: 1.17720970e-02 - art_sys_35: -1.13464211e-03 - art_sys_36: -2.50392673e-04 - art_sys_37: -5.90660513e-05 - art_sys_38: 3.31712314e-06 - art_sys_39: 4.13184789e-06 - art_sys_40: -1.27483416e-05 - art_sys_41: 5.16019090e-07 - art_sys_42: 3.00991255e-08 + art_sys_34: -1.17720970e-02 + art_sys_35: -3.00991255e-08 + art_sys_36: 1.13464211e-03 + art_sys_37: -2.50392673e-04 + art_sys_38: -5.90660513e-05 + art_sys_39: 3.31712314e-06 + art_sys_40: 4.13184789e-06 + art_sys_41: 1.27483416e-05 + art_sys_42: 5.16019090e-07 art_sys_43: 0.0 art_sys_44: 0.0 art_sys_45: 0.0 @@ -8122,26 +8122,26 @@ bins: art_sys_20: 0.0 art_sys_21: 0.0 art_sys_22: 3.77153350e-03 - art_sys_23: -8.68512677e-04 + art_sys_23: 8.68512677e-04 art_sys_24: -1.37465119e-02 - art_sys_25: -1.72832139e-02 - art_sys_26: 7.00044639e-03 + art_sys_25: 1.72832139e-02 + art_sys_26: -7.00044639e-03 art_sys_27: -4.10504956e-03 art_sys_28: 6.11939284e-03 art_sys_29: -1.74923980e-02 - art_sys_30: 4.15894889e-03 + art_sys_30: -4.15894889e-03 art_sys_31: 1.01028631e-01 - art_sys_32: -1.26479314e-01 + art_sys_32: 1.26479314e-01 art_sys_33: -1.27371770e+00 - art_sys_34: 1.98615894e-02 - art_sys_35: -1.07370232e-02 - art_sys_36: 5.97384564e-04 - art_sys_37: -2.60878420e-04 - art_sys_38: -1.05940737e-05 - art_sys_39: -1.17119672e-05 - art_sys_40: -3.66623807e-06 - art_sys_41: -1.83659760e-06 - art_sys_42: 9.80690203e-08 + art_sys_34: -1.98615894e-02 + art_sys_35: -9.80690203e-08 + art_sys_36: 1.07370232e-02 + art_sys_37: 5.97384564e-04 + art_sys_38: -2.60878420e-04 + art_sys_39: -1.05940737e-05 + art_sys_40: -1.17119672e-05 + art_sys_41: 3.66623807e-06 + art_sys_42: -1.83659760e-06 art_sys_43: 0.0 art_sys_44: 0.0 art_sys_45: 0.0 @@ -8347,26 +8347,26 @@ bins: art_sys_20: 0.0 art_sys_21: 0.0 art_sys_22: -3.69707516e-03 - art_sys_23: 4.18314695e-05 + art_sys_23: -4.18314695e-05 art_sys_24: 1.27756784e-03 - art_sys_25: -8.64304389e-03 - art_sys_26: 1.73308281e-03 + art_sys_25: 8.64304389e-03 + art_sys_26: -1.73308281e-03 art_sys_27: 8.30590092e-03 art_sys_28: 1.02347699e-02 art_sys_29: -1.25070612e-03 - art_sys_30: 5.02844014e-03 + art_sys_30: -5.02844014e-03 art_sys_31: 9.02975890e-03 - art_sys_32: -4.23111013e-02 + art_sys_32: 4.23111013e-02 art_sys_33: 3.96382176e-02 - art_sys_34: 6.52828491e-01 - art_sys_35: 4.46526655e-03 - art_sys_36: 7.64390192e-03 - art_sys_37: -1.11375996e-04 - art_sys_38: 1.64301837e-04 - art_sys_39: 6.38669270e-05 - art_sys_40: -8.99617612e-06 - art_sys_41: 6.22023231e-07 - art_sys_42: -1.46032664e-07 + art_sys_34: -6.52828491e-01 + art_sys_35: 1.46032664e-07 + art_sys_36: -4.46526655e-03 + art_sys_37: 7.64390192e-03 + art_sys_38: -1.11375996e-04 + art_sys_39: 1.64301837e-04 + art_sys_40: 6.38669270e-05 + art_sys_41: 8.99617612e-06 + art_sys_42: 6.22023231e-07 art_sys_43: 0.0 art_sys_44: 0.0 art_sys_45: 0.0 @@ -8572,26 +8572,26 @@ bins: art_sys_20: 0.0 art_sys_21: 0.0 art_sys_22: -1.85877222e-03 - art_sys_23: -1.46128210e-03 + art_sys_23: 1.46128210e-03 art_sys_24: 7.17719645e-05 - art_sys_25: -4.55268371e-03 - art_sys_26: 4.72667099e-04 + art_sys_25: 4.55268371e-03 + art_sys_26: -4.72667099e-04 art_sys_27: -2.96729467e-04 art_sys_28: 4.24007919e-03 art_sys_29: -8.89037120e-03 - art_sys_30: 7.38496352e-03 + art_sys_30: -7.38496352e-03 art_sys_31: -1.62832626e-03 - art_sys_32: -4.56089216e-03 + art_sys_32: 4.56089216e-03 art_sys_33: 3.58867605e-02 - art_sys_34: 7.35385680e-03 - art_sys_35: -3.87824729e-01 - art_sys_36: -4.79401607e-03 - art_sys_37: -5.04022928e-03 - art_sys_38: -3.67723413e-05 - art_sys_39: 1.04345188e-04 - art_sys_40: 1.71991386e-05 - art_sys_41: -4.37841240e-06 - art_sys_42: -1.32867506e-07 + art_sys_34: -7.35385680e-03 + art_sys_35: 1.32867506e-07 + art_sys_36: 3.87824729e-01 + art_sys_37: -4.79401607e-03 + art_sys_38: -5.04022928e-03 + art_sys_39: -3.67723413e-05 + art_sys_40: 1.04345188e-04 + art_sys_41: -1.71991386e-05 + art_sys_42: -4.37841240e-06 art_sys_43: 0.0 art_sys_44: 0.0 art_sys_45: 0.0 @@ -8797,26 +8797,26 @@ bins: art_sys_20: 0.0 art_sys_21: 0.0 art_sys_22: -2.89265502e-03 - art_sys_23: 2.18152173e-03 + art_sys_23: -2.18152173e-03 art_sys_24: -5.26626015e-03 - art_sys_25: 1.97173830e-04 - art_sys_26: -1.23441144e-03 + art_sys_25: -1.97173830e-04 + art_sys_26: 1.23441144e-03 art_sys_27: 1.61777400e-04 art_sys_28: -1.26156351e-03 art_sys_29: 7.20949083e-04 - art_sys_30: 2.97451271e-03 + art_sys_30: -2.97451271e-03 art_sys_31: -2.26006331e-03 - art_sys_32: 4.47487527e-03 + art_sys_32: -4.47487527e-03 art_sys_33: 2.55428009e-03 - art_sys_34: -2.13235462e-02 - art_sys_35: -9.03072076e-03 - art_sys_36: 2.31217805e-01 - art_sys_37: 1.03912464e-02 - art_sys_38: 3.00561414e-03 - art_sys_39: -5.26119197e-05 - art_sys_40: 1.33008555e-05 - art_sys_41: 7.53563100e-06 - art_sys_42: 8.93373400e-08 + art_sys_34: 2.13235462e-02 + art_sys_35: -8.93373400e-08 + art_sys_36: 9.03072076e-03 + art_sys_37: 2.31217805e-01 + art_sys_38: 1.03912464e-02 + art_sys_39: 3.00561414e-03 + art_sys_40: -5.26119197e-05 + art_sys_41: -1.33008555e-05 + art_sys_42: 7.53563100e-06 art_sys_43: 0.0 art_sys_44: 0.0 art_sys_45: 0.0 @@ -9022,26 +9022,26 @@ bins: art_sys_20: 0.0 art_sys_21: 0.0 art_sys_22: 2.93805269e-04 - art_sys_23: 4.70256924e-04 + art_sys_23: -4.70256924e-04 art_sys_24: -5.95141835e-04 - art_sys_25: 5.55918199e-04 - art_sys_26: 3.01154717e-03 + art_sys_25: -5.55918199e-04 + art_sys_26: -3.01154717e-03 art_sys_27: -2.68235196e-03 art_sys_28: -1.94939435e-03 art_sys_29: 1.98932700e-03 - art_sys_30: -1.06813239e-03 + art_sys_30: 1.06813239e-03 art_sys_31: 1.20136426e-03 - art_sys_32: -3.34349253e-04 + art_sys_32: 3.34349253e-04 art_sys_33: 1.19741859e-03 - art_sys_34: -2.23616367e-03 - art_sys_35: 1.24109089e-02 - art_sys_36: 1.67271422e-02 - art_sys_37: -1.49266938e-01 - art_sys_38: -6.94854252e-03 - art_sys_39: 1.77282868e-03 - art_sys_40: -7.09836104e-05 - art_sys_41: -8.02632490e-06 - art_sys_42: -6.98743401e-08 + art_sys_34: 2.23616367e-03 + art_sys_35: 6.98743401e-08 + art_sys_36: -1.24109089e-02 + art_sys_37: 1.67271422e-02 + art_sys_38: -1.49266938e-01 + art_sys_39: -6.94854252e-03 + art_sys_40: 1.77282868e-03 + art_sys_41: 7.09836104e-05 + art_sys_42: -8.02632490e-06 art_sys_43: 0.0 art_sys_44: 0.0 art_sys_45: 0.0 @@ -9247,26 +9247,26 @@ bins: art_sys_20: 0.0 art_sys_21: 0.0 art_sys_22: -9.19254491e-05 - art_sys_23: -2.46085850e-04 + art_sys_23: 2.46085850e-04 art_sys_24: 1.47153800e-04 - art_sys_25: -4.97699113e-04 - art_sys_26: 6.05059961e-04 + art_sys_25: 4.97699113e-04 + art_sys_26: -6.05059961e-04 art_sys_27: 4.76071346e-05 art_sys_28: -8.35818202e-04 art_sys_29: -5.85732352e-04 - art_sys_30: -1.07114356e-03 + art_sys_30: 1.07114356e-03 art_sys_31: 4.72634953e-04 - art_sys_32: -1.70478205e-04 + art_sys_32: 1.70478205e-04 art_sys_33: -1.58783756e-04 - art_sys_34: -5.56762044e-04 - art_sys_35: 1.03729399e-03 - art_sys_36: -6.22142282e-03 - art_sys_37: -1.19546130e-02 - art_sys_38: 9.20410276e-02 - art_sys_39: -4.55292657e-03 - art_sys_40: 1.24064517e-03 - art_sys_41: 5.13397924e-05 - art_sys_42: 3.23207248e-06 + art_sys_34: 5.56762044e-04 + art_sys_35: -3.23207248e-06 + art_sys_36: -1.03729399e-03 + art_sys_37: -6.22142282e-03 + art_sys_38: -1.19546130e-02 + art_sys_39: 9.20410276e-02 + art_sys_40: -4.55292657e-03 + art_sys_41: -1.24064517e-03 + art_sys_42: 5.13397924e-05 art_sys_43: 0.0 art_sys_44: 0.0 art_sys_45: 0.0 @@ -9472,26 +9472,26 @@ bins: art_sys_20: 0.0 art_sys_21: 0.0 art_sys_22: -1.60759722e-04 - art_sys_23: -2.88169245e-04 + art_sys_23: 2.88169245e-04 art_sys_24: 1.12439305e-05 - art_sys_25: -3.04501558e-05 - art_sys_26: -2.02223515e-04 + art_sys_25: 3.04501558e-05 + art_sys_26: 2.02223515e-04 art_sys_27: -3.83822047e-04 art_sys_28: -1.77777534e-04 art_sys_29: 4.94212210e-04 - art_sys_30: -5.72344974e-05 + art_sys_30: 5.72344974e-05 art_sys_31: -5.74295647e-04 - art_sys_32: -2.40080778e-04 + art_sys_32: 2.40080778e-04 art_sys_33: -4.24680898e-04 - art_sys_34: -8.03000491e-04 - art_sys_35: 3.98953252e-04 - art_sys_36: -8.70524132e-04 - art_sys_37: 3.92899790e-03 - art_sys_38: 8.40580936e-03 - art_sys_39: 5.29940271e-02 - art_sys_40: -3.54877870e-03 - art_sys_41: -4.87573291e-04 - art_sys_42: 2.24826071e-06 + art_sys_34: 8.03000491e-04 + art_sys_35: -2.24826071e-06 + art_sys_36: -3.98953252e-04 + art_sys_37: -8.70524132e-04 + art_sys_38: 3.92899790e-03 + art_sys_39: 8.40580936e-03 + art_sys_40: 5.29940271e-02 + art_sys_41: 3.54877870e-03 + art_sys_42: -4.87573291e-04 art_sys_43: 0.0 art_sys_44: 0.0 art_sys_45: 0.0 @@ -9697,26 +9697,26 @@ bins: art_sys_20: 0.0 art_sys_21: 0.0 art_sys_22: -3.15536915e-04 - art_sys_23: -1.86112779e-04 + art_sys_23: 1.86112779e-04 art_sys_24: 2.23346462e-04 - art_sys_25: -9.03836592e-05 - art_sys_26: -4.22132630e-05 + art_sys_25: 9.03836592e-05 + art_sys_26: 4.22132630e-05 art_sys_27: -5.84248602e-04 art_sys_28: -4.68401462e-04 art_sys_29: 4.97849826e-05 - art_sys_30: -1.26362761e-05 + art_sys_30: 1.26362761e-05 art_sys_31: 1.53132511e-04 - art_sys_32: 8.81725415e-04 + art_sys_32: -8.81725415e-04 art_sys_33: -2.12504798e-04 - art_sys_34: 1.11093697e-04 - art_sys_35: 2.18080279e-04 - art_sys_36: 7.49741760e-05 - art_sys_37: 5.30286564e-04 - art_sys_38: -2.45885211e-03 - art_sys_39: 5.73510219e-03 - art_sys_40: 3.42996232e-02 - art_sys_41: 1.62729382e-03 - art_sys_42: 1.47087510e-05 + art_sys_34: -1.11093697e-04 + art_sys_35: -1.47087510e-05 + art_sys_36: -2.18080279e-04 + art_sys_37: 7.49741760e-05 + art_sys_38: 5.30286564e-04 + art_sys_39: -2.45885211e-03 + art_sys_40: 5.73510219e-03 + art_sys_41: -3.42996232e-02 + art_sys_42: 1.62729382e-03 art_sys_43: 0.0 art_sys_44: 0.0 art_sys_45: 0.0 @@ -9922,26 +9922,26 @@ bins: art_sys_20: 0.0 art_sys_21: 0.0 art_sys_22: -1.79647444e-04 - art_sys_23: 1.69681409e-04 + art_sys_23: -1.69681409e-04 art_sys_24: -5.71602039e-05 - art_sys_25: 3.68633405e-04 - art_sys_26: 1.10705351e-04 + art_sys_25: -3.68633405e-04 + art_sys_26: -1.10705351e-04 art_sys_27: -2.06184352e-05 art_sys_28: -2.45025318e-04 art_sys_29: -1.10969370e-04 - art_sys_30: 2.20169510e-04 + art_sys_30: -2.20169510e-04 art_sys_31: 1.79880851e-04 - art_sys_32: 1.66574526e-04 + art_sys_32: -1.66574526e-04 art_sys_33: 1.12096302e-04 - art_sys_34: 4.04804083e-05 - art_sys_35: 9.65975426e-05 - art_sys_36: 1.01634815e-04 - art_sys_37: -2.01066406e-05 - art_sys_38: -1.79733766e-04 - art_sys_39: -9.15421466e-04 - art_sys_40: 3.14922015e-03 - art_sys_41: -1.82970994e-02 - art_sys_42: -1.26793578e-05 + art_sys_34: -4.04804083e-05 + art_sys_35: 1.26793578e-05 + art_sys_36: -9.65975426e-05 + art_sys_37: 1.01634815e-04 + art_sys_38: -2.01066406e-05 + art_sys_39: -1.79733766e-04 + art_sys_40: -9.15421466e-04 + art_sys_41: -3.14922015e-03 + art_sys_42: -1.82970994e-02 art_sys_43: 0.0 art_sys_44: 0.0 art_sys_45: 0.0 @@ -10147,26 +10147,26 @@ bins: art_sys_20: 0.0 art_sys_21: 0.0 art_sys_22: -2.28203542e-05 - art_sys_23: 3.79588934e-06 + art_sys_23: -3.79588934e-06 art_sys_24: 5.61178365e-06 - art_sys_25: -1.34669367e-05 - art_sys_26: 2.21024527e-05 + art_sys_25: 1.34669367e-05 + art_sys_26: -2.21024527e-05 art_sys_27: -1.71852232e-05 art_sys_28: -3.23528356e-05 art_sys_29: -7.51576067e-06 - art_sys_30: 3.51417643e-05 + art_sys_30: -3.51417643e-05 art_sys_31: -3.36439577e-05 - art_sys_32: -2.42753463e-05 + art_sys_32: 2.42753463e-05 art_sys_33: 4.45442875e-05 - art_sys_34: 3.06951183e-05 - art_sys_35: -1.69737744e-05 - art_sys_36: 9.96141761e-07 - art_sys_37: 3.03943537e-06 - art_sys_38: -8.84551020e-05 - art_sys_39: -6.25369407e-05 - art_sys_40: -1.43853536e-04 - art_sys_41: -7.96399460e-05 - art_sys_42: 3.20193887e-03 + art_sys_34: -3.06951183e-05 + art_sys_35: -3.20193887e-03 + art_sys_36: 1.69737744e-05 + art_sys_37: 9.96141761e-07 + art_sys_38: 3.03943537e-06 + art_sys_39: -8.84551020e-05 + art_sys_40: -6.25369407e-05 + art_sys_41: 1.43853536e-04 + art_sys_42: -7.96399460e-05 art_sys_43: 0.0 art_sys_44: 0.0 art_sys_45: 0.0 @@ -10400,16 +10400,16 @@ bins: art_sys_48: -2.23487286e-02 art_sys_49: -3.60848773e-04 art_sys_50: 6.21213775e-04 - art_sys_51: 9.52007037e-05 - art_sys_52: -3.75026894e-05 - art_sys_53: -6.17897095e-06 + art_sys_51: -9.52007037e-05 + art_sys_52: 3.75026894e-05 + art_sys_53: 6.17897095e-06 art_sys_54: 1.09362599e-06 art_sys_55: 7.33430682e-07 - art_sys_56: 7.34567167e-09 + art_sys_56: -7.34567167e-09 art_sys_57: -3.61209793e-08 art_sys_58: -3.29817357e-08 art_sys_59: 8.33069175e-09 - art_sys_60: 8.76485834e-11 + art_sys_60: -8.76485834e-11 art_sys_61: 3.81855777e-10 art_sys_62: 0.0 art_sys_63: 0.0 @@ -10625,16 +10625,16 @@ bins: art_sys_48: -4.22713500e-02 art_sys_49: 3.15270604e-03 art_sys_50: -1.21404034e-03 - art_sys_51: 1.49855462e-04 - art_sys_52: 9.06258801e-05 - art_sys_53: -3.89461332e-06 + art_sys_51: -1.49855462e-04 + art_sys_52: -9.06258801e-05 + art_sys_53: 3.89461332e-06 art_sys_54: 1.91543676e-06 art_sys_55: -1.05365902e-06 - art_sys_56: 3.37162322e-07 + art_sys_56: -3.37162322e-07 art_sys_57: -3.58179579e-08 art_sys_58: 2.42476016e-08 art_sys_59: -2.39989687e-08 - art_sys_60: -2.67708388e-11 + art_sys_60: 2.67708388e-11 art_sys_61: -2.09965775e-09 art_sys_62: 0.0 art_sys_63: 0.0 @@ -10850,16 +10850,16 @@ bins: art_sys_48: -8.50333455e-02 art_sys_49: 1.02489061e-03 art_sys_50: -3.10105237e-03 - art_sys_51: 3.91473778e-04 - art_sys_52: -8.69866557e-05 - art_sys_53: -5.55024174e-05 + art_sys_51: -3.91473778e-04 + art_sys_52: 8.69866557e-05 + art_sys_53: 5.55024174e-05 art_sys_54: -5.61323138e-06 art_sys_55: 1.28576822e-07 - art_sys_56: -1.85599336e-07 + art_sys_56: 1.85599336e-07 art_sys_57: 2.66378264e-07 art_sys_58: 1.45428562e-08 art_sys_59: -2.24939332e-10 - art_sys_60: -1.20617826e-11 + art_sys_60: 1.20617826e-11 art_sys_61: 1.73963394e-08 art_sys_62: 0.0 art_sys_63: 0.0 @@ -11075,16 +11075,16 @@ bins: art_sys_48: -1.58584938e+00 art_sys_49: 3.60811479e-02 art_sys_50: -1.92201199e-02 - art_sys_51: -4.84571565e-05 - art_sys_52: 1.62737675e-04 - art_sys_53: 8.08997589e-05 + art_sys_51: 4.84571565e-05 + art_sys_52: -1.62737675e-04 + art_sys_53: -8.08997589e-05 art_sys_54: 3.15411999e-06 art_sys_55: -2.69437490e-06 - art_sys_56: -2.77549746e-06 + art_sys_56: 2.77549746e-06 art_sys_57: -2.34617921e-08 art_sys_58: -1.06508888e-07 art_sys_59: -5.82292265e-09 - art_sys_60: 5.16173485e-11 + art_sys_60: -5.16173485e-11 art_sys_61: 5.11123106e-09 art_sys_62: 0.0 art_sys_63: 0.0 @@ -11300,16 +11300,16 @@ bins: art_sys_48: 2.76328213e+00 art_sys_49: -7.76356933e-01 art_sys_50: -4.30527930e-04 - art_sys_51: -1.02663986e-03 - art_sys_52: 5.32648281e-04 - art_sys_53: -1.77002357e-04 + art_sys_51: 1.02663986e-03 + art_sys_52: -5.32648281e-04 + art_sys_53: 1.77002357e-04 art_sys_54: -1.85461896e-06 art_sys_55: -4.25636772e-06 - art_sys_56: -1.43467859e-07 + art_sys_56: 1.43467859e-07 art_sys_57: -3.50941013e-07 art_sys_58: -2.40483565e-08 art_sys_59: 1.35872271e-07 - art_sys_60: 5.92681650e-10 + art_sys_60: -5.92681650e-10 art_sys_61: -4.03730569e-08 art_sys_62: 0.0 art_sys_63: 0.0 @@ -11525,16 +11525,16 @@ bins: art_sys_48: -5.95698306e+01 art_sys_49: 1.40905539e+00 art_sys_50: -2.77866576e-01 - art_sys_51: -7.92766258e-03 - art_sys_52: -3.66278323e-04 - art_sys_53: 4.72197729e-05 + art_sys_51: 7.92766258e-03 + art_sys_52: 3.66278323e-04 + art_sys_53: -4.72197729e-05 art_sys_54: 1.58434782e-05 art_sys_55: 9.04300392e-07 - art_sys_56: 2.37613082e-06 + art_sys_56: -2.37613082e-06 art_sys_57: -2.50846136e-06 art_sys_58: -1.80489595e-06 art_sys_59: 7.39519526e-08 - art_sys_60: 2.36230645e-10 + art_sys_60: -2.36230645e-10 art_sys_61: -9.63475484e-09 art_sys_62: 0.0 art_sys_63: 0.0 @@ -11750,16 +11750,16 @@ bins: art_sys_48: -2.82177164e+00 art_sys_49: -3.09001221e+01 art_sys_50: 3.48210070e-01 - art_sys_51: -1.03335483e-01 - art_sys_52: -8.58417823e-04 - art_sys_53: 6.75162723e-04 + art_sys_51: 1.03335483e-01 + art_sys_52: 8.58417823e-04 + art_sys_53: -6.75162723e-04 art_sys_54: 1.71980189e-04 art_sys_55: 3.06180889e-05 - art_sys_56: 9.20327718e-06 + art_sys_56: -9.20327718e-06 art_sys_57: 3.79205098e-07 art_sys_58: -1.91291931e-06 art_sys_59: -2.08081108e-07 - art_sys_60: -1.98790364e-09 + art_sys_60: 1.98790364e-09 art_sys_61: -1.11835987e-07 art_sys_62: 0.0 art_sys_63: 0.0 @@ -11975,16 +11975,16 @@ bins: art_sys_48: 1.25054374e+00 art_sys_49: -9.24209004e-01 art_sys_50: -1.23838037e+01 - art_sys_51: 2.50324942e-01 - art_sys_52: -5.57036350e-02 - art_sys_53: 1.81148878e-03 + art_sys_51: -2.50324942e-01 + art_sys_52: 5.57036350e-02 + art_sys_53: -1.81148878e-03 art_sys_54: 2.70935328e-04 art_sys_55: 2.94249444e-05 - art_sys_56: 2.68315412e-05 + art_sys_56: -2.68315412e-05 art_sys_57: -1.31564890e-05 art_sys_58: -6.34924848e-07 art_sys_59: -4.62932059e-07 - art_sys_60: 6.22427120e-10 + art_sys_60: -6.22427120e-10 art_sys_61: 2.69680101e-07 art_sys_62: 0.0 art_sys_63: 0.0 @@ -12200,16 +12200,16 @@ bins: art_sys_48: 1.94002811e-01 art_sys_49: 5.30793968e-01 art_sys_50: -5.72632250e-01 - art_sys_51: -5.54410107e+00 - art_sys_52: 1.02990569e-01 - art_sys_53: 2.83795870e-02 + art_sys_51: 5.54410107e+00 + art_sys_52: -1.02990569e-01 + art_sys_53: -2.83795870e-02 art_sys_54: 1.29793253e-03 art_sys_55: -3.07831532e-04 - art_sys_56: -9.66556595e-06 + art_sys_56: 9.66556595e-06 art_sys_57: 2.09787115e-05 art_sys_58: -6.81222007e-06 art_sys_59: -9.85758381e-07 - art_sys_60: -8.49427923e-09 + art_sys_60: 8.49427923e-09 art_sys_61: -2.84373043e-08 art_sys_62: 0.0 art_sys_63: 0.0 @@ -12425,16 +12425,16 @@ bins: art_sys_48: -8.32034240e-03 art_sys_49: 4.58442863e-02 art_sys_50: 2.18568410e-01 - art_sys_51: -2.09306604e-01 - art_sys_52: -2.86173114e+00 - art_sys_53: -5.55053002e-02 + art_sys_51: 2.09306604e-01 + art_sys_52: 2.86173114e+00 + art_sys_53: 5.55053002e-02 art_sys_54: 1.36256733e-02 art_sys_55: 5.16461752e-04 - art_sys_56: 2.13637863e-04 + art_sys_56: -2.13637863e-04 art_sys_57: 1.61167031e-05 art_sys_58: 1.25662139e-06 art_sys_59: 3.17236260e-06 - art_sys_60: 3.02582864e-08 + art_sys_60: -3.02582864e-08 art_sys_61: 7.82809980e-07 art_sys_62: 0.0 art_sys_63: 0.0 @@ -12650,16 +12650,16 @@ bins: art_sys_48: -2.41152715e-03 art_sys_49: 7.48560387e-03 art_sys_50: 4.05153204e-02 - art_sys_51: 1.16049619e-01 - art_sys_52: -1.32557395e-01 - art_sys_53: 1.24315602e+00 + art_sys_51: -1.16049619e-01 + art_sys_52: 1.32557395e-01 + art_sys_53: -1.24315602e+00 art_sys_54: -2.51612667e-02 art_sys_55: -9.22195097e-03 - art_sys_56: -1.63779360e-04 + art_sys_56: 1.63779360e-04 art_sys_57: 3.42989315e-05 art_sys_58: 7.69044821e-07 art_sys_59: -3.93893188e-06 - art_sys_60: -1.07199328e-07 + art_sys_60: 1.07199328e-07 art_sys_61: 1.32559588e-07 art_sys_62: 0.0 art_sys_63: 0.0 @@ -12875,16 +12875,16 @@ bins: art_sys_48: 1.52634349e-03 art_sys_49: 7.48439983e-03 art_sys_50: 3.53954431e-03 - art_sys_51: 2.11968683e-02 - art_sys_52: 5.86543323e-02 - art_sys_53: 5.42906294e-02 + art_sys_51: -2.11968683e-02 + art_sys_52: -5.86543323e-02 + art_sys_53: -5.42906294e-02 art_sys_54: 6.05612221e-01 art_sys_55: 1.52885159e-02 - art_sys_56: 4.92673169e-03 + art_sys_56: -4.92673169e-03 art_sys_57: 1.53704969e-04 art_sys_58: -2.35569710e-05 art_sys_59: -7.65451259e-06 - art_sys_60: 2.12624609e-07 + art_sys_60: -2.12624609e-07 art_sys_61: -2.79356350e-06 art_sys_62: 0.0 art_sys_63: 0.0 @@ -13100,16 +13100,16 @@ bins: art_sys_48: -4.52203489e-04 art_sys_49: -3.21855355e-03 art_sys_50: -1.25044854e-03 - art_sys_51: 2.58676170e-03 - art_sys_52: 1.71614006e-03 - art_sys_53: -3.15078218e-02 + art_sys_51: -2.58676170e-03 + art_sys_52: -1.71614006e-03 + art_sys_53: 3.15078218e-02 art_sys_54: 2.88868612e-02 art_sys_55: -3.37701525e-01 - art_sys_56: -7.81339273e-03 + art_sys_56: 7.81339273e-03 art_sys_57: 2.44957761e-03 art_sys_58: 1.42169631e-05 art_sys_59: -4.19168303e-05 - art_sys_60: 4.28780596e-08 + art_sys_60: -4.28780596e-08 art_sys_61: -6.08035069e-06 art_sys_62: 0.0 art_sys_63: 0.0 @@ -13325,16 +13325,16 @@ bins: art_sys_48: 9.26640812e-04 art_sys_49: 1.47206210e-03 art_sys_50: 1.69056394e-03 - art_sys_51: -5.59117852e-04 - art_sys_52: 1.85537167e-03 - art_sys_53: -1.80713149e-03 + art_sys_51: 5.59117852e-04 + art_sys_52: -1.85537167e-03 + art_sys_53: 1.80713149e-03 art_sys_54: -1.63781510e-02 art_sys_55: -1.70246003e-02 - art_sys_56: 1.65556806e-01 + art_sys_56: -1.65556806e-01 art_sys_57: -9.41269596e-03 art_sys_58: -2.38387383e-03 art_sys_59: -3.25726146e-05 - art_sys_60: 5.96572547e-07 + art_sys_60: -5.96572547e-07 art_sys_61: -2.35283718e-07 art_sys_62: 0.0 art_sys_63: 0.0 @@ -13550,16 +13550,16 @@ bins: art_sys_48: -1.44060249e-03 art_sys_49: 3.49645490e-05 art_sys_50: -1.39393151e-03 - art_sys_51: 9.82839792e-04 - art_sys_52: 5.30998535e-04 - art_sys_53: 8.66300821e-05 + art_sys_51: -9.82839792e-04 + art_sys_52: -5.30998535e-04 + art_sys_53: -8.66300821e-05 art_sys_54: -3.22855254e-03 art_sys_55: 6.61896711e-03 - art_sys_56: 1.64656363e-02 + art_sys_56: -1.64656363e-02 art_sys_57: 9.86184257e-02 art_sys_58: 6.26548479e-03 art_sys_59: -9.77059408e-04 - art_sys_60: 1.58890740e-07 + art_sys_60: -1.58890740e-07 art_sys_61: -3.79118860e-05 art_sys_62: 0.0 art_sys_63: 0.0 @@ -13775,16 +13775,16 @@ bins: art_sys_48: 1.60869026e-03 art_sys_49: 7.91431867e-04 art_sys_50: -2.49501975e-05 - art_sys_51: 7.14736485e-04 - art_sys_52: -8.91490945e-05 - art_sys_53: 6.86676486e-05 + art_sys_51: -7.14736485e-04 + art_sys_52: 8.91490945e-05 + art_sys_53: -6.86676486e-05 art_sys_54: 8.57951501e-05 art_sys_55: 1.22234131e-03 - art_sys_56: -4.66375998e-03 + art_sys_56: 4.66375998e-03 art_sys_57: 1.04944841e-02 art_sys_58: -6.17784824e-02 art_sys_59: 2.07139205e-03 - art_sys_60: 3.01096465e-06 + art_sys_60: -3.01096465e-06 art_sys_61: 4.72630768e-04 art_sys_62: 0.0 art_sys_63: 0.0 @@ -14000,16 +14000,16 @@ bins: art_sys_48: 2.30799618e-05 art_sys_49: 2.46427648e-04 art_sys_50: 2.12589442e-04 - art_sys_51: 1.29647884e-04 - art_sys_52: -2.93203289e-04 - art_sys_53: -1.15086968e-04 + art_sys_51: -1.29647884e-04 + art_sys_52: 2.93203289e-04 + art_sys_53: 1.15086968e-04 art_sys_54: -5.98935240e-05 art_sys_55: 3.14330514e-04 - art_sys_56: -8.88056712e-04 + art_sys_56: 8.88056712e-04 art_sys_57: -2.10461293e-03 art_sys_58: -3.93965717e-03 art_sys_59: -3.50112283e-02 - art_sys_60: -2.38061588e-05 + art_sys_60: 2.38061588e-05 art_sys_61: -1.49379990e-03 art_sys_62: 0.0 art_sys_63: 0.0 @@ -14225,16 +14225,16 @@ bins: art_sys_48: -1.04490218e-04 art_sys_49: -1.81578800e-04 art_sys_50: 1.93298848e-04 - art_sys_51: -6.84279374e-06 - art_sys_52: 1.16004230e-04 - art_sys_53: -1.97725129e-05 + art_sys_51: 6.84279374e-06 + art_sys_52: -1.16004230e-04 + art_sys_53: 1.97725129e-05 art_sys_54: 8.90667264e-05 art_sys_55: -1.04359120e-04 - art_sys_56: 8.37153065e-05 + art_sys_56: -8.37153065e-05 art_sys_57: -2.43272098e-04 art_sys_58: 1.31494654e-03 art_sys_59: -2.97926610e-03 - art_sys_60: 3.90299005e-05 + art_sys_60: -3.90299005e-05 art_sys_61: 1.79118225e-02 art_sys_62: 0.0 art_sys_63: 0.0 @@ -14450,16 +14450,16 @@ bins: art_sys_48: -2.07886872e-06 art_sys_49: 1.45812828e-05 art_sys_50: 7.69113733e-07 - art_sys_51: 9.58227234e-06 - art_sys_52: -1.45046920e-05 - art_sys_53: -3.71925535e-05 + art_sys_51: -9.58227234e-06 + art_sys_52: 1.45046920e-05 + art_sys_53: 3.71925535e-05 art_sys_54: 3.84229834e-05 art_sys_55: -8.16692233e-06 - art_sys_56: 3.37707324e-05 + art_sys_56: -3.37707324e-05 art_sys_57: 2.47368030e-05 art_sys_58: -1.24092432e-05 art_sys_59: 2.17139387e-04 - art_sys_60: -3.33086376e-03 + art_sys_60: 3.33086376e-03 art_sys_61: 2.20986029e-04 art_sys_62: 0.0 art_sys_63: 0.0 @@ -14693,15 +14693,15 @@ bins: art_sys_66: 1.74252968e-01 art_sys_67: 5.26652034e-04 art_sys_68: -6.13531138e-03 - art_sys_69: -1.75138934e-03 - art_sys_70: -7.29104001e-04 - art_sys_71: 2.48096920e-05 - art_sys_72: 2.28006616e-05 - art_sys_73: -3.24912541e-06 + art_sys_69: 1.75138934e-03 + art_sys_70: 7.29104001e-04 + art_sys_71: -2.48096920e-05 + art_sys_72: -2.28006616e-05 + art_sys_73: 3.24912541e-06 art_sys_74: 2.03780513e-07 - art_sys_75: -1.01661787e-07 - art_sys_76: -5.42627878e-08 - art_sys_77: -7.17831092e-09 + art_sys_75: 1.01661787e-07 + art_sys_76: 5.42627878e-08 + art_sys_77: 7.17831092e-09 art_sys_78: -1.33458464e-10 art_sys_79: 0.0 art_sys_80: 0.0 @@ -14918,15 +14918,15 @@ bins: art_sys_66: -4.44007650e-01 art_sys_67: -5.39301823e-02 art_sys_68: 1.87162444e-03 - art_sys_69: -2.28485908e-04 - art_sys_70: 4.18398407e-04 - art_sys_71: -3.18959075e-05 - art_sys_72: -5.08200322e-06 - art_sys_73: 1.10585096e-06 + art_sys_69: 2.28485908e-04 + art_sys_70: -4.18398407e-04 + art_sys_71: 3.18959075e-05 + art_sys_72: 5.08200322e-06 + art_sys_73: -1.10585096e-06 art_sys_74: 1.05548441e-07 - art_sys_75: -3.05399083e-08 - art_sys_76: 2.46576399e-08 - art_sys_77: 1.03499634e-08 + art_sys_75: 3.05399083e-08 + art_sys_76: -2.46576399e-08 + art_sys_77: -1.03499634e-08 art_sys_78: 6.38749618e-11 art_sys_79: 0.0 art_sys_80: 0.0 @@ -15143,15 +15143,15 @@ bins: art_sys_66: 3.37737435e+00 art_sys_67: 2.58525355e-01 art_sys_68: 4.93910361e-02 - art_sys_69: -6.41359012e-04 - art_sys_70: -1.05304412e-03 - art_sys_71: 4.99850286e-05 - art_sys_72: 2.38715890e-05 - art_sys_73: 6.36227631e-06 + art_sys_69: 6.41359012e-04 + art_sys_70: 1.05304412e-03 + art_sys_71: -4.99850286e-05 + art_sys_72: -2.38715890e-05 + art_sys_73: -6.36227631e-06 art_sys_74: -2.17630487e-07 - art_sys_75: -2.74463201e-07 - art_sys_76: -1.66565097e-07 - art_sys_77: -1.12107781e-08 + art_sys_75: 2.74463201e-07 + art_sys_76: 1.66565097e-07 + art_sys_77: 1.12107781e-08 art_sys_78: 2.07223164e-10 art_sys_79: 0.0 art_sys_80: 0.0 @@ -15368,15 +15368,15 @@ bins: art_sys_66: -9.30058149e+00 art_sys_67: -2.12197547e+00 art_sys_68: -6.27801622e-02 - art_sys_69: 1.07652466e-02 - art_sys_70: 1.17164265e-03 - art_sys_71: 2.25238844e-05 - art_sys_72: -5.54662882e-05 - art_sys_73: 2.51878317e-05 + art_sys_69: -1.07652466e-02 + art_sys_70: -1.17164265e-03 + art_sys_71: -2.25238844e-05 + art_sys_72: 5.54662882e-05 + art_sys_73: -2.51878317e-05 art_sys_74: 4.62254240e-06 - art_sys_75: 3.11603567e-07 - art_sys_76: 2.88768546e-07 - art_sys_77: 1.21574040e-08 + art_sys_75: -3.11603567e-07 + art_sys_76: -2.88768546e-07 + art_sys_77: -1.21574040e-08 art_sys_78: 6.21697638e-10 art_sys_79: 0.0 art_sys_80: 0.0 @@ -15593,15 +15593,15 @@ bins: art_sys_66: 6.88004975e+01 art_sys_67: 6.79426548e+00 art_sys_68: 1.08646485e+00 - art_sys_69: -5.72672639e-02 - art_sys_70: -3.69348743e-03 - art_sys_71: -9.81332931e-05 - art_sys_72: -8.25164443e-05 - art_sys_73: 2.91006884e-05 + art_sys_69: 5.72672639e-02 + art_sys_70: 3.69348743e-03 + art_sys_71: 9.81332931e-05 + art_sys_72: 8.25164443e-05 + art_sys_73: -2.91006884e-05 art_sys_74: -8.24371422e-06 - art_sys_75: -5.55643028e-07 - art_sys_76: -4.38999593e-07 - art_sys_77: -7.12822837e-08 + art_sys_75: 5.55643028e-07 + art_sys_76: 4.38999593e-07 + art_sys_77: 7.12822837e-08 art_sys_78: -3.92018610e-09 art_sys_79: 0.0 art_sys_80: 0.0 @@ -15818,15 +15818,15 @@ bins: art_sys_66: 1.26644212e+01 art_sys_67: -3.93721103e+01 art_sys_68: -2.80465106e+00 - art_sys_69: 4.36143863e-01 - art_sys_70: 1.72570304e-02 - art_sys_71: -5.55025645e-04 - art_sys_72: -1.89921974e-04 - art_sys_73: -7.31993643e-05 + art_sys_69: -4.36143863e-01 + art_sys_70: -1.72570304e-02 + art_sys_71: 5.55025645e-04 + art_sys_72: 1.89921974e-04 + art_sys_73: 7.31993643e-05 art_sys_74: 9.33566451e-07 - art_sys_75: -1.61604621e-06 - art_sys_76: -5.89096510e-07 - art_sys_77: 8.32020540e-08 + art_sys_75: 1.61604621e-06 + art_sys_76: 5.89096510e-07 + art_sys_77: -8.32020540e-08 art_sys_78: 3.47346911e-09 art_sys_79: 0.0 art_sys_80: 0.0 @@ -16043,15 +16043,15 @@ bins: art_sys_66: -1.87521084e+00 art_sys_67: -5.80882287e+00 art_sys_68: 2.07399830e+01 - art_sys_69: -1.33860944e+00 - art_sys_70: -1.83095320e-01 - art_sys_71: -3.87932213e-04 - art_sys_72: 1.32983776e-03 - art_sys_73: 1.19885874e-04 + art_sys_69: 1.33860944e+00 + art_sys_70: 1.83095320e-01 + art_sys_71: 3.87932213e-04 + art_sys_72: -1.32983776e-03 + art_sys_73: -1.19885874e-04 art_sys_74: -3.04898435e-05 - art_sys_75: -3.71659240e-06 - art_sys_76: 8.22742847e-07 - art_sys_77: 3.78076522e-07 + art_sys_75: 3.71659240e-06 + art_sys_76: -8.22742847e-07 + art_sys_77: -3.78076522e-07 art_sys_78: -6.72876271e-09 art_sys_79: 0.0 art_sys_80: 0.0 @@ -16268,15 +16268,15 @@ bins: art_sys_66: -3.82806679e-01 art_sys_67: 9.20211168e-01 art_sys_68: 2.81729485e+00 - art_sys_69: 1.04761471e+01 - art_sys_70: 5.13238656e-01 - art_sys_71: -4.20263416e-02 - art_sys_72: -2.36760669e-03 - art_sys_73: 9.22751094e-05 + art_sys_69: -1.04761471e+01 + art_sys_70: -5.13238656e-01 + art_sys_71: 4.20263416e-02 + art_sys_72: 2.36760669e-03 + art_sys_73: -9.22751094e-05 art_sys_74: 2.07729945e-05 - art_sys_75: -8.21937211e-06 - art_sys_76: -1.10751250e-06 - art_sys_77: 1.01860325e-07 + art_sys_75: 8.21937211e-06 + art_sys_76: 1.10751250e-06 + art_sys_77: -1.01860325e-07 art_sys_78: -8.39216964e-09 art_sys_79: 0.0 art_sys_80: 0.0 @@ -16493,15 +16493,15 @@ bins: art_sys_66: 1.83227932e-02 art_sys_67: 1.56455053e-01 art_sys_68: -4.48493738e-01 - art_sys_69: 1.07499026e+00 - art_sys_70: -5.29032997e+00 - art_sys_71: 1.13699489e-01 - art_sys_72: 3.17628351e-02 - art_sys_73: 7.09890408e-04 + art_sys_69: -1.07499026e+00 + art_sys_70: 5.29032997e+00 + art_sys_71: -1.13699489e-01 + art_sys_72: -3.17628351e-02 + art_sys_73: -7.09890408e-04 art_sys_74: -1.43014484e-04 - art_sys_75: -1.26575439e-05 - art_sys_76: -4.77472112e-06 - art_sys_77: 1.76815490e-06 + art_sys_75: 1.26575439e-05 + art_sys_76: 4.77472112e-06 + art_sys_77: -1.76815490e-06 art_sys_78: 2.33251710e-08 art_sys_79: 0.0 art_sys_80: 0.0 @@ -16718,15 +16718,15 @@ bins: art_sys_66: 1.83012396e-03 art_sys_67: 1.70692257e-03 art_sys_68: -9.41898568e-02 - art_sys_69: -1.70815093e-01 - art_sys_70: -3.55861120e-01 - art_sys_71: -1.82516318e+00 - art_sys_72: -1.17675942e-01 - art_sys_73: -1.11312913e-02 + art_sys_69: 1.70815093e-01 + art_sys_70: 3.55861120e-01 + art_sys_71: 1.82516318e+00 + art_sys_72: 1.17675942e-01 + art_sys_73: 1.11312913e-02 art_sys_74: 1.40460505e-04 - art_sys_75: 1.81214163e-05 - art_sys_76: -4.41253808e-06 - art_sys_77: -2.95108891e-06 + art_sys_75: -1.81214163e-05 + art_sys_76: 4.41253808e-06 + art_sys_77: 2.95108891e-06 art_sys_78: -4.99886735e-08 art_sys_79: 0.0 art_sys_80: 0.0 @@ -16943,15 +16943,15 @@ bins: art_sys_66: 8.29446490e-03 art_sys_67: -2.25323746e-03 art_sys_68: -1.83356707e-02 - art_sys_69: -2.73408436e-02 - art_sys_70: 1.23995592e-01 - art_sys_71: -2.15563571e-01 - art_sys_72: 1.02220431e+00 - art_sys_73: 4.12383680e-02 + art_sys_69: 2.73408436e-02 + art_sys_70: -1.23995592e-01 + art_sys_71: 2.15563571e-01 + art_sys_72: -1.02220431e+00 + art_sys_73: -4.12383680e-02 art_sys_74: -4.05735515e-03 - art_sys_75: 9.43846780e-05 - art_sys_76: 2.38666196e-06 - art_sys_77: 2.78743069e-06 + art_sys_75: -9.43846780e-05 + art_sys_76: -2.38666196e-06 + art_sys_77: -2.78743069e-06 art_sys_78: -1.64409273e-07 art_sys_79: 0.0 art_sys_80: 0.0 @@ -17168,15 +17168,15 @@ bins: art_sys_66: 1.98606442e-03 art_sys_67: 4.72702922e-03 art_sys_68: 5.90701995e-03 - art_sys_69: 4.45676358e-03 - art_sys_70: 1.04285455e-02 - art_sys_71: 2.23791159e-02 - art_sys_72: 8.64339671e-02 - art_sys_73: -5.08482032e-01 + art_sys_69: -4.45676358e-03 + art_sys_70: -1.04285455e-02 + art_sys_71: -2.23791159e-02 + art_sys_72: -8.64339671e-02 + art_sys_73: 5.08482032e-01 art_sys_74: 1.00521977e-02 - art_sys_75: -1.36673291e-03 - art_sys_76: -9.78069847e-05 - art_sys_77: -1.95415916e-06 + art_sys_75: 1.36673291e-03 + art_sys_76: 9.78069847e-05 + art_sys_77: 1.95415916e-06 art_sys_78: -4.76338721e-08 art_sys_79: 0.0 art_sys_80: 0.0 @@ -17393,15 +17393,15 @@ bins: art_sys_66: -2.86810562e-03 art_sys_67: 6.16518490e-04 art_sys_68: -2.01777641e-03 - art_sys_69: 1.29831166e-03 - art_sys_70: 1.63067670e-03 - art_sys_71: 4.31328982e-03 - art_sys_72: -1.70182880e-02 - art_sys_73: -2.77021220e-02 + art_sys_69: -1.29831166e-03 + art_sys_70: -1.63067670e-03 + art_sys_71: -4.31328982e-03 + art_sys_72: 1.70182880e-02 + art_sys_73: 2.77021220e-02 art_sys_74: -1.93062208e-01 - art_sys_75: 4.47023141e-03 - art_sys_76: 1.22858535e-03 - art_sys_77: -1.69099772e-05 + art_sys_75: -4.47023141e-03 + art_sys_76: -1.22858535e-03 + art_sys_77: 1.69099772e-05 art_sys_78: 7.79627481e-07 art_sys_79: 0.0 art_sys_80: 0.0 @@ -17618,15 +17618,15 @@ bins: art_sys_66: -8.20818411e-04 art_sys_67: 7.91161800e-04 art_sys_68: -1.26254751e-03 - art_sys_69: -1.18228895e-03 - art_sys_70: 7.46045385e-04 - art_sys_71: -7.45997841e-04 - art_sys_72: -1.18206259e-03 - art_sys_73: 6.59705252e-03 + art_sys_69: 1.18228895e-03 + art_sys_70: -7.46045385e-04 + art_sys_71: 7.45997841e-04 + art_sys_72: 1.18206259e-03 + art_sys_73: -6.59705252e-03 art_sys_74: -1.03250804e-02 - art_sys_75: -8.70208991e-02 - art_sys_76: -2.84577107e-03 - art_sys_77: 5.32419747e-04 + art_sys_75: 8.70208991e-02 + art_sys_76: 2.84577107e-03 + art_sys_77: -5.32419747e-04 art_sys_78: -3.33221921e-07 art_sys_79: 0.0 art_sys_80: 0.0 @@ -17843,15 +17843,15 @@ bins: art_sys_66: 8.66219433e-04 art_sys_67: -2.33297601e-04 art_sys_68: -3.51396400e-04 - art_sys_69: 2.63817757e-04 - art_sys_70: -5.24884377e-04 - art_sys_71: -2.38103127e-04 - art_sys_72: 4.73229993e-04 - art_sys_73: 6.98727479e-05 + art_sys_69: -2.63817757e-04 + art_sys_70: 5.24884377e-04 + art_sys_71: 2.38103127e-04 + art_sys_72: -4.73229993e-04 + art_sys_73: -6.98727479e-05 art_sys_74: 4.20270264e-03 - art_sys_75: -5.20116947e-03 - art_sys_76: 4.95060369e-02 - art_sys_77: -1.16467374e-03 + art_sys_75: 5.20116947e-03 + art_sys_76: -4.95060369e-02 + art_sys_77: 1.16467374e-03 art_sys_78: 1.50999986e-05 art_sys_79: 0.0 art_sys_80: 0.0 @@ -18068,15 +18068,15 @@ bins: art_sys_66: 2.56390419e-04 art_sys_67: 2.08041692e-04 art_sys_68: -2.95201005e-04 - art_sys_69: -8.26193202e-05 - art_sys_70: 2.94659728e-04 - art_sys_71: -1.99308000e-04 - art_sys_72: -9.25225280e-05 - art_sys_73: -2.12072163e-04 + art_sys_69: 8.26193202e-05 + art_sys_70: -2.94659728e-04 + art_sys_71: 1.99308000e-04 + art_sys_72: 9.25225280e-05 + art_sys_73: 2.12072163e-04 art_sys_74: 3.00913493e-04 - art_sys_75: 1.69677812e-03 - art_sys_76: 2.49111781e-03 - art_sys_77: 2.37758854e-02 + art_sys_75: -1.69677812e-03 + art_sys_76: -2.49111781e-03 + art_sys_77: -2.37758854e-02 art_sys_78: -2.38317378e-05 art_sys_79: 0.0 art_sys_80: 0.0 @@ -18293,15 +18293,15 @@ bins: art_sys_66: 6.16954980e-05 art_sys_67: 4.02807869e-05 art_sys_68: 5.24997416e-05 - art_sys_69: 9.32401160e-06 - art_sys_70: 4.19067169e-05 - art_sys_71: -3.89749968e-05 - art_sys_72: 4.94015305e-05 - art_sys_73: -9.51325399e-08 + art_sys_69: -9.32401160e-06 + art_sys_70: -4.19067169e-05 + art_sys_71: 3.89749968e-05 + art_sys_72: -4.94015305e-05 + art_sys_73: 9.51325399e-08 art_sys_74: 2.64759986e-05 - art_sys_75: 2.52590857e-05 - art_sys_76: -2.01643797e-04 - art_sys_77: 1.70762182e-04 + art_sys_75: -2.52590857e-05 + art_sys_76: 2.01643797e-04 + art_sys_77: -1.70762182e-04 art_sys_78: 3.42229180e-03 art_sys_79: 0.0 art_sys_80: 0.0 diff --git a/nnpdf_data/nnpdf_data/new_commondata/ATLAS_2JET_7TEV_R06/uncertainties_stronger.yaml b/nnpdf_data/nnpdf_data/new_commondata/ATLAS_2JET_7TEV_R06/uncertainties_stronger.yaml index a083742566..75c6ca6e02 100644 --- a/nnpdf_data/nnpdf_data/new_commondata/ATLAS_2JET_7TEV_R06/uncertainties_stronger.yaml +++ b/nnpdf_data/nnpdf_data/new_commondata/ATLAS_2JET_7TEV_R06/uncertainties_stronger.yaml @@ -828,26 +828,26 @@ definitions: treatment: MULT type: ATLASLUMI11 bins: -- art_sys_1: -8.66600397e+03 +- art_sys_1: 8.66600397e+03 art_sys_2: 1.65603952e+01 art_sys_3: 1.00466592e+01 art_sys_4: 1.26565519e-01 art_sys_5: 3.24886915e-02 art_sys_6: -5.12875512e-03 - art_sys_7: -1.53888278e-03 - art_sys_8: -7.95614472e-05 + art_sys_7: 1.53888278e-03 + art_sys_8: 7.95614472e-05 art_sys_9: 4.88924054e-05 art_sys_10: -1.68570003e-05 - art_sys_11: -3.46238064e-06 - art_sys_12: 9.73326696e-07 - art_sys_13: 3.97603562e-07 + art_sys_11: 3.46238064e-06 + art_sys_12: -9.73326696e-07 + art_sys_13: -3.97603562e-07 art_sys_14: -1.98321791e-08 - art_sys_15: 5.04287641e-08 + art_sys_15: -5.04287641e-08 art_sys_16: -3.05546432e-08 art_sys_17: -8.29975820e-09 art_sys_18: -2.32783123e-09 art_sys_19: 1.54448543e-09 - art_sys_20: -5.30147707e-10 + art_sys_20: 5.30147707e-10 art_sys_21: -1.40299436e-11 art_sys_22: 0.0 art_sys_23: 0.0 @@ -1035,26 +1035,26 @@ bins: sys_115: 3.78302128e+03 sys_116: -3.78302128e+03 luminosity_uncertainty: 3210.0 -- art_sys_1: 4.77033220e+01 +- art_sys_1: -4.77033220e+01 art_sys_2: 3.14268214e+03 art_sys_3: 3.50642944e+01 art_sys_4: 6.62067632e+00 art_sys_5: 8.28376346e-02 art_sys_6: -1.14440868e-02 - art_sys_7: -7.91206859e-03 - art_sys_8: 5.40010282e-04 + art_sys_7: 7.91206859e-03 + art_sys_8: -5.40010282e-04 art_sys_9: 4.01656084e-04 art_sys_10: 1.50718011e-05 - art_sys_11: -2.16191112e-06 - art_sys_12: -4.46031889e-06 - art_sys_13: 8.14636149e-08 + art_sys_11: 2.16191112e-06 + art_sys_12: 4.46031889e-06 + art_sys_13: -8.14636149e-08 art_sys_14: -4.17082996e-07 - art_sys_15: 1.05694529e-08 + art_sys_15: -1.05694529e-08 art_sys_16: -1.25633584e-08 art_sys_17: 2.95765951e-08 art_sys_18: 9.14156780e-09 art_sys_19: 1.96642808e-09 - art_sys_20: -1.01309289e-09 + art_sys_20: 1.01309289e-09 art_sys_21: -4.60286375e-11 art_sys_22: 0.0 art_sys_23: 0.0 @@ -1242,26 +1242,26 @@ bins: sys_115: 1.43542677e+03 sys_116: -1.43542677e+03 luminosity_uncertainty: 406.0 -- art_sys_1: 7.00122739e+01 +- art_sys_1: -7.00122739e+01 art_sys_2: -9.20257933e+01 art_sys_3: 1.21913825e+03 art_sys_4: 1.80626131e+01 art_sys_5: 2.28059505e+00 art_sys_6: -7.90198445e-02 - art_sys_7: -1.06746073e-02 - art_sys_8: 2.44464005e-03 + art_sys_7: 1.06746073e-02 + art_sys_8: -2.44464005e-03 art_sys_9: 4.47952792e-04 art_sys_10: -1.08646766e-04 - art_sys_11: 9.08624166e-06 - art_sys_12: -3.11648575e-06 - art_sys_13: 5.35926874e-07 + art_sys_11: -9.08624166e-06 + art_sys_12: 3.11648575e-06 + art_sys_13: -5.35926874e-07 art_sys_14: -2.29584162e-06 - art_sys_15: 1.07006478e-06 + art_sys_15: -1.07006478e-06 art_sys_16: -1.28227265e-07 art_sys_17: 6.24732027e-08 art_sys_18: -6.45561067e-09 art_sys_19: 1.59017767e-09 - art_sys_20: -1.05553387e-08 + art_sys_20: 1.05553387e-08 art_sys_21: 3.63513279e-11 art_sys_22: 0.0 art_sys_23: 0.0 @@ -1449,26 +1449,26 @@ bins: sys_115: 5.37401154e+02 sys_116: -5.37401154e+02 luminosity_uncertainty: 152.0 -- art_sys_1: -9.77545258e-01 +- art_sys_1: 9.77545258e-01 art_sys_2: -3.96231596e+01 art_sys_3: -4.64375276e+01 art_sys_4: 4.82951674e+02 art_sys_5: 5.44666874e+00 art_sys_6: -7.84822573e-01 - art_sys_7: -6.48303771e-02 - art_sys_8: 3.61645081e-03 + art_sys_7: 6.48303771e-02 + art_sys_8: -3.61645081e-03 art_sys_9: -7.83601275e-04 art_sys_10: -6.52654718e-04 - art_sys_11: -5.20483996e-05 - art_sys_12: 9.48094386e-06 - art_sys_13: 8.85394144e-06 + art_sys_11: 5.20483996e-05 + art_sys_12: -9.48094386e-06 + art_sys_13: -8.85394144e-06 art_sys_14: 1.78779821e-06 - art_sys_15: -7.30851279e-07 + art_sys_15: 7.30851279e-07 art_sys_16: -1.74720749e-07 art_sys_17: 2.62337554e-08 art_sys_18: 3.64352323e-08 art_sys_19: 1.29471700e-08 - art_sys_20: -9.46016641e-09 + art_sys_20: 9.46016641e-09 art_sys_21: 6.30046326e-11 art_sys_22: 0.0 art_sys_23: 0.0 @@ -1656,26 +1656,26 @@ bins: sys_115: 2.14253355e+02 sys_116: -2.14253355e+02 luminosity_uncertainty: 0.0 -- art_sys_1: 6.24445985e-01 +- art_sys_1: -6.24445985e-01 art_sys_2: 8.09690516e-01 art_sys_3: -1.26198742e+01 art_sys_4: -1.33691170e+01 art_sys_5: 2.00649923e+02 art_sys_6: -4.88886178e-01 - art_sys_7: -5.72530475e-01 - art_sys_8: 3.85693232e-02 + art_sys_7: 5.72530475e-01 + art_sys_8: -3.85693232e-02 art_sys_9: -4.09551998e-03 art_sys_10: 5.10668135e-04 - art_sys_11: 3.58839834e-04 - art_sys_12: 4.01512348e-05 - art_sys_13: 9.94951973e-06 + art_sys_11: -3.58839834e-04 + art_sys_12: -4.01512348e-05 + art_sys_13: -9.94951973e-06 art_sys_14: -2.04343429e-05 - art_sys_15: 2.50511092e-06 + art_sys_15: -2.50511092e-06 art_sys_16: 6.54028672e-07 art_sys_17: -1.17787458e-07 art_sys_18: 4.26063451e-08 art_sys_19: 6.37371162e-08 - art_sys_20: 4.03966220e-09 + art_sys_20: -4.03966220e-09 art_sys_21: -3.40611967e-10 art_sys_22: 0.0 art_sys_23: 0.0 @@ -1863,26 +1863,26 @@ bins: sys_115: 9.08632214e+01 sys_116: -9.08632214e+01 luminosity_uncertainty: 0.0 -- art_sys_1: 5.59880644e-01 +- art_sys_1: -5.59880644e-01 art_sys_2: 1.57221880e-03 art_sys_3: -7.70393233e-01 art_sys_4: -5.30516357e+00 art_sys_5: -1.58625879e+00 art_sys_6: -7.07597902e+01 - art_sys_7: -1.18820891e+00 - art_sys_8: 2.67790339e-01 + art_sys_7: 1.18820891e+00 + art_sys_8: -2.67790339e-01 art_sys_9: -2.42473600e-02 art_sys_10: -1.50349162e-04 - art_sys_11: -2.01220583e-04 - art_sys_12: -3.13977714e-05 - art_sys_13: 5.25624358e-05 + art_sys_11: 2.01220583e-04 + art_sys_12: 3.13977714e-05 + art_sys_13: -5.25624358e-05 art_sys_14: -4.73347355e-06 - art_sys_15: -4.79459747e-06 + art_sys_15: 4.79459747e-06 art_sys_16: -2.74900035e-06 art_sys_17: -9.39057694e-07 art_sys_18: -1.08451445e-07 art_sys_19: 1.47385495e-07 - art_sys_20: 1.36169505e-07 + art_sys_20: -1.36169505e-07 art_sys_21: 6.70958864e-10 art_sys_22: 0.0 art_sys_23: 0.0 @@ -2070,26 +2070,26 @@ bins: sys_115: 3.99515331e+01 sys_116: -3.99515331e+01 luminosity_uncertainty: 0.0 -- art_sys_1: 3.40189430e-01 +- art_sys_1: -3.40189430e-01 art_sys_2: -6.68262358e-01 art_sys_3: -7.01607567e-02 art_sys_4: -5.39138259e-01 art_sys_5: -3.49927676e+00 art_sys_6: 2.64986079e+00 - art_sys_7: -3.25491051e+01 - art_sys_8: 6.34601537e-01 + art_sys_7: 3.25491051e+01 + art_sys_8: -6.34601537e-01 art_sys_9: -1.68143063e-01 art_sys_10: 1.30486891e-02 - art_sys_11: -1.30308546e-03 - art_sys_12: -3.27163776e-04 - art_sys_13: 5.97594369e-05 + art_sys_11: 1.30308546e-03 + art_sys_12: 3.27163776e-04 + art_sys_13: -5.97594369e-05 art_sys_14: -2.39257219e-05 - art_sys_15: 3.39099387e-05 + art_sys_15: -3.39099387e-05 art_sys_16: 5.32913752e-06 art_sys_17: -2.71306658e-06 art_sys_18: 7.25244740e-07 art_sys_19: 5.39198882e-07 - art_sys_20: -2.22646652e-07 + art_sys_20: 2.22646652e-07 art_sys_21: -4.71488044e-10 art_sys_22: 0.0 art_sys_23: 0.0 @@ -2277,26 +2277,26 @@ bins: sys_115: 1.84201316e+01 sys_116: -1.84201316e+01 luminosity_uncertainty: 0.0 -- art_sys_1: -9.23387966e-02 +- art_sys_1: 9.23387966e-02 art_sys_2: -5.02852833e-02 art_sys_3: -1.35259611e-01 art_sys_4: 3.40255235e-02 art_sys_5: -3.51750100e-01 art_sys_6: 1.19370158e+00 - art_sys_7: 1.49352552e+00 - art_sys_8: 1.45575069e+01 + art_sys_7: -1.49352552e+00 + art_sys_8: -1.45575069e+01 art_sys_9: -5.13965110e-01 art_sys_10: 7.07131241e-02 - art_sys_11: -7.14714411e-03 - art_sys_12: -1.46476036e-03 - art_sys_13: -1.55464994e-04 + art_sys_11: 7.14714411e-03 + art_sys_12: 1.46476036e-03 + art_sys_13: 1.55464994e-04 art_sys_14: 6.28948301e-05 - art_sys_15: 5.53498030e-05 + art_sys_15: -5.53498030e-05 art_sys_16: 6.73724191e-06 art_sys_17: -4.59052397e-06 art_sys_18: 2.01812845e-06 art_sys_19: -6.57480973e-07 - art_sys_20: -2.07564586e-07 + art_sys_20: 2.07564586e-07 art_sys_21: 1.15028463e-09 art_sys_22: 0.0 art_sys_23: 0.0 @@ -2484,26 +2484,26 @@ bins: sys_115: 8.87419010e+00 sys_116: -8.87419010e+00 luminosity_uncertainty: 0.0 -- art_sys_1: -5.80091660e-02 +- art_sys_1: 5.80091660e-02 art_sys_2: 1.94125450e-01 art_sys_3: 1.07567088e-01 art_sys_4: -1.04484248e-02 art_sys_5: -1.89766689e-03 art_sys_6: 9.06462642e-02 - art_sys_7: 6.72738390e-01 - art_sys_8: -1.08843898e+00 + art_sys_7: -6.72738390e-01 + art_sys_8: 1.08843898e+00 art_sys_9: -7.07546072e+00 art_sys_10: 1.95866968e-01 - art_sys_11: -3.55592631e-02 - art_sys_12: 8.11460358e-05 - art_sys_13: 9.47767711e-04 + art_sys_11: 3.55592631e-02 + art_sys_12: -8.11460358e-05 + art_sys_13: -9.47767711e-04 art_sys_14: -2.31004101e-04 - art_sys_15: 4.77814218e-05 + art_sys_15: -4.77814218e-05 art_sys_16: -8.70840560e-06 art_sys_17: -1.01696338e-05 art_sys_18: 3.19457414e-06 art_sys_19: 3.71284068e-06 - art_sys_20: 6.54733539e-07 + art_sys_20: -6.54733539e-07 art_sys_21: -8.56908310e-09 art_sys_22: 0.0 art_sys_23: 0.0 @@ -2691,26 +2691,26 @@ bins: sys_115: 4.38406204e+00 sys_116: -4.38406204e+00 luminosity_uncertainty: 0.0 -- art_sys_1: -3.56841619e-02 +- art_sys_1: 3.56841619e-02 art_sys_2: -3.24320708e-02 art_sys_3: 2.84708301e-02 art_sys_4: 9.48380534e-02 art_sys_5: -4.90602185e-03 art_sys_6: -4.29393443e-02 - art_sys_7: 5.49746356e-02 - art_sys_8: -2.42621811e-01 + art_sys_7: -5.49746356e-02 + art_sys_8: 2.42621811e-01 art_sys_9: 4.23950443e-01 art_sys_10: 3.42538579e+00 - art_sys_11: -1.04010414e-01 - art_sys_12: -1.70034057e-02 - art_sys_13: 2.23313283e-03 + art_sys_11: 1.04010414e-01 + art_sys_12: 1.70034057e-02 + art_sys_13: -2.23313283e-03 art_sys_14: -6.97646425e-04 - art_sys_15: 1.62980195e-04 + art_sys_15: -1.62980195e-04 art_sys_16: 2.08230958e-05 art_sys_17: -9.55312842e-06 art_sys_18: 4.65891824e-06 art_sys_19: 1.33058018e-06 - art_sys_20: -4.62503045e-07 + art_sys_20: 4.62503045e-07 art_sys_21: 1.60785983e-08 art_sys_22: 0.0 art_sys_23: 0.0 @@ -2898,26 +2898,26 @@ bins: sys_115: 2.11778481e+00 sys_116: -2.11778481e+00 luminosity_uncertainty: 0.0 -- art_sys_1: 2.20322705e-02 +- art_sys_1: -2.20322705e-02 art_sys_2: -5.11195278e-03 art_sys_3: 1.76398223e-03 art_sys_4: -2.29026537e-02 art_sys_5: 4.83961862e-02 art_sys_6: 2.23674578e-03 - art_sys_7: 1.64370589e-03 - art_sys_8: -2.51940803e-02 + art_sys_7: -1.64370589e-03 + art_sys_8: 2.51940803e-02 art_sys_9: 1.27765843e-01 art_sys_10: -2.22353667e-01 - art_sys_11: -1.65201313e+00 - art_sys_12: -2.89783643e-02 - art_sys_13: 1.48881977e-02 + art_sys_11: 1.65201313e+00 + art_sys_12: 2.89783643e-02 + art_sys_13: -1.48881977e-02 art_sys_14: -1.36497539e-03 - art_sys_15: -4.99751348e-04 + art_sys_15: 4.99751348e-04 art_sys_16: 6.37809257e-05 art_sys_17: 8.63674365e-06 art_sys_18: 1.56419238e-05 art_sys_19: 9.76743155e-06 - art_sys_20: 5.66044411e-07 + art_sys_20: -5.66044411e-07 art_sys_21: -7.19562227e-08 art_sys_22: 0.0 art_sys_23: 0.0 @@ -3105,26 +3105,26 @@ bins: sys_115: 1.02530483e+00 sys_116: -1.02530483e+00 luminosity_uncertainty: 0.0 -- art_sys_1: -9.86610479e-03 +- art_sys_1: 9.86610479e-03 art_sys_2: -1.45568502e-02 art_sys_3: -5.91171276e-03 art_sys_4: 3.74820673e-03 art_sys_5: 9.11597314e-03 art_sys_6: 3.01618742e-04 - art_sys_7: 8.39904315e-03 - art_sys_8: -1.84897828e-02 + art_sys_7: -8.39904315e-03 + art_sys_8: 1.84897828e-02 art_sys_9: -1.17688968e-02 art_sys_10: -5.76594449e-02 - art_sys_11: 5.51521631e-02 - art_sys_12: -9.01414720e-01 - art_sys_13: -1.49158449e-03 + art_sys_11: -5.51521631e-02 + art_sys_12: 9.01414720e-01 + art_sys_13: 1.49158449e-03 art_sys_14: -9.46831670e-03 - art_sys_15: -9.07193600e-04 + art_sys_15: 9.07193600e-04 art_sys_16: 2.68164606e-04 art_sys_17: -8.18022041e-05 art_sys_18: 1.42749990e-06 art_sys_19: -1.09162130e-05 - art_sys_20: 2.82462222e-06 + art_sys_20: -2.82462222e-06 art_sys_21: 1.57577390e-07 art_sys_22: 0.0 art_sys_23: 0.0 @@ -3312,26 +3312,26 @@ bins: sys_115: 4.94974747e-01 sys_116: -4.94974747e-01 luminosity_uncertainty: 0.0 -- art_sys_1: 5.63127896e-03 +- art_sys_1: -5.63127896e-03 art_sys_2: 2.48544381e-04 art_sys_3: -2.38378613e-04 art_sys_4: -6.78572413e-03 art_sys_5: -4.23603003e-03 art_sys_6: 6.79657670e-03 - art_sys_7: 2.51744701e-03 - art_sys_8: 7.47364840e-03 + art_sys_7: -2.51744701e-03 + art_sys_8: -7.47364840e-03 art_sys_9: 6.70918896e-03 art_sys_10: -8.14696942e-03 - art_sys_11: 4.51204560e-02 - art_sys_12: -2.01708171e-03 - art_sys_13: 5.51864445e-01 + art_sys_11: -4.51204560e-02 + art_sys_12: 2.01708171e-03 + art_sys_13: -5.51864445e-01 art_sys_14: 7.66459020e-03 - art_sys_15: -5.59610386e-03 + art_sys_15: 5.59610386e-03 art_sys_16: -1.68390971e-04 art_sys_17: 7.66965461e-05 art_sys_18: -1.42664030e-04 art_sys_19: 3.06825436e-05 - art_sys_20: -3.72320589e-06 + art_sys_20: 3.72320589e-06 art_sys_21: -2.88138736e-07 art_sys_22: 0.0 art_sys_23: 0.0 @@ -3519,26 +3519,26 @@ bins: sys_115: 2.31931024e-01 sys_116: -2.31931024e-01 luminosity_uncertainty: 0.0 -- art_sys_1: 3.67271922e-04 +- art_sys_1: -3.67271922e-04 art_sys_2: -2.92790764e-03 art_sys_3: -7.83460395e-03 art_sys_4: 2.97479134e-03 art_sys_5: -1.19880779e-02 art_sys_6: 9.32768772e-04 - art_sys_7: 2.18413077e-03 - art_sys_8: 4.17107831e-03 + art_sys_7: -2.18413077e-03 + art_sys_8: -4.17107831e-03 art_sys_9: 3.77323538e-03 art_sys_10: -4.91183870e-03 - art_sys_11: 5.91482697e-03 - art_sys_12: 2.38533248e-02 - art_sys_13: 1.30018955e-02 + art_sys_11: -5.91482697e-03 + art_sys_12: -2.38533248e-02 + art_sys_13: -1.30018955e-02 art_sys_14: -3.52977558e-01 - art_sys_15: 1.78379506e-02 + art_sys_15: -1.78379506e-02 art_sys_16: 5.61951146e-03 art_sys_17: 3.75233618e-05 art_sys_18: 1.44107323e-05 art_sys_19: 1.42116169e-05 - art_sys_20: 2.92026217e-05 + art_sys_20: -2.92026217e-05 art_sys_21: 3.58813381e-07 art_sys_22: 0.0 art_sys_23: 0.0 @@ -3726,26 +3726,26 @@ bins: sys_115: 1.12783532e-01 sys_116: -1.12783532e-01 luminosity_uncertainty: 0.0 -- art_sys_1: -1.59903365e-03 +- art_sys_1: 1.59903365e-03 art_sys_2: -4.88162348e-04 art_sys_3: 5.07425953e-03 art_sys_4: -1.14427437e-03 art_sys_5: 6.98922566e-04 art_sys_6: 2.22478502e-03 - art_sys_7: -4.42147469e-03 - art_sys_8: 3.66366543e-03 + art_sys_7: 4.42147469e-03 + art_sys_8: -3.66366543e-03 art_sys_9: -1.42404657e-03 art_sys_10: 3.11874450e-03 - art_sys_11: 2.67881701e-03 - art_sys_12: 5.53810261e-03 - art_sys_13: -1.28019058e-02 + art_sys_11: -2.67881701e-03 + art_sys_12: -5.53810261e-03 + art_sys_13: 1.28019058e-02 art_sys_14: -2.96640044e-02 - art_sys_15: -2.21406648e-01 + art_sys_15: 2.21406648e-01 art_sys_16: -1.41042611e-02 art_sys_17: 4.29514136e-03 art_sys_18: 1.08130828e-04 art_sys_19: -1.02810457e-05 - art_sys_20: -1.30791015e-05 + art_sys_20: 1.30791015e-05 art_sys_21: -5.15500715e-07 art_sys_22: 0.0 art_sys_23: 0.0 @@ -3933,26 +3933,26 @@ bins: sys_115: 5.26794552e-02 sys_116: -5.26794552e-02 luminosity_uncertainty: 0.0 -- art_sys_1: -1.86630567e-03 +- art_sys_1: 1.86630567e-03 art_sys_2: 3.83806142e-04 art_sys_3: 2.00964972e-03 art_sys_4: 3.62178686e-04 art_sys_5: -3.01797270e-04 art_sys_6: -1.24848365e-03 - art_sys_7: 6.64336826e-04 - art_sys_8: -5.03706220e-04 + art_sys_7: -6.64336826e-04 + art_sys_8: 5.03706220e-04 art_sys_9: -7.27098351e-04 art_sys_10: 1.98502550e-04 - art_sys_11: 7.13523732e-04 - art_sys_12: 1.40810854e-03 - art_sys_13: -1.19428573e-03 + art_sys_11: -7.13523732e-04 + art_sys_12: -1.40810854e-03 + art_sys_13: 1.19428573e-03 art_sys_14: 1.08710787e-02 - art_sys_15: -2.35294277e-02 + art_sys_15: 2.35294277e-02 art_sys_16: 1.41191140e-01 art_sys_17: -8.59593556e-03 art_sys_18: -2.16721566e-03 art_sys_19: 1.67789486e-04 - art_sys_20: 3.31225966e-05 + art_sys_20: -3.31225966e-05 art_sys_21: 4.93166581e-07 art_sys_22: 0.0 art_sys_23: 0.0 @@ -4140,26 +4140,26 @@ bins: sys_115: 2.49255140e-02 sys_116: -2.49255140e-02 luminosity_uncertainty: 0.0 -- art_sys_1: -9.45384979e-04 +- art_sys_1: 9.45384979e-04 art_sys_2: -8.70290331e-04 art_sys_3: -8.24770599e-04 art_sys_4: -1.44122756e-04 art_sys_5: 6.31617950e-05 art_sys_6: -7.87719135e-04 - art_sys_7: -5.00670262e-04 - art_sys_8: 2.95521635e-04 + art_sys_7: 5.00670262e-04 + art_sys_8: -2.95521635e-04 art_sys_9: -7.50044230e-04 art_sys_10: 2.03205224e-04 - art_sys_11: 1.17004163e-04 - art_sys_12: -8.68435111e-04 - art_sys_13: 1.35573286e-04 + art_sys_11: -1.17004163e-04 + art_sys_12: 8.68435111e-04 + art_sys_13: -1.35573286e-04 art_sys_14: 2.42616255e-03 - art_sys_15: 7.63035902e-03 + art_sys_15: -7.63035902e-03 art_sys_16: 1.34883722e-02 art_sys_17: 9.68893641e-02 art_sys_18: 4.47014928e-03 art_sys_19: -1.31066873e-03 - art_sys_20: -3.76798274e-05 + art_sys_20: 3.76798274e-05 art_sys_21: 1.30240207e-06 art_sys_22: 0.0 art_sys_23: 0.0 @@ -4347,26 +4347,26 @@ bins: sys_115: 1.14197745e-02 sys_116: -1.14197745e-02 luminosity_uncertainty: 0.0 -- art_sys_1: 3.56896050e-04 +- art_sys_1: -3.56896050e-04 art_sys_2: 3.63503491e-04 art_sys_3: -3.17847991e-04 art_sys_4: 2.61995734e-04 art_sys_5: 1.06431135e-04 art_sys_6: 1.81061970e-04 - art_sys_7: -3.27832275e-04 - art_sys_8: 4.77320533e-04 + art_sys_7: 3.27832275e-04 + art_sys_8: -4.77320533e-04 art_sys_9: -3.31561633e-04 art_sys_10: 2.43172450e-04 - art_sys_11: -5.26275394e-04 - art_sys_12: -1.58830117e-04 - art_sys_13: -1.33750885e-03 + art_sys_11: 5.26275394e-04 + art_sys_12: 1.58830117e-04 + art_sys_13: 1.33750885e-03 art_sys_14: -3.76527065e-04 - art_sys_15: 1.08396822e-03 + art_sys_15: -1.08396822e-03 art_sys_16: -4.17900353e-03 art_sys_17: 7.95431387e-03 art_sys_18: -5.85661451e-02 art_sys_19: 3.70234911e-03 - art_sys_20: -1.08560343e-03 + art_sys_20: 1.08560343e-03 art_sys_21: -7.43505189e-07 art_sys_22: 0.0 art_sys_23: 0.0 @@ -4554,26 +4554,26 @@ bins: sys_115: 5.09116882e-03 sys_116: -5.09116882e-03 luminosity_uncertainty: 0.0 -- art_sys_1: -2.86758898e-04 +- art_sys_1: 2.86758898e-04 art_sys_2: 2.33519970e-04 art_sys_3: 1.04214721e-04 art_sys_4: 1.68795778e-04 art_sys_5: 2.85234691e-04 art_sys_6: -1.37763681e-04 - art_sys_7: -4.72921381e-04 - art_sys_8: -2.84638522e-04 + art_sys_7: 4.72921381e-04 + art_sys_8: 2.84638522e-04 art_sys_9: -5.97962755e-04 art_sys_10: 1.16620506e-04 - art_sys_11: -4.51197945e-04 - art_sys_12: 2.81990902e-04 - art_sys_13: 3.12337233e-04 + art_sys_11: 4.51197945e-04 + art_sys_12: -2.81990902e-04 + art_sys_13: -3.12337233e-04 art_sys_14: -1.27655834e-04 - art_sys_15: -2.02533088e-04 + art_sys_15: 2.02533088e-04 art_sys_16: -2.93015810e-04 art_sys_17: -2.47588974e-03 art_sys_18: -6.13069375e-03 art_sys_19: -3.79796250e-02 - art_sys_20: 3.51514731e-03 + art_sys_20: -3.51514731e-03 art_sys_21: 1.64994813e-05 art_sys_22: 0.0 art_sys_23: 0.0 @@ -4761,26 +4761,26 @@ bins: sys_115: 2.40769859e-03 sys_116: -2.40769859e-03 luminosity_uncertainty: 0.0 -- art_sys_1: 9.89119291e-05 +- art_sys_1: -9.89119291e-05 art_sys_2: -4.96248037e-05 art_sys_3: -4.96220320e-04 art_sys_4: -2.07463405e-04 art_sys_5: 8.05834636e-05 art_sys_6: -4.58438066e-04 - art_sys_7: 2.50109052e-04 - art_sys_8: -2.18443117e-04 + art_sys_7: -2.50109052e-04 + art_sys_8: 2.18443117e-04 art_sys_9: -2.59185077e-04 art_sys_10: -7.29630859e-05 - art_sys_11: -7.31535374e-05 - art_sys_12: -2.83446159e-05 - art_sys_13: 4.10025772e-05 + art_sys_11: 7.31535374e-05 + art_sys_12: 2.83446159e-05 + art_sys_13: -4.10025772e-05 art_sys_14: -4.02513392e-04 - art_sys_15: 2.00390623e-05 + art_sys_15: -2.00390623e-05 art_sys_16: 3.31415661e-04 art_sys_17: -8.80102295e-04 art_sys_18: 1.72450427e-03 art_sys_19: -5.67477883e-03 - art_sys_20: -2.42294647e-02 + art_sys_20: 2.42294647e-02 art_sys_21: -1.96414899e-05 art_sys_22: 0.0 art_sys_23: 0.0 @@ -4968,26 +4968,26 @@ bins: sys_115: 9.86413960e-04 sys_116: -9.86413960e-04 luminosity_uncertainty: 0.0 -- art_sys_1: -3.51192820e-05 +- art_sys_1: 3.51192820e-05 art_sys_2: 4.91032841e-05 art_sys_3: -1.55057942e-05 art_sys_4: -1.49096125e-05 art_sys_5: 2.26975854e-05 art_sys_6: 1.50539349e-05 - art_sys_7: -7.50201119e-07 - art_sys_8: -5.73578075e-06 + art_sys_7: 7.50201119e-07 + art_sys_8: 5.73578075e-06 art_sys_9: -1.61928066e-05 art_sys_10: -2.03052775e-05 - art_sys_11: -3.51266809e-05 - art_sys_12: 4.16605593e-05 - art_sys_13: 4.65157679e-05 + art_sys_11: 3.51266809e-05 + art_sys_12: -4.16605593e-05 + art_sys_13: -4.65157679e-05 art_sys_14: 3.24008057e-05 - art_sys_15: -3.73927805e-05 + art_sys_15: 3.73927805e-05 art_sys_16: -2.85151249e-05 art_sys_17: -2.91284953e-05 art_sys_18: 2.79996968e-05 art_sys_19: 1.67718168e-04 - art_sys_20: -1.72603256e-04 + art_sys_20: 1.72603256e-04 art_sys_21: 3.09782100e-03 art_sys_22: 0.0 art_sys_23: 0.0 @@ -5197,26 +5197,26 @@ bins: art_sys_20: 0.0 art_sys_21: 0.0 art_sys_22: 1.00990660e+04 - art_sys_23: 9.26298040e+01 + art_sys_23: -9.26298040e+01 art_sys_24: 1.68373855e+01 - art_sys_25: -1.32147422e+00 - art_sys_26: 2.91699581e-02 + art_sys_25: 1.32147422e+00 + art_sys_26: -2.91699581e-02 art_sys_27: 2.09102772e-02 art_sys_28: -2.49685756e-03 art_sys_29: 3.45364601e-05 - art_sys_30: 1.84619899e-05 + art_sys_30: -1.84619899e-05 art_sys_31: -2.14903160e-05 - art_sys_32: -3.25400048e-06 + art_sys_32: 3.25400048e-06 art_sys_33: 3.78958112e-07 - art_sys_34: 1.90510808e-07 - art_sys_35: -6.75521200e-08 - art_sys_36: 7.32637398e-08 - art_sys_37: 5.94682736e-09 - art_sys_38: 1.91383404e-09 - art_sys_39: 1.03964175e-09 - art_sys_40: 1.08906283e-09 - art_sys_41: -2.89575025e-10 - art_sys_42: 6.90149159e-12 + art_sys_34: -1.90510808e-07 + art_sys_35: -6.90149159e-12 + art_sys_36: 6.75521200e-08 + art_sys_37: 7.32637398e-08 + art_sys_38: 5.94682736e-09 + art_sys_39: 1.91383404e-09 + art_sys_40: 1.03964175e-09 + art_sys_41: -1.08906283e-09 + art_sys_42: -2.89575025e-10 art_sys_43: 0.0 art_sys_44: 0.0 art_sys_45: 0.0 @@ -5404,26 +5404,26 @@ bins: art_sys_20: 0.0 art_sys_21: 0.0 art_sys_22: -2.58304026e+02 - art_sys_23: 3.65139021e+03 + art_sys_23: -3.65139021e+03 art_sys_24: 2.31061640e+01 - art_sys_25: -9.70689288e+00 - art_sys_26: -6.80608476e-01 + art_sys_25: 9.70689288e+00 + art_sys_26: 6.80608476e-01 art_sys_27: -7.02090387e-03 art_sys_28: 1.04366041e-02 art_sys_29: -7.44437571e-04 - art_sys_30: 9.39701438e-05 + art_sys_30: -9.39701438e-05 art_sys_31: 1.42058685e-05 - art_sys_32: -1.02961282e-05 + art_sys_32: 1.02961282e-05 art_sys_33: 3.49804795e-07 - art_sys_34: -2.15460810e-07 - art_sys_35: -9.04430956e-08 - art_sys_36: -1.30477283e-07 - art_sys_37: 4.14502348e-09 - art_sys_38: 4.93289716e-09 - art_sys_39: 4.01447858e-09 - art_sys_40: 1.33468720e-09 - art_sys_41: 6.90948811e-10 - art_sys_42: -2.58828392e-12 + art_sys_34: 2.15460810e-07 + art_sys_35: 2.58828392e-12 + art_sys_36: 9.04430956e-08 + art_sys_37: -1.30477283e-07 + art_sys_38: 4.14502348e-09 + art_sys_39: 4.93289716e-09 + art_sys_40: 4.01447858e-09 + art_sys_41: -1.33468720e-09 + art_sys_42: 6.90948811e-10 art_sys_43: 0.0 art_sys_44: 0.0 art_sys_45: 0.0 @@ -5611,26 +5611,26 @@ bins: art_sys_20: 0.0 art_sys_21: 0.0 art_sys_22: -1.13745686e+02 - art_sys_23: -6.10675898e+01 + art_sys_23: 6.10675898e+01 art_sys_24: 1.44672160e+03 - art_sys_25: -1.74066184e+01 - art_sys_26: -5.11740677e+00 + art_sys_25: 1.74066184e+01 + art_sys_26: 5.11740677e+00 art_sys_27: 3.25984936e-01 art_sys_28: -5.23491103e-02 art_sys_29: 9.07658039e-04 - art_sys_30: 1.13554253e-04 + art_sys_30: -1.13554253e-04 art_sys_31: -2.15376483e-04 - art_sys_32: 6.17320859e-05 + art_sys_32: -6.17320859e-05 art_sys_33: -1.46427221e-05 - art_sys_34: -2.89415554e-07 - art_sys_35: -1.04963353e-07 - art_sys_36: 8.19215976e-07 - art_sys_37: -6.30845370e-08 - art_sys_38: -2.84417240e-09 - art_sys_39: -9.13305396e-10 - art_sys_40: -5.54928127e-09 - art_sys_41: -1.34844779e-09 - art_sys_42: -1.28800958e-11 + art_sys_34: 2.89415554e-07 + art_sys_35: 1.28800958e-11 + art_sys_36: 1.04963353e-07 + art_sys_37: 8.19215976e-07 + art_sys_38: -6.30845370e-08 + art_sys_39: -2.84417240e-09 + art_sys_40: -9.13305396e-10 + art_sys_41: 5.54928127e-09 + art_sys_42: -1.34844779e-09 art_sys_43: 0.0 art_sys_44: 0.0 art_sys_45: 0.0 @@ -5818,26 +5818,26 @@ bins: art_sys_20: 0.0 art_sys_21: 0.0 art_sys_22: -1.39624776e+01 - art_sys_23: -5.52489968e+01 + art_sys_23: 5.52489968e+01 art_sys_24: -4.17074828e+01 - art_sys_25: -6.26769059e+02 - art_sys_26: -1.29573429e+01 + art_sys_25: 6.26769059e+02 + art_sys_26: 1.29573429e+01 art_sys_27: 2.39437533e+00 art_sys_28: -6.13805659e-02 art_sys_29: 1.12177924e-02 - art_sys_30: 2.59363742e-03 + art_sys_30: -2.59363742e-03 art_sys_31: -9.39279509e-04 - art_sys_32: 1.44880004e-04 + art_sys_32: -1.44880004e-04 art_sys_33: 2.34958238e-05 - art_sys_34: -9.12682930e-06 - art_sys_35: 2.87315519e-06 - art_sys_36: -1.12036980e-07 - art_sys_37: -2.13772792e-07 - art_sys_38: -7.60620444e-08 - art_sys_39: 1.02583970e-09 - art_sys_40: -1.58156715e-09 - art_sys_41: -1.11134246e-08 - art_sys_42: -6.53689079e-11 + art_sys_34: 9.12682930e-06 + art_sys_35: 6.53689079e-11 + art_sys_36: -2.87315519e-06 + art_sys_37: -1.12036980e-07 + art_sys_38: -2.13772792e-07 + art_sys_39: -7.60620444e-08 + art_sys_40: 1.02583970e-09 + art_sys_41: 1.58156715e-09 + art_sys_42: -1.11134246e-08 art_sys_43: 0.0 art_sys_44: 0.0 art_sys_45: 0.0 @@ -6025,26 +6025,26 @@ bins: art_sys_20: 0.0 art_sys_21: 0.0 art_sys_22: 4.22899608e+00 - art_sys_23: -4.97759534e+00 + art_sys_23: 4.97759534e+00 art_sys_24: -2.38505353e+01 - art_sys_25: 2.86626154e+01 - art_sys_26: -2.89238554e+02 + art_sys_25: -2.86626154e+01 + art_sys_26: 2.89238554e+02 art_sys_27: 2.63445182e+00 art_sys_28: -1.03045259e+00 art_sys_29: 4.83645775e-02 - art_sys_30: 1.16659734e-02 + art_sys_30: -1.16659734e-02 art_sys_31: -6.36159664e-04 - art_sys_32: 2.37469071e-04 + art_sys_32: -2.37469071e-04 art_sys_33: -4.59008783e-05 - art_sys_34: 7.38957035e-06 - art_sys_35: -1.58041072e-06 - art_sys_36: -9.96614505e-07 - art_sys_37: -1.62016668e-06 - art_sys_38: 9.45842804e-08 - art_sys_39: -3.08106821e-08 - art_sys_40: -2.71680892e-09 - art_sys_41: -4.95602545e-09 - art_sys_42: 2.12822070e-10 + art_sys_34: -7.38957035e-06 + art_sys_35: -2.12822070e-10 + art_sys_36: 1.58041072e-06 + art_sys_37: -9.96614505e-07 + art_sys_38: -1.62016668e-06 + art_sys_39: 9.45842804e-08 + art_sys_40: -3.08106821e-08 + art_sys_41: 2.71680892e-09 + art_sys_42: -4.95602545e-09 art_sys_43: 0.0 art_sys_44: 0.0 art_sys_45: 0.0 @@ -6232,26 +6232,26 @@ bins: art_sys_20: 0.0 art_sys_21: 0.0 art_sys_22: -1.23652955e+00 - art_sys_23: 1.53205129e+00 + art_sys_23: -1.53205129e+00 art_sys_24: -2.48576786e+00 - art_sys_25: 1.14117652e+01 - art_sys_26: 6.48354595e+00 + art_sys_25: -1.14117652e+01 + art_sys_26: -6.48354595e+00 art_sys_27: 1.25361233e+02 art_sys_28: -1.44792701e+00 art_sys_29: 3.80054092e-01 - art_sys_30: 1.71942618e-02 + art_sys_30: -1.71942618e-02 art_sys_31: -2.79005029e-03 - art_sys_32: 1.01608603e-03 + art_sys_32: -1.01608603e-03 art_sys_33: -1.01982594e-04 - art_sys_34: -3.32065169e-05 - art_sys_35: -4.78405689e-06 - art_sys_36: -9.41259663e-07 - art_sys_37: -2.94607804e-06 - art_sys_38: -1.56252706e-07 - art_sys_39: 1.94882985e-07 - art_sys_40: 1.36754544e-07 - art_sys_41: 3.91528408e-09 - art_sys_42: 4.67796909e-10 + art_sys_34: 3.32065169e-05 + art_sys_35: -4.67796909e-10 + art_sys_36: 4.78405689e-06 + art_sys_37: -9.41259663e-07 + art_sys_38: -2.94607804e-06 + art_sys_39: -1.56252706e-07 + art_sys_40: 1.94882985e-07 + art_sys_41: -1.36754544e-07 + art_sys_42: 3.91528408e-09 art_sys_43: 0.0 art_sys_44: 0.0 art_sys_45: 0.0 @@ -6439,26 +6439,26 @@ bins: art_sys_20: 0.0 art_sys_21: 0.0 art_sys_22: -4.22355459e-01 - art_sys_23: 8.46876719e-01 + art_sys_23: -8.46876719e-01 art_sys_24: -7.97461045e-01 - art_sys_25: -1.17547124e-01 - art_sys_26: 5.18134817e+00 + art_sys_25: 1.17547124e-01 + art_sys_26: -5.18134817e+00 art_sys_27: -3.32918160e+00 art_sys_28: -5.60384720e+01 art_sys_29: 4.01523101e-01 - art_sys_30: 2.30683314e-01 + art_sys_30: -2.30683314e-01 art_sys_31: -7.28439818e-03 - art_sys_32: 1.11017733e-03 + art_sys_32: -1.11017733e-03 art_sys_33: -2.00617662e-04 - art_sys_34: 1.25665158e-04 - art_sys_35: -2.77336736e-05 - art_sys_36: -6.23072218e-06 - art_sys_37: 4.56679298e-06 - art_sys_38: -9.64297853e-07 - art_sys_39: -2.23790103e-07 - art_sys_40: -3.10637309e-07 - art_sys_41: 7.24158239e-08 - art_sys_42: -2.20717904e-09 + art_sys_34: -1.25665158e-04 + art_sys_35: 2.20717904e-09 + art_sys_36: 2.77336736e-05 + art_sys_37: -6.23072218e-06 + art_sys_38: 4.56679298e-06 + art_sys_39: -9.64297853e-07 + art_sys_40: -2.23790103e-07 + art_sys_41: 3.10637309e-07 + art_sys_42: 7.24158239e-08 art_sys_43: 0.0 art_sys_44: 0.0 art_sys_45: 0.0 @@ -6646,26 +6646,26 @@ bins: art_sys_20: 0.0 art_sys_21: 0.0 art_sys_22: 5.82965172e-03 - art_sys_23: 1.16344122e-01 + art_sys_23: -1.16344122e-01 art_sys_24: 6.93014776e-02 - art_sys_25: 6.52324941e-02 - art_sys_26: 4.23154642e-01 + art_sys_25: -6.52324941e-02 + art_sys_26: -4.23154642e-01 art_sys_27: -2.01615206e+00 art_sys_28: 1.04757992e+00 art_sys_29: 2.30745202e+01 - art_sys_30: 4.39229675e-01 + art_sys_30: -4.39229675e-01 art_sys_31: -9.77952492e-02 - art_sys_32: 6.78121465e-03 + art_sys_32: -6.78121465e-03 art_sys_33: -1.60631357e-03 - art_sys_34: 1.04256662e-04 - art_sys_35: -1.51266971e-04 - art_sys_36: -1.42531411e-05 - art_sys_37: 8.28494075e-06 - art_sys_38: 3.06732482e-06 - art_sys_39: -1.49259153e-06 - art_sys_40: 5.99125235e-08 - art_sys_41: -7.91953270e-08 - art_sys_42: 3.40346514e-10 + art_sys_34: -1.04256662e-04 + art_sys_35: -3.40346514e-10 + art_sys_36: 1.51266971e-04 + art_sys_37: -1.42531411e-05 + art_sys_38: 8.28494075e-06 + art_sys_39: 3.06732482e-06 + art_sys_40: -1.49259153e-06 + art_sys_41: -5.99125235e-08 + art_sys_42: -7.91953270e-08 art_sys_43: 0.0 art_sys_44: 0.0 art_sys_45: 0.0 @@ -6853,26 +6853,26 @@ bins: art_sys_20: 0.0 art_sys_21: 0.0 art_sys_22: -5.37150165e-03 - art_sys_23: -3.56230445e-02 + art_sys_23: 3.56230445e-02 art_sys_24: 3.46221755e-02 - art_sys_25: 1.03983710e-01 - art_sys_26: 1.73891297e-01 + art_sys_25: -1.03983710e-01 + art_sys_26: -1.73891297e-01 art_sys_27: -5.06369185e-02 art_sys_28: 1.12923616e+00 art_sys_29: -9.42629549e-01 - art_sys_30: 1.10789527e+01 + art_sys_30: -1.10789527e+01 art_sys_31: -2.09584287e-01 - art_sys_32: 5.51389492e-02 + art_sys_32: -5.51389492e-02 art_sys_33: -1.97184331e-03 - art_sys_34: 1.86393536e-05 - art_sys_35: 2.42290281e-04 - art_sys_36: -6.95015185e-05 - art_sys_37: -1.85458063e-05 - art_sys_38: 7.58583947e-06 - art_sys_39: -1.66890514e-07 - art_sys_40: -1.42506911e-07 - art_sys_41: 3.54771850e-07 - art_sys_42: -9.65349257e-09 + art_sys_34: -1.86393536e-05 + art_sys_35: 9.65349257e-09 + art_sys_36: -2.42290281e-04 + art_sys_37: -6.95015185e-05 + art_sys_38: -1.85458063e-05 + art_sys_39: 7.58583947e-06 + art_sys_40: -1.66890514e-07 + art_sys_41: 1.42506911e-07 + art_sys_42: 3.54771850e-07 art_sys_43: 0.0 art_sys_44: 0.0 art_sys_45: 0.0 @@ -7060,26 +7060,26 @@ bins: art_sys_20: 0.0 art_sys_21: 0.0 art_sys_22: -3.48540058e-02 - art_sys_23: 2.20671127e-02 + art_sys_23: -2.20671127e-02 art_sys_24: -5.41995903e-02 - art_sys_25: 1.04787953e-01 - art_sys_26: 1.41029359e-02 + art_sys_25: -1.04787953e-01 + art_sys_26: -1.41029359e-02 art_sys_27: -2.72337984e-02 art_sys_28: 1.48874760e-02 art_sys_29: -4.17856240e-01 - art_sys_30: -4.91009114e-01 + art_sys_30: 4.91009114e-01 art_sys_31: -4.95403531e+00 - art_sys_32: 1.55479144e-01 + art_sys_32: -1.55479144e-01 art_sys_33: -2.96485780e-02 - art_sys_34: 2.34324854e-03 - art_sys_35: -1.55135891e-04 - art_sys_36: -8.68262610e-05 - art_sys_37: -4.95041606e-05 - art_sys_38: 4.59382385e-06 - art_sys_39: -5.83798876e-06 - art_sys_40: 7.84201589e-07 - art_sys_41: -5.73288382e-07 - art_sys_42: -1.76751750e-08 + art_sys_34: -2.34324854e-03 + art_sys_35: 1.76751750e-08 + art_sys_36: 1.55135891e-04 + art_sys_37: -8.68262610e-05 + art_sys_38: -4.95041606e-05 + art_sys_39: 4.59382385e-06 + art_sys_40: -5.83798876e-06 + art_sys_41: -7.84201589e-07 + art_sys_42: -5.73288382e-07 art_sys_43: 0.0 art_sys_44: 0.0 art_sys_45: 0.0 @@ -7267,26 +7267,26 @@ bins: art_sys_20: 0.0 art_sys_21: 0.0 art_sys_22: 1.81016211e-02 - art_sys_23: 1.81041225e-02 + art_sys_23: -1.81041225e-02 art_sys_24: -2.73720267e-02 - art_sys_25: 1.90837606e-02 - art_sys_26: 1.76601432e-02 + art_sys_25: -1.90837606e-02 + art_sys_26: -1.76601432e-02 art_sys_27: -4.10100786e-02 art_sys_28: -2.56387568e-03 art_sys_29: -1.68075428e-02 - art_sys_30: -2.11470708e-01 + art_sys_30: 2.11470708e-01 art_sys_31: 3.13302816e-01 - art_sys_32: 2.53953279e+00 + art_sys_32: -2.53953279e+00 art_sys_33: -6.08534883e-02 - art_sys_34: 1.17720970e-02 - art_sys_35: -1.13464211e-03 - art_sys_36: -2.50392673e-04 - art_sys_37: -5.90660513e-05 - art_sys_38: 3.31712314e-06 - art_sys_39: 4.13184789e-06 - art_sys_40: -1.27483416e-05 - art_sys_41: 5.16019090e-07 - art_sys_42: 3.00991255e-08 + art_sys_34: -1.17720970e-02 + art_sys_35: -3.00991255e-08 + art_sys_36: 1.13464211e-03 + art_sys_37: -2.50392673e-04 + art_sys_38: -5.90660513e-05 + art_sys_39: 3.31712314e-06 + art_sys_40: 4.13184789e-06 + art_sys_41: 1.27483416e-05 + art_sys_42: 5.16019090e-07 art_sys_43: 0.0 art_sys_44: 0.0 art_sys_45: 0.0 @@ -7474,26 +7474,26 @@ bins: art_sys_20: 0.0 art_sys_21: 0.0 art_sys_22: 3.77153350e-03 - art_sys_23: -8.68512677e-04 + art_sys_23: 8.68512677e-04 art_sys_24: -1.37465119e-02 - art_sys_25: -1.72832139e-02 - art_sys_26: 7.00044639e-03 + art_sys_25: 1.72832139e-02 + art_sys_26: -7.00044639e-03 art_sys_27: -4.10504956e-03 art_sys_28: 6.11939284e-03 art_sys_29: -1.74923980e-02 - art_sys_30: 4.15894889e-03 + art_sys_30: -4.15894889e-03 art_sys_31: 1.01028631e-01 - art_sys_32: -1.26479314e-01 + art_sys_32: 1.26479314e-01 art_sys_33: -1.27371770e+00 - art_sys_34: 1.98615894e-02 - art_sys_35: -1.07370232e-02 - art_sys_36: 5.97384564e-04 - art_sys_37: -2.60878420e-04 - art_sys_38: -1.05940737e-05 - art_sys_39: -1.17119672e-05 - art_sys_40: -3.66623807e-06 - art_sys_41: -1.83659760e-06 - art_sys_42: 9.80690203e-08 + art_sys_34: -1.98615894e-02 + art_sys_35: -9.80690203e-08 + art_sys_36: 1.07370232e-02 + art_sys_37: 5.97384564e-04 + art_sys_38: -2.60878420e-04 + art_sys_39: -1.05940737e-05 + art_sys_40: -1.17119672e-05 + art_sys_41: 3.66623807e-06 + art_sys_42: -1.83659760e-06 art_sys_43: 0.0 art_sys_44: 0.0 art_sys_45: 0.0 @@ -7681,26 +7681,26 @@ bins: art_sys_20: 0.0 art_sys_21: 0.0 art_sys_22: -3.69707516e-03 - art_sys_23: 4.18314695e-05 + art_sys_23: -4.18314695e-05 art_sys_24: 1.27756784e-03 - art_sys_25: -8.64304389e-03 - art_sys_26: 1.73308281e-03 + art_sys_25: 8.64304389e-03 + art_sys_26: -1.73308281e-03 art_sys_27: 8.30590092e-03 art_sys_28: 1.02347699e-02 art_sys_29: -1.25070612e-03 - art_sys_30: 5.02844014e-03 + art_sys_30: -5.02844014e-03 art_sys_31: 9.02975890e-03 - art_sys_32: -4.23111013e-02 + art_sys_32: 4.23111013e-02 art_sys_33: 3.96382176e-02 - art_sys_34: 6.52828491e-01 - art_sys_35: 4.46526655e-03 - art_sys_36: 7.64390192e-03 - art_sys_37: -1.11375996e-04 - art_sys_38: 1.64301837e-04 - art_sys_39: 6.38669270e-05 - art_sys_40: -8.99617612e-06 - art_sys_41: 6.22023231e-07 - art_sys_42: -1.46032664e-07 + art_sys_34: -6.52828491e-01 + art_sys_35: 1.46032664e-07 + art_sys_36: -4.46526655e-03 + art_sys_37: 7.64390192e-03 + art_sys_38: -1.11375996e-04 + art_sys_39: 1.64301837e-04 + art_sys_40: 6.38669270e-05 + art_sys_41: 8.99617612e-06 + art_sys_42: 6.22023231e-07 art_sys_43: 0.0 art_sys_44: 0.0 art_sys_45: 0.0 @@ -7888,26 +7888,26 @@ bins: art_sys_20: 0.0 art_sys_21: 0.0 art_sys_22: -1.85877222e-03 - art_sys_23: -1.46128210e-03 + art_sys_23: 1.46128210e-03 art_sys_24: 7.17719645e-05 - art_sys_25: -4.55268371e-03 - art_sys_26: 4.72667099e-04 + art_sys_25: 4.55268371e-03 + art_sys_26: -4.72667099e-04 art_sys_27: -2.96729467e-04 art_sys_28: 4.24007919e-03 art_sys_29: -8.89037120e-03 - art_sys_30: 7.38496352e-03 + art_sys_30: -7.38496352e-03 art_sys_31: -1.62832626e-03 - art_sys_32: -4.56089216e-03 + art_sys_32: 4.56089216e-03 art_sys_33: 3.58867605e-02 - art_sys_34: 7.35385680e-03 - art_sys_35: -3.87824729e-01 - art_sys_36: -4.79401607e-03 - art_sys_37: -5.04022928e-03 - art_sys_38: -3.67723413e-05 - art_sys_39: 1.04345188e-04 - art_sys_40: 1.71991386e-05 - art_sys_41: -4.37841240e-06 - art_sys_42: -1.32867506e-07 + art_sys_34: -7.35385680e-03 + art_sys_35: 1.32867506e-07 + art_sys_36: 3.87824729e-01 + art_sys_37: -4.79401607e-03 + art_sys_38: -5.04022928e-03 + art_sys_39: -3.67723413e-05 + art_sys_40: 1.04345188e-04 + art_sys_41: -1.71991386e-05 + art_sys_42: -4.37841240e-06 art_sys_43: 0.0 art_sys_44: 0.0 art_sys_45: 0.0 @@ -8095,26 +8095,26 @@ bins: art_sys_20: 0.0 art_sys_21: 0.0 art_sys_22: -2.89265502e-03 - art_sys_23: 2.18152173e-03 + art_sys_23: -2.18152173e-03 art_sys_24: -5.26626015e-03 - art_sys_25: 1.97173830e-04 - art_sys_26: -1.23441144e-03 + art_sys_25: -1.97173830e-04 + art_sys_26: 1.23441144e-03 art_sys_27: 1.61777400e-04 art_sys_28: -1.26156351e-03 art_sys_29: 7.20949083e-04 - art_sys_30: 2.97451271e-03 + art_sys_30: -2.97451271e-03 art_sys_31: -2.26006331e-03 - art_sys_32: 4.47487527e-03 + art_sys_32: -4.47487527e-03 art_sys_33: 2.55428009e-03 - art_sys_34: -2.13235462e-02 - art_sys_35: -9.03072076e-03 - art_sys_36: 2.31217805e-01 - art_sys_37: 1.03912464e-02 - art_sys_38: 3.00561414e-03 - art_sys_39: -5.26119197e-05 - art_sys_40: 1.33008555e-05 - art_sys_41: 7.53563100e-06 - art_sys_42: 8.93373400e-08 + art_sys_34: 2.13235462e-02 + art_sys_35: -8.93373400e-08 + art_sys_36: 9.03072076e-03 + art_sys_37: 2.31217805e-01 + art_sys_38: 1.03912464e-02 + art_sys_39: 3.00561414e-03 + art_sys_40: -5.26119197e-05 + art_sys_41: -1.33008555e-05 + art_sys_42: 7.53563100e-06 art_sys_43: 0.0 art_sys_44: 0.0 art_sys_45: 0.0 @@ -8302,26 +8302,26 @@ bins: art_sys_20: 0.0 art_sys_21: 0.0 art_sys_22: 2.93805269e-04 - art_sys_23: 4.70256924e-04 + art_sys_23: -4.70256924e-04 art_sys_24: -5.95141835e-04 - art_sys_25: 5.55918199e-04 - art_sys_26: 3.01154717e-03 + art_sys_25: -5.55918199e-04 + art_sys_26: -3.01154717e-03 art_sys_27: -2.68235196e-03 art_sys_28: -1.94939435e-03 art_sys_29: 1.98932700e-03 - art_sys_30: -1.06813239e-03 + art_sys_30: 1.06813239e-03 art_sys_31: 1.20136426e-03 - art_sys_32: -3.34349253e-04 + art_sys_32: 3.34349253e-04 art_sys_33: 1.19741859e-03 - art_sys_34: -2.23616367e-03 - art_sys_35: 1.24109089e-02 - art_sys_36: 1.67271422e-02 - art_sys_37: -1.49266938e-01 - art_sys_38: -6.94854252e-03 - art_sys_39: 1.77282868e-03 - art_sys_40: -7.09836104e-05 - art_sys_41: -8.02632490e-06 - art_sys_42: -6.98743401e-08 + art_sys_34: 2.23616367e-03 + art_sys_35: 6.98743401e-08 + art_sys_36: -1.24109089e-02 + art_sys_37: 1.67271422e-02 + art_sys_38: -1.49266938e-01 + art_sys_39: -6.94854252e-03 + art_sys_40: 1.77282868e-03 + art_sys_41: 7.09836104e-05 + art_sys_42: -8.02632490e-06 art_sys_43: 0.0 art_sys_44: 0.0 art_sys_45: 0.0 @@ -8509,26 +8509,26 @@ bins: art_sys_20: 0.0 art_sys_21: 0.0 art_sys_22: -9.19254491e-05 - art_sys_23: -2.46085850e-04 + art_sys_23: 2.46085850e-04 art_sys_24: 1.47153800e-04 - art_sys_25: -4.97699113e-04 - art_sys_26: 6.05059961e-04 + art_sys_25: 4.97699113e-04 + art_sys_26: -6.05059961e-04 art_sys_27: 4.76071346e-05 art_sys_28: -8.35818202e-04 art_sys_29: -5.85732352e-04 - art_sys_30: -1.07114356e-03 + art_sys_30: 1.07114356e-03 art_sys_31: 4.72634953e-04 - art_sys_32: -1.70478205e-04 + art_sys_32: 1.70478205e-04 art_sys_33: -1.58783756e-04 - art_sys_34: -5.56762044e-04 - art_sys_35: 1.03729399e-03 - art_sys_36: -6.22142282e-03 - art_sys_37: -1.19546130e-02 - art_sys_38: 9.20410276e-02 - art_sys_39: -4.55292657e-03 - art_sys_40: 1.24064517e-03 - art_sys_41: 5.13397924e-05 - art_sys_42: 3.23207248e-06 + art_sys_34: 5.56762044e-04 + art_sys_35: -3.23207248e-06 + art_sys_36: -1.03729399e-03 + art_sys_37: -6.22142282e-03 + art_sys_38: -1.19546130e-02 + art_sys_39: 9.20410276e-02 + art_sys_40: -4.55292657e-03 + art_sys_41: -1.24064517e-03 + art_sys_42: 5.13397924e-05 art_sys_43: 0.0 art_sys_44: 0.0 art_sys_45: 0.0 @@ -8716,26 +8716,26 @@ bins: art_sys_20: 0.0 art_sys_21: 0.0 art_sys_22: -1.60759722e-04 - art_sys_23: -2.88169245e-04 + art_sys_23: 2.88169245e-04 art_sys_24: 1.12439305e-05 - art_sys_25: -3.04501558e-05 - art_sys_26: -2.02223515e-04 + art_sys_25: 3.04501558e-05 + art_sys_26: 2.02223515e-04 art_sys_27: -3.83822047e-04 art_sys_28: -1.77777534e-04 art_sys_29: 4.94212210e-04 - art_sys_30: -5.72344974e-05 + art_sys_30: 5.72344974e-05 art_sys_31: -5.74295647e-04 - art_sys_32: -2.40080778e-04 + art_sys_32: 2.40080778e-04 art_sys_33: -4.24680898e-04 - art_sys_34: -8.03000491e-04 - art_sys_35: 3.98953252e-04 - art_sys_36: -8.70524132e-04 - art_sys_37: 3.92899790e-03 - art_sys_38: 8.40580936e-03 - art_sys_39: 5.29940271e-02 - art_sys_40: -3.54877870e-03 - art_sys_41: -4.87573291e-04 - art_sys_42: 2.24826071e-06 + art_sys_34: 8.03000491e-04 + art_sys_35: -2.24826071e-06 + art_sys_36: -3.98953252e-04 + art_sys_37: -8.70524132e-04 + art_sys_38: 3.92899790e-03 + art_sys_39: 8.40580936e-03 + art_sys_40: 5.29940271e-02 + art_sys_41: 3.54877870e-03 + art_sys_42: -4.87573291e-04 art_sys_43: 0.0 art_sys_44: 0.0 art_sys_45: 0.0 @@ -8923,26 +8923,26 @@ bins: art_sys_20: 0.0 art_sys_21: 0.0 art_sys_22: -3.15536915e-04 - art_sys_23: -1.86112779e-04 + art_sys_23: 1.86112779e-04 art_sys_24: 2.23346462e-04 - art_sys_25: -9.03836592e-05 - art_sys_26: -4.22132630e-05 + art_sys_25: 9.03836592e-05 + art_sys_26: 4.22132630e-05 art_sys_27: -5.84248602e-04 art_sys_28: -4.68401462e-04 art_sys_29: 4.97849826e-05 - art_sys_30: -1.26362761e-05 + art_sys_30: 1.26362761e-05 art_sys_31: 1.53132511e-04 - art_sys_32: 8.81725415e-04 + art_sys_32: -8.81725415e-04 art_sys_33: -2.12504798e-04 - art_sys_34: 1.11093697e-04 - art_sys_35: 2.18080279e-04 - art_sys_36: 7.49741760e-05 - art_sys_37: 5.30286564e-04 - art_sys_38: -2.45885211e-03 - art_sys_39: 5.73510219e-03 - art_sys_40: 3.42996232e-02 - art_sys_41: 1.62729382e-03 - art_sys_42: 1.47087510e-05 + art_sys_34: -1.11093697e-04 + art_sys_35: -1.47087510e-05 + art_sys_36: -2.18080279e-04 + art_sys_37: 7.49741760e-05 + art_sys_38: 5.30286564e-04 + art_sys_39: -2.45885211e-03 + art_sys_40: 5.73510219e-03 + art_sys_41: -3.42996232e-02 + art_sys_42: 1.62729382e-03 art_sys_43: 0.0 art_sys_44: 0.0 art_sys_45: 0.0 @@ -9130,26 +9130,26 @@ bins: art_sys_20: 0.0 art_sys_21: 0.0 art_sys_22: -1.79647444e-04 - art_sys_23: 1.69681409e-04 + art_sys_23: -1.69681409e-04 art_sys_24: -5.71602039e-05 - art_sys_25: 3.68633405e-04 - art_sys_26: 1.10705351e-04 + art_sys_25: -3.68633405e-04 + art_sys_26: -1.10705351e-04 art_sys_27: -2.06184352e-05 art_sys_28: -2.45025318e-04 art_sys_29: -1.10969370e-04 - art_sys_30: 2.20169510e-04 + art_sys_30: -2.20169510e-04 art_sys_31: 1.79880851e-04 - art_sys_32: 1.66574526e-04 + art_sys_32: -1.66574526e-04 art_sys_33: 1.12096302e-04 - art_sys_34: 4.04804083e-05 - art_sys_35: 9.65975426e-05 - art_sys_36: 1.01634815e-04 - art_sys_37: -2.01066406e-05 - art_sys_38: -1.79733766e-04 - art_sys_39: -9.15421466e-04 - art_sys_40: 3.14922015e-03 - art_sys_41: -1.82970994e-02 - art_sys_42: -1.26793578e-05 + art_sys_34: -4.04804083e-05 + art_sys_35: 1.26793578e-05 + art_sys_36: -9.65975426e-05 + art_sys_37: 1.01634815e-04 + art_sys_38: -2.01066406e-05 + art_sys_39: -1.79733766e-04 + art_sys_40: -9.15421466e-04 + art_sys_41: -3.14922015e-03 + art_sys_42: -1.82970994e-02 art_sys_43: 0.0 art_sys_44: 0.0 art_sys_45: 0.0 @@ -9337,26 +9337,26 @@ bins: art_sys_20: 0.0 art_sys_21: 0.0 art_sys_22: -2.28203542e-05 - art_sys_23: 3.79588934e-06 + art_sys_23: -3.79588934e-06 art_sys_24: 5.61178365e-06 - art_sys_25: -1.34669367e-05 - art_sys_26: 2.21024527e-05 + art_sys_25: 1.34669367e-05 + art_sys_26: -2.21024527e-05 art_sys_27: -1.71852232e-05 art_sys_28: -3.23528356e-05 art_sys_29: -7.51576067e-06 - art_sys_30: 3.51417643e-05 + art_sys_30: -3.51417643e-05 art_sys_31: -3.36439577e-05 - art_sys_32: -2.42753463e-05 + art_sys_32: 2.42753463e-05 art_sys_33: 4.45442875e-05 - art_sys_34: 3.06951183e-05 - art_sys_35: -1.69737744e-05 - art_sys_36: 9.96141761e-07 - art_sys_37: 3.03943537e-06 - art_sys_38: -8.84551020e-05 - art_sys_39: -6.25369407e-05 - art_sys_40: -1.43853536e-04 - art_sys_41: -7.96399460e-05 - art_sys_42: 3.20193887e-03 + art_sys_34: -3.06951183e-05 + art_sys_35: -3.20193887e-03 + art_sys_36: 1.69737744e-05 + art_sys_37: 9.96141761e-07 + art_sys_38: 3.03943537e-06 + art_sys_39: -8.84551020e-05 + art_sys_40: -6.25369407e-05 + art_sys_41: 1.43853536e-04 + art_sys_42: -7.96399460e-05 art_sys_43: 0.0 art_sys_44: 0.0 art_sys_45: 0.0 @@ -9572,16 +9572,16 @@ bins: art_sys_48: -2.23487286e-02 art_sys_49: -3.60848773e-04 art_sys_50: 6.21213775e-04 - art_sys_51: 9.52007037e-05 - art_sys_52: -3.75026894e-05 - art_sys_53: -6.17897095e-06 + art_sys_51: -9.52007037e-05 + art_sys_52: 3.75026894e-05 + art_sys_53: 6.17897095e-06 art_sys_54: 1.09362599e-06 art_sys_55: 7.33430682e-07 - art_sys_56: 7.34567167e-09 + art_sys_56: -7.34567167e-09 art_sys_57: -3.61209793e-08 art_sys_58: -3.29817357e-08 art_sys_59: 8.33069175e-09 - art_sys_60: 8.76485834e-11 + art_sys_60: -8.76485834e-11 art_sys_61: 3.81855777e-10 art_sys_62: 0.0 art_sys_63: 0.0 @@ -9779,16 +9779,16 @@ bins: art_sys_48: -4.22713500e-02 art_sys_49: 3.15270604e-03 art_sys_50: -1.21404034e-03 - art_sys_51: 1.49855462e-04 - art_sys_52: 9.06258801e-05 - art_sys_53: -3.89461332e-06 + art_sys_51: -1.49855462e-04 + art_sys_52: -9.06258801e-05 + art_sys_53: 3.89461332e-06 art_sys_54: 1.91543676e-06 art_sys_55: -1.05365902e-06 - art_sys_56: 3.37162322e-07 + art_sys_56: -3.37162322e-07 art_sys_57: -3.58179579e-08 art_sys_58: 2.42476016e-08 art_sys_59: -2.39989687e-08 - art_sys_60: -2.67708388e-11 + art_sys_60: 2.67708388e-11 art_sys_61: -2.09965775e-09 art_sys_62: 0.0 art_sys_63: 0.0 @@ -9986,16 +9986,16 @@ bins: art_sys_48: -8.50333455e-02 art_sys_49: 1.02489061e-03 art_sys_50: -3.10105237e-03 - art_sys_51: 3.91473778e-04 - art_sys_52: -8.69866557e-05 - art_sys_53: -5.55024174e-05 + art_sys_51: -3.91473778e-04 + art_sys_52: 8.69866557e-05 + art_sys_53: 5.55024174e-05 art_sys_54: -5.61323138e-06 art_sys_55: 1.28576822e-07 - art_sys_56: -1.85599336e-07 + art_sys_56: 1.85599336e-07 art_sys_57: 2.66378264e-07 art_sys_58: 1.45428562e-08 art_sys_59: -2.24939332e-10 - art_sys_60: -1.20617826e-11 + art_sys_60: 1.20617826e-11 art_sys_61: 1.73963394e-08 art_sys_62: 0.0 art_sys_63: 0.0 @@ -10193,16 +10193,16 @@ bins: art_sys_48: -1.58584938e+00 art_sys_49: 3.60811479e-02 art_sys_50: -1.92201199e-02 - art_sys_51: -4.84571565e-05 - art_sys_52: 1.62737675e-04 - art_sys_53: 8.08997589e-05 + art_sys_51: 4.84571565e-05 + art_sys_52: -1.62737675e-04 + art_sys_53: -8.08997589e-05 art_sys_54: 3.15411999e-06 art_sys_55: -2.69437490e-06 - art_sys_56: -2.77549746e-06 + art_sys_56: 2.77549746e-06 art_sys_57: -2.34617921e-08 art_sys_58: -1.06508888e-07 art_sys_59: -5.82292265e-09 - art_sys_60: 5.16173485e-11 + art_sys_60: -5.16173485e-11 art_sys_61: 5.11123106e-09 art_sys_62: 0.0 art_sys_63: 0.0 @@ -10400,16 +10400,16 @@ bins: art_sys_48: 2.76328213e+00 art_sys_49: -7.76356933e-01 art_sys_50: -4.30527930e-04 - art_sys_51: -1.02663986e-03 - art_sys_52: 5.32648281e-04 - art_sys_53: -1.77002357e-04 + art_sys_51: 1.02663986e-03 + art_sys_52: -5.32648281e-04 + art_sys_53: 1.77002357e-04 art_sys_54: -1.85461896e-06 art_sys_55: -4.25636772e-06 - art_sys_56: -1.43467859e-07 + art_sys_56: 1.43467859e-07 art_sys_57: -3.50941013e-07 art_sys_58: -2.40483565e-08 art_sys_59: 1.35872271e-07 - art_sys_60: 5.92681650e-10 + art_sys_60: -5.92681650e-10 art_sys_61: -4.03730569e-08 art_sys_62: 0.0 art_sys_63: 0.0 @@ -10607,16 +10607,16 @@ bins: art_sys_48: -5.95698306e+01 art_sys_49: 1.40905539e+00 art_sys_50: -2.77866576e-01 - art_sys_51: -7.92766258e-03 - art_sys_52: -3.66278323e-04 - art_sys_53: 4.72197729e-05 + art_sys_51: 7.92766258e-03 + art_sys_52: 3.66278323e-04 + art_sys_53: -4.72197729e-05 art_sys_54: 1.58434782e-05 art_sys_55: 9.04300392e-07 - art_sys_56: 2.37613082e-06 + art_sys_56: -2.37613082e-06 art_sys_57: -2.50846136e-06 art_sys_58: -1.80489595e-06 art_sys_59: 7.39519526e-08 - art_sys_60: 2.36230645e-10 + art_sys_60: -2.36230645e-10 art_sys_61: -9.63475484e-09 art_sys_62: 0.0 art_sys_63: 0.0 @@ -10814,16 +10814,16 @@ bins: art_sys_48: -2.82177164e+00 art_sys_49: -3.09001221e+01 art_sys_50: 3.48210070e-01 - art_sys_51: -1.03335483e-01 - art_sys_52: -8.58417823e-04 - art_sys_53: 6.75162723e-04 + art_sys_51: 1.03335483e-01 + art_sys_52: 8.58417823e-04 + art_sys_53: -6.75162723e-04 art_sys_54: 1.71980189e-04 art_sys_55: 3.06180889e-05 - art_sys_56: 9.20327718e-06 + art_sys_56: -9.20327718e-06 art_sys_57: 3.79205098e-07 art_sys_58: -1.91291931e-06 art_sys_59: -2.08081108e-07 - art_sys_60: -1.98790364e-09 + art_sys_60: 1.98790364e-09 art_sys_61: -1.11835987e-07 art_sys_62: 0.0 art_sys_63: 0.0 @@ -11021,16 +11021,16 @@ bins: art_sys_48: 1.25054374e+00 art_sys_49: -9.24209004e-01 art_sys_50: -1.23838037e+01 - art_sys_51: 2.50324942e-01 - art_sys_52: -5.57036350e-02 - art_sys_53: 1.81148878e-03 + art_sys_51: -2.50324942e-01 + art_sys_52: 5.57036350e-02 + art_sys_53: -1.81148878e-03 art_sys_54: 2.70935328e-04 art_sys_55: 2.94249444e-05 - art_sys_56: 2.68315412e-05 + art_sys_56: -2.68315412e-05 art_sys_57: -1.31564890e-05 art_sys_58: -6.34924848e-07 art_sys_59: -4.62932059e-07 - art_sys_60: 6.22427120e-10 + art_sys_60: -6.22427120e-10 art_sys_61: 2.69680101e-07 art_sys_62: 0.0 art_sys_63: 0.0 @@ -11228,16 +11228,16 @@ bins: art_sys_48: 1.94002811e-01 art_sys_49: 5.30793968e-01 art_sys_50: -5.72632250e-01 - art_sys_51: -5.54410107e+00 - art_sys_52: 1.02990569e-01 - art_sys_53: 2.83795870e-02 + art_sys_51: 5.54410107e+00 + art_sys_52: -1.02990569e-01 + art_sys_53: -2.83795870e-02 art_sys_54: 1.29793253e-03 art_sys_55: -3.07831532e-04 - art_sys_56: -9.66556595e-06 + art_sys_56: 9.66556595e-06 art_sys_57: 2.09787115e-05 art_sys_58: -6.81222007e-06 art_sys_59: -9.85758381e-07 - art_sys_60: -8.49427923e-09 + art_sys_60: 8.49427923e-09 art_sys_61: -2.84373043e-08 art_sys_62: 0.0 art_sys_63: 0.0 @@ -11435,16 +11435,16 @@ bins: art_sys_48: -8.32034240e-03 art_sys_49: 4.58442863e-02 art_sys_50: 2.18568410e-01 - art_sys_51: -2.09306604e-01 - art_sys_52: -2.86173114e+00 - art_sys_53: -5.55053002e-02 + art_sys_51: 2.09306604e-01 + art_sys_52: 2.86173114e+00 + art_sys_53: 5.55053002e-02 art_sys_54: 1.36256733e-02 art_sys_55: 5.16461752e-04 - art_sys_56: 2.13637863e-04 + art_sys_56: -2.13637863e-04 art_sys_57: 1.61167031e-05 art_sys_58: 1.25662139e-06 art_sys_59: 3.17236260e-06 - art_sys_60: 3.02582864e-08 + art_sys_60: -3.02582864e-08 art_sys_61: 7.82809980e-07 art_sys_62: 0.0 art_sys_63: 0.0 @@ -11642,16 +11642,16 @@ bins: art_sys_48: -2.41152715e-03 art_sys_49: 7.48560387e-03 art_sys_50: 4.05153204e-02 - art_sys_51: 1.16049619e-01 - art_sys_52: -1.32557395e-01 - art_sys_53: 1.24315602e+00 + art_sys_51: -1.16049619e-01 + art_sys_52: 1.32557395e-01 + art_sys_53: -1.24315602e+00 art_sys_54: -2.51612667e-02 art_sys_55: -9.22195097e-03 - art_sys_56: -1.63779360e-04 + art_sys_56: 1.63779360e-04 art_sys_57: 3.42989315e-05 art_sys_58: 7.69044821e-07 art_sys_59: -3.93893188e-06 - art_sys_60: -1.07199328e-07 + art_sys_60: 1.07199328e-07 art_sys_61: 1.32559588e-07 art_sys_62: 0.0 art_sys_63: 0.0 @@ -11849,16 +11849,16 @@ bins: art_sys_48: 1.52634349e-03 art_sys_49: 7.48439983e-03 art_sys_50: 3.53954431e-03 - art_sys_51: 2.11968683e-02 - art_sys_52: 5.86543323e-02 - art_sys_53: 5.42906294e-02 + art_sys_51: -2.11968683e-02 + art_sys_52: -5.86543323e-02 + art_sys_53: -5.42906294e-02 art_sys_54: 6.05612221e-01 art_sys_55: 1.52885159e-02 - art_sys_56: 4.92673169e-03 + art_sys_56: -4.92673169e-03 art_sys_57: 1.53704969e-04 art_sys_58: -2.35569710e-05 art_sys_59: -7.65451259e-06 - art_sys_60: 2.12624609e-07 + art_sys_60: -2.12624609e-07 art_sys_61: -2.79356350e-06 art_sys_62: 0.0 art_sys_63: 0.0 @@ -12056,16 +12056,16 @@ bins: art_sys_48: -4.52203489e-04 art_sys_49: -3.21855355e-03 art_sys_50: -1.25044854e-03 - art_sys_51: 2.58676170e-03 - art_sys_52: 1.71614006e-03 - art_sys_53: -3.15078218e-02 + art_sys_51: -2.58676170e-03 + art_sys_52: -1.71614006e-03 + art_sys_53: 3.15078218e-02 art_sys_54: 2.88868612e-02 art_sys_55: -3.37701525e-01 - art_sys_56: -7.81339273e-03 + art_sys_56: 7.81339273e-03 art_sys_57: 2.44957761e-03 art_sys_58: 1.42169631e-05 art_sys_59: -4.19168303e-05 - art_sys_60: 4.28780596e-08 + art_sys_60: -4.28780596e-08 art_sys_61: -6.08035069e-06 art_sys_62: 0.0 art_sys_63: 0.0 @@ -12263,16 +12263,16 @@ bins: art_sys_48: 9.26640812e-04 art_sys_49: 1.47206210e-03 art_sys_50: 1.69056394e-03 - art_sys_51: -5.59117852e-04 - art_sys_52: 1.85537167e-03 - art_sys_53: -1.80713149e-03 + art_sys_51: 5.59117852e-04 + art_sys_52: -1.85537167e-03 + art_sys_53: 1.80713149e-03 art_sys_54: -1.63781510e-02 art_sys_55: -1.70246003e-02 - art_sys_56: 1.65556806e-01 + art_sys_56: -1.65556806e-01 art_sys_57: -9.41269596e-03 art_sys_58: -2.38387383e-03 art_sys_59: -3.25726146e-05 - art_sys_60: 5.96572547e-07 + art_sys_60: -5.96572547e-07 art_sys_61: -2.35283718e-07 art_sys_62: 0.0 art_sys_63: 0.0 @@ -12470,16 +12470,16 @@ bins: art_sys_48: -1.44060249e-03 art_sys_49: 3.49645490e-05 art_sys_50: -1.39393151e-03 - art_sys_51: 9.82839792e-04 - art_sys_52: 5.30998535e-04 - art_sys_53: 8.66300821e-05 + art_sys_51: -9.82839792e-04 + art_sys_52: -5.30998535e-04 + art_sys_53: -8.66300821e-05 art_sys_54: -3.22855254e-03 art_sys_55: 6.61896711e-03 - art_sys_56: 1.64656363e-02 + art_sys_56: -1.64656363e-02 art_sys_57: 9.86184257e-02 art_sys_58: 6.26548479e-03 art_sys_59: -9.77059408e-04 - art_sys_60: 1.58890740e-07 + art_sys_60: -1.58890740e-07 art_sys_61: -3.79118860e-05 art_sys_62: 0.0 art_sys_63: 0.0 @@ -12677,16 +12677,16 @@ bins: art_sys_48: 1.60869026e-03 art_sys_49: 7.91431867e-04 art_sys_50: -2.49501975e-05 - art_sys_51: 7.14736485e-04 - art_sys_52: -8.91490945e-05 - art_sys_53: 6.86676486e-05 + art_sys_51: -7.14736485e-04 + art_sys_52: 8.91490945e-05 + art_sys_53: -6.86676486e-05 art_sys_54: 8.57951501e-05 art_sys_55: 1.22234131e-03 - art_sys_56: -4.66375998e-03 + art_sys_56: 4.66375998e-03 art_sys_57: 1.04944841e-02 art_sys_58: -6.17784824e-02 art_sys_59: 2.07139205e-03 - art_sys_60: 3.01096465e-06 + art_sys_60: -3.01096465e-06 art_sys_61: 4.72630768e-04 art_sys_62: 0.0 art_sys_63: 0.0 @@ -12884,16 +12884,16 @@ bins: art_sys_48: 2.30799618e-05 art_sys_49: 2.46427648e-04 art_sys_50: 2.12589442e-04 - art_sys_51: 1.29647884e-04 - art_sys_52: -2.93203289e-04 - art_sys_53: -1.15086968e-04 + art_sys_51: -1.29647884e-04 + art_sys_52: 2.93203289e-04 + art_sys_53: 1.15086968e-04 art_sys_54: -5.98935240e-05 art_sys_55: 3.14330514e-04 - art_sys_56: -8.88056712e-04 + art_sys_56: 8.88056712e-04 art_sys_57: -2.10461293e-03 art_sys_58: -3.93965717e-03 art_sys_59: -3.50112283e-02 - art_sys_60: -2.38061588e-05 + art_sys_60: 2.38061588e-05 art_sys_61: -1.49379990e-03 art_sys_62: 0.0 art_sys_63: 0.0 @@ -13091,16 +13091,16 @@ bins: art_sys_48: -1.04490218e-04 art_sys_49: -1.81578800e-04 art_sys_50: 1.93298848e-04 - art_sys_51: -6.84279374e-06 - art_sys_52: 1.16004230e-04 - art_sys_53: -1.97725129e-05 + art_sys_51: 6.84279374e-06 + art_sys_52: -1.16004230e-04 + art_sys_53: 1.97725129e-05 art_sys_54: 8.90667264e-05 art_sys_55: -1.04359120e-04 - art_sys_56: 8.37153065e-05 + art_sys_56: -8.37153065e-05 art_sys_57: -2.43272098e-04 art_sys_58: 1.31494654e-03 art_sys_59: -2.97926610e-03 - art_sys_60: 3.90299005e-05 + art_sys_60: -3.90299005e-05 art_sys_61: 1.79118225e-02 art_sys_62: 0.0 art_sys_63: 0.0 @@ -13298,16 +13298,16 @@ bins: art_sys_48: -2.07886872e-06 art_sys_49: 1.45812828e-05 art_sys_50: 7.69113733e-07 - art_sys_51: 9.58227234e-06 - art_sys_52: -1.45046920e-05 - art_sys_53: -3.71925535e-05 + art_sys_51: -9.58227234e-06 + art_sys_52: 1.45046920e-05 + art_sys_53: 3.71925535e-05 art_sys_54: 3.84229834e-05 art_sys_55: -8.16692233e-06 - art_sys_56: 3.37707324e-05 + art_sys_56: -3.37707324e-05 art_sys_57: 2.47368030e-05 art_sys_58: -1.24092432e-05 art_sys_59: 2.17139387e-04 - art_sys_60: -3.33086376e-03 + art_sys_60: 3.33086376e-03 art_sys_61: 2.20986029e-04 art_sys_62: 0.0 art_sys_63: 0.0 @@ -13523,15 +13523,15 @@ bins: art_sys_66: 1.74252968e-01 art_sys_67: 5.26652034e-04 art_sys_68: -6.13531138e-03 - art_sys_69: -1.75138934e-03 - art_sys_70: -7.29104001e-04 - art_sys_71: 2.48096920e-05 - art_sys_72: 2.28006616e-05 - art_sys_73: -3.24912541e-06 + art_sys_69: 1.75138934e-03 + art_sys_70: 7.29104001e-04 + art_sys_71: -2.48096920e-05 + art_sys_72: -2.28006616e-05 + art_sys_73: 3.24912541e-06 art_sys_74: 2.03780513e-07 - art_sys_75: -1.01661787e-07 - art_sys_76: -5.42627878e-08 - art_sys_77: -7.17831092e-09 + art_sys_75: 1.01661787e-07 + art_sys_76: 5.42627878e-08 + art_sys_77: 7.17831092e-09 art_sys_78: -1.33458464e-10 art_sys_79: 0.0 art_sys_80: 0.0 @@ -13730,15 +13730,15 @@ bins: art_sys_66: -4.44007650e-01 art_sys_67: -5.39301823e-02 art_sys_68: 1.87162444e-03 - art_sys_69: -2.28485908e-04 - art_sys_70: 4.18398407e-04 - art_sys_71: -3.18959075e-05 - art_sys_72: -5.08200322e-06 - art_sys_73: 1.10585096e-06 + art_sys_69: 2.28485908e-04 + art_sys_70: -4.18398407e-04 + art_sys_71: 3.18959075e-05 + art_sys_72: 5.08200322e-06 + art_sys_73: -1.10585096e-06 art_sys_74: 1.05548441e-07 - art_sys_75: -3.05399083e-08 - art_sys_76: 2.46576399e-08 - art_sys_77: 1.03499634e-08 + art_sys_75: 3.05399083e-08 + art_sys_76: -2.46576399e-08 + art_sys_77: -1.03499634e-08 art_sys_78: 6.38749618e-11 art_sys_79: 0.0 art_sys_80: 0.0 @@ -13937,15 +13937,15 @@ bins: art_sys_66: 3.37737435e+00 art_sys_67: 2.58525355e-01 art_sys_68: 4.93910361e-02 - art_sys_69: -6.41359012e-04 - art_sys_70: -1.05304412e-03 - art_sys_71: 4.99850286e-05 - art_sys_72: 2.38715890e-05 - art_sys_73: 6.36227631e-06 + art_sys_69: 6.41359012e-04 + art_sys_70: 1.05304412e-03 + art_sys_71: -4.99850286e-05 + art_sys_72: -2.38715890e-05 + art_sys_73: -6.36227631e-06 art_sys_74: -2.17630487e-07 - art_sys_75: -2.74463201e-07 - art_sys_76: -1.66565097e-07 - art_sys_77: -1.12107781e-08 + art_sys_75: 2.74463201e-07 + art_sys_76: 1.66565097e-07 + art_sys_77: 1.12107781e-08 art_sys_78: 2.07223164e-10 art_sys_79: 0.0 art_sys_80: 0.0 @@ -14144,15 +14144,15 @@ bins: art_sys_66: -9.30058149e+00 art_sys_67: -2.12197547e+00 art_sys_68: -6.27801622e-02 - art_sys_69: 1.07652466e-02 - art_sys_70: 1.17164265e-03 - art_sys_71: 2.25238844e-05 - art_sys_72: -5.54662882e-05 - art_sys_73: 2.51878317e-05 + art_sys_69: -1.07652466e-02 + art_sys_70: -1.17164265e-03 + art_sys_71: -2.25238844e-05 + art_sys_72: 5.54662882e-05 + art_sys_73: -2.51878317e-05 art_sys_74: 4.62254240e-06 - art_sys_75: 3.11603567e-07 - art_sys_76: 2.88768546e-07 - art_sys_77: 1.21574040e-08 + art_sys_75: -3.11603567e-07 + art_sys_76: -2.88768546e-07 + art_sys_77: -1.21574040e-08 art_sys_78: 6.21697638e-10 art_sys_79: 0.0 art_sys_80: 0.0 @@ -14351,15 +14351,15 @@ bins: art_sys_66: 6.88004975e+01 art_sys_67: 6.79426548e+00 art_sys_68: 1.08646485e+00 - art_sys_69: -5.72672639e-02 - art_sys_70: -3.69348743e-03 - art_sys_71: -9.81332931e-05 - art_sys_72: -8.25164443e-05 - art_sys_73: 2.91006884e-05 + art_sys_69: 5.72672639e-02 + art_sys_70: 3.69348743e-03 + art_sys_71: 9.81332931e-05 + art_sys_72: 8.25164443e-05 + art_sys_73: -2.91006884e-05 art_sys_74: -8.24371422e-06 - art_sys_75: -5.55643028e-07 - art_sys_76: -4.38999593e-07 - art_sys_77: -7.12822837e-08 + art_sys_75: 5.55643028e-07 + art_sys_76: 4.38999593e-07 + art_sys_77: 7.12822837e-08 art_sys_78: -3.92018610e-09 art_sys_79: 0.0 art_sys_80: 0.0 @@ -14558,15 +14558,15 @@ bins: art_sys_66: 1.26644212e+01 art_sys_67: -3.93721103e+01 art_sys_68: -2.80465106e+00 - art_sys_69: 4.36143863e-01 - art_sys_70: 1.72570304e-02 - art_sys_71: -5.55025645e-04 - art_sys_72: -1.89921974e-04 - art_sys_73: -7.31993643e-05 + art_sys_69: -4.36143863e-01 + art_sys_70: -1.72570304e-02 + art_sys_71: 5.55025645e-04 + art_sys_72: 1.89921974e-04 + art_sys_73: 7.31993643e-05 art_sys_74: 9.33566451e-07 - art_sys_75: -1.61604621e-06 - art_sys_76: -5.89096510e-07 - art_sys_77: 8.32020540e-08 + art_sys_75: 1.61604621e-06 + art_sys_76: 5.89096510e-07 + art_sys_77: -8.32020540e-08 art_sys_78: 3.47346911e-09 art_sys_79: 0.0 art_sys_80: 0.0 @@ -14765,15 +14765,15 @@ bins: art_sys_66: -1.87521084e+00 art_sys_67: -5.80882287e+00 art_sys_68: 2.07399830e+01 - art_sys_69: -1.33860944e+00 - art_sys_70: -1.83095320e-01 - art_sys_71: -3.87932213e-04 - art_sys_72: 1.32983776e-03 - art_sys_73: 1.19885874e-04 + art_sys_69: 1.33860944e+00 + art_sys_70: 1.83095320e-01 + art_sys_71: 3.87932213e-04 + art_sys_72: -1.32983776e-03 + art_sys_73: -1.19885874e-04 art_sys_74: -3.04898435e-05 - art_sys_75: -3.71659240e-06 - art_sys_76: 8.22742847e-07 - art_sys_77: 3.78076522e-07 + art_sys_75: 3.71659240e-06 + art_sys_76: -8.22742847e-07 + art_sys_77: -3.78076522e-07 art_sys_78: -6.72876271e-09 art_sys_79: 0.0 art_sys_80: 0.0 @@ -14972,15 +14972,15 @@ bins: art_sys_66: -3.82806679e-01 art_sys_67: 9.20211168e-01 art_sys_68: 2.81729485e+00 - art_sys_69: 1.04761471e+01 - art_sys_70: 5.13238656e-01 - art_sys_71: -4.20263416e-02 - art_sys_72: -2.36760669e-03 - art_sys_73: 9.22751094e-05 + art_sys_69: -1.04761471e+01 + art_sys_70: -5.13238656e-01 + art_sys_71: 4.20263416e-02 + art_sys_72: 2.36760669e-03 + art_sys_73: -9.22751094e-05 art_sys_74: 2.07729945e-05 - art_sys_75: -8.21937211e-06 - art_sys_76: -1.10751250e-06 - art_sys_77: 1.01860325e-07 + art_sys_75: 8.21937211e-06 + art_sys_76: 1.10751250e-06 + art_sys_77: -1.01860325e-07 art_sys_78: -8.39216964e-09 art_sys_79: 0.0 art_sys_80: 0.0 @@ -15179,15 +15179,15 @@ bins: art_sys_66: 1.83227932e-02 art_sys_67: 1.56455053e-01 art_sys_68: -4.48493738e-01 - art_sys_69: 1.07499026e+00 - art_sys_70: -5.29032997e+00 - art_sys_71: 1.13699489e-01 - art_sys_72: 3.17628351e-02 - art_sys_73: 7.09890408e-04 + art_sys_69: -1.07499026e+00 + art_sys_70: 5.29032997e+00 + art_sys_71: -1.13699489e-01 + art_sys_72: -3.17628351e-02 + art_sys_73: -7.09890408e-04 art_sys_74: -1.43014484e-04 - art_sys_75: -1.26575439e-05 - art_sys_76: -4.77472112e-06 - art_sys_77: 1.76815490e-06 + art_sys_75: 1.26575439e-05 + art_sys_76: 4.77472112e-06 + art_sys_77: -1.76815490e-06 art_sys_78: 2.33251710e-08 art_sys_79: 0.0 art_sys_80: 0.0 @@ -15386,15 +15386,15 @@ bins: art_sys_66: 1.83012396e-03 art_sys_67: 1.70692257e-03 art_sys_68: -9.41898568e-02 - art_sys_69: -1.70815093e-01 - art_sys_70: -3.55861120e-01 - art_sys_71: -1.82516318e+00 - art_sys_72: -1.17675942e-01 - art_sys_73: -1.11312913e-02 + art_sys_69: 1.70815093e-01 + art_sys_70: 3.55861120e-01 + art_sys_71: 1.82516318e+00 + art_sys_72: 1.17675942e-01 + art_sys_73: 1.11312913e-02 art_sys_74: 1.40460505e-04 - art_sys_75: 1.81214163e-05 - art_sys_76: -4.41253808e-06 - art_sys_77: -2.95108891e-06 + art_sys_75: -1.81214163e-05 + art_sys_76: 4.41253808e-06 + art_sys_77: 2.95108891e-06 art_sys_78: -4.99886735e-08 art_sys_79: 0.0 art_sys_80: 0.0 @@ -15593,15 +15593,15 @@ bins: art_sys_66: 8.29446490e-03 art_sys_67: -2.25323746e-03 art_sys_68: -1.83356707e-02 - art_sys_69: -2.73408436e-02 - art_sys_70: 1.23995592e-01 - art_sys_71: -2.15563571e-01 - art_sys_72: 1.02220431e+00 - art_sys_73: 4.12383680e-02 + art_sys_69: 2.73408436e-02 + art_sys_70: -1.23995592e-01 + art_sys_71: 2.15563571e-01 + art_sys_72: -1.02220431e+00 + art_sys_73: -4.12383680e-02 art_sys_74: -4.05735515e-03 - art_sys_75: 9.43846780e-05 - art_sys_76: 2.38666196e-06 - art_sys_77: 2.78743069e-06 + art_sys_75: -9.43846780e-05 + art_sys_76: -2.38666196e-06 + art_sys_77: -2.78743069e-06 art_sys_78: -1.64409273e-07 art_sys_79: 0.0 art_sys_80: 0.0 @@ -15800,15 +15800,15 @@ bins: art_sys_66: 1.98606442e-03 art_sys_67: 4.72702922e-03 art_sys_68: 5.90701995e-03 - art_sys_69: 4.45676358e-03 - art_sys_70: 1.04285455e-02 - art_sys_71: 2.23791159e-02 - art_sys_72: 8.64339671e-02 - art_sys_73: -5.08482032e-01 + art_sys_69: -4.45676358e-03 + art_sys_70: -1.04285455e-02 + art_sys_71: -2.23791159e-02 + art_sys_72: -8.64339671e-02 + art_sys_73: 5.08482032e-01 art_sys_74: 1.00521977e-02 - art_sys_75: -1.36673291e-03 - art_sys_76: -9.78069847e-05 - art_sys_77: -1.95415916e-06 + art_sys_75: 1.36673291e-03 + art_sys_76: 9.78069847e-05 + art_sys_77: 1.95415916e-06 art_sys_78: -4.76338721e-08 art_sys_79: 0.0 art_sys_80: 0.0 @@ -16007,15 +16007,15 @@ bins: art_sys_66: -2.86810562e-03 art_sys_67: 6.16518490e-04 art_sys_68: -2.01777641e-03 - art_sys_69: 1.29831166e-03 - art_sys_70: 1.63067670e-03 - art_sys_71: 4.31328982e-03 - art_sys_72: -1.70182880e-02 - art_sys_73: -2.77021220e-02 + art_sys_69: -1.29831166e-03 + art_sys_70: -1.63067670e-03 + art_sys_71: -4.31328982e-03 + art_sys_72: 1.70182880e-02 + art_sys_73: 2.77021220e-02 art_sys_74: -1.93062208e-01 - art_sys_75: 4.47023141e-03 - art_sys_76: 1.22858535e-03 - art_sys_77: -1.69099772e-05 + art_sys_75: -4.47023141e-03 + art_sys_76: -1.22858535e-03 + art_sys_77: 1.69099772e-05 art_sys_78: 7.79627481e-07 art_sys_79: 0.0 art_sys_80: 0.0 @@ -16214,15 +16214,15 @@ bins: art_sys_66: -8.20818411e-04 art_sys_67: 7.91161800e-04 art_sys_68: -1.26254751e-03 - art_sys_69: -1.18228895e-03 - art_sys_70: 7.46045385e-04 - art_sys_71: -7.45997841e-04 - art_sys_72: -1.18206259e-03 - art_sys_73: 6.59705252e-03 + art_sys_69: 1.18228895e-03 + art_sys_70: -7.46045385e-04 + art_sys_71: 7.45997841e-04 + art_sys_72: 1.18206259e-03 + art_sys_73: -6.59705252e-03 art_sys_74: -1.03250804e-02 - art_sys_75: -8.70208991e-02 - art_sys_76: -2.84577107e-03 - art_sys_77: 5.32419747e-04 + art_sys_75: 8.70208991e-02 + art_sys_76: 2.84577107e-03 + art_sys_77: -5.32419747e-04 art_sys_78: -3.33221921e-07 art_sys_79: 0.0 art_sys_80: 0.0 @@ -16421,15 +16421,15 @@ bins: art_sys_66: 8.66219433e-04 art_sys_67: -2.33297601e-04 art_sys_68: -3.51396400e-04 - art_sys_69: 2.63817757e-04 - art_sys_70: -5.24884377e-04 - art_sys_71: -2.38103127e-04 - art_sys_72: 4.73229993e-04 - art_sys_73: 6.98727479e-05 + art_sys_69: -2.63817757e-04 + art_sys_70: 5.24884377e-04 + art_sys_71: 2.38103127e-04 + art_sys_72: -4.73229993e-04 + art_sys_73: -6.98727479e-05 art_sys_74: 4.20270264e-03 - art_sys_75: -5.20116947e-03 - art_sys_76: 4.95060369e-02 - art_sys_77: -1.16467374e-03 + art_sys_75: 5.20116947e-03 + art_sys_76: -4.95060369e-02 + art_sys_77: 1.16467374e-03 art_sys_78: 1.50999986e-05 art_sys_79: 0.0 art_sys_80: 0.0 @@ -16628,15 +16628,15 @@ bins: art_sys_66: 2.56390419e-04 art_sys_67: 2.08041692e-04 art_sys_68: -2.95201005e-04 - art_sys_69: -8.26193202e-05 - art_sys_70: 2.94659728e-04 - art_sys_71: -1.99308000e-04 - art_sys_72: -9.25225280e-05 - art_sys_73: -2.12072163e-04 + art_sys_69: 8.26193202e-05 + art_sys_70: -2.94659728e-04 + art_sys_71: 1.99308000e-04 + art_sys_72: 9.25225280e-05 + art_sys_73: 2.12072163e-04 art_sys_74: 3.00913493e-04 - art_sys_75: 1.69677812e-03 - art_sys_76: 2.49111781e-03 - art_sys_77: 2.37758854e-02 + art_sys_75: -1.69677812e-03 + art_sys_76: -2.49111781e-03 + art_sys_77: -2.37758854e-02 art_sys_78: -2.38317378e-05 art_sys_79: 0.0 art_sys_80: 0.0 @@ -16835,15 +16835,15 @@ bins: art_sys_66: 6.16954980e-05 art_sys_67: 4.02807869e-05 art_sys_68: 5.24997416e-05 - art_sys_69: 9.32401160e-06 - art_sys_70: 4.19067169e-05 - art_sys_71: -3.89749968e-05 - art_sys_72: 4.94015305e-05 - art_sys_73: -9.51325399e-08 + art_sys_69: -9.32401160e-06 + art_sys_70: -4.19067169e-05 + art_sys_71: 3.89749968e-05 + art_sys_72: -4.94015305e-05 + art_sys_73: 9.51325399e-08 art_sys_74: 2.64759986e-05 - art_sys_75: 2.52590857e-05 - art_sys_76: -2.01643797e-04 - art_sys_77: 1.70762182e-04 + art_sys_75: -2.52590857e-05 + art_sys_76: 2.01643797e-04 + art_sys_77: -1.70762182e-04 art_sys_78: 3.42229180e-03 art_sys_79: 0.0 art_sys_80: 0.0 diff --git a/nnpdf_data/nnpdf_data/new_commondata/ATLAS_2JET_7TEV_R06/uncertainties_weaker.yaml b/nnpdf_data/nnpdf_data/new_commondata/ATLAS_2JET_7TEV_R06/uncertainties_weaker.yaml index 735b51cefb..699095ed02 100644 --- a/nnpdf_data/nnpdf_data/new_commondata/ATLAS_2JET_7TEV_R06/uncertainties_weaker.yaml +++ b/nnpdf_data/nnpdf_data/new_commondata/ATLAS_2JET_7TEV_R06/uncertainties_weaker.yaml @@ -916,26 +916,26 @@ definitions: treatment: MULT type: ATLASLUMI11 bins: -- art_sys_1: -8.66600397e+03 +- art_sys_1: 8.66600397e+03 art_sys_2: 1.65603952e+01 art_sys_3: 1.00466592e+01 art_sys_4: 1.26565519e-01 art_sys_5: 3.24886915e-02 art_sys_6: -5.12875512e-03 - art_sys_7: -1.53888278e-03 - art_sys_8: -7.95614472e-05 + art_sys_7: 1.53888278e-03 + art_sys_8: 7.95614472e-05 art_sys_9: 4.88924054e-05 art_sys_10: -1.68570003e-05 - art_sys_11: -3.46238064e-06 - art_sys_12: 9.73326696e-07 - art_sys_13: 3.97603562e-07 + art_sys_11: 3.46238064e-06 + art_sys_12: -9.73326696e-07 + art_sys_13: -3.97603562e-07 art_sys_14: -1.98321791e-08 - art_sys_15: 5.04287641e-08 + art_sys_15: -5.04287641e-08 art_sys_16: -3.05546432e-08 art_sys_17: -8.29975820e-09 art_sys_18: -2.32783123e-09 art_sys_19: 1.54448543e-09 - art_sys_20: -5.30147707e-10 + art_sys_20: 5.30147707e-10 art_sys_21: -1.40299436e-11 art_sys_22: 0.0 art_sys_23: 0.0 @@ -1145,26 +1145,26 @@ bins: sys_137: 3.78302128e+03 sys_138: -3.78302128e+03 luminosity_uncertainty: 1.92600000e+04 -- art_sys_1: 4.77033220e+01 +- art_sys_1: -4.77033220e+01 art_sys_2: 3.14268214e+03 art_sys_3: 3.50642944e+01 art_sys_4: 6.62067632e+00 art_sys_5: 8.28376346e-02 art_sys_6: -1.14440868e-02 - art_sys_7: -7.91206859e-03 - art_sys_8: 5.40010282e-04 + art_sys_7: 7.91206859e-03 + art_sys_8: -5.40010282e-04 art_sys_9: 4.01656084e-04 art_sys_10: 1.50718011e-05 - art_sys_11: -2.16191112e-06 - art_sys_12: -4.46031889e-06 - art_sys_13: 8.14636149e-08 + art_sys_11: 2.16191112e-06 + art_sys_12: 4.46031889e-06 + art_sys_13: -8.14636149e-08 art_sys_14: -4.17082996e-07 - art_sys_15: 1.05694529e-08 + art_sys_15: -1.05694529e-08 art_sys_16: -1.25633584e-08 art_sys_17: 2.95765951e-08 art_sys_18: 9.14156780e-09 art_sys_19: 1.96642808e-09 - art_sys_20: -1.01309289e-09 + art_sys_20: 1.01309289e-09 art_sys_21: -4.60286375e-11 art_sys_22: 0.0 art_sys_23: 0.0 @@ -1374,26 +1374,26 @@ bins: sys_137: 1.43542677e+03 sys_138: -1.43542677e+03 luminosity_uncertainty: 7.30800000e+03 -- art_sys_1: 7.00122739e+01 +- art_sys_1: -7.00122739e+01 art_sys_2: -9.20257933e+01 art_sys_3: 1.21913825e+03 art_sys_4: 1.80626131e+01 art_sys_5: 2.28059505e+00 art_sys_6: -7.90198445e-02 - art_sys_7: -1.06746073e-02 - art_sys_8: 2.44464005e-03 + art_sys_7: 1.06746073e-02 + art_sys_8: -2.44464005e-03 art_sys_9: 4.47952792e-04 art_sys_10: -1.08646766e-04 - art_sys_11: 9.08624166e-06 - art_sys_12: -3.11648575e-06 - art_sys_13: 5.35926874e-07 + art_sys_11: -9.08624166e-06 + art_sys_12: 3.11648575e-06 + art_sys_13: -5.35926874e-07 art_sys_14: -2.29584162e-06 - art_sys_15: 1.07006478e-06 + art_sys_15: -1.07006478e-06 art_sys_16: -1.28227265e-07 art_sys_17: 6.24732027e-08 art_sys_18: -6.45561067e-09 art_sys_19: 1.59017767e-09 - art_sys_20: -1.05553387e-08 + art_sys_20: 1.05553387e-08 art_sys_21: 3.63513279e-11 art_sys_22: 0.0 art_sys_23: 0.0 @@ -1603,26 +1603,26 @@ bins: sys_137: 5.37401154e+02 sys_138: -5.37401154e+02 luminosity_uncertainty: 2.73600000e+03 -- art_sys_1: -9.77545258e-01 +- art_sys_1: 9.77545258e-01 art_sys_2: -3.96231596e+01 art_sys_3: -4.64375276e+01 art_sys_4: 4.82951674e+02 art_sys_5: 5.44666874e+00 art_sys_6: -7.84822573e-01 - art_sys_7: -6.48303771e-02 - art_sys_8: 3.61645081e-03 + art_sys_7: 6.48303771e-02 + art_sys_8: -3.61645081e-03 art_sys_9: -7.83601275e-04 art_sys_10: -6.52654718e-04 - art_sys_11: -5.20483996e-05 - art_sys_12: 9.48094386e-06 - art_sys_13: 8.85394144e-06 + art_sys_11: 5.20483996e-05 + art_sys_12: -9.48094386e-06 + art_sys_13: -8.85394144e-06 art_sys_14: 1.78779821e-06 - art_sys_15: -7.30851279e-07 + art_sys_15: 7.30851279e-07 art_sys_16: -1.74720749e-07 art_sys_17: 2.62337554e-08 art_sys_18: 3.64352323e-08 art_sys_19: 1.29471700e-08 - art_sys_20: -9.46016641e-09 + art_sys_20: 9.46016641e-09 art_sys_21: 6.30046326e-11 art_sys_22: 0.0 art_sys_23: 0.0 @@ -1832,26 +1832,26 @@ bins: sys_137: 2.14253355e+02 sys_138: -2.14253355e+02 luminosity_uncertainty: 1.09080000e+03 -- art_sys_1: 6.24445985e-01 +- art_sys_1: -6.24445985e-01 art_sys_2: 8.09690516e-01 art_sys_3: -1.26198742e+01 art_sys_4: -1.33691170e+01 art_sys_5: 2.00649923e+02 art_sys_6: -4.88886178e-01 - art_sys_7: -5.72530475e-01 - art_sys_8: 3.85693232e-02 + art_sys_7: 5.72530475e-01 + art_sys_8: -3.85693232e-02 art_sys_9: -4.09551998e-03 art_sys_10: 5.10668135e-04 - art_sys_11: 3.58839834e-04 - art_sys_12: 4.01512348e-05 - art_sys_13: 9.94951973e-06 + art_sys_11: -3.58839834e-04 + art_sys_12: -4.01512348e-05 + art_sys_13: -9.94951973e-06 art_sys_14: -2.04343429e-05 - art_sys_15: 2.50511092e-06 + art_sys_15: -2.50511092e-06 art_sys_16: 6.54028672e-07 art_sys_17: -1.17787458e-07 art_sys_18: 4.26063451e-08 art_sys_19: 6.37371162e-08 - art_sys_20: 4.03966220e-09 + art_sys_20: -4.03966220e-09 art_sys_21: -3.40611967e-10 art_sys_22: 0.0 art_sys_23: 0.0 @@ -2061,26 +2061,26 @@ bins: sys_137: 9.08632214e+01 sys_138: -9.08632214e+01 luminosity_uncertainty: 4.62600000e+02 -- art_sys_1: 5.59880644e-01 +- art_sys_1: -5.59880644e-01 art_sys_2: 1.57221880e-03 art_sys_3: -7.70393233e-01 art_sys_4: -5.30516357e+00 art_sys_5: -1.58625879e+00 art_sys_6: -7.07597902e+01 - art_sys_7: -1.18820891e+00 - art_sys_8: 2.67790339e-01 + art_sys_7: 1.18820891e+00 + art_sys_8: -2.67790339e-01 art_sys_9: -2.42473600e-02 art_sys_10: -1.50349162e-04 - art_sys_11: -2.01220583e-04 - art_sys_12: -3.13977714e-05 - art_sys_13: 5.25624358e-05 + art_sys_11: 2.01220583e-04 + art_sys_12: 3.13977714e-05 + art_sys_13: -5.25624358e-05 art_sys_14: -4.73347355e-06 - art_sys_15: -4.79459747e-06 + art_sys_15: 4.79459747e-06 art_sys_16: -2.74900035e-06 art_sys_17: -9.39057694e-07 art_sys_18: -1.08451445e-07 art_sys_19: 1.47385495e-07 - art_sys_20: 1.36169505e-07 + art_sys_20: -1.36169505e-07 art_sys_21: 6.70958864e-10 art_sys_22: 0.0 art_sys_23: 0.0 @@ -2290,26 +2290,26 @@ bins: sys_137: 3.99515331e+01 sys_138: -3.99515331e+01 luminosity_uncertainty: 2.03400000e+02 -- art_sys_1: 3.40189430e-01 +- art_sys_1: -3.40189430e-01 art_sys_2: -6.68262358e-01 art_sys_3: -7.01607567e-02 art_sys_4: -5.39138259e-01 art_sys_5: -3.49927676e+00 art_sys_6: 2.64986079e+00 - art_sys_7: -3.25491051e+01 - art_sys_8: 6.34601537e-01 + art_sys_7: 3.25491051e+01 + art_sys_8: -6.34601537e-01 art_sys_9: -1.68143063e-01 art_sys_10: 1.30486891e-02 - art_sys_11: -1.30308546e-03 - art_sys_12: -3.27163776e-04 - art_sys_13: 5.97594369e-05 + art_sys_11: 1.30308546e-03 + art_sys_12: 3.27163776e-04 + art_sys_13: -5.97594369e-05 art_sys_14: -2.39257219e-05 - art_sys_15: 3.39099387e-05 + art_sys_15: -3.39099387e-05 art_sys_16: 5.32913752e-06 art_sys_17: -2.71306658e-06 art_sys_18: 7.25244740e-07 art_sys_19: 5.39198882e-07 - art_sys_20: -2.22646652e-07 + art_sys_20: 2.22646652e-07 art_sys_21: -4.71488044e-10 art_sys_22: 0.0 art_sys_23: 0.0 @@ -2519,26 +2519,26 @@ bins: sys_137: 1.84201316e+01 sys_138: -1.84201316e+01 luminosity_uncertainty: 9.37800000e+01 -- art_sys_1: -9.23387966e-02 +- art_sys_1: 9.23387966e-02 art_sys_2: -5.02852833e-02 art_sys_3: -1.35259611e-01 art_sys_4: 3.40255235e-02 art_sys_5: -3.51750100e-01 art_sys_6: 1.19370158e+00 - art_sys_7: 1.49352552e+00 - art_sys_8: 1.45575069e+01 + art_sys_7: -1.49352552e+00 + art_sys_8: -1.45575069e+01 art_sys_9: -5.13965110e-01 art_sys_10: 7.07131241e-02 - art_sys_11: -7.14714411e-03 - art_sys_12: -1.46476036e-03 - art_sys_13: -1.55464994e-04 + art_sys_11: 7.14714411e-03 + art_sys_12: 1.46476036e-03 + art_sys_13: 1.55464994e-04 art_sys_14: 6.28948301e-05 - art_sys_15: 5.53498030e-05 + art_sys_15: -5.53498030e-05 art_sys_16: 6.73724191e-06 art_sys_17: -4.59052397e-06 art_sys_18: 2.01812845e-06 art_sys_19: -6.57480973e-07 - art_sys_20: -2.07564586e-07 + art_sys_20: 2.07564586e-07 art_sys_21: 1.15028463e-09 art_sys_22: 0.0 art_sys_23: 0.0 @@ -2748,26 +2748,26 @@ bins: sys_137: 8.87419010e+00 sys_138: -8.87419010e+00 luminosity_uncertainty: 4.51800000e+01 -- art_sys_1: -5.80091660e-02 +- art_sys_1: 5.80091660e-02 art_sys_2: 1.94125450e-01 art_sys_3: 1.07567088e-01 art_sys_4: -1.04484248e-02 art_sys_5: -1.89766689e-03 art_sys_6: 9.06462642e-02 - art_sys_7: 6.72738390e-01 - art_sys_8: -1.08843898e+00 + art_sys_7: -6.72738390e-01 + art_sys_8: 1.08843898e+00 art_sys_9: -7.07546072e+00 art_sys_10: 1.95866968e-01 - art_sys_11: -3.55592631e-02 - art_sys_12: 8.11460358e-05 - art_sys_13: 9.47767711e-04 + art_sys_11: 3.55592631e-02 + art_sys_12: -8.11460358e-05 + art_sys_13: -9.47767711e-04 art_sys_14: -2.31004101e-04 - art_sys_15: 4.77814218e-05 + art_sys_15: -4.77814218e-05 art_sys_16: -8.70840560e-06 art_sys_17: -1.01696338e-05 art_sys_18: 3.19457414e-06 art_sys_19: 3.71284068e-06 - art_sys_20: 6.54733539e-07 + art_sys_20: -6.54733539e-07 art_sys_21: -8.56908310e-09 art_sys_22: 0.0 art_sys_23: 0.0 @@ -2977,26 +2977,26 @@ bins: sys_137: 4.38406204e+00 sys_138: -4.38406204e+00 luminosity_uncertainty: 2.23200000e+01 -- art_sys_1: -3.56841619e-02 +- art_sys_1: 3.56841619e-02 art_sys_2: -3.24320708e-02 art_sys_3: 2.84708301e-02 art_sys_4: 9.48380534e-02 art_sys_5: -4.90602185e-03 art_sys_6: -4.29393443e-02 - art_sys_7: 5.49746356e-02 - art_sys_8: -2.42621811e-01 + art_sys_7: -5.49746356e-02 + art_sys_8: 2.42621811e-01 art_sys_9: 4.23950443e-01 art_sys_10: 3.42538579e+00 - art_sys_11: -1.04010414e-01 - art_sys_12: -1.70034057e-02 - art_sys_13: 2.23313283e-03 + art_sys_11: 1.04010414e-01 + art_sys_12: 1.70034057e-02 + art_sys_13: -2.23313283e-03 art_sys_14: -6.97646425e-04 - art_sys_15: 1.62980195e-04 + art_sys_15: -1.62980195e-04 art_sys_16: 2.08230958e-05 art_sys_17: -9.55312842e-06 art_sys_18: 4.65891824e-06 art_sys_19: 1.33058018e-06 - art_sys_20: -4.62503045e-07 + art_sys_20: 4.62503045e-07 art_sys_21: 1.60785983e-08 art_sys_22: 0.0 art_sys_23: 0.0 @@ -3206,26 +3206,26 @@ bins: sys_137: 2.11778481e+00 sys_138: -2.11778481e+00 luminosity_uncertainty: 1.07820000e+01 -- art_sys_1: 2.20322705e-02 +- art_sys_1: -2.20322705e-02 art_sys_2: -5.11195278e-03 art_sys_3: 1.76398223e-03 art_sys_4: -2.29026537e-02 art_sys_5: 4.83961862e-02 art_sys_6: 2.23674578e-03 - art_sys_7: 1.64370589e-03 - art_sys_8: -2.51940803e-02 + art_sys_7: -1.64370589e-03 + art_sys_8: 2.51940803e-02 art_sys_9: 1.27765843e-01 art_sys_10: -2.22353667e-01 - art_sys_11: -1.65201313e+00 - art_sys_12: -2.89783643e-02 - art_sys_13: 1.48881977e-02 + art_sys_11: 1.65201313e+00 + art_sys_12: 2.89783643e-02 + art_sys_13: -1.48881977e-02 art_sys_14: -1.36497539e-03 - art_sys_15: -4.99751348e-04 + art_sys_15: 4.99751348e-04 art_sys_16: 6.37809257e-05 art_sys_17: 8.63674365e-06 art_sys_18: 1.56419238e-05 art_sys_19: 9.76743155e-06 - art_sys_20: 5.66044411e-07 + art_sys_20: -5.66044411e-07 art_sys_21: -7.19562227e-08 art_sys_22: 0.0 art_sys_23: 0.0 @@ -3435,26 +3435,26 @@ bins: sys_137: 1.02530483e+00 sys_138: -1.02530483e+00 luminosity_uncertainty: 5.22000000e+00 -- art_sys_1: -9.86610479e-03 +- art_sys_1: 9.86610479e-03 art_sys_2: -1.45568502e-02 art_sys_3: -5.91171276e-03 art_sys_4: 3.74820673e-03 art_sys_5: 9.11597314e-03 art_sys_6: 3.01618742e-04 - art_sys_7: 8.39904315e-03 - art_sys_8: -1.84897828e-02 + art_sys_7: -8.39904315e-03 + art_sys_8: 1.84897828e-02 art_sys_9: -1.17688968e-02 art_sys_10: -5.76594449e-02 - art_sys_11: 5.51521631e-02 - art_sys_12: -9.01414720e-01 - art_sys_13: -1.49158449e-03 + art_sys_11: -5.51521631e-02 + art_sys_12: 9.01414720e-01 + art_sys_13: 1.49158449e-03 art_sys_14: -9.46831670e-03 - art_sys_15: -9.07193600e-04 + art_sys_15: 9.07193600e-04 art_sys_16: 2.68164606e-04 art_sys_17: -8.18022041e-05 art_sys_18: 1.42749990e-06 art_sys_19: -1.09162130e-05 - art_sys_20: 2.82462222e-06 + art_sys_20: -2.82462222e-06 art_sys_21: 1.57577390e-07 art_sys_22: 0.0 art_sys_23: 0.0 @@ -3664,26 +3664,26 @@ bins: sys_137: 4.94974747e-01 sys_138: -4.94974747e-01 luminosity_uncertainty: 2.52000000e+00 -- art_sys_1: 5.63127896e-03 +- art_sys_1: -5.63127896e-03 art_sys_2: 2.48544381e-04 art_sys_3: -2.38378613e-04 art_sys_4: -6.78572413e-03 art_sys_5: -4.23603003e-03 art_sys_6: 6.79657670e-03 - art_sys_7: 2.51744701e-03 - art_sys_8: 7.47364840e-03 + art_sys_7: -2.51744701e-03 + art_sys_8: -7.47364840e-03 art_sys_9: 6.70918896e-03 art_sys_10: -8.14696942e-03 - art_sys_11: 4.51204560e-02 - art_sys_12: -2.01708171e-03 - art_sys_13: 5.51864445e-01 + art_sys_11: -4.51204560e-02 + art_sys_12: 2.01708171e-03 + art_sys_13: -5.51864445e-01 art_sys_14: 7.66459020e-03 - art_sys_15: -5.59610386e-03 + art_sys_15: 5.59610386e-03 art_sys_16: -1.68390971e-04 art_sys_17: 7.66965461e-05 art_sys_18: -1.42664030e-04 art_sys_19: 3.06825436e-05 - art_sys_20: -3.72320589e-06 + art_sys_20: 3.72320589e-06 art_sys_21: -2.88138736e-07 art_sys_22: 0.0 art_sys_23: 0.0 @@ -3893,26 +3893,26 @@ bins: sys_137: 2.31931024e-01 sys_138: -2.31931024e-01 luminosity_uncertainty: 1.1808 -- art_sys_1: 3.67271922e-04 +- art_sys_1: -3.67271922e-04 art_sys_2: -2.92790764e-03 art_sys_3: -7.83460395e-03 art_sys_4: 2.97479134e-03 art_sys_5: -1.19880779e-02 art_sys_6: 9.32768772e-04 - art_sys_7: 2.18413077e-03 - art_sys_8: 4.17107831e-03 + art_sys_7: -2.18413077e-03 + art_sys_8: -4.17107831e-03 art_sys_9: 3.77323538e-03 art_sys_10: -4.91183870e-03 - art_sys_11: 5.91482697e-03 - art_sys_12: 2.38533248e-02 - art_sys_13: 1.30018955e-02 + art_sys_11: -5.91482697e-03 + art_sys_12: -2.38533248e-02 + art_sys_13: -1.30018955e-02 art_sys_14: -3.52977558e-01 - art_sys_15: 1.78379506e-02 + art_sys_15: -1.78379506e-02 art_sys_16: 5.61951146e-03 art_sys_17: 3.75233618e-05 art_sys_18: 1.44107323e-05 art_sys_19: 1.42116169e-05 - art_sys_20: 2.92026217e-05 + art_sys_20: -2.92026217e-05 art_sys_21: 3.58813381e-07 art_sys_22: 0.0 art_sys_23: 0.0 @@ -4122,26 +4122,26 @@ bins: sys_137: 1.12783532e-01 sys_138: -1.12783532e-01 luminosity_uncertainty: 0.5742 -- art_sys_1: -1.59903365e-03 +- art_sys_1: 1.59903365e-03 art_sys_2: -4.88162348e-04 art_sys_3: 5.07425953e-03 art_sys_4: -1.14427437e-03 art_sys_5: 6.98922566e-04 art_sys_6: 2.22478502e-03 - art_sys_7: -4.42147469e-03 - art_sys_8: 3.66366543e-03 + art_sys_7: 4.42147469e-03 + art_sys_8: -3.66366543e-03 art_sys_9: -1.42404657e-03 art_sys_10: 3.11874450e-03 - art_sys_11: 2.67881701e-03 - art_sys_12: 5.53810261e-03 - art_sys_13: -1.28019058e-02 + art_sys_11: -2.67881701e-03 + art_sys_12: -5.53810261e-03 + art_sys_13: 1.28019058e-02 art_sys_14: -2.96640044e-02 - art_sys_15: -2.21406648e-01 + art_sys_15: 2.21406648e-01 art_sys_16: -1.41042611e-02 art_sys_17: 4.29514136e-03 art_sys_18: 1.08130828e-04 art_sys_19: -1.02810457e-05 - art_sys_20: -1.30791015e-05 + art_sys_20: 1.30791015e-05 art_sys_21: -5.15500715e-07 art_sys_22: 0.0 art_sys_23: 0.0 @@ -4351,26 +4351,26 @@ bins: sys_137: 5.26794552e-02 sys_138: -5.26794552e-02 luminosity_uncertainty: 2.68200000e-01 -- art_sys_1: -1.86630567e-03 +- art_sys_1: 1.86630567e-03 art_sys_2: 3.83806142e-04 art_sys_3: 2.00964972e-03 art_sys_4: 3.62178686e-04 art_sys_5: -3.01797270e-04 art_sys_6: -1.24848365e-03 - art_sys_7: 6.64336826e-04 - art_sys_8: -5.03706220e-04 + art_sys_7: -6.64336826e-04 + art_sys_8: 5.03706220e-04 art_sys_9: -7.27098351e-04 art_sys_10: 1.98502550e-04 - art_sys_11: 7.13523732e-04 - art_sys_12: 1.40810854e-03 - art_sys_13: -1.19428573e-03 + art_sys_11: -7.13523732e-04 + art_sys_12: -1.40810854e-03 + art_sys_13: 1.19428573e-03 art_sys_14: 1.08710787e-02 - art_sys_15: -2.35294277e-02 + art_sys_15: 2.35294277e-02 art_sys_16: 1.41191140e-01 art_sys_17: -8.59593556e-03 art_sys_18: -2.16721566e-03 art_sys_19: 1.67789486e-04 - art_sys_20: 3.31225966e-05 + art_sys_20: -3.31225966e-05 art_sys_21: 4.93166581e-07 art_sys_22: 0.0 art_sys_23: 0.0 @@ -4580,26 +4580,26 @@ bins: sys_137: 2.49255140e-02 sys_138: -2.49255140e-02 luminosity_uncertainty: 0.1269 -- art_sys_1: -9.45384979e-04 +- art_sys_1: 9.45384979e-04 art_sys_2: -8.70290331e-04 art_sys_3: -8.24770599e-04 art_sys_4: -1.44122756e-04 art_sys_5: 6.31617950e-05 art_sys_6: -7.87719135e-04 - art_sys_7: -5.00670262e-04 - art_sys_8: 2.95521635e-04 + art_sys_7: 5.00670262e-04 + art_sys_8: -2.95521635e-04 art_sys_9: -7.50044230e-04 art_sys_10: 2.03205224e-04 - art_sys_11: 1.17004163e-04 - art_sys_12: -8.68435111e-04 - art_sys_13: 1.35573286e-04 + art_sys_11: -1.17004163e-04 + art_sys_12: 8.68435111e-04 + art_sys_13: -1.35573286e-04 art_sys_14: 2.42616255e-03 - art_sys_15: 7.63035902e-03 + art_sys_15: -7.63035902e-03 art_sys_16: 1.34883722e-02 art_sys_17: 9.68893641e-02 art_sys_18: 4.47014928e-03 art_sys_19: -1.31066873e-03 - art_sys_20: -3.76798274e-05 + art_sys_20: 3.76798274e-05 art_sys_21: 1.30240207e-06 art_sys_22: 0.0 art_sys_23: 0.0 @@ -4809,26 +4809,26 @@ bins: sys_137: 1.14197745e-02 sys_138: -1.14197745e-02 luminosity_uncertainty: 5.81400000e-02 -- art_sys_1: 3.56896050e-04 +- art_sys_1: -3.56896050e-04 art_sys_2: 3.63503491e-04 art_sys_3: -3.17847991e-04 art_sys_4: 2.61995734e-04 art_sys_5: 1.06431135e-04 art_sys_6: 1.81061970e-04 - art_sys_7: -3.27832275e-04 - art_sys_8: 4.77320533e-04 + art_sys_7: 3.27832275e-04 + art_sys_8: -4.77320533e-04 art_sys_9: -3.31561633e-04 art_sys_10: 2.43172450e-04 - art_sys_11: -5.26275394e-04 - art_sys_12: -1.58830117e-04 - art_sys_13: -1.33750885e-03 + art_sys_11: 5.26275394e-04 + art_sys_12: 1.58830117e-04 + art_sys_13: 1.33750885e-03 art_sys_14: -3.76527065e-04 - art_sys_15: 1.08396822e-03 + art_sys_15: -1.08396822e-03 art_sys_16: -4.17900353e-03 art_sys_17: 7.95431387e-03 art_sys_18: -5.85661451e-02 art_sys_19: 3.70234911e-03 - art_sys_20: -1.08560343e-03 + art_sys_20: 1.08560343e-03 art_sys_21: -7.43505189e-07 art_sys_22: 0.0 art_sys_23: 0.0 @@ -5038,26 +5038,26 @@ bins: sys_137: 5.09116882e-03 sys_138: -5.09116882e-03 luminosity_uncertainty: 2.59200000e-02 -- art_sys_1: -2.86758898e-04 +- art_sys_1: 2.86758898e-04 art_sys_2: 2.33519970e-04 art_sys_3: 1.04214721e-04 art_sys_4: 1.68795778e-04 art_sys_5: 2.85234691e-04 art_sys_6: -1.37763681e-04 - art_sys_7: -4.72921381e-04 - art_sys_8: -2.84638522e-04 + art_sys_7: 4.72921381e-04 + art_sys_8: 2.84638522e-04 art_sys_9: -5.97962755e-04 art_sys_10: 1.16620506e-04 - art_sys_11: -4.51197945e-04 - art_sys_12: 2.81990902e-04 - art_sys_13: 3.12337233e-04 + art_sys_11: 4.51197945e-04 + art_sys_12: -2.81990902e-04 + art_sys_13: -3.12337233e-04 art_sys_14: -1.27655834e-04 - art_sys_15: -2.02533088e-04 + art_sys_15: 2.02533088e-04 art_sys_16: -2.93015810e-04 art_sys_17: -2.47588974e-03 art_sys_18: -6.13069375e-03 art_sys_19: -3.79796250e-02 - art_sys_20: 3.51514731e-03 + art_sys_20: -3.51514731e-03 art_sys_21: 1.64994813e-05 art_sys_22: 0.0 art_sys_23: 0.0 @@ -5267,26 +5267,26 @@ bins: sys_137: 2.40769859e-03 sys_138: -2.40769859e-03 luminosity_uncertainty: 1.22580000e-02 -- art_sys_1: 9.89119291e-05 +- art_sys_1: -9.89119291e-05 art_sys_2: -4.96248037e-05 art_sys_3: -4.96220320e-04 art_sys_4: -2.07463405e-04 art_sys_5: 8.05834636e-05 art_sys_6: -4.58438066e-04 - art_sys_7: 2.50109052e-04 - art_sys_8: -2.18443117e-04 + art_sys_7: -2.50109052e-04 + art_sys_8: 2.18443117e-04 art_sys_9: -2.59185077e-04 art_sys_10: -7.29630859e-05 - art_sys_11: -7.31535374e-05 - art_sys_12: -2.83446159e-05 - art_sys_13: 4.10025772e-05 + art_sys_11: 7.31535374e-05 + art_sys_12: 2.83446159e-05 + art_sys_13: -4.10025772e-05 art_sys_14: -4.02513392e-04 - art_sys_15: 2.00390623e-05 + art_sys_15: -2.00390623e-05 art_sys_16: 3.31415661e-04 art_sys_17: -8.80102295e-04 art_sys_18: 1.72450427e-03 art_sys_19: -5.67477883e-03 - art_sys_20: -2.42294647e-02 + art_sys_20: 2.42294647e-02 art_sys_21: -1.96414899e-05 art_sys_22: 0.0 art_sys_23: 0.0 @@ -5496,26 +5496,26 @@ bins: sys_137: 9.86413960e-04 sys_138: -9.86413960e-04 luminosity_uncertainty: 5.02200000e-03 -- art_sys_1: -3.51192820e-05 +- art_sys_1: 3.51192820e-05 art_sys_2: 4.91032841e-05 art_sys_3: -1.55057942e-05 art_sys_4: -1.49096125e-05 art_sys_5: 2.26975854e-05 art_sys_6: 1.50539349e-05 - art_sys_7: -7.50201119e-07 - art_sys_8: -5.73578075e-06 + art_sys_7: 7.50201119e-07 + art_sys_8: 5.73578075e-06 art_sys_9: -1.61928066e-05 art_sys_10: -2.03052775e-05 - art_sys_11: -3.51266809e-05 - art_sys_12: 4.16605593e-05 - art_sys_13: 4.65157679e-05 + art_sys_11: 3.51266809e-05 + art_sys_12: -4.16605593e-05 + art_sys_13: -4.65157679e-05 art_sys_14: 3.24008057e-05 - art_sys_15: -3.73927805e-05 + art_sys_15: 3.73927805e-05 art_sys_16: -2.85151249e-05 art_sys_17: -2.91284953e-05 art_sys_18: 2.79996968e-05 art_sys_19: 1.67718168e-04 - art_sys_20: -1.72603256e-04 + art_sys_20: 1.72603256e-04 art_sys_21: 3.09782100e-03 art_sys_22: 0.0 art_sys_23: 0.0 @@ -5747,26 +5747,26 @@ bins: art_sys_20: 0.0 art_sys_21: 0.0 art_sys_22: 1.00990660e+04 - art_sys_23: 9.26298040e+01 + art_sys_23: -9.26298040e+01 art_sys_24: 1.68373855e+01 - art_sys_25: -1.32147422e+00 - art_sys_26: 2.91699581e-02 + art_sys_25: 1.32147422e+00 + art_sys_26: -2.91699581e-02 art_sys_27: 2.09102772e-02 art_sys_28: -2.49685756e-03 art_sys_29: 3.45364601e-05 - art_sys_30: 1.84619899e-05 + art_sys_30: -1.84619899e-05 art_sys_31: -2.14903160e-05 - art_sys_32: -3.25400048e-06 + art_sys_32: 3.25400048e-06 art_sys_33: 3.78958112e-07 - art_sys_34: 1.90510808e-07 - art_sys_35: -6.75521200e-08 - art_sys_36: 7.32637398e-08 - art_sys_37: 5.94682736e-09 - art_sys_38: 1.91383404e-09 - art_sys_39: 1.03964175e-09 - art_sys_40: 1.08906283e-09 - art_sys_41: -2.89575025e-10 - art_sys_42: 6.90149159e-12 + art_sys_34: -1.90510808e-07 + art_sys_35: -6.90149159e-12 + art_sys_36: 6.75521200e-08 + art_sys_37: 7.32637398e-08 + art_sys_38: 5.94682736e-09 + art_sys_39: 1.91383404e-09 + art_sys_40: 1.03964175e-09 + art_sys_41: -1.08906283e-09 + art_sys_42: -2.89575025e-10 art_sys_43: 0.0 art_sys_44: 0.0 art_sys_45: 0.0 @@ -5976,26 +5976,26 @@ bins: art_sys_20: 0.0 art_sys_21: 0.0 art_sys_22: -2.58304026e+02 - art_sys_23: 3.65139021e+03 + art_sys_23: -3.65139021e+03 art_sys_24: 2.31061640e+01 - art_sys_25: -9.70689288e+00 - art_sys_26: -6.80608476e-01 + art_sys_25: 9.70689288e+00 + art_sys_26: 6.80608476e-01 art_sys_27: -7.02090387e-03 art_sys_28: 1.04366041e-02 art_sys_29: -7.44437571e-04 - art_sys_30: 9.39701438e-05 + art_sys_30: -9.39701438e-05 art_sys_31: 1.42058685e-05 - art_sys_32: -1.02961282e-05 + art_sys_32: 1.02961282e-05 art_sys_33: 3.49804795e-07 - art_sys_34: -2.15460810e-07 - art_sys_35: -9.04430956e-08 - art_sys_36: -1.30477283e-07 - art_sys_37: 4.14502348e-09 - art_sys_38: 4.93289716e-09 - art_sys_39: 4.01447858e-09 - art_sys_40: 1.33468720e-09 - art_sys_41: 6.90948811e-10 - art_sys_42: -2.58828392e-12 + art_sys_34: 2.15460810e-07 + art_sys_35: 2.58828392e-12 + art_sys_36: 9.04430956e-08 + art_sys_37: -1.30477283e-07 + art_sys_38: 4.14502348e-09 + art_sys_39: 4.93289716e-09 + art_sys_40: 4.01447858e-09 + art_sys_41: -1.33468720e-09 + art_sys_42: 6.90948811e-10 art_sys_43: 0.0 art_sys_44: 0.0 art_sys_45: 0.0 @@ -6205,26 +6205,26 @@ bins: art_sys_20: 0.0 art_sys_21: 0.0 art_sys_22: -1.13745686e+02 - art_sys_23: -6.10675898e+01 + art_sys_23: 6.10675898e+01 art_sys_24: 1.44672160e+03 - art_sys_25: -1.74066184e+01 - art_sys_26: -5.11740677e+00 + art_sys_25: 1.74066184e+01 + art_sys_26: 5.11740677e+00 art_sys_27: 3.25984936e-01 art_sys_28: -5.23491103e-02 art_sys_29: 9.07658039e-04 - art_sys_30: 1.13554253e-04 + art_sys_30: -1.13554253e-04 art_sys_31: -2.15376483e-04 - art_sys_32: 6.17320859e-05 + art_sys_32: -6.17320859e-05 art_sys_33: -1.46427221e-05 - art_sys_34: -2.89415554e-07 - art_sys_35: -1.04963353e-07 - art_sys_36: 8.19215976e-07 - art_sys_37: -6.30845370e-08 - art_sys_38: -2.84417240e-09 - art_sys_39: -9.13305396e-10 - art_sys_40: -5.54928127e-09 - art_sys_41: -1.34844779e-09 - art_sys_42: -1.28800958e-11 + art_sys_34: 2.89415554e-07 + art_sys_35: 1.28800958e-11 + art_sys_36: 1.04963353e-07 + art_sys_37: 8.19215976e-07 + art_sys_38: -6.30845370e-08 + art_sys_39: -2.84417240e-09 + art_sys_40: -9.13305396e-10 + art_sys_41: 5.54928127e-09 + art_sys_42: -1.34844779e-09 art_sys_43: 0.0 art_sys_44: 0.0 art_sys_45: 0.0 @@ -6434,26 +6434,26 @@ bins: art_sys_20: 0.0 art_sys_21: 0.0 art_sys_22: -1.39624776e+01 - art_sys_23: -5.52489968e+01 + art_sys_23: 5.52489968e+01 art_sys_24: -4.17074828e+01 - art_sys_25: -6.26769059e+02 - art_sys_26: -1.29573429e+01 + art_sys_25: 6.26769059e+02 + art_sys_26: 1.29573429e+01 art_sys_27: 2.39437533e+00 art_sys_28: -6.13805659e-02 art_sys_29: 1.12177924e-02 - art_sys_30: 2.59363742e-03 + art_sys_30: -2.59363742e-03 art_sys_31: -9.39279509e-04 - art_sys_32: 1.44880004e-04 + art_sys_32: -1.44880004e-04 art_sys_33: 2.34958238e-05 - art_sys_34: -9.12682930e-06 - art_sys_35: 2.87315519e-06 - art_sys_36: -1.12036980e-07 - art_sys_37: -2.13772792e-07 - art_sys_38: -7.60620444e-08 - art_sys_39: 1.02583970e-09 - art_sys_40: -1.58156715e-09 - art_sys_41: -1.11134246e-08 - art_sys_42: -6.53689079e-11 + art_sys_34: 9.12682930e-06 + art_sys_35: 6.53689079e-11 + art_sys_36: -2.87315519e-06 + art_sys_37: -1.12036980e-07 + art_sys_38: -2.13772792e-07 + art_sys_39: -7.60620444e-08 + art_sys_40: 1.02583970e-09 + art_sys_41: 1.58156715e-09 + art_sys_42: -1.11134246e-08 art_sys_43: 0.0 art_sys_44: 0.0 art_sys_45: 0.0 @@ -6663,26 +6663,26 @@ bins: art_sys_20: 0.0 art_sys_21: 0.0 art_sys_22: 4.22899608e+00 - art_sys_23: -4.97759534e+00 + art_sys_23: 4.97759534e+00 art_sys_24: -2.38505353e+01 - art_sys_25: 2.86626154e+01 - art_sys_26: -2.89238554e+02 + art_sys_25: -2.86626154e+01 + art_sys_26: 2.89238554e+02 art_sys_27: 2.63445182e+00 art_sys_28: -1.03045259e+00 art_sys_29: 4.83645775e-02 - art_sys_30: 1.16659734e-02 + art_sys_30: -1.16659734e-02 art_sys_31: -6.36159664e-04 - art_sys_32: 2.37469071e-04 + art_sys_32: -2.37469071e-04 art_sys_33: -4.59008783e-05 - art_sys_34: 7.38957035e-06 - art_sys_35: -1.58041072e-06 - art_sys_36: -9.96614505e-07 - art_sys_37: -1.62016668e-06 - art_sys_38: 9.45842804e-08 - art_sys_39: -3.08106821e-08 - art_sys_40: -2.71680892e-09 - art_sys_41: -4.95602545e-09 - art_sys_42: 2.12822070e-10 + art_sys_34: -7.38957035e-06 + art_sys_35: -2.12822070e-10 + art_sys_36: 1.58041072e-06 + art_sys_37: -9.96614505e-07 + art_sys_38: -1.62016668e-06 + art_sys_39: 9.45842804e-08 + art_sys_40: -3.08106821e-08 + art_sys_41: 2.71680892e-09 + art_sys_42: -4.95602545e-09 art_sys_43: 0.0 art_sys_44: 0.0 art_sys_45: 0.0 @@ -6892,26 +6892,26 @@ bins: art_sys_20: 0.0 art_sys_21: 0.0 art_sys_22: -1.23652955e+00 - art_sys_23: 1.53205129e+00 + art_sys_23: -1.53205129e+00 art_sys_24: -2.48576786e+00 - art_sys_25: 1.14117652e+01 - art_sys_26: 6.48354595e+00 + art_sys_25: -1.14117652e+01 + art_sys_26: -6.48354595e+00 art_sys_27: 1.25361233e+02 art_sys_28: -1.44792701e+00 art_sys_29: 3.80054092e-01 - art_sys_30: 1.71942618e-02 + art_sys_30: -1.71942618e-02 art_sys_31: -2.79005029e-03 - art_sys_32: 1.01608603e-03 + art_sys_32: -1.01608603e-03 art_sys_33: -1.01982594e-04 - art_sys_34: -3.32065169e-05 - art_sys_35: -4.78405689e-06 - art_sys_36: -9.41259663e-07 - art_sys_37: -2.94607804e-06 - art_sys_38: -1.56252706e-07 - art_sys_39: 1.94882985e-07 - art_sys_40: 1.36754544e-07 - art_sys_41: 3.91528408e-09 - art_sys_42: 4.67796909e-10 + art_sys_34: 3.32065169e-05 + art_sys_35: -4.67796909e-10 + art_sys_36: 4.78405689e-06 + art_sys_37: -9.41259663e-07 + art_sys_38: -2.94607804e-06 + art_sys_39: -1.56252706e-07 + art_sys_40: 1.94882985e-07 + art_sys_41: -1.36754544e-07 + art_sys_42: 3.91528408e-09 art_sys_43: 0.0 art_sys_44: 0.0 art_sys_45: 0.0 @@ -7121,26 +7121,26 @@ bins: art_sys_20: 0.0 art_sys_21: 0.0 art_sys_22: -4.22355459e-01 - art_sys_23: 8.46876719e-01 + art_sys_23: -8.46876719e-01 art_sys_24: -7.97461045e-01 - art_sys_25: -1.17547124e-01 - art_sys_26: 5.18134817e+00 + art_sys_25: 1.17547124e-01 + art_sys_26: -5.18134817e+00 art_sys_27: -3.32918160e+00 art_sys_28: -5.60384720e+01 art_sys_29: 4.01523101e-01 - art_sys_30: 2.30683314e-01 + art_sys_30: -2.30683314e-01 art_sys_31: -7.28439818e-03 - art_sys_32: 1.11017733e-03 + art_sys_32: -1.11017733e-03 art_sys_33: -2.00617662e-04 - art_sys_34: 1.25665158e-04 - art_sys_35: -2.77336736e-05 - art_sys_36: -6.23072218e-06 - art_sys_37: 4.56679298e-06 - art_sys_38: -9.64297853e-07 - art_sys_39: -2.23790103e-07 - art_sys_40: -3.10637309e-07 - art_sys_41: 7.24158239e-08 - art_sys_42: -2.20717904e-09 + art_sys_34: -1.25665158e-04 + art_sys_35: 2.20717904e-09 + art_sys_36: 2.77336736e-05 + art_sys_37: -6.23072218e-06 + art_sys_38: 4.56679298e-06 + art_sys_39: -9.64297853e-07 + art_sys_40: -2.23790103e-07 + art_sys_41: 3.10637309e-07 + art_sys_42: 7.24158239e-08 art_sys_43: 0.0 art_sys_44: 0.0 art_sys_45: 0.0 @@ -7350,26 +7350,26 @@ bins: art_sys_20: 0.0 art_sys_21: 0.0 art_sys_22: 5.82965172e-03 - art_sys_23: 1.16344122e-01 + art_sys_23: -1.16344122e-01 art_sys_24: 6.93014776e-02 - art_sys_25: 6.52324941e-02 - art_sys_26: 4.23154642e-01 + art_sys_25: -6.52324941e-02 + art_sys_26: -4.23154642e-01 art_sys_27: -2.01615206e+00 art_sys_28: 1.04757992e+00 art_sys_29: 2.30745202e+01 - art_sys_30: 4.39229675e-01 + art_sys_30: -4.39229675e-01 art_sys_31: -9.77952492e-02 - art_sys_32: 6.78121465e-03 + art_sys_32: -6.78121465e-03 art_sys_33: -1.60631357e-03 - art_sys_34: 1.04256662e-04 - art_sys_35: -1.51266971e-04 - art_sys_36: -1.42531411e-05 - art_sys_37: 8.28494075e-06 - art_sys_38: 3.06732482e-06 - art_sys_39: -1.49259153e-06 - art_sys_40: 5.99125235e-08 - art_sys_41: -7.91953270e-08 - art_sys_42: 3.40346514e-10 + art_sys_34: -1.04256662e-04 + art_sys_35: -3.40346514e-10 + art_sys_36: 1.51266971e-04 + art_sys_37: -1.42531411e-05 + art_sys_38: 8.28494075e-06 + art_sys_39: 3.06732482e-06 + art_sys_40: -1.49259153e-06 + art_sys_41: -5.99125235e-08 + art_sys_42: -7.91953270e-08 art_sys_43: 0.0 art_sys_44: 0.0 art_sys_45: 0.0 @@ -7579,26 +7579,26 @@ bins: art_sys_20: 0.0 art_sys_21: 0.0 art_sys_22: -5.37150165e-03 - art_sys_23: -3.56230445e-02 + art_sys_23: 3.56230445e-02 art_sys_24: 3.46221755e-02 - art_sys_25: 1.03983710e-01 - art_sys_26: 1.73891297e-01 + art_sys_25: -1.03983710e-01 + art_sys_26: -1.73891297e-01 art_sys_27: -5.06369185e-02 art_sys_28: 1.12923616e+00 art_sys_29: -9.42629549e-01 - art_sys_30: 1.10789527e+01 + art_sys_30: -1.10789527e+01 art_sys_31: -2.09584287e-01 - art_sys_32: 5.51389492e-02 + art_sys_32: -5.51389492e-02 art_sys_33: -1.97184331e-03 - art_sys_34: 1.86393536e-05 - art_sys_35: 2.42290281e-04 - art_sys_36: -6.95015185e-05 - art_sys_37: -1.85458063e-05 - art_sys_38: 7.58583947e-06 - art_sys_39: -1.66890514e-07 - art_sys_40: -1.42506911e-07 - art_sys_41: 3.54771850e-07 - art_sys_42: -9.65349257e-09 + art_sys_34: -1.86393536e-05 + art_sys_35: 9.65349257e-09 + art_sys_36: -2.42290281e-04 + art_sys_37: -6.95015185e-05 + art_sys_38: -1.85458063e-05 + art_sys_39: 7.58583947e-06 + art_sys_40: -1.66890514e-07 + art_sys_41: 1.42506911e-07 + art_sys_42: 3.54771850e-07 art_sys_43: 0.0 art_sys_44: 0.0 art_sys_45: 0.0 @@ -7808,26 +7808,26 @@ bins: art_sys_20: 0.0 art_sys_21: 0.0 art_sys_22: -3.48540058e-02 - art_sys_23: 2.20671127e-02 + art_sys_23: -2.20671127e-02 art_sys_24: -5.41995903e-02 - art_sys_25: 1.04787953e-01 - art_sys_26: 1.41029359e-02 + art_sys_25: -1.04787953e-01 + art_sys_26: -1.41029359e-02 art_sys_27: -2.72337984e-02 art_sys_28: 1.48874760e-02 art_sys_29: -4.17856240e-01 - art_sys_30: -4.91009114e-01 + art_sys_30: 4.91009114e-01 art_sys_31: -4.95403531e+00 - art_sys_32: 1.55479144e-01 + art_sys_32: -1.55479144e-01 art_sys_33: -2.96485780e-02 - art_sys_34: 2.34324854e-03 - art_sys_35: -1.55135891e-04 - art_sys_36: -8.68262610e-05 - art_sys_37: -4.95041606e-05 - art_sys_38: 4.59382385e-06 - art_sys_39: -5.83798876e-06 - art_sys_40: 7.84201589e-07 - art_sys_41: -5.73288382e-07 - art_sys_42: -1.76751750e-08 + art_sys_34: -2.34324854e-03 + art_sys_35: 1.76751750e-08 + art_sys_36: 1.55135891e-04 + art_sys_37: -8.68262610e-05 + art_sys_38: -4.95041606e-05 + art_sys_39: 4.59382385e-06 + art_sys_40: -5.83798876e-06 + art_sys_41: -7.84201589e-07 + art_sys_42: -5.73288382e-07 art_sys_43: 0.0 art_sys_44: 0.0 art_sys_45: 0.0 @@ -8037,26 +8037,26 @@ bins: art_sys_20: 0.0 art_sys_21: 0.0 art_sys_22: 1.81016211e-02 - art_sys_23: 1.81041225e-02 + art_sys_23: -1.81041225e-02 art_sys_24: -2.73720267e-02 - art_sys_25: 1.90837606e-02 - art_sys_26: 1.76601432e-02 + art_sys_25: -1.90837606e-02 + art_sys_26: -1.76601432e-02 art_sys_27: -4.10100786e-02 art_sys_28: -2.56387568e-03 art_sys_29: -1.68075428e-02 - art_sys_30: -2.11470708e-01 + art_sys_30: 2.11470708e-01 art_sys_31: 3.13302816e-01 - art_sys_32: 2.53953279e+00 + art_sys_32: -2.53953279e+00 art_sys_33: -6.08534883e-02 - art_sys_34: 1.17720970e-02 - art_sys_35: -1.13464211e-03 - art_sys_36: -2.50392673e-04 - art_sys_37: -5.90660513e-05 - art_sys_38: 3.31712314e-06 - art_sys_39: 4.13184789e-06 - art_sys_40: -1.27483416e-05 - art_sys_41: 5.16019090e-07 - art_sys_42: 3.00991255e-08 + art_sys_34: -1.17720970e-02 + art_sys_35: -3.00991255e-08 + art_sys_36: 1.13464211e-03 + art_sys_37: -2.50392673e-04 + art_sys_38: -5.90660513e-05 + art_sys_39: 3.31712314e-06 + art_sys_40: 4.13184789e-06 + art_sys_41: 1.27483416e-05 + art_sys_42: 5.16019090e-07 art_sys_43: 0.0 art_sys_44: 0.0 art_sys_45: 0.0 @@ -8266,26 +8266,26 @@ bins: art_sys_20: 0.0 art_sys_21: 0.0 art_sys_22: 3.77153350e-03 - art_sys_23: -8.68512677e-04 + art_sys_23: 8.68512677e-04 art_sys_24: -1.37465119e-02 - art_sys_25: -1.72832139e-02 - art_sys_26: 7.00044639e-03 + art_sys_25: 1.72832139e-02 + art_sys_26: -7.00044639e-03 art_sys_27: -4.10504956e-03 art_sys_28: 6.11939284e-03 art_sys_29: -1.74923980e-02 - art_sys_30: 4.15894889e-03 + art_sys_30: -4.15894889e-03 art_sys_31: 1.01028631e-01 - art_sys_32: -1.26479314e-01 + art_sys_32: 1.26479314e-01 art_sys_33: -1.27371770e+00 - art_sys_34: 1.98615894e-02 - art_sys_35: -1.07370232e-02 - art_sys_36: 5.97384564e-04 - art_sys_37: -2.60878420e-04 - art_sys_38: -1.05940737e-05 - art_sys_39: -1.17119672e-05 - art_sys_40: -3.66623807e-06 - art_sys_41: -1.83659760e-06 - art_sys_42: 9.80690203e-08 + art_sys_34: -1.98615894e-02 + art_sys_35: -9.80690203e-08 + art_sys_36: 1.07370232e-02 + art_sys_37: 5.97384564e-04 + art_sys_38: -2.60878420e-04 + art_sys_39: -1.05940737e-05 + art_sys_40: -1.17119672e-05 + art_sys_41: 3.66623807e-06 + art_sys_42: -1.83659760e-06 art_sys_43: 0.0 art_sys_44: 0.0 art_sys_45: 0.0 @@ -8495,26 +8495,26 @@ bins: art_sys_20: 0.0 art_sys_21: 0.0 art_sys_22: -3.69707516e-03 - art_sys_23: 4.18314695e-05 + art_sys_23: -4.18314695e-05 art_sys_24: 1.27756784e-03 - art_sys_25: -8.64304389e-03 - art_sys_26: 1.73308281e-03 + art_sys_25: 8.64304389e-03 + art_sys_26: -1.73308281e-03 art_sys_27: 8.30590092e-03 art_sys_28: 1.02347699e-02 art_sys_29: -1.25070612e-03 - art_sys_30: 5.02844014e-03 + art_sys_30: -5.02844014e-03 art_sys_31: 9.02975890e-03 - art_sys_32: -4.23111013e-02 + art_sys_32: 4.23111013e-02 art_sys_33: 3.96382176e-02 - art_sys_34: 6.52828491e-01 - art_sys_35: 4.46526655e-03 - art_sys_36: 7.64390192e-03 - art_sys_37: -1.11375996e-04 - art_sys_38: 1.64301837e-04 - art_sys_39: 6.38669270e-05 - art_sys_40: -8.99617612e-06 - art_sys_41: 6.22023231e-07 - art_sys_42: -1.46032664e-07 + art_sys_34: -6.52828491e-01 + art_sys_35: 1.46032664e-07 + art_sys_36: -4.46526655e-03 + art_sys_37: 7.64390192e-03 + art_sys_38: -1.11375996e-04 + art_sys_39: 1.64301837e-04 + art_sys_40: 6.38669270e-05 + art_sys_41: 8.99617612e-06 + art_sys_42: 6.22023231e-07 art_sys_43: 0.0 art_sys_44: 0.0 art_sys_45: 0.0 @@ -8724,26 +8724,26 @@ bins: art_sys_20: 0.0 art_sys_21: 0.0 art_sys_22: -1.85877222e-03 - art_sys_23: -1.46128210e-03 + art_sys_23: 1.46128210e-03 art_sys_24: 7.17719645e-05 - art_sys_25: -4.55268371e-03 - art_sys_26: 4.72667099e-04 + art_sys_25: 4.55268371e-03 + art_sys_26: -4.72667099e-04 art_sys_27: -2.96729467e-04 art_sys_28: 4.24007919e-03 art_sys_29: -8.89037120e-03 - art_sys_30: 7.38496352e-03 + art_sys_30: -7.38496352e-03 art_sys_31: -1.62832626e-03 - art_sys_32: -4.56089216e-03 + art_sys_32: 4.56089216e-03 art_sys_33: 3.58867605e-02 - art_sys_34: 7.35385680e-03 - art_sys_35: -3.87824729e-01 - art_sys_36: -4.79401607e-03 - art_sys_37: -5.04022928e-03 - art_sys_38: -3.67723413e-05 - art_sys_39: 1.04345188e-04 - art_sys_40: 1.71991386e-05 - art_sys_41: -4.37841240e-06 - art_sys_42: -1.32867506e-07 + art_sys_34: -7.35385680e-03 + art_sys_35: 1.32867506e-07 + art_sys_36: 3.87824729e-01 + art_sys_37: -4.79401607e-03 + art_sys_38: -5.04022928e-03 + art_sys_39: -3.67723413e-05 + art_sys_40: 1.04345188e-04 + art_sys_41: -1.71991386e-05 + art_sys_42: -4.37841240e-06 art_sys_43: 0.0 art_sys_44: 0.0 art_sys_45: 0.0 @@ -8953,26 +8953,26 @@ bins: art_sys_20: 0.0 art_sys_21: 0.0 art_sys_22: -2.89265502e-03 - art_sys_23: 2.18152173e-03 + art_sys_23: -2.18152173e-03 art_sys_24: -5.26626015e-03 - art_sys_25: 1.97173830e-04 - art_sys_26: -1.23441144e-03 + art_sys_25: -1.97173830e-04 + art_sys_26: 1.23441144e-03 art_sys_27: 1.61777400e-04 art_sys_28: -1.26156351e-03 art_sys_29: 7.20949083e-04 - art_sys_30: 2.97451271e-03 + art_sys_30: -2.97451271e-03 art_sys_31: -2.26006331e-03 - art_sys_32: 4.47487527e-03 + art_sys_32: -4.47487527e-03 art_sys_33: 2.55428009e-03 - art_sys_34: -2.13235462e-02 - art_sys_35: -9.03072076e-03 - art_sys_36: 2.31217805e-01 - art_sys_37: 1.03912464e-02 - art_sys_38: 3.00561414e-03 - art_sys_39: -5.26119197e-05 - art_sys_40: 1.33008555e-05 - art_sys_41: 7.53563100e-06 - art_sys_42: 8.93373400e-08 + art_sys_34: 2.13235462e-02 + art_sys_35: -8.93373400e-08 + art_sys_36: 9.03072076e-03 + art_sys_37: 2.31217805e-01 + art_sys_38: 1.03912464e-02 + art_sys_39: 3.00561414e-03 + art_sys_40: -5.26119197e-05 + art_sys_41: -1.33008555e-05 + art_sys_42: 7.53563100e-06 art_sys_43: 0.0 art_sys_44: 0.0 art_sys_45: 0.0 @@ -9182,26 +9182,26 @@ bins: art_sys_20: 0.0 art_sys_21: 0.0 art_sys_22: 2.93805269e-04 - art_sys_23: 4.70256924e-04 + art_sys_23: -4.70256924e-04 art_sys_24: -5.95141835e-04 - art_sys_25: 5.55918199e-04 - art_sys_26: 3.01154717e-03 + art_sys_25: -5.55918199e-04 + art_sys_26: -3.01154717e-03 art_sys_27: -2.68235196e-03 art_sys_28: -1.94939435e-03 art_sys_29: 1.98932700e-03 - art_sys_30: -1.06813239e-03 + art_sys_30: 1.06813239e-03 art_sys_31: 1.20136426e-03 - art_sys_32: -3.34349253e-04 + art_sys_32: 3.34349253e-04 art_sys_33: 1.19741859e-03 - art_sys_34: -2.23616367e-03 - art_sys_35: 1.24109089e-02 - art_sys_36: 1.67271422e-02 - art_sys_37: -1.49266938e-01 - art_sys_38: -6.94854252e-03 - art_sys_39: 1.77282868e-03 - art_sys_40: -7.09836104e-05 - art_sys_41: -8.02632490e-06 - art_sys_42: -6.98743401e-08 + art_sys_34: 2.23616367e-03 + art_sys_35: 6.98743401e-08 + art_sys_36: -1.24109089e-02 + art_sys_37: 1.67271422e-02 + art_sys_38: -1.49266938e-01 + art_sys_39: -6.94854252e-03 + art_sys_40: 1.77282868e-03 + art_sys_41: 7.09836104e-05 + art_sys_42: -8.02632490e-06 art_sys_43: 0.0 art_sys_44: 0.0 art_sys_45: 0.0 @@ -9411,26 +9411,26 @@ bins: art_sys_20: 0.0 art_sys_21: 0.0 art_sys_22: -9.19254491e-05 - art_sys_23: -2.46085850e-04 + art_sys_23: 2.46085850e-04 art_sys_24: 1.47153800e-04 - art_sys_25: -4.97699113e-04 - art_sys_26: 6.05059961e-04 + art_sys_25: 4.97699113e-04 + art_sys_26: -6.05059961e-04 art_sys_27: 4.76071346e-05 art_sys_28: -8.35818202e-04 art_sys_29: -5.85732352e-04 - art_sys_30: -1.07114356e-03 + art_sys_30: 1.07114356e-03 art_sys_31: 4.72634953e-04 - art_sys_32: -1.70478205e-04 + art_sys_32: 1.70478205e-04 art_sys_33: -1.58783756e-04 - art_sys_34: -5.56762044e-04 - art_sys_35: 1.03729399e-03 - art_sys_36: -6.22142282e-03 - art_sys_37: -1.19546130e-02 - art_sys_38: 9.20410276e-02 - art_sys_39: -4.55292657e-03 - art_sys_40: 1.24064517e-03 - art_sys_41: 5.13397924e-05 - art_sys_42: 3.23207248e-06 + art_sys_34: 5.56762044e-04 + art_sys_35: -3.23207248e-06 + art_sys_36: -1.03729399e-03 + art_sys_37: -6.22142282e-03 + art_sys_38: -1.19546130e-02 + art_sys_39: 9.20410276e-02 + art_sys_40: -4.55292657e-03 + art_sys_41: -1.24064517e-03 + art_sys_42: 5.13397924e-05 art_sys_43: 0.0 art_sys_44: 0.0 art_sys_45: 0.0 @@ -9640,26 +9640,26 @@ bins: art_sys_20: 0.0 art_sys_21: 0.0 art_sys_22: -1.60759722e-04 - art_sys_23: -2.88169245e-04 + art_sys_23: 2.88169245e-04 art_sys_24: 1.12439305e-05 - art_sys_25: -3.04501558e-05 - art_sys_26: -2.02223515e-04 + art_sys_25: 3.04501558e-05 + art_sys_26: 2.02223515e-04 art_sys_27: -3.83822047e-04 art_sys_28: -1.77777534e-04 art_sys_29: 4.94212210e-04 - art_sys_30: -5.72344974e-05 + art_sys_30: 5.72344974e-05 art_sys_31: -5.74295647e-04 - art_sys_32: -2.40080778e-04 + art_sys_32: 2.40080778e-04 art_sys_33: -4.24680898e-04 - art_sys_34: -8.03000491e-04 - art_sys_35: 3.98953252e-04 - art_sys_36: -8.70524132e-04 - art_sys_37: 3.92899790e-03 - art_sys_38: 8.40580936e-03 - art_sys_39: 5.29940271e-02 - art_sys_40: -3.54877870e-03 - art_sys_41: -4.87573291e-04 - art_sys_42: 2.24826071e-06 + art_sys_34: 8.03000491e-04 + art_sys_35: -2.24826071e-06 + art_sys_36: -3.98953252e-04 + art_sys_37: -8.70524132e-04 + art_sys_38: 3.92899790e-03 + art_sys_39: 8.40580936e-03 + art_sys_40: 5.29940271e-02 + art_sys_41: 3.54877870e-03 + art_sys_42: -4.87573291e-04 art_sys_43: 0.0 art_sys_44: 0.0 art_sys_45: 0.0 @@ -9869,26 +9869,26 @@ bins: art_sys_20: 0.0 art_sys_21: 0.0 art_sys_22: -3.15536915e-04 - art_sys_23: -1.86112779e-04 + art_sys_23: 1.86112779e-04 art_sys_24: 2.23346462e-04 - art_sys_25: -9.03836592e-05 - art_sys_26: -4.22132630e-05 + art_sys_25: 9.03836592e-05 + art_sys_26: 4.22132630e-05 art_sys_27: -5.84248602e-04 art_sys_28: -4.68401462e-04 art_sys_29: 4.97849826e-05 - art_sys_30: -1.26362761e-05 + art_sys_30: 1.26362761e-05 art_sys_31: 1.53132511e-04 - art_sys_32: 8.81725415e-04 + art_sys_32: -8.81725415e-04 art_sys_33: -2.12504798e-04 - art_sys_34: 1.11093697e-04 - art_sys_35: 2.18080279e-04 - art_sys_36: 7.49741760e-05 - art_sys_37: 5.30286564e-04 - art_sys_38: -2.45885211e-03 - art_sys_39: 5.73510219e-03 - art_sys_40: 3.42996232e-02 - art_sys_41: 1.62729382e-03 - art_sys_42: 1.47087510e-05 + art_sys_34: -1.11093697e-04 + art_sys_35: -1.47087510e-05 + art_sys_36: -2.18080279e-04 + art_sys_37: 7.49741760e-05 + art_sys_38: 5.30286564e-04 + art_sys_39: -2.45885211e-03 + art_sys_40: 5.73510219e-03 + art_sys_41: -3.42996232e-02 + art_sys_42: 1.62729382e-03 art_sys_43: 0.0 art_sys_44: 0.0 art_sys_45: 0.0 @@ -10098,26 +10098,26 @@ bins: art_sys_20: 0.0 art_sys_21: 0.0 art_sys_22: -1.79647444e-04 - art_sys_23: 1.69681409e-04 + art_sys_23: -1.69681409e-04 art_sys_24: -5.71602039e-05 - art_sys_25: 3.68633405e-04 - art_sys_26: 1.10705351e-04 + art_sys_25: -3.68633405e-04 + art_sys_26: -1.10705351e-04 art_sys_27: -2.06184352e-05 art_sys_28: -2.45025318e-04 art_sys_29: -1.10969370e-04 - art_sys_30: 2.20169510e-04 + art_sys_30: -2.20169510e-04 art_sys_31: 1.79880851e-04 - art_sys_32: 1.66574526e-04 + art_sys_32: -1.66574526e-04 art_sys_33: 1.12096302e-04 - art_sys_34: 4.04804083e-05 - art_sys_35: 9.65975426e-05 - art_sys_36: 1.01634815e-04 - art_sys_37: -2.01066406e-05 - art_sys_38: -1.79733766e-04 - art_sys_39: -9.15421466e-04 - art_sys_40: 3.14922015e-03 - art_sys_41: -1.82970994e-02 - art_sys_42: -1.26793578e-05 + art_sys_34: -4.04804083e-05 + art_sys_35: 1.26793578e-05 + art_sys_36: -9.65975426e-05 + art_sys_37: 1.01634815e-04 + art_sys_38: -2.01066406e-05 + art_sys_39: -1.79733766e-04 + art_sys_40: -9.15421466e-04 + art_sys_41: -3.14922015e-03 + art_sys_42: -1.82970994e-02 art_sys_43: 0.0 art_sys_44: 0.0 art_sys_45: 0.0 @@ -10327,26 +10327,26 @@ bins: art_sys_20: 0.0 art_sys_21: 0.0 art_sys_22: -2.28203542e-05 - art_sys_23: 3.79588934e-06 + art_sys_23: -3.79588934e-06 art_sys_24: 5.61178365e-06 - art_sys_25: -1.34669367e-05 - art_sys_26: 2.21024527e-05 + art_sys_25: 1.34669367e-05 + art_sys_26: -2.21024527e-05 art_sys_27: -1.71852232e-05 art_sys_28: -3.23528356e-05 art_sys_29: -7.51576067e-06 - art_sys_30: 3.51417643e-05 + art_sys_30: -3.51417643e-05 art_sys_31: -3.36439577e-05 - art_sys_32: -2.42753463e-05 + art_sys_32: 2.42753463e-05 art_sys_33: 4.45442875e-05 - art_sys_34: 3.06951183e-05 - art_sys_35: -1.69737744e-05 - art_sys_36: 9.96141761e-07 - art_sys_37: 3.03943537e-06 - art_sys_38: -8.84551020e-05 - art_sys_39: -6.25369407e-05 - art_sys_40: -1.43853536e-04 - art_sys_41: -7.96399460e-05 - art_sys_42: 3.20193887e-03 + art_sys_34: -3.06951183e-05 + art_sys_35: -3.20193887e-03 + art_sys_36: 1.69737744e-05 + art_sys_37: 9.96141761e-07 + art_sys_38: 3.03943537e-06 + art_sys_39: -8.84551020e-05 + art_sys_40: -6.25369407e-05 + art_sys_41: 1.43853536e-04 + art_sys_42: -7.96399460e-05 art_sys_43: 0.0 art_sys_44: 0.0 art_sys_45: 0.0 @@ -10584,16 +10584,16 @@ bins: art_sys_48: -2.23487286e-02 art_sys_49: -3.60848773e-04 art_sys_50: 6.21213775e-04 - art_sys_51: 9.52007037e-05 - art_sys_52: -3.75026894e-05 - art_sys_53: -6.17897095e-06 + art_sys_51: -9.52007037e-05 + art_sys_52: 3.75026894e-05 + art_sys_53: 6.17897095e-06 art_sys_54: 1.09362599e-06 art_sys_55: 7.33430682e-07 - art_sys_56: 7.34567167e-09 + art_sys_56: -7.34567167e-09 art_sys_57: -3.61209793e-08 art_sys_58: -3.29817357e-08 art_sys_59: 8.33069175e-09 - art_sys_60: 8.76485834e-11 + art_sys_60: -8.76485834e-11 art_sys_61: 3.81855777e-10 art_sys_62: 0.0 art_sys_63: 0.0 @@ -10813,16 +10813,16 @@ bins: art_sys_48: -4.22713500e-02 art_sys_49: 3.15270604e-03 art_sys_50: -1.21404034e-03 - art_sys_51: 1.49855462e-04 - art_sys_52: 9.06258801e-05 - art_sys_53: -3.89461332e-06 + art_sys_51: -1.49855462e-04 + art_sys_52: -9.06258801e-05 + art_sys_53: 3.89461332e-06 art_sys_54: 1.91543676e-06 art_sys_55: -1.05365902e-06 - art_sys_56: 3.37162322e-07 + art_sys_56: -3.37162322e-07 art_sys_57: -3.58179579e-08 art_sys_58: 2.42476016e-08 art_sys_59: -2.39989687e-08 - art_sys_60: -2.67708388e-11 + art_sys_60: 2.67708388e-11 art_sys_61: -2.09965775e-09 art_sys_62: 0.0 art_sys_63: 0.0 @@ -11042,16 +11042,16 @@ bins: art_sys_48: -8.50333455e-02 art_sys_49: 1.02489061e-03 art_sys_50: -3.10105237e-03 - art_sys_51: 3.91473778e-04 - art_sys_52: -8.69866557e-05 - art_sys_53: -5.55024174e-05 + art_sys_51: -3.91473778e-04 + art_sys_52: 8.69866557e-05 + art_sys_53: 5.55024174e-05 art_sys_54: -5.61323138e-06 art_sys_55: 1.28576822e-07 - art_sys_56: -1.85599336e-07 + art_sys_56: 1.85599336e-07 art_sys_57: 2.66378264e-07 art_sys_58: 1.45428562e-08 art_sys_59: -2.24939332e-10 - art_sys_60: -1.20617826e-11 + art_sys_60: 1.20617826e-11 art_sys_61: 1.73963394e-08 art_sys_62: 0.0 art_sys_63: 0.0 @@ -11271,16 +11271,16 @@ bins: art_sys_48: -1.58584938e+00 art_sys_49: 3.60811479e-02 art_sys_50: -1.92201199e-02 - art_sys_51: -4.84571565e-05 - art_sys_52: 1.62737675e-04 - art_sys_53: 8.08997589e-05 + art_sys_51: 4.84571565e-05 + art_sys_52: -1.62737675e-04 + art_sys_53: -8.08997589e-05 art_sys_54: 3.15411999e-06 art_sys_55: -2.69437490e-06 - art_sys_56: -2.77549746e-06 + art_sys_56: 2.77549746e-06 art_sys_57: -2.34617921e-08 art_sys_58: -1.06508888e-07 art_sys_59: -5.82292265e-09 - art_sys_60: 5.16173485e-11 + art_sys_60: -5.16173485e-11 art_sys_61: 5.11123106e-09 art_sys_62: 0.0 art_sys_63: 0.0 @@ -11500,16 +11500,16 @@ bins: art_sys_48: 2.76328213e+00 art_sys_49: -7.76356933e-01 art_sys_50: -4.30527930e-04 - art_sys_51: -1.02663986e-03 - art_sys_52: 5.32648281e-04 - art_sys_53: -1.77002357e-04 + art_sys_51: 1.02663986e-03 + art_sys_52: -5.32648281e-04 + art_sys_53: 1.77002357e-04 art_sys_54: -1.85461896e-06 art_sys_55: -4.25636772e-06 - art_sys_56: -1.43467859e-07 + art_sys_56: 1.43467859e-07 art_sys_57: -3.50941013e-07 art_sys_58: -2.40483565e-08 art_sys_59: 1.35872271e-07 - art_sys_60: 5.92681650e-10 + art_sys_60: -5.92681650e-10 art_sys_61: -4.03730569e-08 art_sys_62: 0.0 art_sys_63: 0.0 @@ -11729,16 +11729,16 @@ bins: art_sys_48: -5.95698306e+01 art_sys_49: 1.40905539e+00 art_sys_50: -2.77866576e-01 - art_sys_51: -7.92766258e-03 - art_sys_52: -3.66278323e-04 - art_sys_53: 4.72197729e-05 + art_sys_51: 7.92766258e-03 + art_sys_52: 3.66278323e-04 + art_sys_53: -4.72197729e-05 art_sys_54: 1.58434782e-05 art_sys_55: 9.04300392e-07 - art_sys_56: 2.37613082e-06 + art_sys_56: -2.37613082e-06 art_sys_57: -2.50846136e-06 art_sys_58: -1.80489595e-06 art_sys_59: 7.39519526e-08 - art_sys_60: 2.36230645e-10 + art_sys_60: -2.36230645e-10 art_sys_61: -9.63475484e-09 art_sys_62: 0.0 art_sys_63: 0.0 @@ -11958,16 +11958,16 @@ bins: art_sys_48: -2.82177164e+00 art_sys_49: -3.09001221e+01 art_sys_50: 3.48210070e-01 - art_sys_51: -1.03335483e-01 - art_sys_52: -8.58417823e-04 - art_sys_53: 6.75162723e-04 + art_sys_51: 1.03335483e-01 + art_sys_52: 8.58417823e-04 + art_sys_53: -6.75162723e-04 art_sys_54: 1.71980189e-04 art_sys_55: 3.06180889e-05 - art_sys_56: 9.20327718e-06 + art_sys_56: -9.20327718e-06 art_sys_57: 3.79205098e-07 art_sys_58: -1.91291931e-06 art_sys_59: -2.08081108e-07 - art_sys_60: -1.98790364e-09 + art_sys_60: 1.98790364e-09 art_sys_61: -1.11835987e-07 art_sys_62: 0.0 art_sys_63: 0.0 @@ -12187,16 +12187,16 @@ bins: art_sys_48: 1.25054374e+00 art_sys_49: -9.24209004e-01 art_sys_50: -1.23838037e+01 - art_sys_51: 2.50324942e-01 - art_sys_52: -5.57036350e-02 - art_sys_53: 1.81148878e-03 + art_sys_51: -2.50324942e-01 + art_sys_52: 5.57036350e-02 + art_sys_53: -1.81148878e-03 art_sys_54: 2.70935328e-04 art_sys_55: 2.94249444e-05 - art_sys_56: 2.68315412e-05 + art_sys_56: -2.68315412e-05 art_sys_57: -1.31564890e-05 art_sys_58: -6.34924848e-07 art_sys_59: -4.62932059e-07 - art_sys_60: 6.22427120e-10 + art_sys_60: -6.22427120e-10 art_sys_61: 2.69680101e-07 art_sys_62: 0.0 art_sys_63: 0.0 @@ -12416,16 +12416,16 @@ bins: art_sys_48: 1.94002811e-01 art_sys_49: 5.30793968e-01 art_sys_50: -5.72632250e-01 - art_sys_51: -5.54410107e+00 - art_sys_52: 1.02990569e-01 - art_sys_53: 2.83795870e-02 + art_sys_51: 5.54410107e+00 + art_sys_52: -1.02990569e-01 + art_sys_53: -2.83795870e-02 art_sys_54: 1.29793253e-03 art_sys_55: -3.07831532e-04 - art_sys_56: -9.66556595e-06 + art_sys_56: 9.66556595e-06 art_sys_57: 2.09787115e-05 art_sys_58: -6.81222007e-06 art_sys_59: -9.85758381e-07 - art_sys_60: -8.49427923e-09 + art_sys_60: 8.49427923e-09 art_sys_61: -2.84373043e-08 art_sys_62: 0.0 art_sys_63: 0.0 @@ -12645,16 +12645,16 @@ bins: art_sys_48: -8.32034240e-03 art_sys_49: 4.58442863e-02 art_sys_50: 2.18568410e-01 - art_sys_51: -2.09306604e-01 - art_sys_52: -2.86173114e+00 - art_sys_53: -5.55053002e-02 + art_sys_51: 2.09306604e-01 + art_sys_52: 2.86173114e+00 + art_sys_53: 5.55053002e-02 art_sys_54: 1.36256733e-02 art_sys_55: 5.16461752e-04 - art_sys_56: 2.13637863e-04 + art_sys_56: -2.13637863e-04 art_sys_57: 1.61167031e-05 art_sys_58: 1.25662139e-06 art_sys_59: 3.17236260e-06 - art_sys_60: 3.02582864e-08 + art_sys_60: -3.02582864e-08 art_sys_61: 7.82809980e-07 art_sys_62: 0.0 art_sys_63: 0.0 @@ -12874,16 +12874,16 @@ bins: art_sys_48: -2.41152715e-03 art_sys_49: 7.48560387e-03 art_sys_50: 4.05153204e-02 - art_sys_51: 1.16049619e-01 - art_sys_52: -1.32557395e-01 - art_sys_53: 1.24315602e+00 + art_sys_51: -1.16049619e-01 + art_sys_52: 1.32557395e-01 + art_sys_53: -1.24315602e+00 art_sys_54: -2.51612667e-02 art_sys_55: -9.22195097e-03 - art_sys_56: -1.63779360e-04 + art_sys_56: 1.63779360e-04 art_sys_57: 3.42989315e-05 art_sys_58: 7.69044821e-07 art_sys_59: -3.93893188e-06 - art_sys_60: -1.07199328e-07 + art_sys_60: 1.07199328e-07 art_sys_61: 1.32559588e-07 art_sys_62: 0.0 art_sys_63: 0.0 @@ -13103,16 +13103,16 @@ bins: art_sys_48: 1.52634349e-03 art_sys_49: 7.48439983e-03 art_sys_50: 3.53954431e-03 - art_sys_51: 2.11968683e-02 - art_sys_52: 5.86543323e-02 - art_sys_53: 5.42906294e-02 + art_sys_51: -2.11968683e-02 + art_sys_52: -5.86543323e-02 + art_sys_53: -5.42906294e-02 art_sys_54: 6.05612221e-01 art_sys_55: 1.52885159e-02 - art_sys_56: 4.92673169e-03 + art_sys_56: -4.92673169e-03 art_sys_57: 1.53704969e-04 art_sys_58: -2.35569710e-05 art_sys_59: -7.65451259e-06 - art_sys_60: 2.12624609e-07 + art_sys_60: -2.12624609e-07 art_sys_61: -2.79356350e-06 art_sys_62: 0.0 art_sys_63: 0.0 @@ -13332,16 +13332,16 @@ bins: art_sys_48: -4.52203489e-04 art_sys_49: -3.21855355e-03 art_sys_50: -1.25044854e-03 - art_sys_51: 2.58676170e-03 - art_sys_52: 1.71614006e-03 - art_sys_53: -3.15078218e-02 + art_sys_51: -2.58676170e-03 + art_sys_52: -1.71614006e-03 + art_sys_53: 3.15078218e-02 art_sys_54: 2.88868612e-02 art_sys_55: -3.37701525e-01 - art_sys_56: -7.81339273e-03 + art_sys_56: 7.81339273e-03 art_sys_57: 2.44957761e-03 art_sys_58: 1.42169631e-05 art_sys_59: -4.19168303e-05 - art_sys_60: 4.28780596e-08 + art_sys_60: -4.28780596e-08 art_sys_61: -6.08035069e-06 art_sys_62: 0.0 art_sys_63: 0.0 @@ -13561,16 +13561,16 @@ bins: art_sys_48: 9.26640812e-04 art_sys_49: 1.47206210e-03 art_sys_50: 1.69056394e-03 - art_sys_51: -5.59117852e-04 - art_sys_52: 1.85537167e-03 - art_sys_53: -1.80713149e-03 + art_sys_51: 5.59117852e-04 + art_sys_52: -1.85537167e-03 + art_sys_53: 1.80713149e-03 art_sys_54: -1.63781510e-02 art_sys_55: -1.70246003e-02 - art_sys_56: 1.65556806e-01 + art_sys_56: -1.65556806e-01 art_sys_57: -9.41269596e-03 art_sys_58: -2.38387383e-03 art_sys_59: -3.25726146e-05 - art_sys_60: 5.96572547e-07 + art_sys_60: -5.96572547e-07 art_sys_61: -2.35283718e-07 art_sys_62: 0.0 art_sys_63: 0.0 @@ -13790,16 +13790,16 @@ bins: art_sys_48: -1.44060249e-03 art_sys_49: 3.49645490e-05 art_sys_50: -1.39393151e-03 - art_sys_51: 9.82839792e-04 - art_sys_52: 5.30998535e-04 - art_sys_53: 8.66300821e-05 + art_sys_51: -9.82839792e-04 + art_sys_52: -5.30998535e-04 + art_sys_53: -8.66300821e-05 art_sys_54: -3.22855254e-03 art_sys_55: 6.61896711e-03 - art_sys_56: 1.64656363e-02 + art_sys_56: -1.64656363e-02 art_sys_57: 9.86184257e-02 art_sys_58: 6.26548479e-03 art_sys_59: -9.77059408e-04 - art_sys_60: 1.58890740e-07 + art_sys_60: -1.58890740e-07 art_sys_61: -3.79118860e-05 art_sys_62: 0.0 art_sys_63: 0.0 @@ -14019,16 +14019,16 @@ bins: art_sys_48: 1.60869026e-03 art_sys_49: 7.91431867e-04 art_sys_50: -2.49501975e-05 - art_sys_51: 7.14736485e-04 - art_sys_52: -8.91490945e-05 - art_sys_53: 6.86676486e-05 + art_sys_51: -7.14736485e-04 + art_sys_52: 8.91490945e-05 + art_sys_53: -6.86676486e-05 art_sys_54: 8.57951501e-05 art_sys_55: 1.22234131e-03 - art_sys_56: -4.66375998e-03 + art_sys_56: 4.66375998e-03 art_sys_57: 1.04944841e-02 art_sys_58: -6.17784824e-02 art_sys_59: 2.07139205e-03 - art_sys_60: 3.01096465e-06 + art_sys_60: -3.01096465e-06 art_sys_61: 4.72630768e-04 art_sys_62: 0.0 art_sys_63: 0.0 @@ -14248,16 +14248,16 @@ bins: art_sys_48: 2.30799618e-05 art_sys_49: 2.46427648e-04 art_sys_50: 2.12589442e-04 - art_sys_51: 1.29647884e-04 - art_sys_52: -2.93203289e-04 - art_sys_53: -1.15086968e-04 + art_sys_51: -1.29647884e-04 + art_sys_52: 2.93203289e-04 + art_sys_53: 1.15086968e-04 art_sys_54: -5.98935240e-05 art_sys_55: 3.14330514e-04 - art_sys_56: -8.88056712e-04 + art_sys_56: 8.88056712e-04 art_sys_57: -2.10461293e-03 art_sys_58: -3.93965717e-03 art_sys_59: -3.50112283e-02 - art_sys_60: -2.38061588e-05 + art_sys_60: 2.38061588e-05 art_sys_61: -1.49379990e-03 art_sys_62: 0.0 art_sys_63: 0.0 @@ -14477,16 +14477,16 @@ bins: art_sys_48: -1.04490218e-04 art_sys_49: -1.81578800e-04 art_sys_50: 1.93298848e-04 - art_sys_51: -6.84279374e-06 - art_sys_52: 1.16004230e-04 - art_sys_53: -1.97725129e-05 + art_sys_51: 6.84279374e-06 + art_sys_52: -1.16004230e-04 + art_sys_53: 1.97725129e-05 art_sys_54: 8.90667264e-05 art_sys_55: -1.04359120e-04 - art_sys_56: 8.37153065e-05 + art_sys_56: -8.37153065e-05 art_sys_57: -2.43272098e-04 art_sys_58: 1.31494654e-03 art_sys_59: -2.97926610e-03 - art_sys_60: 3.90299005e-05 + art_sys_60: -3.90299005e-05 art_sys_61: 1.79118225e-02 art_sys_62: 0.0 art_sys_63: 0.0 @@ -14706,16 +14706,16 @@ bins: art_sys_48: -2.07886872e-06 art_sys_49: 1.45812828e-05 art_sys_50: 7.69113733e-07 - art_sys_51: 9.58227234e-06 - art_sys_52: -1.45046920e-05 - art_sys_53: -3.71925535e-05 + art_sys_51: -9.58227234e-06 + art_sys_52: 1.45046920e-05 + art_sys_53: 3.71925535e-05 art_sys_54: 3.84229834e-05 art_sys_55: -8.16692233e-06 - art_sys_56: 3.37707324e-05 + art_sys_56: -3.37707324e-05 art_sys_57: 2.47368030e-05 art_sys_58: -1.24092432e-05 art_sys_59: 2.17139387e-04 - art_sys_60: -3.33086376e-03 + art_sys_60: 3.33086376e-03 art_sys_61: 2.20986029e-04 art_sys_62: 0.0 art_sys_63: 0.0 @@ -14953,15 +14953,15 @@ bins: art_sys_66: 1.74252968e-01 art_sys_67: 5.26652034e-04 art_sys_68: -6.13531138e-03 - art_sys_69: -1.75138934e-03 - art_sys_70: -7.29104001e-04 - art_sys_71: 2.48096920e-05 - art_sys_72: 2.28006616e-05 - art_sys_73: -3.24912541e-06 + art_sys_69: 1.75138934e-03 + art_sys_70: 7.29104001e-04 + art_sys_71: -2.48096920e-05 + art_sys_72: -2.28006616e-05 + art_sys_73: 3.24912541e-06 art_sys_74: 2.03780513e-07 - art_sys_75: -1.01661787e-07 - art_sys_76: -5.42627878e-08 - art_sys_77: -7.17831092e-09 + art_sys_75: 1.01661787e-07 + art_sys_76: 5.42627878e-08 + art_sys_77: 7.17831092e-09 art_sys_78: -1.33458464e-10 art_sys_79: 0.0 art_sys_80: 0.0 @@ -15182,15 +15182,15 @@ bins: art_sys_66: -4.44007650e-01 art_sys_67: -5.39301823e-02 art_sys_68: 1.87162444e-03 - art_sys_69: -2.28485908e-04 - art_sys_70: 4.18398407e-04 - art_sys_71: -3.18959075e-05 - art_sys_72: -5.08200322e-06 - art_sys_73: 1.10585096e-06 + art_sys_69: 2.28485908e-04 + art_sys_70: -4.18398407e-04 + art_sys_71: 3.18959075e-05 + art_sys_72: 5.08200322e-06 + art_sys_73: -1.10585096e-06 art_sys_74: 1.05548441e-07 - art_sys_75: -3.05399083e-08 - art_sys_76: 2.46576399e-08 - art_sys_77: 1.03499634e-08 + art_sys_75: 3.05399083e-08 + art_sys_76: -2.46576399e-08 + art_sys_77: -1.03499634e-08 art_sys_78: 6.38749618e-11 art_sys_79: 0.0 art_sys_80: 0.0 @@ -15411,15 +15411,15 @@ bins: art_sys_66: 3.37737435e+00 art_sys_67: 2.58525355e-01 art_sys_68: 4.93910361e-02 - art_sys_69: -6.41359012e-04 - art_sys_70: -1.05304412e-03 - art_sys_71: 4.99850286e-05 - art_sys_72: 2.38715890e-05 - art_sys_73: 6.36227631e-06 + art_sys_69: 6.41359012e-04 + art_sys_70: 1.05304412e-03 + art_sys_71: -4.99850286e-05 + art_sys_72: -2.38715890e-05 + art_sys_73: -6.36227631e-06 art_sys_74: -2.17630487e-07 - art_sys_75: -2.74463201e-07 - art_sys_76: -1.66565097e-07 - art_sys_77: -1.12107781e-08 + art_sys_75: 2.74463201e-07 + art_sys_76: 1.66565097e-07 + art_sys_77: 1.12107781e-08 art_sys_78: 2.07223164e-10 art_sys_79: 0.0 art_sys_80: 0.0 @@ -15640,15 +15640,15 @@ bins: art_sys_66: -9.30058149e+00 art_sys_67: -2.12197547e+00 art_sys_68: -6.27801622e-02 - art_sys_69: 1.07652466e-02 - art_sys_70: 1.17164265e-03 - art_sys_71: 2.25238844e-05 - art_sys_72: -5.54662882e-05 - art_sys_73: 2.51878317e-05 + art_sys_69: -1.07652466e-02 + art_sys_70: -1.17164265e-03 + art_sys_71: -2.25238844e-05 + art_sys_72: 5.54662882e-05 + art_sys_73: -2.51878317e-05 art_sys_74: 4.62254240e-06 - art_sys_75: 3.11603567e-07 - art_sys_76: 2.88768546e-07 - art_sys_77: 1.21574040e-08 + art_sys_75: -3.11603567e-07 + art_sys_76: -2.88768546e-07 + art_sys_77: -1.21574040e-08 art_sys_78: 6.21697638e-10 art_sys_79: 0.0 art_sys_80: 0.0 @@ -15869,15 +15869,15 @@ bins: art_sys_66: 6.88004975e+01 art_sys_67: 6.79426548e+00 art_sys_68: 1.08646485e+00 - art_sys_69: -5.72672639e-02 - art_sys_70: -3.69348743e-03 - art_sys_71: -9.81332931e-05 - art_sys_72: -8.25164443e-05 - art_sys_73: 2.91006884e-05 + art_sys_69: 5.72672639e-02 + art_sys_70: 3.69348743e-03 + art_sys_71: 9.81332931e-05 + art_sys_72: 8.25164443e-05 + art_sys_73: -2.91006884e-05 art_sys_74: -8.24371422e-06 - art_sys_75: -5.55643028e-07 - art_sys_76: -4.38999593e-07 - art_sys_77: -7.12822837e-08 + art_sys_75: 5.55643028e-07 + art_sys_76: 4.38999593e-07 + art_sys_77: 7.12822837e-08 art_sys_78: -3.92018610e-09 art_sys_79: 0.0 art_sys_80: 0.0 @@ -16098,15 +16098,15 @@ bins: art_sys_66: 1.26644212e+01 art_sys_67: -3.93721103e+01 art_sys_68: -2.80465106e+00 - art_sys_69: 4.36143863e-01 - art_sys_70: 1.72570304e-02 - art_sys_71: -5.55025645e-04 - art_sys_72: -1.89921974e-04 - art_sys_73: -7.31993643e-05 + art_sys_69: -4.36143863e-01 + art_sys_70: -1.72570304e-02 + art_sys_71: 5.55025645e-04 + art_sys_72: 1.89921974e-04 + art_sys_73: 7.31993643e-05 art_sys_74: 9.33566451e-07 - art_sys_75: -1.61604621e-06 - art_sys_76: -5.89096510e-07 - art_sys_77: 8.32020540e-08 + art_sys_75: 1.61604621e-06 + art_sys_76: 5.89096510e-07 + art_sys_77: -8.32020540e-08 art_sys_78: 3.47346911e-09 art_sys_79: 0.0 art_sys_80: 0.0 @@ -16327,15 +16327,15 @@ bins: art_sys_66: -1.87521084e+00 art_sys_67: -5.80882287e+00 art_sys_68: 2.07399830e+01 - art_sys_69: -1.33860944e+00 - art_sys_70: -1.83095320e-01 - art_sys_71: -3.87932213e-04 - art_sys_72: 1.32983776e-03 - art_sys_73: 1.19885874e-04 + art_sys_69: 1.33860944e+00 + art_sys_70: 1.83095320e-01 + art_sys_71: 3.87932213e-04 + art_sys_72: -1.32983776e-03 + art_sys_73: -1.19885874e-04 art_sys_74: -3.04898435e-05 - art_sys_75: -3.71659240e-06 - art_sys_76: 8.22742847e-07 - art_sys_77: 3.78076522e-07 + art_sys_75: 3.71659240e-06 + art_sys_76: -8.22742847e-07 + art_sys_77: -3.78076522e-07 art_sys_78: -6.72876271e-09 art_sys_79: 0.0 art_sys_80: 0.0 @@ -16556,15 +16556,15 @@ bins: art_sys_66: -3.82806679e-01 art_sys_67: 9.20211168e-01 art_sys_68: 2.81729485e+00 - art_sys_69: 1.04761471e+01 - art_sys_70: 5.13238656e-01 - art_sys_71: -4.20263416e-02 - art_sys_72: -2.36760669e-03 - art_sys_73: 9.22751094e-05 + art_sys_69: -1.04761471e+01 + art_sys_70: -5.13238656e-01 + art_sys_71: 4.20263416e-02 + art_sys_72: 2.36760669e-03 + art_sys_73: -9.22751094e-05 art_sys_74: 2.07729945e-05 - art_sys_75: -8.21937211e-06 - art_sys_76: -1.10751250e-06 - art_sys_77: 1.01860325e-07 + art_sys_75: 8.21937211e-06 + art_sys_76: 1.10751250e-06 + art_sys_77: -1.01860325e-07 art_sys_78: -8.39216964e-09 art_sys_79: 0.0 art_sys_80: 0.0 @@ -16785,15 +16785,15 @@ bins: art_sys_66: 1.83227932e-02 art_sys_67: 1.56455053e-01 art_sys_68: -4.48493738e-01 - art_sys_69: 1.07499026e+00 - art_sys_70: -5.29032997e+00 - art_sys_71: 1.13699489e-01 - art_sys_72: 3.17628351e-02 - art_sys_73: 7.09890408e-04 + art_sys_69: -1.07499026e+00 + art_sys_70: 5.29032997e+00 + art_sys_71: -1.13699489e-01 + art_sys_72: -3.17628351e-02 + art_sys_73: -7.09890408e-04 art_sys_74: -1.43014484e-04 - art_sys_75: -1.26575439e-05 - art_sys_76: -4.77472112e-06 - art_sys_77: 1.76815490e-06 + art_sys_75: 1.26575439e-05 + art_sys_76: 4.77472112e-06 + art_sys_77: -1.76815490e-06 art_sys_78: 2.33251710e-08 art_sys_79: 0.0 art_sys_80: 0.0 @@ -17014,15 +17014,15 @@ bins: art_sys_66: 1.83012396e-03 art_sys_67: 1.70692257e-03 art_sys_68: -9.41898568e-02 - art_sys_69: -1.70815093e-01 - art_sys_70: -3.55861120e-01 - art_sys_71: -1.82516318e+00 - art_sys_72: -1.17675942e-01 - art_sys_73: -1.11312913e-02 + art_sys_69: 1.70815093e-01 + art_sys_70: 3.55861120e-01 + art_sys_71: 1.82516318e+00 + art_sys_72: 1.17675942e-01 + art_sys_73: 1.11312913e-02 art_sys_74: 1.40460505e-04 - art_sys_75: 1.81214163e-05 - art_sys_76: -4.41253808e-06 - art_sys_77: -2.95108891e-06 + art_sys_75: -1.81214163e-05 + art_sys_76: 4.41253808e-06 + art_sys_77: 2.95108891e-06 art_sys_78: -4.99886735e-08 art_sys_79: 0.0 art_sys_80: 0.0 @@ -17243,15 +17243,15 @@ bins: art_sys_66: 8.29446490e-03 art_sys_67: -2.25323746e-03 art_sys_68: -1.83356707e-02 - art_sys_69: -2.73408436e-02 - art_sys_70: 1.23995592e-01 - art_sys_71: -2.15563571e-01 - art_sys_72: 1.02220431e+00 - art_sys_73: 4.12383680e-02 + art_sys_69: 2.73408436e-02 + art_sys_70: -1.23995592e-01 + art_sys_71: 2.15563571e-01 + art_sys_72: -1.02220431e+00 + art_sys_73: -4.12383680e-02 art_sys_74: -4.05735515e-03 - art_sys_75: 9.43846780e-05 - art_sys_76: 2.38666196e-06 - art_sys_77: 2.78743069e-06 + art_sys_75: -9.43846780e-05 + art_sys_76: -2.38666196e-06 + art_sys_77: -2.78743069e-06 art_sys_78: -1.64409273e-07 art_sys_79: 0.0 art_sys_80: 0.0 @@ -17472,15 +17472,15 @@ bins: art_sys_66: 1.98606442e-03 art_sys_67: 4.72702922e-03 art_sys_68: 5.90701995e-03 - art_sys_69: 4.45676358e-03 - art_sys_70: 1.04285455e-02 - art_sys_71: 2.23791159e-02 - art_sys_72: 8.64339671e-02 - art_sys_73: -5.08482032e-01 + art_sys_69: -4.45676358e-03 + art_sys_70: -1.04285455e-02 + art_sys_71: -2.23791159e-02 + art_sys_72: -8.64339671e-02 + art_sys_73: 5.08482032e-01 art_sys_74: 1.00521977e-02 - art_sys_75: -1.36673291e-03 - art_sys_76: -9.78069847e-05 - art_sys_77: -1.95415916e-06 + art_sys_75: 1.36673291e-03 + art_sys_76: 9.78069847e-05 + art_sys_77: 1.95415916e-06 art_sys_78: -4.76338721e-08 art_sys_79: 0.0 art_sys_80: 0.0 @@ -17701,15 +17701,15 @@ bins: art_sys_66: -2.86810562e-03 art_sys_67: 6.16518490e-04 art_sys_68: -2.01777641e-03 - art_sys_69: 1.29831166e-03 - art_sys_70: 1.63067670e-03 - art_sys_71: 4.31328982e-03 - art_sys_72: -1.70182880e-02 - art_sys_73: -2.77021220e-02 + art_sys_69: -1.29831166e-03 + art_sys_70: -1.63067670e-03 + art_sys_71: -4.31328982e-03 + art_sys_72: 1.70182880e-02 + art_sys_73: 2.77021220e-02 art_sys_74: -1.93062208e-01 - art_sys_75: 4.47023141e-03 - art_sys_76: 1.22858535e-03 - art_sys_77: -1.69099772e-05 + art_sys_75: -4.47023141e-03 + art_sys_76: -1.22858535e-03 + art_sys_77: 1.69099772e-05 art_sys_78: 7.79627481e-07 art_sys_79: 0.0 art_sys_80: 0.0 @@ -17930,15 +17930,15 @@ bins: art_sys_66: -8.20818411e-04 art_sys_67: 7.91161800e-04 art_sys_68: -1.26254751e-03 - art_sys_69: -1.18228895e-03 - art_sys_70: 7.46045385e-04 - art_sys_71: -7.45997841e-04 - art_sys_72: -1.18206259e-03 - art_sys_73: 6.59705252e-03 + art_sys_69: 1.18228895e-03 + art_sys_70: -7.46045385e-04 + art_sys_71: 7.45997841e-04 + art_sys_72: 1.18206259e-03 + art_sys_73: -6.59705252e-03 art_sys_74: -1.03250804e-02 - art_sys_75: -8.70208991e-02 - art_sys_76: -2.84577107e-03 - art_sys_77: 5.32419747e-04 + art_sys_75: 8.70208991e-02 + art_sys_76: 2.84577107e-03 + art_sys_77: -5.32419747e-04 art_sys_78: -3.33221921e-07 art_sys_79: 0.0 art_sys_80: 0.0 @@ -18159,15 +18159,15 @@ bins: art_sys_66: 8.66219433e-04 art_sys_67: -2.33297601e-04 art_sys_68: -3.51396400e-04 - art_sys_69: 2.63817757e-04 - art_sys_70: -5.24884377e-04 - art_sys_71: -2.38103127e-04 - art_sys_72: 4.73229993e-04 - art_sys_73: 6.98727479e-05 + art_sys_69: -2.63817757e-04 + art_sys_70: 5.24884377e-04 + art_sys_71: 2.38103127e-04 + art_sys_72: -4.73229993e-04 + art_sys_73: -6.98727479e-05 art_sys_74: 4.20270264e-03 - art_sys_75: -5.20116947e-03 - art_sys_76: 4.95060369e-02 - art_sys_77: -1.16467374e-03 + art_sys_75: 5.20116947e-03 + art_sys_76: -4.95060369e-02 + art_sys_77: 1.16467374e-03 art_sys_78: 1.50999986e-05 art_sys_79: 0.0 art_sys_80: 0.0 @@ -18388,15 +18388,15 @@ bins: art_sys_66: 2.56390419e-04 art_sys_67: 2.08041692e-04 art_sys_68: -2.95201005e-04 - art_sys_69: -8.26193202e-05 - art_sys_70: 2.94659728e-04 - art_sys_71: -1.99308000e-04 - art_sys_72: -9.25225280e-05 - art_sys_73: -2.12072163e-04 + art_sys_69: 8.26193202e-05 + art_sys_70: -2.94659728e-04 + art_sys_71: 1.99308000e-04 + art_sys_72: 9.25225280e-05 + art_sys_73: 2.12072163e-04 art_sys_74: 3.00913493e-04 - art_sys_75: 1.69677812e-03 - art_sys_76: 2.49111781e-03 - art_sys_77: 2.37758854e-02 + art_sys_75: -1.69677812e-03 + art_sys_76: -2.49111781e-03 + art_sys_77: -2.37758854e-02 art_sys_78: -2.38317378e-05 art_sys_79: 0.0 art_sys_80: 0.0 @@ -18617,15 +18617,15 @@ bins: art_sys_66: 6.16954980e-05 art_sys_67: 4.02807869e-05 art_sys_68: 5.24997416e-05 - art_sys_69: 9.32401160e-06 - art_sys_70: 4.19067169e-05 - art_sys_71: -3.89749968e-05 - art_sys_72: 4.94015305e-05 - art_sys_73: -9.51325399e-08 + art_sys_69: -9.32401160e-06 + art_sys_70: -4.19067169e-05 + art_sys_71: 3.89749968e-05 + art_sys_72: -4.94015305e-05 + art_sys_73: 9.51325399e-08 art_sys_74: 2.64759986e-05 - art_sys_75: 2.52590857e-05 - art_sys_76: -2.01643797e-04 - art_sys_77: 1.70762182e-04 + art_sys_75: -2.52590857e-05 + art_sys_76: 2.01643797e-04 + art_sys_77: -1.70762182e-04 art_sys_78: 3.42229180e-03 art_sys_79: 0.0 art_sys_80: 0.0 diff --git a/nnpdf_data/nnpdf_data/new_commondata/ATLAS_Z0_8TEV_ZMASS/uncertainties.yaml b/nnpdf_data/nnpdf_data/new_commondata/ATLAS_Z0_8TEV_ZMASS/uncertainties.yaml index 31706ee588..cdf650fe9a 100644 --- a/nnpdf_data/nnpdf_data/new_commondata/ATLAS_Z0_8TEV_ZMASS/uncertainties.yaml +++ b/nnpdf_data/nnpdf_data/new_commondata/ATLAS_Z0_8TEV_ZMASS/uncertainties.yaml @@ -29,51 +29,51 @@ definitions: type: CORR bins: - artificial_uncertainty_1: 6.360849092233548 - artificial_uncertainty_2: -0.43736014852425575 - artificial_uncertainty_3: -0.17081282174067292 - artificial_uncertainty_4: 0.1343303399845492 - artificial_uncertainty_5: 0.1506396770871814 - artificial_uncertainty_6: 0.17839551357478534 - artificial_uncertainty_7: -0.17417703394997616 -- artificial_uncertainty_1: 6.233875520247695 - artificial_uncertainty_2: -0.42939370572372393 - artificial_uncertainty_3: -0.1581186015151157 - artificial_uncertainty_4: 0.12091345356933662 - artificial_uncertainty_5: 0.140047777147049 - artificial_uncertainty_6: -0.22584792937770715 - artificial_uncertainty_7: -0.08053516734437347 -- artificial_uncertainty_1: 6.060113000362857 - artificial_uncertainty_2: -0.4123698461117033 - artificial_uncertainty_3: -0.14680060602839212 - artificial_uncertainty_4: 0.10112405423267312 - artificial_uncertainty_5: 0.0894931999659005 - artificial_uncertainty_6: 0.04486740555676256 - artificial_uncertainty_7: 0.28681853399599 -- artificial_uncertainty_1: 5.836824335315856 - artificial_uncertainty_2: -0.27502106473581056 - artificial_uncertainty_3: 0.03159277272608425 - artificial_uncertainty_4: -0.12119507917842083 - artificial_uncertainty_5: -0.5349848732266431 - artificial_uncertainty_6: -0.0007764604112265232 - artificial_uncertainty_7: -0.02250579775755823 -- artificial_uncertainty_1: 5.539243636415269 - artificial_uncertainty_2: 0.31344828703761407 - artificial_uncertainty_3: 0.4545302042514127 - artificial_uncertainty_4: -0.6463383504190422 - artificial_uncertainty_5: 0.16156289938315516 - artificial_uncertainty_6: 0.0018754281204069558 - artificial_uncertainty_7: -0.0009901510871859873 -- artificial_uncertainty_1: 5.00099551940249 - artificial_uncertainty_2: 0.9002405764173007 - artificial_uncertainty_3: 0.5616642244049272 - artificial_uncertainty_4: 0.48016500342015245 - artificial_uncertainty_5: -0.017766174135644974 - artificial_uncertainty_6: -0.00035256711006794806 - artificial_uncertainty_7: 0.0016258067952645042 -- artificial_uncertainty_1: 3.1715884625027186 - artificial_uncertainty_2: 1.0482636206034448 - artificial_uncertainty_3: -0.8037615168161861 - artificial_uncertainty_4: -0.1055372371812821 - artificial_uncertainty_5: -0.017988003826124054 - artificial_uncertainty_6: -0.000893499833004754 - artificial_uncertainty_7: 0.0001651328837651984 + artificial_uncertainty_2: -0.43736014852425487 + artificial_uncertainty_3: -0.17081282174067366 + artificial_uncertainty_4: 0.13433033998455113 + artificial_uncertainty_5: 0.15063967708716575 + artificial_uncertainty_6: 0.1783955135747032 + artificial_uncertainty_7: -0.17417703394995054 +- artificial_uncertainty_1: 6.233875520247694 + artificial_uncertainty_2: -0.4293937057237233 + artificial_uncertainty_3: -0.15811860151511387 + artificial_uncertainty_4: 0.12091345356933868 + artificial_uncertainty_5: 0.14004777714705885 + artificial_uncertainty_6: -0.22584792937772988 + artificial_uncertainty_7: -0.0805351673443991 +- artificial_uncertainty_1: 6.0601130003628585 + artificial_uncertainty_2: -0.4123698461117014 + artificial_uncertainty_3: -0.14680060602839237 + artificial_uncertainty_4: 0.10112405423267211 + artificial_uncertainty_5: 0.08949319996590628 + artificial_uncertainty_6: 0.04486740555687132 + artificial_uncertainty_7: 0.28681853399599216 +- artificial_uncertainty_1: 5.836824335315859 + artificial_uncertainty_2: -0.2750210647358121 + artificial_uncertainty_3: 0.03159277272608385 + artificial_uncertainty_4: -0.12119507917842652 + artificial_uncertainty_5: -0.5349848732266409 + artificial_uncertainty_6: -0.0007764604112219011 + artificial_uncertainty_7: -0.02250579775756145 +- artificial_uncertainty_1: 5.539243636415268 + artificial_uncertainty_2: 0.31344828703761296 + artificial_uncertainty_3: 0.4545302042514117 + artificial_uncertainty_4: -0.64633835041904 + artificial_uncertainty_5: 0.16156289938315352 + artificial_uncertainty_6: 0.001875428120402786 + artificial_uncertainty_7: -0.000990151087185439 +- artificial_uncertainty_1: 5.0009955194024895 + artificial_uncertainty_2: 0.9002405764173016 + artificial_uncertainty_3: 0.5616642244049274 + artificial_uncertainty_4: 0.4801650034201536 + artificial_uncertainty_5: -0.017766174135644675 + artificial_uncertainty_6: -0.00035256711006798443 + artificial_uncertainty_7: 0.0016258067952645726 +- artificial_uncertainty_1: 3.171588462502718 + artificial_uncertainty_2: 1.0482636206034437 + artificial_uncertainty_3: -0.8037615168161868 + artificial_uncertainty_4: -0.10553723718128212 + artificial_uncertainty_5: -0.017988003826124085 + artificial_uncertainty_6: -0.0008934998330043566 + artificial_uncertainty_7: 0.00016513288376506982 diff --git a/nnpdf_data/nnpdf_data/new_commondata/CMS_1JET_8TEV/uncertainties.yaml b/nnpdf_data/nnpdf_data/new_commondata/CMS_1JET_8TEV/uncertainties.yaml index 17e9686338..daffcd05d3 100644 --- a/nnpdf_data/nnpdf_data/new_commondata/CMS_1JET_8TEV/uncertainties.yaml +++ b/nnpdf_data/nnpdf_data/new_commondata/CMS_1JET_8TEV/uncertainties.yaml @@ -4022,191 +4022,191 @@ bins: RelativeStatFSR-: -2.65151356e+05 luminosity_uncertainty: 975.9256 uncorrelated_uncertainty: 375.356 -- art_sys_1: 1.10401828e-28 - art_sys_2: -3.33402794e-19 - art_sys_3: 4.17520416e-15 +- art_sys_1: 1.89429546e-30 + art_sys_2: 2.91460031e-18 + art_sys_3: -2.72981079e-19 art_sys_4: 2.13872286e+02 - art_sys_5: -1.23003793e-14 - art_sys_6: 1.82426993e-15 - art_sys_7: 4.32504440e+01 - art_sys_8: -1.03212260e-14 - art_sys_9: 1.59603845e+01 - art_sys_10: 5.63027264e-16 - art_sys_11: -6.36629959e-15 + art_sys_5: 4.93487723e-15 + art_sys_6: -2.06066294e-15 + art_sys_7: -4.32504440e+01 + art_sys_8: -7.97663834e-15 + art_sys_9: -1.59603845e+01 + art_sys_10: -1.60786045e-15 + art_sys_11: 1.28597514e-15 art_sys_12: 2.59780643e+00 - art_sys_13: -8.90021159e-17 - art_sys_14: 3.88515743e-02 - art_sys_15: -6.88954544e-17 - art_sys_16: -1.41001692e-02 - art_sys_17: -3.16930311e-17 - art_sys_18: -1.28260226e-17 - art_sys_19: 8.26532790e-03 - art_sys_20: 2.18528845e-17 - art_sys_21: -1.39858252e-16 + art_sys_13: -1.93157273e-17 + art_sys_14: -3.88515743e-02 + art_sys_15: -2.02551771e-17 + art_sys_16: 1.41001692e-02 + art_sys_17: 3.86546429e-16 + art_sys_18: -7.60239308e-17 + art_sys_19: -8.26532790e-03 + art_sys_20: 6.60016172e-18 + art_sys_21: 1.76642688e-17 art_sys_22: -1.58893902e-03 - art_sys_23: 8.43293098e-18 - art_sys_24: -6.60574145e-18 - art_sys_25: 1.20894696e-15 - art_sys_26: -1.31032664e-16 - art_sys_27: -8.75277586e-19 - art_sys_28: -5.50825275e-20 - art_sys_29: -3.46918383e-20 - art_sys_30: 4.62562783e-06 - art_sys_31: 1.76953379e-06 - art_sys_32: 1.65342587e-19 - art_sys_33: 9.02187804e-20 - art_sys_34: 3.04433667e-18 - art_sys_35: -1.66191978e-17 - art_sys_36: 2.50630937e-17 + art_sys_23: 6.59251277e-18 + art_sys_24: 3.13770265e-17 + art_sys_25: 1.07195851e-17 + art_sys_26: -1.07715331e-18 + art_sys_27: -6.54132677e-20 + art_sys_28: 4.62562783e-06 + art_sys_29: -1.76953379e-06 + art_sys_30: 9.51413120e-21 + art_sys_31: 2.18642761e-19 + art_sys_32: -2.38066422e-19 + art_sys_33: 1.56433748e-19 + art_sys_34: 4.47861361e-18 + art_sys_35: 1.89884212e-17 + art_sys_36: 1.38197975e-16 art_sys_37: -7.83468545e-07 - art_sys_38: 1.54111984e-19 - art_sys_39: 2.93089815e-17 - art_sys_40: -3.72619370e-17 - art_sys_41: 3.53930210e-08 - art_sys_42: 2.50452301e-08 - art_sys_43: 5.91635738e-19 - art_sys_44: -1.61063194e-19 - art_sys_45: -5.74239110e-20 - art_sys_46: 1.92553284e-17 - art_sys_47: -2.62215890e-18 - art_sys_48: 5.06334253e-09 - art_sys_49: 1.58283732e-21 - art_sys_50: 3.80994683e-19 - art_sys_51: -6.12707685e-21 - art_sys_52: 8.57777931e-22 - art_sys_53: -3.23191222e-20 - art_sys_54: -4.34584107e-10 - art_sys_55: 6.03217186e-17 - art_sys_56: -1.43114471e-17 - art_sys_57: 1.96636929e-10 - art_sys_58: 4.29631015e-19 - art_sys_59: -5.84298521e-22 - art_sys_60: -2.67867448e-23 - art_sys_61: -1.52951063e-23 - art_sys_62: 1.35110237e-23 - art_sys_63: 4.91372204e-26 - art_sys_64: 4.32062659e-20 - art_sys_65: 1.73737921e-24 - art_sys_66: 1.50204179e-25 - art_sys_67: 5.87379249e-25 - art_sys_68: 1.72426301e-20 - art_sys_69: 3.17920791e-21 - art_sys_70: -4.02406062e-11 - art_sys_71: -7.71642832e-18 - art_sys_72: 9.16040769e-21 - art_sys_73: 2.09440964e-19 - art_sys_74: 1.27429733e-19 - art_sys_75: 1.49265316e-26 - art_sys_76: 1.15225987e-26 - art_sys_77: 1.18697718e-25 - art_sys_78: -5.77257766e-19 - art_sys_79: 3.91581671e-13 - art_sys_80: 1.38460397e-26 - art_sys_81: -4.99184491e-28 - art_sys_82: 1.07026582e-27 - art_sys_83: 1.26884447e-22 - art_sys_84: -1.01981858e-13 - art_sys_85: -1.32516750e-18 - art_sys_86: 8.22069101e-21 - art_sys_87: 8.51596878e-14 - art_sys_88: -2.40225698e-28 - art_sys_89: -3.49849081e-21 - art_sys_90: 4.01583326e-14 - art_sys_91: -1.41970264e-19 - art_sys_92: 1.95304352e-14 - art_sys_93: 2.67358053e-21 - art_sys_94: -2.12123472e-24 - art_sys_95: 8.26921191e-15 - art_sys_96: 2.03824997e-20 - art_sys_97: -3.20013115e-15 - art_sys_98: -4.35211078e-20 - art_sys_99: -9.17859963e-25 - art_sys_100: -6.26688122e-29 - art_sys_101: -3.11504832e-28 - art_sys_102: -1.17716135e-15 - art_sys_103: -1.68698474e-23 - art_sys_104: 4.07034606e-16 - art_sys_105: -1.87905401e-23 - art_sys_106: -1.01776670e-21 - art_sys_107: 1.70254481e-16 - art_sys_108: -3.30187842e-24 - art_sys_109: 6.12502478e-17 - art_sys_110: 2.88805176e-21 - art_sys_111: -3.66081816e-24 - art_sys_112: -2.04480638e-17 - art_sys_113: 6.79820016e-18 - art_sys_114: -2.21425643e-18 - art_sys_115: 4.44969010e-23 - art_sys_116: 5.76379841e-19 - art_sys_117: -1.79279544e-21 - art_sys_118: -1.93093479e-19 - art_sys_119: -1.35695963e-24 - art_sys_120: -5.08218262e-24 - art_sys_121: 4.88963494e-25 - art_sys_122: 2.39914273e-25 - art_sys_123: 2.48918481e-24 - art_sys_124: -1.17527821e-25 - art_sys_125: -3.21980858e-20 - art_sys_126: 7.49778812e-25 - art_sys_127: -3.10992703e-21 - art_sys_128: 2.13855847e-25 - art_sys_129: -6.70825530e-26 - art_sys_130: -4.14707208e-23 - art_sys_131: 1.29952847e-23 - art_sys_132: 1.54241173e-28 - art_sys_133: -4.27427905e-28 - art_sys_134: 5.10567816e-26 - art_sys_135: 1.52403897e-29 - art_sys_136: 3.98848326e-29 - art_sys_137: 2.67135232e-30 - art_sys_138: 8.41449239e-30 - art_sys_139: -6.10793291e-29 - art_sys_140: 1.96901092e-30 - art_sys_141: 7.81244842e-29 - art_sys_142: 5.56951153e-30 - art_sys_143: 1.05924891e-30 - art_sys_144: 3.79282334e-30 - art_sys_145: 6.68741374e-29 - art_sys_146: 3.97036991e-29 - art_sys_147: 8.52309582e-29 - art_sys_148: 2.44181873e-29 - art_sys_149: -5.02254830e-30 - art_sys_150: 1.63266624e-31 - art_sys_151: 8.83319891e-31 - art_sys_152: -2.65692216e-33 - art_sys_153: 2.11417515e-34 - art_sys_154: -4.25220847e-34 - art_sys_155: 8.10278708e-36 - art_sys_156: 1.00203257e-35 - art_sys_157: -3.06357885e-36 - art_sys_158: 2.57307878e-37 - art_sys_159: 8.01273385e-37 - art_sys_160: -2.28852129e-36 - art_sys_161: -3.27641029e-38 - art_sys_162: -3.13109713e-38 - art_sys_163: 3.23766990e-37 - art_sys_164: -2.29743778e-36 - art_sys_165: 1.89042061e-37 - art_sys_166: -2.89151297e-37 - art_sys_167: -1.79611636e-36 - art_sys_168: -9.46517896e-29 - art_sys_169: 2.65026484e-37 - art_sys_170: -3.64695929e-28 - art_sys_171: -2.93728193e-27 - art_sys_172: 2.21213094e-37 - art_sys_173: -1.93474901e-38 - art_sys_174: 2.25777576e-28 - art_sys_175: 0.0 - art_sys_176: 3.14054987e-30 - art_sys_177: 0.0 - art_sys_178: -3.73760022e-32 - art_sys_179: -1.16710708e-35 - art_sys_180: 1.00895025e-36 - art_sys_181: -5.81800487e-42 - art_sys_182: 0.0 - art_sys_183: -6.14521999e-42 - art_sys_184: 6.04799285e-40 - art_sys_185: -8.65514722e-44 + art_sys_38: 5.64598470e-19 + art_sys_39: -5.77158275e-17 + art_sys_40: -1.35342861e-16 + art_sys_41: -3.53930208e-08 + art_sys_42: -2.50452301e-08 + art_sys_43: 1.05283626e-19 + art_sys_44: 3.94177817e-20 + art_sys_45: -1.18379640e-20 + art_sys_46: -6.87110771e-17 + art_sys_47: -7.04313798e-18 + art_sys_48: 5.06334255e-09 + art_sys_49: 5.63320272e-20 + art_sys_50: -1.60426208e-21 + art_sys_51: -1.61424809e-21 + art_sys_52: 7.39244164e-23 + art_sys_53: 1.04290420e-22 + art_sys_54: -3.64451298e-23 + art_sys_55: -2.72230149e-19 + art_sys_56: 2.64553491e-21 + art_sys_57: 1.33302407e-17 + art_sys_58: 2.71674609e-23 + art_sys_59: -7.14119108e-24 + art_sys_60: -4.34584121e-10 + art_sys_61: 5.30421187e-18 + art_sys_62: 3.90453853e-17 + art_sys_63: -4.87261992e-19 + art_sys_64: -1.96636902e-10 + art_sys_65: -6.00358264e-26 + art_sys_66: -9.12697639e-25 + art_sys_67: 1.24546983e-18 + art_sys_68: -2.89958741e-20 + art_sys_69: 8.87061214e-20 + art_sys_70: -4.02406103e-11 + art_sys_71: -1.09425475e-17 + art_sys_72: 9.96414448e-20 + art_sys_73: 9.18201988e-24 + art_sys_74: 1.27016392e-23 + art_sys_75: -3.07492868e-24 + art_sys_76: -8.26112687e-27 + art_sys_77: 5.06852514e-20 + art_sys_78: -7.47927659e-21 + art_sys_79: 9.54175952e-25 + art_sys_80: 3.65693417e-21 + art_sys_81: -3.60622558e-25 + art_sys_82: -3.83288149e-25 + art_sys_83: -9.34442258e-24 + art_sys_84: -2.56405024e-25 + art_sys_85: -1.56203487e-25 + art_sys_86: -1.26300391e-23 + art_sys_87: 5.80107007e-19 + art_sys_88: -2.36890681e-24 + art_sys_89: -1.53521120e-26 + art_sys_90: 3.91581492e-13 + art_sys_91: 9.69296096e-20 + art_sys_92: -1.01980640e-13 + art_sys_93: -2.92942005e-21 + art_sys_94: 8.51605032e-14 + art_sys_95: -3.70378786e-21 + art_sys_96: -3.16151638e-25 + art_sys_97: 2.05684528e-20 + art_sys_98: -4.01586259e-14 + art_sys_99: 2.12903508e-19 + art_sys_100: 1.03576125e-20 + art_sys_101: -1.95302676e-14 + art_sys_102: 8.26947154e-15 + art_sys_103: -4.35573775e-22 + art_sys_104: 3.44567367e-19 + art_sys_105: 3.19934100e-15 + art_sys_106: -3.88134894e-20 + art_sys_107: -2.11671053e-25 + art_sys_108: 1.13585447e-26 + art_sys_109: 5.29281912e-26 + art_sys_110: -1.93740292e-21 + art_sys_111: -1.17708694e-15 + art_sys_112: -5.46630473e-23 + art_sys_113: 8.54720434e-28 + art_sys_114: 4.07002852e-16 + art_sys_115: 3.45750918e-23 + art_sys_116: -1.78401219e-21 + art_sys_117: -1.70263648e-16 + art_sys_118: -1.23866142e-22 + art_sys_119: 6.11896983e-17 + art_sys_120: 3.11158967e-21 + art_sys_121: -9.22592098e-24 + art_sys_122: 2.04570349e-17 + art_sys_123: 6.79862641e-18 + art_sys_124: 7.34186608e-24 + art_sys_125: 8.81027993e-22 + art_sys_126: -2.08467079e-23 + art_sys_127: -2.21312696e-18 + art_sys_128: -2.46076234e-23 + art_sys_129: 5.74314586e-19 + art_sys_130: -3.91093176e-23 + art_sys_131: 1.56869089e-22 + art_sys_132: -1.96289900e-19 + art_sys_133: -4.59709774e-22 + art_sys_134: -9.38269034e-25 + art_sys_135: 3.33884554e-20 + art_sys_136: -9.17854407e-23 + art_sys_137: 1.01447654e-26 + art_sys_138: 7.49574115e-21 + art_sys_139: -3.24261435e-21 + art_sys_140: -4.78421651e-22 + art_sys_141: 7.34434299e-23 + art_sys_142: 6.17051104e-24 + art_sys_143: 3.39002749e-27 + art_sys_144: 6.05509046e-27 + art_sys_145: 2.48146034e-28 + art_sys_146: 0.0 + art_sys_147: 2.52954722e-25 + art_sys_148: 8.53728459e-25 + art_sys_149: 8.53728459e-25 + art_sys_150: -1.85907676e-24 + art_sys_151: -1.85907676e-24 + art_sys_152: 3.38007412e-23 + art_sys_153: -1.81324899e-24 + art_sys_154: 2.81211709e-28 + art_sys_155: -9.54285357e-36 + art_sys_156: 3.79104172e-40 + art_sys_157: 1.57442550e-38 + art_sys_158: -0.0 + art_sys_159: -2.05792151e-26 + art_sys_160: -9.89402888e-28 + art_sys_161: 5.20099389e-28 + art_sys_162: -1.21145418e-30 + art_sys_163: 4.36466348e-26 + art_sys_164: 2.59292327e-26 + art_sys_165: -3.92657127e-27 + art_sys_166: 2.37268485e-34 + art_sys_167: -5.96085270e-35 + art_sys_168: -4.17404510e-35 + art_sys_169: -3.26723714e-34 + art_sys_170: 2.80904288e-34 + art_sys_171: 2.06536494e-33 + art_sys_172: -3.92799312e-32 + art_sys_173: -2.50925474e-33 + art_sys_174: -1.35069440e-33 + art_sys_175: 1.33094783e-39 + art_sys_176: -2.42226946e-34 + art_sys_177: 3.95843865e-35 + art_sys_178: -1.20568538e-35 + art_sys_179: 1.92317256e-36 + art_sys_180: 1.50334318e-35 + art_sys_181: 1.15775633e-37 + art_sys_182: 2.35075272e-38 + art_sys_183: -7.59154008e-40 + art_sys_184: 6.89282649e-42 + art_sys_185: 1.83677020e-42 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -4313,191 +4313,191 @@ bins: RelativeStatFSR-: -7.14236536e+00 luminosity_uncertainty: 975.9256 uncorrelated_uncertainty: 375.356 -- art_sys_1: 5.67932810e-29 - art_sys_2: 8.35820664e-20 - art_sys_3: 2.14772135e-15 +- art_sys_1: 9.68258387e-31 + art_sys_2: 1.49926785e-18 + art_sys_3: 1.05046562e-18 art_sys_4: 1.10015716e+02 - art_sys_5: -7.69330704e-15 - art_sys_6: 3.48663734e-16 - art_sys_7: -7.94684215e+01 - art_sys_8: -8.51447367e-15 - art_sys_9: -2.76420107e+01 - art_sys_10: -1.19285480e-15 - art_sys_11: 1.33881772e-14 + art_sys_5: 2.55672925e-15 + art_sys_6: -1.05918186e-15 + art_sys_7: 7.94684215e+01 + art_sys_8: -7.22426486e-15 + art_sys_9: 2.76420107e+01 + art_sys_10: -9.49849248e-16 + art_sys_11: -4.82367064e-15 art_sys_12: -7.40958162e+00 - art_sys_13: 4.94995620e-16 - art_sys_14: -1.27844108e-01 - art_sys_15: -7.67559083e-17 - art_sys_16: 4.68621367e-02 - art_sys_17: -1.65806808e-17 - art_sys_18: -6.89839311e-17 - art_sys_19: -3.06526079e-02 - art_sys_20: 3.37260268e-18 - art_sys_21: 4.69442206e-16 + art_sys_13: 1.74452282e-16 + art_sys_14: 1.27844108e-01 + art_sys_15: -4.38023590e-16 + art_sys_16: -4.68621367e-02 + art_sys_17: 1.68556594e-16 + art_sys_18: 4.13454501e-16 + art_sys_19: 3.06526079e-02 + art_sys_20: 3.09043851e-18 + art_sys_21: 9.94674587e-17 art_sys_22: 6.35192413e-03 - art_sys_23: 1.00454245e-16 - art_sys_24: 1.30860445e-16 - art_sys_25: -2.19015457e-15 - art_sys_26: 2.37673386e-16 - art_sys_27: 2.71418281e-17 - art_sys_28: 1.07102831e-19 - art_sys_29: -7.25450234e-20 - art_sys_30: -2.64716142e-05 - art_sys_31: -1.10167488e-05 - art_sys_32: -1.42355079e-19 - art_sys_33: -4.60226474e-19 - art_sys_34: 3.07841901e-17 - art_sys_35: 8.76963267e-18 - art_sys_36: -1.39256066e-16 + art_sys_23: 1.75136153e-17 + art_sys_24: -1.34654208e-17 + art_sys_25: -2.94654126e-17 + art_sys_26: 5.77431340e-18 + art_sys_27: 2.91372727e-19 + art_sys_28: -2.64716142e-05 + art_sys_29: 1.10167488e-05 + art_sys_30: 4.63480181e-21 + art_sys_31: 1.87202074e-19 + art_sys_32: -1.94502461e-19 + art_sys_33: 7.79638848e-20 + art_sys_34: -1.19855074e-17 + art_sys_35: -7.04691996e-17 + art_sys_36: -7.88554947e-16 art_sys_37: 4.46250602e-06 - art_sys_38: -8.31735531e-19 - art_sys_39: -1.82091055e-16 - art_sys_40: 3.48602185e-16 - art_sys_41: -3.35534777e-07 - art_sys_42: -1.58782566e-07 - art_sys_43: -8.39817901e-19 - art_sys_44: -2.42347043e-19 - art_sys_45: -1.61708686e-20 - art_sys_46: -9.76584055e-17 - art_sys_47: 2.01970239e-17 - art_sys_48: -3.81972020e-08 - art_sys_49: 1.51929654e-20 - art_sys_50: -3.06622757e-18 - art_sys_51: 1.99479586e-20 - art_sys_52: -6.42165168e-21 - art_sys_53: 3.44839859e-20 - art_sys_54: 2.92226888e-09 - art_sys_55: -4.04946549e-16 - art_sys_56: 9.77401524e-17 - art_sys_57: -1.33373137e-09 - art_sys_58: -5.55504758e-19 - art_sys_59: 4.10968127e-21 - art_sys_60: 1.74121252e-22 - art_sys_61: 1.05001331e-22 - art_sys_62: -9.17767591e-23 - art_sys_63: -6.93499953e-25 - art_sys_64: -7.86882127e-20 - art_sys_65: -1.21302904e-23 - art_sys_66: -9.55898412e-25 - art_sys_67: -3.98026586e-24 - art_sys_68: -6.67723497e-20 - art_sys_69: -6.07690279e-20 - art_sys_70: 2.77656626e-10 - art_sys_71: 5.54339422e-17 - art_sys_72: -7.05481823e-20 - art_sys_73: -5.21836693e-19 - art_sys_74: -1.59420913e-18 - art_sys_75: 1.57957631e-26 - art_sys_76: -5.92922694e-25 - art_sys_77: -4.58287040e-25 - art_sys_78: 3.01249428e-18 - art_sys_79: -1.61621664e-12 - art_sys_80: -6.45826705e-26 - art_sys_81: 1.66153988e-27 - art_sys_82: -5.47088810e-27 - art_sys_83: 7.14598091e-21 - art_sys_84: 6.44913982e-13 - art_sys_85: 8.74412868e-18 - art_sys_86: -3.89777066e-20 - art_sys_87: -4.41276050e-13 - art_sys_88: 7.75972861e-28 - art_sys_89: 1.99451611e-20 - art_sys_90: -2.18614308e-13 - art_sys_91: 1.21449918e-18 - art_sys_92: -1.09590247e-13 - art_sys_93: -1.61135052e-20 - art_sys_94: -1.89389957e-22 - art_sys_95: -4.63805585e-14 - art_sys_96: -1.28935566e-19 - art_sys_97: 1.83605315e-14 - art_sys_98: 2.42085001e-19 - art_sys_99: -4.27052112e-23 - art_sys_100: 4.26907724e-28 - art_sys_101: 2.00843464e-27 - art_sys_102: 6.77709445e-15 - art_sys_103: 9.73280860e-23 - art_sys_104: -2.36559573e-15 - art_sys_105: 9.76940066e-24 - art_sys_106: 6.12783142e-21 - art_sys_107: -9.94310366e-16 - art_sys_108: 1.83557190e-23 - art_sys_109: -3.59000606e-16 - art_sys_110: -1.70377022e-20 - art_sys_111: 2.23108313e-23 - art_sys_112: 1.20371679e-16 - art_sys_113: -4.00894356e-17 - art_sys_114: 1.30821179e-17 - art_sys_115: -2.74437521e-22 - art_sys_116: -3.41014808e-18 - art_sys_117: 1.22296350e-20 - art_sys_118: 1.14305715e-18 - art_sys_119: 8.14089900e-24 - art_sys_120: 2.96705436e-23 - art_sys_121: -3.05251481e-24 - art_sys_122: -1.23784926e-24 - art_sys_123: -1.50566459e-23 - art_sys_124: 5.38938396e-25 - art_sys_125: 1.90792767e-19 - art_sys_126: -4.28537633e-24 - art_sys_127: 1.84429459e-20 - art_sys_128: -1.24920551e-24 - art_sys_129: 3.96874182e-25 - art_sys_130: 2.44962104e-22 - art_sys_131: -7.67227200e-23 - art_sys_132: -8.94136950e-28 - art_sys_133: 2.47626152e-27 - art_sys_134: -2.79101138e-25 - art_sys_135: -3.35094766e-29 - art_sys_136: -2.12932002e-28 - art_sys_137: 2.66249805e-29 - art_sys_138: -4.17994266e-29 - art_sys_139: 2.98341921e-28 - art_sys_140: -4.70701551e-29 - art_sys_141: -4.53617642e-28 - art_sys_142: -3.56054759e-29 - art_sys_143: -5.49285727e-30 - art_sys_144: -2.47703154e-29 - art_sys_145: -3.63446177e-28 - art_sys_146: -2.96312055e-28 - art_sys_147: -5.16674494e-28 - art_sys_148: -1.36009329e-28 - art_sys_149: 2.89334896e-29 - art_sys_150: -2.79279929e-31 - art_sys_151: -4.84166290e-30 - art_sys_152: 1.29763688e-32 - art_sys_153: -1.83838029e-33 - art_sys_154: 2.05527610e-33 - art_sys_155: -3.68484251e-35 - art_sys_156: -5.37500805e-35 - art_sys_157: 1.57924381e-35 - art_sys_158: -1.59814120e-36 - art_sys_159: -4.71887402e-36 - art_sys_160: 1.35036199e-35 - art_sys_161: 1.91910456e-37 - art_sys_162: 1.89583364e-37 - art_sys_163: -1.84375001e-36 - art_sys_164: 1.30388585e-35 - art_sys_165: -1.13398696e-36 - art_sys_166: 1.58798022e-36 - art_sys_167: 9.79826693e-36 - art_sys_168: 1.06490349e-28 - art_sys_169: -1.42274921e-36 - art_sys_170: 2.11623175e-27 - art_sys_171: 1.70854520e-26 - art_sys_172: -1.24154468e-36 - art_sys_173: 1.14183827e-37 - art_sys_174: -1.31218334e-27 - art_sys_175: 0.0 - art_sys_176: -1.82634350e-29 - art_sys_177: 0.0 - art_sys_178: 2.17698793e-31 - art_sys_179: 6.76012601e-35 - art_sys_180: -5.84887768e-36 - art_sys_181: 3.36852065e-41 - art_sys_182: 0.0 - art_sys_183: 3.54086470e-41 - art_sys_184: -3.57201710e-39 - art_sys_185: 5.10447490e-43 + art_sys_38: -4.87255390e-19 + art_sys_39: 2.06179290e-16 + art_sys_40: 1.27781561e-15 + art_sys_41: 3.35534776e-07 + art_sys_42: 1.58782566e-07 + art_sys_43: 7.08382321e-20 + art_sys_44: 8.01442323e-21 + art_sys_45: 8.26334170e-20 + art_sys_46: 3.28465259e-16 + art_sys_47: 5.56532381e-17 + art_sys_48: -3.81972021e-08 + art_sys_49: -3.35476516e-19 + art_sys_50: 1.87039398e-20 + art_sys_51: 5.83371202e-21 + art_sys_52: 5.75780896e-22 + art_sys_53: -5.60905671e-22 + art_sys_54: 1.70420144e-22 + art_sys_55: 3.97508084e-19 + art_sys_56: -1.58050647e-19 + art_sys_57: -1.01196651e-16 + art_sys_58: -2.05017197e-22 + art_sys_59: 4.79845948e-23 + art_sys_60: 2.92226896e-09 + art_sys_61: -3.58376460e-17 + art_sys_62: -2.64284698e-16 + art_sys_63: 3.36879003e-18 + art_sys_64: 1.33373123e-09 + art_sys_65: 4.91388409e-25 + art_sys_66: 6.29114696e-24 + art_sys_67: -6.42365476e-18 + art_sys_68: 6.93638374e-21 + art_sys_69: 2.33326935e-21 + art_sys_70: 2.77656631e-10 + art_sys_71: 7.45931429e-17 + art_sys_72: -1.84994811e-19 + art_sys_73: -6.87524033e-23 + art_sys_74: -5.78881163e-23 + art_sys_75: 9.65911728e-24 + art_sys_76: 5.03303708e-26 + art_sys_77: 1.49231097e-19 + art_sys_78: 3.08080709e-20 + art_sys_79: -4.50061711e-24 + art_sys_80: -2.11207931e-20 + art_sys_81: 1.40372581e-24 + art_sys_82: 1.75450852e-24 + art_sys_83: 5.45607947e-23 + art_sys_84: 1.19296100e-24 + art_sys_85: 6.14266402e-25 + art_sys_86: 7.43938929e-23 + art_sys_87: -3.47338570e-18 + art_sys_88: 1.38554167e-23 + art_sys_89: 1.01507820e-25 + art_sys_90: -1.61621562e-12 + art_sys_91: -5.37014576e-19 + art_sys_92: 6.44907830e-13 + art_sys_93: -7.91540281e-20 + art_sys_94: -4.41280319e-13 + art_sys_95: 1.54172090e-20 + art_sys_96: 1.86593668e-24 + art_sys_97: -1.17441645e-19 + art_sys_98: 2.18615592e-13 + art_sys_99: -1.36717269e-18 + art_sys_100: -6.05614019e-20 + art_sys_101: 1.09588808e-13 + art_sys_102: -4.63817637e-14 + art_sys_103: 2.58022901e-21 + art_sys_104: -2.04575321e-18 + art_sys_105: -1.83560730e-14 + art_sys_106: 2.25444455e-19 + art_sys_107: 1.25350539e-24 + art_sys_108: -7.69655627e-26 + art_sys_109: -3.19759927e-25 + art_sys_110: 1.10369721e-20 + art_sys_111: 6.77675169e-15 + art_sys_112: 3.32874697e-22 + art_sys_113: -3.08417654e-27 + art_sys_114: -2.36548069e-15 + art_sys_115: -1.98163014e-22 + art_sys_116: 1.05666308e-20 + art_sys_117: 9.94409991e-16 + art_sys_118: 7.31671893e-22 + art_sys_119: -3.58671191e-16 + art_sys_120: -1.81453699e-20 + art_sys_121: 5.48529208e-23 + art_sys_122: -1.20432459e-16 + art_sys_123: -4.00947257e-17 + art_sys_124: -4.34675612e-23 + art_sys_125: -5.19270897e-21 + art_sys_126: 1.23418733e-22 + art_sys_127: 1.30765846e-17 + art_sys_128: 1.45837978e-22 + art_sys_129: -3.39823242e-18 + art_sys_130: 2.31677516e-22 + art_sys_131: -9.29275848e-22 + art_sys_132: 1.16214433e-18 + art_sys_133: 2.72175740e-21 + art_sys_134: 5.55505181e-24 + art_sys_135: -1.97862542e-19 + art_sys_136: 5.43753459e-22 + art_sys_137: -6.00963114e-26 + art_sys_138: -4.15359673e-20 + art_sys_139: 1.92273517e-20 + art_sys_140: 2.83674702e-21 + art_sys_141: -4.35363016e-22 + art_sys_142: -3.65909089e-23 + art_sys_143: -2.01042497e-26 + art_sys_144: -3.58978576e-26 + art_sys_145: -1.45492970e-27 + art_sys_146: -0.0 + art_sys_147: -1.49303259e-24 + art_sys_148: -5.12444219e-24 + art_sys_149: -5.12444219e-24 + art_sys_150: 1.10658250e-23 + art_sys_151: 1.10658250e-23 + art_sys_152: -1.99688950e-22 + art_sys_153: 1.06987687e-23 + art_sys_154: -1.65299413e-27 + art_sys_155: 5.63507233e-35 + art_sys_156: -2.24655910e-39 + art_sys_157: -9.27578741e-38 + art_sys_158: 0.0 + art_sys_159: 1.16669279e-25 + art_sys_160: 5.63279324e-27 + art_sys_161: -3.38125617e-27 + art_sys_162: 5.79814058e-29 + art_sys_163: -2.59385945e-25 + art_sys_164: -1.53664374e-25 + art_sys_165: 2.34078685e-26 + art_sys_166: -1.06564041e-33 + art_sys_167: 3.21953469e-34 + art_sys_168: 2.26462625e-34 + art_sys_169: 1.73537158e-33 + art_sys_170: -1.05570534e-33 + art_sys_171: -1.11448604e-32 + art_sys_172: 1.97812166e-31 + art_sys_173: 9.98918700e-33 + art_sys_174: 6.78641392e-33 + art_sys_175: -7.89992339e-39 + art_sys_176: 1.46595615e-33 + art_sys_177: -3.05013649e-34 + art_sys_178: 8.79093779e-35 + art_sys_179: -1.10586832e-35 + art_sys_180: -7.55165414e-35 + art_sys_181: -5.67610302e-37 + art_sys_182: -1.87727094e-37 + art_sys_183: 3.14330251e-39 + art_sys_184: -3.71103086e-41 + art_sys_185: -1.08891376e-41 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -4604,191 +4604,191 @@ bins: RelativeStatFSR-: -3.87533944e+00 luminosity_uncertainty: 4.93402000e+02 uncorrelated_uncertainty: 189.77 -- art_sys_1: 4.80887076e-30 - art_sys_2: 1.59662485e-20 - art_sys_3: 1.81848307e-16 +- art_sys_1: 8.04840293e-32 + art_sys_2: 1.26943538e-19 + art_sys_3: 2.87385985e-19 art_sys_4: 9.31506862e+00 - art_sys_5: -1.04713846e-17 - art_sys_6: 1.13093054e-16 - art_sys_7: -7.79292603e+01 - art_sys_8: -9.53018215e-15 - art_sys_9: 2.67856473e+01 - art_sys_10: -3.35323172e-16 - art_sys_11: -1.41148615e-14 + art_sys_5: 1.14197941e-14 + art_sys_6: -8.91932768e-17 + art_sys_7: 7.79292603e+01 + art_sys_8: 1.52306587e-17 + art_sys_9: -2.67856473e+01 + art_sys_10: 4.33145920e-16 + art_sys_11: 7.58853377e-15 art_sys_12: 1.13989659e+01 - art_sys_13: -2.05290058e-16 - art_sys_14: 4.38121108e-01 - art_sys_15: 4.40084207e-16 - art_sys_16: -1.22818175e-01 - art_sys_17: -1.02596959e-16 - art_sys_18: -3.16000538e-16 - art_sys_19: 9.58547906e-02 - art_sys_20: -3.60685238e-17 - art_sys_21: -7.61220167e-16 + art_sys_13: 3.56813067e-16 + art_sys_14: -4.38121108e-01 + art_sys_15: 1.08064544e-16 + art_sys_16: 1.22818175e-01 + art_sys_17: -3.50219939e-16 + art_sys_18: -1.45939112e-15 + art_sys_19: -9.58547906e-02 + art_sys_20: 3.79223127e-17 + art_sys_21: -3.39851831e-17 art_sys_22: -2.09371166e-02 - art_sys_23: -7.94674928e-17 - art_sys_24: -2.02427382e-16 - art_sys_25: 3.26868799e-15 - art_sys_26: -3.12944662e-17 - art_sys_27: -5.59192834e-19 - art_sys_28: -1.54543277e-19 - art_sys_29: 2.15702334e-19 - art_sys_30: 7.64966904e-05 - art_sys_31: 4.05814976e-05 - art_sys_32: 1.19996994e-19 - art_sys_33: 6.46111853e-19 - art_sys_34: -3.74162214e-17 - art_sys_35: -9.89946825e-17 - art_sys_36: 4.62582728e-16 + art_sys_23: -4.69114245e-17 + art_sys_24: -1.07902026e-16 + art_sys_25: 2.64008827e-17 + art_sys_26: -1.83512339e-17 + art_sys_27: -1.87830521e-18 + art_sys_28: 7.64966903e-05 + art_sys_29: -4.05814976e-05 + art_sys_30: -9.52677389e-20 + art_sys_31: -3.57845241e-19 + art_sys_32: -5.22464212e-20 + art_sys_33: 8.39162860e-20 + art_sys_34: 2.85408706e-17 + art_sys_35: 1.72100492e-16 + art_sys_36: 2.75971692e-15 art_sys_37: -1.55809470e-05 - art_sys_38: 7.84571069e-19 - art_sys_39: 7.45362052e-16 - art_sys_40: -1.32673505e-15 - art_sys_41: 1.27380062e-06 - art_sys_42: 6.04373986e-07 - art_sys_43: -6.52863766e-18 - art_sys_44: 1.50292084e-18 - art_sys_45: -2.24008116e-20 - art_sys_46: 4.27797990e-16 - art_sys_47: -7.73160985e-17 + art_sys_38: -8.25259762e-19 + art_sys_39: -5.46495970e-16 + art_sys_40: -4.84616225e-15 + art_sys_41: -1.27380061e-06 + art_sys_42: -6.04373986e-07 + art_sys_43: 3.07421041e-20 + art_sys_44: -1.40838906e-20 + art_sys_45: 2.53661132e-19 + art_sys_46: -1.11968159e-15 + art_sys_47: -2.12463429e-16 art_sys_48: 1.45843388e-07 - art_sys_49: 1.21729835e-20 - art_sys_50: 1.13856897e-17 - art_sys_51: -7.37685939e-20 - art_sys_52: 2.68881184e-20 - art_sys_53: -4.53221856e-19 - art_sys_54: -1.21792596e-08 - art_sys_55: 1.68497203e-15 - art_sys_56: -3.95012518e-16 - art_sys_57: 5.23360514e-09 - art_sys_58: -1.92891047e-18 - art_sys_59: -1.67032202e-20 - art_sys_60: -7.10444719e-22 - art_sys_61: -4.24320089e-22 - art_sys_62: 3.72122228e-22 - art_sys_63: 2.38405646e-24 - art_sys_64: 1.50864939e-19 - art_sys_65: 4.92363837e-23 - art_sys_66: 3.81622936e-24 - art_sys_67: 1.61032461e-23 - art_sys_68: 2.46853632e-19 - art_sys_69: 4.21640172e-19 - art_sys_70: -1.12523250e-09 - art_sys_71: -2.25042675e-16 - art_sys_72: 2.17779475e-19 - art_sys_73: 8.09373336e-19 - art_sys_74: 6.25882359e-18 - art_sys_75: -9.87333120e-27 - art_sys_76: 2.03075367e-24 - art_sys_77: 1.97847607e-24 - art_sys_78: -1.17084290e-17 - art_sys_79: 6.36670963e-12 - art_sys_80: 2.28112076e-25 - art_sys_81: -8.44044678e-27 - art_sys_82: 2.16479411e-26 - art_sys_83: -3.68078232e-20 - art_sys_84: -2.34301196e-12 - art_sys_85: -3.42248425e-17 - art_sys_86: 1.63356593e-19 - art_sys_87: 1.74610440e-12 - art_sys_88: -2.90666318e-27 - art_sys_89: -7.82371544e-20 - art_sys_90: 8.37717994e-13 - art_sys_91: -4.76244630e-18 - art_sys_92: 4.26898850e-13 - art_sys_93: 6.33162166e-20 - art_sys_94: 5.67862919e-22 - art_sys_95: 1.80289831e-13 - art_sys_96: 5.02347894e-19 - art_sys_97: -7.15573707e-14 - art_sys_98: -9.49865905e-19 - art_sys_99: 1.30590763e-22 - art_sys_100: -1.29324558e-27 - art_sys_101: -6.28515754e-27 - art_sys_102: -2.64888058e-14 - art_sys_103: -4.14320307e-22 - art_sys_104: 9.24537217e-15 - art_sys_105: -5.94010666e-23 - art_sys_106: -2.37288016e-20 - art_sys_107: 3.89377473e-15 - art_sys_108: -7.32171727e-23 - art_sys_109: 1.40636774e-15 - art_sys_110: 6.68790353e-20 - art_sys_111: -8.77907432e-23 - art_sys_112: -4.71911682e-16 - art_sys_113: 1.57250299e-16 - art_sys_114: -5.13217775e-17 - art_sys_115: 1.07496368e-21 - art_sys_116: 1.33834888e-17 - art_sys_117: -4.92913941e-20 - art_sys_118: -4.48624129e-18 - art_sys_119: -3.20065253e-23 - art_sys_120: -1.16231489e-22 - art_sys_121: 1.20496144e-23 - art_sys_122: 4.74827658e-24 - art_sys_123: 5.99346589e-23 - art_sys_124: -2.04208936e-24 - art_sys_125: -7.48980382e-19 - art_sys_126: 1.67311981e-23 - art_sys_127: -7.24125908e-20 - art_sys_128: 4.89143829e-24 - art_sys_129: -1.55698700e-24 - art_sys_130: -9.60703471e-22 - art_sys_131: 3.00820158e-22 - art_sys_132: 3.49747604e-27 - art_sys_133: -9.68561505e-27 - art_sys_134: 1.08439352e-24 - art_sys_135: 1.75638808e-28 - art_sys_136: 8.07657374e-28 - art_sys_137: -1.13475071e-28 - art_sys_138: 1.26013230e-28 - art_sys_139: -1.02338803e-27 - art_sys_140: 1.59126608e-28 - art_sys_141: 1.77489784e-27 - art_sys_142: 1.34274702e-28 - art_sys_143: 1.95084458e-29 - art_sys_144: 1.01331147e-28 - art_sys_145: 1.42861916e-27 - art_sys_146: 1.09101532e-27 - art_sys_147: 2.01557854e-27 - art_sys_148: 5.24208713e-28 - art_sys_149: -1.10864739e-28 - art_sys_150: 2.70198781e-31 - art_sys_151: 1.85920345e-29 - art_sys_152: -5.34220898e-32 - art_sys_153: 6.27756836e-33 - art_sys_154: -8.05408907e-33 - art_sys_155: 1.55343436e-34 - art_sys_156: 2.09343644e-34 - art_sys_157: -6.15139823e-35 - art_sys_158: 6.30495733e-36 - art_sys_159: 1.85044301e-35 - art_sys_160: -5.30066908e-35 - art_sys_161: -7.55356167e-37 - art_sys_162: -7.22665086e-37 - art_sys_163: 7.18569099e-36 - art_sys_164: -5.07242149e-35 - art_sys_165: 4.25509256e-36 - art_sys_166: -6.26600552e-36 - art_sys_167: -3.90043388e-35 - art_sys_168: -1.44301779e-28 - art_sys_169: 5.54253353e-36 - art_sys_170: -8.27965081e-27 - art_sys_171: -6.68636034e-26 - art_sys_172: 4.86350778e-36 - art_sys_173: -4.48272518e-37 - art_sys_174: 5.13442128e-27 - art_sys_175: 0.0 - art_sys_176: 7.14697681e-29 - art_sys_177: 0.0 - art_sys_178: -8.52104811e-31 - art_sys_179: -2.64398893e-34 - art_sys_180: 2.28782627e-35 - art_sys_181: -1.31746298e-40 - art_sys_182: 0.0 - art_sys_183: -1.38328612e-40 - art_sys_184: 1.40080536e-38 - art_sys_185: -2.00005083e-42 + art_sys_49: 9.77458134e-19 + art_sys_50: -9.36620736e-20 + art_sys_51: -2.84589715e-20 + art_sys_52: 1.01460195e-21 + art_sys_53: 2.15234526e-21 + art_sys_54: -6.48926170e-22 + art_sys_55: -1.48980546e-19 + art_sys_56: 6.90251091e-19 + art_sys_57: 3.86354019e-16 + art_sys_58: 8.71188033e-22 + art_sys_59: -1.87872590e-22 + art_sys_60: -1.21792599e-08 + art_sys_61: 1.10956875e-16 + art_sys_62: 1.03379161e-15 + art_sys_63: -1.36605152e-17 + art_sys_64: -5.23360472e-09 + art_sys_65: -2.02993780e-24 + art_sys_66: -2.54543937e-23 + art_sys_67: 2.38219189e-17 + art_sys_68: 2.27623985e-20 + art_sys_69: -6.18490500e-20 + art_sys_70: -1.12523249e-09 + art_sys_71: -3.02128354e-16 + art_sys_72: 3.60035428e-19 + art_sys_73: 2.40255086e-22 + art_sys_74: 2.21149161e-22 + art_sys_75: -3.74752805e-23 + art_sys_76: -1.91182407e-25 + art_sys_77: -1.85639961e-19 + art_sys_78: -1.43198143e-19 + art_sys_79: 1.67428485e-23 + art_sys_80: 8.06768758e-20 + art_sys_81: -5.44487258e-24 + art_sys_82: -6.78342092e-24 + art_sys_83: -2.13562355e-22 + art_sys_84: -4.52579661e-24 + art_sys_85: -2.40883200e-24 + art_sys_86: -2.91186371e-22 + art_sys_87: 1.27746225e-17 + art_sys_88: -5.44188018e-23 + art_sys_89: -4.81754452e-25 + art_sys_90: 6.36670478e-12 + art_sys_91: 2.08757669e-18 + art_sys_92: -2.34299319e-12 + art_sys_93: 2.26396997e-19 + art_sys_94: 1.74611948e-12 + art_sys_95: -6.16274784e-20 + art_sys_96: -7.31410227e-24 + art_sys_97: 4.56022152e-19 + art_sys_98: -8.37721882e-13 + art_sys_99: 5.34929398e-18 + art_sys_100: 2.37302997e-19 + art_sys_101: -4.26892610e-13 + art_sys_102: 1.80293857e-13 + art_sys_103: -1.01970122e-20 + art_sys_104: 8.08709507e-18 + art_sys_105: 7.15400971e-14 + art_sys_106: -8.79434265e-19 + art_sys_107: -4.91620792e-24 + art_sys_108: 3.15340257e-25 + art_sys_109: 1.25975712e-24 + art_sys_110: -4.26170807e-20 + art_sys_111: -2.64874878e-14 + art_sys_112: -1.34773877e-21 + art_sys_113: 8.43169609e-27 + art_sys_114: 9.24502304e-15 + art_sys_115: 7.66234286e-22 + art_sys_116: -4.16523859e-20 + art_sys_117: -3.89420380e-15 + art_sys_118: -2.87031065e-21 + art_sys_119: 1.40510324e-15 + art_sys_120: 7.09912546e-20 + art_sys_121: -2.16010618e-22 + art_sys_122: 4.72164402e-16 + art_sys_123: 1.57279185e-16 + art_sys_124: 1.70609478e-22 + art_sys_125: 2.03058052e-20 + art_sys_126: -4.84425464e-22 + art_sys_127: -5.13032740e-17 + art_sys_128: -5.72562636e-22 + art_sys_129: 1.33377214e-17 + art_sys_130: -9.09401040e-22 + art_sys_131: 3.64789018e-21 + art_sys_132: -4.56151612e-18 + art_sys_133: -1.06831592e-20 + art_sys_134: -2.18040723e-23 + art_sys_135: 7.76758290e-19 + art_sys_136: -2.13452410e-21 + art_sys_137: 2.35931844e-25 + art_sys_138: 1.61591010e-19 + art_sys_139: -7.54881680e-20 + art_sys_140: -1.11372114e-20 + art_sys_141: 1.70917253e-21 + art_sys_142: 1.43611398e-22 + art_sys_143: 7.89331284e-26 + art_sys_144: 1.40934545e-25 + art_sys_145: 5.73190187e-27 + art_sys_146: 0.0 + art_sys_147: 5.85548361e-24 + art_sys_148: 2.01566025e-23 + art_sys_149: 2.01566025e-23 + art_sys_150: -4.35346271e-23 + art_sys_151: -4.35346271e-23 + art_sys_152: 7.82717706e-22 + art_sys_153: -4.19127135e-23 + art_sys_154: 6.45966542e-27 + art_sys_155: -2.20871233e-34 + art_sys_156: 8.81886213e-39 + art_sys_157: 3.63796913e-37 + art_sys_158: -0.0 + art_sys_159: -4.54067941e-25 + art_sys_160: -2.17287879e-26 + art_sys_161: 1.30497606e-26 + art_sys_162: -4.61952094e-28 + art_sys_163: 1.02005772e-24 + art_sys_164: 6.03000013e-25 + art_sys_165: -9.15038376e-26 + art_sys_166: 3.18778946e-33 + art_sys_167: -9.61348352e-34 + art_sys_168: -7.18614308e-34 + art_sys_169: -6.08972611e-33 + art_sys_170: 3.28873923e-33 + art_sys_171: 3.63432489e-32 + art_sys_172: -6.51623420e-31 + art_sys_173: -3.10083576e-32 + art_sys_174: -2.33782204e-32 + art_sys_175: 3.09969060e-38 + art_sys_176: -5.21666428e-33 + art_sys_177: 1.12980157e-33 + art_sys_178: -3.18730237e-34 + art_sys_179: 4.10859294e-35 + art_sys_180: 2.84687096e-34 + art_sys_181: 1.62716507e-36 + art_sys_182: 6.63543577e-37 + art_sys_183: -1.07437557e-38 + art_sys_184: 1.38700710e-40 + art_sys_185: 4.27684088e-41 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -4895,191 +4895,191 @@ bins: RelativeStatFSR-: -1.92086065e+00 luminosity_uncertainty: 2.24647540e+02 uncorrelated_uncertainty: 86.4029 -- art_sys_1: -6.73641674e-30 - art_sys_2: -1.10581230e-20 - art_sys_3: -2.54747582e-16 +- art_sys_1: -1.15781078e-31 + art_sys_2: -1.77832590e-19 + art_sys_3: 5.08179510e-20 art_sys_4: -1.30492895e+01 - art_sys_5: 1.37419045e-15 - art_sys_6: -1.12198981e-16 - art_sys_7: -1.69691686e+01 - art_sys_8: 1.55463817e-14 - art_sys_9: 4.73628524e+01 - art_sys_10: 5.47804641e-16 - art_sys_11: 1.94203117e-14 + art_sys_5: 4.80939840e-15 + art_sys_6: 1.25832104e-16 + art_sys_7: 1.69691686e+01 + art_sys_8: 5.69046080e-15 + art_sys_9: -4.73628524e+01 + art_sys_10: 6.36157839e-16 + art_sys_11: -6.06236925e-15 art_sys_12: -1.14751957e+01 - art_sys_13: 1.34851225e-16 - art_sys_14: -4.10769516e-01 - art_sys_15: -1.64665761e-15 - art_sys_16: 2.65060630e-01 - art_sys_17: 3.02580553e-16 - art_sys_18: 4.93106926e-16 - art_sys_19: -1.86916404e-01 - art_sys_20: 2.79841151e-17 - art_sys_21: 7.14027248e-16 + art_sys_13: 7.55557412e-16 + art_sys_14: 4.10769516e-01 + art_sys_15: -1.57101941e-16 + art_sys_16: -2.65060630e-01 + art_sys_17: 5.70713217e-16 + art_sys_18: 2.43524449e-15 + art_sys_19: 1.86916404e-01 + art_sys_20: -4.07269697e-18 + art_sys_21: 9.22966939e-17 art_sys_22: 4.93383896e-02 - art_sys_23: 2.48090815e-17 - art_sys_24: 2.84147055e-16 - art_sys_25: 4.06695639e-16 - art_sys_26: -4.13451317e-17 - art_sys_27: 1.40434014e-17 - art_sys_28: 8.42287238e-19 - art_sys_29: -9.67128941e-19 - art_sys_30: -2.74527893e-04 - art_sys_31: -1.18775915e-04 - art_sys_32: 1.42014698e-18 - art_sys_33: -2.15683486e-19 - art_sys_34: 4.28856490e-17 - art_sys_35: 1.21986465e-16 - art_sys_36: -1.54757184e-15 + art_sys_23: -1.87936010e-17 + art_sys_24: 2.41320984e-16 + art_sys_25: -9.40013596e-17 + art_sys_26: 6.08799842e-17 + art_sys_27: 4.07718505e-18 + art_sys_28: -2.74527893e-04 + art_sys_29: 1.18775915e-04 + art_sys_30: 3.07046573e-19 + art_sys_31: 1.27099845e-18 + art_sys_32: 5.82109207e-20 + art_sys_33: 1.61318820e-19 + art_sys_34: -5.43501875e-17 + art_sys_35: -2.06713589e-16 + art_sys_36: -9.12691244e-15 art_sys_37: 5.14524319e-05 - art_sys_38: -5.46314987e-19 - art_sys_39: -2.10859708e-15 - art_sys_40: 4.49218318e-15 - art_sys_41: -4.30821301e-06 - art_sys_42: -1.98048140e-06 - art_sys_43: 2.91598834e-19 - art_sys_44: -5.19753669e-19 - art_sys_45: -5.41198932e-20 - art_sys_46: -1.22383467e-15 - art_sys_47: 2.68555495e-16 + art_sys_38: -4.81339029e-19 + art_sys_39: 1.33829779e-15 + art_sys_40: 1.63810169e-14 + art_sys_41: 4.30821299e-06 + art_sys_42: 1.98048140e-06 + art_sys_43: -5.31277664e-20 + art_sys_44: -1.42707702e-20 + art_sys_45: 2.35356107e-19 + art_sys_46: 3.40661461e-15 + art_sys_47: 7.34639517e-16 art_sys_48: -5.04535564e-07 - art_sys_49: -1.27474784e-20 - art_sys_50: -4.03298131e-17 - art_sys_51: 2.33669604e-19 - art_sys_52: -8.44119618e-20 - art_sys_53: 1.08992707e-18 - art_sys_54: 3.86240906e-08 - art_sys_55: -5.33427015e-15 - art_sys_56: 1.30420115e-15 - art_sys_57: -1.79167851e-08 - art_sys_58: 9.07113553e-18 - art_sys_59: 5.61541186e-20 - art_sys_60: 2.40033452e-21 - art_sys_61: 1.42543292e-21 - art_sys_62: -1.25163447e-21 - art_sys_63: -7.60647935e-24 - art_sys_64: -8.00513777e-19 - art_sys_65: -1.65386286e-22 - art_sys_66: -1.29850779e-23 - art_sys_67: -5.40096915e-23 - art_sys_68: -8.35319730e-19 - art_sys_69: -1.40600798e-18 - art_sys_70: 3.78340218e-09 - art_sys_71: 7.55751273e-16 - art_sys_72: -7.48553086e-19 - art_sys_73: -1.28901023e-18 - art_sys_74: -2.07296792e-17 - art_sys_75: 1.32159686e-25 - art_sys_76: -6.61455912e-24 - art_sys_77: -6.03817496e-24 - art_sys_78: 4.15585364e-17 - art_sys_79: -2.18813234e-11 - art_sys_80: -7.25155024e-25 - art_sys_81: 2.65639273e-26 - art_sys_82: -7.92459959e-26 - art_sys_83: 1.36865862e-19 - art_sys_84: 8.96465810e-12 - art_sys_85: 1.16952926e-16 - art_sys_86: -5.89264501e-19 - art_sys_87: -6.14476503e-12 - art_sys_88: 9.46744331e-27 - art_sys_89: 2.83683935e-19 - art_sys_90: -3.05401786e-12 - art_sys_91: 1.62581636e-17 - art_sys_92: -1.54418717e-12 - art_sys_93: -2.31140266e-19 - art_sys_94: -1.76447906e-21 - art_sys_95: -6.54558234e-13 - art_sys_96: -1.68172154e-18 - art_sys_97: 2.60368606e-13 - art_sys_98: 3.45832014e-18 - art_sys_99: -3.95993149e-22 - art_sys_100: 4.32877927e-27 - art_sys_101: 2.10046812e-26 - art_sys_102: 9.62780376e-14 - art_sys_103: 1.50253131e-21 - art_sys_104: -3.36799462e-14 - art_sys_105: 2.15544299e-22 - art_sys_106: 8.67336981e-20 - art_sys_107: -1.41739236e-14 - art_sys_108: 2.65260838e-22 - art_sys_109: -5.12293888e-15 - art_sys_110: -2.43578429e-19 - art_sys_111: 3.21576566e-22 - art_sys_112: 1.71927174e-15 - art_sys_113: -5.72891140e-16 - art_sys_114: 1.87022287e-16 - art_sys_115: -3.91612707e-21 - art_sys_116: -4.87684461e-17 - art_sys_117: 1.65792595e-19 - art_sys_118: 1.63492262e-17 - art_sys_119: 1.16829661e-22 - art_sys_120: 4.22856945e-22 - art_sys_121: -4.42849495e-23 - art_sys_122: -1.70547905e-23 - art_sys_123: -2.18813759e-22 - art_sys_124: 7.09992752e-24 - art_sys_125: 2.72963670e-18 - art_sys_126: -6.07396907e-23 - art_sys_127: 2.63910447e-19 - art_sys_128: -1.78108527e-23 - art_sys_129: 5.67307281e-24 - art_sys_130: 3.50008700e-21 - art_sys_131: -1.09597139e-21 - art_sys_132: -1.27239240e-26 - art_sys_133: 3.52212717e-26 - art_sys_134: -3.90398016e-24 - art_sys_135: -5.31024807e-28 - art_sys_136: -2.66732207e-27 - art_sys_137: 3.68627057e-28 - art_sys_138: -4.01662874e-28 - art_sys_139: 3.42006188e-27 - art_sys_140: -5.11419204e-28 - art_sys_141: -6.45691897e-27 - art_sys_142: -4.49624865e-28 - art_sys_143: -6.50281411e-29 - art_sys_144: -3.53965840e-28 - art_sys_145: -5.21556369e-27 - art_sys_146: -3.89012521e-27 - art_sys_147: -7.26505674e-27 - art_sys_148: -1.88408630e-27 - art_sys_149: 4.01396973e-28 - art_sys_150: -1.64218988e-31 - art_sys_151: -6.75964495e-29 - art_sys_152: 1.94884521e-31 - art_sys_153: -2.29283975e-32 - art_sys_154: 2.91212712e-32 - art_sys_155: -5.87739737e-34 - art_sys_156: -7.62758532e-34 - art_sys_157: 2.23861531e-34 - art_sys_158: -2.29030601e-35 - art_sys_159: -6.74365860e-35 - art_sys_160: 1.93142774e-34 - art_sys_161: 2.75853846e-36 - art_sys_162: 2.60292624e-36 - art_sys_163: -2.58941758e-35 - art_sys_164: 1.82842042e-34 - art_sys_165: -1.51755015e-35 - art_sys_166: 2.28013373e-35 - art_sys_167: 1.41982106e-34 - art_sys_168: -8.61754283e-29 - art_sys_169: -2.00812171e-35 - art_sys_170: 3.01187397e-26 - art_sys_171: 2.43338064e-25 - art_sys_172: -1.76632279e-35 - art_sys_173: 1.63362998e-36 - art_sys_174: -1.86848694e-26 - art_sys_175: 0.0 - art_sys_176: -2.60100546e-28 - art_sys_177: 0.0 - art_sys_178: 3.10147878e-30 - art_sys_179: 9.61685019e-34 - art_sys_180: -8.32317872e-35 - art_sys_181: 4.79244282e-40 - art_sys_182: 0.0 - art_sys_183: 5.03147307e-40 - art_sys_184: -5.10349677e-38 - art_sys_185: 7.28709608e-42 + art_sys_49: -3.29127256e-18 + art_sys_50: 2.55266877e-19 + art_sys_51: 9.48672496e-20 + art_sys_52: -2.60356817e-21 + art_sys_53: -7.25067478e-21 + art_sys_54: 2.15909982e-21 + art_sys_55: -1.13551182e-19 + art_sys_56: -2.56274351e-18 + art_sys_57: -1.33628300e-15 + art_sys_58: -2.76215344e-21 + art_sys_59: 6.49579372e-22 + art_sys_60: 3.86240918e-08 + art_sys_61: -4.13757365e-16 + art_sys_62: -3.55139409e-15 + art_sys_63: 4.59231885e-17 + art_sys_64: 1.79167838e-08 + art_sys_65: 7.00403270e-24 + art_sys_66: 8.56999597e-23 + art_sys_67: -7.85882886e-17 + art_sys_68: -1.43918298e-20 + art_sys_69: 6.94259211e-20 + art_sys_70: 3.78340209e-09 + art_sys_71: 1.01612876e-15 + art_sys_72: -1.82332464e-18 + art_sys_73: -9.62047394e-22 + art_sys_74: -7.86191740e-22 + art_sys_75: 1.24593673e-22 + art_sys_76: 6.92976868e-25 + art_sys_77: 5.78511539e-19 + art_sys_78: 5.23978054e-19 + art_sys_79: -6.08520202e-23 + art_sys_80: -2.97087893e-19 + art_sys_81: 1.87107180e-23 + art_sys_82: 2.39873391e-23 + art_sys_83: 7.78348068e-22 + art_sys_84: 1.62462280e-23 + art_sys_85: 8.27086801e-24 + art_sys_86: 1.06067168e-21 + art_sys_87: -4.76615121e-17 + art_sys_88: 1.98530310e-22 + art_sys_89: 2.07281612e-24 + art_sys_90: -2.18813044e-11 + art_sys_91: -7.57660112e-18 + art_sys_92: 8.96460053e-12 + art_sys_93: -1.20901070e-18 + art_sys_94: -6.14482114e-12 + art_sys_95: 2.26586425e-19 + art_sys_96: 2.66420689e-23 + art_sys_97: -1.65785138e-18 + art_sys_98: 3.05403061e-12 + art_sys_99: -1.84631759e-17 + art_sys_100: -8.63401625e-19 + art_sys_101: 1.54416267e-12 + art_sys_102: -6.54571479e-13 + art_sys_103: 3.75372505e-20 + art_sys_104: -2.79791027e-17 + art_sys_105: -2.60305512e-13 + art_sys_106: 3.20002914e-18 + art_sys_107: 1.79094384e-23 + art_sys_108: -1.13913594e-24 + art_sys_109: -4.59545456e-24 + art_sys_110: 1.55071893e-19 + art_sys_111: 9.62734512e-14 + art_sys_112: 4.86640588e-21 + art_sys_113: -1.93632125e-26 + art_sys_114: -3.36788777e-14 + art_sys_115: -2.75863204e-21 + art_sys_116: 1.51885302e-19 + art_sys_117: 1.41756592e-14 + art_sys_118: 1.04585343e-20 + art_sys_119: -5.11842908e-15 + art_sys_120: -2.58511699e-19 + art_sys_121: 7.87889418e-22 + art_sys_122: -1.72023732e-15 + art_sys_123: -5.73013872e-16 + art_sys_124: -6.21757662e-22 + art_sys_125: -7.39785037e-20 + art_sys_126: 1.76546122e-21 + art_sys_127: 1.86961034e-16 + art_sys_128: 2.08669478e-21 + art_sys_129: -4.86033819e-17 + art_sys_130: 3.31455074e-21 + art_sys_131: -1.32953767e-20 + art_sys_132: 1.66242010e-17 + art_sys_133: 3.89342338e-20 + art_sys_134: 7.94638379e-23 + art_sys_135: -2.83098879e-18 + art_sys_136: 7.77940660e-21 + art_sys_137: -8.60017821e-25 + art_sys_138: -5.84016597e-19 + art_sys_139: 2.75129778e-19 + art_sys_140: 4.05914564e-20 + art_sys_141: -6.22924562e-21 + art_sys_142: -5.23529627e-22 + art_sys_143: -2.87691361e-25 + art_sys_144: -5.13650891e-25 + art_sys_145: -2.07981447e-26 + art_sys_146: -0.0 + art_sys_147: -2.13316455e-23 + art_sys_148: -7.35964564e-23 + art_sys_149: -7.35964564e-23 + art_sys_150: 1.58639495e-22 + art_sys_151: 1.58639495e-22 + art_sys_152: -2.85290534e-21 + art_sys_153: 1.52766574e-22 + art_sys_154: -2.35550754e-26 + art_sys_155: 8.05009534e-34 + art_sys_156: -3.21397887e-38 + art_sys_157: -1.32533215e-36 + art_sys_158: 0.0 + art_sys_159: 1.65239777e-24 + art_sys_160: 7.76609138e-26 + art_sys_161: -4.79547279e-26 + art_sys_162: 2.07748322e-27 + art_sys_163: -3.72833479e-24 + art_sys_164: -2.19754521e-24 + art_sys_165: 3.32979479e-25 + art_sys_166: -1.08756563e-32 + art_sys_167: 3.11300416e-33 + art_sys_168: 2.41055908e-33 + art_sys_169: 2.04088570e-32 + art_sys_170: -1.00601875e-32 + art_sys_171: -1.22610149e-31 + art_sys_172: 2.13896025e-30 + art_sys_173: 1.03536849e-31 + art_sys_174: 7.69353315e-32 + art_sys_175: -1.13039596e-37 + art_sys_176: 1.69189327e-32 + art_sys_177: -3.78254100e-33 + art_sys_178: 1.04559646e-33 + art_sys_179: -1.33823039e-34 + art_sys_180: -9.23570846e-34 + art_sys_181: -5.12012338e-36 + art_sys_182: -2.25410507e-36 + art_sys_183: 3.48753514e-38 + art_sys_184: -4.86594263e-40 + art_sys_185: -1.55950225e-40 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -5186,191 +5186,191 @@ bins: RelativeStatFSR-: -9.31152783e-01 luminosity_uncertainty: 99.26956 uncorrelated_uncertainty: 38.1806 -- art_sys_1: -5.92104483e-31 - art_sys_2: -1.39101844e-21 - art_sys_3: -2.23909871e-17 +- art_sys_1: -1.00674349e-32 + art_sys_2: -1.56305602e-20 + art_sys_3: -1.19711156e-20 art_sys_4: -1.14696466e+00 - art_sys_5: 7.93311479e-17 - art_sys_6: -9.51496128e-18 - art_sys_7: 2.89837769e+00 - art_sys_8: 1.27342605e-15 - art_sys_9: 2.25816673e+00 - art_sys_10: 6.09827509e-17 - art_sys_11: 8.46364553e-15 + art_sys_5: -2.40933096e-16 + art_sys_6: 1.10302963e-17 + art_sys_7: -2.89837769e+00 + art_sys_8: 1.15851085e-16 + art_sys_9: -2.25816673e+00 + art_sys_10: 2.32010106e-17 + art_sys_11: 3.99866010e-15 art_sys_12: -2.83752156e+00 - art_sys_13: 5.29895868e-17 - art_sys_14: 4.35183622e+00 - art_sys_15: 7.09423488e-15 - art_sys_16: -8.49440649e-01 - art_sys_17: 2.60220348e-16 - art_sys_18: -2.79206656e-15 - art_sys_19: 1.02874539e+00 - art_sys_20: -2.36795986e-19 - art_sys_21: -1.28707677e-15 + art_sys_13: -2.86087827e-17 + art_sys_14: -4.35183622e+00 + art_sys_15: -1.85348753e-15 + art_sys_16: 8.49440649e-01 + art_sys_17: -6.79560100e-16 + art_sys_18: -1.11522932e-14 + art_sys_19: -1.02874539e+00 + art_sys_20: -7.75137104e-17 + art_sys_21: -4.70826800e-16 art_sys_22: -2.59103126e-01 - art_sys_23: -7.39559593e-17 - art_sys_24: -1.01294778e-15 - art_sys_25: -3.85635346e-17 - art_sys_26: -1.21159458e-16 - art_sys_27: -6.77316158e-17 - art_sys_28: -2.38669140e-18 - art_sys_29: 5.37617518e-18 - art_sys_30: 1.49271725e-03 - art_sys_31: 7.50764047e-04 - art_sys_32: -9.29510292e-18 - art_sys_33: 1.19194809e-19 - art_sys_34: -5.86037728e-17 - art_sys_35: -7.99812511e-16 - art_sys_36: 8.96406724e-15 + art_sys_23: -9.98758205e-17 + art_sys_24: -1.57660365e-15 + art_sys_25: 5.78569086e-16 + art_sys_26: -3.47118530e-16 + art_sys_27: -3.24328458e-17 + art_sys_28: 1.49271725e-03 + art_sys_29: -7.50764047e-04 + art_sys_30: -2.12684832e-18 + art_sys_31: -7.24560806e-18 + art_sys_32: 4.06284100e-19 + art_sys_33: 7.53559136e-19 + art_sys_34: 2.13199728e-16 + art_sys_35: 7.13443372e-16 + art_sys_36: 5.29476755e-14 art_sys_37: -2.98182053e-04 - art_sys_38: 1.75543002e-19 - art_sys_39: 1.26117392e-14 - art_sys_40: -2.87019999e-14 - art_sys_41: 2.75212674e-05 - art_sys_42: 1.21436058e-05 - art_sys_43: -5.18743830e-19 - art_sys_44: 1.05035482e-19 - art_sys_45: -5.32154546e-20 - art_sys_46: 7.40556653e-15 - art_sys_47: -1.65410127e-15 - art_sys_48: 3.08287719e-06 - art_sys_49: -9.69981220e-21 - art_sys_50: 2.43200447e-16 - art_sys_51: -1.34778419e-18 - art_sys_52: 5.63016940e-19 - art_sys_53: -6.91781890e-18 - art_sys_54: -2.52964686e-07 - art_sys_55: 3.48687135e-14 - art_sys_56: -8.21192974e-15 - art_sys_57: 1.08805186e-07 - art_sys_58: -6.42620393e-17 - art_sys_59: -3.52434300e-19 - art_sys_60: -1.46556085e-20 - art_sys_61: -8.92170383e-21 - art_sys_62: 7.80669272e-21 - art_sys_63: 5.75086167e-23 - art_sys_64: 5.09654859e-18 - art_sys_65: 1.04047487e-21 - art_sys_66: 7.84881108e-23 - art_sys_67: 3.36569809e-22 - art_sys_68: 4.11680874e-18 - art_sys_69: 7.22015127e-18 - art_sys_70: -2.36754079e-08 - art_sys_71: -4.78518511e-15 - art_sys_72: 4.13804633e-18 - art_sys_73: 5.21763503e-18 - art_sys_74: 1.36305882e-16 - art_sys_75: -9.10363387e-25 - art_sys_76: 3.95688623e-23 - art_sys_77: 3.62061948e-23 - art_sys_78: -2.24029352e-16 - art_sys_79: 1.08227065e-10 - art_sys_80: 4.09809321e-24 - art_sys_81: -9.60196787e-26 - art_sys_82: 4.25775696e-25 - art_sys_83: -7.60952863e-19 - art_sys_84: -4.91616924e-11 - art_sys_85: -7.06286029e-16 - art_sys_86: 3.29770671e-18 - art_sys_87: 3.35315703e-11 - art_sys_88: -5.34043208e-26 - art_sys_89: -1.57624381e-18 - art_sys_90: 1.65459888e-11 - art_sys_91: -1.04308985e-16 - art_sys_92: 8.52006639e-12 - art_sys_93: 1.29848859e-18 - art_sys_94: 1.01685483e-20 - art_sys_95: 3.60775068e-12 - art_sys_96: 1.06301476e-17 - art_sys_97: -1.44439194e-12 - art_sys_98: -1.91386640e-17 - art_sys_99: 2.48868614e-21 - art_sys_100: -2.50956352e-26 - art_sys_101: -1.20332003e-25 - art_sys_102: -5.35935485e-13 - art_sys_103: -8.43235269e-21 - art_sys_104: 1.87781680e-13 - art_sys_105: -1.31968973e-21 - art_sys_106: -4.82887445e-19 - art_sys_107: 7.92534989e-14 - art_sys_108: -1.47364301e-21 - art_sys_109: 2.86713953e-14 - art_sys_110: 1.36753932e-18 - art_sys_111: -1.82074807e-21 - art_sys_112: -9.63775957e-15 - art_sys_113: 3.21398008e-15 - art_sys_114: -1.04977629e-15 - art_sys_115: 2.20031657e-20 - art_sys_116: 2.73913005e-16 - art_sys_117: -1.04111911e-18 - art_sys_118: -9.18412480e-17 - art_sys_119: -6.58995782e-22 - art_sys_120: -2.36479051e-21 - art_sys_121: 2.52522576e-22 - art_sys_122: 9.09596141e-23 - art_sys_123: 1.22970523e-21 - art_sys_124: -3.60762271e-23 - art_sys_125: -1.53392455e-17 - art_sys_126: 3.37200269e-22 - art_sys_127: -1.48348041e-18 - art_sys_128: 9.95862629e-23 - art_sys_129: -3.18628846e-23 - art_sys_130: -1.96500645e-20 - art_sys_131: 6.15155580e-21 - art_sys_132: 7.09642865e-26 - art_sys_133: -1.96426096e-25 - art_sys_134: 2.13661103e-23 - art_sys_135: 2.77419975e-27 - art_sys_136: 1.57585905e-26 - art_sys_137: -2.37922802e-27 - art_sys_138: 2.36748040e-27 - art_sys_139: -1.92872798e-26 - art_sys_140: 3.22227382e-27 - art_sys_141: 3.60323077e-26 - art_sys_142: 2.75342408e-27 - art_sys_143: 3.79022641e-28 - art_sys_144: 1.97020711e-27 - art_sys_145: 2.87335197e-26 - art_sys_146: 2.15424426e-26 - art_sys_147: 4.00829361e-26 - art_sys_148: 1.04210845e-26 - art_sys_149: -2.21641780e-27 - art_sys_150: 6.75244360e-30 - art_sys_151: 3.71952090e-28 - art_sys_152: -1.06812498e-30 - art_sys_153: 1.29314900e-31 - art_sys_154: -1.59516206e-31 - art_sys_155: 3.17033407e-33 - art_sys_156: 4.19844929e-33 - art_sys_157: -1.22389748e-33 - art_sys_158: 1.28256207e-34 - art_sys_159: 3.79049646e-34 - art_sys_160: -1.08481898e-33 - art_sys_161: -1.54275900e-35 - art_sys_162: -1.44765800e-35 - art_sys_163: 1.43304594e-34 - art_sys_164: -1.01262107e-33 - art_sys_165: 8.47179358e-35 - art_sys_166: -1.25178946e-34 - art_sys_167: -7.80101806e-34 - art_sys_168: 1.25455210e-26 - art_sys_169: 1.10345150e-34 - art_sys_170: -1.68051390e-25 - art_sys_171: -1.35873572e-24 - art_sys_172: 9.78170043e-35 - art_sys_173: -9.16693149e-36 - art_sys_174: 1.04299876e-25 - art_sys_175: 0.0 - art_sys_176: 1.45220459e-27 - art_sys_177: 0.0 - art_sys_178: -1.73259466e-29 - art_sys_179: -5.36234052e-33 - art_sys_180: 4.64202638e-34 - art_sys_181: -2.67171782e-39 - art_sys_182: 0.0 - art_sys_183: -2.79943594e-39 - art_sys_184: 2.86502368e-37 - art_sys_185: -4.08800727e-41 + art_sys_38: -1.47794268e-18 + art_sys_39: -6.77410635e-15 + art_sys_40: -1.04628212e-13 + art_sys_41: -2.75212673e-05 + art_sys_42: -1.21436058e-05 + art_sys_43: 2.07101866e-20 + art_sys_44: 1.93969765e-20 + art_sys_45: 2.97685421e-19 + art_sys_46: -2.01688806e-14 + art_sys_47: -4.48975561e-15 + art_sys_48: 3.08287720e-06 + art_sys_49: 1.89405260e-17 + art_sys_50: -1.95836325e-18 + art_sys_51: -5.41982198e-19 + art_sys_52: 1.86868330e-20 + art_sys_53: 4.21257827e-20 + art_sys_54: -1.25275648e-20 + art_sys_55: -2.26038256e-19 + art_sys_56: 1.59637078e-17 + art_sys_57: 8.16517489e-15 + art_sys_58: 1.85189441e-20 + art_sys_59: -3.87407516e-21 + art_sys_60: -2.52964692e-07 + art_sys_61: 2.21570985e-15 + art_sys_62: 2.14951862e-14 + art_sys_63: -2.87358727e-16 + art_sys_64: -1.08805178e-07 + art_sys_65: -4.76937895e-23 + art_sys_66: -5.35616979e-22 + art_sys_67: 4.72822053e-16 + art_sys_68: 1.02920929e-20 + art_sys_69: -3.70654064e-19 + art_sys_70: -2.36754073e-08 + art_sys_71: -6.34060008e-15 + art_sys_72: 2.93335239e-18 + art_sys_73: 5.37274287e-21 + art_sys_74: 3.98052609e-21 + art_sys_75: -5.08674448e-22 + art_sys_76: -3.69411206e-24 + art_sys_77: -6.27916539e-18 + art_sys_78: -2.81884139e-18 + art_sys_79: 3.06608226e-22 + art_sys_80: 1.63492562e-18 + art_sys_81: -8.89863884e-23 + art_sys_82: -1.22693390e-22 + art_sys_83: -4.34522167e-21 + art_sys_84: -8.24944796e-23 + art_sys_85: -3.98887038e-23 + art_sys_86: -5.94831198e-21 + art_sys_87: 2.55637549e-16 + art_sys_88: -1.11272708e-21 + art_sys_89: -1.09488487e-23 + art_sys_90: 1.08226966e-10 + art_sys_91: 4.17736853e-17 + art_sys_92: -4.91613862e-11 + art_sys_93: 5.61553170e-18 + art_sys_94: 3.35318773e-11 + art_sys_95: -1.25964864e-18 + art_sys_96: -1.49547720e-22 + art_sys_97: 9.19806006e-18 + art_sys_98: -1.65460580e-11 + art_sys_99: 1.09438125e-16 + art_sys_100: 4.82374005e-18 + art_sys_101: -8.51993193e-12 + art_sys_102: 3.60782077e-12 + art_sys_103: -2.10079717e-19 + art_sys_104: 1.61943848e-16 + art_sys_105: 1.44404586e-12 + art_sys_106: -1.78090679e-17 + art_sys_107: -1.00622507e-22 + art_sys_108: 6.41228156e-24 + art_sys_109: 2.60371631e-23 + art_sys_110: -8.68628594e-19 + art_sys_111: -5.35910411e-13 + art_sys_112: -2.75606212e-20 + art_sys_113: 1.31349251e-25 + art_sys_114: 1.87776309e-13 + art_sys_115: 1.54874626e-20 + art_sys_116: -8.51998009e-19 + art_sys_117: -7.92632715e-14 + art_sys_118: -5.87009499e-20 + art_sys_119: 2.86462173e-14 + art_sys_120: 1.44996577e-18 + art_sys_121: -4.42503236e-21 + art_sys_122: 9.64314736e-15 + art_sys_123: 3.21465383e-15 + art_sys_124: 3.49274064e-21 + art_sys_125: 4.15256773e-19 + art_sys_126: -9.91727242e-21 + art_sys_127: -1.04943027e-15 + art_sys_128: -1.17267576e-20 + art_sys_129: 2.72984904e-16 + art_sys_130: -1.86224461e-20 + art_sys_131: 7.46912243e-20 + art_sys_132: -9.33869140e-17 + art_sys_133: -2.18714596e-19 + art_sys_134: -4.46390414e-22 + art_sys_135: 1.59083303e-17 + art_sys_136: -4.37104236e-20 + art_sys_137: 4.83167676e-24 + art_sys_138: 3.19096112e-18 + art_sys_139: -1.54637065e-18 + art_sys_140: -2.28142001e-19 + art_sys_141: 3.50083381e-20 + art_sys_142: 2.94170420e-21 + art_sys_143: 1.61703695e-24 + art_sys_144: 2.88684319e-24 + art_sys_145: 1.17074165e-25 + art_sys_146: 0.0 + art_sys_147: 1.19747597e-22 + art_sys_148: 4.14629052e-22 + art_sys_149: 4.14629052e-22 + art_sys_150: -8.93195393e-22 + art_sys_151: -8.93195393e-22 + art_sys_152: 1.60101002e-20 + art_sys_153: -8.56869116e-22 + art_sys_154: 1.31842487e-25 + art_sys_155: -4.51693562e-33 + art_sys_156: 1.80611049e-37 + art_sys_157: 7.43256519e-36 + art_sys_158: -0.0 + art_sys_159: -9.12422741e-24 + art_sys_160: -4.34014229e-25 + art_sys_161: 2.68736358e-25 + art_sys_162: -1.15160438e-26 + art_sys_163: 2.09258764e-23 + art_sys_164: 1.23454214e-23 + art_sys_165: -1.87175932e-24 + art_sys_166: 6.26106952e-32 + art_sys_167: -1.81047933e-32 + art_sys_168: -1.40113404e-32 + art_sys_169: -1.19868641e-31 + art_sys_170: 5.80982619e-32 + art_sys_171: 7.23599178e-31 + art_sys_172: -1.24874096e-29 + art_sys_173: -5.79244247e-31 + art_sys_174: -4.41131870e-31 + art_sys_175: 6.35090054e-37 + art_sys_176: -9.87207201e-32 + art_sys_177: 2.22405636e-32 + art_sys_178: -6.11209297e-33 + art_sys_179: 7.85521700e-34 + art_sys_180: 5.42496098e-33 + art_sys_181: 2.86669312e-35 + art_sys_182: 1.30080171e-35 + art_sys_183: -2.03796377e-37 + art_sys_184: 2.78183134e-39 + art_sys_185: 8.75846527e-40 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -5477,191 +5477,191 @@ bins: RelativeStatFSR-: -4.53259919e-01 luminosity_uncertainty: 4.41487800e+01 uncorrelated_uncertainty: 16.9803 -- art_sys_1: 2.68513252e-31 - art_sys_2: 4.19111016e-22 - art_sys_3: 1.01542446e-17 +- art_sys_1: 4.62166585e-33 + art_sys_2: 7.08841117e-21 + art_sys_3: -2.96993489e-21 art_sys_4: 5.20144986e-01 - art_sys_5: -5.94660785e-17 - art_sys_6: 8.73184597e-18 - art_sys_7: 1.00579421e+00 - art_sys_8: -6.57243678e-16 - art_sys_9: -2.41574390e+00 - art_sys_10: -2.65763371e-17 - art_sys_11: 8.72992395e-18 + art_sys_5: -2.65770018e-16 + art_sys_6: -5.01762277e-18 + art_sys_7: -1.00579421e+00 + art_sys_8: -1.69169752e-16 + art_sys_9: 2.41574390e+00 + art_sys_10: -3.15717343e-17 + art_sys_11: 2.19035583e-15 art_sys_12: 6.61875562e-01 - art_sys_13: -9.22075273e-18 - art_sys_14: 2.60188112e+00 - art_sys_15: -1.36296974e-14 - art_sys_16: 2.10082911e+00 - art_sys_17: -3.02951312e-16 - art_sys_18: 3.57474082e-15 - art_sys_19: -1.21418133e+00 - art_sys_20: -7.22419072e-17 - art_sys_21: -3.54438299e-16 + art_sys_13: -9.39158413e-17 + art_sys_14: -2.60188112e+00 + art_sys_15: 2.18045981e-15 + art_sys_16: -2.10082911e+00 + art_sys_17: -6.91085725e-16 + art_sys_18: 1.25891416e-14 + art_sys_19: 1.21418133e+00 + art_sys_20: 1.34773848e-16 + art_sys_21: 3.29194437e-16 art_sys_22: 5.29279814e-01 - art_sys_23: 8.93494880e-17 - art_sys_24: 1.52473811e-15 - art_sys_25: 1.93530579e-15 - art_sys_26: 4.32189384e-17 - art_sys_27: 1.86332337e-16 - art_sys_28: 5.37027102e-18 - art_sys_29: -1.81950682e-17 - art_sys_30: -3.47482996e-03 - art_sys_31: -1.93114766e-03 - art_sys_32: 2.87775059e-17 - art_sys_33: -1.61580472e-20 - art_sys_34: 5.02219051e-17 - art_sys_35: -2.80188292e-15 - art_sys_36: -2.73295660e-14 + art_sys_23: 3.17209470e-17 + art_sys_24: 2.21614787e-15 + art_sys_25: -1.33231281e-15 + art_sys_26: 8.21546175e-16 + art_sys_27: 1.23045658e-16 + art_sys_28: -3.47482996e-03 + art_sys_29: 1.93114766e-03 + art_sys_30: 7.10283466e-18 + art_sys_31: 2.17731082e-17 + art_sys_32: 8.99246709e-19 + art_sys_33: 2.33672853e-20 + art_sys_34: -2.61230483e-16 + art_sys_35: 1.23085513e-16 + art_sys_36: -1.61638082e-13 art_sys_37: 9.09939592e-04 - art_sys_38: -6.84954548e-20 - art_sys_39: -2.81217077e-14 - art_sys_40: 8.48572316e-14 - art_sys_41: -8.13484628e-05 - art_sys_42: -3.93824473e-05 - art_sys_43: -1.49684291e-18 - art_sys_44: 2.75755064e-19 - art_sys_45: 3.20129158e-19 - art_sys_46: -1.60126426e-14 - art_sys_47: 5.51585740e-15 + art_sys_38: -1.48724345e-19 + art_sys_39: 1.69205059e-14 + art_sys_40: 3.09234431e-13 + art_sys_41: 8.13484624e-05 + art_sys_42: 3.93824473e-05 + art_sys_43: -8.79505950e-20 + art_sys_44: -4.82602708e-20 + art_sys_45: -4.95656082e-19 + art_sys_46: 6.26520360e-14 + art_sys_47: 1.49821272e-14 art_sys_48: -1.02849356e-05 - art_sys_49: 2.85370794e-20 - art_sys_50: -8.03847183e-16 - art_sys_51: 3.75814208e-18 - art_sys_52: -1.87478159e-18 - art_sys_53: 2.30559777e-17 - art_sys_54: 8.43660051e-07 - art_sys_55: -1.15534187e-13 - art_sys_56: 2.82545928e-14 - art_sys_57: -3.84869518e-07 - art_sys_58: 7.40207708e-17 - art_sys_59: 1.24213686e-18 - art_sys_60: 5.32140737e-20 - art_sys_61: 3.11714845e-20 - art_sys_62: -2.77171339e-20 - art_sys_63: -1.85838638e-22 - art_sys_64: -1.80828964e-17 - art_sys_65: -3.62904277e-21 - art_sys_66: -2.87993616e-22 - art_sys_67: -1.19032162e-21 - art_sys_68: -2.05367188e-17 - art_sys_69: -3.58755752e-17 - art_sys_70: 8.33331616e-08 - art_sys_71: 1.65331108e-14 - art_sys_72: -1.79447689e-17 - art_sys_73: -4.40259011e-17 - art_sys_74: -4.44733693e-16 - art_sys_75: 3.92896951e-24 - art_sys_76: -1.20577180e-22 - art_sys_77: -1.04317158e-22 - art_sys_78: 9.76123935e-16 - art_sys_79: -5.39782685e-10 - art_sys_80: -1.27735027e-23 - art_sys_81: 4.96437029e-25 - art_sys_82: -1.89244580e-24 - art_sys_83: 3.18461280e-18 - art_sys_84: 1.94245812e-10 - art_sys_85: 2.52793767e-15 - art_sys_86: -1.38259288e-17 - art_sys_87: -1.45499169e-10 - art_sys_88: 1.53753782e-25 - art_sys_89: 6.61616083e-18 - art_sys_90: -7.05408961e-11 - art_sys_91: 3.33510771e-16 - art_sys_92: -3.59344397e-11 - art_sys_93: -5.39963300e-18 - art_sys_94: -4.09091602e-20 - art_sys_95: -1.52342557e-11 - art_sys_96: -3.69793002e-17 - art_sys_97: 6.05949314e-12 - art_sys_98: 8.03672876e-17 - art_sys_99: -1.00162929e-20 - art_sys_100: 7.73659196e-26 - art_sys_101: 3.66810514e-25 - art_sys_102: 2.24478643e-12 - art_sys_103: 3.50523650e-20 - art_sys_104: -7.84969789e-13 - art_sys_105: 5.50250736e-21 - art_sys_106: 2.01360141e-18 - art_sys_107: -3.30600973e-13 - art_sys_108: 6.18371086e-21 - art_sys_109: -1.19513418e-13 - art_sys_110: -5.68637465e-18 - art_sys_111: 7.51458658e-21 - art_sys_112: 4.01140415e-14 - art_sys_113: -1.33702661e-14 - art_sys_114: 4.36466656e-15 - art_sys_115: -9.15019543e-20 - art_sys_116: -1.13830004e-15 - art_sys_117: 3.64843466e-18 - art_sys_118: 3.81610304e-16 - art_sys_119: 2.72801600e-21 - art_sys_120: 9.86396819e-21 - art_sys_121: -1.03614493e-21 - art_sys_122: -3.95142638e-22 - art_sys_123: -5.10413957e-21 - art_sys_124: 1.63266263e-22 - art_sys_125: 6.37152504e-17 - art_sys_126: -1.41532329e-21 - art_sys_127: 6.16029885e-18 - art_sys_128: -4.15454528e-22 - art_sys_129: 1.32417481e-22 - art_sys_130: 8.17007046e-20 - art_sys_131: -2.55813068e-20 - art_sys_132: -2.96696252e-25 - art_sys_133: 8.21262422e-25 - art_sys_134: -9.07808350e-23 - art_sys_135: -9.00446284e-27 - art_sys_136: -4.79625645e-26 - art_sys_137: 6.85294347e-27 - art_sys_138: -7.23911304e-27 - art_sys_139: 5.91760491e-26 - art_sys_140: -9.83658898e-27 - art_sys_141: -1.50601901e-25 - art_sys_142: -8.26320758e-27 - art_sys_143: -1.19290206e-27 - art_sys_144: -7.59828776e-27 - art_sys_145: -1.24051279e-25 - art_sys_146: -8.90809698e-26 - art_sys_147: -1.68810868e-25 - art_sys_148: -4.28905579e-26 - art_sys_149: 9.30261499e-27 - art_sys_150: 3.49566721e-29 - art_sys_151: -1.58399807e-27 - art_sys_152: 4.69575721e-30 - art_sys_153: -5.29856147e-31 - art_sys_154: 6.83068907e-31 - art_sys_155: -1.52017862e-32 - art_sys_156: -1.79911814e-32 - art_sys_157: 5.26952306e-33 - art_sys_158: -5.30037815e-34 - art_sys_159: -1.57564459e-33 - art_sys_160: 4.50909062e-33 - art_sys_161: 6.46334709e-35 - art_sys_162: 5.93769394e-35 - art_sys_163: -5.98340344e-34 - art_sys_164: 4.22671476e-33 - art_sys_165: -3.36826840e-34 - art_sys_166: 5.37744377e-34 - art_sys_167: 3.34721542e-33 - art_sys_168: -9.19276456e-27 - art_sys_169: -4.69500374e-34 - art_sys_170: 7.02338816e-25 - art_sys_171: 5.67518795e-24 - art_sys_172: -4.11954576e-34 - art_sys_173: 3.81506160e-35 - art_sys_174: -4.35757293e-25 - art_sys_175: 0.0 - art_sys_176: -6.06608807e-27 - art_sys_177: 0.0 - art_sys_178: 7.23393604e-29 - art_sys_179: 2.24233412e-32 - art_sys_180: -1.94079689e-33 - art_sys_181: 1.11743150e-38 - art_sys_182: 0.0 - art_sys_183: 1.17273084e-38 - art_sys_184: -1.19126669e-36 - art_sys_185: 1.70067003e-40 + art_sys_49: -5.80974719e-17 + art_sys_50: 6.29496625e-18 + art_sys_51: 1.68109099e-18 + art_sys_52: -1.09888764e-19 + art_sys_53: -1.39603709e-19 + art_sys_54: 4.00062729e-20 + art_sys_55: -5.09150012e-19 + art_sys_56: -5.44876801e-17 + art_sys_57: -2.72403104e-14 + art_sys_58: -6.30494820e-20 + art_sys_59: 1.40241613e-20 + art_sys_60: 8.43660075e-07 + art_sys_61: -7.16258555e-15 + art_sys_62: -7.62349564e-14 + art_sys_63: 1.01147101e-15 + art_sys_64: 3.84869492e-07 + art_sys_65: 1.59665224e-22 + art_sys_66: 1.88543661e-21 + art_sys_67: -1.55165536e-15 + art_sys_68: -1.48430319e-19 + art_sys_69: 1.80207442e-18 + art_sys_70: 8.33331592e-08 + art_sys_71: 2.24178983e-14 + art_sys_72: -1.97745455e-17 + art_sys_73: -1.98793968e-20 + art_sys_74: -1.86024766e-20 + art_sys_75: 3.28274846e-21 + art_sys_76: 1.52098291e-23 + art_sys_77: 5.02717964e-18 + art_sys_78: 1.21516276e-17 + art_sys_79: -1.39898868e-21 + art_sys_80: -6.79444347e-18 + art_sys_81: 4.62302859e-22 + art_sys_82: 5.72753378e-22 + art_sys_83: 1.81803276e-20 + art_sys_84: 3.81753349e-22 + art_sys_85: 2.06046820e-22 + art_sys_86: 2.47370142e-20 + art_sys_87: -1.06458465e-15 + art_sys_88: 4.64963845e-21 + art_sys_89: 6.39602616e-23 + art_sys_90: -5.39782195e-10 + art_sys_91: -1.76361397e-16 + art_sys_92: 1.94244599e-10 + art_sys_93: -2.49109341e-17 + art_sys_94: -1.45500386e-10 + art_sys_95: 5.27003299e-18 + art_sys_96: 6.21616036e-22 + art_sys_97: -3.86098468e-17 + art_sys_98: 7.05411727e-11 + art_sys_99: -4.04945866e-16 + art_sys_100: -2.01330494e-17 + art_sys_101: 3.59338669e-11 + art_sys_102: -1.52345452e-11 + art_sys_103: 8.78320845e-19 + art_sys_104: -6.31136056e-16 + art_sys_105: -6.05803401e-12 + art_sys_106: 7.45864898e-17 + art_sys_107: 4.17717556e-22 + art_sys_108: -2.64424997e-23 + art_sys_109: -1.07098866e-22 + art_sys_110: 3.61377871e-18 + art_sys_111: 2.24468143e-12 + art_sys_112: 1.14203759e-19 + art_sys_113: -2.59075931e-26 + art_sys_114: -7.84947623e-13 + art_sys_115: -6.44268841e-20 + art_sys_116: 3.54415578e-18 + art_sys_117: 3.30642296e-13 + art_sys_118: 2.44071964e-19 + art_sys_119: -1.19408662e-13 + art_sys_120: -6.03313661e-18 + art_sys_121: 1.83880539e-20 + art_sys_122: -4.01366293e-14 + art_sys_123: -1.33731482e-14 + art_sys_124: -1.45119020e-20 + art_sys_125: -1.72623768e-18 + art_sys_126: 4.12080662e-20 + art_sys_127: 4.36325209e-15 + art_sys_128: 4.87098737e-20 + art_sys_129: -1.13445445e-15 + art_sys_130: 7.73668603e-20 + art_sys_131: -3.10329560e-19 + art_sys_132: 3.88031791e-16 + art_sys_133: 9.08779518e-19 + art_sys_134: 1.85479383e-21 + art_sys_135: -6.60812790e-17 + art_sys_136: 1.81586489e-19 + art_sys_137: -2.00803770e-23 + art_sys_138: -1.36219491e-17 + art_sys_139: 6.42212323e-18 + art_sys_140: 9.47490079e-19 + art_sys_141: -1.45403024e-19 + art_sys_142: -1.22175558e-20 + art_sys_143: -6.71540923e-24 + art_sys_144: -1.19897478e-23 + art_sys_145: -4.87286491e-25 + art_sys_146: -0.0 + art_sys_147: -4.97928209e-22 + art_sys_148: -1.71676501e-21 + art_sys_149: -1.71676501e-21 + art_sys_150: 3.70530826e-21 + art_sys_151: 3.70530826e-21 + art_sys_152: -6.65626348e-20 + art_sys_153: 3.56377871e-21 + art_sys_154: -5.49003781e-25 + art_sys_155: 1.87821759e-32 + art_sys_156: -7.50207744e-37 + art_sys_157: -3.09296658e-35 + art_sys_158: 0.0 + art_sys_159: 3.85197348e-23 + art_sys_160: 1.76463676e-24 + art_sys_161: -1.11183731e-24 + art_sys_162: 7.02583060e-26 + art_sys_163: -8.74456364e-23 + art_sys_164: -5.12758767e-23 + art_sys_165: 7.74783087e-24 + art_sys_166: -1.97400896e-31 + art_sys_167: 4.61447727e-32 + art_sys_168: 4.28755737e-32 + art_sys_169: 3.64294200e-31 + art_sys_170: -1.79904300e-31 + art_sys_171: -2.19416401e-30 + art_sys_172: 3.77871777e-29 + art_sys_173: 1.77958938e-30 + art_sys_174: 1.33981841e-30 + art_sys_175: -2.63718789e-36 + art_sys_176: 3.00356633e-31 + art_sys_177: -6.76769885e-32 + art_sys_178: 1.85752628e-32 + art_sys_179: -2.36142564e-33 + art_sys_180: -1.65084272e-32 + art_sys_181: -8.76564199e-35 + art_sys_182: -3.98733017e-35 + art_sys_183: 6.15684402e-37 + art_sys_184: -1.05466862e-38 + art_sys_185: -3.64355376e-39 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -5768,191 +5768,191 @@ bins: RelativeStatFSR-: -2.39462637e-01 luminosity_uncertainty: 2.13919680e+01 uncorrelated_uncertainty: 8.22768 -- art_sys_1: 7.00567626e-32 - art_sys_2: 1.40017792e-22 - art_sys_3: 2.64928075e-18 +- art_sys_1: 1.19746506e-33 + art_sys_2: 1.84939330e-21 + art_sys_3: 4.48236039e-22 art_sys_4: 1.35707790e-01 - art_sys_5: -1.10465454e-17 - art_sys_6: 9.65620416e-19 - art_sys_7: -1.10760699e-01 - art_sys_8: -1.15480476e-16 - art_sys_9: -2.85151985e-01 - art_sys_10: -5.31029746e-18 - art_sys_11: -3.86484383e-14 + art_sys_5: 2.17975135e-19 + art_sys_6: -1.30655097e-18 + art_sys_7: 1.10760699e-01 + art_sys_8: -4.18259538e-17 + art_sys_9: 2.85151985e-01 + art_sys_10: -3.67065902e-18 + art_sys_11: -6.38121444e-15 art_sys_12: 3.48360297e-01 - art_sys_13: -7.00107926e-18 - art_sys_14: -3.98927913e-01 - art_sys_15: -1.58896345e-14 - art_sys_16: 2.96340400e+00 - art_sys_17: -4.72523651e-16 - art_sys_18: -1.00732226e-15 - art_sys_19: 7.60760248e-01 - art_sys_20: 3.02215909e-17 - art_sys_21: 3.66391203e-15 + art_sys_13: 7.34155372e-19 + art_sys_14: 3.98927913e-01 + art_sys_15: 5.02401240e-15 + art_sys_16: -2.96340400e+00 + art_sys_17: -1.38708014e-16 + art_sys_18: -5.07210636e-15 + art_sys_19: -7.60760248e-01 + art_sys_20: -4.09125160e-16 + art_sys_21: -4.08492786e-18 art_sys_22: -6.20121551e-01 - art_sys_23: 1.52533623e-16 - art_sys_24: -1.10164807e-15 - art_sys_25: -4.59985206e-15 - art_sys_26: -7.40106986e-16 - art_sys_27: -8.31270143e-16 - art_sys_28: -5.27502032e-17 - art_sys_29: 6.39545962e-17 - art_sys_30: 1.56178637e-02 - art_sys_31: 6.16500852e-03 - art_sys_32: -9.61864965e-17 - art_sys_33: 1.49823777e-19 - art_sys_34: -5.55271705e-18 - art_sys_35: 2.43207462e-14 - art_sys_36: 9.11863475e-14 + art_sys_23: -5.46224100e-17 + art_sys_24: -2.10511355e-15 + art_sys_25: 6.07273159e-15 + art_sys_26: -3.28321536e-15 + art_sys_27: -2.09327607e-16 + art_sys_28: 1.56178637e-02 + art_sys_29: -6.16500852e-03 + art_sys_30: -2.34835180e-17 + art_sys_31: -7.37340128e-17 + art_sys_32: -3.26749341e-18 + art_sys_33: 3.80544813e-18 + art_sys_34: 3.08380492e-16 + art_sys_35: -8.96236750e-15 + art_sys_36: 5.39757044e-13 art_sys_37: -3.03805484e-03 - art_sys_38: 4.32683232e-19 - art_sys_39: 6.29100027e-14 - art_sys_40: -3.01270718e-13 - art_sys_41: 2.88771409e-04 - art_sys_42: 1.29400990e-04 - art_sys_43: 1.00456229e-19 - art_sys_44: 1.83165938e-19 - art_sys_45: -9.99889188e-19 - art_sys_46: 3.43641762e-14 - art_sys_47: -1.85216250e-14 + art_sys_38: -5.85657067e-18 + art_sys_39: -4.21776617e-14 + art_sys_40: -1.09767581e-12 + art_sys_41: -2.88771408e-04 + art_sys_42: -1.29400990e-04 + art_sys_43: -1.61054225e-19 + art_sys_44: 1.14095157e-19 + art_sys_45: 1.45022548e-18 + art_sys_46: -1.98012834e-13 + art_sys_47: -5.03090998e-14 art_sys_48: 3.45359101e-05 - art_sys_49: -7.70786781e-20 - art_sys_50: 2.72608796e-15 - art_sys_51: -1.28178000e-17 - art_sys_52: 6.18704378e-18 - art_sys_53: -7.60151983e-17 - art_sys_54: -2.77904204e-06 - art_sys_55: 3.79301527e-13 - art_sys_56: -9.21371461e-14 - art_sys_57: 1.24319193e-06 - art_sys_58: -6.17543372e-18 - art_sys_59: -4.06158839e-18 - art_sys_60: -1.69502415e-19 - art_sys_61: -1.02313554e-19 - art_sys_62: 8.99143415e-20 - art_sys_63: 8.25870419e-22 - art_sys_64: 5.91858624e-17 - art_sys_65: 1.19551475e-20 - art_sys_66: 9.05548668e-22 - art_sys_67: 3.85804255e-21 - art_sys_68: 4.78231080e-17 - art_sys_69: 8.37169819e-17 - art_sys_70: -2.72297064e-07 - art_sys_71: -5.50129325e-14 - art_sys_72: 4.95026274e-17 - art_sys_73: 1.83865986e-16 - art_sys_74: 1.56414124e-15 - art_sys_75: -1.13533635e-23 - art_sys_76: 4.06069977e-22 - art_sys_77: 3.58217400e-22 - art_sys_78: -2.70064803e-15 - art_sys_79: 1.25633177e-09 - art_sys_80: 4.17449181e-23 - art_sys_81: -2.06361386e-24 - art_sys_82: 5.34159525e-24 - art_sys_83: -9.43752189e-18 - art_sys_84: -6.24206441e-10 - art_sys_85: -8.06930528e-15 - art_sys_86: 4.09541234e-17 - art_sys_87: 4.02077029e-10 - art_sys_88: -5.29882626e-25 - art_sys_89: -1.95418964e-17 - art_sys_90: 2.04630177e-10 - art_sys_91: -1.18712463e-15 - art_sys_92: 1.04930809e-10 - art_sys_93: 1.62424177e-17 - art_sys_94: 1.29405785e-19 - art_sys_95: 4.46907016e-11 - art_sys_96: 1.20831650e-16 - art_sys_97: -1.79368427e-11 - art_sys_98: -2.37602789e-16 - art_sys_99: 3.17765595e-20 - art_sys_100: -2.56021089e-25 - art_sys_101: -1.21724303e-24 - art_sys_102: -6.66281136e-12 - art_sys_103: -1.05227975e-19 - art_sys_104: 2.33974594e-12 - art_sys_105: -1.64374082e-20 - art_sys_106: -6.02560446e-18 - art_sys_107: 9.87774041e-13 - art_sys_108: -1.82972962e-20 - art_sys_109: 3.57706193e-13 - art_sys_110: 1.70760620e-17 - art_sys_111: -2.29294902e-20 - art_sys_112: -1.20306087e-13 - art_sys_113: 4.01315001e-14 - art_sys_114: -1.31129494e-14 - art_sys_115: 2.74687124e-19 - art_sys_116: 3.42195945e-15 - art_sys_117: -1.19724672e-17 - art_sys_118: -1.14755052e-15 - art_sys_119: -8.25706511e-21 - art_sys_120: -2.94532098e-20 - art_sys_121: 3.19952282e-21 - art_sys_122: 1.10077314e-21 - art_sys_123: 1.53763829e-20 - art_sys_124: -4.09144858e-22 - art_sys_125: -1.91689496e-16 - art_sys_126: 4.18114955e-21 - art_sys_127: -1.85399845e-17 - art_sys_128: 1.24172931e-21 - art_sys_129: -3.98009332e-22 - art_sys_130: -2.45433396e-19 - art_sys_131: 7.68280992e-20 - art_sys_132: 8.83356627e-25 - art_sys_133: -2.44364904e-24 - art_sys_134: 2.61131647e-22 - art_sys_135: 2.69525760e-26 - art_sys_136: 1.61353210e-25 - art_sys_137: -2.45880294e-26 - art_sys_138: 2.40360593e-26 - art_sys_139: -1.93519704e-25 - art_sys_140: 3.38598045e-26 - art_sys_141: 4.48554724e-25 - art_sys_142: 2.86643253e-26 - art_sys_143: 3.93662604e-27 - art_sys_144: 2.28905294e-26 - art_sys_145: 3.59754557e-25 - art_sys_146: 2.61107094e-25 - art_sys_147: 4.92805158e-25 - art_sys_148: 1.26349253e-25 - art_sys_149: -2.71694966e-26 - art_sys_150: -6.46889139e-29 - art_sys_151: 4.59949884e-27 - art_sys_152: -1.34726342e-29 - art_sys_153: 1.60955517e-30 - art_sys_154: -1.96933297e-30 - art_sys_155: 4.28473746e-32 - art_sys_156: 5.24720149e-32 - art_sys_157: -1.52198297e-32 - art_sys_158: 1.59102740e-33 - art_sys_159: 4.74006446e-33 - art_sys_160: -1.35555583e-32 - art_sys_161: -1.93573202e-34 - art_sys_162: -1.75390835e-34 - art_sys_163: 1.75339225e-33 - art_sys_164: -1.24143451e-32 - art_sys_165: 1.01067818e-33 - art_sys_166: -1.55608138e-33 - art_sys_167: -9.74930080e-33 - art_sys_168: 2.44658810e-25 - art_sys_169: 1.36095638e-33 - art_sys_170: -2.09179075e-24 - art_sys_171: -1.69258250e-23 - art_sys_172: 1.21006883e-33 - art_sys_173: -1.14506760e-34 - art_sys_174: 1.29910402e-24 - art_sys_175: 0.0 - art_sys_176: 1.80898439e-26 - art_sys_177: 0.0 - art_sys_178: -2.15890994e-28 - art_sys_179: -6.67270064e-32 - art_sys_180: 5.77834616e-33 - art_sys_181: -3.32495613e-38 - art_sys_182: 0.0 - art_sys_183: -3.48156149e-38 - art_sys_184: 3.57840277e-36 - art_sys_185: -5.10478023e-40 + art_sys_49: 1.92729486e-16 + art_sys_50: -1.75544393e-17 + art_sys_51: -5.54839646e-18 + art_sys_52: 3.01782646e-19 + art_sys_53: 4.56410931e-19 + art_sys_54: -1.28260066e-19 + art_sys_55: 2.23375625e-19 + art_sys_56: 1.78855494e-16 + art_sys_57: 9.14694805e-14 + art_sys_58: 2.07231982e-19 + art_sys_59: -4.49664283e-20 + art_sys_60: -2.77904212e-06 + art_sys_61: 2.42333284e-14 + art_sys_62: 2.46041125e-13 + art_sys_63: -3.30503879e-15 + art_sys_64: -1.24319184e-06 + art_sys_65: -5.30418609e-22 + art_sys_66: -6.17166264e-21 + art_sys_67: 5.06765934e-15 + art_sys_68: 3.15291783e-19 + art_sys_69: -5.36201932e-18 + art_sys_70: -2.72297056e-07 + art_sys_71: -7.29307178e-14 + art_sys_72: 2.58691481e-17 + art_sys_73: 7.03096497e-20 + art_sys_74: 4.75769364e-20 + art_sys_75: -5.44229500e-21 + art_sys_76: -4.44851320e-23 + art_sys_77: -7.98483529e-17 + art_sys_78: -3.42100135e-17 + art_sys_79: 3.70728115e-21 + art_sys_80: 2.04177419e-17 + art_sys_81: -1.01846093e-21 + art_sys_82: -1.46740313e-21 + art_sys_83: -5.42156127e-20 + art_sys_84: -9.95739896e-22 + art_sys_85: -4.60326736e-22 + art_sys_86: -7.42449426e-20 + art_sys_87: 3.18994257e-15 + art_sys_88: -1.39354222e-20 + art_sys_89: -1.74490911e-22 + art_sys_90: 1.25633056e-09 + art_sys_91: 5.17236319e-16 + art_sys_92: -6.24202956e-10 + art_sys_93: 8.51244082e-17 + art_sys_94: 4.02080903e-10 + art_sys_95: -1.56831854e-17 + art_sys_96: -1.86747599e-21 + art_sys_97: 1.14280182e-16 + art_sys_98: -2.04631026e-10 + art_sys_99: 1.26582439e-15 + art_sys_100: 6.01177312e-17 + art_sys_101: -1.04929103e-10 + art_sys_102: 4.46915322e-11 + art_sys_103: -2.61723949e-18 + art_sys_104: 1.88713642e-15 + art_sys_105: 1.79325390e-11 + art_sys_106: -2.21499043e-16 + art_sys_107: -1.25645570e-21 + art_sys_108: 7.96823578e-23 + art_sys_109: 3.26343913e-22 + art_sys_110: -1.08445425e-17 + art_sys_111: -6.66250034e-12 + art_sys_112: -3.45194287e-19 + art_sys_113: 5.63702542e-25 + art_sys_114: 2.33968057e-12 + art_sys_115: 1.93508080e-19 + art_sys_116: -1.06361262e-17 + art_sys_117: -9.87897417e-13 + art_sys_118: -7.33186244e-19 + art_sys_119: 3.57393317e-13 + art_sys_120: 1.81028977e-17 + art_sys_121: -5.52892899e-20 + art_sys_122: 1.20373819e-13 + art_sys_123: 4.01400727e-14 + art_sys_124: 4.36393243e-20 + art_sys_125: 5.18777727e-18 + art_sys_126: -1.23914680e-19 + art_sys_127: -1.31086919e-14 + art_sys_128: -1.46544525e-19 + art_sys_129: 3.41037311e-15 + art_sys_130: -2.32720063e-19 + art_sys_131: 9.33334292e-19 + art_sys_132: -1.16687372e-15 + art_sys_133: -2.73285329e-18 + art_sys_134: -5.57766701e-21 + art_sys_135: 1.98799339e-16 + art_sys_136: -5.46209166e-19 + art_sys_137: 6.03909550e-23 + art_sys_138: 3.91635373e-17 + art_sys_139: -1.93251595e-17 + art_sys_140: -2.85110098e-18 + art_sys_141: 4.37485431e-19 + art_sys_142: 3.67626289e-20 + art_sys_143: 2.02089225e-23 + art_sys_144: 3.60763180e-23 + art_sys_145: 1.46123757e-24 + art_sys_146: 0.0 + art_sys_147: 1.49559485e-21 + art_sys_148: 5.18963166e-21 + art_sys_149: 5.18963166e-21 + art_sys_150: -1.11682179e-20 + art_sys_151: -1.11682179e-20 + art_sys_152: 1.99978794e-19 + art_sys_153: -1.07011058e-20 + art_sys_154: 1.64563033e-24 + art_sys_155: -5.64160797e-32 + art_sys_156: 2.25688661e-36 + art_sys_157: 9.27924606e-35 + art_sys_158: -0.0 + art_sys_159: -1.13302128e-22 + art_sys_160: -5.31248179e-24 + art_sys_161: 3.35255341e-24 + art_sys_162: -1.96047329e-25 + art_sys_163: 2.62520046e-22 + art_sys_164: 1.54235312e-22 + art_sys_165: -2.33244372e-23 + art_sys_166: 6.46832190e-31 + art_sys_167: -1.63359092e-31 + art_sys_168: -1.42716574e-31 + art_sys_169: -1.21704827e-30 + art_sys_170: 6.01992346e-31 + art_sys_171: 7.35319840e-30 + art_sys_172: -1.26665020e-28 + art_sys_173: -5.92591006e-30 + art_sys_174: -4.48138366e-30 + art_sys_175: 7.93759978e-36 + art_sys_176: -1.00303733e-30 + art_sys_177: 2.25641600e-31 + art_sys_178: -6.19379226e-32 + art_sys_179: 7.91757402e-33 + art_sys_180: 5.51793541e-32 + art_sys_181: 2.93768143e-34 + art_sys_182: 1.32587447e-34 + art_sys_183: -2.06361897e-36 + art_sys_184: 3.26497201e-38 + art_sys_185: 1.09530193e-38 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -6059,191 +6059,191 @@ bins: RelativeStatFSR-: -1.27827394e-01 luminosity_uncertainty: 1.05101880e+01 uncorrelated_uncertainty: 4.04238 -- art_sys_1: -5.29692885e-33 - art_sys_2: -2.93803624e-24 - art_sys_3: -2.00315905e-19 +- art_sys_1: -9.27070244e-35 + art_sys_2: -1.39835254e-22 + art_sys_3: 2.79433524e-22 art_sys_4: -1.02610600e-02 - art_sys_5: 2.21976908e-18 - art_sys_6: -8.01253297e-20 - art_sys_7: -9.31355577e-02 - art_sys_8: 5.78304306e-17 - art_sys_9: 1.44278694e-01 - art_sys_10: 1.27040764e-18 - art_sys_11: -7.41220832e-16 + art_sys_5: 2.06246067e-17 + art_sys_6: 9.94827736e-20 + art_sys_7: 9.31355577e-02 + art_sys_8: 1.72601425e-17 + art_sys_9: -1.44278694e-01 + art_sys_10: 1.83688034e-18 + art_sys_11: -7.82658142e-17 art_sys_12: -1.47170196e-02 - art_sys_13: 6.77283027e-20 - art_sys_14: -6.17935173e-01 - art_sys_15: -4.49629563e-15 - art_sys_16: 6.77278892e-01 - art_sys_17: -1.16232833e-16 - art_sys_18: -4.15529575e-15 - art_sys_19: 1.83199525e+00 - art_sys_20: -1.70337100e-17 - art_sys_21: -6.01893998e-15 + art_sys_13: 1.53962078e-17 + art_sys_14: 6.17935173e-01 + art_sys_15: 2.66190633e-15 + art_sys_16: -6.77278892e-01 + art_sys_17: 1.10049724e-16 + art_sys_18: -1.82201372e-14 + art_sys_19: -1.83199525e+00 + art_sys_20: 3.28945954e-16 + art_sys_21: -3.46446506e-16 art_sys_22: 7.48590970e-01 - art_sys_23: 4.67694427e-17 - art_sys_24: 9.71049763e-16 - art_sys_25: 1.04338109e-14 - art_sys_26: -2.77215373e-15 - art_sys_27: 7.95187707e-16 - art_sys_28: -6.08007030e-17 - art_sys_29: -1.44351875e-16 - art_sys_30: -1.18745823e-02 - art_sys_31: -1.39495047e-02 - art_sys_32: 2.28313333e-16 - art_sys_33: 6.89553964e-19 - art_sys_34: 1.62065657e-18 - art_sys_35: -8.74501585e-14 - art_sys_36: -2.11361300e-13 + art_sys_23: 6.68656820e-17 + art_sys_24: 1.79679468e-15 + art_sys_25: -4.82953074e-15 + art_sys_26: 3.64023689e-15 + art_sys_27: 1.57921680e-15 + art_sys_28: -1.18745823e-02 + art_sys_29: 1.39495047e-02 + art_sys_30: 8.21589157e-17 + art_sys_31: 1.75975216e-16 + art_sys_32: 1.77831721e-18 + art_sys_33: -7.88303634e-18 + art_sys_34: -3.19492846e-16 + art_sys_35: 3.29163857e-14 + art_sys_36: -1.25117744e-12 art_sys_37: 7.04200288e-03 - art_sys_38: -1.79272950e-18 - art_sys_39: -8.35603959e-14 - art_sys_40: 8.01827792e-13 - art_sys_41: -7.68546399e-04 - art_sys_42: -3.67068330e-04 - art_sys_43: -1.26830052e-18 - art_sys_44: 3.13103643e-19 - art_sys_45: 2.46711544e-18 - art_sys_46: -4.22174083e-14 - art_sys_47: 5.43903051e-14 + art_sys_38: 9.79577144e-18 + art_sys_39: 7.50960719e-14 + art_sys_40: 2.92135511e-12 + art_sys_41: 7.68546396e-04 + art_sys_42: 3.67068330e-04 + art_sys_43: 1.40930386e-18 + art_sys_44: -5.15529310e-20 + art_sys_45: -3.05256837e-18 + art_sys_46: 5.41830822e-13 + art_sys_47: 1.47735200e-13 art_sys_48: -1.01416353e-04 - art_sys_49: 1.57429737e-19 - art_sys_50: -7.77225053e-15 - art_sys_51: 2.53193633e-17 - art_sys_52: -1.99544041e-17 - art_sys_53: 2.41929132e-16 - art_sys_54: 8.84117222e-06 - art_sys_55: -1.20020969e-12 - art_sys_56: 2.92386383e-13 - art_sys_57: -3.93103227e-06 - art_sys_58: -1.09383888e-15 - art_sys_59: 1.31576244e-17 - art_sys_60: 5.60485639e-19 - art_sys_61: 3.26953288e-19 - art_sys_62: -2.92910428e-19 - art_sys_63: -1.99326593e-21 - art_sys_64: -1.91330921e-16 - art_sys_65: -3.82973945e-20 - art_sys_66: -3.00700929e-21 - art_sys_67: -1.25066725e-20 - art_sys_68: -2.09488126e-16 - art_sys_69: -3.65995600e-16 - art_sys_70: 8.78959851e-07 - art_sys_71: 1.74747273e-13 - art_sys_72: -1.88683061e-16 - art_sys_73: -8.00587425e-16 - art_sys_74: -4.73117108e-15 - art_sys_75: 5.37025645e-23 - art_sys_76: -9.93388621e-22 - art_sys_77: -7.69816872e-22 - art_sys_78: 1.01564781e-14 - art_sys_79: -5.50655542e-09 - art_sys_80: -9.78242376e-23 - art_sys_81: 8.11933096e-24 - art_sys_82: -1.96694362e-23 - art_sys_83: 3.38910881e-17 - art_sys_84: 1.97273979e-09 - art_sys_85: 2.58399508e-14 - art_sys_86: -1.46766049e-16 - art_sys_87: -1.52858233e-09 - art_sys_88: 1.09540934e-24 - art_sys_89: 7.03263541e-17 - art_sys_90: -7.34582247e-10 - art_sys_91: 3.40937893e-15 - art_sys_92: -3.79304310e-10 - art_sys_93: -5.79527509e-17 - art_sys_94: -4.52258847e-19 - art_sys_95: -1.60969285e-10 - art_sys_96: -3.90414260e-16 - art_sys_97: 6.43374650e-11 - art_sys_98: 8.51269765e-16 - art_sys_99: -1.11009802e-19 - art_sys_100: 6.09177933e-25 - art_sys_101: 2.77335816e-24 - art_sys_102: 2.39042330e-11 - art_sys_103: 3.75995365e-19 - art_sys_104: -8.37306383e-12 - art_sys_105: 5.87040948e-20 - art_sys_106: 2.13965597e-17 - art_sys_107: -3.53325250e-12 - art_sys_108: 6.57179171e-20 - art_sys_109: -1.27856761e-12 - art_sys_110: -6.09804907e-17 - art_sys_111: 8.12443253e-20 - art_sys_112: 4.29620277e-13 - art_sys_113: -1.43289823e-13 - art_sys_114: 4.67953930e-14 - art_sys_115: -9.82165121e-19 - art_sys_116: -1.22096742e-14 - art_sys_117: 3.85240535e-17 - art_sys_118: 4.09383082e-15 - art_sys_119: 2.93664044e-20 - art_sys_120: 1.05412352e-19 - art_sys_121: -1.12748490e-20 - art_sys_122: -4.06044172e-21 - art_sys_123: -5.47550958e-20 - art_sys_124: 1.59427469e-21 - art_sys_125: 6.83704262e-16 - art_sys_126: -1.50328900e-20 - art_sys_127: 6.61165772e-17 - art_sys_128: -4.44078423e-21 - art_sys_129: 1.42025481e-21 - art_sys_130: 8.76063160e-19 - art_sys_131: -2.74255724e-19 - art_sys_132: -3.16462536e-24 - art_sys_133: 8.75754900e-24 - art_sys_134: -9.51039116e-22 - art_sys_135: -5.13720421e-26 - art_sys_136: -3.88440702e-25 - art_sys_137: 6.34296116e-26 - art_sys_138: -5.82190475e-26 - art_sys_139: 4.24166038e-25 - art_sys_140: -8.90376349e-26 - art_sys_141: -1.60717607e-24 - art_sys_142: -7.21674357e-26 - art_sys_143: -9.81447195e-27 - art_sys_144: -7.41428234e-26 - art_sys_145: -1.33653445e-24 - art_sys_146: -9.21933985e-25 - art_sys_147: -1.77816609e-24 - art_sys_148: -4.44315888e-25 - art_sys_149: 9.78236845e-26 - art_sys_150: 7.52157717e-28 - art_sys_151: -1.68077624e-26 - art_sys_152: 5.08350778e-29 - art_sys_153: -5.68063451e-30 - art_sys_154: 7.20508780e-30 - art_sys_155: -1.74400616e-31 - art_sys_156: -1.92358134e-31 - art_sys_157: 5.60190598e-32 - art_sys_158: -5.63379360e-33 - art_sys_159: -1.69223909e-32 - art_sys_160: 4.83759101e-32 - art_sys_161: 6.94896283e-34 - art_sys_162: 6.18946478e-34 - art_sys_163: -6.28432125e-33 - art_sys_164: 4.44221893e-32 - art_sys_165: -3.41613744e-33 - art_sys_166: 5.73745552e-33 - art_sys_167: 3.57618231e-32 - art_sys_168: -5.41137030e-25 - art_sys_169: -4.96576890e-33 - art_sys_170: 7.49312769e-24 - art_sys_171: 6.05921487e-23 - art_sys_172: -4.37297451e-33 - art_sys_173: 4.09177898e-34 - art_sys_174: -4.65137769e-24 - art_sys_175: 0.0 - art_sys_176: -6.47618337e-26 - art_sys_177: 0.0 - art_sys_178: 7.72646860e-28 - art_sys_179: 2.39107672e-31 - art_sys_180: -2.07009340e-32 - art_sys_181: 1.19146583e-37 - art_sys_182: 0.0 - art_sys_183: 1.24857441e-37 - art_sys_184: -1.27731940e-35 - art_sys_185: 1.82254715e-39 + art_sys_49: -4.48207314e-16 + art_sys_50: 7.05952445e-17 + art_sys_51: 1.33282344e-17 + art_sys_52: -1.66119183e-18 + art_sys_53: -1.24061661e-18 + art_sys_54: 3.26000293e-19 + art_sys_55: -3.70162593e-19 + art_sys_56: -5.69233685e-16 + art_sys_57: -2.68606714e-13 + art_sys_58: -6.90958184e-19 + art_sys_59: 1.43183652e-19 + art_sys_60: 8.84117247e-06 + art_sys_61: -5.91789509e-14 + art_sys_62: -7.77800315e-13 + art_sys_63: 1.06685497e-14 + art_sys_64: 3.93103200e-06 + art_sys_65: 1.73667282e-21 + art_sys_66: 1.98655694e-20 + art_sys_67: -1.47654767e-14 + art_sys_68: -1.41531524e-18 + art_sys_69: 1.78119997e-17 + art_sys_70: 8.78959825e-07 + art_sys_71: 2.36336424e-13 + art_sys_72: 2.10438106e-17 + art_sys_73: -2.00190482e-19 + art_sys_74: -1.88127403e-19 + art_sys_75: 3.16664258e-20 + art_sys_76: 1.47768513e-22 + art_sys_77: 6.82742467e-17 + art_sys_78: 1.27312734e-16 + art_sys_79: -1.39074811e-20 + art_sys_80: -7.11524790e-17 + art_sys_81: 4.61384351e-21 + art_sys_82: 5.85694209e-21 + art_sys_83: 1.94463898e-19 + art_sys_84: 3.86051292e-21 + art_sys_85: 2.07941598e-21 + art_sys_86: 2.64970514e-19 + art_sys_87: -1.08248735e-14 + art_sys_88: 4.99646470e-20 + art_sys_89: 8.23260177e-22 + art_sys_90: -5.50655037e-09 + art_sys_91: -1.86346817e-15 + art_sys_92: 1.97272730e-09 + art_sys_93: -2.39847008e-16 + art_sys_94: -1.52859473e-09 + art_sys_95: 5.61749106e-17 + art_sys_96: 6.66195236e-21 + art_sys_97: -4.10315200e-16 + art_sys_98: 7.34585166e-10 + art_sys_99: -4.16075264e-15 + art_sys_100: -2.15067054e-16 + art_sys_101: 3.79298350e-10 + art_sys_102: -1.60972253e-10 + art_sys_103: 9.37121065e-18 + art_sys_104: -6.54343293e-15 + art_sys_105: -6.43221346e-11 + art_sys_106: 7.94337423e-16 + art_sys_107: 4.47818799e-21 + art_sys_108: -2.81690223e-22 + art_sys_109: -1.15410467e-21 + art_sys_110: 3.87191122e-17 + art_sys_111: 2.39031219e-11 + art_sys_112: 1.22818566e-18 + art_sys_113: 3.78960088e-24 + art_sys_114: -8.37284272e-12 + art_sys_115: -6.90666934e-19 + art_sys_116: 3.79758881e-17 + art_sys_117: 3.53368964e-12 + art_sys_118: 2.61658954e-18 + art_sys_119: -1.27744572e-12 + art_sys_120: -6.46432217e-17 + art_sys_121: 1.97256697e-19 + art_sys_122: -4.29859570e-13 + art_sys_123: -1.43319591e-13 + art_sys_124: -1.55673069e-19 + art_sys_125: -1.85105117e-17 + art_sys_126: 4.42063703e-19 + art_sys_127: 4.67799406e-14 + art_sys_128: 5.22703587e-19 + art_sys_129: -1.21683315e-14 + art_sys_130: 8.30088830e-19 + art_sys_131: -3.32934135e-18 + art_sys_132: 4.16273425e-15 + art_sys_133: 9.74924372e-18 + art_sys_134: 1.98978816e-20 + art_sys_135: -7.09077085e-16 + art_sys_136: 1.94833915e-18 + art_sys_137: -2.15500709e-22 + art_sys_138: -1.43220084e-16 + art_sys_139: 6.89212162e-17 + art_sys_140: 1.01682238e-17 + art_sys_141: -1.56034939e-18 + art_sys_142: -1.31086956e-19 + art_sys_143: -7.20713495e-23 + art_sys_144: -1.28668148e-22 + art_sys_145: -5.24053490e-24 + art_sys_146: -0.0 + art_sys_147: -5.34099380e-21 + art_sys_148: -1.84350221e-20 + art_sys_149: -1.84350221e-20 + art_sys_150: 3.97990727e-20 + art_sys_151: 3.97990727e-20 + art_sys_152: -7.13766617e-19 + art_sys_153: 3.82058066e-20 + art_sys_154: -5.87889042e-24 + art_sys_155: 2.01380828e-31 + art_sys_156: -8.05049693e-36 + art_sys_157: -3.31383289e-34 + art_sys_158: 0.0 + art_sys_159: 4.08436664e-22 + art_sys_160: 1.84761159e-23 + art_sys_161: -1.19181645e-23 + art_sys_162: 9.86165177e-25 + art_sys_163: -9.42162456e-22 + art_sys_164: -5.49990127e-22 + art_sys_165: 8.28852545e-23 + art_sys_166: -1.56602753e-30 + art_sys_167: 2.33895236e-31 + art_sys_168: 3.34417688e-31 + art_sys_169: 2.85329687e-30 + art_sys_170: -1.40021592e-30 + art_sys_171: -1.71127580e-29 + art_sys_172: 2.94791188e-28 + art_sys_173: 1.45653385e-29 + art_sys_174: 1.05406744e-29 + art_sys_175: -2.82904809e-35 + art_sys_176: 2.34902635e-30 + art_sys_177: -5.25009904e-31 + art_sys_178: 1.43634722e-31 + art_sys_179: -1.80533348e-32 + art_sys_180: -1.29280288e-31 + art_sys_181: -7.14755597e-34 + art_sys_182: -3.13652794e-34 + art_sys_183: 4.73362510e-36 + art_sys_184: -1.05197463e-37 + art_sys_185: -3.91214473e-38 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -6350,191 +6350,191 @@ bins: RelativeStatFSR-: -7.11901949e-02 luminosity_uncertainty: 5.39606600e+00 uncorrelated_uncertainty: 2.07541000e+00 -- art_sys_1: -2.80301213e-33 - art_sys_2: -4.67494154e-24 - art_sys_3: -1.06000019e-19 +- art_sys_1: -4.81744444e-35 + art_sys_2: -7.39958266e-23 + art_sys_3: 2.04329500e-23 art_sys_4: -5.42978630e-03 - art_sys_5: 5.95739536e-19 - art_sys_6: -7.82285290e-20 - art_sys_7: -7.55363663e-03 - art_sys_8: 7.93692430e-18 - art_sys_9: 2.52008319e-02 - art_sys_10: 3.04724284e-19 - art_sys_11: 1.62534016e-16 + art_sys_5: 2.34737715e-18 + art_sys_6: 5.23614665e-20 + art_sys_7: 7.55363663e-03 + art_sys_8: 4.31448447e-18 + art_sys_9: -2.52008319e-02 + art_sys_10: 3.24134582e-19 + art_sys_11: 4.68003818e-18 art_sys_12: -1.69847070e-02 - art_sys_13: 3.30635654e-19 - art_sys_14: -1.52033765e-02 - art_sys_15: -6.70917499e-16 - art_sys_16: -1.30679939e-01 - art_sys_17: 2.02492074e-17 - art_sys_18: 4.80562464e-16 - art_sys_19: 9.96196228e-02 - art_sys_20: -6.12726235e-18 - art_sys_21: -6.18172342e-16 + art_sys_13: 8.68584888e-19 + art_sys_14: 1.52033765e-02 + art_sys_15: -2.25489120e-15 + art_sys_16: 1.30679939e-01 + art_sys_17: 1.58370309e-17 + art_sys_18: -1.18768064e-15 + art_sys_19: -9.96196228e-02 + art_sys_20: 7.52633541e-17 + art_sys_21: -2.29752387e-16 art_sys_22: 1.50400337e-01 - art_sys_23: 1.23505066e-17 - art_sys_24: 2.41380415e-16 - art_sys_25: -5.76665105e-14 - art_sys_26: 1.80130833e-15 - art_sys_27: -1.00961436e-14 - art_sys_28: -9.33847483e-16 - art_sys_29: 9.40462139e-16 - art_sys_30: 1.79909351e-01 - art_sys_31: 5.52519844e-02 - art_sys_32: -1.23247246e-15 - art_sys_33: 3.52068775e-19 - art_sys_34: 7.48960833e-18 - art_sys_35: 5.05732060e-13 - art_sys_36: 1.15994292e-12 + art_sys_23: 3.29343693e-17 + art_sys_24: 7.34654240e-16 + art_sys_25: 7.03999271e-14 + art_sys_26: -3.42579431e-14 + art_sys_27: -1.85185191e-15 + art_sys_28: 1.79909351e-01 + art_sys_29: -5.52519844e-02 + art_sys_30: -3.58877477e-16 + art_sys_31: -9.56056512e-16 + art_sys_32: 1.92125768e-17 + art_sys_33: 2.61099121e-17 + art_sys_34: 9.23319135e-16 + art_sys_35: -1.94605737e-13 + art_sys_36: 6.86681839e-12 art_sys_37: -3.86479995e-02 - art_sys_38: 1.44352447e-17 - art_sys_39: 4.17562745e-13 - art_sys_40: -3.82732698e-12 - art_sys_41: 3.66843287e-03 - art_sys_42: 1.82187495e-03 - art_sys_43: -2.27321927e-17 - art_sys_44: 5.39060338e-18 - art_sys_45: -1.25333761e-17 - art_sys_46: 1.93016287e-13 - art_sys_47: -2.76068807e-13 + art_sys_38: -2.61235236e-17 + art_sys_39: -3.93002445e-13 + art_sys_40: -1.39442207e-11 + art_sys_41: -3.66843286e-03 + art_sys_42: -1.82187495e-03 + art_sys_43: -4.99217935e-18 + art_sys_44: 1.22858586e-18 + art_sys_45: 1.78048428e-17 + art_sys_46: -2.68218892e-12 + art_sys_47: -7.49861212e-13 art_sys_48: 5.14758900e-04 - art_sys_49: -7.76592910e-19 - art_sys_50: 3.99064975e-14 - art_sys_51: -1.40282702e-16 - art_sys_52: 9.57147350e-17 - art_sys_53: -1.17178054e-15 - art_sys_54: -4.28015392e-05 - art_sys_55: 5.81286484e-12 - art_sys_56: -1.44928834e-12 - art_sys_57: 1.98817104e-05 - art_sys_58: 5.07351221e-15 - art_sys_59: -6.65545971e-17 - art_sys_60: -2.83035702e-18 - art_sys_61: -1.66105714e-18 - art_sys_62: 1.47708656e-18 - art_sys_63: 1.23255682e-20 - art_sys_64: 9.69162084e-16 - art_sys_65: 1.94394882e-19 - art_sys_66: 1.50791001e-20 - art_sys_67: 6.30850014e-20 - art_sys_68: 9.42828222e-16 - art_sys_69: 1.64827417e-15 - art_sys_70: -4.44832022e-06 - art_sys_71: -8.90428655e-13 - art_sys_72: 9.24512260e-16 - art_sys_73: 3.88591889e-15 - art_sys_74: 2.46202824e-14 - art_sys_75: -2.09935494e-22 - art_sys_76: 5.23364530e-21 - art_sys_77: 4.21363738e-21 - art_sys_78: -5.05251786e-14 - art_sys_79: 2.47675555e-08 - art_sys_80: 5.46836072e-22 - art_sys_81: -3.97572171e-23 - art_sys_82: 1.01843059e-22 - art_sys_83: -1.77241961e-16 - art_sys_84: -1.13249957e-08 - art_sys_85: -1.29903493e-13 - art_sys_86: 7.68627362e-16 - art_sys_87: 7.50980257e-09 - art_sys_88: -5.86648292e-24 - art_sys_89: -3.67114938e-16 - art_sys_90: 3.84031530e-09 - art_sys_91: -1.79251981e-14 - art_sys_92: 1.96134245e-09 - art_sys_93: 3.06081444e-16 - art_sys_94: 2.44662075e-18 - art_sys_95: 8.39720258e-10 - art_sys_96: 1.94443692e-15 - art_sys_97: -3.36694549e-10 - art_sys_98: -4.45635177e-15 - art_sys_99: 6.03869906e-19 - art_sys_100: -3.30524421e-24 - art_sys_101: -1.54354439e-23 - art_sys_102: -1.25248646e-10 - art_sys_103: -1.97942973e-18 - art_sys_104: 4.40062857e-11 - art_sys_105: -3.08458615e-19 - art_sys_106: -1.13192696e-16 - art_sys_107: 1.85775034e-11 - art_sys_108: -3.43669226e-19 - art_sys_109: 6.73110671e-12 - art_sys_110: 3.21367828e-16 - art_sys_111: -4.33271473e-19 - art_sys_112: -2.26374517e-12 - art_sys_113: 7.55269951e-13 - art_sys_114: -2.46800189e-13 - art_sys_115: 5.17087460e-18 - art_sys_116: 6.44053301e-14 - art_sys_117: -1.95217743e-16 - art_sys_118: -2.15999928e-14 - art_sys_119: -1.55563952e-19 - art_sys_120: -5.53661469e-19 - art_sys_121: 6.06447993e-20 - art_sys_122: 2.04874684e-20 - art_sys_123: 2.89414180e-19 - art_sys_124: -7.32233160e-21 - art_sys_125: -3.60813816e-15 - art_sys_126: 7.84720954e-20 - art_sys_127: -3.48963921e-16 - art_sys_128: 2.33628059e-20 - art_sys_129: -7.49039272e-21 - art_sys_130: -4.61956338e-18 - art_sys_131: 1.44601464e-18 - art_sys_132: 1.66096176e-23 - art_sys_133: -4.59270010e-23 - art_sys_134: 4.86493900e-21 - art_sys_135: 3.51087825e-25 - art_sys_136: 2.06363508e-24 - art_sys_137: -3.01254439e-25 - art_sys_138: 3.09028976e-25 - art_sys_139: -2.44364873e-24 - art_sys_140: 4.45076128e-25 - art_sys_141: 8.43372497e-24 - art_sys_142: 3.66729506e-25 - art_sys_143: 5.26066714e-26 - art_sys_144: 3.90458298e-25 - art_sys_145: 6.87747717e-24 - art_sys_146: 4.77516342e-24 - art_sys_147: 9.19211762e-24 - art_sys_148: 2.30654315e-24 - art_sys_149: -5.04403276e-25 - art_sys_150: -5.40987909e-27 - art_sys_151: 8.66022820e-26 - art_sys_152: -2.61147895e-28 - art_sys_153: 2.99745490e-29 - art_sys_154: -3.71467888e-29 - art_sys_155: 9.04838487e-31 - art_sys_156: 1.00012428e-30 - art_sys_157: -2.89654619e-31 - art_sys_158: 2.96714058e-32 - art_sys_159: 8.93059462e-32 - art_sys_160: -2.55207452e-31 - art_sys_161: -3.66895854e-33 - art_sys_162: -3.18899004e-33 - art_sys_163: 3.24307907e-32 - art_sys_164: -2.30095136e-31 - art_sys_165: 1.79336407e-32 - art_sys_166: -2.95300991e-32 - art_sys_167: -1.86008107e-31 - art_sys_168: 5.16061785e-24 - art_sys_169: 2.55602580e-32 - art_sys_170: -3.93254916e-23 - art_sys_171: -3.18342819e-22 - art_sys_172: 2.26906088e-32 - art_sys_173: -2.15601642e-33 - art_sys_174: 2.44333273e-23 - art_sys_175: 0.0 - art_sys_176: 3.40240354e-25 - art_sys_177: 0.0 - art_sys_178: -4.06095052e-27 - art_sys_179: -1.25437991e-30 - art_sys_180: 1.08649311e-31 - art_sys_181: -6.25144396e-37 - art_sys_182: 0.0 - art_sys_183: -6.54507889e-37 - art_sys_184: 6.73523680e-35 - art_sys_185: -9.60719044e-39 + art_sys_49: 2.45823300e-15 + art_sys_50: -3.26054081e-16 + art_sys_51: -7.23076146e-17 + art_sys_52: 8.02023638e-18 + art_sys_53: 6.70417749e-18 + art_sys_54: -1.74700570e-18 + art_sys_55: 2.96164850e-18 + art_sys_56: 2.75552982e-15 + art_sys_57: 1.36335895e-12 + art_sys_58: 3.31155894e-18 + art_sys_59: -7.34405922e-19 + art_sys_60: -4.28015404e-05 + art_sys_61: 3.31273914e-13 + art_sys_62: 3.94139119e-12 + art_sys_63: -5.39923642e-14 + art_sys_64: -1.98817090e-05 + art_sys_65: -8.78649281e-21 + art_sys_66: -1.00886764e-19 + art_sys_67: 7.47317822e-14 + art_sys_68: 6.38303951e-18 + art_sys_69: -9.90025990e-17 + art_sys_70: -4.44832009e-06 + art_sys_71: -1.19407869e-12 + art_sys_72: 6.17441215e-16 + art_sys_73: 1.25669721e-18 + art_sys_74: 9.11669366e-19 + art_sys_75: -1.17634407e-19 + art_sys_76: -7.65251621e-22 + art_sys_77: -9.18095681e-16 + art_sys_78: -6.40161749e-16 + art_sys_79: 7.01664613e-20 + art_sys_80: 3.80899261e-16 + art_sys_81: -2.03475621e-20 + art_sys_82: -2.82459289e-20 + art_sys_83: -1.02165522e-18 + art_sys_84: -1.90670395e-20 + art_sys_85: -9.26414762e-21 + art_sys_86: -1.39641149e-18 + art_sys_87: 5.88367199e-14 + art_sys_88: -2.63393671e-19 + art_sys_89: -4.31356139e-21 + art_sys_90: 2.47675324e-08 + art_sys_91: 9.71451879e-15 + art_sys_92: -1.13249319e-08 + art_sys_93: 1.64808323e-15 + art_sys_94: 7.50987330e-09 + art_sys_95: -2.94912878e-16 + art_sys_96: -3.51357811e-20 + art_sys_97: 2.14798731e-15 + art_sys_98: -3.84033112e-09 + art_sys_99: 2.09914632e-14 + art_sys_100: 1.13069547e-15 + art_sys_101: -1.96131055e-09 + art_sys_102: 8.39735510e-10 + art_sys_103: -4.92203916e-17 + art_sys_104: 3.24759811e-14 + art_sys_105: 3.36613815e-10 + art_sys_106: -4.16437430e-15 + art_sys_107: -2.36278722e-20 + art_sys_108: 1.48925225e-21 + art_sys_109: 6.13703476e-21 + art_sys_110: -2.04063138e-16 + art_sys_111: -1.25242808e-10 + art_sys_112: -6.50212845e-18 + art_sys_113: -1.80454274e-23 + art_sys_114: 4.40050693e-11 + art_sys_115: 3.64209123e-18 + art_sys_116: -2.00126320e-16 + art_sys_117: -1.85798204e-11 + art_sys_118: -1.37985798e-17 + art_sys_119: 6.72522003e-12 + art_sys_120: 3.40677412e-16 + art_sys_121: -1.04070532e-18 + art_sys_122: 2.26501737e-12 + art_sys_123: 7.55430249e-13 + art_sys_124: 8.21348786e-19 + art_sys_125: 9.76419585e-17 + art_sys_126: -2.33237764e-18 + art_sys_127: -2.46719822e-13 + art_sys_128: -2.75840550e-18 + art_sys_129: 6.41871827e-14 + art_sys_130: -4.38065505e-18 + art_sys_131: 1.75683401e-17 + art_sys_132: -2.19637023e-14 + art_sys_133: -5.14397198e-17 + art_sys_134: -1.04986600e-19 + art_sys_135: 3.74195517e-15 + art_sys_136: -1.02812139e-17 + art_sys_137: 1.13712667e-21 + art_sys_138: 7.33405287e-16 + art_sys_139: -3.63740287e-16 + art_sys_140: -5.36636816e-17 + art_sys_141: 8.23441625e-18 + art_sys_142: 6.91861820e-19 + art_sys_143: 3.80379926e-22 + art_sys_144: 6.79035291e-22 + art_sys_145: 2.75713353e-23 + art_sys_146: 0.0 + art_sys_147: 2.81570384e-20 + art_sys_148: 9.75817172e-20 + art_sys_149: 9.75817172e-20 + art_sys_150: -2.10223534e-19 + art_sys_151: -2.10223534e-19 + art_sys_152: 3.76390771e-18 + art_sys_153: -2.01412166e-19 + art_sys_154: 3.09667160e-23 + art_sys_155: -1.06183076e-30 + art_sys_156: 4.24798115e-35 + art_sys_157: 1.74628777e-33 + art_sys_158: -0.0 + art_sys_159: -2.13146125e-21 + art_sys_160: -9.72590884e-23 + art_sys_161: 6.29445501e-23 + art_sys_162: -4.98692499e-24 + art_sys_163: 4.96956749e-21 + art_sys_164: 2.90214876e-21 + art_sys_165: -4.37371297e-22 + art_sys_166: 8.63671534e-30 + art_sys_167: -1.43151226e-30 + art_sys_168: -1.82338275e-30 + art_sys_169: -1.54258405e-29 + art_sys_170: 7.80527301e-30 + art_sys_171: 9.27387823e-29 + art_sys_172: -1.59397024e-27 + art_sys_173: -7.68150798e-29 + art_sys_174: -5.67860656e-29 + art_sys_175: 1.49352977e-34 + art_sys_176: -1.27226263e-29 + art_sys_177: 2.85812693e-30 + art_sys_178: -7.82851245e-31 + art_sys_179: 9.84453590e-32 + art_sys_180: 7.00222868e-31 + art_sys_181: 3.77513718e-33 + art_sys_182: 1.69931881e-33 + art_sys_183: -2.58566036e-35 + art_sys_184: 5.57771937e-37 + art_sys_185: 2.06410148e-37 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -6641,191 +6641,191 @@ bins: RelativeStatFSR-: -4.08621452e-02 luminosity_uncertainty: 2.861872 uncorrelated_uncertainty: 1.10072 -- art_sys_1: -4.88458995e-34 - art_sys_2: -9.78616293e-25 - art_sys_3: -1.84716559e-20 +- art_sys_1: -8.34459912e-36 + art_sys_2: -1.28945778e-23 + art_sys_3: -3.52363565e-24 art_sys_4: -9.46199306e-04 - art_sys_5: 6.39664006e-20 - art_sys_6: -6.83524806e-21 - art_sys_7: 1.27277464e-03 - art_sys_8: 1.85424383e-19 - art_sys_9: 1.81268226e-05 - art_sys_10: 1.25171050e-20 - art_sys_11: 5.65583751e-17 + art_sys_5: -1.94676946e-19 + art_sys_6: 9.10639681e-21 + art_sys_7: -1.27277464e-03 + art_sys_8: -1.22741854e-19 + art_sys_9: -1.81268226e-05 + art_sys_10: 3.93521342e-21 + art_sys_11: 1.04728619e-17 art_sys_12: -2.00627235e-03 - art_sys_13: 4.26285518e-20 - art_sys_14: 3.26013776e-02 - art_sys_15: 2.10037680e-15 - art_sys_16: -4.82708788e-02 - art_sys_17: 8.16262313e-18 - art_sys_18: 6.06993202e-16 - art_sys_19: -1.12088467e-01 - art_sys_20: 1.48219037e-18 - art_sys_21: 8.75998031e-16 + art_sys_13: -6.76894450e-19 + art_sys_14: -3.26013776e-02 + art_sys_15: 6.25507809e-16 + art_sys_16: 4.82708788e-02 + art_sys_17: -5.20415391e-18 + art_sys_18: 1.04884581e-15 + art_sys_19: 1.12088467e-01 + art_sys_20: -2.22037839e-17 + art_sys_21: 1.77771071e-16 art_sys_22: -5.10416145e-02 - art_sys_23: -2.06182206e-18 - art_sys_24: -6.61766988e-17 - art_sys_25: 5.87883158e-14 - art_sys_26: -6.60370896e-14 - art_sys_27: -7.99405274e-16 - art_sys_28: -2.06600028e-15 - art_sys_29: -1.13295414e-15 - art_sys_30: 1.23529853e-01 - art_sys_31: -9.01553811e-02 - art_sys_32: 1.85908376e-15 - art_sys_33: 4.33391460e-17 - art_sys_34: 3.37939405e-16 - art_sys_35: -8.22503189e-13 - art_sys_36: -1.55010474e-12 + art_sys_23: -4.29651674e-18 + art_sys_24: -3.36886512e-16 + art_sys_25: 4.52425178e-14 + art_sys_26: -1.23782719e-14 + art_sys_27: 2.04581166e-14 + art_sys_28: 1.23529853e-01 + art_sys_29: 9.01553811e-02 + art_sys_30: 1.28301458e-15 + art_sys_31: 1.39477555e-15 + art_sys_32: 1.36150167e-17 + art_sys_33: -1.53139615e-16 + art_sys_34: -1.65713052e-16 + art_sys_35: 3.14025286e-13 + art_sys_36: -9.17668229e-12 art_sys_37: 5.16480003e-02 - art_sys_38: 7.71291203e-18 - art_sys_39: -1.47560913e-13 - art_sys_40: 9.82318976e-12 - art_sys_41: -9.41530794e-03 - art_sys_42: -4.24003911e-03 - art_sys_43: 3.70588204e-17 - art_sys_44: -9.18170389e-18 - art_sys_45: 1.64117406e-17 - art_sys_46: -6.84231267e-14 - art_sys_47: 7.45463277e-13 + art_sys_38: 3.99892046e-17 + art_sys_39: 3.77001224e-13 + art_sys_40: 3.57884720e-11 + art_sys_41: 9.41530790e-03 + art_sys_42: 4.24003911e-03 + art_sys_43: 3.85460612e-18 + art_sys_44: -8.11708123e-19 + art_sys_45: -2.31884772e-17 + art_sys_46: 6.10350212e-12 + art_sys_47: 2.02483400e-12 art_sys_48: -1.38999235e-03 - art_sys_49: 9.79599144e-19 - art_sys_50: -1.04046358e-13 - art_sys_51: 5.23854911e-17 - art_sys_52: -2.92089002e-16 - art_sys_53: 3.48807215e-15 - art_sys_54: 1.27410756e-04 - art_sys_55: -1.72420909e-11 - art_sys_56: 4.25599482e-12 - art_sys_57: -5.75089659e-05 - art_sys_58: -2.50353136e-14 - art_sys_59: 2.04027601e-16 - art_sys_60: 8.63596094e-18 - art_sys_61: 5.00108529e-18 - art_sys_62: -4.52394487e-18 - art_sys_63: -4.08825913e-20 - art_sys_64: -2.95202685e-15 - art_sys_65: -5.90784293e-19 - art_sys_66: -4.57045460e-20 - art_sys_67: -1.91192076e-19 - art_sys_68: -2.99376303e-15 - art_sys_69: -5.23245102e-15 - art_sys_70: 1.35464677e-05 - art_sys_71: 2.70527554e-12 - art_sys_72: -2.96140818e-15 - art_sys_73: -1.34064327e-14 - art_sys_74: -7.42660137e-14 - art_sys_75: 1.00882210e-21 - art_sys_76: -8.85355231e-21 - art_sys_77: -4.32531875e-21 - art_sys_78: 1.58270861e-13 - art_sys_79: -7.86694540e-08 - art_sys_80: -6.74745135e-22 - art_sys_81: 1.61411214e-22 - art_sys_82: -3.23572778e-22 - art_sys_83: 5.64348611e-16 - art_sys_84: 3.22245863e-08 - art_sys_85: 3.77382479e-13 - art_sys_86: -2.44186265e-15 - art_sys_87: -2.40136671e-08 - art_sys_88: 1.08992410e-24 - art_sys_89: 1.16855301e-15 - art_sys_90: -1.18277633e-08 - art_sys_91: 5.02663290e-14 - art_sys_92: -6.20023283e-09 - art_sys_93: -9.85268785e-16 - art_sys_94: -8.12889509e-18 - art_sys_95: -2.64979368e-09 - art_sys_96: -5.94293979e-15 - art_sys_97: 1.06988511e-09 - art_sys_98: 1.41088514e-14 - art_sys_99: -2.01054793e-18 - art_sys_100: 4.72662921e-24 - art_sys_101: 1.87426640e-23 - art_sys_102: 3.99443293e-10 - art_sys_103: 6.37151671e-18 - art_sys_104: -1.40603068e-10 - art_sys_105: 9.83975923e-19 - art_sys_106: 3.58261399e-16 - art_sys_107: -5.95058361e-11 - art_sys_108: 1.09375032e-18 - art_sys_109: -2.15853989e-11 - art_sys_110: -1.03384390e-15 - art_sys_111: 1.40483876e-18 - art_sys_112: 7.26869499e-12 - art_sys_113: -2.42718127e-12 - art_sys_114: 7.93441220e-13 - art_sys_115: -1.66656050e-17 - art_sys_116: -2.07178520e-13 - art_sys_117: 5.94720098e-16 - art_sys_118: 6.94912802e-14 - art_sys_119: 5.02309575e-19 - art_sys_120: 1.77392454e-18 - art_sys_121: -1.97821221e-19 - art_sys_122: -6.24950099e-20 - art_sys_123: -9.30365290e-19 - art_sys_124: 2.08279404e-20 - art_sys_125: 1.16116498e-14 - art_sys_126: -2.49645723e-19 - art_sys_127: 1.12329008e-15 - art_sys_128: -7.48361348e-20 - art_sys_129: 2.40941854e-20 - art_sys_130: 1.48549799e-17 - art_sys_131: -4.64894167e-18 - art_sys_132: -5.30780292e-23 - art_sys_133: 1.46749440e-22 - art_sys_134: -1.52484395e-20 - art_sys_135: 1.18488352e-25 - art_sys_136: -3.34027871e-24 - art_sys_137: 7.34335246e-25 - art_sys_138: -4.79340286e-25 - art_sys_139: 2.24397328e-24 - art_sys_140: -1.01206299e-24 - art_sys_141: -2.69734535e-23 - art_sys_142: -7.69123590e-25 - art_sys_143: -9.15111022e-26 - art_sys_144: -1.07001201e-24 - art_sys_145: -2.24695225e-23 - art_sys_146: -1.46254454e-23 - art_sys_147: -2.89660722e-23 - art_sys_148: -7.06165133e-24 - art_sys_149: 1.58697396e-24 - art_sys_150: 2.52106351e-26 - art_sys_151: -2.76286308e-25 - art_sys_152: 8.60388608e-28 - art_sys_153: -9.64280787e-29 - art_sys_154: 1.17457689e-28 - art_sys_155: -3.21797713e-30 - art_sys_156: -3.21916757e-30 - art_sys_157: 9.25948308e-31 - art_sys_158: -9.42283302e-32 - art_sys_159: -2.87765335e-31 - art_sys_160: 8.21186709e-31 - art_sys_161: 1.18520069e-32 - art_sys_162: 9.87964231e-33 - art_sys_163: -1.01715620e-31 - art_sys_164: 7.21630558e-31 - art_sys_165: -5.27512542e-32 - art_sys_166: 9.50983760e-32 - art_sys_167: 5.97954242e-31 - art_sys_168: -2.50864085e-23 - art_sys_169: -8.12028113e-32 - art_sys_170: 1.25717418e-22 - art_sys_171: 1.01844153e-21 - art_sys_172: -7.22717712e-32 - art_sys_173: 6.93740021e-33 - art_sys_174: -7.81452597e-23 - art_sys_175: 0.0 - art_sys_176: -1.08841073e-24 - art_sys_177: 0.0 - art_sys_178: 1.29976615e-26 - art_sys_179: 4.00750879e-30 - art_sys_180: -3.47201538e-31 - art_sys_181: 1.99690235e-36 - art_sys_182: 0.0 - art_sys_183: 2.08678647e-36 - art_sys_184: -2.16571652e-34 - art_sys_185: 3.08726633e-38 + art_sys_49: -3.23966880e-15 + art_sys_50: 1.12111458e-15 + art_sys_51: 1.07079074e-16 + art_sys_52: -3.58904113e-17 + art_sys_53: -1.46177635e-17 + art_sys_54: 3.69436310e-18 + art_sys_55: -9.39578533e-18 + art_sys_56: -8.20214393e-15 + art_sys_57: -3.68149498e-12 + art_sys_58: -1.06309722e-17 + art_sys_59: 2.14176795e-18 + art_sys_60: 1.27410759e-04 + art_sys_61: -7.02148994e-13 + art_sys_62: -1.13871600e-11 + art_sys_63: 1.64423820e-13 + art_sys_64: 5.75089620e-05 + art_sys_65: 2.62504040e-20 + art_sys_66: 3.06740614e-19 + art_sys_67: -2.02061602e-13 + art_sys_68: -2.05286522e-17 + art_sys_69: 2.86177434e-16 + art_sys_70: 1.35464673e-05 + art_sys_71: 3.63841383e-12 + art_sys_72: 2.92991129e-16 + art_sys_73: -3.41983398e-18 + art_sys_74: -2.75806513e-18 + art_sys_75: 3.68968399e-19 + art_sys_76: 2.09654095e-21 + art_sys_77: 2.08795007e-15 + art_sys_78: 2.01838705e-15 + art_sys_79: -2.02647673e-19 + art_sys_80: -1.17197704e-15 + art_sys_81: 6.25905395e-20 + art_sys_82: 8.73738749e-20 + art_sys_83: 3.28033257e-18 + art_sys_84: 5.72825581e-20 + art_sys_85: 2.93096852e-20 + art_sys_86: 4.48438286e-18 + art_sys_87: -1.71412464e-13 + art_sys_88: 8.49951028e-19 + art_sys_89: 1.74974305e-20 + art_sys_90: -7.86693816e-08 + art_sys_91: -3.06626170e-14 + art_sys_92: 3.22243866e-08 + art_sys_93: -4.28680195e-15 + art_sys_94: -2.40138710e-08 + art_sys_95: 9.41532094e-16 + art_sys_96: 1.12906781e-19 + art_sys_97: -6.83253685e-15 + art_sys_98: 1.18278129e-08 + art_sys_99: -6.20880683e-14 + art_sys_100: -3.61950738e-15 + art_sys_101: 6.20013628e-09 + art_sys_102: -2.64984022e-09 + art_sys_103: 1.57336125e-16 + art_sys_104: -9.91410175e-14 + art_sys_105: -1.06963376e-09 + art_sys_106: 1.32818246e-14 + art_sys_107: 7.59378171e-20 + art_sys_108: -4.73095668e-21 + art_sys_109: -1.98145507e-20 + art_sys_110: 6.55549366e-16 + art_sys_111: 3.99424910e-10 + art_sys_112: 2.09697700e-17 + art_sys_113: 1.67487128e-22 + art_sys_114: -1.40599641e-10 + art_sys_115: -1.17079372e-17 + art_sys_116: 6.42977107e-16 + art_sys_117: 5.95131000e-11 + art_sys_118: 4.43575894e-17 + art_sys_119: -2.15664546e-11 + art_sys_120: -1.09452155e-15 + art_sys_121: 3.34807273e-18 + art_sys_122: -7.27269106e-12 + art_sys_123: -2.42766045e-12 + art_sys_124: -2.64225860e-18 + art_sys_125: -3.13960476e-16 + art_sys_126: 7.50357985e-18 + art_sys_127: 7.93172971e-13 + art_sys_128: 8.87750746e-18 + art_sys_129: -2.06474176e-13 + art_sys_130: 1.40951691e-17 + art_sys_131: -5.65231394e-17 + art_sys_132: 7.06614708e-14 + art_sys_133: 1.65491976e-16 + art_sys_134: 3.37761947e-19 + art_sys_135: -1.20419811e-14 + art_sys_136: 3.30828963e-17 + art_sys_137: -3.66035474e-21 + art_sys_138: -2.31655535e-15 + art_sys_139: 1.17074938e-15 + art_sys_140: 1.72722338e-16 + art_sys_141: -2.65018751e-17 + art_sys_142: -2.22616897e-18 + art_sys_143: -1.22435740e-21 + art_sys_144: -2.18549942e-21 + art_sys_145: -8.90412221e-23 + art_sys_146: -0.0 + art_sys_147: -9.05868796e-20 + art_sys_148: -3.14142309e-19 + art_sys_149: -3.14142309e-19 + art_sys_150: 6.77278394e-19 + art_sys_151: 6.77278394e-19 + art_sys_152: -1.21039075e-17 + art_sys_153: 6.47525785e-19 + art_sys_154: -9.94222509e-23 + art_sys_155: 3.41413142e-30 + art_sys_156: -1.36719826e-34 + art_sys_157: -5.61017945e-33 + art_sys_158: 0.0 + art_sys_159: 6.76660276e-21 + art_sys_160: 3.01459288e-22 + art_sys_161: -2.02159459e-22 + art_sys_162: 2.24282766e-23 + art_sys_163: -1.60948722e-20 + art_sys_164: -9.33441824e-21 + art_sys_165: 1.40089026e-21 + art_sys_166: -1.30920366e-29 + art_sys_167: -2.32710067e-30 + art_sys_168: 2.53962227e-30 + art_sys_169: 2.16920131e-29 + art_sys_170: -1.09201767e-29 + art_sys_171: -1.28848794e-28 + art_sys_172: 2.22371794e-27 + art_sys_173: 1.28244133e-28 + art_sys_174: 8.19533854e-29 + art_sys_175: -4.80431554e-34 + art_sys_176: 1.79093101e-29 + art_sys_177: -3.88049435e-30 + art_sys_178: 1.05033305e-30 + art_sys_179: -1.24689352e-31 + art_sys_180: -9.91904252e-31 + art_sys_181: -6.19079229e-33 + art_sys_182: -2.45557454e-33 + art_sys_183: 3.40151029e-35 + art_sys_184: -1.58586647e-36 + art_sys_185: -6.64953870e-37 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -6932,191 +6932,191 @@ bins: RelativeStatFSR-: -2.48652081e-02 luminosity_uncertainty: 1.61163860e+00 uncorrelated_uncertainty: 0.619861 -- art_sys_1: -2.18151039e-35 - art_sys_2: -8.78166730e-26 - art_sys_3: -8.24925742e-22 +- art_sys_1: -3.58258806e-37 + art_sys_2: -5.75859121e-25 + art_sys_3: -2.15523885e-24 art_sys_4: -4.22563180e-05 - art_sys_5: -1.03815981e-20 - art_sys_6: -2.51743132e-22 - art_sys_7: 8.33547537e-04 - art_sys_8: -3.46269605e-19 - art_sys_9: -1.52303670e-03 - art_sys_10: -1.47552193e-20 - art_sys_11: -7.49054860e-18 + art_sys_5: -2.01752349e-19 + art_sys_6: 4.01531360e-22 + art_sys_7: -8.33547537e-04 + art_sys_8: -1.49042530e-19 + art_sys_9: 1.52303670e-03 + art_sys_10: -1.73292960e-20 + art_sys_11: 2.75321842e-19 art_sys_12: 6.64353231e-04 - art_sys_13: -1.25699896e-20 - art_sys_14: 4.76520781e-03 - art_sys_15: 1.96273733e-15 - art_sys_16: 8.12310928e-03 - art_sys_17: -1.18139463e-18 - art_sys_18: -5.57693520e-16 - art_sys_19: -1.46300221e-02 - art_sys_20: 6.95475530e-19 - art_sys_21: -1.15195228e-16 + art_sys_13: -1.28528118e-19 + art_sys_14: -4.76520781e-03 + art_sys_15: -3.16045543e-15 + art_sys_16: -8.12310928e-03 + art_sys_17: -1.92176942e-18 + art_sys_18: 2.80647454e-16 + art_sys_19: 1.46300221e-02 + art_sys_20: -8.50347029e-18 + art_sys_21: -1.74995112e-16 art_sys_22: -1.76095183e-02 - art_sys_23: -1.79056879e-18 - art_sys_24: 5.52964749e-17 - art_sys_25: -9.87294485e-14 - art_sys_26: 1.10595018e-13 - art_sys_27: -1.42595706e-14 - art_sys_28: -3.36831164e-15 - art_sys_29: 2.26351730e-15 - art_sys_30: -5.51699266e-03 - art_sys_31: -1.46420507e-01 - art_sys_32: -1.71841259e-15 - art_sys_33: -7.68866298e-17 - art_sys_34: -6.96640741e-16 - art_sys_35: 7.63662561e-13 - art_sys_36: 1.35637669e-12 + art_sys_23: -4.48164642e-18 + art_sys_24: -1.48787050e-16 + art_sys_25: -1.82834717e-14 + art_sys_26: 3.92878370e-14 + art_sys_27: 4.25098741e-15 + art_sys_28: -5.51699265e-03 + art_sys_29: 1.46420507e-01 + art_sys_30: -1.78506921e-15 + art_sys_31: -1.39726321e-15 + art_sys_32: 2.32236457e-17 + art_sys_33: 1.79547986e-16 + art_sys_34: -2.94557791e-15 + art_sys_35: -2.92326454e-13 + art_sys_36: 8.02988374e-12 art_sys_37: -4.51935724e-02 - art_sys_38: 2.38641981e-17 - art_sys_39: 1.03247148e-13 - art_sys_40: -6.75347768e-12 - art_sys_41: 6.47305488e-03 - art_sys_42: 6.01059947e-03 - art_sys_43: -2.27355694e-17 - art_sys_44: 4.46405664e-18 - art_sys_45: -1.47782366e-17 - art_sys_46: -8.55280278e-14 - art_sys_47: -1.21316844e-12 + art_sys_38: 3.33417147e-17 + art_sys_39: -3.19272835e-13 + art_sys_40: -2.46047278e-11 + art_sys_41: -6.47305483e-03 + art_sys_42: -6.01059947e-03 + art_sys_43: -8.03442860e-19 + art_sys_44: 4.76353786e-18 + art_sys_45: 1.92990357e-17 + art_sys_46: -8.58242259e-12 + art_sys_47: -3.29520423e-12 art_sys_48: 2.26207184e-03 - art_sys_49: -2.55495541e-19 - art_sys_50: 1.55500522e-13 - art_sys_51: 2.95313450e-16 - art_sys_52: 5.51263521e-16 - art_sys_53: -6.57455067e-15 - art_sys_54: -2.40148128e-04 - art_sys_55: 3.24670637e-11 - art_sys_56: -8.31063786e-12 - art_sys_57: 1.15149968e-04 - art_sys_58: 4.86154320e-14 - art_sys_59: -4.34266825e-16 - art_sys_60: -1.91557920e-17 - art_sys_61: -1.05659644e-17 - art_sys_62: 9.67596467e-18 - art_sys_63: 8.20111966e-20 - art_sys_64: 6.26805366e-15 - art_sys_65: 1.24431940e-18 - art_sys_66: 1.01286937e-19 - art_sys_67: 4.06024852e-19 - art_sys_68: 8.18178985e-15 - art_sys_69: 1.42963405e-14 - art_sys_70: -2.87588488e-05 - art_sys_71: -5.64962447e-12 - art_sys_72: 7.67716215e-15 - art_sys_73: 2.62866793e-14 - art_sys_74: 1.47115586e-13 - art_sys_75: -1.72263164e-21 - art_sys_76: 8.26215022e-21 - art_sys_77: -1.81206140e-21 - art_sys_78: -4.14337841e-13 - art_sys_79: 2.15003071e-07 - art_sys_80: 9.04837405e-22 - art_sys_81: -3.32506160e-22 - art_sys_82: 8.68231848e-22 - art_sys_83: -1.49948041e-15 - art_sys_84: -8.45507252e-08 - art_sys_85: -7.66029903e-13 - art_sys_86: 6.48038694e-15 - art_sys_87: 6.23119173e-08 - art_sys_88: 4.23486962e-24 - art_sys_89: -3.10675074e-15 - art_sys_90: 3.15856351e-08 - art_sys_91: -8.75902514e-14 - art_sys_92: 1.63261401e-08 - art_sys_93: 2.63111031e-15 - art_sys_94: 2.18411781e-17 - art_sys_95: 7.05412084e-09 - art_sys_96: 1.21789113e-14 - art_sys_97: -2.84023668e-09 - art_sys_98: -3.74235950e-14 - art_sys_99: 5.43343032e-18 - art_sys_100: -4.90203705e-24 - art_sys_101: -1.66709528e-23 - art_sys_102: -1.06295501e-09 - art_sys_103: -1.69595602e-17 - art_sys_104: 3.74428646e-10 - art_sys_105: -2.61641787e-18 - art_sys_106: -9.56330588e-16 - art_sys_107: 1.58444575e-10 - art_sys_108: -2.90566315e-18 - art_sys_109: 5.75200924e-11 - art_sys_110: 2.75474564e-15 - art_sys_111: -3.76949627e-18 - art_sys_112: -1.93684201e-11 - art_sys_113: 6.46894027e-12 - art_sys_114: -2.11501414e-12 - art_sys_115: 4.43949392e-17 - art_sys_116: 5.52240698e-13 - art_sys_117: -1.25881644e-15 - art_sys_118: -1.85259956e-13 - art_sys_119: -1.34125499e-18 - art_sys_120: -4.71840810e-18 - art_sys_121: 5.33675345e-19 - art_sys_122: 1.63451673e-19 - art_sys_123: 2.48173490e-18 - art_sys_124: -4.98934167e-20 - art_sys_125: -3.09563088e-14 - art_sys_126: 6.62315308e-19 - art_sys_127: -2.99449047e-15 - art_sys_128: 1.99406851e-19 - art_sys_129: -6.42130763e-20 - art_sys_130: -3.95992457e-17 - art_sys_131: 1.23920966e-17 - art_sys_132: 1.41279893e-22 - art_sys_133: -3.90287448e-22 - art_sys_134: 3.99108414e-20 - art_sys_135: 3.21072255e-25 - art_sys_136: 2.96611168e-24 - art_sys_137: -3.04497131e-25 - art_sys_138: 4.71025300e-25 - art_sys_139: -2.21349752e-24 - art_sys_140: 9.70502269e-25 - art_sys_141: 7.17619824e-23 - art_sys_142: 6.24847616e-25 - art_sys_143: 1.24826388e-25 - art_sys_144: 2.67660560e-24 - art_sys_145: 5.95998473e-23 - art_sys_146: 3.81010817e-23 - art_sys_147: 7.61750955e-23 - art_sys_148: 1.83611122e-23 - art_sys_149: -4.14215897e-24 - art_sys_150: -1.10932016e-25 - art_sys_151: 7.29231752e-25 - art_sys_152: -2.30935578e-27 - art_sys_153: 2.53191743e-28 - art_sys_154: -3.12597361e-28 - art_sys_155: 9.13558680e-30 - art_sys_156: 8.63720165e-30 - art_sys_157: -2.48315933e-30 - art_sys_158: 2.49371767e-31 - art_sys_159: 7.67658170e-31 - art_sys_160: -2.18959056e-30 - art_sys_161: -3.18511604e-32 - art_sys_162: -2.52059863e-32 - art_sys_163: 2.64615810e-31 - art_sys_164: -1.88806007e-30 - art_sys_165: 1.35565930e-31 - art_sys_166: -2.52030643e-31 - art_sys_167: -1.60814623e-30 - art_sys_168: 7.44095898e-23 - art_sys_169: 2.13975157e-31 - art_sys_170: -3.34521366e-22 - art_sys_171: -2.71206501e-21 - art_sys_172: 1.90735219e-31 - art_sys_173: -1.84849964e-32 - art_sys_174: 2.08094510e-22 - art_sys_175: 0.0 - art_sys_176: 2.89847169e-24 - art_sys_177: 0.0 - art_sys_178: -3.46182776e-26 - art_sys_179: -1.06627596e-29 - art_sys_180: 9.24159835e-31 - art_sys_181: -5.31471949e-36 - art_sys_182: 0.0 - art_sys_183: -5.55330106e-36 - art_sys_184: 5.77311929e-34 - art_sys_185: -8.22825383e-38 + art_sys_49: 2.92531778e-15 + art_sys_50: -2.21509660e-15 + art_sys_51: -1.26439842e-16 + art_sys_52: 1.04040724e-16 + art_sys_53: 2.59249124e-17 + art_sys_54: -5.71876726e-18 + art_sys_55: 1.26287169e-17 + art_sys_56: 1.54590585e-14 + art_sys_57: 5.99140801e-12 + art_sys_58: 2.10473480e-17 + art_sys_59: -4.49596432e-18 + art_sys_60: -2.40148135e-04 + art_sys_61: 6.35752120e-13 + art_sys_62: 2.28612785e-11 + art_sys_63: -3.49071545e-13 + art_sys_64: -1.15149960e-04 + art_sys_65: -5.12102500e-20 + art_sys_66: -6.52315828e-19 + art_sys_67: 3.40769141e-13 + art_sys_68: 5.54481567e-17 + art_sys_69: -7.55646564e-16 + art_sys_70: -2.87588480e-05 + art_sys_71: -7.75429276e-12 + art_sys_72: 3.80668602e-15 + art_sys_73: 8.99732242e-18 + art_sys_74: 7.46214193e-18 + art_sys_75: -1.10346755e-18 + art_sys_76: -5.17390574e-21 + art_sys_77: -5.11775665e-16 + art_sys_78: -5.29442591e-15 + art_sys_79: 5.48201374e-19 + art_sys_80: 3.12068699e-15 + art_sys_81: -1.74619886e-19 + art_sys_82: -2.36723530e-19 + art_sys_83: -8.74522728e-18 + art_sys_84: -1.55767495e-19 + art_sys_85: -8.15038654e-20 + art_sys_86: -1.19437946e-17 + art_sys_87: 4.53970755e-13 + art_sys_88: -2.27260824e-18 + art_sys_89: -5.25918378e-20 + art_sys_90: 2.15002880e-07 + art_sys_91: 8.15548489e-14 + art_sys_92: -8.45502106e-08 + art_sys_93: 1.21829708e-14 + art_sys_94: 6.23124568e-08 + art_sys_95: -2.50658309e-15 + art_sys_96: -3.00877097e-19 + art_sys_97: 1.81797666e-14 + art_sys_98: -3.15857668e-08 + art_sys_99: 1.34346937e-13 + art_sys_100: 9.63820139e-15 + art_sys_101: -1.63258819e-08 + art_sys_102: 7.05424086e-09 + art_sys_103: -4.18900375e-16 + art_sys_104: 2.28552407e-13 + art_sys_105: 2.83956615e-09 + art_sys_106: -3.53517129e-14 + art_sys_107: -2.02318026e-19 + art_sys_108: 1.25885651e-20 + art_sys_109: 5.29360057e-20 + art_sys_110: -1.74685498e-15 + art_sys_111: -1.06290611e-09 + art_sys_112: -5.59701168e-17 + art_sys_113: -5.92664672e-22 + art_sys_114: 3.74419330e-10 + art_sys_115: 3.12080105e-17 + art_sys_116: -1.71315474e-15 + art_sys_117: -1.58463989e-10 + art_sys_118: -1.18230353e-16 + art_sys_119: 5.74696897e-11 + art_sys_120: 2.91693894e-15 + art_sys_121: -8.92570055e-18 + art_sys_122: 1.93791066e-11 + art_sys_123: 6.47022869e-12 + art_sys_124: 7.04361051e-18 + art_sys_125: 8.36937974e-16 + art_sys_126: -2.00035046e-17 + art_sys_127: -2.11430313e-12 + art_sys_128: -2.36672838e-17 + art_sys_129: 5.50363302e-13 + art_sys_130: -3.75808946e-17 + art_sys_131: 1.50696099e-16 + art_sys_132: -1.88379835e-13 + art_sys_133: -4.41193967e-16 + art_sys_134: -9.00455066e-19 + art_sys_135: 3.21033832e-14 + art_sys_136: -8.81982461e-17 + art_sys_137: 9.76048922e-21 + art_sys_138: 6.09083428e-15 + art_sys_139: -3.12096898e-15 + art_sys_140: -4.60440297e-16 + art_sys_141: 7.06485866e-17 + art_sys_142: 5.93333088e-18 + art_sys_143: 3.26392738e-21 + art_sys_144: 5.82611244e-21 + art_sys_145: 2.38237675e-22 + art_sys_146: 0.0 + art_sys_147: 2.41569923e-19 + art_sys_148: 8.36193230e-19 + art_sys_149: 8.36193230e-19 + art_sys_150: -1.80571360e-18 + art_sys_151: -1.80571360e-18 + art_sys_152: 3.22643361e-17 + art_sys_153: -1.72605296e-18 + art_sys_154: 2.64925824e-22 + art_sys_155: -9.10066809e-30 + art_sys_156: 3.64465244e-34 + art_sys_157: 1.49515403e-32 + art_sys_158: -0.0 + art_sys_159: -1.79802282e-20 + art_sys_160: -7.88070093e-22 + art_sys_161: 5.38144031e-22 + art_sys_162: -6.36932695e-23 + art_sys_163: 4.30582533e-20 + art_sys_164: 2.48772460e-20 + art_sys_165: -3.72564289e-21 + art_sys_166: 1.94019895e-29 + art_sys_167: 1.42517616e-29 + art_sys_168: -2.43391838e-30 + art_sys_169: -1.82127034e-29 + art_sys_170: 1.19427757e-29 + art_sys_171: 9.85906070e-29 + art_sys_172: -1.65672462e-27 + art_sys_173: -1.35010982e-28 + art_sys_174: -6.87815016e-29 + art_sys_175: 1.28008604e-33 + art_sys_176: -1.53206193e-29 + art_sys_177: 3.31917865e-30 + art_sys_178: -8.73892159e-31 + art_sys_179: 7.32247037e-32 + art_sys_180: 8.42431043e-31 + art_sys_181: 5.79702903e-33 + art_sys_182: 2.40483843e-33 + art_sys_183: -2.36784170e-35 + art_sys_184: 3.91976520e-36 + art_sys_185: 1.77408023e-36 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -7223,191 +7223,191 @@ bins: RelativeStatFSR-: -1.47270705e-02 luminosity_uncertainty: 8.85250600e-01 uncorrelated_uncertainty: 0.340481 -- art_sys_1: 8.40318173e-36 - art_sys_2: -9.25138792e-26 - art_sys_3: 3.17831323e-22 +- art_sys_1: 1.45561206e-37 + art_sys_2: 2.21869672e-25 + art_sys_3: -1.03370068e-25 art_sys_4: 1.62807157e-05 - art_sys_5: -1.48699660e-21 - art_sys_6: 7.28566454e-23 - art_sys_7: 1.41548636e-04 - art_sys_8: -1.18789214e-19 - art_sys_9: -3.26385127e-04 - art_sys_10: -3.51793983e-21 - art_sys_11: -5.11678551e-18 + art_sys_5: -4.01706127e-20 + art_sys_6: -1.57828260e-22 + art_sys_7: -1.41548636e-04 + art_sys_8: -7.40124126e-20 + art_sys_9: 3.26385127e-04 + art_sys_10: -3.93066462e-21 + art_sys_11: -7.27125696e-19 art_sys_12: 2.02432443e-04 - art_sys_13: -3.87854940e-21 - art_sys_14: -1.44630472e-03 - art_sys_15: 3.50506449e-16 - art_sys_16: 4.59113554e-03 - art_sys_17: -7.43835645e-19 - art_sys_18: -8.10917435e-17 - art_sys_19: 6.42948723e-03 - art_sys_20: -5.46599724e-20 - art_sys_21: -1.10330556e-16 + art_sys_13: 2.49116623e-20 + art_sys_14: 1.44630472e-03 + art_sys_15: -8.18796565e-17 + art_sys_16: -4.59113554e-03 + art_sys_17: 7.46470602e-20 + art_sys_18: -1.45582389e-16 + art_sys_19: -6.42948723e-03 + art_sys_20: 8.86734340e-19 + art_sys_21: -7.24352767e-18 art_sys_22: 2.26209936e-03 - art_sys_23: -9.41170059e-20 - art_sys_24: 7.72887318e-17 - art_sys_25: -3.05162536e-14 - art_sys_26: -1.23550472e-14 - art_sys_27: 2.10326017e-14 - art_sys_28: -1.80102423e-15 - art_sys_29: 3.34267638e-16 - art_sys_30: -1.51148241e-02 - art_sys_31: -8.34449412e-03 - art_sys_32: 8.51649142e-16 - art_sys_33: 3.37107317e-16 - art_sys_34: -1.62284776e-16 - art_sys_35: 4.18764636e-13 - art_sys_36: 9.01689421e-13 + art_sys_23: -1.38025502e-19 + art_sys_24: -2.77491537e-17 + art_sys_25: 6.48673997e-14 + art_sys_26: -3.73162161e-14 + art_sys_27: -7.03833192e-15 + art_sys_28: -1.51148241e-02 + art_sys_29: 8.34449412e-03 + art_sys_30: 6.44676952e-15 + art_sys_31: 3.50111221e-16 + art_sys_32: 1.09892856e-16 + art_sys_33: -1.01574554e-15 + art_sys_34: -4.52827954e-16 + art_sys_35: -1.60093666e-13 + art_sys_36: 5.33800390e-12 art_sys_37: -3.00433775e-02 - art_sys_38: 2.30326674e-16 - art_sys_39: 1.59570404e-12 - art_sys_40: 3.49413204e-11 - art_sys_41: -3.34903185e-02 - art_sys_42: -1.32871390e-02 - art_sys_43: -1.49897130e-18 - art_sys_44: 1.30066450e-18 - art_sys_45: -1.07694006e-17 - art_sys_46: 6.61646623e-13 - art_sys_47: 3.94674674e-12 + art_sys_38: -1.53572784e-17 + art_sys_39: -7.78056034e-13 + art_sys_40: 1.27298277e-10 + art_sys_41: 3.34903184e-02 + art_sys_42: 1.32871390e-02 + art_sys_43: -2.58712751e-17 + art_sys_44: 8.10193231e-18 + art_sys_45: 2.00683666e-17 + art_sys_46: 1.88040037e-11 + art_sys_47: 1.07201514e-11 art_sys_48: -7.35909624e-03 - art_sys_49: -2.20868810e-18 - art_sys_50: -5.14766452e-13 - art_sys_51: -2.20032058e-15 - art_sys_52: -1.70146824e-15 - art_sys_53: 2.02297479e-14 - art_sys_54: 7.38948592e-04 - art_sys_55: -9.99082605e-11 - art_sys_56: 2.64426178e-11 - art_sys_57: -3.74558035e-04 - art_sys_58: -1.52874435e-13 - art_sys_59: 1.49266002e-15 - art_sys_60: 6.44922078e-17 - art_sys_61: 3.60812870e-17 - art_sys_62: -3.31171327e-17 - art_sys_63: -3.35562949e-19 - art_sys_64: -2.14887039e-14 - art_sys_65: -4.27793197e-18 - art_sys_66: -3.41058739e-19 - art_sys_67: -1.37706472e-18 - art_sys_68: -2.40325220e-14 - art_sys_69: -4.20157752e-14 - art_sys_70: 9.85876426e-05 - art_sys_71: 1.95737965e-11 - art_sys_72: -2.61280499e-14 - art_sys_73: -8.27497636e-14 - art_sys_74: -5.27408352e-13 - art_sys_75: 6.69925907e-21 - art_sys_76: -1.12812827e-20 - art_sys_77: 2.79901608e-20 - art_sys_78: 1.39195496e-12 - art_sys_79: -6.31219823e-07 - art_sys_80: 1.17998629e-23 - art_sys_81: 1.56253332e-21 - art_sys_82: -3.04539968e-21 - art_sys_83: 5.44565363e-15 - art_sys_84: 3.00629680e-07 - art_sys_85: 2.47317627e-12 - art_sys_86: -2.35408089e-14 - art_sys_87: -2.12255061e-07 - art_sys_88: -5.45768722e-23 - art_sys_89: 1.12441023e-14 - art_sys_90: -1.09898595e-07 - art_sys_91: 2.99699469e-13 - art_sys_92: -5.82297829e-08 - art_sys_93: -9.76580377e-15 - art_sys_94: -8.55935848e-17 - art_sys_95: -2.52477177e-08 - art_sys_96: -4.13137696e-14 - art_sys_97: 1.03079796e-08 - art_sys_98: 1.35378127e-13 - art_sys_99: -2.14174397e-17 - art_sys_100: 7.54227779e-25 - art_sys_101: -2.43007551e-23 - art_sys_102: 3.87333607e-09 - art_sys_103: 6.27819679e-17 - art_sys_104: -1.37231532e-09 - art_sys_105: 9.58710618e-18 - art_sys_106: 3.48637327e-15 - art_sys_107: -5.82516398e-10 - art_sys_108: 1.05489196e-17 - art_sys_109: -2.12000458e-10 - art_sys_110: -1.02007270e-14 - art_sys_111: 1.42223783e-17 - art_sys_112: 7.15565894e-11 - art_sys_113: -2.39284498e-11 - art_sys_114: 7.83146999e-12 - art_sys_115: -1.64577189e-16 - art_sys_116: -2.04654194e-12 - art_sys_117: 4.32666141e-15 - art_sys_118: 6.86787178e-13 - art_sys_119: 5.01111192e-18 - art_sys_120: 1.73394878e-17 - art_sys_121: -2.03947162e-18 - art_sys_122: -5.40156619e-19 - art_sys_123: -9.20759803e-18 - art_sys_124: 1.25130900e-19 - art_sys_125: 1.14824850e-13 - art_sys_126: -2.39952023e-18 - art_sys_127: 1.11119803e-14 - art_sys_128: -7.33404121e-19 - art_sys_129: 2.37919138e-19 - art_sys_130: 1.46628605e-16 - art_sys_131: -4.58713395e-17 - art_sys_132: -5.17049680e-22 - art_sys_133: 1.42736627e-21 - art_sys_134: -1.39245270e-19 - art_sys_135: 4.67066301e-24 - art_sys_136: -3.68612253e-24 - art_sys_137: 1.88853249e-24 - art_sys_138: -2.19736758e-25 - art_sys_139: -9.46753365e-24 - art_sys_140: -3.37109737e-24 - art_sys_141: -2.62825389e-22 - art_sys_142: -2.31607931e-24 - art_sys_143: -2.81211739e-25 - art_sys_144: -9.07915781e-24 - art_sys_145: -2.14723716e-22 - art_sys_146: -1.34302653e-22 - art_sys_147: -2.71138268e-22 - art_sys_148: -6.48540973e-23 - art_sys_149: 1.47341451e-23 - art_sys_150: 4.26096541e-25 - art_sys_151: -2.59716593e-24 - art_sys_152: 8.28738485e-27 - art_sys_153: -9.49190979e-28 - art_sys_154: 1.10213950e-27 - art_sys_155: -3.37001052e-29 - art_sys_156: -3.11104751e-29 - art_sys_157: 8.82539100e-30 - art_sys_158: -9.17680068e-31 - art_sys_159: -2.84874855e-30 - art_sys_160: 8.11574401e-30 - art_sys_161: 1.18242212e-31 - art_sys_162: 8.95287976e-32 - art_sys_163: -9.40977096e-31 - art_sys_164: 6.73629071e-30 - art_sys_165: -4.77566175e-31 - art_sys_166: 9.00121126e-31 - art_sys_167: 5.78123695e-30 - art_sys_168: -4.38997445e-22 - art_sys_169: -7.59661321e-31 - art_sys_170: 1.22487719e-21 - art_sys_171: 9.94777508e-21 - art_sys_172: -6.87218724e-31 - art_sys_173: 6.84076343e-32 - art_sys_174: -7.62891459e-22 - art_sys_175: 0.0 - art_sys_176: -1.06300945e-23 - art_sys_177: 0.0 - art_sys_178: 1.27090427e-25 - art_sys_179: 3.89972621e-29 - art_sys_180: -3.38219167e-30 - art_sys_181: 1.94349902e-35 - art_sys_182: 0.0 - art_sys_183: 2.02447218e-35 - art_sys_184: -2.13751137e-33 - art_sys_185: 3.04379929e-37 + art_sys_49: 2.81507290e-15 + art_sys_50: 7.28602660e-15 + art_sys_51: 8.49269862e-17 + art_sys_52: -3.26805291e-16 + art_sys_53: -7.14384200e-17 + art_sys_54: 1.00072634e-17 + art_sys_55: -4.46693988e-17 + art_sys_56: -4.75667666e-14 + art_sys_57: -1.94914289e-11 + art_sys_58: -6.79936961e-17 + art_sys_59: 1.49817232e-17 + art_sys_60: 7.38948614e-04 + art_sys_61: -2.70738544e-12 + art_sys_62: -7.45347646e-11 + art_sys_63: 1.19664737e-12 + art_sys_64: 3.74558009e-04 + art_sys_65: 1.91311823e-19 + art_sys_66: 2.24318037e-18 + art_sys_67: -1.10702459e-12 + art_sys_68: -1.63171187e-16 + art_sys_69: 2.62206959e-15 + art_sys_70: 9.85876397e-05 + art_sys_71: 2.65149049e-11 + art_sys_72: -2.86861004e-14 + art_sys_73: -3.35972966e-17 + art_sys_74: -2.28050900e-17 + art_sys_75: 2.18327379e-18 + art_sys_76: 1.69646102e-20 + art_sys_77: 1.67011553e-14 + art_sys_78: 1.81818003e-14 + art_sys_79: -1.65588737e-18 + art_sys_80: -1.11664781e-14 + art_sys_81: 4.68570232e-19 + art_sys_82: 7.42270701e-19 + art_sys_83: 3.22085464e-17 + art_sys_84: 4.84266026e-19 + art_sys_85: 2.33517427e-19 + art_sys_86: 4.41619370e-17 + art_sys_87: -1.55016852e-12 + art_sys_88: 8.41284544e-18 + art_sys_89: 2.03613949e-19 + art_sys_90: -6.31219259e-07 + art_sys_91: -2.91870751e-13 + art_sys_92: 3.00627879e-07 + art_sys_93: -4.84770859e-14 + art_sys_94: -2.12256989e-07 + art_sys_95: 9.16711799e-15 + art_sys_96: 1.11387704e-18 + art_sys_97: -6.59955326e-14 + art_sys_98: 1.09899085e-07 + art_sys_99: -4.44354383e-13 + art_sys_100: -3.54074573e-14 + art_sys_101: 5.82288786e-08 + art_sys_102: -2.52481270e-08 + art_sys_103: 1.53485806e-15 + art_sys_104: -7.62686434e-13 + art_sys_105: -1.03055936e-08 + art_sys_106: 1.28917323e-13 + art_sys_107: 7.49822456e-19 + art_sys_108: -4.63198200e-20 + art_sys_109: -1.98945318e-19 + art_sys_110: 6.45862566e-15 + art_sys_111: 3.87315993e-09 + art_sys_112: 2.08702774e-16 + art_sys_113: 2.50688235e-21 + art_sys_114: -1.37228478e-09 + art_sys_115: -1.15524423e-16 + art_sys_116: 6.33419163e-15 + art_sys_117: 5.82586540e-10 + art_sys_118: 4.37715075e-16 + art_sys_119: -2.11814509e-10 + art_sys_120: -1.07848592e-14 + art_sys_121: 3.30852006e-17 + art_sys_122: -7.15954085e-11 + art_sys_123: -2.39329138e-11 + art_sys_124: -2.61108560e-17 + art_sys_125: -3.10010448e-15 + art_sys_126: 7.41535859e-17 + art_sys_127: 7.82875967e-12 + art_sys_128: 8.77895110e-17 + art_sys_129: -2.03955293e-12 + art_sys_130: 1.39363463e-16 + art_sys_131: -5.58736044e-16 + art_sys_132: 6.98358852e-13 + art_sys_133: 1.63559450e-15 + art_sys_134: 3.33815579e-18 + art_sys_135: -1.19073543e-13 + art_sys_136: 3.27077412e-16 + art_sys_137: -3.61969807e-20 + art_sys_138: -2.14795779e-14 + art_sys_139: 1.15793119e-14 + art_sys_140: 1.70827824e-15 + art_sys_141: -2.62079217e-16 + art_sys_142: -2.20107073e-17 + art_sys_143: -1.21106553e-20 + art_sys_144: -2.16139787e-20 + art_sys_145: -8.81513603e-22 + art_sys_146: -0.0 + art_sys_147: -8.94455197e-19 + art_sys_148: -3.11722213e-18 + art_sys_149: -3.11722213e-18 + art_sys_150: 6.71250064e-18 + art_sys_151: 6.71250064e-18 + art_sys_152: -1.19481086e-16 + art_sys_153: 6.38786556e-18 + art_sys_154: -9.78316415e-22 + art_sys_155: 3.36924520e-29 + art_sys_156: -1.35185468e-33 + art_sys_157: -5.52726309e-32 + art_sys_158: 0.0 + art_sys_159: 6.48230636e-20 + art_sys_160: 2.86786269e-21 + art_sys_161: -1.99787004e-21 + art_sys_162: 2.61529220e-22 + art_sys_163: -1.59906781e-19 + art_sys_164: -9.22383057e-20 + art_sys_165: 1.37910826e-20 + art_sys_166: -2.92269440e-29 + art_sys_167: -7.22850906e-29 + art_sys_168: 4.83370612e-32 + art_sys_169: -6.05740661e-30 + art_sys_170: -6.99195095e-30 + art_sys_171: 5.30921683e-29 + art_sys_172: -8.57707971e-28 + art_sys_173: 1.79410192e-28 + art_sys_174: 3.26411403e-30 + art_sys_175: -4.74978346e-33 + art_sys_176: -2.39170567e-30 + art_sys_177: 1.81631425e-30 + art_sys_178: -6.15410461e-31 + art_sys_179: 2.22077441e-31 + art_sys_180: 8.08112463e-32 + art_sys_181: -6.31957364e-33 + art_sys_182: -8.69954381e-34 + art_sys_183: -2.84696600e-35 + art_sys_184: -1.40345339e-35 + art_sys_185: -6.57923938e-36 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -7514,191 +7514,191 @@ bins: RelativeStatFSR-: -8.93267573e-03 luminosity_uncertainty: 4.98937400e-01 uncorrelated_uncertainty: 1.91899000e-01 -- art_sys_1: 1.90770021e-36 - art_sys_2: -1.00577738e-26 - art_sys_3: 7.21490011e-23 +- art_sys_1: 3.28974371e-38 + art_sys_2: 5.03653189e-26 + art_sys_3: -1.43917911e-26 art_sys_4: 3.69578857e-06 - art_sys_5: -3.48104561e-22 - art_sys_6: 3.20125638e-23 - art_sys_7: 1.86157521e-05 - art_sys_8: -1.98649811e-20 - art_sys_9: -4.51006397e-05 - art_sys_10: -4.95479219e-22 - art_sys_11: -6.75542617e-19 + art_sys_5: -5.42522848e-21 + art_sys_6: -3.57443758e-23 + art_sys_7: -1.86157521e-05 + art_sys_8: -4.35183174e-21 + art_sys_9: 4.51006397e-05 + art_sys_10: -5.44930806e-22 + art_sys_11: -1.08597832e-19 art_sys_12: 2.12328423e-05 - art_sys_13: -3.53348318e-22 - art_sys_14: -4.57284220e-04 - art_sys_15: -6.54684688e-18 - art_sys_16: 4.72403197e-04 - art_sys_17: -8.19698000e-20 - art_sys_18: 4.30140485e-16 - art_sys_19: 1.74535513e-03 - art_sys_20: -4.90402367e-20 - art_sys_21: -4.25957070e-16 + art_sys_13: 8.96340893e-21 + art_sys_14: 4.57284220e-04 + art_sys_15: 2.07149290e-18 + art_sys_16: -4.72403197e-04 + art_sys_17: 9.41214336e-20 + art_sys_18: 1.41838910e-16 + art_sys_19: -1.74535513e-03 + art_sys_20: 5.84956130e-19 + art_sys_21: 5.73636755e-18 art_sys_22: 1.30039188e-03 - art_sys_23: 1.48228423e-19 - art_sys_24: 4.01378970e-16 - art_sys_25: 5.91252329e-14 - art_sys_26: -7.46285883e-14 - art_sys_27: -3.50212445e-14 - art_sys_28: -9.75043734e-15 - art_sys_29: -9.47533296e-16 - art_sys_30: -6.93468702e-04 - art_sys_31: 1.35642782e-02 - art_sys_32: -8.38994770e-17 - art_sys_33: -2.50199834e-16 - art_sys_34: 5.34977299e-17 - art_sys_35: -5.44968669e-14 - art_sys_36: -7.57093759e-14 + art_sys_23: 3.17758574e-19 + art_sys_24: -4.19781070e-19 + art_sys_25: -5.14921660e-14 + art_sys_26: -2.50215686e-14 + art_sys_27: 2.01197501e-14 + art_sys_28: -6.93468702e-04 + art_sys_29: -1.35642782e-02 + art_sys_30: -4.53026216e-15 + art_sys_31: -1.39485228e-15 + art_sys_32: 6.34733242e-16 + art_sys_33: 1.92878142e-16 + art_sys_34: 2.66615750e-16 + art_sys_35: 2.08350833e-14 + art_sys_36: -4.48209245e-13 art_sys_37: 2.52256748e-03 - art_sys_38: 3.91151757e-16 - art_sys_39: 7.70378370e-13 - art_sys_40: 3.00496907e-11 - art_sys_41: -2.88018839e-02 - art_sys_42: 1.72128100e-02 - art_sys_43: 2.77195505e-18 - art_sys_44: -2.15341642e-18 - art_sys_45: 4.37164558e-18 - art_sys_46: -1.07106120e-12 - art_sys_47: -5.09074344e-12 + art_sys_38: 7.03633840e-16 + art_sys_39: -2.69782537e-13 + art_sys_40: 1.09477729e-10 + art_sys_41: 2.88018840e-02 + art_sys_42: -1.72128100e-02 + art_sys_43: 2.50701399e-17 + art_sys_44: -4.79410844e-18 + art_sys_45: -3.08028991e-18 + art_sys_46: -2.42748520e-11 + art_sys_47: -1.38271776e-11 art_sys_48: 9.49217945e-03 - art_sys_49: 7.78990001e-18 - art_sys_50: 3.67596089e-13 - art_sys_51: 4.32141055e-15 - art_sys_52: 4.19204914e-15 - art_sys_53: -4.97873904e-14 - art_sys_54: -1.81858119e-03 - art_sys_55: 2.45800861e-10 - art_sys_56: -6.22471639e-11 - art_sys_57: 8.39999702e-04 - art_sys_58: 2.82620804e-13 - art_sys_59: -3.91155687e-15 - art_sys_60: -1.79214713e-16 - art_sys_61: -9.46067361e-17 - art_sys_62: 8.77083386e-17 - art_sys_63: 7.77992694e-19 - art_sys_64: 5.64052779e-14 - art_sys_65: 1.10853104e-17 - art_sys_66: 9.59939306e-19 - art_sys_67: 3.62397417e-18 - art_sys_68: 8.93011809e-14 - art_sys_69: 1.56010792e-13 - art_sys_70: -2.58750539e-04 - art_sys_71: -5.00259096e-11 - art_sys_72: 8.71837283e-14 - art_sys_73: 1.81748441e-13 - art_sys_74: 1.23276300e-12 - art_sys_75: -8.38869247e-21 - art_sys_76: -6.84455217e-22 - art_sys_77: -8.00866812e-20 - art_sys_78: -4.60868099e-12 - art_sys_79: 2.34692486e-06 - art_sys_80: 6.26514964e-21 - art_sys_81: -2.09783584e-21 - art_sys_82: 9.96118329e-21 - art_sys_83: -1.79084471e-14 - art_sys_84: -8.73674308e-07 - art_sys_85: -5.74213214e-12 - art_sys_86: 7.70863491e-14 - art_sys_87: 7.07344342e-07 - art_sys_88: 9.94917124e-23 - art_sys_89: -3.70765774e-14 - art_sys_90: 3.58464495e-07 - art_sys_91: -4.62492597e-13 - art_sys_92: 1.90094624e-07 - art_sys_93: 3.22529486e-14 - art_sys_94: 2.85704234e-16 - art_sys_95: 8.30431729e-08 - art_sys_96: 1.05023605e-13 - art_sys_97: -3.37938310e-08 - art_sys_98: -4.42407406e-13 - art_sys_99: 7.14776490e-17 - art_sys_100: -9.61804494e-24 - art_sys_101: -1.12107726e-23 - art_sys_102: -1.27562941e-08 - art_sys_103: -2.07038450e-16 - art_sys_104: 4.51556140e-09 - art_sys_105: -3.15445036e-17 - art_sys_106: -1.14362325e-14 - art_sys_107: 1.91900747e-09 - art_sys_108: -3.46622100e-17 - art_sys_109: 6.98750673e-10 - art_sys_110: 3.36485702e-14 - art_sys_111: -4.71067540e-17 - art_sys_112: -2.35873381e-10 - art_sys_113: 7.89118344e-11 - art_sys_114: -2.58270893e-11 - art_sys_115: 5.43343505e-16 - art_sys_116: 6.75026299e-12 - art_sys_117: -1.13141316e-14 - art_sys_118: -2.26549659e-12 - art_sys_119: -1.65474400e-17 - art_sys_120: -5.70952990e-17 - art_sys_121: 6.78185399e-18 - art_sys_122: 1.74604673e-18 - art_sys_123: 3.03586143e-17 - art_sys_124: -3.62955047e-19 - art_sys_125: -3.78786035e-13 - art_sys_126: 7.88155895e-18 - art_sys_127: -3.66555048e-14 - art_sys_128: 2.41726566e-18 - art_sys_129: -7.84657108e-19 - art_sys_130: -4.83707644e-16 - art_sys_131: 1.51305842e-16 - art_sys_132: 1.70267197e-21 - art_sys_133: -4.69818005e-21 - art_sys_134: 4.52789329e-19 - art_sys_135: 7.71237989e-24 - art_sys_136: 3.79097482e-25 - art_sys_137: 5.56920112e-24 - art_sys_138: 5.22387469e-25 - art_sys_139: -7.94212275e-24 - art_sys_140: -1.96911128e-25 - art_sys_141: 8.65137292e-22 - art_sys_142: -6.31649992e-25 - art_sys_143: 8.71534134e-25 - art_sys_144: 3.04586502e-23 - art_sys_145: 6.94995605e-22 - art_sys_146: 4.41251205e-22 - art_sys_147: 8.85354228e-22 - art_sys_148: 2.12696673e-22 - art_sys_149: -4.77929632e-23 - art_sys_150: -1.74958880e-24 - art_sys_151: 8.45722722e-24 - art_sys_152: -2.69499338e-26 - art_sys_153: 3.09444954e-27 - art_sys_154: -3.62226767e-27 - art_sys_155: 1.11788392e-28 - art_sys_156: 1.02434895e-28 - art_sys_157: -2.91166477e-29 - art_sys_158: 3.01617464e-30 - art_sys_159: 9.39950905e-30 - art_sys_160: -2.67736200e-29 - art_sys_161: -3.92444417e-31 - art_sys_162: -2.86764389e-31 - art_sys_163: 3.04954251e-30 - art_sys_164: -2.19638677e-29 - art_sys_165: 1.58903121e-30 - art_sys_166: -2.92661128e-30 - art_sys_167: -1.90825801e-29 - art_sys_168: 1.53389427e-21 - art_sys_169: 2.47231628e-30 - art_sys_170: -4.03299050e-21 - art_sys_171: -3.27724337e-20 - art_sys_172: 2.24439719e-30 - art_sys_173: -2.25451676e-31 - art_sys_174: 2.51321553e-21 - art_sys_175: 0.0 - art_sys_176: 3.50207645e-23 - art_sys_177: 0.0 - art_sys_178: -4.18766533e-25 - art_sys_179: -1.28384550e-28 - art_sys_180: 1.11377347e-29 - art_sys_181: -6.39940870e-35 - art_sys_182: 0.0 - art_sys_183: -6.66260721e-35 - art_sys_184: 7.05115800e-33 - art_sys_185: -1.00369179e-36 + art_sys_49: -1.38394540e-15 + art_sys_50: -1.53958933e-14 + art_sys_51: -4.87580356e-16 + art_sys_52: 9.94394576e-16 + art_sys_53: 1.64407189e-16 + art_sys_54: -1.83444460e-17 + art_sys_55: 7.61648883e-17 + art_sys_56: 1.17059623e-13 + art_sys_57: 2.51447238e-11 + art_sys_58: 1.71596800e-16 + art_sys_59: -3.49606922e-17 + art_sys_60: -1.81858124e-03 + art_sys_61: -9.75957673e-12 + art_sys_62: 1.66556330e-10 + art_sys_63: -3.14073586e-12 + art_sys_64: -8.39999645e-04 + art_sys_65: -4.80036849e-19 + art_sys_66: -5.89243780e-18 + art_sys_67: 1.64189307e-12 + art_sys_68: 5.99851621e-16 + art_sys_69: -7.87442992e-15 + art_sys_70: -2.58750531e-04 + art_sys_71: -7.00250250e-11 + art_sys_72: -1.53740026e-14 + art_sys_73: 9.09897414e-17 + art_sys_74: 7.82834572e-17 + art_sys_75: -1.07079315e-17 + art_sys_76: -5.83032583e-20 + art_sys_77: 3.22187227e-14 + art_sys_78: -6.01013673e-14 + art_sys_79: 5.41046840e-18 + art_sys_80: 3.58536785e-14 + art_sys_81: -1.79316809e-18 + art_sys_82: -2.58293396e-18 + art_sys_83: -1.06190793e-16 + art_sys_84: -1.64463371e-18 + art_sys_85: -8.90614040e-19 + art_sys_86: -1.45563841e-16 + art_sys_87: 4.75399197e-12 + art_sys_88: -2.77561511e-17 + art_sys_89: -6.77541219e-19 + art_sys_90: 2.34692285e-06 + art_sys_91: 9.59426352e-13 + art_sys_92: -8.73668536e-07 + art_sys_93: 1.14402691e-13 + art_sys_94: 7.07350075e-07 + art_sys_95: -3.01685981e-14 + art_sys_96: -3.67337614e-18 + art_sys_97: 2.17109986e-13 + art_sys_98: -3.58466061e-07 + art_sys_99: 1.15163281e-12 + art_sys_100: 1.16614365e-13 + art_sys_101: -1.90091734e-07 + art_sys_102: 8.30444587e-08 + art_sys_103: -5.05343607e-15 + art_sys_104: 2.21005735e-12 + art_sys_105: 3.37860504e-08 + art_sys_106: -4.24460285e-13 + art_sys_107: -2.47334745e-18 + art_sys_108: 1.53022854e-19 + art_sys_109: 6.58829374e-19 + art_sys_110: -2.12930730e-14 + art_sys_111: -1.27557186e-08 + art_sys_112: -6.88547197e-16 + art_sys_113: -8.12637042e-21 + art_sys_114: 4.51546696e-09 + art_sys_115: 3.80958989e-16 + art_sys_116: -2.08837945e-14 + art_sys_117: -1.91923658e-09 + art_sys_118: -1.44343766e-15 + art_sys_119: 6.98136962e-10 + art_sys_120: 3.55625584e-14 + art_sys_121: -1.09136134e-16 + art_sys_122: 2.36000173e-10 + art_sys_123: 7.89260836e-11 + art_sys_124: 8.61287650e-17 + art_sys_125: 1.02239567e-14 + art_sys_126: -2.44598254e-16 + art_sys_127: -2.58180246e-11 + art_sys_128: -2.89617358e-16 + art_sys_129: 6.72718234e-12 + art_sys_130: -4.59741737e-16 + art_sys_131: 1.84312821e-15 + art_sys_132: -2.30366429e-12 + art_sys_133: -5.39532112e-15 + art_sys_134: -1.10115060e-17 + art_sys_135: 3.92799308e-13 + art_sys_136: -1.07896024e-15 + art_sys_137: 1.19403550e-19 + art_sys_138: 7.00181337e-14 + art_sys_139: -3.81965042e-14 + art_sys_140: -5.63505668e-15 + art_sys_141: 8.64528440e-16 + art_sys_142: 7.25712111e-17 + art_sys_143: 3.99493350e-20 + art_sys_144: 7.12990469e-20 + art_sys_145: 2.93461295e-21 + art_sys_146: 0.0 + art_sys_147: 2.95357264e-18 + art_sys_148: 1.02405654e-17 + art_sys_149: 1.02405654e-17 + art_sys_150: -2.21445458e-17 + art_sys_151: -2.21445458e-17 + art_sys_152: 3.94132614e-16 + art_sys_153: -2.10729971e-17 + art_sys_154: 3.22524325e-21 + art_sys_155: -1.11139440e-28 + art_sys_156: 4.45975906e-33 + art_sys_157: 1.82265727e-31 + art_sys_158: -0.0 + art_sys_159: -2.12218836e-19 + art_sys_160: -9.43165038e-21 + art_sys_161: 6.59326093e-21 + art_sys_162: -8.14850047e-22 + art_sys_163: 5.27507876e-19 + art_sys_164: 3.04184576e-19 + art_sys_165: -4.54887417e-20 + art_sys_166: 1.50424420e-28 + art_sys_167: 2.25884683e-28 + art_sys_168: -4.47061080e-30 + art_sys_169: 7.69122151e-30 + art_sys_170: 2.89182903e-29 + art_sys_171: -1.62516052e-28 + art_sys_172: 2.97580300e-27 + art_sys_173: -3.24591442e-28 + art_sys_174: -3.27420505e-30 + art_sys_175: 1.56483755e-32 + art_sys_176: -4.13497196e-30 + art_sys_177: 1.44904543e-30 + art_sys_178: -1.79834139e-31 + art_sys_179: -5.31833612e-31 + art_sys_180: -8.47360431e-32 + art_sys_181: 2.92267000e-33 + art_sys_182: 5.04781323e-33 + art_sys_183: 5.24367822e-35 + art_sys_184: 4.62773222e-35 + art_sys_185: 2.17026206e-35 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -7805,191 +7805,191 @@ bins: RelativeStatFSR-: -5.52135761e-03 luminosity_uncertainty: 2.86829400e-01 uncorrelated_uncertainty: 0.110319 -- art_sys_1: 2.24227180e-37 - art_sys_2: -1.29237616e-27 - art_sys_3: 8.48030096e-24 +- art_sys_1: 3.86677062e-39 + art_sys_2: 5.91987491e-27 + art_sys_3: -1.58284886e-27 art_sys_4: 4.34398244e-07 - art_sys_5: -3.54444894e-23 - art_sys_6: 4.23633416e-24 - art_sys_7: 2.23039720e-06 - art_sys_8: -7.93166408e-22 - art_sys_9: -4.60379320e-06 - art_sys_10: -4.75104700e-23 - art_sys_11: 1.05445584e-19 + art_sys_5: -6.26283868e-22 + art_sys_6: -4.20012569e-24 + art_sys_7: -2.23039720e-06 + art_sys_8: -1.17273507e-21 + art_sys_9: 4.60379320e-06 + art_sys_10: -5.67167378e-23 + art_sys_11: 1.31094207e-20 art_sys_12: -1.71120699e-06 - art_sys_13: 5.53786074e-23 - art_sys_14: -2.89841913e-05 - art_sys_15: 8.14721909e-19 - art_sys_16: -1.42868628e-04 - art_sys_17: 2.16646666e-20 - art_sys_18: 8.26991597e-18 - art_sys_19: -3.02736511e-06 - art_sys_20: -3.76132613e-21 - art_sys_21: 5.76894979e-16 + art_sys_13: 5.31704538e-22 + art_sys_14: 2.89841913e-05 + art_sys_15: -2.34964995e-18 + art_sys_16: 1.42868628e-04 + art_sys_17: 1.64451863e-20 + art_sys_18: -6.14985078e-16 + art_sys_19: 3.02736511e-06 + art_sys_20: 4.61161202e-20 + art_sys_21: 2.03923119e-16 art_sys_22: 8.75701453e-05 - art_sys_23: 2.87063776e-20 - art_sys_24: -1.62073191e-16 - art_sys_25: -3.64063006e-14 - art_sys_26: -4.66224832e-14 - art_sys_27: 1.14043146e-14 - art_sys_28: -8.66550878e-15 - art_sys_29: -5.36064265e-16 - art_sys_30: 1.29084350e-03 - art_sys_31: 1.84058779e-03 - art_sys_32: -2.26243449e-16 - art_sys_33: -4.58076120e-16 - art_sys_34: 2.38036724e-17 - art_sys_35: -6.30661520e-14 - art_sys_36: -1.39897811e-13 + art_sys_23: 4.75181118e-20 + art_sys_24: 3.52461471e-16 + art_sys_25: -6.07656410e-14 + art_sys_26: 1.76571797e-14 + art_sys_27: 1.97570179e-14 + art_sys_28: 1.29084350e-03 + art_sys_29: -1.84058779e-03 + art_sys_30: -5.73678078e-15 + art_sys_31: -3.76352863e-16 + art_sys_32: 9.57404413e-16 + art_sys_33: -1.96381680e-16 + art_sys_34: 6.64196066e-17 + art_sys_35: 2.41046080e-14 + art_sys_36: -8.28198856e-13 art_sys_37: 4.66127896e-03 - art_sys_38: 2.06142051e-16 - art_sys_39: -1.51137703e-13 - art_sys_40: 1.57370348e-12 - art_sys_41: -1.50838297e-03 - art_sys_42: 2.57894941e-02 - art_sys_43: 1.93147351e-17 - art_sys_44: 1.09107738e-17 - art_sys_45: -2.17209607e-18 - art_sys_46: 4.50937339e-13 - art_sys_47: 5.60188656e-12 + art_sys_38: 3.10775218e-16 + art_sys_39: 8.47982473e-14 + art_sys_40: 5.73365265e-12 + art_sys_41: 1.50838315e-03 + art_sys_42: -2.57894941e-02 + art_sys_43: -2.52717168e-17 + art_sys_44: 6.29850664e-18 + art_sys_45: -4.27029370e-18 + art_sys_46: -3.71458809e-11 + art_sys_47: 1.52156875e-11 art_sys_48: -1.04452737e-02 - art_sys_49: -7.92909479e-18 - art_sys_50: -3.60782150e-13 - art_sys_51: -1.21683915e-14 - art_sys_52: -2.98665854e-15 - art_sys_53: 4.08638477e-14 - art_sys_54: 1.49317499e-03 - art_sys_55: -2.01826731e-10 - art_sys_56: 8.04469932e-11 - art_sys_57: -1.39001692e-03 - art_sys_58: -2.67024640e-13 - art_sys_59: 7.48577469e-15 - art_sys_60: 3.59191031e-16 - art_sys_61: 1.79537880e-16 - art_sys_62: -1.70420673e-16 - art_sys_63: -2.16967186e-18 - art_sys_64: -1.08377806e-13 - art_sys_65: -2.09819281e-17 - art_sys_66: -2.03411994e-18 - art_sys_67: -6.86169641e-18 - art_sys_68: -2.20272790e-13 - art_sys_69: -3.84961986e-13 - art_sys_70: 4.97140070e-04 - art_sys_71: 9.36262659e-11 - art_sys_72: -2.34588680e-13 - art_sys_73: -2.10944552e-13 - art_sys_74: -2.08551029e-12 - art_sys_75: 1.09706514e-20 - art_sys_76: 3.11587006e-20 - art_sys_77: 2.03427051e-19 - art_sys_78: 1.24279466e-11 - art_sys_79: -5.78589593e-06 - art_sys_80: -1.57096713e-20 - art_sys_81: 8.23808135e-21 - art_sys_82: -2.74353575e-20 - art_sys_83: 5.22654895e-14 - art_sys_84: 2.57585688e-06 - art_sys_85: 9.76367969e-12 - art_sys_86: -2.25396119e-13 - art_sys_87: -1.90729405e-06 - art_sys_88: -2.39379175e-22 - art_sys_89: 1.07745716e-13 - art_sys_90: -1.01944857e-06 - art_sys_91: 3.25993465e-13 - art_sys_92: -5.44415196e-07 - art_sys_93: -9.59246382e-14 - art_sys_94: -8.79749844e-16 - art_sys_95: -2.39999911e-07 - art_sys_96: -1.79978103e-13 - art_sys_97: 9.86964128e-08 - art_sys_98: 1.29015713e-12 - art_sys_99: -2.22366121e-16 - art_sys_100: 6.54725129e-24 - art_sys_101: -1.59964674e-23 - art_sys_102: 3.73441883e-08 - art_sys_103: 6.12921963e-16 - art_sys_104: -1.32985091e-08 - art_sys_105: 9.28547024e-17 - art_sys_106: 3.35972862e-14 - art_sys_107: -5.65827331e-09 - art_sys_108: 1.01181535e-16 - art_sys_109: -2.06535075e-09 - art_sys_110: -9.97406944e-14 - art_sys_111: 1.42100409e-16 - art_sys_112: 6.98260968e-10 - art_sys_113: -2.33798049e-10 - art_sys_114: 7.65865307e-11 - art_sys_115: -1.61113256e-15 - art_sys_116: -2.00261577e-11 - art_sys_117: 2.15929109e-14 - art_sys_118: 6.72334896e-12 - art_sys_119: 4.94243913e-17 - art_sys_120: 1.68176808e-16 - art_sys_121: -2.06833936e-17 - art_sys_122: -4.66982410e-18 - art_sys_123: -9.01987453e-17 - art_sys_124: 5.44982357e-19 - art_sys_125: 1.12455944e-12 - art_sys_126: -2.29433992e-17 - art_sys_127: 1.08851965e-13 - art_sys_128: -7.13253539e-18 - art_sys_129: 2.32722530e-18 - art_sys_130: 1.43414580e-15 - art_sys_131: -4.48521529e-16 - art_sys_132: -5.00307852e-21 - art_sys_133: 1.37907896e-20 - art_sys_134: -1.26769747e-18 - art_sys_135: -7.91652398e-24 - art_sys_136: -6.07371414e-24 - art_sys_137: -9.09632889e-24 - art_sys_138: 1.79128055e-24 - art_sys_139: 9.62089728e-24 - art_sys_140: -2.05063859e-24 - art_sys_141: -2.54249969e-21 - art_sys_142: -3.86503787e-24 - art_sys_143: -2.79796384e-24 - art_sys_144: -8.72261564e-23 - art_sys_145: -1.98931345e-21 - art_sys_146: -1.26267630e-21 - art_sys_147: -2.53335937e-21 - art_sys_148: -6.09456237e-22 - art_sys_149: 1.36552663e-22 - art_sys_150: 5.29769983e-24 - art_sys_151: -2.41024712e-23 - art_sys_152: 7.67089419e-26 - art_sys_153: -9.28949555e-27 - art_sys_154: 1.02611851e-26 - art_sys_155: -3.23167085e-28 - art_sys_156: -2.95536865e-28 - art_sys_157: 8.29935387e-29 - art_sys_158: -8.92450226e-30 - art_sys_159: -2.79070706e-29 - art_sys_160: 7.94364244e-29 - art_sys_161: 1.16939164e-30 - art_sys_162: 8.18834555e-31 - art_sys_163: -8.71525376e-30 - art_sys_164: 6.30686485e-29 - art_sys_165: -4.60377484e-30 - art_sys_166: 8.34528162e-30 - art_sys_167: 5.49994612e-29 - art_sys_168: -5.81662826e-21 - art_sys_169: -7.03136888e-30 - art_sys_170: 1.18521120e-20 - art_sys_171: 9.64766481e-20 - art_sys_172: -6.48247883e-30 - art_sys_173: 6.67857433e-31 - art_sys_174: -7.39574804e-21 - art_sys_175: 0.0 - art_sys_176: -1.03087342e-22 - art_sys_177: 0.0 - art_sys_178: 1.23366333e-24 - art_sys_179: 3.76968760e-28 - art_sys_180: -3.27267282e-29 - art_sys_181: 1.87918177e-34 - art_sys_182: 0.0 - art_sys_183: 1.95243772e-34 - art_sys_184: -2.09049882e-32 - art_sys_185: 2.97417774e-36 + art_sys_49: 1.11651008e-14 + art_sys_50: 1.27648401e-14 + art_sys_51: 5.92654485e-16 + art_sys_52: -1.19063251e-15 + art_sys_53: -2.90524289e-16 + art_sys_54: -2.09699841e-18 + art_sys_55: -7.12671626e-17 + art_sys_56: -9.61076432e-14 + art_sys_57: -2.76684309e-11 + art_sys_58: -1.79723949e-16 + art_sys_59: 6.91880821e-17 + art_sys_60: 1.49317507e-03 + art_sys_61: 2.96973436e-12 + art_sys_62: -2.81675667e-10 + art_sys_63: 6.03436537e-12 + art_sys_64: 1.39001682e-03 + art_sys_65: 6.50244388e-19 + art_sys_66: 1.14720824e-17 + art_sys_67: -2.07795342e-12 + art_sys_68: -1.45282542e-15 + art_sys_69: 2.26534457e-14 + art_sys_70: 4.97140055e-04 + art_sys_71: 1.35328097e-10 + art_sys_72: -5.55893130e-13 + art_sys_73: -2.86817259e-16 + art_sys_74: -2.00769146e-16 + art_sys_75: 1.94171412e-17 + art_sys_76: 1.62949923e-19 + art_sys_77: -1.02636398e-13 + art_sys_78: 1.65427191e-13 + art_sys_79: -1.39061622e-17 + art_sys_80: -1.04358876e-13 + art_sys_81: 4.12094039e-18 + art_sys_82: 6.75663800e-18 + art_sys_83: 3.14056737e-16 + art_sys_84: 4.32157949e-18 + art_sys_85: 2.16595083e-18 + art_sys_86: 4.31224575e-16 + art_sys_87: -1.34728410e-11 + art_sys_88: 8.22216932e-17 + art_sys_89: 2.00816621e-18 + art_sys_90: -5.78589116e-06 + art_sys_91: -2.77118962e-12 + art_sys_92: 2.57584091e-06 + art_sys_93: -4.66986549e-13 + art_sys_94: -1.90731104e-06 + art_sys_95: 8.86628706e-14 + art_sys_96: 1.08921732e-17 + art_sys_97: -6.34232912e-13 + art_sys_98: 1.01945328e-06 + art_sys_99: -2.42845240e-12 + art_sys_100: -3.43747320e-13 + art_sys_101: 5.44406864e-07 + art_sys_102: -2.40003428e-07 + art_sys_103: 1.48685458e-14 + art_sys_104: -5.20067545e-12 + art_sys_105: -9.86739199e-08 + art_sys_106: 1.24392821e-12 + art_sys_107: 7.34016488e-18 + art_sys_108: -4.51393318e-19 + art_sys_109: -1.97901764e-18 + art_sys_110: 6.30630758e-14 + art_sys_111: 3.73425129e-08 + art_sys_112: 2.05350907e-15 + art_sys_113: 2.44905337e-20 + art_sys_114: -1.32982457e-08 + art_sys_115: -1.12941271e-15 + art_sys_116: 6.18406050e-14 + art_sys_117: 5.65894407e-09 + art_sys_118: 4.27967680e-15 + art_sys_119: -2.06353863e-09 + art_sys_120: -1.05329809e-13 + art_sys_121: 3.23850564e-16 + art_sys_122: -6.98633819e-10 + art_sys_123: -2.33838919e-10 + art_sys_124: -2.55598087e-16 + art_sys_125: -3.03261067e-14 + art_sys_126: 7.25871171e-16 + art_sys_127: 7.65593395e-11 + art_sys_128: 8.59817855e-16 + art_sys_129: -1.99574925e-11 + art_sys_130: 1.36478458e-15 + art_sys_131: -5.47066550e-15 + art_sys_132: 6.83666692e-12 + art_sys_133: 1.60119458e-14 + art_sys_134: 3.26792729e-17 + art_sys_135: -1.16611908e-12 + art_sys_136: 3.20279821e-15 + art_sys_137: -3.54420838e-19 + art_sys_138: -1.98509936e-13 + art_sys_139: 1.13414081e-13 + art_sys_140: 1.67315456e-14 + art_sys_141: -2.56669609e-15 + art_sys_142: -2.15489606e-16 + art_sys_143: -1.18626222e-19 + art_sys_144: -2.11688577e-19 + art_sys_145: -8.67356108e-21 + art_sys_146: -0.0 + art_sys_147: -8.75414299e-18 + art_sys_148: -3.05501047e-17 + art_sys_149: -3.05501047e-17 + art_sys_150: 6.58462038e-17 + art_sys_151: 6.58462038e-17 + art_sys_152: -1.16863202e-15 + art_sys_153: 6.24522434e-17 + art_sys_154: -9.54446794e-21 + art_sys_155: 3.29474281e-28 + art_sys_156: -1.32386618e-32 + art_sys_157: -5.39783709e-31 + art_sys_158: 0.0 + art_sys_159: 6.16230815e-19 + art_sys_160: 2.77790867e-20 + art_sys_161: -1.95941473e-20 + art_sys_162: 2.48140783e-21 + art_sys_163: -1.56550965e-18 + art_sys_164: -9.02906493e-19 + art_sys_165: 1.34929624e-19 + art_sys_166: -4.27603637e-28 + art_sys_167: -6.90788259e-28 + art_sys_168: 1.07969995e-29 + art_sys_169: -3.64202182e-29 + art_sys_170: -9.07872424e-29 + art_sys_171: 1.78404646e-28 + art_sys_172: -2.65595275e-27 + art_sys_173: 2.44714318e-28 + art_sys_174: 1.43307140e-29 + art_sys_175: -4.64836673e-32 + art_sys_176: 9.13794096e-30 + art_sys_177: -4.83633201e-31 + art_sys_178: 1.53961713e-31 + art_sys_179: 1.53308952e-30 + art_sys_180: -2.27154803e-31 + art_sys_181: 5.75337377e-33 + art_sys_182: -1.18441633e-32 + art_sys_183: 4.64022034e-35 + art_sys_184: -1.37955791e-34 + art_sys_185: -6.44083708e-35 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -8096,191 +8096,191 @@ bins: RelativeStatFSR-: -3.46741023e-03 luminosity_uncertainty: 1.67845080e-01 uncorrelated_uncertainty: 6.45558000e-02 -- art_sys_1: 1.09971027e-38 - art_sys_2: -1.91856011e-28 - art_sys_3: 4.15975382e-25 +- art_sys_1: 1.90752546e-40 + art_sys_2: 2.90381446e-28 + art_sys_3: -9.41226865e-29 art_sys_4: 2.13080852e-08 - art_sys_5: -3.56712523e-25 - art_sys_6: 1.75077196e-25 - art_sys_7: 2.32125048e-07 - art_sys_8: -6.44144399e-23 - art_sys_9: -3.26803189e-07 - art_sys_10: -2.67874390e-24 - art_sys_11: 5.01743093e-20 + art_sys_5: -6.00396980e-23 + art_sys_6: -2.06836216e-25 + art_sys_7: -2.32125048e-07 + art_sys_8: -4.93120623e-23 + art_sys_9: 3.26803189e-07 + art_sys_10: -4.18630039e-24 + art_sys_11: 7.62854358e-21 art_sys_12: -8.30529809e-07 - art_sys_13: 1.99527982e-23 - art_sys_14: 1.10680276e-05 - art_sys_15: 3.60887526e-19 - art_sys_16: -5.37568605e-05 - art_sys_17: 8.60022421e-21 - art_sys_18: 9.15768055e-18 - art_sys_19: -7.89375462e-05 - art_sys_20: 1.87926067e-21 - art_sys_21: 4.41847792e-16 + art_sys_13: -2.45870961e-22 + art_sys_14: -1.10680276e-05 + art_sys_15: -2.60099442e-19 + art_sys_16: 5.37568605e-05 + art_sys_17: -1.39576825e-24 + art_sys_18: -7.81057827e-17 + art_sys_19: 7.89375462e-05 + art_sys_20: -2.00400652e-20 + art_sys_21: -1.72168936e-15 art_sys_22: -4.80404336e-05 - art_sys_23: -4.07856815e-21 - art_sys_24: 1.49560442e-16 - art_sys_25: 1.45204504e-13 - art_sys_26: 2.33690288e-14 - art_sys_27: 3.32380203e-14 - art_sys_28: 4.62617771e-15 - art_sys_29: 6.03428056e-16 - art_sys_30: 2.10807808e-04 - art_sys_31: -7.96774297e-04 - art_sys_32: -6.56539978e-16 - art_sys_33: -1.83305691e-15 - art_sys_34: -2.25956802e-19 - art_sys_35: -1.17054303e-15 - art_sys_36: -6.18615315e-15 + art_sys_23: -9.76098685e-21 + art_sys_24: -8.36771311e-17 + art_sys_25: 6.26407892e-14 + art_sys_26: 5.41323413e-14 + art_sys_27: 2.78632261e-15 + art_sys_28: 2.10807808e-04 + art_sys_29: 7.96774297e-04 + art_sys_30: -3.80153038e-15 + art_sys_31: 5.67762815e-16 + art_sys_32: 1.41671339e-15 + art_sys_33: -1.16126374e-16 + art_sys_34: -5.38826102e-18 + art_sys_35: 4.46777501e-16 + art_sys_36: -3.66137739e-14 art_sys_37: 2.06063268e-04 - art_sys_38: 3.17786671e-16 - art_sys_39: -9.63017802e-14 - art_sys_40: -3.06586616e-12 - art_sys_41: 2.93855390e-03 - art_sys_42: 1.59211395e-03 - art_sys_43: 2.96037341e-17 - art_sys_44: -2.51995934e-17 - art_sys_45: 5.42851394e-17 - art_sys_46: 3.98157035e-13 - art_sys_47: 3.38243934e-12 + art_sys_38: -3.58803869e-16 + art_sys_39: 3.69444120e-14 + art_sys_40: -1.11695974e-11 + art_sys_41: -2.93855389e-03 + art_sys_42: -1.59211395e-03 + art_sys_43: -7.81434444e-17 + art_sys_44: 1.08348790e-17 + art_sys_45: 6.94919651e-17 + art_sys_46: -2.43356408e-12 + art_sys_47: 9.18999264e-12 art_sys_48: -6.30697302e-03 - art_sys_49: 2.90290798e-17 - art_sys_50: -3.02332627e-12 - art_sys_51: 1.58505846e-14 - art_sys_52: 1.56747813e-14 - art_sys_53: -1.89783583e-13 - art_sys_54: -6.93214807e-03 - art_sys_55: 9.36913836e-10 - art_sys_56: -2.27404470e-10 - art_sys_57: 2.77231385e-03 - art_sys_58: 5.58224374e-13 - art_sys_59: -2.23079682e-14 - art_sys_60: -1.07775248e-15 - art_sys_61: -5.36492187e-16 - art_sys_62: 5.07334504e-16 - art_sys_63: 6.64747531e-18 - art_sys_64: 3.23306279e-13 - art_sys_65: 6.27305541e-17 - art_sys_66: 6.02583013e-18 - art_sys_67: 2.00950683e-17 - art_sys_68: 6.07712704e-13 - art_sys_69: 1.06227162e-12 - art_sys_70: -1.48290208e-03 - art_sys_71: -2.81802227e-10 - art_sys_72: 7.43861382e-13 - art_sys_73: 5.50298863e-13 - art_sys_74: 6.50247726e-12 - art_sys_75: -8.76043956e-21 - art_sys_76: -1.19401109e-19 - art_sys_77: -4.62719738e-19 - art_sys_78: -3.82776613e-11 - art_sys_79: 1.59605800e-05 - art_sys_80: 4.69869037e-20 - art_sys_81: -3.17308623e-20 - art_sys_82: 8.61567709e-20 - art_sys_83: -1.77318895e-13 - art_sys_84: -7.52263960e-06 - art_sys_85: -2.05652340e-11 - art_sys_86: 7.60134620e-13 - art_sys_87: 6.04688609e-06 - art_sys_88: 8.29197062e-22 - art_sys_89: -3.65784615e-13 - art_sys_90: 3.24963929e-06 - art_sys_91: 3.35097269e-13 - art_sys_92: 1.79235481e-06 - art_sys_93: 3.34550047e-13 - art_sys_94: 3.27947279e-15 - art_sys_95: 8.00789554e-07 - art_sys_96: 5.26113414e-13 - art_sys_97: -3.33053113e-07 - art_sys_98: -4.31907536e-12 - art_sys_99: 8.28011293e-16 - art_sys_100: -3.77996165e-23 - art_sys_101: 3.27769962e-22 - art_sys_102: -1.27397703e-07 - art_sys_103: -2.13087154e-15 - art_sys_104: 4.55670597e-08 - art_sys_105: -3.18268855e-16 - art_sys_106: -1.14445195e-13 - art_sys_107: 1.94953042e-08 - art_sys_108: -3.42629305e-16 - art_sys_109: 7.13708252e-09 - art_sys_110: 3.46796357e-13 - art_sys_111: -5.05197233e-16 - art_sys_112: -2.41998994e-09 - art_sys_113: 8.11770495e-10 - art_sys_114: -2.66215639e-10 - art_sys_115: 5.61191751e-15 - art_sys_116: 6.96906263e-11 - art_sys_117: -6.47429143e-14 - art_sys_118: -2.34078882e-11 - art_sys_119: -1.73646756e-16 - art_sys_120: -5.78955560e-16 - art_sys_121: 7.47124570e-17 - art_sys_122: 1.34969011e-17 - art_sys_123: 3.14238954e-16 - art_sys_124: 7.31534914e-19 - art_sys_125: -3.91789905e-12 - art_sys_126: 7.75109104e-17 - art_sys_127: -3.79405960e-13 - art_sys_128: 2.45959185e-17 - art_sys_129: -8.09636236e-18 - art_sys_130: -4.98716952e-15 - art_sys_131: 1.55892932e-15 - art_sys_132: 1.71431374e-20 - art_sys_133: -4.71994050e-20 - art_sys_134: 4.03784404e-18 - art_sys_135: 3.45175389e-23 - art_sys_136: 4.93923753e-24 - art_sys_137: 2.78603255e-23 - art_sys_138: -1.38836106e-24 - art_sys_139: -1.53182076e-24 - art_sys_140: -1.92509125e-24 - art_sys_141: 8.71620678e-21 - art_sys_142: 2.66545300e-24 - art_sys_143: 9.38416809e-24 - art_sys_144: 2.84993301e-22 - art_sys_145: 6.55777518e-21 - art_sys_146: 4.12703783e-21 - art_sys_147: 8.32647322e-21 - art_sys_148: 2.00831257e-21 - art_sys_149: -4.45864143e-22 - art_sys_150: -2.07636800e-23 - art_sys_151: 7.89570432e-23 - art_sys_152: -2.50792914e-25 - art_sys_153: 3.24870615e-26 - art_sys_154: -3.32913704e-26 - art_sys_155: 1.09627176e-27 - art_sys_156: 9.87742398e-28 - art_sys_157: -2.73192077e-28 - art_sys_158: 3.07335240e-29 - art_sys_159: 9.72910506e-29 - art_sys_160: -2.76501584e-28 - art_sys_161: -4.07629045e-30 - art_sys_162: -2.67370127e-30 - art_sys_163: 2.85775296e-29 - art_sys_164: -2.08602908e-28 - art_sys_165: 1.55075635e-29 - art_sys_166: -2.72893511e-29 - art_sys_167: -1.83853817e-28 - art_sys_168: 2.70777109e-20 - art_sys_169: 2.28799375e-29 - art_sys_170: -4.06304644e-20 - art_sys_171: -3.31553799e-19 - art_sys_172: 2.16328071e-29 - art_sys_173: -2.31872830e-30 - art_sys_174: 2.54005527e-20 - art_sys_175: 0.0 - art_sys_176: 3.54222342e-22 - art_sys_177: 0.0 - art_sys_178: -4.24455175e-24 - art_sys_179: -1.29043023e-27 - art_sys_180: 1.12138475e-28 - art_sys_181: -6.43263044e-34 - art_sys_182: 0.0 - art_sys_183: -6.65491290e-34 - art_sys_184: 7.26869896e-32 - art_sys_185: -1.03253295e-35 + art_sys_49: -3.65562260e-14 + art_sys_50: -6.75952933e-14 + art_sys_51: -1.60736907e-15 + art_sys_52: 3.60585846e-15 + art_sys_53: 4.40958605e-16 + art_sys_54: 1.17612334e-16 + art_sys_55: 3.32697020e-16 + art_sys_56: 4.46189592e-13 + art_sys_57: -1.66735472e-11 + art_sys_58: 7.62064255e-16 + art_sys_59: -1.40951510e-16 + art_sys_60: -6.93214824e-03 + art_sys_61: -1.18130627e-10 + art_sys_62: 5.46676903e-10 + art_sys_63: -1.79998773e-11 + art_sys_64: -2.77231367e-03 + art_sys_65: -1.93381109e-18 + art_sys_66: -3.43219430e-17 + art_sys_67: 9.18640559e-13 + art_sys_68: 4.03351284e-15 + art_sys_69: -6.57033931e-14 + art_sys_70: -1.48290203e-03 + art_sys_71: -4.02836898e-10 + art_sys_72: -4.99816183e-13 + art_sys_73: 8.43127895e-16 + art_sys_74: 5.38461292e-16 + art_sys_75: -1.95151627e-17 + art_sys_76: -5.07711032e-19 + art_sys_77: 1.59632283e-13 + art_sys_78: -5.25652286e-13 + art_sys_79: 3.34348251e-17 + art_sys_80: 3.40775751e-13 + art_sys_81: -9.59306916e-18 + art_sys_82: -1.94663740e-17 + art_sys_83: -1.08207231e-15 + art_sys_84: -1.18236228e-17 + art_sys_85: -5.89856707e-18 + art_sys_86: -1.49616117e-15 + art_sys_87: 3.89181175e-11 + art_sys_88: -2.85369331e-16 + art_sys_89: -6.97514980e-18 + art_sys_90: 1.59605672e-05 + art_sys_91: 9.23880434e-12 + art_sys_92: -7.52258893e-06 + art_sys_93: 9.63660324e-13 + art_sys_94: 6.04693740e-06 + art_sys_95: -3.03211101e-13 + art_sys_96: -3.78520851e-17 + art_sys_97: 2.15045390e-12 + art_sys_98: -3.24965523e-06 + art_sys_99: 6.37096033e-12 + art_sys_100: 1.18279717e-12 + art_sys_101: -1.79232858e-06 + art_sys_102: 8.00799916e-07 + art_sys_103: -5.09869488e-14 + art_sys_104: 1.51500430e-11 + art_sys_105: 3.32979220e-07 + art_sys_106: -4.24460286e-12 + art_sys_107: -2.55548977e-17 + art_sys_108: 1.56889251e-18 + art_sys_109: 7.02429496e-18 + art_sys_110: -2.18792366e-13 + art_sys_111: -1.27392112e-07 + art_sys_112: -7.19385352e-15 + art_sys_113: -8.37398867e-20 + art_sys_114: 4.55663404e-08 + art_sys_115: 3.92435213e-15 + art_sys_116: -2.14594432e-13 + art_sys_117: -1.94975536e-08 + art_sys_118: -1.48729070e-14 + art_sys_119: 7.13080716e-09 + art_sys_120: 3.65492307e-13 + art_sys_121: -1.12735664e-15 + art_sys_122: 2.42124858e-09 + art_sys_123: 8.11897434e-10 + art_sys_124: 8.89845983e-16 + art_sys_125: 1.05457098e-13 + art_sys_126: -2.52695261e-15 + art_sys_127: -2.66117271e-10 + art_sys_128: -2.99582540e-15 + art_sys_129: 6.94502656e-11 + art_sys_130: -4.75352823e-15 + art_sys_131: 1.90498942e-14 + art_sys_132: -2.38026203e-11 + art_sys_133: -5.57477790e-14 + art_sys_134: -1.13776506e-16 + art_sys_135: 4.06243304e-12 + art_sys_136: -1.11555068e-14 + art_sys_137: 1.23432513e-18 + art_sys_138: 6.34894679e-13 + art_sys_139: -3.95224451e-13 + art_sys_140: -5.83045804e-14 + art_sys_141: 8.94312536e-15 + art_sys_142: 7.50343078e-16 + art_sys_143: 4.13420885e-19 + art_sys_144: 7.37640044e-19 + art_sys_145: 3.05052901e-20 + art_sys_146: 0.0 + art_sys_147: 3.04813321e-17 + art_sys_148: 1.06427874e-16 + art_sys_149: 1.06427874e-16 + art_sys_150: -2.29969036e-16 + art_sys_151: -2.29969036e-16 + art_sys_152: 4.06415109e-15 + art_sys_153: -2.17058593e-16 + art_sys_154: 3.30641360e-20 + art_sys_155: -1.14544636e-27 + art_sys_156: 4.61259197e-32 + art_sys_157: 1.87278890e-30 + art_sys_158: -0.0 + art_sys_159: -2.05720185e-18 + art_sys_160: -9.52989614e-20 + art_sys_161: 6.84390635e-20 + art_sys_162: -8.57952407e-21 + art_sys_163: 5.45203489e-18 + art_sys_164: 3.14326198e-18 + art_sys_165: -4.69725048e-19 + art_sys_166: 1.51657254e-27 + art_sys_167: 2.40015794e-27 + art_sys_168: -3.83730040e-29 + art_sys_169: 7.61633448e-29 + art_sys_170: 6.86989371e-29 + art_sys_171: -4.76661860e-28 + art_sys_172: 6.84943283e-27 + art_sys_173: -1.03671842e-27 + art_sys_174: -1.63410233e-28 + art_sys_175: 1.61731969e-31 + art_sys_176: -3.65706980e-29 + art_sys_177: 8.51410587e-30 + art_sys_178: -1.76738297e-30 + art_sys_179: -5.26438839e-30 + art_sys_180: -6.11443406e-31 + art_sys_181: 1.08998886e-32 + art_sys_182: 3.99825794e-32 + art_sys_183: -1.57562239e-34 + art_sys_184: 4.80400240e-34 + art_sys_185: 2.24241563e-34 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -8387,191 +8387,191 @@ bins: RelativeStatFSR-: -2.16472218e-03 luminosity_uncertainty: 9.78437200e-02 uncorrelated_uncertainty: 3.76322000e-02 -- art_sys_1: -2.06390259e-40 - art_sys_2: -2.54185629e-30 - art_sys_3: -7.80315489e-27 +- art_sys_1: -2.98240600e-42 + art_sys_2: -5.44718228e-30 + art_sys_3: -7.57499465e-29 art_sys_4: -3.99711849e-10 - art_sys_5: -3.73987185e-25 - art_sys_6: -3.55077766e-27 - art_sys_7: 3.00131198e-08 - art_sys_8: -2.46158225e-24 - art_sys_9: -3.27344527e-08 - art_sys_10: -2.04154066e-25 - art_sys_11: 1.03393367e-20 + art_sys_5: -6.72547977e-24 + art_sys_6: 3.64888264e-27 + art_sys_7: -3.00131198e-08 + art_sys_8: -6.19929045e-24 + art_sys_9: 3.27344527e-08 + art_sys_10: -4.24445843e-25 + art_sys_11: 1.64568795e-21 art_sys_12: -1.45372251e-07 - art_sys_13: 3.32382546e-24 - art_sys_14: 3.46008028e-06 - art_sys_15: 7.45653181e-20 - art_sys_16: -1.04157296e-05 - art_sys_17: 1.69306930e-21 - art_sys_18: -2.39171331e-19 - art_sys_19: -2.01616146e-05 - art_sys_20: 5.39988919e-22 - art_sys_21: -2.00868017e-17 + art_sys_13: -7.54603052e-23 + art_sys_14: -3.46008028e-06 + art_sys_15: -4.80951359e-20 + art_sys_16: 1.04157296e-05 + art_sys_17: -3.73245101e-22 + art_sys_18: -2.73382513e-18 + art_sys_19: 2.01616146e-05 + art_sys_20: -6.09879099e-21 + art_sys_21: -6.17467782e-17 art_sys_22: -1.40530360e-05 - art_sys_23: -2.27832933e-21 - art_sys_24: -8.50660557e-16 - art_sys_25: 6.32710328e-14 - art_sys_26: -7.69875192e-15 - art_sys_27: -1.66188116e-14 - art_sys_28: 1.43890214e-15 - art_sys_29: -3.69430067e-16 - art_sys_30: -3.73143119e-05 - art_sys_31: -2.31083490e-04 - art_sys_32: -1.12270265e-15 - art_sys_33: 1.25323716e-16 - art_sys_34: 3.99740297e-18 - art_sys_35: 4.68431505e-15 - art_sys_36: 1.03325832e-14 + art_sys_23: -4.49213201e-21 + art_sys_24: 3.07727708e-16 + art_sys_25: 2.02070520e-14 + art_sys_26: -1.42648684e-14 + art_sys_27: -4.88933615e-15 + art_sys_28: -3.73143119e-05 + art_sys_29: 2.31083490e-04 + art_sys_30: 1.64901792e-15 + art_sys_31: 3.56357372e-16 + art_sys_32: -3.32928181e-16 + art_sys_33: -5.80860270e-17 + art_sys_34: -3.23329343e-18 + art_sys_35: -1.78964661e-15 + art_sys_36: 6.11785739e-14 art_sys_37: -3.44330162e-04 - art_sys_38: 1.54709968e-17 - art_sys_39: 6.54030282e-15 - art_sys_40: -3.72386123e-13 - art_sys_41: 3.56924374e-04 - art_sys_42: -2.58033497e-03 - art_sys_43: -1.09971543e-17 - art_sys_44: 6.20688681e-17 - art_sys_45: 5.59645475e-19 - art_sys_46: -3.40322225e-14 - art_sys_47: -3.87229884e-13 + art_sys_38: -4.01221733e-16 + art_sys_39: -4.55073431e-15 + art_sys_40: -1.35670928e-12 + art_sys_41: -3.56924391e-04 + art_sys_42: 2.58033497e-03 + art_sys_43: 5.15781195e-17 + art_sys_44: -1.20916350e-18 + art_sys_45: -2.01786267e-18 + art_sys_46: 3.71226426e-12 + art_sys_47: -1.04972014e-12 art_sys_48: 7.21954691e-04 - art_sys_49: 3.18913100e-18 - art_sys_50: -3.69186891e-14 - art_sys_51: -5.91210460e-14 - art_sys_52: 1.85075134e-14 - art_sys_53: -1.65125072e-13 - art_sys_54: -6.02625026e-03 - art_sys_55: 8.14522307e-10 - art_sys_56: 6.29257979e-11 - art_sys_57: -3.56096844e-03 - art_sys_58: 4.94881841e-13 - art_sys_59: 2.93204579e-14 - art_sys_60: 1.96292072e-15 - art_sys_61: 6.64524771e-16 - art_sys_62: -7.52855222e-16 - art_sys_63: -1.41010983e-17 - art_sys_64: -4.36777561e-13 - art_sys_65: -7.42467193e-17 - art_sys_66: -1.34889456e-17 - art_sys_67: -2.71622907e-17 - art_sys_68: -2.71447736e-12 - art_sys_69: -4.74002360e-12 - art_sys_70: 2.00349955e-03 - art_sys_71: 2.83658969e-10 - art_sys_72: -2.61456112e-12 - art_sys_73: 3.12732569e-14 - art_sys_74: 2.17718405e-12 - art_sys_75: 1.24780242e-19 - art_sys_76: 4.38626943e-19 - art_sys_77: 1.77601889e-18 - art_sys_78: 1.36325666e-10 - art_sys_79: -7.13455458e-05 - art_sys_80: -1.60713269e-19 - art_sys_81: 1.64414487e-19 - art_sys_82: -2.95873478e-19 - art_sys_83: 5.95037636e-13 - art_sys_84: 2.35478505e-05 - art_sys_85: 3.57795397e-11 - art_sys_86: -2.55508468e-12 - art_sys_87: -2.12300661e-05 - art_sys_88: -2.15133278e-21 - art_sys_89: 1.22649808e-12 - art_sys_90: -1.11789884e-05 - art_sys_91: -1.19322633e-11 - art_sys_92: -6.06691157e-06 - art_sys_93: -1.11331216e-12 - art_sys_94: -1.05977184e-14 - art_sys_95: -2.70821930e-06 - art_sys_96: -4.30328617e-13 - art_sys_97: 1.11957712e-06 - art_sys_98: 1.45522080e-11 - art_sys_99: -2.69199075e-15 - art_sys_100: 2.00789346e-22 - art_sys_101: -1.22188765e-21 - art_sys_102: 4.26758471e-07 - art_sys_103: 7.08420608e-15 - art_sys_104: -1.52477371e-07 - art_sys_105: 1.06425439e-15 - art_sys_106: 3.81763507e-13 - art_sys_107: -6.50489252e-08 - art_sys_108: 1.15096425e-15 - art_sys_109: -2.38015097e-08 - art_sys_110: -1.15349814e-12 - art_sys_111: 1.66968820e-15 - art_sys_112: 8.05793690e-09 - art_sys_113: -2.70147424e-09 - art_sys_114: 8.85500969e-10 - art_sys_115: -1.86662372e-14 - art_sys_116: -2.31690046e-10 - art_sys_117: 8.16558190e-14 - art_sys_118: 7.78112933e-11 - art_sys_119: 5.75175905e-16 - art_sys_120: 1.93207977e-15 - art_sys_121: -2.45678311e-16 - art_sys_122: -4.82300512e-17 - art_sys_123: -1.04370389e-15 - art_sys_124: 2.69333945e-19 - art_sys_125: 1.30196227e-11 - art_sys_126: -2.60464554e-16 - art_sys_127: 1.26048023e-12 - art_sys_128: -8.20719527e-17 - art_sys_129: 2.69169543e-17 - art_sys_130: 1.65870509e-14 - art_sys_131: -5.18597169e-15 - art_sys_132: -5.73381654e-20 - art_sys_133: 1.57887192e-19 - art_sys_134: -1.38205504e-17 - art_sys_135: -1.28822907e-22 - art_sys_136: -3.71971503e-23 - art_sys_137: -9.76197524e-23 - art_sys_138: 1.01352235e-23 - art_sys_139: 8.85614822e-24 - art_sys_140: -1.38142693e-23 - art_sys_141: -2.91403862e-20 - art_sys_142: -1.87706790e-24 - art_sys_143: -3.22535806e-23 - art_sys_144: -9.65657169e-22 - art_sys_145: -2.21969026e-20 - art_sys_146: -1.39936127e-20 - art_sys_147: -2.82099268e-20 - art_sys_148: -6.79992316e-21 - art_sys_149: 1.51356648e-21 - art_sys_150: 6.69021492e-23 - art_sys_151: -2.67745803e-22 - art_sys_152: 8.50841165e-25 - art_sys_153: -1.07924244e-25 - art_sys_154: 1.13254606e-25 - art_sys_155: -3.68246245e-27 - art_sys_156: -3.32935697e-27 - art_sys_157: 9.25586423e-28 - art_sys_158: -1.02530611e-28 - art_sys_159: -3.23249629e-28 - art_sys_160: 9.19156386e-28 - art_sys_161: 1.35899484e-29 - art_sys_162: 9.06545965e-30 - art_sys_163: -9.69019245e-29 - art_sys_164: 7.05375883e-28 - art_sys_165: -5.20827328e-29 - art_sys_166: 9.26236255e-29 - art_sys_167: 6.20154497e-28 - art_sys_168: -8.16892028e-20 - art_sys_169: -7.77390072e-29 - art_sys_170: 1.35846870e-19 - art_sys_171: 1.10777301e-18 - art_sys_172: -7.29154158e-29 - art_sys_173: 7.71475341e-30 - art_sys_174: -8.48899645e-20 - art_sys_175: 0.0 - art_sys_176: -1.18360385e-21 - art_sys_177: 0.0 - art_sys_178: 1.41758825e-23 - art_sys_179: 4.31702063e-27 - art_sys_180: -3.75066673e-28 - art_sys_181: 2.15231371e-33 - art_sys_182: 0.0 - art_sys_183: 2.23072369e-33 - art_sys_184: -2.41765161e-31 - art_sys_185: 3.43651592e-35 + art_sys_49: -6.49660012e-15 + art_sys_50: -7.48747068e-14 + art_sys_51: 1.65184387e-15 + art_sys_52: -1.50004368e-15 + art_sys_53: -7.33970226e-16 + art_sys_54: -2.20511023e-16 + art_sys_55: 2.74350580e-16 + art_sys_56: 3.87816436e-13 + art_sys_57: 1.92722712e-12 + art_sys_58: 1.52539058e-16 + art_sys_59: 2.72190068e-16 + art_sys_60: -6.02625009e-03 + art_sys_61: -9.08216370e-11 + art_sys_62: -7.61277349e-10 + art_sys_63: 2.43189973e-11 + art_sys_64: 3.56096815e-03 + art_sys_65: 1.00766553e-19 + art_sys_66: 4.78896898e-17 + art_sys_67: -1.98013115e-12 + art_sys_68: -1.77438461e-14 + art_sys_69: 2.16230698e-13 + art_sys_70: 2.00349948e-03 + art_sys_71: 5.75517439e-10 + art_sys_72: -5.21408393e-12 + art_sys_73: -2.39872977e-15 + art_sys_74: -2.22953449e-15 + art_sys_75: 2.99872076e-16 + art_sys_76: 1.84956924e-18 + art_sys_77: -4.72254117e-12 + art_sys_78: 1.83090844e-12 + art_sys_79: -1.40972104e-16 + art_sys_80: -1.13625549e-12 + art_sys_81: 5.11313240e-17 + art_sys_82: 7.77192151e-17 + art_sys_83: 3.62436564e-15 + art_sys_84: 4.77739308e-17 + art_sys_85: 2.74856754e-17 + art_sys_86: 4.98050398e-15 + art_sys_87: -1.32181046e-10 + art_sys_88: 9.49722714e-16 + art_sys_89: 2.32081609e-17 + art_sys_90: -7.13454907e-05 + art_sys_91: -3.12438812e-11 + art_sys_92: 2.35476811e-05 + art_sys_93: -3.88549035e-12 + art_sys_94: -2.12302291e-05 + art_sys_95: 1.01518853e-12 + art_sys_96: 1.25911733e-16 + art_sys_97: -7.22421243e-12 + art_sys_98: 1.11790407e-05 + art_sys_99: -1.73184733e-11 + art_sys_100: -3.94942735e-12 + art_sys_101: 6.06682248e-06 + art_sys_102: -2.70825487e-06 + art_sys_103: 1.70507923e-13 + art_sys_104: -4.80990493e-11 + art_sys_105: -1.11932720e-06 + art_sys_106: 1.42210552e-11 + art_sys_107: 8.49484730e-17 + art_sys_108: -5.20913636e-18 + art_sys_109: -2.32026113e-17 + art_sys_110: 7.28177096e-13 + art_sys_111: 4.26739645e-07 + art_sys_112: 2.38529158e-14 + art_sys_113: 2.80810683e-19 + art_sys_114: -1.52474861e-07 + art_sys_115: -1.30551511e-14 + art_sys_116: 7.14032695e-13 + art_sys_117: 6.50564701e-08 + art_sys_118: 4.94735188e-14 + art_sys_119: -2.37805819e-08 + art_sys_120: -1.21657003e-12 + art_sys_121: 3.74765436e-15 + art_sys_122: -8.06214411e-09 + art_sys_123: -2.70190571e-09 + art_sys_124: -2.95796938e-15 + art_sys_125: -3.50716773e-13 + art_sys_126: 8.40002401e-15 + art_sys_127: 8.85175911e-10 + art_sys_128: 9.95522856e-15 + art_sys_129: -2.30892304e-10 + art_sys_130: 1.57993299e-14 + art_sys_131: -6.33208714e-14 + art_sys_132: 7.91229415e-11 + art_sys_133: 1.85312495e-13 + art_sys_134: 3.78207596e-16 + art_sys_135: -1.35002842e-11 + art_sys_136: 3.70755701e-14 + art_sys_137: -4.10251739e-18 + art_sys_138: -2.16687372e-12 + art_sys_139: 1.31315417e-12 + art_sys_140: 1.93721930e-13 + art_sys_141: -2.97160913e-14 + art_sys_142: -2.49356108e-15 + art_sys_143: -1.37357338e-18 + art_sys_144: -2.45093982e-18 + art_sys_145: -1.01234474e-19 + art_sys_146: -0.0 + art_sys_147: -1.01348844e-16 + art_sys_148: -3.53183151e-16 + art_sys_149: -3.53183151e-16 + art_sys_150: 7.63338028e-16 + art_sys_151: 7.63338028e-16 + art_sys_152: -1.35160125e-14 + art_sys_153: 7.22079892e-16 + art_sys_154: -1.10134118e-19 + art_sys_155: 3.80992312e-27 + art_sys_156: -1.53272318e-31 + art_sys_157: -6.23435800e-30 + art_sys_158: 0.0 + art_sys_159: 6.94415059e-18 + art_sys_160: 3.18337914e-19 + art_sys_161: -2.27195495e-19 + art_sys_162: 2.83380608e-20 + art_sys_163: -1.81219339e-17 + art_sys_164: -1.04479561e-17 + art_sys_165: 1.56135274e-18 + art_sys_166: -5.05569872e-27 + art_sys_167: -7.84990226e-27 + art_sys_168: 1.17114055e-28 + art_sys_169: -3.24478649e-28 + art_sys_170: -4.49626061e-28 + art_sys_171: 7.22882191e-28 + art_sys_172: -6.44344443e-27 + art_sys_173: 5.18337203e-28 + art_sys_174: -2.14491386e-28 + art_sys_175: -5.37526657e-31 + art_sys_176: -6.14964871e-30 + art_sys_177: 1.98200593e-29 + art_sys_178: -6.36905411e-30 + art_sys_179: 1.85284201e-29 + art_sys_180: -1.98918689e-31 + art_sys_181: -2.72847369e-32 + art_sys_182: -1.38821075e-31 + art_sys_183: 1.20755550e-33 + art_sys_184: -1.59866494e-33 + art_sys_185: -7.45397594e-34 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -8678,191 +8678,191 @@ bins: RelativeStatFSR-: -1.37911322e-03 luminosity_uncertainty: 5.82197200e-02 uncorrelated_uncertainty: 2.23922000e-02 -- art_sys_1: -9.87500784e-41 - art_sys_2: -4.41420371e-31 - art_sys_3: -3.73414999e-27 +- art_sys_1: -1.62231312e-42 + art_sys_2: -2.60671261e-30 + art_sys_3: -9.52950182e-30 art_sys_4: -1.91279555e-10 - art_sys_5: -3.81603603e-26 - art_sys_6: -2.09693820e-27 - art_sys_7: 3.80688606e-09 - art_sys_8: -3.31200265e-25 - art_sys_9: -4.55354621e-09 - art_sys_10: -3.17926820e-26 - art_sys_11: 1.52404535e-21 + art_sys_5: -8.63884697e-25 + art_sys_6: 1.81762052e-27 + art_sys_7: -3.80688606e-09 + art_sys_8: -2.93003154e-25 + art_sys_9: 4.55354621e-09 + art_sys_10: -5.52404101e-26 + art_sys_11: 2.60387276e-22 art_sys_12: -1.69737452e-08 - art_sys_13: 3.80454834e-25 - art_sys_14: 5.51941416e-07 - art_sys_15: 8.97235088e-21 - art_sys_16: -1.43419679e-06 - art_sys_17: 2.33886543e-22 - art_sys_18: -1.15762846e-20 - art_sys_19: -2.91782533e-06 - art_sys_20: 5.23995265e-23 - art_sys_21: -1.58887167e-18 + art_sys_13: -1.20407322e-23 + art_sys_14: -5.51941416e-07 + art_sys_15: -2.87107430e-21 + art_sys_16: 1.43419679e-06 + art_sys_17: -6.69200137e-23 + art_sys_18: -8.56268348e-20 + art_sys_19: 2.91782533e-06 + art_sys_20: -6.89083477e-22 + art_sys_21: 3.78243353e-19 art_sys_22: -1.59872924e-06 - art_sys_23: -2.77880261e-22 - art_sys_24: -1.03545845e-16 - art_sys_25: -5.54808102e-15 - art_sys_26: 4.50430039e-15 - art_sys_27: -3.26268407e-14 - art_sys_28: 4.07687015e-15 - art_sys_29: 8.45408177e-16 - art_sys_30: -1.73337631e-05 - art_sys_31: 1.12211817e-05 - art_sys_32: 1.53912532e-16 - art_sys_33: 2.03763544e-16 - art_sys_34: 1.76486983e-18 - art_sys_35: 6.27987766e-16 - art_sys_36: 1.59825007e-15 + art_sys_23: -4.04094195e-22 + art_sys_24: 6.03594254e-17 + art_sys_25: 3.44088168e-14 + art_sys_26: 6.62681587e-15 + art_sys_27: -3.18624861e-15 + art_sys_28: -1.73337631e-05 + art_sys_29: -1.12211817e-05 + art_sys_30: -1.74349162e-16 + art_sys_31: -3.35517327e-16 + art_sys_32: -1.09082523e-15 + art_sys_33: 1.77802149e-16 + art_sys_34: -8.75496824e-18 + art_sys_35: -2.39447176e-16 + art_sys_36: 9.46651903e-15 art_sys_37: -5.32583361e-05 - art_sys_38: -2.76999051e-16 - art_sys_39: 9.14320140e-15 - art_sys_40: 2.54360943e-13 - art_sys_41: -2.43794845e-04 - art_sys_42: -3.45108960e-04 - art_sys_43: 3.99507621e-17 - art_sys_44: -1.21158845e-16 - art_sys_45: -2.17584068e-17 - art_sys_46: -6.00509858e-14 - art_sys_47: -5.53017354e-13 + art_sys_38: -9.19915699e-17 + art_sys_39: -3.71875798e-15 + art_sys_40: 9.26676543e-13 + art_sys_41: 2.43794843e-04 + art_sys_42: 3.45108961e-04 + art_sys_43: -3.67329089e-17 + art_sys_44: 1.50551034e-17 + art_sys_45: -4.93816408e-17 + art_sys_46: 5.17561133e-13 + art_sys_47: -1.50201560e-12 art_sys_48: 1.03114433e-03 - art_sys_49: -2.39047742e-19 - art_sys_50: 1.76911888e-12 - art_sys_51: -4.86127270e-14 - art_sys_52: 1.25579036e-15 - art_sys_53: -8.94491626e-15 - art_sys_54: -3.25260736e-04 - art_sys_55: 4.39971289e-11 - art_sys_56: 1.65522703e-10 - art_sys_57: -5.34803484e-03 - art_sys_58: 1.01970056e-13 - art_sys_59: -3.20080271e-14 - art_sys_60: -2.40178507e-15 - art_sys_61: -7.57675752e-16 - art_sys_62: 8.10459958e-16 - art_sys_63: 5.36532174e-17 - art_sys_64: 4.89430144e-13 - art_sys_65: 8.60888705e-17 - art_sys_66: 1.69232756e-17 - art_sys_67: 1.86225771e-17 - art_sys_68: 1.72912519e-12 - art_sys_69: 3.03464587e-12 - art_sys_70: -2.24493517e-03 - art_sys_71: -3.85706004e-10 - art_sys_72: 4.45907761e-12 - art_sys_73: -6.14331538e-13 - art_sys_74: 5.01200977e-12 - art_sys_75: 5.23856437e-19 - art_sys_76: -1.02740355e-18 - art_sys_77: -1.93457165e-18 - art_sys_78: -2.23349053e-10 - art_sys_79: 4.51950174e-05 - art_sys_80: 2.55548575e-19 - art_sys_81: -1.68405453e-19 - art_sys_82: 5.84772947e-19 - art_sys_83: -1.43259035e-12 - art_sys_84: -5.33484255e-05 - art_sys_85: 2.41819771e-11 - art_sys_86: 6.10690510e-12 - art_sys_87: 3.64965766e-05 - art_sys_88: 5.54107440e-22 - art_sys_89: -2.93439313e-12 - art_sys_90: 2.31731046e-05 - art_sys_91: 1.64268284e-11 - art_sys_92: 1.33635070e-05 - art_sys_93: 2.89473169e-12 - art_sys_94: 3.20510558e-14 - art_sys_95: 6.23065189e-06 - art_sys_96: -1.88678055e-13 - art_sys_97: -2.67323527e-06 - art_sys_98: -3.42179611e-11 - art_sys_99: 8.16052002e-15 - art_sys_100: -5.95579440e-22 - art_sys_101: 2.93522895e-21 - art_sys_102: -1.04248911e-06 - art_sys_103: -1.82208414e-14 - art_sys_104: 3.78947074e-07 - art_sys_105: -2.64776215e-15 - art_sys_106: -9.46512671e-13 - art_sys_107: 1.63557371e-07 - art_sys_108: -2.76196610e-15 - art_sys_109: 6.03753102e-08 - art_sys_110: 2.96940345e-12 - art_sys_111: -4.56397144e-15 - art_sys_112: -2.05989766e-08 - art_sys_113: 6.93617639e-09 - art_sys_114: -2.28148685e-09 - art_sys_115: 4.81457872e-14 - art_sys_116: 5.98561184e-10 - art_sys_117: -9.33638683e-14 - art_sys_118: -2.01298546e-10 - art_sys_119: -1.52376792e-15 - art_sys_120: -4.84740600e-15 - art_sys_121: 6.97205463e-16 - art_sys_122: 6.19738226e-17 - art_sys_123: 2.71216118e-15 - art_sys_124: 5.93859660e-17 - art_sys_125: -3.37434748e-11 - art_sys_126: 6.19905707e-16 - art_sys_127: -3.27083381e-12 - art_sys_128: 2.06857609e-16 - art_sys_129: -6.94850317e-17 - art_sys_130: -4.27532305e-14 - art_sys_131: 1.33508301e-14 - art_sys_132: 1.42029065e-19 - art_sys_133: -3.89776363e-19 - art_sys_134: 2.71258168e-17 - art_sys_135: 3.08025669e-22 - art_sys_136: 5.14085987e-23 - art_sys_137: 2.05962233e-22 - art_sys_138: -2.45049588e-23 - art_sys_139: -1.11187506e-23 - art_sys_140: 2.57435322e-24 - art_sys_141: 7.22807907e-20 - art_sys_142: 1.70172525e-24 - art_sys_143: 7.75945162e-23 - art_sys_144: 2.12080002e-21 - art_sys_145: 4.90080853e-20 - art_sys_146: 3.00965637e-20 - art_sys_147: 6.17853721e-20 - art_sys_148: 1.50263691e-20 - art_sys_149: -3.25815707e-21 - art_sys_150: -2.15979207e-22 - art_sys_151: 5.78823431e-22 - art_sys_152: -1.83312707e-24 - art_sys_153: 2.82748915e-25 - art_sys_154: -2.37696660e-25 - art_sys_155: 8.77124123e-27 - art_sys_156: 7.66398780e-27 - art_sys_157: -2.02403919e-27 - art_sys_158: 2.58766426e-28 - art_sys_159: 8.38899527e-28 - art_sys_160: -2.37634220e-27 - art_sys_161: -3.50881907e-29 - art_sys_162: -1.95733561e-29 - art_sys_163: 2.10730939e-28 - art_sys_164: -1.57493702e-27 - art_sys_165: 1.22875237e-28 - art_sys_166: -1.99439892e-28 - art_sys_167: -1.42595337e-27 - art_sys_168: 3.67484547e-19 - art_sys_169: 1.64974560e-28 - art_sys_170: -3.36933990e-19 - art_sys_171: -2.76637738e-18 - art_sys_172: 1.67404607e-28 - art_sys_173: -1.98077506e-29 - art_sys_174: 2.11623038e-19 - art_sys_175: 0.0 - art_sys_176: 2.95455060e-21 - art_sys_177: 0.0 - art_sys_178: -3.55120021e-23 - art_sys_179: -1.06644184e-26 - art_sys_180: 9.29050451e-28 - art_sys_181: -5.31650417e-33 - art_sys_182: 0.0 - art_sys_183: -5.44782376e-33 - art_sys_184: 6.22965055e-31 - art_sys_185: -8.82290420e-35 + art_sys_49: 4.77558933e-14 + art_sys_50: 3.82291667e-14 + art_sys_51: 2.39474104e-15 + art_sys_52: -8.85403694e-18 + art_sys_53: -1.85320131e-15 + art_sys_54: 1.03184822e-15 + art_sys_55: 6.16551397e-18 + art_sys_56: 2.08574676e-14 + art_sys_57: 2.72336236e-12 + art_sys_58: 5.42304141e-16 + art_sys_59: 8.49201697e-17 + art_sys_60: -3.25260445e-04 + art_sys_61: -2.97660223e-12 + art_sys_62: -1.10339490e-09 + art_sys_63: -2.72496003e-11 + art_sys_64: 5.34803441e-03 + art_sys_65: 2.29252888e-18 + art_sys_66: -6.13262617e-17 + art_sys_67: -2.95201614e-12 + art_sys_68: 1.12768543e-14 + art_sys_69: -4.32322273e-13 + art_sys_70: -2.24493509e-03 + art_sys_71: -6.22189427e-10 + art_sys_72: -4.39500654e-12 + art_sys_73: 7.06112676e-15 + art_sys_74: 1.83313680e-15 + art_sys_75: 7.79245820e-16 + art_sys_76: -3.82903233e-18 + art_sys_77: -2.79799961e-12 + art_sys_78: -3.39993255e-12 + art_sys_79: 7.24536692e-17 + art_sys_80: 2.64475160e-12 + art_sys_81: 1.25815643e-17 + art_sys_82: -9.01487207e-17 + art_sys_83: -9.12092142e-15 + art_sys_84: -4.96514911e-17 + art_sys_85: -1.38391050e-17 + art_sys_86: -1.27658545e-14 + art_sys_87: 2.43462515e-10 + art_sys_88: -2.43730420e-15 + art_sys_89: -5.98328712e-17 + art_sys_90: 4.51949913e-05 + art_sys_91: 7.16891433e-11 + art_sys_92: -5.33480955e-05 + art_sys_93: 7.50773446e-12 + art_sys_94: 3.64969591e-05 + art_sys_95: -2.50583176e-12 + art_sys_96: -3.24205851e-16 + art_sys_97: 1.73902263e-11 + art_sys_98: -2.31732390e-05 + art_sys_99: 2.14746113e-11 + art_sys_100: 9.90288994e-12 + art_sys_101: -1.33633161e-05 + art_sys_102: 6.23070805e-06 + art_sys_103: -4.23647964e-13 + art_sys_104: 7.09797254e-11 + art_sys_105: 2.67266846e-06 + art_sys_106: -3.48115020e-11 + art_sys_107: -2.19729867e-16 + art_sys_108: 1.34843208e-17 + art_sys_109: 6.29891631e-17 + art_sys_110: -1.86633611e-12 + art_sys_111: -1.04244498e-06 + art_sys_112: -6.28833664e-14 + art_sys_113: -7.02267293e-19 + art_sys_114: 3.78943249e-07 + art_sys_115: 3.36013920e-14 + art_sys_116: -1.83025565e-12 + art_sys_117: -1.63575554e-07 + art_sys_118: -1.27388614e-13 + art_sys_119: 6.03223133e-08 + art_sys_120: 3.11882246e-12 + art_sys_121: -9.69122625e-15 + art_sys_122: 2.06093227e-08 + art_sys_123: 6.93707501e-09 + art_sys_124: 7.65134902e-15 + art_sys_125: 9.04686243e-13 + art_sys_126: -2.17265246e-14 + art_sys_127: -2.28059986e-09 + art_sys_128: -2.58039571e-14 + art_sys_129: 5.96473958e-10 + art_sys_130: -4.09225648e-14 + art_sys_131: 1.63903564e-13 + art_sys_132: -2.04698249e-10 + art_sys_133: -4.79428784e-13 + art_sys_134: -9.78458179e-16 + art_sys_135: 3.49831698e-11 + art_sys_136: -9.60233730e-14 + art_sys_137: 1.06222526e-17 + art_sys_138: 4.30444040e-12 + art_sys_139: -3.40557207e-12 + art_sys_140: -5.02372849e-13 + art_sys_141: 7.70329532e-14 + art_sys_142: 6.45881039e-15 + art_sys_143: 3.56313721e-18 + art_sys_144: 6.35483780e-18 + art_sys_145: 2.64440391e-19 + art_sys_146: 0.0 + art_sys_147: 2.61641454e-16 + art_sys_148: 9.23155184e-16 + art_sys_149: 9.23155184e-16 + art_sys_150: -1.99202182e-15 + art_sys_151: -1.99202182e-15 + art_sys_152: 3.48457901e-14 + art_sys_153: -1.85805748e-15 + art_sys_154: 2.81082986e-19 + art_sys_155: -9.81382840e-27 + art_sys_156: 3.97192827e-31 + art_sys_157: 1.59750136e-29 + art_sys_158: -0.0 + art_sys_159: -1.60885151e-17 + art_sys_160: -7.93974758e-19 + art_sys_161: 5.92567342e-19 + art_sys_162: -7.29926608e-20 + art_sys_163: 4.69056840e-17 + art_sys_164: 2.70336105e-17 + art_sys_165: -4.03844260e-18 + art_sys_166: 1.33517634e-26 + art_sys_167: 2.10704798e-26 + art_sys_168: -3.71089129e-28 + art_sys_169: 1.05564636e-27 + art_sys_170: 1.70085988e-27 + art_sys_171: -6.44591682e-28 + art_sys_172: -9.54595891e-27 + art_sys_173: 1.46702654e-27 + art_sys_174: 8.67981058e-29 + art_sys_175: 1.39144985e-30 + art_sys_176: 2.10523425e-29 + art_sys_177: -9.84351429e-30 + art_sys_178: 6.32843583e-30 + art_sys_179: -4.40206439e-29 + art_sys_180: 2.97741374e-31 + art_sys_181: 1.45025572e-31 + art_sys_182: 3.52785811e-31 + art_sys_183: -3.72201950e-33 + art_sys_184: 4.13070004e-33 + art_sys_185: 1.92851870e-33 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -8969,191 +8969,191 @@ bins: RelativeStatFSR-: -8.72828422e-04 luminosity_uncertainty: 3.44572800e-02 uncorrelated_uncertainty: 1.32528000e-02 -- art_sys_1: -5.44224860e-42 - art_sys_2: -2.74689771e-32 - art_sys_3: -2.05791215e-28 +- art_sys_1: -8.83629690e-44 + art_sys_2: -1.43657484e-31 + art_sys_3: -6.67842579e-31 art_sys_4: -1.05415295e-11 - art_sys_5: -3.13712033e-27 - art_sys_6: -9.30838522e-29 - art_sys_7: 2.68461037e-10 - art_sys_8: -1.82106775e-25 - art_sys_9: -3.72996198e-10 - art_sys_10: -3.01164423e-27 - art_sys_11: 1.18395375e-22 + art_sys_5: -6.28046778e-26 + art_sys_6: 9.97493245e-29 + art_sys_7: -2.68461037e-10 + art_sys_8: -5.36059247e-26 + art_sys_9: 3.72996198e-10 + art_sys_10: -4.43250207e-27 + art_sys_11: 2.03984134e-23 art_sys_12: -1.04893981e-09 - art_sys_13: 2.35590080e-26 - art_sys_14: 3.82468976e-08 - art_sys_15: 2.50100554e-22 - art_sys_16: -1.08764212e-07 - art_sys_17: 1.76403578e-23 - art_sys_18: 5.82417914e-21 - art_sys_19: -1.79974661e-07 - art_sys_20: -2.38420064e-24 - art_sys_21: 3.91962059e-19 - art_sys_22: 1.50784266e-08 - art_sys_23: 2.03324790e-23 - art_sys_24: -2.90864988e-17 - art_sys_25: -5.32333548e-14 - art_sys_26: -4.45680614e-14 - art_sys_27: -7.82771266e-16 - art_sys_28: 9.25357776e-15 - art_sys_29: -7.49164940e-16 - art_sys_30: -1.15433600e-06 - art_sys_31: 1.07708406e-05 - art_sys_32: -4.95459911e-16 - art_sys_33: -4.55624092e-17 - art_sys_34: -2.38155135e-20 - art_sys_35: -1.47732742e-16 - art_sys_36: -3.17431597e-16 + art_sys_13: -8.39873189e-25 + art_sys_14: -3.82468976e-08 + art_sys_15: 6.66761550e-23 + art_sys_16: 1.08764212e-07 + art_sys_17: -2.94696459e-24 + art_sys_18: 5.77899128e-19 + art_sys_19: 1.79974662e-07 + art_sys_20: 9.19685834e-24 + art_sys_21: 3.97059272e-18 + art_sys_22: 1.50784267e-08 + art_sys_23: 5.25540650e-23 + art_sys_24: -4.89184702e-16 + art_sys_25: 5.04242443e-14 + art_sys_26: -1.18831772e-14 + art_sys_27: -6.31566648e-15 + art_sys_28: -1.15433600e-06 + art_sys_29: -1.07708406e-05 + art_sys_30: 4.76033904e-15 + art_sys_31: -7.80634646e-16 + art_sys_32: -8.46154306e-16 + art_sys_33: -8.29874607e-17 + art_sys_34: -1.47967654e-19 + art_sys_35: 5.65812665e-17 + art_sys_36: -1.88211793e-15 art_sys_37: 1.05965779e-05 - art_sys_38: 9.45162498e-17 - art_sys_39: 5.19400947e-16 - art_sys_40: 4.43009760e-14 - art_sys_41: -4.24609802e-05 - art_sys_42: 1.22854998e-04 - art_sys_43: -3.80165885e-17 - art_sys_44: -4.23470250e-17 - art_sys_45: 1.33532565e-16 - art_sys_46: -1.29799238e-15 - art_sys_47: -1.01200756e-14 + art_sys_38: 3.32309024e-16 + art_sys_39: -1.28167915e-16 + art_sys_40: 1.61397987e-13 + art_sys_41: 4.24609810e-05 + art_sys_42: -1.22854998e-04 + art_sys_43: 4.76224896e-17 + art_sys_44: 2.18491810e-17 + art_sys_45: 3.53792754e-17 + art_sys_46: -1.75693012e-13 + art_sys_47: -2.76357961e-14 art_sys_48: 1.88756223e-05 - art_sys_49: 1.83628884e-17 - art_sys_50: 1.52647307e-13 - art_sys_51: -9.66266333e-14 - art_sys_52: -1.88232999e-15 - art_sys_53: 1.13118044e-14 - art_sys_54: 4.20346526e-04 - art_sys_55: -5.68236667e-11 - art_sys_56: 6.78091388e-12 - art_sys_57: -1.93100608e-04 - art_sys_58: -6.77328702e-14 - art_sys_59: -2.14784716e-14 - art_sys_60: 6.84007348e-15 - art_sys_61: -1.00558123e-15 - art_sys_62: -7.15512240e-16 - art_sys_63: -5.04539218e-17 - art_sys_64: 1.23264274e-13 - art_sys_65: 1.65247578e-16 - art_sys_66: -7.09989575e-17 - art_sys_67: 2.70786597e-17 - art_sys_68: -2.41744239e-11 - art_sys_69: -4.21852479e-11 - art_sys_70: -5.63956279e-04 - art_sys_71: -1.35861861e-09 - art_sys_72: -2.40594830e-11 - art_sys_73: -1.46151695e-13 - art_sys_74: 1.44061405e-10 - art_sys_75: 4.43883537e-20 - art_sys_76: 4.76527548e-18 - art_sys_77: 1.50838564e-17 - art_sys_78: 1.19820718e-09 - art_sys_79: -6.35760788e-04 - art_sys_80: -1.32735144e-18 - art_sys_81: 4.58473406e-19 - art_sys_82: -2.69928154e-18 - art_sys_83: 6.34029874e-12 - art_sys_84: 1.46000771e-04 - art_sys_85: 1.32895138e-10 - art_sys_86: -2.68841077e-11 - art_sys_87: -1.95141186e-04 - art_sys_88: -2.57292105e-20 - art_sys_89: 1.29845472e-11 - art_sys_90: -1.02907284e-04 - art_sys_91: -1.42192562e-10 - art_sys_92: -5.98485485e-05 - art_sys_93: -1.28204813e-11 - art_sys_94: -1.41341420e-13 - art_sys_95: -2.76584542e-05 - art_sys_96: 3.06862663e-12 - art_sys_97: 1.17911717e-05 - art_sys_98: 1.50510787e-10 - art_sys_99: -3.57143900e-14 - art_sys_100: 2.49305972e-21 - art_sys_101: -1.29898824e-20 - art_sys_102: 4.60520306e-06 - art_sys_103: 8.08393175e-14 - art_sys_104: -1.67185705e-06 - art_sys_105: 1.17043307e-14 - art_sys_106: 4.12307850e-12 - art_sys_107: -7.21678101e-07 - art_sys_108: 1.22250340e-14 - art_sys_109: -2.66650851e-07 - art_sys_110: -1.31272296e-11 - art_sys_111: 2.00508076e-14 - art_sys_112: 9.09503685e-08 - art_sys_113: -3.06513402e-08 - art_sys_114: 1.00817063e-08 - art_sys_115: -2.13280080e-13 - art_sys_116: -2.64595264e-09 - art_sys_117: -1.06651664e-13 - art_sys_118: 8.89985688e-10 - art_sys_119: 6.70829490e-15 - art_sys_120: 2.14719236e-14 - art_sys_121: -3.04551148e-15 - art_sys_122: -2.81610987e-16 - art_sys_123: -1.19727576e-14 - art_sys_124: -2.32823505e-16 - art_sys_125: 1.49210339e-10 - art_sys_126: -2.75225577e-15 - art_sys_127: 1.44636582e-11 - art_sys_128: -9.12472341e-16 - art_sys_129: 3.07230035e-16 - art_sys_130: 1.89025075e-13 - art_sys_131: -5.90180102e-14 - art_sys_132: -6.27621914e-19 - art_sys_133: 1.72452168e-18 - art_sys_134: -1.23752940e-16 - art_sys_135: -1.34015865e-21 - art_sys_136: -2.43106303e-22 - art_sys_137: -9.44663687e-22 - art_sys_138: 1.16221872e-22 - art_sys_139: 1.69618720e-23 - art_sys_140: -7.39476256e-23 - art_sys_141: -3.19645633e-19 - art_sys_142: -1.45919106e-24 - art_sys_143: -3.42116253e-22 - art_sys_144: -9.51325295e-21 - art_sys_145: -2.19566526e-19 - art_sys_146: -1.35186049e-19 - art_sys_147: -2.77068746e-19 - art_sys_148: -6.72884470e-20 - art_sys_149: 1.46426221e-20 - art_sys_150: 9.22378251e-22 - art_sys_151: -2.59904291e-21 - art_sys_152: 8.24099891e-24 - art_sys_153: -1.23887190e-24 - art_sys_154: 1.07193029e-24 - art_sys_155: -3.89316236e-26 - art_sys_156: -3.40954055e-26 - art_sys_157: 9.08747323e-27 - art_sys_158: -1.13969020e-27 - art_sys_159: -3.71109561e-27 - art_sys_160: 1.05103018e-26 - art_sys_161: 1.55085805e-28 - art_sys_162: 8.77970531e-29 - art_sys_163: -9.42972055e-28 - art_sys_164: 7.03173547e-27 - art_sys_165: -5.49899044e-28 - art_sys_166: 8.95044112e-28 - art_sys_167: 6.34274382e-27 - art_sys_168: -1.61756112e-18 - art_sys_169: -7.42815685e-28 - art_sys_170: 1.48985448e-18 - art_sys_171: 1.22222880e-17 - art_sys_172: -7.47461919e-28 - art_sys_173: 8.75889330e-29 - art_sys_174: -9.34900028e-19 - art_sys_175: 0.0 - art_sys_176: -1.30528121e-20 - art_sys_177: 0.0 - art_sys_178: 1.56890486e-22 - art_sys_179: 4.71451836e-26 - art_sys_180: -4.10544480e-27 - art_sys_181: 2.34938393e-32 - art_sys_182: 0.0 - art_sys_183: 2.40449554e-32 - art_sys_184: -2.75420389e-30 - art_sys_185: 3.89829400e-34 + art_sys_49: 4.21189364e-14 + art_sys_50: -1.03661007e-14 + art_sys_51: 1.33671520e-14 + art_sys_52: 1.40898654e-15 + art_sys_53: 1.86753882e-15 + art_sys_54: 9.84277803e-16 + art_sys_55: -1.50031958e-17 + art_sys_56: -2.70441755e-14 + art_sys_57: 4.82190539e-14 + art_sys_58: -1.34504727e-16 + art_sys_59: 5.38370160e-17 + art_sys_60: 4.20346538e-04 + art_sys_61: 6.45862115e-12 + art_sys_62: -3.76367005e-11 + art_sys_63: -6.84548892e-12 + art_sys_64: 1.93100592e-04 + art_sys_65: -7.58943664e-17 + art_sys_66: 8.93991192e-18 + art_sys_67: -6.14802535e-14 + art_sys_68: -1.58847066e-13 + art_sys_69: 1.43690181e-12 + art_sys_70: -5.63956345e-04 + art_sys_71: 2.50300394e-10 + art_sys_72: 9.30967581e-14 + art_sys_73: -1.25916815e-14 + art_sys_74: -1.66827578e-14 + art_sys_75: 2.14241625e-15 + art_sys_76: 1.86751507e-17 + art_sys_77: -6.10500714e-11 + art_sys_78: 1.68440321e-11 + art_sys_79: -7.65730302e-16 + art_sys_80: -1.09476388e-11 + art_sys_81: 3.83010180e-16 + art_sys_82: 6.67444295e-16 + art_sys_83: 4.04989112e-14 + art_sys_84: 3.68665041e-16 + art_sys_85: 2.48321722e-16 + art_sys_86: 5.63893527e-14 + art_sys_87: -9.14841439e-10 + art_sys_88: 1.07654092e-14 + art_sys_89: 2.64541420e-16 + art_sys_90: -6.35760329e-04 + art_sys_91: -3.18425983e-10 + art_sys_92: 1.45999291e-04 + art_sys_93: -1.41035849e-11 + art_sys_94: -1.95142361e-04 + art_sys_95: 1.10565768e-11 + art_sys_96: 1.43253041e-15 + art_sys_97: -7.68094477e-11 + art_sys_98: 1.02907822e-04 + art_sys_99: -1.28866622e-10 + art_sys_100: -4.36975337e-11 + art_sys_101: 5.98477593e-05 + art_sys_102: -2.76586988e-05 + art_sys_103: 1.86935789e-12 + art_sys_104: -4.14862921e-10 + art_sys_105: -1.17887107e-05 + art_sys_106: 1.53747419e-10 + art_sys_107: 9.71424839e-16 + art_sys_108: -5.96262918e-17 + art_sys_109: -2.77875717e-16 + art_sys_110: 8.24240521e-12 + art_sys_111: 4.60501019e-06 + art_sys_112: 2.77999154e-13 + art_sys_113: 3.11363066e-18 + art_sys_114: -1.67184534e-06 + art_sys_115: -1.48463616e-13 + art_sys_116: 8.08116571e-12 + art_sys_117: 7.21756846e-07 + art_sys_118: 5.62873808e-13 + art_sys_119: -2.66416000e-07 + art_sys_120: -1.37801375e-11 + art_sys_121: 4.28447763e-14 + art_sys_122: -9.09950651e-08 + art_sys_123: -3.06549237e-08 + art_sys_124: -3.38269823e-14 + art_sys_125: -3.99785890e-12 + art_sys_126: 9.60510781e-14 + art_sys_127: 1.00776825e-08 + art_sys_128: 1.14109345e-13 + art_sys_129: -2.63670378e-09 + art_sys_130: 1.80945803e-13 + art_sys_131: -7.24665580e-13 + art_sys_132: 9.05013199e-10 + art_sys_133: 2.11966507e-12 + art_sys_134: 4.32596245e-15 + art_sys_135: -1.54690006e-10 + art_sys_136: 4.24586204e-13 + art_sys_137: -4.69666054e-17 + art_sys_138: -1.94607912e-11 + art_sys_139: 1.50589090e-11 + art_sys_140: 2.22139877e-12 + art_sys_141: -3.40624254e-13 + art_sys_142: -2.85417588e-14 + art_sys_143: -1.57559639e-17 + art_sys_144: -2.81003052e-17 + art_sys_145: -1.18206284e-18 + art_sys_146: -0.0 + art_sys_147: -1.15810809e-15 + art_sys_148: -4.06383573e-15 + art_sys_149: -4.06383573e-15 + art_sys_150: 8.81153785e-15 + art_sys_151: 8.81153785e-15 + art_sys_152: -1.54043332e-13 + art_sys_153: 8.21390011e-15 + art_sys_154: -1.24116733e-18 + art_sys_155: 4.33819077e-26 + art_sys_156: -1.75646413e-30 + art_sys_157: -7.05837737e-29 + art_sys_158: 0.0 + art_sys_159: 7.09443331e-17 + art_sys_160: 3.50293081e-18 + art_sys_161: -2.62192905e-18 + art_sys_162: 3.22649850e-19 + art_sys_163: -2.07411688e-16 + art_sys_164: -1.19491843e-16 + art_sys_165: 1.78541173e-17 + art_sys_166: -5.90429630e-26 + art_sys_167: -9.27838681e-26 + art_sys_168: 1.65204445e-27 + art_sys_169: -4.13226503e-27 + art_sys_170: -6.65737310e-27 + art_sys_171: 4.66363348e-27 + art_sys_172: 2.37105692e-27 + art_sys_173: -3.72772334e-28 + art_sys_174: -1.55044749e-28 + art_sys_175: -6.14311748e-30 + art_sys_176: -7.39538163e-30 + art_sys_177: 6.38747247e-29 + art_sys_178: -3.18590311e-29 + art_sys_179: 1.93946596e-28 + art_sys_180: -3.35126543e-30 + art_sys_181: -5.11885581e-31 + art_sys_182: -1.59406677e-30 + art_sys_183: 1.50492345e-32 + art_sys_184: -1.82526854e-32 + art_sys_185: -8.52610901e-33 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -9260,191 +9260,191 @@ bins: RelativeStatFSR-: -5.58758717e-04 luminosity_uncertainty: 2.06693240e-02 uncorrelated_uncertainty: 7.94974000e-03 -- art_sys_1: 6.09236436e-44 - art_sys_2: -1.16419003e-33 - art_sys_3: 2.30497097e-30 +- art_sys_1: 1.39713977e-45 + art_sys_2: 1.60903654e-33 + art_sys_3: -4.84321558e-32 art_sys_4: 1.18070732e-13 - art_sys_5: -2.95079525e-28 - art_sys_6: -2.75692309e-32 - art_sys_7: 1.91812392e-11 - art_sys_8: -1.34165369e-27 - art_sys_9: -2.68130690e-11 - art_sys_10: -2.17924551e-28 - art_sys_11: 1.16969842e-23 + art_sys_5: -4.49619859e-27 + art_sys_6: -1.26612658e-30 + art_sys_7: -1.91812392e-11 + art_sys_8: -4.38808594e-27 + art_sys_9: 2.68130690e-11 + art_sys_10: -3.26320601e-28 + art_sys_11: 1.97742349e-24 art_sys_12: -8.92162203e-11 - art_sys_13: 2.05663995e-27 - art_sys_14: 2.47302405e-09 - art_sys_15: -2.72216041e-23 - art_sys_16: -1.08812644e-08 - art_sys_17: 1.73092382e-24 - art_sys_18: -1.96756985e-20 - art_sys_19: -9.90528899e-09 - art_sys_20: -1.15160475e-24 - art_sys_21: -3.42135518e-19 + art_sys_13: -5.53426989e-26 + art_sys_14: -2.47302405e-09 + art_sys_15: 3.39534544e-23 + art_sys_16: 1.08812644e-08 + art_sys_17: 2.25401899e-25 + art_sys_18: 1.60928987e-19 + art_sys_19: 9.90529110e-09 + art_sys_20: 9.69776069e-24 + art_sys_21: 1.09506643e-18 art_sys_22: 2.08494092e-08 - art_sys_23: 9.01316606e-24 - art_sys_24: -4.54536375e-17 - art_sys_25: 1.57965854e-14 - art_sys_26: -7.20368502e-14 - art_sys_27: 1.22918009e-14 - art_sys_28: -6.51745213e-16 - art_sys_29: 3.62534617e-16 - art_sys_30: 1.30841204e-07 - art_sys_31: 2.03456234e-06 - art_sys_32: -3.26066426e-16 - art_sys_33: 7.70091860e-17 - art_sys_34: 7.99655603e-18 - art_sys_35: -5.04247178e-17 - art_sys_36: -1.19152017e-16 + art_sys_23: 1.74750703e-23 + art_sys_24: -2.03454549e-16 + art_sys_25: 1.82264323e-14 + art_sys_26: 3.08661691e-14 + art_sys_27: 4.73658521e-15 + art_sys_28: 1.30841204e-07 + art_sys_29: -2.03456234e-06 + art_sys_30: -2.43194292e-15 + art_sys_31: -1.35118599e-15 + art_sys_32: -8.84238720e-16 + art_sys_33: 1.08108196e-15 + art_sys_34: 8.80163975e-18 + art_sys_35: 1.92932288e-17 + art_sys_36: -7.02918611e-16 art_sys_37: 3.95714784e-06 - art_sys_38: 1.90985322e-16 - art_sys_39: -3.35164982e-16 - art_sys_40: -5.02479408e-15 - art_sys_41: 4.81681430e-06 - art_sys_42: 3.52910636e-05 - art_sys_43: 9.01426225e-17 - art_sys_44: 1.15147602e-16 - art_sys_45: -1.44311679e-16 - art_sys_46: 3.55196827e-15 - art_sys_47: 3.42585639e-14 + art_sys_38: -1.46196694e-16 + art_sys_39: 1.48079913e-16 + art_sys_40: -1.83094340e-14 + art_sys_41: -4.81681405e-06 + art_sys_42: -3.52910637e-05 + art_sys_43: -6.30147125e-17 + art_sys_44: 1.65994664e-17 + art_sys_45: -2.87571081e-17 + art_sys_46: -5.20141011e-14 + art_sys_47: 9.30403189e-14 art_sys_48: -6.38783747e-05 - art_sys_49: -3.97140320e-17 - art_sys_50: -1.27876564e-13 - art_sys_51: -3.14375978e-14 - art_sys_52: 1.42906667e-14 - art_sys_53: 1.45867528e-15 - art_sys_54: 4.23106306e-05 - art_sys_55: -5.72670502e-12 - art_sys_56: -1.18868167e-11 - art_sys_57: 4.02278051e-04 - art_sys_58: -3.02035679e-14 - art_sys_59: 1.65543164e-14 - art_sys_60: -2.34952622e-15 - art_sys_61: -3.00620090e-17 - art_sys_62: -5.25448607e-16 - art_sys_63: 5.64985610e-16 - art_sys_64: -4.19539030e-14 - art_sys_65: 4.42607324e-17 - art_sys_66: 2.47251112e-17 - art_sys_67: -1.48954702e-16 - art_sys_68: -1.76521635e-11 - art_sys_69: -3.06311614e-11 - art_sys_70: 1.93642810e-04 - art_sys_71: -8.71935368e-10 - art_sys_72: 1.53472224e-11 - art_sys_73: 5.62169247e-15 - art_sys_74: 9.90026512e-11 - art_sys_75: 1.13780020e-17 - art_sys_76: -7.44304184e-18 - art_sys_77: -2.01032536e-19 - art_sys_78: -7.59590109e-10 - art_sys_79: -4.67161162e-04 - art_sys_80: 6.97600401e-19 - art_sys_81: -1.36513037e-18 - art_sys_82: 3.08658048e-18 - art_sys_83: -1.20924170e-11 - art_sys_84: -3.32466978e-04 - art_sys_85: 9.40681314e-11 - art_sys_86: 5.02300871e-11 - art_sys_87: 1.30016148e-04 - art_sys_88: 1.42253572e-20 - art_sys_89: -2.42071825e-11 - art_sys_90: 1.45095071e-04 - art_sys_91: -1.06357120e-10 - art_sys_92: 9.14747206e-05 - art_sys_93: 2.89474823e-11 - art_sys_94: 4.04191272e-13 - art_sys_95: 4.79330998e-05 - art_sys_96: -7.05300339e-12 - art_sys_97: -2.20144570e-05 - art_sys_98: -2.71922258e-10 - art_sys_99: 1.00475529e-13 - art_sys_100: -5.40415050e-21 - art_sys_101: 2.22099768e-20 - art_sys_102: -9.04550798e-06 - art_sys_103: -1.79121096e-13 - art_sys_104: 3.41856851e-06 - art_sys_105: -2.41220065e-14 - art_sys_106: -8.57500555e-12 - art_sys_107: 1.50968856e-06 - art_sys_108: -2.31532418e-14 - art_sys_109: 5.69789353e-07 - art_sys_110: 2.89016784e-11 - art_sys_111: -4.89234617e-14 - art_sys_112: -1.97530468e-07 - art_sys_113: 6.72428179e-08 - art_sys_114: -2.22955898e-08 - art_sys_115: 4.70096629e-13 - art_sys_116: 5.88603116e-09 - art_sys_117: 7.36725139e-15 - art_sys_118: -1.98672930e-09 - art_sys_119: -1.55312419e-14 - art_sys_120: -4.51173923e-14 - art_sys_121: 7.82612412e-15 - art_sys_122: -5.64585598e-16 - art_sys_123: 2.70666228e-14 - art_sys_124: 1.55678807e-15 - art_sys_125: -3.34475849e-10 - art_sys_126: 5.14063356e-15 - art_sys_127: -3.25071581e-11 - art_sys_128: 1.91804999e-15 - art_sys_129: -6.82861978e-16 - art_sys_130: -4.18478191e-13 - art_sys_131: 1.30291762e-13 - art_sys_132: 1.27523231e-18 - art_sys_133: -3.48648836e-18 - art_sys_134: 1.24885203e-16 - art_sys_135: 2.00847583e-21 - art_sys_136: -8.00710315e-23 - art_sys_137: 1.39970255e-21 - art_sys_138: -1.70306326e-22 - art_sys_139: -6.40729586e-23 - art_sys_140: 1.14871421e-22 - art_sys_141: 6.52663015e-19 - art_sys_142: 4.63436926e-25 - art_sys_143: 6.29597925e-22 - art_sys_144: 1.45483768e-20 - art_sys_145: 3.38760274e-19 - art_sys_146: 1.92716460e-19 - art_sys_147: 4.17874624e-19 - art_sys_148: 1.04000381e-19 - art_sys_149: -2.09320987e-20 - art_sys_150: -2.73348890e-21 - art_sys_151: 3.76143302e-21 - art_sys_152: -1.18377235e-23 - art_sys_153: 2.77679632e-24 - art_sys_154: -1.41039873e-24 - art_sys_155: 7.27070313e-26 - art_sys_156: 5.85446118e-26 - art_sys_157: -1.36615185e-26 - art_sys_158: 2.40257697e-27 - art_sys_159: 8.34649316e-27 - art_sys_160: -2.34550965e-26 - art_sys_161: -3.43800914e-28 - art_sys_162: -1.26260538e-28 - art_sys_163: 1.37465344e-27 - art_sys_164: -1.11164223e-26 - art_sys_165: 1.02734646e-27 - art_sys_166: -1.27271678e-27 - art_sys_167: -1.08117954e-26 - art_sys_168: 6.65378410e-18 - art_sys_169: 1.01433822e-27 - art_sys_170: -3.04088214e-18 - art_sys_171: -2.52806504e-17 - art_sys_172: 1.28708470e-27 - art_sys_173: -1.92575961e-28 - art_sys_174: 1.92576562e-18 - art_sys_175: 0.0 - art_sys_176: 2.69691001e-20 - art_sys_177: 0.0 - art_sys_178: -3.26716926e-22 - art_sys_179: -9.52940094e-26 - art_sys_180: 8.34152822e-27 - art_sys_181: -4.74359454e-32 - art_sys_182: 0.0 - art_sys_183: -4.71369288e-32 - art_sys_184: 6.09322626e-30 - art_sys_185: -8.54867230e-34 + art_sys_49: -7.29742051e-15 + art_sys_50: -1.10384036e-14 + art_sys_51: 1.39867070e-14 + art_sys_52: 2.26078645e-16 + art_sys_53: 8.37540551e-17 + art_sys_54: 7.92391293e-17 + art_sys_55: -2.88194054e-17 + art_sys_56: -2.73824757e-15 + art_sys_57: -1.68674712e-13 + art_sys_58: -8.85053663e-16 + art_sys_59: -5.21993629e-17 + art_sys_60: 4.23106088e-05 + art_sys_61: 5.12546235e-13 + art_sys_62: 8.30378687e-11 + art_sys_63: 2.35053461e-12 + art_sys_64: -4.02278019e-04 + art_sys_65: -3.98717243e-18 + art_sys_66: -8.99482235e-17 + art_sys_67: 2.64106826e-13 + art_sys_68: -1.16628424e-13 + art_sys_69: -2.32384771e-12 + art_sys_70: 1.93642742e-04 + art_sys_71: 3.54735449e-10 + art_sys_72: 4.12463246e-13 + art_sys_73: 5.84226926e-14 + art_sys_74: -1.12739152e-14 + art_sys_75: 1.42195096e-14 + art_sys_76: -1.96786298e-17 + art_sys_77: -1.04342450e-10 + art_sys_78: -1.61036417e-11 + art_sys_79: -1.34038872e-15 + art_sys_80: 2.04039074e-11 + art_sys_81: 9.66378198e-16 + art_sys_82: -2.60399659e-17 + art_sys_83: -8.50429216e-14 + art_sys_84: 5.63355493e-17 + art_sys_85: 2.10416138e-16 + art_sys_86: -1.23220320e-13 + art_sys_87: 1.15709633e-09 + art_sys_88: -2.35876135e-14 + art_sys_89: -5.85955145e-16 + art_sys_90: -4.67160702e-04 + art_sys_91: 5.47742603e-10 + art_sys_92: -3.32465465e-04 + art_sys_93: 6.60399106e-11 + art_sys_94: 1.30018778e-04 + art_sys_95: -2.22381079e-11 + art_sys_96: -3.16303937e-15 + art_sys_97: 1.45922418e-10 + art_sys_98: -1.45096189e-04 + art_sys_99: 9.99247704e-11 + art_sys_100: 9.09416331e-11 + art_sys_101: -9.14734625e-05 + art_sys_102: 4.79330741e-05 + art_sys_103: -3.81129972e-12 + art_sys_104: 2.31256982e-10 + art_sys_105: 2.20102266e-05 + art_sys_106: -3.03640078e-10 + art_sys_107: -2.16763609e-15 + art_sys_108: 1.33308396e-16 + art_sys_109: 6.74933461e-16 + art_sys_110: -1.80055531e-11 + art_sys_111: -9.04515732e-06 + art_sys_112: -6.46936120e-13 + art_sys_113: -6.54070113e-18 + art_sys_114: 3.41857485e-06 + art_sys_115: 3.27505315e-13 + art_sys_116: -1.76409125e-11 + art_sys_117: -1.50984522e-06 + art_sys_118: -1.24286362e-12 + art_sys_119: 5.69294608e-07 + art_sys_120: 3.01306668e-11 + art_sys_121: -9.55466739e-14 + art_sys_122: 1.97623440e-07 + art_sys_123: 6.72478860e-08 + art_sys_124: 7.54868731e-14 + art_sys_125: 8.86484016e-12 + art_sys_126: -2.14303570e-13 + art_sys_127: -2.22861529e-08 + art_sys_128: -2.55821576e-13 + art_sys_129: 5.86497062e-09 + art_sys_130: -4.05132836e-13 + art_sys_131: 1.61991631e-12 + art_sys_132: -2.02043484e-09 + art_sys_133: -4.73235126e-12 + art_sys_134: -9.65769120e-15 + art_sys_135: 3.46621660e-10 + art_sys_136: -9.50280267e-13 + art_sys_137: 1.05049525e-16 + art_sys_138: 2.05178020e-11 + art_sys_139: -3.38015371e-11 + art_sys_140: -4.98548251e-12 + art_sys_141: 7.63818294e-13 + art_sys_142: 6.38698721e-14 + art_sys_143: 3.53867602e-17 + art_sys_144: 6.30410902e-17 + art_sys_145: 2.70666291e-18 + art_sys_146: 0.0 + art_sys_147: 2.57380402e-15 + art_sys_148: 9.26632688e-15 + art_sys_149: 9.26632688e-15 + art_sys_150: -2.00569223e-14 + art_sys_151: -2.00569223e-14 + art_sys_152: 3.41119682e-13 + art_sys_153: -1.81096368e-14 + art_sys_154: 2.68316507e-18 + art_sys_155: -9.58771152e-26 + art_sys_156: 3.93520139e-30 + art_sys_157: 1.54134679e-28 + art_sys_158: -0.0 + art_sys_159: -1.22341940e-16 + art_sys_160: -7.23318788e-18 + art_sys_161: 5.95899692e-18 + art_sys_162: -7.15852971e-19 + art_sys_163: 4.63535227e-16 + art_sys_164: 2.66811006e-16 + art_sys_165: -3.98356796e-17 + art_sys_166: 1.41110227e-25 + art_sys_167: 2.23338730e-25 + art_sys_168: -5.53929753e-27 + art_sys_169: 1.04252063e-26 + art_sys_170: 1.58455876e-26 + art_sys_171: -1.07980454e-26 + art_sys_172: -4.79286314e-27 + art_sys_173: 1.46897364e-27 + art_sys_174: 3.78932509e-28 + art_sys_175: 1.37228667e-29 + art_sys_176: 3.79687520e-29 + art_sys_177: -1.60923889e-28 + art_sys_178: 6.97702579e-29 + art_sys_179: -3.68414693e-28 + art_sys_180: 4.80473838e-30 + art_sys_181: 1.16987000e-30 + art_sys_182: 3.88737515e-30 + art_sys_183: -3.38611319e-32 + art_sys_184: 4.05537120e-32 + art_sys_185: 1.90368553e-32 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -9551,191 +9551,191 @@ bins: RelativeStatFSR-: -3.66056269e-04 luminosity_uncertainty: 1.26978540e-02 uncorrelated_uncertainty: 4.88379000e-03 -- art_sys_1: 7.15867172e-44 - art_sys_2: -5.03237243e-34 - art_sys_3: 2.70746649e-30 +- art_sys_1: 1.23612280e-45 + art_sys_2: 1.89001109e-33 + art_sys_3: -7.16156509e-34 art_sys_4: 1.38688319e-13 - art_sys_5: -4.03267810e-30 - art_sys_6: 2.81178917e-31 - art_sys_7: 7.30758562e-13 - art_sys_8: 6.94878861e-28 - art_sys_9: 6.68587790e-15 - art_sys_10: 6.88513038e-30 - art_sys_11: 1.21553953e-24 + art_sys_5: -1.47718542e-28 + art_sys_6: -1.34086291e-30 + art_sys_7: -7.30758562e-13 + art_sys_8: -7.82595367e-29 + art_sys_9: -6.68587790e-15 + art_sys_10: -2.94843334e-30 + art_sys_11: 1.92176237e-25 art_sys_12: -1.07733305e-11 - art_sys_13: 2.49942415e-28 - art_sys_14: 1.54279124e-10 - art_sys_15: -2.49394151e-24 - art_sys_16: -1.18062496e-09 - art_sys_17: 1.85621343e-25 - art_sys_18: 3.97508236e-23 - art_sys_19: -7.61106748e-10 - art_sys_20: -1.25893475e-25 - art_sys_21: 1.94311406e-21 - art_sys_22: 2.31910298e-09 - art_sys_23: 8.50874685e-25 - art_sys_24: -6.87534573e-19 - art_sys_25: 8.20690676e-14 - art_sys_26: -3.01562919e-14 - art_sys_27: -1.23456316e-16 - art_sys_28: -6.97513429e-17 - art_sys_29: 3.97294653e-15 - art_sys_30: 2.08411151e-08 - art_sys_31: 9.34220179e-08 - art_sys_32: -9.60797948e-16 - art_sys_33: 2.22781258e-16 - art_sys_34: -7.15390020e-18 - art_sys_35: -2.77491738e-18 - art_sys_36: -5.81835238e-18 + art_sys_13: -3.53765852e-27 + art_sys_14: -1.54279124e-10 + art_sys_15: 2.64065943e-24 + art_sys_16: 1.18062496e-09 + art_sys_17: 5.31769109e-26 + art_sys_18: 1.85675598e-22 + art_sys_19: 7.61106745e-10 + art_sys_20: 1.08245873e-24 + art_sys_21: 3.08304229e-21 + art_sys_22: 2.31910336e-09 + art_sys_23: 1.65491927e-24 + art_sys_24: 1.08781424e-18 + art_sys_25: -7.95854681e-15 + art_sys_26: 1.38024571e-14 + art_sys_27: 5.88211286e-15 + art_sys_28: 2.08411151e-08 + art_sys_29: -9.34220179e-08 + art_sys_30: -6.22868070e-15 + art_sys_31: -1.12418914e-15 + art_sys_32: 1.15142177e-15 + art_sys_33: 1.17182734e-15 + art_sys_34: 5.58421457e-18 + art_sys_35: 1.06145423e-18 + art_sys_36: -4.30734122e-17 art_sys_37: 2.42096798e-07 - art_sys_38: -7.66048830e-17 - art_sys_39: -8.78240730e-17 - art_sys_40: -3.41938584e-15 - art_sys_41: 3.27591653e-06 - art_sys_42: -2.24332607e-06 - art_sys_43: 2.03405188e-16 - art_sys_44: -4.09423613e-17 - art_sys_45: 2.30513045e-16 - art_sys_46: 4.49953219e-16 - art_sys_47: 4.32425573e-15 - art_sys_48: -8.06152090e-06 - art_sys_49: 3.99014889e-17 - art_sys_50: -1.75906087e-14 - art_sys_51: -3.48653186e-14 - art_sys_52: 5.10287372e-14 - art_sys_53: -1.26943323e-15 - art_sys_54: -3.41898048e-05 - art_sys_55: 4.62090985e-12 - art_sys_56: -8.78811519e-13 - art_sys_57: 2.95507092e-05 - art_sys_58: 2.12916549e-15 - art_sys_59: -2.12706828e-14 - art_sys_60: 3.03667496e-15 - art_sys_61: -1.05158944e-16 - art_sys_62: -1.69357614e-16 - art_sys_63: 3.06616315e-16 - art_sys_64: -1.33726329e-14 - art_sys_65: -1.91808854e-17 - art_sys_66: -2.21913921e-17 - art_sys_67: 1.10751451e-16 - art_sys_68: 3.37850586e-12 - art_sys_69: 6.09118710e-12 - art_sys_70: 6.10463049e-05 - art_sys_71: 1.78822466e-10 - art_sys_72: -1.19406266e-11 - art_sys_73: 8.22473640e-15 - art_sys_74: -1.83739080e-11 - art_sys_75: -1.29770645e-17 - art_sys_76: 5.23756060e-18 - art_sys_77: -4.33302865e-18 - art_sys_78: 8.22058687e-11 - art_sys_79: 8.52204881e-05 - art_sys_80: 1.80187555e-18 - art_sys_81: -4.49577062e-18 - art_sys_82: -1.29770934e-18 - art_sys_83: 1.83057580e-11 - art_sys_84: -5.44951396e-04 - art_sys_85: -1.78103649e-11 - art_sys_86: -7.14410328e-11 - art_sys_87: -9.58627852e-05 - art_sys_88: 2.84289741e-20 - art_sys_89: 3.49272370e-11 - art_sys_90: -6.70697549e-05 - art_sys_91: 1.76241405e-11 - art_sys_92: -9.64586270e-05 - art_sys_93: -5.59375198e-11 - art_sys_94: -9.84983072e-13 - art_sys_95: -5.89941955e-05 - art_sys_96: -1.36593153e-11 - art_sys_97: 3.15477896e-05 - art_sys_98: 3.59308830e-10 - art_sys_99: -2.32093108e-13 - art_sys_100: 1.02961697e-20 - art_sys_101: -3.11694684e-20 - art_sys_102: 1.41853059e-05 - art_sys_103: 3.45328278e-13 - art_sys_104: -5.68257561e-06 - art_sys_105: 4.12975929e-14 - art_sys_106: 1.37945007e-11 - art_sys_107: -2.61108095e-06 - art_sys_108: 3.45814208e-14 - art_sys_109: -1.01789007e-06 - art_sys_110: -5.41985887e-11 - art_sys_111: 9.97470044e-14 - art_sys_112: 3.61487700e-07 - art_sys_113: -1.25159885e-07 - art_sys_114: 4.19562488e-08 - art_sys_115: -8.89949721e-13 - art_sys_116: -1.11876607e-08 - art_sys_117: -2.94577518e-14 - art_sys_118: 3.79471932e-09 - art_sys_119: 3.04208735e-14 - art_sys_120: 8.04372868e-14 - art_sys_121: -1.64149554e-14 - art_sys_122: 3.77454030e-15 - art_sys_123: -5.22251356e-14 - art_sys_124: -4.65600857e-15 - art_sys_125: 6.43017963e-10 - art_sys_126: -7.68793097e-15 - art_sys_127: 6.27488679e-11 - art_sys_128: -3.32606348e-15 - art_sys_129: 1.29915410e-15 - art_sys_130: 7.90285626e-13 - art_sys_131: -2.44943039e-13 - art_sys_132: -2.12181164e-18 - art_sys_133: 5.81626934e-18 - art_sys_134: 2.32151753e-17 - art_sys_135: -2.01409121e-21 - art_sys_136: 1.20837936e-21 - art_sys_137: -1.35671752e-21 - art_sys_138: 1.72096412e-22 - art_sys_139: 1.39551732e-22 - art_sys_140: -1.27081518e-22 - art_sys_141: -1.10199438e-18 - art_sys_142: -2.85279352e-25 - art_sys_143: -9.30623885e-22 - art_sys_144: -1.55798173e-20 - art_sys_145: -3.64224831e-19 - art_sys_146: -1.73444500e-19 - art_sys_147: -4.29697916e-19 - art_sys_148: -1.12530429e-19 - art_sys_149: 1.84569588e-20 - art_sys_150: 5.96776744e-21 - art_sys_151: -3.44283620e-21 - art_sys_152: 1.06782167e-23 - art_sys_153: -5.01687777e-24 - art_sys_154: 9.38954809e-25 - art_sys_155: -1.08829057e-25 - art_sys_156: -7.64726122e-26 - art_sys_157: 1.38893191e-26 - art_sys_158: -4.21172046e-27 - art_sys_159: -1.61315621e-26 - art_sys_160: 4.48947400e-26 - art_sys_161: 6.52908144e-28 - art_sys_162: 1.09929215e-28 - art_sys_163: -1.19492233e-27 - art_sys_164: 1.21574172e-26 - art_sys_165: -1.65455521e-27 - art_sys_166: 1.06106197e-27 - art_sys_167: 1.35022023e-26 - art_sys_168: -1.98496049e-17 - art_sys_169: -7.73801519e-28 - art_sys_170: 5.12490839e-18 - art_sys_171: 4.31820704e-17 - art_sys_172: -1.74828768e-27 - art_sys_173: 3.61376594e-28 - art_sys_174: -3.26571312e-18 - art_sys_175: 0.0 - art_sys_176: -4.59605276e-20 - art_sys_177: 0.0 - art_sys_178: 5.63547677e-22 - art_sys_179: 1.57842313e-25 - art_sys_180: -1.38788730e-26 - art_sys_181: 7.81339558e-32 - art_sys_182: 0.0 - art_sys_183: 7.31337554e-32 - art_sys_184: -1.14941139e-29 - art_sys_185: 1.58896009e-33 + art_sys_38: 2.19577674e-16 + art_sys_39: 3.40400343e-17 + art_sys_40: -1.24520127e-14 + art_sys_41: -3.27591654e-06 + art_sys_42: 2.24332608e-06 + art_sys_43: -7.95596141e-17 + art_sys_44: -1.34971148e-17 + art_sys_45: 1.83237240e-17 + art_sys_46: 3.04420219e-15 + art_sys_47: 1.17535461e-14 + art_sys_48: -8.06152091e-06 + art_sys_49: -9.61474299e-14 + art_sys_50: 5.12281388e-15 + art_sys_51: 2.45632611e-14 + art_sys_52: 1.15994768e-15 + art_sys_53: 4.00800959e-16 + art_sys_54: -1.32432144e-15 + art_sys_55: -5.71220874e-18 + art_sys_56: 2.19984094e-15 + art_sys_57: -2.11826878e-14 + art_sys_58: 2.79832681e-17 + art_sys_59: -8.20660643e-17 + art_sys_60: -3.41898065e-05 + art_sys_61: -5.38792228e-13 + art_sys_62: 5.90462986e-12 + art_sys_63: 7.40976544e-13 + art_sys_64: -2.95507068e-05 + art_sys_65: 7.18359824e-18 + art_sys_66: -3.89469491e-17 + art_sys_67: 1.57256434e-14 + art_sys_68: 2.13532210e-14 + art_sys_69: -4.22339373e-12 + art_sys_70: 6.10463132e-05 + art_sys_71: -2.59735948e-11 + art_sys_72: 1.02795696e-14 + art_sys_73: 6.99079908e-14 + art_sys_74: 3.73333217e-14 + art_sys_75: -8.98625297e-15 + art_sys_76: 2.49637358e-17 + art_sys_77: -6.11799146e-11 + art_sys_78: 9.37596606e-12 + art_sys_79: 5.22867771e-15 + art_sys_80: -1.81581579e-11 + art_sys_81: -1.02880646e-15 + art_sys_82: -2.76029492e-16 + art_sys_83: 1.50324758e-13 + art_sys_84: -5.89377608e-16 + art_sys_85: -2.88218691e-17 + art_sys_86: 2.27791141e-13 + art_sys_87: 2.28648928e-09 + art_sys_88: 4.37563787e-14 + art_sys_89: 1.10744242e-15 + art_sys_90: 8.52202650e-05 + art_sys_91: -6.70030785e-10 + art_sys_92: -5.44951525e-04 + art_sys_93: 9.30583905e-11 + art_sys_94: -9.58607275e-05 + art_sys_95: 3.60260875e-11 + art_sys_96: 5.93932348e-15 + art_sys_97: -2.14314190e-10 + art_sys_98: 6.70709420e-05 + art_sys_99: -2.20143766e-11 + art_sys_100: -1.55937283e-10 + art_sys_101: 9.64583401e-05 + art_sys_102: -5.89930104e-05 + art_sys_103: 6.31736948e-12 + art_sys_104: -1.95397553e-10 + art_sys_105: -3.15435876e-05 + art_sys_106: 4.79457531e-10 + art_sys_107: 4.13783240e-15 + art_sys_108: -2.55035262e-16 + art_sys_109: -1.40020786e-15 + art_sys_110: 3.32670639e-11 + art_sys_111: 1.41848638e-05 + art_sys_112: 1.30121199e-12 + art_sys_113: 1.16632339e-17 + art_sys_114: -5.68275795e-06 + art_sys_115: -6.13926685e-13 + art_sys_116: 3.25462324e-11 + art_sys_117: 2.61130348e-06 + art_sys_118: 2.33372231e-12 + art_sys_119: -1.01700788e-06 + art_sys_120: -5.58011350e-11 + art_sys_121: 1.82221095e-13 + art_sys_122: -3.61630181e-07 + art_sys_123: -1.25155595e-07 + art_sys_124: -1.44112200e-13 + art_sys_125: -1.67446735e-11 + art_sys_126: 4.08995959e-13 + art_sys_127: 4.19353141e-08 + art_sys_128: 4.91950383e-13 + art_sys_129: -1.11460074e-08 + art_sys_130: 7.77036938e-13 + art_sys_131: -3.09962109e-12 + art_sys_132: 3.85946598e-09 + art_sys_133: 9.04048573e-12 + art_sys_134: 1.84482859e-14 + art_sys_135: -6.65976471e-10 + art_sys_136: 1.82247028e-12 + art_sys_137: -2.01256353e-16 + art_sys_138: -3.09551071e-12 + art_sys_139: 6.51246549e-11 + art_sys_140: 9.60329096e-12 + art_sys_141: -1.46950346e-12 + art_sys_142: -1.22343400e-13 + art_sys_143: -6.82363467e-17 + art_sys_144: -1.21368897e-16 + art_sys_145: -5.48335159e-18 + art_sys_146: -0.0 + art_sys_147: -4.89988596e-15 + art_sys_148: -1.80699246e-14 + art_sys_149: -1.80699246e-14 + art_sys_150: 3.94274984e-14 + art_sys_151: 3.94274984e-14 + art_sys_152: -6.44159308e-13 + art_sys_153: 3.39778590e-14 + art_sys_154: -4.87300788e-18 + art_sys_155: 1.80504633e-25 + art_sys_156: -7.56349959e-30 + art_sys_157: -2.84831826e-28 + art_sys_158: 0.0 + art_sys_159: 1.45972137e-16 + art_sys_160: 1.23302826e-17 + art_sys_161: -1.16955693e-17 + art_sys_162: 1.35347819e-18 + art_sys_163: -8.87190747e-16 + art_sys_164: -5.09653963e-16 + art_sys_165: 7.60335573e-17 + art_sys_166: -2.87358181e-25 + art_sys_167: -4.49311083e-25 + art_sys_168: 1.39148665e-26 + art_sys_169: -2.00889874e-26 + art_sys_170: -3.29799998e-26 + art_sys_171: 2.11209712e-26 + art_sys_172: 6.73626270e-27 + art_sys_173: -3.62380460e-27 + art_sys_174: -8.79940060e-28 + art_sys_175: -2.61648453e-29 + art_sys_176: -5.54144492e-29 + art_sys_177: 3.08839304e-28 + art_sys_178: -1.23908980e-28 + art_sys_179: 5.45969368e-28 + art_sys_180: -2.03875338e-30 + art_sys_181: -2.30523684e-30 + art_sys_182: -8.09277911e-30 + art_sys_183: 6.53895799e-32 + art_sys_184: -7.69336062e-32 + art_sys_185: -3.63689694e-32 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -9842,191 +9842,191 @@ bins: RelativeStatFSR-: -2.35768380e-04 luminosity_uncertainty: 7.67176800e-03 uncorrelated_uncertainty: 2.95068000e-03 -- art_sys_1: 9.09812810e-45 - art_sys_2: 1.40459367e-35 - art_sys_3: 3.44058815e-31 +- art_sys_1: 1.55375464e-46 + art_sys_2: 2.40178426e-34 + art_sys_3: 6.30335071e-35 art_sys_4: 1.76242029e-14 - art_sys_5: 3.07028158e-31 - art_sys_6: 1.31937616e-31 - art_sys_7: -4.47899417e-14 - art_sys_8: 1.79639335e-28 - art_sys_9: 3.03444680e-13 - art_sys_10: 4.07087375e-30 - art_sys_11: 9.07313554e-26 + art_sys_5: 1.92313963e-29 + art_sys_6: -1.69498755e-31 + art_sys_7: 4.47899417e-14 + art_sys_8: 5.85733832e-29 + art_sys_9: -3.03444680e-13 + art_sys_10: 3.08815718e-30 + art_sys_11: 1.37286643e-26 art_sys_12: -1.27367644e-12 - art_sys_13: 2.83528771e-29 - art_sys_14: 2.05283480e-11 - art_sys_15: 8.76666826e-25 - art_sys_16: -8.42897222e-11 - art_sys_17: 1.35528000e-26 - art_sys_18: -6.30172171e-24 - art_sys_19: -1.42907549e-10 - art_sys_20: 5.75235861e-27 - art_sys_21: -2.12548034e-23 - art_sys_22: -1.35032401e-10 - art_sys_23: -1.37106787e-25 - art_sys_24: -2.84340559e-22 - art_sys_25: -3.08074190e-14 - art_sys_26: -5.39042690e-15 - art_sys_27: 1.95447969e-14 - art_sys_28: 3.72150915e-15 - art_sys_29: -1.00955136e-15 - art_sys_30: -8.99308637e-09 - art_sys_31: -3.20141638e-08 - art_sys_32: 1.47337323e-15 - art_sys_33: 2.13406276e-15 - art_sys_34: -5.81704916e-19 - art_sys_35: 1.56151901e-18 - art_sys_36: 3.86698304e-18 + art_sys_13: -4.43993694e-28 + art_sys_14: -2.05283480e-11 + art_sys_15: -1.16129656e-24 + art_sys_16: 8.42897222e-11 + art_sys_17: -1.19172163e-27 + art_sys_18: 5.68905826e-24 + art_sys_19: 1.42907549e-10 + art_sys_20: -5.81595718e-26 + art_sys_21: 6.92918550e-24 + art_sys_22: -1.35032400e-10 + art_sys_23: -1.89471431e-25 + art_sys_24: -2.91542749e-22 + art_sys_25: 1.81440800e-14 + art_sys_26: -5.10618209e-15 + art_sys_27: 8.38674526e-15 + art_sys_28: -8.99308637e-09 + art_sys_29: 3.20141638e-08 + art_sys_30: 4.57291711e-15 + art_sys_31: 5.47348256e-16 + art_sys_32: 1.08521841e-15 + art_sys_33: -4.91597454e-16 + art_sys_34: 4.23646563e-19 + art_sys_35: -5.96908015e-19 + art_sys_36: 2.24234366e-17 art_sys_37: -1.23104123e-07 - art_sys_38: 2.57462177e-16 - art_sys_39: -5.53936097e-19 - art_sys_40: -4.31809558e-16 - art_sys_41: 4.13883339e-07 - art_sys_42: -2.54782798e-06 - art_sys_43: 3.27699641e-17 - art_sys_44: 9.10053885e-17 - art_sys_45: -9.35527232e-17 - art_sys_46: -1.64840177e-16 - art_sys_47: -1.65538131e-15 + art_sys_38: -1.15194895e-16 + art_sys_39: -5.46888779e-19 + art_sys_40: -1.57332716e-15 + art_sys_41: -4.13883356e-07 + art_sys_42: 2.54782799e-06 + art_sys_43: 1.10700260e-16 + art_sys_44: 6.37541770e-18 + art_sys_45: 7.04601722e-17 + art_sys_46: 3.71497757e-15 + art_sys_47: -4.49334447e-15 art_sys_48: 3.08644440e-06 - art_sys_49: -1.43794437e-16 - art_sys_50: 7.95060309e-15 - art_sys_51: 4.82468448e-14 - art_sys_52: -1.33157129e-14 - art_sys_53: 2.06085100e-19 - art_sys_54: -8.70142460e-06 - art_sys_55: 1.17629211e-12 - art_sys_56: 8.14080336e-13 - art_sys_57: -2.92482361e-05 - art_sys_58: 1.29587147e-15 - art_sys_59: 2.96713528e-14 - art_sys_60: 3.77288947e-16 - art_sys_61: 1.14415457e-15 - art_sys_62: -2.09919860e-16 - art_sys_63: 5.71791656e-16 - art_sys_64: 2.37807456e-15 - art_sys_65: 1.34679000e-16 - art_sys_66: -4.48271392e-17 - art_sys_67: 1.20889386e-16 - art_sys_68: 5.43558304e-12 - art_sys_69: 9.50516931e-12 - art_sys_70: -1.12793147e-05 - art_sys_71: 2.77482158e-10 - art_sys_72: -5.04412884e-11 - art_sys_73: -6.43784968e-16 - art_sys_74: -2.81450475e-11 - art_sys_75: 2.18624353e-17 - art_sys_76: -6.85857751e-18 - art_sys_77: -6.76779845e-18 - art_sys_78: 1.51560787e-09 - art_sys_79: 1.42663934e-04 - art_sys_80: -4.27537555e-18 - art_sys_81: 1.88153998e-18 - art_sys_82: -1.31852186e-18 - art_sys_83: -2.95358019e-11 - art_sys_84: -8.52762603e-05 - art_sys_85: -2.92573791e-11 - art_sys_86: 1.02000034e-10 - art_sys_87: -3.92484055e-04 - art_sys_88: -9.50625672e-20 - art_sys_89: -5.09445592e-11 - art_sys_90: 4.08728516e-05 - art_sys_91: 3.18902303e-11 - art_sys_92: 5.40746946e-05 - art_sys_93: 1.24700749e-10 - art_sys_94: 2.70089423e-12 - art_sys_95: 7.45081078e-05 - art_sys_96: -4.53202522e-12 - art_sys_97: -4.60167627e-05 - art_sys_98: -4.65628316e-10 - art_sys_99: 5.75706270e-13 - art_sys_100: -2.12026142e-20 - art_sys_101: 4.39103852e-20 - art_sys_102: -2.39317997e-05 - art_sys_103: -7.72739060e-13 - art_sys_104: 1.04285741e-05 - art_sys_105: -8.05460926e-14 - art_sys_106: -2.87809166e-11 - art_sys_107: 5.02888597e-06 - art_sys_108: -5.41176083e-14 - art_sys_109: 2.05479288e-06 - art_sys_110: 1.15684354e-10 - art_sys_111: -2.29235551e-13 - art_sys_112: -7.53614930e-07 - art_sys_113: 2.66834473e-07 - art_sys_114: -9.09539318e-08 - art_sys_115: 1.88896427e-12 - art_sys_116: 2.45612976e-08 - art_sys_117: -5.68361464e-14 - art_sys_118: -8.39767187e-09 - art_sys_119: -6.75671188e-14 - art_sys_120: -1.64847250e-13 - art_sys_121: 3.82317388e-14 - art_sys_122: -1.44514211e-14 - art_sys_123: 1.18874157e-13 - art_sys_124: 1.31346230e-14 - art_sys_125: -1.43589182e-09 - art_sys_126: 1.23618357e-14 - art_sys_127: -1.40865242e-10 - art_sys_128: 6.43832210e-15 - art_sys_129: -2.86299267e-15 - art_sys_130: -1.72133522e-12 - art_sys_131: 5.30008905e-13 - art_sys_132: 3.92285840e-18 - art_sys_133: -1.08604902e-17 - art_sys_134: -5.24196621e-16 - art_sys_135: 8.21860267e-22 - art_sys_136: -4.60694720e-21 - art_sys_137: 4.17324372e-22 - art_sys_138: -8.71518862e-23 - art_sys_139: -3.02532289e-22 - art_sys_140: 8.67937888e-23 - art_sys_141: 2.08972942e-18 - art_sys_142: -5.96140007e-24 - art_sys_143: 1.47507061e-21 - art_sys_144: 1.03243439e-20 - art_sys_145: 2.44839590e-19 - art_sys_146: -1.40620239e-21 - art_sys_147: 2.22191091e-19 - art_sys_148: 7.66328558e-20 - art_sys_149: 1.15272613e-21 - art_sys_150: -1.37317699e-20 - art_sys_151: 2.47574235e-22 - art_sys_152: -4.45167696e-25 - art_sys_153: 9.97001612e-24 - art_sys_154: 1.28618888e-24 - art_sys_155: 1.74650429e-25 - art_sys_156: 9.29540088e-26 - art_sys_157: -7.10202832e-27 - art_sys_158: 8.24144632e-27 - art_sys_159: 3.62908449e-26 - art_sys_160: -9.98693536e-26 - art_sys_161: -1.44044827e-27 - art_sys_162: 2.39706418e-29 - art_sys_163: -3.36303621e-28 - art_sys_164: -7.91123174e-27 - art_sys_165: 3.19385608e-27 - art_sys_166: 3.98229104e-28 - art_sys_167: -1.44209328e-26 - art_sys_168: 6.09567916e-17 - art_sys_169: -5.40388896e-28 - art_sys_170: -9.69363225e-18 - art_sys_171: -8.28395637e-17 - art_sys_172: 2.46027756e-27 - art_sys_173: -7.83311355e-28 - art_sys_174: 6.19590216e-18 - art_sys_175: 0.0 - art_sys_176: 8.78379431e-20 - art_sys_177: 0.0 - art_sys_178: -1.09523678e-21 - art_sys_179: -2.90583868e-25 - art_sys_180: 2.56588672e-26 - art_sys_181: -1.42372652e-31 - art_sys_182: 0.0 - art_sys_183: -1.19347530e-31 - art_sys_184: 2.49953614e-29 - art_sys_185: -3.37780738e-33 + art_sys_49: 6.85784447e-14 + art_sys_50: -4.81585959e-14 + art_sys_51: 1.71269093e-15 + art_sys_52: -7.82483327e-15 + art_sys_53: 1.02843097e-15 + art_sys_54: 2.51998366e-17 + art_sys_55: 3.81773404e-17 + art_sys_56: 6.33239810e-16 + art_sys_57: 8.15765622e-15 + art_sys_58: 1.16858916e-15 + art_sys_59: -1.42507461e-17 + art_sys_60: -8.70142303e-06 + art_sys_61: -1.27064518e-13 + art_sys_62: -6.06165338e-12 + art_sys_63: -1.37009737e-13 + art_sys_64: 2.92482337e-05 + art_sys_65: -4.81854276e-17 + art_sys_66: 2.31083022e-17 + art_sys_67: -1.67230753e-14 + art_sys_68: 3.56132257e-14 + art_sys_69: -7.18453504e-13 + art_sys_70: -1.12792957e-05 + art_sys_71: -9.17786816e-11 + art_sys_72: -2.99605854e-14 + art_sys_73: 5.45076466e-14 + art_sys_74: -1.34468003e-14 + art_sys_75: -9.93207643e-15 + art_sys_76: -7.91815744e-18 + art_sys_77: 9.65037555e-12 + art_sys_78: 1.80770627e-11 + art_sys_79: 4.61519161e-16 + art_sys_80: 3.35943059e-11 + art_sys_81: 2.38645918e-17 + art_sys_82: -4.89603775e-17 + art_sys_83: -2.87498129e-13 + art_sys_84: -2.69571636e-16 + art_sys_85: -2.35242786e-16 + art_sys_86: -4.81355886e-13 + art_sys_87: 4.12265381e-10 + art_sys_88: -9.29325888e-14 + art_sys_89: -2.40895760e-15 + art_sys_90: 1.42663577e-04 + art_sys_91: 8.23590775e-10 + art_sys_92: -8.52794452e-05 + art_sys_93: 1.22356907e-11 + art_sys_94: -3.92482618e-04 + art_sys_95: -6.35226781e-11 + art_sys_96: -1.28312469e-14 + art_sys_97: 3.23928094e-10 + art_sys_98: -4.08739709e-05 + art_sys_99: -2.30906078e-10 + art_sys_100: 2.97502106e-10 + art_sys_101: -5.40739336e-05 + art_sys_102: 7.45045175e-05 + art_sys_103: -1.14505248e-11 + art_sys_104: -9.81272903e-10 + art_sys_105: 4.60110140e-05 + art_sys_106: -8.17930575e-10 + art_sys_107: -9.14872967e-15 + art_sys_108: 5.65325603e-16 + art_sys_109: 3.33901286e-15 + art_sys_110: -7.02725280e-11 + art_sys_111: -2.39311673e-05 + art_sys_112: -3.08971830e-12 + art_sys_113: -2.47203184e-17 + art_sys_114: 1.04289513e-05 + art_sys_115: 1.32320071e-12 + art_sys_116: -6.84581928e-11 + art_sys_117: -5.02934000e-06 + art_sys_118: -5.04171502e-12 + art_sys_119: 2.05311301e-06 + art_sys_120: 1.18234347e-10 + art_sys_121: -4.02357497e-13 + art_sys_122: 7.53927861e-07 + art_sys_123: 2.66821213e-07 + art_sys_124: 3.18671031e-13 + art_sys_125: 3.64924614e-11 + art_sys_126: -9.04002607e-13 + art_sys_127: -9.09100227e-08 + art_sys_128: -1.09839116e-12 + art_sys_129: 2.44668213e-08 + art_sys_130: -1.73084076e-12 + art_sys_131: 6.87960472e-12 + art_sys_132: -8.54244350e-09 + art_sys_133: -2.00121550e-11 + art_sys_134: -4.08329948e-14 + art_sys_135: 1.48593558e-09 + art_sys_136: -4.05621175e-12 + art_sys_137: 4.47284226e-16 + art_sys_138: -5.90602245e-11 + art_sys_139: -1.45823661e-10 + art_sys_140: -2.14965657e-11 + art_sys_141: 3.28385913e-12 + art_sys_142: 2.71724289e-13 + art_sys_143: 1.52976539e-16 + art_sys_144: 2.71481470e-16 + art_sys_145: 1.31204447e-17 + art_sys_146: 0.0 + art_sys_147: 1.07900193e-14 + art_sys_148: 4.11178182e-14 + art_sys_149: 4.11178182e-14 + art_sys_150: -9.07202203e-14 + art_sys_151: -9.07202203e-14 + art_sys_152: 1.40186744e-12 + art_sys_153: -7.32500126e-14 + art_sys_154: 9.99083715e-18 + art_sys_155: -3.91171304e-25 + art_sys_156: 1.68671240e-29 + art_sys_157: 6.00939824e-28 + art_sys_158: -0.0 + art_sys_159: -1.27315332e-16 + art_sys_160: -2.36357462e-17 + art_sys_161: 2.68205575e-17 + art_sys_162: -2.95565602e-18 + art_sys_163: 1.96866450e-15 + art_sys_164: 1.12783542e-15 + art_sys_165: -1.68055786e-16 + art_sys_166: 6.85845159e-25 + art_sys_167: 1.07344826e-24 + art_sys_168: -3.95304478e-26 + art_sys_169: 4.74843796e-26 + art_sys_170: 7.42485881e-26 + art_sys_171: -4.86389044e-26 + art_sys_172: -1.65236465e-26 + art_sys_173: 7.48085711e-27 + art_sys_174: 1.87670692e-27 + art_sys_175: 5.77288616e-29 + art_sys_176: 1.28074343e-28 + art_sys_177: -7.33943945e-28 + art_sys_178: 2.64573260e-28 + art_sys_179: -8.49959914e-28 + art_sys_180: -1.42168964e-29 + art_sys_181: 5.31871107e-30 + art_sys_182: 1.95599126e-29 + art_sys_183: -1.46755758e-31 + art_sys_184: 1.68377011e-31 + art_sys_185: 8.05107922e-32 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -10133,191 +10133,191 @@ bins: RelativeStatFSR-: -1.51798396e-04 luminosity_uncertainty: 4.63970000e-03 uncorrelated_uncertainty: 1.78450000e-03 -- art_sys_1: 7.45948918e-46 - art_sys_2: 1.29432453e-36 - art_sys_3: 2.82089575e-32 +- art_sys_1: 1.26367400e-47 + art_sys_2: 1.96919336e-35 + art_sys_3: 1.90048170e-35 art_sys_4: 1.44498664e-15 - art_sys_5: 1.71179928e-31 - art_sys_6: 5.05459441e-33 - art_sys_7: -9.84542604e-15 - art_sys_8: 2.00347452e-29 - art_sys_9: 4.62614807e-14 - art_sys_10: 5.92846103e-31 - art_sys_11: 2.33576553e-27 + art_sys_5: 3.48644510e-30 + art_sys_6: -1.38552415e-32 + art_sys_7: 9.84542604e-15 + art_sys_8: 7.63921580e-30 + art_sys_9: -4.62614807e-14 + art_sys_10: 4.89920697e-31 + art_sys_11: 4.07351443e-28 art_sys_12: -1.29320945e-13 - art_sys_13: 2.70591377e-30 - art_sys_14: 3.26708601e-12 - art_sys_15: 1.02188966e-25 - art_sys_16: 6.06558782e-13 - art_sys_17: -1.33217290e-29 - art_sys_18: 8.29471649e-25 - art_sys_19: -1.66561900e-11 - art_sys_20: 2.38221248e-27 - art_sys_21: -7.85346661e-24 + art_sys_13: -6.63163939e-29 + art_sys_14: -3.26708601e-12 + art_sys_15: -2.26235622e-25 + art_sys_16: -6.06558782e-13 + art_sys_17: -1.22671114e-27 + art_sys_18: 1.80070941e-24 + art_sys_19: 1.66561900e-11 + art_sys_20: -2.23791963e-26 + art_sys_21: 9.38884491e-24 art_sys_22: -4.95638193e-11 - art_sys_23: -4.17944269e-26 - art_sys_24: -1.25167454e-23 - art_sys_25: 1.80537333e-13 - art_sys_26: -4.99444312e-14 - art_sys_27: -1.88730355e-14 - art_sys_28: 2.51080398e-15 - art_sys_29: -4.60998429e-16 - art_sys_30: -2.87426905e-09 - art_sys_31: -5.91681549e-09 - art_sys_32: -2.72712670e-16 - art_sys_33: 3.41203840e-16 - art_sys_34: -4.27293420e-18 - art_sys_35: 3.67223749e-19 - art_sys_36: 3.21194661e-18 + art_sys_23: -5.98291524e-26 + art_sys_24: -2.36832931e-24 + art_sys_25: 1.33091873e-14 + art_sys_26: 3.33218777e-14 + art_sys_27: -1.91897537e-14 + art_sys_28: -2.87426906e-09 + art_sys_29: 5.91681553e-09 + art_sys_30: 1.06016586e-15 + art_sys_31: -6.70973863e-16 + art_sys_32: 6.07097493e-16 + art_sys_33: -1.01043128e-15 + art_sys_34: 8.81943268e-18 + art_sys_35: -1.40364980e-19 + art_sys_36: 5.06249046e-18 art_sys_37: -2.97631652e-08 - art_sys_38: -1.58523152e-16 - art_sys_39: 2.05775682e-18 - art_sys_40: -2.04548015e-18 - art_sys_41: 2.32279235e-09 - art_sys_42: -4.66778557e-07 - art_sys_43: 9.65652069e-17 - art_sys_44: -1.78380804e-16 - art_sys_45: 3.47060868e-17 - art_sys_46: -4.89898939e-17 - art_sys_47: -4.95181106e-16 + art_sys_38: 8.24505582e-17 + art_sys_39: -9.44766060e-19 + art_sys_40: -7.73604658e-18 + art_sys_41: -2.32279552e-09 + art_sys_42: 4.66778557e-07 + art_sys_43: 2.36838347e-17 + art_sys_44: 2.11118282e-17 + art_sys_45: -2.51962207e-16 + art_sys_46: 6.87775988e-16 + art_sys_47: -1.34987440e-15 art_sys_48: 9.26748775e-07 - art_sys_49: 2.17664071e-16 - art_sys_50: 2.18964419e-15 - art_sys_51: -1.22413860e-13 - art_sys_52: 7.92775524e-15 - art_sys_53: -1.54832162e-16 - art_sys_54: 3.13521930e-07 - art_sys_55: -4.23230044e-14 - art_sys_56: 1.63462793e-13 - art_sys_57: -6.26591359e-06 - art_sys_58: 3.25385523e-16 - art_sys_59: -6.49398377e-15 - art_sys_60: -2.48979364e-15 - art_sys_61: 9.32768794e-17 - art_sys_62: 7.20343376e-16 - art_sys_63: -4.42694770e-17 - art_sys_64: 1.34923080e-15 - art_sys_65: 6.91705373e-17 - art_sys_66: 6.79002886e-17 - art_sys_67: -1.24440394e-18 - art_sys_68: 3.08068526e-13 - art_sys_69: 4.96564464e-13 - art_sys_70: -6.05120140e-06 - art_sys_71: 1.63515666e-11 - art_sys_72: -1.87339904e-11 - art_sys_73: -1.79175092e-15 - art_sys_74: -1.43825948e-12 - art_sys_75: 3.81436772e-17 - art_sys_76: -1.52002346e-17 - art_sys_77: 7.16396659e-18 - art_sys_78: 3.42988149e-10 - art_sys_79: 8.78280986e-06 - art_sys_80: 6.98715727e-19 - art_sys_81: -2.60568345e-19 - art_sys_82: -1.04305666e-18 - art_sys_83: 4.25514566e-11 - art_sys_84: 9.97605068e-05 - art_sys_85: -1.75548415e-12 - art_sys_86: -1.24665988e-10 - art_sys_87: -1.30212391e-04 - art_sys_88: 2.10119164e-19 - art_sys_89: 5.22807529e-11 - art_sys_90: 2.79210736e-04 - art_sys_91: 2.26340080e-12 - art_sys_92: -2.58097883e-05 - art_sys_93: -2.65062860e-10 - art_sys_94: -6.95167111e-12 - art_sys_95: -4.22157453e-05 - art_sys_96: 1.38993124e-12 - art_sys_97: 5.78795591e-05 - art_sys_98: 4.80731009e-10 - art_sys_99: -1.26341600e-12 - art_sys_100: 3.61226044e-20 - art_sys_101: -6.30293423e-20 - art_sys_102: 3.47127687e-05 - art_sys_103: 1.72410521e-12 - art_sys_104: -1.74238541e-05 - art_sys_105: 1.55146131e-13 - art_sys_106: 5.19983577e-11 - art_sys_107: -9.02295371e-06 - art_sys_108: 7.35149727e-14 - art_sys_109: -3.91602683e-06 - art_sys_110: -2.39527582e-10 - art_sys_111: 4.75911095e-13 - art_sys_112: 1.50549747e-06 - art_sys_113: -5.49303638e-07 - art_sys_114: 1.91356650e-07 - art_sys_115: -3.92133104e-12 - art_sys_116: -5.26568604e-08 - art_sys_117: -1.86649475e-14 - art_sys_118: 1.81747000e-08 - art_sys_119: 1.41152724e-13 - art_sys_120: 3.37062250e-13 - art_sys_121: -7.69268681e-14 - art_sys_122: 4.25751207e-14 - art_sys_123: -2.63261540e-13 - art_sys_124: -2.65608119e-14 - art_sys_125: 3.14819247e-09 - art_sys_126: -1.94949115e-14 - art_sys_127: 3.11410162e-10 - art_sys_128: -1.14893929e-14 - art_sys_129: 6.20498299e-15 - art_sys_130: 3.64960339e-12 - art_sys_131: -1.11388516e-12 - art_sys_132: -6.72801835e-18 - art_sys_133: 1.95002671e-17 - art_sys_134: 1.16026011e-15 - art_sys_135: 3.64363466e-22 - art_sys_136: 9.29277641e-21 - art_sys_137: 5.58672648e-22 - art_sys_138: 1.51242099e-22 - art_sys_139: 4.00173742e-22 - art_sys_140: -1.25533825e-22 - art_sys_141: -3.79687117e-18 - art_sys_142: 5.54506021e-24 - art_sys_143: -2.47380876e-21 - art_sys_144: -1.21244239e-20 - art_sys_145: -1.63418781e-19 - art_sys_146: 6.03165748e-20 - art_sys_147: -1.34811167e-19 - art_sys_148: -6.25615961e-20 - art_sys_149: -2.26519049e-20 - art_sys_150: 2.21937254e-20 - art_sys_151: 2.89799758e-21 - art_sys_152: -9.04885594e-24 - art_sys_153: -1.59893925e-23 - art_sys_154: -3.61396334e-24 - art_sys_155: -2.75734903e-25 - art_sys_156: -1.20025518e-25 - art_sys_157: 9.67986302e-28 - art_sys_158: -1.61572010e-26 - art_sys_159: -8.00392688e-26 - art_sys_160: 2.18561972e-25 - art_sys_161: 3.13248031e-27 - art_sys_162: -2.29564456e-28 - art_sys_163: 3.66437863e-27 - art_sys_164: -3.33386736e-27 - art_sys_165: -7.57344440e-27 - art_sys_166: -2.87787268e-27 - art_sys_167: 5.86255719e-27 - art_sys_168: -1.66436347e-16 - art_sys_169: 1.97158133e-27 - art_sys_170: 1.74882298e-17 - art_sys_171: 1.49208555e-16 - art_sys_172: -4.44788132e-27 - art_sys_173: 1.66520109e-27 - art_sys_174: -1.09522020e-17 - art_sys_175: 0.0 - art_sys_176: -1.57044610e-19 - art_sys_177: 0.0 - art_sys_178: 2.00484173e-21 - art_sys_179: 5.01326758e-25 - art_sys_180: -4.40052192e-26 - art_sys_181: 2.38861826e-31 - art_sys_182: 0.0 - art_sys_183: 1.56736884e-31 - art_sys_184: -5.28830273e-29 - art_sys_185: 6.92313116e-33 + art_sys_49: 2.21752662e-16 + art_sys_50: 1.61130450e-15 + art_sys_51: 3.37402611e-14 + art_sys_52: 1.62884345e-15 + art_sys_53: 5.33351930e-16 + art_sys_54: 1.30505931e-15 + art_sys_55: -9.53435506e-17 + art_sys_56: -1.84701056e-16 + art_sys_57: 2.44351829e-15 + art_sys_58: -1.52904857e-16 + art_sys_59: -1.97477937e-16 + art_sys_60: 3.13522274e-07 + art_sys_61: 6.61104759e-15 + art_sys_62: -1.28635135e-12 + art_sys_63: -7.32188063e-14 + art_sys_64: 6.26591308e-06 + art_sys_65: 1.19520973e-16 + art_sys_66: 3.38224524e-17 + art_sys_67: -3.54361204e-15 + art_sys_68: 2.26467758e-15 + art_sys_69: 7.63777678e-13 + art_sys_70: -6.05119984e-06 + art_sys_71: -9.47822983e-12 + art_sys_72: -5.01719367e-15 + art_sys_73: 5.12219930e-15 + art_sys_74: 2.64712547e-14 + art_sys_75: 4.06808142e-15 + art_sys_76: 2.13951683e-17 + art_sys_77: 1.61612843e-11 + art_sys_78: -1.09969827e-11 + art_sys_79: -3.25637748e-15 + art_sys_80: -1.98908435e-11 + art_sys_81: 3.04882842e-17 + art_sys_82: -1.10702993e-15 + art_sys_83: 5.12641700e-13 + art_sys_84: -4.35321886e-16 + art_sys_85: -5.18576008e-16 + art_sys_86: 9.79210837e-13 + art_sys_87: -3.98677501e-10 + art_sys_88: 1.90273711e-13 + art_sys_89: 5.09914586e-15 + art_sys_90: 8.78278816e-06 + art_sys_91: -4.81795870e-10 + art_sys_92: 9.97589834e-05 + art_sys_93: -1.74801899e-11 + art_sys_94: -1.30210751e-04 + art_sys_95: 9.94319743e-11 + art_sys_96: 2.69000396e-14 + art_sys_97: -3.64895899e-10 + art_sys_98: -2.79210970e-04 + art_sys_99: -8.45980923e-11 + art_sys_100: -5.26708626e-10 + art_sys_101: 2.58113990e-05 + art_sys_102: -4.22105489e-05 + art_sys_103: 1.86130089e-11 + art_sys_104: -4.80287979e-10 + art_sys_105: -5.78784266e-05 + art_sys_106: 1.20764343e-09 + art_sys_107: 1.97843478e-14 + art_sys_108: -1.22446198e-15 + art_sys_109: -7.48874696e-15 + art_sys_110: 1.43106544e-10 + art_sys_111: 3.47121792e-05 + art_sys_112: 7.22091330e-12 + art_sys_113: 5.20886907e-17 + art_sys_114: -1.74250413e-05 + art_sys_115: -2.76179175e-12 + art_sys_116: 1.38358030e-10 + art_sys_117: 9.02368189e-06 + art_sys_118: 1.05661576e-11 + art_sys_119: -3.91296521e-06 + art_sys_120: -2.41612318e-10 + art_sys_121: 8.68259210e-13 + art_sys_122: -1.50606979e-06 + art_sys_123: -5.49231173e-07 + art_sys_124: -6.89173159e-13 + art_sys_125: -7.72941489e-11 + art_sys_126: 1.95421085e-12 + art_sys_127: 1.91258217e-07 + art_sys_128: 2.40653604e-12 + art_sys_129: -5.24441049e-08 + art_sys_130: 3.77580376e-12 + art_sys_131: -1.49389641e-11 + art_sys_132: 1.84916932e-08 + art_sys_133: 4.33257536e-11 + art_sys_134: 8.83911236e-14 + art_sys_135: -3.25441256e-09 + art_sys_136: 8.85062519e-12 + art_sys_137: -9.73996171e-16 + art_sys_138: 6.05296538e-11 + art_sys_139: 3.21296586e-10 + art_sys_140: 4.73441820e-11 + art_sys_141: -7.21437462e-12 + art_sys_142: -5.93549520e-13 + art_sys_143: -3.37591161e-16 + art_sys_144: -5.97220286e-16 + art_sys_145: -3.01989896e-17 + art_sys_146: -0.0 + art_sys_147: -2.30818482e-14 + art_sys_148: -9.45080369e-14 + art_sys_149: -9.45080369e-14 + art_sys_150: 2.07049614e-13 + art_sys_151: 2.07049614e-13 + art_sys_152: -2.96641234e-12 + art_sys_153: 1.52792287e-13 + art_sys_154: -1.93350228e-17 + art_sys_155: 8.22726215e-25 + art_sys_156: -3.69372312e-29 + art_sys_157: -1.21845644e-27 + art_sys_158: 0.0 + art_sys_159: -7.45103312e-17 + art_sys_160: 4.42749061e-17 + art_sys_161: -6.08427877e-17 + art_sys_162: 6.33878695e-18 + art_sys_163: -4.27480402e-15 + art_sys_164: -2.44604325e-15 + art_sys_165: 3.63276513e-16 + art_sys_166: -1.53411060e-24 + art_sys_167: -2.35253307e-24 + art_sys_168: 9.20679342e-26 + art_sys_169: -1.10293565e-25 + art_sys_170: -1.67565173e-25 + art_sys_171: 1.08035028e-25 + art_sys_172: 3.59361025e-26 + art_sys_173: -1.66773603e-26 + art_sys_174: -4.18373112e-27 + art_sys_175: -1.25503531e-28 + art_sys_176: -2.90632733e-28 + art_sys_177: 1.63731261e-27 + art_sys_178: -5.57564007e-28 + art_sys_179: 1.21477274e-27 + art_sys_180: 5.93894775e-29 + art_sys_181: -1.17983674e-29 + art_sys_182: -4.40366169e-29 + art_sys_183: 3.29613618e-31 + art_sys_184: -3.59684819e-31 + art_sys_185: -1.74364883e-31 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -10424,191 +10424,191 @@ bins: RelativeStatFSR-: -9.85431923e-05 luminosity_uncertainty: 2.83298600e-03 uncorrelated_uncertainty: 1.08961000e-03 -- art_sys_1: 4.58829394e-47 - art_sys_2: 8.20841630e-38 - art_sys_3: 1.73511169e-33 +- art_sys_1: 7.71237079e-49 + art_sys_2: 1.21123604e-36 + art_sys_3: 1.97141822e-36 art_sys_4: 8.88800380e-17 - art_sys_5: 2.15294817e-32 - art_sys_6: 2.91250278e-34 - art_sys_7: -9.98804067e-16 - art_sys_8: 1.66472994e-30 - art_sys_9: 4.59688577e-15 - art_sys_10: 5.87365681e-32 - art_sys_11: -8.70539752e-28 + art_sys_5: 3.51706041e-31 + art_sys_6: -8.49681397e-34 + art_sys_7: 9.98804067e-16 + art_sys_8: 4.36182920e-31 + art_sys_9: -4.59688577e-15 + art_sys_10: 4.92363403e-32 + art_sys_11: -1.21319864e-28 art_sys_12: -9.68301842e-15 - art_sys_13: 1.89058092e-31 - art_sys_14: 2.81251674e-13 - art_sys_15: -4.01224771e-27 - art_sys_16: 1.45119116e-12 - art_sys_17: -2.19927406e-28 - art_sys_18: 1.24400500e-26 - art_sys_19: 3.92602550e-13 - art_sys_20: 1.45671663e-28 - art_sys_21: -6.18685850e-25 + art_sys_13: -5.09754352e-30 + art_sys_14: -2.81251674e-13 + art_sys_15: -1.37715735e-26 + art_sys_16: -1.45119116e-12 + art_sys_17: -1.63746633e-28 + art_sys_18: 1.67099330e-25 + art_sys_19: -3.92602550e-13 + art_sys_20: -1.36276283e-27 + art_sys_21: 1.74482254e-24 art_sys_22: -2.91829722e-12 - art_sys_23: -3.98166923e-27 - art_sys_24: 3.58974719e-24 - art_sys_25: -1.07065150e-14 - art_sys_26: -1.76421114e-14 - art_sys_27: -1.08863217e-14 - art_sys_28: -9.26839350e-16 - art_sys_29: -1.04909739e-15 - art_sys_30: -3.35382040e-10 - art_sys_31: -2.49670409e-10 - art_sys_32: -5.80165185e-16 - art_sys_33: -1.68940626e-16 - art_sys_34: 1.83655870e-18 - art_sys_35: 2.68189726e-20 - art_sys_36: -1.23569897e-18 - art_sys_37: -2.16082230e-09 - art_sys_38: -1.10947188e-16 - art_sys_39: 1.86564657e-19 - art_sys_40: 8.69680064e-18 - art_sys_41: -2.52780520e-09 - art_sys_42: -2.00616710e-08 - art_sys_43: -2.14768918e-17 - art_sys_44: 5.82318858e-17 - art_sys_45: 4.02758170e-16 - art_sys_46: -2.45396754e-18 - art_sys_47: -2.72722933e-17 + art_sys_23: -5.11794417e-27 + art_sys_24: -6.98063787e-24 + art_sys_25: -3.18551685e-15 + art_sys_26: 1.89720502e-15 + art_sys_27: -9.27751358e-15 + art_sys_28: -3.35382039e-10 + art_sys_29: 2.49670423e-10 + art_sys_30: -3.58340297e-16 + art_sys_31: 1.42303976e-16 + art_sys_32: -4.51996649e-16 + art_sys_33: -9.18023786e-17 + art_sys_34: -2.60295789e-17 + art_sys_35: -1.02487805e-20 + art_sys_36: 2.55689915e-18 + art_sys_37: -2.16082231e-09 + art_sys_38: -9.47299365e-17 + art_sys_39: -8.24223915e-20 + art_sys_40: 1.79551911e-17 + art_sys_41: 2.52780507e-09 + art_sys_42: 2.00616710e-08 + art_sys_43: -7.01430467e-18 + art_sys_44: -2.49516388e-16 + art_sys_45: 5.06763375e-16 + art_sys_46: 2.96953150e-17 + art_sys_47: -7.26175621e-17 art_sys_48: 5.13424812e-08 - art_sys_49: -3.80640568e-16 - art_sys_50: -3.85368537e-17 - art_sys_51: -6.98196598e-14 - art_sys_52: -1.33524978e-15 - art_sys_53: -4.47044867e-16 - art_sys_54: 5.11283604e-07 - art_sys_55: -6.91087806e-14 - art_sys_56: -1.24394673e-14 - art_sys_57: 4.71049778e-07 - art_sys_58: -6.15153581e-17 - art_sys_59: -7.29667957e-15 - art_sys_60: -1.03072328e-14 - art_sys_61: -1.57843108e-15 - art_sys_62: -4.97052076e-16 - art_sys_63: -3.87678759e-16 - art_sys_64: -7.67754717e-17 - art_sys_65: -1.50665623e-18 - art_sys_66: 1.23881624e-16 - art_sys_67: 5.87839655e-17 - art_sys_68: -7.33810169e-13 - art_sys_69: -1.29398059e-12 - art_sys_70: -2.00386410e-07 - art_sys_71: -3.78495992e-11 - art_sys_72: 6.93551686e-12 - art_sys_73: -2.69593228e-16 - art_sys_74: 3.50554827e-12 - art_sys_75: -1.53717096e-17 - art_sys_76: -2.13180576e-18 - art_sys_77: 9.93844772e-18 - art_sys_78: -3.37107258e-10 - art_sys_79: -1.92289572e-05 - art_sys_80: 3.46775149e-18 - art_sys_81: 1.61385035e-18 - art_sys_82: -8.91767769e-19 - art_sys_83: -5.15596401e-11 - art_sys_84: 2.92581386e-05 - art_sys_85: 3.96375047e-12 - art_sys_86: 3.96806959e-11 - art_sys_87: 6.11133332e-05 - art_sys_88: -1.59392638e-19 - art_sys_89: -3.86097190e-11 - art_sys_90: 1.14790203e-04 - art_sys_91: -4.26409915e-12 - art_sys_92: -2.07985805e-04 - art_sys_93: 5.50194858e-10 - art_sys_94: 1.78524068e-11 - art_sys_95: 2.36987131e-05 - art_sys_96: 9.94632796e-13 - art_sys_97: -3.33911075e-05 - art_sys_98: 1.56327617e-10 - art_sys_99: 2.55269379e-12 - art_sys_100: -6.58672925e-20 - art_sys_101: 5.92138194e-20 - art_sys_102: -4.37303768e-05 - art_sys_103: -3.72906939e-12 - art_sys_104: 2.51336772e-05 - art_sys_105: -2.89613003e-13 - art_sys_106: -1.06636739e-10 - art_sys_107: 1.47996559e-05 - art_sys_108: -6.31551691e-14 - art_sys_109: 7.03297797e-06 - art_sys_110: 4.78273008e-10 - art_sys_111: -9.54009243e-13 - art_sys_112: -2.87858675e-06 - art_sys_113: 1.09948394e-06 - art_sys_114: -3.94864124e-07 - art_sys_115: 7.76148915e-12 - art_sys_116: 1.11488407e-07 - art_sys_117: -4.67082793e-13 - art_sys_118: -3.90778140e-08 - art_sys_119: -2.80421482e-13 - art_sys_120: -6.70089251e-13 - art_sys_121: 1.51338036e-13 - art_sys_122: -1.14410682e-13 - art_sys_123: 5.86108104e-13 - art_sys_124: 5.30971274e-14 - art_sys_125: -6.88983443e-09 - art_sys_126: 2.68049711e-14 - art_sys_127: -6.88435038e-10 - art_sys_128: 1.91840979e-14 - art_sys_129: -1.33916193e-14 - art_sys_130: -7.66449924e-12 - art_sys_131: 2.30649571e-12 - art_sys_132: 1.07302781e-17 - art_sys_133: -3.31880915e-17 - art_sys_134: -2.42463993e-15 - art_sys_135: -5.72312631e-21 - art_sys_136: -1.94669565e-20 - art_sys_137: -4.58105875e-21 - art_sys_138: -1.62869326e-22 - art_sys_139: -5.59448062e-22 - art_sys_140: 3.65444523e-24 - art_sys_141: 6.57424218e-18 - art_sys_142: -1.95678192e-23 - art_sys_143: 3.72266110e-21 - art_sys_144: -1.21077031e-20 - art_sys_145: -4.61703691e-19 - art_sys_146: -5.95354865e-19 - art_sys_147: -7.17989258e-19 - art_sys_148: -1.35342036e-19 - art_sys_149: 9.61150247e-20 - art_sys_150: -3.54963721e-20 - art_sys_151: -1.51937563e-20 - art_sys_152: 4.52864194e-23 - art_sys_153: 2.39332930e-23 - art_sys_154: 1.04727515e-23 - art_sys_155: 3.88914748e-25 - art_sys_156: 6.08963866e-26 - art_sys_157: 2.33772360e-26 - art_sys_158: 2.87740914e-26 - art_sys_159: 1.76779351e-25 - art_sys_160: -4.77433129e-25 - art_sys_161: -6.80968663e-27 - art_sys_162: 9.90047175e-28 - art_sys_163: -1.42104045e-26 - art_sys_164: 4.89247816e-26 - art_sys_165: 1.75673195e-26 - art_sys_166: 1.04165170e-26 - art_sys_167: 2.89901730e-26 - art_sys_168: 4.32393125e-16 - art_sys_169: -6.51289222e-27 - art_sys_170: -3.01493041e-17 - art_sys_171: -2.57335307e-16 - art_sys_172: 7.60384040e-27 - art_sys_173: -3.48838241e-27 - art_sys_174: 1.83506965e-17 - art_sys_175: 0.0 - art_sys_176: 2.67878092e-19 - art_sys_177: 0.0 - art_sys_178: -3.53872897e-21 - art_sys_179: -8.04826504e-25 - art_sys_180: 7.01781787e-26 - art_sys_181: -3.68523148e-31 - art_sys_182: 0.0 - art_sys_183: -1.12718709e-31 - art_sys_184: 1.10687400e-28 - art_sys_185: -1.37204755e-32 + art_sys_49: 1.72452996e-14 + art_sys_50: 1.46751374e-14 + art_sys_51: 1.39637633e-14 + art_sys_52: -7.49636085e-15 + art_sys_53: 1.21602642e-16 + art_sys_54: -6.18762986e-16 + art_sys_55: 2.45452574e-16 + art_sys_56: 3.25854233e-16 + art_sys_57: 1.35777663e-16 + art_sys_58: 1.45584668e-15 + art_sys_59: 5.14193144e-17 + art_sys_60: 5.11283579e-07 + art_sys_61: 7.91722591e-15 + art_sys_62: 9.93633860e-14 + art_sys_63: -2.97453834e-15 + art_sys_64: -4.71049740e-07 + art_sys_65: 7.12548948e-17 + art_sys_66: 6.85972871e-17 + art_sys_67: 3.08603114e-16 + art_sys_68: -4.99714488e-15 + art_sys_69: 2.32966324e-13 + art_sys_70: -2.00388885e-07 + art_sys_71: 1.15091919e-11 + art_sys_72: 9.28978748e-16 + art_sys_73: -3.98713013e-14 + art_sys_74: -1.33546430e-14 + art_sys_75: 3.16415151e-15 + art_sys_76: 6.15627665e-18 + art_sys_77: 1.34253610e-12 + art_sys_78: -1.04636733e-11 + art_sys_79: 2.40415629e-15 + art_sys_80: 2.41865678e-11 + art_sys_81: -2.32697085e-15 + art_sys_82: -4.65323731e-16 + art_sys_83: -7.42416639e-13 + art_sys_84: 4.85271250e-16 + art_sys_85: -2.35913146e-16 + art_sys_86: -1.92378759e-12 + art_sys_87: -1.24615447e-10 + art_sys_88: -3.77677927e-13 + art_sys_89: -1.06053758e-14 + art_sys_90: -1.92288835e-05 + art_sys_91: 1.98201139e-10 + art_sys_92: 2.92585165e-05 + art_sys_93: -4.73183508e-12 + art_sys_94: 6.11140084e-05 + art_sys_95: -1.30546153e-10 + art_sys_96: -5.51673374e-14 + art_sys_97: 1.83185972e-10 + art_sys_98: -1.14785856e-04 + art_sys_99: 3.51524980e-11 + art_sys_100: 8.46560864e-10 + art_sys_101: 2.07987431e-04 + art_sys_102: 2.36901610e-05 + art_sys_103: -2.55417780e-11 + art_sys_104: 7.27544712e-11 + art_sys_105: 3.33890171e-05 + art_sys_106: -1.52363438e-09 + art_sys_107: -4.24728336e-14 + art_sys_108: 2.63403837e-15 + art_sys_109: 1.67906731e-14 + art_sys_110: -2.81750180e-10 + art_sys_111: -4.37301187e-05 + art_sys_112: -1.69645689e-11 + art_sys_113: -1.14924658e-16 + art_sys_114: 2.51354083e-05 + art_sys_115: 5.62778005e-12 + art_sys_116: -2.68345300e-10 + art_sys_117: -1.48011521e-05 + art_sys_118: -2.16621940e-11 + art_sys_119: 7.02814186e-06 + art_sys_120: 4.79214461e-10 + art_sys_121: -1.85933573e-12 + art_sys_122: 2.87984465e-06 + art_sys_123: 1.09932902e-06 + art_sys_124: 1.47979325e-12 + art_sys_125: 1.60914080e-10 + art_sys_126: -4.19211937e-12 + art_sys_127: -3.94680755e-07 + art_sys_128: -5.25938324e-12 + art_sys_129: 1.11014797e-07 + art_sys_130: -8.21616545e-12 + art_sys_131: 3.22819909e-11 + art_sys_132: -3.97696670e-08 + art_sys_133: -9.31998317e-11 + art_sys_134: -1.90099841e-13 + art_sys_135: 7.11196529e-09 + art_sys_136: -1.92471571e-11 + art_sys_137: 2.11187293e-15 + art_sys_138: -2.10456401e-10 + art_sys_139: -7.07232947e-10 + art_sys_140: -1.04153222e-10 + art_sys_141: 1.58244186e-11 + art_sys_142: 1.28170622e-12 + art_sys_143: 7.44637529e-16 + art_sys_144: 1.31233319e-15 + art_sys_145: 7.79957820e-17 + art_sys_146: 0.0 + art_sys_147: 4.97905526e-14 + art_sys_148: 2.06318962e-13 + art_sys_149: 2.06318962e-13 + art_sys_150: -4.76132200e-13 + art_sys_151: -4.76132200e-13 + art_sys_152: 6.19108010e-12 + art_sys_153: -3.12923966e-13 + art_sys_154: 3.45819004e-17 + art_sys_155: -1.70284104e-24 + art_sys_156: 8.06728108e-29 + art_sys_157: 2.38324147e-27 + art_sys_158: -0.0 + art_sys_159: 8.75149832e-16 + art_sys_160: -7.69810738e-17 + art_sys_161: 1.39483121e-16 + art_sys_162: -1.32598692e-17 + art_sys_163: 9.25082692e-15 + art_sys_164: 5.25437324e-15 + art_sys_165: -7.79227990e-16 + art_sys_166: 3.41202944e-24 + art_sys_167: 5.07830415e-24 + art_sys_168: -2.12846370e-25 + art_sys_169: 2.12067186e-25 + art_sys_170: 3.86043482e-25 + art_sys_171: -2.39096458e-25 + art_sys_172: -7.67745716e-26 + art_sys_173: 3.69093954e-26 + art_sys_174: 9.33924020e-27 + art_sys_175: 2.65707936e-28 + art_sys_176: 6.13756623e-28 + art_sys_177: -3.66951573e-27 + art_sys_178: 1.23088893e-27 + art_sys_179: -1.22897980e-27 + art_sys_180: -2.08335450e-28 + art_sys_181: 2.61033754e-29 + art_sys_182: 9.85955479e-29 + art_sys_183: -7.36779753e-31 + art_sys_184: 7.56557604e-31 + art_sys_185: 3.75027859e-31 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -10715,191 +10715,191 @@ bins: RelativeStatFSR-: -6.33945030e-05 luminosity_uncertainty: 1.71522260e-03 uncorrelated_uncertainty: 6.59701000e-04 -- art_sys_1: 2.51888505e-48 - art_sys_2: 4.97910974e-39 - art_sys_3: 9.52536077e-35 +- art_sys_1: 4.19364250e-50 + art_sys_2: 6.64940544e-38 + art_sys_3: 1.59374066e-37 art_sys_4: 4.87930795e-18 - art_sys_5: 1.97795519e-33 - art_sys_6: 2.46493007e-35 - art_sys_7: -8.38878518e-17 - art_sys_8: 2.36968384e-31 - art_sys_9: 3.88349498e-16 - art_sys_10: 4.96754201e-33 - art_sys_11: -1.99184098e-28 + art_sys_5: 3.00418481e-32 + art_sys_6: -4.64335699e-35 + art_sys_7: 8.38878518e-17 + art_sys_8: 9.65640007e-32 + art_sys_9: -3.88349498e-16 + art_sys_10: 4.16597728e-33 + art_sys_11: -2.83241438e-29 art_sys_12: -5.09390967e-16 - art_sys_13: 9.45506749e-33 - art_sys_14: -2.93744641e-16 - art_sys_15: -4.40368932e-27 - art_sys_16: 2.77124502e-13 - art_sys_17: -4.34499236e-29 - art_sys_18: -6.55666126e-28 - art_sys_19: 4.59708123e-13 - art_sys_20: -2.63237928e-29 - art_sys_21: 3.48805733e-26 + art_sys_13: 1.49922732e-31 + art_sys_14: 2.93744641e-16 + art_sys_15: 2.92059941e-27 + art_sys_16: -2.77124502e-13 + art_sys_17: -7.93998156e-30 + art_sys_18: -2.14592466e-26 + art_sys_19: -4.59708123e-13 + art_sys_20: 2.50387924e-28 + art_sys_21: 2.41260563e-26 art_sys_22: 5.73769709e-13 - art_sys_23: 8.72011419e-29 - art_sys_24: 2.53747570e-24 - art_sys_25: -1.90414362e-13 - art_sys_26: -5.12731552e-15 - art_sys_27: -8.06546570e-15 - art_sys_28: -2.46439905e-15 - art_sys_29: -1.68834776e-15 - art_sys_30: -1.83723810e-12 - art_sys_31: 5.50827804e-11 - art_sys_32: -1.40729454e-15 - art_sys_33: 1.29004829e-16 - art_sys_34: -5.13292293e-17 - art_sys_35: -3.02355071e-21 - art_sys_36: 2.31684798e-18 - art_sys_37: 2.69587780e-10 - art_sys_38: -1.43815413e-16 - art_sys_39: -4.87085586e-20 - art_sys_40: 6.78720493e-18 - art_sys_41: 8.87790340e-10 - art_sys_42: 6.90615232e-09 - art_sys_43: 1.30424874e-17 - art_sys_44: -2.86956957e-16 - art_sys_45: 9.29638906e-17 - art_sys_46: 1.16827267e-18 - art_sys_47: 9.88699883e-18 + art_sys_23: 2.42660301e-28 + art_sys_24: -2.20678609e-24 + art_sys_25: 2.78267497e-16 + art_sys_26: -3.22366351e-14 + art_sys_27: 2.25377611e-15 + art_sys_28: -1.83724239e-12 + art_sys_29: -5.50828425e-11 + art_sys_30: -4.47891781e-16 + art_sys_31: 1.17728231e-16 + art_sys_32: -6.81279005e-16 + art_sys_33: 1.00215437e-16 + art_sys_34: 2.76296959e-17 + art_sys_35: 1.15604758e-21 + art_sys_36: -3.76080593e-18 + art_sys_37: 2.69587792e-10 + art_sys_38: 1.70220531e-16 + art_sys_39: 1.96862820e-20 + art_sys_40: 1.87238047e-18 + art_sys_41: -8.87790288e-10 + art_sys_42: -6.90615233e-09 + art_sys_43: 1.75211148e-18 + art_sys_44: 5.48660717e-17 + art_sys_45: -3.27619732e-16 + art_sys_46: -1.03437869e-17 + art_sys_47: 3.01459518e-17 art_sys_48: -2.07936013e-08 - art_sys_49: 3.41273655e-16 - art_sys_50: -1.06546076e-16 - art_sys_51: 3.90179791e-14 - art_sys_52: -1.12848606e-14 - art_sys_53: -2.90843031e-16 - art_sys_54: 1.09269197e-07 - art_sys_55: -1.47714994e-14 - art_sys_56: -9.24376995e-15 - art_sys_57: 3.99294638e-07 - art_sys_58: -2.13599378e-17 - art_sys_59: 1.44155295e-16 - art_sys_60: -4.17583202e-15 - art_sys_61: -2.01831800e-15 - art_sys_62: -9.64575487e-16 - art_sys_63: 2.09835715e-16 - art_sys_64: -5.41951858e-17 - art_sys_65: 1.01099738e-16 - art_sys_66: -1.45192036e-17 - art_sys_67: 6.09160285e-17 - art_sys_68: -1.25323845e-13 - art_sys_69: -2.17826408e-13 - art_sys_70: 3.22692557e-07 - art_sys_71: -6.75887201e-12 - art_sys_72: 4.26025238e-12 - art_sys_73: 2.37181203e-17 - art_sys_74: 6.09799111e-13 - art_sys_75: -2.39066911e-17 - art_sys_76: -1.66030973e-18 - art_sys_77: 7.67320091e-18 - art_sys_78: -9.16023358e-11 - art_sys_79: -3.44145336e-06 - art_sys_80: 8.08229624e-19 - art_sys_81: 3.44708226e-18 - art_sys_82: 1.07999974e-18 - art_sys_83: 4.00222600e-11 - art_sys_84: -1.00429016e-05 - art_sys_85: 7.04237995e-13 - art_sys_86: -1.67475168e-11 - art_sys_87: 3.11508009e-05 - art_sys_88: -1.31030045e-19 - art_sys_89: -1.40561222e-10 - art_sys_90: -3.88820520e-05 - art_sys_91: -8.12516177e-13 - art_sys_92: -8.52221137e-05 - art_sys_93: -1.07673662e-09 - art_sys_94: -4.26751474e-11 - art_sys_95: 1.58244651e-04 - art_sys_96: -2.20764836e-14 - art_sys_97: 1.92000969e-05 - art_sys_98: -8.85634954e-11 - art_sys_99: -4.51220651e-12 - art_sys_100: 6.17993075e-20 - art_sys_101: -1.27214192e-19 - art_sys_102: 2.60658704e-05 - art_sys_103: 7.74762314e-12 - art_sys_104: -3.22486883e-05 - art_sys_105: 5.86889899e-13 - art_sys_106: 1.66780211e-10 - art_sys_107: -2.10238993e-05 - art_sys_108: -1.82255866e-14 - art_sys_109: -1.16571138e-05 - art_sys_110: -9.20321192e-10 - art_sys_111: 1.75389323e-12 - art_sys_112: 5.22512802e-06 - art_sys_113: -2.11496985e-06 - art_sys_114: 7.94343119e-07 - art_sys_115: -1.49831292e-11 - art_sys_116: -2.32145431e-07 - art_sys_117: -4.83094960e-13 - art_sys_118: 8.30096114e-08 - art_sys_119: 5.17474050e-13 - art_sys_120: 1.32001037e-12 - art_sys_121: -2.58463915e-13 - art_sys_122: 2.81396414e-13 - art_sys_123: -1.27528264e-12 - art_sys_124: -7.89007630e-14 - art_sys_125: 1.50067026e-08 - art_sys_126: -3.60501288e-14 - art_sys_127: 1.52225253e-09 - art_sys_128: -2.80299074e-14 - art_sys_129: 2.88801559e-14 - art_sys_130: 1.57640063e-11 - art_sys_131: -4.66170597e-12 - art_sys_132: -1.49317656e-17 - art_sys_133: 5.37794265e-17 - art_sys_134: 1.91373296e-15 - art_sys_135: 1.64889364e-22 - art_sys_136: 2.04456876e-20 - art_sys_137: 8.35145017e-22 - art_sys_138: 2.19366071e-21 - art_sys_139: -7.66070386e-22 - art_sys_140: -8.53885531e-22 - art_sys_141: -1.08303863e-17 - art_sys_142: -1.20215875e-23 - art_sys_143: -6.72798824e-21 - art_sys_144: -7.38739836e-20 - art_sys_145: -5.21667229e-19 - art_sys_146: -1.30069189e-18 - art_sys_147: -1.40684338e-18 - art_sys_148: -2.45759603e-19 - art_sys_149: -3.44757070e-20 - art_sys_150: 1.84063084e-20 - art_sys_151: 1.22574938e-21 - art_sys_152: 2.02486068e-24 - art_sys_153: -1.78810273e-23 - art_sys_154: -2.75555959e-24 - art_sys_155: -5.22664739e-25 - art_sys_156: -1.43323699e-25 - art_sys_157: 1.35108653e-26 - art_sys_158: -6.12716360e-26 - art_sys_159: -3.84878485e-25 - art_sys_160: 1.03784367e-24 - art_sys_161: 1.47597355e-26 - art_sys_162: -1.43703637e-27 - art_sys_163: 2.95479094e-26 - art_sys_164: -1.12325746e-25 - art_sys_165: -4.55024523e-26 - art_sys_166: -1.62190482e-26 - art_sys_167: -1.33191728e-25 - art_sys_168: -1.06129152e-15 - art_sys_169: 2.72680809e-27 - art_sys_170: 4.92709677e-17 - art_sys_171: 4.09307584e-16 - art_sys_172: -2.02154739e-26 - art_sys_173: 7.19303285e-27 - art_sys_174: -2.76254632e-17 - art_sys_175: 0.0 - art_sys_176: -4.16834939e-19 - art_sys_177: 0.0 - art_sys_178: 5.81648725e-21 - art_sys_179: 1.15462519e-24 - art_sys_180: -9.76460902e-26 - art_sys_181: 4.80361692e-31 - art_sys_182: 0.0 - art_sys_183: -2.44301288e-31 - art_sys_184: -2.26726750e-28 - art_sys_185: 2.61418738e-32 + art_sys_49: -9.11311475e-14 + art_sys_50: 2.69989519e-14 + art_sys_51: -5.44371643e-15 + art_sys_52: -3.22645740e-15 + art_sys_53: -1.57919300e-15 + art_sys_54: 1.25206093e-15 + art_sys_55: -1.57743906e-16 + art_sys_56: -2.18582232e-16 + art_sys_57: -5.45437381e-17 + art_sys_58: 1.15415196e-15 + art_sys_59: -2.88365277e-16 + art_sys_60: 1.09269175e-07 + art_sys_61: 1.62963909e-15 + art_sys_62: 8.25285925e-14 + art_sys_63: 4.26835613e-15 + art_sys_64: -3.99294605e-07 + art_sys_65: 2.52502665e-17 + art_sys_66: 3.15865647e-17 + art_sys_67: 2.29997561e-16 + art_sys_68: -7.32202922e-16 + art_sys_69: -7.58188109e-14 + art_sys_70: 3.22692069e-07 + art_sys_71: 2.51481264e-12 + art_sys_72: 4.24505947e-16 + art_sys_73: 9.89920126e-14 + art_sys_74: 1.36275429e-14 + art_sys_75: 9.76965154e-16 + art_sys_76: -4.22754202e-19 + art_sys_77: -2.17351887e-12 + art_sys_78: 9.50745709e-13 + art_sys_79: -6.91616076e-15 + art_sys_80: 8.17799764e-11 + art_sys_81: 6.62453227e-16 + art_sys_82: -4.36023280e-16 + art_sys_83: 1.09563262e-12 + art_sys_84: -6.52096335e-17 + art_sys_85: -7.50071391e-17 + art_sys_86: 3.61587418e-12 + art_sys_87: 3.71139401e-11 + art_sys_88: 7.19279606e-13 + art_sys_89: 2.15382992e-14 + art_sys_90: -3.44144220e-06 + art_sys_91: 1.60699481e-09 + art_sys_92: -1.00425245e-05 + art_sys_93: 1.80610396e-12 + art_sys_94: 3.11507472e-05 + art_sys_95: 1.29994001e-10 + art_sys_96: 1.10237156e-13 + art_sys_97: 6.39241643e-10 + art_sys_98: 3.88854856e-05 + art_sys_99: 1.93916861e-11 + art_sys_100: -1.19173342e-09 + art_sys_101: 8.52182318e-05 + art_sys_102: 1.58239697e-04 + art_sys_103: 2.47764213e-11 + art_sys_104: 8.85353823e-11 + art_sys_105: -1.92125948e-05 + art_sys_106: 1.07712856e-09 + art_sys_107: 9.00970874e-14 + art_sys_108: -5.59030231e-15 + art_sys_109: -3.56513263e-14 + art_sys_110: 5.32706012e-10 + art_sys_111: 2.60663358e-05 + art_sys_112: 3.98589529e-11 + art_sys_113: 2.46024142e-16 + art_sys_114: -3.22523181e-05 + art_sys_115: -1.11148981e-11 + art_sys_116: 4.90685474e-10 + art_sys_117: 2.10261206e-05 + art_sys_118: 4.32394308e-11 + art_sys_119: -1.16501637e-05 + art_sys_120: -9.13393956e-10 + art_sys_121: 3.92761375e-12 + art_sys_122: -5.22736740e-06 + art_sys_123: -2.11448473e-06 + art_sys_124: -3.13900527e-12 + art_sys_125: -3.27467466e-10 + art_sys_126: 8.88698024e-12 + art_sys_127: 7.93976779e-07 + art_sys_128: 1.14057789e-11 + art_sys_129: -2.31084288e-07 + art_sys_130: 1.77260280e-11 + art_sys_131: -6.90018269e-11 + art_sys_132: 8.45013089e-08 + art_sys_133: 1.98079223e-10 + art_sys_134: 4.03924741e-13 + art_sys_135: -1.54619336e-08 + art_sys_136: 4.15444947e-11 + art_sys_137: -4.54068481e-15 + art_sys_138: -3.02547818e-10 + art_sys_139: 1.55544552e-09 + art_sys_140: 2.28896769e-10 + art_sys_141: -3.46165051e-11 + art_sys_142: -2.77908447e-12 + art_sys_143: -1.64238116e-15 + art_sys_144: -2.87775568e-15 + art_sys_145: -1.78924377e-16 + art_sys_146: -0.0 + art_sys_147: -1.03242059e-13 + art_sys_148: -4.91936742e-13 + art_sys_149: -4.91936742e-13 + art_sys_150: 1.10654083e-12 + art_sys_151: 1.10654083e-12 + art_sys_152: -1.25817879e-11 + art_sys_153: 6.15466469e-13 + art_sys_154: -5.37833460e-17 + art_sys_155: 3.41807884e-24 + art_sys_156: -1.74926240e-28 + art_sys_157: -4.42250248e-27 + art_sys_158: 0.0 + art_sys_159: -2.31443163e-15 + art_sys_160: 1.44909204e-16 + art_sys_161: -3.21075326e-16 + art_sys_162: 2.79412305e-17 + art_sys_163: -1.97696891e-14 + art_sys_164: -1.12235533e-14 + art_sys_165: 1.65086536e-15 + art_sys_166: -7.18103765e-24 + art_sys_167: -1.08986521e-23 + art_sys_168: 4.01414613e-25 + art_sys_169: -4.97453943e-25 + art_sys_170: -7.98006030e-25 + art_sys_171: 5.13595481e-25 + art_sys_172: 1.63378154e-25 + art_sys_173: -7.97697942e-26 + art_sys_174: -2.00654920e-26 + art_sys_175: -5.72444610e-28 + art_sys_176: -1.35688053e-27 + art_sys_177: 7.82262452e-27 + art_sys_178: -2.62567802e-27 + art_sys_179: 1.85724031e-27 + art_sys_180: 4.88321361e-28 + art_sys_181: -5.61831739e-29 + art_sys_182: -2.04738863e-28 + art_sys_183: 1.69877570e-30 + art_sys_184: -1.56312503e-30 + art_sys_185: -7.97751893e-31 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -11006,191 +11006,191 @@ bins: RelativeStatFSR-: -4.06774286e-05 luminosity_uncertainty: 1.03723360e-03 uncorrelated_uncertainty: 3.98936000e-04 -- art_sys_1: 1.26334171e-49 - art_sys_2: 3.48507741e-40 - art_sys_3: 4.77733395e-36 +- art_sys_1: 2.07426069e-51 + art_sys_2: 3.33493237e-39 + art_sys_3: 1.14351134e-38 art_sys_4: 2.44716017e-19 - art_sys_5: 1.55443663e-34 - art_sys_6: 2.41475200e-36 - art_sys_7: -6.54221980e-18 - art_sys_8: 2.36911348e-32 - art_sys_9: 2.97484535e-17 - art_sys_10: 3.79465212e-34 - art_sys_11: -2.75738891e-29 + art_sys_5: 2.37930562e-33 + art_sys_6: -2.31351399e-36 + art_sys_7: 6.54221980e-18 + art_sys_8: 8.21312790e-33 + art_sys_9: -2.97484535e-17 + art_sys_10: 3.20960561e-34 + art_sys_11: -3.77648700e-30 art_sys_12: -1.11983491e-17 - art_sys_13: 2.59074840e-34 - art_sys_14: -3.85491213e-15 - art_sys_15: -8.44555385e-28 - art_sys_16: 3.40565093e-14 - art_sys_17: -5.44756130e-30 - art_sys_18: 6.28076427e-28 - art_sys_19: 8.74978744e-14 - art_sys_20: -7.57521141e-30 - art_sys_21: 3.86731286e-26 + art_sys_13: 9.90501332e-32 + art_sys_14: 3.85491213e-15 + art_sys_15: 6.22534875e-28 + art_sys_16: -3.40565093e-14 + art_sys_17: 8.04576209e-31 + art_sys_18: -5.88944633e-27 + art_sys_19: -8.74978744e-14 + art_sys_20: 7.14333756e-29 + art_sys_21: -5.06171749e-26 art_sys_22: 1.60684756e-13 - art_sys_23: 8.25310728e-29 - art_sys_24: 4.22540506e-25 - art_sys_25: -1.66181634e-14 - art_sys_26: -5.37747657e-14 - art_sys_27: -7.69810499e-15 - art_sys_28: 1.98754765e-15 - art_sys_29: -1.07514140e-15 - art_sys_30: 5.94240198e-12 - art_sys_31: 1.10456659e-11 - art_sys_32: -1.45322114e-15 - art_sys_33: -6.78897850e-16 - art_sys_34: 2.14340650e-18 - art_sys_35: -1.05363301e-21 - art_sys_36: 1.11557930e-17 - art_sys_37: 9.20561280e-11 - art_sys_38: -3.00855490e-16 - art_sys_39: -1.66647883e-20 - art_sys_40: -3.17398208e-19 - art_sys_41: 3.69920354e-10 - art_sys_42: 1.63232525e-09 - art_sys_43: 3.05220479e-16 - art_sys_44: 4.60530310e-16 - art_sys_45: -3.03456601e-16 - art_sys_46: 3.05632929e-19 - art_sys_47: 3.00929579e-18 + art_sys_23: 1.24927369e-28 + art_sys_24: 2.26161472e-26 + art_sys_25: -2.99782171e-15 + art_sys_26: -3.81952048e-14 + art_sys_27: -1.24112715e-14 + art_sys_28: 5.94240197e-12 + art_sys_29: -1.10456660e-11 + art_sys_30: -3.30201717e-15 + art_sys_31: -5.62277334e-16 + art_sys_32: 3.48367000e-16 + art_sys_33: -2.41616648e-16 + art_sys_34: 7.09684393e-19 + art_sys_35: 4.02739998e-22 + art_sys_36: 1.62668448e-17 + art_sys_37: 9.20561548e-11 + art_sys_38: 5.94051003e-16 + art_sys_39: 6.73742236e-21 + art_sys_40: 3.66773975e-18 + art_sys_41: -3.69920347e-10 + art_sys_42: -1.63232525e-09 + art_sys_43: -6.93282086e-17 + art_sys_44: 6.71330502e-17 + art_sys_45: -3.09188581e-18 + art_sys_46: -2.45604579e-18 + art_sys_47: 8.13720962e-18 art_sys_48: -5.56416369e-09 - art_sys_49: -3.43245706e-16 - art_sys_50: -2.13157455e-17 - art_sys_51: 3.25178846e-14 - art_sys_52: -2.92627654e-14 - art_sys_53: 6.46529249e-16 - art_sys_54: 1.12459936e-08 - art_sys_55: -1.52037760e-15 - art_sys_56: -1.60250366e-15 - art_sys_57: 7.08300967e-08 - art_sys_58: -2.08011136e-18 - art_sys_59: 4.70103343e-15 - art_sys_60: 3.56964935e-15 - art_sys_61: 1.15955285e-15 - art_sys_62: -5.75478961e-16 - art_sys_63: 5.21234079e-17 - art_sys_64: 3.13477479e-17 - art_sys_65: 7.95732828e-17 - art_sys_66: -1.35438080e-16 - art_sys_67: 1.79678667e-17 - art_sys_68: 5.45825591e-14 - art_sys_69: 1.03766509e-13 - art_sys_70: 6.63897986e-08 - art_sys_71: 3.06309665e-12 - art_sys_72: -3.98611380e-13 - art_sys_73: 4.26763170e-17 - art_sys_74: -2.45444915e-13 - art_sys_75: 6.35095902e-18 - art_sys_76: 1.65333167e-17 - art_sys_77: 1.44417971e-18 - art_sys_78: 4.22302961e-11 - art_sys_79: 1.54662761e-06 - art_sys_80: -2.12509551e-19 - art_sys_81: 1.82348189e-18 - art_sys_82: 1.33106693e-19 - art_sys_83: -2.54527687e-11 - art_sys_84: -4.63363913e-06 - art_sys_85: -3.19076186e-13 - art_sys_86: -4.12255005e-10 - art_sys_87: -4.75020380e-06 - art_sys_88: 1.88428045e-19 - art_sys_89: 3.37890605e-11 - art_sys_90: -2.60777797e-05 - art_sys_91: 3.37788724e-13 - art_sys_92: 2.93507406e-05 - art_sys_93: 1.82176355e-09 - art_sys_94: 1.03679727e-10 - art_sys_95: 6.36166610e-05 - art_sys_96: -1.21568370e-13 - art_sys_97: 1.20879174e-04 - art_sys_98: 2.70886553e-09 - art_sys_99: 6.87790126e-12 - art_sys_100: -1.15026506e-19 - art_sys_101: 8.42809179e-20 - art_sys_102: -1.62101902e-05 - art_sys_103: -1.47830779e-11 - art_sys_104: 1.85153887e-05 - art_sys_105: -1.10548534e-12 - art_sys_106: -3.26566539e-10 - art_sys_107: 2.55868328e-05 - art_sys_108: 3.28936873e-13 - art_sys_109: 1.65615119e-05 - art_sys_110: 1.65954370e-09 - art_sys_111: -2.99315874e-12 - art_sys_112: -8.67117922e-06 - art_sys_113: 3.82813500e-06 - art_sys_114: -1.52186717e-06 - art_sys_115: 2.69122752e-11 - art_sys_116: 4.68001057e-07 - art_sys_117: -7.35393913e-14 - art_sys_118: -1.71881996e-07 - art_sys_119: -8.76222327e-13 - art_sys_120: -2.40614612e-12 - art_sys_121: 4.47092904e-13 - art_sys_122: -6.42214833e-13 - art_sys_123: 2.68897126e-12 - art_sys_124: 1.32711623e-13 - art_sys_125: -3.21334412e-08 - art_sys_126: 3.21295276e-14 - art_sys_127: -3.32426323e-09 - art_sys_128: 3.86022565e-14 - art_sys_129: -6.16935273e-14 - art_sys_130: -3.17909721e-11 - art_sys_131: 9.14190827e-12 - art_sys_132: 1.88769375e-17 - art_sys_133: -8.30587141e-17 - art_sys_134: -7.16040196e-16 - art_sys_135: 1.40165803e-21 - art_sys_136: -2.84595733e-20 - art_sys_137: 5.13148608e-23 - art_sys_138: -5.21706569e-21 - art_sys_139: 7.93225071e-22 - art_sys_140: 1.04853964e-21 - art_sys_141: 1.71472142e-17 - art_sys_142: 1.54807184e-23 - art_sys_143: 1.03796179e-20 - art_sys_144: 4.13101779e-20 - art_sys_145: 1.02230228e-18 - art_sys_146: 2.31827029e-18 - art_sys_147: 2.17573778e-18 - art_sys_148: 2.91727096e-19 - art_sys_149: 1.87047308e-20 - art_sys_150: -2.55268316e-20 - art_sys_151: 5.04684511e-21 - art_sys_152: -1.61671518e-23 - art_sys_153: 1.24596980e-23 - art_sys_154: -1.15118677e-24 - art_sys_155: 6.95519187e-25 - art_sys_156: 2.53716442e-26 - art_sys_157: -7.15111656e-26 - art_sys_158: 1.13286644e-25 - art_sys_159: 8.26504306e-25 - art_sys_160: -2.21419128e-24 - art_sys_161: -3.15378863e-26 - art_sys_162: 3.88264654e-27 - art_sys_163: -6.70709270e-26 - art_sys_164: 2.65252678e-25 - art_sys_165: 9.89691986e-26 - art_sys_166: 3.24990637e-26 - art_sys_167: 2.87113233e-25 - art_sys_168: 2.43125427e-15 - art_sys_169: -3.36436605e-27 - art_sys_170: -7.89712309e-17 - art_sys_171: -6.42440905e-16 - art_sys_172: 4.22679073e-26 - art_sys_173: -1.42582304e-26 - art_sys_174: 4.00201301e-17 - art_sys_175: 0.0 - art_sys_176: 6.35110872e-19 - art_sys_177: 0.0 - art_sys_178: -9.50765914e-21 - art_sys_179: -1.51135149e-24 - art_sys_180: 1.23427310e-25 - art_sys_181: -5.49923000e-31 - art_sys_182: 0.0 - art_sys_183: 1.35588870e-30 - art_sys_184: 4.54317348e-28 - art_sys_185: -4.60201827e-32 + art_sys_49: 6.09270740e-14 + art_sys_50: -5.59808109e-15 + art_sys_51: -3.51538926e-15 + art_sys_52: -3.19563354e-15 + art_sys_53: 9.74639972e-16 + art_sys_54: -2.32977378e-16 + art_sys_55: 2.01291555e-17 + art_sys_56: -3.32188265e-17 + art_sys_57: -1.46385858e-17 + art_sys_58: 1.42769356e-17 + art_sys_59: 2.15271252e-16 + art_sys_60: 1.12459898e-08 + art_sys_61: 1.61133469e-16 + art_sys_62: 1.46135055e-14 + art_sys_63: 8.70838900e-16 + art_sys_64: -7.08300909e-08 + art_sys_65: 5.19386795e-17 + art_sys_66: -4.63443713e-18 + art_sys_67: 3.79854856e-17 + art_sys_68: 4.18108362e-16 + art_sys_69: -3.62474935e-14 + art_sys_70: 6.63899916e-08 + art_sys_71: -8.58701995e-13 + art_sys_72: 4.87084421e-17 + art_sys_73: 3.18350430e-14 + art_sys_74: -1.02038095e-14 + art_sys_75: -2.01205225e-15 + art_sys_76: 9.61735043e-18 + art_sys_77: -4.72501556e-13 + art_sys_78: 1.93430524e-12 + art_sys_79: 1.10799203e-15 + art_sys_80: 2.84873004e-11 + art_sys_81: 1.01754779e-16 + art_sys_82: 7.02168561e-16 + art_sys_83: -4.89542865e-13 + art_sys_84: 8.95697430e-16 + art_sys_85: 8.66583364e-17 + art_sys_86: -6.31885693e-12 + art_sys_87: 1.85676945e-11 + art_sys_88: -1.28108568e-12 + art_sys_89: -4.18599485e-14 + art_sys_90: 1.54661848e-06 + art_sys_91: 6.80838618e-10 + art_sys_92: -4.63365075e-06 + art_sys_93: 7.76558664e-13 + art_sys_94: -4.75042831e-06 + art_sys_95: -2.79407723e-11 + art_sys_96: -2.09354527e-13 + art_sys_97: -2.00500191e-09 + art_sys_98: 2.60781876e-05 + art_sys_99: -2.60976531e-12 + art_sys_100: 1.34488422e-09 + art_sys_101: -2.93567040e-05 + art_sys_102: 6.36229785e-05 + art_sys_103: 6.50897771e-13 + art_sys_104: 2.13722837e-12 + art_sys_105: -1.20879097e-04 + art_sys_106: -2.30988852e-10 + art_sys_107: -1.86248320e-13 + art_sys_108: 1.15671526e-14 + art_sys_109: 7.53012612e-14 + art_sys_110: -9.46996586e-10 + art_sys_111: -1.62121197e-05 + art_sys_112: -8.99418863e-11 + art_sys_113: -5.33159088e-16 + art_sys_114: 1.85192732e-05 + art_sys_115: 2.06982511e-11 + art_sys_116: -8.36459050e-10 + art_sys_117: -2.55904685e-05 + art_sys_118: -8.19885524e-11 + art_sys_119: 1.65536984e-05 + art_sys_120: 1.63911870e-09 + art_sys_121: -8.08375931e-12 + art_sys_122: 8.67533799e-06 + art_sys_123: 3.82703041e-06 + art_sys_124: 6.49029060e-12 + art_sys_125: 6.35801159e-10 + art_sys_126: -1.83451901e-11 + art_sys_127: -1.52124608e-06 + art_sys_128: -2.42666638e-11 + art_sys_129: 4.65685889e-07 + art_sys_130: -3.74311273e-11 + art_sys_131: 1.43918267e-10 + art_sys_132: -1.75015424e-07 + art_sys_133: -4.10393341e-10 + art_sys_134: -8.36580520e-13 + art_sys_135: 3.30334761e-08 + art_sys_136: -8.79163639e-11 + art_sys_137: 9.55433242e-15 + art_sys_138: -5.97307527e-11 + art_sys_139: -3.37557969e-09 + art_sys_140: -4.96268120e-10 + art_sys_141: 7.46827986e-11 + art_sys_142: 5.82547761e-12 + art_sys_143: 3.57480461e-15 + art_sys_144: 6.22760055e-15 + art_sys_145: 4.86762287e-16 + art_sys_146: 0.0 + art_sys_147: 2.17814436e-13 + art_sys_148: 1.03318686e-12 + art_sys_149: 1.03318686e-12 + art_sys_150: -2.54996345e-12 + art_sys_151: -2.54996345e-12 + art_sys_152: 2.47810753e-11 + art_sys_153: -1.16247133e-12 + art_sys_154: 5.68710905e-17 + art_sys_155: -6.62065999e-24 + art_sys_156: 3.73498375e-28 + art_sys_157: 7.55489908e-27 + art_sys_158: -0.0 + art_sys_159: 5.86699053e-15 + art_sys_160: -2.40157896e-16 + art_sys_161: 7.41936439e-16 + art_sys_162: -5.51855148e-17 + art_sys_163: 4.15188758e-14 + art_sys_164: 2.32559515e-14 + art_sys_165: -3.40561710e-15 + art_sys_166: 1.46182412e-23 + art_sys_167: 2.29357887e-23 + art_sys_168: -6.81913463e-25 + art_sys_169: 1.00309838e-24 + art_sys_170: 1.60642847e-24 + art_sys_171: -1.07752936e-24 + art_sys_172: -3.48889556e-25 + art_sys_173: 1.67096977e-25 + art_sys_174: 4.15401818e-26 + art_sys_175: 1.15343838e-27 + art_sys_176: 2.84980554e-27 + art_sys_177: -1.65560544e-26 + art_sys_178: 5.68619874e-27 + art_sys_179: -1.35775320e-27 + art_sys_180: -1.21316595e-27 + art_sys_181: 1.17933668e-28 + art_sys_182: 4.08360757e-28 + art_sys_183: -3.83064687e-30 + art_sys_184: 3.11323945e-30 + art_sys_185: 1.65264657e-30 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -11297,191 +11297,191 @@ bins: RelativeStatFSR-: -2.62440138e-05 luminosity_uncertainty: 6.31118800e-04 uncorrelated_uncertainty: 2.42738000e-04 -- art_sys_1: 6.66817441e-51 - art_sys_2: 2.89796164e-41 - art_sys_3: 2.52148861e-37 +- art_sys_1: 1.07721626e-52 + art_sys_2: 1.76018577e-40 + art_sys_3: 7.95120965e-40 art_sys_4: 1.29161716e-20 - art_sys_5: 1.14687203e-35 - art_sys_6: 4.60942909e-38 - art_sys_7: -5.03223889e-19 - art_sys_8: 1.69539090e-33 - art_sys_9: 2.21616843e-18 - art_sys_10: 2.81215374e-35 - art_sys_11: -2.81907804e-30 + art_sys_5: 1.84835743e-34 + art_sys_6: -1.21078561e-37 + art_sys_7: 5.03223889e-19 + art_sys_8: 7.41624082e-34 + art_sys_9: -2.21616843e-18 + art_sys_10: 2.40657973e-35 + art_sys_11: -4.15577769e-31 art_sys_12: 6.67365220e-19 - art_sys_13: 2.84089441e-36 - art_sys_14: -6.11833352e-16 - art_sys_15: -9.62671962e-29 - art_sys_16: 3.15603809e-15 - art_sys_17: -5.12498803e-31 - art_sys_18: 1.69286428e-29 - art_sys_19: 1.02704062e-14 - art_sys_20: -9.92085370e-31 - art_sys_21: 3.96982537e-27 + art_sys_13: 1.45997499e-32 + art_sys_14: 6.11833352e-16 + art_sys_15: 7.46526321e-29 + art_sys_16: -3.15603809e-15 + art_sys_17: 1.95906380e-31 + art_sys_18: -6.51835782e-28 + art_sys_19: -1.02704062e-14 + art_sys_20: 9.34114431e-30 + art_sys_21: -4.36930316e-27 art_sys_22: 2.08965162e-14 - art_sys_23: 1.25975654e-29 - art_sys_24: 4.23268529e-26 - art_sys_25: 4.33194601e-14 - art_sys_26: -1.41214141e-14 - art_sys_27: -5.05986538e-15 - art_sys_28: 5.78657310e-16 - art_sys_29: 9.47490049e-16 - art_sys_30: 1.07602897e-12 - art_sys_31: 8.45443330e-13 - art_sys_32: 9.18372883e-17 - art_sys_33: 1.13272934e-16 - art_sys_34: 4.23139602e-20 - art_sys_35: -1.37711499e-22 - art_sys_36: -3.82473841e-20 - art_sys_37: 1.20897799e-11 - art_sys_38: -7.18588406e-17 - art_sys_39: -2.36823434e-21 - art_sys_40: 7.46140824e-18 - art_sys_41: 5.82310341e-11 - art_sys_42: 1.78567542e-10 - art_sys_43: 1.04426795e-17 - art_sys_44: -4.07802065e-17 - art_sys_45: -6.73523676e-17 - art_sys_46: 3.42063103e-20 - art_sys_47: 4.50822104e-19 + art_sys_23: 1.75957563e-29 + art_sys_24: 9.98312190e-26 + art_sys_25: -8.56816165e-15 + art_sys_26: -5.52445750e-15 + art_sys_27: -4.55527935e-15 + art_sys_28: 1.07602897e-12 + art_sys_29: -8.45443356e-13 + art_sys_30: -1.05502716e-15 + art_sys_31: -3.37559735e-16 + art_sys_32: 6.18488377e-17 + art_sys_33: 1.58348441e-16 + art_sys_34: 7.47708018e-20 + art_sys_35: 5.26328795e-23 + art_sys_36: 4.70534289e-18 + art_sys_37: 1.20897804e-11 + art_sys_38: 7.29807544e-17 + art_sys_39: 9.51576990e-22 + art_sys_40: -6.56891849e-18 + art_sys_41: -5.82310299e-11 + art_sys_42: -1.78567542e-10 + art_sys_43: 1.73983047e-17 + art_sys_44: 1.46752097e-16 + art_sys_45: -1.84706702e-16 + art_sys_46: -2.68943342e-19 + art_sys_47: 9.92339210e-19 art_sys_48: -6.06422963e-10 - art_sys_49: -4.48124987e-17 - art_sys_50: -1.25143185e-18 - art_sys_51: 4.50518109e-14 - art_sys_52: -4.07231712e-14 - art_sys_53: -1.93255813e-16 - art_sys_54: 9.83275181e-10 - art_sys_55: -1.32900206e-16 - art_sys_56: -1.61792041e-16 - art_sys_57: 4.44419204e-09 - art_sys_58: 6.48201629e-19 - art_sys_59: 7.21139657e-15 - art_sys_60: 5.40881938e-15 - art_sys_61: -1.11278800e-15 - art_sys_62: -1.32176472e-16 - art_sys_63: 2.29669426e-16 - art_sys_64: 4.98542780e-17 - art_sys_65: -4.87282856e-16 - art_sys_66: -8.36117352e-17 - art_sys_67: 4.59501909e-17 - art_sys_68: 1.83642245e-14 - art_sys_69: 2.92824670e-14 - art_sys_70: -2.06126169e-09 - art_sys_71: 9.65119131e-13 - art_sys_72: -5.48956392e-13 - art_sys_73: -4.59511687e-18 - art_sys_74: -8.40844135e-14 - art_sys_75: -4.16749178e-18 - art_sys_76: -1.05542826e-17 - art_sys_77: 5.05572255e-18 - art_sys_78: 1.35749542e-11 - art_sys_79: 4.87076787e-07 - art_sys_80: 1.04790587e-18 - art_sys_81: -7.02521380e-19 - art_sys_82: 6.82667876e-19 - art_sys_83: -8.34215416e-11 - art_sys_84: 4.27141078e-07 - art_sys_85: -1.00340201e-13 - art_sys_86: -2.39416711e-10 - art_sys_87: -4.18779881e-06 - art_sys_88: 6.32593091e-19 - art_sys_89: -7.16808777e-10 - art_sys_90: 2.43811483e-06 - art_sys_91: 1.12702218e-13 - art_sys_92: 1.88805370e-05 - art_sys_93: -3.10392132e-09 - art_sys_94: -2.17950488e-10 - art_sys_95: -2.26145803e-05 - art_sys_96: -1.73250648e-14 - art_sys_97: 4.59474690e-05 - art_sys_98: 2.98585628e-09 - art_sys_99: -8.93069650e-12 - art_sys_100: 3.18201616e-20 - art_sys_101: -2.50385979e-19 - art_sys_102: -9.21745361e-05 - art_sys_103: 2.52867303e-11 - art_sys_104: -1.37194204e-05 - art_sys_105: 2.49828466e-12 - art_sys_106: 3.21914734e-10 - art_sys_107: -1.26903175e-05 - art_sys_108: -9.55797648e-13 - art_sys_109: -2.04997491e-05 - art_sys_110: -2.70745694e-09 - art_sys_111: 5.33174396e-12 - art_sys_112: 1.25922719e-05 - art_sys_113: -6.44209852e-06 - art_sys_114: 2.79288154e-06 - art_sys_115: -4.51552114e-11 - art_sys_116: -9.17334009e-07 - art_sys_117: 8.04803965e-14 - art_sys_118: 3.51288294e-07 - art_sys_119: 1.21911355e-12 - art_sys_120: 4.06590786e-12 - art_sys_121: -7.60793382e-13 - art_sys_122: 1.41013176e-12 - art_sys_123: -5.44302517e-12 - art_sys_124: -2.53479258e-13 - art_sys_125: 6.87533748e-08 - art_sys_126: 1.21589135e-14 - art_sys_127: 7.28832636e-09 - art_sys_128: -3.87306685e-14 - art_sys_129: 1.32560192e-13 - art_sys_130: 6.31463309e-11 - art_sys_131: -1.75171304e-11 - art_sys_132: -1.50306721e-17 - art_sys_133: 1.10418458e-16 - art_sys_134: 1.64287438e-15 - art_sys_135: 9.91610440e-22 - art_sys_136: 2.91937288e-20 - art_sys_137: 4.43098794e-21 - art_sys_138: 9.65284486e-21 - art_sys_139: -4.17565283e-21 - art_sys_140: -1.68976449e-21 - art_sys_141: -2.42059314e-17 - art_sys_142: -5.21657233e-23 - art_sys_143: -1.25269501e-20 - art_sys_144: -2.95114528e-20 - art_sys_145: -1.22411702e-19 - art_sys_146: -6.49494236e-18 - art_sys_147: -3.69290162e-18 - art_sys_148: -1.48724689e-19 - art_sys_149: -8.48275357e-20 - art_sys_150: -1.22083802e-20 - art_sys_151: -7.36020336e-21 - art_sys_152: -1.17294392e-23 - art_sys_153: 3.08649260e-23 - art_sys_154: 7.76749560e-24 - art_sys_155: -7.25577594e-26 - art_sys_156: 3.95137508e-26 - art_sys_157: -2.99057921e-26 - art_sys_158: -2.75229325e-25 - art_sys_159: -1.75096102e-24 - art_sys_160: 4.70469401e-24 - art_sys_161: 6.68232882e-26 - art_sys_162: -9.11832883e-27 - art_sys_163: 1.61390593e-25 - art_sys_164: -7.07074363e-25 - art_sys_165: -2.12410183e-25 - art_sys_166: -7.84482789e-26 - art_sys_167: -8.28531938e-25 - art_sys_168: -5.44319449e-15 - art_sys_169: 6.94323476e-27 - art_sys_170: 1.16103338e-16 - art_sys_171: 9.20272805e-16 - art_sys_172: -8.04707917e-26 - art_sys_173: 2.71090572e-26 - art_sys_174: -4.83614136e-17 - art_sys_175: 0.0 - art_sys_176: -8.58315570e-19 - art_sys_177: 0.0 - art_sys_178: 1.45503689e-20 - art_sys_179: 1.32972907e-24 - art_sys_180: -9.82259294e-26 - art_sys_181: 2.72294118e-31 - art_sys_182: 0.0 - art_sys_183: -4.50352959e-30 - art_sys_184: -8.95203284e-28 - art_sys_185: 7.47385803e-32 + art_sys_49: 6.88272845e-14 + art_sys_50: -8.72204892e-15 + art_sys_51: -3.68045024e-15 + art_sys_52: -3.14927191e-15 + art_sys_53: 2.24288088e-15 + art_sys_54: 3.48128139e-16 + art_sys_55: -1.03218449e-16 + art_sys_56: -1.30960722e-16 + art_sys_57: -1.58345341e-18 + art_sys_58: 2.87019857e-16 + art_sys_59: 4.56030149e-17 + art_sys_60: 9.83274941e-10 + art_sys_61: 1.39067629e-17 + art_sys_62: 9.28188668e-16 + art_sys_63: 2.32626222e-16 + art_sys_64: -4.44419170e-09 + art_sys_65: 8.69989627e-18 + art_sys_66: 7.36909820e-18 + art_sys_67: 1.35105438e-18 + art_sys_68: 2.13460311e-16 + art_sys_69: 3.19918215e-15 + art_sys_70: -2.06119591e-09 + art_sys_71: -3.22256221e-13 + art_sys_72: 1.04005660e-17 + art_sys_73: -1.16154006e-13 + art_sys_74: -6.44963302e-14 + art_sys_75: -9.85874973e-15 + art_sys_76: -7.31257119e-18 + art_sys_77: 1.70618134e-13 + art_sys_78: 4.63331226e-14 + art_sys_79: -7.64364756e-15 + art_sys_80: -1.22939094e-11 + art_sys_81: 7.81266732e-16 + art_sys_82: 1.61735820e-16 + art_sys_83: 9.60170887e-13 + art_sys_84: -8.73290506e-16 + art_sys_85: 2.73412304e-16 + art_sys_86: 9.99488371e-12 + art_sys_87: -1.07799357e-12 + art_sys_88: 2.09508187e-12 + art_sys_89: 7.83504767e-14 + art_sys_90: 4.87074873e-07 + art_sys_91: -1.52324442e-10 + art_sys_92: 4.27083074e-07 + art_sys_93: -8.27353580e-14 + art_sys_94: -4.18785662e-06 + art_sys_95: -7.83576691e-11 + art_sys_96: 3.79239500e-13 + art_sys_97: 3.40095301e-09 + art_sys_98: -2.43866449e-06 + art_sys_99: -2.55256704e-12 + art_sys_100: -8.01377611e-10 + art_sys_101: -1.88815243e-05 + art_sys_102: -2.26105840e-05 + art_sys_103: -6.88690500e-11 + art_sys_104: -9.84480641e-12 + art_sys_105: -4.59433370e-05 + art_sys_106: -2.48569746e-09 + art_sys_107: 3.79698593e-13 + art_sys_108: -2.35763508e-14 + art_sys_109: -1.52554593e-13 + art_sys_110: 1.53027703e-09 + art_sys_111: -9.21744793e-05 + art_sys_112: 2.01055012e-10 + art_sys_113: 1.06492367e-15 + art_sys_114: -1.37231339e-05 + art_sys_115: -3.61724120e-11 + art_sys_116: 1.17636193e-09 + art_sys_117: 1.26948266e-05 + art_sys_118: 1.48091382e-10 + art_sys_119: -2.04955527e-05 + art_sys_120: -2.74202753e-09 + art_sys_121: 1.63735364e-11 + art_sys_122: -1.25984817e-05 + art_sys_123: -6.43929352e-06 + art_sys_124: -1.32322148e-11 + art_sys_125: -1.18669689e-09 + art_sys_126: 3.73419132e-11 + art_sys_127: 2.79188922e-06 + art_sys_128: 5.12204076e-11 + art_sys_129: -9.12308505e-07 + art_sys_130: 7.86924148e-11 + art_sys_131: -2.97033792e-10 + art_sys_132: 3.57738212e-07 + art_sys_133: 8.39297351e-10 + art_sys_134: 1.71001569e-12 + art_sys_135: -7.04833108e-08 + art_sys_136: 1.85195374e-10 + art_sys_137: -1.99755920e-14 + art_sys_138: 5.18088163e-11 + art_sys_139: 7.34813050e-09 + art_sys_140: 1.07897910e-09 + art_sys_141: -1.61257006e-10 + art_sys_142: -1.22407594e-11 + art_sys_143: -7.81452371e-15 + art_sys_144: -1.34997997e-14 + art_sys_145: -1.22966007e-15 + art_sys_146: -0.0 + art_sys_147: -4.45269755e-13 + art_sys_148: -2.31147724e-12 + art_sys_149: -2.31147724e-12 + art_sys_150: 5.94769392e-12 + art_sys_151: 5.94769392e-12 + art_sys_152: -4.69671253e-11 + art_sys_153: 2.04753290e-12 + art_sys_154: 3.35509452e-17 + art_sys_155: 1.22405420e-23 + art_sys_156: -7.91381035e-28 + art_sys_157: -1.14480841e-26 + art_sys_158: 0.0 + art_sys_159: -9.52237075e-15 + art_sys_160: 4.47345588e-16 + art_sys_161: -1.73373373e-15 + art_sys_162: 1.08403833e-16 + art_sys_163: -8.62383354e-14 + art_sys_164: -4.78099679e-14 + art_sys_165: 6.91828719e-15 + art_sys_166: -2.76498489e-23 + art_sys_167: -4.37404280e-23 + art_sys_168: 6.88176652e-25 + art_sys_169: -2.00965304e-24 + art_sys_170: -3.16109414e-24 + art_sys_171: 2.20146611e-24 + art_sys_172: 7.27180650e-25 + art_sys_173: -3.41668471e-25 + art_sys_174: -8.34514276e-26 + art_sys_175: -2.33876717e-27 + art_sys_176: -6.14709827e-27 + art_sys_177: 3.39168529e-26 + art_sys_178: -1.14002628e-26 + art_sys_179: 7.28078621e-27 + art_sys_180: 2.34950678e-27 + art_sys_181: -2.41419377e-28 + art_sys_182: -7.43481158e-28 + art_sys_183: 8.87315584e-30 + art_sys_184: -5.98993882e-30 + art_sys_185: -3.38236996e-30 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -11588,191 +11588,191 @@ bins: RelativeStatFSR-: -1.67481095e-05 luminosity_uncertainty: 3.79901600e-04 uncorrelated_uncertainty: 1.46116000e-04 -- art_sys_1: 3.56567395e-52 - art_sys_2: 2.21185700e-42 - art_sys_3: 1.34826271e-38 +- art_sys_1: 5.65331623e-54 + art_sys_2: 9.41187376e-42 + art_sys_3: 5.39394307e-41 art_sys_4: 6.90639352e-22 - art_sys_5: 8.15011932e-37 - art_sys_6: 2.66618125e-39 - art_sys_7: -3.66497948e-20 - art_sys_8: 1.32739777e-34 - art_sys_9: 1.57529571e-19 - art_sys_10: 1.99072480e-36 - art_sys_11: -2.29177103e-31 - art_sys_12: 9.41233635e-20 - art_sys_13: 1.11410910e-37 - art_sys_14: -5.99799190e-17 - art_sys_15: -8.59744607e-30 - art_sys_16: 2.46695300e-16 - art_sys_17: -4.04168660e-32 - art_sys_18: 9.80157026e-30 - art_sys_19: 9.03172557e-16 - art_sys_20: -8.87455593e-32 - art_sys_21: 3.07718972e-28 + art_sys_5: 1.35221260e-35 + art_sys_6: -6.40736426e-39 + art_sys_7: 3.66497948e-20 + art_sys_8: 4.74893819e-35 + art_sys_9: -1.57529571e-19 + art_sys_10: 1.71919474e-36 + art_sys_11: -3.50252181e-32 + art_sys_12: 9.41233636e-20 + art_sys_13: 1.40092394e-33 + art_sys_14: 5.99799190e-17 + art_sys_15: 3.33302090e-30 + art_sys_16: -2.46695300e-16 + art_sys_17: 2.08435919e-32 + art_sys_18: -5.50407300e-29 + art_sys_19: -9.03172557e-16 + art_sys_20: 8.38998343e-31 + art_sys_21: -2.42523605e-28 art_sys_22: 1.87438485e-15 - art_sys_23: 1.15949728e-30 - art_sys_24: 2.48032733e-27 - art_sys_25: 6.19423384e-15 - art_sys_26: 1.35019917e-14 - art_sys_27: 4.35125053e-16 - art_sys_28: -1.58664577e-16 - art_sys_29: 6.70829065e-16 - art_sys_30: 1.10289971e-13 - art_sys_31: 2.00311262e-14 - art_sys_32: -4.34314823e-17 - art_sys_33: -1.32083898e-16 - art_sys_34: 5.22364731e-20 - art_sys_35: -1.13720262e-23 - art_sys_36: 3.46454257e-17 - art_sys_37: 1.00274002e-12 - art_sys_38: 5.10857411e-17 - art_sys_39: -1.84542196e-22 - art_sys_40: -1.20983913e-17 - art_sys_41: 4.15949498e-12 - art_sys_42: 1.61026865e-11 - art_sys_43: 3.63348892e-17 - art_sys_44: 4.27067243e-16 - art_sys_45: -5.72310816e-16 - art_sys_46: 2.16439564e-21 - art_sys_47: -4.52998468e-19 + art_sys_23: 1.61380712e-30 + art_sys_24: -4.21258535e-27 + art_sys_25: -2.40853095e-15 + art_sys_26: 1.29772867e-14 + art_sys_27: 4.22537720e-15 + art_sys_28: 1.10289971e-13 + art_sys_29: -2.00311214e-14 + art_sys_30: 1.27894697e-15 + art_sys_31: -4.51427139e-17 + art_sys_32: -1.92523699e-16 + art_sys_33: -5.68673479e-17 + art_sys_34: -6.80076142e-21 + art_sys_35: 4.34534993e-24 + art_sys_36: 1.62801370e-18 + art_sys_37: 1.00272964e-12 + art_sys_38: 2.75082110e-17 + art_sys_39: 7.45327143e-23 + art_sys_40: -4.04197935e-18 + art_sys_41: -4.15949771e-12 + art_sys_42: -1.61026863e-11 + art_sys_43: -2.50441813e-17 + art_sys_44: 4.43227282e-16 + art_sys_45: -5.80481515e-16 + art_sys_46: -2.39034953e-20 + art_sys_47: -5.31675415e-19 art_sys_48: -3.35542379e-11 - art_sys_49: 3.00038680e-16 - art_sys_50: -4.08834117e-19 - art_sys_51: -9.13181334e-14 - art_sys_52: -1.79504568e-14 - art_sys_53: 1.28408551e-15 - art_sys_54: 3.01020759e-10 - art_sys_55: -4.06295647e-17 - art_sys_56: -2.61015753e-17 - art_sys_57: 1.38045106e-10 - art_sys_58: 4.38338380e-18 - art_sys_59: -1.06938537e-14 - art_sys_60: 6.63999051e-15 - art_sys_61: 3.03918147e-16 - art_sys_62: -1.31825710e-15 - art_sys_63: -8.09730663e-17 - art_sys_64: -3.29010096e-16 - art_sys_65: 9.46947652e-17 - art_sys_66: 1.19138310e-16 - art_sys_67: 2.90517126e-17 - art_sys_68: -2.92432632e-15 - art_sys_69: 8.78642861e-15 - art_sys_70: -2.00124346e-09 - art_sys_71: -1.11412820e-13 - art_sys_72: -2.83804539e-14 - art_sys_73: -1.00342529e-16 - art_sys_74: 4.01223055e-15 - art_sys_75: 6.97035661e-18 - art_sys_76: 1.52665599e-17 - art_sys_77: -8.52028328e-20 - art_sys_78: -3.33721500e-12 - art_sys_79: -5.59251701e-08 - art_sys_80: -1.30025233e-18 - art_sys_81: -7.91689403e-19 - art_sys_82: -1.80557336e-19 - art_sys_83: 3.42855383e-12 - art_sys_84: 4.38270752e-07 - art_sys_85: 9.16244933e-15 - art_sys_86: 6.96443142e-11 - art_sys_87: -2.00801051e-08 - art_sys_88: -5.95680488e-19 - art_sys_89: -1.05854820e-09 - art_sys_90: 3.34911471e-06 - art_sys_91: -1.26910208e-14 - art_sys_92: -1.91827494e-06 - art_sys_93: 2.28916602e-09 - art_sys_94: 4.79304019e-10 - art_sys_95: -1.40394023e-05 - art_sys_96: 8.14608346e-15 - art_sys_97: -1.77802499e-05 - art_sys_98: 8.09158838e-10 - art_sys_99: 6.88821291e-12 - art_sys_100: -2.38505746e-19 - art_sys_101: -1.04472436e-20 - art_sys_102: -3.32925270e-05 - art_sys_103: -3.94626123e-11 - art_sys_104: -7.04431615e-05 - art_sys_105: -4.90896278e-12 - art_sys_106: -6.95972252e-10 - art_sys_107: 6.16754538e-06 - art_sys_108: 2.34484072e-12 - art_sys_109: 1.13932995e-05 - art_sys_110: 4.05302005e-09 - art_sys_111: -7.70825005e-12 - art_sys_112: -1.62048754e-05 - art_sys_113: 9.57102175e-06 - art_sys_114: -4.77203324e-06 - art_sys_115: 6.81899991e-11 - art_sys_116: 1.72285313e-06 - art_sys_117: 2.60893079e-14 - art_sys_118: -6.93357996e-07 - art_sys_119: -1.63441727e-12 - art_sys_120: -6.08325862e-12 - art_sys_121: 1.16823870e-12 - art_sys_122: -2.84502893e-12 - art_sys_123: 1.01422081e-11 - art_sys_124: 4.57267139e-13 - art_sys_125: -1.44603990e-07 - art_sys_126: -1.31361167e-13 - art_sys_127: -1.59148070e-08 - art_sys_128: 3.90261660e-14 - art_sys_129: -2.89288890e-13 - art_sys_130: -1.22990544e-10 - art_sys_131: 3.24346692e-11 - art_sys_132: 9.99641943e-19 - art_sys_133: -1.52225067e-16 - art_sys_134: 9.72816632e-16 - art_sys_135: 5.87525241e-22 - art_sys_136: -4.53938682e-20 - art_sys_137: -7.23415269e-21 - art_sys_138: -1.57577860e-20 - art_sys_139: -3.30985505e-21 - art_sys_140: -1.65076557e-21 - art_sys_141: 3.53377854e-17 - art_sys_142: -1.65411325e-22 - art_sys_143: 1.60019807e-20 - art_sys_144: -6.43626191e-19 - art_sys_145: -6.68849168e-19 - art_sys_146: 8.00383415e-18 - art_sys_147: 5.79910844e-19 - art_sys_148: -8.01205832e-19 - art_sys_149: 1.91546731e-19 - art_sys_150: -2.09248412e-19 - art_sys_151: 1.71065235e-20 - art_sys_152: 1.23175255e-22 - art_sys_153: -1.39535218e-23 - art_sys_154: -6.31880271e-24 - art_sys_155: 2.41521104e-25 - art_sys_156: 1.93792028e-25 - art_sys_157: -1.54929526e-27 - art_sys_158: 5.74999686e-25 - art_sys_159: 3.66246587e-24 - art_sys_160: -9.81453752e-24 - art_sys_161: -1.39820512e-25 - art_sys_162: 2.21079184e-26 - art_sys_163: -3.21861014e-25 - art_sys_164: 1.33013593e-24 - art_sys_165: 4.16214164e-25 - art_sys_166: 1.49083410e-25 - art_sys_167: 1.30749578e-24 - art_sys_168: 1.12236751e-14 - art_sys_169: -2.57686636e-26 - art_sys_170: -1.84660092e-16 - art_sys_171: -1.34797451e-15 - art_sys_172: 1.54837516e-25 - art_sys_173: -4.90823290e-26 - art_sys_174: 5.20740619e-17 - art_sys_175: 0.0 - art_sys_176: 1.14559388e-18 - art_sys_177: 0.0 - art_sys_178: -2.26912306e-20 - art_sys_179: -5.62806420e-25 - art_sys_180: 6.41715864e-27 - art_sys_181: 3.78738772e-31 - art_sys_182: 0.0 - art_sys_183: 1.19298016e-29 - art_sys_184: 1.72472243e-27 - art_sys_185: -1.01374603e-31 + art_sys_49: -6.92239782e-14 + art_sys_50: 1.10629760e-14 + art_sys_51: -1.70505429e-14 + art_sys_52: 2.78468349e-16 + art_sys_53: 2.69677658e-15 + art_sys_54: 1.43723345e-15 + art_sys_55: -2.70814421e-16 + art_sys_56: -5.26321202e-16 + art_sys_57: -7.98594592e-20 + art_sys_58: -1.60714709e-16 + art_sys_59: -3.48575343e-17 + art_sys_60: 3.01020753e-10 + art_sys_61: 4.55531407e-18 + art_sys_62: 3.16021267e-17 + art_sys_63: 8.16860781e-16 + art_sys_64: -1.38045104e-10 + art_sys_65: -3.75440706e-17 + art_sys_66: 2.87435453e-17 + art_sys_67: -9.08701921e-19 + art_sys_68: 3.11934201e-16 + art_sys_69: 3.66868536e-15 + art_sys_70: -2.00124990e-09 + art_sys_71: 2.45719562e-14 + art_sys_72: 2.27920255e-17 + art_sys_73: 5.07368392e-15 + art_sys_74: -1.25220147e-14 + art_sys_75: 1.77887603e-14 + art_sys_76: -3.92393421e-18 + art_sys_77: 6.33831685e-14 + art_sys_78: -2.19003279e-13 + art_sys_79: 1.82385846e-16 + art_sys_80: -6.59937383e-12 + art_sys_81: -1.28102274e-15 + art_sys_82: -1.16403506e-15 + art_sys_83: 3.41292834e-12 + art_sys_84: 4.01042453e-16 + art_sys_85: 5.71735459e-16 + art_sys_86: -1.40317105e-11 + art_sys_87: -1.66295275e-12 + art_sys_88: -3.04712054e-12 + art_sys_89: -1.37129299e-13 + art_sys_90: -5.59244416e-08 + art_sys_91: -9.89396715e-11 + art_sys_92: 4.38261827e-07 + art_sys_93: -7.45309799e-14 + art_sys_94: -2.00444538e-08 + art_sys_95: 3.39240911e-10 + art_sys_96: -6.43027020e-13 + art_sys_97: -3.26548180e-09 + art_sys_98: -3.34937280e-06 + art_sys_99: -3.50520599e-14 + art_sys_100: -4.93768242e-11 + art_sys_101: 1.91947527e-06 + art_sys_102: -1.40388189e-05 + art_sys_103: 1.87562474e-10 + art_sys_104: -1.48082225e-12 + art_sys_105: 1.77808720e-05 + art_sys_106: 1.69176282e-09 + art_sys_107: -7.49763553e-13 + art_sys_108: 4.66310649e-14 + art_sys_109: 3.09440846e-13 + art_sys_110: -2.36139896e-09 + art_sys_111: -3.32912005e-05 + art_sys_112: -4.28108480e-10 + art_sys_113: -2.15765180e-15 + art_sys_114: -7.04399699e-05 + art_sys_115: 5.69682716e-11 + art_sys_116: -1.61225206e-09 + art_sys_117: -6.17027124e-06 + art_sys_118: -2.49575031e-10 + art_sys_119: 1.13922121e-05 + art_sys_120: 4.12650834e-09 + art_sys_121: -3.20864795e-11 + art_sys_122: 1.62127883e-05 + art_sys_123: 9.56514666e-06 + art_sys_124: 2.61269037e-11 + art_sys_125: 2.06666555e-09 + art_sys_126: -7.35894755e-11 + art_sys_127: -4.77055805e-06 + art_sys_128: -1.05209124e-10 + art_sys_129: 1.71215356e-06 + art_sys_130: -1.60542590e-10 + art_sys_131: 5.92378181e-10 + art_sys_132: -7.06072706e-07 + art_sys_133: -1.65718480e-09 + art_sys_134: -3.37505289e-12 + art_sys_135: 1.47775236e-07 + art_sys_136: -3.81192042e-10 + art_sys_137: 4.06839778e-14 + art_sys_138: 1.75366869e-11 + art_sys_139: -1.59235599e-08 + art_sys_140: -2.33491119e-09 + art_sys_141: 3.46109074e-10 + art_sys_142: 2.54045782e-11 + art_sys_143: 1.69945488e-14 + art_sys_144: 2.91121678e-14 + art_sys_145: 3.09864830e-15 + art_sys_146: 0.0 + art_sys_147: 8.95659462e-13 + art_sys_148: 5.12517545e-12 + art_sys_149: 5.12517545e-12 + art_sys_150: -1.38373576e-11 + art_sys_151: -1.38373576e-11 + art_sys_152: 8.46996511e-11 + art_sys_153: -3.25906959e-12 + art_sys_154: -4.56076073e-16 + art_sys_155: -2.12514471e-23 + art_sys_156: 1.65003263e-27 + art_sys_157: 1.34794547e-26 + art_sys_158: -0.0 + art_sys_159: 1.92644181e-14 + art_sys_160: -7.73138016e-16 + art_sys_161: 4.08508940e-15 + art_sys_162: -2.02149357e-16 + art_sys_163: 1.75066968e-13 + art_sys_164: 9.58103805e-14 + art_sys_165: -1.35813621e-14 + art_sys_166: 5.23412647e-23 + art_sys_167: 8.37402382e-23 + art_sys_168: 1.72616524e-26 + art_sys_169: 3.77021325e-24 + art_sys_170: 7.09210930e-24 + art_sys_171: -4.48611424e-24 + art_sys_172: -1.50990443e-24 + art_sys_173: 6.96819611e-25 + art_sys_174: 1.67418727e-25 + art_sys_175: 4.62904745e-27 + art_sys_176: 1.31422776e-26 + art_sys_177: -6.95362715e-26 + art_sys_178: 2.31544466e-26 + art_sys_179: -1.36273863e-26 + art_sys_180: -4.85850275e-27 + art_sys_181: 4.91901429e-28 + art_sys_182: 1.33309858e-27 + art_sys_183: -2.06917558e-29 + art_sys_184: 1.09965857e-29 + art_sys_185: 6.68930609e-30 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -11879,191 +11879,191 @@ bins: RelativeStatFSR-: -1.06082556e-05 luminosity_uncertainty: 2.27175780e-04 uncorrelated_uncertainty: 8.73753000e-05 -- art_sys_1: 1.54879494e-53 - art_sys_2: 1.21964421e-43 - art_sys_3: 5.85607607e-40 +- art_sys_1: 2.35689284e-55 + art_sys_2: 4.08797678e-43 + art_sys_3: 3.47472153e-42 art_sys_4: 2.99973924e-23 - art_sys_5: 5.50334494e-38 - art_sys_6: 3.32228169e-40 - art_sys_7: -2.40916530e-21 - art_sys_8: 9.35452703e-36 - art_sys_9: 1.00047901e-20 - art_sys_10: 1.25674388e-37 - art_sys_11: -1.68986799e-32 + art_sys_5: 8.82183525e-37 + art_sys_6: -2.72862236e-40 + art_sys_7: 2.40916530e-21 + art_sys_8: 3.01338800e-36 + art_sys_9: -1.00047901e-20 + art_sys_10: 1.09566019e-37 + art_sys_11: -2.48508165e-33 art_sys_12: 1.06215860e-20 - art_sys_13: -5.19783218e-38 - art_sys_14: -4.91334680e-18 - art_sys_15: -2.53158267e-32 - art_sys_16: 1.95142099e-17 - art_sys_17: -3.19104612e-33 - art_sys_18: 4.89542288e-31 - art_sys_19: 7.24015382e-17 - art_sys_20: -6.98200146e-33 - art_sys_21: 1.25626810e-29 + art_sys_13: 1.14353567e-34 + art_sys_14: 4.91334680e-18 + art_sys_15: -1.77595463e-31 + art_sys_16: -1.95142099e-17 + art_sys_17: 1.69717661e-33 + art_sys_18: -2.81397262e-30 + art_sys_19: -7.24015382e-17 + art_sys_20: 6.60018916e-32 + art_sys_21: 5.96799438e-29 art_sys_22: 1.47361559e-16 - art_sys_23: 8.25605616e-32 - art_sys_24: 5.96794557e-28 - art_sys_25: -1.61035281e-14 - art_sys_26: -1.64425714e-14 - art_sys_27: -5.06180143e-15 - art_sys_28: -1.47553503e-16 - art_sys_29: 4.24332684e-17 - art_sys_30: 8.58978794e-15 - art_sys_31: 5.93185973e-16 - art_sys_32: -1.42805702e-16 - art_sys_33: -3.97274583e-17 - art_sys_34: -1.02289178e-21 - art_sys_35: -9.62675417e-25 - art_sys_36: -1.14201631e-18 - art_sys_37: 8.50200561e-14 - art_sys_38: -1.19288755e-17 - art_sys_39: -8.08654581e-24 - art_sys_40: -1.35039428e-17 - art_sys_41: -8.99657933e-14 - art_sys_42: 3.06991606e-12 - art_sys_43: -2.28089348e-16 - art_sys_44: -2.81028969e-16 - art_sys_45: -2.23375101e-16 - art_sys_46: 3.53514777e-22 - art_sys_47: 5.57538525e-19 - art_sys_48: -5.92425721e-12 - art_sys_49: 1.03289247e-15 - art_sys_50: -1.27537072e-19 - art_sys_51: -4.64022383e-14 - art_sys_52: 2.78681677e-16 - art_sys_53: -1.07317941e-15 - art_sys_54: 8.32957595e-11 - art_sys_55: -1.12590749e-17 - art_sys_56: -6.44957186e-18 - art_sys_57: 1.99506889e-10 - art_sys_58: 8.51684737e-20 - art_sys_59: -1.18917467e-14 - art_sys_60: -1.68576010e-15 - art_sys_61: 9.88959639e-16 - art_sys_62: -1.89962970e-15 - art_sys_63: 4.22972601e-16 - art_sys_64: 4.05666278e-17 - art_sys_65: 5.30186617e-16 - art_sys_66: -9.59294413e-17 - art_sys_67: 4.70321757e-17 - art_sys_68: -3.60304394e-15 - art_sys_69: -1.11508851e-14 - art_sys_70: 3.83732709e-11 - art_sys_71: -8.27789796e-14 - art_sys_72: 1.72778004e-14 - art_sys_73: -2.81118839e-18 - art_sys_74: 6.38310763e-15 - art_sys_75: -1.62011351e-17 - art_sys_76: -8.42817280e-18 - art_sys_77: -9.54996386e-18 - art_sys_78: -1.51564679e-12 - art_sys_79: -4.16527709e-08 - art_sys_80: 3.45543752e-19 - art_sys_81: 3.75998749e-19 - art_sys_82: -1.27849853e-18 - art_sys_83: 3.28911024e-11 - art_sys_84: 2.60842023e-08 - art_sys_85: 8.47869184e-15 - art_sys_86: 7.91180715e-11 - art_sys_87: 3.80460706e-07 - art_sys_88: -1.22637106e-18 - art_sys_89: -4.05353816e-10 - art_sys_90: 1.48203094e-07 - art_sys_91: -9.64349802e-15 - art_sys_92: -2.63260391e-06 - art_sys_93: -3.62653492e-09 - art_sys_94: -6.94924890e-10 - art_sys_95: 1.73226169e-06 - art_sys_96: 2.93588548e-15 - art_sys_97: -1.13176801e-05 - art_sys_98: -1.80463846e-10 - art_sys_99: 8.78547839e-13 - art_sys_100: 3.98494245e-19 - art_sys_101: -1.54069993e-19 - art_sys_102: 1.61180500e-05 - art_sys_103: 5.36802807e-11 - art_sys_104: -2.98527067e-05 - art_sys_105: 1.02448693e-11 - art_sys_106: 3.38743840e-10 - art_sys_107: 5.69199641e-05 - art_sys_108: -3.18861824e-12 - art_sys_109: -4.54619249e-06 - art_sys_110: -3.97493671e-09 - art_sys_111: 1.30257752e-11 - art_sys_112: 8.75564484e-06 - art_sys_113: -1.14328926e-05 - art_sys_114: 6.56740084e-06 - art_sys_115: -7.91579132e-11 - art_sys_116: -2.78381369e-06 - art_sys_117: -7.17776816e-15 - art_sys_118: 1.20992314e-06 - art_sys_119: -2.97265008e-14 - art_sys_120: 7.74113504e-12 - art_sys_121: -1.38712625e-12 - art_sys_122: 4.81028574e-12 - art_sys_123: -1.50396222e-11 - art_sys_124: -7.16376246e-13 - art_sys_125: 2.74506458e-07 - art_sys_126: 1.82791178e-13 - art_sys_127: 3.14789198e-08 - art_sys_128: 1.49495278e-14 - art_sys_129: 5.83029583e-13 - art_sys_130: 2.24643415e-10 - art_sys_131: -5.53223047e-11 - art_sys_132: 3.58207606e-17 - art_sys_133: 1.91214493e-16 - art_sys_134: -1.09917890e-14 - art_sys_135: -6.71631283e-21 - art_sys_136: 5.29483445e-20 - art_sys_137: 5.73626332e-21 - art_sys_138: 1.63274323e-20 - art_sys_139: 2.34219346e-21 - art_sys_140: 2.89581252e-22 - art_sys_141: -4.53810404e-17 - art_sys_142: -1.67208370e-22 - art_sys_143: -1.41922294e-20 - art_sys_144: 9.95297880e-19 - art_sys_145: -1.64482304e-18 - art_sys_146: -6.89906822e-18 - art_sys_147: -1.03861467e-18 - art_sys_148: 1.71777063e-18 - art_sys_149: -2.43146593e-19 - art_sys_150: 1.85734577e-19 - art_sys_151: 7.07206975e-21 - art_sys_152: -1.41856964e-22 - art_sys_153: 6.39598183e-23 - art_sys_154: 8.06973985e-24 - art_sys_155: 7.62876809e-25 - art_sys_156: -3.90510005e-25 - art_sys_157: 1.06830881e-26 - art_sys_158: -1.09745626e-24 - art_sys_159: -6.90373900e-24 - art_sys_160: 1.84468811e-23 - art_sys_161: 2.60235181e-25 - art_sys_162: -4.07203719e-26 - art_sys_163: 6.28455390e-25 - art_sys_164: -2.60073105e-24 - art_sys_165: -8.18354766e-25 - art_sys_166: -2.79920933e-25 - art_sys_167: -2.40209412e-24 - art_sys_168: -2.01233685e-14 - art_sys_169: 4.74091664e-26 - art_sys_170: 2.82054807e-16 - art_sys_171: 1.87246465e-15 - art_sys_172: -2.57216422e-25 - art_sys_173: 7.36413464e-26 - art_sys_174: -3.89327179e-17 - art_sys_175: 0.0 - art_sys_176: -1.39637331e-18 - art_sys_177: 0.0 - art_sys_178: 3.40146332e-20 - art_sys_179: -1.72943464e-24 - art_sys_180: 2.34370001e-25 - art_sys_181: -1.66890113e-30 - art_sys_182: 0.0 - art_sys_183: -2.78214632e-29 - art_sys_184: -3.10624598e-27 - art_sys_185: 8.22821058e-32 + art_sys_23: 1.18771575e-31 + art_sys_24: -3.40648719e-27 + art_sys_25: -4.00286627e-15 + art_sys_26: 3.00431639e-15 + art_sys_27: 1.67813961e-15 + art_sys_28: 8.58978794e-15 + art_sys_29: -5.93186067e-16 + art_sys_30: 2.04383100e-15 + art_sys_31: 1.26488741e-16 + art_sys_32: -6.86074377e-17 + art_sys_33: 6.55968489e-17 + art_sys_34: 5.80489492e-22 + art_sys_35: 3.67690222e-25 + art_sys_36: 7.26946357e-19 + art_sys_37: 8.50212744e-14 + art_sys_38: -6.06930660e-17 + art_sys_39: 3.47476642e-24 + art_sys_40: 8.82415639e-18 + art_sys_41: 8.99646940e-14 + art_sys_42: -3.06991436e-12 + art_sys_43: 6.87941022e-17 + art_sys_44: 1.20750727e-17 + art_sys_45: -1.42917316e-17 + art_sys_46: -4.53605418e-21 + art_sys_47: 1.94092026e-19 + art_sys_48: -5.92425726e-12 + art_sys_49: -3.14947245e-14 + art_sys_50: 3.31402367e-14 + art_sys_51: -1.33736761e-14 + art_sys_52: -5.66630892e-16 + art_sys_53: -1.30002801e-15 + art_sys_54: -7.65450577e-17 + art_sys_55: -7.95524372e-18 + art_sys_56: -4.43570968e-19 + art_sys_57: -3.90951717e-19 + art_sys_58: 3.85836882e-16 + art_sys_59: 1.81972749e-16 + art_sys_60: 8.32957490e-11 + art_sys_61: 1.26033829e-18 + art_sys_62: 4.12701165e-17 + art_sys_63: -3.84861344e-17 + art_sys_64: -1.99506874e-10 + art_sys_65: -4.10802479e-17 + art_sys_66: -2.75142997e-17 + art_sys_67: 1.48975982e-19 + art_sys_68: 1.13117017e-17 + art_sys_69: 2.20225061e-16 + art_sys_70: 3.83677653e-11 + art_sys_71: 2.61453092e-14 + art_sys_72: 3.53450425e-19 + art_sys_73: 1.58914924e-14 + art_sys_74: 2.07582090e-14 + art_sys_75: 1.70922233e-14 + art_sys_76: -9.43719471e-19 + art_sys_77: -6.24782058e-15 + art_sys_78: -2.76044417e-14 + art_sys_79: 3.48892062e-15 + art_sys_80: 1.04658805e-12 + art_sys_81: 1.10971873e-15 + art_sys_82: -5.14483292e-17 + art_sys_83: 1.73090449e-12 + art_sys_84: -6.38065080e-16 + art_sys_85: 9.43144079e-17 + art_sys_86: 1.25980196e-11 + art_sys_87: -1.79870661e-13 + art_sys_88: 3.11478781e-12 + art_sys_89: 1.96908132e-13 + art_sys_90: -4.16525459e-08 + art_sys_91: 1.60137522e-11 + art_sys_92: 2.60891840e-08 + art_sys_93: -3.76632304e-15 + art_sys_94: 3.80474514e-07 + art_sys_95: 2.84836141e-10 + art_sys_96: 8.77577879e-13 + art_sys_97: -5.64407237e-09 + art_sys_98: -1.48159549e-07 + art_sys_99: 2.28417400e-13 + art_sys_100: 2.12586433e-09 + art_sys_101: 2.63217944e-06 + art_sys_102: 1.73118094e-06 + art_sys_103: -2.00841770e-10 + art_sys_104: 6.45190116e-13 + art_sys_105: 1.13198717e-05 + art_sys_106: 3.39668096e-09 + art_sys_107: 1.30741415e-12 + art_sys_108: -8.11425520e-14 + art_sys_109: -5.21527242e-13 + art_sys_110: 2.42935810e-09 + art_sys_111: 1.61185517e-05 + art_sys_112: 7.24848004e-10 + art_sys_113: 3.61319652e-15 + art_sys_114: -2.98453609e-05 + art_sys_115: -6.49362544e-11 + art_sys_116: 4.94155321e-10 + art_sys_117: -5.69164764e-05 + art_sys_118: 3.36641963e-10 + art_sys_119: -4.56213306e-06 + art_sys_120: -5.07190804e-09 + art_sys_121: 5.55617120e-11 + art_sys_122: -8.76165214e-06 + art_sys_123: -1.14218421e-05 + art_sys_124: -4.55821739e-11 + art_sys_125: -2.88707372e-09 + art_sys_126: 1.27762440e-10 + art_sys_127: 6.56661974e-06 + art_sys_128: 1.92997972e-10 + art_sys_129: -2.76452697e-06 + art_sys_130: 2.92529564e-10 + art_sys_131: -1.04228684e-09 + art_sys_132: 1.23159069e-06 + art_sys_133: 2.89297658e-09 + art_sys_134: 5.88648097e-12 + art_sys_135: -2.79570737e-07 + art_sys_136: 7.04918076e-10 + art_sys_137: -7.41112927e-14 + art_sys_138: -5.45495791e-12 + art_sys_139: 3.12716560e-08 + art_sys_140: 4.57766295e-09 + art_sys_141: -6.73531269e-10 + art_sys_142: -4.53305335e-11 + art_sys_143: -3.34947484e-14 + art_sys_144: -5.69604670e-14 + art_sys_145: -8.70879557e-15 + art_sys_146: -0.0 + art_sys_147: -1.84296131e-12 + art_sys_148: -7.30515921e-12 + art_sys_149: -7.30515921e-12 + art_sys_150: 2.88868214e-11 + art_sys_151: 2.88868214e-11 + art_sys_152: -1.35946357e-10 + art_sys_153: 4.41214019e-12 + art_sys_154: 1.69720574e-15 + art_sys_155: 3.25137307e-23 + art_sys_156: -3.10741660e-27 + art_sys_157: -8.26307407e-27 + art_sys_158: 0.0 + art_sys_159: -3.06271863e-14 + art_sys_160: 6.39211667e-16 + art_sys_161: -8.89148542e-15 + art_sys_162: 2.86385554e-16 + art_sys_163: -3.21620123e-13 + art_sys_164: -1.66958256e-13 + art_sys_165: 2.34614489e-14 + art_sys_166: -6.98696575e-23 + art_sys_167: -1.25019508e-22 + art_sys_168: -6.60500253e-24 + art_sys_169: -7.81336245e-24 + art_sys_170: -1.07276976e-23 + art_sys_171: 7.64043655e-24 + art_sys_172: 2.69177094e-24 + art_sys_173: -1.18900352e-24 + art_sys_174: -2.72449249e-25 + art_sys_175: -6.91843944e-27 + art_sys_176: -2.51756277e-26 + art_sys_177: 1.20174128e-25 + art_sys_178: -3.90008033e-26 + art_sys_179: 2.23735597e-26 + art_sys_180: 8.14790283e-27 + art_sys_181: -8.33659345e-28 + art_sys_182: -1.42225177e-27 + art_sys_183: 4.27770837e-29 + art_sys_184: -1.70009584e-29 + art_sys_185: -1.16570143e-29 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -12170,191 +12170,191 @@ bins: RelativeStatFSR-: -6.57304439e-06 luminosity_uncertainty: 1.32941640e-04 uncorrelated_uncertainty: 5.11314000e-05 -- art_sys_1: 2.00979490e-55 - art_sys_2: -4.41981463e-46 - art_sys_3: 7.59936248e-42 +- art_sys_1: 2.13972264e-57 + art_sys_2: 5.30493130e-45 + art_sys_3: 1.58224338e-43 art_sys_4: 3.89272708e-25 - art_sys_5: 2.63448512e-39 - art_sys_6: 7.67140431e-42 - art_sys_7: -9.78770047e-23 - art_sys_8: 3.66593164e-37 - art_sys_9: 3.35433203e-22 - art_sys_10: 4.05412709e-39 - art_sys_11: -9.24002047e-34 + art_sys_5: 3.31307589e-38 + art_sys_6: -3.09351078e-42 + art_sys_7: 9.78770047e-23 + art_sys_8: 1.04505891e-37 + art_sys_9: -3.35433203e-22 + art_sys_10: 3.73694635e-39 + art_sys_11: -1.34040818e-34 art_sys_12: 1.41766220e-21 - art_sys_13: -2.04481346e-38 - art_sys_14: -3.36523380e-19 - art_sys_15: 8.42120009e-32 - art_sys_16: 1.44616198e-18 - art_sys_17: -2.35797410e-34 - art_sys_18: -1.52236442e-31 - art_sys_19: 5.16005187e-18 - art_sys_20: -5.04155029e-34 - art_sys_21: 2.50992107e-30 + art_sys_13: 7.86850779e-36 + art_sys_14: 3.36523380e-19 + art_sys_15: -9.05790198e-32 + art_sys_16: -1.44616198e-18 + art_sys_17: 1.14357555e-34 + art_sys_18: -8.15903140e-31 + art_sys_19: -5.16005187e-18 + art_sys_20: 4.73633792e-33 + art_sys_21: 4.02274374e-30 art_sys_22: 1.05828150e-17 - art_sys_23: 4.78826116e-33 - art_sys_24: 3.69374860e-29 - art_sys_25: 1.43397129e-16 - art_sys_26: 7.71935858e-15 - art_sys_27: 4.64816111e-15 - art_sys_28: 1.31301626e-16 - art_sys_29: -2.74068771e-16 - art_sys_30: 6.04304873e-16 - art_sys_31: 6.27652824e-16 - art_sys_32: 2.20051818e-17 - art_sys_33: 1.39805420e-16 - art_sys_34: -1.02328688e-23 - art_sys_35: -1.27511364e-25 - art_sys_36: -1.77005299e-20 - art_sys_37: 1.13987571e-14 - art_sys_38: -6.02165828e-17 - art_sys_39: -7.80531277e-25 - art_sys_40: -3.72967252e-19 - art_sys_41: -3.95026499e-14 - art_sys_42: 6.34144670e-13 - art_sys_43: -4.86771224e-17 - art_sys_44: -2.05313933e-16 - art_sys_45: -1.28698149e-16 - art_sys_46: 1.09985095e-22 - art_sys_47: 6.43048299e-20 - art_sys_48: -2.15581928e-12 - art_sys_49: 9.91678482e-17 - art_sys_50: 4.46899307e-20 - art_sys_51: -3.14781714e-14 - art_sys_52: 4.72572245e-15 - art_sys_53: -4.50017745e-16 - art_sys_54: 8.06837714e-12 - art_sys_55: -1.09097431e-18 - art_sys_56: -6.53273886e-19 - art_sys_57: 6.21976082e-11 - art_sys_58: -1.60842775e-21 - art_sys_59: -1.92051412e-15 - art_sys_60: 1.54147534e-15 - art_sys_61: 4.20335708e-16 - art_sys_62: 2.58018393e-15 - art_sys_63: -1.50415295e-16 - art_sys_64: 5.65061278e-16 - art_sys_65: -1.95025536e-17 - art_sys_66: -4.61507560e-17 - art_sys_67: 3.61807277e-18 - art_sys_68: -3.59501430e-15 - art_sys_69: -3.60332986e-15 - art_sys_70: 1.20509934e-10 - art_sys_71: -2.93095675e-15 - art_sys_72: 5.60415662e-17 - art_sys_73: -3.82933791e-20 - art_sys_74: 7.93836612e-16 - art_sys_75: 3.50346079e-17 - art_sys_76: -5.09372404e-18 - art_sys_77: 9.32560797e-19 - art_sys_78: 1.43041060e-13 - art_sys_79: -1.52064324e-09 - art_sys_80: -7.47295553e-18 - art_sys_81: 1.91438405e-18 - art_sys_82: -1.49486902e-18 - art_sys_83: 3.74622603e-12 - art_sys_84: -2.60077480e-08 - art_sys_85: 3.17327577e-16 - art_sys_86: -9.95746586e-13 - art_sys_87: 4.82953674e-08 - art_sys_88: -4.39864183e-19 - art_sys_89: 1.26637736e-10 - art_sys_90: -2.90435283e-07 - art_sys_91: -4.15634679e-16 - art_sys_92: -9.30090355e-08 - art_sys_93: -7.91064849e-09 - art_sys_94: 1.13391530e-09 - art_sys_95: 1.96207274e-06 - art_sys_96: -1.43035158e-16 - art_sys_97: 1.34858603e-06 - art_sys_98: -1.28037638e-10 - art_sys_99: -2.38831203e-11 - art_sys_100: 1.67073321e-19 - art_sys_101: 2.45630593e-20 - art_sys_102: 8.60597462e-06 - art_sys_103: -7.04679054e-11 - art_sys_104: 1.07831815e-05 - art_sys_105: -1.96096479e-11 - art_sys_106: -1.12316693e-09 - art_sys_107: 2.33886880e-05 - art_sys_108: 6.47412594e-12 - art_sys_109: -4.23723675e-05 - art_sys_110: 2.95568255e-09 - art_sys_111: -1.85571099e-11 - art_sys_112: -5.91868582e-06 - art_sys_113: 7.86990303e-06 - art_sys_114: -8.99176165e-06 - art_sys_115: 6.61001065e-11 - art_sys_116: 4.40470232e-06 - art_sys_117: -4.22842286e-15 - art_sys_118: -2.17321352e-06 - art_sys_119: 6.46158435e-14 - art_sys_120: -6.04609927e-12 - art_sys_121: 1.00731328e-12 - art_sys_122: -8.12365778e-12 - art_sys_123: 1.70874015e-11 - art_sys_124: 9.98419555e-13 - art_sys_125: -5.54106372e-07 - art_sys_126: -6.05586744e-13 - art_sys_127: -6.75834498e-08 - art_sys_128: -1.48491694e-13 - art_sys_129: -1.30635526e-12 - art_sys_130: -4.28490227e-10 - art_sys_131: 9.76448928e-11 - art_sys_132: -1.83517842e-16 - art_sys_133: -1.94204479e-16 - art_sys_134: 2.61858209e-14 - art_sys_135: 1.84674833e-20 - art_sys_136: -5.09377141e-20 - art_sys_137: 2.02785402e-21 - art_sys_138: -1.41303745e-20 - art_sys_139: -2.21521585e-21 - art_sys_140: -7.31892076e-22 - art_sys_141: 4.93980450e-17 - art_sys_142: 1.53995754e-22 - art_sys_143: 1.09791213e-21 - art_sys_144: -2.21791951e-18 - art_sys_145: 2.16213415e-18 - art_sys_146: 2.00555942e-17 - art_sys_147: 2.54018385e-18 - art_sys_148: -2.84477209e-18 - art_sys_149: 5.02222356e-19 - art_sys_150: -5.01524862e-19 - art_sys_151: 3.46201435e-20 - art_sys_152: 4.38929892e-23 - art_sys_153: -1.25329098e-22 - art_sys_154: -3.59375997e-23 - art_sys_155: -4.78778362e-25 - art_sys_156: 1.43573785e-24 - art_sys_157: -2.70225747e-26 - art_sys_158: 2.23706059e-24 - art_sys_159: 1.38680271e-23 - art_sys_160: -3.68418050e-23 - art_sys_161: -5.15981505e-25 - art_sys_162: 7.76416215e-26 - art_sys_163: -1.26066954e-24 - art_sys_164: 5.23639626e-24 - art_sys_165: 1.62707998e-24 - art_sys_166: 5.62509474e-25 - art_sys_167: 4.92016293e-24 - art_sys_168: 3.71563115e-14 - art_sys_169: -9.85129114e-26 - art_sys_170: -4.08477940e-16 - art_sys_171: -1.60832292e-15 - art_sys_172: 4.16941485e-25 - art_sys_173: -1.09718143e-25 - art_sys_174: -1.14706493e-16 - art_sys_175: 0.0 - art_sys_176: 2.90051977e-19 - art_sys_177: 0.0 - art_sys_178: -3.89127143e-20 - art_sys_179: 1.05026077e-23 - art_sys_180: -1.20022953e-24 - art_sys_181: 6.74312646e-30 - art_sys_182: 0.0 - art_sys_183: 6.75412584e-29 - art_sys_184: 5.83661982e-27 - art_sys_185: 5.01347215e-32 + art_sys_23: 8.20964341e-33 + art_sys_24: -4.34908942e-28 + art_sys_25: -2.01280310e-15 + art_sys_26: 4.08292921e-15 + art_sys_27: 3.65387464e-16 + art_sys_28: 6.04304873e-16 + art_sys_29: -6.27652824e-16 + art_sys_30: -2.20721788e-16 + art_sys_31: -6.86898814e-17 + art_sys_32: 2.25186306e-17 + art_sys_33: -1.14462500e-16 + art_sys_34: 2.78505194e-24 + art_sys_35: 4.86769624e-26 + art_sys_36: 1.09509119e-20 + art_sys_37: 1.13987823e-14 + art_sys_38: -8.23780162e-17 + art_sys_39: 3.50993914e-25 + art_sys_40: 1.61380242e-18 + art_sys_41: 3.95119773e-14 + art_sys_42: -6.34141921e-13 + art_sys_43: 4.19548879e-20 + art_sys_44: -2.72111212e-16 + art_sys_45: 3.77625594e-16 + art_sys_46: -9.51087706e-22 + art_sys_47: 9.99748657e-19 + art_sys_48: -2.15581857e-12 + art_sys_49: 2.56220246e-14 + art_sys_50: -1.11626777e-14 + art_sys_51: -7.83328806e-15 + art_sys_52: 3.05995227e-15 + art_sys_53: 5.41760236e-16 + art_sys_54: 3.73280178e-16 + art_sys_55: 2.18618595e-16 + art_sys_56: 2.78471332e-16 + art_sys_57: -1.08132890e-19 + art_sys_58: 1.29079729e-16 + art_sys_59: 9.50670700e-17 + art_sys_60: 8.06837437e-12 + art_sys_61: 1.18777318e-19 + art_sys_62: 1.26741921e-17 + art_sys_63: -4.41703360e-16 + art_sys_64: -6.21976030e-11 + art_sys_65: -5.75236086e-17 + art_sys_66: -1.86613086e-17 + art_sys_67: 3.37540460e-20 + art_sys_68: -1.60344275e-16 + art_sys_69: -3.37512887e-16 + art_sys_70: 1.20509671e-10 + art_sys_71: 1.66667207e-15 + art_sys_72: 1.93902497e-19 + art_sys_73: 2.34222066e-14 + art_sys_74: 2.23196766e-14 + art_sys_75: 5.40499141e-15 + art_sys_76: 1.48069000e-17 + art_sys_77: -5.20670440e-15 + art_sys_78: 1.71280919e-14 + art_sys_79: -8.29677248e-15 + art_sys_80: 9.49347958e-13 + art_sys_81: -3.39567763e-16 + art_sys_82: 1.41114607e-16 + art_sys_83: -4.11515914e-13 + art_sys_84: 3.01259177e-16 + art_sys_85: -4.62663077e-16 + art_sys_86: -7.28314946e-12 + art_sys_87: 8.87464683e-14 + art_sys_88: -2.18860191e-12 + art_sys_89: -2.76947407e-13 + art_sys_90: -1.52067959e-09 + art_sys_91: 1.08939409e-11 + art_sys_92: -2.60064654e-08 + art_sys_93: 4.54273897e-15 + art_sys_94: 4.82910922e-08 + art_sys_95: -3.59362575e-11 + art_sys_96: -1.22885944e-12 + art_sys_97: 7.00539622e-10 + art_sys_98: 2.90470479e-07 + art_sys_99: 3.03414142e-14 + art_sys_100: 6.26458144e-10 + art_sys_101: 9.36921498e-08 + art_sys_102: 1.96256446e-06 + art_sys_103: 1.58719289e-10 + art_sys_104: 1.98337545e-13 + art_sys_105: -1.35166579e-06 + art_sys_106: 6.05017058e-10 + art_sys_107: -2.36704464e-12 + art_sys_108: 1.47719014e-13 + art_sys_109: 1.03082173e-12 + art_sys_110: -3.12160359e-09 + art_sys_111: 8.60633129e-06 + art_sys_112: -1.45185522e-09 + art_sys_113: -7.14114375e-15 + art_sys_114: 1.07806977e-05 + art_sys_115: 5.44011847e-11 + art_sys_116: -2.27538838e-10 + art_sys_117: -2.33795228e-05 + art_sys_118: -4.58357807e-10 + art_sys_119: -4.23813218e-05 + art_sys_120: 4.47154149e-09 + art_sys_121: -9.95384137e-11 + art_sys_122: 5.92111440e-06 + art_sys_123: 7.85409122e-06 + art_sys_124: 8.24602169e-11 + art_sys_125: 4.03451328e-09 + art_sys_126: -2.30588492e-10 + art_sys_127: -8.99119603e-06 + art_sys_128: -3.63082073e-10 + art_sys_129: 4.36606231e-06 + art_sys_130: -5.61164437e-10 + art_sys_131: 1.90693219e-09 + art_sys_132: -2.20955946e-06 + art_sys_133: -5.19033864e-09 + art_sys_134: -1.05600690e-11 + art_sys_135: 5.62182286e-07 + art_sys_136: -1.37197060e-09 + art_sys_137: 1.41498333e-13 + art_sys_138: -2.82437636e-12 + art_sys_139: -6.66688338e-08 + art_sys_140: -9.74340290e-09 + art_sys_141: 1.41824635e-09 + art_sys_142: 9.21082342e-11 + art_sys_143: 7.15919337e-14 + art_sys_144: 1.20659539e-13 + art_sys_145: 1.98592288e-14 + art_sys_146: 0.0 + art_sys_147: 3.50513597e-12 + art_sys_148: 1.72659322e-11 + art_sys_149: 1.72659322e-11 + art_sys_150: -6.58304007e-11 + art_sys_151: -6.58304007e-11 + art_sys_152: 2.08208185e-10 + art_sys_153: -3.77092710e-12 + art_sys_154: -5.36544575e-15 + art_sys_155: -4.50995674e-23 + art_sys_156: 6.08694862e-27 + art_sys_157: -2.08737293e-26 + art_sys_158: 0.0 + art_sys_159: 5.72373787e-14 + art_sys_160: -6.66663255e-16 + art_sys_161: 2.07753572e-14 + art_sys_162: -4.60133482e-16 + art_sys_163: 6.14558082e-13 + art_sys_164: 3.14573457e-13 + art_sys_165: -4.16486325e-14 + art_sys_166: 1.20790241e-22 + art_sys_167: 2.30031579e-22 + art_sys_168: 1.94442731e-23 + art_sys_169: 1.34663434e-23 + art_sys_170: 2.50888560e-23 + art_sys_171: -1.52139432e-23 + art_sys_172: -5.47806124e-24 + art_sys_173: 2.36873209e-24 + art_sys_174: 5.30195975e-25 + art_sys_175: 1.31768128e-26 + art_sys_176: 5.28304552e-26 + art_sys_177: -2.41219567e-25 + art_sys_178: 7.73810518e-26 + art_sys_179: -4.48686277e-26 + art_sys_180: -1.57420116e-26 + art_sys_181: 1.65808603e-27 + art_sys_182: 2.02729445e-27 + art_sys_183: -1.00271796e-28 + art_sys_184: 2.50358310e-29 + art_sys_185: 2.10213874e-29 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -12461,191 +12461,191 @@ bins: RelativeStatFSR-: -4.07512454e-06 luminosity_uncertainty: 7.79201800e-05 uncorrelated_uncertainty: 2.99693000e-05 -- art_sys_1: -1.68333408e-56 - art_sys_2: -9.79299814e-46 - art_sys_3: -6.36024935e-43 +- art_sys_1: -3.16601782e-58 + art_sys_2: -4.43992236e-46 + art_sys_3: 4.69283899e-45 art_sys_4: -3.25799893e-26 - art_sys_5: 7.98287237e-41 - art_sys_6: -2.61555138e-43 - art_sys_7: -3.90328855e-25 - art_sys_8: -1.45961497e-39 - art_sys_9: -1.34819129e-23 - art_sys_10: -2.03293688e-40 - art_sys_11: -4.82335836e-35 + art_sys_5: -4.63431652e-40 + art_sys_6: 3.16486214e-43 + art_sys_7: 3.90328855e-25 + art_sys_8: -4.39792768e-39 + art_sys_9: 1.34819129e-23 + art_sys_10: -1.33424222e-40 + art_sys_11: -6.46324558e-36 art_sys_12: 1.89777820e-22 - art_sys_13: -3.35057740e-39 - art_sys_14: -2.74707867e-20 - art_sys_15: 1.20107782e-32 - art_sys_16: 1.05843179e-19 - art_sys_17: -1.73247221e-35 - art_sys_18: 1.71514504e-31 - art_sys_19: 4.09513788e-19 - art_sys_20: -4.37458427e-35 - art_sys_21: 1.70412398e-30 - art_sys_22: 9.18080202e-19 - art_sys_23: 4.60273429e-34 - art_sys_24: 3.21561942e-29 - art_sys_25: 1.23692326e-14 - art_sys_26: -1.24397791e-15 - art_sys_27: 2.18905681e-15 - art_sys_28: -8.40722835e-16 - art_sys_29: -3.11665625e-16 - art_sys_30: 7.73775006e-17 - art_sys_31: 6.85140234e-17 - art_sys_32: 1.62144438e-17 - art_sys_33: -9.30113588e-17 - art_sys_34: 5.25005684e-26 - art_sys_35: -1.79239217e-26 - art_sys_36: -1.89168139e-22 - art_sys_37: 1.63216898e-15 - art_sys_38: 6.49783864e-17 - art_sys_39: -2.29601758e-25 - art_sys_40: -8.05088304e-20 - art_sys_41: -1.21689608e-16 - art_sys_42: 8.28489130e-14 - art_sys_43: -3.45344017e-17 - art_sys_44: 5.02790454e-18 - art_sys_45: 5.93570222e-17 - art_sys_46: 1.83891031e-23 - art_sys_47: -2.52248294e-19 - art_sys_48: -3.77535600e-13 - art_sys_49: -2.42186256e-16 - art_sys_50: 5.54198318e-20 - art_sys_51: 3.21290727e-14 - art_sys_52: 2.78008135e-14 - art_sys_53: 4.86640319e-16 - art_sys_54: -9.00441032e-13 - art_sys_55: 1.21702838e-19 - art_sys_56: 3.79265952e-19 - art_sys_57: 6.09620667e-12 - art_sys_58: 6.82817134e-22 - art_sys_59: 3.79811535e-15 - art_sys_60: -1.26137937e-15 - art_sys_61: 2.52140039e-15 - art_sys_62: -2.27797344e-16 - art_sys_63: -2.43801572e-16 - art_sys_64: -4.93497558e-16 - art_sys_65: -1.41921052e-16 - art_sys_66: 1.87053231e-17 - art_sys_67: -1.36799588e-17 - art_sys_68: 1.14312653e-14 - art_sys_69: 8.44122656e-15 - art_sys_70: 1.88646081e-11 - art_sys_71: 3.88276388e-15 - art_sys_72: 3.71717114e-15 - art_sys_73: 1.25976587e-20 - art_sys_74: -2.51024139e-16 - art_sys_75: -3.86894358e-17 - art_sys_76: 1.14820930e-17 - art_sys_77: 1.52327266e-17 - art_sys_78: 9.23025475e-14 - art_sys_79: 1.94456645e-09 - art_sys_80: -1.70053890e-18 - art_sys_81: 1.34815223e-18 - art_sys_82: 2.13207866e-18 - art_sys_83: -4.90739894e-12 - art_sys_84: -4.48012871e-09 - art_sys_85: -3.95004638e-16 - art_sys_86: -1.13222561e-11 - art_sys_87: -1.73828821e-08 - art_sys_88: 6.22810659e-19 - art_sys_89: 9.61583235e-11 - art_sys_90: -4.59643980e-08 - art_sys_91: 4.35077577e-16 - art_sys_92: 2.07985241e-07 - art_sys_93: -3.14065827e-09 - art_sys_94: -9.14931831e-10 - art_sys_95: 5.25333290e-08 - art_sys_96: -2.65118744e-16 - art_sys_97: 1.45078907e-06 - art_sys_98: 1.22652305e-11 - art_sys_99: 3.34748280e-11 - art_sys_100: -2.40122287e-19 - art_sys_101: -1.77823204e-19 - art_sys_102: -1.22889038e-06 - art_sys_103: 1.22305613e-10 - art_sys_104: 6.63493805e-06 - art_sys_105: 3.66515550e-11 - art_sys_106: 3.11912250e-09 - art_sys_107: -7.57848430e-06 - art_sys_108: -1.11444351e-11 - art_sys_109: -1.62638045e-05 - art_sys_110: 4.72152370e-10 - art_sys_111: 4.16120263e-11 - art_sys_112: -3.14379993e-05 - art_sys_113: -6.48399343e-06 - art_sys_114: 6.63360479e-06 - art_sys_115: -4.82149480e-11 - art_sys_116: -6.47876742e-06 - art_sys_117: 6.34935688e-17 - art_sys_118: 3.51644374e-06 - art_sys_119: -7.42158316e-12 - art_sys_120: 5.28815929e-12 - art_sys_121: -6.54836715e-13 - art_sys_122: 1.25340772e-11 - art_sys_123: 1.54431167e-12 - art_sys_124: -1.66196878e-12 - art_sys_125: 1.07138438e-06 - art_sys_126: 1.11849398e-12 - art_sys_127: 1.42428242e-07 - art_sys_128: 3.93272631e-13 - art_sys_129: 3.01682805e-12 - art_sys_130: 8.86617917e-10 - art_sys_131: -1.84280897e-10 - art_sys_132: 4.11613759e-16 - art_sys_133: 4.12823949e-16 - art_sys_134: -4.98500876e-14 - art_sys_135: -7.16617704e-20 - art_sys_136: -2.78434890e-21 - art_sys_137: -1.08757940e-20 - art_sys_138: 1.48090938e-20 - art_sys_139: 3.43653909e-21 - art_sys_140: 4.08169488e-21 - art_sys_141: -7.64817075e-17 - art_sys_142: -8.55311874e-22 - art_sys_143: -1.12050604e-21 - art_sys_144: 4.13095091e-18 - art_sys_145: -5.11483032e-18 - art_sys_146: -3.95482358e-17 - art_sys_147: -5.56663172e-18 - art_sys_148: 5.35145178e-18 - art_sys_149: -1.06501228e-18 - art_sys_150: 1.05058700e-18 - art_sys_151: -6.68618419e-20 - art_sys_152: -2.30031915e-22 - art_sys_153: 1.44063061e-22 - art_sys_154: 5.57468223e-23 - art_sys_155: -1.12668957e-25 - art_sys_156: -1.98096876e-24 - art_sys_157: 1.57035228e-25 - art_sys_158: -4.26097005e-24 - art_sys_159: -2.65634783e-23 - art_sys_160: 6.98615945e-23 - art_sys_161: 9.63362584e-25 - art_sys_162: -1.31063849e-25 - art_sys_163: 2.42902740e-24 - art_sys_164: -1.00948718e-23 - art_sys_165: -3.07739990e-24 - art_sys_166: -1.07587673e-24 - art_sys_167: -9.19889133e-24 - art_sys_168: -5.95691367e-14 - art_sys_169: 2.10304743e-25 - art_sys_170: 8.11700314e-16 - art_sys_171: 2.60205606e-15 - art_sys_172: -6.30635042e-25 - art_sys_173: 1.31784823e-25 - art_sys_174: 3.08351300e-16 - art_sys_175: 0.0 - art_sys_176: 2.75190258e-19 - art_sys_177: 0.0 - art_sys_178: 7.07807247e-20 - art_sys_179: -2.31557891e-23 - art_sys_180: 2.69114962e-24 - art_sys_181: -1.27696601e-29 - art_sys_182: 0.0 - art_sys_183: -1.61245735e-28 - art_sys_184: -1.18775368e-26 - art_sys_185: -5.70345879e-31 + art_sys_13: 6.34883045e-37 + art_sys_14: 2.74707867e-20 + art_sys_15: -1.45593529e-32 + art_sys_16: -1.05843179e-19 + art_sys_17: 1.01703222e-35 + art_sys_18: -3.85120199e-31 + art_sys_19: -4.09513788e-19 + art_sys_20: 4.11169801e-34 + art_sys_21: -2.90039691e-30 + art_sys_22: 9.18080203e-19 + art_sys_23: 7.73911747e-34 + art_sys_24: 7.26248020e-29 + art_sys_25: 2.68538314e-15 + art_sys_26: 7.14556879e-15 + art_sys_27: 9.21937829e-16 + art_sys_28: 7.73775006e-17 + art_sys_29: -6.85140234e-17 + art_sys_30: 7.90798122e-16 + art_sys_31: -1.76024501e-16 + art_sys_32: -1.27559652e-16 + art_sys_33: -2.04078209e-17 + art_sys_34: 6.88452863e-26 + art_sys_35: 6.84079207e-27 + art_sys_36: 3.67015620e-22 + art_sys_37: 1.63216975e-15 + art_sys_38: -7.35813278e-17 + art_sys_39: 9.44511434e-26 + art_sys_40: 1.19862479e-19 + art_sys_41: 1.23569485e-16 + art_sys_42: -8.28609631e-14 + art_sys_43: 3.41901926e-18 + art_sys_44: -3.19014306e-16 + art_sys_45: 2.72615638e-16 + art_sys_46: -1.25770869e-22 + art_sys_47: -7.38860384e-19 + art_sys_48: -3.77536464e-13 + art_sys_49: 1.25586634e-14 + art_sys_50: 2.04454444e-14 + art_sys_51: 3.12746534e-14 + art_sys_52: -3.78895589e-15 + art_sys_53: -3.70616181e-16 + art_sys_54: 5.95475993e-17 + art_sys_55: 1.12260123e-16 + art_sys_56: 2.79449032e-16 + art_sys_57: -1.76573526e-20 + art_sys_58: 5.02584580e-16 + art_sys_59: 1.60646905e-16 + art_sys_60: -9.00440435e-13 + art_sys_61: -1.45102492e-20 + art_sys_62: 1.26043929e-18 + art_sys_63: -5.02264361e-16 + art_sys_64: -6.09620576e-12 + art_sys_65: 1.28402421e-17 + art_sys_66: 2.52974319e-17 + art_sys_67: 2.71172552e-21 + art_sys_68: -1.81501903e-16 + art_sys_69: -1.98067945e-16 + art_sys_70: 1.88648589e-11 + art_sys_71: -1.13988873e-15 + art_sys_72: 3.37991891e-20 + art_sys_73: -5.97018509e-14 + art_sys_74: -5.17051107e-14 + art_sys_75: -1.56701721e-14 + art_sys_76: 1.22219477e-18 + art_sys_77: -1.90958173e-16 + art_sys_78: 3.95579617e-15 + art_sys_79: 4.13921471e-15 + art_sys_80: 6.55258526e-15 + art_sys_81: 5.55984129e-16 + art_sys_82: -1.68090161e-15 + art_sys_83: -3.84260098e-13 + art_sys_84: 3.39287475e-16 + art_sys_85: 4.68194737e-17 + art_sys_86: -1.21648219e-11 + art_sys_87: 2.26627875e-14 + art_sys_88: -1.73798928e-12 + art_sys_89: 2.17143709e-13 + art_sys_90: 1.94455201e-09 + art_sys_91: -1.04476757e-12 + art_sys_92: -4.48066380e-09 + art_sys_93: 7.58312471e-16 + art_sys_94: -1.73847075e-08 + art_sys_95: -6.46418023e-11 + art_sys_96: 1.30964252e-12 + art_sys_97: 1.57509948e-09 + art_sys_98: 4.59626402e-08 + art_sys_99: -1.01762948e-14 + art_sys_100: -4.10278791e-10 + art_sys_101: -2.08146574e-07 + art_sys_102: 5.25724090e-08 + art_sys_103: 4.67951957e-10 + art_sys_104: -7.46541903e-15 + art_sys_105: -1.45038437e-06 + art_sys_106: -5.88205144e-10 + art_sys_107: 3.94473303e-12 + art_sys_108: -2.45004374e-13 + art_sys_109: -1.59384923e-12 + art_sys_110: 1.32701337e-09 + art_sys_111: -1.22894600e-06 + art_sys_112: 1.40977723e-09 + art_sys_113: 1.08347096e-14 + art_sys_114: 6.63296887e-06 + art_sys_115: 6.84138146e-11 + art_sys_116: -4.92980152e-09 + art_sys_117: 7.57947333e-06 + art_sys_118: 4.43858909e-10 + art_sys_119: -1.62648728e-05 + art_sys_120: -5.24802383e-09 + art_sys_121: 1.65041801e-10 + art_sys_122: 3.14478175e-05 + art_sys_123: -6.45799560e-06 + art_sys_124: -1.37456472e-10 + art_sys_125: -2.72425524e-09 + art_sys_126: 3.80404759e-10 + art_sys_127: 6.63893629e-06 + art_sys_128: 6.45328831e-10 + art_sys_129: -6.41972768e-06 + art_sys_130: 9.56690061e-10 + art_sys_131: -3.02135092e-09 + art_sys_132: 3.57024318e-06 + art_sys_133: 8.38274031e-09 + art_sys_134: 1.70553250e-11 + art_sys_135: -1.08359874e-06 + art_sys_136: 2.52418662e-09 + art_sys_137: -2.52096655e-13 + art_sys_138: 1.91933327e-13 + art_sys_139: 1.39897930e-07 + art_sys_140: 2.04134727e-08 + art_sys_141: -2.95499654e-09 + art_sys_142: -1.64460313e-10 + art_sys_143: -1.49803171e-13 + art_sys_144: -2.52809093e-13 + art_sys_145: -6.03167406e-14 + art_sys_146: -0.0 + art_sys_147: -8.91371874e-12 + art_sys_148: -9.51841628e-12 + art_sys_149: -9.51841628e-12 + art_sys_150: 1.41528954e-10 + art_sys_151: 1.41528954e-10 + art_sys_152: -3.63381746e-10 + art_sys_153: 3.94867714e-12 + art_sys_154: 1.38745056e-14 + art_sys_155: 7.38489064e-23 + art_sys_156: -1.20612567e-26 + art_sys_157: 5.40006858e-26 + art_sys_158: 0.0 + art_sys_159: -7.01956128e-14 + art_sys_160: -4.47332194e-15 + art_sys_161: -4.90446786e-14 + art_sys_162: 2.63782449e-16 + art_sys_163: -1.15669104e-12 + art_sys_164: -5.27287294e-13 + art_sys_165: 6.75793436e-14 + art_sys_166: -3.40074738e-23 + art_sys_167: -2.04733924e-22 + art_sys_168: -8.46874613e-23 + art_sys_169: -2.48096447e-23 + art_sys_170: -3.58309252e-23 + art_sys_171: 2.42031360e-23 + art_sys_172: 9.66784285e-24 + art_sys_173: -3.78741921e-24 + art_sys_174: -7.40569263e-25 + art_sys_175: -1.29728784e-26 + art_sys_176: -1.06879788e-25 + art_sys_177: 3.97975912e-25 + art_sys_178: -1.19343065e-25 + art_sys_179: 6.98154845e-26 + art_sys_180: 2.47462102e-26 + art_sys_181: -2.60298147e-27 + art_sys_182: 3.69992814e-27 + art_sys_183: 2.22842063e-28 + art_sys_184: -3.39432564e-29 + art_sys_185: -3.38534026e-29 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -12752,191 +12752,191 @@ bins: RelativeStatFSR-: -2.52378817e-06 luminosity_uncertainty: 4.56461200e-05 uncorrelated_uncertainty: 1.75562000e-05 -- art_sys_1: 1.06895968e-58 - art_sys_2: -1.50141208e-46 - art_sys_3: 4.13765760e-45 +- art_sys_1: 4.58326303e-60 + art_sys_2: 2.88830824e-48 + art_sys_3: -1.22487505e-46 art_sys_4: 2.11948986e-28 - art_sys_5: -2.71518589e-42 - art_sys_6: -1.88881317e-44 - art_sys_7: 4.93733653e-25 - art_sys_8: -2.38812933e-39 - art_sys_9: -4.15004698e-24 - art_sys_10: -5.68514891e-41 - art_sys_11: -1.96405131e-36 + art_sys_5: -2.67218400e-40 + art_sys_6: -5.35481146e-45 + art_sys_7: -4.93733653e-25 + art_sys_8: -1.34826386e-39 + art_sys_9: 4.15004698e-24 + art_sys_10: -4.35158828e-41 + art_sys_11: -2.19914590e-37 art_sys_12: 1.91675083e-23 - art_sys_13: -3.31151828e-40 - art_sys_14: -2.24247519e-21 - art_sys_15: 1.28083254e-33 - art_sys_16: 3.34556484e-21 - art_sys_17: -5.80413148e-37 - art_sys_18: 4.36635867e-32 - art_sys_19: 2.39484535e-20 - art_sys_20: -2.86962887e-36 - art_sys_21: 3.85456636e-31 + art_sys_13: 4.91659404e-38 + art_sys_14: 2.24247519e-21 + art_sys_15: -1.40697418e-33 + art_sys_16: -3.34556484e-21 + art_sys_17: 9.70833619e-37 + art_sys_18: -8.92214986e-32 + art_sys_19: -2.39484535e-20 + art_sys_20: 2.70769173e-35 + art_sys_21: -8.28981676e-31 art_sys_22: 6.00461090e-20 - art_sys_23: 4.99158668e-35 - art_sys_24: 2.30826411e-30 - art_sys_25: 3.20270628e-16 - art_sys_26: 3.59239365e-16 - art_sys_27: 1.88928406e-16 - art_sys_28: 1.56037031e-16 - art_sys_29: -1.07208414e-17 - art_sys_30: 1.07388360e-17 - art_sys_31: -1.15988748e-17 - art_sys_32: -3.45136115e-17 - art_sys_33: -1.11950371e-17 - art_sys_34: 3.76811867e-26 - art_sys_35: -1.15987982e-27 - art_sys_36: 2.14066376e-24 - art_sys_37: 1.09334286e-16 - art_sys_38: -6.30885929e-18 - art_sys_39: -2.46696388e-26 - art_sys_40: 7.79212086e-22 - art_sys_41: 4.45334803e-16 - art_sys_42: 4.23586785e-15 - art_sys_43: 5.29187795e-18 - art_sys_44: -1.01596770e-16 - art_sys_45: 2.11090140e-16 - art_sys_46: 9.86257195e-25 - art_sys_47: -3.91400522e-18 - art_sys_48: -2.09848961e-14 - art_sys_49: -2.59389485e-16 - art_sys_50: -2.99276070e-19 - art_sys_51: 7.43713969e-14 - art_sys_52: -1.18481173e-14 - art_sys_53: 1.56143933e-16 - art_sys_54: -3.91567870e-13 - art_sys_55: 5.29400424e-20 - art_sys_56: 4.70155544e-20 - art_sys_57: -7.77173825e-13 - art_sys_58: 2.63595130e-22 - art_sys_59: 1.28259450e-14 - art_sys_60: -4.96359525e-15 - art_sys_61: -4.59866362e-16 - art_sys_62: 4.80866632e-16 - art_sys_63: -5.17898206e-16 - art_sys_64: -3.16741960e-16 - art_sys_65: -6.58251201e-18 - art_sys_66: 2.17533450e-17 - art_sys_67: -1.47989558e-17 - art_sys_68: -1.49174132e-17 - art_sys_69: -1.63141027e-15 - art_sys_70: -9.64167683e-13 - art_sys_71: 6.32029384e-16 - art_sys_72: 3.43041431e-15 - art_sys_73: -2.13705054e-21 - art_sys_74: -8.02745540e-17 - art_sys_75: 6.07130288e-18 - art_sys_76: 2.81646952e-18 - art_sys_77: 6.71183872e-18 - art_sys_78: 4.96955107e-16 - art_sys_79: 3.20215607e-10 - art_sys_80: -6.47153986e-19 - art_sys_81: -5.46552486e-18 - art_sys_82: -2.82299979e-18 - art_sys_83: -9.03341482e-13 - art_sys_84: 7.42969815e-10 - art_sys_85: -6.65241000e-17 - art_sys_86: -1.16295172e-12 - art_sys_87: -4.69504990e-09 - art_sys_88: -7.73133913e-20 - art_sys_89: -3.06662353e-12 - art_sys_90: 1.21727721e-08 - art_sys_91: 7.55829147e-17 - art_sys_92: 3.23434832e-08 - art_sys_93: 1.06130626e-09 - art_sys_94: -4.35753655e-11 - art_sys_95: -1.55091861e-07 - art_sys_96: -3.27427947e-17 - art_sys_97: 3.55252722e-08 - art_sys_98: 6.54406277e-12 - art_sys_99: -4.06984420e-11 - art_sys_100: -2.06903306e-19 - art_sys_101: -4.17388794e-19 - art_sys_102: -1.10760100e-06 - art_sys_103: -1.50254427e-10 - art_sys_104: -6.88223426e-07 - art_sys_105: -6.48892235e-11 - art_sys_106: 7.42031183e-10 - art_sys_107: -4.75777233e-06 - art_sys_108: 1.85442777e-11 - art_sys_109: 5.75445412e-06 - art_sys_110: -8.30030433e-09 - art_sys_111: -6.90189585e-11 - art_sys_112: -1.07281066e-05 - art_sys_113: -2.38151095e-05 - art_sys_114: -5.68564193e-06 - art_sys_115: -1.39125882e-10 - art_sys_116: 5.30459805e-06 - art_sys_117: 3.31632733e-16 - art_sys_118: -5.16091378e-06 - art_sys_119: 3.93451422e-12 - art_sys_120: 1.64100954e-11 - art_sys_121: -6.84497195e-13 - art_sys_122: -8.82668811e-12 - art_sys_123: -8.24898821e-11 - art_sys_124: 2.96249337e-12 - art_sys_125: -1.92270003e-06 - art_sys_126: -1.39004023e-12 - art_sys_127: -2.77734040e-07 - art_sys_128: -1.34899860e-12 - art_sys_129: -6.40774025e-12 - art_sys_130: -1.80964985e-09 - art_sys_131: 3.44287514e-10 - art_sys_132: -8.90421421e-16 - art_sys_133: -9.18829249e-16 - art_sys_134: 1.79605378e-14 - art_sys_135: 2.69734547e-20 - art_sys_136: -2.22375300e-20 - art_sys_137: 3.38649034e-20 - art_sys_138: 4.07652920e-20 - art_sys_139: 6.68966214e-21 - art_sys_140: -4.60202608e-21 - art_sys_141: 8.84491773e-17 - art_sys_142: -7.42343845e-22 - art_sys_143: -3.22096838e-21 - art_sys_144: -7.25118977e-18 - art_sys_145: 1.09774670e-17 - art_sys_146: 6.73079567e-17 - art_sys_147: 1.29280912e-17 - art_sys_148: -8.72009784e-18 - art_sys_149: 1.88401882e-18 - art_sys_150: -1.81924251e-18 - art_sys_151: 1.05797372e-19 - art_sys_152: 4.89269481e-22 - art_sys_153: -2.75656995e-22 - art_sys_154: -7.62602846e-23 - art_sys_155: 2.48829837e-24 - art_sys_156: -1.76218757e-25 - art_sys_157: -8.55328523e-25 - art_sys_158: 7.48452548e-24 - art_sys_159: 4.79803360e-23 - art_sys_160: -1.24529674e-22 - art_sys_161: -1.69668797e-24 - art_sys_162: 2.26279238e-25 - art_sys_163: -4.43653604e-24 - art_sys_164: 1.85346672e-23 - art_sys_165: 5.47341998e-24 - art_sys_166: 1.93913607e-24 - art_sys_167: 1.66350064e-23 - art_sys_168: 8.57484873e-14 - art_sys_169: -4.10519736e-25 - art_sys_170: -1.51550431e-15 - art_sys_171: -3.76311136e-15 - art_sys_172: 6.55382586e-25 - art_sys_173: -1.18917373e-25 - art_sys_174: -7.18058139e-16 - art_sys_175: 0.0 - art_sys_176: -2.05199293e-18 - art_sys_177: 0.0 - art_sys_178: -1.26923910e-19 - art_sys_179: 4.91459088e-23 - art_sys_180: -5.82016510e-24 - art_sys_181: 2.36947365e-29 - art_sys_182: 0.0 - art_sys_183: 3.70565365e-28 - art_sys_184: 2.38843854e-26 - art_sys_185: 1.99541401e-30 + art_sys_23: 4.88187474e-35 + art_sys_24: 3.41757340e-29 + art_sys_25: -7.87137889e-17 + art_sys_26: 1.05540473e-15 + art_sys_27: 5.89605516e-16 + art_sys_28: 1.07388360e-17 + art_sys_29: 1.15988749e-17 + art_sys_30: 1.75538827e-16 + art_sys_31: 2.81617643e-17 + art_sys_32: -3.54535304e-17 + art_sys_33: -2.65823844e-17 + art_sys_34: -2.68885609e-26 + art_sys_35: 4.42407356e-28 + art_sys_36: 2.34425888e-24 + art_sys_37: 1.09334288e-16 + art_sys_38: -4.25531922e-17 + art_sys_39: 9.81106346e-27 + art_sys_40: 1.53314928e-21 + art_sys_41: -4.45321538e-16 + art_sys_42: -4.23595680e-15 + art_sys_43: 4.35877573e-20 + art_sys_44: -8.76887537e-17 + art_sys_45: 6.95487345e-17 + art_sys_46: -6.43530769e-24 + art_sys_47: 1.04933834e-18 + art_sys_48: -2.09837536e-14 + art_sys_49: 1.02492352e-13 + art_sys_50: -2.94676846e-14 + art_sys_51: -2.02276432e-14 + art_sys_52: 6.19259744e-16 + art_sys_53: 1.21735823e-15 + art_sys_54: -1.46094493e-15 + art_sys_55: 4.01955474e-17 + art_sys_56: 6.08771356e-17 + art_sys_57: 6.20419100e-20 + art_sys_58: -3.50925883e-16 + art_sys_59: -1.06478871e-16 + art_sys_60: -3.91568170e-13 + art_sys_61: -6.01050659e-21 + art_sys_62: -1.19441459e-20 + art_sys_63: -9.68162461e-17 + art_sys_64: 7.77173790e-13 + art_sys_65: 7.24600777e-17 + art_sys_66: -2.15113055e-17 + art_sys_67: -7.46969099e-22 + art_sys_68: -2.90311050e-17 + art_sys_69: -2.04509978e-17 + art_sys_70: -9.64123280e-13 + art_sys_71: -2.26687892e-16 + art_sys_72: 2.34022668e-21 + art_sys_73: 3.53075317e-14 + art_sys_74: -1.49764358e-14 + art_sys_75: 8.12594630e-15 + art_sys_76: -9.28761549e-19 + art_sys_77: 2.49073917e-16 + art_sys_78: -5.85161901e-16 + art_sys_79: 2.84994075e-16 + art_sys_80: -7.70917275e-14 + art_sys_81: 1.14895180e-15 + art_sys_82: -4.84754974e-16 + art_sys_83: 8.85793173e-15 + art_sys_84: 2.30621048e-16 + art_sys_85: -8.50396482e-17 + art_sys_86: 2.78155518e-11 + art_sys_87: -1.55641900e-15 + art_sys_88: 5.65207914e-12 + art_sys_89: -1.09069221e-13 + art_sys_90: 3.20216230e-10 + art_sys_91: -6.60795326e-13 + art_sys_92: 7.42849437e-10 + art_sys_93: -1.32556960e-16 + art_sys_94: -4.69492413e-09 + art_sys_95: -1.05634292e-12 + art_sys_96: -1.72422399e-12 + art_sys_97: -2.48798887e-11 + art_sys_98: -1.21772095e-08 + art_sys_99: -2.84882242e-15 + art_sys_100: -1.36514096e-10 + art_sys_101: -3.22308854e-08 + art_sys_102: -1.54998765e-07 + art_sys_103: 1.41516559e-10 + art_sys_104: -1.03290042e-14 + art_sys_105: -3.58394197e-08 + art_sys_106: -1.84916694e-10 + art_sys_107: -5.99799299e-12 + art_sys_108: 3.64447169e-13 + art_sys_109: 1.56507705e-12 + art_sys_110: -2.39837427e-09 + art_sys_111: -1.10763420e-06 + art_sys_112: -3.29687888e-09 + art_sys_113: -9.76528843e-15 + art_sys_114: -6.88080548e-07 + art_sys_115: -2.76810998e-10 + art_sys_116: 2.13536333e-09 + art_sys_117: 4.75551085e-06 + art_sys_118: -5.11899993e-10 + art_sys_119: 5.75532248e-06 + art_sys_120: -5.54836261e-09 + art_sys_121: -2.54672611e-10 + art_sys_122: 1.07361577e-05 + art_sys_123: -2.38267125e-05 + art_sys_124: 2.09327379e-10 + art_sys_125: 1.79466564e-09 + art_sys_126: -5.67275158e-10 + art_sys_127: -5.69214294e-06 + art_sys_128: -9.76876000e-10 + art_sys_129: 5.20263893e-06 + art_sys_130: -1.64831388e-09 + art_sys_131: 4.65183863e-09 + art_sys_132: -5.21391742e-06 + art_sys_133: -1.21932886e-08 + art_sys_134: -2.48717162e-11 + art_sys_135: 1.93717406e-06 + art_sys_136: -4.30011165e-09 + art_sys_137: 4.12893138e-13 + art_sys_138: 2.52622008e-13 + art_sys_139: -2.71643320e-07 + art_sys_140: -3.95870547e-08 + art_sys_141: 5.72614835e-09 + art_sys_142: 2.42480655e-10 + art_sys_143: 2.89218445e-13 + art_sys_144: 4.92159438e-13 + art_sys_145: 1.71287521e-13 + art_sys_146: 0.0 + art_sys_147: 2.24727253e-11 + art_sys_148: -6.09883754e-11 + art_sys_149: -6.09883754e-11 + art_sys_150: -2.84506252e-10 + art_sys_151: -2.84506252e-10 + art_sys_152: 5.73585869e-10 + art_sys_153: -1.26977471e-12 + art_sys_154: -3.33759713e-14 + art_sys_155: -1.10250370e-22 + art_sys_156: 2.05951135e-26 + art_sys_157: -1.61203892e-25 + art_sys_158: -0.0 + art_sys_159: 5.12846822e-15 + art_sys_160: 2.51076167e-14 + art_sys_161: 1.06000360e-13 + art_sys_162: 1.23412698e-15 + art_sys_163: 2.09836964e-12 + art_sys_164: 7.57654782e-13 + art_sys_165: -9.47981224e-14 + art_sys_166: -5.35526948e-22 + art_sys_167: -3.79136510e-22 + art_sys_168: 2.86556576e-22 + art_sys_169: 3.41546722e-23 + art_sys_170: 3.94692118e-23 + art_sys_171: -2.61097156e-23 + art_sys_172: -1.38079769e-23 + art_sys_173: 4.16890056e-24 + art_sys_174: 4.30440546e-25 + art_sys_175: -1.58746236e-26 + art_sys_176: 1.97985094e-25 + art_sys_177: -4.80539624e-25 + art_sys_178: 1.14609875e-25 + art_sys_179: -6.88207775e-26 + art_sys_180: -2.74449292e-26 + art_sys_181: 2.66832571e-27 + art_sys_182: -2.91733503e-26 + art_sys_183: -4.37602271e-28 + art_sys_184: 6.96810067e-30 + art_sys_185: 4.83082418e-29 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -13043,191 +13043,191 @@ bins: RelativeStatFSR-: -1.53302069e-06 luminosity_uncertainty: 2.62301000e-05 uncorrelated_uncertainty: 1.00885000e-05 -- art_sys_1: 3.37763600e-58 - art_sys_2: -1.69681167e-47 - art_sys_3: 1.27842961e-44 +- art_sys_1: 6.26404988e-60 + art_sys_2: 8.92436963e-48 + art_sys_3: -3.29102148e-47 art_sys_4: 6.54867769e-28 - art_sys_5: -6.93460616e-43 - art_sys_6: -2.62355376e-46 - art_sys_7: 6.98133765e-26 - art_sys_8: -3.27875556e-40 - art_sys_9: -5.26970765e-25 - art_sys_10: -7.15244037e-42 - art_sys_11: -1.61921586e-38 + art_sys_5: -3.55653844e-41 + art_sys_6: -6.77827525e-45 + art_sys_7: -6.98133765e-26 + art_sys_8: -1.73290369e-40 + art_sys_9: 5.26970765e-25 + art_sys_10: -5.61331189e-42 + art_sys_11: 3.23453127e-39 art_sys_12: 1.36237408e-24 - art_sys_13: -2.00425927e-41 - art_sys_14: -1.26202602e-22 - art_sys_15: 1.87719674e-34 - art_sys_16: -8.00814264e-22 - art_sys_17: 1.23869732e-37 - art_sys_18: 8.15577984e-34 - art_sys_19: -7.81666753e-22 - art_sys_20: 8.73840701e-38 - art_sys_21: 7.85782504e-32 + art_sys_13: 2.26714174e-39 + art_sys_14: 1.26202602e-22 + art_sys_15: -1.59869048e-34 + art_sys_16: 8.00814264e-22 + art_sys_17: 6.43667286e-38 + art_sys_18: -1.22448924e-32 + art_sys_19: 7.81666749e-22 + art_sys_20: -7.45133590e-37 + art_sys_21: -1.91173787e-31 art_sys_22: -1.77065447e-21 - art_sys_23: 3.19205990e-36 - art_sys_24: 4.81981061e-31 - art_sys_25: -3.16843403e-15 - art_sys_26: -5.58578257e-16 - art_sys_27: -1.12773550e-16 - art_sys_28: -8.03924943e-16 - art_sys_29: -1.06422194e-16 - art_sys_30: 9.97142670e-19 - art_sys_31: -4.47820767e-18 - art_sys_32: 1.10903606e-16 - art_sys_33: -4.95796705e-17 - art_sys_34: 2.59691797e-27 - art_sys_35: 1.09425033e-28 - art_sys_36: 9.40817558e-26 - art_sys_37: -9.43836610e-18 - art_sys_38: 4.66297382e-17 - art_sys_39: 2.25565291e-27 - art_sys_40: -9.16651709e-24 - art_sys_41: -5.51813327e-17 - art_sys_42: -3.75018208e-16 - art_sys_43: -3.38507152e-17 - art_sys_44: 3.50262141e-16 - art_sys_45: -7.76878213e-16 - art_sys_46: -1.84351812e-25 - art_sys_47: -2.06086180e-18 - art_sys_48: 3.84396306e-15 - art_sys_49: 8.39677872e-16 - art_sys_50: 2.53011728e-18 - art_sys_51: -1.00241830e-13 - art_sys_52: 2.53912682e-14 - art_sys_53: -7.61156072e-16 - art_sys_54: -5.47504847e-14 - art_sys_55: 7.40354658e-21 - art_sys_56: 3.04705873e-19 - art_sys_57: -3.14765175e-13 - art_sys_58: 1.28422075e-22 - art_sys_59: -6.28896461e-15 - art_sys_60: -2.82312231e-15 - art_sys_61: -2.36073641e-16 - art_sys_62: 3.18229143e-16 - art_sys_63: 5.85111080e-16 - art_sys_64: 1.88756312e-15 - art_sys_65: -2.57855980e-16 - art_sys_66: -1.78872438e-17 - art_sys_67: -2.44260328e-17 - art_sys_68: 2.33114504e-17 - art_sys_69: 5.48350917e-15 - art_sys_70: -7.32717586e-13 - art_sys_71: -8.48481730e-17 - art_sys_72: -1.59409691e-14 - art_sys_73: -1.11567265e-20 - art_sys_74: 2.65250326e-18 - art_sys_75: -2.35698453e-18 - art_sys_76: -1.22013043e-17 - art_sys_77: 5.56247284e-18 - art_sys_78: -3.10280401e-15 - art_sys_79: -4.20895708e-11 - art_sys_80: 2.41083406e-18 - art_sys_81: 2.80689186e-18 - art_sys_82: 2.45572202e-18 - art_sys_83: 4.45832408e-13 - art_sys_84: 3.04891336e-10 - art_sys_85: 4.66913984e-18 - art_sys_86: 1.00967714e-12 - art_sys_87: 3.26145338e-10 - art_sys_88: -2.31113570e-19 - art_sys_89: -1.24898593e-11 - art_sys_90: 3.97443133e-09 - art_sys_91: 1.80115875e-17 - art_sys_92: -9.88239043e-09 - art_sys_93: 9.12683506e-10 - art_sys_94: 5.85084250e-10 - art_sys_95: -2.16378112e-08 - art_sys_96: 3.47269362e-17 - art_sys_97: -1.15803601e-07 - art_sys_98: 1.37831637e-11 - art_sys_99: -6.25010366e-11 - art_sys_100: 6.13433933e-20 - art_sys_101: -2.00107317e-19 - art_sys_102: 1.73345845e-09 - art_sys_103: 3.90741444e-10 - art_sys_104: -8.41750104e-07 - art_sys_105: 9.30001968e-11 - art_sys_106: -1.16445888e-09 - art_sys_107: 5.16434320e-07 - art_sys_108: -2.01545966e-11 - art_sys_109: 3.36255640e-06 - art_sys_110: -1.25834269e-08 - art_sys_111: 8.71737665e-11 - art_sys_112: 4.66289345e-06 - art_sys_113: -7.39002253e-06 - art_sys_114: -1.82318355e-05 - art_sys_115: -8.54048021e-11 - art_sys_116: -5.45028054e-06 - art_sys_117: 9.19298980e-17 - art_sys_118: 4.26446908e-06 - art_sys_119: -6.60678696e-12 - art_sys_120: 4.72653579e-12 - art_sys_121: 1.51061475e-12 - art_sys_122: 1.05125071e-11 - art_sys_123: 2.65706061e-10 - art_sys_124: -2.83664839e-12 - art_sys_125: 3.00944283e-06 - art_sys_126: 2.55712197e-12 - art_sys_127: 5.33920910e-07 - art_sys_128: 3.09275466e-12 - art_sys_129: 1.40046555e-11 - art_sys_130: 2.77655914e-09 - art_sys_131: -4.45674968e-10 - art_sys_132: 1.59351035e-15 - art_sys_133: 7.90463276e-16 - art_sys_134: 1.61748787e-13 - art_sys_135: -6.21918384e-20 - art_sys_136: 5.38350615e-20 - art_sys_137: -3.79321526e-20 - art_sys_138: 1.18405312e-20 - art_sys_139: 9.05771641e-21 - art_sys_140: 7.49490958e-21 - art_sys_141: -8.89700629e-17 - art_sys_142: -4.77553290e-22 - art_sys_143: -2.21793977e-20 - art_sys_144: 1.15174674e-17 - art_sys_145: -2.00107024e-17 - art_sys_146: -1.02615681e-16 - art_sys_147: -2.06826602e-17 - art_sys_148: 1.31520965e-17 - art_sys_149: -2.90377530e-18 - art_sys_150: 2.74071890e-18 - art_sys_151: -8.83925619e-20 - art_sys_152: -9.33264615e-22 - art_sys_153: 3.68698892e-22 - art_sys_154: 1.02128067e-22 - art_sys_155: 4.02579846e-24 - art_sys_156: -7.29686913e-24 - art_sys_157: -3.63186438e-25 - art_sys_158: -1.25120851e-23 - art_sys_159: -7.30952697e-23 - art_sys_160: 1.84531894e-22 - art_sys_161: 2.48811248e-24 - art_sys_162: -3.93717250e-25 - art_sys_163: 6.96114959e-24 - art_sys_164: -2.94991001e-23 - art_sys_165: -8.01689834e-24 - art_sys_166: -2.93594465e-24 - art_sys_167: -2.44056287e-23 - art_sys_168: -6.91945557e-14 - art_sys_169: 7.59992808e-25 - art_sys_170: 2.32548993e-15 - art_sys_171: 4.13021834e-15 - art_sys_172: -6.56842998e-25 - art_sys_173: 2.85879974e-26 - art_sys_174: 1.66172648e-15 - art_sys_175: 0.0 - art_sys_176: 8.16357639e-18 - art_sys_177: 0.0 - art_sys_178: 1.43819950e-19 - art_sys_179: -9.02900455e-23 - art_sys_180: 1.04130115e-23 - art_sys_181: -3.38701343e-29 - art_sys_182: 0.0 - art_sys_183: -6.51746978e-28 - art_sys_184: -3.57256085e-26 - art_sys_185: -5.26306950e-30 + art_sys_23: -4.53588035e-36 + art_sys_24: 5.18887154e-30 + art_sys_25: 5.18766795e-16 + art_sys_26: -1.06815757e-15 + art_sys_27: -2.05766918e-15 + art_sys_28: 9.97142671e-19 + art_sys_29: 4.47820767e-18 + art_sys_30: -1.46996968e-15 + art_sys_31: -5.40315334e-17 + art_sys_32: 2.62092813e-16 + art_sys_33: 1.55230111e-16 + art_sys_34: -1.73736031e-27 + art_sys_35: -4.17760769e-29 + art_sys_36: -1.86499110e-26 + art_sys_37: -9.43836613e-18 + art_sys_38: 1.70404745e-16 + art_sys_39: -8.92254659e-28 + art_sys_40: 3.40167648e-23 + art_sys_41: 5.51820701e-17 + art_sys_42: 3.75009993e-16 + art_sys_43: -2.66621546e-17 + art_sys_44: 2.94508663e-16 + art_sys_45: -1.35239141e-16 + art_sys_46: 6.10072274e-25 + art_sys_47: 2.98368299e-19 + art_sys_48: 3.84313183e-15 + art_sys_49: 1.32016397e-14 + art_sys_50: -1.48173309e-14 + art_sys_51: 1.71445143e-14 + art_sys_52: 6.81723189e-15 + art_sys_53: -1.52996254e-15 + art_sys_54: 5.02136537e-16 + art_sys_55: -1.36385428e-16 + art_sys_56: -1.24617847e-16 + art_sys_57: -8.62240004e-19 + art_sys_58: 2.94831035e-16 + art_sys_59: 1.46583278e-17 + art_sys_60: -5.47505532e-14 + art_sys_61: -8.26119639e-22 + art_sys_62: -4.85664810e-19 + art_sys_63: 1.36765951e-16 + art_sys_64: 3.14764847e-13 + art_sys_65: -7.41212321e-17 + art_sys_66: 3.22012252e-17 + art_sys_67: -1.76126110e-22 + art_sys_68: -1.16703886e-18 + art_sys_69: -7.64144246e-18 + art_sys_70: -7.32722398e-13 + art_sys_71: 1.96764033e-17 + art_sys_72: -4.90488616e-21 + art_sys_73: -9.70711530e-15 + art_sys_74: 4.24700648e-14 + art_sys_75: -2.10293936e-16 + art_sys_76: -7.69948790e-18 + art_sys_77: 3.69889102e-17 + art_sys_78: -2.56404116e-16 + art_sys_79: -2.31748519e-16 + art_sys_80: -9.67242604e-15 + art_sys_81: -1.02915067e-15 + art_sys_82: 1.02878300e-16 + art_sys_83: 4.82212605e-14 + art_sys_84: -6.98074979e-16 + art_sys_85: -4.43809828e-17 + art_sys_86: -7.40912506e-12 + art_sys_87: -1.39591915e-15 + art_sys_88: -8.24760649e-12 + art_sys_89: -1.04766329e-12 + art_sys_90: -4.20890378e-11 + art_sys_91: 1.01709952e-13 + art_sys_92: 3.05044618e-10 + art_sys_93: -5.37863924e-17 + art_sys_94: 3.26627029e-10 + art_sys_95: 8.35332002e-12 + art_sys_96: 3.89981802e-12 + art_sys_97: -2.30016661e-10 + art_sys_98: -3.96825563e-09 + art_sys_99: 1.72833169e-16 + art_sys_100: 4.57021241e-11 + art_sys_101: 9.18980595e-09 + art_sys_102: -2.21747478e-08 + art_sys_103: -7.56153333e-11 + art_sys_104: -1.09869771e-15 + art_sys_105: 1.18211543e-07 + art_sys_106: 5.77878786e-11 + art_sys_107: 6.86040513e-12 + art_sys_108: -4.44742327e-13 + art_sys_109: -4.76129729e-12 + art_sys_110: 5.17018996e-09 + art_sys_111: 1.55836167e-09 + art_sys_112: -1.97101317e-09 + art_sys_113: 3.23787130e-14 + art_sys_114: -8.40634501e-07 + art_sys_115: 7.33426559e-10 + art_sys_116: -2.36159951e-09 + art_sys_117: -5.16258046e-07 + art_sys_118: 1.06355421e-09 + art_sys_119: 3.36220069e-06 + art_sys_120: -8.10038446e-09 + art_sys_121: 2.82461249e-10 + art_sys_122: -4.66139370e-06 + art_sys_123: -7.37393318e-06 + art_sys_124: -2.36271835e-10 + art_sys_125: 1.07683535e-08 + art_sys_126: 6.43479944e-10 + art_sys_127: -1.82208142e-05 + art_sys_128: 1.18111736e-09 + art_sys_129: -5.38608080e-06 + art_sys_130: 1.55199778e-09 + art_sys_131: -2.90634256e-09 + art_sys_132: 4.29799891e-06 + art_sys_133: 9.77769739e-09 + art_sys_134: 2.04510043e-11 + art_sys_135: -3.02480090e-06 + art_sys_136: 5.90112952e-09 + art_sys_137: -5.20002298e-13 + art_sys_138: 1.67144499e-14 + art_sys_139: 5.21697496e-07 + art_sys_140: 7.60353232e-08 + art_sys_141: -1.08738151e-08 + art_sys_142: -5.55828836e-10 + art_sys_143: -5.47751914e-13 + art_sys_144: -9.37764645e-13 + art_sys_145: -2.49396950e-13 + art_sys_146: -0.0 + art_sys_147: -3.25226511e-11 + art_sys_148: -1.38495323e-11 + art_sys_149: -1.38495323e-11 + art_sys_150: 5.41145756e-10 + art_sys_151: 5.41145756e-10 + art_sys_152: -8.97479815e-10 + art_sys_153: -1.43790285e-11 + art_sys_154: 6.12752440e-14 + art_sys_155: 1.53532144e-22 + art_sys_156: -3.61201111e-26 + art_sys_157: 7.67990716e-26 + art_sys_158: 0.0 + art_sys_159: -1.39742261e-13 + art_sys_160: -2.64906196e-14 + art_sys_161: -2.18311490e-13 + art_sys_162: -1.45582557e-15 + art_sys_163: -2.96123958e-12 + art_sys_164: -1.23439560e-12 + art_sys_165: 9.61800416e-14 + art_sys_166: 2.81130573e-22 + art_sys_167: -2.09084168e-22 + art_sys_168: -3.94270846e-22 + art_sys_169: -8.44009102e-23 + art_sys_170: -1.12719381e-22 + art_sys_171: 7.49031138e-23 + art_sys_172: 3.23312399e-23 + art_sys_173: -1.17627329e-23 + art_sys_174: -2.03741155e-24 + art_sys_175: -2.46068903e-26 + art_sys_176: -3.86410751e-25 + art_sys_177: 1.26993634e-24 + art_sys_178: -3.63116327e-25 + art_sys_179: 2.15584371e-25 + art_sys_180: 6.55947376e-26 + art_sys_181: -8.04362411e-27 + art_sys_182: 2.83361062e-26 + art_sys_183: 1.01224383e-27 + art_sys_184: -2.20468377e-29 + art_sys_185: -4.23735464e-29 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -13334,191 +13334,191 @@ bins: RelativeStatFSR-: -9.79673311e-07 luminosity_uncertainty: 1.58757820e-05 uncorrelated_uncertainty: 6.10607000e-06 -- art_sys_1: 5.33520165e-59 - art_sys_2: -1.50249876e-48 - art_sys_3: 2.01861099e-45 +- art_sys_1: 9.60670482e-61 + art_sys_2: 1.40913820e-48 + art_sys_3: -3.37233340e-48 art_sys_4: 1.03402116e-28 - art_sys_5: -7.27026108e-44 - art_sys_6: 4.09170014e-46 - art_sys_7: 6.60632087e-27 - art_sys_8: -3.01757497e-41 - art_sys_9: -4.82859348e-26 - art_sys_10: -6.53385106e-43 - art_sys_11: 1.35184371e-38 + art_sys_5: -3.32830234e-42 + art_sys_6: -1.04038163e-45 + art_sys_7: -6.60632087e-27 + art_sys_8: -1.59657483e-41 + art_sys_9: 4.82859348e-26 + art_sys_10: -5.15274284e-43 + art_sys_11: 2.20437005e-39 art_sys_12: 2.73981593e-26 - art_sys_13: 8.58675045e-44 - art_sys_14: 5.98149019e-24 - art_sys_15: 1.16233461e-35 - art_sys_16: -2.09855615e-22 - art_sys_17: 3.34110745e-38 - art_sys_18: 5.61842737e-35 - art_sys_19: -5.27543607e-22 - art_sys_20: 6.53432759e-38 - art_sys_21: 2.83826394e-33 + art_sys_13: -2.34397778e-40 + art_sys_14: -5.98149019e-24 + art_sys_15: -1.02057533e-35 + art_sys_16: 2.09855615e-22 + art_sys_17: -1.90886424e-39 + art_sys_18: -9.47727399e-34 + art_sys_19: 5.27543607e-22 + art_sys_20: -5.96603039e-37 + art_sys_21: -1.64268605e-32 art_sys_22: -1.34769808e-21 - art_sys_23: -1.28975032e-37 - art_sys_24: -2.16876892e-31 - art_sys_25: -3.19649500e-15 - art_sys_26: -2.92662995e-15 - art_sys_27: -6.00492617e-16 - art_sys_28: 5.98155806e-16 - art_sys_29: 6.32438792e-17 - art_sys_30: 1.15990794e-20 - art_sys_31: -6.04713028e-19 - art_sys_32: -1.96157662e-16 - art_sys_33: 8.94530298e-17 - art_sys_34: -1.14896891e-27 - art_sys_35: 3.39040007e-29 - art_sys_36: -3.27412155e-27 + art_sys_23: -1.77324300e-36 + art_sys_24: -6.66855498e-32 + art_sys_25: 4.72283314e-15 + art_sys_26: -7.31783698e-15 + art_sys_27: -5.77387432e-16 + art_sys_28: 1.15990795e-20 + art_sys_29: 6.04713027e-19 + art_sys_30: -7.81091818e-16 + art_sys_31: -5.79211460e-17 + art_sys_32: 1.46486754e-16 + art_sys_33: -1.31416551e-16 + art_sys_34: 1.69034673e-28 + art_sys_35: -1.29219916e-29 + art_sys_36: -1.22873521e-26 art_sys_37: -3.06958457e-18 - art_sys_38: -2.20343909e-17 - art_sys_39: 1.07520919e-27 - art_sys_40: -9.06249568e-26 - art_sys_41: -3.50527869e-17 - art_sys_42: -5.94770402e-17 - art_sys_43: 8.86200431e-17 - art_sys_44: 4.11917542e-17 - art_sys_45: 3.40321894e-16 - art_sys_46: -4.08297489e-26 - art_sys_47: -1.52022707e-18 - art_sys_48: 8.67885375e-16 - art_sys_49: -1.88678358e-16 - art_sys_50: -7.54466951e-19 - art_sys_51: -7.59276767e-14 - art_sys_52: 4.29877690e-14 - art_sys_53: 5.70397432e-16 - art_sys_54: -3.23366494e-15 - art_sys_55: 4.37050074e-22 - art_sys_56: -1.87229816e-19 - art_sys_57: -3.91211456e-14 - art_sys_58: -5.07399215e-23 - art_sys_59: 6.38393679e-15 - art_sys_60: -6.17805862e-15 - art_sys_61: 8.71193620e-16 - art_sys_62: 9.67270926e-16 - art_sys_63: -3.29014172e-16 - art_sys_64: -1.36642980e-15 - art_sys_65: -2.85461153e-16 - art_sys_66: 5.64347680e-17 - art_sys_67: 3.20133110e-17 - art_sys_68: 2.00472268e-15 - art_sys_69: 5.68214948e-15 - art_sys_70: -9.26473378e-14 - art_sys_71: -3.51222687e-17 - art_sys_72: 1.32284737e-14 - art_sys_73: 5.92748648e-21 - art_sys_74: 3.71874226e-18 - art_sys_75: 7.37812123e-18 - art_sys_76: -4.41736866e-18 - art_sys_77: 2.24107070e-17 - art_sys_78: -4.76048970e-16 - art_sys_79: -1.76404778e-11 - art_sys_80: 1.33254551e-18 - art_sys_81: -5.66144065e-18 - art_sys_82: -2.90680909e-18 - art_sys_83: 1.45299175e-13 - art_sys_84: 8.56248332e-12 - art_sys_85: 5.71722650e-18 - art_sys_86: 2.15680672e-13 - art_sys_87: 2.51715380e-10 - art_sys_88: -1.43100869e-19 - art_sys_89: -1.06530503e-12 - art_sys_90: -1.71231315e-10 - art_sys_91: -1.88824730e-17 - art_sys_92: -2.30459594e-09 - art_sys_93: -8.32776448e-11 - art_sys_94: -5.53510181e-11 - art_sys_95: 6.52916949e-09 - art_sys_96: 2.80575138e-17 - art_sys_97: -1.65191407e-08 - art_sys_98: -7.92385213e-12 - art_sys_99: -5.72866444e-12 - art_sys_100: 3.49084376e-20 - art_sys_101: 1.12369920e-19 - art_sys_102: 8.81845785e-08 - art_sys_103: -3.73045161e-10 - art_sys_104: -1.63508811e-08 - art_sys_105: -1.21528328e-10 - art_sys_106: -8.34889118e-11 - art_sys_107: 5.45946852e-07 - art_sys_108: 1.82533020e-11 - art_sys_109: -4.11677816e-07 - art_sys_110: -7.12029977e-09 - art_sys_111: -1.05360254e-10 - art_sys_112: 2.09382812e-06 - art_sys_113: 3.35611826e-06 - art_sys_114: -4.01189528e-06 - art_sys_115: -3.64252561e-10 - art_sys_116: -1.28553653e-05 - art_sys_117: -8.09390063e-17 - art_sys_118: -4.50857988e-06 - art_sys_119: 7.90678908e-12 - art_sys_120: -1.94911025e-12 - art_sys_121: -7.90536436e-13 - art_sys_122: 3.05126442e-11 - art_sys_123: -5.17006855e-10 - art_sys_124: 5.47383411e-12 - art_sys_125: -4.00899911e-06 - art_sys_126: -1.12834054e-12 - art_sys_127: -8.03888959e-07 - art_sys_128: -5.45746880e-12 - art_sys_129: -2.48320451e-11 - art_sys_130: -8.67819347e-09 - art_sys_131: 1.40097988e-09 - art_sys_132: -3.80424169e-15 - art_sys_133: -5.85956949e-15 - art_sys_134: 3.64812744e-14 - art_sys_135: 1.66363347e-19 - art_sys_136: -1.01393366e-19 - art_sys_137: 4.81519623e-20 - art_sys_138: -1.07829279e-20 - art_sys_139: -8.94424525e-21 - art_sys_140: -1.15285756e-20 - art_sys_141: -3.60156498e-17 - art_sys_142: 9.01143377e-22 - art_sys_143: -4.45420586e-22 - art_sys_144: -1.53596578e-17 - art_sys_145: 2.95145743e-17 - art_sys_146: 1.37767491e-16 - art_sys_147: 2.67129067e-17 - art_sys_148: -1.91288989e-17 - art_sys_149: 4.01842022e-18 - art_sys_150: -3.70953411e-18 - art_sys_151: 5.72247883e-20 - art_sys_152: 1.19446389e-21 - art_sys_153: -7.22201522e-22 - art_sys_154: -1.25053103e-22 - art_sys_155: 7.31810701e-23 - art_sys_156: -8.20262556e-23 - art_sys_157: -1.80678127e-23 - art_sys_158: 9.83264546e-24 - art_sys_159: 1.03672490e-22 - art_sys_160: -2.49162798e-22 - art_sys_161: -3.31772974e-24 - art_sys_162: 6.18145129e-25 - art_sys_163: -9.79705765e-24 - art_sys_164: 4.18813334e-23 - art_sys_165: 1.07499922e-23 - art_sys_166: 4.06861129e-24 - art_sys_167: 3.26971920e-23 - art_sys_168: 6.79126104e-14 - art_sys_169: -1.23930656e-24 - art_sys_170: -3.63168946e-15 - art_sys_171: -1.40485400e-14 - art_sys_172: -5.58722228e-25 - art_sys_173: 8.21093292e-27 - art_sys_174: -1.86116244e-15 - art_sys_175: 0.0 - art_sys_176: -4.53809835e-19 - art_sys_177: 0.0 - art_sys_178: -6.94579311e-19 - art_sys_179: 2.16310899e-22 - art_sys_180: -2.48511786e-23 - art_sys_181: 6.08822908e-29 - art_sys_182: 0.0 - art_sys_183: 2.11576874e-27 - art_sys_184: 1.11699944e-25 - art_sys_185: 1.59836435e-29 + art_sys_38: -8.96755555e-17 + art_sys_39: -4.17678762e-28 + art_sys_40: 9.91010705e-25 + art_sys_41: 3.50528047e-17 + art_sys_42: 5.94771512e-17 + art_sys_43: -1.67072152e-17 + art_sys_44: -2.97658079e-16 + art_sys_45: 3.32242774e-16 + art_sys_46: 1.00753052e-25 + art_sys_47: -5.43291554e-19 + art_sys_48: 8.60412764e-16 + art_sys_49: -5.23922412e-14 + art_sys_50: 1.62403670e-14 + art_sys_51: -1.95513454e-14 + art_sys_52: 1.43157420e-15 + art_sys_53: -8.05501243e-16 + art_sys_54: 1.55293018e-16 + art_sys_55: 1.81042935e-16 + art_sys_56: 2.64520807e-16 + art_sys_57: 3.29468732e-19 + art_sys_58: -5.71343123e-16 + art_sys_59: -2.45206375e-16 + art_sys_60: -3.23421965e-15 + art_sys_61: -4.75712296e-23 + art_sys_62: 3.33491487e-19 + art_sys_63: -4.62196824e-16 + art_sys_64: 3.91214538e-14 + art_sys_65: 8.73915957e-17 + art_sys_66: -5.70636072e-17 + art_sys_67: -3.97788950e-23 + art_sys_68: -1.90658477e-16 + art_sys_69: -1.72088927e-16 + art_sys_70: -9.26497960e-14 + art_sys_71: 1.13357137e-17 + art_sys_72: 2.31050744e-21 + art_sys_73: 2.14786082e-14 + art_sys_74: -2.58460934e-14 + art_sys_75: 8.76655678e-16 + art_sys_76: -2.48000059e-17 + art_sys_77: -6.47212604e-18 + art_sys_78: 2.11701897e-16 + art_sys_79: -1.88238034e-15 + art_sys_80: 3.54039872e-15 + art_sys_81: -1.60547701e-17 + art_sys_82: -4.96513862e-16 + art_sys_83: 3.84125480e-15 + art_sys_84: 6.91485229e-16 + art_sys_85: 1.36471754e-16 + art_sys_86: -1.51049713e-11 + art_sys_87: -1.24004514e-16 + art_sys_88: -1.49114298e-11 + art_sys_89: 9.36274381e-13 + art_sys_90: -1.76404305e-11 + art_sys_91: 2.41109802e-14 + art_sys_92: 8.51669273e-12 + art_sys_93: -3.23641931e-19 + art_sys_94: 2.51567911e-10 + art_sys_95: 6.94405951e-13 + art_sys_96: -7.20007141e-12 + art_sys_97: -6.19957171e-12 + art_sys_98: 1.67912738e-10 + art_sys_99: 1.57644004e-16 + art_sys_100: 1.64995713e-11 + art_sys_101: 2.68528467e-09 + art_sys_102: 6.81835926e-09 + art_sys_103: -3.08489136e-11 + art_sys_104: 2.70800970e-16 + art_sys_105: 1.51914981e-08 + art_sys_106: 2.64314791e-11 + art_sys_107: -8.85535732e-12 + art_sys_108: 3.04691413e-13 + art_sys_109: -2.24980205e-11 + art_sys_110: 2.61631475e-09 + art_sys_111: 8.82832010e-08 + art_sys_112: -4.81859629e-09 + art_sys_113: 1.73150593e-13 + art_sys_114: -1.67771587e-08 + art_sys_115: -8.00886265e-10 + art_sys_116: -2.07640130e-09 + art_sys_117: -5.45900329e-07 + art_sys_118: -2.12533898e-09 + art_sys_119: -4.11530036e-07 + art_sys_120: -1.13530562e-08 + art_sys_121: -5.01518915e-10 + art_sys_122: -2.09521412e-06 + art_sys_123: 3.35802186e-06 + art_sys_124: 3.23071240e-10 + art_sys_125: -3.76646974e-09 + art_sys_126: -6.54484703e-10 + art_sys_127: -4.04416014e-06 + art_sys_128: -1.21342119e-09 + art_sys_129: -1.29364424e-05 + art_sys_130: -2.68300062e-09 + art_sys_131: 4.09943957e-09 + art_sys_132: -4.43388263e-06 + art_sys_133: -9.24865805e-09 + art_sys_134: -2.04548481e-11 + art_sys_135: 4.01803985e-06 + art_sys_136: -7.47415847e-09 + art_sys_137: 5.63867805e-13 + art_sys_138: -1.30042136e-14 + art_sys_139: -7.85687353e-07 + art_sys_140: -1.14555521e-07 + art_sys_141: 1.75327564e-08 + art_sys_142: -6.23381086e-10 + art_sys_143: 7.81789107e-13 + art_sys_144: 1.50485942e-12 + art_sys_145: 1.55838844e-12 + art_sys_146: -0.0 + art_sys_147: 2.02729547e-10 + art_sys_148: -1.97256800e-09 + art_sys_149: -1.97256800e-09 + art_sys_150: -7.48786139e-10 + art_sys_151: -7.48786139e-10 + art_sys_152: 4.28624042e-09 + art_sys_153: -2.42291746e-10 + art_sys_154: -1.17145544e-13 + art_sys_155: -1.12694062e-21 + art_sys_156: 5.73554496e-26 + art_sys_157: -1.40926573e-26 + art_sys_158: -0.0 + art_sys_159: -2.24496732e-12 + art_sys_160: 3.74040280e-13 + art_sys_161: 4.18185262e-13 + art_sys_162: 3.11560938e-14 + art_sys_163: 7.43917928e-12 + art_sys_164: -8.33526110e-13 + art_sys_165: -7.47913906e-14 + art_sys_166: -1.24321628e-20 + art_sys_167: -1.48517142e-20 + art_sys_168: 3.05853118e-21 + art_sys_169: -2.01687687e-22 + art_sys_170: -4.37924279e-22 + art_sys_171: 2.95665380e-22 + art_sys_172: 4.72780212e-23 + art_sys_173: -4.44881350e-23 + art_sys_174: -1.67671357e-23 + art_sys_175: -8.11421334e-25 + art_sys_176: 4.30183799e-25 + art_sys_177: 3.79785487e-24 + art_sys_178: -1.76450459e-24 + art_sys_179: 1.00065667e-24 + art_sys_180: 2.50371829e-25 + art_sys_181: -3.49871752e-26 + art_sys_182: -4.83346801e-25 + art_sys_183: -8.19954416e-28 + art_sys_184: -2.37339506e-28 + art_sys_185: 7.96420305e-30 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -13625,191 +13625,191 @@ bins: RelativeStatFSR-: -5.34148296e-07 luminosity_uncertainty: 8.20058200e-06 uncorrelated_uncertainty: 3.15407000e-06 -- art_sys_1: 4.83327483e-60 - art_sys_2: -1.05242941e-49 - art_sys_3: 1.82850531e-46 +- art_sys_1: 8.62046908e-62 + art_sys_2: 1.27643072e-49 + art_sys_3: -2.48697169e-49 art_sys_4: 9.36640690e-30 - art_sys_5: -5.43221667e-45 - art_sys_6: 6.49754000e-47 - art_sys_7: 4.78144862e-28 - art_sys_8: -2.08034307e-42 - art_sys_9: -3.40400120e-27 - art_sys_10: -4.59417288e-44 - art_sys_11: 2.22292924e-39 + art_sys_5: -2.39778397e-43 + art_sys_6: -9.34365795e-47 + art_sys_7: -4.78144862e-28 + art_sys_8: -1.15636530e-42 + art_sys_9: 3.40400120e-27 + art_sys_10: -3.65543412e-44 + art_sys_11: 3.11802306e-40 art_sys_12: -7.02301892e-27 - art_sys_13: 1.63131949e-43 - art_sys_14: 2.41686020e-24 - art_sys_15: 7.20254338e-37 - art_sys_16: -2.83913082e-23 - art_sys_17: 4.56203911e-39 - art_sys_18: 1.38362154e-35 - art_sys_19: -8.62537450e-23 - art_sys_20: 1.05877599e-38 - art_sys_21: 6.06930773e-34 + art_sys_13: -6.59567655e-41 + art_sys_14: -2.41686020e-24 + art_sys_15: -7.48909022e-37 + art_sys_16: 2.83913082e-23 + art_sys_17: -1.08333121e-39 + art_sys_18: -8.05489287e-35 + art_sys_19: 8.62537450e-23 + art_sys_20: -9.72593126e-38 + art_sys_21: -1.72864006e-33 art_sys_22: -2.18675276e-22 - art_sys_23: -4.68874908e-38 - art_sys_24: -4.90882529e-32 - art_sys_25: -5.25443622e-15 - art_sys_26: 1.76622505e-15 - art_sys_27: 1.36547180e-15 - art_sys_28: -6.28324273e-16 - art_sys_29: -2.18527403e-17 - art_sys_30: -1.14050340e-20 - art_sys_31: -2.66799907e-20 - art_sys_32: -1.10351072e-16 - art_sys_33: 3.87465611e-17 - art_sys_34: -1.47312388e-28 - art_sys_35: 2.87310567e-30 - art_sys_36: -1.62914428e-26 - art_sys_37: -2.64942429e-19 - art_sys_38: -1.02534019e-16 - art_sys_39: 1.43683585e-28 - art_sys_40: 3.43540499e-27 - art_sys_41: -5.79735254e-18 - art_sys_42: 4.07035074e-18 - art_sys_43: 2.41914668e-17 - art_sys_44: -1.07023966e-16 - art_sys_45: 2.28065945e-16 - art_sys_46: -2.10024650e-27 - art_sys_47: -2.21126125e-20 - art_sys_48: 4.43392752e-17 - art_sys_49: 1.59988326e-16 - art_sys_50: -7.18037116e-18 - art_sys_51: 1.15146882e-13 - art_sys_52: 1.00754325e-14 - art_sys_53: 1.29608327e-15 - art_sys_54: -1.86801544e-16 - art_sys_55: 2.53950318e-23 - art_sys_56: -2.76337497e-18 - art_sys_57: -1.57027825e-15 - art_sys_58: -6.00711768e-25 - art_sys_59: -9.05321350e-15 - art_sys_60: 6.56906355e-15 - art_sys_61: 3.73408723e-16 - art_sys_62: 3.10983580e-16 - art_sys_63: -8.89340716e-17 - art_sys_64: -1.69796315e-15 - art_sys_65: -3.32263005e-16 - art_sys_66: 2.02584508e-17 - art_sys_67: 4.67216198e-17 - art_sys_68: -2.30819786e-15 - art_sys_69: 6.60757833e-15 - art_sys_70: 5.34772310e-16 - art_sys_71: -1.50011780e-18 - art_sys_72: 1.91820417e-14 - art_sys_73: -4.95817806e-23 - art_sys_74: -7.00166837e-19 - art_sys_75: -1.35949546e-17 - art_sys_76: -2.86537788e-18 - art_sys_77: 6.21944298e-18 - art_sys_78: -2.21057168e-16 - art_sys_79: -7.02977115e-13 - art_sys_80: -8.24966625e-18 - art_sys_81: 8.93586370e-19 - art_sys_82: -5.69862455e-20 - art_sys_83: 3.46532683e-15 - art_sys_84: -9.26206538e-12 - art_sys_85: 1.73791497e-19 - art_sys_86: -5.89133168e-15 - art_sys_87: 1.52296646e-11 - art_sys_88: 1.19825753e-19 - art_sys_89: 8.95911291e-13 - art_sys_90: -1.91105925e-10 - art_sys_91: -1.27379332e-18 - art_sys_92: 7.45175967e-10 - art_sys_93: -8.96074708e-11 - art_sys_94: -2.61496211e-11 - art_sys_95: 1.26954783e-09 - art_sys_96: -3.13038023e-17 - art_sys_97: 3.22421031e-09 - art_sys_98: -1.17790062e-11 - art_sys_99: 8.86588692e-12 - art_sys_100: 2.15996781e-19 - art_sys_101: 7.95182002e-20 - art_sys_102: 7.76212781e-09 - art_sys_103: 3.02386518e-10 - art_sys_104: 6.18430046e-08 - art_sys_105: 1.00584905e-10 - art_sys_106: 7.55259590e-11 - art_sys_107: 1.24794409e-09 - art_sys_108: 1.58124880e-11 - art_sys_109: -3.66654577e-07 - art_sys_110: 2.79390013e-10 - art_sys_111: 3.21993434e-11 - art_sys_112: -3.80488691e-07 - art_sys_113: 1.40110562e-06 - art_sys_114: 2.72063617e-06 - art_sys_115: -2.83420010e-10 - art_sys_116: -3.15974391e-06 - art_sys_117: 1.02480753e-16 - art_sys_118: -9.28979859e-06 - art_sys_119: -2.10807592e-12 - art_sys_120: -7.67312168e-13 - art_sys_121: -1.20266997e-12 - art_sys_122: 9.19913372e-12 - art_sys_123: 6.57041378e-10 - art_sys_124: 4.33730828e-12 - art_sys_125: 4.61489725e-06 - art_sys_126: 6.79448142e-12 - art_sys_127: 1.38434408e-06 - art_sys_128: 1.05189976e-11 - art_sys_129: 4.20890377e-11 - art_sys_130: 9.46136286e-10 - art_sys_131: 5.13645439e-10 - art_sys_132: 2.28200954e-15 - art_sys_133: -7.18398947e-15 - art_sys_134: 7.75254533e-13 - art_sys_135: -1.52573696e-19 - art_sys_136: 9.51094699e-20 - art_sys_137: -7.41473519e-20 - art_sys_138: -7.59096112e-21 - art_sys_139: 6.39260268e-21 - art_sys_140: 1.33560770e-20 - art_sys_141: -2.68508193e-17 - art_sys_142: -7.56205404e-22 - art_sys_143: 6.10618446e-21 - art_sys_144: 1.69581124e-17 - art_sys_145: -4.25847283e-17 - art_sys_146: -1.52471444e-16 - art_sys_147: -3.47877022e-17 - art_sys_148: 1.88007709e-17 - art_sys_149: -4.47905335e-18 - art_sys_150: 3.82953005e-18 - art_sys_151: 2.13723956e-19 - art_sys_152: -1.59338429e-21 - art_sys_153: 2.85709863e-22 - art_sys_154: 6.11626442e-23 - art_sys_155: 9.06974547e-23 - art_sys_156: -9.90764262e-23 - art_sys_157: -1.93458013e-23 - art_sys_158: -2.85746597e-23 - art_sys_159: -1.05164529e-22 - art_sys_160: 2.37788077e-22 - art_sys_161: 3.10935386e-24 - art_sys_162: -9.30969020e-25 - art_sys_163: 1.13058708e-23 - art_sys_164: -5.04054806e-23 - art_sys_165: -9.69108850e-24 - art_sys_166: -4.13070746e-24 - art_sys_167: -2.99357744e-23 - art_sys_168: 1.63719164e-13 - art_sys_169: 1.87907571e-24 - art_sys_170: 3.47179161e-15 - art_sys_171: 2.70906904e-15 - art_sys_172: 1.40398795e-25 - art_sys_173: -1.69426842e-25 - art_sys_174: 5.18197914e-15 - art_sys_175: 0.0 - art_sys_176: 3.74113741e-17 - art_sys_177: 0.0 - art_sys_178: -2.79443627e-19 - art_sys_179: -1.58910737e-22 - art_sys_180: 1.48916858e-23 - art_sys_181: 1.27746964e-29 - art_sys_182: 0.0 - art_sys_183: -8.21290675e-28 - art_sys_184: -4.77384075e-27 - art_sys_185: -1.96293681e-29 + art_sys_23: -2.44681913e-37 + art_sys_24: -1.84786952e-31 + art_sys_25: -4.92687589e-15 + art_sys_26: -1.22115383e-14 + art_sys_27: -1.13634473e-15 + art_sys_28: -1.14050340e-20 + art_sys_29: 2.66799907e-20 + art_sys_30: -3.23490644e-16 + art_sys_31: -6.22407209e-17 + art_sys_32: -9.15663812e-17 + art_sys_33: -1.53816620e-16 + art_sys_34: 6.40940367e-29 + art_sys_35: -1.09094290e-30 + art_sys_36: -1.71824175e-27 + art_sys_37: -2.64942424e-19 + art_sys_38: -1.87783188e-16 + art_sys_39: -5.50602815e-29 + art_sys_40: 1.97000643e-26 + art_sys_41: 5.79735280e-18 + art_sys_42: -4.07035538e-18 + art_sys_43: -9.91445393e-17 + art_sys_44: 1.74180497e-16 + art_sys_45: -3.45180857e-16 + art_sys_46: -5.09432067e-27 + art_sys_47: 2.47875135e-20 + art_sys_48: 4.44499659e-17 + art_sys_49: -2.44575472e-14 + art_sys_50: -3.54053589e-14 + art_sys_51: 2.69855112e-15 + art_sys_52: -2.83272409e-15 + art_sys_53: 8.54755393e-16 + art_sys_54: 9.38979654e-16 + art_sys_55: -1.39947772e-16 + art_sys_56: -3.71595247e-16 + art_sys_57: 6.68046323e-18 + art_sys_58: 1.36796455e-15 + art_sys_59: 4.26955776e-16 + art_sys_60: -1.87089536e-16 + art_sys_61: -2.79844723e-24 + art_sys_62: 2.65456601e-19 + art_sys_63: 5.90723214e-16 + art_sys_64: 1.56955669e-15 + art_sys_65: 1.92824389e-17 + art_sys_66: 7.25315758e-18 + art_sys_67: -4.90906202e-26 + art_sys_68: 2.60992774e-16 + art_sys_69: 2.15978507e-16 + art_sys_70: 5.35699932e-16 + art_sys_71: 6.05674759e-19 + art_sys_72: 5.14556248e-23 + art_sys_73: -3.06416091e-14 + art_sys_74: -3.75485098e-14 + art_sys_75: -8.71801188e-16 + art_sys_76: 3.50267674e-18 + art_sys_77: -1.33775476e-18 + art_sys_78: -2.13795329e-16 + art_sys_79: 9.74503266e-16 + art_sys_80: 7.72507925e-16 + art_sys_81: -4.43575133e-16 + art_sys_82: -1.80018430e-16 + art_sys_83: -3.45405023e-15 + art_sys_84: -2.09233218e-16 + art_sys_85: -2.00421776e-16 + art_sys_86: -2.45098049e-12 + art_sys_87: 4.41801061e-17 + art_sys_88: 5.22275698e-13 + art_sys_89: -3.94409798e-12 + art_sys_90: -7.02942346e-13 + art_sys_91: -1.35799037e-14 + art_sys_92: -9.34692108e-12 + art_sys_93: 1.64064963e-18 + art_sys_94: 1.49504450e-11 + art_sys_95: -6.45401908e-13 + art_sys_96: 3.43549838e-11 + art_sys_97: 2.06039482e-11 + art_sys_98: 1.86343145e-10 + art_sys_99: 9.10161508e-18 + art_sys_100: -2.97567344e-12 + art_sys_101: -1.86844164e-10 + art_sys_102: 1.68485425e-09 + art_sys_103: 4.89624899e-12 + art_sys_104: 9.83865491e-17 + art_sys_105: -5.13361995e-09 + art_sys_106: -2.41254126e-12 + art_sys_107: 3.43756474e-12 + art_sys_108: -5.52275603e-13 + art_sys_109: -3.74447870e-11 + art_sys_110: 4.18113295e-10 + art_sys_111: 7.89542613e-09 + art_sys_112: 1.26971291e-09 + art_sys_113: 2.73219468e-13 + art_sys_114: 6.11746250e-08 + art_sys_115: 3.04847846e-12 + art_sys_116: -4.19237368e-10 + art_sys_117: -1.52301900e-09 + art_sys_118: 1.16177045e-08 + art_sys_119: -3.66324000e-07 + art_sys_120: 1.27382294e-09 + art_sys_121: 5.22623369e-11 + art_sys_122: 3.81375865e-07 + art_sys_123: 1.40459797e-06 + art_sys_124: -8.61832585e-11 + art_sys_125: -5.26460800e-09 + art_sys_126: 4.01272236e-10 + art_sys_127: 2.70793077e-06 + art_sys_128: -4.13588520e-12 + art_sys_129: -3.28473395e-06 + art_sys_130: -1.65990380e-09 + art_sys_131: 1.29552269e-08 + art_sys_132: -9.31286571e-06 + art_sys_133: -2.45666259e-08 + art_sys_134: -4.46719799e-11 + art_sys_135: -4.61241031e-06 + art_sys_136: 4.95829171e-09 + art_sys_137: -2.28899311e-13 + art_sys_138: -1.97901999e-15 + art_sys_139: 1.34983930e-06 + art_sys_140: 1.97394506e-07 + art_sys_141: -2.75286031e-08 + art_sys_142: -2.71110481e-09 + art_sys_143: -1.37045793e-12 + art_sys_144: -2.37360409e-12 + art_sys_145: 3.57351720e-13 + art_sys_146: -0.0 + art_sys_147: 4.34854189e-11 + art_sys_148: -1.71453745e-09 + art_sys_149: -1.71453745e-09 + art_sys_150: 1.43461557e-09 + art_sys_151: 1.43461557e-09 + art_sys_152: -2.98427763e-10 + art_sys_153: -2.29193190e-10 + art_sys_154: 1.27904584e-13 + art_sys_155: -2.11511325e-22 + art_sys_156: -6.77242070e-26 + art_sys_157: -9.77751746e-26 + art_sys_158: 0.0 + art_sys_159: -2.37799894e-12 + art_sys_160: 2.17390199e-13 + art_sys_161: -5.66841565e-13 + art_sys_162: 1.78097096e-14 + art_sys_163: -2.29696598e-12 + art_sys_164: -4.25868281e-12 + art_sys_165: -2.58072836e-14 + art_sys_166: -9.45331898e-21 + art_sys_167: -1.34588870e-20 + art_sys_168: 1.06329757e-21 + art_sys_169: -4.25999037e-22 + art_sys_170: -8.25635015e-22 + art_sys_171: 5.42092284e-22 + art_sys_172: 1.65703493e-22 + art_sys_173: -8.35298181e-23 + art_sys_174: -2.21678407e-23 + art_sys_175: -7.90394827e-25 + art_sys_176: -1.13187051e-24 + art_sys_177: 8.16727265e-24 + art_sys_178: -2.91735841e-24 + art_sys_179: 1.69717109e-24 + art_sys_180: 4.39827131e-25 + art_sys_181: -6.11708106e-26 + art_sys_182: -3.00842551e-25 + art_sys_183: 3.68297024e-27 + art_sys_184: -1.89270962e-28 + art_sys_185: 5.41195197e-29 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -13916,191 +13916,191 @@ bins: RelativeStatFSR-: -3.27886810e-07 luminosity_uncertainty: 4.77097400e-06 uncorrelated_uncertainty: 1.83499000e-06 -- art_sys_1: 6.86807021e-62 - art_sys_2: -1.32366662e-51 - art_sys_3: 2.59819340e-48 +- art_sys_1: 1.22217408e-63 + art_sys_2: 1.81372950e-51 + art_sys_3: -3.41447886e-51 art_sys_4: 1.33090872e-31 - art_sys_5: -7.46323646e-47 - art_sys_6: 4.37503120e-49 - art_sys_7: 6.29779359e-30 - art_sys_8: -2.50714573e-44 - art_sys_9: -4.29638954e-29 - art_sys_10: -5.77309784e-46 - art_sys_11: 5.30333122e-41 + art_sys_5: -3.12673118e-45 + art_sys_6: -1.32479963e-48 + art_sys_7: -6.29779359e-30 + art_sys_8: -1.47022716e-44 + art_sys_9: 4.29638954e-29 + art_sys_10: -4.67604841e-46 + art_sys_11: 7.00871391e-42 art_sys_12: -2.58088389e-28 - art_sys_13: 4.68458236e-45 - art_sys_14: 7.47915044e-26 - art_sys_15: 9.10730654e-39 - art_sys_16: -6.30548225e-25 - art_sys_17: 1.01897841e-40 - art_sys_18: 2.06544547e-38 - art_sys_19: -2.11661720e-24 - art_sys_20: 2.45923054e-40 - art_sys_21: 4.00822626e-36 - art_sys_22: -5.08930214e-24 - art_sys_23: -9.06899361e-40 - art_sys_24: -2.13933375e-33 - art_sys_25: -4.19736095e-15 - art_sys_26: 8.09126698e-16 - art_sys_27: -1.13123975e-15 - art_sys_28: -7.12887135e-16 - art_sys_29: -5.59896814e-17 - art_sys_30: -4.64984244e-22 - art_sys_31: 9.72562591e-22 - art_sys_32: 3.63442968e-17 - art_sys_33: 1.61232552e-17 - art_sys_34: 3.68851037e-30 - art_sys_35: -5.75967521e-33 - art_sys_36: 2.52492202e-29 - art_sys_37: 3.94180745e-22 - art_sys_38: -2.67928544e-17 - art_sys_39: 1.56193287e-30 - art_sys_40: 2.16494582e-28 - art_sys_41: -8.48565732e-20 - art_sys_42: 2.51195623e-19 - art_sys_43: -6.56332902e-17 - art_sys_44: -1.25751336e-16 - art_sys_45: 8.29854244e-17 - art_sys_46: 3.82788528e-29 - art_sys_47: -1.34598585e-23 - art_sys_48: -9.44540172e-19 - art_sys_49: 2.62466866e-16 - art_sys_50: -3.03835663e-20 - art_sys_51: -2.78756592e-14 - art_sys_52: 4.21129961e-14 - art_sys_53: -5.27044924e-16 - art_sys_54: -2.85739991e-17 - art_sys_55: 3.78090089e-24 - art_sys_56: -2.20434227e-19 - art_sys_57: -1.80207141e-17 - art_sys_58: -8.57623348e-26 - art_sys_59: -1.25272389e-14 - art_sys_60: 7.74795519e-16 - art_sys_61: -1.14952235e-15 - art_sys_62: -3.95145232e-16 - art_sys_63: 4.25619940e-17 - art_sys_64: 3.55452689e-16 - art_sys_65: 1.93002323e-16 - art_sys_66: -8.63475504e-17 - art_sys_67: 3.16862682e-17 - art_sys_68: 1.41655732e-15 - art_sys_69: -2.33192523e-15 - art_sys_70: 2.11385372e-16 - art_sys_71: 1.72872047e-19 - art_sys_72: -1.33380132e-14 - art_sys_73: 2.13074729e-23 - art_sys_74: -4.31309737e-20 - art_sys_75: 3.50849860e-19 - art_sys_76: -1.35428756e-17 - art_sys_77: -4.21746161e-18 - art_sys_78: -3.98821342e-17 - art_sys_79: 9.45123111e-14 - art_sys_80: -4.03840710e-18 - art_sys_81: -8.92149083e-20 - art_sys_82: -1.37473114e-18 - art_sys_83: -1.97753439e-14 - art_sys_84: -2.46506788e-13 - art_sys_85: 7.57010629e-20 - art_sys_86: 9.81758317e-17 - art_sys_87: -1.63359358e-12 - art_sys_88: -4.29854523e-19 - art_sys_89: -5.92155140e-15 - art_sys_90: -1.19109157e-12 - art_sys_91: -2.82227463e-18 - art_sys_92: -2.03294397e-11 - art_sys_93: 7.82181213e-12 - art_sys_94: 1.75312893e-11 - art_sys_95: -1.41102677e-11 - art_sys_96: -8.01117317e-17 - art_sys_97: 3.73753218e-10 - art_sys_98: 1.02021538e-12 - art_sys_99: 1.05556943e-13 - art_sys_100: -2.11450100e-19 - art_sys_101: -2.76114194e-19 - art_sys_102: -9.52609838e-10 - art_sys_103: -8.24112501e-12 - art_sys_104: 6.38397049e-10 - art_sys_105: 3.20126318e-10 - art_sys_106: -1.93013021e-11 - art_sys_107: -7.73532433e-09 - art_sys_108: -3.99817558e-10 - art_sys_109: 4.17858936e-09 - art_sys_110: 1.24638353e-10 - art_sys_111: 4.29963809e-10 - art_sys_112: -3.88257133e-08 - art_sys_113: -3.99879272e-08 - art_sys_114: 1.64249699e-07 - art_sys_115: -3.59847432e-10 - art_sys_116: 9.52416928e-08 - art_sys_117: -3.27450584e-16 - art_sys_118: -1.07589264e-06 - art_sys_119: -3.03138402e-11 - art_sys_120: 1.03841537e-13 - art_sys_121: 8.01519418e-13 - art_sys_122: 1.32706540e-12 - art_sys_123: 2.50500206e-09 - art_sys_124: 2.61822874e-12 - art_sys_125: 2.77970664e-06 - art_sys_126: 8.08849632e-12 - art_sys_127: -3.88289704e-06 - art_sys_128: -2.67219069e-11 - art_sys_129: -2.46834012e-10 - art_sys_130: -1.86231885e-07 - art_sys_131: 2.85456704e-08 - art_sys_132: -7.49880024e-14 - art_sys_133: -1.73206909e-13 - art_sys_134: 5.86654390e-13 - art_sys_135: 4.46852757e-19 - art_sys_136: -9.81793434e-20 - art_sys_137: 9.69089925e-20 - art_sys_138: 1.11731820e-20 - art_sys_139: 1.25171241e-20 - art_sys_140: -8.10305684e-21 - art_sys_141: 4.16689317e-17 - art_sys_142: 1.92343179e-21 - art_sys_143: 1.02262557e-20 - art_sys_144: 2.23670087e-18 - art_sys_145: 1.28066780e-16 - art_sys_146: -2.28828428e-17 - art_sys_147: 3.25698850e-17 - art_sys_148: 7.20404689e-18 - art_sys_149: 1.51042771e-18 - art_sys_150: 2.23712554e-18 - art_sys_151: -3.12253499e-18 - art_sys_152: 4.99727730e-21 - art_sys_153: -5.85987496e-21 - art_sys_154: 6.59573592e-22 - art_sys_155: 3.02791656e-21 - art_sys_156: -3.54238598e-21 - art_sys_157: -7.12134000e-22 - art_sys_158: -2.87530703e-22 - art_sys_159: 7.89666163e-23 - art_sys_160: 3.17816095e-22 - art_sys_161: 6.15167100e-24 - art_sys_162: 2.40435606e-24 - art_sys_163: -5.00159298e-24 - art_sys_164: 3.68297935e-23 - art_sys_165: -1.54939919e-23 - art_sys_166: -3.80113676e-25 - art_sys_167: -4.87873372e-23 - art_sys_168: 1.91248415e-14 - art_sys_169: -7.07713163e-24 - art_sys_170: 5.22202911e-16 - art_sys_171: -9.81754539e-14 - art_sys_172: -6.22762937e-24 - art_sys_173: 3.61497177e-26 - art_sys_174: -6.31694815e-15 - art_sys_175: 0.0 - art_sys_176: 1.39280721e-16 - art_sys_177: 0.0 - art_sys_178: -1.60746045e-17 - art_sys_179: 4.35654996e-21 - art_sys_180: -4.89720150e-22 - art_sys_181: 8.50335433e-28 - art_sys_182: 0.0 - art_sys_183: 4.91529764e-26 - art_sys_184: 2.37917070e-24 - art_sys_185: 3.78698549e-28 + art_sys_13: -1.91607572e-42 + art_sys_14: -7.47915044e-26 + art_sys_15: -5.58111478e-39 + art_sys_16: 6.30548225e-25 + art_sys_17: -3.47082253e-41 + art_sys_18: -1.09127387e-36 + art_sys_19: 2.11661720e-24 + art_sys_20: -2.27162172e-39 + art_sys_21: -2.73244878e-35 + art_sys_22: -5.08930212e-24 + art_sys_23: -4.44894549e-39 + art_sys_24: -6.11226471e-33 + art_sys_25: 6.41957593e-16 + art_sys_26: 9.33077699e-16 + art_sys_27: -7.93248173e-16 + art_sys_28: -4.64984245e-22 + art_sys_29: -9.72562592e-22 + art_sys_30: -1.73894707e-16 + art_sys_31: 1.01973787e-16 + art_sys_32: -1.34099972e-16 + art_sys_33: 8.65734945e-17 + art_sys_34: -4.07114996e-30 + art_sys_35: 2.18197065e-33 + art_sys_36: -9.70881969e-30 + art_sys_37: 3.94180657e-22 + art_sys_38: 5.23457011e-17 + art_sys_39: -5.83581082e-31 + art_sys_40: -9.70095642e-28 + art_sys_41: 8.48565759e-20 + art_sys_42: -2.51195644e-19 + art_sys_43: 1.48901434e-17 + art_sys_44: -8.94276169e-18 + art_sys_45: 1.09827739e-16 + art_sys_46: -3.78525097e-28 + art_sys_47: 3.99960255e-23 + art_sys_48: -9.44346141e-19 + art_sys_49: 4.37127318e-14 + art_sys_50: -4.93243394e-14 + art_sys_51: 1.94963174e-14 + art_sys_52: -9.25102881e-15 + art_sys_53: -5.07704166e-15 + art_sys_54: 4.82067326e-16 + art_sys_55: 5.93833415e-17 + art_sys_56: 8.02390394e-17 + art_sys_57: 1.03667773e-20 + art_sys_58: 3.72589321e-15 + art_sys_59: 7.21547073e-16 + art_sys_60: -2.62011294e-17 + art_sys_61: -4.17076348e-25 + art_sys_62: -9.64775586e-20 + art_sys_63: -8.71208536e-17 + art_sys_64: 1.79030143e-17 + art_sys_65: -2.87226929e-17 + art_sys_66: -1.07040313e-16 + art_sys_67: 4.52743941e-26 + art_sys_68: -2.68909112e-17 + art_sys_69: -1.89390364e-17 + art_sys_70: 2.11196209e-16 + art_sys_71: -5.34926355e-20 + art_sys_72: -6.75162299e-25 + art_sys_73: 2.56774108e-14 + art_sys_74: -4.60363273e-14 + art_sys_75: -1.76227141e-15 + art_sys_76: -2.65444318e-16 + art_sys_77: 6.10049299e-21 + art_sys_78: 1.43616779e-17 + art_sys_79: -2.29061049e-15 + art_sys_80: 1.51404868e-16 + art_sys_81: -1.67879739e-16 + art_sys_82: -3.43312330e-16 + art_sys_83: 1.29712484e-16 + art_sys_84: 8.97391255e-16 + art_sys_85: 6.54859892e-16 + art_sys_86: 8.77712890e-13 + art_sys_87: 1.73820246e-18 + art_sys_88: -7.95197162e-13 + art_sys_89: -1.85963180e-12 + art_sys_90: 9.45167573e-14 + art_sys_91: -2.16863551e-16 + art_sys_92: -2.41702329e-13 + art_sys_93: 3.52224010e-20 + art_sys_94: -1.61436262e-12 + art_sys_95: -1.17159276e-14 + art_sys_96: 2.82803633e-12 + art_sys_97: 6.91582160e-14 + art_sys_98: 1.58538096e-12 + art_sys_99: -1.11737164e-18 + art_sys_100: -2.24173478e-13 + art_sys_101: -2.67968155e-11 + art_sys_102: -4.90466776e-11 + art_sys_103: 1.20618311e-12 + art_sys_104: 4.95223067e-18 + art_sys_105: -2.12591656e-10 + art_sys_106: -4.51022123e-13 + art_sys_107: -7.32496884e-11 + art_sys_108: -5.96350205e-12 + art_sys_109: -1.08831457e-09 + art_sys_110: -4.39686597e-10 + art_sys_111: -9.63708890e-10 + art_sys_112: -1.54502925e-09 + art_sys_113: 8.17328674e-12 + art_sys_114: 6.88834269e-10 + art_sys_115: 8.10304543e-10 + art_sys_116: 2.63531127e-10 + art_sys_117: 7.76040965e-09 + art_sys_118: 5.44021896e-09 + art_sys_119: 4.15382391e-09 + art_sys_120: -9.75062500e-10 + art_sys_121: -8.16283394e-09 + art_sys_122: 3.87374498e-08 + art_sys_123: -4.35353671e-08 + art_sys_124: 3.27968558e-09 + art_sys_125: -3.05968728e-09 + art_sys_126: -3.24771002e-10 + art_sys_127: 1.59040519e-07 + art_sys_128: -9.05422252e-09 + art_sys_129: 7.33353483e-08 + art_sys_130: -5.11034303e-09 + art_sys_131: 1.07754877e-09 + art_sys_132: -1.09438739e-06 + art_sys_133: 3.49425509e-08 + art_sys_134: 1.96460959e-11 + art_sys_135: -2.76821854e-06 + art_sys_136: 1.57073172e-08 + art_sys_137: -4.56730657e-12 + art_sys_138: 1.02112970e-16 + art_sys_139: -3.86546943e-06 + art_sys_140: -5.73912965e-07 + art_sys_141: 1.33333146e-07 + art_sys_142: -5.08594902e-08 + art_sys_143: 1.94065774e-12 + art_sys_144: 1.09334569e-11 + art_sys_145: 4.73023747e-11 + art_sys_146: -0.0 + art_sys_147: 6.32986719e-09 + art_sys_148: -7.75579560e-08 + art_sys_149: -7.75579560e-08 + art_sys_150: -3.29054411e-10 + art_sys_151: -3.29054411e-10 + art_sys_152: 1.45210220e-07 + art_sys_153: -1.18104486e-08 + art_sys_154: -9.06509329e-13 + art_sys_155: -4.16636248e-20 + art_sys_156: 8.22994814e-25 + art_sys_157: -4.93313584e-25 + art_sys_158: -0.0 + art_sys_159: -9.18264911e-11 + art_sys_160: 1.29169115e-11 + art_sys_161: 4.78557910e-12 + art_sys_162: 1.09754985e-12 + art_sys_163: 1.50482764e-10 + art_sys_164: -8.67948457e-11 + art_sys_165: -9.44552297e-14 + art_sys_166: -4.58481520e-19 + art_sys_167: -5.73200980e-19 + art_sys_168: 9.67710861e-20 + art_sys_169: -1.09931881e-20 + art_sys_170: -2.32108368e-20 + art_sys_171: 1.49150533e-20 + art_sys_172: 3.38022568e-21 + art_sys_173: -2.26919327e-21 + art_sys_174: -7.37391499e-22 + art_sys_175: -3.21705666e-23 + art_sys_176: -2.64531417e-24 + art_sys_177: 2.06794991e-22 + art_sys_178: -8.49344709e-23 + art_sys_179: 4.86683782e-23 + art_sys_180: 1.26044541e-23 + art_sys_181: -1.72587047e-24 + art_sys_182: -1.69678893e-23 + art_sys_183: 2.06728847e-26 + art_sys_184: -3.35888961e-27 + art_sys_185: -1.42995498e-27 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -14207,191 +14207,191 @@ bins: RelativeStatFSR-: -1.39470547e-07 luminosity_uncertainty: 1.87299840e-06 uncorrelated_uncertainty: 7.20384000e-07 -- art_sys_1: 2.86023839e-65 - art_sys_2: -5.50201169e-55 - art_sys_3: 1.08203296e-51 +- art_sys_1: 5.12133818e-67 + art_sys_2: 7.55338296e-55 + art_sys_3: -1.77425354e-54 art_sys_4: 5.54264783e-35 - art_sys_5: -3.80204960e-50 - art_sys_6: 4.65586120e-52 - art_sys_7: 2.91529823e-33 - art_sys_8: -9.73533898e-48 - art_sys_9: -1.82960081e-32 - art_sys_10: -2.43591046e-49 - art_sys_11: 4.34809406e-44 + art_sys_5: -1.41161997e-48 + art_sys_6: -5.53432878e-52 + art_sys_7: -2.91529823e-33 + art_sys_8: -6.19527080e-48 + art_sys_9: 1.82960081e-32 + art_sys_10: -2.03981694e-49 + art_sys_11: 5.58567676e-45 art_sys_12: -2.40410061e-31 - art_sys_13: 3.78107053e-48 - art_sys_14: 7.08121482e-29 - art_sys_15: 4.47328885e-42 - art_sys_16: -4.93175329e-28 - art_sys_17: 8.00274554e-44 - art_sys_18: 7.88518236e-43 - art_sys_19: -1.75920250e-27 - art_sys_20: 1.74777560e-43 - art_sys_21: 3.24002974e-39 - art_sys_22: -3.66835283e-27 - art_sys_23: -9.27050320e-45 - art_sys_24: -2.50382689e-36 - art_sys_25: 1.89985730e-15 - art_sys_26: 6.61762092e-15 - art_sys_27: -2.69406962e-15 - art_sys_28: 3.62016189e-16 - art_sys_29: 1.67569690e-16 - art_sys_30: -6.01526408e-25 - art_sys_31: 2.44949324e-24 - art_sys_32: -2.87938500e-17 - art_sys_33: 1.85379665e-17 - art_sys_34: 2.05507009e-32 - art_sys_35: -8.48817497e-34 - art_sys_36: 6.09704867e-31 - art_sys_37: 2.73506191e-24 - art_sys_38: 5.53015066e-17 - art_sys_39: -3.75928006e-33 - art_sys_40: -1.62942982e-30 - art_sys_41: 1.36862462e-22 - art_sys_42: -6.87901002e-22 - art_sys_43: -1.88882541e-17 - art_sys_44: -7.14216995e-17 - art_sys_45: 3.69207437e-17 - art_sys_46: -1.17438679e-31 - art_sys_47: -7.08379445e-24 - art_sys_48: 2.18721813e-21 - art_sys_49: 5.26275134e-16 - art_sys_50: -1.97749208e-20 - art_sys_51: -7.39743717e-15 - art_sys_52: 2.42292016e-15 - art_sys_53: -1.93507852e-15 - art_sys_54: -1.94759044e-18 - art_sys_55: -2.48143239e-26 - art_sys_56: -4.22608006e-19 - art_sys_57: -3.63326306e-19 - art_sys_58: -4.86922762e-26 - art_sys_59: -8.62423197e-16 - art_sys_60: 5.58688596e-15 - art_sys_61: 6.30930263e-16 - art_sys_62: 6.48888511e-16 - art_sys_63: -1.72962843e-16 - art_sys_64: 1.42582728e-15 - art_sys_65: -1.17148564e-16 - art_sys_66: 3.99153106e-17 - art_sys_67: -9.91385792e-17 - art_sys_68: -3.61349425e-15 - art_sys_69: -1.12980966e-14 - art_sys_70: -6.48357827e-19 - art_sys_71: -9.03614972e-21 - art_sys_72: -2.31950690e-14 - art_sys_73: 2.27417670e-23 - art_sys_74: 6.57614510e-20 - art_sys_75: 1.56924835e-17 - art_sys_76: -1.64005795e-17 - art_sys_77: -9.08603976e-18 - art_sys_78: -3.41846504e-17 - art_sys_79: 1.34481078e-16 - art_sys_80: -9.04425644e-19 - art_sys_81: -1.11363594e-18 - art_sys_82: 1.40749047e-18 - art_sys_83: -1.15974311e-14 - art_sys_84: -3.73190825e-14 - art_sys_85: 9.85884726e-20 - art_sys_86: -5.93680984e-14 - art_sys_87: -1.15866904e-13 - art_sys_88: 5.44605757e-19 - art_sys_89: 3.66239241e-14 - art_sys_90: 2.81812062e-12 - art_sys_91: -2.93984185e-18 - art_sys_92: -3.03187334e-10 - art_sys_93: 5.38848566e-12 - art_sys_94: 1.20878299e-11 - art_sys_95: 2.31103924e-10 - art_sys_96: -8.42332848e-17 - art_sys_97: 1.05455213e-09 - art_sys_98: 6.22727905e-12 - art_sys_99: 1.13089366e-12 - art_sys_100: 2.47179893e-20 - art_sys_101: -7.58020206e-19 - art_sys_102: 5.82661063e-11 - art_sys_103: 4.95900394e-10 - art_sys_104: -3.84002892e-10 - art_sys_105: -9.50660003e-11 - art_sys_106: -1.09272253e-11 - art_sys_107: 5.72787797e-11 - art_sys_108: 1.27808658e-11 - art_sys_109: 1.37236173e-09 - art_sys_110: 1.82886712e-09 - art_sys_111: -1.89703790e-10 - art_sys_112: 4.03502987e-10 - art_sys_113: -1.45148956e-08 - art_sys_114: -3.23042423e-08 - art_sys_115: -1.20655756e-09 - art_sys_116: 1.17044624e-07 - art_sys_117: -9.04121189e-16 - art_sys_118: 4.73347629e-07 - art_sys_119: 1.31921370e-11 - art_sys_120: 5.58935171e-13 - art_sys_121: 1.32054663e-12 - art_sys_122: 1.40749680e-12 - art_sys_123: -1.02502353e-09 - art_sys_124: 2.17575888e-12 - art_sys_125: -8.40661602e-07 - art_sys_126: 2.45391754e-12 - art_sys_127: 1.32242163e-06 - art_sys_128: 1.21100782e-11 - art_sys_129: 6.19587729e-11 - art_sys_130: -4.83931840e-07 - art_sys_131: 1.60707286e-07 - art_sys_132: -1.43157695e-13 - art_sys_133: -3.77919969e-12 - art_sys_134: 3.37727784e-12 - art_sys_135: 2.01058444e-19 - art_sys_136: -1.15076867e-19 - art_sys_137: 6.09341161e-20 - art_sys_138: 5.17241559e-21 - art_sys_139: -1.81188074e-21 - art_sys_140: -6.01760833e-21 - art_sys_141: -1.45683787e-16 - art_sys_142: 9.18605758e-22 - art_sys_143: -1.02310148e-19 - art_sys_144: -8.08270329e-18 - art_sys_145: 2.19315957e-17 - art_sys_146: 9.39733398e-17 - art_sys_147: 1.65319913e-17 - art_sys_148: -1.21818243e-17 - art_sys_149: 2.80116728e-18 - art_sys_150: -2.63468411e-18 - art_sys_151: 1.39805859e-19 - art_sys_152: 3.18998523e-21 - art_sys_153: -4.87043557e-21 - art_sys_154: -7.40678042e-23 - art_sys_155: 2.18917080e-21 - art_sys_156: -2.59241070e-21 - art_sys_157: -4.83970738e-22 - art_sys_158: -2.01733771e-22 - art_sys_159: 1.24479696e-22 - art_sys_160: -1.63272662e-22 - art_sys_161: -1.39344441e-24 - art_sys_162: 9.47928659e-26 - art_sys_163: -4.07507332e-24 - art_sys_164: 1.38912728e-23 - art_sys_165: 9.03681806e-24 - art_sys_166: 3.29332196e-24 - art_sys_167: 2.41977423e-23 - art_sys_168: -1.96102826e-15 - art_sys_169: -9.22326565e-25 - art_sys_170: -1.30185449e-15 - art_sys_171: -3.02559943e-14 - art_sys_172: 8.74856976e-25 - art_sys_173: 2.66853567e-26 - art_sys_174: 1.40900092e-14 - art_sys_175: 0.0 - art_sys_176: 4.93547790e-16 - art_sys_177: 0.0 - art_sys_178: -4.03469899e-17 - art_sys_179: -9.63270948e-22 - art_sys_180: -9.38751499e-22 - art_sys_181: 1.21358352e-26 - art_sys_182: 0.0 - art_sys_183: 3.21023822e-26 - art_sys_184: 7.15437673e-24 - art_sys_185: -1.28514264e-27 + art_sys_13: -1.76218905e-45 + art_sys_14: -7.08121482e-29 + art_sys_15: -3.42770634e-42 + art_sys_16: 4.93175329e-28 + art_sys_17: -3.22484992e-44 + art_sys_18: -6.29741670e-40 + art_sys_19: 1.75920251e-27 + art_sys_20: -1.64356122e-42 + art_sys_21: -1.91354840e-38 + art_sys_22: -3.66835274e-27 + art_sys_23: -1.55810430e-42 + art_sys_24: -9.65322625e-36 + art_sys_25: 2.34451754e-15 + art_sys_26: 6.13051698e-15 + art_sys_27: 3.49135030e-16 + art_sys_28: -6.01526411e-25 + art_sys_29: -2.44949321e-24 + art_sys_30: 2.66388592e-16 + art_sys_31: 2.43877809e-16 + art_sys_32: -2.37293670e-16 + art_sys_33: 8.81088927e-17 + art_sys_34: -1.87545854e-32 + art_sys_35: 4.83313851e-34 + art_sys_36: 7.62311955e-32 + art_sys_37: 2.73506151e-24 + art_sys_38: 4.27764826e-17 + art_sys_39: 1.81070828e-33 + art_sys_40: 3.53578754e-30 + art_sys_41: -1.36862479e-22 + art_sys_42: 6.87901061e-22 + art_sys_43: 5.77850986e-17 + art_sys_44: -1.55431292e-16 + art_sys_45: 3.47974831e-16 + art_sys_46: 1.01830927e-30 + art_sys_47: 3.51861404e-24 + art_sys_48: 2.17601379e-21 + art_sys_49: 1.07163174e-13 + art_sys_50: -3.53388951e-15 + art_sys_51: 1.35659304e-14 + art_sys_52: -3.98895177e-14 + art_sys_53: -1.27268615e-14 + art_sys_54: 8.14999024e-15 + art_sys_55: 2.04166473e-16 + art_sys_56: 2.95265168e-16 + art_sys_57: 1.05640564e-20 + art_sys_58: 1.16514744e-14 + art_sys_59: 5.67805021e-15 + art_sys_60: -1.67273090e-18 + art_sys_61: -6.33993676e-26 + art_sys_62: -4.11901923e-19 + art_sys_63: -3.28106233e-16 + art_sys_64: 3.68177435e-19 + art_sys_65: -5.84320980e-16 + art_sys_66: 2.78653690e-16 + art_sys_67: 2.36778569e-26 + art_sys_68: -1.11682434e-16 + art_sys_69: -6.83263621e-17 + art_sys_70: -1.24754232e-18 + art_sys_71: -4.05266104e-21 + art_sys_72: -9.40713644e-24 + art_sys_73: -3.06386795e-14 + art_sys_74: -1.94629346e-14 + art_sys_75: -1.34676171e-14 + art_sys_76: 6.22716144e-17 + art_sys_77: 3.94485439e-20 + art_sys_78: 7.78721088e-17 + art_sys_79: 2.02142296e-15 + art_sys_80: 1.15845137e-16 + art_sys_81: -5.38468246e-16 + art_sys_82: 1.00558416e-15 + art_sys_83: 1.86200345e-16 + art_sys_84: 1.16073822e-15 + art_sys_85: -2.43263514e-16 + art_sys_86: 1.84889682e-12 + art_sys_87: -1.05205090e-18 + art_sys_88: -2.88439667e-12 + art_sys_89: -1.03013361e-12 + art_sys_90: 1.34290677e-16 + art_sys_91: 8.00162480e-17 + art_sys_92: 8.41361085e-16 + art_sys_93: -3.67373993e-20 + art_sys_94: -7.70561492e-15 + art_sys_95: 3.84438593e-15 + art_sys_96: 1.99666608e-11 + art_sys_97: -2.43057947e-13 + art_sys_98: 9.01333398e-15 + art_sys_99: -1.10636649e-18 + art_sys_100: 5.58407185e-14 + art_sys_101: -7.42852600e-13 + art_sys_102: -2.85664669e-12 + art_sys_103: 1.82477798e-12 + art_sys_104: 3.12479429e-17 + art_sys_105: 8.97687131e-12 + art_sys_106: -1.15380648e-13 + art_sys_107: 3.36823588e-11 + art_sys_108: -2.77617774e-11 + art_sys_109: -2.74357838e-09 + art_sys_110: -1.13488025e-09 + art_sys_111: -1.42909296e-11 + art_sys_112: -3.68704378e-09 + art_sys_113: 2.05240699e-11 + art_sys_114: -7.03342330e-11 + art_sys_115: 1.01527487e-09 + art_sys_116: 6.61736551e-10 + art_sys_117: 1.22865866e-10 + art_sys_118: 4.69420736e-09 + art_sys_119: 1.19328904e-09 + art_sys_120: -3.14089657e-09 + art_sys_121: -1.09836805e-08 + art_sys_122: -1.07634595e-09 + art_sys_123: -2.44301708e-08 + art_sys_124: 6.71554372e-10 + art_sys_125: 3.70756510e-09 + art_sys_126: 1.81521972e-08 + art_sys_127: -4.84836935e-08 + art_sys_128: 6.83732344e-09 + art_sys_129: 7.60349179e-08 + art_sys_130: 2.30282401e-08 + art_sys_131: -6.46350759e-09 + art_sys_132: 4.20537856e-07 + art_sys_133: -1.86720620e-08 + art_sys_134: 3.92278262e-11 + art_sys_135: 8.72958008e-07 + art_sys_136: -2.33342957e-08 + art_sys_137: -3.33395878e-12 + art_sys_138: -1.12999251e-16 + art_sys_139: 1.33652048e-06 + art_sys_140: 2.07632688e-07 + art_sys_141: 7.27626248e-08 + art_sys_142: -1.35695736e-07 + art_sys_143: -3.61966417e-12 + art_sys_144: 5.51956856e-12 + art_sys_145: 1.09000879e-10 + art_sys_146: -0.0 + art_sys_147: 1.56930176e-08 + art_sys_148: -1.98654360e-07 + art_sys_149: -1.98654360e-07 + art_sys_150: 2.60407170e-08 + art_sys_151: 2.60407170e-08 + art_sys_152: 5.03493168e-07 + art_sys_153: -4.17906711e-08 + art_sys_154: 3.39955028e-12 + art_sys_155: -1.43924452e-19 + art_sys_156: 1.45345600e-24 + art_sys_157: -1.48704314e-24 + art_sys_158: -0.0 + art_sys_159: -2.25740488e-10 + art_sys_160: 3.06712488e-11 + art_sys_161: 6.91683300e-12 + art_sys_162: 2.63590493e-12 + art_sys_163: 2.87390705e-10 + art_sys_164: -2.41256439e-10 + art_sys_165: 1.88592811e-12 + art_sys_166: -1.10419620e-18 + art_sys_167: -1.41734854e-18 + art_sys_168: 2.25272927e-19 + art_sys_169: -2.43984712e-20 + art_sys_170: -5.80667564e-20 + art_sys_171: 3.78423943e-20 + art_sys_172: 8.93220444e-21 + art_sys_173: -5.76508685e-21 + art_sys_174: -1.83460568e-21 + art_sys_175: -7.85673303e-23 + art_sys_176: -1.50416314e-23 + art_sys_177: 5.29942233e-22 + art_sys_178: -2.14067312e-22 + art_sys_179: 1.22812054e-22 + art_sys_180: 3.20041141e-23 + art_sys_181: -4.36177192e-24 + art_sys_182: -4.04479546e-23 + art_sys_183: 7.21080326e-26 + art_sys_184: -7.57222268e-27 + art_sys_185: -3.08569831e-27 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -14498,191 +14498,191 @@ bins: RelativeStatFSR-: -3.33428908e-08 luminosity_uncertainty: 3.92446600e-07 uncorrelated_uncertainty: 1.50941000e-07 -- art_sys_1: 3.63983977e-69 - art_sys_2: -8.56457902e-59 - art_sys_3: 1.37707665e-55 +- art_sys_1: 6.69764515e-71 + art_sys_2: 9.61300100e-59 + art_sys_3: -4.09713201e-58 art_sys_4: 7.05399113e-39 - art_sys_5: -8.58447061e-54 - art_sys_6: -1.35536924e-57 - art_sys_7: 5.59801509e-37 - art_sys_8: -1.38531705e-51 - art_sys_9: -3.06976053e-36 - art_sys_10: -4.01880382e-53 - art_sys_11: 1.37026081e-47 + art_sys_5: -2.59458761e-52 + art_sys_6: -7.17166045e-56 + art_sys_7: -5.59801509e-37 + art_sys_8: -1.01479662e-51 + art_sys_9: 3.06976053e-36 + art_sys_10: -3.55516901e-53 + art_sys_11: 1.74838826e-48 art_sys_12: -7.68168717e-35 - art_sys_13: 1.08700384e-51 - art_sys_14: 2.38535367e-32 - art_sys_15: 8.96089614e-46 - art_sys_16: -1.50058273e-31 - art_sys_17: 2.43700176e-47 - art_sys_18: -2.36108953e-44 - art_sys_19: -5.46666876e-31 - art_sys_20: 4.08982069e-47 - art_sys_21: -1.39955982e-42 - art_sys_22: -8.81109683e-31 - art_sys_23: 4.34199115e-47 - art_sys_24: -1.60506033e-39 - art_sys_25: -1.50398083e-14 - art_sys_26: -5.68175904e-15 - art_sys_27: 8.07490383e-16 - art_sys_28: 7.41407640e-17 - art_sys_29: -4.43034775e-16 - art_sys_30: -3.96790414e-28 - art_sys_31: 1.07506903e-27 - art_sys_32: 2.78448205e-16 - art_sys_33: -1.58471861e-18 - art_sys_34: 1.03288742e-33 - art_sys_35: 3.49861743e-34 - art_sys_36: -6.87729079e-33 - art_sys_37: -8.46878534e-27 - art_sys_38: 6.59693915e-17 - art_sys_39: -5.61902317e-34 - art_sys_40: 1.87521097e-31 - art_sys_41: 2.02356456e-25 - art_sys_42: -2.12784934e-24 - art_sys_43: 1.49764085e-16 - art_sys_44: 4.54723313e-16 - art_sys_45: 2.73395331e-16 - art_sys_46: -3.66609231e-33 - art_sys_47: -1.11838566e-26 - art_sys_48: 1.65707707e-23 - art_sys_49: 7.73385459e-17 - art_sys_50: -7.94228862e-23 - art_sys_51: -1.47594364e-14 - art_sys_52: -8.38385011e-15 - art_sys_53: -8.21427892e-16 - art_sys_54: -2.64425787e-20 - art_sys_55: -1.18639330e-25 - art_sys_56: -2.97213224e-19 - art_sys_57: 2.07126186e-18 - art_sys_58: 6.08764812e-28 - art_sys_59: 1.73849357e-15 - art_sys_60: -5.32121891e-15 - art_sys_61: -2.34847641e-15 - art_sys_62: 1.25940682e-15 - art_sys_63: 6.48263998e-16 - art_sys_64: -3.64153391e-16 - art_sys_65: 4.73142209e-16 - art_sys_66: -3.71668095e-17 - art_sys_67: 2.38511262e-17 - art_sys_68: 4.30591384e-15 - art_sys_69: 1.06009953e-14 - art_sys_70: 1.31749623e-19 - art_sys_71: -6.62516268e-21 - art_sys_72: -5.53503542e-15 - art_sys_73: -7.85122805e-25 - art_sys_74: -4.39772328e-20 - art_sys_75: 1.86984180e-17 - art_sys_76: -2.65698180e-17 - art_sys_77: -3.08103242e-18 - art_sys_78: -6.83531962e-18 - art_sys_79: -1.66666824e-17 - art_sys_80: 8.24952442e-19 - art_sys_81: 1.42287714e-18 - art_sys_82: 3.16356666e-19 - art_sys_83: 1.20029823e-14 - art_sys_84: -1.84151988e-14 - art_sys_85: -9.97551686e-22 - art_sys_86: 2.14873962e-14 - art_sys_87: -5.25766598e-14 - art_sys_88: 2.80785161e-19 - art_sys_89: -1.52956118e-13 - art_sys_90: 1.31984244e-12 - art_sys_91: 4.07327222e-20 - art_sys_92: -1.43680775e-10 - art_sys_93: 5.94139159e-13 - art_sys_94: 1.41830032e-12 - art_sys_95: 1.10153624e-10 - art_sys_96: 7.93395929e-19 - art_sys_97: 5.00724355e-10 - art_sys_98: 2.96916832e-12 - art_sys_99: 2.08340975e-14 - art_sys_100: -9.92386709e-20 - art_sys_101: -1.44636747e-20 - art_sys_102: 3.66466293e-11 - art_sys_103: 1.32443305e-11 - art_sys_104: -1.37114362e-10 - art_sys_105: 2.53556434e-11 - art_sys_106: 2.99460452e-13 - art_sys_107: 1.09896693e-10 - art_sys_108: 1.86329874e-10 - art_sys_109: -1.33047433e-10 - art_sys_110: 6.01070539e-11 - art_sys_111: 3.32012334e-09 - art_sys_112: -2.24961024e-10 - art_sys_113: 3.05892089e-09 - art_sys_114: 7.01729523e-09 - art_sys_115: -7.40633710e-11 - art_sys_116: -1.73169660e-08 - art_sys_117: -1.46856343e-17 - art_sys_118: -8.26566793e-08 - art_sys_119: -2.28563417e-10 - art_sys_120: -2.28156453e-12 - art_sys_121: -1.34263843e-12 - art_sys_122: -3.58629167e-12 - art_sys_123: 2.00588079e-08 - art_sys_124: -2.39849578e-12 - art_sys_125: 1.65099049e-07 - art_sys_126: -2.29724183e-12 - art_sys_127: -2.60851702e-07 - art_sys_128: 1.67840754e-13 - art_sys_129: 1.16226905e-09 - art_sys_130: 3.33687042e-07 - art_sys_131: 3.58457040e-07 - art_sys_132: 3.47726817e-13 - art_sys_133: -1.60316706e-11 - art_sys_134: -1.40642746e-12 - art_sys_135: 9.83430503e-20 - art_sys_136: 3.31140074e-20 - art_sys_137: -3.36727748e-20 - art_sys_138: 8.24113802e-20 - art_sys_139: -4.81757236e-21 - art_sys_140: -3.15695545e-20 - art_sys_141: -1.52289907e-15 - art_sys_142: -2.27115185e-20 - art_sys_143: -8.70146445e-19 - art_sys_144: -5.56594775e-17 - art_sys_145: -5.36513761e-17 - art_sys_146: 1.00759570e-16 - art_sys_147: 4.46498700e-17 - art_sys_148: -2.50795316e-17 - art_sys_149: -6.60210453e-19 - art_sys_150: -2.17942871e-18 - art_sys_151: -3.70262662e-19 - art_sys_152: -3.79244043e-20 - art_sys_153: 9.00506588e-20 - art_sys_154: 3.14748541e-21 - art_sys_155: -4.15529709e-20 - art_sys_156: 4.71276576e-20 - art_sys_157: 9.79029218e-21 - art_sys_158: 4.20345750e-21 - art_sys_159: -1.03972462e-21 - art_sys_160: -3.45774810e-22 - art_sys_161: -1.62522894e-23 - art_sys_162: 5.96131125e-24 - art_sys_163: -5.07524660e-23 - art_sys_164: 2.93859011e-22 - art_sys_165: -2.59059466e-23 - art_sys_166: -1.20287877e-23 - art_sys_167: -1.79377943e-23 - art_sys_168: 4.69072111e-14 - art_sys_169: 5.53593516e-24 - art_sys_170: 3.36531364e-15 - art_sys_171: 7.14670609e-15 - art_sys_172: -1.28017929e-23 - art_sys_173: 8.72869115e-26 - art_sys_174: -9.14648222e-15 - art_sys_175: 0.0 - art_sys_176: -5.42725691e-16 - art_sys_177: 0.0 - art_sys_178: 4.41018057e-17 - art_sys_179: -6.55108909e-20 - art_sys_180: 2.25221762e-21 - art_sys_181: 4.65855942e-26 - art_sys_182: 0.0 - art_sys_183: -5.52895266e-25 - art_sys_184: 3.43133846e-25 - art_sys_185: -1.13946567e-26 + art_sys_13: -5.85489941e-49 + art_sys_14: -2.38535367e-32 + art_sys_15: -7.20462097e-46 + art_sys_16: 1.50058273e-31 + art_sys_17: -1.01857174e-47 + art_sys_18: 1.27908228e-42 + art_sys_19: 5.46666881e-31 + art_sys_20: -3.97709485e-46 + art_sys_21: 1.44136770e-41 + art_sys_22: -8.81109595e-31 + art_sys_23: 4.69720011e-47 + art_sys_24: -1.04031995e-38 + art_sys_25: -1.51788581e-14 + art_sys_26: 3.24700527e-15 + art_sys_27: 1.00741275e-16 + art_sys_28: -3.96789777e-28 + art_sys_29: -1.07506891e-27 + art_sys_30: -2.35495599e-15 + art_sys_31: -9.38481039e-17 + art_sys_32: -7.80956141e-17 + art_sys_33: -1.26189573e-16 + art_sys_34: 2.65354970e-33 + art_sys_35: -1.95970292e-33 + art_sys_36: -5.69561278e-33 + art_sys_37: -8.46878559e-27 + art_sys_38: -1.38672754e-16 + art_sys_39: 9.63523679e-35 + art_sys_40: -4.76549993e-31 + art_sys_41: -2.02362548e-25 + art_sys_42: 2.12790590e-24 + art_sys_43: 1.14506329e-17 + art_sys_44: -3.32959428e-16 + art_sys_45: 1.87189895e-16 + art_sys_46: -2.06194385e-33 + art_sys_47: -1.54017834e-26 + art_sys_48: 1.54833006e-23 + art_sys_49: 5.73275157e-14 + art_sys_50: 9.89335811e-15 + art_sys_51: -2.01582055e-14 + art_sys_52: 8.81781855e-14 + art_sys_53: 2.83746101e-14 + art_sys_54: -1.55090441e-14 + art_sys_55: 1.15297290e-16 + art_sys_56: 1.85054683e-16 + art_sys_57: -1.06035325e-22 + art_sys_58: -2.10768709e-14 + art_sys_59: -1.00838342e-14 + art_sys_60: 5.78663716e-20 + art_sys_61: -2.27638976e-26 + art_sys_62: 4.56597475e-19 + art_sys_63: -2.98180799e-16 + art_sys_64: 2.17077991e-18 + art_sys_65: 9.32111857e-16 + art_sys_66: -3.50698356e-16 + art_sys_67: 4.64235301e-27 + art_sys_68: -9.98094508e-17 + art_sys_69: -8.56050802e-17 + art_sys_70: -3.27777267e-19 + art_sys_71: -2.29142748e-21 + art_sys_72: -2.36134343e-25 + art_sys_73: 1.34654887e-14 + art_sys_74: 8.86007975e-15 + art_sys_75: 6.20772521e-15 + art_sys_76: 2.13731743e-16 + art_sys_77: 1.20152275e-19 + art_sys_78: 1.00136753e-16 + art_sys_79: 2.85129754e-15 + art_sys_80: -4.37216419e-16 + art_sys_81: 6.00166004e-16 + art_sys_82: 1.29455094e-16 + art_sys_83: -5.14887256e-16 + art_sys_84: 6.63690730e-16 + art_sys_85: 5.10251995e-18 + art_sys_86: 9.73240030e-13 + art_sys_87: -3.41875521e-19 + art_sys_88: -1.60323626e-12 + art_sys_89: -8.76699549e-13 + art_sys_90: -1.75570618e-17 + art_sys_91: -6.28820923e-17 + art_sys_92: -8.41215946e-17 + art_sys_93: -8.54303533e-22 + art_sys_94: -1.87704206e-14 + art_sys_95: 1.10245081e-15 + art_sys_96: 1.03120103e-11 + art_sys_97: -8.39091762e-14 + art_sys_98: 2.24152541e-13 + art_sys_99: -3.66067232e-20 + art_sys_100: 2.45537400e-14 + art_sys_101: -4.26579267e-12 + art_sys_102: -9.47719446e-12 + art_sys_103: 9.91610159e-13 + art_sys_104: 1.18040184e-18 + art_sys_105: 3.39092011e-11 + art_sys_106: -2.62154666e-14 + art_sys_107: 1.61786189e-11 + art_sys_108: 5.26306287e-11 + art_sys_109: 5.69741632e-09 + art_sys_110: -6.12582263e-10 + art_sys_111: 6.64053324e-13 + art_sys_112: -2.08232814e-09 + art_sys_113: -4.26263344e-11 + art_sys_114: 6.65396157e-13 + art_sys_115: 6.41318520e-10 + art_sys_116: 3.55310616e-10 + art_sys_117: -1.78019312e-11 + art_sys_118: 3.35369260e-09 + art_sys_119: -2.21956870e-10 + art_sys_120: -1.74254697e-09 + art_sys_121: 2.66935642e-08 + art_sys_122: -1.83081574e-10 + art_sys_123: -2.24792730e-09 + art_sys_124: -4.38683420e-09 + art_sys_125: 1.13684235e-09 + art_sys_126: -3.02616274e-08 + art_sys_127: -3.95440678e-10 + art_sys_128: -2.70391221e-09 + art_sys_129: -3.06342703e-08 + art_sys_130: -3.42496839e-08 + art_sys_131: 1.42741035e-08 + art_sys_132: -9.00376456e-08 + art_sys_133: -1.61813348e-09 + art_sys_134: -8.71104814e-11 + art_sys_135: -1.51577014e-07 + art_sys_136: 2.84556790e-08 + art_sys_137: 9.54802042e-12 + art_sys_138: -2.33704680e-17 + art_sys_139: -2.81719704e-07 + art_sys_140: -8.78809035e-08 + art_sys_141: -1.51997605e-07 + art_sys_142: 2.85860118e-07 + art_sys_143: 4.93669219e-12 + art_sys_144: -1.42196525e-11 + art_sys_145: -2.20704145e-10 + art_sys_146: 0.0 + art_sys_147: -2.32371874e-08 + art_sys_148: 3.27379027e-07 + art_sys_149: 3.27379027e-07 + art_sys_150: 4.64266111e-08 + art_sys_151: 4.64266111e-08 + art_sys_152: 2.83218875e-07 + art_sys_153: -1.11171615e-08 + art_sys_154: 2.35470107e-11 + art_sys_155: -5.95777474e-20 + art_sys_156: -1.01411010e-24 + art_sys_157: 2.29902850e-24 + art_sys_158: 0.0 + art_sys_159: 4.68306185e-10 + art_sys_160: -6.36639739e-11 + art_sys_161: -1.37946969e-11 + art_sys_162: -5.45350762e-12 + art_sys_163: -6.11385825e-10 + art_sys_164: 4.95617584e-10 + art_sys_165: -3.07133316e-12 + art_sys_166: 2.29080845e-18 + art_sys_167: 2.92892866e-18 + art_sys_168: -4.67576109e-19 + art_sys_169: 4.40615581e-20 + art_sys_170: 1.17859196e-19 + art_sys_171: -7.84823261e-20 + art_sys_172: -1.85236040e-20 + art_sys_173: 1.19577481e-20 + art_sys_174: 3.79039084e-21 + art_sys_175: 1.61011759e-22 + art_sys_176: 3.25199509e-23 + art_sys_177: -1.09860335e-21 + art_sys_178: 4.43478334e-22 + art_sys_179: -2.54472129e-22 + art_sys_180: -6.71832091e-23 + art_sys_181: 9.05906538e-24 + art_sys_182: 8.39349106e-23 + art_sys_183: -1.51704290e-25 + art_sys_184: 1.60603663e-26 + art_sys_185: 6.56829225e-27 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -17432,167 +17432,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: -2.30114783e+02 + art_sys_25: 2.30114783e+02 art_sys_26: 4.54626915e+01 - art_sys_27: 1.71049626e+01 - art_sys_28: 2.60546159e+00 - art_sys_29: 4.22559009e-02 - art_sys_30: 4.18059562e-18 - art_sys_31: 3.20236127e-17 - art_sys_32: 1.48247833e-02 - art_sys_33: -8.59232927e-03 - art_sys_34: -1.99570293e-17 - art_sys_35: -2.29296616e-17 - art_sys_36: -2.71041290e-17 - art_sys_37: 3.86288804e-18 + art_sys_27: -1.71049626e+01 + art_sys_28: -2.25067705e-17 + art_sys_29: 3.47252907e-17 + art_sys_30: -2.60546159e+00 + art_sys_31: -4.22559009e-02 + art_sys_32: -1.48247833e-02 + art_sys_33: 8.59232927e-03 + art_sys_34: -1.10618095e-17 + art_sys_35: -1.74961332e-18 + art_sys_36: -3.90917029e-18 + art_sys_37: 4.26117400e-19 art_sys_38: 1.64569667e-03 - art_sys_39: -2.83285813e-18 - art_sys_40: 7.43667737e-19 - art_sys_41: 5.67811332e-18 - art_sys_42: -5.62327353e-18 + art_sys_39: 3.23155208e-19 + art_sys_40: 2.16978594e-18 + art_sys_41: -3.73171450e-18 + art_sys_42: -5.16653554e-18 art_sys_43: 4.98612036e-06 art_sys_44: -2.00633842e-06 art_sys_45: -8.26712093e-07 - art_sys_46: 3.78468210e-18 - art_sys_47: 2.62498395e-18 - art_sys_48: 3.95877266e-19 - art_sys_49: 4.03452088e-08 - art_sys_50: 2.79234189e-19 - art_sys_51: 3.94902988e-16 - art_sys_52: -1.94775677e-17 - art_sys_53: 2.77149510e-08 - art_sys_54: 6.24031108e-19 - art_sys_55: 6.12838113e-18 - art_sys_56: 8.70546294e-18 - art_sys_57: 1.36269264e-18 - art_sys_58: -1.65784935e-19 - art_sys_59: 4.18359334e-19 - art_sys_60: -6.79731895e-19 - art_sys_61: -1.92827745e-19 - art_sys_62: -8.11082539e-20 - art_sys_63: -1.94218520e-20 - art_sys_64: 5.44845891e-09 - art_sys_65: 4.92222189e-21 - art_sys_66: -2.08388367e-21 - art_sys_67: -6.13264272e-22 - art_sys_68: 5.09129198e-10 - art_sys_69: 2.21828380e-10 - art_sys_70: -5.06690845e-19 - art_sys_71: -1.90274463e-19 - art_sys_72: -4.00235686e-11 - art_sys_73: 7.48220759e-21 - art_sys_74: 3.04490196e-19 - art_sys_75: -9.45664767e-21 - art_sys_76: 9.23050467e-20 - art_sys_77: 4.51195073e-20 - art_sys_78: -7.97172791e-21 - art_sys_79: -1.71513778e-18 - art_sys_80: 5.53302416e-22 - art_sys_81: 1.43616304e-22 - art_sys_82: -3.71354319e-23 - art_sys_83: -4.24577125e-13 - art_sys_84: 1.15904991e-19 - art_sys_85: 1.74475309e-19 - art_sys_86: 1.18081353e-13 - art_sys_87: -2.24802658e-20 - art_sys_88: 1.24282793e-22 - art_sys_89: -8.91946615e-14 - art_sys_90: 1.51100585e-21 - art_sys_91: 4.43538597e-19 - art_sys_92: 3.69094285e-19 - art_sys_93: -4.06981564e-14 - art_sys_94: 1.96151191e-14 - art_sys_95: -1.65795517e-19 - art_sys_96: -9.09148740e-21 - art_sys_97: -2.89564348e-19 - art_sys_98: 1.75674644e-19 - art_sys_99: 8.63555978e-15 - art_sys_100: -7.75084184e-24 - art_sys_101: -2.50085211e-23 - art_sys_102: -6.03539054e-20 - art_sys_103: 3.26764169e-15 - art_sys_104: -2.99982860e-20 - art_sys_105: 1.19682687e-15 - art_sys_106: -2.31270768e-20 - art_sys_107: 6.57872037e-20 - art_sys_108: -4.28368856e-16 - art_sys_109: 1.09512019e-19 - art_sys_110: -9.50512906e-22 - art_sys_111: -1.41743757e-16 - art_sys_112: 1.07612490e-20 - art_sys_113: -2.24908593e-21 - art_sys_114: 8.85873042e-22 - art_sys_115: -3.26212190e-22 - art_sys_116: -7.31055087e-21 - art_sys_117: -5.43612224e-23 - art_sys_118: -3.69633814e-21 - art_sys_119: -5.01838474e-17 - art_sys_120: 1.63035908e-17 - art_sys_121: -5.32278500e-18 - art_sys_122: 1.62337456e-18 - art_sys_123: 2.23497946e-20 - art_sys_124: -4.76088256e-19 - art_sys_125: -4.04881867e-21 - art_sys_126: 1.59836013e-19 - art_sys_127: 9.20270188e-22 - art_sys_128: -2.14316739e-20 - art_sys_129: 1.71616904e-23 - art_sys_130: 2.48091139e-22 - art_sys_131: 1.06075827e-22 - art_sys_132: -2.44107164e-28 - art_sys_133: 2.95929917e-25 - art_sys_134: 2.60696455e-21 - art_sys_135: -1.02722001e-24 - art_sys_136: -1.30118239e-23 - art_sys_137: 3.12408408e-24 - art_sys_138: -6.39881011e-24 - art_sys_139: -2.16645901e-23 - art_sys_140: -1.09323287e-23 - art_sys_141: -2.23836081e-24 - art_sys_142: -6.75586602e-25 - art_sys_143: -6.41266938e-25 - art_sys_144: 2.35000359e-23 - art_sys_145: 1.50561371e-21 - art_sys_146: -4.59503159e-21 - art_sys_147: -1.19088283e-21 - art_sys_148: -1.06558452e-21 - art_sys_149: 1.25854653e-22 - art_sys_150: 4.25930685e-23 - art_sys_151: 1.36880592e-23 - art_sys_152: -6.87717299e-26 - art_sys_153: 2.18117113e-27 - art_sys_154: -1.19202187e-26 - art_sys_155: 1.75320022e-27 - art_sys_156: 6.68637322e-28 - art_sys_157: -2.05744526e-28 - art_sys_158: -5.52362142e-31 - art_sys_159: -3.85509658e-30 - art_sys_160: 4.24968972e-30 - art_sys_161: 7.79376243e-32 - art_sys_162: -2.60330462e-30 - art_sys_163: 9.71923138e-30 - art_sys_164: -4.25924902e-29 - art_sys_165: -3.62723983e-30 - art_sys_166: 3.91870909e-30 - art_sys_167: 1.63820551e-28 - art_sys_168: 2.47670610e-24 - art_sys_169: 9.77508379e-30 - art_sys_170: 1.29856094e-25 - art_sys_171: -7.46355856e-25 - art_sys_172: 1.02051889e-30 - art_sys_173: -2.67837328e-33 - art_sys_174: 5.66975544e-26 - art_sys_175: 0.0 - art_sys_176: 7.79522580e-28 - art_sys_177: 0.0 - art_sys_178: -9.35538796e-30 - art_sys_179: 1.51739445e-31 - art_sys_180: -7.38429072e-34 - art_sys_181: 3.46575503e-41 - art_sys_182: 0.0 - art_sys_183: -1.75019750e-39 - art_sys_184: -1.43031694e-39 - art_sys_185: -4.27714945e-42 + art_sys_46: -2.78884422e-18 + art_sys_47: 2.57776410e-18 + art_sys_48: -6.40398011e-19 + art_sys_49: -3.01681316e-15 + art_sys_50: -1.80768451e-16 + art_sys_51: 1.88741940e-16 + art_sys_52: -1.89274617e-17 + art_sys_53: -6.35227841e-19 + art_sys_54: 1.86678439e-19 + art_sys_55: -4.03452088e-08 + art_sys_56: -2.77149510e-08 + art_sys_57: -3.85935546e-18 + art_sys_58: -2.16403522e-20 + art_sys_59: 2.50161354e-20 + art_sys_60: -2.08554651e-18 + art_sys_61: 2.59843167e-18 + art_sys_62: 1.28622844e-18 + art_sys_63: 5.44845890e-09 + art_sys_64: 1.12826082e-18 + art_sys_65: 7.91486027e-23 + art_sys_66: -3.84874501e-23 + art_sys_67: -3.71910583e-19 + art_sys_68: 5.09129194e-10 + art_sys_69: 2.21828369e-10 + art_sys_70: -7.33400726e-19 + art_sys_71: -7.83085469e-19 + art_sys_72: -1.44641260e-19 + art_sys_73: -8.45385196e-23 + art_sys_74: -1.04495927e-22 + art_sys_75: -2.38143141e-24 + art_sys_76: 4.20686068e-21 + art_sys_77: -1.70466219e-18 + art_sys_78: -4.00235687e-11 + art_sys_79: 2.20170066e-24 + art_sys_80: -4.89629166e-20 + art_sys_81: 3.31157220e-26 + art_sys_82: 6.63762918e-25 + art_sys_83: -1.08207852e-21 + art_sys_84: -3.05111233e-25 + art_sys_85: 1.10024359e-25 + art_sys_86: 1.19696269e-20 + art_sys_87: 3.24800019e-21 + art_sys_88: 4.70472077e-21 + art_sys_89: 3.94397152e-22 + art_sys_90: -6.99404053e-20 + art_sys_91: 4.24577087e-13 + art_sys_92: 5.79237235e-21 + art_sys_93: 2.15598765e-19 + art_sys_94: -2.38781355e-19 + art_sys_95: -1.18081076e-13 + art_sys_96: -3.29664407e-23 + art_sys_97: -8.91952765e-14 + art_sys_98: 2.46959095e-20 + art_sys_99: -6.60016913e-21 + art_sys_100: 4.06993494e-14 + art_sys_101: 8.40743642e-20 + art_sys_102: -7.14867940e-20 + art_sys_103: 1.96151231e-14 + art_sys_104: -1.93781779e-20 + art_sys_105: 4.94077595e-20 + art_sys_106: 4.81346630e-20 + art_sys_107: -1.14784283e-21 + art_sys_108: -4.05119733e-23 + art_sys_109: 3.91584653e-22 + art_sys_110: 8.63534592e-15 + art_sys_111: 9.46824731e-20 + art_sys_112: 3.26765571e-15 + art_sys_113: -1.76431391e-23 + art_sys_114: -2.80865374e-19 + art_sys_115: 1.19680921e-15 + art_sys_116: -1.57384778e-19 + art_sys_117: 1.55671151e-20 + art_sys_118: 4.28355378e-16 + art_sys_119: -4.02367070e-20 + art_sys_120: -1.31895440e-20 + art_sys_121: -1.41768382e-16 + art_sys_122: -2.31241897e-20 + art_sys_123: 1.45440472e-20 + art_sys_124: 5.01732339e-17 + art_sys_125: 2.72907296e-20 + art_sys_126: 1.62911449e-17 + art_sys_127: 6.31591851e-22 + art_sys_128: 5.33438278e-18 + art_sys_129: 1.02727680e-20 + art_sys_130: 1.63018051e-18 + art_sys_131: 2.25363684e-22 + art_sys_132: -9.33944366e-21 + art_sys_133: 4.68651346e-19 + art_sys_134: 2.09715119e-24 + art_sys_135: -8.25929284e-21 + art_sys_136: -1.58384782e-19 + art_sys_137: -6.33681383e-25 + art_sys_138: -2.87972155e-22 + art_sys_139: 4.40872359e-23 + art_sys_140: 2.22757498e-20 + art_sys_141: 5.57489630e-21 + art_sys_142: 9.41565713e-22 + art_sys_143: -1.02314776e-25 + art_sys_144: -1.58198454e-25 + art_sys_145: -1.30377911e-24 + art_sys_146: 0.0 + art_sys_147: -2.65353693e-23 + art_sys_148: 3.20251796e-22 + art_sys_149: 3.20251796e-22 + art_sys_150: -1.37423592e-22 + art_sys_151: -1.37423592e-22 + art_sys_152: 6.00682434e-22 + art_sys_153: -7.52001179e-24 + art_sys_154: -3.44899253e-26 + art_sys_155: -1.29828538e-34 + art_sys_156: -1.49034256e-37 + art_sys_157: -9.66777369e-38 + art_sys_158: 0.0 + art_sys_159: -5.25110456e-21 + art_sys_160: -1.56368878e-22 + art_sys_161: -1.65223671e-21 + art_sys_162: -4.46347475e-23 + art_sys_163: 8.37444992e-24 + art_sys_164: 6.73970860e-23 + art_sys_165: 1.22050954e-24 + art_sys_166: -7.08858801e-30 + art_sys_167: 4.00927438e-31 + art_sys_168: 8.91993114e-32 + art_sys_169: -5.91428346e-30 + art_sys_170: -3.52688298e-29 + art_sys_171: -6.08939287e-29 + art_sys_172: 1.30920267e-27 + art_sys_173: 1.54506660e-28 + art_sys_174: 4.31715509e-29 + art_sys_175: 4.16317566e-37 + art_sys_176: 1.56562863e-31 + art_sys_177: -3.51924258e-31 + art_sys_178: 4.23839448e-31 + art_sys_179: -2.36380904e-32 + art_sys_180: 3.34694078e-32 + art_sys_181: 1.40312113e-33 + art_sys_182: 1.99995330e-33 + art_sys_183: -1.62125458e-35 + art_sys_184: 2.04404398e-38 + art_sys_185: 3.33809206e-39 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -17723,167 +17723,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: -1.16855503e+02 + art_sys_25: 1.16855503e+02 art_sys_26: -8.38645307e+01 - art_sys_27: -3.03338079e+01 - art_sys_28: -7.69466219e+00 - art_sys_29: -1.43335780e-01 - art_sys_30: -2.50913427e-17 - art_sys_31: -2.42498807e-17 - art_sys_32: -5.09411189e-02 - art_sys_33: 3.29568334e-02 - art_sys_34: -1.88443701e-17 - art_sys_35: -5.78304615e-18 - art_sys_36: -3.45023976e-18 - art_sys_37: -2.04940642e-17 + art_sys_27: 3.03338079e+01 + art_sys_28: 4.88550757e-17 + art_sys_29: -3.71095874e-18 + art_sys_30: 7.69466219e+00 + art_sys_31: 1.43335780e-01 + art_sys_32: 5.09411189e-02 + art_sys_33: -3.29568334e-02 + art_sys_34: 1.76134612e-18 + art_sys_35: 4.77944654e-18 + art_sys_36: 7.30625014e-18 + art_sys_37: -1.27145700e-17 art_sys_38: -6.83247670e-03 - art_sys_39: 3.85671276e-18 - art_sys_40: 1.03599569e-17 - art_sys_41: 8.45659699e-18 - art_sys_42: 2.67469543e-18 + art_sys_39: -4.57100653e-18 + art_sys_40: -8.58581476e-18 + art_sys_41: -4.03661705e-18 + art_sys_42: -5.22606816e-18 art_sys_43: -2.94756994e-05 art_sys_44: 1.27260784e-05 art_sys_45: 4.87358331e-06 - art_sys_46: -7.38867803e-18 - art_sys_47: -4.94549172e-18 - art_sys_48: -7.61341975e-19 - art_sys_49: -3.79938190e-07 - art_sys_50: -1.55469909e-18 - art_sys_51: -5.00063057e-16 - art_sys_52: -4.49281390e-18 - art_sys_53: -1.81621939e-07 - art_sys_54: -1.99591691e-19 - art_sys_55: -2.76007697e-17 - art_sys_56: -6.47625157e-17 - art_sys_57: 1.39721713e-20 - art_sys_58: 4.65185833e-19 - art_sys_59: 2.16833536e-18 - art_sys_60: -1.16255705e-18 - art_sys_61: -5.63841886e-20 - art_sys_62: -2.92380083e-20 - art_sys_63: -1.19957437e-20 - art_sys_64: -4.19193226e-08 - art_sys_65: 1.70059016e-21 - art_sys_66: -1.11301753e-21 - art_sys_67: -5.98887471e-22 - art_sys_68: -3.50278969e-09 - art_sys_69: -1.54649968e-09 - art_sys_70: -2.27978310e-19 - art_sys_71: 1.41570717e-19 - art_sys_72: 2.82167444e-10 - art_sys_73: -3.83732252e-20 - art_sys_74: -3.01284495e-19 - art_sys_75: -4.98476311e-21 - art_sys_76: 2.96745988e-20 - art_sys_77: 1.25864213e-20 - art_sys_78: -1.37331053e-19 - art_sys_79: 1.07230138e-17 - art_sys_80: -9.83543710e-23 - art_sys_81: -1.07565686e-22 - art_sys_82: 1.74882870e-23 - art_sys_83: 1.84321862e-12 - art_sys_84: 5.59448649e-19 - art_sys_85: -1.19274570e-18 - art_sys_86: -7.66142539e-13 - art_sys_87: -1.39988382e-19 - art_sys_88: -6.43399698e-24 - art_sys_89: 4.80617675e-13 - art_sys_90: 1.05404294e-20 - art_sys_91: -2.98782483e-18 - art_sys_92: -1.08323368e-18 - art_sys_93: 2.30558192e-13 - art_sys_94: -1.14059418e-13 - art_sys_95: 5.82759819e-19 - art_sys_96: -1.05521865e-20 - art_sys_97: 7.84519434e-19 - art_sys_98: -9.42582236e-19 - art_sys_99: -5.02346732e-14 - art_sys_100: 9.23950834e-23 - art_sys_101: 1.97368949e-22 - art_sys_102: 3.26889148e-19 - art_sys_103: -1.93974997e-14 - art_sys_104: 2.58483482e-19 - art_sys_105: -7.12748835e-15 - art_sys_106: 1.26575198e-19 - art_sys_107: -3.31760521e-19 - art_sys_108: 2.57375820e-15 - art_sys_109: -6.51454136e-19 - art_sys_110: 9.99136914e-21 - art_sys_111: 8.55934738e-16 - art_sys_112: -3.75285397e-20 - art_sys_113: -3.65111550e-21 - art_sys_114: 8.85146785e-21 - art_sys_115: 1.85421618e-21 - art_sys_116: 1.98875277e-20 - art_sys_117: 1.20650925e-22 - art_sys_118: 1.21306341e-20 - art_sys_119: 3.03933632e-16 - art_sys_120: -9.90880130e-17 - art_sys_121: 3.23903908e-17 - art_sys_122: -9.89436885e-18 - art_sys_123: -1.34902143e-19 - art_sys_124: 2.90408235e-18 - art_sys_125: 1.82956765e-20 - art_sys_126: -9.75421716e-19 - art_sys_127: -6.68553909e-21 - art_sys_128: 1.30874632e-19 - art_sys_129: -8.26398252e-23 - art_sys_130: -1.59029770e-21 - art_sys_131: -4.98107940e-22 - art_sys_132: 2.10099198e-27 - art_sys_133: -1.91905963e-24 - art_sys_134: -1.59236892e-20 - art_sys_135: 1.51527100e-23 - art_sys_136: -2.30769260e-24 - art_sys_137: 2.35659350e-24 - art_sys_138: -4.03349723e-24 - art_sys_139: -6.43634291e-24 - art_sys_140: 3.14931234e-24 - art_sys_141: 9.56239876e-24 - art_sys_142: -2.40327504e-24 - art_sys_143: 2.63113755e-24 - art_sys_144: -8.47114032e-23 - art_sys_145: -6.21371670e-21 - art_sys_146: 1.90186064e-20 - art_sys_147: 4.97036380e-21 - art_sys_148: 4.46739873e-21 - art_sys_149: -5.23155917e-22 - art_sys_150: -1.78911528e-22 - art_sys_151: -5.61746343e-23 - art_sys_152: 2.85074012e-25 - art_sys_153: -9.41345695e-27 - art_sys_154: 4.97931462e-26 - art_sys_155: -7.26784666e-27 - art_sys_156: -2.77931857e-27 - art_sys_157: 8.58916990e-28 - art_sys_158: 2.44329535e-30 - art_sys_159: 1.60314026e-29 - art_sys_160: -1.78608321e-29 - art_sys_161: -3.31315821e-31 - art_sys_162: 1.09923065e-29 - art_sys_163: -4.09567647e-29 - art_sys_164: 1.77358317e-28 - art_sys_165: 1.59381264e-29 - art_sys_166: -1.68092108e-29 - art_sys_167: -6.92099717e-28 - art_sys_168: -1.53043415e-23 - art_sys_169: -4.07985312e-29 - art_sys_170: -8.31114554e-25 - art_sys_171: 4.32162740e-24 - art_sys_172: -4.42540843e-30 - art_sys_173: 1.27566653e-32 - art_sys_174: -3.48879967e-25 - art_sys_175: 0.0 - art_sys_176: -4.83516019e-27 - art_sys_177: 0.0 - art_sys_178: 5.93774380e-29 - art_sys_179: -6.40277037e-31 - art_sys_180: 3.12156384e-33 - art_sys_181: -2.16915178e-40 - art_sys_182: 0.0 - art_sys_183: 1.21067283e-38 - art_sys_184: 1.12421818e-38 - art_sys_185: 2.26708418e-41 + art_sys_46: 7.16854637e-18 + art_sys_47: 1.12509351e-18 + art_sys_48: 7.83739990e-19 + art_sys_49: 7.98016905e-16 + art_sys_50: 7.02604214e-17 + art_sys_51: -9.28212391e-17 + art_sys_52: 4.14032061e-17 + art_sys_53: -4.21164203e-19 + art_sys_54: -1.89813938e-19 + art_sys_55: 3.79938190e-07 + art_sys_56: 1.81621939e-07 + art_sys_57: 2.38977252e-17 + art_sys_58: -2.43670525e-19 + art_sys_59: 1.08394892e-20 + art_sys_60: 4.04737195e-18 + art_sys_61: -2.36223789e-17 + art_sys_62: 6.23785283e-19 + art_sys_63: -4.19193226e-08 + art_sys_64: 8.48903127e-19 + art_sys_65: -3.28065593e-22 + art_sys_66: -6.91218388e-23 + art_sys_67: 8.53018436e-20 + art_sys_68: -3.50278966e-09 + art_sys_69: -1.54649961e-09 + art_sys_70: 8.14702341e-18 + art_sys_71: -9.94257838e-20 + art_sys_72: 1.89441382e-19 + art_sys_73: 4.19908074e-22 + art_sys_74: 7.33071313e-22 + art_sys_75: 8.02656737e-24 + art_sys_76: -2.80381060e-20 + art_sys_77: 9.52209153e-18 + art_sys_78: 2.82167445e-10 + art_sys_79: -9.11097485e-24 + art_sys_80: 2.22422972e-19 + art_sys_81: -3.43632627e-25 + art_sys_82: -3.17143482e-24 + art_sys_83: 2.22517556e-21 + art_sys_84: 1.33487770e-24 + art_sys_85: -5.54999510e-25 + art_sys_86: 9.61604345e-21 + art_sys_87: -6.16791479e-20 + art_sys_88: 6.72280379e-22 + art_sys_89: 1.03667555e-22 + art_sys_90: -2.66345306e-21 + art_sys_91: -1.84321866e-12 + art_sys_92: 2.02741093e-20 + art_sys_93: -1.33014935e-18 + art_sys_94: 1.26157413e-18 + art_sys_95: 7.66141291e-13 + art_sys_96: -1.49552073e-22 + art_sys_97: 4.80620975e-13 + art_sys_98: -2.07627316e-19 + art_sys_99: 1.31067862e-20 + art_sys_100: -2.30564972e-13 + art_sys_101: -3.50527039e-19 + art_sys_102: 5.22517351e-19 + art_sys_103: -1.14059413e-13 + art_sys_104: 5.39893212e-20 + art_sys_105: -1.10447492e-19 + art_sys_106: -2.76003419e-19 + art_sys_107: 6.04568955e-21 + art_sys_108: -3.71712339e-22 + art_sys_109: -2.12015159e-21 + art_sys_110: -5.02334505e-14 + art_sys_111: -5.44112224e-19 + art_sys_112: -1.93975400e-14 + art_sys_113: 5.98046318e-22 + art_sys_114: 1.53305643e-18 + art_sys_115: -7.12738309e-15 + art_sys_116: 9.16320646e-19 + art_sys_117: -8.75008302e-20 + art_sys_118: -2.57368130e-15 + art_sys_119: 2.29811920e-19 + art_sys_120: 7.74901939e-20 + art_sys_121: 8.56092808e-16 + art_sys_122: 1.23724665e-19 + art_sys_123: -7.02938325e-20 + art_sys_124: -3.03869120e-16 + art_sys_125: -1.63855569e-19 + art_sys_126: -9.90122984e-17 + art_sys_127: -1.45484387e-20 + art_sys_128: -3.24605430e-17 + art_sys_129: -5.68349111e-20 + art_sys_130: -9.93592465e-18 + art_sys_131: -1.14250255e-21 + art_sys_132: 5.74894896e-20 + art_sys_133: -2.85904425e-18 + art_sys_134: -1.49662287e-23 + art_sys_135: 5.23438978e-20 + art_sys_136: 9.66591278e-19 + art_sys_137: 2.63381945e-24 + art_sys_138: 1.90153999e-21 + art_sys_139: -1.34829530e-21 + art_sys_140: -1.36204838e-19 + art_sys_141: -3.36704811e-20 + art_sys_142: -5.71886231e-21 + art_sys_143: 6.20295389e-25 + art_sys_144: 9.76380735e-25 + art_sys_145: 8.07295746e-24 + art_sys_146: -0.0 + art_sys_147: 1.71843762e-22 + art_sys_148: -2.08754275e-21 + art_sys_149: -2.08754275e-21 + art_sys_150: 8.16420442e-22 + art_sys_151: 8.16420442e-22 + art_sys_152: -3.64247780e-21 + art_sys_153: 4.22741179e-23 + art_sys_154: 2.01274022e-25 + art_sys_155: 7.80667253e-34 + art_sys_156: 8.85710843e-37 + art_sys_157: 5.75943617e-37 + art_sys_158: -0.0 + art_sys_159: 3.18645375e-20 + art_sys_160: 1.01274580e-21 + art_sys_161: 1.00640350e-20 + art_sys_162: 2.47779719e-22 + art_sys_163: -1.56572900e-22 + art_sys_164: -4.75687274e-22 + art_sys_165: -4.86184233e-24 + art_sys_166: -6.33884127e-31 + art_sys_167: 2.67561596e-30 + art_sys_168: 1.31676495e-30 + art_sys_169: -2.08470007e-30 + art_sys_170: -2.36880636e-29 + art_sys_171: -5.41274245e-29 + art_sys_172: 9.58692874e-28 + art_sys_173: 1.30225523e-28 + art_sys_174: 2.18795035e-29 + art_sys_175: -2.60094370e-36 + art_sys_176: 4.06261186e-30 + art_sys_177: -3.84263884e-30 + art_sys_178: 4.51506793e-31 + art_sys_179: -1.47478979e-32 + art_sys_180: 1.81763227e-32 + art_sys_181: -7.18337542e-33 + art_sys_182: -2.01468271e-33 + art_sys_183: 8.95703638e-36 + art_sys_184: -9.06336608e-38 + art_sys_185: -1.98937301e-38 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -18014,167 +18014,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: -1.10868380e+01 + art_sys_25: 1.10868380e+01 art_sys_26: -8.34872430e+01 - art_sys_27: 2.81430208e+01 - art_sys_28: 1.18005223e+01 - art_sys_29: 4.78281847e-01 - art_sys_30: -7.57193632e-18 - art_sys_31: 1.48921212e-18 - art_sys_32: 1.31187661e-01 - art_sys_33: -1.01370950e-01 - art_sys_34: 2.50862256e-17 - art_sys_35: -5.80587570e-19 - art_sys_36: 1.36018273e-17 - art_sys_37: -1.38164303e-17 + art_sys_27: -2.81430208e+01 + art_sys_28: 2.73408567e-17 + art_sys_29: 7.04431894e-18 + art_sys_30: -1.18005223e+01 + art_sys_31: -4.78281847e-01 + art_sys_32: -1.31187661e-01 + art_sys_33: 1.01370950e-01 + art_sys_34: 1.40306745e-17 + art_sys_35: -1.57161984e-17 + art_sys_36: 1.99433518e-18 + art_sys_37: 1.81719754e-17 art_sys_38: 2.22256904e-02 - art_sys_39: -1.50265540e-18 - art_sys_40: -4.04024569e-18 - art_sys_41: 9.30174617e-19 - art_sys_42: -7.95571661e-18 + art_sys_39: -9.12223565e-19 + art_sys_40: -2.15378581e-18 + art_sys_41: -1.67706512e-18 + art_sys_42: -5.66287578e-18 art_sys_43: 8.54896383e-05 art_sys_44: -4.60926146e-05 art_sys_45: -1.68766902e-05 - art_sys_46: 2.77155350e-18 - art_sys_47: -1.25829237e-18 - art_sys_48: 1.01202170e-18 - art_sys_49: 1.42846036e-06 - art_sys_50: -3.36337179e-18 - art_sys_51: 4.35791075e-17 - art_sys_52: -1.74799915e-17 - art_sys_53: 6.81980901e-07 - art_sys_54: 2.34954220e-19 - art_sys_55: 1.01729466e-16 - art_sys_56: 2.41314776e-16 - art_sys_57: 5.45807191e-19 - art_sys_58: 6.75358712e-19 - art_sys_59: 9.58209784e-19 - art_sys_60: 1.53778269e-19 - art_sys_61: -2.31256787e-20 - art_sys_62: -3.23590591e-21 - art_sys_63: -2.22170117e-21 - art_sys_64: 1.58174324e-07 - art_sys_65: 5.44488304e-22 - art_sys_66: -7.34733671e-22 - art_sys_67: -6.29159308e-22 - art_sys_68: 1.42506515e-08 - art_sys_69: 5.97313391e-09 - art_sys_70: 2.04806215e-19 - art_sys_71: -1.28088118e-18 - art_sys_72: -1.12200825e-09 - art_sys_73: 1.20027120e-19 - art_sys_74: -2.97762529e-19 - art_sys_75: 4.11328449e-21 - art_sys_76: -2.29890072e-20 - art_sys_77: -1.41600473e-21 - art_sys_78: 5.84178878e-19 - art_sys_79: -4.38499031e-17 - art_sys_80: -1.16556169e-21 - art_sys_81: 3.23913974e-23 - art_sys_82: -1.07073782e-23 - art_sys_83: -6.98563249e-12 - art_sys_84: -2.48914018e-18 - art_sys_85: 4.75462194e-18 - art_sys_86: 2.75773082e-12 - art_sys_87: 6.92273968e-19 - art_sys_88: -2.43351730e-23 - art_sys_89: -1.84614638e-12 - art_sys_90: -6.58305464e-20 - art_sys_91: 1.22325408e-17 - art_sys_92: 2.13648446e-18 - art_sys_93: -8.62008059e-13 - art_sys_94: 4.33100977e-13 - art_sys_95: -1.10419553e-18 - art_sys_96: -7.85020432e-20 - art_sys_97: -1.47129502e-18 - art_sys_98: 3.61164415e-18 - art_sys_99: 1.90418663e-13 - art_sys_100: -2.84225653e-22 - art_sys_101: -6.91333522e-22 - art_sys_102: -1.27744929e-18 - art_sys_103: 7.37535734e-14 - art_sys_104: -1.20889196e-18 - art_sys_105: 2.71724734e-14 - art_sys_106: -4.74071085e-19 - art_sys_107: 1.15592290e-18 - art_sys_108: -9.81648567e-15 - art_sys_109: 2.49089029e-18 - art_sys_110: -3.53146528e-20 - art_sys_111: -3.27120572e-15 - art_sys_112: 7.33130108e-20 - art_sys_113: 6.43029069e-20 - art_sys_114: -6.61716013e-20 - art_sys_115: -5.94499242e-21 - art_sys_116: -3.52280074e-20 - art_sys_117: 8.20438747e-23 - art_sys_118: -3.20086028e-20 - art_sys_119: -1.16194480e-15 - art_sys_120: 3.79102939e-16 - art_sys_121: -1.23977491e-16 - art_sys_122: 3.78789785e-17 - art_sys_123: 5.15554055e-19 - art_sys_124: -1.11211103e-17 - art_sys_125: -6.12127530e-20 - art_sys_126: 3.73558255e-18 - art_sys_127: 2.73568849e-20 - art_sys_128: -5.01279794e-19 - art_sys_129: 3.30322043e-22 - art_sys_130: 6.67051642e-21 - art_sys_131: 2.11571106e-21 - art_sys_132: -7.13677085e-27 - art_sys_133: 7.41993973e-24 - art_sys_134: 6.09974887e-20 - art_sys_135: -5.04018960e-23 - art_sys_136: -9.40469165e-24 - art_sys_137: -5.56194357e-24 - art_sys_138: 7.77123920e-24 - art_sys_139: 3.58464204e-24 - art_sys_140: -1.02227870e-23 - art_sys_141: -3.08814299e-23 - art_sys_142: 4.71954797e-24 - art_sys_143: -8.39674406e-24 - art_sys_144: 2.67933648e-22 - art_sys_145: 1.99093277e-20 - art_sys_146: -6.10328111e-20 - art_sys_147: -1.58866305e-20 - art_sys_148: -1.42899633e-20 - art_sys_149: 1.66488903e-21 - art_sys_150: 5.75198186e-22 - art_sys_151: 1.78776219e-22 - art_sys_152: -9.07457293e-25 - art_sys_153: 3.23308517e-26 - art_sys_154: -1.58661050e-25 - art_sys_155: 2.31820128e-26 - art_sys_156: 8.87051185e-27 - art_sys_157: -2.74167263e-27 - art_sys_158: -8.31741095e-30 - art_sys_159: -5.09540814e-29 - art_sys_160: 5.72539194e-29 - art_sys_161: 1.05760709e-30 - art_sys_162: -3.51040540e-29 - art_sys_163: 1.30491835e-28 - art_sys_164: -5.64550108e-28 - art_sys_165: -5.04723831e-29 - art_sys_166: 5.39128379e-29 - art_sys_167: 2.21648507e-27 - art_sys_168: 5.88805525e-23 - art_sys_169: 1.30501992e-28 - art_sys_170: 3.23769974e-24 - art_sys_171: -1.62349075e-23 - art_sys_172: 1.41939060e-29 - art_sys_173: -4.16134848e-32 - art_sys_174: 1.33989451e-24 - art_sys_175: 0.0 - art_sys_176: 1.86221005e-26 - art_sys_177: 0.0 - art_sys_178: -2.30521882e-28 - art_sys_179: 2.06067022e-30 - art_sys_180: -9.98544606e-33 - art_sys_181: 8.40252421e-40 - art_sys_182: 0.0 - art_sys_183: -4.89732507e-38 - art_sys_184: -4.71162729e-38 - art_sys_185: -9.57596672e-41 + art_sys_46: 4.96373987e-19 + art_sys_47: 1.11372158e-18 + art_sys_48: -4.16330191e-19 + art_sys_49: -3.89471901e-15 + art_sys_50: -1.21411896e-16 + art_sys_51: -2.15448963e-17 + art_sys_52: -4.99627251e-18 + art_sys_53: 2.50337038e-19 + art_sys_54: -2.27555889e-19 + art_sys_55: -1.42846036e-06 + art_sys_56: -6.81980901e-07 + art_sys_57: -1.09817529e-16 + art_sys_58: 2.15674168e-20 + art_sys_59: -1.96024228e-20 + art_sys_60: -1.72695565e-17 + art_sys_61: 8.70342254e-17 + art_sys_62: 3.61233551e-18 + art_sys_63: 1.58174324e-07 + art_sys_64: 7.13342022e-19 + art_sys_65: -6.27880043e-22 + art_sys_66: 4.15651187e-22 + art_sys_67: -3.02210744e-18 + art_sys_68: 1.42506514e-08 + art_sys_69: 5.97313361e-09 + art_sys_70: -3.13555127e-17 + art_sys_71: -2.98036508e-19 + art_sys_72: -3.28212073e-19 + art_sys_73: -1.61934238e-21 + art_sys_74: -2.90444084e-21 + art_sys_75: -2.69233133e-23 + art_sys_76: 1.11045354e-19 + art_sys_77: -3.90395507e-17 + art_sys_78: -1.12200825e-09 + art_sys_79: 3.39242073e-23 + art_sys_80: -8.41076571e-19 + art_sys_81: 1.24091130e-24 + art_sys_82: 1.20090185e-23 + art_sys_83: -1.14805565e-20 + art_sys_84: -5.17378176e-24 + art_sys_85: 2.02140705e-24 + art_sys_86: -1.61234462e-20 + art_sys_87: 5.83289080e-19 + art_sys_88: -4.72107110e-21 + art_sys_89: -7.90980987e-22 + art_sys_90: -1.23305493e-19 + art_sys_91: 6.98563247e-12 + art_sys_92: 1.44173347e-19 + art_sys_93: 5.74612467e-18 + art_sys_94: -4.97883643e-18 + art_sys_95: -2.75772607e-12 + art_sys_96: 9.81844431e-22 + art_sys_97: -1.84615901e-12 + art_sys_98: 6.70063255e-19 + art_sys_99: -3.80228156e-20 + art_sys_100: 8.62033381e-13 + art_sys_101: 1.65824509e-18 + art_sys_102: -1.68339992e-18 + art_sys_103: 4.33100935e-13 + art_sys_104: -2.22533591e-19 + art_sys_105: 1.60367562e-19 + art_sys_106: 1.01337923e-18 + art_sys_107: -2.32425261e-20 + art_sys_108: 1.54619367e-21 + art_sys_109: 8.14598119e-21 + art_sys_110: 1.90414041e-13 + art_sys_111: 2.10788201e-18 + art_sys_112: 7.37537442e-14 + art_sys_113: -2.29820145e-21 + art_sys_114: -5.82909663e-18 + art_sys_115: 2.71720702e-14 + art_sys_116: -3.47271884e-18 + art_sys_117: 2.48439557e-19 + art_sys_118: 9.81618677e-15 + art_sys_119: -8.49734831e-19 + art_sys_120: -2.95522270e-19 + art_sys_121: -3.27180597e-15 + art_sys_122: -4.41904090e-19 + art_sys_123: 2.51313746e-19 + art_sys_124: 1.16169736e-15 + art_sys_125: 6.25868533e-19 + art_sys_126: 3.78813003e-16 + art_sys_127: 7.59814252e-20 + art_sys_128: 1.24245785e-16 + art_sys_129: 2.06056084e-19 + art_sys_130: 3.80378743e-17 + art_sys_131: 4.51125404e-21 + art_sys_132: -2.26466256e-19 + art_sys_133: 1.09489292e-17 + art_sys_134: 5.70082136e-23 + art_sys_135: -2.03735008e-19 + art_sys_136: -3.70177385e-18 + art_sys_137: -1.08791299e-23 + art_sys_138: -6.55724837e-21 + art_sys_139: 7.31363604e-21 + art_sys_140: 5.21987946e-19 + art_sys_141: 1.28550785e-19 + art_sys_142: 2.20304791e-20 + art_sys_143: -2.37731722e-24 + art_sys_144: -3.75843890e-24 + art_sys_145: -3.11149859e-23 + art_sys_146: 0.0 + art_sys_147: -6.77003496e-22 + art_sys_148: 8.25608299e-21 + art_sys_149: 8.25608299e-21 + art_sys_150: -3.07691946e-21 + art_sys_151: -3.07691946e-21 + art_sys_152: 1.41273978e-20 + art_sys_153: -1.69337256e-22 + art_sys_154: -7.49952116e-25 + art_sys_155: -3.02576799e-33 + art_sys_156: -3.37791329e-36 + art_sys_157: -2.19136398e-36 + art_sys_158: 0.0 + art_sys_159: -1.21911876e-19 + art_sys_160: -3.85242025e-21 + art_sys_161: -3.85309275e-20 + art_sys_162: -8.99915391e-22 + art_sys_163: 5.46450949e-22 + art_sys_164: 1.79469402e-21 + art_sys_165: 2.24600414e-23 + art_sys_166: -1.31450120e-31 + art_sys_167: -5.41749630e-30 + art_sys_168: 7.86589054e-31 + art_sys_169: 6.87386863e-30 + art_sys_170: 2.51872555e-29 + art_sys_171: -4.11825361e-29 + art_sys_172: 1.24188396e-27 + art_sys_173: -8.30850985e-29 + art_sys_174: -2.69729594e-29 + art_sys_175: 1.00882704e-35 + art_sys_176: -4.57934474e-30 + art_sys_177: -1.18881241e-31 + art_sys_178: -3.61614927e-31 + art_sys_179: 3.27659921e-32 + art_sys_180: -1.89883281e-32 + art_sys_181: -3.62749858e-33 + art_sys_182: 1.73593221e-33 + art_sys_183: 3.27982444e-35 + art_sys_184: -9.58763269e-39 + art_sys_185: 7.77453250e-38 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -18305,167 +18305,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: 1.38300030e+01 + art_sys_25: -1.38300030e+01 art_sys_26: -1.93283491e+01 - art_sys_27: 5.05245959e+01 - art_sys_28: -1.18890768e+01 - art_sys_29: -4.55413650e-01 - art_sys_30: 9.79492544e-18 - art_sys_31: 9.54853131e-18 - art_sys_32: -2.82448384e-01 - art_sys_33: 1.97899849e-01 - art_sys_34: 1.22525934e-17 - art_sys_35: 1.26347898e-17 - art_sys_36: 5.38447209e-18 - art_sys_37: -7.51212654e-18 + art_sys_27: -5.05245959e+01 + art_sys_28: -8.83182156e-18 + art_sys_29: 1.66991910e-17 + art_sys_30: 1.18890768e+01 + art_sys_31: 4.55413650e-01 + art_sys_32: 2.82448384e-01 + art_sys_33: -1.97899849e-01 + art_sys_34: -1.74357171e-17 + art_sys_35: 1.21136227e-17 + art_sys_36: 3.61084492e-18 + art_sys_37: 7.63306518e-18 art_sys_38: -5.24979136e-02 - art_sys_39: 4.54756145e-18 - art_sys_40: 7.70464422e-18 - art_sys_41: -3.33219035e-18 - art_sys_42: 1.26189216e-18 + art_sys_39: -8.88060966e-18 + art_sys_40: -9.73495678e-19 + art_sys_41: -4.21266804e-18 + art_sys_42: 7.40443608e-18 art_sys_43: -2.99902824e-04 art_sys_44: 1.34610509e-04 art_sys_45: 5.51993532e-05 - art_sys_46: 5.97917304e-18 - art_sys_47: -2.69704936e-18 - art_sys_48: 9.69724265e-19 - art_sys_49: -4.77421574e-06 - art_sys_50: 7.06518406e-19 - art_sys_51: 1.46184230e-15 - art_sys_52: 3.07610691e-17 - art_sys_53: -2.22113652e-06 - art_sys_54: 4.56257051e-19 - art_sys_55: -3.30093024e-16 - art_sys_56: -7.87956530e-16 - art_sys_57: 1.19128294e-18 - art_sys_58: -4.01466950e-19 - art_sys_59: -1.21789654e-18 - art_sys_60: 2.56139028e-18 - art_sys_61: 2.05382891e-19 - art_sys_62: 9.37492303e-20 - art_sys_63: 4.42031974e-20 - art_sys_64: -5.41512029e-07 - art_sys_65: -6.33124599e-21 - art_sys_66: -3.06684601e-21 - art_sys_67: -5.70135491e-21 - art_sys_68: -4.51941203e-08 - art_sys_69: -2.02558397e-08 - art_sys_70: -1.38991566e-18 - art_sys_71: 5.16644684e-18 - art_sys_72: 3.74366547e-09 - art_sys_73: 5.07215533e-19 - art_sys_74: 8.63955898e-19 - art_sys_75: 1.36270570e-21 - art_sys_76: 6.78182241e-20 - art_sys_77: 4.41656839e-20 - art_sys_78: -2.26515752e-18 - art_sys_79: 1.38380864e-16 - art_sys_80: 4.64283748e-21 - art_sys_81: 2.52214910e-22 - art_sys_82: -2.69649639e-23 - art_sys_83: 2.41747235e-11 - art_sys_84: 8.40545456e-18 - art_sys_85: -1.49604488e-17 - art_sys_86: -1.03346196e-11 - art_sys_87: -2.44764192e-18 - art_sys_88: 5.11485244e-24 - art_sys_89: 6.48251463e-12 - art_sys_90: 1.44963031e-19 - art_sys_91: -3.90415550e-17 - art_sys_92: -3.05218703e-18 - art_sys_93: 3.12260457e-12 - art_sys_94: -1.55748092e-12 - art_sys_95: 1.53053358e-18 - art_sys_96: 2.45132498e-19 - art_sys_97: 1.40329482e-18 - art_sys_98: -1.26370779e-17 - art_sys_99: -6.87178130e-13 - art_sys_100: 7.66870114e-22 - art_sys_101: 1.93566192e-21 - art_sys_102: 4.38008205e-18 - art_sys_103: -2.66588432e-13 - art_sys_104: 4.70290692e-18 - art_sys_105: -9.81338882e-14 - art_sys_106: 1.71977896e-18 - art_sys_107: -4.03994948e-18 - art_sys_108: 3.55137363e-14 - art_sys_109: -9.11833947e-18 - art_sys_110: 1.26186659e-19 - art_sys_111: 1.18270349e-14 - art_sys_112: -1.15964339e-19 - art_sys_113: -3.38996946e-19 - art_sys_114: 3.03675174e-19 - art_sys_115: 2.18661097e-20 - art_sys_116: 3.45424453e-20 - art_sys_117: -3.33301781e-23 - art_sys_118: 9.14496276e-20 - art_sys_119: 4.20346715e-15 - art_sys_120: -1.37147907e-15 - art_sys_121: 4.48505753e-16 - art_sys_122: -1.37054740e-16 - art_sys_123: -1.86397361e-18 - art_sys_124: 4.02353691e-17 - art_sys_125: 2.05151569e-19 - art_sys_126: -1.35160161e-17 - art_sys_127: -1.02451841e-19 - art_sys_128: 1.81372572e-18 - art_sys_129: -1.20621586e-21 - art_sys_130: -2.45799927e-20 - art_sys_131: -7.81973713e-21 - art_sys_132: 9.50241926e-27 - art_sys_133: -2.67550950e-23 - art_sys_134: -2.20703271e-19 - art_sys_135: 1.35881407e-22 - art_sys_136: 5.10979366e-23 - art_sys_137: 7.10000022e-24 - art_sys_138: -9.88102894e-24 - art_sys_139: 1.07084994e-23 - art_sys_140: 4.24184336e-23 - art_sys_141: 8.21200998e-23 - art_sys_142: -9.27490188e-24 - art_sys_143: 2.16529125e-23 - art_sys_144: -6.03103022e-22 - art_sys_145: -5.12868505e-20 - art_sys_146: 1.57665337e-19 - art_sys_147: 4.14633112e-20 - art_sys_148: 3.74043175e-20 - art_sys_149: -4.34646875e-21 - art_sys_150: -1.49881896e-21 - art_sys_151: -4.60616266e-22 - art_sys_152: 2.36207857e-24 - art_sys_153: -8.14067289e-26 - art_sys_154: 4.15029029e-25 - art_sys_155: -6.01267412e-26 - art_sys_156: -2.30683010e-26 - art_sys_157: 7.16316919e-27 - art_sys_158: 2.42701241e-29 - art_sys_159: 1.32541559e-28 - art_sys_160: -1.50232153e-28 - art_sys_161: -2.80204639e-30 - art_sys_162: 9.24258376e-29 - art_sys_163: -3.43500250e-28 - art_sys_164: 1.47238717e-27 - art_sys_165: 1.38406043e-28 - art_sys_166: -1.43342295e-28 - art_sys_167: -5.82881663e-27 - art_sys_168: -2.14370111e-22 - art_sys_169: -3.39972114e-28 - art_sys_170: -1.19800568e-23 - art_sys_171: 5.72129107e-23 - art_sys_172: -3.81799984e-29 - art_sys_173: 1.18337890e-31 - art_sys_174: -4.87687510e-24 - art_sys_175: 0.0 - art_sys_176: -6.80458817e-26 - art_sys_177: 0.0 - art_sys_178: 8.51551522e-28 - art_sys_179: -5.46602962e-30 - art_sys_180: 2.61909843e-32 - art_sys_181: -2.40905006e-39 - art_sys_182: 0.0 - art_sys_183: 1.88913799e-37 - art_sys_184: 1.73485219e-37 - art_sys_185: 3.53138769e-40 + art_sys_46: 3.92411344e-18 + art_sys_47: -1.89079929e-18 + art_sys_48: 3.14955039e-19 + art_sys_49: 1.13766591e-16 + art_sys_50: -1.22245600e-16 + art_sys_51: 1.11769191e-16 + art_sys_52: 7.32747143e-19 + art_sys_53: 9.00867587e-19 + art_sys_54: 4.09357289e-19 + art_sys_55: 4.77421574e-06 + art_sys_56: 2.22113652e-06 + art_sys_57: 3.59810071e-16 + art_sys_58: 2.03625381e-20 + art_sys_59: -4.28845885e-20 + art_sys_60: 5.51403749e-17 + art_sys_61: -2.83497350e-16 + art_sys_62: -1.09870144e-17 + art_sys_63: -5.41512028e-07 + art_sys_64: -1.01216899e-18 + art_sys_65: 6.15365164e-22 + art_sys_66: -3.65221904e-22 + art_sys_67: 9.41219672e-18 + art_sys_68: -4.51941201e-08 + art_sys_69: -2.02558388e-08 + art_sys_70: 1.05241018e-16 + art_sys_71: 5.78816876e-19 + art_sys_72: 5.80925033e-19 + art_sys_73: 5.51736345e-21 + art_sys_74: 9.71572687e-21 + art_sys_75: 1.07030290e-22 + art_sys_76: -3.71353940e-19 + art_sys_77: 1.22712640e-16 + art_sys_78: 3.74366548e-09 + art_sys_79: -1.35722434e-22 + art_sys_80: 2.92329968e-18 + art_sys_81: -4.74286479e-24 + art_sys_82: -4.20906630e-23 + art_sys_83: -1.97856603e-21 + art_sys_84: 1.79096051e-23 + art_sys_85: -7.27196794e-24 + art_sys_86: -3.06506726e-20 + art_sys_87: -1.63846147e-18 + art_sys_88: 6.05759852e-21 + art_sys_89: -9.09853673e-22 + art_sys_90: 9.58453101e-19 + art_sys_91: -2.41747241e-11 + art_sys_92: -5.94385349e-19 + art_sys_93: -1.82107268e-17 + art_sys_94: 1.67792378e-17 + art_sys_95: 1.03346031e-11 + art_sys_96: -3.48008818e-21 + art_sys_97: 6.48255907e-12 + art_sys_98: -2.10265641e-18 + art_sys_99: 1.43510598e-19 + art_sys_100: -3.12269630e-12 + art_sys_101: -6.17729663e-18 + art_sys_102: 5.45811125e-18 + art_sys_103: -1.55748077e-12 + art_sys_104: 7.07028026e-19 + art_sys_105: -7.50163949e-20 + art_sys_106: -3.72252434e-18 + art_sys_107: 8.37747394e-20 + art_sys_108: -5.93809456e-21 + art_sys_109: -2.93299687e-20 + art_sys_110: -6.87161443e-13 + art_sys_111: -7.50016200e-18 + art_sys_112: -2.66589051e-13 + art_sys_113: 7.99087683e-21 + art_sys_114: 2.05854846e-17 + art_sys_115: -9.81324314e-14 + art_sys_116: 1.25335028e-17 + art_sys_117: -1.03721757e-18 + art_sys_118: -3.55126566e-14 + art_sys_119: 3.14837499e-18 + art_sys_120: 1.06368490e-18 + art_sys_121: 1.18292026e-14 + art_sys_122: 1.55346171e-18 + art_sys_123: -8.77381937e-19 + art_sys_124: -4.20257193e-15 + art_sys_125: -2.25590905e-18 + art_sys_126: -1.37042999e-15 + art_sys_127: -3.02122223e-19 + art_sys_128: -4.49476155e-16 + art_sys_129: -7.29612540e-19 + art_sys_130: -1.37629628e-16 + art_sys_131: -1.63297006e-20 + art_sys_132: 8.28534574e-19 + art_sys_133: -3.96127126e-17 + art_sys_134: -2.06510174e-22 + art_sys_135: 7.44880317e-19 + art_sys_136: 1.33935792e-17 + art_sys_137: 4.02179819e-23 + art_sys_138: 2.43576704e-20 + art_sys_139: -3.03763649e-20 + art_sys_140: -1.88922056e-18 + art_sys_141: -4.64548680e-19 + art_sys_142: -8.00315337e-20 + art_sys_143: 8.61403613e-24 + art_sys_144: 1.36311132e-23 + art_sys_145: 1.12910959e-22 + art_sys_146: -0.0 + art_sys_147: 2.48346315e-21 + art_sys_148: -3.03441916e-20 + art_sys_149: -3.03441916e-20 + art_sys_150: 1.10317376e-20 + art_sys_151: 1.10317376e-20 + art_sys_152: -5.16275843e-20 + art_sys_153: 6.39403569e-22 + art_sys_154: 2.67202512e-24 + art_sys_155: 1.10642401e-32 + art_sys_156: 1.21841877e-35 + art_sys_157: 7.92265562e-36 + art_sys_158: -0.0 + art_sys_159: 4.41033766e-19 + art_sys_160: 1.39261247e-20 + art_sys_161: 1.39401138e-19 + art_sys_162: 3.27666623e-21 + art_sys_163: -1.94940869e-21 + art_sys_164: -6.49196478e-21 + art_sys_165: -7.80974578e-23 + art_sys_166: 8.49202033e-30 + art_sys_167: 1.56314147e-29 + art_sys_168: -2.98857030e-30 + art_sys_169: 6.03779158e-30 + art_sys_170: 2.30325029e-29 + art_sys_171: 2.50412854e-30 + art_sys_172: -5.21445987e-28 + art_sys_173: -2.05786758e-28 + art_sys_174: -4.55651347e-29 + art_sys_175: -3.67314320e-35 + art_sys_176: -7.22753845e-30 + art_sys_177: 2.26468036e-30 + art_sys_178: -4.69532468e-31 + art_sys_179: 2.82902567e-32 + art_sys_180: -9.81765309e-32 + art_sys_181: 4.36591694e-34 + art_sys_182: -1.81343632e-33 + art_sys_183: -5.02623501e-35 + art_sys_184: 3.84267833e-38 + art_sys_185: -2.81053270e-37 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -18596,167 +18596,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: 1.29952067e+00 + art_sys_25: -1.29952067e+00 art_sys_26: 3.01317656e+00 - art_sys_27: 2.48796212e+00 - art_sys_28: -3.01983922e+00 - art_sys_29: 4.63153544e+00 - art_sys_30: 1.17767236e-17 - art_sys_31: -1.55936404e-17 - art_sys_32: 8.83091587e-01 - art_sys_33: -1.06656367e+00 - art_sys_34: -1.78170711e-18 - art_sys_35: 1.53132562e-17 - art_sys_36: -1.44550271e-17 - art_sys_37: -1.21055284e-18 + art_sys_27: -2.48796212e+00 + art_sys_28: -2.18801198e-18 + art_sys_29: 9.90297018e-19 + art_sys_30: 3.01983922e+00 + art_sys_31: -4.63153544e+00 + art_sys_32: -8.83091587e-01 + art_sys_33: 1.06656367e+00 + art_sys_34: 1.18741079e-17 + art_sys_35: -3.68353602e-18 + art_sys_36: 4.13794428e-18 + art_sys_37: -7.40470921e-19 art_sys_38: 2.71044122e-01 - art_sys_39: -3.76714893e-18 - art_sys_40: 1.87577726e-18 - art_sys_41: -1.81090234e-18 - art_sys_42: -1.20217856e-19 + art_sys_39: -8.62454531e-18 + art_sys_40: 5.62752833e-18 + art_sys_41: 1.91538369e-18 + art_sys_42: 7.28061826e-19 art_sys_43: 1.60629334e-03 art_sys_44: -8.27297281e-04 art_sys_45: -3.13362645e-04 - art_sys_46: -2.86428743e-18 - art_sys_47: -2.06069230e-18 - art_sys_48: 6.64634066e-19 - art_sys_49: 2.97507106e-05 - art_sys_50: 5.26388316e-19 - art_sys_51: 5.73439898e-16 - art_sys_52: 2.68686896e-17 - art_sys_53: 1.32950180e-05 - art_sys_54: -7.23927764e-18 - art_sys_55: 1.97742946e-15 - art_sys_56: 4.72094873e-15 - art_sys_57: -1.88002909e-18 - art_sys_58: 1.55719436e-19 - art_sys_59: -1.16662067e-18 - art_sys_60: 1.27929919e-18 - art_sys_61: -1.75357185e-19 - art_sys_62: -2.57920386e-20 - art_sys_63: 2.30826097e-20 - art_sys_64: 3.23234398e-06 - art_sys_65: -9.51095219e-21 - art_sys_66: 2.97679925e-20 - art_sys_67: 3.96834093e-20 - art_sys_68: 2.86397858e-07 - art_sys_69: 1.20173983e-07 - art_sys_70: 9.62805239e-18 - art_sys_71: -2.93766177e-17 - art_sys_72: -2.28126126e-08 - art_sys_73: -2.66732173e-18 - art_sys_74: -3.12682930e-18 - art_sys_75: -1.70612685e-20 - art_sys_76: -2.88569187e-19 - art_sys_77: -1.80677805e-19 - art_sys_78: 1.41363154e-17 - art_sys_79: -8.79747764e-16 - art_sys_80: -2.15154353e-20 - art_sys_81: -7.43415303e-22 - art_sys_82: 1.18748613e-22 - art_sys_83: -1.15574209e-10 - art_sys_84: -5.09867504e-17 - art_sys_85: 9.46825689e-17 - art_sys_86: 5.55800422e-11 - art_sys_87: 1.51689686e-17 - art_sys_88: -2.79957763e-22 - art_sys_89: -3.43456621e-11 - art_sys_90: -2.82031452e-19 - art_sys_91: 2.46719565e-16 - art_sys_92: 1.02004295e-17 - art_sys_93: -1.64794093e-11 - art_sys_94: 8.35875381e-12 - art_sys_95: -4.92535825e-18 - art_sys_96: -1.59016074e-18 - art_sys_97: -1.78343916e-18 - art_sys_98: 6.68330604e-17 - art_sys_99: 3.68487976e-12 - art_sys_100: -3.64146308e-21 - art_sys_101: -9.01508729e-21 - art_sys_102: -2.34335377e-17 - art_sys_103: 1.43870871e-12 - art_sys_104: -2.55083612e-17 - art_sys_105: 5.31265487e-13 - art_sys_106: -9.05530641e-18 - art_sys_107: 2.12311808e-17 - art_sys_108: -1.92637849e-13 - art_sys_109: 4.82777559e-17 - art_sys_110: -6.80454302e-19 - art_sys_111: -6.43405472e-14 - art_sys_112: 4.14609046e-19 - art_sys_113: 1.93787726e-18 - art_sys_114: -1.69574827e-18 - art_sys_115: -1.21297810e-19 - art_sys_116: -7.82946431e-20 - art_sys_117: 6.91777356e-23 - art_sys_118: -4.60530098e-19 - art_sys_119: -2.28848605e-14 - art_sys_120: 7.47743527e-15 - art_sys_121: -2.44676529e-15 - art_sys_122: 7.48066279e-16 - art_sys_123: 1.01420382e-17 - art_sys_124: -2.19703159e-16 - art_sys_125: -1.09504169e-18 - art_sys_126: 7.38148057e-17 - art_sys_127: 5.60277480e-19 - art_sys_128: -9.90767393e-18 - art_sys_129: 6.53154825e-21 - art_sys_130: 1.33992272e-19 - art_sys_131: 4.28381845e-20 - art_sys_132: -5.58205991e-26 - art_sys_133: 1.46113335e-22 - art_sys_134: 1.20576059e-18 - art_sys_135: -6.45910336e-22 - art_sys_136: -2.18931971e-22 - art_sys_137: -4.63623851e-23 - art_sys_138: 9.51037193e-23 - art_sys_139: 9.17748279e-24 - art_sys_140: -1.43217408e-22 - art_sys_141: -3.87507528e-22 - art_sys_142: 5.19116251e-23 - art_sys_143: -1.00698745e-22 - art_sys_144: 2.33840254e-21 - art_sys_145: 2.37846708e-19 - art_sys_146: -7.33585493e-19 - art_sys_147: -1.93348470e-19 - art_sys_148: -1.75342170e-19 - art_sys_149: 2.01475379e-20 - art_sys_150: 7.06184295e-21 - art_sys_151: 2.11840827e-21 - art_sys_152: -1.09371323e-23 - art_sys_153: 4.04647162e-25 - art_sys_154: -1.93461423e-24 - art_sys_155: 2.78532302e-25 - art_sys_156: 1.07207609e-25 - art_sys_157: -3.33922593e-26 - art_sys_158: -1.17958234e-28 - art_sys_159: -6.15187896e-28 - art_sys_160: 7.06439085e-28 - art_sys_161: 1.32884089e-29 - art_sys_162: -4.35708212e-28 - art_sys_163: 1.61419374e-27 - art_sys_164: -6.84406173e-27 - art_sys_165: -6.69463093e-28 - art_sys_166: 6.83887218e-28 - art_sys_167: 2.75081277e-26 - art_sys_168: 1.17339559e-21 - art_sys_169: 1.58907897e-27 - art_sys_170: 6.59957743e-23 - art_sys_171: -3.08653938e-22 - art_sys_172: 1.84884260e-28 - art_sys_173: -6.14512179e-31 - art_sys_174: 2.66343979e-23 - art_sys_175: 0.0 - art_sys_176: 3.72171030e-25 - art_sys_177: 0.0 - art_sys_178: -4.67649045e-27 - art_sys_179: 2.57449840e-29 - art_sys_180: -1.23490861e-31 - art_sys_181: 1.33081199e-38 - art_sys_182: 0.0 - art_sys_183: -1.05226772e-36 - art_sys_184: -9.43141409e-37 - art_sys_185: -1.93005739e-39 + art_sys_46: -7.66725106e-19 + art_sys_47: -6.85231102e-19 + art_sys_48: -4.13198115e-18 + art_sys_49: 2.58989276e-15 + art_sys_50: -1.99312888e-17 + art_sys_51: 4.33083990e-17 + art_sys_52: -3.82069166e-17 + art_sys_53: -1.21463230e-18 + art_sys_54: 1.68388931e-19 + art_sys_55: -2.97507106e-05 + art_sys_56: -1.32950180e-05 + art_sys_57: -2.25571936e-15 + art_sys_58: -2.43407152e-19 + art_sys_59: 5.43363828e-20 + art_sys_60: -3.31095109e-16 + art_sys_61: 1.69870220e-15 + art_sys_62: 8.04026899e-17 + art_sys_63: 3.23234398e-06 + art_sys_64: -7.00048537e-19 + art_sys_65: -1.96442890e-21 + art_sys_66: 2.07101307e-21 + art_sys_67: -5.70917715e-17 + art_sys_68: 2.86397855e-07 + art_sys_69: 1.20173977e-07 + art_sys_70: -6.25253645e-16 + art_sys_71: -5.02378276e-18 + art_sys_72: -5.18524020e-18 + art_sys_73: -2.90170362e-20 + art_sys_74: -5.90876373e-20 + art_sys_75: -5.89162547e-22 + art_sys_76: 2.26228732e-18 + art_sys_77: -7.76404332e-16 + art_sys_78: -2.28126127e-08 + art_sys_79: 7.26877336e-22 + art_sys_80: -1.39741477e-17 + art_sys_81: 2.48482989e-23 + art_sys_82: 2.09469500e-22 + art_sys_83: -4.99147579e-21 + art_sys_84: -8.51846672e-23 + art_sys_85: 3.61002127e-23 + art_sys_86: 1.32177434e-19 + art_sys_87: 9.74787766e-18 + art_sys_88: -4.13978495e-20 + art_sys_89: 4.04412693e-22 + art_sys_90: -4.69025547e-18 + art_sys_91: 1.15574216e-10 + art_sys_92: 3.91770354e-18 + art_sys_93: 1.14885369e-16 + art_sys_94: -1.01589769e-16 + art_sys_95: -5.55799617e-11 + art_sys_96: 1.88196120e-20 + art_sys_97: -3.43458975e-11 + art_sys_98: 1.27425386e-17 + art_sys_99: -8.03149687e-19 + art_sys_100: 1.64798933e-11 + art_sys_101: 3.04269123e-17 + art_sys_102: -2.55127353e-17 + art_sys_103: 8.35875302e-12 + art_sys_104: -4.22264223e-18 + art_sys_105: -2.00230358e-19 + art_sys_106: 1.95838882e-17 + art_sys_107: -4.56243348e-19 + art_sys_108: 2.81741133e-20 + art_sys_109: 1.59624767e-19 + art_sys_110: 3.68479028e-12 + art_sys_111: 3.95946750e-17 + art_sys_112: 1.43871202e-12 + art_sys_113: -4.37881268e-20 + art_sys_114: -1.09005857e-16 + art_sys_115: 5.31257603e-13 + art_sys_116: -6.72050436e-17 + art_sys_117: 5.30010055e-18 + art_sys_118: 1.92631982e-13 + art_sys_119: -1.65774224e-17 + art_sys_120: -5.70910040e-18 + art_sys_121: -6.43523738e-14 + art_sys_122: -8.22617222e-18 + art_sys_123: 4.66128682e-18 + art_sys_124: 2.28799853e-14 + art_sys_125: 1.21948440e-17 + art_sys_126: 7.47172212e-15 + art_sys_127: 1.67468762e-18 + art_sys_128: 2.45205031e-15 + art_sys_129: 3.87887479e-18 + art_sys_130: 7.51202340e-16 + art_sys_131: 9.46794469e-20 + art_sys_132: -4.49706441e-18 + art_sys_133: 2.16313003e-16 + art_sys_134: 1.13317457e-21 + art_sys_135: -4.05263189e-18 + art_sys_136: -7.31457435e-17 + art_sys_137: -2.18115092e-22 + art_sys_138: -1.17717612e-19 + art_sys_139: 1.71328995e-19 + art_sys_140: 1.03223348e-17 + art_sys_141: 2.52972107e-18 + art_sys_142: 4.33705943e-19 + art_sys_143: -4.72441904e-23 + art_sys_144: -7.45417049e-23 + art_sys_145: -6.17254748e-22 + art_sys_146: 0.0 + art_sys_147: -1.35775990e-20 + art_sys_148: 1.65811569e-19 + art_sys_149: 1.65811569e-19 + art_sys_150: -5.98753200e-20 + art_sys_151: -5.98753200e-20 + art_sys_152: 2.80686300e-19 + art_sys_153: -3.45638171e-21 + art_sys_154: -1.45200647e-23 + art_sys_155: -6.01177233e-32 + art_sys_156: -6.59444169e-35 + art_sys_157: -4.28493061e-35 + art_sys_158: 0.0 + art_sys_159: -2.40379692e-18 + art_sys_160: -7.58694866e-20 + art_sys_161: -7.60753012e-19 + art_sys_162: -1.78809633e-20 + art_sys_163: 1.09365363e-20 + art_sys_164: 3.54604127e-20 + art_sys_165: 4.39947887e-22 + art_sys_166: -7.66671848e-29 + art_sys_167: -8.53288413e-29 + art_sys_168: 1.53769500e-29 + art_sys_169: 5.33521125e-30 + art_sys_170: 2.09716475e-29 + art_sys_171: 6.02164535e-29 + art_sys_172: -4.33536484e-28 + art_sys_173: 1.15413803e-28 + art_sys_174: 2.26279139e-29 + art_sys_175: 2.00530541e-34 + art_sys_176: 2.69432626e-31 + art_sys_177: 1.00737388e-30 + art_sys_178: 7.84967056e-32 + art_sys_179: -8.19033343e-33 + art_sys_180: 1.39640688e-31 + art_sys_181: 7.78154981e-33 + art_sys_182: 1.56947618e-32 + art_sys_183: 2.57749856e-34 + art_sys_184: 1.76321349e-37 + art_sys_185: 1.53381697e-36 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -18887,167 +18887,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: -5.47294573e-01 + art_sys_25: 5.47294573e-01 art_sys_26: 1.13898951e+00 - art_sys_27: -2.58247733e+00 - art_sys_28: 6.79556819e-01 - art_sys_29: 2.73763425e+00 - art_sys_30: 5.57270544e-18 - art_sys_31: -8.83030200e-18 - art_sys_32: -2.21566859e+00 - art_sys_33: 1.26807733e+00 - art_sys_34: -1.18979805e-17 - art_sys_35: -1.86161020e-17 - art_sys_36: -1.95944165e-17 - art_sys_37: -8.17354196e-19 + art_sys_27: 2.58247733e+00 + art_sys_28: 3.82686638e-19 + art_sys_29: -8.62197457e-19 + art_sys_30: -6.79556819e-01 + art_sys_31: -2.73763425e+00 + art_sys_32: 2.21566859e+00 + art_sys_33: -1.26807733e+00 + art_sys_34: 5.35673105e-19 + art_sys_35: 2.87278955e-19 + art_sys_36: 2.53665138e-17 + art_sys_37: 1.52258690e-18 art_sys_38: -5.56702667e-01 - art_sys_39: -7.25252421e-19 - art_sys_40: 8.41980254e-18 - art_sys_41: -1.17332162e-17 - art_sys_42: 1.92672178e-18 + art_sys_39: -9.76952075e-18 + art_sys_40: 1.64705214e-18 + art_sys_41: -1.52553678e-18 + art_sys_42: -1.79010068e-18 art_sys_43: -3.73157574e-03 art_sys_44: 2.12658092e-03 art_sys_45: 9.54438016e-04 - art_sys_46: -6.68195110e-19 - art_sys_47: -1.85609698e-18 - art_sys_48: -1.20023813e-18 - art_sys_49: -8.79516336e-05 - art_sys_50: -3.11350088e-18 - art_sys_51: -1.28014057e-15 - art_sys_52: -4.75593175e-17 - art_sys_53: -4.29643582e-05 - art_sys_54: 1.98954855e-17 - art_sys_55: -6.39170634e-15 - art_sys_56: -1.52587491e-14 - art_sys_57: 8.49614247e-18 - art_sys_58: 1.41059975e-19 - art_sys_59: -7.67351813e-18 - art_sys_60: -2.87757744e-18 - art_sys_61: 7.48383945e-19 - art_sys_62: 1.14810466e-19 - art_sys_63: -3.87787842e-20 - art_sys_64: -1.07414560e-05 - art_sys_65: 2.76053697e-20 - art_sys_66: -7.44207532e-20 - art_sys_67: -1.00358233e-19 - art_sys_68: -9.53829626e-07 - art_sys_69: -4.21457801e-07 - art_sys_70: -3.40178948e-17 - art_sys_71: 9.60346535e-17 - art_sys_72: 7.97728184e-08 - art_sys_73: 9.51792119e-18 - art_sys_74: 1.08545867e-17 - art_sys_75: 5.52298307e-20 - art_sys_76: 6.89887771e-19 - art_sys_77: 4.44522974e-19 - art_sys_78: -4.78187294e-17 - art_sys_79: 2.92260329e-15 - art_sys_80: 5.58795553e-20 - art_sys_81: 1.88090511e-21 - art_sys_82: -2.93261439e-22 - art_sys_83: 5.70422006e-10 - art_sys_84: 1.78648817e-16 - art_sys_85: -3.15553746e-16 - art_sys_86: -2.17215839e-10 - art_sys_87: -5.30740963e-17 - art_sys_88: 7.61434728e-22 - art_sys_89: 1.47390462e-10 - art_sys_90: 4.20522053e-19 - art_sys_91: -8.23812504e-16 - art_sys_92: -1.35820450e-17 - art_sys_93: 6.93935280e-11 - art_sys_94: -3.48770517e-11 - art_sys_95: 6.05458556e-18 - art_sys_96: 5.48945763e-18 - art_sys_97: -1.74833857e-17 - art_sys_98: -2.88442833e-16 - art_sys_99: -1.53939975e-11 - art_sys_100: 9.55605033e-21 - art_sys_101: 2.36417714e-20 - art_sys_102: 9.74356263e-17 - art_sys_103: -5.97452372e-12 - art_sys_104: 1.12819201e-16 - art_sys_105: -2.20335559e-12 - art_sys_106: 3.81065579e-17 - art_sys_107: -8.99761775e-17 - art_sys_108: 7.97304929e-13 - art_sys_109: -2.03369937e-16 - art_sys_110: 2.81200730e-18 - art_sys_111: 2.65749404e-13 - art_sys_112: -1.01007947e-18 - art_sys_113: -8.62582170e-18 - art_sys_114: 7.31854143e-18 - art_sys_115: 5.01859501e-19 - art_sys_116: -1.60618410e-19 - art_sys_117: -2.28934717e-22 - art_sys_118: 1.88146488e-18 - art_sys_119: 9.44695012e-14 - art_sys_120: -3.08277895e-14 - art_sys_121: 1.00839490e-14 - art_sys_122: -3.08147484e-15 - art_sys_123: -4.18844484e-17 - art_sys_124: 9.04745343e-16 - art_sys_125: 4.49906986e-18 - art_sys_126: -3.03930776e-16 - art_sys_127: -2.32258248e-18 - art_sys_128: 4.07862631e-17 - art_sys_129: -2.70128554e-20 - art_sys_130: -5.49556630e-19 - art_sys_131: -1.74158767e-19 - art_sys_132: -1.28289707e-25 - art_sys_133: -6.00939368e-22 - art_sys_134: -4.96342103e-18 - art_sys_135: 1.70272603e-21 - art_sys_136: 5.64915773e-22 - art_sys_137: 9.76111877e-23 - art_sys_138: -2.45511114e-22 - art_sys_139: -3.32927125e-23 - art_sys_140: 3.69898712e-22 - art_sys_141: 1.07426863e-21 - art_sys_142: -1.35849405e-22 - art_sys_143: 2.66001097e-22 - art_sys_144: -6.36155255e-21 - art_sys_145: -6.25352200e-19 - art_sys_146: 1.93963441e-18 - art_sys_147: 5.09782797e-19 - art_sys_148: 4.61714669e-19 - art_sys_149: -5.28802699e-20 - art_sys_150: -1.86481908e-20 - art_sys_151: -5.51677156e-21 - art_sys_152: 2.86519682e-23 - art_sys_153: -1.17143417e-24 - art_sys_154: 5.06888784e-24 - art_sys_155: -7.30390869e-25 - art_sys_156: -2.81342695e-25 - art_sys_157: 8.79115878e-26 - art_sys_158: 4.10629109e-28 - art_sys_159: 1.59204302e-27 - art_sys_160: -1.87277245e-27 - art_sys_161: -3.46266440e-29 - art_sys_162: 1.13922413e-27 - art_sys_163: -4.20683307e-27 - art_sys_164: 1.78624172e-26 - art_sys_165: 1.72524563e-27 - art_sys_166: -1.80511245e-27 - art_sys_167: -7.24243905e-26 - art_sys_168: -4.85647174e-21 - art_sys_169: -4.17599976e-27 - art_sys_170: -2.76623336e-22 - art_sys_171: 1.24571723e-21 - art_sys_172: -4.83668628e-28 - art_sys_173: 1.61669799e-30 - art_sys_174: -1.10326921e-22 - art_sys_175: 0.0 - art_sys_176: -1.54642368e-24 - art_sys_177: 0.0 - art_sys_178: 1.96017081e-26 - art_sys_179: -7.04697023e-29 - art_sys_180: 3.22330394e-31 - art_sys_181: -3.97791956e-38 - art_sys_182: 0.0 - art_sys_183: 4.53673385e-36 - art_sys_184: 3.88376069e-36 - art_sys_185: 7.87072670e-39 + art_sys_46: -9.43255379e-19 + art_sys_47: 8.52972044e-19 + art_sys_48: 2.13064656e-17 + art_sys_49: 1.51366833e-16 + art_sys_50: 1.00432728e-16 + art_sys_51: -1.65391213e-16 + art_sys_52: -2.56662614e-17 + art_sys_53: 5.08083591e-18 + art_sys_54: -9.34641985e-19 + art_sys_55: 8.79516336e-05 + art_sys_56: 4.29643582e-05 + art_sys_57: 6.66570094e-15 + art_sys_58: 8.18162473e-20 + art_sys_59: -9.64125047e-21 + art_sys_60: 1.06940353e-15 + art_sys_61: -5.49118186e-15 + art_sys_62: -2.55252899e-16 + art_sys_63: -1.07414560e-05 + art_sys_64: 1.71607535e-18 + art_sys_65: 6.85671017e-21 + art_sys_66: -7.35303952e-21 + art_sys_67: 1.90824311e-16 + art_sys_68: -9.53829619e-07 + art_sys_69: -4.21457781e-07 + art_sys_70: 2.07850982e-15 + art_sys_71: 1.69171136e-17 + art_sys_72: 1.58052637e-17 + art_sys_73: 1.25536914e-19 + art_sys_74: 2.08084924e-19 + art_sys_75: 2.13867278e-21 + art_sys_76: -7.91145580e-18 + art_sys_77: 2.59196779e-15 + art_sys_78: 7.97728186e-08 + art_sys_79: -2.84229682e-21 + art_sys_80: 6.89518370e-17 + art_sys_81: -9.84628935e-23 + art_sys_82: -9.73622203e-22 + art_sys_83: 4.43838851e-20 + art_sys_84: 4.19511665e-22 + art_sys_85: -1.58888681e-22 + art_sys_86: -5.61144008e-19 + art_sys_87: -3.40836936e-17 + art_sys_88: 1.92017738e-19 + art_sys_89: -1.66467007e-21 + art_sys_90: 1.73681160e-17 + art_sys_91: -5.70421999e-10 + art_sys_92: -1.39739869e-17 + art_sys_93: -3.83369801e-16 + art_sys_94: 3.55416842e-16 + art_sys_95: 2.17215452e-10 + art_sys_96: -7.78763237e-20 + art_sys_97: 1.47391471e-10 + art_sys_98: -4.40857042e-17 + art_sys_99: 2.65115715e-18 + art_sys_100: -6.93955663e-11 + art_sys_101: -1.48938174e-16 + art_sys_102: 1.26903971e-16 + art_sys_103: -3.48770484e-11 + art_sys_104: 1.47792123e-17 + art_sys_105: 1.99126378e-18 + art_sys_106: -8.18087138e-17 + art_sys_107: 1.88422861e-18 + art_sys_108: -1.18137876e-19 + art_sys_109: -6.59119901e-19 + art_sys_110: -1.53936238e-11 + art_sys_111: -1.70133774e-16 + art_sys_112: -5.97453745e-12 + art_sys_113: 1.81197804e-19 + art_sys_114: 4.65036282e-16 + art_sys_115: -2.20332289e-12 + art_sys_116: 2.80736876e-16 + art_sys_117: -2.08153189e-17 + art_sys_118: -7.97280683e-13 + art_sys_119: 6.96432846e-17 + art_sys_120: 2.38312055e-17 + art_sys_121: 2.65798166e-13 + art_sys_122: 3.41652831e-17 + art_sys_123: -1.94299026e-17 + art_sys_124: -9.44493848e-14 + art_sys_125: -5.06566606e-17 + art_sys_126: -3.08042110e-14 + art_sys_127: -7.06462013e-18 + art_sys_128: -1.01057583e-14 + art_sys_129: -1.61373809e-17 + art_sys_130: -3.09439656e-15 + art_sys_131: -3.71182763e-19 + art_sys_132: 1.87208143e-17 + art_sys_133: -8.90752600e-16 + art_sys_134: -4.64953675e-21 + art_sys_135: 1.67725589e-17 + art_sys_136: 3.01176692e-16 + art_sys_137: 8.99900053e-22 + art_sys_138: 5.59214820e-19 + art_sys_139: -7.15011464e-19 + art_sys_140: -4.24887860e-17 + art_sys_141: -1.04371153e-17 + art_sys_142: -1.80103775e-18 + art_sys_143: 1.93810427e-22 + art_sys_144: 3.06859943e-22 + art_sys_145: 2.54278645e-21 + art_sys_146: -0.0 + art_sys_147: 5.61977881e-20 + art_sys_148: -6.87227620e-19 + art_sys_149: -6.87227620e-19 + art_sys_150: 2.47044990e-19 + art_sys_151: 2.47044990e-19 + art_sys_152: -1.16418963e-18 + art_sys_153: 1.45247432e-20 + art_sys_154: 5.96702450e-23 + art_sys_155: 2.49459515e-31 + art_sys_156: 2.73487042e-34 + art_sys_157: 1.77725957e-34 + art_sys_158: -0.0 + art_sys_159: 9.91303689e-18 + art_sys_160: 3.12984970e-19 + art_sys_161: 3.13431785e-18 + art_sys_162: 7.36913986e-20 + art_sys_163: -4.39477081e-20 + art_sys_164: -1.46077954e-19 + art_sys_165: -1.82531387e-21 + art_sys_166: 3.09927701e-28 + art_sys_167: 3.56422147e-28 + art_sys_168: -5.96201810e-29 + art_sys_169: 2.18514864e-29 + art_sys_170: 1.08773617e-29 + art_sys_171: 3.27803202e-29 + art_sys_172: -8.80503139e-28 + art_sys_173: 1.76131978e-28 + art_sys_174: 6.20473407e-29 + art_sys_175: -8.28302505e-34 + art_sys_176: 2.77756977e-30 + art_sys_177: -3.38924267e-30 + art_sys_178: 7.40782274e-32 + art_sys_179: 1.61852018e-32 + art_sys_180: 4.20740981e-31 + art_sys_181: 2.75836051e-33 + art_sys_182: -6.57749526e-32 + art_sys_183: -1.16753178e-33 + art_sys_184: -5.52328693e-37 + art_sys_185: -6.31662645e-36 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -19178,167 +19178,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: -1.48475353e-01 + art_sys_25: 1.48475353e-01 art_sys_26: -1.06743364e-01 - art_sys_27: -3.09605307e-01 - art_sys_28: 3.73471351e-01 - art_sys_29: -4.12275208e-01 - art_sys_30: -1.05388428e-18 - art_sys_31: 1.96330205e-18 - art_sys_32: -3.13582620e+00 - art_sys_33: -7.61332956e-01 - art_sys_34: -6.98432881e-18 - art_sys_35: -1.61376764e-17 - art_sys_36: -2.85480509e-20 - art_sys_37: 2.42671645e-18 + art_sys_27: 3.09605307e-01 + art_sys_28: 1.54094621e-19 + art_sys_29: -1.08706082e-19 + art_sys_30: -3.73471351e-01 + art_sys_31: 4.12275208e-01 + art_sys_32: 3.13582620e+00 + art_sys_33: 7.61332956e-01 + art_sys_34: -1.24744879e-17 + art_sys_35: -2.26068069e-18 + art_sys_36: 1.00027054e-17 + art_sys_37: 1.01366152e-19 art_sys_38: 6.46028916e-01 - art_sys_39: -4.14761437e-18 - art_sys_40: 1.66449671e-18 - art_sys_41: -9.51006281e-18 - art_sys_42: 2.74128942e-18 + art_sys_39: 6.48038315e-18 + art_sys_40: -5.66562364e-18 + art_sys_41: -4.31031483e-18 + art_sys_42: -1.49918809e-21 art_sys_43: 1.61879527e-02 art_sys_44: -6.61953534e-03 art_sys_45: -3.09982033e-03 - art_sys_46: -3.48320046e-18 - art_sys_47: -4.81623954e-18 - art_sys_48: -4.63495478e-19 - art_sys_49: 3.03159843e-04 - art_sys_50: 3.33075309e-19 - art_sys_51: -6.64637270e-16 - art_sys_52: 9.74547192e-17 - art_sys_53: 1.37667499e-04 - art_sys_54: -5.91199907e-17 - art_sys_55: 2.04794189e-14 - art_sys_56: 4.88894153e-14 - art_sys_57: -2.80746701e-17 - art_sys_58: 9.00099178e-20 - art_sys_59: 2.18467106e-17 - art_sys_60: -6.65345026e-19 - art_sys_61: -3.03459928e-18 - art_sys_62: -6.19191432e-19 - art_sys_63: 1.47728701e-20 - art_sys_64: 3.51462624e-05 - art_sys_65: -6.78910346e-20 - art_sys_66: 7.04115912e-20 - art_sys_67: 8.91007753e-20 - art_sys_68: 3.05811666e-06 - art_sys_69: 1.32969532e-06 - art_sys_70: 1.11759983e-16 - art_sys_71: -3.13752629e-16 - art_sys_72: -2.54137881e-07 - art_sys_73: -3.08069089e-17 - art_sys_74: -3.53055159e-17 - art_sys_75: -5.83104362e-20 - art_sys_76: -6.82369881e-19 - art_sys_77: -5.15255030e-19 - art_sys_78: 1.53135691e-16 - art_sys_79: -9.37758579e-15 - art_sys_80: -5.65450323e-20 - art_sys_81: -1.92396913e-21 - art_sys_82: 2.91197063e-22 - art_sys_83: -1.30177889e-09 - art_sys_84: -5.69099571e-16 - art_sys_85: 1.01173764e-15 - art_sys_86: 6.77107251e-10 - art_sys_87: 1.69109675e-16 - art_sys_88: -6.27648818e-22 - art_sys_89: -3.98488105e-10 - art_sys_90: -1.79007209e-19 - art_sys_91: 2.63901344e-15 - art_sys_92: 1.36669794e-17 - art_sys_93: -1.96936885e-10 - art_sys_94: 9.95407989e-11 - art_sys_95: -3.79877083e-18 - art_sys_96: -1.75040437e-17 - art_sys_97: 8.75696644e-17 - art_sys_98: 7.73357963e-16 - art_sys_99: 4.41364406e-11 - art_sys_100: -1.08330275e-20 - art_sys_101: -2.54205778e-20 - art_sys_102: -2.67443851e-16 - art_sys_103: 1.72761104e-11 - art_sys_104: -3.06897981e-16 - art_sys_105: 6.38784295e-12 - art_sys_106: -1.08273509e-16 - art_sys_107: 2.53826750e-16 - art_sys_108: -2.32112546e-12 - art_sys_109: 5.77117858e-16 - art_sys_110: -8.17488268e-18 - art_sys_111: -7.75653985e-13 - art_sys_112: 2.24766917e-18 - art_sys_113: 2.49264175e-17 - art_sys_114: -2.09142749e-17 - art_sys_115: -1.45947795e-18 - art_sys_116: 7.61183817e-19 - art_sys_117: 5.09380503e-22 - art_sys_118: -5.39586738e-18 - art_sys_119: -2.76144233e-13 - art_sys_120: 9.02675035e-14 - art_sys_121: -2.95453149e-14 - art_sys_122: 9.03586159e-15 - art_sys_123: 1.22270886e-16 - art_sys_124: -2.65396496e-15 - art_sys_125: -1.30863677e-17 - art_sys_126: 8.91785541e-16 - art_sys_127: 6.78370324e-18 - art_sys_128: -1.19707624e-16 - art_sys_129: 7.90800913e-20 - art_sys_130: 1.59210085e-18 - art_sys_131: 5.07563843e-19 - art_sys_132: 7.60293873e-25 - art_sys_133: 1.75915098e-21 - art_sys_134: 1.45693775e-17 - art_sys_135: -1.96608691e-21 - art_sys_136: -1.62377602e-21 - art_sys_137: 1.89765444e-22 - art_sys_138: 1.69728440e-22 - art_sys_139: 1.26279581e-22 - art_sys_140: -4.14644627e-22 - art_sys_141: -1.31819612e-21 - art_sys_142: 1.58985434e-22 - art_sys_143: -2.66757021e-22 - art_sys_144: -1.16650045e-20 - art_sys_145: 5.31868670e-19 - art_sys_146: -1.73208153e-18 - art_sys_147: -5.11040905e-19 - art_sys_148: -4.91265671e-19 - art_sys_149: 5.17989495e-20 - art_sys_150: 1.95162074e-20 - art_sys_151: 4.47201297e-21 - art_sys_152: -2.72054781e-23 - art_sys_153: 1.14091935e-24 - art_sys_154: -5.24176729e-24 - art_sys_155: 6.66540092e-25 - art_sys_156: 2.69150982e-25 - art_sys_157: -8.96088887e-26 - art_sys_158: -7.74979030e-28 - art_sys_159: -1.51825066e-27 - art_sys_160: 2.06535186e-27 - art_sys_161: 4.31570309e-29 - art_sys_162: -1.31591686e-27 - art_sys_163: 4.79104363e-27 - art_sys_164: -1.76830635e-26 - art_sys_165: -2.89571167e-27 - art_sys_166: 2.34795463e-27 - art_sys_167: 8.30218360e-26 - art_sys_168: 1.43262075e-20 - art_sys_169: 4.20185263e-27 - art_sys_170: 8.27791944e-22 - art_sys_171: -3.54848941e-21 - art_sys_172: 7.26142399e-28 - art_sys_173: -3.70993741e-30 - art_sys_174: 3.24451831e-22 - art_sys_175: 0.0 - art_sys_176: 4.56395266e-24 - art_sys_177: 0.0 - art_sys_178: -5.84000246e-26 - art_sys_179: 8.48955192e-29 - art_sys_180: -3.62496934e-31 - art_sys_181: 9.95350567e-38 - art_sys_182: 0.0 - art_sys_183: -1.39496904e-35 - art_sys_184: -1.12061649e-35 - art_sys_185: -2.28629919e-38 + art_sys_46: -1.65235085e-18 + art_sys_47: 3.62106892e-18 + art_sys_48: -6.83528334e-17 + art_sys_49: -1.80473428e-15 + art_sys_50: 1.89993564e-16 + art_sys_51: -1.97137936e-16 + art_sys_52: 2.29973958e-17 + art_sys_53: -1.15138979e-17 + art_sys_54: 2.11627959e-18 + art_sys_55: -3.03159843e-04 + art_sys_56: -1.37667499e-04 + art_sys_57: -2.29773982e-14 + art_sys_58: -8.73409800e-19 + art_sys_59: 2.06716392e-19 + art_sys_60: -3.42642021e-15 + art_sys_61: 1.75923047e-14 + art_sys_62: 8.21887326e-16 + art_sys_63: 3.51462624e-05 + art_sys_64: -2.39734311e-20 + art_sys_65: -2.58540646e-20 + art_sys_66: 2.51396408e-20 + art_sys_67: -6.22767723e-16 + art_sys_68: 3.05811663e-06 + art_sys_69: 1.32969525e-06 + art_sys_70: -6.80179964e-15 + art_sys_71: -5.45540415e-17 + art_sys_72: -5.19382865e-17 + art_sys_73: -3.24178556e-19 + art_sys_74: -6.59906837e-19 + art_sys_75: -7.08129288e-21 + art_sys_76: 2.52043583e-17 + art_sys_77: -8.30828621e-15 + art_sys_78: -2.54137882e-07 + art_sys_79: 8.79087392e-21 + art_sys_80: -1.57369175e-16 + art_sys_81: 3.01899220e-22 + art_sys_82: 2.40497653e-21 + art_sys_83: -8.97568952e-20 + art_sys_84: -9.71201237e-22 + art_sys_85: 4.03205340e-22 + art_sys_86: 1.65402347e-18 + art_sys_87: 1.08403490e-16 + art_sys_88: -5.40424769e-19 + art_sys_89: 8.32654977e-21 + art_sys_90: -5.49722031e-17 + art_sys_91: 1.30177901e-09 + art_sys_92: 4.45671854e-17 + art_sys_93: 1.22829525e-15 + art_sys_94: -1.13198744e-15 + art_sys_95: -6.77106339e-10 + art_sys_96: 2.27288554e-19 + art_sys_97: -3.98490841e-10 + art_sys_98: 1.43497846e-16 + art_sys_99: -8.58357641e-18 + art_sys_100: 1.96942670e-10 + art_sys_101: 3.38492326e-16 + art_sys_102: -2.88936591e-16 + art_sys_103: 9.95407894e-11 + art_sys_104: -4.69874910e-17 + art_sys_105: -2.94308865e-18 + art_sys_106: 2.37188504e-16 + art_sys_107: -5.49906896e-18 + art_sys_108: 3.46097267e-19 + art_sys_109: 1.92582143e-18 + art_sys_110: 4.41353695e-11 + art_sys_111: 4.60537547e-16 + art_sys_112: 1.72761500e-11 + art_sys_113: -5.30087553e-19 + art_sys_114: -1.27374373e-15 + art_sys_115: 6.38774813e-12 + art_sys_116: -8.04870732e-16 + art_sys_117: 7.40139134e-17 + art_sys_118: 2.32105473e-12 + art_sys_119: -2.01975534e-16 + art_sys_120: -6.83863511e-17 + art_sys_121: -7.75796682e-13 + art_sys_122: -9.78074639e-17 + art_sys_123: 5.57666559e-17 + art_sys_124: 2.76085414e-13 + art_sys_125: 1.46405426e-16 + art_sys_126: 9.01985297e-14 + art_sys_127: 2.04493761e-17 + art_sys_128: 2.96090807e-14 + art_sys_129: 4.60918126e-17 + art_sys_130: 9.07372576e-15 + art_sys_131: 1.18068964e-18 + art_sys_132: -5.43780237e-17 + art_sys_133: 2.61307950e-15 + art_sys_134: 1.37233174e-20 + art_sys_135: -4.87992950e-17 + art_sys_136: -8.83700027e-16 + art_sys_137: -2.62908644e-21 + art_sys_138: -1.32065832e-18 + art_sys_139: 2.11295931e-18 + art_sys_140: 1.24731472e-16 + art_sys_141: 3.05083868e-17 + art_sys_142: 5.22452846e-18 + art_sys_143: -5.71858650e-22 + art_sys_144: -9.01543571e-22 + art_sys_145: -7.46469129e-21 + art_sys_146: 0.0 + art_sys_147: -1.64627512e-19 + art_sys_148: 2.01056450e-18 + art_sys_149: 2.01056450e-18 + art_sys_150: -7.19942539e-19 + art_sys_151: -7.19942539e-19 + art_sys_152: 3.38547718e-18 + art_sys_153: -4.15655025e-20 + art_sys_154: -1.74498035e-22 + art_sys_155: -7.24749682e-31 + art_sys_156: -7.91397865e-34 + art_sys_157: -5.15563795e-34 + art_sys_158: 0.0 + art_sys_159: -2.90154113e-17 + art_sys_160: -9.15563922e-19 + art_sys_161: -9.18773869e-18 + art_sys_162: -2.15942573e-19 + art_sys_163: 1.33222038e-19 + art_sys_164: 4.28479418e-19 + art_sys_165: 5.30101610e-21 + art_sys_166: -9.18176195e-28 + art_sys_167: -1.03279825e-27 + art_sys_168: 1.79740285e-28 + art_sys_169: -6.78188169e-29 + art_sys_170: -6.30263480e-29 + art_sys_171: -9.88566478e-31 + art_sys_172: 5.31350822e-28 + art_sys_173: 6.39188158e-29 + art_sys_174: 2.86923019e-29 + art_sys_175: 2.42526976e-33 + art_sys_176: 2.74010267e-30 + art_sys_177: 2.00630711e-30 + art_sys_178: -3.44991116e-31 + art_sys_179: -2.23112616e-32 + art_sys_180: -7.81655429e-31 + art_sys_181: 3.64091863e-34 + art_sys_182: 1.90828949e-31 + art_sys_183: 3.42946897e-33 + art_sys_184: 1.30333127e-36 + art_sys_185: 1.85347288e-35 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -19469,167 +19469,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: 9.86779758e-03 + art_sys_25: -9.86779758e-03 art_sys_26: -1.03627747e-01 - art_sys_27: 1.54657118e-01 - art_sys_28: -1.27783178e-02 - art_sys_29: -6.58143998e-01 - art_sys_30: -1.44452150e-18 - art_sys_31: 2.30636167e-18 - art_sys_32: -7.35546721e-01 - art_sys_33: -1.96312639e+00 - art_sys_34: 3.83837090e-18 - art_sys_35: 4.24829686e-18 - art_sys_36: 9.15496774e-18 - art_sys_37: 1.17240261e-18 + art_sys_27: -1.54657118e-01 + art_sys_28: -7.00945811e-21 + art_sys_29: 5.20567890e-20 + art_sys_30: 1.27783178e-02 + art_sys_31: 6.58143998e-01 + art_sys_32: 7.35546721e-01 + art_sys_33: 1.96312639e+00 + art_sys_34: -5.28869313e-18 + art_sys_35: -4.76547487e-18 + art_sys_36: -4.97673590e-18 + art_sys_37: -1.15971325e-18 art_sys_38: -7.52009988e-01 - art_sys_39: 1.90091859e-17 - art_sys_40: 3.62010339e-18 - art_sys_41: 3.16013775e-18 - art_sys_42: -3.15890451e-18 + art_sys_39: 1.62795165e-18 + art_sys_40: 1.84307690e-18 + art_sys_41: 3.89077375e-18 + art_sys_42: 7.16459086e-20 art_sys_43: -1.22387258e-02 art_sys_44: 1.45993958e-02 art_sys_45: 7.16458547e-03 - art_sys_46: -2.34289434e-18 - art_sys_47: -2.65746936e-18 - art_sys_48: -1.54353045e-18 - art_sys_49: -8.02417357e-04 - art_sys_50: 6.50500605e-19 - art_sys_51: -3.90188697e-16 - art_sys_52: -3.83590536e-16 - art_sys_53: -3.87875802e-04 - art_sys_54: 1.61151924e-16 - art_sys_55: -5.76978506e-14 - art_sys_56: -1.37750662e-13 - art_sys_57: 7.31353360e-17 - art_sys_58: -5.32564956e-19 - art_sys_59: -6.52760762e-17 - art_sys_60: -1.69104675e-18 - art_sys_61: 8.70663018e-18 - art_sys_62: 1.82169323e-18 - art_sys_63: -1.18182961e-19 - art_sys_64: -1.02615750e-04 - art_sys_65: 2.27292054e-19 - art_sys_66: -1.49635554e-19 - art_sys_67: -1.81770549e-19 - art_sys_68: -9.63739165e-06 - art_sys_69: -4.16412011e-06 - art_sys_70: -3.26255975e-16 - art_sys_71: 9.15568483e-16 - art_sys_72: 8.13268169e-07 - art_sys_73: 9.00061588e-17 - art_sys_74: 1.08734446e-16 - art_sys_75: 1.33942337e-19 - art_sys_76: 1.26913204e-18 - art_sys_77: 9.30830038e-19 - art_sys_78: -4.82794942e-16 - art_sys_79: 2.95614742e-14 - art_sys_80: 1.12091943e-19 - art_sys_81: 4.23862203e-21 - art_sys_82: -6.88142514e-22 - art_sys_83: 5.58636774e-09 - art_sys_84: 1.82239945e-15 - art_sys_85: -3.18827222e-15 - art_sys_86: -2.13439436e-09 - art_sys_87: -5.41088463e-16 - art_sys_88: 7.86972255e-22 - art_sys_89: 1.49058142e-09 - art_sys_90: -1.97025005e-19 - art_sys_91: -8.31380258e-15 - art_sys_92: -1.18826895e-17 - art_sys_93: 6.96739673e-10 - art_sys_94: -3.54983868e-10 - art_sys_95: -2.05498934e-18 - art_sys_96: 5.60670015e-17 - art_sys_97: -2.97403584e-16 - art_sys_98: -2.91941247e-15 - art_sys_99: -1.56911890e-10 - art_sys_100: 1.98620810e-20 - art_sys_101: 4.57271569e-20 - art_sys_102: 9.84920248e-16 - art_sys_103: -6.12134189e-11 - art_sys_104: 1.15202109e-15 - art_sys_105: -2.26440135e-11 - art_sys_106: 3.82152944e-16 - art_sys_107: -9.08024569e-16 - art_sys_108: 8.21035339e-12 - art_sys_109: -2.04292175e-15 - art_sys_110: 2.89737278e-17 - art_sys_111: 2.74258521e-12 - art_sys_112: -7.18775970e-18 - art_sys_113: -8.88096617e-17 - art_sys_114: 7.41927288e-17 - art_sys_115: 5.17436256e-18 - art_sys_116: -3.18327979e-18 - art_sys_117: -1.96844120e-21 - art_sys_118: 1.90771291e-17 - art_sys_119: 9.75846875e-13 - art_sys_120: -3.18770100e-13 - art_sys_121: 1.04331128e-13 - art_sys_122: -3.18943523e-14 - art_sys_123: -4.32316923e-16 - art_sys_124: 9.36744118e-15 - art_sys_125: 4.63245607e-17 - art_sys_126: -3.14724433e-15 - art_sys_127: -2.39797240e-17 - art_sys_128: 4.22423670e-16 - art_sys_129: -2.79638557e-19 - art_sys_130: -5.62021424e-18 - art_sys_131: -1.78633973e-18 - art_sys_132: -4.09260720e-24 - art_sys_133: -6.20878417e-21 - art_sys_134: -5.14121690e-17 - art_sys_135: 3.46811722e-21 - art_sys_136: 2.72382638e-21 - art_sys_137: -8.26947276e-22 - art_sys_138: -2.54783237e-22 - art_sys_139: -9.06523878e-23 - art_sys_140: 6.83660561e-22 - art_sys_141: 3.32651866e-21 - art_sys_142: -3.09379461e-22 - art_sys_143: 5.19557069e-22 - art_sys_144: 1.14796044e-20 - art_sys_145: -1.14432824e-18 - art_sys_146: 3.84541243e-18 - art_sys_147: 1.01315123e-18 - art_sys_148: 9.65073963e-19 - art_sys_149: -9.50594459e-20 - art_sys_150: -4.17202483e-20 - art_sys_151: -8.31484549e-21 - art_sys_152: 5.01415184e-23 - art_sys_153: -5.33259283e-24 - art_sys_154: 9.63305991e-24 - art_sys_155: -1.29243024e-24 - art_sys_156: -5.20934861e-25 - art_sys_157: 1.74002120e-25 - art_sys_158: 2.85080923e-27 - art_sys_159: 2.51543187e-27 - art_sys_160: -4.25728465e-27 - art_sys_161: -7.53614762e-29 - art_sys_162: 2.39893437e-27 - art_sys_163: -8.37519945e-27 - art_sys_164: 3.17122998e-26 - art_sys_165: 4.23541306e-27 - art_sys_166: -4.51294168e-27 - art_sys_167: -1.61863708e-25 - art_sys_168: -5.06443300e-20 - art_sys_169: -8.34802125e-27 - art_sys_170: -2.93747813e-21 - art_sys_171: 1.24696958e-20 - art_sys_172: -1.30809844e-27 - art_sys_173: 6.80335522e-30 - art_sys_174: -1.14759767e-21 - art_sys_175: 0.0 - art_sys_176: -1.61567007e-23 - art_sys_177: 0.0 - art_sys_178: 2.07290526e-25 - art_sys_179: -2.01426126e-28 - art_sys_180: 6.69463546e-31 - art_sys_181: -2.93146264e-37 - art_sys_182: 0.0 - art_sys_183: 4.98099562e-35 - art_sys_184: 3.96168539e-35 - art_sys_185: 8.05525142e-38 + art_sys_46: 1.86727331e-18 + art_sys_47: 1.54190684e-18 + art_sys_48: 1.73372181e-16 + art_sys_49: -8.35192674e-15 + art_sys_50: -1.96671961e-16 + art_sys_51: -1.67196737e-16 + art_sys_52: 3.16629697e-17 + art_sys_53: 3.21957071e-17 + art_sys_54: -8.68235048e-18 + art_sys_55: 8.02417357e-04 + art_sys_56: 3.87875802e-04 + art_sys_57: 6.08173880e-14 + art_sys_58: 1.08106203e-18 + art_sys_59: -7.76384893e-19 + art_sys_60: 9.65125040e-15 + art_sys_61: -4.95699594e-14 + art_sys_62: -2.30973810e-15 + art_sys_63: -1.02615750e-04 + art_sys_64: 8.87651415e-19 + art_sys_65: 8.21770801e-20 + art_sys_66: -7.96311400e-20 + art_sys_67: 1.81893326e-15 + art_sys_68: -9.63739157e-06 + art_sys_69: -4.16411990e-06 + art_sys_70: 1.98594452e-14 + art_sys_71: 1.59829853e-16 + art_sys_72: 1.51314517e-16 + art_sys_73: 1.24335405e-18 + art_sys_74: 2.10310128e-18 + art_sys_75: 2.15664392e-20 + art_sys_76: -8.06568399e-17 + art_sys_77: 2.61954585e-14 + art_sys_78: 8.13268171e-07 + art_sys_79: -2.82604779e-20 + art_sys_80: 6.75327196e-16 + art_sys_81: -9.53729168e-22 + art_sys_82: -9.63186917e-21 + art_sys_83: 3.09372210e-19 + art_sys_84: 4.08964939e-21 + art_sys_85: -1.53251882e-21 + art_sys_86: -5.89201998e-18 + art_sys_87: -3.40276947e-16 + art_sys_88: 1.92683057e-18 + art_sys_89: -2.57580077e-20 + art_sys_90: 1.72231184e-16 + art_sys_91: -5.58636768e-09 + art_sys_92: -1.41186668e-16 + art_sys_93: -3.87021270e-15 + art_sys_94: 3.62239652e-15 + art_sys_95: 2.13439054e-09 + art_sys_96: -8.04354720e-19 + art_sys_97: 1.49059162e-09 + art_sys_98: -4.52131154e-16 + art_sys_99: 2.68640637e-17 + art_sys_100: -6.96760137e-10 + art_sys_101: -1.45056103e-15 + art_sys_102: 1.24663254e-15 + art_sys_103: -3.54983834e-10 + art_sys_104: 1.50568898e-16 + art_sys_105: 1.63540433e-17 + art_sys_106: -8.18976514e-16 + art_sys_107: 1.94434132e-17 + art_sys_108: -1.22494088e-18 + art_sys_109: -6.80645812e-18 + art_sys_110: -1.56908081e-10 + art_sys_111: -1.71183991e-15 + art_sys_112: -6.12135591e-11 + art_sys_113: 1.87241616e-18 + art_sys_114: 4.69561423e-15 + art_sys_115: -2.26436774e-11 + art_sys_116: 2.86142355e-15 + art_sys_117: -2.03473147e-16 + art_sys_118: -8.21010326e-12 + art_sys_119: 6.97783245e-16 + art_sys_120: 2.43057042e-16 + art_sys_121: 2.74308924e-12 + art_sys_122: 3.45804602e-16 + art_sys_123: -1.98115670e-16 + art_sys_124: -9.75639033e-13 + art_sys_125: -5.19767148e-16 + art_sys_126: -3.18526430e-13 + art_sys_127: -7.26045995e-17 + art_sys_128: -1.04556446e-13 + art_sys_129: -1.63866795e-16 + art_sys_130: -3.20280173e-14 + art_sys_131: -4.05364415e-18 + art_sys_132: 1.92686828e-16 + art_sys_133: -9.22294149e-15 + art_sys_134: -4.83295164e-20 + art_sys_135: 1.72653223e-16 + art_sys_136: 3.11871338e-15 + art_sys_137: 9.29225394e-21 + art_sys_138: 5.49732340e-18 + art_sys_139: -7.45120375e-18 + art_sys_140: -4.40115106e-16 + art_sys_141: -1.07810539e-16 + art_sys_142: -1.85174027e-17 + art_sys_143: 2.01423844e-21 + art_sys_144: 3.18043826e-21 + art_sys_145: 2.63447811e-20 + art_sys_146: -0.0 + art_sys_147: 5.81793555e-19 + art_sys_148: -7.10969462e-18 + art_sys_149: -7.10969462e-18 + art_sys_150: 2.54680344e-18 + art_sys_151: 2.54680344e-18 + art_sys_152: -1.19854824e-17 + art_sys_153: 1.47743075e-19 + art_sys_154: 6.16261518e-22 + art_sys_155: 2.56624441e-30 + art_sys_156: 2.80745971e-33 + art_sys_157: 1.82573658e-33 + art_sys_158: -0.0 + art_sys_159: 1.02480573e-16 + art_sys_160: 3.23482500e-18 + art_sys_161: 3.24371946e-17 + art_sys_162: 7.62470608e-19 + art_sys_163: -4.64890382e-19 + art_sys_164: -1.51226987e-18 + art_sys_165: -1.87380947e-20 + art_sys_166: 3.24484824e-27 + art_sys_167: 3.68722557e-27 + art_sys_168: -6.35530481e-28 + art_sys_169: 1.88879315e-28 + art_sys_170: 5.17039512e-29 + art_sys_171: -1.74909503e-28 + art_sys_172: 2.69548148e-28 + art_sys_173: -8.97501486e-29 + art_sys_174: -2.41707090e-29 + art_sys_175: -8.56902924e-33 + art_sys_176: -7.13987683e-30 + art_sys_177: 1.63296343e-30 + art_sys_178: 7.30740137e-33 + art_sys_179: 1.33021180e-31 + art_sys_180: 2.66052752e-30 + art_sys_181: -2.26189886e-32 + art_sys_182: -6.67888222e-31 + art_sys_183: -1.20285203e-32 + art_sys_184: -4.76527387e-36 + art_sys_185: -6.54143289e-35 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -19760,167 +19760,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: 5.67305623e-03 + art_sys_25: -5.67305623e-03 art_sys_26: -8.85964103e-03 - art_sys_27: 2.68773801e-02 - art_sys_28: -1.78411342e-02 - art_sys_29: -1.75259929e-02 - art_sys_30: -3.20255537e-20 - art_sys_31: 2.81906805e-20 - art_sys_32: 1.34345944e-01 - art_sys_33: -1.11377876e-01 - art_sys_34: 1.45243761e-19 - art_sys_35: 1.34076761e-18 - art_sys_36: 7.02234365e-19 - art_sys_37: -9.96011980e-20 + art_sys_27: -2.68773801e-02 + art_sys_28: -5.29985410e-21 + art_sys_29: 9.15446058e-21 + art_sys_30: 1.78411342e-02 + art_sys_31: 1.75259929e-02 + art_sys_32: -1.34345944e-01 + art_sys_33: 1.11377876e-01 + art_sys_34: 3.76680650e-19 + art_sys_35: -2.60236249e-19 + art_sys_36: -1.04236534e-18 + art_sys_37: -9.41397615e-20 art_sys_38: -1.54332737e-01 - art_sys_39: 2.64280619e-18 - art_sys_40: 4.56136556e-19 - art_sys_41: 9.25938540e-19 - art_sys_42: -1.22523214e-19 + art_sys_39: -5.43365919e-19 + art_sys_40: 6.82260652e-19 + art_sys_41: 7.46934942e-19 + art_sys_42: 3.45112917e-18 art_sys_43: 1.86275580e-01 art_sys_44: -5.97840953e-02 art_sys_45: -3.97699986e-02 - art_sys_46: 4.41113513e-18 - art_sys_47: 1.84431539e-18 - art_sys_48: -3.48143509e-18 - art_sys_49: 3.89194564e-03 - art_sys_50: -6.44461069e-18 - art_sys_51: 9.39452226e-16 - art_sys_52: 1.98386203e-15 - art_sys_53: 1.95752722e-03 - art_sys_54: -8.14872704e-16 - art_sys_55: 2.91195557e-13 - art_sys_56: 6.95194901e-13 - art_sys_57: -3.77648142e-16 - art_sys_58: 2.16571507e-19 - art_sys_59: 3.37136633e-16 - art_sys_60: 8.60056860e-18 - art_sys_61: -4.46597849e-17 - art_sys_62: -9.08646505e-18 - art_sys_63: 7.09097768e-19 - art_sys_64: 5.30203399e-04 - art_sys_65: -1.13448874e-18 - art_sys_66: -6.29737690e-20 - art_sys_67: -1.95992217e-19 - art_sys_68: 4.76445067e-05 - art_sys_69: 2.14607036e-05 - art_sys_70: 1.68316370e-15 - art_sys_71: -4.73323422e-15 - art_sys_72: -4.19695798e-06 - art_sys_73: -4.64760277e-16 - art_sys_74: -5.47054375e-16 - art_sys_75: -6.65216512e-20 - art_sys_76: 6.65351875e-19 - art_sys_77: -5.75617188e-19 - art_sys_78: 2.40045970e-15 - art_sys_79: -1.45845704e-13 - art_sys_80: 1.98334645e-20 - art_sys_81: -4.07407343e-22 - art_sys_82: 6.45920104e-22 - art_sys_83: -2.59890441e-08 - art_sys_84: -9.40576411e-15 - art_sys_85: 1.57625371e-14 - art_sys_86: 1.23789522e-08 - art_sys_87: 2.79251608e-15 - art_sys_88: 1.91913633e-21 - art_sys_89: -7.52768154e-09 - art_sys_90: 2.73861893e-18 - art_sys_91: 4.11936109e-14 - art_sys_92: 3.37674964e-17 - art_sys_93: -3.73638420e-09 - art_sys_94: 1.88350933e-09 - art_sys_95: 3.95738853e-17 - art_sys_96: -2.88368314e-16 - art_sys_97: 1.80989428e-15 - art_sys_98: 1.46354853e-14 - art_sys_99: 8.39783359e-10 - art_sys_100: -1.55274028e-20 - art_sys_101: -1.59861961e-20 - art_sys_102: -5.00753702e-15 - art_sys_103: 3.28586233e-10 - art_sys_104: -5.81386144e-15 - art_sys_105: 1.21712331e-10 - art_sys_106: -2.05535063e-15 - art_sys_107: 4.81838504e-15 - art_sys_108: -4.42555005e-11 - art_sys_109: 1.09483516e-14 - art_sys_110: -1.55617666e-16 - art_sys_111: -1.47921974e-11 - art_sys_112: 3.81841919e-17 - art_sys_113: 4.76412140e-16 - art_sys_114: -3.97704427e-16 - art_sys_115: -2.78556758e-17 - art_sys_116: 1.76242867e-17 - art_sys_117: 1.03203512e-20 - art_sys_118: -1.02413382e-16 - art_sys_119: -5.26930733e-12 - art_sys_120: 1.72244486e-12 - art_sys_121: -5.63897221e-13 - art_sys_122: 1.72467303e-13 - art_sys_123: 2.33180772e-15 - art_sys_124: -5.06572174e-14 - art_sys_125: -2.49433687e-16 - art_sys_126: 1.70229123e-14 - art_sys_127: 1.29453836e-16 - art_sys_128: -2.28506516e-15 - art_sys_129: 1.50995071e-18 - art_sys_130: 3.02567702e-17 - art_sys_131: 9.65073588e-18 - art_sys_132: 2.45788728e-23 - art_sys_133: 3.35573572e-20 - art_sys_134: 2.78114009e-16 - art_sys_135: -3.40333169e-21 - art_sys_136: -1.55025249e-20 - art_sys_137: 5.72670809e-21 - art_sys_138: -1.47331680e-21 - art_sys_139: 1.35065528e-21 - art_sys_140: -2.66755598e-22 - art_sys_141: -7.30861732e-21 - art_sys_142: 3.29277754e-22 - art_sys_143: 5.27870057e-23 - art_sys_144: -2.73912811e-19 - art_sys_145: -1.85569735e-18 - art_sys_146: 4.12779608e-18 - art_sys_147: 2.18196680e-19 - art_sys_148: -2.57498505e-19 - art_sys_149: -4.02287437e-20 - art_sys_150: 4.31095038e-21 - art_sys_151: -2.05455002e-20 - art_sys_152: 3.56883244e-23 - art_sys_153: 1.48706124e-24 - art_sys_154: -4.82177180e-25 - art_sys_155: -1.40116766e-24 - art_sys_156: -3.40829812e-25 - art_sys_157: -6.82561722e-27 - art_sys_158: -1.28621651e-26 - art_sys_159: 3.41638462e-27 - art_sys_160: 3.03510167e-27 - art_sys_161: 1.01390951e-28 - art_sys_162: -1.98404381e-27 - art_sys_163: 6.03558462e-27 - art_sys_164: 1.44425674e-26 - art_sys_165: -1.67222899e-26 - art_sys_166: 7.78675211e-27 - art_sys_167: 1.34372013e-25 - art_sys_168: 2.74330175e-19 - art_sys_169: -1.70100368e-27 - art_sys_170: 1.59749582e-20 - art_sys_171: -6.68099655e-20 - art_sys_172: 3.54365888e-27 - art_sys_173: -3.21475641e-29 - art_sys_174: 6.21170033e-21 - art_sys_175: 0.0 - art_sys_176: 8.75468712e-23 - art_sys_177: 0.0 - art_sys_178: -1.12626784e-24 - art_sys_179: 3.95862800e-28 - art_sys_180: -3.50018300e-31 - art_sys_181: 1.47746199e-36 - art_sys_182: 0.0 - art_sys_183: -2.73244117e-34 - art_sys_184: -2.12814873e-34 - art_sys_185: -4.34402658e-37 + art_sys_46: -2.55952552e-18 + art_sys_47: 3.09321829e-18 + art_sys_48: -8.41037392e-16 + art_sys_49: -3.10802861e-15 + art_sys_50: 1.99371932e-15 + art_sys_51: 2.76679674e-16 + art_sys_52: 2.40707081e-16 + art_sys_53: -1.56100501e-16 + art_sys_54: 4.07986346e-17 + art_sys_55: -3.89194564e-03 + art_sys_56: -1.95752722e-03 + art_sys_57: -2.94980440e-13 + art_sys_58: -7.04332848e-18 + art_sys_59: 3.68299354e-18 + art_sys_60: -4.87060951e-14 + art_sys_61: 2.50167136e-13 + art_sys_62: 1.16593693e-14 + art_sys_63: 5.30203399e-04 + art_sys_64: -2.01792124e-18 + art_sys_65: -4.14776301e-19 + art_sys_66: 3.93828371e-19 + art_sys_67: -9.40065802e-15 + art_sys_68: 4.76445064e-05 + art_sys_69: 2.14607026e-05 + art_sys_70: -1.02609913e-13 + art_sys_71: -8.25640081e-16 + art_sys_72: -7.84005071e-16 + art_sys_73: -5.98292942e-18 + art_sys_74: -1.09140970e-17 + art_sys_75: -1.28881699e-19 + art_sys_76: 4.16237239e-16 + art_sys_77: -1.29695747e-13 + art_sys_78: -4.19695799e-06 + art_sys_79: 1.61020100e-19 + art_sys_80: -3.14176127e-15 + art_sys_81: 5.59611231e-21 + art_sys_82: 4.69258194e-20 + art_sys_83: -1.69636496e-18 + art_sys_84: -1.91924015e-20 + art_sys_85: 8.15065389e-21 + art_sys_86: 3.14156325e-17 + art_sys_87: 1.71711210e-15 + art_sys_88: -1.03325757e-17 + art_sys_89: 1.46035654e-19 + art_sys_90: -8.85852818e-16 + art_sys_91: 2.59890456e-08 + art_sys_92: 7.27081660e-16 + art_sys_93: 1.91636223e-14 + art_sys_94: -1.86941858e-14 + art_sys_95: -1.23789342e-08 + art_sys_96: 4.33555611e-18 + art_sys_97: -7.52773323e-09 + art_sys_98: 2.34828125e-15 + art_sys_99: -1.36029948e-16 + art_sys_100: 3.73649396e-09 + art_sys_101: 6.74068589e-15 + art_sys_102: -5.78446984e-15 + art_sys_103: 1.88350915e-09 + art_sys_104: -7.76723851e-16 + art_sys_105: -5.97015648e-17 + art_sys_106: 4.51741173e-15 + art_sys_107: -1.04867784e-16 + art_sys_108: 6.61041350e-18 + art_sys_109: 3.67453213e-17 + art_sys_110: 8.39762986e-10 + art_sys_111: 8.71562366e-15 + art_sys_112: 3.28586984e-10 + art_sys_113: -1.01159425e-17 + art_sys_114: -2.40674766e-14 + art_sys_115: 1.21710524e-10 + art_sys_116: -1.53129361e-14 + art_sys_117: 1.43855076e-15 + art_sys_118: 4.42541516e-11 + art_sys_119: -3.84390670e-15 + art_sys_120: -1.30104306e-15 + art_sys_121: -1.47949197e-11 + art_sys_122: -1.86043419e-15 + art_sys_123: 1.06135274e-15 + art_sys_124: 5.26818534e-12 + art_sys_125: 2.78795645e-15 + art_sys_126: 1.72112815e-12 + art_sys_127: 3.89566499e-16 + art_sys_128: 5.65113739e-13 + art_sys_129: 8.75873684e-16 + art_sys_130: 1.73189841e-13 + art_sys_131: 2.28341498e-17 + art_sys_132: -1.03676667e-15 + art_sys_133: 4.98774539e-14 + art_sys_134: 2.62229568e-19 + art_sys_135: -9.30141111e-16 + art_sys_136: -1.68686033e-14 + art_sys_137: -5.01518487e-20 + art_sys_138: -2.58044266e-17 + art_sys_139: 4.03737426e-17 + art_sys_140: 2.38101855e-15 + art_sys_141: 5.81931165e-16 + art_sys_142: 9.95489638e-17 + art_sys_143: -1.09252273e-20 + art_sys_144: -1.72133012e-20 + art_sys_145: -1.42503383e-19 + art_sys_146: 0.0 + art_sys_147: -3.14248938e-18 + art_sys_148: 3.83727253e-17 + art_sys_149: 3.83727253e-17 + art_sys_150: -1.37209246e-17 + art_sys_151: -1.37209246e-17 + art_sys_152: 6.45513286e-17 + art_sys_153: -7.91851676e-19 + art_sys_154: -3.32703622e-21 + art_sys_155: -1.38179201e-29 + art_sys_156: -1.50541454e-32 + art_sys_157: -9.82453559e-33 + art_sys_158: 0.0 + art_sys_159: -5.53651170e-16 + art_sys_160: -1.74692417e-17 + art_sys_161: -1.75360861e-16 + art_sys_162: -4.12150511e-18 + art_sys_163: 2.55775808e-18 + art_sys_164: 8.17854407e-18 + art_sys_165: 1.01209214e-19 + art_sys_166: -1.76535149e-26 + art_sys_167: -1.98230610e-26 + art_sys_168: 3.44263170e-27 + art_sys_169: -1.04023142e-27 + art_sys_170: -3.54396491e-28 + art_sys_171: 5.60154857e-28 + art_sys_172: -2.90524140e-27 + art_sys_173: 3.02554250e-28 + art_sys_174: -1.01147322e-29 + art_sys_175: 4.62844138e-32 + art_sys_176: 3.23017104e-29 + art_sys_177: 9.22554215e-31 + art_sys_178: -1.03549567e-30 + art_sys_179: -5.47683058e-31 + art_sys_180: -1.32012096e-29 + art_sys_181: 6.38999812e-32 + art_sys_182: 3.61594169e-30 + art_sys_183: 6.51581777e-32 + art_sys_184: 2.54818784e-35 + art_sys_185: 3.53794783e-34 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -20051,167 +20051,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: 1.04046512e-03 + art_sys_25: -1.04046512e-03 art_sys_26: 1.27321525e-03 - art_sys_27: 1.77953259e-04 - art_sys_28: -2.30380582e-03 - art_sys_29: 3.41186608e-02 - art_sys_30: 7.65526392e-20 - art_sys_31: -1.23650639e-19 - art_sys_32: 5.23935428e-02 - art_sys_33: 1.18339460e-01 - art_sys_34: 4.00447250e-20 - art_sys_35: -2.06769105e-19 - art_sys_36: -5.15011765e-19 - art_sys_37: -7.03207203e-20 + art_sys_27: -1.77953259e-04 + art_sys_28: -6.35364527e-22 + art_sys_29: 2.90848951e-23 + art_sys_30: 2.30380582e-03 + art_sys_31: -3.41186608e-02 + art_sys_32: -5.23935428e-02 + art_sys_33: -1.18339460e-01 + art_sys_34: 3.29965103e-19 + art_sys_35: 2.95452356e-19 + art_sys_36: 3.20157503e-19 + art_sys_37: 6.79387113e-20 art_sys_38: 5.01272356e-02 - art_sys_39: -9.90361694e-19 - art_sys_40: -2.65088154e-19 - art_sys_41: -1.66239154e-19 - art_sys_42: 4.79325972e-19 + art_sys_39: -6.77853221e-20 + art_sys_40: -1.23623875e-19 + art_sys_41: -2.42624109e-19 + art_sys_42: 2.26053717e-18 art_sys_43: 1.30876649e-01 art_sys_44: 9.07651704e-02 art_sys_45: 5.32094854e-02 - art_sys_46: 1.36505870e-18 - art_sys_47: 1.53554634e-18 - art_sys_48: 3.11726374e-18 - art_sys_49: -9.87293354e-03 - art_sys_50: 1.09115570e-17 - art_sys_51: -1.03316366e-15 - art_sys_52: -4.48365600e-15 - art_sys_53: -4.54523682e-03 - art_sys_54: 1.89053891e-15 - art_sys_55: -6.76138324e-13 - art_sys_56: -1.61419209e-12 - art_sys_57: 8.77885308e-16 - art_sys_58: -1.63757250e-19 - art_sys_59: -9.79481017e-16 - art_sys_60: -1.75335849e-17 - art_sys_61: 1.20649939e-16 - art_sys_62: 2.65174032e-17 - art_sys_63: -1.89092738e-18 - art_sys_64: -1.42928271e-03 - art_sys_65: 3.33814951e-18 - art_sys_66: -8.55374285e-20 - art_sys_67: 2.12456645e-19 - art_sys_68: -1.40735379e-04 - art_sys_69: -6.18706315e-05 - art_sys_70: -4.53693586e-15 - art_sys_71: 1.27581542e-14 - art_sys_72: 1.27466532e-05 - art_sys_73: 1.25454530e-15 - art_sys_74: 1.56806824e-15 - art_sys_75: 1.92114259e-19 - art_sys_76: -8.30789717e-19 - art_sys_77: -5.59959039e-19 - art_sys_78: -7.07152985e-15 - art_sys_79: 4.31327201e-13 - art_sys_80: 3.83737219e-20 - art_sys_81: 6.07806135e-21 - art_sys_82: -1.74573975e-21 - art_sys_83: 8.10087843e-08 - art_sys_84: 2.85694038e-14 - art_sys_85: -4.65593906e-14 - art_sys_86: -3.53675322e-08 - art_sys_87: -8.48074803e-15 - art_sys_88: -8.42486758e-21 - art_sys_89: 2.38329745e-08 - art_sys_90: -1.08887429e-17 - art_sys_91: -1.21518970e-13 - art_sys_92: -1.31072562e-17 - art_sys_93: 1.14453697e-08 - art_sys_94: -5.92425053e-09 - art_sys_95: -1.51799422e-16 - art_sys_96: 8.78149386e-16 - art_sys_97: -5.20994969e-15 - art_sys_98: -4.65337341e-14 - art_sys_99: -2.63996533e-09 - art_sys_100: 1.77911379e-22 - art_sys_101: -3.35252478e-20 - art_sys_102: 1.59160588e-14 - art_sys_103: -1.04094251e-09 - art_sys_104: 1.83580594e-14 - art_sys_105: -3.87140714e-10 - art_sys_106: 6.28004028e-15 - art_sys_107: -1.48447918e-14 - art_sys_108: 1.41117108e-10 - art_sys_109: -3.35646891e-14 - art_sys_110: 4.97732512e-16 - art_sys_111: 4.73076105e-11 - art_sys_112: -1.08879833e-16 - art_sys_113: -1.47053484e-15 - art_sys_114: 1.22184460e-15 - art_sys_115: 8.89990474e-17 - art_sys_116: -4.74313009e-17 - art_sys_117: -3.10368833e-20 - art_sys_118: 3.22151985e-16 - art_sys_119: 1.68712718e-11 - art_sys_120: -5.52194471e-12 - art_sys_121: 1.80919242e-12 - art_sys_122: -5.53579266e-13 - art_sys_123: -7.45889179e-15 - art_sys_124: 1.62670718e-13 - art_sys_125: 7.94933575e-16 - art_sys_126: -5.46720058e-14 - art_sys_127: -4.14294121e-16 - art_sys_128: 7.34056369e-15 - art_sys_129: -4.83215854e-18 - art_sys_130: -9.64383459e-17 - art_sys_131: -3.09848266e-17 - art_sys_132: -8.88377586e-23 - art_sys_133: -1.07861114e-19 - art_sys_134: -8.93520387e-16 - art_sys_135: -1.72592001e-21 - art_sys_136: 7.98333435e-21 - art_sys_137: -1.26737174e-20 - art_sys_138: 2.55415761e-21 - art_sys_139: 1.17638265e-21 - art_sys_140: -1.50405861e-21 - art_sys_141: 2.77854373e-20 - art_sys_142: -3.57363468e-22 - art_sys_143: 9.27747450e-23 - art_sys_144: 7.33861193e-20 - art_sys_145: -4.40442535e-19 - art_sys_146: 4.91196969e-18 - art_sys_147: 3.48226598e-19 - art_sys_148: 6.58431395e-19 - art_sys_149: 1.08458597e-19 - art_sys_150: -7.84919437e-20 - art_sys_151: 2.06451161e-20 - art_sys_152: -6.56265373e-23 - art_sys_153: -5.32126603e-23 - art_sys_154: -5.54973150e-24 - art_sys_155: 8.38965853e-25 - art_sys_156: 1.96200501e-25 - art_sys_157: 1.07477736e-25 - art_sys_158: 4.80587108e-26 - art_sys_159: -1.20143414e-26 - art_sys_160: -9.66573708e-27 - art_sys_161: 3.82464236e-29 - art_sys_162: -2.62542782e-29 - art_sys_163: 6.85085276e-27 - art_sys_164: -4.55803928e-26 - art_sys_165: -5.98458847e-27 - art_sys_166: -7.38140242e-27 - art_sys_167: -1.74653962e-25 - art_sys_168: -8.81487591e-19 - art_sys_169: -3.92865347e-27 - art_sys_170: -5.13565354e-20 - art_sys_171: 2.15104048e-19 - art_sys_172: -1.98361602e-27 - art_sys_173: 2.47532182e-29 - art_sys_174: -1.99728635e-20 - art_sys_175: 0.0 - art_sys_176: -2.81495430e-22 - art_sys_177: 0.0 - art_sys_178: 3.62262420e-24 - art_sys_179: -1.39300886e-27 - art_sys_180: -2.46090375e-31 - art_sys_181: -4.31500334e-36 - art_sys_182: 0.0 - art_sys_183: 8.77433155e-34 - art_sys_184: 6.75335248e-34 - art_sys_185: 1.38985225e-36 + art_sys_46: -1.41428744e-18 + art_sys_47: 1.34148678e-18 + art_sys_48: 2.13115273e-15 + art_sys_49: 8.39289175e-15 + art_sys_50: -4.58064728e-15 + art_sys_51: -3.04854314e-16 + art_sys_52: -4.61405814e-16 + art_sys_53: 3.87894749e-16 + art_sys_54: -1.05179893e-16 + art_sys_55: 9.87293354e-03 + art_sys_56: 4.54523682e-03 + art_sys_57: 7.48302595e-13 + art_sys_58: 2.16018567e-17 + art_sys_59: -9.56395232e-18 + art_sys_60: 1.13091477e-13 + art_sys_61: -5.80854279e-13 + art_sys_62: -2.70723685e-14 + art_sys_63: -1.42928271e-03 + art_sys_64: 3.66291443e-18 + art_sys_65: 1.22027733e-18 + art_sys_66: -1.16067481e-18 + art_sys_67: 2.53403412e-14 + art_sys_68: -1.40735378e-04 + art_sys_69: -6.18706285e-05 + art_sys_70: 2.76607986e-13 + art_sys_71: 2.22375916e-15 + art_sys_72: 2.10139932e-15 + art_sys_73: 1.84128404e-17 + art_sys_74: 3.30355912e-17 + art_sys_75: 3.67153281e-19 + art_sys_76: -1.26415979e-15 + art_sys_77: 3.83467767e-13 + art_sys_78: 1.27466533e-05 + art_sys_79: -4.71569416e-19 + art_sys_80: 9.79299501e-15 + art_sys_81: -1.55161725e-20 + art_sys_82: -1.45891698e-19 + art_sys_83: 5.12482824e-18 + art_sys_84: 6.08149263e-20 + art_sys_85: -2.34598040e-20 + art_sys_86: -9.88288430e-17 + art_sys_87: -5.01202827e-15 + art_sys_88: 3.26419359e-17 + art_sys_89: -4.70838457e-19 + art_sys_90: 2.55742910e-15 + art_sys_91: -8.10087866e-08 + art_sys_92: -2.14608138e-15 + art_sys_93: -5.65540825e-14 + art_sys_94: 5.67762139e-14 + art_sys_95: 3.53674757e-08 + art_sys_96: -1.38248528e-17 + art_sys_97: 2.38331378e-08 + art_sys_98: -7.12139119e-15 + art_sys_99: 3.96176046e-16 + art_sys_100: -1.14457058e-08 + art_sys_101: -2.10066026e-14 + art_sys_102: 1.80545803e-14 + art_sys_103: -5.92424993e-09 + art_sys_104: 2.36046403e-15 + art_sys_105: 1.98040069e-16 + art_sys_106: -1.36564468e-14 + art_sys_107: 3.35380274e-16 + art_sys_108: -2.11402113e-17 + art_sys_109: -1.17616106e-16 + art_sys_110: -2.63990128e-09 + art_sys_111: -2.73397144e-14 + art_sys_112: -1.04094488e-09 + art_sys_113: 3.24158220e-17 + art_sys_114: 7.55623643e-14 + art_sys_115: -3.87134967e-10 + art_sys_116: 4.81383597e-14 + art_sys_117: -3.84124981e-15 + art_sys_118: -1.41112797e-10 + art_sys_119: 1.15760108e-14 + art_sys_120: 4.09441835e-15 + art_sys_121: 4.73163353e-11 + art_sys_122: 5.80327455e-15 + art_sys_123: -3.33649941e-15 + art_sys_124: -1.68676787e-11 + art_sys_125: -8.84992268e-15 + art_sys_126: -5.51772621e-12 + art_sys_127: -1.22772308e-15 + art_sys_128: -1.81308818e-12 + art_sys_129: -2.74909757e-15 + art_sys_130: -5.55896864e-13 + art_sys_131: -7.79344791e-17 + art_sys_132: 3.29269489e-15 + art_sys_133: -1.60174999e-13 + art_sys_134: -8.46302655e-19 + art_sys_135: 2.96635246e-15 + art_sys_136: 5.41762959e-14 + art_sys_137: 1.60489634e-19 + art_sys_138: 8.02724591e-17 + art_sys_139: -1.30071315e-16 + art_sys_140: -7.65001547e-15 + art_sys_141: -1.86335238e-15 + art_sys_142: -3.16638187e-16 + art_sys_143: 3.52503806e-20 + art_sys_144: 5.53330422e-20 + art_sys_145: 4.57827842e-19 + art_sys_146: -0.0 + art_sys_147: 1.00716936e-17 + art_sys_148: -1.22853894e-16 + art_sys_149: -1.22853894e-16 + art_sys_150: 4.38486505e-17 + art_sys_151: 4.38486505e-17 + art_sys_152: -2.05744567e-16 + art_sys_153: 2.48731446e-18 + art_sys_154: 1.06643828e-20 + art_sys_155: 4.40066169e-29 + art_sys_156: 4.78235150e-32 + art_sys_157: 3.12309675e-32 + art_sys_158: -0.0 + art_sys_159: 1.77442499e-15 + art_sys_160: 5.59709854e-17 + art_sys_161: 5.62803167e-16 + art_sys_162: 1.32246997e-17 + art_sys_163: -8.42719149e-18 + art_sys_164: -2.62602212e-17 + art_sys_165: -3.24222371e-19 + art_sys_166: 5.67186926e-26 + art_sys_167: 6.34597207e-26 + art_sys_168: -1.10710644e-26 + art_sys_169: 3.37109837e-27 + art_sys_170: 1.30465312e-27 + art_sys_171: -1.64077932e-27 + art_sys_172: 1.01713773e-26 + art_sys_173: -1.03832689e-27 + art_sys_174: -1.10032637e-28 + art_sys_175: -1.48361762e-31 + art_sys_176: -7.69077232e-29 + art_sys_177: -1.04695909e-29 + art_sys_178: 6.37671933e-30 + art_sys_179: 1.55353824e-30 + art_sys_180: 4.25591072e-29 + art_sys_181: -2.24116468e-31 + art_sys_182: -1.16060120e-29 + art_sys_183: -2.09145027e-31 + art_sys_184: -8.20364082e-35 + art_sys_185: -1.13636442e-33 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -20342,167 +20342,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: 6.25260902e-05 + art_sys_25: -6.25260902e-05 art_sys_26: 9.27358711e-04 - art_sys_27: -1.60894948e-03 - art_sys_28: 6.72756584e-04 - art_sys_29: 5.44724727e-03 - art_sys_30: 1.18369203e-20 - art_sys_31: -1.62021394e-20 - art_sys_32: -7.90026173e-03 - art_sys_33: 1.72286726e-02 - art_sys_34: -2.31301950e-20 - art_sys_35: -1.25439485e-19 - art_sys_36: -1.00305753e-19 - art_sys_37: 4.95520505e-21 + art_sys_27: 1.60894948e-03 + art_sys_28: 1.36859051e-22 + art_sys_29: -5.68820148e-22 + art_sys_30: -6.72756584e-04 + art_sys_31: -5.44724727e-03 + art_sys_32: 7.90026173e-03 + art_sys_33: -1.72286726e-02 + art_sys_34: -6.19201363e-21 + art_sys_35: 4.07166630e-20 + art_sys_36: 1.10577648e-19 + art_sys_37: 1.26858766e-20 art_sys_38: 1.88381027e-02 - art_sys_39: -3.41041971e-19 - art_sys_40: -6.62120555e-20 - art_sys_41: -9.58801304e-20 - art_sys_42: 5.84263239e-20 + art_sys_39: 4.91195377e-20 + art_sys_40: -7.20015077e-20 + art_sys_41: -8.65356915e-20 + art_sys_42: -6.52967660e-20 art_sys_43: -1.99107516e-03 art_sys_44: 1.53721278e-01 art_sys_45: -4.54216246e-02 - art_sys_46: 8.04081429e-19 - art_sys_47: -4.35931167e-18 - art_sys_48: -3.25117831e-18 - art_sys_49: 6.78022102e-03 - art_sys_50: -2.03553948e-17 - art_sys_51: 4.68044531e-15 - art_sys_52: 6.38225495e-15 - art_sys_53: 6.32350215e-03 - art_sys_54: -2.63057343e-15 - art_sys_55: 9.40667221e-13 - art_sys_56: 2.24572496e-12 - art_sys_57: -1.22214353e-15 - art_sys_58: 1.24935375e-19 - art_sys_59: 1.78884890e-15 - art_sys_60: 2.27221330e-17 - art_sys_61: -1.95587373e-16 - art_sys_62: -4.94697092e-17 - art_sys_63: 7.09097768e-18 - art_sys_64: 2.31400006e-03 - art_sys_65: -5.69946557e-18 - art_sys_66: 1.14655576e-19 - art_sys_67: -4.77840312e-19 - art_sys_68: 2.62143332e-04 - art_sys_69: 1.22267376e-04 - art_sys_70: 7.34584409e-15 - art_sys_71: -2.06526038e-14 - art_sys_72: -2.68416327e-05 - art_sys_73: -2.03486627e-15 - art_sys_74: -2.83910551e-15 - art_sys_75: -1.31236986e-19 - art_sys_76: -9.18860145e-19 - art_sys_77: -7.34856298e-19 - art_sys_78: 1.33130296e-14 - art_sys_79: -8.01023840e-13 - art_sys_80: -6.10959115e-20 - art_sys_81: 6.04197959e-22 - art_sys_82: 1.24745088e-21 - art_sys_83: -2.20623692e-07 - art_sys_84: -6.01782887e-14 - art_sys_85: 8.67308680e-14 - art_sys_86: 9.14157775e-08 - art_sys_87: 1.78584098e-14 - art_sys_88: -1.19840979e-20 - art_sys_89: -6.15419237e-08 - art_sys_90: 2.46697549e-17 - art_sys_91: 2.27094072e-13 - art_sys_92: -4.80540164e-17 - art_sys_93: -3.03831032e-08 - art_sys_94: 1.55447919e-08 - art_sys_95: 4.24792145e-16 - art_sys_96: -1.84387018e-15 - art_sys_97: 1.34886565e-14 - art_sys_98: 1.20144705e-13 - art_sys_99: 7.00463513e-09 - art_sys_100: -7.26737741e-21 - art_sys_101: -1.77960754e-20 - art_sys_102: -4.07533672e-14 - art_sys_103: 2.75721220e-09 - art_sys_104: -4.73224216e-14 - art_sys_105: 1.02837304e-09 - art_sys_106: -1.67080630e-14 - art_sys_107: 3.92131274e-14 - art_sys_108: -3.75205354e-10 - art_sys_109: 8.90592887e-14 - art_sys_110: -1.31796820e-15 - art_sys_111: -1.25813039e-10 - art_sys_112: 2.92607801e-16 - art_sys_113: 3.90295295e-15 - art_sys_114: -3.24066776e-15 - art_sys_115: -2.36917253e-16 - art_sys_116: 1.27124572e-16 - art_sys_117: 6.63910812e-20 - art_sys_118: -8.53962135e-16 - art_sys_119: -4.49079053e-11 - art_sys_120: 1.46983318e-11 - art_sys_121: -4.81712238e-12 - art_sys_122: 1.47414917e-12 - art_sys_123: 1.98369381e-14 - art_sys_124: -4.33180750e-13 - art_sys_125: -2.11199369e-15 - art_sys_126: 1.45604716e-13 - art_sys_127: 1.10294632e-15 - art_sys_128: -1.95498260e-14 - art_sys_129: 1.28554208e-17 - art_sys_130: 2.56125325e-16 - art_sys_131: 8.25247477e-17 - art_sys_132: 2.65061969e-22 - art_sys_133: 2.87352221e-19 - art_sys_134: 2.37963112e-15 - art_sys_135: -2.31316952e-21 - art_sys_136: 1.29230393e-20 - art_sys_137: 7.82816208e-21 - art_sys_138: -9.64980270e-22 - art_sys_139: -5.91341809e-22 - art_sys_140: -5.69882905e-22 - art_sys_141: -7.39815497e-20 - art_sys_142: 1.13827027e-22 - art_sys_143: -8.17254545e-22 - art_sys_144: 1.81178746e-19 - art_sys_145: -9.67144711e-19 - art_sys_146: 1.04819040e-18 - art_sys_147: -1.12273249e-19 - art_sys_148: -1.11285501e-19 - art_sys_149: 9.06825193e-20 - art_sys_150: -2.45584329e-20 - art_sys_151: -3.24846292e-22 - art_sys_152: -5.54767329e-23 - art_sys_153: 3.73811561e-24 - art_sys_154: -9.80268427e-24 - art_sys_155: 8.16370134e-25 - art_sys_156: 1.05585140e-25 - art_sys_157: -5.44687348e-25 - art_sys_158: -1.33851087e-25 - art_sys_159: 2.37640021e-26 - art_sys_160: 1.63580475e-26 - art_sys_161: -2.23681582e-28 - art_sys_162: 2.00263315e-27 - art_sys_163: -5.96731432e-27 - art_sys_164: -2.12217245e-27 - art_sys_165: 4.96488518e-27 - art_sys_166: -1.24303818e-27 - art_sys_167: -1.10365201e-26 - art_sys_168: 2.34787974e-18 - art_sys_169: -1.08833086e-28 - art_sys_170: 1.36773708e-19 - art_sys_171: -5.73301912e-19 - art_sys_172: -9.59927771e-28 - art_sys_173: 1.02854023e-29 - art_sys_174: 5.32497050e-20 - art_sys_175: 0.0 - art_sys_176: 7.50527247e-22 - art_sys_177: 0.0 - art_sys_178: -9.65934066e-24 - art_sys_179: 3.73535760e-27 - art_sys_180: 2.24292456e-30 - art_sys_181: 1.03126684e-35 - art_sys_182: 0.0 - art_sys_183: -2.34075055e-33 - art_sys_184: -1.79047278e-33 - art_sys_185: -3.69650391e-36 + art_sys_46: 1.72533931e-18 + art_sys_47: 2.95412785e-19 + art_sys_48: -1.46162124e-15 + art_sys_49: -1.09693734e-14 + art_sys_50: 8.20985120e-15 + art_sys_51: 1.05438252e-15 + art_sys_52: 9.05776743e-16 + art_sys_53: -4.41761897e-16 + art_sys_54: 1.38845647e-16 + art_sys_55: -6.78022102e-03 + art_sys_56: -6.32350215e-03 + art_sys_57: -5.13890344e-13 + art_sys_58: -4.02710235e-17 + art_sys_59: 1.38105353e-17 + art_sys_60: -1.57337047e-13 + art_sys_61: 8.08253289e-13 + art_sys_62: 3.76651353e-14 + art_sys_63: 2.31400006e-03 + art_sys_64: -3.22491255e-18 + art_sys_65: -2.35613536e-18 + art_sys_66: 2.17377462e-18 + art_sys_67: -4.10250672e-14 + art_sys_68: 2.62143331e-04 + art_sys_69: 1.22267370e-04 + art_sys_70: -4.47826893e-13 + art_sys_71: -3.59598182e-15 + art_sys_72: -3.37023476e-15 + art_sys_73: -4.57099241e-17 + art_sys_74: -6.98493612e-17 + art_sys_75: -1.10879855e-18 + art_sys_76: 2.66203012e-15 + art_sys_77: -7.17602710e-13 + art_sys_78: -2.68416328e-05 + art_sys_79: 1.21310350e-18 + art_sys_80: -2.66707737e-14 + art_sys_81: 4.09753055e-20 + art_sys_82: 3.90882383e-19 + art_sys_83: -1.37149922e-17 + art_sys_84: -1.61014901e-19 + art_sys_85: 6.24990170e-20 + art_sys_86: 2.61445644e-16 + art_sys_87: 9.61193859e-15 + art_sys_88: -8.65135919e-17 + art_sys_89: 1.24997085e-18 + art_sys_90: -5.03969941e-15 + art_sys_91: 2.20623694e-07 + art_sys_92: 4.36925508e-15 + art_sys_93: 1.05584710e-13 + art_sys_94: -1.19558376e-13 + art_sys_95: -9.14156255e-08 + art_sys_96: 3.67581173e-17 + art_sys_97: -6.15423459e-08 + art_sys_98: 1.47318549e-14 + art_sys_99: -7.63421339e-16 + art_sys_100: 3.03839956e-08 + art_sys_101: 5.72039139e-14 + art_sys_102: -4.92105206e-14 + art_sys_103: 1.55447903e-08 + art_sys_104: -4.97615919e-15 + art_sys_105: -5.72105471e-16 + art_sys_106: 3.68155099e-14 + art_sys_107: -8.91931710e-16 + art_sys_108: 5.62264591e-17 + art_sys_109: 3.13048717e-16 + art_sys_110: 7.00446534e-09 + art_sys_111: 7.10720577e-14 + art_sys_112: 2.75721846e-09 + art_sys_113: -8.62854503e-17 + art_sys_114: -1.96209445e-13 + art_sys_115: 1.02835778e-09 + art_sys_116: -1.27708666e-13 + art_sys_117: 1.15439189e-14 + art_sys_118: 3.75193890e-10 + art_sys_119: -3.11324099e-14 + art_sys_120: -1.08599361e-14 + art_sys_121: -1.25836257e-10 + art_sys_122: -1.54602954e-14 + art_sys_123: 8.85784629e-15 + art_sys_124: 4.48983467e-11 + art_sys_125: 2.34883934e-14 + art_sys_126: 1.46870954e-11 + art_sys_127: 3.25308923e-15 + art_sys_128: 4.82748876e-12 + art_sys_129: 7.29088051e-15 + art_sys_130: 1.48031896e-12 + art_sys_131: 2.11217195e-16 + art_sys_132: -8.74717915e-15 + art_sys_133: 4.26542739e-13 + art_sys_134: 2.25747825e-18 + art_sys_135: -7.88423949e-15 + art_sys_136: -1.44285161e-13 + art_sys_137: -4.26982258e-19 + art_sys_138: -2.13379669e-16 + art_sys_139: 3.45984642e-16 + art_sys_140: 2.03746109e-14 + art_sys_141: 4.95720566e-15 + art_sys_142: 8.40779098e-16 + art_sys_143: -9.39997529e-20 + art_sys_144: -1.47403846e-19 + art_sys_145: -1.21927149e-18 + art_sys_146: 0.0 + art_sys_147: -2.68020925e-17 + art_sys_148: 3.26824648e-16 + art_sys_149: 3.26824648e-16 + art_sys_150: -1.16512843e-16 + art_sys_151: -1.16512843e-16 + art_sys_152: 5.47119749e-16 + art_sys_153: -6.61969205e-18 + art_sys_154: -2.83635984e-20 + art_sys_155: -1.17030188e-28 + art_sys_156: -1.26690918e-31 + art_sys_157: -8.29725013e-32 + art_sys_158: 0.0 + art_sys_159: -4.72304940e-15 + art_sys_160: -1.48961278e-16 + art_sys_161: -1.49859356e-15 + art_sys_162: -3.52113549e-17 + art_sys_163: 2.26320241e-17 + art_sys_164: 6.99298569e-17 + art_sys_165: 8.62664245e-19 + art_sys_166: -1.50994197e-25 + art_sys_167: -1.69665934e-25 + art_sys_168: 2.94924057e-26 + art_sys_169: -8.96450274e-27 + art_sys_170: -3.40137562e-27 + art_sys_171: 4.76108653e-27 + art_sys_172: -3.12414236e-26 + art_sys_173: 3.23326962e-27 + art_sys_174: 3.84796393e-28 + art_sys_175: 3.94852792e-31 + art_sys_176: 1.98200885e-28 + art_sys_177: 2.26506832e-29 + art_sys_178: -1.63172931e-29 + art_sys_179: -4.20889304e-30 + art_sys_180: -1.13794764e-28 + art_sys_181: 6.29987790e-31 + art_sys_182: 3.09133274e-29 + art_sys_183: 5.56803442e-31 + art_sys_184: 2.19055548e-34 + art_sys_185: 3.02625357e-33 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -20633,167 +20633,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: -1.55800211e-05 + art_sys_25: 1.55800211e-05 art_sys_26: 1.62703973e-04 - art_sys_27: -3.55604768e-04 - art_sys_28: 2.23323412e-04 - art_sys_29: -1.46059140e-03 - art_sys_30: -3.33740645e-21 - art_sys_31: 5.79572292e-21 - art_sys_32: -4.95002921e-03 - art_sys_33: -6.61681903e-03 - art_sys_34: -2.09865895e-20 - art_sys_35: -6.09328297e-22 - art_sys_36: 2.39387329e-20 - art_sys_37: 5.24672949e-21 + art_sys_27: 3.55604768e-04 + art_sys_28: 4.92590441e-23 + art_sys_29: -1.24986276e-22 + art_sys_30: -2.23323412e-04 + art_sys_31: 1.46059140e-03 + art_sys_32: 4.95002921e-03 + art_sys_33: 6.61681903e-03 + art_sys_34: -2.44832900e-20 + art_sys_35: -1.71088579e-20 + art_sys_36: -4.06705364e-21 + art_sys_37: -3.39052102e-21 art_sys_38: -2.03289127e-03 - art_sys_39: 6.12134050e-20 - art_sys_40: 1.49725292e-20 - art_sys_41: 7.91037228e-22 - art_sys_42: -4.19372878e-20 + art_sys_39: 7.14707671e-21 + art_sys_40: 2.65170835e-21 + art_sys_41: 9.21276254e-21 + art_sys_42: -2.84105081e-19 art_sys_43: -1.56411332e-02 art_sys_44: 9.96604937e-03 art_sys_45: -3.14408475e-02 - art_sys_46: 3.48383312e-19 - art_sys_47: -1.34862227e-18 - art_sys_48: -2.08392980e-18 - art_sys_49: -3.39522923e-02 - art_sys_50: 4.33009006e-17 - art_sys_51: -2.60397951e-14 - art_sys_52: -1.46057079e-14 - art_sys_53: -1.41063609e-02 - art_sys_54: 5.86496650e-15 - art_sys_55: -2.09842213e-12 - art_sys_56: -5.00972610e-12 - art_sys_57: 2.72674594e-15 - art_sys_58: -4.99705213e-19 - art_sys_59: -5.57348231e-15 - art_sys_60: -6.93602592e-17 - art_sys_61: 6.37368392e-16 - art_sys_62: 1.56486502e-16 - art_sys_63: -2.26911286e-17 - art_sys_64: -7.52329300e-03 - art_sys_65: 1.80487483e-17 - art_sys_66: 2.21951172e-20 - art_sys_67: 2.14621761e-18 - art_sys_68: -8.12547917e-04 - art_sys_69: -4.00400998e-04 - art_sys_70: -2.38814447e-14 - art_sys_71: 6.71486137e-14 - art_sys_72: 9.30516940e-05 - art_sys_73: 6.61340990e-15 - art_sys_74: 8.98263003e-15 - art_sys_75: -4.67160271e-19 - art_sys_76: 2.69768980e-19 - art_sys_77: -1.03512566e-18 - art_sys_78: -4.16218362e-14 - art_sys_79: 2.47557214e-12 - art_sys_80: -4.21002463e-21 - art_sys_81: -1.58506811e-21 - art_sys_82: -7.34118194e-22 - art_sys_83: 6.57748693e-07 - art_sys_84: 2.08668537e-13 - art_sys_85: -2.68850352e-13 - art_sys_86: -3.29069408e-07 - art_sys_87: -6.19094180e-14 - art_sys_88: 4.95217812e-23 - art_sys_89: 2.13193973e-07 - art_sys_90: -8.82685276e-17 - art_sys_91: -7.06178345e-13 - art_sys_92: -1.54749987e-17 - art_sys_93: 1.07805701e-07 - art_sys_94: -5.65485111e-08 - art_sys_95: -1.65256263e-15 - art_sys_96: 6.37831453e-15 - art_sys_97: -4.93334284e-14 - art_sys_98: -4.14641770e-13 - art_sys_99: -2.56069692e-08 - art_sys_100: 2.70733858e-21 - art_sys_101: 1.67723663e-20 - art_sys_102: 1.43550868e-13 - art_sys_103: -1.02208097e-08 - art_sys_104: 1.63045982e-13 - art_sys_105: -3.82968935e-09 - art_sys_106: 5.92572326e-14 - art_sys_107: -1.38481895e-13 - art_sys_108: 1.40569727e-09 - art_sys_109: -3.16132373e-13 - art_sys_110: 4.94436750e-15 - art_sys_111: 4.73107699e-10 - art_sys_112: -9.61764547e-16 - art_sys_113: -1.39571430e-14 - art_sys_114: 1.15308162e-14 - art_sys_115: 8.87231159e-16 - art_sys_116: -3.53593465e-16 - art_sys_117: -2.39802393e-19 - art_sys_118: 3.13863552e-15 - art_sys_119: 1.69260162e-10 - art_sys_120: -5.55166781e-11 - art_sys_121: 1.82134291e-11 - art_sys_122: -5.57902809e-12 - art_sys_123: -7.46129902e-14 - art_sys_124: 1.64030682e-12 - art_sys_125: 7.89833129e-15 - art_sys_126: -5.51531958e-13 - art_sys_127: -4.15347912e-15 - art_sys_128: 7.40791691e-14 - art_sys_129: -4.83993957e-17 - art_sys_130: -9.59078438e-16 - art_sys_131: -3.12537516e-16 - art_sys_132: -1.02638285e-21 - art_sys_133: -1.08885012e-18 - art_sys_134: -9.01824665e-15 - art_sys_135: 3.26382327e-21 - art_sys_136: 1.43946919e-21 - art_sys_137: 2.36265669e-21 - art_sys_138: -3.86602455e-22 - art_sys_139: -4.88021444e-22 - art_sys_140: 7.64398678e-22 - art_sys_141: 2.79814341e-19 - art_sys_142: 9.68325937e-23 - art_sys_143: 3.92903684e-22 - art_sys_144: 9.05906310e-21 - art_sys_145: 3.82614329e-19 - art_sys_146: -4.22581614e-19 - art_sys_147: 4.34744960e-19 - art_sys_148: 1.10627044e-19 - art_sys_149: 6.54773303e-20 - art_sys_150: -3.62761271e-20 - art_sys_151: -1.35045069e-20 - art_sys_152: -3.98351367e-23 - art_sys_153: -1.04703897e-23 - art_sys_154: 4.23365396e-24 - art_sys_155: -3.62167757e-24 - art_sys_156: -5.86778389e-26 - art_sys_157: 1.93161984e-24 - art_sys_158: 4.95897626e-25 - art_sys_159: -9.16274068e-26 - art_sys_160: -6.55523278e-26 - art_sys_161: 5.66276208e-28 - art_sys_162: -3.70531744e-28 - art_sys_163: 1.30424948e-29 - art_sys_164: 3.37015453e-27 - art_sys_165: -2.99395894e-27 - art_sys_166: 1.63346254e-28 - art_sys_167: 2.80902633e-26 - art_sys_168: -8.89612476e-18 - art_sys_169: -2.25875469e-28 - art_sys_170: -5.18332873e-19 - art_sys_171: 2.17300396e-18 - art_sys_172: 1.58394838e-27 - art_sys_173: -1.14456787e-29 - art_sys_174: -2.01819442e-19 - art_sys_175: 0.0 - art_sys_176: -2.84453621e-21 - art_sys_177: 0.0 - art_sys_178: 3.66088612e-23 - art_sys_179: -1.38889563e-26 - art_sys_180: -8.24848627e-30 - art_sys_181: -3.77432887e-35 - art_sys_182: 0.0 - art_sys_183: 8.86890756e-33 - art_sys_184: 6.65850548e-33 - art_sys_185: 1.39255277e-35 + art_sys_46: 5.22870874e-19 + art_sys_47: 4.34250243e-20 + art_sys_48: 7.33042270e-15 + art_sys_49: 3.44209577e-14 + art_sys_50: -2.01278208e-14 + art_sys_51: -4.15744743e-15 + art_sys_52: -2.23094617e-15 + art_sys_53: 1.36894822e-15 + art_sys_54: -4.50085180e-16 + art_sys_55: 3.39522923e-02 + art_sys_56: 1.41063609e-02 + art_sys_57: 2.57334711e-12 + art_sys_58: 1.29576533e-16 + art_sys_59: -4.51063472e-17 + art_sys_60: 3.50973946e-13 + art_sys_61: -1.80264150e-12 + art_sys_62: -8.40219078e-14 + art_sys_63: -7.52329299e-03 + art_sys_64: 6.48210893e-18 + art_sys_65: 7.57942674e-18 + art_sys_66: -6.74916626e-18 + art_sys_67: 1.33382170e-13 + art_sys_68: -8.12547916e-04 + art_sys_69: -4.00400981e-04 + art_sys_70: 1.45597777e-12 + art_sys_71: 1.16970699e-14 + art_sys_72: 1.09944211e-14 + art_sys_73: 1.41333182e-16 + art_sys_74: 2.41957149e-16 + art_sys_75: 3.95351327e-18 + art_sys_76: -9.22840244e-15 + art_sys_77: 2.23488619e-12 + art_sys_78: 9.30516943e-05 + art_sys_79: -4.40743688e-18 + art_sys_80: 7.95139269e-14 + art_sys_81: -1.42393025e-19 + art_sys_82: -1.24683414e-18 + art_sys_83: 4.87738862e-17 + art_sys_84: 4.85345288e-19 + art_sys_85: -1.97093133e-19 + art_sys_86: -9.54423516e-16 + art_sys_87: -3.06357878e-14 + art_sys_88: 3.19360675e-16 + art_sys_89: -4.77843533e-18 + art_sys_90: 1.64627911e-14 + art_sys_91: -6.57748743e-07 + art_sys_92: -1.47079799e-14 + art_sys_93: -3.28015761e-13 + art_sys_94: 4.14469490e-13 + art_sys_95: 3.29068940e-07 + art_sys_96: -1.37713413e-16 + art_sys_97: 2.13195438e-07 + art_sys_98: -5.16350595e-14 + art_sys_99: 2.44344771e-15 + art_sys_100: -1.07808867e-07 + art_sys_101: -1.70403936e-13 + art_sys_102: 1.46331119e-13 + art_sys_103: -5.65485050e-08 + art_sys_104: 1.72493292e-14 + art_sys_105: 1.30079868e-15 + art_sys_106: -1.32245439e-13 + art_sys_107: 3.35399093e-15 + art_sys_108: -2.11463929e-16 + art_sys_109: -1.17926322e-15 + art_sys_110: -2.56063487e-08 + art_sys_111: -2.45346037e-13 + art_sys_112: -1.02208328e-08 + art_sys_113: 3.25671970e-16 + art_sys_114: 6.83930321e-13 + art_sys_115: -3.82963251e-09 + art_sys_116: 4.66855132e-13 + art_sys_117: -4.48405403e-14 + art_sys_118: -1.40565419e-09 + art_sys_119: 1.11165843e-13 + art_sys_120: 3.97699483e-14 + art_sys_121: 4.73195333e-10 + art_sys_122: 5.62667685e-14 + art_sys_123: -3.24130412e-14 + art_sys_124: -1.69224134e-10 + art_sys_125: -8.70685003e-14 + art_sys_126: -5.54742722e-11 + art_sys_127: -1.19729365e-14 + art_sys_128: -1.82525055e-11 + art_sys_129: -2.65742190e-14 + art_sys_130: -5.60235557e-12 + art_sys_131: -8.78280088e-16 + art_sys_132: 3.25563931e-14 + art_sys_133: -1.61531009e-12 + art_sys_134: -8.62086621e-18 + art_sys_135: 2.95290930e-14 + art_sys_136: 5.46532177e-13 + art_sys_137: 1.60778845e-18 + art_sys_138: 6.43799798e-16 + art_sys_139: -1.31819949e-15 + art_sys_140: -7.72261372e-14 + art_sys_141: -1.86800317e-14 + art_sys_142: -3.13249468e-15 + art_sys_143: 3.58761608e-19 + art_sys_144: 5.59222098e-19 + art_sys_145: 4.62029783e-18 + art_sys_146: -0.0 + art_sys_147: 1.01152420e-16 + art_sys_148: -1.23105721e-15 + art_sys_149: -1.23105721e-15 + art_sys_150: 4.37363503e-16 + art_sys_151: 4.37363503e-16 + art_sys_152: -2.04631910e-15 + art_sys_153: 2.42102303e-17 + art_sys_154: 1.07048318e-19 + art_sys_155: 4.37202613e-28 + art_sys_156: 4.70244618e-31 + art_sys_157: 3.09288702e-31 + art_sys_158: -0.0 + art_sys_159: 1.78305880e-14 + art_sys_160: 5.61954205e-16 + art_sys_161: 5.66948920e-15 + art_sys_162: 1.33162404e-16 + art_sys_163: -8.93685128e-17 + art_sys_164: -2.64788428e-16 + art_sys_165: -3.25362967e-18 + art_sys_166: 5.71714205e-25 + art_sys_167: 6.44891426e-25 + art_sys_168: -1.11792954e-25 + art_sys_169: 3.34987046e-26 + art_sys_170: 1.20961698e-26 + art_sys_171: -1.79808569e-26 + art_sys_172: 1.15782205e-25 + art_sys_173: -1.26075679e-26 + art_sys_174: -1.42558203e-27 + art_sys_175: -1.49044569e-30 + art_sys_176: -7.39309538e-28 + art_sys_177: -8.55249013e-29 + art_sys_178: 6.23561613e-29 + art_sys_179: 1.58323389e-29 + art_sys_180: 4.28719551e-28 + art_sys_181: -2.31517655e-30 + art_sys_182: -1.16967635e-28 + art_sys_183: -2.10617760e-30 + art_sys_184: -8.38259488e-34 + art_sys_185: -1.14635353e-32 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -20924,167 +20924,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: -4.01159843e-06 + art_sys_25: 4.01159843e-06 art_sys_26: 2.23763094e-05 - art_sys_27: -5.17594766e-05 - art_sys_28: 2.61466724e-05 - art_sys_29: -5.02693029e-04 - art_sys_30: -1.13197488e-21 - art_sys_31: 1.79093092e-21 - art_sys_32: -5.82487091e-04 - art_sys_33: -1.96147319e-03 - art_sys_34: -1.63500173e-21 - art_sys_35: 5.21038089e-21 - art_sys_36: 8.69772083e-21 - art_sys_37: 6.27857406e-22 + art_sys_27: 5.17594766e-05 + art_sys_28: 7.76923506e-24 + art_sys_29: -1.80771543e-23 + art_sys_30: -2.61466724e-05 + art_sys_31: 5.02693029e-04 + art_sys_32: 5.82487091e-04 + art_sys_33: 1.96147319e-03 + art_sys_34: -4.26226077e-21 + art_sys_35: -4.92099250e-21 + art_sys_36: -5.47725247e-21 + art_sys_37: -1.17710068e-21 art_sys_38: -1.36753960e-03 - art_sys_39: 2.40016417e-20 - art_sys_40: 6.52570521e-21 - art_sys_41: 4.56514213e-21 - art_sys_42: -7.11645753e-21 + art_sys_39: -1.64735260e-21 + art_sys_40: 4.16331743e-21 + art_sys_41: 5.97359812e-21 + art_sys_42: -1.98247471e-20 art_sys_43: -1.20479416e-03 art_sys_44: -1.41060448e-02 art_sys_45: 2.02009903e-03 - art_sys_46: -5.66678254e-20 - art_sys_47: 3.41602941e-19 - art_sys_48: 1.63645493e-19 - art_sys_49: -3.05628833e-02 - art_sys_50: -4.97070568e-17 - art_sys_51: 2.97270585e-14 - art_sys_52: 1.91571058e-14 - art_sys_53: 1.68818519e-02 - art_sys_54: -7.01944347e-15 - art_sys_55: 2.51129888e-12 - art_sys_56: 5.99541337e-12 - art_sys_57: -3.26299187e-15 - art_sys_58: 1.27886312e-19 - art_sys_59: 1.25330655e-14 - art_sys_60: -3.90648287e-17 - art_sys_61: -8.07819643e-16 - art_sys_62: -3.46575269e-16 - art_sys_63: 8.50917322e-17 - art_sys_64: 9.55145502e-03 - art_sys_65: -4.08410247e-17 - art_sys_66: -5.80082502e-19 - art_sys_67: -5.50404342e-18 - art_sys_68: 1.92531163e-03 - art_sys_69: 8.80199433e-04 - art_sys_70: 3.03453668e-14 - art_sys_71: -8.51847461e-14 - art_sys_72: -2.42320555e-04 - art_sys_73: -8.49547712e-15 - art_sys_74: -1.85162740e-14 - art_sys_75: 4.89253913e-20 - art_sys_76: 3.43934584e-19 - art_sys_77: 6.13301278e-19 - art_sys_78: 9.78585914e-14 - art_sys_79: -5.88918948e-12 - art_sys_80: -7.38914741e-21 - art_sys_81: 3.72910236e-21 - art_sys_82: 3.84861269e-21 - art_sys_83: -2.41053388e-06 - art_sys_84: -5.43527596e-13 - art_sys_85: 6.36985962e-13 - art_sys_86: 9.60056565e-07 - art_sys_87: 1.61221441e-13 - art_sys_88: -6.21973880e-22 - art_sys_89: -7.06840018e-07 - art_sys_90: 2.31236855e-16 - art_sys_91: 1.66599915e-12 - art_sys_92: -9.44808518e-16 - art_sys_93: -3.51071750e-07 - art_sys_94: 1.84808506e-07 - art_sys_95: 4.58207190e-15 - art_sys_96: -1.67274668e-14 - art_sys_97: 1.41255010e-13 - art_sys_98: 1.38264688e-12 - art_sys_99: 8.43830180e-08 - art_sys_100: -5.15133249e-21 - art_sys_101: -2.69353198e-20 - art_sys_102: -4.70994636e-13 - art_sys_103: 3.36368984e-08 - art_sys_104: -5.39164285e-13 - art_sys_105: 1.26661906e-08 - art_sys_106: -1.92942011e-13 - art_sys_107: 4.52227755e-13 - art_sys_108: -4.64913105e-09 - art_sys_109: 1.02968195e-12 - art_sys_110: -1.63186627e-14 - art_sys_111: -1.56719138e-09 - art_sys_112: 3.05770273e-15 - art_sys_113: 4.55902290e-14 - art_sys_114: -3.75717492e-14 - art_sys_115: -2.94580092e-15 - art_sys_116: 1.04937118e-15 - art_sys_117: 6.12598230e-19 - art_sys_118: -1.03011572e-14 - art_sys_119: -5.61063310e-10 - art_sys_120: 1.84075114e-10 - art_sys_121: -6.04214969e-11 - art_sys_122: 1.85094446e-11 - art_sys_123: 2.47182957e-13 - art_sys_124: -5.44301607e-12 - art_sys_125: -2.61140287e-14 - art_sys_126: 1.83030958e-12 - art_sys_127: 1.37697011e-14 - art_sys_128: -2.45852639e-13 - art_sys_129: 1.60378761e-16 - art_sys_130: 3.17048023e-15 - art_sys_131: 1.03836499e-15 - art_sys_132: 3.47275898e-21 - art_sys_133: 3.61455592e-18 - art_sys_134: 2.99304536e-14 - art_sys_135: -1.83611022e-21 - art_sys_136: 6.07596520e-22 - art_sys_137: -2.41905460e-21 - art_sys_138: 2.96244062e-22 - art_sys_139: -4.29686401e-22 - art_sys_140: -9.30070329e-22 - art_sys_141: -9.27589142e-19 - art_sys_142: 3.79060992e-22 - art_sys_143: -5.35465797e-22 - art_sys_144: -1.20556403e-19 - art_sys_145: -1.19293545e-18 - art_sys_146: 1.01025877e-18 - art_sys_147: -8.43920764e-19 - art_sys_148: -8.43890525e-20 - art_sys_149: -1.20729352e-19 - art_sys_150: 1.01405050e-19 - art_sys_151: 7.55032377e-22 - art_sys_152: -7.68342694e-23 - art_sys_153: 3.32595152e-24 - art_sys_154: -2.33273463e-23 - art_sys_155: 1.14355182e-23 - art_sys_156: 2.30283591e-25 - art_sys_157: -6.52082246e-24 - art_sys_158: -1.64851215e-24 - art_sys_159: 3.03840195e-25 - art_sys_160: 2.19000515e-25 - art_sys_161: -1.73115268e-27 - art_sys_162: -1.98278572e-27 - art_sys_163: 8.37935299e-27 - art_sys_164: -2.53780328e-26 - art_sys_165: -4.89286723e-27 - art_sys_166: 7.32570890e-28 - art_sys_167: 3.58797972e-27 - art_sys_168: 2.95319645e-17 - art_sys_169: 1.23753822e-27 - art_sys_170: 1.72058524e-18 - art_sys_171: -7.21491680e-18 - art_sys_172: -2.90381882e-27 - art_sys_173: 1.04194979e-29 - art_sys_174: 6.70083964e-19 - art_sys_175: 0.0 - art_sys_176: 9.44438877e-21 - art_sys_177: 0.0 - art_sys_178: -1.21546736e-22 - art_sys_179: 4.61604179e-26 - art_sys_180: 2.76889347e-29 - art_sys_181: 1.22279375e-34 - art_sys_182: 0.0 - art_sys_183: -2.94447162e-32 - art_sys_184: -2.19456469e-32 - art_sys_185: -4.61617060e-35 + art_sys_46: -1.25543035e-19 + art_sys_47: -2.77972614e-20 + art_sys_48: 6.59798173e-15 + art_sys_49: -3.47550704e-14 + art_sys_50: 4.14668589e-14 + art_sys_51: 9.39713273e-15 + art_sys_52: 4.50252921e-15 + art_sys_53: -6.80566636e-16 + art_sys_54: 3.60946433e-16 + art_sys_55: 3.05628833e-02 + art_sys_56: -1.68818519e-02 + art_sys_57: 2.31648600e-12 + art_sys_58: -2.73473691e-16 + art_sys_59: 2.73756507e-17 + art_sys_60: -4.20085266e-13 + art_sys_61: 2.15881926e-12 + art_sys_62: 1.00551900e-13 + art_sys_63: 9.55145502e-03 + art_sys_64: -9.32547128e-18 + art_sys_65: -1.76046269e-17 + art_sys_66: 1.58332922e-17 + art_sys_67: -1.69339931e-13 + art_sys_68: 1.92531162e-03 + art_sys_69: 8.80199393e-04 + art_sys_70: -1.84848763e-12 + art_sys_71: -1.47403344e-14 + art_sys_72: -1.31166492e-14 + art_sys_73: -4.65263508e-16 + art_sys_74: -6.35140407e-16 + art_sys_75: -1.18425572e-17 + art_sys_76: 2.40319862e-14 + art_sys_77: -5.31840223e-12 + art_sys_78: -2.42320555e-04 + art_sys_79: 1.31397908e-17 + art_sys_80: -2.91404753e-13 + art_sys_81: 4.13243112e-19 + art_sys_82: 4.35124001e-18 + art_sys_83: -1.58556473e-16 + art_sys_84: -1.79373387e-18 + art_sys_85: 6.35156548e-19 + art_sys_86: 3.13805849e-15 + art_sys_87: 6.98951059e-14 + art_sys_88: -1.05142965e-15 + art_sys_89: 1.57805607e-17 + art_sys_90: -3.63460203e-14 + art_sys_91: 2.41053388e-06 + art_sys_92: 3.52614712e-14 + art_sys_93: 7.74850904e-13 + art_sys_94: -1.07934015e-12 + art_sys_95: -9.60054883e-07 + art_sys_96: 4.55459656e-16 + art_sys_97: -7.06844865e-07 + art_sys_98: 1.30784751e-13 + art_sys_99: -5.54044947e-15 + art_sys_100: 3.51082060e-07 + art_sys_101: 6.25012539e-13 + art_sys_102: -5.37971553e-13 + art_sys_103: 1.84808486e-07 + art_sys_104: -4.50223292e-14 + art_sys_105: -6.39341146e-15 + art_sys_106: 4.28864666e-13 + art_sys_107: -1.11102087e-14 + art_sys_108: 7.00509112e-16 + art_sys_109: 3.90865232e-15 + art_sys_110: 8.43809746e-08 + art_sys_111: 8.12108769e-13 + art_sys_112: 3.36369739e-08 + art_sys_113: -1.07973044e-15 + art_sys_114: -2.25403825e-12 + art_sys_115: 1.26660026e-08 + art_sys_116: -1.53826092e-12 + art_sys_117: 1.37515254e-13 + art_sys_118: 4.64898842e-09 + art_sys_119: -3.59166202e-13 + art_sys_120: -1.31031429e-13 + art_sys_121: -1.56748193e-09 + art_sys_122: -1.85147360e-13 + art_sys_123: 1.06829791e-13 + art_sys_124: 5.60943912e-10 + art_sys_125: 2.87879323e-13 + art_sys_126: 1.83934485e-10 + art_sys_127: 3.93471859e-14 + art_sys_128: 6.05510070e-11 + art_sys_129: 8.75504247e-14 + art_sys_130: 1.85868038e-11 + art_sys_131: 2.97692235e-15 + art_sys_132: -1.07517682e-13 + art_sys_133: 5.36019590e-12 + art_sys_134: 2.86682901e-17 + art_sys_135: -9.76661903e-14 + art_sys_136: -1.81372208e-12 + art_sys_137: -5.32717353e-18 + art_sys_138: -2.29761284e-15 + art_sys_139: 4.36682604e-15 + art_sys_140: 2.56307432e-13 + art_sys_141: 6.19084552e-14 + art_sys_142: 1.03516882e-14 + art_sys_143: -1.19284467e-18 + art_sys_144: -1.85640205e-18 + art_sys_145: -1.53345165e-17 + art_sys_146: 0.0 + art_sys_147: -3.35325174e-16 + art_sys_148: 4.07948633e-15 + art_sys_149: 4.07948633e-15 + art_sys_150: -1.44791080e-15 + art_sys_151: -1.44791080e-15 + art_sys_152: 6.77366909e-15 + art_sys_153: -7.99314281e-17 + art_sys_154: -3.54797693e-19 + art_sys_155: -1.44699793e-27 + art_sys_156: -1.55223516e-30 + art_sys_157: -1.02151713e-30 + art_sys_158: 0.0 + art_sys_159: -5.91158766e-14 + art_sys_160: -1.86300782e-15 + art_sys_161: -1.88095675e-14 + art_sys_162: -4.41750019e-16 + art_sys_163: 2.99644352e-16 + art_sys_164: 8.78575336e-16 + art_sys_165: 1.07854772e-17 + art_sys_166: -1.89602767e-24 + art_sys_167: -2.12316109e-24 + art_sys_168: 3.71075877e-25 + art_sys_169: -1.11860219e-25 + art_sys_170: -4.07010691e-26 + art_sys_171: 5.95117215e-26 + art_sys_172: -3.81036849e-25 + art_sys_173: 4.09153456e-26 + art_sys_174: 4.64599632e-27 + art_sys_175: 4.94210475e-30 + art_sys_176: 2.47715033e-27 + art_sys_177: 2.74943700e-28 + art_sys_178: -2.05984152e-28 + art_sys_179: -5.27528209e-29 + art_sys_180: -1.42307099e-27 + art_sys_181: 7.70978051e-30 + art_sys_182: 3.88074258e-28 + art_sys_183: 6.98730399e-30 + art_sys_184: 2.78684418e-33 + art_sys_185: 3.80431263e-32 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -21215,167 +21215,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: -5.07350415e-07 + art_sys_25: 5.07350415e-07 art_sys_26: 2.73762663e-06 - art_sys_27: -5.53841394e-06 - art_sys_28: -1.54160714e-06 - art_sys_29: -3.86106380e-05 - art_sys_30: -8.68264986e-23 - art_sys_31: 8.90465711e-23 - art_sys_32: 1.41268021e-04 - art_sys_33: -3.10602343e-05 - art_sys_34: 1.22410752e-22 - art_sys_35: 9.83226090e-22 - art_sys_36: 4.91618497e-22 - art_sys_37: -1.11171437e-22 + art_sys_27: 5.53841394e-06 + art_sys_28: 6.81426428e-25 + art_sys_29: -1.90521058e-24 + art_sys_30: 1.54160714e-06 + art_sys_31: 3.86106380e-05 + art_sys_32: -1.41268021e-04 + art_sys_33: 3.10602343e-05 + art_sys_34: 3.98672093e-22 + art_sys_35: -4.06441671e-23 + art_sys_36: -9.05854388e-22 + art_sys_37: -5.42830261e-23 art_sys_38: -1.15803797e-04 - art_sys_39: 2.18056345e-21 - art_sys_40: 2.62287593e-22 - art_sys_41: 7.68968913e-22 - art_sys_42: 2.47524936e-21 + art_sys_39: -4.51381505e-22 + art_sys_40: 5.04940381e-22 + art_sys_41: 5.34172770e-22 + art_sys_42: 2.41004308e-20 art_sys_43: 1.30149254e-03 art_sys_44: -2.17037072e-03 art_sys_45: 4.90390377e-03 - art_sys_46: -7.60723225e-20 - art_sys_47: 2.14902022e-19 - art_sys_48: 3.28661798e-19 - art_sys_49: -2.37640067e-03 - art_sys_50: -7.98851809e-17 - art_sys_51: -1.12307107e-13 - art_sys_52: 2.00094252e-14 - art_sys_53: 2.67082659e-02 - art_sys_54: -1.11053559e-14 - art_sys_55: 3.97304843e-12 - art_sys_56: 9.48516088e-12 - art_sys_57: -5.16199074e-15 - art_sys_58: -1.12362599e-20 - art_sys_59: -1.05968697e-14 - art_sys_60: 2.29410212e-16 - art_sys_61: 9.00139024e-16 - art_sys_62: 3.75292481e-16 - art_sys_63: -1.05891933e-16 - art_sys_64: -1.02872212e-02 - art_sys_65: 1.63100061e-17 - art_sys_66: 1.01091280e-18 - art_sys_67: 1.01592477e-17 - art_sys_68: -1.62036931e-03 - art_sys_69: -1.44971636e-03 - art_sys_70: -3.26691562e-14 - art_sys_71: 9.17808012e-14 - art_sys_72: 4.76844947e-04 - art_sys_73: 9.16454766e-15 - art_sys_74: 1.87689851e-14 - art_sys_75: -1.34118010e-20 - art_sys_76: 2.85647225e-18 - art_sys_77: 2.61098311e-18 - art_sys_78: -9.46424996e-14 - art_sys_79: 4.71456468e-12 - art_sys_80: 1.02777111e-19 - art_sys_81: -7.27447027e-21 - art_sys_82: -7.98151407e-21 - art_sys_83: 6.10570074e-06 - art_sys_84: 1.07060615e-12 - art_sys_85: -5.36659762e-13 - art_sys_86: -2.85275151e-06 - art_sys_87: -3.17260490e-13 - art_sys_88: 2.81131558e-21 - art_sys_89: 1.95706100e-06 - art_sys_90: -4.55084662e-16 - art_sys_91: -1.47728426e-12 - art_sys_92: 8.78008836e-16 - art_sys_93: 1.02495997e-06 - art_sys_94: -5.44335739e-07 - art_sys_95: -1.42788325e-14 - art_sys_96: 3.22979968e-14 - art_sys_97: -4.25589654e-13 - art_sys_98: -3.80999163e-12 - art_sys_99: -2.51065752e-07 - art_sys_100: 1.34601148e-21 - art_sys_101: 1.04741233e-20 - art_sys_102: 1.31352161e-12 - art_sys_103: -1.01139134e-07 - art_sys_104: 1.48410649e-12 - art_sys_105: -3.82061809e-08 - art_sys_106: 5.64228244e-13 - art_sys_107: -1.30767599e-12 - art_sys_108: 1.41043959e-08 - art_sys_109: -3.00572975e-12 - art_sys_110: 4.94451966e-14 - art_sys_111: 4.76349289e-09 - art_sys_112: -8.52050494e-15 - art_sys_113: -1.33734683e-13 - art_sys_114: 1.09830951e-13 - art_sys_115: 8.92079812e-15 - art_sys_116: -2.39272042e-15 - art_sys_117: -1.38165284e-18 - art_sys_118: 3.08085315e-14 - art_sys_119: 1.70920769e-09 - art_sys_120: -5.61507623e-10 - art_sys_121: 1.84448449e-10 - art_sys_122: -5.65462830e-11 - art_sys_123: -7.51408398e-13 - art_sys_124: 1.66330613e-11 - art_sys_125: 7.90604351e-14 - art_sys_126: -5.59474967e-12 - art_sys_127: -4.19212357e-14 - art_sys_128: 7.51676340e-13 - art_sys_129: -4.87949790e-16 - art_sys_130: -9.60795753e-15 - art_sys_131: -3.17296223e-15 - art_sys_132: -1.06333609e-20 - art_sys_133: -1.10514682e-17 - art_sys_134: -9.15153815e-14 - art_sys_135: -1.27189897e-22 - art_sys_136: -9.14373088e-22 - art_sys_137: 1.28861889e-21 - art_sys_138: 2.02702459e-21 - art_sys_139: 7.75446038e-22 - art_sys_140: -8.00855755e-24 - art_sys_141: 2.83576514e-18 - art_sys_142: 2.69136438e-23 - art_sys_143: 1.97658874e-21 - art_sys_144: 5.65758197e-19 - art_sys_145: -1.49964886e-18 - art_sys_146: -2.31549877e-18 - art_sys_147: 7.92132750e-19 - art_sys_148: -2.30073881e-19 - art_sys_149: -1.42249546e-19 - art_sys_150: 1.34774364e-19 - art_sys_151: -1.34464324e-20 - art_sys_152: 1.65397518e-22 - art_sys_153: -6.54125269e-23 - art_sys_154: 4.60820039e-23 - art_sys_155: -3.51480674e-23 - art_sys_156: -9.53975363e-25 - art_sys_157: 1.99421146e-23 - art_sys_158: 5.04561034e-24 - art_sys_159: -9.34086979e-25 - art_sys_160: -6.63313389e-25 - art_sys_161: 5.45329559e-27 - art_sys_162: 7.24512201e-28 - art_sys_163: 4.20744291e-27 - art_sys_164: -1.82899755e-26 - art_sys_165: -2.45782823e-26 - art_sys_166: 9.69423064e-27 - art_sys_167: 2.42756402e-25 - art_sys_168: -9.02905559e-17 - art_sys_169: 1.57590629e-26 - art_sys_170: -5.26073107e-18 - art_sys_171: 2.20602211e-17 - art_sys_172: 1.29797049e-26 - art_sys_173: -6.61454512e-29 - art_sys_174: -2.04882216e-18 - art_sys_175: 0.0 - art_sys_176: -2.88768738e-20 - art_sys_177: 0.0 - art_sys_178: 3.71643700e-22 - art_sys_179: -1.41015525e-25 - art_sys_180: -8.60164792e-29 - art_sys_181: -3.69837526e-34 - art_sys_182: 0.0 - art_sys_183: 9.00183109e-32 - art_sys_184: 6.61607056e-32 - art_sys_185: 1.40515764e-34 + art_sys_46: -7.08031998e-20 + art_sys_47: -2.23938857e-20 + art_sys_48: 5.12949821e-16 + art_sys_49: -4.86046572e-14 + art_sys_50: 3.92033464e-15 + art_sys_51: -1.98497294e-14 + art_sys_52: -9.11739804e-16 + art_sys_53: -5.01253454e-16 + art_sys_54: -3.12980704e-16 + art_sys_55: 2.37640067e-03 + art_sys_56: -2.67082659e-02 + art_sys_57: 1.80144591e-13 + art_sys_58: 3.49283889e-16 + art_sys_59: 3.12997287e-19 + art_sys_60: -6.64568595e-13 + art_sys_61: 3.41443379e-12 + art_sys_62: 1.59081253e-13 + art_sys_63: -1.02872212e-02 + art_sys_64: -1.50555105e-17 + art_sys_65: 2.32030293e-17 + art_sys_66: -1.38588086e-17 + art_sys_67: 1.82385431e-13 + art_sys_68: -1.62036938e-03 + art_sys_69: -1.44971633e-03 + art_sys_70: 1.99087833e-12 + art_sys_71: 1.59318805e-14 + art_sys_72: 1.45513266e-14 + art_sys_73: 1.08198976e-15 + art_sys_74: 1.26220409e-15 + art_sys_75: 3.83822040e-17 + art_sys_76: -4.72896478e-14 + art_sys_77: 4.76971444e-12 + art_sys_78: 4.76844948e-04 + art_sys_79: -3.88742885e-17 + art_sys_80: 7.38105913e-13 + art_sys_81: -1.21617341e-18 + art_sys_82: -1.15768409e-17 + art_sys_83: 4.67856455e-16 + art_sys_84: 4.49519887e-18 + art_sys_85: -1.72454253e-18 + art_sys_86: -9.31143352e-15 + art_sys_87: -8.67047265e-14 + art_sys_88: 3.15173338e-15 + art_sys_89: -4.86756177e-17 + art_sys_90: 5.84180703e-14 + art_sys_91: -6.10570106e-06 + art_sys_92: -6.41059150e-14 + art_sys_93: -6.76680465e-13 + art_sys_94: 2.12395586e-12 + art_sys_95: 2.85274717e-06 + art_sys_96: -1.38178235e-15 + art_sys_97: 1.95707445e-06 + art_sys_98: -2.50142532e-13 + art_sys_99: 7.22633076e-15 + art_sys_100: -1.02499008e-06 + art_sys_101: -1.58194013e-12 + art_sys_102: 1.35992567e-12 + art_sys_103: -5.44335677e-07 + art_sys_104: 8.87366162e-14 + art_sys_105: 1.33521555e-14 + art_sys_106: -1.28426181e-12 + art_sys_107: 3.37694199e-14 + art_sys_108: -2.12947618e-15 + art_sys_109: -1.19024261e-14 + art_sys_110: -2.51059677e-07 + art_sys_111: -2.25984318e-12 + art_sys_112: -1.01139360e-07 + art_sys_113: 3.29220683e-15 + art_sys_114: 6.32080347e-12 + art_sys_115: -3.82056139e-08 + art_sys_116: 4.57641896e-12 + art_sys_117: -4.82294685e-13 + art_sys_118: -1.41039625e-08 + art_sys_119: 1.06941548e-12 + art_sys_120: 3.90341467e-13 + art_sys_121: 4.76437852e-09 + art_sys_122: 5.51158482e-13 + art_sys_123: -3.18243350e-13 + art_sys_124: -1.70884415e-09 + art_sys_125: -8.64563158e-13 + art_sys_126: -5.61078609e-10 + art_sys_127: -1.17789840e-13 + art_sys_128: -1.84842890e-10 + art_sys_129: -2.59787728e-13 + art_sys_130: -5.67824484e-11 + art_sys_131: -9.70175844e-15 + art_sys_132: 3.24533891e-13 + art_sys_133: -1.63810659e-11 + art_sys_134: -8.81749419e-17 + art_sys_135: 2.96112445e-13 + art_sys_136: 5.54405390e-12 + art_sys_137: 1.62121832e-17 + art_sys_138: 5.71789030e-15 + art_sys_139: -1.34059820e-14 + art_sys_140: -7.83804396e-13 + art_sys_141: -1.88468325e-13 + art_sys_142: -3.12434230e-14 + art_sys_143: 3.66637127e-18 + art_sys_144: 5.68138370e-18 + art_sys_145: 4.68819218e-17 + art_sys_146: -0.0 + art_sys_147: 1.02211179e-15 + art_sys_148: -1.24157443e-14 + art_sys_149: -1.24157443e-14 + art_sys_150: 4.39280464e-15 + art_sys_151: 4.39280464e-15 + art_sys_152: -2.05130932e-14 + art_sys_153: 2.38560030e-16 + art_sys_154: 1.08101507e-18 + art_sys_155: 4.37893112e-27 + art_sys_156: 4.66183621e-30 + art_sys_157: 3.08756948e-30 + art_sys_158: -0.0 + art_sys_159: 1.80270285e-13 + art_sys_160: 5.67769971e-15 + art_sys_161: 5.74441710e-14 + art_sys_162: 1.34871200e-15 + art_sys_163: -9.44297690e-16 + art_sys_164: -2.68485003e-15 + art_sys_165: -3.28557802e-17 + art_sys_166: 5.79485792e-24 + art_sys_167: 6.48074783e-24 + art_sys_168: -1.13396503e-24 + art_sys_169: 3.40931135e-25 + art_sys_170: 1.23976487e-25 + art_sys_171: -1.81932370e-25 + art_sys_172: 1.16529523e-24 + art_sys_173: -1.25204713e-25 + art_sys_174: -1.42907340e-26 + art_sys_175: -1.50653671e-29 + art_sys_176: -7.54620686e-27 + art_sys_177: -8.38951374e-28 + art_sys_178: 6.29269464e-28 + art_sys_179: 1.62614279e-28 + art_sys_180: 4.35113472e-27 + art_sys_181: -2.36642258e-29 + art_sys_182: -1.18531696e-27 + art_sys_183: -2.13365697e-29 + art_sys_184: -8.59574271e-33 + art_sys_185: -1.16285141e-31 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -21506,167 +21506,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: -2.79278704e-08 + art_sys_25: 2.79278704e-08 art_sys_26: 2.88219018e-07 - art_sys_27: -4.10270950e-07 - art_sys_28: -9.68138409e-07 - art_sys_29: 1.11414178e-05 - art_sys_30: 2.48689686e-23 - art_sys_31: -5.18406844e-23 - art_sys_32: 5.95711075e-05 - art_sys_33: 8.36840280e-05 - art_sys_34: 1.25995737e-22 - art_sys_35: -1.69982696e-23 - art_sys_36: -2.77452366e-22 - art_sys_37: -4.50272343e-23 + art_sys_27: 4.10270950e-07 + art_sys_28: 1.27609305e-26 + art_sys_29: -1.37109602e-25 + art_sys_30: 9.68138409e-07 + art_sys_31: -1.11414178e-05 + art_sys_32: -5.95711075e-05 + art_sys_33: -8.36840280e-05 + art_sys_34: 2.81871143e-22 + art_sys_35: 2.20773236e-22 + art_sys_36: 6.27597252e-23 + art_sys_37: 4.09982663e-23 art_sys_38: 4.75168139e-05 - art_sys_39: -1.10356712e-21 - art_sys_40: -2.90921848e-22 - art_sys_41: -4.93063490e-23 - art_sys_42: 7.10583221e-22 + art_sys_39: 3.13417155e-23 + art_sys_40: -1.14783573e-22 + art_sys_41: -1.87156528e-22 + art_sys_42: 4.67551423e-21 art_sys_43: 2.59402519e-04 art_sys_44: 8.01168626e-04 art_sys_45: 3.08603433e-04 - art_sys_46: -2.01321676e-21 - art_sys_47: -4.86505515e-21 - art_sys_48: 1.86188219e-20 - art_sys_49: 3.02458530e-03 - art_sys_50: -5.98629300e-18 - art_sys_51: -1.01818251e-13 - art_sys_52: 2.02563503e-14 - art_sys_53: 1.97513945e-03 - art_sys_54: -8.21277036e-16 - art_sys_55: 2.93816241e-13 - art_sys_56: 7.01450032e-13 - art_sys_57: -3.81737240e-16 - art_sys_58: -9.40656677e-20 - art_sys_59: 4.19024997e-14 - art_sys_60: -1.33112183e-15 - art_sys_61: 4.93478816e-16 - art_sys_62: -1.13109303e-15 - art_sys_63: 5.23786885e-16 - art_sys_64: -6.58299911e-03 - art_sys_65: -1.15334936e-16 - art_sys_66: -1.36782389e-17 - art_sys_67: -3.60145927e-17 - art_sys_68: 6.96170987e-03 - art_sys_69: 2.88352997e-03 - art_sys_70: -2.06754313e-14 - art_sys_71: 5.93347195e-14 - art_sys_72: -1.41768693e-03 - art_sys_73: 4.93204357e-15 - art_sys_74: -5.33442806e-14 - art_sys_75: 1.74644142e-19 - art_sys_76: -9.70602577e-20 - art_sys_77: 3.75505716e-19 - art_sys_78: 3.50772279e-13 - art_sys_79: -2.13967036e-11 - art_sys_80: -3.54681735e-20 - art_sys_81: 3.26242581e-20 - art_sys_82: 1.05881094e-20 - art_sys_83: -1.69164781e-05 - art_sys_84: -3.18234268e-12 - art_sys_85: 2.30305312e-12 - art_sys_86: 8.43766875e-06 - art_sys_87: 9.43222441e-13 - art_sys_88: 7.46667006e-21 - art_sys_89: -6.24968220e-06 - art_sys_90: 1.35736428e-15 - art_sys_91: 5.99226503e-12 - art_sys_92: -4.92894524e-16 - art_sys_93: -3.30484665e-06 - art_sys_94: 1.81282260e-06 - art_sys_95: 4.29363163e-14 - art_sys_96: -9.87637181e-14 - art_sys_97: 1.26204198e-12 - art_sys_98: 1.21737289e-11 - art_sys_99: 8.47776724e-07 - art_sys_100: -7.80634048e-21 - art_sys_101: -4.91545208e-20 - art_sys_102: -4.25557125e-12 - art_sys_103: 3.45627675e-07 - art_sys_104: -4.69108939e-12 - art_sys_105: 1.31941036e-07 - art_sys_106: -1.81805330e-12 - art_sys_107: 4.20525958e-12 - art_sys_108: -4.89524686e-08 - art_sys_109: 9.69832315e-12 - art_sys_110: -1.71386293e-13 - art_sys_111: -1.66285347e-08 - art_sys_112: 2.38856796e-14 - art_sys_113: 4.36607296e-13 - art_sys_114: -3.55521209e-13 - art_sys_115: -3.11056212e-14 - art_sys_116: 3.02682505e-15 - art_sys_117: 4.14575039e-18 - art_sys_118: -1.04088671e-13 - art_sys_119: -5.98176123e-09 - art_sys_120: 1.96997385e-09 - art_sys_121: -6.48082488e-10 - art_sys_122: 1.98877716e-10 - art_sys_123: 2.62400136e-12 - art_sys_124: -5.85440927e-11 - art_sys_125: -2.73936021e-13 - art_sys_126: 1.96996442e-11 - art_sys_127: 1.46615419e-13 - art_sys_128: -2.64783638e-12 - art_sys_129: 1.70582997e-15 - art_sys_130: 3.33294953e-14 - art_sys_131: 1.11869964e-14 - art_sys_132: 3.72880427e-20 - art_sys_133: 3.89405539e-17 - art_sys_134: 3.22427202e-13 - art_sys_135: -3.75539763e-21 - art_sys_136: -2.53846066e-21 - art_sys_137: -9.04816462e-21 - art_sys_138: 3.33127958e-22 - art_sys_139: 9.78730434e-23 - art_sys_140: -1.34415743e-21 - art_sys_141: -9.99333038e-18 - art_sys_142: 5.04888082e-23 - art_sys_143: -5.78573814e-21 - art_sys_144: -2.74087056e-19 - art_sys_145: -1.33507562e-18 - art_sys_146: 9.11879093e-19 - art_sys_147: -1.40525386e-19 - art_sys_148: 3.16081169e-19 - art_sys_149: -1.86745289e-19 - art_sys_150: 3.53509202e-20 - art_sys_151: 1.39906620e-20 - art_sys_152: 3.19641011e-23 - art_sys_153: 3.30365044e-22 - art_sys_154: -1.54046424e-22 - art_sys_155: 1.24134454e-22 - art_sys_156: 3.27419777e-24 - art_sys_157: -7.00683986e-23 - art_sys_158: -1.77222529e-23 - art_sys_159: 3.28802856e-24 - art_sys_160: 2.33848596e-24 - art_sys_161: -1.85334967e-26 - art_sys_162: -1.28434507e-26 - art_sys_163: 1.60657538e-26 - art_sys_164: 2.24356574e-26 - art_sys_165: 4.26715975e-26 - art_sys_166: -1.87590043e-26 - art_sys_167: -3.75930575e-25 - art_sys_168: 3.18132980e-16 - art_sys_169: -1.51138615e-26 - art_sys_170: 1.85358509e-17 - art_sys_171: -7.77297274e-17 - art_sys_172: -4.52472412e-26 - art_sys_173: 1.79227933e-28 - art_sys_174: 7.21901307e-18 - art_sys_175: 0.0 - art_sys_176: 1.01747721e-19 - art_sys_177: 0.0 - art_sys_178: -1.30952434e-21 - art_sys_179: 4.96802779e-25 - art_sys_180: 2.99158705e-28 - art_sys_181: 1.29223417e-33 - art_sys_182: 0.0 - art_sys_183: -3.17102117e-31 - art_sys_184: -2.27184999e-31 - art_sys_185: -4.91805978e-34 + art_sys_46: 1.71947705e-21 + art_sys_47: 7.43212345e-22 + art_sys_48: -6.52966834e-16 + art_sys_49: 4.02472338e-14 + art_sys_50: 1.99112850e-14 + art_sys_51: -2.80487105e-15 + art_sys_52: -4.39291670e-15 + art_sys_53: -2.09164468e-15 + art_sys_54: -6.80417459e-17 + art_sys_55: -3.02458530e-03 + art_sys_56: -1.97513945e-03 + art_sys_57: -2.29241778e-13 + art_sys_58: -8.17351574e-16 + art_sys_59: -3.12312722e-16 + art_sys_60: -4.91439683e-14 + art_sys_61: 2.52438028e-13 + art_sys_62: 1.17645292e-14 + art_sys_63: -6.58299911e-03 + art_sys_64: -1.30060380e-18 + art_sys_65: -6.59490258e-17 + art_sys_66: 5.47184643e-17 + art_sys_67: 1.16712030e-13 + art_sys_68: 6.96170980e-03 + art_sys_69: 2.88352982e-03 + art_sys_70: 1.27399357e-12 + art_sys_71: 1.11908478e-14 + art_sys_72: 1.68478396e-14 + art_sys_73: -2.98026782e-15 + art_sys_74: -3.70259601e-15 + art_sys_75: -1.21799512e-16 + art_sys_76: 1.40593458e-13 + art_sys_77: -1.98052325e-11 + art_sys_78: -1.41768694e-03 + art_sys_79: 1.19521320e-16 + art_sys_80: -2.04499790e-12 + art_sys_81: 3.39028333e-18 + art_sys_82: 3.41922420e-17 + art_sys_83: -1.50734234e-15 + art_sys_84: -1.25554255e-17 + art_sys_85: 4.01967169e-18 + art_sys_86: 3.13263877e-14 + art_sys_87: 2.40962192e-13 + art_sys_88: -1.07333345e-14 + art_sys_89: 1.70976994e-16 + art_sys_90: -1.20065585e-13 + art_sys_91: 1.69164794e-05 + art_sys_92: 1.63902397e-13 + art_sys_93: 2.79141172e-12 + art_sys_94: -6.31454623e-12 + art_sys_95: -8.43765629e-06 + art_sys_96: 4.79566732e-15 + art_sys_97: -6.24972516e-06 + art_sys_98: 7.50205473e-13 + art_sys_99: -1.89262096e-14 + art_sys_100: 3.30494370e-06 + art_sys_101: 4.38166504e-12 + art_sys_102: -3.76421884e-12 + art_sys_103: 1.81282238e-06 + art_sys_104: -2.64192628e-13 + art_sys_105: -3.20931704e-14 + art_sys_106: 4.17859227e-12 + art_sys_107: -1.17881589e-13 + art_sys_108: 7.43458345e-15 + art_sys_109: 4.16298065e-14 + art_sys_110: 8.47756233e-07 + art_sys_111: 7.15914244e-12 + art_sys_112: 3.45628440e-07 + art_sys_113: -1.15405995e-14 + art_sys_114: -2.02157972e-11 + art_sys_115: 1.31939078e-07 + art_sys_116: -1.54510684e-11 + art_sys_117: 1.60767483e-12 + art_sys_118: 4.89509578e-08 + art_sys_119: -3.44391654e-12 + art_sys_120: -1.32003075e-12 + art_sys_121: -1.66316399e-08 + art_sys_122: -1.84949257e-12 + art_sys_123: 1.07585677e-12 + art_sys_124: 5.98048873e-09 + art_sys_125: 2.97276249e-12 + art_sys_126: 1.96847035e-09 + art_sys_127: 3.98881737e-13 + art_sys_128: 6.49463160e-10 + art_sys_129: 8.74498546e-13 + art_sys_130: 1.99707197e-10 + art_sys_131: 3.73932412e-14 + art_sys_132: -1.11770742e-12 + art_sys_133: 5.76630254e-11 + art_sys_134: 3.13388699e-16 + art_sys_135: -1.02762444e-12 + art_sys_136: -1.95210993e-11 + art_sys_137: -5.66741234e-17 + art_sys_138: -1.58962295e-14 + art_sys_139: 4.73402725e-14 + art_sys_140: 2.76183912e-12 + art_sys_141: 6.59555372e-13 + art_sys_142: 1.07804982e-13 + art_sys_143: -1.30246315e-17 + art_sys_144: -2.00392071e-17 + art_sys_145: -1.65164735e-16 + art_sys_146: 0.0 + art_sys_147: -3.58269613e-15 + art_sys_148: 4.34246652e-14 + art_sys_149: 4.34246652e-14 + art_sys_150: -1.53026060e-14 + art_sys_151: -1.53026060e-14 + art_sys_152: 7.11785572e-14 + art_sys_153: -8.06353191e-16 + art_sys_154: -3.78940014e-18 + art_sys_155: -1.51739662e-26 + art_sys_156: -1.60269733e-29 + art_sys_157: -1.06464748e-29 + art_sys_158: 0.0 + art_sys_159: -6.32093445e-13 + art_sys_160: -1.98932640e-14 + art_sys_161: -2.01969864e-13 + art_sys_162: -4.73992702e-15 + art_sys_163: 3.47742840e-15 + art_sys_164: 9.44867421e-15 + art_sys_165: 1.15101575e-16 + art_sys_166: -2.03783292e-23 + art_sys_167: -2.27428100e-23 + art_sys_168: 3.99370771e-24 + art_sys_169: -1.20566050e-24 + art_sys_170: -4.41536836e-25 + art_sys_171: 6.38358700e-25 + art_sys_172: -4.09511107e-24 + art_sys_173: 4.39423157e-25 + art_sys_174: 4.99091819e-26 + art_sys_175: 5.28323896e-29 + art_sys_176: 2.65136904e-26 + art_sys_177: 2.92371407e-27 + art_sys_178: -2.20901354e-27 + art_sys_179: -5.80477962e-28 + art_sys_180: -1.53285338e-26 + art_sys_181: 8.39802782e-29 + art_sys_182: 4.16805357e-27 + art_sys_183: 7.50001157e-29 + art_sys_184: 3.06080688e-32 + art_sys_185: 4.09473204e-31 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -21797,167 +21797,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: 3.51032666e-10 + art_sys_25: -3.51032666e-10 art_sys_26: 3.67526173e-08 - art_sys_27: -3.85795824e-08 - art_sys_28: -1.84063241e-07 - art_sys_29: 3.86401432e-06 - art_sys_30: 8.62591149e-24 - art_sys_31: -1.45514467e-23 - art_sys_32: 1.21875230e-05 - art_sys_33: 2.30503909e-05 - art_sys_34: -1.14520310e-23 - art_sys_35: -3.00084236e-23 - art_sys_36: -8.58851291e-23 - art_sys_37: -9.17880071e-24 + art_sys_27: 3.85795824e-08 + art_sys_28: -3.08791910e-27 + art_sys_29: -1.26471655e-26 + art_sys_30: 1.84063241e-07 + art_sys_31: -3.86401432e-06 + art_sys_32: -1.21875230e-05 + art_sys_33: -2.30503909e-05 + art_sys_34: 6.44543442e-23 + art_sys_35: 5.97945025e-23 + art_sys_36: 3.80961142e-23 + art_sys_37: 1.22752935e-23 art_sys_38: 1.54587071e-05 - art_sys_39: -3.14896476e-22 - art_sys_40: -8.38490859e-23 - art_sys_41: -3.25574821e-23 - art_sys_42: -1.63710935e-23 + art_sys_39: 1.94390850e-23 + art_sys_40: -4.31258882e-23 + art_sys_41: -6.30605301e-23 + art_sys_42: -5.59785916e-22 art_sys_43: -2.90627656e-05 art_sys_44: 2.63677623e-04 art_sys_45: -3.56042049e-04 - art_sys_46: 6.69372883e-21 - art_sys_47: -1.71900408e-20 - art_sys_48: -2.42458460e-20 - art_sys_49: 4.96469086e-04 - art_sys_50: 7.89964773e-18 - art_sys_51: 4.43022828e-14 - art_sys_52: -2.75739066e-14 - art_sys_53: -2.64395106e-03 - art_sys_54: 1.09936227e-15 - art_sys_55: -3.93306922e-13 - art_sys_56: -9.38971529e-13 - art_sys_57: 5.11000569e-16 - art_sys_58: -1.28597068e-20 - art_sys_59: 3.90114873e-14 - art_sys_60: 1.47710323e-15 - art_sys_61: 1.94058496e-16 - art_sys_62: -3.91871123e-16 - art_sys_63: 3.59276202e-17 - art_sys_64: 5.13012830e-04 - art_sys_65: -3.00136307e-16 - art_sys_66: 5.81529922e-18 - art_sys_67: 3.54982348e-17 - art_sys_68: 6.25085511e-03 - art_sys_69: -3.42399302e-03 - art_sys_70: 1.81241901e-15 - art_sys_71: -4.10965194e-15 - art_sys_72: 1.94874429e-03 - art_sys_73: -5.74521843e-16 - art_sys_74: -2.86672839e-14 - art_sys_75: 1.50335104e-19 - art_sys_76: -2.56751667e-20 - art_sys_77: -6.67515294e-19 - art_sys_78: 2.09428930e-13 - art_sys_79: -2.12633639e-11 - art_sys_80: 1.45245933e-19 - art_sys_81: -1.45980590e-19 - art_sys_82: -1.05482792e-19 - art_sys_83: 7.33986252e-05 - art_sys_84: 4.38164807e-12 - art_sys_85: 2.06310952e-12 - art_sys_86: -2.63256762e-05 - art_sys_87: -1.29658496e-12 - art_sys_88: -1.11425559e-20 - art_sys_89: 2.16208130e-05 - art_sys_90: -1.80885418e-15 - art_sys_91: 4.74304734e-12 - art_sys_92: 4.03859101e-14 - art_sys_93: 1.12551562e-05 - art_sys_94: -6.09517091e-06 - art_sys_95: -1.21960558e-13 - art_sys_96: 1.29348619e-13 - art_sys_97: -3.82877413e-12 - art_sys_98: -4.23619732e-11 - art_sys_99: -2.85205983e-06 - art_sys_100: -4.70809318e-21 - art_sys_101: -3.80314463e-20 - art_sys_102: 1.43777945e-11 - art_sys_103: -1.15757871e-06 - art_sys_104: 1.62778854e-11 - art_sys_105: -4.40881348e-07 - art_sys_106: 6.19396580e-12 - art_sys_107: -1.43617691e-11 - art_sys_108: 1.63449554e-07 - art_sys_109: -3.30218764e-11 - art_sys_110: 5.71752908e-13 - art_sys_111: 5.53974174e-08 - art_sys_112: -8.51744023e-14 - art_sys_113: -1.48182784e-12 - art_sys_114: 1.20912866e-12 - art_sys_115: 1.03718844e-13 - art_sys_116: -1.47112149e-14 - art_sys_117: -6.62927426e-18 - art_sys_118: 3.49642131e-13 - art_sys_119: 1.99256795e-08 - art_sys_120: -6.55507904e-09 - art_sys_121: 2.15591192e-09 - art_sys_122: -6.61363877e-10 - art_sys_123: -8.74051700e-12 - art_sys_124: 1.94635044e-10 - art_sys_125: 9.14567601e-13 - art_sys_126: -6.54879653e-11 - art_sys_127: -4.88476619e-13 - art_sys_128: 8.80087072e-12 - art_sys_129: -5.68115972e-15 - art_sys_130: -1.11220559e-13 - art_sys_131: -3.71778956e-14 - art_sys_132: -1.24232470e-19 - art_sys_133: -1.29432037e-16 - art_sys_134: -1.07159282e-12 - art_sys_135: -1.05266541e-21 - art_sys_136: 1.37959093e-20 - art_sys_137: -4.46520910e-21 - art_sys_138: 8.52939112e-22 - art_sys_139: 3.70867115e-22 - art_sys_140: -4.94669991e-22 - art_sys_141: 3.32161098e-17 - art_sys_142: -1.58017474e-22 - art_sys_143: 1.96556795e-20 - art_sys_144: 1.91460474e-18 - art_sys_145: 4.08711110e-19 - art_sys_146: -3.17470771e-18 - art_sys_147: -1.10306074e-18 - art_sys_148: 1.82234809e-19 - art_sys_149: -6.70310562e-20 - art_sys_150: 3.09823528e-20 - art_sys_151: -8.73215667e-21 - art_sys_152: -2.51549109e-22 - art_sys_153: -1.21501706e-21 - art_sys_154: 4.86396155e-22 - art_sys_155: -4.08709165e-22 - art_sys_156: -9.34132170e-24 - art_sys_157: 2.32514742e-22 - art_sys_158: 5.89499089e-23 - art_sys_159: -1.09440289e-23 - art_sys_160: -7.77620090e-24 - art_sys_161: 6.13105027e-26 - art_sys_162: 4.28438990e-26 - art_sys_163: -5.17528627e-26 - art_sys_164: -1.18100675e-25 - art_sys_165: -1.40143491e-25 - art_sys_166: 6.05141182e-26 - art_sys_167: 1.29281089e-24 - art_sys_168: -1.05743628e-15 - art_sys_169: 5.90544098e-26 - art_sys_170: -6.16112665e-17 - art_sys_171: 2.58364703e-16 - art_sys_172: 1.44109532e-25 - art_sys_173: -5.72897773e-28 - art_sys_174: -2.39952215e-17 - art_sys_175: 0.0 - art_sys_176: -3.38197592e-19 - art_sys_177: 0.0 - art_sys_178: 4.35267100e-21 - art_sys_179: -1.65133318e-24 - art_sys_180: -9.96213755e-28 - art_sys_181: -4.29850556e-33 - art_sys_182: 0.0 - art_sys_183: 1.05407323e-30 - art_sys_184: 7.60091082e-31 - art_sys_185: 1.63744904e-33 + art_sys_46: 5.21549694e-21 + art_sys_47: 2.52748099e-21 + art_sys_48: -1.07174495e-16 + art_sys_49: 4.39344667e-14 + art_sys_50: -2.59986403e-14 + art_sys_51: -5.81359702e-15 + art_sys_52: -2.22042426e-15 + art_sys_53: -1.68621145e-15 + art_sys_54: -7.97870125e-16 + art_sys_55: -4.96469086e-04 + art_sys_56: 2.64395106e-03 + art_sys_57: -3.76319926e-14 + art_sys_58: 1.07772324e-16 + art_sys_59: 2.52225919e-16 + art_sys_60: 6.57883737e-14 + art_sys_61: -3.38013055e-13 + art_sys_62: -1.57480303e-14 + art_sys_63: 5.13012830e-04 + art_sys_64: 1.48252992e-18 + art_sys_65: 1.20569270e-17 + art_sys_66: 5.45518182e-17 + art_sys_67: -9.09562303e-15 + art_sys_68: 6.25085435e-03 + art_sys_69: -3.42399317e-03 + art_sys_70: -9.92912844e-14 + art_sys_71: -2.53705270e-17 + art_sys_72: 5.05878119e-15 + art_sys_73: 1.09153464e-14 + art_sys_74: 5.42513811e-15 + art_sys_75: 3.75916110e-16 + art_sys_76: -1.93240563e-13 + art_sys_77: -1.43274231e-11 + art_sys_78: 1.94874430e-03 + art_sys_79: -3.72699824e-16 + art_sys_80: 8.87301585e-12 + art_sys_81: -1.10380700e-17 + art_sys_82: -1.33533747e-16 + art_sys_83: 5.14097962e-15 + art_sys_84: 5.29693937e-17 + art_sys_85: -1.74243618e-17 + art_sys_86: -1.05371541e-13 + art_sys_87: -2.01123621e-14 + art_sys_88: 3.59943915e-14 + art_sys_89: -5.70032178e-16 + art_sys_90: 1.28769776e-13 + art_sys_91: -7.33986231e-05 + art_sys_92: -2.15202809e-13 + art_sys_93: 2.29810840e-12 + art_sys_94: 8.68052257e-12 + art_sys_95: 2.63256249e-05 + art_sys_96: -1.60127327e-14 + art_sys_97: 2.16209615e-05 + art_sys_98: -7.66334023e-13 + art_sys_99: 4.75006190e-15 + art_sys_100: -1.12554867e-05 + art_sys_101: -1.90337764e-11 + art_sys_102: 1.64032205e-11 + art_sys_103: -6.09517017e-06 + art_sys_104: 3.66373260e-13 + art_sys_105: 2.12435600e-13 + art_sys_106: -1.41595077e-11 + art_sys_107: 3.92720669e-13 + art_sys_108: -2.47682718e-14 + art_sys_109: -1.38698363e-13 + art_sys_110: -2.85199090e-06 + art_sys_111: -2.49112260e-11 + art_sys_112: -1.15758128e-06 + art_sys_113: 3.84158998e-14 + art_sys_114: 6.95540460e-11 + art_sys_115: -4.40874807e-07 + art_sys_116: 5.19786993e-11 + art_sys_117: -5.24484893e-12 + art_sys_118: -1.63444518e-07 + art_sys_119: 1.16826826e-11 + art_sys_120: 4.43839233e-12 + art_sys_121: 5.54077502e-08 + art_sys_122: 6.23510446e-12 + art_sys_123: -3.61851414e-12 + art_sys_124: -1.99214436e-08 + art_sys_125: -9.94057174e-12 + art_sys_126: -6.55007015e-09 + art_sys_127: -1.34058351e-12 + art_sys_128: -2.16050884e-09 + art_sys_129: -2.94413672e-12 + art_sys_130: -6.64123078e-10 + art_sys_131: -1.21513495e-13 + art_sys_132: 3.73957484e-12 + art_sys_133: -1.91701320e-10 + art_sys_134: -1.03945843e-15 + art_sys_135: 3.43037534e-12 + art_sys_136: 6.48947841e-11 + art_sys_137: 1.88760103e-16 + art_sys_138: 6.63369484e-14 + art_sys_139: -1.57152206e-13 + art_sys_140: -9.17893961e-12 + art_sys_141: -2.19576253e-12 + art_sys_142: -3.60277347e-13 + art_sys_143: 4.31951722e-17 + art_sys_144: 6.65871105e-17 + art_sys_145: 5.48936084e-16 + art_sys_146: -0.0 + art_sys_147: 1.19232329e-14 + art_sys_148: -1.44601193e-13 + art_sys_149: -1.44601193e-13 + art_sys_150: 5.09840469e-14 + art_sys_151: 5.09840469e-14 + art_sys_152: -2.37638640e-13 + art_sys_153: 2.72041806e-15 + art_sys_154: 1.26048152e-17 + art_sys_155: 5.06885333e-26 + art_sys_156: 5.35035609e-29 + art_sys_157: 3.56158756e-29 + art_sys_158: -0.0 + art_sys_159: 2.10375663e-12 + art_sys_160: 6.62253669e-14 + art_sys_161: 6.71716204e-13 + art_sys_162: 1.57658344e-14 + art_sys_163: -1.14359414e-14 + art_sys_164: -3.14139915e-14 + art_sys_165: -3.83089454e-16 + art_sys_166: 6.77013424e-23 + art_sys_167: 7.64115709e-23 + art_sys_168: -1.32844355e-23 + art_sys_169: 3.97915702e-24 + art_sys_170: 1.45219250e-24 + art_sys_171: -2.12436323e-24 + art_sys_172: 1.36230470e-23 + art_sys_173: -1.46204427e-24 + art_sys_174: -1.66152384e-25 + art_sys_175: -1.75808714e-28 + art_sys_176: -8.82146787e-26 + art_sys_177: -9.76497390e-27 + art_sys_178: 7.35062411e-27 + art_sys_179: 1.92137672e-27 + art_sys_180: 5.09451963e-26 + art_sys_181: -2.78462075e-28 + art_sys_182: -1.38621419e-26 + art_sys_183: -2.49457975e-28 + art_sys_184: -1.01466843e-31 + art_sys_185: -1.36117596e-30 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -22088,167 +22088,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: 2.66562795e-10 + art_sys_25: -2.66562795e-10 art_sys_26: 4.87868611e-09 - art_sys_27: -5.31346452e-09 - art_sys_28: -2.38294428e-08 - art_sys_29: 6.71789689e-07 - art_sys_30: 1.49900430e-24 - art_sys_31: -2.84677587e-24 - art_sys_32: 1.80287584e-06 - art_sys_33: 3.63678586e-06 - art_sys_34: -5.50768514e-24 - art_sys_35: -5.43352583e-24 - art_sys_36: -1.41336701e-23 - art_sys_37: -1.75905987e-24 + art_sys_27: 5.31346452e-09 + art_sys_28: -3.47841976e-28 + art_sys_29: -1.77691483e-27 + art_sys_30: 2.38294428e-08 + art_sys_31: -6.71789689e-07 + art_sys_32: -1.80287584e-06 + art_sys_33: -3.63678586e-06 + art_sys_34: 9.90193042e-24 + art_sys_35: 9.36810114e-24 + art_sys_36: 6.07278044e-24 + art_sys_37: 1.97732068e-24 art_sys_38: 1.99825287e-06 - art_sys_39: -4.15811598e-23 - art_sys_40: -1.09870899e-23 - art_sys_41: -4.82093129e-24 - art_sys_42: -3.56889636e-23 + art_sys_39: 8.78668548e-25 + art_sys_40: -5.45610412e-24 + art_sys_41: -8.71657172e-24 + art_sys_42: -3.60504927e-22 art_sys_43: -1.93477493e-05 art_sys_44: -4.60600348e-06 art_sys_45: -6.73436113e-05 - art_sys_46: 1.04447972e-21 - art_sys_47: -2.07266604e-21 - art_sys_48: -4.45498092e-21 - art_sys_49: -2.38080265e-04 - art_sys_50: 1.30980154e-18 - art_sys_51: -4.09400545e-14 - art_sys_52: 4.05150979e-14 - art_sys_53: -4.35894620e-04 - art_sys_54: 1.81246787e-16 - art_sys_55: -6.48424812e-14 - art_sys_56: -1.54803404e-13 - art_sys_57: 8.42633273e-17 - art_sys_58: 2.26138332e-20 - art_sys_59: 4.36331469e-15 - art_sys_60: -6.45079191e-17 - art_sys_61: -6.09728341e-16 - art_sys_62: 6.45017369e-16 - art_sys_63: -1.08728324e-17 - art_sys_64: 1.08855472e-03 - art_sys_65: 3.24236429e-18 - art_sys_66: -7.40706524e-17 - art_sys_67: -7.21183795e-17 - art_sys_68: 5.79390397e-04 - art_sys_69: -5.45550146e-03 - art_sys_70: 3.47355313e-15 - art_sys_71: -9.67870421e-15 - art_sys_72: -2.10561723e-03 - art_sys_73: -4.74405869e-16 - art_sys_74: 1.51325010e-14 - art_sys_75: -9.10596449e-20 - art_sys_76: -2.30751037e-18 - art_sys_77: -2.50736233e-19 - art_sys_78: -7.05446125e-14 - art_sys_79: -3.72371211e-12 - art_sys_80: -5.25803246e-19 - art_sys_81: 4.68648467e-20 - art_sys_82: -2.33888616e-19 - art_sys_83: -4.82261320e-05 - art_sys_84: -4.73320695e-12 - art_sys_85: 1.87026537e-13 - art_sys_86: 5.59102719e-05 - art_sys_87: 1.40091119e-12 - art_sys_88: 2.49411536e-20 - art_sys_89: -3.72037404e-05 - art_sys_90: 2.02204499e-15 - art_sys_91: -1.05625194e-13 - art_sys_92: 1.16868490e-13 - art_sys_93: -2.31533332e-05 - art_sys_94: 1.33563793e-05 - art_sys_95: 3.21838212e-13 - art_sys_96: -1.54466846e-13 - art_sys_97: 8.68933242e-12 - art_sys_98: 7.14685205e-11 - art_sys_99: 6.52237004e-06 - art_sys_100: 2.58106160e-21 - art_sys_101: -9.25478439e-21 - art_sys_102: -2.63295669e-11 - art_sys_103: 2.74556272e-06 - art_sys_104: -2.70022662e-11 - art_sys_105: 1.06926865e-06 - art_sys_106: -1.27913311e-11 - art_sys_107: 2.86542940e-11 - art_sys_108: -4.03186481e-07 - art_sys_109: 6.79628731e-11 - art_sys_110: -1.39960152e-12 - art_sys_111: -1.38383430e-07 - art_sys_112: 1.16442565e-13 - art_sys_113: 3.13853032e-12 - art_sys_114: -2.50866748e-12 - art_sys_115: -2.56844197e-13 - art_sys_116: -5.56898342e-14 - art_sys_117: 1.54209901e-17 - art_sys_118: -8.09566100e-13 - art_sys_119: -5.01456582e-08 - art_sys_120: 1.66012220e-08 - art_sys_121: -5.47920962e-09 - art_sys_122: 1.68569798e-09 - art_sys_123: 2.18513797e-11 - art_sys_124: -4.96923128e-10 - art_sys_125: -2.24328172e-12 - art_sys_126: 1.67382094e-10 - art_sys_127: 1.22643106e-12 - art_sys_128: -2.25185626e-11 - art_sys_129: 1.42467734e-14 - art_sys_130: 2.73801189e-13 - art_sys_131: 9.50893939e-14 - art_sys_132: 3.12749649e-19 - art_sys_133: 3.31337004e-16 - art_sys_134: 2.74293626e-12 - art_sys_135: 1.29830708e-21 - art_sys_136: 7.65467149e-22 - art_sys_137: -2.30409797e-21 - art_sys_138: -1.50052628e-21 - art_sys_139: -1.38909469e-21 - art_sys_140: 6.58056459e-22 - art_sys_141: -8.50212736e-17 - art_sys_142: 8.41129197e-23 - art_sys_143: -5.03160389e-20 - art_sys_144: -5.52085184e-18 - art_sys_145: 4.38329414e-18 - art_sys_146: 1.29231417e-19 - art_sys_147: 1.66877306e-18 - art_sys_148: -3.55438689e-19 - art_sys_149: -2.11880407e-20 - art_sys_150: 6.66672763e-20 - art_sys_151: 1.88373975e-20 - art_sys_152: 4.70066128e-22 - art_sys_153: 2.98916135e-21 - art_sys_154: -1.25860645e-21 - art_sys_155: 1.03995548e-21 - art_sys_156: 2.38022513e-23 - art_sys_157: -5.92017866e-22 - art_sys_158: -1.50008105e-22 - art_sys_159: 2.78903426e-23 - art_sys_160: 1.97696916e-23 - art_sys_161: -1.49957323e-25 - art_sys_162: -1.09506607e-25 - art_sys_163: 1.29671740e-25 - art_sys_164: 3.24876135e-25 - art_sys_165: 3.60944661e-25 - art_sys_166: -1.41329477e-25 - art_sys_167: -3.09781620e-24 - art_sys_168: 2.70668409e-15 - art_sys_169: -1.56217620e-25 - art_sys_170: 1.57704464e-16 - art_sys_171: -6.61328941e-16 - art_sys_172: -3.76332099e-25 - art_sys_173: 1.48976469e-27 - art_sys_174: 6.14199346e-17 - art_sys_175: 0.0 - art_sys_176: 8.65684935e-19 - art_sys_177: 0.0 - art_sys_178: -1.11424182e-20 - art_sys_179: 4.22648182e-24 - art_sys_180: 2.51262331e-27 - art_sys_181: 1.08062077e-32 - art_sys_182: 0.0 - art_sys_183: -2.69648825e-30 - art_sys_184: -1.82477513e-30 - art_sys_185: -4.11665818e-33 + art_sys_46: 6.72403538e-22 + art_sys_47: 2.95230512e-22 + art_sys_48: 5.13994015e-17 + art_sys_49: 3.06488021e-15 + art_sys_50: -2.35995851e-14 + art_sys_51: -2.39853606e-15 + art_sys_52: 1.14220075e-15 + art_sys_53: -3.98019579e-16 + art_sys_54: -5.46040834e-16 + art_sys_55: 2.38080265e-04 + art_sys_56: 4.35894620e-04 + art_sys_57: 1.80444684e-14 + art_sys_58: 9.99776316e-16 + art_sys_59: 7.25526684e-17 + art_sys_60: 1.08459479e-14 + art_sys_61: -5.57197326e-14 + art_sys_62: -2.59630592e-15 + art_sys_63: 1.08855471e-03 + art_sys_64: 2.81411450e-19 + art_sys_65: 4.79243117e-17 + art_sys_66: -4.17349306e-17 + art_sys_67: -1.92996738e-14 + art_sys_68: 5.79389724e-04 + art_sys_69: -5.45550149e-03 + art_sys_70: -2.10668466e-13 + art_sys_71: -1.63403295e-15 + art_sys_72: -1.13713478e-15 + art_sys_73: -5.66058464e-15 + art_sys_74: -5.96093479e-15 + art_sys_75: -1.03602176e-15 + art_sys_76: 2.08745219e-13 + art_sys_77: -3.73498119e-12 + art_sys_78: -2.10561724e-03 + art_sys_79: 8.16807088e-16 + art_sys_80: -5.82991861e-12 + art_sys_81: 2.08086246e-17 + art_sys_82: 1.55434669e-16 + art_sys_83: -1.08424350e-14 + art_sys_84: -3.62473945e-17 + art_sys_85: 1.31119989e-17 + art_sys_86: 2.38313349e-13 + art_sys_87: -2.03966981e-13 + art_sys_88: -8.44880886e-14 + art_sys_89: 1.46762818e-15 + art_sys_90: 2.11121111e-13 + art_sys_91: 4.82261592e-05 + art_sys_92: 6.12497068e-14 + art_sys_93: 3.50445168e-14 + art_sys_94: -9.37841032e-12 + art_sys_95: -5.59102267e-05 + art_sys_96: 3.94983512e-14 + art_sys_97: -3.72039984e-05 + art_sys_98: 9.90667502e-13 + art_sys_99: 1.91677450e-14 + art_sys_100: 2.31540131e-05 + art_sys_101: 1.24105316e-11 + art_sys_102: -1.05207265e-11 + art_sys_103: 1.33563774e-05 + art_sys_104: -3.94625488e-13 + art_sys_105: 1.37365699e-13 + art_sys_106: 3.14096413e-11 + art_sys_107: -9.80991063e-13 + art_sys_108: 6.18956654e-14 + art_sys_109: 3.48479197e-13 + art_sys_110: 6.52221290e-06 + art_sys_111: 4.28789478e-11 + art_sys_112: 2.74556866e-06 + art_sys_113: -9.70856879e-14 + art_sys_114: -1.25428031e-10 + art_sys_115: 1.06925280e-06 + art_sys_116: -1.18824722e-10 + art_sys_117: 1.63094681e-11 + art_sys_118: 4.03173937e-07 + art_sys_119: -2.52914381e-11 + art_sys_120: -1.01943653e-11 + art_sys_121: -1.38409543e-07 + art_sys_122: -1.41787321e-11 + art_sys_123: 8.31114599e-12 + art_sys_124: 5.01350000e-08 + art_sys_125: 2.37721929e-11 + art_sys_126: 1.65885639e-08 + art_sys_127: 3.11162349e-12 + art_sys_128: 5.49077986e-09 + art_sys_129: 6.66547694e-12 + art_sys_130: 1.69270699e-09 + art_sys_131: 3.81284856e-13 + art_sys_132: -9.04298371e-12 + art_sys_133: 4.89563236e-10 + art_sys_134: 2.72114340e-15 + art_sys_135: -8.45091372e-12 + art_sys_136: -1.65865547e-10 + art_sys_137: -4.73504459e-16 + art_sys_138: -4.33329468e-14 + art_sys_139: 4.05724064e-13 + art_sys_140: 2.35045809e-11 + art_sys_141: 5.52167403e-12 + art_sys_142: 8.72195168e-13 + art_sys_143: -1.12926560e-16 + art_sys_144: -1.70973493e-16 + art_sys_145: -1.40473240e-15 + art_sys_146: 0.0 + art_sys_147: -3.01154062e-14 + art_sys_148: 3.63069018e-13 + art_sys_149: 3.63069018e-13 + art_sys_150: -1.26544644e-13 + art_sys_151: -1.26544644e-13 + art_sys_152: 5.84525961e-13 + art_sys_153: -6.24886640e-15 + art_sys_154: -3.18216532e-17 + art_sys_155: -1.24265606e-25 + art_sys_156: -1.27818167e-28 + art_sys_157: -8.63672855e-29 + art_sys_158: 0.0 + art_sys_159: -5.32007063e-12 + art_sys_160: -1.67091541e-13 + art_sys_161: -1.71021237e-12 + art_sys_162: -4.00946715e-14 + art_sys_163: 3.26170420e-14 + art_sys_164: 8.01898771e-14 + art_sys_165: 9.65995766e-16 + art_sys_166: -1.72755175e-22 + art_sys_167: -1.93707214e-22 + art_sys_168: 3.39852444e-23 + art_sys_169: -1.02180700e-23 + art_sys_170: -3.55489275e-24 + art_sys_171: 5.38461603e-24 + art_sys_172: -3.46475707e-23 + art_sys_173: 3.71398729e-24 + art_sys_174: 4.21687082e-25 + art_sys_175: 4.44531817e-28 + art_sys_176: 2.23925933e-25 + art_sys_177: 2.42957154e-26 + art_sys_178: -1.86326977e-26 + art_sys_179: -5.08931570e-27 + art_sys_180: -1.30390983e-25 + art_sys_181: 7.26457339e-28 + art_sys_182: 3.53072580e-26 + art_sys_183: 6.34765131e-28 + art_sys_184: 2.67637584e-31 + art_sys_185: 3.47911299e-30 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -22379,167 +22379,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: 1.84169019e-11 + art_sys_25: -1.84169019e-11 art_sys_26: 3.60132157e-10 - art_sys_27: -4.52659684e-10 - art_sys_28: -1.56536859e-09 - art_sys_29: 4.97487637e-08 - art_sys_30: 1.10973017e-25 - art_sys_31: -1.85886713e-25 - art_sys_32: 1.40638580e-07 - art_sys_33: 2.40485602e-07 - art_sys_34: -6.36882359e-26 - art_sys_35: -2.25517116e-25 - art_sys_36: -9.07877514e-25 - art_sys_37: -2.25408852e-25 + art_sys_27: 4.52659684e-10 + art_sys_28: -5.16127995e-30 + art_sys_29: -1.54209896e-28 + art_sys_30: 1.56536859e-09 + art_sys_31: -4.97487637e-08 + art_sys_32: -1.40638580e-07 + art_sys_33: -2.40485602e-07 + art_sys_34: 7.46324540e-25 + art_sys_35: 6.16085540e-25 + art_sys_36: 2.74920694e-25 + art_sys_37: 1.28776783e-25 art_sys_38: 3.29250718e-09 - art_sys_39: -1.05005864e-24 - art_sys_40: -1.50069079e-25 - art_sys_41: -2.62176116e-26 - art_sys_42: -3.74435851e-24 + art_sys_39: -5.71176865e-25 + art_sys_40: 8.30338511e-26 + art_sys_41: -1.59360642e-25 + art_sys_42: -3.32276253e-23 art_sys_43: -1.78673663e-06 art_sys_44: -1.15583117e-05 art_sys_45: 9.76673846e-06 - art_sys_46: -2.27467079e-22 - art_sys_47: 5.62914249e-22 - art_sys_48: 6.81645155e-22 - art_sys_49: -5.19172387e-05 - art_sys_50: -3.56596820e-19 - art_sys_51: -2.62598687e-14 - art_sys_52: -1.70534912e-14 - art_sys_53: 1.19587896e-04 - art_sys_54: -4.97250432e-17 - art_sys_55: 1.77895690e-14 - art_sys_56: 4.24703894e-14 - art_sys_57: -2.31103716e-17 - art_sys_58: 3.12333384e-21 - art_sys_59: -5.90070307e-15 - art_sys_60: -3.02870142e-16 - art_sys_61: -1.15359850e-15 - art_sys_62: -3.05584835e-16 - art_sys_63: 1.58512897e-17 - art_sys_64: 4.39685025e-05 - art_sys_65: -1.39340900e-16 - art_sys_66: -3.42743952e-17 - art_sys_67: -8.22179748e-17 - art_sys_68: -4.21270014e-04 - art_sys_69: -2.50775349e-04 - art_sys_70: 1.27350047e-16 - art_sys_71: -4.24503756e-16 - art_sys_72: -5.74256360e-04 - art_sys_73: 1.57409692e-17 - art_sys_74: 3.60498723e-15 - art_sys_75: -1.58359777e-18 - art_sys_76: 1.08528975e-17 - art_sys_77: -5.83638237e-18 - art_sys_78: -2.25445711e-14 - art_sys_79: 1.26876004e-12 - art_sys_80: 1.04259922e-18 - art_sys_81: -1.30277280e-18 - art_sys_82: -8.61300822e-19 - art_sys_83: 6.19814959e-04 - art_sys_84: -1.29083833e-12 - art_sys_85: -1.39440284e-13 - art_sys_86: -1.61636632e-04 - art_sys_87: 3.82135349e-13 - art_sys_88: -1.26666798e-19 - art_sys_89: 1.90775671e-04 - art_sys_90: 1.25529677e-15 - art_sys_91: -3.70777848e-13 - art_sys_92: 5.66341756e-13 - art_sys_93: 1.00983401e-04 - art_sys_94: -5.88037356e-05 - art_sys_95: -6.50083487e-13 - art_sys_96: -4.03249682e-14 - art_sys_97: -2.24156082e-11 - art_sys_98: -3.76417020e-10 - art_sys_99: -2.85945040e-05 - art_sys_100: -2.14532166e-20 - art_sys_101: 2.30117729e-20 - art_sys_102: 1.27487809e-10 - art_sys_103: -1.20005791e-05 - art_sys_104: 1.40685430e-10 - art_sys_105: -4.68855685e-06 - art_sys_106: 5.55126739e-11 - art_sys_107: -1.28195499e-10 - art_sys_108: 1.76868807e-06 - art_sys_109: -2.96767801e-10 - art_sys_110: 6.11907158e-12 - art_sys_111: 6.07841837e-07 - art_sys_112: -4.89952797e-13 - art_sys_113: -1.37162825e-11 - art_sys_114: 1.09541533e-11 - art_sys_115: 1.12854084e-12 - art_sys_116: 2.50771282e-13 - art_sys_117: -3.56470548e-18 - art_sys_118: 3.53756133e-12 - art_sys_119: 2.20604450e-07 - art_sys_120: -7.30563046e-08 - art_sys_121: 2.41382246e-08 - art_sys_122: -7.42796559e-09 - art_sys_123: -9.59878889e-11 - art_sys_124: 2.19059709e-09 - art_sys_125: 9.83826089e-12 - art_sys_126: -7.38030223e-10 - art_sys_127: -5.38919392e-12 - art_sys_128: 9.93090638e-11 - art_sys_129: -6.26182657e-14 - art_sys_130: -1.20114284e-12 - art_sys_131: -4.18748171e-13 - art_sys_132: -1.37663675e-18 - art_sys_133: -1.46175408e-15 - art_sys_134: -1.20975371e-11 - art_sys_135: -1.41415909e-21 - art_sys_136: 1.02669556e-20 - art_sys_137: 2.22205047e-22 - art_sys_138: 7.56284158e-22 - art_sys_139: 5.23018003e-21 - art_sys_140: -2.92239774e-22 - art_sys_141: 3.75047504e-16 - art_sys_142: -5.79762832e-23 - art_sys_143: 2.23616558e-19 - art_sys_144: 2.26937727e-17 - art_sys_145: -6.48073048e-18 - art_sys_146: 8.00965860e-18 - art_sys_147: -2.08068716e-18 - art_sys_148: -1.36293863e-18 - art_sys_149: 6.70370741e-19 - art_sys_150: -4.84476564e-19 - art_sys_151: -3.81475562e-21 - art_sys_152: -2.05770099e-21 - art_sys_153: -1.31987311e-20 - art_sys_154: 5.53457423e-21 - art_sys_155: -4.58197029e-21 - art_sys_156: -1.04494338e-22 - art_sys_157: 2.60875015e-21 - art_sys_158: 6.60989341e-22 - art_sys_159: -1.22919713e-22 - art_sys_160: -8.71058654e-23 - art_sys_161: 6.59149195e-25 - art_sys_162: 4.82668638e-25 - art_sys_163: -5.66357261e-25 - art_sys_164: -1.49570028e-24 - art_sys_165: -1.58571242e-24 - art_sys_166: 6.27488080e-25 - art_sys_167: 1.39562816e-23 - art_sys_168: -1.19409060e-14 - art_sys_169: 6.75183870e-25 - art_sys_170: -6.95738599e-16 - art_sys_171: 2.91752594e-15 - art_sys_172: 1.65641038e-24 - art_sys_173: -6.53468257e-27 - art_sys_174: -2.70961368e-16 - art_sys_175: 0.0 - art_sys_176: -3.81906659e-18 - art_sys_177: 0.0 - art_sys_178: 4.91566582e-20 - art_sys_179: -1.86453800e-23 - art_sys_180: -1.10604986e-26 - art_sys_181: -4.74406390e-32 - art_sys_182: 0.0 - art_sys_183: 1.18945409e-29 - art_sys_184: 7.98288078e-30 - art_sys_185: 1.80952631e-32 + art_sys_46: -1.48478193e-22 + art_sys_47: -1.07068441e-22 + art_sys_48: 1.12080626e-17 + art_sys_49: 4.82133967e-14 + art_sys_50: -1.38011531e-14 + art_sys_51: -1.33658510e-14 + art_sys_52: -4.98887693e-15 + art_sys_53: 7.27923045e-16 + art_sys_54: -1.14392235e-15 + art_sys_55: 5.19172387e-05 + art_sys_56: -1.19587896e-04 + art_sys_57: 3.93511886e-15 + art_sys_58: -9.96652807e-16 + art_sys_59: 1.44506215e-15 + art_sys_60: -2.97568279e-15 + art_sys_61: 1.52892063e-14 + art_sys_62: 7.12295651e-16 + art_sys_63: 4.39685025e-05 + art_sys_64: -6.36765424e-20 + art_sys_65: -1.66807145e-16 + art_sys_66: 1.92818694e-16 + art_sys_67: -7.79546525e-16 + art_sys_68: -4.21270018e-04 + art_sys_69: -2.50775340e-04 + art_sys_70: -8.50868222e-15 + art_sys_71: -1.21391668e-16 + art_sys_72: -4.59683750e-16 + art_sys_73: 8.19413444e-14 + art_sys_74: 2.24003432e-15 + art_sys_75: 3.14586159e-15 + art_sys_76: 5.73126881e-14 + art_sys_77: 4.96799519e-13 + art_sys_78: -5.74256361e-04 + art_sys_79: -2.61203653e-15 + art_sys_80: 7.49281933e-11 + art_sys_81: -6.22023348e-17 + art_sys_82: -1.14219261e-15 + art_sys_83: 4.62427088e-14 + art_sys_84: 4.58040139e-16 + art_sys_85: -1.04143480e-16 + art_sys_86: -1.04590495e-12 + art_sys_87: -1.75869367e-14 + art_sys_88: 3.69600718e-13 + art_sys_89: -6.44197196e-15 + art_sys_90: 9.85421459e-15 + art_sys_91: -6.19814896e-04 + art_sys_92: 3.98481438e-14 + art_sys_93: -1.71557235e-13 + art_sys_94: -2.55005876e-12 + art_sys_95: 1.61636191e-04 + art_sys_96: -1.73268732e-13 + art_sys_97: 1.90776979e-04 + art_sys_98: 3.61347260e-12 + art_sys_99: 2.02255527e-15 + art_sys_100: -1.00986365e-04 + art_sys_101: -1.60868230e-10 + art_sys_102: 1.38929932e-10 + art_sys_103: -5.88037272e-05 + art_sys_104: -6.84542114e-14 + art_sys_105: 2.14445009e-12 + art_sys_106: -1.29609194e-10 + art_sys_107: 4.30893620e-12 + art_sys_108: -2.71899434e-13 + art_sys_109: -1.53280017e-12 + art_sys_110: -2.85938148e-05 + art_sys_111: -2.17832586e-10 + art_sys_112: -1.20006049e-05 + art_sys_113: 4.27205879e-13 + art_sys_114: 6.13874706e-10 + art_sys_115: -4.68848733e-06 + art_sys_116: 5.20927459e-10 + art_sys_117: -5.02250916e-11 + art_sys_118: -1.76863298e-06 + art_sys_119: 1.04245178e-10 + art_sys_120: 4.46834625e-11 + art_sys_121: 6.07956709e-07 + art_sys_122: 6.17067876e-11 + art_sys_123: -3.64072965e-11 + art_sys_124: -2.20557594e-07 + art_sys_125: -1.04182700e-10 + art_sys_126: -7.30005619e-08 + art_sys_127: -1.36164090e-11 + art_sys_128: -2.41890995e-08 + art_sys_129: -2.92240279e-11 + art_sys_130: -7.45881688e-09 + art_sys_131: -1.71969785e-12 + art_sys_132: 3.96526302e-11 + art_sys_133: -2.15825814e-09 + art_sys_134: -1.20448260e-14 + art_sys_135: 3.70578668e-11 + art_sys_136: 7.31350298e-10 + art_sys_137: 2.08041809e-15 + art_sys_138: 5.49901960e-13 + art_sys_139: -1.78506130e-12 + art_sys_140: -1.03663489e-10 + art_sys_141: -2.42785608e-11 + art_sys_142: -3.80905212e-12 + art_sys_143: 4.99949617e-16 + art_sys_144: 7.54319672e-16 + art_sys_145: 6.19564255e-15 + art_sys_146: -0.0 + art_sys_147: 1.32474819e-13 + art_sys_148: -1.59601969e-12 + art_sys_149: -1.59601969e-12 + art_sys_150: 5.54969722e-13 + art_sys_151: 5.54969722e-13 + art_sys_152: -2.56603790e-12 + art_sys_153: 2.74045360e-14 + art_sys_154: 1.39872004e-16 + art_sys_155: 5.45492635e-25 + art_sys_156: 5.56730074e-28 + art_sys_157: 3.77983187e-28 + art_sys_158: -0.0 + art_sys_159: 2.34090059e-11 + art_sys_160: 7.35048972e-13 + art_sys_161: 7.53583739e-12 + art_sys_162: 1.76639471e-13 + art_sys_163: -1.46408494e-13 + art_sys_164: -3.53448714e-13 + art_sys_165: -4.24955643e-15 + art_sys_166: 7.61312815e-22 + art_sys_167: 8.52774537e-22 + art_sys_168: -1.49812761e-22 + art_sys_169: 4.42466995e-23 + art_sys_170: 1.58642332e-23 + art_sys_171: -2.37094252e-23 + art_sys_172: 1.52646753e-22 + art_sys_173: -1.63636139e-23 + art_sys_174: -1.85760233e-24 + art_sys_175: -1.95684308e-27 + art_sys_176: -9.86263668e-25 + art_sys_177: -1.06730351e-25 + art_sys_178: 8.20602642e-26 + art_sys_179: 2.25456261e-26 + art_sys_180: 5.75000714e-25 + art_sys_181: -3.21262820e-27 + art_sys_182: -1.55590211e-25 + art_sys_183: -2.79675797e-27 + art_sys_184: -1.18390193e-30 + art_sys_185: -1.53403670e-29 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -22670,167 +22670,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: 4.76819712e-13 + art_sys_25: -4.76819712e-13 art_sys_26: 2.91916793e-11 - art_sys_27: -3.81846546e-11 - art_sys_28: -1.37435402e-10 - art_sys_29: 3.62784507e-09 - art_sys_30: 8.09399085e-27 - art_sys_31: -1.49079924e-26 - art_sys_32: 1.45766719e-08 - art_sys_33: 1.47673737e-08 - art_sys_34: 6.37173571e-26 - art_sys_35: 2.27543950e-26 - art_sys_36: -4.95312312e-26 - art_sys_37: -3.56844066e-26 + art_sys_27: 3.81846546e-11 + art_sys_28: 1.02522876e-31 + art_sys_29: -1.29602876e-29 + art_sys_30: 1.37435402e-10 + art_sys_31: -3.62784507e-09 + art_sys_32: -1.45766719e-08 + art_sys_33: -1.47673737e-08 + art_sys_34: 6.88678842e-26 + art_sys_35: 3.77206309e-26 + art_sys_36: -4.32968115e-28 + art_sys_37: 7.08180113e-27 art_sys_38: -2.49468354e-08 - art_sys_39: 2.88735831e-25 - art_sys_40: 9.93261566e-26 - art_sys_41: 6.18132560e-26 - art_sys_42: 6.49324873e-26 + art_sys_39: -1.57431177e-25 + art_sys_40: 9.32059503e-26 + art_sys_41: 7.33651403e-26 + art_sys_42: 9.14075436e-25 art_sys_43: 4.99845581e-08 art_sys_44: -2.55462954e-06 art_sys_45: 4.59701409e-06 - art_sys_46: -9.25823765e-23 - art_sys_47: 1.94988745e-22 - art_sys_48: 3.13134945e-22 - art_sys_49: 2.57390653e-06 - art_sys_50: -1.25788262e-19 - art_sys_51: 2.31778464e-14 - art_sys_52: 5.03678810e-14 - art_sys_53: 4.20271378e-05 - art_sys_54: -1.74750450e-17 - art_sys_55: 6.25184170e-15 - art_sys_56: 1.49254976e-14 - art_sys_57: -8.12388000e-18 - art_sys_58: -1.46291627e-21 - art_sys_59: -1.17709692e-14 - art_sys_60: -3.27411999e-15 - art_sys_61: -3.27404658e-15 - art_sys_62: -1.28768515e-16 - art_sys_63: -1.02265194e-15 - art_sys_64: -6.62528367e-05 - art_sys_65: 1.12965624e-16 - art_sys_66: -8.36733529e-17 - art_sys_67: -3.56653357e-17 - art_sys_68: -6.85978456e-05 - art_sys_69: 4.11031690e-04 - art_sys_70: -2.12452752e-16 - art_sys_71: 5.86521776e-16 - art_sys_72: 1.75022210e-04 - art_sys_73: 2.38847525e-17 - art_sys_74: -9.83004724e-16 - art_sys_75: -2.70436357e-18 - art_sys_76: 2.04981912e-17 - art_sys_77: 4.09910279e-19 - art_sys_78: 4.23938077e-15 - art_sys_79: 3.60746975e-13 - art_sys_80: -1.80181029e-18 - art_sys_81: -1.64521847e-18 - art_sys_82: -4.96359738e-18 - art_sys_83: 4.90308444e-04 - art_sys_84: 3.93408857e-13 - art_sys_85: -2.23344898e-14 - art_sys_86: 3.00643051e-04 - art_sys_87: -1.16397934e-13 - art_sys_88: 1.79137657e-19 - art_sys_89: -1.22215239e-04 - art_sys_90: 7.28497447e-16 - art_sys_91: -1.24148785e-14 - art_sys_92: 2.03950108e-12 - art_sys_93: -1.36471597e-04 - art_sys_94: 8.81150544e-05 - art_sys_95: 2.16795536e-12 - art_sys_96: 1.27942750e-14 - art_sys_97: 5.06994812e-11 - art_sys_98: 2.18474256e-10 - art_sys_99: 4.85561750e-05 - art_sys_100: 3.35892844e-20 - art_sys_101: -2.82147335e-20 - art_sys_102: -9.74014538e-11 - art_sys_103: 2.20431682e-05 - art_sys_104: -7.52088843e-11 - art_sys_105: 9.07422525e-06 - art_sys_106: -7.64233568e-11 - art_sys_107: 1.57148795e-10 - art_sys_108: -3.56571749e-06 - art_sys_109: 4.00802264e-10 - art_sys_110: -1.18458404e-11 - art_sys_111: -1.25906292e-06 - art_sys_112: -1.58076143e-13 - art_sys_113: 1.98695973e-11 - art_sys_114: -1.50792820e-11 - art_sys_115: -2.27905870e-12 - art_sys_116: -1.70880744e-12 - art_sys_117: 9.88678836e-17 - art_sys_118: -6.26726695e-12 - art_sys_119: -4.65734367e-07 - art_sys_120: 1.56409601e-07 - art_sys_121: -5.21322178e-08 - art_sys_122: 1.61550092e-08 - art_sys_123: 1.99155946e-10 - art_sys_124: -4.78292191e-09 - art_sys_125: -1.95714133e-11 - art_sys_126: 1.61607793e-09 - art_sys_127: 1.12835918e-11 - art_sys_128: -2.18024902e-10 - art_sys_129: 1.30941105e-13 - art_sys_130: 2.41183249e-12 - art_sys_131: 9.11669384e-13 - art_sys_132: 2.91193517e-18 - art_sys_133: 3.21412376e-15 - art_sys_134: 2.65827840e-11 - art_sys_135: 2.58878960e-21 - art_sys_136: -4.34952317e-21 - art_sys_137: -1.17527467e-20 - art_sys_138: -2.03494370e-21 - art_sys_139: -1.00152592e-20 - art_sys_140: 5.93579247e-22 - art_sys_141: -8.24337534e-16 - art_sys_142: 9.97500464e-24 - art_sys_143: -4.90874340e-19 - art_sys_144: -4.92098072e-17 - art_sys_145: 1.42423766e-17 - art_sys_146: -1.10045420e-17 - art_sys_147: 4.27383997e-18 - art_sys_148: 2.22825907e-18 - art_sys_149: -9.61804739e-19 - art_sys_150: 7.34570906e-19 - art_sys_151: 6.37928314e-20 - art_sys_152: 4.63083141e-21 - art_sys_153: 2.86461239e-20 - art_sys_154: -1.20218922e-20 - art_sys_155: 9.92451193e-21 - art_sys_156: 2.25207776e-22 - art_sys_157: -5.65645502e-21 - art_sys_158: -1.43193038e-21 - art_sys_159: 2.67211544e-22 - art_sys_160: 1.88218319e-22 - art_sys_161: -1.30629618e-24 - art_sys_162: -1.03302188e-24 - art_sys_163: 1.18725091e-24 - art_sys_164: 3.64293139e-24 - art_sys_165: 3.38379856e-24 - art_sys_166: -1.27296185e-24 - art_sys_167: -2.78692624e-23 - art_sys_168: 2.62495988e-14 - art_sys_169: -1.38921977e-24 - art_sys_170: 1.52945305e-15 - art_sys_171: -6.41349847e-15 - art_sys_172: -3.60927351e-24 - art_sys_173: 1.37462947e-26 - art_sys_174: 5.95647883e-16 - art_sys_175: 0.0 - art_sys_176: 8.39552576e-18 - art_sys_177: 0.0 - art_sys_178: -1.08080942e-19 - art_sys_179: 4.09804350e-23 - art_sys_180: 2.34740522e-26 - art_sys_181: 9.92537235e-32 - art_sys_182: 0.0 - art_sys_183: -2.61106623e-29 - art_sys_184: -1.50918108e-29 - art_sys_185: -3.80082053e-32 + art_sys_46: -5.52810777e-23 + art_sys_47: -3.81920469e-23 + art_sys_48: -5.55754882e-19 + art_sys_49: -6.89346518e-14 + art_sys_50: -1.05483682e-15 + art_sys_51: 1.20448748e-14 + art_sys_52: 4.90139899e-15 + art_sys_53: -1.20116782e-15 + art_sys_54: -1.21714321e-15 + art_sys_55: -2.57390653e-06 + art_sys_56: -4.20271378e-05 + art_sys_57: -1.95039860e-16 + art_sys_58: -1.05673361e-15 + art_sys_59: -2.41285626e-15 + art_sys_60: -1.04573662e-15 + art_sys_61: 5.37269322e-15 + art_sys_62: 2.50324280e-16 + art_sys_63: -6.62528367e-05 + art_sys_64: -2.57664141e-20 + art_sys_65: 3.20201551e-16 + art_sys_66: -4.67313594e-16 + art_sys_67: 1.17464428e-15 + art_sys_68: -6.85977935e-05 + art_sys_69: 4.11031693e-04 + art_sys_70: 1.28219923e-14 + art_sys_71: 9.52852790e-17 + art_sys_72: 3.74352812e-17 + art_sys_73: 8.47406036e-14 + art_sys_74: -5.17097619e-15 + art_sys_75: -8.30258596e-15 + art_sys_76: -1.81999308e-14 + art_sys_77: 3.64337742e-13 + art_sys_78: 1.75022211e-04 + art_sys_79: 4.44708328e-15 + art_sys_80: 5.92730835e-11 + art_sys_81: 1.32852983e-16 + art_sys_82: -5.06887030e-17 + art_sys_83: -6.84800316e-14 + art_sys_84: 3.69933032e-16 + art_sys_85: -9.51646793e-17 + art_sys_86: 1.72249791e-12 + art_sys_87: 1.49104549e-14 + art_sys_88: -6.64416877e-13 + art_sys_89: 1.42788877e-14 + art_sys_90: -1.58727894e-14 + art_sys_91: -4.90308077e-04 + art_sys_92: -5.88507539e-15 + art_sys_93: -1.22846829e-14 + art_sys_94: 7.85500252e-13 + art_sys_95: -3.00643263e-04 + art_sys_96: 3.49303787e-13 + art_sys_97: -1.22216123e-04 + art_sys_98: 2.46757503e-12 + art_sys_99: -9.69836292e-16 + art_sys_100: 1.36475605e-04 + art_sys_101: -1.28323402e-10 + art_sys_102: 1.12746780e-10 + art_sys_103: 8.81150380e-05 + art_sys_104: 9.12741674e-14 + art_sys_105: 4.77807805e-12 + art_sys_106: 2.15899332e-10 + art_sys_107: -8.92480354e-12 + art_sys_108: 5.63794823e-13 + art_sys_109: 3.22353184e-12 + art_sys_110: 4.85550149e-05 + art_sys_111: 1.50840781e-10 + art_sys_112: 2.20432127e-05 + art_sys_113: -9.10447008e-13 + art_sys_114: -4.99992956e-10 + art_sys_115: 9.07409084e-06 + art_sys_116: -8.83607523e-10 + art_sys_117: 1.70635992e-10 + art_sys_118: 3.56560407e-06 + art_sys_119: -1.65785121e-10 + art_sys_120: -7.65752025e-11 + art_sys_121: -1.25930750e-06 + art_sys_122: -1.05008160e-10 + art_sys_123: 6.25574708e-11 + art_sys_124: 4.65635606e-07 + art_sys_125: 1.94622559e-10 + art_sys_126: 1.56290659e-07 + art_sys_127: 2.40088855e-11 + art_sys_128: 5.22395551e-08 + art_sys_129: 4.82652437e-11 + art_sys_130: 1.62215008e-08 + art_sys_131: 5.25758420e-12 + art_sys_132: -7.67159081e-11 + art_sys_133: 4.71526833e-09 + art_sys_134: 2.78009842e-14 + art_sys_135: -7.43162065e-11 + art_sys_136: -1.60147463e-09 + art_sys_137: -4.35154611e-15 + art_sys_138: 4.44456900e-13 + art_sys_139: 3.96452400e-12 + art_sys_140: 2.27966340e-10 + art_sys_141: 5.11257127e-11 + art_sys_142: 7.24408550e-12 + art_sys_143: -1.15238850e-15 + art_sys_144: -1.66877623e-15 + art_sys_145: -1.36058849e-14 + art_sys_146: 0.0 + art_sys_147: -2.81687990e-13 + art_sys_148: 3.34680551e-12 + art_sys_149: 3.34680551e-12 + art_sys_150: -1.12844486e-12 + art_sys_151: -1.12844486e-12 + art_sys_152: 5.14397447e-12 + art_sys_153: -4.68957090e-14 + art_sys_154: -2.96438853e-16 + art_sys_155: -1.08604222e-24 + art_sys_156: -1.01772771e-27 + art_sys_157: -7.29380470e-28 + art_sys_158: 0.0 + art_sys_159: -4.99499019e-11 + art_sys_160: -1.55915798e-12 + art_sys_161: -1.63458130e-11 + art_sys_162: -3.82124275e-13 + art_sys_163: 3.97154663e-13 + art_sys_164: 7.71458613e-13 + art_sys_165: 9.00879931e-15 + art_sys_166: -1.65859182e-21 + art_sys_167: -1.85198731e-21 + art_sys_168: 3.29512860e-22 + art_sys_169: -9.52135011e-23 + art_sys_170: -3.44317322e-23 + art_sys_171: 5.08941310e-23 + art_sys_172: -3.30308720e-22 + art_sys_173: 3.53250194e-23 + art_sys_174: 4.00147632e-24 + art_sys_175: 4.17742592e-27 + art_sys_176: 2.12303034e-24 + art_sys_177: 2.18938705e-25 + art_sys_178: -1.76231248e-25 + art_sys_179: -5.33431310e-26 + art_sys_180: -1.26271800e-24 + art_sys_181: 7.36406299e-27 + art_sys_182: 3.37818476e-25 + art_sys_183: 6.05852985e-27 + art_sys_184: 2.77898713e-30 + art_sys_185: 3.35828158e-29 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -22961,167 +22961,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: -1.40644714e-13 + art_sys_25: 1.40644714e-13 art_sys_26: 1.50443611e-12 - art_sys_27: -8.96264410e-13 - art_sys_28: -1.55579318e-11 - art_sys_29: 2.33346837e-10 - art_sys_30: 5.21568762e-28 - art_sys_31: -1.05491138e-27 - art_sys_32: 1.63280322e-09 - art_sys_33: 1.02209831e-09 - art_sys_34: -5.62655608e-27 - art_sys_35: 5.37482345e-27 - art_sys_36: -2.41790844e-27 - art_sys_37: -4.08472750e-27 + art_sys_27: 8.96264410e-13 + art_sys_28: -3.55824016e-31 + art_sys_29: -2.38587898e-31 + art_sys_30: 1.55579318e-11 + art_sys_31: -2.33346837e-10 + art_sys_32: -1.63280322e-09 + art_sys_33: -1.02209831e-09 + art_sys_34: 6.98803669e-27 + art_sys_35: 2.66810404e-27 + art_sys_36: -3.05383995e-27 + art_sys_37: 3.81032018e-28 art_sys_38: -3.51619695e-09 - art_sys_39: 4.44741401e-26 - art_sys_40: 1.42125331e-26 - art_sys_41: 9.52021806e-27 - art_sys_42: 4.88135775e-26 + art_sys_39: -1.95369804e-26 + art_sys_40: 1.28838789e-26 + art_sys_41: 1.11940933e-26 + art_sys_42: 4.69306583e-25 art_sys_43: 2.55552477e-08 art_sys_44: -1.82136188e-07 art_sys_45: 4.43470704e-07 - art_sys_46: -8.58864698e-24 - art_sys_47: 1.46693861e-23 - art_sys_48: 3.00707660e-23 - art_sys_49: 3.62967094e-06 - art_sys_50: 1.85021104e-21 - art_sys_51: -1.02695057e-13 - art_sys_52: -8.36823098e-15 - art_sys_53: -6.44777277e-07 - art_sys_54: 2.68104085e-19 - art_sys_55: -9.59154083e-17 - art_sys_56: -2.28985953e-16 - art_sys_57: 1.24107628e-19 - art_sys_58: -3.95908228e-22 - art_sys_59: 1.02256241e-15 - art_sys_60: -1.04201670e-15 - art_sys_61: 5.69394513e-17 - art_sys_62: 1.34727329e-15 - art_sys_63: 5.67876516e-16 - art_sys_64: -1.14166053e-05 - art_sys_65: 2.59510781e-16 - art_sys_66: 6.53895472e-17 - art_sys_67: 1.03880933e-16 - art_sys_68: 3.25255342e-05 - art_sys_69: 4.37590547e-05 - art_sys_70: -3.52938206e-17 - art_sys_71: 1.04428990e-16 - art_sys_72: 6.83328645e-05 - art_sys_73: 3.45143241e-18 - art_sys_74: -3.61863624e-16 - art_sys_75: -1.60395898e-18 - art_sys_76: -1.39121584e-17 - art_sys_77: 9.39756322e-18 - art_sys_78: 2.16797573e-15 - art_sys_79: -8.96363538e-14 - art_sys_80: -6.83235759e-18 - art_sys_81: -8.86600673e-19 - art_sys_82: 1.38260085e-18 - art_sys_83: -4.87034745e-05 - art_sys_84: 1.53590608e-13 - art_sys_85: 1.07862333e-14 - art_sys_86: 5.49372246e-04 - art_sys_87: -4.54687031e-14 - art_sys_88: -2.83496423e-19 - art_sys_89: 6.87390591e-05 - art_sys_90: 2.96536666e-16 - art_sys_91: 3.12150582e-14 - art_sys_92: 1.94807670e-12 - art_sys_93: 5.78222977e-05 - art_sys_94: -8.85764475e-05 - art_sys_95: 3.41083126e-12 - art_sys_96: 4.81933526e-15 - art_sys_97: 8.95351527e-11 - art_sys_98: -1.57194497e-10 - art_sys_99: -5.82486575e-05 - art_sys_100: -5.77902001e-20 - art_sys_101: -1.26248152e-20 - art_sys_102: 5.15252987e-11 - art_sys_103: -3.09326581e-05 - art_sys_104: 2.36378401e-11 - art_sys_105: -1.39822290e-05 - art_sys_106: 3.11037257e-11 - art_sys_107: -6.58313178e-11 - art_sys_108: 5.84326971e-06 - art_sys_109: -1.76514244e-10 - art_sys_110: 1.82429594e-11 - art_sys_111: 2.16100320e-06 - art_sys_112: 3.50287297e-12 - art_sys_113: -1.37011685e-11 - art_sys_114: 7.75853853e-12 - art_sys_115: 3.75097917e-12 - art_sys_116: 5.72292584e-12 - art_sys_117: 1.30310457e-16 - art_sys_118: 8.18412326e-12 - art_sys_119: 8.23241913e-07 - art_sys_120: -2.82439897e-07 - art_sys_121: 9.55583528e-08 - art_sys_122: -2.99110798e-08 - art_sys_123: -3.42743921e-10 - art_sys_124: 8.91738255e-09 - art_sys_125: 3.15417259e-11 - art_sys_126: -3.02601482e-09 - art_sys_127: -1.95872569e-11 - art_sys_128: 4.09981136e-10 - art_sys_129: -2.28189873e-13 - art_sys_130: -3.95426537e-12 - art_sys_131: -1.67766346e-12 - art_sys_132: -5.18617309e-18 - art_sys_133: -6.06053529e-15 - art_sys_134: -5.00671427e-11 - art_sys_135: -5.84227332e-21 - art_sys_136: 2.43441024e-20 - art_sys_137: 5.44556227e-21 - art_sys_138: 8.11569335e-21 - art_sys_139: 2.09105022e-20 - art_sys_140: -1.53877508e-21 - art_sys_141: 1.55337709e-15 - art_sys_142: -3.60550053e-22 - art_sys_143: 9.25833255e-19 - art_sys_144: 9.12530272e-17 - art_sys_145: -3.12043353e-17 - art_sys_146: 2.15649227e-17 - art_sys_147: -5.24850595e-18 - art_sys_148: -2.49304993e-18 - art_sys_149: 1.12380142e-18 - art_sys_150: -1.27038099e-18 - art_sys_151: -2.17828196e-19 - art_sys_152: -8.47569590e-21 - art_sys_153: -5.28060282e-20 - art_sys_154: 2.21661267e-20 - art_sys_155: -1.82703253e-20 - art_sys_156: -4.10647500e-22 - art_sys_157: 1.04310714e-20 - art_sys_158: 2.63658202e-21 - art_sys_159: -4.94376280e-22 - art_sys_160: -3.45580897e-22 - art_sys_161: 2.09036249e-24 - art_sys_162: 1.85861383e-24 - art_sys_163: -2.05611084e-24 - art_sys_164: -7.73044233e-24 - art_sys_165: -6.17701632e-24 - art_sys_166: 2.15533611e-24 - art_sys_167: 4.59055350e-23 - art_sys_168: -4.94784553e-14 - art_sys_169: 2.35688940e-24 - art_sys_170: -2.88295274e-15 - art_sys_171: 1.20887234e-14 - art_sys_172: 6.70262716e-24 - art_sys_173: -2.40956054e-26 - art_sys_174: -1.12273684e-15 - art_sys_175: 0.0 - art_sys_176: -1.58251241e-17 - art_sys_177: 0.0 - art_sys_178: 2.03776600e-19 - art_sys_179: -7.72206915e-23 - art_sys_180: -4.20016494e-26 - art_sys_181: -1.71694568e-31 - art_sys_182: 0.0 - art_sys_183: 4.91130627e-29 - art_sys_184: 2.22819289e-29 - art_sys_185: 6.65651867e-32 + art_sys_46: -5.01905005e-24 + art_sys_47: -3.39607989e-24 + art_sys_48: -7.83608200e-19 + art_sys_49: -1.32082194e-14 + art_sys_50: 1.40689202e-15 + art_sys_51: 1.36759290e-14 + art_sys_52: 2.54261090e-15 + art_sys_53: 1.02620249e-15 + art_sys_54: -3.81881474e-17 + art_sys_55: -3.62967094e-06 + art_sys_56: 6.44777277e-07 + art_sys_57: -2.75106187e-16 + art_sys_58: 1.45923236e-15 + art_sys_59: 4.19017659e-15 + art_sys_60: 1.60464173e-17 + art_sys_61: -8.25048031e-17 + art_sys_62: -3.84039676e-18 + art_sys_63: -1.14166053e-05 + art_sys_64: -8.70903647e-23 + art_sys_65: -6.15286284e-16 + art_sys_66: 9.68814520e-16 + art_sys_67: 2.02411326e-16 + art_sys_68: 3.25255374e-05 + art_sys_69: 4.37590541e-05 + art_sys_70: 2.20940971e-15 + art_sys_71: 2.19486070e-17 + art_sys_72: 4.78114538e-17 + art_sys_73: -2.92816895e-16 + art_sys_74: 1.55036303e-14 + art_sys_75: 1.43854194e-15 + art_sys_76: -5.30904232e-15 + art_sys_77: -1.29524284e-14 + art_sys_78: 6.83328647e-05 + art_sys_79: 5.04798567e-15 + art_sys_80: -5.88817138e-12 + art_sys_81: 1.80475621e-16 + art_sys_82: -4.31406170e-17 + art_sys_83: 2.78687793e-14 + art_sys_84: -2.78668208e-17 + art_sys_85: 4.09337959e-16 + art_sys_86: -1.98793540e-12 + art_sys_87: 2.31759622e-15 + art_sys_88: 8.96250030e-13 + art_sys_89: -2.64248456e-14 + art_sys_90: -1.69887378e-15 + art_sys_91: 4.87038665e-05 + art_sys_92: -4.48131206e-15 + art_sys_93: 1.40906677e-14 + art_sys_94: 3.03746548e-13 + art_sys_95: -5.49372277e-04 + art_sys_96: -5.72342404e-13 + art_sys_97: 6.87395237e-05 + art_sys_98: -3.20410670e-13 + art_sys_99: -2.46725603e-16 + art_sys_100: -5.78239783e-05 + art_sys_101: 1.13047839e-11 + art_sys_102: -7.35089993e-12 + art_sys_103: -8.85764181e-05 + art_sys_104: 4.46298490e-14 + art_sys_105: 2.91455994e-12 + art_sys_106: -1.00227899e-10 + art_sys_107: 1.53165239e-11 + art_sys_108: -9.69273905e-13 + art_sys_109: -5.66428079e-12 + art_sys_110: -5.82472805e-05 + art_sys_111: -6.30709513e-11 + art_sys_112: -3.09327127e-05 + art_sys_113: 1.63277774e-12 + art_sys_114: 2.32157334e-10 + art_sys_115: -1.39820223e-05 + art_sys_116: 1.05835652e-09 + art_sys_117: -6.64944310e-11 + art_sys_118: -5.84307695e-06 + art_sys_119: 5.02526323e-11 + art_sys_120: 9.39270592e-11 + art_sys_121: 2.16144131e-06 + art_sys_122: 1.16114644e-10 + art_sys_123: -7.63326935e-11 + art_sys_124: -8.23067644e-07 + art_sys_125: -2.82677314e-10 + art_sys_126: -2.82226361e-07 + art_sys_127: -3.12342304e-11 + art_sys_128: -9.57479225e-08 + art_sys_129: -5.42373710e-11 + art_sys_130: -3.00322507e-08 + art_sys_131: -1.37045424e-11 + art_sys_132: 1.18157738e-10 + art_sys_133: -8.79947161e-09 + art_sys_134: -5.59324974e-14 + art_sys_135: 1.20761974e-10 + art_sys_136: 2.99878790e-09 + art_sys_137: 7.56744879e-15 + art_sys_138: -3.19326404e-14 + art_sys_139: -7.51628537e-12 + art_sys_140: -4.29620621e-10 + art_sys_141: -9.01643927e-11 + art_sys_142: -1.05160359e-11 + art_sys_143: 2.32186414e-15 + art_sys_144: 3.16964443e-15 + art_sys_145: 2.56106095e-14 + art_sys_146: -0.0 + art_sys_147: 5.03680413e-13 + art_sys_148: -5.86019921e-12 + art_sys_149: -5.86019921e-12 + art_sys_150: 1.87740511e-12 + art_sys_151: 1.87740511e-12 + art_sys_152: -8.38746824e-12 + art_sys_153: 5.51331706e-14 + art_sys_154: 5.27160343e-16 + art_sys_155: 1.75070995e-24 + art_sys_156: 1.37401714e-27 + art_sys_157: 1.10099039e-27 + art_sys_158: -0.0 + art_sys_159: 8.97391972e-11 + art_sys_160: 2.77563749e-12 + art_sys_161: 3.01609111e-11 + art_sys_162: 7.02288909e-13 + art_sys_163: -9.55293712e-13 + art_sys_164: -1.43687545e-12 + art_sys_165: -1.60623516e-14 + art_sys_166: 3.08231053e-21 + art_sys_167: 3.41030249e-21 + art_sys_168: -6.21201943e-22 + art_sys_169: 1.71979061e-22 + art_sys_170: 6.17359714e-23 + art_sys_171: -9.24523506e-23 + art_sys_172: 6.07234864e-22 + art_sys_173: -6.46988343e-23 + art_sys_174: -7.29868854e-24 + art_sys_175: -7.53383257e-27 + art_sys_176: -3.87183307e-24 + art_sys_177: -3.68931192e-25 + art_sys_178: 3.20654195e-25 + art_sys_179: 1.10850264e-25 + art_sys_180: 2.37465729e-24 + art_sys_181: -1.47302031e-26 + art_sys_182: -6.24192507e-25 + art_sys_183: -1.11558153e-26 + art_sys_184: -5.67372581e-30 + art_sys_185: -6.28674655e-29 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -23252,167 +23252,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: -2.44942889e-14 + art_sys_25: 2.44942889e-14 art_sys_26: -2.99826674e-14 - art_sys_27: 3.38720262e-13 - art_sys_28: -1.84461428e-12 - art_sys_29: 2.69171659e-11 - art_sys_30: 6.02432885e-29 - art_sys_31: -1.14441233e-28 - art_sys_32: 1.36339122e-10 - art_sys_33: 1.89819955e-10 - art_sys_34: -3.79583817e-28 - art_sys_35: -3.02327997e-29 - art_sys_36: -6.32859513e-28 - art_sys_37: -1.19045750e-28 + art_sys_27: -3.38720262e-13 + art_sys_28: -1.01344963e-31 + art_sys_29: 1.30851661e-31 + art_sys_30: 1.84461428e-12 + art_sys_31: -2.69171659e-11 + art_sys_32: -1.36339122e-10 + art_sys_33: -1.89819955e-10 + art_sys_34: 6.48818567e-28 + art_sys_35: 4.99055267e-28 + art_sys_36: 8.67426205e-29 + art_sys_37: 9.38813456e-29 art_sys_38: 8.71482329e-11 - art_sys_39: -1.89591399e-27 - art_sys_40: -5.70670454e-28 - art_sys_41: -7.32654566e-29 - art_sys_42: -1.61865847e-26 + art_sys_39: -3.07217737e-29 + art_sys_40: -1.90867406e-28 + art_sys_41: -3.59942966e-28 + art_sys_42: -1.38843922e-25 art_sys_43: -7.52180847e-09 art_sys_44: 3.47079233e-08 art_sys_45: -1.21506716e-07 - art_sys_46: 2.35478041e-24 - art_sys_47: -5.26559628e-24 - art_sys_48: -8.19599955e-24 - art_sys_49: 6.39759902e-07 - art_sys_50: 8.34161626e-21 - art_sys_51: -6.03180610e-14 - art_sys_52: 1.75574090e-14 - art_sys_53: -2.79280609e-06 - art_sys_54: 1.16126196e-18 - art_sys_55: -4.15450196e-16 - art_sys_56: -9.91835832e-16 - art_sys_57: 5.39839094e-19 - art_sys_58: 6.10741756e-23 - art_sys_59: -2.20598158e-14 - art_sys_60: 4.69829985e-15 - art_sys_61: 1.70048877e-15 - art_sys_62: -8.24585563e-16 - art_sys_63: 1.11401475e-15 - art_sys_64: 2.79855429e-06 - art_sys_65: 4.95801650e-16 - art_sys_66: -5.62055144e-17 - art_sys_67: 4.27281828e-17 - art_sys_68: 1.12840811e-05 - art_sys_69: -2.90563566e-05 - art_sys_70: 9.22874655e-18 - art_sys_71: -2.41370433e-17 - art_sys_72: -8.41069825e-06 - art_sys_73: -5.19049590e-19 - art_sys_74: 2.82945531e-17 - art_sys_75: -4.21895285e-18 - art_sys_76: -3.57617223e-18 - art_sys_77: 3.35948417e-18 - art_sys_78: -2.23003607e-17 - art_sys_79: -4.61883732e-14 - art_sys_80: 2.86641134e-18 - art_sys_81: -1.32872674e-18 - art_sys_82: -1.70417525e-18 - art_sys_83: -1.42816871e-04 - art_sys_84: -1.89053597e-14 - art_sys_85: 3.70553185e-15 - art_sys_86: 1.17718802e-04 - art_sys_87: 5.58328382e-15 - art_sys_88: 2.49367860e-19 - art_sys_89: 3.81916274e-04 - art_sys_90: -8.79502999e-17 - art_sys_91: 6.13299907e-15 - art_sys_92: 1.67365547e-13 - art_sys_93: -1.61827087e-05 - art_sys_94: 4.34177509e-05 - art_sys_95: 6.54171254e-13 - art_sys_96: -6.33801226e-16 - art_sys_97: 2.04162072e-11 - art_sys_98: -7.86979814e-10 - art_sys_99: 6.82741446e-05 - art_sys_100: 1.18677256e-19 - art_sys_101: -2.03486094e-20 - art_sys_102: 3.06406554e-10 - art_sys_103: 4.35524781e-05 - art_sys_104: 3.02568232e-10 - art_sys_105: 2.28965056e-05 - art_sys_106: -1.66481067e-11 - art_sys_107: -2.73154337e-11 - art_sys_108: -1.04802757e-05 - art_sys_109: 4.75165831e-11 - art_sys_110: -2.65277319e-11 - art_sys_111: -4.11621826e-06 - art_sys_112: -4.76724890e-12 - art_sys_113: 1.06684862e-11 - art_sys_114: -3.41622067e-12 - art_sys_115: -6.60945505e-12 - art_sys_116: -9.57999901e-12 - art_sys_117: 2.15553973e-17 - art_sys_118: -1.19990741e-11 - art_sys_119: -1.63865266e-06 - art_sys_120: 5.78973294e-07 - art_sys_121: -1.99973164e-07 - art_sys_122: 6.35672105e-08 - art_sys_123: 6.54955510e-10 - art_sys_124: -1.91235996e-08 - art_sys_125: -5.53350817e-11 - art_sys_126: 6.53448964e-09 - art_sys_127: 3.77309117e-11 - art_sys_128: -8.90754807e-10 - art_sys_129: 4.44507738e-13 - art_sys_130: 7.13413009e-12 - art_sys_131: 3.46694728e-12 - art_sys_132: 1.05075976e-17 - art_sys_133: 1.32279873e-14 - art_sys_134: 1.09009668e-10 - art_sys_135: 1.03249716e-20 - art_sys_136: -1.16455480e-20 - art_sys_137: -1.88495711e-20 - art_sys_138: -1.33276813e-20 - art_sys_139: -3.91063924e-20 - art_sys_140: 2.70798822e-21 - art_sys_141: -3.38644002e-15 - art_sys_142: 3.79343618e-22 - art_sys_143: -2.01803364e-18 - art_sys_144: -1.92890727e-16 - art_sys_145: 6.17930678e-17 - art_sys_146: -3.08878012e-17 - art_sys_147: 1.08358073e-17 - art_sys_148: 4.97665043e-18 - art_sys_149: -2.32493110e-18 - art_sys_150: 2.59320145e-18 - art_sys_151: 5.62851008e-19 - art_sys_152: 1.83337023e-20 - art_sys_153: 1.11468693e-19 - art_sys_154: -4.67654599e-20 - art_sys_155: 3.84708131e-20 - art_sys_156: 8.50727838e-22 - art_sys_157: -2.20218920e-20 - art_sys_158: -5.55430670e-21 - art_sys_159: 1.04718291e-21 - art_sys_160: 7.26144847e-22 - art_sys_161: -3.61347541e-24 - art_sys_162: -3.80732752e-24 - art_sys_163: 3.99654329e-24 - art_sys_164: 1.89994244e-23 - art_sys_165: 1.27983781e-23 - art_sys_166: -4.03642230e-24 - art_sys_167: -8.27277239e-23 - art_sys_168: 1.07943925e-13 - art_sys_169: -4.46524523e-24 - art_sys_170: 6.28981848e-15 - art_sys_171: -2.63716727e-14 - art_sys_172: -1.42714912e-23 - art_sys_173: 4.80012866e-26 - art_sys_174: 2.44929951e-15 - art_sys_175: 0.0 - art_sys_176: 3.45238297e-17 - art_sys_177: 0.0 - art_sys_178: -4.44686428e-19 - art_sys_179: 1.68377188e-22 - art_sys_180: 8.55601766e-26 - art_sys_181: 3.24246230e-31 - art_sys_182: 0.0 - art_sys_183: -1.06840462e-28 - art_sys_184: -3.40533241e-29 - art_sys_185: -1.29919358e-31 + art_sys_46: 1.24244521e-24 + art_sys_47: 9.31911204e-25 + art_sys_48: -1.38114442e-19 + art_sys_49: 5.48820225e-14 + art_sys_50: -5.06071786e-14 + art_sys_51: 1.24020633e-16 + art_sys_52: -3.85721251e-15 + art_sys_53: -8.46769210e-16 + art_sys_54: -1.43263419e-15 + art_sys_55: -6.39759902e-07 + art_sys_56: 2.79280609e-06 + art_sys_57: -4.84926563e-17 + art_sys_58: -3.45130821e-15 + art_sys_59: -8.70804669e-15 + art_sys_60: 6.94923947e-17 + art_sys_61: -3.57045689e-16 + art_sys_62: -1.66346397e-17 + art_sys_63: 2.79855429e-06 + art_sys_64: 1.65802679e-21 + art_sys_65: 1.35818877e-15 + art_sys_66: -1.91298214e-15 + art_sys_67: -4.96184102e-17 + art_sys_68: 1.12840771e-05 + art_sys_69: -2.90563569e-05 + art_sys_70: -5.41619773e-16 + art_sys_71: -2.97787852e-18 + art_sys_72: 6.31516608e-18 + art_sys_73: -8.91479943e-14 + art_sys_74: -4.09010654e-14 + art_sys_75: -6.16996635e-15 + art_sys_76: -2.16391490e-15 + art_sys_77: -3.84413511e-14 + art_sys_78: -8.41069828e-06 + art_sys_79: -2.24874633e-15 + art_sys_80: -1.72634744e-11 + art_sys_81: 7.53477680e-16 + art_sys_82: -4.39933486e-16 + art_sys_83: -3.17672466e-14 + art_sys_84: 3.42377433e-16 + art_sys_85: 2.12169310e-16 + art_sys_86: 2.05485745e-12 + art_sys_87: -9.36098828e-16 + art_sys_88: -1.21170552e-12 + art_sys_89: 5.49248059e-14 + art_sys_90: 1.11821348e-15 + art_sys_91: 1.42816916e-04 + art_sys_92: 1.08720502e-16 + art_sys_93: 3.35626222e-15 + art_sys_94: -3.92049810e-14 + art_sys_95: -1.17718940e-04 + art_sys_96: 1.02635363e-12 + art_sys_97: 3.81918759e-04 + art_sys_98: -7.52657997e-13 + art_sys_99: -3.83106130e-17 + art_sys_100: 1.61831861e-05 + art_sys_101: 3.68673799e-11 + art_sys_102: -3.14753757e-11 + art_sys_103: 4.34177206e-05 + art_sys_104: -5.26495532e-15 + art_sys_105: -1.07839190e-12 + art_sys_106: 1.42601914e-10 + art_sys_107: -2.91706144e-11 + art_sys_108: 1.85104222e-12 + art_sys_109: 1.11789251e-11 + art_sys_110: 6.82725828e-05 + art_sys_111: -3.29349854e-10 + art_sys_112: 4.35525344e-05 + art_sys_113: -3.31666321e-12 + art_sys_114: 9.23205857e-10 + art_sys_115: 2.28961678e-05 + art_sys_116: -1.23473846e-09 + art_sys_117: 3.25685725e-10 + art_sys_118: 1.04799131e-05 + art_sys_119: -8.17316625e-11 + art_sys_120: -1.12490698e-10 + art_sys_121: -4.11710531e-06 + art_sys_122: -1.48245167e-10 + art_sys_123: 9.37592578e-11 + art_sys_124: 1.63830670e-06 + art_sys_125: 4.18490917e-10 + art_sys_126: 5.78538905e-07 + art_sys_127: 4.18728706e-11 + art_sys_128: 2.00349814e-07 + art_sys_129: 5.41402330e-11 + art_sys_130: 6.38184051e-08 + art_sys_131: 3.93551377e-11 + art_sys_132: -1.98834250e-10 + art_sys_133: 1.88940375e-08 + art_sys_134: 1.31328408e-13 + art_sys_135: -2.12142216e-10 + art_sys_136: -6.47628387e-09 + art_sys_137: -1.46730578e-14 + art_sys_138: -1.25156863e-13 + art_sys_139: 1.60994547e-11 + art_sys_140: 9.35682942e-10 + art_sys_141: 1.79106546e-10 + art_sys_142: 1.40671811e-11 + art_sys_143: -5.49038772e-15 + art_sys_144: -6.96488222e-15 + art_sys_145: -5.57106211e-14 + art_sys_146: 0.0 + art_sys_147: -1.01689522e-12 + art_sys_148: 1.14887828e-11 + art_sys_149: 1.14887828e-11 + art_sys_150: -3.37396705e-12 + art_sys_151: -3.37396705e-12 + art_sys_152: 1.50399990e-11 + art_sys_153: -5.66089632e-14 + art_sys_154: -1.05072512e-15 + art_sys_155: -3.09930617e-24 + art_sys_156: -1.51315499e-27 + art_sys_157: -1.70064698e-27 + art_sys_158: 0.0 + art_sys_159: -1.82652038e-10 + art_sys_160: -5.56074665e-12 + art_sys_161: -6.37436947e-11 + art_sys_162: -1.47643863e-12 + art_sys_163: 2.66196363e-12 + art_sys_164: 3.07922325e-12 + art_sys_165: 3.24181667e-14 + art_sys_166: -6.59780551e-21 + art_sys_167: -7.30913941e-21 + art_sys_168: 1.35503869e-21 + art_sys_169: -3.62023507e-22 + art_sys_170: -1.23935563e-22 + art_sys_171: 1.91406472e-22 + art_sys_172: -1.27642165e-21 + art_sys_173: 1.35350226e-22 + art_sys_174: 1.51996086e-23 + art_sys_175: 1.54656672e-26 + art_sys_176: 8.03330724e-24 + art_sys_177: 6.79018838e-25 + art_sys_178: -6.65718074e-25 + art_sys_179: -2.70920195e-25 + art_sys_180: -5.15369842e-24 + art_sys_181: 3.45449545e-26 + art_sys_182: 1.32179742e-24 + art_sys_183: 2.35141562e-26 + art_sys_184: 1.36227761e-29 + art_sys_185: 1.35555433e-28 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -23543,167 +23543,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: -2.40470508e-15 + art_sys_25: 2.40470508e-15 art_sys_26: -1.36851745e-14 - art_sys_27: 6.40076687e-14 - art_sys_28: -2.05538946e-13 - art_sys_29: 4.66158910e-12 - art_sys_30: 1.04222142e-29 - art_sys_31: -1.60453460e-29 - art_sys_32: 4.02978104e-12 - art_sys_33: 2.89364483e-11 - art_sys_34: -1.18809511e-29 - art_sys_35: -1.06536163e-28 - art_sys_36: -1.24178211e-28 - art_sys_37: 3.21526868e-29 + art_sys_27: -6.40076687e-14 + art_sys_28: -1.56550416e-32 + art_sys_29: 2.40031044e-32 + art_sys_30: 2.05538946e-13 + art_sys_31: -4.66158910e-12 + art_sys_32: -4.02978104e-12 + art_sys_33: -2.89364483e-11 + art_sys_34: 3.93836926e-29 + art_sys_35: 7.45502329e-29 + art_sys_36: 8.69375560e-29 + art_sys_37: 1.72278945e-29 art_sys_38: 7.04253291e-11 - art_sys_39: -1.09618719e-27 - art_sys_40: -3.27179889e-28 - art_sys_41: -1.68216600e-28 - art_sys_42: -6.84103613e-27 + art_sys_39: 2.70208459e-28 + art_sys_40: -2.30951109e-28 + art_sys_41: -2.46867754e-28 + art_sys_42: -5.90548773e-26 art_sys_43: -3.20236087e-09 art_sys_44: 8.74566646e-09 art_sys_45: -3.79072572e-08 - art_sys_46: 7.20074642e-25 - art_sys_47: -1.46039410e-24 - art_sys_48: -2.55806960e-24 - art_sys_49: 3.70664342e-08 - art_sys_50: 1.84336180e-21 - art_sys_51: -5.64927572e-14 - art_sys_52: -2.00250547e-14 - art_sys_53: -6.16399893e-07 - art_sys_54: 2.56301963e-19 - art_sys_55: -9.16939592e-17 - art_sys_56: -2.18907964e-16 - art_sys_57: 1.19189811e-19 - art_sys_58: 3.55205079e-23 - art_sys_59: 1.95309948e-14 - art_sys_60: -7.65521855e-16 - art_sys_61: 2.42492933e-15 - art_sys_62: -3.33477268e-16 - art_sys_63: 2.40748387e-16 - art_sys_64: 1.10268596e-06 - art_sys_65: -5.07672926e-16 - art_sys_66: 7.96931785e-17 - art_sys_67: 1.39933272e-17 - art_sys_68: 3.14836097e-07 - art_sys_69: -7.66249811e-06 - art_sys_70: 3.51250976e-18 - art_sys_71: -9.82397805e-18 - art_sys_72: -6.62341451e-06 - art_sys_73: -2.60930022e-19 - art_sys_74: 2.46231641e-17 - art_sys_75: 2.24294952e-17 - art_sys_76: 8.20818715e-18 - art_sys_77: -7.06028664e-18 - art_sys_78: -1.20575504e-16 - art_sys_79: -3.62601806e-15 - art_sys_80: -4.08727199e-18 - art_sys_81: 1.82019105e-18 - art_sys_82: -2.48799922e-18 - art_sys_83: -1.90182575e-05 - art_sys_84: -1.48861096e-14 - art_sys_85: 9.76943964e-17 - art_sys_86: -9.10327312e-05 - art_sys_87: 4.40552018e-15 - art_sys_88: -6.79058338e-19 - art_sys_89: 1.53030165e-04 - art_sys_90: -7.90120502e-17 - art_sys_91: -5.56042262e-16 - art_sys_92: -3.74088519e-13 - art_sys_93: -2.63791312e-04 - art_sys_94: -4.76279425e-06 - art_sys_95: -5.80847214e-13 - art_sys_96: -4.73892955e-16 - art_sys_97: -1.40723084e-11 - art_sys_98: -3.38299437e-10 - art_sys_99: -3.36851404e-05 - art_sys_100: -1.86715723e-19 - art_sys_101: 4.87280459e-20 - art_sys_102: 1.41779301e-10 - art_sys_103: -5.16240019e-05 - art_sys_104: 1.80461890e-10 - art_sys_105: -3.23890954e-05 - art_sys_106: -1.55658083e-10 - art_sys_107: 2.60787811e-10 - art_sys_108: 1.72015403e-05 - art_sys_109: 7.48108069e-10 - art_sys_110: 3.47437054e-11 - art_sys_111: 7.38979289e-06 - art_sys_112: 1.14758985e-11 - art_sys_113: 2.04917507e-11 - art_sys_114: -2.37761255e-11 - art_sys_115: 1.00730396e-11 - art_sys_116: 1.67212058e-11 - art_sys_117: -2.27886289e-17 - art_sys_118: 1.49291283e-11 - art_sys_119: 3.11483814e-06 - art_sys_120: -1.14966787e-06 - art_sys_121: 4.08399947e-07 - art_sys_122: -1.32585106e-07 - art_sys_123: -1.18101542e-09 - art_sys_124: 4.04440176e-08 - art_sys_125: 8.94421732e-11 - art_sys_126: -1.39438933e-08 - art_sys_127: -6.73775118e-11 - art_sys_128: 1.91835008e-09 - art_sys_129: -8.23810313e-13 - art_sys_130: -1.21773065e-11 - art_sys_131: -6.77183119e-12 - art_sys_132: -2.07479468e-17 - art_sys_133: -2.86243812e-14 - art_sys_134: -2.35583152e-10 - art_sys_135: -1.24040280e-20 - art_sys_136: 8.29405140e-20 - art_sys_137: 2.54099545e-20 - art_sys_138: 2.39154322e-20 - art_sys_139: 7.33279085e-20 - art_sys_140: -7.60825202e-21 - art_sys_141: 7.32151641e-15 - art_sys_142: -8.58901443e-22 - art_sys_143: 4.36414917e-18 - art_sys_144: 4.00267754e-16 - art_sys_145: -1.25199536e-16 - art_sys_146: 4.83969224e-17 - art_sys_147: -1.32690640e-17 - art_sys_148: -6.10854582e-18 - art_sys_149: 2.65662581e-18 - art_sys_150: -4.62465271e-18 - art_sys_151: -1.34926438e-18 - art_sys_152: -3.93918883e-20 - art_sys_153: -2.30601362e-19 - art_sys_154: 9.64645744e-20 - art_sys_155: -7.91762710e-20 - art_sys_156: -1.70506736e-21 - art_sys_157: 4.55170046e-20 - art_sys_158: 1.14399639e-20 - art_sys_159: -2.16922361e-21 - art_sys_160: -1.49353155e-21 - art_sys_161: 5.69870646e-24 - art_sys_162: 7.58112497e-24 - art_sys_163: -7.43862945e-24 - art_sys_164: -4.56013029e-23 - art_sys_165: -2.57078556e-23 - art_sys_166: 7.12777229e-24 - art_sys_167: 1.37232881e-22 - art_sys_168: -2.33428904e-13 - art_sys_169: 7.96290583e-24 - art_sys_170: -1.36019779e-14 - art_sys_171: 5.70273097e-14 - art_sys_172: 2.97880378e-23 - art_sys_173: -9.27250988e-26 - art_sys_174: -5.29649559e-15 - art_sys_175: 0.0 - art_sys_176: -7.46589291e-17 - art_sys_177: 0.0 - art_sys_178: 9.61937414e-19 - art_sys_179: -3.63865345e-22 - art_sys_180: -1.69903214e-25 - art_sys_181: -5.55489360e-31 - art_sys_182: 0.0 - art_sys_183: 2.30249208e-28 - art_sys_184: 4.52800330e-29 - art_sys_185: 2.39182940e-31 + art_sys_46: 3.79976733e-25 + art_sys_47: 2.78586736e-25 + art_sys_48: -8.00163966e-21 + art_sys_49: -1.77643941e-13 + art_sys_50: -5.35857510e-14 + art_sys_51: 1.06816259e-14 + art_sys_52: 2.79136695e-15 + art_sys_53: 5.12854984e-15 + art_sys_54: 3.69361603e-15 + art_sys_55: -3.70664342e-08 + art_sys_56: 6.16399893e-07 + art_sys_57: -2.81006152e-18 + art_sys_58: 5.99514188e-15 + art_sys_59: 1.78467491e-14 + art_sys_60: 1.53375619e-17 + art_sys_61: -7.88013144e-17 + art_sys_62: -3.67143470e-18 + art_sys_63: 1.10268596e-06 + art_sys_64: 3.92698056e-22 + art_sys_65: -2.60190396e-15 + art_sys_66: 3.87820031e-15 + art_sys_67: -1.95503778e-17 + art_sys_68: 3.14835182e-07 + art_sys_69: -7.66249814e-06 + art_sys_70: -2.13403208e-16 + art_sys_71: -1.68874929e-18 + art_sys_72: -1.36730656e-18 + art_sys_73: -2.04438117e-14 + art_sys_74: 5.41593754e-15 + art_sys_75: -2.84540686e-16 + art_sys_76: 6.60335449e-15 + art_sys_77: -7.83475213e-15 + art_sys_78: -6.62341453e-06 + art_sys_79: 4.46526998e-16 + art_sys_80: -2.30190963e-12 + art_sys_81: -9.81090803e-16 + art_sys_82: 7.18786626e-16 + art_sys_83: -1.62233583e-13 + art_sys_84: 2.50666813e-16 + art_sys_85: -1.11951563e-16 + art_sys_86: -9.36164592e-13 + art_sys_87: -2.95652964e-16 + art_sys_88: 1.26388892e-12 + art_sys_89: -1.09172363e-13 + art_sys_90: 2.94850625e-16 + art_sys_91: 1.90181846e-05 + art_sys_92: 3.70365796e-16 + art_sys_93: -1.43676218e-16 + art_sys_94: -2.97316205e-14 + art_sys_95: 9.10326599e-05 + art_sys_96: -1.68398070e-12 + art_sys_97: 1.53031021e-04 + art_sys_98: -9.24457961e-14 + art_sys_99: 1.04041720e-17 + art_sys_100: 2.63799130e-04 + art_sys_101: 5.17525042e-12 + art_sys_102: -4.89978349e-12 + art_sys_103: -4.76274987e-06 + art_sys_104: -8.67192971e-15 + art_sys_105: -1.27782899e-12 + art_sys_106: 5.47413643e-10 + art_sys_107: 5.23601598e-11 + art_sys_108: -3.33454096e-12 + art_sys_109: -2.09908141e-11 + art_sys_110: -3.36843825e-05 + art_sys_111: -5.58017677e-11 + art_sys_112: -5.16240350e-05 + art_sys_113: 6.49919111e-12 + art_sys_114: 2.43860103e-11 + art_sys_115: -3.23886177e-05 + art_sys_116: 6.07853935e-10 + art_sys_117: 6.28446148e-10 + art_sys_118: -1.72009004e-05 + art_sys_119: -4.66345036e-10 + art_sys_120: 6.80816783e-11 + art_sys_121: 7.39152603e-06 + art_sys_122: 3.46353498e-11 + art_sys_123: -5.44208719e-11 + art_sys_124: -3.11417763e-06 + art_sys_125: -4.80926510e-10 + art_sys_126: -1.14882228e-06 + art_sys_127: -4.60060702e-11 + art_sys_128: -4.09117238e-07 + art_sys_129: 4.52907018e-12 + art_sys_130: -1.33090151e-07 + art_sys_131: -1.06465991e-10 + art_sys_132: 3.01286962e-10 + art_sys_133: -4.00185913e-08 + art_sys_134: -3.06353887e-13 + art_sys_135: 3.37635103e-10 + art_sys_136: 1.38213848e-08 + art_sys_137: 2.68037822e-14 + art_sys_138: -1.89216742e-14 + art_sys_139: -3.45102116e-11 + art_sys_140: -2.02004724e-09 + art_sys_141: -3.42948428e-10 + art_sys_142: -7.39642702e-12 + art_sys_143: 1.30193874e-14 + art_sys_144: 1.51584142e-14 + art_sys_145: 1.20292536e-13 + art_sys_146: -0.0 + art_sys_147: 1.98375011e-12 + art_sys_148: -2.15450677e-11 + art_sys_149: -2.15450677e-11 + art_sys_150: 5.52665614e-12 + art_sys_151: 5.52665614e-12 + art_sys_152: -2.45730506e-11 + art_sys_153: -2.68696542e-14 + art_sys_154: 2.01994272e-15 + art_sys_155: 4.94799719e-24 + art_sys_156: -1.27769956e-28 + art_sys_157: 2.01134574e-27 + art_sys_158: -0.0 + art_sys_159: 3.59021767e-10 + art_sys_160: 1.06641964e-11 + art_sys_161: 1.32048828e-10 + art_sys_162: 3.03854088e-12 + art_sys_163: -7.22931700e-12 + art_sys_164: -6.50547555e-12 + art_sys_165: -6.35158874e-14 + art_sys_166: 1.39675261e-20 + art_sys_167: 1.54315763e-20 + art_sys_168: -2.94380263e-21 + art_sys_169: 7.50314075e-22 + art_sys_170: 2.46506646e-22 + art_sys_171: -3.86520983e-22 + art_sys_172: 2.62365376e-21 + art_sys_173: -2.76186722e-22 + art_sys_174: -3.08006561e-23 + art_sys_175: -3.10189738e-26 + art_sys_176: -1.62018452e-23 + art_sys_177: -1.12870041e-24 + art_sys_178: 1.35180707e-24 + art_sys_179: 6.64250958e-25 + art_sys_180: 1.10721872e-23 + art_sys_181: -8.15803286e-26 + art_sys_182: -2.74384775e-24 + art_sys_183: -4.85269993e-26 + art_sys_184: -3.23048577e-29 + art_sys_185: -2.88682260e-28 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -23834,167 +23834,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: -1.72685773e-16 + art_sys_25: 1.72685773e-16 art_sys_26: -1.63984776e-15 - art_sys_27: 7.24560386e-15 - art_sys_28: -1.78684731e-14 - art_sys_29: 5.11476579e-13 - art_sys_30: 1.14312626e-30 - art_sys_31: -1.40070774e-30 - art_sys_32: -1.46347879e-12 - art_sys_33: 1.05153403e-12 - art_sys_34: -9.62716039e-30 - art_sys_35: -1.34843710e-29 - art_sys_36: -8.33418347e-30 - art_sys_37: 5.13539793e-30 + art_sys_27: -7.24560386e-15 + art_sys_28: -1.73365949e-33 + art_sys_29: 2.70072298e-33 + art_sys_30: 1.78684731e-14 + art_sys_31: -5.11476579e-13 + art_sys_32: 1.46347879e-12 + art_sys_33: -1.05153403e-12 + art_sys_34: -3.54319621e-30 + art_sys_35: 2.33061193e-30 + art_sys_36: 1.20530439e-29 + art_sys_37: 9.78102143e-31 art_sys_38: 7.04828103e-12 - art_sys_39: -9.53111872e-29 - art_sys_40: -2.99714216e-29 - art_sys_41: -1.97823428e-29 - art_sys_42: -1.03670369e-27 + art_sys_39: 3.08403192e-29 + art_sys_40: -2.42620712e-29 + art_sys_41: -2.43103036e-29 + art_sys_42: -8.87140390e-27 art_sys_43: -4.81022244e-10 art_sys_44: 6.41675609e-10 art_sys_45: -3.84238151e-09 - art_sys_46: 7.02642611e-26 - art_sys_47: -1.39880687e-25 - art_sys_48: -2.57990122e-25 - art_sys_49: -1.90505265e-09 - art_sys_50: 1.33653805e-22 - art_sys_51: 1.17869129e-13 - art_sys_52: 1.43046889e-14 - art_sys_53: -4.46553944e-08 - art_sys_54: 1.85679119e-20 - art_sys_55: -6.64281397e-18 - art_sys_56: -1.58588954e-17 - art_sys_57: 8.63491938e-21 - art_sys_58: 3.29764467e-24 - art_sys_59: -1.33905747e-14 - art_sys_60: 7.49424423e-16 - art_sys_61: -1.86385796e-16 - art_sys_62: 2.94008828e-16 - art_sys_63: -1.73893593e-15 - art_sys_64: 1.05098200e-07 - art_sys_65: 1.01691128e-16 - art_sys_66: -2.15272837e-17 - art_sys_67: 5.02148133e-17 - art_sys_68: -5.38398858e-07 - art_sys_69: 1.59571085e-07 - art_sys_70: 3.17428960e-19 - art_sys_71: -9.79629755e-19 - art_sys_72: -5.64883631e-07 - art_sys_73: -6.71692328e-20 - art_sys_74: 2.90044495e-18 - art_sys_75: 3.71124972e-18 - art_sys_76: 3.58325375e-18 - art_sys_77: -1.18703774e-17 - art_sys_78: -2.04147658e-17 - art_sys_79: 1.78529567e-15 - art_sys_80: 2.50272024e-18 - art_sys_81: -3.46738702e-18 - art_sys_82: -1.11208413e-18 - art_sys_83: 1.73874526e-05 - art_sys_84: -1.26931779e-15 - art_sys_85: -1.77812597e-16 - art_sys_86: -3.59214725e-05 - art_sys_87: 3.77333539e-16 - art_sys_88: 3.61178468e-19 - art_sys_89: -4.84912436e-05 - art_sys_90: 4.44027388e-20 - art_sys_91: -4.22649310e-16 - art_sys_92: -1.00353644e-13 - art_sys_93: -1.32288950e-04 - art_sys_94: -1.90086265e-04 - art_sys_95: -2.14740362e-13 - art_sys_96: -3.85040007e-17 - art_sys_97: -5.97749421e-12 - art_sys_98: 8.59922005e-11 - art_sys_99: 5.31957863e-06 - art_sys_100: 2.98903307e-19 - art_sys_101: -3.24359238e-20 - art_sys_102: -2.84607667e-11 - art_sys_103: 2.70061135e-05 - art_sys_104: -9.44375130e-12 - art_sys_105: 3.86739701e-05 - art_sys_106: -1.03886210e-10 - art_sys_107: 1.49783084e-10 - art_sys_108: -2.44418067e-05 - art_sys_109: 3.50425142e-10 - art_sys_110: -1.50824502e-11 - art_sys_111: -1.21665855e-05 - art_sys_112: 7.71505217e-12 - art_sys_113: 1.17471945e-11 - art_sys_114: -1.09189540e-11 - art_sys_115: -1.38523122e-11 - art_sys_116: -1.80586651e-12 - art_sys_117: -7.87688106e-18 - art_sys_118: -1.59044463e-11 - art_sys_119: -5.59138552e-06 - art_sys_120: 2.18658184e-06 - art_sys_121: -8.10745422e-07 - art_sys_122: 2.71052827e-07 - art_sys_123: 1.95632822e-09 - art_sys_124: -8.42922882e-08 - art_sys_125: -1.26772845e-10 - art_sys_126: 2.94697120e-08 - art_sys_127: 1.09449195e-10 - art_sys_128: -4.10687978e-09 - art_sys_129: 1.42487779e-12 - art_sys_130: 1.87175440e-11 - art_sys_131: 1.24566965e-11 - art_sys_132: 4.02464278e-17 - art_sys_133: 6.19379143e-14 - art_sys_134: 5.06764235e-10 - art_sys_135: -9.27834223e-22 - art_sys_136: -1.17987501e-19 - art_sys_137: -4.59950461e-20 - art_sys_138: -4.17771446e-20 - art_sys_139: -1.19858547e-19 - art_sys_140: 1.23111927e-20 - art_sys_141: -1.58021464e-14 - art_sys_142: 1.46522887e-21 - art_sys_143: -9.41963281e-18 - art_sys_144: -8.13448352e-16 - art_sys_145: 2.49845466e-16 - art_sys_146: -5.31821809e-17 - art_sys_147: 1.49604994e-17 - art_sys_148: 6.68221097e-18 - art_sys_149: -1.76632993e-18 - art_sys_150: 8.19214950e-18 - art_sys_151: 3.21087154e-18 - art_sys_152: 8.49749880e-20 - art_sys_153: 4.66423257e-19 - art_sys_154: -1.94064776e-19 - art_sys_155: 1.58898165e-19 - art_sys_156: 3.27580536e-21 - art_sys_157: -9.19063331e-20 - art_sys_158: -2.29820935e-20 - art_sys_159: 4.38095333e-21 - art_sys_160: 3.00722185e-21 - art_sys_161: -7.94198752e-24 - art_sys_162: -1.47190244e-23 - art_sys_163: 1.33829276e-23 - art_sys_164: 1.04810102e-22 - art_sys_165: 4.91990633e-23 - art_sys_166: -1.17900958e-23 - art_sys_167: -2.03758001e-22 - art_sys_168: 5.04769137e-13 - art_sys_169: -1.30982071e-23 - art_sys_170: 2.94161545e-14 - art_sys_171: -1.23298289e-13 - art_sys_172: -6.09338685e-23 - art_sys_173: 1.77197300e-25 - art_sys_174: 1.14519280e-14 - art_sys_175: 0.0 - art_sys_176: 1.61423755e-16 - art_sys_177: 0.0 - art_sys_178: -2.08058797e-18 - art_sys_179: 7.85824003e-22 - art_sys_180: 3.30717475e-25 - art_sys_181: 7.88423713e-31 - art_sys_182: 0.0 - art_sys_183: -4.95689761e-28 - art_sys_184: -3.68326541e-29 - art_sys_185: -4.05971909e-31 + art_sys_46: 3.83925854e-26 + art_sys_47: 2.59968414e-26 + art_sys_48: 4.11330664e-22 + art_sys_49: 7.32283393e-14 + art_sys_50: 7.49964169e-15 + art_sys_51: 1.03318549e-15 + art_sys_52: 5.92134288e-16 + art_sys_53: -4.94725340e-15 + art_sys_54: -6.67143448e-15 + art_sys_55: 1.90505265e-09 + art_sys_56: 4.46553944e-08 + art_sys_57: 1.44342335e-19 + art_sys_58: -1.40276018e-14 + art_sys_59: -3.47512766e-14 + art_sys_60: 1.11113614e-18 + art_sys_61: -5.70870380e-18 + art_sys_62: -2.65979133e-19 + art_sys_63: 1.05098199e-07 + art_sys_64: 2.86562462e-23 + art_sys_65: 4.99172215e-15 + art_sys_66: -7.48806534e-15 + art_sys_67: -1.86330661e-18 + art_sys_68: -5.38398808e-07 + art_sys_69: 1.59571097e-07 + art_sys_70: -2.03388555e-17 + art_sys_71: -2.31926126e-19 + art_sys_72: -6.65516906e-19 + art_sys_73: 8.18767120e-14 + art_sys_74: 1.49613301e-14 + art_sys_75: -1.01502171e-14 + art_sys_76: -1.12891361e-14 + art_sys_77: 8.12410554e-16 + art_sys_78: -5.64883633e-07 + art_sys_79: 9.04227080e-16 + art_sys_80: 2.10726442e-12 + art_sys_81: 1.32412338e-15 + art_sys_82: 3.03100118e-16 + art_sys_83: -6.64371943e-14 + art_sys_84: 3.19015434e-16 + art_sys_85: -6.22513427e-16 + art_sys_86: -7.23458518e-13 + art_sys_87: -3.59382737e-18 + art_sys_88: -6.15822749e-13 + art_sys_89: 1.79334477e-13 + art_sys_90: -6.04261617e-18 + art_sys_91: -1.73874740e-05 + art_sys_92: 4.68018893e-17 + art_sys_93: -2.02631428e-16 + art_sys_94: -2.30329013e-15 + art_sys_95: 3.59214913e-05 + art_sys_96: 2.38992894e-12 + art_sys_97: -4.84916334e-05 + art_sys_98: 9.34899691e-14 + art_sys_99: 1.59895029e-17 + art_sys_100: 1.32292928e-04 + art_sys_101: -4.43468239e-12 + art_sys_102: 3.68862962e-12 + art_sys_103: -1.90086219e-04 + art_sys_104: -1.06109035e-15 + art_sys_105: -1.13395376e-13 + art_sys_106: 2.37193736e-10 + art_sys_107: -8.61831765e-11 + art_sys_108: 5.52070974e-12 + art_sys_109: 3.70331493e-11 + art_sys_110: 5.31962462e-06 + art_sys_111: 8.35666354e-11 + art_sys_112: 2.70059919e-05 + art_sys_113: -1.21606938e-11 + art_sys_114: -3.01023836e-10 + art_sys_115: 3.86734039e-05 + art_sys_116: -7.57891200e-11 + art_sys_117: 2.20361025e-10 + art_sys_118: 2.44407801e-05 + art_sys_119: -2.20783179e-10 + art_sys_120: -1.14542341e-11 + art_sys_121: -1.21698106e-05 + art_sys_122: -7.31655222e-11 + art_sys_123: 2.54249733e-11 + art_sys_124: 5.59019104e-06 + art_sys_125: 3.83239269e-10 + art_sys_126: 2.18501563e-06 + art_sys_127: 3.79815818e-11 + art_sys_128: 8.12033729e-07 + art_sys_129: -6.18080475e-11 + art_sys_130: 2.72023877e-07 + art_sys_131: 2.71511214e-10 + art_sys_132: -4.09680174e-10 + art_sys_133: 8.35609038e-08 + art_sys_134: 7.09086613e-13 + art_sys_135: -4.49338311e-10 + art_sys_136: -2.92187986e-08 + art_sys_137: -4.46404336e-14 + art_sys_138: 1.47830751e-14 + art_sys_139: 6.89571136e-11 + art_sys_140: 4.33116065e-09 + art_sys_141: 6.27302266e-10 + art_sys_142: -4.25110336e-11 + art_sys_143: -3.10320360e-14 + art_sys_144: -3.26896221e-14 + art_sys_145: -2.58597391e-13 + art_sys_146: 0.0 + art_sys_147: -3.68452391e-12 + art_sys_148: 3.79576018e-11 + art_sys_149: 3.79576018e-11 + art_sys_150: -7.44909221e-12 + art_sys_151: -7.44909221e-12 + art_sys_152: 3.69666435e-11 + art_sys_153: 1.78067514e-13 + art_sys_154: -3.63458998e-15 + art_sys_155: -7.29312885e-24 + art_sys_156: 7.93410970e-27 + art_sys_157: -6.19769802e-28 + art_sys_158: 0.0 + art_sys_159: -6.73496405e-10 + art_sys_160: -1.91739697e-11 + art_sys_161: -2.67524831e-10 + art_sys_162: -6.10628391e-12 + art_sys_163: 1.92329878e-11 + art_sys_164: 1.35497990e-11 + art_sys_165: 1.20200113e-13 + art_sys_166: -2.93188799e-20 + art_sys_167: -3.20858519e-20 + art_sys_168: 6.39268994e-21 + art_sys_169: -1.44963396e-21 + art_sys_170: -4.59285923e-22 + art_sys_171: 7.59074064e-22 + art_sys_172: -5.25747349e-21 + art_sys_173: 5.48369021e-22 + art_sys_174: 6.06319745e-23 + art_sys_175: 6.08000172e-26 + art_sys_176: 3.15134514e-23 + art_sys_177: 1.56549631e-24 + art_sys_178: -2.68349853e-24 + art_sys_179: -1.62328500e-24 + art_sys_180: -2.35523501e-23 + art_sys_181: 1.93245398e-25 + art_sys_182: 5.57500253e-24 + art_sys_183: 9.78494032e-26 + art_sys_184: 7.57278994e-29 + art_sys_185: 6.07068219e-28 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -24125,167 +24125,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: -1.03774000e-17 + art_sys_25: 1.03774000e-17 art_sys_26: -1.50695451e-16 - art_sys_27: 6.67817965e-16 - art_sys_28: -1.12660823e-15 - art_sys_29: 1.88515760e-14 - art_sys_30: 4.22609067e-32 - art_sys_31: 5.22415010e-33 - art_sys_32: -3.75752230e-13 - art_sys_33: -4.84528447e-13 - art_sys_34: -2.42557784e-30 - art_sys_35: -3.65789678e-32 - art_sys_36: 1.20420974e-30 - art_sys_37: 1.62188833e-31 + art_sys_27: -6.67817965e-16 + art_sys_28: -1.60065194e-34 + art_sys_29: 2.48337313e-34 + art_sys_30: 1.12660823e-15 + art_sys_31: -1.88515760e-14 + art_sys_32: 3.75752230e-13 + art_sys_33: 4.84528447e-13 + art_sys_34: -1.52988065e-30 + art_sys_35: -1.34539305e-30 + art_sys_36: 2.01942287e-31 + art_sys_37: -2.13532163e-31 art_sys_38: -3.82553310e-13 - art_sys_39: 9.26653763e-30 - art_sys_40: 2.31326721e-30 - art_sys_41: 2.71778493e-31 - art_sys_42: -4.92934663e-29 + art_sys_39: -8.67984732e-31 + art_sys_40: 1.06419537e-30 + art_sys_41: 1.39395738e-30 + art_sys_42: -4.06179557e-28 art_sys_43: -2.20535508e-11 art_sys_44: -5.57666815e-11 art_sys_45: 1.93101376e-10 - art_sys_46: -4.36512254e-27 - art_sys_47: 6.68812794e-27 - art_sys_48: 1.31649588e-26 - art_sys_49: 4.26537697e-10 - art_sys_50: -2.01191730e-23 - art_sys_51: -2.91419163e-14 - art_sys_52: 6.67521850e-14 - art_sys_53: 6.72284257e-09 - art_sys_54: -2.79539531e-21 - art_sys_55: 1.00007162e-18 - art_sys_56: 2.38754708e-18 - art_sys_57: -1.30173915e-21 - art_sys_58: -1.13230669e-24 - art_sys_59: -6.76267221e-15 - art_sys_60: 1.02940820e-15 - art_sys_61: -1.50098339e-15 - art_sys_62: -4.38115370e-16 - art_sys_63: 3.31357595e-16 - art_sys_64: -1.75762656e-08 - art_sys_65: 1.91422951e-16 - art_sys_66: -3.47988130e-17 - art_sys_67: -1.56821570e-17 - art_sys_68: -1.51304852e-07 - art_sys_69: 4.29765040e-07 - art_sys_70: -6.05023478e-20 - art_sys_71: 1.45411023e-19 - art_sys_72: 3.15990475e-07 - art_sys_73: -1.40886480e-20 - art_sys_74: -5.27007013e-19 - art_sys_75: 6.84228661e-18 - art_sys_76: 2.16372305e-18 - art_sys_77: 7.64197706e-18 - art_sys_78: 1.00147226e-18 - art_sys_79: 6.33020060e-16 - art_sys_80: 7.21404189e-19 - art_sys_81: -1.66095577e-19 - art_sys_82: 1.79381520e-18 - art_sys_83: 4.94321672e-06 - art_sys_84: 7.10104108e-16 - art_sys_85: -4.96475755e-17 - art_sys_86: 7.23813097e-06 - art_sys_87: -2.09900970e-16 - art_sys_88: -4.90235972e-19 - art_sys_89: -3.50739354e-05 - art_sys_90: 1.04897425e-17 - art_sys_91: -7.79745824e-17 - art_sys_92: 3.63267214e-14 - art_sys_93: 2.73181593e-05 - art_sys_94: -1.00561510e-04 - art_sys_95: 4.83036567e-14 - art_sys_96: 2.28431884e-17 - art_sys_97: 1.01773890e-12 - art_sys_98: 7.44843456e-11 - art_sys_99: 1.42773414e-04 - art_sys_100: -3.76164117e-19 - art_sys_101: 9.81355233e-21 - art_sys_102: -2.99607589e-11 - art_sys_103: -6.17428097e-06 - art_sys_104: -3.40257413e-11 - art_sys_105: -2.05908346e-05 - art_sys_106: -1.58823491e-11 - art_sys_107: -2.16568102e-11 - art_sys_108: 2.91571916e-05 - art_sys_109: -9.29978504e-11 - art_sys_110: 2.93419005e-12 - art_sys_111: 1.72552988e-05 - art_sys_112: -7.59306137e-12 - art_sys_113: 1.54108875e-11 - art_sys_114: 4.42102829e-12 - art_sys_115: 8.05300356e-12 - art_sys_116: -8.66341346e-12 - art_sys_117: 1.93178894e-18 - art_sys_118: 1.75537173e-11 - art_sys_119: 9.14698370e-06 - art_sys_120: -3.90326431e-06 - art_sys_121: 1.53076703e-06 - art_sys_122: -5.34927520e-07 - art_sys_123: -2.79037001e-09 - art_sys_124: 1.70832219e-07 - art_sys_125: 1.52265654e-10 - art_sys_126: -6.08908359e-08 - art_sys_127: -1.45824842e-10 - art_sys_128: 8.65011717e-09 - art_sys_129: -2.19709441e-12 - art_sys_130: -2.69024120e-11 - art_sys_131: -1.95238627e-11 - art_sys_132: -7.51363441e-17 - art_sys_133: -1.31746513e-13 - art_sys_134: -1.07488668e-09 - art_sys_135: 1.68712516e-20 - art_sys_136: 1.72494338e-19 - art_sys_137: 6.72493454e-20 - art_sys_138: 5.20444562e-20 - art_sys_139: 1.74558640e-19 - art_sys_140: -1.68690638e-20 - art_sys_141: 3.35583594e-14 - art_sys_142: -9.53208461e-22 - art_sys_143: 2.00057455e-17 - art_sys_144: 1.58424375e-15 - art_sys_145: -4.94000542e-16 - art_sys_146: 4.22432263e-17 - art_sys_147: -1.00343993e-17 - art_sys_148: -3.43435464e-18 - art_sys_149: -4.01561758e-18 - art_sys_150: -1.38501419e-17 - art_sys_151: -7.14847566e-18 - art_sys_152: -1.78510037e-19 - art_sys_153: -9.04304289e-19 - art_sys_154: 3.73005671e-19 - art_sys_155: -3.04291858e-19 - art_sys_156: -5.80165008e-21 - art_sys_157: 1.77771607e-19 - art_sys_158: 4.41023481e-20 - art_sys_159: -8.44313276e-21 - art_sys_160: -5.79481253e-21 - art_sys_161: 9.16278144e-24 - art_sys_162: 2.70495727e-23 - art_sys_163: -2.18229153e-23 - art_sys_164: -2.30726536e-22 - art_sys_165: -9.02421418e-23 - art_sys_166: 1.83052745e-23 - art_sys_167: 2.64077642e-22 - art_sys_168: -1.07268349e-12 - art_sys_169: 1.99723813e-23 - art_sys_170: -6.25151389e-14 - art_sys_171: 2.61994784e-13 - art_sys_172: 1.19142853e-22 - art_sys_173: -3.23038677e-25 - art_sys_174: -2.43343512e-14 - art_sys_175: 0.0 - art_sys_176: -3.43020051e-16 - art_sys_177: 0.0 - art_sys_178: 4.42249383e-18 - art_sys_179: -1.66739980e-21 - art_sys_180: -6.18173007e-25 - art_sys_181: -6.04721503e-31 - art_sys_182: 0.0 - art_sys_183: 1.04809901e-27 - art_sys_184: 1.06545410e-29 - art_sys_185: 5.84872670e-31 + art_sys_46: -1.51211043e-27 + art_sys_47: -1.98707672e-27 + art_sys_48: -9.20869187e-23 + art_sys_49: -1.89125552e-13 + art_sys_50: -3.99230580e-16 + art_sys_51: 1.13874198e-14 + art_sys_52: -3.37289861e-15 + art_sys_53: 9.03937283e-15 + art_sys_54: 1.28767535e-14 + art_sys_55: -4.26537697e-10 + art_sys_56: -6.72284257e-09 + art_sys_57: -3.23215402e-20 + art_sys_58: 2.59007059e-14 + art_sys_59: 6.38741137e-14 + art_sys_60: -1.67280638e-19 + art_sys_61: 8.59438718e-19 + art_sys_62: 4.00428085e-20 + art_sys_63: -1.75762656e-08 + art_sys_64: -4.52660506e-24 + art_sys_65: -9.28094427e-15 + art_sys_66: 1.37788759e-14 + art_sys_67: 3.11644802e-19 + art_sys_68: -1.51304792e-07 + art_sys_69: 4.29765044e-07 + art_sys_70: 3.40176631e-18 + art_sys_71: 8.63865384e-21 + art_sys_72: -1.17677824e-19 + art_sys_73: 2.77370880e-14 + art_sys_74: 1.44075245e-14 + art_sys_75: 8.48997490e-15 + art_sys_76: 2.05825953e-14 + art_sys_77: 7.31396021e-16 + art_sys_78: 3.15990476e-07 + art_sys_79: 2.51987224e-15 + art_sys_80: 5.87924771e-13 + art_sys_81: 2.59235915e-16 + art_sys_82: -8.09701889e-16 + art_sys_83: 7.56876985e-15 + art_sys_84: -3.17476418e-16 + art_sys_85: -5.55752001e-16 + art_sys_86: 3.43453178e-12 + art_sys_87: 1.41328965e-17 + art_sys_88: -3.82696340e-13 + art_sys_89: -3.16701148e-13 + art_sys_90: -1.64413954e-17 + art_sys_91: -4.94320990e-06 + art_sys_92: -1.64680060e-17 + art_sys_93: -4.36126959e-17 + art_sys_94: 1.46774759e-15 + art_sys_95: -7.23811444e-06 + art_sys_96: -2.84925528e-12 + art_sys_97: -3.50741497e-05 + art_sys_98: 2.55568704e-14 + art_sys_99: 3.12406642e-18 + art_sys_100: -2.73189373e-05 + art_sys_101: -1.30423649e-12 + art_sys_102: 1.16446874e-12 + art_sys_103: -1.00561548e-04 + art_sys_104: 9.22805719e-16 + art_sys_105: 1.84434571e-13 + art_sys_106: -6.21482772e-11 + art_sys_107: 1.22197203e-10 + art_sys_108: -7.91093148e-12 + art_sys_109: -5.89179035e-11 + art_sys_110: 1.42770320e-04 + art_sys_111: 2.29077782e-11 + art_sys_112: -6.17417810e-06 + art_sys_113: 2.12182997e-11 + art_sys_114: -5.22844248e-11 + art_sys_115: -2.05905209e-05 + art_sys_116: -2.55696039e-09 + art_sys_117: -7.36933019e-11 + art_sys_118: -2.91557745e-05 + art_sys_119: 8.54619577e-11 + art_sys_120: -1.98827389e-10 + art_sys_121: 1.72608526e-05 + art_sys_122: -3.36089363e-10 + art_sys_123: 1.71579730e-10 + art_sys_124: -9.14499019e-06 + art_sys_125: 5.16480747e-10 + art_sys_126: -3.90059504e-06 + art_sys_127: -7.39782889e-11 + art_sys_128: -1.53288267e-06 + art_sys_129: 2.71944812e-10 + art_sys_130: -5.36673840e-07 + art_sys_131: -6.48795267e-10 + art_sys_132: 4.71715148e-10 + art_sys_133: -1.69718136e-07 + art_sys_134: -1.59754384e-12 + art_sys_135: 4.60741636e-10 + art_sys_136: 6.03978999e-08 + art_sys_137: 6.23368233e-14 + art_sys_138: 4.57186967e-15 + art_sys_139: -1.44700659e-10 + art_sys_140: -9.12825535e-09 + art_sys_141: -1.07439267e-09 + art_sys_142: 2.27656695e-10 + art_sys_143: 7.31326138e-14 + art_sys_144: 6.90319912e-14 + art_sys_145: 5.47733778e-13 + art_sys_146: -0.0 + art_sys_147: 6.41586899e-12 + art_sys_148: -6.11769959e-11 + art_sys_149: -6.11769959e-11 + art_sys_150: 6.01034321e-12 + art_sys_151: 6.01034321e-12 + art_sys_152: -4.39952581e-11 + art_sys_153: -5.70947443e-13 + art_sys_154: 6.03171016e-15 + art_sys_155: 8.28703425e-24 + art_sys_156: -3.20885295e-26 + art_sys_157: -5.06214336e-27 + art_sys_158: -0.0 + art_sys_159: 1.17837571e-09 + art_sys_160: 3.09179935e-11 + art_sys_161: 5.21047988e-10 + art_sys_162: 1.17766994e-11 + art_sys_163: -4.91973374e-11 + art_sys_164: -2.75225030e-11 + art_sys_165: -2.16792348e-13 + art_sys_166: 6.05373610e-20 + art_sys_167: 6.55478394e-20 + art_sys_168: -1.37455975e-20 + art_sys_169: 2.76366913e-21 + art_sys_170: 8.14314269e-22 + art_sys_171: -1.42520216e-21 + art_sys_172: 1.00738814e-20 + art_sys_173: -1.03763113e-21 + art_sys_174: -1.13901538e-22 + art_sys_175: -1.15180360e-25 + art_sys_176: -5.74878419e-23 + art_sys_177: -1.14790099e-24 + art_sys_178: 5.11861921e-24 + art_sys_179: 3.91528712e-24 + art_sys_180: 4.90065872e-23 + art_sys_181: -4.54850545e-25 + art_sys_182: -1.08947067e-23 + art_sys_183: -1.89426182e-25 + art_sys_184: -1.72566040e-28 + art_sys_185: -1.24397096e-27 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -24416,167 +24416,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: -5.81616300e-19 + art_sys_25: 5.81616300e-19 art_sys_26: -1.25325767e-17 - art_sys_27: 5.50202164e-17 - art_sys_28: -4.00719425e-17 - art_sys_29: -4.07530615e-15 - art_sys_30: -9.06725904e-33 - art_sys_31: 1.62431025e-32 - art_sys_32: -5.43926034e-14 - art_sys_33: -1.24253770e-13 - art_sys_34: 3.81272164e-32 - art_sys_35: 2.41219637e-31 - art_sys_36: 4.08766742e-31 - art_sys_37: -6.01928358e-32 + art_sys_27: -5.50202164e-17 + art_sys_28: -1.31398696e-35 + art_sys_29: 2.04229255e-35 + art_sys_30: 4.00719425e-17 + art_sys_31: 4.07530615e-15 + art_sys_32: 5.43926034e-14 + art_sys_33: 1.24253770e-13 + art_sys_34: -2.62826255e-31 + art_sys_35: -3.35126819e-31 + art_sys_36: -1.72216190e-31 + art_sys_37: -6.39448814e-32 art_sys_38: -2.12998392e-13 - art_sys_39: 4.33569887e-30 - art_sys_40: 1.05693102e-30 - art_sys_41: 4.22231909e-31 - art_sys_42: 1.14417434e-29 + art_sys_39: -7.60513304e-31 + art_sys_40: 6.79742929e-31 + art_sys_41: 7.50837133e-31 + art_sys_42: 1.00816280e-28 art_sys_43: 5.46455676e-12 art_sys_44: -1.91790643e-11 art_sys_45: 1.20839044e-10 - art_sys_46: -2.38760306e-27 - art_sys_47: 4.02242526e-27 - art_sys_48: 8.15381050e-27 - art_sys_49: 3.38750858e-10 - art_sys_50: -6.72993753e-24 - art_sys_51: 8.20026700e-14 - art_sys_52: 1.02330132e-14 - art_sys_53: 2.24719092e-09 - art_sys_54: -9.34393918e-22 - art_sys_55: 3.34285951e-19 - art_sys_56: 7.98066302e-19 - art_sys_57: -4.34996003e-22 - art_sys_58: -3.53010777e-25 - art_sys_59: 1.63573863e-14 - art_sys_60: -2.92106626e-15 - art_sys_61: -6.24980610e-16 - art_sys_62: 6.33074784e-16 - art_sys_63: 3.19669871e-16 - art_sys_64: -6.78083609e-09 - art_sys_65: 4.63352564e-17 - art_sys_66: -1.33317058e-16 - art_sys_67: 2.78503262e-18 - art_sys_68: -2.01178016e-08 - art_sys_69: 9.39930775e-08 - art_sys_70: -2.21699794e-20 - art_sys_71: 5.90187253e-20 - art_sys_72: 8.99524309e-08 - art_sys_73: -1.47271737e-21 - art_sys_74: -1.98570367e-19 - art_sys_75: -5.89787888e-19 - art_sys_76: -9.72788678e-18 - art_sys_77: 8.08622222e-18 - art_sys_78: 7.78190151e-19 - art_sys_79: 9.67378675e-17 - art_sys_80: -3.79630400e-19 - art_sys_81: 2.50966484e-18 - art_sys_82: -1.52508486e-18 - art_sys_83: -1.07180647e-06 - art_sys_84: 2.02111992e-16 - art_sys_85: -6.57094019e-18 - art_sys_86: 5.24922661e-06 - art_sys_87: -5.99440025e-17 - art_sys_88: 6.94176662e-19 - art_sys_89: 1.61441351e-06 - art_sys_90: 1.58190395e-18 - art_sys_91: -6.48521918e-18 - art_sys_92: 1.74445829e-14 - art_sys_93: 2.81937853e-05 - art_sys_94: 1.81358766e-05 - art_sys_95: 3.22848611e-14 - art_sys_96: 6.32414475e-18 - art_sys_97: 8.50473126e-13 - art_sys_98: -3.96318629e-13 - art_sys_99: 7.25268763e-05 - art_sys_100: 3.55080869e-19 - art_sys_101: 8.57953275e-20 - art_sys_102: -8.91556026e-13 - art_sys_103: -1.07433747e-04 - art_sys_104: -4.88964199e-12 - art_sys_105: 5.70182802e-06 - art_sys_106: 9.01640584e-12 - art_sys_107: -2.99798791e-11 - art_sys_108: -1.64378509e-05 - art_sys_109: -7.88906707e-11 - art_sys_110: 6.49623002e-11 - art_sys_111: -2.11741167e-05 - art_sys_112: -4.98126292e-12 - art_sys_113: 7.15396732e-12 - art_sys_114: 5.65921475e-12 - art_sys_115: -7.01620644e-12 - art_sys_116: 1.14940756e-11 - art_sys_117: 1.22970320e-18 - art_sys_118: 1.59596512e-11 - art_sys_119: -1.32000804e-05 - art_sys_120: 6.49860470e-06 - art_sys_121: -2.77524282e-06 - art_sys_122: 1.02846614e-06 - art_sys_123: 3.48081778e-09 - art_sys_124: -3.42180104e-07 - art_sys_125: -1.32031182e-10 - art_sys_126: 1.25298802e-07 - art_sys_127: 1.49923771e-10 - art_sys_128: -1.82943052e-08 - art_sys_129: 3.06302759e-12 - art_sys_130: 3.12979592e-11 - art_sys_131: 2.84328137e-11 - art_sys_132: 1.43152097e-16 - art_sys_133: 2.84267996e-13 - art_sys_134: 2.29838030e-09 - art_sys_135: -5.68643043e-20 - art_sys_136: -1.51211875e-19 - art_sys_137: -1.00607288e-19 - art_sys_138: -5.13942384e-20 - art_sys_139: -2.10126078e-19 - art_sys_140: 2.44354789e-20 - art_sys_141: -7.21449464e-14 - art_sys_142: 2.03670908e-22 - art_sys_143: -4.30143333e-17 - art_sys_144: -3.00560646e-15 - art_sys_145: 9.79932211e-16 - art_sys_146: -1.12882412e-16 - art_sys_147: -2.99096663e-18 - art_sys_148: 9.35894609e-18 - art_sys_149: 1.48841425e-17 - art_sys_150: 2.52627566e-17 - art_sys_151: 1.43647556e-17 - art_sys_152: 3.82347790e-19 - art_sys_153: 1.70248068e-18 - art_sys_154: -6.91367071e-19 - art_sys_155: 5.60925680e-19 - art_sys_156: 9.18073421e-21 - art_sys_157: -3.33103793e-19 - art_sys_158: -8.15651294e-20 - art_sys_159: 1.56224449e-20 - art_sys_160: 1.08909710e-20 - art_sys_161: -1.08226049e-23 - art_sys_162: -4.84132526e-23 - art_sys_163: 3.55720517e-23 - art_sys_164: 4.70631708e-22 - art_sys_165: 1.50122294e-22 - art_sys_166: -2.60023482e-23 - art_sys_167: -2.51375309e-22 - art_sys_168: 2.31308577e-12 - art_sys_169: -2.56282869e-23 - art_sys_170: 1.34827319e-13 - art_sys_171: -5.64812991e-13 - art_sys_172: -2.27887124e-22 - art_sys_173: 6.14244354e-25 - art_sys_174: 5.24635703e-14 - art_sys_175: 0.0 - art_sys_176: 7.39494794e-16 - art_sys_177: 0.0 - art_sys_178: -9.53716103e-18 - art_sys_179: 3.58628589e-21 - art_sys_180: 1.16303040e-24 - art_sys_181: -9.09725580e-31 - art_sys_182: 0.0 - art_sys_183: -2.24807923e-27 - art_sys_184: 1.25274151e-28 - art_sys_185: -7.06528189e-31 + art_sys_46: -1.06524720e-27 + art_sys_47: -9.62079656e-28 + art_sys_48: -7.31337391e-23 + art_sys_49: -1.43020864e-13 + art_sys_50: 1.02550432e-14 + art_sys_51: -1.11912610e-14 + art_sys_52: 3.98960961e-15 + art_sys_53: -1.07719556e-14 + art_sys_54: -2.28396387e-14 + art_sys_55: -3.38750858e-10 + art_sys_56: -2.24719092e-09 + art_sys_57: -2.56726902e-20 + art_sys_58: -4.41170871e-14 + art_sys_59: -1.07793765e-13 + art_sys_60: -5.59153658e-20 + art_sys_61: 2.87273609e-19 + art_sys_62: 1.33848266e-20 + art_sys_63: -6.78083609e-09 + art_sys_64: -1.53275621e-24 + art_sys_65: 1.55411423e-14 + art_sys_66: -2.33572715e-14 + art_sys_67: 1.20225991e-19 + art_sys_68: -2.01177895e-08 + art_sys_69: 9.39930782e-08 + art_sys_70: 1.31232675e-18 + art_sys_71: 8.11130809e-21 + art_sys_72: -9.13405539e-21 + art_sys_73: -4.24583710e-14 + art_sys_74: 3.73921599e-14 + art_sys_75: -2.99263427e-15 + art_sys_76: -3.47739187e-14 + art_sys_77: 1.48057819e-16 + art_sys_78: 8.99524311e-08 + art_sys_79: 3.98344695e-15 + art_sys_80: -1.13282567e-13 + art_sys_81: 1.65492934e-15 + art_sys_82: 6.92106017e-18 + art_sys_83: 3.29877813e-14 + art_sys_84: -1.13890504e-16 + art_sys_85: 2.50527200e-16 + art_sys_86: 2.04058476e-12 + art_sys_87: 3.32884999e-18 + art_sys_88: 2.10895126e-12 + art_sys_89: 1.84110051e-13 + art_sys_90: -3.59607896e-18 + art_sys_91: 1.07181004e-06 + art_sys_92: -5.21870583e-18 + art_sys_93: -4.52217061e-18 + art_sys_94: 3.87519538e-16 + art_sys_95: -5.24922712e-06 + art_sys_96: 1.57762874e-12 + art_sys_97: 1.61443963e-06 + art_sys_98: -5.92432798e-15 + art_sys_99: -1.30002701e-18 + art_sys_100: -2.81946264e-05 + art_sys_101: 2.65804435e-13 + art_sys_102: -2.07232751e-13 + art_sys_103: 1.81358438e-05 + art_sys_104: 2.73172607e-16 + art_sys_105: 4.65632512e-14 + art_sys_106: -5.30494743e-11 + art_sys_107: -1.49842426e-10 + art_sys_108: 9.82090267e-12 + art_sys_109: 8.12902690e-11 + art_sys_110: 7.25252497e-05 + art_sys_111: -1.01244911e-11 + art_sys_112: -1.07434282e-04 + art_sys_113: -3.41463788e-11 + art_sys_114: 4.17364391e-11 + art_sys_115: 5.70175787e-06 + art_sys_116: -1.30298886e-09 + art_sys_117: -5.04216658e-11 + art_sys_118: 1.64362451e-05 + art_sys_119: 6.99958520e-11 + art_sys_120: -3.51176997e-11 + art_sys_121: -2.11830818e-05 + art_sys_122: -1.52924682e-10 + art_sys_123: 6.75210559e-11 + art_sys_124: 1.31969219e-05 + art_sys_125: -5.63302787e-10 + art_sys_126: 6.49470018e-06 + art_sys_127: 1.49403522e-11 + art_sys_128: 2.77840539e-06 + art_sys_129: 1.74297557e-11 + art_sys_130: 1.03133081e-06 + art_sys_131: 1.42248716e-09 + art_sys_132: -3.20926916e-10 + art_sys_133: 3.40689814e-07 + art_sys_134: 3.48852762e-12 + art_sys_135: -1.34197688e-10 + art_sys_136: -1.24359811e-07 + art_sys_137: -6.01531048e-14 + art_sys_138: -8.47482626e-16 + art_sys_139: 2.76689316e-10 + art_sys_140: 1.92568126e-08 + art_sys_141: 1.81528319e-09 + art_sys_142: -7.62150814e-10 + art_sys_143: -1.71793823e-13 + art_sys_144: -1.44153430e-13 + art_sys_145: -1.17086258e-12 + art_sys_146: 0.0 + art_sys_147: -1.06315039e-11 + art_sys_148: 9.33494458e-11 + art_sys_149: 9.33494458e-11 + art_sys_150: 2.88978598e-12 + art_sys_151: 2.88978598e-12 + art_sys_152: 4.80593629e-11 + art_sys_153: 7.16777073e-13 + art_sys_154: -9.51289365e-15 + art_sys_155: -8.59673561e-24 + art_sys_156: 8.00533857e-26 + art_sys_157: 2.17448577e-26 + art_sys_158: 0.0 + art_sys_159: -1.90305557e-09 + art_sys_160: -4.23624426e-11 + art_sys_161: -9.88253611e-10 + art_sys_162: -2.21198680e-11 + art_sys_163: 1.20361416e-10 + art_sys_164: 5.54426580e-11 + art_sys_165: 3.91875316e-13 + art_sys_166: -1.26345551e-19 + art_sys_167: -1.35793152e-19 + art_sys_168: 3.00643963e-20 + art_sys_169: -5.27807218e-21 + art_sys_170: -1.46460825e-21 + art_sys_171: 2.61660646e-21 + art_sys_172: -1.86591149e-20 + art_sys_173: 1.88234984e-21 + art_sys_174: 2.04303002e-22 + art_sys_175: 2.20612447e-25 + art_sys_176: 9.85592448e-23 + art_sys_177: -2.21272975e-24 + art_sys_178: -9.67673752e-24 + art_sys_179: -9.28523575e-24 + art_sys_180: -1.01417742e-22 + art_sys_181: 1.07113140e-24 + art_sys_182: 2.07311182e-23 + art_sys_183: 3.56540573e-25 + art_sys_184: 3.69762901e-28 + art_sys_185: 2.52378592e-27 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -24707,167 +24707,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: -3.31485043e-20 + art_sys_25: 3.31485043e-20 art_sys_26: -1.00060269e-18 - art_sys_27: 4.25850607e-18 - art_sys_28: 8.70347860e-19 - art_sys_29: -9.29308083e-16 - art_sys_30: -2.07034256e-33 - art_sys_31: 4.49710111e-33 - art_sys_32: -5.81596334e-15 - art_sys_33: -1.74778628e-14 - art_sys_34: -3.94250602e-32 - art_sys_35: 4.49117297e-32 - art_sys_36: 6.17948295e-32 - art_sys_37: -1.26845698e-32 + art_sys_27: -4.25850607e-18 + art_sys_28: -1.00372269e-36 + art_sys_29: 1.57758454e-36 + art_sys_30: -8.70347860e-19 + art_sys_31: 9.29308083e-16 + art_sys_32: 5.81596334e-15 + art_sys_33: 1.74778628e-14 + art_sys_34: -3.12324581e-32 + art_sys_35: -4.67323990e-32 + art_sys_36: -3.40994453e-32 + art_sys_37: -9.38913057e-33 art_sys_38: -3.46667439e-14 - art_sys_39: 6.47031933e-31 - art_sys_40: 1.67010761e-31 - art_sys_41: 7.41987151e-32 - art_sys_42: 2.99745590e-30 + art_sys_39: -1.29064588e-31 + art_sys_40: 1.12420367e-31 + art_sys_41: 1.21848731e-31 + art_sys_42: 2.59783317e-29 art_sys_43: 1.40762252e-12 art_sys_44: -2.27740325e-12 art_sys_45: 1.96665448e-11 - art_sys_46: -3.79581323e-28 - art_sys_47: 6.30047000e-28 - art_sys_48: 1.32298764e-27 - art_sys_49: 7.02560566e-11 - art_sys_50: -9.03450829e-25 - art_sys_51: -1.52022938e-14 - art_sys_52: -7.25521127e-15 - art_sys_53: 3.01482438e-10 - art_sys_54: -1.25357975e-22 - art_sys_55: 4.48476989e-20 - art_sys_56: 1.07068328e-19 - art_sys_57: -5.82866994e-23 - art_sys_58: -2.17633765e-26 - art_sys_59: 9.91385180e-15 - art_sys_60: 4.08498393e-15 - art_sys_61: -1.07528583e-15 - art_sys_62: -4.47115086e-16 - art_sys_63: -7.05689953e-16 - art_sys_64: -9.32691868e-10 - art_sys_65: -5.12645458e-17 - art_sys_66: -3.66633264e-17 - art_sys_67: 2.51536847e-17 - art_sys_68: -1.76530971e-09 - art_sys_69: 8.30286151e-09 - art_sys_70: -3.01625280e-21 - art_sys_71: 8.19557192e-21 - art_sys_72: 2.18801967e-09 - art_sys_73: 1.58480945e-22 - art_sys_74: -1.75130327e-20 - art_sys_75: -2.51376385e-17 - art_sys_76: 1.24187780e-17 - art_sys_77: 1.05934561e-18 - art_sys_78: 6.92136981e-20 - art_sys_79: 8.50755392e-18 - art_sys_80: 3.61854226e-20 - art_sys_81: 8.12747329e-19 - art_sys_82: 1.35082701e-18 - art_sys_83: -5.91312502e-07 - art_sys_84: 4.91844674e-18 - art_sys_85: -5.76899362e-19 - art_sys_86: 5.19856278e-08 - art_sys_87: -1.49494171e-18 - art_sys_88: 3.72733300e-19 - art_sys_89: 4.33807122e-06 - art_sys_90: -6.92997791e-19 - art_sys_91: -5.65179739e-19 - art_sys_92: -9.45348193e-16 - art_sys_93: 2.86962297e-07 - art_sys_94: 2.05761281e-05 - art_sys_95: -3.53002383e-17 - art_sys_96: 1.38676284e-19 - art_sys_97: 2.74663489e-14 - art_sys_98: -8.85024290e-12 - art_sys_99: -1.40627739e-05 - art_sys_100: -6.49443565e-20 - art_sys_101: -2.81598069e-19 - art_sys_102: 3.42177055e-12 - art_sys_103: -5.29025065e-05 - art_sys_104: 3.40273278e-12 - art_sys_105: 8.04906325e-05 - art_sys_106: 4.62645580e-12 - art_sys_107: -1.35721475e-12 - art_sys_108: 4.63395251e-06 - art_sys_109: 2.00955645e-12 - art_sys_110: 3.22842400e-11 - art_sys_111: 1.21593074e-05 - art_sys_112: 8.05319689e-13 - art_sys_113: -1.62664964e-12 - art_sys_114: 1.04092977e-12 - art_sys_115: -3.48428797e-11 - art_sys_116: 6.92264006e-12 - art_sys_117: -2.19088916e-20 - art_sys_118: 1.63128011e-11 - art_sys_119: 1.62187479e-05 - art_sys_120: -9.45604606e-06 - art_sys_121: 4.65258774e-06 - art_sys_122: -1.88529333e-06 - art_sys_123: -1.99040502e-09 - art_sys_124: 6.61759473e-07 - art_sys_125: 4.80034128e-11 - art_sys_126: -2.52568495e-07 - art_sys_127: -4.38594215e-11 - art_sys_128: 3.83392462e-08 - art_sys_129: -2.98507389e-12 - art_sys_130: -3.09246358e-11 - art_sys_131: -2.38609006e-11 - art_sys_132: -2.68954752e-16 - art_sys_133: -6.11186105e-13 - art_sys_134: -4.88527351e-09 - art_sys_135: 1.11922886e-19 - art_sys_136: 1.83414304e-19 - art_sys_137: 9.03714781e-20 - art_sys_138: 1.24261535e-21 - art_sys_139: 1.17915384e-19 - art_sys_140: -1.98354309e-20 - art_sys_141: 1.54421115e-13 - art_sys_142: 1.52091640e-21 - art_sys_143: 9.20807988e-17 - art_sys_144: 5.36268294e-15 - art_sys_145: -1.80433643e-15 - art_sys_146: 2.05204857e-16 - art_sys_147: 7.61340802e-17 - art_sys_148: 9.11637473e-18 - art_sys_149: -4.22194616e-17 - art_sys_150: -4.22707787e-17 - art_sys_151: -2.80162657e-17 - art_sys_152: -7.85142244e-19 - art_sys_153: -3.02073546e-18 - art_sys_154: 1.19623140e-18 - art_sys_155: -9.64014478e-19 - art_sys_156: -1.12154522e-20 - art_sys_157: 5.87041349e-19 - art_sys_158: 1.40979451e-19 - art_sys_159: -2.69393584e-20 - art_sys_160: -1.91655916e-20 - art_sys_161: 8.88945156e-24 - art_sys_162: 7.87259420e-23 - art_sys_163: -4.42331571e-23 - art_sys_164: -9.24758273e-22 - art_sys_165: -2.47645969e-22 - art_sys_166: 4.24418051e-23 - art_sys_167: 2.94194591e-22 - art_sys_168: -4.97023707e-12 - art_sys_169: 3.60435725e-23 - art_sys_170: -2.89775220e-13 - art_sys_171: 1.21314804e-12 - art_sys_172: 4.05318120e-22 - art_sys_173: -1.07923123e-24 - art_sys_174: -1.12695055e-13 - art_sys_175: 0.0 - art_sys_176: -1.58834652e-15 - art_sys_177: 0.0 - art_sys_178: 2.04900819e-17 - art_sys_179: -7.68131142e-21 - art_sys_180: -2.13015049e-24 - art_sys_181: 7.16108593e-30 - art_sys_182: 0.0 - art_sys_183: 4.80174932e-27 - art_sys_184: -2.65605310e-28 - art_sys_185: 2.51801178e-31 + art_sys_46: -1.72657857e-28 + art_sys_47: -1.49169163e-28 + art_sys_48: -1.51676706e-23 + art_sys_49: 4.84493002e-14 + art_sys_50: 3.30164646e-14 + art_sys_51: -3.70089781e-14 + art_sys_52: -2.65376976e-14 + art_sys_53: 9.43780218e-15 + art_sys_54: 3.88843821e-14 + art_sys_55: -7.02560566e-11 + art_sys_56: -3.01482438e-10 + art_sys_57: -5.32462713e-21 + art_sys_58: 7.46206680e-14 + art_sys_59: 1.72445962e-13 + art_sys_60: -7.50157393e-21 + art_sys_61: 3.85400179e-20 + art_sys_62: 1.79570593e-21 + art_sys_63: -9.32691868e-10 + art_sys_64: -2.06456366e-25 + art_sys_65: -2.47832219e-14 + art_sys_66: 3.70537336e-14 + art_sys_67: 1.65365324e-20 + art_sys_68: -1.76530863e-09 + art_sys_69: 8.30286157e-09 + art_sys_70: 1.80506336e-19 + art_sys_71: 1.24134595e-21 + art_sys_72: -2.22669270e-22 + art_sys_73: 5.59581659e-14 + art_sys_74: 7.56902512e-15 + art_sys_75: -9.85364369e-15 + art_sys_76: 5.50408299e-14 + art_sys_77: 6.92351565e-18 + art_sys_78: 2.18801968e-09 + art_sys_79: -2.67206379e-17 + art_sys_80: -9.72809748e-14 + art_sys_81: -9.25018889e-16 + art_sys_82: -1.08060065e-15 + art_sys_83: -2.71870974e-14 + art_sys_84: -9.09371030e-16 + art_sys_85: 1.36777769e-16 + art_sys_86: -2.69391983e-13 + art_sys_87: 2.94221545e-19 + art_sys_88: 1.23871145e-12 + art_sys_89: -4.00714978e-13 + art_sys_90: -3.21062976e-19 + art_sys_91: 5.91312365e-07 + art_sys_92: -1.44455805e-20 + art_sys_93: -3.94829155e-19 + art_sys_94: 2.52032178e-18 + art_sys_95: -5.19877176e-08 + art_sys_96: -4.49073112e-13 + art_sys_97: 4.33809975e-06 + art_sys_98: -3.11971772e-15 + art_sys_99: -5.68288119e-19 + art_sys_100: -2.86977268e-07 + art_sys_101: 1.53727458e-13 + art_sys_102: -1.33197921e-13 + art_sys_103: 2.05761297e-05 + art_sys_104: -4.31975850e-17 + art_sys_105: -1.37252573e-14 + art_sys_106: 7.06013434e-13 + art_sys_107: 8.60162571e-11 + art_sys_108: -6.22865299e-12 + art_sys_109: -9.22419282e-11 + art_sys_110: -1.40624756e-05 + art_sys_111: -3.96429070e-12 + art_sys_112: -5.29032672e-05 + art_sys_113: 4.83533322e-11 + art_sys_114: 1.14629202e-11 + art_sys_115: 8.04895262e-05 + art_sys_116: 2.52548611e-10 + art_sys_117: 2.14380780e-12 + art_sys_118: -4.63307177e-06 + art_sys_119: -2.56604619e-12 + art_sys_120: 7.42666661e-11 + art_sys_121: 1.21711905e-05 + art_sys_122: 3.66607138e-11 + art_sys_123: 2.86358478e-13 + art_sys_124: -1.62146662e-05 + art_sys_125: 3.19719097e-09 + art_sys_126: -9.45074287e-06 + art_sys_127: -3.90151411e-10 + art_sys_128: -4.65631288e-06 + art_sys_129: 1.25706479e-10 + art_sys_130: -1.88919171e-06 + art_sys_131: -2.92223466e-09 + art_sys_132: 3.06438796e-10 + art_sys_133: -6.60676020e-07 + art_sys_134: -7.38581898e-12 + art_sys_135: -3.32540104e-10 + art_sys_136: 2.50991706e-07 + art_sys_137: -4.23553810e-14 + art_sys_138: -5.27407034e-16 + art_sys_139: -5.89283722e-10 + art_sys_140: -4.01296565e-08 + art_sys_141: -2.79162433e-09 + art_sys_142: 2.22007835e-09 + art_sys_143: 3.99711945e-13 + art_sys_144: 2.95650784e-13 + art_sys_145: 2.48194246e-12 + art_sys_146: -0.0 + art_sys_147: 1.59718008e-11 + art_sys_148: -1.23079255e-10 + art_sys_149: -1.23079255e-10 + art_sys_150: -4.00807592e-11 + art_sys_151: -4.00807592e-11 + art_sys_152: -2.86067707e-11 + art_sys_153: 9.57814143e-13 + art_sys_154: 1.17901688e-14 + art_sys_155: 5.57392177e-24 + art_sys_156: -2.01288395e-25 + art_sys_157: -4.69168686e-26 + art_sys_158: -0.0 + art_sys_159: 2.65641236e-09 + art_sys_160: 3.52833771e-11 + art_sys_161: 1.77640873e-09 + art_sys_162: 3.92785123e-11 + art_sys_163: -2.88899241e-10 + art_sys_164: -1.09345134e-10 + art_sys_165: -6.75072008e-13 + art_sys_166: 2.61364914e-19 + art_sys_167: 2.79067892e-19 + art_sys_168: -6.55065611e-20 + art_sys_169: 9.27066242e-21 + art_sys_170: 2.69179239e-21 + art_sys_171: -4.53660322e-21 + art_sys_172: 3.24232839e-20 + art_sys_173: -3.20892902e-21 + art_sys_174: -3.52338056e-22 + art_sys_175: -4.14484218e-25 + art_sys_176: -1.47590214e-22 + art_sys_177: 1.47210207e-23 + art_sys_178: 1.73804342e-23 + art_sys_179: 2.14032288e-23 + art_sys_180: 2.04026217e-22 + art_sys_181: -2.46369954e-24 + art_sys_182: -3.75469750e-23 + art_sys_183: -6.36308118e-25 + art_sys_184: -7.54114677e-28 + art_sys_185: -4.96136076e-27 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -24998,167 +24998,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: -2.07360648e-21 + art_sys_25: 2.07360648e-21 art_sys_26: -7.78541478e-20 - art_sys_27: 3.20507614e-19 - art_sys_28: 2.55796041e-19 - art_sys_29: -1.11160223e-16 - art_sys_30: -2.47697707e-34 - art_sys_31: 4.76798164e-34 - art_sys_32: -5.12601756e-16 - art_sys_33: -1.78944666e-15 - art_sys_34: 2.24375026e-33 - art_sys_35: 5.09415471e-33 - art_sys_36: 6.56009953e-33 - art_sys_37: -1.44325883e-33 + art_sys_27: -3.20507614e-19 + art_sys_28: -7.44291629e-38 + art_sys_29: 1.18535657e-37 + art_sys_30: -2.55796041e-19 + art_sys_31: 1.11160223e-16 + art_sys_32: 5.12601756e-16 + art_sys_33: 1.78944666e-15 + art_sys_34: -2.93785935e-33 + art_sys_35: -4.76623940e-33 + art_sys_36: -3.89455863e-33 + art_sys_37: -9.79135530e-34 art_sys_38: -3.70207262e-15 - art_sys_39: 4.91001914e-32 - art_sys_40: 1.77029422e-32 - art_sys_41: 8.15884007e-33 - art_sys_42: 3.82701588e-31 + art_sys_39: -1.39284855e-32 + art_sys_40: 1.20768825e-32 + art_sys_41: 1.30258793e-32 + art_sys_42: 3.30088353e-30 art_sys_43: 1.78915522e-13 art_sys_44: -1.46727718e-13 art_sys_45: 1.93778207e-12 - art_sys_46: -3.67096832e-29 - art_sys_47: 6.10302349e-29 - art_sys_48: 1.30089823e-28 - art_sys_49: 6.93124683e-12 - art_sys_50: -8.26507253e-26 - art_sys_51: -6.29646858e-14 - art_sys_52: 1.06887875e-14 - art_sys_53: 2.75761600e-11 - art_sys_54: -1.14663091e-23 - art_sys_55: 4.10215376e-21 - art_sys_56: 9.79338421e-21 - art_sys_57: -5.30972877e-24 - art_sys_58: 5.89692314e-27 - art_sys_59: -9.35451984e-15 - art_sys_60: 6.28865287e-15 - art_sys_61: 5.30021098e-16 - art_sys_62: 6.31409765e-16 - art_sys_63: -2.97506609e-16 - art_sys_64: -6.06860050e-11 - art_sys_65: -1.80205794e-16 - art_sys_66: -1.69115966e-17 - art_sys_67: 8.49418463e-18 - art_sys_68: -3.35235546e-10 - art_sys_69: 1.77757640e-10 - art_sys_70: -2.02399509e-22 - art_sys_71: 5.16768208e-22 - art_sys_72: -2.62219540e-09 - art_sys_73: 6.02342535e-23 - art_sys_74: 1.56812135e-21 - art_sys_75: -2.47177366e-17 - art_sys_76: 3.18726530e-18 - art_sys_77: 6.44034572e-19 - art_sys_78: -1.13427416e-20 - art_sys_79: 1.13842866e-18 - art_sys_80: -7.78655243e-19 - art_sys_81: -2.62011984e-19 - art_sys_82: 8.76697903e-19 - art_sys_83: -6.69349390e-09 - art_sys_84: -5.88809346e-18 - art_sys_85: -1.10725111e-19 - art_sys_86: -4.37694871e-07 - art_sys_87: 1.74568475e-18 - art_sys_88: 1.86311614e-19 - art_sys_89: 4.70414369e-07 - art_sys_90: -2.22822891e-19 - art_sys_91: -2.53187771e-19 - art_sys_92: -1.63770656e-15 - art_sys_93: -3.31705944e-06 - art_sys_94: 5.09610702e-07 - art_sys_95: -2.75454881e-15 - art_sys_96: -1.73617417e-19 - art_sys_97: -6.80623399e-14 - art_sys_98: -1.31209100e-12 - art_sys_99: -1.49394559e-05 - art_sys_100: -7.83682857e-20 - art_sys_101: 2.54626909e-19 - art_sys_102: 6.30340851e-13 - art_sys_103: 1.07745613e-05 - art_sys_104: 1.09929002e-12 - art_sys_105: 3.93296676e-05 - art_sys_106: 1.55172243e-13 - art_sys_107: 3.35448707e-12 - art_sys_108: 5.99067782e-05 - art_sys_109: 9.71556784e-12 - art_sys_110: -6.49688005e-12 - art_sys_111: -4.51762769e-06 - art_sys_112: 9.36064031e-13 - art_sys_113: -1.65799501e-12 - art_sys_114: -6.98711698e-13 - art_sys_115: -6.77747446e-12 - art_sys_116: -4.02191224e-13 - art_sys_117: -1.10318866e-19 - art_sys_118: -5.31195884e-12 - art_sys_119: -9.66568662e-06 - art_sys_120: 1.17707249e-05 - art_sys_121: -6.80855012e-06 - art_sys_122: 3.19433676e-06 - art_sys_123: 9.15249506e-10 - art_sys_124: -1.21793152e-06 - art_sys_125: 5.63929975e-11 - art_sys_126: 4.91088316e-07 - art_sys_127: -1.40001149e-10 - art_sys_128: -7.90092093e-08 - art_sys_129: 2.65834419e-12 - art_sys_130: 1.44996138e-11 - art_sys_131: 1.81180480e-11 - art_sys_132: 5.24317344e-16 - art_sys_133: 1.30015958e-12 - art_sys_134: 1.03050080e-08 - art_sys_135: -1.37009171e-19 - art_sys_136: 2.98262397e-20 - art_sys_137: -8.29398779e-20 - art_sys_138: 2.94820837e-21 - art_sys_139: -4.61180550e-20 - art_sys_140: -1.15206584e-20 - art_sys_141: -3.27485170e-13 - art_sys_142: -1.44759472e-20 - art_sys_143: -1.95309781e-16 - art_sys_144: -8.67024717e-15 - art_sys_145: 3.07019387e-15 - art_sys_146: -8.83167400e-16 - art_sys_147: -1.40455741e-16 - art_sys_148: 5.76696256e-17 - art_sys_149: 6.62199068e-17 - art_sys_150: 7.74314797e-17 - art_sys_151: 4.45711569e-17 - art_sys_152: 1.58898508e-18 - art_sys_153: 4.81533763e-18 - art_sys_154: -1.82199287e-18 - art_sys_155: 1.44071171e-18 - art_sys_156: 1.45098154e-21 - art_sys_157: -9.26386202e-19 - art_sys_158: -2.13865025e-19 - art_sys_159: 4.02812357e-20 - art_sys_160: 3.03947260e-20 - art_sys_161: -1.89586420e-23 - art_sys_162: -1.13940098e-22 - art_sys_163: 4.86169011e-23 - art_sys_164: 1.56794578e-21 - art_sys_165: 3.22182221e-22 - art_sys_166: -5.75169905e-23 - art_sys_167: -1.11218482e-22 - art_sys_168: 1.05713952e-11 - art_sys_169: -3.39602947e-23 - art_sys_170: 6.16442574e-13 - art_sys_171: -2.57942041e-12 - art_sys_172: -6.66663781e-22 - art_sys_173: 2.02820881e-24 - art_sys_174: 2.39631754e-13 - art_sys_175: 0.0 - art_sys_176: 3.37718198e-15 - art_sys_177: 0.0 - art_sys_178: -4.35740090e-17 - art_sys_179: 1.62703228e-20 - art_sys_180: 3.92578091e-24 - art_sys_181: -1.98800160e-29 - art_sys_182: 0.0 - art_sys_183: -1.01712940e-26 - art_sys_184: 7.76670593e-28 - art_sys_185: 6.93537401e-31 + art_sys_46: -1.68437712e-29 + art_sys_47: -1.41304992e-29 + art_sys_48: -1.49639513e-24 + art_sys_49: 2.55310174e-15 + art_sys_50: 1.26112425e-14 + art_sys_51: 2.44509212e-14 + art_sys_52: 2.38944403e-14 + art_sys_53: -1.27135044e-14 + art_sys_54: -4.71088488e-14 + art_sys_55: -6.93124683e-12 + art_sys_56: -2.75761600e-11 + art_sys_57: -5.25313652e-22 + art_sys_58: -8.93375270e-14 + art_sys_59: -2.12325338e-13 + art_sys_60: -6.86156962e-22 + art_sys_61: 3.52518911e-21 + art_sys_62: 1.64250933e-22 + art_sys_63: -6.06860050e-11 + art_sys_64: -1.81051755e-26 + art_sys_65: 3.07439340e-14 + art_sys_66: -4.61949508e-14 + art_sys_67: 1.07592579e-21 + art_sys_68: -3.35235505e-10 + art_sys_69: 1.77757648e-10 + art_sys_70: 1.17449587e-20 + art_sys_71: 5.33811224e-23 + art_sys_72: -1.96914707e-22 + art_sys_73: -1.64720976e-14 + art_sys_74: -2.70053076e-14 + art_sys_75: 1.36338529e-14 + art_sys_76: -6.90007320e-14 + art_sys_77: -1.90942263e-18 + art_sys_78: -2.62219541e-09 + art_sys_79: 5.39029388e-16 + art_sys_80: 3.16130265e-14 + art_sys_81: -1.69961557e-15 + art_sys_82: 2.55078297e-16 + art_sys_83: 3.21293525e-14 + art_sys_84: 3.87861310e-16 + art_sys_85: 3.64747735e-17 + art_sys_86: -4.29917291e-13 + art_sys_87: 8.28802986e-22 + art_sys_88: -1.91736618e-13 + art_sys_89: -1.01263649e-12 + art_sys_90: -8.15908995e-21 + art_sys_91: 6.69316804e-09 + art_sys_92: 2.06725973e-19 + art_sys_93: -1.23452797e-19 + art_sys_94: -1.17596256e-17 + art_sys_95: 4.37694630e-07 + art_sys_96: -5.97221096e-12 + art_sys_97: 4.70415608e-07 + art_sys_98: -1.51516216e-17 + art_sys_99: -6.26865330e-21 + art_sys_100: 3.31715759e-06 + art_sys_101: 2.83212641e-15 + art_sys_102: -4.41525943e-15 + art_sys_103: 5.09616460e-07 + art_sys_104: -2.94971971e-17 + art_sys_105: -6.81055314e-15 + art_sys_106: 6.42828709e-12 + art_sys_107: -3.16857347e-11 + art_sys_108: 2.32995408e-12 + art_sys_109: 3.37120145e-11 + art_sys_110: -1.49391240e-05 + art_sys_111: 6.06879674e-13 + art_sys_112: 1.07743591e-05 + art_sys_113: -5.43725539e-11 + art_sys_114: -3.19757863e-12 + art_sys_115: 3.93291693e-05 + art_sys_116: 2.68352573e-10 + art_sys_117: 6.15867330e-12 + art_sys_118: -5.99066824e-05 + art_sys_119: -1.01074932e-11 + art_sys_120: 2.61264711e-11 + art_sys_121: -4.53227687e-06 + art_sys_122: 3.32077440e-11 + art_sys_123: 6.99358125e-12 + art_sys_124: 9.65992977e-06 + art_sys_125: 4.16473317e-09 + art_sys_126: 1.17688723e-05 + art_sys_127: -5.48661790e-10 + art_sys_128: 6.81203246e-06 + art_sys_129: 3.03020726e-10 + art_sys_130: 3.19801714e-06 + art_sys_131: 5.02214031e-09 + art_sys_132: 8.88377266e-10 + art_sys_133: 1.21780647e-06 + art_sys_134: 1.39433510e-11 + art_sys_135: 1.17052629e-09 + art_sys_136: -4.88537170e-07 + art_sys_137: 3.60295761e-13 + art_sys_138: -1.55607387e-17 + art_sys_139: 1.15789929e-09 + art_sys_140: 8.19373460e-08 + art_sys_141: 5.07185820e-09 + art_sys_142: -5.33800621e-09 + art_sys_143: -8.82523200e-13 + art_sys_144: -5.79145241e-13 + art_sys_145: -5.21317736e-12 + art_sys_146: 0.0 + art_sys_147: -2.53956127e-11 + art_sys_148: 2.00333710e-10 + art_sys_149: 2.00333710e-10 + art_sys_150: 6.95912730e-11 + art_sys_151: 6.95912730e-11 + art_sys_152: 3.30481560e-11 + art_sys_153: -8.43863476e-13 + art_sys_154: -1.99710343e-14 + art_sys_155: -2.93345886e-24 + art_sys_156: 2.40554369e-25 + art_sys_157: 8.93947760e-26 + art_sys_158: -0.0 + art_sys_159: -3.00098306e-09 + art_sys_160: 2.82514117e-11 + art_sys_161: -2.94040700e-09 + art_sys_162: -6.46311713e-11 + art_sys_163: 6.23219705e-10 + art_sys_164: 2.10981920e-10 + art_sys_165: 1.30729293e-12 + art_sys_166: -5.44382555e-19 + art_sys_167: -5.82923441e-19 + art_sys_168: 1.42732919e-19 + art_sys_169: -1.62501116e-20 + art_sys_170: -4.61030340e-21 + art_sys_171: 7.59076706e-21 + art_sys_172: -5.05103292e-20 + art_sys_173: 4.70148489e-21 + art_sys_174: 5.35933222e-22 + art_sys_175: 8.20855922e-25 + art_sys_176: 1.68066677e-22 + art_sys_177: -4.81286688e-23 + art_sys_178: -3.01900656e-23 + art_sys_179: -4.69335706e-23 + art_sys_180: -3.95657043e-22 + art_sys_181: 5.48432582e-24 + art_sys_182: 6.25243641e-23 + art_sys_183: 1.04497077e-24 + art_sys_184: 1.28387942e-27 + art_sys_185: 9.27724196e-27 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -25289,167 +25289,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: -1.12489355e-22 + art_sys_25: 1.12489355e-22 art_sys_26: -5.31379748e-21 - art_sys_27: 2.11580575e-20 - art_sys_28: 2.82332336e-20 - art_sys_29: -9.75789715e-18 - art_sys_30: -2.17455164e-35 - art_sys_31: 4.21880005e-35 - art_sys_32: -4.02943960e-17 - art_sys_33: -1.48413920e-16 - art_sys_34: 4.26485270e-35 - art_sys_35: 4.35724144e-34 - art_sys_36: 5.46712141e-34 - art_sys_37: -1.18638173e-34 + art_sys_27: -2.11580575e-20 + art_sys_28: -4.83704653e-39 + art_sys_29: 7.81197097e-39 + art_sys_30: -2.82332336e-20 + art_sys_31: 9.75789715e-18 + art_sys_32: 4.02943960e-17 + art_sys_33: 1.48413920e-16 + art_sys_34: -2.36916060e-34 + art_sys_35: -3.94717357e-34 + art_sys_36: -3.51978726e-34 + art_sys_37: -8.17142660e-35 art_sys_38: -3.04767719e-16 - art_sys_39: 4.95423786e-33 - art_sys_40: 1.44961897e-33 - art_sys_41: 6.80536307e-34 - art_sys_42: 3.25702186e-32 + art_sys_39: -1.14389892e-33 + art_sys_40: 9.96296649e-34 + art_sys_41: 1.07561801e-33 + art_sys_42: 2.80857384e-31 art_sys_43: 1.52166445e-14 art_sys_44: -6.59423827e-15 art_sys_45: 1.48124723e-13 - art_sys_46: -2.78061910e-30 - art_sys_47: 5.05715278e-30 - art_sys_48: 9.92735607e-30 - art_sys_49: 3.98352832e-14 - art_sys_50: -1.08590654e-26 - art_sys_51: 7.50704188e-14 - art_sys_52: -1.05544925e-15 - art_sys_53: 3.62951697e-12 - art_sys_54: -1.50917226e-24 - art_sys_55: 5.39916993e-22 - art_sys_56: 1.28898492e-21 - art_sys_57: -6.99659457e-25 - art_sys_58: 5.61647788e-28 - art_sys_59: -1.28805399e-14 - art_sys_60: -1.32048549e-15 - art_sys_61: 2.09153474e-15 - art_sys_62: 1.74541876e-15 - art_sys_63: 3.29387305e-16 - art_sys_64: -4.60741144e-12 - art_sys_65: -1.54870943e-16 - art_sys_66: -7.86384748e-17 - art_sys_67: 1.80737645e-17 - art_sys_68: -9.99934194e-11 - art_sys_69: 1.41906116e-10 - art_sys_70: -1.76484815e-23 - art_sys_71: 3.35530092e-23 - art_sys_72: -2.39730403e-10 - art_sys_73: -2.06452596e-24 - art_sys_74: 1.50189470e-22 - art_sys_75: 5.21994683e-18 - art_sys_76: -1.46752721e-17 - art_sys_77: 9.39290230e-18 - art_sys_78: -1.82448348e-21 - art_sys_79: 3.69877822e-19 - art_sys_80: -2.50537353e-18 - art_sys_81: 3.06536373e-18 - art_sys_82: -1.00580382e-18 - art_sys_83: 3.81675796e-08 - art_sys_84: -5.37997594e-19 - art_sys_85: -3.29241311e-20 - art_sys_86: -7.00293833e-08 - art_sys_87: 1.61888423e-19 - art_sys_88: 2.00780097e-19 - art_sys_89: -3.00711758e-07 - art_sys_90: 8.65261787e-21 - art_sys_91: -6.60502626e-20 - art_sys_92: -1.85565179e-16 - art_sys_93: -5.01619547e-07 - art_sys_94: -2.33100496e-06 - art_sys_95: -4.15305764e-16 - art_sys_96: -1.33737268e-20 - art_sys_97: -1.26044822e-14 - art_sys_98: 5.63337535e-13 - art_sys_99: -2.27069941e-07 - art_sys_100: 1.64160055e-19 - art_sys_101: -2.18490188e-19 - art_sys_102: -1.99775885e-13 - art_sys_103: 1.06822466e-05 - art_sys_104: -1.31406903e-13 - art_sys_105: -7.98569803e-06 - art_sys_106: -5.48530157e-13 - art_sys_107: 6.16741668e-13 - art_sys_108: 2.75222219e-05 - art_sys_109: 1.14003381e-12 - art_sys_110: -6.50623568e-12 - art_sys_111: -4.46018445e-05 - art_sys_112: 3.01933777e-15 - art_sys_113: -2.04486328e-14 - art_sys_114: -2.10683313e-13 - art_sys_115: 1.37896691e-11 - art_sys_116: 8.22859786e-13 - art_sys_117: 1.65951057e-21 - art_sys_118: -2.64843520e-11 - art_sys_119: 3.38479651e-06 - art_sys_120: -7.37352081e-06 - art_sys_121: 8.74857945e-06 - art_sys_122: -4.86568282e-06 - art_sys_123: 7.64611897e-09 - art_sys_124: 2.11968925e-06 - art_sys_125: -2.20981247e-10 - art_sys_126: -9.28338899e-07 - art_sys_127: 2.90884461e-10 - art_sys_128: 1.61663212e-07 - art_sys_129: 1.30798742e-12 - art_sys_130: 4.18562026e-11 - art_sys_131: 3.16327643e-11 - art_sys_132: -1.10504477e-15 - art_sys_133: -2.83177777e-12 - art_sys_134: -2.17403039e-08 - art_sys_135: -5.45143088e-21 - art_sys_136: -6.83944979e-20 - art_sys_137: -7.12111671e-20 - art_sys_138: -1.58125912e-19 - art_sys_139: -4.59304329e-19 - art_sys_140: 7.45764208e-20 - art_sys_141: 7.05678113e-13 - art_sys_142: 3.09237533e-20 - art_sys_143: 4.20946586e-16 - art_sys_144: 1.28405497e-14 - art_sys_145: -4.86036625e-15 - art_sys_146: 1.73768673e-15 - art_sys_147: 3.62301539e-16 - art_sys_148: -3.52768090e-18 - art_sys_149: -1.23189420e-16 - art_sys_150: -1.18988605e-16 - art_sys_151: -7.29055661e-17 - art_sys_152: -3.07611595e-18 - art_sys_153: -7.04596469e-18 - art_sys_154: 2.44417841e-18 - art_sys_155: -1.89562643e-18 - art_sys_156: 4.01814785e-20 - art_sys_157: 1.32961272e-18 - art_sys_158: 2.87725783e-19 - art_sys_159: -5.30441219e-20 - art_sys_160: -4.33679188e-20 - art_sys_161: 2.09749921e-23 - art_sys_162: 1.29374182e-22 - art_sys_163: 1.78812591e-23 - art_sys_164: -2.61928161e-21 - art_sys_165: -4.55249955e-22 - art_sys_166: 1.24626368e-22 - art_sys_167: 1.03732378e-21 - art_sys_168: -2.30415959e-11 - art_sys_169: 7.27935347e-23 - art_sys_170: -1.34444629e-12 - art_sys_171: 5.61651989e-12 - art_sys_172: 9.88939514e-22 - art_sys_173: -3.32693250e-24 - art_sys_174: -5.21913341e-13 - art_sys_175: 0.0 - art_sys_176: -7.35296379e-15 - art_sys_177: 0.0 - art_sys_178: 9.48957484e-17 - art_sys_179: -3.52841494e-20 - art_sys_180: -7.65333088e-24 - art_sys_181: 5.47344218e-29 - art_sys_182: 0.0 - art_sys_183: 2.20651896e-26 - art_sys_184: -1.72503595e-27 - art_sys_185: -3.93233143e-30 + art_sys_46: -1.26575570e-30 + art_sys_47: -1.06013656e-30 + art_sys_48: -8.60179251e-27 + art_sys_49: -2.92036682e-14 + art_sys_50: -9.10315954e-15 + art_sys_51: 8.99527096e-15 + art_sys_52: -7.10704817e-14 + art_sys_53: 1.27655850e-14 + art_sys_54: 6.17340500e-14 + art_sys_55: -3.98352832e-14 + art_sys_56: -3.62951697e-12 + art_sys_57: -3.01532780e-24 + art_sys_58: 1.16740806e-13 + art_sys_59: 2.74707079e-13 + art_sys_60: -9.03113799e-23 + art_sys_61: 4.63996399e-22 + art_sys_62: 2.16182993e-23 + art_sys_63: -4.60741144e-12 + art_sys_64: -2.29242359e-27 + art_sys_65: -4.02500681e-14 + art_sys_66: 6.05653964e-14 + art_sys_67: 8.16953275e-23 + art_sys_68: -9.99933969e-11 + art_sys_69: 1.41906119e-10 + art_sys_70: 8.91813557e-22 + art_sys_71: -5.25618087e-24 + art_sys_72: -8.46915545e-23 + art_sys_73: -2.75900427e-14 + art_sys_74: -1.30007083e-14 + art_sys_75: -2.30056169e-14 + art_sys_76: 9.08150958e-14 + art_sys_77: 6.94986418e-21 + art_sys_78: -2.39730404e-10 + art_sys_79: -2.01563935e-15 + art_sys_80: -3.79902377e-14 + art_sys_81: 7.42010002e-16 + art_sys_82: 2.41965866e-16 + art_sys_83: -4.50274624e-14 + art_sys_84: -5.77396207e-16 + art_sys_85: 4.87759124e-16 + art_sys_86: 1.75266126e-14 + art_sys_87: 3.74747499e-21 + art_sys_88: -2.21664414e-13 + art_sys_89: -3.37917945e-13 + art_sys_90: -5.58310042e-21 + art_sys_91: -3.81676201e-08 + art_sys_92: 2.12566945e-20 + art_sys_93: -3.37506408e-20 + art_sys_94: -6.01464222e-19 + art_sys_95: 7.00295323e-08 + art_sys_96: -2.87448307e-12 + art_sys_97: -3.00714002e-07 + art_sys_98: 2.04254647e-16 + art_sys_99: 3.44866188e-20 + art_sys_100: 5.01635149e-07 + art_sys_101: -9.75648312e-15 + art_sys_102: 8.15473530e-15 + art_sys_103: -2.33100442e-06 + art_sys_104: -1.56741164e-18 + art_sys_105: 1.06695894e-16 + art_sys_106: 8.66667595e-13 + art_sys_107: -3.15287939e-10 + art_sys_108: 1.85058142e-11 + art_sys_109: 3.27927275e-12 + art_sys_110: -2.27063414e-07 + art_sys_111: 4.24799827e-13 + art_sys_112: 1.06823470e-05 + art_sys_113: 3.73444956e-11 + art_sys_114: -1.44529154e-12 + art_sys_115: -7.98556484e-06 + art_sys_116: 3.97569648e-12 + art_sys_117: 7.35532433e-13 + art_sys_118: -2.75252107e-05 + art_sys_119: -1.08525538e-12 + art_sys_120: -8.20645886e-12 + art_sys_121: -4.45967685e-05 + art_sys_122: -1.52876740e-13 + art_sys_123: 3.89466197e-12 + art_sys_124: -3.38180566e-06 + art_sys_125: 9.52209920e-10 + art_sys_126: -7.37164537e-06 + art_sys_127: -1.45471111e-10 + art_sys_128: -8.74719845e-06 + art_sys_129: 1.41075504e-10 + art_sys_130: -4.86319953e-06 + art_sys_131: -7.80709875e-09 + art_sys_132: 8.18072300e-10 + art_sys_133: -2.12578449e-06 + art_sys_134: -2.55885648e-11 + art_sys_135: -2.97750936e-10 + art_sys_136: 9.26089303e-07 + art_sys_137: -1.38982891e-12 + art_sys_138: 3.32207016e-17 + art_sys_139: -2.32731624e-09 + art_sys_140: -1.65263086e-07 + art_sys_141: -8.12396211e-09 + art_sys_142: 1.28296946e-08 + art_sys_143: 1.94037529e-12 + art_sys_144: 1.12121134e-12 + art_sys_145: 1.09322617e-11 + art_sys_146: -0.0 + art_sys_147: 3.89026601e-11 + art_sys_148: -3.40314211e-10 + art_sys_149: -3.40314211e-10 + art_sys_150: -1.76353640e-10 + art_sys_151: -1.76353640e-10 + art_sys_152: -1.10732257e-10 + art_sys_153: 1.13595053e-11 + art_sys_154: 1.50787532e-14 + art_sys_155: 2.37412321e-23 + art_sys_156: -4.71116189e-25 + art_sys_157: -7.54237285e-26 + art_sys_158: -0.0 + art_sys_159: 1.50619539e-09 + art_sys_160: -2.23645891e-10 + art_sys_161: 4.49968408e-09 + art_sys_162: 9.80502983e-11 + art_sys_163: -1.37319191e-09 + art_sys_164: -4.00712774e-10 + art_sys_165: -2.42458886e-12 + art_sys_166: 1.12457833e-18 + art_sys_167: 1.20232995e-18 + art_sys_168: -3.08058866e-19 + art_sys_169: 2.78266990e-20 + art_sys_170: 7.68190724e-21 + art_sys_171: -1.18804409e-20 + art_sys_172: 7.18682314e-20 + art_sys_173: -6.39870489e-21 + art_sys_174: -8.43328113e-22 + art_sys_175: -1.62062492e-24 + art_sys_176: -9.57418046e-23 + art_sys_177: 1.20621257e-22 + art_sys_178: 4.80398659e-23 + art_sys_179: 9.52560781e-23 + art_sys_180: 7.27524381e-22 + art_sys_181: -1.13933524e-23 + art_sys_182: -9.84152641e-23 + art_sys_183: -1.60417383e-24 + art_sys_184: -1.58097119e-27 + art_sys_185: -1.65477705e-26 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -25580,167 +25580,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: -4.53731186e-24 + art_sys_25: 4.53731186e-24 art_sys_26: -2.89285522e-22 - art_sys_27: 1.05725815e-21 - art_sys_28: 3.04681657e-21 - art_sys_29: -7.24121425e-19 - art_sys_30: -1.61391532e-36 - art_sys_31: 2.82711581e-36 - art_sys_32: -3.14358216e-18 - art_sys_33: -1.12030282e-17 - art_sys_34: -5.46796078e-36 - art_sys_35: 3.22752154e-35 - art_sys_36: 4.12404946e-35 - art_sys_37: -8.54563005e-36 + art_sys_27: -1.05725815e-21 + art_sys_28: -2.31269066e-40 + art_sys_29: 3.88827739e-40 + art_sys_30: -3.04681657e-21 + art_sys_31: 7.24121425e-19 + art_sys_32: 3.14358216e-18 + art_sys_33: 1.12030282e-17 + art_sys_34: -1.82212497e-35 + art_sys_35: -2.98125383e-35 + art_sys_36: -2.53545199e-35 + art_sys_37: -6.14767201e-36 art_sys_38: -2.25194584e-17 - art_sys_39: 3.28874747e-34 - art_sys_40: 1.07541335e-34 - art_sys_41: 5.01570659e-35 - art_sys_42: 2.22615526e-33 + art_sys_39: -8.40386742e-35 + art_sys_40: 7.35413186e-35 + art_sys_41: 7.96041019e-35 + art_sys_42: 1.92318322e-32 art_sys_43: 1.04198711e-15 art_sys_44: -9.90029664e-16 art_sys_45: 1.58573504e-14 - art_sys_46: -3.08269093e-31 - art_sys_47: 6.20994059e-31 - art_sys_48: 1.06474847e-30 - art_sys_49: -8.21882918e-14 - art_sys_50: -2.42797778e-27 - art_sys_51: 4.57848245e-14 - art_sys_52: -4.10511459e-15 - art_sys_53: 8.12229309e-13 - art_sys_54: -3.37729368e-25 - art_sys_55: 1.20825008e-22 - art_sys_56: 2.88454726e-22 - art_sys_57: -1.57804579e-25 - art_sys_58: -3.21210806e-28 - art_sys_59: -5.20867098e-15 - art_sys_60: -2.88626807e-15 - art_sys_61: 2.67162358e-16 - art_sys_62: 6.31760569e-16 - art_sys_63: -3.39206271e-17 - art_sys_64: -2.10866669e-12 - art_sys_65: 4.65818321e-17 - art_sys_66: -3.67302494e-17 - art_sys_67: 1.60666455e-17 - art_sys_68: -1.67922965e-11 - art_sys_69: 7.04432469e-11 - art_sys_70: -7.23619614e-24 - art_sys_71: 1.75406794e-23 - art_sys_72: 1.08278767e-10 - art_sys_73: -3.55882716e-24 - art_sys_74: -1.38628677e-22 - art_sys_75: 1.35269603e-17 - art_sys_76: -8.96953058e-18 - art_sys_77: 8.17581853e-18 - art_sys_78: 5.09705969e-22 - art_sys_79: 7.80127551e-20 - art_sys_80: -1.51404352e-18 - art_sys_81: 4.40327146e-18 - art_sys_82: -3.46686058e-20 - art_sys_83: 6.11112251e-09 - art_sys_84: 2.43151909e-19 - art_sys_85: -5.48726590e-21 - art_sys_86: 1.68015037e-08 - art_sys_87: -7.17751724e-20 - art_sys_88: -8.79021589e-20 - art_sys_89: -8.08795007e-08 - art_sys_90: 1.23926294e-20 - art_sys_91: -6.27219247e-21 - art_sys_92: 7.42422035e-17 - art_sys_93: 2.09709520e-07 - art_sys_94: -3.88619096e-07 - art_sys_95: 1.10058765e-16 - art_sys_96: 7.06960237e-21 - art_sys_97: 2.30151587e-15 - art_sys_98: 1.88156412e-13 - art_sys_99: 1.69312470e-06 - art_sys_100: -8.05321267e-20 - art_sys_101: -2.33464770e-19 - art_sys_102: -8.04642157e-14 - art_sys_103: 9.98971913e-08 - art_sys_104: -1.10421668e-13 - art_sys_105: -7.91574696e-06 - art_sys_106: -1.57364824e-13 - art_sys_107: -1.93821313e-13 - art_sys_108: -6.25023078e-06 - art_sys_109: -6.70215225e-13 - art_sys_110: -6.66649670e-14 - art_sys_111: -2.07644064e-05 - art_sys_112: -1.03050792e-13 - art_sys_113: 1.97730313e-13 - art_sys_114: 7.33452298e-14 - art_sys_115: 5.68713611e-12 - art_sys_116: 9.69893532e-13 - art_sys_117: 1.21285997e-20 - art_sys_118: -1.19633781e-11 - art_sys_119: 3.26864326e-05 - art_sys_120: 3.26700426e-06 - art_sys_121: -5.71950324e-06 - art_sys_122: 6.37197268e-06 - art_sys_123: 3.54996151e-09 - art_sys_124: -3.22973626e-06 - art_sys_125: -1.07637969e-10 - art_sys_126: 1.62048747e-06 - art_sys_127: -7.76016694e-11 - art_sys_128: -3.17929138e-07 - art_sys_129: 3.04047812e-12 - art_sys_130: -8.25986321e-12 - art_sys_131: -1.13159548e-11 - art_sys_132: 2.23731358e-15 - art_sys_133: 5.91094599e-12 - art_sys_134: 4.46560379e-08 - art_sys_135: 2.57781464e-19 - art_sys_136: 1.00539427e-19 - art_sys_137: -7.13157565e-21 - art_sys_138: -4.32043749e-20 - art_sys_139: -2.40331550e-19 - art_sys_140: -1.09689746e-19 - art_sys_141: -1.46561200e-12 - art_sys_142: -1.25354535e-19 - art_sys_143: -8.74408523e-16 - art_sys_144: -1.34363752e-14 - art_sys_145: 5.54078675e-15 - art_sys_146: -2.23137877e-15 - art_sys_147: -2.94385673e-16 - art_sys_148: 8.02022721e-17 - art_sys_149: 1.72525918e-16 - art_sys_150: 1.51584358e-16 - art_sys_151: 8.28247911e-17 - art_sys_152: 5.29429656e-18 - art_sys_153: 6.94506966e-18 - art_sys_154: -1.83227106e-18 - art_sys_155: 1.23697485e-18 - art_sys_156: -1.83097185e-19 - art_sys_157: -1.27428302e-18 - art_sys_158: -2.19864041e-19 - art_sys_159: 3.62807332e-20 - art_sys_160: 3.96909218e-20 - art_sys_161: 3.69674855e-23 - art_sys_162: -3.18548221e-23 - art_sys_163: -2.02777236e-22 - art_sys_164: 3.46033079e-21 - art_sys_165: 3.48423367e-22 - art_sys_166: -1.29676617e-22 - art_sys_167: -7.44815597e-22 - art_sys_168: 4.81320849e-11 - art_sys_169: -6.27847107e-23 - art_sys_170: 2.80946969e-12 - art_sys_171: -1.17228000e-11 - art_sys_172: -1.12358514e-21 - art_sys_173: 5.23870907e-24 - art_sys_174: 1.08950869e-12 - art_sys_175: 0.0 - art_sys_176: 1.53468677e-14 - art_sys_177: 0.0 - art_sys_178: -1.98079265e-16 - art_sys_179: 7.33403292e-20 - art_sys_180: 1.40860724e-23 - art_sys_181: -1.00338212e-28 - art_sys_182: 0.0 - art_sys_183: -4.60101326e-26 - art_sys_184: 3.31095566e-27 - art_sys_185: 6.14511921e-30 + art_sys_46: -1.30084330e-31 + art_sys_47: -1.22334463e-31 + art_sys_48: 1.77432371e-26 + art_sys_49: -7.42917282e-15 + art_sys_50: -5.95906354e-15 + art_sys_51: -1.25182628e-14 + art_sys_52: -4.16444992e-14 + art_sys_53: -5.15415624e-14 + art_sys_54: -9.41226329e-15 + art_sys_55: 8.21882918e-14 + art_sys_56: -8.12229309e-13 + art_sys_57: 6.23021578e-24 + art_sys_58: -2.87137160e-14 + art_sys_59: -1.36199756e-13 + art_sys_60: -2.02103152e-23 + art_sys_61: 1.03837057e-22 + art_sys_62: 4.83781718e-24 + art_sys_63: -2.10866669e-12 + art_sys_64: -5.43780432e-28 + art_sys_65: 2.24355980e-14 + art_sys_66: -3.58772925e-14 + art_sys_67: 3.73902141e-23 + art_sys_68: -1.67922873e-11 + art_sys_69: 7.04432475e-11 + art_sys_70: 4.08118703e-22 + art_sys_71: 1.20269206e-24 + art_sys_72: -1.34715804e-23 + art_sys_73: -3.44544267e-14 + art_sys_74: -2.01476725e-14 + art_sys_75: 3.45067229e-15 + art_sys_76: -5.67333336e-14 + art_sys_77: 1.58929306e-19 + art_sys_78: 1.08278767e-10 + art_sys_79: -2.08652250e-16 + art_sys_80: 2.78318515e-14 + art_sys_81: 8.30172299e-16 + art_sys_82: -4.79332257e-17 + art_sys_83: 2.88636712e-14 + art_sys_84: -7.46824342e-16 + art_sys_85: 1.38599478e-16 + art_sys_86: 2.20534915e-14 + art_sys_87: 2.46370496e-21 + art_sys_88: -1.87904792e-14 + art_sys_89: 1.09262866e-13 + art_sys_90: -2.66933267e-21 + art_sys_91: -6.11110826e-09 + art_sys_92: -7.08037349e-21 + art_sys_93: -4.05319626e-21 + art_sys_94: 5.56832310e-19 + art_sys_95: -1.68014627e-08 + art_sys_96: 5.70930911e-13 + art_sys_97: -8.08799130e-08 + art_sys_98: 3.14276546e-17 + art_sys_99: 5.34489698e-21 + art_sys_100: -2.09715615e-07 + art_sys_101: -1.63195857e-15 + art_sys_102: 1.49141387e-15 + art_sys_103: -3.88619673e-07 + art_sys_104: 1.59881468e-18 + art_sys_105: 5.26043450e-16 + art_sys_106: -4.20542899e-13 + art_sys_107: -1.47286700e-10 + art_sys_108: 5.60575482e-12 + art_sys_109: -2.43307286e-10 + art_sys_110: 1.69308730e-06 + art_sys_111: 7.22527182e-15 + art_sys_112: 9.99483591e-08 + art_sys_113: -6.83646189e-13 + art_sys_114: 6.59597889e-14 + art_sys_115: -7.91564198e-06 + art_sys_116: -3.04244992e-11 + art_sys_117: -3.95991222e-13 + art_sys_118: 6.24869877e-06 + art_sys_119: 8.46050863e-13 + art_sys_120: -4.75638793e-12 + art_sys_121: -2.07697554e-05 + art_sys_122: -3.89293838e-12 + art_sys_123: -1.52165342e-12 + art_sys_124: -3.26942245e-05 + art_sys_125: -5.66030345e-10 + art_sys_126: 3.28627457e-06 + art_sys_127: 7.09641400e-11 + art_sys_128: 5.71549664e-06 + art_sys_129: -6.84544638e-11 + art_sys_130: 6.35943488e-06 + art_sys_131: 9.07451001e-09 + art_sys_132: -5.34099204e-10 + art_sys_133: 3.23876099e-06 + art_sys_134: 3.68158105e-11 + art_sys_135: 1.31706085e-09 + art_sys_136: -1.61858768e-06 + art_sys_137: 3.16852597e-12 + art_sys_138: 4.49975304e-18 + art_sys_139: 4.73523769e-09 + art_sys_140: 3.21742606e-07 + art_sys_141: 1.91958721e-08 + art_sys_142: -2.60284786e-08 + art_sys_143: -3.86428413e-12 + art_sys_144: -2.05759346e-12 + art_sys_145: -2.20333643e-11 + art_sys_146: 0.0 + art_sys_147: -9.27083728e-11 + art_sys_148: 9.60466513e-10 + art_sys_149: 9.60466513e-10 + art_sys_150: 7.38018052e-11 + art_sys_151: 7.38018052e-11 + art_sys_152: 1.95228308e-10 + art_sys_153: 2.17730254e-11 + art_sys_154: -6.09848570e-14 + art_sys_155: 6.14992858e-24 + art_sys_156: -1.71203458e-25 + art_sys_157: 3.86520197e-26 + art_sys_158: -0.0 + art_sys_159: 2.90478550e-10 + art_sys_160: 6.00773671e-10 + art_sys_161: -5.51555371e-09 + art_sys_162: -1.21756874e-10 + art_sys_163: 2.62841162e-09 + art_sys_164: 7.59139597e-10 + art_sys_165: 5.42443565e-12 + art_sys_166: -2.28918076e-18 + art_sys_167: -2.47264699e-18 + art_sys_168: 6.39006933e-19 + art_sys_169: -4.72473596e-20 + art_sys_170: -1.53525039e-20 + art_sys_171: 1.77243486e-20 + art_sys_172: -6.96422992e-20 + art_sys_173: 4.08958890e-21 + art_sys_174: 1.15624082e-21 + art_sys_175: 3.25225269e-24 + art_sys_176: -3.39007893e-22 + art_sys_177: -2.69722168e-22 + art_sys_178: -6.03570150e-23 + art_sys_179: -1.83132982e-22 + art_sys_180: -1.23131752e-21 + art_sys_181: 2.19578722e-23 + art_sys_182: 1.27941201e-22 + art_sys_183: 2.03720916e-24 + art_sys_184: 9.88349743e-28 + art_sys_185: 2.57685878e-26 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -25871,167 +25871,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: -8.10606026e-26 + art_sys_25: 8.10606026e-26 art_sys_26: -9.28682551e-24 - art_sys_27: 1.46799097e-23 - art_sys_28: 3.84986226e-22 - art_sys_29: -5.77868369e-20 - art_sys_30: -1.28821789e-37 - art_sys_31: 2.58154899e-37 - art_sys_32: -2.59627848e-19 - art_sys_33: -9.18605772e-19 - art_sys_34: -2.41601348e-37 - art_sys_35: 2.63590715e-36 - art_sys_36: 3.35766789e-36 - art_sys_37: -7.60007848e-37 + art_sys_27: -1.46799097e-23 + art_sys_28: -8.92461733e-43 + art_sys_29: 5.08736127e-42 + art_sys_30: -3.84986226e-22 + art_sys_31: 5.77868369e-20 + art_sys_32: 2.59627848e-19 + art_sys_33: 9.18605772e-19 + art_sys_34: -1.49676093e-36 + art_sys_35: -2.44612691e-36 + art_sys_36: -2.03606313e-36 + art_sys_37: -5.03289548e-37 art_sys_38: -1.92392281e-18 - art_sys_39: 3.20013817e-35 - art_sys_40: 9.19876544e-36 - art_sys_41: 4.24249028e-36 - art_sys_42: 2.30708066e-34 + art_sys_39: -7.26082887e-36 + art_sys_40: 6.27831507e-36 + art_sys_41: 6.76210089e-36 + art_sys_42: 1.98335113e-33 art_sys_43: 1.07511785e-16 art_sys_44: -1.84313112e-16 art_sys_45: 2.64520084e-15 - art_sys_46: -5.26273553e-32 - art_sys_47: 9.90936181e-32 - art_sys_48: 1.77960849e-31 - art_sys_49: -9.20408277e-15 - art_sys_50: -4.34477204e-28 - art_sys_51: -1.47211110e-14 - art_sys_52: 2.73563417e-15 - art_sys_53: 1.45308429e-13 - art_sys_54: -6.04200539e-26 - art_sys_55: 2.16156838e-23 - art_sys_56: 5.16047657e-23 - art_sys_57: -2.83254466e-26 - art_sys_58: -9.39080435e-29 - art_sys_59: 1.87556921e-15 - art_sys_60: 4.00007298e-16 - art_sys_61: 5.45824373e-16 - art_sys_62: -1.98128297e-16 - art_sys_63: 2.08353812e-16 - art_sys_64: -5.63572239e-13 - art_sys_65: -6.27112745e-17 - art_sys_66: 1.03319553e-17 - art_sys_67: -1.28478698e-17 - art_sys_68: -5.38985918e-13 + art_sys_46: -2.09688786e-32 + art_sys_47: -2.13829610e-32 + art_sys_48: 1.98701467e-27 + art_sys_49: -1.76618630e-14 + art_sys_50: 2.12437685e-14 + art_sys_51: 2.82165860e-15 + art_sys_52: 6.52711576e-15 + art_sys_53: 1.19789847e-13 + art_sys_54: 2.71998328e-14 + art_sys_55: 9.20408277e-15 + art_sys_56: -1.45308429e-13 + art_sys_57: 6.97766699e-25 + art_sys_58: 4.86668904e-14 + art_sys_59: 2.42210340e-13 + art_sys_60: -3.61564261e-24 + art_sys_61: 1.85764111e-23 + art_sys_62: 8.65488291e-25 + art_sys_63: -5.63572239e-13 + art_sys_64: -1.02823317e-28 + art_sys_65: -4.04755892e-14 + art_sys_66: 6.22788672e-14 + art_sys_67: 9.99264728e-24 + art_sys_68: -5.38984443e-13 art_sys_69: 1.23383224e-11 - art_sys_70: -1.81326702e-24 - art_sys_71: 4.98884191e-24 - art_sys_72: 3.17596416e-11 - art_sys_73: -6.28994203e-25 - art_sys_74: -3.98030661e-23 - art_sys_75: 1.97154647e-18 - art_sys_76: 1.25320895e-18 - art_sys_77: 1.34290444e-18 - art_sys_78: 1.92731238e-22 - art_sys_79: 5.94102834e-21 - art_sys_80: 5.48316726e-19 - art_sys_81: 1.53432709e-18 - art_sys_82: 5.37059608e-19 - art_sys_83: -1.13805494e-09 - art_sys_84: 7.13051720e-20 - art_sys_85: -1.67695449e-22 - art_sys_86: 6.43563698e-09 - art_sys_87: -2.12056434e-20 - art_sys_88: -4.04101681e-20 - art_sys_89: 6.87477869e-09 - art_sys_90: 1.23877506e-21 - art_sys_91: 8.32416832e-22 - art_sys_92: 2.16016030e-17 - art_sys_93: 6.94450975e-08 - art_sys_94: 1.41778241e-07 - art_sys_95: 3.97241687e-17 - art_sys_96: 1.95680567e-21 - art_sys_97: 1.05838665e-15 - art_sys_98: -6.69482002e-15 - art_sys_99: 2.66268029e-07 - art_sys_100: -1.07526563e-19 - art_sys_101: 2.19304422e-19 - art_sys_102: 6.92866500e-17 - art_sys_103: -1.21021811e-06 - art_sys_104: -9.55352103e-15 - art_sys_105: -7.22916394e-08 - art_sys_106: 2.10607092e-14 - art_sys_107: -7.58790666e-14 - art_sys_108: -5.56791435e-06 - art_sys_109: -1.84654550e-13 - art_sys_110: 7.36435687e-13 - art_sys_111: 4.48139944e-06 - art_sys_112: -1.29945392e-14 - art_sys_113: 3.16654261e-14 - art_sys_114: 2.92192715e-14 - art_sys_115: -1.30834459e-12 - art_sys_116: -1.15482377e-13 - art_sys_117: -1.29062818e-21 - art_sys_118: 2.69263528e-12 - art_sys_119: 1.45762566e-05 - art_sys_120: 2.42265055e-05 - art_sys_121: 2.74719445e-06 - art_sys_122: -4.60817515e-06 - art_sys_123: -6.98940721e-10 - art_sys_124: 4.30457251e-06 - art_sys_125: -1.54276126e-11 - art_sys_126: -2.50963585e-06 - art_sys_127: 3.57655304e-10 - art_sys_128: 5.89663412e-07 - art_sys_129: -8.75233364e-12 - art_sys_130: -8.52154825e-12 - art_sys_131: -1.07867238e-11 - art_sys_132: -4.90408712e-15 - art_sys_133: -1.22750451e-11 - art_sys_134: -8.88489722e-08 - art_sys_135: 6.89955401e-20 - art_sys_136: 4.78627436e-20 - art_sys_137: 2.09997021e-20 - art_sys_138: 3.13356348e-20 - art_sys_139: 2.33222811e-20 - art_sys_140: 2.16647484e-20 - art_sys_141: 3.00292448e-12 - art_sys_142: 2.04360133e-19 - art_sys_143: 1.79184777e-15 - art_sys_144: 1.24776659e-14 - art_sys_145: -6.87295089e-15 - art_sys_146: 3.36967774e-15 - art_sys_147: 6.37715059e-16 - art_sys_148: -1.34674177e-17 - art_sys_149: -2.83570052e-16 - art_sys_150: -1.62053268e-16 - art_sys_151: -1.05960141e-16 - art_sys_152: -9.14739985e-18 - art_sys_153: -5.67821144e-18 - art_sys_154: 2.42586078e-19 - art_sys_155: 1.41127021e-19 - art_sys_156: 4.61083823e-19 - art_sys_157: 9.40036272e-19 - art_sys_158: 4.96956732e-20 - art_sys_159: 1.55036398e-22 - art_sys_160: -2.73464151e-20 - art_sys_161: -1.67791250e-22 - art_sys_162: -1.89418530e-22 - art_sys_163: 4.95945527e-22 - art_sys_164: -4.32360816e-21 - art_sys_165: -7.34637597e-23 - art_sys_166: 1.52508136e-22 - art_sys_167: 1.10898819e-21 - art_sys_168: -1.00106155e-10 - art_sys_169: 2.74780773e-23 - art_sys_170: -5.84785047e-12 - art_sys_171: 2.43503379e-11 - art_sys_172: 1.21578618e-21 - art_sys_173: -8.98730122e-24 - art_sys_174: -2.26382041e-12 - art_sys_175: 0.0 - art_sys_176: -3.18738800e-14 - art_sys_177: 0.0 - art_sys_178: 4.11476942e-16 - art_sys_179: -1.51911021e-19 - art_sys_180: -2.86911716e-23 - art_sys_181: 2.13087708e-28 - art_sys_182: 0.0 - art_sys_183: 9.54838051e-26 - art_sys_184: -6.97333616e-27 - art_sys_185: -1.17050536e-29 + art_sys_70: 1.09069886e-22 + art_sys_71: 8.14501404e-25 + art_sys_72: 8.82970000e-26 + art_sys_73: 6.12006772e-14 + art_sys_74: 1.36348670e-15 + art_sys_75: 2.29920004e-14 + art_sys_76: 9.90556346e-14 + art_sys_77: 3.51361308e-20 + art_sys_78: 3.17596417e-11 + art_sys_79: -6.92037271e-15 + art_sys_80: -4.64022084e-14 + art_sys_81: 1.67715348e-15 + art_sys_82: 1.00874960e-15 + art_sys_83: -4.90867843e-14 + art_sys_84: 4.86704421e-17 + art_sys_85: -3.05157214e-16 + art_sys_86: 4.53528370e-14 + art_sys_87: 4.75621489e-22 + art_sys_88: 4.19877425e-14 + art_sys_89: 9.46254377e-14 + art_sys_90: -4.62331925e-22 + art_sys_91: 1.13805937e-09 + art_sys_92: -2.23293729e-21 + art_sys_93: 2.19184659e-22 + art_sys_94: 1.27544588e-19 + art_sys_95: -6.43564044e-09 + art_sys_96: 5.55070945e-13 + art_sys_97: 6.87486221e-09 + art_sys_98: -6.28949475e-18 + art_sys_99: -1.08469956e-21 + art_sys_100: -6.94472011e-08 + art_sys_101: 2.80065434e-16 + art_sys_102: -2.14313550e-16 + art_sys_103: 1.41778111e-07 + art_sys_104: 3.34141370e-19 + art_sys_105: 7.66898619e-17 + art_sys_106: -1.29873824e-13 + art_sys_107: 3.10763222e-11 + art_sys_108: -4.57285206e-12 + art_sys_109: -2.45256721e-10 + art_sys_110: 2.66262035e-07 + art_sys_111: -2.78065093e-14 + art_sys_112: -1.21022320e-06 + art_sys_113: -7.62056219e-11 + art_sys_114: 1.10278962e-13 + art_sys_115: -7.22952411e-08 + art_sys_116: -4.76486566e-12 + art_sys_117: -1.18166280e-13 + art_sys_118: 5.56820421e-06 + art_sys_119: 2.11592348e-13 + art_sys_120: 2.99526324e-13 + art_sys_121: 4.44951131e-06 + art_sys_122: -5.52915572e-13 + art_sys_123: -8.21808148e-13 + art_sys_124: -1.45837784e-05 + art_sys_125: -2.46964740e-10 + art_sys_126: 2.42365795e-05 + art_sys_127: 3.55557807e-11 + art_sys_128: -2.73076821e-06 + art_sys_129: -6.67376442e-13 + art_sys_130: -4.56725912e-06 + art_sys_131: -7.01532122e-09 + art_sys_132: 3.12092997e-10 + art_sys_133: -4.33066479e-06 + art_sys_134: -4.96455013e-11 + art_sys_135: -2.33327701e-09 + art_sys_136: 2.51700018e-06 + art_sys_137: -7.87719698e-12 + art_sys_138: 1.35239559e-18 + art_sys_139: -8.45893345e-09 + art_sys_140: -5.88526503e-07 + art_sys_141: -3.25363906e-08 + art_sys_142: 5.52837862e-08 + art_sys_143: 7.41277252e-12 + art_sys_144: 3.60481925e-12 + art_sys_145: 4.35719405e-11 + art_sys_146: -0.0 + art_sys_147: 2.05936340e-10 + art_sys_148: -2.37357120e-09 + art_sys_149: -2.37357120e-09 + art_sys_150: -1.68962394e-10 + art_sys_151: -1.68962394e-10 + art_sys_152: -2.92542927e-10 + art_sys_153: -6.00659338e-11 + art_sys_154: 4.79444136e-14 + art_sys_155: -4.07411782e-23 + art_sys_156: -1.74288582e-25 + art_sys_157: 8.28260236e-26 + art_sys_158: -0.0 + art_sys_159: -5.82668135e-09 + art_sys_160: -8.95879829e-10 + art_sys_161: 5.94500684e-09 + art_sys_162: 1.34276032e-10 + art_sys_163: -5.17298019e-09 + art_sys_164: -1.35070345e-09 + art_sys_165: -1.05977926e-11 + art_sys_166: 4.40593881e-18 + art_sys_167: 4.77012344e-18 + art_sys_168: -1.25719049e-18 + art_sys_169: 7.62884099e-20 + art_sys_170: 2.58697389e-20 + art_sys_171: -2.48859954e-20 + art_sys_172: 6.21915202e-20 + art_sys_173: -4.99262611e-22 + art_sys_174: -1.83000115e-21 + art_sys_175: -6.24201738e-24 + art_sys_176: 7.26666431e-22 + art_sys_177: 4.50447812e-22 + art_sys_178: 4.99081049e-23 + art_sys_179: 2.80884589e-22 + art_sys_180: 1.81201732e-21 + art_sys_181: -3.54751327e-23 + art_sys_182: -1.61822883e-22 + art_sys_183: -2.44255945e-24 + art_sys_184: 6.98452951e-27 + art_sys_185: -3.61028329e-26 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -26162,167 +26162,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: 3.45845938e-27 + art_sys_25: -3.45845938e-27 art_sys_26: 5.34551977e-25 - art_sys_27: -5.64548878e-24 - art_sys_28: 4.29973547e-23 - art_sys_29: -4.87860419e-21 - art_sys_30: -1.08782974e-38 - art_sys_31: 1.79774478e-38 - art_sys_32: -1.62458361e-20 - art_sys_33: -6.90829894e-20 - art_sys_34: 7.82562337e-38 - art_sys_35: 2.17913408e-37 - art_sys_36: 2.60374047e-37 - art_sys_37: -7.04126906e-38 + art_sys_27: 5.64548878e-24 + art_sys_28: 1.67960226e-42 + art_sys_29: -2.13404167e-42 + art_sys_30: -4.29973547e-23 + art_sys_31: 4.87860419e-21 + art_sys_32: 1.62458361e-20 + art_sys_33: 6.90829894e-20 + art_sys_34: -1.01974736e-37 + art_sys_35: -1.83321610e-37 + art_sys_36: -1.73788903e-37 + art_sys_37: -3.85242898e-38 art_sys_38: -1.60488798e-19 - art_sys_39: 2.33785641e-36 - art_sys_40: 7.60461379e-37 - art_sys_41: 3.58548277e-37 - art_sys_42: 3.62358331e-35 + art_sys_39: -6.20800876e-37 + art_sys_40: 5.26049016e-37 + art_sys_41: 5.60153147e-37 + art_sys_42: 3.08577470e-34 art_sys_43: 1.67274544e-17 art_sys_44: -5.91693550e-18 art_sys_45: 3.08128012e-16 - art_sys_46: -6.06257259e-33 - art_sys_47: 1.02708109e-32 - art_sys_48: 2.06929675e-32 - art_sys_49: 2.65519013e-17 - art_sys_50: -4.28347049e-29 - art_sys_51: -9.84682380e-15 - art_sys_52: 7.74100937e-15 - art_sys_53: 1.43191210e-14 - art_sys_54: -5.95397136e-27 - art_sys_55: 2.13007319e-24 - art_sys_56: 5.08528578e-24 - art_sys_57: -2.78090229e-27 - art_sys_58: -5.88396700e-30 - art_sys_59: 1.35459465e-15 - art_sys_60: -1.01317337e-16 - art_sys_61: -1.56830962e-17 - art_sys_62: 1.86661022e-17 - art_sys_63: 1.85793442e-16 - art_sys_64: -6.72824031e-14 - art_sys_65: -6.41475285e-17 - art_sys_66: -1.38952121e-18 - art_sys_67: -2.42080664e-18 - art_sys_68: 3.99351500e-13 - art_sys_69: 1.70142497e-13 - art_sys_70: -2.01860666e-25 - art_sys_71: 6.31154040e-25 - art_sys_72: 1.75953574e-12 - art_sys_73: 1.35215470e-26 - art_sys_74: -3.16879634e-24 - art_sys_75: -2.71757012e-18 - art_sys_76: -2.56088141e-18 - art_sys_77: -9.96570141e-19 - art_sys_78: 2.01681648e-23 - art_sys_79: -1.22585541e-21 - art_sys_80: 2.47676176e-19 - art_sys_81: -7.58932687e-19 - art_sys_82: -6.54220588e-20 - art_sys_83: -4.67293913e-10 - art_sys_84: 3.95443841e-21 - art_sys_85: 1.31976767e-22 - art_sys_86: 5.83331999e-11 - art_sys_87: -1.19271660e-21 - art_sys_88: -1.24835756e-19 - art_sys_89: 5.49903910e-09 - art_sys_90: -3.58316379e-22 - art_sys_91: 3.40845408e-22 - art_sys_92: -7.07721305e-19 - art_sys_93: -3.12499169e-09 - art_sys_94: 4.90754677e-08 - art_sys_95: -1.73800323e-21 - art_sys_96: 1.46024870e-22 - art_sys_97: 3.58391605e-17 - art_sys_98: -1.16192359e-14 - art_sys_99: -1.03633480e-07 - art_sys_100: -2.25126564e-20 - art_sys_101: 9.84217996e-20 - art_sys_102: 4.60905737e-15 - art_sys_103: -1.75257937e-07 - art_sys_104: 5.11574676e-15 - art_sys_105: 8.76333693e-07 - art_sys_106: 1.84363212e-14 - art_sys_107: 9.67991755e-16 - art_sys_108: 6.49591859e-08 - art_sys_109: 1.64329819e-14 - art_sys_110: 1.07034249e-13 - art_sys_111: 4.04931046e-06 - art_sys_112: 6.64570966e-15 - art_sys_113: -1.24190290e-14 - art_sys_114: -3.30651246e-15 - art_sys_115: -9.63052386e-13 - art_sys_116: -1.52967746e-13 - art_sys_117: 1.20565191e-20 - art_sys_118: 2.18328274e-12 - art_sys_119: -3.48176490e-06 - art_sys_120: 1.01549315e-05 - art_sys_121: 1.77191867e-05 - art_sys_122: 2.61743556e-06 - art_sys_123: -7.16564091e-10 - art_sys_124: -3.22307007e-06 - art_sys_125: 6.39776528e-11 - art_sys_126: 3.48988443e-06 - art_sys_127: -6.63766124e-10 - art_sys_128: -1.05192474e-06 - art_sys_129: 2.27077127e-11 - art_sys_130: 8.58785721e-11 - art_sys_131: 8.91773748e-11 - art_sys_132: 1.09114870e-14 - art_sys_133: 2.62172670e-11 - art_sys_134: 1.71447212e-07 - art_sys_135: -1.96330973e-20 - art_sys_136: 2.86196808e-20 - art_sys_137: -6.04239880e-20 - art_sys_138: -4.38854158e-21 - art_sys_139: 8.80130283e-20 - art_sys_140: -5.14144027e-20 - art_sys_141: -6.22129568e-12 - art_sys_142: -2.21367441e-19 - art_sys_143: -3.71304303e-15 - art_sys_144: 8.52755465e-15 - art_sys_145: 2.28068449e-16 - art_sys_146: -3.03442622e-15 - art_sys_147: -7.80966687e-17 - art_sys_148: 2.08775594e-17 - art_sys_149: 1.97697812e-16 - art_sys_150: 8.32032672e-17 - art_sys_151: 2.29450904e-17 - art_sys_152: 1.02729952e-17 - art_sys_153: -6.98479390e-18 - art_sys_154: 5.89845966e-18 - art_sys_155: -4.66755657e-18 - art_sys_156: -1.00100485e-18 - art_sys_157: 1.42106951e-18 - art_sys_158: 5.22293334e-19 - art_sys_159: -1.10739402e-19 - art_sys_160: -5.27617528e-20 - art_sys_161: 5.01539301e-22 - art_sys_162: 7.35428202e-22 - art_sys_163: -6.93047336e-22 - art_sys_164: 1.53376565e-21 - art_sys_165: -1.04137027e-21 - art_sys_166: -5.63861605e-23 - art_sys_167: -2.55653798e-22 - art_sys_168: 2.14514182e-10 - art_sys_169: 1.01591617e-22 - art_sys_170: 1.25536479e-11 - art_sys_171: -5.20187711e-11 - art_sys_172: 5.53767299e-23 - art_sys_173: 1.38376660e-23 - art_sys_174: 4.83963962e-12 - art_sys_175: 0.0 - art_sys_176: 6.80735032e-14 - art_sys_177: 0.0 - art_sys_178: -8.79234676e-16 - art_sys_179: 3.23785840e-19 - art_sys_180: 6.04501479e-23 - art_sys_181: -4.61694579e-28 - art_sys_182: 0.0 - art_sys_183: -2.03835370e-25 - art_sys_184: 1.49000333e-26 - art_sys_185: 2.29604877e-29 + art_sys_46: -2.35605577e-33 + art_sys_47: -2.43265993e-33 + art_sys_48: -5.73591364e-30 + art_sys_49: -2.03664828e-15 + art_sys_50: 3.46529318e-15 + art_sys_51: -2.78677874e-16 + art_sys_52: 3.09066047e-14 + art_sys_53: -2.19562491e-14 + art_sys_54: -5.93958883e-14 + art_sys_55: -2.65519013e-17 + art_sys_56: -1.43191210e-14 + art_sys_57: -1.99697365e-27 + art_sys_58: -1.21109392e-13 + art_sys_59: -2.99853695e-13 + art_sys_60: -3.56295055e-25 + art_sys_61: 1.83055541e-24 + art_sys_62: 8.52878139e-26 + art_sys_63: -6.72824031e-14 + art_sys_64: -1.10445483e-29 + art_sys_65: 4.54688616e-14 + art_sys_66: -6.79758763e-14 + art_sys_67: 1.19288471e-24 + art_sys_68: 3.99351497e-13 + art_sys_69: 1.70142488e-13 + art_sys_70: 1.30206172e-23 + art_sys_71: 1.55233500e-25 + art_sys_72: 4.64914181e-25 + art_sys_73: -2.43777646e-15 + art_sys_74: 2.07727673e-14 + art_sys_75: 1.11284312e-15 + art_sys_76: -1.01728325e-13 + art_sys_77: 8.21832239e-22 + art_sys_78: 1.75953574e-12 + art_sys_79: -3.54183557e-15 + art_sys_80: 4.77554704e-14 + art_sys_81: -8.02055543e-16 + art_sys_82: 2.24704941e-16 + art_sys_83: 5.01103075e-14 + art_sys_84: 4.90231498e-16 + art_sys_85: -2.59157868e-17 + art_sys_86: -4.07498832e-14 + art_sys_87: 1.40211227e-23 + art_sys_88: -1.21303768e-14 + art_sys_89: -2.09167281e-14 + art_sys_90: -5.99158435e-24 + art_sys_91: 4.67293816e-10 + art_sys_92: -1.33348749e-22 + art_sys_93: 1.60363242e-22 + art_sys_94: 2.13233971e-21 + art_sys_95: -5.83360022e-11 + art_sys_96: 1.67762773e-14 + art_sys_97: 5.49907331e-09 + art_sys_98: -2.46609127e-18 + art_sys_99: -4.28156016e-22 + art_sys_100: 3.12506901e-09 + art_sys_101: 1.21440066e-16 + art_sys_102: -1.05129252e-16 + art_sys_103: 4.90754976e-08 + art_sys_104: -3.29964867e-20 + art_sys_105: -1.89177526e-17 + art_sys_106: 7.43185618e-15 + art_sys_107: 2.86028257e-11 + art_sys_108: -1.33202189e-12 + art_sys_109: 3.46784983e-11 + art_sys_110: -1.03631204e-07 + art_sys_111: -3.96883900e-15 + art_sys_112: -1.75264357e-07 + art_sys_113: -3.81246529e-11 + art_sys_114: 1.07195860e-14 + art_sys_115: 8.76321552e-07 + art_sys_116: 1.86551165e-12 + art_sys_117: 5.79298639e-15 + art_sys_118: -6.46647132e-08 + art_sys_119: -3.32399610e-14 + art_sys_120: 5.04964453e-13 + art_sys_121: 4.03998230e-06 + art_sys_122: 2.48751499e-13 + art_sys_123: 1.59119962e-13 + art_sys_124: 3.47935957e-06 + art_sys_125: 3.69215383e-11 + art_sys_126: 1.01464647e-05 + art_sys_127: -2.99415119e-12 + art_sys_128: -1.77241676e-05 + art_sys_129: -3.23634535e-12 + art_sys_130: 2.59278405e-06 + art_sys_131: 9.35844372e-09 + art_sys_132: -4.99897084e-10 + art_sys_133: 3.25016088e-06 + art_sys_134: 3.81419515e-11 + art_sys_135: 3.13008980e-09 + art_sys_136: -3.50187412e-06 + art_sys_137: 1.29284600e-11 + art_sys_138: -4.70507342e-18 + art_sys_139: 1.50724133e-08 + art_sys_140: 1.05191367e-06 + art_sys_141: 6.22383366e-08 + art_sys_142: -1.08426365e-07 + art_sys_143: -1.27825096e-11 + art_sys_144: -6.38774243e-12 + art_sys_145: -8.16872112e-11 + art_sys_146: 0.0 + art_sys_147: -4.87917265e-10 + art_sys_148: 4.52577500e-09 + art_sys_149: 4.52577500e-09 + art_sys_150: 1.04682611e-09 + art_sys_151: 1.04682611e-09 + art_sys_152: 8.40936254e-10 + art_sys_153: -7.52457909e-12 + art_sys_154: -4.32572528e-14 + art_sys_155: -1.17848690e-22 + art_sys_156: 5.43245688e-25 + art_sys_157: -1.06988810e-25 + art_sys_158: 0.0 + art_sys_159: -4.51906397e-09 + art_sys_160: 1.13117065e-09 + art_sys_161: -1.65779214e-09 + art_sys_162: -5.12145638e-11 + art_sys_163: 9.37261003e-09 + art_sys_164: 2.50785261e-09 + art_sys_165: 2.04639186e-11 + art_sys_166: -8.18138445e-18 + art_sys_167: -8.85342024e-18 + art_sys_168: 2.31167472e-18 + art_sys_169: -1.56693058e-19 + art_sys_170: -4.98660113e-20 + art_sys_171: 3.15223228e-20 + art_sys_172: 6.26558440e-20 + art_sys_173: -2.03978994e-20 + art_sys_174: 4.01045398e-21 + art_sys_175: 1.05336824e-23 + art_sys_176: -2.14722639e-21 + art_sys_177: -6.84794744e-22 + art_sys_178: 9.92749085e-23 + art_sys_179: -4.16687089e-22 + art_sys_180: -2.22421005e-21 + art_sys_181: 4.67185342e-23 + art_sys_182: 1.53004060e-22 + art_sys_183: 2.12270805e-24 + art_sys_184: -1.27035159e-26 + art_sys_185: 3.04187824e-26 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -26453,167 +26453,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: -2.73963393e-28 + art_sys_25: 2.73963393e-28 art_sys_26: 1.26257371e-25 - art_sys_27: -9.40195404e-25 - art_sys_28: 3.82134416e-24 - art_sys_29: -3.87583470e-22 - art_sys_30: -8.64376896e-40 - art_sys_31: 1.25494223e-39 - art_sys_32: 1.34793103e-24 - art_sys_33: -2.97903274e-21 - art_sys_34: 3.30980998e-39 - art_sys_35: 1.35735145e-38 - art_sys_36: 1.31088369e-38 - art_sys_37: -3.88202150e-39 + art_sys_27: 9.40195404e-25 + art_sys_28: 2.63352168e-43 + art_sys_29: -3.53095055e-43 + art_sys_30: -3.82134416e-24 + art_sys_31: 3.87583470e-22 + art_sys_32: -1.34793103e-24 + art_sys_33: 2.97903274e-21 + art_sys_34: -2.30773059e-39 + art_sys_35: -7.71349565e-39 + art_sys_36: -1.12431372e-38 + art_sys_37: -1.82379988e-39 art_sys_38: -7.73945229e-21 - art_sys_39: 9.17123741e-38 - art_sys_40: 3.51794949e-38 - art_sys_41: 1.94289386e-38 - art_sys_42: 4.85256259e-36 + art_sys_39: -3.04762001e-38 + art_sys_40: 2.59155973e-38 + art_sys_41: 2.73594091e-38 + art_sys_42: 4.10457254e-35 art_sys_43: 2.22514264e-18 art_sys_44: 4.16219887e-18 art_sys_45: 1.07453675e-17 - art_sys_46: -1.83930884e-34 - art_sys_47: 2.64109528e-34 - art_sys_48: 7.09413844e-34 - art_sys_49: 3.25602369e-17 - art_sys_50: -1.02400512e-30 - art_sys_51: 4.34752698e-15 - art_sys_52: 6.92154958e-16 - art_sys_53: 3.42054994e-16 - art_sys_54: -1.42228393e-28 - art_sys_55: 5.08831622e-26 - art_sys_56: 1.21477262e-25 - art_sys_57: -6.10189955e-29 - art_sys_58: 1.74724843e-30 - art_sys_59: -1.83840697e-15 - art_sys_60: 2.63271199e-15 - art_sys_61: 5.43938506e-17 - art_sys_62: 1.46021967e-16 - art_sys_63: 7.66703921e-17 - art_sys_64: -7.00077806e-16 - art_sys_65: -4.90040475e-17 - art_sys_66: -3.78226209e-18 - art_sys_67: 1.62545877e-18 - art_sys_68: 9.46962050e-14 - art_sys_69: -3.16461682e-13 - art_sys_70: 8.04783311e-28 - art_sys_71: 1.35390330e-26 - art_sys_72: -6.69926777e-13 - art_sys_73: 2.34181635e-26 - art_sys_74: 5.00835771e-25 - art_sys_75: -2.32633408e-18 - art_sys_76: -1.74960054e-18 - art_sys_77: -1.17137435e-18 - art_sys_78: -1.45993005e-24 - art_sys_79: -4.12372123e-22 - art_sys_80: -6.53937591e-19 - art_sys_81: 1.35163492e-20 - art_sys_82: -2.97772660e-19 - art_sys_83: -2.29703223e-11 - art_sys_84: -1.50234406e-21 - art_sys_85: 3.10079132e-23 - art_sys_86: -2.78346954e-10 - art_sys_87: 4.45065733e-22 - art_sys_88: 1.85558779e-19 - art_sys_89: 4.43488564e-10 - art_sys_90: -1.01090170e-22 - art_sys_91: 4.49321511e-23 - art_sys_92: -1.07460520e-18 - art_sys_93: -4.05720341e-09 - art_sys_94: -1.18066062e-09 - art_sys_95: -1.77596634e-18 - art_sys_96: -2.62746027e-23 - art_sys_97: -4.20658839e-17 - art_sys_98: -1.34459517e-15 - art_sys_99: -3.28395236e-08 - art_sys_100: -4.62548448e-20 - art_sys_101: -1.16715817e-21 - art_sys_102: 6.67250277e-16 - art_sys_103: 6.84203239e-08 - art_sys_104: 1.24107788e-15 - art_sys_105: 1.25816242e-07 - art_sys_106: 2.05753578e-15 - art_sys_107: 4.07463986e-15 - art_sys_108: 5.83128016e-07 - art_sys_109: 1.19714444e-14 - art_sys_110: -4.16082991e-14 - art_sys_111: 8.23839122e-09 - art_sys_112: 1.68636019e-15 - art_sys_113: -4.04403372e-15 - art_sys_114: -1.68458388e-15 - art_sys_115: 2.02109784e-14 - art_sys_116: 8.01847462e-14 - art_sys_117: -5.29253745e-20 - art_sys_118: 6.89616377e-13 - art_sys_119: -2.69506788e-06 - art_sys_120: -2.30165622e-06 - art_sys_121: 6.94322422e-06 - art_sys_122: 1.24177482e-05 - art_sys_123: -1.97849081e-10 - art_sys_124: 2.32511182e-06 - art_sys_125: -2.96757472e-11 - art_sys_126: -3.14534541e-06 - art_sys_127: 1.01456460e-09 - art_sys_128: 1.74473027e-06 - art_sys_129: -5.94208476e-11 - art_sys_130: -3.64661585e-10 - art_sys_131: -3.58689274e-10 - art_sys_132: -1.41467894e-14 - art_sys_133: -4.83922438e-11 - art_sys_134: -3.30939891e-07 - art_sys_135: 1.95409407e-20 - art_sys_136: -1.74186542e-20 - art_sys_137: -1.35238560e-20 - art_sys_138: -2.32092269e-20 - art_sys_139: -2.88024403e-20 - art_sys_140: -2.15700964e-20 - art_sys_141: 1.16379853e-11 - art_sys_142: 5.23683038e-19 - art_sys_143: 6.94511842e-15 - art_sys_144: -4.21527360e-15 - art_sys_145: -2.49275954e-15 - art_sys_146: 3.13477793e-15 - art_sys_147: 7.53163627e-16 - art_sys_148: 4.42466665e-17 - art_sys_149: -3.18367498e-16 - art_sys_150: -1.39829183e-16 - art_sys_151: -6.39860339e-17 - art_sys_152: -1.61883259e-17 - art_sys_153: 6.70155052e-18 - art_sys_154: -5.93238111e-18 - art_sys_155: 4.74423837e-18 - art_sys_156: 1.63615932e-18 - art_sys_157: -1.05664111e-18 - art_sys_158: -4.87123663e-19 - art_sys_159: 9.96995060e-20 - art_sys_160: 4.26463106e-20 - art_sys_161: -1.16283035e-21 - art_sys_162: -1.07889977e-21 - art_sys_163: 3.59447949e-22 - art_sys_164: -1.41768311e-21 - art_sys_165: 6.95436213e-22 - art_sys_166: 1.40862119e-22 - art_sys_167: 8.36797135e-22 - art_sys_168: -3.95440778e-10 - art_sys_169: -2.49698942e-23 - art_sys_170: -2.31288966e-11 - art_sys_171: 9.58931836e-11 - art_sys_172: 4.89890870e-22 - art_sys_173: -2.69749293e-23 - art_sys_174: -8.91994799e-12 - art_sys_175: 0.0 - art_sys_176: -1.25523547e-13 - art_sys_177: 0.0 - art_sys_178: 1.62109923e-15 - art_sys_179: -5.98134421e-19 - art_sys_180: -6.83040808e-23 - art_sys_181: 5.75630044e-28 - art_sys_182: 0.0 - art_sys_183: 3.75552942e-25 - art_sys_184: -2.73818884e-26 - art_sys_185: -3.59784455e-29 + art_sys_46: -6.41624851e-35 + art_sys_47: -6.21475432e-35 + art_sys_48: -7.02944434e-30 + art_sys_49: 2.66271287e-15 + art_sys_50: -1.67108538e-15 + art_sys_51: 7.89175985e-15 + art_sys_52: 5.60516090e-14 + art_sys_53: 2.84132769e-14 + art_sys_54: -2.96818258e-14 + art_sys_55: -3.25602369e-17 + art_sys_56: -3.42054994e-16 + art_sys_57: -2.46747486e-27 + art_sys_58: -4.80693877e-14 + art_sys_59: -6.29406756e-14 + art_sys_60: -8.51117809e-27 + art_sys_61: 4.37278123e-26 + art_sys_62: 2.03741456e-27 + art_sys_63: -7.00077806e-16 + art_sys_64: -3.52186554e-31 + art_sys_65: 5.76366405e-15 + art_sys_66: -7.45066343e-15 + art_sys_67: 1.23888448e-26 + art_sys_68: 9.46961624e-14 + art_sys_69: -3.16461685e-13 + art_sys_70: 1.35324744e-25 + art_sys_71: 1.29513345e-26 + art_sys_72: 9.61703432e-26 + art_sys_73: -7.88033539e-14 + art_sys_74: 7.21448965e-15 + art_sys_75: 9.24867873e-15 + art_sys_76: -8.47795010e-15 + art_sys_77: -9.59720035e-22 + art_sys_78: -6.69926779e-13 + art_sys_79: 4.60465707e-15 + art_sys_80: 3.49546752e-15 + art_sys_81: -3.27389920e-16 + art_sys_82: -8.28905717e-16 + art_sys_83: 3.59529470e-15 + art_sys_84: 5.20787785e-16 + art_sys_85: -8.60231624e-16 + art_sys_86: -3.43557233e-15 + art_sys_87: -1.07158311e-23 + art_sys_88: -2.46442387e-15 + art_sys_89: -9.75003906e-15 + art_sys_90: 1.18652363e-23 + art_sys_91: 2.29701095e-11 + art_sys_92: 4.60507717e-23 + art_sys_93: 2.56521978e-23 + art_sys_94: -3.26376337e-21 + art_sys_95: 2.78346732e-10 + art_sys_96: -5.72496372e-14 + art_sys_97: 4.43489208e-10 + art_sys_98: -1.08831440e-19 + art_sys_99: -1.99496328e-23 + art_sys_100: 4.05732413e-09 + art_sys_101: 6.67107728e-18 + art_sys_102: -7.03217624e-18 + art_sys_103: -1.18064796e-09 + art_sys_104: -2.00529865e-20 + art_sys_105: -6.52388914e-18 + art_sys_106: 7.81919354e-15 + art_sys_107: -1.23716386e-13 + art_sys_108: -1.00174247e-12 + art_sys_109: -1.08684517e-10 + art_sys_110: -3.28387943e-08 + art_sys_111: 8.66903500e-16 + art_sys_112: 6.84198301e-08 + art_sys_113: -9.32719486e-11 + art_sys_114: -4.13695282e-15 + art_sys_115: 1.25814982e-07 + art_sys_116: 5.88692540e-13 + art_sys_117: 6.80091096e-15 + art_sys_118: -5.83117943e-07 + art_sys_119: -1.72139902e-14 + art_sys_120: 4.47080753e-14 + art_sys_121: 1.35478509e-09 + art_sys_122: 7.35351258e-14 + art_sys_123: 1.06221893e-13 + art_sys_124: 2.69264726e-06 + art_sys_125: 2.80877324e-11 + art_sys_126: -2.28995895e-06 + art_sys_127: -2.52696227e-12 + art_sys_128: -6.94373017e-06 + art_sys_129: -6.96779893e-11 + art_sys_130: 1.24329974e-05 + art_sys_131: 6.57986343e-09 + art_sys_132: -7.06778954e-12 + art_sys_133: -2.33820824e-06 + art_sys_134: -1.69114581e-11 + art_sys_135: -3.18005744e-09 + art_sys_136: 3.16486257e-06 + art_sys_137: -2.94188855e-11 + art_sys_138: 7.36984464e-18 + art_sys_139: -2.40668084e-08 + art_sys_140: -1.74175890e-06 + art_sys_141: -1.07527326e-07 + art_sys_142: 2.20990376e-07 + art_sys_143: 2.12079330e-11 + art_sys_144: 1.02883813e-11 + art_sys_145: 1.60737339e-10 + art_sys_146: -0.0 + art_sys_147: 1.16970170e-09 + art_sys_148: -1.18463691e-08 + art_sys_149: -1.18463691e-08 + art_sys_150: -1.29280834e-09 + art_sys_151: -1.29280834e-09 + art_sys_152: -1.81865058e-09 + art_sys_153: -1.61124702e-10 + art_sys_154: 4.12249308e-14 + art_sys_155: 6.18516471e-23 + art_sys_156: -8.95641446e-25 + art_sys_157: -1.15672034e-25 + art_sys_158: 0.0 + art_sys_159: 7.47987625e-09 + art_sys_160: 1.13508494e-09 + art_sys_161: 2.18720200e-09 + art_sys_162: 8.47309516e-11 + art_sys_163: -1.65411789e-08 + art_sys_164: -4.13092730e-09 + art_sys_165: -4.06373186e-11 + art_sys_166: 1.49138694e-17 + art_sys_167: 1.62462297e-17 + art_sys_168: -4.24785461e-18 + art_sys_169: 2.75270758e-19 + art_sys_170: 7.46232012e-20 + art_sys_171: -5.61811502e-20 + art_sys_172: 8.99426772e-21 + art_sys_173: 3.15772069e-20 + art_sys_174: -5.44461459e-21 + art_sys_175: -2.04338409e-23 + art_sys_176: -5.35130855e-22 + art_sys_177: 9.52695930e-22 + art_sys_178: -3.05396132e-22 + art_sys_179: 4.43017665e-22 + art_sys_180: 2.55903600e-21 + art_sys_181: -5.72532267e-23 + art_sys_182: -2.34567833e-22 + art_sys_183: -3.53611257e-24 + art_sys_184: 5.35762707e-26 + art_sys_185: -2.91636771e-26 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -26744,167 +26744,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: -1.33919756e-28 + art_sys_25: 1.33919756e-28 art_sys_26: 1.52808715e-26 - art_sys_27: -1.07716143e-25 - art_sys_28: 2.26955421e-25 - art_sys_29: -1.60884049e-23 - art_sys_30: -3.59023208e-41 - art_sys_31: 1.92368930e-41 - art_sys_32: 2.43359680e-22 - art_sys_33: 4.17446253e-22 - art_sys_34: 2.72670423e-41 - art_sys_35: -4.58134198e-40 - art_sys_36: -1.16912340e-39 - art_sys_37: 4.34438751e-40 + art_sys_27: 1.07716143e-25 + art_sys_28: 2.98142509e-44 + art_sys_29: -4.03938137e-44 + art_sys_30: -2.26955421e-25 + art_sys_31: 1.60884049e-23 + art_sys_32: -2.43359680e-22 + art_sys_33: -4.17446253e-22 + art_sys_34: 1.02517738e-39 + art_sys_35: 1.15510213e-39 + art_sys_36: 1.89132528e-40 + art_sys_37: 1.96711028e-40 art_sys_38: 1.03573016e-21 - art_sys_39: -1.83498994e-38 - art_sys_40: -5.18527840e-39 - art_sys_41: -1.75382578e-39 - art_sys_42: 4.01027427e-37 + art_sys_39: 4.12035947e-39 + art_sys_40: -3.27563406e-39 + art_sys_41: -3.44256324e-39 + art_sys_42: 3.35859983e-36 art_sys_43: 1.82116329e-19 art_sys_44: 1.05863740e-18 art_sys_45: -3.43012312e-18 - art_sys_46: 7.36490799e-35 - art_sys_47: -1.06163762e-34 - art_sys_48: -2.33249632e-34 - art_sys_49: -2.48800195e-17 - art_sys_50: 3.13872053e-31 - art_sys_51: 2.80656306e-15 - art_sys_52: 1.48270877e-15 - art_sys_53: -1.04753648e-16 - art_sys_54: 4.35571813e-29 - art_sys_55: -1.55828648e-26 - art_sys_56: -3.72021575e-26 - art_sys_57: 2.15848091e-29 - art_sys_58: 4.83961520e-31 - art_sys_59: 4.72020252e-16 - art_sys_60: -2.15347981e-15 - art_sys_61: -1.14848269e-16 - art_sys_62: -1.44615029e-17 - art_sys_63: -5.82007966e-17 - art_sys_64: 1.10376361e-15 - art_sys_65: 1.24691288e-17 - art_sys_66: -1.35238815e-18 - art_sys_67: 3.62567197e-18 - art_sys_68: 1.12072355e-14 - art_sys_69: -6.99702115e-14 - art_sys_70: 3.88580193e-27 - art_sys_71: -8.98370209e-27 - art_sys_72: -1.76075952e-13 - art_sys_73: 4.79001926e-27 - art_sys_74: 1.73404312e-25 - art_sys_75: 3.00861661e-18 - art_sys_76: -6.51672938e-20 - art_sys_77: 3.20970960e-19 - art_sys_78: -7.41125046e-25 - art_sys_79: -5.98938569e-23 - art_sys_80: -1.94083968e-19 - art_sys_81: 3.22832699e-19 - art_sys_82: -1.08386803e-19 - art_sys_83: 1.49834850e-11 - art_sys_84: -3.95198663e-22 - art_sys_85: 3.64779619e-24 - art_sys_86: -4.65328019e-11 - art_sys_87: 1.17744563e-22 - art_sys_88: -1.71914778e-20 - art_sys_89: -1.88748135e-10 - art_sys_90: -6.36350093e-24 - art_sys_91: 2.05697538e-24 - art_sys_92: -1.42014265e-19 - art_sys_93: -4.17860386e-10 - art_sys_94: -2.77485661e-09 - art_sys_95: -2.79954371e-19 - art_sys_96: -1.13604127e-23 - art_sys_97: -8.33779324e-18 - art_sys_98: 3.43020620e-16 - art_sys_99: 1.37390235e-09 - art_sys_100: 1.28764463e-20 - art_sys_101: -9.75622312e-21 - art_sys_102: -1.17445286e-16 - art_sys_103: 2.18728156e-08 - art_sys_104: -6.20053946e-17 - art_sys_105: -5.03566072e-08 - art_sys_106: -7.61944270e-16 - art_sys_107: 5.33295400e-16 - art_sys_108: 7.29141751e-08 - art_sys_109: 8.49340062e-16 - art_sys_110: -1.33281978e-14 - art_sys_111: -4.16299930e-07 - art_sys_112: -1.65504369e-16 - art_sys_113: 1.42713207e-16 - art_sys_114: 6.21208675e-17 - art_sys_115: 9.10539685e-14 - art_sys_116: 4.30934170e-14 - art_sys_117: 6.17566570e-20 - art_sys_118: 7.03884275e-13 - art_sys_119: 6.60094069e-08 - art_sys_120: -1.80746694e-06 - art_sys_121: -1.82799829e-06 - art_sys_122: 4.39818048e-06 - art_sys_123: -7.21288703e-11 - art_sys_124: 9.13121249e-06 - art_sys_125: 2.24578767e-11 - art_sys_126: 2.06786833e-06 - art_sys_127: -1.24207325e-09 - art_sys_128: -2.13584641e-06 - art_sys_129: 7.16922884e-11 - art_sys_130: 4.45762974e-10 - art_sys_131: 4.54164703e-10 - art_sys_132: 7.16800551e-14 - art_sys_133: 1.12471908e-10 - art_sys_134: 4.86455668e-07 - art_sys_135: -1.26198272e-20 - art_sys_136: -1.59494549e-20 - art_sys_137: 3.68374579e-20 - art_sys_138: 7.37815221e-21 - art_sys_139: -3.54516529e-20 - art_sys_140: 5.94970049e-20 - art_sys_141: -2.40685917e-11 - art_sys_142: -1.11679460e-18 - art_sys_143: -1.43734025e-14 - art_sys_144: 1.31187729e-14 - art_sys_145: -1.46903119e-14 - art_sys_146: 5.15334013e-15 - art_sys_147: 1.49135236e-15 - art_sys_148: 1.87942374e-16 - art_sys_149: -2.92144832e-16 - art_sys_150: 2.54861667e-16 - art_sys_151: -8.02876095e-17 - art_sys_152: -1.23660218e-18 - art_sys_153: -5.77555835e-18 - art_sys_154: 2.41006894e-18 - art_sys_155: 5.67404206e-18 - art_sys_156: -1.31234303e-18 - art_sys_157: 2.10599048e-19 - art_sys_158: -8.94881185e-19 - art_sys_159: 2.42854147e-19 - art_sys_160: 6.10142880e-20 - art_sys_161: 2.99195233e-21 - art_sys_162: 8.68185650e-22 - art_sys_163: 4.30015623e-21 - art_sys_164: -1.18772054e-20 - art_sys_165: 2.82253797e-22 - art_sys_166: -2.39745684e-22 - art_sys_167: 9.75073381e-22 - art_sys_168: 9.29711529e-10 - art_sys_169: -2.46308970e-22 - art_sys_170: 5.46958107e-11 - art_sys_171: -2.23694229e-10 - art_sys_172: -5.58770224e-22 - art_sys_173: 6.40282155e-23 - art_sys_174: 2.08556413e-11 - art_sys_175: 0.0 - art_sys_176: 2.92425900e-13 - art_sys_177: 0.0 - art_sys_178: -3.78225174e-15 - art_sys_179: 1.39006253e-18 - art_sys_180: 4.20650182e-22 - art_sys_181: -2.97480235e-27 - art_sys_182: 0.0 - art_sys_183: -8.75962309e-25 - art_sys_184: 6.39445807e-26 - art_sys_185: 9.67464949e-29 + art_sys_46: 3.03845098e-35 + art_sys_47: 3.21007817e-35 + art_sys_48: 5.37134341e-30 + art_sys_49: -6.66324675e-15 + art_sys_50: 1.78808071e-15 + art_sys_51: 5.44559669e-15 + art_sys_52: 4.76703221e-14 + art_sys_53: -3.12060813e-14 + art_sys_54: -7.46290907e-14 + art_sys_55: 2.48800195e-17 + art_sys_56: 1.04753648e-16 + art_sys_57: 1.88561290e-27 + art_sys_58: -1.44463297e-13 + art_sys_59: -3.56401698e-13 + art_sys_60: 2.60609547e-27 + art_sys_61: -1.33909572e-26 + art_sys_62: -6.24413115e-28 + art_sys_63: 1.10376361e-15 + art_sys_64: -5.13612861e-31 + art_sys_65: 5.16218744e-14 + art_sys_66: -7.91357185e-14 + art_sys_67: -1.95738527e-26 + art_sys_68: 1.12072266e-14 + art_sys_69: -6.99702119e-14 + art_sys_70: -2.13633316e-25 + art_sys_71: -3.22856707e-28 + art_sys_72: 1.03968228e-26 + art_sys_73: -5.01780692e-15 + art_sys_74: -2.34869197e-14 + art_sys_75: 7.12342266e-15 + art_sys_76: -1.20395944e-13 + art_sys_77: -2.16373614e-22 + art_sys_78: -1.76075953e-13 + art_sys_79: 2.44381752e-15 + art_sys_80: 5.70173009e-14 + art_sys_81: -5.79490095e-16 + art_sys_82: 8.48157585e-16 + art_sys_83: 6.02030022e-14 + art_sys_84: 5.43831543e-16 + art_sys_85: 3.91922189e-17 + art_sys_86: -4.64211935e-14 + art_sys_87: -2.54771090e-24 + art_sys_88: -2.06485089e-14 + art_sys_89: -2.12470617e-14 + art_sys_90: 2.61652134e-24 + art_sys_91: -1.49835149e-11 + art_sys_92: 1.23529940e-23 + art_sys_93: 1.90721185e-24 + art_sys_94: -6.01319192e-22 + art_sys_95: 4.65329005e-11 + art_sys_96: 6.25198884e-15 + art_sys_97: -1.88749602e-10 + art_sys_98: 8.10399396e-20 + art_sys_99: 1.39311341e-23 + art_sys_100: 4.17873648e-10 + art_sys_101: -3.78243992e-18 + art_sys_102: 3.07439453e-18 + art_sys_103: -2.77485660e-09 + art_sys_104: -1.86961654e-21 + art_sys_105: -9.11557286e-20 + art_sys_106: 7.42499628e-16 + art_sys_107: -3.19845857e-12 + art_sys_108: -1.31594008e-12 + art_sys_109: -1.58606686e-10 + art_sys_110: 1.37387299e-09 + art_sys_111: 3.00445852e-16 + art_sys_112: 2.18732384e-08 + art_sys_113: -2.45901085e-11 + art_sys_114: -1.07153660e-15 + art_sys_115: -5.03558441e-08 + art_sys_116: -2.51904919e-14 + art_sys_117: 7.26466644e-16 + art_sys_118: -7.29381679e-08 + art_sys_119: -5.39323030e-16 + art_sys_120: -2.92744331e-14 + art_sys_121: -4.24751621e-07 + art_sys_122: -4.14898207e-15 + art_sys_123: -3.71523406e-15 + art_sys_124: -6.61467272e-08 + art_sys_125: -5.53038664e-13 + art_sys_126: -1.79599402e-06 + art_sys_127: 4.82681636e-13 + art_sys_128: 1.81446528e-06 + art_sys_129: -3.22494712e-11 + art_sys_130: 4.44832118e-06 + art_sys_131: -3.07996763e-09 + art_sys_132: 4.11752531e-10 + art_sys_133: -9.08761221e-06 + art_sys_134: -7.26200906e-11 + art_sys_135: 2.29390222e-09 + art_sys_136: -2.09593862e-06 + art_sys_137: 2.24123188e-11 + art_sys_138: -9.21744096e-18 + art_sys_139: 2.92280218e-08 + art_sys_140: 2.12062736e-06 + art_sys_141: 1.33620802e-07 + art_sys_142: -3.43962341e-07 + art_sys_143: -2.28066360e-11 + art_sys_144: -1.33258550e-11 + art_sys_145: -2.42628742e-10 + art_sys_146: 0.0 + art_sys_147: -2.02371795e-09 + art_sys_148: 1.78637946e-08 + art_sys_149: 1.78637946e-08 + art_sys_150: 5.68308174e-09 + art_sys_151: 5.68308174e-09 + art_sys_152: 3.40187115e-09 + art_sys_153: -2.72483298e-10 + art_sys_154: 3.05485628e-13 + art_sys_155: -7.55701084e-22 + art_sys_156: 3.22624065e-24 + art_sys_157: 2.23849213e-26 + art_sys_158: -0.0 + art_sys_159: 2.79978939e-09 + art_sys_160: 3.81602551e-10 + art_sys_161: 7.01623997e-09 + art_sys_162: 7.76051821e-11 + art_sys_163: 2.16577688e-08 + art_sys_164: 5.04568574e-09 + art_sys_165: 5.07470196e-11 + art_sys_166: -2.04206070e-17 + art_sys_167: -2.22801452e-17 + art_sys_168: 5.70309179e-18 + art_sys_169: -4.34240798e-19 + art_sys_170: -1.34684825e-19 + art_sys_171: 8.50797523e-20 + art_sys_172: 1.41682691e-19 + art_sys_173: -4.25239199e-20 + art_sys_174: 1.49756744e-20 + art_sys_175: 2.87557536e-23 + art_sys_176: -4.23653691e-22 + art_sys_177: 5.63672477e-22 + art_sys_178: 5.55692272e-22 + art_sys_179: -5.51303098e-23 + art_sys_180: -5.43217494e-22 + art_sys_181: -1.21856866e-23 + art_sys_182: 3.07100306e-22 + art_sys_183: 5.21015343e-24 + art_sys_184: -1.39828612e-26 + art_sys_185: -5.94573607e-26 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -27035,167 +27035,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: -1.78692266e-29 + art_sys_25: 1.78692266e-29 art_sys_26: 1.27093896e-27 - art_sys_27: -8.74606783e-27 - art_sys_28: -1.73766005e-27 - art_sys_29: 2.07100625e-24 - art_sys_30: 4.61384054e-42 - art_sys_31: -1.33318891e-41 - art_sys_32: 4.62429891e-23 - art_sys_33: 1.23872245e-22 - art_sys_34: -1.15814542e-41 - art_sys_35: -2.90315012e-40 - art_sys_36: -4.10776951e-40 - art_sys_37: 1.45649787e-40 + art_sys_27: 8.74606783e-27 + art_sys_28: 2.40759782e-45 + art_sys_29: -3.27726661e-45 + art_sys_30: 1.73766005e-27 + art_sys_31: -2.07100625e-24 + art_sys_32: -4.62429891e-23 + art_sys_33: -1.23872245e-22 + art_sys_34: 2.27745276e-40 + art_sys_35: 3.35408246e-40 + art_sys_36: 2.02823581e-40 + art_sys_37: 6.44683713e-41 art_sys_38: 3.18836892e-22 - art_sys_39: -5.36783189e-39 - art_sys_40: -1.54138458e-39 - art_sys_41: -6.34105036e-40 - art_sys_42: -3.11705432e-39 + art_sys_39: 1.26999858e-39 + art_sys_40: -1.03088026e-39 + art_sys_41: -1.08261014e-39 + art_sys_42: -3.25507247e-38 art_sys_43: -1.76052766e-21 art_sys_44: 1.12688396e-19 art_sys_45: -6.53941319e-19 - art_sys_46: 1.34253392e-35 - art_sys_47: -1.61701116e-35 - art_sys_48: -4.43045104e-35 - art_sys_49: -7.71414326e-18 - art_sys_50: 2.64141231e-32 - art_sys_51: 8.44491729e-15 - art_sys_52: -9.46479389e-16 - art_sys_53: -8.77537465e-18 - art_sys_54: 3.64887794e-30 - art_sys_55: -1.30540045e-27 - art_sys_56: -3.11648186e-27 - art_sys_57: 1.79663112e-30 - art_sys_58: 3.77679071e-32 - art_sys_59: 1.47319399e-15 - art_sys_60: 2.54504657e-16 - art_sys_61: 2.20172153e-16 - art_sys_62: 1.46033985e-16 - art_sys_63: 1.79800373e-16 - art_sys_64: 1.52652431e-16 - art_sys_65: -2.79875195e-17 - art_sys_66: -1.33181770e-18 - art_sys_67: 8.23973119e-18 - art_sys_68: 6.58750654e-16 - art_sys_69: -6.29802387e-15 - art_sys_70: 5.08626151e-28 - art_sys_71: -1.31130196e-27 - art_sys_72: -1.32354012e-14 - art_sys_73: 4.09978403e-28 - art_sys_74: 1.78559173e-26 - art_sys_75: 3.52177448e-18 - art_sys_76: 9.85600249e-19 - art_sys_77: 3.42271266e-20 - art_sys_78: -8.16990798e-26 - art_sys_79: -4.26584587e-24 - art_sys_80: -1.21563199e-19 - art_sys_81: -4.84695596e-19 - art_sys_82: 2.14024068e-19 - art_sys_83: 2.86789794e-12 - art_sys_84: -2.97908885e-23 - art_sys_85: 2.13541896e-25 - art_sys_86: 3.50849176e-12 - art_sys_87: 8.90899553e-24 - art_sys_88: -8.99905014e-21 - art_sys_89: -4.29211189e-11 - art_sys_90: 1.47762751e-24 - art_sys_91: -1.27680678e-25 - art_sys_92: 1.86290994e-20 - art_sys_93: 1.25055868e-10 - art_sys_94: -2.69928112e-10 - art_sys_95: 2.49177903e-20 - art_sys_96: -1.81113952e-24 - art_sys_97: 3.32889081e-19 - art_sys_98: 1.01629515e-16 - art_sys_99: 1.79301105e-09 - art_sys_100: -2.68650609e-20 - art_sys_101: 3.07099769e-20 - art_sys_102: -4.37961483e-17 - art_sys_103: -1.18798709e-09 - art_sys_104: -6.19821623e-17 - art_sys_105: -1.39914249e-08 - art_sys_106: -2.09060078e-16 - art_sys_107: -1.10871529e-16 - art_sys_108: -3.42003653e-08 - art_sys_109: -4.18355948e-16 - art_sys_110: 7.20828272e-16 - art_sys_111: -4.64753111e-08 - art_sys_112: -9.98436562e-17 - art_sys_113: 2.20491153e-16 - art_sys_114: 8.00790343e-17 - art_sys_115: 1.07058528e-14 - art_sys_116: -2.38774614e-15 - art_sys_117: -8.41258353e-20 - art_sys_118: -1.23496250e-13 - art_sys_119: 2.70856759e-07 - art_sys_120: 6.71206964e-08 - art_sys_121: -1.20231747e-06 - art_sys_122: -1.33153937e-06 - art_sys_123: 5.76146510e-11 - art_sys_124: 3.20558354e-06 - art_sys_125: 3.04824420e-11 - art_sys_126: 5.78567541e-06 - art_sys_127: 1.45586069e-09 - art_sys_128: 2.53885040e-06 - art_sys_129: -9.40915412e-11 - art_sys_130: -5.96678581e-10 - art_sys_131: -5.96566065e-10 - art_sys_132: 6.60352576e-14 - art_sys_133: -9.87630074e-11 - art_sys_134: -7.45992070e-07 - art_sys_135: 1.88563506e-20 - art_sys_136: 4.24412846e-21 - art_sys_137: -1.51219012e-20 - art_sys_138: 2.01808079e-21 - art_sys_139: -1.58939173e-20 - art_sys_140: -4.51962638e-20 - art_sys_141: 2.45049936e-11 - art_sys_142: 1.15210173e-18 - art_sys_143: 1.46210558e-14 - art_sys_144: 4.21946952e-15 - art_sys_145: 6.23450229e-15 - art_sys_146: -8.09253096e-15 - art_sys_147: -9.26507747e-16 - art_sys_148: 9.90981051e-16 - art_sys_149: 4.90842665e-16 - art_sys_150: 5.55555240e-18 - art_sys_151: 1.08879596e-16 - art_sys_152: -4.64130415e-18 - art_sys_153: 1.34415472e-17 - art_sys_154: 5.19525151e-18 - art_sys_155: 3.91332672e-18 - art_sys_156: 1.96875105e-18 - art_sys_157: 1.21703810e-18 - art_sys_158: 1.41124105e-19 - art_sys_159: -4.00228519e-20 - art_sys_160: 1.09414388e-19 - art_sys_161: -2.96413443e-21 - art_sys_162: -1.80821297e-21 - art_sys_163: -7.15249812e-22 - art_sys_164: -2.78044213e-21 - art_sys_165: -2.65351927e-21 - art_sys_166: -9.81888865e-23 - art_sys_167: -3.19152553e-21 - art_sys_168: -8.04510894e-10 - art_sys_169: 2.07433365e-22 - art_sys_170: -4.70460152e-11 - art_sys_171: 1.93718833e-10 - art_sys_172: 1.27280696e-22 - art_sys_173: -5.68448302e-23 - art_sys_174: -1.80245155e-11 - art_sys_175: 0.0 - art_sys_176: -2.53978048e-13 - art_sys_177: 0.0 - art_sys_178: 3.28176628e-15 - art_sys_179: -1.22622475e-18 - art_sys_180: 4.95109170e-22 - art_sys_181: -2.64714571e-27 - art_sys_182: 0.0 - art_sys_183: 7.56836769e-25 - art_sys_184: -5.56740699e-26 - art_sys_185: -7.63462302e-29 + art_sys_46: 5.46625930e-36 + art_sys_47: 5.60763469e-36 + art_sys_48: 1.66540561e-30 + art_sys_49: -1.11785500e-14 + art_sys_50: -6.40123363e-16 + art_sys_51: -1.13681270e-14 + art_sys_52: 4.09150693e-14 + art_sys_53: 2.92218283e-14 + art_sys_54: -1.94643559e-14 + art_sys_55: 7.71414326e-18 + art_sys_56: 8.77537465e-18 + art_sys_57: 5.84684327e-28 + art_sys_58: -3.92024208e-14 + art_sys_59: -5.77043388e-14 + art_sys_60: 2.18281671e-28 + art_sys_61: -1.12164837e-27 + art_sys_62: -5.23546947e-29 + art_sys_63: 1.52652431e-16 + art_sys_64: -9.99571626e-32 + art_sys_65: 1.04243268e-14 + art_sys_66: -1.21862251e-14 + art_sys_67: -2.70684022e-27 + art_sys_68: 6.58749879e-16 + art_sys_69: -6.29802390e-15 + art_sys_70: -2.95442878e-26 + art_sys_71: -1.56275257e-28 + art_sys_72: 4.99897910e-28 + art_sys_73: 3.81291474e-15 + art_sys_74: -3.17533942e-14 + art_sys_75: 1.62224533e-14 + art_sys_76: -1.55831848e-14 + art_sys_77: -1.57771455e-23 + art_sys_78: -1.32354012e-14 + art_sys_79: -2.63417957e-16 + art_sys_80: 6.63482726e-15 + art_sys_81: 9.32215091e-16 + art_sys_82: 1.16242696e-15 + art_sys_83: 6.58317984e-15 + art_sys_84: -2.18897476e-16 + art_sys_85: -5.09796522e-18 + art_sys_86: -4.38544251e-15 + art_sys_87: -2.35733308e-25 + art_sys_88: -1.81156963e-15 + art_sys_89: -1.26752485e-15 + art_sys_90: 2.37402968e-25 + art_sys_91: -2.86789448e-12 + art_sys_92: 9.09045880e-25 + art_sys_93: 3.61714047e-26 + art_sys_94: -2.39571321e-23 + art_sys_95: -3.50846964e-12 + art_sys_96: 4.48478789e-15 + art_sys_97: -4.29213299e-11 + art_sys_98: 1.49717034e-20 + art_sys_99: 2.64350842e-24 + art_sys_100: -1.25059495e-10 + art_sys_101: -7.54970286e-19 + art_sys_102: 6.70742923e-19 + art_sys_103: -2.69928735e-10 + art_sys_104: 4.53332773e-22 + art_sys_105: 2.56277024e-19 + art_sys_106: -2.48814751e-16 + art_sys_107: 2.10218654e-13 + art_sys_108: 2.98415487e-12 + art_sys_109: 3.16306715e-10 + art_sys_110: 1.79297139e-09 + art_sys_111: -4.47690193e-19 + art_sys_112: -1.18790271e-09 + art_sys_113: 5.44703839e-11 + art_sys_114: 4.56686119e-17 + art_sys_115: -1.39912600e-08 + art_sys_116: -3.21977798e-14 + art_sys_117: -1.98261026e-16 + art_sys_118: 3.41848653e-08 + art_sys_119: 7.47250080e-16 + art_sys_120: -6.13383225e-15 + art_sys_121: -2.63857569e-08 + art_sys_122: -4.17554643e-15 + art_sys_123: -5.87896980e-15 + art_sys_124: -2.75808814e-07 + art_sys_125: 9.04523836e-13 + art_sys_126: 4.93784158e-08 + art_sys_127: -1.24445478e-12 + art_sys_128: 1.20419359e-06 + art_sys_129: 2.46927157e-11 + art_sys_130: -1.35919424e-06 + art_sys_131: 1.16718341e-08 + art_sys_132: -5.87818079e-10 + art_sys_133: -3.20374853e-06 + art_sys_134: -1.03880112e-11 + art_sys_135: 4.04657151e-09 + art_sys_136: -5.77459613e-06 + art_sys_137: -6.96144228e-11 + art_sys_138: 9.97010894e-18 + art_sys_139: -2.97100380e-08 + art_sys_140: -2.54347033e-06 + art_sys_141: -1.45431718e-07 + art_sys_142: 5.53097744e-07 + art_sys_143: 2.83464481e-11 + art_sys_144: 1.57377963e-11 + art_sys_145: 3.79750291e-10 + art_sys_146: -0.0 + art_sys_147: 3.91153839e-09 + art_sys_148: -4.11607099e-08 + art_sys_149: -4.11607099e-08 + art_sys_150: -1.81774313e-09 + art_sys_151: -1.81774313e-09 + art_sys_152: -5.75518499e-09 + art_sys_153: -8.55044837e-10 + art_sys_154: -1.19225371e-13 + art_sys_155: -2.85994989e-22 + art_sys_156: -3.55255525e-24 + art_sys_157: -1.79913661e-25 + art_sys_158: 0.0 + art_sys_159: -5.26181507e-09 + art_sys_160: 8.54189273e-10 + art_sys_161: 3.63184526e-09 + art_sys_162: 1.03787040e-10 + art_sys_163: -2.86609513e-08 + art_sys_164: -5.49330789e-09 + art_sys_165: -6.94784043e-11 + art_sys_166: 2.88579833e-17 + art_sys_167: 3.16610440e-17 + art_sys_168: -8.33949448e-18 + art_sys_169: 4.46991010e-19 + art_sys_170: 1.35605957e-19 + art_sys_171: -9.82726393e-20 + art_sys_172: 9.92547707e-20 + art_sys_173: 1.88164702e-20 + art_sys_174: -1.18986201e-20 + art_sys_175: -4.62675596e-23 + art_sys_176: -3.58295060e-21 + art_sys_177: 4.24958858e-21 + art_sys_178: -6.51937499e-22 + art_sys_179: 9.88322490e-22 + art_sys_180: 3.27171620e-21 + art_sys_181: -1.35904643e-22 + art_sys_182: 2.23610125e-23 + art_sys_183: -3.69190888e-24 + art_sys_184: 2.71551400e-26 + art_sys_185: -3.98987605e-26 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -27326,167 +27326,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: -4.10643620e-31 + art_sys_25: 4.10643620e-31 art_sys_26: 2.33285124e-29 - art_sys_27: -1.55879646e-28 - art_sys_28: -5.53385931e-28 - art_sys_29: 1.42815778e-25 - art_sys_30: 3.18307323e-43 - art_sys_31: -1.01059616e-42 - art_sys_32: 1.55068644e-24 - art_sys_33: 4.85437340e-24 - art_sys_34: 2.30204616e-42 - art_sys_35: -1.29358293e-41 - art_sys_36: -1.68513489e-41 - art_sys_37: 5.59429059e-42 + art_sys_27: 1.55879646e-28 + art_sys_28: 4.26137856e-47 + art_sys_29: -5.83607592e-47 + art_sys_30: 5.53385931e-28 + art_sys_31: -1.42815778e-25 + art_sys_32: -1.55068644e-24 + art_sys_33: -4.85437340e-24 + art_sys_34: 8.13618768e-42 + art_sys_35: 1.30759675e-41 + art_sys_36: 9.15321914e-42 + art_sys_37: 2.58578912e-42 art_sys_38: 1.22409168e-23 - art_sys_39: -1.84968294e-40 - art_sys_40: -5.89586868e-41 - art_sys_41: -2.53268906e-41 - art_sys_42: -1.55558162e-39 + art_sys_39: 4.85094016e-41 + art_sys_40: -3.98127797e-41 + art_sys_41: -4.19129291e-41 + art_sys_42: -1.33487203e-38 art_sys_43: -7.23637866e-22 art_sys_44: 7.37550849e-22 art_sys_45: -1.16579048e-20 - art_sys_46: 2.27402790e-37 - art_sys_47: -1.41692991e-37 - art_sys_48: -7.84703855e-37 - art_sys_49: -2.76788098e-19 - art_sys_50: -9.38573994e-34 - art_sys_51: -9.64592656e-15 - art_sys_52: 1.05052183e-16 - art_sys_53: 3.15701488e-19 - art_sys_54: -1.31292559e-31 - art_sys_55: 4.69628869e-29 - art_sys_56: 1.12118077e-28 - art_sys_57: -6.30566439e-32 - art_sys_58: -6.90508447e-34 - art_sys_59: 3.65909228e-16 - art_sys_60: 1.09384341e-16 - art_sys_61: -1.75704188e-17 - art_sys_62: -6.55831431e-17 - art_sys_63: -8.85730664e-17 - art_sys_64: 6.70905462e-19 - art_sys_65: 4.44731537e-17 - art_sys_66: 1.11434172e-18 - art_sys_67: -4.10912016e-18 - art_sys_68: 2.38658535e-17 - art_sys_69: -5.11782783e-17 - art_sys_70: 2.86816514e-30 - art_sys_71: -4.17069551e-30 - art_sys_72: 2.66938817e-16 - art_sys_73: 2.47163592e-30 - art_sys_74: 2.53817109e-29 - art_sys_75: -4.90237805e-18 - art_sys_76: -1.31237048e-18 - art_sys_77: -3.00197901e-19 - art_sys_78: 1.32709669e-28 - art_sys_79: -9.41917204e-26 - art_sys_80: -2.36738597e-20 - art_sys_81: 5.39250919e-19 - art_sys_82: -4.04744165e-19 - art_sys_83: -2.42808774e-14 - art_sys_84: 5.93873396e-25 - art_sys_85: 7.85683618e-27 - art_sys_86: 5.20485814e-13 - art_sys_87: -1.77298928e-25 - art_sys_88: -2.53769153e-20 - art_sys_89: 4.36566484e-13 - art_sys_90: 1.10477063e-25 - art_sys_91: 1.12496621e-26 - art_sys_92: 1.86396078e-21 - art_sys_93: 8.37586392e-12 - art_sys_94: 2.53712660e-11 - art_sys_95: 3.24293636e-21 - art_sys_96: -1.03920030e-26 - art_sys_97: 8.44368509e-20 - art_sys_98: 1.10860194e-21 - art_sys_99: 2.63921284e-11 - art_sys_100: -3.69185566e-20 - art_sys_101: 1.87418322e-20 - art_sys_102: -3.02720264e-19 - art_sys_103: -3.16519595e-10 - art_sys_104: -1.45078599e-18 - art_sys_105: 4.15841158e-10 - art_sys_106: 4.15254071e-18 - art_sys_107: -9.31336350e-18 - art_sys_108: -1.90582306e-09 - art_sys_109: -2.15149509e-17 - art_sys_110: 1.92827123e-16 - art_sys_111: 6.61761574e-09 - art_sys_112: -2.09310261e-19 - art_sys_113: 3.45518480e-18 - art_sys_114: 2.12427687e-17 - art_sys_115: -7.11043624e-17 - art_sys_116: 1.34319322e-15 - art_sys_117: -4.77350118e-20 - art_sys_118: -1.21190970e-13 - art_sys_119: 3.19386444e-09 - art_sys_120: 4.08079263e-08 - art_sys_121: 2.22113426e-08 - art_sys_122: -1.50823221e-07 - art_sys_123: 2.36582300e-11 - art_sys_124: -8.16662269e-08 - art_sys_125: -5.09790313e-12 - art_sys_126: 6.03746733e-07 - art_sys_127: 9.93762391e-10 - art_sys_128: 1.70535585e-06 - art_sys_129: -5.42208219e-11 - art_sys_130: 1.35184808e-10 - art_sys_131: 5.64703734e-10 - art_sys_132: 2.12546148e-12 - art_sys_133: 1.52665401e-09 - art_sys_134: 2.08689335e-06 - art_sys_135: 2.34504199e-20 - art_sys_136: -5.65281787e-21 - art_sys_137: -4.18976057e-21 - art_sys_138: -5.78943164e-21 - art_sys_139: -7.53868337e-21 - art_sys_140: -3.52712539e-20 - art_sys_141: -2.79077021e-10 - art_sys_142: -1.28960930e-17 - art_sys_143: -1.66841147e-13 - art_sys_144: -2.16504305e-14 - art_sys_145: -1.94625040e-18 - art_sys_146: -6.11581789e-15 - art_sys_147: 2.86257408e-15 - art_sys_148: 8.36140306e-16 - art_sys_149: -2.00214740e-16 - art_sys_150: -6.16681804e-16 - art_sys_151: -1.64107328e-16 - art_sys_152: 3.71293880e-17 - art_sys_153: 2.22704333e-18 - art_sys_154: 9.71619498e-18 - art_sys_155: 2.21172415e-20 - art_sys_156: 8.15425526e-19 - art_sys_157: 1.27766131e-18 - art_sys_158: 7.73746366e-19 - art_sys_159: -5.23974409e-20 - art_sys_160: 1.49047719e-19 - art_sys_161: 3.14105344e-20 - art_sys_162: 2.11384094e-20 - art_sys_163: 1.78839215e-20 - art_sys_164: 2.54906244e-20 - art_sys_165: -4.12644508e-21 - art_sys_166: -4.25552349e-21 - art_sys_167: 5.46783353e-21 - art_sys_168: 1.27886936e-08 - art_sys_169: -1.88858169e-21 - art_sys_170: 7.56947557e-10 - art_sys_171: -3.06061197e-09 - art_sys_172: 4.46410292e-22 - art_sys_173: 8.77261412e-22 - art_sys_174: 2.86001217e-10 - art_sys_175: 0.0 - art_sys_176: 3.99293844e-12 - art_sys_177: 0.0 - art_sys_178: -5.17152124e-14 - art_sys_179: 1.88331920e-17 - art_sys_180: 1.33844526e-20 - art_sys_181: -8.80287448e-26 - art_sys_182: 0.0 - art_sys_183: -1.19956776e-23 - art_sys_184: 8.74118184e-25 - art_sys_185: 1.51496501e-27 + art_sys_46: 9.51506458e-38 + art_sys_47: 8.98892284e-38 + art_sys_48: 5.97489905e-32 + art_sys_49: 7.96948784e-15 + art_sys_50: -1.83330803e-14 + art_sys_51: -8.30966583e-15 + art_sys_52: 1.03207968e-14 + art_sys_53: -5.30707839e-14 + art_sys_54: -1.74726735e-15 + art_sys_55: 2.76788098e-19 + art_sys_56: -3.15701488e-19 + art_sys_57: 2.09546912e-29 + art_sys_58: 1.52630484e-15 + art_sys_59: -5.29635136e-14 + art_sys_60: -7.92430812e-30 + art_sys_61: 4.03966777e-29 + art_sys_62: 1.82499405e-30 + art_sys_63: 6.70905462e-19 + art_sys_64: -6.97282034e-32 + art_sys_65: 1.14473807e-14 + art_sys_66: -1.62094074e-14 + art_sys_67: -1.18714591e-29 + art_sys_68: 2.38658461e-17 + art_sys_69: -5.11782790e-17 + art_sys_70: -1.29819775e-28 + art_sys_71: 1.86850528e-30 + art_sys_72: 1.87256855e-29 + art_sys_73: -1.79421204e-14 + art_sys_74: 3.97287288e-14 + art_sys_75: -2.53377062e-14 + art_sys_76: -2.63268261e-14 + art_sys_77: 2.21472068e-25 + art_sys_78: 2.66938818e-16 + art_sys_79: 1.49529034e-15 + art_sys_80: 1.17560896e-14 + art_sys_81: 2.74172628e-16 + art_sys_82: -1.54751635e-15 + art_sys_83: 1.24792756e-14 + art_sys_84: -1.13867296e-15 + art_sys_85: 7.60294917e-16 + art_sys_86: -9.21144027e-15 + art_sys_87: -1.56376522e-27 + art_sys_88: -3.90546789e-15 + art_sys_89: -3.92772699e-15 + art_sys_90: 2.14182891e-27 + art_sys_91: 2.42812550e-14 + art_sys_92: -2.14472948e-26 + art_sys_93: 7.54316609e-27 + art_sys_94: 8.96323420e-25 + art_sys_95: -5.20486066e-13 + art_sys_96: 2.93330908e-15 + art_sys_97: 4.36573998e-13 + art_sys_98: -1.50223419e-22 + art_sys_99: -2.19411591e-26 + art_sys_100: -8.37612032e-12 + art_sys_101: 5.01668218e-21 + art_sys_102: -2.02831068e-21 + art_sys_103: 2.53712511e-11 + art_sys_104: 3.19734754e-23 + art_sys_105: 9.33345693e-21 + art_sys_106: -1.57973589e-17 + art_sys_107: 6.58271132e-13 + art_sys_108: 3.38379421e-12 + art_sys_109: 3.64335565e-10 + art_sys_110: 2.63915349e-11 + art_sys_111: -3.02136574e-18 + art_sys_112: -3.16523702e-10 + art_sys_113: -1.01199021e-11 + art_sys_114: 1.24542511e-17 + art_sys_115: 4.15832865e-10 + art_sys_116: -4.66538466e-16 + art_sys_117: -1.47872714e-17 + art_sys_118: 1.89296093e-09 + art_sys_119: 2.49175309e-17 + art_sys_120: 1.71823652e-16 + art_sys_121: 2.90154199e-08 + art_sys_122: -5.56878845e-17 + art_sys_123: 2.41079894e-15 + art_sys_124: -2.32000886e-09 + art_sys_125: 2.92853756e-12 + art_sys_126: 4.34490490e-08 + art_sys_127: -1.40072529e-12 + art_sys_128: -1.51249679e-08 + art_sys_129: 1.75112426e-11 + art_sys_130: -1.42914692e-07 + art_sys_131: 1.12297678e-08 + art_sys_132: -5.48362632e-10 + art_sys_133: 4.45267759e-08 + art_sys_134: 8.00440252e-10 + art_sys_135: -4.60389387e-10 + art_sys_136: -5.93956679e-07 + art_sys_137: -2.73219469e-10 + art_sys_138: -6.55556599e-18 + art_sys_139: -1.41813251e-08 + art_sys_140: -1.34536366e-06 + art_sys_141: 8.81674150e-08 + art_sys_142: -1.94781926e-06 + art_sys_143: 8.79359186e-11 + art_sys_144: -2.00929486e-11 + art_sys_145: -1.40046913e-09 + art_sys_146: 0.0 + art_sys_147: -2.10983978e-08 + art_sys_148: 1.70784009e-07 + art_sys_149: 1.70784009e-07 + art_sys_150: 9.68018107e-08 + art_sys_151: 9.68018107e-08 + art_sys_152: 3.75507765e-08 + art_sys_153: -8.09893873e-09 + art_sys_154: 8.90038295e-12 + art_sys_155: -1.36818988e-20 + art_sys_156: 6.24995139e-24 + art_sys_157: -2.54218303e-25 + art_sys_158: 0.0 + art_sys_159: 8.58498785e-10 + art_sys_160: -3.38922834e-10 + art_sys_161: -6.02898076e-10 + art_sys_162: 4.30416625e-11 + art_sys_163: 2.41126910e-08 + art_sys_164: -6.59743497e-09 + art_sys_165: 5.05727844e-11 + art_sys_166: -4.60679829e-17 + art_sys_167: -5.29305675e-17 + art_sys_168: 1.43122845e-17 + art_sys_169: 4.20927472e-19 + art_sys_170: -5.25362530e-19 + art_sys_171: 4.55002277e-19 + art_sys_172: 2.66110171e-20 + art_sys_173: -3.61888026e-20 + art_sys_174: -5.37817461e-20 + art_sys_175: 1.69252835e-22 + art_sys_176: 4.55564170e-22 + art_sys_177: 1.29837809e-20 + art_sys_178: -4.62962856e-21 + art_sys_179: 2.71627045e-21 + art_sys_180: 2.06521374e-21 + art_sys_181: -1.17026000e-22 + art_sys_182: -9.14084200e-22 + art_sys_183: 8.38082100e-25 + art_sys_184: -1.95982571e-25 + art_sys_185: -9.91235433e-26 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -27617,167 +27617,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: -7.73113125e-35 + art_sys_25: 7.73113125e-35 art_sys_26: 4.24705910e-33 - art_sys_27: -2.65041875e-32 - art_sys_28: -2.75521701e-31 - art_sys_29: 6.78034752e-29 - art_sys_30: 1.51132902e-46 - art_sys_31: -2.36778316e-46 - art_sys_32: 5.31792209e-28 - art_sys_33: 1.84214528e-27 - art_sys_34: 6.15648023e-46 - art_sys_35: -5.24653524e-45 - art_sys_36: -6.55269837e-45 - art_sys_37: 1.78035643e-45 + art_sys_27: 2.65041875e-32 + art_sys_28: 7.12231709e-51 + art_sys_29: -9.90591574e-51 + art_sys_30: 2.75521701e-31 + art_sys_31: -6.78034752e-29 + art_sys_32: -5.31792209e-28 + art_sys_33: -1.84214528e-27 + art_sys_34: 2.91662100e-45 + art_sys_35: 4.94724021e-45 + art_sys_36: 3.85012662e-45 + art_sys_37: 9.94145611e-46 art_sys_38: 4.17701990e-27 - art_sys_39: -7.12441405e-44 - art_sys_40: -2.00193563e-44 - art_sys_41: -8.97891041e-45 - art_sys_42: -1.07690982e-42 + art_sys_39: 1.61754752e-44 + art_sys_40: -1.36542106e-44 + art_sys_41: -1.45316261e-44 + art_sys_42: -9.15980639e-42 art_sys_43: -4.96479948e-25 art_sys_44: -1.58806274e-24 art_sys_45: 3.14623460e-24 - art_sys_46: -7.32259742e-41 - art_sys_47: 1.09651113e-40 - art_sys_48: 2.16201920e-40 - art_sys_49: 1.82663241e-23 - art_sys_50: 6.54218233e-38 - art_sys_51: 3.16412052e-15 - art_sys_52: 5.66371243e-15 - art_sys_53: -9.24457090e-24 - art_sys_54: -3.10530259e-36 - art_sys_55: -1.35024828e-33 - art_sys_56: -3.28428652e-33 - art_sys_57: 6.40811808e-36 - art_sys_58: -7.13299788e-37 - art_sys_59: -7.22158648e-16 - art_sys_60: 5.23680005e-16 - art_sys_61: -2.01316519e-16 - art_sys_62: 1.61307401e-16 - art_sys_63: 5.09088757e-17 - art_sys_64: -9.84555952e-22 - art_sys_65: -1.27570200e-17 - art_sys_66: -5.21726591e-19 - art_sys_67: 1.92690127e-18 - art_sys_68: 5.41565807e-20 - art_sys_69: -9.90944196e-20 - art_sys_70: -1.44577126e-33 - art_sys_71: 1.28917477e-32 - art_sys_72: 6.76262951e-20 - art_sys_73: 6.19255448e-33 - art_sys_74: -1.30007225e-33 - art_sys_75: 5.30874915e-18 - art_sys_76: -2.78041596e-19 - art_sys_77: 2.07736774e-19 - art_sys_78: 5.92704198e-31 - art_sys_79: -2.07915390e-28 - art_sys_80: -4.79232231e-19 - art_sys_81: -1.64387114e-19 - art_sys_82: -8.26955449e-20 - art_sys_83: -1.34368713e-16 - art_sys_84: 1.51853345e-28 - art_sys_85: 1.77687030e-29 - art_sys_86: 2.73555503e-17 - art_sys_87: -4.54461592e-29 - art_sys_88: 1.17281934e-19 - art_sys_89: 2.90414785e-15 - art_sys_90: 7.30782272e-29 - art_sys_91: 3.24463320e-29 - art_sys_92: -1.86792530e-25 - art_sys_93: -4.54587618e-15 - art_sys_94: 5.03011336e-14 - art_sys_95: -7.35051994e-26 - art_sys_96: 1.02635036e-28 - art_sys_97: 1.97369883e-23 - art_sys_98: -6.46921421e-21 - art_sys_99: -2.08631601e-13 - art_sys_100: 1.21743689e-20 - art_sys_101: -3.52577970e-20 - art_sys_102: 2.66534187e-21 - art_sys_103: -3.78434962e-13 - art_sys_104: 3.46627675e-21 - art_sys_105: 4.96158793e-12 - art_sys_106: 4.06782678e-20 - art_sys_107: 1.64919270e-21 - art_sys_108: 5.46508801e-12 - art_sys_109: 2.41418292e-20 - art_sys_110: 2.54922553e-19 - art_sys_111: 1.45535263e-10 - art_sys_112: 2.63250106e-20 - art_sys_113: 4.01383866e-19 - art_sys_114: -4.06550273e-17 - art_sys_115: -2.37230590e-15 - art_sys_116: -4.41771343e-15 - art_sys_117: -7.11601976e-19 - art_sys_118: 1.71195429e-13 - art_sys_119: -2.34239686e-10 - art_sys_120: 6.13759766e-10 - art_sys_121: 5.10346413e-09 - art_sys_122: 3.93818766e-09 - art_sys_123: -3.50297657e-11 - art_sys_124: -5.34324964e-08 - art_sys_125: 1.34432155e-11 - art_sys_126: -1.50679241e-07 - art_sys_127: -3.10350005e-10 - art_sys_128: -3.44577266e-07 - art_sys_129: -1.20031256e-10 - art_sys_130: -2.56464443e-08 - art_sys_131: -3.74902594e-08 - art_sys_132: 4.64690349e-10 - art_sys_133: 5.63449795e-09 - art_sys_134: -5.71156911e-07 - art_sys_135: -1.81279264e-20 - art_sys_136: 7.50686062e-21 - art_sys_137: -3.42595775e-21 - art_sys_138: 6.18480794e-21 - art_sys_139: 2.32733152e-21 - art_sys_140: -2.26225280e-21 - art_sys_141: -9.26521122e-10 - art_sys_142: -4.29455422e-17 - art_sys_143: -5.54288824e-13 - art_sys_144: -7.58316845e-14 - art_sys_145: 7.43856442e-15 - art_sys_146: -9.26568356e-16 - art_sys_147: 4.46215382e-15 - art_sys_148: 7.38508629e-16 - art_sys_149: -3.56543421e-16 - art_sys_150: -6.68527168e-16 - art_sys_151: -1.03651104e-15 - art_sys_152: 6.70181354e-17 - art_sys_153: 3.78610768e-17 - art_sys_154: 6.29611305e-17 - art_sys_155: -5.76388358e-18 - art_sys_156: -1.51085356e-18 - art_sys_157: 1.03541750e-17 - art_sys_158: 2.35182766e-18 - art_sys_159: -1.43433702e-19 - art_sys_160: 2.83783835e-20 - art_sys_161: 2.10505466e-19 - art_sys_162: 8.78857171e-20 - art_sys_163: 1.10575381e-19 - art_sys_164: 4.30585230e-20 - art_sys_165: 5.31245680e-21 - art_sys_166: -1.46021246e-20 - art_sys_167: 1.80886174e-20 - art_sys_168: 4.67180993e-08 - art_sys_169: -5.42417158e-21 - art_sys_170: 2.39479859e-09 - art_sys_171: -2.08411982e-08 - art_sys_172: 2.54469693e-21 - art_sys_173: 3.79750981e-21 - art_sys_174: 1.85506406e-09 - art_sys_175: 0.0 - art_sys_176: 2.55887847e-11 - art_sys_177: 0.0 - art_sys_178: -3.14461523e-13 - art_sys_179: 4.86427925e-17 - art_sys_180: 3.03820645e-18 - art_sys_181: -1.88401516e-23 - art_sys_182: 0.0 - art_sys_183: -7.68627726e-23 - art_sys_184: 4.34263943e-24 - art_sys_185: 1.42777724e-26 + art_sys_46: -2.90779372e-41 + art_sys_47: -3.41136593e-41 + art_sys_48: -3.64142657e-36 + art_sys_49: -3.83358567e-16 + art_sys_50: -1.20971224e-14 + art_sys_51: -9.39544939e-16 + art_sys_52: -6.85974397e-14 + art_sys_53: -4.99410865e-14 + art_sys_54: 1.11295750e-14 + art_sys_55: -1.82663240e-23 + art_sys_56: 9.24457087e-24 + art_sys_57: -2.19330234e-32 + art_sys_58: 1.38328779e-14 + art_sys_59: -2.92215298e-14 + art_sys_60: -3.92678591e-32 + art_sys_61: 1.23092953e-32 + art_sys_62: -3.77896115e-32 + art_sys_63: -9.84555951e-22 + art_sys_64: -3.27959048e-32 + art_sys_65: 6.56732975e-15 + art_sys_66: -1.12781290e-14 + art_sys_67: 4.39351145e-32 + art_sys_68: 5.41565660e-20 + art_sys_69: -9.90944211e-20 + art_sys_70: 2.32095686e-31 + art_sys_71: -2.92016400e-32 + art_sys_72: -1.55984874e-31 + art_sys_73: -2.75097030e-14 + art_sys_74: -1.15749635e-14 + art_sys_75: -1.58283054e-14 + art_sys_76: -1.95092723e-14 + art_sys_77: -8.04583769e-29 + art_sys_78: 6.76262923e-20 + art_sys_79: 1.52339961e-15 + art_sys_80: 9.42041286e-15 + art_sys_81: 8.57362804e-16 + art_sys_82: -1.06830273e-15 + art_sys_83: 1.00547302e-14 + art_sys_84: 1.27083577e-15 + art_sys_85: -7.00056971e-17 + art_sys_86: -7.80468968e-15 + art_sys_87: 6.57886189e-30 + art_sys_88: -3.37461432e-15 + art_sys_89: -3.41146809e-15 + art_sys_90: 1.20965323e-29 + art_sys_91: 1.34368692e-16 + art_sys_92: 1.88516461e-28 + art_sys_93: 8.28340761e-29 + art_sys_94: 1.39082879e-27 + art_sys_95: -2.73570906e-17 + art_sys_96: 2.42157159e-15 + art_sys_97: 2.90416430e-15 + art_sys_98: -7.09451941e-25 + art_sys_99: -9.90346464e-29 + art_sys_100: 4.54599567e-15 + art_sys_101: 3.48559158e-23 + art_sys_102: -3.01418250e-23 + art_sys_103: 5.03011957e-14 + art_sys_104: -7.42332291e-27 + art_sys_105: -1.19076431e-23 + art_sys_106: 9.32204428e-21 + art_sys_107: -2.31982641e-13 + art_sys_108: -1.28769006e-12 + art_sys_109: -1.37388059e-10 + art_sys_110: -2.08626950e-13 + art_sys_111: -1.23272784e-21 + art_sys_112: -3.78468530e-13 + art_sys_113: -1.88132413e-11 + art_sys_114: 3.25354872e-21 + art_sys_115: 4.96185371e-12 + art_sys_116: 3.76358849e-18 + art_sys_117: 2.07579720e-21 + art_sys_118: -3.68672125e-13 + art_sys_119: -3.08941547e-20 + art_sys_120: 3.78079395e-17 + art_sys_121: -8.51044147e-09 + art_sys_122: 3.12640601e-18 + art_sys_123: -1.01113598e-15 + art_sys_124: 5.66499244e-09 + art_sys_125: -1.20860708e-12 + art_sys_126: -3.51599798e-09 + art_sys_127: 5.82484157e-13 + art_sys_128: -8.51260305e-09 + art_sys_129: -7.60346244e-12 + art_sys_130: 2.32791581e-08 + art_sys_131: -5.40810352e-09 + art_sys_132: 2.73910263e-10 + art_sys_133: 2.43593534e-08 + art_sys_134: 1.64711953e-09 + art_sys_135: 6.61808626e-10 + art_sys_136: 1.85604120e-07 + art_sys_137: -5.08363788e-10 + art_sys_138: -1.16133338e-17 + art_sys_139: 1.49936650e-08 + art_sys_140: 3.15948244e-07 + art_sys_141: 1.62175555e-07 + art_sys_142: 3.55760193e-07 + art_sys_143: 1.53497912e-10 + art_sys_144: -7.67466872e-11 + art_sys_145: -1.85745295e-10 + art_sys_146: 0.0 + art_sys_147: 5.08312574e-09 + art_sys_148: -2.84959766e-07 + art_sys_149: -2.84959766e-07 + art_sys_150: 4.73356317e-07 + art_sys_151: 4.73356317e-07 + art_sys_152: 3.16407120e-09 + art_sys_153: -6.66161991e-08 + art_sys_154: 4.85601018e-11 + art_sys_155: -7.32006516e-20 + art_sys_156: 2.03575783e-25 + art_sys_157: -1.42105817e-24 + art_sys_158: 0.0 + art_sys_159: 2.06731251e-09 + art_sys_160: -5.98520705e-10 + art_sys_161: -5.96111405e-10 + art_sys_162: -2.91065454e-12 + art_sys_163: -1.30211239e-08 + art_sys_164: 4.77189066e-09 + art_sys_165: -9.73912170e-11 + art_sys_166: 2.01837525e-17 + art_sys_167: 2.47918356e-17 + art_sys_168: -7.69604112e-18 + art_sys_169: 2.24944291e-19 + art_sys_170: -1.66912327e-18 + art_sys_171: 1.04501097e-18 + art_sys_172: 2.06208650e-19 + art_sys_173: -2.94059068e-19 + art_sys_174: -1.24179354e-19 + art_sys_175: 3.93042428e-23 + art_sys_176: 3.02939572e-21 + art_sys_177: 1.30253376e-20 + art_sys_178: -7.79580207e-21 + art_sys_179: 4.26219577e-21 + art_sys_180: -8.63077387e-21 + art_sys_181: -8.20131347e-23 + art_sys_182: -8.40071689e-22 + art_sys_183: -1.54363096e-23 + art_sys_184: -2.34911919e-25 + art_sys_185: -1.89052309e-25 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -27908,167 +27908,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: -1.31170418e-38 + art_sys_25: 1.31170418e-38 art_sys_26: 9.08579461e-37 - art_sys_27: -5.09717781e-36 - art_sys_28: -1.05673022e-34 - art_sys_29: 2.72250845e-32 - art_sys_30: 6.06852157e-50 - art_sys_31: -1.21891384e-49 - art_sys_32: 1.85504436e-31 - art_sys_33: 6.69603715e-31 - art_sys_34: -3.49754924e-52 - art_sys_35: -1.95312308e-48 - art_sys_36: -2.41851851e-48 - art_sys_37: 4.52192456e-49 + art_sys_27: 5.09717781e-36 + art_sys_28: 1.32932458e-54 + art_sys_29: -1.89990193e-54 + art_sys_30: 1.05673022e-34 + art_sys_31: -2.72250845e-32 + art_sys_32: -1.85504436e-31 + art_sys_33: -6.69603715e-31 + art_sys_34: 1.03821552e-48 + art_sys_35: 1.79558778e-48 + art_sys_36: 1.46214862e-48 + art_sys_37: 3.63316252e-49 art_sys_38: 1.26206691e-30 - art_sys_39: -1.52875085e-47 - art_sys_40: -6.02956074e-48 - art_sys_41: -2.83601397e-48 - art_sys_42: -6.70324163e-46 + art_sys_39: 4.66117269e-48 + art_sys_40: -4.14583327e-48 + art_sys_41: -4.50693246e-48 + art_sys_42: -5.67509299e-45 art_sys_43: -3.07623325e-28 art_sys_44: -1.10645273e-27 art_sys_45: -1.30835908e-27 - art_sys_46: 2.20798023e-44 - art_sys_47: -1.45589942e-43 - art_sys_48: -8.49625911e-44 - art_sys_49: 1.29147098e-25 - art_sys_50: -2.04290088e-38 - art_sys_51: -1.92823202e-15 - art_sys_52: 2.03213546e-15 - art_sys_53: -9.46165279e-25 - art_sys_54: -9.09580395e-36 - art_sys_55: -1.34823082e-34 - art_sys_56: -3.35034802e-34 - art_sys_57: -9.46387657e-37 - art_sys_58: -1.63013262e-36 - art_sys_59: 9.41458602e-16 - art_sys_60: -1.36615136e-16 - art_sys_61: 1.05613901e-16 - art_sys_62: 1.09600318e-17 - art_sys_63: -7.95637107e-17 - art_sys_64: 6.32141821e-24 - art_sys_65: 3.98617957e-17 - art_sys_66: 3.88639492e-18 - art_sys_67: -9.79020570e-18 - art_sys_68: 8.98079081e-23 - art_sys_69: -7.13801193e-22 - art_sys_70: 2.68865495e-35 - art_sys_71: -3.98738675e-36 - art_sys_72: -5.13094783e-21 - art_sys_73: 1.00995394e-34 - art_sys_74: 1.91304760e-33 - art_sys_75: -5.16171613e-18 - art_sys_76: 1.06622394e-20 - art_sys_77: 1.48975924e-18 - art_sys_78: -8.38889148e-33 - art_sys_79: -5.31890125e-31 - art_sys_80: 1.07679834e-18 - art_sys_81: 5.97927020e-20 - art_sys_82: -2.48091621e-19 - art_sys_83: 4.43281400e-18 - art_sys_84: -1.13533887e-29 - art_sys_85: 3.02392913e-32 - art_sys_86: -1.60084197e-17 - art_sys_87: 3.16724765e-30 - art_sys_88: 1.26721481e-19 - art_sys_89: -1.45154060e-16 - art_sys_90: -1.49683738e-30 - art_sys_91: 1.23730945e-31 - art_sys_92: -4.67149458e-26 - art_sys_93: -3.34074915e-16 - art_sys_94: -6.14222188e-15 - art_sys_95: -8.32097841e-26 - art_sys_96: -5.47266911e-30 - art_sys_97: -3.19264105e-24 - art_sys_98: 2.63535651e-22 - art_sys_99: 1.49971203e-14 - art_sys_100: 1.49766237e-19 - art_sys_101: -1.13895789e-19 - art_sys_102: -9.02146932e-23 - art_sys_103: 9.60546220e-14 - art_sys_104: -5.70157988e-23 - art_sys_105: -7.15628320e-13 - art_sys_106: -3.03657192e-21 - art_sys_107: 5.91773178e-22 - art_sys_108: -2.73505657e-13 - art_sys_109: -2.07839095e-22 - art_sys_110: 5.41145258e-20 - art_sys_111: 3.46870071e-10 - art_sys_112: 7.58420723e-21 - art_sys_113: 1.94374881e-18 - art_sys_114: -2.15489017e-16 - art_sys_115: -1.23920854e-14 - art_sys_116: -2.31865464e-14 - art_sys_117: -4.31372594e-18 - art_sys_118: 8.98400848e-13 - art_sys_119: 1.61171047e-10 - art_sys_120: -1.14465099e-10 - art_sys_121: -8.80420689e-10 - art_sys_122: -6.36389665e-10 - art_sys_123: -1.82291546e-10 - art_sys_124: 9.42880341e-09 - art_sys_125: 7.48235756e-11 - art_sys_126: 2.64938551e-08 - art_sys_127: -6.16362608e-10 - art_sys_128: 6.08884947e-08 - art_sys_129: -7.14285889e-10 - art_sys_130: -1.55655348e-07 - art_sys_131: -2.30962021e-07 - art_sys_132: 2.57057980e-09 - art_sys_133: -8.08295545e-10 - art_sys_134: 1.01207087e-07 - art_sys_135: -9.37499957e-20 - art_sys_136: -1.24978849e-20 - art_sys_137: 2.76601810e-20 - art_sys_138: 6.92519561e-20 - art_sys_139: 1.57709492e-20 - art_sys_140: -2.96935371e-20 - art_sys_141: 2.25527176e-10 - art_sys_142: 1.04296954e-17 - art_sys_143: 1.34926180e-13 - art_sys_144: 3.14875913e-14 - art_sys_145: 1.69224898e-14 - art_sys_146: 2.32599361e-15 - art_sys_147: -4.34641725e-15 - art_sys_148: 1.46600183e-15 - art_sys_149: -7.07767077e-16 - art_sys_150: 1.36816985e-15 - art_sys_151: -1.23678496e-15 - art_sys_152: 1.69118641e-16 - art_sys_153: 8.36987675e-17 - art_sys_154: 1.53301860e-16 - art_sys_155: -3.99557004e-17 - art_sys_156: -1.94130960e-17 - art_sys_157: 1.38186852e-17 - art_sys_158: 3.36565218e-18 - art_sys_159: -1.64938241e-18 - art_sys_160: -1.77528288e-18 - art_sys_161: 6.73022877e-19 - art_sys_162: 3.97141719e-20 - art_sys_163: 1.79101100e-19 - art_sys_164: 2.21378062e-20 - art_sys_165: 1.93638449e-20 - art_sys_166: 3.98673151e-21 - art_sys_167: 3.61289861e-21 - art_sys_168: -1.13022107e-08 - art_sys_169: 9.07934073e-21 - art_sys_170: -2.81209690e-09 - art_sys_171: -5.21095917e-08 - art_sys_172: 2.09666213e-21 - art_sys_173: 2.64150291e-21 - art_sys_174: 4.33959352e-09 - art_sys_175: 0.0 - art_sys_176: 5.90123206e-11 - art_sys_177: 0.0 - art_sys_178: -6.67663618e-13 - art_sys_179: -1.28338995e-16 - art_sys_180: 1.68161347e-17 - art_sys_181: -1.04181992e-22 - art_sys_182: 0.0 - art_sys_183: -1.76549377e-22 - art_sys_184: 5.81228683e-24 - art_sys_185: 4.83274739e-26 + art_sys_46: 2.74705986e-45 + art_sys_47: 4.75904466e-45 + art_sys_48: 2.97287722e-37 + art_sys_49: -4.12636072e-16 + art_sys_50: -7.90972210e-15 + art_sys_51: -1.55043805e-15 + art_sys_52: -7.10641002e-15 + art_sys_53: -3.95921592e-14 + art_sys_54: 4.09264699e-15 + art_sys_55: -1.29147049e-25 + art_sys_56: 9.46165267e-25 + art_sys_57: -1.76802386e-32 + art_sys_58: 1.02747453e-14 + art_sys_59: -2.01853494e-14 + art_sys_60: -2.82640964e-32 + art_sys_61: 1.26535374e-32 + art_sys_62: -1.36603560e-32 + art_sys_63: 6.32141821e-24 + art_sys_64: -1.85829577e-32 + art_sys_65: 5.72423660e-15 + art_sys_66: -8.48670017e-15 + art_sys_67: 3.96922057e-33 + art_sys_68: 8.98078193e-23 + art_sys_69: -7.13801197e-22 + art_sys_70: 3.08097797e-32 + art_sys_71: -2.93042112e-32 + art_sys_72: -1.68538938e-31 + art_sys_73: 6.27226830e-14 + art_sys_74: -3.58674245e-14 + art_sys_75: -2.77084772e-14 + art_sys_76: -1.58130349e-14 + art_sys_77: -1.43077850e-29 + art_sys_78: -5.13095032e-21 + art_sys_79: 5.44503918e-15 + art_sys_80: 7.44708642e-15 + art_sys_81: 3.02112728e-15 + art_sys_82: -6.00189516e-16 + art_sys_83: 8.13803211e-15 + art_sys_84: -5.32522875e-16 + art_sys_85: 8.47041680e-17 + art_sys_86: -6.41726227e-15 + art_sys_87: 7.65947758e-30 + art_sys_88: -2.78098048e-15 + art_sys_89: -2.84591631e-15 + art_sys_90: 6.40278894e-30 + art_sys_91: -4.43282457e-18 + art_sys_92: 1.55021987e-28 + art_sys_93: 5.16523984e-29 + art_sys_94: 2.23814320e-27 + art_sys_95: 1.60084987e-17 + art_sys_96: 2.03431516e-15 + art_sys_97: -1.45155196e-16 + art_sys_98: 2.38806106e-26 + art_sys_99: 2.34772330e-29 + art_sys_100: 3.34086716e-16 + art_sys_101: -1.13954720e-24 + art_sys_102: 8.91786952e-25 + art_sys_103: -6.14222545e-15 + art_sys_104: -9.80831040e-28 + art_sys_105: -3.54932273e-27 + art_sys_106: 6.06812554e-22 + art_sys_107: 5.05452032e-14 + art_sys_108: 2.78570509e-13 + art_sys_109: 2.98640527e-11 + art_sys_110: 1.49966892e-14 + art_sys_111: 2.41224142e-22 + art_sys_112: 9.60596926e-14 + art_sys_113: 1.54221588e-12 + art_sys_114: -9.96365148e-22 + art_sys_115: -7.15691201e-13 + art_sys_116: -2.73014359e-19 + art_sys_117: 1.18166949e-21 + art_sys_118: -7.49706081e-13 + art_sys_119: -4.41977420e-21 + art_sys_120: -7.95573768e-18 + art_sys_121: 1.84060396e-09 + art_sys_122: -6.04995134e-19 + art_sys_123: 1.91500580e-16 + art_sys_124: 2.28620140e-09 + art_sys_125: 2.50606943e-13 + art_sys_126: -6.82772369e-09 + art_sys_127: -1.19379601e-13 + art_sys_128: -8.41210551e-09 + art_sys_129: 1.55812098e-12 + art_sys_130: -1.40028704e-08 + art_sys_131: 1.02751601e-09 + art_sys_132: -5.14016211e-11 + art_sys_133: 1.86803789e-08 + art_sys_134: 2.41828821e-09 + art_sys_135: -1.35794771e-10 + art_sys_136: 3.27866028e-10 + art_sys_137: 6.89348069e-10 + art_sys_138: 2.44377903e-18 + art_sys_139: -2.10573892e-09 + art_sys_140: -5.11189066e-08 + art_sys_141: -3.50976864e-08 + art_sys_142: -4.81422672e-08 + art_sys_143: -2.08777084e-10 + art_sys_144: 1.06529522e-10 + art_sys_145: 7.48880700e-10 + art_sys_146: -0.0 + art_sys_147: 3.25241539e-08 + art_sys_148: -3.37004334e-07 + art_sys_149: -3.37004334e-07 + art_sys_150: 1.57643934e-07 + art_sys_151: 1.57643934e-07 + art_sys_152: -7.41485709e-08 + art_sys_153: -2.71605923e-08 + art_sys_154: 4.24403093e-11 + art_sys_155: -1.46849204e-20 + art_sys_156: -1.89411447e-23 + art_sys_157: 1.96003664e-24 + art_sys_158: 0.0 + art_sys_159: -1.76364265e-10 + art_sys_160: 5.01202359e-11 + art_sys_161: 4.81591454e-11 + art_sys_162: 1.84685873e-12 + art_sys_163: 3.82657109e-09 + art_sys_164: -6.21167399e-10 + art_sys_165: -8.49785773e-10 + art_sys_166: -6.44716065e-17 + art_sys_167: -2.37138798e-17 + art_sys_168: -1.10961988e-17 + art_sys_169: -1.86659005e-17 + art_sys_170: -8.10393307e-18 + art_sys_171: 4.83434861e-18 + art_sys_172: 1.97623457e-18 + art_sys_173: -1.40245928e-18 + art_sys_174: 4.01536576e-19 + art_sys_175: -1.51127738e-22 + art_sys_176: -1.39397996e-20 + art_sys_177: -1.46269293e-20 + art_sys_178: 9.10884546e-21 + art_sys_179: -4.89982053e-21 + art_sys_180: 1.10412273e-20 + art_sys_181: -1.88048260e-22 + art_sys_182: 2.69553609e-22 + art_sys_183: -2.68039196e-23 + art_sys_184: 6.65905403e-25 + art_sys_185: 2.25357272e-25 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -30836,149 +30836,149 @@ bins: art_sys_40: 0.0 art_sys_41: 0.0 art_sys_42: 0.0 - art_sys_43: 2.77576205e-185 - art_sys_44: 4.54595539e-178 - art_sys_45: -2.40886326e-45 - art_sys_46: -1.45688016e-45 - art_sys_47: 2.05182485e-37 - art_sys_48: -2.88331155e-30 - art_sys_49: -2.22760292e-21 - art_sys_50: -2.61468048e-21 - art_sys_51: -2.16787412e+02 - art_sys_52: -4.37790419e+01 - art_sys_53: -1.76868929e-18 - art_sys_54: -3.85486628e-19 - art_sys_55: -3.82820381e-19 - art_sys_56: 9.79616147e-20 - art_sys_57: -2.28681000e-19 - art_sys_58: -9.35452327e-20 - art_sys_59: -1.67063222e+01 - art_sys_60: 1.65771551e+00 - art_sys_61: 5.96340175e-02 - art_sys_62: 2.49903218e-02 - art_sys_63: 1.15349606e-02 - art_sys_64: -1.59569548e-19 - art_sys_65: -1.40806357e-03 - art_sys_66: 6.69009329e-06 - art_sys_67: -5.60438486e-06 - art_sys_68: -1.16763315e-18 - art_sys_69: -5.65142707e-19 - art_sys_70: -2.48073453e-19 - art_sys_71: 4.68510688e-20 - art_sys_72: 3.28174455e-19 - art_sys_73: -1.42963743e-19 - art_sys_74: 2.63768135e-19 - art_sys_75: -8.94736478e-07 - art_sys_76: -1.28202766e-07 - art_sys_77: 7.21304953e-08 - art_sys_78: -3.67883001e-20 - art_sys_79: -4.44955624e-20 - art_sys_80: 7.33233489e-09 - art_sys_81: 1.47671461e-09 - art_sys_82: -6.82245383e-10 - art_sys_83: 5.46149158e-20 - art_sys_84: -1.46702443e-19 - art_sys_85: 1.02197201e-19 - art_sys_86: -3.09183853e-20 - art_sys_87: 3.53300755e-21 - art_sys_88: 5.60659567e-11 - art_sys_89: 5.51301090e-20 - art_sys_90: 1.11837867e-20 - art_sys_91: 9.28026434e-21 - art_sys_92: 3.39991553e-21 - art_sys_93: -2.12951347e-20 - art_sys_94: -1.10593774e-21 - art_sys_95: 9.73959238e-22 - art_sys_96: 1.33895584e-20 - art_sys_97: -8.79121418e-22 - art_sys_98: 2.34436562e-21 - art_sys_99: 1.95448175e-21 - art_sys_100: 9.55316699e-13 - art_sys_101: -3.81953126e-13 - art_sys_102: -2.43585801e-21 - art_sys_103: -1.55458984e-21 - art_sys_104: -5.62321406e-22 - art_sys_105: 1.70517825e-20 - art_sys_106: 7.17388232e-22 - art_sys_107: -3.06908129e-21 - art_sys_108: -3.98510840e-21 - art_sys_109: -8.16382520e-21 - art_sys_110: -5.09752989e-21 - art_sys_111: -4.42480869e-20 - art_sys_112: -8.61866691e-23 - art_sys_113: 5.09863258e-21 - art_sys_114: -1.36775808e-21 - art_sys_115: -1.79261429e-21 - art_sys_116: 1.09680090e-22 - art_sys_117: 1.36068283e-22 - art_sys_118: -8.82822622e-22 - art_sys_119: 3.89881291e-20 - art_sys_120: 4.89685508e-21 - art_sys_121: 9.34179505e-22 - art_sys_122: 6.76293869e-21 - art_sys_123: -1.58087879e-21 - art_sys_124: 3.01313427e-23 - art_sys_125: 8.50364710e-22 - art_sys_126: 3.18483577e-21 - art_sys_127: -2.09883483e-22 - art_sys_128: 4.77623666e-22 - art_sys_129: -7.52336630e-23 - art_sys_130: 4.33500627e-22 - art_sys_131: 3.33861090e-22 - art_sys_132: 4.58327475e-25 - art_sys_133: 7.32740414e-23 - art_sys_134: -6.60881097e-21 - art_sys_135: -1.87842583e-13 - art_sys_136: -7.10474958e-14 - art_sys_137: -3.23567504e-14 - art_sys_138: -1.38019037e-14 - art_sys_139: 1.98073597e-15 - art_sys_140: 5.37732836e-15 - art_sys_141: 7.84257609e-17 - art_sys_142: 7.30582548e-16 - art_sys_143: 2.37691297e-16 - art_sys_144: -1.23928057e-17 - art_sys_145: 6.23068295e-17 - art_sys_146: 1.04690489e-16 - art_sys_147: 1.01197705e-16 - art_sys_148: -1.12709566e-17 - art_sys_149: 3.26720887e-18 - art_sys_150: -1.77012098e-18 - art_sys_151: 3.18952938e-19 - art_sys_152: 1.89014491e-21 - art_sys_153: -1.16738034e-21 - art_sys_154: -4.05140931e-22 - art_sys_155: 2.17024549e-23 - art_sys_156: 7.53074373e-24 - art_sys_157: -2.28640619e-24 - art_sys_158: 3.20935150e-23 - art_sys_159: 1.49665733e-22 - art_sys_160: -2.92065199e-22 - art_sys_161: -7.95112539e-24 - art_sys_162: -1.40795294e-24 - art_sys_163: -6.07894170e-25 - art_sys_164: 2.43459557e-23 - art_sys_165: 9.19829902e-24 - art_sys_166: 1.41544711e-23 - art_sys_167: 1.74714049e-22 - art_sys_168: -2.53794210e-17 - art_sys_169: 1.23450888e-23 - art_sys_170: 8.28888562e-18 - art_sys_171: -2.57668938e-18 - art_sys_172: 5.20747874e-24 - art_sys_173: 8.78267157e-27 - art_sys_174: 7.44731391e-19 - art_sys_175: 0.0 - art_sys_176: 2.00225951e-19 - art_sys_177: 0.0 - art_sys_178: -2.42421810e-20 - art_sys_179: 1.77614030e-21 - art_sys_180: 1.98394045e-26 - art_sys_181: -1.08132262e-34 - art_sys_182: 0.0 - art_sys_183: -2.52976157e-32 - art_sys_184: -5.34253812e-34 - art_sys_185: -3.13273320e-34 + art_sys_43: -2.40766468e-171 + art_sys_44: 1.47473683e-163 + art_sys_45: -9.75573459e-37 + art_sys_46: 5.93176951e-33 + art_sys_47: -1.46977911e-27 + art_sys_48: 1.70834655e-19 + art_sys_49: -2.16787412e+02 + art_sys_50: 4.37790419e+01 + art_sys_51: 1.67063222e+01 + art_sys_52: -1.65771551e+00 + art_sys_53: -5.96340175e-02 + art_sys_54: 2.49903218e-02 + art_sys_55: -1.43983401e-18 + art_sys_56: 6.64426382e-19 + art_sys_57: 3.27489075e-19 + art_sys_58: 1.15349606e-02 + art_sys_59: 1.40806357e-03 + art_sys_60: -2.18610177e-19 + art_sys_61: -8.41801550e-19 + art_sys_62: -3.70041700e-19 + art_sys_63: -1.76498960e-18 + art_sys_64: 2.72979978e-19 + art_sys_65: -6.69009329e-06 + art_sys_66: 5.60438486e-06 + art_sys_67: 2.39208178e-19 + art_sys_68: 5.84476701e-19 + art_sys_69: -6.63402911e-19 + art_sys_70: 2.32669723e-19 + art_sys_71: 3.71703138e-19 + art_sys_72: 1.50031069e-19 + art_sys_73: 4.05470439e-19 + art_sys_74: -2.86186773e-19 + art_sys_75: 3.28191302e-19 + art_sys_76: 8.94736478e-07 + art_sys_77: 2.80565643e-19 + art_sys_78: 3.34556140e-19 + art_sys_79: -2.12727324e-20 + art_sys_80: -1.28202767e-07 + art_sys_81: 9.61895716e-22 + art_sys_82: -1.72363925e-22 + art_sys_83: -7.21304953e-08 + art_sys_84: -6.32593940e-22 + art_sys_85: 5.43269117e-23 + art_sys_86: 7.33233487e-09 + art_sys_87: -1.37272951e-19 + art_sys_88: 1.47671462e-09 + art_sys_89: 6.82245379e-10 + art_sys_90: 2.35431549e-21 + art_sys_91: 1.70645170e-18 + art_sys_92: 8.37859277e-20 + art_sys_93: 1.75498378e-20 + art_sys_94: 5.93620160e-21 + art_sys_95: 1.55659739e-20 + art_sys_96: -5.60659531e-11 + art_sys_97: 9.40603884e-20 + art_sys_98: -2.91279265e-20 + art_sys_99: 4.93409264e-22 + art_sys_100: -5.40460475e-20 + art_sys_101: 4.68587885e-19 + art_sys_102: 3.44255912e-20 + art_sys_103: 7.50514135e-21 + art_sys_104: -6.02260526e-21 + art_sys_105: -1.84304874e-20 + art_sys_106: -5.77048809e-20 + art_sys_107: -9.55318180e-13 + art_sys_108: 3.81953015e-13 + art_sys_109: -1.87843293e-13 + art_sys_110: -4.85083091e-19 + art_sys_111: -3.15290342e-20 + art_sys_112: -1.36610151e-20 + art_sys_113: 7.10476185e-14 + art_sys_114: -2.38204731e-20 + art_sys_115: -1.71728759e-20 + art_sys_116: -1.53122573e-19 + art_sys_117: -2.15667347e-21 + art_sys_118: 3.34063524e-20 + art_sys_119: -3.59517503e-21 + art_sys_120: 1.37882968e-20 + art_sys_121: 5.27924243e-19 + art_sys_122: -2.21537030e-21 + art_sys_123: -2.07010975e-20 + art_sys_124: -2.30076968e-20 + art_sys_125: 1.12444335e-20 + art_sys_126: -2.32962115e-19 + art_sys_127: -6.83645585e-22 + art_sys_128: 2.76482636e-20 + art_sys_129: 3.30927819e-21 + art_sys_130: -3.89547395e-20 + art_sys_131: -6.44415668e-20 + art_sys_132: 2.68309424e-21 + art_sys_133: -2.30399602e-20 + art_sys_134: -2.54120041e-17 + art_sys_135: 6.14652947e-21 + art_sys_136: 2.57523015e-20 + art_sys_137: -8.31615964e-18 + art_sys_138: -4.30158663e-21 + art_sys_139: 2.23612322e-21 + art_sys_140: -3.67270993e-20 + art_sys_141: 2.61308727e-21 + art_sys_142: -3.76743092e-20 + art_sys_143: 2.54425356e-18 + art_sys_144: -7.11529407e-19 + art_sys_145: -1.96676007e-19 + art_sys_146: -0.0 + art_sys_147: -3.19446523e-20 + art_sys_148: 1.46525862e-20 + art_sys_149: 1.46525862e-20 + art_sys_150: -2.70552947e-21 + art_sys_151: -2.70552947e-21 + art_sys_152: 1.70026690e-21 + art_sys_153: -7.13608843e-21 + art_sys_154: 2.49421543e-21 + art_sys_155: -8.99124134e-33 + art_sys_156: 6.97741356e-36 + art_sys_157: -4.42317748e-35 + art_sys_158: -0.0 + art_sys_159: 3.23567660e-14 + art_sys_160: -1.38021708e-14 + art_sys_161: 5.37830111e-15 + art_sys_162: 1.98072106e-15 + art_sys_163: -7.30455095e-16 + art_sys_164: 2.38017390e-16 + art_sys_165: -7.85011370e-17 + art_sys_166: 1.70445975e-27 + art_sys_167: -8.88386907e-28 + art_sys_168: -1.82040809e-27 + art_sys_169: -1.67985560e-28 + art_sys_170: 6.79052560e-29 + art_sys_171: 8.05361368e-27 + art_sys_172: 3.49556942e-26 + art_sys_173: 1.60138608e-26 + art_sys_174: 5.05602651e-27 + art_sys_175: 5.99830123e-32 + art_sys_176: -8.47404096e-29 + art_sys_177: 2.57514276e-28 + art_sys_178: -4.91197275e-29 + art_sys_179: -5.69832553e-31 + art_sys_180: -2.07980061e-29 + art_sys_181: 4.76037967e-31 + art_sys_182: -2.26016056e-31 + art_sys_183: -3.76485364e-33 + art_sys_184: 5.26567894e-33 + art_sys_185: -1.19811195e-33 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -31127,149 +31127,149 @@ bins: art_sys_40: 0.0 art_sys_41: 0.0 art_sys_42: 0.0 - art_sys_43: 1.49585996e-185 - art_sys_44: 2.44981830e-178 - art_sys_45: -1.29816239e-45 - art_sys_46: -7.85128428e-46 - art_sys_47: 1.10575054e-37 - art_sys_48: -1.55384769e-30 - art_sys_49: -1.20047923e-21 - art_sys_50: -1.40907951e-21 - art_sys_51: -1.16829074e+02 - art_sys_52: 7.20190727e+01 - art_sys_53: -6.49955028e-18 - art_sys_54: -4.47035895e-19 - art_sys_55: 1.62116485e-19 - art_sys_56: 5.62898369e-20 - art_sys_57: -8.90411148e-20 - art_sys_58: -8.27167987e-20 - art_sys_59: 2.96178110e+01 - art_sys_60: -5.21590718e+00 - art_sys_61: -2.01750628e-01 - art_sys_62: -8.71248165e-02 - art_sys_63: -4.37592898e-02 - art_sys_64: 4.21976314e-19 - art_sys_65: 5.84608620e-03 - art_sys_66: -3.84425099e-05 - art_sys_67: 3.05136106e-05 - art_sys_68: -8.45417055e-20 - art_sys_69: 6.84229670e-19 - art_sys_70: -4.66606048e-19 - art_sys_71: -6.74730902e-20 - art_sys_72: 2.95035435e-19 - art_sys_73: 1.63224251e-20 - art_sys_74: 3.30246098e-19 - art_sys_75: 4.97968490e-06 - art_sys_76: 8.71994167e-07 - art_sys_77: -4.42884148e-07 - art_sys_78: 1.36969380e-21 - art_sys_79: -1.31294641e-19 - art_sys_80: -5.16165865e-08 - art_sys_81: -9.48635848e-09 - art_sys_82: 4.53990276e-09 - art_sys_83: -9.23690626e-21 - art_sys_84: 9.74645053e-20 - art_sys_85: -1.51013631e-20 - art_sys_86: 2.77442023e-20 - art_sys_87: 5.60630809e-20 - art_sys_88: -3.72932827e-10 - art_sys_89: -5.02770984e-21 - art_sys_90: 1.13991814e-20 - art_sys_91: -2.44791945e-20 - art_sys_92: -9.18231656e-22 - art_sys_93: -9.01652397e-22 - art_sys_94: 1.21889175e-20 - art_sys_95: 9.56203274e-21 - art_sys_96: -8.72745766e-21 - art_sys_97: 7.58394070e-21 - art_sys_98: 1.00503295e-20 - art_sys_99: -1.28758626e-20 - art_sys_100: -5.00374184e-12 - art_sys_101: 2.58441810e-12 - art_sys_102: 7.36230730e-21 - art_sys_103: -2.34485708e-21 - art_sys_104: 9.71153948e-21 - art_sys_105: 1.29289024e-20 - art_sys_106: 1.27463331e-22 - art_sys_107: -1.02854628e-21 - art_sys_108: 5.17632491e-24 - art_sys_109: 1.56912747e-21 - art_sys_110: -3.54024643e-21 - art_sys_111: 1.38748547e-19 - art_sys_112: 1.67218990e-21 - art_sys_113: -2.18952731e-21 - art_sys_114: 1.50616989e-21 - art_sys_115: -1.67136467e-21 - art_sys_116: -2.42935246e-21 - art_sys_117: 4.38354717e-23 - art_sys_118: 1.28895512e-21 - art_sys_119: -1.17775395e-19 - art_sys_120: -1.18731001e-20 - art_sys_121: -1.10010658e-21 - art_sys_122: -2.15153070e-20 - art_sys_123: 5.55698872e-22 - art_sys_124: 2.47693575e-22 - art_sys_125: 7.38933352e-22 - art_sys_126: -9.92749135e-21 - art_sys_127: 3.94545819e-23 - art_sys_128: -1.51672878e-21 - art_sys_129: 2.80087812e-22 - art_sys_130: -1.09077278e-21 - art_sys_131: -1.03338851e-21 - art_sys_132: -3.47754608e-24 - art_sys_133: -3.08579268e-22 - art_sys_134: 4.55074158e-20 - art_sys_135: 1.13056857e-12 - art_sys_136: 4.54211572e-13 - art_sys_137: 2.08213305e-13 - art_sys_138: 8.95511112e-14 - art_sys_139: -1.30816825e-14 - art_sys_140: -3.53782069e-14 - art_sys_141: -5.25160115e-16 - art_sys_142: -4.86236059e-15 - art_sys_143: -1.58680147e-15 - art_sys_144: 2.43143063e-17 - art_sys_145: -1.00271617e-16 - art_sys_146: 4.13763826e-17 - art_sys_147: 4.19255345e-17 - art_sys_148: 3.06353622e-17 - art_sys_149: -1.06370138e-17 - art_sys_150: 3.45119428e-18 - art_sys_151: -9.75701191e-19 - art_sys_152: -1.57202904e-21 - art_sys_153: -1.13873570e-22 - art_sys_154: 4.47932604e-22 - art_sys_155: -3.25934194e-23 - art_sys_156: -1.29055144e-23 - art_sys_157: 2.75777047e-24 - art_sys_158: -3.38107271e-23 - art_sys_159: -2.91687393e-22 - art_sys_160: 4.06519813e-22 - art_sys_161: 5.44669900e-24 - art_sys_162: -4.09837202e-24 - art_sys_163: 2.44192995e-23 - art_sys_164: -1.08292815e-22 - art_sys_165: 2.07177629e-23 - art_sys_166: 2.34511097e-25 - art_sys_167: 8.76895038e-24 - art_sys_168: 1.70255436e-16 - art_sys_169: -1.31721520e-23 - art_sys_170: -5.56485849e-17 - art_sys_171: 1.73113854e-17 - art_sys_172: -2.22463654e-24 - art_sys_173: 8.50586714e-26 - art_sys_174: -5.00415729e-18 - art_sys_175: 0.0 - art_sys_176: -1.34562615e-18 - art_sys_177: 0.0 - art_sys_178: 1.62915749e-19 - art_sys_179: -1.19370495e-20 - art_sys_180: -1.29783118e-25 - art_sys_181: 7.24057587e-34 - art_sys_182: 0.0 - art_sys_183: 1.72693605e-31 - art_sys_184: 3.59196511e-33 - art_sys_185: 2.10547952e-33 + art_sys_43: -1.29751609e-171 + art_sys_44: 7.94751357e-164 + art_sys_45: -5.25747057e-37 + art_sys_46: 3.19669455e-33 + art_sys_47: -7.92079809e-28 + art_sys_48: 9.20646376e-20 + art_sys_49: -1.16829074e+02 + art_sys_50: -7.20190727e+01 + art_sys_51: -2.96178110e+01 + art_sys_52: 5.21590718e+00 + art_sys_53: 2.01750628e-01 + art_sys_54: -8.71248165e-02 + art_sys_55: 2.49650230e-18 + art_sys_56: 6.84051642e-20 + art_sys_57: -8.87431784e-20 + art_sys_58: -4.37592898e-02 + art_sys_59: -5.84608620e-03 + art_sys_60: -1.84087553e-19 + art_sys_61: 9.28614390e-19 + art_sys_62: 1.12095131e-18 + art_sys_63: 4.34094242e-18 + art_sys_64: 7.45944842e-19 + art_sys_65: 3.84425099e-05 + art_sys_66: -3.05136106e-05 + art_sys_67: -1.03582520e-18 + art_sys_68: -4.27951380e-19 + art_sys_69: 1.21754793e-18 + art_sys_70: -4.76996801e-19 + art_sys_71: -7.94025953e-20 + art_sys_72: 1.88686283e-19 + art_sys_73: -2.25551619e-18 + art_sys_74: 1.56060020e-18 + art_sys_75: -1.79838823e-18 + art_sys_76: -4.97968490e-06 + art_sys_77: 2.73518110e-19 + art_sys_78: -1.20562461e-18 + art_sys_79: 1.48827748e-19 + art_sys_80: 8.71994167e-07 + art_sys_81: -6.35501299e-21 + art_sys_82: 1.23725376e-21 + art_sys_83: 4.42884148e-07 + art_sys_84: 1.98187398e-21 + art_sys_85: -3.95056190e-22 + art_sys_86: -5.16165865e-08 + art_sys_87: 1.68968871e-19 + art_sys_88: -9.48635852e-09 + art_sys_89: -4.53990276e-09 + art_sys_90: 8.06542391e-21 + art_sys_91: -1.15213405e-17 + art_sys_92: 7.89461180e-20 + art_sys_93: 5.66532405e-20 + art_sys_94: 9.36296983e-20 + art_sys_95: 5.25289612e-20 + art_sys_96: 3.72932817e-10 + art_sys_97: -1.44317416e-20 + art_sys_98: -5.11123905e-20 + art_sys_99: 8.55050321e-22 + art_sys_100: 9.90210462e-20 + art_sys_101: -3.12007233e-18 + art_sys_102: -1.85270769e-19 + art_sys_103: -3.32764960e-20 + art_sys_104: 8.42251807e-21 + art_sys_105: -2.22019292e-21 + art_sys_106: 3.35836888e-19 + art_sys_107: 5.00374675e-12 + art_sys_108: -2.58441687e-12 + art_sys_109: 1.13057205e-12 + art_sys_110: 3.28148430e-18 + art_sys_111: 8.39507061e-20 + art_sys_112: 1.41136349e-19 + art_sys_113: -4.54211794e-13 + art_sys_114: 1.28956513e-19 + art_sys_115: 1.11150399e-20 + art_sys_116: 1.08869420e-18 + art_sys_117: 2.28395204e-20 + art_sys_118: -2.55144348e-19 + art_sys_119: -5.03266861e-21 + art_sys_120: -6.84087253e-20 + art_sys_121: -2.51176687e-18 + art_sys_122: 4.60009010e-20 + art_sys_123: 1.32075881e-19 + art_sys_124: 1.81167502e-19 + art_sys_125: -7.31651484e-20 + art_sys_126: 1.35252928e-18 + art_sys_127: 1.11338791e-20 + art_sys_128: -1.66195050e-19 + art_sys_129: -3.40564613e-20 + art_sys_130: 2.48700147e-19 + art_sys_131: 3.44915970e-19 + art_sys_132: -3.08359250e-20 + art_sys_133: 1.32185822e-19 + art_sys_134: 1.70443767e-16 + art_sys_135: -4.31631459e-20 + art_sys_136: -1.63871947e-19 + art_sys_137: 5.58225140e-17 + art_sys_138: 2.50822151e-20 + art_sys_139: -1.23963172e-20 + art_sys_140: 2.38080272e-19 + art_sys_141: -8.48755871e-21 + art_sys_142: 2.68073994e-19 + art_sys_143: -1.70909809e-17 + art_sys_144: 4.78085468e-18 + art_sys_145: 1.32173852e-18 + art_sys_146: 0.0 + art_sys_147: 2.13945396e-19 + art_sys_148: -8.69570504e-20 + art_sys_149: -8.69570504e-20 + art_sys_150: 1.72237476e-20 + art_sys_151: 1.72237476e-20 + art_sys_152: -1.06562841e-20 + art_sys_153: 4.84807832e-20 + art_sys_154: -1.67633005e-20 + art_sys_155: 6.15833240e-32 + art_sys_156: -4.05093220e-35 + art_sys_157: 2.72641310e-34 + art_sys_158: 0.0 + art_sys_159: -2.08212816e-13 + art_sys_160: 8.95525614e-14 + art_sys_161: -3.53842043e-14 + art_sys_162: -1.30814338e-14 + art_sys_163: 4.86171824e-15 + art_sys_164: -1.58892276e-15 + art_sys_165: 5.25627742e-16 + art_sys_166: -1.09105595e-26 + art_sys_167: 5.37527078e-27 + art_sys_168: 1.20477674e-26 + art_sys_169: -1.40937456e-27 + art_sys_170: 1.10366407e-26 + art_sys_171: 8.02814625e-28 + art_sys_172: 6.42469662e-26 + art_sys_173: -3.56164368e-27 + art_sys_174: -3.16290564e-27 + art_sys_175: -4.03097592e-31 + art_sys_176: 2.53890037e-28 + art_sys_177: 8.91375192e-28 + art_sys_178: -7.56954921e-29 + art_sys_179: 6.80989951e-30 + art_sys_180: 1.48787153e-29 + art_sys_181: -1.08805830e-30 + art_sys_182: -1.98613711e-31 + art_sys_183: 2.93321861e-32 + art_sys_184: -3.54227675e-32 + art_sys_185: 8.05911240e-33 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -31418,149 +31418,149 @@ bins: art_sys_40: 0.0 art_sys_41: 0.0 art_sys_42: 0.0 - art_sys_43: 2.27045753e-186 - art_sys_44: 3.71840181e-179 - art_sys_45: -1.97056136e-46 - art_sys_46: -1.19179523e-46 - art_sys_47: 1.67848746e-38 - art_sys_48: -2.35868197e-31 - art_sys_49: -1.82228203e-22 - art_sys_50: -2.13892935e-22 - art_sys_51: -1.77342112e+01 - art_sys_52: 7.93233911e+01 - art_sys_53: -4.95392739e-18 - art_sys_54: -2.39024272e-19 - art_sys_55: 2.88140734e-19 - art_sys_56: 1.26842742e-20 - art_sys_57: 1.09016540e-20 - art_sys_58: -3.89086016e-20 - art_sys_59: -2.09716342e+01 - art_sys_60: 8.34994666e+00 - art_sys_61: 5.61705271e-01 - art_sys_62: 2.11673834e-01 - art_sys_63: 1.23598004e-01 - art_sys_64: -1.15276288e-18 - art_sys_65: -1.82633582e-02 - art_sys_66: 1.19068463e-04 - art_sys_67: -1.06131427e-04 - art_sys_68: -2.64647118e-19 - art_sys_69: 1.57310846e-18 - art_sys_70: 2.74896853e-19 - art_sys_71: -2.21204417e-19 - art_sys_72: 4.32610393e-19 - art_sys_73: -1.09850917e-20 - art_sys_74: 8.90887824e-20 - art_sys_75: -1.76867829e-05 - art_sys_76: -3.35520488e-06 - art_sys_77: 1.69406650e-06 - art_sys_78: 1.55865422e-19 - art_sys_79: 1.07264184e-19 - art_sys_80: 2.05501345e-07 - art_sys_81: 3.86714058e-08 - art_sys_82: -1.83591280e-08 - art_sys_83: 3.88099406e-20 - art_sys_84: 5.38929046e-20 - art_sys_85: -9.96287091e-20 - art_sys_86: -4.11181804e-20 - art_sys_87: -1.92334698e-20 - art_sys_88: 1.54258677e-09 - art_sys_89: 4.69071161e-20 - art_sys_90: -1.25828985e-21 - art_sys_91: -3.17843725e-20 - art_sys_92: 5.13030389e-20 - art_sys_93: 2.87156269e-20 - art_sys_94: 2.10707409e-20 - art_sys_95: -3.77186548e-21 - art_sys_96: 6.96413483e-21 - art_sys_97: -1.34873436e-20 - art_sys_98: -2.76443033e-21 - art_sys_99: -1.11015467e-20 - art_sys_100: 1.82962532e-11 - art_sys_101: -1.02027196e-11 - art_sys_102: -1.08146001e-21 - art_sys_103: -2.09790707e-20 - art_sys_104: -8.85995164e-21 - art_sys_105: 4.13813824e-22 - art_sys_106: 1.47087682e-23 - art_sys_107: -4.21122909e-21 - art_sys_108: 9.51312431e-21 - art_sys_109: 3.63724728e-21 - art_sys_110: -4.04532871e-21 - art_sys_111: -2.75586867e-19 - art_sys_112: 1.09413454e-21 - art_sys_113: 4.01705916e-21 - art_sys_114: 1.36573069e-21 - art_sys_115: 4.00769294e-21 - art_sys_116: 2.37413847e-22 - art_sys_117: 3.07781208e-23 - art_sys_118: -1.60040786e-21 - art_sys_119: 1.96929382e-19 - art_sys_120: 1.34340891e-20 - art_sys_121: 1.25174003e-20 - art_sys_122: 4.34178031e-20 - art_sys_123: -5.55688157e-22 - art_sys_124: -7.85008119e-22 - art_sys_125: -1.02546588e-21 - art_sys_126: 1.58412363e-20 - art_sys_127: 1.35208078e-22 - art_sys_128: 2.74080830e-21 - art_sys_129: 8.58033721e-22 - art_sys_130: 2.43392897e-21 - art_sys_131: 2.44076021e-21 - art_sys_132: 1.05069641e-23 - art_sys_133: 1.23973313e-21 - art_sys_134: -1.85418811e-19 - art_sys_135: -4.40281948e-12 - art_sys_136: -1.77790913e-12 - art_sys_137: -8.23899331e-13 - art_sys_138: -3.55101876e-13 - art_sys_139: 5.23880442e-14 - art_sys_140: 1.41223704e-13 - art_sys_141: 2.11775599e-15 - art_sys_142: 1.95351587e-14 - art_sys_143: 6.39016745e-15 - art_sys_144: -2.10499653e-18 - art_sys_145: -1.75415528e-17 - art_sys_146: -1.70933178e-16 - art_sys_147: -4.32637357e-17 - art_sys_148: 1.12618217e-17 - art_sys_149: 2.09037860e-18 - art_sys_150: -1.17027376e-18 - art_sys_151: -8.11538899e-20 - art_sys_152: -7.22795734e-21 - art_sys_153: -2.23673863e-21 - art_sys_154: -2.47960578e-22 - art_sys_155: -2.60786513e-23 - art_sys_156: -1.30639742e-23 - art_sys_157: 1.41089137e-24 - art_sys_158: 2.29415094e-23 - art_sys_159: 1.10633656e-22 - art_sys_160: -1.56005008e-22 - art_sys_161: 4.93054813e-24 - art_sys_162: 3.18968828e-25 - art_sys_163: 5.81386205e-24 - art_sys_164: -6.33647302e-23 - art_sys_165: 1.83248332e-23 - art_sys_166: 1.19247994e-23 - art_sys_167: 7.37778931e-23 - art_sys_168: -6.87327849e-16 - art_sys_169: -9.04112276e-24 - art_sys_170: 2.24761075e-16 - art_sys_171: -6.99453081e-17 - art_sys_172: 7.24946528e-24 - art_sys_173: -5.56064397e-26 - art_sys_174: 2.02218519e-17 - art_sys_175: 0.0 - art_sys_176: 5.43814028e-18 - art_sys_177: 0.0 - art_sys_178: -6.58416966e-19 - art_sys_179: 4.82446917e-20 - art_sys_180: 5.26269800e-25 - art_sys_181: -2.92749033e-33 - art_sys_182: 0.0 - art_sys_183: -6.96583887e-31 - art_sys_184: -1.45067779e-32 - art_sys_185: -8.50947394e-33 + art_sys_43: -1.96957767e-172 + art_sys_44: 1.20640086e-164 + art_sys_45: -7.98064130e-38 + art_sys_46: 4.85246132e-34 + art_sys_47: -1.20234716e-28 + art_sys_48: 1.39750635e-20 + art_sys_49: -1.77342112e+01 + art_sys_50: -7.93233911e+01 + art_sys_51: 2.09716342e+01 + art_sys_52: -8.34994666e+00 + art_sys_53: -5.61705271e-01 + art_sys_54: 2.11673834e-01 + art_sys_55: -1.44057897e-18 + art_sys_56: -6.83428122e-18 + art_sys_57: -1.32781194e-18 + art_sys_58: 1.23598004e-01 + art_sys_59: 1.82633582e-02 + art_sys_60: -9.94603720e-20 + art_sys_61: 1.98406377e-19 + art_sys_62: -1.37613056e-18 + art_sys_63: -1.39408575e-18 + art_sys_64: -8.85823937e-19 + art_sys_65: -1.19068463e-04 + art_sys_66: 1.06131427e-04 + art_sys_67: 1.48370601e-18 + art_sys_68: -1.42194481e-19 + art_sys_69: 1.03250798e-18 + art_sys_70: 6.73564037e-20 + art_sys_71: 1.27235186e-19 + art_sys_72: -8.39412224e-20 + art_sys_73: 8.11215840e-18 + art_sys_74: -5.78850265e-18 + art_sys_75: 6.36294936e-18 + art_sys_76: 1.76867829e-05 + art_sys_77: -1.96677009e-19 + art_sys_78: 2.39296372e-18 + art_sys_79: -5.77605913e-19 + art_sys_80: -3.35520488e-06 + art_sys_81: 2.30920344e-20 + art_sys_82: -5.05267504e-21 + art_sys_83: -1.69406650e-06 + art_sys_84: -3.79852396e-21 + art_sys_85: 1.53048279e-21 + art_sys_86: 2.05501345e-07 + art_sys_87: -1.09340813e-19 + art_sys_88: 3.86714058e-08 + art_sys_89: 1.83591280e-08 + art_sys_90: 1.06013973e-20 + art_sys_91: 4.42865998e-17 + art_sys_92: -8.56324032e-20 + art_sys_93: -5.19057914e-20 + art_sys_94: -4.57990816e-19 + art_sys_95: 2.30644755e-20 + art_sys_96: -1.54258675e-09 + art_sys_97: 5.36998986e-19 + art_sys_98: 9.43694441e-20 + art_sys_99: 3.54821411e-21 + art_sys_100: -5.43297150e-20 + art_sys_101: 1.21132626e-17 + art_sys_102: 6.19022023e-19 + art_sys_103: 1.24719027e-19 + art_sys_104: 5.35496671e-21 + art_sys_105: -1.27475591e-20 + art_sys_106: -1.30307982e-18 + art_sys_107: -1.82962626e-11 + art_sys_108: 1.02027122e-11 + art_sys_109: -4.40283201e-12 + art_sys_110: -1.30773595e-17 + art_sys_111: -3.74006778e-19 + art_sys_112: -5.57537853e-19 + art_sys_113: 1.77790954e-12 + art_sys_114: -4.37377581e-19 + art_sys_115: 1.84317616e-21 + art_sys_116: -4.34295656e-18 + art_sys_117: -6.04354251e-20 + art_sys_118: 1.13200480e-18 + art_sys_119: 1.53153276e-20 + art_sys_120: 2.85667062e-19 + art_sys_121: 8.49364020e-18 + art_sys_122: -1.77318531e-19 + art_sys_123: -5.38071480e-19 + art_sys_124: -7.85472746e-19 + art_sys_125: 3.10539847e-19 + art_sys_126: -5.07490950e-18 + art_sys_127: -4.37168981e-20 + art_sys_128: 6.47173022e-19 + art_sys_129: 1.35889766e-19 + art_sys_130: -9.76825483e-19 + art_sys_131: -1.28567642e-18 + art_sys_132: 1.25074112e-19 + art_sys_133: -4.87174432e-19 + art_sys_134: -6.88046548e-16 + art_sys_135: 1.72687849e-19 + art_sys_136: 6.31825080e-19 + art_sys_137: -2.25447946e-16 + art_sys_138: -9.64698953e-20 + art_sys_139: 5.07800126e-20 + art_sys_140: -9.43259026e-19 + art_sys_141: 1.63442299e-20 + art_sys_142: -1.10867422e-18 + art_sys_143: 6.90508585e-17 + art_sys_144: -1.93190789e-17 + art_sys_145: -5.34154572e-18 + art_sys_146: -0.0 + art_sys_147: -8.63403596e-19 + art_sys_148: 3.31994942e-19 + art_sys_149: 3.31994942e-19 + art_sys_150: -6.78849460e-20 + art_sys_151: -6.78849460e-20 + art_sys_152: 4.10561492e-20 + art_sys_153: -1.96782930e-19 + art_sys_154: 6.77475969e-20 + art_sys_155: -2.50378960e-31 + art_sys_156: 1.52047248e-34 + art_sys_157: -1.06839890e-33 + art_sys_158: -0.0 + art_sys_159: 8.23896499e-13 + art_sys_160: -3.55107300e-13 + art_sys_161: 1.41247018e-13 + art_sys_162: 5.23869229e-14 + art_sys_163: -1.95329871e-14 + art_sys_164: 6.39862919e-15 + art_sys_165: -2.11958199e-15 + art_sys_166: 5.83071934e-26 + art_sys_167: -2.36162154e-26 + art_sys_168: -4.94580946e-26 + art_sys_169: 1.39964441e-26 + art_sys_170: -1.11199309e-27 + art_sys_171: 4.30709526e-27 + art_sys_172: 9.81329118e-27 + art_sys_173: 2.77667813e-26 + art_sys_174: 2.69379186e-27 + art_sys_175: 1.62901780e-30 + art_sys_176: -5.68549410e-28 + art_sys_177: -1.33058657e-28 + art_sys_178: 1.69454878e-29 + art_sys_179: 6.38640842e-31 + art_sys_180: -1.64071911e-29 + art_sys_181: 1.00648886e-30 + art_sys_182: 1.43556446e-30 + art_sys_183: -1.17482269e-31 + art_sys_184: 1.43180961e-31 + art_sys_185: -3.25856945e-32 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -31709,149 +31709,149 @@ bins: art_sys_40: 0.0 art_sys_41: 0.0 art_sys_42: 0.0 - art_sys_43: -1.54517577e-186 - art_sys_44: -2.53058439e-179 - art_sys_45: 1.34087097e-46 - art_sys_46: 8.10958575e-47 - art_sys_47: -1.14212891e-38 - art_sys_48: 1.60496813e-31 - art_sys_49: 1.23997412e-22 - art_sys_50: 1.45543719e-22 - art_sys_51: 1.20672664e+01 - art_sys_52: 2.75971364e+01 - art_sys_53: -1.36107298e-18 - art_sys_54: -4.15119554e-20 - art_sys_55: 1.18259338e-19 - art_sys_56: -4.06098784e-21 - art_sys_57: 2.17277999e-20 - art_sys_58: -6.61715517e-21 - art_sys_59: -4.36120968e+01 - art_sys_60: -7.95268450e+00 - art_sys_61: -5.52125017e-01 - art_sys_62: -3.52165304e-01 - art_sys_63: -2.20183996e-01 - art_sys_64: 9.52535968e-19 - art_sys_65: 4.03383715e-02 - art_sys_66: -3.45210108e-04 - art_sys_67: 2.81291270e-04 - art_sys_68: -7.04139259e-19 - art_sys_69: 3.52651758e-20 - art_sys_70: 7.10422769e-19 - art_sys_71: -4.20209654e-20 - art_sys_72: 7.38506143e-20 - art_sys_73: 1.35785137e-19 - art_sys_74: 1.28328130e-19 - art_sys_75: 5.14588090e-05 - art_sys_76: 9.91087092e-06 - art_sys_77: -5.03384868e-06 - art_sys_78: -2.24307475e-20 - art_sys_79: -1.39165873e-19 - art_sys_80: -6.39629982e-07 - art_sys_81: -1.17285080e-07 - art_sys_82: 5.72723906e-08 - art_sys_83: 2.71972784e-20 - art_sys_84: -1.01120215e-20 - art_sys_85: -4.21223525e-21 - art_sys_86: -1.59671331e-20 - art_sys_87: 1.07713255e-19 - art_sys_88: -4.83203479e-09 - art_sys_89: 6.66354143e-20 - art_sys_90: -1.87190765e-20 - art_sys_91: 6.60635997e-21 - art_sys_92: 3.35067016e-20 - art_sys_93: 4.21933905e-20 - art_sys_94: -1.59680621e-21 - art_sys_95: -9.15951258e-21 - art_sys_96: 3.55852177e-20 - art_sys_97: -4.50157073e-21 - art_sys_98: 8.83148366e-21 - art_sys_99: -1.09049737e-20 - art_sys_100: -6.23120087e-11 - art_sys_101: 3.43317090e-11 - art_sys_102: -1.78047308e-20 - art_sys_103: -9.49817153e-21 - art_sys_104: 5.76556229e-21 - art_sys_105: -5.90750797e-21 - art_sys_106: 3.48595854e-21 - art_sys_107: 6.16684094e-21 - art_sys_108: -3.56346808e-21 - art_sys_109: -2.85648298e-21 - art_sys_110: -6.16944179e-21 - art_sys_111: 3.86287951e-19 - art_sys_112: -4.06485249e-21 - art_sys_113: -5.69000290e-21 - art_sys_114: 1.62231611e-22 - art_sys_115: -3.70671650e-21 - art_sys_116: -1.98044400e-21 - art_sys_117: 2.97987781e-22 - art_sys_118: 7.59586801e-22 - art_sys_119: -2.37393406e-19 - art_sys_120: 2.49584237e-21 - art_sys_121: -3.73198533e-20 - art_sys_122: -5.43209050e-20 - art_sys_123: -2.32856993e-22 - art_sys_124: -2.71140548e-22 - art_sys_125: 4.67105105e-22 - art_sys_126: -1.34714472e-20 - art_sys_127: -1.26405537e-21 - art_sys_128: -2.20223409e-21 - art_sys_129: -2.89011570e-21 - art_sys_130: -4.22712700e-21 - art_sys_131: -4.55656185e-21 - art_sys_132: -2.96939173e-23 - art_sys_133: -4.51740216e-21 - art_sys_134: 6.44204190e-19 - art_sys_135: 1.48152916e-11 - art_sys_136: 6.07222669e-12 - art_sys_137: 2.81423341e-12 - art_sys_138: 1.22024840e-12 - art_sys_139: -1.80858816e-13 - art_sys_140: -4.86571795e-13 - art_sys_141: -7.33517908e-15 - art_sys_142: -6.75621906e-14 - art_sys_143: -2.21152656e-14 - art_sys_144: 1.65820910e-18 - art_sys_145: 1.88731477e-17 - art_sys_146: -1.26601129e-16 - art_sys_147: -3.68770393e-17 - art_sys_148: -8.53238402e-18 - art_sys_149: 6.23666007e-18 - art_sys_150: -1.41649354e-18 - art_sys_151: 2.67913916e-19 - art_sys_152: -9.68256519e-22 - art_sys_153: -5.46406657e-22 - art_sys_154: 8.27679353e-23 - art_sys_155: -1.62264169e-23 - art_sys_156: -1.03770529e-24 - art_sys_157: -4.86233161e-25 - art_sys_158: 3.03949678e-24 - art_sys_159: 1.19107606e-22 - art_sys_160: -1.71219322e-22 - art_sys_161: 8.18857027e-24 - art_sys_162: 9.03044980e-25 - art_sys_163: -2.17851634e-24 - art_sys_164: 2.06251755e-23 - art_sys_165: -1.55847100e-23 - art_sys_166: -9.23147798e-24 - art_sys_167: -1.32718156e-22 - art_sys_168: 2.38127727e-15 - art_sys_169: -6.59889440e-24 - art_sys_170: -7.78881883e-16 - art_sys_171: 2.42414245e-16 - art_sys_172: -1.09194956e-23 - art_sys_173: -3.05785556e-26 - art_sys_174: -7.00873201e-17 - art_sys_175: 0.0 - art_sys_176: -1.88487971e-17 - art_sys_177: 0.0 - art_sys_178: 2.28208635e-18 - art_sys_179: -1.67220274e-19 - art_sys_180: -1.82287212e-24 - art_sys_181: 1.01457069e-32 - art_sys_182: 0.0 - art_sys_183: 2.41325652e-30 - art_sys_184: 5.02783469e-32 - art_sys_185: 2.94945554e-32 + art_sys_43: 1.34020476e-172 + art_sys_44: -8.20898918e-165 + art_sys_45: 5.43043748e-38 + art_sys_46: -3.30186345e-34 + art_sys_47: 8.18138651e-29 + art_sys_48: -9.50934964e-21 + art_sys_49: 1.20672664e+01 + art_sys_50: -2.75971364e+01 + art_sys_51: 4.36120968e+01 + art_sys_52: 7.95268450e+00 + art_sys_53: 5.52125017e-01 + art_sys_54: -3.52165304e-01 + art_sys_55: -2.21017353e-18 + art_sys_56: -4.05368734e-19 + art_sys_57: -1.24489251e-18 + art_sys_58: -2.20183996e-01 + art_sys_59: -4.03383715e-02 + art_sys_60: -1.70286935e-19 + art_sys_61: 8.60759053e-19 + art_sys_62: 1.49982830e-18 + art_sys_63: -1.16874268e-18 + art_sys_64: -3.31120125e-19 + art_sys_65: 3.45210108e-04 + art_sys_66: -2.81291270e-04 + art_sys_67: 8.10870010e-19 + art_sys_68: -6.07317960e-19 + art_sys_69: -3.75159358e-19 + art_sys_70: -4.23157008e-19 + art_sys_71: 1.51725836e-19 + art_sys_72: 5.83371359e-20 + art_sys_73: -2.36717748e-17 + art_sys_74: 1.63083863e-17 + art_sys_75: -1.84319887e-17 + art_sys_76: -5.14588090e-05 + art_sys_77: 1.18686281e-20 + art_sys_78: -8.21057692e-18 + art_sys_79: 1.71320773e-18 + art_sys_80: 9.91087093e-06 + art_sys_81: -7.48380864e-20 + art_sys_82: 1.59900762e-20 + art_sys_83: 5.03384868e-06 + art_sys_84: -1.38722824e-20 + art_sys_85: -4.74556699e-21 + art_sys_86: -6.39629983e-07 + art_sys_87: -2.11851296e-20 + art_sys_88: -1.17285080e-07 + art_sys_89: -5.72723905e-08 + art_sys_90: 1.17524796e-19 + art_sys_91: -1.30905854e-16 + art_sys_92: 1.66747015e-19 + art_sys_93: 5.60487361e-20 + art_sys_94: 1.24756647e-18 + art_sys_95: -1.21363583e-19 + art_sys_96: 4.83203478e-09 + art_sys_97: -1.36822535e-18 + art_sys_98: -1.66341813e-19 + art_sys_99: 7.80388010e-21 + art_sys_100: 2.60430452e-19 + art_sys_101: -3.57799185e-17 + art_sys_102: -1.91350556e-18 + art_sys_103: -3.68452398e-19 + art_sys_104: 1.17383113e-20 + art_sys_105: 8.14444907e-20 + art_sys_106: 3.87929331e-18 + art_sys_107: 6.23120209e-11 + art_sys_108: -3.43316795e-11 + art_sys_109: 1.48153322e-11 + art_sys_110: 4.06391352e-17 + art_sys_111: 1.17994131e-18 + art_sys_112: 1.66729145e-18 + art_sys_113: -6.07222776e-12 + art_sys_114: 1.34485143e-18 + art_sys_115: -5.38768462e-20 + art_sys_116: 1.35335472e-17 + art_sys_117: 1.87265444e-19 + art_sys_118: -3.56433388e-18 + art_sys_119: -5.95260797e-20 + art_sys_120: -8.73383791e-19 + art_sys_121: -2.71578087e-17 + art_sys_122: 5.55299622e-19 + art_sys_123: 1.66299699e-18 + art_sys_124: 2.87819147e-18 + art_sys_125: -9.76631042e-19 + art_sys_126: 1.65901212e-17 + art_sys_127: 1.27466135e-19 + art_sys_128: -2.23025955e-18 + art_sys_129: -4.30004547e-19 + art_sys_130: 3.33152813e-18 + art_sys_131: 4.45751496e-18 + art_sys_132: -4.19321297e-19 + art_sys_133: 1.62741118e-18 + art_sys_134: 2.38368030e-15 + art_sys_135: -5.56804972e-19 + art_sys_136: -2.13539088e-18 + art_sys_137: 7.81229769e-16 + art_sys_138: 2.86027282e-19 + art_sys_139: -1.96036151e-19 + art_sys_140: 3.23453484e-18 + art_sys_141: -2.97592507e-20 + art_sys_142: 3.90769229e-18 + art_sys_143: -2.39303555e-16 + art_sys_144: 6.69560875e-17 + art_sys_145: 1.85133982e-17 + art_sys_146: 0.0 + art_sys_147: 2.98957953e-18 + art_sys_148: -1.10492453e-18 + art_sys_149: -1.10492453e-18 + art_sys_150: 2.33013756e-19 + art_sys_151: 2.33013756e-19 + art_sys_152: -1.40301174e-19 + art_sys_153: 6.84018864e-19 + art_sys_154: -2.34809355e-19 + art_sys_155: 8.72111192e-31 + art_sys_156: -4.96054361e-34 + art_sys_157: 3.61950011e-33 + art_sys_158: 0.0 + art_sys_159: -2.81422297e-12 + art_sys_160: 1.22026616e-12 + art_sys_161: -4.86650995e-13 + art_sys_162: -1.80854623e-13 + art_sys_163: 6.75553287e-14 + art_sys_164: -2.21444195e-14 + art_sys_165: 7.34138802e-15 + art_sys_166: -1.99767118e-25 + art_sys_167: 8.54453814e-26 + art_sys_168: 1.71061955e-25 + art_sys_169: -4.21449720e-26 + art_sys_170: 1.80556640e-26 + art_sys_171: -2.20075485e-26 + art_sys_172: -6.51309774e-26 + art_sys_173: -1.83057969e-26 + art_sys_174: -3.48051192e-27 + art_sys_175: -5.64601416e-30 + art_sys_176: -9.19642871e-29 + art_sys_177: 4.91363306e-29 + art_sys_178: -5.13663836e-29 + art_sys_179: 2.56792331e-30 + art_sys_180: 2.74432856e-29 + art_sys_181: -4.04510419e-30 + art_sys_182: -4.29279781e-30 + art_sys_183: 3.96101012e-31 + art_sys_184: -4.96238611e-31 + art_sys_185: 1.12959599e-31 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -32000,149 +32000,149 @@ bins: art_sys_40: 0.0 art_sys_41: 0.0 art_sys_42: 0.0 - art_sys_43: -2.47177823e-187 - art_sys_44: -4.04811125e-180 - art_sys_45: 2.14511871e-47 - art_sys_46: 1.29736750e-47 - art_sys_47: -1.82717216e-39 - art_sys_48: 2.56762004e-32 - art_sys_49: 1.98370442e-23 - art_sys_50: 2.32840117e-23 - art_sys_51: 1.93051528e+00 - art_sys_52: -1.91473892e+00 - art_sys_53: 1.49438247e-19 - art_sys_54: 9.20062479e-21 - art_sys_55: -5.47125566e-21 - art_sys_56: -1.02035987e-21 - art_sys_57: 1.21208842e-21 - art_sys_58: 1.45977376e-21 - art_sys_59: -3.26468412e+00 - art_sys_60: -2.99327304e+00 - art_sys_61: 3.66641440e+00 - art_sys_62: 1.10523007e+00 - art_sys_63: 1.02159751e+00 - art_sys_64: -1.74775525e-18 - art_sys_65: -1.99410627e-01 - art_sys_66: 1.93753230e-03 - art_sys_67: -1.66268257e-03 - art_sys_68: 7.79637105e-19 - art_sys_69: -3.16674413e-19 - art_sys_70: -3.33850715e-19 - art_sys_71: -1.86192021e-19 - art_sys_72: -1.37948649e-19 - art_sys_73: -2.91334123e-21 - art_sys_74: -1.15753989e-19 - art_sys_75: -3.03675240e-04 - art_sys_76: -6.24035646e-05 - art_sys_77: 3.12283671e-05 - art_sys_78: 1.68392525e-19 - art_sys_79: -1.69582191e-20 - art_sys_80: 4.03856583e-06 - art_sys_81: 7.52664846e-07 - art_sys_82: -3.62309416e-07 - art_sys_83: -9.99700332e-20 - art_sys_84: 1.20838380e-20 - art_sys_85: 1.92860143e-20 - art_sys_86: -1.59514340e-20 - art_sys_87: -1.68548291e-20 - art_sys_88: 3.09370352e-08 - art_sys_89: -6.54967230e-20 - art_sys_90: 1.11901989e-20 - art_sys_91: 3.68053045e-21 - art_sys_92: -2.76484368e-20 - art_sys_93: 3.24149231e-20 - art_sys_94: 8.57064580e-20 - art_sys_95: -1.47415492e-21 - art_sys_96: 2.41963570e-21 - art_sys_97: -9.42039558e-21 - art_sys_98: -2.16233534e-20 - art_sys_99: 8.50681019e-21 - art_sys_100: 3.38641058e-10 - art_sys_101: -2.08164937e-10 - art_sys_102: 4.13275279e-21 - art_sys_103: -9.41501045e-21 - art_sys_104: -1.13750173e-20 - art_sys_105: 2.60725645e-21 - art_sys_106: -1.39863785e-20 - art_sys_107: 6.02101021e-21 - art_sys_108: -1.29495410e-20 - art_sys_109: -6.15040110e-21 - art_sys_110: -8.20216783e-21 - art_sys_111: -1.32136783e-18 - art_sys_112: -3.79664601e-21 - art_sys_113: -4.94834063e-22 - art_sys_114: -3.26337708e-21 - art_sys_115: 1.20457860e-22 - art_sys_116: -2.65706947e-21 - art_sys_117: -4.36195714e-23 - art_sys_118: 6.68755936e-23 - art_sys_119: 6.23962450e-19 - art_sys_120: -1.27323004e-19 - art_sys_121: 1.86107185e-19 - art_sys_122: 1.47464215e-19 - art_sys_123: 1.36418695e-20 - art_sys_124: -3.19980733e-22 - art_sys_125: 6.21363713e-22 - art_sys_126: 7.58664624e-21 - art_sys_127: 2.85485918e-21 - art_sys_128: 1.82068845e-22 - art_sys_129: 1.81997411e-20 - art_sys_130: 1.64072045e-20 - art_sys_131: 1.92365263e-20 - art_sys_132: 1.72167101e-22 - art_sys_133: 2.78505870e-20 - art_sys_134: -3.88966714e-18 - art_sys_135: -8.69626718e-11 - art_sys_136: -3.60079291e-11 - art_sys_137: -1.67827625e-11 - art_sys_138: -7.28173861e-12 - art_sys_139: 1.08576524e-12 - art_sys_140: 2.91627719e-12 - art_sys_141: 4.42281510e-14 - art_sys_142: 4.06450315e-13 - art_sys_143: 1.33235452e-13 - art_sys_144: -2.07495670e-17 - art_sys_145: 6.69101249e-17 - art_sys_146: 7.54820599e-17 - art_sys_147: 8.52168075e-17 - art_sys_148: -6.13893415e-18 - art_sys_149: 3.70543370e-19 - art_sys_150: 2.80258064e-18 - art_sys_151: -1.34586786e-18 - art_sys_152: 1.02090830e-20 - art_sys_153: 1.89160427e-21 - art_sys_154: 8.38665356e-22 - art_sys_155: 1.56793076e-24 - art_sys_156: -3.63279637e-24 - art_sys_157: 1.83123898e-24 - art_sys_158: 1.03446743e-23 - art_sys_159: 6.31532244e-23 - art_sys_160: -1.34085271e-22 - art_sys_161: -8.09130195e-24 - art_sys_162: -2.25109153e-25 - art_sys_163: -8.53107598e-24 - art_sys_164: 7.16960437e-23 - art_sys_165: -2.28194030e-23 - art_sys_166: -2.88091025e-25 - art_sys_167: -1.16861220e-22 - art_sys_168: -1.43686131e-14 - art_sys_169: 1.27849714e-23 - art_sys_170: 4.70104007e-15 - art_sys_171: -1.46351290e-15 - art_sys_172: -5.96243769e-24 - art_sys_173: 6.71892207e-26 - art_sys_174: 4.23177146e-16 - art_sys_175: 0.0 - art_sys_176: 1.13814397e-16 - art_sys_177: 0.0 - art_sys_178: -1.37802235e-17 - art_sys_179: 1.00977691e-18 - art_sys_180: 1.10044804e-23 - art_sys_181: -6.12625787e-32 - art_sys_182: 0.0 - art_sys_183: -1.45756277e-29 - art_sys_184: -3.03559700e-31 - art_sys_185: -1.78104370e-31 + art_sys_43: 2.14405047e-173 + art_sys_44: -1.31326851e-165 + art_sys_45: 8.68758688e-39 + art_sys_46: -5.28230473e-35 + art_sys_47: 1.30885415e-29 + art_sys_48: -1.52130103e-21 + art_sys_49: 1.93051528e+00 + art_sys_50: 1.91473892e+00 + art_sys_51: 3.26468412e+00 + art_sys_52: 2.99327304e+00 + art_sys_53: -3.66641440e+00 + art_sys_54: 1.10523007e+00 + art_sys_55: 4.77199106e-18 + art_sys_56: 6.39598000e-19 + art_sys_57: -1.76237123e-18 + art_sys_58: 1.02159751e+00 + art_sys_59: 1.99410627e-01 + art_sys_60: 4.54143052e-20 + art_sys_61: 1.72781082e-19 + art_sys_62: 1.93025335e-18 + art_sys_63: -2.55524886e-18 + art_sys_64: 1.74232253e-18 + art_sys_65: -1.93753230e-03 + art_sys_66: 1.66268257e-03 + art_sys_67: -5.19183510e-19 + art_sys_68: -8.72596191e-20 + art_sys_69: 8.70579646e-19 + art_sys_70: 2.76425110e-19 + art_sys_71: -3.25910539e-19 + art_sys_72: -9.42691756e-20 + art_sys_73: 1.40721582e-16 + art_sys_74: -1.00169547e-16 + art_sys_75: 1.08240798e-16 + art_sys_76: 3.03675240e-04 + art_sys_77: 3.80696819e-20 + art_sys_78: 4.75692955e-17 + art_sys_79: -1.08320866e-17 + art_sys_80: -6.24035646e-05 + art_sys_81: 4.52844349e-19 + art_sys_82: -1.01800588e-19 + art_sys_83: -3.12283671e-05 + art_sys_84: 6.96543764e-21 + art_sys_85: 2.95293198e-20 + art_sys_86: 4.03856583e-06 + art_sys_87: -9.23428748e-20 + art_sys_88: 7.52664846e-07 + art_sys_89: 3.62309416e-07 + art_sys_90: -1.40813677e-19 + art_sys_91: 8.24279909e-16 + art_sys_92: -1.30345327e-18 + art_sys_93: -5.08460821e-19 + art_sys_94: -8.44761750e-18 + art_sys_95: 7.91463532e-20 + art_sys_96: -3.09370353e-08 + art_sys_97: 8.21740208e-18 + art_sys_98: 7.92392864e-19 + art_sys_99: -8.32520736e-21 + art_sys_100: -1.43913460e-18 + art_sys_101: 2.25451369e-16 + art_sys_102: 1.20390347e-17 + art_sys_103: 2.39204896e-18 + art_sys_104: -6.36776944e-20 + art_sys_105: -4.49974007e-19 + art_sys_106: -2.40501087e-17 + art_sys_107: -3.38641116e-10 + art_sys_108: 2.08164767e-10 + art_sys_109: -8.69629080e-11 + art_sys_110: -2.56418439e-16 + art_sys_111: -7.36973426e-18 + art_sys_112: -1.07287082e-17 + art_sys_113: 3.60079345e-11 + art_sys_114: -8.33040752e-18 + art_sys_115: 2.23901957e-19 + art_sys_116: -8.54755983e-17 + art_sys_117: -1.06795771e-18 + art_sys_118: 2.27748676e-17 + art_sys_119: 4.14081222e-19 + art_sys_120: 5.55223421e-18 + art_sys_121: 1.45623296e-16 + art_sys_122: -3.52474836e-18 + art_sys_123: -1.05618659e-17 + art_sys_124: -1.75571584e-17 + art_sys_125: 6.24242305e-18 + art_sys_126: -9.75814450e-17 + art_sys_127: -8.47186914e-19 + art_sys_128: 1.32706808e-17 + art_sys_129: 2.72872716e-18 + art_sys_130: -1.98103223e-17 + art_sys_131: -2.43444574e-17 + art_sys_132: 2.51927922e-18 + art_sys_133: -9.69811728e-18 + art_sys_134: -1.43829342e-14 + art_sys_135: 3.44728777e-18 + art_sys_136: 1.26995207e-17 + art_sys_137: -4.71514480e-15 + art_sys_138: -1.79679295e-18 + art_sys_139: 1.04267660e-18 + art_sys_140: -1.94320613e-17 + art_sys_141: 1.56613595e-19 + art_sys_142: -2.36583119e-17 + art_sys_143: 1.44470862e-15 + art_sys_144: -4.04267898e-16 + art_sys_145: -1.11787759e-16 + art_sys_146: -0.0 + art_sys_147: -1.80418046e-17 + art_sys_148: 6.53624568e-18 + art_sys_149: 6.53624568e-18 + art_sys_150: -1.40397641e-18 + art_sys_151: -1.40397641e-18 + art_sys_152: 8.27309229e-19 + art_sys_153: -4.13415402e-18 + art_sys_154: 1.41785571e-18 + art_sys_155: -5.27896235e-30 + art_sys_156: 2.85913096e-33 + art_sys_157: -2.13693323e-32 + art_sys_158: -0.0 + art_sys_159: 1.67826982e-11 + art_sys_160: -7.28184317e-12 + art_sys_161: 2.91674943e-12 + art_sys_162: 1.08573952e-12 + art_sys_163: -4.06410133e-13 + art_sys_164: 1.33410639e-13 + art_sys_165: -4.42653776e-14 + art_sys_166: 1.20074383e-24 + art_sys_167: -4.97227402e-25 + art_sys_168: -1.03284422e-24 + art_sys_169: 2.56934182e-25 + art_sys_170: -1.12769833e-25 + art_sys_171: 1.03791768e-25 + art_sys_172: 2.13946475e-25 + art_sys_173: -1.86240397e-26 + art_sys_174: -1.00655305e-26 + art_sys_175: 3.40915858e-29 + art_sys_176: -7.71482487e-28 + art_sys_177: 5.31072902e-28 + art_sys_178: 2.23052216e-28 + art_sys_179: -1.36895558e-29 + art_sys_180: -1.43134715e-28 + art_sys_181: 2.41972593e-29 + art_sys_182: 2.63538171e-29 + art_sys_183: -2.39984896e-30 + art_sys_184: 2.99713558e-30 + art_sys_185: -6.82293465e-31 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -32291,149 +32291,149 @@ bins: art_sys_40: 0.0 art_sys_41: 0.0 art_sys_42: 0.0 - art_sys_43: 4.39824669e-188 - art_sys_44: 7.20315101e-181 - art_sys_45: -3.81648202e-48 - art_sys_46: -2.30820779e-48 - art_sys_47: 3.25080828e-40 - art_sys_48: -4.56817408e-33 - art_sys_49: -3.52930223e-24 - art_sys_50: -4.14256850e-24 - art_sys_51: -3.43467092e-01 - art_sys_52: -1.66166898e+00 - art_sys_53: 8.95663539e-20 - art_sys_54: 3.37440047e-21 - art_sys_55: -6.74216927e-21 - art_sys_56: 7.02466055e-23 - art_sys_57: -9.32260381e-22 - art_sys_58: 5.59288223e-22 - art_sys_59: 2.11306803e+00 - art_sys_60: 2.11876220e-01 - art_sys_61: 3.04260091e+00 - art_sys_62: -1.37019594e+00 - art_sys_63: -1.02688199e+00 - art_sys_64: -4.30419187e-19 - art_sys_65: 3.79530747e-01 - art_sys_66: -4.02416382e-03 - art_sys_67: 3.88907768e-03 - art_sys_68: -1.45082586e-19 - art_sys_69: 3.93474151e-19 - art_sys_70: 3.59847483e-19 - art_sys_71: 4.07443910e-19 - art_sys_72: 3.80972678e-19 - art_sys_73: 3.07120078e-19 - art_sys_74: 1.43957669e-19 - art_sys_75: 8.58045518e-04 - art_sys_76: 1.76849771e-04 - art_sys_77: -9.34564265e-05 - art_sys_78: 1.78804962e-19 - art_sys_79: -1.48509486e-19 - art_sys_80: -1.26499244e-05 - art_sys_81: -2.40036983e-06 - art_sys_82: 1.18019739e-06 - art_sys_83: -1.06282110e-19 - art_sys_84: -3.64184791e-20 - art_sys_85: -1.87140840e-20 - art_sys_86: -9.13126192e-20 - art_sys_87: 5.29903208e-20 - art_sys_88: -1.02841389e-07 - art_sys_89: 9.02624215e-20 - art_sys_90: -1.78789004e-20 - art_sys_91: 2.04634110e-20 - art_sys_92: 2.81880959e-20 - art_sys_93: 3.64671589e-20 - art_sys_94: -1.48614889e-20 - art_sys_95: 6.17680007e-21 - art_sys_96: -5.59641194e-21 - art_sys_97: 6.82763266e-22 - art_sys_98: -4.10455437e-21 - art_sys_99: -2.52615548e-20 - art_sys_100: -1.34545580e-09 - art_sys_101: 7.35251955e-10 - art_sys_102: -7.31505348e-21 - art_sys_103: 2.30888522e-21 - art_sys_104: -1.46387406e-20 - art_sys_105: -2.05262175e-20 - art_sys_106: 1.90107684e-23 - art_sys_107: -1.22587940e-20 - art_sys_108: 2.08934545e-20 - art_sys_109: 1.79993025e-21 - art_sys_110: -3.61306620e-23 - art_sys_111: 1.82111319e-18 - art_sys_112: -7.18006410e-21 - art_sys_113: -9.47937673e-22 - art_sys_114: 6.67210670e-21 - art_sys_115: -1.36786762e-21 - art_sys_116: -2.88891313e-21 - art_sys_117: 1.08940681e-23 - art_sys_118: -4.10806422e-22 - art_sys_119: -7.58520734e-19 - art_sys_120: 2.90847937e-19 - art_sys_121: -2.95915373e-19 - art_sys_122: -1.70018050e-19 - art_sys_123: -1.76339610e-20 - art_sys_124: 6.74356484e-21 - art_sys_125: 1.03266774e-21 - art_sys_126: 9.03076666e-21 - art_sys_127: -4.62938468e-21 - art_sys_128: 1.30352457e-20 - art_sys_129: -5.15436516e-20 - art_sys_130: -3.26000907e-20 - art_sys_131: -4.68298393e-20 - art_sys_132: -6.12147219e-22 - art_sys_133: -1.08704797e-19 - art_sys_134: 1.45645239e-17 - art_sys_135: 3.23759564e-10 - art_sys_136: 1.32728529e-10 - art_sys_137: 6.21643191e-11 - art_sys_138: 2.70933477e-11 - art_sys_139: -4.05530540e-12 - art_sys_140: -1.08652318e-11 - art_sys_141: -1.65547240e-13 - art_sys_142: -1.51937422e-12 - art_sys_143: -4.98456354e-13 - art_sys_144: -1.36230010e-17 - art_sys_145: 8.75099172e-17 - art_sys_146: -3.04936206e-17 - art_sys_147: 3.20677527e-17 - art_sys_148: 1.58493685e-17 - art_sys_149: -4.36982019e-18 - art_sys_150: 1.38921288e-18 - art_sys_151: -1.49654376e-18 - art_sys_152: 5.88197924e-21 - art_sys_153: 3.06347490e-21 - art_sys_154: 5.37802343e-22 - art_sys_155: 2.65161586e-23 - art_sys_156: 1.11807208e-23 - art_sys_157: -4.30897777e-25 - art_sys_158: 3.89399106e-24 - art_sys_159: -9.77667805e-23 - art_sys_160: 8.93873951e-23 - art_sys_161: -3.51105193e-24 - art_sys_162: 2.57989742e-25 - art_sys_163: 2.48556083e-24 - art_sys_164: -4.21709005e-23 - art_sys_165: 1.45142159e-23 - art_sys_166: -3.39927058e-24 - art_sys_167: -1.11957198e-23 - art_sys_168: 5.37913677e-14 - art_sys_169: -3.57940995e-24 - art_sys_170: -1.76029134e-14 - art_sys_171: 5.48030933e-15 - art_sys_172: 9.51268845e-24 - art_sys_173: 6.93972211e-26 - art_sys_174: -1.58473803e-15 - art_sys_175: 0.0 - art_sys_176: -4.26228484e-16 - art_sys_177: 0.0 - art_sys_178: 5.16074568e-17 - art_sys_179: -3.78156177e-18 - art_sys_180: -4.12087047e-23 - art_sys_181: 2.29422077e-31 - art_sys_182: 0.0 - art_sys_183: 5.45855581e-29 - art_sys_184: 1.13679739e-30 - art_sys_185: 6.66991790e-31 + art_sys_43: -3.81458917e-174 + art_sys_44: 2.33650276e-166 + art_sys_45: -1.54564961e-39 + art_sys_46: 9.39799782e-36 + art_sys_47: -2.32864423e-30 + art_sys_48: 2.70661851e-22 + art_sys_49: -3.43467092e-01 + art_sys_50: 1.66166898e+00 + art_sys_51: -2.11306803e+00 + art_sys_52: -2.11876220e-01 + art_sys_53: -3.04260091e+00 + art_sys_54: -1.37019594e+00 + art_sys_55: 4.17098959e-18 + art_sys_56: -4.59852108e-18 + art_sys_57: -1.34724956e-18 + art_sys_58: -1.02688199e+00 + art_sys_59: -3.79530747e-01 + art_sys_60: -3.55646312e-19 + art_sys_61: 3.90883651e-19 + art_sys_62: -1.16011417e-18 + art_sys_63: -2.13570570e-18 + art_sys_64: -7.14952155e-19 + art_sys_65: 4.02416382e-03 + art_sys_66: -3.88907768e-03 + art_sys_67: -1.98021556e-19 + art_sys_68: -1.00116457e-18 + art_sys_69: -1.22151504e-18 + art_sys_70: -3.91491149e-19 + art_sys_71: -3.19633967e-19 + art_sys_72: -2.06016305e-19 + art_sys_73: -4.05528019e-16 + art_sys_74: 2.76019388e-16 + art_sys_75: -3.03848674e-16 + art_sys_76: -8.58045518e-04 + art_sys_77: -1.44493368e-19 + art_sys_78: -1.34320545e-16 + art_sys_79: 3.06665844e-17 + art_sys_80: 1.76849771e-04 + art_sys_81: -1.54145645e-18 + art_sys_82: 3.30703179e-19 + art_sys_83: 9.34564264e-05 + art_sys_84: 5.35147030e-19 + art_sys_85: -8.88417840e-20 + art_sys_86: -1.26499244e-05 + art_sys_87: 1.45660870e-19 + art_sys_88: -2.40036983e-06 + art_sys_89: -1.18019739e-06 + art_sys_90: 6.79236009e-20 + art_sys_91: -2.33556792e-15 + art_sys_92: 3.67915821e-18 + art_sys_93: 1.20482124e-18 + art_sys_94: 2.52915346e-17 + art_sys_95: -4.68557622e-19 + art_sys_96: 1.02841389e-07 + art_sys_97: -2.46365908e-17 + art_sys_98: -2.52820988e-18 + art_sys_99: -7.76819480e-21 + art_sys_100: 4.13680539e-18 + art_sys_101: -6.38776666e-16 + art_sys_102: -3.40757348e-17 + art_sys_103: -7.46092041e-18 + art_sys_104: 1.91562801e-19 + art_sys_105: 1.23065023e-18 + art_sys_106: 7.20174934e-17 + art_sys_107: 1.34545585e-09 + art_sys_108: -7.35251271e-10 + art_sys_109: 3.23760427e-10 + art_sys_110: 8.03185872e-16 + art_sys_111: 2.21269429e-17 + art_sys_112: 3.42149147e-17 + art_sys_113: -1.32728556e-10 + art_sys_114: 2.49301843e-17 + art_sys_115: -8.13570353e-19 + art_sys_116: 2.67602937e-16 + art_sys_117: 3.24388370e-18 + art_sys_118: -7.55611148e-17 + art_sys_119: -1.30290616e-18 + art_sys_120: -1.76688537e-17 + art_sys_121: -5.66275788e-16 + art_sys_122: 1.10802824e-17 + art_sys_123: 3.32660367e-17 + art_sys_124: 6.58792134e-17 + art_sys_125: -2.06958206e-17 + art_sys_126: 3.55906187e-16 + art_sys_127: 2.89600048e-18 + art_sys_128: -4.99669853e-17 + art_sys_129: -8.62437556e-18 + art_sys_130: 7.38121000e-17 + art_sys_131: 9.70541227e-17 + art_sys_132: -9.18546581e-18 + art_sys_133: 3.62574129e-17 + art_sys_134: 5.38445448e-14 + art_sys_135: -1.18423718e-17 + art_sys_136: -4.71490618e-17 + art_sys_137: 1.76555186e-14 + art_sys_138: 5.09213925e-18 + art_sys_139: -4.42569365e-18 + art_sys_140: 7.25568096e-17 + art_sys_141: -4.83334369e-19 + art_sys_142: 8.88950850e-17 + art_sys_143: -5.40980633e-15 + art_sys_144: 1.51390334e-15 + art_sys_145: 4.18630896e-16 + art_sys_146: 0.0 + art_sys_147: 6.75415470e-17 + art_sys_148: -2.41619051e-17 + art_sys_149: -2.41619051e-17 + art_sys_150: 5.25286169e-18 + art_sys_151: 5.25286169e-18 + art_sys_152: -3.12270274e-18 + art_sys_153: 1.54957095e-17 + art_sys_154: -5.30964559e-18 + art_sys_155: 1.97975504e-29 + art_sys_156: -1.01884749e-32 + art_sys_157: 7.95325433e-32 + art_sys_158: 0.0 + art_sys_159: -6.21640828e-11 + art_sys_160: 2.70937312e-11 + art_sys_161: -1.08669875e-11 + art_sys_162: -4.05520924e-12 + art_sys_163: 1.51922501e-12 + art_sys_164: -4.99110858e-13 + art_sys_165: 1.65686019e-13 + art_sys_166: -4.49469588e-24 + art_sys_167: 1.83100822e-24 + art_sys_168: 3.86799887e-24 + art_sys_169: -9.62674889e-25 + art_sys_170: 4.04559218e-25 + art_sys_171: -4.32736949e-25 + art_sys_172: -4.22903035e-25 + art_sys_173: 4.84112638e-26 + art_sys_174: 3.02346082e-26 + art_sys_175: -1.27668276e-28 + art_sys_176: 2.77788747e-28 + art_sys_177: -1.19167834e-27 + art_sys_178: -1.06974055e-27 + art_sys_179: 5.59552200e-29 + art_sys_180: 1.70341717e-28 + art_sys_181: -7.85034758e-29 + art_sys_182: -9.54267648e-29 + art_sys_183: 8.72897501e-30 + art_sys_184: -1.12228943e-29 + art_sys_185: 2.55541252e-30 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -32582,149 +32582,149 @@ bins: art_sys_40: 0.0 art_sys_41: 0.0 art_sys_42: 0.0 - art_sys_43: 2.67857300e-188 - art_sys_44: 4.38678573e-181 - art_sys_45: -2.32450656e-48 - art_sys_46: -1.40586124e-48 - art_sys_47: 1.97997138e-40 - art_sys_48: -2.78234000e-33 - art_sys_49: -2.14959382e-24 - art_sys_50: -2.52311620e-24 - art_sys_51: -2.09195669e-01 - art_sys_52: -9.72117903e-02 - art_sys_53: 1.48177727e-21 - art_sys_54: -2.34421413e-22 - art_sys_55: -5.81214528e-22 - art_sys_56: 9.27855886e-23 - art_sys_57: -2.40345460e-22 - art_sys_58: -3.75081615e-23 - art_sys_59: 5.21203204e-01 - art_sys_60: 4.67999087e-01 - art_sys_61: 2.99150030e-01 - art_sys_62: -2.93428211e+00 - art_sys_63: 2.69479787e-01 - art_sys_64: -1.12759345e-19 - art_sys_65: -4.34233441e-01 - art_sys_66: 1.40853718e-02 - art_sys_67: -1.07149593e-02 - art_sys_68: 1.03974079e-18 - art_sys_69: -4.42291054e-19 - art_sys_70: -4.17845737e-19 - art_sys_71: -2.25437202e-19 - art_sys_72: -2.38262920e-19 - art_sys_73: 1.32771824e-19 - art_sys_74: -8.15043503e-20 - art_sys_75: -2.49775653e-03 - art_sys_76: -5.35255119e-04 - art_sys_77: 2.77838279e-04 - art_sys_78: -1.33005774e-20 - art_sys_79: -5.45086854e-20 - art_sys_80: 3.85738759e-05 - art_sys_81: 7.23534615e-06 - art_sys_82: -3.56211446e-06 - art_sys_83: -1.64608948e-19 - art_sys_84: 8.54038323e-20 - art_sys_85: -3.85604509e-20 - art_sys_86: 5.85795933e-20 - art_sys_87: -4.38456361e-20 - art_sys_88: 3.11993624e-07 - art_sys_89: 1.01199770e-19 - art_sys_90: -1.21857384e-20 - art_sys_91: -3.59059374e-20 - art_sys_92: 1.98282846e-20 - art_sys_93: -7.79073970e-20 - art_sys_94: 2.52022725e-20 - art_sys_95: 4.91861267e-20 - art_sys_96: -9.78253057e-21 - art_sys_97: -1.95368373e-20 - art_sys_98: 4.86346555e-21 - art_sys_99: -1.16308943e-20 - art_sys_100: 3.59664015e-09 - art_sys_101: -2.21653452e-09 - art_sys_102: 1.60053435e-20 - art_sys_103: -2.38174696e-21 - art_sys_104: 1.85543974e-20 - art_sys_105: -8.55718036e-21 - art_sys_106: -3.30645691e-21 - art_sys_107: 2.66842520e-21 - art_sys_108: 5.35350351e-21 - art_sys_109: 6.98027088e-21 - art_sys_110: -3.15589080e-21 - art_sys_111: -1.98645771e-18 - art_sys_112: -4.62263492e-22 - art_sys_113: 1.05082579e-22 - art_sys_114: -3.26149789e-21 - art_sys_115: -9.67410228e-22 - art_sys_116: 1.99525692e-21 - art_sys_117: -1.97233306e-23 - art_sys_118: 2.90545687e-22 - art_sys_119: 7.36581925e-19 - art_sys_120: -4.98253876e-19 - art_sys_121: 3.52037262e-19 - art_sys_122: 1.35352813e-19 - art_sys_123: 1.39027019e-20 - art_sys_124: -7.93967834e-21 - art_sys_125: -3.21495907e-21 - art_sys_126: -2.86361934e-20 - art_sys_127: 4.92423080e-21 - art_sys_128: -4.01511849e-20 - art_sys_129: 1.36784596e-19 - art_sys_130: 5.59753390e-20 - art_sys_131: 1.03635164e-19 - art_sys_132: 1.79429664e-21 - art_sys_133: 3.30226051e-19 - art_sys_134: -4.34878957e-17 - art_sys_135: -9.29493044e-10 - art_sys_136: -3.90861552e-10 - art_sys_137: -1.83073690e-10 - art_sys_138: -8.00876133e-11 - art_sys_139: 1.20510880e-11 - art_sys_140: 3.22367575e-11 - art_sys_141: 4.93957196e-13 - art_sys_142: 4.52484171e-12 - art_sys_143: 1.48598862e-12 - art_sys_144: -8.04958212e-18 - art_sys_145: -4.37469176e-17 - art_sys_146: -3.48662919e-17 - art_sys_147: -7.62511441e-17 - art_sys_148: 9.18947634e-19 - art_sys_149: 2.61026208e-19 - art_sys_150: -5.14297068e-19 - art_sys_151: 1.60747778e-19 - art_sys_152: -2.16278308e-21 - art_sys_153: -4.58803943e-22 - art_sys_154: -3.14601956e-22 - art_sys_155: -1.38981331e-23 - art_sys_156: -8.78079999e-24 - art_sys_157: 7.15843061e-25 - art_sys_158: 4.80263856e-24 - art_sys_159: 1.98609306e-23 - art_sys_160: -1.06985305e-22 - art_sys_161: -1.18279270e-23 - art_sys_162: -5.46859655e-25 - art_sys_163: -4.25546976e-24 - art_sys_164: 1.27216920e-23 - art_sys_165: 1.55403811e-24 - art_sys_166: -5.43843685e-24 - art_sys_167: -1.33243575e-22 - art_sys_168: -1.60588532e-13 - art_sys_169: 5.58036078e-26 - art_sys_170: 5.25647965e-14 - art_sys_171: -1.63687165e-14 - art_sys_172: 1.48005365e-23 - art_sys_173: -2.04756998e-26 - art_sys_174: 4.73369492e-15 - art_sys_175: 0.0 - art_sys_176: 1.27325396e-15 - art_sys_177: 0.0 - art_sys_178: -1.54166264e-16 - art_sys_179: 1.12971061e-17 - art_sys_180: 1.23110679e-22 - art_sys_181: -6.85372671e-31 - art_sys_182: 0.0 - art_sys_183: -1.63060733e-28 - art_sys_184: -3.39542936e-30 - art_sys_185: -1.99256579e-30 + art_sys_43: -2.32335016e-174 + art_sys_44: 1.42309271e-166 + art_sys_45: -9.41409560e-40 + art_sys_46: 5.72404309e-36 + art_sys_47: -1.41830847e-30 + art_sys_48: 1.64852145e-22 + art_sys_49: -2.09195669e-01 + art_sys_50: 9.72117903e-02 + art_sys_51: -5.21203204e-01 + art_sys_52: -4.67999087e-01 + art_sys_53: -2.99150030e-01 + art_sys_54: -2.93428211e+00 + art_sys_55: 7.03438103e-19 + art_sys_56: -2.07762855e-18 + art_sys_57: -1.94854828e-19 + art_sys_58: 2.69479787e-01 + art_sys_59: 4.34233441e-01 + art_sys_60: 2.07382836e-19 + art_sys_61: 3.32735903e-19 + art_sys_62: 8.04242265e-19 + art_sys_63: -3.15155719e-18 + art_sys_64: 5.21781522e-19 + art_sys_65: -1.40853718e-02 + art_sys_66: 1.07149593e-02 + art_sys_67: -9.09624504e-19 + art_sys_68: -7.13922710e-20 + art_sys_69: 1.51850034e-18 + art_sys_70: -4.90289440e-19 + art_sys_71: 4.18505177e-19 + art_sys_72: 4.88402576e-20 + art_sys_73: 1.18053388e-15 + art_sys_74: -8.36833795e-16 + art_sys_75: 8.81595401e-16 + art_sys_76: 2.49775653e-03 + art_sys_77: 1.24412056e-18 + art_sys_78: 3.90655933e-16 + art_sys_79: -9.33101022e-17 + art_sys_80: -5.35255119e-04 + art_sys_81: 4.04883221e-18 + art_sys_82: -1.01183869e-18 + art_sys_83: -2.77838279e-04 + art_sys_84: -8.13130472e-19 + art_sys_85: 2.78378783e-19 + art_sys_86: 3.85738760e-05 + art_sys_87: -3.01978072e-19 + art_sys_88: 7.23534616e-06 + art_sys_89: 3.56211446e-06 + art_sys_90: -6.98071902e-19 + art_sys_91: 7.06928642e-15 + art_sys_92: -1.11560580e-17 + art_sys_93: -3.72622491e-18 + art_sys_94: -7.52844541e-17 + art_sys_95: 1.54068428e-18 + art_sys_96: -3.11993625e-07 + art_sys_97: 7.31972603e-17 + art_sys_98: 7.43520125e-18 + art_sys_99: 5.85143491e-20 + art_sys_100: -1.22787672e-17 + art_sys_101: 1.93345480e-15 + art_sys_102: 1.03144889e-16 + art_sys_103: 2.26607758e-17 + art_sys_104: -5.96699471e-19 + art_sys_105: -3.80758079e-18 + art_sys_106: -2.14118629e-16 + art_sys_107: -3.59664046e-09 + art_sys_108: 2.21653263e-09 + art_sys_109: -9.29495544e-10 + art_sys_110: -2.44914298e-15 + art_sys_111: -6.57877038e-17 + art_sys_112: -1.03095215e-16 + art_sys_113: 3.90861642e-10 + art_sys_114: -7.41571495e-17 + art_sys_115: 2.44472280e-18 + art_sys_116: -8.16266398e-16 + art_sys_117: -9.65077415e-18 + art_sys_118: 2.29479940e-16 + art_sys_119: 3.90822398e-18 + art_sys_120: 5.33726960e-17 + art_sys_121: 1.51418990e-15 + art_sys_122: -3.37350626e-17 + art_sys_123: -1.01046885e-16 + art_sys_124: -1.97679025e-16 + art_sys_125: 6.28337852e-17 + art_sys_126: -1.04062206e-15 + art_sys_127: -8.64452837e-18 + art_sys_128: 1.47917882e-16 + art_sys_129: 2.63858298e-17 + art_sys_130: -2.18470323e-16 + art_sys_131: -2.60172833e-16 + art_sys_132: 2.65228276e-17 + art_sys_133: -1.08652008e-16 + art_sys_134: -1.60746755e-13 + art_sys_135: 3.49403375e-17 + art_sys_136: 1.39622659e-16 + art_sys_137: -5.27216528e-14 + art_sys_138: -1.54106133e-17 + art_sys_139: 1.14566376e-17 + art_sys_140: -2.16147333e-16 + art_sys_141: 1.82690477e-18 + art_sys_142: -2.65583461e-16 + art_sys_143: 1.61580043e-14 + art_sys_144: -4.52209075e-15 + art_sys_145: -1.25054635e-15 + art_sys_146: -0.0 + art_sys_147: -2.01669327e-16 + art_sys_148: 7.10302613e-17 + art_sys_149: 7.10302613e-17 + art_sys_150: -1.57328568e-17 + art_sys_151: -1.57328568e-17 + art_sys_152: 9.18373537e-18 + art_sys_153: -4.63125083e-17 + art_sys_154: 1.58613823e-17 + art_sys_155: -5.93177218e-29 + art_sys_156: 2.85945046e-32 + art_sys_157: -2.30624892e-31 + art_sys_158: -0.0 + art_sys_159: 1.83072998e-10 + art_sys_160: -8.00887403e-11 + art_sys_161: 3.22419619e-11 + art_sys_162: 1.20508033e-11 + art_sys_163: -4.52439693e-12 + art_sys_164: 1.48793733e-12 + art_sys_165: -4.94370787e-13 + art_sys_166: 1.34236262e-23 + art_sys_167: -5.46967186e-24 + art_sys_168: -1.15529321e-23 + art_sys_169: 2.87338498e-24 + art_sys_170: -1.22202152e-24 + art_sys_171: 1.24973287e-24 + art_sys_172: 1.35581022e-24 + art_sys_173: -1.33331432e-25 + art_sys_174: -1.00678461e-25 + art_sys_175: 3.81372166e-28 + art_sys_176: -2.10402510e-27 + art_sys_177: 3.28375438e-27 + art_sys_178: 3.04709761e-27 + art_sys_179: -1.74039413e-28 + art_sys_180: -9.07029702e-28 + art_sys_181: 2.46260104e-28 + art_sys_182: 2.77365983e-28 + art_sys_183: -2.56416601e-29 + art_sys_184: 3.35295758e-29 + art_sys_185: -7.63567965e-30 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -32873,149 +32873,149 @@ bins: art_sys_40: 0.0 art_sys_41: 0.0 art_sys_42: 0.0 - art_sys_43: 2.58708348e-189 - art_sys_44: 4.23695039e-182 - art_sys_45: -2.24546109e-49 - art_sys_46: -1.35805455e-49 - art_sys_47: 1.91264192e-41 - art_sys_48: -2.68772579e-34 - art_sys_49: -2.07649631e-25 - art_sys_50: -2.43731696e-25 - art_sys_51: -2.02081914e-02 - art_sys_52: 1.27852765e-01 - art_sys_53: -7.81824609e-21 - art_sys_54: -3.66130672e-22 - art_sys_55: 4.72695626e-22 - art_sys_56: 1.65255298e-23 - art_sys_57: 2.58379650e-23 - art_sys_58: -6.23995066e-23 - art_sys_59: -9.67815616e-02 - art_sys_60: 7.67061301e-02 - art_sys_61: -5.64323162e-01 - art_sys_62: -1.17849762e+00 - art_sys_63: 1.57544816e+00 - art_sys_64: -6.31546195e-19 - art_sys_65: 4.43368543e-01 - art_sys_66: -9.98240157e-03 - art_sys_67: 1.83320775e-02 - art_sys_68: -7.92797024e-20 - art_sys_69: 9.86252744e-19 - art_sys_70: -6.86468619e-19 - art_sys_71: 1.58911024e-20 - art_sys_72: 1.80988211e-19 - art_sys_73: 1.16416846e-20 - art_sys_74: 9.40854188e-20 - art_sys_75: 5.56820294e-03 - art_sys_76: 1.31042981e-03 - art_sys_77: -7.17362607e-04 - art_sys_78: -9.91774359e-20 - art_sys_79: -1.41977171e-19 - art_sys_80: -1.06025508e-04 - art_sys_81: -2.07734355e-05 - art_sys_82: 1.02949171e-05 - art_sys_83: 4.14670688e-20 - art_sys_84: 7.49668512e-20 - art_sys_85: 4.00704086e-20 - art_sys_86: 1.35263872e-19 - art_sys_87: -1.10389126e-20 - art_sys_88: -9.28972893e-07 - art_sys_89: -6.20893161e-21 - art_sys_90: -2.62874241e-20 - art_sys_91: -2.18262690e-21 - art_sys_92: 4.37090892e-20 - art_sys_93: 2.50802180e-20 - art_sys_94: -2.10134511e-20 - art_sys_95: 9.69058340e-21 - art_sys_96: 2.78202329e-20 - art_sys_97: 1.71029294e-20 - art_sys_98: -8.45458552e-21 - art_sys_99: -6.81704610e-21 - art_sys_100: -1.17982890e-08 - art_sys_101: 6.65476594e-09 - art_sys_102: 2.86295024e-20 - art_sys_103: -1.45780212e-20 - art_sys_104: 6.32392847e-21 - art_sys_105: -4.15802552e-21 - art_sys_106: -3.87798828e-21 - art_sys_107: -1.55827077e-20 - art_sys_108: 7.67210878e-21 - art_sys_109: 6.49685583e-21 - art_sys_110: 1.64548642e-22 - art_sys_111: 2.23641030e-18 - art_sys_112: 7.78766299e-21 - art_sys_113: 4.41249279e-21 - art_sys_114: -3.26014409e-21 - art_sys_115: -2.46093520e-21 - art_sys_116: -3.77976859e-21 - art_sys_117: 1.01442796e-23 - art_sys_118: -1.02504115e-21 - art_sys_119: -7.68694742e-19 - art_sys_120: 7.78320238e-19 - art_sys_121: -4.44916592e-19 - art_sys_122: -9.36562335e-20 - art_sys_123: -1.91870611e-20 - art_sys_124: 1.21224193e-20 - art_sys_125: 5.41981888e-22 - art_sys_126: 4.64760712e-20 - art_sys_127: -5.02364386e-21 - art_sys_128: 1.40952124e-19 - art_sys_129: -4.17514180e-19 - art_sys_130: -1.30121769e-19 - art_sys_131: -2.87563419e-19 - art_sys_132: -5.65502927e-21 - art_sys_133: -1.05605137e-18 - art_sys_134: 1.38365201e-16 - art_sys_135: 2.94358371e-09 - art_sys_136: 1.21616848e-09 - art_sys_137: 5.75759378e-10 - art_sys_138: 2.52401949e-10 - art_sys_139: -3.81988361e-11 - art_sys_140: -1.01905415e-10 - art_sys_141: -1.57087379e-12 - art_sys_142: -1.43613063e-11 - art_sys_143: -4.72276916e-12 - art_sys_144: 9.52568689e-19 - art_sys_145: -5.30862211e-17 - art_sys_146: 7.77956797e-17 - art_sys_147: -9.84329051e-17 - art_sys_148: -3.73982570e-17 - art_sys_149: 3.56665016e-18 - art_sys_150: -1.25774294e-18 - art_sys_151: 8.40749370e-19 - art_sys_152: -6.18770839e-21 - art_sys_153: -1.89724675e-21 - art_sys_154: -2.30484628e-22 - art_sys_155: 1.79863319e-23 - art_sys_156: 1.19856741e-23 - art_sys_157: 8.62670166e-24 - art_sys_158: 3.85557495e-25 - art_sys_159: 4.24111144e-23 - art_sys_160: -3.82143013e-24 - art_sys_161: 4.73234591e-25 - art_sys_162: -7.29080485e-25 - art_sys_163: -8.29366508e-25 - art_sys_164: 2.96845312e-23 - art_sys_165: 1.48512850e-24 - art_sys_166: -3.42794201e-24 - art_sys_167: 9.62297554e-24 - art_sys_168: 5.10934354e-13 - art_sys_169: -4.87311635e-24 - art_sys_170: -1.67286858e-13 - art_sys_171: 5.20999365e-14 - art_sys_172: 1.27820816e-24 - art_sys_173: -2.97904616e-26 - art_sys_174: -1.50683341e-14 - art_sys_175: 0.0 - art_sys_176: -4.05319751e-15 - art_sys_177: 0.0 - art_sys_178: 4.90783137e-16 - art_sys_179: -3.59631411e-17 - art_sys_180: -3.91911434e-22 - art_sys_181: 2.18180453e-30 - art_sys_182: 0.0 - art_sys_183: 5.19071585e-28 - art_sys_184: 1.08081160e-29 - art_sys_185: 6.34310975e-30 + art_sys_43: -2.24433873e-175 + art_sys_44: 1.37469683e-167 + art_sys_45: -9.09396676e-41 + art_sys_46: 5.52939547e-37 + art_sys_47: -1.37007851e-31 + art_sys_48: 1.59246304e-23 + art_sys_49: -2.02081914e-02 + art_sys_50: -1.27852765e-01 + art_sys_51: 9.67815616e-02 + art_sys_52: -7.67061301e-02 + art_sys_53: 5.64323162e-01 + art_sys_54: -1.17849762e+00 + art_sys_55: -6.00824697e-19 + art_sys_56: 1.85751944e-18 + art_sys_57: 2.20418418e-19 + art_sys_58: 1.57544816e+00 + art_sys_59: -4.43368543e-01 + art_sys_60: -1.09057717e-18 + art_sys_61: 6.62905045e-19 + art_sys_62: 8.00193495e-19 + art_sys_63: -3.87896456e-19 + art_sys_64: -7.22772216e-20 + art_sys_65: 9.98240157e-03 + art_sys_66: -1.83320775e-02 + art_sys_67: 6.92721153e-19 + art_sys_68: 1.19232310e-18 + art_sys_69: 2.63309167e-19 + art_sys_70: 6.82346300e-20 + art_sys_71: -2.29008660e-19 + art_sys_72: 2.02731004e-20 + art_sys_73: -2.74766787e-15 + art_sys_74: 1.75518974e-15 + art_sys_75: -1.95628154e-15 + art_sys_76: -5.56820294e-03 + art_sys_77: -2.99474712e-18 + art_sys_78: -8.71175337e-16 + art_sys_79: 2.29096941e-16 + art_sys_80: 1.31042981e-03 + art_sys_81: -1.26871374e-17 + art_sys_82: 2.91025229e-18 + art_sys_83: 7.17362607e-04 + art_sys_84: 2.11715628e-18 + art_sys_85: -7.25452934e-19 + art_sys_86: -1.06025508e-04 + art_sys_87: 6.47218066e-19 + art_sys_88: -2.07734355e-05 + art_sys_89: -1.02949171e-05 + art_sys_90: 1.59914224e-18 + art_sys_91: -1.73058492e-14 + art_sys_92: 2.72613956e-17 + art_sys_93: 9.09565222e-18 + art_sys_94: 1.94561942e-16 + art_sys_95: -3.78167863e-18 + art_sys_96: 9.28972897e-07 + art_sys_97: -1.88883009e-16 + art_sys_98: -1.86899184e-17 + art_sys_99: 8.54940916e-22 + art_sys_100: 3.15976680e-17 + art_sys_101: -4.73341742e-15 + art_sys_102: -2.52526678e-16 + art_sys_103: -6.24073390e-17 + art_sys_104: 1.51236292e-18 + art_sys_105: 9.31486080e-18 + art_sys_106: 5.52855829e-16 + art_sys_107: 1.17982893e-08 + art_sys_108: -6.65475977e-09 + art_sys_109: 2.94359152e-09 + art_sys_110: 6.73206890e-15 + art_sys_111: 1.69918155e-16 + art_sys_112: 2.95938789e-16 + art_sys_113: -1.21616877e-09 + art_sys_114: 1.91432165e-16 + art_sys_115: -7.17260360e-18 + art_sys_116: 2.24111003e-15 + art_sys_117: 2.50200987e-17 + art_sys_118: -6.81887251e-16 + art_sys_119: -1.05829707e-17 + art_sys_120: -1.51892125e-16 + art_sys_121: -4.93745510e-15 + art_sys_122: 9.32536038e-17 + art_sys_123: 2.81813940e-16 + art_sys_124: 6.18281141e-16 + art_sys_125: -1.86486152e-16 + art_sys_126: 3.26440169e-15 + art_sys_127: 2.74365408e-17 + art_sys_128: -4.66443209e-16 + art_sys_129: -7.34401478e-17 + art_sys_130: 6.89736441e-16 + art_sys_131: 8.52531585e-16 + art_sys_132: -8.38761354e-17 + art_sys_133: 3.43308663e-16 + art_sys_134: 5.11437110e-13 + art_sys_135: -1.05541902e-16 + art_sys_136: -4.39750006e-16 + art_sys_137: 1.67785805e-13 + art_sys_138: 3.77290550e-17 + art_sys_139: -3.84341654e-17 + art_sys_140: 6.86395498e-16 + art_sys_141: -5.12376262e-18 + art_sys_142: 8.43541862e-16 + art_sys_143: -5.14290381e-14 + art_sys_144: 1.43947824e-14 + art_sys_145: 3.98090374e-15 + art_sys_146: 0.0 + art_sys_147: 6.41867978e-16 + art_sys_148: -2.24901165e-16 + art_sys_149: -2.24901165e-16 + art_sys_150: 5.00312344e-17 + art_sys_151: 5.00312344e-17 + art_sys_152: -2.93162851e-17 + art_sys_153: 1.47471258e-16 + art_sys_154: -5.04920111e-17 + art_sys_155: 1.88924941e-28 + art_sys_156: -8.61418659e-32 + art_sys_157: 7.29223328e-31 + art_sys_158: 0.0 + art_sys_159: -5.75757207e-10 + art_sys_160: 2.52405492e-10 + art_sys_161: -1.01921855e-10 + art_sys_162: -3.81979371e-11 + art_sys_163: 1.43598883e-11 + art_sys_164: -4.72895338e-12 + art_sys_165: 1.57218880e-12 + art_sys_166: -4.27134850e-23 + art_sys_167: 1.74989412e-23 + art_sys_168: 3.67730008e-23 + art_sys_169: -9.14493747e-24 + art_sys_170: 3.93369035e-24 + art_sys_171: -4.00472335e-24 + art_sys_172: -3.52425246e-24 + art_sys_173: 4.26862710e-25 + art_sys_174: 3.32363154e-25 + art_sys_175: -1.21403002e-27 + art_sys_176: 4.82686310e-27 + art_sys_177: -9.56699635e-27 + art_sys_178: -9.93760026e-27 + art_sys_179: 4.56133814e-28 + art_sys_180: 1.29052004e-27 + art_sys_181: -7.10260633e-28 + art_sys_182: -8.72013845e-28 + art_sys_183: 8.10182951e-29 + art_sys_184: -1.06747378e-28 + art_sys_185: 2.43122307e-29 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -33164,149 +33164,149 @@ bins: art_sys_40: 0.0 art_sys_41: 0.0 art_sys_42: 0.0 - art_sys_43: -5.64083705e-190 - art_sys_44: -9.23818149e-183 - art_sys_45: 4.89471946e-50 - art_sys_46: 2.96032564e-50 - art_sys_47: -4.16923086e-42 - art_sys_48: 5.85878054e-35 - art_sys_49: 4.52640527e-26 - art_sys_50: 5.31293232e-26 - art_sys_51: 4.40503860e-03 - art_sys_52: 2.10391499e-02 - art_sys_53: -1.13292270e-21 - art_sys_54: -4.25963848e-23 - art_sys_55: 8.54212389e-23 - art_sys_56: -8.97225711e-25 - art_sys_57: 1.18501343e-23 - art_sys_58: -7.42283706e-24 - art_sys_59: -3.26755347e-02 - art_sys_60: -1.63308905e-02 - art_sys_61: -6.86244571e-02 - art_sys_62: 7.21227374e-02 - art_sys_63: 1.57999570e-01 - art_sys_64: -6.83361102e-20 - art_sys_65: 1.30758121e-01 - art_sys_66: 1.28530691e-01 - art_sys_67: -8.43869071e-02 - art_sys_68: -9.54995291e-23 - art_sys_69: 1.18115545e-18 - art_sys_70: -1.45662815e-19 - art_sys_71: 1.89573093e-19 - art_sys_72: 1.86520258e-19 - art_sys_73: 4.54765152e-19 - art_sys_74: -1.04363857e-19 - art_sys_75: -2.87023061e-02 - art_sys_76: -6.38049702e-03 - art_sys_77: 3.59234340e-03 - art_sys_78: -7.79556881e-20 - art_sys_79: 1.71936652e-19 - art_sys_80: 5.51489660e-04 - art_sys_81: 1.06965420e-04 - art_sys_82: -5.41250666e-05 - art_sys_83: 4.58002012e-20 - art_sys_84: 9.89804629e-20 - art_sys_85: 5.70739193e-21 - art_sys_86: -7.48163608e-20 - art_sys_87: 2.53894843e-20 - art_sys_88: 4.95539035e-06 - art_sys_89: -5.37045359e-20 - art_sys_90: 4.50132746e-20 - art_sys_91: -1.86482718e-20 - art_sys_92: -5.65943051e-21 - art_sys_93: 3.09143035e-21 - art_sys_94: -5.75362715e-20 - art_sys_95: 9.02076555e-21 - art_sys_96: -1.12884683e-20 - art_sys_97: 1.22919803e-20 - art_sys_98: -7.84875819e-22 - art_sys_99: -3.01099044e-20 - art_sys_100: 6.32980877e-08 - art_sys_101: -3.74911104e-08 - art_sys_102: 1.24377497e-20 - art_sys_103: -8.41960142e-21 - art_sys_104: 4.29106569e-21 - art_sys_105: 9.40049096e-21 - art_sys_106: -7.43702484e-21 - art_sys_107: -2.24613147e-20 - art_sys_108: -4.02417535e-21 - art_sys_109: -4.04187690e-21 - art_sys_110: -4.40524003e-21 - art_sys_111: -5.45605835e-18 - art_sys_112: 1.95405349e-21 - art_sys_113: 4.85158797e-22 - art_sys_114: -5.05443825e-22 - art_sys_115: -1.76066383e-21 - art_sys_116: 6.43404417e-22 - art_sys_117: 7.54349730e-23 - art_sys_118: 1.39817998e-21 - art_sys_119: 1.70647939e-18 - art_sys_120: -3.04760460e-18 - art_sys_121: 1.31056847e-18 - art_sys_122: -1.14016318e-19 - art_sys_123: 4.75564993e-20 - art_sys_124: -9.76500829e-21 - art_sys_125: -3.96673191e-21 - art_sys_126: -1.95288081e-19 - art_sys_127: 1.35891370e-20 - art_sys_128: -8.11079208e-19 - art_sys_129: 2.35111033e-18 - art_sys_130: 6.51965642e-19 - art_sys_131: 1.56072704e-18 - art_sys_132: 3.21612420e-20 - art_sys_133: 6.03331125e-18 - art_sys_134: -7.89179978e-16 - art_sys_135: -1.61526366e-08 - art_sys_136: -6.84541594e-09 - art_sys_137: -3.23318744e-09 - art_sys_138: -1.42713568e-09 - art_sys_139: 2.17019113e-10 - art_sys_140: 5.77650710e-10 - art_sys_141: 8.95639133e-12 - art_sys_142: 8.17416444e-11 - art_sys_143: 2.69044302e-11 - art_sys_144: 7.98657612e-18 - art_sys_145: -9.26153303e-17 - art_sys_146: 7.00448405e-17 - art_sys_147: 2.81509084e-17 - art_sys_148: -1.07777950e-17 - art_sys_149: -2.16720944e-18 - art_sys_150: 2.04362695e-18 - art_sys_151: -2.81203386e-19 - art_sys_152: -3.17610142e-22 - art_sys_153: 4.46520399e-22 - art_sys_154: 6.03486919e-22 - art_sys_155: -1.63245632e-22 - art_sys_156: -8.85647431e-23 - art_sys_157: -3.50345784e-23 - art_sys_158: -8.73320861e-24 - art_sys_159: -9.10890265e-23 - art_sys_160: 1.24841402e-22 - art_sys_161: -2.44032458e-24 - art_sys_162: -9.95035726e-25 - art_sys_163: 1.85813219e-24 - art_sys_164: 5.81655615e-24 - art_sys_165: -6.27869476e-25 - art_sys_166: 1.30031512e-23 - art_sys_167: 2.45607615e-22 - art_sys_168: -2.91413707e-12 - art_sys_169: 7.13931488e-24 - art_sys_170: 9.54370862e-13 - art_sys_171: -2.97276202e-13 - art_sys_172: -5.16983981e-24 - art_sys_173: -4.44682697e-26 - art_sys_174: 8.59836575e-14 - art_sys_175: 0.0 - art_sys_176: 2.31298221e-14 - art_sys_177: 0.0 - art_sys_178: -2.80070538e-15 - art_sys_179: 2.05233182e-16 - art_sys_180: 2.23653381e-21 - art_sys_181: -1.24509369e-29 - art_sys_182: 0.0 - art_sys_183: -2.96211614e-27 - art_sys_184: -6.16715086e-29 - art_sys_185: -3.61984238e-29 + art_sys_43: 4.89229175e-176 + art_sys_44: -2.99661449e-168 + art_sys_45: 1.98232855e-41 + art_sys_46: -1.20531323e-37 + art_sys_47: 2.98653581e-32 + art_sys_48: -3.47129588e-24 + art_sys_49: 4.40503860e-03 + art_sys_50: -2.10391499e-02 + art_sys_51: 3.26755347e-02 + art_sys_52: 1.63308905e-02 + art_sys_53: 6.86244571e-02 + art_sys_54: 7.21227374e-02 + art_sys_55: -9.65711975e-20 + art_sys_56: 3.40489719e-19 + art_sys_57: 3.18016573e-20 + art_sys_58: 1.57999570e-01 + art_sys_59: -1.30758121e-01 + art_sys_60: -2.01748316e-19 + art_sys_61: 7.81427795e-20 + art_sys_62: -2.73336600e-20 + art_sys_63: 2.44938623e-19 + art_sys_64: -1.19271253e-19 + art_sys_65: -1.28530691e-01 + art_sys_66: 8.43869071e-02 + art_sys_67: 5.49713320e-19 + art_sys_68: -1.52436401e-19 + art_sys_69: -6.44139761e-20 + art_sys_70: -5.36159009e-19 + art_sys_71: 2.17275784e-19 + art_sys_72: 4.01610103e-19 + art_sys_73: 1.40681472e-14 + art_sys_74: -9.66428444e-15 + art_sys_75: 1.00517954e-14 + art_sys_76: 2.87023061e-02 + art_sys_77: 1.56445079e-17 + art_sys_78: 4.48993860e-15 + art_sys_79: -1.11812158e-15 + art_sys_80: -6.38049702e-03 + art_sys_81: 6.45314529e-17 + art_sys_82: -1.54179487e-17 + art_sys_83: -3.59234340e-03 + art_sys_84: -2.31523339e-17 + art_sys_85: 3.65805941e-18 + art_sys_86: 5.51489661e-04 + art_sys_87: -3.39564078e-18 + art_sys_88: 1.06965420e-04 + art_sys_89: 5.41250666e-05 + art_sys_90: -7.89028800e-18 + art_sys_91: 8.42576283e-14 + art_sys_92: -1.32809632e-16 + art_sys_93: -4.39348297e-17 + art_sys_94: -9.74029747e-16 + art_sys_95: 1.86614124e-17 + art_sys_96: -4.95539037e-06 + art_sys_97: 9.46324608e-16 + art_sys_98: 9.23422942e-17 + art_sys_99: -6.23275260e-19 + art_sys_100: -1.58443987e-16 + art_sys_101: 2.30466824e-14 + art_sys_102: 1.22955857e-15 + art_sys_103: 3.24948072e-16 + art_sys_104: -7.46651227e-18 + art_sys_105: -4.53270018e-17 + art_sys_106: -2.76849682e-15 + art_sys_107: -6.32980908e-08 + art_sys_108: 3.74910770e-08 + art_sys_109: -1.61526797e-08 + art_sys_110: -3.50165294e-14 + art_sys_111: -8.50839177e-16 + art_sys_112: -1.52286764e-15 + art_sys_113: 6.84541764e-09 + art_sys_114: -9.58706431e-16 + art_sys_115: 3.79269371e-17 + art_sys_116: -1.16601911e-14 + art_sys_117: -1.25679581e-16 + art_sys_118: 3.63497886e-15 + art_sys_119: 5.44124055e-17 + art_sys_120: 7.84602217e-16 + art_sys_121: 2.65276305e-14 + art_sys_122: -4.84403859e-16 + art_sys_123: -1.46040239e-15 + art_sys_124: -3.51932016e-15 + art_sys_125: 9.93950915e-16 + art_sys_126: -1.82819623e-14 + art_sys_127: -1.44458432e-16 + art_sys_128: 2.62906591e-15 + art_sys_129: 3.85464153e-16 + art_sys_130: -3.90706895e-15 + art_sys_131: -4.58141817e-15 + art_sys_132: 4.53421389e-16 + art_sys_133: -1.95303695e-15 + art_sys_134: -2.91700311e-12 + art_sys_135: 5.61054754e-16 + art_sys_136: 2.48682709e-15 + art_sys_137: -9.57217057e-13 + art_sys_138: -1.83701808e-16 + art_sys_139: 2.02715897e-16 + art_sys_140: -3.90591704e-15 + art_sys_141: 3.46611671e-17 + art_sys_142: -4.80786382e-15 + art_sys_143: 2.93447450e-13 + art_sys_144: -8.21403730e-14 + art_sys_145: -2.27172411e-14 + art_sys_146: -0.0 + art_sys_147: -3.66158159e-15 + art_sys_148: 1.26833893e-15 + art_sys_149: 1.26833893e-15 + art_sys_150: -2.86134229e-16 + art_sys_151: -2.86134229e-16 + art_sys_152: 1.66627973e-16 + art_sys_153: -8.41907740e-16 + art_sys_154: 2.88137370e-16 + art_sys_155: -1.08132447e-27 + art_sys_156: 4.52488924e-31 + art_sys_157: -4.04265849e-30 + art_sys_158: -0.0 + art_sys_159: 3.23317529e-09 + art_sys_160: -1.42715568e-09 + art_sys_161: 5.77743854e-10 + art_sys_162: 2.17014018e-10 + art_sys_163: -8.17335487e-11 + art_sys_164: 2.69396283e-11 + art_sys_165: -8.96389000e-12 + art_sys_166: 2.43688360e-22 + art_sys_167: -1.01611256e-22 + art_sys_168: -2.09837999e-22 + art_sys_169: 5.21535878e-23 + art_sys_170: -2.20916180e-23 + art_sys_171: 2.29129965e-23 + art_sys_172: 1.90123528e-23 + art_sys_173: -2.39977572e-24 + art_sys_174: -1.87414423e-24 + art_sys_175: 6.92789461e-27 + art_sys_176: -2.52864768e-26 + art_sys_177: 4.90052700e-26 + art_sys_178: 5.77056985e-26 + art_sys_179: -2.79339881e-27 + art_sys_180: -6.34928128e-27 + art_sys_181: 3.97904455e-27 + art_sys_182: 5.21051599e-27 + art_sys_183: -4.57178803e-28 + art_sys_184: 6.09225702e-28 + art_sys_185: -1.38769640e-28 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -33455,149 +33455,149 @@ bins: art_sys_40: 0.0 art_sys_41: 0.0 art_sys_42: 0.0 - art_sys_43: -2.43184929e-190 - art_sys_44: -3.98271832e-183 - art_sys_45: 2.11038899e-50 - art_sys_46: 1.27636297e-50 - art_sys_47: -1.79759003e-42 - art_sys_48: 2.52604997e-35 - art_sys_49: 1.95158802e-26 - art_sys_50: 2.29070409e-26 - art_sys_51: 1.89926002e-03 - art_sys_52: 1.15514208e-03 - art_sys_53: -2.92643983e-23 - art_sys_54: 1.44610950e-24 - art_sys_55: 6.32706204e-24 - art_sys_56: -8.34372854e-25 - art_sys_57: 2.27927727e-24 - art_sys_58: 2.57497739e-25 - art_sys_59: -4.47839131e-03 - art_sys_60: -7.03394410e-03 - art_sys_61: 2.28529119e-02 - art_sys_62: 8.49182234e-02 - art_sys_63: -9.10314569e-02 - art_sys_64: 4.01467990e-20 - art_sys_65: -2.25408899e-02 - art_sys_66: 1.42578380e-01 - art_sys_67: 3.39918644e-02 - art_sys_68: 1.58016373e-19 - art_sys_69: 9.10766088e-19 - art_sys_70: 3.06007615e-19 - art_sys_71: -4.69638405e-21 - art_sys_72: 9.04789225e-19 - art_sys_73: 1.33234929e-19 - art_sys_74: -1.36954637e-21 - art_sys_75: 3.25418310e-02 - art_sys_76: 1.14093504e-02 - art_sys_77: -6.73714534e-03 - art_sys_78: -6.65687031e-21 - art_sys_79: -9.21554892e-20 - art_sys_80: -1.25652506e-03 - art_sys_81: -2.58648401e-04 - art_sys_82: 1.32979077e-04 - art_sys_83: 2.86208153e-20 - art_sys_84: -3.81094749e-20 - art_sys_85: -5.98684132e-20 - art_sys_86: 6.86096525e-20 - art_sys_87: -9.48792286e-20 - art_sys_88: -1.29318179e-05 - art_sys_89: 7.08428496e-20 - art_sys_90: -4.25810217e-20 - art_sys_91: 5.66790990e-20 - art_sys_92: 1.02856437e-20 - art_sys_93: 2.72468147e-20 - art_sys_94: 1.01422856e-19 - art_sys_95: 6.33648174e-21 - art_sys_96: 1.32426892e-20 - art_sys_97: 1.32217493e-20 - art_sys_98: 1.18596816e-20 - art_sys_99: 3.31439403e-20 - art_sys_100: -1.63253408e-07 - art_sys_101: 9.78177103e-08 - art_sys_102: -7.19067093e-21 - art_sys_103: -1.45684454e-20 - art_sys_104: 4.28804347e-21 - art_sys_105: -2.06022265e-20 - art_sys_106: 1.57598958e-20 - art_sys_107: -2.14315392e-20 - art_sys_108: -3.96728236e-22 - art_sys_109: 8.74155895e-21 - art_sys_110: 3.07585633e-22 - art_sys_111: 5.77234795e-18 - art_sys_112: -4.86489512e-22 - art_sys_113: -3.43350327e-21 - art_sys_114: -1.30516846e-21 - art_sys_115: -1.93681988e-21 - art_sys_116: 2.20133098e-21 - art_sys_117: -1.83348282e-22 - art_sys_118: -1.38986361e-21 - art_sys_119: -1.89507853e-18 - art_sys_120: 3.59299407e-18 - art_sys_121: -1.44151450e-18 - art_sys_122: 1.96352019e-19 - art_sys_123: -4.59590409e-20 - art_sys_124: 2.19308506e-20 - art_sys_125: 4.66753520e-21 - art_sys_126: 1.55175101e-19 - art_sys_127: -1.27157615e-20 - art_sys_128: 2.48728005e-18 - art_sys_129: -6.67410269e-18 - art_sys_130: -1.73165361e-18 - art_sys_131: -4.31784325e-18 - art_sys_132: -9.07625798e-20 - art_sys_133: -1.70754563e-17 - art_sys_134: 2.23396180e-15 - art_sys_135: 4.33799539e-08 - art_sys_136: 1.83925452e-08 - art_sys_137: 8.85599393e-09 - art_sys_138: 3.93546241e-09 - art_sys_139: -6.07680514e-10 - art_sys_140: -1.60824029e-09 - art_sys_141: -2.53208839e-11 - art_sys_142: -2.29920372e-10 - art_sys_143: -7.59184613e-11 - art_sys_144: 2.32811521e-17 - art_sys_145: 7.07062647e-18 - art_sys_146: 9.96993640e-17 - art_sys_147: 8.89221508e-17 - art_sys_148: 2.65915277e-18 - art_sys_149: -5.55061414e-18 - art_sys_150: 2.15888784e-18 - art_sys_151: 6.30324060e-19 - art_sys_152: 3.01372220e-21 - art_sys_153: 6.02968347e-23 - art_sys_154: 1.58389536e-22 - art_sys_155: 3.74974530e-22 - art_sys_156: 2.28754748e-22 - art_sys_157: 9.68717624e-23 - art_sys_158: -4.23158158e-23 - art_sys_159: -5.43437378e-23 - art_sys_160: 1.46590548e-22 - art_sys_161: 1.27941216e-23 - art_sys_162: 2.68253506e-24 - art_sys_163: -2.33839902e-24 - art_sys_164: -2.65101281e-23 - art_sys_165: 1.75667636e-23 - art_sys_166: -4.06113626e-25 - art_sys_167: 2.31532133e-23 - art_sys_168: 8.24935197e-12 - art_sys_169: 6.82309654e-24 - art_sys_170: -2.70342515e-12 - art_sys_171: 8.42464033e-13 - art_sys_172: -1.43101328e-23 - art_sys_173: 2.66569232e-26 - art_sys_174: -2.43728202e-13 - art_sys_175: 0.0 - art_sys_176: -6.55723207e-14 - art_sys_177: 0.0 - art_sys_178: 7.94047034e-15 - art_sys_179: -5.81879878e-16 - art_sys_180: -6.34106465e-21 - art_sys_181: 3.53004653e-29 - art_sys_182: 0.0 - art_sys_183: 8.39744748e-27 - art_sys_184: 1.74793344e-28 - art_sys_185: 1.02628944e-28 + art_sys_43: 2.10933922e-176 + art_sys_44: -1.29200726e-168 + art_sys_45: 8.54693384e-42 + art_sys_46: -5.19678360e-38 + art_sys_47: 1.28766365e-32 + art_sys_48: -1.49667099e-24 + art_sys_49: 1.89926002e-03 + art_sys_50: -1.15514208e-03 + art_sys_51: 4.47839131e-03 + art_sys_52: 7.03394410e-03 + art_sys_53: -2.28529119e-02 + art_sys_54: 8.49182234e-02 + art_sys_55: 1.99274508e-20 + art_sys_56: -8.80641885e-20 + art_sys_57: -8.21761914e-21 + art_sys_58: -9.10314569e-02 + art_sys_59: 2.25408899e-02 + art_sys_60: 6.06968454e-20 + art_sys_61: -3.99197679e-20 + art_sys_62: -5.08419493e-20 + art_sys_63: 4.64185612e-20 + art_sys_64: -2.42346041e-22 + art_sys_65: -1.42578380e-01 + art_sys_66: -3.39918644e-02 + art_sys_67: 3.52161029e-19 + art_sys_68: -2.51039979e-19 + art_sys_69: -4.00338379e-19 + art_sys_70: -4.69052897e-19 + art_sys_71: 3.02085908e-19 + art_sys_72: -1.66199781e-19 + art_sys_73: -1.84592836e-14 + art_sys_74: 1.28504945e-14 + art_sys_75: -1.05983317e-14 + art_sys_76: -3.25418310e-02 + art_sys_77: -1.78748521e-17 + art_sys_78: -5.08996828e-15 + art_sys_79: 2.06079703e-15 + art_sys_80: 1.14093504e-02 + art_sys_81: -1.33769185e-16 + art_sys_82: 3.82623517e-17 + art_sys_83: 6.73714533e-03 + art_sys_84: 6.79580019e-17 + art_sys_85: -7.62095742e-18 + art_sys_86: -1.25652506e-03 + art_sys_87: 6.32994378e-18 + art_sys_88: -2.58648401e-04 + art_sys_89: -1.32979077e-04 + art_sys_90: 1.39619261e-17 + art_sys_91: -1.50653276e-13 + art_sys_92: 2.37493282e-16 + art_sys_93: 7.86359826e-17 + art_sys_94: 1.82695594e-15 + art_sys_95: -3.34173195e-17 + art_sys_96: 1.29318179e-05 + art_sys_97: -1.77482043e-15 + art_sys_98: -1.69367448e-16 + art_sys_99: 2.56977395e-18 + art_sys_100: 2.96212832e-16 + art_sys_101: -4.12109113e-14 + art_sys_102: -2.19865341e-15 + art_sys_103: -7.40254159e-16 + art_sys_104: 1.38705081e-17 + art_sys_105: 8.09923841e-17 + art_sys_106: 5.19228343e-15 + art_sys_107: 1.63253417e-07 + art_sys_108: -9.78176231e-08 + art_sys_109: 4.33800688e-08 + art_sys_110: 7.97859623e-14 + art_sys_111: 1.59574285e-15 + art_sys_112: 3.68088312e-15 + art_sys_113: -1.83925500e-08 + art_sys_114: 1.79864379e-15 + art_sys_115: -9.59573113e-17 + art_sys_116: 2.65242318e-14 + art_sys_117: 2.39827759e-16 + art_sys_118: -9.46621770e-15 + art_sys_119: -1.18598141e-16 + art_sys_120: -1.87610377e-15 + art_sys_121: -6.84272680e-14 + art_sys_122: 1.11236817e-15 + art_sys_123: 3.39528667e-15 + art_sys_124: 9.67837254e-15 + art_sys_125: -2.58288684e-15 + art_sys_126: 4.99705045e-14 + art_sys_127: 4.05031909e-16 + art_sys_128: -7.20111964e-15 + art_sys_129: -9.06287880e-16 + art_sys_130: 1.08154221e-14 + art_sys_131: 1.18045084e-14 + art_sys_132: -1.21832569e-15 + art_sys_133: 5.45714720e-15 + art_sys_134: 8.25746097e-12 + art_sys_135: -1.44184960e-15 + art_sys_136: -6.86677837e-15 + art_sys_137: 2.71148883e-12 + art_sys_138: 3.28488565e-16 + art_sys_139: -5.05056405e-16 + art_sys_140: 1.10032576e-14 + art_sys_141: -1.02462624e-16 + art_sys_142: 1.35415204e-14 + art_sys_143: -8.31608784e-13 + art_sys_144: 2.32836406e-13 + art_sys_145: 6.44026531e-14 + art_sys_146: 0.0 + art_sys_147: 1.03742455e-14 + art_sys_148: -3.52751957e-15 + art_sys_149: -3.52751957e-15 + art_sys_150: 8.11803539e-16 + art_sys_151: 8.11803539e-16 + art_sys_152: -4.66959175e-16 + art_sys_153: 2.38821611e-15 + art_sys_154: -8.16875598e-16 + art_sys_155: 3.07626467e-27 + art_sys_156: -1.06825787e-30 + art_sys_157: 1.09613792e-29 + art_sys_158: 0.0 + art_sys_159: -8.85596077e-09 + art_sys_160: 3.93551748e-09 + art_sys_161: -1.60849931e-09 + art_sys_162: -6.07666333e-10 + art_sys_163: 2.29897325e-10 + art_sys_164: -7.60174616e-11 + art_sys_165: 2.53421091e-11 + art_sys_166: -6.90257302e-22 + art_sys_167: 2.80728592e-22 + art_sys_168: 5.94755468e-22 + art_sys_169: -1.47908386e-22 + art_sys_170: 6.27400877e-23 + art_sys_171: -6.51178471e-23 + art_sys_172: -4.78371633e-23 + art_sys_173: 6.88027665e-24 + art_sys_174: 5.33202416e-24 + art_sys_175: -1.96401496e-26 + art_sys_176: 9.58022865e-26 + art_sys_177: -1.42050467e-25 + art_sys_178: -1.63342204e-25 + art_sys_179: 6.93504780e-27 + art_sys_180: -2.20476253e-27 + art_sys_181: -9.99463018e-27 + art_sys_182: -1.52694406e-26 + art_sys_183: 1.28982417e-27 + art_sys_184: -1.72789053e-27 + art_sys_185: 3.93653029e-28 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -33746,149 +33746,149 @@ bins: art_sys_40: 0.0 art_sys_41: 0.0 art_sys_42: 0.0 - art_sys_43: -5.50567117e-191 - art_sys_44: -9.01681596e-184 - art_sys_45: 4.77826132e-51 - art_sys_46: 2.88989177e-51 - art_sys_47: -4.07003397e-43 - art_sys_48: 5.71938486e-36 - art_sys_49: 4.41871028e-27 - art_sys_50: 5.18652379e-27 - art_sys_51: 4.30023124e-04 - art_sys_52: -1.19311629e-03 - art_sys_53: 7.77577552e-23 - art_sys_54: 3.96806888e-24 - art_sys_55: -4.17269695e-24 - art_sys_56: -2.63106255e-25 - art_sys_57: -4.21165003e-27 - art_sys_58: 7.16412653e-25 - art_sys_59: 1.12973738e-03 - art_sys_60: -3.65079577e-04 - art_sys_61: 1.14984477e-02 - art_sys_62: 6.00041474e-03 - art_sys_63: -3.02971354e-02 - art_sys_64: 1.33707613e-20 - art_sys_65: -2.18635288e-02 - art_sys_66: 5.11831117e-02 - art_sys_67: 1.26694346e-01 - art_sys_68: 8.37700207e-20 - art_sys_69: 1.85034842e-19 - art_sys_70: 4.37507678e-19 - art_sys_71: -1.51596003e-19 - art_sys_72: 4.98216437e-19 - art_sys_73: -2.47295754e-19 - art_sys_74: 1.26936185e-19 - art_sys_75: -2.40447666e-02 - art_sys_76: -7.69164209e-03 - art_sys_77: 7.65701046e-03 - art_sys_78: -2.70871341e-20 - art_sys_79: 1.93432312e-19 - art_sys_80: 1.89016022e-03 - art_sys_81: 4.29204135e-04 - art_sys_82: -2.33864374e-04 - art_sys_83: -1.36049102e-19 - art_sys_84: -7.39713147e-21 - art_sys_85: 6.01097671e-20 - art_sys_86: 6.39099645e-20 - art_sys_87: 2.36212244e-20 - art_sys_88: 2.49728443e-05 - art_sys_89: -3.49489158e-21 - art_sys_90: -2.57837611e-20 - art_sys_91: -1.40407609e-20 - art_sys_92: -1.58010470e-20 - art_sys_93: -1.79569031e-20 - art_sys_94: -1.52791566e-20 - art_sys_95: 1.60637803e-20 - art_sys_96: 1.87736316e-20 - art_sys_97: -1.25530034e-20 - art_sys_98: -3.17409246e-21 - art_sys_99: -3.35879143e-20 - art_sys_100: 3.73565193e-07 - art_sys_101: -2.13265937e-07 - art_sys_102: 1.14125757e-20 - art_sys_103: -3.36983729e-20 - art_sys_104: -2.32774457e-21 - art_sys_105: -1.07092213e-20 - art_sys_106: 7.70339488e-21 - art_sys_107: -6.28510338e-21 - art_sys_108: -5.07177873e-21 - art_sys_109: 4.13701800e-21 - art_sys_110: -1.23249304e-20 - art_sys_111: -4.86460895e-18 - art_sys_112: -1.50590955e-20 - art_sys_113: 3.51710865e-21 - art_sys_114: 6.60064077e-21 - art_sys_115: 1.93767194e-21 - art_sys_116: 3.05728786e-21 - art_sys_117: -7.03517907e-23 - art_sys_118: -2.93247169e-21 - art_sys_119: 1.88212147e-18 - art_sys_120: -3.36031239e-18 - art_sys_121: 1.30082701e-18 - art_sys_122: -2.61426009e-19 - art_sys_123: 4.01405529e-20 - art_sys_124: 3.08481650e-20 - art_sys_125: -4.52015778e-21 - art_sys_126: -2.21738825e-20 - art_sys_127: 8.35623272e-21 - art_sys_128: -6.11445896e-18 - art_sys_129: 1.58988769e-17 - art_sys_130: 4.02005274e-18 - art_sys_131: 1.01759352e-17 - art_sys_132: 2.15343623e-19 - art_sys_133: 4.05603147e-17 - art_sys_134: -5.30784820e-15 - art_sys_135: -9.72643415e-08 - art_sys_136: -4.20176555e-08 - art_sys_137: -2.03614781e-08 - art_sys_138: -9.16701444e-09 - art_sys_139: 1.43201223e-09 - art_sys_140: 3.76724221e-09 - art_sys_141: 6.01133013e-11 - art_sys_142: 5.43658636e-10 - art_sys_143: 1.79943854e-10 - art_sys_144: 1.37459484e-17 - art_sys_145: -1.28811518e-16 - art_sys_146: 4.64072252e-17 - art_sys_147: -5.90079051e-17 - art_sys_148: 4.90136274e-18 - art_sys_149: -1.08753554e-18 - art_sys_150: 4.80161290e-19 - art_sys_151: -1.07104426e-19 - art_sys_152: 3.81399922e-22 - art_sys_153: 1.55233422e-21 - art_sys_154: -2.57306101e-22 - art_sys_155: -8.16608955e-22 - art_sys_156: -5.12878025e-22 - art_sys_157: -2.26813091e-22 - art_sys_158: 4.64237206e-23 - art_sys_159: -2.16391074e-22 - art_sys_160: 1.77902552e-22 - art_sys_161: -5.36952276e-24 - art_sys_162: -1.27963465e-24 - art_sys_163: 2.55285053e-24 - art_sys_164: -4.79405325e-24 - art_sys_165: -6.94886266e-25 - art_sys_166: -2.37650251e-24 - art_sys_167: -1.65607791e-22 - art_sys_168: -1.96005667e-11 - art_sys_169: 1.07395313e-23 - art_sys_170: 6.42706470e-12 - art_sys_171: -2.00344236e-12 - art_sys_172: 6.86074170e-24 - art_sys_173: -3.11584045e-26 - art_sys_174: 5.79702290e-13 - art_sys_175: 0.0 - art_sys_176: 1.55978489e-13 - art_sys_177: 0.0 - art_sys_178: -1.88890999e-14 - art_sys_179: 1.38420774e-15 - art_sys_180: 1.50847056e-20 - art_sys_181: -8.39739519e-29 - art_sys_182: 0.0 - art_sys_183: -1.99751070e-26 - art_sys_184: -4.15719103e-28 - art_sys_185: -2.44137400e-28 + art_sys_43: 4.77587885e-177 + art_sys_44: -2.92530955e-169 + art_sys_45: 1.93516378e-42 + art_sys_46: -1.17663569e-38 + art_sys_47: 2.91547833e-33 + art_sys_48: -3.38870469e-25 + art_sys_49: 4.30023124e-04 + art_sys_50: 1.19311629e-03 + art_sys_51: -1.12973738e-03 + art_sys_52: 3.65079577e-04 + art_sys_53: -1.14984477e-02 + art_sys_54: 6.00041474e-03 + art_sys_55: 1.41803288e-20 + art_sys_56: -4.88259470e-20 + art_sys_57: -5.01268288e-21 + art_sys_58: -3.02971354e-02 + art_sys_59: 2.18635288e-02 + art_sys_60: 3.64398229e-20 + art_sys_61: -1.67505699e-20 + art_sys_62: 5.57648519e-22 + art_sys_63: -2.62755563e-20 + art_sys_64: 2.00277647e-20 + art_sys_65: -5.11831117e-02 + art_sys_66: -1.26694346e-01 + art_sys_67: 5.30141154e-20 + art_sys_68: 3.33054420e-20 + art_sys_69: -5.51913854e-19 + art_sys_70: -3.28088661e-20 + art_sys_71: 8.46713842e-20 + art_sys_72: 3.75773346e-19 + art_sys_73: 1.74383835e-14 + art_sys_74: -1.17430939e-14 + art_sys_75: 7.52577384e-15 + art_sys_76: 2.40447666e-02 + art_sys_77: 1.29916579e-17 + art_sys_78: 3.76129327e-15 + art_sys_79: -1.46781938e-15 + art_sys_80: -7.69164210e-03 + art_sys_81: 2.11639847e-16 + art_sys_82: -6.62548610e-17 + art_sys_83: -7.65701046e-03 + art_sys_84: 3.80651996e-17 + art_sys_85: 8.73190590e-18 + art_sys_86: 1.89016022e-03 + art_sys_87: -7.18059232e-18 + art_sys_88: 4.29204135e-04 + art_sys_89: 2.33864374e-04 + art_sys_90: -7.20078982e-18 + art_sys_91: 1.01436864e-13 + art_sys_92: -1.59780202e-16 + art_sys_93: -5.33678809e-17 + art_sys_94: -2.07665028e-15 + art_sys_95: 2.25322647e-17 + art_sys_96: -2.49728445e-05 + art_sys_97: 2.01704478e-15 + art_sys_98: 1.56872225e-16 + art_sys_99: -1.65034652e-17 + art_sys_100: -3.34949197e-16 + art_sys_101: 2.77792487e-14 + art_sys_102: 1.48177644e-15 + art_sys_103: 1.11359381e-15 + art_sys_104: -1.48955360e-17 + art_sys_105: -5.41460288e-17 + art_sys_106: -5.90150874e-15 + art_sys_107: -3.73565202e-07 + art_sys_108: 2.13265738e-07 + art_sys_109: -9.72645973e-08 + art_sys_110: -1.20029622e-13 + art_sys_111: -1.81379394e-15 + art_sys_112: -6.09810425e-15 + art_sys_113: 4.20176665e-08 + art_sys_114: -2.04555694e-15 + art_sys_115: 1.76956653e-16 + art_sys_116: -3.97851129e-14 + art_sys_117: -2.81045877e-16 + art_sys_118: 1.81851297e-14 + art_sys_119: 1.69939714e-16 + art_sys_120: 3.06573105e-15 + art_sys_121: 1.56222919e-13 + art_sys_122: -1.69629668e-15 + art_sys_123: -5.28706438e-15 + art_sys_124: -2.24809459e-14 + art_sys_125: 4.95044882e-15 + art_sys_126: -1.14512264e-13 + art_sys_127: -8.44163221e-16 + art_sys_128: 1.66579898e-14 + art_sys_129: 1.45448998e-15 + art_sys_130: -2.52997788e-14 + art_sys_131: -2.70211557e-14 + art_sys_132: 2.64648286e-15 + art_sys_133: -1.27913026e-14 + art_sys_134: -1.96198268e-11 + art_sys_135: 2.84462409e-15 + art_sys_136: 1.59739388e-14 + art_sys_137: -6.44623744e-12 + art_sys_138: -2.21447034e-16 + art_sys_139: 1.15498635e-15 + art_sys_140: -2.60186742e-14 + art_sys_141: 2.63537133e-16 + art_sys_142: -3.20654173e-14 + art_sys_143: 1.97761957e-12 + art_sys_144: -5.53800599e-13 + art_sys_145: -1.53196224e-13 + art_sys_146: -0.0 + art_sys_147: -2.46640556e-14 + art_sys_148: 8.23957053e-15 + art_sys_149: 8.23957053e-15 + art_sys_150: -1.93392745e-15 + art_sys_151: -1.93392745e-15 + art_sys_152: 1.11188363e-15 + art_sys_153: -5.68504663e-15 + art_sys_154: 1.94313231e-15 + art_sys_155: -7.34777403e-27 + art_sys_156: 2.02274603e-30 + art_sys_157: -2.49138994e-29 + art_sys_158: -0.0 + art_sys_159: 2.03614024e-08 + art_sys_160: -9.16714242e-09 + art_sys_161: 3.76784818e-09 + art_sys_162: 1.43197900e-09 + art_sys_163: -5.43603648e-10 + art_sys_164: 1.80177941e-10 + art_sys_165: -6.01637312e-11 + art_sys_166: 1.64094464e-21 + art_sys_167: -6.84544694e-22 + art_sys_168: -1.41458323e-21 + art_sys_169: 3.51413422e-22 + art_sys_170: -1.47820263e-22 + art_sys_171: 1.56260646e-22 + art_sys_172: 9.21910719e-23 + art_sys_173: -1.63009527e-23 + art_sys_174: -1.26057985e-23 + art_sys_175: 4.67181144e-26 + art_sys_176: -2.63940144e-25 + art_sys_177: 3.16496702e-25 + art_sys_178: 3.92329063e-25 + art_sys_179: -1.47209470e-26 + art_sys_180: 8.40838378e-26 + art_sys_181: 1.99930036e-26 + art_sys_182: 4.06400668e-26 + art_sys_183: -3.02207736e-27 + art_sys_184: 4.11127851e-27 + art_sys_185: -9.36831570e-28 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -34037,149 +34037,149 @@ bins: art_sys_40: 0.0 art_sys_41: 0.0 art_sys_42: 0.0 - art_sys_43: -3.49086964e-192 - art_sys_44: -5.71711025e-185 - art_sys_45: 3.03038259e-52 - art_sys_46: 1.83277496e-52 - art_sys_47: -2.58122344e-44 - art_sys_48: 3.62724497e-37 - art_sys_49: 2.80235463e-28 - art_sys_50: 3.28930345e-28 - art_sys_51: 2.72721499e-05 - art_sys_52: -3.60285269e-04 - art_sys_53: 2.14418652e-23 - art_sys_54: 9.63982061e-25 - art_sys_55: -1.36135182e-24 - art_sys_56: -3.23765791e-26 - art_sys_57: -1.02037709e-25 - art_sys_58: 1.76275650e-25 - art_sys_59: 5.23186009e-04 - art_sys_60: 3.81528105e-04 - art_sys_61: 2.32361333e-04 - art_sys_62: -6.27790428e-03 - art_sys_63: 3.40802396e-03 - art_sys_64: -1.68715414e-21 - art_sys_65: -7.72761699e-04 - art_sys_66: -1.01361971e-02 - art_sys_67: 2.00420601e-02 - art_sys_68: -7.65457863e-21 - art_sys_69: -9.18931764e-20 - art_sys_70: 4.44555879e-20 - art_sys_71: -2.84501605e-20 - art_sys_72: -1.58633472e-19 - art_sys_73: -8.43167930e-20 - art_sys_74: 2.52237374e-20 - art_sys_75: -3.29315067e-02 - art_sys_76: 1.87526498e-02 - art_sys_77: -1.35410373e-02 - art_sys_78: 3.35579336e-21 - art_sys_79: 3.42880232e-20 - art_sys_80: -5.21288118e-03 - art_sys_81: -1.19457306e-03 - art_sys_82: 6.88435723e-04 - art_sys_83: 1.08115172e-19 - art_sys_84: 1.94168407e-20 - art_sys_85: -6.01424547e-21 - art_sys_86: 9.58477084e-20 - art_sys_87: 3.46984000e-20 - art_sys_88: -8.03338525e-05 - art_sys_89: -2.00561569e-20 - art_sys_90: 1.30103753e-20 - art_sys_91: 1.31794444e-20 - art_sys_92: -2.90937737e-20 - art_sys_93: 1.11369438e-21 - art_sys_94: -4.17708528e-20 - art_sys_95: -5.26688332e-20 - art_sys_96: 3.44130329e-20 - art_sys_97: 1.12033692e-20 - art_sys_98: 2.09928326e-20 - art_sys_99: -2.46218602e-20 - art_sys_100: -1.14243837e-06 - art_sys_101: 7.21294776e-07 - art_sys_102: 2.80045994e-21 - art_sys_103: 9.90630422e-21 - art_sys_104: 3.52983341e-21 - art_sys_105: 1.90802450e-21 - art_sys_106: 5.35740437e-21 - art_sys_107: 8.06790872e-22 - art_sys_108: 1.13679686e-20 - art_sys_109: 6.04491646e-21 - art_sys_110: -4.81155384e-21 - art_sys_111: 6.54059348e-18 - art_sys_112: -1.57211592e-21 - art_sys_113: 3.01610143e-21 - art_sys_114: 1.75051132e-21 - art_sys_115: -3.23527450e-21 - art_sys_116: -7.02499911e-22 - art_sys_117: -5.36016767e-23 - art_sys_118: -1.17507599e-21 - art_sys_119: -2.90638186e-18 - art_sys_120: 5.06142623e-18 - art_sys_121: -1.82142789e-18 - art_sys_122: 4.42009061e-19 - art_sys_123: -4.99840780e-20 - art_sys_124: -1.70556899e-19 - art_sys_125: 6.19228194e-21 - art_sys_126: -4.24022548e-19 - art_sys_127: -3.50001468e-21 - art_sys_128: 2.28649060e-17 - art_sys_129: -5.87024461e-17 - art_sys_130: -1.47002580e-17 - art_sys_131: -3.74135256e-17 - art_sys_132: -7.93623227e-19 - art_sys_133: -1.49542591e-16 - art_sys_134: 1.95720801e-14 - art_sys_135: 3.27763790e-07 - art_sys_136: 1.45453632e-07 - art_sys_137: 7.19040935e-08 - art_sys_138: 3.27342366e-08 - art_sys_139: -5.21127945e-09 - art_sys_140: -1.36194527e-08 - art_sys_141: -2.21340746e-10 - art_sys_142: -1.99011425e-09 - art_sys_143: -6.60998295e-10 - art_sys_144: 1.56482431e-17 - art_sys_145: -4.82536574e-17 - art_sys_146: 6.50924655e-17 - art_sys_147: 7.66466021e-17 - art_sys_148: 1.16583911e-17 - art_sys_149: 7.55014583e-18 - art_sys_150: -2.48970824e-18 - art_sys_151: -6.62377793e-19 - art_sys_152: -1.69089020e-21 - art_sys_153: -2.68702885e-21 - art_sys_154: 6.13763692e-22 - art_sys_155: 2.94243525e-21 - art_sys_156: 1.85103255e-21 - art_sys_157: 7.92922243e-22 - art_sys_158: -2.59864692e-22 - art_sys_159: 2.73374465e-22 - art_sys_160: -2.19842302e-22 - art_sys_161: 5.28275688e-24 - art_sys_162: 1.36572128e-25 - art_sys_163: 2.70469597e-25 - art_sys_164: 1.60275365e-23 - art_sys_165: 6.55669240e-24 - art_sys_166: -1.08092505e-23 - art_sys_167: -3.32369202e-22 - art_sys_168: 7.22756296e-11 - art_sys_169: -2.06784417e-24 - art_sys_170: -2.37173109e-11 - art_sys_171: 7.39709863e-12 - art_sys_172: -5.18930915e-24 - art_sys_173: 8.44817490e-26 - art_sys_174: -2.14089363e-12 - art_sys_175: 0.0 - art_sys_176: -5.76136284e-13 - art_sys_177: 0.0 - art_sys_178: 6.97748527e-14 - art_sys_179: -5.11339809e-15 - art_sys_180: -5.57237123e-20 - art_sys_181: 3.10200485e-28 - art_sys_182: 0.0 - art_sys_183: 7.37814349e-26 - art_sys_184: 1.53507063e-27 - art_sys_185: 9.01851957e-28 + art_sys_43: 3.02886067e-178 + art_sys_44: -1.85523027e-170 + art_sys_45: 1.22728462e-43 + art_sys_46: -7.46224635e-40 + art_sys_47: 1.84900201e-34 + art_sys_48: -2.14912309e-26 + art_sys_49: 2.72721499e-05 + art_sys_50: 3.60285269e-04 + art_sys_51: -5.23186009e-04 + art_sys_52: -3.81528105e-04 + art_sys_53: -2.32361333e-04 + art_sys_54: -6.27790428e-03 + art_sys_55: 1.02664636e-21 + art_sys_56: 2.51174220e-22 + art_sys_57: -2.60236120e-22 + art_sys_58: 3.40802396e-03 + art_sys_59: 7.72761699e-04 + art_sys_60: -5.03819612e-22 + art_sys_61: 1.24612190e-21 + art_sys_62: 3.94961378e-21 + art_sys_63: -7.32634595e-21 + art_sys_64: 2.30906782e-21 + art_sys_65: 1.01361971e-02 + art_sys_66: -2.00420601e-02 + art_sys_67: -3.38880834e-20 + art_sys_68: 3.98433230e-20 + art_sys_69: -5.52826112e-20 + art_sys_70: 6.01494863e-20 + art_sys_71: -2.65125856e-20 + art_sys_72: 3.43086143e-19 + art_sys_73: 2.28542984e-15 + art_sys_74: 2.52767872e-15 + art_sys_75: 1.76656024e-14 + art_sys_76: 3.29315067e-02 + art_sys_77: 1.79543687e-17 + art_sys_78: 5.15124978e-15 + art_sys_79: 4.21917444e-15 + art_sys_80: 1.87526498e-02 + art_sys_81: -5.91270731e-16 + art_sys_82: 1.99651705e-16 + art_sys_83: 1.35410373e-02 + art_sys_84: -3.02748178e-17 + art_sys_85: -2.08663668e-17 + art_sys_86: -5.21288119e-03 + art_sys_87: 1.28833271e-17 + art_sys_88: -1.19457306e-03 + art_sys_89: -6.88435723e-04 + art_sys_90: 2.13666827e-17 + art_sys_91: -2.47516705e-13 + art_sys_92: 3.90088740e-16 + art_sys_93: 1.29416772e-16 + art_sys_94: 3.67216229e-15 + art_sys_95: -5.46529523e-17 + art_sys_96: 8.03338529e-05 + art_sys_97: -3.56709592e-15 + art_sys_98: -3.12188611e-16 + art_sys_99: 1.58700007e-17 + art_sys_100: 5.84901720e-16 + art_sys_101: -6.77324941e-14 + art_sys_102: -3.61334455e-15 + art_sys_103: -3.07111174e-15 + art_sys_104: 2.72011134e-17 + art_sys_105: 1.32786357e-16 + art_sys_106: 1.04379468e-14 + art_sys_107: 1.14243847e-06 + art_sys_108: -7.21294151e-07 + art_sys_109: 3.27764653e-07 + art_sys_110: 3.31032753e-13 + art_sys_111: 3.20810126e-15 + art_sys_112: 1.69430853e-14 + art_sys_113: -1.45453672e-07 + art_sys_114: 3.62297953e-15 + art_sys_115: -5.45986585e-16 + art_sys_116: 1.09693086e-13 + art_sys_117: 5.32229286e-16 + art_sys_118: -5.83711657e-14 + art_sys_119: -4.37173579e-16 + art_sys_120: -8.54668898e-15 + art_sys_121: -4.79801602e-13 + art_sys_122: 4.68482336e-15 + art_sys_123: 1.46146228e-14 + art_sys_124: 8.06703532e-14 + art_sys_125: -1.58669633e-14 + art_sys_126: 4.03076886e-13 + art_sys_127: 2.69316953e-15 + art_sys_128: -5.88610315e-14 + art_sys_129: -4.26556327e-15 + art_sys_130: 9.07733277e-14 + art_sys_131: 8.26882341e-14 + art_sys_132: -8.60388544e-15 + art_sys_133: 4.65481565e-14 + art_sys_134: 7.23466212e-11 + art_sys_135: -8.88807696e-15 + art_sys_136: -5.71789011e-14 + art_sys_137: 2.37880822e-11 + art_sys_138: 5.39907674e-16 + art_sys_139: -3.21323292e-15 + art_sys_140: 9.53748952e-14 + art_sys_141: -1.12876535e-15 + art_sys_142: 1.17617185e-13 + art_sys_143: -7.30171164e-12 + art_sys_144: 2.04525861e-12 + art_sys_145: 5.65859035e-13 + art_sys_146: 0.0 + art_sys_147: 9.10295777e-14 + art_sys_148: -2.96307290e-14 + art_sys_149: -2.96307290e-14 + art_sys_150: 7.16146804e-15 + art_sys_151: 7.16146804e-15 + art_sys_152: -4.04354992e-15 + art_sys_153: 2.10154093e-14 + art_sys_154: -7.17751350e-15 + art_sys_155: 2.72848027e-26 + art_sys_156: -5.15799773e-30 + art_sys_157: 8.57932413e-29 + art_sys_158: 0.0 + art_sys_159: -7.19038273e-08 + art_sys_160: 3.27346927e-08 + art_sys_161: -1.36216405e-08 + art_sys_162: -5.21115928e-09 + art_sys_163: 1.98991035e-09 + art_sys_164: -6.61855191e-10 + art_sys_165: 2.21526709e-10 + art_sys_166: -6.05549494e-21 + art_sys_167: 2.54227455e-21 + art_sys_168: 5.22385653e-21 + art_sys_169: -1.29792726e-21 + art_sys_170: 5.58233485e-22 + art_sys_171: -5.78772896e-22 + art_sys_172: -2.99677129e-22 + art_sys_173: 5.93856266e-23 + art_sys_174: 4.62937100e-23 + art_sys_175: -1.72559870e-25 + art_sys_176: 1.15109789e-24 + art_sys_177: -1.10781154e-24 + art_sys_178: -1.45560954e-24 + art_sys_179: 5.60589221e-26 + art_sys_180: -3.66673448e-25 + art_sys_181: -6.87612941e-26 + art_sys_182: -1.60272362e-25 + art_sys_183: 1.10335635e-26 + art_sys_184: -1.51931077e-26 + art_sys_185: 3.46284597e-27 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -34328,149 +34328,149 @@ bins: art_sys_40: 0.0 art_sys_41: 0.0 art_sys_42: 0.0 - art_sys_43: 2.30977001e-193 - art_sys_44: 3.78278513e-186 - art_sys_45: -2.00258065e-53 - art_sys_46: -1.21116050e-53 - art_sys_47: 1.70576089e-45 - art_sys_48: -2.39700776e-38 - art_sys_49: -1.85189196e-29 - art_sys_50: -2.17368443e-29 - art_sys_51: -1.80223711e-06 - art_sys_52: -7.41697073e-05 - art_sys_53: 4.26671270e-24 - art_sys_54: 1.81512567e-25 - art_sys_55: -2.87578655e-25 - art_sys_56: -3.24740214e-27 - art_sys_57: -2.82703565e-26 - art_sys_58: 3.33026615e-26 - art_sys_59: 1.19884608e-04 - art_sys_60: 1.10552010e-04 - art_sys_61: -5.04522270e-04 - art_sys_62: -1.83365138e-03 - art_sys_63: 2.46062640e-03 - art_sys_64: -1.17945789e-21 - art_sys_65: 1.35657430e-03 - art_sys_66: -6.71641193e-03 - art_sys_67: -1.05094191e-02 - art_sys_68: -8.93314268e-21 - art_sys_69: -3.29095058e-20 - art_sys_70: -3.92603812e-20 - art_sys_71: 1.16804696e-20 - art_sys_72: -9.63464626e-20 - art_sys_73: 2.44549780e-20 - art_sys_74: -9.98357938e-21 - art_sys_75: -6.08926013e-03 - art_sys_76: 2.96369593e-02 - art_sys_77: 6.14096465e-03 - art_sys_78: -4.31213755e-20 - art_sys_79: 7.86427389e-20 - art_sys_80: 5.92172253e-03 - art_sys_81: 2.10768907e-03 - art_sys_82: -1.28843390e-03 - art_sys_83: -8.44746901e-20 - art_sys_84: 2.26538623e-20 - art_sys_85: -3.51565407e-20 - art_sys_86: 2.92922314e-20 - art_sys_87: -1.59016983e-21 - art_sys_88: 1.87903013e-04 - art_sys_89: -5.24136952e-20 - art_sys_90: -4.84157494e-20 - art_sys_91: 7.67774337e-21 - art_sys_92: 2.95771129e-20 - art_sys_93: 2.86728413e-20 - art_sys_94: -9.45563076e-21 - art_sys_95: -2.79046807e-20 - art_sys_96: 4.24331566e-21 - art_sys_97: -1.55563035e-20 - art_sys_98: -1.47368457e-20 - art_sys_99: 3.55891325e-21 - art_sys_100: 3.29292255e-06 - art_sys_101: -1.90889069e-06 - art_sys_102: -1.92692581e-21 - art_sys_103: -3.12999330e-20 - art_sys_104: -3.68657161e-21 - art_sys_105: 6.66388727e-21 - art_sys_106: 3.32656345e-20 - art_sys_107: -1.07611757e-20 - art_sys_108: -1.25050444e-20 - art_sys_109: -1.59199929e-22 - art_sys_110: 4.47990724e-21 - art_sys_111: -6.78503755e-18 - art_sys_112: -6.15293372e-21 - art_sys_113: 1.63774712e-21 - art_sys_114: -1.12822611e-21 - art_sys_115: 4.47021318e-22 - art_sys_116: 7.24884086e-22 - art_sys_117: -1.62635668e-22 - art_sys_118: 1.53106553e-21 - art_sys_119: 3.64500667e-18 - art_sys_120: -5.50489463e-18 - art_sys_121: 1.92898036e-18 - art_sys_122: -4.95977039e-19 - art_sys_123: 5.48505424e-20 - art_sys_124: 7.08798262e-19 - art_sys_125: -5.68043688e-21 - art_sys_126: 1.88921739e-18 - art_sys_127: -1.60697347e-20 - art_sys_128: -7.00405053e-17 - art_sys_129: 1.78839654e-16 - art_sys_130: 4.46154726e-17 - art_sys_131: 1.13757977e-16 - art_sys_132: 2.41484178e-18 - art_sys_133: 4.55103259e-16 - art_sys_134: -5.95690653e-14 - art_sys_135: -9.31094166e-07 - art_sys_136: -4.16404727e-07 - art_sys_137: -2.09652324e-07 - art_sys_138: -9.68628054e-08 - art_sys_139: 1.56837054e-08 - art_sys_140: 4.06553101e-08 - art_sys_141: 6.72830547e-10 - art_sys_142: 6.01582904e-09 - art_sys_143: 2.00525123e-09 - art_sys_144: -2.36909452e-17 - art_sys_145: -2.59626698e-17 - art_sys_146: -4.17324590e-17 - art_sys_147: 3.03475848e-17 - art_sys_148: 3.73973104e-17 - art_sys_149: -2.33665970e-18 - art_sys_150: -1.33937908e-18 - art_sys_151: -2.49545560e-19 - art_sys_152: 1.32455227e-20 - art_sys_153: 1.35887993e-20 - art_sys_154: 8.64120469e-22 - art_sys_155: -8.55926718e-21 - art_sys_156: -5.44036178e-21 - art_sys_157: -2.29244981e-21 - art_sys_158: 8.59594048e-22 - art_sys_159: -3.24938133e-22 - art_sys_160: 1.78980204e-23 - art_sys_161: -2.46377389e-25 - art_sys_162: -3.74978539e-24 - art_sys_163: 5.23022178e-24 - art_sys_164: -1.67275382e-23 - art_sys_165: -6.38325034e-24 - art_sys_166: -8.17916348e-24 - art_sys_167: -1.26427239e-22 - art_sys_168: -2.19978220e-10 - art_sys_169: -1.28507331e-23 - art_sys_170: 7.22403160e-11 - art_sys_171: -2.25400743e-11 - art_sys_172: -3.35118068e-24 - art_sys_173: 7.27185423e-26 - art_sys_174: 6.52522982e-12 - art_sys_175: 0.0 - art_sys_176: 1.75624585e-12 - art_sys_177: 0.0 - art_sys_178: -2.12712978e-13 - art_sys_179: 1.55884073e-14 - art_sys_180: 1.69879996e-19 - art_sys_181: -9.45648961e-28 - art_sys_182: 0.0 - art_sys_183: -2.24907108e-25 - art_sys_184: -4.67834221e-27 - art_sys_185: -2.74930472e-27 + art_sys_43: -2.00161265e-179 + art_sys_44: 1.22602285e-171 + art_sys_45: -8.11031729e-45 + art_sys_46: 4.93130808e-41 + art_sys_47: -1.22188389e-35 + art_sys_48: 1.42021417e-27 + art_sys_49: -1.80223711e-06 + art_sys_50: 7.41697073e-05 + art_sys_51: -1.19884608e-04 + art_sys_52: -1.10552010e-04 + art_sys_53: 5.04522270e-04 + art_sys_54: -1.83365138e-03 + art_sys_55: -4.37711334e-22 + art_sys_56: 2.66633385e-21 + art_sys_57: 1.82433261e-22 + art_sys_58: 2.46062640e-03 + art_sys_59: -1.35657430e-03 + art_sys_60: -2.55343604e-21 + art_sys_61: 1.39755299e-21 + art_sys_62: 5.36364196e-22 + art_sys_63: 1.85043592e-22 + art_sys_64: -1.05525056e-21 + art_sys_65: 6.71641193e-03 + art_sys_66: 1.05094191e-02 + art_sys_67: -1.21291513e-20 + art_sys_68: 9.05459250e-22 + art_sys_69: 5.10704395e-20 + art_sys_70: 1.13900449e-20 + art_sys_71: -1.19574284e-20 + art_sys_72: 5.03257105e-20 + art_sys_73: 1.58978149e-14 + art_sys_74: -1.52951000e-14 + art_sys_75: 4.54777670e-15 + art_sys_76: 6.08926013e-03 + art_sys_77: 3.33266760e-18 + art_sys_78: 9.52486820e-16 + art_sys_79: 4.15580148e-15 + art_sys_80: 2.96369593e-02 + art_sys_81: 8.42528958e-16 + art_sys_82: -3.37702421e-16 + art_sys_83: -6.14096465e-03 + art_sys_84: 5.42098321e-18 + art_sys_85: -7.98572333e-18 + art_sys_86: 5.92172254e-03 + art_sys_87: -5.37061349e-18 + art_sys_88: 2.10768907e-03 + art_sys_89: 1.28843390e-03 + art_sys_90: 5.33646406e-17 + art_sys_91: -3.92296741e-13 + art_sys_92: 6.18689884e-16 + art_sys_93: 2.02266202e-16 + art_sys_94: -1.66748685e-15 + art_sys_95: -8.72667386e-17 + art_sys_96: -1.87903014e-04 + art_sys_97: 1.61769333e-15 + art_sys_98: -1.15994588e-16 + art_sys_99: -1.05259261e-16 + art_sys_100: -2.51212655e-16 + art_sys_101: -1.07073952e-13 + art_sys_102: -5.71445509e-15 + art_sys_103: 3.48863402e-15 + art_sys_104: -6.17183922e-18 + art_sys_105: 2.13674689e-16 + art_sys_106: -4.73626116e-15 + art_sys_107: -3.29292266e-06 + art_sys_108: 1.90888890e-06 + art_sys_109: -9.31096579e-07 + art_sys_110: -3.76224707e-13 + art_sys_111: -1.45605950e-15 + art_sys_112: -2.98415745e-14 + art_sys_113: 4.16404844e-07 + art_sys_114: -1.65315238e-15 + art_sys_115: 1.15674738e-15 + art_sys_116: -1.22460754e-13 + art_sys_117: -3.02281326e-16 + art_sys_118: 1.35322186e-13 + art_sys_119: 4.95483021e-16 + art_sys_120: 1.41699340e-14 + art_sys_121: 1.37757605e-12 + art_sys_122: -5.74828640e-15 + art_sys_123: -1.99991021e-14 + art_sys_124: -2.36560893e-13 + art_sys_125: 3.66217852e-14 + art_sys_126: -1.17123239e-12 + art_sys_127: -7.27515351e-15 + art_sys_128: 1.72548443e-13 + art_sys_129: 6.42108660e-15 + art_sys_130: -2.70132553e-13 + art_sys_131: -2.37988765e-13 + art_sys_132: 2.32901807e-14 + art_sys_133: -1.38981542e-13 + art_sys_134: -2.20194207e-10 + art_sys_135: 2.14424323e-14 + art_sys_136: 1.68973772e-13 + art_sys_137: -7.24559233e-11 + art_sys_138: 8.53315703e-16 + art_sys_139: 9.10379906e-15 + art_sys_140: -2.88578980e-13 + art_sys_141: 3.49012013e-15 + art_sys_142: -3.56011720e-13 + art_sys_143: 2.22492856e-11 + art_sys_144: -6.23381309e-12 + art_sys_145: -1.72491901e-12 + art_sys_146: -0.0 + art_sys_147: -2.77313803e-13 + art_sys_148: 8.84258948e-14 + art_sys_149: 8.84258948e-14 + art_sys_150: -2.18383673e-14 + art_sys_151: -2.18383673e-14 + art_sys_152: 1.23014652e-14 + art_sys_153: -6.41111520e-14 + art_sys_154: 2.18795442e-14 + art_sys_155: -8.35045607e-26 + art_sys_156: 8.87760945e-30 + art_sys_157: -2.47600631e-28 + art_sys_158: -0.0 + art_sys_159: 2.09651553e-07 + art_sys_160: -9.68641522e-08 + art_sys_161: 4.06618295e-08 + art_sys_162: 1.56833465e-08 + art_sys_163: -6.01520453e-09 + art_sys_164: 2.00784150e-09 + art_sys_165: -6.73396568e-10 + art_sys_166: 1.84439474e-20 + art_sys_167: -7.88241930e-21 + art_sys_168: -1.59206370e-20 + art_sys_169: 3.95434305e-21 + art_sys_170: -1.66014561e-21 + art_sys_171: 1.77781677e-21 + art_sys_172: 7.24305457e-22 + art_sys_173: -1.80195358e-22 + art_sys_174: -1.40510933e-22 + art_sys_175: 5.26011740e-25 + art_sys_176: -3.67010743e-24 + art_sys_177: 3.20442279e-24 + art_sys_178: 4.46445914e-24 + art_sys_179: -1.51612189e-25 + art_sys_180: 1.94958860e-24 + art_sys_181: 1.75485202e-25 + art_sys_182: 5.37231633e-25 + art_sys_183: -3.33417365e-26 + art_sys_184: 4.63326517e-26 + art_sys_185: -1.05626475e-26 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -34619,149 +34619,149 @@ bins: art_sys_40: 0.0 art_sys_41: 0.0 art_sys_42: 0.0 - art_sys_43: 1.09503175e-193 - art_sys_44: 1.79336896e-186 - art_sys_45: -9.49980229e-54 - art_sys_46: -5.74547909e-54 - art_sys_47: 8.09175462e-46 - art_sys_48: -1.13708778e-38 - art_sys_49: -8.78496827e-30 - art_sys_50: -1.03114810e-29 - art_sys_51: -8.54941660e-07 - art_sys_52: -1.23406385e-05 - art_sys_53: 6.98880685e-25 - art_sys_54: 2.89331781e-26 - art_sys_55: -4.83966975e-26 - art_sys_56: -2.78679363e-28 - art_sys_57: -5.25597405e-27 - art_sys_58: 5.23676463e-27 - art_sys_59: 1.94181186e-05 - art_sys_60: 1.10803930e-05 - art_sys_61: -1.51113552e-04 - art_sys_62: -8.65548323e-05 - art_sys_63: 3.97357328e-04 - art_sys_64: -1.67046549e-22 - art_sys_65: 3.65017462e-04 - art_sys_66: -1.15567069e-04 - art_sys_67: -4.08567374e-03 - art_sys_68: -6.96925311e-22 - art_sys_69: 4.06792350e-21 - art_sys_70: -1.21261211e-20 - art_sys_71: 5.19380630e-21 - art_sys_72: 1.14365694e-20 - art_sys_73: 1.68161904e-20 - art_sys_74: -4.54995620e-21 - art_sys_75: 4.61979406e-03 - art_sys_76: 1.12023691e-02 - art_sys_77: 2.09967849e-02 - art_sys_78: -5.76060140e-20 - art_sys_79: 1.94230670e-20 - art_sys_80: -5.14716402e-03 - art_sys_81: -1.68271984e-03 - art_sys_82: 1.69869052e-03 - art_sys_83: -1.12320980e-19 - art_sys_84: -9.89985545e-20 - art_sys_85: 9.04169841e-20 - art_sys_86: -6.57963709e-20 - art_sys_87: -3.73999217e-20 - art_sys_88: -3.44065182e-04 - art_sys_89: 4.50514408e-20 - art_sys_90: -1.96022477e-20 - art_sys_91: 4.30093041e-20 - art_sys_92: 1.78616378e-21 - art_sys_93: 6.08844539e-22 - art_sys_94: -2.88191322e-20 - art_sys_95: -1.62746258e-21 - art_sys_96: 7.65021188e-22 - art_sys_97: -1.91952307e-20 - art_sys_98: 6.80693074e-21 - art_sys_99: -2.14359234e-20 - art_sys_100: -7.53178275e-06 - art_sys_101: 4.66368350e-06 - art_sys_102: -2.44419537e-20 - art_sys_103: -6.96352119e-21 - art_sys_104: 5.54354538e-21 - art_sys_105: -1.18325109e-20 - art_sys_106: -4.32341934e-21 - art_sys_107: -6.83731423e-21 - art_sys_108: -8.91979822e-22 - art_sys_109: 9.11711951e-22 - art_sys_110: 1.22161730e-20 - art_sys_111: 6.18464332e-18 - art_sys_112: 8.98980318e-22 - art_sys_113: 1.05773548e-21 - art_sys_114: -1.12831456e-21 - art_sys_115: -9.75140655e-22 - art_sys_116: -9.22855406e-22 - art_sys_117: -7.38180480e-23 - art_sys_118: 1.70947202e-23 - art_sys_119: -3.74143232e-18 - art_sys_120: 5.46107527e-18 - art_sys_121: -1.83121949e-18 - art_sys_122: 5.24358038e-19 - art_sys_123: -4.47329329e-20 - art_sys_124: -2.15846858e-18 - art_sys_125: 4.60321516e-21 - art_sys_126: -5.80345795e-18 - art_sys_127: 7.39467573e-20 - art_sys_128: 1.95182947e-16 - art_sys_129: -4.97401890e-16 - art_sys_130: -1.23914419e-16 - art_sys_131: -3.16146333e-16 - art_sys_132: -6.71281652e-18 - art_sys_133: -1.26517330e-15 - art_sys_134: 1.65606242e-13 - art_sys_135: 2.29967270e-06 - art_sys_136: 1.07851041e-06 - art_sys_137: 5.53646091e-07 - art_sys_138: 2.60305441e-07 - art_sys_139: -4.30208487e-08 - art_sys_140: -1.10679807e-07 - art_sys_141: -1.86808268e-09 - art_sys_142: -1.66051665e-08 - art_sys_143: -5.55348265e-09 - art_sys_144: 7.91576160e-17 - art_sys_145: -2.87974144e-17 - art_sys_146: 3.08383074e-17 - art_sys_147: -5.80465690e-17 - art_sys_148: -6.24398176e-18 - art_sys_149: 9.69831374e-19 - art_sys_150: -1.52577365e-18 - art_sys_151: 1.73017714e-18 - art_sys_152: -4.20342789e-20 - art_sys_153: -4.31213610e-20 - art_sys_154: -3.93312687e-21 - art_sys_155: 2.28196752e-20 - art_sys_156: 1.45278496e-20 - art_sys_157: 5.99009668e-21 - art_sys_158: -2.27014119e-21 - art_sys_159: 9.30718302e-22 - art_sys_160: 1.37963382e-22 - art_sys_161: 6.29676013e-24 - art_sys_162: 5.09302567e-24 - art_sys_163: 9.14702274e-24 - art_sys_164: -1.57574971e-25 - art_sys_165: 1.87660293e-23 - art_sys_166: -8.03352517e-25 - art_sys_167: -1.61074367e-23 - art_sys_168: 6.11560070e-10 - art_sys_169: -1.06502221e-23 - art_sys_170: -2.00992480e-10 - art_sys_171: 6.27437502e-11 - art_sys_172: -8.25911919e-24 - art_sys_173: -1.97140249e-27 - art_sys_174: -1.81681438e-11 - art_sys_175: 0.0 - art_sys_176: -4.89067779e-12 - art_sys_177: 0.0 - art_sys_178: 5.92380293e-13 - art_sys_179: -4.34140363e-14 - art_sys_180: -4.73115731e-19 - art_sys_181: 2.63359356e-27 - art_sys_182: 0.0 - art_sys_183: 6.26303540e-25 - art_sys_184: 1.30242707e-26 - art_sys_185: 7.65674753e-27 + art_sys_43: -9.49512232e-180 + art_sys_44: 5.81592893e-172 + art_sys_45: -3.84735620e-45 + art_sys_46: 2.33930412e-41 + art_sys_47: -5.79634849e-36 + art_sys_48: 6.73718377e-28 + art_sys_49: -8.54941660e-07 + art_sys_50: 1.23406385e-05 + art_sys_51: -1.94181186e-05 + art_sys_52: -1.10803930e-05 + art_sys_53: 1.51113552e-04 + art_sys_54: -8.65548323e-05 + art_sys_55: -1.84252366e-22 + art_sys_56: 6.35045013e-22 + art_sys_57: 6.68780295e-23 + art_sys_58: 3.97357328e-04 + art_sys_59: -3.65017462e-04 + art_sys_60: -5.78729236e-22 + art_sys_61: 2.61652454e-22 + art_sys_62: -9.65539499e-23 + art_sys_63: 4.64318833e-22 + art_sys_64: -3.80756512e-22 + art_sys_65: 1.15567069e-04 + art_sys_66: 4.08567374e-03 + art_sys_67: 1.11823749e-21 + art_sys_68: -3.92635453e-21 + art_sys_69: 1.54812807e-20 + art_sys_70: -4.50404281e-21 + art_sys_71: 7.09087631e-22 + art_sys_72: -5.05013121e-20 + art_sys_73: 5.13848663e-14 + art_sys_74: 8.61718524e-15 + art_sys_75: 2.72453394e-15 + art_sys_76: -4.61979406e-03 + art_sys_77: -2.51677190e-18 + art_sys_78: -7.22643993e-16 + art_sys_79: 6.11047314e-15 + art_sys_80: 1.12023691e-02 + art_sys_81: -6.55883078e-16 + art_sys_82: 4.78329207e-16 + art_sys_83: -2.09967849e-02 + art_sys_84: -1.67081609e-16 + art_sys_85: 4.03182431e-17 + art_sys_86: -5.14716403e-03 + art_sys_87: -1.92564439e-17 + art_sys_88: -1.68271984e-03 + art_sys_89: -1.69869052e-03 + art_sys_90: 3.31745378e-17 + art_sys_91: -1.49040715e-13 + art_sys_92: 2.35265800e-16 + art_sys_93: 7.47489186e-17 + art_sys_94: -5.69644020e-15 + art_sys_95: -3.44106329e-17 + art_sys_96: 3.44065184e-04 + art_sys_97: 5.53093506e-15 + art_sys_98: 2.12566853e-16 + art_sys_99: -1.28164250e-16 + art_sys_100: -9.59066849e-16 + art_sys_101: -4.04912524e-14 + art_sys_102: -2.16243627e-15 + art_sys_103: -3.03226881e-15 + art_sys_104: -3.57454750e-17 + art_sys_105: 8.32723196e-17 + art_sys_106: -1.61748170e-14 + art_sys_107: 7.53178330e-06 + art_sys_108: -4.66367929e-06 + art_sys_109: 2.29967865e-06 + art_sys_110: 3.26979211e-13 + art_sys_111: -4.97094130e-15 + art_sys_112: 2.32998932e-14 + art_sys_113: -1.07851072e-06 + art_sys_114: -5.57901857e-15 + art_sys_115: -1.88011087e-15 + art_sys_116: 1.06871761e-13 + art_sys_117: -5.79919455e-16 + art_sys_118: -2.45129403e-13 + art_sys_119: -3.12091274e-16 + art_sys_120: -1.19386817e-14 + art_sys_121: -3.15937792e-12 + art_sys_122: 4.90245005e-15 + art_sys_123: 1.64049756e-14 + art_sys_124: 6.39015042e-13 + art_sys_125: -6.63534793e-14 + art_sys_126: 3.07774501e-12 + art_sys_127: 1.14209888e-14 + art_sys_128: -4.57736402e-13 + art_sys_129: -9.30251829e-15 + art_sys_130: 7.30189349e-13 + art_sys_131: 5.45386497e-13 + art_sys_132: -4.93386990e-14 + art_sys_133: 3.80345568e-13 + art_sys_134: 6.12160300e-10 + art_sys_135: -4.07819979e-14 + art_sys_136: -4.54746939e-13 + art_sys_137: 2.01592516e-10 + art_sys_138: 3.22570102e-16 + art_sys_139: -1.82142923e-14 + art_sys_140: 7.97014814e-13 + art_sys_141: -1.12107365e-14 + art_sys_142: 9.84946825e-13 + art_sys_143: -6.19339432e-11 + art_sys_144: 1.73569339e-11 + art_sys_145: 4.80343790e-12 + art_sys_146: 0.0 + art_sys_147: 7.71604673e-13 + art_sys_148: -2.39001185e-13 + art_sys_149: -2.39001185e-13 + art_sys_150: 6.10029080e-14 + art_sys_151: 6.10029080e-14 + art_sys_152: -3.40353598e-14 + art_sys_153: 1.78706622e-13 + art_sys_154: -6.09299785e-14 + art_sys_155: 2.33976562e-25 + art_sys_156: -3.09819488e-30 + art_sys_157: 6.32379541e-28 + art_sys_158: 0.0 + art_sys_159: -5.53644073e-07 + art_sys_160: 2.60309051e-07 + art_sys_161: -1.10697527e-07 + art_sys_162: -4.30198711e-08 + art_sys_163: 1.66034216e-08 + art_sys_164: -5.56063245e-09 + art_sys_165: 1.86965635e-09 + art_sys_166: -5.13144712e-20 + art_sys_167: 2.10544308e-20 + art_sys_168: 4.43263746e-20 + art_sys_169: -1.10028598e-20 + art_sys_170: 4.72192258e-21 + art_sys_171: -4.97355245e-21 + art_sys_172: -1.67410038e-21 + art_sys_173: 4.79414777e-22 + art_sys_174: 3.84512103e-22 + art_sys_175: -1.46478262e-24 + art_sys_176: 1.17540596e-23 + art_sys_177: -8.33248863e-24 + art_sys_178: -1.25028371e-23 + art_sys_179: 4.94836277e-25 + art_sys_180: -5.80085700e-24 + art_sys_181: -4.65127714e-25 + art_sys_182: -1.64062706e-24 + art_sys_183: 9.12043511e-26 + art_sys_184: -1.29080900e-25 + art_sys_185: 2.94344181e-26 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -34910,149 +34910,149 @@ bins: art_sys_40: 0.0 art_sys_41: 0.0 art_sys_42: 0.0 - art_sys_43: 1.05411181e-194 - art_sys_44: 1.72635304e-187 - art_sys_45: -9.14448268e-55 - art_sys_46: -5.53058184e-55 - art_sys_47: 7.78909999e-47 - art_sys_48: -1.09455746e-39 - art_sys_49: -8.45638549e-31 - art_sys_50: -9.92580227e-31 - art_sys_51: -8.22964411e-08 - art_sys_52: -1.31486126e-06 - art_sys_53: 7.46386155e-26 - art_sys_54: 3.10283574e-27 - art_sys_55: -5.14784837e-27 - art_sys_56: -3.30116546e-29 - art_sys_57: -5.50644469e-28 - art_sys_58: 5.35693070e-28 - art_sys_59: 1.64162720e-06 - art_sys_60: -1.98844325e-06 - art_sys_61: -1.19840938e-05 - art_sys_62: 7.97949859e-05 - art_sys_63: -4.71002667e-05 - art_sys_64: 2.70436360e-23 - art_sys_65: -1.20878237e-05 - art_sys_66: 5.43849868e-04 - art_sys_67: 2.61461457e-04 - art_sys_68: 6.13236088e-22 - art_sys_69: 3.46488211e-21 - art_sys_70: 1.40765790e-21 - art_sys_71: -1.79323153e-22 - art_sys_72: 1.06425391e-20 - art_sys_73: 2.46696333e-22 - art_sys_74: 1.56024947e-22 - art_sys_75: 1.36089260e-03 - art_sys_76: -1.60862686e-03 - art_sys_77: 3.82796475e-03 - art_sys_78: -6.24768668e-21 - art_sys_79: -4.02700061e-20 - art_sys_80: -6.64913178e-03 - art_sys_81: 3.51227705e-03 - art_sys_82: -2.70987297e-03 - art_sys_83: -7.35959501e-20 - art_sys_84: 1.14198265e-19 - art_sys_85: 1.05303419e-19 - art_sys_86: 3.97669851e-20 - art_sys_87: -1.65126839e-20 - art_sys_88: 8.97300880e-04 - art_sys_89: -2.67797602e-20 - art_sys_90: -3.40336395e-20 - art_sys_91: 5.27059436e-20 - art_sys_92: -1.42590840e-20 - art_sys_93: 4.11817857e-20 - art_sys_94: -3.78860373e-20 - art_sys_95: 2.09945021e-20 - art_sys_96: -1.87556214e-20 - art_sys_97: -1.91279336e-20 - art_sys_98: 2.61519163e-20 - art_sys_99: -1.32325730e-20 - art_sys_100: 1.97316184e-05 - art_sys_101: -1.32943083e-05 - art_sys_102: -2.17253390e-20 - art_sys_103: -1.09767867e-20 - art_sys_104: 1.19338977e-20 - art_sys_105: -2.25984286e-20 - art_sys_106: -7.14696380e-21 - art_sys_107: -1.20948367e-21 - art_sys_108: 2.67022593e-21 - art_sys_109: -2.92282259e-21 - art_sys_110: 6.31294551e-21 - art_sys_111: -7.28989671e-18 - art_sys_112: -4.56576170e-21 - art_sys_113: 5.73036730e-21 - art_sys_114: 1.90365379e-22 - art_sys_115: 3.08287185e-21 - art_sys_116: 1.70706367e-21 - art_sys_117: 3.75099662e-22 - art_sys_118: 9.03656180e-23 - art_sys_119: 5.64775774e-18 - art_sys_120: -7.25971442e-18 - art_sys_121: 2.30225766e-18 - art_sys_122: -7.25465615e-19 - art_sys_123: 5.66584471e-20 - art_sys_124: 7.73634558e-18 - art_sys_125: -5.51003962e-21 - art_sys_126: 2.07755129e-17 - art_sys_127: -2.87489690e-19 - art_sys_128: -6.77114510e-16 - art_sys_129: 1.72442231e-15 - art_sys_130: 4.29393730e-16 - art_sys_131: 1.09573881e-15 - art_sys_132: 2.32679196e-17 - art_sys_133: 4.38541404e-15 - art_sys_134: -5.74041177e-13 - art_sys_135: -6.98655365e-06 - art_sys_136: -3.37852800e-06 - art_sys_137: -1.79733617e-06 - art_sys_138: -8.62361394e-07 - art_sys_139: 1.46513993e-07 - art_sys_140: 3.72674663e-07 - art_sys_141: 6.46224938e-09 - art_sys_142: 5.69621542e-08 - art_sys_143: 1.91531704e-08 - art_sys_144: -2.38629874e-16 - art_sys_145: 2.43805569e-16 - art_sys_146: -1.73138705e-16 - art_sys_147: -2.28142199e-17 - art_sys_148: 3.35914868e-17 - art_sys_149: -6.54300076e-18 - art_sys_150: 1.21504057e-18 - art_sys_151: -1.12696290e-19 - art_sys_152: 1.21316071e-19 - art_sys_153: 1.33379975e-19 - art_sys_154: 9.47494006e-21 - art_sys_155: -7.44116630e-20 - art_sys_156: -4.78125461e-20 - art_sys_157: -1.92265141e-20 - art_sys_158: 7.39708232e-21 - art_sys_159: -3.08571538e-21 - art_sys_160: -1.27653127e-22 - art_sys_161: 7.88173002e-24 - art_sys_162: -9.24792971e-24 - art_sys_163: -5.80033923e-23 - art_sys_164: 1.00568125e-22 - art_sys_165: -8.61788808e-23 - art_sys_166: 1.33921414e-23 - art_sys_167: 4.45662621e-22 - art_sys_168: -2.11987420e-09 - art_sys_169: 1.57048441e-24 - art_sys_170: 6.97452434e-10 - art_sys_171: -2.17874160e-10 - art_sys_172: 2.31614766e-23 - art_sys_173: 1.75820234e-26 - art_sys_174: 6.31106600e-11 - art_sys_175: 0.0 - art_sys_176: 1.69923862e-11 - art_sys_177: 0.0 - art_sys_178: -2.05842321e-12 - art_sys_179: 1.50859598e-13 - art_sys_180: 1.64404984e-18 - art_sys_181: -9.15126182e-27 - art_sys_182: 0.0 - art_sys_183: -2.17603027e-24 - art_sys_184: -4.52347460e-26 - art_sys_185: -2.66059423e-26 + art_sys_43: -9.13998264e-181 + art_sys_44: 5.59839965e-173 + art_sys_45: -3.70345414e-46 + art_sys_46: 2.25180750e-42 + art_sys_47: -5.57954858e-37 + art_sys_48: 6.48519395e-29 + art_sys_49: -8.22964411e-08 + art_sys_50: 1.31486126e-06 + art_sys_51: -1.64162720e-06 + art_sys_52: 1.98844325e-06 + art_sys_53: 1.19840938e-05 + art_sys_54: 7.97949859e-05 + art_sys_55: -2.45455199e-23 + art_sys_56: -2.90915953e-24 + art_sys_57: 7.72073960e-24 + art_sys_58: -4.71002667e-05 + art_sys_59: 1.20878237e-05 + art_sys_60: 3.55200486e-23 + art_sys_61: -2.85943961e-23 + art_sys_62: -2.95320994e-23 + art_sys_63: 6.68094646e-23 + art_sys_64: -2.53150193e-25 + art_sys_65: -5.43849868e-04 + art_sys_66: -2.61461457e-04 + art_sys_67: 1.65603748e-21 + art_sys_68: -5.98552223e-22 + art_sys_69: -1.95022125e-21 + art_sys_70: -1.63008958e-21 + art_sys_71: 1.08245714e-21 + art_sys_72: -1.34365054e-20 + art_sys_73: 5.39135012e-14 + art_sys_74: 4.88012764e-15 + art_sys_75: -3.57582127e-15 + art_sys_76: -1.36089260e-03 + art_sys_77: -7.42751493e-19 + art_sys_78: -2.12874225e-16 + art_sys_79: -7.29536682e-17 + art_sys_80: -1.60862686e-03 + art_sys_81: 1.25178163e-15 + art_sys_82: -6.81382329e-16 + art_sys_83: -3.82796475e-03 + art_sys_84: -7.86296738e-17 + art_sys_85: -1.84039550e-16 + art_sys_86: -6.64913179e-03 + art_sys_87: -3.47672992e-18 + art_sys_88: 3.51227705e-03 + art_sys_89: 2.70987297e-03 + art_sys_90: -1.07337616e-19 + art_sys_91: 2.11240159e-14 + art_sys_92: -3.32368572e-17 + art_sys_93: -1.14418531e-17 + art_sys_94: -1.03829284e-15 + art_sys_95: 4.10840684e-18 + art_sys_96: -8.97300885e-04 + art_sys_97: 1.00823348e-15 + art_sys_98: 6.35870295e-17 + art_sys_99: -1.40278305e-17 + art_sys_100: -1.97365685e-16 + art_sys_101: 5.80764914e-15 + art_sys_102: 3.09643753e-16 + art_sys_103: -3.91766340e-15 + art_sys_104: -7.12988697e-18 + art_sys_105: -1.10271500e-17 + art_sys_106: -2.94447945e-15 + art_sys_107: -1.97316209e-05 + art_sys_108: 1.32942967e-05 + art_sys_109: -6.98657150e-06 + art_sys_110: 4.21041070e-13 + art_sys_111: -9.04678275e-16 + art_sys_112: -4.93146843e-14 + art_sys_113: 3.37852905e-06 + art_sys_114: -9.97812155e-16 + art_sys_115: 4.22745083e-15 + art_sys_116: 1.54335979e-13 + art_sys_117: 4.43890207e-17 + art_sys_118: 6.34802428e-13 + art_sys_119: -2.13181607e-16 + art_sys_120: 1.91674080e-14 + art_sys_121: 8.30733346e-12 + art_sys_122: 3.13194795e-15 + art_sys_123: -3.87483844e-15 + art_sys_124: -2.10669802e-12 + art_sys_125: 1.70942743e-13 + art_sys_126: -9.93809200e-12 + art_sys_127: -3.54141308e-14 + art_sys_128: 1.49185866e-12 + art_sys_129: 1.20596423e-14 + art_sys_130: -2.43943653e-12 + art_sys_131: -1.42598270e-12 + art_sys_132: 1.32536540e-13 + art_sys_133: -1.28788022e-12 + art_sys_134: -2.12195370e-09 + art_sys_135: 1.04771996e-13 + art_sys_136: 1.50783065e-12 + art_sys_137: -6.99535354e-10 + art_sys_138: -4.63089696e-17 + art_sys_139: 3.47498327e-14 + art_sys_140: -2.74038686e-12 + art_sys_141: 4.16294814e-14 + art_sys_142: -3.38607489e-12 + art_sys_143: 2.15060268e-10 + art_sys_144: -6.02937428e-11 + art_sys_145: -1.66892814e-11 + art_sys_146: -0.0 + art_sys_147: -2.67837751e-12 + art_sys_148: 8.02825624e-13 + art_sys_149: 8.02825624e-13 + art_sys_150: -2.12158890e-13 + art_sys_151: -2.12158890e-13 + art_sys_152: 1.16217347e-13 + art_sys_153: -6.21499531e-13 + art_sys_154: 2.11703494e-13 + art_sys_155: -8.17473019e-25 + art_sys_156: -7.77032691e-29 + art_sys_157: -1.99373853e-27 + art_sys_158: -0.0 + art_sys_159: 1.79732969e-06 + art_sys_160: -8.62373318e-07 + art_sys_161: 3.72734183e-07 + art_sys_162: 1.46510699e-07 + art_sys_163: -5.69560519e-08 + art_sys_164: 1.91776971e-08 + art_sys_165: -6.46770468e-09 + art_sys_166: 1.78057203e-19 + art_sys_167: -7.38072003e-20 + art_sys_168: -1.53959091e-19 + art_sys_169: 3.82355795e-20 + art_sys_170: -1.63629751e-20 + art_sys_171: 1.73481362e-20 + art_sys_172: 4.85991622e-21 + art_sys_173: -1.64637409e-21 + art_sys_174: -1.32926509e-21 + art_sys_175: 5.08922010e-24 + art_sys_176: -4.21717004e-23 + art_sys_177: 2.66721752e-23 + art_sys_178: 4.34949481e-23 + art_sys_179: -1.57040699e-24 + art_sys_180: 2.35119594e-23 + art_sys_181: 1.48711947e-24 + art_sys_182: 5.86970232e-24 + art_sys_183: -3.17667996e-25 + art_sys_184: 4.48810171e-25 + art_sys_185: -1.02368876e-25 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -35201,149 +35201,149 @@ bins: art_sys_40: 0.0 art_sys_41: 0.0 art_sys_42: 0.0 - art_sys_43: -1.39368018e-196 - art_sys_44: -2.28247517e-189 - art_sys_45: 1.21331740e-56 - art_sys_46: 7.33814193e-57 - art_sys_47: -1.03348116e-48 - art_sys_48: 1.45229169e-41 - art_sys_49: 1.12201860e-32 - art_sys_50: 1.31698523e-32 - art_sys_51: 1.09193388e-09 - art_sys_52: -1.50647605e-07 - art_sys_53: 8.76065484e-27 - art_sys_54: 3.79526647e-28 - art_sys_55: -5.79412712e-28 - art_sys_56: -8.79130430e-30 - art_sys_57: -5.27845260e-29 - art_sys_58: 6.07052336e-29 - art_sys_59: 9.03857021e-08 - art_sys_60: -9.50919604e-07 - art_sys_61: 1.79941395e-06 - art_sys_62: 2.97311694e-05 - art_sys_63: -3.22684082e-05 - art_sys_64: 1.59529032e-23 - art_sys_65: -2.14998368e-05 - art_sys_66: 1.35453796e-04 - art_sys_67: 3.49825553e-04 - art_sys_68: 1.84329892e-22 - art_sys_69: 5.33270088e-22 - art_sys_70: 1.18429361e-21 - art_sys_71: -4.05941919e-22 - art_sys_72: 6.62533699e-22 - art_sys_73: -6.18306012e-22 - art_sys_74: 3.59340963e-22 - art_sys_75: -1.95607850e-04 - art_sys_76: -1.42949132e-03 - art_sys_77: -1.81873912e-03 - art_sys_78: 5.12184771e-21 - art_sys_79: -1.54183057e-20 - art_sys_80: -1.28084866e-03 - art_sys_81: 5.87034349e-03 - art_sys_82: 1.05892414e-03 - art_sys_83: 1.03118988e-19 - art_sys_84: 5.65959877e-20 - art_sys_85: 6.88593781e-20 - art_sys_86: -2.56950241e-20 - art_sys_87: -2.24208953e-20 - art_sys_88: -1.15825126e-03 - art_sys_89: -5.48387402e-20 - art_sys_90: -3.86417957e-20 - art_sys_91: -1.53516500e-20 - art_sys_92: 4.66747061e-21 - art_sys_93: 1.31978526e-20 - art_sys_94: -2.78937381e-20 - art_sys_95: 4.14557671e-20 - art_sys_96: -2.94394716e-20 - art_sys_97: 1.91910264e-20 - art_sys_98: -2.41392436e-20 - art_sys_99: 1.43272318e-20 - art_sys_100: -6.40572763e-05 - art_sys_101: 3.50910873e-05 - art_sys_102: 7.97679549e-21 - art_sys_103: -2.40234952e-20 - art_sys_104: 3.96773285e-21 - art_sys_105: 9.19048014e-21 - art_sys_106: 4.94693299e-21 - art_sys_107: -3.03216386e-21 - art_sys_108: -3.24170435e-20 - art_sys_109: -1.25248551e-20 - art_sys_110: 1.57696407e-21 - art_sys_111: 5.52786081e-18 - art_sys_112: 7.61813243e-21 - art_sys_113: 4.67734524e-22 - art_sys_114: 3.40481482e-21 - art_sys_115: -8.55023702e-21 - art_sys_116: 5.04898991e-22 - art_sys_117: -3.21926273e-22 - art_sys_118: -5.45251890e-22 - art_sys_119: -6.42080312e-18 - art_sys_120: 7.78793934e-18 - art_sys_121: -2.41709716e-18 - art_sys_122: 9.60221059e-19 - art_sys_123: -5.80303065e-20 - art_sys_124: -2.38414519e-17 - art_sys_125: 3.51906929e-21 - art_sys_126: -6.36968262e-17 - art_sys_127: 9.02065331e-19 - art_sys_128: 2.05303851e-15 - art_sys_129: -5.22719380e-15 - art_sys_130: -1.30137221e-15 - art_sys_131: -3.32110344e-15 - art_sys_132: -7.05251761e-17 - art_sys_133: -1.32923014e-14 - art_sys_134: 1.73994394e-12 - art_sys_135: 2.00884225e-05 - art_sys_136: 9.85896483e-06 - art_sys_137: 5.29587526e-06 - art_sys_138: 2.57187027e-06 - art_sys_139: -4.41339557e-07 - art_sys_140: -1.11766657e-06 - art_sys_141: -1.95780068e-08 - art_sys_142: -1.72091461e-07 - art_sys_143: -5.79511521e-08 - art_sys_144: 6.57486085e-16 - art_sys_145: -5.27683196e-16 - art_sys_146: 3.48501632e-16 - art_sys_147: -1.05397055e-16 - art_sys_148: -8.22243132e-17 - art_sys_149: 1.56390712e-17 - art_sys_150: -3.33972046e-18 - art_sys_151: 2.78521097e-18 - art_sys_152: -3.64944172e-19 - art_sys_153: -4.05416400e-19 - art_sys_154: -3.17039078e-20 - art_sys_155: 2.19902918e-19 - art_sys_156: 1.41883394e-19 - art_sys_157: 5.61892364e-20 - art_sys_158: -2.19614463e-20 - art_sys_159: 9.07648777e-21 - art_sys_160: 2.34919145e-22 - art_sys_161: -5.25485596e-23 - art_sys_162: 2.98008947e-23 - art_sys_163: 1.59274151e-22 - art_sys_164: -2.81490125e-22 - art_sys_165: 2.30643717e-22 - art_sys_166: 2.35230186e-23 - art_sys_167: -9.69394075e-23 - art_sys_168: 6.42545565e-09 - art_sys_169: 1.02902175e-24 - art_sys_170: -2.11492125e-09 - art_sys_171: 6.60793960e-10 - art_sys_172: -1.89346179e-23 - art_sys_173: -4.05680356e-25 - art_sys_174: -1.91430930e-10 - art_sys_175: 0.0 - art_sys_176: -5.15459725e-11 - art_sys_177: 0.0 - art_sys_178: 6.24435095e-12 - art_sys_179: -4.57645390e-13 - art_sys_180: -4.98741849e-18 - art_sys_181: 2.77609708e-26 - art_sys_182: 0.0 - art_sys_183: 6.60091264e-24 - art_sys_184: 1.37204196e-25 - art_sys_185: 8.07109473e-26 + art_sys_43: 1.21265559e-182 + art_sys_44: -7.42772815e-175 + art_sys_45: 4.91385408e-48 + art_sys_46: -2.98776576e-44 + art_sys_47: 7.40311248e-39 + art_sys_48: -8.60474993e-31 + art_sys_49: 1.09193388e-09 + art_sys_50: 1.50647605e-07 + art_sys_51: -9.03857021e-08 + art_sys_52: 9.50919604e-07 + art_sys_53: -1.79941395e-06 + art_sys_54: 2.97311694e-05 + art_sys_55: -1.09601474e-24 + art_sys_56: -2.74755937e-23 + art_sys_57: 1.57061735e-26 + art_sys_58: -3.22684082e-05 + art_sys_59: 2.14998368e-05 + art_sys_60: 3.88090078e-23 + art_sys_61: -2.15758301e-23 + art_sys_62: -3.40019708e-24 + art_sys_63: -6.23557084e-25 + art_sys_64: 1.89139754e-23 + art_sys_65: -1.35453796e-04 + art_sys_66: -3.49825553e-04 + art_sys_67: 3.32537998e-22 + art_sys_68: 1.47501233e-22 + art_sys_69: -1.56078115e-21 + art_sys_70: -6.18993424e-23 + art_sys_71: 1.99099000e-22 + art_sys_72: 2.38021227e-21 + art_sys_73: -5.83153161e-14 + art_sys_74: 2.44990120e-14 + art_sys_75: 9.60696414e-15 + art_sys_76: 1.95607850e-04 + art_sys_77: 1.06356351e-19 + art_sys_78: 3.05980909e-17 + art_sys_79: 1.35861070e-15 + art_sys_80: -1.42949133e-03 + art_sys_81: 9.83947146e-16 + art_sys_82: 9.91249331e-16 + art_sys_83: 1.81873912e-03 + art_sys_84: 3.09859928e-16 + art_sys_85: -8.58343054e-17 + art_sys_86: -1.28084866e-03 + art_sys_87: 1.70884102e-18 + art_sys_88: 5.87034349e-03 + art_sys_89: -1.05892414e-03 + art_sys_90: -3.63555960e-18 + art_sys_91: 1.89835271e-14 + art_sys_92: -3.00648420e-17 + art_sys_93: -9.61281439e-18 + art_sys_94: 4.93470266e-16 + art_sys_95: 4.20288240e-18 + art_sys_96: 1.15825126e-03 + art_sys_97: -4.79101546e-16 + art_sys_98: -1.51888635e-17 + art_sys_99: 1.22772501e-17 + art_sys_100: 7.62548005e-17 + art_sys_101: 5.16615401e-15 + art_sys_102: 2.75830263e-16 + art_sys_103: -7.55191405e-16 + art_sys_104: 3.00788615e-18 + art_sys_105: -1.04707569e-17 + art_sys_106: 1.40238477e-15 + art_sys_107: 6.40572765e-05 + art_sys_108: -3.50910512e-05 + art_sys_109: 2.00884728e-05 + art_sys_110: 7.98716967e-14 + art_sys_111: 4.31043693e-16 + art_sys_112: -8.67793157e-14 + art_sys_113: -9.85896795e-06 + art_sys_114: 4.91320781e-16 + art_sys_115: -4.60581063e-15 + art_sys_116: 4.45908992e-14 + art_sys_117: 1.33344196e-16 + art_sys_118: -7.88689874e-13 + art_sys_119: 2.07355401e-16 + art_sys_120: 3.07487639e-14 + art_sys_121: -2.67223441e-11 + art_sys_122: -2.43945361e-15 + art_sys_123: -2.68297140e-14 + art_sys_124: 6.24482832e-12 + art_sys_125: -2.15525435e-13 + art_sys_126: 2.91953844e-11 + art_sys_127: 2.25439324e-14 + art_sys_128: -4.42166267e-12 + art_sys_129: -2.15536424e-14 + art_sys_130: 7.29962774e-12 + art_sys_131: 4.62994612e-12 + art_sys_132: -2.86912497e-13 + art_sys_133: 3.85164669e-12 + art_sys_134: 6.43175739e-09 + art_sys_135: -2.04455711e-13 + art_sys_136: -4.49025632e-12 + art_sys_137: 2.12123799e-09 + art_sys_138: -4.11606933e-17 + art_sys_139: -1.27803587e-13 + art_sys_140: 8.27562459e-12 + art_sys_141: -1.25342704e-13 + art_sys_142: 1.02374794e-11 + art_sys_143: -6.52257911e-10 + art_sys_144: 1.82887431e-10 + art_sys_145: 5.06265389e-11 + art_sys_146: 0.0 + art_sys_147: 8.12207275e-12 + art_sys_148: -2.40575171e-12 + art_sys_149: -2.40575171e-12 + art_sys_150: 6.43693077e-13 + art_sys_151: 6.43693077e-13 + art_sys_152: -3.56349585e-13 + art_sys_153: 1.88635426e-12 + art_sys_154: -6.42198950e-13 + art_sys_155: 2.48623495e-24 + art_sys_156: 3.49972110e-28 + art_sys_157: 5.82599542e-27 + art_sys_158: 0.0 + art_sys_159: -5.29585627e-06 + art_sys_160: 2.57190577e-06 + art_sys_161: -1.11784490e-06 + art_sys_162: -4.41329674e-07 + art_sys_163: 1.72072926e-07 + art_sys_164: -5.80252511e-08 + art_sys_165: 1.95945425e-08 + art_sys_166: -5.39910073e-19 + art_sys_167: 2.26021224e-19 + art_sys_168: 4.66990385e-19 + art_sys_169: -1.15936478e-19 + art_sys_170: 4.92122593e-20 + art_sys_171: -5.26970310e-20 + art_sys_172: -1.44457699e-20 + art_sys_173: 4.89181878e-21 + art_sys_174: 3.98963825e-21 + art_sys_175: -1.54379336e-23 + art_sys_176: 1.42476095e-22 + art_sys_177: -7.73535003e-23 + art_sys_178: -1.31838741e-22 + art_sys_179: 4.98678476e-24 + art_sys_180: -7.12354054e-23 + art_sys_181: -4.46238283e-24 + art_sys_182: -1.81060466e-23 + art_sys_183: 9.56405402e-25 + art_sys_184: -1.36174534e-24 + art_sys_185: 3.10631330e-25 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -35492,149 +35492,149 @@ bins: art_sys_40: 0.0 art_sys_41: 0.0 art_sys_42: 0.0 - art_sys_43: -2.92485719e-196 - art_sys_44: -4.79013333e-189 - art_sys_45: 2.53875913e-56 - art_sys_46: 1.53544116e-56 - art_sys_47: -2.16246773e-48 - art_sys_48: 3.03879164e-41 - art_sys_49: 2.34772448e-32 - art_sys_50: 2.75567487e-32 - art_sys_51: 2.28477486e-09 - art_sys_52: -1.94321300e-08 - art_sys_53: 1.17264926e-27 - art_sys_54: 5.38512396e-29 - art_sys_55: -7.26212038e-29 - art_sys_56: -2.12798276e-30 - art_sys_57: -4.69886719e-30 - art_sys_58: 8.07034727e-30 - art_sys_59: -1.93851388e-09 - art_sys_60: -2.28727294e-07 - art_sys_61: 9.28098509e-07 - art_sys_62: 6.89577051e-06 - art_sys_63: -8.54355185e-06 - art_sys_64: 4.17305904e-24 - art_sys_65: -5.57429402e-06 - art_sys_66: -5.28427859e-06 - art_sys_67: 6.23799733e-05 - art_sys_68: 1.24320932e-24 - art_sys_69: -1.11749901e-22 - art_sys_70: 1.78568383e-22 - art_sys_71: -8.09578898e-23 - art_sys_72: -7.56489855e-22 - art_sys_73: -2.16153275e-22 - art_sys_74: 7.12731875e-23 - art_sys_75: -1.71697195e-04 - art_sys_76: -7.58483236e-05 - art_sys_77: -8.04361074e-04 - art_sys_78: 1.95341965e-21 - art_sys_79: 4.83725622e-21 - art_sys_80: 9.53422965e-04 - art_sys_81: 2.44731943e-03 - art_sys_82: 4.02898285e-03 - art_sys_83: 1.41024740e-19 - art_sys_84: -8.71776260e-20 - art_sys_85: 2.03442990e-20 - art_sys_86: -6.14029404e-20 - art_sys_87: -2.22565471e-20 - art_sys_88: 1.07511273e-03 - art_sys_89: -3.25150793e-21 - art_sys_90: 1.70773964e-20 - art_sys_91: 4.56009087e-20 - art_sys_92: 3.81189993e-20 - art_sys_93: -2.04594604e-20 - art_sys_94: 1.82445631e-20 - art_sys_95: -1.98304187e-20 - art_sys_96: 1.89657816e-21 - art_sys_97: -2.08166196e-20 - art_sys_98: 2.04278608e-20 - art_sys_99: -4.00794845e-20 - art_sys_100: 4.45835051e-05 - art_sys_101: -5.63710220e-05 - art_sys_102: -1.37194096e-21 - art_sys_103: -9.41894011e-21 - art_sys_104: -6.17096998e-21 - art_sys_105: 1.56905216e-20 - art_sys_106: -1.15190838e-20 - art_sys_107: -4.71435940e-21 - art_sys_108: 6.82789134e-21 - art_sys_109: 1.76519695e-21 - art_sys_110: -4.37048186e-21 - art_sys_111: -1.29403354e-18 - art_sys_112: -2.78917146e-22 - art_sys_113: -5.06085789e-22 - art_sys_114: -1.38810311e-21 - art_sys_115: 9.86516268e-21 - art_sys_116: -8.08371026e-22 - art_sys_117: -4.36285449e-23 - art_sys_118: 2.22078905e-21 - art_sys_119: 6.36009623e-18 - art_sys_120: -7.72263711e-18 - art_sys_121: 2.31188298e-18 - art_sys_122: -1.29460685e-18 - art_sys_123: 5.38440541e-20 - art_sys_124: 5.66742743e-17 - art_sys_125: -7.52227139e-22 - art_sys_126: 1.51147014e-16 - art_sys_127: -2.15425249e-18 - art_sys_128: -4.85442384e-15 - art_sys_129: 1.23587833e-14 - art_sys_130: 3.07668474e-15 - art_sys_131: 7.85187068e-15 - art_sys_132: 1.66739519e-16 - art_sys_133: 3.14264581e-14 - art_sys_134: -4.11368711e-12 - art_sys_135: -3.27423022e-05 - art_sys_136: -1.87585743e-05 - art_sys_137: -1.08394198e-05 - art_sys_138: -5.52331379e-06 - art_sys_139: 1.00525543e-06 - art_sys_140: 2.48900149e-06 - art_sys_141: 4.60967758e-08 - art_sys_142: 3.98332397e-07 - art_sys_143: 1.35554898e-07 - art_sys_144: -1.46083712e-15 - art_sys_145: 1.72420498e-15 - art_sys_146: -6.01919681e-16 - art_sys_147: 5.57402762e-17 - art_sys_148: 1.10594281e-16 - art_sys_149: -1.70473127e-17 - art_sys_150: -5.37577286e-18 - art_sys_151: -1.53089962e-18 - art_sys_152: 7.42476916e-19 - art_sys_153: 9.22044938e-19 - art_sys_154: 7.32216029e-20 - art_sys_155: -4.57018594e-19 - art_sys_156: -2.99962613e-19 - art_sys_157: -1.11568520e-19 - art_sys_158: 4.61285381e-20 - art_sys_159: -1.86037653e-20 - art_sys_160: 1.18246343e-21 - art_sys_161: 1.35267291e-22 - art_sys_162: -6.06555362e-23 - art_sys_163: -3.95917275e-22 - art_sys_164: 6.64169865e-22 - art_sys_165: -5.21513976e-22 - art_sys_166: -8.14734473e-23 - art_sys_167: -3.89330908e-22 - art_sys_168: -1.51917998e-08 - art_sys_169: 1.17557612e-23 - art_sys_170: 5.01145618e-09 - art_sys_171: -1.56814251e-09 - art_sys_172: 5.54191347e-23 - art_sys_173: 9.69428413e-25 - art_sys_174: 4.54620199e-10 - art_sys_175: 0.0 - art_sys_176: 1.22471717e-10 - art_sys_177: 0.0 - art_sys_178: -1.48394450e-11 - art_sys_179: 1.08768415e-12 - art_sys_180: 1.18535348e-17 - art_sys_181: -6.59753313e-26 - art_sys_182: 0.0 - art_sys_183: -1.56832511e-23 - art_sys_184: -3.25712605e-25 - art_sys_185: -1.91816524e-25 + art_sys_43: 2.53748825e-182 + art_sys_44: -1.55425605e-174 + art_sys_45: 1.02818042e-47 + art_sys_46: -6.25163505e-44 + art_sys_47: 1.54903567e-38 + art_sys_48: -1.80046766e-30 + art_sys_49: 2.28477486e-09 + art_sys_50: 1.94321300e-08 + art_sys_51: 1.93851388e-09 + art_sys_52: 2.28727294e-07 + art_sys_53: -9.28098509e-07 + art_sys_54: 6.89577051e-06 + art_sys_55: 4.02037766e-25 + art_sys_56: -8.31618965e-24 + art_sys_57: -2.28775941e-25 + art_sys_58: -8.54355185e-06 + art_sys_59: 5.57429402e-06 + art_sys_60: 1.00286476e-23 + art_sys_61: -5.45315942e-24 + art_sys_62: -9.79854285e-25 + art_sys_63: -1.01807117e-24 + art_sys_64: 4.84523724e-24 + art_sys_65: 5.28427859e-06 + art_sys_66: -6.23799733e-05 + art_sys_67: -3.66114395e-23 + art_sys_68: 7.07137380e-23 + art_sys_69: -2.26872147e-22 + art_sys_70: 9.46753576e-23 + art_sys_71: -2.58750817e-23 + art_sys_72: 1.81748360e-21 + art_sys_73: 3.98412962e-14 + art_sys_74: 1.93538413e-14 + art_sys_75: -7.68314675e-15 + art_sys_76: 1.71697195e-04 + art_sys_77: 9.36020179e-20 + art_sys_78: 2.68574220e-17 + art_sys_79: -2.50151565e-15 + art_sys_80: -7.58483236e-05 + art_sys_81: 1.26994633e-15 + art_sys_82: -7.31648446e-16 + art_sys_83: 8.04361074e-04 + art_sys_84: 2.32001672e-16 + art_sys_85: 7.30716351e-16 + art_sys_86: 9.53422967e-04 + art_sys_87: 7.43215356e-19 + art_sys_88: 2.44731943e-03 + art_sys_89: -4.02898285e-03 + art_sys_90: -6.28707706e-19 + art_sys_91: 1.03600019e-15 + art_sys_92: -1.79039331e-18 + art_sys_93: -3.86692930e-19 + art_sys_94: 2.18186836e-16 + art_sys_95: 3.20223548e-19 + art_sys_96: -1.07511273e-03 + art_sys_97: -2.11844358e-16 + art_sys_98: -1.05937545e-17 + art_sys_99: 3.98806983e-18 + art_sys_100: 3.97343081e-17 + art_sys_101: 2.74798296e-16 + art_sys_102: 1.47294567e-17 + art_sys_103: 5.61430967e-16 + art_sys_104: 1.43637485e-18 + art_sys_105: -6.51585588e-19 + art_sys_106: 6.19030414e-16 + art_sys_107: -4.45835368e-05 + art_sys_108: 5.63709859e-05 + art_sys_109: -3.27423844e-05 + art_sys_110: -6.10750247e-14 + art_sys_111: 1.90226819e-16 + art_sys_112: -3.89819551e-14 + art_sys_113: 1.87585811e-05 + art_sys_114: 2.12582415e-16 + art_sys_115: 2.18440054e-15 + art_sys_116: -1.36916137e-14 + art_sys_117: 2.61510914e-17 + art_sys_118: 7.27359611e-13 + art_sys_119: 1.74812058e-16 + art_sys_120: 1.05603476e-14 + art_sys_121: 1.95346227e-11 + art_sys_122: -2.23039041e-15 + art_sys_123: -1.37197162e-14 + art_sys_124: -1.34744110e-11 + art_sys_125: 1.96375625e-13 + art_sys_126: -5.89120823e-11 + art_sys_127: -3.61564527e-14 + art_sys_128: 9.13064960e-12 + art_sys_129: 1.51845135e-14 + art_sys_130: -1.59614338e-11 + art_sys_131: -3.22742481e-12 + art_sys_132: 2.18762683e-13 + art_sys_133: -8.71336929e-12 + art_sys_134: -1.52066827e-08 + art_sys_135: 1.48248770e-13 + art_sys_136: 9.67988977e-12 + art_sys_137: -5.02643616e-09 + art_sys_138: -2.18522577e-18 + art_sys_139: -1.66934431e-13 + art_sys_140: -1.92410054e-11 + art_sys_141: 3.55820879e-13 + art_sys_142: -2.38106819e-11 + art_sys_143: 1.54785772e-09 + art_sys_144: -4.34344932e-10 + art_sys_145: -1.20287160e-10 + art_sys_146: -0.0 + art_sys_147: -1.92605137e-11 + art_sys_148: 5.31114258e-12 + art_sys_149: 5.31114258e-12 + art_sys_150: -1.53234350e-12 + art_sys_151: -1.53234350e-12 + art_sys_152: 8.07225802e-13 + art_sys_153: -4.48986959e-12 + art_sys_154: 1.52595341e-12 + art_sys_155: -5.97351179e-24 + art_sys_156: -2.03640531e-27 + art_sys_157: -1.08674029e-26 + art_sys_158: -0.0 + art_sys_159: 1.08393820e-05 + art_sys_160: -5.52338951e-06 + art_sys_161: 2.48939667e-06 + art_sys_162: 1.00523339e-06 + art_sys_163: -3.98287880e-07 + art_sys_164: 1.35726413e-07 + art_sys_165: -4.61358777e-08 + art_sys_166: 1.27932183e-18 + art_sys_167: -5.36771682e-19 + art_sys_168: -1.10879494e-18 + art_sys_169: 2.75335068e-19 + art_sys_170: -1.16845996e-19 + art_sys_171: 1.25459952e-19 + art_sys_172: 3.02247053e-20 + art_sys_173: -1.13342176e-20 + art_sys_174: -9.38774892e-21 + art_sys_175: 3.66787088e-23 + art_sys_176: -3.73813273e-22 + art_sys_177: 1.50794698e-22 + art_sys_178: 3.14348958e-22 + art_sys_179: -1.25420011e-23 + art_sys_180: 1.65583356e-22 + art_sys_181: 1.04513367e-23 + art_sys_182: 4.25970673e-23 + art_sys_183: -2.28709183e-24 + art_sys_184: 3.24055862e-24 + art_sys_185: -7.39587731e-25 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -35783,149 +35783,149 @@ bins: art_sys_40: 0.0 art_sys_41: 0.0 art_sys_42: 0.0 - art_sys_43: -3.76614732e-197 - art_sys_44: -6.16794141e-190 - art_sys_45: 3.26873551e-57 - art_sys_46: 1.97693077e-57 - art_sys_47: -2.78424801e-49 - art_sys_48: 3.91254374e-42 - art_sys_49: 3.02277214e-33 - art_sys_50: 3.54802162e-33 - art_sys_51: 2.94172244e-10 - art_sys_52: -1.48965673e-09 - art_sys_53: 9.22600370e-29 - art_sys_54: 4.40000676e-30 - art_sys_55: -5.44954118e-30 - art_sys_56: -2.17964180e-31 - art_sys_57: -2.43347191e-31 - art_sys_58: 6.47923877e-31 - art_sys_59: -6.46668990e-10 - art_sys_60: -2.19833606e-08 - art_sys_61: 1.08570479e-07 - art_sys_62: 6.57746631e-07 - art_sys_63: -7.99237837e-07 - art_sys_64: 3.82614715e-25 - art_sys_65: -2.93598887e-07 - art_sys_66: -6.89006760e-06 - art_sys_67: -7.04723181e-06 - art_sys_68: -7.98240222e-24 - art_sys_69: -4.09573434e-23 - art_sys_70: -2.79807415e-23 - art_sys_71: 6.82739765e-24 - art_sys_72: -1.13960977e-22 - art_sys_73: 4.61786479e-26 - art_sys_74: -6.31651461e-24 - art_sys_75: -1.11328733e-05 - art_sys_76: 8.02009625e-05 - art_sys_77: 2.91268252e-05 - art_sys_78: -1.46865037e-22 - art_sys_79: 1.60400903e-21 - art_sys_80: 1.94380679e-04 - art_sys_81: -1.86357750e-04 - art_sys_82: 4.45125467e-04 - art_sys_83: 1.03675284e-20 - art_sys_84: -1.34968942e-20 - art_sys_85: -2.93700866e-21 - art_sys_86: -6.20883702e-21 - art_sys_87: -8.24875763e-22 - art_sys_88: 4.38054947e-04 - art_sys_89: 5.12334510e-21 - art_sys_90: 7.41332975e-21 - art_sys_91: 1.30967872e-20 - art_sys_92: 6.69332545e-21 - art_sys_93: -3.42406153e-21 - art_sys_94: 6.26484363e-21 - art_sys_95: -7.51941265e-21 - art_sys_96: -1.43564542e-21 - art_sys_97: 1.10155254e-20 - art_sys_98: -9.30986128e-21 - art_sys_99: 1.54598119e-20 - art_sys_100: -3.99962108e-04 - art_sys_101: 1.80195375e-04 - art_sys_102: -2.16224940e-20 - art_sys_103: 2.89486519e-21 - art_sys_104: -5.33371585e-21 - art_sys_105: 6.36070136e-21 - art_sys_106: -4.95147632e-22 - art_sys_107: 4.64996981e-21 - art_sys_108: -8.99860918e-21 - art_sys_109: -4.33041094e-21 - art_sys_110: -6.19281029e-21 - art_sys_111: -1.36356263e-17 - art_sys_112: 1.44117922e-20 - art_sys_113: -2.30781331e-21 - art_sys_114: -5.86746758e-21 - art_sys_115: -1.34136862e-20 - art_sys_116: -5.48301694e-21 - art_sys_117: -5.09323703e-23 - art_sys_118: -2.50826131e-21 - art_sys_119: -1.35365855e-17 - art_sys_120: 1.58605023e-17 - art_sys_121: -4.67602453e-18 - art_sys_122: 4.04178376e-18 - art_sys_123: -9.96825449e-20 - art_sys_124: -2.49905691e-16 - art_sys_125: 7.46487605e-22 - art_sys_126: -6.65898337e-16 - art_sys_127: 9.51050831e-18 - art_sys_128: 2.13590862e-14 - art_sys_129: -5.43760746e-14 - art_sys_130: -1.35364847e-14 - art_sys_131: -3.45461147e-14 - art_sys_132: -7.33610912e-16 - art_sys_133: -1.38268424e-13 - art_sys_134: 1.80991874e-11 - art_sys_135: 1.41396304e-04 - art_sys_136: 7.56384687e-05 - art_sys_137: 4.49252561e-05 - art_sys_138: 2.32670707e-05 - art_sys_139: -4.33821873e-06 - art_sys_140: -1.06179941e-05 - art_sys_141: -2.02357924e-07 - art_sys_142: -1.73198718e-06 - art_sys_143: -5.92769690e-07 - art_sys_144: 6.01671191e-15 - art_sys_145: -6.84637158e-15 - art_sys_146: 2.22953553e-15 - art_sys_147: -1.76063202e-16 - art_sys_148: -3.26195775e-16 - art_sys_149: 4.71980360e-17 - art_sys_150: 3.83923902e-17 - art_sys_151: 1.06431949e-18 - art_sys_152: -3.08544467e-18 - art_sys_153: -3.95748649e-18 - art_sys_154: -3.13667366e-19 - art_sys_155: 1.89872268e-18 - art_sys_156: 1.25727437e-18 - art_sys_157: 4.57933820e-19 - art_sys_158: -1.92213061e-19 - art_sys_159: 7.66524455e-20 - art_sys_160: -3.44471195e-21 - art_sys_161: -6.71162953e-22 - art_sys_162: 2.59906832e-22 - art_sys_163: 1.70604024e-21 - art_sys_164: -2.74403796e-21 - art_sys_165: 2.27520494e-21 - art_sys_166: 2.84868294e-22 - art_sys_167: 5.27678514e-22 - art_sys_168: 6.68410174e-08 - art_sys_169: -8.89347146e-23 - art_sys_170: -2.20831582e-08 - art_sys_171: 6.91596022e-09 - art_sys_172: -1.43579386e-22 - art_sys_173: -4.55578591e-24 - art_sys_174: -2.00603932e-09 - art_sys_175: 0.0 - art_sys_176: -5.40578610e-10 - art_sys_177: 0.0 - art_sys_178: 6.55109438e-11 - art_sys_179: -4.80178166e-12 - art_sys_180: -5.23317527e-17 - art_sys_181: 2.91252015e-25 - art_sys_182: 0.0 - art_sys_183: 6.92230965e-23 - art_sys_184: 1.43691623e-24 - art_sys_185: 8.46787765e-25 + art_sys_43: 3.26710311e-183 + art_sys_44: -2.00115795e-175 + art_sys_45: 1.32381595e-48 + art_sys_46: -8.04918483e-45 + art_sys_47: 1.99443415e-39 + art_sys_48: -2.31816107e-31 + art_sys_49: 2.94172244e-10 + art_sys_50: 1.48965673e-09 + art_sys_51: 6.46668990e-10 + art_sys_52: 2.19833606e-08 + art_sys_53: -1.08570479e-07 + art_sys_54: 6.57746631e-07 + art_sys_55: 6.41084741e-26 + art_sys_56: -7.83592800e-25 + art_sys_57: -3.09153304e-26 + art_sys_58: -7.99237837e-07 + art_sys_59: 2.93598887e-07 + art_sys_60: 6.47829625e-25 + art_sys_61: -3.91344542e-25 + art_sys_62: -3.35466518e-25 + art_sys_63: 2.58634925e-25 + art_sys_64: 1.14513941e-25 + art_sys_65: 6.89006760e-06 + art_sys_66: 7.04723181e-06 + art_sys_67: -1.93939066e-23 + art_sys_68: 2.51089706e-24 + art_sys_69: 3.88352832e-23 + art_sys_70: 1.62387125e-23 + art_sys_71: -1.24435759e-23 + art_sys_72: 1.04473487e-22 + art_sys_73: -8.42175395e-14 + art_sys_74: 2.33705794e-14 + art_sys_75: 2.28126665e-14 + art_sys_76: 1.11328733e-05 + art_sys_77: 6.08088938e-21 + art_sys_78: 1.74142370e-18 + art_sys_79: 1.68276126e-15 + art_sys_80: 8.02009625e-05 + art_sys_81: 4.82502238e-16 + art_sys_82: -6.73222733e-16 + art_sys_83: -2.91268251e-05 + art_sys_84: 7.09517055e-16 + art_sys_85: 1.48615495e-16 + art_sys_86: 1.94380679e-04 + art_sys_87: -2.89867019e-20 + art_sys_88: -1.86357750e-04 + art_sys_89: -4.45125467e-04 + art_sys_90: 1.59952609e-19 + art_sys_91: -1.06209985e-15 + art_sys_92: 1.66483422e-18 + art_sys_93: 5.53255976e-19 + art_sys_94: -7.90989316e-18 + art_sys_95: -2.23307617e-19 + art_sys_96: -4.38054949e-04 + art_sys_97: 7.67688292e-18 + art_sys_98: -1.64567403e-19 + art_sys_99: -3.48541737e-19 + art_sys_100: -5.31657600e-19 + art_sys_101: -2.89781033e-16 + art_sys_102: -1.54653549e-17 + art_sys_103: 1.14558814e-16 + art_sys_104: -3.10866521e-20 + art_sys_105: 5.89911130e-19 + art_sys_106: -2.25595369e-17 + art_sys_107: 3.99962072e-04 + art_sys_108: -1.80195139e-04 + art_sys_109: 1.41396640e-04 + art_sys_110: -1.22888383e-14 + art_sys_111: -6.94492072e-18 + art_sys_112: 2.38059037e-15 + art_sys_113: -7.56384966e-05 + art_sys_114: -8.43569243e-18 + art_sys_115: 1.38042871e-15 + art_sys_116: -4.75195152e-15 + art_sys_117: -6.52211497e-18 + art_sys_118: 5.65475199e-13 + art_sys_119: 2.37296410e-18 + art_sys_120: -1.29041356e-15 + art_sys_121: -1.65574075e-10 + art_sys_122: -4.97812127e-17 + art_sys_123: 8.26927080e-16 + art_sys_124: 5.47556367e-11 + art_sys_125: 1.30288843e-13 + art_sys_126: 2.43490318e-10 + art_sys_127: -2.61179205e-14 + art_sys_128: -3.80430295e-11 + art_sys_129: 7.44952702e-14 + art_sys_130: 6.77506241e-11 + art_sys_131: 2.86638356e-11 + art_sys_132: -1.08787739e-12 + art_sys_133: 3.67505586e-11 + art_sys_134: 6.69064495e-08 + art_sys_135: -6.87905331e-13 + art_sys_136: -4.05972008e-11 + art_sys_137: 2.21491976e-08 + art_sys_138: 2.30889482e-18 + art_sys_139: -3.29573595e-13 + art_sys_140: 8.38382509e-11 + art_sys_141: -1.24034931e-12 + art_sys_142: 1.03501091e-10 + art_sys_143: -6.82641479e-09 + art_sys_144: 1.91661822e-09 + art_sys_145: 5.30938236e-10 + art_sys_146: 0.0 + art_sys_147: 8.49654978e-11 + art_sys_148: -2.30580709e-11 + art_sys_149: -2.30580709e-11 + art_sys_150: 6.69773424e-12 + art_sys_151: 6.69773424e-12 + art_sys_152: -3.56396708e-12 + art_sys_153: 1.98285557e-11 + art_sys_154: -6.73568048e-12 + art_sys_155: 2.63780328e-23 + art_sys_156: 1.08013608e-26 + art_sys_157: 4.67612662e-26 + art_sys_158: 0.0 + art_sys_159: -4.49251007e-05 + art_sys_160: 2.32673890e-05 + art_sys_161: -1.06196755e-05 + art_sys_162: -4.33812459e-06 + art_sys_163: 1.73178979e-06 + art_sys_164: -5.93515458e-07 + art_sys_165: 2.02529980e-07 + art_sys_166: -5.63739525e-18 + art_sys_167: 2.31831727e-18 + art_sys_168: 4.89168002e-18 + art_sys_169: -1.21415934e-18 + art_sys_170: 5.08042573e-19 + art_sys_171: -5.53308547e-19 + art_sys_172: -1.35459915e-19 + art_sys_173: 4.95173785e-20 + art_sys_174: 4.12764661e-20 + art_sys_175: -1.61893236e-22 + art_sys_176: 1.75974754e-21 + art_sys_177: -6.25396905e-22 + art_sys_178: -1.38471194e-21 + art_sys_179: 5.62851109e-23 + art_sys_180: -6.69886605e-22 + art_sys_181: -4.72141001e-23 + art_sys_182: -1.82309009e-22 + art_sys_183: 1.01267809e-23 + art_sys_184: -1.43185360e-23 + art_sys_185: 3.26894875e-24 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -36074,440 +36074,440 @@ bins: art_sys_40: 0.0 art_sys_41: 0.0 art_sys_42: 0.0 - art_sys_43: -5.08625158e-198 - art_sys_44: -8.32991891e-191 - art_sys_45: 4.41444098e-58 - art_sys_46: 2.66985328e-58 - art_sys_47: -3.76013859e-50 - art_sys_48: 5.28390669e-43 - art_sys_49: 4.08226642e-34 - art_sys_50: 4.79161805e-34 - art_sys_51: 3.97280847e-11 - art_sys_52: -1.82872138e-10 - art_sys_53: 1.13978028e-29 - art_sys_54: 5.48405864e-31 - art_sys_55: -6.65421789e-31 - art_sys_56: -2.89307563e-32 - art_sys_57: -2.63995494e-32 - art_sys_58: 8.16262148e-32 - art_sys_59: -7.44974278e-11 - art_sys_60: -2.74757708e-09 - art_sys_61: 1.29677462e-08 - art_sys_62: 8.27378828e-08 - art_sys_63: -8.09328000e-08 - art_sys_64: 3.78276487e-26 - art_sys_65: 4.75944715e-08 - art_sys_66: -1.98541534e-06 - art_sys_67: -4.60540502e-06 - art_sys_68: -2.54649080e-24 - art_sys_69: -8.85097866e-24 - art_sys_70: -1.55916628e-23 - art_sys_71: 5.22106560e-24 - art_sys_72: 6.68470342e-24 - art_sys_73: 8.59948919e-24 - art_sys_74: -4.72519991e-24 - art_sys_75: 5.58268033e-06 - art_sys_76: 2.37495903e-05 - art_sys_77: 5.46848577e-05 - art_sys_78: -1.56959281e-22 - art_sys_79: -9.69769989e-23 - art_sys_80: -3.65957875e-05 - art_sys_81: -2.15961586e-04 - art_sys_82: -2.78780939e-04 - art_sys_83: -1.01337016e-20 - art_sys_84: 5.79973342e-21 - art_sys_85: -2.16788855e-21 - art_sys_86: 4.72950926e-21 - art_sys_87: 1.74098951e-21 - art_sys_88: -5.50229468e-05 - art_sys_89: 6.75939563e-22 - art_sys_90: -7.21468731e-22 - art_sys_91: -2.80383671e-21 - art_sys_92: -2.75272904e-21 - art_sys_93: 1.59099983e-21 - art_sys_94: -9.07120505e-22 - art_sys_95: 1.21448192e-21 - art_sys_96: 4.57419103e-21 - art_sys_97: 1.87071826e-20 - art_sys_98: -3.13733572e-20 - art_sys_99: -5.80339232e-21 - art_sys_100: -4.57131788e-04 - art_sys_101: -1.07420191e-04 - art_sys_102: -1.15376329e-21 - art_sys_103: -7.08594167e-21 - art_sys_104: 1.12219672e-21 - art_sys_105: -1.07226474e-20 - art_sys_106: 6.42731859e-21 - art_sys_107: 4.73859182e-22 - art_sys_108: 8.54431325e-21 - art_sys_109: -3.62628638e-22 - art_sys_110: -3.72336075e-21 - art_sys_111: 3.68037334e-17 - art_sys_112: 1.27594665e-20 - art_sys_113: 4.77600024e-22 - art_sys_114: -9.47939392e-21 - art_sys_115: 8.79506873e-21 - art_sys_116: -8.39160767e-21 - art_sys_117: -1.55748974e-22 - art_sys_118: -7.51099261e-21 - art_sys_119: 9.82092462e-18 - art_sys_120: -1.59711729e-17 - art_sys_121: 4.58464479e-18 - art_sys_122: -6.56389801e-18 - art_sys_123: 8.50602229e-20 - art_sys_124: 4.82337323e-16 - art_sys_125: 9.93351643e-21 - art_sys_126: 1.28408836e-15 - art_sys_127: -1.83602307e-17 - art_sys_128: -4.11762165e-14 - art_sys_129: 1.04825705e-13 - art_sys_130: 2.60952825e-14 - art_sys_131: 6.65973160e-14 - art_sys_132: 1.41424249e-15 - art_sys_133: 2.66551559e-13 - art_sys_134: -3.48912907e-11 - art_sys_135: -6.30982775e-05 - art_sys_136: -7.96890192e-05 - art_sys_137: -5.76909156e-05 - art_sys_138: -3.47512546e-05 - art_sys_139: 7.57074538e-06 - art_sys_140: 1.74420063e-05 - art_sys_141: 3.85820694e-07 - art_sys_142: 3.15481233e-06 - art_sys_143: 1.10973319e-06 - art_sys_144: -7.94830996e-15 - art_sys_145: 9.58860262e-15 - art_sys_146: -3.21322033e-15 - art_sys_147: 1.63471052e-16 - art_sys_148: 4.79492075e-16 - art_sys_149: -6.64015827e-17 - art_sys_150: -6.64756934e-17 - art_sys_151: 3.49338787e-18 - art_sys_152: 4.34688282e-18 - art_sys_153: 6.88471640e-18 - art_sys_154: 6.26569030e-19 - art_sys_155: -2.52840666e-18 - art_sys_156: -1.79088004e-18 - art_sys_157: -5.22030417e-19 - art_sys_158: 2.63671669e-19 - art_sys_159: -1.01025081e-19 - art_sys_160: 1.46326138e-20 - art_sys_161: 1.50911978e-21 - art_sys_162: -5.53562049e-22 - art_sys_163: -2.86689720e-21 - art_sys_164: 2.77393222e-21 - art_sys_165: -3.57958359e-21 - art_sys_166: -4.68881142e-22 - art_sys_167: -3.47781196e-22 - art_sys_168: -1.28862713e-07 - art_sys_169: 1.15968766e-22 - art_sys_170: 4.28486147e-08 - art_sys_171: -1.34758681e-08 - art_sys_172: 1.37422037e-22 - art_sys_173: 9.55287911e-24 - art_sys_174: 3.91715397e-09 - art_sys_175: 0.0 - art_sys_176: 1.05706173e-09 - art_sys_177: 0.0 - art_sys_178: -1.28180150e-10 - art_sys_179: 9.39806095e-12 - art_sys_180: 1.02425485e-16 - art_sys_181: -5.69936994e-25 - art_sys_182: 0.0 - art_sys_183: -1.35352380e-22 - art_sys_184: -2.80257969e-24 - art_sys_185: -1.65710718e-24 - art_sys_186: 0.0 - art_sys_187: 0.0 - art_sys_188: 0.0 - art_sys_189: 0.0 - art_sys_190: 0.0 - art_sys_191: 0.0 - art_sys_192: 0.0 - art_sys_193: 0.0 - art_sys_194: 0.0 - art_sys_195: 0.0 - art_sys_196: 0.0 - art_sys_197: 0.0 - art_sys_198: 0.0 - art_sys_199: 0.0 - art_sys_200: 0.0 - art_sys_201: 0.0 - art_sys_202: 0.0 - art_sys_203: 0.0 - art_sys_204: 0.0 - art_sys_205: 0.0 - art_sys_206: 0.0 - art_sys_207: 0.0 - art_sys_208: 0.0 - art_sys_209: 0.0 - art_sys_210: 0.0 - art_sys_211: 0.0 - art_sys_212: 0.0 - art_sys_213: 0.0 - art_sys_214: 0.0 - art_sys_215: 0.0 - art_sys_216: 0.0 - art_sys_217: 0.0 - art_sys_218: 0.0 - art_sys_219: 0.0 - art_sys_220: 0.0 - art_sys_221: 0.0 - art_sys_222: 0.0 - art_sys_223: 0.0 - art_sys_224: 0.0 - art_sys_225: 0.0 - art_sys_226: 0.0 - art_sys_227: 0.0 - art_sys_228: 0.0 - art_sys_229: 0.0 - art_sys_230: 0.0 - art_sys_231: 0.0 - art_sys_232: 0.0 - art_sys_233: 0.0 - art_sys_234: 0.0 - art_sys_235: 0.0 - art_sys_236: 0.0 - art_sys_237: 0.0 - art_sys_238: 0.0 - art_sys_239: 0.0 - Unfolding+: 1.47887802e-03 - Unfolding-: -1.64855517e-03 - AbsoluteStat+: 3.32913184e-04 - AbsoluteStat-: -6.81285023e-04 - AbsoluteScale+: 9.64693704e-04 - AbsoluteScale-: -1.36753890e-03 - AbsoluteMPFBias+: 8.92001218e-05 - AbsoluteMPFBias-: -3.12117612e-03 - Fragmentation+: -4.59710964e-04 - Fragmentation-: 1.81087105e-04 - SinglePionECAL+: 3.84626067e-04 - SinglePionECAL-: -4.68912545e-04 - SinglePionHCAL+: 8.68261140e-05 - SinglePionHCAL-: -1.09001923e-03 - FlavorQCD+: 1.81252734e-03 - FlavorQCD-: -1.75952623e-03 - RelativeJEREC1+: 1.01106967e-04 - RelativeJEREC1-: -9.52915681e-05 - RelativeJEREC2+: 0.0 - RelativeJEREC2-: 0.0 - RelativeJERHF+: 0.0 - RelativeJERHF-: 0.0 - RelativePtBB+: 2.15869080e-04 - RelativePtBB-: -2.87089313e-04 - RelativePtEC1+: 0.0 - RelativePtEC1-: -2.82672554e-05 - RelativePtEC2+: 0.0 - RelativePtEC2-: 0.0 - RelativePtHF+: 0.0 - RelativePtHF-: 0.0 - RelativeFSR+: 7.89679642e-04 - RelativeFSR-: -7.94096401e-04 - RelativeStatEC2+: 0.0 - RelativeStatEC2-: 0.0 - RelativeStatHF+: 0.0 - RelativeStatHF-: 0.0 - PileUpDataMC+: 8.89608807e-05 - PileUpDataMC-: -2.00226393e-04 - PileUpPtRef+: -2.33904177e-04 - PileUpPtRef-: 7.25084547e-05 - PileUpPtBB+: -1.38686222e-03 - PileUpPtBB-: 1.73725841e-04 - PileUpPtEC1+: -1.08339409e-04 - PileUpPtEC1-: 1.14964547e-04 - PileUpPtEC2+: 0.0 - PileUpPtEC2-: 0.0 - PileUpPtHF+: 0.0 - PileUpPtHF-: 0.0 - RelativeStatFSR+: 2.59484571e-04 - RelativeStatFSR-: -2.60956824e-04 - luminosity_uncertainty: 6.76676000e-03 - uncorrelated_uncertainty: 2.60260000e-03 -- art_sys_1: 0.0 - art_sys_2: 0.0 - art_sys_3: 0.0 - art_sys_4: 0.0 - art_sys_5: 0.0 - art_sys_6: 0.0 - art_sys_7: 0.0 - art_sys_8: 0.0 - art_sys_9: 0.0 - art_sys_10: 0.0 - art_sys_11: 0.0 - art_sys_12: 0.0 - art_sys_13: 0.0 - art_sys_14: 0.0 - art_sys_15: 0.0 - art_sys_16: 0.0 - art_sys_17: 0.0 - art_sys_18: 0.0 - art_sys_19: 0.0 - art_sys_20: 0.0 - art_sys_21: 0.0 - art_sys_22: 0.0 - art_sys_23: 0.0 - art_sys_24: 0.0 - art_sys_25: 0.0 - art_sys_26: 0.0 - art_sys_27: 0.0 - art_sys_28: 0.0 - art_sys_29: 0.0 - art_sys_30: 0.0 - art_sys_31: 0.0 - art_sys_32: 0.0 - art_sys_33: 0.0 - art_sys_34: 0.0 - art_sys_35: 0.0 - art_sys_36: 0.0 - art_sys_37: 0.0 - art_sys_38: 0.0 - art_sys_39: 0.0 - art_sys_40: 0.0 - art_sys_41: 0.0 - art_sys_42: 0.0 - art_sys_43: -4.78162824e-199 - art_sys_44: -7.83102740e-192 - art_sys_45: 4.15009388e-59 - art_sys_46: 2.50997619e-59 - art_sys_47: -3.53497265e-51 - art_sys_48: 4.96749393e-44 - art_sys_49: 3.83781071e-35 - art_sys_50: 4.50468470e-35 - art_sys_51: 3.73490735e-12 - art_sys_52: -1.87768726e-11 - art_sys_53: 1.16345717e-30 - art_sys_54: 5.55228099e-32 - art_sys_55: -6.86639646e-32 - art_sys_56: -2.74435947e-33 - art_sys_57: -3.04004257e-33 - art_sys_58: 8.24223400e-33 - art_sys_59: -7.09997194e-12 - art_sys_60: -2.86618160e-10 - art_sys_61: 8.70284781e-10 - art_sys_62: 9.09601305e-09 - art_sys_63: -4.74935554e-09 - art_sys_64: 1.91505503e-27 - art_sys_65: 1.98117235e-08 - art_sys_66: -2.97435975e-07 - art_sys_67: -9.72435787e-07 - art_sys_68: -4.09512628e-25 - art_sys_69: -1.01052757e-24 - art_sys_70: -3.15747833e-24 - art_sys_71: 1.13925135e-24 - art_sys_72: 7.68421902e-24 - art_sys_73: 1.93338266e-24 - art_sys_74: -1.02687449e-24 - art_sys_75: 2.23147652e-06 - art_sys_76: -2.14553170e-07 - art_sys_77: 1.03667596e-05 - art_sys_78: -2.28616211e-23 - art_sys_79: -1.61498721e-22 - art_sys_80: -2.53627059e-05 - art_sys_81: -1.26647670e-05 - art_sys_82: -8.41642395e-05 - art_sys_83: -2.53648826e-21 - art_sys_84: 2.04098672e-21 - art_sys_85: 9.01652400e-25 - art_sys_86: 1.25548635e-21 - art_sys_87: 3.20613654e-22 - art_sys_88: -6.97502464e-05 - art_sys_89: -4.73760481e-22 - art_sys_90: -1.01202127e-21 - art_sys_91: -2.21513487e-21 - art_sys_92: -9.38059193e-22 - art_sys_93: 4.45287558e-22 - art_sys_94: -9.31639717e-22 - art_sys_95: 1.13472542e-21 - art_sys_96: 1.26856160e-20 - art_sys_97: 2.02901218e-21 - art_sys_98: -2.11470748e-20 - art_sys_99: -4.41109443e-20 - art_sys_100: -1.04139640e-04 - art_sys_101: -4.13735637e-04 - art_sys_102: 2.41741998e-20 - art_sys_103: -1.38927574e-20 - art_sys_104: 6.65510404e-21 - art_sys_105: -2.30412823e-20 - art_sys_106: 5.16333208e-21 - art_sys_107: -7.89191448e-21 - art_sys_108: 1.49193192e-20 - art_sys_109: 7.54249103e-21 - art_sys_110: 2.45647581e-21 - art_sys_111: -6.11324253e-17 - art_sys_112: -4.10215679e-21 - art_sys_113: 1.02667608e-21 - art_sys_114: -1.99649925e-21 - art_sys_115: -1.16571685e-20 - art_sys_116: -1.26048473e-21 - art_sys_117: -9.62010526e-23 - art_sys_118: -2.88463530e-21 - art_sys_119: -4.22410877e-18 - art_sys_120: 1.40588836e-17 - art_sys_121: -4.30042651e-18 - art_sys_122: 9.73964115e-18 - art_sys_123: -8.73877050e-20 - art_sys_124: -8.04621544e-16 - art_sys_125: -2.29755423e-20 - art_sys_126: -2.14040698e-15 - art_sys_127: 3.06216360e-17 - art_sys_128: 6.86442819e-14 - art_sys_129: -1.74752947e-13 - art_sys_130: -4.35028713e-14 - art_sys_131: -1.11023043e-13 - art_sys_132: -2.35765620e-15 - art_sys_133: -4.44362976e-13 - art_sys_134: 5.81665143e-11 - art_sys_135: -1.54893601e-05 - art_sys_136: 1.61534714e-05 - art_sys_137: 4.62550032e-05 - art_sys_138: 3.70630428e-05 - art_sys_139: -1.07468957e-05 - art_sys_140: -2.22856489e-05 - art_sys_141: -6.31692181e-07 - art_sys_142: -4.79342923e-06 - art_sys_143: -1.76483609e-06 - art_sys_144: 6.65122715e-15 - art_sys_145: -9.76299929e-15 - art_sys_146: 3.32215046e-15 - art_sys_147: 1.56631862e-16 - art_sys_148: -5.48704538e-16 - art_sys_149: 5.51200717e-17 - art_sys_150: 9.84742976e-17 - art_sys_151: -1.22570953e-17 - art_sys_152: -4.00846238e-18 - art_sys_153: -9.72671618e-18 - art_sys_154: -7.71055093e-19 - art_sys_155: 2.16532451e-18 - art_sys_156: 1.79947926e-18 - art_sys_157: 3.15115599e-19 - art_sys_158: -2.32617237e-19 - art_sys_159: 8.11484050e-20 - art_sys_160: -4.04022414e-20 - art_sys_161: -2.44182518e-21 - art_sys_162: 9.54683571e-22 - art_sys_163: 4.18302828e-21 - art_sys_164: -6.48554688e-22 - art_sys_165: 4.46486276e-21 - art_sys_166: 6.97087653e-22 - art_sys_167: 5.98819532e-22 - art_sys_168: 2.14845975e-07 - art_sys_169: -1.21361267e-22 - art_sys_170: -7.22165830e-08 - art_sys_171: 2.28685674e-08 - art_sys_172: -1.47500283e-23 - art_sys_173: -1.73475491e-23 - art_sys_174: -6.67245885e-09 - art_sys_175: 0.0 - art_sys_176: -1.80486572e-09 - art_sys_177: 0.0 - art_sys_178: 2.19120128e-10 - art_sys_179: -1.60708176e-11 - art_sys_180: -1.75172037e-16 - art_sys_181: 9.74329260e-25 - art_sys_182: 0.0 - art_sys_183: 2.31076602e-22 - art_sys_184: 4.76436437e-24 - art_sys_185: 2.83304189e-24 + art_sys_43: 4.41223712e-184 + art_sys_44: -2.70257261e-176 + art_sys_45: 1.78781898e-49 + art_sys_46: -1.08704578e-45 + art_sys_47: 2.69349167e-40 + art_sys_48: -3.13068622e-32 + art_sys_49: 3.97280847e-11 + art_sys_50: 1.82872138e-10 + art_sys_51: 7.44974278e-11 + art_sys_52: 2.74757708e-09 + art_sys_53: -1.29677462e-08 + art_sys_54: 8.27378828e-08 + art_sys_55: 7.17621619e-27 + art_sys_56: -6.87305615e-26 + art_sys_57: -3.57224584e-27 + art_sys_58: -8.09328000e-08 + art_sys_59: -4.75944715e-08 + art_sys_60: -3.17696348e-26 + art_sys_61: -1.70267924e-27 + art_sys_62: -1.23033824e-25 + art_sys_63: 1.58885575e-25 + art_sys_64: -1.03838391e-25 + art_sys_65: 1.98541534e-06 + art_sys_66: 4.60540502e-06 + art_sys_67: -3.51811803e-24 + art_sys_68: -1.93168215e-24 + art_sys_69: 2.09623399e-23 + art_sys_70: 1.56112285e-24 + art_sys_71: -2.92844687e-24 + art_sys_72: -6.29186359e-23 + art_sys_73: -1.16899057e-13 + art_sys_74: 3.14193536e-15 + art_sys_75: 9.53385129e-15 + art_sys_76: -5.58268033e-06 + art_sys_77: -3.04029022e-21 + art_sys_78: -8.73268985e-19 + art_sys_79: -2.39109826e-15 + art_sys_80: 2.37495904e-05 + art_sys_81: -5.52187917e-16 + art_sys_82: -5.89296124e-16 + art_sys_83: -5.46848577e-05 + art_sys_84: -3.29038905e-16 + art_sys_85: 6.81562224e-17 + art_sys_86: -3.65957876e-05 + art_sys_87: -4.99720550e-20 + art_sys_88: -2.15961586e-04 + art_sys_89: 2.78780939e-04 + art_sys_90: 7.38721271e-20 + art_sys_91: -3.16386765e-16 + art_sys_92: 5.10365640e-19 + art_sys_93: 1.53668354e-19 + art_sys_94: -1.48347523e-17 + art_sys_95: -7.43020472e-20 + art_sys_96: 5.50229471e-05 + art_sys_97: 1.44025470e-17 + art_sys_98: 5.93105538e-19 + art_sys_99: -3.18981883e-19 + art_sys_100: -2.59021237e-18 + art_sys_101: -8.58533976e-17 + art_sys_102: -4.58596720e-18 + art_sys_103: -2.15077068e-17 + art_sys_104: -8.23602009e-20 + art_sys_105: 1.59794745e-19 + art_sys_106: -4.20886844e-17 + art_sys_107: 4.57131436e-04 + art_sys_108: 1.07420329e-04 + art_sys_109: -6.30984391e-05 + art_sys_110: 2.37330627e-15 + art_sys_111: -1.29419594e-17 + art_sys_112: 3.37995881e-15 + art_sys_113: 7.96890605e-05 + art_sys_114: -1.45725854e-17 + art_sys_115: -8.23519534e-17 + art_sys_116: 1.76551546e-16 + art_sys_117: -2.78303644e-18 + art_sys_118: 2.37050948e-13 + art_sys_119: -1.26357739e-17 + art_sys_120: -9.74587951e-16 + art_sys_121: -1.80190644e-10 + art_sys_122: 1.58921273e-16 + art_sys_123: 1.24812005e-15 + art_sys_124: -8.03248671e-11 + art_sys_125: 4.14673141e-14 + art_sys_126: -2.97800790e-10 + art_sys_127: -1.22906288e-14 + art_sys_128: 5.04150600e-11 + art_sys_129: 7.27557456e-14 + art_sys_130: -1.06554928e-10 + art_sys_131: 3.29469142e-11 + art_sys_132: -1.31537291e-12 + art_sys_133: -6.17398309e-11 + art_sys_134: -1.28988455e-07 + art_sys_135: -1.10886160e-12 + art_sys_136: 6.08563890e-11 + art_sys_137: -4.29770428e-08 + art_sys_138: 6.83545449e-19 + art_sys_139: -4.25124125e-12 + art_sys_140: -1.54594197e-10 + art_sys_141: 2.62941282e-12 + art_sys_142: -1.90118187e-10 + art_sys_143: 1.33006929e-08 + art_sys_144: -3.74290334e-09 + art_sys_145: -1.03821675e-09 + art_sys_146: -0.0 + art_sys_147: -1.65468648e-10 + art_sys_148: 3.83559595e-11 + art_sys_149: 3.83559595e-11 + art_sys_150: -1.28751943e-11 + art_sys_151: -1.28751943e-11 + art_sys_152: 6.21628760e-12 + art_sys_153: -3.88988420e-11 + art_sys_154: 1.31741864e-11 + art_sys_155: -5.24847668e-23 + art_sys_156: -4.07380395e-26 + art_sys_157: -4.85077706e-26 + art_sys_158: -0.0 + art_sys_159: 5.76907347e-05 + art_sys_160: -3.47517209e-05 + art_sys_161: 1.74447295e-05 + art_sys_162: 7.57058999e-06 + art_sys_163: -3.15441861e-06 + art_sys_164: 1.11109165e-06 + art_sys_165: -3.86152534e-07 + art_sys_166: 1.09407801e-17 + art_sys_167: -4.62821912e-18 + art_sys_168: -9.54508032e-18 + art_sys_169: 2.36757021e-18 + art_sys_170: -1.00732020e-18 + art_sys_171: 1.08209497e-18 + art_sys_172: 2.23977015e-19 + art_sys_173: -9.21554349e-20 + art_sys_174: -7.95950055e-20 + art_sys_175: 3.16538048e-22 + art_sys_176: -3.93773241e-21 + art_sys_177: 9.00024244e-22 + art_sys_178: 2.72629130e-21 + art_sys_179: -1.45551077e-22 + art_sys_180: 8.56465737e-22 + art_sys_181: 9.88755206e-23 + art_sys_182: 3.40146540e-22 + art_sys_183: -2.01801780e-23 + art_sys_184: 2.81281682e-23 + art_sys_185: -6.43104061e-24 + art_sys_186: 0.0 + art_sys_187: 0.0 + art_sys_188: 0.0 + art_sys_189: 0.0 + art_sys_190: 0.0 + art_sys_191: 0.0 + art_sys_192: 0.0 + art_sys_193: 0.0 + art_sys_194: 0.0 + art_sys_195: 0.0 + art_sys_196: 0.0 + art_sys_197: 0.0 + art_sys_198: 0.0 + art_sys_199: 0.0 + art_sys_200: 0.0 + art_sys_201: 0.0 + art_sys_202: 0.0 + art_sys_203: 0.0 + art_sys_204: 0.0 + art_sys_205: 0.0 + art_sys_206: 0.0 + art_sys_207: 0.0 + art_sys_208: 0.0 + art_sys_209: 0.0 + art_sys_210: 0.0 + art_sys_211: 0.0 + art_sys_212: 0.0 + art_sys_213: 0.0 + art_sys_214: 0.0 + art_sys_215: 0.0 + art_sys_216: 0.0 + art_sys_217: 0.0 + art_sys_218: 0.0 + art_sys_219: 0.0 + art_sys_220: 0.0 + art_sys_221: 0.0 + art_sys_222: 0.0 + art_sys_223: 0.0 + art_sys_224: 0.0 + art_sys_225: 0.0 + art_sys_226: 0.0 + art_sys_227: 0.0 + art_sys_228: 0.0 + art_sys_229: 0.0 + art_sys_230: 0.0 + art_sys_231: 0.0 + art_sys_232: 0.0 + art_sys_233: 0.0 + art_sys_234: 0.0 + art_sys_235: 0.0 + art_sys_236: 0.0 + art_sys_237: 0.0 + art_sys_238: 0.0 + art_sys_239: 0.0 + Unfolding+: 1.47887802e-03 + Unfolding-: -1.64855517e-03 + AbsoluteStat+: 3.32913184e-04 + AbsoluteStat-: -6.81285023e-04 + AbsoluteScale+: 9.64693704e-04 + AbsoluteScale-: -1.36753890e-03 + AbsoluteMPFBias+: 8.92001218e-05 + AbsoluteMPFBias-: -3.12117612e-03 + Fragmentation+: -4.59710964e-04 + Fragmentation-: 1.81087105e-04 + SinglePionECAL+: 3.84626067e-04 + SinglePionECAL-: -4.68912545e-04 + SinglePionHCAL+: 8.68261140e-05 + SinglePionHCAL-: -1.09001923e-03 + FlavorQCD+: 1.81252734e-03 + FlavorQCD-: -1.75952623e-03 + RelativeJEREC1+: 1.01106967e-04 + RelativeJEREC1-: -9.52915681e-05 + RelativeJEREC2+: 0.0 + RelativeJEREC2-: 0.0 + RelativeJERHF+: 0.0 + RelativeJERHF-: 0.0 + RelativePtBB+: 2.15869080e-04 + RelativePtBB-: -2.87089313e-04 + RelativePtEC1+: 0.0 + RelativePtEC1-: -2.82672554e-05 + RelativePtEC2+: 0.0 + RelativePtEC2-: 0.0 + RelativePtHF+: 0.0 + RelativePtHF-: 0.0 + RelativeFSR+: 7.89679642e-04 + RelativeFSR-: -7.94096401e-04 + RelativeStatEC2+: 0.0 + RelativeStatEC2-: 0.0 + RelativeStatHF+: 0.0 + RelativeStatHF-: 0.0 + PileUpDataMC+: 8.89608807e-05 + PileUpDataMC-: -2.00226393e-04 + PileUpPtRef+: -2.33904177e-04 + PileUpPtRef-: 7.25084547e-05 + PileUpPtBB+: -1.38686222e-03 + PileUpPtBB-: 1.73725841e-04 + PileUpPtEC1+: -1.08339409e-04 + PileUpPtEC1-: 1.14964547e-04 + PileUpPtEC2+: 0.0 + PileUpPtEC2-: 0.0 + PileUpPtHF+: 0.0 + PileUpPtHF-: 0.0 + RelativeStatFSR+: 2.59484571e-04 + RelativeStatFSR-: -2.60956824e-04 + luminosity_uncertainty: 6.76676000e-03 + uncorrelated_uncertainty: 2.60260000e-03 +- art_sys_1: 0.0 + art_sys_2: 0.0 + art_sys_3: 0.0 + art_sys_4: 0.0 + art_sys_5: 0.0 + art_sys_6: 0.0 + art_sys_7: 0.0 + art_sys_8: 0.0 + art_sys_9: 0.0 + art_sys_10: 0.0 + art_sys_11: 0.0 + art_sys_12: 0.0 + art_sys_13: 0.0 + art_sys_14: 0.0 + art_sys_15: 0.0 + art_sys_16: 0.0 + art_sys_17: 0.0 + art_sys_18: 0.0 + art_sys_19: 0.0 + art_sys_20: 0.0 + art_sys_21: 0.0 + art_sys_22: 0.0 + art_sys_23: 0.0 + art_sys_24: 0.0 + art_sys_25: 0.0 + art_sys_26: 0.0 + art_sys_27: 0.0 + art_sys_28: 0.0 + art_sys_29: 0.0 + art_sys_30: 0.0 + art_sys_31: 0.0 + art_sys_32: 0.0 + art_sys_33: 0.0 + art_sys_34: 0.0 + art_sys_35: 0.0 + art_sys_36: 0.0 + art_sys_37: 0.0 + art_sys_38: 0.0 + art_sys_39: 0.0 + art_sys_40: 0.0 + art_sys_41: 0.0 + art_sys_42: 0.0 + art_sys_43: 4.14802138e-185 + art_sys_44: -2.54073584e-177 + art_sys_45: 1.68076018e-50 + art_sys_46: -1.02195092e-46 + art_sys_47: 2.53219905e-41 + art_sys_48: -2.94321337e-33 + art_sys_49: 3.73490735e-12 + art_sys_50: 1.87768726e-11 + art_sys_51: 7.09997194e-12 + art_sys_52: 2.86618160e-10 + art_sys_53: -8.70284781e-10 + art_sys_54: 9.09601305e-09 + art_sys_55: 7.30816447e-29 + art_sys_56: -9.59597205e-28 + art_sys_57: -1.39946979e-28 + art_sys_58: -4.74935554e-09 + art_sys_59: -1.98117235e-08 + art_sys_60: -2.32272948e-26 + art_sys_61: 8.10764635e-27 + art_sys_62: -2.65773707e-26 + art_sys_63: 3.92652725e-26 + art_sys_64: -3.12607346e-26 + art_sys_65: 2.97435975e-07 + art_sys_66: 9.72435787e-07 + art_sys_67: -5.30738853e-25 + art_sys_68: -6.07739747e-25 + art_sys_69: 4.20901137e-24 + art_sys_70: -1.08068729e-25 + art_sys_71: -3.65776670e-25 + art_sys_72: -2.41205349e-23 + art_sys_73: 1.23490787e-14 + art_sys_74: 4.56962644e-15 + art_sys_75: -2.39776080e-14 + art_sys_76: -2.23147652e-06 + art_sys_77: -1.21615129e-21 + art_sys_78: -3.49056029e-19 + art_sys_79: 9.80628835e-17 + art_sys_80: -2.14553170e-07 + art_sys_81: 8.08310017e-16 + art_sys_82: 2.55520311e-16 + art_sys_83: -1.03667596e-05 + art_sys_84: -2.41030479e-16 + art_sys_85: 8.38785826e-17 + art_sys_86: -2.53627059e-05 + art_sys_87: -9.34848430e-21 + art_sys_88: -1.26647670e-05 + art_sys_89: 8.41642395e-05 + art_sys_90: 5.67759018e-21 + art_sys_91: 2.41676193e-18 + art_sys_92: -1.10271422e-21 + art_sys_93: -3.67301319e-21 + art_sys_94: -2.81163014e-18 + art_sys_95: -1.71748727e-21 + art_sys_96: 6.97502467e-05 + art_sys_97: 2.73014644e-18 + art_sys_98: 1.46652456e-19 + art_sys_99: -4.76446328e-20 + art_sys_100: -5.64303172e-19 + art_sys_101: 7.66647909e-19 + art_sys_102: 3.99297908e-20 + art_sys_103: -1.49337782e-17 + art_sys_104: -1.09011346e-20 + art_sys_105: -4.18582237e-20 + art_sys_106: -7.96582533e-18 + art_sys_107: 1.04139179e-04 + art_sys_108: 4.13735675e-04 + art_sys_109: -1.54895086e-05 + art_sys_110: 1.61229710e-15 + art_sys_111: -2.45903213e-18 + art_sys_112: 2.51248668e-16 + art_sys_113: -1.61535094e-05 + art_sys_114: -2.68263806e-18 + art_sys_115: -2.14180535e-16 + art_sys_116: 5.14264512e-16 + art_sys_117: 7.80699134e-20 + art_sys_118: -5.48969553e-15 + art_sys_119: -2.08316015e-18 + art_sys_120: -1.27846159e-17 + art_sys_121: -2.89547276e-11 + art_sys_122: 2.84835377e-17 + art_sys_123: 1.00645684e-16 + art_sys_124: 6.22532416e-11 + art_sys_125: -4.87251418e-15 + art_sys_126: 2.15852639e-10 + art_sys_127: -1.53828762e-16 + art_sys_128: -4.13405781e-11 + art_sys_129: 9.76691996e-15 + art_sys_130: 1.25633254e-10 + art_sys_131: 5.63381541e-12 + art_sys_132: -2.33207179e-13 + art_sys_133: 7.66075978e-11 + art_sys_134: 2.15054467e-07 + art_sys_135: -1.25442472e-13 + art_sys_136: -6.43131691e-11 + art_sys_137: 7.24338338e-08 + art_sys_138: -6.25006767e-21 + art_sys_139: 1.59938455e-12 + art_sys_140: 2.40773204e-10 + art_sys_141: -3.43193392e-13 + art_sys_142: 2.89459548e-10 + art_sys_143: -2.25692390e-08 + art_sys_144: 6.37672212e-09 + art_sys_145: 1.77272884e-09 + art_sys_146: 0.0 + art_sys_147: 2.81341493e-10 + art_sys_148: -5.59850532e-11 + art_sys_149: -5.59850532e-11 + art_sys_150: 2.04778592e-11 + art_sys_151: 2.04778592e-11 + art_sys_152: -9.61951229e-12 + art_sys_153: 6.66004205e-11 + art_sys_154: -2.25035316e-11 + art_sys_155: 8.99887582e-23 + art_sys_156: 9.86882522e-26 + art_sys_157: 4.95191889e-26 + art_sys_158: 0.0 + art_sys_159: -4.62548935e-05 + art_sys_160: 3.70635253e-05 + art_sys_161: -2.22890341e-05 + art_sys_162: -1.07466953e-05 + art_sys_163: 4.79274138e-06 + art_sys_164: -1.76690022e-06 + art_sys_165: 6.32245775e-07 + art_sys_166: -1.84549641e-17 + art_sys_167: 7.94885546e-18 + art_sys_168: 1.62350711e-17 + art_sys_169: -4.02317660e-18 + art_sys_170: 1.71795205e-18 + art_sys_171: -1.84132255e-18 + art_sys_172: -3.33950854e-19 + art_sys_173: 1.47898973e-19 + art_sys_174: 1.33843134e-19 + art_sys_175: -5.40386087e-22 + art_sys_176: 7.62909835e-21 + art_sys_177: -6.76627242e-22 + art_sys_178: -4.62701023e-21 + art_sys_179: 2.57787967e-22 + art_sys_180: -1.02109298e-21 + art_sys_181: -1.70298279e-22 + art_sys_182: -5.16017962e-22 + art_sys_183: 3.59609758e-23 + art_sys_184: -4.84027008e-23 + art_sys_185: 1.10931445e-23 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -36656,149 +36656,149 @@ bins: art_sys_40: 0.0 art_sys_41: 0.0 art_sys_42: 0.0 - art_sys_43: -2.09523240e-200 - art_sys_44: -3.43142995e-193 - art_sys_45: 1.81857221e-60 - art_sys_46: 1.09987221e-60 - art_sys_47: -1.54902593e-52 - art_sys_48: 2.17675712e-45 - art_sys_49: 1.68172964e-36 - art_sys_50: 1.97395400e-36 - art_sys_51: 1.63663737e-13 - art_sys_52: -1.08903284e-12 - art_sys_53: 6.64265134e-32 - art_sys_54: 3.09931728e-33 - art_sys_55: -4.03472147e-33 - art_sys_56: -1.37237497e-34 - art_sys_57: -2.28572560e-34 - art_sys_58: 3.99755602e-34 - art_sys_59: -1.25469566e-12 - art_sys_60: -2.43125422e-11 - art_sys_61: 1.73873544e-11 - art_sys_62: 8.96794487e-10 - art_sys_63: -3.27223802e-10 - art_sys_64: 1.33937553e-28 - art_sys_65: 2.00122274e-09 - art_sys_66: -1.12711098e-08 - art_sys_67: -3.87396780e-08 - art_sys_68: -1.72664607e-26 - art_sys_69: -3.45003430e-26 - art_sys_70: -1.24887081e-25 - art_sys_71: 4.62288058e-26 - art_sys_72: 9.30166129e-25 - art_sys_73: 7.08232231e-26 - art_sys_74: -4.07644842e-26 - art_sys_75: 2.02808024e-07 - art_sys_76: -1.74445234e-06 - art_sys_77: -1.71311996e-06 - art_sys_78: 5.45996633e-24 - art_sys_79: -2.39033332e-23 - art_sys_80: -2.23340808e-06 - art_sys_81: 1.87565112e-05 - art_sys_82: 1.22526251e-05 - art_sys_83: 5.27841403e-22 - art_sys_84: -1.88986831e-22 - art_sys_85: 2.27919256e-22 - art_sys_86: -2.56269688e-22 - art_sys_87: -1.11519405e-22 - art_sys_88: -6.78926912e-06 - art_sys_89: -1.37684892e-22 - art_sys_90: -1.09854960e-22 - art_sys_91: -1.05832266e-22 - art_sys_92: 5.02952560e-23 - art_sys_93: -3.14270213e-23 - art_sys_94: -7.79688351e-23 - art_sys_95: -9.82883370e-24 - art_sys_96: 5.52847012e-21 - art_sys_97: -4.90620183e-21 - art_sys_98: -1.27899214e-21 - art_sys_99: -2.17495419e-20 - art_sys_100: 8.66233711e-05 - art_sys_101: -1.87157573e-04 - art_sys_102: 1.30966331e-20 - art_sys_103: -5.05621532e-21 - art_sys_104: 3.20050549e-21 - art_sys_105: -9.80502323e-21 - art_sys_106: 7.24457870e-22 - art_sys_107: -4.56520013e-21 - art_sys_108: -6.52478567e-21 - art_sys_109: 4.22723719e-21 - art_sys_110: 2.44736089e-21 - art_sys_111: 9.68166409e-17 - art_sys_112: -6.53580237e-21 - art_sys_113: -6.30974966e-21 - art_sys_114: 3.08479631e-21 - art_sys_115: -3.03356378e-20 - art_sys_116: 3.31649792e-21 - art_sys_117: 2.54289930e-24 - art_sys_118: 1.33916676e-21 - art_sys_119: -5.38764300e-18 - art_sys_120: -1.25995031e-17 - art_sys_121: 4.43506107e-18 - art_sys_122: -1.68801478e-17 - art_sys_123: 7.73555811e-20 - art_sys_124: 1.48837218e-15 - art_sys_125: 4.85360097e-20 - art_sys_126: 3.95518490e-15 - art_sys_127: -5.66402176e-17 - art_sys_128: -1.26910606e-13 - art_sys_129: 3.23086288e-13 - art_sys_130: 8.04289963e-14 - art_sys_131: 2.05261809e-13 - art_sys_132: 4.35888738e-15 - art_sys_133: 8.21548207e-13 - art_sys_134: -1.07539272e-10 - art_sys_135: 2.47212880e-04 - art_sys_136: 3.71716767e-05 - art_sys_137: -4.17775516e-06 - art_sys_138: -3.20164169e-05 - art_sys_139: 1.54427957e-05 - art_sys_140: 2.66910027e-05 - art_sys_141: 1.13580126e-06 - art_sys_142: 7.68264268e-06 - art_sys_143: 3.02956343e-06 - art_sys_144: -1.01542860e-15 - art_sys_145: 6.64736289e-15 - art_sys_146: -2.53398578e-15 - art_sys_147: -5.34912618e-16 - art_sys_148: 5.09448730e-16 - art_sys_149: -1.39497044e-17 - art_sys_150: -1.35556448e-16 - art_sys_151: 3.31336601e-17 - art_sys_152: 9.97697248e-19 - art_sys_153: 1.32382284e-17 - art_sys_154: 5.19229755e-19 - art_sys_155: -3.69935133e-19 - art_sys_156: -1.20823201e-18 - art_sys_157: 3.05142417e-19 - art_sys_158: 5.06792267e-20 - art_sys_159: 5.55327817e-21 - art_sys_160: 1.15072820e-19 - art_sys_161: 5.35365522e-21 - art_sys_162: -1.92834788e-21 - art_sys_163: -6.84744663e-21 - art_sys_164: -5.80002080e-21 - art_sys_165: -5.58565882e-21 - art_sys_166: -1.06836669e-21 - art_sys_167: 6.22737022e-22 - art_sys_168: -3.97274878e-07 - art_sys_169: 1.23371265e-22 - art_sys_170: 1.35869169e-07 - art_sys_171: -4.35142431e-08 - art_sys_172: -3.53921543e-22 - art_sys_173: 3.53199789e-23 - art_sys_174: 1.27738685e-08 - art_sys_175: 0.0 - art_sys_176: 3.46940249e-09 - art_sys_177: 0.0 - art_sys_178: -4.22002169e-10 - art_sys_179: 3.09752887e-11 - art_sys_180: 3.37682370e-16 - art_sys_181: -1.87698377e-24 - art_sys_182: 0.0 - art_sys_183: -4.44101508e-22 - art_sys_184: -9.08766912e-24 - art_sys_185: -5.45826585e-24 + art_sys_43: 1.81766301e-186 + art_sys_44: -1.11335047e-178 + art_sys_45: 7.36509543e-52 + art_sys_46: -4.47819158e-48 + art_sys_47: 1.10961028e-42 + art_sys_48: -1.28971686e-34 + art_sys_49: 1.63663737e-13 + art_sys_50: 1.08903284e-12 + art_sys_51: 1.25469566e-12 + art_sys_52: 2.43125422e-11 + art_sys_53: -1.73873544e-11 + art_sys_54: 8.96794487e-10 + art_sys_55: -8.12957942e-29 + art_sys_56: 1.63228162e-28 + art_sys_57: 1.72995820e-29 + art_sys_58: -3.27223802e-10 + art_sys_59: -2.00122274e-09 + art_sys_60: -2.38804072e-27 + art_sys_61: 8.42980597e-28 + art_sys_62: -2.56698530e-27 + art_sys_63: 3.93931069e-27 + art_sys_64: -3.08660533e-27 + art_sys_65: 1.12711098e-08 + art_sys_66: 3.87396780e-08 + art_sys_67: -1.45759134e-26 + art_sys_68: -2.46653265e-26 + art_sys_69: 1.64070661e-25 + art_sys_70: -6.39410924e-27 + art_sys_71: -1.40289212e-26 + art_sys_72: -2.14748326e-24 + art_sys_73: 2.13560748e-14 + art_sys_74: 2.98932697e-14 + art_sys_75: 7.63989708e-15 + art_sys_76: -2.02808024e-07 + art_sys_77: -1.10572229e-22 + art_sys_78: -3.17239273e-20 + art_sys_79: 2.03763706e-15 + art_sys_80: -1.74445234e-06 + art_sys_81: -1.41892317e-15 + art_sys_82: -3.35002940e-16 + art_sys_83: 1.71311996e-06 + art_sys_84: 7.87935969e-17 + art_sys_85: -1.05231999e-17 + art_sys_86: -2.23340809e-06 + art_sys_87: 1.60023442e-21 + art_sys_88: 1.87565112e-05 + art_sys_89: -1.22526251e-05 + art_sys_90: -3.96078988e-21 + art_sys_91: 2.31455954e-17 + art_sys_92: -3.71148513e-20 + art_sys_93: -1.16374823e-20 + art_sys_94: 4.64819748e-19 + art_sys_95: 5.04349036e-21 + art_sys_96: 6.78926915e-06 + art_sys_97: -4.51161431e-19 + art_sys_98: -1.14174453e-20 + art_sys_99: 1.26531635e-20 + art_sys_100: 6.77127563e-20 + art_sys_101: 6.30413495e-18 + art_sys_102: 3.36544140e-19 + art_sys_103: -1.32325749e-18 + art_sys_104: 9.17803644e-22 + art_sys_105: -2.85409119e-20 + art_sys_106: 1.33141826e-18 + art_sys_107: -8.66235043e-05 + art_sys_108: 1.87157692e-04 + art_sys_109: 2.47213324e-04 + art_sys_110: 1.37283286e-16 + art_sys_111: 3.97667074e-19 + art_sys_112: -2.84190745e-16 + art_sys_113: -3.71716616e-05 + art_sys_114: 4.80118839e-19 + art_sys_115: -2.90989795e-17 + art_sys_116: 1.02124925e-16 + art_sys_117: 2.49876355e-19 + art_sys_118: -6.76462874e-14 + art_sys_119: 7.89124860e-19 + art_sys_120: 9.19108278e-17 + art_sys_121: 4.13201544e-11 + art_sys_122: -9.43216463e-18 + art_sys_123: -1.21024593e-16 + art_sys_124: -2.23525507e-11 + art_sys_125: -1.39262936e-14 + art_sys_126: 5.56409589e-11 + art_sys_127: 3.76653966e-15 + art_sys_128: 6.63803425e-12 + art_sys_129: -1.95400915e-14 + art_sys_130: -1.35977450e-10 + art_sys_131: -9.98211052e-12 + art_sys_132: 4.18128495e-13 + art_sys_133: -9.10081287e-11 + art_sys_134: -3.97656959e-07 + art_sys_135: 4.29268639e-13 + art_sys_136: 5.45571153e-11 + art_sys_137: -1.36280418e-07 + art_sys_138: -5.01415468e-20 + art_sys_139: -1.07633077e-12 + art_sys_140: -4.01268612e-10 + art_sys_141: -3.60379378e-12 + art_sys_142: -4.66475867e-10 + art_sys_143: 4.29382941e-08 + art_sys_144: -1.22110477e-08 + art_sys_145: -3.40776571e-09 + art_sys_146: -0.0 + art_sys_147: -5.37721988e-10 + art_sys_148: 8.53383456e-11 + art_sys_149: 8.53383456e-11 + art_sys_150: -3.44392380e-11 + art_sys_151: -3.44392380e-11 + art_sys_152: 1.56741421e-11 + art_sys_153: -1.28379570e-10 + art_sys_154: 4.32936510e-11 + art_sys_155: -1.73664081e-22 + art_sys_156: -2.23039710e-25 + art_sys_157: -4.46187432e-26 + art_sys_158: -0.0 + art_sys_159: 4.17785481e-06 + art_sys_160: -3.20167991e-05 + art_sys_161: 2.66948316e-05 + art_sys_162: 1.54425510e-05 + art_sys_163: -7.68131139e-06 + art_sys_164: 3.03287194e-06 + art_sys_165: -1.13682577e-06 + art_sys_166: 3.48202367e-17 + art_sys_167: -1.54748193e-17 + art_sys_168: -3.10007206e-17 + art_sys_169: 7.68026211e-18 + art_sys_170: -3.23218983e-18 + art_sys_171: 3.51101067e-18 + art_sys_172: 5.84706773e-19 + art_sys_173: -2.69993399e-19 + art_sys_174: -2.52556262e-19 + art_sys_175: 1.03849447e-21 + art_sys_176: -1.48407417e-20 + art_sys_177: -2.52051395e-22 + art_sys_178: 8.84461295e-21 + art_sys_179: -5.77728195e-22 + art_sys_180: 7.31755323e-22 + art_sys_181: 3.52305899e-22 + art_sys_182: 7.96713560e-22 + art_sys_183: -7.40232278e-23 + art_sys_184: 9.42405829e-23 + art_sys_185: -2.16819858e-23 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -36947,149 +36947,149 @@ bins: art_sys_40: 0.0 art_sys_41: 0.0 art_sys_42: 0.0 - art_sys_43: 8.38956642e-202 - art_sys_44: 1.37398646e-194 - art_sys_45: -7.28092423e-62 - art_sys_46: -4.40350195e-62 - art_sys_47: 6.20175562e-54 - art_sys_48: -8.71497080e-47 - art_sys_49: -6.73305469e-38 - art_sys_50: -7.90301833e-38 - art_sys_51: -6.55252105e-15 - art_sys_52: 9.86402064e-15 - art_sys_53: -7.02424532e-34 - art_sys_54: -3.96504677e-35 - art_sys_55: 3.15369957e-35 - art_sys_56: 3.63172234e-36 - art_sys_57: -2.90877222e-36 - art_sys_58: -2.52502530e-35 - art_sys_59: -3.01274945e-13 - art_sys_60: -2.46897008e-12 - art_sys_61: 5.39384338e-12 - art_sys_62: 1.02621537e-10 - art_sys_63: -1.16533470e-10 - art_sys_64: 5.85322792e-29 - art_sys_65: -1.32340574e-10 - art_sys_66: 2.58232574e-09 - art_sys_67: 1.98914848e-08 - art_sys_68: 4.03431190e-27 - art_sys_69: -3.22596256e-27 - art_sys_70: 6.07175141e-26 - art_sys_71: -2.40741482e-26 - art_sys_72: -1.30906235e-25 - art_sys_73: -4.74928775e-26 - art_sys_74: 2.19719688e-26 - art_sys_75: -3.80519460e-08 - art_sys_76: -4.91989196e-07 - art_sys_77: -1.01696352e-06 - art_sys_78: 2.94217721e-24 - art_sys_79: 3.76019940e-24 - art_sys_80: 9.75064196e-07 - art_sys_81: 5.32752229e-06 - art_sys_82: 8.71977396e-06 - art_sys_83: 3.02394051e-22 - art_sys_84: -1.65897794e-22 - art_sys_85: 5.65839143e-23 - art_sys_86: -1.38643600e-22 - art_sys_87: -5.01578399e-23 - art_sys_88: 5.38539532e-06 - art_sys_89: 7.16464293e-24 - art_sys_90: 6.30417461e-23 - art_sys_91: 1.91160327e-22 - art_sys_92: 1.13164241e-22 - art_sys_93: -3.43814481e-23 - art_sys_94: 6.18095574e-23 - art_sys_95: -8.35101578e-23 - art_sys_96: -9.83534743e-22 - art_sys_97: -1.63018265e-21 - art_sys_98: 3.62536191e-21 - art_sys_99: 2.75608843e-21 - art_sys_100: 4.36629470e-05 - art_sys_101: 2.91408197e-05 - art_sys_102: -1.06945265e-21 - art_sys_103: 1.30770310e-21 - art_sys_104: -3.88843714e-22 - art_sys_105: 1.11988126e-21 - art_sys_106: -7.47897123e-22 - art_sys_107: 3.08006964e-22 - art_sys_108: -2.11675326e-20 - art_sys_109: -3.26884993e-22 - art_sys_110: 5.35381168e-22 - art_sys_111: -1.25482634e-16 - art_sys_112: -4.44976896e-21 - art_sys_113: -8.02244009e-22 - art_sys_114: 1.65196428e-21 - art_sys_115: -1.87298100e-20 - art_sys_116: 1.36013204e-21 - art_sys_117: 1.70051848e-23 - art_sys_118: 1.08599669e-21 - art_sys_119: 1.97485108e-17 - art_sys_120: 8.50566101e-18 - art_sys_121: -4.35620604e-18 - art_sys_122: 2.92658496e-17 - art_sys_123: -6.96222797e-20 - art_sys_124: -2.69517119e-15 - art_sys_125: -9.36091146e-20 - art_sys_126: -7.15239616e-15 - art_sys_127: 1.02531732e-16 - art_sys_128: 2.29710653e-13 - art_sys_129: -5.84794647e-13 - art_sys_130: -1.45579313e-13 - art_sys_131: -3.71531246e-13 - art_sys_132: -7.88974503e-15 - art_sys_133: -1.48703216e-12 - art_sys_134: 1.94649206e-10 - art_sys_135: 1.69615881e-04 - art_sys_136: -1.49782592e-04 - art_sys_137: -3.54577506e-05 - art_sys_138: 1.56602050e-06 - art_sys_139: -1.86791602e-05 - art_sys_140: -2.34230033e-05 - art_sys_141: -1.96877898e-06 - art_sys_142: -1.11714064e-05 - art_sys_143: -4.90550578e-06 - art_sys_144: -7.46233464e-15 - art_sys_145: -3.00884634e-15 - art_sys_146: 2.59065075e-15 - art_sys_147: 8.01759356e-16 - art_sys_148: -4.25146970e-16 - art_sys_149: -1.18879388e-17 - art_sys_150: 1.45508426e-16 - art_sys_151: -6.74112884e-17 - art_sys_152: 6.82347938e-18 - art_sys_153: -1.54225057e-17 - art_sys_154: 3.35565028e-18 - art_sys_155: -2.44417684e-18 - art_sys_156: 2.74303059e-20 - art_sys_157: -2.16665301e-19 - art_sys_158: 3.71173860e-19 - art_sys_159: -1.65614063e-19 - art_sys_160: -2.10579111e-19 - art_sys_161: -9.30323429e-21 - art_sys_162: 3.71062594e-21 - art_sys_163: 1.27444797e-20 - art_sys_164: 1.28679168e-20 - art_sys_165: 7.30281438e-21 - art_sys_166: 1.79606999e-21 - art_sys_167: -1.89623159e-21 - art_sys_168: 7.19254773e-07 - art_sys_169: -5.29546007e-23 - art_sys_170: -2.52449477e-07 - art_sys_171: 8.22841727e-08 - art_sys_172: 7.24496292e-22 - art_sys_173: -6.81730382e-23 - art_sys_174: -2.43902864e-08 - art_sys_175: 0.0 - art_sys_176: -6.66735794e-09 - art_sys_177: 0.0 - art_sys_178: 8.13626436e-10 - art_sys_179: -5.97900191e-11 - art_sys_180: -6.51969478e-16 - art_sys_181: 3.62002562e-24 - art_sys_182: 0.0 - art_sys_183: 8.53171466e-22 - art_sys_184: 1.72396989e-23 - art_sys_185: 1.05288833e-23 + art_sys_43: -7.27729712e-188 + art_sys_44: 4.45747210e-180 + art_sys_45: -2.94872547e-53 + art_sys_46: 1.79291058e-49 + art_sys_47: -4.44248973e-44 + art_sys_48: 5.16357321e-36 + art_sys_49: -6.55252105e-15 + art_sys_50: -9.86402064e-15 + art_sys_51: 3.01274945e-13 + art_sys_52: 2.46897008e-12 + art_sys_53: -5.39384338e-12 + art_sys_54: 1.02621537e-10 + art_sys_55: -4.97818381e-30 + art_sys_56: -1.02269274e-28 + art_sys_57: 4.26084734e-31 + art_sys_58: -1.16533470e-10 + art_sys_59: 1.32340574e-10 + art_sys_60: 2.09670962e-28 + art_sys_61: -1.05986752e-28 + art_sys_62: 4.87721568e-29 + art_sys_63: -9.16442013e-29 + art_sys_64: 1.51189641e-28 + art_sys_65: -2.58232574e-09 + art_sys_66: -1.98914848e-08 + art_sys_67: 2.20649728e-27 + art_sys_68: 1.80435492e-26 + art_sys_69: -8.08859878e-26 + art_sys_70: 1.47882382e-26 + art_sys_71: -8.83702321e-29 + art_sys_72: 4.10343387e-25 + art_sys_73: 4.73233639e-14 + art_sys_74: 4.86157028e-14 + art_sys_75: -2.09670263e-14 + art_sys_76: 3.80519460e-08 + art_sys_77: 2.07380970e-23 + art_sys_78: 5.95222974e-21 + art_sys_79: -1.53955658e-15 + art_sys_80: -4.91989196e-07 + art_sys_81: 1.10767001e-15 + art_sys_82: -5.32732620e-16 + art_sys_83: 1.01696352e-06 + art_sys_84: 8.77384129e-16 + art_sys_85: -1.09011880e-16 + art_sys_86: 9.75064197e-07 + art_sys_87: 9.58193188e-22 + art_sys_88: 5.32752229e-06 + art_sys_89: -8.71977396e-06 + art_sys_90: -1.41527121e-21 + art_sys_91: 6.54948668e-18 + art_sys_92: -1.06600801e-20 + art_sys_93: -3.15498965e-21 + art_sys_94: 2.75861663e-19 + art_sys_95: 1.59141719e-21 + art_sys_96: -5.38539535e-06 + art_sys_97: -2.67835499e-19 + art_sys_98: -1.08623200e-20 + art_sys_99: 5.99947177e-21 + art_sys_100: 4.93619686e-20 + art_sys_101: 1.77829334e-18 + art_sys_102: 9.49924735e-20 + art_sys_103: 5.71080262e-19 + art_sys_104: -1.32087036e-21 + art_sys_105: 5.98167144e-22 + art_sys_106: 7.91770890e-19 + art_sys_107: -4.36628927e-05 + art_sys_108: -2.91407347e-05 + art_sys_109: 1.69616224e-04 + art_sys_110: -6.31332240e-17 + art_sys_111: 2.38559988e-19 + art_sys_112: -8.48223962e-17 + art_sys_113: 1.49782619e-04 + art_sys_114: 2.49478032e-19 + art_sys_115: 1.56415357e-17 + art_sys_116: -5.92908571e-18 + art_sys_117: 5.89518329e-20 + art_sys_118: -2.19889111e-14 + art_sys_119: 3.17741392e-19 + art_sys_120: 2.25935295e-17 + art_sys_121: 1.71267375e-11 + art_sys_122: -4.02159723e-18 + art_sys_123: -3.83789944e-17 + art_sys_124: -9.58953204e-11 + art_sys_125: -4.46724334e-15 + art_sys_126: -2.28577023e-10 + art_sys_127: 1.40319464e-15 + art_sys_128: 7.04189532e-11 + art_sys_129: -9.48120346e-15 + art_sys_130: 6.86325646e-11 + art_sys_131: -4.59234075e-12 + art_sys_132: 1.95335138e-13 + art_sys_133: 8.26663881e-11 + art_sys_134: 7.19936981e-07 + art_sys_135: 2.93957226e-13 + art_sys_136: -1.48015359e-11 + art_sys_137: 2.53220996e-07 + art_sys_138: -1.48985544e-20 + art_sys_139: 7.33280430e-12 + art_sys_140: 6.30391656e-10 + art_sys_141: 1.70504976e-11 + art_sys_142: 6.77630177e-10 + art_sys_143: -8.11757786e-08 + art_sys_144: 2.33257489e-08 + art_sys_145: 6.54940961e-09 + art_sys_146: 0.0 + art_sys_147: 1.02714178e-09 + art_sys_148: -1.32765405e-10 + art_sys_149: -1.32765405e-10 + art_sys_150: 5.11268901e-11 + art_sys_151: 5.11268901e-11 + art_sys_152: -2.42144432e-11 + art_sys_153: 2.46800069e-10 + art_sys_154: -8.33292539e-11 + art_sys_155: 3.29665919e-22 + art_sys_156: 3.71157628e-25 + art_sys_157: 1.70300173e-25 + art_sys_158: 0.0 + art_sys_159: 3.54575515e-05 + art_sys_160: 1.56600500e-06 + art_sys_161: -2.34259140e-05 + art_sys_162: -1.86789348e-05 + art_sys_163: 1.11689011e-05 + art_sys_164: -4.91031737e-06 + art_sys_165: 1.97063578e-06 + art_sys_166: -6.51524153e-17 + art_sys_167: 3.03640269e-17 + art_sys_168: 5.89174743e-17 + art_sys_169: -1.45768216e-17 + art_sys_170: 6.24979515e-18 + art_sys_171: -6.65669060e-18 + art_sys_172: -1.00770268e-18 + art_sys_173: 4.92296090e-19 + art_sys_174: 4.78269724e-19 + art_sys_175: -1.99500854e-21 + art_sys_176: 2.63204280e-20 + art_sys_177: 2.83290772e-21 + art_sys_178: -1.65516117e-20 + art_sys_179: 8.78514872e-22 + art_sys_180: -1.86187941e-21 + art_sys_181: -6.88009542e-22 + art_sys_182: -9.88605651e-22 + art_sys_183: 1.56247738e-22 + art_sys_184: -1.84681015e-22 + art_sys_185: 4.27371386e-23 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -37238,149 +37238,149 @@ bins: art_sys_40: 0.0 art_sys_41: 0.0 art_sys_42: 0.0 - art_sys_43: 2.83568544e-202 - art_sys_44: 4.64409387e-195 - art_sys_45: -2.46121762e-62 - art_sys_46: -1.48854407e-62 - art_sys_47: 2.09641931e-54 - art_sys_48: -2.94597759e-47 - art_sys_49: -2.27601775e-38 - art_sys_50: -2.67150808e-38 - art_sys_51: -2.21499081e-15 - art_sys_52: 1.33157173e-14 - art_sys_53: -8.16453916e-34 - art_sys_54: -3.83840366e-35 - art_sys_55: 4.91217246e-35 - art_sys_56: 1.76302229e-36 - art_sys_57: 2.57702621e-36 - art_sys_58: -9.36248290e-36 - art_sys_59: -5.65367001e-14 - art_sys_60: -3.05109246e-13 - art_sys_61: 2.46858353e-12 - art_sys_62: 1.05130764e-11 - art_sys_63: -2.63616333e-11 - art_sys_64: 1.37098451e-29 - art_sys_65: -7.06652002e-11 - art_sys_66: 3.31832410e-10 - art_sys_67: 4.93151385e-09 - art_sys_68: 7.04506927e-28 - art_sys_69: -2.98791893e-27 - art_sys_70: 1.46930081e-26 - art_sys_71: -6.07312474e-27 - art_sys_72: -5.79992386e-26 - art_sys_73: -1.46188582e-26 - art_sys_74: 5.51724036e-27 - art_sys_75: -1.38698670e-08 - art_sys_76: -6.98739637e-08 - art_sys_77: -1.92571106e-07 - art_sys_78: 5.24932741e-25 - art_sys_79: 2.08145206e-24 - art_sys_80: 3.62393194e-07 - art_sys_81: 1.63998589e-07 - art_sys_82: 1.27930564e-06 - art_sys_83: 3.92553215e-23 - art_sys_84: -3.23017900e-23 - art_sys_85: -1.66173509e-25 - art_sys_86: -1.83753073e-23 - art_sys_87: -4.88660158e-24 - art_sys_88: 1.83953405e-06 - art_sys_89: 1.02728419e-23 - art_sys_90: 2.26060633e-23 - art_sys_91: 5.58727854e-23 - art_sys_92: 2.24333045e-23 - art_sys_93: -7.12797443e-24 - art_sys_94: 2.04824928e-23 - art_sys_95: -2.48828296e-23 - art_sys_96: -1.23771478e-21 - art_sys_97: 3.74263911e-22 - art_sys_98: 1.24995049e-21 - art_sys_99: 4.51496475e-21 - art_sys_100: -2.16480620e-06 - art_sys_101: 4.03493315e-05 - art_sys_102: -2.53491915e-21 - art_sys_103: 1.22984528e-21 - art_sys_104: -6.57018648e-22 - art_sys_105: 1.92653121e-21 - art_sys_106: -3.36096058e-22 - art_sys_107: 9.54768188e-22 - art_sys_108: 1.21636628e-20 - art_sys_109: -8.20619993e-22 - art_sys_110: -1.86931938e-22 - art_sys_111: 1.20648784e-16 - art_sys_112: -2.07823941e-21 - art_sys_113: -6.86200167e-22 - art_sys_114: -4.11640424e-22 - art_sys_115: -7.17326672e-21 - art_sys_116: -6.49263720e-22 - art_sys_117: 7.39748406e-24 - art_sys_118: -5.64467786e-22 - art_sys_119: -3.56927575e-17 - art_sys_120: -5.66683561e-19 - art_sys_121: 3.75791398e-18 - art_sys_122: -4.95168015e-17 - art_sys_123: 6.06024446e-20 - art_sys_124: 4.67930738e-15 - art_sys_125: 1.70239311e-19 - art_sys_126: 1.23918057e-14 - art_sys_127: -1.77940888e-16 - art_sys_128: -3.98614763e-13 - art_sys_129: 1.01479686e-12 - art_sys_130: 2.52626956e-13 - art_sys_131: 6.44726494e-13 - art_sys_132: 1.36912565e-14 - art_sys_133: 2.58048097e-12 - art_sys_134: -3.37776891e-10 - art_sys_135: 3.20903879e-06 - art_sys_136: -1.35626697e-04 - art_sys_137: 9.46289559e-05 - art_sys_138: 2.53220559e-05 - art_sys_139: 1.66283446e-05 - art_sys_140: 2.55185924e-06 - art_sys_141: 3.20457935e-06 - art_sys_142: 1.36520813e-05 - art_sys_143: 7.17570261e-06 - art_sys_144: 1.91470444e-14 - art_sys_145: -6.88061613e-15 - art_sys_146: 5.30070699e-16 - art_sys_147: -6.36839833e-16 - art_sys_148: 1.05149101e-16 - art_sys_149: 1.31844907e-16 - art_sys_150: -2.05647256e-16 - art_sys_151: 1.23191756e-16 - art_sys_152: -2.52552593e-17 - art_sys_153: 5.44609383e-18 - art_sys_154: -1.07780026e-17 - art_sys_155: 7.48724869e-18 - art_sys_156: 2.23950561e-18 - art_sys_157: 2.16155262e-19 - art_sys_158: -1.15071273e-18 - art_sys_159: 4.52962856e-19 - art_sys_160: 2.99226735e-19 - art_sys_161: 1.49038682e-20 - art_sys_162: -7.30714536e-21 - art_sys_163: -2.37366875e-20 - art_sys_164: -2.68276056e-20 - art_sys_165: -9.95528808e-21 - art_sys_166: -3.23329789e-21 - art_sys_167: 3.40331842e-21 - art_sys_168: -1.24860883e-06 - art_sys_169: -7.07047897e-23 - art_sys_170: 4.56505519e-07 - art_sys_171: -1.52823500e-07 - art_sys_172: -8.07478664e-22 - art_sys_173: 1.28717292e-22 - art_sys_174: 4.60002429e-08 - art_sys_175: 0.0 - art_sys_176: 1.27070902e-08 - art_sys_177: 0.0 - art_sys_178: -1.55896020e-09 - art_sys_179: 1.14772753e-10 - art_sys_180: 1.25235387e-15 - art_sys_181: -6.93987479e-24 - art_sys_182: 0.0 - art_sys_183: -1.62513607e-21 - art_sys_184: -3.21545609e-23 - art_sys_185: -2.01896985e-23 + art_sys_43: -2.45998768e-188 + art_sys_44: 1.50678559e-180 + art_sys_45: -9.96776622e-54 + art_sys_46: 6.06069089e-50 + art_sys_47: -1.50172336e-44 + art_sys_48: 1.74547584e-36 + art_sys_49: -2.21499081e-15 + art_sys_50: -1.33157173e-14 + art_sys_51: 5.65367001e-14 + art_sys_52: 3.05109246e-13 + art_sys_53: -2.46858353e-12 + art_sys_54: 1.05130764e-11 + art_sys_55: 1.95828433e-30 + art_sys_56: -3.34055354e-29 + art_sys_57: -8.29050910e-31 + art_sys_58: -2.63616333e-11 + art_sys_59: 7.06652002e-11 + art_sys_60: 9.83020649e-29 + art_sys_61: -4.30821845e-29 + art_sys_62: 5.78335144e-29 + art_sys_63: -9.53398147e-29 + art_sys_64: 9.42728066e-29 + art_sys_65: -3.31832410e-10 + art_sys_66: -4.93151385e-09 + art_sys_67: -3.37082501e-28 + art_sys_68: 4.83262652e-27 + art_sys_69: -1.94490006e-26 + art_sys_70: 4.77451733e-27 + art_sys_71: -6.53531768e-28 + art_sys_72: 1.47622823e-25 + art_sys_73: -9.02412127e-14 + art_sys_74: 2.29568724e-14 + art_sys_75: 2.52528003e-15 + art_sys_76: 1.38698670e-08 + art_sys_77: 7.56087031e-24 + art_sys_78: 2.16957194e-21 + art_sys_79: 3.05933227e-15 + art_sys_80: -6.98739637e-08 + art_sys_81: 4.10495549e-17 + art_sys_82: 1.48658743e-15 + art_sys_83: 1.92571106e-07 + art_sys_84: -9.80781123e-17 + art_sys_85: 6.25437689e-16 + art_sys_86: 3.62393194e-07 + art_sys_87: 1.73622390e-22 + art_sys_88: 1.63998589e-07 + art_sys_89: -1.27930564e-06 + art_sys_90: -2.32160445e-22 + art_sys_91: 9.32141979e-19 + art_sys_92: -1.51109371e-21 + art_sys_93: -4.41674371e-22 + art_sys_94: 5.22340794e-20 + art_sys_95: 2.41463769e-22 + art_sys_96: -1.83953406e-06 + art_sys_97: -5.07226661e-20 + art_sys_98: -2.25019044e-21 + art_sys_99: 1.06633901e-21 + art_sys_100: 1.00560569e-20 + art_sys_101: 2.52572835e-19 + art_sys_102: 1.34975350e-20 + art_sys_103: 2.13612857e-19 + art_sys_104: -2.01835023e-22 + art_sys_105: 3.39361346e-21 + art_sys_106: 1.48648294e-19 + art_sys_107: 2.16484457e-06 + art_sys_108: -4.03493298e-05 + art_sys_109: 3.20905176e-06 + art_sys_110: -2.30386921e-17 + art_sys_111: 4.64762814e-20 + art_sys_112: -3.40566584e-18 + art_sys_113: 1.35626611e-04 + art_sys_114: 3.10357799e-20 + art_sys_115: 6.01457720e-18 + art_sys_116: -7.39825129e-18 + art_sys_117: 3.79290862e-21 + art_sys_118: 4.57384134e-15 + art_sys_119: 2.91712832e-20 + art_sys_120: 4.33482765e-20 + art_sys_121: -2.12117229e-12 + art_sys_122: -3.96138865e-19 + art_sys_123: 2.20261762e-18 + art_sys_124: 1.02595378e-10 + art_sys_125: 1.02757112e-15 + art_sys_126: 5.66995830e-10 + art_sys_127: -2.28415639e-16 + art_sys_128: -1.23014688e-10 + art_sys_129: 9.60814664e-16 + art_sys_130: 7.14157046e-12 + art_sys_131: 4.59022665e-13 + art_sys_132: -1.84076231e-14 + art_sys_133: -2.88391273e-11 + art_sys_134: -1.24976620e-06 + art_sys_135: -3.56392196e-15 + art_sys_136: -2.83523915e-11 + art_sys_137: -4.57921489e-07 + art_sys_138: -1.48621621e-21 + art_sys_139: -7.76416427e-12 + art_sys_140: -8.52019337e-10 + art_sys_141: -4.80077545e-12 + art_sys_142: -8.49740820e-10 + art_sys_143: 1.50707793e-07 + art_sys_144: -4.40224851e-08 + art_sys_145: -1.24840549e-08 + art_sys_146: -0.0 + art_sys_147: -1.93980516e-09 + art_sys_148: 1.56886132e-10 + art_sys_149: 1.56886132e-10 + art_sys_150: -6.37302070e-11 + art_sys_151: -6.37302070e-11 + art_sys_152: 3.30038004e-11 + art_sys_153: -4.70157561e-10 + art_sys_154: 1.59248817e-10 + art_sys_155: -6.27725326e-22 + art_sys_156: -5.34377179e-25 + art_sys_157: -2.62749369e-25 + art_sys_158: -0.0 + art_sys_159: -9.46285404e-05 + art_sys_160: 2.53224466e-05 + art_sys_161: 2.55089713e-06 + art_sys_162: 1.66282902e-05 + art_sys_163: -1.36476753e-05 + art_sys_164: 7.18158424e-06 + art_sys_165: -3.20780674e-06 + art_sys_166: 1.19545153e-16 + art_sys_167: -5.73537238e-17 + art_sys_168: -1.10227622e-16 + art_sys_169: 2.72569766e-17 + art_sys_170: -1.16719511e-17 + art_sys_171: 1.24079785e-17 + art_sys_172: 1.94064291e-18 + art_sys_173: -8.75078511e-19 + art_sys_174: -8.82562688e-19 + art_sys_175: 3.80015286e-21 + art_sys_176: -4.48496217e-20 + art_sys_177: -5.18195209e-21 + art_sys_178: 3.04067764e-20 + art_sys_179: -9.01757187e-22 + art_sys_180: 3.52480800e-21 + art_sys_181: 1.38849545e-21 + art_sys_182: 9.64973618e-22 + art_sys_183: -3.35326253e-22 + art_sys_184: 3.62596696e-22 + art_sys_185: -8.46239051e-23 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -37529,149 +37529,149 @@ bins: art_sys_40: 0.0 art_sys_41: 0.0 art_sys_42: 0.0 - art_sys_43: 3.43772528e-203 - art_sys_44: 5.63007402e-196 - art_sys_45: -2.98390629e-63 - art_sys_46: -1.80466611e-63 - art_sys_47: 2.54163579e-55 - art_sys_48: -3.57161473e-48 - art_sys_49: -2.75937554e-39 - art_sys_50: -3.23885614e-39 - art_sys_51: -2.68538831e-16 - art_sys_52: 2.20737114e-15 - art_sys_53: -1.33384692e-34 - art_sys_54: -6.13772930e-36 - art_sys_55: 8.24043279e-36 - art_sys_56: 2.45701582e-37 - art_sys_57: 5.25176575e-37 - art_sys_58: -1.43406746e-36 - art_sys_59: -8.16888279e-15 - art_sys_60: -3.62963266e-14 - art_sys_61: 4.94003260e-13 - art_sys_62: 4.34811439e-13 - art_sys_63: -2.95152120e-12 - art_sys_64: 1.51090292e-30 - art_sys_65: -9.75849279e-12 - art_sys_66: -4.94496708e-11 - art_sys_67: 4.51854033e-10 - art_sys_68: -2.07815586e-29 - art_sys_69: -8.31931967e-28 - art_sys_70: 1.25451059e-27 - art_sys_71: -5.79810463e-28 - art_sys_72: -6.58947524e-27 - art_sys_73: -1.27528929e-27 - art_sys_74: 5.25214674e-28 - art_sys_75: -1.44051399e-09 - art_sys_76: -3.47883648e-09 - art_sys_77: -1.14978580e-08 - art_sys_78: 3.08430808e-26 - art_sys_79: 3.37817717e-25 - art_sys_80: 4.94589995e-08 - art_sys_81: -2.64989259e-07 - art_sys_82: -2.00388817e-07 - art_sys_83: -8.04202528e-24 - art_sys_84: 2.30609549e-24 - art_sys_85: -3.51907039e-24 - art_sys_86: 3.75052382e-24 - art_sys_87: 1.73265054e-24 - art_sys_88: -9.42880276e-09 - art_sys_89: 1.48821661e-24 - art_sys_90: 5.42489829e-25 - art_sys_91: -1.74525452e-24 - art_sys_92: -1.61268410e-24 - art_sys_93: 3.81552742e-25 - art_sys_94: 2.54932451e-25 - art_sys_95: 2.95902794e-25 - art_sys_96: -1.45285174e-22 - art_sys_97: 2.86965343e-22 - art_sys_98: -1.83971458e-22 - art_sys_99: 6.31081451e-22 - art_sys_100: -6.05349295e-06 - art_sys_101: 5.12469303e-06 - art_sys_102: -4.21212865e-22 - art_sys_103: 1.01744797e-22 - art_sys_104: -9.53183339e-23 - art_sys_105: 3.00770477e-22 - art_sys_106: 1.93120871e-23 - art_sys_107: 1.44581095e-22 - art_sys_108: -2.85648709e-21 - art_sys_109: -1.37842731e-22 - art_sys_110: -1.30264071e-22 - art_sys_111: -3.11041427e-17 - art_sys_112: 9.55439170e-23 - art_sys_113: 1.01713272e-21 - art_sys_114: -4.47753533e-22 - art_sys_115: 3.16197900e-22 - art_sys_116: -4.71210416e-22 - art_sys_117: -5.55852359e-24 - art_sys_118: -5.69194530e-22 - art_sys_119: 4.58476538e-17 - art_sys_120: -1.12230460e-17 - art_sys_121: -2.17398842e-18 - art_sys_122: 8.06936831e-17 - art_sys_123: -3.26437934e-20 - art_sys_124: -7.75893629e-15 - art_sys_125: -2.85464496e-19 - art_sys_126: -2.04835858e-14 - art_sys_127: 2.94866054e-16 - art_sys_128: 6.60522338e-13 - art_sys_129: -1.68158264e-12 - art_sys_130: -4.18625287e-13 - art_sys_131: -1.06836941e-12 - art_sys_132: -2.26876472e-14 - art_sys_133: -4.27608914e-12 - art_sys_134: 5.59720926e-10 - art_sys_135: -2.95200540e-05 - art_sys_136: -1.60967633e-05 - art_sys_137: 9.69280697e-05 - art_sys_138: -6.53933001e-05 - art_sys_139: -2.57477980e-06 - art_sys_140: 1.75183258e-05 - art_sys_141: -4.81513521e-06 - art_sys_142: -1.27223451e-05 - art_sys_143: -9.05300914e-06 - art_sys_144: -7.77673442e-15 - art_sys_145: -9.97107198e-15 - art_sys_146: 3.51635201e-15 - art_sys_147: -2.77002459e-15 - art_sys_148: -2.77806772e-16 - art_sys_149: 6.16911573e-17 - art_sys_150: 1.68258225e-16 - art_sys_151: -2.19010726e-16 - art_sys_152: 4.39162278e-17 - art_sys_153: 8.01580089e-18 - art_sys_154: 3.43642355e-17 - art_sys_155: -6.43996962e-18 - art_sys_156: -1.34406419e-18 - art_sys_157: 6.36999853e-18 - art_sys_158: 1.88468270e-18 - art_sys_159: -5.87513978e-19 - art_sys_160: -2.71178233e-19 - art_sys_161: -2.71573473e-20 - art_sys_162: 1.54390597e-20 - art_sys_163: 4.82500479e-20 - art_sys_164: 2.07835403e-20 - art_sys_165: 1.94870703e-20 - art_sys_166: 6.43058705e-21 - art_sys_167: -7.76853694e-22 - art_sys_168: 2.07020883e-06 - art_sys_169: 1.74703763e-22 - art_sys_170: -8.02541527e-07 - art_sys_171: 2.79837210e-07 - art_sys_172: -1.21231919e-22 - art_sys_173: -2.34446092e-22 - art_sys_174: -8.61639809e-08 - art_sys_175: 0.0 - art_sys_176: -2.41879401e-08 - art_sys_177: 0.0 - art_sys_178: 2.99168872e-09 - art_sys_179: -2.21050211e-10 - art_sys_180: -2.41321412e-15 - art_sys_181: 1.33363303e-23 - art_sys_182: 0.0 - art_sys_183: 3.09092148e-21 - art_sys_184: 5.90180600e-23 - art_sys_185: 3.88171890e-23 + art_sys_43: -2.98241287e-189 + art_sys_44: 1.82678018e-181 + art_sys_45: -1.20846203e-54 + art_sys_46: 7.34779955e-51 + art_sys_47: -1.82064428e-45 + art_sys_48: 2.11616247e-37 + art_sys_49: -2.68538831e-16 + art_sys_50: -2.20737114e-15 + art_sys_51: 8.16888279e-15 + art_sys_52: 3.62963266e-14 + art_sys_53: -4.94003260e-13 + art_sys_54: 4.34811439e-13 + art_sys_55: 5.87557209e-31 + art_sys_56: -4.43652830e-30 + art_sys_57: -2.12936029e-31 + art_sys_58: -2.95152120e-12 + art_sys_59: 9.75849279e-12 + art_sys_60: 1.32957912e-29 + art_sys_61: -5.65171941e-30 + art_sys_62: 8.59531649e-30 + art_sys_63: -1.42937408e-29 + art_sys_64: 1.33439941e-29 + art_sys_65: 4.94496708e-11 + art_sys_66: -4.51854033e-10 + art_sys_67: -2.76231663e-28 + art_sys_68: 5.73232677e-28 + art_sys_69: -1.64002857e-27 + art_sys_70: 7.24379978e-28 + art_sys_71: -2.27153694e-28 + art_sys_72: 1.52057541e-26 + art_sys_73: 5.31728059e-14 + art_sys_74: -4.31345759e-15 + art_sys_75: 2.88120385e-15 + art_sys_76: 1.44051399e-09 + art_sys_77: 7.85365305e-25 + art_sys_78: 2.25330089e-22 + art_sys_79: 3.80608430e-15 + art_sys_80: -3.47883648e-09 + art_sys_81: -1.24236455e-15 + art_sys_82: 7.86884766e-17 + art_sys_83: 1.14978580e-08 + art_sys_84: 5.56372272e-16 + art_sys_85: -6.53930932e-16 + art_sys_86: 4.94589996e-08 + art_sys_87: 8.29694707e-24 + art_sys_88: -2.64989259e-07 + art_sys_89: 2.00388817e-07 + art_sys_90: -1.54472429e-23 + art_sys_91: 4.64872718e-20 + art_sys_92: -6.42156726e-23 + art_sys_93: -2.49719232e-23 + art_sys_94: 3.11940666e-21 + art_sys_95: 1.42326470e-23 + art_sys_96: 9.42880280e-09 + art_sys_97: -3.02949187e-21 + art_sys_98: -1.36083481e-22 + art_sys_99: 6.41090203e-23 + art_sys_100: 7.08777590e-22 + art_sys_101: 1.25769581e-20 + art_sys_102: 6.71828368e-22 + art_sys_103: 2.95513225e-20 + art_sys_104: 3.83391264e-22 + art_sys_105: 2.48619813e-22 + art_sys_106: 7.32976717e-21 + art_sys_107: 6.05349430e-06 + art_sys_108: -5.12470871e-06 + art_sys_109: -2.95201123e-05 + art_sys_110: -3.07662352e-18 + art_sys_111: 3.33958479e-21 + art_sys_112: 4.03566564e-18 + art_sys_113: 1.60966802e-05 + art_sys_114: 5.06582228e-22 + art_sys_115: 4.16253774e-20 + art_sys_116: -1.83097741e-18 + art_sys_117: -1.68475794e-21 + art_sys_118: 4.02861702e-15 + art_sys_119: -1.02666664e-20 + art_sys_120: -1.25912328e-18 + art_sys_121: -2.68348857e-12 + art_sys_122: 1.21784314e-19 + art_sys_123: 5.09224597e-18 + art_sys_124: 1.47552817e-10 + art_sys_125: 9.98206920e-16 + art_sys_126: 8.00777641e-10 + art_sys_127: -2.94261993e-16 + art_sys_128: 1.21954770e-10 + art_sys_129: 2.99407643e-15 + art_sys_130: -2.70654592e-10 + art_sys_131: 5.24331967e-13 + art_sys_132: -2.55492280e-14 + art_sys_133: -3.48802880e-12 + art_sys_134: 2.07206054e-06 + art_sys_135: -2.45242257e-14 + art_sys_136: -6.23252657e-12 + art_sys_137: 8.05089211e-07 + art_sys_138: 2.92407024e-21 + art_sys_139: 8.19440976e-12 + art_sys_140: 9.54032155e-10 + art_sys_141: -4.41569276e-11 + art_sys_142: 8.39976190e-10 + art_sys_143: -2.75805334e-07 + art_sys_144: 8.25410965e-08 + art_sys_145: 2.37683346e-08 + art_sys_146: 0.0 + art_sys_147: 3.65341572e-09 + art_sys_148: -1.41555144e-10 + art_sys_149: -1.41555144e-10 + art_sys_150: 5.72926252e-11 + art_sys_151: 5.72926252e-11 + art_sys_152: -4.03026322e-11 + art_sys_153: 8.88715124e-10 + art_sys_154: -3.04679887e-10 + art_sys_155: 1.18454887e-21 + art_sys_156: 3.53176831e-25 + art_sys_157: 4.03349881e-25 + art_sys_158: 0.0 + art_sys_159: -9.69272952e-05 + art_sys_160: -6.53939774e-05 + art_sys_161: 1.75219530e-05 + art_sys_162: -2.57489968e-06 + art_sys_163: 1.27155465e-05 + art_sys_164: -9.05849378e-06 + art_sys_165: 4.82049305e-06 + art_sys_166: -2.16389818e-16 + art_sys_167: 1.11044982e-16 + art_sys_168: 2.03877145e-16 + art_sys_169: -5.04360098e-17 + art_sys_170: 2.13583534e-17 + art_sys_171: -2.28528115e-17 + art_sys_172: -3.29760737e-18 + art_sys_173: 1.62182927e-18 + art_sys_174: 1.62946480e-18 + art_sys_175: -7.22809110e-21 + art_sys_176: 7.27332979e-20 + art_sys_177: 8.46660986e-21 + art_sys_178: -5.45939992e-20 + art_sys_179: -3.76666438e-22 + art_sys_180: -7.51492487e-21 + art_sys_181: -2.91239375e-21 + art_sys_182: -2.52087534e-22 + art_sys_183: 7.29293226e-22 + art_sys_184: -7.19691011e-22 + art_sys_185: 1.69854833e-22 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -37820,149 +37820,149 @@ bins: art_sys_40: 0.0 art_sys_41: 0.0 art_sys_42: 0.0 - art_sys_43: 3.01975474e-204 - art_sys_44: 4.94555012e-197 - art_sys_45: -2.62126650e-64 - art_sys_46: -1.58534161e-64 - art_sys_47: 2.23274597e-56 - art_sys_48: -3.13754961e-49 - art_sys_49: -2.42402340e-40 - art_sys_50: -2.84523180e-40 - art_sys_51: -2.35902797e-17 - art_sys_52: 2.54129500e-16 - art_sys_53: -1.52106780e-35 - art_sys_54: -6.89892937e-37 - art_sys_55: 9.55937886e-37 - art_sys_56: 2.48177971e-38 - art_sys_57: 6.76542631e-38 - art_sys_58: -1.60697881e-37 - art_sys_59: -9.28334207e-16 - art_sys_60: -3.20866718e-15 - art_sys_61: 5.86549202e-14 - art_sys_62: -1.29029798e-13 - art_sys_63: -3.53848435e-15 - art_sys_64: -1.07030740e-32 - art_sys_65: -2.81517318e-13 - art_sys_66: -2.19238637e-11 - art_sys_67: -3.16627441e-11 - art_sys_68: -2.57893138e-29 - art_sys_69: -1.19015871e-28 - art_sys_70: -1.17046294e-28 - art_sys_71: 3.32525504e-29 - art_sys_72: 6.10148599e-28 - art_sys_73: 8.24952591e-29 - art_sys_74: -3.05215894e-29 - art_sys_75: 1.48607705e-10 - art_sys_76: 7.53248561e-10 - art_sys_77: 3.14910429e-09 - art_sys_78: -7.74020606e-27 - art_sys_79: 6.16260782e-27 - art_sys_80: -6.91832721e-10 - art_sys_81: -8.53019343e-08 - art_sys_82: -1.21813744e-07 - art_sys_83: -4.23006187e-24 - art_sys_84: 2.15829707e-24 - art_sys_85: -1.05117435e-24 - art_sys_86: 1.82409521e-24 - art_sys_87: 7.61941226e-25 - art_sys_88: -1.32152218e-07 - art_sys_89: -2.23214186e-25 - art_sys_90: -1.29578648e-24 - art_sys_91: -4.38585118e-24 - art_sys_92: -1.72766041e-24 - art_sys_93: 4.17995034e-25 - art_sys_94: -1.24153653e-24 - art_sys_95: 1.55915979e-24 - art_sys_96: 1.18007103e-22 - art_sys_97: 1.86549309e-23 - art_sys_98: -1.92401114e-22 - art_sys_99: -4.07039493e-22 - art_sys_100: -1.11818015e-06 - art_sys_101: -3.74090554e-06 - art_sys_102: 2.11632676e-22 - art_sys_103: -1.26102659e-22 - art_sys_104: 5.78047641e-23 - art_sys_105: -1.46896316e-22 - art_sys_106: 4.46914688e-23 - art_sys_107: -6.30301179e-23 - art_sys_108: -2.57761278e-20 - art_sys_109: 6.87270349e-23 - art_sys_110: -1.28560545e-23 - art_sys_111: -6.47445203e-17 - art_sys_112: 5.06087158e-22 - art_sys_113: 9.98150904e-22 - art_sys_114: 6.94227567e-24 - art_sys_115: 4.72300308e-21 - art_sys_116: 8.74881134e-23 - art_sys_117: 5.61021562e-24 - art_sys_118: 7.05930392e-22 - art_sys_119: -2.60847810e-17 - art_sys_120: 2.41560068e-17 - art_sys_121: -7.91921823e-19 - art_sys_122: -1.21153271e-16 - art_sys_123: -8.03370931e-21 - art_sys_124: 1.17935369e-14 - art_sys_125: 4.38039281e-19 - art_sys_126: 3.09744190e-14 - art_sys_127: -4.47751975e-16 - art_sys_128: -1.00297310e-12 - art_sys_129: 2.55345562e-12 - art_sys_130: 6.35692500e-13 - art_sys_131: 1.62234532e-12 - art_sys_132: 3.44517820e-14 - art_sys_133: 6.49335079e-12 - art_sys_134: -8.49935610e-10 - art_sys_135: -7.35837213e-06 - art_sys_136: 2.00775275e-05 - art_sys_137: 1.57470927e-05 - art_sys_138: -6.80385419e-05 - art_sys_139: -1.12539942e-05 - art_sys_140: -4.70058686e-05 - art_sys_141: 6.22849436e-06 - art_sys_142: 3.03171479e-06 - art_sys_143: 8.79712005e-06 - art_sys_144: 8.41253064e-15 - art_sys_145: -1.20408275e-15 - art_sys_146: 2.78019833e-15 - art_sys_147: 2.25780081e-15 - art_sys_148: -6.95993493e-17 - art_sys_149: 3.70591213e-16 - art_sys_150: -7.74488724e-16 - art_sys_151: 4.52075100e-16 - art_sys_152: -8.43352348e-17 - art_sys_153: -5.64690089e-17 - art_sys_154: -5.07947064e-17 - art_sys_155: 1.36874231e-17 - art_sys_156: 4.11370986e-18 - art_sys_157: -6.11161205e-18 - art_sys_158: -3.03715324e-18 - art_sys_159: 1.06083643e-18 - art_sys_160: 9.81003463e-19 - art_sys_161: 5.03380783e-20 - art_sys_162: -3.27514744e-20 - art_sys_163: -8.24931542e-20 - art_sys_164: -6.24464445e-20 - art_sys_165: -3.10318627e-20 - art_sys_166: -1.21660453e-20 - art_sys_167: -4.62600470e-22 - art_sys_168: -3.14649670e-06 - art_sys_169: -6.78056030e-23 - art_sys_170: 1.33597695e-06 - art_sys_171: -4.94739419e-07 - art_sys_172: 9.09695229e-22 - art_sys_173: 4.28679762e-22 - art_sys_174: 1.57883976e-07 - art_sys_175: 0.0 - art_sys_176: 4.54393821e-08 - art_sys_177: 0.0 - art_sys_178: -5.69879554e-09 - art_sys_179: 4.22937368e-10 - art_sys_180: 4.62613522e-15 - art_sys_181: -2.54341338e-23 - art_sys_182: 0.0 - art_sys_183: -5.79819396e-21 - art_sys_184: -1.04292178e-22 - art_sys_185: -7.40722319e-23 + art_sys_43: -2.61995225e-190 + art_sys_44: 1.60476670e-182 + art_sys_45: -1.06159535e-55 + art_sys_46: 6.45480753e-52 + art_sys_47: -1.59937793e-46 + art_sys_48: 1.85898123e-38 + art_sys_49: -2.35902797e-17 + art_sys_50: -2.54129500e-16 + art_sys_51: 9.28334207e-16 + art_sys_52: 3.20866718e-15 + art_sys_53: -5.86549202e-14 + art_sys_54: -1.29029798e-13 + art_sys_55: 9.11352886e-32 + art_sys_56: -1.40072318e-31 + art_sys_57: -3.04038214e-32 + art_sys_58: -3.53848435e-15 + art_sys_59: 2.81517318e-13 + art_sys_60: 3.48299507e-31 + art_sys_61: -1.22617708e-31 + art_sys_62: 3.29337071e-31 + art_sys_63: -5.80463205e-31 + art_sys_64: 4.20432668e-31 + art_sys_65: 2.19238637e-11 + art_sys_66: 3.16627441e-11 + art_sys_67: -5.21859660e-29 + art_sys_68: -8.20753138e-31 + art_sys_69: 1.59873982e-28 + art_sys_70: 4.04619025e-29 + art_sys_71: -3.73060984e-29 + art_sys_72: -1.59048837e-27 + art_sys_73: 2.65026571e-14 + art_sys_74: 2.01868518e-14 + art_sys_75: -1.59932946e-15 + art_sys_76: -1.48607705e-10 + art_sys_77: -8.10105337e-26 + art_sys_78: -2.32457354e-23 + art_sys_79: 4.51277211e-15 + art_sys_80: 7.53248561e-10 + art_sys_81: 2.88341347e-15 + art_sys_82: 1.59736338e-15 + art_sys_83: -3.14910429e-09 + art_sys_84: -7.84144803e-16 + art_sys_85: 1.21133823e-15 + art_sys_86: -6.91832722e-10 + art_sys_87: -3.06618066e-24 + art_sys_88: -8.53019343e-08 + art_sys_89: 1.21813744e-07 + art_sys_90: 2.11078010e-24 + art_sys_91: -1.00921369e-20 + art_sys_92: 2.05752876e-23 + art_sys_93: 3.30905289e-24 + art_sys_94: -8.53813270e-22 + art_sys_95: -2.32443926e-24 + art_sys_96: 1.32152219e-07 + art_sys_97: 8.29369238e-22 + art_sys_98: 4.19931835e-23 + art_sys_99: -1.47574742e-23 + art_sys_100: -1.44613619e-22 + art_sys_101: -2.72161025e-21 + art_sys_102: -1.45832413e-22 + art_sys_103: -3.26989621e-22 + art_sys_104: 1.45529595e-22 + art_sys_105: -4.10321700e-22 + art_sys_106: -2.86442911e-21 + art_sys_107: 1.11817578e-06 + art_sys_108: 3.74090164e-06 + art_sys_109: -7.35838723e-06 + art_sys_110: 6.46050215e-20 + art_sys_111: -7.40533951e-22 + art_sys_112: 1.34463059e-18 + art_sys_113: -2.00775398e-05 + art_sys_114: 1.94075398e-21 + art_sys_115: -4.20638286e-19 + art_sys_116: -2.28672247e-19 + art_sys_117: -9.39586716e-22 + art_sys_118: 4.30761571e-16 + art_sys_119: -4.33844073e-21 + art_sys_120: -3.69252025e-19 + art_sys_121: -3.55045153e-13 + art_sys_122: 5.25493512e-20 + art_sys_123: 1.29948505e-18 + art_sys_124: 3.88845569e-11 + art_sys_125: 1.57183369e-16 + art_sys_126: 2.69094570e-10 + art_sys_127: -6.51982370e-17 + art_sys_128: 1.88713772e-10 + art_sys_129: 1.24843445e-15 + art_sys_130: -1.91247486e-10 + art_sys_131: -5.12122007e-14 + art_sys_132: -2.53166893e-15 + art_sys_133: 1.25177423e-10 + art_sys_134: -3.14914017e-06 + art_sys_135: -3.17681596e-14 + art_sys_136: 3.73285401e-11 + art_sys_137: -1.34036963e-06 + art_sys_138: -8.92898029e-21 + art_sys_139: -5.64577126e-12 + art_sys_140: -6.82020696e-10 + art_sys_141: 1.35126920e-10 + art_sys_142: -3.30942723e-10 + art_sys_143: 4.87163503e-07 + art_sys_144: -1.51476511e-07 + art_sys_145: -4.46674542e-08 + art_sys_146: -0.0 + art_sys_147: -6.77905250e-09 + art_sys_148: 2.33611000e-11 + art_sys_149: 2.33611000e-11 + art_sys_150: -7.51947891e-12 + art_sys_151: -7.51947891e-12 + art_sys_152: 4.00788019e-11 + art_sys_153: -1.64257800e-09 + art_sys_154: 5.77475585e-10 + art_sys_155: -2.17998016e-21 + art_sys_156: -1.19414942e-25 + art_sys_157: -7.03761042e-25 + art_sys_158: -0.0 + art_sys_159: -1.57467479e-05 + art_sys_160: -6.80393281e-05 + art_sys_161: -4.70140088e-05 + art_sys_162: -1.12536021e-05 + art_sys_163: -3.02253816e-06 + art_sys_164: 8.79843719e-06 + art_sys_165: -6.23664760e-06 + art_sys_166: 3.80613727e-16 + art_sys_167: -2.05217950e-16 + art_sys_168: -3.65639870e-16 + art_sys_169: 9.06631161e-17 + art_sys_170: -3.82081334e-17 + art_sys_171: 4.07679228e-17 + art_sys_172: 6.12244524e-18 + art_sys_173: -2.85722285e-18 + art_sys_174: -2.87326670e-18 + art_sys_175: 1.35656381e-20 + art_sys_176: -1.20749730e-19 + art_sys_177: 3.11358292e-21 + art_sys_178: 9.32368508e-20 + art_sys_179: 7.64736979e-21 + art_sys_180: 1.87135264e-20 + art_sys_181: 6.09100417e-21 + art_sys_182: 2.41645449e-22 + art_sys_183: -1.61003363e-21 + art_sys_184: 1.43372305e-21 + art_sys_185: -3.43186698e-22 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -38111,149 +38111,149 @@ bins: art_sys_40: 0.0 art_sys_41: 0.0 art_sys_42: 0.0 - art_sys_43: 2.26954255e-205 - art_sys_44: 3.71690333e-198 - art_sys_45: -1.97017586e-65 - art_sys_46: -1.19156208e-65 - art_sys_47: 1.67815910e-57 - art_sys_48: -2.35822054e-50 - art_sys_49: -1.82192554e-41 - art_sys_50: -2.13851091e-41 - art_sys_51: -1.77307418e-18 - art_sys_52: 2.39221073e-17 - art_sys_53: -1.42294031e-36 - art_sys_54: -6.39200081e-38 - art_sys_55: 9.04278775e-38 - art_sys_56: 2.11551469e-39 - art_sys_57: 6.81061686e-39 - art_sys_58: -1.49142616e-38 - art_sys_59: -8.71534268e-17 - art_sys_60: -1.64769873e-16 - art_sys_61: 4.06652585e-15 - art_sys_62: -3.74959397e-14 - art_sys_63: 6.03079124e-14 - art_sys_64: -3.33438462e-32 - art_sys_65: 1.42407827e-13 - art_sys_66: -3.67348290e-12 - art_sys_67: -1.66336433e-11 - art_sys_68: -5.12123358e-30 - art_sys_69: -7.74926897e-30 - art_sys_70: -5.24859830e-29 - art_sys_71: 1.97440669e-29 - art_sys_72: 3.42603777e-28 - art_sys_73: 4.27327809e-29 - art_sys_74: -1.79765769e-29 - art_sys_75: 7.58073353e-11 - art_sys_76: 1.96359933e-10 - art_sys_77: 9.81752275e-10 - art_sys_78: -2.61137578e-27 - art_sys_79: -6.81244788e-27 - art_sys_80: -1.35164566e-09 - art_sys_81: -1.39177891e-08 - art_sys_82: -2.31601952e-08 - art_sys_83: -7.84353657e-25 - art_sys_84: 5.14582630e-25 - art_sys_85: -1.63945008e-25 - art_sys_86: 3.37039218e-25 - art_sys_87: 1.33992807e-25 - art_sys_88: -2.85828871e-08 - art_sys_89: -7.60885023e-26 - art_sys_90: -2.92502466e-25 - art_sys_91: -9.22634972e-25 - art_sys_92: -3.81853755e-25 - art_sys_93: 9.76586467e-26 - art_sys_94: -2.76200048e-25 - art_sys_95: 4.02318054e-25 - art_sys_96: 3.98270929e-23 - art_sys_97: -2.24207768e-23 - art_sys_98: -2.58673833e-23 - art_sys_99: -1.49130897e-22 - art_sys_100: 3.11279823e-07 - art_sys_101: -1.30860772e-06 - art_sys_102: 8.61861063e-23 - art_sys_103: -3.75134698e-23 - art_sys_104: 2.17896947e-23 - art_sys_105: -6.39566095e-23 - art_sys_106: 8.20980260e-24 - art_sys_107: -2.70486241e-23 - art_sys_108: -1.57562964e-20 - art_sys_109: 2.81042982e-23 - art_sys_110: 9.65949012e-24 - art_sys_111: 2.38684686e-16 - art_sys_112: 1.11649806e-23 - art_sys_113: -3.34375437e-21 - art_sys_114: 1.63259755e-22 - art_sys_115: -1.40491654e-22 - art_sys_116: 1.64377717e-22 - art_sys_117: -8.70090868e-24 - art_sys_118: -8.29345437e-22 - art_sys_119: -6.33109859e-18 - art_sys_120: -2.23117813e-17 - art_sys_121: 5.12306171e-18 - art_sys_122: 1.59923772e-16 - art_sys_123: 6.38308540e-20 - art_sys_124: -1.57280176e-14 - art_sys_125: -5.84545806e-19 - art_sys_126: -4.09118486e-14 - art_sys_127: 5.96088549e-16 - art_sys_128: 1.33522704e-12 - art_sys_129: -3.39945208e-12 - art_sys_130: -8.46349667e-13 - art_sys_131: -2.15996369e-12 - art_sys_132: -4.58686073e-14 - art_sys_133: -8.64514938e-12 - art_sys_134: 1.13155337e-09 - art_sys_135: 1.94747965e-06 - art_sys_136: 6.85499526e-06 - art_sys_137: -1.26605917e-05 - art_sys_138: -1.11225557e-05 - art_sys_139: 3.38437146e-05 - art_sys_140: -4.64125339e-05 - art_sys_141: -6.39564829e-06 - art_sys_142: 7.91934396e-06 - art_sys_143: -2.71506688e-06 - art_sys_144: -2.47323393e-14 - art_sys_145: -9.19755596e-15 - art_sys_146: -4.24018788e-15 - art_sys_147: -2.86623997e-15 - art_sys_148: 1.14246167e-15 - art_sys_149: 1.56128363e-16 - art_sys_150: 9.02067645e-16 - art_sys_151: -6.78407691e-16 - art_sys_152: 9.82147308e-17 - art_sys_153: 4.07149270e-17 - art_sys_154: 9.98969206e-17 - art_sys_155: -2.13033319e-17 - art_sys_156: -7.07848269e-18 - art_sys_157: 1.45115416e-17 - art_sys_158: 4.59818678e-18 - art_sys_159: -1.69635735e-18 - art_sys_160: -1.41003201e-18 - art_sys_161: -7.50943293e-20 - art_sys_162: 7.22443766e-20 - art_sys_163: 1.38688489e-19 - art_sys_164: 9.69861061e-20 - art_sys_165: 4.76704868e-20 - art_sys_166: 2.11207222e-20 - art_sys_167: -7.45511220e-21 - art_sys_168: 4.19578910e-06 - art_sys_169: 4.95883609e-22 - art_sys_170: -2.07056516e-06 - art_sys_171: 8.42698117e-07 - art_sys_172: 2.04383787e-21 - art_sys_173: -7.76191110e-22 - art_sys_174: -2.83842350e-07 - art_sys_175: 0.0 - art_sys_176: -8.50107073e-08 - art_sys_177: 0.0 - art_sys_178: 1.08885299e-08 - art_sys_179: -8.15975756e-10 - art_sys_180: -8.94378904e-15 - art_sys_181: 4.87989204e-23 - art_sys_182: 0.0 - art_sys_183: 1.08245141e-20 - art_sys_184: 1.74184600e-22 - art_sys_185: 1.42275692e-22 + art_sys_43: -1.96918620e-191 + art_sys_44: 1.20616108e-183 + art_sys_45: -7.97908006e-57 + art_sys_46: 4.85151204e-53 + art_sys_47: -1.20211195e-47 + art_sys_48: 1.39723296e-39 + art_sys_49: -1.77307418e-18 + art_sys_50: -2.39221073e-17 + art_sys_51: 8.71534268e-17 + art_sys_52: 1.64769873e-16 + art_sys_53: -4.06652585e-15 + art_sys_54: -3.74959397e-14 + art_sys_55: 9.70972737e-33 + art_sys_56: 6.00170618e-32 + art_sys_57: -2.91997367e-33 + art_sys_58: 6.03079124e-14 + art_sys_59: -1.42407827e-13 + art_sys_60: -2.01608368e-31 + art_sys_61: 9.13390944e-32 + art_sys_62: -1.08957916e-31 + art_sys_63: 1.70823076e-31 + art_sys_64: -1.86517272e-31 + art_sys_65: 3.67348290e-12 + art_sys_66: 1.66336433e-11 + art_sys_67: -5.56307498e-30 + art_sys_68: -1.24163681e-29 + art_sys_69: 7.01140276e-29 + art_sys_70: -6.92672984e-30 + art_sys_71: -3.15080884e-30 + art_sys_72: -8.03257930e-28 + art_sys_73: 4.22759662e-14 + art_sys_74: 1.19348840e-15 + art_sys_75: 2.75764420e-14 + art_sys_76: -7.58073353e-11 + art_sys_77: -4.13299606e-26 + art_sys_78: -1.18580691e-23 + art_sys_79: -6.00318444e-15 + art_sys_80: 1.96359933e-10 + art_sys_81: -2.99857068e-15 + art_sys_82: -4.90290052e-16 + art_sys_83: -9.81752275e-10 + art_sys_84: 1.25099212e-15 + art_sys_85: -2.82208924e-15 + art_sys_86: -1.35164566e-09 + art_sys_87: -9.34905513e-25 + art_sys_88: -1.39177891e-08 + art_sys_89: 2.31601952e-08 + art_sys_90: 7.42225224e-25 + art_sys_91: -2.63740958e-21 + art_sys_92: 5.01942493e-24 + art_sys_93: 9.48724965e-25 + art_sys_94: -2.66227951e-22 + art_sys_95: -7.12505464e-25 + art_sys_96: 2.85828873e-08 + art_sys_97: 2.58593813e-22 + art_sys_98: 1.30317718e-23 + art_sys_99: -4.71150158e-24 + art_sys_100: -4.94480453e-23 + art_sys_101: -7.09716504e-22 + art_sys_102: -3.80221047e-23 + art_sys_103: -8.14528228e-22 + art_sys_104: -1.04592406e-23 + art_sys_105: -1.12746232e-22 + art_sys_106: -6.47515288e-22 + art_sys_107: -3.11280909e-07 + art_sys_108: 1.30860882e-06 + art_sys_109: 1.94748343e-06 + art_sys_110: 8.93325995e-20 + art_sys_111: -3.03820471e-22 + art_sys_112: 2.22088904e-19 + art_sys_113: -6.85498423e-06 + art_sys_114: 6.96814429e-22 + art_sys_115: -9.16266697e-20 + art_sys_116: -1.03986713e-20 + art_sys_117: -3.11859716e-22 + art_sys_118: -2.78605101e-16 + art_sys_119: -7.73083662e-22 + art_sys_120: -5.87207569e-20 + art_sys_121: 1.71225085e-13 + art_sys_122: 9.45468767e-21 + art_sys_123: -2.22446093e-19 + art_sys_124: -1.46706302e-11 + art_sys_125: -6.93804097e-17 + art_sys_126: -6.07316169e-11 + art_sys_127: 2.36366815e-17 + art_sys_128: -6.98340979e-11 + art_sys_129: 1.74143098e-16 + art_sys_130: -5.58427428e-11 + art_sys_131: -1.26508823e-13 + art_sys_132: 4.63129161e-15 + art_sys_133: 3.27854966e-11 + art_sys_134: 4.19888977e-06 + art_sys_135: -3.93612574e-14 + art_sys_136: 4.72606828e-11 + art_sys_137: 2.07777459e-06 + art_sys_138: 5.37603532e-21 + art_sys_139: -2.36069669e-13 + art_sys_140: -8.80389967e-12 + art_sys_141: -8.86635750e-11 + art_sys_142: -3.48639915e-10 + art_sys_143: -8.28589307e-07 + art_sys_144: 2.72928154e-07 + art_sys_145: 8.36104734e-08 + art_sys_146: -0.0 + art_sys_147: 1.25120402e-08 + art_sys_148: 1.15102618e-10 + art_sys_149: 1.15102618e-10 + art_sys_150: -5.83712020e-11 + art_sys_151: -5.83712020e-11 + art_sys_152: -4.91437264e-11 + art_sys_153: 2.97429913e-09 + art_sys_154: -1.09877039e-09 + art_sys_155: 3.94168012e-21 + art_sys_156: -1.25793465e-24 + art_sys_157: 1.24366713e-24 + art_sys_158: 0.0 + art_sys_159: 1.26605656e-05 + art_sys_160: -1.11226984e-05 + art_sys_161: -4.64245126e-05 + art_sys_162: 3.38440809e-05 + art_sys_163: -7.92460370e-06 + art_sys_164: -2.71167056e-06 + art_sys_165: 6.40652555e-06 + art_sys_166: -6.51824180e-16 + art_sys_167: 3.68284872e-16 + art_sys_168: 6.37019774e-16 + art_sys_169: -1.58703677e-16 + art_sys_170: 6.72367185e-17 + art_sys_171: -7.04615985e-17 + art_sys_172: -1.05494018e-17 + art_sys_173: 4.97400736e-18 + art_sys_174: 4.91404938e-18 + art_sys_175: -2.53471860e-20 + art_sys_176: 2.06531242e-19 + art_sys_177: -3.75334710e-20 + art_sys_178: -1.48686560e-19 + art_sys_179: -2.96097995e-20 + art_sys_180: -3.12642578e-20 + art_sys_181: -1.38989571e-20 + art_sys_182: -1.30530214e-21 + art_sys_183: 3.65483253e-21 + art_sys_184: -2.90473108e-21 + art_sys_185: 7.06498591e-22 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -38402,149 +38402,149 @@ bins: art_sys_40: 0.0 art_sys_41: 0.0 art_sys_42: 0.0 - art_sys_43: 1.64158679e-206 - art_sys_44: 2.68847985e-199 - art_sys_45: -1.42512452e-66 - art_sys_46: -8.61915106e-67 - art_sys_47: 1.21389451e-58 - art_sys_48: -1.70581620e-51 - art_sys_49: -1.31788781e-42 - art_sys_50: -1.54688949e-42 - art_sys_51: -1.28255124e-19 - art_sys_52: 2.01674009e-18 - art_sys_53: -1.19538430e-37 - art_sys_54: -5.34027655e-39 - art_sys_55: 7.64443485e-39 - art_sys_56: 1.69675094e-40 - art_sys_57: 5.94523135e-40 - art_sys_58: -1.23135349e-39 - art_sys_59: -7.14610663e-18 - art_sys_60: 4.49356031e-18 - art_sys_61: 4.09662878e-17 - art_sys_62: -6.18275584e-15 - art_sys_63: 1.31230127e-14 - art_sys_64: -7.04919256e-33 - art_sys_65: 3.48551495e-14 - art_sys_66: -3.78360604e-13 - art_sys_67: -2.94029784e-12 - art_sys_68: -6.13520651e-31 - art_sys_69: 5.20918637e-31 - art_sys_70: -8.96703797e-30 - art_sys_71: 3.56839907e-30 - art_sys_72: 6.52673915e-29 - art_sys_73: 7.80418014e-30 - art_sys_74: -3.24487271e-30 - art_sys_75: 1.40456897e-11 - art_sys_76: 2.45084184e-11 - art_sys_77: 1.47004730e-10 - art_sys_78: -3.25630235e-28 - art_sys_79: -9.78059047e-28 - art_sys_80: -1.95622703e-10 - art_sys_81: -1.44654575e-09 - art_sys_82: -1.84421450e-09 - art_sys_83: -6.58020127e-26 - art_sys_84: 3.15072903e-26 - art_sys_85: -1.55569080e-26 - art_sys_86: 3.33902882e-26 - art_sys_87: 1.15377257e-26 - art_sys_88: 6.42921542e-10 - art_sys_89: 7.90235479e-27 - art_sys_90: 4.68844243e-27 - art_sys_91: 9.68556828e-27 - art_sys_92: -8.12770924e-27 - art_sys_93: 1.01376175e-26 - art_sys_94: 2.73702336e-27 - art_sys_95: -2.09171715e-27 - art_sys_96: -1.72874347e-24 - art_sys_97: -6.08905372e-24 - art_sys_98: 1.07458953e-23 - art_sys_99: 3.63868115e-24 - art_sys_100: 1.57724951e-07 - art_sys_101: 4.51922547e-08 - art_sys_102: -2.25489921e-26 - art_sys_103: 2.89645714e-24 - art_sys_104: -3.53362987e-25 - art_sys_105: -2.71850607e-24 - art_sys_106: -2.03188512e-24 - art_sys_107: -1.37000083e-25 - art_sys_108: -1.21498999e-21 - art_sys_109: -3.64858879e-27 - art_sys_110: 5.44610860e-24 - art_sys_111: 2.17621096e-16 - art_sys_112: -1.51748279e-22 - art_sys_113: -3.17677377e-21 - art_sys_114: 9.88457154e-23 - art_sys_115: -2.21464887e-21 - art_sys_116: 6.53312406e-23 - art_sys_117: 8.88600233e-24 - art_sys_118: 1.28200485e-21 - art_sys_119: 8.48101658e-17 - art_sys_120: 1.01359099e-17 - art_sys_121: -6.51891284e-18 - art_sys_122: -1.62230344e-16 - art_sys_123: -1.31955541e-19 - art_sys_124: 1.61475129e-14 - art_sys_125: 5.94865254e-19 - art_sys_126: 4.12021471e-14 - art_sys_127: -6.09923767e-16 - art_sys_128: -1.36619935e-12 - art_sys_129: 3.47842897e-12 - art_sys_130: 8.66090277e-13 - art_sys_131: 2.21034728e-12 - art_sys_132: 4.69386836e-14 - art_sys_133: 8.84682509e-12 - art_sys_134: -1.15788098e-09 - art_sys_135: 1.18392504e-06 - art_sys_136: -9.43615144e-07 - art_sys_137: -5.20209074e-06 - art_sys_138: 8.88829703e-06 - art_sys_139: 3.33085011e-05 - art_sys_140: -7.35535733e-06 - art_sys_141: 2.44518134e-06 - art_sys_142: -2.43088175e-05 - art_sys_143: -4.36960372e-06 - art_sys_144: 3.15691609e-14 - art_sys_145: 1.30566029e-14 - art_sys_146: -4.10790023e-15 - art_sys_147: 4.84489089e-15 - art_sys_148: -1.01660902e-15 - art_sys_149: 4.44810287e-16 - art_sys_150: -1.16089651e-15 - art_sys_151: 1.23680526e-15 - art_sys_152: -1.63830151e-16 - art_sys_153: -5.57416509e-17 - art_sys_154: -1.49757060e-16 - art_sys_155: 2.84415197e-17 - art_sys_156: 1.61273607e-17 - art_sys_157: -2.16110365e-17 - art_sys_158: -5.22731112e-18 - art_sys_159: 2.23738692e-18 - art_sys_160: 2.01743066e-18 - art_sys_161: 1.14884891e-19 - art_sys_162: -1.44714002e-19 - art_sys_163: -2.14736579e-19 - art_sys_164: -1.45235727e-19 - art_sys_165: -7.68634171e-20 - art_sys_166: -3.48786143e-20 - art_sys_167: 1.61129437e-20 - art_sys_168: -4.30699328e-06 - art_sys_169: -1.22410463e-21 - art_sys_170: 2.70912400e-06 - art_sys_171: -1.29292348e-06 - art_sys_172: -1.94041894e-21 - art_sys_173: 1.22493786e-21 - art_sys_174: 4.74964783e-07 - art_sys_175: 0.0 - art_sys_176: 1.51368075e-07 - art_sys_177: 0.0 - art_sys_178: -2.00981773e-08 - art_sys_179: 1.52697588e-09 - art_sys_180: 1.68084383e-14 - art_sys_181: -9.05493200e-23 - art_sys_182: 0.0 - art_sys_183: -1.92011061e-20 - art_sys_184: -2.47059260e-22 - art_sys_185: -2.64419638e-22 + art_sys_43: -1.42440754e-192 + art_sys_44: 8.72474599e-185 + art_sys_45: -5.77165868e-58 + art_sys_46: 3.50933583e-54 + art_sys_47: -8.69546342e-49 + art_sys_48: 1.01068690e-40 + art_sys_49: -1.28255124e-19 + art_sys_50: -2.01674009e-18 + art_sys_51: 7.14610663e-18 + art_sys_52: -4.49356031e-18 + art_sys_53: -4.09662878e-17 + art_sys_54: -6.18275584e-15 + art_sys_55: 7.88009539e-34 + art_sys_56: 1.50885022e-32 + art_sys_57: -1.94685075e-34 + art_sys_58: 1.31230127e-14 + art_sys_59: -3.48551495e-14 + art_sys_60: -4.86221414e-32 + art_sys_61: 2.15135785e-32 + art_sys_62: -2.82213937e-32 + art_sys_63: 4.53389120e-32 + art_sys_64: -4.63292485e-32 + art_sys_65: 3.78360604e-13 + art_sys_66: 2.94029784e-12 + art_sys_67: -1.44084462e-31 + art_sys_68: -2.60616531e-30 + art_sys_69: 1.19156123e-29 + art_sys_70: -2.19812412e-30 + art_sys_71: 1.14570660e-32 + art_sys_72: -1.48415208e-28 + art_sys_73: 1.06491034e-13 + art_sys_74: 1.60671163e-14 + art_sys_75: 9.10646646e-16 + art_sys_76: -1.40456897e-11 + art_sys_77: -7.65797973e-27 + art_sys_78: -2.19707127e-24 + art_sys_79: 6.33006538e-15 + art_sys_80: 2.45084184e-11 + art_sys_81: 1.59907060e-15 + art_sys_82: -1.75987616e-16 + art_sys_83: -1.47004730e-10 + art_sys_84: -2.66359292e-15 + art_sys_85: 4.70885407e-15 + art_sys_86: -1.95622703e-10 + art_sys_87: -1.35208700e-25 + art_sys_88: -1.44654575e-09 + art_sys_89: 1.84421450e-09 + art_sys_90: 1.19027110e-25 + art_sys_91: -3.30171573e-22 + art_sys_92: 5.93916810e-25 + art_sys_93: 1.28843684e-25 + art_sys_94: -3.98733503e-23 + art_sys_95: -9.08446765e-26 + art_sys_96: -6.42921545e-10 + art_sys_97: 3.87013445e-23 + art_sys_98: 1.83818601e-24 + art_sys_99: -7.68278991e-25 + art_sys_100: -7.33623494e-24 + art_sys_101: -8.87125343e-23 + art_sys_102: -4.74472955e-24 + art_sys_103: -1.25122270e-22 + art_sys_104: -1.64609752e-23 + art_sys_105: 1.24046274e-23 + art_sys_106: -4.84210690e-23 + art_sys_107: -1.57724805e-07 + art_sys_108: -4.51916023e-08 + art_sys_109: 1.18392740e-06 + art_sys_110: 1.27748169e-20 + art_sys_111: -5.27530832e-23 + art_sys_112: 2.26197398e-20 + art_sys_113: 9.43619492e-07 + art_sys_114: -1.70284769e-22 + art_sys_115: 3.11160400e-21 + art_sys_116: 9.21693963e-23 + art_sys_117: 7.62015373e-24 + art_sys_118: -9.69428802e-17 + art_sys_119: -6.67012506e-23 + art_sys_120: -5.25353788e-21 + art_sys_121: 6.47693737e-14 + art_sys_122: 1.07060087e-21 + art_sys_123: -2.10489160e-19 + art_sys_124: -9.25523733e-12 + art_sys_125: -3.52726789e-17 + art_sys_126: -5.90527118e-11 + art_sys_127: 1.94958198e-17 + art_sys_128: -1.20358624e-10 + art_sys_129: -7.09804802e-18 + art_sys_130: -8.64229159e-12 + art_sys_131: -4.46228531e-14 + art_sys_132: 1.91909202e-15 + art_sys_133: 1.93029177e-11 + art_sys_134: -4.30932240e-06 + art_sys_135: -3.98135976e-14 + art_sys_136: 4.58876049e-11 + art_sys_137: -2.71957875e-06 + art_sys_138: -3.91085701e-21 + art_sys_139: 7.80695359e-12 + art_sys_140: 9.05538045e-10 + art_sys_141: 7.26237924e-11 + art_sys_142: 1.35957161e-09 + art_sys_143: 1.26810171e-06 + art_sys_144: -4.58235411e-07 + art_sys_145: -1.48979562e-07 + art_sys_146: 0.0 + art_sys_147: -2.20004416e-08 + art_sys_148: -2.80202874e-10 + art_sys_149: -2.80202874e-10 + art_sys_150: 1.42711626e-10 + art_sys_151: 1.42711626e-10 + art_sys_152: 6.55540479e-11 + art_sys_153: -5.07122000e-09 + art_sys_154: 2.01871358e-09 + art_sys_155: -6.70841919e-21 + art_sys_156: 3.80282846e-24 + art_sys_157: -2.35015022e-24 + art_sys_158: -0.0 + art_sys_159: 5.20202866e-06 + art_sys_160: 8.88839693e-06 + art_sys_161: -7.35970613e-06 + art_sys_162: 3.33086068e-05 + art_sys_163: 2.43105337e-05 + art_sys_164: -4.38005855e-06 + art_sys_165: -2.45634130e-06 + art_sys_166: 1.03816977e-15 + art_sys_167: -5.86657430e-16 + art_sys_168: -1.01257310e-15 + art_sys_169: 2.54792357e-16 + art_sys_170: -1.06494319e-16 + art_sys_171: 1.10865086e-16 + art_sys_172: 1.74355922e-17 + art_sys_173: -7.61602528e-18 + art_sys_174: -7.46275168e-18 + art_sys_175: 4.50741549e-20 + art_sys_176: -2.40307364e-19 + art_sys_177: 1.13374561e-19 + art_sys_178: 2.02910855e-19 + art_sys_179: 9.03707787e-20 + art_sys_180: 3.65291473e-20 + art_sys_181: 3.08139627e-20 + art_sys_182: 1.21847916e-20 + art_sys_183: -8.10935491e-21 + art_sys_184: 5.72788708e-21 + art_sys_185: -1.41565036e-21 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -38693,149 +38693,149 @@ bins: art_sys_40: 0.0 art_sys_41: 0.0 art_sys_42: 0.0 - art_sys_43: 1.12420726e-207 - art_sys_44: 1.84115063e-200 - art_sys_45: -9.75984816e-68 - art_sys_46: -5.90275479e-68 - art_sys_47: 8.31325685e-60 - art_sys_48: -1.16821421e-52 - art_sys_49: -9.02544640e-44 - art_sys_50: -1.05937456e-43 - art_sys_51: -8.78344678e-21 - art_sys_52: 1.44901701e-19 - art_sys_53: -8.58019495e-39 - art_sys_54: -3.82710391e-40 - art_sys_55: 5.49674888e-40 - art_sys_56: 1.18858520e-41 - art_sys_57: 4.31517282e-41 - art_sys_58: -8.63153027e-41 - art_sys_59: -4.82086974e-19 - art_sys_60: 2.09907885e-18 - art_sys_61: -3.06089000e-17 - art_sys_62: -7.13436485e-16 - art_sys_63: 1.69047730e-15 - art_sys_64: -9.11049939e-34 - art_sys_65: 4.56264222e-15 - art_sys_66: -1.98145605e-14 - art_sys_67: -3.10646793e-13 - art_sys_68: -4.32682213e-32 - art_sys_69: 1.96004653e-31 - art_sys_70: -9.24301077e-31 - art_sys_71: 3.82917818e-31 - art_sys_72: 6.97018513e-30 - art_sys_73: 9.04617028e-31 - art_sys_74: -3.47788358e-31 - art_sys_75: 1.48145740e-12 - art_sys_76: 2.25168496e-12 - art_sys_77: 1.31213614e-11 - art_sys_78: -2.84837485e-29 - art_sys_79: 7.34994528e-29 - art_sys_80: 3.83982387e-12 - art_sys_81: -1.42885919e-10 - art_sys_82: 5.89754172e-11 - art_sys_83: 2.82061863e-28 - art_sys_84: -2.80917803e-27 - art_sys_85: -1.38173142e-27 - art_sys_86: 2.23844329e-27 - art_sys_87: 2.05349415e-28 - art_sys_88: 1.34104087e-09 - art_sys_89: 6.39814033e-27 - art_sys_90: 1.31304343e-26 - art_sys_91: 3.82379046e-26 - art_sys_92: 5.80082863e-27 - art_sys_93: 1.04225384e-27 - art_sys_94: 1.16861452e-26 - art_sys_95: -1.40679958e-26 - art_sys_96: -3.32211913e-24 - art_sys_97: 3.47290626e-25 - art_sys_98: 4.23267703e-24 - art_sys_99: 1.18339271e-23 - art_sys_100: 1.12970855e-08 - art_sys_101: 1.06567281e-07 - art_sys_102: -6.36853781e-24 - art_sys_103: 3.40489923e-24 - art_sys_104: -1.68762494e-24 - art_sys_105: 4.15801276e-24 - art_sys_106: -1.04040612e-24 - art_sys_107: 2.81722202e-24 - art_sys_108: 1.88302269e-21 - art_sys_109: -2.08010372e-24 - art_sys_110: 6.55370328e-25 - art_sys_111: 2.67430922e-17 - art_sys_112: -3.95598928e-23 - art_sys_113: -4.45289482e-22 - art_sys_114: 7.66595745e-24 - art_sys_115: -5.60726429e-22 - art_sys_116: 2.29261101e-23 - art_sys_117: -3.94780564e-24 - art_sys_118: -8.19252463e-22 - art_sys_119: 5.41875314e-17 - art_sys_120: 5.17438409e-17 - art_sys_121: 5.47186256e-18 - art_sys_122: 7.18627980e-17 - art_sys_123: 1.26287659e-19 - art_sys_124: -7.40004091e-15 - art_sys_125: -2.54597567e-19 - art_sys_126: -1.64865800e-14 - art_sys_127: 2.73732556e-16 - art_sys_128: 6.13123478e-13 - art_sys_129: -1.56160748e-12 - art_sys_130: -3.89090322e-13 - art_sys_131: -9.93009132e-13 - art_sys_132: -2.10879018e-14 - art_sys_133: -3.97453911e-12 - art_sys_134: 5.19954445e-10 - art_sys_135: 7.54829482e-08 - art_sys_136: -8.77189701e-07 - art_sys_137: 3.93249086e-07 - art_sys_138: 3.44332361e-06 - art_sys_139: 4.80820156e-06 - art_sys_140: 5.73658063e-06 - art_sys_141: 2.76342794e-06 - art_sys_142: -2.12611365e-05 - art_sys_143: 1.77248169e-05 - art_sys_144: -4.51053344e-14 - art_sys_145: 5.78202349e-15 - art_sys_146: 8.30584371e-15 - art_sys_147: -2.99535825e-15 - art_sys_148: 2.02857922e-15 - art_sys_149: -1.28134978e-15 - art_sys_150: 1.48327423e-15 - art_sys_151: -1.79831713e-15 - art_sys_152: 2.31572812e-16 - art_sys_153: 1.07323557e-16 - art_sys_154: 2.21100871e-16 - art_sys_155: -4.34124020e-17 - art_sys_156: -2.40589187e-17 - art_sys_157: 2.72791843e-17 - art_sys_158: 6.12856732e-18 - art_sys_159: -2.97631706e-18 - art_sys_160: -2.91089033e-18 - art_sys_161: -2.33366869e-19 - art_sys_162: 2.92214066e-19 - art_sys_163: 3.16420898e-19 - art_sys_164: 2.16112721e-19 - art_sys_165: 1.10648202e-19 - art_sys_166: 5.67980609e-20 - art_sys_167: -2.76397757e-20 - art_sys_168: 1.97081356e-06 - art_sys_169: 3.76451212e-21 - art_sys_170: -3.00493763e-06 - art_sys_171: 1.85210570e-06 - art_sys_172: 3.67754584e-21 - art_sys_173: -1.83640784e-21 - art_sys_174: -7.86120944e-07 - art_sys_175: 0.0 - art_sys_176: -2.76372576e-07 - art_sys_177: 0.0 - art_sys_178: 3.88279113e-08 - art_sys_179: -3.01205431e-09 - art_sys_180: -3.34801424e-14 - art_sys_181: 1.76484141e-22 - art_sys_182: 0.0 - art_sys_183: 3.48421844e-20 - art_sys_184: 2.60292673e-22 - art_sys_185: 5.16316801e-22 + art_sys_43: -9.75493542e-194 + art_sys_44: 5.97506901e-186 + art_sys_45: -3.95267303e-59 + art_sys_46: 2.40333981e-55 + art_sys_47: -5.95501668e-50 + art_sys_48: 6.92160622e-42 + art_sys_49: -8.78344678e-21 + art_sys_50: -1.44901701e-19 + art_sys_51: 4.82086974e-19 + art_sys_52: -2.09907885e-18 + art_sys_53: 3.06089000e-17 + art_sys_54: -7.13436485e-16 + art_sys_55: 4.53180424e-35 + art_sys_56: 2.02923008e-33 + art_sys_57: -6.37541693e-36 + art_sys_58: 1.69047730e-15 + art_sys_59: -4.56264222e-15 + art_sys_60: -6.34820702e-33 + art_sys_61: 2.79280511e-33 + art_sys_62: -3.72579227e-33 + art_sys_63: 6.04112589e-33 + art_sys_64: -6.07222442e-33 + art_sys_65: 1.98145605e-14 + art_sys_66: 3.10646793e-13 + art_sys_67: 1.91322120e-32 + art_sys_68: -3.07593675e-31 + art_sys_69: 1.22308966e-30 + art_sys_70: -3.04679032e-31 + art_sys_71: 4.34022175e-32 + art_sys_72: -1.56319238e-29 + art_sys_73: -5.79793302e-14 + art_sys_74: 2.05961446e-14 + art_sys_75: 2.93231539e-14 + art_sys_76: -1.48145740e-12 + art_sys_77: -8.07732798e-28 + art_sys_78: -2.31734561e-25 + art_sys_79: -7.97452501e-15 + art_sys_80: 2.25168496e-12 + art_sys_81: -4.33022526e-15 + art_sys_82: 7.97307656e-16 + art_sys_83: -1.31213614e-11 + art_sys_84: 3.90867121e-15 + art_sys_85: -5.44408726e-15 + art_sys_86: 3.83982387e-12 + art_sys_87: -1.27413359e-26 + art_sys_88: -1.42885919e-10 + art_sys_89: -5.89754172e-11 + art_sys_90: 1.29732384e-26 + art_sys_91: -3.03161934e-23 + art_sys_92: 4.79946139e-26 + art_sys_93: 1.48254577e-26 + art_sys_94: -3.56086716e-24 + art_sys_95: -6.03049683e-27 + art_sys_96: -1.34104087e-09 + art_sys_97: 3.44805116e-24 + art_sys_98: 1.19334770e-25 + art_sys_99: -8.80445195e-26 + art_sys_100: -5.61122457e-25 + art_sys_101: -8.18386367e-24 + art_sys_102: -4.34898232e-25 + art_sys_103: 1.55651011e-24 + art_sys_104: -2.51552913e-24 + art_sys_105: 1.09440039e-23 + art_sys_106: -5.72947375e-24 + art_sys_107: -1.12969742e-08 + art_sys_108: -1.06567245e-07 + art_sys_109: 7.54830980e-08 + art_sys_110: -2.25312917e-22 + art_sys_111: -1.39563833e-24 + art_sys_112: 2.02798231e-21 + art_sys_113: 8.77189328e-07 + art_sys_114: -1.25821366e-22 + art_sys_115: 4.65921684e-21 + art_sys_116: -4.98508574e-22 + art_sys_117: 2.33817819e-23 + art_sys_118: -1.09632867e-18 + art_sys_119: 1.16267490e-24 + art_sys_120: 5.37917532e-22 + art_sys_121: 1.29331189e-15 + art_sys_122: 1.51026160e-22 + art_sys_123: -2.69817955e-20 + art_sys_124: -2.58560318e-13 + art_sys_125: -2.30480890e-18 + art_sys_126: -6.04982610e-12 + art_sys_127: 2.54927749e-18 + art_sys_128: -2.21144800e-11 + art_sys_129: -2.76770350e-17 + art_sys_130: 5.64429792e-12 + art_sys_131: 1.28515288e-14 + art_sys_132: -1.49434512e-15 + art_sys_133: 5.72734535e-11 + art_sys_134: 1.96929849e-06 + art_sys_135: -5.49122652e-14 + art_sys_136: 4.88329009e-11 + art_sys_137: 3.01876112e-06 + art_sys_138: -2.78979820e-20 + art_sys_139: -6.33440616e-12 + art_sys_140: -7.47517484e-10 + art_sys_141: 4.04889173e-10 + art_sys_142: 9.00606149e-10 + art_sys_143: -1.80814062e-06 + art_sys_144: 7.62273163e-07 + art_sys_145: 2.72290206e-07 + art_sys_146: 0.0 + art_sys_147: 3.99066134e-08 + art_sys_148: -3.13958125e-10 + art_sys_149: -3.13958125e-10 + art_sys_150: 1.49403913e-12 + art_sys_151: 1.49403913e-12 + art_sys_152: -2.15783956e-10 + art_sys_153: 8.79381706e-09 + art_sys_154: -3.89256715e-09 + art_sys_155: 1.16537508e-20 + art_sys_156: -9.22626337e-24 + art_sys_157: 4.72533969e-24 + art_sys_158: 0.0 + art_sys_159: -3.93260091e-07 + art_sys_160: 3.44336449e-06 + art_sys_161: 5.73727255e-06 + art_sys_162: 4.80819697e-06 + art_sys_163: 2.12872198e-05 + art_sys_164: 1.77156763e-05 + art_sys_165: -2.75837259e-06 + art_sys_166: -1.60452790e-15 + art_sys_167: 9.29242278e-16 + art_sys_168: 1.56053481e-15 + art_sys_169: -3.96544457e-16 + art_sys_170: 1.61376466e-16 + art_sys_171: -1.66642415e-16 + art_sys_172: -2.52216697e-17 + art_sys_173: 1.07534841e-17 + art_sys_174: 1.05356170e-17 + art_sys_175: -8.22210283e-20 + art_sys_176: 1.72231651e-19 + art_sys_177: -3.27467023e-19 + art_sys_178: -2.13461179e-19 + art_sys_179: -2.51858516e-19 + art_sys_180: -8.75221372e-21 + art_sys_181: -7.08357604e-20 + art_sys_182: -2.87678364e-20 + art_sys_183: 1.87952239e-20 + art_sys_184: -1.18278239e-20 + art_sys_185: 2.95981701e-21 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -38984,149 +38984,149 @@ bins: art_sys_40: 0.0 art_sys_41: 0.0 art_sys_42: 0.0 - art_sys_43: 7.57802141e-209 - art_sys_44: 1.24107710e-201 - art_sys_45: -6.57882381e-69 - art_sys_46: -3.97887171e-69 - art_sys_47: 5.60371956e-61 - art_sys_48: -7.87458509e-54 - art_sys_49: -6.08378540e-45 - art_sys_50: -7.14092930e-45 - art_sys_51: -5.92066063e-22 - art_sys_52: 9.51577016e-21 - art_sys_53: -5.63768983e-40 - art_sys_54: -2.51676213e-41 - art_sys_55: 3.60823709e-41 - art_sys_56: 7.97398583e-43 - art_sys_57: 2.81922165e-42 - art_sys_58: -5.49879884e-42 - art_sys_59: -2.87793198e-20 - art_sys_60: 2.70545254e-19 - art_sys_61: -4.43295628e-18 - art_sys_62: -6.67668516e-17 - art_sys_63: 1.64150633e-16 - art_sys_64: -8.93286872e-35 - art_sys_65: 4.28305986e-16 - art_sys_66: -3.66411013e-17 - art_sys_67: -2.25923695e-14 - art_sys_68: -1.68230940e-33 - art_sys_69: 2.41361864e-32 - art_sys_70: -6.56193543e-32 - art_sys_71: 2.82764845e-32 - art_sys_72: 4.19552682e-31 - art_sys_73: 7.12761444e-32 - art_sys_74: -2.56315238e-32 - art_sys_75: 9.05762821e-14 - art_sys_76: 3.97791468e-13 - art_sys_77: 1.14483058e-12 - art_sys_78: -3.32496509e-30 - art_sys_79: 3.74106485e-29 - art_sys_80: 4.40485786e-12 - art_sys_81: -3.78421880e-11 - art_sys_82: -9.29289627e-12 - art_sys_83: -6.13350607e-28 - art_sys_84: -1.03181006e-28 - art_sys_85: -4.41144065e-28 - art_sys_86: 6.41881172e-28 - art_sys_87: 1.62702607e-28 - art_sys_88: 1.93531808e-10 - art_sys_89: 9.95408909e-28 - art_sys_90: 1.91045480e-27 - art_sys_91: 5.40131346e-27 - art_sys_92: 1.98647639e-27 - art_sys_93: 2.08396492e-28 - art_sys_94: 1.69392280e-27 - art_sys_95: -1.90132478e-27 - art_sys_96: -5.93141013e-25 - art_sys_97: 4.27222476e-25 - art_sys_98: 2.58310318e-25 - art_sys_99: 2.26071600e-24 - art_sys_100: -6.80711725e-09 - art_sys_101: 1.96232908e-08 - art_sys_102: -1.32799194e-24 - art_sys_103: 5.42896425e-25 - art_sys_104: -3.31026000e-25 - art_sys_105: 1.05621983e-24 - art_sys_106: -9.89024118e-26 - art_sys_107: 3.58641331e-25 - art_sys_108: 2.20141675e-22 - art_sys_109: -4.34004836e-25 - art_sys_110: -3.65129489e-25 - art_sys_111: -2.64449592e-17 - art_sys_112: 1.18391684e-23 - art_sys_113: 3.73345220e-22 - art_sys_114: -1.35261329e-23 - art_sys_115: 7.32955858e-23 - art_sys_116: -3.57019656e-23 - art_sys_117: -3.13027668e-24 - art_sys_118: -4.21617140e-23 - art_sys_119: 2.02514909e-18 - art_sys_120: 2.51728815e-17 - art_sys_121: 1.16361646e-17 - art_sys_122: 5.95879388e-17 - art_sys_123: -6.22861966e-20 - art_sys_124: -5.52862879e-15 - art_sys_125: -2.27023388e-19 - art_sys_126: -1.73545894e-14 - art_sys_127: 2.16157305e-16 - art_sys_128: 4.84348463e-13 - art_sys_129: -1.23414492e-12 - art_sys_130: -3.07075768e-13 - art_sys_131: -7.83676119e-13 - art_sys_132: -1.66416210e-14 - art_sys_133: -3.13657624e-12 - art_sys_134: 4.10717581e-10 - art_sys_135: -7.00391631e-08 - art_sys_136: -1.05873312e-07 - art_sys_137: 5.78823960e-07 - art_sys_138: -2.48205991e-07 - art_sys_139: -3.89974941e-06 - art_sys_140: 2.22999006e-06 - art_sys_141: -1.20268260e-05 - art_sys_142: -2.84692350e-06 - art_sys_143: 1.46272126e-05 - art_sys_144: 1.52853947e-14 - art_sys_145: -5.94071617e-15 - art_sys_146: -1.04190821e-14 - art_sys_147: 2.70110849e-15 - art_sys_148: -3.08540576e-15 - art_sys_149: 1.23508167e-15 - art_sys_150: -9.51323070e-16 - art_sys_151: 1.80219501e-15 - art_sys_152: -2.51809474e-16 - art_sys_153: -1.10603852e-16 - art_sys_154: -1.80773349e-16 - art_sys_155: 5.42419413e-17 - art_sys_156: 2.52866147e-17 - art_sys_157: -2.37223192e-17 - art_sys_158: -6.17783661e-18 - art_sys_159: 2.38722742e-18 - art_sys_160: 3.17080923e-18 - art_sys_161: 5.43230819e-19 - art_sys_162: -5.11547740e-19 - art_sys_163: -4.06443355e-19 - art_sys_164: -2.84374730e-19 - art_sys_165: -1.66437975e-19 - art_sys_166: -7.84847675e-20 - art_sys_167: 5.52011650e-20 - art_sys_168: 1.47788344e-06 - art_sys_169: -8.08699104e-21 - art_sys_170: 1.43855588e-06 - art_sys_171: -2.12101935e-06 - art_sys_172: -3.84549061e-21 - art_sys_173: 2.24585566e-21 - art_sys_174: 1.13685404e-06 - art_sys_175: 0.0 - art_sys_176: 4.69293687e-07 - art_sys_177: 0.0 - art_sys_178: -7.18285383e-08 - art_sys_179: 5.82332739e-09 - art_sys_180: 6.52428576e-14 - art_sys_181: -3.34522265e-22 - art_sys_182: 0.0 - art_sys_183: -5.86092836e-20 - art_sys_184: 1.53276676e-22 - art_sys_185: -9.82498300e-22 + art_sys_43: -6.57551325e-195 + art_sys_44: 4.02761718e-187 + art_sys_45: -2.66437951e-60 + art_sys_46: 1.62002000e-56 + art_sys_47: -4.01409990e-51 + art_sys_48: 4.66564921e-43 + art_sys_49: -5.92066063e-22 + art_sys_50: -9.51577016e-21 + art_sys_51: 2.87793198e-20 + art_sys_52: -2.70545254e-19 + art_sys_53: 4.43295628e-18 + art_sys_54: -6.67668516e-17 + art_sys_55: 2.21611510e-36 + art_sys_56: 1.99890027e-34 + art_sys_57: 1.17271877e-37 + art_sys_58: 1.64150633e-16 + art_sys_59: -4.28305986e-16 + art_sys_60: -5.97329212e-34 + art_sys_61: 2.62890669e-34 + art_sys_62: -3.45121145e-34 + art_sys_63: 5.66143146e-34 + art_sys_64: -5.69900740e-34 + art_sys_65: 3.66411013e-17 + art_sys_66: 2.25923695e-14 + art_sys_67: 5.79741977e-33 + art_sys_68: -2.47921145e-32 + art_sys_69: 8.64003171e-32 + art_sys_70: -2.72062596e-32 + art_sys_71: 6.07715370e-33 + art_sys_72: -9.56413944e-31 + art_sys_73: 6.57064813e-14 + art_sys_74: -1.30054331e-14 + art_sys_75: 3.11833018e-14 + art_sys_76: -9.05762821e-14 + art_sys_77: -4.93832498e-29 + art_sys_78: -1.41682147e-26 + art_sys_79: 2.02174965e-14 + art_sys_80: 3.97791468e-13 + art_sys_81: 4.00682725e-15 + art_sys_82: -3.51380545e-16 + art_sys_83: -1.14483058e-12 + art_sys_84: -5.12364314e-15 + art_sys_85: 7.82347428e-15 + art_sys_86: 4.40485787e-12 + art_sys_87: -1.34975202e-27 + art_sys_88: -3.78421880e-11 + art_sys_89: 9.29289626e-12 + art_sys_90: 1.33312939e-27 + art_sys_91: -5.30818909e-24 + art_sys_92: 9.13028098e-27 + art_sys_93: 2.51118612e-27 + art_sys_94: -3.10716393e-25 + art_sys_95: -7.96409108e-28 + art_sys_96: -1.93531809e-10 + art_sys_97: 3.00272073e-25 + art_sys_98: 5.76985073e-27 + art_sys_99: -9.26828531e-27 + art_sys_100: -3.23275759e-26 + art_sys_101: -1.44362570e-24 + art_sys_102: -7.67582394e-26 + art_sys_103: 3.03157936e-24 + art_sys_104: 5.93418979e-25 + art_sys_105: 1.49477260e-24 + art_sys_106: -4.97686706e-24 + art_sys_107: 6.80713183e-09 + art_sys_108: -1.96233312e-08 + art_sys_109: -7.00393019e-08 + art_sys_110: -2.75370963e-22 + art_sys_111: 1.38556458e-24 + art_sys_112: 5.57853931e-22 + art_sys_113: 1.05872820e-07 + art_sys_114: -1.51505533e-23 + art_sys_115: 6.65693767e-22 + art_sys_116: -2.04194816e-22 + art_sys_117: 2.55941355e-24 + art_sys_118: 5.40161678e-18 + art_sys_119: -6.88583509e-25 + art_sys_120: 1.36334948e-22 + art_sys_121: -3.46780203e-15 + art_sys_122: 3.50779691e-23 + art_sys_123: 1.50182200e-20 + art_sys_124: 8.49744249e-13 + art_sys_125: 2.33938692e-18 + art_sys_126: 4.82235906e-12 + art_sys_127: -1.62670942e-18 + art_sys_128: 1.29381341e-11 + art_sys_129: -1.90079225e-17 + art_sys_130: 4.69962178e-12 + art_sys_131: 1.30262652e-14 + art_sys_132: -1.12445622e-15 + art_sys_133: 3.05249761e-11 + art_sys_134: 1.48209960e-06 + art_sys_135: -3.11150668e-14 + art_sys_136: 2.39325784e-11 + art_sys_137: -1.45194372e-06 + art_sys_138: -1.75569948e-20 + art_sys_139: -8.54787293e-12 + art_sys_140: -9.95416622e-10 + art_sys_141: 2.58955992e-10 + art_sys_142: 9.94073484e-12 + art_sys_143: 2.05127674e-06 + art_sys_144: -1.11003193e-06 + art_sys_145: -4.62440569e-07 + art_sys_146: -0.0 + art_sys_147: -6.85504571e-08 + art_sys_148: 2.74111440e-10 + art_sys_149: 2.74111440e-10 + art_sys_150: -4.23974785e-12 + art_sys_151: -4.23974785e-12 + art_sys_152: 2.64650494e-10 + art_sys_153: -1.45179683e-08 + art_sys_154: 7.32839992e-09 + art_sys_155: -1.92546452e-20 + art_sys_156: 1.49343992e-23 + art_sys_157: -9.22115052e-24 + art_sys_158: -0.0 + art_sys_159: -5.78819879e-07 + art_sys_160: -2.48208396e-07 + art_sys_161: 2.23076489e-06 + art_sys_162: -3.89976142e-06 + art_sys_163: 2.86444549e-06 + art_sys_164: 1.46259813e-05 + art_sys_165: 1.20307351e-05 + art_sys_166: 2.20470425e-15 + art_sys_167: -1.21500846e-15 + art_sys_168: -2.05097316e-15 + art_sys_169: 5.29701358e-16 + art_sys_170: -2.04307208e-16 + art_sys_171: 2.09728496e-16 + art_sys_172: 3.03974878e-17 + art_sys_173: -1.22006967e-17 + art_sys_174: -1.15598528e-17 + art_sys_175: 1.39606051e-19 + art_sys_176: 1.97796853e-19 + art_sys_177: 8.43512013e-19 + art_sys_178: 3.77940177e-20 + art_sys_179: 6.02427475e-19 + art_sys_180: -8.03609150e-20 + art_sys_181: 1.50132787e-19 + art_sys_182: 6.88652405e-20 + art_sys_183: -4.00803841e-20 + art_sys_184: 2.29634676e-20 + art_sys_185: -5.77272551e-21 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -39275,149 +39275,149 @@ bins: art_sys_40: 0.0 art_sys_41: 0.0 art_sys_42: 0.0 - art_sys_43: 4.81942869e-210 - art_sys_44: 7.89293443e-203 - art_sys_45: -4.18389588e-70 - art_sys_46: -2.53041964e-70 - art_sys_47: 3.56376457e-62 - art_sys_48: -5.00795356e-55 - art_sys_49: -3.86906921e-46 - art_sys_50: -4.54137480e-46 - art_sys_51: -3.76532772e-23 - art_sys_52: 5.78354577e-22 - art_sys_53: -3.42982093e-41 - art_sys_54: -1.53346105e-42 - art_sys_55: 2.19138578e-42 - art_sys_56: 4.96495157e-44 - art_sys_57: 1.69749258e-43 - art_sys_58: -3.21625920e-43 - art_sys_59: -1.52023090e-21 - art_sys_60: 2.58532840e-20 - art_sys_61: -3.93258845e-19 - art_sys_62: -5.65994534e-18 - art_sys_63: 1.36499601e-17 - art_sys_64: -7.74739279e-36 - art_sys_65: 3.28877015e-17 - art_sys_66: 2.41137039e-17 - art_sys_67: -1.39559268e-15 - art_sys_68: -8.12659469e-35 - art_sys_69: 1.68406092e-33 - art_sys_70: -4.02417251e-33 - art_sys_71: 1.75697283e-33 - art_sys_72: 1.15981470e-32 - art_sys_73: 3.77177916e-33 - art_sys_74: -1.58866307e-33 - art_sys_75: 2.94588761e-15 - art_sys_76: 1.08022736e-13 - art_sys_77: 2.52222204e-13 - art_sys_78: -7.47963963e-31 - art_sys_79: 2.85658232e-30 - art_sys_80: 2.52909341e-13 - art_sys_81: -1.04500086e-11 - art_sys_82: -1.62539919e-11 - art_sys_83: -5.56286031e-28 - art_sys_84: 2.91516705e-28 - art_sys_85: -1.34202661e-28 - art_sys_86: 2.27859021e-28 - art_sys_87: 9.94404935e-29 - art_sys_88: -2.39033559e-11 - art_sys_89: -6.07985858e-29 - art_sys_90: -2.34203453e-28 - art_sys_91: -7.64150672e-28 - art_sys_92: -2.81309949e-28 - art_sys_93: 4.34665689e-29 - art_sys_94: -2.18917806e-28 - art_sys_95: 2.68957037e-28 - art_sys_96: 5.82862835e-26 - art_sys_97: 6.77155756e-26 - art_sys_98: -1.74714282e-25 - art_sys_99: -1.77560124e-25 - art_sys_100: -1.98429698e-09 - art_sys_101: -1.74687627e-09 - art_sys_102: 7.28751341e-26 - art_sys_103: -7.29306327e-26 - art_sys_104: 2.37721936e-26 - art_sys_105: 3.80023033e-26 - art_sys_106: 3.58534527e-26 - art_sys_107: -1.32145322e-26 - art_sys_108: -3.47177856e-22 - art_sys_109: 2.38362765e-26 - art_sys_110: -1.42174520e-25 - art_sys_111: -9.25659622e-18 - art_sys_112: 6.51049630e-24 - art_sys_113: 1.40165660e-22 - art_sys_114: -5.11923517e-24 - art_sys_115: -7.33167168e-24 - art_sys_116: -4.48368738e-23 - art_sys_117: 1.72709030e-23 - art_sys_118: 2.31519528e-21 - art_sys_119: -7.33106777e-18 - art_sys_120: -1.28338152e-18 - art_sys_121: 2.44587771e-18 - art_sys_122: -3.13381519e-16 - art_sys_123: -2.70385681e-19 - art_sys_124: 3.12801891e-14 - art_sys_125: 1.20066960e-18 - art_sys_126: 8.55453588e-14 - art_sys_127: -1.19359987e-15 - art_sys_128: -2.67373268e-12 - art_sys_129: 6.80707838e-12 - art_sys_130: 1.69426323e-12 - art_sys_131: 4.32389587e-12 - art_sys_132: 9.18206183e-14 - art_sys_133: 1.73060715e-11 - art_sys_134: -2.26559234e-09 - art_sys_135: -1.98284758e-08 - art_sys_136: 4.07443946e-08 - art_sys_137: 9.09399681e-08 - art_sys_138: -3.74972820e-07 - art_sys_139: -1.48028514e-06 - art_sys_140: -1.40629933e-07 - art_sys_141: -9.59155908e-06 - art_sys_142: 2.46696468e-06 - art_sys_143: 1.76717213e-06 - art_sys_144: 2.90816395e-14 - art_sys_145: -3.62069436e-15 - art_sys_146: 1.87491342e-14 - art_sys_147: 3.46772747e-16 - art_sys_148: 1.25422247e-15 - art_sys_149: -5.42190950e-16 - art_sys_150: -3.97669284e-16 - art_sys_151: 2.49432156e-16 - art_sys_152: 7.23558642e-17 - art_sys_153: 1.96421826e-17 - art_sys_154: -1.76073049e-17 - art_sys_155: -5.15793371e-18 - art_sys_156: 5.81844365e-18 - art_sys_157: 2.01792351e-19 - art_sys_158: -2.37762493e-18 - art_sys_159: 1.46436008e-18 - art_sys_160: -1.25044175e-18 - art_sys_161: -1.03052737e-18 - art_sys_162: 7.43026913e-19 - art_sys_163: 4.18816321e-19 - art_sys_164: 3.09835938e-19 - art_sys_165: 2.02916971e-19 - art_sys_166: 9.48265146e-20 - art_sys_167: -7.97280047e-20 - art_sys_168: -8.35323695e-06 - art_sys_169: 1.36386883e-20 - art_sys_170: 9.90170321e-07 - art_sys_171: 1.19435452e-06 - art_sys_172: 3.17898238e-21 - art_sys_173: -1.61311043e-21 - art_sys_174: -1.32684715e-06 - art_sys_175: 0.0 - art_sys_176: -7.11481033e-07 - art_sys_177: 0.0 - art_sys_178: 1.27539180e-07 - art_sys_179: -1.06891860e-08 - art_sys_180: -1.24166153e-13 - art_sys_181: 6.01489763e-22 - art_sys_182: 0.0 - art_sys_183: 8.69702054e-20 - art_sys_184: -1.82986146e-21 - art_sys_185: 1.76826767e-21 + art_sys_43: -4.18179152e-196 + art_sys_44: 2.56142064e-188 + art_sys_45: -1.69444976e-61 + art_sys_46: 1.03027459e-57 + art_sys_47: -2.55282350e-52 + art_sys_48: 2.96718548e-44 + art_sys_49: -3.76532772e-23 + art_sys_50: -5.78354577e-22 + art_sys_51: 1.52023090e-21 + art_sys_52: -2.58532840e-20 + art_sys_53: 3.93258845e-19 + art_sys_54: -5.65994534e-18 + art_sys_55: 1.65075395e-37 + art_sys_56: 1.65587610e-35 + art_sys_57: 1.79037230e-38 + art_sys_58: 1.36499601e-17 + art_sys_59: -3.28877015e-17 + art_sys_60: -4.61919346e-35 + art_sys_61: 2.04407329e-35 + art_sys_62: -2.56263162e-35 + art_sys_63: 4.26986590e-35 + art_sys_64: -4.31060249e-35 + art_sys_65: -2.41137039e-17 + art_sys_66: 1.39559268e-15 + art_sys_67: 4.19568763e-34 + art_sys_68: -1.57730509e-33 + art_sys_69: 5.28191799e-33 + art_sys_70: -1.77552533e-33 + art_sys_71: 4.27675922e-34 + art_sys_72: -3.14472660e-32 + art_sys_73: 4.64122823e-14 + art_sys_74: -2.70936313e-14 + art_sys_75: -7.01905612e-15 + art_sys_76: -2.94588761e-15 + art_sys_77: -1.60574860e-30 + art_sys_78: -4.60806170e-28 + art_sys_79: -3.40774591e-14 + art_sys_80: 1.08022736e-13 + art_sys_81: -1.19901687e-15 + art_sys_82: 1.59419733e-15 + art_sys_83: -2.52222204e-13 + art_sys_84: 3.53470518e-15 + art_sys_85: -6.35163734e-15 + art_sys_86: 2.52909342e-13 + art_sys_87: -2.58827688e-28 + art_sys_88: -1.04500086e-11 + art_sys_89: 1.62539919e-11 + art_sys_90: 1.84542260e-28 + art_sys_91: -1.43922262e-24 + art_sys_92: 2.87883233e-27 + art_sys_93: 5.12500918e-28 + art_sys_94: -6.83550439e-26 + art_sys_95: -3.36962049e-28 + art_sys_96: 2.39033560e-11 + art_sys_97: 6.64688125e-26 + art_sys_98: 3.41193004e-27 + art_sys_99: -1.10013427e-27 + art_sys_100: -1.04745418e-26 + art_sys_101: -3.89969861e-25 + art_sys_102: -2.08940019e-26 + art_sys_103: 2.76346206e-25 + art_sys_104: 2.70323374e-25 + art_sys_105: -2.91194760e-25 + art_sys_106: -1.36908254e-24 + art_sys_107: 1.98429394e-09 + art_sys_108: 1.74686518e-09 + art_sys_109: -1.98285146e-08 + art_sys_110: -1.37512632e-23 + art_sys_111: 2.05338135e-25 + art_sys_112: 1.66172785e-22 + art_sys_113: -4.07444695e-08 + art_sys_114: 5.56629152e-24 + art_sys_115: -7.87141679e-23 + art_sys_116: -3.50654019e-23 + art_sys_117: -4.59379233e-25 + art_sys_118: 1.16447608e-18 + art_sys_119: -9.12051098e-25 + art_sys_120: -8.52605076e-23 + art_sys_121: -7.64632836e-16 + art_sys_122: 2.89687397e-24 + art_sys_123: 6.52749460e-21 + art_sys_124: 2.08104245e-13 + art_sys_125: 7.12088955e-19 + art_sys_126: 1.63817581e-12 + art_sys_127: -6.26694075e-19 + art_sys_128: 5.40703915e-12 + art_sys_129: -2.54125921e-18 + art_sys_130: 6.54902483e-13 + art_sys_131: 1.55475760e-15 + art_sys_132: -6.60833680e-17 + art_sys_133: -1.49653214e-13 + art_sys_134: -8.36394490e-06 + art_sys_135: -1.82533622e-15 + art_sys_136: 4.24028090e-13 + art_sys_137: -9.85121434e-07 + art_sys_138: -7.28967887e-22 + art_sys_139: -1.73121513e-12 + art_sys_140: -1.99935953e-10 + art_sys_141: 2.02393816e-11 + art_sys_142: -1.40838587e-10 + art_sys_143: -1.10046019e-06 + art_sys_144: 1.31365372e-06 + art_sys_145: 7.01397876e-07 + art_sys_146: -0.0 + art_sys_147: 1.11427788e-07 + art_sys_148: -3.87632000e-10 + art_sys_149: -3.87632000e-10 + art_sys_150: 2.48370738e-11 + art_sys_151: 2.48370738e-11 + art_sys_152: -3.73800751e-10 + art_sys_153: 2.32126265e-08 + art_sys_154: -1.31754219e-08 + art_sys_155: 3.11718776e-20 + art_sys_156: -2.81096134e-23 + art_sys_157: 1.73970016e-23 + art_sys_158: 0.0 + art_sys_159: -9.09380451e-08 + art_sys_160: -3.74977152e-07 + art_sys_161: -1.40527416e-07 + art_sys_162: -1.48028886e-06 + art_sys_163: -2.46559236e-06 + art_sys_164: 1.76823463e-06 + art_sys_165: 9.56991894e-06 + art_sys_166: -2.14997551e-15 + art_sys_167: 1.38234202e-15 + art_sys_168: 2.00963883e-15 + art_sys_169: -5.20473446e-16 + art_sys_170: 1.75020709e-16 + art_sys_171: -1.71917853e-16 + art_sys_172: -2.06013437e-17 + art_sys_173: 5.33559365e-18 + art_sys_174: 5.06450802e-18 + art_sys_175: -2.12743472e-19 + art_sys_176: -1.32280504e-18 + art_sys_177: -1.84058454e-18 + art_sys_178: 5.95647208e-19 + art_sys_179: -1.21533637e-18 + art_sys_180: 3.20092930e-19 + art_sys_181: -2.83248227e-19 + art_sys_182: -1.42112993e-19 + art_sys_183: 7.60774854e-20 + art_sys_184: -4.00340090e-20 + art_sys_185: 9.98838454e-21 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -39566,149 +39566,149 @@ bins: art_sys_40: 0.0 art_sys_41: 0.0 art_sys_42: 0.0 - art_sys_43: 2.46835993e-211 - art_sys_44: 4.04251299e-204 - art_sys_45: -2.14282071e-71 - art_sys_46: -1.29597766e-71 - art_sys_47: 1.82521476e-63 - art_sys_48: -2.56486942e-56 - art_sys_49: -1.98157934e-47 - art_sys_50: -2.32590682e-47 - art_sys_51: -1.92844718e-24 - art_sys_52: 2.80855432e-23 - art_sys_53: -1.66754588e-42 - art_sys_54: -7.46948514e-44 - art_sys_55: 1.06317402e-43 - art_sys_56: 2.43206230e-45 - art_sys_57: 8.14071526e-45 - art_sys_58: -1.41865787e-44 - art_sys_59: -4.98485813e-23 - art_sys_60: 2.17899558e-21 - art_sys_61: -2.65850980e-20 - art_sys_62: -4.65479165e-19 - art_sys_63: 1.06517513e-18 - art_sys_64: -5.73096105e-37 - art_sys_65: 2.38288278e-18 - art_sys_66: -1.11157644e-17 - art_sys_67: -1.47545602e-16 - art_sys_68: -2.26430629e-35 - art_sys_69: 8.16222262e-35 - art_sys_70: -4.41063411e-34 - art_sys_71: 1.81497374e-34 - art_sys_72: 2.63525183e-33 - art_sys_73: 4.36297109e-34 - art_sys_74: -1.64706525e-34 - art_sys_75: 5.81048954e-16 - art_sys_76: 2.27462793e-14 - art_sys_77: 6.60475718e-14 - art_sys_78: -1.94395030e-31 - art_sys_79: -9.97556827e-31 - art_sys_80: -1.63993395e-13 - art_sys_81: -1.71191400e-12 - art_sys_82: -4.51453374e-12 - art_sys_83: -1.43434021e-28 - art_sys_84: 1.05921876e-28 - art_sys_85: -2.28676846e-29 - art_sys_86: 4.57716779e-29 - art_sys_87: 2.34341129e-29 - art_sys_88: -1.40753348e-11 - art_sys_89: -5.42757933e-29 - art_sys_90: -1.38795265e-28 - art_sys_91: -4.21298641e-28 - art_sys_92: -1.25360485e-28 - art_sys_93: 2.74327371e-30 - art_sys_94: -1.26535933e-28 - art_sys_95: 1.58283055e-28 - art_sys_96: 4.24760933e-26 - art_sys_97: -7.67480207e-27 - art_sys_98: -4.96945982e-26 - art_sys_99: -1.52531452e-25 - art_sys_100: -6.71897234e-11 - art_sys_101: -1.36709904e-09 - art_sys_102: 8.30305071e-26 - art_sys_103: -4.29140158e-26 - art_sys_104: 2.17928040e-26 - art_sys_105: -5.14688170e-26 - art_sys_106: 1.25324389e-26 - art_sys_107: -3.78719959e-26 - art_sys_108: -9.87559356e-23 - art_sys_109: 2.71418945e-26 - art_sys_110: -4.06952495e-27 - art_sys_111: 9.02442458e-19 - art_sys_112: 2.00768549e-26 - art_sys_113: -1.08884745e-23 - art_sys_114: 2.48319192e-25 - art_sys_115: -1.68904440e-23 - art_sys_116: -1.17232342e-23 - art_sys_117: 1.34014157e-23 - art_sys_118: 1.41815054e-21 - art_sys_119: -1.80998173e-18 - art_sys_120: -3.82157378e-18 - art_sys_121: -2.00415482e-18 - art_sys_122: -2.41624363e-16 - art_sys_123: -1.21959576e-19 - art_sys_124: 2.36885132e-14 - art_sys_125: 9.98527919e-19 - art_sys_126: 7.36282974e-14 - art_sys_127: -9.29604071e-16 - art_sys_128: -2.08157699e-12 - art_sys_129: 5.28754767e-12 - art_sys_130: 1.31428624e-12 - art_sys_131: 3.35408965e-12 - art_sys_132: 7.12234062e-14 - art_sys_133: 1.34241384e-11 - art_sys_134: -1.75890899e-09 - art_sys_135: -1.72935377e-10 - art_sys_136: 1.56790126e-08 - art_sys_137: -2.32540508e-08 - art_sys_138: -5.84385469e-08 - art_sys_139: 1.11582540e-07 - art_sys_140: -2.39451955e-07 - art_sys_141: -9.58337488e-07 - art_sys_142: 8.89792836e-07 - art_sys_143: -1.75930790e-06 - art_sys_144: 3.66725768e-14 - art_sys_145: -6.99601802e-16 - art_sys_146: 1.52341503e-14 - art_sys_147: -1.01176013e-14 - art_sys_148: 2.54558373e-15 - art_sys_149: -1.39324503e-15 - art_sys_150: 2.00663759e-15 - art_sys_151: -3.46536716e-15 - art_sys_152: 4.32877240e-16 - art_sys_153: 2.17633348e-16 - art_sys_154: 4.00442867e-16 - art_sys_155: -9.31997265e-17 - art_sys_156: -5.30772133e-17 - art_sys_157: 5.55654012e-17 - art_sys_158: 8.13259471e-18 - art_sys_159: -8.18443237e-18 - art_sys_160: -2.62982265e-18 - art_sys_161: 1.90137259e-18 - art_sys_162: -8.32773435e-19 - art_sys_163: -3.58426486e-19 - art_sys_164: -3.37822899e-19 - art_sys_165: -3.03528123e-19 - art_sys_166: -7.75030830e-20 - art_sys_167: 6.15707133e-20 - art_sys_168: -6.33797468e-06 - art_sys_169: -2.03828485e-20 - art_sys_170: -5.85422207e-06 - art_sys_171: 4.26439459e-07 - art_sys_172: -3.03835762e-21 - art_sys_173: -1.44200320e-21 - art_sys_174: 8.74256588e-07 - art_sys_175: 0.0 - art_sys_176: 9.01171635e-07 - art_sys_177: 0.0 - art_sys_178: -1.99898212e-07 - art_sys_179: 1.90812819e-08 - art_sys_180: 2.26555816e-13 - art_sys_181: -1.03597545e-21 - art_sys_182: 0.0 - art_sys_183: -1.07009975e-19 - art_sys_184: 6.89913111e-21 - art_sys_185: -3.06417025e-21 + art_sys_43: -2.14174354e-197 + art_sys_44: 1.31185547e-189 + art_sys_45: -8.67828012e-63 + art_sys_46: 5.27664595e-59 + art_sys_47: -1.30745201e-53 + art_sys_48: 1.51967130e-45 + art_sys_49: -1.92844718e-24 + art_sys_50: -2.80855432e-23 + art_sys_51: 4.98485813e-23 + art_sys_52: -2.17899558e-21 + art_sys_53: 2.65850980e-20 + art_sys_54: -4.65479165e-19 + art_sys_55: 2.09734391e-38 + art_sys_56: 1.27177963e-36 + art_sys_57: -1.14293718e-39 + art_sys_58: 1.06517513e-18 + art_sys_59: -2.38288278e-18 + art_sys_60: -3.37218169e-36 + art_sys_61: 1.50286227e-36 + art_sys_62: -1.79372075e-36 + art_sys_63: 3.02133194e-36 + art_sys_64: -3.09783541e-36 + art_sys_65: 1.11157644e-17 + art_sys_66: 1.47545602e-16 + art_sys_67: 6.12231078e-36 + art_sys_68: -1.45087098e-34 + art_sys_69: 5.83572643e-34 + art_sys_70: -1.38583845e-34 + art_sys_71: 1.68832449e-35 + art_sys_72: -6.14717383e-33 + art_sys_73: -1.13121444e-14 + art_sys_74: 1.51315974e-14 + art_sys_75: 2.02593639e-15 + art_sys_76: -5.81048954e-16 + art_sys_77: -3.16789432e-31 + art_sys_78: -9.08896873e-29 + art_sys_79: 3.20744613e-14 + art_sys_80: 2.27462793e-14 + art_sys_81: 2.91012239e-15 + art_sys_82: -2.15664418e-16 + art_sys_83: -6.60475718e-14 + art_sys_84: -2.37869157e-15 + art_sys_85: 4.76116926e-15 + art_sys_86: -1.63993395e-13 + art_sys_87: -7.03247288e-29 + art_sys_88: -1.71191400e-12 + art_sys_89: 4.51453374e-12 + art_sys_90: 3.64867740e-29 + art_sys_91: -3.03598231e-25 + art_sys_92: 6.32823026e-28 + art_sys_93: 9.19753957e-29 + art_sys_94: -1.78917682e-26 + art_sys_95: -9.84845374e-29 + art_sys_96: 1.40753348e-11 + art_sys_97: 1.74522115e-26 + art_sys_98: 1.28791861e-27 + art_sys_99: -1.61245674e-28 + art_sys_100: -3.69975099e-27 + art_sys_101: -8.18876633e-26 + art_sys_102: -4.40633870e-27 + art_sys_103: -9.21281849e-26 + art_sys_104: 2.20213178e-26 + art_sys_105: -1.35179954e-25 + art_sys_106: -6.14579674e-26 + art_sys_107: 6.71883480e-11 + art_sys_108: 1.36709903e-09 + art_sys_109: -1.72935540e-10 + art_sys_110: 1.10312892e-23 + art_sys_111: -5.79422313e-26 + art_sys_112: 2.88975561e-23 + art_sys_113: -1.56789924e-08 + art_sys_114: 2.15876353e-24 + art_sys_115: -4.64022617e-23 + art_sys_116: -1.24359216e-24 + art_sys_117: -4.07041476e-25 + art_sys_118: -3.13780520e-20 + art_sys_119: -2.71030206e-25 + art_sys_120: -4.59936430e-23 + art_sys_121: 1.23544356e-17 + art_sys_122: -1.14363772e-24 + art_sys_123: 2.78614982e-22 + art_sys_124: -1.91435239e-14 + art_sys_125: -1.02902206e-20 + art_sys_126: -2.70489918e-14 + art_sys_127: 1.94997270e-20 + art_sys_128: -2.87985985e-13 + art_sys_129: 2.08851187e-18 + art_sys_130: -4.63060803e-13 + art_sys_131: -1.27530233e-15 + art_sys_132: 1.38424847e-16 + art_sys_133: -4.41551064e-12 + art_sys_134: -6.35603509e-06 + art_sys_135: 4.30473600e-15 + art_sys_136: -3.55404659e-12 + art_sys_137: 5.86334461e-06 + art_sys_138: 1.91810006e-21 + art_sys_139: 8.86633462e-13 + art_sys_140: 1.03509783e-10 + art_sys_141: -3.38404898e-11 + art_sys_142: -4.33273092e-11 + art_sys_143: -5.09632534e-07 + art_sys_144: -8.85856712e-07 + art_sys_145: -8.81419069e-07 + art_sys_146: -0.0 + art_sys_147: -1.67311859e-07 + art_sys_148: 1.44037978e-10 + art_sys_149: 1.44037978e-10 + art_sys_150: 1.13066653e-10 + art_sys_151: 1.13066653e-10 + art_sys_152: 3.89591926e-10 + art_sys_153: -3.48531390e-08 + art_sys_154: 2.29687328e-08 + art_sys_155: -4.80507470e-20 + art_sys_156: 4.71386558e-23 + art_sys_157: -3.31143226e-23 + art_sys_158: -0.0 + art_sys_159: 2.32541479e-08 + art_sys_160: -5.84392542e-08 + art_sys_161: -2.39508214e-07 + art_sys_162: 1.11582665e-07 + art_sys_163: -8.92042086e-07 + art_sys_164: -1.75891980e-06 + art_sys_165: 9.41769736e-07 + art_sys_166: 1.49291417e-15 + art_sys_167: -1.03082578e-15 + art_sys_168: -1.32639495e-15 + art_sys_169: 3.20750908e-16 + art_sys_170: -7.22552523e-17 + art_sys_171: 6.53053131e-17 + art_sys_172: -1.44809286e-18 + art_sys_173: 3.94059976e-18 + art_sys_174: 5.95164967e-18 + art_sys_175: 2.71957770e-19 + art_sys_176: 2.52235503e-18 + art_sys_177: 2.62783194e-18 + art_sys_178: -1.45960651e-18 + art_sys_179: 1.79659805e-18 + art_sys_180: -6.20026401e-19 + art_sys_181: 4.13966025e-19 + art_sys_182: 2.22972202e-19 + art_sys_183: -1.12952613e-19 + art_sys_184: 5.73009247e-20 + art_sys_185: -1.38094634e-20 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -39857,149 +39857,149 @@ bins: art_sys_40: 0.0 art_sys_41: 0.0 art_sys_42: 0.0 - art_sys_43: 6.25405292e-213 - art_sys_44: 1.02424650e-205 - art_sys_45: -5.42846944e-73 - art_sys_46: -3.28313755e-73 - art_sys_47: 4.62386914e-65 - art_sys_48: -6.49765760e-58 - art_sys_49: -5.01999203e-49 - art_sys_50: -5.89228677e-49 - art_sys_51: -4.88539080e-26 - art_sys_52: 4.10946629e-25 - art_sys_53: -2.48095933e-44 - art_sys_54: -1.14005871e-45 - art_sys_55: 1.53524867e-45 - art_sys_56: 4.52722718e-47 - art_sys_57: 9.90131900e-47 - art_sys_58: 1.99121832e-47 - art_sys_59: 3.18773093e-24 - art_sys_60: 1.76557990e-22 - art_sys_61: -1.92859028e-21 - art_sys_62: -3.74634878e-20 - art_sys_63: 8.57572565e-20 - art_sys_64: -4.75799892e-38 - art_sys_65: 2.10149065e-19 - art_sys_66: -7.84425669e-19 - art_sys_67: -2.35246880e-17 - art_sys_68: -2.32132230e-36 - art_sys_69: 1.96027739e-35 - art_sys_70: -6.91697182e-35 - art_sys_71: 2.91215553e-35 - art_sys_72: 1.01750791e-33 - art_sys_73: 7.14437417e-35 - art_sys_74: -2.65514479e-35 - art_sys_75: 2.01482105e-16 - art_sys_76: 3.08402114e-15 - art_sys_77: 1.10605697e-14 - art_sys_78: -3.00561547e-32 - art_sys_79: -3.32602028e-31 - art_sys_80: -4.92392207e-14 - art_sys_81: -7.89733277e-14 - art_sys_82: -5.01172577e-13 - art_sys_83: -1.49083090e-29 - art_sys_84: 1.18491321e-29 - art_sys_85: -1.10260368e-30 - art_sys_86: 3.79709786e-30 - art_sys_87: 2.18166009e-30 - art_sys_88: -2.05039363e-12 - art_sys_89: -8.76488424e-30 - art_sys_90: -2.04619340e-29 - art_sys_91: -6.03519504e-29 - art_sys_92: -1.03416342e-29 - art_sys_93: 6.04841205e-31 - art_sys_94: -1.85254031e-29 - art_sys_95: 2.27604363e-29 - art_sys_96: 5.29841438e-27 - art_sys_97: -4.39847300e-27 - art_sys_98: -1.51501085e-27 - art_sys_99: -2.04266319e-26 - art_sys_100: 7.50090878e-11 - art_sys_101: -1.76272348e-10 - art_sys_102: 1.21745167e-26 - art_sys_103: -4.73504699e-27 - art_sys_104: 2.99065998e-27 - art_sys_105: -1.08795215e-26 - art_sys_106: 7.48959336e-28 - art_sys_107: -3.21921714e-27 - art_sys_108: 2.50846487e-23 - art_sys_109: 3.97462240e-27 - art_sys_110: 8.88186475e-27 - art_sys_111: 9.84410023e-19 - art_sys_112: -5.23267019e-25 - art_sys_113: -1.44544840e-23 - art_sys_114: 5.67031730e-25 - art_sys_115: 4.01413387e-24 - art_sys_116: 3.78380071e-24 - art_sys_117: 1.23820389e-24 - art_sys_118: 1.45596354e-23 - art_sys_119: 3.79601275e-19 - art_sys_120: -5.93390823e-19 - art_sys_121: -7.83555524e-19 - art_sys_122: -2.04862899e-17 - art_sys_123: 1.17882617e-20 - art_sys_124: 1.84617494e-15 - art_sys_125: 1.30988680e-19 - art_sys_126: 1.04740089e-14 - art_sys_127: -8.93662048e-17 - art_sys_128: -1.99274830e-13 - art_sys_129: 4.93534392e-13 - art_sys_130: 1.21160591e-13 - art_sys_131: 3.09144895e-13 - art_sys_132: 6.56239290e-15 - art_sys_133: 1.23701004e-12 - art_sys_134: -1.63318961e-10 - art_sys_135: 9.36566046e-10 - art_sys_136: 8.30593980e-10 - art_sys_137: -1.01639831e-08 - art_sys_138: 1.45443738e-08 - art_sys_139: 1.51969319e-07 - art_sys_140: -3.50298596e-08 - art_sys_141: 1.14772191e-06 - art_sys_142: -8.15472846e-08 - art_sys_143: -5.55640162e-07 - art_sys_144: 1.53630023e-14 - art_sys_145: 4.07089367e-14 - art_sys_146: -2.59307347e-14 - art_sys_147: 9.42179876e-15 - art_sys_148: -1.21830084e-14 - art_sys_149: 6.03929162e-15 - art_sys_150: -8.36264159e-15 - art_sys_151: 8.91095331e-15 - art_sys_152: -1.04999886e-15 - art_sys_153: -5.42734795e-16 - art_sys_154: -9.82793473e-16 - art_sys_155: 2.38789450e-16 - art_sys_156: 1.34585932e-16 - art_sys_157: -1.31230691e-16 - art_sys_158: -2.60245286e-17 - art_sys_159: 1.34265314e-17 - art_sys_160: 8.43703842e-18 - art_sys_161: -1.94105767e-18 - art_sys_162: 7.78745725e-19 - art_sys_163: 2.51011128e-19 - art_sys_164: 3.36672374e-19 - art_sys_165: 2.14738538e-19 - art_sys_166: 9.50500490e-20 - art_sys_167: -5.65961021e-20 - art_sys_168: -5.00873057e-07 - art_sys_169: 1.39881645e-20 - art_sys_170: -4.05099424e-06 - art_sys_171: -3.88886863e-06 - art_sys_172: 1.00512617e-21 - art_sys_173: 3.63684267e-21 - art_sys_174: 1.47004154e-08 - art_sys_175: 0.0 - art_sys_176: -8.58253584e-07 - art_sys_177: 0.0 - art_sys_178: 3.36644381e-07 - art_sys_179: -3.25082472e-08 - art_sys_180: -4.31660834e-13 - art_sys_181: 1.72966242e-21 - art_sys_182: 0.0 - art_sys_183: 8.72327837e-20 - art_sys_184: -1.89306028e-20 - art_sys_185: 5.06650732e-21 + art_sys_43: -5.42575220e-199 + art_sys_44: 3.32336837e-191 + art_sys_45: -2.19849371e-64 + art_sys_46: 1.33674792e-60 + art_sys_47: -3.31220584e-55 + art_sys_48: 3.84982709e-47 + art_sys_49: -4.88539080e-26 + art_sys_50: -4.10946629e-25 + art_sys_51: -3.18773093e-24 + art_sys_52: -1.76557990e-22 + art_sys_53: 1.92859028e-21 + art_sys_54: -3.74634878e-20 + art_sys_55: 1.95962266e-39 + art_sys_56: 1.02251414e-37 + art_sys_57: -1.87358167e-40 + art_sys_58: 8.57572565e-20 + art_sys_59: -2.10149065e-19 + art_sys_60: -2.94903444e-37 + art_sys_61: 1.30653272e-37 + art_sys_62: -1.64795573e-37 + art_sys_63: 2.72075350e-37 + art_sys_64: -2.77259725e-37 + art_sys_65: 7.84425669e-19 + art_sys_66: 2.35246880e-17 + art_sys_67: 3.33852485e-36 + art_sys_68: -2.45250018e-35 + art_sys_69: 9.16496777e-35 + art_sys_70: -2.56395087e-35 + art_sys_71: 4.87772926e-36 + art_sys_72: -2.11505637e-33 + art_sys_73: 9.73670958e-15 + art_sys_74: 2.27329954e-14 + art_sys_75: 4.70476627e-15 + art_sys_76: -2.01482105e-16 + art_sys_77: -1.09867429e-31 + art_sys_78: -3.15163636e-29 + art_sys_79: -3.33317508e-14 + art_sys_80: 3.08402115e-15 + art_sys_81: 6.13541342e-15 + art_sys_82: 8.83513962e-16 + art_sys_83: -1.10605696e-14 + art_sys_84: -3.09866268e-15 + art_sys_85: 2.88756733e-15 + art_sys_86: -4.92392207e-14 + art_sys_87: -9.78834911e-30 + art_sys_88: -7.89733277e-14 + art_sys_89: 5.01172577e-13 + art_sys_90: 7.38917546e-30 + art_sys_91: -4.12492633e-26 + art_sys_92: 8.07770889e-29 + art_sys_93: 1.35067825e-29 + art_sys_94: -2.99708745e-27 + art_sys_95: -1.52291174e-29 + art_sys_96: 2.05039364e-12 + art_sys_97: 2.92228381e-27 + art_sys_98: 2.01958762e-28 + art_sys_99: -2.95479232e-29 + art_sys_100: -7.05574529e-28 + art_sys_101: -1.10987372e-26 + art_sys_102: -5.97111960e-28 + art_sys_103: -3.37648844e-26 + art_sys_104: -8.82670528e-27 + art_sys_105: -1.17385180e-26 + art_sys_106: 4.79038245e-26 + art_sys_107: -7.50092070e-11 + art_sys_108: 1.76272892e-10 + art_sys_109: 9.36567906e-10 + art_sys_110: 3.19435109e-24 + art_sys_111: -2.20245623e-26 + art_sys_112: 1.58095385e-24 + art_sys_113: -8.30585386e-10 + art_sys_114: 1.13511637e-25 + art_sys_115: -4.57224651e-24 + art_sys_116: 8.46719965e-25 + art_sys_117: -3.83130566e-26 + art_sys_118: -5.77754895e-20 + art_sys_119: -9.06127511e-26 + art_sys_120: -2.41336549e-23 + art_sys_121: 3.45059525e-17 + art_sys_122: -1.87627462e-25 + art_sys_123: -8.49731630e-22 + art_sys_124: -1.71087026e-14 + art_sys_125: -4.56481642e-20 + art_sys_126: -1.16578852e-13 + art_sys_127: 5.20001139e-20 + art_sys_128: -5.15769398e-13 + art_sys_129: 7.74426350e-19 + art_sys_130: -1.69985955e-13 + art_sys_131: -3.93910988e-16 + art_sys_132: 3.30647865e-17 + art_sys_133: -8.66421260e-13 + art_sys_134: -5.07896486e-07 + art_sys_135: 1.13868305e-15 + art_sys_136: -8.25232914e-13 + art_sys_137: 4.03307026e-06 + art_sys_138: 1.43317019e-22 + art_sys_139: 3.74865198e-13 + art_sys_140: 4.35429072e-11 + art_sys_141: -9.66739603e-12 + art_sys_142: 3.83143039e-12 + art_sys_143: 3.93536799e-06 + art_sys_144: 4.75490921e-08 + art_sys_145: 8.26766084e-07 + art_sys_146: 0.0 + art_sys_147: 2.70714010e-07 + art_sys_148: -7.97329342e-10 + art_sys_149: -7.97329342e-10 + art_sys_150: -1.05868825e-10 + art_sys_151: -1.05868825e-10 + art_sys_152: -1.02593030e-09 + art_sys_153: 5.98948425e-08 + art_sys_154: -3.93955278e-08 + art_sys_155: 8.82118209e-20 + art_sys_156: -7.05792390e-23 + art_sys_157: 6.04937255e-23 + art_sys_158: 0.0 + art_sys_159: 1.01638726e-08 + art_sys_160: 1.45445361e-08 + art_sys_161: -3.50499860e-08 + art_sys_162: 1.51969758e-07 + art_sys_163: 8.09314000e-08 + art_sys_164: -5.55673870e-07 + art_sys_165: -1.14910702e-06 + art_sys_166: 8.11103006e-16 + art_sys_167: -1.35754841e-16 + art_sys_168: -8.11655856e-16 + art_sys_169: 2.35771478e-16 + art_sys_170: -1.65020503e-16 + art_sys_171: 2.12161595e-16 + art_sys_172: 4.61504528e-17 + art_sys_173: -2.96692364e-17 + art_sys_174: -2.69116393e-17 + art_sys_175: -2.75180672e-19 + art_sys_176: -3.75611136e-18 + art_sys_177: -3.14733153e-18 + art_sys_178: 2.53325245e-18 + art_sys_179: -1.93467794e-18 + art_sys_180: 9.09137860e-19 + art_sys_181: -4.39339844e-19 + art_sys_182: -2.66407162e-19 + art_sys_183: 1.24755078e-19 + art_sys_184: -5.78433318e-20 + art_sys_185: 1.24642030e-20 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -40148,149 +40148,149 @@ bins: art_sys_40: 0.0 art_sys_41: 0.0 art_sys_42: 0.0 - art_sys_43: -3.44109224e-214 - art_sys_44: -5.63558819e-207 - art_sys_45: 2.98895274e-74 - art_sys_46: 1.80771820e-74 - art_sys_47: -2.54593426e-66 - art_sys_48: 3.57765512e-59 - art_sys_49: 2.76404226e-50 - art_sys_50: 3.24433376e-50 - art_sys_51: 2.68992989e-27 - art_sys_52: -1.05202758e-25 - art_sys_53: 6.15619084e-45 - art_sys_54: 2.69438787e-46 - art_sys_55: -4.02721455e-46 - art_sys_56: -6.98256061e-48 - art_sys_57: -3.49630149e-47 - art_sys_58: 8.74323853e-47 - art_sys_59: 7.81142500e-25 - art_sys_60: 1.27999187e-23 - art_sys_61: -2.02928855e-22 - art_sys_62: -2.42751732e-21 - art_sys_63: 6.28895478e-21 - art_sys_64: -3.48226944e-39 - art_sys_65: 1.88434804e-20 - art_sys_66: 4.28236886e-19 - art_sys_67: -1.97412070e-18 - art_sys_68: 3.56171221e-37 - art_sys_69: 5.06832094e-36 - art_sys_70: -5.23734457e-36 - art_sys_71: 2.57821529e-36 - art_sys_72: 1.36039883e-34 - art_sys_73: 7.73112111e-36 - art_sys_74: -2.35431154e-36 - art_sys_75: 2.58065164e-17 - art_sys_76: 2.29073936e-16 - art_sys_77: 9.50612920e-16 - art_sys_78: -2.59874033e-33 - art_sys_79: -4.00577488e-32 - art_sys_80: -5.73965253e-15 - art_sys_81: 2.31819662e-14 - art_sys_82: 1.39614180e-14 - art_sys_83: 5.99561921e-31 - art_sys_84: -1.78017087e-31 - art_sys_85: 3.14770055e-31 - art_sys_86: -2.35843480e-31 - art_sys_87: -1.36226556e-31 - art_sys_88: 1.16753988e-14 - art_sys_89: -1.08094504e-31 - art_sys_90: 2.93526752e-32 - art_sys_91: 4.54885575e-31 - art_sys_92: 2.07367995e-31 - art_sys_93: 2.00535552e-32 - art_sys_94: 5.13150140e-32 - art_sys_95: -9.00981707e-32 - art_sys_96: -5.48226141e-28 - art_sys_97: -4.39440545e-28 - art_sys_98: 1.37384546e-27 - art_sys_99: 1.74981022e-27 - art_sys_100: 1.39575518e-11 - art_sys_101: 1.67270663e-11 - art_sys_102: -7.84291578e-28 - art_sys_103: 6.49086708e-28 - art_sys_104: -2.35329578e-28 - art_sys_105: -2.62353555e-28 - art_sys_106: -2.89445647e-28 - art_sys_107: 3.03710492e-28 - art_sys_108: 1.01876959e-23 - art_sys_109: -2.57718267e-28 - art_sys_110: 1.45016476e-27 - art_sys_111: 1.01253803e-19 - art_sys_112: -7.38435965e-26 - art_sys_113: -1.61829337e-24 - art_sys_114: 8.33088387e-26 - art_sys_115: 2.33488833e-24 - art_sys_116: 1.73429007e-24 - art_sys_117: -1.14022627e-24 - art_sys_118: -1.40406021e-22 - art_sys_119: 1.71269373e-19 - art_sys_120: 1.76584796e-19 - art_sys_121: 6.38211549e-20 - art_sys_122: 2.11352140e-17 - art_sys_123: 1.39108282e-20 - art_sys_124: -2.10683621e-15 - art_sys_125: -7.59428444e-20 - art_sys_126: -5.49247986e-15 - art_sys_127: 7.77695006e-17 - art_sys_128: 1.74434601e-13 - art_sys_129: -4.47919110e-13 - art_sys_130: -1.11917768e-13 - art_sys_131: -2.85637534e-13 - art_sys_132: -6.06622437e-15 - art_sys_133: -1.14331151e-12 - art_sys_134: 1.49342227e-10 - art_sys_135: 1.46702217e-10 - art_sys_136: -4.41897847e-10 - art_sys_137: -6.55204286e-10 - art_sys_138: 4.92404117e-09 - art_sys_139: 1.71469470e-08 - art_sys_140: 6.61740236e-09 - art_sys_141: 2.69264582e-07 - art_sys_142: -6.95773327e-08 - art_sys_143: 4.38651157e-08 - art_sys_144: 1.43130555e-14 - art_sys_145: 1.49913866e-14 - art_sys_146: -1.06987121e-14 - art_sys_147: -2.10240237e-15 - art_sys_148: 5.18220414e-15 - art_sys_149: -2.49516373e-15 - art_sys_150: 3.61437986e-15 - art_sys_151: -4.84659084e-15 - art_sys_152: 6.32713394e-16 - art_sys_153: 3.08369712e-16 - art_sys_154: 6.28276855e-16 - art_sys_155: -1.31750604e-16 - art_sys_156: -7.03730637e-17 - art_sys_157: 8.23100927e-17 - art_sys_158: 1.67435734e-17 - art_sys_159: -8.52536856e-18 - art_sys_160: -4.43293797e-18 - art_sys_161: -9.30938815e-20 - art_sys_162: -1.44342225e-18 - art_sys_163: -4.26218863e-19 - art_sys_164: -5.04961377e-19 - art_sys_165: -2.53330121e-19 - art_sys_166: -1.10130348e-19 - art_sys_167: 2.24502391e-20 - art_sys_168: 5.62055818e-07 - art_sys_169: -2.64113332e-20 - art_sys_170: -3.00749089e-07 - art_sys_171: -2.24099546e-06 - art_sys_172: -1.39817827e-20 - art_sys_173: -8.67622100e-21 - art_sys_174: -2.55577661e-06 - art_sys_175: 0.0 - art_sys_176: 3.48442587e-07 - art_sys_177: 0.0 - art_sys_178: -4.87921710e-07 - art_sys_179: 6.41274952e-08 - art_sys_180: 9.59780227e-13 - art_sys_181: -3.33203529e-21 - art_sys_182: 0.0 - art_sys_183: -7.04791297e-21 - art_sys_184: 4.98211975e-20 - art_sys_185: -9.63375985e-21 + art_sys_43: 2.98742476e-200 + art_sys_44: -1.82985005e-192 + art_sys_45: 1.21050581e-65 + art_sys_46: -7.36022631e-62 + art_sys_47: 1.82372340e-56 + art_sys_48: -2.11974137e-48 + art_sys_49: 2.68992989e-27 + art_sys_50: 1.05202758e-25 + art_sys_51: -7.81142500e-25 + art_sys_52: -1.27999187e-23 + art_sys_53: 2.02928855e-22 + art_sys_54: -2.42751732e-21 + art_sys_55: 2.66177625e-41 + art_sys_56: 7.77636958e-39 + art_sys_57: 2.33632413e-41 + art_sys_58: 6.28895478e-21 + art_sys_59: -1.88434804e-20 + art_sys_60: -2.59854947e-38 + art_sys_61: 1.13299278e-38 + art_sys_62: -1.59899333e-38 + art_sys_63: 2.56665794e-38 + art_sys_64: -2.54854330e-38 + art_sys_65: -4.28236886e-19 + art_sys_66: 1.97412070e-18 + art_sys_67: 1.86006774e-36 + art_sys_68: -2.84105377e-36 + art_sys_69: 6.84867138e-36 + art_sys_70: -3.92651421e-36 + art_sys_71: 1.45470087e-36 + art_sys_72: -2.70981464e-34 + art_sys_73: 9.46703066e-15 + art_sys_74: 1.58025010e-14 + art_sys_75: -1.00493902e-14 + art_sys_76: -2.58065164e-17 + art_sys_77: -1.41149980e-32 + art_sys_78: -4.03663681e-30 + art_sys_79: -1.26448776e-13 + art_sys_80: 2.29073936e-16 + art_sys_81: 2.52241306e-14 + art_sys_82: 2.28251168e-14 + art_sys_83: -9.50612920e-16 + art_sys_84: -2.10025466e-14 + art_sys_85: 2.02410301e-14 + art_sys_86: -5.73965253e-15 + art_sys_87: -6.87739894e-31 + art_sys_88: 2.31819662e-14 + art_sys_89: -1.39614180e-14 + art_sys_90: 1.13664920e-30 + art_sys_91: -3.06901082e-27 + art_sys_92: 4.14182621e-30 + art_sys_93: 1.61484875e-30 + art_sys_94: -2.57877724e-28 + art_sys_95: -1.16286393e-30 + art_sys_96: -1.16753989e-14 + art_sys_97: 2.50342553e-28 + art_sys_98: 1.13739004e-29 + art_sys_99: -5.33493141e-30 + art_sys_100: -6.50428902e-29 + art_sys_101: -8.28583814e-28 + art_sys_102: -4.42484689e-29 + art_sys_103: -4.27133549e-27 + art_sys_104: -2.04283299e-27 + art_sys_105: 2.52373574e-27 + art_sys_106: 8.14354887e-27 + art_sys_107: -1.39575259e-11 + art_sys_108: -1.67269845e-11 + art_sys_109: 1.46702500e-10 + art_sys_110: 3.59571791e-25 + art_sys_111: -1.99590549e-27 + art_sys_112: -3.55960963e-25 + art_sys_113: 4.41898380e-10 + art_sys_114: -6.13223315e-26 + art_sys_115: -2.20211627e-25 + art_sys_116: 1.89301489e-25 + art_sys_117: 1.09809700e-26 + art_sys_118: -8.01304906e-21 + art_sys_119: -1.78194439e-26 + art_sys_120: -1.11433523e-23 + art_sys_121: 5.10100088e-18 + art_sys_122: -1.15269723e-24 + art_sys_123: 4.74256678e-22 + art_sys_124: -1.94521736e-15 + art_sys_125: -7.19129013e-21 + art_sys_126: -1.76344799e-14 + art_sys_127: 6.75304443e-21 + art_sys_128: -5.99945878e-14 + art_sys_129: -4.55745571e-21 + art_sys_130: 1.71630002e-15 + art_sys_131: 2.35869112e-17 + art_sys_132: -4.67046736e-18 + art_sys_133: 1.81453729e-13 + art_sys_134: 5.62307101e-07 + art_sys_135: -1.40998246e-16 + art_sys_136: 1.33107026e-13 + art_sys_137: 2.87757555e-07 + art_sys_138: -1.37320553e-22 + art_sys_139: -9.14962889e-15 + art_sys_140: -1.09366299e-12 + art_sys_141: 9.04049614e-13 + art_sys_142: 2.69461115e-12 + art_sys_143: 2.37992681e-06 + art_sys_144: 2.56281943e-06 + art_sys_145: -2.48099773e-07 + art_sys_146: 0.0 + art_sys_147: -4.38172970e-07 + art_sys_148: 1.08844305e-09 + art_sys_149: 1.08844305e-09 + art_sys_150: 1.85933377e-10 + art_sys_151: 1.85933377e-10 + art_sys_152: 1.49755151e-09 + art_sys_153: -9.66357508e-08 + art_sys_154: 7.61537063e-08 + art_sys_155: -1.52160226e-19 + art_sys_156: 1.29039527e-22 + art_sys_157: -1.26667155e-22 + art_sys_158: -0.0 + art_sys_159: 6.55181952e-10 + art_sys_160: 4.92409848e-09 + art_sys_161: 6.61718267e-09 + art_sys_162: 1.71470342e-08 + art_sys_163: 6.96455476e-08 + art_sys_164: 4.38348424e-08 + art_sys_165: -2.67813420e-07 + art_sys_166: 4.58527565e-16 + art_sys_167: 3.85732705e-16 + art_sys_168: -4.00288540e-16 + art_sys_169: -1.69839798e-16 + art_sys_170: -1.04917910e-16 + art_sys_171: 6.55996416e-17 + art_sys_172: 2.15515479e-17 + art_sys_173: -2.44299858e-17 + art_sys_174: -1.22785041e-17 + art_sys_175: 1.47721707e-19 + art_sys_176: -2.24131094e-18 + art_sys_177: -2.00460131e-18 + art_sys_178: -2.33602588e-19 + art_sys_179: -4.81469278e-19 + art_sys_180: -1.31425284e-19 + art_sys_181: -2.89304803e-21 + art_sys_182: 8.25862434e-20 + art_sys_183: -1.74847073e-20 + art_sys_184: 1.32631744e-20 + art_sys_185: 2.86855289e-21 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -40439,149 +40439,149 @@ bins: art_sys_40: 0.0 art_sys_41: 0.0 art_sys_42: 0.0 - art_sys_43: -6.24952897e-215 - art_sys_44: -1.02350560e-207 - art_sys_45: 5.42823090e-75 - art_sys_46: 3.28299328e-75 - art_sys_47: -4.62366596e-67 - art_sys_48: 6.49737208e-60 - art_sys_49: 5.01977144e-51 - art_sys_50: 5.89202785e-51 - art_sys_51: 4.88517613e-28 - art_sys_52: -1.85361059e-26 - art_sys_53: 1.08497404e-45 - art_sys_54: 4.75067930e-47 - art_sys_55: -7.09427574e-47 - art_sys_56: -1.24420225e-48 - art_sys_57: -6.14762488e-48 - art_sys_58: 1.37081040e-47 - art_sys_59: 1.10305955e-25 - art_sys_60: 1.08795800e-24 - art_sys_61: -2.99808523e-23 - art_sys_62: -1.37111886e-22 - art_sys_63: 4.77718831e-22 - art_sys_64: -2.47652887e-40 - art_sys_65: 1.63180738e-21 - art_sys_66: 1.42181339e-19 - art_sys_67: 1.87062431e-20 - art_sys_68: 1.58166077e-37 - art_sys_69: 9.67558425e-37 - art_sys_70: 2.17287020e-37 - art_sys_71: 1.60631597e-38 - art_sys_72: 8.13377695e-36 - art_sys_73: 1.67612983e-37 - art_sys_74: -1.47270329e-38 - art_sys_75: 1.36728215e-18 - art_sys_76: 1.06453686e-17 - art_sys_77: 3.70690699e-17 - art_sys_78: -9.39243614e-35 - art_sys_79: -2.62348621e-33 - art_sys_80: -3.63332719e-16 - art_sys_81: 6.94831521e-15 - art_sys_82: 1.39992319e-14 - art_sys_83: 4.58984832e-31 - art_sys_84: -3.00556812e-31 - art_sys_85: 9.63984235e-32 - art_sys_86: -1.24418248e-31 - art_sys_87: -7.97566106e-32 - art_sys_88: 5.17222114e-14 - art_sys_89: 1.84250750e-31 - art_sys_90: 4.91320158e-31 - art_sys_91: 1.54397001e-30 - art_sys_92: 5.94641395e-31 - art_sys_93: -1.02560553e-32 - art_sys_94: 4.50203062e-31 - art_sys_95: -5.78712884e-31 - art_sys_96: -2.81626449e-28 - art_sys_97: 4.33835888e-29 - art_sys_98: 3.39491411e-28 - art_sys_99: 1.00816323e-27 - art_sys_100: 6.40182620e-13 - art_sys_101: 9.04521202e-12 - art_sys_102: -5.45566193e-28 - art_sys_103: 2.85810646e-28 - art_sys_104: -1.43902796e-28 - art_sys_105: 2.97152984e-28 - art_sys_106: -8.47923306e-29 - art_sys_107: 1.58969784e-28 - art_sys_108: 3.08829552e-26 - art_sys_109: -1.78522443e-28 - art_sys_110: -8.80418308e-29 - art_sys_111: -2.96742379e-20 - art_sys_112: 1.15026463e-26 - art_sys_113: 4.10810896e-25 - art_sys_114: -1.47597515e-26 - art_sys_115: -1.21453044e-26 - art_sys_116: 9.67788141e-26 - art_sys_117: -3.80966853e-25 - art_sys_118: -3.38267363e-23 - art_sys_119: 1.51585586e-20 - art_sys_120: 7.63234720e-20 - art_sys_121: 7.30616905e-20 - art_sys_122: 6.81495666e-18 - art_sys_123: 2.18199315e-21 - art_sys_124: -6.60203125e-16 - art_sys_125: -3.04314860e-20 - art_sys_126: -2.30342265e-15 - art_sys_127: 2.64479927e-17 - art_sys_128: 5.92041068e-14 - art_sys_129: -1.50281460e-13 - art_sys_130: -3.73608118e-14 - art_sys_131: -9.53453637e-14 - art_sys_132: -2.02462547e-15 - art_sys_133: -3.81600896e-13 - art_sys_134: 4.99966400e-11 - art_sys_135: -2.44215643e-12 - art_sys_136: -1.17143123e-10 - art_sys_137: 2.57599185e-10 - art_sys_138: 4.10138370e-10 - art_sys_139: -4.29460242e-09 - art_sys_140: 3.05224258e-09 - art_sys_141: -2.78354823e-08 - art_sys_142: -1.02487097e-08 - art_sys_143: 4.67267580e-08 - art_sys_144: 3.01419691e-15 - art_sys_145: 5.31274899e-15 - art_sys_146: -5.74668848e-16 - art_sys_147: 4.03283860e-16 - art_sys_148: 1.29896430e-15 - art_sys_149: -4.22519435e-16 - art_sys_150: 1.01633441e-15 - art_sys_151: -1.27569932e-15 - art_sys_152: 1.57972642e-16 - art_sys_153: 6.29885401e-17 - art_sys_154: 1.56251328e-16 - art_sys_155: -4.22198217e-17 - art_sys_156: -1.48628483e-17 - art_sys_157: 2.01697134e-17 - art_sys_158: 5.10754854e-18 - art_sys_159: -2.86068326e-18 - art_sys_160: -1.60444645e-18 - art_sys_161: 4.34084077e-19 - art_sys_162: 1.94200583e-18 - art_sys_163: 1.86716255e-19 - art_sys_164: 5.07175759e-19 - art_sys_165: 6.76431176e-20 - art_sys_166: 6.31704464e-20 - art_sys_167: 1.72160029e-20 - art_sys_168: 1.76980800e-07 - art_sys_169: 1.52387364e-20 - art_sys_170: 3.47636391e-07 - art_sys_171: -2.30595192e-07 - art_sys_172: 3.89749308e-21 - art_sys_173: -2.53565667e-20 - art_sys_174: -1.32998918e-06 - art_sys_175: 0.0 - art_sys_176: 1.23234934e-06 - art_sys_177: 0.0 - art_sys_178: 6.33412245e-07 - art_sys_179: -6.24189469e-08 - art_sys_180: -1.30821074e-12 - art_sys_181: 3.38575882e-21 - art_sys_182: 0.0 - art_sys_183: -2.37093685e-19 - art_sys_184: -6.69917365e-20 - art_sys_185: 9.07711143e-21 + art_sys_43: 5.42545815e-201 + art_sys_44: -3.32318826e-193 + art_sys_45: 2.19839710e-66 + art_sys_46: -1.33668918e-62 + art_sys_47: 3.31206030e-57 + art_sys_48: -3.84965792e-49 + art_sys_49: 4.88517613e-28 + art_sys_50: 1.85361059e-26 + art_sys_51: -1.10305955e-25 + art_sys_52: -1.08795800e-24 + art_sys_53: 2.99808523e-23 + art_sys_54: -1.37111886e-22 + art_sys_55: -2.23456778e-41 + art_sys_56: 6.35559676e-40 + art_sys_57: 9.74234802e-42 + art_sys_58: 4.77718831e-22 + art_sys_59: -1.63180738e-21 + art_sys_60: -2.22563904e-39 + art_sys_61: 9.57020498e-40 + art_sys_62: -1.44375003e-39 + art_sys_63: 2.31214328e-39 + art_sys_64: -2.23698850e-39 + art_sys_65: -1.42181339e-19 + art_sys_66: -1.87062431e-20 + art_sys_67: 3.85715536e-37 + art_sys_68: -2.03303412e-37 + art_sys_69: -3.16560911e-37 + art_sys_70: -4.88197775e-37 + art_sys_71: 2.94843313e-37 + art_sys_72: -1.54145994e-35 + art_sys_73: 8.87316395e-15 + art_sys_74: -1.58425020e-14 + art_sys_75: 1.88912492e-14 + art_sys_76: -1.36728215e-18 + art_sys_77: -6.77367553e-34 + art_sys_78: -2.13970011e-31 + art_sys_79: 3.94742957e-14 + art_sys_80: 1.06453686e-17 + art_sys_81: 3.39686584e-15 + art_sys_82: 5.23194855e-15 + art_sys_83: -3.70690699e-17 + art_sys_84: -9.62150568e-15 + art_sys_85: 1.46295973e-14 + art_sys_86: -3.63332720e-16 + art_sys_87: -4.68514947e-33 + art_sys_88: 6.94831521e-15 + art_sys_89: -1.39992319e-14 + art_sys_90: 1.82260353e-31 + art_sys_91: -1.42277411e-28 + art_sys_92: -2.74397581e-31 + art_sys_93: 2.40525015e-31 + art_sys_94: -1.01307079e-29 + art_sys_95: -3.33660272e-32 + art_sys_96: -5.17222117e-14 + art_sys_97: 9.52496294e-30 + art_sys_98: -1.16983420e-30 + art_sys_99: -9.85830379e-31 + art_sys_100: -2.70844935e-30 + art_sys_101: -3.97899992e-29 + art_sys_102: -2.00943783e-30 + art_sys_103: -2.55596597e-28 + art_sys_104: -1.14150395e-28 + art_sys_105: 8.81690357e-28 + art_sys_106: -1.79701870e-28 + art_sys_107: -6.40173466e-13 + art_sys_108: -9.04521425e-12 + art_sys_109: -2.44216304e-12 + art_sys_110: 1.98872738e-26 + art_sys_111: 2.66836657e-28 + art_sys_112: -1.14902710e-25 + art_sys_113: 1.17142902e-10 + art_sys_114: -1.62493403e-26 + art_sys_115: -3.10215479e-24 + art_sys_116: 2.71942267e-26 + art_sys_117: 2.64079884e-27 + art_sys_118: 1.36497773e-22 + art_sys_119: 1.68729440e-25 + art_sys_120: 5.56230428e-23 + art_sys_121: 8.60865313e-20 + art_sys_122: 2.47082034e-24 + art_sys_123: -3.36798906e-22 + art_sys_124: 2.72559023e-16 + art_sys_125: 9.77163706e-22 + art_sys_126: 1.14910274e-15 + art_sys_127: -1.22594803e-21 + art_sys_128: 1.42422516e-14 + art_sys_129: -4.67835572e-20 + art_sys_130: 1.03133254e-14 + art_sys_131: 2.83971151e-17 + art_sys_132: -3.10239905e-18 + art_sys_133: 9.77305025e-14 + art_sys_134: 1.77749132e-07 + art_sys_135: -1.10284075e-16 + art_sys_136: 8.75131848e-14 + art_sys_137: -3.49730509e-07 + art_sys_138: -2.36297288e-23 + art_sys_139: -2.71983267e-14 + art_sys_140: -3.17021733e-12 + art_sys_141: 8.77103254e-13 + art_sys_142: 4.67194039e-14 + art_sys_143: 3.25231009e-07 + art_sys_144: 1.32954547e-06 + art_sys_145: -1.30855431e-06 + art_sys_146: -0.0 + art_sys_147: 5.38870722e-07 + art_sys_148: -1.30938145e-09 + art_sys_149: -1.30938145e-09 + art_sys_150: -2.07709834e-10 + art_sys_151: -2.07709834e-10 + art_sys_152: -1.75355129e-09 + art_sys_153: 1.12874176e-07 + art_sys_154: -7.82735297e-08 + art_sys_155: 2.01643698e-19 + art_sys_156: -1.05661647e-22 + art_sys_157: 1.43175049e-22 + art_sys_158: 0.0 + art_sys_159: -2.57599355e-10 + art_sys_160: 4.10143401e-10 + art_sys_161: 3.05321155e-09 + art_sys_162: -4.29460594e-09 + art_sys_163: 1.03049592e-08 + art_sys_164: 4.67221496e-08 + art_sys_165: 2.83016316e-08 + art_sys_166: 2.54310133e-15 + art_sys_167: -1.80711514e-15 + art_sys_168: -2.58644909e-15 + art_sys_169: 6.76580723e-16 + art_sys_170: -2.24825925e-16 + art_sys_171: 2.26100607e-16 + art_sys_172: 2.01882032e-17 + art_sys_173: 6.28409705e-19 + art_sys_174: 3.72825548e-18 + art_sys_175: 2.59906581e-19 + art_sys_176: 5.67293926e-18 + art_sys_177: 5.11997358e-18 + art_sys_178: -3.02764668e-18 + art_sys_179: 3.86328008e-18 + art_sys_180: -1.20431597e-18 + art_sys_181: 1.00772659e-18 + art_sys_182: 4.10367210e-19 + art_sys_183: -2.43669958e-19 + art_sys_184: 1.42587010e-19 + art_sys_185: -4.19063874e-20 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -40730,149 +40730,149 @@ bins: art_sys_40: 0.0 art_sys_41: 0.0 art_sys_42: 0.0 - art_sys_43: -4.87169558e-218 - art_sys_44: -7.97853361e-211 - art_sys_45: 4.23252975e-78 - art_sys_46: 2.55983339e-78 - art_sys_47: -3.60518999e-70 - art_sys_48: 5.06616633e-63 - art_sys_49: 3.91404351e-54 - art_sys_50: 4.59416403e-54 - art_sys_51: 3.80909612e-31 - art_sys_52: -1.86010871e-29 - art_sys_53: 1.08660503e-48 - art_sys_54: 4.74236916e-50 - art_sys_55: -7.12994371e-50 - art_sys_56: -1.19669020e-51 - art_sys_57: -6.27981546e-51 - art_sys_58: 1.33392548e-50 - art_sys_59: 1.04737674e-28 - art_sys_60: 6.11669721e-28 - art_sys_61: -3.15066711e-26 - art_sys_62: 2.94781022e-26 - art_sys_63: 1.03498373e-25 - art_sys_64: -5.16580611e-44 - art_sys_65: 3.25068340e-25 - art_sys_66: 2.13326673e-22 - art_sys_67: 3.83623345e-22 - art_sys_68: 2.58044829e-40 - art_sys_69: 1.07518254e-39 - art_sys_70: 1.35765642e-39 - art_sys_71: -4.18808759e-40 - art_sys_72: -1.02388615e-38 - art_sys_73: -6.34202526e-40 - art_sys_74: 3.82466816e-40 - art_sys_75: -2.28059340e-21 - art_sys_76: -8.74768233e-22 - art_sys_77: -5.21314259e-20 - art_sys_78: 1.36373416e-37 - art_sys_79: 1.21269868e-36 - art_sys_80: 1.85205421e-19 - art_sys_81: 9.30766121e-18 - art_sys_82: 2.37463829e-17 - art_sys_83: 7.56129985e-34 - art_sys_84: -5.23677163e-34 - art_sys_85: 1.30481860e-34 - art_sys_86: -1.99217374e-34 - art_sys_87: -1.25929272e-34 - art_sys_88: 9.09109539e-17 - art_sys_89: 3.42547635e-34 - art_sys_90: 8.77657409e-34 - art_sys_91: 2.70151074e-33 - art_sys_92: 4.67706386e-34 - art_sys_93: -2.03941657e-35 - art_sys_94: 8.00771712e-34 - art_sys_95: -9.71810935e-34 - art_sys_96: -3.97894291e-31 - art_sys_97: 2.07936495e-31 - art_sys_98: 2.80047806e-31 - art_sys_99: 1.48393332e-30 - art_sys_100: -2.65112012e-15 - art_sys_101: 1.30245931e-14 - art_sys_102: -8.48345081e-31 - art_sys_103: 3.77442831e-31 - art_sys_104: -2.14550627e-31 - art_sys_105: 5.00510816e-31 - art_sys_106: -8.50483597e-32 - art_sys_107: 3.25829724e-31 - art_sys_108: -8.34491878e-26 - art_sys_109: -2.77462678e-31 - art_sys_110: -3.70353179e-31 - art_sys_111: -2.77634088e-22 - art_sys_112: 1.12316087e-28 - art_sys_113: 4.10248025e-27 - art_sys_114: -4.80922133e-28 - art_sys_115: -3.14181896e-26 - art_sys_116: -1.25694324e-26 - art_sys_117: 5.45273927e-28 - art_sys_118: 5.74006061e-25 - art_sys_119: -8.70522242e-23 - art_sys_120: 6.84677277e-22 - art_sys_121: 8.85671885e-22 - art_sys_122: -3.27450871e-20 - art_sys_123: -8.28694405e-23 - art_sys_124: 4.27709521e-18 - art_sys_125: -2.61104475e-22 - art_sys_126: -2.14606504e-17 - art_sys_127: 1.67077053e-20 - art_sys_128: 2.58870536e-17 - art_sys_129: 1.32013034e-16 - art_sys_130: 5.74779398e-17 - art_sys_131: 1.47538943e-16 - art_sys_132: 3.16455057e-18 - art_sys_133: 5.94556680e-16 - art_sys_134: -5.84439776e-14 - art_sys_135: -5.40964524e-14 - art_sys_136: -1.13390030e-13 - art_sys_137: 1.00130064e-12 - art_sys_138: -1.17900834e-12 - art_sys_139: -4.31864682e-11 - art_sys_140: 9.30589971e-12 - art_sys_141: -2.67504056e-09 - art_sys_142: -9.09553230e-13 - art_sys_143: 6.74446270e-10 - art_sys_144: 1.34190029e-14 - art_sys_145: -1.09876378e-14 - art_sys_146: 7.02394408e-15 - art_sys_147: 7.52508837e-15 - art_sys_148: -5.58782450e-15 - art_sys_149: 2.10196250e-15 - art_sys_150: -4.20438816e-15 - art_sys_151: 4.66950907e-15 - art_sys_152: -5.57479084e-16 - art_sys_153: -3.14911599e-16 - art_sys_154: -5.72367730e-16 - art_sys_155: 1.26680445e-16 - art_sys_156: 7.31758872e-17 - art_sys_157: -7.36050055e-17 - art_sys_158: -1.52331944e-17 - art_sys_159: 6.89690216e-18 - art_sys_160: 7.42564603e-18 - art_sys_161: -4.24146725e-18 - art_sys_162: 6.93400968e-19 - art_sys_163: -6.97677813e-19 - art_sys_164: 8.12894650e-20 - art_sys_165: 8.20053407e-20 - art_sys_166: 3.66864459e-20 - art_sys_167: -2.90311042e-20 - art_sys_168: -1.08766008e-09 - art_sys_169: 8.16534858e-21 - art_sys_170: 2.63935329e-08 - art_sys_171: 9.97722682e-08 - art_sys_172: 5.93594536e-21 - art_sys_173: -1.32174704e-20 - art_sys_174: 1.35024119e-07 - art_sys_175: 0.0 - art_sys_176: -7.08478650e-09 - art_sys_177: 0.0 - art_sys_178: 3.07350923e-07 - art_sys_179: 2.78695260e-07 - art_sys_180: 1.72741474e-10 - art_sys_181: -1.41240880e-19 - art_sys_182: 0.0 - art_sys_183: -1.42551721e-19 - art_sys_184: 2.00835395e-19 - art_sys_185: -4.29704183e-20 + art_sys_43: 4.23035177e-204 + art_sys_44: -2.59116465e-196 + art_sys_45: 1.71414615e-69 + art_sys_46: -1.04225056e-65 + art_sys_47: 2.58249768e-60 + art_sys_48: -3.00167623e-52 + art_sys_49: 3.80909612e-31 + art_sys_50: 1.86010871e-29 + art_sys_51: -1.04737674e-28 + art_sys_52: -6.11669721e-28 + art_sys_53: 3.15066711e-26 + art_sys_54: 2.94781022e-26 + art_sys_55: -4.40851607e-44 + art_sys_56: 1.98500953e-43 + art_sys_57: 1.51606097e-44 + art_sys_58: 1.03498373e-25 + art_sys_59: -3.25068340e-25 + art_sys_60: -4.39986344e-43 + art_sys_61: 1.80385840e-43 + art_sys_62: -2.86799425e-43 + art_sys_63: 5.16791279e-43 + art_sys_64: -4.39528869e-43 + art_sys_65: -2.13326673e-22 + art_sys_66: -3.83623345e-22 + art_sys_67: 4.07365151e-40 + art_sys_68: 8.93376707e-41 + art_sys_69: -1.84166826e-39 + art_sys_70: -3.02397712e-40 + art_sys_71: 3.42973255e-40 + art_sys_72: 2.64464532e-37 + art_sys_73: -1.59901216e-15 + art_sys_74: -6.79578813e-15 + art_sys_75: 8.10916650e-15 + art_sys_76: 2.28059340e-21 + art_sys_77: 3.06865765e-35 + art_sys_78: 3.16744475e-34 + art_sys_79: 1.44226119e-16 + art_sys_80: -8.74768233e-22 + art_sys_81: 5.66554389e-15 + art_sys_82: 6.16506080e-15 + art_sys_83: 5.21314259e-20 + art_sys_84: -7.28872709e-15 + art_sys_85: 9.19013673e-15 + art_sys_86: 1.85205421e-19 + art_sys_87: 1.00237274e-33 + art_sys_88: 9.30766121e-18 + art_sys_89: -2.37463829e-17 + art_sys_90: 1.50141565e-33 + art_sys_91: 1.34892034e-32 + art_sys_92: -2.11238522e-33 + art_sys_93: -4.23021019e-34 + art_sys_94: 1.37184451e-32 + art_sys_95: -1.49185553e-34 + art_sys_96: -9.09109543e-17 + art_sys_97: -1.42024462e-32 + art_sys_98: -3.25666693e-33 + art_sys_99: -1.23908536e-33 + art_sys_100: 3.61203772e-33 + art_sys_101: 1.22772685e-33 + art_sys_102: 3.13098771e-34 + art_sys_103: 2.76587793e-31 + art_sys_104: 4.32529950e-31 + art_sys_105: 9.81262089e-31 + art_sys_106: -3.30637836e-30 + art_sys_107: 2.65113068e-15 + art_sys_108: -1.30246254e-14 + art_sys_109: -5.40965572e-14 + art_sys_110: -1.73316395e-29 + art_sys_111: 1.23949684e-30 + art_sys_112: -1.57876332e-28 + art_sys_113: 1.13389184e-13 + art_sys_114: -1.57429652e-29 + art_sys_115: -1.54928724e-25 + art_sys_116: 2.74226182e-29 + art_sys_117: 6.10313042e-30 + art_sys_118: -2.74728675e-22 + art_sys_119: 1.04816170e-26 + art_sys_120: 3.90747112e-24 + art_sys_121: -2.17263980e-21 + art_sys_122: 2.55367711e-25 + art_sys_123: -8.10705925e-23 + art_sys_124: 1.68633326e-18 + art_sys_125: 5.75025359e-22 + art_sys_126: 1.33744644e-17 + art_sys_127: 1.06264442e-22 + art_sys_128: 1.58078330e-16 + art_sys_129: -1.74726946e-22 + art_sys_130: 9.79230776e-17 + art_sys_131: 2.95340815e-19 + art_sys_132: -3.30909896e-20 + art_sys_133: 1.19810530e-15 + art_sys_134: -1.04428228e-09 + art_sys_135: -1.67198275e-18 + art_sys_136: 1.28172166e-15 + art_sys_137: -2.62195085e-08 + art_sys_138: 6.57132239e-25 + art_sys_139: -5.32143940e-16 + art_sys_140: -6.42751064e-14 + art_sys_141: 4.45386589e-14 + art_sys_142: 5.49915008e-13 + art_sys_143: -3.06106914e-08 + art_sys_144: -1.68734742e-07 + art_sys_145: -8.05629773e-08 + art_sys_146: 0.0 + art_sys_147: 3.90738086e-07 + art_sys_148: -9.87699826e-10 + art_sys_149: -9.87699826e-10 + art_sys_150: -1.38933515e-10 + art_sys_151: -1.38933515e-10 + art_sys_152: -3.11792396e-09 + art_sys_153: 3.46753371e-07 + art_sys_154: 2.63301110e-07 + art_sys_155: 5.02115822e-19 + art_sys_156: 6.10154932e-22 + art_sys_157: -5.21933626e-22 + art_sys_158: -0.0 + art_sys_159: -1.00129072e-12 + art_sys_160: -1.17902144e-12 + art_sys_161: 9.31149285e-12 + art_sys_162: -4.31865425e-11 + art_sys_163: 1.68962860e-12 + art_sys_164: 6.74444232e-10 + art_sys_165: 2.67280947e-09 + art_sys_166: 3.23280269e-16 + art_sys_167: -2.93339217e-16 + art_sys_168: -8.33487203e-16 + art_sys_169: 2.03028418e-16 + art_sys_170: -2.03505047e-16 + art_sys_171: 1.99845954e-16 + art_sys_172: 5.01152748e-17 + art_sys_173: -2.48994753e-17 + art_sys_174: -2.27039519e-17 + art_sys_175: -7.31469400e-20 + art_sys_176: -3.14602936e-18 + art_sys_177: -2.34318857e-18 + art_sys_178: 1.24974973e-18 + art_sys_179: 3.08907433e-19 + art_sys_180: -1.05799824e-19 + art_sys_181: 2.70829977e-19 + art_sys_182: 6.80948301e-20 + art_sys_183: -8.25017922e-20 + art_sys_184: 2.68411206e-20 + art_sys_185: -1.53056134e-20 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -41021,149 +41021,149 @@ bins: art_sys_40: 0.0 art_sys_41: 0.0 art_sys_42: 0.0 - art_sys_43: -6.97048328e-221 - art_sys_44: -1.14157862e-213 - art_sys_45: 6.06081437e-81 - art_sys_46: 3.66557967e-81 - art_sys_47: -5.16248877e-73 - art_sys_48: 7.25454881e-66 - art_sys_49: 5.60475474e-57 - art_sys_50: 6.57866028e-57 - art_sys_51: 5.45447424e-34 - art_sys_52: -4.56269778e-32 - art_sys_53: 2.65762659e-51 - art_sys_54: 1.15438445e-52 - art_sys_55: -1.75275932e-52 - art_sys_56: -2.74874504e-54 - art_sys_57: -1.57880916e-53 - art_sys_58: 3.17945508e-53 - art_sys_59: 2.46717240e-31 - art_sys_60: -4.91848043e-31 - art_sys_61: -6.49182809e-29 - art_sys_62: 8.65467716e-28 - art_sys_63: -1.86437845e-27 - art_sys_64: 1.03334153e-45 - art_sys_65: -7.43743559e-27 - art_sys_66: 5.20483772e-25 - art_sys_67: 2.15165829e-24 - art_sys_68: 7.01671854e-43 - art_sys_69: 1.33414706e-42 - art_sys_70: 6.83963748e-42 - art_sys_71: -2.53634279e-42 - art_sys_72: -1.16332440e-40 - art_sys_73: -6.42034213e-42 - art_sys_74: 2.31612574e-42 - art_sys_75: -2.30580093e-23 - art_sys_76: 3.33328364e-23 - art_sys_77: -2.95882213e-22 - art_sys_78: 7.28646104e-40 - art_sys_79: 7.64686213e-39 - art_sys_80: 1.14805924e-21 - art_sys_81: 4.03433081e-20 - art_sys_82: 9.24222296e-20 - art_sys_83: 2.97908080e-36 - art_sys_84: -1.83883667e-36 - art_sys_85: 5.45725444e-37 - art_sys_86: -1.72960272e-36 - art_sys_87: -5.02314041e-37 - art_sys_88: -6.76270770e-20 - art_sys_89: -1.77272420e-37 - art_sys_90: -3.62709277e-37 - art_sys_91: -1.50833612e-36 - art_sys_92: -3.59944626e-37 - art_sys_93: -6.65832093e-37 - art_sys_94: -3.55252700e-37 - art_sys_95: 1.66410143e-37 - art_sys_96: 1.10631916e-32 - art_sys_97: -1.53212879e-33 - art_sys_98: -1.35654075e-32 - art_sys_99: -3.95274748e-32 - art_sys_100: -3.00035831e-17 - art_sys_101: -3.54745501e-16 - art_sys_102: 2.12933289e-32 - art_sys_103: -1.12518953e-32 - art_sys_104: 5.62294377e-33 - art_sys_105: 2.45552654e-32 - art_sys_106: 3.36183660e-33 - art_sys_107: -9.26404109e-33 - art_sys_108: 1.14894762e-26 - art_sys_109: 7.01000278e-33 - art_sys_110: -4.92143316e-32 - art_sys_111: 2.72732849e-23 - art_sys_112: -9.23774336e-30 - art_sys_113: -4.00836441e-28 - art_sys_114: 6.10043793e-29 - art_sys_115: 4.39535526e-27 - art_sys_116: 1.71713923e-27 - art_sys_117: -4.68857130e-29 - art_sys_118: -7.78610268e-26 - art_sys_119: 3.84389882e-24 - art_sys_120: -9.82306087e-23 - art_sys_121: -1.38869080e-22 - art_sys_122: 4.44230688e-21 - art_sys_123: 1.13456852e-23 - art_sys_124: -5.55187296e-19 - art_sys_125: 3.99066595e-23 - art_sys_126: 3.25096003e-18 - art_sys_127: -4.64277620e-21 - art_sys_128: -8.72536829e-18 - art_sys_129: -6.50972059e-18 - art_sys_130: -5.17013902e-18 - art_sys_131: -1.33159330e-17 - art_sys_132: -2.87256786e-19 - art_sys_133: -5.38723011e-17 - art_sys_134: 4.26592532e-15 - art_sys_135: 2.41179421e-16 - art_sys_136: 1.16794509e-14 - art_sys_137: -5.37037658e-14 - art_sys_138: -8.21950956e-15 - art_sys_139: 4.21900009e-12 - art_sys_140: -1.06603673e-12 - art_sys_141: 3.64956703e-10 - art_sys_142: 2.97060768e-12 - art_sys_143: -9.28803774e-11 - art_sys_144: 9.63553531e-15 - art_sys_145: -4.21805231e-15 - art_sys_146: 1.62319723e-16 - art_sys_147: 8.01840281e-15 - art_sys_148: -8.86447116e-15 - art_sys_149: 3.74874336e-15 - art_sys_150: -6.67458618e-15 - art_sys_151: 7.66436411e-15 - art_sys_152: -8.79655904e-16 - art_sys_153: -4.75794224e-16 - art_sys_154: -9.18838077e-16 - art_sys_155: 2.03169374e-16 - art_sys_156: 1.17806108e-16 - art_sys_157: -1.19984803e-16 - art_sys_158: -2.30846891e-17 - art_sys_159: 1.17413304e-17 - art_sys_160: 1.20610165e-17 - art_sys_161: -3.26612282e-19 - art_sys_162: -2.24449268e-19 - art_sys_163: -6.05853185e-19 - art_sys_164: -2.80144206e-19 - art_sys_165: -1.82155896e-19 - art_sys_166: -7.87756665e-20 - art_sys_167: 4.53429483e-20 - art_sys_168: 1.41780678e-10 - art_sys_169: -2.51715204e-20 - art_sys_170: -3.79524762e-09 - art_sys_171: -1.45169588e-08 - art_sys_172: -1.19008727e-20 - art_sys_173: 2.08985019e-20 - art_sys_174: -4.16282758e-08 - art_sys_175: 0.0 - art_sys_176: 1.30222282e-09 - art_sys_177: 0.0 - art_sys_178: -4.46664499e-08 - art_sys_179: -4.18309618e-08 - art_sys_180: 1.15478169e-09 - art_sys_181: -8.70091767e-19 - art_sys_182: 0.0 - art_sys_183: 1.11672900e-19 - art_sys_184: -7.48623380e-20 - art_sys_185: -9.29433223e-21 + art_sys_43: 6.05762241e-207 + art_sys_44: -3.71039995e-199 + art_sys_45: 2.45458916e-72 + art_sys_46: -1.49246138e-68 + art_sys_47: 3.69803403e-63 + art_sys_48: -4.29828105e-55 + art_sys_49: 5.45447424e-34 + art_sys_50: 4.56269778e-32 + art_sys_51: -2.46717240e-31 + art_sys_52: 4.91848043e-31 + art_sys_53: 6.49182809e-29 + art_sys_54: 8.65467716e-28 + art_sys_55: -1.86445928e-46 + art_sys_56: -2.11186413e-45 + art_sys_57: 5.40358032e-47 + art_sys_58: -1.86437845e-27 + art_sys_59: 7.43743559e-27 + art_sys_60: 1.00857853e-44 + art_sys_61: -4.36719322e-45 + art_sys_62: 6.80726202e-45 + art_sys_63: -1.03452067e-44 + art_sys_64: 1.03415718e-44 + art_sys_65: -5.20483772e-25 + art_sys_66: -2.15165829e-24 + art_sys_67: 9.44571012e-43 + art_sys_68: 1.57696622e-42 + art_sys_69: -9.16430340e-42 + art_sys_70: 7.32759861e-43 + art_sys_71: 4.97472488e-43 + art_sys_72: 1.85985249e-36 + art_sys_73: -1.23769027e-14 + art_sys_74: 1.37692563e-14 + art_sys_75: 3.56004468e-15 + art_sys_76: 2.30580093e-23 + art_sys_77: 3.41248286e-36 + art_sys_78: 8.58274829e-35 + art_sys_79: -7.48658299e-14 + art_sys_80: 3.33328364e-23 + art_sys_81: 2.80315146e-14 + art_sys_82: 2.30353404e-14 + art_sys_83: 2.95882213e-22 + art_sys_84: -2.76526642e-14 + art_sys_85: 3.19006173e-14 + art_sys_86: 1.14805924e-21 + art_sys_87: 3.15493186e-33 + art_sys_88: 4.03433081e-20 + art_sys_89: -9.24222296e-20 + art_sys_90: 4.31346930e-33 + art_sys_91: -1.80931162e-33 + art_sys_92: -4.48114321e-33 + art_sys_93: -2.90661761e-33 + art_sys_94: -8.22428001e-34 + art_sys_95: -1.44617826e-33 + art_sys_96: 6.76270774e-20 + art_sys_97: -6.29199203e-34 + art_sys_98: 1.81373121e-33 + art_sys_99: -4.10364200e-34 + art_sys_100: -3.61063300e-34 + art_sys_101: 1.10678957e-33 + art_sys_102: 4.30710052e-34 + art_sys_103: 2.79940237e-33 + art_sys_104: 2.25580559e-33 + art_sys_105: -3.36648737e-32 + art_sys_106: 1.66182622e-32 + art_sys_107: 3.00032241e-17 + art_sys_108: 3.54745698e-16 + art_sys_109: 2.41161332e-16 + art_sys_110: -1.95666200e-32 + art_sys_111: -1.63431560e-32 + art_sys_112: -6.37687645e-31 + art_sys_113: -1.16794065e-14 + art_sys_114: 1.61171810e-30 + art_sys_115: -1.54024873e-25 + art_sys_116: -5.13803953e-30 + art_sys_117: -7.27572631e-30 + art_sys_118: -4.06408570e-23 + art_sys_119: -7.80359357e-26 + art_sys_120: -3.58154595e-23 + art_sys_121: 5.06015040e-21 + art_sys_122: -3.08453011e-24 + art_sys_123: 1.15563586e-21 + art_sys_124: -7.98980166e-20 + art_sys_125: -1.11535628e-21 + art_sys_126: -7.15046400e-19 + art_sys_127: -4.30814856e-22 + art_sys_128: -1.61819080e-17 + art_sys_129: -8.00612825e-23 + art_sys_130: -1.21603640e-17 + art_sys_131: -3.94212939e-20 + art_sys_132: 5.29492949e-21 + art_sys_133: -1.69523984e-16 + art_sys_134: 1.35350869e-10 + art_sys_135: 2.34219342e-19 + art_sys_136: -1.81227065e-16 + art_sys_137: 2.95727106e-09 + art_sys_138: -1.61843884e-24 + art_sys_139: 4.99823245e-17 + art_sys_140: 5.18458098e-15 + art_sys_141: 1.84226882e-14 + art_sys_142: 7.94795880e-13 + art_sys_143: 1.60612334e-07 + art_sys_144: -4.04318891e-08 + art_sys_145: 2.75628976e-08 + art_sys_146: 0.0 + art_sys_147: -3.32976445e-07 + art_sys_148: 1.30409990e-09 + art_sys_149: 1.30409990e-09 + art_sys_150: 5.83162147e-10 + art_sys_151: 5.83162147e-10 + art_sys_152: 4.47858908e-09 + art_sys_153: -4.19243647e-07 + art_sys_154: -9.18494202e-09 + art_sys_155: -5.31372396e-19 + art_sys_156: -8.69889263e-23 + art_sys_157: 1.17109310e-22 + art_sys_158: 0.0 + art_sys_159: 5.37035057e-14 + art_sys_160: -8.21963891e-15 + art_sys_161: -1.06661355e-12 + art_sys_162: 4.21900288e-12 + art_sys_163: -3.07880532e-12 + art_sys_164: -9.28782259e-11 + art_sys_165: -3.64673930e-10 + art_sys_166: 2.74327632e-15 + art_sys_167: -1.96617887e-15 + art_sys_168: -2.51192859e-15 + art_sys_169: 4.47405070e-16 + art_sys_170: -1.22854607e-16 + art_sys_171: 8.92104294e-17 + art_sys_172: -1.12043452e-17 + art_sys_173: 5.84621180e-19 + art_sys_174: 5.04027611e-18 + art_sys_175: 4.27950457e-20 + art_sys_176: -1.91380543e-18 + art_sys_177: 1.63579358e-18 + art_sys_178: 7.05918776e-19 + art_sys_179: -4.26780417e-19 + art_sys_180: 3.57456523e-19 + art_sys_181: -2.77461003e-19 + art_sys_182: -8.73643331e-20 + art_sys_183: 5.80882487e-20 + art_sys_184: -2.31766174e-20 + art_sys_185: 9.81814104e-21 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -43946,134 +43946,134 @@ bins: art_sys_55: 0.0 art_sys_56: 0.0 art_sys_57: 0.0 - art_sys_58: 0.0 - art_sys_59: 0.0 - art_sys_60: 0.0 - art_sys_61: 0.0 - art_sys_62: 0.0 - art_sys_63: 0.0 - art_sys_64: 0.0 - art_sys_65: -4.91284904e-270 - art_sys_66: -5.86617354e-192 - art_sys_67: -1.99625977e-181 - art_sys_68: -6.42969814e-199 - art_sys_69: -2.06824873e-187 - art_sys_70: -2.86385286e-189 - art_sys_71: 9.49185824e-184 - art_sys_72: 4.45359631e-154 - art_sys_73: -1.75698058e-167 - art_sys_74: 9.51458422e-160 - art_sys_75: 1.00856112e-136 - art_sys_76: -2.60190502e-117 - art_sys_77: -2.26670995e-101 - art_sys_78: -6.57840973e-102 - art_sys_79: 2.08443279e-88 - art_sys_80: 2.74490732e-71 - art_sys_81: 1.14125073e-63 - art_sys_82: 7.45340483e-58 - art_sys_83: 2.10784032e-74 - art_sys_84: -1.92337711e-74 - art_sys_85: -9.60126174e-72 - art_sys_86: -1.05916774e-63 - art_sys_87: 8.14818721e-67 - art_sys_88: -4.72547406e-46 - art_sys_89: -1.65545316e-63 - art_sys_90: -4.20825817e-63 - art_sys_91: -1.34862095e-62 - art_sys_92: -2.34605964e-63 - art_sys_93: -6.84444725e-64 - art_sys_94: -4.53541592e-62 - art_sys_95: 3.60990030e-63 - art_sys_96: -1.38652415e-55 - art_sys_97: -9.92065294e-57 - art_sys_98: 2.12027249e-55 - art_sys_99: 3.63160260e-55 - art_sys_100: 1.07885467e-39 - art_sys_101: 4.39605402e-39 - art_sys_102: 8.36018582e-56 - art_sys_103: 2.17201083e-46 - art_sys_104: -1.45520608e-51 - art_sys_105: 9.83524453e-42 - art_sys_106: -1.38075853e-48 - art_sys_107: 3.84338408e-48 - art_sys_108: 1.87739793e-38 - art_sys_109: 1.10260373e-44 - art_sys_110: -1.33606892e-41 - art_sys_111: 6.03890163e-40 - art_sys_112: 2.41803757e-41 - art_sys_113: -7.56731261e-40 - art_sys_114: -2.50243850e-40 - art_sys_115: 1.06701482e-38 - art_sys_116: 3.01085705e-38 - art_sys_117: 4.06940240e-37 - art_sys_118: 4.48764093e-36 - art_sys_119: -9.98856433e-39 - art_sys_120: -1.51911714e-34 - art_sys_121: 8.88020345e-32 - art_sys_122: 5.05709744e-30 - art_sys_123: -2.99065423e-34 - art_sys_124: 1.08063224e-28 - art_sys_125: 1.87637960e-32 - art_sys_126: 1.20937226e-27 - art_sys_127: -2.51730294e-29 - art_sys_128: -5.68238430e-26 - art_sys_129: 1.54096739e-25 - art_sys_130: 4.03270607e-26 - art_sys_131: 1.03011601e-25 - art_sys_132: 2.19104091e-27 - art_sys_133: 4.12747644e-25 - art_sys_134: -5.22742019e-23 - art_sys_135: -1.60584462e-39 - art_sys_136: -2.95193898e-38 - art_sys_137: -1.44318429e-38 - art_sys_138: 2.83461463e-38 - art_sys_139: 8.52198234e-34 - art_sys_140: 1.36586988e-36 - art_sys_141: 6.11756740e-22 - art_sys_142: 1.29635202e-28 - art_sys_143: 7.98047014e-25 - art_sys_144: -1.79211144e+02 - art_sys_145: -3.83863567e+01 - art_sys_146: -1.36807570e+01 - art_sys_147: 2.26473660e+00 - art_sys_148: -3.64301698e-02 - art_sys_149: 1.13971321e-02 - art_sys_150: -6.14263486e-03 - art_sys_151: 1.49833498e-03 - art_sys_152: -3.23104452e-06 - art_sys_153: -5.81535322e-07 - art_sys_154: -5.44945876e-07 - art_sys_155: 7.53591430e-09 - art_sys_156: 5.64255370e-09 - art_sys_157: -1.61016228e-09 - art_sys_158: -5.33931530e-11 - art_sys_159: 1.80782658e-11 - art_sys_160: 5.37550690e-12 - art_sys_161: -3.13593868e-14 - art_sys_162: -6.46715147e-15 - art_sys_163: -2.50868968e-15 - art_sys_164: -7.90073693e-16 - art_sys_165: -1.19105790e-16 - art_sys_166: -2.90754956e-17 - art_sys_167: 4.55042475e-18 - art_sys_168: -2.88657464e-21 - art_sys_169: -6.91807727e-19 - art_sys_170: 1.08961203e-21 - art_sys_171: 1.62136304e-22 - art_sys_172: -1.24253531e-19 - art_sys_173: 1.08624773e-20 - art_sys_174: 1.88152708e-21 - art_sys_175: 0.0 - art_sys_176: -3.46251732e-22 - art_sys_177: 0.0 - art_sys_178: -2.26594439e-22 - art_sys_179: 1.34060681e-22 - art_sys_180: -3.43648232e-25 - art_sys_181: -2.70659796e-27 - art_sys_182: 0.0 - art_sys_183: 3.37793352e-22 - art_sys_184: -2.84771301e-24 - art_sys_185: 3.30885418e-26 + art_sys_58: 3.90479952e-295 + art_sys_59: -8.24808719e-216 + art_sys_60: -9.05410872e-212 + art_sys_61: 5.36903964e-209 + art_sys_62: -2.65416645e-203 + art_sys_63: -4.10614889e-194 + art_sys_64: 1.26302777e-195 + art_sys_65: -1.36748700e-68 + art_sys_66: -2.55458309e-56 + art_sys_67: 9.44655277e-53 + art_sys_68: 1.24664579e-50 + art_sys_69: 1.62765976e-36 + art_sys_70: -3.56952564e-39 + art_sys_71: 4.09470227e-33 + art_sys_72: 2.69261962e-20 + art_sys_73: -1.79211144e+02 + art_sys_74: 3.83863567e+01 + art_sys_75: 1.36807570e+01 + art_sys_76: 3.04033899e-18 + art_sys_77: 3.10327545e-20 + art_sys_78: 2.53473706e-19 + art_sys_79: 2.26473660e+00 + art_sys_80: 8.61401972e-18 + art_sys_81: -3.64301698e-02 + art_sys_82: -1.13971321e-02 + art_sys_83: 3.52400174e-18 + art_sys_84: 6.14263486e-03 + art_sys_85: -1.49833498e-03 + art_sys_86: -9.71401239e-19 + art_sys_87: 6.02900786e-21 + art_sys_88: 1.91982708e-19 + art_sys_89: -3.94282434e-19 + art_sys_90: 7.79039794e-20 + art_sys_91: -7.33539841e-20 + art_sys_92: 3.75534807e-21 + art_sys_93: -5.19532078e-20 + art_sys_94: 8.44558425e-20 + art_sys_95: 1.68269128e-20 + art_sys_96: 8.18262362e-20 + art_sys_97: -7.48773263e-20 + art_sys_98: 2.93313656e-20 + art_sys_99: 1.31827493e-20 + art_sys_100: 2.54399113e-20 + art_sys_101: -1.32102904e-20 + art_sys_102: -1.12141587e-20 + art_sys_103: 1.75356311e-20 + art_sys_104: -1.51225989e-23 + art_sys_105: 2.94488380e-21 + art_sys_106: -1.64796860e-20 + art_sys_107: -6.94788914e-21 + art_sys_108: -2.73434058e-20 + art_sys_109: -5.14945669e-20 + art_sys_110: -2.04434560e-21 + art_sys_111: 1.48030736e-20 + art_sys_112: -7.02842079e-21 + art_sys_113: 2.34974089e-20 + art_sys_114: 4.17727205e-21 + art_sys_115: 8.56073059e-21 + art_sys_116: 1.82661156e-20 + art_sys_117: 2.84348314e-21 + art_sys_118: -2.95253882e-21 + art_sys_119: 2.17355992e-21 + art_sys_120: 4.64056305e-21 + art_sys_121: -7.69213278e-21 + art_sys_122: -6.08229338e-21 + art_sys_123: 7.52695883e-22 + art_sys_124: -5.50219226e-21 + art_sys_125: -2.13059636e-21 + art_sys_126: -2.90673847e-21 + art_sys_127: -2.19234038e-21 + art_sys_128: -2.43016108e-21 + art_sys_129: 1.69360097e-21 + art_sys_130: -4.13735121e-23 + art_sys_131: -1.41872971e-21 + art_sys_132: 9.29720041e-22 + art_sys_133: -3.44585990e-22 + art_sys_134: 5.95829938e-22 + art_sys_135: -8.89165223e-23 + art_sys_136: 2.36425975e-22 + art_sys_137: -6.46719980e-23 + art_sys_138: 3.79535855e-22 + art_sys_139: -1.79865201e-22 + art_sys_140: 2.41224571e-22 + art_sys_141: -2.05657079e-22 + art_sys_142: -1.87665846e-22 + art_sys_143: -3.93648031e-21 + art_sys_144: 5.80437686e-22 + art_sys_145: 1.52685938e-22 + art_sys_146: -0.0 + art_sys_147: 1.84507800e-22 + art_sys_148: -1.96316865e-23 + art_sys_149: -1.96316865e-23 + art_sys_150: -4.94689286e-23 + art_sys_151: -4.94689286e-23 + art_sys_152: 2.13435217e-23 + art_sys_153: 1.38305470e-22 + art_sys_154: -1.21906554e-23 + art_sys_155: -2.84771419e-24 + art_sys_156: 3.30887872e-26 + art_sys_157: 2.70660132e-27 + art_sys_158: 0.0 + art_sys_159: 6.07720797e-21 + art_sys_160: -2.33722552e-21 + art_sys_161: -5.43307759e-22 + art_sys_162: 5.84392073e-21 + art_sys_163: 7.96165055e-21 + art_sys_164: -5.73467914e-21 + art_sys_165: -9.54483159e-22 + art_sys_166: -3.23104452e-06 + art_sys_167: 5.81535322e-07 + art_sys_168: 5.44945876e-07 + art_sys_169: -7.53591434e-09 + art_sys_170: 5.64255371e-09 + art_sys_171: -1.61016227e-09 + art_sys_172: -5.33931570e-11 + art_sys_173: 1.80782662e-11 + art_sys_174: 5.37550728e-12 + art_sys_175: 3.37793381e-22 + art_sys_176: 3.13593905e-14 + art_sys_177: 6.46715159e-15 + art_sys_178: -2.50868968e-15 + art_sys_179: 7.90074142e-16 + art_sys_180: -1.19105606e-16 + art_sys_181: 2.90754787e-17 + art_sys_182: 4.54930062e-18 + art_sys_183: -6.91821301e-19 + art_sys_184: 1.24257494e-19 + art_sys_185: -1.08623448e-20 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -44237,134 +44237,134 @@ bins: art_sys_55: 0.0 art_sys_56: 0.0 art_sys_57: 0.0 - art_sys_58: 0.0 - art_sys_59: 0.0 - art_sys_60: 0.0 - art_sys_61: 0.0 - art_sys_62: 0.0 - art_sys_63: 0.0 - art_sys_64: 0.0 - art_sys_65: -2.66599298e-270 - art_sys_66: -3.18332148e-192 - art_sys_67: -1.08328480e-181 - art_sys_68: -3.48912218e-199 - art_sys_69: -1.12235013e-187 - art_sys_70: -1.55409046e-189 - art_sys_71: 5.15082550e-184 - art_sys_72: 2.41677624e-154 - art_sys_73: -9.53419621e-168 - art_sys_74: 5.16315792e-160 - art_sys_75: 5.47302984e-137 - art_sys_76: -1.41194257e-117 - art_sys_77: -1.23004654e-101 - art_sys_78: -3.56982160e-102 - art_sys_79: 1.13113252e-88 - art_sys_80: 1.48954380e-71 - art_sys_81: 6.19307958e-64 - art_sys_82: 4.04464402e-58 - art_sys_83: 1.14384209e-74 - art_sys_84: -1.04373465e-74 - art_sys_85: -5.21019527e-72 - art_sys_86: -5.74765030e-64 - art_sys_87: 4.42167270e-67 - art_sys_88: -2.56431266e-46 - art_sys_89: -8.98346422e-64 - art_sys_90: -2.28364172e-63 - art_sys_91: -7.31838912e-63 - art_sys_92: -2.14028586e-63 - art_sys_93: -3.55127766e-64 - art_sys_94: -2.46117622e-62 - art_sys_95: 1.95896175e-63 - art_sys_96: -7.52407356e-56 - art_sys_97: -5.38351405e-57 - art_sys_98: 1.15058119e-55 - art_sys_99: 1.97071541e-55 - art_sys_100: 5.85448288e-40 - art_sys_101: 2.38555050e-39 - art_sys_102: 4.53672504e-56 - art_sys_103: 1.17865738e-46 - art_sys_104: -7.89676589e-52 - art_sys_105: 5.33716656e-42 - art_sys_106: -7.49278599e-49 - art_sys_107: 2.08564018e-48 - art_sys_108: 1.01878356e-38 - art_sys_109: 5.98335884e-45 - art_sys_110: -7.25027461e-42 - art_sys_111: 3.27705363e-40 - art_sys_112: 1.31216557e-41 - art_sys_113: -4.10645690e-40 - art_sys_114: -1.35796635e-40 - art_sys_115: 5.79023309e-39 - art_sys_116: 1.63386335e-38 - art_sys_117: 2.20829064e-37 - art_sys_118: 2.43525080e-36 - art_sys_119: -5.42036664e-39 - art_sys_120: -8.24359900e-35 - art_sys_121: 4.81890660e-32 - art_sys_122: 2.74427049e-30 - art_sys_123: -1.62290014e-34 - art_sys_124: 5.86412896e-29 - art_sys_125: 1.01823096e-32 - art_sys_126: 6.56274599e-28 - art_sys_127: -1.36603264e-29 - art_sys_128: -3.08358693e-26 - art_sys_129: 8.36217094e-26 - art_sys_130: 2.18837711e-26 - art_sys_131: 5.58999900e-26 - art_sys_132: 1.18898419e-27 - art_sys_133: 2.23980493e-25 - art_sys_134: -2.83669736e-23 - art_sys_135: -8.71423195e-40 - art_sys_136: -1.60189103e-38 - art_sys_137: -7.83154387e-39 - art_sys_138: 1.53822412e-38 - art_sys_139: 4.62451533e-34 - art_sys_140: 7.41199166e-37 - art_sys_141: 3.31974218e-22 - art_sys_142: 7.03474795e-29 - art_sys_143: 4.33065982e-25 - art_sys_144: -9.73152501e+01 - art_sys_145: 6.56877066e+01 - art_sys_146: 2.29836532e+01 - art_sys_147: -6.21644206e+00 - art_sys_148: 1.14070556e-01 - art_sys_149: -3.64296223e-02 - art_sys_150: 2.17062190e-02 - art_sys_151: -5.60326851e-03 - art_sys_152: 1.73133584e-05 - art_sys_153: 3.84173046e-06 - art_sys_154: 2.96674061e-06 - art_sys_155: -1.00536705e-07 - art_sys_156: -3.26340826e-08 - art_sys_157: 1.26781678e-08 - art_sys_158: 3.89420885e-10 - art_sys_159: -1.14734359e-10 - art_sys_160: -3.95916874e-11 - art_sys_161: 1.13766672e-13 - art_sys_162: 3.30507857e-14 - art_sys_163: 1.28728253e-14 - art_sys_164: 3.64597425e-15 - art_sys_165: 6.80927696e-16 - art_sys_166: 1.41410672e-16 - art_sys_167: -2.43943551e-17 - art_sys_168: -2.84228426e-21 - art_sys_169: 3.69685070e-18 - art_sys_170: 2.02372619e-21 - art_sys_171: 1.37389365e-21 - art_sys_172: 6.38980374e-19 - art_sys_173: -5.84571973e-20 - art_sys_174: -6.11275756e-21 - art_sys_175: 0.0 - art_sys_176: 4.36622913e-22 - art_sys_177: 0.0 - art_sys_178: 6.18646114e-22 - art_sys_179: -3.45247970e-22 - art_sys_180: 8.59164482e-25 - art_sys_181: 1.40917458e-26 - art_sys_182: 0.0 - art_sys_183: -1.83312532e-21 - art_sys_184: 1.91403172e-23 - art_sys_185: -1.67624239e-25 + art_sys_58: 2.12035639e-295 + art_sys_59: -4.47887699e-216 + art_sys_60: -4.91656287e-212 + art_sys_61: 2.91549635e-209 + art_sys_62: -1.44126569e-203 + art_sys_63: -2.22972131e-194 + art_sys_64: 6.85849446e-196 + art_sys_65: -7.42572904e-69 + art_sys_66: -1.38718992e-56 + art_sys_67: 5.12966787e-53 + art_sys_68: 6.76953699e-51 + art_sys_69: 8.83851939e-37 + art_sys_70: -1.93832411e-39 + art_sys_71: 2.22350556e-33 + art_sys_72: 1.46214653e-20 + art_sys_73: -9.73152501e+01 + art_sys_74: -6.56877066e+01 + art_sys_75: -2.29836532e+01 + art_sys_76: 2.31181855e-18 + art_sys_77: -1.88950199e-20 + art_sys_78: -3.64762142e-19 + art_sys_79: -6.21644206e+00 + art_sys_80: 4.95732712e-18 + art_sys_81: 1.14070556e-01 + art_sys_82: 3.64296223e-02 + art_sys_83: 7.84025343e-19 + art_sys_84: -2.17062190e-02 + art_sys_85: 5.60326851e-03 + art_sys_86: 9.65912036e-20 + art_sys_87: -7.61807283e-20 + art_sys_88: -1.73486874e-19 + art_sys_89: 6.41094267e-19 + art_sys_90: -1.24937490e-19 + art_sys_91: 4.22201753e-21 + art_sys_92: -6.44281522e-20 + art_sys_93: -1.50913573e-20 + art_sys_94: 7.86994223e-20 + art_sys_95: -3.25163891e-20 + art_sys_96: -3.66521006e-20 + art_sys_97: -6.90515516e-20 + art_sys_98: -5.16025562e-20 + art_sys_99: -2.34066941e-20 + art_sys_100: 2.08943744e-20 + art_sys_101: -3.18552788e-20 + art_sys_102: 1.49740796e-20 + art_sys_103: -5.54333942e-21 + art_sys_104: -2.81514308e-21 + art_sys_105: 2.96572920e-20 + art_sys_106: 9.52129770e-21 + art_sys_107: -4.28788584e-20 + art_sys_108: -3.69431814e-20 + art_sys_109: 3.75993614e-21 + art_sys_110: -3.02218852e-20 + art_sys_111: 1.64958594e-21 + art_sys_112: -1.33739768e-21 + art_sys_113: 3.40625528e-21 + art_sys_114: 8.07423858e-22 + art_sys_115: 1.10664376e-20 + art_sys_116: 4.33384529e-21 + art_sys_117: -5.23342764e-22 + art_sys_118: -4.42829893e-21 + art_sys_119: 6.17351166e-22 + art_sys_120: 2.85766151e-22 + art_sys_121: 3.08272631e-21 + art_sys_122: 2.50515412e-21 + art_sys_123: 6.00478960e-21 + art_sys_124: -3.70433306e-21 + art_sys_125: -3.96502800e-21 + art_sys_126: -2.40786200e-22 + art_sys_127: 3.85718155e-21 + art_sys_128: 8.68965605e-22 + art_sys_129: 8.18854334e-22 + art_sys_130: 1.18980829e-21 + art_sys_131: 6.48430828e-22 + art_sys_132: -8.92142080e-22 + art_sys_133: -3.66022325e-22 + art_sys_134: -2.22494319e-21 + art_sys_135: -5.79887225e-22 + art_sys_136: 9.90826514e-22 + art_sys_137: 1.29802309e-21 + art_sys_138: -3.85978735e-22 + art_sys_139: -9.62279033e-23 + art_sys_140: 1.96257107e-22 + art_sys_141: -2.47973934e-22 + art_sys_142: -5.78650740e-23 + art_sys_143: 1.13976459e-20 + art_sys_144: -1.55171908e-21 + art_sys_145: -4.42458413e-22 + art_sys_146: -0.0 + art_sys_147: -4.51000637e-22 + art_sys_148: 2.61430406e-23 + art_sys_149: 2.61430406e-23 + art_sys_150: -4.69636312e-23 + art_sys_151: -4.69636312e-23 + art_sys_152: -5.25921572e-23 + art_sys_153: -3.08161439e-22 + art_sys_154: 2.51698491e-23 + art_sys_155: 1.91403227e-23 + art_sys_156: -1.67625687e-25 + art_sys_157: -1.40917645e-26 + art_sys_158: -0.0 + art_sys_159: 9.95352272e-21 + art_sys_160: 2.42731365e-21 + art_sys_161: -7.00345068e-22 + art_sys_162: 3.25519381e-22 + art_sys_163: 5.77251037e-22 + art_sys_164: -2.07891909e-21 + art_sys_165: 1.81240780e-21 + art_sys_166: 1.73133584e-05 + art_sys_167: -3.84173046e-06 + art_sys_168: -2.96674061e-06 + art_sys_169: 1.00536705e-07 + art_sys_170: -3.26340826e-08 + art_sys_171: 1.26781678e-08 + art_sys_172: 3.89420894e-10 + art_sys_173: -1.14734360e-10 + art_sys_174: -3.95916883e-11 + art_sys_175: -1.83312536e-21 + art_sys_176: -1.13766681e-13 + art_sys_177: -3.30507888e-14 + art_sys_178: 1.28728254e-14 + art_sys_179: -3.64597544e-15 + art_sys_180: 6.80927641e-16 + art_sys_181: -1.41410864e-16 + art_sys_182: -2.43950591e-17 + art_sys_183: 3.69687588e-18 + art_sys_184: -6.38879118e-19 + art_sys_185: 5.84571907e-20 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -44528,134 +44528,134 @@ bins: art_sys_55: 0.0 art_sys_56: 0.0 art_sys_57: 0.0 - art_sys_58: 0.0 - art_sys_59: 0.0 - art_sys_60: 0.0 - art_sys_61: 0.0 - art_sys_62: 0.0 - art_sys_63: 0.0 - art_sys_64: 0.0 - art_sys_65: -2.67172099e-271 - art_sys_66: -3.19016163e-193 - art_sys_67: -1.08561250e-182 - art_sys_68: -3.49661941e-200 - art_sys_69: -1.12476177e-188 - art_sys_70: -1.55742980e-190 - art_sys_71: 5.16189331e-185 - art_sys_72: 2.42196927e-155 - art_sys_73: -9.55557621e-169 - art_sys_74: 5.17425223e-161 - art_sys_75: 5.48478998e-138 - art_sys_76: -1.41497648e-118 - art_sys_77: -1.23268960e-102 - art_sys_78: -3.57749224e-103 - art_sys_79: 1.13356304e-89 - art_sys_80: 1.49274445e-72 - art_sys_81: 6.20638693e-65 - art_sys_82: 4.05333493e-59 - art_sys_83: 1.14629979e-75 - art_sys_84: -1.04597709e-75 - art_sys_85: -5.22139121e-73 - art_sys_86: -5.76000053e-65 - art_sys_87: 4.43117375e-68 - art_sys_88: -2.56982272e-47 - art_sys_89: -9.00271031e-65 - art_sys_90: -2.28854868e-64 - art_sys_91: -7.33411447e-64 - art_sys_92: -1.11360695e-64 - art_sys_93: -3.70708245e-65 - art_sys_94: -2.46646465e-63 - art_sys_95: 1.96314330e-64 - art_sys_96: -7.54024087e-57 - art_sys_97: -5.39508185e-58 - art_sys_98: 1.15305350e-56 - art_sys_99: 1.97494997e-56 - art_sys_100: 5.86706267e-41 - art_sys_101: 2.39067643e-40 - art_sys_102: 4.54647940e-57 - art_sys_103: 1.18119001e-47 - art_sys_104: -7.91372950e-53 - art_sys_105: 5.34863477e-43 - art_sys_106: -7.50888607e-50 - art_sys_107: 2.09012166e-49 - art_sys_108: 1.02097266e-39 - art_sys_109: 5.99621556e-46 - art_sys_110: -7.26585360e-43 - art_sys_111: 3.28409518e-41 - art_sys_112: 1.31498508e-42 - art_sys_113: -4.11528063e-41 - art_sys_114: -1.36088427e-41 - art_sys_115: 5.80267482e-40 - art_sys_116: 1.63737410e-39 - art_sys_117: 2.21303569e-38 - art_sys_118: 2.44048353e-37 - art_sys_119: -5.43201364e-40 - art_sys_120: -8.26131239e-36 - art_sys_121: 4.82926121e-33 - art_sys_122: 2.75016723e-31 - art_sys_123: -1.62638734e-35 - art_sys_124: 5.87672948e-30 - art_sys_125: 1.02041888e-33 - art_sys_126: 6.57684766e-29 - art_sys_127: -1.36896790e-30 - art_sys_128: -3.09021277e-27 - art_sys_129: 8.38013911e-27 - art_sys_130: 2.19307937e-27 - art_sys_131: 5.60201049e-27 - art_sys_132: 1.19153902e-28 - art_sys_133: 2.24461770e-26 - art_sys_134: -2.84279270e-24 - art_sys_135: -8.73295661e-41 - art_sys_136: -1.60533308e-39 - art_sys_137: -7.84837186e-40 - art_sys_138: 1.54152937e-39 - art_sys_139: 4.63445224e-35 - art_sys_140: 7.42791814e-38 - art_sys_141: 3.32687546e-23 - art_sys_142: 7.04986383e-30 - art_sys_143: 4.33996531e-26 - art_sys_144: -9.79660221e+00 - art_sys_145: 6.54564256e+01 - art_sys_146: -2.22022920e+01 - art_sys_147: 9.61246934e+00 - art_sys_148: -3.85474990e-01 - art_sys_149: 9.48794213e-02 - art_sys_150: -6.75969295e-02 - art_sys_151: 1.81977130e-02 - art_sys_152: -4.96831583e-05 - art_sys_153: -1.53406808e-05 - art_sys_154: -1.03079106e-05 - art_sys_155: 3.85313393e-07 - art_sys_156: 1.28012802e-07 - art_sys_157: -4.82793484e-08 - art_sys_158: -1.75598666e-09 - art_sys_159: 4.47802283e-10 - art_sys_160: 1.65565253e-10 - art_sys_161: -5.72967465e-13 - art_sys_162: -1.15487225e-13 - art_sys_163: -5.93919155e-14 - art_sys_164: -1.45570710e-14 - art_sys_165: -2.88961949e-15 - art_sys_166: -5.99282453e-16 - art_sys_167: 9.95644363e-17 - art_sys_168: -3.36102056e-22 - art_sys_169: -1.57406092e-17 - art_sys_170: 4.32601739e-22 - art_sys_171: -2.32579054e-21 - art_sys_172: -2.64457634e-18 - art_sys_173: 2.51045265e-19 - art_sys_174: 1.16601849e-20 - art_sys_175: 0.0 - art_sys_176: -3.89618712e-22 - art_sys_177: 0.0 - art_sys_178: -8.94371599e-22 - art_sys_179: 5.18517886e-22 - art_sys_180: -1.77764391e-24 - art_sys_181: -5.81034088e-26 - art_sys_182: 0.0 - art_sys_183: 7.61066604e-21 - art_sys_184: -7.14652535e-23 - art_sys_185: 6.93381557e-25 + art_sys_58: 2.13434425e-296 + art_sys_59: -4.50882838e-217 + art_sys_60: -4.94944118e-213 + art_sys_61: 2.93499302e-210 + art_sys_62: -1.45090380e-204 + art_sys_63: -2.24463203e-195 + art_sys_64: 6.90435896e-197 + art_sys_65: -7.47538679e-70 + art_sys_66: -1.39646642e-57 + art_sys_67: 5.16397127e-54 + art_sys_68: 6.81480662e-52 + art_sys_69: 8.89762484e-38 + art_sys_70: -1.95128618e-40 + art_sys_71: 2.23837472e-34 + art_sys_72: 1.47192428e-21 + art_sys_73: -9.79660221e+00 + art_sys_74: -6.54564256e+01 + art_sys_75: 2.22022920e+01 + art_sys_76: 4.61319000e-18 + art_sys_77: 1.10894077e-19 + art_sys_78: -3.81656733e-19 + art_sys_79: 9.61246934e+00 + art_sys_80: -7.67434596e-19 + art_sys_81: -3.85474990e-01 + art_sys_82: -9.48794213e-02 + art_sys_83: 3.95400133e-19 + art_sys_84: 6.75969295e-02 + art_sys_85: -1.81977130e-02 + art_sys_86: 9.70383614e-20 + art_sys_87: 8.05636120e-20 + art_sys_88: -2.46691296e-19 + art_sys_89: 5.51749472e-19 + art_sys_90: 3.49028472e-20 + art_sys_91: 2.23140509e-20 + art_sys_92: -2.50082089e-20 + art_sys_93: 7.03448237e-20 + art_sys_94: -2.18606132e-20 + art_sys_95: 6.64503957e-20 + art_sys_96: -4.55710068e-20 + art_sys_97: 4.56789097e-20 + art_sys_98: -8.93793924e-20 + art_sys_99: -2.75371927e-20 + art_sys_100: 3.35730344e-20 + art_sys_101: 5.16490726e-22 + art_sys_102: -1.67895070e-20 + art_sys_103: -2.11447000e-20 + art_sys_104: 7.56697561e-24 + art_sys_105: 1.73102627e-20 + art_sys_106: -1.45984496e-20 + art_sys_107: 1.12199317e-19 + art_sys_108: 2.74715604e-20 + art_sys_109: 1.35014324e-20 + art_sys_110: -7.98024186e-21 + art_sys_111: -1.29449403e-20 + art_sys_112: 2.02371354e-20 + art_sys_113: -2.32410217e-21 + art_sys_114: -5.40431107e-21 + art_sys_115: 3.41235422e-21 + art_sys_116: 3.03722170e-21 + art_sys_117: 1.05125544e-20 + art_sys_118: -8.83402320e-21 + art_sys_119: 1.39179167e-22 + art_sys_120: 5.33879884e-21 + art_sys_121: -1.81964929e-21 + art_sys_122: -4.37654705e-21 + art_sys_123: -1.54438570e-21 + art_sys_124: 1.34880969e-21 + art_sys_125: 4.57326889e-21 + art_sys_126: -1.89317085e-23 + art_sys_127: -3.86684181e-22 + art_sys_128: -4.19066545e-21 + art_sys_129: -3.00489998e-21 + art_sys_130: -1.14955904e-22 + art_sys_131: 1.17849476e-21 + art_sys_132: -1.54933326e-21 + art_sys_133: 2.69370207e-22 + art_sys_134: -1.57031618e-21 + art_sys_135: 2.66117842e-22 + art_sys_136: -6.78706753e-22 + art_sys_137: 2.64499261e-22 + art_sys_138: -3.34309610e-22 + art_sys_139: -7.33012699e-22 + art_sys_140: 3.40486815e-23 + art_sys_141: -2.96820901e-22 + art_sys_142: -4.68319205e-23 + art_sys_143: -1.47183026e-20 + art_sys_144: 1.67226722e-21 + art_sys_145: 2.47348683e-22 + art_sys_146: 0.0 + art_sys_147: 4.35804677e-22 + art_sys_148: 3.90177236e-24 + art_sys_149: 3.90177236e-24 + art_sys_150: -2.70671489e-23 + art_sys_151: -2.70671489e-23 + art_sys_152: 1.03592927e-23 + art_sys_153: 5.35978190e-22 + art_sys_154: -8.00934481e-23 + art_sys_155: -7.14652718e-23 + art_sys_156: 6.93387583e-25 + art_sys_157: 5.81034875e-26 + art_sys_158: 0.0 + art_sys_159: 1.13062979e-21 + art_sys_160: -3.02637724e-21 + art_sys_161: -6.85964130e-21 + art_sys_162: 2.86297275e-21 + art_sys_163: -6.50240423e-22 + art_sys_164: -1.20609918e-21 + art_sys_165: 8.98010099e-22 + art_sys_166: -4.96831583e-05 + art_sys_167: 1.53406808e-05 + art_sys_168: 1.03079106e-05 + art_sys_169: -3.85313393e-07 + art_sys_170: 1.28012802e-07 + art_sys_171: -4.82793484e-08 + art_sys_172: -1.75598667e-09 + art_sys_173: 4.47802284e-10 + art_sys_174: 1.65565254e-10 + art_sys_175: 7.61066591e-21 + art_sys_176: 5.72967465e-13 + art_sys_177: 1.15487230e-13 + art_sys_178: -5.93919168e-14 + art_sys_179: 1.45570736e-14 + art_sys_180: -2.88961513e-15 + art_sys_181: 5.99282401e-16 + art_sys_182: 9.95629930e-17 + art_sys_183: -1.57405944e-17 + art_sys_184: 2.64478111e-18 + art_sys_185: -2.51045321e-19 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -44819,134 +44819,134 @@ bins: art_sys_55: 0.0 art_sys_56: 0.0 art_sys_57: 0.0 - art_sys_58: 0.0 - art_sys_59: 0.0 - art_sys_60: 0.0 - art_sys_61: 0.0 - art_sys_62: 0.0 - art_sys_63: 0.0 - art_sys_64: 0.0 - art_sys_65: 2.94590705e-271 - art_sys_66: 3.51755187e-193 - art_sys_67: 1.19702345e-182 - art_sys_68: 3.85545988e-200 - art_sys_69: 1.24019041e-188 - art_sys_70: 1.71726099e-190 - art_sys_71: -5.69163246e-185 - art_sys_72: -2.67052380e-155 - art_sys_73: 1.05351725e-168 - art_sys_74: -5.70525971e-161 - art_sys_75: -6.04766639e-138 - art_sys_76: 1.56018840e-118 - art_sys_77: 1.35919433e-102 - art_sys_78: 3.94463227e-103 - art_sys_79: -1.24989491e-89 - art_sys_80: -1.64593731e-72 - art_sys_81: -6.84331721e-65 - art_sys_82: -4.46930831e-59 - art_sys_83: -1.26393301e-75 - art_sys_84: 1.15332056e-75 - art_sys_85: 5.75723612e-73 - art_sys_86: 6.35112042e-65 - art_sys_87: -4.88592283e-68 - art_sys_88: 2.83355070e-47 - art_sys_89: 9.92684527e-65 - art_sys_90: 2.52341093e-64 - art_sys_91: 8.08677775e-64 - art_sys_92: 3.63552008e-64 - art_sys_93: 4.14908915e-65 - art_sys_94: 2.71958549e-63 - art_sys_95: -2.16467927e-64 - art_sys_96: 8.31405787e-57 - art_sys_97: 5.94875196e-58 - art_sys_98: -1.27138558e-56 - art_sys_99: -2.17762915e-56 - art_sys_100: -6.46916980e-41 - art_sys_101: -2.63601953e-40 - art_sys_102: -5.01307354e-57 - art_sys_103: -1.30240960e-47 - art_sys_104: 8.72590731e-53 - art_sys_105: -5.89753825e-43 - art_sys_106: 8.27948529e-50 - art_sys_107: -2.30462034e-49 - art_sys_108: -1.12574995e-39 - art_sys_109: -6.61157700e-46 - art_sys_110: 8.01151162e-43 - art_sys_111: -3.62112536e-41 - art_sys_112: -1.44993539e-42 - art_sys_113: 4.53761119e-41 - art_sys_114: 1.50054498e-41 - art_sys_115: -6.39817416e-40 - art_sys_116: -1.80540957e-39 - art_sys_117: -2.44014841e-38 - art_sys_118: -2.69093808e-37 - art_sys_119: 5.98947387e-40 - art_sys_120: 9.10912934e-36 - art_sys_121: -5.32486400e-33 - art_sys_122: -3.03240306e-31 - art_sys_123: 1.79329529e-35 - art_sys_124: -6.47982867e-30 - art_sys_125: -1.12513933e-33 - art_sys_126: -7.25179646e-29 - art_sys_127: 1.50945819e-30 - art_sys_128: 3.40734576e-27 - art_sys_129: -9.24015064e-27 - art_sys_130: -2.41814408e-27 - art_sys_131: -6.17691665e-27 - art_sys_132: -1.31382067e-28 - art_sys_133: -2.47497153e-26 - art_sys_134: 3.13453422e-24 - art_sys_135: 9.62917603e-41 - art_sys_136: 1.77008035e-39 - art_sys_137: 8.65381080e-40 - art_sys_138: -1.69972878e-39 - art_sys_139: -5.11006276e-35 - art_sys_140: -8.19020802e-38 - art_sys_141: -3.66829596e-23 - art_sys_142: -7.77335590e-30 - art_sys_143: -4.78535412e-26 - art_sys_144: 1.07369541e+01 - art_sys_145: 1.45718422e+01 - art_sys_146: -4.00754141e+01 - art_sys_147: -9.54766392e+00 - art_sys_148: 3.48278746e-01 - art_sys_149: -2.07018675e-01 - art_sys_150: 1.29071419e-01 - art_sys_151: -4.14218804e-02 - art_sys_152: 1.83916672e-04 - art_sys_153: 4.31992767e-05 - art_sys_154: 3.44811731e-05 - art_sys_155: -1.37271019e-06 - art_sys_156: -4.14285433e-07 - art_sys_157: 1.72150319e-07 - art_sys_158: 5.27663508e-09 - art_sys_159: -1.58040056e-09 - art_sys_160: -5.51536962e-10 - art_sys_161: 1.57421383e-12 - art_sys_162: 4.59481376e-13 - art_sys_163: 1.85722356e-13 - art_sys_164: 5.09824611e-14 - art_sys_165: 9.91269411e-15 - art_sys_166: 2.00790583e-15 - art_sys_167: -3.51856032e-16 - art_sys_168: 7.30137013e-22 - art_sys_169: 5.32727291e-17 - art_sys_170: -2.22127849e-23 - art_sys_171: 1.90811488e-21 - art_sys_172: 9.16964765e-18 - art_sys_173: -8.43187425e-19 - art_sys_174: -1.98573076e-20 - art_sys_175: 0.0 - art_sys_176: -3.48564674e-22 - art_sys_177: 0.0 - art_sys_178: 7.43323290e-22 - art_sys_179: -5.41931416e-22 - art_sys_180: 1.61082921e-24 - art_sys_181: 2.02420408e-25 - art_sys_182: 0.0 - art_sys_183: -2.64730740e-20 - art_sys_184: 2.81216986e-22 - art_sys_185: -2.40371958e-24 + art_sys_58: -2.33949564e-296 + art_sys_59: 4.94161981e-217 + art_sys_60: 5.42452596e-213 + art_sys_61: -3.21671583e-210 + art_sys_62: 1.59017251e-204 + art_sys_63: 2.46008878e-195 + art_sys_64: -7.56709152e-197 + art_sys_65: 8.19293091e-70 + art_sys_66: 1.53050982e-57 + art_sys_67: -5.65964826e-54 + art_sys_68: -7.46894326e-52 + art_sys_69: -9.75168611e-38 + art_sys_70: 2.13858537e-40 + art_sys_71: -2.45323084e-34 + art_sys_72: -1.61321069e-21 + art_sys_73: 1.07369541e+01 + art_sys_74: -1.45718422e+01 + art_sys_75: 4.00754141e+01 + art_sys_76: 3.84359266e-18 + art_sys_77: 1.32879882e-19 + art_sys_78: -8.99924188e-20 + art_sys_79: -9.54766392e+00 + art_sys_80: 3.59270815e-18 + art_sys_81: 3.48278746e-01 + art_sys_82: 2.07018675e-01 + art_sys_83: -1.19993633e-18 + art_sys_84: -1.29071419e-01 + art_sys_85: 4.14218804e-02 + art_sys_86: 1.60490114e-18 + art_sys_87: 1.12145639e-19 + art_sys_88: -4.86856743e-21 + art_sys_89: 2.37739961e-19 + art_sys_90: 1.26676839e-20 + art_sys_91: -1.97786603e-20 + art_sys_92: 1.58962617e-20 + art_sys_93: -4.77028890e-20 + art_sys_94: -3.47080601e-20 + art_sys_95: -5.45754993e-20 + art_sys_96: 4.77998950e-19 + art_sys_97: -3.95285313e-20 + art_sys_98: -5.96864596e-20 + art_sys_99: -1.02235948e-20 + art_sys_100: 2.89915795e-20 + art_sys_101: 3.33527098e-20 + art_sys_102: 2.58251427e-20 + art_sys_103: -4.54884712e-20 + art_sys_104: -1.94986448e-20 + art_sys_105: 1.08435471e-20 + art_sys_106: 1.04930764e-20 + art_sys_107: -2.71945544e-20 + art_sys_108: 2.81149650e-20 + art_sys_109: -2.49053922e-20 + art_sys_110: -2.15461121e-20 + art_sys_111: 2.27710911e-21 + art_sys_112: -1.53254017e-20 + art_sys_113: 7.92869887e-21 + art_sys_114: 1.78559149e-20 + art_sys_115: 2.28667732e-21 + art_sys_116: 2.24445503e-21 + art_sys_117: -7.41775143e-21 + art_sys_118: -7.51311736e-21 + art_sys_119: 7.87722925e-22 + art_sys_120: 1.24401629e-21 + art_sys_121: -2.06276075e-21 + art_sys_122: -3.01835806e-21 + art_sys_123: -3.47066288e-21 + art_sys_124: 4.73143555e-21 + art_sys_125: -4.92219320e-21 + art_sys_126: 5.65489377e-21 + art_sys_127: 1.13812143e-21 + art_sys_128: -1.38951726e-21 + art_sys_129: -1.02693680e-21 + art_sys_130: -1.15007511e-21 + art_sys_131: 5.27994066e-22 + art_sys_132: -2.57382427e-22 + art_sys_133: 3.34863228e-22 + art_sys_134: 1.92811746e-21 + art_sys_135: 3.64011279e-22 + art_sys_136: -7.33518077e-22 + art_sys_137: -6.26114785e-22 + art_sys_138: 1.32877681e-22 + art_sys_139: -8.53397175e-23 + art_sys_140: -2.71958794e-22 + art_sys_141: -7.32731729e-23 + art_sys_142: -8.82917246e-23 + art_sys_143: 1.25421099e-20 + art_sys_144: 1.95029116e-21 + art_sys_145: 3.57670392e-22 + art_sys_146: 0.0 + art_sys_147: -9.32602889e-23 + art_sys_148: -4.35728214e-23 + art_sys_149: -4.35728214e-23 + art_sys_150: -1.29944705e-23 + art_sys_151: -1.29944705e-23 + art_sys_152: -2.16880724e-23 + art_sys_153: -7.38486949e-22 + art_sys_154: 1.97385358e-22 + art_sys_155: 2.81217042e-22 + art_sys_156: -2.40373872e-24 + art_sys_157: -2.02420650e-25 + art_sys_158: -0.0 + art_sys_159: 8.05101381e-21 + art_sys_160: 1.25036844e-20 + art_sys_161: 7.85774360e-22 + art_sys_162: 3.92822005e-21 + art_sys_163: 4.73774474e-21 + art_sys_164: 1.21558245e-21 + art_sys_165: -3.54668331e-21 + art_sys_166: 1.83916672e-04 + art_sys_167: -4.31992767e-05 + art_sys_168: -3.44811731e-05 + art_sys_169: 1.37271019e-06 + art_sys_170: -4.14285433e-07 + art_sys_171: 1.72150319e-07 + art_sys_172: 5.27663509e-09 + art_sys_173: -1.58040056e-09 + art_sys_174: -5.51536963e-10 + art_sys_175: -2.64730733e-20 + art_sys_176: -1.57421385e-12 + art_sys_177: -4.59481376e-13 + art_sys_178: 1.85722356e-13 + art_sys_179: -5.09824627e-14 + art_sys_180: 9.91269386e-15 + art_sys_181: -2.00790579e-15 + art_sys_182: -3.51856412e-16 + art_sys_183: 5.32727919e-17 + art_sys_184: -9.16883739e-18 + art_sys_185: 8.43183790e-19 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -45110,134 +45110,134 @@ bins: art_sys_55: 0.0 art_sys_56: 0.0 art_sys_57: 0.0 - art_sys_58: 0.0 - art_sys_59: 0.0 - art_sys_60: 0.0 - art_sys_61: 0.0 - art_sys_62: 0.0 - art_sys_63: 0.0 - art_sys_64: 0.0 - art_sys_65: 2.60265562e-272 - art_sys_66: 3.10769388e-194 - art_sys_67: 1.05754871e-183 - art_sys_68: 3.40622954e-201 - art_sys_69: 1.09568595e-189 - art_sys_70: 1.51716923e-191 - art_sys_71: -5.02845503e-186 - art_sys_72: -2.35935980e-156 - art_sys_73: 9.30798001e-170 - art_sys_74: -5.04049446e-162 - art_sys_75: -5.34300461e-139 - art_sys_76: 1.37839842e-119 - art_sys_77: 1.20082377e-103 - art_sys_78: 3.48501175e-104 - art_sys_79: -1.10425970e-90 - art_sys_80: -1.45415604e-73 - art_sys_81: -6.04594781e-66 - art_sys_82: -3.94855360e-60 - art_sys_83: -1.11666349e-76 - art_sys_84: 1.01893794e-76 - art_sys_85: 5.08641314e-74 - art_sys_86: 5.61110079e-66 - art_sys_87: -4.31662504e-69 - art_sys_88: 2.50339114e-48 - art_sys_89: 8.76998409e-66 - art_sys_90: 2.22938822e-65 - art_sys_91: 7.14452286e-65 - art_sys_92: 1.94245416e-65 - art_sys_93: 3.56606580e-66 - art_sys_94: 2.40270494e-64 - art_sys_95: -1.91241868e-65 - art_sys_96: 7.34532077e-58 - art_sys_97: 5.25561549e-59 - art_sys_98: -1.12324632e-57 - art_sys_99: -1.92389623e-57 - art_sys_100: -5.71539530e-42 - art_sys_101: -2.32887590e-41 - art_sys_102: -4.42892025e-58 - art_sys_103: -1.15065549e-48 - art_sys_104: 7.70917052e-54 - art_sys_105: -5.21036909e-44 - art_sys_106: 7.31477651e-51 - art_sys_107: -2.03609071e-50 - art_sys_108: -9.94579860e-41 - art_sys_109: -5.84120950e-47 - art_sys_110: 7.07802658e-44 - art_sys_111: -3.19919920e-42 - art_sys_112: -1.28099187e-43 - art_sys_113: 4.00889796e-42 - art_sys_114: 1.32570453e-42 - art_sys_115: -5.65267192e-41 - art_sys_116: -1.59504692e-40 - art_sys_117: -2.15582729e-39 - art_sys_118: -2.37739545e-38 - art_sys_119: 5.29159257e-41 - art_sys_120: 8.04775212e-37 - art_sys_121: -4.70442168e-34 - art_sys_122: -2.67907362e-32 - art_sys_123: 1.58434417e-36 - art_sys_124: -5.72481222e-31 - art_sys_125: -9.94040387e-35 - art_sys_126: -6.40683189e-30 - art_sys_127: 1.33357919e-31 - art_sys_128: 3.01032877e-28 - art_sys_129: -8.16350709e-28 - art_sys_130: -2.13638685e-28 - art_sys_131: -5.45719489e-28 - art_sys_132: -1.16073696e-29 - art_sys_133: -2.18659288e-27 - art_sys_134: 2.76930467e-25 - art_sys_135: 8.50720403e-42 - art_sys_136: 1.56383419e-40 - art_sys_137: 7.64548637e-41 - art_sys_138: -1.50167984e-40 - art_sys_139: -4.51464865e-36 - art_sys_140: -7.23590165e-39 - art_sys_141: -3.24087358e-24 - art_sys_142: -6.86762028e-31 - art_sys_143: -4.22777439e-27 - art_sys_144: 9.51420511e-01 - art_sys_145: -2.48584661e+00 - art_sys_146: -1.55320620e+00 - art_sys_147: -2.26076306e+00 - art_sys_148: -3.89979444e+00 - art_sys_149: 6.58564307e-01 - art_sys_150: -7.33558540e-01 - art_sys_151: 2.17859452e-01 - art_sys_152: -9.55886479e-04 - art_sys_153: -2.85774007e-04 - art_sys_154: -1.93413205e-04 - art_sys_155: 8.67287171e-06 - art_sys_156: 2.49206367e-06 - art_sys_157: -1.01580368e-06 - art_sys_158: -3.67763054e-08 - art_sys_159: 8.94994579e-09 - art_sys_160: 3.47726667e-09 - art_sys_161: -8.98965315e-12 - art_sys_162: -2.19571391e-12 - art_sys_163: -1.09752767e-12 - art_sys_164: -2.61832908e-13 - art_sys_165: -5.59470928e-14 - art_sys_166: -1.10310187e-14 - art_sys_167: 1.89542411e-15 - art_sys_168: -2.78465595e-21 - art_sys_169: -3.00135112e-16 - art_sys_170: 1.37188444e-22 - art_sys_171: -7.20311682e-21 - art_sys_172: -4.96412444e-17 - art_sys_173: 4.80290604e-18 - art_sys_174: 7.79101177e-20 - art_sys_175: 0.0 - art_sys_176: 4.67131966e-21 - art_sys_177: 0.0 - art_sys_178: -9.10162413e-22 - art_sys_179: 1.06973791e-21 - art_sys_180: -4.36536911e-24 - art_sys_181: -1.09728343e-24 - art_sys_182: 0.0 - art_sys_183: 1.45916896e-19 - art_sys_184: -1.48215826e-21 - art_sys_185: 1.29274427e-23 + art_sys_58: -2.07294557e-297 + art_sys_59: 4.37885679e-218 + art_sys_60: 4.80676847e-214 + art_sys_61: -2.85038884e-211 + art_sys_62: 1.40908001e-205 + art_sys_63: 2.17992821e-196 + art_sys_64: -6.70533375e-198 + art_sys_65: 7.25990111e-71 + art_sys_66: 1.35621184e-58 + art_sys_67: -5.01511451e-55 + art_sys_68: -6.61836284e-53 + art_sys_69: -8.64114169e-39 + art_sys_70: 1.89503836e-41 + art_sys_71: -2.17385127e-35 + art_sys_72: -1.42949455e-22 + art_sys_73: 9.51420511e-01 + art_sys_74: 2.48584661e+00 + art_sys_75: 1.55320620e+00 + art_sys_76: 2.25087143e-20 + art_sys_77: 3.21253156e-21 + art_sys_78: 1.42107760e-20 + art_sys_79: -2.26076306e+00 + art_sys_80: 5.56701969e-19 + art_sys_81: -3.89979444e+00 + art_sys_82: -6.58564307e-01 + art_sys_83: 2.14024738e-18 + art_sys_84: 7.33558540e-01 + art_sys_85: -2.17859452e-01 + art_sys_86: 8.01838299e-19 + art_sys_87: -1.92672174e-19 + art_sys_88: -8.67743817e-19 + art_sys_89: -9.61680003e-20 + art_sys_90: -1.57648378e-19 + art_sys_91: 1.16902039e-19 + art_sys_92: 7.23504649e-20 + art_sys_93: 2.24608680e-20 + art_sys_94: 7.03920843e-21 + art_sys_95: 1.87076340e-20 + art_sys_96: -1.25938097e-19 + art_sys_97: -1.47818199e-20 + art_sys_98: 1.45592714e-20 + art_sys_99: 2.97976328e-20 + art_sys_100: 1.68683973e-20 + art_sys_101: -7.05453037e-20 + art_sys_102: -1.80584982e-20 + art_sys_103: 1.23221433e-20 + art_sys_104: 1.08609820e-22 + art_sys_105: -8.77836439e-21 + art_sys_106: -1.89095414e-20 + art_sys_107: 1.22059134e-20 + art_sys_108: 6.34117552e-21 + art_sys_109: 9.50202063e-21 + art_sys_110: 5.14463842e-21 + art_sys_111: -1.28750125e-20 + art_sys_112: -1.10688733e-20 + art_sys_113: -3.37570728e-20 + art_sys_114: -3.19951437e-21 + art_sys_115: -3.37053825e-21 + art_sys_116: -1.44479455e-20 + art_sys_117: 8.53221368e-21 + art_sys_118: 2.77241647e-21 + art_sys_119: -6.73175046e-21 + art_sys_120: 4.11545637e-21 + art_sys_121: -2.07460683e-22 + art_sys_122: -8.98000177e-22 + art_sys_123: -3.23570647e-22 + art_sys_124: -7.54480425e-21 + art_sys_125: 1.01718578e-21 + art_sys_126: -3.69197901e-21 + art_sys_127: -1.49341212e-21 + art_sys_128: -1.71970454e-21 + art_sys_129: 2.27152881e-21 + art_sys_130: 2.84583383e-21 + art_sys_131: 6.81101613e-22 + art_sys_132: 2.84591179e-22 + art_sys_133: 4.94100485e-22 + art_sys_134: -1.53419390e-21 + art_sys_135: 1.76555048e-21 + art_sys_136: -4.61757087e-22 + art_sys_137: -6.27204010e-22 + art_sys_138: 1.35141986e-22 + art_sys_139: -4.43417917e-22 + art_sys_140: 7.62424612e-22 + art_sys_141: 3.98951730e-22 + art_sys_142: -2.25660303e-22 + art_sys_143: -3.05863080e-21 + art_sys_144: -2.05078360e-20 + art_sys_145: -7.83516614e-21 + art_sys_146: 0.0 + art_sys_147: -2.80620051e-21 + art_sys_148: 6.30057789e-24 + art_sys_149: 6.30057789e-24 + art_sys_150: 8.00352887e-23 + art_sys_151: 8.00352887e-23 + art_sys_152: 9.15494147e-23 + art_sys_153: 2.49668676e-21 + art_sys_154: -8.34099734e-22 + art_sys_155: -1.48215859e-21 + art_sys_156: 1.29275615e-23 + art_sys_157: 1.09728496e-24 + art_sys_158: 0.0 + art_sys_159: 8.19229697e-21 + art_sys_160: 1.03500496e-20 + art_sys_161: -2.10224290e-20 + art_sys_162: -5.39653728e-21 + art_sys_163: 2.28571180e-21 + art_sys_164: 1.02583729e-21 + art_sys_165: 5.86231218e-22 + art_sys_166: -9.55886479e-04 + art_sys_167: 2.85774007e-04 + art_sys_168: 1.93413205e-04 + art_sys_169: -8.67287171e-06 + art_sys_170: 2.49206367e-06 + art_sys_171: -1.01580368e-06 + art_sys_172: -3.67763054e-08 + art_sys_173: 8.94994579e-09 + art_sys_174: 3.47726667e-09 + art_sys_175: 1.45916891e-19 + art_sys_176: 8.98965315e-12 + art_sys_177: 2.19571390e-12 + art_sys_178: -1.09752767e-12 + art_sys_179: 2.61832907e-13 + art_sys_180: -5.59470967e-14 + art_sys_181: 1.10310189e-14 + art_sys_182: 1.89542368e-15 + art_sys_183: -3.00135070e-16 + art_sys_184: 4.96406112e-17 + art_sys_185: -4.80290338e-18 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -45401,134 +45401,134 @@ bins: art_sys_55: 0.0 art_sys_56: 0.0 art_sys_57: 0.0 - art_sys_58: 0.0 - art_sys_59: 0.0 - art_sys_60: 0.0 - art_sys_61: 0.0 - art_sys_62: 0.0 - art_sys_63: 0.0 - art_sys_64: 0.0 - art_sys_65: -1.13904015e-272 - art_sys_66: -1.36006760e-194 - art_sys_67: -4.62831218e-184 - art_sys_68: -1.49072033e-201 - art_sys_69: -4.79521799e-190 - art_sys_70: -6.63981975e-192 - art_sys_71: 2.20067968e-186 - art_sys_72: 1.03256271e-156 - art_sys_73: -4.07332206e-170 - art_sys_74: 2.20594868e-162 - art_sys_75: 2.33834082e-139 - art_sys_76: -6.03249580e-120 - art_sys_77: -5.25534873e-104 - art_sys_78: -1.52519899e-104 - art_sys_79: 4.83274060e-91 - art_sys_80: 6.36404549e-74 - art_sys_81: 2.64598060e-66 - art_sys_82: 1.72806590e-60 - art_sys_83: 4.88704891e-77 - art_sys_84: -4.45933305e-77 - art_sys_85: -2.22604585e-74 - art_sys_86: -2.45567185e-66 - art_sys_87: 1.88915063e-69 - art_sys_88: -1.09559735e-48 - art_sys_89: -3.83815288e-66 - art_sys_90: -9.75681262e-66 - art_sys_91: -3.12676680e-65 - art_sys_92: -8.76837035e-66 - art_sys_93: -1.55070907e-66 - art_sys_94: -1.05153252e-64 - art_sys_95: 8.36961466e-66 - art_sys_96: -3.21464506e-58 - art_sys_97: -2.30009538e-59 - art_sys_98: 4.91583466e-58 - art_sys_99: 8.41984132e-58 - art_sys_100: 2.50131585e-42 - art_sys_101: 1.01922158e-41 - art_sys_102: 1.93829583e-58 - art_sys_103: 5.03578959e-49 - art_sys_104: -3.37387141e-54 - art_sys_105: 2.28029351e-44 - art_sys_106: -3.20127751e-51 - art_sys_107: 8.91085513e-51 - art_sys_108: 4.35273195e-41 - art_sys_109: 2.55637785e-47 - art_sys_110: -3.09766502e-44 - art_sys_111: 1.40011447e-42 - art_sys_112: 5.60620061e-44 - art_sys_113: -1.75447533e-42 - art_sys_114: -5.80188348e-43 - art_sys_115: 2.47386526e-41 - art_sys_116: 6.98064779e-41 - art_sys_117: 9.43487665e-40 - art_sys_118: 1.04045593e-38 - art_sys_119: -2.31584058e-41 - art_sys_120: -3.52206084e-37 - art_sys_121: 2.05886801e-34 - art_sys_122: 1.17248396e-32 - art_sys_123: -6.93380771e-37 - art_sys_124: 2.50543712e-31 - art_sys_125: 4.35037097e-35 - art_sys_126: 2.80391982e-30 - art_sys_127: -5.83634657e-32 - art_sys_128: -1.31745622e-28 - art_sys_129: 3.57272046e-28 - art_sys_130: 9.34979650e-29 - art_sys_131: 2.38831566e-28 - art_sys_132: 5.07991068e-30 - art_sys_133: 9.56952084e-28 - art_sys_134: -1.21197315e-25 - art_sys_135: -3.72313781e-42 - art_sys_136: -6.84404671e-41 - art_sys_137: -3.34601113e-41 - art_sys_138: 6.57203114e-41 - art_sys_139: 1.97581473e-36 - art_sys_140: 3.16675830e-39 - art_sys_141: 1.41835307e-24 - art_sys_142: 3.00558170e-31 - art_sys_143: 1.85026557e-27 - art_sys_144: -4.14990841e-01 - art_sys_145: -7.71322404e-01 - art_sys_146: 1.95915411e+00 - art_sys_147: 5.65278531e-01 - art_sys_148: -1.93699114e+00 - art_sys_149: -1.99323586e+00 - art_sys_150: 9.71138353e-01 - art_sys_151: -4.72301328e-01 - art_sys_152: 2.37697775e-03 - art_sys_153: 7.79906198e-04 - art_sys_154: 6.06904599e-04 - art_sys_155: -2.55091632e-05 - art_sys_156: -8.50277782e-06 - art_sys_157: 3.44112666e-06 - art_sys_158: 1.17126754e-07 - art_sys_159: -3.40780338e-08 - art_sys_160: -1.19915646e-08 - art_sys_161: 4.63254393e-11 - art_sys_162: 9.93457524e-12 - art_sys_163: 4.79041716e-12 - art_sys_164: 1.22531339e-12 - art_sys_165: 2.39099470e-13 - art_sys_166: 4.95016137e-14 - art_sys_167: -8.38840452e-15 - art_sys_168: 1.78544907e-21 - art_sys_169: 1.29643005e-15 - art_sys_170: 1.64353116e-21 - art_sys_171: 8.58566880e-21 - art_sys_172: 2.21720151e-16 - art_sys_173: -2.05790051e-17 - art_sys_174: -1.22087755e-19 - art_sys_175: 0.0 - art_sys_176: -7.46540971e-21 - art_sys_177: 0.0 - art_sys_178: -1.88379939e-22 - art_sys_179: -1.04941143e-21 - art_sys_180: 3.52336891e-24 - art_sys_181: 4.86966001e-24 - art_sys_182: 0.0 - art_sys_183: -6.34565991e-19 - art_sys_184: 6.15188607e-21 - art_sys_185: -5.83235805e-23 + art_sys_58: 9.04238320e-298 + art_sys_59: -1.90997087e-218 + art_sys_60: -2.09661750e-214 + art_sys_61: 1.24328333e-211 + art_sys_62: -6.14612880e-206 + art_sys_63: -9.50841644e-197 + art_sys_64: 2.92473419e-198 + art_sys_65: -3.16662552e-71 + art_sys_66: -5.91552827e-59 + art_sys_67: 2.18749393e-55 + art_sys_68: 2.88679919e-53 + art_sys_69: 3.76909538e-39 + art_sys_70: -8.26578313e-42 + art_sys_71: 9.48191002e-36 + art_sys_72: 6.23517298e-23 + art_sys_73: -4.14990841e-01 + art_sys_74: 7.71322404e-01 + art_sys_75: -1.95915411e+00 + art_sys_76: -1.92187017e-19 + art_sys_77: -6.52468860e-21 + art_sys_78: 4.72650998e-21 + art_sys_79: 5.65278531e-01 + art_sys_80: -2.03827087e-19 + art_sys_81: -1.93699114e+00 + art_sys_82: 1.99323586e+00 + art_sys_83: -4.52295400e-18 + art_sys_84: -9.71138353e-01 + art_sys_85: 4.72301328e-01 + art_sys_86: 2.07386774e-18 + art_sys_87: -1.32302959e-19 + art_sys_88: -4.16736563e-19 + art_sys_89: 1.08718205e-19 + art_sys_90: 3.26691660e-22 + art_sys_91: -1.43162375e-20 + art_sys_92: -9.00919680e-20 + art_sys_93: 1.36906121e-21 + art_sys_94: -8.69982567e-21 + art_sys_95: -5.28750693e-20 + art_sys_96: 3.09217261e-19 + art_sys_97: -6.07853361e-23 + art_sys_98: 3.72674003e-20 + art_sys_99: -2.48599987e-20 + art_sys_100: -1.67827700e-20 + art_sys_101: 5.08515075e-21 + art_sys_102: -5.72442312e-21 + art_sys_103: 2.43111371e-20 + art_sys_104: -2.85070228e-20 + art_sys_105: -1.88894915e-22 + art_sys_106: -1.34528247e-20 + art_sys_107: -1.56475215e-20 + art_sys_108: -2.50240521e-21 + art_sys_109: 6.19291117e-20 + art_sys_110: 1.45738598e-22 + art_sys_111: 3.24969916e-21 + art_sys_112: 1.22787757e-20 + art_sys_113: 2.43373934e-20 + art_sys_114: -1.59022806e-20 + art_sys_115: 1.22388163e-20 + art_sys_116: -2.23788914e-20 + art_sys_117: -6.61383411e-21 + art_sys_118: -5.34905908e-21 + art_sys_119: -7.95962356e-23 + art_sys_120: 6.04053911e-21 + art_sys_121: -1.04803414e-20 + art_sys_122: 4.83641223e-21 + art_sys_123: 2.55878087e-21 + art_sys_124: -9.37106869e-22 + art_sys_125: -6.69298807e-22 + art_sys_126: 9.19892790e-22 + art_sys_127: 4.20719400e-21 + art_sys_128: -3.64922935e-21 + art_sys_129: -1.39738611e-21 + art_sys_130: -1.77182221e-21 + art_sys_131: 1.79760935e-21 + art_sys_132: 1.35069329e-21 + art_sys_133: 4.22336225e-22 + art_sys_134: -3.91248199e-22 + art_sys_135: -3.64049178e-23 + art_sys_136: -1.84927748e-21 + art_sys_137: 3.69155284e-22 + art_sys_138: 4.13120672e-22 + art_sys_139: -2.06136742e-22 + art_sys_140: -1.06171109e-23 + art_sys_141: -6.33291566e-22 + art_sys_142: 4.47561360e-22 + art_sys_143: -3.21721931e-22 + art_sys_144: 6.47116558e-20 + art_sys_145: 1.02649965e-20 + art_sys_146: 0.0 + art_sys_147: 2.70485341e-21 + art_sys_148: -6.87504265e-23 + art_sys_149: -6.87504265e-23 + art_sys_150: 2.73095669e-23 + art_sys_151: 2.73095669e-23 + art_sys_152: 1.70269815e-23 + art_sys_153: -5.79514590e-21 + art_sys_154: 2.29780814e-21 + art_sys_155: 6.15188719e-21 + art_sys_156: -5.83240016e-23 + art_sys_157: -4.86966560e-24 + art_sys_158: -0.0 + art_sys_159: -1.59497126e-20 + art_sys_160: 4.46376426e-20 + art_sys_161: 1.56205583e-20 + art_sys_162: -2.86143656e-22 + art_sys_163: -1.40681709e-21 + art_sys_164: -3.23106640e-21 + art_sys_165: -1.13246936e-21 + art_sys_166: 2.37697775e-03 + art_sys_167: -7.79906198e-04 + art_sys_168: -6.06904599e-04 + art_sys_169: 2.55091632e-05 + art_sys_170: -8.50277782e-06 + art_sys_171: 3.44112666e-06 + art_sys_172: 1.17126754e-07 + art_sys_173: -3.40780338e-08 + art_sys_174: -1.19915646e-08 + art_sys_175: -6.34565973e-19 + art_sys_176: -4.63254393e-11 + art_sys_177: -9.93457523e-12 + art_sys_178: 4.79041716e-12 + art_sys_179: -1.22531339e-12 + art_sys_180: 2.39099472e-13 + art_sys_181: -4.95016137e-14 + art_sys_182: -8.38840469e-15 + art_sys_183: 1.29643003e-15 + art_sys_184: -2.21721161e-16 + art_sys_185: 2.05790113e-17 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -45692,134 +45692,134 @@ bins: art_sys_55: 0.0 art_sys_56: 0.0 art_sys_57: 0.0 - art_sys_58: 0.0 - art_sys_59: 0.0 - art_sys_60: 0.0 - art_sys_61: 0.0 - art_sys_62: 0.0 - art_sys_63: 0.0 - art_sys_64: 0.0 - art_sys_65: -2.39011361e-273 - art_sys_66: -2.85390855e-195 - art_sys_67: -9.71185527e-185 - art_sys_68: -3.12806473e-202 - art_sys_69: -1.00620834e-190 - art_sys_70: -1.39327180e-192 - art_sys_71: 4.61781351e-187 - art_sys_72: 2.16668609e-157 - art_sys_73: -8.54725886e-171 - art_sys_74: 4.62886976e-163 - art_sys_75: 4.90667586e-140 - art_sys_76: -1.26583350e-120 - art_sys_77: -1.10276023e-104 - art_sys_78: -3.20041330e-105 - art_sys_79: 1.01408193e-91 - art_sys_80: 1.33540449e-74 - art_sys_81: 5.55221422e-67 - art_sys_82: 3.62610067e-61 - art_sys_83: 1.02546944e-77 - art_sys_84: -9.35728080e-78 - art_sys_85: -4.67103868e-75 - art_sys_86: -5.15287835e-67 - art_sys_87: 3.96411409e-70 - art_sys_88: -2.29895532e-49 - art_sys_89: -8.05388501e-67 - art_sys_90: -2.04732845e-66 - art_sys_91: -6.56107572e-66 - art_sys_92: -2.49127628e-66 - art_sys_93: -3.32909186e-67 - art_sys_94: -2.20649154e-65 - art_sys_95: 1.75626442e-66 - art_sys_96: -6.74547576e-59 - art_sys_97: -4.82642324e-60 - art_sys_98: 1.03151803e-58 - art_sys_99: 1.76678403e-58 - art_sys_100: 5.24865580e-43 - art_sys_101: 2.13869162e-42 - art_sys_102: 4.06729228e-59 - art_sys_103: 1.05668887e-49 - art_sys_104: -7.07962608e-55 - art_sys_105: 4.78487183e-45 - art_sys_106: -6.71742585e-52 - art_sys_107: 1.86981624e-51 - art_sys_108: 9.13358933e-42 - art_sys_109: 5.36419557e-48 - art_sys_110: -6.50000977e-45 - art_sys_111: 2.93794122e-43 - art_sys_112: 1.17638152e-44 - art_sys_113: -3.68151710e-43 - art_sys_114: -1.21744278e-43 - art_sys_115: 5.19105464e-42 - art_sys_116: 1.46478972e-41 - art_sys_117: 1.97977476e-40 - art_sys_118: 2.18324888e-39 - art_sys_119: -4.85946229e-42 - art_sys_120: -7.39054407e-38 - art_sys_121: 4.32024188e-35 - art_sys_122: 2.46029095e-33 - art_sys_123: -1.45496100e-37 - art_sys_124: 5.25730370e-32 - art_sys_125: 9.12863515e-36 - art_sys_126: 5.88362722e-31 - art_sys_127: -1.22467437e-32 - art_sys_128: -2.76449462e-29 - art_sys_129: 7.49684608e-29 - art_sys_130: 1.96192190e-29 - art_sys_131: 5.01154095e-29 - art_sys_132: 1.06594705e-30 - art_sys_133: 2.00802793e-28 - art_sys_134: -2.54315340e-26 - art_sys_135: -7.81247551e-43 - art_sys_136: -1.43612593e-41 - art_sys_137: -7.02112877e-42 - art_sys_138: 1.37904732e-41 - art_sys_139: 4.14596639e-37 - art_sys_140: 6.64499219e-40 - art_sys_141: 2.97621232e-25 - art_sys_142: 6.30678600e-32 - art_sys_143: 3.88251931e-28 - art_sys_144: -8.72832674e-02 - art_sys_145: 1.09606082e-01 - art_sys_146: 1.29949206e-01 - art_sys_147: 2.33708687e-01 - art_sys_148: 4.73613539e-01 - art_sys_149: -2.26881092e+00 - art_sys_150: -9.14928319e-01 - art_sys_151: 5.61238569e-01 - art_sys_152: -1.18104713e-02 - art_sys_153: -2.46589436e-03 - art_sys_154: -2.16759950e-03 - art_sys_155: 1.00527489e-04 - art_sys_156: 2.84992003e-05 - art_sys_157: -1.22701055e-05 - art_sys_158: -4.17007605e-07 - art_sys_159: 1.09447160e-07 - art_sys_160: 4.18102947e-08 - art_sys_161: -8.57413597e-11 - art_sys_162: -3.05808041e-11 - art_sys_163: -1.23524354e-11 - art_sys_164: -3.28626743e-12 - art_sys_165: -6.83156032e-13 - art_sys_166: -1.33772923e-13 - art_sys_167: 2.37826582e-14 - art_sys_168: -6.59850521e-22 - art_sys_169: -3.66744878e-15 - art_sys_170: 1.30507729e-21 - art_sys_171: -8.26101946e-21 - art_sys_172: -6.15816468e-16 - art_sys_173: 5.84536710e-17 - art_sys_174: 1.39297363e-19 - art_sys_175: 0.0 - art_sys_176: 7.81946404e-21 - art_sys_177: 0.0 - art_sys_178: 6.09598141e-22 - art_sys_179: 8.46715526e-22 - art_sys_180: -2.84127582e-24 - art_sys_181: -1.36843560e-23 - art_sys_182: 0.0 - art_sys_183: 1.81744562e-18 - art_sys_184: -2.01167908e-20 - art_sys_185: 1.60197840e-22 + art_sys_58: 1.90175772e-298 + art_sys_59: -4.01716090e-219 + art_sys_60: -4.40972686e-215 + art_sys_61: 2.61494522e-212 + art_sys_62: -1.29268926e-206 + art_sys_63: -1.99986499e-197 + art_sys_64: 6.15146964e-199 + art_sys_65: -6.66022944e-72 + art_sys_66: -1.24418803e-59 + art_sys_67: 4.60086340e-56 + art_sys_68: 6.07168257e-54 + art_sys_69: 7.92737881e-40 + art_sys_70: -1.73850719e-42 + art_sys_71: 1.99429001e-36 + art_sys_72: 1.31141755e-23 + art_sys_73: -8.72832674e-02 + art_sys_74: -1.09606082e-01 + art_sys_75: -1.29949206e-01 + art_sys_76: -5.49936939e-21 + art_sys_77: -3.27882602e-22 + art_sys_78: -6.13264370e-22 + art_sys_79: 2.33708687e-01 + art_sys_80: -5.65806126e-20 + art_sys_81: 4.73613539e-01 + art_sys_82: 2.26881092e+00 + art_sys_83: 1.21943635e-18 + art_sys_84: 9.14928319e-01 + art_sys_85: -5.61238569e-01 + art_sys_86: 2.67589501e-19 + art_sys_87: -1.72125293e-19 + art_sys_88: 1.26183715e-19 + art_sys_89: -1.59554058e-19 + art_sys_90: -1.04171917e-19 + art_sys_91: 1.92211286e-20 + art_sys_92: 3.33376830e-20 + art_sys_93: 1.08538604e-19 + art_sys_94: 1.88729424e-20 + art_sys_95: 4.83377984e-20 + art_sys_96: 7.51594198e-20 + art_sys_97: 2.40431485e-21 + art_sys_98: -3.65571780e-20 + art_sys_99: -3.73257221e-20 + art_sys_100: -5.05571017e-21 + art_sys_101: -1.54131433e-20 + art_sys_102: -3.98616890e-21 + art_sys_103: -1.07306259e-21 + art_sys_104: 1.25652195e-20 + art_sys_105: -2.66173014e-20 + art_sys_106: -1.57520673e-21 + art_sys_107: 3.91776933e-20 + art_sys_108: 2.48543060e-21 + art_sys_109: 2.74373292e-20 + art_sys_110: 9.29022786e-21 + art_sys_111: -3.79334976e-22 + art_sys_112: 1.81312650e-20 + art_sys_113: -2.97094814e-20 + art_sys_114: -9.90293863e-21 + art_sys_115: -2.15882406e-20 + art_sys_116: -4.84818053e-21 + art_sys_117: -5.59176943e-21 + art_sys_118: -2.13007037e-21 + art_sys_119: 6.51847891e-22 + art_sys_120: 1.09629280e-21 + art_sys_121: -5.13971347e-21 + art_sys_122: 3.43722791e-21 + art_sys_123: -1.04596036e-21 + art_sys_124: 1.73859335e-21 + art_sys_125: -8.66316213e-22 + art_sys_126: 7.80866941e-21 + art_sys_127: -1.08744027e-21 + art_sys_128: 2.43534854e-21 + art_sys_129: -4.28716744e-21 + art_sys_130: 1.62551873e-21 + art_sys_131: 1.11517745e-21 + art_sys_132: 1.62291647e-21 + art_sys_133: -8.67705773e-22 + art_sys_134: -3.67966008e-21 + art_sys_135: -2.02163068e-24 + art_sys_136: 7.30721196e-22 + art_sys_137: -1.23929620e-21 + art_sys_138: -5.26436480e-22 + art_sys_139: -4.47575291e-22 + art_sys_140: 5.19610294e-23 + art_sys_141: -2.62379844e-22 + art_sys_142: 1.06665280e-22 + art_sys_143: 8.99267134e-21 + art_sys_144: -8.84974727e-20 + art_sys_145: -1.47360008e-20 + art_sys_146: -0.0 + art_sys_147: -3.87809971e-21 + art_sys_148: 4.40289842e-23 + art_sys_149: 4.40289842e-23 + art_sys_150: -1.61687106e-22 + art_sys_151: -1.61687106e-22 + art_sys_152: 4.71197207e-23 + art_sys_153: 7.15656640e-21 + art_sys_154: -2.89450837e-21 + art_sys_155: -2.01167946e-20 + art_sys_156: 1.60199211e-22 + art_sys_157: 1.36843738e-23 + art_sys_158: 0.0 + art_sys_159: -9.31284828e-21 + art_sys_160: 2.66983264e-21 + art_sys_161: -6.60564135e-21 + art_sys_162: -1.16671977e-21 + art_sys_163: -2.99009891e-21 + art_sys_164: -2.49760051e-21 + art_sys_165: 1.58290004e-21 + art_sys_166: -1.18104713e-02 + art_sys_167: 2.46589436e-03 + art_sys_168: 2.16759950e-03 + art_sys_169: -1.00527489e-04 + art_sys_170: 2.84992003e-05 + art_sys_171: -1.22701055e-05 + art_sys_172: -4.17007605e-07 + art_sys_173: 1.09447160e-07 + art_sys_174: 4.18102947e-08 + art_sys_175: 1.81744556e-18 + art_sys_176: 8.57413597e-11 + art_sys_177: 3.05808041e-11 + art_sys_178: -1.23524354e-11 + art_sys_179: 3.28626743e-12 + art_sys_180: -6.83156033e-13 + art_sys_181: 1.33772923e-13 + art_sys_182: 2.37826572e-14 + art_sys_183: -3.66744882e-15 + art_sys_184: 6.15817138e-16 + art_sys_185: -5.84536714e-17 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -45983,134 +45983,134 @@ bins: art_sys_55: 0.0 art_sys_56: 0.0 art_sys_57: 0.0 - art_sys_58: 0.0 - art_sys_59: 0.0 - art_sys_60: 0.0 - art_sys_61: 0.0 - art_sys_62: 0.0 - art_sys_63: 0.0 - art_sys_64: 0.0 - art_sys_65: 2.81713967e-274 - art_sys_66: 3.36379707e-196 - art_sys_67: 1.14470067e-185 - art_sys_68: 3.68693486e-203 - art_sys_69: 1.18598077e-191 - art_sys_70: 1.64219824e-193 - art_sys_71: -5.44284698e-188 - art_sys_72: -2.55379322e-158 - art_sys_73: 1.00733404e-171 - art_sys_74: -5.45587857e-164 - art_sys_75: -5.78331840e-141 - art_sys_76: 1.49199140e-121 - art_sys_77: 1.29978294e-105 - art_sys_78: 3.77220947e-106 - art_sys_79: -1.19526108e-92 - art_sys_80: -1.57399217e-75 - art_sys_81: -6.54419073e-68 - art_sys_82: -4.27395152e-62 - art_sys_83: -1.20868706e-78 - art_sys_84: 1.10290831e-78 - art_sys_85: 5.50558064e-76 - art_sys_86: 6.07350822e-68 - art_sys_87: -4.67235551e-71 - art_sys_88: 2.70969409e-50 - art_sys_89: 9.49286443e-68 - art_sys_90: 2.41311076e-67 - art_sys_91: 7.73329869e-67 - art_sys_92: 2.91492970e-67 - art_sys_93: 3.82506066e-68 - art_sys_94: 2.60071040e-66 - art_sys_95: -2.07004208e-67 - art_sys_96: 7.95064423e-60 - art_sys_97: 5.68872760e-61 - art_sys_98: -1.21581237e-59 - art_sys_99: -2.08244336e-59 - art_sys_100: -6.18639759e-44 - art_sys_101: -2.52079716e-43 - art_sys_102: -4.79398307e-60 - art_sys_103: -1.24548031e-50 - art_sys_104: 8.34447730e-56 - art_sys_105: -5.63975247e-46 - art_sys_106: 7.91758284e-53 - art_sys_107: -2.20388364e-52 - art_sys_108: -1.07654259e-42 - art_sys_109: -6.32258006e-49 - art_sys_110: 7.66132249e-46 - art_sys_111: -3.46284328e-44 - art_sys_112: -1.38655763e-45 - art_sys_113: 4.33926883e-44 - art_sys_114: 1.43495504e-44 - art_sys_115: -6.11850521e-43 - art_sys_116: -1.72649378e-42 - art_sys_117: -2.33348771e-41 - art_sys_118: -2.57331518e-40 - art_sys_119: 5.72766951e-43 - art_sys_120: 8.71096253e-39 - art_sys_121: -5.09211024e-36 - art_sys_122: -2.89985447e-34 - art_sys_123: 1.71490902e-38 - art_sys_124: -6.19659054e-33 - art_sys_125: -1.07595866e-36 - art_sys_126: -6.93481505e-32 - art_sys_127: 1.44347865e-33 - art_sys_128: 3.25840815e-30 - art_sys_129: -8.83625679e-30 - art_sys_130: -2.31244520e-30 - art_sys_131: -5.90691903e-30 - art_sys_132: -1.25639260e-31 - art_sys_133: -2.36678869e-29 - art_sys_134: 2.99752140e-27 - art_sys_135: 9.20827760e-44 - art_sys_136: 1.69270882e-42 - art_sys_137: 8.27554630e-43 - art_sys_138: -1.62543236e-42 - art_sys_139: -4.88669812e-38 - art_sys_140: -7.83220794e-41 - art_sys_141: -3.50795202e-26 - art_sys_142: -7.43357674e-33 - art_sys_143: -4.57618274e-29 - art_sys_144: 1.02324392e-02 - art_sys_145: 6.09757045e-02 - art_sys_146: -1.09840418e-01 - art_sys_147: -2.46817492e-02 - art_sys_148: 4.11002677e-01 - art_sys_149: -2.51577085e-01 - art_sys_150: -1.50524545e+00 - art_sys_151: -7.51931830e-01 - art_sys_152: 8.05710365e-03 - art_sys_153: 7.64305344e-03 - art_sys_154: 5.01562437e-03 - art_sys_155: -2.79340298e-04 - art_sys_156: -8.90654986e-05 - art_sys_157: 3.71210514e-05 - art_sys_158: 1.43173981e-06 - art_sys_159: -3.76865019e-07 - art_sys_160: -1.40892706e-07 - art_sys_161: 5.80685303e-10 - art_sys_162: 1.02322748e-10 - art_sys_163: 5.93611779e-11 - art_sys_164: 1.37764597e-11 - art_sys_165: 2.85740628e-12 - art_sys_166: 5.82002329e-13 - art_sys_167: -9.74862857e-14 - art_sys_168: -2.01785640e-21 - art_sys_169: 1.54371815e-14 - art_sys_170: 7.99501034e-22 - art_sys_171: 5.03222853e-21 - art_sys_172: 2.58869641e-15 - art_sys_173: -2.46442790e-16 - art_sys_174: -1.62248478e-19 - art_sys_175: 0.0 - art_sys_176: -8.05656612e-21 - art_sys_177: 0.0 - art_sys_178: -1.48444492e-21 - art_sys_179: -6.51955872e-22 - art_sys_180: 2.23271245e-24 - art_sys_181: 5.67876363e-23 - art_sys_182: 0.0 - art_sys_183: -7.45908402e-18 - art_sys_184: 6.90291338e-20 - art_sys_185: -6.79906886e-22 + art_sys_58: -2.22971916e-299 + art_sys_59: 4.70941982e-220 + art_sys_60: 5.16963486e-216 + art_sys_61: -3.06556673e-213 + art_sys_62: 1.51545247e-207 + art_sys_63: 2.34449255e-198 + art_sys_64: -7.21152418e-200 + art_sys_65: 7.80795622e-73 + art_sys_66: 1.45859324e-60 + art_sys_67: -5.39370908e-57 + art_sys_68: -7.11798777e-55 + art_sys_69: -9.29346763e-41 + art_sys_70: 2.03809615e-43 + art_sys_71: -2.33795685e-37 + art_sys_72: -1.53740811e-24 + art_sys_73: 1.02324392e-02 + art_sys_74: -6.09757045e-02 + art_sys_75: 1.09840418e-01 + art_sys_76: 1.16936922e-20 + art_sys_77: 3.78870959e-22 + art_sys_78: -3.65959427e-22 + art_sys_79: -2.46817492e-02 + art_sys_80: 1.04003593e-20 + art_sys_81: 4.11002677e-01 + art_sys_82: 2.51577085e-01 + art_sys_83: 4.10516498e-18 + art_sys_84: 1.50524545e+00 + art_sys_85: 7.51931830e-01 + art_sys_86: 4.93635148e-19 + art_sys_87: -2.53084341e-21 + art_sys_88: -2.16565798e-19 + art_sys_89: -1.18590018e-19 + art_sys_90: 4.28048914e-20 + art_sys_91: 1.01996239e-19 + art_sys_92: -7.45675996e-20 + art_sys_93: -2.36685321e-20 + art_sys_94: -2.67074928e-20 + art_sys_95: 1.12149327e-19 + art_sys_96: 1.50671750e-19 + art_sys_97: -1.48955745e-20 + art_sys_98: 6.31892605e-20 + art_sys_99: 2.58860818e-21 + art_sys_100: 1.00452717e-20 + art_sys_101: -3.14351655e-20 + art_sys_102: -6.67461346e-21 + art_sys_103: 8.32651831e-21 + art_sys_104: 4.51382867e-21 + art_sys_105: -2.25359506e-20 + art_sys_106: 8.40079173e-21 + art_sys_107: 8.65726831e-20 + art_sys_108: 5.57057811e-21 + art_sys_109: 5.96063861e-20 + art_sys_110: 4.56783510e-20 + art_sys_111: 1.03976925e-20 + art_sys_112: 2.50042543e-20 + art_sys_113: 2.42588468e-20 + art_sys_114: 3.00150206e-22 + art_sys_115: -2.08177280e-21 + art_sys_116: 8.43166207e-21 + art_sys_117: 2.70795904e-21 + art_sys_118: -1.09246764e-20 + art_sys_119: -1.97447392e-21 + art_sys_120: 4.22187880e-21 + art_sys_121: -1.07342394e-21 + art_sys_122: 2.69822104e-23 + art_sys_123: -1.35300526e-21 + art_sys_124: 2.71914894e-21 + art_sys_125: 1.30836554e-21 + art_sys_126: -6.36276675e-22 + art_sys_127: -2.46730729e-21 + art_sys_128: 1.59835999e-21 + art_sys_129: -2.87616554e-21 + art_sys_130: 6.11132056e-22 + art_sys_131: -6.09193790e-22 + art_sys_132: 4.22860560e-22 + art_sys_133: 1.32007188e-21 + art_sys_134: 1.06270516e-21 + art_sys_135: -1.59418093e-22 + art_sys_136: 5.76062367e-22 + art_sys_137: 7.22412960e-22 + art_sys_138: 1.12789141e-22 + art_sys_139: -1.28421301e-21 + art_sys_140: 6.85676670e-22 + art_sys_141: 4.99908943e-22 + art_sys_142: 1.30066619e-22 + art_sys_143: -1.05413628e-20 + art_sys_144: 1.08117811e-19 + art_sys_145: 1.56259113e-20 + art_sys_146: -0.0 + art_sys_147: 3.18073851e-21 + art_sys_148: 6.78366264e-23 + art_sys_149: 6.78366264e-23 + art_sys_150: -1.56513788e-23 + art_sys_151: -1.56513788e-23 + art_sys_152: 1.67408149e-22 + art_sys_153: -8.67669679e-21 + art_sys_154: 3.48946329e-21 + art_sys_155: 6.90291452e-20 + art_sys_156: -6.79911668e-22 + art_sys_157: -5.67877037e-23 + art_sys_158: -0.0 + art_sys_159: -2.09176428e-20 + art_sys_160: 3.94577428e-21 + art_sys_161: 2.23991165e-20 + art_sys_162: -7.66790402e-21 + art_sys_163: -1.48743453e-22 + art_sys_164: 7.97989103e-22 + art_sys_165: 2.41478054e-21 + art_sys_166: 8.05710365e-03 + art_sys_167: -7.64305344e-03 + art_sys_168: -5.01562437e-03 + art_sys_169: 2.79340298e-04 + art_sys_170: -8.90654986e-05 + art_sys_171: 3.71210514e-05 + art_sys_172: 1.43173981e-06 + art_sys_173: -3.76865019e-07 + art_sys_174: -1.40892706e-07 + art_sys_175: -7.45908384e-18 + art_sys_176: -5.80685303e-10 + art_sys_177: -1.02322748e-10 + art_sys_178: 5.93611779e-11 + art_sys_179: -1.37764597e-11 + art_sys_180: 2.85740628e-12 + art_sys_181: -5.82002329e-13 + art_sys_182: -9.74862861e-14 + art_sys_183: 1.54371815e-14 + art_sys_184: -2.58869574e-15 + art_sys_185: 2.46442789e-16 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -46274,134 +46274,134 @@ bins: art_sys_55: 0.0 art_sys_56: 0.0 art_sys_57: 0.0 - art_sys_58: 0.0 - art_sys_59: 0.0 - art_sys_60: 0.0 - art_sys_61: 0.0 - art_sys_62: 0.0 - art_sys_63: 0.0 - art_sys_64: 0.0 - art_sys_65: 9.22106808e-275 - art_sys_66: 1.10103901e-196 - art_sys_67: 3.74683747e-186 - art_sys_68: 1.20680857e-203 - art_sys_69: 3.88195562e-192 - art_sys_70: 5.37524793e-194 - art_sys_71: -1.78155422e-188 - art_sys_72: -8.35908320e-159 - art_sys_73: 3.29775969e-172 - art_sys_74: -1.78581972e-164 - art_sys_75: -1.89299742e-141 - art_sys_76: 4.88359049e-122 - art_sys_77: 4.25445320e-106 - art_sys_78: 1.23472067e-106 - art_sys_79: -3.91233194e-93 - art_sys_80: -5.15199563e-76 - art_sys_81: -2.14204636e-68 - art_sys_82: -1.39895102e-62 - art_sys_83: -3.95627889e-79 - art_sys_84: 3.61004196e-79 - art_sys_85: 1.80208862e-76 - art_sys_86: 1.98798243e-68 - art_sys_87: -1.52935673e-71 - art_sys_88: 8.86937839e-51 - art_sys_89: 3.10716452e-68 - art_sys_90: 7.89860099e-68 - art_sys_91: 2.53126552e-67 - art_sys_92: 7.02299393e-68 - art_sys_93: 1.25537839e-68 - art_sys_94: 8.51265271e-67 - art_sys_95: -6.77559776e-68 - art_sys_96: 2.60240712e-60 - art_sys_97: 1.86203593e-61 - art_sys_98: -3.97960051e-60 - art_sys_99: -6.81625953e-60 - art_sys_100: -2.02493341e-44 - art_sys_101: -8.25108042e-44 - art_sys_102: -1.56914891e-60 - art_sys_103: -4.07670969e-51 - art_sys_104: 2.73131559e-56 - art_sys_105: -1.84600538e-46 - art_sys_106: 2.59158546e-53 - art_sys_107: -7.21375802e-53 - art_sys_108: -3.52374225e-43 - art_sys_109: -2.06950870e-49 - art_sys_110: 2.50770625e-46 - art_sys_111: -1.13345884e-44 - art_sys_112: -4.53848438e-46 - art_sys_113: 1.42033070e-44 - art_sys_114: 4.69689891e-45 - art_sys_115: -2.00271086e-43 - art_sys_116: -5.65116434e-43 - art_sys_117: -7.63797860e-42 - art_sys_118: -8.42298253e-41 - art_sys_119: 1.87478241e-43 - art_sys_120: 2.85127472e-39 - art_sys_121: -1.66675097e-36 - art_sys_122: -9.49181186e-35 - art_sys_123: 5.61324508e-39 - art_sys_124: -2.02826977e-33 - art_sys_125: -3.52183092e-37 - art_sys_126: -2.26990563e-32 - art_sys_127: 4.72479841e-34 - art_sys_128: 1.06654308e-30 - art_sys_129: -2.89228608e-30 - art_sys_130: -7.56910220e-31 - art_sys_131: -1.93345441e-30 - art_sys_132: -4.11242780e-32 - art_sys_133: -7.74697944e-30 - art_sys_134: 9.81149553e-28 - art_sys_135: 3.01405603e-44 - art_sys_136: 5.54057931e-43 - art_sys_137: 2.70875416e-43 - art_sys_138: -5.32036987e-43 - art_sys_139: -1.59951541e-38 - art_sys_140: -2.56364053e-41 - art_sys_141: -1.14822385e-26 - art_sys_142: -2.43316045e-33 - art_sys_143: -1.49787743e-29 - art_sys_144: 3.36194855e-03 - art_sys_145: 3.04001063e-03 - art_sys_146: -1.33022593e-02 - art_sys_147: -1.08982924e-02 - art_sys_148: -1.03393318e-02 - art_sys_149: 1.11457007e-01 - art_sys_150: -2.57757398e-02 - art_sys_151: -1.06619479e-01 - art_sys_152: -1.62601696e-01 - art_sys_153: -2.24298315e-02 - art_sys_154: -3.06550642e-02 - art_sys_155: 1.33238599e-03 - art_sys_156: 4.47610907e-04 - art_sys_157: -1.92101654e-04 - art_sys_158: -6.54228052e-06 - art_sys_159: 1.90472317e-06 - art_sys_160: 6.98917776e-07 - art_sys_161: -1.78312175e-09 - art_sys_162: -6.32858458e-10 - art_sys_163: -2.35885682e-10 - art_sys_164: -6.83156840e-11 - art_sys_165: -1.31830497e-11 - art_sys_166: -2.69596123e-12 - art_sys_167: 4.73983979e-13 - art_sys_168: -9.92159780e-22 - art_sys_169: -7.20985957e-14 - art_sys_170: -2.65356185e-22 - art_sys_171: -1.41754213e-20 - art_sys_172: -1.23670665e-14 - art_sys_173: 1.14422274e-15 - art_sys_174: 5.17692337e-19 - art_sys_175: 0.0 - art_sys_176: 2.68975695e-20 - art_sys_177: 0.0 - art_sys_178: 6.94990942e-21 - art_sys_179: 1.03883429e-21 - art_sys_180: -5.37416055e-25 - art_sys_181: -2.74291357e-22 - art_sys_182: 0.0 - art_sys_183: 3.59466062e-17 - art_sys_184: -3.91796815e-19 - art_sys_185: 3.23473579e-21 + art_sys_58: -7.32536497e-300 + art_sys_59: 1.54731699e-220 + art_sys_60: 1.69852427e-216 + art_sys_61: -1.00721611e-213 + art_sys_62: 4.97913851e-208 + art_sys_63: 7.70301502e-199 + art_sys_64: -2.36940310e-200 + art_sys_65: 2.56536555e-73 + art_sys_66: 4.79232303e-61 + art_sys_67: -1.77214562e-57 + art_sys_68: -2.33867098e-55 + art_sys_69: -3.05344203e-41 + art_sys_70: 6.69632552e-44 + art_sys_71: -7.68154149e-38 + art_sys_72: -5.05127551e-25 + art_sys_73: 3.36194855e-03 + art_sys_74: -3.04001063e-03 + art_sys_75: 1.33022593e-02 + art_sys_76: 1.21089575e-21 + art_sys_77: 4.30240379e-23 + art_sys_78: -1.93304052e-23 + art_sys_79: -1.08982924e-02 + art_sys_80: 3.00796744e-21 + art_sys_81: -1.03393318e-02 + art_sys_82: -1.11457007e-01 + art_sys_83: 1.20510667e-19 + art_sys_84: 2.57757398e-02 + art_sys_85: 1.06619479e-01 + art_sys_86: 4.73166266e-20 + art_sys_87: 1.16063689e-20 + art_sys_88: -2.68100729e-20 + art_sys_89: 5.21545976e-21 + art_sys_90: 1.18223067e-20 + art_sys_91: 5.27608221e-21 + art_sys_92: -9.91260861e-21 + art_sys_93: -9.93783293e-21 + art_sys_94: -3.59861819e-21 + art_sys_95: 3.76785281e-21 + art_sys_96: 1.20873567e-20 + art_sys_97: -1.27465976e-21 + art_sys_98: 7.89080100e-21 + art_sys_99: 2.34754412e-21 + art_sys_100: 7.78705812e-22 + art_sys_101: -6.97756770e-22 + art_sys_102: -1.45885534e-22 + art_sys_103: 9.70496710e-22 + art_sys_104: -1.06151260e-21 + art_sys_105: 3.21101949e-22 + art_sys_106: 6.66140757e-22 + art_sys_107: 3.23324255e-21 + art_sys_108: 1.77411317e-22 + art_sys_109: 3.36326116e-21 + art_sys_110: 2.67359461e-21 + art_sys_111: 9.46652433e-22 + art_sys_112: 7.79060163e-22 + art_sys_113: 4.60814919e-21 + art_sys_114: 5.37317341e-22 + art_sys_115: 1.64651278e-21 + art_sys_116: 7.31990146e-22 + art_sys_117: 4.43867429e-22 + art_sys_118: -7.73020378e-22 + art_sys_119: -1.55231911e-22 + art_sys_120: 3.08381963e-22 + art_sys_121: 1.29142614e-22 + art_sys_122: -1.69445047e-22 + art_sys_123: 1.30684095e-23 + art_sys_124: 1.25069900e-22 + art_sys_125: 1.37370483e-22 + art_sys_126: -5.65388553e-22 + art_sys_127: -2.77718942e-23 + art_sys_128: -1.10000284e-22 + art_sys_129: 5.97988697e-23 + art_sys_130: -1.47465019e-22 + art_sys_131: -1.02772913e-22 + art_sys_132: -6.66954797e-23 + art_sys_133: 1.61613559e-22 + art_sys_134: -2.08849594e-21 + art_sys_135: -2.33184788e-23 + art_sys_136: -2.50266731e-23 + art_sys_137: -2.38995112e-21 + art_sys_138: 5.30921489e-23 + art_sys_139: -6.26690938e-23 + art_sys_140: 2.23714775e-22 + art_sys_141: -9.11666093e-23 + art_sys_142: -2.76913535e-22 + art_sys_143: 5.12642993e-20 + art_sys_144: -4.53031206e-19 + art_sys_145: -5.71626914e-20 + art_sys_146: -0.0 + art_sys_147: -1.08170526e-20 + art_sys_148: -1.77583484e-22 + art_sys_149: -1.77583484e-22 + art_sys_150: 8.10259955e-24 + art_sys_151: 8.10259955e-24 + art_sys_152: -3.90566345e-22 + art_sys_153: 3.36456595e-20 + art_sys_154: -1.40926584e-20 + art_sys_155: -3.91796873e-19 + art_sys_156: 3.23475831e-21 + art_sys_157: 2.74291660e-22 + art_sys_158: 0.0 + art_sys_159: -1.18766474e-21 + art_sys_160: 5.74049359e-22 + art_sys_161: 3.13271790e-21 + art_sys_162: -4.53386571e-22 + art_sys_163: 1.81996084e-22 + art_sys_164: 1.26891907e-21 + art_sys_165: 2.56698375e-21 + art_sys_166: -1.62601696e-01 + art_sys_167: 2.24298315e-02 + art_sys_168: 3.06550642e-02 + art_sys_169: -1.33238599e-03 + art_sys_170: 4.47610907e-04 + art_sys_171: -1.92101654e-04 + art_sys_172: -6.54228052e-06 + art_sys_173: 1.90472317e-06 + art_sys_174: 6.98917776e-07 + art_sys_175: 3.59466052e-17 + art_sys_176: 1.78312175e-09 + art_sys_177: 6.32858458e-10 + art_sys_178: -2.35885682e-10 + art_sys_179: 6.83156840e-11 + art_sys_180: -1.31830497e-11 + art_sys_181: 2.69596123e-12 + art_sys_182: 4.73983979e-13 + art_sys_183: -7.20985957e-14 + art_sys_184: 1.23670669e-14 + art_sys_185: -1.14422274e-15 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -46565,134 +46565,134 @@ bins: art_sys_55: 0.0 art_sys_56: 0.0 art_sys_57: 0.0 - art_sys_58: 0.0 - art_sys_59: 0.0 - art_sys_60: 0.0 - art_sys_61: 0.0 - art_sys_62: 0.0 - art_sys_63: 0.0 - art_sys_64: 0.0 - art_sys_65: 1.00675237e-275 - art_sys_66: 1.20210995e-197 - art_sys_67: 4.09078203e-187 - art_sys_68: 1.31758872e-204 - art_sys_69: 4.23830348e-193 - art_sys_70: 5.86867399e-195 - art_sys_71: -1.94509370e-189 - art_sys_72: -9.12641331e-160 - art_sys_73: 3.59983736e-173 - art_sys_74: -1.94975076e-165 - art_sys_75: -2.06676694e-142 - art_sys_76: 5.33188438e-123 - art_sys_77: 4.64499483e-107 - art_sys_78: 1.34806305e-107 - art_sys_79: -4.27146823e-94 - art_sys_80: -5.62492803e-77 - art_sys_81: -2.33867758e-69 - art_sys_82: -1.52736908e-63 - art_sys_83: -4.31945141e-80 - art_sys_84: 3.94142919e-80 - art_sys_85: 1.96751302e-77 - art_sys_86: 2.17047120e-69 - art_sys_87: -1.66974551e-72 - art_sys_88: 9.68355153e-52 - art_sys_89: 3.39244141e-69 - art_sys_90: 8.62366068e-69 - art_sys_91: 2.76362548e-68 - art_sys_92: 1.10922703e-68 - art_sys_93: 1.42994900e-69 - art_sys_94: 9.29407984e-68 - art_sys_95: -7.39767611e-69 - art_sys_96: 2.84129759e-61 - art_sys_97: 2.03296331e-62 - art_sys_98: -4.34491177e-61 - art_sys_99: -7.44196464e-61 - art_sys_100: -2.21081413e-45 - art_sys_101: -9.00849630e-45 - art_sys_102: -1.71321530e-61 - art_sys_103: -4.45093519e-52 - art_sys_104: 2.98204495e-57 - art_sys_105: -2.01546122e-47 - art_sys_106: 2.82948254e-54 - art_sys_107: -7.87595215e-54 - art_sys_108: -3.84720757e-44 - art_sys_109: -2.25948124e-50 - art_sys_110: 2.73790356e-47 - art_sys_111: -1.23750579e-45 - art_sys_112: -4.95509893e-47 - art_sys_113: 1.55071133e-45 - art_sys_114: 5.12805528e-46 - art_sys_115: -2.18655163e-44 - art_sys_116: -6.16991842e-44 - art_sys_117: -8.33911421e-43 - art_sys_118: -9.19617833e-42 - art_sys_119: 2.04687987e-44 - art_sys_120: 3.11301024e-40 - art_sys_121: -1.81975198e-37 - art_sys_122: -1.03631219e-35 - art_sys_123: 6.12851832e-40 - art_sys_124: -2.21445675e-34 - art_sys_125: -3.84512079e-38 - art_sys_126: -2.47827380e-33 - art_sys_127: 5.15851584e-35 - art_sys_128: 1.16444743e-31 - art_sys_129: -3.15778627e-31 - art_sys_130: -8.26391523e-32 - art_sys_131: -2.11093772e-31 - art_sys_132: -4.48993208e-33 - art_sys_133: -8.45812088e-31 - art_sys_134: 1.07121512e-28 - art_sys_135: 3.29073421e-45 - art_sys_136: 6.04918213e-44 - art_sys_137: 2.95740686e-44 - art_sys_138: -5.80875832e-44 - art_sys_139: -1.74634447e-39 - art_sys_140: -2.79897238e-42 - art_sys_141: -1.25362616e-27 - art_sys_142: -2.65651475e-34 - art_sys_143: -1.63537653e-30 - art_sys_144: 3.68113545e-04 - art_sys_145: -1.08250018e-03 - art_sys_146: 1.16858131e-03 - art_sys_147: -2.53615436e-04 - art_sys_148: -1.96357255e-02 - art_sys_149: 1.42344586e-02 - art_sys_150: 8.30493993e-02 - art_sys_151: 4.91203192e-02 - art_sys_152: -7.08353083e-02 - art_sys_153: 9.20702885e-02 - art_sys_154: 4.80288106e-02 - art_sys_155: -4.88467869e-03 - art_sys_156: -1.27830347e-03 - art_sys_157: 6.26384981e-04 - art_sys_158: 2.51499998e-05 - art_sys_159: -6.42645336e-06 - art_sys_160: -2.55845223e-06 - art_sys_161: 8.79520325e-09 - art_sys_162: 1.80977099e-09 - art_sys_163: 1.03667391e-09 - art_sys_164: 2.35069720e-10 - art_sys_165: 5.23544195e-11 - art_sys_166: 1.01990399e-11 - art_sys_167: -1.76764351e-12 - art_sys_168: 1.93995726e-21 - art_sys_169: 2.79760534e-13 - art_sys_170: -1.51039699e-21 - art_sys_171: 1.42508369e-20 - art_sys_172: 4.63822677e-14 - art_sys_173: -4.47947512e-15 - art_sys_174: -5.34958124e-19 - art_sys_175: 0.0 - art_sys_176: -2.08051915e-20 - art_sys_177: 0.0 - art_sys_178: -8.54388833e-21 - art_sys_179: -3.97986766e-22 - art_sys_180: 1.86485145e-24 - art_sys_181: 1.02326205e-21 - art_sys_182: 0.0 - art_sys_183: -1.36136190e-16 - art_sys_184: 1.35490357e-18 - art_sys_185: -1.21236278e-20 + art_sys_58: -8.02038215e-301 + art_sys_59: 1.69422088e-221 + art_sys_60: 1.85978393e-217 + art_sys_61: -1.10284225e-214 + art_sys_62: 5.45186310e-209 + art_sys_63: 8.43434729e-200 + art_sys_64: -2.59435670e-201 + art_sys_65: 2.80892402e-74 + art_sys_66: 5.24731117e-62 + art_sys_67: -1.94039498e-58 + art_sys_68: -2.56070683e-56 + art_sys_69: -3.34333900e-42 + art_sys_70: 7.33208164e-45 + art_sys_71: -8.41083504e-39 + art_sys_72: -5.53084887e-26 + art_sys_73: 3.68113545e-04 + art_sys_74: 1.08250018e-03 + art_sys_75: -1.16858131e-03 + art_sys_76: -1.49809389e-22 + art_sys_77: -4.34095169e-24 + art_sys_78: 6.33375311e-24 + art_sys_79: -2.53615436e-04 + art_sys_80: -1.25017528e-23 + art_sys_81: -1.96357255e-02 + art_sys_82: -1.42344586e-02 + art_sys_83: -1.66508473e-19 + art_sys_84: -8.30493993e-02 + art_sys_85: -4.91203192e-02 + art_sys_86: -3.57588550e-20 + art_sys_87: -1.98765741e-22 + art_sys_88: 1.41790542e-20 + art_sys_89: 6.17954261e-21 + art_sys_90: -3.09648935e-21 + art_sys_91: -5.90395044e-21 + art_sys_92: 4.98023874e-21 + art_sys_93: 1.84807711e-21 + art_sys_94: 1.71450961e-21 + art_sys_95: -6.45348260e-21 + art_sys_96: -1.00051329e-20 + art_sys_97: 8.98041092e-22 + art_sys_98: -4.05061539e-21 + art_sys_99: -1.81581083e-22 + art_sys_100: -5.50453464e-22 + art_sys_101: 1.71218852e-21 + art_sys_102: 3.87806000e-22 + art_sys_103: -5.75546908e-22 + art_sys_104: -1.23784721e-22 + art_sys_105: 1.24858221e-21 + art_sys_106: -4.82051286e-22 + art_sys_107: -4.98523055e-21 + art_sys_108: -3.12314096e-22 + art_sys_109: -3.68561657e-21 + art_sys_110: -2.66339182e-21 + art_sys_111: -6.49738343e-22 + art_sys_112: -1.48704680e-21 + art_sys_113: -1.68153378e-21 + art_sys_114: -4.01757139e-24 + art_sys_115: -6.42145418e-25 + art_sys_116: -4.80936220e-22 + art_sys_117: -1.51983632e-22 + art_sys_118: 6.69955083e-22 + art_sys_119: 1.15409786e-22 + art_sys_120: -2.67070631e-22 + art_sys_121: 8.18313360e-23 + art_sys_122: -6.40675196e-24 + art_sys_123: 6.59202351e-23 + art_sys_124: -1.62606451e-22 + art_sys_125: -7.79207573e-23 + art_sys_126: 5.63196475e-23 + art_sys_127: 1.28708032e-22 + art_sys_128: -8.67344096e-23 + art_sys_129: 1.64556032e-22 + art_sys_130: -1.17330818e-23 + art_sys_131: 3.51060219e-23 + art_sys_132: -2.40718260e-23 + art_sys_133: -8.44231531e-23 + art_sys_134: 5.70701341e-22 + art_sys_135: 1.12635066e-23 + art_sys_136: -3.00168473e-23 + art_sys_137: 3.88037995e-21 + art_sys_138: -1.00808001e-23 + art_sys_139: 7.78312209e-23 + art_sys_140: 2.23692273e-22 + art_sys_141: -2.22008743e-22 + art_sys_142: -3.79875129e-22 + art_sys_143: -4.24819245e-20 + art_sys_144: 4.01564951e-19 + art_sys_145: 5.59547265e-20 + art_sys_146: -0.0 + art_sys_147: 6.73066378e-21 + art_sys_148: 1.67737550e-22 + art_sys_149: 1.67737550e-22 + art_sys_150: 3.18384745e-23 + art_sys_151: 3.18384745e-23 + art_sys_152: 3.42282214e-22 + art_sys_153: -3.14958029e-20 + art_sys_154: 1.22369453e-20 + art_sys_155: 1.35490372e-18 + art_sys_156: -1.21237029e-20 + art_sys_157: -1.02326318e-21 + art_sys_158: -0.0 + art_sys_159: 1.28895237e-21 + art_sys_160: -3.27293108e-22 + art_sys_161: -1.34054441e-21 + art_sys_162: 4.53593170e-22 + art_sys_163: 4.96549246e-23 + art_sys_164: -3.94959355e-21 + art_sys_165: -4.48867577e-22 + art_sys_166: -7.08353083e-02 + art_sys_167: -9.20702885e-02 + art_sys_168: -4.80288106e-02 + art_sys_169: 4.88467869e-03 + art_sys_170: -1.27830347e-03 + art_sys_171: 6.26384981e-04 + art_sys_172: 2.51499998e-05 + art_sys_173: -6.42645336e-06 + art_sys_174: -2.55845223e-06 + art_sys_175: -1.36136188e-16 + art_sys_176: -8.79520325e-09 + art_sys_177: -1.80977099e-09 + art_sys_178: 1.03667391e-09 + art_sys_179: -2.35069720e-10 + art_sys_180: 5.23544195e-11 + art_sys_181: -1.01990399e-11 + art_sys_182: -1.76764351e-12 + art_sys_183: 2.79760534e-13 + art_sys_184: -4.63822680e-14 + art_sys_185: 4.47947512e-15 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -46856,134 +46856,134 @@ bins: art_sys_55: 0.0 art_sys_56: 0.0 art_sys_57: 0.0 - art_sys_58: 0.0 - art_sys_59: 0.0 - art_sys_60: 0.0 - art_sys_61: 0.0 - art_sys_62: 0.0 - art_sys_63: 0.0 - art_sys_64: 0.0 - art_sys_65: -2.53697533e-277 - art_sys_66: -3.02926434e-199 - art_sys_67: -1.03085913e-188 - art_sys_68: -3.32026578e-206 - art_sys_69: -1.06803388e-194 - art_sys_70: -1.47888010e-196 - art_sys_71: 4.90155081e-191 - art_sys_72: 2.29981612e-161 - art_sys_73: -9.07420542e-175 - art_sys_74: 4.91328640e-167 - art_sys_75: 5.20816204e-144 - art_sys_76: -1.34361148e-124 - art_sys_77: -1.17051832e-108 - art_sys_78: -3.39705975e-109 - art_sys_79: 1.07639126e-95 - art_sys_80: 1.41745719e-78 - art_sys_81: 5.89336491e-71 - art_sys_82: 3.84890309e-65 - art_sys_83: 1.08848781e-81 - art_sys_84: -9.93222816e-82 - art_sys_85: -4.95804892e-79 - art_sys_86: -5.46949221e-71 - art_sys_87: 4.20768543e-74 - art_sys_88: -2.44021251e-53 - art_sys_89: -8.54880775e-71 - art_sys_90: -2.17312466e-70 - art_sys_91: -6.96421498e-70 - art_sys_92: -3.02134318e-70 - art_sys_93: -3.45397039e-71 - art_sys_94: -2.34206734e-69 - art_sys_95: 1.86418594e-70 - art_sys_96: -7.15994531e-63 - art_sys_97: -5.12297837e-64 - art_sys_98: 1.09489871e-62 - art_sys_99: 1.87534245e-62 - art_sys_100: 5.57115462e-47 - art_sys_101: 2.27010155e-46 - art_sys_102: 4.31723113e-63 - art_sys_103: 1.12161614e-53 - art_sys_104: -7.51465404e-59 - art_sys_105: 5.07887387e-49 - art_sys_106: -7.13017190e-56 - art_sys_107: 1.98470544e-55 - art_sys_108: 9.69479431e-46 - art_sys_109: 5.69379363e-52 - art_sys_110: -6.89939688e-49 - art_sys_111: 3.11846031e-47 - art_sys_112: 1.24866320e-48 - art_sys_113: -3.90772453e-47 - art_sys_114: -1.29224744e-47 - art_sys_115: 5.51001421e-46 - art_sys_116: 1.55479238e-45 - art_sys_117: 2.10142020e-44 - art_sys_118: 2.31739660e-43 - art_sys_119: -5.15804749e-46 - art_sys_120: -7.84464925e-42 - art_sys_121: 4.58569516e-39 - art_sys_122: 2.61146126e-37 - art_sys_123: -1.54435974e-41 - art_sys_124: 5.58033388e-36 - art_sys_125: 9.68953573e-40 - art_sys_126: 6.24514127e-35 - art_sys_127: -1.29992336e-36 - art_sys_128: -2.93435644e-33 - art_sys_129: 7.95748288e-33 - art_sys_130: 2.08247039e-33 - art_sys_131: 5.31947047e-33 - art_sys_132: 1.13144319e-34 - art_sys_133: 2.13140936e-32 - art_sys_134: -2.69941512e-30 - art_sys_135: -8.29250587e-47 - art_sys_136: -1.52436736e-45 - art_sys_137: -7.45253557e-46 - art_sys_138: 1.46378162e-45 - art_sys_139: 4.40071147e-41 - art_sys_140: 7.05328762e-44 - art_sys_141: 3.15908294e-29 - art_sys_142: 6.69430066e-36 - art_sys_143: 4.12107713e-32 - art_sys_144: -8.97314949e-06 - art_sys_145: -3.78401236e-04 - art_sys_146: 7.88297274e-04 - art_sys_147: 4.32530253e-04 - art_sys_148: -1.99822595e-04 - art_sys_149: -7.51026517e-03 - art_sys_150: 3.62769579e-04 - art_sys_151: 6.55998977e-03 - art_sys_152: 2.85816045e-02 - art_sys_153: 9.75427685e-02 - art_sys_154: -5.29020574e-02 - art_sys_155: 3.09653715e-03 - art_sys_156: 2.55839587e-03 - art_sys_157: -1.08840712e-03 - art_sys_158: -5.33271702e-05 - art_sys_159: 1.55741371e-05 - art_sys_160: 5.94374438e-06 - art_sys_161: -2.65569941e-08 - art_sys_162: -6.47343671e-09 - art_sys_163: -2.91304839e-09 - art_sys_164: -7.99516742e-10 - art_sys_165: -1.51911971e-10 - art_sys_166: -3.24734326e-11 - art_sys_167: 5.46749186e-12 - art_sys_168: 1.31641643e-21 - art_sys_169: -8.51766525e-13 - art_sys_170: -4.79244841e-22 - art_sys_171: -1.06683013e-20 - art_sys_172: -1.45768358e-13 - art_sys_173: 1.35663946e-14 - art_sys_174: 4.02865987e-19 - art_sys_175: 0.0 - art_sys_176: 1.72937593e-20 - art_sys_177: 0.0 - art_sys_178: 6.56030655e-21 - art_sys_179: 3.64168833e-22 - art_sys_180: -7.31433284e-25 - art_sys_181: -3.21555227e-21 - art_sys_182: 0.0 - art_sys_183: 4.18113663e-16 - art_sys_184: -4.07980774e-18 - art_sys_185: 3.83438113e-20 + art_sys_58: 1.95636862e-302 + art_sys_59: -4.12983917e-223 + art_sys_60: -4.53341629e-219 + art_sys_61: 2.68829241e-216 + art_sys_62: -1.32894819e-210 + art_sys_63: -2.05595966e-201 + art_sys_64: 6.32401361e-203 + art_sys_65: -6.84704368e-76 + art_sys_66: -1.27908653e-63 + art_sys_67: 4.72991403e-60 + art_sys_68: 6.24198853e-58 + art_sys_69: 8.14973560e-44 + art_sys_70: -1.78727096e-46 + art_sys_71: 2.05022829e-40 + art_sys_72: 1.34820178e-27 + art_sys_73: -8.97314949e-06 + art_sys_74: 3.78401236e-04 + art_sys_75: -7.88297274e-04 + art_sys_76: -8.28538420e-23 + art_sys_77: -2.68449464e-24 + art_sys_78: 2.27052345e-24 + art_sys_79: 4.32530253e-04 + art_sys_80: -1.37365280e-22 + art_sys_81: -1.99822595e-04 + art_sys_82: 7.51026517e-03 + art_sys_83: -4.92934436e-21 + art_sys_84: -3.62769579e-04 + art_sys_85: -6.55998977e-03 + art_sys_86: -2.47002438e-21 + art_sys_87: -8.36734913e-22 + art_sys_88: 1.34776094e-21 + art_sys_89: -4.71307173e-22 + art_sys_90: -7.98810068e-22 + art_sys_91: -2.37987475e-22 + art_sys_92: 6.18745176e-22 + art_sys_93: 6.52229869e-22 + art_sys_94: 2.20609454e-22 + art_sys_95: -1.64950339e-22 + art_sys_96: -7.20832308e-22 + art_sys_97: 7.04842876e-23 + art_sys_98: -4.70684194e-22 + art_sys_99: -1.47099618e-22 + art_sys_100: -3.99560457e-23 + art_sys_101: 9.55418738e-25 + art_sys_102: -1.43659483e-24 + art_sys_103: -5.30627626e-23 + art_sys_104: 7.35539921e-23 + art_sys_105: -4.16368399e-23 + art_sys_106: -4.42360372e-23 + art_sys_107: -1.42330080e-22 + art_sys_108: -5.73403821e-24 + art_sys_109: -1.71481434e-22 + art_sys_110: -1.39334220e-22 + art_sys_111: -5.87466196e-23 + art_sys_112: -3.49139384e-23 + art_sys_113: -2.96845918e-22 + art_sys_114: -3.75599738e-23 + art_sys_115: -1.11851140e-22 + art_sys_116: -4.78061877e-23 + art_sys_117: -2.49671655e-23 + art_sys_118: 4.35485032e-23 + art_sys_119: 6.84305447e-24 + art_sys_120: -1.57515560e-23 + art_sys_121: -9.92833067e-24 + art_sys_122: 1.12245436e-23 + art_sys_123: -2.21735345e-24 + art_sys_124: -9.23813652e-24 + art_sys_125: -7.67141521e-24 + art_sys_126: 3.59425564e-23 + art_sys_127: -3.84445162e-25 + art_sys_128: 7.43808793e-24 + art_sys_129: -5.80180218e-24 + art_sys_130: 1.09181311e-23 + art_sys_131: 6.64669220e-24 + art_sys_132: 4.94499875e-24 + art_sys_133: -9.80759234e-24 + art_sys_134: 2.04232770e-22 + art_sys_135: 1.90917116e-24 + art_sys_136: 1.98894723e-24 + art_sys_137: 1.66338071e-21 + art_sys_138: -3.40029289e-24 + art_sys_139: 3.36854832e-24 + art_sys_140: 3.02692419e-23 + art_sys_141: -2.38744604e-23 + art_sys_142: -2.50198781e-23 + art_sys_143: 2.95726306e-20 + art_sys_144: -3.24203913e-19 + art_sys_145: -4.06278791e-20 + art_sys_146: -0.0 + art_sys_147: -5.75006752e-21 + art_sys_148: 4.67333239e-23 + art_sys_149: 4.67333239e-23 + art_sys_150: -8.18837778e-23 + art_sys_151: -8.18837778e-23 + art_sys_152: -2.67478782e-22 + art_sys_153: 2.48992330e-20 + art_sys_154: -9.97992678e-21 + art_sys_155: -4.07980804e-18 + art_sys_156: 3.83439749e-20 + art_sys_157: 3.21555482e-21 + art_sys_158: 0.0 + art_sys_159: 6.45078750e-23 + art_sys_160: -3.53640845e-23 + art_sys_161: -1.80267653e-22 + art_sys_162: 2.27515084e-23 + art_sys_163: -1.05569884e-23 + art_sys_164: 6.20954255e-22 + art_sys_165: 9.25552884e-22 + art_sys_166: 2.85816045e-02 + art_sys_167: -9.75427685e-02 + art_sys_168: 5.29020574e-02 + art_sys_169: -3.09653715e-03 + art_sys_170: 2.55839587e-03 + art_sys_171: -1.08840712e-03 + art_sys_172: -5.33271702e-05 + art_sys_173: 1.55741371e-05 + art_sys_174: 5.94374438e-06 + art_sys_175: 4.18113658e-16 + art_sys_176: 2.65569941e-08 + art_sys_177: 6.47343671e-09 + art_sys_178: -2.91304839e-09 + art_sys_179: 7.99516742e-10 + art_sys_180: -1.51911971e-10 + art_sys_181: 3.24734326e-11 + art_sys_182: 5.46749187e-12 + art_sys_183: -8.51766525e-13 + art_sys_184: 1.45768359e-13 + art_sys_185: -1.35663946e-14 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -47147,134 +47147,134 @@ bins: art_sys_55: 0.0 art_sys_56: 0.0 art_sys_57: 0.0 - art_sys_58: 0.0 - art_sys_59: 0.0 - art_sys_60: 0.0 - art_sys_61: 0.0 - art_sys_62: 0.0 - art_sys_63: 0.0 - art_sys_64: 0.0 - art_sys_65: -1.90421197e-277 - art_sys_66: -2.27371849e-199 - art_sys_67: -7.73746757e-189 - art_sys_68: -2.49213963e-206 - art_sys_69: -8.01649549e-195 - art_sys_70: -1.11002430e-196 - art_sys_71: 3.67902747e-191 - art_sys_72: 1.72620605e-161 - art_sys_73: -6.80953918e-175 - art_sys_74: 3.68783602e-167 - art_sys_75: 3.90916506e-144 - art_sys_76: -1.00849378e-124 - art_sys_77: -8.78572767e-109 - art_sys_78: -2.54977998e-109 - art_sys_79: 8.07922462e-96 - art_sys_80: 1.06392122e-78 - art_sys_81: 4.42346763e-71 - art_sys_82: 2.88892653e-65 - art_sys_83: 8.16994861e-82 - art_sys_84: -7.45497517e-82 - art_sys_85: -3.72143139e-79 - art_sys_86: -4.10531541e-71 - art_sys_87: 3.15822295e-74 - art_sys_88: -1.83158539e-53 - art_sys_89: -6.41654418e-71 - art_sys_90: -1.63111342e-70 - art_sys_91: -5.22723097e-70 - art_sys_92: -1.72803237e-70 - art_sys_93: -2.59468897e-71 - art_sys_94: -1.75791917e-69 - art_sys_95: 1.39921394e-70 - art_sys_96: -5.37414310e-63 - art_sys_97: -3.84522754e-64 - art_sys_98: 8.21813866e-63 - art_sys_99: 1.40760274e-62 - art_sys_100: 4.18162163e-47 - art_sys_101: 1.70390276e-46 - art_sys_102: 3.24038517e-63 - art_sys_103: 8.41867556e-54 - art_sys_104: -5.64034407e-59 - art_sys_105: 3.81212339e-49 - art_sys_106: -5.35179564e-56 - art_sys_107: 1.48968885e-55 - art_sys_108: 7.27676116e-46 - art_sys_109: 4.27367255e-52 - art_sys_110: -5.17857952e-49 - art_sys_111: 2.34066759e-47 - art_sys_112: 9.37227088e-49 - art_sys_113: -2.93307699e-47 - art_sys_114: -9.69940738e-48 - art_sys_115: 4.13573059e-46 - art_sys_116: 1.16700287e-45 - art_sys_117: 1.57729318e-44 - art_sys_118: 1.73940169e-43 - art_sys_119: -3.87154987e-46 - art_sys_120: -5.88807118e-42 - art_sys_121: 3.44195115e-39 - art_sys_122: 1.96012202e-37 - art_sys_123: -1.15917229e-41 - art_sys_124: 4.18851144e-36 - art_sys_125: 7.27281415e-40 - art_sys_126: 4.68750548e-35 - art_sys_127: -9.75702170e-37 - art_sys_128: -2.20248211e-33 - art_sys_129: 5.97276234e-33 - art_sys_130: 1.56306974e-33 - art_sys_131: 3.99271144e-33 - art_sys_132: 8.49243583e-35 - art_sys_133: 1.59980257e-32 - art_sys_134: -2.02613882e-30 - art_sys_135: -6.22422536e-47 - art_sys_136: -1.14416633e-45 - art_sys_137: -5.59375677e-46 - art_sys_138: 1.09869162e-45 - art_sys_139: 3.30310528e-41 - art_sys_140: 5.29408750e-44 - art_sys_141: 2.37115831e-29 - art_sys_142: 5.02463749e-36 - art_sys_143: 3.09321611e-32 - art_sys_144: -6.91420344e-06 - art_sys_145: -4.43448108e-05 - art_sys_146: 1.05908136e-04 - art_sys_147: 6.09551521e-05 - art_sys_148: 9.06624040e-04 - art_sys_149: -1.49866755e-03 - art_sys_150: -4.42117708e-03 - art_sys_151: -2.44412873e-03 - art_sys_152: 7.78731473e-03 - art_sys_153: -2.61815222e-03 - art_sys_154: -1.63842154e-02 - art_sys_155: -3.06116706e-02 - art_sys_156: -5.91395387e-03 - art_sys_157: 4.61418038e-03 - art_sys_158: 1.83762673e-04 - art_sys_159: -5.75051615e-05 - art_sys_160: -2.31981897e-05 - art_sys_161: 7.16976572e-08 - art_sys_162: 2.32751474e-08 - art_sys_163: 1.05598498e-08 - art_sys_164: 2.70366399e-09 - art_sys_165: 5.96286168e-10 - art_sys_166: 1.14402128e-10 - art_sys_167: -2.08563655e-11 - art_sys_168: -1.88744333e-21 - art_sys_169: 3.19627515e-12 - art_sys_170: -2.37273535e-21 - art_sys_171: 1.10185832e-20 - art_sys_172: 5.40075035e-13 - art_sys_173: -5.09840259e-14 - art_sys_174: -5.06355220e-19 - art_sys_175: 0.0 - art_sys_176: -1.84511857e-20 - art_sys_177: 0.0 - art_sys_178: -8.72419001e-21 - art_sys_179: -1.58522160e-22 - art_sys_180: -2.92978141e-25 - art_sys_181: 1.19993417e-20 - art_sys_182: 0.0 - art_sys_183: -1.59599162e-15 - art_sys_184: 1.76870870e-17 - art_sys_185: -1.41154962e-19 + art_sys_58: 1.50666289e-302 + art_sys_59: -3.18222136e-223 + art_sys_60: -3.49319515e-219 + art_sys_61: 2.07144666e-216 + art_sys_62: -1.02401260e-210 + art_sys_63: -1.58420667e-201 + art_sys_64: 4.87292855e-203 + art_sys_65: -5.27594609e-76 + art_sys_66: -9.85592014e-64 + art_sys_67: 3.64460526e-60 + art_sys_68: 4.80972468e-58 + art_sys_69: 6.27972709e-44 + art_sys_70: -1.37717030e-46 + art_sys_71: 1.57979040e-40 + art_sys_72: 1.03884834e-27 + art_sys_73: -6.91420344e-06 + art_sys_74: 4.43448108e-05 + art_sys_75: -1.05908136e-04 + art_sys_76: -1.07777029e-23 + art_sys_77: -3.55914258e-25 + art_sys_78: 2.67797982e-25 + art_sys_79: 6.09551521e-05 + art_sys_80: -1.88517034e-23 + art_sys_81: 9.06624040e-04 + art_sys_82: 1.49866755e-03 + art_sys_83: 7.59532644e-21 + art_sys_84: 4.42117708e-03 + art_sys_85: 2.44412873e-03 + art_sys_86: 2.09515756e-21 + art_sys_87: -4.73105073e-23 + art_sys_88: -7.49371275e-22 + art_sys_89: -3.40872304e-22 + art_sys_90: 1.32779140e-22 + art_sys_91: 3.08897244e-22 + art_sys_92: -2.57542973e-22 + art_sys_93: -6.84372851e-23 + art_sys_94: -8.46853508e-23 + art_sys_95: 3.31026743e-22 + art_sys_96: 5.67854872e-22 + art_sys_97: -4.63389599e-23 + art_sys_98: 2.03988330e-22 + art_sys_99: -2.19226824e-24 + art_sys_100: 2.55947768e-23 + art_sys_101: -9.59803640e-23 + art_sys_102: -2.17891898e-23 + art_sys_103: 3.19292177e-23 + art_sys_104: 6.54351692e-24 + art_sys_105: -7.11543625e-23 + art_sys_106: 2.30580465e-23 + art_sys_107: 2.65327675e-22 + art_sys_108: 1.65525056e-23 + art_sys_109: 2.03473378e-22 + art_sys_110: 1.40253426e-22 + art_sys_111: 3.37237754e-23 + art_sys_112: 8.19951027e-23 + art_sys_113: 8.16992732e-23 + art_sys_114: -3.84203106e-24 + art_sys_115: -4.09637884e-24 + art_sys_116: 2.10229895e-23 + art_sys_117: 5.79996447e-24 + art_sys_118: -3.56724809e-23 + art_sys_119: -5.85438526e-24 + art_sys_120: 1.48279445e-23 + art_sys_121: -6.57456798e-24 + art_sys_122: 1.67439661e-24 + art_sys_123: -3.55466732e-24 + art_sys_124: 8.69748494e-24 + art_sys_125: 3.71910077e-24 + art_sys_126: -8.67297075e-25 + art_sys_127: -6.49776504e-24 + art_sys_128: 4.10148598e-24 + art_sys_129: -9.75549270e-24 + art_sys_130: 1.28130833e-24 + art_sys_131: -1.34523855e-24 + art_sys_132: 1.80770594e-24 + art_sys_133: 4.21527365e-24 + art_sys_134: 3.81156117e-22 + art_sys_135: -5.84487238e-25 + art_sys_136: 1.43964155e-24 + art_sys_137: 1.21186206e-21 + art_sys_138: 4.33760782e-25 + art_sys_139: -4.27902242e-24 + art_sys_140: -2.80460416e-23 + art_sys_141: 2.39433219e-23 + art_sys_142: 5.18477238e-23 + art_sys_143: -3.83408751e-20 + art_sys_144: 3.86696778e-19 + art_sys_145: 5.42909601e-20 + art_sys_146: 0.0 + art_sys_147: 6.16419833e-21 + art_sys_148: 2.39340461e-23 + art_sys_149: 2.39340461e-23 + art_sys_150: 4.01020588e-23 + art_sys_151: 4.01020588e-23 + art_sys_152: 2.70185656e-22 + art_sys_153: -3.00251303e-20 + art_sys_154: 1.15361124e-20 + art_sys_155: 1.76870877e-17 + art_sys_156: -1.41155374e-19 + art_sys_157: -1.19993484e-20 + art_sys_158: -0.0 + art_sys_159: -7.01497609e-23 + art_sys_160: 2.34943071e-23 + art_sys_161: 7.58667072e-23 + art_sys_162: -2.37186465e-23 + art_sys_163: -5.92281969e-24 + art_sys_164: 7.64883808e-22 + art_sys_165: 3.80787836e-22 + art_sys_166: 7.78731473e-03 + art_sys_167: 2.61815222e-03 + art_sys_168: 1.63842154e-02 + art_sys_169: 3.06116706e-02 + art_sys_170: -5.91395387e-03 + art_sys_171: 4.61418038e-03 + art_sys_172: 1.83762673e-04 + art_sys_173: -5.75051615e-05 + art_sys_174: -2.31981897e-05 + art_sys_175: -1.59599161e-15 + art_sys_176: -7.16976572e-08 + art_sys_177: -2.32751474e-08 + art_sys_178: 1.05598498e-08 + art_sys_179: -2.70366399e-09 + art_sys_180: 5.96286168e-10 + art_sys_181: -1.14402128e-10 + art_sys_182: -2.08563655e-11 + art_sys_183: 3.19627515e-12 + art_sys_184: -5.40075035e-13 + art_sys_185: 5.09840259e-14 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -47438,134 +47438,134 @@ bins: art_sys_55: 0.0 art_sys_56: 0.0 art_sys_57: 0.0 - art_sys_58: 0.0 - art_sys_59: 0.0 - art_sys_60: 0.0 - art_sys_61: 0.0 - art_sys_62: 0.0 - art_sys_63: 0.0 - art_sys_64: 0.0 - art_sys_65: -2.13673520e-278 - art_sys_66: -2.55136226e-200 - art_sys_67: -8.68228976e-190 - art_sys_68: -2.79645481e-207 - art_sys_69: -8.99538979e-196 - art_sys_70: -1.24556937e-197 - art_sys_71: 4.12827353e-192 - art_sys_72: 1.93699308e-162 - art_sys_73: -7.64167828e-176 - art_sys_74: 4.13815769e-168 - art_sys_75: 4.38651322e-145 - art_sys_76: -1.13164096e-125 - art_sys_77: -9.85855291e-110 - art_sys_78: -2.86113362e-110 - art_sys_79: 9.06577876e-97 - art_sys_80: 1.19383665e-79 - art_sys_81: 4.96361728e-72 - art_sys_82: 3.24169336e-66 - art_sys_83: 9.16761241e-83 - art_sys_84: -8.36530166e-83 - art_sys_85: -4.17585756e-80 - art_sys_86: -4.60661549e-72 - art_sys_87: 3.54387357e-75 - art_sys_88: -2.05524029e-54 - art_sys_89: -7.20007156e-72 - art_sys_90: -1.83028869e-71 - art_sys_91: -5.86552816e-71 - art_sys_92: -2.54420047e-71 - art_sys_93: -2.93546079e-72 - art_sys_94: -1.97257868e-70 - art_sys_95: 1.57008941e-71 - art_sys_96: -6.03037973e-64 - art_sys_97: -4.31476829e-65 - art_sys_98: 9.22165560e-64 - art_sys_99: 1.57948512e-63 - art_sys_100: 4.69223946e-48 - art_sys_101: 1.91196633e-47 - art_sys_102: 3.63607020e-64 - art_sys_103: 9.44668006e-55 - art_sys_104: -6.32908696e-60 - art_sys_105: 4.27762179e-50 - art_sys_106: -6.00530343e-57 - art_sys_107: 1.67159479e-56 - art_sys_108: 8.16532649e-47 - art_sys_109: 4.79553072e-53 - art_sys_110: -5.81093588e-50 - art_sys_111: 2.62648652e-48 - art_sys_112: 1.05167189e-49 - art_sys_113: -3.29123503e-48 - art_sys_114: -1.08838020e-48 - art_sys_115: 4.64074466e-47 - art_sys_116: 1.30950559e-46 - art_sys_117: 1.76989645e-45 - art_sys_118: 1.95180003e-44 - art_sys_119: -4.34430484e-47 - art_sys_120: -6.60706357e-43 - art_sys_121: 3.86224782e-40 - art_sys_122: 2.19947253e-38 - art_sys_123: -1.30071882e-42 - art_sys_124: 4.69997058e-37 - art_sys_125: 8.16089751e-41 - art_sys_126: 5.25989679e-36 - art_sys_127: -1.09484516e-37 - art_sys_128: -2.47142720e-34 - art_sys_129: 6.70209637e-34 - art_sys_130: 1.75393619e-34 - art_sys_131: 4.48026144e-34 - art_sys_132: 9.52944720e-36 - art_sys_133: 1.79515447e-33 - art_sys_134: -2.27355064e-31 - art_sys_135: -6.98426554e-48 - art_sys_136: -1.28388048e-46 - art_sys_137: -6.27681043e-47 - art_sys_138: 1.23285285e-46 - art_sys_139: 3.70644748e-42 - art_sys_140: 5.94054855e-45 - art_sys_141: 2.66070046e-30 - art_sys_142: 5.63819600e-37 - art_sys_143: 3.47092875e-33 - art_sys_144: -7.76712415e-07 - art_sys_145: -3.81866279e-06 - art_sys_146: 8.41035134e-06 - art_sys_147: 6.31672737e-08 - art_sys_148: 1.10360371e-04 - art_sys_149: 7.19439318e-05 - art_sys_150: -4.47231162e-04 - art_sys_151: -4.65266960e-04 - art_sys_152: -1.95598560e-03 - art_sys_153: -7.37817817e-03 - art_sys_154: 4.98788088e-03 - art_sys_155: -1.33094888e-02 - art_sys_156: 1.89645824e-02 - art_sys_157: -6.98784270e-03 - art_sys_158: -7.31921280e-04 - art_sys_159: 1.68671491e-04 - art_sys_160: 7.83554807e-05 - art_sys_161: -4.43163895e-07 - art_sys_162: -8.44264841e-08 - art_sys_163: -4.85015249e-08 - art_sys_164: -1.19148186e-08 - art_sys_165: -2.43968037e-09 - art_sys_166: -5.16511018e-10 - art_sys_167: 8.54434190e-11 - art_sys_168: 1.99047797e-21 - art_sys_169: -1.37911344e-11 - art_sys_170: -1.90758736e-21 - art_sys_171: -8.45162029e-21 - art_sys_172: -2.30152619e-12 - art_sys_173: 2.21591861e-13 - art_sys_174: 4.16201171e-19 - art_sys_175: 0.0 - art_sys_176: 1.45751015e-20 - art_sys_177: 0.0 - art_sys_178: 7.77270136e-21 - art_sys_179: 5.82818396e-23 - art_sys_180: -6.34827936e-25 - art_sys_181: -5.07699629e-20 - art_sys_182: 0.0 - art_sys_183: 6.66388699e-15 - art_sys_184: -6.11277083e-17 - art_sys_185: 6.04475067e-19 + art_sys_58: 1.69248363e-303 + art_sys_59: -3.57477309e-224 + art_sys_60: -3.92410791e-220 + art_sys_61: 2.32697569e-217 + art_sys_62: -1.15033251e-211 + art_sys_63: -1.77963087e-202 + art_sys_64: 5.47404215e-204 + art_sys_65: -5.92677503e-77 + art_sys_66: -1.10717245e-64 + art_sys_67: 4.09419564e-61 + art_sys_68: 5.40304159e-59 + art_sys_69: 7.05438021e-45 + art_sys_70: -1.54705496e-47 + art_sys_71: 1.77466982e-41 + art_sys_72: 1.16699835e-28 + art_sys_73: -7.76712415e-07 + art_sys_74: 3.81866279e-06 + art_sys_75: -8.41035134e-06 + art_sys_76: -8.63016215e-25 + art_sys_77: -2.84107154e-26 + art_sys_78: 2.30359785e-26 + art_sys_79: 6.31672737e-08 + art_sys_80: -3.70380781e-25 + art_sys_81: 1.10360371e-04 + art_sys_82: -7.19439318e-05 + art_sys_83: 7.95152647e-22 + art_sys_84: 4.47231162e-04 + art_sys_85: 4.65266960e-04 + art_sys_86: 3.06073479e-22 + art_sys_87: 2.26188288e-23 + art_sys_88: -1.16794105e-22 + art_sys_89: -1.75252835e-23 + art_sys_90: 4.03676170e-23 + art_sys_91: 3.80988944e-23 + art_sys_92: -4.72956997e-23 + art_sys_93: -2.82792580e-23 + art_sys_94: -1.58358884e-23 + art_sys_95: 3.88279596e-23 + art_sys_96: 8.43192000e-23 + art_sys_97: -6.92494601e-24 + art_sys_98: 3.61168141e-23 + art_sys_99: 4.16289982e-24 + art_sys_100: 3.64186091e-24 + art_sys_101: -8.87605018e-24 + art_sys_102: -2.02063491e-24 + art_sys_103: 5.04387072e-24 + art_sys_104: -1.94359984e-24 + art_sys_105: -5.80214782e-24 + art_sys_106: 3.81154458e-24 + art_sys_107: 3.12017648e-23 + art_sys_108: 1.79432789e-24 + art_sys_109: 2.65564940e-23 + art_sys_110: 1.87813567e-23 + art_sys_111: 5.43986372e-24 + art_sys_112: 9.58648285e-24 + art_sys_113: 1.82975513e-23 + art_sys_114: 7.41477180e-25 + art_sys_115: 3.32532809e-24 + art_sys_116: 3.55321468e-24 + art_sys_117: 1.27887790e-24 + art_sys_118: -5.07943282e-24 + art_sys_119: -7.70070395e-25 + art_sys_120: 2.01398524e-24 + art_sys_121: -4.20998848e-25 + art_sys_122: -1.49538108e-25 + art_sys_123: -2.72275099e-25 + art_sys_124: 1.19858686e-24 + art_sys_125: 6.08769622e-25 + art_sys_126: -1.23260343e-24 + art_sys_127: -6.00183185e-25 + art_sys_128: 1.74407906e-25 + art_sys_129: -8.21918063e-25 + art_sys_130: -2.32125679e-25 + art_sys_131: -3.42970823e-25 + art_sys_132: 3.17065328e-26 + art_sys_133: 7.46735298e-25 + art_sys_134: -1.55605429e-21 + art_sys_135: -1.33155920e-25 + art_sys_136: 4.85565591e-26 + art_sys_137: 4.53248732e-22 + art_sys_138: 1.56579944e-25 + art_sys_139: -5.24576328e-25 + art_sys_140: -1.69338735e-24 + art_sys_141: 1.37852156e-24 + art_sys_142: 3.81912120e-25 + art_sys_143: 2.64334088e-20 + art_sys_144: -3.05370976e-19 + art_sys_145: -4.05599133e-20 + art_sys_146: -0.0 + art_sys_147: -4.14011538e-21 + art_sys_148: -1.47172831e-23 + art_sys_149: -1.47172831e-23 + art_sys_150: -4.27925900e-23 + art_sys_151: -4.27925900e-23 + art_sys_152: -2.29195665e-22 + art_sys_153: 2.43212659e-20 + art_sys_154: -9.21801926e-21 + art_sys_155: -6.11277105e-17 + art_sys_156: 6.04476398e-19 + art_sys_157: 5.07699846e-20 + art_sys_158: 0.0 + art_sys_159: -9.36888273e-24 + art_sys_160: 4.02422264e-24 + art_sys_161: 1.30329761e-23 + art_sys_162: -3.11262347e-24 + art_sys_163: -3.32715584e-25 + art_sys_164: -8.87544623e-23 + art_sys_165: -1.63118487e-22 + art_sys_166: -1.95598560e-03 + art_sys_167: 7.37817817e-03 + art_sys_168: -4.98788088e-03 + art_sys_169: 1.33094888e-02 + art_sys_170: 1.89645824e-02 + art_sys_171: -6.98784270e-03 + art_sys_172: -7.31921280e-04 + art_sys_173: 1.68671491e-04 + art_sys_174: 7.83554807e-05 + art_sys_175: 6.66388695e-15 + art_sys_176: 4.43163895e-07 + art_sys_177: 8.44264841e-08 + art_sys_178: -4.85015249e-08 + art_sys_179: 1.19148186e-08 + art_sys_180: -2.43968037e-09 + art_sys_181: 5.16511018e-10 + art_sys_182: 8.54434190e-11 + art_sys_183: -1.37911344e-11 + art_sys_184: 2.30152619e-12 + art_sys_185: -2.21591861e-13 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -47729,134 +47729,134 @@ bins: art_sys_55: 0.0 art_sys_56: 0.0 art_sys_57: 0.0 - art_sys_58: 0.0 - art_sys_59: 0.0 - art_sys_60: 0.0 - art_sys_61: 0.0 - art_sys_62: 0.0 - art_sys_63: 0.0 - art_sys_64: 0.0 - art_sys_65: -1.08728603e-279 - art_sys_66: -1.29827047e-201 - art_sys_67: -4.41801642e-191 - art_sys_68: -1.42298675e-208 - art_sys_69: -4.57733857e-197 - art_sys_70: -6.33812750e-199 - art_sys_71: 2.10068781e-193 - art_sys_72: 9.85646353e-164 - art_sys_73: -3.88861705e-177 - art_sys_74: 2.10571740e-169 - art_sys_75: 2.23209407e-146 - art_sys_76: -5.75839842e-127 - art_sys_77: -5.01656243e-111 - art_sys_78: -1.45589881e-111 - art_sys_79: 4.61315627e-98 - art_sys_80: 6.07488355e-81 - art_sys_81: 2.52575568e-73 - art_sys_82: 1.64954809e-67 - art_sys_83: 4.66496442e-84 - art_sys_84: -4.25671693e-84 - art_sys_85: -2.12490018e-81 - art_sys_86: -2.34409395e-73 - art_sys_87: 1.80331365e-76 - art_sys_88: -1.04581690e-55 - art_sys_89: -3.66370237e-73 - art_sys_90: -9.31349416e-73 - art_sys_91: -2.98469649e-72 - art_sys_92: -7.30193189e-75 - art_sys_93: -1.53653621e-73 - art_sys_94: -1.00375422e-71 - art_sys_95: 7.98909907e-73 - art_sys_96: -3.06858184e-65 - art_sys_97: -2.19558638e-66 - art_sys_98: 4.69247480e-65 - art_sys_99: 8.03727056e-65 - art_sys_100: 2.38766403e-49 - art_sys_101: 9.72911398e-49 - art_sys_102: 1.85022726e-65 - art_sys_103: 4.80697936e-56 - art_sys_104: -3.22057354e-61 - art_sys_105: 2.17668424e-51 - art_sys_106: -3.05582167e-58 - art_sys_107: 8.50597412e-58 - art_sys_108: 4.15495768e-48 - art_sys_109: 2.44022419e-54 - art_sys_110: -2.95691700e-51 - art_sys_111: 1.33649773e-49 - art_sys_112: 5.35147273e-51 - art_sys_113: -1.67475756e-49 - art_sys_114: -5.53826439e-50 - art_sys_115: 2.36146071e-48 - art_sys_116: 6.66346941e-48 - art_sys_117: 9.00618593e-47 - art_sys_118: 9.93180928e-46 - art_sys_119: -2.21061616e-48 - art_sys_120: -3.36202962e-44 - art_sys_121: 1.96531961e-41 - art_sys_122: 1.11921003e-39 - art_sys_123: -6.61875759e-44 - art_sys_124: 2.39159805e-38 - art_sys_125: 4.15270398e-42 - art_sys_126: 2.67651864e-37 - art_sys_127: -5.57116159e-39 - art_sys_128: -1.25759521e-35 - art_sys_129: 3.41038743e-35 - art_sys_130: 8.92497155e-36 - art_sys_131: 2.27979821e-35 - art_sys_132: 4.84909573e-37 - art_sys_133: 9.13471232e-35 - art_sys_134: -1.15690496e-32 - art_sys_135: -3.55397029e-49 - art_sys_136: -6.53307505e-48 - art_sys_137: -3.19397905e-48 - art_sys_138: 6.27341899e-48 - art_sys_139: 1.88604001e-43 - art_sys_140: 3.02287090e-46 - art_sys_141: 1.35390763e-31 - art_sys_142: 2.86901764e-38 - art_sys_143: 1.76619540e-34 - art_sys_144: -3.94067400e-08 - art_sys_145: -3.49835555e-07 - art_sys_146: 5.48509185e-07 - art_sys_147: -9.95029366e-07 - art_sys_148: -1.05272557e-05 - art_sys_149: 6.42413964e-05 - art_sys_150: 9.58745176e-05 - art_sys_151: 4.28592571e-05 - art_sys_152: -4.86403726e-04 - art_sys_153: 2.81838063e-04 - art_sys_154: 1.41387088e-03 - art_sys_155: 4.24917491e-03 - art_sys_156: 1.35293148e-02 - art_sys_157: 1.21974535e-02 - art_sys_158: 5.08853070e-04 - art_sys_159: -4.43501778e-04 - art_sys_160: -1.63507840e-04 - art_sys_161: 1.11754290e-06 - art_sys_162: 3.42007728e-07 - art_sys_163: 1.45805218e-07 - art_sys_164: 4.12987994e-08 - art_sys_165: 8.37977080e-09 - art_sys_166: 1.69855475e-09 - art_sys_167: -3.06271488e-10 - art_sys_168: -1.74132117e-21 - art_sys_169: 4.61445893e-11 - art_sys_170: -2.66597663e-21 - art_sys_171: 7.33522723e-21 - art_sys_172: 8.02500424e-12 - art_sys_173: -7.32535387e-13 - art_sys_174: -3.17179924e-19 - art_sys_175: 0.0 - art_sys_176: -1.13568839e-20 - art_sys_177: 0.0 - art_sys_178: -5.99997276e-21 - art_sys_179: -7.97653788e-23 - art_sys_180: -3.50029196e-25 - art_sys_181: 1.77817945e-19 - art_sys_182: 0.0 - art_sys_183: -2.32481175e-14 - art_sys_184: 2.50661486e-16 - art_sys_185: -2.11556945e-18 + art_sys_58: 8.58737501e-305 + art_sys_59: -1.81367197e-225 + art_sys_60: -1.99090805e-221 + art_sys_61: 1.18059818e-218 + art_sys_62: -5.83624686e-213 + art_sys_63: -9.02901118e-204 + art_sys_64: 2.77727189e-205 + art_sys_65: -3.00696728e-78 + art_sys_66: -5.61727298e-66 + art_sys_67: 2.07720257e-62 + art_sys_68: 2.74124953e-60 + art_sys_69: 3.57906120e-46 + art_sys_70: -7.84903025e-49 + art_sys_71: 9.00384118e-43 + art_sys_72: 5.92080151e-30 + art_sys_73: -3.94067400e-08 + art_sys_74: 3.49835555e-07 + art_sys_75: -5.48509185e-07 + art_sys_76: -6.03433856e-26 + art_sys_77: -1.92098447e-27 + art_sys_78: 2.08930370e-27 + art_sys_79: -9.95029366e-07 + art_sys_80: 2.08704977e-25 + art_sys_81: -1.05272557e-05 + art_sys_82: -6.42413964e-05 + art_sys_83: -1.37729297e-22 + art_sys_84: -9.58745176e-05 + art_sys_85: -4.28592571e-05 + art_sys_86: -5.48859869e-23 + art_sys_87: 3.82077488e-24 + art_sys_88: 1.61465973e-23 + art_sys_89: 8.35917107e-24 + art_sys_90: -1.10911549e-24 + art_sys_91: -6.45223939e-24 + art_sys_92: 4.91256929e-24 + art_sys_93: -1.41736099e-26 + art_sys_94: 1.47026826e-24 + art_sys_95: -7.13226773e-24 + art_sys_96: -1.32444174e-23 + art_sys_97: 9.12064735e-25 + art_sys_98: -3.72570336e-24 + art_sys_99: 5.57795550e-25 + art_sys_100: -4.11552458e-25 + art_sys_101: 2.08533266e-24 + art_sys_102: 5.10904055e-25 + art_sys_103: -7.18109088e-25 + art_sys_104: -1.69575843e-25 + art_sys_105: 1.74268040e-24 + art_sys_106: -3.57954453e-25 + art_sys_107: -5.67602663e-24 + art_sys_108: -3.64118770e-25 + art_sys_109: -4.60350132e-24 + art_sys_110: -2.92895175e-24 + art_sys_111: -6.54589221e-25 + art_sys_112: -1.87127878e-24 + art_sys_113: -1.30079606e-24 + art_sys_114: 2.59873758e-25 + art_sys_115: 3.03556776e-25 + art_sys_116: -2.25753542e-25 + art_sys_117: -3.16063586e-26 + art_sys_118: 7.48907110e-25 + art_sys_119: 1.17794860e-25 + art_sys_120: -3.35244726e-25 + art_sys_121: 2.34181154e-25 + art_sys_122: -9.19722689e-26 + art_sys_123: 7.58824196e-26 + art_sys_124: -1.68204005e-25 + art_sys_125: -6.07623279e-26 + art_sys_126: -8.41637749e-26 + art_sys_127: 1.26707327e-25 + art_sys_128: -1.00951652e-25 + art_sys_129: 2.46101190e-25 + art_sys_130: -3.44245036e-26 + art_sys_131: 4.75428945e-27 + art_sys_132: -6.07625125e-26 + art_sys_133: -7.82811383e-26 + art_sys_134: -1.42873985e-21 + art_sys_135: 8.83069887e-27 + art_sys_136: -3.99920003e-26 + art_sys_137: 1.08853659e-21 + art_sys_138: -3.89815382e-27 + art_sys_139: 1.05001264e-25 + art_sys_140: 2.32103318e-24 + art_sys_141: -1.86042182e-24 + art_sys_142: -4.67364593e-24 + art_sys_143: -2.07468864e-20 + art_sys_144: 2.40836836e-19 + art_sys_145: 3.18592385e-20 + art_sys_146: -0.0 + art_sys_147: 3.57065718e-21 + art_sys_148: 3.77882309e-23 + art_sys_149: 3.77882309e-23 + art_sys_150: 4.29925339e-23 + art_sys_151: 4.29925339e-23 + art_sys_152: 2.20710454e-22 + art_sys_153: -1.87979313e-20 + art_sys_154: 7.24659483e-21 + art_sys_155: 2.50661484e-16 + art_sys_156: -2.11556850e-18 + art_sys_157: -1.77817929e-19 + art_sys_158: -0.0 + art_sys_159: 1.54768452e-24 + art_sys_160: -6.88237687e-25 + art_sys_161: -1.39951890e-24 + art_sys_162: 4.91237376e-25 + art_sys_163: 3.36525715e-25 + art_sys_164: -6.63516718e-23 + art_sys_165: -3.72409971e-23 + art_sys_166: -4.86403726e-04 + art_sys_167: -2.81838063e-04 + art_sys_168: -1.41387088e-03 + art_sys_169: -4.24917491e-03 + art_sys_170: 1.35293148e-02 + art_sys_171: 1.21974535e-02 + art_sys_172: 5.08853070e-04 + art_sys_173: -4.43501778e-04 + art_sys_174: -1.63507840e-04 + art_sys_175: -2.32481175e-14 + art_sys_176: -1.11754290e-06 + art_sys_177: -3.42007728e-07 + art_sys_178: 1.45805218e-07 + art_sys_179: -4.12987994e-08 + art_sys_180: 8.37977080e-09 + art_sys_181: -1.69855475e-09 + art_sys_182: -3.06271488e-10 + art_sys_183: 4.61445893e-11 + art_sys_184: -8.02500424e-12 + art_sys_185: 7.32535387e-13 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -48020,134 +48020,134 @@ bins: art_sys_55: 0.0 art_sys_56: 0.0 art_sys_57: 0.0 - art_sys_58: 0.0 - art_sys_59: 0.0 - art_sys_60: 0.0 - art_sys_61: 0.0 - art_sys_62: 0.0 - art_sys_63: 0.0 - art_sys_64: 0.0 - art_sys_65: 3.38394577e-282 - art_sys_66: 4.04062807e-204 - art_sys_67: 1.37502636e-193 - art_sys_68: 4.42878456e-211 - art_sys_69: 1.42461245e-199 - art_sys_70: 1.97262563e-201 - art_sys_71: -6.53800448e-196 - art_sys_72: -3.06764301e-166 - art_sys_73: 1.21021221e-179 - art_sys_74: -6.55365817e-172 - art_sys_75: -6.94698230e-149 - art_sys_76: 1.79219561e-129 - art_sys_77: 1.56131280e-113 - art_sys_78: 4.53121730e-114 - art_sys_79: -1.43576005e-100 - art_sys_80: -1.89069579e-83 - art_sys_81: -7.86095006e-76 - art_sys_82: -5.13391509e-70 - art_sys_83: -1.45188422e-86 - art_sys_84: 1.32482454e-86 - art_sys_85: 6.61336236e-84 - art_sys_86: 7.29556134e-76 - art_sys_87: -5.61248210e-79 - art_sys_88: 3.25491277e-58 - art_sys_89: 1.14030050e-75 - art_sys_90: 2.89865378e-75 - art_sys_91: 9.28931893e-75 - art_sys_92: 3.93718779e-75 - art_sys_93: 4.50702311e-76 - art_sys_94: 3.12400045e-74 - art_sys_95: -2.48656774e-75 - art_sys_96: 9.55039666e-68 - art_sys_97: 6.83335884e-69 - art_sys_98: -1.46044649e-67 - art_sys_99: -2.50145266e-67 - art_sys_100: -7.43116522e-52 - art_sys_101: -3.02800781e-51 - art_sys_102: -5.75850534e-68 - art_sys_103: -1.49608393e-58 - art_sys_104: 1.00234475e-63 - art_sys_105: -6.77452941e-54 - art_sys_106: 9.51068297e-61 - art_sys_107: -2.64732799e-60 - art_sys_108: -1.29315417e-50 - art_sys_109: -7.59474902e-57 - art_sys_110: 9.20286037e-54 - art_sys_111: -4.15960341e-52 - art_sys_112: -1.66554747e-53 - art_sys_113: 5.21237491e-52 - art_sys_114: 1.72368294e-52 - art_sys_115: -7.34961219e-51 - art_sys_116: -2.07388231e-50 - art_sys_117: -2.80300975e-49 - art_sys_118: -3.09109299e-48 - art_sys_119: 6.88013630e-51 - art_sys_120: 1.04636989e-46 - art_sys_121: -6.11669585e-44 - art_sys_122: -3.48333539e-42 - art_sys_123: 2.05996658e-46 - art_sys_124: -7.44340910e-41 - art_sys_125: -1.29245274e-44 - art_sys_126: -8.33017206e-40 - art_sys_127: 1.73392159e-41 - art_sys_128: 3.91403381e-38 - art_sys_129: -1.06142037e-37 - art_sys_130: -2.77773327e-38 - art_sys_131: -7.09545267e-38 - art_sys_132: -1.50919187e-39 - art_sys_133: -2.84301122e-37 - art_sys_134: 3.60065392e-35 - art_sys_135: 1.10610790e-51 - art_sys_136: 2.03329946e-50 - art_sys_137: 9.94067241e-51 - art_sys_138: -1.95248630e-50 - art_sys_139: -5.86995268e-46 - art_sys_140: -9.40812976e-49 - art_sys_141: -4.21378850e-34 - art_sys_142: -8.92928980e-41 - art_sys_143: -5.49695837e-37 - art_sys_144: 1.50071884e-10 - art_sys_145: -3.55595890e-08 - art_sys_146: 5.05408703e-08 - art_sys_147: -1.24110762e-07 - art_sys_148: -4.11028600e-06 - art_sys_149: 1.01035468e-05 - art_sys_150: 2.79553589e-05 - art_sys_151: 2.01579474e-05 - art_sys_152: 5.94528754e-05 - art_sys_153: 3.93034303e-04 - art_sys_154: -2.63341017e-04 - art_sys_155: 1.11801976e-03 - art_sys_156: -1.06805899e-03 - art_sys_157: 2.46177898e-03 - art_sys_158: -5.84891691e-03 - art_sys_159: 9.21494727e-04 - art_sys_160: 7.14400336e-04 - art_sys_161: -3.64992991e-06 - art_sys_162: -1.04922352e-06 - art_sys_163: -5.67304433e-07 - art_sys_164: -1.42350486e-07 - art_sys_165: -3.19784040e-08 - art_sys_166: -6.48768231e-09 - art_sys_167: 1.12475054e-09 - art_sys_168: 4.24057114e-22 - art_sys_169: -1.82338313e-10 - art_sys_170: 9.93896313e-22 - art_sys_171: -7.05490680e-21 - art_sys_172: -2.99810524e-11 - art_sys_173: 2.94929350e-12 - art_sys_174: 3.11390067e-19 - art_sys_175: 0.0 - art_sys_176: 9.52449994e-21 - art_sys_177: 0.0 - art_sys_178: 5.66870208e-21 - art_sys_179: -2.13366130e-23 - art_sys_180: -6.98499112e-25 - art_sys_181: -6.68932783e-19 - art_sys_182: 0.0 - art_sys_183: 8.92605978e-14 - art_sys_184: -9.11092514e-16 - art_sys_185: 7.82471175e-18 + art_sys_58: -3.25830656e-307 + art_sys_59: 6.90696963e-228 + art_sys_60: 7.58193415e-224 + art_sys_61: -4.49604773e-221 + art_sys_62: 2.22260588e-215 + art_sys_63: 3.43849974e-206 + art_sys_64: -1.05766274e-207 + art_sys_65: 1.14513722e-80 + art_sys_66: 2.13921461e-68 + art_sys_67: -7.91056820e-65 + art_sys_68: -1.04394447e-62 + art_sys_69: -1.36300658e-48 + art_sys_70: 2.98913018e-51 + art_sys_71: -3.42891447e-45 + art_sys_72: -2.25480677e-32 + art_sys_73: 1.50071884e-10 + art_sys_74: 3.55595890e-08 + art_sys_75: -5.05408703e-08 + art_sys_76: -5.75719111e-27 + art_sys_77: -1.79297397e-28 + art_sys_78: 2.11062152e-28 + art_sys_79: -1.24110762e-07 + art_sys_80: 2.66260886e-26 + art_sys_81: -4.11028600e-06 + art_sys_82: -1.01035468e-05 + art_sys_83: -5.30820047e-23 + art_sys_84: -2.79553589e-05 + art_sys_85: -2.01579474e-05 + art_sys_86: -1.86822109e-23 + art_sys_87: 9.22150243e-26 + art_sys_88: 6.06293468e-24 + art_sys_89: 1.80710939e-24 + art_sys_90: -1.29108469e-24 + art_sys_91: -2.11757806e-24 + art_sys_92: 2.16797429e-24 + art_sys_93: 7.64820503e-25 + art_sys_94: 6.85370961e-25 + art_sys_95: -2.18639823e-24 + art_sys_96: -4.72549078e-24 + art_sys_97: 3.44708617e-25 + art_sys_98: -1.62927044e-24 + art_sys_99: -2.17494684e-27 + art_sys_100: -1.60202517e-25 + art_sys_101: 5.98609030e-25 + art_sys_102: 1.44309378e-25 + art_sys_103: -2.68794035e-25 + art_sys_104: 3.85008262e-26 + art_sys_105: 4.54197543e-25 + art_sys_106: -1.59469350e-25 + art_sys_107: -1.80376710e-24 + art_sys_108: -1.09852345e-25 + art_sys_109: -1.53460398e-24 + art_sys_110: -1.01313236e-24 + art_sys_111: -2.61733578e-25 + art_sys_112: -5.84549874e-25 + art_sys_113: -7.30690867e-25 + art_sys_114: 3.14104539e-26 + art_sys_115: -4.42719598e-26 + art_sys_116: -1.21746186e-25 + art_sys_117: -3.56693874e-26 + art_sys_118: 2.68551761e-25 + art_sys_119: 4.05147863e-26 + art_sys_120: -1.14909142e-25 + art_sys_121: 5.67151109e-26 + art_sys_122: -1.40894646e-26 + art_sys_123: 2.01043075e-26 + art_sys_124: -6.22188237e-26 + art_sys_125: -2.62153010e-26 + art_sys_126: 1.78599192e-26 + art_sys_127: 3.56426680e-26 + art_sys_128: -1.66971233e-26 + art_sys_129: 6.54860046e-26 + art_sys_130: 1.88882269e-27 + art_sys_131: 9.21380448e-27 + art_sys_132: -1.20208514e-26 + art_sys_133: -3.25086384e-26 + art_sys_134: 3.20492927e-24 + art_sys_135: 5.28170711e-27 + art_sys_136: -6.89637245e-27 + art_sys_137: -1.64033069e-22 + art_sys_138: -5.09814955e-27 + art_sys_139: 3.20590813e-26 + art_sys_140: 4.71068674e-25 + art_sys_141: -1.02586405e-24 + art_sys_142: -9.74877120e-24 + art_sys_143: 1.92158098e-20 + art_sys_144: -2.18669129e-19 + art_sys_145: -3.13118712e-20 + art_sys_146: -0.0 + art_sys_147: -2.91355197e-21 + art_sys_148: -9.17072824e-23 + art_sys_149: -9.17072824e-23 + art_sys_150: -1.05639090e-23 + art_sys_151: -1.05639090e-23 + art_sys_152: -2.03850773e-22 + art_sys_153: 1.78915423e-20 + art_sys_154: -6.56866847e-21 + art_sys_155: -9.11092514e-16 + art_sys_156: 7.82471168e-18 + art_sys_157: 6.68932783e-19 + art_sys_158: 0.0 + art_sys_159: 5.25801542e-25 + art_sys_160: -2.41892566e-25 + art_sys_161: -7.02619829e-25 + art_sys_162: 1.66943031e-25 + art_sys_163: 4.24013730e-26 + art_sys_164: 4.44805702e-24 + art_sys_165: -1.16644187e-23 + art_sys_166: 5.94528754e-05 + art_sys_167: -3.93034303e-04 + art_sys_168: 2.63341017e-04 + art_sys_169: -1.11801976e-03 + art_sys_170: -1.06805899e-03 + art_sys_171: 2.46177898e-03 + art_sys_172: -5.84891691e-03 + art_sys_173: 9.21494727e-04 + art_sys_174: 7.14400336e-04 + art_sys_175: 8.92605979e-14 + art_sys_176: 3.64992991e-06 + art_sys_177: 1.04922352e-06 + art_sys_178: -5.67304433e-07 + art_sys_179: 1.42350486e-07 + art_sys_180: -3.19784040e-08 + art_sys_181: 6.48768231e-09 + art_sys_182: 1.12475054e-09 + art_sys_183: -1.82338313e-10 + art_sys_184: 2.99810524e-11 + art_sys_185: -2.94929350e-12 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -48311,134 +48311,134 @@ bins: art_sys_55: 0.0 art_sys_56: 0.0 art_sys_57: 0.0 - art_sys_58: 0.0 - art_sys_59: 0.0 - art_sys_60: 0.0 - art_sys_61: 0.0 - art_sys_62: 0.0 - art_sys_63: 0.0 - art_sys_64: 0.0 - art_sys_65: 2.86778973e-282 - art_sys_66: 3.42427973e-204 - art_sys_67: 1.16528293e-193 - art_sys_68: 3.75322770e-211 - art_sys_69: 1.20730526e-199 - art_sys_70: 1.67172574e-201 - art_sys_71: -5.54071194e-196 - art_sys_72: -2.59971163e-166 - art_sys_73: 1.02548781e-179 - art_sys_74: -5.55397785e-172 - art_sys_75: -5.88730520e-149 - art_sys_76: 1.51881811e-129 - art_sys_77: 1.32315365e-113 - art_sys_78: 3.84003558e-114 - art_sys_79: -1.21675243e-100 - art_sys_80: -1.60229329e-83 - art_sys_81: -6.66185837e-76 - art_sys_82: -4.35079919e-70 - art_sys_83: -1.23041813e-86 - art_sys_84: 1.12273903e-86 - art_sys_85: 5.60457461e-84 - art_sys_86: 6.18271277e-76 - art_sys_87: -4.75636667e-79 - art_sys_88: 2.75841567e-58 - art_sys_89: 9.66343046e-76 - art_sys_90: 2.45649963e-75 - art_sys_91: 7.87234706e-75 - art_sys_92: 2.17751875e-75 - art_sys_93: 4.00396956e-76 - art_sys_94: 2.64747240e-74 - art_sys_95: -2.10724117e-75 - art_sys_96: 8.09360057e-68 - art_sys_97: 5.79101361e-69 - art_sys_98: -1.23767325e-67 - art_sys_99: -2.11988668e-67 - art_sys_100: -6.29763194e-52 - art_sys_101: -2.56612229e-51 - art_sys_102: -4.88009492e-68 - art_sys_103: -1.26787464e-58 - art_sys_104: 8.49449742e-64 - art_sys_105: -5.74115789e-54 - art_sys_106: 8.05994472e-61 - art_sys_107: -2.24351056e-60 - art_sys_108: -1.09589933e-50 - art_sys_109: -6.43626304e-57 - art_sys_110: 7.79907669e-54 - art_sys_111: -3.52510684e-52 - art_sys_112: -1.41148860e-53 - art_sys_113: 4.41729093e-52 - art_sys_114: 1.46075621e-52 - art_sys_115: -6.22851883e-51 - art_sys_116: -1.75753695e-50 - art_sys_117: -2.37544493e-49 - art_sys_118: -2.61958460e-48 - art_sys_119: 5.83065572e-51 - art_sys_120: 8.86758975e-47 - art_sys_121: -5.18366878e-44 - art_sys_122: -2.95199522e-42 - art_sys_123: 1.74574390e-46 - art_sys_124: -6.30800817e-41 - art_sys_125: -1.09530490e-44 - art_sys_126: -7.05950630e-40 - art_sys_127: 1.46943308e-41 - art_sys_128: 3.31699587e-38 - art_sys_129: -8.99513687e-38 - art_sys_130: -2.35402406e-38 - art_sys_131: -6.01312823e-38 - art_sys_132: -1.27898313e-39 - art_sys_133: -2.40934466e-37 - art_sys_134: 3.05141825e-35 - art_sys_135: 9.37384678e-52 - art_sys_136: 1.72314452e-50 - art_sys_137: 8.42434453e-51 - art_sys_138: -1.65465841e-50 - art_sys_139: -4.97456326e-46 - art_sys_140: -7.97303475e-49 - art_sys_141: -3.57102665e-34 - art_sys_142: -7.56723596e-41 - art_sys_143: -4.65846466e-37 - art_sys_144: 1.07123086e-10 - art_sys_145: -3.33635311e-09 - art_sys_146: 5.83709522e-09 - art_sys_147: -7.54725820e-09 - art_sys_148: -5.02770125e-07 - art_sys_149: 9.45176410e-07 - art_sys_150: 3.14491946e-06 - art_sys_151: 2.12075160e-06 - art_sys_152: 2.11907003e-05 - art_sys_153: 1.30603949e-05 - art_sys_154: -7.89370340e-05 - art_sys_155: -3.04898453e-04 - art_sys_156: -9.63034362e-04 - art_sys_157: -1.14728062e-03 - art_sys_158: -1.98949264e-03 - art_sys_159: -3.73372631e-03 - art_sys_160: -1.11359116e-03 - art_sys_161: 2.82284227e-05 - art_sys_162: 4.85873134e-06 - art_sys_163: 2.88741766e-06 - art_sys_164: 7.34077655e-07 - art_sys_165: 1.49311697e-07 - art_sys_166: 3.15689476e-08 - art_sys_167: -5.40164635e-09 - art_sys_168: 5.17426274e-22 - art_sys_169: 8.39737807e-10 - art_sys_170: 2.29835715e-22 - art_sys_171: 4.32581121e-21 - art_sys_172: 1.45109523e-10 - art_sys_173: -1.33933069e-11 - art_sys_174: -2.36981833e-19 - art_sys_175: 0.0 - art_sys_176: -6.69272497e-21 - art_sys_177: 0.0 - art_sys_178: -5.21639746e-21 - art_sys_179: -1.45659705e-22 - art_sys_180: -4.01955147e-25 - art_sys_181: 3.19028226e-18 - art_sys_182: 0.0 - art_sys_183: -4.14014743e-13 - art_sys_184: 3.84860871e-15 - art_sys_185: -3.85140172e-17 + art_sys_58: -2.33299251e-307 + art_sys_59: 4.93027681e-228 + art_sys_60: 5.41207449e-224 + art_sys_61: -3.20933218e-221 + art_sys_62: 1.58652243e-215 + art_sys_63: 2.45444188e-206 + art_sys_64: -7.54972201e-208 + art_sys_65: 8.17412489e-81 + art_sys_66: 1.52699669e-68 + art_sys_67: -5.64665713e-65 + art_sys_68: -7.45179909e-63 + art_sys_69: -9.72930213e-49 + art_sys_70: 2.13367647e-51 + art_sys_71: -2.44759970e-45 + art_sys_72: -1.60950774e-32 + art_sys_73: 1.07123086e-10 + art_sys_74: 3.33635311e-09 + art_sys_75: -5.83709522e-09 + art_sys_76: -6.37136901e-28 + art_sys_77: -2.02230068e-29 + art_sys_78: 1.98695542e-29 + art_sys_79: -7.54725820e-09 + art_sys_80: 1.48552968e-27 + art_sys_81: -5.02770125e-07 + art_sys_82: -9.45176410e-07 + art_sys_83: -2.94851612e-24 + art_sys_84: -3.14491946e-06 + art_sys_85: -2.12075160e-06 + art_sys_86: -1.87436242e-24 + art_sys_87: 8.12373668e-27 + art_sys_88: 6.42702919e-25 + art_sys_89: 2.15665625e-25 + art_sys_90: -1.33062555e-25 + art_sys_91: -2.34045594e-25 + art_sys_92: 2.24005192e-25 + art_sys_93: 7.94621607e-26 + art_sys_94: 7.26230146e-26 + art_sys_95: -2.53338321e-25 + art_sys_96: -4.78646487e-25 + art_sys_97: 3.69809905e-26 + art_sys_98: -1.72861425e-25 + art_sys_99: -2.51713860e-27 + art_sys_100: -1.90053355e-26 + art_sys_101: 6.35187994e-26 + art_sys_102: 1.54607429e-26 + art_sys_103: -2.75962914e-26 + art_sys_104: 1.33631485e-27 + art_sys_105: 4.99099567e-26 + art_sys_106: -1.76790974e-26 + art_sys_107: -1.97968682e-25 + art_sys_108: -1.22160433e-26 + art_sys_109: -1.61592582e-25 + art_sys_110: -1.08420176e-25 + art_sys_111: -2.75820286e-26 + art_sys_112: -6.26101740e-26 + art_sys_113: -7.53126213e-26 + art_sys_114: 2.46750490e-27 + art_sys_115: -3.20249607e-27 + art_sys_116: -1.53339297e-26 + art_sys_117: -4.64420873e-27 + art_sys_118: 2.84995431e-26 + art_sys_119: 4.55704106e-27 + art_sys_120: -1.20392900e-26 + art_sys_121: 5.33507432e-27 + art_sys_122: -1.16090723e-27 + art_sys_123: 2.21317993e-27 + art_sys_124: -6.62736023e-27 + art_sys_125: -2.94981461e-27 + art_sys_126: 2.13986823e-27 + art_sys_127: 4.30344534e-27 + art_sys_128: -2.25897087e-27 + art_sys_129: 6.94718748e-27 + art_sys_130: -4.00310137e-28 + art_sys_131: 1.10986087e-27 + art_sys_132: -1.20498180e-27 + art_sys_133: -3.36550509e-27 + art_sys_134: -2.45168771e-21 + art_sys_135: 5.11519645e-28 + art_sys_136: -2.12313494e-28 + art_sys_137: 5.55808369e-22 + art_sys_138: -5.08001194e-28 + art_sys_139: 2.82245541e-27 + art_sys_140: -3.03503300e-26 + art_sys_141: -1.06987131e-25 + art_sys_142: -1.63913796e-24 + art_sys_143: -1.23870486e-20 + art_sys_144: 1.70289405e-19 + art_sys_145: 2.19430577e-20 + art_sys_146: 0.0 + art_sys_147: 2.06440385e-21 + art_sys_148: 6.42788816e-24 + art_sys_149: 6.42788816e-24 + art_sys_150: 3.14880134e-23 + art_sys_151: 3.14880134e-23 + art_sys_152: 1.39589356e-22 + art_sys_153: -1.32814052e-20 + art_sys_154: 5.01347061e-21 + art_sys_155: 3.84860871e-15 + art_sys_156: -3.85140173e-17 + art_sys_157: -3.19028226e-18 + art_sys_158: -0.0 + art_sys_159: 5.55215120e-26 + art_sys_160: -2.45103056e-26 + art_sys_161: -6.37346254e-26 + art_sys_162: 1.83064425e-26 + art_sys_163: -3.73811752e-27 + art_sys_164: 3.18937797e-24 + art_sys_165: -7.15715760e-24 + art_sys_166: 2.11907003e-05 + art_sys_167: -1.30603949e-05 + art_sys_168: 7.89370340e-05 + art_sys_169: 3.04898453e-04 + art_sys_170: -9.63034362e-04 + art_sys_171: -1.14728062e-03 + art_sys_172: -1.98949264e-03 + art_sys_173: -3.73372631e-03 + art_sys_174: -1.11359116e-03 + art_sys_175: -4.14014743e-13 + art_sys_176: -2.82284227e-05 + art_sys_177: -4.85873134e-06 + art_sys_178: 2.88741766e-06 + art_sys_179: -7.34077655e-07 + art_sys_180: 1.49311697e-07 + art_sys_181: -3.15689476e-08 + art_sys_182: -5.40164635e-09 + art_sys_183: 8.39737807e-10 + art_sys_184: -1.45109523e-10 + art_sys_185: 1.33933069e-11 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -48602,134 +48602,134 @@ bins: art_sys_55: 0.0 art_sys_56: 0.0 art_sys_57: 0.0 - art_sys_58: 0.0 - art_sys_59: 0.0 - art_sys_60: 0.0 - art_sys_61: 0.0 - art_sys_62: 0.0 - art_sys_63: 0.0 - art_sys_64: 0.0 - art_sys_65: 3.52385838e-284 - art_sys_66: 4.20767626e-206 - art_sys_67: 1.43187289e-195 - art_sys_68: 4.61187997e-213 - art_sys_69: 1.48350897e-201 - art_sys_70: 2.05417818e-203 - art_sys_71: -6.80829954e-198 - art_sys_72: -3.19446592e-168 - art_sys_73: 1.26020291e-181 - art_sys_74: -6.82460038e-174 - art_sys_75: -7.23418538e-151 - art_sys_76: 1.86628880e-131 - art_sys_77: 1.62586081e-115 - art_sys_78: 4.71854749e-116 - art_sys_79: -1.49511744e-102 - art_sys_80: -1.96886119e-85 - art_sys_81: -8.18593851e-78 - art_sys_82: -5.34616209e-72 - art_sys_83: -1.51191140e-88 - art_sys_84: 1.37959575e-88 - art_sys_85: 6.88677297e-86 - art_sys_86: 7.59717541e-78 - art_sys_87: -5.84451409e-81 - art_sys_88: 3.38947781e-60 - art_sys_89: 1.18742333e-77 - art_sys_90: 3.01849031e-77 - art_sys_91: 9.67335920e-77 - art_sys_92: 2.67496425e-77 - art_sys_93: 4.91978670e-78 - art_sys_94: 3.25315330e-76 - art_sys_95: -2.58933054e-77 - art_sys_96: 9.94523044e-70 - art_sys_97: 7.11586448e-71 - art_sys_98: -1.52082446e-69 - art_sys_99: -2.60486805e-69 - art_sys_100: -7.73838544e-54 - art_sys_101: -3.15319211e-53 - art_sys_102: -5.99664120e-70 - art_sys_103: -1.55793523e-60 - art_sys_104: 1.04378660e-65 - art_sys_105: -7.05460292e-56 - art_sys_106: 9.90387490e-63 - art_sys_107: -2.75677420e-62 - art_sys_108: -1.34661592e-52 - art_sys_109: -7.90873216e-59 - art_sys_110: 9.58332626e-56 - art_sys_111: -4.33157029e-54 - art_sys_112: -1.73440476e-55 - art_sys_113: 5.42786562e-54 - art_sys_114: 1.79494367e-54 - art_sys_115: -7.65346084e-53 - art_sys_116: -2.15962103e-52 - art_sys_117: -2.91889215e-51 - art_sys_118: -3.21888537e-50 - art_sys_119: 7.16457580e-53 - art_sys_120: 1.08962906e-48 - art_sys_121: -6.36957311e-46 - art_sys_122: -3.62734391e-44 - art_sys_123: 2.14513000e-48 - art_sys_124: -7.75113552e-43 - art_sys_125: -1.34588550e-46 - art_sys_126: -8.67455915e-42 - art_sys_127: 1.80560561e-43 - art_sys_128: 4.07584832e-40 - art_sys_129: -1.10530175e-39 - art_sys_130: -2.89257069e-40 - art_sys_131: -7.38879382e-40 - art_sys_132: -1.57158508e-41 - art_sys_133: -2.96054737e-39 - art_sys_134: 3.74951264e-37 - art_sys_135: 1.15183676e-53 - art_sys_136: 2.11736040e-52 - art_sys_137: 1.03516410e-52 - art_sys_138: -2.03320625e-52 - art_sys_139: -6.11262905e-48 - art_sys_140: -9.79708192e-51 - art_sys_141: -4.38799551e-36 - art_sys_142: -9.29844570e-43 - art_sys_143: -5.72421436e-39 - art_sys_144: 1.45191118e-12 - art_sys_145: -2.22519756e-10 - art_sys_146: 4.58784486e-10 - art_sys_147: -3.10805926e-10 - art_sys_148: -3.40600854e-08 - art_sys_149: 7.43309308e-08 - art_sys_150: 1.93872712e-07 - art_sys_151: 2.90637597e-08 - art_sys_152: -9.85211972e-08 - art_sys_153: -1.21400774e-05 - art_sys_154: 7.97817680e-06 - art_sys_155: -5.82848541e-05 - art_sys_156: 1.03424095e-04 - art_sys_157: -1.56515089e-04 - art_sys_158: 8.47539000e-04 - art_sys_159: -1.99700024e-03 - art_sys_160: 2.46280968e-03 - art_sys_161: -6.61175517e-06 - art_sys_162: -1.73139323e-05 - art_sys_163: -5.56719051e-06 - art_sys_164: -1.94790970e-06 - art_sys_165: -4.16174628e-07 - art_sys_166: -8.57442529e-08 - art_sys_167: 1.59098293e-08 - art_sys_168: -1.47873063e-21 - art_sys_169: -2.47804941e-09 - art_sys_170: -6.60632438e-22 - art_sys_171: -3.04022769e-21 - art_sys_172: -4.20068470e-10 - art_sys_173: 4.00005870e-11 - art_sys_174: 1.70313592e-19 - art_sys_175: 0.0 - art_sys_176: 5.04341663e-21 - art_sys_177: 0.0 - art_sys_178: 3.41617806e-21 - art_sys_179: 5.67635498e-23 - art_sys_180: -1.07388209e-25 - art_sys_181: -9.50590636e-18 - art_sys_182: 0.0 - art_sys_183: 1.26342142e-12 - art_sys_184: -1.49301349e-14 - art_sys_185: 1.09747459e-16 + art_sys_58: -3.15629182e-309 + art_sys_59: 6.68233535e-230 + art_sys_60: 7.33534812e-226 + art_sys_61: -4.34982349e-223 + art_sys_62: 2.15032042e-217 + art_sys_63: 3.32666996e-208 + art_sys_64: -1.02326454e-209 + art_sys_65: 1.10789408e-82 + art_sys_66: 2.06964124e-70 + art_sys_67: -7.65329392e-67 + art_sys_68: -1.00999241e-64 + art_sys_69: -1.31867771e-50 + art_sys_70: 2.89191513e-53 + art_sys_71: -3.31739638e-47 + art_sys_72: -2.18147401e-34 + art_sys_73: 1.45191118e-12 + art_sys_74: 2.22519756e-10 + art_sys_75: -4.58784486e-10 + art_sys_76: -4.84315829e-29 + art_sys_77: -1.56366604e-30 + art_sys_78: 1.33157360e-30 + art_sys_79: -3.10805926e-10 + art_sys_80: 5.11202071e-29 + art_sys_81: -3.40600854e-08 + art_sys_82: -7.43309308e-08 + art_sys_83: -3.22509804e-25 + art_sys_84: -1.93872712e-07 + art_sys_85: -2.90637597e-08 + art_sys_86: -2.47242055e-26 + art_sys_87: 8.02618990e-27 + art_sys_88: 1.79225276e-26 + art_sys_89: 2.01511851e-26 + art_sys_90: 2.87225534e-27 + art_sys_91: -1.13881433e-26 + art_sys_92: 2.45639021e-27 + art_sys_93: -3.05304156e-27 + art_sys_94: 1.19245795e-27 + art_sys_95: -1.30475741e-26 + art_sys_96: -7.96986481e-27 + art_sys_97: 1.22320662e-27 + art_sys_98: -3.44938630e-27 + art_sys_99: 5.35020424e-28 + art_sys_100: -1.12075806e-27 + art_sys_101: 4.41634754e-27 + art_sys_102: 9.60919740e-28 + art_sys_103: -4.97532295e-28 + art_sys_104: -1.44959919e-27 + art_sys_105: 3.18068207e-27 + art_sys_106: -5.79281994e-28 + art_sys_107: -9.65242615e-27 + art_sys_108: -6.83754064e-28 + art_sys_109: -5.37780791e-27 + art_sys_110: -4.31306807e-27 + art_sys_111: -6.21731473e-28 + art_sys_112: -2.58708531e-27 + art_sys_113: 8.52295819e-29 + art_sys_114: 2.12116403e-28 + art_sys_115: 1.35290256e-27 + art_sys_116: -7.43120106e-28 + art_sys_117: -2.48782253e-28 + art_sys_118: 8.83057082e-28 + art_sys_119: 2.31884789e-28 + art_sys_120: -3.63993862e-28 + art_sys_121: 1.32733336e-28 + art_sys_122: -5.51850397e-29 + art_sys_123: 1.99986640e-28 + art_sys_124: -2.05415680e-28 + art_sys_125: -1.16229696e-28 + art_sys_126: -2.04378151e-28 + art_sys_127: 3.53824467e-28 + art_sys_128: -2.79276070e-28 + art_sys_129: 3.76372233e-28 + art_sys_130: -1.80721524e-28 + art_sys_131: 2.63305296e-29 + art_sys_132: -8.59046458e-29 + art_sys_133: -2.23334365e-29 + art_sys_134: -4.90537518e-21 + art_sys_135: -1.05549078e-29 + art_sys_136: 5.25565855e-29 + art_sys_137: 8.27324654e-22 + art_sys_138: 1.84514104e-29 + art_sys_139: -1.81162950e-27 + art_sys_140: -2.98616489e-25 + art_sys_141: 8.28505260e-25 + art_sys_142: 8.64830543e-24 + art_sys_143: 1.03688232e-20 + art_sys_144: -1.28158771e-19 + art_sys_145: -1.74210139e-20 + art_sys_146: 0.0 + art_sys_147: -2.21987234e-21 + art_sys_148: 5.76458568e-23 + art_sys_149: 5.76458568e-23 + art_sys_150: -4.04585853e-23 + art_sys_151: -4.04585853e-23 + art_sys_152: -7.65046584e-23 + art_sys_153: 9.27300838e-21 + art_sys_154: -3.52097761e-21 + art_sys_155: -1.49301349e-14 + art_sys_156: 1.09747459e-16 + art_sys_157: 9.50590636e-18 + art_sys_158: 0.0 + art_sys_159: 1.81883024e-27 + art_sys_160: 2.19606047e-28 + art_sys_161: -1.19822114e-27 + art_sys_162: 7.74971456e-28 + art_sys_163: -1.33889214e-27 + art_sys_164: -1.31281709e-25 + art_sys_165: 6.75094839e-24 + art_sys_166: -9.85211972e-08 + art_sys_167: 1.21400774e-05 + art_sys_168: -7.97817680e-06 + art_sys_169: 5.82848541e-05 + art_sys_170: 1.03424095e-04 + art_sys_171: -1.56515089e-04 + art_sys_172: 8.47539000e-04 + art_sys_173: -1.99700024e-03 + art_sys_174: 2.46280968e-03 + art_sys_175: 1.26342142e-12 + art_sys_176: 6.61175517e-06 + art_sys_177: 1.73139323e-05 + art_sys_178: -5.56719051e-06 + art_sys_179: 1.94790970e-06 + art_sys_180: -4.16174628e-07 + art_sys_181: 8.57442529e-08 + art_sys_182: 1.59098293e-08 + art_sys_183: -2.47804941e-09 + art_sys_184: 4.20068470e-10 + art_sys_185: -4.00005870e-11 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -48893,134 +48893,134 @@ bins: art_sys_55: 0.0 art_sys_56: 0.0 art_sys_57: 0.0 - art_sys_58: 0.0 - art_sys_59: 0.0 - art_sys_60: 0.0 - art_sys_61: 0.0 - art_sys_62: 0.0 - art_sys_63: 0.0 - art_sys_64: 0.0 - art_sys_65: -1.40077616e-284 - art_sys_66: -1.67259207e-206 - art_sys_67: -5.69183344e-196 - art_sys_68: -1.83326696e-213 - art_sys_69: -5.89709188e-202 - art_sys_70: -8.16555726e-204 - art_sys_71: 2.70636502e-198 - art_sys_72: 1.26983115e-168 - art_sys_73: -5.00881913e-182 - art_sys_74: 2.71284476e-174 - art_sys_75: 2.87565877e-151 - art_sys_76: -7.41867878e-132 - art_sys_77: -6.46295420e-116 - art_sys_78: -1.87566834e-116 - art_sys_79: 5.94323665e-103 - art_sys_80: 7.82641394e-86 - art_sys_81: 3.25398986e-78 - art_sys_82: 2.12515122e-72 - art_sys_83: 6.01001724e-89 - art_sys_84: -5.48402641e-89 - art_sys_85: -2.73755906e-86 - art_sys_86: -3.01995082e-78 - art_sys_87: 2.32325097e-81 - art_sys_88: -1.34735026e-60 - art_sys_89: -4.72014525e-78 - art_sys_90: -1.19987914e-77 - art_sys_91: -3.84525399e-77 - art_sys_92: -6.65063798e-78 - art_sys_93: -1.92181407e-78 - art_sys_94: -1.29315994e-76 - art_sys_95: 1.02927218e-77 - art_sys_96: -3.95332544e-70 - art_sys_97: -2.82862506e-71 - art_sys_98: 6.04542456e-70 - art_sys_99: 1.03546028e-69 - art_sys_100: 3.07608318e-54 - art_sys_101: 1.25342441e-53 - art_sys_102: 2.38371825e-70 - art_sys_103: 6.19294345e-61 - art_sys_104: -4.14914776e-66 - art_sys_105: 2.80427300e-56 - art_sys_106: -3.93688621e-63 - art_sys_107: 1.09584447e-62 - art_sys_108: 5.35292874e-53 - art_sys_109: 3.14379765e-59 - art_sys_110: -3.80946502e-56 - art_sys_111: 1.72184115e-54 - art_sys_112: 6.89442693e-56 - art_sys_113: -2.15762916e-54 - art_sys_114: -7.13507498e-55 - art_sys_115: 3.04232482e-53 - art_sys_116: 8.58470281e-53 - art_sys_117: 1.16028791e-51 - art_sys_118: 1.27953812e-50 - art_sys_119: -2.84798829e-53 - art_sys_120: -4.33138105e-49 - art_sys_121: 2.53196702e-46 - art_sys_122: 1.44190434e-44 - art_sys_123: -8.52709954e-49 - art_sys_124: 3.08115146e-43 - art_sys_125: 5.35002524e-47 - art_sys_126: 3.44822130e-42 - art_sys_127: -7.17745721e-44 - art_sys_128: -1.62018919e-40 - art_sys_129: 4.39368154e-40 - art_sys_130: 1.14982487e-40 - art_sys_131: 2.93711712e-40 - art_sys_132: 6.24720295e-42 - art_sys_133: 1.17684626e-39 - art_sys_134: -1.49046760e-37 - art_sys_135: -4.57866269e-54 - art_sys_136: -8.41671272e-53 - art_sys_137: -4.11487759e-53 - art_sys_138: 8.08219177e-53 - art_sys_139: 2.42982926e-48 - art_sys_140: 3.89443497e-51 - art_sys_141: 1.74427072e-36 - art_sys_142: 3.69622224e-43 - art_sys_143: 2.27543066e-39 - art_sys_144: -5.05576406e-13 - art_sys_145: -7.33461006e-12 - art_sys_146: 1.44916423e-11 - art_sys_147: -2.50459715e-11 - art_sys_148: -1.26525157e-09 - art_sys_149: 5.54804294e-09 - art_sys_150: 7.10252642e-09 - art_sys_151: -9.26594511e-09 - art_sys_152: -3.89753008e-07 - art_sys_153: -1.50389482e-06 - art_sys_154: 2.74459749e-06 - art_sys_155: 8.39945972e-06 - art_sys_156: 3.97889774e-05 - art_sys_157: 5.00739265e-05 - art_sys_158: 9.78639287e-05 - art_sys_159: 1.91623621e-04 - art_sys_160: 1.46487778e-04 - art_sys_161: 4.48202730e-04 - art_sys_162: 4.74911587e-05 - art_sys_163: 4.83296360e-05 - art_sys_164: 1.04052907e-05 - art_sys_165: 2.48232039e-06 - art_sys_166: 5.11073173e-07 - art_sys_167: -8.78024195e-08 - art_sys_168: -1.70907091e-21 - art_sys_169: 1.42458404e-08 - art_sys_170: 1.10193546e-23 - art_sys_171: 6.05234719e-21 - art_sys_172: 2.39505725e-09 - art_sys_173: -2.30448492e-10 - art_sys_174: -3.10575581e-19 - art_sys_175: 0.0 - art_sys_176: -3.41096868e-21 - art_sys_177: 0.0 - art_sys_178: -9.88183280e-21 - art_sys_179: -3.51921767e-22 - art_sys_180: -1.56603666e-24 - art_sys_181: 5.28314565e-17 - art_sys_182: 0.0 - art_sys_183: -6.95582013e-12 - art_sys_184: 6.06712393e-14 - art_sys_185: -6.37042911e-16 + art_sys_58: 1.10182654e-309 + art_sys_59: -2.32688560e-230 + art_sys_60: -2.55427406e-226 + art_sys_61: 1.51467131e-223 + art_sys_62: -7.48772600e-218 + art_sys_63: -1.15839448e-208 + art_sys_64: 3.56315478e-210 + art_sys_65: -3.85784694e-83 + art_sys_66: -7.20678921e-71 + art_sys_67: 2.66498729e-67 + art_sys_68: 3.51693920e-65 + art_sys_69: 4.59182591e-51 + art_sys_70: -1.00700654e-53 + art_sys_71: 1.15516525e-47 + art_sys_72: 7.59620702e-35 + art_sys_73: -5.05576406e-13 + art_sys_74: 7.33461006e-12 + art_sys_75: -1.44916423e-11 + art_sys_76: -1.53128958e-30 + art_sys_77: -4.95576412e-32 + art_sys_78: 4.39175074e-32 + art_sys_79: -2.50459715e-11 + art_sys_80: 5.19761990e-30 + art_sys_81: -1.26525157e-09 + art_sys_82: -5.54804294e-09 + art_sys_83: -1.12367276e-26 + art_sys_84: -7.10252642e-09 + art_sys_85: 9.26594511e-09 + art_sys_86: 7.59494824e-27 + art_sys_87: 1.13610510e-27 + art_sys_88: -1.48705841e-27 + art_sys_89: 1.45820788e-27 + art_sys_90: 1.25452975e-27 + art_sys_91: -1.08737858e-28 + art_sys_92: -1.04476740e-27 + art_sys_93: -9.47523315e-28 + art_sys_94: -2.91560839e-28 + art_sys_95: -2.37896093e-28 + art_sys_96: 1.77496298e-27 + art_sys_97: -6.32193201e-29 + art_sys_98: 6.05354716e-28 + art_sys_99: 1.07528339e-28 + art_sys_100: -3.01724144e-29 + art_sys_101: 1.96817568e-28 + art_sys_102: 3.58044610e-29 + art_sys_103: 9.85530604e-29 + art_sys_104: -2.04063109e-28 + art_sys_105: 1.34560907e-28 + art_sys_106: 3.38448789e-29 + art_sys_107: -1.01421331e-28 + art_sys_108: -1.84421554e-29 + art_sys_109: 2.43519811e-28 + art_sys_110: 6.92506887e-29 + art_sys_111: 8.53852123e-29 + art_sys_112: 2.51565378e-29 + art_sys_113: 4.83473108e-28 + art_sys_114: 2.04964775e-29 + art_sys_115: 2.09478974e-28 + art_sys_116: 5.85803329e-30 + art_sys_117: -1.62492738e-30 + art_sys_118: -5.39080332e-29 + art_sys_119: 3.25407745e-30 + art_sys_120: 2.42464698e-29 + art_sys_121: -1.08104332e-29 + art_sys_122: -2.59588348e-30 + art_sys_123: 1.38458028e-29 + art_sys_124: 1.26449684e-29 + art_sys_125: 2.93177557e-30 + art_sys_126: -4.45916044e-29 + art_sys_127: 2.09296348e-29 + art_sys_128: -2.43812134e-29 + art_sys_129: 9.81952497e-30 + art_sys_130: -2.30718402e-29 + art_sys_131: -4.81010480e-30 + art_sys_132: -5.11332345e-30 + art_sys_133: 1.02072021e-29 + art_sys_134: 1.99772403e-23 + art_sys_135: -4.47801093e-30 + art_sys_136: -1.24002414e-29 + art_sys_137: -6.55975048e-22 + art_sys_138: 5.76000272e-30 + art_sys_139: -5.46225350e-29 + art_sys_140: -8.54279535e-27 + art_sys_141: 2.20542912e-26 + art_sys_142: 2.99031413e-25 + art_sys_143: -9.97794469e-21 + art_sys_144: 1.96741591e-19 + art_sys_145: 3.40299645e-20 + art_sys_146: 0.0 + art_sys_147: 6.63907717e-21 + art_sys_148: 1.06845808e-23 + art_sys_149: 1.06845808e-23 + art_sys_150: 2.45369666e-23 + art_sys_151: 2.45369666e-23 + art_sys_152: 1.33049274e-22 + art_sys_153: -1.29506197e-20 + art_sys_154: 3.81581357e-21 + art_sys_155: 6.06712393e-14 + art_sys_156: -6.37042911e-16 + art_sys_157: -5.28314565e-17 + art_sys_158: -0.0 + art_sys_159: -8.88160516e-29 + art_sys_160: 1.75787339e-28 + art_sys_161: 2.56344389e-28 + art_sys_162: -6.90739989e-30 + art_sys_163: -5.91263330e-29 + art_sys_164: -9.13958701e-26 + art_sys_165: 5.34602571e-25 + art_sys_166: -3.89753008e-07 + art_sys_167: 1.50389482e-06 + art_sys_168: -2.74459749e-06 + art_sys_169: -8.39945972e-06 + art_sys_170: 3.97889774e-05 + art_sys_171: 5.00739265e-05 + art_sys_172: 9.78639287e-05 + art_sys_173: 1.91623621e-04 + art_sys_174: 1.46487778e-04 + art_sys_175: -6.95582013e-12 + art_sys_176: -4.48202730e-04 + art_sys_177: -4.74911587e-05 + art_sys_178: 4.83296360e-05 + art_sys_179: -1.04052907e-05 + art_sys_180: 2.48232039e-06 + art_sys_181: -5.11073173e-07 + art_sys_182: -8.78024195e-08 + art_sys_183: 1.42458404e-08 + art_sys_184: -2.39505725e-09 + art_sys_185: 2.30448492e-10 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -49184,134 +49184,134 @@ bins: art_sys_55: 0.0 art_sys_56: 0.0 art_sys_57: 0.0 - art_sys_58: 0.0 - art_sys_59: 0.0 - art_sys_60: 0.0 - art_sys_61: 0.0 - art_sys_62: 0.0 - art_sys_63: 0.0 - art_sys_64: 0.0 - art_sys_65: -1.39026585e-285 - art_sys_66: -1.66004302e-207 - art_sys_67: -5.64912900e-197 - art_sys_68: -1.81951241e-214 - art_sys_69: -5.85284743e-203 - art_sys_70: -8.10429307e-205 - art_sys_71: 2.68605982e-199 - art_sys_72: 1.26030392e-169 - art_sys_73: -4.97096152e-183 - art_sys_74: 2.69249095e-175 - art_sys_75: 2.85408340e-152 - art_sys_76: -7.36301824e-133 - art_sys_77: -6.41446423e-117 - art_sys_78: -1.86159566e-117 - art_sys_79: 5.89864600e-104 - art_sys_80: 7.76769426e-87 - art_sys_81: 3.22957597e-79 - art_sys_82: 2.10920673e-73 - art_sys_83: 5.96490329e-90 - art_sys_84: -5.44288005e-90 - art_sys_85: -2.71701977e-87 - art_sys_86: -2.99729287e-79 - art_sys_87: 2.30582018e-82 - art_sys_88: -1.33724142e-61 - art_sys_89: -4.68474219e-79 - art_sys_90: -1.19087674e-78 - art_sys_91: -3.81640399e-78 - art_sys_92: -1.62265734e-78 - art_sys_93: -1.90465037e-79 - art_sys_94: -1.28345768e-77 - art_sys_95: 1.02157673e-78 - art_sys_96: -3.92366460e-71 - art_sys_97: -2.80740258e-72 - art_sys_98: 6.00006721e-71 - art_sys_99: 1.02769148e-70 - art_sys_100: 3.05300407e-55 - art_sys_101: 1.24402027e-54 - art_sys_102: 2.36583824e-71 - art_sys_103: 6.14647930e-62 - art_sys_104: -4.11802498e-67 - art_sys_105: 2.78323322e-57 - art_sys_106: -3.90734872e-64 - art_sys_107: 1.08762260e-63 - art_sys_108: 5.31276702e-54 - art_sys_109: 3.12021050e-60 - art_sys_110: -3.78088354e-57 - art_sys_111: 1.70892260e-55 - art_sys_112: 6.84269973e-57 - art_sys_113: -2.14144100e-55 - art_sys_114: -7.08154226e-56 - art_sys_115: 3.01949900e-54 - art_sys_116: 8.52029388e-54 - art_sys_117: 1.15158255e-52 - art_sys_118: 1.26993806e-51 - art_sys_119: -2.82662052e-54 - art_sys_120: -4.29888376e-50 - art_sys_121: 2.51297028e-47 - art_sys_122: 1.43108609e-45 - art_sys_123: -8.46312279e-50 - art_sys_124: 3.05803433e-44 - art_sys_125: 5.30988530e-48 - art_sys_126: 3.42235013e-43 - art_sys_127: -7.12360650e-45 - art_sys_128: -1.60803330e-41 - art_sys_129: 4.36071682e-41 - art_sys_130: 1.14119801e-41 - art_sys_131: 2.91508065e-41 - art_sys_132: 6.20033171e-43 - art_sys_133: 1.16801667e-40 - art_sys_134: -1.47928498e-38 - art_sys_135: -4.54431010e-55 - art_sys_136: -8.35356417e-54 - art_sys_137: -4.08400466e-54 - art_sys_138: 8.02155307e-54 - art_sys_139: 2.41159885e-49 - art_sys_140: 3.86521597e-52 - art_sys_141: 1.73118388e-37 - art_sys_142: 3.66849039e-44 - art_sys_143: 2.25835866e-40 - art_sys_144: -5.07195661e-14 - art_sys_145: -2.73720301e-15 - art_sys_146: -3.97525068e-13 - art_sys_147: -3.13058554e-12 - art_sys_148: -5.43018193e-11 - art_sys_149: 3.77012908e-10 - art_sys_150: 4.16767233e-10 - art_sys_151: -4.47136836e-10 - art_sys_152: -2.01760551e-08 - art_sys_153: -8.22208769e-09 - art_sys_154: 6.77868744e-08 - art_sys_155: 2.05374805e-06 - art_sys_156: -1.59076530e-06 - art_sys_157: 6.79374442e-06 - art_sys_158: -4.48070347e-05 - art_sys_159: 8.98313735e-05 - art_sys_160: -1.45697426e-04 - art_sys_161: 1.01253517e-04 - art_sys_162: -2.89231121e-04 - art_sys_163: -6.17271763e-05 - art_sys_164: -3.36881733e-05 - art_sys_165: -6.04438398e-06 - art_sys_166: -1.46801565e-06 - art_sys_167: 2.66333728e-07 - art_sys_168: 1.27870203e-21 - art_sys_169: -4.14569408e-08 - art_sys_170: 1.55984840e-21 - art_sys_171: -3.04485151e-21 - art_sys_172: -7.35981513e-09 - art_sys_173: 6.72871765e-10 - art_sys_174: 2.00498039e-19 - art_sys_175: 0.0 - art_sys_176: 7.96382662e-21 - art_sys_177: 0.0 - art_sys_178: 4.37733642e-21 - art_sys_179: 1.94012223e-22 - art_sys_180: 3.61960995e-25 - art_sys_181: -1.67602280e-16 - art_sys_182: 0.0 - art_sys_183: 2.16340418e-11 - art_sys_184: -2.41775266e-13 - art_sys_185: 1.96019289e-15 + art_sys_58: 1.10511691e-310 + art_sys_59: -2.33433812e-231 + art_sys_60: -2.56245486e-227 + art_sys_61: 1.51952248e-224 + art_sys_62: -7.51170760e-219 + art_sys_63: -1.16210458e-209 + art_sys_64: 3.57456681e-211 + art_sys_65: -3.87020282e-84 + art_sys_66: -7.22987105e-72 + art_sys_67: 2.67352269e-68 + art_sys_68: 3.52820323e-66 + art_sys_69: 4.60653257e-52 + art_sys_70: -1.01023177e-54 + art_sys_71: 1.15886500e-48 + art_sys_72: 7.62053609e-36 + art_sys_73: -5.07195661e-14 + art_sys_74: 2.73720301e-15 + art_sys_75: 3.97525068e-13 + art_sys_76: 3.54093071e-32 + art_sys_77: 1.23368637e-33 + art_sys_78: -6.37775387e-36 + art_sys_79: -3.13058554e-12 + art_sys_80: 7.52176296e-31 + art_sys_81: -5.43018193e-11 + art_sys_82: -3.77012908e-10 + art_sys_83: -1.14902786e-27 + art_sys_84: -4.16767233e-10 + art_sys_85: 4.47136836e-10 + art_sys_86: 3.23649755e-28 + art_sys_87: 6.38774006e-29 + art_sys_88: -6.28775710e-29 + art_sys_89: 7.95424152e-29 + art_sys_90: 6.44538762e-29 + art_sys_91: -9.31948584e-30 + art_sys_92: -4.94757275e-29 + art_sys_93: -4.95991020e-29 + art_sys_94: -1.40769790e-29 + art_sys_95: -1.59519578e-29 + art_sys_96: 7.69844138e-29 + art_sys_97: -2.70484888e-30 + art_sys_98: 2.86364230e-29 + art_sys_99: 6.64488904e-30 + art_sys_100: -1.49946257e-30 + art_sys_101: 1.13449446e-29 + art_sys_102: 2.21765587e-30 + art_sys_103: 4.32803567e-30 + art_sys_104: -1.02555763e-29 + art_sys_105: 8.21611480e-30 + art_sys_106: 1.68249467e-30 + art_sys_107: -8.76961060e-30 + art_sys_108: -7.03290376e-31 + art_sys_109: 8.49709461e-30 + art_sys_110: 1.98276685e-30 + art_sys_111: 3.90721977e-30 + art_sys_112: -2.60197595e-31 + art_sys_113: 2.38090086e-29 + art_sys_114: 1.51779238e-30 + art_sys_115: 1.12741012e-29 + art_sys_116: 3.67172188e-31 + art_sys_117: 7.31573412e-32 + art_sys_118: -2.30341739e-30 + art_sys_119: 2.07959790e-31 + art_sys_120: -3.54440183e-30 + art_sys_121: 4.42710395e-32 + art_sys_122: -4.55480084e-31 + art_sys_123: 2.20189660e-31 + art_sys_124: 2.95744519e-31 + art_sys_125: 1.69958765e-31 + art_sys_126: -2.95666322e-30 + art_sys_127: 1.15341726e-30 + art_sys_128: -1.33777848e-30 + art_sys_129: 5.03450371e-31 + art_sys_130: -1.71247509e-30 + art_sys_131: 2.56849708e-30 + art_sys_132: 3.12361883e-32 + art_sys_133: -2.08388459e-30 + art_sys_134: 2.58912637e-22 + art_sys_135: -7.66352519e-31 + art_sys_136: -7.33697239e-30 + art_sys_137: 1.44477009e-22 + art_sys_138: 2.92247930e-31 + art_sys_139: 1.06318071e-28 + art_sys_140: 1.62216592e-26 + art_sys_141: -3.87116269e-26 + art_sys_142: -4.13368677e-25 + art_sys_143: 7.32954887e-21 + art_sys_144: -2.24010236e-19 + art_sys_145: -2.38225133e-20 + art_sys_146: -0.0 + art_sys_147: -7.76086795e-21 + art_sys_148: 6.18544694e-24 + art_sys_149: 6.18544694e-24 + art_sys_150: -1.15598929e-23 + art_sys_151: -1.15598929e-23 + art_sys_152: -5.13402219e-23 + art_sys_153: 5.46852476e-21 + art_sys_154: -2.93686387e-21 + art_sys_155: -2.41775266e-13 + art_sys_156: 1.96019289e-15 + art_sys_157: 1.67602280e-16 + art_sys_158: 0.0 + art_sys_159: -3.27341756e-30 + art_sys_160: 7.39453234e-30 + art_sys_161: 9.58631729e-30 + art_sys_162: -6.48255333e-32 + art_sys_163: 4.34534728e-30 + art_sys_164: -2.42492284e-27 + art_sys_165: -4.04977363e-25 + art_sys_166: -2.01760551e-08 + art_sys_167: 8.22208769e-09 + art_sys_168: -6.77868744e-08 + art_sys_169: -2.05374805e-06 + art_sys_170: -1.59076530e-06 + art_sys_171: 6.79374442e-06 + art_sys_172: -4.48070347e-05 + art_sys_173: 8.98313735e-05 + art_sys_174: -1.45697426e-04 + art_sys_175: 2.16340418e-11 + art_sys_176: -1.01253517e-04 + art_sys_177: 2.89231121e-04 + art_sys_178: -6.17271763e-05 + art_sys_179: 3.36881733e-05 + art_sys_180: -6.04438398e-06 + art_sys_181: 1.46801565e-06 + art_sys_182: 2.66333728e-07 + art_sys_183: -4.14569408e-08 + art_sys_184: 7.35981513e-09 + art_sys_185: -6.72871765e-10 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -49475,134 +49475,134 @@ bins: art_sys_55: 0.0 art_sys_56: 0.0 art_sys_57: 0.0 - art_sys_58: 0.0 - art_sys_59: 0.0 - art_sys_60: 0.0 - art_sys_61: 0.0 - art_sys_62: 0.0 - art_sys_63: 0.0 - art_sys_64: 0.0 - art_sys_65: -8.08287222e-287 - art_sys_66: -9.65133262e-209 - art_sys_67: -3.28435000e-198 - art_sys_68: -1.05784725e-215 - art_sys_69: -3.40278996e-204 - art_sys_70: -4.71175909e-206 - art_sys_71: 1.56164969e-200 - art_sys_72: 7.32728738e-171 - art_sys_73: -2.89083507e-184 - art_sys_74: 1.56538869e-176 - art_sys_75: 1.65933701e-153 - art_sys_76: -4.28078894e-134 - art_sys_77: -3.72930864e-118 - art_sys_78: -1.08231405e-118 - art_sys_79: 3.42941681e-105 - art_sys_80: 4.51606374e-88 - art_sys_81: 1.87764482e-80 - art_sys_82: 1.22627278e-74 - art_sys_83: 3.46795309e-91 - art_sys_84: -3.16443913e-91 - art_sys_85: -1.57964988e-88 - art_sys_86: -1.74259763e-80 - art_sys_87: 1.34058197e-83 - art_sys_88: -7.77459474e-63 - art_sys_89: -2.72362854e-80 - art_sys_90: -6.92364436e-80 - art_sys_91: -2.21882106e-79 - art_sys_92: -6.59278790e-80 - art_sys_93: -1.10662249e-80 - art_sys_94: -7.46190112e-79 - art_sys_95: 5.93927088e-80 - art_sys_96: -2.28118137e-72 - art_sys_97: -1.63219722e-73 - art_sys_98: 3.48838214e-72 - art_sys_99: 5.97490074e-72 - art_sys_100: 1.77498760e-56 - art_sys_101: 7.23261582e-56 - art_sys_102: 1.37546714e-72 - art_sys_103: 3.57350474e-63 - art_sys_104: -2.39418023e-68 - art_sys_105: 1.61814539e-58 - art_sys_106: -2.27169547e-65 - art_sys_107: 6.32333486e-65 - art_sys_108: 3.08879233e-55 - art_sys_109: 1.81406078e-61 - art_sys_110: -2.19816981e-58 - art_sys_111: 9.93551383e-57 - art_sys_112: 3.97828069e-58 - art_sys_113: -1.24501348e-56 - art_sys_114: -4.11714147e-57 - art_sys_115: 1.75550807e-55 - art_sys_116: 4.95361801e-55 - art_sys_117: 6.69519167e-54 - art_sys_118: 7.38329935e-53 - art_sys_119: -1.64337035e-55 - art_sys_120: -2.49933023e-51 - art_sys_121: 1.46101708e-48 - art_sys_122: 8.32019871e-47 - art_sys_123: -4.92037928e-51 - art_sys_124: 1.77791214e-45 - art_sys_125: 3.08711693e-49 - art_sys_126: 1.98972189e-44 - art_sys_127: -4.14159722e-46 - art_sys_128: -9.34895305e-43 - art_sys_129: 2.53527938e-42 - art_sys_130: 6.63481696e-43 - art_sys_131: 1.69480023e-42 - art_sys_132: 3.60481402e-44 - art_sys_133: 6.79073808e-42 - art_sys_134: -8.60042252e-40 - art_sys_135: -2.64201877e-56 - art_sys_136: -4.85668294e-55 - art_sys_137: -2.37440156e-55 - art_sys_138: 4.66365484e-55 - art_sys_139: 1.40208069e-50 - art_sys_140: 2.24719989e-53 - art_sys_141: 1.00649388e-38 - art_sys_142: 2.13282550e-45 - art_sys_143: 1.31298829e-41 - art_sys_144: -2.96211653e-15 - art_sys_145: 1.77413255e-14 - art_sys_146: -8.50287906e-14 - art_sys_147: -2.61004393e-13 - art_sys_148: -4.24870017e-12 - art_sys_149: 6.61939702e-12 - art_sys_150: 2.21789879e-11 - art_sys_151: 2.50936504e-11 - art_sys_152: 5.12840017e-09 - art_sys_153: 7.31576203e-09 - art_sys_154: -3.85384728e-08 - art_sys_155: -6.64108385e-08 - art_sys_156: -1.19583320e-06 - art_sys_157: -1.51479471e-06 - art_sys_158: -2.68165371e-06 - art_sys_159: -1.54963555e-05 - art_sys_160: 4.26228856e-06 - art_sys_161: -7.18790785e-05 - art_sys_162: -1.12327586e-04 - art_sys_163: 2.05026722e-04 - art_sys_164: 3.32214375e-05 - art_sys_165: 1.73424816e-05 - art_sys_166: 3.13465395e-06 - art_sys_167: -6.81315422e-07 - art_sys_168: -4.86911235e-22 - art_sys_169: 1.12897897e-07 - art_sys_170: -1.34555206e-21 - art_sys_171: 3.79922769e-21 - art_sys_172: 1.90495875e-08 - art_sys_173: -1.89694123e-09 - art_sys_174: -1.57052929e-19 - art_sys_175: 0.0 - art_sys_176: -2.53682446e-21 - art_sys_177: 0.0 - art_sys_178: -3.04948457e-21 - art_sys_179: -1.98215561e-22 - art_sys_180: 1.06858474e-24 - art_sys_181: 4.38664943e-16 - art_sys_182: 0.0 - art_sys_183: -5.96528758e-11 - art_sys_184: 6.30936003e-13 - art_sys_185: -5.17590803e-15 + art_sys_58: 6.45350476e-312 + art_sys_59: -1.36329666e-232 + art_sys_60: -1.49652106e-228 + art_sys_61: 8.87429247e-226 + art_sys_62: -4.38697625e-220 + art_sys_63: -6.78690579e-211 + art_sys_64: 2.08761317e-212 + art_sys_65: -2.26027007e-85 + art_sys_66: -4.22237849e-73 + art_sys_67: 1.56138673e-69 + art_sys_68: 2.06053598e-67 + art_sys_69: 2.69030027e-53 + art_sys_70: -5.89994052e-56 + art_sys_71: 6.76798608e-50 + art_sys_72: 4.45053410e-37 + art_sys_73: -2.96211653e-15 + art_sys_74: -1.77413255e-14 + art_sys_75: 8.50287906e-14 + art_sys_76: 8.12810255e-33 + art_sys_77: 2.75101134e-34 + art_sys_78: -1.09442813e-34 + art_sys_79: -2.61004393e-13 + art_sys_80: 6.50739091e-32 + art_sys_81: -4.24870017e-12 + art_sys_82: -6.61939702e-12 + art_sys_83: -5.88160024e-29 + art_sys_84: -2.21789879e-11 + art_sys_85: -2.50936504e-11 + art_sys_86: -2.26136250e-29 + art_sys_87: -6.57612572e-31 + art_sys_88: 6.48408972e-30 + art_sys_89: 8.13751982e-31 + art_sys_90: -2.05164719e-30 + art_sys_91: -1.92729398e-30 + art_sys_92: 2.74447232e-30 + art_sys_93: 1.32283386e-30 + art_sys_94: 8.38408609e-31 + art_sys_95: -1.91250775e-30 + art_sys_96: -5.68824822e-30 + art_sys_97: 3.66885762e-31 + art_sys_98: -1.93047935e-30 + art_sys_99: -5.75739053e-32 + art_sys_100: -1.29179482e-31 + art_sys_101: 4.42945644e-31 + art_sys_102: 1.11165925e-31 + art_sys_103: -3.14927108e-31 + art_sys_104: 1.64157033e-31 + art_sys_105: 3.50547433e-31 + art_sys_106: -1.79282101e-31 + art_sys_107: -1.65925306e-30 + art_sys_108: -1.28159313e-30 + art_sys_109: -1.56760325e-30 + art_sys_110: -1.01330464e-30 + art_sys_111: -3.07661849e-31 + art_sys_112: -5.79236512e-31 + art_sys_113: -1.01013514e-30 + art_sys_114: 1.69051741e-32 + art_sys_115: -9.88026648e-31 + art_sys_116: -1.22415115e-31 + art_sys_117: -2.97528328e-32 + art_sys_118: 5.68802237e-31 + art_sys_119: 7.15678216e-32 + art_sys_120: 1.14186572e-29 + art_sys_121: -5.81380675e-31 + art_sys_122: 4.02453842e-31 + art_sys_123: 1.29576326e-30 + art_sys_124: 6.36516684e-31 + art_sys_125: -1.02822575e-31 + art_sys_126: 1.48704885e-30 + art_sys_127: -1.14075185e-31 + art_sys_128: 3.92182261e-31 + art_sys_129: 6.42333532e-31 + art_sys_130: 1.28978348e-30 + art_sys_131: -7.32779100e-30 + art_sys_132: -9.56382958e-31 + art_sys_133: 1.46794864e-30 + art_sys_134: -2.68075026e-23 + art_sys_135: 1.44997244e-30 + art_sys_136: -8.05951153e-32 + art_sys_137: 1.35902718e-21 + art_sys_138: -8.40603274e-33 + art_sys_139: -2.60698521e-29 + art_sys_140: -3.52913579e-27 + art_sys_141: 1.02773306e-26 + art_sys_142: 2.54910151e-25 + art_sys_143: -4.60602307e-21 + art_sys_144: 1.75950556e-19 + art_sys_145: 1.85235594e-20 + art_sys_146: -0.0 + art_sys_147: 1.00404497e-20 + art_sys_148: -3.85294806e-24 + art_sys_149: -3.85294806e-24 + art_sys_150: 4.54312445e-24 + art_sys_151: 4.54312445e-24 + art_sys_152: 1.98142454e-23 + art_sys_153: -1.31897291e-21 + art_sys_154: 6.32571680e-22 + art_sys_155: 6.30936003e-13 + art_sys_156: -5.17590803e-15 + art_sys_157: -4.38664943e-16 + art_sys_158: -0.0 + art_sys_159: 5.21206528e-31 + art_sys_160: -4.05752478e-31 + art_sys_161: -7.29389007e-31 + art_sys_162: 1.50948521e-31 + art_sys_163: -1.54057755e-31 + art_sys_164: 1.49976321e-27 + art_sys_165: -5.38898590e-27 + art_sys_166: 5.12840017e-09 + art_sys_167: -7.31576203e-09 + art_sys_168: 3.85384728e-08 + art_sys_169: 6.64108385e-08 + art_sys_170: -1.19583320e-06 + art_sys_171: -1.51479471e-06 + art_sys_172: -2.68165371e-06 + art_sys_173: -1.54963555e-05 + art_sys_174: 4.26228856e-06 + art_sys_175: -5.96528758e-11 + art_sys_176: 7.18790785e-05 + art_sys_177: 1.12327586e-04 + art_sys_178: 2.05026722e-04 + art_sys_179: -3.32214375e-05 + art_sys_180: 1.73424816e-05 + art_sys_181: -3.13465395e-06 + art_sys_182: -6.81315422e-07 + art_sys_183: 1.12897897e-07 + art_sys_184: -1.90495875e-08 + art_sys_185: 1.89694123e-09 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -49766,134 +49766,134 @@ bins: art_sys_55: 0.0 art_sys_56: 0.0 art_sys_57: 0.0 - art_sys_58: 0.0 - art_sys_59: 0.0 - art_sys_60: 0.0 - art_sys_61: 0.0 - art_sys_62: 0.0 - art_sys_63: 0.0 - art_sys_64: 0.0 - art_sys_65: -2.94682927e-288 - art_sys_66: -3.51865436e-210 - art_sys_67: -1.19739863e-199 - art_sys_68: -3.85666827e-217 - art_sys_69: -1.24057912e-205 - art_sys_70: -1.71779922e-207 - art_sys_71: 5.69341636e-202 - art_sys_72: 2.67136080e-172 - art_sys_73: -1.05382395e-185 - art_sys_74: 5.70704788e-178 - art_sys_75: 6.04956187e-155 - art_sys_76: -1.56067740e-135 - art_sys_77: -1.35962034e-119 - art_sys_78: -3.94586861e-120 - art_sys_79: 1.25028666e-106 - art_sys_80: 1.64645319e-89 - art_sys_81: 6.84546206e-82 - art_sys_82: 4.47070910e-76 - art_sys_83: 1.26434049e-92 - art_sys_84: -1.15368213e-92 - art_sys_85: -5.75904345e-90 - art_sys_86: -6.35311101e-82 - art_sys_87: 4.88745419e-85 - art_sys_88: -2.83443880e-64 - art_sys_89: -9.92979585e-82 - art_sys_90: -2.52420182e-81 - art_sys_91: -8.08931234e-81 - art_sys_92: -1.14024761e-81 - art_sys_93: -4.09754826e-82 - art_sys_94: -2.72043789e-80 - art_sys_95: 2.16528674e-81 - art_sys_96: -8.31666370e-74 - art_sys_97: -5.95061644e-75 - art_sys_98: 1.27178406e-73 - art_sys_99: 2.17831167e-73 - art_sys_100: 6.47119739e-58 - art_sys_101: 2.63684573e-57 - art_sys_102: 5.01459102e-74 - art_sys_103: 1.30281781e-64 - art_sys_104: -8.72861632e-70 - art_sys_105: 5.89938668e-60 - art_sys_106: -8.28208027e-67 - art_sys_107: 2.30534266e-66 - art_sys_108: 1.12610279e-56 - art_sys_109: 6.61364923e-63 - art_sys_110: -8.01402261e-60 - art_sys_111: 3.62226030e-58 - art_sys_112: 1.45038983e-59 - art_sys_113: -4.53903338e-58 - art_sys_114: -1.50101528e-58 - art_sys_115: 6.40017950e-57 - art_sys_116: 1.80597543e-56 - art_sys_117: 2.44091321e-55 - art_sys_118: 2.69178148e-54 - art_sys_119: -5.99135113e-57 - art_sys_120: -9.11198435e-53 - art_sys_121: 5.32653293e-50 - art_sys_122: 3.03335348e-48 - art_sys_123: -1.79385735e-52 - art_sys_124: 6.48185960e-47 - art_sys_125: 1.12549198e-50 - art_sys_126: 7.25406934e-46 - art_sys_127: -1.50993129e-47 - art_sys_128: -3.40841371e-44 - art_sys_129: 9.24304672e-44 - art_sys_130: 2.41890198e-44 - art_sys_131: 6.17885264e-44 - art_sys_132: 1.31423246e-45 - art_sys_133: 2.47574724e-43 - art_sys_134: -3.13551665e-41 - art_sys_135: -9.63219404e-58 - art_sys_136: -1.77063513e-56 - art_sys_137: -8.65652311e-57 - art_sys_138: 1.70026151e-56 - art_sys_139: 5.11166438e-52 - art_sys_140: 8.19277503e-55 - art_sys_141: 3.66944569e-40 - art_sys_142: 7.77579225e-47 - art_sys_143: 4.78685396e-43 - art_sys_144: -1.08366855e-16 - art_sys_145: 1.15121762e-15 - art_sys_146: -5.23194668e-15 - art_sys_147: -1.04212893e-14 - art_sys_148: -1.42472166e-13 - art_sys_149: -2.09987779e-12 - art_sys_150: -2.79564671e-12 - art_sys_151: -9.26258479e-13 - art_sys_152: 7.44400608e-10 - art_sys_153: -4.49214237e-10 - art_sys_154: -4.00652732e-09 - art_sys_155: -3.99361402e-08 - art_sys_156: -9.70988872e-08 - art_sys_157: -3.11700333e-07 - art_sys_158: 1.27211114e-06 - art_sys_159: -3.83375623e-06 - art_sys_160: 5.81141436e-06 - art_sys_161: -9.08062170e-06 - art_sys_162: 4.20758608e-05 - art_sys_163: 7.13109191e-05 - art_sys_164: -1.45159785e-04 - art_sys_165: -1.88350371e-05 - art_sys_166: -1.04905946e-05 - art_sys_167: 1.62703354e-06 - art_sys_168: 2.24537767e-21 - art_sys_169: -3.24435622e-07 - art_sys_170: -6.58615591e-22 - art_sys_171: -2.98429414e-21 - art_sys_172: -5.84119625e-08 - art_sys_173: 5.73421303e-09 - art_sys_174: 1.06547145e-19 - art_sys_175: 0.0 - art_sys_176: 3.87469017e-21 - art_sys_177: 0.0 - art_sys_178: 1.85959437e-21 - art_sys_179: 8.95770872e-23 - art_sys_180: -8.09647573e-25 - art_sys_181: -1.39629676e-15 - art_sys_182: 0.0 - art_sys_183: 1.73630929e-10 - art_sys_184: -1.17385812e-12 - art_sys_185: 1.65560573e-14 + art_sys_58: 2.36080386e-313 + art_sys_59: -4.98752057e-234 + art_sys_60: -5.47491224e-230 + art_sys_61: 3.24659464e-227 + art_sys_62: -1.60494300e-221 + art_sys_63: -2.48293957e-212 + art_sys_64: 7.63737925e-214 + art_sys_65: -8.26903183e-87 + art_sys_66: -1.54472612e-74 + art_sys_67: 5.71221852e-71 + art_sys_68: 7.53831935e-69 + art_sys_69: 9.84226570e-55 + art_sys_70: -2.15844985e-57 + art_sys_71: 2.47601794e-51 + art_sys_72: 1.62819517e-38 + art_sys_73: -1.08366855e-16 + art_sys_74: -1.15121762e-15 + art_sys_75: 5.23194668e-15 + art_sys_76: 5.01042163e-34 + art_sys_77: 1.69541061e-35 + art_sys_78: -7.10271885e-36 + art_sys_79: -1.04212893e-14 + art_sys_80: 2.68364414e-33 + art_sys_81: -1.42472166e-13 + art_sys_82: 2.09987779e-12 + art_sys_83: 2.91638665e-30 + art_sys_84: 2.79564671e-12 + art_sys_85: 9.26258479e-13 + art_sys_86: 1.54534691e-30 + art_sys_87: -1.66444942e-31 + art_sys_88: -5.00928347e-31 + art_sys_89: -2.66408032e-31 + art_sys_90: -1.84950613e-32 + art_sys_91: 1.86829128e-31 + art_sys_92: -1.07422508e-31 + art_sys_93: 3.15387946e-32 + art_sys_94: -3.19391448e-32 + art_sys_95: 1.98657193e-31 + art_sys_96: 3.32367788e-31 + art_sys_97: -2.38910836e-32 + art_sys_98: 8.82100706e-32 + art_sys_99: -1.93460806e-32 + art_sys_100: 1.17013210e-32 + art_sys_101: -6.81490439e-32 + art_sys_102: -1.71901637e-32 + art_sys_103: 2.00176942e-32 + art_sys_104: 7.92570892e-33 + art_sys_105: -5.25098226e-32 + art_sys_106: 5.99727055e-33 + art_sys_107: 1.58564774e-31 + art_sys_108: 2.22407949e-30 + art_sys_109: 3.18366301e-32 + art_sys_110: 7.90655031e-32 + art_sys_111: 1.47528032e-32 + art_sys_112: 5.12088558e-32 + art_sys_113: 2.18488730e-32 + art_sys_114: -9.69895814e-33 + art_sys_115: 1.50380438e-30 + art_sys_116: 2.39450741e-33 + art_sys_117: 8.20476692e-34 + art_sys_118: -5.44383358e-31 + art_sys_119: -7.21744565e-32 + art_sys_120: -2.14642785e-29 + art_sys_121: 1.14845790e-30 + art_sys_122: -7.68934031e-31 + art_sys_123: -2.39311390e-30 + art_sys_124: -1.32350567e-30 + art_sys_125: 1.40471676e-31 + art_sys_126: -2.84933312e-30 + art_sys_127: 2.62352475e-31 + art_sys_128: -7.34426985e-31 + art_sys_129: -1.09852920e-30 + art_sys_130: -2.70127298e-30 + art_sys_131: 1.35057185e-29 + art_sys_132: 1.73976674e-30 + art_sys_133: -1.96146469e-30 + art_sys_134: -3.70352791e-23 + art_sys_135: -2.80674888e-30 + art_sys_136: 4.24515633e-30 + art_sys_137: -1.90644067e-22 + art_sys_138: -2.06302854e-35 + art_sys_139: -2.28731033e-29 + art_sys_140: -5.22831691e-27 + art_sys_141: 3.05197432e-26 + art_sys_142: 6.09952498e-25 + art_sys_143: 3.19891775e-21 + art_sys_144: -1.24894195e-19 + art_sys_145: -1.24576472e-20 + art_sys_146: -0.0 + art_sys_147: -5.58852558e-21 + art_sys_148: 4.65964981e-23 + art_sys_149: 4.65964981e-23 + art_sys_150: -2.65076123e-24 + art_sys_151: -2.65076123e-24 + art_sys_152: 2.48095689e-23 + art_sys_153: 1.54368154e-21 + art_sys_154: -9.61255609e-22 + art_sys_155: -1.17385812e-12 + art_sys_156: 1.65560573e-14 + art_sys_157: 1.39629676e-15 + art_sys_158: 0.0 + art_sys_159: 3.21342932e-32 + art_sys_160: 8.84280956e-32 + art_sys_161: 9.13310131e-32 + art_sys_162: 1.02107213e-32 + art_sys_163: -1.82211669e-30 + art_sys_164: 1.58324891e-28 + art_sys_165: 2.55069971e-28 + art_sys_166: 7.44400608e-10 + art_sys_167: 4.49214237e-10 + art_sys_168: 4.00652732e-09 + art_sys_169: 3.99361402e-08 + art_sys_170: -9.70988872e-08 + art_sys_171: -3.11700333e-07 + art_sys_172: 1.27211114e-06 + art_sys_173: -3.83375623e-06 + art_sys_174: 5.81141436e-06 + art_sys_175: 1.73630929e-10 + art_sys_176: 9.08062170e-06 + art_sys_177: -4.20758608e-05 + art_sys_178: 7.13109191e-05 + art_sys_179: 1.45159785e-04 + art_sys_180: -1.88350371e-05 + art_sys_181: 1.04905946e-05 + art_sys_182: 1.62703354e-06 + art_sys_183: -3.24435622e-07 + art_sys_184: 5.84119625e-08 + art_sys_185: -5.73421303e-09 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -50057,134 +50057,134 @@ bins: art_sys_55: 0.0 art_sys_56: 0.0 art_sys_57: 0.0 - art_sys_58: 0.0 - art_sys_59: 0.0 - art_sys_60: 0.0 - art_sys_61: 0.0 - art_sys_62: 0.0 - art_sys_63: 0.0 - art_sys_64: 0.0 - art_sys_65: -8.36413466e-290 - art_sys_66: -9.98717647e-212 - art_sys_67: -3.39863771e-201 - art_sys_68: -1.09465786e-218 - art_sys_69: -3.52119911e-207 - art_sys_70: -4.87571731e-209 - art_sys_71: 1.61599146e-203 - art_sys_72: 7.58225988e-174 - art_sys_73: -2.99082038e-187 - art_sys_74: 1.61986056e-179 - art_sys_75: 1.71707806e-156 - art_sys_76: -4.42975040e-137 - art_sys_77: -3.85907988e-121 - art_sys_78: -1.11997605e-121 - art_sys_79: 3.54875251e-108 - art_sys_80: 4.67321222e-91 - art_sys_81: 1.94298248e-83 - art_sys_82: 1.26894421e-77 - art_sys_83: 3.58858714e-94 - art_sys_84: -3.27455513e-94 - art_sys_85: -1.63461680e-91 - art_sys_86: -1.80323596e-83 - art_sys_87: 1.38723110e-86 - art_sys_88: -8.04513249e-66 - art_sys_89: -2.81839906e-83 - art_sys_90: -7.16457103e-83 - art_sys_91: -2.29603086e-82 - art_sys_92: -5.15967884e-83 - art_sys_93: -1.13743773e-83 - art_sys_94: -7.72155790e-82 - art_sys_95: 6.14589361e-83 - art_sys_96: -2.36056116e-75 - art_sys_97: -1.68899387e-76 - art_sys_98: 3.60976970e-75 - art_sys_99: 6.18281334e-75 - art_sys_100: 1.83675303e-59 - art_sys_101: 7.48429397e-59 - art_sys_102: 1.42333459e-75 - art_sys_103: 3.69785437e-66 - art_sys_104: -2.47748916e-71 - art_sys_105: 1.67445307e-61 - art_sys_106: -2.35074517e-68 - art_sys_107: 6.54337199e-68 - art_sys_108: 3.19627510e-58 - art_sys_109: 1.87718586e-64 - art_sys_110: -2.27466099e-61 - art_sys_111: 1.02812465e-59 - art_sys_112: 4.11671558e-61 - art_sys_113: -1.28833704e-59 - art_sys_114: -4.26040839e-60 - art_sys_115: 1.81659565e-58 - art_sys_116: 5.12599236e-58 - art_sys_117: 6.92816871e-57 - art_sys_118: 7.64022094e-56 - art_sys_119: -1.70055580e-58 - art_sys_120: -2.58630108e-54 - art_sys_121: 1.51185706e-51 - art_sys_122: 8.60972220e-50 - art_sys_123: -5.09159700e-54 - art_sys_124: 1.83977933e-48 - art_sys_125: 3.19454139e-52 - art_sys_126: 2.05895957e-47 - art_sys_127: -4.28571514e-49 - art_sys_128: -9.67427480e-46 - art_sys_129: 2.62350118e-45 - art_sys_130: 6.86569310e-46 - art_sys_131: 1.75377532e-45 - art_sys_132: 3.73025314e-47 - art_sys_133: 7.02703992e-45 - art_sys_134: -8.89969715e-43 - art_sys_135: -2.73395486e-59 - art_sys_136: -5.02568417e-58 - art_sys_137: -2.45702519e-58 - art_sys_138: 4.82593914e-58 - art_sys_139: 1.45086982e-53 - art_sys_140: 2.32539720e-56 - art_sys_141: 1.04151752e-41 - art_sys_142: 2.20704285e-48 - art_sys_143: 1.35867722e-44 - art_sys_144: -3.08841562e-18 - art_sys_145: 4.96150528e-17 - art_sys_146: -2.23280032e-16 - art_sys_147: -1.55973711e-16 - art_sys_148: 1.35917614e-14 - art_sys_149: -2.44068329e-13 - art_sys_150: -5.70157823e-13 - art_sys_151: -6.85424392e-13 - art_sys_152: 2.50460910e-11 - art_sys_153: -8.64467966e-11 - art_sys_154: -5.77653768e-11 - art_sys_155: -1.07194052e-09 - art_sys_156: 8.16774315e-10 - art_sys_157: -2.41879631e-09 - art_sys_158: 1.35541824e-07 - art_sys_159: 2.16672056e-07 - art_sys_160: 1.00066865e-07 - art_sys_161: 5.60925330e-06 - art_sys_162: 9.49007874e-06 - art_sys_163: -2.58820103e-05 - art_sys_164: -3.96582467e-05 - art_sys_165: 9.93104835e-05 - art_sys_166: 1.20583780e-05 - art_sys_167: -6.08325269e-06 - art_sys_168: -7.43773263e-22 - art_sys_169: 8.30447847e-07 - art_sys_170: 2.04107398e-22 - art_sys_171: 2.12200277e-21 - art_sys_172: 1.78645898e-07 - art_sys_173: -1.46879142e-08 - art_sys_174: -7.35489019e-20 - art_sys_175: 0.0 - art_sys_176: -1.56002024e-21 - art_sys_177: 0.0 - art_sys_178: -9.27247423e-22 - art_sys_179: -6.37564797e-23 - art_sys_180: 7.36448310e-25 - art_sys_181: 4.48228136e-15 - art_sys_182: 0.0 - art_sys_183: -5.90891307e-10 - art_sys_184: 8.71848270e-12 - art_sys_185: -5.31586306e-14 + art_sys_58: 6.72765762e-315 + art_sys_59: -1.42142507e-235 + art_sys_60: -1.56032991e-231 + art_sys_61: 9.25267565e-229 + art_sys_62: -4.57402868e-223 + art_sys_63: -7.07628671e-214 + art_sys_64: 2.17662508e-215 + art_sys_65: -2.35664375e-88 + art_sys_66: -4.40241280e-76 + art_sys_67: 1.62796133e-72 + art_sys_68: 2.14839337e-70 + art_sys_69: 2.80500963e-56 + art_sys_70: -6.15150293e-59 + art_sys_71: 7.05656032e-53 + art_sys_72: 4.64029654e-40 + art_sys_73: -3.08841562e-18 + art_sys_74: -4.96150528e-17 + art_sys_75: 2.23280032e-16 + art_sys_76: 2.13727249e-35 + art_sys_77: 7.23577909e-37 + art_sys_78: -3.06047248e-37 + art_sys_79: -1.55973711e-16 + art_sys_80: 4.70127604e-35 + art_sys_81: 1.35917614e-14 + art_sys_82: 2.44068329e-13 + art_sys_83: 1.24910394e-30 + art_sys_84: 5.70157823e-13 + art_sys_85: 6.85424392e-13 + art_sys_86: 6.82361758e-31 + art_sys_87: 1.11581931e-32 + art_sys_88: -1.95886272e-31 + art_sys_89: -1.81200072e-32 + art_sys_90: 5.33560352e-32 + art_sys_91: 5.22741462e-32 + art_sys_92: -7.58741893e-32 + art_sys_93: -3.49877123e-32 + art_sys_94: -2.27075960e-32 + art_sys_95: 4.93884521e-32 + art_sys_96: 1.62426899e-31 + art_sys_97: -1.00501355e-32 + art_sys_98: 5.29524933e-32 + art_sys_99: 8.68908587e-34 + art_sys_100: 3.08652337e-33 + art_sys_101: -1.27635970e-32 + art_sys_102: -3.40876251e-33 + art_sys_103: 9.31547128e-33 + art_sys_104: -5.35386832e-33 + art_sys_105: -9.51956474e-33 + art_sys_106: 4.17673223e-33 + art_sys_107: 4.41513604e-32 + art_sys_108: -1.64338529e-29 + art_sys_109: 7.86603920e-31 + art_sys_110: 2.64595029e-32 + art_sys_111: 8.23364534e-33 + art_sys_112: 1.58711277e-32 + art_sys_113: 1.73458000e-32 + art_sys_114: -1.02590242e-33 + art_sys_115: -1.12645872e-29 + art_sys_116: 3.14084035e-33 + art_sys_117: 7.95906005e-34 + art_sys_118: 3.79527162e-30 + art_sys_119: 5.06827323e-31 + art_sys_120: 1.59478205e-28 + art_sys_121: -8.98934469e-30 + art_sys_122: 5.73360950e-30 + art_sys_123: 1.77637655e-29 + art_sys_124: 9.71092454e-30 + art_sys_125: -1.06582315e-30 + art_sys_126: 1.94568322e-29 + art_sys_127: -1.81803831e-30 + art_sys_128: 5.46590461e-30 + art_sys_129: 8.07549699e-30 + art_sys_130: 1.67573808e-29 + art_sys_131: -1.01811295e-28 + art_sys_132: -1.31695722e-29 + art_sys_133: 1.71055278e-29 + art_sys_134: -1.36114224e-23 + art_sys_135: 1.96342597e-29 + art_sys_136: -2.35733330e-29 + art_sys_137: 1.37406330e-21 + art_sys_138: 2.38092935e-34 + art_sys_139: -9.25377449e-29 + art_sys_140: -4.23816594e-27 + art_sys_141: 1.75869169e-26 + art_sys_142: 4.11623985e-25 + art_sys_143: -2.28650911e-21 + art_sys_144: 1.03547222e-19 + art_sys_145: 1.05977078e-20 + art_sys_146: -0.0 + art_sys_147: 5.92590808e-21 + art_sys_148: 1.28706882e-23 + art_sys_149: 1.28706882e-23 + art_sys_150: 1.37214697e-24 + art_sys_151: 1.37214697e-24 + art_sys_152: 1.50704710e-23 + art_sys_153: 5.22090918e-22 + art_sys_154: 3.11251850e-22 + art_sys_155: 8.71848270e-12 + art_sys_156: -5.31586306e-14 + art_sys_157: -4.48228136e-15 + art_sys_158: -0.0 + art_sys_159: -5.80086665e-31 + art_sys_160: -6.05137274e-31 + art_sys_161: -4.08817719e-31 + art_sys_162: -1.84181469e-31 + art_sys_163: 1.33873292e-29 + art_sys_164: -1.42641920e-29 + art_sys_165: 1.57857909e-27 + art_sys_166: 2.50460910e-11 + art_sys_167: 8.64467966e-11 + art_sys_168: 5.77653768e-11 + art_sys_169: 1.07194052e-09 + art_sys_170: 8.16774315e-10 + art_sys_171: -2.41879631e-09 + art_sys_172: 1.35541824e-07 + art_sys_173: 2.16672056e-07 + art_sys_174: 1.00066865e-07 + art_sys_175: -5.90891307e-10 + art_sys_176: -5.60925330e-06 + art_sys_177: -9.49007874e-06 + art_sys_178: -2.58820103e-05 + art_sys_179: 3.96582467e-05 + art_sys_180: 9.93104835e-05 + art_sys_181: -1.20583780e-05 + art_sys_182: -6.08325269e-06 + art_sys_183: 8.30447847e-07 + art_sys_184: -1.78645898e-07 + art_sys_185: 1.46879142e-08 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -50348,134 +50348,134 @@ bins: art_sys_55: 0.0 art_sys_56: 0.0 art_sys_57: 0.0 - art_sys_58: 0.0 - art_sys_59: 0.0 - art_sys_60: 0.0 - art_sys_61: 0.0 - art_sys_62: 0.0 - art_sys_63: 0.0 - art_sys_64: 0.0 - art_sys_65: -1.89228423e-291 - art_sys_66: -2.25947871e-213 - art_sys_67: -7.68900957e-203 - art_sys_68: -2.47653192e-220 - art_sys_69: -7.96629001e-209 - art_sys_70: -1.10307247e-210 - art_sys_71: 3.65598656e-205 - art_sys_72: 1.71539522e-175 - art_sys_73: -6.76744625e-189 - art_sys_74: 3.66473994e-181 - art_sys_75: 3.88468285e-158 - art_sys_76: -1.00217782e-138 - art_sys_77: -8.73070466e-123 - art_sys_78: -2.53381129e-123 - art_sys_79: 8.02862627e-110 - art_sys_80: 1.05725813e-92 - art_sys_81: 4.39576446e-85 - art_sys_82: 2.87083384e-79 - art_sys_83: 8.11879883e-96 - art_sys_84: -7.40828724e-96 - art_sys_85: -3.69812587e-93 - art_sys_86: -4.07960476e-85 - art_sys_87: 3.13844372e-88 - art_sys_88: -1.82011459e-67 - art_sys_89: -6.37628906e-85 - art_sys_90: -1.62089813e-84 - art_sys_91: -5.19449401e-84 - art_sys_92: -9.53304927e-85 - art_sys_93: -2.67084106e-85 - art_sys_94: -1.74690973e-83 - art_sys_95: 1.39042967e-84 - art_sys_96: -5.34048606e-77 - art_sys_97: -3.82114575e-78 - art_sys_98: 8.16667033e-77 - art_sys_99: 1.39878725e-76 - art_sys_100: 4.15543308e-61 - art_sys_101: 1.69323161e-60 - art_sys_102: 3.22011116e-77 - art_sys_103: 8.36595131e-68 - art_sys_104: -5.60503476e-73 - art_sys_105: 3.78824893e-63 - art_sys_106: -5.31827856e-70 - art_sys_107: 1.48035928e-69 - art_sys_108: 7.23118846e-60 - art_sys_109: 4.24690751e-66 - art_sys_110: -5.14614725e-63 - art_sys_111: 2.32600852e-61 - art_sys_112: 9.31357448e-63 - art_sys_113: -2.91470779e-61 - art_sys_114: -9.63866220e-62 - art_sys_115: 4.10982945e-60 - art_sys_116: 1.15969420e-59 - art_sys_117: 1.56741495e-58 - art_sys_118: 1.72850821e-57 - art_sys_119: -3.84730323e-60 - art_sys_120: -5.85119553e-56 - art_sys_121: 3.42039500e-53 - art_sys_122: 1.94784623e-51 - art_sys_123: -1.15191266e-55 - art_sys_124: 4.16227974e-50 - art_sys_125: 7.22726617e-54 - art_sys_126: 4.65814870e-49 - art_sys_127: -9.69591569e-51 - art_sys_128: -2.18868846e-47 - art_sys_129: 5.93535629e-47 - art_sys_130: 1.55328059e-47 - art_sys_131: 3.96770599e-47 - art_sys_132: 8.43924964e-49 - art_sys_133: 1.58978337e-46 - art_sys_134: -2.01344957e-44 - art_sys_135: -6.18524446e-61 - art_sys_136: -1.13700067e-59 - art_sys_137: -5.55872435e-60 - art_sys_138: 1.09181076e-59 - art_sys_139: 3.28241869e-55 - art_sys_140: 5.26093184e-58 - art_sys_141: 2.35630828e-43 - art_sys_142: 4.99316933e-50 - art_sys_143: 3.07384401e-46 - art_sys_144: -7.05485994e-20 - art_sys_145: 2.03420626e-18 - art_sys_146: -9.28789434e-18 - art_sys_147: 7.35012951e-19 - art_sys_148: 1.87522118e-15 - art_sys_149: -1.41718951e-14 - art_sys_150: -4.53663004e-14 - art_sys_151: -6.69936006e-14 - art_sys_152: -2.05112942e-12 - art_sys_153: 4.40390859e-12 - art_sys_154: 9.52340230e-12 - art_sys_155: 4.44785513e-10 - art_sys_156: 3.09873485e-10 - art_sys_157: 3.51394825e-09 - art_sys_158: -8.49803566e-09 - art_sys_159: 1.01265580e-07 - art_sys_160: -1.31578849e-07 - art_sys_161: 3.38681443e-07 - art_sys_162: -3.33993778e-06 - art_sys_163: -4.87642831e-06 - art_sys_164: 1.75284873e-05 - art_sys_165: 2.40093284e-05 - art_sys_166: -6.66461828e-05 - art_sys_167: 6.44617854e-06 - art_sys_168: 1.43644286e-21 - art_sys_169: -3.20841382e-06 - art_sys_170: -1.24501545e-21 - art_sys_171: -5.59715172e-22 - art_sys_172: -4.54733327e-07 - art_sys_173: 6.69527873e-08 - art_sys_174: 5.17119596e-20 - art_sys_175: 0.0 - art_sys_176: 1.78505223e-21 - art_sys_177: 0.0 - art_sys_178: 9.16955223e-22 - art_sys_179: -5.27347785e-23 - art_sys_180: -8.28894697e-25 - art_sys_181: -1.32439370e-14 - art_sys_182: 0.0 - art_sys_183: 1.78384146e-09 - art_sys_184: -8.99477014e-12 - art_sys_185: 1.38154194e-13 + art_sys_58: 1.53650404e-316 + art_sys_59: -3.24695766e-237 + art_sys_60: -3.56425763e-233 + art_sys_61: 2.11358634e-230 + art_sys_62: -1.04484421e-224 + art_sys_63: -1.61643437e-215 + art_sys_64: 4.97205911e-217 + art_sys_65: -5.38327531e-90 + art_sys_66: -1.00564203e-77 + art_sys_67: 3.71874792e-74 + art_sys_68: 4.90756951e-72 + art_sys_69: 6.40747636e-58 + art_sys_70: -1.40518625e-60 + art_sys_71: 1.61192828e-54 + art_sys_72: 1.05998176e-41 + art_sys_73: -7.05485994e-20 + art_sys_74: -2.03420626e-18 + art_sys_75: 9.28789434e-18 + art_sys_76: 8.86847123e-37 + art_sys_77: 3.00833215e-38 + art_sys_78: -1.25704186e-38 + art_sys_79: 7.35012951e-19 + art_sys_80: 2.65909542e-37 + art_sys_81: 1.87522118e-15 + art_sys_82: 1.41718951e-14 + art_sys_83: 6.33080141e-32 + art_sys_84: 4.53663004e-14 + art_sys_85: 6.69936006e-14 + art_sys_86: 6.36016554e-32 + art_sys_87: 2.03975300e-33 + art_sys_88: -1.79839422e-32 + art_sys_89: -5.51162200e-34 + art_sys_90: 5.67881725e-33 + art_sys_91: 4.52306758e-33 + art_sys_92: -7.37854549e-33 + art_sys_93: -3.83561184e-33 + art_sys_94: -2.21352153e-33 + art_sys_95: 4.38725759e-33 + art_sys_96: 1.52316348e-32 + art_sys_97: -9.22838561e-34 + art_sys_98: 5.09255497e-33 + art_sys_99: 2.01281633e-34 + art_sys_100: 2.66895225e-34 + art_sys_101: -8.75633912e-34 + art_sys_102: -2.51038981e-34 + art_sys_103: 8.71722971e-34 + art_sys_104: -6.00112104e-34 + art_sys_105: -7.23920372e-34 + art_sys_106: 4.05644825e-34 + art_sys_107: 3.82006464e-33 + art_sys_108: 1.70050768e-29 + art_sys_109: -7.09037300e-31 + art_sys_110: 2.44268976e-33 + art_sys_111: 7.84288924e-34 + art_sys_112: 1.40148027e-33 + art_sys_113: 1.08415214e-32 + art_sys_114: -5.52878586e-35 + art_sys_115: 1.16599010e-29 + art_sys_116: -1.51430335e-34 + art_sys_117: -9.91663298e-35 + art_sys_118: -4.02800601e-30 + art_sys_119: -5.25462779e-31 + art_sys_120: -1.64986761e-28 + art_sys_121: 8.90629038e-30 + art_sys_122: -5.93117509e-30 + art_sys_123: -1.83765881e-29 + art_sys_124: -1.01772279e-29 + art_sys_125: 1.03875656e-30 + art_sys_126: -2.24153657e-29 + art_sys_127: 2.08829870e-30 + art_sys_128: -5.69830667e-30 + art_sys_129: -8.40419045e-30 + art_sys_130: -2.13662115e-29 + art_sys_131: 1.03277847e-28 + art_sys_132: 1.32395369e-29 + art_sys_133: -1.66492675e-29 + art_sys_134: 1.33680278e-24 + art_sys_135: -2.19479526e-29 + art_sys_136: 2.75700003e-29 + art_sys_137: 2.47124889e-22 + art_sys_138: 2.50805104e-35 + art_sys_139: 7.38882325e-29 + art_sys_140: 7.80916415e-28 + art_sys_141: -3.67759770e-28 + art_sys_142: -2.03985930e-26 + art_sys_143: 1.03679646e-21 + art_sys_144: -6.45451468e-20 + art_sys_145: -7.73416808e-21 + art_sys_146: -0.0 + art_sys_147: -4.55249641e-21 + art_sys_148: 9.16713720e-24 + art_sys_149: 9.16713720e-24 + art_sys_150: -3.18303638e-25 + art_sys_151: -3.18303638e-25 + art_sys_152: 6.10809561e-24 + art_sys_153: -2.41888742e-22 + art_sys_154: -1.30827988e-22 + art_sys_155: -8.99477014e-12 + art_sys_156: 1.38154194e-13 + art_sys_157: 1.32439370e-14 + art_sys_158: 0.0 + art_sys_159: 5.29541548e-31 + art_sys_160: 4.88073170e-31 + art_sys_161: 4.07081553e-31 + art_sys_162: 1.83529749e-31 + art_sys_163: -1.34739418e-29 + art_sys_164: 1.76128066e-29 + art_sys_165: -2.29468972e-26 + art_sys_166: -2.05112942e-12 + art_sys_167: -4.40390859e-12 + art_sys_168: -9.52340230e-12 + art_sys_169: -4.44785513e-10 + art_sys_170: 3.09873485e-10 + art_sys_171: 3.51394825e-09 + art_sys_172: -8.49803566e-09 + art_sys_173: 1.01265580e-07 + art_sys_174: -1.31578849e-07 + art_sys_175: 1.78384146e-09 + art_sys_176: -3.38681443e-07 + art_sys_177: 3.33993778e-06 + art_sys_178: -4.87642831e-06 + art_sys_179: -1.75284873e-05 + art_sys_180: 2.40093284e-05 + art_sys_181: 6.66461828e-05 + art_sys_182: 6.44617854e-06 + art_sys_183: -3.20841382e-06 + art_sys_184: 4.54733327e-07 + art_sys_185: -6.69527873e-08 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -50639,134 +50639,134 @@ bins: art_sys_55: 0.0 art_sys_56: 0.0 art_sys_57: 0.0 - art_sys_58: 0.0 - art_sys_59: 0.0 - art_sys_60: 0.0 - art_sys_61: 0.0 - art_sys_62: 0.0 - art_sys_63: 0.0 - art_sys_64: 0.0 - art_sys_65: -1.55793440e-293 - art_sys_66: -1.86025589e-215 - art_sys_67: -6.33045369e-205 - art_sys_68: -2.03895840e-222 - art_sys_69: -6.55874200e-211 - art_sys_70: -9.08172782e-213 - art_sys_71: 3.01001753e-207 - art_sys_72: 1.41230543e-177 - art_sys_73: -5.57164949e-191 - art_sys_74: 3.01722430e-183 - art_sys_75: 3.19830593e-160 - art_sys_76: -8.25105003e-141 - art_sys_77: -7.18809374e-125 - art_sys_78: -2.08611719e-125 - art_sys_79: 6.61006419e-112 - art_sys_80: 8.70453282e-95 - art_sys_81: 3.61908554e-87 - art_sys_82: 2.36359190e-81 - art_sys_83: 6.68429049e-98 - art_sys_84: -6.09933201e-98 - art_sys_85: -3.04471052e-95 - art_sys_86: -3.35878747e-87 - art_sys_87: 2.58391831e-90 - art_sys_88: -1.49852214e-69 - art_sys_89: -5.24966578e-87 - art_sys_90: -1.33450485e-86 - art_sys_91: -4.27668915e-86 - art_sys_92: -5.68218704e-87 - art_sys_93: -2.13743835e-87 - art_sys_94: -1.43825169e-85 - art_sys_95: 1.14475110e-86 - art_sys_96: -4.39688615e-79 - art_sys_97: -3.14599507e-80 - art_sys_98: 6.72371752e-79 - art_sys_99: 1.15163830e-78 - art_sys_100: 3.42121784e-63 - art_sys_101: 1.39405787e-62 - art_sys_102: 2.65117337e-79 - art_sys_103: 6.88778794e-70 - art_sys_104: -4.61469763e-75 - art_sys_105: 3.11891072e-65 - art_sys_106: -4.37860245e-72 - art_sys_107: 1.21879756e-71 - art_sys_108: 5.95352409e-62 - art_sys_109: 3.49652983e-68 - art_sys_110: -4.23688468e-65 - art_sys_111: 1.91503068e-63 - art_sys_112: 7.66797744e-65 - art_sys_113: -2.39971384e-63 - art_sys_114: -7.93562606e-64 - art_sys_115: 3.38367182e-62 - art_sys_116: 9.54790125e-62 - art_sys_117: 1.29047150e-60 - art_sys_118: 1.42310152e-59 - art_sys_119: -3.16753083e-62 - art_sys_120: -4.81735937e-58 - art_sys_121: 2.81605218e-55 - art_sys_122: 1.60368513e-53 - art_sys_123: -9.48383492e-58 - art_sys_124: 3.42685478e-52 - art_sys_125: 5.95029482e-56 - art_sys_126: 3.83510963e-51 - art_sys_127: -7.98276354e-53 - art_sys_128: -1.80197343e-49 - art_sys_129: 4.88664994e-49 - art_sys_130: 1.27883452e-49 - art_sys_131: 3.26665988e-49 - art_sys_132: 6.94813532e-51 - art_sys_133: 1.30888769e-48 - art_sys_134: -1.65769715e-46 - art_sys_135: -5.09238586e-63 - art_sys_136: -9.36106277e-62 - art_sys_137: -4.57656435e-62 - art_sys_138: 8.98900879e-62 - art_sys_139: 2.70245463e-57 - art_sys_140: 4.33138821e-60 - art_sys_141: 1.93997684e-45 - art_sys_142: 4.11093613e-52 - art_sys_143: 2.53073259e-48 - art_sys_144: -6.32697332e-22 - art_sys_145: 8.66572271e-20 - art_sys_146: -4.24065718e-19 - art_sys_147: -2.51834783e-19 - art_sys_148: 1.05031275e-16 - art_sys_149: -5.30665500e-16 - art_sys_150: -2.10518437e-15 - art_sys_151: -3.15751051e-15 - art_sys_152: -2.37541087e-13 - art_sys_153: 1.37609316e-12 - art_sys_154: 1.00532884e-13 - art_sys_155: 5.40817654e-11 - art_sys_156: -1.71803021e-11 - art_sys_157: 3.41049313e-10 - art_sys_158: -1.82750865e-09 - art_sys_159: 7.82362843e-09 - art_sys_160: -1.19128919e-08 - art_sys_161: -2.38318048e-07 - art_sys_162: -3.86162265e-07 - art_sys_163: 1.85374723e-06 - art_sys_164: 2.15308341e-06 - art_sys_165: -1.11809832e-05 - art_sys_166: -1.31646391e-05 - art_sys_167: -4.32352603e-05 - art_sys_168: -1.49695839e-21 - art_sys_169: 3.53972035e-06 - art_sys_170: 2.80684022e-21 - art_sys_171: 8.26647577e-22 - art_sys_172: 1.92044125e-06 - art_sys_173: -8.08989780e-08 - art_sys_174: -3.45546037e-20 - art_sys_175: 0.0 - art_sys_176: -1.18812961e-21 - art_sys_177: 0.0 - art_sys_178: -8.14701672e-22 - art_sys_179: -1.15240760e-23 - art_sys_180: 5.91552934e-25 - art_sys_181: 5.17306702e-14 - art_sys_182: 0.0 - art_sys_183: -5.46893852e-09 - art_sys_184: 2.70906361e-11 - art_sys_185: -7.40067797e-13 + art_sys_58: 1.37574555e-318 + art_sys_59: -2.91195208e-239 + art_sys_60: -3.19651455e-235 + art_sys_61: 1.89551659e-232 + art_sys_62: -9.37042169e-227 + art_sys_63: -1.44965839e-217 + art_sys_64: 4.45906579e-219 + art_sys_65: -4.82785478e-92 + art_sys_66: -9.01884711e-80 + art_sys_67: 3.33506534e-76 + art_sys_68: 4.40123001e-74 + art_sys_69: 5.74638367e-60 + art_sys_70: -1.26020587e-62 + art_sys_71: 1.44561725e-56 + art_sys_72: 9.50617921e-44 + art_sys_73: -6.32697332e-22 + art_sys_74: -8.66572271e-20 + art_sys_75: 4.24065718e-19 + art_sys_76: 4.02060126e-38 + art_sys_77: 1.36952902e-39 + art_sys_78: -5.38271105e-40 + art_sys_79: -2.51834783e-19 + art_sys_80: 7.86749833e-38 + art_sys_81: 1.05031275e-16 + art_sys_82: 5.30665500e-16 + art_sys_83: 4.20211771e-33 + art_sys_84: 2.10518437e-15 + art_sys_85: 3.15751051e-15 + art_sys_86: 2.93602391e-33 + art_sys_87: 1.05538107e-34 + art_sys_88: -8.40831947e-34 + art_sys_89: -3.04802627e-35 + art_sys_90: 2.70961751e-34 + art_sys_91: 2.11486302e-34 + art_sys_92: -3.45905084e-34 + art_sys_93: -1.84514958e-34 + art_sys_94: -1.04443540e-34 + art_sys_95: 2.10824121e-34 + art_sys_96: 7.04930124e-34 + art_sys_97: -4.34564276e-35 + art_sys_98: 2.39765103e-34 + art_sys_99: 1.14707367e-35 + art_sys_100: 1.29966996e-35 + art_sys_101: -3.90124247e-35 + art_sys_102: -1.16800508e-35 + art_sys_103: 4.05342462e-35 + art_sys_104: -2.81261211e-35 + art_sys_105: -3.28030924e-35 + art_sys_106: 1.93266058e-35 + art_sys_107: 1.39015802e-34 + art_sys_108: -5.07857939e-29 + art_sys_109: 1.99246392e-30 + art_sys_110: 1.10692607e-34 + art_sys_111: 3.67402231e-35 + art_sys_112: 4.86422938e-35 + art_sys_113: -2.07503741e-32 + art_sys_114: -1.86213455e-36 + art_sys_115: -3.48209223e-29 + art_sys_116: 1.17408273e-33 + art_sys_117: 4.93315949e-34 + art_sys_118: 1.26757596e-29 + art_sys_119: 1.56904244e-30 + art_sys_120: 4.92735348e-28 + art_sys_121: -2.37939853e-29 + art_sys_122: 1.77135695e-29 + art_sys_123: 5.47549595e-29 + art_sys_124: 3.15595539e-29 + art_sys_125: -3.15412662e-30 + art_sys_126: 7.28936291e-29 + art_sys_127: -6.80456241e-30 + art_sys_128: 1.67251567e-29 + art_sys_129: 2.51047525e-29 + art_sys_130: 7.85912110e-29 + art_sys_131: -3.03770775e-28 + art_sys_132: -3.89700623e-29 + art_sys_133: 4.76761111e-29 + art_sys_134: 1.33050446e-24 + art_sys_135: 6.91614217e-29 + art_sys_136: -8.77593043e-29 + art_sys_137: -1.03611150e-22 + art_sys_138: 1.48762193e-36 + art_sys_139: -2.11849001e-28 + art_sys_140: -1.31366966e-27 + art_sys_141: 4.97691494e-28 + art_sys_142: 3.24183749e-27 + art_sys_143: -1.00092938e-21 + art_sys_144: 4.70603133e-20 + art_sys_145: 9.84125481e-21 + art_sys_146: 0.0 + art_sys_147: 6.07294301e-21 + art_sys_148: -1.66310786e-23 + art_sys_149: -1.66310786e-23 + art_sys_150: -1.67703362e-24 + art_sys_151: -1.67703362e-24 + art_sys_152: -2.17013322e-23 + art_sys_153: 1.24560085e-21 + art_sys_154: -2.27261393e-22 + art_sys_155: 2.70906361e-11 + art_sys_156: -7.40067797e-13 + art_sys_157: -5.17306702e-14 + art_sys_158: -0.0 + art_sys_159: -1.71896739e-30 + art_sys_160: -1.23857301e-30 + art_sys_161: -1.06413021e-30 + art_sys_162: -5.19296630e-31 + art_sys_163: 3.99730872e-29 + art_sys_164: -4.71846323e-29 + art_sys_165: 7.13898064e-26 + art_sys_166: -2.37541087e-13 + art_sys_167: -1.37609316e-12 + art_sys_168: -1.00532884e-13 + art_sys_169: -5.40817654e-11 + art_sys_170: -1.71803021e-11 + art_sys_171: 3.41049313e-10 + art_sys_172: -1.82750865e-09 + art_sys_173: 7.82362843e-09 + art_sys_174: -1.19128919e-08 + art_sys_175: -5.46893852e-09 + art_sys_176: 2.38318048e-07 + art_sys_177: 3.86162265e-07 + art_sys_178: 1.85374723e-06 + art_sys_179: -2.15308341e-06 + art_sys_180: -1.11809832e-05 + art_sys_181: 1.31646391e-05 + art_sys_182: -4.32352603e-05 + art_sys_183: 3.53972035e-06 + art_sys_184: -1.92044125e-06 + art_sys_185: 8.08989780e-08 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -50930,134 +50930,134 @@ bins: art_sys_55: 0.0 art_sys_56: 0.0 art_sys_57: 0.0 - art_sys_58: 0.0 - art_sys_59: 0.0 - art_sys_60: 0.0 - art_sys_61: 0.0 - art_sys_62: 0.0 - art_sys_63: 0.0 - art_sys_64: 0.0 - art_sys_65: 1.40188582e-294 - art_sys_66: 1.67391479e-216 - art_sys_67: 5.69633466e-206 - art_sys_68: 1.83471675e-223 - art_sys_69: 5.90175542e-212 - art_sys_70: 8.17201475e-214 - art_sys_71: -2.70850527e-208 - art_sys_72: -1.27083536e-178 - art_sys_73: 5.01383634e-192 - art_sys_74: -2.71499014e-184 - art_sys_75: -2.87793290e-161 - art_sys_76: 7.42454562e-142 - art_sys_77: 6.46806524e-126 - art_sys_78: 1.87715166e-126 - art_sys_79: -5.94793669e-113 - art_sys_80: -7.83260323e-96 - art_sys_81: -3.25656318e-88 - art_sys_82: -2.12683183e-82 - art_sys_83: -6.01478562e-99 - art_sys_84: 5.48836509e-99 - art_sys_85: 2.73972500e-96 - art_sys_86: 3.02233906e-88 - art_sys_87: -2.32508824e-91 - art_sys_88: 1.34841578e-70 - art_sys_89: 4.72384392e-88 - art_sys_90: 1.20082803e-87 - art_sys_91: 3.84829490e-87 - art_sys_92: 1.27518080e-87 - art_sys_93: 1.88772571e-88 - art_sys_94: 1.29418259e-86 - art_sys_95: -1.03010302e-87 - art_sys_96: 3.95645181e-80 - art_sys_97: 2.83086200e-81 - art_sys_98: -6.05020540e-80 - art_sys_99: -1.03627915e-79 - art_sys_100: -3.07851581e-64 - art_sys_101: -1.25441564e-63 - art_sys_102: -2.38558831e-80 - art_sys_103: -6.19784095e-71 - art_sys_104: 4.15243294e-76 - art_sys_105: -2.80649068e-66 - art_sys_106: 3.93999958e-73 - art_sys_107: -1.09671109e-72 - art_sys_108: -5.35716194e-63 - art_sys_109: -3.14628382e-69 - art_sys_110: 3.81247763e-66 - art_sys_111: -1.72320282e-64 - art_sys_112: -6.89987919e-66 - art_sys_113: 2.15933546e-64 - art_sys_114: 7.14071755e-65 - art_sys_115: -3.04473076e-63 - art_sys_116: -8.59149177e-63 - art_sys_117: -1.16120549e-61 - art_sys_118: -1.28055000e-60 - art_sys_119: 2.85024054e-63 - art_sys_120: 4.33480640e-59 - art_sys_121: -2.53396935e-56 - art_sys_122: -1.44304463e-54 - art_sys_123: 8.53384294e-59 - art_sys_124: -3.08358809e-53 - art_sys_125: -5.35425615e-57 - art_sys_126: -3.45094822e-52 - art_sys_127: 7.18313329e-54 - art_sys_128: 1.62147047e-50 - art_sys_129: -4.39715615e-50 - art_sys_130: -1.15073417e-50 - art_sys_131: -2.93943985e-50 - art_sys_132: -6.25214337e-52 - art_sys_133: -1.17777693e-49 - art_sys_134: 1.49164629e-47 - art_sys_135: 4.58228359e-64 - art_sys_136: 8.42336882e-63 - art_sys_137: 4.11813171e-63 - art_sys_138: -8.08858335e-63 - art_sys_139: -2.43175082e-58 - art_sys_140: -3.89751477e-61 - art_sys_141: -1.74565013e-46 - art_sys_142: -3.69914529e-53 - art_sys_143: -2.27723012e-49 - art_sys_144: 4.89017701e-23 - art_sys_145: 3.02785462e-21 - art_sys_146: -1.60304190e-20 - art_sys_147: -2.48508140e-20 - art_sys_148: 3.43402357e-18 - art_sys_149: -1.47218484e-17 - art_sys_150: -6.30703000e-17 - art_sys_151: -7.99229009e-17 - art_sys_152: -9.64950578e-15 - art_sys_153: 1.00314439e-13 - art_sys_154: -4.64327510e-14 - art_sys_155: 2.57706171e-12 - art_sys_156: -2.08729600e-12 - art_sys_157: 1.37012707e-11 - art_sys_158: -2.29484171e-11 - art_sys_159: 1.80653894e-10 - art_sys_160: 3.26091276e-10 - art_sys_161: -8.68384866e-09 - art_sys_162: 1.32393082e-07 - art_sys_163: 1.57306862e-07 - art_sys_164: -1.07286325e-06 - art_sys_165: -1.04739491e-06 - art_sys_166: 6.64654779e-06 - art_sys_167: -7.23908953e-06 - art_sys_168: -4.45295055e-22 - art_sys_169: -2.69989030e-05 - art_sys_170: 2.17555880e-21 - art_sys_171: 1.57091535e-22 - art_sys_172: -2.13951448e-06 - art_sys_173: 7.13668928e-07 - art_sys_174: 2.47515927e-20 - art_sys_175: 0.0 - art_sys_176: -9.50792843e-22 - art_sys_177: 0.0 - art_sys_178: 8.51926668e-22 - art_sys_179: -1.92806267e-23 - art_sys_180: -7.77705254e-25 - art_sys_181: -1.55456698e-13 - art_sys_182: 0.0 - art_sys_183: 2.35600052e-08 - art_sys_184: -5.79181783e-10 - art_sys_185: 6.73456121e-13 + art_sys_58: -1.06644070e-319 + art_sys_59: 2.25067516e-240 + art_sys_60: 2.47061617e-236 + art_sys_61: -1.46506261e-233 + art_sys_62: 7.24248709e-228 + art_sys_63: 1.12045461e-218 + art_sys_64: -3.44645390e-220 + art_sys_65: 3.73149423e-93 + art_sys_66: 6.97075151e-81 + art_sys_67: -2.57770328e-77 + art_sys_68: -3.40175195e-75 + art_sys_69: -4.44143383e-61 + art_sys_70: 9.74024933e-64 + art_sys_71: -1.11733113e-57 + art_sys_72: -7.34741506e-45 + art_sys_73: 4.89017701e-23 + art_sys_74: -3.02785462e-21 + art_sys_75: 1.60304190e-20 + art_sys_76: 1.50903656e-39 + art_sys_77: 5.16096480e-41 + art_sys_78: -1.89052986e-41 + art_sys_79: -2.48508140e-20 + art_sys_80: 6.55128580e-39 + art_sys_81: 3.43402357e-18 + art_sys_82: 1.47218484e-17 + art_sys_83: 1.69295747e-34 + art_sys_84: 6.30703000e-17 + art_sys_85: 7.99229009e-17 + art_sys_86: 7.25797120e-35 + art_sys_87: 2.25484150e-36 + art_sys_88: -2.20820877e-35 + art_sys_89: -1.76001929e-36 + art_sys_90: 6.56139530e-36 + art_sys_91: 5.91496149e-36 + art_sys_92: -8.66376686e-36 + art_sys_93: -4.45636669e-36 + art_sys_94: -2.65905027e-36 + art_sys_95: 5.66560567e-36 + art_sys_96: 1.76456224e-35 + art_sys_97: -1.14244671e-36 + art_sys_98: 6.14755719e-36 + art_sys_99: 3.00071998e-37 + art_sys_100: 4.00430701e-37 + art_sys_101: -1.34470280e-36 + art_sys_102: -3.51680151e-37 + art_sys_103: 1.02984136e-36 + art_sys_104: -6.11173478e-37 + art_sys_105: -9.76557564e-37 + art_sys_106: 5.08683253e-37 + art_sys_107: 8.28269961e-34 + art_sys_108: 1.09461294e-27 + art_sys_109: -5.06706896e-29 + art_sys_110: 3.01019228e-36 + art_sys_111: 9.38039459e-37 + art_sys_112: 3.40514367e-34 + art_sys_113: 7.15264461e-31 + art_sys_114: -8.54506665e-37 + art_sys_115: 7.50520484e-28 + art_sys_116: -2.50134839e-32 + art_sys_117: -1.05591970e-32 + art_sys_118: -2.48069580e-28 + art_sys_119: -3.38196258e-29 + art_sys_120: -1.06206179e-26 + art_sys_121: 6.20937099e-28 + art_sys_122: -3.81812285e-28 + art_sys_123: -1.18393983e-27 + art_sys_124: -6.37524810e-28 + art_sys_125: 7.10829441e-29 + art_sys_126: -1.23868657e-27 + art_sys_127: 1.15660757e-28 + art_sys_128: -3.65796562e-28 + art_sys_129: -5.37558289e-28 + art_sys_130: -9.84819965e-28 + art_sys_131: 6.82696998e-27 + art_sys_132: 8.83646381e-28 + art_sys_133: -1.15110243e-27 + art_sys_134: -4.05238778e-25 + art_sys_135: -1.27138992e-27 + art_sys_136: 1.60722202e-27 + art_sys_137: -4.95157626e-23 + art_sys_138: -6.34736755e-36 + art_sys_139: 4.56997755e-27 + art_sys_140: 1.07225271e-26 + art_sys_141: -5.04007473e-27 + art_sys_142: -1.57990923e-25 + art_sys_143: 1.29233773e-21 + art_sys_144: -3.31560406e-20 + art_sys_145: -1.32806539e-20 + art_sys_146: -0.0 + art_sys_147: -4.62561001e-21 + art_sys_148: 9.76824319e-24 + art_sys_149: 9.76824319e-24 + art_sys_150: 1.27117801e-24 + art_sys_151: 1.27117801e-24 + art_sys_152: 3.23732252e-23 + art_sys_153: -3.52240709e-22 + art_sys_154: 2.93693807e-23 + art_sys_155: -5.79181783e-10 + art_sys_156: 6.73456121e-13 + art_sys_157: 1.55456698e-13 + art_sys_158: 0.0 + art_sys_159: 3.70033198e-29 + art_sys_160: 4.35039238e-29 + art_sys_161: 2.99358443e-29 + art_sys_162: 1.21966856e-29 + art_sys_163: -9.16763120e-28 + art_sys_164: 1.02419060e-28 + art_sys_165: -2.99996197e-25 + art_sys_166: -9.64950578e-15 + art_sys_167: -1.00314439e-13 + art_sys_168: 4.64327510e-14 + art_sys_169: -2.57706171e-12 + art_sys_170: -2.08729600e-12 + art_sys_171: 1.37012707e-11 + art_sys_172: -2.29484171e-11 + art_sys_173: 1.80653894e-10 + art_sys_174: 3.26091276e-10 + art_sys_175: 2.35600052e-08 + art_sys_176: 8.68384866e-09 + art_sys_177: -1.32393082e-07 + art_sys_178: 1.57306862e-07 + art_sys_179: 1.07286325e-06 + art_sys_180: -1.04739491e-06 + art_sys_181: -6.64654779e-06 + art_sys_182: -7.23908953e-06 + art_sys_183: -2.69989030e-05 + art_sys_184: 2.13951448e-06 + art_sys_185: -7.13668928e-07 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -51221,134 +51221,134 @@ bins: art_sys_55: 0.0 art_sys_56: 0.0 art_sys_57: 0.0 - art_sys_58: 0.0 - art_sys_59: 0.0 - art_sys_60: 0.0 - art_sys_61: 0.0 - art_sys_62: 0.0 - art_sys_63: 0.0 - art_sys_64: 0.0 - art_sys_65: 8.16697858e-296 - art_sys_66: 9.75175028e-218 - art_sys_67: 3.31852214e-207 - art_sys_68: 1.06885366e-224 - art_sys_69: 3.43819442e-213 - art_sys_70: 4.76078277e-215 - art_sys_71: -1.57789794e-209 - art_sys_72: -7.40352442e-180 - art_sys_73: 2.92090543e-193 - art_sys_74: -1.58167584e-185 - art_sys_75: -1.67660164e-162 - art_sys_76: 4.32532857e-143 - art_sys_77: 3.76811038e-127 - art_sys_78: 1.09357503e-127 - art_sys_79: -3.46509831e-114 - art_sys_80: -4.56305130e-97 - art_sys_81: -1.89718085e-89 - art_sys_82: -1.23903158e-83 - art_sys_83: -3.50402441e-100 - art_sys_84: 3.19736470e-100 - art_sys_85: 1.59608481e-97 - art_sys_86: 1.76072856e-89 - art_sys_87: -1.35453011e-92 - art_sys_88: 7.85548581e-72 - art_sys_89: 2.75198373e-89 - art_sys_90: 6.99568169e-89 - art_sys_91: 2.24190687e-88 - art_sys_92: 9.27675360e-89 - art_sys_93: 1.10081916e-89 - art_sys_94: 7.53953880e-88 - art_sys_95: -6.00113619e-89 - art_sys_96: 2.30491601e-81 - art_sys_97: 1.64917948e-82 - art_sys_98: -3.52467715e-81 - art_sys_99: -6.03706682e-81 - art_sys_100: -1.79345553e-65 - art_sys_101: -7.30786785e-65 - art_sys_102: -1.38977638e-81 - art_sys_103: -3.61068541e-72 - art_sys_104: 2.41908811e-77 - art_sys_105: -1.63498144e-67 - art_sys_106: 2.29533141e-74 - art_sys_107: -6.38912597e-74 - art_sys_108: -3.12092979e-64 - art_sys_109: -1.83293524e-70 - art_sys_110: 2.22104075e-67 - art_sys_111: -1.00388883e-65 - art_sys_112: -4.01967287e-67 - art_sys_113: 1.25796727e-65 - art_sys_114: 4.15997843e-66 - art_sys_115: -1.77377332e-64 - art_sys_116: -5.00515812e-64 - art_sys_117: -6.76485205e-63 - art_sys_118: -7.46011918e-62 - art_sys_119: 1.66046886e-64 - art_sys_120: 2.52533460e-60 - art_sys_121: -1.47621829e-57 - art_sys_122: -8.40676654e-56 - art_sys_123: 4.97157356e-60 - art_sys_124: -1.79641050e-54 - art_sys_125: -3.11923696e-58 - art_sys_126: -2.01042403e-53 - art_sys_127: 4.18468863e-55 - art_sys_128: 9.44622459e-52 - art_sys_129: -2.56165779e-51 - art_sys_130: -6.70384917e-52 - art_sys_131: -1.71243384e-51 - art_sys_132: -3.64232045e-53 - art_sys_133: -6.86139258e-51 - art_sys_134: 8.68990594e-49 - art_sys_135: 2.66950776e-65 - art_sys_136: 4.90721449e-64 - art_sys_137: 2.39910611e-64 - art_sys_138: -4.71217802e-64 - art_sys_139: -1.41666869e-59 - art_sys_140: -2.27058097e-62 - art_sys_141: -1.01696599e-47 - art_sys_142: -2.15501657e-54 - art_sys_143: -1.32664933e-50 - art_sys_144: 2.92374146e-24 - art_sys_145: 7.54411463e-23 - art_sys_146: -4.16499482e-22 - art_sys_147: -7.93468082e-22 - art_sys_148: 9.89137205e-20 - art_sys_149: -4.58101166e-19 - art_sys_150: -1.85322941e-18 - art_sys_151: -2.02118847e-18 - art_sys_152: -2.64778072e-16 - art_sys_153: 3.63316941e-15 - art_sys_154: -1.57564314e-15 - art_sys_155: 7.30460612e-14 - art_sys_156: 1.79970662e-13 - art_sys_157: 9.23405513e-13 - art_sys_158: 5.70625184e-12 - art_sys_159: 4.01215947e-11 - art_sys_160: 2.52354381e-12 - art_sys_161: 5.52382147e-09 - art_sys_162: 9.24961649e-09 - art_sys_163: -6.59557343e-08 - art_sys_164: -4.48322037e-08 - art_sys_165: 6.37622798e-07 - art_sys_166: 3.75827757e-07 - art_sys_167: 4.17407605e-06 - art_sys_168: 1.66566089e-22 - art_sys_169: -3.93774882e-06 - art_sys_170: -7.96073028e-23 - art_sys_171: 4.37070533e-22 - art_sys_172: 1.71243259e-05 - art_sys_173: -3.99126220e-07 - art_sys_174: -1.45940465e-20 - art_sys_175: 0.0 - art_sys_176: 2.17068888e-21 - art_sys_177: 0.0 - art_sys_178: -1.28764957e-21 - art_sys_179: 2.47025272e-22 - art_sys_180: 1.70715290e-24 - art_sys_181: 4.79627367e-13 - art_sys_182: 0.0 - art_sys_183: -3.86288487e-08 - art_sys_184: -2.68038031e-09 - art_sys_185: -1.09961207e-11 + art_sys_58: -6.37838749e-321 + art_sys_59: 1.34563477e-241 + art_sys_60: 1.47713321e-237 + art_sys_61: -8.75932352e-235 + art_sys_62: 4.33014174e-229 + art_sys_63: 6.69897952e-220 + art_sys_64: -2.06056756e-221 + art_sys_65: 2.23098762e-94 + art_sys_66: 4.16767637e-82 + art_sys_67: -1.54115851e-78 + art_sys_68: -2.03384114e-76 + art_sys_69: -2.65544666e-62 + art_sys_70: 5.82350510e-65 + art_sys_71: -6.68030488e-59 + art_sys_72: -4.39287616e-46 + art_sys_73: 2.92374146e-24 + art_sys_74: -7.54411463e-23 + art_sys_75: 4.16499482e-22 + art_sys_76: 3.90535908e-41 + art_sys_77: 1.33868615e-42 + art_sys_78: -4.72542527e-43 + art_sys_79: -7.93468082e-22 + art_sys_80: 2.04655953e-40 + art_sys_81: 9.89137205e-20 + art_sys_82: 4.58101166e-19 + art_sys_83: 3.68809290e-36 + art_sys_84: 1.85322941e-18 + art_sys_85: 2.02118847e-18 + art_sys_86: 1.85277850e-36 + art_sys_87: 4.28735087e-38 + art_sys_88: -5.81362036e-37 + art_sys_89: -6.79626486e-38 + art_sys_90: 1.57166402e-37 + art_sys_91: 1.64358770e-37 + art_sys_92: -2.17516246e-37 + art_sys_93: -1.05866360e-37 + art_sys_94: -6.75834321e-38 + art_sys_95: 1.66290135e-37 + art_sys_96: 4.46342576e-37 + art_sys_97: -3.03494027e-38 + art_sys_98: 1.57541297e-37 + art_sys_99: 7.08129960e-39 + art_sys_100: 1.17579956e-38 + art_sys_101: -3.92543429e-38 + art_sys_102: -1.03036998e-38 + art_sys_103: 2.63629995e-38 + art_sys_104: -1.29665809e-38 + art_sys_105: -2.88780837e-38 + art_sys_106: 1.32664231e-38 + art_sys_107: 3.80999600e-33 + art_sys_108: 5.06507793e-27 + art_sys_109: -2.42656111e-28 + art_sys_110: 8.07529403e-38 + art_sys_111: 2.39949743e-38 + art_sys_112: 1.56774787e-33 + art_sys_113: 3.64674728e-30 + art_sys_114: -3.73032845e-36 + art_sys_115: 3.47287401e-27 + art_sys_116: -1.15746433e-31 + art_sys_117: -4.88610748e-32 + art_sys_118: -1.12872027e-27 + art_sys_119: -1.56494174e-28 + art_sys_120: -4.91450782e-26 + art_sys_121: 2.95485622e-27 + art_sys_122: -1.76678072e-27 + art_sys_123: -5.48017468e-27 + art_sys_124: -2.91988652e-27 + art_sys_125: 3.36196669e-28 + art_sys_126: -5.38089814e-27 + art_sys_127: 5.02954625e-28 + art_sys_128: -1.69086939e-27 + art_sys_129: -2.48155165e-27 + art_sys_130: -3.88644840e-27 + art_sys_131: 3.18978108e-26 + art_sys_132: 4.14288892e-27 + art_sys_133: -5.46674173e-27 + art_sys_134: 4.25029342e-25 + art_sys_135: -5.63999685e-27 + art_sys_136: 7.14432783e-27 + art_sys_137: 3.82657434e-23 + art_sys_138: -3.51324519e-35 + art_sys_139: 2.10311531e-26 + art_sys_140: 1.81846894e-26 + art_sys_141: 5.99319866e-26 + art_sys_142: 2.83241515e-25 + art_sys_143: -1.35352491e-21 + art_sys_144: 2.02169595e-20 + art_sys_145: 2.80683796e-20 + art_sys_146: 0.0 + art_sys_147: 2.62662536e-21 + art_sys_148: -3.34250132e-24 + art_sys_149: -3.34250132e-24 + art_sys_150: -1.40752438e-24 + art_sys_151: -1.40752438e-24 + art_sys_152: 8.25462986e-23 + art_sys_153: 3.21918488e-21 + art_sys_154: -2.90168548e-22 + art_sys_155: -2.68038031e-09 + art_sys_156: -1.09961207e-11 + art_sys_157: -4.79627367e-13 + art_sys_158: -0.0 + art_sys_159: 1.76111388e-28 + art_sys_160: 2.22209588e-28 + art_sys_161: 1.45170901e-28 + art_sys_162: 5.70489709e-29 + art_sys_163: -4.30864965e-27 + art_sys_164: -7.85999751e-28 + art_sys_165: 5.30653760e-25 + art_sys_166: -2.64778072e-16 + art_sys_167: -3.63316941e-15 + art_sys_168: 1.57564314e-15 + art_sys_169: -7.30460612e-14 + art_sys_170: 1.79970662e-13 + art_sys_171: 9.23405513e-13 + art_sys_172: 5.70625184e-12 + art_sys_173: 4.01215947e-11 + art_sys_174: 2.52354381e-12 + art_sys_175: -3.86288487e-08 + art_sys_176: -5.52382147e-09 + art_sys_177: -9.24961649e-09 + art_sys_178: -6.59557343e-08 + art_sys_179: 4.48322037e-08 + art_sys_180: 6.37622798e-07 + art_sys_181: -3.75827757e-07 + art_sys_182: 4.17407605e-06 + art_sys_183: -3.93774882e-06 + art_sys_184: -1.71243259e-05 + art_sys_185: 3.99126220e-07 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -51512,134 +51512,134 @@ bins: art_sys_55: 0.0 art_sys_56: 0.0 art_sys_57: 0.0 - art_sys_58: 0.0 - art_sys_59: 0.0 - art_sys_60: 0.0 - art_sys_61: 0.0 - art_sys_62: 0.0 - art_sys_63: 0.0 - art_sys_64: 0.0 - art_sys_65: 5.46577268e-298 - art_sys_66: 6.52638847e-220 - art_sys_67: 2.22093102e-209 - art_sys_68: 7.15333557e-227 - art_sys_69: 2.30102205e-215 - art_sys_70: 3.18616832e-217 - art_sys_71: -1.05601298e-211 - art_sys_72: -4.95483119e-182 - art_sys_73: 1.95486885e-195 - art_sys_74: -1.05854135e-187 - art_sys_75: -1.12207074e-164 - art_sys_76: 2.89473928e-145 - art_sys_77: 2.52181931e-129 - art_sys_78: 7.31878407e-130 - art_sys_79: -2.31902756e-116 - art_sys_80: -3.05383593e-99 - art_sys_81: -1.26969404e-91 - art_sys_82: -8.29225646e-86 - art_sys_83: -2.34507459e-102 - art_sys_84: 2.13984670e-102 - art_sys_85: 1.06818475e-99 - art_sys_86: 1.17837293e-91 - art_sys_87: -9.06523388e-95 - art_sys_88: 5.25730772e-74 - art_sys_89: 1.84179309e-91 - art_sys_90: 4.68188120e-91 - art_sys_91: 1.50040298e-90 - art_sys_92: 5.19174132e-91 - art_sys_93: 7.61084583e-92 - art_sys_94: 5.04585925e-90 - art_sys_95: -4.01625450e-91 - art_sys_96: 1.54257203e-83 - art_sys_97: 1.10371837e-84 - art_sys_98: -2.35890088e-83 - art_sys_99: -4.04032530e-83 - art_sys_100: -1.20027555e-67 - art_sys_101: -4.89081274e-67 - art_sys_102: -9.30113971e-84 - art_sys_103: -2.41646217e-74 - art_sys_104: 1.61898227e-79 - art_sys_105: -1.09421629e-69 - art_sys_106: 1.53615751e-76 - art_sys_107: -4.27594201e-76 - art_sys_108: -2.08869174e-66 - art_sys_109: -1.22669747e-72 - art_sys_110: 1.48643827e-69 - art_sys_111: -6.71855644e-68 - art_sys_112: -2.69017827e-69 - art_sys_113: 8.41898412e-68 - art_sys_114: 2.78407819e-68 - art_sys_115: -1.18710318e-66 - art_sys_116: -3.34971726e-66 - art_sys_117: -4.52739776e-65 - art_sys_118: -4.99270740e-64 - art_sys_119: 1.11127382e-66 - art_sys_120: 1.69008785e-62 - art_sys_121: -9.87963569e-60 - art_sys_122: -5.62625402e-58 - art_sys_123: 3.32724069e-62 - art_sys_124: -1.20225318e-56 - art_sys_125: -2.08755880e-60 - art_sys_126: -1.34548238e-55 - art_sys_127: 2.80061557e-57 - art_sys_128: 6.32191448e-54 - art_sys_129: -1.71439725e-53 - art_sys_130: -4.48657140e-54 - art_sys_131: -1.14605155e-53 - art_sys_132: -2.43763402e-55 - art_sys_133: -4.59200781e-53 - art_sys_134: 5.81574593e-51 - art_sys_135: 1.78657617e-67 - art_sys_136: 3.28416819e-66 - art_sys_137: 1.60560905e-66 - art_sys_138: -3.15363944e-66 - art_sys_139: -9.48109820e-62 - art_sys_140: -1.51959320e-64 - art_sys_141: -6.80607574e-50 - art_sys_142: -1.44225138e-56 - art_sys_143: -8.87864091e-53 - art_sys_144: 1.97923070e-26 - art_sys_145: 2.00675446e-25 - art_sys_146: -9.44407162e-25 - art_sys_147: -5.41726791e-27 - art_sys_148: 9.68698546e-22 - art_sys_149: -3.64914000e-21 - art_sys_150: -1.78298191e-20 - art_sys_151: -2.79539165e-20 - art_sys_152: -3.59894668e-18 - art_sys_153: 1.98110517e-17 - art_sys_154: 2.66556023e-17 - art_sys_155: 1.08676209e-15 - art_sys_156: 7.27394198e-15 - art_sys_157: 2.86222450e-14 - art_sys_158: -1.47317004e-13 - art_sys_159: 1.64744576e-12 - art_sys_160: -3.58264593e-12 - art_sys_161: 4.52216187e-11 - art_sys_162: -7.24569229e-10 - art_sys_163: -1.03191117e-09 - art_sys_164: 8.86499327e-09 - art_sys_165: 9.18635548e-09 - art_sys_166: -9.45891935e-08 - art_sys_167: 2.18032884e-07 - art_sys_168: 1.14133394e-23 - art_sys_169: 1.42432270e-06 - art_sys_170: -9.74164368e-23 - art_sys_171: 8.30777891e-22 - art_sys_172: 8.21763050e-07 - art_sys_173: 9.52758645e-06 - art_sys_174: -1.07549934e-20 - art_sys_175: 0.0 - art_sys_176: -6.45409831e-20 - art_sys_177: 0.0 - art_sys_178: -2.27995739e-20 - art_sys_179: 2.51210968e-21 - art_sys_180: 2.16962400e-23 - art_sys_181: -1.10931055e-11 - art_sys_182: 0.0 - art_sys_183: 1.01850606e-06 - art_sys_184: -5.22228290e-08 - art_sys_185: 5.04784064e-14 + art_sys_58: -4.44659081e-323 + art_sys_59: 9.10929257e-244 + art_sys_60: 9.99947302e-240 + art_sys_61: -5.92963578e-237 + art_sys_62: 2.93129524e-231 + art_sys_63: 4.53488315e-222 + art_sys_64: -1.39490396e-223 + art_sys_65: 1.51027006e-96 + art_sys_66: 2.82131410e-84 + art_sys_67: -1.04328932e-80 + art_sys_68: -1.37681149e-78 + art_sys_69: -1.79760817e-64 + art_sys_70: 3.94222958e-67 + art_sys_71: -4.52224134e-61 + art_sys_72: -2.97376340e-48 + art_sys_73: 1.97923070e-26 + art_sys_74: -2.00675446e-25 + art_sys_75: 9.44407162e-25 + art_sys_76: 8.94412843e-44 + art_sys_77: 3.05546387e-45 + art_sys_78: -1.24711686e-45 + art_sys_79: -5.41726791e-27 + art_sys_80: 4.44837806e-44 + art_sys_81: 9.68698546e-22 + art_sys_82: 3.64914000e-21 + art_sys_83: 4.89841502e-38 + art_sys_84: 1.78298191e-20 + art_sys_85: 2.79539165e-20 + art_sys_86: 2.56261360e-38 + art_sys_87: 1.02383985e-39 + art_sys_88: -7.35241159e-39 + art_sys_89: -1.08993619e-40 + art_sys_90: 2.43882732e-39 + art_sys_91: 1.82797555e-39 + art_sys_92: -3.05436968e-39 + art_sys_93: -1.67239456e-39 + art_sys_94: -9.24505257e-40 + art_sys_95: 1.77799708e-39 + art_sys_96: 6.15973217e-39 + art_sys_97: -3.79483185e-40 + art_sys_98: 2.11652956e-39 + art_sys_99: 1.15219038e-40 + art_sys_100: 1.13879957e-40 + art_sys_101: -3.38722347e-40 + art_sys_102: -9.46396325e-41 + art_sys_103: 3.54870685e-40 + art_sys_104: -2.52742906e-40 + art_sys_105: -2.82192193e-40 + art_sys_106: 1.71209304e-40 + art_sys_107: 7.42815830e-32 + art_sys_108: 9.87548138e-26 + art_sys_109: -4.59877003e-27 + art_sys_110: 9.83728229e-40 + art_sys_111: 2.85999473e-41 + art_sys_112: 3.05657553e-32 + art_sys_113: 6.53232038e-29 + art_sys_114: -7.27010764e-35 + art_sys_115: 6.77111806e-26 + art_sys_116: -2.25672430e-30 + art_sys_117: -9.52650033e-31 + art_sys_118: -2.22837175e-26 + art_sys_119: -3.05117441e-27 + art_sys_120: -9.58182266e-25 + art_sys_121: 5.65247142e-26 + art_sys_122: -3.44467668e-26 + art_sys_123: -1.06833041e-25 + art_sys_124: -5.72946083e-26 + art_sys_125: 6.41499160e-27 + art_sys_126: -1.10526360e-25 + art_sys_127: 1.03185686e-26 + art_sys_128: -3.30432467e-26 + art_sys_129: -4.84890385e-26 + art_sys_130: -8.60670065e-26 + art_sys_131: 6.16895100e-25 + art_sys_132: 7.98670318e-26 + art_sys_133: -1.04255863e-25 + art_sys_134: -1.24939371e-23 + art_sys_135: -1.13933772e-25 + art_sys_136: 1.44102665e-25 + art_sys_137: -2.42858475e-24 + art_sys_138: -6.17123843e-34 + art_sys_139: 4.11288472e-25 + art_sys_140: 7.23118118e-25 + art_sys_141: 1.60973426e-25 + art_sys_142: -6.79872808e-24 + art_sys_143: -3.11856861e-23 + art_sys_144: 1.31545397e-20 + art_sys_145: -4.56642941e-19 + art_sys_146: -0.0 + art_sys_147: -7.46995049e-20 + art_sys_148: 1.30960187e-22 + art_sys_149: 1.30960187e-22 + art_sys_150: 3.14878995e-23 + art_sys_151: 3.14878995e-23 + art_sys_152: 1.94560611e-21 + art_sys_153: 3.69715938e-20 + art_sys_154: 7.28838640e-22 + art_sys_155: -5.22228290e-08 + art_sys_156: 5.04784070e-14 + art_sys_157: 1.10931055e-11 + art_sys_158: 0.0 + art_sys_159: 3.32465855e-27 + art_sys_160: 3.97670489e-27 + art_sys_161: 2.72854817e-27 + art_sys_162: 1.10534096e-27 + art_sys_163: -8.28758249e-26 + art_sys_164: -3.55559528e-28 + art_sys_165: -1.26803899e-23 + art_sys_166: -3.59894668e-18 + art_sys_167: -1.98110517e-17 + art_sys_168: -2.66556023e-17 + art_sys_169: -1.08676209e-15 + art_sys_170: 7.27394198e-15 + art_sys_171: 2.86222450e-14 + art_sys_172: -1.47317004e-13 + art_sys_173: 1.64744576e-12 + art_sys_174: -3.58264593e-12 + art_sys_175: 1.01850606e-06 + art_sys_176: -4.52216187e-11 + art_sys_177: 7.24569229e-10 + art_sys_178: -1.03191117e-09 + art_sys_179: -8.86499327e-09 + art_sys_180: 9.18635548e-09 + art_sys_181: 9.45891935e-08 + art_sys_182: 2.18032884e-07 + art_sys_183: 1.42432270e-06 + art_sys_184: -8.21763050e-07 + art_sys_185: -9.52758645e-06 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -51804,133 +51804,133 @@ bins: art_sys_56: 0.0 art_sys_57: 0.0 art_sys_58: 0.0 - art_sys_59: 0.0 - art_sys_60: 0.0 - art_sys_61: 0.0 - art_sys_62: 0.0 - art_sys_63: 0.0 - art_sys_64: 0.0 - art_sys_65: 4.46870199e-300 - art_sys_66: 5.33584538e-222 - art_sys_67: 1.81578902e-211 - art_sys_68: 5.84842485e-229 - art_sys_69: 1.88126985e-217 - art_sys_70: 2.60494783e-219 - art_sys_71: -8.63375207e-214 - art_sys_72: -4.05097141e-184 - art_sys_73: 1.59824636e-197 - art_sys_74: -8.65442352e-190 - art_sys_75: -9.17382712e-167 - art_sys_76: 2.36668124e-147 - art_sys_77: 2.06178929e-131 - art_sys_78: 5.98369225e-132 - art_sys_79: -1.89599080e-118 - art_sys_80: -2.49675550e-101 - art_sys_81: -1.03807659e-93 - art_sys_82: -6.77958391e-88 - art_sys_83: -1.91728296e-104 - art_sys_84: 1.74949594e-104 - art_sys_85: 8.73326733e-102 - art_sys_86: 9.63414265e-94 - art_sys_87: -7.41155487e-97 - art_sys_88: 4.29827020e-76 - art_sys_89: 1.50579756e-93 - art_sys_90: 3.82781293e-93 - art_sys_91: 1.22669963e-92 - art_sys_92: 3.27196462e-93 - art_sys_93: 6.06159315e-94 - art_sys_94: 4.12539411e-92 - art_sys_95: -3.28357935e-93 - art_sys_96: 1.26117621e-85 - art_sys_97: 9.02378183e-87 - art_sys_98: -1.92859043e-85 - art_sys_99: -3.30328958e-85 - art_sys_100: -9.81321414e-70 - art_sys_101: -3.99863120e-69 - art_sys_102: -7.60444636e-86 - art_sys_103: -1.97565140e-76 - art_sys_104: 1.32364595e-81 - art_sys_105: -8.94609472e-72 - art_sys_106: 1.25593182e-78 - art_sys_107: -3.49592512e-78 - art_sys_108: -1.70767281e-68 - art_sys_109: -1.00292345e-74 - art_sys_110: 1.21528235e-71 - art_sys_111: -5.49295808e-70 - art_sys_112: -2.19943623e-71 - art_sys_113: 6.88319392e-70 - art_sys_114: 2.27620694e-70 - art_sys_115: -9.70551942e-69 - art_sys_116: -2.73866219e-68 - art_sys_117: -3.70151034e-67 - art_sys_118: -4.08193824e-66 - art_sys_119: 9.08555372e-69 - art_sys_120: 1.38178220e-64 - art_sys_121: -8.07739359e-62 - art_sys_122: -4.59991335e-60 - art_sys_123: 2.72028580e-64 - art_sys_124: -9.82938279e-59 - art_sys_125: -1.70674655e-62 - art_sys_126: -1.10003963e-57 - art_sys_127: 2.28972757e-59 - art_sys_128: 5.16867151e-56 - art_sys_129: -1.40165709e-55 - art_sys_130: -3.66813152e-56 - art_sys_131: -9.36988944e-56 - art_sys_132: -1.99296108e-57 - art_sys_133: -3.75433423e-55 - art_sys_134: 4.75483817e-53 - art_sys_135: 1.46066913e-69 - art_sys_136: 2.68507058e-68 - art_sys_137: 1.31271401e-68 - art_sys_138: -2.57835287e-68 - art_sys_139: -7.75155726e-64 - art_sys_140: -1.24238917e-66 - art_sys_141: -5.56451212e-52 - art_sys_142: -1.17915603e-58 - art_sys_143: -7.25900017e-55 - art_sys_144: 1.66344136e-28 - art_sys_145: -4.49631437e-27 - art_sys_146: 3.73005099e-26 - art_sys_147: 1.33083549e-25 - art_sys_148: 2.47820777e-23 - art_sys_149: 3.36093567e-25 - art_sys_150: -2.75708846e-22 - art_sys_151: -5.62284973e-22 - art_sys_152: -1.38697727e-19 - art_sys_153: 8.39974492e-19 - art_sys_154: 5.51475169e-19 - art_sys_155: 5.28782274e-17 - art_sys_156: 1.47385390e-16 - art_sys_157: 1.00315949e-15 - art_sys_158: -2.10502919e-14 - art_sys_159: 1.69054092e-14 - art_sys_160: -1.55574630e-13 - art_sys_161: -1.24646235e-11 - art_sys_162: -2.73659610e-11 - art_sys_163: 1.28921057e-10 - art_sys_164: 2.84172183e-10 - art_sys_165: -2.40009642e-10 - art_sys_166: -6.12852630e-09 - art_sys_167: 7.54328157e-08 - art_sys_168: 3.38755701e-24 - art_sys_169: 5.53727712e-07 - art_sys_170: -3.56546079e-23 - art_sys_171: 3.62092981e-22 - art_sys_172: 1.28011170e-08 - art_sys_173: 5.72936307e-06 - art_sys_174: 1.72913771e-20 - art_sys_175: 0.0 - art_sys_176: 8.46547211e-20 - art_sys_177: 0.0 - art_sys_178: 5.37319732e-20 - art_sys_179: 1.54263178e-20 - art_sys_180: 1.23724952e-24 - art_sys_181: 2.21680934e-13 - art_sys_182: 0.0 - art_sys_183: -1.30228260e-06 - art_sys_184: -2.86763638e-07 - art_sys_185: -5.81208819e-10 + art_sys_59: 7.65589072e-246 + art_sys_60: 8.40404149e-242 + art_sys_61: -4.98355313e-239 + art_sys_62: 2.46360251e-233 + art_sys_63: 3.81133546e-224 + art_sys_64: -1.17234486e-225 + art_sys_65: 1.26930412e-98 + art_sys_66: 2.37116905e-86 + art_sys_67: -8.76830888e-83 + art_sys_68: -1.15713907e-80 + art_sys_69: -1.51079699e-66 + art_sys_70: 3.31324072e-69 + art_sys_71: -3.80071070e-63 + art_sys_72: -2.49929483e-50 + art_sys_73: 1.66344136e-28 + art_sys_74: 4.49631437e-27 + art_sys_75: -3.73005099e-26 + art_sys_76: -3.41910994e-45 + art_sys_77: -1.18479685e-46 + art_sys_78: 2.91088531e-47 + art_sys_79: 1.33083549e-25 + art_sys_80: -3.28351116e-44 + art_sys_81: 2.47820777e-23 + art_sys_82: -3.36093567e-25 + art_sys_83: 7.15088125e-40 + art_sys_84: 2.75708846e-22 + art_sys_85: 5.62284973e-22 + art_sys_86: 4.89119630e-40 + art_sys_87: 2.80337564e-41 + art_sys_88: -1.38460772e-40 + art_sys_89: 7.48804977e-42 + art_sys_90: 5.27449056e-41 + art_sys_91: 3.20408833e-41 + art_sys_92: -6.12082461e-41 + art_sys_93: -3.68900653e-41 + art_sys_94: -1.85451206e-41 + art_sys_95: 3.00942205e-41 + art_sys_96: 1.19139949e-40 + art_sys_97: -7.22807015e-42 + art_sys_98: 4.19014297e-41 + art_sys_99: 3.18668517e-42 + art_sys_100: 1.99115360e-42 + art_sys_101: -4.87456096e-42 + art_sys_102: -1.39779314e-42 + art_sys_103: 6.83580515e-42 + art_sys_104: 2.05180137e-42 + art_sys_105: -5.69423832e-41 + art_sys_106: 3.25961314e-42 + art_sys_107: 4.07644250e-31 + art_sys_108: 5.41949052e-25 + art_sys_109: -2.56182961e-26 + art_sys_110: 1.26178363e-41 + art_sys_111: -1.60228612e-39 + art_sys_112: 1.67739572e-31 + art_sys_113: 3.75827169e-28 + art_sys_114: -3.98971196e-34 + art_sys_115: 3.71587407e-25 + art_sys_116: -1.23845256e-29 + art_sys_117: -5.22798736e-30 + art_sys_118: -1.21509417e-25 + art_sys_119: -1.67443761e-26 + art_sys_120: -5.25836194e-24 + art_sys_121: 3.12647421e-25 + art_sys_122: -1.89039290e-25 + art_sys_123: -5.86294777e-25 + art_sys_124: -3.13788047e-25 + art_sys_125: 3.56488960e-26 + art_sys_126: -5.90739233e-25 + art_sys_127: 5.51944742e-26 + art_sys_128: -1.80997432e-25 + art_sys_129: -2.65780873e-25 + art_sys_130: -4.44190247e-25 + art_sys_131: 3.39991852e-24 + art_sys_132: 4.40932519e-25 + art_sys_133: -5.78949555e-25 + art_sys_134: 1.55858624e-23 + art_sys_135: -6.13840197e-25 + art_sys_136: 7.76790770e-25 + art_sys_137: -6.90628456e-24 + art_sys_138: -3.65434012e-33 + art_sys_139: 2.25035663e-24 + art_sys_140: 2.54050279e-24 + art_sys_141: 4.87024252e-24 + art_sys_142: 1.00025613e-23 + art_sys_143: 2.22058539e-22 + art_sys_144: -2.91280758e-20 + art_sys_145: 6.54151311e-19 + art_sys_146: -0.0 + art_sys_147: -3.76738899e-20 + art_sys_148: 2.30438917e-22 + art_sys_149: 2.30438917e-22 + art_sys_150: -3.61895812e-23 + art_sys_151: -3.61895812e-23 + art_sys_152: 9.70544381e-21 + art_sys_153: 2.79774354e-19 + art_sys_154: -2.11803249e-20 + art_sys_155: -2.86763638e-07 + art_sys_156: -5.81208819e-10 + art_sys_157: -2.21680934e-13 + art_sys_158: 0.0 + art_sys_159: 1.86277255e-26 + art_sys_160: 2.28841581e-26 + art_sys_161: 1.52499694e-26 + art_sys_162: 6.07843146e-27 + art_sys_163: -4.58190544e-25 + art_sys_164: -5.99617348e-26 + art_sys_165: 1.99635351e-23 + art_sys_166: -1.38697727e-19 + art_sys_167: -8.39974492e-19 + art_sys_168: -5.51475169e-19 + art_sys_169: -5.28782250e-17 + art_sys_170: 1.47385390e-16 + art_sys_171: 1.00315949e-15 + art_sys_172: -2.10502919e-14 + art_sys_173: 1.69054092e-14 + art_sys_174: -1.55574630e-13 + art_sys_175: -1.30228260e-06 + art_sys_176: 1.24646235e-11 + art_sys_177: 2.73659610e-11 + art_sys_178: 1.28921057e-10 + art_sys_179: -2.84172183e-10 + art_sys_180: -2.40009642e-10 + art_sys_181: 6.12852630e-09 + art_sys_182: 7.54328157e-08 + art_sys_183: 5.53727712e-07 + art_sys_184: -1.28011170e-08 + art_sys_185: -5.72936307e-06 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -52095,133 +52095,133 @@ bins: art_sys_56: 0.0 art_sys_57: 0.0 art_sys_58: 0.0 - art_sys_59: 0.0 - art_sys_60: 0.0 - art_sys_61: 0.0 - art_sys_62: 0.0 - art_sys_63: 0.0 - art_sys_64: 0.0 - art_sys_65: -4.38325874e-303 - art_sys_66: -5.23380057e-225 - art_sys_67: -1.78106315e-214 - art_sys_68: -5.73657728e-232 - art_sys_69: -1.84529171e-220 - art_sys_70: -2.55512978e-222 - art_sys_71: 8.46863681e-217 - art_sys_72: 3.97349904e-187 - art_sys_73: -1.56769180e-200 - art_sys_74: 8.48891293e-193 - art_sys_75: 8.99838325e-170 - art_sys_76: -2.32141990e-150 - art_sys_77: -2.02235883e-134 - art_sys_78: -5.86925777e-135 - art_sys_79: 1.85973113e-121 - art_sys_80: 2.44900657e-104 - art_sys_81: 1.01822400e-96 - art_sys_82: 6.64992849e-91 - art_sys_83: 1.88062116e-107 - art_sys_84: -1.71603688e-107 - art_sys_85: -8.56624764e-105 - art_sys_86: -9.44989552e-97 - art_sys_87: 7.26981339e-100 - art_sys_88: -4.21606840e-79 - art_sys_89: -1.47698964e-96 - art_sys_90: -3.75460833e-96 - art_sys_91: -1.20323974e-95 - art_sys_92: -4.04027634e-96 - art_sys_93: -6.03123651e-97 - art_sys_94: -4.04649849e-95 - art_sys_95: 3.22080859e-96 - art_sys_96: -1.23705698e-88 - art_sys_97: -8.85120748e-90 - art_sys_98: 1.89170731e-88 - art_sys_99: 3.24011617e-88 - art_sys_100: 9.62554238e-73 - art_sys_101: 3.92215980e-72 - art_sys_102: 7.45896060e-89 - art_sys_103: 1.93786826e-79 - art_sys_104: -1.29833266e-84 - art_sys_105: 8.77500609e-75 - art_sys_106: -1.23191289e-81 - art_sys_107: 3.42906767e-81 - art_sys_108: 1.67501460e-71 - art_sys_109: 9.83743148e-78 - art_sys_110: -1.19204082e-74 - art_sys_111: 5.38790860e-73 - art_sys_112: 2.15737335e-74 - art_sys_113: -6.75155702e-73 - art_sys_114: -2.23267586e-73 - art_sys_115: 9.51990725e-72 - art_sys_116: 2.68628694e-71 - art_sys_117: 3.63072120e-70 - art_sys_118: 4.00387365e-69 - art_sys_119: -8.91179801e-72 - art_sys_120: -1.35535646e-67 - art_sys_121: 7.92291834e-65 - art_sys_122: 4.51194281e-63 - art_sys_123: -2.66826198e-67 - art_sys_124: 9.64140182e-62 - art_sys_125: 1.67410605e-65 - art_sys_126: 1.07900204e-60 - art_sys_127: -2.24593792e-62 - art_sys_128: -5.06982380e-59 - art_sys_129: 1.37485125e-58 - art_sys_130: 3.59798073e-59 - art_sys_131: 9.19069600e-59 - art_sys_132: 1.95484691e-60 - art_sys_133: 3.68253487e-58 - art_sys_134: -4.66390478e-56 - art_sys_135: -1.43273472e-72 - art_sys_136: -2.63372023e-71 - art_sys_137: -1.28760915e-71 - art_sys_138: 2.52904343e-71 - art_sys_139: 7.60331344e-67 - art_sys_140: 1.21862923e-69 - art_sys_141: 5.45809421e-55 - art_sys_142: 1.15660539e-61 - art_sys_143: 7.12017620e-58 - art_sys_144: -1.46902420e-31 - art_sys_145: -1.76525214e-29 - art_sys_146: 1.31452798e-28 - art_sys_147: 1.68449024e-28 - art_sys_148: 3.20898403e-28 - art_sys_149: 4.65376448e-25 - art_sys_150: 1.20999157e-24 - art_sys_151: 2.60379251e-24 - art_sys_152: 1.81681944e-23 - art_sys_153: 4.09421335e-21 - art_sys_154: -6.89356040e-21 - art_sys_155: 1.11337770e-19 - art_sys_156: -4.65806207e-19 - art_sys_157: 3.43902703e-18 - art_sys_158: -8.37513009e-17 - art_sys_159: 1.37327810e-15 - art_sys_160: -4.04900189e-15 - art_sys_161: -1.52923756e-12 - art_sys_162: -9.70567108e-13 - art_sys_163: 5.67979320e-11 - art_sys_164: -7.94397922e-11 - art_sys_165: -1.85401883e-09 - art_sys_166: 3.62439598e-09 - art_sys_167: -6.76492695e-08 - art_sys_168: -2.98056426e-24 - art_sys_169: -3.39038038e-07 - art_sys_170: 2.35099393e-23 - art_sys_171: -2.40132056e-22 - art_sys_172: -1.49270221e-07 - art_sys_173: -3.50622813e-06 - art_sys_174: -7.63517686e-21 - art_sys_175: 0.0 - art_sys_176: -1.89937934e-20 - art_sys_177: 0.0 - art_sys_178: 2.43033119e-20 - art_sys_179: 2.03307234e-20 - art_sys_180: 4.37602174e-23 - art_sys_181: -4.60719507e-09 - art_sys_182: 0.0 - art_sys_183: 5.23875188e-07 - art_sys_184: -4.92758034e-07 - art_sys_185: -8.18908497e-09 + art_sys_59: -6.76109742e-249 + art_sys_60: -7.42180699e-245 + art_sys_61: 4.40109315e-242 + art_sys_62: -2.17566541e-236 + art_sys_63: -3.36588012e-227 + art_sys_64: 1.03532536e-228 + art_sys_65: -1.12095234e-101 + art_sys_66: -2.09403518e-89 + art_sys_67: 7.74349986e-86 + art_sys_68: 1.02189674e-83 + art_sys_69: 1.33422037e-69 + art_sys_70: -2.92600083e-72 + art_sys_71: 3.35649704e-66 + art_sys_72: 2.20718606e-53 + art_sys_73: -1.46902420e-31 + art_sys_74: 1.76525214e-29 + art_sys_75: -1.31452798e-28 + art_sys_76: -1.21049362e-47 + art_sys_77: -4.18639923e-49 + art_sys_78: 1.13191866e-49 + art_sys_79: 1.68449024e-28 + art_sys_80: -4.54847927e-47 + art_sys_81: 3.20898403e-28 + art_sys_82: -4.65376448e-25 + art_sys_83: -1.81385697e-42 + art_sys_84: -1.20999156e-24 + art_sys_85: -2.60379271e-24 + art_sys_86: -2.54219545e-42 + art_sys_87: -1.02114287e-43 + art_sys_88: 6.60086405e-43 + art_sys_89: -3.28409065e-44 + art_sys_90: -2.36846045e-43 + art_sys_91: -1.44649369e-43 + art_sys_92: 2.91579287e-43 + art_sys_93: 1.61323859e-43 + art_sys_94: 8.51621711e-44 + art_sys_95: -1.39719258e-43 + art_sys_96: -6.01591513e-43 + art_sys_97: 3.33658975e-44 + art_sys_98: -1.93683400e-43 + art_sys_99: -7.58144224e-45 + art_sys_100: -6.44710791e-45 + art_sys_101: 2.06027868e-44 + art_sys_102: 7.09586471e-45 + art_sys_103: -3.36175212e-44 + art_sys_104: 1.53208652e-41 + art_sys_105: -1.05170442e-40 + art_sys_106: 5.87717936e-43 + art_sys_107: 8.08174962e-31 + art_sys_108: 1.07444041e-24 + art_sys_109: -3.67896552e-26 + art_sys_110: -1.09479155e-41 + art_sys_111: -3.18981967e-39 + art_sys_112: 3.32546986e-31 + art_sys_113: -6.21439135e-28 + art_sys_114: -7.90948036e-34 + art_sys_115: 7.36669431e-25 + art_sys_116: -2.45517629e-29 + art_sys_117: -1.03640416e-29 + art_sys_118: -1.84446288e-25 + art_sys_119: -3.31921236e-26 + art_sys_120: -1.04231652e-23 + art_sys_121: 9.97787359e-25 + art_sys_122: -3.74657605e-25 + art_sys_123: -1.19117319e-24 + art_sys_124: -4.14403920e-25 + art_sys_125: 3.79508610e-27 + art_sys_126: -1.68375604e-24 + art_sys_127: 1.48800720e-25 + art_sys_128: -4.71365875e-25 + art_sys_129: -5.64346437e-25 + art_sys_130: -7.93410076e-25 + art_sys_131: 6.07525315e-24 + art_sys_132: 6.88463277e-25 + art_sys_133: -7.70745401e-25 + art_sys_134: -7.15638581e-24 + art_sys_135: -1.75256478e-24 + art_sys_136: 2.06189869e-24 + art_sys_137: 2.71035364e-24 + art_sys_138: -7.95796730e-33 + art_sys_139: 4.88965801e-24 + art_sys_140: 2.92732850e-24 + art_sys_141: 2.02020694e-23 + art_sys_142: -9.39891509e-24 + art_sys_143: -1.16268690e-22 + art_sys_144: 1.10231435e-20 + art_sys_145: -1.37355605e-19 + art_sys_146: -0.0 + art_sys_147: -1.79272729e-19 + art_sys_148: 4.37457682e-22 + art_sys_149: 4.37457682e-22 + art_sys_150: 1.67917240e-23 + art_sys_151: 1.67917240e-23 + art_sys_152: 1.62393597e-20 + art_sys_153: 5.56874473e-19 + art_sys_154: 2.03196045e-19 + art_sys_155: -4.92758034e-07 + art_sys_156: -8.18908497e-09 + art_sys_157: 4.60719507e-09 + art_sys_158: 0.0 + art_sys_159: -4.22322188e-26 + art_sys_160: -3.34987994e-26 + art_sys_161: 3.11530512e-26 + art_sys_162: 1.77456915e-26 + art_sys_163: -6.38255315e-25 + art_sys_164: -8.04626376e-26 + art_sys_165: -6.33392495e-25 + art_sys_166: 1.81681958e-23 + art_sys_167: -4.09421335e-21 + art_sys_168: 6.89356039e-21 + art_sys_169: -1.11338691e-19 + art_sys_170: -4.65806173e-19 + art_sys_171: 3.43902765e-18 + art_sys_172: -8.37513004e-17 + art_sys_173: 1.37327810e-15 + art_sys_174: -4.04900189e-15 + art_sys_175: 5.23875188e-07 + art_sys_176: 1.52923756e-12 + art_sys_177: 9.70567108e-13 + art_sys_178: 5.67979320e-11 + art_sys_179: 7.94397922e-11 + art_sys_180: -1.85401883e-09 + art_sys_181: -3.62439598e-09 + art_sys_182: -6.76492695e-08 + art_sys_183: -3.39038038e-07 + art_sys_184: 1.49270221e-07 + art_sys_185: 3.50622813e-06 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -52386,133 +52386,133 @@ bins: art_sys_56: 0.0 art_sys_57: 0.0 art_sys_58: 0.0 - art_sys_59: 0.0 - art_sys_60: 0.0 - art_sys_61: 0.0 - art_sys_62: 0.0 - art_sys_63: 0.0 - art_sys_64: 0.0 - art_sys_65: -6.39524208e-305 - art_sys_66: -7.63620820e-227 - art_sys_67: -2.59860284e-216 - art_sys_68: -8.36976836e-234 - art_sys_69: -2.69231345e-222 - art_sys_70: -3.72797984e-224 - art_sys_71: 1.23558918e-218 - art_sys_72: 5.79740583e-189 - art_sys_73: -2.28720658e-202 - art_sys_74: 1.23854751e-194 - art_sys_75: 1.31288013e-171 - art_sys_76: -3.38699296e-152 - art_sys_77: -2.95065753e-136 - art_sys_78: -8.56335156e-137 - art_sys_79: 2.71338082e-123 - art_sys_80: 3.57314418e-106 - art_sys_81: 1.48560695e-98 - art_sys_82: 9.70236403e-93 - art_sys_83: 2.74385818e-109 - art_sys_84: -2.50372837e-109 - art_sys_85: -1.24983074e-106 - art_sys_86: -1.37875658e-98 - art_sys_87: 1.06067871e-101 - art_sys_88: -6.15131884e-81 - art_sys_89: -2.15496273e-98 - art_sys_90: -5.47804039e-98 - art_sys_91: -1.75554820e-97 - art_sys_92: -7.17048344e-98 - art_sys_93: -8.96962959e-99 - art_sys_94: -5.90391326e-97 - art_sys_95: 4.69925427e-98 - art_sys_96: -1.80488815e-90 - art_sys_97: -1.29140693e-91 - art_sys_98: 2.76003464e-90 - art_sys_99: 4.72738717e-90 - art_sys_100: 1.40438377e-74 - art_sys_101: 5.72250097e-74 - art_sys_102: 1.08828321e-90 - art_sys_103: 2.82738429e-81 - art_sys_104: -1.89429029e-86 - art_sys_105: 1.28028901e-76 - art_sys_106: -1.79738283e-83 - art_sys_107: 5.00307078e-83 - art_sys_108: 2.44387612e-73 - art_sys_109: 1.43529876e-79 - art_sys_110: -1.73920877e-76 - art_sys_111: 7.86105455e-75 - art_sys_112: 3.14764612e-76 - art_sys_113: -9.85064187e-75 - art_sys_114: -3.25751383e-75 - art_sys_115: 1.38897141e-73 - art_sys_116: 3.91934047e-73 - art_sys_117: 5.29728687e-72 - art_sys_118: 5.84172293e-71 - art_sys_119: -1.30024720e-73 - art_sys_120: -1.97748919e-69 - art_sys_121: 1.15596789e-66 - art_sys_122: 6.58300487e-65 - art_sys_123: -3.89304173e-69 - art_sys_124: 1.40669769e-63 - art_sys_125: 2.44255053e-67 - art_sys_126: 1.57428318e-62 - art_sys_127: -3.27686341e-64 - art_sys_128: -7.39696317e-61 - art_sys_129: 2.00593244e-60 - art_sys_130: 5.24951794e-61 - art_sys_131: 1.34093891e-60 - art_sys_132: 2.85215643e-62 - art_sys_133: 5.37288392e-60 - art_sys_134: -6.80472009e-58 - art_sys_135: -2.09038546e-74 - art_sys_136: -3.84264470e-73 - art_sys_137: -1.87864468e-73 - art_sys_138: 3.68991938e-73 - art_sys_139: 1.10933696e-68 - art_sys_140: 1.77800175e-71 - art_sys_141: 7.96345660e-57 - art_sys_142: 1.68750785e-63 - art_sys_143: 1.03884638e-59 - art_sys_144: -2.23790035e-33 - art_sys_145: -1.29232269e-31 - art_sys_146: 9.37243277e-31 - art_sys_147: -1.35291914e-30 - art_sys_148: -8.14019943e-28 - art_sys_149: 8.35278301e-27 - art_sys_150: 3.39301063e-26 - art_sys_151: 8.23679038e-26 - art_sys_152: 2.47398751e-24 - art_sys_153: -3.90935891e-23 - art_sys_154: 1.64158313e-22 - art_sys_155: -6.49350058e-20 - art_sys_156: 6.74702384e-20 - art_sys_157: -2.26342630e-18 - art_sys_158: 2.47341717e-17 - art_sys_159: -8.76205147e-16 - art_sys_160: 2.30676874e-15 - art_sys_161: 7.12640292e-13 - art_sys_162: 6.52093865e-13 - art_sys_163: -2.67653511e-11 - art_sys_164: 3.49856372e-11 - art_sys_165: 8.79241103e-10 - art_sys_166: -1.68042578e-09 - art_sys_167: 3.20978225e-08 - art_sys_168: 1.41331236e-24 - art_sys_169: 1.60354345e-07 - art_sys_170: -1.11254809e-23 - art_sys_171: 1.13750158e-22 - art_sys_172: 7.10819078e-08 - art_sys_173: 1.66127103e-06 - art_sys_174: 3.62940940e-21 - art_sys_175: 0.0 - art_sys_176: 2.62698836e-20 - art_sys_177: 0.0 - art_sys_178: -1.55072635e-20 - art_sys_179: -1.90395820e-20 - art_sys_180: -2.57219820e-23 - art_sys_181: -8.78394684e-09 - art_sys_182: 0.0 - art_sys_183: -2.50710231e-07 - art_sys_184: 2.35756144e-07 - art_sys_185: -1.73774652e-08 + art_sys_59: -1.02998045e-250 + art_sys_60: -1.13063244e-246 + art_sys_61: 6.70459191e-244 + art_sys_62: -3.31439217e-238 + art_sys_63: -5.12755622e-229 + art_sys_64: 1.57720679e-230 + art_sys_65: -1.70765030e-103 + art_sys_66: -3.19003734e-91 + art_sys_67: 1.17963891e-87 + art_sys_68: 1.55674976e-85 + art_sys_69: 2.03254121e-71 + art_sys_70: -4.45744752e-74 + art_sys_71: 5.11326218e-68 + art_sys_72: 3.36241054e-55 + art_sys_73: -2.23790035e-33 + art_sys_74: 1.29232269e-31 + art_sys_75: -9.37243277e-31 + art_sys_76: -8.64135873e-50 + art_sys_77: -2.98694260e-51 + art_sys_78: 8.26059796e-52 + art_sys_79: -1.35291914e-30 + art_sys_80: 2.72233288e-49 + art_sys_81: -8.14019943e-28 + art_sys_82: -8.35278301e-27 + art_sys_83: -4.61274056e-44 + art_sys_84: -3.39301057e-26 + art_sys_85: -8.23673575e-26 + art_sys_86: -7.72532080e-44 + art_sys_87: -3.77943685e-45 + art_sys_88: 2.02689549e-44 + art_sys_89: -1.91408723e-45 + art_sys_90: -7.73432643e-45 + art_sys_91: -4.32789078e-45 + art_sys_92: 9.17193510e-45 + art_sys_93: 5.33123247e-45 + art_sys_94: 2.69453597e-45 + art_sys_95: -3.85800448e-45 + art_sys_96: -1.85257978e-44 + art_sys_97: 1.03710386e-45 + art_sys_98: -6.09082122e-45 + art_sys_99: -3.22075765e-46 + art_sys_100: -2.00339243e-46 + art_sys_101: 5.92950926e-46 + art_sys_102: 1.96718501e-46 + art_sys_103: -1.05822797e-45 + art_sys_104: -1.90600005e-42 + art_sys_105: 1.17564751e-41 + art_sys_106: 1.30254895e-42 + art_sys_107: -8.95755277e-32 + art_sys_108: -1.19088695e-25 + art_sys_109: 2.47256149e-26 + art_sys_110: 1.68487685e-42 + art_sys_111: 3.52975489e-40 + art_sys_112: -3.68703580e-32 + art_sys_113: -2.67336035e-27 + art_sys_114: 8.77424467e-35 + art_sys_115: -8.16999182e-26 + art_sys_116: 2.72402845e-30 + art_sys_117: 1.15038596e-30 + art_sys_118: 3.46679093e-25 + art_sys_119: 3.68951182e-27 + art_sys_120: 1.15958491e-24 + art_sys_121: 3.66777075e-25 + art_sys_122: 4.18212513e-26 + art_sys_123: 6.24705917e-26 + art_sys_124: 1.16185487e-25 + art_sys_125: -1.67167746e-25 + art_sys_126: -1.20002379e-24 + art_sys_127: 1.02124321e-25 + art_sys_128: -1.59985764e-25 + art_sys_129: -4.49086929e-26 + art_sys_130: 3.22401806e-25 + art_sys_131: -1.98918542e-24 + art_sys_132: -5.92582923e-25 + art_sys_133: 7.69301284e-25 + art_sys_134: 2.76752172e-24 + art_sys_135: -1.03723388e-24 + art_sys_136: -2.46629618e-25 + art_sys_137: -6.95007102e-25 + art_sys_138: -7.73331653e-34 + art_sys_139: -4.38411330e-26 + art_sys_140: -7.22360731e-24 + art_sys_141: 2.25178563e-23 + art_sys_142: -5.36772749e-24 + art_sys_143: 5.44567891e-23 + art_sys_144: -5.08468935e-21 + art_sys_145: 4.44624689e-20 + art_sys_146: 0.0 + art_sys_147: 1.70073082e-19 + art_sys_148: -5.92645238e-22 + art_sys_149: -5.92645238e-22 + art_sys_150: -1.66703508e-23 + art_sys_151: -1.66703508e-23 + art_sys_152: -9.73369063e-21 + art_sys_153: -1.48512418e-20 + art_sys_154: 4.40694955e-19 + art_sys_155: 2.35756144e-07 + art_sys_156: -1.73774652e-08 + art_sys_157: 8.78394684e-09 + art_sys_158: 0.0 + art_sys_159: -1.63569305e-25 + art_sys_160: -1.58048270e-25 + art_sys_161: -6.64979086e-27 + art_sys_162: 8.83755725e-27 + art_sys_163: 6.57099351e-25 + art_sys_164: 2.97132835e-26 + art_sys_165: 5.07545997e-24 + art_sys_166: 2.47398607e-24 + art_sys_167: 3.90935222e-23 + art_sys_168: -1.64158311e-22 + art_sys_169: 6.49355893e-20 + art_sys_170: 6.74702224e-20 + art_sys_171: -2.26342659e-18 + art_sys_172: 2.47341714e-17 + art_sys_173: -8.76205147e-16 + art_sys_174: 2.30676874e-15 + art_sys_175: -2.50710231e-07 + art_sys_176: -7.12640292e-13 + art_sys_177: -6.52093865e-13 + art_sys_178: -2.67653511e-11 + art_sys_179: -3.49856372e-11 + art_sys_180: 8.79241103e-10 + art_sys_181: 1.68042578e-09 + art_sys_182: 3.20978225e-08 + art_sys_183: 1.60354345e-07 + art_sys_184: -7.10819078e-08 + art_sys_185: -1.66127103e-06 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -52677,133 +52677,133 @@ bins: art_sys_56: 0.0 art_sys_57: 0.0 art_sys_58: 0.0 - art_sys_59: 0.0 - art_sys_60: 0.0 - art_sys_61: 0.0 - art_sys_62: 0.0 - art_sys_63: 0.0 - art_sys_64: 0.0 - art_sys_65: -1.79391705e-307 - art_sys_66: -2.14201782e-229 - art_sys_67: -7.28928999e-219 - art_sys_68: -2.34778735e-236 - art_sys_69: -7.55215577e-225 - art_sys_70: -1.04572833e-226 - art_sys_71: 3.46592705e-221 - art_sys_72: 1.62621897e-191 - art_sys_73: -6.41507529e-205 - art_sys_74: 3.47422538e-197 - art_sys_75: 3.68273437e-174 - art_sys_76: -9.50078767e-155 - art_sys_77: -8.27683169e-139 - art_sys_78: -2.40208899e-139 - art_sys_79: 7.61125144e-126 - art_sys_80: 1.00229568e-108 - art_sys_81: 4.16724698e-101 - art_sys_82: 2.72159115e-95 - art_sys_83: 7.69677846e-112 - art_sys_84: -7.02316208e-112 - art_sys_85: -3.50587707e-109 - art_sys_86: -3.86752310e-101 - art_sys_87: 2.97528911e-104 - art_sys_88: -1.72549441e-83 - art_sys_89: -6.04480034e-101 - art_sys_90: -1.53663439e-100 - art_sys_91: -4.92445391e-100 - art_sys_92: -8.25773565e-101 - art_sys_93: -2.50040822e-101 - art_sys_94: -1.65609518e-99 - art_sys_95: 1.31814477e-100 - art_sys_96: -5.06285644e-93 - art_sys_97: -3.62250030e-94 - art_sys_98: 7.74211916e-93 - art_sys_99: 1.32607013e-92 - art_sys_100: 3.93940943e-77 - art_sys_101: 1.60520755e-76 - art_sys_102: 3.05273765e-93 - art_sys_103: 7.93104035e-84 - art_sys_104: -5.31365133e-89 - art_sys_105: 3.59131365e-79 - art_sys_106: -5.04180341e-86 - art_sys_107: 1.40340156e-85 - art_sys_108: 6.85526910e-76 - art_sys_109: 4.02612848e-82 - art_sys_110: -4.87862049e-79 - art_sys_111: 2.20508903e-77 - art_sys_112: 8.82940054e-79 - art_sys_113: -2.76318428e-77 - art_sys_114: -9.13758830e-78 - art_sys_115: 3.89617654e-76 - art_sys_116: 1.09940653e-75 - art_sys_117: 1.48593157e-74 - art_sys_118: 1.63865027e-73 - art_sys_119: -3.64729796e-76 - art_sys_120: -5.54701625e-72 - art_sys_121: 3.24258291e-69 - art_sys_122: 1.84658581e-67 - art_sys_123: -1.09202952e-71 - art_sys_124: 3.94590016e-66 - art_sys_125: 6.85155071e-70 - art_sys_126: 4.41599095e-65 - art_sys_127: -9.19186542e-67 - art_sys_128: -2.07490767e-63 - art_sys_129: 5.62680184e-63 - art_sys_130: 1.47253200e-63 - art_sys_131: 3.76144149e-63 - art_sys_132: 8.00052820e-65 - art_sys_133: 1.50713716e-62 - art_sys_134: -1.90877872e-60 - art_sys_135: -5.86369936e-77 - art_sys_136: -1.07789275e-75 - art_sys_137: -5.26974942e-76 - art_sys_138: 1.03505207e-75 - art_sys_139: 3.11177941e-71 - art_sys_140: 4.98743791e-74 - art_sys_141: 2.23381363e-59 - art_sys_142: 4.73359526e-66 - art_sys_143: 2.91404766e-62 - art_sys_144: -6.25778260e-36 - art_sys_145: -3.89756025e-34 - art_sys_146: 3.04139459e-33 - art_sys_147: -2.04105604e-33 - art_sys_148: -8.03534243e-30 - art_sys_149: 1.35609385e-28 - art_sys_150: 7.15854783e-28 - art_sys_151: 3.20875585e-27 - art_sys_152: -6.59802435e-25 - art_sys_153: -1.45596142e-23 - art_sys_154: 5.64166670e-23 - art_sys_155: -1.42274661e-20 - art_sys_156: 1.50359331e-20 - art_sys_157: -5.10853285e-19 - art_sys_158: 5.51197691e-18 - art_sys_159: -1.99582153e-16 - art_sys_160: 5.24979393e-16 - art_sys_161: 1.63265041e-13 - art_sys_162: 1.48255681e-13 - art_sys_163: -6.13991396e-12 - art_sys_164: 8.05435237e-12 - art_sys_165: 2.01857017e-10 - art_sys_166: -3.86467183e-10 - art_sys_167: 7.37472745e-09 - art_sys_168: 3.24729559e-25 - art_sys_169: 3.68562564e-08 - art_sys_170: -2.55687049e-24 - art_sys_171: 2.61633939e-23 - art_sys_172: 1.63789208e-08 - art_sys_173: 3.82076920e-07 - art_sys_174: 8.35228153e-22 - art_sys_175: 0.0 - art_sys_176: 6.47890204e-21 - art_sys_177: 0.0 - art_sys_178: -3.20072589e-21 - art_sys_179: -2.04395201e-20 - art_sys_180: -2.84300919e-23 - art_sys_181: -3.83822001e-09 - art_sys_182: 0.0 - art_sys_183: -5.79472438e-08 - art_sys_184: 5.35096112e-08 - art_sys_185: 1.28189605e-08 + art_sys_59: -2.88010757e-253 + art_sys_60: -3.16155812e-249 + art_sys_61: 1.87478761e-246 + art_sys_62: -9.26794870e-241 + art_sys_63: -1.43380522e-231 + art_sys_64: 4.41030237e-233 + art_sys_65: -4.77505816e-106 + art_sys_66: -8.92021851e-94 + art_sys_67: 3.29859362e-90 + art_sys_68: 4.35309890e-88 + art_sys_69: 5.68354218e-74 + art_sys_70: -1.24642447e-76 + art_sys_71: 1.42980822e-70 + art_sys_72: 9.40222122e-58 + art_sys_73: -6.25778260e-36 + art_sys_74: 3.89756025e-34 + art_sys_75: -3.04139459e-33 + art_sys_76: -2.79303185e-52 + art_sys_77: -9.67417682e-54 + art_sys_78: 2.51005249e-54 + art_sys_79: -2.04105604e-33 + art_sys_80: 3.34684242e-52 + art_sys_81: -8.03534243e-30 + art_sys_82: -1.35609385e-28 + art_sys_83: -2.01319752e-45 + art_sys_84: -7.15852466e-28 + art_sys_85: -3.20846293e-27 + art_sys_86: -3.01592239e-45 + art_sys_87: -1.80019578e-46 + art_sys_88: 7.34606880e-46 + art_sys_89: -1.41789445e-46 + art_sys_90: -3.21818091e-46 + art_sys_91: -1.33788994e-46 + art_sys_92: 3.61215197e-46 + art_sys_93: 2.23458826e-46 + art_sys_94: 1.04149639e-46 + art_sys_95: -1.12646684e-46 + art_sys_96: -7.22635101e-46 + art_sys_97: 3.74917306e-47 + art_sys_98: -2.32361944e-46 + art_sys_99: -1.35755303e-47 + art_sys_100: -3.90897653e-48 + art_sys_101: 8.36699840e-48 + art_sys_102: 4.59245376e-48 + art_sys_103: -7.03843423e-47 + art_sys_104: -3.55283185e-42 + art_sys_105: 2.13024496e-41 + art_sys_106: 3.03591057e-42 + art_sys_107: -1.61951399e-31 + art_sys_108: -2.15308517e-25 + art_sys_109: 5.49458944e-26 + art_sys_110: 3.28220112e-42 + art_sys_111: 6.38517823e-40 + art_sys_112: -6.66372719e-32 + art_sys_113: -1.34898375e-27 + art_sys_114: 1.58483190e-34 + art_sys_115: -1.47612198e-25 + art_sys_116: 4.91935577e-30 + art_sys_117: 2.07650700e-30 + art_sys_118: -8.26380710e-25 + art_sys_119: 6.64881658e-27 + art_sys_120: 2.08759895e-24 + art_sys_121: 1.41745039e-24 + art_sys_122: 7.49922255e-26 + art_sys_123: 2.58870357e-25 + art_sys_124: 1.80478921e-24 + art_sys_125: 6.85236421e-26 + art_sys_126: 1.32580095e-24 + art_sys_127: -1.57930204e-25 + art_sys_128: -8.45542707e-26 + art_sys_129: 2.13115070e-25 + art_sys_130: -3.60382370e-26 + art_sys_131: -2.02426900e-24 + art_sys_132: 2.83690282e-25 + art_sys_133: 8.78797002e-25 + art_sys_134: 1.09833425e-24 + art_sys_135: 4.47562425e-25 + art_sys_136: 4.77597715e-24 + art_sys_137: -4.42884694e-25 + art_sys_138: 5.41008019e-34 + art_sys_139: 9.96132304e-25 + art_sys_140: 2.20557180e-24 + art_sys_141: 1.05821027e-23 + art_sys_142: -4.34918443e-23 + art_sys_143: 1.41971127e-23 + art_sys_144: -1.15063779e-21 + art_sys_145: 7.44581708e-21 + art_sys_146: 0.0 + art_sys_147: 5.77271425e-20 + art_sys_148: -1.63926377e-22 + art_sys_149: -1.63926377e-22 + art_sys_150: -2.87322426e-23 + art_sys_151: -2.87322426e-23 + art_sys_152: -2.67385098e-21 + art_sys_153: 5.91319903e-20 + art_sys_154: 2.38018052e-19 + art_sys_155: 5.35096112e-08 + art_sys_156: 1.28189605e-08 + art_sys_157: 3.83822001e-09 + art_sys_158: -0.0 + art_sys_159: -3.55275817e-26 + art_sys_160: -6.32458588e-26 + art_sys_161: 1.62795222e-26 + art_sys_162: 5.19470205e-27 + art_sys_163: 2.27155917e-25 + art_sys_164: 3.93695437e-26 + art_sys_165: -1.02440652e-23 + art_sys_166: -6.59802923e-25 + art_sys_167: 1.45597507e-23 + art_sys_168: -5.64166664e-23 + art_sys_169: 1.42276383e-20 + art_sys_170: 1.50359294e-20 + art_sys_171: -5.10853352e-19 + art_sys_172: 5.51197685e-18 + art_sys_173: -1.99582153e-16 + art_sys_174: 5.24979393e-16 + art_sys_175: -5.79472438e-08 + art_sys_176: -1.63265041e-13 + art_sys_177: -1.48255681e-13 + art_sys_178: -6.13991396e-12 + art_sys_179: -8.05435237e-12 + art_sys_180: 2.01857017e-10 + art_sys_181: 3.86467183e-10 + art_sys_182: 7.37472745e-09 + art_sys_183: 3.68562564e-08 + art_sys_184: -1.63789208e-08 + art_sys_185: -3.82076920e-07 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -52968,133 +52968,133 @@ bins: art_sys_56: 0.0 art_sys_57: 0.0 art_sys_58: 0.0 - art_sys_59: 0.0 - art_sys_60: 0.0 - art_sys_61: 0.0 - art_sys_62: 0.0 - art_sys_63: 0.0 - art_sys_64: 0.0 - art_sys_65: -4.65050879e-308 - art_sys_66: -5.55291765e-230 - art_sys_67: -1.88965874e-219 - art_sys_68: -6.08634982e-237 - art_sys_69: -1.95780346e-225 - art_sys_70: -2.71092203e-227 - art_sys_71: 8.98498942e-222 - art_sys_72: 4.21577258e-192 - art_sys_73: -1.66292598e-205 - art_sys_74: 9.00650182e-198 - art_sys_75: 9.54703574e-175 - art_sys_76: -2.46296231e-155 - art_sys_77: -2.14566678e-139 - art_sys_78: -6.22712016e-140 - art_sys_79: 1.97312329e-126 - art_sys_80: 2.59832823e-109 - art_sys_81: 1.08030751e-101 - art_sys_82: 7.05539020e-96 - art_sys_83: 1.99528901e-112 - art_sys_84: -1.82066752e-112 - art_sys_85: -9.08855110e-110 - art_sys_86: -1.00260778e-101 - art_sys_87: 7.71307093e-105 - art_sys_88: -4.47313196e-84 - art_sys_89: -1.56706066e-101 - art_sys_90: -3.98353559e-101 - art_sys_91: -1.27660409e-100 - art_sys_92: -3.99665911e-101 - art_sys_93: -6.17285720e-102 - art_sys_94: -4.29322297e-100 - art_sys_95: 3.41717741e-101 - art_sys_96: -1.31248324e-93 - art_sys_97: -9.39088632e-95 - art_sys_98: 2.00704913e-93 - art_sys_99: 3.43767364e-93 - art_sys_100: 1.02124342e-77 - art_sys_101: 4.16130307e-77 - art_sys_102: 7.91381137e-94 - art_sys_103: 2.05602463e-84 - art_sys_104: -1.37749371e-89 - art_sys_105: 9.31003876e-80 - art_sys_106: -1.30702550e-86 - art_sys_107: 3.63814602e-86 - art_sys_108: 1.77714417e-76 - art_sys_109: 1.04372427e-82 - art_sys_110: -1.26472234e-79 - art_sys_111: 5.71642200e-78 - art_sys_112: 2.28891345e-79 - art_sys_113: -7.16321526e-78 - art_sys_114: -2.36880734e-78 - art_sys_115: 1.01003583e-76 - art_sys_116: 2.85007615e-76 - art_sys_117: 3.85209478e-75 - art_sys_118: 4.24799920e-74 - art_sys_119: -9.45517121e-77 - art_sys_120: -1.43799571e-72 - art_sys_121: 8.40599722e-70 - art_sys_122: 4.78704652e-68 - art_sys_123: -2.83095216e-72 - art_sys_124: 1.02292607e-66 - art_sys_125: 1.77618022e-70 - art_sys_126: 1.14479132e-65 - art_sys_127: -2.38287801e-67 - art_sys_128: -5.37894283e-64 - art_sys_129: 1.45867915e-63 - art_sys_130: 3.81735804e-64 - art_sys_131: 9.75107425e-64 - art_sys_132: 2.07403850e-65 - art_sys_133: 3.90706764e-63 - art_sys_134: -4.94827397e-61 - art_sys_135: -1.52009191e-77 - art_sys_136: -2.79430432e-76 - art_sys_137: -1.36611770e-76 - art_sys_138: 2.68324513e-76 - art_sys_139: 8.06690526e-72 - art_sys_140: 1.29293191e-74 - art_sys_141: 5.79088699e-60 - art_sys_142: 1.22712633e-66 - art_sys_143: 7.55431002e-63 - art_sys_144: -1.62670533e-36 - art_sys_145: -9.47948125e-35 - art_sys_146: 6.58560642e-34 - art_sys_147: -4.76422594e-33 - art_sys_148: -2.43334102e-30 - art_sys_149: 1.73115754e-29 - art_sys_150: 8.65137561e-29 - art_sys_151: 2.25493709e-28 - art_sys_152: -1.37196393e-26 - art_sys_153: -5.91862959e-25 - art_sys_154: 2.04009500e-24 - art_sys_155: -4.33122166e-22 - art_sys_156: 5.00707972e-22 - art_sys_157: -1.54457201e-20 - art_sys_158: 1.66510597e-19 - art_sys_159: -6.05964915e-18 - art_sys_160: 1.58555972e-17 - art_sys_161: 4.77329394e-15 - art_sys_162: 2.98728692e-15 - art_sys_163: -1.77844764e-13 - art_sys_164: 2.79539098e-13 - art_sys_165: 5.70029817e-12 - art_sys_166: -1.28564049e-11 - art_sys_167: 2.06268680e-10 - art_sys_168: 9.12896941e-27 - art_sys_169: 1.14130405e-09 - art_sys_170: -7.78809119e-26 - art_sys_171: 6.48615099e-25 - art_sys_172: -1.06113472e-11 - art_sys_173: 9.95122282e-09 - art_sys_174: 2.02460694e-23 - art_sys_175: 0.0 - art_sys_176: 5.53522969e-22 - art_sys_177: 0.0 - art_sys_178: -1.11639579e-21 - art_sys_179: 1.13391146e-19 - art_sys_180: 2.05323322e-22 - art_sys_181: 9.91106211e-10 - art_sys_182: 0.0 - art_sys_183: 5.70227358e-10 - art_sys_184: 5.55355500e-09 - art_sys_185: -1.42436114e-07 + art_sys_59: -7.48681545e-254 + art_sys_60: -8.21844381e-250 + art_sys_61: 4.87349466e-247 + art_sys_62: -2.40919548e-241 + art_sys_63: -3.72716464e-232 + art_sys_64: 1.14645440e-233 + art_sys_65: -1.24127236e-106 + art_sys_66: -2.31880331e-94 + art_sys_67: 8.57466644e-91 + art_sys_68: 1.13158441e-88 + art_sys_69: 1.47743202e-74 + art_sys_70: -3.24006994e-77 + art_sys_71: 3.71677446e-71 + art_sys_72: 2.44409952e-58 + art_sys_73: -1.62670533e-36 + art_sys_74: 9.47948125e-35 + art_sys_75: -6.58560642e-34 + art_sys_76: -6.08705122e-53 + art_sys_77: -2.10141713e-54 + art_sys_78: 6.04208716e-55 + art_sys_79: -4.76422594e-33 + art_sys_80: 1.08196006e-51 + art_sys_81: -2.43334102e-30 + art_sys_82: -1.73115754e-29 + art_sys_83: -1.71545193e-46 + art_sys_84: -8.65140564e-29 + art_sys_85: -2.25504195e-28 + art_sys_86: -2.11173815e-46 + art_sys_87: -1.09038370e-47 + art_sys_88: 5.47878163e-47 + art_sys_89: -5.91065529e-48 + art_sys_90: -2.14513774e-47 + art_sys_91: -1.14882495e-47 + art_sys_92: 2.50939300e-47 + art_sys_93: 1.48422084e-47 + art_sys_94: 7.37293941e-48 + art_sys_95: -1.09831473e-47 + art_sys_96: -5.03646120e-47 + art_sys_97: 2.81265161e-48 + art_sys_98: -1.66247023e-47 + art_sys_99: -9.47473608e-49 + art_sys_100: -5.25178783e-49 + art_sys_101: 1.32200807e-48 + art_sys_102: 4.87586004e-49 + art_sys_103: 3.50057827e-47 + art_sys_104: 4.24903016e-42 + art_sys_105: -2.63103043e-41 + art_sys_106: -2.78651254e-42 + art_sys_107: 2.00545775e-31 + art_sys_108: 2.66619407e-25 + art_sys_109: -5.33802108e-26 + art_sys_110: -3.72670597e-42 + art_sys_111: -7.92078956e-40 + art_sys_112: 8.25282816e-32 + art_sys_113: 3.01891410e-28 + art_sys_114: -1.96318270e-34 + art_sys_115: 1.82833887e-25 + art_sys_116: -6.09412410e-30 + art_sys_117: -2.57276538e-30 + art_sys_118: 1.31823452e-25 + art_sys_119: -8.24148524e-27 + art_sys_120: -2.58823571e-24 + art_sys_121: 1.85884273e-24 + art_sys_122: -9.30286037e-26 + art_sys_123: -3.61124027e-25 + art_sys_124: 7.43564696e-25 + art_sys_125: -4.47857862e-26 + art_sys_126: 1.98237550e-24 + art_sys_127: -2.01801988e-25 + art_sys_128: -3.23572247e-25 + art_sys_129: -1.42058621e-25 + art_sys_130: 6.06896531e-24 + art_sys_131: 3.03108685e-24 + art_sys_132: 3.79325946e-25 + art_sys_133: -7.26688422e-25 + art_sys_134: -2.26971770e-25 + art_sys_135: 8.36308416e-25 + art_sys_136: -7.39287569e-25 + art_sys_137: -2.01946196e-26 + art_sys_138: -1.73352608e-33 + art_sys_139: 3.00507408e-24 + art_sys_140: -2.37449892e-24 + art_sys_141: -2.61413695e-24 + art_sys_142: 2.43226139e-23 + art_sys_143: 1.16573465e-24 + art_sys_144: -2.54397545e-23 + art_sys_145: -5.11483176e-22 + art_sys_146: 0.0 + art_sys_147: 1.17483054e-21 + art_sys_148: 9.08407604e-23 + art_sys_149: 9.08407604e-23 + art_sys_150: 6.14889472e-23 + art_sys_151: 6.14889472e-23 + art_sys_152: -1.12789543e-22 + art_sys_153: -4.27861664e-21 + art_sys_154: 1.71937977e-20 + art_sys_155: 5.55355500e-09 + art_sys_156: -1.42436114e-07 + art_sys_157: -9.91106211e-10 + art_sys_158: -0.0 + art_sys_159: -1.13136976e-25 + art_sys_160: 3.30424997e-26 + art_sys_161: 7.27695820e-26 + art_sys_162: 2.12360712e-26 + art_sys_163: -2.60695860e-25 + art_sys_164: 2.23749342e-27 + art_sys_165: 1.30573652e-23 + art_sys_166: -1.37197727e-26 + art_sys_167: 5.91688539e-25 + art_sys_168: -2.04009487e-24 + art_sys_169: 4.33122142e-22 + art_sys_170: 5.00707875e-22 + art_sys_171: -1.54457218e-20 + art_sys_172: 1.66510595e-19 + art_sys_173: -6.05964915e-18 + art_sys_174: 1.58555972e-17 + art_sys_175: 5.70227358e-10 + art_sys_176: -4.77329394e-15 + art_sys_177: -2.98728692e-15 + art_sys_178: -1.77844764e-13 + art_sys_179: -2.79539098e-13 + art_sys_180: 5.70029817e-12 + art_sys_181: 1.28564049e-11 + art_sys_182: 2.06268680e-10 + art_sys_183: 1.14130405e-09 + art_sys_184: 1.06113472e-11 + art_sys_185: -9.95122282e-09 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -55820,191 +55820,191 @@ bins: RelativeStatFSR-: -1.31331002e+05 luminosity_uncertainty: 4.83381600e+02 uncorrelated_uncertainty: 185.916 -- art_sys_1: -2.26795814e-13 - art_sys_2: -1.61153998e+02 - art_sys_3: 6.83093605e-15 - art_sys_4: 1.04182033e-14 +- art_sys_1: 7.69400760e-14 + art_sys_2: -2.13683520e-14 + art_sys_3: -1.61153998e+02 + art_sys_4: 6.87682846e-14 art_sys_5: -3.30097149e+01 - art_sys_6: 3.31127402e-15 - art_sys_7: 6.04040806e-14 - art_sys_8: -1.13391038e+01 - art_sys_9: -8.73521155e-15 - art_sys_10: 1.66030474e-15 - art_sys_11: 1.78364090e+00 - art_sys_12: 5.08263148e-16 - art_sys_13: 1.61999702e-15 - art_sys_14: -6.26681756e-16 - art_sys_15: 2.92725113e-02 - art_sys_16: 3.60228847e-16 - art_sys_17: -2.57995209e-16 - art_sys_18: 8.67938826e-03 - art_sys_19: 6.76512574e-16 - art_sys_20: -1.82073121e-15 - art_sys_21: 4.32484912e-03 - art_sys_22: 2.10967514e-16 - art_sys_23: 2.53614963e-16 + art_sys_6: 9.86340320e-15 + art_sys_7: -1.44209944e-14 + art_sys_8: 1.13391038e+01 + art_sys_9: -4.52646893e-16 + art_sys_10: 3.48048777e-16 + art_sys_11: -1.78364090e+00 + art_sys_12: -1.01072854e-15 + art_sys_13: -3.03474092e-15 + art_sys_14: -3.76473666e-16 + art_sys_15: -2.92725113e-02 + art_sys_16: 6.38583454e-16 + art_sys_17: 1.74624816e-16 + art_sys_18: -8.67938826e-03 + art_sys_19: 6.34552644e-16 + art_sys_20: -1.17905227e-15 + art_sys_21: -4.32484912e-03 + art_sys_22: -1.71010049e-16 + art_sys_23: -3.17572917e-16 art_sys_24: -1.00707911e-03 - art_sys_25: -2.51327007e-16 - art_sys_26: 9.29382709e-18 - art_sys_27: -2.24792727e-18 - art_sys_28: -3.01041197e-20 - art_sys_29: -2.66688069e-20 - art_sys_30: 2.06410827e-17 - art_sys_31: -2.31392911e-17 - art_sys_32: 4.59616347e-20 - art_sys_33: -5.92605654e-20 - art_sys_34: -1.97892746e-06 - art_sys_35: 5.05138060e-17 - art_sys_36: 3.38370985e-07 - art_sys_37: 3.07441993e-17 - art_sys_38: 8.94437929e-20 - art_sys_39: 5.30963658e-17 - art_sys_40: 2.69849557e-07 - art_sys_41: 3.38714781e-17 - art_sys_42: -2.97496267e-18 - art_sys_43: 1.25694111e-18 - art_sys_44: 1.69075775e-19 - art_sys_45: 8.22317322e-20 - art_sys_46: 2.06436537e-17 + art_sys_25: 3.02186671e-18 + art_sys_26: 9.87384016e-19 + art_sys_27: -2.87860539e-19 + art_sys_28: -2.94693688e-17 + art_sys_29: 5.08528395e-17 + art_sys_30: 3.26811385e-20 + art_sys_31: 2.29968892e-21 + art_sys_32: 1.31289522e-19 + art_sys_33: 1.77356977e-19 + art_sys_34: 1.97892746e-06 + art_sys_35: 1.25422927e-18 + art_sys_36: -3.38370985e-07 + art_sys_37: 9.77641439e-18 + art_sys_38: -4.14544607e-19 + art_sys_39: 1.12699781e-15 + art_sys_40: -2.69849557e-07 + art_sys_41: 2.09403356e-16 + art_sys_42: 2.90632704e-17 + art_sys_43: -7.34759120e-20 + art_sys_44: -9.40466144e-21 + art_sys_45: -7.77833986e-20 + art_sys_46: 1.52898508e-17 art_sys_47: 2.52284988e-09 - art_sys_48: -1.64036647e-17 - art_sys_49: -1.13280562e-21 - art_sys_50: 1.80492885e-09 - art_sys_51: 1.83083388e-21 - art_sys_52: 3.11000084e-21 - art_sys_53: 9.94788194e-22 - art_sys_54: 2.84273460e-18 - art_sys_55: -2.49710473e-18 - art_sys_56: 4.15197237e-10 - art_sys_57: 1.36892629e-17 - art_sys_58: -3.27391055e-18 - art_sys_59: -9.49199733e-23 - art_sys_60: 1.19291136e-23 - art_sys_61: 7.65344247e-24 - art_sys_62: -1.32846235e-24 - art_sys_63: -3.42684943e-24 - art_sys_64: 8.00069014e-20 - art_sys_65: -8.24664487e-25 - art_sys_66: -4.83316578e-25 - art_sys_67: 2.04709718e-25 - art_sys_68: 2.84112112e-21 - art_sys_69: 1.21765795e-20 - art_sys_70: -2.44195641e-18 - art_sys_71: -1.05808264e-11 - art_sys_72: 7.87503866e-21 - art_sys_73: -9.97853440e-19 - art_sys_74: -2.90248566e-12 - art_sys_75: -1.37788874e-26 - art_sys_76: -3.24099043e-27 - art_sys_77: -5.25431662e-26 - art_sys_78: -5.74324939e-13 - art_sys_79: 1.02935292e-18 - art_sys_80: -1.01174806e-27 - art_sys_81: 4.79865397e-29 - art_sys_82: 4.19959010e-29 - art_sys_83: 5.05813189e-23 - art_sys_84: 2.98613314e-20 - art_sys_85: 1.87011534e-19 - art_sys_86: -2.23404429e-21 - art_sys_87: -4.64275387e-19 - art_sys_88: 1.19118427e-28 - art_sys_89: 2.86372377e-20 - art_sys_90: -1.82247914e-19 - art_sys_91: 6.01779513e-20 - art_sys_92: -7.99280717e-20 - art_sys_93: -8.78164240e-21 - art_sys_94: -4.32200665e-21 - art_sys_95: -9.21923599e-20 - art_sys_96: 3.71590019e-20 - art_sys_97: 1.15459541e-19 - art_sys_98: -2.79626580e-15 - art_sys_99: 1.39895325e-22 - art_sys_100: -1.18966289e-29 - art_sys_101: -4.57457195e-29 - art_sys_102: -2.81829944e-20 - art_sys_103: 3.77606255e-22 - art_sys_104: -4.83047038e-20 - art_sys_105: 2.73381635e-23 - art_sys_106: 3.84976642e-16 - art_sys_107: 7.00247375e-21 - art_sys_108: -1.00292543e-22 - art_sys_109: 1.04121720e-20 - art_sys_110: 7.47052119e-17 - art_sys_111: 7.61718941e-22 - art_sys_112: 8.38875528e-21 - art_sys_113: -1.04811195e-20 - art_sys_114: 2.12665117e-21 - art_sys_115: 1.38029318e-17 - art_sys_116: 3.02607326e-20 - art_sys_117: -4.51255159e-22 - art_sys_118: 3.32923263e-20 - art_sys_119: -5.49555759e-23 - art_sys_120: -2.09027027e-25 - art_sys_121: 1.10546210e-26 - art_sys_122: -4.57147608e-26 - art_sys_123: -1.79241302e-18 - art_sys_124: -2.04139501e-26 - art_sys_125: -3.22020399e-21 - art_sys_126: -3.32136324e-26 - art_sys_127: -2.32981446e-21 - art_sys_128: -2.90235549e-26 - art_sys_129: -2.39302075e-20 - art_sys_130: 1.96365823e-22 - art_sys_131: -5.43230552e-22 - art_sys_132: -1.63233655e-26 - art_sys_133: -3.87757548e-22 - art_sys_134: 1.40845529e-25 - art_sys_135: 1.87160432e-30 - art_sys_136: -1.14641687e-29 - art_sys_137: 2.58849654e-30 - art_sys_138: -1.55921778e-30 - art_sys_139: 1.20849094e-29 - art_sys_140: -5.86469897e-30 - art_sys_141: -2.72005128e-26 - art_sys_142: -4.28409410e-30 - art_sys_143: -1.61094658e-29 - art_sys_144: -6.26238357e-29 - art_sys_145: -4.02508817e-29 - art_sys_146: -4.54560198e-29 - art_sys_147: -1.03026230e-29 - art_sys_148: 3.33925722e-30 - art_sys_149: -2.07882806e-30 - art_sys_150: 3.26759114e-31 - art_sys_151: 2.12774019e-31 - art_sys_152: 2.99554286e-33 - art_sys_153: 9.46795224e-32 - art_sys_154: 2.35513879e-32 - art_sys_155: -3.04961805e-32 - art_sys_156: 2.28771769e-32 - art_sys_157: 1.05997040e-32 - art_sys_158: 3.97881817e-33 - art_sys_159: -9.63596080e-34 - art_sys_160: -1.32112418e-34 - art_sys_161: 8.66429031e-36 - art_sys_162: 8.08800006e-36 - art_sys_163: -2.61157207e-35 - art_sys_164: 1.74052190e-34 - art_sys_165: -1.80281450e-35 - art_sys_166: -3.14142412e-36 - art_sys_167: -2.55447563e-36 - art_sys_168: 1.22850836e-24 - art_sys_169: -1.00517120e-36 - art_sys_170: 2.23549413e-26 - art_sys_171: -1.58321956e-24 - art_sys_172: -5.54208846e-36 - art_sys_173: 1.95867969e-37 - art_sys_174: 1.35478246e-25 - art_sys_175: 0.0 - art_sys_176: 1.85322182e-27 - art_sys_177: 0.0 - art_sys_178: -2.16755586e-29 - art_sys_179: -4.62584048e-31 - art_sys_180: -1.12403022e-34 - art_sys_181: 7.39538560e-40 - art_sys_182: 0.0 - art_sys_183: -5.39309226e-39 - art_sys_184: -6.60064499e-39 - art_sys_185: -2.20254730e-41 + art_sys_48: -4.04327093e-17 + art_sys_49: -3.31136772e-20 + art_sys_50: 6.83982893e-22 + art_sys_51: -2.15535843e-21 + art_sys_52: -7.31608158e-22 + art_sys_53: 2.37393250e-22 + art_sys_54: 1.69888133e-22 + art_sys_55: -1.24029657e-19 + art_sys_56: 1.38023649e-19 + art_sys_57: 1.80492885e-09 + art_sys_58: 1.35890144e-23 + art_sys_59: -3.14687948e-24 + art_sys_60: -3.22400684e-17 + art_sys_61: -4.54528847e-19 + art_sys_62: -4.15197226e-10 + art_sys_63: 2.94306032e-21 + art_sys_64: -5.52179869e-17 + art_sys_65: -2.59126777e-25 + art_sys_66: -5.60782951e-26 + art_sys_67: 2.12802170e-19 + art_sys_68: -1.89825337e-20 + art_sys_69: 3.16378376e-20 + art_sys_70: 4.43487094e-19 + art_sys_71: -1.05808216e-11 + art_sys_72: 1.34683690e-19 + art_sys_73: -9.64489004e-23 + art_sys_74: 4.21171647e-23 + art_sys_75: 1.51363451e-23 + art_sys_76: 2.10385635e-23 + art_sys_77: -2.90248302e-12 + art_sys_78: -3.27327950e-22 + art_sys_79: -1.52453216e-24 + art_sys_80: 4.09320637e-26 + art_sys_81: -8.98070981e-25 + art_sys_82: -1.99217935e-25 + art_sys_83: -1.51199329e-22 + art_sys_84: 1.22670482e-25 + art_sys_85: -1.26378989e-25 + art_sys_86: 5.33509601e-22 + art_sys_87: 5.74325294e-13 + art_sys_88: -4.72425378e-23 + art_sys_89: 4.55654501e-25 + art_sys_90: 6.68839914e-20 + art_sys_91: -2.62056581e-23 + art_sys_92: -9.51144430e-19 + art_sys_93: 2.15847229e-19 + art_sys_94: 4.82148810e-20 + art_sys_95: -1.15798277e-21 + art_sys_96: 1.06107644e-23 + art_sys_97: -3.46937983e-19 + art_sys_98: -3.37652994e-20 + art_sys_99: 2.07353114e-19 + art_sys_100: 2.09882308e-22 + art_sys_101: -1.22302986e-20 + art_sys_102: -8.72949295e-20 + art_sys_103: 5.59243185e-24 + art_sys_104: 1.82767016e-19 + art_sys_105: -3.53360699e-21 + art_sys_106: 2.79634790e-15 + art_sys_107: -3.96220636e-23 + art_sys_108: 2.43070349e-24 + art_sys_109: 1.28912154e-23 + art_sys_110: -4.27397113e-20 + art_sys_111: -6.45713101e-20 + art_sys_112: -2.03774588e-21 + art_sys_113: 1.37684407e-25 + art_sys_114: 5.12991150e-20 + art_sys_115: -8.30279617e-22 + art_sys_116: -3.84944071e-16 + art_sys_117: 2.43682531e-20 + art_sys_118: 4.14193856e-21 + art_sys_119: -8.93658309e-21 + art_sys_120: -7.47421432e-17 + art_sys_121: -1.53125760e-21 + art_sys_122: 1.28758604e-20 + art_sys_123: -1.63101530e-20 + art_sys_124: 1.38024083e-21 + art_sys_125: -1.38062842e-17 + art_sys_126: -3.88800154e-21 + art_sys_127: -1.03951493e-20 + art_sys_128: -7.64719491e-21 + art_sys_129: -3.85831906e-21 + art_sys_130: -2.10878315e-20 + art_sys_131: 1.79335690e-18 + art_sys_132: 4.45747352e-21 + art_sys_133: -3.61684400e-20 + art_sys_134: -2.57187278e-23 + art_sys_135: -1.44065066e-21 + art_sys_136: -3.24938840e-21 + art_sys_137: 3.92661579e-24 + art_sys_138: -1.31612736e-21 + art_sys_139: -7.59643908e-22 + art_sys_140: -3.00000553e-21 + art_sys_141: -2.19658644e-20 + art_sys_142: 7.69726844e-22 + art_sys_143: -1.09542862e-24 + art_sys_144: 2.14771456e-25 + art_sys_145: 1.02665454e-23 + art_sys_146: 0.0 + art_sys_147: -9.83854217e-23 + art_sys_148: 5.86242230e-22 + art_sys_149: 5.86242230e-22 + art_sys_150: 1.12109134e-22 + art_sys_151: 1.12109134e-22 + art_sys_152: -4.89719754e-23 + art_sys_153: -8.64504453e-24 + art_sys_154: 6.25503972e-26 + art_sys_155: 8.75697850e-36 + art_sys_156: 8.18366492e-38 + art_sys_157: 3.33280936e-38 + art_sys_158: 0.0 + art_sys_159: -2.27992376e-23 + art_sys_160: 6.63538951e-24 + art_sys_161: 2.30229555e-23 + art_sys_162: 6.38641923e-25 + art_sys_163: 2.20898174e-22 + art_sys_164: 3.51998641e-23 + art_sys_165: -4.63856059e-25 + art_sys_166: -1.98952089e-31 + art_sys_167: -1.86938069e-31 + art_sys_168: 6.62835966e-32 + art_sys_169: -6.90589204e-33 + art_sys_170: 8.71720557e-33 + art_sys_171: -5.12035515e-33 + art_sys_172: -9.01059502e-33 + art_sys_173: 6.06071278e-34 + art_sys_174: 6.70679530e-34 + art_sys_175: -3.36987426e-36 + art_sys_176: -6.35182083e-36 + art_sys_177: -1.50755180e-34 + art_sys_178: 5.65106883e-35 + art_sys_179: -3.07187496e-35 + art_sys_180: 4.36354196e-35 + art_sys_181: 3.81010600e-38 + art_sys_182: -7.81513453e-36 + art_sys_183: -1.18411052e-37 + art_sys_184: 2.55451507e-39 + art_sys_185: 1.41859944e-39 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -56111,191 +56111,191 @@ bins: RelativeStatFSR-: -3.06833392e+01 luminosity_uncertainty: 4.83381600e+02 uncorrelated_uncertainty: 185.916 -- art_sys_1: -1.99155057e-13 - art_sys_2: -8.52558389e+01 - art_sys_3: -3.54044648e-14 - art_sys_4: 1.39499571e-13 +- art_sys_1: 7.56989629e-14 + art_sys_2: 2.59161586e-14 + art_sys_3: -8.52558389e+01 + art_sys_4: -6.95937945e-14 art_sys_5: 5.81247708e+01 - art_sys_6: 3.76503088e-15 - art_sys_7: -6.41074080e-14 - art_sys_8: 1.98691711e+01 - art_sys_9: 7.62205621e-15 - art_sys_10: -5.92071772e-15 - art_sys_11: -5.01987495e+00 - art_sys_12: -1.16713076e-16 - art_sys_13: -5.20346383e-15 - art_sys_14: 2.25226750e-15 - art_sys_15: -9.36409003e-02 - art_sys_16: -1.01325999e-15 - art_sys_17: 7.79117764e-16 - art_sys_18: -2.85277054e-02 - art_sys_19: -1.81369141e-15 - art_sys_20: 5.21852862e-15 - art_sys_21: -1.56399807e-02 - art_sys_22: -6.69187050e-16 - art_sys_23: -5.02522559e-16 + art_sys_6: -2.48079373e-14 + art_sys_7: -1.76429121e-14 + art_sys_8: -1.98691711e+01 + art_sys_9: -3.81145572e-15 + art_sys_10: -1.13330841e-15 + art_sys_11: 5.01987495e+00 + art_sys_12: 4.70886598e-15 + art_sys_13: 8.81150935e-15 + art_sys_14: 2.47611799e-15 + art_sys_15: 9.36409003e-02 + art_sys_16: -7.84827650e-16 + art_sys_17: -2.75551279e-16 + art_sys_18: 2.85277054e-02 + art_sys_19: -1.03524968e-15 + art_sys_20: 3.50845538e-15 + art_sys_21: 1.56399807e-02 + art_sys_22: 3.02710861e-16 + art_sys_23: 9.34705601e-16 art_sys_24: 3.82749610e-03 - art_sys_25: 3.60472271e-15 - art_sys_26: -1.31337065e-16 - art_sys_27: 5.11742735e-18 - art_sys_28: 1.86215182e-19 - art_sys_29: 3.71984385e-20 - art_sys_30: -8.81124430e-17 - art_sys_31: 5.05061000e-17 - art_sys_32: -9.45882964e-20 - art_sys_33: -1.07307519e-19 - art_sys_34: 1.07622457e-05 - art_sys_35: -1.01085281e-16 - art_sys_36: -2.18339375e-06 - art_sys_37: -7.78317520e-17 - art_sys_38: -5.41171402e-20 - art_sys_39: -2.50014580e-16 - art_sys_40: -1.47227065e-06 - art_sys_41: -8.38339580e-17 - art_sys_42: 1.99607838e-17 - art_sys_43: -4.98478472e-18 - art_sys_44: 9.47078705e-19 - art_sys_45: -4.56625076e-20 - art_sys_46: -8.36369160e-17 + art_sys_25: 1.15436473e-18 + art_sys_26: -5.37473601e-18 + art_sys_27: 1.69839342e-18 + art_sys_28: 9.65785799e-17 + art_sys_29: -1.31419776e-16 + art_sys_30: -1.17122293e-19 + art_sys_31: 6.21557539e-20 + art_sys_32: -4.85976492e-19 + art_sys_33: -1.97902912e-19 + art_sys_34: -1.07622457e-05 + art_sys_35: 3.31067400e-18 + art_sys_36: 2.18339375e-06 + art_sys_37: 9.93959944e-17 + art_sys_38: -2.07967139e-19 + art_sys_39: -6.06813978e-15 + art_sys_40: 1.47227065e-06 + art_sys_41: -1.22274836e-15 + art_sys_42: -6.35393941e-17 + art_sys_43: -2.39056452e-21 + art_sys_44: -1.07134474e-20 + art_sys_45: -5.50103712e-20 + art_sys_46: -6.32158695e-17 art_sys_47: -3.72127349e-08 - art_sys_48: 4.06339425e-17 - art_sys_49: -9.41811891e-21 - art_sys_50: -1.05364930e-08 - art_sys_51: -4.81836211e-21 - art_sys_52: -2.49946367e-20 - art_sys_53: 3.73457596e-20 - art_sys_54: 6.74245051e-18 - art_sys_55: 2.85046203e-17 - art_sys_56: -3.35859086e-09 - art_sys_57: -9.58797982e-17 - art_sys_58: 1.48283921e-17 - art_sys_59: 6.74350795e-22 - art_sys_60: -7.57755441e-23 - art_sys_61: -5.62015115e-23 - art_sys_62: 1.00065390e-23 - art_sys_63: 2.58317727e-23 - art_sys_64: -2.31895043e-19 - art_sys_65: 6.54574425e-24 - art_sys_66: 3.62408158e-24 - art_sys_67: -1.57861608e-24 - art_sys_68: -2.70568345e-20 - art_sys_69: -8.92551098e-20 - art_sys_70: 2.76155453e-17 - art_sys_71: 7.93975665e-11 - art_sys_72: -9.26490985e-21 - art_sys_73: 4.97464547e-18 - art_sys_74: 1.87485342e-11 - art_sys_75: 2.80260456e-26 - art_sys_76: 6.39760484e-26 - art_sys_77: 2.12586765e-25 - art_sys_78: 4.41112241e-12 - art_sys_79: -4.55338179e-18 - art_sys_80: 1.20895290e-26 - art_sys_81: 3.58425330e-28 - art_sys_82: -3.36778017e-28 - art_sys_83: 1.40268286e-21 - art_sys_84: -4.22795920e-19 - art_sys_85: -1.46506393e-18 - art_sys_86: 3.08481346e-21 - art_sys_87: 2.82796053e-18 - art_sys_88: -2.08006326e-28 - art_sys_89: -1.01238778e-19 - art_sys_90: 6.45357059e-19 - art_sys_91: -4.96984978e-19 - art_sys_92: 2.23223032e-19 - art_sys_93: 4.27139554e-20 - art_sys_94: 2.22646090e-20 - art_sys_95: 2.39925819e-19 - art_sys_96: -2.85059911e-19 - art_sys_97: -3.70340675e-19 - art_sys_98: 9.90569170e-15 - art_sys_99: -7.45012212e-22 - art_sys_100: -2.39808925e-29 - art_sys_101: 2.82135573e-30 - art_sys_102: 1.14674231e-19 - art_sys_103: -2.25949802e-21 - art_sys_104: 1.74910431e-19 - art_sys_105: -8.53169232e-23 - art_sys_106: -1.98411993e-15 - art_sys_107: -3.07945969e-20 - art_sys_108: 4.75508351e-22 - art_sys_109: -5.18077530e-20 - art_sys_110: -3.83945789e-16 - art_sys_111: -3.60904148e-21 - art_sys_112: -4.66197173e-20 - art_sys_113: 5.60669783e-20 - art_sys_114: -1.18456503e-20 - art_sys_115: -6.30779008e-17 - art_sys_116: -1.55390790e-19 - art_sys_117: 3.40859897e-21 - art_sys_118: -1.71271366e-19 - art_sys_119: 2.59933859e-22 - art_sys_120: 9.65299445e-25 - art_sys_121: -8.45709738e-26 - art_sys_122: 2.66186866e-25 - art_sys_123: 8.49041233e-18 - art_sys_124: 9.09132130e-26 - art_sys_125: 1.65772331e-20 - art_sys_126: 1.54375158e-25 - art_sys_127: 1.18528281e-20 - art_sys_128: 1.41305089e-25 - art_sys_129: 1.57353379e-19 - art_sys_130: -1.09166416e-21 - art_sys_131: 2.70444300e-21 - art_sys_132: 8.20385292e-26 - art_sys_133: 1.96176094e-21 - art_sys_134: -7.06148753e-25 - art_sys_135: -2.67470017e-29 - art_sys_136: 6.12786519e-29 - art_sys_137: -3.68130240e-30 - art_sys_138: 4.13823164e-30 - art_sys_139: -5.43453255e-29 - art_sys_140: 3.89102820e-29 - art_sys_141: 1.38427219e-25 - art_sys_142: 1.39823479e-29 - art_sys_143: 8.16102419e-29 - art_sys_144: 3.86342289e-28 - art_sys_145: 2.07293716e-28 - art_sys_146: 3.63994886e-28 - art_sys_147: 2.27911819e-29 - art_sys_148: -6.97959560e-30 - art_sys_149: 1.05342923e-29 - art_sys_150: -6.34378318e-31 - art_sys_151: -1.03705297e-30 - art_sys_152: 3.39519555e-32 - art_sys_153: -5.75149929e-31 - art_sys_154: -1.18961451e-31 - art_sys_155: 1.99714515e-31 - art_sys_156: -1.67720389e-31 - art_sys_157: -6.42227388e-32 - art_sys_158: -2.47257345e-32 - art_sys_159: 5.98703678e-33 - art_sys_160: 1.03030794e-33 - art_sys_161: -2.83778085e-35 - art_sys_162: -4.73670572e-35 - art_sys_163: 1.86577514e-34 - art_sys_164: -1.16301346e-33 - art_sys_165: 1.07897619e-34 - art_sys_166: 1.65825879e-35 - art_sys_167: -1.02892838e-35 - art_sys_168: -6.21583585e-24 - art_sys_169: 5.67447696e-36 - art_sys_170: -1.14261819e-25 - art_sys_171: 7.97954745e-24 - art_sys_172: 3.40183437e-35 - art_sys_173: -1.09445047e-36 - art_sys_174: -6.82865966e-25 - art_sys_175: 0.0 - art_sys_176: -9.34114451e-27 - art_sys_177: 0.0 - art_sys_178: 1.09256657e-28 - art_sys_179: 2.34042839e-30 - art_sys_180: 5.65575736e-34 - art_sys_181: -3.72833730e-39 - art_sys_182: 0.0 - art_sys_183: 2.72958580e-38 - art_sys_184: 3.39759696e-38 - art_sys_185: 1.13058980e-40 + art_sys_48: 2.11281275e-16 + art_sys_49: 4.27327494e-20 + art_sys_50: -5.41074568e-22 + art_sys_51: 7.36759550e-21 + art_sys_52: 2.88916511e-21 + art_sys_53: -1.14478053e-21 + art_sys_54: -1.23395633e-21 + art_sys_55: 4.66669142e-18 + art_sys_56: 3.21599928e-19 + art_sys_57: -1.05364930e-08 + art_sys_58: -1.19476954e-22 + art_sys_59: 2.09192952e-23 + art_sys_60: 2.62098229e-16 + art_sys_61: -1.43581566e-18 + art_sys_62: 3.35859077e-09 + art_sys_63: -9.40452642e-21 + art_sys_64: 4.19158524e-16 + art_sys_65: 1.95782297e-24 + art_sys_66: 3.77260194e-25 + art_sys_67: -2.12509770e-18 + art_sys_68: 5.00901387e-20 + art_sys_69: -8.44931263e-20 + art_sys_70: -3.65323477e-19 + art_sys_71: 7.93975368e-11 + art_sys_72: -1.42995887e-18 + art_sys_73: 5.96608364e-22 + art_sys_74: -2.81197445e-22 + art_sys_75: -1.01493366e-22 + art_sys_76: -1.35907768e-22 + art_sys_77: 1.87485147e-11 + art_sys_78: -8.60803215e-21 + art_sys_79: 1.22942757e-23 + art_sys_80: -4.10991560e-25 + art_sys_81: 6.85267458e-24 + art_sys_82: 1.52335737e-24 + art_sys_83: 5.51750820e-22 + art_sys_84: -9.08884792e-25 + art_sys_85: 9.86726978e-25 + art_sys_86: -2.74988093e-21 + art_sys_87: -4.41112512e-12 + art_sys_88: 2.42824985e-22 + art_sys_89: -2.19273849e-24 + art_sys_90: 1.70139140e-18 + art_sys_91: -1.66340137e-21 + art_sys_92: 6.70729478e-18 + art_sys_93: -1.68333944e-18 + art_sys_94: -3.23584705e-19 + art_sys_95: 5.01134927e-21 + art_sys_96: -4.85493645e-23 + art_sys_97: 1.22865256e-18 + art_sys_98: 4.90311168e-20 + art_sys_99: -1.69861015e-18 + art_sys_100: -1.11405017e-21 + art_sys_101: -3.83527978e-20 + art_sys_102: 2.43556799e-19 + art_sys_103: -7.22521223e-22 + art_sys_104: -1.46829656e-18 + art_sys_105: 1.62965994e-20 + art_sys_106: -9.90598289e-15 + art_sys_107: 1.87695072e-22 + art_sys_108: -1.15598176e-23 + art_sys_109: -6.53148086e-23 + art_sys_110: 2.20159179e-19 + art_sys_111: 2.25551546e-19 + art_sys_112: 1.10765019e-20 + art_sys_113: -1.05891323e-24 + art_sys_114: -1.73046633e-19 + art_sys_115: 3.77894049e-21 + art_sys_116: 1.98395251e-15 + art_sys_117: -9.40260458e-20 + art_sys_118: -1.89225822e-20 + art_sys_119: 4.09741422e-20 + art_sys_120: 3.84135532e-16 + art_sys_121: 7.06775502e-21 + art_sys_122: -6.21012034e-20 + art_sys_123: 8.58006712e-20 + art_sys_124: -6.50593363e-21 + art_sys_125: 6.30933753e-17 + art_sys_126: 1.84075973e-20 + art_sys_127: 4.76409124e-20 + art_sys_128: 3.64059140e-20 + art_sys_129: 2.13136394e-20 + art_sys_130: 1.00269607e-19 + art_sys_131: -8.49509199e-18 + art_sys_132: -2.14465807e-20 + art_sys_133: 1.71815503e-19 + art_sys_134: 1.25520025e-22 + art_sys_135: 7.17341996e-21 + art_sys_136: 1.59243640e-20 + art_sys_137: -1.93142289e-23 + art_sys_138: 1.03236684e-20 + art_sys_139: 3.88968672e-21 + art_sys_140: 1.48819219e-20 + art_sys_141: 1.48993637e-19 + art_sys_142: -4.27749227e-21 + art_sys_143: 5.24826774e-24 + art_sys_144: -2.60970407e-25 + art_sys_145: -5.89391466e-23 + art_sys_146: -0.0 + art_sys_147: 5.23551721e-22 + art_sys_148: -2.59351918e-21 + art_sys_149: -2.59351918e-21 + art_sys_150: -9.42373534e-22 + art_sys_151: -9.42373534e-22 + art_sys_152: 2.71598079e-22 + art_sys_153: 1.13384728e-22 + art_sys_154: -3.50112844e-25 + art_sys_155: 3.23230140e-35 + art_sys_156: -3.69872411e-37 + art_sys_157: -1.57586166e-37 + art_sys_158: -0.0 + art_sys_159: 1.53248209e-22 + art_sys_160: -4.42583149e-23 + art_sys_161: -1.52532038e-22 + art_sys_162: -4.23318685e-24 + art_sys_163: -1.42028258e-21 + art_sys_164: -2.24588402e-22 + art_sys_165: 1.64581604e-24 + art_sys_166: 1.30490464e-30 + art_sys_167: 1.24751697e-30 + art_sys_168: -4.42228394e-31 + art_sys_169: 2.60125727e-32 + art_sys_170: -3.91088267e-32 + art_sys_171: 2.75434118e-32 + art_sys_172: 2.74961519e-32 + art_sys_173: -8.82462793e-33 + art_sys_174: -4.15186554e-33 + art_sys_175: 1.93663344e-35 + art_sys_176: 2.31812000e-35 + art_sys_177: 6.64224856e-34 + art_sys_178: -2.60358541e-34 + art_sys_179: 1.55841963e-34 + art_sys_180: -2.13279644e-34 + art_sys_181: -4.70159584e-37 + art_sys_182: 5.29276884e-35 + art_sys_183: 7.43404099e-37 + art_sys_184: -1.37618913e-38 + art_sys_185: -7.02636126e-39 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -56402,191 +56402,191 @@ bins: RelativeStatFSR-: -1.61856792e+01 luminosity_uncertainty: 241.8286 uncorrelated_uncertainty: 9.30110000e+01 -- art_sys_1: -2.86236107e-14 - art_sys_2: -8.35379826e+00 - art_sys_3: -5.38290032e-14 - art_sys_4: -3.27855798e-14 +- art_sys_1: 1.03148364e-14 + art_sys_2: 5.38275766e-14 + art_sys_3: -8.35379826e+00 + art_sys_4: -6.89092094e-15 art_sys_5: 5.65117323e+01 - art_sys_6: 5.64133617e-15 - art_sys_7: 2.56048900e-14 - art_sys_8: -1.98072711e+01 - art_sys_9: -6.96007223e-16 - art_sys_10: 9.64079113e-15 - art_sys_11: 7.92238438e+00 - art_sys_12: 1.26512434e-15 - art_sys_13: 1.60033122e-14 - art_sys_14: -2.22237036e-15 - art_sys_15: 3.13455227e-01 - art_sys_16: 1.13514400e-17 - art_sys_17: -9.54951465e-16 - art_sys_18: 7.50215504e-02 - art_sys_19: 2.39244798e-15 - art_sys_20: -7.98007353e-15 - art_sys_21: 4.86733428e-02 - art_sys_22: 1.25246956e-15 - art_sys_23: 7.97863454e-16 + art_sys_6: -1.60301916e-15 + art_sys_7: -7.60460998e-15 + art_sys_8: 1.98072711e+01 + art_sys_9: 2.97517922e-15 + art_sys_10: -1.15475953e-15 + art_sys_11: -7.92238438e+00 + art_sys_12: -1.14119008e-14 + art_sys_13: -1.88008563e-14 + art_sys_14: -3.27453831e-15 + art_sys_15: -3.13455227e-01 + art_sys_16: 3.91969471e-16 + art_sys_17: 6.73630337e-16 + art_sys_18: -7.50215504e-02 + art_sys_19: 9.13511785e-16 + art_sys_20: -5.41062330e-15 + art_sys_21: -4.86733428e-02 + art_sys_22: -4.29131464e-16 + art_sys_23: -1.41803125e-15 art_sys_24: -1.23672193e-02 - art_sys_25: -8.08532634e-16 - art_sys_26: 1.16241085e-16 - art_sys_27: 1.46713693e-17 - art_sys_28: -7.86829652e-19 - art_sys_29: 1.59903806e-20 - art_sys_30: 2.09691875e-16 - art_sys_31: -7.76680813e-17 - art_sys_32: 1.26313840e-19 - art_sys_33: -2.14713082e-20 - art_sys_34: -3.08573026e-05 - art_sys_35: -5.44065381e-17 - art_sys_36: 8.55392108e-06 - art_sys_37: 1.71371469e-16 - art_sys_38: -1.32285008e-19 - art_sys_39: 8.84993871e-16 - art_sys_40: 5.06643749e-06 - art_sys_41: 6.56194879e-17 - art_sys_42: -2.98391235e-17 - art_sys_43: 2.50060006e-18 - art_sys_44: -5.15084897e-19 - art_sys_45: 1.57097228e-20 - art_sys_46: 3.03436770e-16 + art_sys_25: 2.70087621e-19 + art_sys_26: 1.56295700e-17 + art_sys_27: -5.11277364e-18 + art_sys_28: -1.88064912e-16 + art_sys_29: 2.45248259e-16 + art_sys_30: 1.16815592e-19 + art_sys_31: -8.43780186e-20 + art_sys_32: 2.88734456e-19 + art_sys_33: -4.95246482e-20 + art_sys_34: 3.08573026e-05 + art_sys_35: -1.46003468e-16 + art_sys_36: -8.55392108e-06 + art_sys_37: -5.91608253e-16 + art_sys_38: 5.42422808e-20 + art_sys_39: 2.08359844e-14 + art_sys_40: -5.06643749e-06 + art_sys_41: 4.25909595e-15 + art_sys_42: 1.14560093e-16 + art_sys_43: -3.55569180e-20 + art_sys_44: -7.61640032e-21 + art_sys_45: 2.91190624e-19 + art_sys_46: 2.30564254e-16 art_sys_47: 1.42109417e-07 - art_sys_48: -3.04186743e-17 - art_sys_49: 7.28882164e-21 - art_sys_50: 4.10425761e-08 - art_sys_51: 2.20357440e-20 - art_sys_52: 9.35280237e-20 - art_sys_53: -8.11083471e-20 - art_sys_54: -5.85963126e-17 - art_sys_55: -1.00655974e-16 - art_sys_56: 1.26238491e-08 - art_sys_57: 3.51110257e-16 - art_sys_58: -5.45056107e-17 - art_sys_59: -3.05635410e-21 - art_sys_60: 3.39315964e-22 - art_sys_61: 2.47375545e-22 - art_sys_62: -4.18731170e-23 - art_sys_63: -1.15083330e-22 - art_sys_64: 4.42052815e-19 - art_sys_65: -2.98683490e-23 - art_sys_66: -1.62743819e-23 - art_sys_67: 6.92533236e-24 - art_sys_68: 1.29628094e-19 - art_sys_69: 1.76125251e-19 - art_sys_70: -1.40392041e-16 - art_sys_71: -3.57463948e-10 - art_sys_72: -6.38955768e-21 - art_sys_73: -1.90733979e-17 - art_sys_74: -7.25956004e-11 - art_sys_75: -2.12813485e-26 - art_sys_76: -3.64629291e-25 - art_sys_77: -4.97876674e-25 - art_sys_78: -1.82999072e-11 - art_sys_79: 1.43877097e-17 - art_sys_80: -3.59096669e-26 - art_sys_81: -1.72558914e-27 - art_sys_82: 1.47607675e-27 - art_sys_83: -5.75276687e-21 - art_sys_84: 2.33075869e-18 - art_sys_85: 5.43966852e-18 - art_sys_86: -9.06138066e-21 - art_sys_87: -1.10696843e-17 - art_sys_88: 9.63730163e-28 - art_sys_89: 5.04107212e-19 - art_sys_90: -1.88332835e-18 - art_sys_91: 1.89628239e-18 - art_sys_92: -3.49067140e-19 - art_sys_93: -1.58362982e-19 - art_sys_94: -7.87640329e-20 - art_sys_95: -3.54692189e-19 - art_sys_96: 1.06943042e-18 - art_sys_97: 1.56818324e-18 - art_sys_98: -4.92752348e-14 - art_sys_99: 2.79478904e-21 - art_sys_100: 5.79687835e-29 - art_sys_101: 1.34707696e-29 - art_sys_102: -6.80212551e-19 - art_sys_103: 1.20849111e-20 - art_sys_104: -8.25429838e-19 - art_sys_105: 3.45775446e-22 - art_sys_106: 7.01559135e-15 - art_sys_107: 1.30941022e-19 - art_sys_108: -1.95143430e-21 - art_sys_109: 1.89150395e-19 - art_sys_110: 1.77727852e-15 - art_sys_111: 1.47919476e-20 - art_sys_112: 2.04737538e-19 - art_sys_113: -2.65968079e-19 - art_sys_114: 5.75965812e-20 - art_sys_115: 2.52018800e-16 - art_sys_116: 7.19637847e-19 - art_sys_117: -1.47187711e-20 - art_sys_118: 7.93335432e-19 - art_sys_119: -1.06474152e-21 - art_sys_120: -3.98766362e-24 - art_sys_121: 2.40709991e-25 - art_sys_122: -1.27241556e-24 - art_sys_123: -3.47950671e-17 - art_sys_124: -4.91303274e-25 - art_sys_125: -7.69956367e-20 - art_sys_126: -7.05485154e-25 - art_sys_127: -5.41129482e-20 - art_sys_128: -6.40968932e-25 - art_sys_129: -6.77224334e-19 - art_sys_130: 5.62526825e-21 - art_sys_131: -1.17370288e-20 - art_sys_132: -3.35282757e-25 - art_sys_133: -8.33372231e-21 - art_sys_134: 2.99165804e-24 - art_sys_135: 1.70024556e-28 - art_sys_136: -1.00402875e-28 - art_sys_137: 1.22579785e-29 - art_sys_138: -1.21496535e-29 - art_sys_139: 1.36056722e-28 - art_sys_140: -6.78268701e-29 - art_sys_141: -5.89080855e-25 - art_sys_142: -7.35879109e-29 - art_sys_143: -3.47852510e-28 - art_sys_144: -1.66187445e-27 - art_sys_145: -8.60140335e-28 - art_sys_146: -1.43852783e-27 - art_sys_147: -6.32067912e-29 - art_sys_148: 2.96142907e-29 - art_sys_149: -4.19502095e-29 - art_sys_150: 1.17939050e-30 - art_sys_151: 4.34534534e-30 - art_sys_152: -1.58922490e-31 - art_sys_153: 2.46499331e-30 - art_sys_154: 5.13285066e-31 - art_sys_155: -8.58720403e-31 - art_sys_156: 7.25412067e-31 - art_sys_157: 2.75116587e-31 - art_sys_158: 1.06093177e-31 - art_sys_159: -2.56411932e-32 - art_sys_160: -4.50979450e-33 - art_sys_161: 9.97692728e-35 - art_sys_162: 2.03903424e-34 - art_sys_163: -8.11593272e-34 - art_sys_164: 5.01663579e-33 - art_sys_165: -4.57188017e-34 - art_sys_166: -6.91249066e-35 - art_sys_167: 5.89379237e-35 - art_sys_168: 2.64462250e-23 - art_sys_169: -2.44464419e-35 - art_sys_170: 5.20569716e-25 - art_sys_171: -3.30706212e-23 - art_sys_172: -1.45773968e-34 - art_sys_173: 4.34447985e-36 - art_sys_174: 2.83163747e-24 - art_sys_175: 0.0 - art_sys_176: 3.87389029e-26 - art_sys_177: 0.0 - art_sys_178: -4.53321866e-28 - art_sys_179: -9.94057775e-30 - art_sys_180: -2.30663178e-33 - art_sys_181: 1.53004920e-38 - art_sys_182: 0.0 - art_sys_183: -1.13291976e-37 - art_sys_184: -1.58130914e-37 - art_sys_185: -4.78520187e-40 + art_sys_48: -8.07277727e-16 + art_sys_49: -8.27851076e-20 + art_sys_50: -4.51358380e-21 + art_sys_51: -2.31303609e-20 + art_sys_52: -1.08211705e-20 + art_sys_53: 5.06570993e-21 + art_sys_54: 4.72068374e-21 + art_sys_55: -1.71875022e-17 + art_sys_56: -7.43538982e-19 + art_sys_57: 4.10425761e-08 + art_sys_58: 4.51262086e-22 + art_sys_59: -8.33658913e-23 + art_sys_60: -9.91465410e-16 + art_sys_61: 3.22247389e-18 + art_sys_62: -1.26238487e-08 + art_sys_63: 2.54494076e-20 + art_sys_64: -1.55564336e-15 + art_sys_65: -8.91359783e-24 + art_sys_66: -1.40730358e-24 + art_sys_67: 1.09559037e-17 + art_sys_68: -1.22727706e-19 + art_sys_69: 5.84247268e-20 + art_sys_70: -1.09805086e-18 + art_sys_71: -3.57463838e-10 + art_sys_72: 5.76913311e-18 + art_sys_73: -2.25435338e-21 + art_sys_74: 1.10259320e-21 + art_sys_75: 4.00486677e-22 + art_sys_76: 5.26265748e-22 + art_sys_77: -7.25955118e-11 + art_sys_78: 3.52780210e-20 + art_sys_79: -5.06211900e-23 + art_sys_80: 1.90503034e-24 + art_sys_81: -2.84691604e-23 + art_sys_82: -6.31182175e-24 + art_sys_83: -2.71974720e-21 + art_sys_84: 3.80466833e-24 + art_sys_85: -4.08143042e-24 + art_sys_86: 9.69531707e-21 + art_sys_87: 1.82999185e-11 + art_sys_88: -9.91898723e-22 + art_sys_89: 9.24165601e-24 + art_sys_90: -8.52810754e-18 + art_sys_91: -3.07748786e-22 + art_sys_92: -2.72892736e-17 + art_sys_93: 6.40558783e-18 + art_sys_94: 1.48744818e-18 + art_sys_95: -2.65487120e-20 + art_sys_96: 1.94151227e-22 + art_sys_97: -6.11246417e-18 + art_sys_98: 1.78304356e-20 + art_sys_99: 6.37636120e-18 + art_sys_100: 6.05591373e-21 + art_sys_101: -1.05932751e-20 + art_sys_102: -3.94675251e-19 + art_sys_103: 2.89016423e-21 + art_sys_104: 5.52056969e-18 + art_sys_105: -5.97902748e-20 + art_sys_106: 4.92766844e-14 + art_sys_107: -7.69258933e-22 + art_sys_108: 4.74192785e-23 + art_sys_109: 2.70673068e-22 + art_sys_110: -7.67143843e-19 + art_sys_111: -1.04437077e-18 + art_sys_112: -5.47954319e-20 + art_sys_113: 4.63167967e-24 + art_sys_114: 7.42974455e-19 + art_sys_115: -1.50958045e-20 + art_sys_116: -7.01501276e-15 + art_sys_117: 5.61409718e-19 + art_sys_118: 7.55876276e-20 + art_sys_119: -2.32176504e-19 + art_sys_120: -1.77815554e-15 + art_sys_121: -2.88454100e-20 + art_sys_122: 1.85362035e-19 + art_sys_123: -3.89263438e-19 + art_sys_124: 2.66434447e-20 + art_sys_125: -2.52081841e-16 + art_sys_126: -7.54355302e-20 + art_sys_127: -1.93588248e-19 + art_sys_128: -1.49319814e-19 + art_sys_129: -1.09612267e-19 + art_sys_130: -4.11192517e-19 + art_sys_131: 3.48148191e-17 + art_sys_132: 9.26092303e-20 + art_sys_133: -7.04491116e-19 + art_sys_134: -5.22019692e-22 + art_sys_135: -3.16909306e-20 + art_sys_136: -6.56632448e-20 + art_sys_137: 8.15591637e-23 + art_sys_138: -3.82979883e-20 + art_sys_139: -1.56218180e-20 + art_sys_140: -6.13319443e-20 + art_sys_141: -6.43535011e-19 + art_sys_142: 1.78890307e-20 + art_sys_143: -2.21449257e-23 + art_sys_144: 8.32389301e-25 + art_sys_145: 2.52188730e-22 + art_sys_146: 0.0 + art_sys_147: -2.21747353e-21 + art_sys_148: 1.06261914e-20 + art_sys_149: 1.06261914e-20 + art_sys_150: 4.23393207e-21 + art_sys_151: 4.23393207e-21 + art_sys_152: -1.32886086e-21 + art_sys_153: -5.17153253e-22 + art_sys_154: 1.50045287e-24 + art_sys_155: -1.47572609e-34 + art_sys_156: 1.51445561e-36 + art_sys_157: 6.48477070e-37 + art_sys_158: 0.0 + art_sys_159: -6.60790552e-22 + art_sys_160: 1.90655591e-22 + art_sys_161: 6.56785128e-22 + art_sys_162: 1.82353208e-23 + art_sys_163: 6.10263106e-21 + art_sys_164: 9.62808978e-22 + art_sys_165: -6.32625089e-24 + art_sys_166: -5.61872224e-30 + art_sys_167: -5.39305540e-30 + art_sys_168: 1.90553986e-30 + art_sys_169: -1.02776382e-31 + art_sys_170: 1.89604650e-31 + art_sys_171: -1.19316710e-31 + art_sys_172: -1.16122421e-31 + art_sys_173: 3.74326763e-32 + art_sys_174: 1.80075203e-32 + art_sys_175: -8.29714868e-35 + art_sys_176: -1.58856002e-34 + art_sys_177: -2.90947132e-33 + art_sys_178: 1.11257690e-33 + art_sys_179: -6.61728755e-34 + art_sys_180: 9.07170378e-34 + art_sys_181: 1.89047897e-36 + art_sys_182: -2.28148146e-34 + art_sys_183: -3.19340532e-36 + art_sys_184: 5.89477959e-38 + art_sys_185: 2.97034744e-38 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -56693,191 +56693,191 @@ bins: RelativeStatFSR-: -7.42705277e+00 luminosity_uncertainty: 1.04034060e+02 uncorrelated_uncertainty: 40.0131 -- art_sys_1: 1.72248181e-14 - art_sys_2: 8.88853667e+00 - art_sys_3: -1.49605888e-14 - art_sys_4: -6.55292351e-15 +- art_sys_1: -5.95003272e-15 + art_sys_2: 1.65084096e-14 + art_sys_3: 8.88853667e+00 + art_sys_4: 5.61719630e-14 art_sys_5: 1.22951844e+01 - art_sys_6: -5.54060199e-15 - art_sys_7: 1.38809969e-14 - art_sys_8: -3.34585640e+01 - art_sys_9: -4.88453711e-15 - art_sys_10: -8.25996389e-15 - art_sys_11: -8.18473636e+00 - art_sys_12: -2.35168750e-15 - art_sys_13: -1.41714100e-14 - art_sys_14: 3.43219214e-15 - art_sys_15: -2.97891803e-01 - art_sys_16: 1.22927297e-15 - art_sys_17: -2.54822900e-16 - art_sys_18: -1.66819769e-01 - art_sys_19: 2.81080963e-15 - art_sys_20: 8.44704919e-15 - art_sys_21: -9.56776610e-02 - art_sys_22: -1.36109010e-15 - art_sys_23: -5.39032735e-16 + art_sys_6: 3.08949625e-14 + art_sys_7: 7.84500965e-15 + art_sys_8: 3.34585640e+01 + art_sys_9: -6.51066043e-15 + art_sys_10: -2.51948092e-15 + art_sys_11: 8.18473636e+00 + art_sys_12: 8.04302465e-15 + art_sys_13: 1.69102924e-14 + art_sys_14: 3.93254433e-15 + art_sys_15: 2.97891803e-01 + art_sys_16: 8.11355179e-17 + art_sys_17: -8.86849103e-16 + art_sys_18: 1.66819769e-01 + art_sys_19: 4.88124754e-15 + art_sys_20: 5.65642731e-15 + art_sys_21: 9.56776610e-02 + art_sys_22: 1.51941936e-16 + art_sys_23: 1.41215914e-15 art_sys_24: 2.86389368e-02 - art_sys_25: 8.48487994e-16 - art_sys_26: -8.23342150e-17 - art_sys_27: -7.83396263e-19 - art_sys_28: 2.23483021e-18 - art_sys_29: 3.73313869e-19 - art_sys_30: -2.28505429e-16 - art_sys_31: 8.25464860e-17 - art_sys_32: -1.22482185e-18 - art_sys_33: -6.36937577e-19 - art_sys_34: 1.15703962e-04 - art_sys_35: 5.72020978e-16 - art_sys_36: -2.46174492e-05 - art_sys_37: -3.95105750e-16 - art_sys_38: -1.30807731e-18 - art_sys_39: -2.40600016e-15 - art_sys_40: -1.71523137e-05 - art_sys_41: 2.33216575e-16 - art_sys_42: 4.21304916e-17 - art_sys_43: 3.24454672e-18 - art_sys_44: -9.48571733e-19 - art_sys_45: -9.69577077e-21 - art_sys_46: -6.57717082e-16 - art_sys_47: -5.14892200e-07 - art_sys_48: -8.28140969e-17 - art_sys_49: 1.02585929e-20 - art_sys_50: -1.34128404e-07 - art_sys_51: -8.43101368e-20 - art_sys_52: -3.41434054e-19 - art_sys_53: 2.73007304e-19 - art_sys_54: 2.66738399e-16 - art_sys_55: 3.76544151e-16 - art_sys_56: -4.59054549e-08 - art_sys_57: -1.24859901e-15 - art_sys_58: 1.70540788e-16 - art_sys_59: 9.03360090e-21 - art_sys_60: -1.00572404e-21 - art_sys_61: -7.60662416e-22 - art_sys_62: 1.38613568e-22 - art_sys_63: 3.50425916e-22 - art_sys_64: -1.23091228e-18 - art_sys_65: 8.89030731e-23 - art_sys_66: 4.90880868e-23 - art_sys_67: -2.14995937e-23 - art_sys_68: -4.22108308e-19 - art_sys_69: -6.81469136e-19 - art_sys_70: 4.33238016e-16 - art_sys_71: 1.07284806e-09 - art_sys_72: -3.04105126e-21 - art_sys_73: 5.92392869e-17 - art_sys_74: 2.58469146e-10 - art_sys_75: 1.59870826e-25 - art_sys_76: 7.87866506e-25 - art_sys_77: 1.73225565e-24 - art_sys_78: 6.14858253e-11 - art_sys_79: -4.71712826e-17 - art_sys_80: 1.24069193e-25 - art_sys_81: 5.80711061e-27 - art_sys_82: -4.59157371e-27 - art_sys_83: 2.56735195e-20 - art_sys_84: -9.42077450e-18 - art_sys_85: -1.98169009e-17 - art_sys_86: 2.94444435e-20 - art_sys_87: 3.56868539e-17 - art_sys_88: -3.60323643e-27 - art_sys_89: -1.36411425e-18 - art_sys_90: 4.87224796e-18 - art_sys_91: -6.72786285e-18 - art_sys_92: 3.48166286e-19 - art_sys_93: 5.92541475e-19 - art_sys_94: 3.10837407e-19 - art_sys_95: 2.53819647e-19 - art_sys_96: -3.79552123e-18 - art_sys_97: -4.01485977e-18 - art_sys_98: 1.33485972e-13 - art_sys_99: -1.04379215e-20 - art_sys_100: -2.77626553e-28 - art_sys_101: -6.27440260e-28 - art_sys_102: 1.97657049e-18 - art_sys_103: -3.32499567e-20 - art_sys_104: 2.27223218e-18 - art_sys_105: -1.18153521e-21 - art_sys_106: -2.76762138e-14 - art_sys_107: -4.64950452e-19 - art_sys_108: 6.68380899e-21 - art_sys_109: -7.28307749e-19 - art_sys_110: -5.48699646e-15 - art_sys_111: -5.07073886e-20 - art_sys_112: -6.67506079e-19 - art_sys_113: 8.07001934e-19 - art_sys_114: -1.71795983e-19 - art_sys_115: -8.77705570e-16 - art_sys_116: -2.22045928e-18 - art_sys_117: 4.54195254e-20 - art_sys_118: -2.44813023e-18 - art_sys_119: 3.65087864e-21 - art_sys_120: 1.35520442e-23 - art_sys_121: -1.22008517e-24 - art_sys_122: 3.88191214e-24 - art_sys_123: 1.19284962e-16 - art_sys_124: 1.29134747e-24 - art_sys_125: 2.36958797e-19 - art_sys_126: 2.16896246e-24 - art_sys_127: 1.69034081e-19 - art_sys_128: 2.00049159e-24 - art_sys_129: 2.32480275e-18 - art_sys_130: -1.58374101e-20 - art_sys_131: 3.83846977e-20 - art_sys_132: 1.16629941e-24 - art_sys_133: 2.79072084e-20 - art_sys_134: -1.00290174e-23 - art_sys_135: -5.06452092e-28 - art_sys_136: 3.91579905e-28 - art_sys_137: -5.74387824e-29 - art_sys_138: 4.55363097e-29 - art_sys_139: -5.35023032e-28 - art_sys_140: 2.08863198e-28 - art_sys_141: 1.97110702e-24 - art_sys_142: 2.36904629e-28 - art_sys_143: 1.16535959e-27 - art_sys_144: 5.65300365e-27 - art_sys_145: 3.05885703e-27 - art_sys_146: 5.11804169e-27 - art_sys_147: -3.97049698e-30 - art_sys_148: -9.10100923e-29 - art_sys_149: 1.46158941e-28 - art_sys_150: -1.18894246e-29 - art_sys_151: -1.29700045e-29 - art_sys_152: 5.95350043e-31 - art_sys_153: -8.41145748e-30 - art_sys_154: -1.70917832e-30 - art_sys_155: 2.94922490e-30 - art_sys_156: -2.50961779e-30 - art_sys_157: -9.38859026e-31 - art_sys_158: -3.62681045e-31 - art_sys_159: 8.78036639e-32 - art_sys_160: 1.55550804e-32 - art_sys_161: -3.32494815e-34 - art_sys_162: -7.14072397e-34 - art_sys_163: 2.78410268e-33 - art_sys_164: -1.72173363e-32 - art_sys_165: 1.57355181e-33 - art_sys_166: 2.37379459e-34 - art_sys_167: -1.98605048e-34 - art_sys_168: -8.84232272e-23 - art_sys_169: 8.25929866e-35 - art_sys_170: -1.62663572e-24 - art_sys_171: 1.13478566e-22 - art_sys_172: 4.98746506e-34 - art_sys_173: -1.52988794e-35 - art_sys_174: -9.71119406e-24 - art_sys_175: 0.0 - art_sys_176: -1.32842660e-25 - art_sys_177: 0.0 - art_sys_178: 1.55374949e-27 - art_sys_179: 3.32943009e-29 - art_sys_180: 8.04231049e-33 - art_sys_181: -5.30288923e-38 - art_sys_182: 0.0 - art_sys_183: 3.88464784e-37 - art_sys_184: 4.85717486e-37 - art_sys_185: 1.61226429e-39 + art_sys_25: 5.17091400e-19 + art_sys_26: -5.72679017e-17 + art_sys_27: 1.90131184e-17 + art_sys_28: 2.51011657e-16 + art_sys_29: -5.03203180e-16 + art_sys_30: -1.11447017e-18 + art_sys_31: -1.91762428e-19 + art_sys_32: -9.37397827e-19 + art_sys_33: -1.43970237e-19 + art_sys_34: -1.15703962e-04 + art_sys_35: 2.95823510e-16 + art_sys_36: 2.46174492e-05 + art_sys_37: 2.04364338e-15 + art_sys_38: -2.28974433e-19 + art_sys_39: -6.99582600e-14 + art_sys_40: 1.71523137e-05 + art_sys_41: -1.45094390e-14 + art_sys_42: -1.39355798e-16 + art_sys_43: 4.42864383e-20 + art_sys_44: -2.65123842e-21 + art_sys_45: 1.79002281e-19 + art_sys_46: -4.79611288e-16 + art_sys_47: -5.14892199e-07 + art_sys_48: 2.60369447e-15 + art_sys_49: 2.00600187e-19 + art_sys_50: 2.60832914e-20 + art_sys_51: 7.99232449e-20 + art_sys_52: 3.68273258e-20 + art_sys_53: -1.51435785e-20 + art_sys_54: -1.64680664e-20 + art_sys_55: 4.95560043e-17 + art_sys_56: 2.82665348e-19 + art_sys_57: -1.34128404e-07 + art_sys_58: -1.66086215e-21 + art_sys_59: 2.83683697e-22 + art_sys_60: 3.60669843e-15 + art_sys_61: -3.40540295e-17 + art_sys_62: 4.59054536e-08 + art_sys_63: -5.22538306e-20 + art_sys_64: 5.61362294e-15 + art_sys_65: 2.63568784e-23 + art_sys_66: 5.33521938e-24 + art_sys_67: -4.30615543e-17 + art_sys_68: 3.78859872e-19 + art_sys_69: -1.46011334e-19 + art_sys_70: 4.58676572e-18 + art_sys_71: 1.07284765e-09 + art_sys_72: -2.30947676e-17 + art_sys_73: 8.64028719e-21 + art_sys_74: -3.88485336e-21 + art_sys_75: -1.40297164e-21 + art_sys_76: -1.87366554e-21 + art_sys_77: 2.58468883e-10 + art_sys_78: -1.08566607e-19 + art_sys_79: 1.71629635e-22 + art_sys_80: -6.87935269e-24 + art_sys_81: 9.55005078e-23 + art_sys_82: 2.12353334e-23 + art_sys_83: 7.44883552e-21 + art_sys_84: -1.26467581e-23 + art_sys_85: 1.37612004e-23 + art_sys_86: -3.83501184e-20 + art_sys_87: -6.14858627e-11 + art_sys_88: 3.42871007e-21 + art_sys_89: -3.08604882e-23 + art_sys_90: 3.20034886e-17 + art_sys_91: -3.66016447e-21 + art_sys_92: 9.05115854e-17 + art_sys_93: -2.29643869e-17 + art_sys_94: -4.94595937e-18 + art_sys_95: 7.26091956e-20 + art_sys_96: -6.75779858e-22 + art_sys_97: 1.65567045e-17 + art_sys_98: -1.01288257e-18 + art_sys_99: -2.32141901e-17 + art_sys_100: -1.54574896e-20 + art_sys_101: -1.99537585e-20 + art_sys_102: 4.04730837e-19 + art_sys_103: -8.45400152e-21 + art_sys_104: -2.00615669e-17 + art_sys_105: 1.13976238e-19 + art_sys_106: -1.33489903e-13 + art_sys_107: 2.63705075e-21 + art_sys_108: -1.62537195e-22 + art_sys_109: -9.28645061e-22 + art_sys_110: 3.06733521e-18 + art_sys_111: 2.77172870e-18 + art_sys_112: 1.60400795e-19 + art_sys_113: -1.59198527e-23 + art_sys_114: -1.92283113e-18 + art_sys_115: 5.25657651e-20 + art_sys_116: 2.76738838e-14 + art_sys_117: -1.55588701e-18 + art_sys_118: -2.63278905e-19 + art_sys_119: 7.30546356e-19 + art_sys_120: 5.48970772e-15 + art_sys_121: 9.88207178e-20 + art_sys_122: -7.80455828e-19 + art_sys_123: 1.25429192e-18 + art_sys_124: -9.13220437e-20 + art_sys_125: 8.77921476e-16 + art_sys_126: 2.58594129e-19 + art_sys_127: 6.53415601e-19 + art_sys_128: 5.11948554e-19 + art_sys_129: 3.13208534e-19 + art_sys_130: 1.40970764e-18 + art_sys_131: -1.19351324e-16 + art_sys_132: -3.03260181e-19 + art_sys_133: 2.41517280e-18 + art_sys_134: 1.77358270e-21 + art_sys_135: 1.01954205e-19 + art_sys_136: 2.25109339e-19 + art_sys_137: -2.73409033e-22 + art_sys_138: 1.40976651e-19 + art_sys_139: 5.52790415e-20 + art_sys_140: 2.10796622e-19 + art_sys_141: 2.20979281e-18 + art_sys_142: -6.17220270e-20 + art_sys_143: 7.39531253e-23 + art_sys_144: -1.73970032e-24 + art_sys_145: -8.55117099e-22 + art_sys_146: -0.0 + art_sys_147: 7.50785410e-21 + art_sys_148: -3.59756861e-20 + art_sys_149: -3.59756861e-20 + art_sys_150: -1.43132083e-20 + art_sys_151: -1.43132083e-20 + art_sys_152: 3.94518789e-21 + art_sys_153: 1.78024670e-21 + art_sys_154: -5.06107804e-24 + art_sys_155: 6.39417641e-34 + art_sys_156: -5.15121131e-36 + art_sys_157: -2.20996674e-36 + art_sys_158: -0.0 + art_sys_159: 2.27031810e-21 + art_sys_160: -6.55043310e-22 + art_sys_161: -2.25567798e-21 + art_sys_162: -6.26055411e-23 + art_sys_163: -2.09243559e-20 + art_sys_164: -3.30532915e-21 + art_sys_165: 2.16906857e-23 + art_sys_166: 1.92766068e-29 + art_sys_167: 1.84709359e-29 + art_sys_168: -6.54493966e-30 + art_sys_169: 4.09642796e-31 + art_sys_170: -6.83070028e-31 + art_sys_171: 4.07180526e-31 + art_sys_172: 3.33355102e-31 + art_sys_173: -1.19701561e-31 + art_sys_174: -5.78778681e-32 + art_sys_175: 2.81029309e-34 + art_sys_176: 4.86395943e-34 + art_sys_177: 9.71241118e-33 + art_sys_178: -3.71173424e-33 + art_sys_179: 2.21852186e-33 + art_sys_180: -3.04231761e-33 + art_sys_181: -6.90599766e-36 + art_sys_182: 7.84708751e-34 + art_sys_183: 1.09176197e-35 + art_sys_184: -1.97786652e-37 + art_sys_185: -9.95851261e-38 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -56984,191 +56984,191 @@ bins: RelativeStatFSR-: -3.18924943e+00 luminosity_uncertainty: 4.15841400e+01 uncorrelated_uncertainty: 1.59939000e+01 -- art_sys_1: 2.01575020e-15 - art_sys_2: 7.63076315e-01 - art_sys_3: 1.88130851e-15 - art_sys_4: 1.19094611e-14 +- art_sys_1: -6.96603526e-16 + art_sys_2: -1.75233504e-15 + art_sys_3: 7.63076315e-01 + art_sys_4: -4.16778069e-15 art_sys_5: -2.05309978e+00 - art_sys_6: -7.34907152e-16 - art_sys_7: 1.09744982e-14 - art_sys_8: -1.21291106e+00 - art_sys_9: 3.40212441e-15 - art_sys_10: -2.40333306e-15 - art_sys_11: -1.87882270e+00 - art_sys_12: -9.13254741e-15 - art_sys_13: 1.16642127e-13 - art_sys_14: -7.79282619e-15 - art_sys_15: 3.24579345e+00 - art_sys_16: -3.86834656e-14 - art_sys_17: 7.82789707e-15 - art_sys_18: 5.45311693e-01 - art_sys_19: -1.35855475e-14 - art_sys_20: 1.43638898e-15 - art_sys_21: 5.43312893e-01 - art_sys_22: 5.13527729e-15 - art_sys_23: -1.85939428e-15 + art_sys_6: 2.44134099e-15 + art_sys_7: -1.06421336e-14 + art_sys_8: 1.21291106e+00 + art_sys_9: -1.67986910e-15 + art_sys_10: 5.71904596e-16 + art_sys_11: 1.87882270e+00 + art_sys_12: 6.58446981e-15 + art_sys_13: -9.06406004e-14 + art_sys_14: 1.02928693e-14 + art_sys_15: -3.24579345e+00 + art_sys_16: -1.11658631e-14 + art_sys_17: 3.19035065e-15 + art_sys_18: -5.45311693e-01 + art_sys_19: -1.29214412e-14 + art_sys_20: 5.62065654e-15 + art_sys_21: -5.43312893e-01 + art_sys_22: -7.34956717e-16 + art_sys_23: -3.88729821e-16 art_sys_24: -1.50225105e-01 - art_sys_25: -4.89247352e-15 - art_sys_26: 4.36911485e-16 - art_sys_27: 2.22049684e-17 - art_sys_28: -1.30074309e-17 - art_sys_29: -7.40809739e-19 - art_sys_30: 6.57467686e-16 - art_sys_31: -4.80562159e-17 - art_sys_32: 7.19316257e-18 - art_sys_33: 1.54144206e-18 - art_sys_34: -6.02977710e-04 - art_sys_35: -5.78973255e-15 - art_sys_36: 1.62072006e-04 - art_sys_37: 2.36884753e-15 - art_sys_38: -2.00927543e-18 - art_sys_39: 1.46895404e-14 - art_sys_40: 9.61306403e-05 - art_sys_41: -2.02769316e-15 - art_sys_42: -1.18841949e-16 - art_sys_43: 1.60766680e-17 - art_sys_44: -4.31305714e-18 - art_sys_45: -1.75071020e-19 - art_sys_46: 4.40632207e-15 - art_sys_47: 3.31179481e-06 - art_sys_48: 8.78639154e-16 - art_sys_49: 5.91728750e-21 - art_sys_50: 8.12363157e-07 - art_sys_51: 4.51437102e-19 - art_sys_52: 2.01580909e-18 - art_sys_53: -1.75190266e-18 - art_sys_54: -1.68127174e-15 - art_sys_55: -2.36716826e-15 - art_sys_56: 2.71999840e-07 - art_sys_57: 7.37694101e-15 - art_sys_58: -1.03340082e-15 - art_sys_59: -6.56670704e-20 - art_sys_60: 7.21400906e-21 - art_sys_61: 5.29583212e-21 - art_sys_62: -8.93287807e-22 - art_sys_63: -2.47199862e-21 - art_sys_64: 8.80381208e-18 - art_sys_65: -6.51793244e-22 - art_sys_66: -3.49582455e-22 - art_sys_67: 1.49716837e-22 - art_sys_68: 2.69901401e-18 - art_sys_69: 4.52589068e-18 - art_sys_70: -3.17266561e-15 - art_sys_71: -7.68093266e-09 - art_sys_72: 1.10722413e-20 - art_sys_73: -3.75867655e-16 - art_sys_74: -1.47845358e-09 - art_sys_75: -6.51548728e-26 - art_sys_76: -5.53867501e-24 - art_sys_77: -8.87632068e-24 - art_sys_78: -3.95065170e-10 - art_sys_79: 2.75033743e-16 - art_sys_80: -6.57101808e-25 - art_sys_81: -3.09106310e-26 - art_sys_82: 2.50271020e-26 - art_sys_83: -1.35330719e-19 - art_sys_84: 6.26109176e-17 - art_sys_85: 1.17029868e-16 - art_sys_86: -1.20640050e-19 - art_sys_87: -2.26351266e-16 - art_sys_88: 1.99903716e-26 - art_sys_89: 7.77679742e-18 - art_sys_90: -2.82169840e-17 - art_sys_91: 4.09135040e-17 - art_sys_92: -7.80533648e-19 - art_sys_93: -2.91834776e-18 - art_sys_94: -1.49902989e-18 - art_sys_95: 9.27020807e-20 - art_sys_96: 2.30971506e-17 - art_sys_97: 2.22159099e-17 - art_sys_98: -7.60614243e-13 - art_sys_99: 5.33513933e-20 - art_sys_100: 1.13757838e-27 - art_sys_101: 1.59708704e-27 - art_sys_102: -1.15499410e-17 - art_sys_103: 2.33513372e-19 - art_sys_104: -1.26527792e-17 - art_sys_105: 5.98428893e-21 - art_sys_106: 1.33553779e-13 - art_sys_107: 2.41012183e-18 - art_sys_108: -3.54695996e-20 - art_sys_109: 3.63101478e-18 - art_sys_110: 3.31606965e-14 - art_sys_111: 2.68861985e-19 - art_sys_112: 3.80937104e-18 - art_sys_113: -4.94559425e-18 - art_sys_114: 1.07005539e-18 - art_sys_115: 4.50671197e-15 - art_sys_116: 1.34294179e-17 - art_sys_117: -3.15551845e-19 - art_sys_118: 1.48046219e-17 - art_sys_119: -1.93386275e-20 - art_sys_120: -7.17151192e-23 - art_sys_121: 5.64959966e-24 - art_sys_122: -2.47911971e-23 - art_sys_123: -6.32376342e-16 - art_sys_124: -8.59240747e-24 - art_sys_125: -1.43716594e-18 - art_sys_126: -1.26041830e-23 - art_sys_127: -1.00680161e-18 - art_sys_128: -1.17058003e-23 - art_sys_129: -1.37661910e-17 - art_sys_130: 1.06591312e-19 - art_sys_131: -2.17608550e-19 - art_sys_132: -6.24838815e-24 - art_sys_133: -1.55958990e-19 - art_sys_134: 5.58294073e-23 - art_sys_135: 3.16224837e-27 - art_sys_136: -2.20842421e-27 - art_sys_137: 1.74651173e-28 - art_sys_138: 5.17328603e-29 - art_sys_139: 2.43647644e-27 - art_sys_140: -1.19447362e-27 - art_sys_141: -1.10493308e-23 - art_sys_142: -1.38786227e-27 - art_sys_143: -6.53085929e-27 - art_sys_144: -3.33399234e-26 - art_sys_145: -1.63859761e-26 - art_sys_146: -2.98720388e-26 - art_sys_147: 7.59388808e-28 - art_sys_148: 1.99089347e-28 - art_sys_149: -7.69742800e-28 - art_sys_150: 6.96686710e-30 - art_sys_151: 7.32642800e-29 - art_sys_152: -4.40192529e-30 - art_sys_153: 4.90324799e-29 - art_sys_154: 9.65146181e-30 - art_sys_155: -1.74377812e-29 - art_sys_156: 1.51407113e-29 - art_sys_157: 5.46761375e-30 - art_sys_158: 2.12377880e-30 - art_sys_159: -5.13269723e-31 - art_sys_160: -9.53912329e-32 - art_sys_161: 9.04715519e-34 - art_sys_162: 3.98134983e-33 - art_sys_163: -1.68268552e-32 - art_sys_164: 1.02400348e-31 - art_sys_165: -9.06659383e-33 - art_sys_166: -1.31337457e-33 - art_sys_167: 1.80215148e-33 - art_sys_168: 4.94970724e-22 - art_sys_169: -4.76437526e-34 - art_sys_170: 9.80464915e-24 - art_sys_171: -6.17328785e-22 - art_sys_172: -2.91000421e-33 - art_sys_173: 8.56017711e-35 - art_sys_174: 5.28608632e-23 - art_sys_175: 0.0 - art_sys_176: 7.23184925e-25 - art_sys_177: 0.0 - art_sys_178: -8.46308485e-27 - art_sys_179: -1.86031664e-28 - art_sys_180: -4.30021892e-32 - art_sys_181: 2.85591051e-37 - art_sys_182: 0.0 - art_sys_183: -2.11837077e-36 - art_sys_184: -2.95070092e-36 - art_sys_185: -9.01209116e-39 + art_sys_25: 2.83765743e-17 + art_sys_26: 3.02264337e-16 + art_sys_27: -9.91403979e-17 + art_sys_28: -8.82166862e-16 + art_sys_29: 2.07720892e-15 + art_sys_30: 2.54076240e-18 + art_sys_31: 1.18084840e-18 + art_sys_32: 4.79235329e-18 + art_sys_33: 1.74189967e-18 + art_sys_34: 6.02977710e-04 + art_sys_35: -2.73243900e-15 + art_sys_36: -1.62072006e-04 + art_sys_37: -1.42869245e-14 + art_sys_38: 2.71652120e-19 + art_sys_39: 3.92496622e-13 + art_sys_40: -9.61306403e-05 + art_sys_41: 8.15458639e-14 + art_sys_42: 4.12259594e-16 + art_sys_43: 5.68927947e-20 + art_sys_44: 3.57646681e-20 + art_sys_45: -3.26248325e-19 + art_sys_46: 3.15299534e-15 + art_sys_47: 3.31179480e-06 + art_sys_48: -1.57003542e-14 + art_sys_49: -1.26824317e-18 + art_sys_50: -1.58620037e-19 + art_sys_51: -4.83186714e-19 + art_sys_52: -2.23807286e-19 + art_sys_53: 9.07192524e-20 + art_sys_54: 9.81837849e-20 + art_sys_55: -2.99169720e-16 + art_sys_56: -1.59248583e-18 + art_sys_57: 8.12363157e-07 + art_sys_58: 9.66094214e-21 + art_sys_59: -1.79206011e-21 + art_sys_60: -2.13875831e-14 + art_sys_61: 2.05681739e-16 + art_sys_62: -2.71999832e-07 + art_sys_63: 3.86948269e-19 + art_sys_64: -3.31888548e-14 + art_sys_65: -1.91675085e-22 + art_sys_66: -2.89343673e-23 + art_sys_67: 2.63789439e-16 + art_sys_68: -2.43011808e-18 + art_sys_69: 1.16196219e-18 + art_sys_70: -4.88781751e-17 + art_sys_71: -7.68093048e-09 + art_sys_72: 1.35463147e-16 + art_sys_73: -4.57602345e-20 + art_sys_74: 2.27439631e-20 + art_sys_75: 8.27537267e-21 + art_sys_76: 1.07184637e-20 + art_sys_77: -1.47845168e-09 + art_sys_78: 6.35626785e-19 + art_sys_79: -1.10799977e-21 + art_sys_80: 4.39625988e-23 + art_sys_81: -6.13389169e-22 + art_sys_82: -1.36136566e-22 + art_sys_83: -4.27471694e-20 + art_sys_84: 8.12901107e-23 + art_sys_85: -8.85357840e-23 + art_sys_86: 1.84622563e-19 + art_sys_87: 3.95065412e-10 + art_sys_88: -1.86634136e-20 + art_sys_89: 1.68024615e-22 + art_sys_90: -2.14499343e-16 + art_sys_91: 3.17213099e-20 + art_sys_92: -5.77768372e-16 + art_sys_93: 1.37836902e-16 + art_sys_94: 3.11035056e-17 + art_sys_95: -4.13249791e-19 + art_sys_96: 3.47396301e-21 + art_sys_97: -9.43436279e-17 + art_sys_98: 8.36064095e-18 + art_sys_99: 1.37510840e-16 + art_sys_100: 8.90616817e-20 + art_sys_101: -3.23602980e-20 + art_sys_102: -6.71259741e-19 + art_sys_103: 4.60963745e-20 + art_sys_104: 1.18937951e-16 + art_sys_105: -6.66652574e-19 + art_sys_106: 7.60636623e-13 + art_sys_107: -1.39811742e-20 + art_sys_108: 8.63075855e-22 + art_sys_109: 5.06003983e-21 + art_sys_110: -1.46229086e-17 + art_sys_111: -1.55615723e-17 + art_sys_112: -1.03780240e-18 + art_sys_113: 9.76094930e-23 + art_sys_114: 1.06441063e-17 + art_sys_115: -2.69939595e-19 + art_sys_116: -1.33542761e-13 + art_sys_117: 9.13968840e-18 + art_sys_118: 1.35150426e-18 + art_sys_119: -4.09607001e-18 + art_sys_120: -3.31770591e-14 + art_sys_121: -5.18085657e-19 + art_sys_122: 3.41892733e-18 + art_sys_123: -7.34904524e-18 + art_sys_124: 4.83168485e-19 + art_sys_125: -4.50784356e-15 + art_sys_126: -1.37067284e-18 + art_sys_127: -3.45197037e-18 + art_sys_128: -2.71981660e-18 + art_sys_129: -2.08257927e-18 + art_sys_130: -7.48569558e-18 + art_sys_131: 6.32741901e-16 + art_sys_132: 1.69127061e-18 + art_sys_133: -1.28199025e-17 + art_sys_134: -9.61847005e-21 + art_sys_135: -5.85045803e-19 + art_sys_136: -1.21105862e-18 + art_sys_137: 1.50928424e-21 + art_sys_138: -8.25830552e-19 + art_sys_139: -2.94158930e-19 + art_sys_140: -1.13687949e-18 + art_sys_141: -1.31849556e-17 + art_sys_142: 3.45861923e-19 + art_sys_143: -4.05484146e-22 + art_sys_144: -9.36920508e-24 + art_sys_145: 4.93037726e-21 + art_sys_146: 0.0 + art_sys_147: -4.22558504e-20 + art_sys_148: 1.87249011e-19 + art_sys_149: 1.87249011e-19 + art_sys_150: 9.07305569e-20 + art_sys_151: 9.07305569e-20 + art_sys_152: -2.53779102e-20 + art_sys_153: -1.18282641e-20 + art_sys_154: 2.91083900e-23 + art_sys_155: -5.17008704e-33 + art_sys_156: 2.69590734e-35 + art_sys_157: 1.17822922e-35 + art_sys_158: 0.0 + art_sys_159: -1.35080755e-20 + art_sys_160: 3.88984178e-21 + art_sys_161: 1.33768479e-20 + art_sys_162: 3.71443429e-22 + art_sys_163: 1.23314832e-19 + art_sys_164: 1.94152215e-20 + art_sys_165: -9.66718906e-23 + art_sys_166: -1.14099097e-28 + art_sys_167: -1.09460598e-28 + art_sys_168: 3.88685490e-29 + art_sys_169: -1.72238065e-30 + art_sys_170: 3.26569111e-30 + art_sys_171: -2.27817581e-30 + art_sys_172: -1.90299707e-30 + art_sys_173: 7.27448235e-31 + art_sys_174: 3.31097745e-31 + art_sys_175: -1.62269460e-33 + art_sys_176: -4.35173758e-34 + art_sys_177: -5.51827558e-32 + art_sys_178: 2.07530483e-32 + art_sys_179: -1.24201209e-32 + art_sys_180: 1.70012795e-32 + art_sys_181: 3.93368227e-35 + art_sys_182: -4.67232618e-33 + art_sys_183: -6.41151885e-35 + art_sys_184: 1.12878288e-36 + art_sys_185: 5.51210281e-37 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -57275,191 +57275,191 @@ bins: RelativeStatFSR-: -1.49918213e+00 luminosity_uncertainty: 18.19883 uncorrelated_uncertainty: 6.99955 -- art_sys_1: -6.25268600e-16 - art_sys_2: -3.28918405e-01 - art_sys_3: 7.54385179e-16 - art_sys_4: 1.58611256e-14 +- art_sys_1: 2.11254404e-16 + art_sys_2: -7.99073901e-16 + art_sys_3: -3.28918405e-01 + art_sys_4: 1.56898292e-14 art_sys_5: -6.13796271e-01 - art_sys_6: 1.31824303e-16 - art_sys_7: -9.16758363e-16 - art_sys_8: 1.56902250e+00 - art_sys_9: 6.61507587e-15 - art_sys_10: 1.78017806e-15 - art_sys_11: 4.73037341e-01 - art_sys_12: -3.39701093e-15 - art_sys_13: 7.39270951e-14 - art_sys_14: -2.70350091e-15 - art_sys_15: 1.51683953e+00 - art_sys_16: -1.16033161e-14 - art_sys_17: -1.90042232e-14 - art_sys_18: -1.68284698e+00 - art_sys_19: 9.36216092e-14 - art_sys_20: 1.09354283e-15 - art_sys_21: -7.63362276e-01 - art_sys_22: 2.39051682e-16 - art_sys_23: 4.04479049e-15 + art_sys_6: -1.44131584e-15 + art_sys_7: -3.51908952e-15 + art_sys_8: -1.56902250e+00 + art_sys_9: 4.26815733e-15 + art_sys_10: 4.96435332e-16 + art_sys_11: -4.73037341e-01 + art_sys_12: 1.12476843e-15 + art_sys_13: -4.82777445e-14 + art_sys_14: 1.30516689e-15 + art_sys_15: -1.51683953e+00 + art_sys_16: -1.38155821e-15 + art_sys_17: -1.90710214e-15 + art_sys_18: 1.68284698e+00 + art_sys_19: 1.08561375e-13 + art_sys_20: -1.03412552e-15 + art_sys_21: 7.63362276e-01 + art_sys_22: -2.40262891e-16 + art_sys_23: -7.12582681e-16 art_sys_24: 3.37594815e-01 - art_sys_25: -9.83794058e-16 - art_sys_26: -6.37097058e-16 - art_sys_27: -3.29207203e-17 - art_sys_28: 3.89533975e-17 - art_sys_29: -2.20844582e-18 - art_sys_30: -1.25505500e-15 - art_sys_31: -3.95895411e-17 - art_sys_32: -1.87255945e-17 - art_sys_33: -4.03150772e-18 - art_sys_34: 1.49594306e-03 - art_sys_35: 1.11886576e-14 - art_sys_36: -4.50349103e-04 - art_sys_37: -6.25290856e-15 - art_sys_38: -2.92760633e-19 - art_sys_39: -3.55077941e-14 - art_sys_40: -3.04817001e-04 - art_sys_41: 7.35140407e-15 - art_sys_42: 1.70586763e-16 - art_sys_43: 6.95707621e-19 - art_sys_44: -2.53595252e-19 - art_sys_45: -1.08151196e-19 - art_sys_46: -7.07150764e-15 + art_sys_25: -1.97631507e-16 + art_sys_26: -7.67067033e-16 + art_sys_27: 2.67963658e-16 + art_sys_28: 1.10148619e-15 + art_sys_29: -4.62653593e-15 + art_sys_30: -7.35794799e-18 + art_sys_31: -2.52236481e-18 + art_sys_32: -1.31434213e-17 + art_sys_33: -4.11476075e-18 + art_sys_34: -1.49594306e-03 + art_sys_35: 4.46967805e-15 + art_sys_36: 4.50349103e-04 + art_sys_37: 4.08825219e-14 + art_sys_38: -2.91979098e-18 + art_sys_39: -1.23707059e-12 + art_sys_40: 3.04817001e-04 + art_sys_41: -2.58628821e-13 + art_sys_42: -5.06534445e-16 + art_sys_43: -3.64694821e-19 + art_sys_44: -6.75671102e-20 + art_sys_45: -8.59565250e-20 + art_sys_46: -4.95254554e-15 art_sys_47: -9.59862598e-06 - art_sys_48: -3.25009498e-15 - art_sys_49: 2.40323350e-20 - art_sys_50: -2.80212828e-06 - art_sys_51: -1.45759512e-18 - art_sys_52: -6.83926464e-18 - art_sys_53: 5.96050262e-18 - art_sys_54: 5.81751395e-15 - art_sys_55: 7.29119215e-15 - art_sys_56: -9.23394928e-07 - art_sys_57: -2.50051609e-14 - art_sys_58: 3.44103786e-15 - art_sys_59: 2.02283433e-19 - art_sys_60: -2.23461322e-20 - art_sys_61: -1.70307536e-20 - art_sys_62: 3.04259806e-21 - art_sys_63: 7.86566830e-21 - art_sys_64: -3.39515540e-17 - art_sys_65: 1.99582326e-21 - art_sys_66: 1.10463377e-21 - art_sys_67: -4.77994249e-22 - art_sys_68: -9.24056984e-18 - art_sys_69: -1.51983708e-17 - art_sys_70: 9.93649019e-15 - art_sys_71: 2.41553096e-08 - art_sys_72: 4.90194712e-21 - art_sys_73: 1.23851138e-15 - art_sys_74: 5.64751705e-09 - art_sys_75: -7.61437056e-25 - art_sys_76: 1.33505527e-23 - art_sys_77: 2.78061764e-23 - art_sys_78: 1.34581486e-09 - art_sys_79: -9.64258861e-16 - art_sys_80: 1.72533680e-24 - art_sys_81: 1.10707904e-25 - art_sys_82: -1.13481968e-25 - art_sys_83: 7.38469057e-19 - art_sys_84: -2.22668901e-16 - art_sys_85: -3.96302553e-16 - art_sys_86: 6.69976820e-19 - art_sys_87: 7.68724904e-16 - art_sys_88: -5.50902484e-26 - art_sys_89: -4.20713360e-17 - art_sys_90: 9.43633376e-17 - art_sys_91: -1.38901919e-16 - art_sys_92: 1.62216091e-18 - art_sys_93: 1.38385489e-17 - art_sys_94: 6.93583638e-18 - art_sys_95: -3.71967997e-18 - art_sys_96: -7.76116204e-17 - art_sys_97: -1.18928796e-16 - art_sys_98: 4.11315250e-12 - art_sys_99: -2.43591395e-19 - art_sys_100: -2.80332568e-27 - art_sys_101: 2.31943637e-27 - art_sys_102: 6.28961926e-17 - art_sys_103: -9.52173496e-19 - art_sys_104: 6.75488089e-17 - art_sys_105: -2.94425056e-20 - art_sys_106: -6.17791875e-13 - art_sys_107: -1.18177482e-17 - art_sys_108: 1.68215050e-19 - art_sys_109: -1.66180980e-17 - art_sys_110: -1.46537725e-13 - art_sys_111: -1.27552539e-18 - art_sys_112: -1.70432227e-17 - art_sys_113: 2.17954843e-17 - art_sys_114: -4.69151042e-18 - art_sys_115: -2.18683330e-14 - art_sys_116: -5.93248540e-17 - art_sys_117: 1.01089061e-18 - art_sys_118: -6.53969480e-17 - art_sys_119: 9.18351267e-20 - art_sys_120: 3.45076415e-22 - art_sys_121: -2.19670664e-23 - art_sys_122: 1.03420481e-22 - art_sys_123: 3.00052142e-15 - art_sys_124: 3.95183467e-23 - art_sys_125: 6.33969713e-18 - art_sys_126: 5.87180226e-23 - art_sys_127: 4.48321731e-18 - art_sys_128: 5.33348627e-23 - art_sys_129: 5.70231185e-17 - art_sys_130: -4.47409157e-19 - art_sys_131: 9.89811177e-19 - art_sys_132: 2.89906949e-23 - art_sys_133: 7.07669874e-19 - art_sys_134: -2.54257583e-22 - art_sys_135: -9.85893082e-27 - art_sys_136: 5.83146679e-27 - art_sys_137: -9.89427821e-28 - art_sys_138: 3.55615640e-28 - art_sys_139: -6.73900575e-27 - art_sys_140: 3.69803159e-27 - art_sys_141: 4.99789974e-23 - art_sys_142: 4.15771488e-27 - art_sys_143: 2.95938465e-26 - art_sys_144: 1.39976613e-25 - art_sys_145: 7.34037627e-26 - art_sys_146: 1.22794697e-25 - art_sys_147: 4.23413128e-27 - art_sys_148: -2.85105674e-27 - art_sys_149: 3.64131610e-27 - art_sys_150: -2.14934361e-28 - art_sys_151: -3.48846222e-28 - art_sys_152: 1.25840209e-29 - art_sys_153: -2.08116365e-28 - art_sys_154: -4.33656699e-29 - art_sys_155: 7.23389706e-29 - art_sys_156: -6.08919377e-29 - art_sys_157: -2.32313713e-29 - art_sys_158: -8.94996953e-30 - art_sys_159: 2.16428420e-30 - art_sys_160: 3.79250693e-31 - art_sys_161: -8.97860137e-33 - art_sys_162: -1.76977258e-32 - art_sys_163: 6.81377955e-32 - art_sys_164: -4.22047908e-31 - art_sys_165: 3.87829883e-32 - art_sys_166: 5.90362737e-33 - art_sys_167: -4.37395477e-33 - art_sys_168: -2.24410118e-21 - art_sys_169: 2.06871500e-33 - art_sys_170: -4.28164862e-23 - art_sys_171: 2.84090061e-21 - art_sys_172: 1.23180488e-32 - art_sys_173: -3.75423010e-34 - art_sys_174: -2.43186135e-22 - art_sys_175: 0.0 - art_sys_176: -3.32679901e-24 - art_sys_177: 0.0 - art_sys_178: 3.89205863e-26 - art_sys_179: 8.44187042e-28 - art_sys_180: 1.99641519e-31 - art_sys_181: -1.32027902e-36 - art_sys_182: 0.0 - art_sys_183: 9.72591708e-36 - art_sys_184: 1.30128371e-35 - art_sys_185: 4.06797150e-38 + art_sys_48: 5.38762629e-14 + art_sys_49: 4.79041949e-18 + art_sys_50: 4.82333711e-19 + art_sys_51: 1.62671050e-18 + art_sys_52: 7.44847589e-19 + art_sys_53: -3.16420970e-19 + art_sys_54: -3.35181592e-19 + art_sys_55: 1.04568757e-15 + art_sys_56: 1.15415024e-17 + art_sys_57: -2.80212828e-06 + art_sys_58: -3.30144482e-20 + art_sys_59: 5.97213727e-21 + art_sys_60: 7.25383600e-14 + art_sys_61: -9.20467446e-16 + art_sys_62: 9.23394902e-07 + art_sys_63: -1.40274203e-18 + art_sys_64: 1.12559069e-13 + art_sys_65: 5.95777568e-22 + art_sys_66: 1.15169881e-22 + art_sys_67: -9.67399698e-16 + art_sys_68: 8.00954301e-18 + art_sys_69: -3.02577216e-18 + art_sys_70: 1.10042906e-16 + art_sys_71: 2.41553007e-08 + art_sys_72: -4.60407732e-16 + art_sys_73: 1.82537301e-19 + art_sys_74: -8.48206241e-20 + art_sys_75: -3.07160571e-20 + art_sys_76: -4.09390292e-20 + art_sys_77: 5.64751112e-09 + art_sys_78: -2.28420581e-18 + art_sys_79: 3.69868760e-21 + art_sys_80: -1.52664282e-22 + art_sys_81: 2.09544467e-21 + art_sys_82: 4.64933731e-22 + art_sys_83: 2.25783649e-19 + art_sys_84: -2.80966455e-22 + art_sys_85: 2.99533863e-22 + art_sys_86: -8.54448566e-19 + art_sys_87: -1.34581568e-09 + art_sys_88: 8.41950601e-20 + art_sys_89: -7.86730432e-22 + art_sys_90: 7.32342775e-16 + art_sys_91: -1.52782865e-19 + art_sys_92: 1.96788486e-15 + art_sys_93: -4.67525028e-16 + art_sys_94: -1.08303178e-16 + art_sys_95: 2.23284145e-18 + art_sys_96: -1.68430865e-20 + art_sys_97: 5.10184969e-16 + art_sys_98: -3.18138582e-17 + art_sys_99: -4.66887677e-16 + art_sys_100: -4.85570084e-19 + art_sys_101: -4.75203450e-19 + art_sys_102: -4.33800996e-19 + art_sys_103: -2.33880714e-19 + art_sys_104: -4.03693065e-16 + art_sys_105: 2.64566547e-18 + art_sys_106: -4.11327350e-12 + art_sys_107: 6.63353335e-20 + art_sys_108: -4.08715437e-21 + art_sys_109: -2.32124056e-20 + art_sys_110: 6.78265460e-17 + art_sys_111: 8.45023909e-17 + art_sys_112: 4.42529424e-18 + art_sys_113: -3.86760176e-22 + art_sys_114: -5.72984076e-17 + art_sys_115: 1.30968128e-18 + art_sys_116: 6.17740585e-13 + art_sys_117: -5.00401043e-17 + art_sys_118: -6.55923753e-18 + art_sys_119: 2.14408291e-17 + art_sys_120: 1.46610063e-13 + art_sys_121: 2.49288974e-18 + art_sys_122: -1.58998704e-17 + art_sys_123: 3.27406420e-17 + art_sys_124: -2.29843741e-18 + art_sys_125: 2.18737661e-14 + art_sys_126: 6.50536656e-18 + art_sys_127: 1.65039990e-17 + art_sys_128: 1.28710172e-17 + art_sys_129: 8.83118423e-18 + art_sys_130: 3.54472021e-17 + art_sys_131: -3.00220663e-15 + art_sys_132: -7.84253301e-18 + art_sys_133: 6.07357791e-17 + art_sys_134: 4.47290924e-20 + art_sys_135: 2.66132342e-18 + art_sys_136: 5.64536574e-18 + art_sys_137: -6.94517333e-21 + art_sys_138: 2.81682435e-18 + art_sys_139: 1.35117752e-18 + art_sys_140: 5.27234711e-18 + art_sys_141: 5.40929317e-17 + art_sys_142: -1.52656491e-18 + art_sys_143: 1.88709340e-21 + art_sys_144: -8.42891360e-23 + art_sys_145: -2.13177379e-20 + art_sys_146: -0.0 + art_sys_147: 1.88394830e-19 + art_sys_148: -9.17500768e-19 + art_sys_149: -9.17500768e-19 + art_sys_150: -3.49734670e-19 + art_sys_151: -3.49734670e-19 + art_sys_152: 1.07952443e-19 + art_sys_153: 4.22763607e-20 + art_sys_154: -1.26771768e-22 + art_sys_155: 1.14812690e-32 + art_sys_156: -1.30719957e-34 + art_sys_157: -5.56771493e-35 + art_sys_158: -0.0 + art_sys_159: 5.55853836e-20 + art_sys_160: -1.60451495e-20 + art_sys_161: -5.52872969e-20 + art_sys_162: -1.53475656e-21 + art_sys_163: -5.14308654e-19 + art_sys_164: -8.12225937e-20 + art_sys_165: 5.63237937e-22 + art_sys_166: 4.72967352e-28 + art_sys_167: 4.52395057e-28 + art_sys_168: -1.60313296e-28 + art_sys_169: 9.44094125e-30 + art_sys_170: -1.40235559e-29 + art_sys_171: 1.04311142e-29 + art_sys_172: 7.15080549e-30 + art_sys_173: -2.70026537e-30 + art_sys_174: -1.47167673e-30 + art_sys_175: 7.01000390e-33 + art_sys_176: 1.12620665e-32 + art_sys_177: 2.49838293e-31 + art_sys_178: -9.49242893e-32 + art_sys_179: 5.62527611e-32 + art_sys_180: -7.65133412e-32 + art_sys_181: -1.76529734e-34 + art_sys_182: 1.91919932e-32 + art_sys_183: 2.69149086e-34 + art_sys_184: -4.98455452e-36 + art_sys_185: -2.52802536e-36 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -57566,191 +57566,191 @@ bins: RelativeStatFSR-: -7.14723465e-01 luminosity_uncertainty: 8.093644 uncorrelated_uncertainty: 3.11294 -- art_sys_1: -1.51309396e-16 - art_sys_2: -6.27501474e-02 - art_sys_3: -7.50542108e-17 - art_sys_4: 1.23356051e-14 +- art_sys_1: 5.49445706e-17 + art_sys_2: 6.41541366e-17 + art_sys_3: -6.27501474e-02 + art_sys_4: -1.98549224e-14 art_sys_5: 8.87627216e-02 - art_sys_6: 3.58166639e-17 - art_sys_7: -1.91903647e-14 - art_sys_8: 8.08739447e-02 - art_sys_9: -7.06650237e-15 - art_sys_10: 3.11722359e-16 - art_sys_11: 1.75463021e-01 - art_sys_12: 1.58044213e-17 - art_sys_13: -1.11192012e-14 - art_sys_14: 2.24147486e-16 - art_sys_15: -3.91384660e-01 - art_sys_16: 4.50172656e-15 - art_sys_17: -6.16326646e-17 - art_sys_18: -1.70871368e+00 - art_sys_19: 6.74418605e-14 - art_sys_20: -7.86433814e-15 - art_sys_21: 8.52318268e-01 - art_sys_22: -4.11228496e-15 - art_sys_23: -4.52296365e-15 + art_sys_6: -1.32132454e-16 + art_sys_7: -5.50793452e-15 + art_sys_8: -8.08739447e-02 + art_sys_9: -8.54670090e-16 + art_sys_10: -5.30935347e-17 + art_sys_11: -1.75463021e-01 + art_sys_12: -6.85385375e-16 + art_sys_13: 9.66421973e-15 + art_sys_14: -1.18497097e-15 + art_sys_15: 3.91384660e-01 + art_sys_16: 4.20875645e-15 + art_sys_17: 6.85490089e-15 + art_sys_18: 1.70871368e+00 + art_sys_19: 7.85312606e-14 + art_sys_20: -5.60016663e-15 + art_sys_21: -8.52318268e-01 + art_sys_22: -1.03088900e-15 + art_sys_23: 2.21710953e-15 art_sys_24: -4.28389318e-01 - art_sys_25: -4.69834210e-15 - art_sys_26: 3.41619419e-15 - art_sys_27: -3.10406214e-17 - art_sys_28: -1.72832386e-16 - art_sys_29: -2.65011031e-17 - art_sys_30: 8.46382965e-16 - art_sys_31: 4.67997438e-18 - art_sys_32: 6.79899702e-17 - art_sys_33: 2.11811736e-17 - art_sys_34: -8.22657569e-03 - art_sys_35: -3.35270635e-14 - art_sys_36: 1.55541242e-03 - art_sys_37: 2.28474065e-14 - art_sys_38: 1.87566055e-18 - art_sys_39: 1.29385421e-13 - art_sys_40: 1.18151027e-03 - art_sys_41: -3.02370754e-14 - art_sys_42: -2.01089792e-16 - art_sys_43: -1.24728241e-18 - art_sys_44: 4.15011931e-19 - art_sys_45: 2.39898214e-19 - art_sys_46: 2.20629037e-14 + art_sys_25: 4.87365239e-16 + art_sys_26: 4.05579716e-15 + art_sys_27: -1.36013968e-15 + art_sys_28: -8.80224221e-16 + art_sys_29: 2.48832496e-14 + art_sys_30: 9.55356898e-17 + art_sys_31: 2.10028144e-17 + art_sys_32: 6.85791223e-17 + art_sys_33: 2.64817588e-17 + art_sys_34: 8.22657569e-03 + art_sys_35: 1.06925733e-15 + art_sys_36: -1.55541242e-03 + art_sys_37: -1.43943510e-13 + art_sys_38: 5.17568685e-18 + art_sys_39: 4.78928305e-12 + art_sys_40: -1.18151027e-03 + art_sys_41: 1.00300017e-12 + art_sys_42: 4.80009806e-16 + art_sys_43: 2.09584740e-19 + art_sys_44: 3.15638955e-20 + art_sys_45: 2.34967322e-19 + art_sys_46: 1.37714545e-14 art_sys_47: 4.20896436e-05 - art_sys_48: 1.30592745e-14 - art_sys_49: -3.21998286e-20 - art_sys_50: 1.01574106e-05 - art_sys_51: 6.40227284e-18 - art_sys_52: 2.67946751e-17 - art_sys_53: -2.34023243e-17 - art_sys_54: -2.26624513e-14 - art_sys_55: -3.26458397e-14 - art_sys_56: 3.61149276e-06 - art_sys_57: 9.77991672e-14 - art_sys_58: -1.24093071e-14 - art_sys_59: -7.99253011e-19 - art_sys_60: 8.65342571e-20 - art_sys_61: 6.58780244e-20 - art_sys_62: -1.15384631e-20 - art_sys_63: -3.06169365e-20 - art_sys_64: 1.17786939e-16 - art_sys_65: -8.01780529e-21 - art_sys_66: -4.30841877e-21 - art_sys_67: 1.87512897e-21 - art_sys_68: 3.56525812e-17 - art_sys_69: 5.84192024e-17 - art_sys_70: -3.90720815e-14 - art_sys_71: -9.43585111e-08 - art_sys_72: 2.68064712e-21 - art_sys_73: -4.58146623e-15 - art_sys_74: -1.97343977e-08 - art_sys_75: -3.08162658e-24 - art_sys_76: -4.49116558e-23 - art_sys_77: -1.26033742e-22 - art_sys_78: -5.17771764e-09 - art_sys_79: 3.78790150e-15 - art_sys_80: -8.93673590e-24 - art_sys_81: -4.15535710e-25 - art_sys_82: 3.05545003e-25 - art_sys_83: -1.34903741e-18 - art_sys_84: 8.65900307e-16 - art_sys_85: 1.55258173e-15 - art_sys_86: -1.21464016e-18 - art_sys_87: -2.95332284e-15 - art_sys_88: 2.54944816e-25 - art_sys_89: 7.71914076e-17 - art_sys_90: -3.58934882e-16 - art_sys_91: 5.40515934e-16 - art_sys_92: -3.82341167e-18 - art_sys_93: -4.16042377e-17 - art_sys_94: -2.24262395e-17 - art_sys_95: 1.10928933e-17 - art_sys_96: 3.03187824e-16 - art_sys_97: 2.18954627e-16 - art_sys_98: -7.55978736e-12 - art_sys_99: 7.52852978e-19 - art_sys_100: 2.08742866e-26 - art_sys_101: 5.91890239e-26 - art_sys_102: -1.16030546e-16 - art_sys_103: 2.53277404e-18 - art_sys_104: -1.31332423e-16 - art_sys_105: 8.16123027e-20 - art_sys_106: 1.99683318e-12 - art_sys_107: 3.14744540e-17 - art_sys_108: -4.69262903e-19 - art_sys_109: 5.26121179e-17 - art_sys_110: 3.97783951e-13 - art_sys_111: 3.55947038e-18 - art_sys_112: 4.83751048e-17 - art_sys_113: -5.85452819e-17 - art_sys_114: 1.24869003e-17 - art_sys_115: 6.06453585e-14 - art_sys_116: 1.61001561e-16 - art_sys_117: -3.92016040e-18 - art_sys_118: 1.77517933e-16 - art_sys_119: -2.56105664e-19 - art_sys_120: -9.43590747e-22 - art_sys_121: 1.01487714e-22 - art_sys_122: -2.96804635e-22 - art_sys_123: -8.37253581e-15 - art_sys_124: -8.70805296e-23 - art_sys_125: -1.71900741e-17 - art_sys_126: -1.49309731e-22 - art_sys_127: -1.22079739e-17 - art_sys_128: -1.41337039e-22 - art_sys_129: -1.80767670e-16 - art_sys_130: 1.17286933e-18 - art_sys_131: -2.76042910e-18 - art_sys_132: -8.35763409e-23 - art_sys_133: -2.02582175e-18 - art_sys_134: 7.26768406e-22 - art_sys_135: 3.34281079e-26 - art_sys_136: -2.65493980e-26 - art_sys_137: 4.84354241e-27 - art_sys_138: -5.59079724e-27 - art_sys_139: 3.96310074e-26 - art_sys_140: -1.46802103e-26 - art_sys_141: -1.43413546e-22 - art_sys_142: -1.61621445e-26 - art_sys_143: -8.48512290e-26 - art_sys_144: -4.34870118e-25 - art_sys_145: -2.23868727e-25 - art_sys_146: -4.06231261e-25 - art_sys_147: 2.36899871e-26 - art_sys_148: 2.17705632e-27 - art_sys_149: -1.02116306e-26 - art_sys_150: 5.78755078e-28 - art_sys_151: 8.31205823e-28 - art_sys_152: -5.91957096e-29 - art_sys_153: 6.42344323e-28 - art_sys_154: 1.25926140e-28 - art_sys_155: -2.29084833e-28 - art_sys_156: 1.99399905e-28 - art_sys_157: 7.16412077e-29 - art_sys_158: 2.78444210e-29 - art_sys_159: -6.73791485e-30 - art_sys_160: -1.24890131e-30 - art_sys_161: 2.14273881e-32 - art_sys_162: 5.34015755e-32 - art_sys_163: -2.20450751e-31 - art_sys_164: 1.34369811e-30 - art_sys_165: -1.19191323e-31 - art_sys_166: -1.73458292e-32 - art_sys_167: 2.27650203e-32 - art_sys_168: 6.42190961e-21 - art_sys_169: -6.20047487e-33 - art_sys_170: 1.20933180e-22 - art_sys_171: -8.16953331e-21 - art_sys_172: -3.81833583e-32 - art_sys_173: 1.12604846e-33 - art_sys_174: 6.99253272e-22 - art_sys_175: 0.0 - art_sys_176: 9.56569167e-24 - art_sys_177: 0.0 - art_sys_178: -1.11903300e-25 - art_sys_179: -2.41678562e-27 - art_sys_180: -5.76169279e-31 - art_sys_181: 3.80963386e-36 - art_sys_182: 0.0 - art_sys_183: -2.80135365e-35 - art_sys_184: -3.52267577e-35 - art_sys_185: -1.17733466e-37 + art_sys_48: -1.95913500e-13 + art_sys_49: -1.79120098e-17 + art_sys_50: -1.75424485e-18 + art_sys_51: -6.17339476e-18 + art_sys_52: -2.86177416e-18 + art_sys_53: 1.19521548e-18 + art_sys_54: 1.27360232e-18 + art_sys_55: -3.78971435e-15 + art_sys_56: -4.48640570e-17 + art_sys_57: 1.01574106e-05 + art_sys_58: 1.28747982e-19 + art_sys_59: -2.31784164e-20 + art_sys_60: -2.83669385e-13 + art_sys_61: 4.53157331e-15 + art_sys_62: -3.61149266e-06 + art_sys_63: 5.45890810e-18 + art_sys_64: -4.40042576e-13 + art_sys_65: -2.33600543e-21 + art_sys_66: -4.03822823e-22 + art_sys_67: 3.73874450e-15 + art_sys_68: -3.02899656e-17 + art_sys_69: 1.14285053e-17 + art_sys_70: -4.56522246e-16 + art_sys_71: -9.43584811e-08 + art_sys_72: 1.90021539e-15 + art_sys_73: -6.22723143e-19 + art_sys_74: 3.02704191e-19 + art_sys_75: 1.09801892e-19 + art_sys_76: 1.43066783e-19 + art_sys_77: -1.97343745e-08 + art_sys_78: 7.91567854e-18 + art_sys_79: -1.46381948e-20 + art_sys_80: 5.73069646e-22 + art_sys_81: -8.02794766e-21 + art_sys_82: -1.78590234e-21 + art_sys_83: -4.33388435e-19 + art_sys_84: 1.05363495e-21 + art_sys_85: -1.16389627e-21 + art_sys_86: 2.76692519e-18 + art_sys_87: 5.17772079e-09 + art_sys_88: -2.47924262e-19 + art_sys_89: 2.16715429e-21 + art_sys_90: -2.80764567e-15 + art_sys_91: 2.83189345e-19 + art_sys_92: -7.56344711e-15 + art_sys_93: 1.82264555e-15 + art_sys_94: 4.19827583e-16 + art_sys_95: -4.10590197e-18 + art_sys_96: 4.67197665e-20 + art_sys_97: -9.37664308e-16 + art_sys_98: 1.27119470e-16 + art_sys_99: 1.82641763e-15 + art_sys_100: 8.60938875e-19 + art_sys_101: 1.14382636e-18 + art_sys_102: 6.05395928e-18 + art_sys_103: 5.44724222e-19 + art_sys_104: 1.57886331e-15 + art_sys_105: -3.86016517e-18 + art_sys_106: 7.56000999e-12 + art_sys_107: -1.85098676e-19 + art_sys_108: 1.14242283e-20 + art_sys_109: 6.68706966e-20 + art_sys_110: -2.21262846e-16 + art_sys_111: -1.55314844e-16 + art_sys_112: -1.18700277e-17 + art_sys_113: 1.27910394e-21 + art_sys_114: 1.05214513e-16 + art_sys_115: -3.63199812e-18 + art_sys_116: -1.99666540e-12 + art_sys_117: 8.92284294e-17 + art_sys_118: 1.81889395e-17 + art_sys_119: -4.63043168e-17 + art_sys_120: -3.97980476e-13 + art_sys_121: -6.86246431e-18 + art_sys_122: 5.58633167e-17 + art_sys_123: -9.11437321e-17 + art_sys_124: 6.39731126e-18 + art_sys_125: -6.06603392e-14 + art_sys_126: -1.81467527e-17 + art_sys_127: -4.52691790e-17 + art_sys_128: -3.60056850e-17 + art_sys_129: -2.32613519e-17 + art_sys_130: -9.90973589e-17 + art_sys_131: 8.37727840e-15 + art_sys_132: 2.14116765e-17 + art_sys_133: -1.69715889e-16 + art_sys_134: -1.26379064e-19 + art_sys_135: -7.28535865e-18 + art_sys_136: -1.60143810e-17 + art_sys_137: 1.96349977e-20 + art_sys_138: -1.10200295e-17 + art_sys_139: -3.99676862e-18 + art_sys_140: -1.50582586e-17 + art_sys_141: -1.73060923e-16 + art_sys_142: 4.57586522e-18 + art_sys_143: -5.26453552e-21 + art_sys_144: -1.53210952e-22 + art_sys_145: 6.44003272e-20 + art_sys_146: 0.0 + art_sys_147: -5.52364491e-19 + art_sys_148: 2.46209505e-18 + art_sys_149: 2.46209505e-18 + art_sys_150: 1.17574212e-18 + art_sys_151: 1.17574212e-18 + art_sys_152: -2.96638396e-19 + art_sys_153: -1.54712625e-19 + art_sys_154: 3.79210375e-22 + art_sys_155: -7.42588621e-32 + art_sys_156: 3.55546473e-34 + art_sys_157: 1.55285544e-34 + art_sys_158: 0.0 + art_sys_159: -1.77399189e-19 + art_sys_160: 5.10922301e-20 + art_sys_161: 1.75681530e-19 + art_sys_162: 4.87706338e-21 + art_sys_163: 1.61875324e-18 + art_sys_164: 2.55113843e-19 + art_sys_165: -1.30084824e-21 + art_sys_166: -1.49806868e-27 + art_sys_167: -1.44157419e-27 + art_sys_168: 5.10492374e-28 + art_sys_169: -1.65358887e-29 + art_sys_170: 4.75078610e-29 + art_sys_171: -3.01481879e-29 + art_sys_172: -2.47714600e-29 + art_sys_173: 8.24763607e-30 + art_sys_174: 4.09821017e-30 + art_sys_175: -2.11791736e-32 + art_sys_176: -2.20819263e-32 + art_sys_177: -7.21166005e-31 + art_sys_178: 2.69045855e-31 + art_sys_179: -1.61394438e-31 + art_sys_180: 2.20860511e-31 + art_sys_181: 5.36843756e-34 + art_sys_182: -6.13892849e-32 + art_sys_183: -8.40392780e-34 + art_sys_184: 1.46594095e-35 + art_sys_185: 7.17011695e-36 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -57857,191 +57857,191 @@ bins: RelativeStatFSR-: -3.55281998e-01 luminosity_uncertainty: 3.76038 uncorrelated_uncertainty: 1.4463 -- art_sys_1: 1.03131337e-17 - art_sys_2: 7.55482128e-03 - art_sys_3: -4.99506900e-17 - art_sys_4: 3.72996433e-17 +- art_sys_1: -3.21628112e-18 + art_sys_2: 5.17783529e-17 + art_sys_3: 7.55482128e-03 + art_sys_4: 1.05430122e-16 art_sys_5: 4.37778576e-02 - art_sys_6: -6.53578716e-18 - art_sys_7: -3.65865861e-17 - art_sys_8: -8.02527676e-02 - art_sys_9: -2.89889458e-17 - art_sys_10: -4.00806652e-17 - art_sys_11: -2.02451264e-02 - art_sys_12: 6.48411514e-16 - art_sys_13: -1.24363946e-14 - art_sys_14: -5.91747662e-16 - art_sys_15: -2.83998131e-01 - art_sys_16: 1.35897281e-15 - art_sys_17: 4.90744783e-15 - art_sys_18: -1.29552355e-01 - art_sys_19: -1.44280316e-15 - art_sys_20: 1.63675129e-14 - art_sys_21: 1.11517690e+00 - art_sys_22: 1.61867971e-14 - art_sys_23: 4.62885223e-15 + art_sys_6: 6.43027001e-17 + art_sys_7: 1.80583494e-18 + art_sys_8: 8.02527676e-02 + art_sys_9: -1.42483172e-17 + art_sys_10: 1.07081358e-17 + art_sys_11: 2.02451264e-02 + art_sys_12: -2.44929559e-16 + art_sys_13: 9.07468669e-15 + art_sys_14: -1.64555637e-16 + art_sys_15: 2.83998131e-01 + art_sys_16: 1.62308672e-15 + art_sys_17: 3.21801453e-15 + art_sys_18: 1.29552355e-01 + art_sys_19: -4.60831844e-16 + art_sys_20: 1.41930402e-14 + art_sys_21: -1.11517690e+00 + art_sys_22: 2.77864698e-15 + art_sys_23: -2.00246083e-15 art_sys_24: 6.32757998e-01 - art_sys_25: 7.88217174e-15 - art_sys_26: -4.44605905e-15 - art_sys_27: -9.74632258e-16 - art_sys_28: 3.07100193e-16 - art_sys_29: -1.50467359e-16 - art_sys_30: -9.69051751e-16 - art_sys_31: -5.34103248e-17 - art_sys_32: -9.62328967e-17 - art_sys_33: -1.61146223e-17 - art_sys_34: 5.58164153e-03 - art_sys_35: 6.39148339e-14 - art_sys_36: -4.99269104e-03 - art_sys_37: -7.40136716e-14 - art_sys_38: -4.07118647e-18 - art_sys_39: -2.70687618e-13 - art_sys_40: -2.82885046e-03 - art_sys_41: 7.31636984e-14 - art_sys_42: 2.47984905e-16 - art_sys_43: 2.32194400e-19 - art_sys_44: -7.66431740e-20 - art_sys_45: -7.09428804e-19 - art_sys_46: -2.84832634e-14 + art_sys_25: -2.34657205e-15 + art_sys_26: -3.40680618e-15 + art_sys_27: 1.43052517e-15 + art_sys_28: 6.98916840e-16 + art_sys_29: -1.68060981e-14 + art_sys_30: 1.99604261e-16 + art_sys_31: 5.54452280e-17 + art_sys_32: -5.51927648e-17 + art_sys_33: -7.12120944e-18 + art_sys_34: -5.58164153e-03 + art_sys_35: 3.18352493e-14 + art_sys_36: 4.99269104e-03 + art_sys_37: 4.64268424e-13 + art_sys_38: -1.23871002e-17 + art_sys_39: -1.14430382e-11 + art_sys_40: 2.82885046e-03 + art_sys_41: -2.40160502e-12 + art_sys_42: -4.74184370e-16 + art_sys_43: -4.87990219e-19 + art_sys_44: -1.00308389e-19 + art_sys_45: -1.59948792e-19 + art_sys_46: -1.63899678e-14 art_sys_47: -1.21661833e-04 - art_sys_48: -4.17296107e-14 - art_sys_49: 9.20235492e-20 - art_sys_50: -3.34380461e-05 - art_sys_51: -1.30698459e-17 - art_sys_52: -8.33159623e-17 - art_sys_53: 7.32862591e-17 - art_sys_54: 7.14152959e-14 - art_sys_55: 9.71272630e-14 - art_sys_56: -1.13011767e-05 - art_sys_57: -3.06048367e-13 - art_sys_58: 4.02223178e-14 - art_sys_59: 2.84846395e-18 - art_sys_60: -3.10650989e-19 - art_sys_61: -2.36156441e-19 - art_sys_62: 4.06662798e-20 - art_sys_63: 1.09960870e-19 - art_sys_64: -4.22285474e-16 - art_sys_65: 2.85120161e-20 - art_sys_66: 1.55183236e-20 - art_sys_67: -6.64270748e-21 - art_sys_68: -1.24120174e-16 - art_sys_69: -2.03429498e-16 - art_sys_70: 1.40715478e-13 - art_sys_71: 3.40042165e-07 - art_sys_72: 5.49535080e-21 - art_sys_73: 1.53936944e-14 - art_sys_74: 7.07447353e-08 - art_sys_75: -9.01953633e-23 - art_sys_76: 1.58645124e-22 - art_sys_77: 1.94756956e-22 - art_sys_78: 1.80380751e-08 - art_sys_79: -1.26107453e-14 - art_sys_80: 8.30763489e-24 - art_sys_81: 9.97591650e-25 - art_sys_82: -1.41242622e-24 - art_sys_83: 1.03737839e-17 - art_sys_84: -3.02431381e-15 - art_sys_85: -4.82686950e-15 - art_sys_86: 9.33098966e-18 - art_sys_87: 1.02882232e-14 - art_sys_88: -4.08265432e-25 - art_sys_89: -5.92160659e-16 - art_sys_90: 1.24853031e-15 - art_sys_91: -1.75204470e-15 - art_sys_92: 2.17591604e-17 - art_sys_93: 1.67076639e-16 - art_sys_94: 8.11302926e-17 - art_sys_95: -6.31812375e-17 - art_sys_96: -9.71034515e-16 - art_sys_97: -1.67020714e-15 - art_sys_98: 5.78712499e-11 - art_sys_99: -3.01530835e-18 - art_sys_100: 1.16074911e-26 - art_sys_101: 2.45458847e-25 - art_sys_102: 8.84899730e-16 - art_sys_103: -1.47214393e-17 - art_sys_104: 9.38933499e-16 - art_sys_105: -3.68985943e-19 - art_sys_106: -7.23154139e-12 - art_sys_107: -1.49362665e-16 - art_sys_108: 2.18570159e-18 - art_sys_109: -1.99956971e-16 - art_sys_110: -2.06914812e-12 - art_sys_111: -1.65623495e-17 - art_sys_112: -2.30825877e-16 - art_sys_113: 3.10844790e-16 - art_sys_114: -6.76568378e-17 - art_sys_115: -2.77513939e-13 - art_sys_116: -8.38082107e-16 - art_sys_117: 1.39640706e-17 - art_sys_118: -9.23779234e-16 - art_sys_119: 1.19173199e-18 - art_sys_120: 4.49750791e-21 - art_sys_121: -2.22878438e-22 - art_sys_122: 1.50653039e-21 - art_sys_123: 3.89570383e-14 - art_sys_124: 5.98208987e-22 - art_sys_125: 8.97103560e-17 - art_sys_126: 8.13368777e-22 - art_sys_127: 6.27326716e-17 - art_sys_128: 7.39677105e-22 - art_sys_129: 7.90374798e-16 - art_sys_130: -6.74263424e-18 - art_sys_131: 1.34099736e-17 - art_sys_132: 3.78771975e-22 - art_sys_133: 9.48249010e-18 - art_sys_134: -3.39785097e-21 - art_sys_135: -1.09918084e-25 - art_sys_136: 4.30790365e-26 - art_sys_137: -4.39670420e-27 - art_sys_138: -8.07273813e-27 - art_sys_139: -1.69012694e-26 - art_sys_140: 3.42005863e-26 - art_sys_141: 6.70880223e-22 - art_sys_142: 4.01858737e-26 - art_sys_143: 3.97680763e-25 - art_sys_144: 1.93687555e-24 - art_sys_145: 9.42880966e-25 - art_sys_146: 1.68586672e-24 - art_sys_147: 3.27589091e-26 - art_sys_148: -2.81367003e-26 - art_sys_149: 4.68671807e-26 - art_sys_150: -5.51722446e-28 - art_sys_151: -4.67623624e-27 - art_sys_152: 2.04226186e-28 - art_sys_153: -2.85767612e-27 - art_sys_154: -5.78983672e-28 - art_sys_155: 1.00176782e-27 - art_sys_156: -8.53836283e-28 - art_sys_157: -3.18781210e-28 - art_sys_158: -1.23216678e-28 - art_sys_159: 2.97639234e-29 - art_sys_160: 5.36115832e-30 - art_sys_161: -1.37483449e-31 - art_sys_162: -2.39676165e-31 - art_sys_163: 9.54304224e-31 - art_sys_164: -5.86652233e-30 - art_sys_165: 5.28359881e-31 - art_sys_166: 7.84498457e-32 - art_sys_167: -8.33882413e-32 - art_sys_168: -3.00993541e-20 - art_sys_169: 2.83192737e-32 - art_sys_170: -5.99347405e-22 - art_sys_171: 3.74627313e-20 - art_sys_172: 1.69170194e-31 - art_sys_173: -5.20670398e-33 - art_sys_174: -3.20801877e-21 - art_sys_175: 0.0 - art_sys_176: -4.38888387e-23 - art_sys_177: 0.0 - art_sys_178: 5.13620253e-25 - art_sys_179: 1.13105750e-26 - art_sys_180: 2.60524639e-30 - art_sys_181: -1.73024876e-35 - art_sys_182: 0.0 - art_sys_183: 1.28440241e-34 - art_sys_184: 1.84337907e-34 - art_sys_185: 5.44824725e-37 + art_sys_48: 6.42524663e-13 + art_sys_49: 7.17998173e-17 + art_sys_50: 6.34278349e-18 + art_sys_51: 1.97717941e-17 + art_sys_52: 8.99604232e-18 + art_sys_53: -3.60174818e-18 + art_sys_54: -4.04950243e-18 + art_sys_55: 1.24736131e-14 + art_sys_56: 1.39373488e-16 + art_sys_57: -3.34380461e-05 + art_sys_58: -3.95198652e-19 + art_sys_59: 7.74893246e-20 + art_sys_60: 8.87623327e-13 + art_sys_61: -1.49945881e-14 + art_sys_62: 1.13011764e-05 + art_sys_63: -1.96593490e-17 + art_sys_64: 1.37689283e-12 + art_sys_65: 8.44937389e-21 + art_sys_66: 1.41903286e-21 + art_sys_67: -1.23628821e-14 + art_sys_68: 1.06101007e-16 + art_sys_69: -4.01389747e-17 + art_sys_70: 1.74491576e-15 + art_sys_71: 3.40042058e-07 + art_sys_72: -5.62971014e-15 + art_sys_73: 2.37484174e-18 + art_sys_74: -1.07641090e-18 + art_sys_75: -3.91848432e-19 + art_sys_76: -5.12854513e-19 + art_sys_77: 7.07446515e-08 + art_sys_78: -2.83685171e-17 + art_sys_79: 4.94609985e-20 + art_sys_80: -1.99167394e-21 + art_sys_81: 2.81025664e-20 + art_sys_82: 6.22474427e-21 + art_sys_83: 3.17055416e-18 + art_sys_84: -3.78579302e-21 + art_sys_85: 4.01058200e-21 + art_sys_86: -9.97841369e-18 + art_sys_87: -1.80380861e-08 + art_sys_88: 1.09789994e-18 + art_sys_89: -1.03832279e-20 + art_sys_90: 9.82691810e-15 + art_sys_91: -2.19014947e-18 + art_sys_92: 2.63497974e-14 + art_sys_93: -5.81081813e-15 + art_sys_94: -1.46658081e-15 + art_sys_95: 3.14120297e-17 + art_sys_96: -2.13921376e-19 + art_sys_97: 7.17826401e-15 + art_sys_98: -4.46428745e-16 + art_sys_99: -5.70999437e-15 + art_sys_100: -6.88670460e-18 + art_sys_101: -4.19877321e-18 + art_sys_102: -2.50857960e-17 + art_sys_103: -3.12378862e-18 + art_sys_104: -4.94287077e-15 + art_sys_105: 3.32796712e-17 + art_sys_106: -5.78729520e-11 + art_sys_107: 8.61311656e-19 + art_sys_108: -5.31141834e-20 + art_sys_109: -3.06116702e-19 + art_sys_110: 7.84483115e-16 + art_sys_111: 1.18961118e-15 + art_sys_112: 6.51875427e-17 + art_sys_113: -5.47866233e-21 + art_sys_114: -8.04763054e-16 + art_sys_115: 1.66222507e-17 + art_sys_116: 7.23095251e-12 + art_sys_117: -7.09757542e-16 + art_sys_118: -8.32230021e-17 + art_sys_119: 2.91311404e-16 + art_sys_120: 2.07016859e-12 + art_sys_121: 3.21682624e-17 + art_sys_122: -1.68675733e-16 + art_sys_123: 4.51344957e-16 + art_sys_124: -2.98086959e-17 + art_sys_125: 2.77583883e-13 + art_sys_126: 8.44554423e-17 + art_sys_127: 2.14030223e-16 + art_sys_128: 1.67308121e-16 + art_sys_129: 1.32292751e-16 + art_sys_130: 4.60651710e-16 + art_sys_131: -3.89794678e-14 + art_sys_132: -1.05183356e-16 + art_sys_133: 7.89119128e-16 + art_sys_134: 5.88634052e-19 + art_sys_135: 3.63727547e-17 + art_sys_136: 7.39100655e-17 + art_sys_137: -9.24027392e-20 + art_sys_138: 3.41535959e-17 + art_sys_139: 1.74825558e-17 + art_sys_140: 6.91045345e-17 + art_sys_141: 7.53310818e-16 + art_sys_142: -2.04585117e-17 + art_sys_143: 2.50156322e-20 + art_sys_144: -4.75288526e-22 + art_sys_145: -2.90806433e-19 + art_sys_146: -0.0 + art_sys_147: 2.53365598e-18 + art_sys_148: -1.18033725e-17 + art_sys_149: -1.18033725e-17 + art_sys_150: -5.06081419e-18 + art_sys_151: -5.06081419e-18 + art_sys_152: 1.58484989e-18 + art_sys_153: 6.30821320e-19 + art_sys_154: -1.72680915e-21 + art_sys_155: 2.04091661e-31 + art_sys_156: -1.68580084e-33 + art_sys_157: -7.24255529e-34 + art_sys_158: -0.0 + art_sys_159: 7.72731143e-19 + art_sys_160: -2.22784903e-19 + art_sys_161: -7.67019771e-19 + art_sys_162: -2.12984788e-20 + art_sys_163: -7.10787015e-18 + art_sys_164: -1.12020659e-18 + art_sys_165: 6.67606164e-21 + art_sys_166: 6.55579149e-27 + art_sys_167: 6.30419507e-27 + art_sys_168: -2.22567657e-27 + art_sys_169: 1.29658210e-28 + art_sys_170: -1.84244971e-28 + art_sys_171: 1.42007789e-28 + art_sys_172: 8.43564236e-29 + art_sys_173: -3.43115338e-29 + art_sys_174: -1.97087493e-29 + art_sys_175: 9.57138563e-32 + art_sys_176: 7.13542830e-32 + art_sys_177: 3.44926765e-30 + art_sys_178: -1.28091402e-30 + art_sys_179: 7.55213918e-31 + art_sys_180: -1.01966564e-30 + art_sys_181: -2.45626655e-33 + art_sys_182: 2.66921806e-31 + art_sys_183: 3.71138763e-33 + art_sys_184: -6.76076614e-35 + art_sys_185: -3.36859259e-35 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -58148,191 +58148,191 @@ bins: RelativeStatFSR-: -1.77681004e-01 luminosity_uncertainty: 1.75861400e+00 uncorrelated_uncertainty: 6.76390000e-01 -- art_sys_1: 4.68517968e-18 - art_sys_2: 2.27953120e-03 - art_sys_3: -2.64792491e-18 - art_sys_4: 2.53373394e-17 +- art_sys_1: -1.61015788e-18 + art_sys_2: 3.03239801e-18 + art_sys_3: 2.27953120e-03 + art_sys_4: 1.68813884e-17 art_sys_5: 1.87462833e-03 - art_sys_6: -1.28061944e-18 - art_sys_7: -1.44887304e-17 - art_sys_8: -8.76248995e-03 - art_sys_9: 2.04872049e-18 - art_sys_10: -1.90293002e-17 - art_sys_11: -7.69517351e-03 - art_sys_12: -2.16873046e-17 - art_sys_13: 1.60044791e-16 - art_sys_14: -8.59944268e-17 - art_sys_15: 1.07140019e-02 - art_sys_16: -9.38770058e-17 - art_sys_17: 6.40410251e-16 - art_sys_18: 8.10092244e-02 - art_sys_19: -3.39099392e-15 - art_sys_20: 1.33256615e-15 - art_sys_21: 2.59958545e-03 - art_sys_22: 1.25633222e-15 - art_sys_23: 2.93192074e-15 + art_sys_6: 8.90554227e-18 + art_sys_7: 4.81966218e-18 + art_sys_8: 8.76248995e-03 + art_sys_9: -5.63065344e-18 + art_sys_10: 3.00762479e-18 + art_sys_11: 7.69517351e-03 + art_sys_12: 1.68983016e-17 + art_sys_13: -2.00119040e-16 + art_sys_14: 4.68350596e-17 + art_sys_15: -1.07140019e-02 + art_sys_16: -1.18511935e-16 + art_sys_17: -1.56071477e-16 + art_sys_18: -8.10092244e-02 + art_sys_19: -3.91920362e-15 + art_sys_20: 1.36763878e-15 + art_sys_21: -2.59958545e-03 + art_sys_22: 1.44898713e-16 + art_sys_23: -2.58792613e-15 art_sys_24: 7.48757864e-02 - art_sys_25: -6.41109040e-14 - art_sys_26: 4.73568772e-14 - art_sys_27: -2.68602968e-15 - art_sys_28: -2.40866643e-15 - art_sys_29: -5.29191274e-16 - art_sys_30: -7.90649965e-16 - art_sys_31: -4.27030542e-16 - art_sys_32: 4.69487632e-17 - art_sys_33: 2.78643211e-16 - art_sys_34: -1.24313414e-01 - art_sys_35: -2.62777645e-13 - art_sys_36: 1.62801408e-02 - art_sys_37: 2.42630141e-13 - art_sys_38: 3.13981956e-17 - art_sys_39: 1.75702445e-12 - art_sys_40: 1.84131364e-02 - art_sys_41: -4.78479902e-13 - art_sys_42: -1.02022475e-15 - art_sys_43: 5.58246838e-18 - art_sys_44: -2.06256470e-18 - art_sys_45: 2.59556220e-18 - art_sys_46: 1.65963502e-13 - art_sys_47: 6.00859553e-04 - art_sys_48: 2.15632931e-13 - art_sys_49: -3.20879175e-19 - art_sys_50: 1.75325806e-04 - art_sys_51: 1.10388054e-16 - art_sys_52: 4.55669745e-16 - art_sys_53: -3.99179646e-16 - art_sys_54: -3.87226164e-13 - art_sys_55: -4.77754067e-13 - art_sys_56: 6.15393778e-05 - art_sys_57: 1.66650489e-12 - art_sys_58: -2.11135266e-13 - art_sys_59: -1.32770674e-17 - art_sys_60: 1.41339277e-18 - art_sys_61: 1.12906011e-18 - art_sys_62: -2.05306577e-19 - art_sys_63: -5.21214903e-19 - art_sys_64: 2.23381613e-15 - art_sys_65: -1.33946735e-19 - art_sys_66: -7.29770660e-20 - art_sys_67: 3.21022843e-20 - art_sys_68: 6.39447678e-16 - art_sys_69: 1.04867002e-15 - art_sys_70: -6.56288893e-13 - art_sys_71: -1.59203930e-06 - art_sys_72: -5.28678787e-21 - art_sys_73: -7.79574158e-14 - art_sys_74: -3.72721708e-07 - art_sys_75: 3.01732860e-23 - art_sys_76: -2.97416538e-22 - art_sys_77: -2.19917959e-21 - art_sys_78: -9.29817014e-08 - art_sys_79: 7.06666367e-14 - art_sys_80: -1.37012254e-22 - art_sys_81: -7.45980041e-24 - art_sys_82: 6.37654265e-24 - art_sys_83: -3.14708779e-17 - art_sys_84: 1.56055619e-14 - art_sys_85: 2.63659304e-14 - art_sys_86: -2.82725326e-17 - art_sys_87: -5.30415508e-14 - art_sys_88: 3.72195047e-24 - art_sys_89: 1.79823003e-15 - art_sys_90: -6.43541030e-15 - art_sys_91: 9.36435030e-15 - art_sys_92: -8.16890069e-17 - art_sys_93: -9.37649498e-16 - art_sys_94: -5.03271740e-16 - art_sys_95: 2.41591960e-16 - art_sys_96: 5.16467944e-15 - art_sys_97: 5.10039405e-15 - art_sys_98: -1.76083891e-10 - art_sys_99: 1.65576943e-17 - art_sys_100: 3.97565590e-25 - art_sys_101: 1.17909198e-24 - art_sys_102: -2.70249641e-15 - art_sys_103: 4.69535503e-17 - art_sys_104: -3.04580659e-15 - art_sys_105: 1.87982034e-18 - art_sys_106: 4.47992573e-11 - art_sys_107: 7.12377728e-16 - art_sys_108: -1.04916315e-17 - art_sys_109: 1.16725115e-15 - art_sys_110: 8.21405015e-12 - art_sys_111: 7.96116961e-17 - art_sys_112: 1.02326640e-15 - art_sys_113: -1.20146583e-15 - art_sys_114: 2.54028798e-16 - art_sys_115: 1.38335754e-12 - art_sys_116: 3.32314273e-15 - art_sys_117: -6.66788507e-17 - art_sys_118: 3.66403829e-15 - art_sys_119: -5.73277324e-18 - art_sys_120: -2.13300226e-20 - art_sys_121: 2.19434840e-21 - art_sys_122: -5.88342748e-21 - art_sys_123: -1.87283832e-13 - art_sys_124: -1.75644443e-21 - art_sys_125: -3.54147320e-16 - art_sys_126: -3.19003988e-21 - art_sys_127: -2.54476129e-16 - art_sys_128: -2.98999651e-21 - art_sys_129: -3.64409351e-15 - art_sys_130: 2.23914989e-17 - art_sys_131: -5.93698702e-17 - art_sys_132: -1.83991305e-21 - art_sys_133: -4.38256971e-17 - art_sys_134: 1.57889270e-20 - art_sys_135: 4.40005711e-25 - art_sys_136: -3.68375383e-25 - art_sys_137: 1.29335001e-25 - art_sys_138: -1.85592849e-25 - art_sys_139: 7.01439571e-25 - art_sys_140: -2.20581807e-25 - art_sys_141: -3.09479764e-21 - art_sys_142: -2.30233637e-25 - art_sys_143: -1.83482768e-24 - art_sys_144: -8.84415027e-24 - art_sys_145: -4.83114265e-24 - art_sys_146: -8.28582437e-24 - art_sys_147: 2.43124578e-25 - art_sys_148: 1.33885027e-25 - art_sys_149: -2.27792295e-25 - art_sys_150: 2.42865419e-26 - art_sys_151: 1.75878511e-26 - art_sys_152: -9.17755803e-28 - art_sys_153: 1.31912011e-26 - art_sys_154: 2.70522114e-27 - art_sys_155: -4.62350923e-27 - art_sys_156: 3.93113308e-27 - art_sys_157: 1.47254795e-27 - art_sys_158: 5.68733963e-28 - art_sys_159: -1.37713571e-28 - art_sys_160: -2.42421090e-29 - art_sys_161: 4.79706721e-31 - art_sys_162: 1.09400436e-30 - art_sys_163: -4.35452072e-30 - art_sys_164: 2.69828825e-29 - art_sys_165: -2.46532065e-30 - art_sys_166: -3.72567152e-31 - art_sys_167: 3.06584419e-31 - art_sys_168: 1.38838784e-19 - art_sys_169: -1.29274608e-31 - art_sys_170: 2.53351591e-21 - art_sys_171: -1.78701336e-19 - art_sys_172: -7.82224482e-31 - art_sys_173: 2.32600296e-32 - art_sys_174: 1.52919158e-20 - art_sys_175: 0.0 - art_sys_176: 2.09181840e-22 - art_sys_177: 0.0 - art_sys_178: -2.44662433e-24 - art_sys_179: -5.22866682e-26 - art_sys_180: -1.26899422e-29 - art_sys_181: 8.36597609e-35 - art_sys_182: 0.0 - art_sys_183: -6.11657370e-34 - art_sys_184: -7.25093263e-34 - art_sys_185: -2.54149783e-36 + art_sys_25: 1.07002065e-14 + art_sys_26: 6.09204499e-14 + art_sys_27: -2.13562436e-14 + art_sys_28: 1.32079146e-15 + art_sys_29: 3.74755109e-13 + art_sys_30: 2.37616646e-15 + art_sys_31: 2.54568599e-16 + art_sys_32: 1.08739646e-15 + art_sys_33: 3.87410368e-16 + art_sys_34: 1.24313414e-01 + art_sys_35: 2.11447189e-13 + art_sys_36: -1.62801408e-02 + art_sys_37: -1.51548702e-12 + art_sys_38: 7.98466260e-17 + art_sys_39: 7.44793184e-11 + art_sys_40: -1.84131363e-02 + art_sys_41: 1.56327642e-11 + art_sys_42: 1.15280096e-15 + art_sys_43: 6.23414051e-19 + art_sys_44: -1.27091382e-19 + art_sys_45: 8.02960596e-19 + art_sys_46: 9.51640407e-14 + art_sys_47: 6.00859552e-04 + art_sys_48: -3.36365241e-12 + art_sys_49: -3.79245973e-16 + art_sys_50: -4.40612532e-17 + art_sys_51: -1.05068030e-16 + art_sys_52: -4.76043466e-17 + art_sys_53: 2.00755239e-17 + art_sys_54: 2.17389397e-17 + art_sys_55: -6.54019584e-14 + art_sys_56: -7.59177374e-16 + art_sys_57: 1.75325806e-04 + art_sys_58: 2.18262275e-18 + art_sys_59: -3.96844583e-19 + art_sys_60: -4.83336852e-12 + art_sys_61: 7.35251302e-14 + art_sys_62: -6.15393761e-05 + art_sys_63: 9.21030600e-17 + art_sys_64: -7.49751087e-12 + art_sys_65: -3.90660731e-20 + art_sys_66: -7.88271091e-21 + art_sys_67: 6.39417678e-14 + art_sys_68: -5.49103678e-16 + art_sys_69: 2.07781563e-16 + art_sys_70: -6.44322529e-15 + art_sys_71: -1.59203871e-06 + art_sys_72: 3.15533231e-14 + art_sys_73: -1.23706817e-17 + art_sys_74: 5.65648834e-18 + art_sys_75: 2.04735393e-18 + art_sys_76: 2.70195128e-18 + art_sys_77: -3.72721318e-07 + art_sys_78: 1.49459537e-16 + art_sys_79: -2.60841748e-19 + art_sys_80: 1.01362238e-20 + art_sys_81: -1.44307878e-19 + art_sys_82: -3.21353802e-20 + art_sys_83: -9.90656650e-18 + art_sys_84: 1.90275897e-20 + art_sys_85: -2.08491868e-20 + art_sys_86: 6.21223158e-17 + art_sys_87: 9.29817576e-08 + art_sys_88: -5.33859464e-18 + art_sys_89: 4.77284782e-20 + art_sys_90: -5.03299734e-14 + art_sys_91: 6.64963713e-18 + art_sys_92: -1.35819340e-13 + art_sys_93: 3.13290626e-14 + art_sys_94: 7.56282881e-15 + art_sys_95: -9.56386868e-17 + art_sys_96: 1.06494716e-18 + art_sys_97: -2.18401939e-14 + art_sys_98: 2.30612058e-15 + art_sys_99: 3.11090130e-14 + art_sys_100: 2.01008902e-17 + art_sys_101: 1.92619242e-17 + art_sys_102: 1.30783986e-16 + art_sys_103: 1.23713871e-17 + art_sys_104: 2.69032017e-14 + art_sys_105: -9.03847384e-17 + art_sys_106: 1.76089076e-10 + art_sys_107: -4.14026149e-18 + art_sys_108: 2.55154450e-19 + art_sys_109: 1.45740769e-18 + art_sys_110: -4.98298709e-15 + art_sys_111: -3.61981481e-15 + art_sys_112: -2.34115112e-16 + art_sys_113: 2.49319769e-20 + art_sys_114: 2.44956559e-15 + art_sys_115: -8.28385537e-17 + art_sys_116: -4.47954670e-11 + art_sys_117: 2.08586898e-15 + art_sys_118: 4.14965497e-16 + art_sys_119: -1.06381357e-15 + art_sys_120: -8.21811124e-12 + art_sys_121: -1.55169957e-16 + art_sys_122: 1.28124053e-15 + art_sys_123: -1.91028339e-15 + art_sys_124: 1.43383876e-16 + art_sys_125: -1.38369561e-12 + art_sys_126: -4.06000539e-16 + art_sys_127: -1.01727491e-15 + art_sys_128: -8.03767095e-16 + art_sys_129: -4.52517381e-16 + art_sys_130: -2.21325803e-15 + art_sys_131: 1.87387177e-13 + art_sys_132: 4.66131048e-16 + art_sys_133: -3.79189085e-15 + art_sys_134: -2.78484367e-18 + art_sys_135: -1.55612351e-16 + art_sys_136: -3.53371248e-16 + art_sys_137: 4.29435592e-19 + art_sys_138: -1.87857335e-16 + art_sys_139: -8.76973940e-17 + art_sys_140: -3.31006247e-16 + art_sys_141: -3.46334097e-15 + art_sys_142: 9.68091532e-17 + art_sys_143: -1.16184901e-19 + art_sys_144: 2.88133735e-21 + art_sys_145: 1.34161189e-18 + art_sys_146: 0.0 + art_sys_147: -1.17814648e-17 + art_sys_148: 5.65046357e-17 + art_sys_149: 5.65046357e-17 + art_sys_150: 2.24445570e-17 + art_sys_151: 2.24445570e-17 + art_sys_152: -5.93567138e-18 + art_sys_153: -2.80548054e-18 + art_sys_154: 7.94851795e-21 + art_sys_155: -1.06290069e-30 + art_sys_156: 8.09351327e-33 + art_sys_157: 3.46327399e-33 + art_sys_158: 0.0 + art_sys_159: -3.55830886e-18 + art_sys_160: 1.02669079e-18 + art_sys_161: 3.53559495e-18 + art_sys_162: 9.81292579e-20 + art_sys_163: 3.28024325e-17 + art_sys_164: 5.18163769e-18 + art_sys_165: -3.41285816e-20 + art_sys_166: -3.02102159e-26 + art_sys_167: -2.89609315e-26 + art_sys_168: 1.02556641e-26 + art_sys_169: -5.62028316e-28 + art_sys_170: 8.08288066e-28 + art_sys_171: -6.59518570e-28 + art_sys_172: -4.55598482e-28 + art_sys_173: 1.41237216e-28 + art_sys_174: 8.59399934e-29 + art_sys_175: -4.40923104e-31 + art_sys_176: -1.09476672e-30 + art_sys_177: -1.55649306e-29 + art_sys_178: 5.85005228e-30 + art_sys_179: -3.48589678e-30 + art_sys_180: 4.74529653e-30 + art_sys_181: 1.16419867e-32 + art_sys_182: -1.22963523e-30 + art_sys_183: -1.71137147e-32 + art_sys_184: 3.10476474e-34 + art_sys_185: 1.56408606e-34 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -58439,191 +58439,191 @@ bins: RelativeStatFSR-: -9.12628053e-02 luminosity_uncertainty: 8.45262600e-01 uncorrelated_uncertainty: 3.25101000e-01 -- art_sys_1: 5.70237406e-19 - art_sys_2: 2.20792751e-04 - art_sys_3: 7.79597073e-19 - art_sys_4: 8.47564980e-19 +- art_sys_1: -2.00416042e-19 + art_sys_2: -7.74984269e-19 + art_sys_3: 2.20792751e-04 + art_sys_4: -9.61200048e-19 art_sys_5: -7.24334081e-04 - art_sys_6: -8.19211980e-20 - art_sys_7: -2.43874211e-19 - art_sys_8: 8.55469714e-04 - art_sys_9: 2.25696114e-18 - art_sys_10: 1.73161656e-18 - art_sys_11: -6.48004454e-05 - art_sys_12: -2.89045940e-17 - art_sys_13: 5.30631761e-16 - art_sys_14: 3.54089935e-17 - art_sys_15: 1.21292081e-02 - art_sys_16: -4.53424745e-17 - art_sys_17: -2.35238809e-16 - art_sys_18: 6.45429229e-03 - art_sys_19: 3.41397998e-17 - art_sys_20: -8.53139289e-16 - art_sys_21: -5.49947587e-02 - art_sys_22: -8.75236208e-16 - art_sys_23: -4.26554702e-16 + art_sys_6: -5.27329582e-19 + art_sys_7: -1.97247100e-19 + art_sys_8: -8.55469714e-04 + art_sys_9: 2.10170529e-20 + art_sys_10: 7.34737884e-20 + art_sys_11: 6.48004454e-05 + art_sys_12: 1.72288229e-17 + art_sys_13: -3.83535467e-16 + art_sys_14: 1.73645686e-17 + art_sys_15: -1.21292081e-02 + art_sys_16: -8.03881328e-17 + art_sys_17: -1.48078703e-16 + art_sys_18: -6.45429229e-03 + art_sys_19: -1.69027278e-17 + art_sys_20: -7.60875174e-16 + art_sys_21: 5.49947587e-02 + art_sys_22: -1.61629791e-16 + art_sys_23: 1.67531711e-16 art_sys_24: -3.68182305e-02 - art_sys_25: 7.90098494e-14 - art_sys_26: -2.36203957e-14 - art_sys_27: -2.05724748e-14 - art_sys_28: 3.44223378e-15 - art_sys_29: -3.53586362e-15 - art_sys_30: 4.17628993e-16 - art_sys_31: 2.82351446e-18 - art_sys_32: -9.99785271e-16 - art_sys_33: 1.40553732e-16 - art_sys_34: -4.65798719e-02 - art_sys_35: 6.81135814e-13 - art_sys_36: -6.95329785e-02 - art_sys_37: -1.03772041e-12 - art_sys_38: -2.95350428e-17 - art_sys_39: -2.82353042e-12 - art_sys_40: -3.17415305e-02 - art_sys_41: 8.25849700e-13 - art_sys_42: 1.07377172e-15 - art_sys_43: -8.87195192e-18 - art_sys_44: 4.53669539e-18 - art_sys_45: -8.93935271e-18 - art_sys_46: -2.55042519e-13 + art_sys_25: -3.55687413e-14 + art_sys_26: 1.06687738e-14 + art_sys_27: 2.70668242e-15 + art_sys_28: 1.79775431e-17 + art_sys_29: 1.39971687e-13 + art_sys_30: 6.18883658e-15 + art_sys_31: 9.65780976e-16 + art_sys_32: 2.92980811e-16 + art_sys_33: 3.65275823e-16 + art_sys_34: 4.65798719e-02 + art_sys_35: 6.92005171e-13 + art_sys_36: 6.95329785e-02 + art_sys_37: 6.47831986e-12 + art_sys_38: -1.58561222e-16 + art_sys_39: -1.28268823e-10 + art_sys_40: 3.17415304e-02 + art_sys_41: -2.69487649e-11 + art_sys_42: -1.13782153e-15 + art_sys_43: -8.22879851e-18 + art_sys_44: -8.97044349e-20 + art_sys_45: -3.16025594e-18 + art_sys_46: -1.15527729e-13 art_sys_47: -2.51965635e-03 - art_sys_48: -7.43738255e-13 - art_sys_49: 1.23347564e-18 - art_sys_50: -5.54699364e-04 - art_sys_51: -1.92257723e-16 - art_sys_52: -1.62443880e-15 - art_sys_53: 1.43106041e-15 - art_sys_54: 1.36844509e-12 - art_sys_55: 2.03752690e-12 - art_sys_56: -2.20632739e-04 - art_sys_57: -5.97549143e-12 - art_sys_58: 6.63774211e-13 - art_sys_59: 5.65152524e-17 - art_sys_60: -6.08325401e-18 - art_sys_61: -4.71907521e-18 - art_sys_62: 8.24539286e-19 - art_sys_63: 2.20665572e-18 - art_sys_64: -8.15830800e-15 - art_sys_65: 5.81493104e-19 - art_sys_66: 3.10810715e-19 - art_sys_67: -1.34940953e-19 - art_sys_68: -2.57012891e-15 - art_sys_69: -4.20821606e-15 - art_sys_70: 2.81892642e-12 - art_sys_71: 6.80317987e-06 - art_sys_72: 5.47059195e-20 - art_sys_73: 2.72118552e-13 - art_sys_74: 1.36884135e-06 - art_sys_75: -3.28533263e-21 - art_sys_76: 2.56196810e-21 - art_sys_77: 1.38688248e-21 - art_sys_78: 3.72899018e-07 - art_sys_79: -2.76129272e-13 - art_sys_80: -1.14354631e-23 - art_sys_81: 1.17653801e-23 - art_sys_82: -2.36233686e-23 - art_sys_83: 1.68700548e-16 - art_sys_84: -6.25500202e-14 - art_sys_85: -9.41333115e-14 - art_sys_86: 1.51658211e-16 - art_sys_87: 2.12605691e-13 - art_sys_88: -3.67073367e-24 - art_sys_89: -9.63046832e-15 - art_sys_90: 2.57927537e-14 - art_sys_91: -3.49063540e-14 - art_sys_92: 3.86810678e-16 - art_sys_93: 3.15617992e-15 - art_sys_94: 1.58305413e-15 - art_sys_95: -1.13500419e-15 - art_sys_96: -1.90465976e-14 - art_sys_97: -2.71872493e-14 - art_sys_98: 9.41529581e-10 - art_sys_99: -5.86468636e-17 - art_sys_100: 6.39234260e-25 - art_sys_101: 5.54792905e-24 - art_sys_102: 1.44067222e-14 - art_sys_103: -2.91223604e-16 - art_sys_104: 1.54717223e-14 - art_sys_105: -6.82738319e-18 - art_sys_106: -1.41115117e-10 - art_sys_107: -2.69800453e-15 - art_sys_108: 4.14780106e-17 - art_sys_109: -3.90223506e-15 - art_sys_110: -3.99009343e-11 - art_sys_111: -3.14233082e-16 - art_sys_112: -4.46000074e-15 - art_sys_113: 5.99146112e-15 - art_sys_114: -1.30482830e-15 - art_sys_115: -5.17239359e-12 - art_sys_116: -1.61629836e-14 - art_sys_117: 2.78208617e-16 - art_sys_118: -1.78161685e-14 - art_sys_119: 2.25949590e-17 - art_sys_120: 8.48764642e-20 - art_sys_121: -5.52470130e-21 - art_sys_122: 3.02541803e-20 - art_sys_123: 7.39046916e-13 - art_sys_124: 1.09204662e-20 - art_sys_125: 1.73010838e-15 - art_sys_126: 1.50515839e-20 - art_sys_127: 1.20758132e-15 - art_sys_128: 1.39891617e-20 - art_sys_129: 1.65915305e-14 - art_sys_130: -1.30868656e-16 - art_sys_131: 2.58438321e-16 - art_sys_132: 7.37607524e-21 - art_sys_133: 1.84823483e-16 - art_sys_134: -6.60801568e-20 - art_sys_135: -1.50502854e-24 - art_sys_136: 3.71560216e-25 - art_sys_137: 2.54670101e-26 - art_sys_138: -1.92117998e-25 - art_sys_139: 4.02816033e-25 - art_sys_140: 4.02046423e-25 - art_sys_141: 1.31020744e-20 - art_sys_142: 4.98652769e-25 - art_sys_143: 7.78082623e-24 - art_sys_144: 4.01537325e-23 - art_sys_145: 1.86232445e-23 - art_sys_146: 3.63319280e-23 - art_sys_147: -1.63368232e-24 - art_sys_148: -1.50393392e-25 - art_sys_149: 8.85375703e-25 - art_sys_150: 6.78618987e-27 - art_sys_151: -8.09487665e-26 - art_sys_152: 5.52343231e-27 - art_sys_153: -5.88509622e-26 - art_sys_154: -1.13931251e-26 - art_sys_155: 2.10117691e-26 - art_sys_156: -1.83412448e-26 - art_sys_157: -6.56025529e-27 - art_sys_158: -2.55194117e-27 - art_sys_159: 6.16439560e-28 - art_sys_160: 1.16450803e-28 - art_sys_161: -1.13059699e-30 - art_sys_162: -4.89686408e-30 - art_sys_163: 2.04033294e-29 - art_sys_164: -1.23590822e-28 - art_sys_165: 1.08400531e-29 - art_sys_166: 1.54896582e-30 - art_sys_167: -2.39081372e-30 - art_sys_168: -5.86655562e-19 - art_sys_169: 5.72432586e-31 - art_sys_170: -1.16917373e-20 - art_sys_171: 7.29858107e-19 - art_sys_172: 3.49414672e-30 - art_sys_173: -9.82493261e-32 - art_sys_174: -6.24997554e-20 - art_sys_175: 0.0 - art_sys_176: -8.55061054e-22 - art_sys_177: 0.0 - art_sys_178: 1.00066375e-23 - art_sys_179: 2.20459510e-25 - art_sys_180: 5.07589927e-29 - art_sys_181: -3.37352792e-34 - art_sys_182: 0.0 - art_sys_183: 2.50607284e-33 - art_sys_184: 3.55342948e-33 - art_sys_185: 1.06899351e-35 + art_sys_48: 1.07239486e-11 + art_sys_49: 1.37578094e-15 + art_sys_50: 1.95444237e-16 + art_sys_51: 3.58279644e-16 + art_sys_52: 1.65652212e-16 + art_sys_53: -7.09919327e-17 + art_sys_54: -7.44633453e-17 + art_sys_55: 2.06927298e-13 + art_sys_56: 2.72479273e-15 + art_sys_57: -5.54699364e-04 + art_sys_58: -7.61710726e-18 + art_sys_59: 1.53641575e-18 + art_sys_60: 1.73290089e-11 + art_sys_61: -3.22094348e-13 + art_sys_62: 2.20632733e-04 + art_sys_63: -3.93467851e-16 + art_sys_64: 2.68802672e-11 + art_sys_65: 1.68499951e-19 + art_sys_66: 2.84699470e-20 + art_sys_67: -2.18004871e-13 + art_sys_68: 2.16809336e-15 + art_sys_69: -8.18656468e-16 + art_sys_70: 3.63285555e-14 + art_sys_71: 6.80317782e-06 + art_sys_72: -1.10605529e-13 + art_sys_73: 4.06335415e-17 + art_sys_74: -2.11265465e-17 + art_sys_75: -7.71235268e-18 + art_sys_76: -9.92382006e-18 + art_sys_77: 1.36883968e-06 + art_sys_78: -5.48963120e-16 + art_sys_79: 1.03543766e-18 + art_sys_80: -3.92483238e-20 + art_sys_81: 5.79934238e-19 + art_sys_82: 1.28633152e-19 + art_sys_83: 5.21224600e-17 + art_sys_84: -7.73651883e-20 + art_sys_85: 8.32733852e-20 + art_sys_86: -1.94757354e-16 + art_sys_87: -3.72899244e-07 + art_sys_88: 2.12685795e-17 + art_sys_89: -1.96176554e-19 + art_sys_90: 2.01768252e-13 + art_sys_91: -3.56082744e-17 + art_sys_92: 5.44617039e-13 + art_sys_93: -1.14666648e-13 + art_sys_94: -3.03406564e-14 + art_sys_95: 5.11109687e-16 + art_sys_96: -3.98974300e-18 + art_sys_97: 1.16785451e-13 + art_sys_98: -9.25193096e-15 + art_sys_99: -1.11415190e-13 + art_sys_100: -1.11237181e-16 + art_sys_101: -7.57976612e-17 + art_sys_102: -5.39107559e-16 + art_sys_103: -5.42511504e-17 + art_sys_104: -9.65076844e-14 + art_sys_105: 5.13695313e-16 + art_sys_106: -9.41557279e-10 + art_sys_107: 1.63403393e-17 + art_sys_108: -1.00910864e-18 + art_sys_109: -5.96146066e-18 + art_sys_110: 1.53212070e-14 + art_sys_111: 1.93560560e-14 + art_sys_112: 1.27125710e-15 + art_sys_113: -1.18635374e-19 + art_sys_114: -1.30936685e-14 + art_sys_115: 3.09828716e-16 + art_sys_116: 1.41103633e-10 + art_sys_117: -1.14676248e-14 + art_sys_118: -1.55089259e-15 + art_sys_119: 4.93279256e-15 + art_sys_120: 3.99206122e-11 + art_sys_121: 6.03529232e-16 + art_sys_122: -3.35516166e-15 + art_sys_123: 8.71098339e-15 + art_sys_124: -5.64339244e-16 + art_sys_125: 5.17370128e-12 + art_sys_126: 1.60185854e-15 + art_sys_127: 4.00679012e-15 + art_sys_128: 3.18056424e-15 + art_sys_129: 2.57762822e-15 + art_sys_130: 8.75268996e-15 + art_sys_131: -7.39479337e-13 + art_sys_132: -1.99064526e-15 + art_sys_133: 1.49880873e-14 + art_sys_134: 1.13107445e-17 + art_sys_135: 6.95841119e-16 + art_sys_136: 1.42151004e-15 + art_sys_137: -1.78260651e-18 + art_sys_138: 6.65601664e-16 + art_sys_139: 3.43093349e-16 + art_sys_140: 1.33534120e-15 + art_sys_141: 1.59223988e-14 + art_sys_142: -4.10837828e-16 + art_sys_143: 4.77891021e-19 + art_sys_144: 1.78106402e-20 + art_sys_145: -5.89712789e-18 + art_sys_146: -0.0 + art_sys_147: 5.02064656e-17 + art_sys_148: -2.17473878e-16 + art_sys_149: -2.17473878e-16 + art_sys_150: -1.11113090e-16 + art_sys_151: -1.11113090e-16 + art_sys_152: 3.13287344e-17 + art_sys_153: 1.46350793e-17 + art_sys_154: -3.47759836e-20 + art_sys_155: 6.61880518e-30 + art_sys_156: -3.13600361e-32 + art_sys_157: -1.37054341e-32 + art_sys_158: -0.0 + art_sys_159: 1.63012414e-17 + art_sys_160: -4.69182243e-18 + art_sys_161: -1.61288817e-17 + art_sys_162: -4.47903645e-19 + art_sys_163: -1.48431323e-16 + art_sys_164: -2.33513597e-17 + art_sys_165: 1.06598289e-19 + art_sys_166: 1.37553866e-25 + art_sys_167: 1.32561004e-25 + art_sys_168: -4.68808063e-26 + art_sys_169: 2.29891058e-27 + art_sys_170: -4.11230453e-27 + art_sys_171: 2.84029983e-27 + art_sys_172: 1.54829886e-27 + art_sys_173: -6.13740614e-28 + art_sys_174: -3.75146277e-28 + art_sys_175: 1.94151724e-30 + art_sys_176: -3.87529049e-32 + art_sys_177: 6.98663338e-29 + art_sys_178: -2.50749225e-29 + art_sys_179: 1.47686554e-29 + art_sys_180: -1.98152104e-29 + art_sys_181: -5.17448172e-32 + art_sys_182: 5.63964320e-30 + art_sys_183: 7.70603820e-32 + art_sys_184: -1.34553176e-33 + art_sys_185: -6.51530583e-34 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -58730,191 +58730,191 @@ bins: RelativeStatFSR-: -4.64199320e-02 luminosity_uncertainty: 4.02651600e-01 uncorrelated_uncertainty: 0.154866 -- art_sys_1: 1.04806261e-20 - art_sys_2: -6.93996490e-06 - art_sys_3: 2.52360827e-19 - art_sys_4: -8.35601753e-19 +- art_sys_1: -3.93429458e-21 + art_sys_2: -2.63955944e-19 + art_sys_3: -6.93996490e-06 + art_sys_4: -7.10679139e-19 art_sys_5: -2.18002536e-04 - art_sys_6: 5.41689086e-20 - art_sys_7: 5.51046676e-19 - art_sys_8: 4.61591702e-04 - art_sys_9: 1.84664825e-19 - art_sys_10: 6.95856298e-19 - art_sys_11: 2.70348230e-04 - art_sys_12: -3.06315697e-19 - art_sys_13: 9.39249426e-18 - art_sys_14: 8.58457500e-19 - art_sys_15: -1.33024039e-04 - art_sys_16: -3.65169587e-19 - art_sys_17: -3.12970294e-17 - art_sys_18: -4.75208849e-03 - art_sys_19: 1.98903805e-16 - art_sys_20: -5.74575901e-17 - art_sys_21: 1.08706313e-03 - art_sys_22: -4.52675709e-17 - art_sys_23: -1.83694785e-16 + art_sys_6: -3.94620475e-19 + art_sys_7: -6.19829076e-20 + art_sys_8: -4.61591702e-04 + art_sys_9: 3.42646583e-19 + art_sys_10: 7.07404598e-20 + art_sys_11: -2.70348230e-04 + art_sys_12: -1.13642296e-20 + art_sys_13: -9.29823957e-19 + art_sys_14: -2.39388167e-18 + art_sys_15: 1.33024039e-04 + art_sys_16: 7.95031433e-18 + art_sys_17: 1.29778551e-17 + art_sys_18: 4.75208849e-03 + art_sys_19: 2.29756272e-16 + art_sys_20: -5.67073704e-17 + art_sys_21: -1.08706313e-03 + art_sys_22: -4.70440890e-18 + art_sys_23: 1.60553740e-16 art_sys_24: -3.55705295e-03 - art_sys_25: -9.70785778e-14 - art_sys_26: -1.62381519e-14 - art_sys_27: -1.90894571e-14 - art_sys_28: -6.48649676e-16 - art_sys_29: 8.07374759e-16 - art_sys_30: 1.28162772e-16 - art_sys_31: 9.66790309e-17 - art_sys_32: -6.96679262e-16 - art_sys_33: -8.47365595e-16 - art_sys_34: 1.92454761e-02 - art_sys_35: 7.53564360e-13 - art_sys_36: -6.13630594e-02 - art_sys_37: -9.12333806e-13 - art_sys_38: 9.08483106e-17 - art_sys_39: 3.59089695e-12 - art_sys_40: 4.13385964e-02 - art_sys_41: -1.07643769e-12 - art_sys_42: -9.07321182e-16 - art_sys_43: 1.18273972e-18 - art_sys_44: -1.47927331e-17 - art_sys_45: -3.22242919e-18 - art_sys_46: 1.81879039e-13 + art_sys_25: 9.35781624e-14 + art_sys_26: -5.35597182e-15 + art_sys_27: -1.95774317e-14 + art_sys_28: -1.41910679e-16 + art_sys_29: -5.79732664e-14 + art_sys_30: 1.07433015e-14 + art_sys_31: -1.94232834e-15 + art_sys_32: 8.91034923e-16 + art_sys_33: -4.49809905e-16 + art_sys_34: -1.92454761e-02 + art_sys_35: 5.26825712e-13 + art_sys_36: 6.13630594e-02 + art_sys_37: 5.71163878e-12 + art_sys_38: 2.44977007e-16 + art_sys_39: 1.66999742e-10 + art_sys_40: -4.13385964e-02 + art_sys_41: 3.50966279e-11 + art_sys_42: 9.44451666e-16 + art_sys_43: 3.74693400e-18 + art_sys_44: -7.11569529e-18 + art_sys_45: -2.21216456e-19 + art_sys_46: 8.47081356e-14 art_sys_47: 1.66823806e-03 - art_sys_48: 1.27589360e-12 - art_sys_49: 8.28330463e-19 - art_sys_50: 1.24245651e-03 - art_sys_51: 5.29321946e-16 - art_sys_52: 2.99883569e-15 - art_sys_53: -2.67892525e-15 - art_sys_54: -2.61472049e-12 - art_sys_55: -1.34570010e-12 - art_sys_56: 4.12761311e-04 - art_sys_57: 1.11787057e-11 - art_sys_58: -1.48412233e-12 - art_sys_59: -1.25644269e-16 - art_sys_60: 1.27854391e-17 - art_sys_61: 1.09401664e-17 - art_sys_62: -1.98135610e-18 - art_sys_63: -5.06108978e-18 - art_sys_64: 2.14291313e-14 - art_sys_65: -1.30242831e-18 - art_sys_66: -7.09104631e-19 - art_sys_67: 3.10927921e-19 - art_sys_68: 6.29967736e-15 - art_sys_69: 1.03251882e-14 - art_sys_70: -6.34446823e-12 - art_sys_71: -1.54238620e-05 - art_sys_72: -1.70727425e-19 - art_sys_73: -6.11290299e-13 - art_sys_74: -3.57715567e-06 - art_sys_75: 8.35286556e-21 - art_sys_76: 2.41352087e-21 - art_sys_77: -7.54203846e-21 - art_sys_78: -9.15367882e-07 - art_sys_79: 7.11910557e-13 - art_sys_80: -1.14436414e-23 - art_sys_81: -4.11718212e-23 - art_sys_82: 7.97146834e-23 - art_sys_83: -5.69456610e-16 - art_sys_84: 1.53609040e-13 - art_sys_85: 1.72717427e-13 - art_sys_86: -5.11782855e-16 - art_sys_87: -5.22105468e-13 - art_sys_88: 7.62951653e-25 - art_sys_89: 3.25106304e-14 - art_sys_90: -6.33325619e-14 - art_sys_91: 7.24888307e-14 - art_sys_92: -1.22896489e-15 - art_sys_93: -1.17957656e-14 - art_sys_94: -6.01840471e-15 - art_sys_95: 3.42009387e-15 - art_sys_96: 3.70357541e-14 - art_sys_97: 9.19291852e-14 - art_sys_98: -3.17931238e-09 - art_sys_99: 2.08223130e-16 - art_sys_100: 1.20334676e-24 - art_sys_101: 2.46801870e-25 - art_sys_102: -4.86717854e-14 - art_sys_103: 7.32504981e-16 - art_sys_104: -5.27376312e-14 - art_sys_105: 2.58990171e-17 - art_sys_106: 5.36010786e-10 - art_sys_107: 9.76951015e-15 - art_sys_108: -1.46684314e-16 - art_sys_109: 1.42973771e-14 - art_sys_110: 1.20308480e-10 - art_sys_111: 1.11240110e-15 - art_sys_112: 1.41920566e-14 - art_sys_113: -1.78332534e-14 - art_sys_114: 3.81913598e-15 - art_sys_115: 1.91647438e-11 - art_sys_116: 4.86934769e-14 - art_sys_117: -6.28272675e-16 - art_sys_118: 5.36754022e-14 - art_sys_119: -8.01195081e-17 - art_sys_120: -3.04587429e-19 - art_sys_121: 2.14465695e-20 - art_sys_122: -8.55677217e-20 - art_sys_123: -2.61691207e-12 - art_sys_124: -3.07851694e-20 - art_sys_125: -5.19471729e-15 - art_sys_126: -4.76827103e-20 - art_sys_127: -3.70570658e-15 - art_sys_128: -4.38818532e-20 - art_sys_129: -4.80393842e-14 - art_sys_130: 3.43863563e-16 - art_sys_131: -8.45820129e-16 - art_sys_132: -2.52961123e-20 - art_sys_133: -6.15084055e-16 - art_sys_134: 2.21964770e-19 - art_sys_135: 2.88987173e-25 - art_sys_136: 8.67317251e-26 - art_sys_137: 1.07622066e-24 - art_sys_138: -1.65365487e-24 - art_sys_139: 1.59407601e-24 - art_sys_140: -3.55429113e-25 - art_sys_141: -4.34018427e-20 - art_sys_142: -2.47027411e-25 - art_sys_143: -2.58418664e-23 - art_sys_144: -1.18363341e-22 - art_sys_145: -6.26509658e-23 - art_sys_146: -1.08135756e-22 - art_sys_147: -1.32942585e-24 - art_sys_148: 2.63069108e-24 - art_sys_149: -3.13562170e-24 - art_sys_150: 3.09926225e-25 - art_sys_151: 2.54924537e-25 - art_sys_152: -8.74937959e-27 - art_sys_153: 1.76833989e-25 - art_sys_154: 3.77574982e-26 - art_sys_155: -6.09729811e-26 - art_sys_156: 5.07406274e-26 - art_sys_157: 1.97490113e-26 - art_sys_158: 7.58649776e-27 - art_sys_159: -1.83442251e-27 - art_sys_160: -3.13254188e-28 - art_sys_161: 6.98927449e-30 - art_sys_162: 1.48412604e-29 - art_sys_163: -5.68183064e-29 - art_sys_164: 3.55089956e-28 - art_sys_165: -3.29511533e-29 - art_sys_166: -5.08132211e-30 - art_sys_167: 2.96886687e-30 - art_sys_168: 1.95032228e-18 - art_sys_169: -1.76805170e-30 - art_sys_170: 3.69875939e-20 - art_sys_171: -2.47469714e-18 - art_sys_172: -1.04428841e-29 - art_sys_173: 3.17340177e-31 - art_sys_174: 2.11829611e-19 - art_sys_175: 0.0 - art_sys_176: 2.89783249e-21 - art_sys_177: 0.0 - art_sys_178: -3.39033361e-23 - art_sys_179: -7.33745289e-25 - art_sys_180: -1.74194902e-28 - art_sys_181: 1.15207230e-33 - art_sys_182: 0.0 - art_sys_183: -8.46762228e-33 - art_sys_184: -1.06500239e-32 - art_sys_185: -3.54762835e-35 + art_sys_48: -2.34923537e-11 + art_sys_49: -4.03700273e-15 + art_sys_50: -3.21497570e-16 + art_sys_51: -7.33345671e-16 + art_sys_52: -3.04111685e-16 + art_sys_53: 1.49166075e-16 + art_sys_54: 1.46362841e-16 + art_sys_55: -4.63487292e-13 + art_sys_56: -5.09559263e-15 + art_sys_57: 1.24245651e-03 + art_sys_58: 1.34861103e-17 + art_sys_59: -3.14600987e-18 + art_sys_60: -3.24184168e-11 + art_sys_61: 2.47357795e-13 + art_sys_62: -4.12761300e-04 + art_sys_63: 8.92028689e-16 + art_sys_64: -5.02880152e-11 + art_sys_65: -3.77753038e-19 + art_sys_66: -7.77218284e-20 + art_sys_67: 4.05837487e-13 + art_sys_68: -5.38171380e-15 + art_sys_69: 2.03552082e-15 + art_sys_70: -7.62064902e-14 + art_sys_71: -1.54238563e-05 + art_sys_72: 1.67049811e-13 + art_sys_73: -1.12119262e-16 + art_sys_74: 5.44382780e-17 + art_sys_75: 1.98419022e-17 + art_sys_76: 2.59315518e-17 + art_sys_77: -3.57715190e-06 + art_sys_78: 1.43457904e-15 + art_sys_79: -2.49775236e-18 + art_sys_80: 9.15920138e-20 + art_sys_81: -1.42660212e-18 + art_sys_82: -3.17118437e-19 + art_sys_83: -1.73666937e-16 + art_sys_84: 1.91658699e-19 + art_sys_85: -2.03288400e-19 + art_sys_86: 7.41802225e-16 + art_sys_87: 9.15368432e-07 + art_sys_88: -7.09036146e-17 + art_sys_89: 6.73247287e-19 + art_sys_90: -4.94022485e-13 + art_sys_91: 1.20647488e-16 + art_sys_92: -1.33699077e-12 + art_sys_93: 2.27537087e-13 + art_sys_94: 7.44958920e-14 + art_sys_95: -1.72612401e-15 + art_sys_96: 1.47579934e-17 + art_sys_97: -3.94350480e-13 + art_sys_98: 2.27117723e-14 + art_sys_99: 2.07773209e-13 + art_sys_100: 3.73051234e-16 + art_sys_101: 2.04159486e-16 + art_sys_102: 1.34264782e-15 + art_sys_103: 1.88484506e-16 + art_sys_104: 1.80685558e-13 + art_sys_105: -1.83533701e-15 + art_sys_106: 3.17940593e-09 + art_sys_107: -5.78539259e-17 + art_sys_108: 3.56262604e-18 + art_sys_109: 2.00789552e-17 + art_sys_110: -5.90300066e-14 + art_sys_111: -6.53588012e-14 + art_sys_112: -3.53203142e-15 + art_sys_113: 3.21497139e-19 + art_sys_114: 4.42174792e-14 + art_sys_115: -1.14768108e-15 + art_sys_116: -5.35966093e-10 + art_sys_117: 3.85507847e-14 + art_sys_118: 5.74848715e-15 + art_sys_119: -1.70733170e-14 + art_sys_120: -1.20367899e-10 + art_sys_121: -2.18144277e-15 + art_sys_122: 1.41504844e-14 + art_sys_123: -2.71227798e-14 + art_sys_124: 2.00586277e-15 + art_sys_125: -1.91694678e-11 + art_sys_126: -5.67399665e-15 + art_sys_127: -1.43134315e-14 + art_sys_128: -1.12183907e-14 + art_sys_129: -6.99502187e-15 + art_sys_130: -3.09005181e-14 + art_sys_131: 2.61836226e-12 + art_sys_132: 6.65313292e-15 + art_sys_133: -5.29522069e-14 + art_sys_134: -3.89356288e-17 + art_sys_135: -2.23766116e-15 + art_sys_136: -4.90345589e-15 + art_sys_137: 6.05527388e-18 + art_sys_138: -1.22477588e-15 + art_sys_139: -1.17911037e-15 + art_sys_140: -4.57335906e-15 + art_sys_141: -4.54451009e-14 + art_sys_142: 1.30572872e-15 + art_sys_143: -1.65157011e-18 + art_sys_144: 1.06995739e-19 + art_sys_145: 1.82371014e-17 + art_sys_146: 0.0 + art_sys_147: -1.62443127e-16 + art_sys_148: 8.08600118e-16 + art_sys_149: 8.08600118e-16 + art_sys_150: 2.90469015e-16 + art_sys_151: 2.90469015e-16 + art_sys_152: -8.98444729e-17 + art_sys_153: -3.44593786e-17 + art_sys_154: 1.08959060e-19 + art_sys_155: -8.05524584e-30 + art_sys_156: 1.14876291e-31 + art_sys_157: 4.83816912e-32 + art_sys_158: 0.0 + art_sys_159: -4.67301746e-17 + art_sys_160: 1.34980095e-17 + art_sys_161: 4.65416754e-17 + art_sys_162: 1.29201627e-18 + art_sys_163: 4.34255244e-16 + art_sys_164: 6.86095156e-17 + art_sys_165: -5.12278492e-19 + art_sys_166: -3.98617888e-25 + art_sys_167: -3.80258505e-25 + art_sys_168: 1.34873521e-25 + art_sys_169: -5.51201938e-27 + art_sys_170: 1.28242441e-26 + art_sys_171: -9.44288508e-27 + art_sys_172: -4.44234179e-27 + art_sys_173: 1.37553750e-27 + art_sys_174: 1.18263263e-27 + art_sys_175: -5.99768735e-30 + art_sys_176: -1.94946578e-29 + art_sys_177: -2.24760276e-28 + art_sys_178: 8.33294430e-29 + art_sys_179: -4.89061637e-29 + art_sys_180: 6.57162828e-29 + art_sys_181: 1.67050610e-31 + art_sys_182: -1.61186490e-29 + art_sys_183: -2.27778576e-31 + art_sys_184: 4.30089691e-33 + art_sys_185: 2.20227955e-33 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -59021,191 +59021,191 @@ bins: RelativeStatFSR-: -2.37540217e-02 luminosity_uncertainty: 1.93150100e-01 uncorrelated_uncertainty: 7.42885000e-02 -- art_sys_1: -5.16230465e-21 - art_sys_2: -3.50750636e-06 - art_sys_3: 2.72645316e-20 - art_sys_4: -8.61142698e-20 +- art_sys_1: 1.53733273e-21 + art_sys_2: -2.75232925e-20 + art_sys_3: -3.50750636e-06 + art_sys_4: -8.75756848e-20 art_sys_5: -2.23938153e-05 - art_sys_6: 3.04354715e-21 - art_sys_7: 8.12676141e-20 - art_sys_8: 5.33662002e-05 - art_sys_9: -4.32004899e-20 - art_sys_10: 4.85491812e-20 - art_sys_11: 3.06981755e-05 - art_sys_12: 1.14258433e-18 - art_sys_13: -1.97322982e-17 - art_sys_14: -1.30657492e-18 - art_sys_15: -4.80277987e-04 - art_sys_16: 2.32105522e-18 - art_sys_17: 7.29954040e-18 - art_sys_18: -7.01432405e-04 - art_sys_19: 1.67984311e-17 - art_sys_20: 3.59606463e-17 - art_sys_21: 2.51157723e-03 - art_sys_22: 3.76994334e-17 - art_sys_23: 1.38096032e-17 + art_sys_6: -5.05052002e-20 + art_sys_7: -3.49175559e-20 + art_sys_8: -5.33662002e-05 + art_sys_9: 2.13326968e-20 + art_sys_10: -9.71883595e-21 + art_sys_11: -3.06981755e-05 + art_sys_12: -5.26817464e-19 + art_sys_13: 1.47187759e-17 + art_sys_14: -5.88188214e-19 + art_sys_15: 4.80277987e-04 + art_sys_16: 3.88668610e-18 + art_sys_17: 7.75051454e-18 + art_sys_18: 7.01432405e-04 + art_sys_19: 2.22426031e-17 + art_sys_20: 3.09669692e-17 + art_sys_21: -2.51157723e-03 + art_sys_22: 7.36182129e-18 + art_sys_23: 9.21967422e-19 art_sys_24: 1.57892712e-03 - art_sys_25: 7.77008069e-14 - art_sys_26: -6.57660941e-15 - art_sys_27: -6.38227206e-15 - art_sys_28: 2.73843902e-15 - art_sys_29: -1.90960934e-15 - art_sys_30: -1.86053399e-17 - art_sys_31: 3.05943680e-18 - art_sys_32: -2.27706906e-16 - art_sys_33: 1.34602445e-15 - art_sys_34: 4.07492170e-03 - art_sys_35: -1.99591165e-14 - art_sys_36: 2.82350558e-03 - art_sys_37: 4.23394101e-14 - art_sys_38: 3.03057962e-16 - art_sys_39: 8.40717288e-13 - art_sys_40: 9.14951823e-03 - art_sys_41: -2.37871085e-13 - art_sys_42: -8.21655252e-16 - art_sys_43: -2.56318618e-17 - art_sys_44: 8.91893539e-17 - art_sys_45: 1.67868603e-17 - art_sys_46: -1.24182673e-12 + art_sys_25: -2.52984043e-14 + art_sys_26: 8.07498902e-15 + art_sys_27: 1.73672919e-14 + art_sys_28: -6.35004484e-18 + art_sys_29: -1.22552044e-14 + art_sys_30: 5.90743791e-15 + art_sys_31: -4.24510785e-16 + art_sys_32: 1.22984772e-15 + art_sys_33: 2.53420659e-16 + art_sys_34: -4.07492170e-03 + art_sys_35: -2.94244491e-14 + art_sys_36: -2.82350558e-03 + art_sys_37: -2.63460287e-13 + art_sys_38: -4.53778301e-16 + art_sys_39: 3.69896354e-11 + art_sys_40: -9.14951822e-03 + art_sys_41: 7.76801309e-12 + art_sys_42: 7.20599613e-16 + art_sys_43: -5.51307760e-17 + art_sys_44: 2.80489415e-17 + art_sys_45: 8.16283017e-18 + art_sys_46: -4.10771096e-13 art_sys_47: -1.98632301e-02 - art_sys_48: -4.88009891e-12 - art_sys_49: -1.79878490e-18 - art_sys_50: -3.27323416e-03 - art_sys_51: -1.98342956e-15 - art_sys_52: -1.48444518e-14 - art_sys_53: 1.31030020e-14 - art_sys_54: 1.20416857e-11 - art_sys_55: 1.61162467e-11 - art_sys_56: -2.01917382e-03 - art_sys_57: -5.46929102e-11 - art_sys_58: 3.91043950e-12 - art_sys_59: 4.69712287e-16 - art_sys_60: -4.92131443e-17 - art_sys_61: -4.24017600e-17 - art_sys_62: 8.41431121e-18 - art_sys_63: 1.96699289e-17 - art_sys_64: -8.82295215e-14 - art_sys_65: 5.13155529e-18 - art_sys_66: 2.72176642e-18 - art_sys_67: -1.26350008e-18 - art_sys_68: -2.76597041e-14 - art_sys_69: -4.52818997e-14 - art_sys_70: 2.41916974e-11 - art_sys_71: 5.89134480e-05 - art_sys_72: 4.85966960e-19 - art_sys_73: 1.88715066e-12 - art_sys_74: 1.46954078e-05 - art_sys_75: -4.99412645e-20 - art_sys_76: 1.31555158e-20 - art_sys_77: 7.10437498e-21 - art_sys_78: 4.01238127e-06 - art_sys_79: -3.52804162e-12 - art_sys_80: -2.64696171e-22 - art_sys_81: 8.77833626e-23 - art_sys_82: -2.58622737e-22 - art_sys_83: 1.50996370e-15 - art_sys_84: -6.73286830e-13 - art_sys_85: -8.56747942e-13 - art_sys_86: 1.35537479e-15 - art_sys_87: 2.28791553e-12 - art_sys_88: -4.20934428e-24 - art_sys_89: -8.62418280e-14 - art_sys_90: 2.77585015e-13 - art_sys_91: -3.39480019e-13 - art_sys_92: 3.89416736e-15 - art_sys_93: 4.38100044e-14 - art_sys_94: 2.34715235e-14 - art_sys_95: -1.10516910e-14 - art_sys_96: -1.73362859e-13 - art_sys_97: -2.44668374e-13 - art_sys_98: 8.44393626e-09 - art_sys_99: -8.10652362e-16 - art_sys_100: -2.07162544e-24 - art_sys_101: -8.59495463e-24 - art_sys_102: 1.29556043e-13 - art_sys_103: -3.05232290e-15 - art_sys_104: 1.45606323e-13 - art_sys_105: -9.13793410e-17 - art_sys_106: -2.09070070e-09 - art_sys_107: -3.35615067e-14 - art_sys_108: 5.43640574e-16 - art_sys_109: -5.58776721e-14 - art_sys_110: -4.64674904e-10 - art_sys_111: -4.12084814e-15 - art_sys_112: -5.48960448e-14 - art_sys_113: 6.88580850e-14 - art_sys_114: -1.47815114e-14 - art_sys_115: -6.85641918e-11 - art_sys_116: -1.88122077e-13 - art_sys_117: 2.45182045e-15 - art_sys_118: -2.07382520e-13 - art_sys_119: 2.96380754e-16 - art_sys_120: 1.11392125e-18 - art_sys_121: -1.08247146e-19 - art_sys_122: 3.57362258e-19 - art_sys_123: 9.69225737e-12 - art_sys_124: 1.06058989e-19 - art_sys_125: 2.00742892e-14 - art_sys_126: 1.70145040e-19 - art_sys_127: 1.42410510e-14 - art_sys_128: 1.63136091e-19 - art_sys_129: 2.19945338e-13 - art_sys_130: -1.37221931e-15 - art_sys_131: 3.22927630e-15 - art_sys_132: 9.88284088e-20 - art_sys_133: 2.38809392e-15 - art_sys_134: -8.56052322e-19 - art_sys_135: 3.01520304e-25 - art_sys_136: 9.10308200e-25 - art_sys_137: -6.30115739e-25 - art_sys_138: 2.42787243e-24 - art_sys_139: -1.18325709e-24 - art_sys_140: 3.37659405e-25 - art_sys_141: 1.69187458e-19 - art_sys_142: 4.74004834e-25 - art_sys_143: 1.00905991e-22 - art_sys_144: 5.27679484e-22 - art_sys_145: 2.52163557e-22 - art_sys_146: 5.06440391e-22 - art_sys_147: -4.76969860e-23 - art_sys_148: 2.56372445e-25 - art_sys_149: 1.15924696e-23 - art_sys_150: -5.69262013e-25 - art_sys_151: -8.30896383e-25 - art_sys_152: 7.77270263e-26 - art_sys_153: -7.75598022e-25 - art_sys_154: -1.49211627e-25 - art_sys_155: 2.78652494e-25 - art_sys_156: -2.44863022e-25 - art_sys_157: -8.64631073e-26 - art_sys_158: -3.36944900e-26 - art_sys_159: 8.14980048e-27 - art_sys_160: 1.55126488e-27 - art_sys_161: -2.48049712e-29 - art_sys_162: -6.24690617e-29 - art_sys_163: 2.70613732e-28 - art_sys_164: -1.63873659e-27 - art_sys_165: 1.43258293e-28 - art_sys_166: 2.03955037e-29 - art_sys_167: -3.23258227e-29 - art_sys_168: -7.56916179e-18 - art_sys_169: 7.46916101e-30 - art_sys_170: -1.41673552e-19 - art_sys_171: 9.65075134e-18 - art_sys_172: 4.61289066e-29 - art_sys_173: -1.30267339e-30 - art_sys_174: -8.25994394e-19 - art_sys_175: 0.0 - art_sys_176: -1.12993880e-20 - art_sys_177: 0.0 - art_sys_178: 1.32177597e-22 - art_sys_179: 2.84904932e-24 - art_sys_180: 6.81601027e-28 - art_sys_181: -4.50634009e-33 - art_sys_182: 0.0 - art_sys_183: 3.31192955e-32 - art_sys_184: 4.11280712e-32 - art_sys_185: 1.39391024e-34 + art_sys_48: 6.39441232e-11 + art_sys_49: 1.10258909e-14 + art_sys_50: 2.67457691e-15 + art_sys_51: 2.76961510e-15 + art_sys_52: 1.31974834e-15 + art_sys_53: -3.49776099e-16 + art_sys_54: -5.97773286e-16 + art_sys_55: 1.22105059e-12 + art_sys_56: 2.49277517e-14 + art_sys_57: -3.27323416e-03 + art_sys_58: -6.84508981e-17 + art_sys_59: 1.39655491e-17 + art_sys_60: 1.58588836e-10 + art_sys_61: -2.54219220e-12 + art_sys_62: 2.01917377e-03 + art_sys_63: -3.40706699e-15 + art_sys_64: 2.46000579e-10 + art_sys_65: 1.41435109e-18 + art_sys_66: 3.47438648e-19 + art_sys_67: -1.39579801e-12 + art_sys_68: 2.33222083e-14 + art_sys_69: -8.80913877e-15 + art_sys_70: 2.32871027e-13 + art_sys_71: 5.89134245e-05 + art_sys_72: -9.46804259e-13 + art_sys_73: 4.64975830e-16 + art_sys_74: -2.27293541e-16 + art_sys_75: -8.27757388e-17 + art_sys_76: -1.06537810e-16 + art_sys_77: 1.46953936e-05 + art_sys_78: -5.89349649e-15 + art_sys_79: 1.12286290e-17 + art_sys_80: -3.93384437e-19 + art_sys_81: 6.23174132e-18 + art_sys_82: 1.38840672e-18 + art_sys_83: 4.71992372e-16 + art_sys_84: -8.22252097e-19 + art_sys_85: 8.98901371e-19 + art_sys_86: -2.89386516e-15 + art_sys_87: -4.01238362e-06 + art_sys_88: 2.74957292e-16 + art_sys_89: -2.47990289e-18 + art_sys_90: 2.13531570e-12 + art_sys_91: -3.19699512e-16 + art_sys_92: 5.85919916e-12 + art_sys_93: -1.08523991e-12 + art_sys_94: -3.26493294e-13 + art_sys_95: 4.58597372e-15 + art_sys_96: -5.28651488e-17 + art_sys_97: 1.04733774e-12 + art_sys_98: -9.95688671e-14 + art_sys_99: -1.01781525e-12 + art_sys_100: -9.67369616e-16 + art_sys_101: -7.65194431e-16 + art_sys_102: -5.79290628e-15 + art_sys_103: -5.94504570e-16 + art_sys_104: -8.83065124e-13 + art_sys_105: 4.42059890e-15 + art_sys_106: -8.44418489e-09 + art_sys_107: 2.14287958e-16 + art_sys_108: -1.32349348e-17 + art_sys_109: -7.84354030e-17 + art_sys_110: 2.30373448e-13 + art_sys_111: 1.73596181e-13 + art_sys_112: 1.40784093e-14 + art_sys_113: -1.57818807e-18 + art_sys_114: -1.17483009e-13 + art_sys_115: 4.10642847e-15 + art_sys_116: 2.09052671e-09 + art_sys_117: -1.00130134e-13 + art_sys_118: -2.05596816e-14 + art_sys_119: 5.07484609e-14 + art_sys_120: 4.64904362e-10 + art_sys_121: 7.90159623e-15 + art_sys_122: -5.63150237e-14 + art_sys_123: 1.04760122e-13 + art_sys_124: -7.39836566e-15 + art_sys_125: 6.85811951e-11 + art_sys_126: 2.10062303e-14 + art_sys_127: 5.16497385e-14 + art_sys_128: 4.17235142e-14 + art_sys_129: 2.78813971e-14 + art_sys_130: 1.14808961e-13 + art_sys_131: -9.69781426e-12 + art_sys_132: -2.45752521e-14 + art_sys_133: 1.96588340e-13 + art_sys_134: 1.47508791e-16 + art_sys_135: 8.46417762e-15 + art_sys_136: 1.86691830e-14 + art_sys_137: -2.30226438e-17 + art_sys_138: 6.11331535e-15 + art_sys_139: 4.66501788e-15 + art_sys_140: 1.75858018e-14 + art_sys_141: 2.11245459e-13 + art_sys_142: -5.44395694e-15 + art_sys_143: 6.14632675e-18 + art_sys_144: 3.40810588e-19 + art_sys_145: -7.72482364e-17 + art_sys_146: -0.0 + art_sys_147: 6.55186493e-16 + art_sys_148: -2.81336119e-15 + art_sys_149: -2.81336119e-15 + art_sys_150: -1.46541276e-15 + art_sys_151: -1.46541276e-15 + art_sys_152: 3.62052815e-16 + art_sys_153: 1.96838847e-16 + art_sys_154: -4.53747933e-19 + art_sys_155: 1.02092534e-28 + art_sys_156: -4.07856371e-31 + art_sys_157: -1.78012801e-31 + art_sys_158: -0.0 + art_sys_159: 2.16316971e-16 + art_sys_160: -6.22506727e-17 + art_sys_161: -2.13912057e-16 + art_sys_162: -5.93900902e-18 + art_sys_163: -1.96513441e-15 + art_sys_164: -3.09370372e-16 + art_sys_165: 1.37109238e-18 + art_sys_166: 1.82223780e-24 + art_sys_167: 1.75280807e-24 + art_sys_168: -6.21897845e-25 + art_sys_169: 3.14621113e-26 + art_sys_170: -5.42720042e-26 + art_sys_171: 3.76939946e-26 + art_sys_172: 1.94558390e-26 + art_sys_173: -5.88304177e-27 + art_sys_174: -4.52514369e-27 + art_sys_175: 2.54135734e-29 + art_sys_176: 2.74961680e-29 + art_sys_177: 9.24179090e-28 + art_sys_178: -3.24318043e-28 + art_sys_179: 1.91074998e-28 + art_sys_180: -2.55625632e-28 + art_sys_181: -7.23356145e-31 + art_sys_182: 7.48946398e-29 + art_sys_183: 1.01759435e-30 + art_sys_184: -1.74560929e-32 + art_sys_185: -8.41802558e-33 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -59312,191 +59312,191 @@ bins: RelativeStatFSR-: -1.18121632e-02 luminosity_uncertainty: 9.01469400e-02 uncorrelated_uncertainty: 3.46719000e-02 -- art_sys_1: -5.06334871e-22 - art_sys_2: -3.25962952e-07 - art_sys_3: 1.97651217e-21 - art_sys_4: 5.65148354e-21 +- art_sys_1: 1.62279504e-22 + art_sys_2: -2.07176577e-21 + art_sys_3: -3.25962952e-07 + art_sys_4: -5.03687286e-21 art_sys_5: -1.68210303e-06 - art_sys_6: 5.85761199e-22 - art_sys_7: -3.63748355e-21 - art_sys_8: 3.57245924e-06 - art_sys_9: -6.43510154e-21 - art_sys_10: -6.02964965e-21 - art_sys_11: -4.87461190e-07 - art_sys_12: 1.11645726e-19 - art_sys_13: -2.20341242e-18 - art_sys_14: -1.71234701e-19 - art_sys_15: -4.61273005e-05 - art_sys_16: 2.55213217e-19 - art_sys_17: 1.36484898e-18 - art_sys_18: 5.45545230e-05 - art_sys_19: -3.42424197e-18 - art_sys_20: 4.55479424e-18 - art_sys_21: 1.88384316e-04 - art_sys_22: 4.33025778e-18 - art_sys_23: 7.44866882e-18 + art_sys_6: -3.09458607e-21 + art_sys_7: -5.76031186e-22 + art_sys_8: -3.57245924e-06 + art_sys_9: -7.16225684e-22 + art_sys_10: -2.09910267e-21 + art_sys_11: 4.87461190e-07 + art_sys_12: -2.16967920e-20 + art_sys_13: 1.52692877e-18 + art_sys_14: -3.88367629e-20 + art_sys_15: 4.61273005e-05 + art_sys_16: 2.01954379e-19 + art_sys_17: 3.68780111e-19 + art_sys_18: -5.45545230e-05 + art_sys_19: -3.75815152e-18 + art_sys_20: 4.06884102e-18 + art_sys_21: -1.88384316e-04 + art_sys_22: 8.25344703e-19 + art_sys_23: -5.27375826e-18 art_sys_24: 2.32715617e-04 - art_sys_25: -1.16901259e-14 - art_sys_26: 2.07119377e-14 - art_sys_27: 1.99167554e-14 - art_sys_28: -1.54998609e-15 - art_sys_29: -6.49831277e-16 - art_sys_30: -6.63266159e-18 - art_sys_31: -4.07134627e-18 - art_sys_32: 1.82423989e-17 - art_sys_33: 3.06990970e-16 - art_sys_34: -1.09299439e-03 - art_sys_35: -4.71319956e-14 - art_sys_36: 3.79353656e-03 - art_sys_37: 5.63909327e-14 - art_sys_38: -3.57742886e-16 - art_sys_39: -2.82556807e-13 - art_sys_40: -3.22960200e-03 - art_sys_41: 8.40796004e-14 - art_sys_42: 5.66011467e-17 - art_sys_43: -5.56292900e-17 - art_sys_44: -3.49569837e-17 - art_sys_45: -1.05283492e-17 - art_sys_46: -5.38033123e-13 - art_sys_47: -7.00611503e-03 - art_sys_48: 1.00071597e-11 - art_sys_49: 6.60220216e-18 - art_sys_50: 1.19462642e-02 - art_sys_51: 4.56173575e-15 - art_sys_52: 2.31768867e-14 - art_sys_53: -2.17519473e-14 - art_sys_54: -2.17287755e-11 - art_sys_55: 5.71695343e-12 - art_sys_56: 3.35190989e-03 - art_sys_57: 9.07984176e-11 - art_sys_58: -1.42547802e-11 - art_sys_59: -2.23257210e-15 - art_sys_60: 2.27616218e-16 - art_sys_61: 1.85135265e-16 - art_sys_62: -3.16136812e-17 - art_sys_63: -8.71533352e-17 - art_sys_64: 2.84612801e-13 - art_sys_65: -2.35498497e-17 - art_sys_66: -1.23016111e-17 - art_sys_67: 5.38296325e-18 - art_sys_68: 1.03188109e-13 - art_sys_69: 1.68598920e-13 - art_sys_70: -1.11387980e-10 - art_sys_71: -2.68786822e-04 - art_sys_72: -2.06219142e-18 - art_sys_73: -7.65237866e-12 - art_sys_74: -4.80108377e-05 - art_sys_75: 1.99015806e-19 - art_sys_76: -9.45441486e-20 - art_sys_77: -3.74149873e-20 - art_sys_78: -1.49259579e-05 - art_sys_79: 1.16714088e-11 - art_sys_80: 1.66959299e-21 - art_sys_81: -4.93145747e-22 - art_sys_82: 1.45363936e-21 - art_sys_83: -1.13245465e-14 - art_sys_84: 2.50240175e-12 - art_sys_85: 1.29929477e-12 - art_sys_86: -1.01820101e-14 - art_sys_87: -8.50436959e-12 - art_sys_88: -6.20785931e-23 - art_sys_89: 6.46367248e-13 - art_sys_90: -1.03139720e-12 - art_sys_91: 8.37813487e-13 - art_sys_92: -2.30035319e-14 - art_sys_93: -1.91682061e-13 - art_sys_94: -9.41628846e-14 - art_sys_95: 6.38270432e-14 - art_sys_96: 3.70919351e-13 - art_sys_97: 1.82492892e-12 - art_sys_98: -6.31761155e-08 - art_sys_99: 3.51638639e-15 - art_sys_100: 1.33924351e-23 - art_sys_101: 1.53304039e-24 - art_sys_102: -9.66153153e-13 - art_sys_103: 1.67132720e-14 - art_sys_104: -1.02929654e-12 - art_sys_105: 4.54922451e-16 - art_sys_106: 8.39443519e-09 - art_sys_107: 1.68765870e-13 - art_sys_108: -2.70066329e-15 - art_sys_109: 2.32875060e-13 - art_sys_110: 2.43597624e-09 - art_sys_111: 2.04620193e-14 - art_sys_112: 2.70884057e-13 - art_sys_113: -3.66006381e-13 - art_sys_114: 7.95497906e-14 - art_sys_115: 3.41971835e-10 - art_sys_116: 9.86566131e-13 - art_sys_117: -1.04119076e-14 - art_sys_118: 1.08731065e-12 - art_sys_119: -1.47276482e-15 - art_sys_120: -5.67005432e-18 - art_sys_121: 2.99037011e-19 - art_sys_122: -1.81576994e-18 - art_sys_123: -4.81309824e-11 - art_sys_124: -6.84913122e-19 - art_sys_125: -1.05443700e-13 - art_sys_126: -9.35603953e-19 - art_sys_127: -7.42126282e-14 - art_sys_128: -8.66343382e-19 - art_sys_129: -9.54113596e-13 - art_sys_130: 7.53910272e-15 - art_sys_131: -1.63694852e-14 - art_sys_132: -4.69549840e-19 - art_sys_133: -1.17993156e-14 - art_sys_134: 4.24983692e-18 - art_sys_135: -1.90182689e-24 - art_sys_136: -2.33393299e-24 - art_sys_137: 4.65401013e-24 - art_sys_138: -7.34185338e-25 - art_sys_139: 9.49182294e-25 - art_sys_140: 8.48570337e-25 - art_sys_141: -8.34293545e-19 - art_sys_142: -7.21101788e-26 - art_sys_143: -4.97571233e-22 - art_sys_144: -2.35048250e-21 - art_sys_145: -1.13170435e-21 - art_sys_146: -2.12783201e-21 - art_sys_147: 3.96709324e-24 - art_sys_148: 3.25754967e-23 - art_sys_149: -5.69819033e-23 - art_sys_150: 2.45329875e-24 - art_sys_151: 4.89651772e-24 - art_sys_152: -2.13645412e-25 - art_sys_153: 3.47678258e-24 - art_sys_154: 7.24420012e-25 - art_sys_155: -1.20967463e-24 - art_sys_156: 1.02042424e-24 - art_sys_157: 3.88056839e-25 - art_sys_158: 1.49595312e-25 - art_sys_159: -3.61080700e-26 - art_sys_160: -6.40987916e-27 - art_sys_161: 7.73129703e-29 - art_sys_162: 2.86721008e-28 - art_sys_163: -1.14755584e-27 - art_sys_164: 7.07771191e-27 - art_sys_165: -6.40444506e-28 - art_sys_166: -9.59351541e-29 - art_sys_167: 9.31209548e-29 - art_sys_168: 3.74619329e-17 - art_sys_169: -3.45271441e-29 - art_sys_170: 7.51322513e-19 - art_sys_171: -4.64885887e-17 - art_sys_172: -2.05377548e-28 - art_sys_173: 6.10140390e-30 - art_sys_174: 3.98120791e-18 - art_sys_175: 0.0 - art_sys_176: 5.44679673e-20 - art_sys_177: 0.0 - art_sys_178: -6.37531283e-22 - art_sys_179: -1.40736392e-23 - art_sys_180: -3.22807252e-27 - art_sys_181: 2.14746304e-32 - art_sys_182: 0.0 - art_sys_183: -1.59348328e-31 - art_sys_184: -2.16437342e-31 - art_sys_185: -6.80974320e-34 + art_sys_25: 1.04184119e-13 + art_sys_26: 9.20912048e-15 + art_sys_27: 3.35762281e-14 + art_sys_28: 6.22001009e-18 + art_sys_29: 3.29336372e-15 + art_sys_30: -3.06359951e-15 + art_sys_31: 5.79975282e-16 + art_sys_32: -1.46577527e-16 + art_sys_33: 3.28848427e-16 + art_sys_34: 1.09299439e-03 + art_sys_35: -3.33103387e-14 + art_sys_36: -3.79353656e-03 + art_sys_37: -3.53075001e-13 + art_sys_38: 2.58967583e-16 + art_sys_39: -1.30481474e-11 + art_sys_40: 3.22960200e-03 + art_sys_41: -2.74194869e-12 + art_sys_42: -6.94009652e-17 + art_sys_43: -6.08666455e-17 + art_sys_44: -3.98978738e-17 + art_sys_45: -6.58826730e-18 + art_sys_46: -2.09772320e-13 + art_sys_47: -7.00611506e-03 + art_sys_48: -2.22819190e-10 + art_sys_49: -2.59402818e-14 + art_sys_50: -5.38262727e-16 + art_sys_51: -7.18310464e-15 + art_sys_52: -2.82495709e-15 + art_sys_53: 1.46088436e-15 + art_sys_54: 1.23932443e-15 + art_sys_55: -4.45644345e-12 + art_sys_56: -4.13789270e-14 + art_sys_57: 1.19462642e-02 + art_sys_58: 8.26459661e-17 + art_sys_59: -3.76441033e-17 + art_sys_60: -2.63255166e-10 + art_sys_61: -3.73958062e-13 + art_sys_62: -3.35190979e-03 + art_sys_63: 1.55445762e-14 + art_sys_64: -4.08386840e-10 + art_sys_65: -6.65800065e-18 + art_sys_66: -1.04170283e-18 + art_sys_67: 3.42395513e-12 + art_sys_68: -8.49508176e-14 + art_sys_69: 3.20176077e-14 + art_sys_70: -1.98192211e-12 + art_sys_71: -2.68786754e-04 + art_sys_72: 4.38057668e-13 + art_sys_73: -1.43467758e-15 + art_sys_74: 7.61510615e-16 + art_sys_75: 2.82368066e-16 + art_sys_76: 3.48105104e-16 + art_sys_77: -4.80107715e-05 + art_sys_78: 1.92545265e-14 + art_sys_79: -4.02189299e-17 + art_sys_80: 1.40831764e-18 + art_sys_81: -2.33167566e-17 + art_sys_82: -5.17044892e-18 + art_sys_83: -3.42868638e-15 + art_sys_84: 3.17005365e-18 + art_sys_85: -3.29949808e-18 + art_sys_86: 1.15806994e-14 + art_sys_87: 1.49259668e-05 + art_sys_88: -1.28578779e-15 + art_sys_89: 1.25876055e-17 + art_sys_90: -8.00700491e-12 + art_sys_91: 2.39884904e-15 + art_sys_92: -2.17936247e-11 + art_sys_93: 2.29581626e-12 + art_sys_94: 1.21432244e-12 + art_sys_95: -3.42930084e-14 + art_sys_96: 2.63630250e-16 + art_sys_97: -7.83626630e-12 + art_sys_98: 3.70124725e-13 + art_sys_99: 1.66445811e-12 + art_sys_100: 7.50137413e-15 + art_sys_101: 3.56088142e-15 + art_sys_102: 2.21279709e-14 + art_sys_103: 3.48806211e-15 + art_sys_104: 1.47440601e-12 + art_sys_105: -3.73804156e-14 + art_sys_106: 6.31779737e-08 + art_sys_107: -1.06415233e-15 + art_sys_108: 6.55965701e-17 + art_sys_109: 3.75941963e-16 + art_sys_110: -9.09708108e-13 + art_sys_111: -1.29873653e-12 + art_sys_112: -7.55265073e-14 + art_sys_113: 6.55774909e-18 + art_sys_114: 8.78595614e-13 + art_sys_115: -2.04819616e-14 + art_sys_116: -8.39375342e-09 + art_sys_117: 7.73082752e-13 + art_sys_118: 1.02549600e-13 + art_sys_119: -3.22262080e-13 + art_sys_120: -2.43717782e-09 + art_sys_121: -3.98481816e-14 + art_sys_122: 1.95247600e-13 + art_sys_123: -5.31041356e-13 + art_sys_124: 3.68475442e-14 + art_sys_125: -3.42057518e-10 + art_sys_126: -1.04350013e-13 + art_sys_127: -2.62190813e-13 + art_sys_128: -2.06607539e-13 + art_sys_129: -1.53135850e-13 + art_sys_130: -5.68927662e-13 + art_sys_131: 4.81584373e-11 + art_sys_132: 1.26515926e-13 + art_sys_133: -9.74706387e-13 + art_sys_134: -7.28995482e-16 + art_sys_135: -4.35774374e-14 + art_sys_136: -9.10573095e-14 + art_sys_137: 1.15182100e-16 + art_sys_138: -8.89386663e-15 + art_sys_139: -2.15670438e-14 + art_sys_140: -8.50041220e-14 + art_sys_141: -9.07731742e-13 + art_sys_142: 2.48793195e-14 + art_sys_143: -3.13117261e-17 + art_sys_144: 1.20782668e-18 + art_sys_145: 3.56295284e-16 + art_sys_146: 0.0 + art_sys_147: -3.12133464e-15 + art_sys_148: 1.47612700e-14 + art_sys_149: 1.47612700e-14 + art_sys_150: 6.10325706e-15 + art_sys_151: 6.10325706e-15 + art_sys_152: -1.93347558e-15 + art_sys_153: -7.52241768e-16 + art_sys_154: 2.12822413e-18 + art_sys_155: -2.23471292e-28 + art_sys_156: 2.10105268e-30 + art_sys_157: 8.90240321e-31 + art_sys_158: 0.0 + art_sys_159: -9.31290640e-16 + art_sys_160: 2.68607435e-16 + art_sys_161: 9.25309237e-16 + art_sys_162: 2.56982156e-17 + art_sys_163: 8.59651025e-15 + art_sys_164: 1.35445510e-15 + art_sys_165: -8.51891563e-18 + art_sys_166: -7.91930140e-24 + art_sys_167: -7.56423642e-24 + art_sys_168: 2.68407028e-24 + art_sys_169: -1.71798574e-25 + art_sys_170: 2.52943340e-25 + art_sys_171: -1.81200460e-25 + art_sys_172: -8.94586578e-26 + art_sys_173: 2.88359404e-26 + art_sys_174: 2.29325301e-26 + art_sys_175: -1.17330264e-28 + art_sys_176: -3.04935354e-28 + art_sys_177: -4.39143512e-27 + art_sys_178: 1.60306768e-27 + art_sys_179: -9.39039089e-28 + art_sys_180: 1.26072896e-27 + art_sys_181: 3.25433455e-30 + art_sys_182: -3.21344691e-28 + art_sys_183: -4.50039271e-30 + art_sys_184: 8.36540439e-32 + art_sys_185: 4.19644417e-32 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -59603,191 +59603,191 @@ bins: RelativeStatFSR-: -5.81371463e-03 luminosity_uncertainty: 4.16457600e-02 uncorrelated_uncertainty: 1.60176000e-02 -- art_sys_1: -1.00379699e-23 - art_sys_2: -1.23051052e-08 - art_sys_3: 1.54410726e-22 - art_sys_4: 2.13760299e-21 +- art_sys_1: 2.95132304e-24 + art_sys_2: -1.63498664e-22 + art_sys_3: -1.23051052e-08 + art_sys_4: -7.66267676e-23 art_sys_5: -1.36089256e-07 - art_sys_6: 3.09375059e-23 - art_sys_7: -1.52764609e-21 - art_sys_8: 2.00926068e-07 - art_sys_9: 6.61533788e-22 - art_sys_10: -1.20855115e-21 - art_sys_11: -4.44618585e-07 - art_sys_12: -1.03482145e-20 - art_sys_13: 1.77966580e-19 - art_sys_14: 2.45664669e-20 - art_sys_15: 5.20505729e-06 - art_sys_16: -8.72095726e-21 - art_sys_17: -2.36888744e-20 - art_sys_18: 2.71256521e-05 - art_sys_19: -9.52172249e-19 - art_sys_20: -5.51793637e-19 - art_sys_21: -4.81442150e-05 - art_sys_22: -6.50645541e-19 - art_sys_23: -7.92883352e-20 + art_sys_6: -9.96732296e-23 + art_sys_7: 2.09034006e-22 + art_sys_8: -2.00926068e-07 + art_sys_9: -2.62307900e-22 + art_sys_10: 2.27553118e-22 + art_sys_11: 4.44618585e-07 + art_sys_12: 3.74364254e-21 + art_sys_13: -1.47304578e-19 + art_sys_14: 8.76809523e-21 + art_sys_15: -5.20505729e-06 + art_sys_16: -7.72702744e-20 + art_sys_17: -1.77703332e-19 + art_sys_18: -2.71256521e-05 + art_sys_19: -1.15162492e-18 + art_sys_20: -4.76857562e-19 + art_sys_21: 4.81442150e-05 + art_sys_22: -1.04532644e-19 + art_sys_23: -3.01273591e-19 art_sys_24: -2.57337836e-05 - art_sys_25: 1.44244396e-13 - art_sys_26: -3.31363093e-15 - art_sys_27: -1.92509846e-14 - art_sys_28: 4.14659734e-15 - art_sys_29: 2.77433243e-17 - art_sys_30: 6.26243034e-19 - art_sys_31: -1.64637062e-19 - art_sys_32: -5.00449206e-17 - art_sys_33: -1.87596807e-16 - art_sys_34: -1.95077404e-04 - art_sys_35: 2.11610618e-15 - art_sys_36: -2.38592254e-04 - art_sys_37: -3.56568703e-15 - art_sys_38: 1.80096683e-16 - art_sys_39: -5.32581962e-14 - art_sys_40: -5.67455656e-04 - art_sys_41: 1.47393094e-14 - art_sys_42: 7.26599811e-17 - art_sys_43: 6.34181976e-17 - art_sys_44: -1.69102687e-17 - art_sys_45: 3.52438471e-17 - art_sys_46: 1.41672384e-13 - art_sys_47: 2.36610260e-03 - art_sys_48: 6.03610321e-12 - art_sys_49: 3.82055075e-18 - art_sys_50: 6.48060857e-03 - art_sys_51: -1.27162627e-14 - art_sys_52: -5.32566803e-14 - art_sys_53: 4.78349924e-14 - art_sys_54: 3.90386995e-11 - art_sys_55: -1.96655707e-12 - art_sys_56: -7.37143143e-03 - art_sys_57: -1.99736711e-10 - art_sys_58: -7.73415835e-12 - art_sys_59: 1.06468303e-15 - art_sys_60: -1.35594597e-16 - art_sys_61: -1.80392712e-16 - art_sys_62: 6.49053155e-17 - art_sys_63: 7.98273171e-17 - art_sys_64: -8.72094338e-13 - art_sys_65: 1.70424855e-17 - art_sys_66: 9.70076061e-18 - art_sys_67: -6.69664191e-18 - art_sys_68: -2.34102119e-13 - art_sys_69: -3.84012675e-13 - art_sys_70: 7.20084264e-11 - art_sys_71: 1.93723089e-04 - art_sys_72: 4.94998825e-18 - art_sys_73: 9.37389226e-13 - art_sys_74: 1.42306057e-04 - art_sys_75: -4.61899342e-19 - art_sys_76: 2.08931168e-19 - art_sys_77: 9.09134093e-20 - art_sys_78: 3.40626376e-05 - art_sys_79: -4.05929101e-11 - art_sys_80: -2.47022930e-21 - art_sys_81: 1.68292200e-21 - art_sys_82: -4.83002808e-21 - art_sys_83: 3.08072881e-14 - art_sys_84: -5.72451245e-12 - art_sys_85: -2.89596605e-12 - art_sys_86: 2.76644968e-14 - art_sys_87: 1.94441620e-11 - art_sys_88: 7.95963507e-23 - art_sys_89: -1.75929208e-12 - art_sys_90: 2.35770068e-12 - art_sys_91: -1.88211069e-12 - art_sys_92: 6.46270945e-14 - art_sys_93: 8.04031626e-13 - art_sys_94: 4.24858180e-13 - art_sys_95: -1.67222862e-13 - art_sys_96: -6.40265007e-13 - art_sys_97: -4.99197050e-12 - art_sys_98: 1.72179510e-07 - art_sys_99: -1.44453949e-14 - art_sys_100: -4.15584315e-23 - art_sys_101: -2.51683712e-23 - art_sys_102: 2.63957384e-12 - art_sys_103: -4.61089347e-14 - art_sys_104: 2.92935572e-12 - art_sys_105: -1.77542901e-15 - art_sys_106: -3.78348939e-08 - art_sys_107: -6.29296834e-13 - art_sys_108: 1.02473698e-14 - art_sys_109: -1.00207139e-12 - art_sys_110: -7.93602096e-09 - art_sys_111: -7.76964035e-14 - art_sys_112: -9.52166332e-13 - art_sys_113: 1.17101129e-12 - art_sys_114: -2.49449190e-13 - art_sys_115: -1.31864118e-09 - art_sys_116: -3.21144393e-12 - art_sys_117: 9.23221643e-15 - art_sys_118: -3.53984893e-12 - art_sys_119: 5.59376554e-15 - art_sys_120: 2.14495224e-17 - art_sys_121: -1.82774542e-18 - art_sys_122: 5.85005453e-18 - art_sys_123: 1.82768248e-10 - art_sys_124: 1.82346798e-18 - art_sys_125: 3.41789348e-13 - art_sys_126: 3.02338043e-18 - art_sys_127: 2.46038028e-13 - art_sys_128: 2.86698183e-18 - art_sys_129: 3.65623725e-12 - art_sys_130: -2.11811175e-14 - art_sys_131: 5.80993918e-14 - art_sys_132: 1.83165067e-18 - art_sys_133: 4.33341029e-14 - art_sys_134: -1.56202376e-17 - art_sys_135: 7.27508924e-24 - art_sys_136: 3.34984055e-24 - art_sys_137: -1.17636009e-23 - art_sys_138: 4.83778657e-24 - art_sys_139: -5.01794946e-25 - art_sys_140: 6.12012236e-25 - art_sys_141: 3.06043945e-18 - art_sys_142: -4.72265509e-25 - art_sys_143: 1.82515487e-21 - art_sys_144: 8.87576612e-21 - art_sys_145: 4.56547560e-21 - art_sys_146: 8.45515195e-21 - art_sys_147: -4.32778149e-22 - art_sys_148: -1.00233463e-22 - art_sys_149: 2.18621411e-22 - art_sys_150: -2.23582475e-23 - art_sys_151: -1.55874687e-23 - art_sys_152: 9.61243146e-25 - art_sys_153: -1.31867256e-23 - art_sys_154: -2.68768851e-24 - art_sys_155: 4.63880542e-24 - art_sys_156: -3.96267128e-24 - art_sys_157: -1.47182187e-24 - art_sys_158: -5.69155439e-25 - art_sys_159: 1.37720441e-25 - art_sys_160: 2.48340229e-26 - art_sys_161: -5.47834977e-28 - art_sys_162: -1.08431454e-27 - art_sys_163: 4.39781806e-27 - art_sys_164: -2.71276837e-26 - art_sys_165: 2.45325729e-27 - art_sys_166: 3.65112584e-28 - art_sys_167: -3.66212399e-28 - art_sys_168: -1.37241967e-16 - art_sys_169: 1.29461343e-28 - art_sys_170: -2.47143058e-18 - art_sys_171: 1.77484571e-16 - art_sys_172: 7.81481549e-28 - art_sys_173: -2.39860929e-29 - art_sys_174: -1.51863090e-17 - art_sys_175: 0.0 - art_sys_176: -2.07733342e-19 - art_sys_177: 0.0 - art_sys_178: 2.42946278e-21 - art_sys_179: 5.17021433e-23 - art_sys_180: 1.26389814e-26 - art_sys_181: -8.32746116e-32 - art_sys_182: 0.0 - art_sys_183: 6.07761956e-31 - art_sys_184: 6.99460128e-31 - art_sys_185: 2.52409896e-33 + art_sys_25: -2.30401707e-14 + art_sys_26: -6.92623419e-14 + art_sys_27: -1.17557758e-14 + art_sys_28: 2.45485974e-19 + art_sys_29: 5.86836205e-16 + art_sys_30: 6.68117810e-15 + art_sys_31: -1.95166065e-16 + art_sys_32: -4.96777182e-16 + art_sys_33: -2.07802210e-16 + art_sys_34: 1.95077404e-04 + art_sys_35: 2.32106962e-15 + art_sys_36: 2.38592254e-04 + art_sys_37: 2.22447128e-14 + art_sys_38: -5.75724357e-16 + art_sys_39: -2.29477438e-12 + art_sys_40: 5.67455656e-04 + art_sys_41: -4.81775528e-13 + art_sys_42: -6.78787460e-17 + art_sys_43: 3.67316022e-17 + art_sys_44: -5.45234285e-17 + art_sys_45: 2.13857326e-17 + art_sys_46: 4.48287046e-14 + art_sys_47: 2.36610259e-03 + art_sys_48: -1.21693762e-10 + art_sys_49: -2.50826633e-14 + art_sys_50: 1.51749742e-14 + art_sys_51: 3.92169056e-15 + art_sys_52: 3.58704118e-15 + art_sys_53: 9.81797123e-16 + art_sys_54: -1.41109189e-15 + art_sys_55: -2.41751787e-12 + art_sys_56: 9.10136072e-14 + art_sys_57: 6.48060856e-03 + art_sys_58: -2.44491164e-16 + art_sys_59: 4.90862440e-17 + art_sys_60: 5.78923434e-10 + art_sys_61: 3.46435864e-13 + art_sys_62: 7.37143123e-03 + art_sys_63: -1.12039948e-14 + art_sys_64: 8.98075896e-10 + art_sys_65: 3.41845737e-18 + art_sys_66: 4.10096781e-18 + art_sys_67: 1.99328247e-12 + art_sys_68: 2.02734623e-13 + art_sys_69: -7.67646429e-14 + art_sys_70: -1.73487821e-12 + art_sys_71: 1.93722820e-04 + art_sys_72: -5.16032178e-13 + art_sys_73: 4.74306231e-15 + art_sys_74: -2.13336377e-15 + art_sys_75: -7.77405543e-16 + art_sys_76: -1.03157668e-15 + art_sys_77: 1.42306017e-04 + art_sys_78: -5.70704830e-14 + art_sys_79: 9.05081564e-17 + art_sys_80: -3.25594548e-18 + art_sys_81: 5.32878463e-17 + art_sys_82: 1.19396305e-17 + art_sys_83: 9.29987577e-15 + art_sys_84: -7.15258495e-18 + art_sys_85: 7.50517740e-18 + art_sys_86: -5.23975589e-14 + art_sys_87: -3.40626561e-05 + art_sys_88: 4.82805785e-15 + art_sys_89: -4.57934263e-17 + art_sys_90: 1.75230863e-11 + art_sys_91: -6.53613233e-15 + art_sys_92: 4.97370290e-11 + art_sys_93: -5.12345642e-12 + art_sys_94: -2.77243501e-12 + art_sys_95: 9.35019574e-14 + art_sys_96: -1.01597084e-15 + art_sys_97: 2.13562291e-11 + art_sys_98: -8.44990189e-13 + art_sys_99: -3.65643777e-12 + art_sys_100: -1.98855808e-14 + art_sys_101: -8.79064734e-15 + art_sys_102: -5.08799565e-14 + art_sys_103: -1.13920460e-14 + art_sys_104: -3.22338871e-12 + art_sys_105: 1.04138251e-13 + art_sys_106: -1.72184579e-07 + art_sys_107: 4.04070179e-15 + art_sys_108: -2.49115001e-16 + art_sys_109: -1.43176219e-15 + art_sys_110: 4.18155143e-12 + art_sys_111: 3.53950186e-12 + art_sys_112: 2.28278772e-13 + art_sys_113: -2.52398279e-17 + art_sys_114: -2.39561006e-12 + art_sys_115: 7.89646762e-14 + art_sys_116: 3.78317259e-08 + art_sys_117: -2.05833629e-12 + art_sys_118: -3.95470462e-13 + art_sys_119: 9.94729251e-13 + art_sys_120: 7.93994237e-09 + art_sys_121: 1.51068662e-13 + art_sys_122: -1.03439501e-12 + art_sys_123: 1.80782128e-12 + art_sys_124: -1.39864691e-13 + art_sys_125: 1.31896406e-09 + art_sys_126: 3.96223197e-13 + art_sys_127: 9.77286687e-13 + art_sys_128: 7.84758228e-13 + art_sys_129: 4.47333066e-13 + art_sys_130: 2.16073813e-12 + art_sys_131: -1.82869835e-10 + art_sys_132: -4.46808769e-13 + art_sys_133: 3.70162594e-12 + art_sys_134: 2.73308404e-15 + art_sys_135: 1.50683552e-13 + art_sys_136: 3.46091015e-13 + art_sys_137: -4.23371393e-16 + art_sys_138: 2.23857742e-14 + art_sys_139: 8.55685815e-14 + art_sys_140: 3.24357954e-13 + art_sys_141: 3.48181408e-12 + art_sys_142: -9.57654028e-14 + art_sys_143: 1.14358250e-16 + art_sys_144: -1.54492036e-18 + art_sys_145: -1.33702581e-15 + art_sys_146: -0.0 + art_sys_147: 1.16677593e-14 + art_sys_148: -5.48947407e-14 + art_sys_149: -5.48947407e-14 + art_sys_150: -2.29391232e-14 + art_sys_151: -2.29391232e-14 + art_sys_152: 6.06348046e-15 + art_sys_153: 2.90738310e-15 + art_sys_154: -7.91752661e-18 + art_sys_155: 1.17038998e-27 + art_sys_156: -7.87064303e-30 + art_sys_157: -3.33522139e-30 + art_sys_158: -0.0 + art_sys_159: 3.57463156e-15 + art_sys_160: -1.03087420e-15 + art_sys_161: -3.54875666e-15 + art_sys_162: -9.85067544e-17 + art_sys_163: -3.28709255e-14 + art_sys_164: -5.18812577e-15 + art_sys_165: 3.20307994e-17 + art_sys_166: 3.03061033e-23 + art_sys_167: 2.91142284e-23 + art_sys_168: -1.02973527e-23 + art_sys_169: 3.89383700e-25 + art_sys_170: -8.42798622e-25 + art_sys_171: 6.72082026e-25 + art_sys_172: 3.40249421e-25 + art_sys_173: -1.06998684e-25 + art_sys_174: -8.36342681e-26 + art_sys_175: 4.39582347e-28 + art_sys_176: 9.39738402e-28 + art_sys_177: 1.63370631e-26 + art_sys_178: -5.89080257e-27 + art_sys_179: 3.45719597e-27 + art_sys_180: -4.63319362e-27 + art_sys_181: -1.23988201e-29 + art_sys_182: 1.23558465e-27 + art_sys_183: 1.71299990e-29 + art_sys_184: -3.08632535e-31 + art_sys_185: -1.54301765e-31 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -59894,191 +59894,191 @@ bins: RelativeStatFSR-: -2.83230184e-03 luminosity_uncertainty: 1.90702200e-02 uncorrelated_uncertainty: 7.33470000e-03 -- art_sys_1: 1.84603277e-24 - art_sys_2: 1.95956050e-10 - art_sys_3: 1.34093136e-23 - art_sys_4: 1.97008235e-22 +- art_sys_1: -7.82879386e-25 + art_sys_2: -1.34392134e-23 + art_sys_3: 1.95956050e-10 + art_sys_4: -5.74441974e-24 art_sys_5: -1.17943326e-08 - art_sys_6: -1.73460890e-25 - art_sys_7: -1.33034049e-22 - art_sys_8: 1.71615388e-08 - art_sys_9: 2.68166867e-22 - art_sys_10: -1.12741123e-23 - art_sys_11: -4.06227489e-08 - art_sys_12: -3.17304028e-21 - art_sys_13: 5.78544750e-20 - art_sys_14: 6.99417984e-21 - art_sys_15: 1.42315624e-06 - art_sys_16: -1.88782387e-21 - art_sys_17: -2.58753874e-20 - art_sys_18: 3.24319649e-06 - art_sys_19: -9.07485068e-20 - art_sys_20: -1.63477305e-19 - art_sys_21: -1.03905634e-05 - art_sys_22: -1.74242146e-19 - art_sys_23: -1.92206499e-19 + art_sys_6: -1.19931464e-23 + art_sys_7: 1.70298678e-23 + art_sys_8: -1.71615388e-08 + art_sys_9: -1.91041951e-23 + art_sys_10: 4.88699827e-24 + art_sys_11: 4.06227489e-08 + art_sys_12: 1.11269816e-21 + art_sys_13: -4.37154165e-20 + art_sys_14: 7.51808722e-22 + art_sys_15: -1.42315624e-06 + art_sys_16: -1.47059514e-20 + art_sys_17: -3.28408480e-20 + art_sys_18: -3.24319649e-06 + art_sys_19: -1.17301773e-19 + art_sys_20: -1.43885477e-19 + art_sys_21: 1.03905634e-05 + art_sys_22: -2.92969777e-20 + art_sys_23: 9.12261895e-20 art_sys_24: -8.19645084e-06 - art_sys_25: 6.00655421e-14 - art_sys_26: -2.02296916e-14 - art_sys_27: -2.89965505e-15 - art_sys_28: -1.05426723e-15 - art_sys_29: 1.86985812e-15 - art_sys_30: 2.66592025e-19 - art_sys_31: 1.34403046e-19 - art_sys_32: -8.74440183e-16 - art_sys_33: 1.32519267e-15 - art_sys_34: 2.67748399e-05 - art_sys_35: 1.89963076e-15 - art_sys_36: -1.54926274e-04 - art_sys_37: -2.30332185e-15 - art_sys_38: 4.14445059e-16 - art_sys_39: 1.19097872e-14 - art_sys_40: 1.35185554e-04 - art_sys_41: -3.51872291e-15 - art_sys_42: -2.80597778e-18 - art_sys_43: -5.57068626e-17 - art_sys_44: 1.85518592e-18 - art_sys_45: 5.83811763e-17 - art_sys_46: 3.23352115e-14 - art_sys_47: 4.16630638e-04 - art_sys_48: -5.46018172e-13 - art_sys_49: -7.41157026e-19 - art_sys_50: -6.55785239e-04 - art_sys_51: 2.25256761e-14 - art_sys_52: -3.03495641e-14 - art_sys_53: 6.27423115e-15 - art_sys_54: 5.53053601e-12 - art_sys_55: -3.46177480e-13 - art_sys_56: -9.68410298e-04 - art_sys_57: -2.56891077e-11 - art_sys_58: 7.84096880e-13 - art_sys_59: -2.43913583e-14 - art_sys_60: 2.44910056e-15 - art_sys_61: 1.96474979e-15 - art_sys_62: -3.60326395e-16 - art_sys_63: -9.55396364e-16 - art_sys_64: 2.13314822e-12 - art_sys_65: -2.81518343e-16 - art_sys_66: -1.33651259e-16 - art_sys_67: 6.38483396e-17 - art_sys_68: 1.29340187e-12 - art_sys_69: 2.10128459e-12 - art_sys_70: -1.21796732e-09 - art_sys_71: -2.91637517e-03 - art_sys_72: -2.47015655e-17 - art_sys_73: -4.29123813e-11 - art_sys_74: -3.67293152e-04 - art_sys_75: 2.44006521e-18 - art_sys_76: -9.81783401e-19 - art_sys_77: -2.54021373e-19 - art_sys_78: -1.85566325e-04 - art_sys_79: 1.77940088e-10 - art_sys_80: 9.42613213e-21 - art_sys_81: -5.20597178e-21 - art_sys_82: 1.70157494e-20 - art_sys_83: -1.08944580e-13 - art_sys_84: 3.10742095e-11 - art_sys_85: -2.90263309e-12 - art_sys_86: -9.78306801e-14 - art_sys_87: -1.05544170e-10 - art_sys_88: -1.64265936e-22 - art_sys_89: 6.22142116e-12 - art_sys_90: -1.28003727e-11 - art_sys_91: 6.06779129e-12 - art_sys_92: -2.48031595e-13 - art_sys_93: -2.83409970e-12 - art_sys_94: -1.49996021e-12 - art_sys_95: 6.69815443e-13 - art_sys_96: 1.35851170e-12 - art_sys_97: 1.76460301e-11 - art_sys_98: -6.08881784e-07 - art_sys_99: 5.50493292e-14 - art_sys_100: 1.31014281e-22 - art_sys_101: 1.36289537e-22 - art_sys_102: -9.33413400e-12 - art_sys_103: 2.49439439e-13 - art_sys_104: -1.03596956e-11 - art_sys_105: 6.84005178e-15 - art_sys_106: 1.33722955e-07 - art_sys_107: 2.23086623e-12 - art_sys_108: -4.20299230e-14 - art_sys_109: 3.69090859e-12 - art_sys_110: 3.66167240e-08 - art_sys_111: 3.18348249e-13 - art_sys_112: 4.11723654e-12 - art_sys_113: -5.48470308e-12 - art_sys_114: 1.18865111e-12 - art_sys_115: 5.18669715e-09 - art_sys_116: 1.48293375e-11 - art_sys_117: -1.07456561e-13 - art_sys_118: 1.63429647e-11 - art_sys_119: -2.28968013e-14 - art_sys_120: -8.88358251e-17 - art_sys_121: 7.29486711e-18 - art_sys_122: -2.95556225e-17 - art_sys_123: -7.48735676e-10 - art_sys_124: -8.89018472e-18 - art_sys_125: -1.58211387e-12 - art_sys_126: -1.28378437e-17 - art_sys_127: -1.11931712e-12 - art_sys_128: -1.25872843e-17 - art_sys_129: -1.69388239e-11 - art_sys_130: 1.07630370e-13 - art_sys_131: -2.55871374e-13 - art_sys_132: -7.62998677e-18 - art_sys_133: -1.91052171e-13 - art_sys_134: 6.88582798e-17 - art_sys_135: -4.93326461e-23 - art_sys_136: -1.85203050e-23 - art_sys_137: 4.30598711e-23 - art_sys_138: -6.92722110e-24 - art_sys_139: 1.19066635e-23 - art_sys_140: 5.11218522e-24 - art_sys_141: -1.35392340e-17 - art_sys_142: -1.38359249e-24 - art_sys_143: -8.07686932e-21 - art_sys_144: -4.10064381e-20 - art_sys_145: -1.89975059e-20 - art_sys_146: -3.95333915e-20 - art_sys_147: 3.60158797e-21 - art_sys_148: -5.01840332e-23 - art_sys_149: -8.78324593e-22 - art_sys_150: 2.99112544e-23 - art_sys_151: 5.80637371e-23 - art_sys_152: -5.40734111e-24 - art_sys_153: 6.02444073e-23 - art_sys_154: 1.17687025e-23 - art_sys_155: -2.14555058e-23 - art_sys_156: 1.86554932e-23 - art_sys_157: 6.71937708e-24 - art_sys_158: 2.61122416e-24 - art_sys_159: -6.30159044e-25 - art_sys_160: -1.19694569e-25 - art_sys_161: 1.71881121e-27 - art_sys_162: 4.89707560e-27 - art_sys_163: -2.07563823e-26 - art_sys_164: 1.26281270e-25 - art_sys_165: -1.10386776e-26 - art_sys_166: -1.57076800e-27 - art_sys_167: 2.53218702e-27 - art_sys_168: 6.06475830e-16 - art_sys_169: -5.82547085e-28 - art_sys_170: 1.20902826e-17 - art_sys_171: -7.54377480e-16 - art_sys_172: -3.56925822e-27 - art_sys_173: 1.02491922e-28 - art_sys_174: 6.46004654e-17 - art_sys_175: 0.0 - art_sys_176: 8.83815895e-19 - art_sys_177: 0.0 - art_sys_178: -1.03450928e-20 - art_sys_179: -2.27888043e-22 - art_sys_180: -5.24989164e-26 - art_sys_181: 3.49593616e-31 - art_sys_182: 0.0 - art_sys_183: -2.59056264e-30 - art_sys_184: -3.24100637e-30 - art_sys_185: -1.11789083e-32 + art_sys_25: -2.46772998e-14 + art_sys_26: -2.00402606e-14 + art_sys_27: 3.48005769e-14 + art_sys_28: -1.66036693e-19 + art_sys_29: -8.07144106e-17 + art_sys_30: -8.24389435e-16 + art_sys_31: 2.85696684e-15 + art_sys_32: -5.10510528e-17 + art_sys_33: -1.25095414e-16 + art_sys_34: -2.67748399e-05 + art_sys_35: 1.40060611e-15 + art_sys_36: 1.54926274e-04 + art_sys_37: 1.44199587e-14 + art_sys_38: 4.41371451e-17 + art_sys_39: 5.46221836e-13 + art_sys_40: -1.35185554e-04 + art_sys_41: 1.14773112e-13 + art_sys_42: 3.40547004e-18 + art_sys_43: -5.06867108e-17 + art_sys_44: -7.00246412e-17 + art_sys_45: -6.85760391e-18 + art_sys_46: 1.26931389e-14 + art_sys_47: 4.16630639e-04 + art_sys_48: 1.22273153e-11 + art_sys_49: 4.96517987e-14 + art_sys_50: 2.24617176e-14 + art_sys_51: -7.48978270e-15 + art_sys_52: -5.24454818e-15 + art_sys_53: -2.42507616e-16 + art_sys_54: -7.96091907e-16 + art_sys_55: 2.44634071e-13 + art_sys_56: 1.19357303e-14 + art_sys_57: -6.55785238e-04 + art_sys_58: -5.57047801e-16 + art_sys_59: -2.23486573e-16 + art_sys_60: 7.60546951e-11 + art_sys_61: 8.67099477e-15 + art_sys_62: 9.68410274e-04 + art_sys_63: 1.68660642e-13 + art_sys_64: 1.17713411e-10 + art_sys_65: -7.13412996e-17 + art_sys_66: -1.00042042e-17 + art_sys_67: -1.85773637e-13 + art_sys_68: -9.93805943e-13 + art_sys_69: 3.72145972e-13 + art_sys_70: -2.83179887e-11 + art_sys_71: -2.91637475e-03 + art_sys_72: -1.87125893e-11 + art_sys_73: -8.55801126e-15 + art_sys_74: 6.68346989e-15 + art_sys_75: 2.57670507e-15 + art_sys_76: 2.66477815e-15 + art_sys_77: -3.67292436e-04 + art_sys_78: 1.47306427e-13 + art_sys_79: -5.09937641e-16 + art_sys_80: 1.59250364e-17 + art_sys_81: -2.89172878e-16 + art_sys_82: -6.45399879e-17 + art_sys_83: -3.33294195e-14 + art_sys_84: 3.85766108e-17 + art_sys_85: -4.13182798e-17 + art_sys_86: 1.84629841e-13 + art_sys_87: 1.85566430e-04 + art_sys_88: -1.97847707e-14 + art_sys_89: 1.90576195e-16 + art_sys_90: -9.64678234e-11 + art_sys_91: 2.31346583e-14 + art_sys_92: -2.70738288e-10 + art_sys_93: 1.06931924e-11 + art_sys_94: 1.50855317e-11 + art_sys_95: -3.30633301e-13 + art_sys_96: 4.00225188e-15 + art_sys_97: -7.55235442e-11 + art_sys_98: 4.59876672e-12 + art_sys_99: -1.05923380e-12 + art_sys_100: 7.04685726e-14 + art_sys_101: 4.01855772e-14 + art_sys_102: 2.71340996e-13 + art_sys_103: 4.12361134e-14 + art_sys_104: -2.77755314e-13 + art_sys_105: -3.49180735e-13 + art_sys_106: 6.08899708e-07 + art_sys_107: -1.65549827e-14 + art_sys_108: 1.02238219e-15 + art_sys_109: 6.04994379e-15 + art_sys_110: -1.45502385e-11 + art_sys_111: -1.25173223e-11 + art_sys_112: -1.13055237e-12 + art_sys_113: 1.21300281e-16 + art_sys_114: 8.47292914e-12 + art_sys_115: -3.10654489e-13 + art_sys_116: -1.33712067e-07 + art_sys_117: 7.26985436e-12 + art_sys_118: 1.55499669e-12 + art_sys_119: -3.53750724e-12 + art_sys_120: -3.66347916e-08 + art_sys_121: -6.11119092e-13 + art_sys_122: 3.29502390e-12 + art_sys_123: -8.03748294e-12 + art_sys_124: 5.71709717e-13 + art_sys_125: -5.18799182e-09 + art_sys_126: -1.62286274e-12 + art_sys_127: -3.96280350e-12 + art_sys_128: -3.22263185e-12 + art_sys_129: -2.27759491e-12 + art_sys_130: -8.86831502e-12 + art_sys_131: 7.49168228e-10 + art_sys_132: 1.90000667e-12 + art_sys_133: -1.51862652e-11 + art_sys_134: -1.15547622e-14 + art_sys_135: -6.61302612e-13 + art_sys_136: -1.44205780e-12 + art_sys_137: 1.84041199e-15 + art_sys_138: 2.45004723e-14 + art_sys_139: -3.54126709e-13 + art_sys_140: -1.35453509e-12 + art_sys_141: -1.62610633e-11 + art_sys_142: 4.16327804e-13 + art_sys_143: -4.94504980e-16 + art_sys_144: -1.47574434e-17 + art_sys_145: 6.05746227e-15 + art_sys_146: 0.0 + art_sys_147: -5.14995563e-14 + art_sys_148: 2.21693640e-13 + art_sys_149: 2.21693640e-13 + art_sys_150: 1.15237649e-13 + art_sys_151: 1.15237649e-13 + art_sys_152: -3.08982757e-14 + art_sys_153: -1.53300020e-14 + art_sys_154: 3.59264973e-17 + art_sys_155: -7.35751135e-27 + art_sys_156: 3.19362883e-29 + art_sys_157: 1.37209421e-29 + art_sys_158: 0.0 + art_sys_159: -1.66393912e-14 + art_sys_160: 4.78849503e-15 + art_sys_161: 1.64635327e-14 + art_sys_162: 4.57311639e-16 + art_sys_163: 1.51597504e-13 + art_sys_164: 2.38254575e-14 + art_sys_165: -1.06127514e-16 + art_sys_166: -1.40452203e-22 + art_sys_167: -1.35002190e-22 + art_sys_168: 4.78432521e-23 + art_sys_169: -1.79612257e-24 + art_sys_170: 3.95306847e-24 + art_sys_171: -2.98939366e-24 + art_sys_172: -1.55726153e-24 + art_sys_173: 4.76836863e-25 + art_sys_174: 3.65154316e-25 + art_sys_175: -1.99590115e-27 + art_sys_176: -3.00355549e-27 + art_sys_177: -7.30642623e-26 + art_sys_178: 2.59382738e-26 + art_sys_179: -1.52529681e-26 + art_sys_180: 2.04356843e-26 + art_sys_181: 5.61875119e-29 + art_sys_182: -5.75255443e-27 + art_sys_183: -7.88117261e-29 + art_sys_184: 1.39084707e-30 + art_sys_185: 6.72706866e-31 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -60185,191 +60185,191 @@ bins: RelativeStatFSR-: -1.29388999e-03 luminosity_uncertainty: 8.19847600e-03 uncorrelated_uncertainty: 3.15326000e-03 -- art_sys_1: 1.59855913e-25 - art_sys_2: 2.97277657e-11 - art_sys_3: 1.07996398e-24 - art_sys_4: 9.03704338e-24 +- art_sys_1: -6.87879079e-26 + art_sys_2: -1.07147492e-24 + art_sys_3: 2.97277657e-11 + art_sys_4: -1.56911241e-24 art_sys_5: -9.14922371e-10 - art_sys_6: 2.34259066e-26 - art_sys_7: -5.48187251e-24 - art_sys_8: 1.70779515e-09 - art_sys_9: 7.82404990e-24 - art_sys_10: -1.03136062e-24 - art_sys_11: -1.71341485e-09 - art_sys_12: -3.14359936e-22 - art_sys_13: 5.78743756e-21 - art_sys_14: 5.61485898e-22 - art_sys_15: 1.37714924e-07 - art_sys_16: -6.63397972e-22 - art_sys_17: -2.84686476e-21 - art_sys_18: 2.39668605e-07 - art_sys_19: -5.78328249e-21 - art_sys_20: -1.41915160e-20 - art_sys_21: -9.27110419e-07 - art_sys_22: -1.51628013e-20 - art_sys_23: -1.57846004e-20 + art_sys_6: -1.36501339e-24 + art_sys_7: 7.43892665e-25 + art_sys_8: -1.70779515e-09 + art_sys_9: -1.37762268e-24 + art_sys_10: 1.88714061e-25 + art_sys_11: 1.71341485e-09 + art_sys_12: 2.45117147e-22 + art_sys_13: -4.29003878e-21 + art_sys_14: 1.68040557e-22 + art_sys_15: -1.37714924e-07 + art_sys_16: -1.31955939e-21 + art_sys_17: -2.84515385e-21 + art_sys_18: -2.39668605e-07 + art_sys_19: -7.77687916e-21 + art_sys_20: -1.26161180e-20 + art_sys_21: 9.27110419e-07 + art_sys_22: -2.54260562e-21 + art_sys_23: 9.48562881e-21 art_sys_24: -6.68238371e-07 - art_sys_25: -7.36738373e-14 - art_sys_26: 7.35351609e-14 - art_sys_27: -5.95653394e-15 - art_sys_28: 1.15124193e-14 - art_sys_29: 2.80706490e-15 - art_sys_30: 1.30240581e-20 - art_sys_31: 1.70940420e-20 - art_sys_32: 5.38771634e-16 - art_sys_33: 3.98686919e-16 - art_sys_34: 6.39640696e-06 - art_sys_35: 3.88336040e-17 - art_sys_36: -1.38040269e-06 - art_sys_37: -2.00881094e-17 - art_sys_38: 1.78725680e-16 - art_sys_39: 2.22349301e-15 - art_sys_40: 2.39277473e-05 - art_sys_41: -6.21608233e-16 - art_sys_42: -3.05796904e-18 - art_sys_43: -4.20387986e-17 - art_sys_44: -3.18798944e-17 - art_sys_45: 1.14674769e-17 - art_sys_46: -7.55412009e-15 - art_sys_47: -1.21506173e-04 - art_sys_48: -3.04330269e-13 - art_sys_49: 8.77340454e-18 - art_sys_50: -3.26466958e-04 - art_sys_51: -1.07328024e-13 - art_sys_52: 2.08804763e-14 - art_sys_53: -3.24664680e-15 - art_sys_54: -2.68290150e-12 - art_sys_55: 1.01874151e-13 - art_sys_56: 5.00831188e-04 - art_sys_57: 1.37224057e-11 - art_sys_58: 3.89709483e-13 - art_sys_59: -1.52580753e-14 - art_sys_60: 9.93011547e-16 - art_sys_61: -2.62873063e-16 - art_sys_62: 5.61911907e-16 - art_sys_63: 2.72678066e-17 - art_sys_64: -1.06840339e-11 - art_sys_65: -9.52809098e-17 - art_sys_66: -1.96554162e-17 - art_sys_67: -2.85912016e-17 - art_sys_68: -2.27541429e-12 - art_sys_69: -3.74818794e-12 - art_sys_70: -4.63029486e-10 - art_sys_71: -7.56559618e-04 - art_sys_72: 8.06650130e-17 - art_sys_73: -1.10717314e-11 - art_sys_74: 1.71924600e-03 - art_sys_75: -4.92250983e-18 - art_sys_76: 2.02356596e-18 - art_sys_77: 1.27733321e-18 - art_sys_78: 3.33132662e-04 - art_sys_79: -4.76581200e-10 - art_sys_80: -1.12223302e-19 - art_sys_81: 5.30786058e-20 - art_sys_82: -1.45823420e-19 - art_sys_83: 1.15627162e-12 - art_sys_84: -5.60911637e-11 - art_sys_85: 4.86811408e-12 - art_sys_86: 1.03979645e-12 - art_sys_87: 1.90498177e-10 - art_sys_88: 4.78879493e-21 - art_sys_89: -6.59913159e-11 - art_sys_90: 2.30380721e-11 - art_sys_91: -1.09113091e-11 - art_sys_92: 1.99147189e-12 - art_sys_93: 1.80999693e-11 - art_sys_94: 8.73161726e-12 - art_sys_95: -5.07235440e-12 - art_sys_96: 1.06140089e-13 - art_sys_97: -1.86412704e-10 - art_sys_98: 6.44882390e-06 - art_sys_99: -3.27958025e-13 - art_sys_100: -9.07370452e-22 - art_sys_101: -2.80508847e-22 - art_sys_102: 9.85844956e-11 - art_sys_103: -1.50725958e-12 - art_sys_104: 1.04421990e-10 - art_sys_105: -4.53543011e-14 - art_sys_106: -7.78441660e-07 - art_sys_107: -1.63325985e-11 - art_sys_108: 2.69689146e-13 - art_sys_109: -2.16418914e-11 - art_sys_110: -2.30144854e-07 - art_sys_111: -2.04296785e-12 - art_sys_112: -2.55004016e-11 - art_sys_113: 3.45946148e-11 - art_sys_114: -7.50850701e-12 - art_sys_115: -3.40701231e-08 - art_sys_116: -9.31963247e-11 - art_sys_117: -6.48784687e-15 - art_sys_118: -1.02698975e-10 - art_sys_119: 1.47080946e-13 - art_sys_120: 5.76457766e-16 - art_sys_121: -2.49766562e-17 - art_sys_122: 1.68872128e-16 - art_sys_123: 4.80562251e-09 - art_sys_124: 6.61597933e-17 - art_sys_125: 9.94277037e-12 - art_sys_126: 8.98182732e-17 - art_sys_127: 7.05225186e-12 - art_sys_128: 8.29174536e-17 - art_sys_129: 9.23728173e-11 - art_sys_130: -6.79403565e-13 - art_sys_131: 1.59081868e-12 - art_sys_132: 4.73254884e-17 - art_sys_133: 1.15639169e-12 - art_sys_134: -4.16834423e-16 - art_sys_135: 2.71626711e-22 - art_sys_136: 3.83742080e-23 - art_sys_137: -4.22700117e-22 - art_sys_138: 8.37518374e-23 - art_sys_139: -5.85702927e-23 - art_sys_140: -2.12426860e-23 - art_sys_141: 8.16566815e-17 - art_sys_142: 1.07114796e-23 - art_sys_143: 4.87012440e-20 - art_sys_144: 2.28013692e-19 - art_sys_145: 1.11162073e-19 - art_sys_146: 2.05033330e-19 - art_sys_147: 2.25637263e-21 - art_sys_148: -3.83183621e-21 - art_sys_149: 5.66441249e-21 - art_sys_150: -2.91559658e-22 - art_sys_151: -4.95348485e-22 - art_sys_152: 1.91794964e-23 - art_sys_153: -3.37904874e-22 - art_sys_154: -7.06552120e-23 - art_sys_155: 1.17197408e-22 - art_sys_156: -9.83474008e-23 - art_sys_157: -3.77246112e-23 - art_sys_158: -1.45234242e-23 - art_sys_159: 3.50715446e-24 - art_sys_160: 6.21702667e-25 - art_sys_161: -1.25603826e-26 - art_sys_162: -2.77480646e-26 - art_sys_163: 1.10257124e-25 - art_sys_164: -6.84898614e-25 - art_sys_165: 6.25004006e-26 - art_sys_166: 9.42768688e-27 - art_sys_167: -8.08472245e-27 - art_sys_168: -3.66735417e-15 - art_sys_169: 3.38440457e-27 - art_sys_170: -7.01248293e-17 - art_sys_171: 4.63864974e-15 - art_sys_172: 1.99594991e-26 - art_sys_173: -6.09270423e-28 - art_sys_174: -3.97085589e-16 - art_sys_175: 0.0 - art_sys_176: -5.43219535e-18 - art_sys_177: 0.0 - art_sys_178: 6.35565704e-20 - art_sys_179: 1.37946117e-21 - art_sys_180: 3.25858426e-25 - art_sys_181: -2.15751371e-30 - art_sys_182: 0.0 - art_sys_183: 1.58867855e-29 - art_sys_184: 2.03944624e-29 - art_sys_185: 6.68559069e-32 + art_sys_25: -4.11049309e-14 + art_sys_26: 5.43904560e-14 + art_sys_27: 2.52869396e-15 + art_sys_28: -1.64280433e-20 + art_sys_29: -1.92542650e-17 + art_sys_30: -2.52810041e-15 + art_sys_31: -2.45984838e-17 + art_sys_32: -2.68595477e-16 + art_sys_33: -7.40028814e-17 + art_sys_34: -6.39640696e-06 + art_sys_35: 8.77843273e-18 + art_sys_36: 1.38040269e-06 + art_sys_37: 1.27485213e-16 + art_sys_38: 5.07404592e-17 + art_sys_39: 9.67498286e-14 + art_sys_40: -2.39277473e-05 + art_sys_41: 2.03148058e-14 + art_sys_42: 2.85771481e-18 + art_sys_43: 7.13286210e-17 + art_sys_44: -1.94547202e-17 + art_sys_45: -1.43541823e-17 + art_sys_46: -2.48188273e-15 + art_sys_47: -1.21506172e-04 + art_sys_48: 6.13074786e-12 + art_sys_49: 2.30256899e-15 + art_sys_50: -1.56572110e-14 + art_sys_51: -1.00655436e-14 + art_sys_52: -1.40446756e-15 + art_sys_53: -6.12061693e-17 + art_sys_54: -4.09815179e-16 + art_sys_55: 1.21786663e-13 + art_sys_56: -6.18602537e-15 + art_sys_57: -3.26466958e-04 + art_sys_58: 7.84639544e-17 + art_sys_59: -4.43623588e-17 + art_sys_60: -3.93338162e-11 + art_sys_61: -1.50658531e-14 + art_sys_62: -5.00831174e-04 + art_sys_63: 4.37478505e-14 + art_sys_64: -6.10833967e-11 + art_sys_65: -4.10733911e-17 + art_sys_66: 5.31382003e-17 + art_sys_67: -1.00489452e-13 + art_sys_68: 2.07144743e-12 + art_sys_69: -7.87719233e-13 + art_sys_70: -5.45991163e-11 + art_sys_71: -7.56563210e-04 + art_sys_72: 5.63080560e-11 + art_sys_73: 5.87704435e-14 + art_sys_74: -2.44826929e-14 + art_sys_75: -9.11299366e-15 + art_sys_76: -1.24605211e-14 + art_sys_77: 1.71924632e-03 + art_sys_78: -6.89481128e-13 + art_sys_79: 6.56888189e-16 + art_sys_80: -3.99264050e-17 + art_sys_81: 5.40858073e-16 + art_sys_82: 1.20058830e-16 + art_sys_83: 3.41903758e-13 + art_sys_84: -8.33726072e-17 + art_sys_85: 6.70522254e-17 + art_sys_86: -1.07356928e-12 + art_sys_87: -3.33132834e-04 + art_sys_88: 1.20632770e-13 + art_sys_89: -1.23091385e-15 + art_sys_90: 1.67694773e-10 + art_sys_91: -2.45004590e-13 + art_sys_92: 4.86535106e-10 + art_sys_93: -1.97210269e-11 + art_sys_94: -2.71338324e-11 + art_sys_95: 3.50034165e-12 + art_sys_96: -2.62670254e-14 + art_sys_97: 7.99903894e-10 + art_sys_98: -8.24530559e-12 + art_sys_99: 1.27361693e-12 + art_sys_100: -7.68448167e-13 + art_sys_101: -1.95181157e-13 + art_sys_102: -5.82173531e-13 + art_sys_103: -3.44842793e-13 + art_sys_104: 2.43254747e-13 + art_sys_105: 4.16585778e-12 + art_sys_106: -6.44901356e-06 + art_sys_107: 1.06250980e-13 + art_sys_108: -6.54692887e-15 + art_sys_109: -3.72651914e-14 + art_sys_110: 8.42441110e-11 + art_sys_111: 1.32564162e-10 + art_sys_112: 6.99512471e-12 + art_sys_113: -6.28393564e-16 + art_sys_114: -8.96918760e-11 + art_sys_115: 2.04046018e-12 + art_sys_116: 7.78378519e-07 + art_sys_117: -7.91754027e-11 + art_sys_118: -1.02165321e-11 + art_sys_119: 3.22552442e-11 + art_sys_120: 2.30258393e-07 + art_sys_121: 3.99076893e-12 + art_sys_122: -1.77870957e-11 + art_sys_123: 5.01178989e-11 + art_sys_124: -3.68095465e-12 + art_sys_125: 3.40786044e-08 + art_sys_126: 1.04197991e-11 + art_sys_127: 2.59528319e-11 + art_sys_128: 2.06167193e-11 + art_sys_129: 1.41695628e-11 + art_sys_130: 5.67799384e-11 + art_sys_131: -4.80833496e-09 + art_sys_132: -1.22646899e-11 + art_sys_133: 9.72875243e-11 + art_sys_134: 7.22184658e-14 + art_sys_135: 4.20374517e-12 + art_sys_136: 9.05597672e-12 + art_sys_137: -1.13286064e-14 + art_sys_138: 2.30815784e-15 + art_sys_139: 2.14709060e-12 + art_sys_140: 8.44981153e-12 + art_sys_141: 8.76888695e-11 + art_sys_142: -2.44960617e-12 + art_sys_143: 3.08307590e-15 + art_sys_144: -1.49042340e-16 + art_sys_145: -3.46935456e-14 + art_sys_146: -0.0 + art_sys_147: 3.05920160e-13 + art_sys_148: -1.47722068e-12 + art_sys_149: -1.47722068e-12 + art_sys_150: -5.77389111e-13 + art_sys_151: -5.77389111e-13 + art_sys_152: 1.82728630e-13 + art_sys_153: 7.00610386e-14 + art_sys_154: -2.07120156e-16 + art_sys_155: 1.87880295e-26 + art_sys_156: -2.10043061e-28 + art_sys_157: -8.78440168e-29 + art_sys_158: -0.0 + art_sys_159: 9.00473397e-14 + art_sys_160: -2.59869082e-14 + art_sys_161: -8.95510772e-14 + art_sys_162: -2.48658325e-15 + art_sys_163: -8.33279593e-13 + art_sys_164: -1.31448141e-13 + art_sys_165: 8.87584661e-16 + art_sys_166: 7.66753017e-22 + art_sys_167: 7.34315884e-22 + art_sys_168: -2.59630227e-22 + art_sys_169: 1.54835695e-23 + art_sys_170: -2.37315905e-23 + art_sys_171: 1.77262974e-23 + art_sys_172: 8.77966008e-24 + art_sys_173: -2.81739678e-24 + art_sys_174: -2.25338679e-24 + art_sys_175: 1.14180147e-26 + art_sys_176: 3.18738775e-26 + art_sys_177: 4.28592421e-25 + art_sys_178: -1.57120043e-25 + art_sys_179: 9.20246592e-26 + art_sys_180: -1.23570317e-25 + art_sys_181: -3.17716646e-28 + art_sys_182: 3.10699223e-26 + art_sys_183: 4.36506805e-28 + art_sys_184: -8.15497140e-30 + art_sys_185: -4.12448132e-30 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -60476,191 +60476,191 @@ bins: RelativeStatFSR-: -5.83350604e-04 luminosity_uncertainty: 3.47755200e-03 uncorrelated_uncertainty: 1.33752000e-03 -- art_sys_1: 4.67519700e-27 - art_sys_2: -2.24916061e-14 - art_sys_3: 5.74482433e-26 - art_sys_4: 2.70823460e-25 +- art_sys_1: -1.90701246e-27 + art_sys_2: -5.78196600e-26 + art_sys_3: -2.24916061e-14 + art_sys_4: -1.15847346e-25 art_sys_5: -4.78547476e-11 - art_sys_6: 5.23903094e-27 - art_sys_7: -2.08566038e-25 - art_sys_8: 1.05479539e-10 - art_sys_9: 1.17739012e-24 - art_sys_10: 9.03658024e-26 - art_sys_11: -4.49109309e-11 - art_sys_12: -1.62161114e-23 - art_sys_13: 3.00067593e-22 - art_sys_14: 2.81690545e-23 - art_sys_15: 7.27081679e-09 - art_sys_16: -9.21702441e-24 - art_sys_17: -1.23517999e-22 - art_sys_18: 1.58005309e-08 - art_sys_19: -4.36313920e-22 - art_sys_20: -3.65198757e-22 - art_sys_21: -4.50488778e-08 - art_sys_22: -4.65728091e-22 - art_sys_23: 1.07667724e-21 + art_sys_6: -9.68691929e-26 + art_sys_7: -1.33844691e-26 + art_sys_8: -1.05479539e-10 + art_sys_9: 1.35745579e-26 + art_sys_10: 9.24661420e-26 + art_sys_11: 4.49109309e-11 + art_sys_12: 8.62147751e-24 + art_sys_13: -2.24498327e-22 + art_sys_14: 7.34084730e-24 + art_sys_15: -7.27081679e-09 + art_sys_16: -6.33555358e-23 + art_sys_17: -1.60505743e-22 + art_sys_18: -1.58005309e-08 + art_sys_19: -5.48327876e-22 + art_sys_20: -3.34821310e-22 + art_sys_21: 4.50488778e-08 + art_sys_22: -8.10653395e-23 + art_sys_23: -7.75290778e-22 art_sys_24: -4.46749311e-09 - art_sys_25: -1.68729719e-13 - art_sys_26: 7.06085306e-15 - art_sys_27: -1.75767385e-14 - art_sys_28: 5.48756527e-15 - art_sys_29: -2.24323234e-15 - art_sys_30: -2.48363135e-21 - art_sys_31: -1.23990338e-21 - art_sys_32: 5.15832023e-16 - art_sys_33: -3.95587345e-16 - art_sys_34: -9.74578690e-08 - art_sys_35: -4.12907446e-17 - art_sys_36: 3.45326603e-06 - art_sys_37: 5.13394996e-17 - art_sys_38: -1.93955874e-17 - art_sys_39: -2.61121926e-16 - art_sys_40: -2.92836242e-06 - art_sys_41: 7.62048902e-17 - art_sys_42: 6.21821245e-20 - art_sys_43: -1.92369380e-17 - art_sys_44: 3.54473922e-17 - art_sys_45: -1.27132218e-17 - art_sys_46: -1.18591101e-15 - art_sys_47: -1.47277129e-05 - art_sys_48: 3.45494120e-14 - art_sys_49: 1.14803603e-17 - art_sys_50: 4.02132422e-05 - art_sys_51: -3.13672458e-14 - art_sys_52: 4.62224854e-14 - art_sys_53: -2.37718742e-16 - art_sys_54: -2.14039199e-13 - art_sys_55: 1.23067307e-14 - art_sys_56: 3.67713884e-05 - art_sys_57: 9.46724079e-13 - art_sys_58: -4.81330644e-14 - art_sys_59: 1.16139679e-14 - art_sys_60: -1.55418352e-15 - art_sys_61: 6.00570181e-17 - art_sys_62: -1.36109487e-15 - art_sys_63: -5.03579096e-16 - art_sys_64: -4.02508160e-12 - art_sys_65: -5.10052058e-16 - art_sys_66: -9.45929863e-18 - art_sys_67: 1.70898905e-16 - art_sys_68: 7.16784802e-12 - art_sys_69: 1.15047826e-11 - art_sys_70: 6.82236172e-11 - art_sys_71: 2.95934869e-04 - art_sys_72: -1.29003453e-16 - art_sys_73: 4.36920757e-12 - art_sys_74: 6.40592582e-04 - art_sys_75: 1.30073779e-17 - art_sys_76: -5.45813483e-18 - art_sys_77: -5.90757149e-19 - art_sys_78: -1.01074477e-03 - art_sys_79: 1.78504090e-09 - art_sys_80: -3.79631686e-20 - art_sys_81: -3.67209036e-20 - art_sys_82: 1.82000603e-19 - art_sys_83: -3.05137396e-14 - art_sys_84: 1.69034694e-10 - art_sys_85: -1.33870157e-11 - art_sys_86: -2.03339305e-14 - art_sys_87: -5.72966495e-10 - art_sys_88: 1.10680718e-20 - art_sys_89: 1.92925302e-12 - art_sys_90: -6.95010919e-11 - art_sys_91: 3.32679127e-11 - art_sys_92: -1.16307109e-12 - art_sys_93: -5.82279173e-11 - art_sys_94: -3.47880572e-11 - art_sys_95: 1.64175456e-12 - art_sys_96: -2.69943141e-13 - art_sys_97: 1.02472667e-11 - art_sys_98: -2.34878700e-07 - art_sys_99: 1.11728021e-12 - art_sys_100: 3.49067021e-21 - art_sys_101: 5.80036603e-21 - art_sys_102: -4.90640736e-12 - art_sys_103: 2.25184052e-12 - art_sys_104: -2.92978866e-11 - art_sys_105: 1.36098670e-13 - art_sys_106: 3.09705933e-06 - art_sys_107: 3.55095823e-11 - art_sys_108: -7.95901646e-13 - art_sys_109: 8.01996938e-11 - art_sys_110: 5.05995031e-07 - art_sys_111: 6.03507893e-12 - art_sys_112: 6.51313553e-11 - art_sys_113: -7.31694553e-11 - art_sys_114: 1.51977228e-11 - art_sys_115: 1.01036195e-07 - art_sys_116: 2.04576469e-10 - art_sys_117: 2.16537356e-14 - art_sys_118: 2.25470112e-10 - art_sys_119: -4.34466960e-13 - art_sys_120: -1.70794293e-15 - art_sys_121: 2.34417644e-16 - art_sys_122: -4.31571173e-16 - art_sys_123: -1.41961367e-08 - art_sys_124: -5.81219593e-17 - art_sys_125: -2.15989086e-11 - art_sys_126: -1.58062771e-16 - art_sys_127: -1.60953060e-11 - art_sys_128: -1.74160448e-16 - art_sys_129: -3.10639997e-10 - art_sys_130: 9.20604014e-13 - art_sys_131: -4.35377592e-12 - art_sys_132: -1.49186222e-16 - art_sys_133: -3.51467527e-12 - art_sys_134: 1.27923032e-15 - art_sys_135: -7.91186683e-22 - art_sys_136: -7.58356720e-22 - art_sys_137: 1.40031921e-22 - art_sys_138: 2.65704146e-23 - art_sys_139: 3.30011254e-22 - art_sys_140: 6.20318367e-23 - art_sys_141: -2.48497871e-16 - art_sys_142: -2.62271886e-23 - art_sys_143: -1.48230734e-19 - art_sys_144: -7.43654709e-19 - art_sys_145: -3.90510779e-19 - art_sys_146: -7.86063456e-19 - art_sys_147: 1.18445124e-19 - art_sys_148: -1.58442621e-21 - art_sys_149: -1.67999197e-20 - art_sys_150: 2.75824551e-21 - art_sys_151: 4.70339464e-22 - art_sys_152: -9.60898931e-23 - art_sys_153: 1.10626677e-21 - art_sys_154: 2.18534178e-22 - art_sys_155: -3.93964802e-22 - art_sys_156: 3.41557522e-22 - art_sys_157: 1.23509091e-22 - art_sys_158: 4.79531610e-23 - art_sys_159: -1.15939744e-23 - art_sys_160: -2.17449561e-24 - art_sys_161: 3.74557733e-26 - art_sys_162: 9.07533833e-26 - art_sys_163: -3.78350241e-25 - art_sys_164: 2.31294055e-24 - art_sys_165: -2.04121815e-25 - art_sys_166: -2.93701327e-26 - art_sys_167: 4.24723742e-26 - art_sys_168: 1.11304794e-14 - art_sys_169: -1.05443162e-26 - art_sys_170: 1.99161472e-16 - art_sys_171: -1.44244942e-14 - art_sys_172: -6.55658997e-26 - art_sys_173: 1.96064180e-27 - art_sys_174: 1.23418343e-15 - art_sys_175: 0.0 - art_sys_176: 1.68826604e-17 - art_sys_177: 0.0 - art_sys_178: -1.97488134e-19 - art_sys_179: -4.19350657e-21 - art_sys_180: -1.02987549e-24 - art_sys_181: 6.80283539e-30 - art_sys_182: 0.0 - art_sys_183: -4.94521351e-29 - art_sys_184: -4.38825149e-29 - art_sys_185: -2.09309584e-31 + art_sys_25: 2.52267073e-15 + art_sys_26: 1.42715212e-14 + art_sys_27: 7.64133682e-16 + art_sys_28: 1.63482994e-21 + art_sys_29: 2.94639886e-19 + art_sys_30: 2.33433748e-16 + art_sys_31: -5.10658556e-17 + art_sys_32: -1.21194948e-15 + art_sys_33: -1.88130244e-16 + art_sys_34: 9.74578690e-08 + art_sys_35: -3.20902564e-17 + art_sys_36: -3.45326603e-06 + art_sys_37: -3.21431666e-16 + art_sys_38: 3.68606041e-16 + art_sys_39: -1.18340124e-14 + art_sys_40: 2.92836242e-06 + art_sys_41: -2.48619441e-15 + art_sys_42: -8.04220287e-20 + art_sys_43: -9.38367817e-18 + art_sys_44: 1.95377590e-17 + art_sys_45: -6.52963420e-18 + art_sys_46: -4.76278434e-16 + art_sys_47: -1.47277130e-05 + art_sys_48: -7.51224915e-13 + art_sys_49: 3.92004938e-14 + art_sys_50: -1.70565864e-14 + art_sys_51: -4.04611345e-15 + art_sys_52: 6.19702565e-16 + art_sys_53: -3.66670246e-17 + art_sys_54: 4.82609049e-16 + art_sys_55: -1.50193093e-14 + art_sys_56: -4.47608442e-16 + art_sys_57: 4.02132421e-05 + art_sys_58: 1.64450672e-16 + art_sys_59: 4.48491956e-16 + art_sys_60: -2.88777861e-12 + art_sys_61: 2.87633095e-16 + art_sys_62: -3.67713877e-05 + art_sys_63: -1.71101570e-14 + art_sys_64: -4.45177841e-12 + art_sys_65: 5.75418787e-17 + art_sys_66: -4.94331619e-17 + art_sys_67: 1.16033733e-14 + art_sys_68: -4.69592541e-12 + art_sys_69: 1.72905976e-12 + art_sys_70: -1.53524851e-11 + art_sys_71: 2.95933453e-04 + art_sys_72: 2.19964875e-11 + art_sys_73: 5.96098840e-14 + art_sys_74: 4.72941635e-15 + art_sys_75: 3.22948993e-15 + art_sys_76: -4.61340026e-15 + art_sys_77: 6.40592256e-04 + art_sys_78: -2.56810273e-13 + art_sys_79: -2.96010633e-15 + art_sys_80: 7.85338682e-17 + art_sys_81: -1.55861856e-15 + art_sys_82: -3.70067929e-16 + art_sys_83: -1.92945889e-14 + art_sys_84: 1.80983795e-16 + art_sys_85: -2.31739062e-16 + art_sys_86: 4.29859475e-12 + art_sys_87: 1.01074521e-03 + art_sys_88: -3.49650960e-13 + art_sys_89: 3.32214979e-15 + art_sys_90: -4.62154603e-10 + art_sys_91: 8.59369709e-15 + art_sys_92: -1.47158175e-09 + art_sys_93: 6.04813345e-11 + art_sys_94: 8.20244294e-11 + art_sys_95: -1.35204395e-13 + art_sys_96: 7.78825794e-14 + art_sys_97: -2.90306359e-11 + art_sys_98: 2.50274114e-11 + art_sys_99: -3.06712333e-12 + art_sys_100: -8.27333149e-14 + art_sys_101: 1.51462378e-13 + art_sys_102: 1.39724880e-12 + art_sys_103: 4.25398750e-13 + art_sys_104: -4.42334761e-15 + art_sys_105: 7.58055656e-14 + art_sys_106: 2.34886441e-07 + art_sys_107: -3.13858853e-13 + art_sys_108: 1.93738370e-14 + art_sys_109: 1.13738582e-13 + art_sys_110: -3.46128901e-10 + art_sys_111: -4.83293314e-12 + art_sys_112: -1.31019627e-11 + art_sys_113: 2.20452474e-15 + art_sys_114: 3.51833188e-12 + art_sys_115: -6.04952160e-12 + art_sys_116: -3.09679666e-06 + art_sys_117: -7.33906654e-12 + art_sys_118: 3.02966152e-11 + art_sys_119: -2.56176318e-11 + art_sys_120: -5.06245616e-07 + art_sys_121: -1.16239285e-11 + art_sys_122: 9.39396985e-11 + art_sys_123: -1.20512001e-10 + art_sys_124: 1.08454158e-11 + art_sys_125: -1.01060382e-07 + art_sys_126: -3.07694175e-11 + art_sys_127: -7.27253525e-11 + art_sys_128: -6.10624995e-11 + art_sys_129: -2.44136091e-11 + art_sys_130: -1.68054818e-10 + art_sys_131: 1.42039192e-08 + art_sys_132: 3.12444402e-11 + art_sys_133: -2.87818414e-10 + art_sys_134: -2.16335403e-13 + art_sys_135: -1.04256161e-11 + art_sys_136: -2.72125233e-11 + art_sys_137: 3.40061331e-14 + art_sys_138: -3.18742477e-15 + art_sys_139: -7.07421812e-12 + art_sys_140: -2.56141098e-11 + art_sys_141: -2.97603694e-10 + art_sys_142: 7.78364830e-12 + art_sys_143: -9.13517170e-15 + art_sys_144: -2.20251339e-16 + art_sys_145: 1.11215255e-13 + art_sys_146: 0.0 + art_sys_147: -9.50704159e-13 + art_sys_148: 4.19071693e-12 + art_sys_149: 4.19071693e-12 + art_sys_150: 2.06413171e-12 + art_sys_151: 2.06413171e-12 + art_sys_152: -4.40072251e-13 + art_sys_153: -2.78374167e-13 + art_sys_154: 6.59735080e-16 + art_sys_155: -1.54084590e-25 + art_sys_156: 6.05488730e-28 + art_sys_157: 2.55310070e-28 + art_sys_158: 0.0 + art_sys_159: -3.04867833e-13 + art_sys_160: 8.77833695e-14 + art_sys_161: 3.01867467e-13 + art_sys_162: 8.38239565e-15 + art_sys_163: 2.78213726e-12 + art_sys_164: 4.37952830e-13 + art_sys_165: -2.14855449e-15 + art_sys_166: -2.57520656e-21 + art_sys_167: -2.47461265e-21 + art_sys_168: 8.77003699e-22 + art_sys_169: -3.77429162e-23 + art_sys_170: 6.95084678e-23 + art_sys_171: -5.49844471e-23 + art_sys_172: -2.86051279e-23 + art_sys_173: 8.77154887e-24 + art_sys_174: 6.72713714e-24 + art_sys_175: -3.66076458e-26 + art_sys_176: -5.68302139e-26 + art_sys_177: -1.34359628e-24 + art_sys_178: 4.77545616e-25 + art_sys_179: -2.80780660e-25 + art_sys_180: 3.76031763e-25 + art_sys_181: 1.03508597e-27 + art_sys_182: -1.05436038e-25 + art_sys_183: -1.44571831e-27 + art_sys_184: 2.54656543e-29 + art_sys_185: 1.24207568e-29 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -60767,191 +60767,191 @@ bins: RelativeStatFSR-: -2.41008895e-04 luminosity_uncertainty: 1.35273840e-03 uncorrelated_uncertainty: 5.20284000e-04 -- art_sys_1: -1.07382569e-28 - art_sys_2: -1.07503634e-13 - art_sys_3: 1.34512956e-27 - art_sys_4: 1.97366721e-26 +- art_sys_1: 3.27857130e-29 + art_sys_2: -1.39060796e-27 + art_sys_3: -1.07503634e-13 + art_sys_4: -1.56424185e-27 art_sys_5: -1.12627300e-12 - art_sys_6: 6.95438688e-29 - art_sys_7: -1.19825942e-26 - art_sys_8: 2.32600927e-12 - art_sys_9: 2.77850486e-26 - art_sys_10: -1.18919436e-26 - art_sys_11: -4.16398993e-12 - art_sys_12: -3.95748936e-25 - art_sys_13: 7.57404004e-24 - art_sys_14: 3.68486806e-25 - art_sys_15: 2.08243027e-10 - art_sys_16: 4.95865365e-25 - art_sys_17: -2.23216690e-25 - art_sys_18: 1.01477764e-09 - art_sys_19: -3.51785679e-23 - art_sys_20: 1.44665167e-23 - art_sys_21: -1.36873792e-09 - art_sys_22: 6.78027159e-24 - art_sys_23: 1.96046600e-22 + art_sys_6: -1.83211735e-27 + art_sys_7: -6.44322866e-28 + art_sys_8: -2.32600927e-12 + art_sys_9: -2.61078910e-27 + art_sys_10: 5.49073408e-27 + art_sys_11: 4.16398993e-12 + art_sys_12: 1.91233930e-25 + art_sys_13: -6.03752654e-24 + art_sys_14: 3.06000300e-25 + art_sys_15: -2.08243027e-10 + art_sys_16: -2.20731137e-24 + art_sys_17: -6.55718697e-24 + art_sys_18: -1.01477764e-09 + art_sys_19: -4.15964663e-23 + art_sys_20: 1.24550244e-23 + art_sys_21: 1.36873792e-09 + art_sys_22: 7.66514568e-25 + art_sys_23: -1.51232601e-22 art_sys_24: 1.95408072e-09 - art_sys_25: 2.09613848e-15 - art_sys_26: -3.26215939e-15 - art_sys_27: -5.20460027e-17 - art_sys_28: -4.80401022e-16 - art_sys_29: -1.20711157e-16 - art_sys_30: -2.80825031e-22 - art_sys_31: -2.39456685e-22 - art_sys_32: -3.60135836e-17 - art_sys_33: -1.22930199e-17 - art_sys_34: -7.99780777e-08 - art_sys_35: -3.92753647e-18 - art_sys_36: 3.05300034e-07 - art_sys_37: 4.53263594e-18 - art_sys_38: -1.36102158e-17 - art_sys_39: -5.61201946e-17 - art_sys_40: -6.08448760e-07 - art_sys_41: 1.58131468e-17 - art_sys_42: 6.59653828e-20 - art_sys_43: 3.35637343e-18 - art_sys_44: -1.39588941e-17 - art_sys_45: 3.11542624e-17 - art_sys_46: 1.38415354e-16 - art_sys_47: 2.33415702e-06 - art_sys_48: 8.55979959e-15 - art_sys_49: -1.63165416e-17 - art_sys_50: 9.30094383e-06 - art_sys_51: -3.37357843e-14 - art_sys_52: -1.27543383e-14 - art_sys_53: 1.34764407e-16 - art_sys_54: 8.15219104e-14 - art_sys_55: -1.99684616e-15 - art_sys_56: -1.51883012e-05 - art_sys_57: -4.16196526e-13 - art_sys_58: -1.10993208e-14 - art_sys_59: 5.47070208e-15 - art_sys_60: -3.60699579e-15 - art_sys_61: 3.89220459e-16 - art_sys_62: -1.29694997e-15 - art_sys_63: -1.97466961e-16 - art_sys_64: 4.41780051e-13 - art_sys_65: -6.08111267e-16 - art_sys_66: 4.23881062e-17 - art_sys_67: 1.67455900e-17 - art_sys_68: 1.60356296e-13 - art_sys_69: 2.61671207e-13 - art_sys_70: 1.53217556e-11 - art_sys_71: 2.24315455e-05 - art_sys_72: 1.01843736e-15 - art_sys_73: 3.28185555e-13 - art_sys_74: -7.12664239e-05 - art_sys_75: -1.44169759e-17 - art_sys_76: 5.37025481e-18 - art_sys_77: 2.16558598e-17 - art_sys_78: -2.31665925e-05 - art_sys_79: 3.54051913e-11 - art_sys_80: -2.57131509e-18 - art_sys_81: 1.01732486e-18 - art_sys_82: -3.02915546e-18 - art_sys_83: 2.69251263e-11 - art_sys_84: 4.05062320e-12 - art_sys_85: -3.23797465e-13 - art_sys_86: 2.42265608e-11 - art_sys_87: -1.31152344e-11 - art_sys_88: 1.13292053e-19 - art_sys_89: -1.53632108e-09 - art_sys_90: -3.50381488e-12 - art_sys_91: 7.61089275e-13 - art_sys_92: 4.27959175e-11 - art_sys_93: 3.08736547e-10 - art_sys_94: 1.36378253e-10 - art_sys_95: -1.08198464e-10 - art_sys_96: -4.29111928e-17 - art_sys_97: -4.33257060e-09 - art_sys_98: 1.50043602e-04 - art_sys_99: -6.18222137e-12 - art_sys_100: -1.13758439e-20 - art_sys_101: 6.69126237e-21 - art_sys_102: 2.29111390e-09 - art_sys_103: -4.38808186e-11 - art_sys_104: 2.38069689e-09 - art_sys_105: -9.47935132e-13 - art_sys_106: -1.21926161e-05 - art_sys_107: -3.13776232e-10 - art_sys_108: 6.17400013e-12 - art_sys_109: -3.75955775e-10 - art_sys_110: -5.86315561e-06 - art_sys_111: -4.66941265e-11 - art_sys_112: -5.98308829e-10 - art_sys_113: 8.96467398e-10 - art_sys_114: -1.98048040e-10 - art_sys_115: -7.33866309e-07 - art_sys_116: -2.37619797e-09 - art_sys_117: 5.19575156e-16 - art_sys_118: -2.61773712e-09 - art_sys_119: 3.35767242e-12 - art_sys_120: 1.35359829e-14 - art_sys_121: -2.94671716e-16 - art_sys_122: 4.64066396e-15 - art_sys_123: 1.09813912e-07 - art_sys_124: 1.83516165e-15 - art_sys_125: 2.53870593e-10 - art_sys_126: 2.15320528e-15 - art_sys_127: 1.77489613e-10 - art_sys_128: 2.03160497e-15 - art_sys_129: 2.43269652e-09 - art_sys_130: -1.86329648e-11 - art_sys_131: 3.89218426e-11 - art_sys_132: 1.12068239e-15 - art_sys_133: 2.83678994e-11 - art_sys_134: -1.02033542e-14 - art_sys_135: 6.14095258e-21 - art_sys_136: 2.73211431e-22 - art_sys_137: -9.84452871e-21 - art_sys_138: 1.95763554e-21 - art_sys_139: -7.32250623e-22 - art_sys_140: -5.40922375e-22 - art_sys_141: 2.00931865e-15 - art_sys_142: 2.52018271e-22 - art_sys_143: 1.19875974e-18 - art_sys_144: 5.97666327e-18 - art_sys_145: 2.52248985e-18 - art_sys_146: 5.36467170e-18 - art_sys_147: -1.72638348e-19 - art_sys_148: -1.54246014e-20 - art_sys_149: 1.25938861e-19 - art_sys_150: 6.55639318e-21 - art_sys_151: -1.13808954e-20 - art_sys_152: 6.97346783e-22 - art_sys_153: -8.72601831e-21 - art_sys_154: -1.74762427e-21 - art_sys_155: 3.08177737e-21 - art_sys_156: -2.65237549e-21 - art_sys_157: -9.73383113e-22 - art_sys_158: -3.77246829e-22 - art_sys_159: 9.08953290e-23 - art_sys_160: 1.71923291e-23 - art_sys_161: -3.01334722e-25 - art_sys_162: -7.32267387e-25 - art_sys_163: 2.97729838e-24 - art_sys_164: -1.81481425e-23 - art_sys_165: 1.58722111e-24 - art_sys_166: 2.26562470e-25 - art_sys_167: -3.60896238e-25 - art_sys_168: -9.00880303e-14 - art_sys_169: 8.61901453e-26 - art_sys_170: -1.82692109e-15 - art_sys_171: 1.11273584e-13 - art_sys_172: 5.16006541e-25 - art_sys_173: -1.45457093e-26 - art_sys_174: -9.53022029e-15 - art_sys_175: 0.0 - art_sys_176: -1.30387995e-16 - art_sys_177: 0.0 - art_sys_178: 1.52627793e-18 - art_sys_179: 3.38354180e-20 - art_sys_180: 7.70460889e-24 - art_sys_181: -5.13721985e-29 - art_sys_182: 0.0 - art_sys_183: 3.82197050e-28 - art_sys_184: 5.21102059e-28 - art_sys_185: 1.65065110e-30 + art_sys_25: 1.72576685e-15 + art_sys_26: -2.47620835e-15 + art_sys_27: 3.48623245e-17 + art_sys_28: 3.09841782e-22 + art_sys_29: 2.40837725e-19 + art_sys_30: 1.21491066e-16 + art_sys_31: 2.01226600e-17 + art_sys_32: -5.36135113e-18 + art_sys_33: -1.65757850e-17 + art_sys_34: 7.99780777e-08 + art_sys_35: -2.81245670e-18 + art_sys_36: -3.05300034e-07 + art_sys_37: -2.84032688e-17 + art_sys_38: -3.51686298e-18 + art_sys_39: -2.45995967e-15 + art_sys_40: 6.08448759e-07 + art_sys_41: -5.16575230e-16 + art_sys_42: -6.27629191e-20 + art_sys_43: -5.15013615e-18 + art_sys_44: 5.85256645e-18 + art_sys_45: -1.34734692e-17 + art_sys_46: 4.33454097e-17 + art_sys_47: 2.33415700e-06 + art_sys_48: -1.74513417e-13 + art_sys_49: 3.52104403e-14 + art_sys_50: -4.49246229e-14 + art_sys_51: -7.91549384e-15 + art_sys_52: -2.45663761e-15 + art_sys_53: -1.25753592e-15 + art_sys_54: -6.58068339e-16 + art_sys_55: -3.47300124e-15 + art_sys_56: 1.69880717e-16 + art_sys_57: 9.30094383e-06 + art_sys_58: 3.97727681e-16 + art_sys_59: 3.70960052e-16 + art_sys_60: 1.19284536e-12 + art_sys_61: 2.76746552e-16 + art_sys_62: 1.51883007e-05 + art_sys_63: -1.27433933e-15 + art_sys_64: 1.85235980e-12 + art_sys_65: 9.78914602e-18 + art_sys_66: -1.42554782e-17 + art_sys_67: 2.84173261e-15 + art_sys_68: -1.30939911e-13 + art_sys_69: 4.93371456e-14 + art_sys_70: 2.12838773e-12 + art_sys_71: 2.24316922e-05 + art_sys_72: -2.34729467e-12 + art_sys_73: -3.96412725e-14 + art_sys_74: 1.28250196e-14 + art_sys_75: -5.46543168e-15 + art_sys_76: 5.15080720e-16 + art_sys_77: -7.12664372e-05 + art_sys_78: 2.85734645e-14 + art_sys_79: -7.07767829e-15 + art_sys_80: -3.15251174e-16 + art_sys_81: 6.04544485e-16 + art_sys_82: 9.79396864e-17 + art_sys_83: 7.90210684e-12 + art_sys_84: -4.45827389e-16 + art_sys_85: -2.01987414e-16 + art_sys_86: -1.66645974e-11 + art_sys_87: 2.31666038e-05 + art_sys_88: 2.60801786e-12 + art_sys_89: -2.82810722e-14 + art_sys_90: -1.13107493e-11 + art_sys_91: -5.70103320e-12 + art_sys_92: -3.38081954e-11 + art_sys_93: 1.37960060e-12 + art_sys_94: 1.68356146e-12 + art_sys_95: 8.14236176e-11 + art_sys_96: -5.67067505e-13 + art_sys_97: 1.86116029e-08 + art_sys_98: 1.29196144e-12 + art_sys_99: -7.85173198e-14 + art_sys_100: -1.81175850e-11 + art_sys_101: -3.43888819e-12 + art_sys_102: -2.62667705e-12 + art_sys_103: -7.39154238e-12 + art_sys_104: -6.98438319e-15 + art_sys_105: 9.91184331e-11 + art_sys_106: -1.50048013e-04 + art_sys_107: 2.42831646e-12 + art_sys_108: -1.49913988e-13 + art_sys_109: -8.82033074e-13 + art_sys_110: 1.25907248e-09 + art_sys_111: 3.08432732e-09 + art_sys_112: 1.89934388e-10 + art_sys_113: -1.73042958e-14 + art_sys_114: -2.08680547e-09 + art_sys_115: 4.39609529e-11 + art_sys_116: 1.21917023e-05 + art_sys_117: -1.86018766e-09 + art_sys_118: -2.19948154e-10 + art_sys_119: 7.06802423e-10 + art_sys_120: 5.86604361e-06 + art_sys_121: 8.99279658e-11 + art_sys_122: -1.72004538e-10 + art_sys_123: 1.22076632e-09 + art_sys_124: -8.39036259e-11 + art_sys_125: 7.34053239e-07 + art_sys_126: 2.38066163e-10 + art_sys_127: 5.81313824e-10 + art_sys_128: 4.72384003e-10 + art_sys_129: 3.94786366e-10 + art_sys_130: 1.30021475e-09 + art_sys_131: -1.09878655e-07 + art_sys_132: -2.88089428e-10 + art_sys_133: 2.22675994e-09 + art_sys_134: 1.70239935e-12 + art_sys_135: 1.02422411e-10 + art_sys_136: 2.10904760e-10 + art_sys_137: -2.73711436e-13 + art_sys_138: 6.41340744e-15 + art_sys_139: 4.94497442e-11 + art_sys_140: 1.97384580e-10 + art_sys_141: 2.33190746e-09 + art_sys_142: -6.00622826e-11 + art_sys_143: 7.39157325e-14 + art_sys_144: 4.93716025e-16 + art_sys_145: -8.83849187e-13 + art_sys_146: -0.0 + art_sys_147: 7.55889441e-12 + art_sys_148: -3.30611068e-11 + art_sys_149: -3.30611068e-11 + art_sys_150: -1.65743787e-11 + art_sys_151: -1.65743787e-11 + art_sys_152: 5.13228173e-12 + art_sys_153: 2.14765590e-12 + art_sys_154: -5.26568341e-15 + art_sys_155: 8.44983601e-25 + art_sys_156: -4.72954166e-27 + art_sys_157: -1.99331366e-27 + art_sys_158: -0.0 + art_sys_159: 2.38601568e-12 + art_sys_160: -6.86868305e-13 + art_sys_161: -2.36288335e-12 + art_sys_162: -6.56503183e-14 + art_sys_163: -2.18122979e-11 + art_sys_164: -3.42623691e-12 + art_sys_165: 1.61785986e-14 + art_sys_166: 2.01888413e-20 + art_sys_167: 1.93824942e-20 + art_sys_168: -6.86178807e-21 + art_sys_169: 5.03477954e-22 + art_sys_170: -6.27372721e-22 + art_sys_171: 4.40470081e-22 + art_sys_172: 2.25969600e-22 + art_sys_173: -7.01981135e-23 + art_sys_174: -5.45478511e-23 + art_sys_175: 2.91438505e-25 + art_sys_176: 5.56818718e-25 + art_sys_177: 1.07328760e-23 + art_sys_178: -3.85028224e-24 + art_sys_179: 2.26121868e-24 + art_sys_180: -3.03339529e-24 + art_sys_181: -8.12879039e-27 + art_sys_182: 8.23989801e-25 + art_sys_183: 1.13753730e-26 + art_sys_184: -2.05303098e-28 + art_sys_185: -9.99816653e-29 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -61058,191 +61058,191 @@ bins: RelativeStatFSR-: -9.98679392e-05 luminosity_uncertainty: 5.28587800e-04 uncorrelated_uncertainty: 2.03303000e-04 -- art_sys_1: -1.54217894e-29 - art_sys_2: -7.43038884e-15 - art_sys_3: -1.12859485e-29 - art_sys_4: 2.09706081e-27 +- art_sys_1: 5.28187038e-30 + art_sys_2: 1.17218326e-29 + art_sys_3: -7.43038884e-15 + art_sys_4: 2.01704203e-28 art_sys_5: 7.53523553e-15 - art_sys_6: -1.41441409e-29 - art_sys_7: -1.36178154e-27 - art_sys_8: -7.60416551e-14 - art_sys_9: 1.12209841e-27 - art_sys_10: -1.00626374e-27 - art_sys_11: -4.66417533e-13 - art_sys_12: -1.18993487e-26 - art_sys_13: 2.37298761e-25 - art_sys_14: 1.47245462e-26 - art_sys_15: 7.46096033e-12 - art_sys_16: 5.65592042e-26 - art_sys_17: 4.16780625e-26 - art_sys_18: 5.35552667e-11 - art_sys_19: -1.93595273e-24 - art_sys_20: 3.28577512e-25 - art_sys_21: -6.88444324e-11 - art_sys_22: -1.06913111e-26 - art_sys_23: 7.11911036e-24 + art_sys_6: 1.02088962e-28 + art_sys_7: 2.04793705e-28 + art_sys_8: 7.60416551e-14 + art_sys_9: -3.29304006e-28 + art_sys_10: 1.30940568e-28 + art_sys_11: 4.66417533e-13 + art_sys_12: 1.16042442e-26 + art_sys_13: -2.04853214e-25 + art_sys_14: 9.41932482e-27 + art_sys_15: -7.46096033e-12 + art_sys_16: -1.26276035e-25 + art_sys_17: -3.18678121e-25 + art_sys_18: -5.35552667e-11 + art_sys_19: -2.27536362e-24 + art_sys_20: 2.92899168e-25 + art_sys_21: 6.88444324e-11 + art_sys_22: -1.30869519e-26 + art_sys_23: -5.97543518e-24 art_sys_24: 5.88969421e-11 - art_sys_25: 6.07061781e-15 - art_sys_26: -3.33850932e-17 - art_sys_27: 4.82359325e-16 - art_sys_28: -1.94635974e-16 - art_sys_29: 1.02360066e-16 - art_sys_30: -6.21899520e-24 - art_sys_31: -7.12408062e-24 - art_sys_32: -2.09736878e-17 - art_sys_33: 8.60144906e-18 - art_sys_34: -2.81668088e-09 - art_sys_35: -1.06195976e-20 - art_sys_36: 3.21862835e-10 - art_sys_37: 4.68507101e-21 - art_sys_38: 4.06931294e-18 - art_sys_39: -7.15702614e-19 - art_sys_40: -7.32906809e-09 - art_sys_41: 1.90183752e-19 - art_sys_42: 2.74837858e-21 - art_sys_43: 6.77491181e-18 - art_sys_44: 1.01082294e-17 - art_sys_45: -7.35624412e-18 - art_sys_46: 2.64683317e-17 - art_sys_47: 3.55230992e-07 - art_sys_48: -3.63417073e-16 - art_sys_49: -7.34655960e-18 - art_sys_50: -4.45152054e-07 - art_sys_51: -9.44260375e-15 - art_sys_52: -7.75401903e-15 - art_sys_53: -6.23460701e-18 - art_sys_54: 6.51604485e-15 - art_sys_55: -2.98500592e-16 - art_sys_56: -1.15708906e-06 - art_sys_57: -2.96707926e-14 - art_sys_58: 5.35529644e-16 - art_sys_59: -1.92573063e-14 - art_sys_60: -4.81803676e-15 - art_sys_61: 3.17158673e-15 - art_sys_62: -2.56822038e-15 - art_sys_63: 1.16912821e-16 - art_sys_64: 1.15148603e-13 - art_sys_65: -1.91126317e-16 - art_sys_66: 1.59091197e-17 - art_sys_67: 8.12441697e-20 - art_sys_68: -2.69003306e-13 - art_sys_69: -4.32121003e-13 - art_sys_70: -2.52730608e-12 - art_sys_71: -9.91343641e-06 - art_sys_72: -3.61925038e-16 - art_sys_73: -1.46607099e-13 - art_sys_74: -1.82345749e-05 - art_sys_75: -6.53570188e-19 - art_sys_76: -7.61327913e-18 - art_sys_77: 2.92795173e-18 - art_sys_78: 3.79755047e-05 - art_sys_79: -6.66059020e-11 - art_sys_80: -1.46902158e-18 - art_sys_81: -1.04848132e-18 - art_sys_82: 4.43113254e-18 - art_sys_83: 4.81900383e-12 - art_sys_84: -6.27778415e-12 - art_sys_85: 5.03691819e-13 - art_sys_86: 4.53304589e-12 - art_sys_87: 2.15807661e-11 - art_sys_88: 2.74395009e-19 - art_sys_89: -2.69758923e-10 - art_sys_90: 1.93728890e-12 - art_sys_91: -1.24997115e-12 - art_sys_92: -1.49483512e-11 - art_sys_93: -1.54870292e-09 - art_sys_94: -9.34380990e-10 - art_sys_95: -1.11021514e-11 - art_sys_96: 8.59706893e-15 - art_sys_97: -6.23969986e-10 - art_sys_98: 2.50605060e-05 - art_sys_99: 2.83486556e-11 - art_sys_100: 1.10902559e-19 - art_sys_101: 1.59726906e-19 - art_sys_102: 3.46111392e-10 - art_sys_103: 7.11854108e-12 - art_sys_104: -3.09660502e-10 - art_sys_105: 4.02963770e-12 - art_sys_106: 8.31333333e-05 - art_sys_107: 9.14646862e-10 - art_sys_108: -2.23060681e-11 - art_sys_109: 2.09309812e-09 - art_sys_110: 1.00648516e-05 - art_sys_111: 1.69240276e-10 - art_sys_112: 1.43909604e-09 - art_sys_113: -1.40750017e-09 - art_sys_114: 2.76991361e-10 - art_sys_115: 2.93481511e-06 - art_sys_116: 4.05986214e-09 - art_sys_117: -5.87329985e-16 - art_sys_118: 4.47263143e-09 - art_sys_119: -1.22065733e-11 - art_sys_120: -4.98207390e-14 - art_sys_121: 6.38321729e-15 - art_sys_122: -8.22947502e-15 - art_sys_123: -3.98201019e-07 - art_sys_124: -3.19928630e-16 - art_sys_125: -4.22027324e-10 - art_sys_126: -3.19322462e-15 - art_sys_127: -3.39001210e-10 - art_sys_128: -3.71519917e-15 - art_sys_129: -6.82882476e-09 - art_sys_130: 1.00556722e-12 - art_sys_131: -1.10809674e-10 - art_sys_132: -4.13332650e-15 - art_sys_133: -9.42578686e-11 - art_sys_134: 3.48472945e-14 - art_sys_135: -1.68662830e-20 - art_sys_136: -2.14797098e-20 - art_sys_137: 2.07597521e-21 - art_sys_138: 1.15705346e-21 - art_sys_139: 9.20316404e-21 - art_sys_140: 1.57293389e-21 - art_sys_141: -6.62383761e-15 - art_sys_142: -7.58030958e-22 - art_sys_143: -3.95055912e-18 - art_sys_144: -1.67986041e-17 - art_sys_145: -1.03937855e-17 - art_sys_146: -1.82602290e-17 - art_sys_147: 1.93316480e-18 - art_sys_148: 3.50251856e-19 - art_sys_149: -4.72115456e-19 - art_sys_150: 1.31544085e-19 - art_sys_151: 6.85223955e-21 - art_sys_152: -5.67829234e-22 - art_sys_153: 2.56755925e-20 - art_sys_154: 5.72636458e-21 - art_sys_155: -8.69085698e-21 - art_sys_156: 7.00532474e-21 - art_sys_157: 2.87581420e-21 - art_sys_158: 1.09634012e-21 - art_sys_159: -2.65039085e-22 - art_sys_160: -4.33155290e-23 - art_sys_161: 1.81183423e-24 - art_sys_162: 2.17184839e-24 - art_sys_163: -7.85534458e-24 - art_sys_164: 5.04029788e-23 - art_sys_165: -4.75902684e-24 - art_sys_166: -7.50955767e-25 - art_sys_167: 2.53823698e-25 - art_sys_168: 2.98163872e-13 - art_sys_169: -2.50932946e-25 - art_sys_170: 5.00668317e-15 - art_sys_171: -3.94831244e-13 - art_sys_172: -1.50579623e-24 - art_sys_173: 5.19656575e-26 - art_sys_174: 3.37683621e-14 - art_sys_175: 0.0 - art_sys_176: 4.61891846e-16 - art_sys_177: 0.0 - art_sys_178: -5.40197651e-18 - art_sys_179: -1.12473502e-19 - art_sys_180: -2.85451048e-23 - art_sys_181: 1.87867473e-28 - art_sys_182: 0.0 - art_sys_183: -1.34878831e-27 - art_sys_184: -8.47917197e-28 - art_sys_185: -5.64091321e-30 + art_sys_25: -3.22981194e-16 + art_sys_26: -3.49325237e-16 + art_sys_27: -3.27691609e-17 + art_sys_28: 1.05789893e-23 + art_sys_29: 8.48023005e-21 + art_sys_30: -5.55932384e-18 + art_sys_31: 2.13363869e-17 + art_sys_32: 5.10363286e-17 + art_sys_33: 4.89233421e-18 + art_sys_34: 2.81668088e-09 + art_sys_35: 1.18006120e-21 + art_sys_36: -3.21862835e-10 + art_sys_37: -2.96614347e-20 + art_sys_38: -2.25363400e-17 + art_sys_39: -2.96552631e-17 + art_sys_40: 7.32906808e-09 + art_sys_41: -6.22231422e-18 + art_sys_42: -2.29389110e-21 + art_sys_43: 9.17519112e-19 + art_sys_44: -9.86207356e-18 + art_sys_45: 1.72459236e-17 + art_sys_46: 1.01041792e-17 + art_sys_47: 3.55230993e-07 + art_sys_48: 8.29038213e-15 + art_sys_49: 4.52633665e-14 + art_sys_50: 6.01241645e-14 + art_sys_51: 1.21029040e-14 + art_sys_52: -1.17795447e-15 + art_sys_53: -1.64655160e-15 + art_sys_54: -1.15059368e-15 + art_sys_55: 1.74573860e-16 + art_sys_56: 2.84125617e-17 + art_sys_57: -4.45152053e-07 + art_sys_58: 3.15752875e-17 + art_sys_59: 1.00375574e-16 + art_sys_60: 9.08691376e-14 + art_sys_61: 5.00104156e-18 + art_sys_62: 1.15708903e-06 + art_sys_63: 5.53310805e-16 + art_sys_64: 1.40030502e-13 + art_sys_65: -1.19714121e-17 + art_sys_66: 1.05832090e-16 + art_sys_67: -1.22196207e-16 + art_sys_68: 1.78008482e-13 + art_sys_69: -6.56289641e-14 + art_sys_70: 4.37640930e-13 + art_sys_71: -9.91339513e-06 + art_sys_72: -6.29133822e-13 + art_sys_73: -1.07050140e-14 + art_sys_74: 6.47018072e-15 + art_sys_75: -1.80952976e-15 + art_sys_76: 2.03524683e-16 + art_sys_77: -1.82345629e-05 + art_sys_78: 7.31702188e-15 + art_sys_79: -1.71467546e-15 + art_sys_80: -1.10552852e-16 + art_sys_81: 3.22602917e-16 + art_sys_82: -6.26010055e-16 + art_sys_83: 1.31842990e-12 + art_sys_84: -6.73875615e-16 + art_sys_85: -9.97625422e-17 + art_sys_86: 1.15604628e-10 + art_sys_87: -3.79755214e-05 + art_sys_88: -8.27888393e-12 + art_sys_89: 8.76883246e-14 + art_sys_90: 1.74184572e-11 + art_sys_91: -9.62204381e-13 + art_sys_92: 5.52908404e-11 + art_sys_93: -2.27230086e-12 + art_sys_94: -3.16882105e-12 + art_sys_95: 1.33790684e-11 + art_sys_96: 2.25936619e-12 + art_sys_97: 3.11176342e-09 + art_sys_98: -6.25312994e-13 + art_sys_99: 1.15353384e-13 + art_sys_100: -6.14619313e-12 + art_sys_101: -4.70962248e-13 + art_sys_102: -1.25949380e-12 + art_sys_103: 9.91226842e-12 + art_sys_104: 2.05012206e-16 + art_sys_105: 1.47143761e-11 + art_sys_106: -2.50612195e-05 + art_sys_107: -8.80309655e-12 + art_sys_108: 5.41669725e-13 + art_sys_109: 3.00749720e-12 + art_sys_110: -9.38461738e-09 + art_sys_111: 5.15223783e-10 + art_sys_112: -1.83390775e-10 + art_sys_113: 4.44480081e-14 + art_sys_114: -3.41896432e-10 + art_sys_115: -1.75672007e-10 + art_sys_116: -8.31261609e-05 + art_sys_117: -5.91410984e-10 + art_sys_118: 8.80265299e-10 + art_sys_119: -5.53748528e-10 + art_sys_120: -1.00698567e-05 + art_sys_121: -3.34061819e-10 + art_sys_122: 2.67637966e-09 + art_sys_123: -2.57140111e-09 + art_sys_124: 3.05602040e-10 + art_sys_125: -2.93549767e-06 + art_sys_126: -8.63466334e-10 + art_sys_127: -2.03329415e-09 + art_sys_128: -1.70496350e-09 + art_sys_129: -2.90816068e-10 + art_sys_130: -4.69757882e-09 + art_sys_131: 3.98405203e-07 + art_sys_132: 7.85758760e-10 + art_sys_133: -8.05237531e-09 + art_sys_134: -5.93582174e-12 + art_sys_135: -2.47240126e-10 + art_sys_136: -7.40635881e-10 + art_sys_137: 9.33094738e-13 + art_sys_138: 1.18509227e-15 + art_sys_139: -1.91084156e-10 + art_sys_140: -6.90170931e-10 + art_sys_141: -6.42177417e-09 + art_sys_142: 1.90770310e-10 + art_sys_143: -2.56784908e-13 + art_sys_144: 2.79024868e-14 + art_sys_145: 2.69402789e-12 + art_sys_146: 0.0 + art_sys_147: -2.43323474e-11 + art_sys_148: 1.25879464e-10 + art_sys_149: 1.25879464e-10 + art_sys_150: 4.07748002e-11 + art_sys_151: 4.07748002e-11 + art_sys_152: -9.42093135e-12 + art_sys_153: -4.86162852e-12 + art_sys_154: 1.63820097e-14 + art_sys_155: -1.54160624e-24 + art_sys_156: 1.78170434e-26 + art_sys_157: 7.08653642e-27 + art_sys_158: 0.0 + art_sys_159: -6.61060294e-12 + art_sys_160: 1.91209741e-12 + art_sys_161: 6.60368819e-12 + art_sys_162: 1.83377495e-13 + art_sys_163: 6.20568391e-11 + art_sys_164: 9.80573044e-12 + art_sys_165: -8.38054246e-14 + art_sys_166: -5.67407850e-20 + art_sys_167: -5.39348863e-20 + art_sys_168: 1.91002284e-20 + art_sys_169: -1.49729805e-21 + art_sys_170: 1.90651565e-21 + art_sys_171: -1.41927085e-21 + art_sys_172: -6.71110681e-22 + art_sys_173: 2.24765576e-22 + art_sys_174: 1.86699636e-22 + art_sys_175: -8.86772635e-25 + art_sys_176: -3.55074282e-24 + art_sys_177: -3.39860214e-23 + art_sys_178: 1.28140251e-23 + art_sys_179: -7.47977412e-24 + art_sys_180: 1.00682159e-23 + art_sys_181: 2.42428262e-26 + art_sys_182: -2.27474218e-24 + art_sys_183: -3.27879489e-26 + art_sys_184: 6.50015815e-28 + art_sys_185: 3.38830165e-28 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -61349,191 +61349,191 @@ bins: RelativeStatFSR-: -3.72079958e-05 luminosity_uncertainty: 1.85734640e-04 uncorrelated_uncertainty: 7.14364000e-05 -- art_sys_1: -7.17523599e-31 - art_sys_2: -2.88475320e-16 - art_sys_3: -2.42029480e-30 - art_sys_4: 1.23778962e-28 +- art_sys_1: 2.63471876e-31 + art_sys_2: 2.53229339e-30 + art_sys_3: -2.88475320e-16 + art_sys_4: 2.81669732e-29 art_sys_5: 1.90888401e-15 - art_sys_6: -2.03733625e-30 - art_sys_7: -8.87459665e-29 - art_sys_8: -9.02636735e-15 - art_sys_9: 4.17515304e-29 - art_sys_10: -2.20955581e-29 - art_sys_11: -2.75748850e-14 - art_sys_12: -1.05096207e-27 - art_sys_13: 1.83673478e-26 - art_sys_14: 1.26626908e-27 - art_sys_15: 4.37573447e-13 - art_sys_16: -6.14012550e-27 - art_sys_17: -1.05049141e-26 - art_sys_18: 3.55516846e-13 - art_sys_19: -4.16587646e-27 - art_sys_20: -5.59047814e-26 - art_sys_21: -2.27126531e-12 - art_sys_22: -5.33311405e-26 - art_sys_23: -4.03397436e-25 + art_sys_6: 1.08917538e-29 + art_sys_7: 1.56037584e-29 + art_sys_8: 9.02636735e-15 + art_sys_9: -2.19291769e-29 + art_sys_10: 1.48994333e-29 + art_sys_11: 2.75748850e-14 + art_sys_12: 3.26935598e-28 + art_sys_13: -1.35798929e-26 + art_sys_14: 5.41265110e-28 + art_sys_15: -4.37573447e-13 + art_sys_16: -3.18250418e-27 + art_sys_17: -6.31580453e-27 + art_sys_18: -3.55516846e-13 + art_sys_19: -7.74302206e-27 + art_sys_20: -5.18975654e-26 + art_sys_21: 2.27126531e-12 + art_sys_22: -7.26943376e-27 + art_sys_23: 3.92881494e-25 art_sys_24: -3.54881332e-12 - art_sys_25: -3.81290459e-16 - art_sys_26: 1.12834870e-16 - art_sys_27: -1.81864822e-17 - art_sys_28: 2.34309899e-17 - art_sys_29: -2.22977360e-18 - art_sys_30: 2.43275320e-25 - art_sys_31: 1.13564811e-24 - art_sys_32: 2.57378980e-18 - art_sys_33: -2.58728319e-20 - art_sys_34: 5.93497863e-10 - art_sys_35: 1.17565799e-20 - art_sys_36: -7.39742506e-10 - art_sys_37: -1.09219825e-20 - art_sys_38: 2.17621154e-19 - art_sys_39: 4.49306508e-19 - art_sys_40: 4.80459635e-09 - art_sys_41: -1.24782047e-19 - art_sys_42: -5.97397818e-22 - art_sys_43: -3.13417597e-19 - art_sys_44: -1.43853138e-19 - art_sys_45: 6.39657705e-19 - art_sys_46: -5.00616620e-19 - art_sys_47: -1.26122137e-08 - art_sys_48: -1.50039740e-16 - art_sys_49: 2.10379478e-19 - art_sys_50: -1.66135831e-07 - art_sys_51: -3.63612094e-14 - art_sys_52: 7.81881557e-14 - art_sys_53: -2.05852858e-18 - art_sys_54: -1.38982103e-15 - art_sys_55: 1.20184798e-17 - art_sys_56: 2.59308353e-07 - art_sys_57: 7.11806386e-15 - art_sys_58: 1.98181330e-16 - art_sys_59: -2.18129809e-15 - art_sys_60: 2.69374143e-15 - art_sys_61: 4.17244638e-17 - art_sys_62: 1.83033523e-16 - art_sys_63: -3.37379516e-16 - art_sys_64: -1.84245316e-14 - art_sys_65: -1.01925152e-16 - art_sys_66: 3.22972782e-17 - art_sys_67: -3.96612661e-17 - art_sys_68: 1.01593642e-14 - art_sys_69: 1.62227952e-14 - art_sys_70: -4.07266524e-13 - art_sys_71: -3.66349099e-07 - art_sys_72: -5.32503519e-17 - art_sys_73: -5.33733009e-15 - art_sys_74: 2.95153619e-06 - art_sys_75: 2.01549979e-17 - art_sys_76: -1.42547175e-17 - art_sys_77: 2.15634454e-18 - art_sys_78: -1.41979299e-06 - art_sys_79: 2.62317109e-12 - art_sys_80: 4.77980863e-18 - art_sys_81: -5.29685485e-18 - art_sys_82: 1.19466463e-18 - art_sys_83: -2.21178756e-12 - art_sys_84: 2.22285009e-13 - art_sys_85: -1.84724360e-14 - art_sys_86: -1.94693711e-12 - art_sys_87: -8.11574055e-13 - art_sys_88: -5.48290290e-19 - art_sys_89: 1.27396412e-10 - art_sys_90: 5.39332238e-14 - art_sys_91: 4.67552615e-14 - art_sys_92: -5.61081440e-13 - art_sys_93: -4.28492253e-10 - art_sys_94: -2.34077561e-10 - art_sys_95: 7.15750535e-12 - art_sys_96: -3.46108581e-16 - art_sys_97: 3.57829718e-10 - art_sys_98: -1.27215669e-05 - art_sys_99: -1.70122004e-11 - art_sys_100: 1.39427439e-19 - art_sys_101: 6.23018821e-20 - art_sys_102: -2.05016035e-10 - art_sys_103: -4.23990592e-10 - art_sys_104: -3.49096313e-10 - art_sys_105: -5.10196289e-12 - art_sys_106: 1.99185564e-05 - art_sys_107: 2.02062238e-10 - art_sys_108: 5.29087607e-11 - art_sys_109: -3.90669385e-10 - art_sys_110: -4.87217841e-05 - art_sys_111: -3.97935952e-10 - art_sys_112: -4.14184205e-09 - art_sys_113: 7.67580216e-09 - art_sys_114: -1.74163999e-09 - art_sys_115: -4.65813512e-06 - art_sys_116: -1.97750714e-08 - art_sys_117: -1.33431113e-17 - art_sys_118: -2.17596634e-08 - art_sys_119: 2.84672897e-11 - art_sys_120: 1.29798353e-13 - art_sys_121: -4.63178267e-15 - art_sys_122: 5.17704656e-14 - art_sys_123: 9.34992563e-07 - art_sys_124: 1.35804059e-14 - art_sys_125: 2.09552795e-09 - art_sys_126: 1.16210356e-14 - art_sys_127: 1.47371237e-09 - art_sys_128: 1.43951466e-14 - art_sys_129: 3.52911038e-08 - art_sys_130: -1.29959733e-10 - art_sys_131: 3.72356792e-10 - art_sys_132: 1.26195273e-14 - art_sys_133: 3.14683565e-10 - art_sys_134: -1.13398821e-13 - art_sys_135: 4.35180344e-20 - art_sys_136: 1.82062090e-20 - art_sys_137: -7.55543371e-21 - art_sys_138: -2.20648308e-21 - art_sys_139: -4.37708095e-21 - art_sys_140: -1.87565261e-21 - art_sys_141: 2.24567866e-14 - art_sys_142: 1.98667470e-21 - art_sys_143: 1.34111706e-17 - art_sys_144: 8.39232124e-17 - art_sys_145: 2.58295400e-17 - art_sys_146: 8.26065964e-17 - art_sys_147: -1.97392270e-17 - art_sys_148: 3.42754053e-18 - art_sys_149: 9.68626601e-19 - art_sys_150: 3.73274578e-19 - art_sys_151: -2.67048308e-20 - art_sys_152: 1.85720732e-20 - art_sys_153: -1.18820347e-19 - art_sys_154: -1.99686145e-20 - art_sys_155: 4.46049170e-20 - art_sys_156: -4.13127026e-20 - art_sys_157: -1.32296836e-20 - art_sys_158: -5.23941611e-21 - art_sys_159: 1.25846424e-21 - art_sys_160: 2.85676657e-22 - art_sys_161: 3.00139712e-24 - art_sys_162: -9.64756378e-24 - art_sys_163: 4.57824546e-23 - art_sys_164: -2.67498461e-22 - art_sys_165: 2.08132279e-23 - art_sys_166: 2.44455346e-24 - art_sys_167: -1.09133772e-23 - art_sys_168: -9.98657672e-13 - art_sys_169: 1.08571820e-24 - art_sys_170: -1.97313942e-14 - art_sys_171: 1.24626835e-12 - art_sys_172: 7.05570604e-24 - art_sys_173: -1.72591960e-25 - art_sys_174: -1.06715467e-13 - art_sys_175: 0.0 - art_sys_176: -1.46000579e-15 - art_sys_177: 0.0 - art_sys_178: 1.70903973e-17 - art_sys_179: 3.75399805e-19 - art_sys_180: 8.70245306e-23 - art_sys_181: -5.83108721e-28 - art_sys_182: 0.0 - art_sys_183: 4.31755057e-27 - art_sys_184: 4.26073126e-27 - art_sys_185: 1.94051952e-29 + art_sys_25: -4.07620890e-17 + art_sys_26: 8.09906978e-17 + art_sys_27: 2.89403484e-18 + art_sys_28: -1.12348252e-24 + art_sys_29: -1.78614394e-21 + art_sys_30: -2.90947275e-18 + art_sys_31: 4.71613689e-19 + art_sys_32: -2.12760441e-18 + art_sys_33: -2.51471397e-19 + art_sys_34: -5.93497863e-10 + art_sys_35: 7.21185812e-21 + art_sys_36: 7.39742506e-10 + art_sys_37: 6.86917252e-20 + art_sys_38: 1.04986417e-18 + art_sys_39: 1.94286570e-17 + art_sys_40: -4.80459635e-09 + art_sys_41: 4.07910651e-18 + art_sys_42: 5.97324933e-22 + art_sys_43: 1.73125440e-20 + art_sys_44: 9.87149368e-19 + art_sys_45: -1.00787706e-18 + art_sys_46: -7.34632847e-20 + art_sys_47: -1.26122133e-08 + art_sys_48: 3.11334182e-15 + art_sys_49: 6.98377399e-15 + art_sys_50: -3.10497434e-14 + art_sys_51: 1.54650123e-14 + art_sys_52: -7.12509892e-15 + art_sys_53: 6.57263797e-16 + art_sys_54: -1.04917373e-16 + art_sys_55: 6.13390779e-17 + art_sys_56: -4.08073777e-18 + art_sys_57: -1.66135831e-07 + art_sys_58: 1.07688962e-15 + art_sys_59: -1.52548311e-15 + art_sys_60: -2.03653275e-14 + art_sys_61: -1.72266125e-18 + art_sys_62: -2.59308345e-07 + art_sys_63: 2.23177717e-17 + art_sys_64: -3.16212388e-14 + art_sys_65: 2.51627281e-16 + art_sys_66: -3.84233882e-16 + art_sys_67: -5.01844143e-17 + art_sys_68: -6.03938946e-15 + art_sys_69: 2.19753427e-15 + art_sys_70: -8.60503346e-14 + art_sys_71: -3.66355410e-07 + art_sys_72: 9.80324741e-14 + art_sys_73: -9.96043585e-14 + art_sys_74: -1.80403446e-14 + art_sys_75: 1.52513307e-15 + art_sys_76: -6.73908368e-16 + art_sys_77: 2.95153598e-06 + art_sys_78: -1.18369684e-15 + art_sys_79: 8.20014305e-15 + art_sys_80: 3.46714348e-16 + art_sys_81: 8.23696768e-16 + art_sys_82: 1.77217802e-16 + art_sys_83: -6.70218732e-13 + art_sys_84: -2.74956028e-16 + art_sys_85: 1.67668432e-16 + art_sys_86: 3.11250878e-11 + art_sys_87: 1.41979358e-06 + art_sys_88: 1.43052022e-11 + art_sys_89: -2.04127241e-13 + art_sys_90: -6.33078406e-13 + art_sys_91: 4.78679214e-13 + art_sys_92: -2.06459077e-12 + art_sys_93: 8.50432219e-14 + art_sys_94: 1.33451344e-13 + art_sys_95: -7.06875158e-12 + art_sys_96: -3.64742764e-12 + art_sys_97: -1.57073122e-09 + art_sys_98: -2.97527512e-14 + art_sys_99: -4.20128491e-15 + art_sys_100: -2.28882357e-14 + art_sys_101: 2.54655531e-13 + art_sys_102: 1.68216704e-13 + art_sys_103: -2.68730447e-12 + art_sys_104: 8.65456912e-17 + art_sys_105: -8.12692267e-12 + art_sys_106: 1.27219466e-05 + art_sys_107: 2.06873845e-11 + art_sys_108: -1.29025261e-12 + art_sys_109: -8.89969883e-12 + art_sys_110: -3.61786427e-09 + art_sys_111: -2.60649826e-10 + art_sys_112: 1.70836575e-09 + art_sys_113: -2.81021299e-13 + art_sys_114: 1.65452707e-10 + art_sys_115: 2.79202682e-10 + art_sys_116: -1.99149843e-05 + art_sys_117: 1.53766299e-10 + art_sys_118: -1.39151799e-09 + art_sys_119: -8.63061295e-11 + art_sys_120: 4.87457290e-05 + art_sys_121: 7.06873664e-10 + art_sys_122: 2.79334886e-09 + art_sys_123: 9.27938769e-09 + art_sys_124: -7.04480098e-10 + art_sys_125: 4.65936050e-06 + art_sys_126: 2.02475062e-09 + art_sys_127: 4.01729174e-09 + art_sys_128: 4.08040855e-09 + art_sys_129: 3.66121190e-09 + art_sys_130: 1.11943705e-08 + art_sys_131: -9.35608597e-07 + art_sys_132: -2.07632522e-09 + art_sys_133: 1.91239310e-08 + art_sys_134: 1.65004323e-11 + art_sys_135: 8.38267115e-10 + art_sys_136: 1.97484168e-09 + art_sys_137: -2.86598694e-12 + art_sys_138: -5.49745484e-16 + art_sys_139: 5.10357770e-10 + art_sys_140: 1.89136540e-09 + art_sys_141: 3.47238669e-08 + art_sys_142: -7.04274935e-10 + art_sys_143: 7.43114556e-13 + art_sys_144: 2.03948154e-13 + art_sys_145: -1.14269711e-11 + art_sys_146: 0.0 + art_sys_147: 8.78265547e-11 + art_sys_148: -2.39358859e-10 + art_sys_149: -2.39358859e-10 + art_sys_150: -2.89721377e-10 + art_sys_151: -2.89721377e-10 + art_sys_152: 6.41021390e-11 + art_sys_153: 4.37846874e-11 + art_sys_154: -6.72626419e-14 + art_sys_155: 3.13595438e-23 + art_sys_156: -3.62767087e-26 + art_sys_157: -1.56717747e-26 + art_sys_158: -0.0 + art_sys_159: 3.52253420e-11 + art_sys_160: -1.00736902e-11 + art_sys_161: -3.44769615e-11 + art_sys_162: -9.58971531e-13 + art_sys_163: -3.10691101e-10 + art_sys_164: -4.83182860e-11 + art_sys_165: -4.72925211e-14 + art_sys_166: 2.92453587e-19 + art_sys_167: 2.84416523e-19 + art_sys_168: -1.00630946e-19 + art_sys_169: 4.86917139e-21 + art_sys_170: -6.73200162e-21 + art_sys_171: 5.17853852e-21 + art_sys_172: 3.03065978e-21 + art_sys_173: -8.34288169e-22 + art_sys_174: -5.70020450e-22 + art_sys_175: 3.78370641e-24 + art_sys_176: -4.98523957e-24 + art_sys_177: 1.30198169e-22 + art_sys_178: -4.26095578e-23 + art_sys_179: 2.53272251e-23 + art_sys_180: -3.37741625e-23 + art_sys_181: -1.07939412e-25 + art_sys_182: 1.22110629e-23 + art_sys_183: 1.59365117e-25 + art_sys_184: -2.50980192e-27 + art_sys_185: -1.06131570e-27 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -61640,191 +61640,191 @@ bins: RelativeStatFSR-: -1.28616083e-05 luminosity_uncertainty: 6.05758400e-05 uncorrelated_uncertainty: 2.32984000e-05 -- art_sys_1: -1.86847489e-32 - art_sys_2: -6.78656170e-18 - art_sys_3: -9.77566945e-32 - art_sys_4: 3.10286384e-30 +- art_sys_1: 6.58281735e-33 + art_sys_2: 1.03495208e-31 + art_sys_3: -6.78656170e-18 + art_sys_4: 8.24816667e-31 art_sys_5: 7.62202025e-17 - art_sys_6: -7.70005599e-32 - art_sys_7: -2.49379561e-30 - art_sys_8: -3.55099461e-16 - art_sys_9: 1.25960035e-30 - art_sys_10: 1.02333633e-30 - art_sys_11: -7.42269415e-16 - art_sys_12: -3.48331384e-29 - art_sys_13: 6.56816713e-28 - art_sys_14: -4.14816134e-29 - art_sys_15: 1.01999331e-14 - art_sys_16: -3.10200659e-28 - art_sys_17: -4.59869775e-28 - art_sys_18: -1.64293548e-13 - art_sys_19: 6.34706573e-27 - art_sys_20: 2.13791751e-27 - art_sys_21: 2.40254580e-13 - art_sys_22: 3.09112978e-27 - art_sys_23: -2.65933496e-26 + art_sys_6: 4.16463643e-31 + art_sys_7: 6.97176890e-31 + art_sys_8: 3.55099461e-16 + art_sys_9: -6.11884419e-31 + art_sys_10: 4.91754473e-31 + art_sys_11: 7.42269415e-16 + art_sys_12: 1.23894462e-29 + art_sys_13: -3.81439134e-28 + art_sys_14: 6.24568674e-29 + art_sys_15: -1.01999331e-14 + art_sys_16: 3.24717216e-28 + art_sys_17: 9.47374866e-28 + art_sys_18: 1.64293548e-13 + art_sys_19: 7.65842681e-27 + art_sys_20: 1.57698640e-27 + art_sys_21: -2.40254580e-13 + art_sys_22: 6.31175385e-28 + art_sys_23: 3.47124384e-26 art_sys_24: 8.79634453e-14 - art_sys_25: -1.31658139e-16 - art_sys_26: 1.21465578e-17 - art_sys_27: -5.16006487e-18 - art_sys_28: 3.71945301e-18 - art_sys_29: -1.90875115e-18 - art_sys_30: -3.40790448e-26 - art_sys_31: 7.17505413e-26 - art_sys_32: 8.54602459e-19 - art_sys_33: -1.48111280e-19 - art_sys_34: 5.53979338e-11 - art_sys_35: -3.40664528e-22 - art_sys_36: 4.94697152e-11 - art_sys_37: 7.41636942e-22 - art_sys_38: 4.87839083e-20 - art_sys_39: 2.91537260e-20 - art_sys_40: 3.05747034e-10 - art_sys_41: -7.93528699e-21 - art_sys_42: -5.77772100e-23 - art_sys_43: -1.14208838e-19 - art_sys_44: -1.35170240e-19 - art_sys_45: -1.33881715e-19 - art_sys_46: -2.34519543e-19 - art_sys_47: -3.52969142e-09 - art_sys_48: -7.77134900e-18 - art_sys_49: 3.93674833e-19 - art_sys_50: -8.28522731e-09 - art_sys_51: 2.00818474e-13 - art_sys_52: 7.74420822e-14 - art_sys_53: -2.06297644e-18 - art_sys_54: -1.69331098e-16 - art_sys_55: 3.10468003e-18 - art_sys_56: 3.10230112e-08 - art_sys_57: 8.18647908e-16 - art_sys_58: 9.81862591e-18 - art_sys_59: -7.73356643e-15 - art_sys_60: -7.57364721e-15 - art_sys_61: -7.92477868e-16 - art_sys_62: 1.12225084e-15 - art_sys_63: 5.07161340e-16 - art_sys_64: -2.63677868e-15 - art_sys_65: 2.82772806e-16 - art_sys_66: -7.07269123e-18 - art_sys_67: 2.62242278e-18 - art_sys_68: 5.54856521e-15 - art_sys_69: 8.91259758e-15 - art_sys_70: 2.02313642e-14 - art_sys_71: 1.38016491e-07 - art_sys_72: 3.52134304e-19 - art_sys_73: 2.04709450e-15 - art_sys_74: 4.18375017e-07 - art_sys_75: -1.09269887e-17 - art_sys_76: -4.60724523e-18 - art_sys_77: -1.53527515e-17 - art_sys_78: -7.83448282e-07 - art_sys_79: 1.37454521e-12 - art_sys_80: -4.62708620e-18 - art_sys_81: 3.65763072e-19 - art_sys_82: 1.93061996e-18 - art_sys_83: -1.84033355e-13 - art_sys_84: 1.25582955e-13 - art_sys_85: -1.03823248e-14 - art_sys_86: -1.79643540e-13 - art_sys_87: -4.48208640e-13 - art_sys_88: -4.45037118e-19 - art_sys_89: 1.01307144e-11 - art_sys_90: 3.01411267e-16 - art_sys_91: 2.57891065e-14 - art_sys_92: 6.68415225e-13 - art_sys_93: 1.05673554e-10 - art_sys_94: 6.92660426e-11 - art_sys_95: 8.49282620e-13 - art_sys_96: -1.52783815e-16 - art_sys_97: 2.06953213e-11 - art_sys_98: -8.97178128e-07 - art_sys_99: -6.85855799e-12 - art_sys_100: 5.61157605e-19 - art_sys_101: -1.93904834e-19 - art_sys_102: -1.10391007e-11 - art_sys_103: -1.19525052e-09 - art_sys_104: 3.54558686e-11 - art_sys_105: 3.57648701e-11 - art_sys_106: -5.98027480e-06 - art_sys_107: -7.11727422e-11 - art_sys_108: -2.11237473e-10 - art_sys_109: -3.11718940e-10 - art_sys_110: -1.01924600e-05 - art_sys_111: 1.59751702e-09 - art_sys_112: -9.37453489e-10 - art_sys_113: 1.82134383e-09 - art_sys_114: -6.54248000e-10 - art_sys_115: 2.62373493e-05 - art_sys_116: -4.33706332e-09 - art_sys_117: 7.69718000e-18 - art_sys_118: -4.96489973e-09 - art_sys_119: -1.15631127e-10 - art_sys_120: -5.88686855e-13 - art_sys_121: 1.16138900e-14 - art_sys_122: 5.79060584e-15 - art_sys_123: -3.75977190e-06 - art_sys_124: 1.10449226e-14 - art_sys_125: 7.31763460e-10 - art_sys_126: 5.86084494e-15 - art_sys_127: -3.18238087e-10 - art_sys_128: -3.24368673e-15 - art_sys_129: -2.43231456e-08 - art_sys_130: -7.36617652e-10 - art_sys_131: -9.56643711e-10 - art_sys_132: -4.50527920e-14 - art_sys_133: -1.06222453e-09 - art_sys_134: 4.14729673e-13 - art_sys_135: -1.54910081e-19 - art_sys_136: -8.61804673e-20 - art_sys_137: 3.33388788e-20 - art_sys_138: 8.37326750e-21 - art_sys_139: 2.89334360e-20 - art_sys_140: 5.34419723e-21 - art_sys_141: -7.36262662e-14 - art_sys_142: -7.83017347e-21 - art_sys_143: -4.39450960e-17 - art_sys_144: -8.76182246e-17 - art_sys_145: -6.82154082e-17 - art_sys_146: -8.48354847e-17 - art_sys_147: -1.76656263e-17 - art_sys_148: 1.18909716e-17 - art_sys_149: -4.15853923e-18 - art_sys_150: 1.70728794e-18 - art_sys_151: -1.82623641e-19 - art_sys_152: 6.29048872e-20 - art_sys_153: 1.48438608e-19 - art_sys_154: 6.02872775e-20 - art_sys_155: -3.19430661e-20 - art_sys_156: 3.61329412e-21 - art_sys_157: 1.69928509e-20 - art_sys_158: 5.68707469e-21 - art_sys_159: -1.32733188e-21 - art_sys_160: -4.67449924e-23 - art_sys_161: 4.61847667e-23 - art_sys_162: 1.43190341e-23 - art_sys_163: -1.24837954e-23 - art_sys_164: 1.70352581e-22 - art_sys_165: -2.39580579e-23 - art_sys_166: -5.52972364e-24 - art_sys_167: -1.59957892e-23 - art_sys_168: 3.36824709e-12 - art_sys_169: -1.61151255e-24 - art_sys_170: 6.13073282e-14 - art_sys_171: -4.33945101e-12 - art_sys_172: -7.72762530e-24 - art_sys_173: 4.88566572e-25 - art_sys_174: 3.71379159e-13 - art_sys_175: 0.0 - art_sys_176: 5.08072067e-15 - art_sys_177: 0.0 - art_sys_178: -5.95121262e-17 - art_sys_179: -1.26702851e-18 - art_sys_180: -3.09220398e-22 - art_sys_181: 2.07177008e-27 - art_sys_182: 0.0 - art_sys_183: -1.47852229e-26 - art_sys_184: 1.95876624e-27 - art_sys_185: -6.66552214e-29 + art_sys_25: 4.63480453e-18 + art_sys_26: 1.13333067e-17 + art_sys_27: 1.68767133e-18 + art_sys_28: -9.31906037e-26 + art_sys_29: -1.66700583e-22 + art_sys_30: 7.08614107e-20 + art_sys_31: -4.17400903e-19 + art_sys_32: -7.30304505e-19 + art_sys_33: -3.43861165e-19 + art_sys_34: -5.53979338e-11 + art_sys_35: -4.55629678e-22 + art_sys_36: -4.94697152e-11 + art_sys_37: -4.61841856e-21 + art_sys_38: 4.14981006e-19 + art_sys_39: 1.23670506e-18 + art_sys_40: -3.05747034e-10 + art_sys_41: 2.59578133e-19 + art_sys_42: 5.50693223e-23 + art_sys_43: -1.07628614e-19 + art_sys_44: 5.19654485e-19 + art_sys_45: -5.55368346e-19 + art_sys_46: -8.18893907e-20 + art_sys_47: -3.52969140e-09 + art_sys_48: 1.55648097e-16 + art_sys_49: 5.97400032e-14 + art_sys_50: -1.83739549e-14 + art_sys_51: -5.45912809e-15 + art_sys_52: 4.98009573e-15 + art_sys_53: 1.45933611e-15 + art_sys_54: -1.85046770e-16 + art_sys_55: 2.78817484e-18 + art_sys_56: -9.24305640e-19 + art_sys_57: -8.28522730e-09 + art_sys_58: -1.73843127e-16 + art_sys_59: -1.02065730e-15 + art_sys_60: -2.43636993e-15 + art_sys_61: -7.48178109e-20 + art_sys_62: -3.10230105e-08 + art_sys_63: -7.19880767e-18 + art_sys_64: -3.76622911e-15 + art_sys_65: 3.40446395e-17 + art_sys_66: -3.56112561e-17 + art_sys_67: -2.61636991e-18 + art_sys_68: -3.66081729e-15 + art_sys_69: 1.34927696e-15 + art_sys_70: -1.10043725e-14 + art_sys_71: 1.38015545e-07 + art_sys_72: 1.42632771e-14 + art_sys_73: 6.46006166e-14 + art_sys_74: -1.90989691e-14 + art_sys_75: 1.54755755e-14 + art_sys_76: 1.59502349e-17 + art_sys_77: 4.18374788e-07 + art_sys_78: -1.67965852e-16 + art_sys_79: 1.09663438e-14 + art_sys_80: -2.17323508e-17 + art_sys_81: 2.14127419e-16 + art_sys_82: 2.40159792e-17 + art_sys_83: -4.72216720e-14 + art_sys_84: 5.28096453e-16 + art_sys_85: 1.46072940e-16 + art_sys_86: -8.47127129e-12 + art_sys_87: 7.83448625e-07 + art_sys_88: 2.97132734e-12 + art_sys_89: 5.99994511e-13 + art_sys_90: -3.59146768e-13 + art_sys_91: 3.42944537e-14 + art_sys_92: -1.14046539e-12 + art_sys_93: 4.68812917e-14 + art_sys_94: 6.96879929e-14 + art_sys_95: -4.95639036e-13 + art_sys_96: 2.02379463e-11 + art_sys_97: -1.10102117e-10 + art_sys_98: -3.21145498e-15 + art_sys_99: -2.37608212e-15 + art_sys_100: 1.36381059e-13 + art_sys_101: 2.02752353e-14 + art_sys_102: 1.05900884e-13 + art_sys_103: -1.87319788e-12 + art_sys_104: 1.18641803e-18 + art_sys_105: -4.95967397e-13 + art_sys_106: 8.97203116e-07 + art_sys_107: -8.31379415e-11 + art_sys_108: 5.07715859e-12 + art_sys_109: 2.43338459e-11 + art_sys_110: 4.49457055e-10 + art_sys_111: -1.82325223e-11 + art_sys_112: 2.55288697e-09 + art_sys_113: 4.36915946e-14 + art_sys_114: 9.09004017e-12 + art_sys_115: -1.56949147e-09 + art_sys_116: 5.98002623e-06 + art_sys_117: 4.36169946e-11 + art_sys_118: 7.86478717e-09 + art_sys_119: 6.52396337e-11 + art_sys_120: 1.01970974e-05 + art_sys_121: -3.34256221e-09 + art_sys_122: 1.67581119e-10 + art_sys_123: 1.22724214e-09 + art_sys_124: 2.92035943e-09 + art_sys_125: -2.62430339e-05 + art_sys_126: -8.16385564e-09 + art_sys_127: -1.71597733e-08 + art_sys_128: -1.59190817e-08 + art_sys_129: 5.68873561e-09 + art_sys_130: -4.39919759e-08 + art_sys_131: 3.76143451e-06 + art_sys_132: 4.34022736e-09 + art_sys_133: -7.55929199e-08 + art_sys_134: -5.97083182e-11 + art_sys_135: -1.14086878e-09 + art_sys_136: -6.52962255e-09 + art_sys_137: 1.08490324e-11 + art_sys_138: -3.90751224e-17 + art_sys_139: -1.53793980e-09 + art_sys_140: -5.80772710e-09 + art_sys_141: -1.94148250e-08 + art_sys_142: 1.07766176e-09 + art_sys_143: -3.21774714e-12 + art_sys_144: 1.41195838e-12 + art_sys_145: 2.04096834e-11 + art_sys_146: 0.0 + art_sys_147: -2.17103521e-10 + art_sys_148: 1.52467730e-09 + art_sys_149: 1.52467730e-09 + art_sys_150: 1.21291042e-10 + art_sys_151: 1.21291042e-10 + art_sys_152: -1.11792205e-10 + art_sys_153: 6.22072427e-12 + art_sys_154: 1.47137054e-13 + art_sys_155: 5.34380247e-23 + art_sys_156: 2.02380967e-25 + art_sys_157: 6.36358388e-26 + art_sys_158: 0.0 + art_sys_159: -2.03692574e-11 + art_sys_160: 6.12543592e-12 + art_sys_161: 2.22573097e-11 + art_sys_162: 6.26897127e-13 + art_sys_163: 2.54498074e-10 + art_sys_164: 3.95660772e-11 + art_sys_165: -1.27445382e-12 + art_sys_166: -2.10348320e-19 + art_sys_167: -1.75450105e-19 + art_sys_168: 6.08378410e-20 + art_sys_169: -2.57140627e-20 + art_sys_170: 1.83470965e-20 + art_sys_171: -1.39339435e-20 + art_sys_172: -4.17603434e-21 + art_sys_173: 2.14922327e-21 + art_sys_174: 2.31634248e-21 + art_sys_175: -6.83923531e-24 + art_sys_176: -1.10932298e-22 + art_sys_177: -3.09478163e-22 + art_sys_178: 1.43922269e-22 + art_sys_179: -8.21171991e-23 + art_sys_180: 1.12930652e-22 + art_sys_181: 1.37847659e-25 + art_sys_182: -6.36075749e-24 + art_sys_183: -1.60510547e-25 + art_sys_184: 6.51946178e-27 + art_sys_185: 3.89585299e-27 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -61931,191 +61931,191 @@ bins: RelativeStatFSR-: -4.05527520e-06 luminosity_uncertainty: 1.80390340e-05 uncorrelated_uncertainty: 6.93809000e-06 -- art_sys_1: -1.64038899e-34 - art_sys_2: -5.43834264e-20 - art_sys_3: -1.21231493e-33 - art_sys_4: 1.71970342e-32 +- art_sys_1: 5.88088490e-35 + art_sys_2: 1.26468523e-33 + art_sys_3: -5.43834264e-20 + art_sys_4: 7.50167176e-33 art_sys_5: 9.15068458e-19 - art_sys_6: -6.74267432e-34 - art_sys_7: -2.38542992e-32 - art_sys_8: -4.29876705e-18 - art_sys_9: -4.81873144e-32 - art_sys_10: 5.13542918e-32 - art_sys_11: -3.70890994e-18 - art_sys_12: -7.96280336e-33 - art_sys_13: -5.18731674e-30 - art_sys_14: -6.42656619e-30 - art_sys_15: -2.46072258e-16 - art_sys_16: -6.69477076e-30 - art_sys_17: 1.39076111e-29 - art_sys_18: -5.07698520e-15 - art_sys_19: 1.77687015e-28 - art_sys_20: 2.69606800e-28 - art_sys_21: 1.29888809e-14 - art_sys_22: 2.84976012e-28 - art_sys_23: 3.48998515e-28 + art_sys_6: 4.84081186e-33 + art_sys_7: 1.03228870e-32 + art_sys_8: 4.29876705e-18 + art_sys_9: 2.47277515e-34 + art_sys_10: 1.66295161e-32 + art_sys_11: 3.70890994e-18 + art_sys_12: -3.17119977e-31 + art_sys_13: 6.65128375e-30 + art_sys_14: 1.69860739e-30 + art_sys_15: 2.46072258e-16 + art_sys_16: 2.03130696e-29 + art_sys_17: 3.97754567e-29 + art_sys_18: 5.07698520e-15 + art_sys_19: 2.18190941e-28 + art_sys_20: 2.32902850e-28 + art_sys_21: -1.29888809e-14 + art_sys_22: 4.57507653e-29 + art_sys_23: 3.69526305e-29 art_sys_24: 1.68924371e-14 - art_sys_25: 4.71812141e-19 - art_sys_26: -1.13231631e-18 - art_sys_27: -4.38724011e-19 - art_sys_28: -7.28341826e-20 - art_sys_29: -9.59318748e-21 - art_sys_30: -1.82350764e-27 - art_sys_31: 2.16975299e-28 - art_sys_32: -4.16500843e-20 - art_sys_33: -8.28054412e-21 - art_sys_34: 5.30330745e-13 - art_sys_35: -2.56797942e-23 - art_sys_36: 2.34593246e-12 - art_sys_37: 3.49319937e-23 - art_sys_38: -7.79557946e-21 - art_sys_39: 8.97595190e-23 - art_sys_40: 8.60191006e-13 - art_sys_41: -2.22522349e-23 - art_sys_42: -3.56653666e-25 - art_sys_43: 1.37326426e-20 - art_sys_44: 1.44820713e-20 - art_sys_45: -8.18482662e-21 - art_sys_46: -1.96513426e-21 + art_sys_25: 2.05546411e-19 + art_sys_26: -4.44512027e-19 + art_sys_27: -6.12739336e-20 + art_sys_28: -2.11493860e-28 + art_sys_29: -1.59482826e-24 + art_sys_30: 1.49371343e-21 + art_sys_31: 1.37283974e-22 + art_sys_32: -5.26999188e-22 + art_sys_33: -6.03104541e-21 + art_sys_34: -5.30330745e-13 + art_sys_35: -2.19619355e-23 + art_sys_36: -2.34593246e-12 + art_sys_37: -2.18481902e-22 + art_sys_38: 1.53245065e-21 + art_sys_39: 3.48398716e-21 + art_sys_40: -8.60191005e-13 + art_sys_41: 7.30315289e-22 + art_sys_42: 3.07911537e-25 + art_sys_43: -1.65386763e-21 + art_sys_44: -1.46173145e-21 + art_sys_45: 2.93088928e-22 + art_sys_46: -7.23422781e-22 art_sys_47: -2.77172445e-11 - art_sys_48: 1.54285810e-20 - art_sys_49: -5.44423372e-20 - art_sys_50: 2.02874245e-11 - art_sys_51: 1.34627306e-13 - art_sys_52: 3.07833677e-15 - art_sys_53: -9.86817614e-20 - art_sys_54: -3.33768316e-19 - art_sys_55: 2.31351014e-20 - art_sys_56: 5.95080969e-11 - art_sys_57: 7.39271183e-19 - art_sys_58: -2.52896702e-20 - art_sys_59: -6.43479313e-15 - art_sys_60: 7.77604838e-16 - art_sys_61: 1.43750956e-15 - art_sys_62: -1.50147153e-15 - art_sys_63: 5.29322129e-16 - art_sys_64: 4.82564181e-17 - art_sys_65: 1.41885193e-16 - art_sys_66: -8.84448612e-17 - art_sys_67: 1.15374482e-17 - art_sys_68: 2.28216744e-17 - art_sys_69: 3.69204620e-17 - art_sys_70: 2.48301533e-15 - art_sys_71: 4.35820077e-09 - art_sys_72: -5.46486473e-20 - art_sys_73: 6.43481697e-17 - art_sys_74: -7.75831333e-09 - art_sys_75: 8.91668769e-18 - art_sys_76: -7.13781466e-20 - art_sys_77: -5.64790650e-18 - art_sys_78: -3.28592197e-09 - art_sys_79: 5.23260387e-15 - art_sys_80: 1.58614930e-18 - art_sys_81: -1.59932156e-18 - art_sys_82: -2.04849261e-18 - art_sys_83: 2.75420392e-14 - art_sys_84: 9.41422041e-16 - art_sys_85: -4.46812684e-17 - art_sys_86: 2.37489261e-14 - art_sys_87: -1.58655671e-15 - art_sys_88: 7.36162365e-19 - art_sys_89: -1.59994537e-12 - art_sys_90: -4.16047613e-15 - art_sys_91: 1.08142318e-16 - art_sys_92: -2.47048037e-14 - art_sys_93: 9.99460492e-12 - art_sys_94: 5.52440192e-12 - art_sys_95: -1.07610450e-13 - art_sys_96: -8.07681778e-19 - art_sys_97: -4.44033132e-12 - art_sys_98: 1.62951306e-07 - art_sys_99: 2.43150751e-13 - art_sys_100: -1.62477669e-19 - art_sys_101: -1.30787973e-19 - art_sys_102: 2.74961409e-12 - art_sys_103: -2.58841066e-10 - art_sys_104: 6.08165403e-12 - art_sys_105: 5.40190746e-11 - art_sys_106: -4.65062963e-07 - art_sys_107: -4.49799473e-12 - art_sys_108: 7.22713325e-10 - art_sys_109: 7.18401434e-12 - art_sys_110: 9.98619976e-07 - art_sys_111: -5.35886941e-09 - art_sys_112: 7.99466548e-11 - art_sys_113: -1.01203497e-10 - art_sys_114: -5.98678526e-11 - art_sys_115: 6.86400811e-06 - art_sys_116: 6.31399474e-11 - art_sys_117: 6.96120206e-19 - art_sys_118: 8.40531388e-10 - art_sys_119: 3.73513277e-10 - art_sys_120: 1.82775192e-12 - art_sys_121: 8.42369338e-15 - art_sys_122: 2.89416738e-14 - art_sys_123: 1.25396052e-05 - art_sys_124: -2.36167268e-14 - art_sys_125: -1.70152600e-09 - art_sys_126: -1.50721209e-14 - art_sys_127: 1.72206825e-09 - art_sys_128: 1.91866805e-14 - art_sys_129: 1.28016429e-06 - art_sys_130: 3.15850000e-09 - art_sys_131: 5.41110436e-09 - art_sys_132: 4.62086147e-13 - art_sys_133: 7.56374114e-09 - art_sys_134: -2.64742708e-12 - art_sys_135: 4.83195766e-19 - art_sys_136: 8.01517900e-20 - art_sys_137: -4.57973432e-20 - art_sys_138: -3.48369334e-20 - art_sys_139: -3.19589051e-20 - art_sys_140: 4.20531807e-21 - art_sys_141: 5.38802303e-13 - art_sys_142: 2.89002888e-20 - art_sys_143: 3.22126364e-16 - art_sys_144: 2.95648399e-15 - art_sys_145: 5.57947067e-16 - art_sys_146: 2.54477299e-15 - art_sys_147: -1.06551131e-15 - art_sys_148: 2.11624378e-16 - art_sys_149: 1.36603896e-17 - art_sys_150: 2.60176079e-17 - art_sys_151: -6.18976586e-19 - art_sys_152: 9.77777067e-19 - art_sys_153: -4.02876236e-18 - art_sys_154: -5.42774670e-19 - art_sys_155: 1.62102183e-18 - art_sys_156: -1.60758819e-18 - art_sys_157: -4.47484473e-19 - art_sys_158: -1.81483998e-19 - art_sys_159: 4.37178518e-20 - art_sys_160: 1.17863782e-20 - art_sys_161: 1.54196336e-22 - art_sys_162: -3.28413464e-22 - art_sys_163: 1.71872810e-21 - art_sys_164: -9.82200833e-21 - art_sys_165: 6.80528050e-22 - art_sys_166: 6.28429857e-23 - art_sys_167: -5.64122928e-22 - art_sys_168: -2.34856145e-11 - art_sys_169: 3.25456188e-23 - art_sys_170: -4.21089427e-14 - art_sys_171: 4.00727007e-11 - art_sys_172: 2.40208317e-22 - art_sys_173: -5.57250111e-24 - art_sys_174: -3.41155604e-12 - art_sys_175: 0.0 - art_sys_176: -4.66201274e-14 - art_sys_177: 0.0 - art_sys_178: 5.42422989e-16 - art_sys_179: 9.04724134e-18 - art_sys_180: 3.25849716e-21 - art_sys_181: -2.07286288e-26 - art_sys_182: 0.0 - art_sys_183: 1.39705200e-25 - art_sys_184: -8.07130141e-27 - art_sys_185: 5.35273210e-28 + art_sys_48: -3.76296371e-19 + art_sys_49: -2.71511603e-14 + art_sys_50: 1.20291519e-14 + art_sys_51: 1.90682148e-15 + art_sys_52: -5.84586969e-14 + art_sys_53: -1.21779239e-14 + art_sys_54: -2.62939219e-15 + art_sys_55: -6.71661876e-21 + art_sys_56: -1.75766892e-21 + art_sys_57: 2.02874245e-11 + art_sys_58: -1.96253995e-14 + art_sys_59: -6.59584293e-14 + art_sys_60: -4.67127870e-18 + art_sys_61: -1.54975257e-21 + art_sys_62: -5.95080999e-11 + art_sys_63: -2.52309200e-19 + art_sys_64: -6.85899067e-18 + art_sys_65: 1.14785273e-14 + art_sys_66: -1.72223786e-14 + art_sys_67: 4.77069693e-21 + art_sys_68: -1.79359382e-17 + art_sys_69: 6.73133559e-18 + art_sys_70: 2.54879861e-16 + art_sys_71: 4.35821686e-09 + art_sys_72: -2.50472753e-16 + art_sys_73: -8.91312310e-14 + art_sys_74: 3.46505882e-16 + art_sys_75: -1.09965974e-14 + art_sys_76: -2.61111463e-14 + art_sys_77: -7.75831548e-09 + art_sys_78: 3.11143280e-18 + art_sys_79: -6.89645543e-16 + art_sys_80: 1.26945609e-14 + art_sys_81: -1.71389196e-15 + art_sys_82: -1.03256385e-15 + art_sys_83: 2.18303911e-14 + art_sys_84: -4.41204850e-16 + art_sys_85: -5.70071682e-16 + art_sys_86: -6.97021429e-13 + art_sys_87: 3.28592352e-09 + art_sys_88: -4.06805934e-13 + art_sys_89: -2.25190089e-14 + art_sys_90: -1.58020781e-15 + art_sys_91: -6.09458501e-15 + art_sys_92: -4.81074281e-15 + art_sys_93: 1.96607606e-16 + art_sys_94: -1.77038602e-16 + art_sys_95: 9.16100546e-14 + art_sys_96: 2.57223251e-12 + art_sys_97: 2.00853881e-11 + art_sys_98: 1.70756737e-15 + art_sys_99: -1.00075116e-17 + art_sys_100: 1.27918556e-14 + art_sys_101: -3.31760825e-15 + art_sys_102: -5.89515784e-15 + art_sys_103: 1.63486530e-13 + art_sys_104: 1.34994990e-19 + art_sys_105: 1.01692449e-13 + art_sys_106: -1.62956225e-07 + art_sys_107: 2.77922536e-10 + art_sys_108: -1.80632884e-11 + art_sys_109: -1.96723993e-10 + art_sys_110: -1.86456406e-12 + art_sys_111: 3.33689146e-12 + art_sys_112: 4.53921920e-10 + art_sys_113: -1.11829033e-11 + art_sys_114: -2.08745904e-12 + art_sys_115: -4.06412186e-10 + art_sys_116: 4.65025002e-07 + art_sys_117: -1.36831078e-12 + art_sys_118: 2.32510141e-09 + art_sys_119: 3.01621669e-12 + art_sys_120: -9.99139501e-07 + art_sys_121: 6.15917539e-09 + art_sys_122: -9.59148690e-11 + art_sys_123: -9.19431375e-10 + art_sys_124: -8.88275347e-09 + art_sys_125: -6.86722883e-06 + art_sys_126: 2.70121865e-08 + art_sys_127: -4.54900485e-09 + art_sys_128: 5.79983635e-08 + art_sys_129: -2.16134227e-09 + art_sys_130: 1.57019039e-07 + art_sys_131: -1.25499992e-05 + art_sys_132: 6.88973722e-09 + art_sys_133: 2.65569015e-07 + art_sys_134: 3.15558970e-10 + art_sys_135: 2.68995944e-09 + art_sys_136: 3.63598266e-08 + art_sys_137: -6.16904303e-11 + art_sys_138: -8.09020749e-17 + art_sys_139: 1.36617485e-08 + art_sys_140: 3.75766242e-08 + art_sys_141: 1.28910807e-06 + art_sys_142: -2.04916167e-08 + art_sys_143: 1.42490418e-11 + art_sys_144: 1.48754202e-11 + art_sys_145: -3.58758997e-10 + art_sys_146: 0.0 + art_sys_147: 2.37053560e-09 + art_sys_148: -3.82641924e-10 + art_sys_149: -3.82641924e-10 + art_sys_150: -1.18628823e-08 + art_sys_151: -1.18628823e-08 + art_sys_152: 1.35101107e-09 + art_sys_153: 2.00125412e-09 + art_sys_154: -2.05351825e-12 + art_sys_155: 1.89260012e-21 + art_sys_156: -2.26707774e-25 + art_sys_157: -1.33285354e-25 + art_sys_158: -0.0 + art_sys_159: 1.29951885e-09 + art_sys_160: -3.69522460e-10 + art_sys_161: -1.25813750e-09 + art_sys_162: -3.50059275e-11 + art_sys_163: -1.10581820e-08 + art_sys_164: -1.70822622e-09 + art_sys_165: -1.08443493e-11 + art_sys_166: 1.05860561e-17 + art_sys_167: 1.04291594e-17 + art_sys_168: -3.69065483e-18 + art_sys_169: 1.62561995e-21 + art_sys_170: -1.92988864e-19 + art_sys_171: 1.40223413e-19 + art_sys_172: 1.00301090e-19 + art_sys_173: -2.30151856e-20 + art_sys_174: -1.19649150e-20 + art_sys_175: 1.19061961e-22 + art_sys_176: -6.95704098e-22 + art_sys_177: 3.72031029e-21 + art_sys_178: -1.02439267e-21 + art_sys_179: 6.24590780e-22 + art_sys_180: -8.20263343e-22 + art_sys_181: -3.56233492e-24 + art_sys_182: 4.52810190e-22 + art_sys_183: 5.55280235e-24 + art_sys_184: -7.12994958e-26 + art_sys_185: -2.35404409e-26 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -62222,191 +62222,191 @@ bins: RelativeStatFSR-: -1.12459157e-06 luminosity_uncertainty: 4.72687800e-06 uncorrelated_uncertainty: 1.81803000e-06 -- art_sys_1: -9.07275061e-37 - art_sys_2: -2.42608020e-22 - art_sys_3: -9.87613080e-36 - art_sys_4: 4.03958920e-35 +- art_sys_1: 3.49440326e-37 + art_sys_2: 1.01612179e-35 + art_sys_3: -2.42608020e-22 + art_sys_4: 4.30428040e-35 art_sys_5: 7.34591117e-21 - art_sys_6: -5.87032282e-36 - art_sys_7: -1.93034314e-34 - art_sys_8: -3.53824006e-20 - art_sys_9: -1.24622142e-33 - art_sys_10: 5.30603251e-34 - art_sys_11: -3.14896385e-21 - art_sys_12: 1.00197114e-32 - art_sys_13: -2.73992831e-31 - art_sys_14: -1.55261009e-31 - art_sys_15: -7.38817870e-18 - art_sys_16: 1.24680831e-31 - art_sys_17: 4.78131288e-31 - art_sys_18: -5.81884913e-17 - art_sys_19: 1.84271500e-30 - art_sys_20: 5.45417118e-30 - art_sys_21: 2.12399490e-16 - art_sys_22: 5.47306014e-30 - art_sys_23: 1.71491168e-29 + art_sys_6: 3.97206070e-35 + art_sys_7: 1.14226953e-34 + art_sys_8: 3.53824006e-20 + art_sys_9: 2.31512749e-35 + art_sys_10: 5.95467883e-35 + art_sys_11: 3.14896385e-21 + art_sys_12: -1.01076695e-32 + art_sys_13: 2.32459058e-31 + art_sys_14: 6.07678731e-33 + art_sys_15: 7.38817870e-18 + art_sys_16: 2.82902729e-31 + art_sys_17: 5.96791034e-31 + art_sys_18: 5.81884913e-17 + art_sys_19: 2.44426088e-30 + art_sys_20: 4.85176914e-30 + art_sys_21: -2.12399490e-16 + art_sys_22: 8.00288291e-31 + art_sys_23: -1.27290120e-29 art_sys_24: 3.53426680e-16 - art_sys_25: 2.11880655e-19 - art_sys_26: -1.12654678e-20 - art_sys_27: 1.61771671e-20 - art_sys_28: -5.47352987e-21 - art_sys_29: 2.56988301e-21 - art_sys_30: -7.43298437e-30 - art_sys_31: -1.95225884e-29 - art_sys_32: -7.78245904e-22 - art_sys_33: 1.55746908e-22 - art_sys_34: -9.70077695e-15 - art_sys_35: 1.42740332e-25 - art_sys_36: -1.49974835e-14 - art_sys_37: -2.23783974e-25 - art_sys_38: 6.20046994e-23 - art_sys_39: -4.59492616e-24 - art_sys_40: -4.60748693e-14 - art_sys_41: 1.19365919e-24 - art_sys_42: 1.84540028e-26 - art_sys_43: 7.23499153e-24 - art_sys_44: 8.33610563e-23 - art_sys_45: -2.00256838e-22 - art_sys_46: 1.64044701e-22 + art_sys_25: 4.76712112e-22 + art_sys_26: -1.70846931e-20 + art_sys_27: -4.74257720e-21 + art_sys_28: 2.47553081e-29 + art_sys_29: 2.91923712e-26 + art_sys_30: -8.54199605e-22 + art_sys_31: 1.81755618e-22 + art_sys_32: 1.47935994e-21 + art_sys_33: 2.37861483e-22 + art_sys_34: 9.70077695e-15 + art_sys_35: 1.44949170e-25 + art_sys_36: 1.49974835e-14 + art_sys_37: 1.39808553e-24 + art_sys_38: -7.01669921e-22 + art_sys_39: -1.86487136e-22 + art_sys_40: 4.60748692e-14 + art_sys_41: -3.91152909e-23 + art_sys_42: -1.76164491e-26 + art_sys_43: 1.93236403e-22 + art_sys_44: -9.63207761e-22 + art_sys_45: 1.21161638e-21 + art_sys_46: 6.16448496e-23 art_sys_47: 2.24998432e-12 - art_sys_48: 1.14182044e-21 - art_sys_49: -1.49916952e-22 - art_sys_50: 1.02346331e-12 - art_sys_51: -7.55215645e-14 - art_sys_52: -5.46762899e-15 - art_sys_53: 1.31345815e-21 - art_sys_54: 1.13759568e-19 - art_sys_55: -1.99402810e-21 - art_sys_56: -2.06222110e-11 - art_sys_57: -5.56239308e-19 - art_sys_58: -1.17516444e-21 - art_sys_59: 5.76929906e-15 - art_sys_60: -8.71325634e-16 - art_sys_61: -6.74284143e-16 - art_sys_62: 4.19909440e-16 - art_sys_63: -3.61599957e-16 - art_sys_64: 4.48530259e-18 - art_sys_65: -8.68256494e-17 - art_sys_66: 2.32244090e-17 - art_sys_67: 1.12048498e-17 - art_sys_68: -8.06183414e-18 - art_sys_69: -1.29396702e-17 - art_sys_70: 4.42130804e-17 - art_sys_71: -4.83187742e-11 - art_sys_72: 2.86534882e-21 - art_sys_73: -7.21827380e-19 - art_sys_74: -7.11572365e-10 - art_sys_75: 7.28504323e-19 - art_sys_76: 3.06006965e-18 - art_sys_77: 4.06155286e-18 - art_sys_78: 1.13710492e-09 - art_sys_79: -1.99665493e-15 - art_sys_80: -1.02513203e-18 - art_sys_81: 3.13984406e-19 - art_sys_82: 1.31542582e-18 - art_sys_83: 2.02315595e-15 - art_sys_84: -1.80177436e-16 - art_sys_85: 1.50661538e-17 - art_sys_86: 2.10916901e-15 - art_sys_87: 6.44736038e-16 - art_sys_88: -3.95349758e-19 - art_sys_89: -1.07759836e-13 - art_sys_90: -9.48840902e-18 - art_sys_91: -3.74303536e-17 - art_sys_92: -1.19750067e-15 - art_sys_93: -2.31870163e-12 - art_sys_94: -1.39105757e-12 - art_sys_95: -3.70294314e-15 - art_sys_96: 1.69516183e-19 - art_sys_97: -2.20842845e-13 - art_sys_98: 8.63708588e-09 - art_sys_99: 1.18841776e-13 - art_sys_100: 2.00457478e-20 - art_sys_101: 1.55980220e-19 - art_sys_102: 6.99537887e-14 - art_sys_103: 1.12234597e-10 - art_sys_104: -8.57735965e-13 - art_sys_105: -2.38298066e-11 - art_sys_106: 1.24095689e-07 - art_sys_107: 1.37936279e-12 - art_sys_108: -3.24221025e-10 - art_sys_109: 4.39226800e-12 - art_sys_110: 1.00507694e-07 - art_sys_111: 2.44535404e-09 - art_sys_112: 1.16880389e-11 - art_sys_113: -3.90331053e-11 - art_sys_114: 4.32839481e-11 - art_sys_115: -2.81758599e-06 - art_sys_116: 1.86709296e-10 - art_sys_117: -1.22740917e-18 - art_sys_118: -1.48315245e-10 - art_sys_119: -1.77355479e-10 - art_sys_120: -8.65807476e-13 - art_sys_121: -3.66454725e-15 - art_sys_122: -1.36339766e-14 - art_sys_123: -5.67025517e-06 - art_sys_124: 1.03625318e-14 - art_sys_125: 7.04842709e-10 - art_sys_126: 5.22869333e-15 - art_sys_127: -5.00758619e-10 - art_sys_128: 9.49762074e-15 - art_sys_129: 2.54326981e-06 - art_sys_130: -4.02895387e-08 - art_sys_131: -6.82999779e-08 - art_sys_132: -2.48073756e-12 - art_sys_133: -9.20214861e-08 - art_sys_134: 3.73526499e-11 - art_sys_135: -1.52255175e-19 - art_sys_136: -4.62867885e-20 - art_sys_137: -2.08210318e-20 - art_sys_138: -1.79207108e-20 - art_sys_139: -4.97619218e-20 - art_sys_140: -5.10506936e-20 - art_sys_141: -6.36956931e-12 - art_sys_142: -3.25501405e-19 - art_sys_143: -3.81109938e-15 - art_sys_144: 6.66926211e-16 - art_sys_145: 2.55148435e-15 - art_sys_146: 5.63341415e-15 - art_sys_147: -2.76827531e-15 - art_sys_148: 8.00240509e-16 - art_sys_149: -3.08603903e-17 - art_sys_150: -1.91906654e-19 - art_sys_151: -5.53180650e-17 - art_sys_152: 1.13386212e-17 - art_sys_153: 2.25181007e-19 - art_sys_154: 4.58751323e-18 - art_sys_155: 3.12586237e-18 - art_sys_156: -6.30839252e-18 - art_sys_157: 8.42669816e-20 - art_sys_158: -1.01432591e-19 - art_sys_159: 3.84478616e-20 - art_sys_160: 2.91629137e-20 - art_sys_161: 4.86353873e-21 - art_sys_162: 1.65895401e-22 - art_sys_163: 5.22386837e-21 - art_sys_164: -1.96851874e-20 - art_sys_165: 1.24220459e-21 - art_sys_166: -1.80051454e-23 - art_sys_167: -1.55983504e-21 - art_sys_168: 2.96504938e-10 - art_sys_169: 3.44862683e-23 - art_sys_170: 9.15961883e-12 - art_sys_171: -2.85909492e-10 - art_sys_172: 2.24181929e-22 - art_sys_173: 3.01694624e-23 - art_sys_174: 2.46423486e-11 - art_sys_175: 0.0 - art_sys_176: 3.37601440e-13 - art_sys_177: 0.0 - art_sys_178: -3.98582597e-15 - art_sys_179: -1.09548798e-16 - art_sys_180: -1.63272027e-20 - art_sys_181: 1.24713519e-25 - art_sys_182: 0.0 - art_sys_183: -9.96166749e-25 - art_sys_184: 6.10707061e-26 - art_sys_185: -6.17806785e-27 + art_sys_48: -1.94678220e-20 + art_sys_49: -4.56867149e-15 + art_sys_50: -3.42396274e-15 + art_sys_51: 2.22383563e-14 + art_sys_52: -6.50764750e-14 + art_sys_53: -3.07171258e-14 + art_sys_54: -2.51281298e-14 + art_sys_55: 2.56995137e-22 + art_sys_56: 1.34074344e-21 + art_sys_57: 1.02346331e-12 + art_sys_58: -7.14739987e-14 + art_sys_59: -2.04757471e-13 + art_sys_60: 1.61957759e-18 + art_sys_61: -1.07641792e-22 + art_sys_62: 2.06222105e-11 + art_sys_63: 1.25181254e-21 + art_sys_64: 2.50690983e-18 + art_sys_65: 3.31319948e-14 + art_sys_66: -4.91205396e-14 + art_sys_67: 3.96195531e-22 + art_sys_68: 5.28487411e-18 + art_sys_69: -1.94672049e-18 + art_sys_70: 2.07003081e-17 + art_sys_71: -4.83171690e-11 + art_sys_72: -2.38695424e-17 + art_sys_73: 3.78768291e-15 + art_sys_74: -1.90236688e-14 + art_sys_75: 1.80483911e-14 + art_sys_76: -7.32428160e-14 + art_sys_77: -7.11572074e-10 + art_sys_78: 2.85602664e-19 + art_sys_79: 4.14420805e-15 + art_sys_80: 3.47791473e-14 + art_sys_81: 2.44250113e-15 + art_sys_82: -9.06902517e-16 + art_sys_83: 3.67027654e-14 + art_sys_84: -4.41887506e-16 + art_sys_85: 1.17281562e-16 + art_sys_86: 1.20799888e-13 + art_sys_87: -1.13710542e-09 + art_sys_88: -7.82888313e-15 + art_sys_89: 2.94391774e-15 + art_sys_90: 5.20748141e-16 + art_sys_91: -3.36037737e-16 + art_sys_92: 1.65449488e-15 + art_sys_93: -6.80335777e-17 + art_sys_94: -1.07433893e-16 + art_sys_95: 4.70372816e-15 + art_sys_96: -9.46887160e-13 + art_sys_97: 1.05576343e-12 + art_sys_98: 2.21415984e-17 + art_sys_99: 3.46100362e-18 + art_sys_100: -3.55646150e-15 + art_sys_101: -1.50860069e-16 + art_sys_102: -1.65326417e-16 + art_sys_103: -2.38671901e-14 + art_sys_104: 1.44367768e-20 + art_sys_105: 4.94185917e-15 + art_sys_106: -8.63731053e-09 + art_sys_107: -1.26381807e-10 + art_sys_108: 4.77032860e-12 + art_sys_109: -2.75016277e-10 + art_sys_110: 2.47492448e-11 + art_sys_111: 1.74267206e-13 + art_sys_112: -2.08466042e-10 + art_sys_113: -2.57350576e-11 + art_sys_114: -7.04905657e-14 + art_sys_115: 1.67211980e-10 + art_sys_116: -1.24106290e-07 + art_sys_117: -7.61383158e-13 + art_sys_118: -9.52817942e-10 + art_sys_119: -1.68315229e-12 + art_sys_120: -1.00549762e-07 + art_sys_121: -2.01800509e-08 + art_sys_122: 1.61259984e-11 + art_sys_123: 2.94235943e-10 + art_sys_124: 7.97432649e-09 + art_sys_125: 2.81896734e-06 + art_sys_126: -1.23834927e-08 + art_sys_127: 1.85000433e-09 + art_sys_128: -1.04870218e-08 + art_sys_129: 9.35956216e-10 + art_sys_130: -3.93026290e-08 + art_sys_131: 5.66466400e-06 + art_sys_132: -2.51790306e-09 + art_sys_133: -8.65764153e-08 + art_sys_134: -2.26755278e-09 + art_sys_135: 4.22002897e-10 + art_sys_136: 1.45675244e-08 + art_sys_137: 8.91676405e-10 + art_sys_138: -1.81986915e-16 + art_sys_139: 2.83757753e-08 + art_sys_140: 6.56368774e-08 + art_sys_141: 2.67454172e-06 + art_sys_142: -8.57727799e-08 + art_sys_143: -2.90271256e-10 + art_sys_144: 2.02665154e-10 + art_sys_145: 9.19723656e-10 + art_sys_146: 0.0 + art_sys_147: -1.06354020e-08 + art_sys_148: 7.13854827e-08 + art_sys_149: 7.13854827e-08 + art_sys_150: 1.36983118e-08 + art_sys_151: 1.36983118e-08 + art_sys_152: -2.53801532e-08 + art_sys_153: 3.10874857e-11 + art_sys_154: 1.10852180e-11 + art_sys_155: 6.52037155e-21 + art_sys_156: 7.67172558e-24 + art_sys_157: 1.74145512e-24 + art_sys_158: 0.0 + art_sys_159: 2.87884905e-09 + art_sys_160: -8.18743871e-10 + art_sys_161: -2.65829741e-09 + art_sys_162: -7.06118969e-11 + art_sys_163: -1.81874445e-08 + art_sys_164: -3.41530855e-09 + art_sys_165: -2.75086851e-11 + art_sys_166: 1.91735286e-17 + art_sys_167: 2.24475961e-17 + art_sys_168: -8.25709393e-18 + art_sys_169: -2.61333453e-18 + art_sys_170: 1.43231240e-18 + art_sys_171: -1.00317512e-18 + art_sys_172: -5.73999679e-20 + art_sys_173: 1.49022846e-19 + art_sys_174: 2.17918689e-19 + art_sys_175: -3.47013244e-22 + art_sys_176: -1.58538799e-20 + art_sys_177: -1.99683765e-20 + art_sys_178: 1.22838848e-20 + art_sys_179: -6.84185175e-21 + art_sys_180: 9.74264775e-21 + art_sys_181: -2.33068433e-24 + art_sys_182: 1.13287682e-21 + art_sys_183: 4.44267028e-24 + art_sys_184: 5.59914512e-25 + art_sys_185: 3.20779502e-25 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -62513,191 +62513,191 @@ bins: RelativeStatFSR-: -2.81296519e-07 luminosity_uncertainty: 1.11805720e-06 uncorrelated_uncertainty: 4.30022000e-07 -- art_sys_1: -5.80061609e-40 - art_sys_2: -7.36016630e-26 - art_sys_3: -1.33500716e-38 - art_sys_4: 2.23494375e-37 +- art_sys_1: 2.46842556e-40 + art_sys_2: 1.35889178e-38 + art_sys_3: -7.36016630e-26 + art_sys_4: 6.49924468e-38 art_sys_5: 9.63938744e-24 - art_sys_6: -8.29580587e-39 - art_sys_7: -4.40651586e-37 - art_sys_8: -4.98073687e-23 - art_sys_9: -1.89236337e-36 - art_sys_10: 4.23729081e-37 - art_sys_11: -3.78273898e-23 - art_sys_12: 2.49360111e-35 - art_sys_13: -5.60049435e-34 - art_sys_14: -2.77604682e-34 - art_sys_15: -1.36043129e-20 - art_sys_16: 2.71466992e-34 - art_sys_17: 1.01698126e-33 - art_sys_18: -6.72360147e-20 - art_sys_19: 1.89502794e-33 - art_sys_20: 9.12971560e-33 - art_sys_21: 3.22912371e-19 - art_sys_22: 8.92421783e-33 - art_sys_23: 3.50256711e-32 + art_sys_6: 5.62417431e-38 + art_sys_7: 2.09485743e-37 + art_sys_8: 4.98073687e-23 + art_sys_9: 6.56483324e-38 + art_sys_10: 3.61697082e-37 + art_sys_11: 3.78273898e-23 + art_sys_12: -2.52621388e-35 + art_sys_13: 4.46951324e-34 + art_sys_14: -5.27516534e-35 + art_sys_15: 1.36043129e-20 + art_sys_16: 4.24194854e-34 + art_sys_17: 8.74467145e-34 + art_sys_18: 6.72360147e-20 + art_sys_19: 2.71862364e-33 + art_sys_20: 8.28349943e-33 + art_sys_21: -3.22912371e-19 + art_sys_22: 1.14802734e-33 + art_sys_23: -3.40194425e-32 art_sys_24: 5.82107845e-19 - art_sys_25: 6.45084371e-21 - art_sys_26: 8.05200429e-21 - art_sys_27: 4.25592797e-21 - art_sys_28: -5.72899851e-23 - art_sys_29: -1.00401897e-22 - art_sys_30: 5.73699150e-32 - art_sys_31: -2.38433183e-32 - art_sys_32: 4.09058844e-22 - art_sys_33: 6.71141727e-23 - art_sys_34: -3.66490772e-17 - art_sys_35: 1.91977241e-27 - art_sys_36: -1.71862683e-16 - art_sys_37: -2.55819350e-27 - art_sys_38: 6.66284140e-23 - art_sys_39: -7.59816283e-27 - art_sys_40: -6.45815013e-17 - art_sys_41: 1.65999020e-27 - art_sys_42: 6.89838929e-29 - art_sys_43: -1.47629616e-22 - art_sys_44: -2.44306815e-22 - art_sys_45: 1.86298984e-22 - art_sys_46: 6.94585201e-25 - art_sys_47: 9.48425737e-15 - art_sys_48: 5.70677976e-24 - art_sys_49: 1.54285703e-23 - art_sys_50: 5.30832820e-15 - art_sys_51: -1.34437810e-14 - art_sys_52: 1.28752311e-15 - art_sys_53: 4.90670510e-22 - art_sys_54: 5.82395499e-22 - art_sys_55: -8.58654347e-24 - art_sys_56: -1.05610529e-13 - art_sys_57: -2.80730813e-21 - art_sys_58: -5.95915660e-24 - art_sys_59: 2.99033301e-15 - art_sys_60: 1.11335360e-15 - art_sys_61: -1.21621304e-16 - art_sys_62: 1.11618170e-16 - art_sys_63: -1.30713917e-16 - art_sys_64: 3.95310256e-20 - art_sys_65: 3.43312790e-18 - art_sys_66: 1.33679800e-17 - art_sys_67: 2.67996688e-18 - art_sys_68: -1.44087479e-19 - art_sys_69: -2.33365583e-19 - art_sys_70: 3.65156987e-19 - art_sys_71: -6.48103353e-13 - art_sys_72: -4.01655830e-21 - art_sys_73: -9.64911164e-21 - art_sys_74: -6.41995263e-12 - art_sys_75: -2.20598579e-19 - art_sys_76: -7.72555597e-19 - art_sys_77: 1.47300584e-19 - art_sys_78: 2.04030423e-11 - art_sys_79: -3.53851594e-17 - art_sys_80: 1.76426064e-19 - art_sys_81: 1.01102718e-20 - art_sys_82: 2.66172320e-19 - art_sys_83: 5.60949544e-16 - art_sys_84: -5.04994094e-18 - art_sys_85: 2.71141471e-19 - art_sys_86: 5.86763547e-16 - art_sys_87: 7.84744821e-18 - art_sys_88: -3.48211884e-20 - art_sys_89: -2.98241494e-14 - art_sys_90: 2.19915037e-17 - art_sys_91: -6.71628318e-19 - art_sys_92: 2.03423476e-16 - art_sys_93: -6.60524841e-13 - art_sys_94: -3.84489318e-13 - art_sys_95: -5.51218048e-16 - art_sys_96: 1.76715559e-21 - art_sys_97: -6.36995637e-14 - art_sys_98: 2.37701667e-09 - art_sys_99: 3.35966280e-14 - art_sys_100: -9.86706911e-20 - art_sys_101: 9.96700163e-20 - art_sys_102: 1.84296778e-14 - art_sys_103: 3.74207453e-11 - art_sys_104: -2.43605940e-13 - art_sys_105: -8.59424464e-12 - art_sys_106: 3.52705443e-08 - art_sys_107: 3.89370378e-13 - art_sys_108: -1.19294296e-10 - art_sys_109: 1.16964581e-12 - art_sys_110: 2.45006539e-08 - art_sys_111: 7.40799324e-10 - art_sys_112: 3.12826819e-12 - art_sys_113: -1.16210183e-11 - art_sys_114: 1.45382816e-11 - art_sys_115: -9.44705151e-07 - art_sys_116: 6.32718774e-11 - art_sys_117: 1.59835653e-18 - art_sys_118: -6.00272110e-11 - art_sys_119: -1.17277717e-10 - art_sys_120: -5.63145059e-13 - art_sys_121: -1.58737465e-15 - art_sys_122: -5.94178043e-15 - art_sys_123: -2.08346837e-06 - art_sys_124: 2.33345232e-15 - art_sys_125: 2.28459982e-10 - art_sys_126: -1.61333068e-15 - art_sys_127: 8.29018933e-11 - art_sys_128: 3.33059726e-14 - art_sys_129: 7.52631376e-07 - art_sys_130: 7.99775603e-08 - art_sys_131: 1.46963851e-07 - art_sys_132: 4.98092823e-10 - art_sys_133: 2.65387988e-07 - art_sys_134: 7.43432416e-11 - art_sys_135: -4.97036566e-20 - art_sys_136: -2.24722540e-20 - art_sys_137: -1.62017087e-20 - art_sys_138: -2.24967015e-20 - art_sys_139: -2.17996347e-20 - art_sys_140: 8.83828030e-21 - art_sys_141: -1.34494731e-11 - art_sys_142: -6.11589696e-19 - art_sys_143: -8.04882742e-15 - art_sys_144: 8.90441025e-15 - art_sys_145: -1.34752426e-14 - art_sys_146: 7.23149704e-16 - art_sys_147: 2.00051135e-15 - art_sys_148: -1.65883352e-15 - art_sys_149: 6.81293175e-16 - art_sys_150: -5.10776636e-16 - art_sys_151: 9.99022211e-16 - art_sys_152: -1.29186511e-16 - art_sys_153: -8.12694642e-17 - art_sys_154: -1.10189004e-16 - art_sys_155: 2.59796835e-17 - art_sys_156: 1.92584292e-17 - art_sys_157: -1.27629497e-17 - art_sys_158: -3.19582652e-18 - art_sys_159: 1.14660412e-18 - art_sys_160: 1.01099292e-18 - art_sys_161: -4.14165161e-19 - art_sys_162: -3.64036808e-20 - art_sys_163: -1.13616317e-19 - art_sys_164: -2.81360889e-20 - art_sys_165: -1.06099889e-20 - art_sys_166: -3.88358107e-22 - art_sys_167: -3.80881122e-21 - art_sys_168: 7.47916354e-10 - art_sys_169: -4.47832705e-21 - art_sys_170: 1.31406792e-09 - art_sys_171: 3.23170797e-08 - art_sys_172: -2.89864096e-22 - art_sys_173: -2.25782669e-21 - art_sys_174: -2.70588889e-09 - art_sys_175: 0.0 - art_sys_176: -3.68403897e-11 - art_sys_177: 0.0 - art_sys_178: 4.19817780e-13 - art_sys_179: 3.84845672e-16 - art_sys_180: 3.62717268e-18 - art_sys_181: -2.02629410e-23 - art_sys_182: 0.0 - art_sys_183: 1.10245519e-22 - art_sys_184: -3.83939748e-24 - art_sys_185: 6.58671175e-26 + art_sys_25: 9.16462582e-23 + art_sys_26: 1.20109734e-21 + art_sys_27: 4.24382855e-22 + art_sys_28: 6.30340496e-32 + art_sys_29: 1.10236597e-28 + art_sys_30: 2.04768880e-22 + art_sys_31: 1.32882563e-23 + art_sys_32: 3.23504403e-23 + art_sys_33: -5.12029151e-24 + art_sys_34: 3.66490772e-17 + art_sys_35: 1.63133432e-27 + art_sys_36: 1.71862683e-16 + art_sys_37: 1.60047587e-26 + art_sys_38: -4.22449796e-23 + art_sys_39: -2.62083702e-25 + art_sys_40: 6.45815012e-17 + art_sys_41: -5.48165728e-26 + art_sys_42: -6.76682996e-29 + art_sys_43: 9.25210560e-24 + art_sys_44: 1.31027775e-23 + art_sys_45: 9.53243493e-24 + art_sys_46: 2.61876685e-25 + art_sys_47: 9.48425736e-15 + art_sys_48: -1.00682245e-22 + art_sys_49: 6.19507040e-15 + art_sys_50: -2.80607149e-15 + art_sys_51: -1.16812564e-14 + art_sys_52: -2.20860130e-14 + art_sys_53: 4.97783894e-14 + art_sys_54: 2.63189954e-14 + art_sys_55: 1.33254786e-24 + art_sys_56: 3.68265845e-24 + art_sys_57: 5.30832820e-15 + art_sys_58: 4.05720812e-14 + art_sys_59: 1.36674499e-13 + art_sys_60: 8.29398567e-21 + art_sys_61: -7.75980273e-25 + art_sys_62: 1.05610526e-13 + art_sys_63: 5.42510083e-23 + art_sys_64: 1.27955919e-20 + art_sys_65: -2.05485346e-14 + art_sys_66: 3.09896143e-14 + art_sys_67: 2.09198415e-24 + art_sys_68: 9.65551875e-20 + art_sys_69: -3.56267209e-20 + art_sys_70: 2.05897722e-19 + art_sys_71: -6.48087636e-13 + art_sys_72: -2.15709781e-19 + art_sys_73: -5.14048568e-14 + art_sys_74: -2.03886889e-14 + art_sys_75: -1.36831739e-14 + art_sys_76: 4.74243371e-14 + art_sys_77: -6.41994734e-12 + art_sys_78: 2.54098240e-21 + art_sys_79: -2.21566525e-15 + art_sys_80: -2.14519015e-14 + art_sys_81: -1.23279786e-15 + art_sys_82: 9.09746861e-16 + art_sys_83: -2.25631482e-14 + art_sys_84: 4.17712156e-16 + art_sys_85: -1.02270285e-16 + art_sys_86: 5.52350404e-14 + art_sys_87: -2.04030515e-11 + art_sys_88: 1.13568215e-14 + art_sys_89: 1.47523289e-14 + art_sys_90: 9.40414562e-18 + art_sys_91: -9.26968813e-17 + art_sys_92: 2.95736543e-17 + art_sys_93: -1.22061753e-18 + art_sys_94: -1.21389084e-18 + art_sys_95: 1.28749443e-15 + art_sys_96: -2.88816367e-13 + art_sys_97: 2.90845435e-13 + art_sys_98: -4.20468361e-18 + art_sys_99: 6.22389914e-20 + art_sys_100: -1.13106292e-15 + art_sys_101: -3.72681864e-17 + art_sys_102: 4.55381834e-17 + art_sys_103: -1.15451654e-14 + art_sys_104: 4.00193194e-21 + art_sys_105: 1.39708052e-15 + art_sys_106: -2.37707810e-09 + art_sys_107: -4.61606374e-11 + art_sys_108: 3.26701944e-12 + art_sys_109: 6.12150362e-11 + art_sys_110: 1.00335943e-11 + art_sys_111: 4.80153845e-14 + art_sys_112: -6.86064074e-11 + art_sys_113: -2.37295701e-12 + art_sys_114: -2.03013212e-14 + art_sys_115: 5.59755724e-11 + art_sys_116: -3.52751609e-08 + art_sys_117: -2.16799533e-13 + art_sys_118: -3.28660358e-10 + art_sys_119: -5.15611954e-13 + art_sys_120: -2.45109793e-08 + art_sys_121: 2.32717398e-09 + art_sys_122: 5.93487521e-12 + art_sys_123: 1.07982156e-10 + art_sys_124: -3.80956890e-10 + art_sys_125: 9.45192748e-07 + art_sys_126: -2.25570784e-09 + art_sys_127: 6.20175650e-10 + art_sys_128: -9.38311840e-09 + art_sys_129: 3.67413312e-10 + art_sys_130: -2.19642797e-08 + art_sys_131: 2.08691065e-06 + art_sys_132: -1.17120452e-09 + art_sys_133: -4.33739659e-08 + art_sys_134: 8.16675585e-09 + art_sys_135: -5.84652157e-10 + art_sys_136: 2.37401478e-08 + art_sys_137: -3.28644290e-09 + art_sys_138: -4.40174443e-17 + art_sys_139: 8.79886552e-10 + art_sys_140: 5.38019160e-09 + art_sys_141: 6.51489043e-07 + art_sys_142: 1.09106832e-07 + art_sys_143: 1.02889969e-09 + art_sys_144: -5.38944999e-10 + art_sys_145: -5.37556471e-09 + art_sys_146: -0.0 + art_sys_147: 2.38311376e-08 + art_sys_148: -2.85990769e-10 + art_sys_149: -2.85990769e-10 + art_sys_150: -8.46560795e-08 + art_sys_151: -8.46560795e-08 + art_sys_152: 1.31928665e-07 + art_sys_153: 1.28380307e-08 + art_sys_154: -4.30081477e-11 + art_sys_155: -1.39544486e-20 + art_sys_156: -2.43000984e-23 + art_sys_157: -5.68921579e-24 + art_sys_158: -0.0 + art_sys_159: 1.96477737e-10 + art_sys_160: -4.57015462e-11 + art_sys_161: -4.56814420e-10 + art_sys_162: -2.14728848e-11 + art_sys_163: -1.10362916e-08 + art_sys_164: -9.45206810e-10 + art_sys_165: -9.02858070e-11 + art_sys_166: 8.47707369e-18 + art_sys_167: 3.84039757e-18 + art_sys_168: 6.26259864e-18 + art_sys_169: 1.03947865e-17 + art_sys_170: -3.92481420e-18 + art_sys_171: 3.66778168e-18 + art_sys_172: 6.62473298e-19 + art_sys_173: -5.24150817e-19 + art_sys_174: -8.21152391e-19 + art_sys_175: 1.87505692e-21 + art_sys_176: 5.12503786e-20 + art_sys_177: 8.89046774e-20 + art_sys_178: -4.66723843e-20 + art_sys_179: 2.65647409e-20 + art_sys_180: -3.64250624e-20 + art_sys_181: -1.53840072e-23 + art_sys_182: -3.73492377e-22 + art_sys_183: 1.74684228e-23 + art_sys_184: -2.29101859e-24 + art_sys_185: -1.19205413e-24 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -62804,191 +62804,191 @@ bins: RelativeStatFSR-: -4.03061290e-08 luminosity_uncertainty: 1.51584160e-07 uncorrelated_uncertainty: 5.83016000e-08 -- art_sys_1: -9.17798543e-45 - art_sys_2: 3.43944709e-28 - art_sys_3: -3.24597354e-41 - art_sys_4: 1.02216047e-39 +- art_sys_1: 1.45691347e-43 + art_sys_2: 3.30668534e-41 + art_sys_3: 3.43944709e-28 + art_sys_4: 2.16924325e-40 art_sys_5: 2.27055212e-26 - art_sys_6: -1.89755696e-41 - art_sys_7: -1.37376926e-39 - art_sys_8: -1.28291381e-25 - art_sys_9: -4.92460752e-39 - art_sys_10: 4.44671516e-40 - art_sys_11: -1.98909839e-25 - art_sys_12: 9.96577269e-38 - art_sys_13: -2.35693819e-36 - art_sys_14: -1.12652446e-36 - art_sys_15: -5.45226491e-23 - art_sys_16: 8.54479808e-38 - art_sys_17: 3.87777349e-36 - art_sys_18: -2.40515012e-22 - art_sys_19: 6.15129600e-36 - art_sys_20: 3.98002246e-35 - art_sys_21: 1.42905635e-21 - art_sys_22: 4.08339294e-35 - art_sys_23: 1.98522615e-35 + art_sys_6: 1.45052949e-40 + art_sys_7: 5.29935333e-40 + art_sys_8: 1.28291381e-25 + art_sys_9: -2.39727730e-40 + art_sys_10: 8.56032446e-40 + art_sys_11: 1.98909839e-25 + art_sys_12: -6.04660362e-38 + art_sys_13: 1.81883368e-36 + art_sys_14: -8.51471544e-38 + art_sys_15: 5.45226491e-23 + art_sys_16: 1.57484053e-36 + art_sys_17: 3.64266937e-36 + art_sys_18: 2.40515012e-22 + art_sys_19: 9.16375758e-36 + art_sys_20: 3.57307568e-35 + art_sys_21: -1.42905635e-21 + art_sys_22: 5.58671382e-36 + art_sys_23: -1.78797257e-35 art_sys_24: 2.43294543e-21 - art_sys_25: -2.68581313e-21 - art_sys_26: -1.99472456e-21 - art_sys_27: -1.68064883e-21 - art_sys_28: -1.85386180e-22 - art_sys_29: 2.23784711e-23 - art_sys_30: 1.23199324e-33 - art_sys_31: 7.66949122e-34 - art_sys_32: -1.39711936e-22 - art_sys_33: 2.77944455e-24 - art_sys_34: 4.35941181e-20 - art_sys_35: 9.39690413e-29 - art_sys_36: -7.57745340e-18 - art_sys_37: -1.12418915e-28 - art_sys_38: -2.14215518e-23 - art_sys_39: 1.98483195e-27 - art_sys_40: 2.06788408e-17 - art_sys_41: -5.35937792e-28 - art_sys_42: -4.23415046e-30 - art_sys_43: 4.34169872e-23 - art_sys_44: 9.08663609e-24 - art_sys_45: -1.13659836e-22 - art_sys_46: -1.10099239e-26 - art_sys_47: -2.18389628e-16 - art_sys_48: -3.33714727e-24 - art_sys_49: -2.49932481e-22 - art_sys_50: -3.70006331e-15 - art_sys_51: 1.35445062e-14 - art_sys_52: -5.79387091e-15 - art_sys_53: 2.52196898e-22 - art_sys_54: -7.79952983e-23 - art_sys_55: 2.95951879e-25 - art_sys_56: 1.42919046e-14 - art_sys_57: 3.87088476e-22 - art_sys_58: 4.35714776e-24 - art_sys_59: -7.09169977e-15 - art_sys_60: 1.43681600e-15 - art_sys_61: 2.18055173e-16 - art_sys_62: 5.35555673e-17 - art_sys_63: -7.10180671e-17 - art_sys_64: -9.76312544e-21 - art_sys_65: 1.96084873e-17 - art_sys_66: 3.00462078e-18 - art_sys_67: -6.66152810e-18 - art_sys_68: 4.16449450e-20 - art_sys_69: 6.87064969e-20 - art_sys_70: -1.23524012e-19 - art_sys_71: 9.27684974e-14 - art_sys_72: 4.97824649e-21 - art_sys_73: 1.38898048e-21 - art_sys_74: 1.58266668e-12 - art_sys_75: 3.28173773e-18 - art_sys_76: -2.30311774e-18 - art_sys_77: 1.16446778e-18 - art_sys_78: -5.89312832e-12 - art_sys_79: 1.01990259e-17 - art_sys_80: 6.30983344e-19 - art_sys_81: 1.71228863e-19 - art_sys_82: -3.42056558e-19 - art_sys_83: -1.96873554e-16 - art_sys_84: 1.50521981e-18 - art_sys_85: -7.83507897e-20 - art_sys_86: -2.05504673e-16 - art_sys_87: -2.09610156e-18 - art_sys_88: 2.08076797e-19 - art_sys_89: 1.04783436e-14 - art_sys_90: -6.80509790e-18 - art_sys_91: 1.93992127e-19 - art_sys_92: -9.88903503e-17 - art_sys_93: 2.28225386e-13 - art_sys_94: 1.32920587e-13 - art_sys_95: 2.25832623e-16 - art_sys_96: -4.13552876e-22 - art_sys_97: 2.25674513e-14 - art_sys_98: -8.38090348e-10 - art_sys_99: -1.17069204e-14 - art_sys_100: 1.65183074e-19 - art_sys_101: -1.54311797e-19 - art_sys_102: -6.61560585e-15 - art_sys_103: -1.29610161e-11 - art_sys_104: 8.39580760e-14 - art_sys_105: 2.97526804e-12 - art_sys_106: -1.21949574e-08 - art_sys_107: -1.34698466e-13 - art_sys_108: 4.13432961e-11 - art_sys_109: -4.07473403e-13 - art_sys_110: -8.65102219e-09 - art_sys_111: -3.22153530e-11 - art_sys_112: -1.09774360e-12 - art_sys_113: 4.05071408e-12 - art_sys_114: -5.04011118e-12 - art_sys_115: 3.27151677e-07 - art_sys_116: -2.19850623e-11 - art_sys_117: -3.22769622e-18 - art_sys_118: 2.12666393e-11 - art_sys_119: 1.15927058e-10 - art_sys_120: 5.48998230e-13 - art_sys_121: 9.84112460e-16 - art_sys_122: 3.45442020e-15 - art_sys_123: 7.21119685e-07 - art_sys_124: 1.27846978e-15 - art_sys_125: -3.25709329e-11 - art_sys_126: 4.44028912e-15 - art_sys_127: -4.33053823e-10 - art_sys_128: 1.65392471e-13 - art_sys_129: -2.62060908e-07 - art_sys_130: -1.24367469e-07 - art_sys_131: -1.94538939e-07 - art_sys_132: 1.41109859e-09 - art_sys_133: -9.42956974e-08 - art_sys_134: 5.56686968e-10 - art_sys_135: -9.51454236e-20 - art_sys_136: 3.61026041e-20 - art_sys_137: 2.93514509e-20 - art_sys_138: 1.28939936e-20 - art_sys_139: 2.08745224e-20 - art_sys_140: -2.07824347e-20 - art_sys_141: -9.87114658e-11 - art_sys_142: -4.56340370e-18 - art_sys_143: -5.90614366e-14 - art_sys_144: -2.12634857e-14 - art_sys_145: -2.46304862e-14 - art_sys_146: -2.73584660e-15 - art_sys_147: 3.61733516e-15 - art_sys_148: -2.20410694e-15 - art_sys_149: 1.54489660e-15 - art_sys_150: -1.94783706e-15 - art_sys_151: 2.44142923e-15 - art_sys_152: -3.01107037e-16 - art_sys_153: -1.62171209e-16 - art_sys_154: -2.71326615e-16 - art_sys_155: 7.12097886e-17 - art_sys_156: 3.40620862e-17 - art_sys_157: -2.83208215e-17 - art_sys_158: -6.83696482e-18 - art_sys_159: 2.84073277e-18 - art_sys_160: 2.95617811e-18 - art_sys_161: -1.15227500e-18 - art_sys_162: -9.64897094e-20 - art_sys_163: -3.18086190e-19 - art_sys_164: -6.43194188e-20 - art_sys_165: -3.21319428e-20 - art_sys_166: -2.32199957e-21 - art_sys_167: -1.31532967e-20 - art_sys_168: 4.91889767e-09 - art_sys_169: -1.30324876e-20 - art_sys_170: 3.86911430e-09 - art_sys_171: 9.03873718e-08 - art_sys_172: -3.23528418e-21 - art_sys_173: -5.43179623e-21 - art_sys_174: -7.56152504e-09 - art_sys_175: 0.0 - art_sys_176: -1.02929756e-10 - art_sys_177: 0.0 - art_sys_178: 1.17165371e-12 - art_sys_179: 8.60448865e-17 - art_sys_180: 1.02913959e-17 - art_sys_181: -5.71799050e-23 - art_sys_182: 0.0 - art_sys_183: 3.08101897e-22 - art_sys_184: -1.04907243e-23 - art_sys_185: 1.31441897e-25 + art_sys_25: -5.68493570e-24 + art_sys_26: -6.15241052e-22 + art_sys_27: -2.25983088e-22 + art_sys_28: -4.23214532e-34 + art_sys_29: -1.31973977e-31 + art_sys_30: -7.14455683e-23 + art_sys_31: -4.69599445e-24 + art_sys_32: -7.51487384e-24 + art_sys_33: -5.86574023e-24 + art_sys_34: -4.35941181e-20 + art_sys_35: 7.36220628e-29 + art_sys_36: 7.57745340e-18 + art_sys_37: 7.04900567e-28 + art_sys_38: 1.02307256e-23 + art_sys_39: 8.36503518e-26 + art_sys_40: -2.06788407e-17 + art_sys_41: 1.75544100e-26 + art_sys_42: 5.60883712e-30 + art_sys_43: -4.55966577e-24 + art_sys_44: 1.71955591e-24 + art_sys_45: -5.96878805e-24 + art_sys_46: -2.79540908e-27 + art_sys_47: -2.18389621e-16 + art_sys_48: 6.93298930e-23 + art_sys_49: 1.66276819e-15 + art_sys_50: 6.95165053e-15 + art_sys_51: 2.85056246e-14 + art_sys_52: 4.08885192e-14 + art_sys_53: 4.32660404e-14 + art_sys_54: -9.16210014e-15 + art_sys_55: 1.49833360e-25 + art_sys_56: -4.50323160e-24 + art_sys_57: -3.70006331e-15 + art_sys_58: -1.75783842e-15 + art_sys_59: 6.94592922e-14 + art_sys_60: -1.12239407e-21 + art_sys_61: 1.33486187e-25 + art_sys_62: -1.42919042e-14 + art_sys_63: -1.05514510e-23 + art_sys_64: -1.72967208e-21 + art_sys_65: -1.39450705e-14 + art_sys_66: 2.45648565e-14 + art_sys_67: -1.15708291e-24 + art_sys_68: -2.79543145e-20 + art_sys_69: 1.03226103e-20 + art_sys_70: -5.34838668e-20 + art_sys_71: 9.27645084e-14 + art_sys_72: 5.30373480e-20 + art_sys_73: 1.14042331e-14 + art_sys_74: -1.84648360e-14 + art_sys_75: 2.57643094e-14 + art_sys_76: 4.21247592e-14 + art_sys_77: 1.58266518e-12 + art_sys_78: -6.34793919e-22 + art_sys_79: -2.68684566e-15 + art_sys_80: -2.13067811e-14 + art_sys_81: -9.86170049e-17 + art_sys_82: -2.65890089e-17 + art_sys_83: -2.28086176e-14 + art_sys_84: -1.55001646e-16 + art_sys_85: 6.49561294e-16 + art_sys_86: 5.04405869e-15 + art_sys_87: 5.89313099e-12 + art_sys_88: 6.66701258e-15 + art_sys_89: 5.58390767e-15 + art_sys_90: -2.71919787e-18 + art_sys_91: 3.26578179e-17 + art_sys_92: -8.53213859e-18 + art_sys_93: 3.52551291e-19 + art_sys_94: 3.74598338e-19 + art_sys_95: -4.54399733e-16 + art_sys_96: 9.23447931e-14 + art_sys_97: -1.02548719e-13 + art_sys_98: 1.24589889e-18 + art_sys_99: -1.79851988e-20 + art_sys_100: 3.89815910e-16 + art_sys_101: 1.32074430e-17 + art_sys_102: -1.50569261e-17 + art_sys_103: 3.97911288e-15 + art_sys_104: -1.40766380e-21 + art_sys_105: -4.92946950e-16 + art_sys_106: 8.38112068e-10 + art_sys_107: 1.57225742e-11 + art_sys_108: -2.54672636e-12 + art_sys_109: -1.73249553e-10 + art_sys_110: -3.47920618e-12 + art_sys_111: -1.69315822e-14 + art_sys_112: 2.37676155e-11 + art_sys_113: -1.79966179e-12 + art_sys_114: 7.19480676e-15 + art_sys_115: -1.93842903e-11 + art_sys_116: 1.21965625e-08 + art_sys_117: 7.53976363e-14 + art_sys_118: 1.19396718e-10 + art_sys_119: 1.78714316e-13 + art_sys_120: 8.65467919e-09 + art_sys_121: -1.02155853e-08 + art_sys_122: -2.04687006e-12 + art_sys_123: -3.73504079e-11 + art_sys_124: 6.20554382e-09 + art_sys_125: -3.27321769e-07 + art_sys_126: 1.51193630e-08 + art_sys_127: -2.14160660e-10 + art_sys_128: 1.36576675e-08 + art_sys_129: -1.34613757e-10 + art_sys_130: 3.59637997e-08 + art_sys_131: -7.27449854e-07 + art_sys_132: 6.52802276e-10 + art_sys_133: -2.70518668e-08 + art_sys_134: 2.51691626e-09 + art_sys_135: 8.10538508e-10 + art_sys_136: -9.27627402e-09 + art_sys_137: -1.43626373e-09 + art_sys_138: 6.79989557e-19 + art_sys_139: 8.96546339e-09 + art_sys_140: 2.79179705e-07 + art_sys_141: -1.42180334e-08 + art_sys_142: -9.19292165e-08 + art_sys_143: 4.43387075e-10 + art_sys_144: -2.33347026e-10 + art_sys_145: -1.90012806e-09 + art_sys_146: -0.0 + art_sys_147: -5.34891984e-08 + art_sys_148: 4.93964559e-07 + art_sys_149: 4.93964559e-07 + art_sys_150: 1.09265232e-07 + art_sys_151: 1.09265232e-07 + art_sys_152: 1.60577231e-07 + art_sys_153: -5.68123315e-09 + art_sys_154: 1.80380703e-12 + art_sys_155: -3.22292390e-20 + art_sys_156: -1.57131636e-23 + art_sys_157: -6.07003353e-26 + art_sys_158: 0.0 + art_sys_159: 2.95725437e-10 + art_sys_160: -8.37977852e-11 + art_sys_161: -1.57033619e-10 + art_sys_162: -1.40913706e-12 + art_sys_163: 1.80609477e-08 + art_sys_164: -2.75262796e-10 + art_sys_165: -1.67847603e-10 + art_sys_166: -1.09006667e-17 + art_sys_167: 4.08300075e-18 + art_sys_168: 1.78995334e-17 + art_sys_169: 9.04636824e-18 + art_sys_170: 8.14205178e-19 + art_sys_171: 2.13549776e-19 + art_sys_172: -2.99184031e-19 + art_sys_173: 6.62884338e-20 + art_sys_174: -4.39179710e-19 + art_sys_175: 5.38774151e-22 + art_sys_176: 3.49083556e-20 + art_sys_177: 3.36972086e-20 + art_sys_178: -1.97597412e-20 + art_sys_179: 1.16988980e-20 + art_sys_180: -1.37001717e-20 + art_sys_181: -2.58469379e-24 + art_sys_182: -1.15836165e-22 + art_sys_183: -1.23035285e-23 + art_sys_184: -8.62412577e-25 + art_sys_185: -5.16485741e-25 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -65714,191 +65714,191 @@ bins: RelativeStatFSR-: -8.82476857e+04 luminosity_uncertainty: 3.24807600e+02 uncorrelated_uncertainty: 124.926 -- art_sys_1: 1.44127189e+02 - art_sys_2: -2.93268831e-13 - art_sys_3: 2.83295881e+01 - art_sys_4: -4.90676485e-14 - art_sys_5: 8.03153826e-14 - art_sys_6: -9.53096229e+00 - art_sys_7: -4.36314564e-14 - art_sys_8: -7.04782475e-15 - art_sys_9: 9.14050052e-15 - art_sys_10: -1.33686269e+00 - art_sys_11: -3.00790751e-14 - art_sys_12: -1.17639693e-15 - art_sys_13: -3.61923112e-02 - art_sys_14: -5.25901352e-15 - art_sys_15: 1.85393983e-15 - art_sys_16: 5.46563754e-15 - art_sys_17: -9.21916398e-03 - art_sys_18: 4.67024749e-16 - art_sys_19: 1.96628595e-15 - art_sys_20: -2.13597106e-03 - art_sys_21: 4.61043012e-16 - art_sys_22: -1.03740247e-17 - art_sys_23: 3.00219217e-04 - art_sys_24: 7.06446875e-16 - art_sys_25: -1.55614073e-15 - art_sys_26: 1.05909858e-16 - art_sys_27: 3.93754918e-18 - art_sys_28: 1.40039472e-20 - art_sys_29: -9.23119380e-20 - art_sys_30: 8.63027926e-17 - art_sys_31: -8.91096840e-17 - art_sys_32: 5.16455744e-19 - art_sys_33: 5.81366029e-20 - art_sys_34: 6.82918336e-17 +- art_sys_1: -1.44127189e+02 + art_sys_2: -2.83295881e+01 + art_sys_3: 6.91162246e-14 + art_sys_4: 1.47366492e-14 + art_sys_5: -1.08388221e-15 + art_sys_6: 9.53096229e+00 + art_sys_7: -5.66501458e-14 + art_sys_8: 3.56415833e-15 + art_sys_9: -7.33731118e-15 + art_sys_10: 1.33686269e+00 + art_sys_11: -1.79522083e-14 + art_sys_12: 5.68595526e-16 + art_sys_13: 3.61923112e-02 + art_sys_14: -1.08691779e-16 + art_sys_15: -3.38860419e-16 + art_sys_16: 8.24988882e-16 + art_sys_17: 9.21916398e-03 + art_sys_18: 4.89606856e-15 + art_sys_19: 3.08997059e-15 + art_sys_20: 2.13597106e-03 + art_sys_21: -1.47275690e-15 + art_sys_22: 6.24776074e-16 + art_sys_23: -3.00219217e-04 + art_sys_24: 1.49401888e-16 + art_sys_25: -2.20151589e-17 + art_sys_26: -1.20987455e-18 + art_sys_27: 4.82908716e-20 + art_sys_28: 1.86188814e-17 + art_sys_29: 2.70751277e-18 + art_sys_30: 8.09840507e-20 + art_sys_31: 4.24656188e-21 + art_sys_32: 2.48230412e-19 + art_sys_33: 2.95910952e-19 + art_sys_34: -1.13788892e-15 art_sys_35: -1.56165884e-06 - art_sys_36: -5.68967248e-18 - art_sys_37: -1.86035520e-17 - art_sys_38: -7.70317735e-19 - art_sys_39: -3.03114012e-07 - art_sys_40: -1.61231838e-17 - art_sys_41: -1.06081636e-16 - art_sys_42: -7.27934845e-19 - art_sys_43: 2.35161867e-18 - art_sys_44: -7.05201706e-19 - art_sys_45: -9.01273580e-20 - art_sys_46: 4.81302783e-08 - art_sys_47: -7.14402013e-19 - art_sys_48: 5.80741766e-18 - art_sys_49: 1.27942526e-20 - art_sys_50: 1.38188506e-20 - art_sys_51: -1.21455810e-21 - art_sys_52: 4.01276133e-21 - art_sys_53: -1.81392546e-19 - art_sys_54: 1.23265041e-17 - art_sys_55: 1.32601590e-09 - art_sys_56: -5.87463658e-20 - art_sys_57: 1.30193698e-17 - art_sys_58: -3.26305140e-10 - art_sys_59: 6.16893266e-22 - art_sys_60: 6.81624718e-23 - art_sys_61: 3.38914569e-23 - art_sys_62: 1.37774834e-23 - art_sys_63: 1.25232300e-23 - art_sys_64: 4.17895182e-20 - art_sys_65: 6.94827922e-24 - art_sys_66: -3.73654525e-25 - art_sys_67: 2.63285107e-25 - art_sys_68: 1.51334371e-19 - art_sys_69: 4.86519459e-20 - art_sys_70: 7.94118867e-19 - art_sys_71: 1.46722097e-19 - art_sys_72: 6.11419535e-21 - art_sys_73: -4.88095452e-11 - art_sys_74: -4.10707951e-22 - art_sys_75: 5.48629760e-26 - art_sys_76: -9.67120030e-26 - art_sys_77: -7.09756676e-26 - art_sys_78: 7.10245945e-19 - art_sys_79: -5.27217938e-19 - art_sys_80: 1.21197422e-26 - art_sys_81: 3.59157541e-27 - art_sys_82: 4.26214325e-28 - art_sys_83: -7.14210520e-22 - art_sys_84: 8.80555172e-19 - art_sys_85: 1.57346133e-12 - art_sys_86: 2.13897369e-21 - art_sys_87: -3.63452662e-19 - art_sys_88: -1.45479798e-28 - art_sys_89: 1.21594223e-22 - art_sys_90: 5.01673090e-19 - art_sys_91: 1.79675733e-13 - art_sys_92: 1.40630971e-19 - art_sys_93: 1.92279513e-23 - art_sys_94: 1.52818232e-23 - art_sys_95: 6.87610683e-20 - art_sys_96: -3.68812059e-15 - art_sys_97: 1.37140270e-19 - art_sys_98: -2.33079425e-21 - art_sys_99: 1.13519637e-23 - art_sys_100: -5.60961902e-29 - art_sys_101: -7.52436958e-29 - art_sys_102: 1.16477190e-19 - art_sys_103: -1.04221289e-24 - art_sys_104: -8.05274225e-20 - art_sys_105: 2.10909113e-24 - art_sys_106: 9.70384988e-24 - art_sys_107: -4.64333233e-20 - art_sys_108: -2.22017141e-25 - art_sys_109: -2.28541862e-20 - art_sys_110: 1.61334549e-24 - art_sys_111: 7.87859881e-27 - art_sys_112: 1.03486257e-20 - art_sys_113: -4.39415937e-21 - art_sys_114: 1.64869906e-21 - art_sys_115: -2.66846402e-24 - art_sys_116: -4.59816728e-22 - art_sys_117: -7.51386322e-18 - art_sys_118: 1.58039298e-22 - art_sys_119: 1.00957275e-27 - art_sys_120: 2.75623286e-27 - art_sys_121: -5.57302492e-28 - art_sys_122: 5.25866305e-28 - art_sys_123: 1.19059032e-25 - art_sys_124: -1.84211993e-28 - art_sys_125: 2.34653480e-23 - art_sys_126: -7.54668134e-29 - art_sys_127: 1.97685959e-24 - art_sys_128: -6.76102264e-29 - art_sys_129: 1.19866326e-28 - art_sys_130: -3.54186830e-26 - art_sys_131: 7.21574713e-26 - art_sys_132: -2.61443768e-32 - art_sys_133: -4.45763320e-30 - art_sys_134: 6.48497871e-29 - art_sys_135: -2.89359874e-30 - art_sys_136: 7.26303773e-30 - art_sys_137: 1.39387186e-30 - art_sys_138: -3.34252950e-30 - art_sys_139: -1.89950200e-29 - art_sys_140: -1.60873779e-29 - art_sys_141: -8.04316807e-32 - art_sys_142: 5.73619225e-30 - art_sys_143: 2.20191223e-31 - art_sys_144: 5.83399991e-32 - art_sys_145: 9.11013939e-31 - art_sys_146: -1.99318844e-30 - art_sys_147: 2.65802691e-30 - art_sys_148: 1.04406074e-30 - art_sys_149: 2.75005269e-31 - art_sys_150: 9.97993436e-32 - art_sys_151: -1.02504464e-31 - art_sys_152: 2.85391545e-34 - art_sys_153: 1.90240807e-35 - art_sys_154: 4.05850210e-35 - art_sys_155: -1.42105585e-36 - art_sys_156: -1.93126162e-38 - art_sys_157: 1.28086467e-37 - art_sys_158: 5.09851807e-39 - art_sys_159: 1.23426529e-40 - art_sys_160: 1.77134167e-40 - art_sys_161: 1.13042563e-39 - art_sys_162: 2.53121877e-39 - art_sys_163: -1.30234735e-38 - art_sys_164: 4.20959088e-38 - art_sys_165: 4.14590406e-38 - art_sys_166: 1.38323021e-38 - art_sys_167: 1.65037497e-37 - art_sys_168: -1.93628793e-30 - art_sys_169: -5.88339262e-39 - art_sys_170: 9.96694396e-32 - art_sys_171: 8.94050091e-31 - art_sys_172: 3.46495128e-39 - art_sys_173: 1.81240645e-41 - art_sys_174: -6.58508940e-32 - art_sys_175: 0.0 - art_sys_176: -1.04628927e-33 - art_sys_177: 0.0 - art_sys_178: 2.86039026e-36 - art_sys_179: 1.21712363e-37 - art_sys_180: -1.72669576e-40 - art_sys_181: 8.89584471e-45 - art_sys_182: 0.0 - art_sys_183: 1.31997896e-43 - art_sys_184: 1.24311857e-42 - art_sys_185: -1.49934265e-45 + art_sys_36: -1.04821341e-18 + art_sys_37: 1.25919838e-16 + art_sys_38: -9.06342508e-19 + art_sys_39: -3.03114013e-07 + art_sys_40: 1.32035758e-15 + art_sys_41: 3.36666301e-17 + art_sys_42: -5.37039982e-16 + art_sys_43: -2.69052175e-19 + art_sys_44: -2.86900758e-20 + art_sys_45: -1.05396047e-19 + art_sys_46: 4.81302776e-08 + art_sys_47: 8.76283368e-20 + art_sys_48: 2.19346559e-17 + art_sys_49: -1.37733300e-19 + art_sys_50: 1.15199188e-20 + art_sys_51: 1.35254920e-21 + art_sys_52: 9.57749042e-22 + art_sys_53: 1.53133462e-22 + art_sys_54: -7.54178116e-23 + art_sys_55: 1.88999137e-18 + art_sys_56: 5.08673923e-19 + art_sys_57: 1.38525120e-18 + art_sys_58: -1.96347727e-22 + art_sys_59: 1.82649984e-23 + art_sys_60: -1.05069161e-17 + art_sys_61: -1.32601602e-09 + art_sys_62: 4.56585126e-19 + art_sys_63: 7.42258150e-20 + art_sys_64: 1.08585403e-18 + art_sys_65: -7.79506581e-24 + art_sys_66: -1.92359411e-24 + art_sys_67: -3.26305147e-10 + art_sys_68: 4.12010104e-19 + art_sys_69: 4.18970522e-20 + art_sys_70: -3.23814059e-18 + art_sys_71: -1.67671905e-19 + art_sys_72: -4.88095462e-11 + art_sys_73: 3.71713163e-23 + art_sys_74: -8.75726641e-23 + art_sys_75: -3.61645617e-24 + art_sys_76: -2.54638097e-26 + art_sys_77: -1.84609021e-19 + art_sys_78: -3.40520507e-21 + art_sys_79: -8.73162923e-24 + art_sys_80: 6.86954327e-23 + art_sys_81: 1.61485026e-24 + art_sys_82: -3.01078646e-24 + art_sys_83: -4.58404919e-25 + art_sys_84: 4.03508176e-24 + art_sys_85: -5.23558880e-25 + art_sys_86: 1.13501365e-25 + art_sys_87: -2.89187251e-19 + art_sys_88: -6.83044232e-26 + art_sys_89: -1.35001704e-26 + art_sys_90: -1.27109542e-18 + art_sys_91: 2.91326367e-21 + art_sys_92: 4.46408062e-19 + art_sys_93: 1.57345832e-12 + art_sys_94: -8.95545017e-19 + art_sys_95: 1.32690886e-22 + art_sys_96: 5.10885948e-28 + art_sys_97: -5.35315145e-23 + art_sys_98: 1.65355710e-19 + art_sys_99: -1.79656559e-13 + art_sys_100: -1.55613942e-22 + art_sys_101: 1.43256823e-19 + art_sys_102: -6.44869274e-20 + art_sys_103: -2.13900612e-22 + art_sys_104: -3.68479138e-15 + art_sys_105: -1.33484623e-20 + art_sys_106: 2.16320119e-22 + art_sys_107: -1.61833198e-28 + art_sys_108: 7.64785389e-28 + art_sys_109: 4.59109110e-28 + art_sys_110: 6.80266751e-23 + art_sys_111: -4.72227446e-21 + art_sys_112: -7.27159932e-24 + art_sys_113: -5.09510236e-28 + art_sys_114: 5.95189962e-21 + art_sys_115: -6.69969668e-25 + art_sys_116: -1.51477028e-23 + art_sys_117: -4.49300950e-21 + art_sys_118: -8.53184880e-26 + art_sys_119: 3.04221065e-21 + art_sys_120: 3.27956302e-24 + art_sys_121: 1.10824288e-25 + art_sys_122: 1.37965200e-21 + art_sys_123: 3.50207459e-22 + art_sys_124: -7.14253860e-28 + art_sys_125: -3.67643932e-24 + art_sys_126: -2.29684524e-27 + art_sys_127: -9.32718925e-23 + art_sys_128: -6.01457572e-28 + art_sys_129: 4.29937440e-23 + art_sys_130: 6.23998610e-28 + art_sys_131: -2.00758104e-25 + art_sys_132: -1.13153471e-23 + art_sys_133: -2.32367247e-26 + art_sys_134: -5.74206203e-29 + art_sys_135: 3.04901854e-24 + art_sys_136: -7.45700868e-27 + art_sys_137: -4.06266609e-30 + art_sys_138: 1.56992570e-17 + art_sys_139: -2.97387120e-25 + art_sys_140: -4.33672789e-26 + art_sys_141: 3.12076665e-25 + art_sys_142: -3.20840020e-27 + art_sys_143: 3.59912072e-31 + art_sys_144: 1.92770327e-31 + art_sys_145: 2.61749427e-30 + art_sys_146: -0.0 + art_sys_147: 2.56588740e-28 + art_sys_148: -2.85791601e-27 + art_sys_149: -2.85791601e-27 + art_sys_150: 1.78034682e-28 + art_sys_151: 1.78034682e-28 + art_sys_152: 1.02151004e-26 + art_sys_153: -7.60373101e-28 + art_sys_154: 8.05426951e-32 + art_sys_155: -2.85350508e-39 + art_sys_156: 5.09050650e-44 + art_sys_157: 7.07525935e-43 + art_sys_158: -0.0 + art_sys_159: -4.27574983e-29 + art_sys_160: -1.50333378e-30 + art_sys_161: -2.20016064e-30 + art_sys_162: 3.52794168e-31 + art_sys_163: -4.84489941e-28 + art_sys_164: 2.34524332e-29 + art_sys_165: 7.89797970e-29 + art_sys_166: -1.01324437e-34 + art_sys_167: 2.81806353e-35 + art_sys_168: 1.25042127e-35 + art_sys_169: 4.50558231e-35 + art_sys_170: 2.11457568e-34 + art_sys_171: -2.79007982e-34 + art_sys_172: -6.60924161e-33 + art_sys_173: -1.94563752e-33 + art_sys_174: -4.38262016e-34 + art_sys_175: -1.48275731e-42 + art_sys_176: -7.24430263e-37 + art_sys_177: -2.33090116e-35 + art_sys_178: 4.21942574e-36 + art_sys_179: -1.38725866e-37 + art_sys_180: 1.85985004e-36 + art_sys_181: -2.96046759e-38 + art_sys_182: -1.91096167e-39 + art_sys_183: -2.27299948e-41 + art_sys_184: 4.17656039e-43 + art_sys_185: 6.74743097e-47 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -66005,191 +66005,191 @@ bins: RelativeStatFSR-: -3.53432423e+01 luminosity_uncertainty: 3.24807600e+02 uncorrelated_uncertainty: 124.926 -- art_sys_1: 7.40546891e+01 - art_sys_2: -5.28596188e-15 - art_sys_3: -5.17553441e+01 - art_sys_4: 2.42142785e-14 - art_sys_5: -1.01562874e-13 - art_sys_6: 1.73435696e+01 - art_sys_7: -2.31582650e-14 - art_sys_8: 1.74813602e-15 - art_sys_9: -2.45141436e-14 - art_sys_10: 3.89869916e+00 - art_sys_11: 9.58360836e-14 - art_sys_12: 7.12194251e-15 - art_sys_13: 1.16031603e-01 - art_sys_14: 1.35856960e-14 - art_sys_15: -4.28973712e-15 - art_sys_16: -1.03193294e-14 - art_sys_17: 3.15344596e-02 - art_sys_18: -3.64859514e-16 - art_sys_19: -3.38129729e-15 - art_sys_20: 8.02872055e-03 - art_sys_21: -3.55226336e-16 - art_sys_22: 1.94299883e-16 - art_sys_23: -1.17210415e-03 - art_sys_24: -1.81104555e-15 - art_sys_25: -1.14953561e-15 - art_sys_26: 2.99431528e-16 - art_sys_27: 8.67417400e-18 - art_sys_28: 1.46603075e-19 - art_sys_29: -1.34076980e-19 - art_sys_30: -2.92308038e-16 - art_sys_31: 1.72119768e-16 - art_sys_32: 2.87463067e-19 - art_sys_33: 3.32438051e-19 - art_sys_34: -2.85076194e-16 +- art_sys_1: -7.40546891e+01 + art_sys_2: 5.17553441e+01 + art_sys_3: 5.98898734e-14 + art_sys_4: -8.57583159e-15 + art_sys_5: -7.97507165e-15 + art_sys_6: -1.73435696e+01 + art_sys_7: -1.01161744e-14 + art_sys_8: -1.15195770e-14 + art_sys_9: 1.27473035e-15 + art_sys_10: -3.89869916e+00 + art_sys_11: 5.54041655e-14 + art_sys_12: -2.62530618e-16 + art_sys_13: -1.16031603e-01 + art_sys_14: 3.97068315e-16 + art_sys_15: 9.17707774e-16 + art_sys_16: -6.33231159e-16 + art_sys_17: -3.15344596e-02 + art_sys_18: -1.24112429e-14 + art_sys_19: -7.89851559e-15 + art_sys_20: -8.02872055e-03 + art_sys_21: 3.89067579e-15 + art_sys_22: -1.77347005e-15 + art_sys_23: 1.17210415e-03 + art_sys_24: -2.29451854e-16 + art_sys_25: 1.62517385e-18 + art_sys_26: 5.82964798e-18 + art_sys_27: -2.31241473e-19 + art_sys_28: 1.02416565e-17 + art_sys_29: 2.79330753e-18 + art_sys_30: -5.07847523e-19 + art_sys_31: -3.45652378e-19 + art_sys_32: 9.83700838e-19 + art_sys_33: 1.09110809e-18 + art_sys_34: 6.09907926e-15 art_sys_35: 8.31030126e-06 - art_sys_36: -2.62331049e-18 - art_sys_37: 1.57882665e-16 - art_sys_38: 7.73609137e-19 - art_sys_39: 1.60940846e-06 - art_sys_40: 8.98293471e-17 - art_sys_41: 2.83733331e-16 - art_sys_42: 1.10749506e-17 - art_sys_43: 3.77302341e-19 - art_sys_44: -3.44412098e-19 - art_sys_45: -7.87666479e-20 - art_sys_46: -2.55144820e-07 - art_sys_47: 9.05513609e-18 - art_sys_48: -2.19249486e-17 - art_sys_49: -2.84427685e-20 - art_sys_50: -7.90763963e-20 - art_sys_51: -2.86283250e-20 - art_sys_52: -3.15254417e-20 - art_sys_53: 1.33706147e-18 - art_sys_54: -4.43471732e-17 - art_sys_55: -1.02589077e-08 - art_sys_56: 3.53180522e-19 - art_sys_57: -3.49710189e-17 - art_sys_58: 1.85589073e-09 - art_sys_59: -4.10986550e-21 - art_sys_60: -4.32063163e-22 - art_sys_61: -2.26672262e-22 - art_sys_62: -9.13938888e-23 - art_sys_63: -8.18050805e-23 - art_sys_64: -1.35138305e-20 - art_sys_65: -4.57932029e-23 - art_sys_66: 2.50452556e-24 - art_sys_67: -5.50096645e-29 - art_sys_68: -1.06775862e-18 - art_sys_69: 9.79594332e-20 - art_sys_70: -6.15908724e-19 - art_sys_71: -1.16071797e-18 - art_sys_72: -1.10789221e-20 - art_sys_73: 3.24684133e-10 - art_sys_74: -9.82461881e-20 - art_sys_75: -2.86783853e-25 - art_sys_76: 3.84135969e-25 - art_sys_77: 3.29022846e-25 - art_sys_78: -4.28816498e-18 - art_sys_79: 3.11905763e-18 - art_sys_80: -7.90635523e-26 - art_sys_81: -2.11791435e-26 - art_sys_82: -1.52285769e-27 - art_sys_83: 1.58514043e-21 - art_sys_84: -2.43072238e-18 - art_sys_85: -9.51556616e-12 - art_sys_86: -1.70941951e-21 - art_sys_87: 9.09972742e-19 - art_sys_88: 1.03153015e-27 - art_sys_89: -2.24508319e-22 - art_sys_90: -1.34561597e-18 - art_sys_91: -1.20514990e-12 - art_sys_92: -5.59945200e-19 - art_sys_93: -1.63186201e-22 - art_sys_94: 3.20165407e-23 - art_sys_95: -2.18841080e-19 - art_sys_96: 2.36151414e-14 - art_sys_97: -3.93556809e-19 - art_sys_98: 5.47057445e-22 - art_sys_99: -1.44431765e-23 - art_sys_100: -4.09653569e-29 - art_sys_101: -6.09928801e-29 - art_sys_102: -3.48296133e-19 - art_sys_103: -1.44324692e-24 - art_sys_104: 2.31264216e-19 - art_sys_105: -4.70409410e-24 - art_sys_106: -2.28569951e-23 - art_sys_107: 1.34784490e-19 - art_sys_108: 3.63875567e-26 - art_sys_109: 6.63299931e-20 - art_sys_110: 6.55300105e-24 - art_sys_111: -1.40454586e-26 - art_sys_112: -2.79889471e-20 - art_sys_113: 1.09715634e-20 - art_sys_114: -4.00044052e-21 - art_sys_115: 2.47738608e-24 - art_sys_116: 1.13711061e-21 - art_sys_117: 4.72669728e-17 - art_sys_118: -3.98582402e-22 - art_sys_119: -2.63546606e-27 - art_sys_120: -6.74909856e-27 - art_sys_121: 1.45992541e-27 - art_sys_122: -1.24347478e-27 - art_sys_123: 7.31528205e-26 - art_sys_124: 5.61368652e-28 - art_sys_125: -6.93665025e-23 - art_sys_126: 1.80617427e-28 - art_sys_127: -6.99473984e-24 - art_sys_128: 1.87332511e-28 - art_sys_129: -2.87000423e-29 - art_sys_130: 6.33514066e-25 - art_sys_131: -5.97759507e-25 - art_sys_132: 1.46930716e-31 - art_sys_133: 2.75807243e-29 - art_sys_134: -3.93055763e-28 - art_sys_135: -6.00080949e-30 - art_sys_136: -2.74333726e-31 - art_sys_137: -2.52371362e-30 - art_sys_138: -4.98907112e-30 - art_sys_139: 2.65739949e-29 - art_sys_140: -2.23602358e-29 - art_sys_141: -4.24591033e-32 - art_sys_142: -1.05451426e-30 - art_sys_143: 4.20675596e-31 - art_sys_144: -8.50568496e-31 - art_sys_145: 1.24567275e-29 - art_sys_146: -3.97768719e-29 - art_sys_147: -8.56538923e-30 - art_sys_148: -2.50651686e-30 - art_sys_149: 4.06159916e-31 - art_sys_150: -5.02449397e-31 - art_sys_151: 3.42217314e-32 - art_sys_152: -2.02275583e-34 - art_sys_153: -1.84650067e-35 - art_sys_154: 2.95991311e-35 - art_sys_155: -1.79369910e-36 - art_sys_156: -5.63852572e-37 - art_sys_157: -7.72558217e-38 - art_sys_158: 3.30314145e-38 - art_sys_159: -7.61733262e-39 - art_sys_160: 1.21562346e-38 - art_sys_161: -7.38915975e-39 - art_sys_162: 1.24770874e-38 - art_sys_163: -5.55930634e-38 - art_sys_164: 3.42590925e-37 - art_sys_165: -3.52587085e-38 - art_sys_166: -2.46574224e-39 - art_sys_167: 5.61598581e-39 - art_sys_168: 4.66035551e-30 - art_sys_169: 7.20271948e-39 - art_sys_170: -2.76732369e-31 - art_sys_171: -2.40702068e-30 - art_sys_172: 9.81545018e-39 - art_sys_173: -1.28707389e-41 - art_sys_174: 1.68653071e-31 - art_sys_175: 0.0 - art_sys_176: 2.87973752e-33 - art_sys_177: 0.0 - art_sys_178: 5.23185673e-35 - art_sys_179: -7.37164457e-37 - art_sys_180: 9.74491630e-40 - art_sys_181: -6.16505069e-44 - art_sys_182: 0.0 - art_sys_183: -8.38397204e-43 - art_sys_184: -1.39762426e-41 - art_sys_185: 1.07141898e-44 + art_sys_36: 3.27810311e-18 + art_sys_37: -6.56200218e-16 + art_sys_38: -1.19077327e-18 + art_sys_39: 1.60940847e-06 + art_sys_40: -7.02359557e-15 + art_sys_41: -1.13914670e-16 + art_sys_42: 2.86040294e-15 + art_sys_43: -1.83876943e-19 + art_sys_44: -3.10943404e-20 + art_sys_45: 2.65139475e-19 + art_sys_46: -2.55144816e-07 + art_sys_47: 1.51991100e-18 + art_sys_48: -7.12687013e-17 + art_sys_49: 1.10705699e-19 + art_sys_50: -7.17979269e-20 + art_sys_51: -3.30162174e-20 + art_sys_52: -3.48176402e-21 + art_sys_53: -1.27765836e-21 + art_sys_54: 3.05444631e-22 + art_sys_55: -2.62284990e-18 + art_sys_56: -5.87079168e-19 + art_sys_57: -7.59030357e-18 + art_sys_58: 1.24692405e-21 + art_sys_59: -1.45378779e-22 + art_sys_60: 6.82563489e-17 + art_sys_61: 1.02589085e-08 + art_sys_62: -1.08342612e-17 + art_sys_63: -4.19838070e-19 + art_sys_64: -1.59556829e-17 + art_sys_65: 4.46569588e-23 + art_sys_66: 9.51728968e-24 + art_sys_67: 1.85589076e-09 + art_sys_68: -2.58353290e-18 + art_sys_69: -7.73003187e-20 + art_sys_70: 8.37862916e-18 + art_sys_71: 1.16284232e-18 + art_sys_72: 3.24684136e-10 + art_sys_73: -2.30583717e-22 + art_sys_74: 5.27530826e-22 + art_sys_75: 2.30912570e-23 + art_sys_76: 1.78305041e-25 + art_sys_77: 1.22952797e-18 + art_sys_78: -1.32433137e-20 + art_sys_79: 5.30024484e-23 + art_sys_80: -4.60412574e-22 + art_sys_81: -1.05891059e-23 + art_sys_82: 1.86079388e-23 + art_sys_83: 2.51710577e-24 + art_sys_84: -2.48552194e-23 + art_sys_85: 3.14208605e-24 + art_sys_86: 3.73904610e-26 + art_sys_87: 1.96435065e-18 + art_sys_88: 1.56091048e-26 + art_sys_89: -1.25402116e-26 + art_sys_90: 2.78940874e-18 + art_sys_91: -1.76788006e-20 + art_sys_92: -2.83779430e-18 + art_sys_93: -9.51556153e-12 + art_sys_94: 4.38705277e-18 + art_sys_95: 4.08875790e-22 + art_sys_96: -1.84551513e-27 + art_sys_97: 2.10813465e-22 + art_sys_98: -1.39911369e-19 + art_sys_99: 1.20503287e-12 + art_sys_100: 1.61263792e-22 + art_sys_101: -3.14923131e-19 + art_sys_102: 1.84924449e-19 + art_sys_103: 3.84578700e-23 + art_sys_104: 2.35953670e-14 + art_sys_105: 2.32325218e-20 + art_sys_106: 1.80442013e-22 + art_sys_107: -3.92989732e-28 + art_sys_108: 1.46369735e-27 + art_sys_109: 1.40166294e-28 + art_sys_110: -1.32660771e-22 + art_sys_111: 2.01748141e-20 + art_sys_112: -6.09753067e-24 + art_sys_113: 2.38572232e-28 + art_sys_114: -1.78754038e-20 + art_sys_115: -2.47354156e-24 + art_sys_116: -6.26196126e-23 + art_sys_117: 1.33233809e-20 + art_sys_118: 1.63155235e-25 + art_sys_119: -5.50885396e-21 + art_sys_120: -7.76062230e-23 + art_sys_121: 5.54116588e-27 + art_sys_122: -2.48267232e-21 + art_sys_123: -1.05626825e-21 + art_sys_124: -3.26163401e-27 + art_sys_125: 4.69435827e-24 + art_sys_126: 3.94702415e-27 + art_sys_127: 5.06404330e-22 + art_sys_128: 5.63027047e-27 + art_sys_129: -1.54282320e-22 + art_sys_130: 6.75288030e-27 + art_sys_131: -1.95364571e-25 + art_sys_132: 3.12632431e-23 + art_sys_133: 6.59302236e-26 + art_sys_134: 1.49677843e-28 + art_sys_135: 1.44981240e-23 + art_sys_136: -2.33891218e-26 + art_sys_137: 6.81879884e-31 + art_sys_138: -9.87713968e-17 + art_sys_139: -4.40656217e-24 + art_sys_140: -6.81021777e-25 + art_sys_141: -1.75046976e-24 + art_sys_142: 3.32369216e-26 + art_sys_143: 3.29659364e-30 + art_sys_144: 1.31025605e-29 + art_sys_145: -3.45106906e-30 + art_sys_146: -0.0 + art_sys_147: 1.15092593e-26 + art_sys_148: -9.63960173e-26 + art_sys_149: -9.63960173e-26 + art_sys_150: 1.19507578e-25 + art_sys_151: 1.19507578e-25 + art_sys_152: 1.69319943e-24 + art_sys_153: -1.23193523e-25 + art_sys_154: 3.81946761e-29 + art_sys_155: -4.54762720e-37 + art_sys_156: 2.94964118e-42 + art_sys_157: -3.19848466e-42 + art_sys_158: 0.0 + art_sys_159: 6.66462363e-29 + art_sys_160: 9.53736026e-29 + art_sys_161: -1.49722277e-28 + art_sys_162: -3.70897090e-29 + art_sys_163: -9.44412720e-28 + art_sys_164: -7.48574016e-29 + art_sys_165: -2.73194908e-29 + art_sys_166: 1.63259754e-35 + art_sys_167: -2.09722617e-35 + art_sys_168: 5.78479991e-36 + art_sys_169: 1.68294953e-34 + art_sys_170: 1.02089619e-34 + art_sys_171: -6.39019534e-34 + art_sys_172: -1.29087714e-33 + art_sys_173: 8.66300642e-34 + art_sys_174: -7.56091335e-37 + art_sys_175: 5.90221724e-42 + art_sys_176: -8.91733813e-35 + art_sys_177: -5.83061225e-36 + art_sys_178: -1.39880971e-36 + art_sys_179: 3.12729258e-37 + art_sys_180: 2.76444378e-36 + art_sys_181: -2.99217052e-38 + art_sys_182: 1.02289552e-39 + art_sys_183: 1.52163506e-40 + art_sys_184: -5.73687472e-43 + art_sys_185: 2.85793394e-46 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -66296,191 +66296,191 @@ bins: RelativeStatFSR-: -1.72384275e+01 luminosity_uncertainty: 1.53029760e+02 uncorrelated_uncertainty: 5.88576000e+01 -- art_sys_1: 6.75394975e+00 - art_sys_2: 1.16163685e-14 - art_sys_3: -4.84578686e+01 - art_sys_4: -1.68166454e-15 - art_sys_5: -9.07012426e-14 - art_sys_6: -1.80896961e+01 - art_sys_7: 1.99647259e-14 - art_sys_8: -4.35064865e-15 - art_sys_9: -3.35626794e-14 - art_sys_10: -6.35102935e+00 - art_sys_11: -1.65119887e-13 - art_sys_12: -2.42740765e-14 - art_sys_13: -3.74666874e-01 - art_sys_14: -2.01269271e-14 - art_sys_15: 2.03064613e-15 - art_sys_16: 4.56157377e-15 - art_sys_17: -8.87390780e-02 - art_sys_18: 6.73708515e-16 - art_sys_19: 4.42863640e-15 - art_sys_20: -2.62719128e-02 - art_sys_21: 6.40124098e-16 - art_sys_22: 2.37266602e-15 - art_sys_23: 3.96660433e-03 - art_sys_24: 2.74447266e-15 - art_sys_25: -5.29984154e-15 - art_sys_26: 1.96840849e-16 - art_sys_27: 1.97983980e-17 - art_sys_28: 2.59094029e-20 - art_sys_29: 3.81370551e-19 - art_sys_30: 5.38528300e-16 - art_sys_31: -3.25264170e-16 - art_sys_32: -5.09309293e-19 - art_sys_33: -5.71135892e-19 - art_sys_34: 8.68190522e-16 +- art_sys_1: -6.75394975e+00 + art_sys_2: 4.84578686e+01 + art_sys_3: 2.40377982e-15 + art_sys_4: 2.76421254e-14 + art_sys_5: -1.25138800e-14 + art_sys_6: 1.80896961e+01 + art_sys_7: -1.52427822e-14 + art_sys_8: 2.60925757e-14 + art_sys_9: 1.04464505e-14 + art_sys_10: 6.35102935e+00 + art_sys_11: -9.52982970e-14 + art_sys_12: -2.71434182e-16 + art_sys_13: 3.74666874e-01 + art_sys_14: -1.67911802e-16 + art_sys_15: -1.75680644e-15 + art_sys_16: 1.74152805e-15 + art_sys_17: 8.87390780e-02 + art_sys_18: 1.91518211e-14 + art_sys_19: 1.35014231e-14 + art_sys_20: 2.62719128e-02 + art_sys_21: -6.56455130e-15 + art_sys_22: 2.75805007e-15 + art_sys_23: -3.96660433e-03 + art_sys_24: 2.40997353e-16 + art_sys_25: -5.41006117e-17 + art_sys_26: -1.80121956e-17 + art_sys_27: 5.99690226e-19 + art_sys_28: -1.35020703e-16 + art_sys_29: -4.38222133e-17 + art_sys_30: 1.69993664e-18 + art_sys_31: 3.05218394e-19 + art_sys_32: 1.66173877e-18 + art_sys_33: 2.40916943e-18 + art_sys_34: -1.93901624e-14 art_sys_35: -2.63303923e-05 - art_sys_36: -8.06806267e-18 - art_sys_37: -5.16143314e-16 - art_sys_38: -3.02662380e-18 - art_sys_39: -6.09179365e-06 - art_sys_40: -3.59168875e-16 - art_sys_41: -4.73450249e-16 - art_sys_42: -9.12620783e-17 - art_sys_43: 8.01738185e-18 - art_sys_44: -1.86262565e-18 - art_sys_45: -1.18948178e-20 - art_sys_46: 9.16431609e-07 - art_sys_47: -4.51376846e-17 - art_sys_48: 2.81411072e-17 - art_sys_49: 2.15423119e-19 - art_sys_50: 4.09908337e-19 - art_sys_51: 1.06700247e-19 - art_sys_52: 1.26426845e-19 - art_sys_53: -5.59871474e-18 - art_sys_54: 1.27465413e-16 - art_sys_55: 4.12369608e-08 - art_sys_56: -1.46896089e-18 - art_sys_57: 6.99674873e-17 - art_sys_58: -7.28113304e-09 - art_sys_59: 1.63418406e-20 - art_sys_60: 1.69993190e-21 - art_sys_61: 8.91796242e-22 - art_sys_62: 3.60680334e-22 - art_sys_63: 3.26080044e-22 - art_sys_64: -1.83484994e-21 - art_sys_65: 1.81590885e-22 - art_sys_66: -9.91064889e-24 - art_sys_67: 4.21264964e-24 - art_sys_68: 4.32408697e-18 - art_sys_69: -4.77301571e-19 - art_sys_70: 5.38167188e-18 - art_sys_71: 4.69261726e-18 - art_sys_72: -6.54672434e-21 - art_sys_73: -1.28398282e-09 - art_sys_74: 2.38609231e-19 - art_sys_75: 1.05068709e-24 - art_sys_76: -2.73202097e-25 - art_sys_77: -9.59917298e-25 - art_sys_78: 1.77749065e-17 - art_sys_79: -1.07448011e-17 - art_sys_80: 3.58741702e-25 - art_sys_81: 9.18657039e-26 - art_sys_82: 6.44548105e-27 - art_sys_83: -2.52233171e-21 - art_sys_84: 4.04985752e-18 - art_sys_85: 3.94079730e-11 - art_sys_86: -2.11582988e-21 - art_sys_87: -1.36156819e-18 - art_sys_88: -4.23290122e-27 - art_sys_89: -2.83675410e-23 - art_sys_90: 2.21111212e-18 - art_sys_91: 4.84147571e-12 - art_sys_92: 1.09789782e-18 - art_sys_93: 2.85538797e-22 - art_sys_94: -7.03979044e-23 - art_sys_95: 4.25635082e-19 - art_sys_96: -1.18699803e-13 - art_sys_97: 5.73259712e-19 - art_sys_98: -1.92989187e-21 - art_sys_99: 1.38477893e-23 - art_sys_100: -1.00189619e-29 - art_sys_101: -1.89669671e-28 - art_sys_102: 5.60997625e-19 - art_sys_103: -1.03600024e-23 - art_sys_104: -3.77598674e-19 - art_sys_105: 5.29544643e-24 - art_sys_106: -4.04782165e-25 - art_sys_107: -2.25432224e-19 - art_sys_108: -2.33355972e-25 - art_sys_109: -1.11677840e-19 - art_sys_110: -1.90977760e-23 - art_sys_111: 2.08078201e-26 - art_sys_112: 4.86131711e-20 - art_sys_113: -1.94292868e-20 - art_sys_114: 7.10956642e-21 - art_sys_115: -3.39553900e-24 - art_sys_116: -1.99711372e-21 - art_sys_117: -1.91099013e-16 - art_sys_118: 6.92146590e-22 - art_sys_119: 4.99316161e-27 - art_sys_120: 1.19604493e-26 - art_sys_121: -2.60232553e-27 - art_sys_122: 2.25475620e-27 - art_sys_123: 1.29505287e-25 - art_sys_124: -1.11338384e-27 - art_sys_125: 1.14147012e-22 - art_sys_126: -1.55985583e-28 - art_sys_127: 1.06760437e-23 - art_sys_128: -3.54859826e-28 - art_sys_129: 8.08450885e-29 - art_sys_130: -2.49690972e-24 - art_sys_131: 2.38001501e-24 - art_sys_132: -2.78329313e-31 - art_sys_133: -1.12643269e-28 - art_sys_134: 1.54423982e-27 - art_sys_135: 1.11087165e-30 - art_sys_136: -1.30921130e-29 - art_sys_137: 5.73871241e-32 - art_sys_138: -1.58212811e-29 - art_sys_139: -3.56800168e-30 - art_sys_140: 1.64941475e-29 - art_sys_141: 2.63148122e-32 - art_sys_142: 6.25458000e-30 - art_sys_143: 4.99906718e-32 - art_sys_144: -8.60414821e-31 - art_sys_145: 1.04830072e-29 - art_sys_146: -1.73331552e-30 - art_sys_147: 1.93362902e-30 - art_sys_148: 1.00545305e-30 - art_sys_149: -5.39262209e-31 - art_sys_150: -1.31686802e-31 - art_sys_151: -1.25511558e-32 - art_sys_152: -5.69032228e-34 - art_sys_153: -1.63325169e-34 - art_sys_154: -8.17278678e-35 - art_sys_155: 1.15554939e-37 - art_sys_156: 2.88796890e-37 - art_sys_157: -1.34331362e-37 - art_sys_158: 1.19173788e-38 - art_sys_159: -6.15023566e-39 - art_sys_160: 6.93718218e-39 - art_sys_161: 2.83813027e-38 - art_sys_162: 5.53541366e-40 - art_sys_163: -9.64799769e-39 - art_sys_164: 2.75222235e-38 - art_sys_165: -2.46173082e-39 - art_sys_166: -3.14384165e-39 - art_sys_167: -2.67731744e-38 - art_sys_168: -8.32263054e-30 - art_sys_169: -1.81638291e-38 - art_sys_170: 4.44949519e-31 - art_sys_171: 4.06486773e-30 - art_sys_172: -8.96194677e-39 - art_sys_173: 5.79603464e-41 - art_sys_174: -2.90183068e-31 - art_sys_175: 0.0 - art_sys_176: -6.01415725e-33 - art_sys_177: 0.0 - art_sys_178: -2.69898880e-34 - art_sys_179: 2.95209574e-36 - art_sys_180: -1.88191040e-39 - art_sys_181: 2.33467646e-43 - art_sys_182: 0.0 - art_sys_183: 3.38286751e-42 - art_sys_184: 5.53829800e-41 - art_sys_185: -4.27355895e-44 + art_sys_36: -1.48287766e-17 + art_sys_37: 2.40049220e-15 + art_sys_38: -2.70280550e-18 + art_sys_39: -6.09179366e-06 + art_sys_40: 2.65948748e-14 + art_sys_41: 2.02194115e-16 + art_sys_42: -1.02154363e-14 + art_sys_43: 1.15262300e-20 + art_sys_44: 4.26409508e-20 + art_sys_45: -1.62295850e-19 + art_sys_46: 9.16431594e-07 + art_sys_47: -1.00446980e-17 + art_sys_48: 1.69887984e-16 + art_sys_49: -5.80662152e-19 + art_sys_50: 3.03930323e-19 + art_sys_51: 1.37181691e-19 + art_sys_52: 1.49528414e-20 + art_sys_53: 5.39882200e-21 + art_sys_54: -1.23634004e-21 + art_sys_55: 2.11305600e-18 + art_sys_56: -5.94363194e-19 + art_sys_57: 2.94263807e-17 + art_sys_58: -4.96799312e-21 + art_sys_59: 5.73406655e-22 + art_sys_60: -2.51614281e-16 + art_sys_61: -4.12369640e-08 + art_sys_62: 4.35029423e-17 + art_sys_63: 1.67562515e-18 + art_sys_64: 6.14563678e-17 + art_sys_65: -1.87514414e-22 + art_sys_66: -3.72469252e-23 + art_sys_67: -7.28113314e-09 + art_sys_68: 1.07842115e-17 + art_sys_69: 4.95024720e-20 + art_sys_70: -1.33910211e-17 + art_sys_71: -4.47626878e-18 + art_sys_72: -1.28398283e-09 + art_sys_73: 9.59466203e-22 + art_sys_74: -2.19262151e-21 + art_sys_75: -9.36074552e-23 + art_sys_76: -7.60661046e-25 + art_sys_77: -4.81274881e-18 + art_sys_78: 6.40161910e-21 + art_sys_79: -2.20270851e-22 + art_sys_80: 1.80686045e-21 + art_sys_81: 4.32533515e-23 + art_sys_82: -7.66596843e-23 + art_sys_83: -6.44133357e-24 + art_sys_84: 1.02271258e-22 + art_sys_85: -1.30816166e-23 + art_sys_86: -7.15598441e-25 + art_sys_87: -7.89567937e-18 + art_sys_88: 1.87117019e-25 + art_sys_89: 1.27952863e-25 + art_sys_90: -2.43663046e-18 + art_sys_91: 7.12287906e-20 + art_sys_92: 1.09937311e-17 + art_sys_93: 3.94079365e-11 + art_sys_94: -1.57465497e-17 + art_sys_95: -1.39039515e-22 + art_sys_96: 2.12234135e-27 + art_sys_97: -1.71266598e-21 + art_sys_98: -5.72205384e-19 + art_sys_99: -4.84099211e-12 + art_sys_100: -2.91802826e-23 + art_sys_101: 5.71276657e-19 + art_sys_102: -3.71014765e-19 + art_sys_103: 5.13555821e-23 + art_sys_104: -1.18612013e-13 + art_sys_105: -7.66239766e-20 + art_sys_106: -1.95797914e-22 + art_sys_107: -7.86906767e-29 + art_sys_108: -3.37843633e-27 + art_sys_109: 5.67448774e-28 + art_sys_110: 3.78368659e-22 + art_sys_111: -1.29189405e-20 + art_sys_112: -5.35004228e-24 + art_sys_113: 9.33288026e-28 + art_sys_114: 1.67345659e-20 + art_sys_115: 2.16236613e-24 + art_sys_116: 6.33747295e-23 + art_sys_117: -1.53109881e-20 + art_sys_118: -2.27894286e-25 + art_sys_119: 6.90120188e-21 + art_sys_120: 6.13833290e-23 + art_sys_121: -2.15536779e-25 + art_sys_122: 3.10792897e-21 + art_sys_123: 1.37312804e-21 + art_sys_124: 5.84049925e-27 + art_sys_125: -1.27696530e-23 + art_sys_126: -4.98103861e-27 + art_sys_127: -6.00197935e-22 + art_sys_128: -9.54079692e-27 + art_sys_129: 2.00966906e-22 + art_sys_130: -1.50841685e-26 + art_sys_131: 1.09922662e-24 + art_sys_132: -2.71673543e-23 + art_sys_133: -6.74524197e-26 + art_sys_134: -1.54112674e-28 + art_sys_135: -2.83906396e-23 + art_sys_136: 4.94624856e-26 + art_sys_137: -6.95245127e-30 + art_sys_138: 3.99323897e-16 + art_sys_139: 8.03906131e-24 + art_sys_140: 1.23876390e-24 + art_sys_141: 7.47207494e-24 + art_sys_142: -1.13492202e-25 + art_sys_143: -5.89165367e-30 + art_sys_144: -2.80704045e-29 + art_sys_145: 4.58692735e-29 + art_sys_146: 0.0 + art_sys_147: -1.70513958e-26 + art_sys_148: 1.28278103e-25 + art_sys_149: 1.28278103e-25 + art_sys_150: -2.10083908e-25 + art_sys_151: -2.10083908e-25 + art_sys_152: -2.92867114e-24 + art_sys_153: 2.12055797e-25 + art_sys_154: -6.78345064e-29 + art_sys_155: 7.84894531e-37 + art_sys_156: -4.93058235e-42 + art_sys_157: 4.51249599e-42 + art_sys_158: -0.0 + art_sys_159: -1.55400497e-28 + art_sys_160: -1.69427354e-28 + art_sys_161: 1.93126233e-28 + art_sys_162: -1.50576617e-29 + art_sys_163: 7.73515968e-28 + art_sys_164: 7.18894125e-29 + art_sys_165: 3.06212557e-29 + art_sys_166: -9.60797890e-35 + art_sys_167: 2.79472564e-35 + art_sys_168: -4.15028940e-36 + art_sys_169: -4.37795818e-38 + art_sys_170: 3.26848163e-34 + art_sys_171: -1.67047862e-35 + art_sys_172: 1.84940132e-32 + art_sys_173: 1.17874950e-34 + art_sys_174: 5.14732415e-34 + art_sys_175: -3.47286697e-41 + art_sys_176: 8.85398067e-35 + art_sys_177: -1.78620358e-35 + art_sys_178: 3.49204693e-36 + art_sys_179: -3.11377934e-37 + art_sys_180: -9.13154679e-37 + art_sys_181: -5.83279945e-38 + art_sys_182: -3.35862031e-39 + art_sys_183: -3.88468709e-40 + art_sys_184: 2.14998175e-42 + art_sys_185: -4.65687860e-45 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -66587,191 +66587,191 @@ bins: RelativeStatFSR-: -7.64547097e+00 luminosity_uncertainty: 64.50678 uncorrelated_uncertainty: 24.8103 -- art_sys_1: -7.49785198e+00 - art_sys_2: -4.10719710e-14 - art_sys_3: -1.04501495e+01 - art_sys_4: 9.18920934e-14 - art_sys_5: 1.41990428e-14 - art_sys_6: -2.80107291e+01 - art_sys_7: -5.85167480e-15 - art_sys_8: 2.72318064e-14 - art_sys_9: -1.76802643e-14 - art_sys_10: 6.86122477e+00 - art_sys_11: 1.87461152e-13 - art_sys_12: 4.18094405e-14 - art_sys_13: 3.94537257e-01 - art_sys_14: 1.94406008e-14 - art_sys_15: -1.96162635e-15 - art_sys_16: -1.16523442e-15 - art_sys_17: 1.91704565e-01 - art_sys_18: -4.48229357e-16 - art_sys_19: -4.32448279e-15 - art_sys_20: 5.59750562e-02 - art_sys_21: -1.09420263e-15 - art_sys_22: -8.95492925e-15 - art_sys_23: -9.80024123e-03 - art_sys_24: -2.98488851e-15 - art_sys_25: 2.39152041e-15 - art_sys_26: -1.09922728e-16 - art_sys_27: -3.20225004e-17 - art_sys_28: 3.35289936e-19 - art_sys_29: -9.73960107e-19 - art_sys_30: -6.69966282e-16 - art_sys_31: 3.77030829e-16 - art_sys_32: 5.95464318e-20 - art_sys_33: -2.85727928e-19 - art_sys_34: -2.84175314e-15 +- art_sys_1: 7.49785198e+00 + art_sys_2: 1.04501495e+01 + art_sys_3: -4.21227968e-14 + art_sys_4: -8.89152095e-14 + art_sys_5: 1.68609693e-15 + art_sys_6: 2.80107291e+01 + art_sys_7: 1.61214480e-14 + art_sys_8: 2.86315397e-14 + art_sys_9: 1.77344790e-15 + art_sys_10: -6.86122477e+00 + art_sys_11: 1.11648535e-13 + art_sys_12: 2.18828788e-15 + art_sys_13: -3.94537257e-01 + art_sys_14: -2.04657157e-16 + art_sys_15: 8.81178110e-16 + art_sys_16: -1.60292897e-15 + art_sys_17: -1.91704565e-01 + art_sys_18: -1.47284352e-14 + art_sys_19: -1.11300817e-14 + art_sys_20: -5.59750562e-02 + art_sys_21: 7.40103946e-15 + art_sys_22: -3.46277761e-15 + art_sys_23: 9.80024123e-03 + art_sys_24: -3.96460003e-17 + art_sys_25: 7.35066395e-17 + art_sys_26: 6.06557609e-17 + art_sys_27: -2.60442715e-18 + art_sys_28: 3.79488700e-16 + art_sys_29: 1.46403650e-16 + art_sys_30: -5.53571697e-18 + art_sys_31: -8.19120190e-19 + art_sys_32: -2.03366489e-18 + art_sys_33: -5.46199369e-19 + art_sys_34: 6.56519919e-14 art_sys_35: 8.87628100e-05 - art_sys_36: 4.41959020e-18 - art_sys_37: 1.58046624e-15 - art_sys_38: 1.61446713e-18 + art_sys_36: 2.46186866e-17 + art_sys_37: -7.03902728e-15 + art_sys_38: -9.78448970e-19 art_sys_39: 1.82933433e-05 - art_sys_40: 1.09406988e-15 - art_sys_41: 5.42261017e-16 - art_sys_42: 4.21315755e-16 - art_sys_43: -8.13963782e-18 - art_sys_44: 2.25197012e-18 - art_sys_45: 1.49136586e-19 - art_sys_46: -3.09343455e-06 - art_sys_47: 1.50887466e-16 - art_sys_48: -9.57638629e-18 - art_sys_49: -7.16688331e-19 - art_sys_50: -4.31129635e-19 - art_sys_51: -3.51990252e-19 - art_sys_52: -4.23790118e-19 - art_sys_53: 1.88590428e-17 - art_sys_54: -3.46567298e-16 - art_sys_55: -1.38464846e-07 - art_sys_56: 4.46920600e-18 - art_sys_57: -1.16870577e-16 - art_sys_58: 2.43425306e-08 - art_sys_59: -5.66447567e-20 - art_sys_60: -5.88284400e-21 - art_sys_61: -3.10764097e-21 - art_sys_62: -1.25066560e-21 - art_sys_63: -1.12176907e-21 - art_sys_64: -2.28406385e-19 - art_sys_65: -6.28907876e-22 - art_sys_66: 3.44319839e-23 - art_sys_67: -1.68504866e-23 - art_sys_68: -1.50202747e-17 - art_sys_69: 1.63578210e-18 - art_sys_70: -1.56045697e-17 - art_sys_71: -1.62184236e-17 - art_sys_72: -1.40239330e-20 - art_sys_73: 4.45650523e-09 - art_sys_74: -9.02662990e-19 - art_sys_75: -3.66144123e-24 - art_sys_76: 2.40962083e-24 - art_sys_77: 2.96882323e-24 - art_sys_78: -5.87946699e-17 - art_sys_79: 3.43588433e-17 - art_sys_80: -1.16796403e-24 - art_sys_81: -2.98258209e-25 - art_sys_82: -1.67058682e-26 - art_sys_83: 1.30118780e-21 - art_sys_84: -4.93166934e-18 - art_sys_85: -1.30349446e-10 - art_sys_86: -6.16844198e-21 - art_sys_87: 1.43127400e-18 - art_sys_88: 1.48734489e-26 - art_sys_89: -3.47208105e-22 - art_sys_90: -2.36159172e-18 - art_sys_91: -1.67802260e-11 - art_sys_92: -1.53727813e-18 - art_sys_93: -1.06851619e-22 - art_sys_94: 2.10136645e-23 - art_sys_95: -4.32719828e-19 - art_sys_96: 3.26561669e-13 - art_sys_97: -6.77170987e-19 - art_sys_98: 3.41371031e-21 - art_sys_99: -7.33696809e-24 - art_sys_100: -1.10189152e-28 - art_sys_101: 1.36394408e-28 - art_sys_102: -6.49318902e-19 - art_sys_103: 1.52338111e-24 - art_sys_104: 4.39869243e-19 - art_sys_105: 1.25707074e-23 - art_sys_106: -7.25497027e-24 - art_sys_107: 2.61266132e-19 - art_sys_108: -5.19207110e-26 - art_sys_109: 1.28087894e-19 - art_sys_110: -3.95882375e-24 - art_sys_111: -3.11939425e-26 - art_sys_112: -5.36510277e-20 - art_sys_113: 2.11910230e-20 - art_sys_114: -7.77631270e-21 - art_sys_115: 3.22792895e-24 - art_sys_116: 2.21793052e-21 - art_sys_117: 6.58412903e-16 - art_sys_118: -7.68934119e-22 - art_sys_119: -4.99940545e-27 - art_sys_120: -1.28579228e-26 - art_sys_121: 3.07032125e-27 - art_sys_122: -2.63402802e-27 - art_sys_123: -8.51779205e-26 - art_sys_124: 1.91388628e-27 - art_sys_125: -1.30831312e-22 - art_sys_126: -4.59846929e-28 - art_sys_127: -1.19264616e-23 - art_sys_128: 5.11085772e-28 - art_sys_129: 6.28313113e-28 - art_sys_130: 9.14183107e-24 - art_sys_131: -8.37848107e-24 - art_sys_132: 6.38233009e-31 - art_sys_133: 3.89440863e-28 - art_sys_134: -5.25363350e-27 - art_sys_135: 2.82905287e-30 - art_sys_136: -8.88805586e-31 - art_sys_137: 1.23184021e-30 - art_sys_138: -3.51322797e-30 - art_sys_139: 2.29397322e-29 - art_sys_140: 6.72422180e-30 - art_sys_141: 1.28691236e-31 - art_sys_142: -5.40984396e-30 - art_sys_143: -4.00092999e-33 - art_sys_144: 1.14904576e-30 - art_sys_145: -7.05958368e-30 - art_sys_146: 5.96317989e-30 - art_sys_147: 2.37299942e-31 - art_sys_148: -7.79923737e-31 - art_sys_149: 9.75277659e-32 - art_sys_150: -4.28944317e-31 - art_sys_151: 1.10638617e-31 - art_sys_152: -1.89203676e-34 - art_sys_153: 1.73083460e-35 - art_sys_154: -4.26169077e-35 - art_sys_155: 5.87311014e-37 - art_sys_156: 9.98278331e-38 - art_sys_157: -1.56629111e-37 - art_sys_158: -4.23781124e-39 - art_sys_159: -3.30495069e-39 - art_sys_160: 2.20571267e-38 - art_sys_161: -9.81835649e-38 - art_sys_162: 6.17773950e-39 - art_sys_163: -1.04164861e-38 - art_sys_164: 1.00916385e-37 - art_sys_165: -4.81926468e-38 - art_sys_166: -3.55134943e-38 - art_sys_167: -6.50222618e-37 - art_sys_168: 9.60606097e-30 - art_sys_169: -1.67831428e-38 - art_sys_170: -4.20948162e-31 - art_sys_171: -4.35427773e-30 - art_sys_172: -6.92863020e-39 - art_sys_173: 6.65227095e-41 - art_sys_174: 3.04976301e-31 - art_sys_175: 0.0 - art_sys_176: 1.04354794e-32 - art_sys_177: 0.0 - art_sys_178: 1.08422455e-33 - art_sys_179: -1.02196743e-35 - art_sys_180: 4.38875663e-39 - art_sys_181: -7.98328463e-43 - art_sys_182: 0.0 - art_sys_183: -1.16585217e-41 - art_sys_184: -1.98780102e-40 - art_sys_185: 1.48642403e-43 + art_sys_40: -7.98726826e-14 + art_sys_41: -2.18789213e-16 + art_sys_42: 3.43937645e-14 + art_sys_43: -1.18976043e-19 + art_sys_44: -1.97077160e-20 + art_sys_45: -5.42934025e-19 + art_sys_46: -3.09343450e-06 + art_sys_47: 3.70033328e-17 + art_sys_48: -3.65753341e-16 + art_sys_49: 1.98475093e-18 + art_sys_50: -1.00035865e-18 + art_sys_51: -3.82296091e-19 + art_sys_52: -5.14642402e-20 + art_sys_53: -1.81828889e-20 + art_sys_54: 4.13455042e-21 + art_sys_55: -4.79881728e-19 + art_sys_56: 4.74032179e-18 + art_sys_57: -9.80984738e-17 + art_sys_58: 1.67847076e-20 + art_sys_59: -1.93689037e-21 + art_sys_60: 8.00455951e-16 + art_sys_61: 1.38464857e-07 + art_sys_62: -1.48074626e-16 + art_sys_63: -5.68511856e-18 + art_sys_64: -2.02075275e-16 + art_sys_65: 6.25402142e-22 + art_sys_66: 1.19416914e-22 + art_sys_67: 2.43425309e-08 + art_sys_68: -3.57573210e-17 + art_sys_69: 2.30988721e-19 + art_sys_70: 1.84501273e-17 + art_sys_71: 1.56523759e-17 + art_sys_72: 4.45650524e-09 + art_sys_73: -3.17203400e-21 + art_sys_74: 7.22144748e-21 + art_sys_75: 3.19211728e-22 + art_sys_76: 2.49656147e-24 + art_sys_77: 1.55805162e-17 + art_sys_78: -2.14185262e-20 + art_sys_79: 7.26125467e-22 + art_sys_80: -6.52458130e-21 + art_sys_81: -1.46931083e-22 + art_sys_82: 2.55813467e-22 + art_sys_83: 3.44873574e-23 + art_sys_84: -3.41514937e-22 + art_sys_85: 4.29868549e-23 + art_sys_86: 1.07667739e-24 + art_sys_87: 2.67999366e-17 + art_sys_88: -6.69493646e-25 + art_sys_89: -4.10951554e-25 + art_sys_90: -8.44265594e-18 + art_sys_91: -2.37170488e-19 + art_sys_92: -3.54887401e-17 + art_sys_93: -1.30349413e-10 + art_sys_94: 5.01575481e-17 + art_sys_95: -1.64824459e-23 + art_sys_96: 2.37889623e-28 + art_sys_97: -1.86129460e-22 + art_sys_98: 2.79945090e-18 + art_sys_99: 1.67786201e-11 + art_sys_100: 7.29674129e-23 + art_sys_101: -3.74619318e-19 + art_sys_102: 7.63690414e-19 + art_sys_103: 1.95779977e-22 + art_sys_104: 3.26291543e-13 + art_sys_105: 1.47533789e-19 + art_sys_106: -1.23768924e-22 + art_sys_107: 6.40153001e-29 + art_sys_108: 2.77066719e-27 + art_sys_109: 5.52334337e-28 + art_sys_110: -1.64585188e-22 + art_sys_111: -6.40492102e-21 + art_sys_112: 2.97406813e-23 + art_sys_113: -7.62528455e-29 + art_sys_114: -4.69389712e-21 + art_sys_115: -4.70991726e-26 + art_sys_116: -5.30998185e-23 + art_sys_117: 8.75647304e-21 + art_sys_118: 2.60876851e-25 + art_sys_119: -5.45090364e-21 + art_sys_120: -1.46778429e-23 + art_sys_121: -2.06433702e-25 + art_sys_122: -2.98397375e-21 + art_sys_123: -1.01887090e-21 + art_sys_124: -1.62292373e-27 + art_sys_125: 6.34382474e-24 + art_sys_126: 5.17644935e-27 + art_sys_127: 5.17661712e-22 + art_sys_128: 5.06122327e-27 + art_sys_129: -1.69514237e-22 + art_sys_130: 4.62690607e-27 + art_sys_131: 3.77219051e-25 + art_sys_132: 4.86702600e-23 + art_sys_133: 1.01361028e-25 + art_sys_134: 2.53777562e-28 + art_sys_135: 3.97288606e-24 + art_sys_136: -2.21930902e-27 + art_sys_137: -1.66079387e-30 + art_sys_138: -1.37591162e-15 + art_sys_139: -3.77076491e-24 + art_sys_140: -5.84154891e-25 + art_sys_141: -2.66684448e-23 + art_sys_142: 3.40564279e-25 + art_sys_143: 9.84192952e-31 + art_sys_144: 3.75425335e-29 + art_sys_145: -2.29330019e-28 + art_sys_146: 0.0 + art_sys_147: -7.05566932e-27 + art_sys_148: 1.39791473e-25 + art_sys_149: 1.39791473e-25 + art_sys_150: 1.15936945e-25 + art_sys_151: 1.15936945e-25 + art_sys_152: 1.34087856e-24 + art_sys_153: -9.20775943e-26 + art_sys_154: 4.05072391e-29 + art_sys_155: -3.50340719e-37 + art_sys_156: 1.31361578e-42 + art_sys_157: -1.46889737e-42 + art_sys_158: 0.0 + art_sys_159: 9.54540309e-29 + art_sys_160: 1.54114975e-28 + art_sys_161: 3.12033575e-29 + art_sys_162: 1.67674683e-30 + art_sys_163: -6.29644661e-28 + art_sys_164: -1.12914210e-28 + art_sys_165: 7.56985144e-31 + art_sys_166: 1.56970420e-34 + art_sys_167: -5.28671055e-35 + art_sys_168: -5.14033461e-35 + art_sys_169: -1.67457403e-34 + art_sys_170: 5.27760577e-34 + art_sys_171: 1.46150621e-33 + art_sys_172: 1.55645269e-32 + art_sys_173: -2.25649970e-33 + art_sys_174: -3.83948384e-34 + art_sys_175: 1.43002760e-40 + art_sys_176: 1.49851256e-36 + art_sys_177: 1.95410716e-35 + art_sys_178: -1.21747914e-35 + art_sys_179: 1.13456799e-36 + art_sys_180: -5.67804276e-38 + art_sys_181: -1.55671619e-38 + art_sys_182: -1.92629223e-38 + art_sys_183: -1.17674514e-40 + art_sys_184: -1.66687879e-42 + art_sys_185: -8.94367396e-46 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -66878,191 +66878,191 @@ bins: RelativeStatFSR-: -3.16037220e+00 luminosity_uncertainty: 2.48993940e+01 uncorrelated_uncertainty: 9.57669 -- art_sys_1: -8.13604987e-01 - art_sys_2: 2.94559737e-14 - art_sys_3: 1.94031515e+00 - art_sys_4: -5.22921410e-14 - art_sys_5: 1.83934484e-14 - art_sys_6: -1.30413505e+00 - art_sys_7: -2.74567636e-15 - art_sys_8: 2.61730974e-14 - art_sys_9: -1.23960699e-14 - art_sys_10: 1.96022707e+00 - art_sys_11: 6.73347903e-14 - art_sys_12: 1.27091780e-14 - art_sys_13: -3.11409182e+00 - art_sys_14: 2.30326356e-14 - art_sys_15: -5.91669387e-14 - art_sys_16: -1.90231814e-13 - art_sys_17: -6.70494399e-01 - art_sys_18: -2.08965794e-15 - art_sys_19: -3.81091089e-15 - art_sys_20: -2.77156420e-01 - art_sys_21: 3.00179350e-15 - art_sys_22: 5.57739770e-14 - art_sys_23: 4.53336711e-02 - art_sys_24: 4.47270074e-15 - art_sys_25: 1.95031070e-15 - art_sys_26: 5.62366960e-17 - art_sys_27: 1.54709660e-16 - art_sys_28: 9.13107001e-20 - art_sys_29: 5.35995976e-18 - art_sys_30: 1.34812541e-15 - art_sys_31: -7.30033632e-16 - art_sys_32: -3.13580045e-18 - art_sys_33: 2.56534383e-18 - art_sys_34: 1.39836169e-14 +- art_sys_1: 8.13604987e-01 + art_sys_2: -1.94031515e+00 + art_sys_3: -4.91972951e-14 + art_sys_4: -2.04320733e-14 + art_sys_5: 1.27840289e-15 + art_sys_6: 1.30413505e+00 + art_sys_7: 1.38594237e-14 + art_sys_8: 2.46078937e-14 + art_sys_9: -2.63797271e-14 + art_sys_10: -1.96022707e+00 + art_sys_11: 3.36479079e-15 + art_sys_12: -4.03088312e-15 + art_sys_13: 3.11409182e+00 + art_sys_14: 2.06793898e-15 + art_sys_15: -4.64923628e-17 + art_sys_16: 1.47342263e-14 + art_sys_17: 6.70494399e-01 + art_sys_18: 9.07633893e-15 + art_sys_19: 1.78617163e-14 + art_sys_20: 2.77156420e-01 + art_sys_21: -1.24049833e-14 + art_sys_22: 7.45938931e-15 + art_sys_23: -4.53336711e-02 + art_sys_24: -1.18802129e-15 + art_sys_25: -3.41020874e-16 + art_sys_26: -3.00040700e-16 + art_sys_27: 1.17493048e-17 + art_sys_28: -1.76072625e-15 + art_sys_29: -5.85699997e-16 + art_sys_30: 2.88150788e-17 + art_sys_31: 3.59063888e-18 + art_sys_32: 1.16275487e-17 + art_sys_33: 5.23280998e-18 + art_sys_34: -3.28842265e-13 art_sys_35: -4.44004161e-04 - art_sys_36: -2.07641832e-17 - art_sys_37: -8.61688351e-15 - art_sys_38: 9.99386308e-19 - art_sys_39: -1.00159558e-04 - art_sys_40: -6.03650297e-15 - art_sys_41: -9.45658350e-16 - art_sys_42: -2.37235231e-15 - art_sys_43: -8.97903018e-18 - art_sys_44: 1.92220093e-18 - art_sys_45: 7.78407135e-21 - art_sys_46: 1.58459680e-05 - art_sys_47: -8.45103025e-16 - art_sys_48: -7.18985486e-17 - art_sys_49: 4.10460960e-18 - art_sys_50: 6.54436644e-18 - art_sys_51: 2.28811831e-18 - art_sys_52: 2.46296126e-18 - art_sys_53: -1.09048724e-16 - art_sys_54: 1.84809486e-15 - art_sys_55: 8.02521733e-07 - art_sys_56: -2.68858761e-17 - art_sys_57: 4.40410472e-16 - art_sys_58: -1.31948491e-07 - art_sys_59: 3.11831155e-19 - art_sys_60: 3.24431017e-20 - art_sys_61: 1.70445296e-20 - art_sys_62: 6.87397120e-21 - art_sys_63: 6.20026846e-21 - art_sys_64: 4.22975436e-20 - art_sys_65: 3.46192959e-21 - art_sys_66: -1.89172539e-22 - art_sys_67: -1.34793713e-22 - art_sys_68: 8.33508860e-17 - art_sys_69: -1.03053116e-17 - art_sys_70: 7.95530418e-17 - art_sys_71: 8.92553417e-17 - art_sys_72: -2.13631769e-20 - art_sys_73: -2.45072302e-08 - art_sys_74: 5.05293866e-18 - art_sys_75: 2.07078550e-23 - art_sys_76: -1.05191285e-23 - art_sys_77: -1.65171216e-23 - art_sys_78: 3.32320825e-16 - art_sys_79: -1.84297315e-16 - art_sys_80: 6.63676497e-24 - art_sys_81: 1.69860802e-24 - art_sys_82: 9.78242731e-26 - art_sys_83: 7.14293394e-21 - art_sys_84: 1.10362652e-17 - art_sys_85: 7.36747093e-10 - art_sys_86: 5.62598790e-21 - art_sys_87: -1.35387217e-18 - art_sys_88: -7.89953326e-26 - art_sys_89: -1.72464582e-23 - art_sys_90: 3.17453896e-18 - art_sys_91: 9.29905064e-11 - art_sys_92: 4.78228437e-18 - art_sys_93: -3.01682547e-22 - art_sys_94: -4.27878905e-25 - art_sys_95: 7.75881897e-19 - art_sys_96: -2.29047748e-12 - art_sys_97: 9.92632832e-19 - art_sys_98: 2.41522016e-21 - art_sys_99: -4.09557171e-23 - art_sys_100: 1.20313137e-27 - art_sys_101: -8.17233858e-28 - art_sys_102: 1.15428600e-18 - art_sys_103: 8.92275492e-24 - art_sys_104: -7.85188067e-19 - art_sys_105: 1.92601951e-23 - art_sys_106: 6.83500468e-23 - art_sys_107: -4.61924080e-19 - art_sys_108: -6.64726279e-25 - art_sys_109: -2.30462186e-19 - art_sys_110: -4.12355642e-23 - art_sys_111: 2.52668245e-26 - art_sys_112: 9.80702995e-20 - art_sys_113: -3.76174979e-20 - art_sys_114: 1.35523925e-20 - art_sys_115: -5.34380277e-25 - art_sys_116: -3.83418456e-21 - art_sys_117: -3.62028271e-15 - art_sys_118: 1.28829712e-21 - art_sys_119: 1.00380611e-26 - art_sys_120: 2.18563517e-26 - art_sys_121: -6.62072708e-27 - art_sys_122: 5.19178787e-27 - art_sys_123: -1.65831157e-25 - art_sys_124: -7.16455928e-27 - art_sys_125: 2.13409865e-22 - art_sys_126: 4.25145579e-27 - art_sys_127: 1.44452952e-23 - art_sys_128: -1.54783700e-27 - art_sys_129: -4.50925805e-27 - art_sys_130: -5.09949296e-23 - art_sys_131: 4.63000937e-23 - art_sys_132: -2.86966327e-30 - art_sys_133: -2.14336756e-27 - art_sys_134: 2.87673483e-26 - art_sys_135: 6.50926967e-30 - art_sys_136: 2.91565873e-29 - art_sys_137: -2.19321625e-30 - art_sys_138: 1.38979971e-29 - art_sys_139: 1.33672483e-29 - art_sys_140: -4.61487419e-30 - art_sys_141: -3.47032751e-31 - art_sys_142: -3.22741733e-30 - art_sys_143: 4.03540437e-31 - art_sys_144: 4.36101203e-31 - art_sys_145: 5.68116062e-30 - art_sys_146: 3.73675080e-30 - art_sys_147: 2.67748741e-30 - art_sys_148: 4.81426262e-31 - art_sys_149: 2.97598704e-31 - art_sys_150: -2.54931587e-31 - art_sys_151: 1.55096435e-32 - art_sys_152: -7.65865774e-35 - art_sys_153: 9.67923493e-35 - art_sys_154: -2.74923217e-35 - art_sys_155: 2.13298267e-36 - art_sys_156: 2.17077984e-37 - art_sys_157: 3.76504046e-38 - art_sys_158: -5.64506026e-38 - art_sys_159: 1.43991868e-38 - art_sys_160: -9.23011706e-38 - art_sys_161: 5.41452701e-37 - art_sys_162: -4.73653064e-38 - art_sys_163: 2.22068399e-38 - art_sys_164: -4.48051049e-38 - art_sys_165: -6.85204601e-39 - art_sys_166: -1.99810259e-38 - art_sys_167: -6.79593280e-37 - art_sys_168: -1.81443426e-29 - art_sys_169: -7.02608719e-39 - art_sys_170: 2.77497139e-31 - art_sys_171: 6.61222807e-30 - art_sys_172: -1.63759137e-39 - art_sys_173: -2.96740976e-40 - art_sys_174: -4.57400626e-31 - art_sys_175: 0.0 - art_sys_176: -3.93890975e-32 - art_sys_177: 0.0 - art_sys_178: -6.20616892e-33 - art_sys_179: 5.54383840e-35 - art_sys_180: -1.99615962e-38 - art_sys_181: 4.37163713e-42 - art_sys_182: 0.0 - art_sys_183: 6.41046773e-41 - art_sys_184: 1.10364497e-39 - art_sys_185: -8.18931697e-43 + art_sys_36: -1.42476711e-16 + art_sys_37: 3.82712978e-14 + art_sys_38: -1.07759571e-18 + art_sys_39: -1.00159559e-04 + art_sys_40: 4.37336164e-13 + art_sys_41: 2.73750073e-16 + art_sys_42: -1.75849331e-13 + art_sys_43: 3.49537619e-19 + art_sys_44: 4.16433649e-20 + art_sys_45: 2.74566306e-19 + art_sys_46: 1.58459678e-05 + art_sys_47: -2.59301013e-16 + art_sys_48: 1.61279041e-15 + art_sys_49: -1.02138915e-17 + art_sys_50: 5.84238643e-18 + art_sys_51: 2.50851298e-18 + art_sys_52: 3.00212037e-19 + art_sys_53: 1.10549587e-19 + art_sys_54: -2.14179902e-20 + art_sys_55: -5.02281658e-18 + art_sys_56: -3.09324295e-17 + art_sys_57: 5.10517298e-16 + art_sys_58: -9.37434303e-20 + art_sys_59: 1.11846238e-20 + art_sys_60: -4.57122659e-15 + art_sys_61: -8.02521794e-07 + art_sys_62: 8.54717192e-16 + art_sys_63: 3.09086125e-17 + art_sys_64: 1.08640176e-15 + art_sys_65: -2.74539348e-21 + art_sys_66: -6.39450700e-22 + art_sys_67: -1.31948493e-07 + art_sys_68: 2.02504728e-16 + art_sys_69: -2.00555816e-18 + art_sys_70: -3.99737950e-17 + art_sys_71: -8.61241451e-17 + art_sys_72: -2.45072302e-08 + art_sys_73: 1.80817579e-20 + art_sys_74: -4.09585060e-20 + art_sys_75: -1.77461322e-21 + art_sys_76: -1.41746745e-23 + art_sys_77: -8.85205908e-17 + art_sys_78: -1.03859478e-20 + art_sys_79: -4.12431213e-21 + art_sys_80: 3.48750155e-20 + art_sys_81: 8.26683307e-22 + art_sys_82: -1.44172966e-21 + art_sys_83: -1.08730652e-22 + art_sys_84: 1.92131027e-21 + art_sys_85: -2.44130246e-22 + art_sys_86: -1.00435115e-23 + art_sys_87: -1.49797000e-16 + art_sys_88: 4.18727465e-24 + art_sys_89: 2.48932203e-24 + art_sys_90: 8.37948866e-17 + art_sys_91: 1.35003760e-18 + art_sys_92: 1.92867992e-16 + art_sys_93: 7.36746692e-10 + art_sys_94: -2.70768509e-16 + art_sys_95: 4.33723628e-22 + art_sys_96: 9.98719485e-27 + art_sys_97: 6.50199816e-22 + art_sys_98: -2.25578857e-17 + art_sys_99: -9.29814416e-11 + art_sys_100: 1.90579213e-22 + art_sys_101: -9.69082892e-19 + art_sys_102: -3.02170629e-18 + art_sys_103: 2.01989885e-22 + art_sys_104: -2.28883319e-12 + art_sys_105: -5.77777019e-19 + art_sys_106: 3.68110269e-22 + art_sys_107: 4.23676152e-27 + art_sys_108: 6.69283256e-28 + art_sys_109: -1.93658419e-27 + art_sys_110: -3.44416076e-22 + art_sys_111: 1.82469016e-19 + art_sys_112: 4.08964853e-24 + art_sys_113: -3.46967240e-28 + art_sys_114: -7.47979160e-20 + art_sys_115: 1.35966866e-24 + art_sys_116: -2.18029970e-23 + art_sys_117: 3.24509846e-20 + art_sys_118: 4.13903412e-25 + art_sys_119: -1.04906297e-20 + art_sys_120: -3.98613649e-23 + art_sys_121: 2.46918085e-26 + art_sys_122: -3.62917600e-21 + art_sys_123: -1.15743814e-21 + art_sys_124: -4.26401965e-27 + art_sys_125: 2.14236678e-23 + art_sys_126: 3.82222962e-27 + art_sys_127: 5.32151631e-22 + art_sys_128: 7.92060389e-27 + art_sys_129: -1.72124875e-22 + art_sys_130: 8.48496222e-27 + art_sys_131: -1.18324487e-24 + art_sys_132: 8.26996261e-24 + art_sys_133: 1.79867905e-26 + art_sys_134: 3.60328902e-29 + art_sys_135: 2.76019333e-23 + art_sys_136: -4.22631656e-26 + art_sys_137: 2.09258565e-29 + art_sys_138: 7.56535804e-15 + art_sys_139: 4.05637065e-25 + art_sys_140: 4.72741995e-26 + art_sys_141: 1.47488096e-22 + art_sys_142: -1.82847092e-24 + art_sys_143: 8.87597979e-30 + art_sys_144: -1.53331362e-28 + art_sys_145: 1.33296015e-27 + art_sys_146: -0.0 + art_sys_147: 1.04541011e-25 + art_sys_148: -1.35311601e-24 + art_sys_149: -1.35311601e-24 + art_sys_150: -2.76243920e-26 + art_sys_151: -2.76243920e-26 + art_sys_152: 1.35438024e-24 + art_sys_153: -1.31226264e-25 + art_sys_154: -2.96913501e-29 + art_sys_155: -4.21689215e-37 + art_sys_156: 8.22513567e-42 + art_sys_157: -1.02525507e-41 + art_sys_158: -0.0 + art_sys_159: 1.12600146e-28 + art_sys_160: 7.36845871e-29 + art_sys_161: -2.85128246e-28 + art_sys_162: 3.54109341e-29 + art_sys_163: 2.35627685e-28 + art_sys_164: -1.95179321e-29 + art_sys_165: 1.78450509e-29 + art_sys_166: -3.75914788e-35 + art_sys_167: -8.18248667e-36 + art_sys_168: -5.76948961e-36 + art_sys_169: 4.15498484e-35 + art_sys_170: 1.43176254e-34 + art_sys_171: -7.78160156e-34 + art_sys_172: 1.98081788e-32 + art_sys_173: 1.35779784e-33 + art_sys_174: 1.44228645e-34 + art_sys_175: -8.11484410e-40 + art_sys_176: -2.36682160e-36 + art_sys_177: 8.07795364e-35 + art_sys_178: -1.51836843e-35 + art_sys_179: 7.10332396e-37 + art_sys_180: -2.08623289e-38 + art_sys_181: 2.17812895e-37 + art_sys_182: -1.03802556e-38 + art_sys_183: 3.04450857e-40 + art_sys_184: -3.49725342e-42 + art_sys_185: 3.60063230e-44 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -67169,191 +67169,191 @@ bins: RelativeStatFSR-: -1.32639266e+00 luminosity_uncertainty: 9.628996 uncorrelated_uncertainty: 3.70346 -- art_sys_1: 2.77738221e-01 - art_sys_2: 2.79283899e-15 - art_sys_3: 6.15880279e-01 - art_sys_4: 4.13126362e-14 - art_sys_5: -7.92686630e-15 - art_sys_6: 1.39595437e+00 - art_sys_7: -7.63080515e-15 - art_sys_8: -1.51316564e-14 - art_sys_9: 4.74790506e-14 - art_sys_10: -3.48361807e-01 - art_sys_11: -5.58706410e-14 - art_sys_12: -5.88051134e-15 - art_sys_13: -1.54251751e+00 - art_sys_14: 2.45466315e-15 - art_sys_15: -2.60930366e-14 - art_sys_16: -6.81161724e-14 - art_sys_17: 1.53012526e+00 - art_sys_18: 3.51589156e-15 - art_sys_19: -5.74026823e-15 - art_sys_20: 4.51532656e-01 - art_sys_21: -6.16259219e-15 - art_sys_22: -1.00170259e-13 - art_sys_23: -1.13162122e-01 - art_sys_24: -4.11838375e-15 - art_sys_25: -2.72220757e-15 - art_sys_26: -2.55372037e-16 - art_sys_27: -3.95385312e-16 - art_sys_28: -1.04178780e-17 - art_sys_29: -1.41053539e-17 - art_sys_30: -2.84345588e-15 - art_sys_31: 9.12847309e-16 - art_sys_32: 8.56076659e-18 - art_sys_33: -5.06022236e-18 - art_sys_34: -3.61700916e-14 +- art_sys_1: -2.77738221e-01 + art_sys_2: -6.15880279e-01 + art_sys_3: 1.50793257e-14 + art_sys_4: -1.05198892e-13 + art_sys_5: 1.23374272e-14 + art_sys_6: -1.39595437e+00 + art_sys_7: 2.47492715e-14 + art_sys_8: -4.94992654e-15 + art_sys_9: -6.30679300e-15 + art_sys_10: 3.48361807e-01 + art_sys_11: 1.37329266e-14 + art_sys_12: -1.06835992e-14 + art_sys_13: 1.54251751e+00 + art_sys_14: -2.31818011e-15 + art_sys_15: -2.38032836e-15 + art_sys_16: 5.41636772e-15 + art_sys_17: -1.53012526e+00 + art_sys_18: 7.47287398e-14 + art_sys_19: 4.43708251e-14 + art_sys_20: -4.51532656e-01 + art_sys_21: 1.27794532e-14 + art_sys_22: -1.24035651e-14 + art_sys_23: 1.13162122e-01 + art_sys_24: 1.46832351e-15 + art_sys_25: 9.40689982e-16 + art_sys_26: 7.73331500e-16 + art_sys_27: -3.91374507e-17 + art_sys_28: 3.01904491e-15 + art_sys_29: 7.76793634e-16 + art_sys_30: -7.68499965e-17 + art_sys_31: -7.62559060e-18 + art_sys_32: -3.41140539e-17 + art_sys_33: -1.01632147e-17 + art_sys_34: 8.47446626e-13 art_sys_35: 1.14309874e-03 - art_sys_36: 5.04190819e-17 - art_sys_37: 2.69933734e-14 - art_sys_38: 1.66700556e-18 + art_sys_36: 2.74582154e-16 + art_sys_37: -1.17968866e-13 + art_sys_38: -1.35757279e-19 art_sys_39: 3.09971643e-04 - art_sys_40: 1.86992707e-14 - art_sys_41: 1.30629884e-15 - art_sys_42: 8.51843495e-15 - art_sys_43: -8.58811193e-19 - art_sys_44: 6.37927692e-19 - art_sys_45: 9.06422699e-20 - art_sys_46: -5.46495940e-05 - art_sys_47: 2.82180634e-15 - art_sys_48: 2.11657888e-16 - art_sys_49: -1.34891631e-17 - art_sys_50: 2.99110300e-18 - art_sys_51: -6.21551864e-18 - art_sys_52: -8.06172357e-18 - art_sys_53: 3.58815136e-16 - art_sys_54: -6.06423154e-15 - art_sys_55: -2.64207371e-06 - art_sys_56: 9.44138309e-17 - art_sys_57: -1.42905488e-15 - art_sys_58: 4.84518830e-07 - art_sys_59: -1.13453934e-18 - art_sys_60: -1.18346089e-19 - art_sys_61: -6.18029717e-20 - art_sys_62: -2.49768583e-20 - art_sys_63: -2.26365543e-20 - art_sys_64: 1.01399907e-19 - art_sys_65: -1.26212088e-20 - art_sys_66: 6.86710314e-22 - art_sys_67: -1.50931328e-26 - art_sys_68: -3.06869626e-16 - art_sys_69: 3.78784622e-17 - art_sys_70: -2.51719727e-16 - art_sys_71: -3.24733006e-16 - art_sys_72: 8.82770012e-21 - art_sys_73: 8.91135508e-08 - art_sys_74: -1.81201945e-17 - art_sys_75: -7.64485514e-23 - art_sys_76: 4.43401073e-23 - art_sys_77: 6.10688912e-23 - art_sys_78: -1.23501836e-15 - art_sys_79: 6.63840269e-16 - art_sys_80: -2.47086903e-23 - art_sys_81: -6.32950536e-24 - art_sys_82: -4.13406641e-25 - art_sys_83: 2.26565502e-22 - art_sys_84: -2.05896403e-17 - art_sys_85: -2.73782361e-09 - art_sys_86: 4.97333303e-21 - art_sys_87: 2.04508837e-18 - art_sys_88: 2.97379103e-25 - art_sys_89: 6.62791787e-23 - art_sys_90: 3.04294852e-18 - art_sys_91: -3.42566171e-10 - art_sys_92: -7.94333102e-18 - art_sys_93: 3.60510305e-22 - art_sys_94: 5.63481062e-23 - art_sys_95: 4.97300172e-19 - art_sys_96: 7.55857207e-12 - art_sys_97: -1.27799884e-18 - art_sys_98: -2.60063678e-21 - art_sys_99: 3.04895803e-23 - art_sys_100: -3.74600647e-27 - art_sys_101: 2.45097899e-27 - art_sys_102: -1.50975708e-18 - art_sys_103: -1.31602535e-24 - art_sys_104: 1.01111718e-18 - art_sys_105: -1.25969024e-26 - art_sys_106: 1.45785147e-23 - art_sys_107: 6.03856039e-19 - art_sys_108: 1.71868604e-25 - art_sys_109: 2.97537599e-19 - art_sys_110: 2.88787871e-23 - art_sys_111: -4.08119097e-26 - art_sys_112: -1.24384750e-19 - art_sys_113: 4.79937704e-20 - art_sys_114: -1.74375001e-20 - art_sys_115: 1.28619112e-25 - art_sys_116: 4.92493048e-21 - art_sys_117: 1.37231428e-14 - art_sys_118: -1.48602382e-21 - art_sys_119: -1.29234505e-26 - art_sys_120: -2.48850646e-26 - art_sys_121: 1.25428467e-26 - art_sys_122: -9.50708837e-27 - art_sys_123: 7.35093842e-26 - art_sys_124: 2.28698076e-26 - art_sys_125: -2.03736090e-22 - art_sys_126: -1.82127003e-26 - art_sys_127: 5.22685575e-24 - art_sys_128: 4.35444619e-27 - art_sys_129: 1.82866299e-26 - art_sys_130: 1.93784153e-22 - art_sys_131: -1.75636742e-22 - art_sys_132: 9.98618003e-30 - art_sys_133: 8.12679594e-27 - art_sys_134: -1.08865363e-25 - art_sys_135: -4.27245680e-29 - art_sys_136: -3.99304181e-30 - art_sys_137: -1.94293291e-30 - art_sys_138: -2.87490307e-29 - art_sys_139: -1.18078340e-29 - art_sys_140: 2.93603680e-30 - art_sys_141: 5.66085628e-31 - art_sys_142: 7.28113520e-31 - art_sys_143: 2.81309572e-31 - art_sys_144: -1.17818998e-30 - art_sys_145: 6.26366496e-30 - art_sys_146: 4.72829162e-30 - art_sys_147: 1.91004452e-30 - art_sys_148: 1.59470109e-30 - art_sys_149: -2.06978032e-31 - art_sys_150: 1.73914032e-31 - art_sys_151: -3.31837620e-32 - art_sys_152: 3.77168548e-34 - art_sys_153: 1.10406664e-34 - art_sys_154: 4.26689608e-36 - art_sys_155: 2.82190328e-36 - art_sys_156: 1.99128105e-37 - art_sys_157: -4.95650600e-38 - art_sys_158: 1.12228078e-37 - art_sys_159: -2.62826754e-38 - art_sys_160: 3.44942514e-37 - art_sys_161: -1.97105354e-36 - art_sys_162: 1.55379620e-37 - art_sys_163: -1.75994696e-38 - art_sys_164: -1.15804055e-37 - art_sys_165: 9.55901437e-38 - art_sys_166: 1.74292412e-38 - art_sys_167: 2.63082748e-37 - art_sys_168: 2.96379154e-29 - art_sys_169: 6.04602679e-39 - art_sys_170: 1.39220867e-30 - art_sys_171: -4.21174890e-30 - art_sys_172: 3.47078730e-39 - art_sys_173: 1.50843409e-39 - art_sys_174: 2.62566130e-31 - art_sys_175: 0.0 - art_sys_176: 1.27305638e-31 - art_sys_177: 0.0 - art_sys_178: 2.38658405e-32 - art_sys_179: -2.14939419e-34 - art_sys_180: 6.97794589e-38 - art_sys_181: -1.65372447e-41 - art_sys_182: 0.0 - art_sys_183: -2.42989766e-40 - art_sys_184: -4.19029667e-39 - art_sys_185: 3.10473995e-42 + art_sys_40: -1.35349482e-12 + art_sys_41: -2.70641986e-16 + art_sys_42: 6.06926877e-13 + art_sys_43: -2.08854249e-19 + art_sys_44: -4.19379396e-20 + art_sys_45: -7.51677550e-20 + art_sys_46: -5.46495932e-05 + art_sys_47: 7.33292784e-16 + art_sys_48: -5.36199560e-15 + art_sys_49: 3.42811520e-17 + art_sys_50: -1.99141646e-17 + art_sys_51: -7.33203354e-18 + art_sys_52: -9.11959994e-19 + art_sys_53: -3.36411297e-19 + art_sys_54: 8.50720328e-20 + art_sys_55: 6.81351910e-18 + art_sys_56: 9.70365649e-17 + art_sys_57: -1.99557462e-15 + art_sys_58: 3.33265591e-19 + art_sys_59: -3.74552850e-20 + art_sys_60: 1.50189598e-14 + art_sys_61: 2.64207391e-06 + art_sys_62: -2.80085133e-15 + art_sys_63: -1.13277496e-16 + art_sys_64: -3.92855733e-15 + art_sys_65: 1.16068485e-20 + art_sys_66: 2.37764363e-21 + art_sys_67: 4.84518836e-07 + art_sys_68: -7.52216537e-16 + art_sys_69: 6.68162314e-18 + art_sys_70: 7.29647595e-17 + art_sys_71: 3.13291042e-16 + art_sys_72: 8.91135509e-08 + art_sys_73: -6.65677172e-20 + art_sys_74: 1.52035898e-19 + art_sys_75: 6.58447410e-21 + art_sys_76: 5.28401387e-23 + art_sys_77: 3.28839039e-16 + art_sys_78: 1.44209269e-20 + art_sys_79: 1.52799187e-20 + art_sys_80: -1.33950814e-19 + art_sys_81: -3.03312844e-21 + art_sys_82: 5.34322728e-21 + art_sys_83: 5.86061360e-22 + art_sys_84: -7.13205357e-21 + art_sys_85: 9.06242240e-22 + art_sys_86: 3.74539365e-23 + art_sys_87: 5.54007211e-16 + art_sys_88: -1.54428771e-23 + art_sys_89: -9.28136780e-24 + art_sys_90: -3.39681805e-16 + art_sys_91: -5.08033530e-18 + art_sys_92: -7.00788516e-16 + art_sys_93: -2.73782178e-09 + art_sys_94: 9.84681571e-16 + art_sys_95: -8.16675977e-22 + art_sys_96: -5.46157696e-26 + art_sys_97: 4.55956534e-22 + art_sys_98: 7.81343433e-17 + art_sys_99: 3.42532523e-10 + art_sys_100: -2.32025280e-22 + art_sys_101: 9.47607761e-18 + art_sys_102: 9.86620161e-18 + art_sys_103: 2.57627520e-22 + art_sys_104: 7.55267276e-12 + art_sys_105: 8.58589808e-19 + art_sys_106: -8.58275527e-23 + art_sys_107: -1.40354121e-26 + art_sys_108: -6.66839547e-28 + art_sys_109: 7.04004295e-27 + art_sys_110: 8.64635718e-24 + art_sys_111: -1.41738178e-19 + art_sys_112: 4.59804870e-24 + art_sys_113: 1.71941915e-28 + art_sys_114: 2.03484744e-20 + art_sys_115: 2.38238025e-24 + art_sys_116: 6.25954287e-23 + art_sys_117: 8.89192389e-21 + art_sys_118: 1.46098873e-26 + art_sys_119: -1.03428254e-20 + art_sys_120: 1.80113540e-23 + art_sys_121: -1.29228813e-25 + art_sys_122: -5.89576051e-21 + art_sys_123: -2.56018513e-21 + art_sys_124: -2.91235683e-27 + art_sys_125: 2.95841695e-25 + art_sys_126: 1.66310815e-26 + art_sys_127: 1.00874492e-21 + art_sys_128: 1.64101527e-26 + art_sys_129: -3.22450189e-22 + art_sys_130: 4.06193839e-26 + art_sys_131: 6.28392465e-25 + art_sys_132: 1.68618489e-22 + art_sys_133: 4.19188638e-25 + art_sys_134: 9.08008093e-28 + art_sys_135: -3.68833536e-23 + art_sys_136: 6.51239678e-26 + art_sys_137: -6.99381724e-29 + art_sys_138: -2.86775690e-14 + art_sys_139: -2.36843409e-23 + art_sys_140: -3.60929305e-24 + art_sys_141: -5.58175266e-22 + art_sys_142: 6.97898076e-24 + art_sys_143: -1.68560955e-29 + art_sys_144: 6.37756978e-28 + art_sys_145: -4.97908825e-27 + art_sys_146: 0.0 + art_sys_147: -3.28208548e-25 + art_sys_148: 4.52510037e-24 + art_sys_149: 4.52510037e-24 + art_sys_150: 7.36854998e-25 + art_sys_151: 7.36854998e-25 + art_sys_152: 3.91846504e-24 + art_sys_153: -1.63703089e-25 + art_sys_154: 3.12807698e-28 + art_sys_155: -8.36932588e-37 + art_sys_156: -1.52220125e-41 + art_sys_157: 1.83981243e-41 + art_sys_158: 0.0 + art_sys_159: 2.86336190e-29 + art_sys_160: -1.01395296e-28 + art_sys_161: 1.38858460e-28 + art_sys_162: 5.14495278e-30 + art_sys_163: 3.10967135e-28 + art_sys_164: -1.56403923e-28 + art_sys_165: 9.30274363e-29 + art_sys_166: -1.27473557e-34 + art_sys_167: 3.02125487e-35 + art_sys_168: -2.53505957e-36 + art_sys_169: -2.69915964e-35 + art_sys_170: 2.67109122e-35 + art_sys_171: -4.99932237e-34 + art_sys_172: 1.22454996e-32 + art_sys_173: -3.13307206e-33 + art_sys_174: -4.90133951e-34 + art_sys_175: 3.05088645e-39 + art_sys_176: 1.40468353e-34 + art_sys_177: -8.04968306e-35 + art_sys_178: 1.22149012e-35 + art_sys_179: -5.57219761e-37 + art_sys_180: 1.78674768e-38 + art_sys_181: -8.88112422e-39 + art_sys_182: 6.38032113e-39 + art_sys_183: -4.16885145e-40 + art_sys_184: 1.50297663e-42 + art_sys_185: -9.87188312e-44 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -67460,191 +67460,191 @@ bins: RelativeStatFSR-: -5.92940754e-01 luminosity_uncertainty: 3.924076 uncorrelated_uncertainty: 1.50926000e+00 -- art_sys_1: 5.38471507e-02 - art_sys_2: -2.61602218e-14 - art_sys_3: -3.94903621e-02 - art_sys_4: 5.95301356e-14 - art_sys_5: 3.32839831e-14 - art_sys_6: 1.09030774e-01 - art_sys_7: -1.73591701e-14 - art_sys_8: -1.56048810e-14 - art_sys_9: 4.51201509e-15 - art_sys_10: -1.50259086e-01 - art_sys_11: -1.53861884e-15 - art_sys_12: -5.27260513e-15 - art_sys_13: 1.37386664e-01 - art_sys_14: -3.77494584e-15 - art_sys_15: 1.85421260e-15 - art_sys_16: 1.43546358e-14 - art_sys_17: 1.10829645e+00 - art_sys_18: 1.70149684e-15 - art_sys_19: -5.40024356e-16 - art_sys_20: -7.77156044e-01 - art_sys_21: -9.41032194e-15 - art_sys_22: 1.91509130e-13 - art_sys_23: 1.97939796e-01 - art_sys_24: 2.93000745e-15 - art_sys_25: 7.57339755e-17 - art_sys_26: 1.52668517e-15 - art_sys_27: 2.35577336e-15 - art_sys_28: -3.73379260e-17 - art_sys_29: 8.88899593e-17 - art_sys_30: 3.34014861e-15 - art_sys_31: -1.14665389e-15 - art_sys_32: -5.96279316e-17 - art_sys_33: 2.83935442e-17 - art_sys_34: 2.19448640e-13 +- art_sys_1: -5.38471507e-02 + art_sys_2: 3.94903621e-02 + art_sys_3: -5.07136479e-14 + art_sys_4: -6.41186927e-14 + art_sys_5: 3.18839633e-14 + art_sys_6: -1.09030774e-01 + art_sys_7: 3.05473045e-14 + art_sys_8: -1.32133362e-14 + art_sys_9: -2.13615634e-14 + art_sys_10: 1.50259086e-01 + art_sys_11: -8.13361336e-14 + art_sys_12: 4.70837467e-15 + art_sys_13: -1.37386664e-01 + art_sys_14: -6.52326925e-17 + art_sys_15: 5.62280453e-16 + art_sys_16: -4.45324113e-16 + art_sys_17: -1.10829645e+00 + art_sys_18: 2.04964471e-14 + art_sys_19: 8.77640646e-15 + art_sys_20: 7.77156044e-01 + art_sys_21: 2.44509827e-14 + art_sys_22: 2.27338528e-14 + art_sys_23: -1.97939796e-01 + art_sys_24: -1.04379143e-15 + art_sys_25: -5.80230577e-15 + art_sys_26: -4.70518194e-15 + art_sys_27: 2.44392530e-16 + art_sys_28: -3.85020945e-15 + art_sys_29: -9.86984019e-16 + art_sys_30: 4.16608312e-16 + art_sys_31: 5.27039036e-17 + art_sys_32: 1.68287478e-16 + art_sys_33: 6.37939433e-17 + art_sys_34: -5.07479035e-12 art_sys_35: -6.83773606e-03 - art_sys_36: -3.12225307e-16 - art_sys_37: -1.19371154e-13 - art_sys_38: -6.14939802e-18 + art_sys_36: -1.49005212e-15 + art_sys_37: 5.18703005e-13 + art_sys_38: 2.06541878e-18 art_sys_39: -1.36506946e-03 - art_sys_40: -8.24055139e-14 - art_sys_41: -1.82389482e-15 - art_sys_42: -4.16928141e-14 - art_sys_43: -1.46311089e-18 - art_sys_44: -1.08905545e-18 - art_sys_45: -2.03580272e-19 - art_sys_46: 2.61951664e-04 - art_sys_47: -1.41322517e-14 - art_sys_48: -5.38667317e-16 - art_sys_49: 6.88233650e-17 - art_sys_50: 3.91942170e-17 - art_sys_51: 3.65359749e-17 - art_sys_52: 4.12649890e-17 - art_sys_53: -1.83052701e-15 - art_sys_54: 3.03872349e-14 - art_sys_55: 1.34784043e-05 - art_sys_56: -4.50540538e-16 - art_sys_57: 6.26699249e-15 - art_sys_58: -2.26801094e-06 - art_sys_59: 5.52352780e-18 - art_sys_60: 5.73825688e-19 - art_sys_61: 3.02205957e-19 - art_sys_62: 1.21657655e-19 - art_sys_63: 1.09642792e-19 - art_sys_64: -4.96776229e-19 - art_sys_65: 6.14732824e-20 - art_sys_66: -3.35165111e-21 - art_sys_67: 2.15676573e-21 - art_sys_68: 1.49006864e-15 - art_sys_69: -1.76171053e-16 - art_sys_70: 1.12664258e-15 - art_sys_71: 1.58112247e-15 - art_sys_72: 2.79780636e-20 - art_sys_73: -4.34302708e-07 - art_sys_74: 9.13056477e-17 - art_sys_75: 3.60650693e-22 - art_sys_76: -2.11243821e-22 - art_sys_77: -2.89194816e-22 - art_sys_78: 5.81790339e-15 - art_sys_79: -3.22863483e-15 - art_sys_80: 1.16050781e-22 - art_sys_81: 2.95809730e-23 - art_sys_82: 1.48862535e-24 - art_sys_83: 1.04256426e-21 - art_sys_84: 5.74069948e-17 - art_sys_85: 1.28989070e-08 - art_sys_86: 1.13760665e-20 - art_sys_87: -3.53311745e-18 - art_sys_88: -1.43598205e-24 - art_sys_89: -6.82741612e-23 - art_sys_90: -3.92089260e-17 - art_sys_91: 1.66213986e-09 - art_sys_92: 1.71826672e-17 - art_sys_93: -1.10393127e-22 - art_sys_94: 2.35868646e-23 - art_sys_95: -7.75705066e-18 - art_sys_96: -3.76756068e-11 - art_sys_97: 1.64538823e-18 - art_sys_98: 2.82431736e-21 - art_sys_99: 5.80518129e-24 - art_sys_100: 1.91657908e-26 - art_sys_101: -1.26023097e-26 - art_sys_102: 1.92532650e-18 - art_sys_103: 1.54072069e-24 - art_sys_104: -1.29768756e-18 - art_sys_105: 5.85708656e-26 - art_sys_106: 1.03236232e-22 - art_sys_107: -7.70504721e-19 - art_sys_108: 3.81104485e-26 - art_sys_109: -3.80904490e-19 - art_sys_110: -3.32223090e-23 - art_sys_111: 6.68182904e-26 - art_sys_112: 1.58824517e-19 - art_sys_113: -6.05935230e-20 - art_sys_114: 2.19388879e-20 - art_sys_115: 1.25082078e-24 - art_sys_116: -6.02493304e-21 - art_sys_117: -6.50757837e-14 - art_sys_118: 9.20961792e-22 - art_sys_119: 1.86166519e-26 - art_sys_120: 1.56431458e-26 - art_sys_121: -3.71407293e-26 - art_sys_122: 2.63107347e-26 - art_sys_123: 1.57496386e-25 - art_sys_124: -1.00790791e-25 - art_sys_125: -1.18127027e-22 - art_sys_126: 9.00626910e-26 - art_sys_127: -1.32636216e-22 - art_sys_128: -1.78999329e-26 - art_sys_129: -8.91303315e-26 - art_sys_130: -9.20433447e-22 - art_sys_131: 8.33348464e-22 - art_sys_132: -4.59397812e-29 - art_sys_133: -3.85430626e-26 - art_sys_134: 5.15929557e-25 - art_sys_135: 1.82615811e-28 - art_sys_136: 4.46654862e-29 - art_sys_137: 2.54555540e-29 - art_sys_138: 1.47634028e-28 - art_sys_139: -1.46282642e-29 - art_sys_140: -1.20930835e-30 - art_sys_141: -2.06424108e-30 - art_sys_142: 1.11093127e-29 - art_sys_143: -1.16105029e-30 - art_sys_144: 3.53918006e-31 - art_sys_145: -1.58857178e-30 - art_sys_146: -1.29717259e-30 - art_sys_147: 5.63641985e-30 - art_sys_148: -3.05096803e-31 - art_sys_149: -1.82558375e-31 - art_sys_150: 2.35014794e-31 - art_sys_151: -9.77224711e-32 - art_sys_152: -2.35097100e-35 - art_sys_153: -1.99332321e-36 - art_sys_154: 5.61816916e-36 - art_sys_155: -2.78142310e-36 - art_sys_156: -1.00519594e-36 - art_sys_157: 1.11166408e-36 - art_sys_158: -6.32160879e-37 - art_sys_159: 1.30660176e-37 - art_sys_160: -1.64847084e-36 - art_sys_161: 9.59677693e-36 - art_sys_162: -7.51957135e-37 - art_sys_163: 4.82089086e-38 - art_sys_164: 4.24858354e-37 - art_sys_165: -3.58240527e-37 - art_sys_166: -2.40320870e-38 - art_sys_167: -4.18849102e-37 - art_sys_168: -6.93468804e-29 - art_sys_169: -1.66613126e-38 - art_sys_170: -1.10121118e-29 - art_sys_171: -1.71511755e-29 - art_sys_172: 4.98485155e-39 - art_sys_173: -7.67133719e-39 - art_sys_174: 1.37178779e-30 - art_sys_175: 0.0 - art_sys_176: -5.66215146e-31 - art_sys_177: 0.0 - art_sys_178: -1.13555271e-31 - art_sys_179: 1.00743375e-33 - art_sys_180: -3.21767414e-37 - art_sys_181: 7.83787435e-41 - art_sys_182: 0.0 - art_sys_183: 1.15227010e-39 - art_sys_184: 1.98924601e-38 - art_sys_185: -1.47260310e-41 + art_sys_40: 5.96071626e-12 + art_sys_41: 2.29366215e-16 + art_sys_42: -2.91034169e-12 + art_sys_43: 2.89520666e-19 + art_sys_44: 1.30314276e-19 + art_sys_45: 1.61048039e-19 + art_sys_46: 2.61951660e-04 + art_sys_47: -4.33673012e-15 + art_sys_48: 2.36342049e-14 + art_sys_49: -1.73225572e-16 + art_sys_50: 9.60330442e-17 + art_sys_51: 4.08297413e-17 + art_sys_52: 4.92018441e-18 + art_sys_53: 1.82962003e-18 + art_sys_54: -3.74810420e-19 + art_sys_55: -3.04201889e-17 + art_sys_56: -4.93530834e-16 + art_sys_57: 8.89571744e-15 + art_sys_58: -1.62082247e-18 + art_sys_59: 1.87950223e-19 + art_sys_60: -7.71344544e-14 + art_sys_61: -1.34784053e-05 + art_sys_62: 1.43532598e-14 + art_sys_63: 5.32895374e-16 + art_sys_64: 1.80688526e-14 + art_sys_65: -6.29381445e-20 + art_sys_66: -1.06121256e-20 + art_sys_67: -2.26801097e-06 + art_sys_68: 3.54400249e-15 + art_sys_69: -3.24552942e-17 + art_sys_70: -2.48338958e-16 + art_sys_71: -1.52570791e-15 + art_sys_72: -4.34302708e-07 + art_sys_73: 3.16778931e-19 + art_sys_74: -7.15821580e-19 + art_sys_75: -3.14828525e-20 + art_sys_76: -2.47209157e-22 + art_sys_77: -1.54952674e-15 + art_sys_78: -1.77488088e-19 + art_sys_79: -7.21702810e-20 + art_sys_80: 6.43747098e-19 + art_sys_81: 1.46553178e-20 + art_sys_82: -2.53435167e-20 + art_sys_83: -2.39499735e-21 + art_sys_84: 3.37798454e-20 + art_sys_85: -4.26249612e-21 + art_sys_86: -1.77763657e-22 + art_sys_87: -2.65351591e-15 + art_sys_88: 7.32257156e-23 + art_sys_89: 4.31505340e-23 + art_sys_90: 1.66390469e-15 + art_sys_91: 2.41258269e-17 + art_sys_92: 3.37942244e-15 + art_sys_93: 1.28989039e-08 + art_sys_94: -4.75425692e-15 + art_sys_95: 3.92434125e-21 + art_sys_96: 2.22301375e-25 + art_sys_97: 3.30279990e-22 + art_sys_98: -3.88216050e-16 + art_sys_99: -1.66198087e-09 + art_sys_100: 2.04781279e-23 + art_sys_101: -5.82599775e-17 + art_sys_102: -4.18314347e-17 + art_sys_103: -1.14339459e-22 + art_sys_104: -3.76475940e-11 + art_sys_105: -1.84976488e-18 + art_sys_106: -5.95631619e-22 + art_sys_107: 7.20439023e-26 + art_sys_108: -1.15550848e-26 + art_sys_109: -3.87413954e-26 + art_sys_110: -1.89631056e-22 + art_sys_111: 3.07000552e-19 + art_sys_112: -2.29504398e-23 + art_sys_113: 2.37108558e-27 + art_sys_114: -1.37197819e-19 + art_sys_115: 4.15480884e-24 + art_sys_116: -8.45063667e-23 + art_sys_117: 5.97453885e-20 + art_sys_118: -3.90196755e-26 + art_sys_119: -2.30410726e-20 + art_sys_120: -6.91993842e-23 + art_sys_121: 1.18174923e-25 + art_sys_122: -8.43074952e-21 + art_sys_123: -3.15813904e-21 + art_sys_124: -8.16910050e-27 + art_sys_125: 2.67408297e-23 + art_sys_126: -1.53651198e-26 + art_sys_127: 1.28925393e-21 + art_sys_128: 6.83332040e-27 + art_sys_129: -3.36664685e-22 + art_sys_130: -7.65196489e-26 + art_sys_131: -1.74863394e-25 + art_sys_132: -6.43248802e-23 + art_sys_133: -3.03264565e-25 + art_sys_134: -8.76905126e-28 + art_sys_135: -4.06697930e-24 + art_sys_136: 1.34933489e-25 + art_sys_137: 2.84618766e-28 + art_sys_138: 1.35995728e-13 + art_sys_139: 1.35005347e-22 + art_sys_140: 2.05018232e-23 + art_sys_141: 2.64636484e-21 + art_sys_142: -3.31369110e-23 + art_sys_143: 5.76735917e-29 + art_sys_144: -3.07116528e-27 + art_sys_145: 2.35847581e-26 + art_sys_146: -0.0 + art_sys_147: 1.53287298e-24 + art_sys_148: -2.12626882e-23 + art_sys_149: -2.12626882e-23 + art_sys_150: -3.69246573e-24 + art_sys_151: -3.69246573e-24 + art_sys_152: -2.16903537e-23 + art_sys_153: 1.00048550e-24 + art_sys_154: -1.54995915e-27 + art_sys_155: 4.80506617e-36 + art_sys_156: 6.52735358e-41 + art_sys_157: -1.15135058e-40 + art_sys_158: -0.0 + art_sys_159: 1.61578557e-28 + art_sys_160: -3.80825170e-28 + art_sys_161: -3.02100309e-28 + art_sys_162: -9.50712228e-30 + art_sys_163: -1.27464696e-27 + art_sys_164: 4.48653063e-28 + art_sys_165: 1.96623061e-29 + art_sys_166: -1.63037175e-35 + art_sys_167: 9.64620629e-36 + art_sys_168: 6.40192669e-35 + art_sys_169: 2.04479458e-36 + art_sys_170: -1.30976994e-33 + art_sys_171: -3.53215445e-33 + art_sys_172: -5.02512274e-33 + art_sys_173: 7.71762238e-34 + art_sys_174: -3.51670763e-34 + art_sys_175: -1.44643204e-38 + art_sys_176: -5.84298382e-35 + art_sys_177: -4.80758923e-35 + art_sys_178: 1.09363038e-35 + art_sys_179: -7.62464172e-37 + art_sys_180: 4.56901336e-38 + art_sys_181: -1.57010576e-38 + art_sys_182: 2.31571122e-38 + art_sys_183: -1.48202664e-40 + art_sys_184: -1.73025737e-42 + art_sys_185: 4.42652666e-43 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -67751,191 +67751,191 @@ bins: RelativeStatFSR-: -2.67756830e-01 luminosity_uncertainty: 1.60086160e+00 uncorrelated_uncertainty: 6.15716000e-01 -- art_sys_1: -2.26037332e-03 - art_sys_2: 9.78206479e-14 - art_sys_3: -2.78712618e-02 - art_sys_4: -8.18139126e-14 - art_sys_5: 5.86580437e-15 - art_sys_6: -4.29249682e-02 - art_sys_7: -2.02000832e-14 - art_sys_8: -3.79658675e-15 - art_sys_9: 2.82651657e-14 - art_sys_10: 2.10163913e-03 - art_sys_11: 3.55602495e-15 - art_sys_12: 4.64767138e-15 - art_sys_13: 1.52718817e-01 - art_sys_14: 9.47687217e-16 - art_sys_15: 2.70610227e-15 - art_sys_16: 6.51124707e-15 - art_sys_17: 4.72527386e-02 - art_sys_18: -8.73897874e-17 - art_sys_19: 4.98092614e-16 - art_sys_20: -6.05817022e-01 - art_sys_21: -1.44940957e-15 - art_sys_22: 1.36979979e-13 - art_sys_23: -3.58815494e-01 - art_sys_24: 7.18145135e-15 - art_sys_25: 2.99829331e-16 - art_sys_26: -2.76367019e-15 - art_sys_27: -3.81590141e-15 - art_sys_28: -5.24484271e-16 - art_sys_29: -5.64442962e-17 - art_sys_30: -4.83450155e-15 - art_sys_31: 1.28254370e-15 - art_sys_32: 3.55742455e-17 - art_sys_33: -4.44488598e-17 - art_sys_34: -2.55195376e-13 +- art_sys_1: 2.26037332e-03 + art_sys_2: 2.78712618e-02 + art_sys_3: -6.55494324e-14 + art_sys_4: 2.24447755e-14 + art_sys_5: 2.41029280e-14 + art_sys_6: 4.29249682e-02 + art_sys_7: 4.37218708e-15 + art_sys_8: -1.56635269e-14 + art_sys_9: 6.28222025e-14 + art_sys_10: -2.10163913e-03 + art_sys_11: 9.67192422e-15 + art_sys_12: 7.42360510e-15 + art_sys_13: -1.52718817e-01 + art_sys_14: -1.21413406e-15 + art_sys_15: 2.58286752e-16 + art_sys_16: 4.13878264e-16 + art_sys_17: -4.72527386e-02 + art_sys_18: -5.40886301e-15 + art_sys_19: -2.48156195e-15 + art_sys_20: 6.05817022e-01 + art_sys_21: 4.48355840e-15 + art_sys_22: 1.56584588e-14 + art_sys_23: 3.58815494e-01 + art_sys_24: -2.73667170e-15 + art_sys_25: 7.38662968e-15 + art_sys_26: 5.08515749e-15 + art_sys_27: -3.98280772e-16 + art_sys_28: 4.74884096e-15 + art_sys_29: 1.15403529e-15 + art_sys_30: -7.08448103e-16 + art_sys_31: -1.52443524e-17 + art_sys_32: -4.15196920e-16 + art_sys_33: -3.43069309e-17 + art_sys_34: 5.90414097e-12 art_sys_35: 7.95517144e-03 - art_sys_36: 8.59073797e-16 - art_sys_37: 3.89666877e-13 - art_sys_38: 1.23828777e-17 + art_sys_36: 7.87510034e-16 + art_sys_37: -1.68542537e-12 + art_sys_38: -9.10277907e-18 art_sys_39: 4.43963901e-03 - art_sys_40: 2.68037412e-13 - art_sys_41: 2.88871359e-15 - art_sys_42: 1.28424548e-13 - art_sys_43: 1.85747735e-18 - art_sys_44: 3.22570384e-18 - art_sys_45: 4.81935653e-19 - art_sys_46: -8.03503836e-04 - art_sys_47: 4.87430627e-14 - art_sys_48: 1.98119738e-15 - art_sys_49: -2.47080849e-16 - art_sys_50: 1.36184597e-16 - art_sys_51: -1.18453938e-16 - art_sys_52: -1.47593502e-16 - art_sys_53: 6.57274879e-15 - art_sys_54: -1.10773074e-13 - art_sys_55: -4.83973790e-05 - art_sys_56: 1.81036356e-15 - art_sys_57: -2.59651070e-14 - art_sys_58: 8.60434178e-06 - art_sys_59: -2.10120965e-17 - art_sys_60: -2.20015717e-18 - art_sys_61: -1.13785289e-18 - art_sys_62: -4.61029997e-19 - art_sys_63: -4.21765190e-19 - art_sys_64: 2.50913647e-18 - art_sys_65: -2.34327335e-19 - art_sys_66: 1.26883098e-20 - art_sys_67: -2.79133880e-25 - art_sys_68: -5.80981394e-15 - art_sys_69: 7.29683841e-16 - art_sys_70: -4.45384654e-15 - art_sys_71: -6.01542194e-15 - art_sys_72: -1.58187989e-19 - art_sys_73: 1.64832849e-06 - art_sys_74: -3.22918918e-16 - art_sys_75: -1.48176883e-21 - art_sys_76: 8.56576230e-22 - art_sys_77: 1.17728974e-21 - art_sys_78: -2.37074853e-14 - art_sys_79: 1.24023818e-14 - art_sys_80: -4.74315313e-22 - art_sys_81: -1.21967430e-22 - art_sys_82: -8.16200858e-24 - art_sys_83: 3.82506095e-22 - art_sys_84: -1.99224291e-16 - art_sys_85: -5.25529872e-08 - art_sys_86: -1.48701132e-20 - art_sys_87: 1.01186501e-17 - art_sys_88: 5.48093751e-24 - art_sys_89: -7.62944465e-24 - art_sys_90: 1.83535829e-16 - art_sys_91: -6.48847693e-09 - art_sys_92: -4.59435485e-17 - art_sys_93: 4.24928808e-23 - art_sys_94: 9.29974698e-25 - art_sys_95: 3.71862846e-17 - art_sys_96: 1.66488774e-10 - art_sys_97: -2.50545796e-18 - art_sys_98: -1.39386480e-20 - art_sys_99: 3.85396222e-25 - art_sys_100: -8.87759854e-26 - art_sys_101: 5.80004666e-26 - art_sys_102: -2.55311833e-18 - art_sys_103: -2.64936868e-25 - art_sys_104: 1.70914446e-18 - art_sys_105: -1.18038799e-26 - art_sys_106: -2.72954407e-22 - art_sys_107: 1.00498444e-18 - art_sys_108: -2.11277970e-27 - art_sys_109: 4.96221039e-19 - art_sys_110: 2.76943107e-23 - art_sys_111: -1.26467279e-25 - art_sys_112: -2.05319418e-19 - art_sys_113: 7.78003892e-20 - art_sys_114: -2.84030434e-20 - art_sys_115: 1.99909551e-24 - art_sys_116: 7.17895157e-21 - art_sys_117: 2.61859875e-13 - art_sys_118: 2.31650792e-21 - art_sys_119: -3.31680738e-26 - art_sys_120: 3.85315630e-26 - art_sys_121: 1.27117445e-25 - art_sys_122: -8.75599489e-26 - art_sys_123: -9.09270277e-25 - art_sys_124: 3.97924059e-25 - art_sys_125: 1.56076615e-21 - art_sys_126: -3.66092117e-25 - art_sys_127: 6.43543662e-22 - art_sys_128: 6.93168415e-26 - art_sys_129: 3.60472240e-25 - art_sys_130: 3.70470414e-21 - art_sys_131: -3.35359802e-21 - art_sys_132: 1.83294944e-28 - art_sys_133: 1.55098669e-25 - art_sys_134: -2.07572550e-24 - art_sys_135: -6.92889419e-28 - art_sys_136: -1.20426964e-28 - art_sys_137: -9.80575073e-29 - art_sys_138: -6.08491160e-28 - art_sys_139: 1.45045400e-29 - art_sys_140: 5.49915416e-29 - art_sys_141: 6.78447985e-30 - art_sys_142: -4.42634896e-29 - art_sys_143: 4.15012916e-30 - art_sys_144: -1.27541493e-41 - art_sys_145: 6.87555917e-44 - art_sys_146: 3.25236867e-41 - art_sys_147: -3.01293457e-41 - art_sys_148: -6.46016040e-40 - art_sys_149: -3.43201548e-39 - art_sys_150: 1.70185982e-38 - art_sys_151: -7.18576692e-37 - art_sys_152: 6.42601319e-38 - art_sys_153: -3.24727701e-38 - art_sys_154: -2.33839793e-37 - art_sys_155: -2.13999972e-37 - art_sys_156: 7.36695564e-37 - art_sys_157: -2.83817285e-36 - art_sys_158: 2.04333735e-36 - art_sys_159: -4.70243139e-37 - art_sys_160: 6.30463310e-36 - art_sys_161: -3.65379147e-35 - art_sys_162: 2.76552007e-36 - art_sys_163: -2.05667311e-37 - art_sys_164: -1.35122530e-36 - art_sys_165: 1.34071052e-36 - art_sys_166: 4.23894678e-38 - art_sys_167: -2.29224290e-39 - art_sys_168: 2.10107474e-28 - art_sys_169: 1.60992211e-38 - art_sys_170: 4.85215292e-29 - art_sys_171: 1.06096434e-28 - art_sys_172: -2.38923280e-38 - art_sys_173: 3.33002026e-38 - art_sys_174: -8.13848325e-30 - art_sys_175: 0.0 - art_sys_176: 2.23417973e-30 - art_sys_177: 0.0 - art_sys_178: 4.58186803e-31 - art_sys_179: -4.10942543e-33 - art_sys_180: 1.28396428e-36 - art_sys_181: -3.15332363e-40 - art_sys_182: 0.0 - art_sys_183: -4.63663173e-39 - art_sys_184: -8.00592562e-38 - art_sys_185: 5.92576431e-41 + art_sys_40: -1.93862681e-11 + art_sys_41: -2.09485421e-16 + art_sys_42: 8.92824932e-12 + art_sys_43: -7.03499406e-19 + art_sys_44: -4.81325474e-19 + art_sys_45: 1.36524136e-18 + art_sys_46: -8.03503823e-04 + art_sys_47: 1.64242594e-14 + art_sys_48: -8.86898549e-14 + art_sys_49: 6.24098242e-16 + art_sys_50: -3.57713870e-16 + art_sys_51: -1.50034878e-16 + art_sys_52: -1.68986857e-17 + art_sys_53: -6.32724705e-18 + art_sys_54: 1.48366819e-18 + art_sys_55: 1.02365250e-16 + art_sys_56: 1.77094967e-15 + art_sys_57: -3.48392586e-14 + art_sys_58: 6.00470392e-18 + art_sys_59: -6.76181256e-19 + art_sys_60: 2.74942441e-13 + art_sys_61: 4.83973826e-05 + art_sys_62: -5.11849444e-14 + art_sys_63: -2.02173699e-15 + art_sys_64: -6.78752065e-14 + art_sys_65: 2.38766861e-19 + art_sys_66: 4.05794527e-20 + art_sys_67: 8.60434186e-06 + art_sys_68: -1.44394571e-14 + art_sys_69: 1.26481395e-16 + art_sys_70: 9.29050070e-16 + art_sys_71: 5.80074550e-15 + art_sys_72: 1.64832849e-06 + art_sys_73: -1.28527504e-18 + art_sys_74: 2.92500011e-18 + art_sys_75: 1.24995600e-19 + art_sys_76: 1.01587869e-21 + art_sys_77: 6.31242347e-15 + art_sys_78: 5.69130084e-19 + art_sys_79: 2.94336073e-19 + art_sys_80: -2.53096567e-18 + art_sys_81: -5.80501582e-20 + art_sys_82: 1.02368899e-19 + art_sys_83: 7.05489330e-21 + art_sys_84: -1.36478602e-19 + art_sys_85: 1.74512757e-20 + art_sys_86: 7.21842431e-22 + art_sys_87: 1.05559439e-14 + art_sys_88: -2.95017778e-22 + art_sys_89: -1.79604760e-22 + art_sys_90: -6.83766032e-15 + art_sys_91: -9.73587853e-17 + art_sys_92: -1.31487681e-14 + art_sys_93: -5.25529421e-08 + art_sys_94: 1.85687240e-14 + art_sys_95: -1.55196082e-20 + art_sys_96: -8.24660906e-25 + art_sys_97: 5.12157616e-21 + art_sys_98: 1.68138305e-15 + art_sys_99: 6.48783158e-09 + art_sys_100: 5.15867328e-24 + art_sys_101: 2.49542936e-16 + art_sys_102: 1.63858320e-16 + art_sys_103: 3.39860084e-26 + art_sys_104: 1.66369873e-10 + art_sys_105: 4.53487863e-18 + art_sys_106: 3.25485605e-21 + art_sys_107: -3.21440098e-25 + art_sys_108: 5.84563348e-26 + art_sys_109: 1.67128306e-25 + art_sys_110: -1.31542407e-24 + art_sys_111: -3.43558713e-19 + art_sys_112: -1.00038573e-25 + art_sys_113: -9.09341222e-27 + art_sys_114: 1.83461285e-19 + art_sys_115: 4.58793162e-26 + art_sys_116: 1.44458248e-24 + art_sys_117: -8.87807393e-20 + art_sys_118: -1.51611767e-25 + art_sys_119: 4.23186705e-20 + art_sys_120: 2.83878279e-24 + art_sys_121: -5.74700497e-26 + art_sys_122: 1.75623929e-20 + art_sys_123: 6.80266497e-21 + art_sys_124: 1.52893522e-26 + art_sys_125: 9.81253101e-25 + art_sys_126: 6.98372717e-26 + art_sys_127: -2.71067109e-21 + art_sys_128: -1.02291629e-26 + art_sys_129: 6.99059754e-22 + art_sys_130: 3.24566380e-25 + art_sys_131: -3.68334339e-25 + art_sys_132: 3.37920675e-22 + art_sys_133: 1.35986901e-24 + art_sys_134: 3.88155837e-27 + art_sys_135: 1.31345902e-22 + art_sys_136: -7.50419991e-25 + art_sys_137: -1.13639996e-27 + art_sys_138: -5.47223027e-13 + art_sys_139: -5.74605092e-22 + art_sys_140: -8.73379993e-23 + art_sys_141: -1.06472844e-20 + art_sys_142: 1.33401549e-22 + art_sys_143: -2.07457738e-28 + art_sys_144: 1.24362387e-26 + art_sys_145: -9.48046678e-26 + art_sys_146: 0.0 + art_sys_147: -6.08071056e-24 + art_sys_148: 8.47847257e-23 + art_sys_149: 8.47847257e-23 + art_sys_150: 1.56610343e-23 + art_sys_151: 1.56610343e-23 + art_sys_152: 9.88518069e-23 + art_sys_153: -4.87041768e-24 + art_sys_154: 6.49208938e-27 + art_sys_155: -2.24482382e-35 + art_sys_156: -2.41711551e-40 + art_sys_157: 4.41583372e-40 + art_sys_158: 0.0 + art_sys_159: -3.84858330e-28 + art_sys_160: 1.08968817e-27 + art_sys_161: 6.14614045e-29 + art_sys_162: 1.80321343e-29 + art_sys_163: 1.65908567e-27 + art_sys_164: -1.87211215e-27 + art_sys_165: 2.05867992e-29 + art_sys_166: 1.36438455e-34 + art_sys_167: -9.57532315e-35 + art_sys_168: -1.98368172e-34 + art_sys_169: 1.61734618e-34 + art_sys_170: 1.61326761e-34 + art_sys_171: 3.97859328e-35 + art_sys_172: -3.61821802e-37 + art_sys_173: -4.57963033e-36 + art_sys_174: -4.05860914e-36 + art_sys_175: 5.81696314e-38 + art_sys_176: 3.06749588e-36 + art_sys_177: 2.51831871e-37 + art_sys_178: -1.77051230e-38 + art_sys_179: 8.52462451e-39 + art_sys_180: -4.68261605e-39 + art_sys_181: 6.46140331e-40 + art_sys_182: 1.27768537e-40 + art_sys_183: -2.86099726e-41 + art_sys_184: 9.19056789e-42 + art_sys_185: -1.78773403e-42 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -68042,191 +68042,191 @@ bins: RelativeStatFSR-: -1.19278148e-01 luminosity_uncertainty: 6.37564200e-01 uncorrelated_uncertainty: 0.245217 -- art_sys_1: -1.79374360e-03 - art_sys_2: 1.67906961e-15 - art_sys_3: -2.88932275e-03 - art_sys_4: 1.14040693e-13 - art_sys_5: 2.59893769e-15 - art_sys_6: -8.97653902e-03 - art_sys_7: 9.98999443e-15 - art_sys_8: 9.86153482e-16 - art_sys_9: 1.59950000e-14 - art_sys_10: 6.63353320e-03 - art_sys_11: -3.03310111e-14 - art_sys_12: -9.58759038e-16 - art_sys_13: 2.13242765e-03 - art_sys_14: -1.85477080e-16 - art_sys_15: -2.24878919e-15 - art_sys_16: 4.49382080e-16 - art_sys_17: -5.83266822e-02 - art_sys_18: -8.91899793e-16 - art_sys_19: -1.07186255e-15 - art_sys_20: -6.46581584e-04 - art_sys_21: -6.46542953e-17 - art_sys_22: -1.53982749e-15 - art_sys_23: -5.99093398e-02 - art_sys_24: 8.28814080e-17 - art_sys_25: -2.52196613e-14 - art_sys_26: 1.81936873e-14 - art_sys_27: 2.87695301e-14 - art_sys_28: -7.71101811e-16 - art_sys_29: 1.09447700e-15 - art_sys_30: -1.75972417e-15 - art_sys_31: 6.02126465e-16 - art_sys_32: -8.68675520e-16 - art_sys_33: 3.38171791e-16 - art_sys_34: 2.74269666e-12 +- art_sys_1: 1.79374360e-03 + art_sys_2: 2.88932275e-03 + art_sys_3: -6.38671363e-16 + art_sys_4: -6.66327266e-14 + art_sys_5: -1.66861247e-15 + art_sys_6: 8.97653902e-03 + art_sys_7: -1.41346587e-14 + art_sys_8: 2.18220675e-14 + art_sys_9: -1.41338283e-14 + art_sys_10: -6.63353320e-03 + art_sys_11: -5.36923059e-14 + art_sys_12: 5.22247532e-15 + art_sys_13: -2.13242765e-03 + art_sys_14: -1.11371556e-15 + art_sys_15: -2.13150718e-15 + art_sys_16: 2.30403106e-16 + art_sys_17: 5.83266822e-02 + art_sys_18: -1.47351199e-15 + art_sys_19: 2.77283106e-16 + art_sys_20: 6.46581582e-04 + art_sys_21: -2.85069103e-15 + art_sys_22: 2.07645863e-16 + art_sys_23: 5.99093398e-02 + art_sys_24: -5.03337393e-16 + art_sys_25: -7.33248830e-14 + art_sys_26: -5.97160390e-14 + art_sys_27: 4.18555000e-15 + art_sys_28: 2.08384955e-15 + art_sys_29: 6.03433036e-16 + art_sys_30: 4.87742502e-15 + art_sys_31: 6.50813927e-16 + art_sys_32: 2.09342809e-15 + art_sys_33: 7.66356418e-16 + art_sys_34: -6.31965654e-11 art_sys_35: -8.51262056e-02 - art_sys_36: -3.87122119e-15 - art_sys_37: -1.37984365e-12 - art_sys_38: -2.74406034e-17 + art_sys_36: -1.79434230e-14 + art_sys_37: 5.97322773e-12 + art_sys_38: 6.16535578e-17 art_sys_39: -1.57315388e-02 - art_sys_40: -9.49812858e-13 - art_sys_41: -6.19404265e-15 - art_sys_42: -6.15558685e-13 - art_sys_43: -3.95980691e-18 - art_sys_44: -1.67577553e-17 - art_sys_45: -2.11852264e-18 - art_sys_46: 3.84263673e-03 - art_sys_47: -2.03075641e-13 - art_sys_48: -9.33213011e-15 - art_sys_49: 9.78123733e-16 - art_sys_50: -1.80534116e-15 - art_sys_51: 4.09917152e-16 - art_sys_52: 5.82266302e-16 - art_sys_53: -2.60193712e-14 - art_sys_54: 4.39954058e-13 - art_sys_55: 1.91589120e-04 - art_sys_56: -6.96361755e-15 - art_sys_57: 1.02319884e-13 - art_sys_58: -3.61743304e-05 - art_sys_59: 8.88989302e-17 - art_sys_60: 9.26422771e-18 - art_sys_61: 4.84229332e-18 - art_sys_62: 1.95337933e-18 - art_sys_63: 1.77234898e-18 - art_sys_64: -1.06006692e-17 - art_sys_65: 9.87878110e-19 - art_sys_66: -5.38283679e-20 - art_sys_67: -3.45070691e-20 - art_sys_68: 2.44404331e-14 - art_sys_69: -2.91925391e-15 - art_sys_70: 1.82268495e-14 - art_sys_71: 2.54444600e-14 - art_sys_72: 5.68317376e-19 - art_sys_73: -6.98423408e-06 - art_sys_74: 1.43079786e-15 - art_sys_75: 5.94583581e-21 - art_sys_76: -3.27677069e-21 - art_sys_77: -4.78111083e-21 - art_sys_78: 9.61714502e-14 - art_sys_79: -5.27020507e-14 - art_sys_80: 1.92028546e-21 - art_sys_81: 4.89860964e-22 - art_sys_82: 2.72679952e-23 - art_sys_83: -1.32843553e-21 - art_sys_84: 6.92871403e-16 - art_sys_85: 2.13215459e-07 - art_sys_86: 6.20034602e-20 - art_sys_87: -3.74379113e-17 - art_sys_88: -2.37616209e-23 - art_sys_89: -5.02422197e-22 - art_sys_90: -7.99204810e-16 - art_sys_91: 2.72682803e-08 - art_sys_92: 1.65153008e-16 - art_sys_93: -7.44449127e-23 - art_sys_94: 2.89868704e-24 - art_sys_95: -1.63044290e-16 - art_sys_96: -5.88830021e-10 - art_sys_97: 6.08619114e-18 - art_sys_98: 5.83942372e-20 - art_sys_99: -4.75096340e-24 - art_sys_100: 2.87433094e-25 - art_sys_101: -1.92019417e-25 - art_sys_102: 4.90000416e-18 - art_sys_103: -2.95263864e-24 - art_sys_104: -3.24276927e-18 - art_sys_105: -8.67871183e-24 - art_sys_106: 1.13170017e-21 - art_sys_107: -1.86022867e-18 - art_sys_108: 5.06485152e-26 - art_sys_109: -9.20893138e-19 - art_sys_110: -4.72299281e-23 - art_sys_111: 3.69047223e-25 - art_sys_112: 3.75814791e-19 - art_sys_113: -1.38167053e-19 - art_sys_114: 5.06896667e-20 - art_sys_115: -8.05764883e-24 - art_sys_116: -1.05965468e-20 - art_sys_117: -1.09914530e-12 - art_sys_118: -1.66077623e-20 - art_sys_119: 8.90731402e-26 - art_sys_120: -2.76933717e-25 - art_sys_121: -5.08234814e-25 - art_sys_122: 3.46270284e-25 - art_sys_123: 3.93748706e-24 - art_sys_124: -1.66155994e-24 - art_sys_125: -7.77448681e-21 - art_sys_126: 1.54072188e-24 - art_sys_127: -2.82396051e-21 - art_sys_128: -2.87882076e-25 - art_sys_129: -1.51541241e-24 - art_sys_130: -1.55516621e-20 - art_sys_131: 1.40769890e-20 - art_sys_132: -7.67676186e-28 - art_sys_133: -6.51025519e-25 - art_sys_134: 8.71239126e-24 - art_sys_135: 2.84123951e-27 - art_sys_136: 4.74577481e-28 - art_sys_137: 3.98496232e-28 - art_sys_138: 2.18030623e-27 - art_sys_139: -3.17568611e-29 - art_sys_140: -1.89427417e-28 - art_sys_141: -2.59399841e-29 - art_sys_142: 1.81563676e-28 - art_sys_143: -1.69355366e-29 - art_sys_144: -1.03514783e-31 - art_sys_145: 4.46340992e-30 - art_sys_146: -1.54868322e-30 - art_sys_147: 1.17051773e-30 - art_sys_148: 6.00153627e-31 - art_sys_149: -3.49149650e-31 - art_sys_150: -3.89388415e-32 - art_sys_151: 1.16182918e-32 - art_sys_152: -7.14006964e-34 - art_sys_153: -2.00802483e-34 - art_sys_154: -1.07306180e-34 - art_sys_155: 1.40475834e-36 - art_sys_156: -3.44787869e-36 - art_sys_157: 1.39916882e-35 - art_sys_158: -9.32969782e-36 - art_sys_159: 2.11102349e-36 - art_sys_160: -2.66111339e-35 - art_sys_161: 1.54639284e-34 - art_sys_162: -1.18308346e-35 - art_sys_163: 8.90246642e-37 - art_sys_164: 5.76793977e-36 - art_sys_165: -5.71619830e-36 - art_sys_166: -2.10657164e-37 - art_sys_167: -6.18571336e-37 - art_sys_168: -8.03157590e-28 - art_sys_169: -8.09792833e-38 - art_sys_170: -2.08041308e-28 - art_sys_171: -4.87341106e-28 - art_sys_172: 9.42907523e-38 - art_sys_173: -1.37992690e-37 - art_sys_174: 3.71686378e-29 - art_sys_175: 0.0 - art_sys_176: -9.31591320e-30 - art_sys_177: 0.0 - art_sys_178: -1.92608162e-30 - art_sys_179: 1.74162430e-32 - art_sys_180: -5.37618983e-36 - art_sys_181: 1.32353767e-39 - art_sys_182: 0.0 - art_sys_183: 1.94620348e-38 - art_sys_184: 3.36064503e-37 - art_sys_185: -2.48733989e-40 + art_sys_40: 6.86939715e-11 + art_sys_41: -2.31515413e-16 + art_sys_42: -4.27005745e-11 + art_sys_43: 3.47594596e-18 + art_sys_44: 2.16640637e-18 + art_sys_45: -6.39311239e-18 + art_sys_46: 3.84263668e-03 + art_sys_47: -5.27946144e-14 + art_sys_48: 3.73178617e-13 + art_sys_49: -2.48037614e-15 + art_sys_50: 1.31021673e-15 + art_sys_51: 5.86045759e-16 + art_sys_52: 6.31307799e-17 + art_sys_53: 2.38811141e-17 + art_sys_54: -6.47619941e-18 + art_sys_55: -4.05436331e-16 + art_sys_56: -7.01069584e-15 + art_sys_57: 1.51209147e-13 + art_sys_58: -2.37557951e-17 + art_sys_59: 2.71391319e-18 + art_sys_60: -1.09018292e-12 + art_sys_61: -1.91589136e-04 + art_sys_62: 2.02967397e-13 + art_sys_63: 8.50808491e-15 + art_sys_64: 2.85259328e-13 + art_sys_65: -8.25313537e-19 + art_sys_66: -1.68182129e-19 + art_sys_67: -3.61743309e-05 + art_sys_68: 5.85813685e-14 + art_sys_69: -5.30772012e-16 + art_sys_70: -3.67037374e-15 + art_sys_71: -2.45505396e-14 + art_sys_72: -6.98423408e-06 + art_sys_73: 5.20988275e-18 + art_sys_74: -1.18277307e-17 + art_sys_75: -5.19021501e-19 + art_sys_76: -4.09203976e-21 + art_sys_77: -2.56120341e-14 + art_sys_78: -2.86265420e-18 + art_sys_79: -1.19060415e-18 + art_sys_80: 1.10178069e-17 + art_sys_81: 2.40198701e-19 + art_sys_82: -4.18067174e-19 + art_sys_83: -4.60051254e-20 + art_sys_84: 5.57715474e-19 + art_sys_85: -7.04447505e-20 + art_sys_86: -2.93634037e-21 + art_sys_87: -4.36765541e-14 + art_sys_88: 1.20806289e-21 + art_sys_89: 7.14301145e-22 + art_sys_90: 2.78481030e-14 + art_sys_91: 4.06876046e-16 + art_sys_92: 5.53016872e-14 + art_sys_93: 2.13215385e-07 + art_sys_94: -7.77963118e-14 + art_sys_95: 6.40083906e-20 + art_sys_96: 4.75478039e-24 + art_sys_97: -2.15747638e-20 + art_sys_98: -6.21957121e-15 + art_sys_99: -2.72656545e-08 + art_sys_100: -7.76330666e-24 + art_sys_101: -1.06404153e-15 + art_sys_102: -6.82880030e-16 + art_sys_103: -1.15482405e-22 + art_sys_104: -5.88373837e-10 + art_sys_105: -1.61660532e-17 + art_sys_106: -1.38708287e-20 + art_sys_107: 1.14882872e-24 + art_sys_108: -1.77425896e-25 + art_sys_109: -5.90902281e-25 + art_sys_110: 4.45550288e-23 + art_sys_111: 9.01343621e-19 + art_sys_112: 1.10887935e-23 + art_sys_113: 3.87654578e-26 + art_sys_114: -7.71397243e-19 + art_sys_115: -6.63270383e-25 + art_sys_116: -3.31299102e-23 + art_sys_117: 4.66195542e-19 + art_sys_118: 9.50982927e-25 + art_sys_119: -2.53191281e-19 + art_sys_120: -3.85965765e-23 + art_sys_121: 3.82961570e-26 + art_sys_122: -1.12654808e-19 + art_sys_123: -4.53702604e-20 + art_sys_124: -8.91958186e-26 + art_sys_125: -5.10401261e-24 + art_sys_126: -2.13374074e-25 + art_sys_127: 1.79435410e-20 + art_sys_128: 1.40559351e-25 + art_sys_129: -4.87757098e-21 + art_sys_130: -1.20909910e-24 + art_sys_131: 1.23021785e-24 + art_sys_132: -7.00375062e-22 + art_sys_133: -4.03370676e-24 + art_sys_134: -1.28557342e-26 + art_sys_135: -6.79650178e-22 + art_sys_136: 3.49305888e-24 + art_sys_137: 4.73265021e-27 + art_sys_138: 2.29705123e-12 + art_sys_139: 2.42431844e-21 + art_sys_140: 3.68423418e-22 + art_sys_141: 4.46933493e-20 + art_sys_142: -5.60027568e-22 + art_sys_143: 8.57105999e-28 + art_sys_144: -5.22231529e-26 + art_sys_145: 3.97984750e-25 + art_sys_146: -0.0 + art_sys_147: 2.55300122e-23 + art_sys_148: -3.55969895e-22 + art_sys_149: -3.55969895e-22 + art_sys_150: -6.57029286e-23 + art_sys_151: -6.57029286e-23 + art_sys_152: -4.14619718e-22 + art_sys_153: 2.04168270e-23 + art_sys_154: -2.72444015e-26 + art_sys_155: 9.41403479e-35 + art_sys_156: 1.01408273e-39 + art_sys_157: -1.88841391e-39 + art_sys_158: -0.0 + art_sys_159: 1.47549866e-27 + art_sys_160: -3.83070258e-27 + art_sys_161: -1.60010394e-28 + art_sys_162: -1.59470401e-28 + art_sys_163: -6.49099911e-27 + art_sys_164: 7.64321501e-27 + art_sys_165: -5.66102548e-29 + art_sys_166: -4.11134595e-34 + art_sys_167: 3.58542609e-34 + art_sys_168: 7.85930996e-34 + art_sys_169: -7.06406499e-34 + art_sys_170: -7.57598671e-34 + art_sys_171: -1.21413542e-33 + art_sys_172: 2.12054730e-32 + art_sys_173: 1.08614485e-33 + art_sys_174: -2.99194443e-35 + art_sys_175: -2.44200647e-37 + art_sys_176: 1.60691609e-36 + art_sys_177: -4.58878389e-36 + art_sys_178: 2.20119455e-36 + art_sys_179: -4.41857354e-37 + art_sys_180: -3.91407406e-36 + art_sys_181: 5.51230975e-38 + art_sys_182: -2.03202832e-38 + art_sys_183: -1.22883315e-40 + art_sys_184: -3.76483690e-41 + art_sys_185: 7.44133937e-42 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -68333,191 +68333,191 @@ bins: RelativeStatFSR-: -5.11464923e-02 luminosity_uncertainty: 2.42256040e-01 uncorrelated_uncertainty: 9.31754000e-02 -- art_sys_1: -2.23245273e-04 - art_sys_2: 1.23122623e-17 - art_sys_3: 3.19069810e-04 - art_sys_4: 8.60956425e-14 - art_sys_5: -3.87154203e-15 - art_sys_6: 4.69150442e-05 - art_sys_7: -9.07657278e-15 - art_sys_8: -2.08802921e-15 - art_sys_9: 3.41836987e-14 - art_sys_10: 6.08932743e-04 - art_sys_11: -6.74500344e-14 - art_sys_12: 1.26636157e-15 - art_sys_13: -6.93391875e-03 - art_sys_14: 3.31741910e-15 - art_sys_15: 5.92290915e-15 - art_sys_16: -1.89176288e-15 - art_sys_17: -4.70961375e-03 - art_sys_18: -1.59571888e-15 - art_sys_19: -8.23841068e-16 - art_sys_20: 3.42412187e-02 - art_sys_21: 5.98014000e-16 - art_sys_22: -7.99830187e-15 - art_sys_23: 2.14864545e-02 - art_sys_24: -1.92083690e-16 - art_sys_25: -3.93415716e-14 - art_sys_26: -8.82885081e-15 - art_sys_27: -4.52644674e-15 - art_sys_28: -9.73044768e-15 - art_sys_29: 1.29415278e-15 - art_sys_30: 4.98066307e-16 - art_sys_31: -1.86675685e-16 - art_sys_32: -7.99170803e-16 - art_sys_33: -4.97439004e-17 - art_sys_34: 1.12430157e-12 - art_sys_35: -3.49206569e-02 - art_sys_36: 6.87161801e-15 - art_sys_37: 3.67384879e-12 - art_sys_38: 1.12528498e-16 +- art_sys_1: 2.23245273e-04 + art_sys_2: -3.19069810e-04 + art_sys_3: 2.90655762e-15 + art_sys_4: 2.89661976e-14 + art_sys_5: -8.40065308e-16 + art_sys_6: -4.69150442e-05 + art_sys_7: -9.77474216e-15 + art_sys_8: -1.14533815e-14 + art_sys_9: 2.84312410e-14 + art_sys_10: -6.08932743e-04 + art_sys_11: -3.35211481e-14 + art_sys_12: 1.14926408e-16 + art_sys_13: 6.93391875e-03 + art_sys_14: -7.61146637e-16 + art_sys_15: 1.89154781e-15 + art_sys_16: -7.30002680e-16 + art_sys_17: 4.70961375e-03 + art_sys_18: -2.68597920e-17 + art_sys_19: -3.47927714e-17 + art_sys_20: -3.42412187e-02 + art_sys_21: -5.84352970e-16 + art_sys_22: -1.28250457e-15 + art_sys_23: -2.14864545e-02 + art_sys_24: 1.32128818e-16 + art_sys_25: -1.56266432e-14 + art_sys_26: -2.94015459e-14 + art_sys_27: -1.24802839e-15 + art_sys_28: -2.07194864e-16 + art_sys_29: -1.91578124e-18 + art_sys_30: -1.67898875e-15 + art_sys_31: 1.06883727e-15 + art_sys_32: -2.98259928e-15 + art_sys_33: 1.01790727e-15 + art_sys_34: -2.59235910e-11 + art_sys_35: -3.49206570e-02 + art_sys_36: -2.33072078e-14 + art_sys_37: -1.58456964e-11 + art_sys_38: -9.20110012e-17 art_sys_39: 4.17645421e-02 - art_sys_40: 2.52167410e-12 - art_sys_41: 1.11896747e-14 - art_sys_42: 1.22816389e-12 - art_sys_43: 1.85818399e-17 - art_sys_44: 3.14761733e-17 - art_sys_45: 6.08627673e-18 - art_sys_46: -7.66431312e-03 - art_sys_47: 6.70369894e-13 - art_sys_48: 1.87433349e-14 - art_sys_49: -3.74562338e-15 - art_sys_50: 6.11015008e-15 - art_sys_51: -1.94726119e-15 - art_sys_52: -2.23450108e-15 - art_sys_53: 9.96399120e-14 - art_sys_54: -1.69185136e-12 - art_sys_55: -7.33682871e-04 - art_sys_56: 2.78701496e-14 - art_sys_57: -4.10878997e-13 - art_sys_58: 1.20685545e-04 - art_sys_59: -3.31746941e-16 - art_sys_60: -3.47711884e-17 - art_sys_61: -1.78933022e-17 - art_sys_62: -7.24231458e-18 - art_sys_63: -6.67751848e-18 - art_sys_64: 3.96495142e-17 - art_sys_65: -3.69450529e-18 - art_sys_66: 2.00173812e-19 - art_sys_67: -4.40438978e-24 - art_sys_68: -9.52066899e-14 - art_sys_69: 1.15927082e-14 - art_sys_70: -7.10187220e-14 - art_sys_71: -9.49855976e-14 - art_sys_72: -2.63062247e-18 - art_sys_73: 2.60117451e-05 - art_sys_74: -5.01603046e-15 - art_sys_75: -2.38287908e-20 - art_sys_76: 1.43252084e-20 - art_sys_77: 1.88313040e-20 - art_sys_78: -3.79602006e-13 - art_sys_79: 2.04458953e-13 - art_sys_80: -7.57454974e-21 - art_sys_81: -1.94212088e-21 - art_sys_82: -1.04018775e-22 - art_sys_83: 3.92709481e-21 - art_sys_84: -3.14791501e-15 - art_sys_85: -8.41549038e-07 - art_sys_86: -2.43745632e-19 - art_sys_87: 1.44450021e-16 - art_sys_88: 8.85793360e-23 - art_sys_89: -2.97674745e-24 - art_sys_90: 3.17638569e-15 - art_sys_91: -1.06265204e-07 - art_sys_92: -5.80378657e-16 - art_sys_93: 1.63985231e-22 - art_sys_94: 1.28808433e-22 - art_sys_95: 6.52132616e-16 - art_sys_96: 2.91151614e-09 - art_sys_97: -1.52191385e-17 - art_sys_98: -2.30704362e-19 - art_sys_99: 4.71890008e-23 - art_sys_100: -1.59364467e-24 - art_sys_101: 1.04067825e-24 - art_sys_102: -6.54958150e-18 - art_sys_103: 5.34872782e-24 - art_sys_104: 4.29603443e-18 - art_sys_105: -9.17014547e-24 - art_sys_106: -4.46868232e-21 - art_sys_107: 2.21913138e-18 - art_sys_108: 4.36068017e-25 - art_sys_109: 1.11319284e-18 - art_sys_110: -2.74392768e-23 - art_sys_111: -1.08466061e-24 - art_sys_112: -4.28559063e-19 - art_sys_113: 1.37812263e-19 - art_sys_114: -5.22578214e-20 - art_sys_115: 2.53128636e-23 - art_sys_116: -1.56147629e-22 - art_sys_117: 4.31077073e-12 - art_sys_118: 7.98281950e-20 - art_sys_119: -2.46100377e-25 - art_sys_120: 1.33335965e-24 - art_sys_121: 1.93895045e-24 - art_sys_122: -1.31275789e-24 - art_sys_123: -1.55049411e-23 - art_sys_124: 6.49783180e-24 - art_sys_125: 3.30981329e-20 - art_sys_126: -6.05138378e-24 - art_sys_127: 1.13372336e-20 - art_sys_128: 1.12249572e-24 - art_sys_129: 5.94820881e-24 - art_sys_130: 6.09952247e-20 - art_sys_131: -5.52097483e-20 - art_sys_132: 3.00712235e-27 - art_sys_133: 2.55328683e-24 - art_sys_134: -3.41685671e-23 - art_sys_135: -1.09552094e-26 - art_sys_136: -1.84887855e-27 - art_sys_137: -1.52846924e-27 - art_sys_138: -1.05128972e-26 - art_sys_139: 1.58666395e-28 - art_sys_140: 8.78954503e-28 - art_sys_141: 9.97753071e-29 - art_sys_142: -6.92198963e-28 - art_sys_143: 6.59441357e-29 - art_sys_144: 1.18787206e-31 - art_sys_145: -6.64133039e-31 - art_sys_146: 3.28845374e-29 - art_sys_147: 1.19587912e-29 - art_sys_148: 6.98468632e-31 - art_sys_149: -4.62343007e-31 - art_sys_150: 4.59163200e-31 - art_sys_151: -1.09909698e-31 - art_sys_152: 2.25345746e-34 - art_sys_153: 3.54227968e-35 - art_sys_154: -4.15403831e-35 - art_sys_155: -3.49435643e-36 - art_sys_156: 6.70241585e-36 - art_sys_157: -2.52551473e-35 - art_sys_158: 2.50187000e-35 - art_sys_159: -6.65242107e-36 - art_sys_160: 1.00212521e-34 - art_sys_161: -5.78144840e-34 - art_sys_162: 4.15694538e-35 - art_sys_163: -2.52759620e-36 - art_sys_164: -2.20522913e-35 - art_sys_165: 2.18326745e-35 - art_sys_166: 6.91438145e-37 - art_sys_167: -1.17791386e-37 - art_sys_168: 2.97924387e-27 - art_sys_169: 2.54263587e-37 - art_sys_170: 8.26656246e-28 - art_sys_171: 2.00066576e-27 - art_sys_172: -3.95399377e-37 - art_sys_173: 6.14122759e-37 - art_sys_174: -1.52026782e-28 - art_sys_175: 0.0 - art_sys_176: 3.64573657e-29 - art_sys_177: 0.0 - art_sys_178: 7.55332610e-30 - art_sys_179: -6.81622796e-32 - art_sys_180: 2.10629738e-35 - art_sys_181: -5.19069364e-39 - art_sys_182: 0.0 - art_sys_183: -7.63287288e-38 - art_sys_184: -1.31806006e-36 - art_sys_185: 9.75521362e-40 + art_sys_40: -1.82371074e-10 + art_sys_41: 2.84862095e-16 + art_sys_42: 8.51700298e-11 + art_sys_43: -5.84697868e-18 + art_sys_44: -5.86860365e-18 + art_sys_45: 1.34194629e-17 + art_sys_46: -7.66431301e-03 + art_sys_47: 3.23691456e-13 + art_sys_48: -1.22489452e-12 + art_sys_49: 9.31738059e-15 + art_sys_50: -5.46990955e-15 + art_sys_51: -2.19341704e-15 + art_sys_52: -2.61131741e-16 + art_sys_53: -1.01592503e-16 + art_sys_54: 1.97418552e-17 + art_sys_55: 1.55367225e-15 + art_sys_56: 2.68473982e-14 + art_sys_57: -4.66587174e-13 + art_sys_58: 8.75496098e-17 + art_sys_59: -1.02647381e-17 + art_sys_60: 4.15649197e-12 + art_sys_61: 7.33682924e-04 + art_sys_62: -7.75577682e-13 + art_sys_63: -2.87992448e-14 + art_sys_64: -9.43621820e-13 + art_sys_65: 3.11362601e-18 + art_sys_66: 4.90342149e-19 + art_sys_67: 1.20685546e-04 + art_sys_68: -2.31219780e-13 + art_sys_69: 2.07202681e-15 + art_sys_70: 1.46963768e-14 + art_sys_71: 9.15742483e-14 + art_sys_72: 2.60117449e-05 + art_sys_73: -2.08132128e-17 + art_sys_74: 4.68467509e-17 + art_sys_75: 2.02176817e-18 + art_sys_76: 1.61641793e-20 + art_sys_77: 1.01080757e-13 + art_sys_78: 8.62826754e-18 + art_sys_79: 4.72989336e-18 + art_sys_80: -4.27682298e-17 + art_sys_81: -9.50304861e-19 + art_sys_82: 1.64815570e-18 + art_sys_83: 6.71496295e-20 + art_sys_84: -2.19361392e-18 + art_sys_85: 2.79334291e-19 + art_sys_86: 1.15970606e-20 + art_sys_87: 1.71163414e-13 + art_sys_88: -4.74522800e-21 + art_sys_89: -2.84482747e-21 + art_sys_90: -1.10103039e-13 + art_sys_91: -1.60547809e-15 + art_sys_92: -2.15175003e-13 + art_sys_93: -8.41548585e-07 + art_sys_94: 3.04262113e-13 + art_sys_95: -2.55404961e-19 + art_sys_96: -1.45152011e-23 + art_sys_97: 8.57501872e-20 + art_sys_98: 2.90436969e-14 + art_sys_99: 1.06254845e-07 + art_sys_100: -2.91177741e-23 + art_sys_101: 4.22087752e-15 + art_sys_102: 2.66995672e-15 + art_sys_103: -2.36267109e-22 + art_sys_104: 2.90956612e-09 + art_sys_105: 5.68150750e-17 + art_sys_106: 5.34961810e-20 + art_sys_107: -5.60835193e-24 + art_sys_108: 1.06296665e-24 + art_sys_109: 2.92580882e-24 + art_sys_110: -6.94525925e-23 + art_sys_111: -1.19328906e-18 + art_sys_112: -8.15105477e-24 + art_sys_113: -1.51038052e-25 + art_sys_114: 1.10113352e-18 + art_sys_115: -3.26467246e-24 + art_sys_116: -2.09962925e-23 + art_sys_117: -7.26968725e-19 + art_sys_118: -1.91858318e-24 + art_sys_119: 4.10838359e-19 + art_sys_120: -3.80485767e-23 + art_sys_121: -9.14716232e-25 + art_sys_122: 1.85400206e-19 + art_sys_123: 7.50029573e-20 + art_sys_124: 2.02028056e-25 + art_sys_125: 9.95017979e-24 + art_sys_126: 1.27705095e-24 + art_sys_127: -3.15602726e-20 + art_sys_128: 5.07878296e-28 + art_sys_129: 7.87999589e-21 + art_sys_130: 5.60257551e-24 + art_sys_131: -7.74912796e-24 + art_sys_132: 6.83801909e-21 + art_sys_133: 2.53862431e-23 + art_sys_134: 6.99745473e-26 + art_sys_135: 1.94795875e-21 + art_sys_136: -1.17543942e-23 + art_sys_137: -1.87743391e-26 + art_sys_138: -9.00920902e-12 + art_sys_139: -9.44062741e-21 + art_sys_140: -1.43506107e-21 + art_sys_141: -1.75292056e-19 + art_sys_142: 2.19629465e-21 + art_sys_143: -3.43760296e-27 + art_sys_144: 2.04705463e-25 + art_sys_145: -1.56086853e-24 + art_sys_146: 0.0 + art_sys_147: -1.00110668e-22 + art_sys_148: 1.39587215e-21 + art_sys_149: 1.39587215e-21 + art_sys_150: 2.57922807e-22 + art_sys_151: 2.57922807e-22 + art_sys_152: 1.62820063e-21 + art_sys_153: -8.02410273e-23 + art_sys_154: 1.06906736e-25 + art_sys_155: -3.69773587e-34 + art_sys_156: -3.98063305e-39 + art_sys_157: 7.18871417e-39 + art_sys_158: 0.0 + art_sys_159: -5.84323236e-27 + art_sys_160: 1.86639523e-26 + art_sys_161: 1.13499601e-27 + art_sys_162: 3.20004994e-28 + art_sys_163: 2.74993334e-26 + art_sys_164: -3.07607778e-26 + art_sys_165: 3.84529877e-28 + art_sys_166: 2.03902250e-33 + art_sys_167: -1.49492272e-33 + art_sys_168: -3.14831211e-33 + art_sys_169: 2.67548671e-33 + art_sys_170: 2.03062152e-33 + art_sys_171: -1.63702314e-33 + art_sys_172: -1.23365714e-32 + art_sys_173: -4.59306458e-33 + art_sys_174: -2.01723484e-33 + art_sys_175: 9.57706244e-37 + art_sys_176: 3.81267590e-36 + art_sys_177: 2.72327909e-37 + art_sys_178: 2.70369218e-36 + art_sys_179: -3.79060695e-37 + art_sys_180: -1.99961933e-36 + art_sys_181: 1.72035052e-37 + art_sys_182: 6.58996115e-38 + art_sys_183: -2.36398096e-40 + art_sys_184: 1.49527351e-40 + art_sys_185: -2.93780893e-41 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -68624,191 +68624,191 @@ bins: RelativeStatFSR-: -2.22729639e-02 luminosity_uncertainty: 9.28218200e-02 uncorrelated_uncertainty: 3.57007000e-02 -- art_sys_1: -5.74695836e-06 - art_sys_2: -5.42415172e-17 - art_sys_3: 1.06582257e-04 - art_sys_4: -1.83012612e-13 - art_sys_5: -3.06415534e-16 - art_sys_6: 1.96463296e-04 - art_sys_7: -8.43613230e-15 - art_sys_8: 3.77600694e-15 - art_sys_9: 1.13136918e-14 - art_sys_10: -9.54040622e-05 - art_sys_11: 1.06877032e-13 - art_sys_12: 5.28169297e-15 - art_sys_13: -4.83010173e-04 - art_sys_14: 2.64079408e-16 - art_sys_15: -3.03651864e-16 - art_sys_16: -1.70222520e-16 - art_sys_17: 1.67228888e-03 - art_sys_18: 4.43353441e-16 - art_sys_19: -2.06565742e-16 - art_sys_20: 8.44256911e-04 - art_sys_21: 1.46970408e-17 - art_sys_22: 2.66479947e-18 - art_sys_23: 2.83532321e-03 - art_sys_24: 3.92513083e-16 - art_sys_25: -2.60701986e-14 - art_sys_26: -2.50147734e-14 - art_sys_27: -9.74814982e-15 - art_sys_28: -5.47773624e-15 - art_sys_29: -7.54051591e-16 - art_sys_30: 4.86550632e-17 - art_sys_31: 1.25324517e-17 - art_sys_32: -3.25267798e-15 - art_sys_33: -4.02682332e-16 - art_sys_34: -1.10441154e-13 - art_sys_35: 3.42594912e-03 - art_sys_36: 3.90087487e-15 - art_sys_37: 1.94316153e-12 - art_sys_38: 5.28000595e-16 - art_sys_39: 2.21025444e-02 - art_sys_40: 1.33446707e-12 - art_sys_41: 8.34652492e-15 - art_sys_42: -2.80834209e-12 - art_sys_43: -3.95131972e-17 - art_sys_44: -7.09505593e-17 - art_sys_45: -1.10673982e-17 - art_sys_46: 1.75127521e-02 - art_sys_47: -1.14707435e-12 - art_sys_48: -1.90255321e-13 - art_sys_49: 5.84126740e-15 - art_sys_50: -1.19293324e-13 - art_sys_51: -2.03054855e-15 - art_sys_52: 3.28085293e-15 - art_sys_53: -1.55404092e-13 - art_sys_54: 3.09297879e-12 - art_sys_55: 1.14429026e-03 - art_sys_56: -7.79260117e-14 - art_sys_57: 1.45227611e-12 - art_sys_58: -3.70524599e-04 - art_sys_59: 9.97244798e-16 - art_sys_60: 1.06303218e-16 - art_sys_61: 5.25596904e-17 - art_sys_62: 2.15565662e-17 - art_sys_63: 2.05427307e-17 - art_sys_64: -1.16483242e-16 - art_sys_65: 1.11884518e-17 - art_sys_66: -5.93453002e-19 - art_sys_67: 8.28211220e-19 - art_sys_68: 3.05780597e-13 - art_sys_69: -4.04921644e-14 - art_sys_70: 2.34416154e-13 - art_sys_71: 2.85499314e-13 - art_sys_72: 9.04536705e-18 - art_sys_73: -7.78337591e-05 - art_sys_74: 1.25821484e-14 - art_sys_75: 8.15070823e-20 - art_sys_76: -4.35713544e-20 - art_sys_77: -6.42038807e-20 - art_sys_78: 1.29771630e-12 - art_sys_79: -6.44253673e-13 - art_sys_80: 2.60316363e-20 - art_sys_81: 6.74776731e-21 - art_sys_82: 5.52953883e-22 - art_sys_83: -1.59866158e-20 - art_sys_84: 9.99535603e-15 - art_sys_85: 2.87625937e-06 - art_sys_86: 8.70940351e-19 - art_sys_87: -5.16495123e-16 - art_sys_88: -2.85047524e-22 - art_sys_89: 4.44765877e-22 - art_sys_90: -1.13680832e-14 - art_sys_91: 3.41879409e-07 - art_sys_92: 1.99062173e-15 - art_sys_93: -2.63070594e-22 - art_sys_94: 2.02233546e-23 - art_sys_95: -2.34366241e-15 - art_sys_96: -9.40771678e-09 - art_sys_97: 5.02810343e-17 - art_sys_98: 8.20470274e-19 - art_sys_99: -1.24587167e-23 - art_sys_100: 4.93664817e-24 - art_sys_101: -3.29219576e-24 - art_sys_102: 1.25859094e-17 - art_sys_103: -2.41242842e-24 - art_sys_104: -7.96570385e-18 - art_sys_105: 1.02272965e-24 - art_sys_106: 1.56533518e-20 - art_sys_107: -3.39770122e-18 - art_sys_108: 5.58023993e-26 - art_sys_109: -1.72306994e-18 - art_sys_110: 3.16536752e-22 - art_sys_111: 3.60717537e-24 - art_sys_112: 5.77508986e-19 - art_sys_113: -1.22017082e-19 - art_sys_114: 5.23435248e-20 - art_sys_115: -8.49067930e-23 - art_sys_116: 3.86916489e-20 - art_sys_117: -1.53912682e-11 - art_sys_118: -2.98452687e-19 - art_sys_119: 7.34904912e-25 - art_sys_120: -4.98796635e-24 - art_sys_121: -6.87360802e-24 - art_sys_122: 4.64477342e-24 - art_sys_123: 5.59870407e-23 - art_sys_124: -2.31831092e-23 - art_sys_125: -1.20539869e-19 - art_sys_126: 2.16137742e-23 - art_sys_127: -4.07137374e-20 - art_sys_128: -4.00166742e-24 - art_sys_129: -2.12420391e-23 - art_sys_130: -2.17781192e-19 - art_sys_131: 1.97123134e-19 - art_sys_132: -1.07334014e-26 - art_sys_133: -9.11632623e-24 - art_sys_134: 1.21995366e-22 - art_sys_135: 3.01927891e-26 - art_sys_136: 4.70840320e-27 - art_sys_137: 4.20237322e-27 - art_sys_138: 3.25957974e-26 - art_sys_139: -1.14008760e-27 - art_sys_140: -1.92603088e-27 - art_sys_141: -2.27306857e-28 - art_sys_142: 2.01032480e-27 - art_sys_143: -1.49992525e-28 - art_sys_144: 1.19004079e-29 - art_sys_145: -1.61234008e-29 - art_sys_146: 1.20692221e-29 - art_sys_147: 8.53220152e-30 - art_sys_148: -3.26431916e-30 - art_sys_149: 1.48843517e-30 - art_sys_150: -1.61844471e-30 - art_sys_151: -1.80751318e-31 - art_sys_152: 5.31256278e-33 - art_sys_153: 1.00581072e-33 - art_sys_154: 8.76145616e-35 - art_sys_155: 7.17678320e-36 - art_sys_156: -1.19023812e-35 - art_sys_157: 6.58445938e-35 - art_sys_158: -5.04649068e-35 - art_sys_159: 1.82220677e-35 - art_sys_160: -3.00039834e-34 - art_sys_161: 1.74457871e-33 - art_sys_162: -1.11086216e-34 - art_sys_163: 3.23112352e-36 - art_sys_164: 6.91742081e-35 - art_sys_165: -6.98138652e-35 - art_sys_166: -2.12231853e-36 - art_sys_167: 2.25663396e-36 - art_sys_168: -1.05860615e-26 - art_sys_169: -1.01888021e-36 - art_sys_170: -2.91123678e-27 - art_sys_171: -7.24205448e-27 - art_sys_172: 1.04527561e-36 - art_sys_173: -2.30202323e-36 - art_sys_174: 5.54601265e-28 - art_sys_175: 0.0 - art_sys_176: -1.28323222e-28 - art_sys_177: 0.0 - art_sys_178: -2.71861632e-29 - art_sys_179: 2.59299210e-31 - art_sys_180: -7.50042977e-35 - art_sys_181: 1.85328933e-38 - art_sys_182: 0.0 - art_sys_183: 2.72525147e-37 - art_sys_184: 4.70606987e-36 - art_sys_185: -3.48303765e-39 +- art_sys_1: 5.74695836e-06 + art_sys_2: -1.06582257e-04 + art_sys_3: 2.10507509e-16 + art_sys_4: -1.40472870e-14 + art_sys_5: 6.57402149e-17 + art_sys_6: -1.96463296e-04 + art_sys_7: -1.13268691e-14 + art_sys_8: -3.65604294e-15 + art_sys_9: 1.23138625e-14 + art_sys_10: 9.54040622e-05 + art_sys_11: 9.38505345e-15 + art_sys_12: 5.37140404e-15 + art_sys_13: 4.83010173e-04 + art_sys_14: -3.66898617e-16 + art_sys_15: -1.43310890e-16 + art_sys_16: 2.14618283e-16 + art_sys_17: -1.67228888e-03 + art_sys_18: -1.57373740e-15 + art_sys_19: -1.11771174e-16 + art_sys_20: -8.44256911e-04 + art_sys_21: 6.23992580e-18 + art_sys_22: -2.51861161e-16 + art_sys_23: -2.83532321e-03 + art_sys_24: 1.11851908e-16 + art_sys_25: -4.54335683e-14 + art_sys_26: -2.62105459e-14 + art_sys_27: 3.07562799e-14 + art_sys_28: -1.41290246e-16 + art_sys_29: -9.98566124e-18 + art_sys_30: -7.11626152e-15 + art_sys_31: -3.54081747e-16 + art_sys_32: 8.87442089e-16 + art_sys_33: -7.24113087e-16 + art_sys_34: 2.54342649e-12 + art_sys_35: 3.42594914e-03 + art_sys_36: -6.39237340e-15 + art_sys_37: -8.38711779e-12 + art_sys_38: 5.79559029e-16 + art_sys_39: 2.21025443e-02 + art_sys_40: -9.65139583e-11 + art_sys_41: 1.72258498e-15 + art_sys_42: -1.94617649e-10 + art_sys_43: 1.56735126e-17 + art_sys_44: 1.49844583e-17 + art_sys_45: -2.84065355e-17 + art_sys_46: 1.75127520e-02 + art_sys_47: -9.19809470e-14 + art_sys_48: 3.92297653e-12 + art_sys_49: -1.54218170e-14 + art_sys_50: 9.25933123e-15 + art_sys_51: 3.16176240e-15 + art_sys_52: 9.49679810e-17 + art_sys_53: 6.06408750e-17 + art_sys_54: -8.42010505e-17 + art_sys_55: -2.42042435e-15 + art_sys_56: -4.18709076e-14 + art_sys_57: 1.87491585e-12 + art_sys_58: -2.13792969e-16 + art_sys_59: 1.87698477e-17 + art_sys_60: -6.07534320e-12 + art_sys_61: -1.14429035e-03 + art_sys_62: 1.14684106e-12 + art_sys_63: 8.81085885e-14 + art_sys_64: 2.86142800e-12 + art_sys_65: -9.81830609e-18 + art_sys_66: -1.59375564e-18 + art_sys_67: -3.70524603e-04 + art_sys_68: 7.90304782e-13 + art_sys_69: -6.66975736e-15 + art_sys_70: -5.05486397e-14 + art_sys_71: -2.74990809e-13 + art_sys_72: -7.78337585e-05 + art_sys_73: 6.99454329e-17 + art_sys_74: -1.60388486e-16 + art_sys_75: -6.69889466e-18 + art_sys_76: -5.60364419e-20 + art_sys_77: -3.45420744e-13 + art_sys_78: -3.48908075e-17 + art_sys_79: -1.61220949e-17 + art_sys_80: 1.54811686e-16 + art_sys_81: 3.09316111e-18 + art_sys_82: -5.55913665e-18 + art_sys_83: -3.19992705e-19 + art_sys_84: 7.41756065e-18 + art_sys_85: -9.58457817e-19 + art_sys_86: -3.93639733e-20 + art_sys_87: -5.65814398e-13 + art_sys_88: 1.60040898e-20 + art_sys_89: 9.99947971e-21 + art_sys_90: 3.75816424e-13 + art_sys_91: 5.71900336e-15 + art_sys_92: 6.91352554e-13 + art_sys_93: 2.87625540e-06 + art_sys_94: -9.78822916e-13 + art_sys_95: 9.11390354e-19 + art_sys_96: 4.08988584e-23 + art_sys_97: -3.01399608e-19 + art_sys_98: -9.62579725e-14 + art_sys_99: -3.41844204e-07 + art_sys_100: -5.00872481e-23 + art_sys_101: -1.51335711e-14 + art_sys_102: -9.54679369e-15 + art_sys_103: 5.94976727e-23 + art_sys_104: -9.40105524e-09 + art_sys_105: -1.98288095e-16 + art_sys_106: -1.92081473e-19 + art_sys_107: 1.82254701e-23 + art_sys_108: -3.19083131e-24 + art_sys_109: -9.47634589e-24 + art_sys_110: 3.90935525e-23 + art_sys_111: 2.37425922e-18 + art_sys_112: 6.46929666e-24 + art_sys_113: 5.23261320e-25 + art_sys_114: -1.58054988e-18 + art_sys_115: -1.74141177e-24 + art_sys_116: -1.19832285e-22 + art_sys_117: 1.12013845e-18 + art_sys_118: 3.24184211e-24 + art_sys_119: -6.33832074e-19 + art_sys_120: -1.73318755e-23 + art_sys_121: 2.72231372e-24 + art_sys_122: -2.83985789e-19 + art_sys_123: -1.13945741e-19 + art_sys_124: -4.96127277e-25 + art_sys_125: -1.58229039e-23 + art_sys_126: -5.15706622e-24 + art_sys_127: 5.44862518e-20 + art_sys_128: -8.30727404e-25 + art_sys_129: -1.10157303e-20 + art_sys_130: -2.12181424e-23 + art_sys_131: 3.05608431e-23 + art_sys_132: -3.06988142e-20 + art_sys_133: -1.05373960e-22 + art_sys_134: -2.79737127e-25 + art_sys_135: -5.77329382e-21 + art_sys_136: 3.87539339e-23 + art_sys_137: 6.73166938e-26 + art_sys_138: 3.21677315e-11 + art_sys_139: 3.35860423e-20 + art_sys_140: 5.10598240e-21 + art_sys_141: 6.25890340e-19 + art_sys_142: -7.84229559e-21 + art_sys_143: 1.23984623e-26 + art_sys_144: -7.30644982e-25 + art_sys_145: 5.57362743e-24 + art_sys_146: -0.0 + art_sys_147: 3.57535917e-22 + art_sys_148: -4.98492424e-21 + art_sys_149: -4.98492424e-21 + art_sys_150: -9.20782518e-22 + art_sys_151: -9.20782518e-22 + art_sys_152: -5.80873308e-21 + art_sys_153: 2.86154661e-22 + art_sys_154: -3.81658278e-25 + art_sys_155: 1.31895815e-33 + art_sys_156: 1.42357608e-38 + art_sys_157: -2.53558028e-38 + art_sys_158: -0.0 + art_sys_159: 2.46840712e-26 + art_sys_160: -6.45635562e-26 + art_sys_161: -3.32881178e-27 + art_sys_162: 5.14167955e-28 + art_sys_163: -9.33216384e-26 + art_sys_164: 1.11834501e-25 + art_sys_165: -2.37276752e-27 + art_sys_166: -1.09527663e-32 + art_sys_167: 5.70078288e-33 + art_sys_168: 1.12221644e-32 + art_sys_169: -7.15043847e-33 + art_sys_170: -1.08177373e-32 + art_sys_171: -3.54644478e-33 + art_sys_172: -3.83329289e-31 + art_sys_173: -6.34828202e-32 + art_sys_174: -9.13220023e-33 + art_sys_175: -3.41981634e-36 + art_sys_176: -5.99542402e-34 + art_sys_177: 1.73726343e-34 + art_sys_178: -9.17990633e-35 + art_sys_179: 9.15862595e-36 + art_sys_180: 6.46637876e-35 + art_sys_181: 1.98091296e-38 + art_sys_182: 7.13530345e-37 + art_sys_183: 4.94253760e-39 + art_sys_184: -5.42302924e-40 + art_sys_185: 1.04512115e-40 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -68915,191 +68915,191 @@ bins: RelativeStatFSR-: -9.00526960e-03 luminosity_uncertainty: 3.28491800e-02 uncorrelated_uncertainty: 1.26343000e-02 -- art_sys_1: 1.38489654e-06 - art_sys_2: -4.96008607e-18 - art_sys_3: 1.37599645e-05 - art_sys_4: -2.24874822e-15 - art_sys_5: 9.60983711e-17 - art_sys_6: 3.14943578e-05 - art_sys_7: 4.33759938e-16 - art_sys_8: 4.17026995e-17 - art_sys_9: -1.44202711e-15 - art_sys_10: -2.42579302e-05 - art_sys_11: 3.85382063e-15 - art_sys_12: 7.51214238e-15 - art_sys_13: 1.22647013e-04 - art_sys_14: 5.08794382e-16 - art_sys_15: 6.39462818e-16 - art_sys_16: 4.41185577e-16 - art_sys_17: 3.21312810e-04 - art_sys_18: -8.33954776e-16 - art_sys_19: 1.10738031e-15 - art_sys_20: -9.46036989e-04 - art_sys_21: 1.43794708e-15 - art_sys_22: 2.19797579e-16 - art_sys_23: -4.77638716e-04 - art_sys_24: -3.82026609e-17 - art_sys_25: 6.74118127e-14 - art_sys_26: -2.34236852e-14 - art_sys_27: 2.25321635e-14 - art_sys_28: 4.11475613e-15 - art_sys_29: 1.08772984e-15 - art_sys_30: -3.96393588e-17 - art_sys_31: -1.72320943e-17 - art_sys_32: -2.01913734e-16 - art_sys_33: -5.46919338e-16 - art_sys_34: -5.99912892e-14 +- art_sys_1: -1.38489654e-06 + art_sys_2: -1.37599645e-05 + art_sys_3: -5.32877232e-17 + art_sys_4: -6.39863257e-16 + art_sys_5: 7.00938439e-18 + art_sys_6: -3.14943578e-05 + art_sys_7: 5.38299951e-16 + art_sys_8: 3.02824515e-16 + art_sys_9: -9.63527246e-16 + art_sys_10: 2.42579302e-05 + art_sys_11: 1.84798679e-15 + art_sys_12: 1.21953573e-15 + art_sys_13: -1.22647013e-04 + art_sys_14: -2.79381228e-16 + art_sys_15: -2.46144117e-16 + art_sys_16: 8.02167580e-16 + art_sys_17: -3.21312810e-04 + art_sys_18: 1.01502830e-16 + art_sys_19: 3.66769848e-17 + art_sys_20: 9.46036989e-04 + art_sys_21: -1.46807168e-16 + art_sys_22: 6.04931511e-17 + art_sys_23: 4.77638715e-04 + art_sys_24: -8.41983022e-16 + art_sys_25: 2.84110166e-14 + art_sys_26: -1.27705750e-14 + art_sys_27: 3.42965365e-15 + art_sys_28: -4.80520669e-18 + art_sys_29: 4.03079538e-17 + art_sys_30: -5.36162334e-15 + art_sys_31: -5.04692301e-18 + art_sys_32: -5.53950831e-16 + art_sys_33: -1.16087265e-16 + art_sys_34: 1.38105486e-12 art_sys_35: 1.86033720e-03 - art_sys_36: -1.34314295e-16 - art_sys_37: -7.42462137e-14 - art_sys_38: -2.30390100e-16 - art_sys_39: -8.43404602e-04 - art_sys_40: -5.09202836e-14 - art_sys_41: -3.33454058e-17 - art_sys_42: -6.59104006e-13 - art_sys_43: 5.06492726e-17 - art_sys_44: 3.98980648e-18 - art_sys_45: 3.89419237e-17 - art_sys_46: 4.11087346e-03 - art_sys_47: 5.18747273e-12 - art_sys_48: 9.82737177e-14 - art_sys_49: -3.54347108e-14 - art_sys_50: 3.20901331e-13 - art_sys_51: -1.69097027e-14 - art_sys_52: -2.07995132e-14 - art_sys_53: 9.42657335e-13 - art_sys_54: -1.69155287e-11 - art_sys_55: -6.94111224e-03 - art_sys_56: 2.99939675e-13 - art_sys_57: -5.22232892e-12 - art_sys_58: 1.06043362e-03 - art_sys_59: -4.15101808e-15 - art_sys_60: -4.36885310e-16 - art_sys_61: -2.20900891e-16 - art_sys_62: -8.92203725e-17 - art_sys_63: -8.43510572e-17 - art_sys_64: 4.91351301e-16 - art_sys_65: -4.63392161e-17 - art_sys_66: 2.49385664e-18 - art_sys_67: -2.20858317e-18 - art_sys_68: -1.33100666e-12 - art_sys_69: 1.48510260e-13 - art_sys_70: -9.19894391e-13 - art_sys_71: -1.18851686e-12 - art_sys_72: -3.51668663e-17 - art_sys_73: 3.25000229e-04 - art_sys_74: -5.90772187e-14 - art_sys_75: -3.12097853e-19 - art_sys_76: 1.77213572e-19 - art_sys_77: 2.49898489e-19 - art_sys_78: -4.98085163e-12 - art_sys_79: 2.90933369e-12 - art_sys_80: -9.88359245e-20 - art_sys_81: -2.50539505e-20 - art_sys_82: -5.59132517e-22 - art_sys_83: 7.98582725e-20 - art_sys_84: -4.30693855e-14 - art_sys_85: -1.10449838e-05 - art_sys_86: -3.63262262e-18 - art_sys_87: 2.13266938e-15 - art_sys_88: 1.24398858e-21 - art_sys_89: -1.40933911e-21 - art_sys_90: 4.73154105e-14 - art_sys_91: -1.48323869e-06 - art_sys_92: -8.11178400e-15 - art_sys_93: 5.55063451e-22 - art_sys_94: 9.61166040e-23 - art_sys_95: 9.77039692e-15 - art_sys_96: 3.96513871e-08 - art_sys_97: -1.95057983e-16 - art_sys_98: -3.40893249e-18 - art_sys_99: 3.18019254e-23 - art_sys_100: -2.09136659e-23 - art_sys_101: 1.40945454e-23 - art_sys_102: -2.72175043e-17 - art_sys_103: 9.32026115e-24 - art_sys_104: 1.62404392e-17 - art_sys_105: 5.82735217e-24 - art_sys_106: -6.49954309e-20 - art_sys_107: 3.86096313e-18 - art_sys_108: 6.91493099e-25 - art_sys_109: 2.09490507e-18 - art_sys_110: -1.65416371e-21 - art_sys_111: -1.41622743e-23 - art_sys_112: -2.79263575e-19 - art_sys_113: -3.14647476e-19 - art_sys_114: 8.11272066e-20 - art_sys_115: 3.54662732e-22 - art_sys_116: -2.45853396e-19 - art_sys_117: 6.39750354e-11 - art_sys_118: 1.27051810e-18 - art_sys_119: -3.00144214e-24 - art_sys_120: 2.12292949e-23 - art_sys_121: 2.84578768e-23 - art_sys_122: -1.92136706e-23 - art_sys_123: -2.32898737e-22 - art_sys_124: 9.63220798e-23 - art_sys_125: 5.06336889e-19 - art_sys_126: -8.98557041e-23 - art_sys_127: 1.69752911e-19 - art_sys_128: 1.66204830e-23 - art_sys_129: 8.83018255e-23 - art_sys_130: 9.05227746e-19 - art_sys_131: -8.19359700e-19 - art_sys_132: 4.46050285e-26 - art_sys_133: 3.78927960e-23 - art_sys_134: -5.07081719e-22 - art_sys_135: -1.33524155e-25 - art_sys_136: -2.04967623e-26 - art_sys_137: -1.76264690e-26 - art_sys_138: -1.40021889e-25 - art_sys_139: 1.27867138e-27 - art_sys_140: 9.06557189e-27 - art_sys_141: 1.08325636e-27 - art_sys_142: -8.29310320e-27 - art_sys_143: 7.78278178e-28 - art_sys_144: 1.39148155e-29 - art_sys_145: -1.76750375e-29 - art_sys_146: 1.69619669e-29 - art_sys_147: 1.64732755e-29 - art_sys_148: 7.18661978e-30 - art_sys_149: 3.11169000e-30 - art_sys_150: -2.10253070e-30 - art_sys_151: 1.00368114e-32 - art_sys_152: 5.14596124e-33 - art_sys_153: 5.95739356e-34 - art_sys_154: 1.28921746e-34 - art_sys_155: -2.98402778e-35 - art_sys_156: -5.48498996e-36 - art_sys_157: 4.43176623e-35 - art_sys_158: 1.41691303e-34 - art_sys_159: -6.83156842e-35 - art_sys_160: 1.26502900e-33 - art_sys_161: -7.29066581e-33 - art_sys_162: 4.34733143e-34 - art_sys_163: -1.87931953e-36 - art_sys_164: -3.02511581e-34 - art_sys_165: 3.01715592e-34 - art_sys_166: 9.63340420e-36 - art_sys_167: 6.13939767e-38 - art_sys_168: 4.35286918e-26 - art_sys_169: 4.15631856e-36 - art_sys_170: 1.21844852e-26 - art_sys_171: 3.02606295e-26 - art_sys_172: -4.96441846e-36 - art_sys_173: 1.10329357e-35 - art_sys_174: -2.30954036e-27 - art_sys_175: 0.0 - art_sys_176: 5.35806928e-28 - art_sys_177: 0.0 - art_sys_178: 1.12673243e-28 - art_sys_179: -1.05308413e-30 - art_sys_180: 3.11935856e-34 - art_sys_181: -7.70332143e-38 - art_sys_182: 0.0 - art_sys_183: -1.13277161e-36 - art_sys_184: -1.95612051e-35 - art_sys_185: 1.44775457e-38 + art_sys_36: 7.71273831e-16 + art_sys_37: 3.19947024e-13 + art_sys_38: 2.82545105e-17 + art_sys_39: -8.43404607e-04 + art_sys_40: 3.68287277e-12 + art_sys_41: 2.20249596e-16 + art_sys_42: -4.56831600e-11 + art_sys_43: 1.79874210e-17 + art_sys_44: -3.71198967e-17 + art_sys_45: 5.17884736e-18 + art_sys_46: 4.11087348e-03 + art_sys_47: 4.17054394e-12 + art_sys_48: -1.06281432e-11 + art_sys_49: 8.47472014e-14 + art_sys_50: -4.65165168e-14 + art_sys_51: -2.08237332e-14 + art_sys_52: -2.23840319e-15 + art_sys_53: -1.01868446e-15 + art_sys_54: 1.66093916e-16 + art_sys_55: 1.46811348e-14 + art_sys_56: 2.53988054e-13 + art_sys_57: -3.89677531e-12 + art_sys_58: 8.54322804e-16 + art_sys_59: -1.00004918e-16 + art_sys_60: 3.85718700e-11 + art_sys_61: 6.94111268e-03 + art_sys_62: -7.27287592e-12 + art_sys_63: -2.67794317e-13 + art_sys_64: -8.07253454e-12 + art_sys_65: 2.74189880e-17 + art_sys_66: 1.69045681e-18 + art_sys_67: 1.06043362e-03 + art_sys_68: -3.03450582e-12 + art_sys_69: 2.89036517e-14 + art_sys_70: 1.95287329e-13 + art_sys_71: 1.14551030e-12 + art_sys_72: 3.25000225e-04 + art_sys_73: -2.77804715e-16 + art_sys_74: 6.13242808e-16 + art_sys_75: 2.74592001e-17 + art_sys_76: 2.09108732e-19 + art_sys_77: 1.32655873e-12 + art_sys_78: 1.42925526e-16 + art_sys_79: 6.22402369e-17 + art_sys_80: -6.97025775e-16 + art_sys_81: -1.30913154e-17 + art_sys_82: 2.19281597e-17 + art_sys_83: 6.63565625e-19 + art_sys_84: -2.91292401e-17 + art_sys_85: 3.64835268e-18 + art_sys_86: 1.53305030e-19 + art_sys_87: 2.32617293e-12 + art_sys_88: -6.31794209e-20 + art_sys_89: -3.61938570e-20 + art_sys_90: -1.44975616e-12 + art_sys_91: -2.37738112e-14 + art_sys_92: -3.00665644e-12 + art_sys_93: -1.10449880e-05 + art_sys_94: 4.24455489e-12 + art_sys_95: -3.78774662e-18 + art_sys_96: -1.98077099e-22 + art_sys_97: 1.25389618e-18 + art_sys_98: 4.04333726e-13 + art_sys_99: 1.48310190e-06 + art_sys_100: 9.54115684e-23 + art_sys_101: 6.29802838e-14 + art_sys_102: 3.96944346e-14 + art_sys_103: 1.33864783e-22 + art_sys_104: 3.96259250e-08 + art_sys_105: 8.14710430e-16 + art_sys_106: 7.98343953e-19 + art_sys_107: -7.65391050e-23 + art_sys_108: 1.33803221e-23 + art_sys_109: 3.99965187e-23 + art_sys_110: 5.27270635e-23 + art_sys_111: -6.25941255e-18 + art_sys_112: -1.06416561e-24 + art_sys_113: -2.24110157e-24 + art_sys_114: 2.22838013e-18 + art_sys_115: 2.41904467e-24 + art_sys_116: 6.45479238e-22 + art_sys_117: -1.95785534e-18 + art_sys_118: -9.03050885e-24 + art_sys_119: 1.11288256e-18 + art_sys_120: 6.59604818e-23 + art_sys_121: -1.07806421e-23 + art_sys_122: 4.90491010e-19 + art_sys_123: 1.92650245e-19 + art_sys_124: 1.54680891e-24 + art_sys_125: 1.87922777e-23 + art_sys_126: 2.22315331e-23 + art_sys_127: -1.20409939e-19 + art_sys_128: 4.90107792e-24 + art_sys_129: 1.44826387e-20 + art_sys_130: 9.01344685e-23 + art_sys_131: -1.35919535e-22 + art_sys_132: 1.38937921e-19 + art_sys_133: 4.64755596e-22 + art_sys_134: 1.21612229e-24 + art_sys_135: 2.19711520e-20 + art_sys_136: -1.55261869e-22 + art_sys_137: -2.80674636e-25 + art_sys_138: -1.33735207e-10 + art_sys_139: -1.39437438e-19 + art_sys_140: -2.11995178e-20 + art_sys_141: -2.60210397e-18 + art_sys_142: 3.26066012e-20 + art_sys_143: -5.17645480e-26 + art_sys_144: 3.03706020e-24 + art_sys_145: -2.31745094e-23 + art_sys_146: 0.0 + art_sys_147: -1.48675995e-21 + art_sys_148: 2.07285720e-20 + art_sys_149: 2.07285720e-20 + art_sys_150: 3.82817210e-21 + art_sys_151: 3.82817210e-21 + art_sys_152: 2.41430408e-20 + art_sys_153: -1.18913317e-21 + art_sys_154: 1.58679410e-24 + art_sys_155: -5.48157076e-33 + art_sys_156: -5.92313629e-38 + art_sys_157: 1.04860332e-37 + art_sys_158: 0.0 + art_sys_159: -8.13069202e-26 + art_sys_160: 2.54707220e-25 + art_sys_161: 1.33971600e-26 + art_sys_162: 5.27775564e-27 + art_sys_163: 3.78261173e-25 + art_sys_164: -4.51121828e-25 + art_sys_165: 5.32816834e-27 + art_sys_166: 2.57347273e-32 + art_sys_167: -1.94201954e-32 + art_sys_168: -4.12541809e-32 + art_sys_169: 3.34823206e-32 + art_sys_170: 2.73549234e-32 + art_sys_171: 6.01885222e-33 + art_sys_172: -3.95140330e-31 + art_sys_173: -7.27788293e-32 + art_sys_174: -1.21005048e-32 + art_sys_175: 1.42193881e-35 + art_sys_176: 6.91227398e-34 + art_sys_177: 1.00372194e-34 + art_sys_178: -6.47484071e-35 + art_sys_179: 8.70030761e-36 + art_sys_180: 5.24773262e-35 + art_sys_181: 2.26554860e-37 + art_sys_182: 6.71204238e-37 + art_sys_183: -3.27560801e-39 + art_sys_184: 2.15615852e-39 + art_sys_185: -4.30173964e-40 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -69206,191 +69206,191 @@ bins: RelativeStatFSR-: -3.47370742e-03 luminosity_uncertainty: 1.10394700e-02 uncorrelated_uncertainty: 4.24595000e-03 -- art_sys_1: 1.80558495e-07 - art_sys_2: -3.11707010e-21 - art_sys_3: 1.01152237e-06 - art_sys_4: 6.42154636e-15 - art_sys_5: 1.82027013e-17 - art_sys_6: 2.38400528e-06 - art_sys_7: 4.33105083e-16 - art_sys_8: -1.47901245e-16 - art_sys_9: -3.56835291e-16 - art_sys_10: -1.44876992e-06 - art_sys_11: -3.53056685e-15 - art_sys_12: -7.38690493e-16 - art_sys_13: 2.21927531e-05 - art_sys_14: -2.70346313e-17 - art_sys_15: 1.02190254e-17 - art_sys_16: 3.19018806e-16 - art_sys_17: 8.01566573e-07 - art_sys_18: -1.65809672e-17 - art_sys_19: -3.22557273e-16 - art_sys_20: -1.12124507e-04 - art_sys_21: -1.28910864e-16 - art_sys_22: 2.73448355e-16 - art_sys_23: -1.20305744e-04 - art_sys_24: 1.12347027e-15 - art_sys_25: -1.00767205e-13 - art_sys_26: -3.70940272e-14 - art_sys_27: -9.33936688e-15 - art_sys_28: 8.19782214e-15 - art_sys_29: -1.72987314e-15 - art_sys_30: 9.66932451e-18 - art_sys_31: -3.59314307e-17 - art_sys_32: 2.42817984e-16 - art_sys_33: 4.32793230e-16 - art_sys_34: 2.27092941e-15 - art_sys_35: -6.88557232e-05 - art_sys_36: -1.77429051e-16 - art_sys_37: -9.28776428e-14 - art_sys_38: -7.35207690e-17 +- art_sys_1: -1.80558495e-07 + art_sys_2: -1.01152237e-06 + art_sys_3: -8.90297294e-18 + art_sys_4: 1.33751185e-15 + art_sys_5: -1.98771299e-18 + art_sys_6: -2.38400528e-06 + art_sys_7: 5.03088029e-16 + art_sys_8: 1.64010533e-16 + art_sys_9: -5.27972784e-16 + art_sys_10: 1.44876992e-06 + art_sys_11: 2.65112152e-16 + art_sys_12: -3.33031212e-16 + art_sys_13: -2.21927531e-05 + art_sys_14: 1.07511149e-17 + art_sys_15: -1.53771517e-17 + art_sys_16: -2.20787333e-16 + art_sys_17: -8.01566573e-07 + art_sys_18: 7.57307664e-17 + art_sys_19: 1.54108012e-15 + art_sys_20: 1.12124507e-04 + art_sys_21: 1.00835726e-16 + art_sys_22: 1.66831434e-16 + art_sys_23: 1.20305744e-04 + art_sys_24: -6.49810824e-16 + art_sys_25: 9.11670687e-14 + art_sys_26: 1.64554333e-14 + art_sys_27: 1.41175875e-14 + art_sys_28: 6.89841351e-17 + art_sys_29: 9.96846208e-19 + art_sys_30: 7.09170832e-15 + art_sys_31: -1.13797489e-15 + art_sys_32: -6.74303297e-16 + art_sys_33: 2.59037140e-17 + art_sys_34: -5.11101096e-14 + art_sys_35: -6.88557238e-05 + art_sys_36: 3.04781979e-16 + art_sys_37: 4.00951055e-13 + art_sys_38: -2.76117415e-17 art_sys_39: -1.05655474e-03 - art_sys_40: -6.37871110e-14 - art_sys_41: -4.05950174e-16 - art_sys_42: 1.33349907e-13 - art_sys_43: 1.31922344e-17 - art_sys_44: 1.44822928e-17 - art_sys_45: 1.27762414e-17 - art_sys_46: -8.31833622e-04 - art_sys_47: 1.61098696e-12 - art_sys_48: -3.15923578e-12 - art_sys_49: -1.32721262e-14 - art_sys_50: -2.58024157e-12 - art_sys_51: -1.13179311e-13 - art_sys_52: -1.28744496e-14 - art_sys_53: 3.52667663e-13 - art_sys_54: 7.63590359e-12 - art_sys_55: -2.59687755e-03 - art_sys_56: -1.15250488e-12 - art_sys_57: 2.49804897e-11 - art_sys_58: -3.23335475e-03 - art_sys_59: 9.86285440e-15 - art_sys_60: 1.12841311e-15 - art_sys_61: 4.63354081e-16 - art_sys_62: 2.02366532e-16 - art_sys_63: 2.24887651e-16 - art_sys_64: -1.04438962e-15 - art_sys_65: 1.13839984e-16 - art_sys_66: -5.54667519e-18 - art_sys_67: 4.41718236e-18 - art_sys_68: 3.93380214e-12 - art_sys_69: -6.63189639e-13 - art_sys_70: 3.25231904e-12 - art_sys_71: 2.82908010e-12 - art_sys_72: 2.06756965e-16 - art_sys_73: -7.52522329e-04 - art_sys_74: 1.05485527e-14 - art_sys_75: 1.32558936e-18 - art_sys_76: -6.38570474e-19 - art_sys_77: -9.90865993e-19 - art_sys_78: 2.00585503e-11 - art_sys_79: -7.75992195e-12 - art_sys_80: 4.05341347e-19 - art_sys_81: 1.08867897e-19 - art_sys_82: 1.35349587e-20 - art_sys_83: 9.16567723e-20 - art_sys_84: 2.23923273e-13 - art_sys_85: 4.44307446e-05 - art_sys_86: 1.39041061e-17 - art_sys_87: -8.50607509e-15 - art_sys_88: -2.95810394e-21 - art_sys_89: 8.02895000e-21 - art_sys_90: -1.82399952e-13 - art_sys_91: 4.42407472e-06 - art_sys_92: 3.11246774e-14 - art_sys_93: -1.81146388e-21 - art_sys_94: 6.00481608e-22 - art_sys_95: -3.76768588e-14 - art_sys_96: -2.35178597e-07 - art_sys_97: 7.43579204e-16 - art_sys_98: 1.31321935e-17 - art_sys_99: -3.88980232e-22 - art_sys_100: 1.44713574e-22 - art_sys_101: -9.29335650e-23 - art_sys_102: 7.86685143e-17 - art_sys_103: -2.70516033e-23 - art_sys_104: -4.42824585e-17 - art_sys_105: 1.85511728e-23 - art_sys_106: 2.47854786e-19 - art_sys_107: -3.79674833e-18 - art_sys_108: -2.51526086e-24 - art_sys_109: -2.56873942e-18 - art_sys_110: 6.54460267e-21 - art_sys_111: 5.48804804e-23 - art_sys_112: -1.23181305e-18 - art_sys_113: 2.11237529e-18 - art_sys_114: -6.40305908e-19 - art_sys_115: -1.34705683e-21 - art_sys_116: 1.04101457e-18 - art_sys_117: -2.46475965e-10 - art_sys_118: -4.92808866e-18 - art_sys_119: 1.17720745e-23 - art_sys_120: -8.24756284e-23 - art_sys_121: -1.09582866e-22 - art_sys_122: 7.39020599e-23 - art_sys_123: 9.01601299e-22 - art_sys_124: -3.71102824e-22 - art_sys_125: -1.95670535e-18 - art_sys_126: 3.46222119e-22 - art_sys_127: -6.54631071e-19 - art_sys_128: -6.40160668e-23 - art_sys_129: -3.40206393e-22 - art_sys_130: -3.48757678e-18 - art_sys_131: 3.15674516e-18 - art_sys_132: -1.71852578e-25 - art_sys_133: -1.45989080e-22 - art_sys_134: 1.95362819e-21 - art_sys_135: 3.26837439e-25 - art_sys_136: 4.57934702e-26 - art_sys_137: 4.75105583e-26 - art_sys_138: 7.70614019e-25 - art_sys_139: -4.52685147e-26 - art_sys_140: -2.76768161e-26 - art_sys_141: -2.03127901e-27 - art_sys_142: 2.84483285e-26 - art_sys_143: -9.81240719e-28 - art_sys_144: 7.07163504e-28 - art_sys_145: -1.73140431e-28 - art_sys_146: 2.68947599e-28 - art_sys_147: 5.96354763e-28 - art_sys_148: -1.18124044e-28 - art_sys_149: 9.15037446e-29 - art_sys_150: -9.20754043e-29 - art_sys_151: -3.70680520e-30 - art_sys_152: 2.44892207e-31 - art_sys_153: 4.90141429e-32 - art_sys_154: 3.83451444e-33 - art_sys_155: 4.97609741e-34 - art_sys_156: 1.39223642e-34 - art_sys_157: -8.90369810e-35 - art_sys_158: 9.79413356e-35 - art_sys_159: 1.20869981e-34 - art_sys_160: -2.91400052e-33 - art_sys_161: 1.74914816e-32 - art_sys_162: -4.70997444e-34 - art_sys_163: -1.61775893e-34 - art_sys_164: 8.41110759e-34 - art_sys_165: -8.46425536e-34 - art_sys_166: -2.05575511e-35 - art_sys_167: 1.53275325e-34 - art_sys_168: -1.69074530e-25 - art_sys_169: -1.74129576e-35 - art_sys_170: -4.61178978e-26 - art_sys_171: -1.17013402e-25 - art_sys_172: 4.54682958e-36 - art_sys_173: -4.31777077e-35 - art_sys_174: 9.00875595e-27 - art_sys_175: 0.0 - art_sys_176: -2.03443336e-27 - art_sys_177: 0.0 - art_sys_178: -4.37741039e-28 - art_sys_179: 4.32524927e-30 - art_sys_180: -1.19898145e-33 - art_sys_181: 2.96785584e-37 - art_sys_182: 0.0 - art_sys_183: 4.36421310e-36 - art_sys_184: 7.53634941e-35 - art_sys_185: -5.57776160e-38 + art_sys_40: 4.61361059e-12 + art_sys_41: -8.48881464e-17 + art_sys_42: 9.24409531e-12 + art_sys_43: 1.26491794e-17 + art_sys_44: 7.44072404e-17 + art_sys_45: 3.87935011e-17 + art_sys_46: -8.31833628e-04 + art_sys_47: 8.37275351e-12 + art_sys_48: 3.60371028e-11 + art_sys_49: 1.83589961e-14 + art_sys_50: -4.13040360e-15 + art_sys_51: 3.18538507e-15 + art_sys_52: -7.52934510e-15 + art_sys_53: -2.28043715e-15 + art_sys_54: -1.02028936e-15 + art_sys_55: 5.49314077e-15 + art_sys_56: 9.50418614e-14 + art_sys_57: 2.13781457e-11 + art_sys_58: -1.27926418e-15 + art_sys_59: 1.98069224e-17 + art_sys_60: 2.95316290e-11 + art_sys_61: 2.59687774e-03 + art_sys_62: -4.95950446e-12 + art_sys_63: 7.80080254e-13 + art_sys_64: 2.36251479e-11 + art_sys_65: -8.53067638e-17 + art_sys_66: -1.34415066e-17 + art_sys_67: -3.23335474e-03 + art_sys_68: 1.22096976e-11 + art_sys_69: -8.70637546e-14 + art_sys_70: -7.86957070e-13 + art_sys_71: -2.70607876e-12 + art_sys_72: -7.52522306e-04 + art_sys_73: 1.09110199e-15 + art_sys_74: -2.51507100e-15 + art_sys_75: -9.25701051e-17 + art_sys_76: -8.89636548e-19 + art_sys_77: -5.33354427e-12 + art_sys_78: -1.96618754e-16 + art_sys_79: -2.51984597e-16 + art_sys_80: 2.42176872e-15 + art_sys_81: 4.37488387e-17 + art_sys_82: -8.34052559e-17 + art_sys_83: 1.30011135e-17 + art_sys_84: 1.10909462e-16 + art_sys_85: -1.51458318e-17 + art_sys_86: -6.01578934e-19 + art_sys_87: -7.96871907e-12 + art_sys_88: 2.37019465e-19 + art_sys_89: 1.66737499e-19 + art_sys_90: 5.77729897e-12 + art_sys_91: 9.30197552e-14 + art_sys_92: 8.87193368e-12 + art_sys_93: 4.44305854e-05 + art_sys_94: -1.28781726e-11 + art_sys_95: 1.47559537e-17 + art_sys_96: 3.58796866e-22 + art_sys_97: -4.83106428e-18 + art_sys_98: -2.19163677e-12 + art_sys_99: -4.42353756e-06 + art_sys_100: -1.32352037e-22 + art_sys_101: -2.43672615e-13 + art_sys_102: -1.52151562e-13 + art_sys_103: -2.37984010e-22 + art_sys_104: -2.35048976e-07 + art_sys_105: -3.11200434e-15 + art_sys_106: -3.06257941e-18 + art_sys_107: 4.46818299e-22 + art_sys_108: -1.03904920e-22 + art_sys_109: -2.37816976e-22 + art_sys_110: -3.73746775e-22 + art_sys_111: 1.69467073e-17 + art_sys_112: 5.40315573e-23 + art_sys_113: 7.88382801e-24 + art_sys_114: -1.49856161e-19 + art_sys_115: -3.32602001e-23 + art_sys_116: -3.25066474e-21 + art_sys_117: 2.28956788e-18 + art_sys_118: 2.90055457e-23 + art_sys_119: -1.38414250e-18 + art_sys_120: 2.17261394e-23 + art_sys_121: 4.28814667e-23 + art_sys_122: -5.84608608e-19 + art_sys_123: -2.12333783e-19 + art_sys_124: -5.90665920e-24 + art_sys_125: 2.91591270e-23 + art_sys_126: -8.95399555e-23 + art_sys_127: 2.64394265e-19 + art_sys_128: -2.21113274e-23 + art_sys_129: 2.32010010e-21 + art_sys_130: -3.53105828e-22 + art_sys_131: 5.40458057e-22 + art_sys_132: -5.57140699e-19 + art_sys_133: -1.84137240e-21 + art_sys_134: -4.79268532e-24 + art_sys_135: -8.05897913e-20 + art_sys_136: 5.88201808e-22 + art_sys_137: 1.08024758e-24 + art_sys_138: 5.15205741e-10 + art_sys_139: 5.36760861e-19 + art_sys_140: 8.16077102e-20 + art_sys_141: 1.00244314e-17 + art_sys_142: -1.25604765e-19 + art_sys_143: 2.00173708e-25 + art_sys_144: -1.16997934e-23 + art_sys_145: 8.92710862e-23 + art_sys_146: -0.0 + art_sys_147: 5.72688220e-21 + art_sys_148: -7.98443906e-20 + art_sys_149: -7.98443906e-20 + art_sys_150: -1.47468935e-20 + art_sys_151: -1.47468935e-20 + art_sys_152: -9.30016893e-20 + art_sys_153: 4.58087882e-21 + art_sys_154: -6.11234637e-24 + art_sys_155: 2.11158311e-32 + art_sys_156: 2.28189240e-37 + art_sys_157: -4.02792017e-37 + art_sys_158: -0.0 + art_sys_159: 4.33592593e-25 + art_sys_160: -1.64461883e-24 + art_sys_161: -4.82431078e-26 + art_sys_162: 1.06216041e-25 + art_sys_163: -1.46659738e-24 + art_sys_164: 1.86976771e-24 + art_sys_165: -7.42105194e-26 + art_sys_166: -3.05857086e-31 + art_sys_167: 1.10195802e-31 + art_sys_168: 1.89033916e-31 + art_sys_169: -5.44738923e-32 + art_sys_170: -3.08461378e-31 + art_sys_171: -1.52048800e-31 + art_sys_172: -1.99088923e-29 + art_sys_173: -3.02227103e-30 + art_sys_174: -4.27389713e-31 + art_sys_175: -5.47738577e-35 + art_sys_176: -2.05647918e-32 + art_sys_177: 1.00443529e-32 + art_sys_178: -4.61164642e-33 + art_sys_179: 4.55157384e-34 + art_sys_180: 3.55393309e-33 + art_sys_181: 4.60928733e-36 + art_sys_182: 4.50387584e-35 + art_sys_183: 1.94861160e-37 + art_sys_184: -9.28161578e-39 + art_sys_185: 1.69400785e-39 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -69497,191 +69497,191 @@ bins: RelativeStatFSR-: -1.29231308e-03 luminosity_uncertainty: 3.56205200e-03 uncorrelated_uncertainty: 1.37002000e-03 -- art_sys_1: 1.14437486e-08 - art_sys_2: 1.66766545e-19 - art_sys_3: 7.11510434e-08 - art_sys_4: -6.34951018e-17 - art_sys_5: -1.51480553e-19 - art_sys_6: 1.31177234e-07 - art_sys_7: -1.86083911e-17 - art_sys_8: 3.14861002e-18 - art_sys_9: 3.23666830e-17 - art_sys_10: 1.05104293e-07 - art_sys_11: -3.19351807e-17 - art_sys_12: -3.11841015e-16 - art_sys_13: 9.34615417e-07 - art_sys_14: -3.89770451e-17 - art_sys_15: -9.66519518e-17 - art_sys_16: -5.75461318e-17 - art_sys_17: -6.01308051e-06 - art_sys_18: 7.63951580e-17 - art_sys_19: -5.86366831e-17 - art_sys_20: 4.71207149e-06 - art_sys_21: -9.57853402e-17 - art_sys_22: -1.82331841e-17 - art_sys_23: -2.61029183e-06 - art_sys_24: -5.98401208e-17 - art_sys_25: 2.69950119e-14 - art_sys_26: -2.07426156e-14 - art_sys_27: -1.27305857e-14 - art_sys_28: 7.26726454e-15 - art_sys_29: -6.62092587e-16 - art_sys_30: 5.55555602e-17 - art_sys_31: -9.66148567e-18 - art_sys_32: 3.09324156e-16 - art_sys_33: 6.13390162e-16 - art_sys_34: 1.99756268e-15 +- art_sys_1: -1.14437486e-08 + art_sys_2: -7.11510434e-08 + art_sys_3: 2.78523016e-19 + art_sys_4: -2.63748823e-17 + art_sys_5: -2.46829195e-19 + art_sys_6: -1.31177234e-07 + art_sys_7: -2.22040724e-17 + art_sys_8: -2.45006088e-18 + art_sys_9: 2.02149310e-17 + art_sys_10: -1.05104293e-07 + art_sys_11: -5.33212163e-17 + art_sys_12: -6.31233326e-17 + art_sys_13: -9.34615417e-07 + art_sys_14: 1.79112860e-17 + art_sys_15: 2.07731721e-17 + art_sys_16: -4.52375752e-17 + art_sys_17: 6.01308051e-06 + art_sys_18: -7.92506717e-18 + art_sys_19: -3.61607301e-17 + art_sys_20: -4.71207149e-06 + art_sys_21: 6.93881957e-18 + art_sys_22: -1.02579372e-17 + art_sys_23: 2.61029183e-06 + art_sys_24: 9.24492797e-17 + art_sys_25: 3.21888058e-14 + art_sys_26: -2.55592450e-14 + art_sys_27: -7.82381767e-15 + art_sys_28: 5.03994065e-18 + art_sys_29: -9.31654026e-18 + art_sys_30: -5.89154387e-15 + art_sys_31: -9.63214580e-16 + art_sys_32: 6.31927131e-16 + art_sys_33: 2.57991519e-16 + art_sys_34: -4.71382421e-14 art_sys_35: -6.35230146e-05 - art_sys_36: 2.29833666e-17 - art_sys_37: -6.73536883e-16 - art_sys_38: 4.45629043e-16 - art_sys_39: -8.19415925e-06 - art_sys_40: -5.16542372e-16 - art_sys_41: 6.50006845e-18 - art_sys_42: 4.17741454e-14 - art_sys_43: -2.83491207e-17 - art_sys_44: -9.49762777e-19 - art_sys_45: 9.63067505e-18 - art_sys_46: -2.60686211e-04 - art_sys_47: -3.89642663e-13 - art_sys_48: -1.74931688e-12 - art_sys_49: 1.37521926e-15 - art_sys_50: 4.95994524e-12 - art_sys_51: 2.12419619e-14 - art_sys_52: 7.62758316e-15 - art_sys_53: -3.59710500e-14 - art_sys_54: -2.04442799e-11 - art_sys_55: 2.64813299e-04 - art_sys_56: 8.53098747e-13 - art_sys_57: -3.11854918e-11 - art_sys_58: -1.96067467e-03 - art_sys_59: -1.86272267e-14 - art_sys_60: -2.05623476e-15 - art_sys_61: -8.84030008e-16 - art_sys_62: -3.60150004e-16 - art_sys_63: -4.10919763e-16 - art_sys_64: 2.05932546e-15 - art_sys_65: -2.12159026e-16 - art_sys_66: 1.06369390e-17 - art_sys_67: -8.83435424e-18 - art_sys_68: -9.94476777e-12 - art_sys_69: 9.05705286e-13 - art_sys_70: -5.38349611e-12 - art_sys_71: -5.32812196e-12 - art_sys_72: -2.26254883e-16 - art_sys_73: 1.43692675e-03 - art_sys_74: -1.05402065e-13 - art_sys_75: -2.00672509e-18 - art_sys_76: 1.13779739e-18 - art_sys_77: 1.63879152e-18 - art_sys_78: -3.23215659e-11 - art_sys_79: 2.25108631e-11 - art_sys_80: -6.32041138e-19 - art_sys_81: -1.56089541e-19 - art_sys_82: 8.53181840e-21 - art_sys_83: 4.54202959e-20 - art_sys_84: -2.97572329e-13 - art_sys_85: -7.17174654e-05 - art_sys_86: -3.88917415e-17 - art_sys_87: 2.09581675e-14 - art_sys_88: 9.54622441e-21 - art_sys_89: -2.47776837e-20 - art_sys_90: 5.11158614e-13 - art_sys_91: -1.10468329e-05 - art_sys_92: -8.71061495e-14 - art_sys_93: 4.74223832e-21 - art_sys_94: -1.82037686e-21 - art_sys_95: 1.05633304e-13 - art_sys_96: 2.61822600e-07 - art_sys_97: -2.06574746e-15 - art_sys_98: -3.67935093e-17 - art_sys_99: 3.26247434e-22 - art_sys_100: -9.73422259e-23 - art_sys_101: 9.24192797e-23 - art_sys_102: -1.90584637e-16 - art_sys_103: 4.47584168e-23 - art_sys_104: 1.05604034e-16 - art_sys_105: 6.63981264e-23 - art_sys_106: -7.06040211e-19 - art_sys_107: -1.67823358e-18 - art_sys_108: 6.88910688e-25 - art_sys_109: 1.17978284e-18 - art_sys_110: -1.98395529e-20 - art_sys_111: -1.50868705e-22 - art_sys_112: 6.01811465e-18 - art_sys_113: -6.89991478e-18 - art_sys_114: 2.15044651e-18 - art_sys_115: 3.74322088e-21 - art_sys_116: -3.01056220e-18 - art_sys_117: 6.90776279e-10 - art_sys_118: 1.38455263e-17 - art_sys_119: -3.25044647e-23 - art_sys_120: 2.31553570e-22 - art_sys_121: 3.06923827e-22 - art_sys_122: -2.07039270e-22 - art_sys_123: -2.51785324e-21 - art_sys_124: 1.03995410e-21 - art_sys_125: 5.48836410e-18 - art_sys_126: -9.70318778e-22 - art_sys_127: 1.83455927e-18 - art_sys_128: 1.79390052e-22 - art_sys_129: 9.53306762e-22 - art_sys_130: 9.77413394e-18 - art_sys_131: -8.84714052e-18 - art_sys_132: 4.81512758e-25 - art_sys_133: 4.09153012e-22 - art_sys_134: -5.47525194e-21 - art_sys_135: -6.61268034e-25 - art_sys_136: -6.35417154e-26 - art_sys_137: -7.61473784e-26 - art_sys_138: -8.63402400e-25 - art_sys_139: 2.88352678e-26 - art_sys_140: 2.06194493e-26 - art_sys_141: 3.09097796e-27 - art_sys_142: -4.29960280e-26 - art_sys_143: 3.63732901e-27 - art_sys_144: -2.45873418e-28 - art_sys_145: 1.13615297e-27 - art_sys_146: -1.74601166e-27 - art_sys_147: -4.44992662e-28 - art_sys_148: 2.91938768e-28 - art_sys_149: 5.06272982e-29 - art_sys_150: 1.19775544e-29 - art_sys_151: 1.59269632e-29 - art_sys_152: -2.17895489e-31 - art_sys_153: -5.48297546e-32 - art_sys_154: 1.76225289e-33 - art_sys_155: -8.30254922e-34 - art_sys_156: -1.26110398e-34 - art_sys_157: 9.84803252e-35 - art_sys_158: 1.27026113e-35 - art_sys_159: -3.38741808e-34 - art_sys_160: 5.51768424e-33 - art_sys_161: -3.42945818e-32 - art_sys_162: -5.30721125e-34 - art_sys_163: 8.40801145e-34 - art_sys_164: -2.08118611e-33 - art_sys_165: 2.18480851e-33 - art_sys_166: 6.73939836e-35 - art_sys_167: -7.81079340e-35 - art_sys_168: 4.75755810e-25 - art_sys_169: 4.46433406e-35 - art_sys_170: 1.28449198e-25 - art_sys_171: 3.28534647e-25 - art_sys_172: -1.29046206e-35 - art_sys_173: 1.37519153e-34 - art_sys_174: -2.53431258e-26 - art_sys_175: 0.0 - art_sys_176: 5.68694646e-27 - art_sys_177: 0.0 - art_sys_178: 1.22823508e-27 - art_sys_179: -1.22120293e-29 - art_sys_180: 3.35651221e-33 - art_sys_181: -8.31777342e-37 - art_sys_182: 0.0 - art_sys_183: -1.22310937e-35 - art_sys_184: -2.11212623e-34 - art_sys_185: 1.56324414e-37 + art_sys_36: 1.26111850e-17 + art_sys_37: 3.10130320e-15 + art_sys_38: 2.16760770e-16 + art_sys_39: -8.19415914e-06 + art_sys_40: 3.57884670e-14 + art_sys_41: -2.27484088e-17 + art_sys_42: 2.89695937e-12 + art_sys_43: -1.24378208e-16 + art_sys_44: -9.29436983e-17 + art_sys_45: -2.62339693e-17 + art_sys_46: -2.60686214e-04 + art_sys_47: 3.45877831e-12 + art_sys_48: 2.15724215e-11 + art_sys_49: -7.12635434e-14 + art_sys_50: 2.15262570e-14 + art_sys_51: -1.01425785e-14 + art_sys_52: 3.91191440e-15 + art_sys_53: -1.29572981e-15 + art_sys_54: -4.85456734e-16 + art_sys_55: -5.55717167e-16 + art_sys_56: -9.69039603e-15 + art_sys_57: 1.23414674e-11 + art_sys_58: 2.17057143e-16 + art_sys_59: -4.38367224e-17 + art_sys_60: -2.24379163e-11 + art_sys_61: -2.64813314e-04 + art_sys_62: 2.18525952e-12 + art_sys_63: 1.83618589e-13 + art_sys_64: 2.05761512e-11 + art_sys_65: 1.64906340e-17 + art_sys_66: -5.72665838e-17 + art_sys_67: -1.96067467e-03 + art_sys_68: -1.97011744e-11 + art_sys_69: 2.14879527e-13 + art_sys_70: 1.25633534e-12 + art_sys_71: 5.12422048e-12 + art_sys_72: 1.43692671e-03 + art_sys_73: -1.87017164e-15 + art_sys_74: 3.94714920e-15 + art_sys_75: 1.93882070e-16 + art_sys_76: 1.30483459e-18 + art_sys_77: 8.61021273e-12 + art_sys_78: 2.22735550e-15 + art_sys_79: 4.07562457e-16 + art_sys_80: -9.35650154e-15 + art_sys_81: -9.44535856e-17 + art_sys_82: 1.46941727e-16 + art_sys_83: 4.43187687e-18 + art_sys_84: -1.94681411e-16 + art_sys_85: 2.33607122e-17 + art_sys_86: 1.01235542e-18 + art_sys_87: 1.63790492e-11 + art_sys_88: -4.24851790e-19 + art_sys_89: -2.16884456e-19 + art_sys_90: -9.46597669e-12 + art_sys_91: -2.54321842e-13 + art_sys_92: -2.24552844e-11 + art_sys_93: -7.17176571e-05 + art_sys_94: 3.15445669e-11 + art_sys_95: -4.05332143e-17 + art_sys_96: -1.53792557e-21 + art_sys_97: 1.36142227e-17 + art_sys_98: 3.10485317e-12 + art_sys_99: 1.10459316e-05 + art_sys_100: -7.84672428e-22 + art_sys_101: 6.83131729e-13 + art_sys_102: 4.30521562e-13 + art_sys_103: 5.66260394e-22 + art_sys_104: 2.61663061e-07 + art_sys_105: 8.79227539e-15 + art_sys_106: 8.65659800e-18 + art_sys_107: -5.19577607e-22 + art_sys_108: 3.57899054e-23 + art_sys_109: 2.70479252e-22 + art_sys_110: 6.74335041e-22 + art_sys_111: -4.51408211e-17 + art_sys_112: 1.38744655e-23 + art_sys_113: -2.38829533e-23 + art_sys_114: -4.82722092e-18 + art_sys_115: 3.62416354e-23 + art_sys_116: 7.02203685e-21 + art_sys_117: -2.30821583e-18 + art_sys_118: -6.84002410e-23 + art_sys_119: 1.34286544e-18 + art_sys_120: -2.64444832e-22 + art_sys_121: -9.53829145e-23 + art_sys_122: 4.74295614e-19 + art_sys_123: 1.10123002e-19 + art_sys_124: 1.20990505e-23 + art_sys_125: -1.16254117e-22 + art_sys_126: 2.25200059e-22 + art_sys_127: -5.57509897e-19 + art_sys_128: 5.80347786e-23 + art_sys_129: -7.82309095e-20 + art_sys_130: 9.60441863e-22 + art_sys_131: -1.51489710e-21 + art_sys_132: 1.57236619e-18 + art_sys_133: 5.19441847e-21 + art_sys_134: 1.34262594e-23 + art_sys_135: 2.28620254e-19 + art_sys_136: -1.62790530e-21 + art_sys_137: -3.03012652e-24 + art_sys_138: -1.44494771e-09 + art_sys_139: -1.50649156e-18 + art_sys_140: -2.29063059e-19 + art_sys_141: -2.81146701e-17 + art_sys_142: 3.52490422e-19 + art_sys_143: -5.59156034e-25 + art_sys_144: 3.28027118e-23 + art_sys_145: -2.50542108e-22 + art_sys_146: 0.0 + art_sys_147: -1.60823921e-20 + art_sys_148: 2.24209993e-19 + art_sys_149: 2.24209993e-19 + art_sys_150: 4.13643989e-20 + art_sys_151: 4.13643989e-20 + art_sys_152: 2.60645315e-19 + art_sys_153: -1.28262393e-20 + art_sys_154: 1.71515114e-23 + art_sys_155: -5.91579315e-32 + art_sys_156: -6.41395687e-37 + art_sys_157: 1.13058761e-36 + art_sys_158: 0.0 + art_sys_159: -8.80830824e-25 + art_sys_160: 1.82598325e-24 + art_sys_161: 1.11865858e-25 + art_sys_162: 1.88493813e-26 + art_sys_163: 3.63236627e-24 + art_sys_164: -4.60387255e-24 + art_sys_165: 1.00532298e-25 + art_sys_166: 3.07212744e-31 + art_sys_167: -1.39952629e-31 + art_sys_168: -2.80209412e-31 + art_sys_169: 1.30105298e-31 + art_sys_170: 1.81199642e-31 + art_sys_171: 8.42430511e-32 + art_sys_172: 1.24747292e-29 + art_sys_173: 2.26674727e-30 + art_sys_174: 3.51531114e-31 + art_sys_175: 1.53743674e-34 + art_sys_176: 3.36480846e-32 + art_sys_177: -8.38783767e-33 + art_sys_178: 3.73230835e-33 + art_sys_179: -3.55877542e-34 + art_sys_180: -1.89573854e-33 + art_sys_181: -5.12775905e-36 + art_sys_182: -1.85219596e-35 + art_sys_183: -1.72474961e-37 + art_sys_184: 2.15100168e-38 + art_sys_185: -4.44669828e-39 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -69788,191 +69788,191 @@ bins: RelativeStatFSR-: -4.18023993e-04 luminosity_uncertainty: 9.98088000e-04 uncorrelated_uncertainty: 3.83880000e-04 -- art_sys_1: 1.21197665e-10 - art_sys_2: 2.72639938e-20 - art_sys_3: 3.70634710e-09 - art_sys_4: -1.70371012e-16 - art_sys_5: -2.52259722e-19 - art_sys_6: 3.76985478e-09 - art_sys_7: -9.82776578e-18 - art_sys_8: 3.70479920e-18 - art_sys_9: 1.15974353e-17 - art_sys_10: 2.19379115e-08 - art_sys_11: 9.82954098e-17 - art_sys_12: 7.53503022e-18 - art_sys_13: -1.45216643e-07 - art_sys_14: -1.10433129e-18 - art_sys_15: -6.52616991e-19 - art_sys_16: -1.38491758e-17 - art_sys_17: -7.10687258e-07 - art_sys_18: 2.39753964e-18 - art_sys_19: 8.57070811e-18 - art_sys_20: 2.05993403e-06 - art_sys_21: 1.54266185e-18 - art_sys_22: -1.10691453e-17 - art_sys_23: 1.65259419e-06 - art_sys_24: -4.11773856e-17 - art_sys_25: 3.58645301e-14 - art_sys_26: -1.87947920e-14 - art_sys_27: 1.64648544e-14 - art_sys_28: 6.75757926e-15 - art_sys_29: -2.36250781e-15 - art_sys_30: 9.10863408e-19 - art_sys_31: 1.78389772e-18 - art_sys_32: -6.43695797e-16 - art_sys_33: -7.82074013e-16 - art_sys_34: 9.64017051e-17 - art_sys_35: -3.07516681e-06 - art_sys_36: 2.68387229e-18 - art_sys_37: 2.16180225e-15 - art_sys_38: -1.14661199e-16 - art_sys_39: 2.43932692e-05 - art_sys_40: 1.43940182e-15 - art_sys_41: 1.16405278e-17 - art_sys_42: -1.89202335e-15 - art_sys_43: 3.69334741e-17 - art_sys_44: 6.40381775e-17 - art_sys_45: -2.75787172e-17 - art_sys_46: 1.17912184e-05 - art_sys_47: -7.69320202e-14 - art_sys_48: 5.18427678e-14 - art_sys_49: 5.36645473e-16 - art_sys_50: -2.56111301e-12 - art_sys_51: -1.89153203e-14 - art_sys_52: -1.67546671e-14 - art_sys_53: -1.45909024e-14 - art_sys_54: 1.38900520e-10 - art_sys_55: 1.07527787e-04 - art_sys_56: -2.00791778e-11 - art_sys_57: 3.39962181e-10 - art_sys_58: 2.87636919e-05 - art_sys_59: 3.21122028e-15 - art_sys_60: 2.62267445e-15 - art_sys_61: -1.55722267e-15 - art_sys_62: -2.79025567e-16 - art_sys_63: 7.33551717e-16 - art_sys_64: 2.94860336e-15 - art_sys_65: 1.38946218e-16 - art_sys_66: 6.24259560e-18 - art_sys_67: -2.42938960e-17 - art_sys_68: 2.91941944e-11 - art_sys_69: -8.21647010e-12 - art_sys_70: 2.91052610e-11 - art_sys_71: 1.19039067e-12 - art_sys_72: 4.81098408e-15 - art_sys_73: 2.85323295e-04 - art_sys_74: -3.43387607e-12 - art_sys_75: 1.72517966e-17 - art_sys_76: -8.03137663e-18 - art_sys_77: -1.13085396e-17 - art_sys_78: 2.25710316e-10 - art_sys_79: -4.55601942e-11 - art_sys_80: 4.57965987e-18 - art_sys_81: 1.31729704e-18 - art_sys_82: 1.98024829e-19 - art_sys_83: 1.07687869e-17 - art_sys_84: 5.50585974e-12 - art_sys_85: 4.99450601e-04 - art_sys_86: 1.91241788e-16 - art_sys_87: -1.23590385e-13 - art_sys_88: 6.43835177e-21 - art_sys_89: 1.07282955e-19 - art_sys_90: -2.53052714e-12 - art_sys_91: 3.34399688e-05 - art_sys_92: 4.31793436e-13 - art_sys_93: -1.77777895e-20 - art_sys_94: 9.20593946e-21 - art_sys_95: -5.22537885e-13 - art_sys_96: -6.23380770e-06 - art_sys_97: 1.02613241e-14 - art_sys_98: 1.82102676e-16 - art_sys_99: -1.03526293e-20 - art_sys_100: 4.30908891e-21 - art_sys_101: -2.71195065e-21 - art_sys_102: 8.92207101e-16 - art_sys_103: -7.65437808e-22 - art_sys_104: -4.64127130e-16 - art_sys_105: 5.52114882e-22 - art_sys_106: 3.34971982e-18 - art_sys_107: 3.20615872e-17 - art_sys_108: -8.98822090e-23 - art_sys_109: 6.15257973e-18 - art_sys_110: 8.56830494e-20 - art_sys_111: 7.60249062e-22 - art_sys_112: -3.41504955e-17 - art_sys_113: 3.59187395e-17 - art_sys_114: -1.13084536e-17 - art_sys_115: -1.88723082e-20 - art_sys_116: 1.51182301e-17 - art_sys_117: -3.41725063e-09 - art_sys_118: -6.85731427e-17 - art_sys_119: 1.48406835e-22 - art_sys_120: -1.15084747e-21 - art_sys_121: -1.52021445e-21 - art_sys_122: 1.02336470e-21 - art_sys_123: 1.25743850e-20 - art_sys_124: -5.14598252e-21 - art_sys_125: -2.71705802e-17 - art_sys_126: 4.80067414e-21 - art_sys_127: -9.07928972e-18 - art_sys_128: -8.87491787e-22 - art_sys_129: -4.71613640e-21 - art_sys_130: -4.83529627e-17 - art_sys_131: 4.37666183e-17 - art_sys_132: -2.38253579e-24 - art_sys_133: -2.02405979e-21 - art_sys_134: 2.70859939e-20 - art_sys_135: 2.78414583e-24 - art_sys_136: 4.58702971e-25 - art_sys_137: 4.67540261e-25 - art_sys_138: 2.03065458e-23 - art_sys_139: -1.23160694e-24 - art_sys_140: -8.07656742e-25 - art_sys_141: -3.35268456e-26 - art_sys_142: 4.40454617e-25 - art_sys_143: -8.12565784e-27 - art_sys_144: 2.02143693e-26 - art_sys_145: 8.28077799e-27 - art_sys_146: -1.41557120e-26 - art_sys_147: 1.10299093e-26 - art_sys_148: -2.64151953e-27 - art_sys_149: 3.10077984e-27 - art_sys_150: -2.69110821e-27 - art_sys_151: 3.48759782e-29 - art_sys_152: 5.16816867e-30 - art_sys_153: 1.03075061e-30 - art_sys_154: 5.82727309e-32 - art_sys_155: 1.47791728e-32 - art_sys_156: 5.89301037e-33 - art_sys_157: -2.54624517e-33 - art_sys_158: -3.79907557e-34 - art_sys_159: -1.76319087e-35 - art_sys_160: 2.16630613e-33 - art_sys_161: 1.19480210e-32 - art_sys_162: 1.87927671e-32 - art_sys_163: -5.83774257e-33 - art_sys_164: 5.35543359e-33 - art_sys_165: -4.37796706e-33 - art_sys_166: 5.01196116e-35 - art_sys_167: 4.80202939e-33 - art_sys_168: -2.33518339e-24 - art_sys_169: -2.00963485e-34 - art_sys_170: -6.42706597e-25 - art_sys_171: -1.61944075e-24 - art_sys_172: -2.26376299e-34 - art_sys_173: -5.69846906e-34 - art_sys_174: 1.24121281e-25 - art_sys_175: 0.0 - art_sys_176: -2.84322029e-26 - art_sys_177: 0.0 - art_sys_178: -6.03847057e-27 - art_sys_179: 5.76181776e-29 - art_sys_180: -1.66441155e-32 - art_sys_181: 4.11478886e-36 - art_sys_182: 0.0 - art_sys_183: 6.05071148e-35 - art_sys_184: 1.04487021e-33 - art_sys_185: -7.73330048e-37 +- art_sys_1: -1.21197664e-10 + art_sys_2: -3.70634710e-09 + art_sys_3: 1.44135016e-19 + art_sys_4: -4.19599977e-17 + art_sys_5: -7.16362490e-21 + art_sys_6: -3.76985478e-09 + art_sys_7: -1.38235540e-17 + art_sys_8: -3.31494071e-18 + art_sys_9: 1.40118924e-17 + art_sys_10: -2.19379115e-08 + art_sys_11: 3.83900774e-18 + art_sys_12: 4.98672512e-18 + art_sys_13: 1.45216643e-07 + art_sys_14: -1.00244226e-18 + art_sys_15: 4.03238143e-19 + art_sys_16: 5.70189991e-18 + art_sys_17: 7.10687258e-07 + art_sys_18: -1.81785066e-18 + art_sys_19: -3.20585818e-17 + art_sys_20: -2.05993403e-06 + art_sys_21: -3.59754782e-18 + art_sys_22: -6.10088477e-18 + art_sys_23: -1.65259419e-06 + art_sys_24: 2.47346086e-17 + art_sys_25: -2.60588783e-15 + art_sys_26: -3.96182314e-14 + art_sys_27: -1.40764379e-14 + art_sys_28: -2.40684333e-18 + art_sys_29: 4.27150885e-19 + art_sys_30: -1.61569315e-15 + art_sys_31: -2.26769675e-15 + art_sys_32: -5.02036503e-16 + art_sys_33: 6.02344392e-17 + art_sys_34: -2.28413718e-15 + art_sys_35: -3.07516679e-06 + art_sys_36: -1.82887226e-18 + art_sys_37: -9.24772871e-15 + art_sys_38: 3.82615120e-16 + art_sys_39: 2.43932691e-05 + art_sys_40: -1.06542123e-13 + art_sys_41: 1.76054221e-17 + art_sys_42: -1.31037971e-13 + art_sys_43: 2.37195030e-17 + art_sys_44: -3.52402003e-17 + art_sys_45: -1.89814665e-19 + art_sys_46: 1.17912182e-05 + art_sys_47: -1.48847591e-13 + art_sys_48: -3.33493377e-13 + art_sys_49: 1.40075553e-15 + art_sys_50: 1.51588153e-14 + art_sys_51: -8.11269053e-15 + art_sys_52: 2.93698812e-15 + art_sys_53: 1.38199571e-15 + art_sys_54: -6.10897253e-16 + art_sys_55: -2.10453888e-16 + art_sys_56: -3.95734126e-15 + art_sys_57: -2.29177820e-13 + art_sys_58: -4.05612000e-16 + art_sys_59: 2.89504712e-17 + art_sys_60: 2.35681361e-10 + art_sys_61: -1.07527794e-04 + art_sys_62: -3.23498969e-11 + art_sys_63: -4.95295814e-14 + art_sys_64: -2.57927816e-11 + art_sys_65: -4.24093693e-17 + art_sys_66: -5.38195565e-17 + art_sys_67: 2.87636913e-05 + art_sys_68: 1.37279742e-10 + art_sys_69: -6.85572734e-13 + art_sys_70: -8.98163062e-12 + art_sys_71: -4.76614402e-13 + art_sys_72: 2.85323591e-04 + art_sys_73: 1.34623413e-14 + art_sys_74: -2.94085257e-14 + art_sys_75: -7.94371816e-16 + art_sys_76: -1.03443406e-17 + art_sys_77: -5.99084843e-11 + art_sys_78: 9.98557935e-15 + art_sys_79: -2.98900055e-15 + art_sys_80: 3.56557603e-14 + art_sys_81: 4.51266624e-16 + art_sys_82: -8.98616478e-16 + art_sys_83: 8.50901947e-16 + art_sys_84: 1.16946004e-15 + art_sys_85: -1.79863431e-16 + art_sys_86: -6.71416618e-18 + art_sys_87: -7.49093918e-11 + art_sys_88: 2.44373818e-18 + art_sys_89: 2.12850595e-18 + art_sys_90: 6.43597756e-11 + art_sys_91: 1.33935810e-12 + art_sys_92: 6.47442161e-11 + art_sys_93: 4.99446961e-04 + art_sys_94: -1.05711265e-10 + art_sys_95: 2.10330913e-16 + art_sys_96: -1.10817298e-20 + art_sys_97: -6.73486837e-17 + art_sys_98: -5.32274853e-11 + art_sys_99: -3.34340366e-05 + art_sys_100: -5.27817503e-21 + art_sys_101: -3.40623079e-12 + art_sys_102: -2.08293094e-12 + art_sys_103: -5.89692702e-21 + art_sys_104: -6.23138637e-06 + art_sys_105: -4.25615171e-14 + art_sys_106: -4.19746598e-17 + art_sys_107: 1.16701048e-20 + art_sys_108: -3.27724272e-21 + art_sys_109: -6.32543719e-21 + art_sys_110: -9.75302403e-21 + art_sys_111: 1.71669530e-16 + art_sys_112: 1.62025048e-21 + art_sys_113: 1.01118109e-22 + art_sys_114: 6.29764028e-17 + art_sys_115: -7.39477885e-22 + art_sys_116: -6.67673291e-20 + art_sys_117: -5.56368888e-18 + art_sys_118: 8.40332450e-22 + art_sys_119: 8.22659526e-19 + art_sys_120: 9.76240914e-23 + art_sys_121: 5.95200776e-22 + art_sys_122: 7.21023032e-19 + art_sys_123: 6.37085741e-19 + art_sys_124: -7.97353526e-23 + art_sys_125: 1.03331014e-21 + art_sys_126: -1.22468701e-21 + art_sys_127: 2.33938964e-18 + art_sys_128: -3.16504816e-22 + art_sys_129: 4.73121767e-19 + art_sys_130: -4.87396178e-21 + art_sys_131: 7.61358545e-21 + art_sys_132: -7.86559286e-18 + art_sys_133: -2.58904809e-20 + art_sys_134: -6.70350008e-23 + art_sys_135: -1.10716263e-18 + art_sys_136: 8.07235825e-21 + art_sys_137: 1.49733900e-23 + art_sys_138: 7.14751048e-09 + art_sys_139: 7.44833050e-18 + art_sys_140: 1.13244885e-18 + art_sys_141: 1.39070340e-16 + art_sys_142: -1.74288688e-18 + art_sys_143: 2.78835342e-24 + art_sys_144: -1.62293262e-22 + art_sys_145: 1.23875407e-21 + art_sys_146: -0.0 + art_sys_147: 7.94868608e-20 + art_sys_148: -1.10817475e-18 + art_sys_149: -1.10817475e-18 + art_sys_150: -2.04563372e-19 + art_sys_151: -2.04563372e-19 + art_sys_152: -1.28949287e-18 + art_sys_153: 6.34851120e-20 + art_sys_154: -8.48022280e-23 + art_sys_155: 2.92723677e-31 + art_sys_156: 3.16881653e-36 + art_sys_157: -5.58408872e-36 + art_sys_158: -0.0 + art_sys_159: 4.63124533e-24 + art_sys_160: -4.20036017e-23 + art_sys_161: -4.73514312e-25 + art_sys_162: 3.87501614e-24 + art_sys_163: -1.93977458e-23 + art_sys_164: 2.66108137e-23 + art_sys_165: -1.58902176e-24 + art_sys_166: -6.19784841e-30 + art_sys_167: 1.74329754e-30 + art_sys_168: 2.44693478e-30 + art_sys_169: 3.64523222e-31 + art_sys_170: -6.89863524e-30 + art_sys_171: -3.55861410e-30 + art_sys_172: -4.81113665e-28 + art_sys_173: -6.52189832e-29 + art_sys_174: -8.45175552e-30 + art_sys_175: -7.60089937e-34 + art_sys_176: -3.54829043e-31 + art_sys_177: 2.63884485e-31 + art_sys_178: -1.11247826e-31 + art_sys_179: 1.07682143e-32 + art_sys_180: 9.40825069e-32 + art_sys_181: 1.02160067e-34 + art_sys_182: 1.28314270e-33 + art_sys_183: 4.43271828e-36 + art_sys_184: -1.39368422e-37 + art_sys_185: 2.38514208e-38 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -70079,191 +70079,191 @@ bins: RelativeStatFSR-: -1.19407736e-04 luminosity_uncertainty: 2.46938640e-04 uncorrelated_uncertainty: 9.49764000e-05 -- art_sys_1: -3.93966562e-12 - art_sys_2: -1.23833205e-21 - art_sys_3: 5.64966324e-11 - art_sys_4: -2.24290233e-18 - art_sys_5: -6.85569866e-21 - art_sys_6: 4.30105634e-11 - art_sys_7: -1.26529388e-19 - art_sys_8: 4.11922564e-20 - art_sys_9: 1.74372942e-20 - art_sys_10: 4.28375850e-10 - art_sys_11: 1.28990884e-18 - art_sys_12: 2.66722008e-18 - art_sys_13: -5.11683897e-09 - art_sys_14: 1.93103105e-19 - art_sys_15: 4.90906944e-19 - art_sys_16: 3.37467900e-19 - art_sys_17: -1.23776635e-08 - art_sys_18: -3.93517632e-19 - art_sys_19: 1.71037657e-19 - art_sys_20: 5.19337863e-08 - art_sys_21: 4.29632805e-19 - art_sys_22: 2.13103463e-19 - art_sys_23: 4.87884913e-08 - art_sys_24: 6.86175021e-19 - art_sys_25: -7.35646666e-15 - art_sys_26: 1.23799243e-14 - art_sys_27: -3.82459853e-15 - art_sys_28: 1.82529400e-15 - art_sys_29: 2.40444307e-16 - art_sys_30: -5.36194348e-19 - art_sys_31: 1.17825662e-20 - art_sys_32: 5.90357032e-16 - art_sys_33: -2.59956278e-17 - art_sys_34: -3.48926407e-18 +- art_sys_1: 3.93966562e-12 + art_sys_2: -5.64966324e-11 + art_sys_3: 3.34203321e-21 + art_sys_4: -7.49029458e-19 + art_sys_5: 1.57614048e-22 + art_sys_6: -4.30105634e-11 + art_sys_7: -1.36784314e-19 + art_sys_8: -5.03819857e-20 + art_sys_9: 1.66075197e-19 + art_sys_10: -4.28375850e-10 + art_sys_11: 2.51971747e-19 + art_sys_12: 4.95381216e-19 + art_sys_13: 5.11683897e-09 + art_sys_14: -1.06642172e-19 + art_sys_15: -1.29541186e-19 + art_sys_16: 2.07711805e-19 + art_sys_17: 1.23776635e-08 + art_sys_18: 8.65997782e-21 + art_sys_19: 3.77282065e-19 + art_sys_20: -5.19337863e-08 + art_sys_21: 2.46681597e-20 + art_sys_22: 1.03911308e-19 + art_sys_23: -4.87884913e-08 + art_sys_24: -6.93174009e-19 + art_sys_25: -1.76208391e-14 + art_sys_26: -1.19465151e-14 + art_sys_27: -1.79338662e-14 + art_sys_28: -6.82563205e-20 + art_sys_29: -3.83096580e-20 + art_sys_30: -5.23584779e-16 + art_sys_31: 9.35625915e-16 + art_sys_32: -6.97987779e-16 + art_sys_33: -1.68324846e-16 + art_sys_34: 9.17301116e-17 art_sys_35: 1.23615030e-07 - art_sys_36: 2.02671650e-18 - art_sys_37: 4.31086823e-17 - art_sys_38: 4.31709541e-16 - art_sys_39: 5.12685925e-07 - art_sys_40: 3.50603541e-17 - art_sys_41: -1.63434044e-19 - art_sys_42: -2.42432890e-16 - art_sys_43: -1.21468147e-16 - art_sys_44: 8.53310261e-17 - art_sys_45: 4.04559096e-17 - art_sys_46: 1.51594854e-06 - art_sys_47: 2.62915849e-15 - art_sys_48: 1.54462547e-14 - art_sys_49: -2.58683741e-17 - art_sys_50: 4.06973704e-13 - art_sys_51: 5.47599661e-14 - art_sys_52: 1.92516497e-14 - art_sys_53: 4.65807709e-17 - art_sys_54: -2.04609833e-12 - art_sys_55: -2.95619149e-07 - art_sys_56: -7.62778741e-11 - art_sys_57: 6.67488072e-10 - art_sys_58: 2.43443201e-05 - art_sys_59: 4.23619190e-15 - art_sys_60: 1.77993029e-15 - art_sys_61: 2.71069305e-15 - art_sys_62: 2.44250636e-15 - art_sys_63: -5.06743571e-17 - art_sys_64: 2.51135531e-16 - art_sys_65: 9.38853536e-17 - art_sys_66: -7.84150879e-18 - art_sys_67: 1.13463140e-16 - art_sys_68: -2.49494770e-10 - art_sys_69: -1.26023960e-11 - art_sys_70: 6.72796274e-12 - art_sys_71: 2.81459658e-12 - art_sys_72: 5.58562207e-15 - art_sys_73: -3.79315034e-05 - art_sys_74: -8.24615000e-14 - art_sys_75: 1.00365892e-17 - art_sys_76: 3.14407194e-18 - art_sys_77: 1.76401916e-18 - art_sys_78: 3.27736362e-11 - art_sys_79: 6.97756338e-10 - art_sys_80: 2.28874493e-18 - art_sys_81: 1.48405615e-18 - art_sys_82: 2.21205679e-18 - art_sys_83: -5.74965912e-17 - art_sys_84: 3.15188269e-12 - art_sys_85: 6.38508286e-05 - art_sys_86: -2.53614537e-15 - art_sys_87: 1.13772330e-12 - art_sys_88: 3.29226881e-19 - art_sys_89: -2.13682768e-18 - art_sys_90: 3.36754088e-11 - art_sys_91: -2.70870014e-04 - art_sys_92: -5.75932007e-12 - art_sys_93: 2.76093169e-19 - art_sys_94: -1.51137197e-19 - art_sys_95: 6.95939808e-12 - art_sys_96: -6.76287730e-06 - art_sys_97: -1.35230643e-13 - art_sys_98: -2.42282348e-15 - art_sys_99: -1.34214759e-20 - art_sys_100: 1.22098997e-20 - art_sys_101: -3.57183311e-21 - art_sys_102: -1.13080618e-14 - art_sys_103: 3.08012540e-21 - art_sys_104: 6.21791397e-15 - art_sys_105: 8.04023023e-21 - art_sys_106: -4.72073373e-17 - art_sys_107: -6.22020468e-16 - art_sys_108: -1.95929286e-22 - art_sys_109: -1.66764478e-16 - art_sys_110: -1.39368973e-18 - art_sys_111: -9.93087314e-21 - art_sys_112: 5.00641121e-16 - art_sys_113: -4.93566535e-16 - art_sys_114: 1.55876121e-16 - art_sys_115: 2.42598171e-19 - art_sys_116: -2.01609136e-16 - art_sys_117: 4.55044183e-08 - art_sys_118: 9.13376994e-16 - art_sys_119: -2.09691885e-21 - art_sys_120: 1.52877803e-20 - art_sys_121: 2.02221888e-20 - art_sys_122: -1.36334787e-20 - art_sys_123: -1.65733243e-19 - art_sys_124: 6.85094203e-20 - art_sys_125: 3.61631383e-16 - art_sys_126: -6.39208372e-20 - art_sys_127: 1.20806547e-16 - art_sys_128: 1.18155087e-20 - art_sys_129: 6.27800652e-20 - art_sys_130: 6.43846288e-16 - art_sys_131: -5.82801349e-16 - art_sys_132: 3.17094937e-23 - art_sys_133: 2.69529010e-20 - art_sys_134: -3.60678202e-19 - art_sys_135: -5.50466336e-24 - art_sys_136: 1.39348993e-24 - art_sys_137: 2.08754851e-25 - art_sys_138: 2.32029650e-23 - art_sys_139: 8.74624955e-25 - art_sys_140: -1.40676989e-24 - art_sys_141: -2.94921165e-26 - art_sys_142: -2.19457866e-25 - art_sys_143: 1.97616154e-25 - art_sys_144: 1.09644531e-26 - art_sys_145: 1.71717780e-25 - art_sys_146: -2.34645029e-25 - art_sys_147: -2.04286399e-26 - art_sys_148: 1.49097141e-26 - art_sys_149: 1.20054639e-26 - art_sys_150: -4.75299709e-27 - art_sys_151: 1.78425372e-27 - art_sys_152: -1.20950793e-29 - art_sys_153: -3.29234284e-30 - art_sys_154: 4.59164585e-31 - art_sys_155: -3.89214188e-32 - art_sys_156: -6.75876186e-34 - art_sys_157: 1.61948107e-34 - art_sys_158: 5.62109412e-34 - art_sys_159: 3.54529151e-34 - art_sys_160: -8.71996339e-33 - art_sys_161: -1.06825760e-31 - art_sys_162: -1.48517172e-31 - art_sys_163: 5.30659098e-32 - art_sys_164: -4.54285797e-32 - art_sys_165: 5.50840519e-32 - art_sys_166: 1.92917385e-33 - art_sys_167: 2.05498582e-33 - art_sys_168: 3.15310983e-23 - art_sys_169: 1.48145047e-33 - art_sys_170: 8.38823094e-24 - art_sys_171: 2.16608333e-23 - art_sys_172: 1.67494503e-33 - art_sys_173: 3.87114566e-33 - art_sys_174: -1.67437620e-24 - art_sys_175: 0.0 - art_sys_176: 3.73762298e-25 - art_sys_177: 0.0 - art_sys_178: 8.09711853e-26 - art_sys_179: -8.07400593e-28 - art_sys_180: 2.20834317e-31 - art_sys_181: -5.47932405e-35 - art_sys_182: 0.0 - art_sys_183: -8.05704701e-34 - art_sys_184: -1.39133098e-32 - art_sys_185: 1.02979265e-35 + art_sys_36: -1.46832044e-18 + art_sys_37: -1.95778709e-16 + art_sys_38: -1.68467355e-17 + art_sys_39: 5.12685923e-07 + art_sys_40: -2.23557872e-15 + art_sys_41: -1.81730812e-18 + art_sys_42: -1.68458308e-14 + art_sys_43: -8.73527827e-17 + art_sys_44: -5.14521769e-17 + art_sys_45: 3.78586879e-17 + art_sys_46: 1.51594855e-06 + art_sys_47: -4.56053053e-14 + art_sys_48: -2.68319141e-13 + art_sys_49: -5.48349520e-15 + art_sys_50: 2.09500342e-14 + art_sys_51: -6.13676088e-17 + art_sys_52: 6.56496551e-16 + art_sys_53: 9.19259357e-18 + art_sys_54: 8.05076581e-16 + art_sys_55: 8.73178997e-18 + art_sys_56: 4.75035220e-18 + art_sys_57: -1.58049060e-13 + art_sys_58: -1.76965745e-16 + art_sys_59: -2.92208377e-16 + art_sys_60: 2.79903221e-11 + art_sys_61: 2.95619144e-07 + art_sys_62: -1.03695362e-10 + art_sys_63: 7.93261546e-16 + art_sys_64: -2.34710629e-11 + art_sys_65: 2.04426159e-17 + art_sys_66: -4.91724730e-17 + art_sys_67: 2.43443201e-05 + art_sys_68: 1.80420271e-11 + art_sys_69: 5.16245769e-12 + art_sys_70: -3.13481901e-12 + art_sys_71: -8.14435955e-13 + art_sys_72: -3.79314665e-05 + art_sys_73: -7.49436982e-15 + art_sys_74: -1.18602578e-14 + art_sys_75: 3.05513412e-15 + art_sys_76: -1.09386373e-17 + art_sys_77: -7.66197588e-12 + art_sys_78: 2.46569630e-13 + art_sys_79: -2.03045086e-16 + art_sys_80: -8.07056889e-13 + art_sys_81: -1.65205393e-15 + art_sys_82: 7.45833789e-16 + art_sys_83: 1.44900605e-15 + art_sys_84: -9.52598436e-16 + art_sys_85: -9.78236897e-17 + art_sys_86: 2.16701222e-18 + art_sys_87: 2.38140930e-10 + art_sys_88: -2.62886815e-18 + art_sys_89: 3.92098559e-18 + art_sys_90: -1.65668967e-12 + art_sys_91: -1.63937989e-11 + art_sys_92: -5.63990797e-10 + art_sys_93: 6.38187052e-05 + art_sys_94: 7.48036009e-10 + art_sys_95: -2.61884116e-15 + art_sys_96: -7.50805988e-20 + art_sys_97: 9.04389314e-16 + art_sys_98: 2.17888503e-11 + art_sys_99: 2.70868328e-04 + art_sys_100: -1.18600300e-19 + art_sys_101: 4.52285123e-11 + art_sys_102: 2.86123859e-11 + art_sys_103: 2.54893775e-20 + art_sys_104: -6.75976010e-06 + art_sys_105: 5.83868825e-13 + art_sys_106: 5.74870657e-16 + art_sys_107: 1.00387258e-20 + art_sys_108: -1.31825378e-20 + art_sys_109: -5.82845377e-21 + art_sys_110: 2.18787925e-21 + art_sys_111: -2.90300142e-15 + art_sys_112: 3.13017315e-21 + art_sys_113: -1.61508951e-21 + art_sys_114: -5.21770171e-16 + art_sys_115: 9.41684527e-22 + art_sys_116: 3.53953784e-19 + art_sys_117: 2.76682087e-17 + art_sys_118: -4.34137888e-21 + art_sys_119: -2.81469622e-17 + art_sys_120: -2.65617909e-20 + art_sys_121: -4.15953538e-21 + art_sys_122: -2.17147280e-17 + art_sys_123: -1.52451776e-17 + art_sys_124: 5.19877224e-22 + art_sys_125: -9.89393167e-21 + art_sys_126: 1.23692092e-20 + art_sys_127: -2.83042659e-17 + art_sys_128: 3.32599996e-21 + art_sys_129: -9.47829699e-18 + art_sys_130: 6.02736923e-20 + art_sys_131: -9.90357838e-20 + art_sys_132: 1.03664406e-16 + art_sys_133: 3.43200819e-19 + art_sys_134: 8.79359120e-22 + art_sys_135: 1.55316373e-17 + art_sys_136: -1.05769805e-19 + art_sys_137: -1.99410114e-22 + art_sys_138: -9.52742823e-08 + art_sys_139: -9.94644346e-17 + art_sys_140: -1.51253403e-17 + art_sys_141: -1.85378360e-15 + art_sys_142: 2.32626983e-17 + art_sys_143: -3.66614455e-23 + art_sys_144: 2.16192759e-21 + art_sys_145: -1.65361523e-20 + art_sys_146: 0.0 + art_sys_147: -1.06240266e-18 + art_sys_148: 1.48101713e-17 + art_sys_149: 1.48101713e-17 + art_sys_150: 2.72767636e-18 + art_sys_151: 2.72767636e-18 + art_sys_152: 1.71654890e-17 + art_sys_153: -8.43488845e-19 + art_sys_154: 1.13167764e-21 + art_sys_155: -3.89388964e-30 + art_sys_156: -4.24277046e-35 + art_sys_157: 7.46847659e-35 + art_sys_158: 0.0 + art_sys_159: -4.31357964e-23 + art_sys_160: -3.42939471e-23 + art_sys_161: 4.35458762e-24 + art_sys_162: 8.42371425e-24 + art_sys_163: 1.90934822e-22 + art_sys_164: -2.61217789e-22 + art_sys_165: 4.88327565e-24 + art_sys_166: 1.98390296e-30 + art_sys_167: 3.46417566e-31 + art_sys_168: 4.43112073e-31 + art_sys_169: -2.43880978e-30 + art_sys_170: -9.84150467e-30 + art_sys_171: -2.45019386e-30 + art_sys_172: 1.93853717e-28 + art_sys_173: 8.74257882e-29 + art_sys_174: 1.60437627e-29 + art_sys_175: 1.01491355e-32 + art_sys_176: 1.99391480e-30 + art_sys_177: -2.44614566e-31 + art_sys_178: 1.21806038e-31 + art_sys_179: -1.12014379e-32 + art_sys_180: 2.75275839e-32 + art_sys_181: -3.26820981e-34 + art_sys_182: 8.84587378e-34 + art_sys_183: -6.47753662e-36 + art_sys_184: 1.16202519e-36 + art_sys_185: -2.71032045e-37 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -70370,191 +70370,191 @@ bins: RelativeStatFSR-: -2.89250825e-05 luminosity_uncertainty: 5.16292400e-05 uncorrelated_uncertainty: 1.98574000e-05 -- art_sys_1: -1.20625880e-12 - art_sys_2: 3.58711276e-23 - art_sys_3: 1.33520838e-11 - art_sys_4: 1.48623476e-18 - art_sys_5: -1.39502085e-21 - art_sys_6: 1.33511731e-11 - art_sys_7: 8.71855576e-20 - art_sys_8: -3.08659650e-20 - art_sys_9: -9.57955537e-20 - art_sys_10: 8.98575471e-11 - art_sys_11: -6.96101376e-19 - art_sys_12: 3.79820098e-19 - art_sys_13: -1.44887019e-09 - art_sys_14: 3.54843658e-20 - art_sys_15: 1.16628019e-19 - art_sys_16: 3.13686884e-19 - art_sys_17: -2.71372524e-09 - art_sys_18: -1.03315449e-19 - art_sys_19: -1.27855596e-19 - art_sys_20: 1.28015794e-08 - art_sys_21: 4.85420835e-20 - art_sys_22: 1.88644685e-19 - art_sys_23: 8.77239549e-09 - art_sys_24: 8.36080963e-19 - art_sys_25: -1.34529271e-13 - art_sys_26: 5.18799823e-14 - art_sys_27: -1.04581130e-14 - art_sys_28: -5.86122991e-15 - art_sys_29: 3.38448832e-15 - art_sys_30: -6.59325614e-22 - art_sys_31: -4.38942857e-20 - art_sys_32: -8.63171268e-16 - art_sys_33: -8.87455244e-16 - art_sys_34: -2.53499610e-18 - art_sys_35: 7.98817388e-08 - art_sys_36: 4.06006499e-19 - art_sys_37: -1.44959411e-17 - art_sys_38: -5.02484690e-16 +- art_sys_1: 1.20625880e-12 + art_sys_2: -1.33520838e-11 + art_sys_3: 8.51158012e-22 + art_sys_4: 2.21502966e-19 + art_sys_5: 8.82589303e-23 + art_sys_6: -1.33511731e-11 + art_sys_7: 1.08342312e-19 + art_sys_8: 1.73231018e-20 + art_sys_9: -1.03827032e-19 + art_sys_10: -8.98575471e-11 + art_sys_11: 3.36016496e-20 + art_sys_12: 1.32039608e-20 + art_sys_13: 1.44887019e-09 + art_sys_14: -5.58077951e-21 + art_sys_15: -1.20310831e-20 + art_sys_16: -3.28328763e-20 + art_sys_17: 2.71372524e-09 + art_sys_18: 2.36374367e-20 + art_sys_19: 1.02183376e-18 + art_sys_20: -1.28015794e-08 + art_sys_21: 5.88837962e-20 + art_sys_22: 9.79815738e-20 + art_sys_23: -8.77239549e-09 + art_sys_24: -6.58969422e-19 + art_sys_25: 9.39409603e-14 + art_sys_26: -1.81752299e-14 + art_sys_27: 7.53524345e-15 + art_sys_28: 3.94537596e-20 + art_sys_29: -2.75665031e-20 + art_sys_30: 1.72306668e-15 + art_sys_31: 1.36763899e-15 + art_sys_32: -1.50489291e-17 + art_sys_33: 1.98516360e-17 + art_sys_34: 5.93594997e-17 + art_sys_35: 7.98817387e-08 + art_sys_36: -2.52445538e-19 + art_sys_37: 6.01745136e-17 + art_sys_38: -3.63328557e-16 art_sys_39: -1.59495109e-07 - art_sys_40: -8.66406555e-18 - art_sys_41: -1.44586427e-19 - art_sys_42: -2.32779650e-17 - art_sys_43: 3.21438269e-17 - art_sys_44: -6.33130481e-17 - art_sys_45: 3.08317594e-17 - art_sys_46: 1.44592659e-07 - art_sys_47: 1.67724228e-15 - art_sys_48: -4.19765806e-15 - art_sys_49: -6.55369613e-18 - art_sys_50: 4.50481323e-13 - art_sys_51: 6.51984590e-15 - art_sys_52: 1.01991458e-14 - art_sys_53: 3.11114997e-16 - art_sys_54: -1.67025311e-11 - art_sys_55: -2.33104330e-06 - art_sys_56: -7.09121433e-11 - art_sys_57: 6.46916766e-10 - art_sys_58: -4.26612541e-07 - art_sys_59: 5.34517798e-15 - art_sys_60: -4.95672724e-15 - art_sys_61: 8.33256103e-16 - art_sys_62: -8.37641878e-16 - art_sys_63: 1.36611280e-16 - art_sys_64: -1.63023120e-16 - art_sys_65: 1.20835474e-16 - art_sys_66: -9.32826401e-17 - art_sys_67: 4.49987812e-17 - art_sys_68: 1.16569650e-11 - art_sys_69: -1.70508425e-12 - art_sys_70: -1.28232062e-11 - art_sys_71: 8.66231458e-12 - art_sys_72: 7.54810426e-14 - art_sys_73: -8.06166455e-06 - art_sys_74: 1.64841847e-12 - art_sys_75: 6.71994212e-17 - art_sys_76: -1.36763905e-17 - art_sys_77: -1.28374672e-17 - art_sys_78: -1.39638139e-11 - art_sys_79: -3.60317646e-11 - art_sys_80: -2.91377743e-18 - art_sys_81: 1.37280065e-19 - art_sys_82: -3.32061328e-18 - art_sys_83: 1.84052082e-16 - art_sys_84: 1.04402705e-10 - art_sys_85: -3.01316521e-05 - art_sys_86: 8.34139638e-16 - art_sys_87: -7.95470825e-13 - art_sys_88: 7.60872830e-19 - art_sys_89: -3.99911061e-19 - art_sys_90: -1.11251878e-11 - art_sys_91: 1.35832497e-05 - art_sys_92: 1.90101044e-12 - art_sys_93: -6.75159956e-20 - art_sys_94: 4.12166184e-20 - art_sys_95: -2.29106844e-12 - art_sys_96: -1.18609236e-04 - art_sys_97: 4.62543033e-14 - art_sys_98: 8.00439443e-16 - art_sys_99: -1.55020572e-19 - art_sys_100: 8.95356881e-20 - art_sys_101: -5.52891765e-20 - art_sys_102: 4.09869773e-15 - art_sys_103: -3.92669370e-21 - art_sys_104: -1.70256652e-15 - art_sys_105: -1.20190942e-21 - art_sys_106: 1.20320787e-17 - art_sys_107: 1.23326551e-16 - art_sys_108: -1.92768830e-21 - art_sys_109: 1.45738738e-17 - art_sys_110: 1.18087210e-19 - art_sys_111: 2.92609162e-21 - art_sys_112: -1.30755359e-16 - art_sys_113: 1.50524957e-16 - art_sys_114: -4.76725612e-17 - art_sys_115: -9.72084104e-20 - art_sys_116: 6.57110606e-17 - art_sys_117: -1.49945664e-08 - art_sys_118: -3.00750831e-16 - art_sys_119: 6.57425647e-22 - art_sys_120: -5.09897612e-21 - art_sys_121: -6.70450161e-21 - art_sys_122: 4.48037254e-21 - art_sys_123: 5.57641038e-20 - art_sys_124: -2.25986468e-20 - art_sys_125: -1.19159418e-16 - art_sys_126: 2.10687362e-20 - art_sys_127: -3.98089643e-17 - art_sys_128: -3.89906265e-21 - art_sys_129: -2.06803355e-20 - art_sys_130: -2.12160673e-16 - art_sys_131: 1.92044353e-16 - art_sys_132: -1.04524834e-23 - art_sys_133: -8.88144461e-21 - art_sys_134: 1.18852029e-19 - art_sys_135: -2.76708134e-24 - art_sys_136: -2.58187540e-24 - art_sys_137: -3.93796598e-24 - art_sys_138: 3.90801936e-22 - art_sys_139: -1.54946605e-24 - art_sys_140: -1.31899647e-23 - art_sys_141: -4.36171114e-25 - art_sys_142: 2.16578503e-24 - art_sys_143: -2.08452170e-25 - art_sys_144: 1.08844449e-25 - art_sys_145: 6.37239893e-25 - art_sys_146: -1.08231314e-24 - art_sys_147: -2.26207894e-25 - art_sys_148: 2.59225318e-26 - art_sys_149: 3.73299711e-26 - art_sys_150: -1.58799072e-26 - art_sys_151: 6.58773200e-27 - art_sys_152: -5.89220064e-29 - art_sys_153: -1.20828159e-29 - art_sys_154: -1.66406048e-30 - art_sys_155: 1.28339307e-31 - art_sys_156: 1.08533141e-31 - art_sys_157: -5.00594184e-32 - art_sys_158: -1.82844991e-33 - art_sys_159: -4.35247006e-34 - art_sys_160: 1.40100890e-33 - art_sys_161: -5.61599508e-32 - art_sys_162: -1.29989574e-32 - art_sys_163: 7.97432117e-33 - art_sys_164: 2.03002360e-32 - art_sys_165: 4.24116845e-32 - art_sys_166: 2.92432978e-33 - art_sys_167: 4.67717250e-32 - art_sys_168: -9.93716839e-24 - art_sys_169: 1.95947558e-33 - art_sys_170: -2.97074054e-24 - art_sys_171: -6.98897715e-24 - art_sys_172: -2.23098820e-33 - art_sys_173: 3.15185147e-33 - art_sys_174: 5.15693377e-25 - art_sys_175: 0.0 - art_sys_176: -1.32744386e-25 - art_sys_177: 0.0 - art_sys_178: -2.54538159e-26 - art_sys_179: 1.73890991e-28 - art_sys_180: -7.38046796e-32 - art_sys_181: 1.80555627e-35 - art_sys_182: 0.0 - art_sys_183: 2.65496548e-34 - art_sys_184: 4.58471458e-33 - art_sys_185: -3.39334620e-36 + art_sys_40: 6.97244256e-16 + art_sys_41: -4.81086312e-19 + art_sys_42: -1.60688552e-15 + art_sys_43: 4.43713663e-18 + art_sys_44: 4.95900725e-18 + art_sys_45: 8.56582112e-18 + art_sys_46: 1.44592662e-07 + art_sys_47: 2.86091331e-15 + art_sys_48: 5.06113440e-15 + art_sys_49: 5.46056543e-15 + art_sys_50: -2.46036380e-15 + art_sys_51: 2.58575665e-15 + art_sys_52: -2.34221642e-15 + art_sys_53: 2.01839494e-15 + art_sys_54: -4.59052599e-16 + art_sys_55: 8.84034038e-18 + art_sys_56: 8.76480749e-17 + art_sys_57: 4.28154036e-15 + art_sys_58: -2.84791352e-16 + art_sys_59: 8.57150103e-17 + art_sys_60: -1.24292431e-11 + art_sys_61: 2.33104346e-06 + art_sys_62: 1.84943880e-10 + art_sys_63: 1.32496547e-15 + art_sys_64: 5.39355147e-10 + art_sys_65: 5.10175333e-17 + art_sys_66: 7.52900814e-18 + art_sys_67: -4.26612527e-07 + art_sys_68: -8.30989567e-12 + art_sys_69: -9.13583386e-13 + art_sys_70: -7.15315580e-12 + art_sys_71: -1.99013904e-12 + art_sys_72: -8.06168230e-06 + art_sys_73: 6.25788701e-14 + art_sys_74: -2.51056248e-14 + art_sys_75: 2.37916671e-15 + art_sys_76: 8.05919707e-18 + art_sys_77: 3.70973097e-12 + art_sys_78: 4.31230060e-13 + art_sys_79: -5.85781812e-15 + art_sys_80: 2.39186612e-13 + art_sys_81: 2.37412000e-15 + art_sys_82: -5.12503981e-16 + art_sys_83: 2.29280756e-14 + art_sys_84: -4.90030872e-16 + art_sys_85: -1.85413122e-16 + art_sys_86: -4.52377077e-18 + art_sys_87: -9.51464411e-12 + art_sys_88: -1.67269044e-18 + art_sys_89: 1.01945720e-18 + art_sys_90: -3.42200092e-12 + art_sys_91: 7.34908560e-12 + art_sys_92: -1.20047158e-11 + art_sys_93: -3.01295558e-05 + art_sys_94: -2.62453657e-10 + art_sys_95: 1.10079735e-15 + art_sys_96: -3.54289949e-19 + art_sys_97: -3.04096599e-16 + art_sys_98: -9.33136593e-10 + art_sys_99: -1.35820901e-05 + art_sys_100: -2.00861155e-19 + art_sys_101: -1.53915939e-11 + art_sys_102: -8.32624962e-12 + art_sys_103: -8.38247245e-20 + art_sys_104: -1.18580698e-04 + art_sys_105: -1.70837896e-13 + art_sys_106: -1.69172915e-16 + art_sys_107: 2.19011152e-19 + art_sys_108: -7.04473453e-20 + art_sys_109: -1.20227772e-19 + art_sys_110: -2.25020650e-19 + art_sys_111: 4.16742545e-17 + art_sys_112: 7.00219928e-21 + art_sys_113: 5.15231399e-22 + art_sys_114: 6.81921218e-16 + art_sys_115: -1.24116051e-21 + art_sys_116: -9.34079357e-19 + art_sys_117: -1.46913145e-16 + art_sys_118: 2.10554823e-20 + art_sys_119: 4.03245503e-17 + art_sys_120: -4.70015125e-20 + art_sys_121: 3.01568599e-21 + art_sys_122: 1.29208913e-17 + art_sys_123: 6.06898999e-18 + art_sys_124: -2.13566555e-22 + art_sys_125: 1.18862851e-21 + art_sys_126: -4.88820835e-21 + art_sys_127: 9.80573723e-18 + art_sys_128: -1.23753409e-21 + art_sys_129: 3.22560361e-18 + art_sys_130: -2.06770430e-20 + art_sys_131: 3.42512717e-20 + art_sys_132: -3.47920177e-17 + art_sys_133: -1.14880125e-19 + art_sys_134: -2.93885538e-22 + art_sys_135: -5.14475465e-18 + art_sys_136: 3.52539511e-20 + art_sys_137: 6.67644273e-23 + art_sys_138: 3.14934717e-08 + art_sys_139: 3.29078493e-17 + art_sys_140: 5.00337494e-18 + art_sys_141: 6.12775979e-16 + art_sys_142: -7.68529862e-18 + art_sys_143: 1.25744069e-23 + art_sys_144: -7.14884230e-22 + art_sys_145: 5.46276488e-21 + art_sys_146: -0.0 + art_sys_147: 3.50833694e-19 + art_sys_148: -4.89066601e-18 + art_sys_149: -4.89066601e-18 + art_sys_150: -9.00843936e-19 + art_sys_151: -9.00843936e-19 + art_sys_152: -5.66908847e-18 + art_sys_153: 2.78589672e-19 + art_sys_154: -3.73701503e-22 + art_sys_155: 1.28603176e-30 + art_sys_156: 1.40088217e-35 + art_sys_157: -2.46579644e-35 + art_sys_158: -0.0 + art_sys_159: -9.88903513e-23 + art_sys_160: -6.95226755e-22 + art_sys_161: 1.30149060e-24 + art_sys_162: 4.76193484e-23 + art_sys_163: -6.84729115e-23 + art_sys_164: 9.74636575e-23 + art_sys_165: 8.07888992e-25 + art_sys_166: 8.30250556e-31 + art_sys_167: 3.88289941e-30 + art_sys_168: 4.46994986e-31 + art_sys_169: -9.16121318e-30 + art_sys_170: -4.41564859e-29 + art_sys_171: -8.34580614e-30 + art_sys_172: 1.81081415e-27 + art_sys_173: 6.86640102e-28 + art_sys_174: 1.41311139e-28 + art_sys_175: -3.35241251e-33 + art_sys_176: 7.42249324e-30 + art_sys_177: 5.46840962e-32 + art_sys_178: 4.35938627e-31 + art_sys_179: -5.97394373e-32 + art_sys_180: 1.03367745e-31 + art_sys_181: -1.38031758e-33 + art_sys_182: 6.15018135e-33 + art_sys_183: -1.25373322e-35 + art_sys_184: -6.86532375e-37 + art_sys_185: 1.15627989e-37 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -70661,191 +70661,191 @@ bins: RelativeStatFSR-: -6.60213130e-06 luminosity_uncertainty: 1.01742420e-05 uncorrelated_uncertainty: 3.91317000e-06 -- art_sys_1: -3.88941340e-17 - art_sys_2: -7.45430910e-26 - art_sys_3: 5.76450014e-16 - art_sys_4: 2.09852876e-21 - art_sys_5: -2.86625591e-25 - art_sys_6: 7.65961607e-16 - art_sys_7: 1.05825247e-22 - art_sys_8: -5.27193749e-23 - art_sys_9: -1.24506517e-22 - art_sys_10: 2.97545712e-15 - art_sys_11: -1.42544471e-21 - art_sys_12: -6.88205632e-21 - art_sys_13: -5.18034174e-14 - art_sys_14: -6.73801414e-22 - art_sys_15: -1.00801352e-21 - art_sys_16: -3.28780094e-21 - art_sys_17: -1.06249030e-13 - art_sys_18: 1.55861004e-21 - art_sys_19: 1.45893804e-21 - art_sys_20: 2.03040819e-13 - art_sys_21: -1.10901957e-21 - art_sys_22: -2.76567385e-21 - art_sys_23: -1.26224697e-12 - art_sys_24: -9.06382186e-21 - art_sys_25: -3.43706370e-14 - art_sys_26: -7.51521041e-14 - art_sys_27: -5.88541410e-14 - art_sys_28: 4.41260286e-15 - art_sys_29: -6.12235665e-16 - art_sys_30: 5.34362672e-21 - art_sys_31: 2.01160502e-21 - art_sys_32: -2.40018938e-15 - art_sys_33: -6.74505146e-16 - art_sys_34: -6.73546402e-21 - art_sys_35: 7.57549733e-11 - art_sys_36: -6.35217291e-20 - art_sys_37: -2.39382069e-20 - art_sys_38: 4.92236568e-16 - art_sys_39: -1.06422492e-09 - art_sys_40: -1.89539520e-19 - art_sys_41: 9.34885946e-21 - art_sys_42: 7.92963815e-19 - art_sys_43: 2.78410895e-17 - art_sys_44: -5.87868177e-17 - art_sys_45: -2.19789898e-17 - art_sys_46: -5.06999394e-09 - art_sys_47: -2.90467487e-17 - art_sys_48: 3.84357295e-16 - art_sys_49: -1.28254567e-17 - art_sys_50: -6.96066403e-14 - art_sys_51: 7.56170688e-14 - art_sys_52: -2.61299805e-15 - art_sys_53: -1.00729616e-18 - art_sys_54: 1.75177471e-12 - art_sys_55: -8.18040420e-09 - art_sys_56: 2.42620603e-12 - art_sys_57: -1.29588150e-10 - art_sys_58: -3.63355729e-07 - art_sys_59: 1.34661986e-14 - art_sys_60: -8.07850211e-15 - art_sys_61: -3.24282962e-16 - art_sys_62: 1.61297841e-16 - art_sys_63: 1.13496322e-15 - art_sys_64: -4.12261928e-18 - art_sys_65: 1.02075547e-16 - art_sys_66: 4.91998047e-17 - art_sys_67: 1.66718948e-17 - art_sys_68: 7.93860473e-12 - art_sys_69: 3.54133351e-13 - art_sys_70: -9.59519774e-11 - art_sys_71: 5.44480428e-11 - art_sys_72: -6.49404020e-14 - art_sys_73: 9.41586069e-07 - art_sys_74: 8.53225967e-12 - art_sys_75: -1.11707172e-17 - art_sys_76: -2.26437892e-17 - art_sys_77: 2.54973676e-18 - art_sys_78: -1.29252396e-12 - art_sys_79: -1.18893056e-11 - art_sys_80: 5.53615187e-18 - art_sys_81: -3.78579027e-18 - art_sys_82: -1.24442058e-18 - art_sys_83: -4.02472583e-15 - art_sys_84: 1.07665249e-12 - art_sys_85: -1.08476501e-06 - art_sys_86: -8.11809774e-14 - art_sys_87: 3.68665750e-11 - art_sys_88: 4.39410685e-19 - art_sys_89: -7.93265248e-17 - art_sys_90: 1.08486708e-09 - art_sys_91: 8.63243201e-06 - art_sys_92: -1.86078839e-10 - art_sys_93: 8.98419659e-18 - art_sys_94: -5.12630635e-18 - art_sys_95: 2.24131057e-10 - art_sys_96: -1.01894414e-06 - art_sys_97: -4.35833288e-12 - art_sys_98: -7.80375188e-14 - art_sys_99: -9.52576159e-20 - art_sys_100: 2.25319899e-19 - art_sys_101: -1.40567265e-20 - art_sys_102: -3.64248028e-13 - art_sys_103: 1.35389444e-19 - art_sys_104: 1.99235049e-13 - art_sys_105: 6.60952409e-20 - art_sys_106: -1.51429776e-15 - art_sys_107: -2.01428096e-14 - art_sys_108: 2.08102861e-21 - art_sys_109: -5.40153007e-15 - art_sys_110: -4.43888505e-17 - art_sys_111: -3.23213012e-19 - art_sys_112: 1.61011298e-14 - art_sys_113: -1.58866167e-14 - art_sys_114: 5.01728258e-15 - art_sys_115: 7.80902091e-18 - art_sys_116: -6.49315691e-15 - art_sys_117: 1.46562012e-06 - art_sys_118: 2.94184696e-14 - art_sys_119: -6.28831605e-20 - art_sys_120: 4.92973129e-19 - art_sys_121: 6.51711864e-19 - art_sys_122: -4.39007508e-19 - art_sys_123: -5.34412213e-18 - art_sys_124: 2.20680121e-18 - art_sys_125: 1.16473786e-14 - art_sys_126: -2.05883597e-18 - art_sys_127: 3.89085652e-15 - art_sys_128: 3.80575815e-19 - art_sys_129: 2.02198083e-18 - art_sys_130: 2.07371758e-14 - art_sys_131: -1.87710576e-14 - art_sys_132: 1.02131707e-21 - art_sys_133: 8.68107961e-19 - art_sys_134: -1.16168406e-17 - art_sys_135: -1.99003875e-24 - art_sys_136: -6.87819852e-25 - art_sys_137: -1.39204162e-24 - art_sys_138: -1.69772241e-24 - art_sys_139: 7.65792660e-24 - art_sys_140: 6.61961232e-24 - art_sys_141: 2.64431549e-24 - art_sys_142: -1.51183968e-23 - art_sys_143: 8.43778633e-24 - art_sys_144: 1.67753472e-26 - art_sys_145: 1.32298088e-25 - art_sys_146: -7.68301408e-26 - art_sys_147: 3.55216456e-25 - art_sys_148: 2.73606374e-26 - art_sys_149: -4.21958837e-26 - art_sys_150: 1.63215798e-26 - art_sys_151: -6.48907769e-27 - art_sys_152: 5.34407949e-29 - art_sys_153: 1.47626058e-29 - art_sys_154: 6.25466571e-30 - art_sys_155: -4.07040783e-31 - art_sys_156: 1.27455464e-31 - art_sys_157: 7.71985675e-32 - art_sys_158: 2.57556650e-32 - art_sys_159: 4.25227403e-33 - art_sys_160: -2.89772573e-32 - art_sys_161: -7.54909881e-33 - art_sys_162: 4.55995333e-33 - art_sys_163: -2.82326407e-33 - art_sys_164: 3.15489361e-33 - art_sys_165: 9.49866116e-34 - art_sys_166: 2.99728303e-35 - art_sys_167: 5.46000309e-33 - art_sys_168: 1.01254219e-21 - art_sys_169: -2.86550880e-33 - art_sys_170: 2.71572731e-22 - art_sys_171: 6.96533052e-22 - art_sys_172: 8.90282382e-32 - art_sys_173: -1.12556344e-31 - art_sys_174: -5.36859869e-23 - art_sys_175: 0.0 - art_sys_176: 1.20978018e-23 - art_sys_177: 0.0 - art_sys_178: 2.60044309e-24 - art_sys_179: -2.54454847e-26 - art_sys_180: 7.11895099e-30 - art_sys_181: -1.76480042e-33 - art_sys_182: 0.0 - art_sys_183: -2.59503656e-32 - art_sys_184: -4.48124039e-31 - art_sys_185: 3.31679160e-34 +- art_sys_1: 3.88941340e-17 + art_sys_2: -5.76450014e-16 + art_sys_3: 8.32183407e-26 + art_sys_4: 5.77802628e-22 + art_sys_5: 8.41430253e-26 + art_sys_6: -7.65961607e-16 + art_sys_7: 1.62460723e-22 + art_sys_8: 3.14722675e-23 + art_sys_9: -1.25762182e-22 + art_sys_10: -2.97545712e-15 + art_sys_11: -5.75232343e-23 + art_sys_12: -1.20246805e-21 + art_sys_13: 5.18034174e-14 + art_sys_14: 2.74602389e-22 + art_sys_15: 3.92903336e-22 + art_sys_16: -1.90821279e-22 + art_sys_17: 1.06249030e-13 + art_sys_18: -1.31060571e-22 + art_sys_19: -8.57382802e-21 + art_sys_20: -2.03040819e-13 + art_sys_21: -7.90355910e-22 + art_sys_22: -1.29797423e-21 + art_sys_23: 1.26224697e-12 + art_sys_24: 8.98681342e-21 + art_sys_25: -1.28111651e-14 + art_sys_26: -2.87261913e-14 + art_sys_27: 3.13422177e-14 + art_sys_28: 7.27519728e-22 + art_sys_29: 2.05833224e-21 + art_sys_30: -6.36266552e-16 + art_sys_31: -1.97791388e-16 + art_sys_32: 4.16030807e-16 + art_sys_33: -8.05710283e-16 + art_sys_34: 5.46305236e-20 + art_sys_35: 7.57549729e-11 + art_sys_36: 5.76115135e-20 + art_sys_37: 4.59047994e-19 + art_sys_38: -3.49130443e-17 + art_sys_39: -1.06422491e-09 + art_sys_40: 4.54475310e-18 + art_sys_41: 6.82699109e-20 + art_sys_42: 5.63112816e-17 + art_sys_43: 1.94123134e-17 + art_sys_44: 5.80223361e-17 + art_sys_45: 2.11628493e-18 + art_sys_46: -5.06999402e-09 + art_sys_47: 6.92066077e-16 + art_sys_48: 4.00689817e-15 + art_sys_49: 1.28863492e-14 + art_sys_50: -1.45817551e-14 + art_sys_51: -1.40675716e-14 + art_sys_52: -2.37478481e-16 + art_sys_53: 2.27611424e-17 + art_sys_54: -7.66913110e-16 + art_sys_55: -9.27176453e-18 + art_sys_56: -5.69454581e-18 + art_sys_57: 2.41889274e-15 + art_sys_58: -4.26389033e-17 + art_sys_59: 4.47486735e-17 + art_sys_60: -8.69523218e-13 + art_sys_61: 8.18040495e-09 + art_sys_62: -6.73560226e-11 + art_sys_63: -7.23264527e-17 + art_sys_64: -4.70795742e-11 + art_sys_65: 6.83608512e-17 + art_sys_66: -3.71649683e-17 + art_sys_67: -3.63355730e-07 + art_sys_68: -3.13727101e-13 + art_sys_69: -1.71197997e-13 + art_sys_70: 5.74269947e-12 + art_sys_71: -3.53234968e-12 + art_sys_72: 9.41585452e-07 + art_sys_73: -1.72274675e-14 + art_sys_74: -4.12432335e-14 + art_sys_75: 4.21178643e-15 + art_sys_76: -1.42757822e-17 + art_sys_77: 4.09379155e-14 + art_sys_78: 6.99053968e-12 + art_sys_79: 1.97232670e-15 + art_sys_80: -2.48001775e-11 + art_sys_81: 9.30893110e-16 + art_sys_82: -1.01834628e-15 + art_sys_83: 2.03930068e-16 + art_sys_84: -4.73365746e-16 + art_sys_85: -1.25496385e-16 + art_sys_86: 1.58377467e-18 + art_sys_87: -7.67863935e-12 + art_sys_88: 7.71340650e-20 + art_sys_89: -9.53716747e-19 + art_sys_90: 3.84758273e-13 + art_sys_91: -5.32174479e-10 + art_sys_92: 1.78152396e-11 + art_sys_93: -1.08375584e-06 + art_sys_94: -6.59095371e-11 + art_sys_95: -8.47712834e-14 + art_sys_96: 1.65651851e-19 + art_sys_97: 2.91396133e-14 + art_sys_98: 2.37933725e-09 + art_sys_99: -8.63246453e-06 + art_sys_100: -3.63989816e-18 + art_sys_101: 1.46190822e-09 + art_sys_102: 9.19322495e-10 + art_sys_103: 5.50302227e-19 + art_sys_104: -1.02629242e-06 + art_sys_105: 1.87655907e-11 + art_sys_106: 1.84777535e-14 + art_sys_107: -7.73444347e-20 + art_sys_108: -2.89314283e-19 + art_sys_109: 3.08885612e-20 + art_sys_110: 4.32825442e-19 + art_sys_111: -9.18134207e-14 + art_sys_112: 2.40927312e-20 + art_sys_113: -5.19225840e-20 + art_sys_114: -1.77719964e-14 + art_sys_115: 3.51436679e-20 + art_sys_116: 1.29324311e-17 + art_sys_117: 1.20421704e-15 + art_sys_118: -1.23113644e-19 + art_sys_119: -1.02794956e-15 + art_sys_120: -8.84691807e-19 + art_sys_121: -1.31613278e-19 + art_sys_122: -7.35099593e-16 + art_sys_123: -5.06240662e-16 + art_sys_124: 1.64513611e-20 + art_sys_125: -3.47025049e-19 + art_sys_126: 3.95177304e-19 + art_sys_127: -9.08246283e-16 + art_sys_128: 1.06106932e-19 + art_sys_129: -3.12377721e-16 + art_sys_130: 1.93681366e-18 + art_sys_131: -3.19145451e-18 + art_sys_132: 3.33863929e-15 + art_sys_133: 1.10555683e-17 + art_sys_134: 2.83114769e-20 + art_sys_135: 5.01766318e-16 + art_sys_136: -3.40546690e-18 + art_sys_137: -6.42325788e-21 + art_sys_138: -3.06838853e-06 + art_sys_139: -3.20379656e-15 + art_sys_140: -4.87193784e-16 + art_sys_141: -5.97026724e-14 + art_sys_142: 7.49221330e-16 + art_sys_143: -1.18066645e-21 + art_sys_144: 6.96259687e-20 + art_sys_145: -5.32581682e-19 + art_sys_146: 0.0 + art_sys_147: -3.42184830e-17 + art_sys_148: 4.77011470e-16 + art_sys_149: 4.77011470e-16 + art_sys_150: 8.78431243e-17 + art_sys_151: 8.78431243e-17 + art_sys_152: 5.52748538e-16 + art_sys_153: -2.71583974e-17 + art_sys_154: 3.64463353e-20 + art_sys_155: -1.25382681e-28 + art_sys_156: -1.36666741e-33 + art_sys_157: 2.40553335e-33 + art_sys_158: 0.0 + art_sys_159: -1.09161772e-21 + art_sys_160: 1.46064270e-22 + art_sys_161: 1.28430930e-22 + art_sys_162: 2.87104579e-23 + art_sys_163: 6.06573837e-21 + art_sys_164: -8.35899405e-21 + art_sys_165: 1.27648467e-22 + art_sys_166: 1.86378160e-31 + art_sys_167: -5.03710023e-30 + art_sys_168: 2.62507206e-30 + art_sys_169: 8.96282676e-30 + art_sys_170: -1.22664712e-29 + art_sys_171: -6.34117788e-29 + art_sys_172: -4.40723273e-28 + art_sys_173: -1.27366169e-28 + art_sys_174: -4.38242855e-29 + art_sys_175: 3.26876668e-31 + art_sys_176: 6.55630231e-31 + art_sys_177: 9.52750493e-31 + art_sys_178: -2.81715074e-31 + art_sys_179: 2.71147586e-32 + art_sys_180: 2.67013976e-32 + art_sys_181: -3.84508616e-33 + art_sys_182: -1.10947592e-33 + art_sys_183: -1.21896393e-34 + art_sys_184: 3.89022950e-35 + art_sys_185: -8.86173374e-36 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 diff --git a/nnpdf_data/nnpdf_data/new_commondata/CMS_2JET_7TEV/uncertainties.yaml b/nnpdf_data/nnpdf_data/new_commondata/CMS_2JET_7TEV/uncertainties.yaml index ae9a5c90a2..46726a53e4 100644 --- a/nnpdf_data/nnpdf_data/new_commondata/CMS_2JET_7TEV/uncertainties.yaml +++ b/nnpdf_data/nnpdf_data/new_commondata/CMS_2JET_7TEV/uncertainties.yaml @@ -1034,7 +1034,7 @@ bins: bin_by_bin_uncertainty: 3.22000000e-05 - art_sys_corr_1: -7.29079575e-34 art_sys_corr_2: 2.33374665e-30 - art_sys_corr_3: -1.28390985e-24 + art_sys_corr_3: -1.28390990e-24 art_sys_corr_4: -3.88103819e-17 art_sys_corr_5: -2.12910028e-14 art_sys_corr_6: 1.46873652e-11 @@ -1118,12 +1118,12 @@ bins: JEC13+: 6.22253967e-06 luminosity_uncertainty: 1.93600000e-05 bin_by_bin_uncertainty: 8.8e-06 -- art_sys_corr_1: 3.56511935e-45 - art_sys_corr_2: 4.15575041e-40 - art_sys_corr_3: 2.46395198e-33 +- art_sys_corr_1: 3.56511816e-45 + art_sys_corr_2: 4.15571845e-40 + art_sys_corr_3: 2.46397755e-33 art_sys_corr_4: 1.92291561e-23 art_sys_corr_5: 1.97647892e-19 - art_sys_corr_6: -9.35598139e-16 + art_sys_corr_6: -9.35598402e-16 art_sys_corr_7: -3.35880699e-10 art_sys_corr_8: 6.01129681e-08 art_sys_corr_9: -1.71870435e-06 @@ -1204,12 +1204,12 @@ bins: JEC13+: 1.21622366e-06 luminosity_uncertainty: 3.78400000e-06 bin_by_bin_uncertainty: 1.72e-06 -- art_sys_corr_1: -1.97944755e-53 - art_sys_corr_2: -5.28824115e-47 - art_sys_corr_3: 4.22947186e-40 +- art_sys_corr_1: -1.97943657e-53 + art_sys_corr_2: -5.28821181e-47 + art_sys_corr_3: 4.22944840e-40 art_sys_corr_4: -1.76459806e-30 - art_sys_corr_5: -3.39822033e-25 - art_sys_corr_6: 1.10364083e-20 + art_sys_corr_5: -3.39822131e-25 + art_sys_corr_6: 1.10370236e-20 art_sys_corr_7: 1.67084107e-13 art_sys_corr_8: -1.46774418e-10 art_sys_corr_9: 1.83660547e-08 @@ -1290,12 +1290,12 @@ bins: JEC13+: 2.84256926e-07 luminosity_uncertainty: 8.84400000e-07 bin_by_bin_uncertainty: 4.02e-07 -- art_sys_corr_1: 3.15116008e-61 - art_sys_corr_2: 8.41855820e-55 - art_sys_corr_3: -6.73306191e-48 - art_sys_corr_4: 2.80957788e-38 - art_sys_corr_5: 1.01368481e-31 - art_sys_corr_6: -2.25094406e-26 +- art_sys_corr_1: 3.15114282e-61 + art_sys_corr_2: 8.41851207e-55 + art_sys_corr_3: -6.73302501e-48 + art_sys_corr_4: 2.80957807e-38 + art_sys_corr_5: 1.01377892e-31 + art_sys_corr_6: -2.27230806e-26 art_sys_corr_7: -1.44011308e-17 art_sys_corr_8: 6.17605820e-14 art_sys_corr_9: -3.30715194e-11 @@ -1376,13 +1376,13 @@ bins: JEC13+: 3.82544769e-08 luminosity_uncertainty: 1.19020000e-07 bin_by_bin_uncertainty: 5.41e-08 -- art_sys_corr_1: -1.09444546e-69 - art_sys_corr_2: -2.92389233e-63 - art_sys_corr_3: 2.33849403e-56 - art_sys_corr_4: -9.75805124e-47 - art_sys_corr_5: -6.52445262e-39 - art_sys_corr_6: 8.28143958e-33 - art_sys_corr_7: 2.70711745e-22 +- art_sys_corr_1: -1.09439304e-69 + art_sys_corr_2: -2.92375228e-63 + art_sys_corr_3: 2.33838202e-56 + art_sys_corr_4: -9.75763696e-47 + art_sys_corr_5: -6.70575386e-39 + art_sys_corr_6: 1.31554790e-32 + art_sys_corr_7: 2.70711746e-22 art_sys_corr_8: -5.66203656e-18 art_sys_corr_9: 1.29195341e-14 art_sys_corr_10: 1.79874574e-11 @@ -3382,7 +3382,7 @@ bins: art_sys_corr_26: -2.67350195e-33 art_sys_corr_27: -4.66625505e-29 art_sys_corr_28: -2.31204627e-24 - art_sys_corr_29: 1.57375621e-24 + art_sys_corr_29: 1.57375628e-24 art_sys_corr_30: -2.23011181e-17 art_sys_corr_31: 1.80157539e-14 art_sys_corr_32: 1.00861682e-13 diff --git a/nnpdf_data/nnpdf_data/new_commondata/CMS_WPWM_13TEV_ETA/uncertainties_WM.yaml b/nnpdf_data/nnpdf_data/new_commondata/CMS_WPWM_13TEV_ETA/uncertainties_WM.yaml index 1102b5bc51..01b38cf483 100644 --- a/nnpdf_data/nnpdf_data/new_commondata/CMS_WPWM_13TEV_ETA/uncertainties_WM.yaml +++ b/nnpdf_data/nnpdf_data/new_commondata/CMS_WPWM_13TEV_ETA/uncertainties_WM.yaml @@ -73,326 +73,326 @@ definitions: type: CORR bins: - artificial_uncertainty_0: 51.7184748170021 - artificial_uncertainty_1: 2.630647346347218 - artificial_uncertainty_2: -0.8403641026433576 - artificial_uncertainty_3: -1.7650207910247462 - artificial_uncertainty_4: -0.2599126051896835 - artificial_uncertainty_5: 0.6368883188663885 - artificial_uncertainty_6: -0.3891669304875077 - artificial_uncertainty_7: 0.06644156969369784 - artificial_uncertainty_8: -0.2920585159413545 - artificial_uncertainty_9: 0.018658361676136215 - artificial_uncertainty_10: -0.03941102535549217 - artificial_uncertainty_11: 1.6244619879909714 - artificial_uncertainty_12: 0.22430923097019026 - artificial_uncertainty_13: 0.23284845181235697 - artificial_uncertainty_14: -0.44688045566569357 - artificial_uncertainty_15: 0.1780348295809441 - artificial_uncertainty_16: -0.400496948011364 - artificial_uncertainty_17: -0.11905469675415793 -- artificial_uncertainty_0: 51.991065652529876 - artificial_uncertainty_1: 2.7507437445539242 - artificial_uncertainty_2: -0.7662143207065155 - artificial_uncertainty_3: -1.5180828819976642 - artificial_uncertainty_4: -0.11863177965970988 - artificial_uncertainty_5: 0.6660334655414433 - artificial_uncertainty_6: -0.3287069661495769 - artificial_uncertainty_7: -0.031897546330683556 - artificial_uncertainty_8: 0.2640450912374402 - artificial_uncertainty_9: 0.03787239500292776 - artificial_uncertainty_10: -0.1389439341541593 - artificial_uncertainty_11: -0.2578570286594262 - artificial_uncertainty_12: -0.13242749050748231 - artificial_uncertainty_13: -1.6258524044511866 - artificial_uncertainty_14: 0.4862155828065789 - artificial_uncertainty_15: -0.507911306467752 - artificial_uncertainty_16: 0.22659596586512917 - artificial_uncertainty_17: 0.45168307456222084 + artificial_uncertainty_1: 2.630647346347256 + artificial_uncertainty_2: -0.8403641026433771 + artificial_uncertainty_3: -1.7650207910248759 + artificial_uncertainty_4: -0.259912605189649 + artificial_uncertainty_5: 0.6368883188667323 + artificial_uncertainty_6: -0.3891669304874289 + artificial_uncertainty_7: 0.06644156969348641 + artificial_uncertainty_8: -0.292058515940583 + artificial_uncertainty_9: 0.01865836167533489 + artificial_uncertainty_10: -0.03941102535277325 + artificial_uncertainty_11: 1.6244619879919788 + artificial_uncertainty_12: 0.2243092309693005 + artificial_uncertainty_13: 0.23284845180058378 + artificial_uncertainty_14: -0.4468804556588947 + artificial_uncertainty_15: 0.17803482957031228 + artificial_uncertainty_16: -0.40049694800825175 + artificial_uncertainty_17: -0.11905469674913374 +- artificial_uncertainty_0: 51.99106565252987 + artificial_uncertainty_1: 2.750743744553912 + artificial_uncertainty_2: -0.7662143207065207 + artificial_uncertainty_3: -1.5180828819976333 + artificial_uncertainty_4: -0.11863177965964161 + artificial_uncertainty_5: 0.6660334655411994 + artificial_uncertainty_6: -0.3287069661492375 + artificial_uncertainty_7: -0.03189754633043673 + artificial_uncertainty_8: 0.26404509123673636 + artificial_uncertainty_9: 0.03787239500366528 + artificial_uncertainty_10: -0.1389439341553086 + artificial_uncertainty_11: -0.25785702866666577 + artificial_uncertainty_12: -0.13242749050610655 + artificial_uncertainty_13: -1.6258524044497522 + artificial_uncertainty_14: 0.4862155827947212 + artificial_uncertainty_15: -0.5079113064547442 + artificial_uncertainty_16: 0.22659596585560998 + artificial_uncertainty_17: 0.45168307455846773 - artificial_uncertainty_0: 52.281889649642125 - artificial_uncertainty_1: 2.776376073314108 - artificial_uncertainty_2: -0.8358591017724628 - artificial_uncertainty_3: -1.8617227823664204 - artificial_uncertainty_4: -0.250751299864693 - artificial_uncertainty_5: -2.2684983389310127 - artificial_uncertainty_6: 0.789382696797683 - artificial_uncertainty_7: 0.09662992593679884 - artificial_uncertainty_8: -0.1032899572059267 - artificial_uncertainty_9: 0.0257687922107484 - artificial_uncertainty_10: 0.017115186436918898 - artificial_uncertainty_11: -0.0234587015035684 - artificial_uncertainty_12: -0.013983414582400235 - artificial_uncertainty_13: -0.06600927284223548 - artificial_uncertainty_14: -0.0029871922222194794 - artificial_uncertainty_15: -0.015074543805355892 - artificial_uncertainty_16: -0.033987539181027114 - artificial_uncertainty_17: -0.01965513820043254 + artificial_uncertainty_1: 2.7763760733141 + artificial_uncertainty_2: -0.8358591017724545 + artificial_uncertainty_3: -1.861722782366366 + artificial_uncertainty_4: -0.25075129986454936 + artificial_uncertainty_5: -2.2684983389315003 + artificial_uncertainty_6: 0.7893826967973138 + artificial_uncertainty_7: 0.0966299259372553 + artificial_uncertainty_8: -0.10328995720579309 + artificial_uncertainty_9: 0.025768792210336715 + artificial_uncertainty_10: 0.017115186436748798 + artificial_uncertainty_11: -0.023458701503702998 + artificial_uncertainty_12: -0.01398341458234018 + artificial_uncertainty_13: -0.06600927284227415 + artificial_uncertainty_14: -0.0029871922226949866 + artificial_uncertainty_15: -0.015074543805203957 + artificial_uncertainty_16: -0.033987539180723066 + artificial_uncertainty_17: -0.019655138200037316 - artificial_uncertainty_0: 52.03798882376835 - artificial_uncertainty_1: 2.632100328414887 - artificial_uncertainty_2: -0.7992541514860427 - artificial_uncertainty_3: -1.450276868192853 - artificial_uncertainty_4: -0.25345824474622675 - artificial_uncertainty_5: 0.569799427928627 - artificial_uncertainty_6: -0.3642418530268567 - artificial_uncertainty_7: -0.10369776066415394 - artificial_uncertainty_8: 0.04651805510884269 - artificial_uncertainty_9: -0.0773262185962644 - artificial_uncertainty_10: 1.4385510410986535 - artificial_uncertainty_11: -0.8235906090928694 - artificial_uncertainty_12: 0.17179957834803386 - artificial_uncertainty_13: 0.7246251391735495 - artificial_uncertainty_14: -0.017961196595897864 - artificial_uncertainty_15: 0.0935525467115333 - artificial_uncertainty_16: 0.011757031973662298 - artificial_uncertainty_17: 0.05425530136764275 + artificial_uncertainty_1: 2.6321003284149005 + artificial_uncertainty_2: -0.7992541514860563 + artificial_uncertainty_3: -1.4502768681929639 + artificial_uncertainty_4: -0.253458244746243 + artificial_uncertainty_5: 0.5697994279289057 + artificial_uncertainty_6: -0.36424185302695217 + artificial_uncertainty_7: -0.10369776066453204 + artificial_uncertainty_8: 0.04651805510837259 + artificial_uncertainty_9: -0.07732621859613824 + artificial_uncertainty_10: 1.438551041097729 + artificial_uncertainty_11: -0.8235906090926208 + artificial_uncertainty_12: 0.1717995783476429 + artificial_uncertainty_13: 0.7246251391761638 + artificial_uncertainty_14: -0.017961196593004512 + artificial_uncertainty_15: 0.09355254670929704 + artificial_uncertainty_16: 0.011757031972574841 + artificial_uncertainty_17: 0.054255301367280684 - artificial_uncertainty_0: 51.774958490872756 - artificial_uncertainty_1: 2.6214138091299524 - artificial_uncertainty_2: -0.7606436328944929 - artificial_uncertainty_3: -1.2117490076321111 - artificial_uncertainty_4: -0.24394891670918686 - artificial_uncertainty_5: 0.5900845113553087 - artificial_uncertainty_6: -0.007018154426199607 - artificial_uncertainty_7: -0.1602383935143493 - artificial_uncertainty_8: 0.13226173512427472 - artificial_uncertainty_9: -0.15657265749393542 - artificial_uncertainty_10: -1.40485571588643 - artificial_uncertainty_11: -0.7529949790820074 - artificial_uncertainty_12: -0.24707531221298962 - artificial_uncertainty_13: 0.7929195427772646 - artificial_uncertainty_14: -0.005616310821291339 - artificial_uncertainty_15: 0.2858058370910298 - artificial_uncertainty_16: 0.20321053376179105 - artificial_uncertainty_17: -0.4008589877665502 -- artificial_uncertainty_0: 51.84380226099937 - artificial_uncertainty_1: 2.629774359601832 - artificial_uncertainty_2: -0.7807531126974705 - artificial_uncertainty_3: 1.502675202986327 - artificial_uncertainty_4: 0.2778015606628099 - artificial_uncertainty_5: 0.3267692617524977 - artificial_uncertainty_6: 0.8476400468809359 - artificial_uncertainty_7: 0.11510725359521479 - artificial_uncertainty_8: -0.09684020655771257 - artificial_uncertainty_9: 0.2655136702833148 - artificial_uncertainty_10: 0.055414539619630374 - artificial_uncertainty_11: -0.13330938920949217 - artificial_uncertainty_12: -0.715941831763385 - artificial_uncertainty_13: 0.045800897086273766 - artificial_uncertainty_14: -1.1927946363444448 - artificial_uncertainty_15: -1.1692693781964085 - artificial_uncertainty_16: -0.35091293899089987 - artificial_uncertainty_17: 0.05925764599088294 -- artificial_uncertainty_0: 51.75260693912589 - artificial_uncertainty_1: 2.585454314887794 - artificial_uncertainty_2: -0.7716384202675742 - artificial_uncertainty_3: 1.5382919940685786 - artificial_uncertainty_4: 0.23319296782431084 - artificial_uncertainty_5: 0.28501053235257146 - artificial_uncertainty_6: 0.8294952113227001 - artificial_uncertainty_7: -0.0017962625947549507 - artificial_uncertainty_8: -0.08735476034268357 - artificial_uncertainty_9: 0.09185895625113569 - artificial_uncertainty_10: 0.08529573608164898 - artificial_uncertainty_11: 0.030609913913395178 - artificial_uncertainty_12: -0.5747246035820882 - artificial_uncertainty_13: -0.12746853008145026 - artificial_uncertainty_14: 0.6860699304367311 - artificial_uncertainty_15: 1.2231004132602725 - artificial_uncertainty_16: -0.9534862722292211 - artificial_uncertainty_17: 0.582657020676515 -- artificial_uncertainty_0: 51.64261187410648 - artificial_uncertainty_1: 2.539564835559997 - artificial_uncertainty_2: -0.7645708143539199 - artificial_uncertainty_3: 1.5170333972089975 - artificial_uncertainty_4: 0.16786019309750352 - artificial_uncertainty_5: 0.19778372032593053 - artificial_uncertainty_6: 0.6726842092741745 - artificial_uncertainty_7: -0.08370139577573586 - artificial_uncertainty_8: 0.1398297878984843 - artificial_uncertainty_9: -0.07377136335260567 - artificial_uncertainty_10: 0.321037799252692 - artificial_uncertainty_11: 0.37637681458815087 - artificial_uncertainty_12: 0.1306373034767338 - artificial_uncertainty_13: -0.19649048333695218 - artificial_uncertainty_14: 0.4798126944663827 - artificial_uncertainty_15: 0.13574462766060763 - artificial_uncertainty_16: 1.1619002206498446 - artificial_uncertainty_17: -1.3685916481250473 -- artificial_uncertainty_0: 51.94395797655956 - artificial_uncertainty_1: 2.4830246443302233 - artificial_uncertainty_2: -0.803569225838813 - artificial_uncertainty_3: 1.861521646139877 - artificial_uncertainty_4: 0.13182334539322005 - artificial_uncertainty_5: -0.8550608645206712 - artificial_uncertainty_6: -2.115458258190399 - artificial_uncertainty_7: 0.15757035051656776 - artificial_uncertainty_8: -0.11017129957718323 - artificial_uncertainty_9: 0.039302491188775955 - artificial_uncertainty_10: -0.05435982119090682 - artificial_uncertainty_11: -0.035384292788305856 - artificial_uncertainty_12: -0.5251976168018608 - artificial_uncertainty_13: -0.014627661753352174 - artificial_uncertainty_14: -0.018450192520828718 - artificial_uncertainty_15: 0.05069194080841222 - artificial_uncertainty_16: -0.08781571905364947 - artificial_uncertainty_17: -0.1975416762937391 + artificial_uncertainty_1: 2.6214138091299475 + artificial_uncertainty_2: -0.7606436328944934 + artificial_uncertainty_3: -1.2117490076321076 + artificial_uncertainty_4: -0.2439489167091792 + artificial_uncertainty_5: 0.5900845113555326 + artificial_uncertainty_6: -0.007018154426159113 + artificial_uncertainty_7: -0.16023839351450042 + artificial_uncertainty_8: 0.13226173512411737 + artificial_uncertainty_9: -0.15657265749343963 + artificial_uncertainty_10: -1.4048557158872048 + artificial_uncertainty_11: -0.752994979075083 + artificial_uncertainty_12: -0.24707531221293477 + artificial_uncertainty_13: 0.7929195427878752 + artificial_uncertainty_14: -0.005616310818954766 + artificial_uncertainty_15: 0.28580583709143614 + artificial_uncertainty_16: 0.20321053376931172 + artificial_uncertainty_17: -0.4008589877685284 +- artificial_uncertainty_0: 51.84380226099936 + artificial_uncertainty_1: 2.629774359601825 + artificial_uncertainty_2: -0.7807531126974535 + artificial_uncertainty_3: 1.5026752029863317 + artificial_uncertainty_4: 0.27780156066277434 + artificial_uncertainty_5: 0.3267692617524154 + artificial_uncertainty_6: 0.8476400468811951 + artificial_uncertainty_7: 0.11510725359499212 + artificial_uncertainty_8: -0.09684020655712765 + artificial_uncertainty_9: 0.2655136702832111 + artificial_uncertainty_10: 0.05541453961951513 + artificial_uncertainty_11: -0.13330938920861532 + artificial_uncertainty_12: -0.7159418317641022 + artificial_uncertainty_13: 0.045800897098442435 + artificial_uncertainty_14: -1.1927946363595443 + artificial_uncertainty_15: -1.169269378218041 + artificial_uncertainty_16: -0.35091293898858356 + artificial_uncertainty_17: 0.059257645998052846 +- artificial_uncertainty_0: 51.752606939125855 + artificial_uncertainty_1: 2.5854543148877682 + artificial_uncertainty_2: -0.771638420267533 + artificial_uncertainty_3: 1.5382919940687176 + artificial_uncertainty_4: 0.23319296782425206 + artificial_uncertainty_5: 0.28501053235151935 + artificial_uncertainty_6: 0.829495211322914 + artificial_uncertainty_7: -0.0017962625945941375 + artificial_uncertainty_8: -0.08735476034333992 + artificial_uncertainty_9: 0.09185895625090157 + artificial_uncertainty_10: 0.08529573608173673 + artificial_uncertainty_11: 0.03060991390961602 + artificial_uncertainty_12: -0.5747246035809032 + artificial_uncertainty_13: -0.12746853009891315 + artificial_uncertainty_14: 0.6860699304585661 + artificial_uncertainty_15: 1.2231004132674708 + artificial_uncertainty_16: -0.953486272241458 + artificial_uncertainty_17: 0.5826570206798298 +- artificial_uncertainty_0: 51.642611874106485 + artificial_uncertainty_1: 2.539564835559986 + artificial_uncertainty_2: -0.7645708143539156 + artificial_uncertainty_3: 1.5170333972089494 + artificial_uncertainty_4: 0.16786019309749128 + artificial_uncertainty_5: 0.1977837203260947 + artificial_uncertainty_6: 0.6726842092738932 + artificial_uncertainty_7: -0.08370139577579717 + artificial_uncertainty_8: 0.1398297878998483 + artificial_uncertainty_9: -0.07377136335234177 + artificial_uncertainty_10: 0.32103779925306714 + artificial_uncertainty_11: 0.3763768145884513 + artificial_uncertainty_12: 0.13063730347485997 + artificial_uncertainty_13: -0.19649048333619587 + artificial_uncertainty_14: 0.4798126944604816 + artificial_uncertainty_15: 0.13574462767652856 + artificial_uncertainty_16: 1.161900220673676 + artificial_uncertainty_17: -1.3685916481328255 +- artificial_uncertainty_0: 51.94395797655955 + artificial_uncertainty_1: 2.483024644330231 + artificial_uncertainty_2: -0.8035692258388369 + artificial_uncertainty_3: 1.861521646139863 + artificial_uncertainty_4: 0.13182334539317578 + artificial_uncertainty_5: -0.8550608645198368 + artificial_uncertainty_6: -2.115458258190469 + artificial_uncertainty_7: 0.1575703505168898 + artificial_uncertainty_8: -0.11017129957760828 + artificial_uncertainty_9: 0.039302491188455864 + artificial_uncertainty_10: -0.05435982119111132 + artificial_uncertainty_11: -0.03538429278798993 + artificial_uncertainty_12: -0.5251976168017504 + artificial_uncertainty_13: -0.014627661752638264 + artificial_uncertainty_14: -0.018450192520800865 + artificial_uncertainty_15: 0.05069194080870239 + artificial_uncertainty_16: -0.08781571904990058 + artificial_uncertainty_17: -0.19754167629279695 - artificial_uncertainty_0: 51.42000401490351 - artificial_uncertainty_1: 2.35143012695353 - artificial_uncertainty_2: -0.775565639961086 - artificial_uncertainty_3: 1.660894113682204 - artificial_uncertainty_4: 0.04082330743335298 - artificial_uncertainty_5: -0.10686758253248037 - artificial_uncertainty_6: 0.04140448160553315 - artificial_uncertainty_7: -0.12755860518631182 - artificial_uncertainty_8: 0.049388010537744866 - artificial_uncertainty_9: -0.28409616075781174 - artificial_uncertainty_10: -0.2944781872754209 - artificial_uncertainty_11: -0.02814094540732831 - artificial_uncertainty_12: 1.7681113061225688 - artificial_uncertainty_13: 0.21654355676151774 - artificial_uncertainty_14: 0.009710739189382488 - artificial_uncertainty_15: -0.2564846104103216 - artificial_uncertainty_16: 0.1764848845897656 - artificial_uncertainty_17: 0.9086121005627082 -- artificial_uncertainty_0: 51.55980848657395 - artificial_uncertainty_1: -1.2720939980429307 - artificial_uncertainty_2: 3.5915943932158214 - artificial_uncertainty_3: -0.07977200077460188 - artificial_uncertainty_4: 0.23023665397845958 - artificial_uncertainty_5: -0.054587661615920345 - artificial_uncertainty_6: 0.011425553841612196 - artificial_uncertainty_7: 0.15509729896993607 - artificial_uncertainty_8: 0.5376224822697356 - artificial_uncertainty_9: 0.5488752628265385 - artificial_uncertainty_10: 0.0356756941577497 - artificial_uncertainty_11: 0.34269440609682633 - artificial_uncertainty_12: -0.6228017227080658 - artificial_uncertainty_13: 0.35414406727360365 - artificial_uncertainty_14: -0.19534492772123535 - artificial_uncertainty_15: 0.3044050553444993 - artificial_uncertainty_16: 1.2437856210243001 - artificial_uncertainty_17: 1.0474997953431777 -- artificial_uncertainty_0: 50.882458062313134 - artificial_uncertainty_1: -1.4053025554669747 - artificial_uncertainty_2: 3.7174677797415008 - artificial_uncertainty_3: -0.054846394588641205 - artificial_uncertainty_4: 0.12480487057708384 - artificial_uncertainty_5: -0.04351469762149026 - artificial_uncertainty_6: -0.05982755366827139 - artificial_uncertainty_7: 0.18277625425652497 - artificial_uncertainty_8: 1.1845252314753756 - artificial_uncertainty_9: 0.9519091520272903 - artificial_uncertainty_10: -0.04036981580852034 - artificial_uncertainty_11: 0.0011336117029926399 - artificial_uncertainty_12: 0.4427030622563478 - artificial_uncertainty_13: 0.14441106605130946 - artificial_uncertainty_14: 0.49757178901349686 - artificial_uncertainty_15: -0.4448607147713084 - artificial_uncertainty_16: -0.9295658550861242 - artificial_uncertainty_17: -0.6141131242819327 -- artificial_uncertainty_0: 50.60827321753994 - artificial_uncertainty_1: -1.5774533249926097 - artificial_uncertainty_2: 3.822412106802679 - artificial_uncertainty_3: -0.01655818514537164 - artificial_uncertainty_4: 0.006809570630092415 - artificial_uncertainty_5: 0.06098122192365729 - artificial_uncertainty_6: 0.06956506158784174 - artificial_uncertainty_7: -0.16250370546276074 - artificial_uncertainty_8: -1.3181313727892874 - artificial_uncertainty_9: -0.9695089244372344 - artificial_uncertainty_10: -0.011378908375226027 - artificial_uncertainty_11: 0.09982550271784184 - artificial_uncertainty_12: -0.2835517761086612 - artificial_uncertainty_13: 0.29113336560931197 - artificial_uncertainty_14: 0.8600184557127452 - artificial_uncertainty_15: -0.7498120246653475 - artificial_uncertainty_16: -0.13151861753018718 - artificial_uncertainty_17: 0.04393698558156042 -- artificial_uncertainty_0: 49.96021855312662 - artificial_uncertainty_1: -1.7120839021487744 - artificial_uncertainty_2: 3.8127314269501866 - artificial_uncertainty_3: 0.04447686289233714 - artificial_uncertainty_4: -0.1508749302775915 - artificial_uncertainty_5: 0.006708266908936186 - artificial_uncertainty_6: -0.027093588466566444 - artificial_uncertainty_7: -0.19579168130277408 - artificial_uncertainty_8: -0.35348497807140034 - artificial_uncertainty_9: -0.48430423837872355 - artificial_uncertainty_10: 0.02614532377605084 - artificial_uncertainty_11: -0.4084734151452482 - artificial_uncertainty_12: 0.43892436822373354 - artificial_uncertainty_13: -0.7679645749602825 - artificial_uncertainty_14: -1.1729714482717033 - artificial_uncertainty_15: 0.8954098549212145 - artificial_uncertainty_16: -0.15680990510322348 - artificial_uncertainty_17: -0.44411181773460245 -- artificial_uncertainty_0: 48.18178878151004 - artificial_uncertainty_1: -5.680195600241513 - artificial_uncertainty_2: -2.000321464178458 - artificial_uncertainty_3: -0.35597411395243006 - artificial_uncertainty_4: 1.3843129816956807 - artificial_uncertainty_5: 0.12565124626578736 - artificial_uncertainty_6: -0.027202680160454424 - artificial_uncertainty_7: 0.44578940344161944 - artificial_uncertainty_8: -1.2213190203984277 - artificial_uncertainty_9: 1.3949986238369543 - artificial_uncertainty_10: -0.08237835979018204 - artificial_uncertainty_11: -0.23920806860293445 - artificial_uncertainty_12: 0.3258162531908233 - artificial_uncertainty_13: -0.058948939659576996 - artificial_uncertainty_14: 0.07266776698831257 - artificial_uncertainty_15: 0.10622148504995287 - artificial_uncertainty_16: 0.15479032136832233 - artificial_uncertainty_17: -0.09252508552121635 -- artificial_uncertainty_0: 46.74983718751715 - artificial_uncertainty_1: -5.606166301490052 - artificial_uncertainty_2: -1.9406322141774068 - artificial_uncertainty_3: -0.24331869011304535 - artificial_uncertainty_4: 1.315168708068379 - artificial_uncertainty_5: 0.024120877575345864 - artificial_uncertainty_6: 0.054942888092412295 - artificial_uncertainty_7: 1.4290223626300578 - artificial_uncertainty_8: 0.7595117831013977 - artificial_uncertainty_9: -1.2631941792284185 - artificial_uncertainty_10: 0.030159137722764053 - artificial_uncertainty_11: 0.04947228416852103 - artificial_uncertainty_12: -0.09055036457864309 - artificial_uncertainty_13: 0.03483980980947077 - artificial_uncertainty_14: -0.0475660622513346 - artificial_uncertainty_15: 0.0008598078275100625 - artificial_uncertainty_16: -0.08345851675466916 - artificial_uncertainty_17: 0.002264694891812396 + artificial_uncertainty_1: 2.3514301269535283 + artificial_uncertainty_2: -0.7755656399610649 + artificial_uncertainty_3: 1.6608941136822324 + artificial_uncertainty_4: 0.04082330743322876 + artificial_uncertainty_5: -0.10686758253235261 + artificial_uncertainty_6: 0.041404481605382334 + artificial_uncertainty_7: -0.12755860518648723 + artificial_uncertainty_8: 0.04938801053717809 + artificial_uncertainty_9: -0.28409616075774086 + artificial_uncertainty_10: -0.29447818727532254 + artificial_uncertainty_11: -0.028140945405773755 + artificial_uncertainty_12: 1.7681113061236906 + artificial_uncertainty_13: 0.21654355676316775 + artificial_uncertainty_14: 0.00971073918870957 + artificial_uncertainty_15: -0.2564846104128544 + artificial_uncertainty_16: 0.17648488457246483 + artificial_uncertainty_17: 0.9086121005597568 +- artificial_uncertainty_0: 51.55980848657396 + artificial_uncertainty_1: -1.2720939980429304 + artificial_uncertainty_2: 3.5915943932158436 + artificial_uncertainty_3: -0.07977200077453535 + artificial_uncertainty_4: 0.2302366539785019 + artificial_uncertainty_5: -0.0545876616163395 + artificial_uncertainty_6: 0.011425553841772499 + artificial_uncertainty_7: 0.15509729896990726 + artificial_uncertainty_8: 0.537622482269758 + artificial_uncertainty_9: 0.5488752628280631 + artificial_uncertainty_10: 0.03567569415857174 + artificial_uncertainty_11: 0.3426944060970365 + artificial_uncertainty_12: -0.6228017227077675 + artificial_uncertainty_13: 0.3541440672663386 + artificial_uncertainty_14: -0.19534492771197806 + artificial_uncertainty_15: 0.30440505533704576 + artificial_uncertainty_16: 1.2437856210067788 + artificial_uncertainty_17: 1.0474997953375644 +- artificial_uncertainty_0: 50.88245806231314 + artificial_uncertainty_1: -1.405302555466966 + artificial_uncertainty_2: 3.717467779741494 + artificial_uncertainty_3: -0.054846394588569485 + artificial_uncertainty_4: 0.12480487057711812 + artificial_uncertainty_5: -0.04351469762152577 + artificial_uncertainty_6: -0.05982755366820403 + artificial_uncertainty_7: 0.18277625425666627 + artificial_uncertainty_8: 1.1845252314771457 + artificial_uncertainty_9: 0.9519091520307862 + artificial_uncertainty_10: -0.04036981580840095 + artificial_uncertainty_11: 0.001133611703657958 + artificial_uncertainty_12: 0.44270306225554296 + artificial_uncertainty_13: 0.1444110660513483 + artificial_uncertainty_14: 0.4975717890069793 + artificial_uncertainty_15: -0.4448607147630138 + artificial_uncertainty_16: -0.9295658550744887 + artificial_uncertainty_17: -0.6141131242759909 +- artificial_uncertainty_0: 50.60827321753995 + artificial_uncertainty_1: -1.5774533249926055 + artificial_uncertainty_2: 3.8224121068026764 + artificial_uncertainty_3: -0.01655818514536703 + artificial_uncertainty_4: 0.006809570630059408 + artificial_uncertainty_5: 0.0609812219237614 + artificial_uncertainty_6: 0.06956506158771412 + artificial_uncertainty_7: -0.16250370546285656 + artificial_uncertainty_8: -1.3181313727904158 + artificial_uncertainty_9: -0.9695089244411776 + artificial_uncertainty_10: -0.011378908374815875 + artificial_uncertainty_11: 0.09982550271928098 + artificial_uncertainty_12: -0.28355177610799376 + artificial_uncertainty_13: 0.29113336560817027 + artificial_uncertainty_14: 0.8600184557032385 + artificial_uncertainty_15: -0.7498120246524361 + artificial_uncertainty_16: -0.13151861752959068 + artificial_uncertainty_17: 0.043936985582430074 +- artificial_uncertainty_0: 49.96021855312663 + artificial_uncertainty_1: -1.7120839021487495 + artificial_uncertainty_2: 3.812731426950155 + artificial_uncertainty_3: 0.04447686289231519 + artificial_uncertainty_4: -0.1508749302776078 + artificial_uncertainty_5: 0.006708266909254365 + artificial_uncertainty_6: -0.027093588466675325 + artificial_uncertainty_7: -0.19579168130279379 + artificial_uncertainty_8: -0.35348497807203144 + artificial_uncertainty_9: -0.48430423837966424 + artificial_uncertainty_10: 0.026145323774775877 + artificial_uncertainty_11: -0.40847341514749475 + artificial_uncertainty_12: 0.438924368223565 + artificial_uncertainty_13: -0.7679645749522854 + artificial_uncertainty_14: -1.172971448264604 + artificial_uncertainty_15: 0.8954098549070756 + artificial_uncertainty_16: -0.15680990509845483 + artificial_uncertainty_17: -0.4441118177358385 +- artificial_uncertainty_0: 48.18178878151001 + artificial_uncertainty_1: -5.680195600241562 + artificial_uncertainty_2: -2.000321464178431 + artificial_uncertainty_3: -0.3559741139522648 + artificial_uncertainty_4: 1.384312981695711 + artificial_uncertainty_5: 0.12565124626508956 + artificial_uncertainty_6: -0.027202680159823613 + artificial_uncertainty_7: 0.44578940344165263 + artificial_uncertainty_8: -1.2213190203965445 + artificial_uncertainty_9: 1.3949986238334826 + artificial_uncertainty_10: -0.0823783597906693 + artificial_uncertainty_11: -0.23920806860329907 + artificial_uncertainty_12: 0.3258162531902002 + artificial_uncertainty_13: -0.05894893965907426 + artificial_uncertainty_14: 0.07266776698926376 + artificial_uncertainty_15: 0.10622148505176912 + artificial_uncertainty_16: 0.15479032136947873 + artificial_uncertainty_17: -0.09252508552259857 +- artificial_uncertainty_0: 46.74983718751716 + artificial_uncertainty_1: -5.6061663014900684 + artificial_uncertainty_2: -1.9406322141773933 + artificial_uncertainty_3: -0.24331869011305454 + artificial_uncertainty_4: 1.3151687080683916 + artificial_uncertainty_5: 0.02412087757501054 + artificial_uncertainty_6: 0.05494288809262248 + artificial_uncertainty_7: 1.429022362630007 + artificial_uncertainty_8: 0.7595117831002782 + artificial_uncertainty_9: -1.2631941792258696 + artificial_uncertainty_10: 0.030159137722800163 + artificial_uncertainty_11: 0.049472284168621324 + artificial_uncertainty_12: -0.09055036457848825 + artificial_uncertainty_13: 0.034839809809398804 + artificial_uncertainty_14: -0.04756606225136189 + artificial_uncertainty_15: 0.0008598078267390868 + artificial_uncertainty_16: -0.08345851675473841 + artificial_uncertainty_17: 0.002264694892606487 - artificial_uncertainty_0: 45.922573101771555 - artificial_uncertainty_1: -5.803763891571477 - artificial_uncertainty_2: -2.0135632255962945 - artificial_uncertainty_3: -0.07948437557561856 - artificial_uncertainty_4: 0.8171717304814435 - artificial_uncertainty_5: -0.18357756682658366 - artificial_uncertainty_6: -0.06213076784263642 - artificial_uncertainty_7: -2.067390688782234 - artificial_uncertainty_8: 0.49099739067156223 - artificial_uncertainty_9: -0.253257975851089 - artificial_uncertainty_10: 0.04408875138715765 - artificial_uncertainty_11: 0.1720242754610471 - artificial_uncertainty_12: -0.20443818656463913 - artificial_uncertainty_13: 0.026123440887403475 - artificial_uncertainty_14: -0.04785884201602571 - artificial_uncertainty_15: -0.08966006644430678 - artificial_uncertainty_16: -0.10172074341202185 - artificial_uncertainty_17: 0.053175360956870386 + artificial_uncertainty_1: -5.8037638915714505 + artificial_uncertainty_2: -2.013563225596308 + artificial_uncertainty_3: -0.07948437557570594 + artificial_uncertainty_4: 0.817171730481399 + artificial_uncertainty_5: -0.1835775668252919 + artificial_uncertainty_6: -0.06213076784363571 + artificial_uncertainty_7: -2.067390688782224 + artificial_uncertainty_8: 0.4909973906706664 + artificial_uncertainty_9: -0.25325797585013626 + artificial_uncertainty_10: 0.04408875138752645 + artificial_uncertainty_11: 0.17202427546134735 + artificial_uncertainty_12: -0.20443818656416068 + artificial_uncertainty_13: 0.026123440887260214 + artificial_uncertainty_14: -0.04785884201686669 + artificial_uncertainty_15: -0.08966006644560325 + artificial_uncertainty_16: -0.10172074341255216 + artificial_uncertainty_17: 0.05317536095754742 - artificial_uncertainty_0: 43.33407029996831 - artificial_uncertainty_1: -5.615408978596245 - artificial_uncertainty_2: -1.5970382334901074 - artificial_uncertainty_3: 0.5882866420048284 - artificial_uncertainty_4: -3.7449434405705206 - artificial_uncertainty_5: 0.03907224047091661 - artificial_uncertainty_6: 0.07595371845673811 - artificial_uncertainty_7: 0.2549540030430705 - artificial_uncertainty_8: 0.004144451696840792 - artificial_uncertainty_9: 0.13160657704245218 - artificial_uncertainty_10: 0.008366027216824154 - artificial_uncertainty_11: 0.013354432357043219 - artificial_uncertainty_12: -0.08592992771944856 - artificial_uncertainty_13: -0.018233653916824907 - artificial_uncertainty_14: 0.04570263407843522 - artificial_uncertainty_15: -0.03925580571644185 - artificial_uncertainty_16: 0.03164902475540362 - artificial_uncertainty_17: 0.04009689097774845 + artificial_uncertainty_1: -5.615408978596229 + artificial_uncertainty_2: -1.5970382334901523 + artificial_uncertainty_3: 0.588286642004657 + artificial_uncertainty_4: -3.744943440570509 + artificial_uncertainty_5: 0.03907224047061849 + artificial_uncertainty_6: 0.07595371845692017 + artificial_uncertainty_7: 0.2549540030430864 + artificial_uncertainty_8: 0.004144451696998113 + artificial_uncertainty_9: 0.13160657704253736 + artificial_uncertainty_10: 0.008366027216896154 + artificial_uncertainty_11: 0.013354432356859954 + artificial_uncertainty_12: -0.08592992771946545 + artificial_uncertainty_13: -0.018233653917298642 + artificial_uncertainty_14: 0.045702634078057205 + artificial_uncertainty_15: -0.039255805715833675 + artificial_uncertainty_16: 0.031649024754885305 + artificial_uncertainty_17: 0.04009689097775641 diff --git a/nnpdf_data/nnpdf_data/new_commondata/CMS_WPWM_13TEV_ETA/uncertainties_WP.yaml b/nnpdf_data/nnpdf_data/new_commondata/CMS_WPWM_13TEV_ETA/uncertainties_WP.yaml index 2f4cc9bc48..262d569313 100644 --- a/nnpdf_data/nnpdf_data/new_commondata/CMS_WPWM_13TEV_ETA/uncertainties_WP.yaml +++ b/nnpdf_data/nnpdf_data/new_commondata/CMS_WPWM_13TEV_ETA/uncertainties_WP.yaml @@ -72,327 +72,327 @@ definitions: treatment: ADD type: CORR bins: -- artificial_uncertainty_0: 61.20954821947229 - artificial_uncertainty_1: 3.4631780217640453 - artificial_uncertainty_2: 1.1485602217711561 - artificial_uncertainty_3: -1.6016987893636152 - artificial_uncertainty_4: -0.8469975567106671 - artificial_uncertainty_5: 0.0028652007471798497 - artificial_uncertainty_6: -0.42361580092071355 - artificial_uncertainty_7: -0.493858276113963 - artificial_uncertainty_8: 0.6162766818863519 - artificial_uncertainty_9: 0.754367901751051 - artificial_uncertainty_10: 0.06022817244935292 - artificial_uncertainty_11: 1.7298022793112093 - artificial_uncertainty_12: 0.8116903270558 - artificial_uncertainty_13: -0.133451176152109 - artificial_uncertainty_14: -0.029364892651862 - artificial_uncertainty_15: -0.11282688282081327 - artificial_uncertainty_16: 0.4271707752005249 - artificial_uncertainty_17: -0.015149828295812585 -- artificial_uncertainty_0: 61.5681004350674 - artificial_uncertainty_1: 3.5660183753365886 - artificial_uncertainty_2: 1.0701346745701827 - artificial_uncertainty_3: -1.369222129944253 - artificial_uncertainty_4: -0.6108327571851493 - artificial_uncertainty_5: -0.009880788126717567 - artificial_uncertainty_6: -0.15900857362907256 - artificial_uncertainty_7: -0.6670100364959416 - artificial_uncertainty_8: 0.5697900995895295 - artificial_uncertainty_9: 0.36615491593280924 - artificial_uncertainty_10: -0.033882134674444016 - artificial_uncertainty_11: -0.0804542611900731 - artificial_uncertainty_12: -2.1056949857844818 - artificial_uncertainty_13: 0.37483846309172447 - artificial_uncertainty_14: 0.04909709520810716 - artificial_uncertainty_15: 0.0565241948104236 - artificial_uncertainty_16: -0.5084540839111431 - artificial_uncertainty_17: -0.05593831146478384 -- artificial_uncertainty_0: 61.90816921024331 - artificial_uncertainty_1: 3.596490934769238 - artificial_uncertainty_2: 1.1359907896014152 - artificial_uncertainty_3: -1.7931635819326506 - artificial_uncertainty_4: -0.9171112447146827 - artificial_uncertainty_5: 0.062234921132078014 - artificial_uncertainty_6: 1.1148842138524542 - artificial_uncertainty_7: 2.0866006341807095 - artificial_uncertainty_8: -1.5631217738939267 - artificial_uncertainty_9: 0.06447676640948406 - artificial_uncertainty_10: -0.039687254554287295 - artificial_uncertainty_11: -0.02128212722993848 - artificial_uncertainty_12: -0.06241074517083801 - artificial_uncertainty_13: -0.04077623538272811 - artificial_uncertainty_14: 0.00660879733146414 - artificial_uncertainty_15: -0.0076022271388892886 - artificial_uncertainty_16: 0.02547360993378865 - artificial_uncertainty_17: -0.003702953602020416 -- artificial_uncertainty_0: 62.05364019931863 - artificial_uncertainty_1: 3.507627472948081 - artificial_uncertainty_2: 1.082729221460745 - artificial_uncertainty_3: -1.3437455047636953 - artificial_uncertainty_4: -0.7014294671066382 - artificial_uncertainty_5: 0.031175760717302495 - artificial_uncertainty_6: -0.19122914662073573 - artificial_uncertainty_7: -0.5658877529204356 - artificial_uncertainty_8: 0.5948891307434057 - artificial_uncertainty_9: 0.7422462054744517 - artificial_uncertainty_10: 0.051344479168760275 - artificial_uncertainty_11: -1.7688681800374242 - artificial_uncertainty_12: 0.9821784070555286 - artificial_uncertainty_13: -0.22591731781340044 - artificial_uncertainty_14: -0.05906924676383789 - artificial_uncertainty_15: 0.027282805325620035 - artificial_uncertainty_16: 0.021729155557229644 - artificial_uncertainty_17: 0.04388059524764231 -- artificial_uncertainty_0: 61.93864029399742 - artificial_uncertainty_1: 3.479409715750417 - artificial_uncertainty_2: 1.0295160654244564 - artificial_uncertainty_3: -1.199920161071742 - artificial_uncertainty_4: -0.6466599057949136 - artificial_uncertainty_5: 0.04258350690977393 - artificial_uncertainty_6: -0.08070160665135462 - artificial_uncertainty_7: -0.5101988525510991 - artificial_uncertainty_8: 0.44917237872077126 - artificial_uncertainty_9: -2.096339393657458 - artificial_uncertainty_10: 0.04706508893478408 - artificial_uncertainty_11: 0.002032007663018208 - artificial_uncertainty_12: 0.2638664078978069 - artificial_uncertainty_13: -0.2256911581364362 - artificial_uncertainty_14: -0.0346513299410565 - artificial_uncertainty_15: 0.08534284757403457 - artificial_uncertainty_16: 0.024354917726060642 - artificial_uncertainty_17: 0.01035020220730027 -- artificial_uncertainty_0: 62.188119192763644 - artificial_uncertainty_1: 3.491793697435423 - artificial_uncertainty_2: 1.0418285167971082 - artificial_uncertainty_3: 1.2439094163731508 - artificial_uncertainty_4: 0.6696347064339799 - artificial_uncertainty_5: -0.08141495367302272 - artificial_uncertainty_6: -0.36194274917681984 - artificial_uncertainty_7: -0.41920568242202755 - artificial_uncertainty_8: -0.7785813880596288 - artificial_uncertainty_9: -0.06185620744865632 - artificial_uncertainty_10: -0.06822076840506903 - artificial_uncertainty_11: -0.1633145615652479 - artificial_uncertainty_12: -0.04789735017032935 - artificial_uncertainty_13: 0.8985049014836151 - artificial_uncertainty_14: 0.27217700661789784 - artificial_uncertainty_15: -1.2492603657246626 - artificial_uncertainty_16: 1.0072980960079714 - artificial_uncertainty_17: -1.3999486925728386 -- artificial_uncertainty_0: 62.66206975625858 - artificial_uncertainty_1: 3.4808813549357165 - artificial_uncertainty_2: 1.0122727163933807 - artificial_uncertainty_3: 1.284021999839381 - artificial_uncertainty_4: 0.6598323086209048 - artificial_uncertainty_5: -0.043848621832817805 - artificial_uncertainty_6: -0.17977412681934524 - artificial_uncertainty_7: -0.39072273630572313 - artificial_uncertainty_8: -0.673205654373264 - artificial_uncertainty_9: -0.0013658816039431537 - artificial_uncertainty_10: -0.03668418095040949 - artificial_uncertainty_11: 0.023654258590047942 - artificial_uncertainty_12: 0.0462015082827753 - artificial_uncertainty_13: 0.5957412133813373 - artificial_uncertainty_14: 0.10465649081020727 - artificial_uncertainty_15: -0.663244201770895 - artificial_uncertainty_16: 0.05073779370373069 - artificial_uncertainty_17: 2.1508378668782964 -- artificial_uncertainty_0: 62.79070733767891 - artificial_uncertainty_1: 3.4453722681051686 - artificial_uncertainty_2: 0.9896640088310129 - artificial_uncertainty_3: 1.3684803201776692 - artificial_uncertainty_4: 0.6898494035773756 - artificial_uncertainty_5: -0.019074691802797705 - artificial_uncertainty_6: -0.03852048018542928 - artificial_uncertainty_7: -0.4778886828124038 - artificial_uncertainty_8: -0.7350464845836572 - artificial_uncertainty_9: 0.09255297133465828 - artificial_uncertainty_10: -0.052017761917241334 - artificial_uncertainty_11: 0.07670658198921154 - artificial_uncertainty_12: 0.0919290059043676 - artificial_uncertainty_13: 0.3667463771558463 - artificial_uncertainty_14: 0.12628730368876562 - artificial_uncertainty_15: 2.2998939410321375 - artificial_uncertainty_16: 0.28651194693191184 - artificial_uncertainty_17: -0.2388859829898592 -- artificial_uncertainty_0: 63.81615432570506 - artificial_uncertainty_1: 3.420412499337465 - artificial_uncertainty_2: 1.065630127873797 - artificial_uncertainty_3: 1.9207457260579655 - artificial_uncertainty_4: 0.8399992800172977 - artificial_uncertainty_5: -0.006072415874370133 - artificial_uncertainty_6: 0.26593303910844385 - artificial_uncertainty_7: 1.7667579831987583 - artificial_uncertainty_8: 2.142114942359207 - artificial_uncertainty_9: -0.00385412495735997 - artificial_uncertainty_10: -0.08262269698148066 - artificial_uncertainty_11: 0.01279318547115537 - artificial_uncertainty_12: -0.013486375257497605 - artificial_uncertainty_13: 0.14979948129162288 - artificial_uncertainty_14: 0.04660150740422922 - artificial_uncertainty_15: 0.014350286914683085 - artificial_uncertainty_16: 0.044027099106573785 - artificial_uncertainty_17: -0.042435858291501954 -- artificial_uncertainty_0: 64.05552295798917 - artificial_uncertainty_1: 3.342550812383666 - artificial_uncertainty_2: 1.014836450065163 - artificial_uncertainty_3: 1.6674274969818526 - artificial_uncertainty_4: 0.6348795481631484 - artificial_uncertainty_5: 0.06421994196210078 - artificial_uncertainty_6: 0.090668455946017 - artificial_uncertainty_7: -0.40166749243902683 - artificial_uncertainty_8: -0.6120327381672772 - artificial_uncertainty_9: 0.13292947180463457 - artificial_uncertainty_10: 0.20818416500366108 - artificial_uncertainty_11: 0.1930241276468974 - artificial_uncertainty_12: 0.011321588159755923 - artificial_uncertainty_13: -1.8173621107296665 - artificial_uncertainty_14: -0.5255908659801107 - artificial_uncertainty_15: -0.4387636497227029 - artificial_uncertainty_16: -1.282213585059042 - artificial_uncertainty_17: -0.43319813905761945 -- artificial_uncertainty_0: 64.81568676388986 - artificial_uncertainty_1: -0.9125627985488275 - artificial_uncertainty_2: -4.303970421071857 - artificial_uncertainty_3: -0.236228756924518 - artificial_uncertainty_4: 0.12663670927255835 - artificial_uncertainty_5: -0.0498309686530781 - artificial_uncertainty_6: -0.006385001377937796 - artificial_uncertainty_7: -0.024446664935525355 - artificial_uncertainty_8: -0.040772747685092335 - artificial_uncertainty_9: -0.016035960415917427 - artificial_uncertainty_10: -0.4170174375571463 - artificial_uncertainty_11: 0.14295241873148476 - artificial_uncertainty_12: 0.5123909604314569 - artificial_uncertainty_13: 0.791660441727676 - artificial_uncertainty_14: 1.5749655188551068 - artificial_uncertainty_15: -0.08264101749491731 - artificial_uncertainty_16: -1.4825074919716505 - artificial_uncertainty_17: -0.27272761443575516 -- artificial_uncertainty_0: 64.887528833623 - artificial_uncertainty_1: -1.0582302163876995 - artificial_uncertainty_2: -4.539914935174895 - artificial_uncertainty_3: -0.11707813955765049 - artificial_uncertainty_4: 0.045123474696506086 - artificial_uncertainty_5: -0.010035472205039355 - artificial_uncertainty_6: -0.13042412084304683 - artificial_uncertainty_7: 0.005975171794749262 - artificial_uncertainty_8: -0.02430234104742357 - artificial_uncertainty_9: -0.008931790993713724 - artificial_uncertainty_10: -1.9309844122077338 - artificial_uncertainty_11: 0.0010014829320254158 - artificial_uncertainty_12: 0.013017033705436349 - artificial_uncertainty_13: 0.2284402999040184 - artificial_uncertainty_14: -1.6566666400673002 - artificial_uncertainty_15: 0.0010408141805305286 - artificial_uncertainty_16: 0.08833666335844825 - artificial_uncertainty_17: -0.015343973605600227 -- artificial_uncertainty_0: 65.36953299431931 - artificial_uncertainty_1: -1.1656426838404008 - artificial_uncertainty_2: -4.664277826751208 - artificial_uncertainty_3: 0.013778996332237855 - artificial_uncertainty_4: -0.0395329386644554 - artificial_uncertainty_5: 0.035258998354483595 - artificial_uncertainty_6: 0.120319143605721 - artificial_uncertainty_7: 0.054374323191566404 - artificial_uncertainty_8: 0.024721691324393127 - artificial_uncertainty_9: -0.0022782198374037533 - artificial_uncertainty_10: 2.3304205032780745 - artificial_uncertainty_11: 0.004159726206552747 - artificial_uncertainty_12: 0.017464200716702946 - artificial_uncertainty_13: 0.5450735497413782 - artificial_uncertainty_14: -0.9980657991629887 - artificial_uncertainty_15: 0.021790541229291863 - artificial_uncertainty_16: -0.017875240786412012 - artificial_uncertainty_17: -0.03399291101653286 -- artificial_uncertainty_0: 65.86670557601263 - artificial_uncertainty_1: -1.2920347918337143 - artificial_uncertainty_2: -4.687022450665673 - artificial_uncertainty_3: 0.1495306935342141 - artificial_uncertainty_4: -0.1149081125444538 - artificial_uncertainty_5: 0.07538790182989709 - artificial_uncertainty_6: 0.01141449674724155 - artificial_uncertainty_7: -0.007355025195196888 - artificial_uncertainty_8: 0.04392539754133725 - artificial_uncertainty_9: 0.050286454760456296 - artificial_uncertainty_10: -0.05356716574424035 - artificial_uncertainty_11: -0.12049538346804821 - artificial_uncertainty_12: -0.5020357167109882 - artificial_uncertainty_13: -1.48726470676773 - artificial_uncertainty_14: 1.1374439892915038 - artificial_uncertainty_15: 0.03682617658814318 - artificial_uncertainty_16: 1.3286220069372896 - artificial_uncertainty_17: 0.2960143652853735 -- artificial_uncertainty_0: 65.22467994686865 - artificial_uncertainty_1: -6.834720655619163 - artificial_uncertainty_2: 2.0137357674507004 - artificial_uncertainty_3: -0.9523430976856941 - artificial_uncertainty_4: 1.2745916719396722 - artificial_uncertainty_5: 0.4101444884201686 - artificial_uncertainty_6: -2.525492186919295 - artificial_uncertainty_7: 0.9092689295612265 - artificial_uncertainty_8: -0.33123162367718917 - artificial_uncertainty_9: -0.06622784886627743 - artificial_uncertainty_10: 0.14530118283221438 - artificial_uncertainty_11: -0.08793775821074384 - artificial_uncertainty_12: -0.07966494434820715 - artificial_uncertainty_13: -0.16937484033804664 - artificial_uncertainty_14: -0.01779228768517459 - artificial_uncertainty_15: 0.1207276762175664 - artificial_uncertainty_16: -0.12465065115220428 - artificial_uncertainty_17: 0.025570149341818463 -- artificial_uncertainty_0: 65.58219520551054 - artificial_uncertainty_1: -6.87060288470269 - artificial_uncertainty_2: 1.9319378882674234 - artificial_uncertainty_3: -0.8355312355061383 - artificial_uncertainty_4: 1.6388151174451404 - artificial_uncertainty_5: -2.6624645912033644 - artificial_uncertainty_6: 1.0387730901951244 - artificial_uncertainty_7: -0.3275833639284439 - artificial_uncertainty_8: 0.14141309382644202 - artificial_uncertainty_9: 0.01300509577709913 - artificial_uncertainty_10: 0.0037970808888448193 - artificial_uncertainty_11: 0.024491482948577434 - artificial_uncertainty_12: 0.027301004718910442 - artificial_uncertainty_13: -0.06515369453056923 - artificial_uncertainty_14: -0.02505751210358211 - artificial_uncertainty_15: -0.03448152431350989 - artificial_uncertainty_16: 0.08357681048406769 - artificial_uncertainty_17: 0.003234764581120553 -- artificial_uncertainty_0: 66.94635540981348 - artificial_uncertainty_1: -7.384048775630771 - artificial_uncertainty_2: 2.1136036244380536 - artificial_uncertainty_3: -0.3662617860829606 - artificial_uncertainty_4: 1.1027709363678275 - artificial_uncertainty_5: 2.449444796091666 - artificial_uncertainty_6: 1.4942962942028606 - artificial_uncertainty_7: -0.5580646526155429 - artificial_uncertainty_8: 0.20362973118589311 - artificial_uncertainty_9: 0.0442161268968122 - artificial_uncertainty_10: -0.08641397361130082 - artificial_uncertainty_11: 0.05768610817028523 - artificial_uncertainty_12: 0.04217230025951712 - artificial_uncertainty_13: 0.13213781896958876 - artificial_uncertainty_14: 0.010322317459905778 - artificial_uncertainty_15: -0.08506567727896662 - artificial_uncertainty_16: 0.09978018927239245 - artificial_uncertainty_17: -0.015473842399943375 -- artificial_uncertainty_0: 65.67348137747057 - artificial_uncertainty_1: -7.484238442749132 - artificial_uncertainty_2: 1.9304945484892 - artificial_uncertainty_3: 2.002652532529639 - artificial_uncertainty_4: -3.900999409338331 - artificial_uncertainty_5: -0.33836833024952867 - artificial_uncertainty_6: -0.09442439832174068 - artificial_uncertainty_7: 0.0006040497938500234 - artificial_uncertainty_8: -0.047219571378345405 - artificial_uncertainty_9: -0.001675091708567737 - artificial_uncertainty_10: -0.05976948007157384 - artificial_uncertainty_11: -0.010536095137105045 - artificial_uncertainty_12: -0.008645864361522553 - artificial_uncertainty_13: 0.13551179589700987 - artificial_uncertainty_14: 0.019903444663291588 - artificial_uncertainty_15: 0.007082637625152882 - artificial_uncertainty_16: -0.05757420705717694 - artificial_uncertainty_17: -0.007146655167825561 +- artificial_uncertainty_0: 61.20954821947225 + artificial_uncertainty_1: 3.4631780217640147 + artificial_uncertainty_2: 1.1485602217711357 + artificial_uncertainty_3: -1.6016987893632835 + artificial_uncertainty_4: -0.8469975567107535 + artificial_uncertainty_5: 0.0028652007470494952 + artificial_uncertainty_6: -0.42361580092045953 + artificial_uncertainty_7: -0.4938582761132074 + artificial_uncertainty_8: 0.6162766818861626 + artificial_uncertainty_9: 0.7543679017540647 + artificial_uncertainty_10: 0.06022817244933738 + artificial_uncertainty_11: 1.7298022793129553 + artificial_uncertainty_12: 0.8116903270485135 + artificial_uncertainty_13: -0.13345117615100233 + artificial_uncertainty_14: -0.029364892651785594 + artificial_uncertainty_15: -0.11282688281984654 + artificial_uncertainty_16: 0.42717077519795504 + artificial_uncertainty_17: -0.015149828296028577 +- artificial_uncertainty_0: 61.56810043506737 + artificial_uncertainty_1: 3.566018375336605 + artificial_uncertainty_2: 1.0701346745701725 + artificial_uncertainty_3: -1.3692221299442242 + artificial_uncertainty_4: -0.6108327571853303 + artificial_uncertainty_5: -0.00988078812679135 + artificial_uncertainty_6: -0.1590085736295207 + artificial_uncertainty_7: -0.6670100364952197 + artificial_uncertainty_8: 0.5697900995901225 + artificial_uncertainty_9: 0.3661549159312993 + artificial_uncertainty_10: -0.033882134674304315 + artificial_uncertainty_11: -0.08045426119795716 + artificial_uncertainty_12: -2.105694985787924 + artificial_uncertainty_13: 0.3748384630910391 + artificial_uncertainty_14: 0.04909709520839034 + artificial_uncertainty_15: 0.05652419480972125 + artificial_uncertainty_16: -0.5084540839089613 + artificial_uncertainty_17: -0.05593831146414021 +- artificial_uncertainty_0: 61.90816921024328 + artificial_uncertainty_1: 3.596490934769212 + artificial_uncertainty_2: 1.1359907896014407 + artificial_uncertainty_3: -1.7931635819325256 + artificial_uncertainty_4: -0.9171112447148297 + artificial_uncertainty_5: 0.062234921132436886 + artificial_uncertainty_6: 1.1148842138531023 + artificial_uncertainty_7: 2.086600634178469 + artificial_uncertainty_8: -1.5631217738948489 + artificial_uncertainty_9: 0.06447676640928067 + artificial_uncertainty_10: -0.03968725455426186 + artificial_uncertainty_11: -0.021282127230847145 + artificial_uncertainty_12: -0.062410745171388116 + artificial_uncertainty_13: -0.04077623538250044 + artificial_uncertainty_14: 0.006608797331360714 + artificial_uncertainty_15: -0.007602227138802526 + artificial_uncertainty_16: 0.025473609933420963 + artificial_uncertainty_17: -0.003702953601900143 +- artificial_uncertainty_0: 62.053640199318615 + artificial_uncertainty_1: 3.5076274729480765 + artificial_uncertainty_2: 1.0827292214607493 + artificial_uncertainty_3: -1.3437455047635625 + artificial_uncertainty_4: -0.7014294671068527 + artificial_uncertainty_5: 0.031175760717123427 + artificial_uncertainty_6: -0.19122914662088233 + artificial_uncertainty_7: -0.5658877529196953 + artificial_uncertainty_8: 0.5948891307437845 + artificial_uncertainty_9: 0.7422462054726496 + artificial_uncertainty_10: 0.05134447916875898 + artificial_uncertainty_11: -1.7688681800350143 + artificial_uncertainty_12: 0.9821784070663242 + artificial_uncertainty_13: -0.22591731781388988 + artificial_uncertainty_14: -0.0590692467640036 + artificial_uncertainty_15: 0.027282805325410543 + artificial_uncertainty_16: 0.021729155557873813 + artificial_uncertainty_17: 0.043880595247599546 +- artificial_uncertainty_0: 61.93864029399741 + artificial_uncertainty_1: 3.4794097157504265 + artificial_uncertainty_2: 1.0295160654244473 + artificial_uncertainty_3: -1.1999201610717203 + artificial_uncertainty_4: -0.6466599057950735 + artificial_uncertainty_5: 0.04258350690976451 + artificial_uncertainty_6: -0.08070160665158724 + artificial_uncertainty_7: -0.5101988525505226 + artificial_uncertainty_8: 0.44917237872108456 + artificial_uncertainty_9: -2.096339393657105 + artificial_uncertainty_10: 0.047065088934631544 + artificial_uncertainty_11: 0.0020320076678195706 + artificial_uncertainty_12: 0.2638664078992045 + artificial_uncertainty_13: -0.22569115813638582 + artificial_uncertainty_14: -0.03465132994161944 + artificial_uncertainty_15: 0.08534284757376336 + artificial_uncertainty_16: 0.024354917726357013 + artificial_uncertainty_17: 0.010350202206779804 +- artificial_uncertainty_0: 62.188119192763615 + artificial_uncertainty_1: 3.4917936974354564 + artificial_uncertainty_2: 1.0418285167971173 + artificial_uncertainty_3: 1.243909416372976 + artificial_uncertainty_4: 0.6696347064340293 + artificial_uncertainty_5: -0.08141495367314723 + artificial_uncertainty_6: -0.3619427491773665 + artificial_uncertainty_7: -0.4192056824231903 + artificial_uncertainty_8: -0.7785813880591748 + artificial_uncertainty_9: -0.06185620744905632 + artificial_uncertainty_10: -0.06822076840527606 + artificial_uncertainty_11: -0.16331456156288063 + artificial_uncertainty_12: -0.04789735015514205 + artificial_uncertainty_13: 0.8985049014844868 + artificial_uncertainty_14: 0.2721770066193274 + artificial_uncertainty_15: -1.2492603657226489 + artificial_uncertainty_16: 1.007298096005158 + artificial_uncertainty_17: -1.399948692572052 +- artificial_uncertainty_0: 62.66206975625856 + artificial_uncertainty_1: 3.4808813549356987 + artificial_uncertainty_2: 1.0122727163934153 + artificial_uncertainty_3: 1.284021999839309 + artificial_uncertainty_4: 0.6598323086210922 + artificial_uncertainty_5: -0.043848621832674635 + artificial_uncertainty_6: -0.17977412681953786 + artificial_uncertainty_7: -0.39072273630627924 + artificial_uncertainty_8: -0.6732056543729478 + artificial_uncertainty_9: -0.001365881603931226 + artificial_uncertainty_10: -0.036684180950230606 + artificial_uncertainty_11: 0.02365425858924621 + artificial_uncertainty_12: 0.04620150827444925 + artificial_uncertainty_13: 0.5957412133808985 + artificial_uncertainty_14: 0.10465649081080017 + artificial_uncertainty_15: -0.6632442017712681 + artificial_uncertainty_16: 0.05073779371092439 + artificial_uncertainty_17: 2.150837866878486 +- artificial_uncertainty_0: 62.790707337678896 + artificial_uncertainty_1: 3.4453722681051606 + artificial_uncertainty_2: 0.9896640088310111 + artificial_uncertainty_3: 1.3684803201775448 + artificial_uncertainty_4: 0.6898494035774295 + artificial_uncertainty_5: -0.01907469180273139 + artificial_uncertainty_6: -0.038520480185664285 + artificial_uncertainty_7: -0.47788868281313096 + artificial_uncertainty_8: -0.7350464845835089 + artificial_uncertainty_9: 0.09255297133478417 + artificial_uncertainty_10: -0.0520177619169812 + artificial_uncertainty_11: 0.07670658198882808 + artificial_uncertainty_12: 0.09192900590431029 + artificial_uncertainty_13: 0.36674637715524183 + artificial_uncertainty_14: 0.12628730368977328 + artificial_uncertainty_15: 2.299893941032722 + artificial_uncertainty_16: 0.28651194692832027 + artificial_uncertainty_17: -0.2388859829900618 +- artificial_uncertainty_0: 63.81615432570503 + artificial_uncertainty_1: 3.420412499337462 + artificial_uncertainty_2: 1.0656301278737648 + artificial_uncertainty_3: 1.920745726057772 + artificial_uncertainty_4: 0.8399992800175984 + artificial_uncertainty_5: -0.006072415874315574 + artificial_uncertainty_6: 0.2659330391099528 + artificial_uncertainty_7: 1.7667579832011073 + artificial_uncertainty_8: 2.142114942358327 + artificial_uncertainty_9: -0.003854124957375697 + artificial_uncertainty_10: -0.08262269698162021 + artificial_uncertainty_11: 0.01279318547112822 + artificial_uncertainty_12: -0.013486375257664779 + artificial_uncertainty_13: 0.1497994812917444 + artificial_uncertainty_14: 0.0466015074048091 + artificial_uncertainty_15: 0.014350286914845497 + artificial_uncertainty_16: 0.044027099105862645 + artificial_uncertainty_17: -0.04243585829166003 +- artificial_uncertainty_0: 64.05552295798915 + artificial_uncertainty_1: 3.342550812383657 + artificial_uncertainty_2: 1.0148364500651876 + artificial_uncertainty_3: 1.6674274969817802 + artificial_uncertainty_4: 0.6348795481633847 + artificial_uncertainty_5: 0.06421994196199136 + artificial_uncertainty_6: 0.09066845594536736 + artificial_uncertainty_7: -0.40166749243950184 + artificial_uncertainty_8: -0.6120327381674929 + artificial_uncertainty_9: 0.13292947180505607 + artificial_uncertainty_10: 0.2081841650035929 + artificial_uncertainty_11: 0.19302412764567967 + artificial_uncertainty_12: 0.011321588152981326 + artificial_uncertainty_13: -1.8173621107295928 + artificial_uncertainty_14: -0.525590865983373 + artificial_uncertainty_15: -0.4387636497248621 + artificial_uncertainty_16: -1.2822135850591911 + artificial_uncertainty_17: -0.4331981390581493 +- artificial_uncertainty_0: 64.81568676388981 + artificial_uncertainty_1: -0.9125627985488501 + artificial_uncertainty_2: -4.303970421071895 + artificial_uncertainty_3: -0.23622875692428122 + artificial_uncertainty_4: 0.12663670927265933 + artificial_uncertainty_5: -0.04983096865324015 + artificial_uncertainty_6: -0.006385001377960304 + artificial_uncertainty_7: -0.024446664934776426 + artificial_uncertainty_8: -0.04077274768501214 + artificial_uncertainty_9: -0.016035960415045267 + artificial_uncertainty_10: -0.41701743755760945 + artificial_uncertainty_11: 0.14295241873131528 + artificial_uncertainty_12: 0.5123909604169314 + artificial_uncertainty_13: 0.7916604417219525 + artificial_uncertainty_14: 1.574965518856696 + artificial_uncertainty_15: -0.08264101749600551 + artificial_uncertainty_16: -1.4825074919742136 + artificial_uncertainty_17: -0.2727276144367778 +- artificial_uncertainty_0: 64.88752883362298 + artificial_uncertainty_1: -1.058230216387635 + artificial_uncertainty_2: -4.5399149351748935 + artificial_uncertainty_3: -0.11707813955802451 + artificial_uncertainty_4: 0.045123474696285575 + artificial_uncertainty_5: -0.010035472205219472 + artificial_uncertainty_6: -0.13042412084287605 + artificial_uncertainty_7: 0.005975171793278631 + artificial_uncertainty_8: -0.024302341045182363 + artificial_uncertainty_9: -0.008931790994197457 + artificial_uncertainty_10: -1.9309844122076452 + artificial_uncertainty_11: 0.0010014829326475561 + artificial_uncertainty_12: 0.013017033712164195 + artificial_uncertainty_13: 0.22844029990655154 + artificial_uncertainty_14: -1.6566666400670123 + artificial_uncertainty_15: 0.0010408141796567536 + artificial_uncertainty_16: 0.08833666336040528 + artificial_uncertainty_17: -0.015343973605410344 +- artificial_uncertainty_0: 65.36953299431927 + artificial_uncertainty_1: -1.1656426838403924 + artificial_uncertainty_2: -4.6642778267512295 + artificial_uncertainty_3: 0.013778996332459341 + artificial_uncertainty_4: -0.03953293866441648 + artificial_uncertainty_5: 0.035258998354460246 + artificial_uncertainty_6: 0.12031914360591074 + artificial_uncertainty_7: 0.0543743231923964 + artificial_uncertainty_8: 0.02472169132250695 + artificial_uncertainty_9: -0.0022782198374254985 + artificial_uncertainty_10: 2.3304205032780616 + artificial_uncertainty_11: 0.004159726206407823 + artificial_uncertainty_12: 0.017464200715647707 + artificial_uncertainty_13: 0.5450735497455167 + artificial_uncertainty_14: -0.9980657991618325 + artificial_uncertainty_15: 0.021790541229271577 + artificial_uncertainty_16: -0.017875240786894352 + artificial_uncertainty_17: -0.03399291101645208 +- artificial_uncertainty_0: 65.8667055760126 + artificial_uncertainty_1: -1.2920347918336914 + artificial_uncertainty_2: -4.687022450665622 + artificial_uncertainty_3: 0.1495306935341632 + artificial_uncertainty_4: -0.1149081125444478 + artificial_uncertainty_5: 0.07538790183027466 + artificial_uncertainty_6: 0.011414496746952583 + artificial_uncertainty_7: -0.0073550251952846915 + artificial_uncertainty_8: 0.04392539754095723 + artificial_uncertainty_9: 0.050286454760158035 + artificial_uncertainty_10: -0.053567165743881866 + artificial_uncertainty_11: -0.12049538346840033 + artificial_uncertainty_12: -0.5020357167029854 + artificial_uncertainty_13: -1.4872647067689286 + artificial_uncertainty_14: 1.1374439892886308 + artificial_uncertainty_15: 0.03682617659005451 + artificial_uncertainty_16: 1.3286220069381813 + artificial_uncertainty_17: 0.29601436528605846 +- artificial_uncertainty_0: 65.22467994686862 + artificial_uncertainty_1: -6.834720655619154 + artificial_uncertainty_2: 2.0137357674507577 + artificial_uncertainty_3: -0.9523430976859638 + artificial_uncertainty_4: 1.2745916719394574 + artificial_uncertainty_5: 0.4101444884204508 + artificial_uncertainty_6: -2.5254921869189153 + artificial_uncertainty_7: 0.9092689295618648 + artificial_uncertainty_8: -0.33123162367803616 + artificial_uncertainty_9: -0.06622784886656415 + artificial_uncertainty_10: 0.14530118283243246 + artificial_uncertainty_11: -0.08793775821108163 + artificial_uncertainty_12: -0.07966494434824818 + artificial_uncertainty_13: -0.169374840337866 + artificial_uncertainty_14: -0.017792287685468897 + artificial_uncertainty_15: 0.12072767621748805 + artificial_uncertainty_16: -0.12465065115186161 + artificial_uncertainty_17: 0.025570149341718303 +- artificial_uncertainty_0: 65.58219520551053 + artificial_uncertainty_1: -6.870602884702714 + artificial_uncertainty_2: 1.9319378882674099 + artificial_uncertainty_3: -0.835531235506241 + artificial_uncertainty_4: 1.6388151174452052 + artificial_uncertainty_5: -2.6624645912034732 + artificial_uncertainty_6: 1.0387730901946577 + artificial_uncertainty_7: -0.3275833639288583 + artificial_uncertainty_8: 0.14141309382661144 + artificial_uncertainty_9: 0.013005095777181104 + artificial_uncertainty_10: 0.003797080888832187 + artificial_uncertainty_11: 0.02449148294883119 + artificial_uncertainty_12: 0.027301004719129458 + artificial_uncertainty_13: -0.0651536945303103 + artificial_uncertainty_14: -0.025057512103618593 + artificial_uncertainty_15: -0.03448152431349454 + artificial_uncertainty_16: 0.08357681048394278 + artificial_uncertainty_17: 0.0032347645808898364 +- artificial_uncertainty_0: 66.94635540981346 + artificial_uncertainty_1: -7.384048775630785 + artificial_uncertainty_2: 2.113603624438047 + artificial_uncertainty_3: -0.3662617860832457 + artificial_uncertainty_4: 1.1027709363677425 + artificial_uncertainty_5: 2.449444796091467 + artificial_uncertainty_6: 1.494296294202947 + artificial_uncertainty_7: -0.5580646526157593 + artificial_uncertainty_8: 0.20362973118643957 + artificial_uncertainty_9: 0.04421612689698226 + artificial_uncertainty_10: -0.08641397361146312 + artificial_uncertainty_11: 0.057686108170431474 + artificial_uncertainty_12: 0.04217230025984787 + artificial_uncertainty_13: 0.13213781896925528 + artificial_uncertainty_14: 0.010322317460083925 + artificial_uncertainty_15: -0.08506567727883106 + artificial_uncertainty_16: 0.09978018927222727 + artificial_uncertainty_17: -0.015473842399528677 +- artificial_uncertainty_0: 65.67348137747052 + artificial_uncertainty_1: -7.484238442749145 + artificial_uncertainty_2: 1.9304945484891447 + artificial_uncertainty_3: 2.002652532530273 + artificial_uncertainty_4: -3.9009994093380764 + artificial_uncertainty_5: -0.3383683302495119 + artificial_uncertainty_6: -0.09442439832176158 + artificial_uncertainty_7: 0.0006040497938228115 + artificial_uncertainty_8: -0.04721957137823536 + artificial_uncertainty_9: -0.0016750917085821485 + artificial_uncertainty_10: -0.0597694800716094 + artificial_uncertainty_11: -0.01053609513720173 + artificial_uncertainty_12: -0.008645864361918444 + artificial_uncertainty_13: 0.1355117958969333 + artificial_uncertainty_14: 0.019903444663502735 + artificial_uncertainty_15: 0.007082637625087356 + artificial_uncertainty_16: -0.05757420705716509 + artificial_uncertainty_17: -0.007146655167910259 diff --git a/nnpdf_data/nnpdf_data/new_commondata/CMS_WPWM_7TEV_ELECTRON/uncertainties.yaml b/nnpdf_data/nnpdf_data/new_commondata/CMS_WPWM_7TEV_ELECTRON/uncertainties.yaml index 5c95c049dd..04470b9d0e 100644 --- a/nnpdf_data/nnpdf_data/new_commondata/CMS_WPWM_7TEV_ELECTRON/uncertainties.yaml +++ b/nnpdf_data/nnpdf_data/new_commondata/CMS_WPWM_7TEV_ELECTRON/uncertainties.yaml @@ -48,135 +48,135 @@ definitions: treatment: ADD type: UNCORR bins: -- sys_corr_1: -0.0005273878529736807 - sys_corr_2: 0.0004920757500873163 - sys_corr_3: -0.00031373344952905 - sys_corr_4: 0.00028280270500594476 - sys_corr_5: -0.0014602701195220583 - sys_corr_6: 0.0009238102753355476 - sys_corr_7: 0.0011666468861370014 - sys_corr_8: -0.0008139575702963524 - sys_corr_9: -0.004160626781657514 - sys_corr_10: 0.0007263524698049724 - sys_corr_11: -0.0003918012312406757 +- sys_corr_1: -0.0005273878529736784 + sys_corr_2: 0.0004920757500873148 + sys_corr_3: -0.0003137334495290517 + sys_corr_4: 0.00028280270500595056 + sys_corr_5: -0.0014602701195220505 + sys_corr_6: 0.0009238102753355426 + sys_corr_7: 0.0011666468861369695 + sys_corr_8: -0.000813957570296357 + sys_corr_9: -0.004160626781657518 + sys_corr_10: 0.0007263524698049898 + sys_corr_11: -0.00039180123124070106 stat: 0.003 -- sys_corr_1: -0.0006056129424477606 - sys_corr_2: 0.0006069129267739177 - sys_corr_3: -0.0003334843380478542 - sys_corr_4: 0.0002998867793258967 - sys_corr_5: -0.0018540480473812223 - sys_corr_6: 0.0013242803339956581 - sys_corr_7: 0.0005090197451956031 - sys_corr_8: -0.001692936651853273 - sys_corr_9: 0.0011786830295639331 - sys_corr_10: 0.0026627475292565228 - sys_corr_11: 0.00290996211610738 +- sys_corr_1: -0.000605612942447761 + sys_corr_2: 0.0006069129267739193 + sys_corr_3: -0.0003334843380478523 + sys_corr_4: 0.0002998867793259011 + sys_corr_5: -0.0018540480473812244 + sys_corr_6: 0.0013242803339956726 + sys_corr_7: 0.0005090197451955851 + sys_corr_8: -0.001692936651853292 + sys_corr_9: 0.0011786830295639102 + sys_corr_10: 0.0026627475292565076 + sys_corr_11: 0.0029099621161073727 stat: 0.003 -- sys_corr_1: -0.0005323980721454393 - sys_corr_2: 0.000529674017710586 - sys_corr_3: -0.00031445430615395487 - sys_corr_4: 0.0002501905541965609 - sys_corr_5: -0.0017867252932159071 - sys_corr_6: 0.0012504273673549428 - sys_corr_7: 0.00040503634455172 - sys_corr_8: -0.00249870129895407 - sys_corr_9: 0.00043304844734943045 - sys_corr_10: -0.003756740448843196 - sys_corr_11: 0.0006406033481754694 +- sys_corr_1: -0.0005323980721454376 + sys_corr_2: 0.0005296740177105887 + sys_corr_3: -0.0003144543061539523 + sys_corr_4: 0.0002501905541965663 + sys_corr_5: -0.0017867252932159126 + sys_corr_6: 0.0012504273673549543 + sys_corr_7: 0.00040503634455172467 + sys_corr_8: -0.0024987012989540615 + sys_corr_9: 0.00043304844734939717 + sys_corr_10: -0.0037567404488432032 + sys_corr_11: 0.0006406033481754738 stat: 0.003 -- sys_corr_1: -0.0006019743290661965 - sys_corr_2: 0.0005857345211502024 - sys_corr_3: -0.0003523008205602437 - sys_corr_4: 0.00027249913554191617 - sys_corr_5: -0.001898694087222078 - sys_corr_6: 0.0010865145620197626 - sys_corr_7: 0.0009742935858833877 - sys_corr_8: -0.0012038153800011354 - sys_corr_9: 0.0015699535896636517 - sys_corr_10: 0.0012485519296600764 - sys_corr_11: -0.003672677707767206 +- sys_corr_1: -0.0006019743290661977 + sys_corr_2: 0.0005857345211502029 + sys_corr_3: -0.0003523008205602395 + sys_corr_4: 0.0002724991355419206 + sys_corr_5: -0.0018986940872220742 + sys_corr_6: 0.0010865145620197552 + sys_corr_7: 0.0009742935858834207 + sys_corr_8: -0.0012038153800011228 + sys_corr_9: 0.0015699535896636985 + sys_corr_10: 0.001248551929660072 + sys_corr_11: -0.0036726777077672056 stat: 0.003 - sys_corr_1: -0.0006976970931417799 - sys_corr_2: 0.000676232157965952 - sys_corr_3: -0.0003587660969143143 - sys_corr_4: 0.0003116448944890272 - sys_corr_5: -0.001807221076617689 - sys_corr_6: 0.0007909641675287512 - sys_corr_7: -0.004152983554990873 - sys_corr_8: -0.0005267234021666036 - sys_corr_9: -0.0005716977971515877 - sys_corr_10: 0.00037446477642891397 - sys_corr_11: -0.0004966373502303589 + sys_corr_2: 0.0006762321579659522 + sys_corr_3: -0.00035876609691431414 + sys_corr_4: 0.00031164489448902736 + sys_corr_5: -0.0018072210766176913 + sys_corr_6: 0.0007909641675287473 + sys_corr_7: -0.0041529835549908795 + sys_corr_8: -0.0005267234021665906 + sys_corr_9: -0.0005716977971515297 + sys_corr_10: 0.0003744647764288975 + sys_corr_11: -0.0004966373502303731 stat: 0.003 -- sys_corr_1: -0.0008670249068697416 - sys_corr_2: 0.000853761909454208 - sys_corr_3: -0.000400706536434319 - sys_corr_4: 0.0003972370938853973 +- sys_corr_1: -0.0008670249068697411 + sys_corr_2: 0.0008537619094542121 + sys_corr_3: -0.00040070653643431154 + sys_corr_4: 0.0003972370938854017 sys_corr_5: -0.0026403129289845665 - sys_corr_6: 0.0026647567495271035 - sys_corr_7: 0.00044094880207536005 - sys_corr_8: 0.0037468181886824675 - sys_corr_9: 0.0003279726662798175 - sys_corr_10: -0.0006687235607489197 - sys_corr_11: 0.000375466140948429 + sys_corr_6: 0.0026647567495270935 + sys_corr_7: 0.000440948802075366 + sys_corr_8: 0.003746818188682471 + sys_corr_9: 0.00032797266627980357 + sys_corr_10: -0.0006687235607489003 + sys_corr_11: 0.00037546614094845145 stat: 0.003 -- sys_corr_1: -0.0008975426501703225 - sys_corr_2: 0.0009356900921947209 - sys_corr_3: -0.00046002906217392316 - sys_corr_4: 0.0003860530853620133 - sys_corr_5: -0.004193370705167083 - sys_corr_6: -0.004053372820356175 - sys_corr_7: 0.0002935484156385512 - sys_corr_8: 0.0005255775721301213 - sys_corr_9: 9.194878363877569e-05 - sys_corr_10: -0.00015244975381778492 - sys_corr_11: 0.00022349600684170643 +- sys_corr_1: -0.0008975426501703232 + sys_corr_2: 0.000935690092194723 + sys_corr_3: -0.0004600290621739182 + sys_corr_4: 0.0003860530853620195 + sys_corr_5: -0.004193370705167084 + sys_corr_6: -0.004053372820356177 + sys_corr_7: 0.00029354841563855155 + sys_corr_8: 0.0005255775721301168 + sys_corr_9: 9.194878363876685e-05 + sys_corr_10: -0.00015244975381778223 + sys_corr_11: 0.00022349600684170827 stat: 0.003 -- sys_corr_1: -0.001399977492573948 - sys_corr_2: 0.003089315099466261 - sys_corr_3: -0.008847637987495549 - sys_corr_4: -0.002076625106990106 - sys_corr_5: 0.0008833716306296081 - sys_corr_6: -0.00013441048331305042 - sys_corr_7: 3.2049495811973534e-05 - sys_corr_8: 4.654275603138391e-05 - sys_corr_9: 2.623828980828227e-05 - sys_corr_10: -2.1822616727809066e-05 - sys_corr_11: 1.8861472391203358e-05 +- sys_corr_1: -0.001399977492573946 + sys_corr_2: 0.0030893150994662616 + sys_corr_3: -0.008847637987495544 + sys_corr_4: -0.002076625106990114 + sys_corr_5: 0.0008833716306296023 + sys_corr_6: -0.00013441048331305018 + sys_corr_7: 3.2049495811974455e-05 + sys_corr_8: 4.654275603138454e-05 + sys_corr_9: 2.6238289808281287e-05 + sys_corr_10: -2.18226167278089e-05 + sys_corr_11: 1.886147239120436e-05 stat: 0.003 -- sys_corr_1: -0.0013386957747181583 - sys_corr_2: 0.0021623894718952527 - sys_corr_3: -0.0013652391375688947 - sys_corr_4: 0.008545719838293641 - sys_corr_5: 0.0010014322158275902 - sys_corr_6: -0.00017556072673563628 - sys_corr_7: 3.5082671388530275e-05 - sys_corr_8: 2.941945017434505e-05 - sys_corr_9: 4.383827444833519e-05 - sys_corr_10: -3.211237345372283e-05 - sys_corr_11: 4.752772650752839e-06 +- sys_corr_1: -0.0013386957747181579 + sys_corr_2: 0.0021623894718952536 + sys_corr_3: -0.001365239137568912 + sys_corr_4: 0.008545719838293638 + sys_corr_5: 0.0010014322158275917 + sys_corr_6: -0.00017556072673563533 + sys_corr_7: 3.508267138853123e-05 + sys_corr_8: 2.941945017434497e-05 + sys_corr_9: 4.383827444833276e-05 + sys_corr_10: -3.2112373453723295e-05 + sys_corr_11: 4.752772650753369e-06 stat: 0.003 -- sys_corr_1: -0.002556489001393761 - sys_corr_2: 0.009394159793651867 - sys_corr_3: 0.0035644567746187777 - sys_corr_4: -0.0015824646728441595 - sys_corr_5: 0.0008311050271506726 - sys_corr_6: -0.00010853839532078333 - sys_corr_7: 4.088503970941758e-05 - sys_corr_8: -7.469006977796868e-06 - sys_corr_9: 7.943923687240917e-06 - sys_corr_10: -1.6508817889550495e-05 - sys_corr_11: -2.218538452510414e-07 +- sys_corr_1: -0.002556489001393757 + sys_corr_2: 0.009394159793651862 + sys_corr_3: 0.003564456774618782 + sys_corr_4: -0.0015824646728441602 + sys_corr_5: 0.0008311050271506746 + sys_corr_6: -0.00010853839532078258 + sys_corr_7: 4.0885039709417875e-05 + sys_corr_8: -7.469006977797742e-06 + sys_corr_9: 7.943923687240344e-06 + sys_corr_10: -1.6508817889550298e-05 + sys_corr_11: -2.218538452511679e-07 stat: 0.003 - sys_corr_1: -0.012762587168995332 - sys_corr_2: -0.0027070798790554294 - sys_corr_3: 0.0005374443403068933 - sys_corr_4: -0.00047197992053383506 - sys_corr_5: 0.0005170576319380566 - sys_corr_6: -8.873625919098852e-05 - sys_corr_7: 2.5833190636539972e-05 - sys_corr_8: 5.5817625283899605e-06 - sys_corr_9: 1.732158157047201e-05 - sys_corr_10: -1.3795560081041291e-05 - sys_corr_11: 8.014672536249117e-06 + sys_corr_2: -0.002707079879055426 + sys_corr_3: 0.0005374443403068927 + sys_corr_4: -0.00047197992053383576 + sys_corr_5: 0.0005170576319380558 + sys_corr_6: -8.873625919098776e-05 + sys_corr_7: 2.583319063654038e-05 + sys_corr_8: 5.581762528389379e-06 + sys_corr_9: 1.732158157047091e-05 + sys_corr_10: -1.3795560081041583e-05 + sys_corr_11: 8.014672536249166e-06 stat: 0.004 diff --git a/nnpdf_data/nnpdf_data/new_commondata/CMS_WPWM_7TEV_MUON/uncertainties.yaml b/nnpdf_data/nnpdf_data/new_commondata/CMS_WPWM_7TEV_MUON/uncertainties.yaml index a432f2ac39..d11d76f5a8 100644 --- a/nnpdf_data/nnpdf_data/new_commondata/CMS_WPWM_7TEV_MUON/uncertainties.yaml +++ b/nnpdf_data/nnpdf_data/new_commondata/CMS_WPWM_7TEV_MUON/uncertainties.yaml @@ -48,135 +48,135 @@ definitions: treatment: ADD type: UNCORR bins: -- sys_corr_1: -0.000984585778500624 - sys_corr_2: 0.00032339220055572305 - sys_corr_3: -0.001550360196645388 - sys_corr_4: -0.00010020206458042621 - sys_corr_5: -0.00015060877756354585 - sys_corr_6: -0.000327100072546082 - sys_corr_7: 0.0005252391308311683 - sys_corr_8: -7.345461655164198e-05 - sys_corr_9: 6.008009425219534e-05 - sys_corr_10: -4.101782829452647e-05 - sys_corr_11: 0.0005877482414627738 +- sys_corr_1: -0.000984585778500621 + sys_corr_2: 0.0003233922005557246 + sys_corr_3: -0.0015503601966453868 + sys_corr_4: -0.00010020206458041171 + sys_corr_5: -0.00015060877756354078 + sys_corr_6: -0.00032710007254608094 + sys_corr_7: 0.0005252391308311724 + sys_corr_8: -7.345461655164298e-05 + sys_corr_9: 6.0080094252186345e-05 + sys_corr_10: -4.101782829453246e-05 + sys_corr_11: 0.0005877482414627797 stat: 0.001 -- sys_corr_1: -0.0009943260707242184 - sys_corr_2: 0.0003338553631053619 - sys_corr_3: 0.00030965715816103306 - sys_corr_4: 0.00016876335850270265 - sys_corr_5: 0.0014099571636790153 - sys_corr_6: -0.00028990015520749947 - sys_corr_7: 0.0012799419186664026 - sys_corr_8: 2.0079806167174882e-06 - sys_corr_9: -0.0010566470562937047 - sys_corr_10: -0.00012393317744165884 - sys_corr_11: 0.00017159925123309561 +- sys_corr_1: -0.0009943260707242186 + sys_corr_2: 0.0003338553631053611 + sys_corr_3: 0.0003096571581610299 + sys_corr_4: 0.0001687633585026611 + sys_corr_5: 0.0014099571636790227 + sys_corr_6: -0.00028990015520749686 + sys_corr_7: 0.0012799419186664061 + sys_corr_8: 2.0079806167118995e-06 + sys_corr_9: -0.0010566470562937131 + sys_corr_10: -0.00012393317744167982 + sys_corr_11: 0.00017159925123309139 stat: 0.001 -- sys_corr_1: -0.0013042103522058117 - sys_corr_2: 0.00045621794289222835 - sys_corr_3: 0.0003450714732838415 - sys_corr_4: 0.0011824429723703604 - sys_corr_5: -0.0008936824680379959 - sys_corr_6: -0.00028894083181985075 - sys_corr_7: 0.0004645527784645944 - sys_corr_8: -0.00019904844833194704 - sys_corr_9: -1.81866061040679e-05 - sys_corr_10: -6.001482559215767e-05 - sys_corr_11: 2.9993873257776175e-05 +- sys_corr_1: -0.001304210352205811 + sys_corr_2: 0.00045621794289222727 + sys_corr_3: 0.00034507147328384475 + sys_corr_4: 0.001182442972370382 + sys_corr_5: -0.0008936824680379646 + sys_corr_6: -0.00028894083181984527 + sys_corr_7: 0.00046455277846459473 + sys_corr_8: -0.0001990484483319525 + sys_corr_9: -1.8186606104070672e-05 + sys_corr_10: -6.0014825592158214e-05 + sys_corr_11: 2.9993873257778737e-05 stat: 0.0009 -- sys_corr_1: -0.001314266188097327 - sys_corr_2: 0.0004386255340327516 - sys_corr_3: 0.0005198746057750671 - sys_corr_4: -0.0012613528011420768 - sys_corr_5: -0.0005725078098380471 - sys_corr_6: -0.00030445815350715265 - sys_corr_7: 0.0005158887794618855 - sys_corr_8: -0.00019370348664108288 - sys_corr_9: -5.816840532938759e-05 - sys_corr_10: -5.890529892089926e-05 - sys_corr_11: 6.161287503623178e-05 +- sys_corr_1: -0.0013142661880973267 + sys_corr_2: 0.00043862553403275215 + sys_corr_3: 0.0005198746057750694 + sys_corr_4: -0.0012613528011420632 + sys_corr_5: -0.000572507809838086 + sys_corr_6: -0.00030445815350715254 + sys_corr_7: 0.0005158887794618767 + sys_corr_8: -0.00019370348664108107 + sys_corr_9: -5.816840532938425e-05 + sys_corr_10: -5.890529892089978e-05 + sys_corr_11: 6.161287503623492e-05 stat: 0.0009 -- sys_corr_1: -0.0012931822112788778 - sys_corr_2: 0.0004710127318390159 - sys_corr_3: 3.8814237279851676e-05 - sys_corr_4: 1.0729838964450608e-05 - sys_corr_5: 7.241020833953232e-05 - sys_corr_6: -0.0004958595501225152 - sys_corr_7: -0.0008424512984216756 - sys_corr_8: -0.0009910793248556129 - sys_corr_9: 8.177294402256829e-05 - sys_corr_10: -0.0009766348572017248 - sys_corr_11: -0.00027480889622022236 +- sys_corr_1: -0.0012931822112788771 + sys_corr_2: 0.0004710127318390161 + sys_corr_3: 3.8814237279850876e-05 + sys_corr_4: 1.0729838964448091e-05 + sys_corr_5: 7.241020833953251e-05 + sys_corr_6: -0.0004958595501225034 + sys_corr_7: -0.0008424512984216793 + sys_corr_8: -0.0009910793248556079 + sys_corr_9: 8.177294402258874e-05 + sys_corr_10: -0.0009766348572017448 + sys_corr_11: -0.00027480889622020794 stat: 0.001 -- sys_corr_1: -0.0015756078043752601 - sys_corr_2: 0.0005863583617472998 - sys_corr_3: 1.0742046413494845e-05 - sys_corr_4: 9.336593853967191e-06 - sys_corr_5: 7.970935046067905e-05 - sys_corr_6: -0.0010881116835327522 - sys_corr_7: -0.00037357455623075617 - sys_corr_8: 0.0013970501986831035 - sys_corr_9: -3.173495823849008e-05 - sys_corr_10: 0.00015376418136921465 - sys_corr_11: 5.9260151724597165e-05 +- sys_corr_1: -0.00157560780437526 + sys_corr_2: 0.0005863583617473 + sys_corr_3: 1.0742046413493826e-05 + sys_corr_4: 9.336593853968242e-06 + sys_corr_5: 7.97093504606795e-05 + sys_corr_6: -0.0010881116835327667 + sys_corr_7: -0.0003735745562307513 + sys_corr_8: 0.0013970501986830936 + sys_corr_9: -3.173495823849339e-05 + sys_corr_10: 0.00015376418136922403 + sys_corr_11: 5.92601517245879e-05 stat: 0.001 - sys_corr_1: -0.0015442347488312054 sys_corr_2: 0.0005051581476905876 - sys_corr_3: 1.4906498505916262e-05 - sys_corr_4: -6.309507711921411e-06 - sys_corr_5: 0.00010012394421793401 - sys_corr_6: -7.994422710311335e-05 - sys_corr_7: -0.0007495542736450579 - sys_corr_8: -0.0004997413787103295 - sys_corr_9: 0.0016463036551448318 - sys_corr_10: -1.8641322652072102e-06 - sys_corr_11: -0.00026162393527613556 + sys_corr_3: 1.490649850591566e-05 + sys_corr_4: -6.309507711923313e-06 + sys_corr_5: 0.00010012394421793309 + sys_corr_6: -7.99442271031103e-05 + sys_corr_7: -0.0007495542736450542 + sys_corr_8: -0.000499741378710325 + sys_corr_9: 0.0016463036551448247 + sys_corr_10: -1.8641322651717034e-06 + sys_corr_11: -0.00026162393527611973 stat: 0.001 -- sys_corr_1: -0.001508326306255485 - sys_corr_2: 0.00043667948152675736 - sys_corr_3: 3.582960469988299e-05 - sys_corr_4: -7.741717172812011e-06 - sys_corr_5: 3.492667468569485e-05 - sys_corr_6: 0.00035908802709619034 - sys_corr_7: -0.00023790364442215388 - sys_corr_8: -0.0002689382866478763 - sys_corr_9: -0.00035138229820476255 - sys_corr_10: -0.00018257587295565056 - sys_corr_11: -0.0016665570991072063 +- sys_corr_1: -0.0015083263062554855 + sys_corr_2: 0.00043667948152675725 + sys_corr_3: 3.582960469988251e-05 + sys_corr_4: -7.741717172816087e-06 + sys_corr_5: 3.492667468569511e-05 + sys_corr_6: 0.00035908802709619137 + sys_corr_7: -0.00023790364442215607 + sys_corr_8: -0.00026893828664788043 + sys_corr_9: -0.00035138229820474694 + sys_corr_10: -0.00018257587295564089 + sys_corr_11: -0.0016665570991072185 stat: 0.001 -- sys_corr_1: -0.0018460928189447106 - sys_corr_2: 0.0004887892785563895 - sys_corr_3: -1.43235178286324e-05 - sys_corr_4: 9.644126898996454e-06 - sys_corr_5: 8.917572284404926e-05 - sys_corr_6: 0.0006449900756385248 - sys_corr_7: -0.00012858351515746507 - sys_corr_8: -0.0003825061253126232 - sys_corr_9: -0.0004103045170282641 - sys_corr_10: 0.0016111319030688075 - sys_corr_11: 0.0009147724957601339 +- sys_corr_1: -0.0018460928189447108 + sys_corr_2: 0.00048878927855639 + sys_corr_3: -1.4323517828633502e-05 + sys_corr_4: 9.644126898992583e-06 + sys_corr_5: 8.91757228440501e-05 + sys_corr_6: 0.0006449900756385242 + sys_corr_7: -0.00012858351515746295 + sys_corr_8: -0.0003825061253126287 + sys_corr_9: -0.00041030451702828266 + sys_corr_10: 0.0016111319030687942 + sys_corr_11: 0.000914772495760113 stat: 0.0009 -- sys_corr_1: -0.0015992003706300191 - sys_corr_2: 0.00030161159980762715 - sys_corr_3: 8.873512003106837e-06 - sys_corr_4: 1.0504762643258638e-06 - sys_corr_5: 1.657354835395187e-05 - sys_corr_6: 0.001571204261275609 - sys_corr_7: 0.00015737042233622317 - sys_corr_8: 0.0009968580208186426 - sys_corr_9: -0.00010111555473224125 - sys_corr_10: -0.0008356762734893377 - sys_corr_11: 0.000356374022261596 +- sys_corr_1: -0.0015992003706300187 + sys_corr_2: 0.00030161159980762747 + sys_corr_3: 8.873512003106145e-06 + sys_corr_4: 1.0504762643270958e-06 + sys_corr_5: 1.6573548353951322e-05 + sys_corr_6: 0.001571204261275605 + sys_corr_7: 0.00015737042233621924 + sys_corr_8: 0.0009968580208186658 + sys_corr_9: -0.00010111555473223193 + sys_corr_10: -0.0008356762734893395 + sys_corr_11: 0.00035637402226160837 stat: 0.0009 - sys_corr_1: -0.002135541196820096 - sys_corr_2: -0.0028942979290311442 - sys_corr_3: -1.6171252875172463e-06 - sys_corr_4: 7.798505342375724e-06 - sys_corr_5: 9.73429540698485e-07 - sys_corr_6: -0.0001623623790634983 - sys_corr_7: 6.342743759272407e-06 - sys_corr_8: -2.8909955734499893e-05 - sys_corr_9: 6.878963885478007e-06 - sys_corr_10: -8.449888029722397e-06 - sys_corr_11: -1.0903573097038029e-05 + sys_corr_2: -0.0028942979290311455 + sys_corr_3: -1.6171252875175035e-06 + sys_corr_4: 7.798505342375547e-06 + sys_corr_5: 9.734295406989774e-07 + sys_corr_6: -0.00016236237906349813 + sys_corr_7: 6.342743759272846e-06 + sys_corr_8: -2.890995573450154e-05 + sys_corr_9: 6.878963885477746e-06 + sys_corr_10: -8.449888029722424e-06 + sys_corr_11: -1.0903573097037771e-05 stat: 0.0011 diff --git a/nnpdf_data/nnpdf_data/new_commondata/CMS_WPWM_8TEV_MUON/uncertainties.yaml b/nnpdf_data/nnpdf_data/new_commondata/CMS_WPWM_8TEV_MUON/uncertainties.yaml index 107683c6da..163050f2d3 100644 --- a/nnpdf_data/nnpdf_data/new_commondata/CMS_WPWM_8TEV_MUON/uncertainties.yaml +++ b/nnpdf_data/nnpdf_data/new_commondata/CMS_WPWM_8TEV_MUON/uncertainties.yaml @@ -184,1015 +184,1015 @@ definitions: treatment: MULT type: CMSLUMI12 bins: -- sys_corr_1: 645.7611420830937 - sys_corr_2: -165.0316168000447 - sys_corr_3: -73.58942105341794 - sys_corr_4: 85.66927789249699 - sys_corr_5: -67.75166049175371 - sys_corr_6: 23.025878377947365 - sys_corr_7: 90.53224184796234 - sys_corr_8: 1.0331022144083608 - sys_corr_9: -78.67158774726632 - sys_corr_10: -71.94887885278767 - sys_corr_11: 15.644042556536943 - sys_corr_12: -14.57604666363654 - sys_corr_13: -26.743354584037682 - sys_corr_14: 13.36469015148332 - sys_corr_15: 5.564065738828121 - sys_corr_16: 58.722869676360524 - sys_corr_17: 5.542706698397371 - sys_corr_18: 5.315275054842851 - sys_corr_19: -5.3512642159189205 - sys_corr_20: 27.605257919075843 - sys_corr_21: -14.755299444092357 - sys_corr_22: -49.20629916466609 - corr_stat_1: -4361.059271257982 - corr_stat_2: 4366.5967706129595 - corr_stat_3: -948.395096793399 - corr_stat_4: 497.91549775396146 - corr_stat_5: 41.003653918012226 - corr_stat_6: 361.26733323944364 - corr_stat_7: 311.64232130731295 - corr_stat_8: 24.258157512557656 - corr_stat_9: -278.54969582080963 - corr_stat_10: 459.72465604851226 - corr_stat_11: -1190.2089122472134 - corr_stat_12: -778.086019935234 - corr_stat_13: 325.1154818876041 - corr_stat_14: 17.412097230114068 - corr_stat_15: 185.44175112230155 - corr_stat_16: 246.17458174892863 - corr_stat_17: -395.55313948189524 - corr_stat_18: -309.0339794988945 - corr_stat_19: -89.0460745299496 - corr_stat_20: 70.31329842130525 - corr_stat_21: -86.47768856378738 - corr_stat_22: -49.55123531050011 +- sys_corr_1: 645.7611420830939 + sys_corr_2: -165.03161680004393 + sys_corr_3: -73.58942105341785 + sys_corr_4: 85.66927789249533 + sys_corr_5: -67.75166049175483 + sys_corr_6: 23.025878377947326 + sys_corr_7: 90.53224184796163 + sys_corr_8: 1.0331022144084616 + sys_corr_9: -78.67158774726853 + sys_corr_10: -71.94887885278742 + sys_corr_11: 15.644042556536121 + sys_corr_12: -14.576046663630926 + sys_corr_13: -26.743354584038062 + sys_corr_14: 13.364690151482732 + sys_corr_15: 5.564065738828934 + sys_corr_16: -58.722869676359984 + sys_corr_17: -5.542706698397728 + sys_corr_18: 5.3152750548431 + sys_corr_19: -5.35126421591939 + sys_corr_20: 27.605257919077722 + sys_corr_21: -14.75529944409344 + sys_corr_22: -49.206299164666035 + corr_stat_1: -4361.0592712579855 + corr_stat_2: 4366.596770612959 + corr_stat_3: -948.3950967934098 + corr_stat_4: 497.9154977539705 + corr_stat_5: 41.0036539179969 + corr_stat_6: 361.2673332394453 + corr_stat_7: 311.6423213073529 + corr_stat_8: 24.2581575125903 + corr_stat_9: -278.54969582084203 + corr_stat_10: 459.72465604870735 + corr_stat_11: -1190.2089122467041 + corr_stat_12: -778.0860199348597 + corr_stat_13: -325.11548188760065 + corr_stat_14: -17.41209723011345 + corr_stat_15: 185.44175112229138 + corr_stat_16: 246.17458174890984 + corr_stat_17: -395.5531394818259 + corr_stat_18: -309.033979498897 + corr_stat_19: -89.04607452994848 + corr_stat_20: 70.31329842129271 + corr_stat_21: -86.47768856377934 + corr_stat_22: -49.551235310495834 stat: 700.0 sys_luminosity: 19336.2 -- sys_corr_1: 609.8444548094724 - sys_corr_2: -292.45057411796597 - sys_corr_3: -52.31610126779339 - sys_corr_4: 24.549433550833143 - sys_corr_5: -31.148457396835532 - sys_corr_6: -4.979327687552541 - sys_corr_7: -14.398819542053724 - sys_corr_8: 0.2439099735327665 - sys_corr_9: 25.296767307034017 - sys_corr_10: 30.354719579163202 - sys_corr_11: -3.879058748587956 - sys_corr_12: 143.92887428488208 - sys_corr_13: 11.79772579250979 - sys_corr_14: -2.2390141036046285 - sys_corr_15: 14.766056221871928 - sys_corr_16: 13.648571312801549 - sys_corr_17: -61.90596693292601 - sys_corr_18: -34.32503901463567 - sys_corr_19: 3.031606964890215 - sys_corr_20: -8.884675293556281 - sys_corr_21: 4.243046908739292 - sys_corr_22: -7.952137443949255 - corr_stat_1: -6193.915758286345 - corr_stat_2: 4101.832166535929 - corr_stat_3: -940.8801966348934 - corr_stat_4: 243.93723057092467 - corr_stat_5: -464.6956700461203 - corr_stat_6: 261.1575460553194 - corr_stat_7: -107.9475163425131 - corr_stat_8: -267.4527912222251 - corr_stat_9: -467.60326392134635 - corr_stat_10: -1340.1845096496263 - corr_stat_11: -37.94553571795384 - corr_stat_12: 543.1057073452413 - corr_stat_13: 230.86450675741725 - corr_stat_14: -22.81059393247298 - corr_stat_15: 273.91631773320125 - corr_stat_16: 82.41977758859375 - corr_stat_17: 27.629449588774346 - corr_stat_18: 366.62832457433404 - corr_stat_19: -157.37478151415067 - corr_stat_20: 298.6817879268016 - corr_stat_21: -284.95771122794014 - corr_stat_22: -105.54329091203235 +- sys_corr_1: 609.8444548094716 + sys_corr_2: -292.45057411796626 + sys_corr_3: -52.316101267793854 + sys_corr_4: 24.549433550833182 + sys_corr_5: -31.148457396836164 + sys_corr_6: -4.979327687552382 + sys_corr_7: -14.398819542053246 + sys_corr_8: 0.24390997353267663 + sys_corr_9: 25.2967673070347 + sys_corr_10: 30.354719579162605 + sys_corr_11: -3.879058748587995 + sys_corr_12: 143.92887428488132 + sys_corr_13: 11.797725792511683 + sys_corr_14: -2.2390141036057227 + sys_corr_15: 14.766056221872404 + sys_corr_16: -13.648571312801668 + sys_corr_17: 61.905966932925544 + sys_corr_18: -34.32503901463579 + sys_corr_19: 3.031606964890894 + sys_corr_20: -8.88467529355694 + sys_corr_21: 4.243046908739121 + sys_corr_22: -7.952137443948808 + corr_stat_1: -6193.9157582863645 + corr_stat_2: 4101.832166535932 + corr_stat_3: -940.8801966348842 + corr_stat_4: 243.93723057091077 + corr_stat_5: -464.6956700461302 + corr_stat_6: 261.1575460553102 + corr_stat_7: -107.94751634252039 + corr_stat_8: -267.45279122220194 + corr_stat_9: -467.6032639213164 + corr_stat_10: -1340.1845096498062 + corr_stat_11: -37.9455357185254 + corr_stat_12: 543.1057073450987 + corr_stat_13: -230.86450675742196 + corr_stat_14: 22.810593932466976 + corr_stat_15: 273.91631773319887 + corr_stat_16: 82.41977758860432 + corr_stat_17: 27.629449588737224 + corr_stat_18: 366.6283245743195 + corr_stat_19: -157.3747815141471 + corr_stat_20: 298.6817879268159 + corr_stat_21: -284.95771122795566 + corr_stat_22: -105.54329091202582 stat: 700.0 sys_luminosity: 19487.0 -- sys_corr_1: 633.9417310309022 - sys_corr_2: -229.50410933748228 - sys_corr_3: -52.29204202991849 - sys_corr_4: 26.835438573033297 - sys_corr_5: -28.44824777321594 - sys_corr_6: -1.0782094100968107 - sys_corr_7: -12.412722315432898 - sys_corr_8: 0.5197868450812575 - sys_corr_9: 9.266250500374296 - sys_corr_10: 87.55022584346864 - sys_corr_11: -117.01991188447022 - sys_corr_12: -61.20537367994009 - sys_corr_13: -10.646790212704449 - sys_corr_14: 18.44567053410897 - sys_corr_15: 3.904393326610675 - sys_corr_16: 25.768490753387322 - sys_corr_17: 11.47695460048536 - sys_corr_18: -15.31531649020219 - sys_corr_19: 60.719287195555914 - sys_corr_20: -23.079162771688555 - sys_corr_21: 9.861817848529448 - sys_corr_22: -4.449954766250597 - corr_stat_1: -5364.89830128213 - corr_stat_2: 4378.14382851021 +- sys_corr_1: 633.9417310309018 + sys_corr_2: -229.50410933748157 + sys_corr_3: -52.29204202991863 + sys_corr_4: 26.835438573033013 + sys_corr_5: -28.448247773216256 + sys_corr_6: -1.0782094100964597 + sys_corr_7: -12.412722315432445 + sys_corr_8: 0.5197868450812836 + sys_corr_9: 9.26625050037578 + sys_corr_10: 87.55022584346158 + sys_corr_11: -117.01991188446965 + sys_corr_12: -61.20537367994188 + sys_corr_13: -10.64679021270587 + sys_corr_14: 18.445670534109087 + sys_corr_15: 3.9043933266103807 + sys_corr_16: -25.768490753387255 + sys_corr_17: -11.476954600484861 + sys_corr_18: -15.315316490201063 + sys_corr_19: 60.71928719555559 + sys_corr_20: -23.079162771688406 + sys_corr_21: 9.861817848528862 + sys_corr_22: -4.449954766251273 + corr_stat_1: -5364.898301282127 + corr_stat_2: 4378.143828510223 corr_stat_3: -783.377683537916 - corr_stat_4: 179.3897207733748 - corr_stat_5: -81.6563670729649 - corr_stat_6: 185.2347989312084 - corr_stat_7: 185.73840248288388 - corr_stat_8: 20.747439376351526 - corr_stat_9: -216.48248570790346 - corr_stat_10: 1120.3185598219845 - corr_stat_11: 443.03116629595723 - corr_stat_12: 1126.6163046722202 - corr_stat_13: 274.94495410785254 - corr_stat_14: -55.29907626528618 - corr_stat_15: 127.89443993108301 - corr_stat_16: 124.55000236147228 - corr_stat_17: 422.149755531206 - corr_stat_18: -305.6003125651396 - corr_stat_19: -108.83296618611146 - corr_stat_20: 68.19597018136577 - corr_stat_21: -22.860674613257643 - corr_stat_22: -35.93215941862324 + corr_stat_4: 179.38972077337485 + corr_stat_5: -81.65636707297956 + corr_stat_6: 185.23479893119327 + corr_stat_7: 185.73840248291276 + corr_stat_8: 20.747439376345206 + corr_stat_9: -216.48248570792822 + corr_stat_10: 1120.3185598216717 + corr_stat_11: 443.03116629553426 + corr_stat_12: 1126.6163046721892 + corr_stat_13: -274.9449541078521 + corr_stat_14: 55.299076265277996 + corr_stat_15: 127.89443993108013 + corr_stat_16: 124.55000236148875 + corr_stat_17: 422.1497555312466 + corr_stat_18: -305.600312565125 + corr_stat_19: -108.83296618611234 + corr_stat_20: 68.19597018134564 + corr_stat_21: -22.860674613248143 + corr_stat_22: -35.932159418620344 stat: 700.0 sys_luminosity: 19549.4 -- sys_corr_1: 635.2952657068279 - sys_corr_2: -223.84033023554946 - sys_corr_3: -58.2854178246491 - sys_corr_4: 15.744302735738602 - sys_corr_5: -26.068567799994753 - sys_corr_6: -8.539415379672693 - sys_corr_7: -36.81084384157614 - sys_corr_8: 1.2355182641001476 - sys_corr_9: 35.15261160102406 - sys_corr_10: 62.950812095678245 - sys_corr_11: 129.4748776555116 - sys_corr_12: -54.419602699989 - sys_corr_13: -10.184033429348252 - sys_corr_14: 6.643893026277997 - sys_corr_15: 10.446319140688814 - sys_corr_16: 19.61105530905045 - sys_corr_17: 14.748673647576323 - sys_corr_18: -22.148005826146886 - sys_corr_19: -36.32042003964351 - sys_corr_20: -52.43159406757373 - sys_corr_21: 13.488895850836778 - sys_corr_22: -4.210305192554699 +- sys_corr_1: 635.2952657068281 + sys_corr_2: -223.8403302355496 + sys_corr_3: -58.285417824649244 + sys_corr_4: 15.744302735738781 + sys_corr_5: -26.068567799994845 + sys_corr_6: -8.539415379672754 + sys_corr_7: -36.81084384157706 + sys_corr_8: 1.2355182641001339 + sys_corr_9: 35.15261160102704 + sys_corr_10: 62.9508120956877 + sys_corr_11: 129.47487765551185 + sys_corr_12: -54.41960269999956 + sys_corr_13: -10.184033429349688 + sys_corr_14: 6.643893026278591 + sys_corr_15: 10.446319140688383 + sys_corr_16: -19.611055309051043 + sys_corr_17: -14.74867364757852 + sys_corr_18: -22.148005826145766 + sys_corr_19: -36.32042003964425 + sys_corr_20: -52.43159406757368 + sys_corr_21: 13.488895850836103 + sys_corr_22: -4.210305192556013 corr_stat_1: -5253.141431411864 - corr_stat_2: 4355.089190809781 - corr_stat_3: -762.2688594459668 - corr_stat_4: -51.4931504309611 - corr_stat_5: -174.76751408904008 - corr_stat_6: 109.50585709459652 - corr_stat_7: 38.42144241597946 - corr_stat_8: -75.38876152214485 - corr_stat_9: 35.490988970796785 - corr_stat_10: 64.60132886220606 - corr_stat_11: 1273.0262325969036 - corr_stat_12: -1117.3063301495295 - corr_stat_13: 194.8707885770323 - corr_stat_14: 75.73301574707943 - corr_stat_15: 136.53030991004508 - corr_stat_16: -491.34682958529964 - corr_stat_17: -51.230326676989385 - corr_stat_18: -134.9543319597707 - corr_stat_19: -66.16390165702185 - corr_stat_20: 49.12503927764438 - corr_stat_21: -91.6277313157707 - corr_stat_22: -10.231837063873037 + corr_stat_2: 4355.089190809774 + corr_stat_3: -762.2688594459618 + corr_stat_4: -51.49315043095966 + corr_stat_5: -174.7675140890287 + corr_stat_6: 109.50585709458592 + corr_stat_7: 38.42144241600377 + corr_stat_8: -75.38876152212536 + corr_stat_9: 35.49098897081449 + corr_stat_10: 64.60132886271468 + corr_stat_11: 1273.0262325975327 + corr_stat_12: -1117.3063301498983 + corr_stat_13: -194.87078857703628 + corr_stat_14: -75.73301574706821 + corr_stat_15: 136.53030991004135 + corr_stat_16: -491.3468295852987 + corr_stat_17: -51.230326677057036 + corr_stat_18: -134.95433195979726 + corr_stat_19: -66.16390165702035 + corr_stat_20: 49.1250392776329 + corr_stat_21: -91.62773131575953 + corr_stat_22: -10.231837063867435 stat: 700.0 sys_luminosity: 19630.0 -- sys_corr_1: 627.6130179855487 +- sys_corr_1: 627.6130179855477 sys_corr_2: -241.01098871307278 - sys_corr_3: -48.727365504965846 - sys_corr_4: -14.052850416724407 - sys_corr_5: -4.8830936213987455 - sys_corr_6: -19.905953121622346 - sys_corr_7: -75.0438861186228 - sys_corr_8: -0.1651266673155222 - sys_corr_9: 82.46823183862887 - sys_corr_10: -121.3868949297084 - sys_corr_11: -26.14979762513449 - sys_corr_12: -28.989056164569767 - sys_corr_13: 8.078179174378484 - sys_corr_14: 5.8322295534572035 - sys_corr_15: 13.49326050837087 - sys_corr_16: 17.085138020051325 - sys_corr_17: 4.227717128576449 - sys_corr_18: -33.29416701119673 - sys_corr_19: -4.576517480697454 - sys_corr_20: 12.004916444113075 - sys_corr_21: -41.89013653998506 - sys_corr_22: 52.08293963058325 - corr_stat_1: -5607.650076304825 - corr_stat_2: 4366.597463566921 - corr_stat_3: -603.9724612260538 + sys_corr_3: -48.72736550496542 + sys_corr_4: -14.052850416723926 + sys_corr_5: -4.883093621398035 + sys_corr_6: -19.905953121621675 + sys_corr_7: -75.04388611862204 + sys_corr_8: -0.16512666731556092 + sys_corr_9: 82.46823183862578 + sys_corr_10: -121.38689492970933 + sys_corr_11: -26.149797625135346 + sys_corr_12: -28.989056164559493 + sys_corr_13: 8.078179174378302 + sys_corr_14: 5.832229553457518 + sys_corr_15: 13.493260508371165 + sys_corr_16: -17.085138020052078 + sys_corr_17: -4.227717128575303 + sys_corr_18: -33.29416701119682 + sys_corr_19: -4.576517480697127 + sys_corr_20: 12.004916444113725 + sys_corr_21: -41.89013653998333 + sys_corr_22: 52.08293963058415 + corr_stat_1: -5607.6500763048325 + corr_stat_2: 4366.597463566918 + corr_stat_3: -603.9724612260487 corr_stat_4: -389.703907999235 - corr_stat_5: -232.20394351305308 - corr_stat_6: -434.0910742801456 - corr_stat_7: -547.3912223866312 - corr_stat_8: -118.84330283758003 - corr_stat_9: 1661.2059511393236 - corr_stat_10: -14.928256614001953 - corr_stat_11: -323.54561905106766 - corr_stat_12: 131.47574303070485 - corr_stat_13: 160.8732441541821 - corr_stat_14: -10.21784502833566 - corr_stat_15: 101.03266670325242 - corr_stat_16: 14.656305632976775 - corr_stat_17: 7.321929705576962 - corr_stat_18: 133.0476381450442 - corr_stat_19: -98.99957176565582 - corr_stat_20: -474.55767728546334 - corr_stat_21: -44.548759064679096 - corr_stat_22: -37.043668966202965 + corr_stat_5: -232.2039435130195 + corr_stat_6: -434.09107428010213 + corr_stat_7: -547.3912223866816 + corr_stat_8: -118.8433028376464 + corr_stat_9: 1661.2059511393156 + corr_stat_10: -14.928256614156552 + corr_stat_11: -323.5456190510915 + corr_stat_12: 131.47574303087828 + corr_stat_13: -160.87324415418402 + corr_stat_14: 10.217845028336981 + corr_stat_15: 101.0326667032544 + corr_stat_16: 14.65630563297164 + corr_stat_17: 7.321929705571492 + corr_stat_18: 133.0476381450571 + corr_stat_19: -98.99957176565913 + corr_stat_20: -474.557677285454 + corr_stat_21: -44.54875906469037 + corr_stat_22: -37.04366896620114 stat: 700.0 sys_luminosity: 19809.4 -- sys_corr_1: 645.0512856962731 - sys_corr_2: 87.20585333731438 - sys_corr_3: -107.99992800885795 - sys_corr_4: 27.91479840352591 - sys_corr_5: 215.692381411577 - sys_corr_6: 41.06452271776316 - sys_corr_7: 14.412076059608934 - sys_corr_8: 0.8101146197967205 - sys_corr_9: -11.177294553525071 - sys_corr_10: -0.049364536339483095 - sys_corr_11: 2.4366313061679987 - sys_corr_12: 12.345468510114609 - sys_corr_13: -27.206004350214037 - sys_corr_14: 54.7531789961368 - sys_corr_15: -26.592719063170474 - sys_corr_16: -24.345942792910677 - sys_corr_17: 0.8248578344216871 - sys_corr_18: 9.229001935938062 - sys_corr_19: -2.324948748462191 - sys_corr_20: -1.686346752453326 - sys_corr_21: -5.203921379775689 - sys_corr_22: 0.6730866533705332 - corr_stat_1: -2155.288243919627 - corr_stat_2: 4934.516543040826 - corr_stat_3: -471.3829287649231 - corr_stat_4: -581.2003879495007 - corr_stat_5: 615.550182808365 - corr_stat_6: -950.9679796206784 - corr_stat_7: -106.06269758631848 - corr_stat_8: 1511.219062784852 - corr_stat_9: -430.78873850977953 - corr_stat_10: -225.36521698444716 - corr_stat_11: -54.845895416766204 - corr_stat_12: 31.28812699012868 - corr_stat_13: 204.70951636800703 - corr_stat_14: -3.0691386645514087 - corr_stat_15: -21.06815078741866 - corr_stat_16: -35.20219444728578 - corr_stat_17: -13.332194714034562 - corr_stat_18: 104.60291831225055 - corr_stat_19: 7.824680459917234 - corr_stat_20: 43.342484752027126 - corr_stat_21: 456.1833454176051 - corr_stat_22: -43.50143087436706 +- sys_corr_1: 645.0512856962722 + sys_corr_2: 87.20585333731431 + sys_corr_3: -107.99992800885796 + sys_corr_4: 27.914798403528824 + sys_corr_5: 215.6923814115761 + sys_corr_6: 41.064522717762394 + sys_corr_7: 14.412076059609575 + sys_corr_8: 0.8101146197967499 + sys_corr_9: -11.177294553525412 + sys_corr_10: -0.049364536339626876 + sys_corr_11: 2.4366313061680995 + sys_corr_12: 12.345468510114635 + sys_corr_13: -27.20600435021591 + sys_corr_14: 54.75317899613624 + sys_corr_15: -26.592719063170836 + sys_corr_16: 24.345942792910513 + sys_corr_17: -0.8248578344215814 + sys_corr_18: 9.229001935937482 + sys_corr_19: -2.3249487484623494 + sys_corr_20: -1.686346752453443 + sys_corr_21: -5.203921379775703 + sys_corr_22: 0.6730866533707216 + corr_stat_1: -2155.2882439196296 + corr_stat_2: 4934.516543040824 + corr_stat_3: -471.38292876492096 + corr_stat_4: -581.2003879494953 + corr_stat_5: 615.5501828083671 + corr_stat_6: -950.9679796206973 + corr_stat_7: -106.06269758638642 + corr_stat_8: 1511.2190627848224 + corr_stat_9: -430.7887385097331 + corr_stat_10: -225.36521698447413 + corr_stat_11: -54.84589541681017 + corr_stat_12: 31.288126990141667 + corr_stat_13: -204.7095163680079 + corr_stat_14: 3.0691386645534613 + corr_stat_15: -21.068150787421757 + corr_stat_16: -35.20219444728588 + corr_stat_17: -13.332194714042275 + corr_stat_18: 104.60291831225472 + corr_stat_19: 7.824680459901309 + corr_stat_20: 43.342484752036555 + corr_stat_21: 456.1833454175994 + corr_stat_22: -43.501430874379245 stat: 700.0 sys_luminosity: 19916.0 -- sys_corr_1: 594.9318802042794 - sys_corr_2: 261.7432570617978 - sys_corr_3: -102.75927705148247 - sys_corr_4: -192.5047261237337 - sys_corr_5: -51.01981494082296 - sys_corr_6: 112.4395430741349 - sys_corr_7: 24.06513335533291 - sys_corr_8: 0.7584636374282919 - sys_corr_9: -6.740760162375406 - sys_corr_10: 2.6144281105797953 - sys_corr_11: -3.284213258201071 - sys_corr_12: 5.045336217437092 - sys_corr_13: -35.98824639620018 - sys_corr_14: -46.4633608858924 - sys_corr_15: -17.678671318328874 - sys_corr_16: -13.400935152820082 - sys_corr_17: 1.1090395112444495 - sys_corr_18: 7.65638337099575 - sys_corr_19: -0.28461603397492746 - sys_corr_20: 0.14327439235085762 - sys_corr_21: -3.001018064239546 - sys_corr_22: -0.13336006203011874 - corr_stat_1: -745.052021781752 - corr_stat_2: 5313.211422009566 - corr_stat_3: -186.4246792074321 - corr_stat_4: -889.3816901545814 - corr_stat_5: 910.5616931332904 - corr_stat_6: -828.8117322584217 - corr_stat_7: 722.182210706628 - corr_stat_8: -1309.6729787010815 - corr_stat_9: -244.54927972118824 - corr_stat_10: -77.14758617826935 - corr_stat_11: -76.9659251935506 - corr_stat_12: 38.5267500390361 - corr_stat_13: 100.32812925526501 - corr_stat_14: 13.926056438884839 - corr_stat_15: -153.92428512515048 - corr_stat_16: 12.83768892174534 - corr_stat_17: 8.785713924890883 - corr_stat_18: 40.121713840280556 - corr_stat_19: 276.381466255453 - corr_stat_20: 0.2281537211880937 - corr_stat_21: -27.003510605943102 - corr_stat_22: 300.00292492617 +- sys_corr_1: 594.9318802042797 + sys_corr_2: 261.74325706179764 + sys_corr_3: -102.75927705148241 + sys_corr_4: -192.50472612373449 + sys_corr_5: -51.01981494082307 + sys_corr_6: 112.43954307413426 + sys_corr_7: 24.06513335533359 + sys_corr_8: 0.7584636374282803 + sys_corr_9: -6.740760162375726 + sys_corr_10: 2.6144281105794653 + sys_corr_11: -3.2842132582007664 + sys_corr_12: 5.0453362174353495 + sys_corr_13: -35.98824639619867 + sys_corr_14: -46.46336088589302 + sys_corr_15: -17.67867131832924 + sys_corr_16: 13.400935152820072 + sys_corr_17: -1.1090395112445919 + sys_corr_18: 7.6563833709955285 + sys_corr_19: -0.2846160339748438 + sys_corr_20: 0.1432743923508858 + sys_corr_21: -3.001018064239508 + sys_corr_22: -0.133360062030012 + corr_stat_1: -745.0520217817559 + corr_stat_2: 5313.211422009568 + corr_stat_3: -186.42467920743232 + corr_stat_4: -889.3816901545781 + corr_stat_5: 910.5616931332996 + corr_stat_6: -828.8117322584321 + corr_stat_7: 722.1822107065503 + corr_stat_8: -1309.6729787010752 + corr_stat_9: -244.54927972120834 + corr_stat_10: -77.14758617834087 + corr_stat_11: -76.96592519361597 + corr_stat_12: 38.52675003899398 + corr_stat_13: -100.32812925526198 + corr_stat_14: -13.926056438880575 + corr_stat_15: -153.92428512515252 + corr_stat_16: 12.837688921744073 + corr_stat_17: 8.785713924894596 + corr_stat_18: 40.12171384028465 + corr_stat_19: 276.38146625545755 + corr_stat_20: 0.22815372119146796 + corr_stat_21: -27.00351060594259 + corr_stat_22: 300.00292492616995 stat: 700.0 sys_luminosity: 20134.4 -- sys_corr_1: 565.3008372479046 +- sys_corr_1: 565.3008372479043 sys_corr_2: 328.39672630225147 - sys_corr_3: -74.83796905948881 - sys_corr_4: -64.09783959033821 - sys_corr_5: 2.298910876968535 - sys_corr_6: -213.44152365424685 - sys_corr_7: 64.60970751510017 - sys_corr_8: 0.5467537122696767 - sys_corr_9: -8.330216644361307 - sys_corr_10: 4.691249995683357 - sys_corr_11: -0.15070654924100937 - sys_corr_12: -0.5565858922978227 - sys_corr_13: 44.258789588718784 - sys_corr_14: -11.731114470040723 - sys_corr_15: -25.16287616247673 - sys_corr_16: -7.774265092304922 - sys_corr_17: 1.7639009476735714 - sys_corr_18: 15.30655541608307 - sys_corr_19: -0.28561811278250443 - sys_corr_20: -1.4170688875141033 - sys_corr_21: -4.76198231641162 - sys_corr_22: -0.2159995041787852 - corr_stat_1: -170.83640176197792 + sys_corr_3: -74.83796905948869 + sys_corr_4: -64.09783959033906 + sys_corr_5: 2.298910876972473 + sys_corr_6: -213.44152365424736 + sys_corr_7: 64.60970751509825 + sys_corr_8: 0.5467537122696421 + sys_corr_9: -8.330216644361139 + sys_corr_10: 4.691249995683057 + sys_corr_11: -0.15070654924093982 + sys_corr_12: -0.5565858922972166 + sys_corr_13: 44.25878958871936 + sys_corr_14: -11.73111447004031 + sys_corr_15: -25.16287616247645 + sys_corr_16: 7.7742650923046375 + sys_corr_17: -1.7639009476733551 + sys_corr_18: 15.306555416082686 + sys_corr_19: -0.28561811278253196 + sys_corr_20: -1.4170688875140423 + sys_corr_21: -4.76198231641166 + sys_corr_22: -0.21599950417874011 + corr_stat_1: -170.83640176198156 corr_stat_2: 5668.932849882173 - corr_stat_3: 66.88822551556335 - corr_stat_4: -1070.5101598450406 - corr_stat_5: 907.7265683476663 - corr_stat_6: 1366.0210099131073 - corr_stat_7: -997.2406223706386 - corr_stat_8: -50.97165847839084 - corr_stat_9: -130.0863686838882 - corr_stat_10: -2.8512682336236055 - corr_stat_11: -55.793027321609074 - corr_stat_12: 18.898136834603807 - corr_stat_13: -121.17669291200994 - corr_stat_14: -13.497900557058601 - corr_stat_15: -397.096466520075 - corr_stat_16: -7.17774019093213 - corr_stat_17: -0.444743234526175 - corr_stat_18: 11.162762573050532 - corr_stat_19: -114.80653078080705 - corr_stat_20: -1.005757416990335 - corr_stat_21: 8.52149744827535 - corr_stat_22: 9.93300401316779 + corr_stat_3: 66.88822551556422 + corr_stat_4: -1070.510159845039 + corr_stat_5: 907.7265683476448 + corr_stat_6: 1366.021009913165 + corr_stat_7: -997.2406223705216 + corr_stat_8: -50.971658478378195 + corr_stat_9: -130.08636868392873 + corr_stat_10: -2.8512682336066235 + corr_stat_11: -55.793027321609706 + corr_stat_12: 18.898136834634933 + corr_stat_13: 121.17669291201248 + corr_stat_14: 13.497900557052164 + corr_stat_15: -397.09646652007376 + corr_stat_16: -7.177740190931448 + corr_stat_17: -0.44474323452716513 + corr_stat_18: 11.162762573056154 + corr_stat_19: -114.80653078080503 + corr_stat_20: -1.0057574169916026 + corr_stat_21: 8.521497448275863 + corr_stat_22: 9.933004013162662 stat: 700.0 sys_luminosity: 20139.600000000002 -- sys_corr_1: 383.19473930737104 - sys_corr_2: 545.0921814128543 - sys_corr_3: -65.6381297955554 - sys_corr_4: 46.938365317297894 - sys_corr_5: -31.84343992957189 - sys_corr_6: -7.306221467817178 - sys_corr_7: -151.74460677124364 - sys_corr_8: 0.6156508139253739 - sys_corr_9: -106.65161420832463 - sys_corr_10: -1.327839259650977 - sys_corr_11: -4.081191717702942 - sys_corr_12: 7.899729796801644 - sys_corr_13: 15.921893473386667 - sys_corr_14: -14.977686760154803 - sys_corr_15: 32.7868641709886 - sys_corr_16: -26.989724727146264 - sys_corr_17: 1.1488614299864917 - sys_corr_18: 39.62997427173546 - sys_corr_19: -0.989022204637866 - sys_corr_20: -2.9012291243589674 - sys_corr_21: -10.589702208680745 - sys_corr_22: -0.7042053265160124 - corr_stat_1: 2517.4874438840975 - corr_stat_2: 5921.7657050146845 - corr_stat_3: 184.57364281766053 - corr_stat_4: -1027.169267261988 - corr_stat_5: -751.2247453150487 - corr_stat_6: 694.7318609801782 - corr_stat_7: 1421.9140838299813 - corr_stat_8: 523.8976311125455 - corr_stat_9: 389.2074019250192 - corr_stat_10: -171.84397367075863 - corr_stat_11: -48.6736375962118 - corr_stat_12: 87.60170224400451 - corr_stat_13: -218.16253588808084 - corr_stat_14: -15.287563950406634 - corr_stat_15: -202.3277910636311 - corr_stat_16: -6.315644639942563 - corr_stat_17: -3.4646455022324107 - corr_stat_18: 15.846970406342963 - corr_stat_19: 284.39526378034907 - corr_stat_20: -19.735402037704223 - corr_stat_21: -15.706748672275536 - corr_stat_22: -202.14713105077422 +- sys_corr_1: 383.194739307371 + sys_corr_2: 545.0921814128542 + sys_corr_3: -65.63812979555546 + sys_corr_4: 46.938365317298 + sys_corr_5: -31.84343992957202 + sys_corr_6: -7.306221467815944 + sys_corr_7: -151.74460677124446 + sys_corr_8: 0.6156508139252915 + sys_corr_9: -106.65161420832403 + sys_corr_10: -1.3278392596512905 + sys_corr_11: -4.081191717703084 + sys_corr_12: 7.89972979680149 + sys_corr_13: 15.921893473387382 + sys_corr_14: -14.977686760154073 + sys_corr_15: 32.78686417098852 + sys_corr_16: 26.98972472714692 + sys_corr_17: -1.148861429986049 + sys_corr_18: 39.62997427173518 + sys_corr_19: -0.9890222046383202 + sys_corr_20: -2.901229124358533 + sys_corr_21: -10.589702208680936 + sys_corr_22: -0.7042053265158305 + corr_stat_1: 2517.487443884093 + corr_stat_2: 5921.765705014687 + corr_stat_3: 184.57364281766507 + corr_stat_4: -1027.1692672619902 + corr_stat_5: -751.2247453150617 + corr_stat_6: 694.7318609800939 + corr_stat_7: 1421.9140838300316 + corr_stat_8: 523.8976311126207 + corr_stat_9: 389.2074019250538 + corr_stat_10: -171.84397367071605 + corr_stat_11: -48.673637596261806 + corr_stat_12: 87.60170224407173 + corr_stat_13: 218.1625358880839 + corr_stat_14: 15.28756395040359 + corr_stat_15: -202.3277910636218 + corr_stat_16: -6.3156446399430015 + corr_stat_17: -3.4646455022345335 + corr_stat_18: 15.84697040634834 + corr_stat_19: 284.39526378034833 + corr_stat_20: -19.735402037700524 + corr_stat_21: -15.706748672278014 + corr_stat_22: -202.1471310507775 stat: 700.0 sys_luminosity: 20186.4 -- sys_corr_1: 172.06327707996616 - sys_corr_2: 550.153684549162 - sys_corr_3: -63.48298556263574 - sys_corr_4: 45.59970054977344 - sys_corr_5: -19.41016191164169 - sys_corr_6: 13.848498341098004 - sys_corr_7: 4.88882989520124 - sys_corr_8: 3.822246806477854 - sys_corr_9: 75.82068126831868 - sys_corr_10: 3.5815797425983757 - sys_corr_11: -2.124372926332976 - sys_corr_12: 5.142506728346639 - sys_corr_13: -2.003389527095131 - sys_corr_14: 6.95751962376297 - sys_corr_15: 20.657016033834815 - sys_corr_16: 29.198254167582355 - sys_corr_17: 8.015363844156917 - sys_corr_18: 31.783728192745777 - sys_corr_19: -10.695442654097583 - sys_corr_20: 55.51045993115108 - sys_corr_21: 93.68672227020932 - sys_corr_22: 28.930859073422102 - corr_stat_1: 4994.348128856371 - corr_stat_2: 5745.99058822247 - corr_stat_3: -173.95344444399237 - corr_stat_4: -857.7958228378614 - corr_stat_5: -1289.7513273743323 - corr_stat_6: -533.8152344373649 - corr_stat_7: -774.7986147531246 - corr_stat_8: -277.80463252161536 - corr_stat_9: -666.8581893939929 - corr_stat_10: 400.2163175807066 - corr_stat_11: -201.2077490689269 - corr_stat_12: -146.83033511151734 - corr_stat_13: -549.8068039900002 - corr_stat_14: 219.94869211733246 - corr_stat_15: 162.00960956842462 - corr_stat_16: 55.51344691590985 - corr_stat_17: 15.802155117856875 - corr_stat_18: 13.285748918955077 - corr_stat_19: -38.58735955874224 - corr_stat_20: 3.8650212885591366 - corr_stat_21: 27.775923810276407 - corr_stat_22: 92.12955403262859 +- sys_corr_1: 172.0632770799663 + sys_corr_2: 550.1536845491618 + sys_corr_3: -63.482985562635804 + sys_corr_4: 45.59970054977342 + sys_corr_5: -19.410161911642316 + sys_corr_6: 13.848498341098262 + sys_corr_7: 4.888829895201943 + sys_corr_8: 3.8222468064779624 + sys_corr_9: 75.82068126831898 + sys_corr_10: 3.581579742598612 + sys_corr_11: -2.1243729263326405 + sys_corr_12: 5.1425067283457615 + sys_corr_13: -2.003389527095391 + sys_corr_14: 6.957519623762916 + sys_corr_15: 20.6570160338358 + sys_corr_16: -29.19825416758101 + sys_corr_17: -8.015363844156944 + sys_corr_18: 31.783728192746917 + sys_corr_19: -10.695442654095572 + sys_corr_20: 55.510459931146876 + sys_corr_21: 93.6867222702106 + sys_corr_22: 28.93085907342108 + corr_stat_1: 4994.34812885637 + corr_stat_2: 5745.990588222477 + corr_stat_3: -173.9534444439994 + corr_stat_4: -857.7958228378604 + corr_stat_5: -1289.7513273743357 + corr_stat_6: -533.815234437326 + corr_stat_7: -774.7986147531709 + corr_stat_8: -277.80463252166464 + corr_stat_9: -666.8581893940104 + corr_stat_10: 400.2163175806937 + corr_stat_11: -201.2077490688185 + corr_stat_12: -146.83033511150782 + corr_stat_13: 549.8068039900013 + corr_stat_14: -219.94869211733018 + corr_stat_15: 162.00960956843198 + corr_stat_16: 55.51344691591267 + corr_stat_17: 15.802155117873054 + corr_stat_18: 13.285748918941575 + corr_stat_19: -38.587359558735706 + corr_stat_20: 3.8650212885592063 + corr_stat_21: 27.77592381028046 + corr_stat_22: 92.12955403263155 stat: 600.0 sys_luminosity: 20048.600000000002 -- sys_corr_1: -126.04532642304895 - sys_corr_2: 672.8451015002147 - sys_corr_3: -58.81852041513922 - sys_corr_4: 56.48886575998081 - sys_corr_5: -22.383683712177085 - sys_corr_6: 26.44602872149218 - sys_corr_7: 40.62152545216209 - sys_corr_8: -42.375489639037134 - sys_corr_9: 23.547143599407413 - sys_corr_10: 3.7214004315805993 - sys_corr_11: -2.3680689469706575 - sys_corr_12: -13.095751992875226 - sys_corr_13: 20.081698483545388 - sys_corr_14: -5.222952303380546 - sys_corr_15: 17.431603379883644 - sys_corr_16: -47.022120272425056 - sys_corr_17: 3.5686670005880767 - sys_corr_18: -77.29211588909311 - sys_corr_19: -0.17168897068133662 - sys_corr_20: -0.9768683502227892 - sys_corr_21: -15.46475739473905 - sys_corr_22: -13.317501975974361 +- sys_corr_1: -126.04532642304865 + sys_corr_2: 672.8451015002148 + sys_corr_3: -58.81852041513919 + sys_corr_4: 56.48886575998057 + sys_corr_5: -22.383683712177866 + sys_corr_6: 26.446028721492407 + sys_corr_7: 40.6215254521626 + sys_corr_8: -42.37548963903701 + sys_corr_9: 23.547143599407406 + sys_corr_10: 3.72140043158024 + sys_corr_11: -2.3680689469707876 + sys_corr_12: -13.095751992875053 + sys_corr_13: 20.081698483545424 + sys_corr_14: -5.222952303379985 + sys_corr_15: 17.4316033798826 + sys_corr_16: 47.02212027242443 + sys_corr_17: -3.5686670005875563 + sys_corr_18: -77.29211588909409 + sys_corr_19: -0.17168897068171587 + sys_corr_20: -0.9768683502219107 + sys_corr_21: -15.464757394738998 + sys_corr_22: -13.317501975973514 corr_stat_1: 16712.64947645144 - corr_stat_2: 6437.057829828418 - corr_stat_3: -1325.8854951072788 - corr_stat_4: 890.8766348551662 - corr_stat_5: 439.3331890052823 - corr_stat_6: 56.23441277576726 - corr_stat_7: 32.23387557537711 - corr_stat_8: 35.25144570602926 - corr_stat_9: 311.00831192567756 - corr_stat_10: -128.33775616997178 - corr_stat_11: 184.03084763668556 - corr_stat_12: 94.37157195606561 - corr_stat_13: -373.0365430799959 - corr_stat_14: -345.57260158879495 - corr_stat_15: 256.840348734871 - corr_stat_16: -14.00847985493805 - corr_stat_17: -56.29748534752247 - corr_stat_18: -22.359741881234598 - corr_stat_19: -34.585060925300375 - corr_stat_20: -3.8504694525927063 - corr_stat_21: 24.14674605712456 - corr_stat_22: 123.9735214593314 + corr_stat_2: 6437.057829828434 + corr_stat_3: -1325.885495107272 + corr_stat_4: 890.8766348551665 + corr_stat_5: 439.3331890052853 + corr_stat_6: 56.234412775765755 + corr_stat_7: 32.233875575382214 + corr_stat_8: 35.25144570602988 + corr_stat_9: 311.0083119256851 + corr_stat_10: -128.3377561699964 + corr_stat_11: 184.03084763662068 + corr_stat_12: 94.3715719560189 + corr_stat_13: 373.0365430799836 + corr_stat_14: 345.572601588803 + corr_stat_15: 256.8403487348713 + corr_stat_16: -14.008479854945604 + corr_stat_17: -56.297485347532756 + corr_stat_18: -22.35974188122898 + corr_stat_19: -34.5850609252996 + corr_stat_20: -3.8504694525916676 + corr_stat_21: 24.14674605712766 + corr_stat_22: 123.9735214593311 stat: 700.0 sys_luminosity: 19455.800000000003 -- sys_corr_1: 555.917764025605 - sys_corr_2: -132.40294231130838 - sys_corr_3: 48.11288237520042 - sys_corr_4: 64.62930714372253 - sys_corr_5: -46.52874684220413 - sys_corr_6: 30.08803149662605 - sys_corr_7: 72.05991348220304 - sys_corr_8: 0.45630460675689327 - sys_corr_9: -44.15596260395442 - sys_corr_10: -34.77441014636434 - sys_corr_11: 6.995551360939531 - sys_corr_12: -4.8252782861533365 - sys_corr_13: 7.386864662116333 - sys_corr_14: -10.041402059717555 - sys_corr_15: -20.334449786798096 - sys_corr_16: -59.63473308032212 - sys_corr_17: -13.89635407119496 - sys_corr_18: 16.6827361473408 - sys_corr_19: 13.488462389559643 - sys_corr_20: -48.088499587476335 - sys_corr_21: 30.813939855992864 - sys_corr_22: 86.01319875931665 - corr_stat_1: -3522.548905053841 +- sys_corr_1: 555.9177640256048 + sys_corr_2: -132.40294231130835 + sys_corr_3: 48.11288237520048 + sys_corr_4: 64.62930714372166 + sys_corr_5: -46.528746842205365 + sys_corr_6: 30.08803149662597 + sys_corr_7: 72.05991348220348 + sys_corr_8: 0.4563046067568299 + sys_corr_9: -44.15596260395643 + sys_corr_10: -34.774410146365774 + sys_corr_11: 6.995551360939558 + sys_corr_12: -4.82527828615189 + sys_corr_13: 7.3868646621163885 + sys_corr_14: -10.041402059716956 + sys_corr_15: -20.334449786798327 + sys_corr_16: 59.63473308032045 + sys_corr_17: 13.896354071196184 + sys_corr_18: 16.68273614734021 + sys_corr_19: 13.488462389560302 + sys_corr_20: -48.08849958747949 + sys_corr_21: 30.8139398559944 + sys_corr_22: 86.0131987593152 + corr_stat_1: -3522.5489050538445 corr_stat_2: 3592.987812920348 - corr_stat_3: 66.75937521526407 - corr_stat_4: 910.7502541754601 - corr_stat_5: 35.26706681327778 - corr_stat_6: 136.06555993180004 - corr_stat_7: 152.2834165401418 - corr_stat_8: -10.102419329972072 - corr_stat_9: -149.41399319105233 - corr_stat_10: 221.46622334445763 - corr_stat_11: -595.6129789838114 - corr_stat_12: -391.5349866227234 - corr_stat_13: -284.70181258662603 - corr_stat_14: -9.094016376152993 - corr_stat_15: -227.65699503769358 - corr_stat_16: -451.1033442400467 - corr_stat_17: 791.0590009999727 - corr_stat_18: 561.4808304884575 - corr_stat_19: 73.27402883433824 - corr_stat_20: -106.37953740103646 - corr_stat_21: 121.1137867526389 - corr_stat_22: 82.70241353497782 + corr_stat_3: 66.75937521525933 + corr_stat_4: 910.7502541754591 + corr_stat_5: 35.26706681327127 + corr_stat_6: 136.0655599318002 + corr_stat_7: 152.28341654015688 + corr_stat_8: -10.102419329960536 + corr_stat_9: -149.41399319106907 + corr_stat_10: 221.46622334455466 + corr_stat_11: -595.6129789835468 + corr_stat_12: -391.53498662252935 + corr_stat_13: 284.70181258663774 + corr_stat_14: 9.094016376152078 + corr_stat_15: -227.65699503769667 + corr_stat_16: -451.103344240016 + corr_stat_17: 791.0590009998517 + corr_stat_18: 561.48083048846 + corr_stat_19: 73.27402883433928 + corr_stat_20: -106.3795374010238 + corr_stat_21: 121.11378675262905 + corr_stat_22: 82.7024135349722 stat: 600.0 sys_luminosity: 14794.000000000002 - sys_corr_1: 528.5410413494166 - sys_corr_2: -238.9593053736411 - sys_corr_3: 48.67398233043298 - sys_corr_4: 21.308383351548024 - sys_corr_5: -19.655423028607842 - sys_corr_6: 7.659469916463303 - sys_corr_7: 1.3951869404382642 - sys_corr_8: -0.13539446799901045 - sys_corr_9: 14.393875553378614 - sys_corr_10: 19.53682968575301 - sys_corr_11: -2.7025407024306354 - sys_corr_12: 82.1210892159399 - sys_corr_13: 14.47925133662223 - sys_corr_14: -9.981950651622661 - sys_corr_15: -8.730188843090831 - sys_corr_16: -28.930557328246906 - sys_corr_17: 106.3744304674103 - sys_corr_18: -1.2718745326856207 - sys_corr_19: -1.8163854714894487 - sys_corr_20: 16.259132305830704 - sys_corr_21: -10.935984694972808 - sys_corr_22: -2.392676783343521 - corr_stat_1: -5099.3609370652675 - corr_stat_2: 3494.658846204366 - corr_stat_3: 145.29038085493747 - corr_stat_4: 789.2217232415146 - corr_stat_5: -222.51706131954936 - corr_stat_6: 66.02746004042464 - corr_stat_7: -68.93826433782553 - corr_stat_8: -138.25216655657053 - corr_stat_9: -219.30945484717222 - corr_stat_10: -696.085154670104 - corr_stat_11: -1.1492337585850074 - corr_stat_12: 274.33272163941217 - corr_stat_13: -328.5295360695533 - corr_stat_14: 93.38007916744075 - corr_stat_15: -315.9800133914312 - corr_stat_16: -125.9110156460471 - corr_stat_17: -63.2305046631798 - corr_stat_18: -761.8612858780284 - corr_stat_19: 186.36285952382661 - corr_stat_20: -541.2705341059174 - corr_stat_21: 476.0034771484754 - corr_stat_22: 207.85432940520184 + sys_corr_2: -238.95930537364103 + sys_corr_3: 48.67398233043306 + sys_corr_4: 21.30838335154781 + sys_corr_5: -19.655423028608062 + sys_corr_6: 7.659469916463421 + sys_corr_7: 1.3951869404389083 + sys_corr_8: -0.13539446799896507 + sys_corr_9: 14.393875553378988 + sys_corr_10: 19.5368296857518 + sys_corr_11: -2.702540702430029 + sys_corr_12: 82.12108921593685 + sys_corr_13: 14.47925133662323 + sys_corr_14: -9.981950651623116 + sys_corr_15: -8.730188843091387 + sys_corr_16: 28.93055732824761 + sys_corr_17: -106.37443046741068 + sys_corr_18: -1.2718745326846694 + sys_corr_19: -1.8163854714906535 + sys_corr_20: 16.259132305832452 + sys_corr_21: -10.935984694972475 + sys_corr_22: -2.3926767833429894 + corr_stat_1: -5099.360937065273 + corr_stat_2: 3494.6588462043646 + corr_stat_3: 145.29038085493704 + corr_stat_4: 789.2217232415122 + corr_stat_5: -222.51706131954916 + corr_stat_6: 66.02746004042582 + corr_stat_7: -68.93826433783013 + corr_stat_8: -138.2521665565624 + corr_stat_9: -219.3094548471554 + corr_stat_10: -696.085154670172 + corr_stat_11: -1.1492337588945354 + corr_stat_12: 274.33272163931724 + corr_stat_13: 328.5295360695479 + corr_stat_14: -93.38007916743109 + corr_stat_15: -315.98001339142786 + corr_stat_16: -125.91101564605758 + corr_stat_17: -63.23050466310938 + corr_stat_18: -761.8612858780325 + corr_stat_19: 186.36285952382067 + corr_stat_20: -541.2705341059532 + corr_stat_21: 476.0034771485141 + corr_stat_22: 207.8543294051984 stat: 600.0 sys_luminosity: 14791.400000000001 -- sys_corr_1: 550.0072497654942 - sys_corr_2: -173.8102731006644 - sys_corr_3: 59.3029703423793 - sys_corr_4: 21.16007539773679 - sys_corr_5: -18.318525559594338 - sys_corr_6: 9.71373028538675 - sys_corr_7: 9.403290662099735 - sys_corr_8: 0.5279492665828491 - sys_corr_9: 2.5450662928169465 - sys_corr_10: 54.854078744319004 - sys_corr_11: -70.35911458544844 - sys_corr_12: -34.87729129334566 - sys_corr_13: 5.518613207990165 - sys_corr_14: -2.118431647606307 - sys_corr_15: -12.39016270533589 - sys_corr_16: -32.861388120771515 - sys_corr_17: -23.364306506341617 - sys_corr_18: 8.32497204288171 - sys_corr_19: -100.72023932062123 - sys_corr_20: 34.75160786959509 - sys_corr_21: -19.51183516219933 - sys_corr_22: -0.20352788516695577 - corr_stat_1: -4119.263736476755 - corr_stat_2: 3600.532847070837 - corr_stat_3: 268.59345094696596 - corr_stat_4: 700.2823514146914 - corr_stat_5: 34.23293655769156 - corr_stat_6: 47.834890216049814 - corr_stat_7: 74.7447585637434 - corr_stat_8: -2.0441245026148267 - corr_stat_9: -107.40533243728541 - corr_stat_10: 536.5235814637208 - corr_stat_11: 212.79782684607218 - corr_stat_12: 540.2422807517961 - corr_stat_13: -268.4743832759407 - corr_stat_14: 158.5424108748611 - corr_stat_15: -177.1349065117072 - corr_stat_16: -254.7713054472003 - corr_stat_17: -874.5927825713262 - corr_stat_18: 605.8649406495769 - corr_stat_19: 106.5765961147468 - corr_stat_20: -97.5593998499495 - corr_stat_21: 38.6399287592184 - corr_stat_22: 42.99828106312707 +- sys_corr_1: 550.0072497654938 + sys_corr_2: -173.81027310066457 + sys_corr_3: 59.30297034237928 + sys_corr_4: 21.160075397736527 + sys_corr_5: -18.318525559594484 + sys_corr_6: 9.713730285387102 + sys_corr_7: 9.403290662099927 + sys_corr_8: 0.5279492665827921 + sys_corr_9: 2.54506629281804 + sys_corr_10: 54.85407874431502 + sys_corr_11: -70.35911458544811 + sys_corr_12: -34.877291293346005 + sys_corr_13: 5.518613207989995 + sys_corr_14: -2.118431647606133 + sys_corr_15: -12.390162705336413 + sys_corr_16: 32.86138812077157 + sys_corr_17: 23.36430650634034 + sys_corr_18: 8.32497204288024 + sys_corr_19: -100.7202393206207 + sys_corr_20: 34.751607869594636 + sys_corr_21: -19.511835162198384 + sys_corr_22: -0.20352788516534992 + corr_stat_1: -4119.263736476762 + corr_stat_2: 3600.532847070835 + corr_stat_3: 268.5934509469639 + corr_stat_4: 700.2823514146909 + corr_stat_5: 34.23293655768934 + corr_stat_6: 47.83489021604584 + corr_stat_7: 74.74475856375668 + corr_stat_8: -2.0441245026205035 + corr_stat_9: -107.40533243729726 + corr_stat_10: 536.523581463567 + corr_stat_11: 212.79782684586806 + corr_stat_12: 540.242280751777 + corr_stat_13: 268.4743832759423 + corr_stat_14: -158.5424108748457 + corr_stat_15: -177.13490651169624 + corr_stat_16: -254.77130544722985 + corr_stat_17: -874.5927825714178 + corr_stat_18: 605.8649406495368 + corr_stat_19: 106.57659611474985 + corr_stat_20: -97.55939984991572 + corr_stat_21: 38.63992875919733 + corr_stat_22: 42.99828106312595 stat: 600.0 sys_luminosity: 14666.600000000002 -- sys_corr_1: 555.2263226079191 - sys_corr_2: -155.33493298538977 - sys_corr_3: 59.122126944319426 - sys_corr_4: 12.870960752439935 - sys_corr_5: -13.206420337106815 - sys_corr_6: 4.74235748778285 - sys_corr_7: -9.978377206318738 - sys_corr_8: -1.4129655946008497 - sys_corr_9: 20.80690474760005 - sys_corr_10: 41.49053762568168 - sys_corr_11: 77.75846377540978 - sys_corr_12: -32.65919407133313 - sys_corr_13: 4.034504550608546 - sys_corr_14: -4.024555597676139 - sys_corr_15: -14.851744069821013 - sys_corr_16: -43.228685693730206 - sys_corr_17: -27.864407942028965 - sys_corr_18: 12.831304926171795 - sys_corr_19: 60.53398674368606 - sys_corr_20: 82.12952974858551 - sys_corr_21: -29.914169728242214 - sys_corr_22: 0.7265775196142032 - corr_stat_1: -3862.4544151605046 - corr_stat_2: 3597.2754605267073 - corr_stat_3: 327.30833007902703 +- sys_corr_1: 555.2263226079192 + sys_corr_2: -155.33493298538983 + sys_corr_3: 59.12212694431934 + sys_corr_4: 12.870960752439954 + sys_corr_5: -13.206420337106902 + sys_corr_6: 4.74235748778277 + sys_corr_7: -9.978377206319424 + sys_corr_8: -1.4129655946007746 + sys_corr_9: 20.806904747602218 + sys_corr_10: 41.49053762568739 + sys_corr_11: 77.75846377541 + sys_corr_12: -32.65919407133974 + sys_corr_13: 4.034504550607704 + sys_corr_14: -4.024555597675617 + sys_corr_15: -14.851744069821605 + sys_corr_16: 43.228685693730434 + sys_corr_17: 27.864407942031175 + sys_corr_18: 12.831304926170914 + sys_corr_19: 60.53398674368713 + sys_corr_20: 82.12952974858662 + sys_corr_21: -29.91416972824148 + sys_corr_22: 0.7265775196160755 + corr_stat_1: -3862.4544151605087 + corr_stat_2: 3597.2754605267064 + corr_stat_3: 327.308330079026 corr_stat_4: 516.6696158720143 - corr_stat_5: -32.32161476304895 - corr_stat_6: -16.162482259416418 - corr_stat_7: -8.720968782911333 - corr_stat_8: -26.32207281586574 - corr_stat_9: 26.283646991931892 - corr_stat_10: 23.839438735180188 - corr_stat_11: 620.6495220067077 - corr_stat_12: -522.5124214032068 - corr_stat_13: -202.0670815069115 - corr_stat_14: -121.98979832216662 - corr_stat_15: -225.2526896440873 - corr_stat_16: 1043.897757713555 - corr_stat_17: 108.6090289184127 - corr_stat_18: 299.0018038900033 - corr_stat_19: 108.45770469437774 - corr_stat_20: -96.3836766174098 - corr_stat_21: 192.28190360871184 - corr_stat_22: -4.555512354654779 + corr_stat_5: -32.32161476304228 + corr_stat_6: -16.16248225941662 + corr_stat_7: -8.72096878290688 + corr_stat_8: -26.322072815861475 + corr_stat_9: 26.283646991940063 + corr_stat_10: 23.83943873540167 + corr_stat_11: 620.6495220070045 + corr_stat_12: -522.5124214033768 + corr_stat_13: 202.06708150690616 + corr_stat_14: 121.98979832214539 + corr_stat_15: -225.25268964406698 + corr_stat_16: 1043.8977577135563 + corr_stat_17: 108.60902891856847 + corr_stat_18: 299.00180389007943 + corr_stat_19: 108.457704694365 + corr_stat_20: -96.38367661737131 + corr_stat_21: 192.28190360867995 + corr_stat_22: -4.555512354672692 stat: 600.0 sys_luminosity: 14458.6 -- sys_corr_1: 557.104362679117 - sys_corr_2: -136.99973546979606 - sys_corr_3: 73.23640873656848 - sys_corr_4: -7.765611543188171 - sys_corr_5: 4.176760017614715 - sys_corr_6: -2.5605010875011205 - sys_corr_7: -32.86393191585421 - sys_corr_8: -0.5733773791683643 - sys_corr_9: 43.8208663067216 - sys_corr_10: -74.30893572646464 - sys_corr_11: -15.209796392155097 - sys_corr_12: -19.59105723570434 - sys_corr_13: 15.592073227176222 - sys_corr_14: -10.300910143707807 - sys_corr_15: -13.080622675840623 - sys_corr_16: -58.310900620579815 - sys_corr_17: -9.736153887719764 - sys_corr_18: 8.817514405795226 - sys_corr_19: 7.630972202376449 - sys_corr_20: -24.125332939562686 - sys_corr_21: 57.34052246732062 - sys_corr_22: -90.87957861190782 - corr_stat_1: -3742.3832257679487 - corr_stat_2: 3689.3787938492324 - corr_stat_3: 528.0503792742089 - corr_stat_4: 361.01753835103744 - corr_stat_5: 4.714853412646107 - corr_stat_6: -258.66076598594253 - corr_stat_7: -239.9481691236512 - corr_stat_8: -6.976473265599148 - corr_stat_9: 720.3731593886575 - corr_stat_10: -23.250220388496178 - corr_stat_11: -116.00455790100132 - corr_stat_12: 37.97251510701275 - corr_stat_13: -356.93981100649995 - corr_stat_14: 39.718140451456925 - corr_stat_15: -192.41264707071204 - corr_stat_16: -50.826538311793946 - corr_stat_17: -10.8235439139584 - corr_stat_18: -284.5995714350984 - corr_stat_19: 183.17258356278785 - corr_stat_20: 1124.8302918658956 - corr_stat_21: 102.2217196099681 - corr_stat_22: 77.48770362130234 +- sys_corr_1: 557.1043626791165 + sys_corr_2: -136.99973546979615 + sys_corr_3: 73.23640873656862 + sys_corr_4: -7.7656115431880615 + sys_corr_5: 4.1767600176149005 + sys_corr_6: -2.5605010875010548 + sys_corr_7: -32.86393191585379 + sys_corr_8: -0.5733773791683571 + sys_corr_9: 43.82086630671995 + sys_corr_10: -74.30893572646492 + sys_corr_11: -15.209796392155514 + sys_corr_12: -19.591057235698017 + sys_corr_13: 15.59207322717714 + sys_corr_14: -10.300910143707151 + sys_corr_15: -13.080622675841095 + sys_corr_16: 58.310900620580526 + sys_corr_17: 9.736153887719759 + sys_corr_18: 8.817514405792867 + sys_corr_19: 7.630972202376171 + sys_corr_20: -24.125332939563794 + sys_corr_21: 57.34052246731807 + sys_corr_22: -90.87957861190868 + corr_stat_1: -3742.3832257679496 + corr_stat_2: 3689.3787938492305 + corr_stat_3: 528.0503792742101 + corr_stat_4: 361.0175383510363 + corr_stat_5: 4.714853412665139 + corr_stat_6: -258.66076598592565 + corr_stat_7: -239.9481691236739 + corr_stat_8: -6.97647326562804 + corr_stat_9: 720.37315938866 + corr_stat_10: -23.25022038855242 + corr_stat_11: -116.00455790100182 + corr_stat_12: 37.97251510708129 + corr_stat_13: 356.93981100650376 + corr_stat_14: -39.71814045145907 + corr_stat_15: -192.4126470707119 + corr_stat_16: -50.826538311784965 + corr_stat_17: -10.823543913946256 + corr_stat_18: -284.5995714351222 + corr_stat_19: 183.17258356279183 + corr_stat_20: 1124.8302918658846 + corr_stat_21: 102.22171960998566 + corr_stat_22: 77.48770362129729 stat: 600.0 sys_luminosity: 14289.6 -- sys_corr_1: 552.2345335621399 - sys_corr_2: 103.40338462081442 - sys_corr_3: 87.82893359614614 - sys_corr_4: 12.950967070604104 - sys_corr_5: 104.2431489398554 - sys_corr_6: 30.340935531739312 - sys_corr_7: 23.188459321955577 - sys_corr_8: -0.17886801278331904 - sys_corr_9: -13.369943805932918 - sys_corr_10: 6.312252310215575 - sys_corr_11: 0.4652294618819853 - sys_corr_12: -15.120617481824365 - sys_corr_13: 58.026813173475915 - sys_corr_14: -123.68886884212964 - sys_corr_15: 46.89167346693514 - sys_corr_16: 51.78700878874134 - sys_corr_17: -1.6643128340417204 - sys_corr_18: -10.306847935109921 - sys_corr_19: 4.304026597154581 - sys_corr_20: -2.937063304436435 - sys_corr_21: 0.4796067329309157 - sys_corr_22: 2.750566474662856 - corr_stat_1: -1554.4932355091798 +- sys_corr_1: 552.23453356214 + sys_corr_2: 103.40338462081426 + sys_corr_3: 87.82893359614611 + sys_corr_4: 12.950967070605516 + sys_corr_5: 104.2431489398548 + sys_corr_6: 30.34093553173911 + sys_corr_7: 23.188459321956174 + sys_corr_8: -0.17886801278331788 + sys_corr_9: -13.36994380593261 + sys_corr_10: 6.3122523102155235 + sys_corr_11: 0.465229461881931 + sys_corr_12: -15.120617481825013 + sys_corr_13: 58.0268131734802 + sys_corr_14: -123.68886884212857 + sys_corr_15: 46.89167346693589 + sys_corr_16: -51.787008788741275 + sys_corr_17: 1.6643128340412996 + sys_corr_18: -10.306847935108625 + sys_corr_19: 4.304026597154603 + sys_corr_20: -2.937063304435862 + sys_corr_21: 0.4796067329309654 + sys_corr_22: 2.75056647466226 + corr_stat_1: -1554.4932355091837 corr_stat_2: 3988.490231084662 - corr_stat_3: 693.1819069758188 - corr_stat_4: 266.49128552767183 - corr_stat_5: 315.9391284834382 - corr_stat_6: -413.6589122110675 - corr_stat_7: -45.319574394442114 - corr_stat_8: 582.8177042765099 - corr_stat_9: -134.29459935003806 - corr_stat_10: -66.00044110068343 - corr_stat_11: 17.3172679412507 - corr_stat_12: -0.06589493122752853 - corr_stat_13: -313.4171691968849 - corr_stat_14: 28.734699623468583 - corr_stat_15: -150.45432929656099 - corr_stat_16: 40.30693902376013 - corr_stat_17: 57.78131688821107 - corr_stat_18: -227.02722135084775 - corr_stat_19: 5.06305687015458 - corr_stat_20: -206.09123834018718 - corr_stat_21: -1190.1803664201823 - corr_stat_22: 106.76797453329195 + corr_stat_3: 693.1819069758163 + corr_stat_4: 266.49128552767263 + corr_stat_5: 315.9391284834407 + corr_stat_6: -413.65891221107347 + corr_stat_7: -45.31957439446909 + corr_stat_8: 582.817704276496 + corr_stat_9: -134.29459935001626 + corr_stat_10: -66.00044110068809 + corr_stat_11: 17.317267941245497 + corr_stat_12: -0.06589493123291612 + corr_stat_13: 313.4171691968983 + corr_stat_14: -28.73469962347398 + corr_stat_15: -150.45432929656005 + corr_stat_16: 40.306939023758225 + corr_stat_17: 57.78131688822478 + corr_stat_18: -227.0272213508498 + corr_stat_19: 5.063056870193055 + corr_stat_20: -206.09123834021105 + corr_stat_21: -1190.180366420169 + corr_stat_22: 106.76797453332219 stat: 600.0 sys_luminosity: 13928.2 -- sys_corr_1: 483.6329938815687 - sys_corr_2: 283.65015279893686 - sys_corr_3: 107.57915859674436 - sys_corr_4: -76.25348641162945 - sys_corr_5: -11.10883168051341 - sys_corr_6: 50.116226392174504 - sys_corr_7: 16.900708604431735 - sys_corr_8: -0.8367743919895182 - sys_corr_9: -19.813032267905225 - sys_corr_10: 0.7030745179890109 - sys_corr_11: 8.799547378609613 - sys_corr_12: 0.5429351298496465 - sys_corr_13: 97.41075925683992 - sys_corr_14: 114.47094549699969 - sys_corr_15: 38.83755271712826 - sys_corr_16: 26.57686642080769 - sys_corr_17: -0.9891085356501043 - sys_corr_18: 0.9882714921549405 - sys_corr_19: 1.4825946434839563 - sys_corr_20: -6.39842543378509 - sys_corr_21: -2.800415192078983 - sys_corr_22: 1.273066355078856 - corr_stat_1: -135.0970955080258 - corr_stat_2: 4242.194366797446 - corr_stat_3: 994.9686805304347 - corr_stat_4: 108.23171289901036 - corr_stat_5: 340.44916564767294 - corr_stat_6: -295.5668908083675 - corr_stat_7: 232.18468392784123 - corr_stat_8: -381.27477701138724 - corr_stat_9: -64.49356282575717 - corr_stat_10: -44.55443210340089 - corr_stat_11: -9.4842866791488 - corr_stat_12: -12.891798376766564 - corr_stat_13: -290.2939080985797 - corr_stat_14: -42.683465493570374 - corr_stat_15: 174.83339743442326 - corr_stat_16: -68.3458297923086 - corr_stat_17: -4.730378376300108 - corr_stat_18: -109.34662007472951 - corr_stat_19: -744.9093059404825 - corr_stat_20: -51.58981301598667 - corr_stat_21: 144.9707378669772 - corr_stat_22: -1011.4521345340681 +- sys_corr_1: 483.6329938815683 + sys_corr_2: 283.65015279893674 + sys_corr_3: 107.57915859674418 + sys_corr_4: -76.2534864116297 + sys_corr_5: -11.108831680513818 + sys_corr_6: 50.11622639217412 + sys_corr_7: 16.90070860443196 + sys_corr_8: -0.8367743919894418 + sys_corr_9: -19.813032267904703 + sys_corr_10: 0.7030745179888767 + sys_corr_11: 8.799547378608311 + sys_corr_12: 0.5429351298492877 + sys_corr_13: 97.410759256836 + sys_corr_14: 114.47094549700164 + sys_corr_15: 38.83755271712906 + sys_corr_16: -26.576866420807377 + sys_corr_17: 0.9891085356496501 + sys_corr_18: 0.9882714921559045 + sys_corr_19: 1.4825946434837587 + sys_corr_20: -6.398425433784854 + sys_corr_21: -2.800415192079245 + sys_corr_22: 1.273066355078631 + corr_stat_1: -135.09709550802918 + corr_stat_2: 4242.1943667974465 + corr_stat_3: 994.968680530433 + corr_stat_4: 108.23171289901195 + corr_stat_5: 340.44916564767743 + corr_stat_6: -295.566890808373 + corr_stat_7: 232.18468392781574 + corr_stat_8: -381.2747770113846 + corr_stat_9: -64.4935628257594 + corr_stat_10: -44.55443210340934 + corr_stat_11: -9.48428667915245 + corr_stat_12: -12.891798376779082 + corr_stat_13: 290.29390809858455 + corr_stat_14: 42.68346549356155 + corr_stat_15: 174.8333974344331 + corr_stat_16: -68.34582979230746 + corr_stat_17: -4.730378376331919 + corr_stat_18: -109.3466200747226 + corr_stat_19: -744.9093059404961 + corr_stat_20: -51.58981301599331 + corr_stat_21: 144.97073786697442 + corr_stat_22: -1011.4521345340693 stat: 600.0 sys_luminosity: 13556.400000000001 -- sys_corr_1: 486.9513411790149 - sys_corr_2: 271.6662898213542 - sys_corr_3: 139.33014083726897 - sys_corr_4: -35.271833584669935 - sys_corr_5: 15.25408082388117 - sys_corr_6: -65.04715907914147 - sys_corr_7: 10.264473528899737 - sys_corr_8: -1.2015566102292214 - sys_corr_9: -17.58690281015563 - sys_corr_10: -2.967212350594058 - sys_corr_11: -1.7659862369541772 - sys_corr_12: 10.68509713415963 - sys_corr_13: -125.5984338209375 - sys_corr_14: 18.229245783297753 - sys_corr_15: 80.65365589453558 - sys_corr_16: -8.780867058079485 - sys_corr_17: 0.5417470433886316 - sys_corr_18: -25.26382207456375 - sys_corr_19: 0.9091034018916877 - sys_corr_20: 0.5726727709731895 - sys_corr_21: 5.8837341734007165 - sys_corr_22: 7.006896421007351 - corr_stat_1: -258.9460939937978 - corr_stat_2: 4483.172068841141 - corr_stat_3: 1352.9526478204132 - corr_stat_4: 88.66218529787515 - corr_stat_5: 286.6021132440815 - corr_stat_6: 297.12515039358544 - corr_stat_7: -238.77936178866895 - corr_stat_8: 20.717252016728615 - corr_stat_9: -11.007248741934449 - corr_stat_10: -11.197334208104415 - corr_stat_11: -1.6829308253752855 - corr_stat_12: 8.871694751634683 - corr_stat_13: 151.59035170898375 - corr_stat_14: 78.13077714963185 - corr_stat_15: 1082.515991848048 - corr_stat_16: -14.77189422981153 - corr_stat_17: 63.52726398871674 - corr_stat_18: 0.44571073603237377 - corr_stat_19: 742.8791575342233 - corr_stat_20: -94.50920252550188 - corr_stat_21: 77.06297859148584 - corr_stat_22: -75.21367247263976 +- sys_corr_1: 486.9513411790148 + sys_corr_2: 271.6662898213543 + sys_corr_3: 139.33014083726923 + sys_corr_4: -35.27183358466969 + sys_corr_5: 15.254080823882452 + sys_corr_6: -65.04715907914199 + sys_corr_7: 10.264473528898524 + sys_corr_8: -1.2015566102292563 + sys_corr_9: -17.586902810156214 + sys_corr_10: -2.9672123505932717 + sys_corr_11: -1.7659862369543204 + sys_corr_12: 10.685097134159989 + sys_corr_13: -125.59843382093808 + sys_corr_14: 18.229245783295816 + sys_corr_15: 80.6536558945349 + sys_corr_16: 8.780867058080457 + sys_corr_17: -0.5417470433881312 + sys_corr_18: -25.263822074563656 + sys_corr_19: 0.9091034018915534 + sys_corr_20: 0.5726727709729101 + sys_corr_21: 5.883734173400911 + sys_corr_22: 7.006896421007432 + corr_stat_1: -258.94609399380363 + corr_stat_2: 4483.1720688411415 + corr_stat_3: 1352.952647820414 + corr_stat_4: 88.66218529787213 + corr_stat_5: 286.6021132440774 + corr_stat_6: 297.12515039359346 + corr_stat_7: -238.77936178864394 + corr_stat_8: 20.717252016734008 + corr_stat_9: -11.007248741940849 + corr_stat_10: -11.197334208108327 + corr_stat_11: -1.682930825380587 + corr_stat_12: 8.87169475163091 + corr_stat_13: -151.59035170899577 + corr_stat_14: -78.13077714961759 + corr_stat_15: 1082.51599184805 + corr_stat_16: -14.771894229811283 + corr_stat_17: 63.527263988723305 + corr_stat_18: 0.44571073601664574 + corr_stat_19: 742.8791575342144 + corr_stat_20: -94.50920252549453 + corr_stat_21: 77.06297859147843 + corr_stat_22: -75.21367247262941 stat: 600.0 sys_luminosity: 13215.800000000001 -- sys_corr_1: 350.3638050969199 - sys_corr_2: 446.26999091003626 - sys_corr_3: 112.57823431068542 - sys_corr_4: 5.83415692903194 - sys_corr_5: -3.607458572065495 - sys_corr_6: -4.201875680105246 - sys_corr_7: -52.84086976129121 - sys_corr_8: -2.644381894087428 - sys_corr_9: -34.9776775222238 - sys_corr_10: -3.7344092869602292 - sys_corr_11: 3.5803594981315556 - sys_corr_12: 7.315742685564125 - sys_corr_13: -20.796885965382014 - sys_corr_14: 1.2841790016623067 - sys_corr_15: -120.97503125044864 - sys_corr_16: 52.13723264984161 - sys_corr_17: -1.436374561650506 - sys_corr_18: -55.1858383437494 - sys_corr_19: -1.20835521263825 - sys_corr_20: 5.776288437676423 - sys_corr_21: 17.687575025426774 - sys_corr_22: 8.014724525745633 - corr_stat_1: 1628.804731086628 - corr_stat_2: 4545.303944750982 - corr_stat_3: 1368.8537011384471 - corr_stat_4: 18.507080793920522 - corr_stat_5: -162.78688070256712 - corr_stat_6: 148.1687164672756 - corr_stat_7: 319.04508239489354 - corr_stat_8: 115.29894867307546 - corr_stat_9: 113.96043142823005 - corr_stat_10: -70.62227426448257 - corr_stat_11: 9.618011237613235 - corr_stat_12: 0.8858624562018509 - corr_stat_13: 322.5882997033539 - corr_stat_14: 14.745458472125218 - corr_stat_15: 240.892067234432 - corr_stat_16: 12.547868862972559 - corr_stat_17: -12.583513156690426 - corr_stat_18: 42.1120933355758 - corr_stat_19: -852.2603272035827 - corr_stat_20: 28.067939036707998 - corr_stat_21: 146.84004262266473 - corr_stat_22: 870.8633546129437 +- sys_corr_1: 350.36380509692015 + sys_corr_2: 446.2699909100363 + sys_corr_3: 112.57823431068553 + sys_corr_4: 5.8341569290319555 + sys_corr_5: -3.6074585720654646 + sys_corr_6: -4.201875680104967 + sys_corr_7: -52.84086976129153 + sys_corr_8: -2.644381894087352 + sys_corr_9: -34.977677522223836 + sys_corr_10: -3.7344092869606635 + sys_corr_11: 3.580359498132741 + sys_corr_12: 7.315742685566192 + sys_corr_13: -20.796885965381783 + sys_corr_14: 1.2841790016606225 + sys_corr_15: -120.97503125044832 + sys_corr_16: -52.137232649843384 + sys_corr_17: 1.4363745616497852 + sys_corr_18: -55.185838343749026 + sys_corr_19: -1.208355212637487 + sys_corr_20: 5.776288437675593 + sys_corr_21: 17.68757502542747 + sys_corr_22: 8.014724525745441 + corr_stat_1: 1628.8047310866236 + corr_stat_2: 4545.303944750983 + corr_stat_3: 1368.85370113845 + corr_stat_4: 18.507080793916153 + corr_stat_5: -162.78688070257286 + corr_stat_6: 148.16871646725346 + corr_stat_7: 319.04508239490355 + corr_stat_8: 115.29894867309049 + corr_stat_9: 113.96043142824124 + corr_stat_10: -70.62227426447517 + corr_stat_11: 9.618011237603639 + corr_stat_12: 0.8858624562005214 + corr_stat_13: -322.58829970336876 + corr_stat_14: -14.745458472112592 + corr_stat_15: 240.89206723441143 + corr_stat_16: 12.547868862975246 + corr_stat_17: -12.583513156669422 + corr_stat_18: 42.1120933355489 + corr_stat_19: -852.2603272035795 + corr_stat_20: 28.067939036700793 + corr_stat_21: 146.8400426226806 + corr_stat_22: 870.8633546129416 stat: 600.0 sys_luminosity: 12680.2 -- sys_corr_1: 239.97076053304468 +- sys_corr_1: 239.97076053304463 sys_corr_2: 520.9620249249799 - sys_corr_3: 61.52238590993832 - sys_corr_4: 50.51164551882333 - sys_corr_5: -22.244312193128327 - sys_corr_6: 17.204649467599445 - sys_corr_7: 14.49065936183046 - sys_corr_8: -10.708779057510437 - sys_corr_9: 90.4331449891911 - sys_corr_10: 4.521166986305722 - sys_corr_11: -3.273610909879611 - sys_corr_12: 18.417607297913108 - sys_corr_13: -28.523731888233105 - sys_corr_14: -2.7169875312534018 - sys_corr_15: -21.678644069863697 - sys_corr_16: 29.44427839325165 - sys_corr_17: -7.459047690703756 - sys_corr_18: 87.08907412172427 - sys_corr_19: 5.363939865480956 - sys_corr_20: -42.32592173974783 - sys_corr_21: -57.11491926540474 - sys_corr_22: -11.478597839553005 - corr_stat_1: 2768.579832555698 - corr_stat_2: 4181.24403528927 - corr_stat_3: 888.6786586176468 - corr_stat_4: 152.4531784289518 - corr_stat_5: -582.8335114254886 - corr_stat_6: -214.4627121882963 - corr_stat_7: -382.4295839388756 - corr_stat_8: -149.68989151175856 - corr_stat_9: -209.82377574501015 - corr_stat_10: 78.12502533081484 - corr_stat_11: -52.42584656178751 - corr_stat_12: -32.90768639624654 - corr_stat_13: 728.757365820224 - corr_stat_14: -817.5099970260806 - corr_stat_15: -442.39754712220713 - corr_stat_16: -168.5663669892353 - corr_stat_17: -105.59737545115254 - corr_stat_18: -18.66907763805015 - corr_stat_19: 240.9521998489452 - corr_stat_20: 0.15998812831876316 - corr_stat_21: -41.88381937372009 - corr_stat_22: -161.2795193551134 + sys_corr_3: 61.52238590993829 + sys_corr_4: 50.51164551882331 + sys_corr_5: -22.24431219312913 + sys_corr_6: 17.20464946759938 + sys_corr_7: 14.490659361831085 + sys_corr_8: -10.708779057510505 + sys_corr_9: 90.4331449891912 + sys_corr_10: 4.521166986306394 + sys_corr_11: -3.2736109098794075 + sys_corr_12: 18.417607297912706 + sys_corr_13: -28.523731888232877 + sys_corr_14: -2.7169875312538765 + sys_corr_15: -21.678644069862933 + sys_corr_16: -29.44427839325138 + sys_corr_17: 7.459047690703971 + sys_corr_18: 87.08907412172464 + sys_corr_19: 5.363939865479382 + sys_corr_20: -42.325921739745496 + sys_corr_21: -57.11491926540617 + sys_corr_22: -11.47859783955312 + corr_stat_1: 2768.579832555696 + corr_stat_2: 4181.244035289273 + corr_stat_3: 888.6786586176437 + corr_stat_4: 152.4531784289508 + corr_stat_5: -582.8335114254843 + corr_stat_6: -214.46271218827627 + corr_stat_7: -382.42958393889757 + corr_stat_8: -149.68989151178096 + corr_stat_9: -209.8237757450157 + corr_stat_10: 78.1250253308019 + corr_stat_11: -52.425846561777384 + corr_stat_12: -32.90768639626238 + corr_stat_13: -728.757365820229 + corr_stat_14: 817.5099970260683 + corr_stat_15: -442.3975471222339 + corr_stat_16: -168.56636698925536 + corr_stat_17: -105.5973754512255 + corr_stat_18: -18.669077637994963 + corr_stat_19: 240.95219984894118 + corr_stat_20: 0.1599881283155339 + corr_stat_21: -41.8838193737312 + corr_stat_22: -161.279519355125 stat: 600.0 sys_luminosity: 12131.6 -- sys_corr_1: -72.35430518179652 - sys_corr_2: 585.1703960917054 - sys_corr_3: -9.019538562804364 - sys_corr_4: 46.39882707641847 - sys_corr_5: -18.86539847617626 - sys_corr_6: 20.77666089951114 - sys_corr_7: 29.022526944486202 - sys_corr_8: 57.053338625640556 - sys_corr_9: 30.567623682258244 - sys_corr_10: 1.8610248175306592 - sys_corr_11: -1.6356635279426592 - sys_corr_12: -5.560533891173429 - sys_corr_13: 8.921645451724485 - sys_corr_14: -3.6609838193596485 - sys_corr_15: 4.17286144211308 - sys_corr_16: -30.357026073731745 - sys_corr_17: 0.12732755104208116 - sys_corr_18: -46.33909710903091 - sys_corr_19: 4.344132871350705 - sys_corr_20: -9.33354147575753 - sys_corr_21: -27.815753981248772 - sys_corr_22: -13.815436857482503 - corr_stat_1: 9561.666974536012 - corr_stat_2: 4355.211165922515 - corr_stat_3: 215.15747814323305 - corr_stat_4: 578.9279688632612 - corr_stat_5: -72.56728442655417 - corr_stat_6: -41.79321582735145 - corr_stat_7: -135.03131326920368 - corr_stat_8: -56.49828294066753 - corr_stat_9: 118.67893789927423 - corr_stat_10: -79.7131050832127 - corr_stat_11: 60.8045840118983 - corr_stat_12: 39.41529651483907 - corr_stat_13: 767.9522444258454 - corr_stat_14: 812.465804727721 - corr_stat_15: -436.68579315601494 - corr_stat_16: 74.84701480858111 - corr_stat_17: 103.55450041222807 - corr_stat_18: 14.57461719764442 - corr_stat_19: 102.57404374940532 - corr_stat_20: 21.97654226348712 - corr_stat_21: -34.46920177392997 - corr_stat_22: -248.60778991796596 +- sys_corr_1: -72.35430518179632 + sys_corr_2: 585.1703960917055 + sys_corr_3: -9.019538562804382 + sys_corr_4: 46.39882707641838 + sys_corr_5: -18.865398476177223 + sys_corr_6: 20.776660899511114 + sys_corr_7: 29.022526944486707 + sys_corr_8: 57.05333862564022 + sys_corr_9: 30.567623682258066 + sys_corr_10: 1.8610248175305897 + sys_corr_11: -1.6356635279431768 + sys_corr_12: -5.560533891173997 + sys_corr_13: 8.921645451724535 + sys_corr_14: -3.660983819359387 + sys_corr_15: 4.172861442112091 + sys_corr_16: 30.35702607373111 + sys_corr_17: -0.12732755104282578 + sys_corr_18: -46.33909710903161 + sys_corr_19: 4.344132871350661 + sys_corr_20: -9.333541475756133 + sys_corr_21: -27.815753981248942 + sys_corr_22: -13.81543685748182 + corr_stat_1: 9561.666974536009 + corr_stat_2: 4355.211165922523 + corr_stat_3: 215.15747814322617 + corr_stat_4: 578.9279688632575 + corr_stat_5: -72.56728442654163 + corr_stat_6: -41.793215827341676 + corr_stat_7: -135.0313132692055 + corr_stat_8: -56.4982829406733 + corr_stat_9: 118.67893789926927 + corr_stat_10: -79.7131050831993 + corr_stat_11: 60.80458401186932 + corr_stat_12: 39.41529651483454 + corr_stat_13: -767.9522444258226 + corr_stat_14: -812.4658047277343 + corr_stat_15: -436.68579315600675 + corr_stat_16: 74.84701480860129 + corr_stat_17: 103.554500412267 + corr_stat_18: 14.574617197622592 + corr_stat_19: 102.57404374940045 + corr_stat_20: 21.976542263487982 + corr_stat_21: -34.46920177393518 + corr_stat_22: -248.60778991796158 stat: 600.0 sys_luminosity: 11434.800000000001 diff --git a/nnpdf_data/nnpdf_data/new_commondata/CMS_Z0_7TEV_DIMUON/uncertainties.yaml b/nnpdf_data/nnpdf_data/new_commondata/CMS_Z0_7TEV_DIMUON/uncertainties.yaml index c69c01dc34..4a81b31c7b 100644 --- a/nnpdf_data/nnpdf_data/new_commondata/CMS_Z0_7TEV_DIMUON/uncertainties.yaml +++ b/nnpdf_data/nnpdf_data/new_commondata/CMS_Z0_7TEV_DIMUON/uncertainties.yaml @@ -536,17691 +536,17691 @@ definitions: treatment: MULT type: CMSLUMI11 bins: -- sys_corr_1: 219.38809570667726 - sys_corr_2: 83.24704740256875 - sys_corr_3: -113.8315583419874 - sys_corr_4: 63.94044265423592 - sys_corr_5: 424.45749584637656 - sys_corr_6: -970.1442738465389 - sys_corr_7: -27.11121616690624 - sys_corr_8: -41.156556645633785 - sys_corr_9: -32.88810449224143 - sys_corr_10: -29.69665914120765 - sys_corr_11: -107.31606333147357 - sys_corr_12: -131.44404623845597 - sys_corr_13: -87.69554177258627 - sys_corr_14: 16.294913876939777 - sys_corr_15: 28.53860228260789 - sys_corr_16: -0.5145751967958947 - sys_corr_17: -0.33276591532927324 - sys_corr_18: -21.93961895196752 - sys_corr_19: -10.035922164997187 - sys_corr_20: -13.32112790440744 - sys_corr_21: -20.30922009415745 - sys_corr_22: -186.8799336268907 - sys_corr_23: -17.790619330294522 - sys_corr_24: -64.38682235762168 - sys_corr_25: -8.02814932173803 - sys_corr_26: -11.993805828183165 - sys_corr_27: -2.6901319064773377 - sys_corr_28: 59.52853752964701 - sys_corr_29: -57.583410199869995 - sys_corr_30: -26.525525550047746 - sys_corr_31: -0.63020676392427 - sys_corr_32: -152.35420382726844 - sys_corr_33: -163.0926263093812 - sys_corr_34: 70.19628912219096 - sys_corr_35: -12.952117135101792 - sys_corr_36: 76.66516696509095 - sys_corr_37: -102.13478931622491 - sys_corr_38: -43.1805258952641 - sys_corr_39: 52.35853582423663 - sys_corr_40: -59.41932456647214 - sys_corr_41: -27.811021171705036 - sys_corr_42: 69.88238561409734 - sys_corr_43: 19.58961576379411 - sys_corr_44: 92.823954375043 - sys_corr_45: -7.896885817702734 - sys_corr_46: 3.1438671203504662 - sys_corr_47: 27.919511965452813 - sys_corr_48: -30.687945783787598 - sys_corr_49: -23.17564211681726 - sys_corr_50: 64.5323916391861 - sys_corr_51: -1.524515762609101 - sys_corr_52: 80.4182487065857 - sys_corr_53: -11.484029859095747 - sys_corr_54: -1.9103600883425287 - sys_corr_55: -0.5122465301362351 - sys_corr_56: -24.036945448914206 - sys_corr_57: -8.768543680779178 - sys_corr_58: 20.587793117222308 - sys_corr_59: -28.057385204534743 - sys_corr_60: -14.394991535241665 - sys_corr_61: 14.734026883282086 - sys_corr_62: -14.58631655772935 - sys_corr_63: 9.838983677540643 - sys_corr_64: -22.917956484909347 - sys_corr_65: -3.6203290101910857 - sys_corr_66: 11.940272682635099 - sys_corr_67: -5.5101227819750855 - sys_corr_68: 8.369409066798465 - sys_corr_69: 14.63499293386641 - sys_corr_70: -17.926837002699905 - sys_corr_71: -21.930167699930017 - sys_corr_72: 7.857048717774366 - sys_corr_73: -16.962639583002918 - sys_corr_74: -3.3725261421208073 - sys_corr_75: -37.592224498419355 - sys_corr_76: 5.715032273915327 - sys_corr_77: -40.955727128088405 - sys_corr_78: -4.228918382485376 - sys_corr_79: -2.946476878103226 - sys_corr_80: -3.9303320085379503 - sys_corr_81: 5.010587188385987 - sys_corr_82: -1.1508757733990358 - sys_corr_83: -5.840432379399374 - sys_corr_84: 10.324053599595912 - sys_corr_85: -3.0559009849509535 - sys_corr_86: -8.01235452088766 - sys_corr_87: -0.35197565835219763 - sys_corr_88: 11.259180407387884 - sys_corr_89: -0.8413463376075707 - sys_corr_90: 1.2434698689715304 - sys_corr_91: -0.13405965852725502 - sys_corr_92: 0.8555884997783911 - sys_corr_93: 0.0054672200241373025 - sys_corr_94: 0.8609419600701833 - sys_corr_95: -0.33488699042144426 - sys_corr_96: -0.3726434009628075 - sys_corr_97: -2.5523455748811057 - sys_corr_98: 1.189863530533456 - sys_corr_99: -1.6769937998484823 - sys_corr_100: 2.9260304381299065 - sys_corr_101: -2.829550344113232 - sys_corr_102: 7.008281339453232 - sys_corr_103: -25.344382608215756 - sys_corr_104: -4.2518631039555395 - sys_corr_105: -9.981214413253769 - sys_corr_106: -2.7408136069506552 - sys_corr_107: 1.6250535533979054 - sys_corr_108: -0.9709880390335993 - sys_corr_109: -0.7358497122283383 - sys_corr_110: -0.43191488978173986 - sys_corr_111: -0.8200429357202328 - sys_corr_112: 0.17570756894279904 - sys_corr_113: -0.12357305815426488 - sys_corr_114: 0.00295836416616648 - sys_corr_115: -0.12616257340780035 - sys_corr_116: -0.11936968034555873 - sys_corr_117: -0.10062237218855952 - sys_corr_118: 0.1733065893072924 - sys_corr_119: -0.0017259192460438583 - sys_corr_120: 0.06823024206346336 - sys_corr_121: -0.006098020984957743 - sys_corr_122: -0.06212185010780957 - sys_corr_123: -0.12670972575300102 - sys_corr_124: 0.04711635558178712 - sys_corr_125: 0.08506058385163785 - sys_corr_126: 0.02194983436317467 - sys_corr_127: 0.6670235712243442 - sys_corr_128: 0.1295677999641225 - sys_corr_129: 0.05282026731729181 - sys_corr_130: -0.023818443464061603 - sys_corr_131: -0.07583616223836188 - sys_corr_132: 0.03233752913275298 +- sys_corr_1: 219.38809570668244 + sys_corr_2: 83.24704740257387 + sys_corr_3: -113.83155834198604 + sys_corr_4: 63.94044265423962 + sys_corr_5: 424.4574958463709 + sys_corr_6: -970.144273846535 + sys_corr_7: -27.11121616690821 + sys_corr_8: -41.15655664563541 + sys_corr_9: -32.88810449224184 + sys_corr_10: -29.696659141201607 + sys_corr_11: -107.31606333148744 + sys_corr_12: -131.4440462384528 + sys_corr_13: 87.69554177258385 + sys_corr_14: -16.294913876939606 + sys_corr_15: -28.538602282607837 + sys_corr_16: 0.5145751967941183 + sys_corr_17: -0.33276591533020417 + sys_corr_18: 21.939618951968573 + sys_corr_19: -10.03592216499646 + sys_corr_20: -13.321127904407971 + sys_corr_21: -20.309220094156608 + sys_corr_22: -186.87993362689306 + sys_corr_23: -17.79061933029427 + sys_corr_24: -64.38682235762325 + sys_corr_25: -8.028149321739503 + sys_corr_26: -11.993805828185856 + sys_corr_27: -2.690131906477343 + sys_corr_28: 59.528537529650414 + sys_corr_29: -57.583410199868595 + sys_corr_30: -26.52552555004995 + sys_corr_31: -0.6302067639247529 + sys_corr_32: 152.35420382729083 + sys_corr_33: 163.09262630939256 + sys_corr_34: 70.19628912218754 + sys_corr_35: -12.952117135100037 + sys_corr_36: 76.66516696506943 + sys_corr_37: 102.13478931623814 + sys_corr_38: 43.1805258952571 + sys_corr_39: -52.35853582423619 + sys_corr_40: 59.41932456647601 + sys_corr_41: -27.811021171703434 + sys_corr_42: -69.8823856141038 + sys_corr_43: 19.589615763760957 + sys_corr_44: 92.82395437504826 + sys_corr_45: 7.89688581769174 + sys_corr_46: -3.143867120355903 + sys_corr_47: -27.91951196544453 + sys_corr_48: 30.687945783784667 + sys_corr_49: 23.175642116830087 + sys_corr_50: 64.53239163918111 + sys_corr_51: -1.524515762613634 + sys_corr_52: 80.418248706572 + sys_corr_53: 11.48402985908633 + sys_corr_54: 1.9103600883399807 + sys_corr_55: 0.5122465301355984 + sys_corr_56: 24.036945448906515 + sys_corr_57: -8.768543680792801 + sys_corr_58: -20.587793117245884 + sys_corr_59: -28.05738520452002 + sys_corr_60: 14.394991535240687 + sys_corr_61: -14.734026883277714 + sys_corr_62: 14.586316557733072 + sys_corr_63: 9.838983677547562 + sys_corr_64: -22.917956484905098 + sys_corr_65: -3.6203290102116346 + sys_corr_66: -11.940272682636879 + sys_corr_67: -5.510122781974408 + sys_corr_68: -8.369409066788366 + sys_corr_69: 14.634992933856624 + sys_corr_70: 17.926837002692057 + sys_corr_71: -21.930167699919192 + sys_corr_72: -7.857048717776663 + sys_corr_73: 16.96263958300809 + sys_corr_74: -3.3725261421141073 + sys_corr_75: -37.592224498429324 + sys_corr_76: 5.715032273894998 + sys_corr_77: 40.95572712808521 + sys_corr_78: 3.9303320085337843 + sys_corr_79: -4.228918382485843 + sys_corr_80: -2.946476878106624 + sys_corr_81: -5.010587188384071 + sys_corr_82: 1.1508757733994734 + sys_corr_83: -5.8404323794012845 + sys_corr_84: -10.324053599591288 + sys_corr_85: -3.055900984949437 + sys_corr_86: 8.012354520895824 + sys_corr_87: 0.3519756583507314 + sys_corr_88: 11.25918040736981 + sys_corr_89: 1.243469868971073 + sys_corr_90: -0.8413463376074243 + sys_corr_91: -0.13405965852616056 + sys_corr_92: -0.8555884997831626 + sys_corr_93: 0.0054672200240544755 + sys_corr_94: 0.8609419600702665 + sys_corr_95: -0.3348869904211594 + sys_corr_96: 0.3726434009628754 + sys_corr_97: -2.5523455748818136 + sys_corr_98: -1.1898635305337701 + sys_corr_99: -1.6769937998489977 + sys_corr_100: -2.829550344111233 + sys_corr_101: -7.008281339444455 + sys_corr_102: -25.344382608212147 + sys_corr_103: 4.25186310395798 + sys_corr_104: 9.981214413265226 + sys_corr_105: -2.926030438128824 + sys_corr_106: -2.740813606949084 + sys_corr_107: -0.9709880390331171 + sys_corr_108: -0.735849712228109 + sys_corr_109: 0.43191488978163556 + sys_corr_110: -1.625053553398975 + sys_corr_111: 0.8200429357198458 + sys_corr_112: 0.17570756894276254 + sys_corr_113: 0.12357305815420973 + sys_corr_114: 0.002958364166165896 + sys_corr_115: -0.1261625734077925 + sys_corr_116: 0.1193696803455053 + sys_corr_117: 0.10062237218855706 + sys_corr_118: -0.17330658930728407 + sys_corr_119: 0.0017259192460435406 + sys_corr_120: -0.06823024206345543 + sys_corr_121: 0.006098020984953318 + sys_corr_122: -0.12670972575299405 + sys_corr_123: -0.062121850107794585 + sys_corr_124: 0.047116355581776875 + sys_corr_125: 0.08506058385163708 + sys_corr_126: -0.02194983436316336 + sys_corr_127: 0.6670235712248823 + sys_corr_128: 0.1295677999639982 + sys_corr_129: 0.052820267317265426 + sys_corr_130: -0.023818443464052395 + sys_corr_131: 0.07583616223835037 + sys_corr_132: 0.032337529132746255 stat: 0.0 luminosity: 392.4415660000001 -- sys_corr_1: 211.15925523214355 - sys_corr_2: 86.50832498955425 - sys_corr_3: -117.37724296320835 - sys_corr_4: 65.33630780739577 - sys_corr_5: 405.02957182542644 - sys_corr_6: -932.8127024634914 - sys_corr_7: -23.144579309117635 - sys_corr_8: -38.05838623018843 - sys_corr_9: -29.269418567944758 - sys_corr_10: -29.04262377354074 - sys_corr_11: -106.7526836057408 - sys_corr_12: -127.86953948525073 - sys_corr_13: -88.45969602705696 - sys_corr_14: 22.742109193308355 - sys_corr_15: 32.45610078455943 - sys_corr_16: -3.6110541895262576 - sys_corr_17: 2.6848918601465437 - sys_corr_18: -20.8180500917236 - sys_corr_19: -20.11836764949129 - sys_corr_20: -15.105467408403726 - sys_corr_21: -11.994518374543706 - sys_corr_22: -199.2597807140549 - sys_corr_23: -18.362271103958772 - sys_corr_24: -82.58349966356478 - sys_corr_25: 1.5870523662799274 - sys_corr_26: -4.279482813708539 - sys_corr_27: -18.551763963381863 - sys_corr_28: 67.24018390388817 - sys_corr_29: -88.04513462760961 - sys_corr_30: -1.2423981465405773 - sys_corr_31: -38.74426541733055 - sys_corr_32: 167.45307360910968 - sys_corr_33: 140.88245191135678 - sys_corr_34: -71.43195075870467 - sys_corr_35: -0.15251855642342085 - sys_corr_36: -21.814014680485585 - sys_corr_37: 14.801935852147846 - sys_corr_38: -2.419290129804241 - sys_corr_39: -13.962826731347413 - sys_corr_40: -3.69175159648749 - sys_corr_41: -24.04142105799368 - sys_corr_42: 42.135363300444084 - sys_corr_43: 13.394073248917277 - sys_corr_44: 20.60992686150615 - sys_corr_45: -50.569123506727614 - sys_corr_46: -6.4602008851327914 - sys_corr_47: 26.763484914513725 - sys_corr_48: -21.48084938710657 - sys_corr_49: 14.635539682745254 - sys_corr_50: 31.43277372945576 - sys_corr_51: 45.773835092075295 - sys_corr_52: 94.15304389662066 - sys_corr_53: 27.0234472516464 - sys_corr_54: -52.762779111711126 - sys_corr_55: -1.4686616201565934 - sys_corr_56: -28.882579054729362 - sys_corr_57: -14.286781208551085 - sys_corr_58: 10.475938550924823 - sys_corr_59: -21.896106344260623 - sys_corr_60: -2.4512409158135546 - sys_corr_61: 23.167245413953523 - sys_corr_62: -23.761090817894562 - sys_corr_63: 24.5186305686287 - sys_corr_64: -4.72021638227967 - sys_corr_65: -5.558574191179849 - sys_corr_66: -6.519434964646706 - sys_corr_67: -5.203120119052942 - sys_corr_68: -13.445021798508595 - sys_corr_69: 15.157153710534105 - sys_corr_70: -2.232567792474404 - sys_corr_71: 16.198291749434265 - sys_corr_72: 4.063407400123262 - sys_corr_73: 38.608247127255446 - sys_corr_74: 2.7647774688036555 - sys_corr_75: 40.570292907107984 - sys_corr_76: -4.128405025148796 - sys_corr_77: 69.56140855449881 - sys_corr_78: 3.3288530310472533 - sys_corr_79: 16.534917143658344 - sys_corr_80: -2.0346116890784347 - sys_corr_81: 25.40316632122936 - sys_corr_82: 0.06993993526203612 - sys_corr_83: -1.3944882329760575 - sys_corr_84: -21.31304231516447 - sys_corr_85: 13.80936087051546 - sys_corr_86: 19.94276347124019 - sys_corr_87: 12.579932347058033 - sys_corr_88: -17.440055026989146 - sys_corr_89: 1.4314326626575335 - sys_corr_90: -2.9800328115677712 - sys_corr_91: 4.322041178158372 - sys_corr_92: 12.886149381458662 - sys_corr_93: -0.20485345226572035 - sys_corr_94: 0.0751664429008192 - sys_corr_95: 3.0136982904072176 - sys_corr_96: -0.5349368709705052 - sys_corr_97: -7.3007535284085145 - sys_corr_98: 2.5830819079406386 - sys_corr_99: -3.560538096337714 - sys_corr_100: 2.959460043443399 - sys_corr_101: -3.7013264373473596 - sys_corr_102: 8.36363312572757 - sys_corr_103: -32.86226105159833 - sys_corr_104: -6.200622311249966 - sys_corr_105: -14.738702010503253 - sys_corr_106: -3.2012543801554965 - sys_corr_107: 2.638634167294071 - sys_corr_108: -0.9401794892528829 - sys_corr_109: -0.884308902400091 - sys_corr_110: -0.024684886452818567 - sys_corr_111: -0.7037023767017988 - sys_corr_112: 0.024280869667635697 - sys_corr_113: 0.0239261186018554 - sys_corr_114: 0.0003464191297927604 - sys_corr_115: -0.28683945760822466 - sys_corr_116: -0.1870386979084863 - sys_corr_117: -0.14140340954008687 - sys_corr_118: 0.07742989477583401 - sys_corr_119: -0.004968982549205788 - sys_corr_120: 0.10226029143771802 - sys_corr_121: -0.010502616777997709 - sys_corr_122: -0.038884967772628634 - sys_corr_123: -0.0957173966210104 - sys_corr_124: 0.11937313382093648 - sys_corr_125: 0.07411101379636564 - sys_corr_126: 0.007150084419898535 - sys_corr_127: 1.000345125371109 - sys_corr_128: 0.20933897768470147 - sys_corr_129: 0.048297078662052254 - sys_corr_130: -0.0023398391433836095 - sys_corr_131: -0.09612494238421826 - sys_corr_132: -0.04022981066776346 +- sys_corr_1: 211.15925523213878 + sys_corr_2: 86.50832498955536 + sys_corr_3: -117.37724296320842 + sys_corr_4: 65.3363078073988 + sys_corr_5: 405.0295718254212 + sys_corr_6: -932.8127024634864 + sys_corr_7: -23.144579309117713 + sys_corr_8: -38.05838623018911 + sys_corr_9: -29.269418567944715 + sys_corr_10: -29.042623773535198 + sys_corr_11: -106.75268360575356 + sys_corr_12: -127.86953948524658 + sys_corr_13: 88.4596960270543 + sys_corr_14: -22.7421091933072 + sys_corr_15: -32.456100784560014 + sys_corr_16: 3.6110541895257273 + sys_corr_17: 2.684891860146602 + sys_corr_18: 20.81805009172277 + sys_corr_19: -20.118367649490338 + sys_corr_20: -15.105467408402928 + sys_corr_21: -11.994518374541508 + sys_corr_22: -199.25978071405285 + sys_corr_23: -18.362271103958598 + sys_corr_24: -82.58349966356487 + sys_corr_25: 1.5870523662804077 + sys_corr_26: -4.2794828137062995 + sys_corr_27: -18.5517639633812 + sys_corr_28: 67.24018390388652 + sys_corr_29: -88.04513462760819 + sys_corr_30: -1.2423981465405396 + sys_corr_31: -38.744265417329814 + sys_corr_32: -167.45307360910977 + sys_corr_33: -140.88245191134507 + sys_corr_34: -71.43195075869878 + sys_corr_35: -0.15251855642727422 + sys_corr_36: -21.814014680473385 + sys_corr_37: -14.801935852130422 + sys_corr_38: 2.4192901298124703 + sys_corr_39: 13.962826731336698 + sys_corr_40: 3.691751596501652 + sys_corr_41: -24.0414210579992 + sys_corr_42: -42.13536330046398 + sys_corr_43: 13.394073248898756 + sys_corr_44: 20.609926861521934 + sys_corr_45: 50.569123506728715 + sys_corr_46: 6.460200885110832 + sys_corr_47: -26.763484914518934 + sys_corr_48: 21.480849387110577 + sys_corr_49: -14.63553968273262 + sys_corr_50: 31.432773729466547 + sys_corr_51: 45.773835092075906 + sys_corr_52: 94.15304389662626 + sys_corr_53: -27.02344725165976 + sys_corr_54: 52.7627791117047 + sys_corr_55: 1.4686616201364375 + sys_corr_56: 28.882579054727856 + sys_corr_57: -14.286781208570748 + sys_corr_58: -10.475938550949945 + sys_corr_59: -21.89610634425588 + sys_corr_60: 2.4512409158184343 + sys_corr_61: -23.167245413956227 + sys_corr_62: 23.761090817906172 + sys_corr_63: 24.518630568636627 + sys_corr_64: -4.720216382273906 + sys_corr_65: -5.558574191184303 + sys_corr_66: 6.519434964649724 + sys_corr_67: -5.203120119061083 + sys_corr_68: 13.445021798521209 + sys_corr_69: 15.157153710534677 + sys_corr_70: 2.2325677924671212 + sys_corr_71: 16.1982917494358 + sys_corr_72: -4.063407400123225 + sys_corr_73: -38.608247127264185 + sys_corr_74: 2.7647774687959306 + sys_corr_75: 40.57029290712412 + sys_corr_76: -4.128405025129983 + sys_corr_77: -69.56140855449283 + sys_corr_78: 2.0346116890860366 + sys_corr_79: 3.328853031046438 + sys_corr_80: 16.534917143664046 + sys_corr_81: -25.403166321231936 + sys_corr_82: -0.06993993526259253 + sys_corr_83: -1.3944882329772672 + sys_corr_84: 21.313042315154426 + sys_corr_85: 13.809360870512918 + sys_corr_86: -19.942763471239473 + sys_corr_87: -12.579932347055658 + sys_corr_88: -17.44005502695215 + sys_corr_89: -2.980032811566832 + sys_corr_90: 1.4314326626565648 + sys_corr_91: 4.322041178155942 + sys_corr_92: -12.886149381451586 + sys_corr_93: -0.20485345226500182 + sys_corr_94: 0.07516644290410161 + sys_corr_95: 3.0136982904036063 + sys_corr_96: 0.5349368709701255 + sys_corr_97: -7.300753528408784 + sys_corr_98: -2.583081907941041 + sys_corr_99: -3.5605380963383344 + sys_corr_100: -3.701326437344934 + sys_corr_101: -8.363633125716706 + sys_corr_102: -32.86226105159465 + sys_corr_103: 6.200622311253461 + sys_corr_104: 14.738702010518846 + sys_corr_105: -2.9594600434421174 + sys_corr_106: -3.2012543801536077 + sys_corr_107: -0.9401794892523788 + sys_corr_108: -0.8843089023997436 + sys_corr_109: 0.024684886452673832 + sys_corr_110: -2.6386341672955322 + sys_corr_111: 0.7037023767013262 + sys_corr_112: 0.024280869667550282 + sys_corr_113: -0.02392611860191352 + sys_corr_114: 0.000346419129789549 + sys_corr_115: -0.28683945760816926 + sys_corr_116: 0.18703869790836816 + sys_corr_117: 0.14140340954004163 + sys_corr_118: -0.07742989477575875 + sys_corr_119: 0.0049689825492033384 + sys_corr_120: -0.10226029143768077 + sys_corr_121: 0.010502616777995315 + sys_corr_122: -0.09571739662096197 + sys_corr_123: -0.03888496777259684 + sys_corr_124: 0.11937313382092048 + sys_corr_125: 0.07411101379633056 + sys_corr_126: -0.007150084419889702 + sys_corr_127: 1.0003451253718234 + sys_corr_128: 0.20933897768456866 + sys_corr_129: 0.048297078662022104 + sys_corr_130: -0.002339839143371939 + sys_corr_131: 0.09612494238417149 + sys_corr_132: -0.040229810667785894 stat: 0.0 luminosity: 389.25317200000006 -- sys_corr_1: 201.13191204863918 - sys_corr_2: 85.13573634298916 - sys_corr_3: -120.38807097707843 - sys_corr_4: 62.892554814111044 - sys_corr_5: 397.1696073903703 - sys_corr_6: -907.7779825856123 - sys_corr_7: -23.121021593836947 - sys_corr_8: -39.78635163342543 - sys_corr_9: -31.780018718050453 - sys_corr_10: -29.077888883200426 - sys_corr_11: -104.04580016891363 - sys_corr_12: -129.36959904382306 - sys_corr_13: -83.87905942246117 - sys_corr_14: 19.823732630996314 - sys_corr_15: 27.592270348828364 - sys_corr_16: -2.032404151581393 - sys_corr_17: 9.99551649554804 - sys_corr_18: -26.0970769613442 - sys_corr_19: -26.047626564428953 - sys_corr_20: -15.230101096933677 - sys_corr_21: -3.4381220931614855 - sys_corr_22: -199.26297801442547 - sys_corr_23: -21.174835492779668 - sys_corr_24: -94.5672871236202 - sys_corr_25: -6.146205596220915 - sys_corr_26: -6.241397145090505 - sys_corr_27: -16.11785551696853 - sys_corr_28: 84.8072062482483 - sys_corr_29: -82.2796853244016 - sys_corr_30: -7.38019618379142 - sys_corr_31: -45.295586262656265 - sys_corr_32: 91.14201869631285 - sys_corr_33: 80.60837386551732 - sys_corr_34: -39.310337770612655 - sys_corr_35: 6.130639007066464 - sys_corr_36: 19.85308656141397 - sys_corr_37: -16.091462689561002 - sys_corr_38: -7.158849308811607 - sys_corr_39: 5.310094271279295 - sys_corr_40: -25.893894975769683 - sys_corr_41: -48.07196641703507 - sys_corr_42: 43.84760314382752 - sys_corr_43: 25.032200495025673 - sys_corr_44: 42.6166678248583 - sys_corr_45: 5.205084125953215 - sys_corr_46: 8.141468700096173 - sys_corr_47: 4.676481353366966 - sys_corr_48: -8.09385332167615 - sys_corr_49: -22.505968955980475 - sys_corr_50: 25.528326017754114 - sys_corr_51: -11.026359352897165 - sys_corr_52: -8.41140302989231 - sys_corr_53: -30.45845978616019 - sys_corr_54: 49.58562622725939 - sys_corr_55: -10.475252040198798 - sys_corr_56: -3.6797432259970395 - sys_corr_57: 1.8301675469311258 - sys_corr_58: 9.376913758544626 - sys_corr_59: 5.412765631036408 - sys_corr_60: -16.404347271866953 - sys_corr_61: -26.201541699123776 - sys_corr_62: 10.862735171060143 - sys_corr_63: -12.886351996059535 - sys_corr_64: -15.720401240469593 - sys_corr_65: 14.589882826699265 - sys_corr_66: 16.812591465080903 - sys_corr_67: 4.984100968415558 - sys_corr_68: 11.73281527452637 - sys_corr_69: 5.165042652983912 - sys_corr_70: -13.599366517996712 - sys_corr_71: -24.852614967475994 - sys_corr_72: 7.9789137845111915 - sys_corr_73: -12.502385805239692 - sys_corr_74: -4.521809454441186 - sys_corr_75: -9.5906220583818 - sys_corr_76: 2.243380881891936 - sys_corr_77: -13.09144706440777 - sys_corr_78: 30.70826751499393 - sys_corr_79: -14.8000018205232 - sys_corr_80: 29.377605483532964 - sys_corr_81: -30.968743222245493 - sys_corr_82: -1.9214317165929962 - sys_corr_83: 5.331253100708766 - sys_corr_84: 14.397300668560174 - sys_corr_85: -14.31237504850665 - sys_corr_86: -7.516695389179715 - sys_corr_87: -11.709080957501882 - sys_corr_88: 4.727073320330106 - sys_corr_89: 3.1954465137696277 - sys_corr_90: 2.189482176515262 - sys_corr_91: 0.7352087057602286 - sys_corr_92: -12.48058919619638 - sys_corr_93: 0.15995220738121255 - sys_corr_94: -1.3560915034015792 - sys_corr_95: -3.4767803462049596 - sys_corr_96: 1.4432535555754247 - sys_corr_97: 12.326614963465202 - sys_corr_98: -4.47170880114731 - sys_corr_99: 7.295826073255676 - sys_corr_100: -7.3225892545351625 - sys_corr_101: 8.004377767575715 - sys_corr_102: -19.7878963681004 - sys_corr_103: 77.55322622902301 - sys_corr_104: 14.496140120744801 - sys_corr_105: 32.96111737262259 - sys_corr_106: 7.441591548627724 - sys_corr_107: -6.439481891943522 - sys_corr_108: 2.893537198252191 - sys_corr_109: 1.3445003021579525 - sys_corr_110: 0.8924868720404463 - sys_corr_111: 2.1905764834355765 - sys_corr_112: -0.1526940938952333 - sys_corr_113: 0.27616113773145656 - sys_corr_114: -0.009229419122926718 - sys_corr_115: 0.2676542897996956 - sys_corr_116: 0.09795790685991028 - sys_corr_117: 0.06927503680828648 - sys_corr_118: -0.041763956954789724 - sys_corr_119: -0.002857839220153315 - sys_corr_120: -0.08055227884794937 - sys_corr_121: 0.0029374048570200376 - sys_corr_122: 0.07978359223897792 - sys_corr_123: 0.1516273949357843 - sys_corr_124: 0.11567832408104255 - sys_corr_125: -0.05810683093988737 - sys_corr_126: -0.0279929967922279 - sys_corr_127: -2.9374368523543377 - sys_corr_128: -0.2988375222659888 - sys_corr_129: -0.2403894874387263 - sys_corr_130: 0.013280599022548493 - sys_corr_131: 0.10861432168871352 - sys_corr_132: -0.010064570768958638 +- sys_corr_1: 201.1319120486359 + sys_corr_2: 85.13573634298976 + sys_corr_3: -120.38807097707915 + sys_corr_4: 62.892554814113176 + sys_corr_5: 397.1696073903688 + sys_corr_6: -907.7779825856169 + sys_corr_7: -23.121021593837508 + sys_corr_8: -39.786351633426726 + sys_corr_9: -31.78001871805114 + sys_corr_10: -29.07788888319448 + sys_corr_11: -104.04580016892825 + sys_corr_12: -129.36959904382041 + sys_corr_13: 83.87905942245989 + sys_corr_14: -19.823732630995305 + sys_corr_15: -27.59227034882897 + sys_corr_16: 2.032404151580707 + sys_corr_17: 9.995516495547827 + sys_corr_18: 26.09707696134397 + sys_corr_19: -26.04762656442837 + sys_corr_20: -15.2301010969334 + sys_corr_21: -3.438122093160203 + sys_corr_22: -199.2629780144258 + sys_corr_23: -21.174835492780787 + sys_corr_24: -94.56728712362036 + sys_corr_25: -6.146205596220557 + sys_corr_26: -6.241397145089903 + sys_corr_27: -16.11785551696838 + sys_corr_28: 84.80720624824775 + sys_corr_29: -82.27968532439749 + sys_corr_30: -7.380196183791892 + sys_corr_31: -45.29558626265676 + sys_corr_32: -91.14201869632387 + sys_corr_33: -80.60837386552193 + sys_corr_34: -39.3103377706147 + sys_corr_35: 6.130639007066744 + sys_corr_36: 19.8530865614102 + sys_corr_37: 16.091462689563826 + sys_corr_38: 7.158849308808193 + sys_corr_39: -5.31009427127978 + sys_corr_40: 25.893894975774607 + sys_corr_41: -48.071966417036066 + sys_corr_42: -43.84760314383502 + sys_corr_43: 25.032200495006936 + sys_corr_44: 42.61666782484891 + sys_corr_45: -5.205084125961993 + sys_corr_46: -8.141468700094984 + sys_corr_47: -4.676481353360305 + sys_corr_48: 8.093853321671725 + sys_corr_49: 22.50596895597875 + sys_corr_50: 25.528326017743183 + sys_corr_51: -11.026359352898742 + sys_corr_52: -8.411403029906664 + sys_corr_53: 30.458459786155164 + sys_corr_54: -49.58562622725871 + sys_corr_55: 10.475252040215501 + sys_corr_56: 3.679743225997978 + sys_corr_57: 1.8301675469316157 + sys_corr_58: -9.376913758535807 + sys_corr_59: 5.412765631045264 + sys_corr_60: 16.404347271860185 + sys_corr_61: 26.20154169912798 + sys_corr_62: -10.862735171074487 + sys_corr_63: -12.88635199606407 + sys_corr_64: -15.720401240466098 + sys_corr_65: 14.589882826685756 + sys_corr_66: -16.81259146508148 + sys_corr_67: 4.9841009684224185 + sys_corr_68: -11.732815274527956 + sys_corr_69: 5.165042652979175 + sys_corr_70: 13.59936651799376 + sys_corr_71: -24.852614967465502 + sys_corr_72: -7.978913784512154 + sys_corr_73: 12.502385805242216 + sys_corr_74: -4.521809454444927 + sys_corr_75: -9.590622058379548 + sys_corr_76: 2.243380881886316 + sys_corr_77: 13.091447064396279 + sys_corr_78: -29.37760548353478 + sys_corr_79: 30.708267514996948 + sys_corr_80: -14.800001820525955 + sys_corr_81: 30.968743222245877 + sys_corr_82: 1.921431716593186 + sys_corr_83: 5.331253100712738 + sys_corr_84: -14.39730066855355 + sys_corr_85: -14.312375048506196 + sys_corr_86: 7.516695389163332 + sys_corr_87: 11.709080957499445 + sys_corr_88: 4.727073320307057 + sys_corr_89: 2.1894821765150616 + sys_corr_90: 3.1954465137706345 + sys_corr_91: 0.7352087057616521 + sys_corr_92: 12.480589196195528 + sys_corr_93: 0.15995220738056884 + sys_corr_94: -1.3560915034052459 + sys_corr_95: -3.476780346201494 + sys_corr_96: -1.443253555575072 + sys_corr_97: 12.326614963466824 + sys_corr_98: 4.471708801148378 + sys_corr_99: 7.295826073257259 + sys_corr_100: 8.004377767569794 + sys_corr_101: 19.787896368074367 + sys_corr_102: 77.55322622901318 + sys_corr_103: -14.496140120752974 + sys_corr_104: -32.96111737265856 + sys_corr_105: 7.322589254531905 + sys_corr_106: 7.441591548623115 + sys_corr_107: 2.893537198250906 + sys_corr_108: 1.3445003021572062 + sys_corr_109: -0.8924868720400866 + sys_corr_110: 6.439481891946967 + sys_corr_111: -2.1905764834344774 + sys_corr_112: -0.15269409389509828 + sys_corr_113: -0.2761611377312872 + sys_corr_114: -0.009229419122922033 + sys_corr_115: 0.2676542897995973 + sys_corr_116: -0.097957906859725 + sys_corr_117: -0.06927503680823592 + sys_corr_118: 0.04176395695469214 + sys_corr_119: 0.0028578392201522628 + sys_corr_120: 0.08055227884788446 + sys_corr_121: -0.0029374048570138854 + sys_corr_122: 0.15162739493572194 + sys_corr_123: 0.0797835922389269 + sys_corr_124: 0.1156783240810683 + sys_corr_125: -0.058106830939839677 + sys_corr_126: 0.02799299679220982 + sys_corr_127: -2.9374368523559142 + sys_corr_128: -0.2988375222656556 + sys_corr_129: -0.2403894874386623 + sys_corr_130: 0.013280599022528363 + sys_corr_131: -0.10861432168862958 + sys_corr_132: -0.01006457076890881 stat: 0.0 luminosity: 378.3121540000001 -- sys_corr_1: 223.770813572261 - sys_corr_2: 88.84138911921985 - sys_corr_3: -89.53513085815838 - sys_corr_4: 55.34839232881213 - sys_corr_5: 378.0150845401281 - sys_corr_6: -874.0176819283347 - sys_corr_7: -12.582633039937253 - sys_corr_8: -30.17334091512028 - sys_corr_9: -23.918486970538556 - sys_corr_10: -25.897597193573617 - sys_corr_11: -84.9736544920223 - sys_corr_12: -103.96184191838965 - sys_corr_13: -68.28742378492831 - sys_corr_14: 13.515987064317539 - sys_corr_15: 24.78333833322031 - sys_corr_16: -3.576983158211473 - sys_corr_17: -4.886000369209167 - sys_corr_18: -16.973969335829747 - sys_corr_19: -10.048990668154234 - sys_corr_20: -3.297709398096371 - sys_corr_21: -10.732070464816871 - sys_corr_22: -109.62549210276565 - sys_corr_23: -13.016231293474533 - sys_corr_24: -25.311155316266063 - sys_corr_25: -8.676950684285632 - sys_corr_26: -29.639985610088825 - sys_corr_27: 9.942990468503039 - sys_corr_28: 70.00170257327687 - sys_corr_29: -71.04666083022558 - sys_corr_30: -20.959275570077303 - sys_corr_31: 9.336043278561618 - sys_corr_32: 71.64468703127001 - sys_corr_33: 97.98947582578903 - sys_corr_34: -52.1286795260525 - sys_corr_35: -4.465905478185516 - sys_corr_36: 11.725253481227153 - sys_corr_37: 16.3171494676269 - sys_corr_38: 46.06347287088703 - sys_corr_39: -18.20119301316351 - sys_corr_40: -5.89133375784667 - sys_corr_41: -18.825907256584692 - sys_corr_42: -20.020373896539535 - sys_corr_43: -2.4650904427514493 - sys_corr_44: 6.087836276804153 - sys_corr_45: 44.92523703323028 - sys_corr_46: 6.679714327855638 - sys_corr_47: -32.89044304893314 - sys_corr_48: 21.780075507670404 - sys_corr_49: -23.973211891384558 - sys_corr_50: -39.067411527996235 - sys_corr_51: -55.31104094418138 - sys_corr_52: -129.99626170812897 - sys_corr_53: -50.92235677443143 - sys_corr_54: 91.9602754449331 - sys_corr_55: 2.5680340617294046 - sys_corr_56: 52.99211104812423 - sys_corr_57: 9.477763627281325 - sys_corr_58: 14.016303195566335 - sys_corr_59: 29.71996147713834 - sys_corr_60: -7.193220133705033 - sys_corr_61: -16.8911137435645 - sys_corr_62: 10.127225455326984 - sys_corr_63: -15.864963732563586 - sys_corr_64: 2.1282313827114523 - sys_corr_65: 5.110567092268585 - sys_corr_66: 3.864987803172029 - sys_corr_67: -4.588198337943699 - sys_corr_68: 28.750768284462183 - sys_corr_69: -0.3396253300164751 - sys_corr_70: -2.89167710888399 - sys_corr_71: -9.132418773167352 - sys_corr_72: 3.3305189216644107 - sys_corr_73: -17.336015569348106 - sys_corr_74: -1.6590968582622014 - sys_corr_75: -28.642619900948034 - sys_corr_76: 3.170179896455182 - sys_corr_77: -67.36443413697936 - sys_corr_78: -13.286675338837263 - sys_corr_79: -8.980504571251446 - sys_corr_80: -14.443167684968108 - sys_corr_81: -2.283664525936665 - sys_corr_82: 2.9626903226990042 - sys_corr_83: -3.028796584390556 - sys_corr_84: -0.4656418433180701 - sys_corr_85: 5.096024682794428 - sys_corr_86: -6.459067690950046 - sys_corr_87: -4.145052900294402 - sys_corr_88: 9.951826394260674 - sys_corr_89: -2.6829149035553264 - sys_corr_90: -0.5686652323734253 - sys_corr_91: -3.687022159914007 - sys_corr_92: 0.5259434577158744 - sys_corr_93: 0.07256580239042053 - sys_corr_94: 1.6102402987147661 - sys_corr_95: 0.48442440247743923 - sys_corr_96: -0.9253243535080639 - sys_corr_97: -6.12886298479409 - sys_corr_98: 2.604410080589968 - sys_corr_99: -3.964628238092177 - sys_corr_100: 5.3924396301610695 - sys_corr_101: -5.568034492540235 - sys_corr_102: 13.873548399578763 - sys_corr_103: -51.347777927816594 - sys_corr_104: -9.055217264194573 - sys_corr_105: -20.676741878516346 - sys_corr_106: -5.221450742959321 - sys_corr_107: 3.972292445510211 - sys_corr_108: -2.164714336912185 - sys_corr_109: -0.9778165697585245 - sys_corr_110: -0.7758336861047486 - sys_corr_111: -1.2301522261713946 - sys_corr_112: 0.18822294052178215 - sys_corr_113: -0.27265865347966095 - sys_corr_114: 0.007468442986519666 - sys_corr_115: -0.19410046231303557 - sys_corr_116: -0.07647248795560042 - sys_corr_117: -0.05323101722015643 - sys_corr_118: 0.12978069064179817 - sys_corr_119: 0.0021484831243007456 - sys_corr_120: 0.05783172854803656 - sys_corr_121: 0.0022447383487830615 - sys_corr_122: -0.06370792182045588 - sys_corr_123: -0.13539158315717703 - sys_corr_124: -0.07857017445652689 - sys_corr_125: 0.06555086722833843 - sys_corr_126: 0.015130252335087482 - sys_corr_127: 1.6669963490373538 - sys_corr_128: 0.32987315374110837 - sys_corr_129: 0.15034965625579694 - sys_corr_130: 0.01623949476272639 - sys_corr_131: -0.08077274784390524 - sys_corr_132: 0.04262323341018188 +- sys_corr_1: 223.77081357226106 + sys_corr_2: 88.84138911921607 + sys_corr_3: -89.53513085815736 + sys_corr_4: 55.34839232881469 + sys_corr_5: 378.0150845401239 + sys_corr_6: -874.0176819283355 + sys_corr_7: -12.582633039937296 + sys_corr_8: -30.17334091512038 + sys_corr_9: -23.91848697053865 + sys_corr_10: -25.897597193569666 + sys_corr_11: -84.97365449203365 + sys_corr_12: -103.96184191838681 + sys_corr_13: 68.2874237849266 + sys_corr_14: -13.515987064317525 + sys_corr_15: -24.78333833322089 + sys_corr_16: 3.576983158211165 + sys_corr_17: -4.886000369209156 + sys_corr_18: 16.973969335829693 + sys_corr_19: -10.048990668153618 + sys_corr_20: -3.2977093980965857 + sys_corr_21: -10.732070464815239 + sys_corr_22: -109.62549210276462 + sys_corr_23: -13.01623129347365 + sys_corr_24: -25.311155316266486 + sys_corr_25: -8.676950684285234 + sys_corr_26: -29.639985610089454 + sys_corr_27: 9.942990468504272 + sys_corr_28: 70.00170257327635 + sys_corr_29: -71.04666083022164 + sys_corr_30: -20.95927557007672 + sys_corr_31: 9.336043278561236 + sys_corr_32: -71.64468703128337 + sys_corr_33: -97.98947582579706 + sys_corr_34: -52.128679526054796 + sys_corr_35: -4.4659054781910985 + sys_corr_36: 11.725253481229052 + sys_corr_37: -16.317149467636465 + sys_corr_38: -46.06347287089039 + sys_corr_39: 18.20119301316033 + sys_corr_40: 5.891333757846196 + sys_corr_41: -18.82590725658382 + sys_corr_42: 20.020373896542768 + sys_corr_43: -2.465090442739305 + sys_corr_44: 6.087836276791727 + sys_corr_45: -44.92523703323201 + sys_corr_46: -6.67971432783455 + sys_corr_47: 32.89044304894017 + sys_corr_48: -21.78007550767351 + sys_corr_49: 23.973211891371516 + sys_corr_50: -39.0674115280045 + sys_corr_51: -55.311040944182324 + sys_corr_52: -129.99626170812755 + sys_corr_53: 50.922356774450044 + sys_corr_54: -91.96027544492316 + sys_corr_55: -2.5680340616954576 + sys_corr_56: -52.99211104811376 + sys_corr_57: 9.477763627310125 + sys_corr_58: -14.016303195542559 + sys_corr_59: 29.719961477147223 + sys_corr_60: 7.193220133706075 + sys_corr_61: 16.891113743565718 + sys_corr_62: -10.127225455332056 + sys_corr_63: -15.864963732567714 + sys_corr_64: 2.1282313827000356 + sys_corr_65: 5.1105670922687025 + sys_corr_66: -3.864987803186931 + sys_corr_67: -4.588198337927331 + sys_corr_68: -28.750768284464087 + sys_corr_69: -0.33962533001569434 + sys_corr_70: 2.891677108884663 + sys_corr_71: -9.1324187731713 + sys_corr_72: -3.33051892166918 + sys_corr_73: 17.336015569358715 + sys_corr_74: -1.6590968582540278 + sys_corr_75: -28.64261990096984 + sys_corr_76: 3.1701798964426517 + sys_corr_77: 67.36443413698792 + sys_corr_78: 14.443167684961187 + sys_corr_79: -13.286675338839007 + sys_corr_80: -8.980504571256901 + sys_corr_81: 2.283664525940461 + sys_corr_82: -2.962690322698273 + sys_corr_83: -3.0287965843932443 + sys_corr_84: 0.4656418433209788 + sys_corr_85: 5.096024682797941 + sys_corr_86: 6.459067690964374 + sys_corr_87: 4.145052900295744 + sys_corr_88: 9.951826394254324 + sys_corr_89: -0.568665232373977 + sys_corr_90: -2.6829149035555804 + sys_corr_91: -3.687022159913243 + sys_corr_92: -0.5259434577188258 + sys_corr_93: 0.07256580239056282 + sys_corr_94: 1.6102402987161644 + sys_corr_95: 0.48442440247664503 + sys_corr_96: 0.9253243535080126 + sys_corr_97: -6.128862984795414 + sys_corr_98: -2.604410080590696 + sys_corr_99: -3.9646282380933147 + sys_corr_100: -5.568034492536511 + sys_corr_101: -13.873548399561727 + sys_corr_102: -51.347777927811606 + sys_corr_103: 9.055217264199973 + sys_corr_104: 20.676741878540444 + sys_corr_105: -5.392439630159198 + sys_corr_106: -5.221450742956486 + sys_corr_107: -2.1647143369114237 + sys_corr_108: -0.9778165697581327 + sys_corr_109: 0.7758336861045504 + sys_corr_110: -3.97229244551248 + sys_corr_111: 1.2301522261707383 + sys_corr_112: 0.1882229405217036 + sys_corr_113: 0.27265865347955837 + sys_corr_114: 0.007468442986518194 + sys_corr_115: -0.19410046231302014 + sys_corr_116: 0.07647248795552586 + sys_corr_117: 0.05323101722015749 + sys_corr_118: -0.12978069064180162 + sys_corr_119: -0.002148483124298442 + sys_corr_120: -0.05783172854801647 + sys_corr_121: -0.002244738348784565 + sys_corr_122: -0.13539158315719668 + sys_corr_123: -0.06370792182044151 + sys_corr_124: -0.07857017445653273 + sys_corr_125: 0.06555086722835696 + sys_corr_126: -0.01513025233508793 + sys_corr_127: 1.6669963490384068 + sys_corr_128: 0.32987315374091764 + sys_corr_129: 0.150349656255751 + sys_corr_130: 0.01623949476273163 + sys_corr_131: 0.08077274784388917 + sys_corr_132: 0.04262323341016985 stat: 0.0 luminosity: 387.7167800000001 -- sys_corr_1: 210.99266852288312 - sys_corr_2: 81.29246034986934 - sys_corr_3: -105.95184897817147 - sys_corr_4: 53.89771990807813 - sys_corr_5: 356.75379385355035 - sys_corr_6: -823.0618585328393 - sys_corr_7: -7.218901974602316 - sys_corr_8: -27.321752880150253 - sys_corr_9: -23.009193993611042 - sys_corr_10: -25.628052640656676 - sys_corr_11: -78.59510158208607 - sys_corr_12: -102.72129491803136 - sys_corr_13: -66.93197801871578 - sys_corr_14: 13.483972073482295 - sys_corr_15: 26.396479651761652 - sys_corr_16: -8.023379410230943 - sys_corr_17: 3.877799456854875 - sys_corr_18: -14.137647823205276 - sys_corr_19: -18.334104670363057 - sys_corr_20: -7.121526871218341 - sys_corr_21: -0.9742100212880982 - sys_corr_22: -125.80488693678903 - sys_corr_23: -14.999322548661542 - sys_corr_24: -51.16989055314873 - sys_corr_25: -9.523991651386787 - sys_corr_26: -7.804800741714262 - sys_corr_27: -4.501735542834923 - sys_corr_28: 34.99280985903052 - sys_corr_29: -32.979117127742356 - sys_corr_30: -4.334360593053254 - sys_corr_31: 1.0157820506841724 - sys_corr_32: -141.32009174871087 - sys_corr_33: -95.40583033681321 - sys_corr_34: 34.425273021674776 - sys_corr_35: 15.7178695037904 - sys_corr_36: 33.84137088444161 - sys_corr_37: -18.86012077132384 - sys_corr_38: 5.490338773699492 - sys_corr_39: 32.18811101022708 - sys_corr_40: 7.884075337476581 - sys_corr_41: -4.659866799764084 - sys_corr_42: -43.57994397444431 - sys_corr_43: 6.573667962026722 - sys_corr_44: -6.737223342533584 - sys_corr_45: 34.696819117216684 - sys_corr_46: 18.724386977523057 - sys_corr_47: -41.717469963577365 - sys_corr_48: 19.469003173466817 - sys_corr_49: -24.01537638149568 - sys_corr_50: -28.84683991324413 - sys_corr_51: -36.32055620629993 - sys_corr_52: -87.81648589313556 - sys_corr_53: -15.265844858280985 - sys_corr_54: 47.889260962270114 - sys_corr_55: -11.874449274402187 - sys_corr_56: 22.971694434909878 - sys_corr_57: 19.422841321873555 - sys_corr_58: 12.55990119375118 - sys_corr_59: 41.114872046418576 - sys_corr_60: -8.725539455049207 - sys_corr_61: -6.4397982873345505 - sys_corr_62: 14.813903023105395 - sys_corr_63: -3.3581525441773183 - sys_corr_64: 13.489164543424375 - sys_corr_65: -8.895812890020364 - sys_corr_66: -7.035548354394536 - sys_corr_67: 8.45080475808446 - sys_corr_68: -36.22103300927174 - sys_corr_69: -6.610305085613678 - sys_corr_70: -0.6183515649871122 - sys_corr_71: 24.019045291523035 - sys_corr_72: -0.20957608510568698 - sys_corr_73: 53.09797453581705 - sys_corr_74: 4.28777249897332 - sys_corr_75: 92.93219534818549 - sys_corr_76: -8.876479608153666 - sys_corr_77: 102.73723010964677 - sys_corr_78: 27.742473947971103 - sys_corr_79: 15.9377905013299 - sys_corr_80: -2.655423828651073 - sys_corr_81: -9.81279365161902 - sys_corr_82: 4.974994727726333 - sys_corr_83: 12.40845183663508 - sys_corr_84: -30.15528334857966 - sys_corr_85: 12.105776250008248 - sys_corr_86: 31.868148945257847 - sys_corr_87: 5.188042156504695 - sys_corr_88: -34.15525055377478 - sys_corr_89: 2.941225204455303 - sys_corr_90: -4.208468190401328 - sys_corr_91: 2.7984908736871716 - sys_corr_92: 3.396442028450238 - sys_corr_93: -0.08817311599871759 - sys_corr_94: -1.560690546594237 - sys_corr_95: 3.2862753596582306 - sys_corr_96: -0.13031510124661233 - sys_corr_97: -3.484146087738328 - sys_corr_98: 0.970552686928259 - sys_corr_99: -0.7280885755422767 - sys_corr_100: -1.1346313782579691 - sys_corr_101: 0.47769245752699313 - sys_corr_102: -1.7106256906875985 - sys_corr_103: 4.98159911140013 - sys_corr_104: 0.5230310436806209 - sys_corr_105: 0.6968844474200975 - sys_corr_106: 0.7225604008205015 - sys_corr_107: -0.11383918668467709 - sys_corr_108: 0.7240267058100133 - sys_corr_109: -0.015527831807415987 - sys_corr_110: 0.4110121362757194 - sys_corr_111: 0.6486343316024129 - sys_corr_112: -0.14509210636664283 - sys_corr_113: 0.16900620863520838 - sys_corr_114: -0.004520524771705286 - sys_corr_115: -0.17151266442288735 - sys_corr_116: -0.09482587492676221 - sys_corr_117: -0.06490910197738851 - sys_corr_118: 0.09522877988459783 - sys_corr_119: -0.005475453609742321 - sys_corr_120: 0.029781334976613113 - sys_corr_121: -0.010052096874644645 - sys_corr_122: 0.030828269810058484 - sys_corr_123: 0.030631018012016207 - sys_corr_124: 0.11457207062659741 - sys_corr_125: 0.005593632935782005 - sys_corr_126: -0.016805068634490834 - sys_corr_127: -0.5436581819881224 - sys_corr_128: 0.16313075388370357 - sys_corr_129: -0.0922143039216033 - sys_corr_130: 0.019417765666417744 - sys_corr_131: -0.015850145058296447 - sys_corr_132: -0.06320025825619499 +- sys_corr_1: 210.99266852288224 + sys_corr_2: 81.2924603498715 + sys_corr_3: -105.9518489781703 + sys_corr_4: 53.897719908079935 + sys_corr_5: 356.7537938535453 + sys_corr_6: -823.0618585328413 + sys_corr_7: -7.218901974603443 + sys_corr_8: -27.321752880150942 + sys_corr_9: -23.00919399361246 + sys_corr_10: -25.628052640652065 + sys_corr_11: -78.59510158209861 + sys_corr_12: -102.72129491803064 + sys_corr_13: 66.93197801871517 + sys_corr_14: -13.483972073482086 + sys_corr_15: -26.396479651762817 + sys_corr_16: 8.023379410231284 + sys_corr_17: 3.8777994568558074 + sys_corr_18: 14.137647823206393 + sys_corr_19: -18.334104670363107 + sys_corr_20: -7.121526871218708 + sys_corr_21: -0.9742100212867095 + sys_corr_22: -125.80488693679192 + sys_corr_23: -14.999322548661947 + sys_corr_24: -51.169890553150104 + sys_corr_25: -9.523991651386611 + sys_corr_26: -7.804800741714099 + sys_corr_27: -4.501735542835287 + sys_corr_28: 34.99280985903535 + sys_corr_29: -32.979117127743315 + sys_corr_30: -4.334360593051873 + sys_corr_31: 1.015782050682708 + sys_corr_32: 141.3200917487039 + sys_corr_33: 95.40583033679344 + sys_corr_34: 34.42527302166844 + sys_corr_35: 15.717869503790878 + sys_corr_36: 33.84137088443496 + sys_corr_37: 18.860120771309216 + sys_corr_38: -5.490338773705626 + sys_corr_39: -32.188111010213525 + sys_corr_40: -7.884075337487389 + sys_corr_41: -4.659866799759963 + sys_corr_42: 43.57994397445107 + sys_corr_43: 6.573667962049449 + sys_corr_44: -6.737223342548853 + sys_corr_45: -34.696819117219974 + sys_corr_46: -18.72438697750658 + sys_corr_47: 41.71746996358099 + sys_corr_48: -19.469003173469865 + sys_corr_49: 24.015376381484053 + sys_corr_50: -28.846839913251372 + sys_corr_51: -36.320556206296054 + sys_corr_52: -87.81648589312856 + sys_corr_53: 15.265844858287315 + sys_corr_54: -47.88926096226575 + sys_corr_55: 11.874449274418877 + sys_corr_56: -22.971694434892047 + sys_corr_57: 19.422841321882505 + sys_corr_58: -12.559901193720332 + sys_corr_59: 41.11487204642737 + sys_corr_60: 8.725539455052566 + sys_corr_61: 6.439798287329281 + sys_corr_62: -14.813903023104581 + sys_corr_63: -3.358152544176113 + sys_corr_64: 13.489164543419797 + sys_corr_65: -8.89581289000839 + sys_corr_66: 7.035548354402306 + sys_corr_67: 8.4508047580691 + sys_corr_68: 36.22103300927061 + sys_corr_69: -6.610305085607525 + sys_corr_70: 0.6183515649990325 + sys_corr_71: 24.019045291510672 + sys_corr_72: 0.2095760851093645 + sys_corr_73: -53.097974535822274 + sys_corr_74: 4.287772498949123 + sys_corr_75: 92.93219534820709 + sys_corr_76: -8.87647960810707 + sys_corr_77: -102.73723010963019 + sys_corr_78: 2.655423828661844 + sys_corr_79: 27.74247394797028 + sys_corr_80: 15.937790501335051 + sys_corr_81: 9.812793651616845 + sys_corr_82: -4.974994727726725 + sys_corr_83: 12.408451836640417 + sys_corr_84: 30.155283348564684 + sys_corr_85: 12.105776250003608 + sys_corr_86: -31.868148945281018 + sys_corr_87: -5.188042156499447 + sys_corr_88: -34.15525055371663 + sys_corr_89: -4.208468190399686 + sys_corr_90: 2.9412252044542617 + sys_corr_91: 2.798490873683833 + sys_corr_92: -3.3964420284331096 + sys_corr_93: -0.08817311599796339 + sys_corr_94: -1.5606905465914591 + sys_corr_95: 3.2862753596544128 + sys_corr_96: 0.13031510124612164 + sys_corr_97: -3.4841460877370327 + sys_corr_98: -0.9705526869279422 + sys_corr_99: -0.7280885755418534 + sys_corr_100: 0.4776924575267672 + sys_corr_101: 1.7106256906861748 + sys_corr_102: 4.98159911140096 + sys_corr_103: -0.5230310436812969 + sys_corr_104: -0.6968844474227845 + sys_corr_105: 1.1346313782579018 + sys_corr_106: 0.7225604008203445 + sys_corr_107: 0.7240267058099167 + sys_corr_108: -0.0155278318073834 + sys_corr_109: -0.41101213627573124 + sys_corr_110: 0.11383918668509115 + sys_corr_111: -0.6486343316023704 + sys_corr_112: -0.14509210636664702 + sys_corr_113: -0.16900620863517504 + sys_corr_114: -0.004520524771706278 + sys_corr_115: -0.17151266442283758 + sys_corr_116: 0.09482587492671578 + sys_corr_117: 0.06490910197735539 + sys_corr_118: -0.09522877988454535 + sys_corr_119: 0.005475453609741227 + sys_corr_120: -0.02978133497659764 + sys_corr_121: 0.01005209687464338 + sys_corr_122: 0.030631018012065244 + sys_corr_123: 0.030828269810078204 + sys_corr_124: 0.1145720706265942 + sys_corr_125: 0.005593632935757881 + sys_corr_126: 0.01680506863448888 + sys_corr_127: -0.5436581819882709 + sys_corr_128: 0.16313075388376827 + sys_corr_129: -0.09221430392160718 + sys_corr_130: 0.019417765666421727 + sys_corr_131: 0.015850145058268685 + sys_corr_132: -0.06320025825620075 stat: 0.0 luminosity: 392.53189800000007 -- sys_corr_1: 234.88806000187944 - sys_corr_2: 83.58302205900057 - sys_corr_3: -67.4418066618424 - sys_corr_4: 69.40595016177465 - sys_corr_5: 319.77427666348336 - sys_corr_6: -801.351171899335 - sys_corr_7: 15.975978722879404 - sys_corr_8: -7.8071614531734195 - sys_corr_9: -6.904566893187502 - sys_corr_10: -14.770800893110508 - sys_corr_11: -46.81129924905797 - sys_corr_12: -64.59367822842083 - sys_corr_13: -45.63657051844875 - sys_corr_14: 8.246760383709002 - sys_corr_15: 17.65942837299455 - sys_corr_16: -8.467911177569583 - sys_corr_17: -9.76702146248352 - sys_corr_18: -1.0325434162686502 - sys_corr_19: -0.8756066729571805 - sys_corr_20: 2.631248723126677 - sys_corr_21: -3.9110511930966654 - sys_corr_22: -18.44355929759351 - sys_corr_23: -8.442646639196468 - sys_corr_24: 1.226298820466363 - sys_corr_25: -15.370743103457913 - sys_corr_26: -47.07498044299012 - sys_corr_27: 12.3496122457693 - sys_corr_28: 55.87888119866733 - sys_corr_29: -64.52916574619834 - sys_corr_30: -0.8926053708212967 - sys_corr_31: 27.401416256234658 - sys_corr_32: 9.587281010238627 - sys_corr_33: -17.07595876507798 - sys_corr_34: -16.642281322204298 - sys_corr_35: -4.260102760358894 - sys_corr_36: -0.6329743086153478 - sys_corr_37: 6.2341038855105015 - sys_corr_38: -6.615709270780855 - sys_corr_39: 6.390037083486812 - sys_corr_40: 33.09152428990252 - sys_corr_41: 0.1273984624410342 - sys_corr_42: -47.10051805378936 - sys_corr_43: -2.5769882956468577 - sys_corr_44: -38.38663249445087 - sys_corr_45: 24.554671439844306 - sys_corr_46: 6.68695745738459 - sys_corr_47: 3.777989891230858 - sys_corr_48: 21.95552863062362 - sys_corr_49: -19.87073018062029 - sys_corr_50: -43.21535914053966 - sys_corr_51: -2.938625586863264 - sys_corr_52: -21.57491072740967 - sys_corr_53: 42.99357384709218 - sys_corr_54: -109.58500553920246 - sys_corr_55: 15.175161280833029 - sys_corr_56: -44.06548463674455 - sys_corr_57: 54.14923183197594 - sys_corr_58: -57.38719962967984 - sys_corr_59: -21.250639111599433 - sys_corr_60: 16.83373646060334 - sys_corr_61: -39.86341623480566 - sys_corr_62: 49.03150249317189 - sys_corr_63: -7.59095841753702 - sys_corr_64: -13.884099622302909 - sys_corr_65: -25.675443033302084 - sys_corr_66: 22.123016795796858 - sys_corr_67: 33.60452834188372 - sys_corr_68: -143.12554782741316 - sys_corr_69: -64.74847647751183 - sys_corr_70: -31.801498786668965 - sys_corr_71: -23.11310988278775 - sys_corr_72: -29.936438908860772 - sys_corr_73: -45.92988630936639 - sys_corr_74: -4.549044827698676 - sys_corr_75: -14.654971394243763 - sys_corr_76: -0.895068995697541 - sys_corr_77: -14.57666458339225 - sys_corr_78: -62.24771969374004 - sys_corr_79: 5.3332975993694065 - sys_corr_80: -12.169055441439962 - sys_corr_81: 6.127622914911167 - sys_corr_82: 0.8616036962406889 - sys_corr_83: -4.5102853794703925 - sys_corr_84: 15.897565177314487 - sys_corr_85: -8.150634138327524 - sys_corr_86: -5.866524823535204 - sys_corr_87: -10.896811973388484 - sys_corr_88: 9.016093229794944 - sys_corr_89: 2.2864384009058414 - sys_corr_90: 1.1540237338502843 - sys_corr_91: 3.799160618358291 - sys_corr_92: -4.978391759027652 - sys_corr_93: -0.14152687455407656 - sys_corr_94: -0.5105258637381925 - sys_corr_95: 0.15263877847964116 - sys_corr_96: -0.14376073972492792 - sys_corr_97: -0.43725550804323354 - sys_corr_98: 0.16980103481069556 - sys_corr_99: 0.07696439062326346 - sys_corr_100: -0.7356660875613746 - sys_corr_101: 0.3506685550376577 - sys_corr_102: -1.2143120245928543 - sys_corr_103: 4.392393756347194 - sys_corr_104: 0.6065076868850884 - sys_corr_105: 1.6204887903875649 - sys_corr_106: 0.5599423719905526 - sys_corr_107: -0.3866808175821079 - sys_corr_108: 0.9113394728627517 - sys_corr_109: -0.20150966214590932 - sys_corr_110: -0.012963369642895321 - sys_corr_111: 0.45963757647857756 - sys_corr_112: -0.1446898666234175 - sys_corr_113: 0.06638012296947307 - sys_corr_114: -0.0028737439694776776 - sys_corr_115: 0.03504869024903696 - sys_corr_116: -0.11831733153211758 - sys_corr_117: -0.07966446392137531 - sys_corr_118: -0.10159031109820862 - sys_corr_119: -0.0009861440784729562 - sys_corr_120: 0.039045833855870536 - sys_corr_121: -0.004098229999930761 - sys_corr_122: 0.03907060707263745 - sys_corr_123: 0.04168706224277105 - sys_corr_124: 0.16014262866710569 - sys_corr_125: -0.010178200394582794 - sys_corr_126: -0.01642898209751135 - sys_corr_127: -0.37129753642213204 - sys_corr_128: 0.06659039942719958 - sys_corr_129: -0.06175368880345087 - sys_corr_130: -0.0049230820232383475 - sys_corr_131: -0.010208970442666459 - sys_corr_132: 0.04495122899500581 +- sys_corr_1: 234.88806000187773 + sys_corr_2: 83.58302205900118 + sys_corr_3: -67.44180666184374 + sys_corr_4: 69.4059501617762 + sys_corr_5: 319.7742766634767 + sys_corr_6: -801.3511718993364 + sys_corr_7: 15.975978722878809 + sys_corr_8: -7.807161453173631 + sys_corr_9: -6.904566893187981 + sys_corr_10: -14.770800893108643 + sys_corr_11: -46.81129924906614 + sys_corr_12: -64.59367822842006 + sys_corr_13: 45.6365705184485 + sys_corr_14: -8.246760383708736 + sys_corr_15: -17.659428372995027 + sys_corr_16: 8.467911177569452 + sys_corr_17: -9.76702146248292 + sys_corr_18: 1.032543416268882 + sys_corr_19: -0.8756066729567935 + sys_corr_20: 2.6312487231265815 + sys_corr_21: -3.9110511930967253 + sys_corr_22: -18.443559297593357 + sys_corr_23: -8.442646639196765 + sys_corr_24: 1.2262988204664307 + sys_corr_25: -15.370743103459645 + sys_corr_26: -47.07498044299164 + sys_corr_27: 12.34961224577122 + sys_corr_28: 55.87888119866764 + sys_corr_29: -64.52916574619897 + sys_corr_30: -0.8926053708206922 + sys_corr_31: 27.401416256236928 + sys_corr_32: -9.587281010237877 + sys_corr_33: 17.075958765075413 + sys_corr_34: -16.642281322205715 + sys_corr_35: -4.260102760359184 + sys_corr_36: -0.6329743086122991 + sys_corr_37: -6.234103885509351 + sys_corr_38: 6.6157092707811405 + sys_corr_39: -6.390037083480005 + sys_corr_40: -33.091524289904875 + sys_corr_41: 0.12739846244465738 + sys_corr_42: 47.10051805379098 + sys_corr_43: -2.5769882956233983 + sys_corr_44: -38.38663249444546 + sys_corr_45: -24.554671439844476 + sys_corr_46: -6.686957457376534 + sys_corr_47: -3.77798989123508 + sys_corr_48: -21.955528630629484 + sys_corr_49: 19.870730180618306 + sys_corr_50: -43.21535914053552 + sys_corr_51: -2.9386255868611535 + sys_corr_52: -21.574910727406976 + sys_corr_53: -42.993573847082665 + sys_corr_54: 109.58500553919794 + sys_corr_55: -15.175161280870007 + sys_corr_56: 44.06548463673751 + sys_corr_57: 54.149231831960606 + sys_corr_58: 57.38719962967532 + sys_corr_59: -21.25063911165203 + sys_corr_60: -16.833736460614965 + sys_corr_61: 39.86341623479435 + sys_corr_62: -49.03150249317871 + sys_corr_63: -7.590958417515117 + sys_corr_64: -13.884099622287392 + sys_corr_65: -25.675443033316423 + sys_corr_66: -22.123016795728766 + sys_corr_67: 33.60452834180206 + sys_corr_68: 143.12554782738 + sys_corr_69: -64.74847647752713 + sys_corr_70: 31.80149878673111 + sys_corr_71: -23.113109882801506 + sys_corr_72: 29.936438908869498 + sys_corr_73: 45.929886309381345 + sys_corr_74: -4.549044827706737 + sys_corr_75: -14.654971394255613 + sys_corr_76: -0.8950689957055594 + sys_corr_77: 14.576664583390658 + sys_corr_78: 12.169055441438863 + sys_corr_79: -62.247719693741914 + sys_corr_80: 5.333297599370013 + sys_corr_81: -6.127622914912589 + sys_corr_82: -0.8616036962407514 + sys_corr_83: -4.510285379473043 + sys_corr_84: -15.89756517731147 + sys_corr_85: -8.150634138327968 + sys_corr_86: 5.86652482353704 + sys_corr_87: 10.896811973386862 + sys_corr_88: 9.016093229782419 + sys_corr_89: 1.1540237338500843 + sys_corr_90: 2.2864384009062357 + sys_corr_91: 3.7991606183592803 + sys_corr_92: 4.978391759024857 + sys_corr_93: -0.14152687455423651 + sys_corr_94: -0.5105258637391729 + sys_corr_95: 0.15263877848061227 + sys_corr_96: 0.14376073972501316 + sys_corr_97: -0.43725550804343943 + sys_corr_98: -0.16980103481067813 + sys_corr_99: 0.07696439062329065 + sys_corr_100: 0.3506685550373761 + sys_corr_101: 1.2143120245914134 + sys_corr_102: 4.392393756346811 + sys_corr_103: -0.6065076868854357 + sys_corr_104: -1.6204887903895961 + sys_corr_105: 0.7356660875613756 + sys_corr_106: 0.5599423719904142 + sys_corr_107: 0.9113394728626725 + sys_corr_108: -0.2015096621459215 + sys_corr_109: 0.012963369642886392 + sys_corr_110: 0.3866808175822676 + sys_corr_111: -0.45963757647854486 + sys_corr_112: -0.14468986662339803 + sys_corr_113: -0.06638012296946978 + sys_corr_114: -0.002873743969475217 + sys_corr_115: 0.03504869024904058 + sys_corr_116: 0.11831733153210161 + sys_corr_117: 0.0796644639213688 + sys_corr_118: 0.10159031109821695 + sys_corr_119: 0.0009861440784724085 + sys_corr_120: -0.03904583385586749 + sys_corr_121: 0.004098229999930932 + sys_corr_122: 0.041687062242798244 + sys_corr_123: 0.03907060707264992 + sys_corr_124: 0.1601426286670923 + sys_corr_125: -0.010178200394593497 + sys_corr_126: 0.016428982097519706 + sys_corr_127: -0.3712975364221878 + sys_corr_128: 0.06659039942724887 + sys_corr_129: -0.06175368880345954 + sys_corr_130: -0.004923082023230926 + sys_corr_131: 0.010208970442666374 + sys_corr_132: 0.044951228994994326 stat: 0.0 luminosity: 397.8760060000001 -- sys_corr_1: 255.1658283236218 - sys_corr_2: 75.98164086954523 - sys_corr_3: -34.06400522358202 - sys_corr_4: 80.74459843492774 - sys_corr_5: 284.1020544763065 - sys_corr_6: -747.7559788892439 - sys_corr_7: 43.39360190964696 - sys_corr_8: 19.26917471560356 - sys_corr_9: 14.45805071186474 - sys_corr_10: -8.748623581319913 - sys_corr_11: -19.71453077868974 - sys_corr_12: -36.47538297278662 - sys_corr_13: -18.067484078487976 - sys_corr_14: -0.49948832397113163 - sys_corr_15: 15.036502195782512 - sys_corr_16: -9.192047316895538 - sys_corr_17: -13.952454443897292 - sys_corr_18: 14.907787544384451 - sys_corr_19: 18.679002427643052 - sys_corr_20: 12.338269003846907 - sys_corr_21: -0.19948541804374464 - sys_corr_22: 82.83137380304925 - sys_corr_23: -1.9664542787981452 - sys_corr_24: 51.11197778243669 - sys_corr_25: -22.119868803466193 - sys_corr_26: -75.73967547058116 - sys_corr_27: 43.06576460297384 - sys_corr_28: 66.55497160647042 - sys_corr_29: -77.2186889981699 - sys_corr_30: -2.721849269601947 - sys_corr_31: 45.66137273893058 - sys_corr_32: -7.171533502844249 - sys_corr_33: -23.88443984877104 - sys_corr_34: -9.03283655821975 - sys_corr_35: 2.1628102105142952 - sys_corr_36: 17.67179237115885 - sys_corr_37: -23.587661747798425 - sys_corr_38: -2.6985260381450593 - sys_corr_39: -18.486162859538172 - sys_corr_40: 37.84995084401749 - sys_corr_41: 56.87681353211162 - sys_corr_42: -27.04825194042385 - sys_corr_43: -26.427601140078142 - sys_corr_44: 19.60496949472823 - sys_corr_45: 20.76365473511477 - sys_corr_46: -14.32356363113217 - sys_corr_47: -24.784053938313118 - sys_corr_48: 15.511169510190035 - sys_corr_49: -21.294450055351575 - sys_corr_50: -23.907808738018854 - sys_corr_51: 29.228019363307702 - sys_corr_52: 68.82451808851098 - sys_corr_53: 38.43453339486141 - sys_corr_54: -66.18109476930043 - sys_corr_55: -12.474839804898336 - sys_corr_56: 14.83189370799976 - sys_corr_57: 18.89577073844591 - sys_corr_58: -81.67342028254035 - sys_corr_59: 87.23911687975415 - sys_corr_60: 38.229447293208175 - sys_corr_61: -28.326053938710025 - sys_corr_62: 38.542654721557106 - sys_corr_63: -78.75334860939802 - sys_corr_64: 67.84022116386082 - sys_corr_65: -9.344201956646636 - sys_corr_66: -58.061642666947684 - sys_corr_67: -19.65387637749217 - sys_corr_68: 105.79736062345779 - sys_corr_69: -0.6385581807408517 - sys_corr_70: 44.84655046369169 - sys_corr_71: 67.0540727404996 - sys_corr_72: 2.878602428772992 - sys_corr_73: 0.19886508501563072 - sys_corr_74: 10.527271414850267 - sys_corr_75: -1.7296485794141832 - sys_corr_76: -1.0748406586361374 - sys_corr_77: -13.945813278472215 - sys_corr_78: 20.233900924206573 - sys_corr_79: -1.388118383630667 - sys_corr_80: -11.00089721443537 - sys_corr_81: 9.406901228651519 - sys_corr_82: -14.448555143014147 - sys_corr_83: -15.748993557082118 - sys_corr_84: 3.3416035395163233 - sys_corr_85: -0.47594944270396805 - sys_corr_86: -13.484236377881066 - sys_corr_87: -22.81854928763005 - sys_corr_88: 7.798058506519122 - sys_corr_89: -0.16268535090188097 - sys_corr_90: 0.794616249548574 - sys_corr_91: -0.9363097563148076 - sys_corr_92: -4.325671959096238 - sys_corr_93: -0.14049289154298256 - sys_corr_94: -0.393877627249181 - sys_corr_95: 0.28137275341160317 - sys_corr_96: -0.020503598123578985 - sys_corr_97: -0.4229364828590184 - sys_corr_98: 0.280503281029522 - sys_corr_99: 0.5927545663516697 - sys_corr_100: -1.0821439510206157 - sys_corr_101: 1.0335826107373554 - sys_corr_102: -2.6264089539091264 - sys_corr_103: 5.804795526981466 - sys_corr_104: 0.8423410936361059 - sys_corr_105: 2.0829315545146287 - sys_corr_106: 1.0104475532239008 - sys_corr_107: -0.34096610215891554 - sys_corr_108: 0.8930818874037693 - sys_corr_109: 0.1438334490605647 - sys_corr_110: -0.07887243747223026 - sys_corr_111: 0.3513712431949529 - sys_corr_112: 0.002705945481514647 - sys_corr_113: 0.017473523773636482 - sys_corr_114: -0.00036119304044940337 - sys_corr_115: -0.011198959654600205 - sys_corr_116: 0.00771543298106063 - sys_corr_117: 0.01056365974798903 - sys_corr_118: -0.01691501417280034 - sys_corr_119: 0.008026900765867638 - sys_corr_120: -0.019949251716598764 - sys_corr_121: -0.008612277516436052 - sys_corr_122: 0.02470005963325978 - sys_corr_123: 0.0539102953953279 - sys_corr_124: 0.016292962367549523 - sys_corr_125: -0.035845609641725916 - sys_corr_126: -0.017142762639260345 - sys_corr_127: -0.7078765447958298 - sys_corr_128: -0.13898490126070484 - sys_corr_129: 0.16622568721936357 - sys_corr_130: 0.0003338919713936502 - sys_corr_131: 0.029022550643180146 - sys_corr_132: 0.06732070220521369 +- sys_corr_1: 255.1658283236207 + sys_corr_2: 75.98164086954611 + sys_corr_3: -34.06400522358199 + sys_corr_4: 80.74459843493062 + sys_corr_5: 284.102054476303 + sys_corr_6: -747.7559788892427 + sys_corr_7: 43.393601909645895 + sys_corr_8: 19.269174715604574 + sys_corr_9: 14.458050711864812 + sys_corr_10: -8.748623581319096 + sys_corr_11: -19.714530778693724 + sys_corr_12: -36.47538297278688 + sys_corr_13: 18.067484078488107 + sys_corr_14: 0.49948832397154025 + sys_corr_15: -15.036502195782912 + sys_corr_16: 9.19204731689545 + sys_corr_17: -13.95245444389699 + sys_corr_18: -14.907787544384481 + sys_corr_19: 18.679002427642384 + sys_corr_20: 12.338269003846504 + sys_corr_21: -0.19948541804398956 + sys_corr_22: 82.83137380304787 + sys_corr_23: -1.9664542787978732 + sys_corr_24: 51.111977782436554 + sys_corr_25: -22.11986880346755 + sys_corr_26: -75.7396754705859 + sys_corr_27: 43.06576460297547 + sys_corr_28: 66.5549716064703 + sys_corr_29: -77.2186889981654 + sys_corr_30: -2.721849269602242 + sys_corr_31: 45.66137273893241 + sys_corr_32: 7.171533502846938 + sys_corr_33: 23.884439848770523 + sys_corr_34: -9.032836558220716 + sys_corr_35: 2.16281021051218 + sys_corr_36: 17.671792371158762 + sys_corr_37: 23.587661747792783 + sys_corr_38: 2.698526038144786 + sys_corr_39: 18.486162859547402 + sys_corr_40: -37.84995084402476 + sys_corr_41: 56.87681353210797 + sys_corr_42: 27.048251940437325 + sys_corr_43: -26.427601140064294 + sys_corr_44: 19.60496949472854 + sys_corr_45: -20.76365473510634 + sys_corr_46: 14.323563631142767 + sys_corr_47: 24.78405393831516 + sys_corr_48: -15.511169510188623 + sys_corr_49: 21.29445005536094 + sys_corr_50: -23.907808738009923 + sys_corr_51: 29.228019363300255 + sys_corr_52: 68.82451808851347 + sys_corr_53: -38.43453339486183 + sys_corr_54: 66.18109476929816 + sys_corr_55: 12.47483980487278 + sys_corr_56: -14.831893708003722 + sys_corr_57: 18.89577073845841 + sys_corr_58: 81.67342028262436 + sys_corr_59: 87.23911687969503 + sys_corr_60: -38.22944729321589 + sys_corr_61: 28.326053938707336 + sys_corr_62: -38.54265472156507 + sys_corr_63: -78.7533486094192 + sys_corr_64: 67.84022116381195 + sys_corr_65: -9.344201956580607 + sys_corr_66: 58.061642666897924 + sys_corr_67: -19.65387637742263 + sys_corr_68: -105.79736062345115 + sys_corr_69: -0.6385581807169903 + sys_corr_70: -44.8465504637211 + sys_corr_71: 67.05407274048876 + sys_corr_72: -2.87860242877302 + sys_corr_73: -0.1988650850303656 + sys_corr_74: 10.527271414865512 + sys_corr_75: -1.7296485794108156 + sys_corr_76: -1.0748406586331223 + sys_corr_77: 13.945813278470037 + sys_corr_78: 11.000897214432568 + sys_corr_79: 20.233900924207475 + sys_corr_80: -1.388118383630435 + sys_corr_81: -9.406901228647351 + sys_corr_82: 14.448555143013673 + sys_corr_83: -15.748993557082505 + sys_corr_84: -3.3416035395133328 + sys_corr_85: -0.47594944270311335 + sys_corr_86: 13.484236377888704 + sys_corr_87: 22.818549287628045 + sys_corr_88: 7.798058506504721 + sys_corr_89: 0.7946162495480019 + sys_corr_90: -0.16268535090163397 + sys_corr_91: -0.9363097563145639 + sys_corr_92: 4.3256719590911565 + sys_corr_93: -0.1404928915432583 + sys_corr_94: -0.3938776272506559 + sys_corr_95: 0.28137275341303114 + sys_corr_96: 0.020503598123700107 + sys_corr_97: -0.42293648285920094 + sys_corr_98: -0.2805032810294292 + sys_corr_99: 0.5927545663517183 + sys_corr_100: 1.0335826107368067 + sys_corr_101: 2.626408953906973 + sys_corr_102: 5.804795526980865 + sys_corr_103: -0.8423410936366459 + sys_corr_104: -2.0829315545172866 + sys_corr_105: 1.0821439510202455 + sys_corr_106: 1.0104475532233048 + sys_corr_107: 0.8930818874035735 + sys_corr_108: 0.1438334490603549 + sys_corr_109: 0.07887243747233776 + sys_corr_110: 0.34096610215916623 + sys_corr_111: -0.3513712431947343 + sys_corr_112: 0.002705945481534577 + sys_corr_113: -0.01747352377360458 + sys_corr_114: -0.0003611930404466556 + sys_corr_115: -0.01119895965464823 + sys_corr_116: -0.00771543298102316 + sys_corr_117: -0.01056365974795421 + sys_corr_118: 0.016915014172733195 + sys_corr_119: -0.00802690076586629 + sys_corr_120: 0.019949251716573118 + sys_corr_121: 0.008612277516441587 + sys_corr_122: 0.05391029539527024 + sys_corr_123: 0.02470005963322094 + sys_corr_124: 0.016292962367576574 + sys_corr_125: -0.035845609641695406 + sys_corr_126: 0.01714276263924835 + sys_corr_127: -0.7078765447959624 + sys_corr_128: -0.13898490126061183 + sys_corr_129: 0.16622568721938707 + sys_corr_130: 0.0003338919713764542 + sys_corr_131: -0.029022550643145913 + sys_corr_132: 0.06732070220522401 stat: 0.0 luminosity: 405.19287600000007 -- sys_corr_1: 259.3598901453969 - sys_corr_2: 49.11015622321059 - sys_corr_3: 0.648945482162792 - sys_corr_4: 72.98434435063002 - sys_corr_5: 194.90099612518253 - sys_corr_6: -606.4450675633466 - sys_corr_7: 70.56779901095214 - sys_corr_8: 53.835793826468745 - sys_corr_9: 36.149301615517274 - sys_corr_10: 21.622270716089417 - sys_corr_11: 26.823159855338833 - sys_corr_12: 23.095115071307255 - sys_corr_13: -2.756087325093794 - sys_corr_14: -1.210565288039768 - sys_corr_15: 5.774674378961 - sys_corr_16: -12.405973928508601 - sys_corr_17: -22.30883117996507 - sys_corr_18: 16.677173263024727 - sys_corr_19: 28.194781778650793 - sys_corr_20: 17.11075016653677 - sys_corr_21: 6.186419985649959 - sys_corr_22: 183.89860861328125 - sys_corr_23: 15.32472052030815 - sys_corr_24: 89.98676229547134 - sys_corr_25: -23.3552268372383 - sys_corr_26: -82.26346162311187 - sys_corr_27: 49.08695777267714 - sys_corr_28: 67.82780666937154 - sys_corr_29: -77.82892354027668 - sys_corr_30: 18.04625251008538 - sys_corr_31: 51.146814804239774 - sys_corr_32: -1.8358112560538449 - sys_corr_33: -13.17103231652478 - sys_corr_34: -18.393849720791536 - sys_corr_35: -5.554180624560377 - sys_corr_36: 0.4690424476974982 - sys_corr_37: -3.1455912079431028 - sys_corr_38: 18.22160776561075 - sys_corr_39: 25.240928116696285 - sys_corr_40: 0.5242156995116083 - sys_corr_41: 39.89177636297426 - sys_corr_42: 13.706703749801006 - sys_corr_43: -11.512278859980142 - sys_corr_44: -22.77704932853179 - sys_corr_45: -18.06858556241603 - sys_corr_46: -5.318083913736601 - sys_corr_47: 12.40298604343533 - sys_corr_48: 32.79063480834589 - sys_corr_49: -16.994173491803757 - sys_corr_50: -39.95491865072001 - sys_corr_51: 3.1710465845323297 - sys_corr_52: -22.172658005008216 - sys_corr_53: 33.71087095092858 - sys_corr_54: 32.68859566690567 - sys_corr_55: -5.434188103619891 - sys_corr_56: -8.744585590296222 - sys_corr_57: -46.88066233391976 - sys_corr_58: 62.71464735440261 - sys_corr_59: -42.860516238928255 - sys_corr_60: 1.9535347126029745 - sys_corr_61: 141.03256549513355 - sys_corr_62: -67.6803313926567 - sys_corr_63: 72.42577426457069 - sys_corr_64: 65.3664541318102 - sys_corr_65: 5.943013053537506 - sys_corr_66: -46.40919102760059 - sys_corr_67: -21.437357620248626 - sys_corr_68: -38.95381474696836 - sys_corr_69: -37.61502115999671 - sys_corr_70: 66.52191245472277 - sys_corr_71: 58.43493820566573 - sys_corr_72: -25.155991424454076 - sys_corr_73: -44.40607425107563 - sys_corr_74: 31.38509671460798 - sys_corr_75: -5.962337140351593 - sys_corr_76: 9.767432444053055 - sys_corr_77: -12.657455805396824 - sys_corr_78: -2.596161836972882 - sys_corr_79: -5.357999137542397 - sys_corr_80: 7.178199604717368 - sys_corr_81: -16.531252744452463 - sys_corr_82: 3.797749961344204 - sys_corr_83: 10.270833189064614 - sys_corr_84: 9.567505562849364 - sys_corr_85: -2.445906821939429 - sys_corr_86: -17.206917838439953 - sys_corr_87: 4.692201884560484 - sys_corr_88: 10.646861548795256 - sys_corr_89: -0.609996872232578 - sys_corr_90: 0.6635956544107199 - sys_corr_91: 2.4866832051559706 - sys_corr_92: -4.1645276708540235 - sys_corr_93: -0.33878176886991684 - sys_corr_94: -0.43225832615767956 - sys_corr_95: -0.13240551192421485 - sys_corr_96: 0.11254621976194694 - sys_corr_97: 1.650381293198007 - sys_corr_98: -0.6975543805077743 - sys_corr_99: 0.8501051241675321 - sys_corr_100: -2.0642513355683314 - sys_corr_101: 2.0132826987429184 - sys_corr_102: -3.8961589955880096 - sys_corr_103: 12.81984416315347 - sys_corr_104: 1.9177816024574426 - sys_corr_105: 4.561400349980331 - sys_corr_106: 1.7447662002727322 - sys_corr_107: -0.14538349931090058 - sys_corr_108: 0.8281885215570588 - sys_corr_109: 0.6395304896005891 - sys_corr_110: -0.047902798047604604 - sys_corr_111: 0.2995783956168117 - sys_corr_112: 0.009474142607433157 - sys_corr_113: -0.04834722965939379 - sys_corr_114: 0.0005286842883069105 - sys_corr_115: 0.11523528868461667 - sys_corr_116: 0.05977064410285977 - sys_corr_117: 0.048654102822853866 - sys_corr_118: -0.03150011826694666 - sys_corr_119: 0.005548801916102022 - sys_corr_120: -0.03423261428332027 - sys_corr_121: 0.0010153208634822225 - sys_corr_122: 0.020805771944022996 - sys_corr_123: 0.05057717998217047 - sys_corr_124: -0.0382925423898859 - sys_corr_125: -0.041757617765082994 - sys_corr_126: 0.002488764156866223 - sys_corr_127: -0.5579003958969742 - sys_corr_128: -0.18554988146459134 - sys_corr_129: -0.048280147995436395 - sys_corr_130: -0.009960461622590674 - sys_corr_131: 0.04560899406745569 - sys_corr_132: 0.17812185500703853 +- sys_corr_1: 259.3598901453959 + sys_corr_2: 49.11015622321162 + sys_corr_3: 0.6489454821630534 + sys_corr_4: 72.98434435063496 + sys_corr_5: 194.90099612517778 + sys_corr_6: -606.4450675633483 + sys_corr_7: 70.56779901095145 + sys_corr_8: 53.83579382647099 + sys_corr_9: 36.149301615517864 + sys_corr_10: 21.62227071608712 + sys_corr_11: 26.82315985534185 + sys_corr_12: 23.09511507130692 + sys_corr_13: 2.7560873250934397 + sys_corr_14: 1.2105652880398632 + sys_corr_15: -5.774674378960877 + sys_corr_16: 12.405973928509198 + sys_corr_17: -22.308831179965118 + sys_corr_18: -16.67717326302523 + sys_corr_19: 28.194781778650135 + sys_corr_20: 17.11075016653642 + sys_corr_21: 6.186419985648986 + sys_corr_22: 183.89860861328413 + sys_corr_23: 15.324720520307674 + sys_corr_24: 89.98676229547178 + sys_corr_25: -23.35522683723831 + sys_corr_26: -82.26346162311235 + sys_corr_27: 49.08695777267997 + sys_corr_28: 67.82780666937131 + sys_corr_29: -77.82892354027607 + sys_corr_30: 18.046252510087346 + sys_corr_31: 51.146814804241735 + sys_corr_32: 1.8358112560535962 + sys_corr_33: 13.17103231651907 + sys_corr_34: -18.393849720788502 + sys_corr_35: -5.554180624562761 + sys_corr_36: 0.46904244770153136 + sys_corr_37: 3.1455912079427812 + sys_corr_38: -18.2216077656136 + sys_corr_39: -25.240928116698125 + sys_corr_40: -0.5242156995159462 + sys_corr_41: 39.891776362976586 + sys_corr_42: -13.706703749791156 + sys_corr_43: -11.512278859992373 + sys_corr_44: -22.777049328532325 + sys_corr_45: 18.06858556241774 + sys_corr_46: 5.318083913731969 + sys_corr_47: -12.402986043431198 + sys_corr_48: -32.79063480835335 + sys_corr_49: 16.994173491796303 + sys_corr_50: -39.95491865072271 + sys_corr_51: 3.1710465845299796 + sys_corr_52: -22.172658004996816 + sys_corr_53: -33.71087095093149 + sys_corr_54: -32.68859566691143 + sys_corr_55: 5.43418810363473 + sys_corr_56: 8.744585590300717 + sys_corr_57: -46.8806623339355 + sys_corr_58: -62.714647354454904 + sys_corr_59: -42.860516238856036 + sys_corr_60: -1.9535347125765663 + sys_corr_61: -141.0325654951304 + sys_corr_62: 67.68033139269343 + sys_corr_63: 72.42577426453586 + sys_corr_64: 65.36645413184841 + sys_corr_65: 5.943013053603821 + sys_corr_66: 46.40919102761276 + sys_corr_67: -21.437357620276295 + sys_corr_68: 38.9538147469523 + sys_corr_69: -37.61502115998922 + sys_corr_70: -66.52191245471562 + sys_corr_71: 58.43493820565218 + sys_corr_72: 25.155991424465437 + sys_corr_73: 44.406074251065334 + sys_corr_74: 31.385096714623238 + sys_corr_75: -5.962337140355153 + sys_corr_76: 9.767432444055093 + sys_corr_77: 12.657455805389542 + sys_corr_78: -7.178199604718964 + sys_corr_79: -2.596161836973703 + sys_corr_80: -5.357999137539792 + sys_corr_81: 16.5312527444517 + sys_corr_82: -3.7977499613441275 + sys_corr_83: 10.270833189068462 + sys_corr_84: -9.567505562846032 + sys_corr_85: -2.445906821939861 + sys_corr_86: 17.20691783844932 + sys_corr_87: -4.692201884561566 + sys_corr_88: 10.646861548775496 + sys_corr_89: 0.6635956544101338 + sys_corr_90: -0.6099968722323552 + sys_corr_91: 2.4866832051562815 + sys_corr_92: 4.164527670843862 + sys_corr_93: -0.338781768869891 + sys_corr_94: -0.43225832615798676 + sys_corr_95: -0.1324055119240033 + sys_corr_96: -0.11254621976196741 + sys_corr_97: 1.6503812931983357 + sys_corr_98: 0.697554380507949 + sys_corr_99: 0.8501051241678256 + sys_corr_100: 2.013282698742197 + sys_corr_101: 3.8961589955842806 + sys_corr_102: 12.819844163154167 + sys_corr_103: -1.917781602458886 + sys_corr_104: -4.561400349986759 + sys_corr_105: 2.06425133556817 + sys_corr_106: 1.7447662002722257 + sys_corr_107: 0.8281885215568965 + sys_corr_108: 0.639530489600571 + sys_corr_109: 0.04790279804758945 + sys_corr_110: 0.14538349931151548 + sys_corr_111: -0.29957839561668825 + sys_corr_112: 0.009474142607417581 + sys_corr_113: 0.04834722965938289 + sys_corr_114: 0.0005286842883052004 + sys_corr_115: 0.11523528868465005 + sys_corr_116: -0.05977064410285359 + sys_corr_117: -0.04865410282286159 + sys_corr_118: 0.03150011826697363 + sys_corr_119: -0.005548801916103903 + sys_corr_120: 0.03423261428332387 + sys_corr_121: -0.0010153208634859985 + sys_corr_122: 0.050577179982212686 + sys_corr_123: 0.02080577194404403 + sys_corr_124: -0.03829254238988899 + sys_corr_125: -0.041757617765107044 + sys_corr_126: -0.002488764156857007 + sys_corr_127: -0.5579003958973329 + sys_corr_128: -0.18554988146456117 + sys_corr_129: -0.048280147995428555 + sys_corr_130: -0.009960461622581355 + sys_corr_131: -0.04560899406745155 + sys_corr_132: 0.17812185500702954 stat: 0.0 luminosity: 399.13110600000005 -- sys_corr_1: 249.72830395394257 - sys_corr_2: 38.48188080341145 - sys_corr_3: 4.065036762653645 - sys_corr_4: 75.71985723370463 - sys_corr_5: 126.67865908850135 - sys_corr_6: -498.702275151326 - sys_corr_7: 93.01963325644876 - sys_corr_8: 55.00408289274744 - sys_corr_9: 46.96162070149964 - sys_corr_10: 7.794325019781416 - sys_corr_11: 67.21346361588802 - sys_corr_12: 60.69108800392422 - sys_corr_13: 37.199974802508045 - sys_corr_14: -10.413012298092292 - sys_corr_15: -7.590426144737723 - sys_corr_16: -8.262682825252808 - sys_corr_17: -21.794481961356674 - sys_corr_18: 36.660121802694235 - sys_corr_19: 34.607492123095945 - sys_corr_20: 22.145699623169342 - sys_corr_21: 11.56298504656287 - sys_corr_22: 233.4495192554209 - sys_corr_23: 21.357465648407874 - sys_corr_24: 69.40092029859602 - sys_corr_25: -22.002411985544104 - sys_corr_26: -70.0344917463001 - sys_corr_27: 48.15218877657705 - sys_corr_28: 50.150161849961876 - sys_corr_29: -87.17405203399653 - sys_corr_30: 45.85390092609833 - sys_corr_31: 44.87777232765872 - sys_corr_32: -22.69825189694832 - sys_corr_33: -25.991074270584235 - sys_corr_34: -27.229809845560045 - sys_corr_35: 10.689301297351491 - sys_corr_36: 15.440850554067504 - sys_corr_37: 10.0784721327879 - sys_corr_38: 22.774404171741008 - sys_corr_39: -15.210385082791138 - sys_corr_40: 5.971421474804979 - sys_corr_41: 15.08900593733679 - sys_corr_42: -24.764172799588398 - sys_corr_43: -18.513072836429632 - sys_corr_44: -21.856537009890104 - sys_corr_45: -26.952463286559766 - sys_corr_46: 36.5166880635018 - sys_corr_47: -37.24312530270172 - sys_corr_48: 8.991919301826794 - sys_corr_49: -7.950314865639983 - sys_corr_50: -23.764292130787336 - sys_corr_51: -65.32669627440511 - sys_corr_52: -67.70675500240418 - sys_corr_53: 25.214546231900652 - sys_corr_54: -123.7553846784477 - sys_corr_55: 38.50754529861598 - sys_corr_56: 29.813121553188587 - sys_corr_57: 8.433802248217958 - sys_corr_58: -15.57894833725708 - sys_corr_59: -99.3364468614692 - sys_corr_60: 8.05071682385967 - sys_corr_61: -7.82160187976881 - sys_corr_62: -47.51354720763607 - sys_corr_63: 45.68353894245643 - sys_corr_64: -73.75148903413687 - sys_corr_65: 37.515358598171886 - sys_corr_66: 31.61040039906841 - sys_corr_67: -21.308753575981545 - sys_corr_68: 78.01952420272856 - sys_corr_69: 86.45068046639773 - sys_corr_70: -11.094934412414059 - sys_corr_71: -35.902558519007314 - sys_corr_72: 1.7963155615195683 - sys_corr_73: 32.798074165821454 - sys_corr_74: -11.353866662119074 - sys_corr_75: -12.49195619735998 - sys_corr_76: -12.365224367387667 - sys_corr_77: 6.088233013104799 - sys_corr_78: 19.8427332056663 - sys_corr_79: -4.200207548727382 - sys_corr_80: 11.021618605598281 - sys_corr_81: 0.8362652325249059 - sys_corr_82: -1.1434156601863752 - sys_corr_83: 5.450765667538645 - sys_corr_84: -3.836291907037014 - sys_corr_85: 3.7380522380674823 - sys_corr_86: 10.166598930713157 - sys_corr_87: 5.334328112349025 - sys_corr_88: -9.89013165489364 - sys_corr_89: 0.244154505491984 - sys_corr_90: 0.6313417733116342 - sys_corr_91: -1.609764526992721 - sys_corr_92: 1.4399137073977255 - sys_corr_93: 0.17456124826634908 - sys_corr_94: 0.9857844850305594 - sys_corr_95: -1.5456134361509415 - sys_corr_96: 0.21012787209733322 - sys_corr_97: -0.4348648892333758 - sys_corr_98: 0.2483303568049991 - sys_corr_99: 0.3280633552438804 - sys_corr_100: -1.3796903936092615 - sys_corr_101: 1.14621664431745 - sys_corr_102: -2.8773746168641807 - sys_corr_103: 6.588377532211777 - sys_corr_104: 1.6602526556733108 - sys_corr_105: 2.0144820602950135 - sys_corr_106: 1.3112331116115044 - sys_corr_107: -0.7053209984369262 - sys_corr_108: 0.8746378430422093 - sys_corr_109: 0.01571382496962475 - sys_corr_110: 0.1929988397027664 - sys_corr_111: 0.31223908901130143 - sys_corr_112: 0.029352936509998602 - sys_corr_113: -0.060249705812429895 - sys_corr_114: -0.0017699047495759307 - sys_corr_115: -0.0030246792077017796 - sys_corr_116: 0.04913435724174098 - sys_corr_117: 0.03255768739815143 - sys_corr_118: -0.0657449776085601 - sys_corr_119: 0.00040463502621815116 - sys_corr_120: -0.03465046410831491 - sys_corr_121: -0.014752391970299468 - sys_corr_122: 0.03331827726244661 - sys_corr_123: 0.06385212311693632 - sys_corr_124: -0.033768228196897544 - sys_corr_125: -0.04795895050798215 - sys_corr_126: -0.018469486658614705 - sys_corr_127: -0.1203009382066252 - sys_corr_128: -0.19751259421682124 - sys_corr_129: 0.07963217411726832 - sys_corr_130: 0.0043760172551395825 - sys_corr_131: 0.03573203458649306 - sys_corr_132: -0.07870909464825787 +- sys_corr_1: 249.72830395394232 + sys_corr_2: 38.48188080341231 + sys_corr_3: 4.065036762653504 + sys_corr_4: 75.71985723370622 + sys_corr_5: 126.67865908849919 + sys_corr_6: -498.7022751513256 + sys_corr_7: 93.01963325644844 + sys_corr_8: 55.00408289275043 + sys_corr_9: 46.96162070150074 + sys_corr_10: 7.794325019776928 + sys_corr_11: 67.21346361589488 + sys_corr_12: 60.69108800392233 + sys_corr_13: -37.19997480250678 + sys_corr_14: 10.413012298091948 + sys_corr_15: 7.590426144737453 + sys_corr_16: 8.262682825253917 + sys_corr_17: -21.79448196135656 + sys_corr_18: -36.6601218026942 + sys_corr_19: 34.60749212309431 + sys_corr_20: 22.145699623170117 + sys_corr_21: 11.56298504656114 + sys_corr_22: 233.44951925541915 + sys_corr_23: 21.357465648407427 + sys_corr_24: 69.40092029859507 + sys_corr_25: -22.002411985545933 + sys_corr_26: -70.03449174630336 + sys_corr_27: 48.152188776578896 + sys_corr_28: 50.15016184996242 + sys_corr_29: -87.17405203399535 + sys_corr_30: 45.85390092609823 + sys_corr_31: 44.87777232765769 + sys_corr_32: 22.698251896948708 + sys_corr_33: 25.991074270580913 + sys_corr_34: -27.22980984556136 + sys_corr_35: 10.689301297347926 + sys_corr_36: 15.440850554069526 + sys_corr_37: -10.078472132793996 + sys_corr_38: -22.77440417173793 + sys_corr_39: 15.21038508279341 + sys_corr_40: -5.97142147480684 + sys_corr_41: 15.089005937339873 + sys_corr_42: 24.76417279959264 + sys_corr_43: -18.513072836420136 + sys_corr_44: -21.85653700989908 + sys_corr_45: 26.952463286540006 + sys_corr_46: -36.516688063518 + sys_corr_47: 37.2431253026998 + sys_corr_48: -8.991919301828105 + sys_corr_49: 7.950314865633173 + sys_corr_50: -23.764292130790153 + sys_corr_51: -65.32669627440596 + sys_corr_52: -67.70675500241045 + sys_corr_53: -25.21454623187235 + sys_corr_54: 123.75538467844044 + sys_corr_55: -38.507545298652005 + sys_corr_56: -29.813121553220796 + sys_corr_57: 8.433802248230629 + sys_corr_58: 15.578948337166034 + sys_corr_59: -99.33644686149033 + sys_corr_60: -8.050716823856508 + sys_corr_61: 7.821601879778288 + sys_corr_62: 47.51354720763465 + sys_corr_63: 45.68353894247428 + sys_corr_64: -73.75148903413124 + sys_corr_65: 37.51535859809417 + sys_corr_66: -31.610400399097017 + sys_corr_67: -21.308753575945026 + sys_corr_68: -78.0195242026966 + sys_corr_69: 86.4506804663964 + sys_corr_70: 11.094934412359992 + sys_corr_71: -35.902558518977884 + sys_corr_72: -1.796315561529671 + sys_corr_73: -32.79807416582629 + sys_corr_74: -11.353866662115179 + sys_corr_75: -12.491956197339857 + sys_corr_76: -12.36522436739662 + sys_corr_77: -6.088233013107455 + sys_corr_78: -11.021618605596556 + sys_corr_79: 19.84273320566781 + sys_corr_80: -4.2002075487269375 + sys_corr_81: -0.836265232528373 + sys_corr_82: 1.1434156601869392 + sys_corr_83: 5.450765667537213 + sys_corr_84: 3.836291907036491 + sys_corr_85: 3.738052238068239 + sys_corr_86: -10.166598930726755 + sys_corr_87: -5.33432811234809 + sys_corr_88: -9.890131654884154 + sys_corr_89: 0.6313417733115756 + sys_corr_90: 0.24415450549188578 + sys_corr_91: -1.6097645269927388 + sys_corr_92: -1.439913707393916 + sys_corr_93: 0.17456124826622144 + sys_corr_94: 0.9857844850306118 + sys_corr_95: -1.5456134361504927 + sys_corr_96: -0.21012787209735512 + sys_corr_97: -0.43486488923367045 + sys_corr_98: -0.2483303568050783 + sys_corr_99: 0.32806335524379693 + sys_corr_100: 1.146216644316776 + sys_corr_101: 2.8773746168615473 + sys_corr_102: 6.588377532209634 + sys_corr_103: -1.6602526556736066 + sys_corr_104: -2.014482060297163 + sys_corr_105: 1.3796903936089384 + sys_corr_106: 1.3112331116108957 + sys_corr_107: 0.8746378430420287 + sys_corr_108: 0.015713824969522453 + sys_corr_109: -0.19299883970269233 + sys_corr_110: 0.7053209984370152 + sys_corr_111: -0.3122390890111324 + sys_corr_112: 0.029352936510042314 + sys_corr_113: 0.06024970581246989 + sys_corr_114: -0.0017699047495767382 + sys_corr_115: -0.003024679207740455 + sys_corr_116: -0.049134357241710905 + sys_corr_117: -0.03255768739814213 + sys_corr_118: 0.06574497760855401 + sys_corr_119: -0.0004046350262146827 + sys_corr_120: 0.0346504641083138 + sys_corr_121: 0.014752391970308186 + sys_corr_122: 0.06385212311692591 + sys_corr_123: 0.0333182772624343 + sys_corr_124: -0.033768228196894574 + sys_corr_125: -0.04795895050797625 + sys_corr_126: 0.01846948665861041 + sys_corr_127: -0.12030093820669396 + sys_corr_128: -0.19751259421676065 + sys_corr_129: 0.0796321741173005 + sys_corr_130: 0.0043760172551264315 + sys_corr_131: -0.03573203458648833 + sys_corr_132: -0.07870909464824838 stat: 0.0 luminosity: 397.102684 -- sys_corr_1: 245.01893124658994 - sys_corr_2: 6.092170473760076 - sys_corr_3: 26.138239546586707 - sys_corr_4: 61.779492940180376 - sys_corr_5: 30.88968536365866 - sys_corr_6: -324.8958704776594 - sys_corr_7: 119.86132051103256 - sys_corr_8: 83.15455984629595 - sys_corr_9: 74.3489728211331 - sys_corr_10: 17.603907545729438 - sys_corr_11: 114.99407225624512 - sys_corr_12: 120.07615398900684 - sys_corr_13: 75.79238353354646 - sys_corr_14: -18.375457536880234 - sys_corr_15: -20.23081678302964 - sys_corr_16: -6.998110071718964 - sys_corr_17: -24.353390956588292 - sys_corr_18: 41.451644021013706 - sys_corr_19: 38.87545447343081 - sys_corr_20: 26.714872074898533 - sys_corr_21: 8.864760246998333 - sys_corr_22: 303.7319572559192 - sys_corr_23: 29.361386714216938 - sys_corr_24: 87.68107491708399 - sys_corr_25: -34.49210027574421 - sys_corr_26: -105.33780316405716 - sys_corr_27: 60.51793738902293 - sys_corr_28: 65.84220129971946 - sys_corr_29: -69.45795888861225 - sys_corr_30: 54.121731809110045 - sys_corr_31: 45.859712294729896 - sys_corr_32: -10.525640572271804 - sys_corr_33: -14.200734764645901 - sys_corr_34: -11.379105810451877 - sys_corr_35: 1.7972561606143087 - sys_corr_36: 23.595998468008048 - sys_corr_37: 4.93211609250483 - sys_corr_38: 12.783156449914618 - sys_corr_39: -39.119145449455324 - sys_corr_40: 32.7866064542937 - sys_corr_41: 78.9445161194384 - sys_corr_42: -2.5184152151561086 - sys_corr_43: 1.1168817906440838 - sys_corr_44: 0.9827913944047104 - sys_corr_45: 14.111826754504902 - sys_corr_46: -31.50709950265846 - sys_corr_47: -23.149244634927854 - sys_corr_48: 74.4198902370636 - sys_corr_49: 28.816280508506328 - sys_corr_50: -40.09316682674421 - sys_corr_51: 129.64268935240383 - sys_corr_52: 17.54296132363849 - sys_corr_53: 6.074470326381723 - sys_corr_54: 114.4519149770437 - sys_corr_55: -16.130499960348253 - sys_corr_56: -136.34634054248417 - sys_corr_57: -27.012876746612765 - sys_corr_58: 13.436422286403984 - sys_corr_59: -9.394792767686896 - sys_corr_60: -23.22061536254277 - sys_corr_61: -21.521705495822292 - sys_corr_62: 2.716820894559636 - sys_corr_63: -39.88218608993607 - sys_corr_64: -28.266634425080575 - sys_corr_65: -10.68462068298007 - sys_corr_66: 23.57866791628873 - sys_corr_67: 23.612000473448937 - sys_corr_68: 5.735940877345819 - sys_corr_69: 34.25085945462126 - sys_corr_70: -36.524235163915776 - sys_corr_71: -56.382872561100754 - sys_corr_72: 14.447587871387746 - sys_corr_73: 16.83090345796485 - sys_corr_74: -30.326804812679832 - sys_corr_75: -4.436170718456644 - sys_corr_76: -2.7420296534384274 - sys_corr_77: 8.97122939076347 - sys_corr_78: -1.876112540322673 - sys_corr_79: -0.5648943508965106 - sys_corr_80: 1.5823138409417874 - sys_corr_81: 1.972768532083221 - sys_corr_82: 2.9771241667971564 - sys_corr_83: 0.5618943046590079 - sys_corr_84: -0.5407263553793329 - sys_corr_85: 2.6435722758397713 - sys_corr_86: 10.971539070174103 - sys_corr_87: 7.526440731176988 - sys_corr_88: -10.306520545640936 - sys_corr_89: -1.2678979055124417 - sys_corr_90: -0.13505996088773278 - sys_corr_91: -2.6373105381827022 - sys_corr_92: 3.9147390233233117 - sys_corr_93: 0.4668994126646653 - sys_corr_94: 1.3375994812007101 - sys_corr_95: -1.0038219859652477 - sys_corr_96: -0.09253307468086563 - sys_corr_97: -1.137344654520801 - sys_corr_98: 0.4387111590574345 - sys_corr_99: -0.627816209394391 - sys_corr_100: -0.09262971428105957 - sys_corr_101: -0.015337529037230778 - sys_corr_102: 0.1882256683527897 - sys_corr_103: -3.3453973318042216 - sys_corr_104: -0.2514413858649508 - sys_corr_105: -1.5144479200251748 - sys_corr_106: -0.04139542930667447 - sys_corr_107: 0.16761351774627656 - sys_corr_108: 0.05888081687033638 - sys_corr_109: -0.08057889331454263 - sys_corr_110: -0.100266523866284 - sys_corr_111: -0.12766522383817455 - sys_corr_112: 0.03884213212843101 - sys_corr_113: 0.014568961393439233 - sys_corr_114: 0.00020625470306715629 - sys_corr_115: 0.0038246566504812622 - sys_corr_116: 0.06777021965462249 - sys_corr_117: 0.03209895134704148 - sys_corr_118: -0.014452420029451707 - sys_corr_119: -0.005538903442608571 - sys_corr_120: -0.03867005922879999 - sys_corr_121: -0.004534631491756093 - sys_corr_122: 0.011866353569583397 - sys_corr_123: 0.018485856368534226 - sys_corr_124: -0.10767958532927642 - sys_corr_125: -0.03387543786081791 - sys_corr_126: -0.0033667974161026046 - sys_corr_127: 0.08971275779269752 - sys_corr_128: -0.010718943887000858 - sys_corr_129: -0.04464169152707757 - sys_corr_130: -0.009248928155006492 - sys_corr_131: 0.03244529794040366 - sys_corr_132: 0.0395183823569049 +- sys_corr_1: 245.01893124658972 + sys_corr_2: 6.092170473760655 + sys_corr_3: 26.13823954658654 + sys_corr_4: 61.77949294018179 + sys_corr_5: 30.889685363657183 + sys_corr_6: -324.8958704776597 + sys_corr_7: 119.8613205110322 + sys_corr_8: 83.15455984630026 + sys_corr_9: 74.34897282113448 + sys_corr_10: 17.60390754572119 + sys_corr_11: 114.99407225625772 + sys_corr_12: 120.07615398900282 + sys_corr_13: -75.79238353354405 + sys_corr_14: 18.37545753687983 + sys_corr_15: 20.2308167830299 + sys_corr_16: 6.9981100717198546 + sys_corr_17: -24.353390956588996 + sys_corr_18: -41.451644021013756 + sys_corr_19: 38.875454473429116 + sys_corr_20: 26.714872074898516 + sys_corr_21: 8.86476024699685 + sys_corr_22: 303.7319572559187 + sys_corr_23: 29.361386714216813 + sys_corr_24: 87.68107491708334 + sys_corr_25: -34.49210027574547 + sys_corr_26: -105.33780316406008 + sys_corr_27: 60.51793738902621 + sys_corr_28: 65.84220129972057 + sys_corr_29: -69.45795888861174 + sys_corr_30: 54.12173180911064 + sys_corr_31: 45.85971229473034 + sys_corr_32: 10.52564057226758 + sys_corr_33: 14.200734764641748 + sys_corr_34: -11.379105810451586 + sys_corr_35: 1.7972561606081 + sys_corr_36: 23.595998468009515 + sys_corr_37: -4.9321160925085525 + sys_corr_38: -12.783156449915559 + sys_corr_39: 39.119145449453136 + sys_corr_40: -32.78660645430229 + sys_corr_41: 78.94451611943674 + sys_corr_42: 2.5184152151689627 + sys_corr_43: 1.1168817906426638 + sys_corr_44: 0.9827913944029021 + sys_corr_45: -14.111826754481651 + sys_corr_46: 31.507099502669544 + sys_corr_47: 23.149244634934128 + sys_corr_48: -74.41989023705945 + sys_corr_49: -28.81628050851433 + sys_corr_50: -40.09316682672836 + sys_corr_51: 129.6426893524004 + sys_corr_52: 17.542961323643564 + sys_corr_53: -6.07447032641299 + sys_corr_54: -114.45191497704938 + sys_corr_55: 16.130499960380355 + sys_corr_56: 136.3463405424942 + sys_corr_57: -27.012876746672344 + sys_corr_58: -13.436422286411405 + sys_corr_59: -9.394792767687298 + sys_corr_60: 23.220615362534303 + sys_corr_61: 21.521705495825927 + sys_corr_62: -2.7168208945675882 + sys_corr_63: -39.88218608992713 + sys_corr_64: -28.266634425091475 + sys_corr_65: -10.68462068300181 + sys_corr_66: -23.5786679162943 + sys_corr_67: 23.61200047344805 + sys_corr_68: -5.735940877323124 + sys_corr_69: 34.25085945460896 + sys_corr_70: 36.52423516391484 + sys_corr_71: -56.38287256109232 + sys_corr_72: -14.447587871395344 + sys_corr_73: -16.83090345796011 + sys_corr_74: -30.3268048126865 + sys_corr_75: -4.436170718456038 + sys_corr_76: -2.7420296534447846 + sys_corr_77: -8.971229390761007 + sys_corr_78: -1.582313840940328 + sys_corr_79: -1.876112540322679 + sys_corr_80: -0.5648943508975776 + sys_corr_81: -1.9727685320840622 + sys_corr_82: -2.9771241667977555 + sys_corr_83: 0.5618943046581577 + sys_corr_84: 0.5407263553771829 + sys_corr_85: 2.6435722758390146 + sys_corr_86: -10.971539070185468 + sys_corr_87: -7.5264407311760735 + sys_corr_88: -10.306520545629581 + sys_corr_89: -0.13505996088742864 + sys_corr_90: -1.2678979055126325 + sys_corr_91: -2.6373105381829838 + sys_corr_92: -3.9147390233174795 + sys_corr_93: 0.46689941266457313 + sys_corr_94: 1.3375994812007417 + sys_corr_95: -1.0038219859649493 + sys_corr_96: 0.0925330746808643 + sys_corr_97: -1.137344654521 + sys_corr_98: -0.438711159057556 + sys_corr_99: -0.6278162093945219 + sys_corr_100: -0.015337529037118823 + sys_corr_101: -0.18822566835210422 + sys_corr_102: -3.3453973318049024 + sys_corr_103: 0.2514413858654535 + sys_corr_104: 1.5144479200272436 + sys_corr_105: 0.09262971428103432 + sys_corr_106: -0.04139542930666691 + sys_corr_107: 0.058880816870334064 + sys_corr_108: -0.0805788933145646 + sys_corr_109: 0.1002665238663025 + sys_corr_110: -0.16761351774652458 + sys_corr_111: 0.12766522383817655 + sys_corr_112: 0.0388421321284328 + sys_corr_113: -0.014568961393422697 + sys_corr_114: 0.00020625470306847625 + sys_corr_115: 0.0038246566504664165 + sys_corr_116: -0.06777021965460663 + sys_corr_117: -0.03209895134703404 + sys_corr_118: 0.01445242002942977 + sys_corr_119: 0.005538903442607778 + sys_corr_120: 0.03867005922879386 + sys_corr_121: 0.00453463149175552 + sys_corr_122: 0.01848585636851792 + sys_corr_123: 0.011866353569568205 + sys_corr_124: -0.10767958532926354 + sys_corr_125: -0.033875437860809175 + sys_corr_126: 0.0033667974161007076 + sys_corr_127: 0.08971275779281403 + sys_corr_128: -0.010718943887006909 + sys_corr_129: -0.04464169152704624 + sys_corr_130: -0.009248928155005906 + sys_corr_131: -0.0324452979403943 + sys_corr_132: 0.03951838235690981 stat: 0.0 luminosity: 392.3269680000001 -- sys_corr_1: 227.12746934158307 - sys_corr_2: -0.7061747151457706 - sys_corr_3: 20.16048924367787 - sys_corr_4: 48.209686908930834 - sys_corr_5: -28.750798129666865 - sys_corr_6: -210.23573923688124 - sys_corr_7: 142.61889069669888 - sys_corr_8: 96.65137829794584 - sys_corr_9: 81.97785759459249 - sys_corr_10: 23.613625113240317 - sys_corr_11: 141.69699676651553 - sys_corr_12: 170.06537262137252 - sys_corr_13: 107.74066735916259 - sys_corr_14: -26.51166942961717 - sys_corr_15: -29.849422985146965 - sys_corr_16: -4.422413502919501 - sys_corr_17: -18.153278501281132 - sys_corr_18: 42.728692948755416 - sys_corr_19: 32.70953644884637 - sys_corr_20: 30.456492903405714 - sys_corr_21: 17.600940911537066 - sys_corr_22: 298.246880669146 - sys_corr_23: 27.339571004944982 - sys_corr_24: 35.4332126486031 - sys_corr_25: -23.01673344189279 - sys_corr_26: -70.89255690685904 - sys_corr_27: 43.919547480778746 - sys_corr_28: 34.72965580786441 - sys_corr_29: -46.45437043062043 - sys_corr_30: 73.3996186233122 - sys_corr_31: 6.962947015740414 - sys_corr_32: -1.186730845650721 - sys_corr_33: 0.6649207970405379 - sys_corr_34: -6.191600965913529 - sys_corr_35: -7.205039266072519 - sys_corr_36: -1.7979740614643032 - sys_corr_37: -14.258699795986436 - sys_corr_38: -4.702919703980297 - sys_corr_39: 12.076039976966154 - sys_corr_40: 54.0825631553855 - sys_corr_41: -18.497458609826587 - sys_corr_42: 2.0895508991574006 - sys_corr_43: -27.746764427660352 - sys_corr_44: 34.15311973189516 - sys_corr_45: -42.340285291658276 - sys_corr_46: -44.40103242209049 - sys_corr_47: -12.401392376090513 - sys_corr_48: -9.271198306748383 - sys_corr_49: -26.20796204001556 - sys_corr_50: -1.216810255244223 - sys_corr_51: 42.902205353697084 - sys_corr_52: 70.30496033888801 - sys_corr_53: -20.17545454050351 - sys_corr_54: 5.91122970262728 - sys_corr_55: -53.42598590720593 - sys_corr_56: 183.7255820831689 - sys_corr_57: -29.367210813835115 - sys_corr_58: 1.0474324339435601 - sys_corr_59: 101.03703673246208 - sys_corr_60: 5.888318892664142 - sys_corr_61: 2.8869892033047373 - sys_corr_62: -2.7023256221903487 - sys_corr_63: 60.3436097185089 - sys_corr_64: -2.0175773044075798 - sys_corr_65: 1.9022589649419863 - sys_corr_66: 57.98538720122997 - sys_corr_67: 18.293579970462524 - sys_corr_68: -50.92573048186592 - sys_corr_69: 6.700989369245156 - sys_corr_70: -23.665792344453514 - sys_corr_71: -60.45686191816979 - sys_corr_72: -1.3091581136388462 - sys_corr_73: 0.7680746744128387 - sys_corr_74: -1.064811246445498 - sys_corr_75: -4.181825131537384 - sys_corr_76: -4.09576980054926 - sys_corr_77: 1.5470349481467538 - sys_corr_78: -7.712097093995574 - sys_corr_79: -2.7767877422091134 - sys_corr_80: 1.949285881049486 - sys_corr_81: 2.7528150548650143 - sys_corr_82: -1.010408051861439 - sys_corr_83: 2.386824360669594 - sys_corr_84: -2.1634022589459176 - sys_corr_85: 1.1481815483166773 - sys_corr_86: 9.488500080385155 - sys_corr_87: -1.355242925153546 - sys_corr_88: -4.373368800376567 - sys_corr_89: -0.38059777943611905 - sys_corr_90: 0.8757816056989108 - sys_corr_91: -1.6557950888019108 - sys_corr_92: 0.016591384638355036 - sys_corr_93: 0.17766723136878865 - sys_corr_94: 0.33977581996347106 - sys_corr_95: -0.44579355343503446 - sys_corr_96: -0.042779954618852534 - sys_corr_97: -1.1064010008764666 - sys_corr_98: 0.05153267998005304 - sys_corr_99: -0.2760462128400228 - sys_corr_100: -0.6799355495895122 - sys_corr_101: 0.31527096510443137 - sys_corr_102: -0.7587480359723935 - sys_corr_103: 0.6875615103843457 - sys_corr_104: 0.637325692223812 - sys_corr_105: 0.041114242983191725 - sys_corr_106: 0.44532895742575135 - sys_corr_107: 0.24498802441478487 - sys_corr_108: 0.6178017465000756 - sys_corr_109: -0.19286155745524874 - sys_corr_110: 0.11099470758918172 - sys_corr_111: 0.1734864597103987 - sys_corr_112: -0.033013789244393625 - sys_corr_113: 0.06452037750785894 - sys_corr_114: -0.0008235612460442301 - sys_corr_115: -0.0934327410878951 - sys_corr_116: 0.008830842686413633 - sys_corr_117: 0.016210964235644196 - sys_corr_118: 0.10406095236971624 - sys_corr_119: 0.009129525664838432 - sys_corr_120: -0.01968099563092741 - sys_corr_121: -0.005569415645953691 - sys_corr_122: 0.007089962636897785 - sys_corr_123: 0.015993143520808006 - sys_corr_124: -0.030177127835808965 - sys_corr_125: -0.006916589673343607 - sys_corr_126: 0.007403142984603114 - sys_corr_127: 0.027846229337499858 - sys_corr_128: -0.13523476913785318 - sys_corr_129: 0.10925689373200298 - sys_corr_130: 0.00019623075520932862 - sys_corr_131: 0.004749610678710722 - sys_corr_132: -0.008657354637686101 +- sys_corr_1: 227.12746934158278 + sys_corr_2: -0.7061747151454786 + sys_corr_3: 20.160489243677986 + sys_corr_4: 48.20968690893144 + sys_corr_5: -28.750798129667757 + sys_corr_6: -210.23573923688127 + sys_corr_7: 142.61889069669846 + sys_corr_8: 96.65137829795003 + sys_corr_9: 81.97785759459478 + sys_corr_10: 23.613625113230885 + sys_corr_11: 141.69699676653343 + sys_corr_12: 170.06537262136766 + sys_corr_13: -107.74066735916048 + sys_corr_14: 26.511669429616177 + sys_corr_15: 29.849422985147342 + sys_corr_16: 4.422413502920714 + sys_corr_17: -18.153278501281857 + sys_corr_18: -42.728692948755395 + sys_corr_19: 32.70953644884423 + sys_corr_20: 30.456492903405362 + sys_corr_21: 17.600940911534625 + sys_corr_22: 298.246880669145 + sys_corr_23: 27.33957100494519 + sys_corr_24: 35.43321264860386 + sys_corr_25: -23.016733441893628 + sys_corr_26: -70.89255690686109 + sys_corr_27: 43.91954748078081 + sys_corr_28: 34.72965580786226 + sys_corr_29: -46.45437043061863 + sys_corr_30: 73.39961862331255 + sys_corr_31: 6.962947015742101 + sys_corr_32: 1.186730845656581 + sys_corr_33: -0.6649207970379469 + sys_corr_34: -6.191600965911373 + sys_corr_35: -7.205039266071787 + sys_corr_36: -1.7979740614671604 + sys_corr_37: 14.25869979599144 + sys_corr_38: 4.702919703975259 + sys_corr_39: -12.076039976963905 + sys_corr_40: -54.082563155384285 + sys_corr_41: -18.497458609832044 + sys_corr_42: -2.08955089915787 + sys_corr_43: -27.74676442766164 + sys_corr_44: 34.15311973188999 + sys_corr_45: 42.340285291682385 + sys_corr_46: 44.40103242207374 + sys_corr_47: 12.401392376095986 + sys_corr_48: 9.271198306748765 + sys_corr_49: 26.20796204002079 + sys_corr_50: -1.216810255240874 + sys_corr_51: 42.90220535369381 + sys_corr_52: 70.30496033887997 + sys_corr_53: 20.17545454050628 + sys_corr_54: -5.911229702631117 + sys_corr_55: 53.42598590719876 + sys_corr_56: -183.7255820831533 + sys_corr_57: -29.367210813747413 + sys_corr_58: -1.047432433867077 + sys_corr_59: 101.03703673247406 + sys_corr_60: -5.888318892642601 + sys_corr_61: -2.8869892033042848 + sys_corr_62: 2.7023256221807825 + sys_corr_63: 60.34360971852127 + sys_corr_64: -2.0175773043887015 + sys_corr_65: 1.9022589649460695 + sys_corr_66: -57.985387201209754 + sys_corr_67: 18.293579970425952 + sys_corr_68: 50.92573048186625 + sys_corr_69: 6.700989369236322 + sys_corr_70: 23.665792344474994 + sys_corr_71: -60.456861918169785 + sys_corr_72: 1.3091581136420172 + sys_corr_73: -0.7680746744008193 + sys_corr_74: -1.0648112464545694 + sys_corr_75: -4.181825131534435 + sys_corr_76: -4.095769800554393 + sys_corr_77: -1.547034948145887 + sys_corr_78: -1.9492858810488773 + sys_corr_79: -7.712097093995901 + sys_corr_80: -2.776787742210206 + sys_corr_81: -2.7528150548659696 + sys_corr_82: 1.0104080518614433 + sys_corr_83: 2.3868243606681983 + sys_corr_84: 2.1634022589452053 + sys_corr_85: 1.1481815483170217 + sys_corr_86: -9.488500080394367 + sys_corr_87: 1.3552429251531641 + sys_corr_88: -4.373368800369625 + sys_corr_89: 0.875781605699105 + sys_corr_90: -0.38059777943608625 + sys_corr_91: -1.6557950888018476 + sys_corr_92: -0.01659138463384557 + sys_corr_93: 0.1776672313689026 + sys_corr_94: 0.33977581996409006 + sys_corr_95: -0.445793553435662 + sys_corr_96: 0.04277995461876467 + sys_corr_97: -1.1064010008762704 + sys_corr_98: -0.05153267997999638 + sys_corr_99: -0.27604621283993147 + sys_corr_100: 0.31527096510447605 + sys_corr_101: 0.758748035972313 + sys_corr_102: 0.6875615103851104 + sys_corr_103: -0.6373256922239686 + sys_corr_104: -0.041114242983714626 + sys_corr_105: 0.6799355495896494 + sys_corr_106: 0.4453289574257682 + sys_corr_107: 0.617801746500073 + sys_corr_108: -0.1928615574552408 + sys_corr_109: -0.1109947075891977 + sys_corr_110: -0.24498802441471781 + sys_corr_111: -0.1734864597104115 + sys_corr_112: -0.03301378924442009 + sys_corr_113: -0.0645203775078792 + sys_corr_114: -0.0008235612460442504 + sys_corr_115: -0.09343274108788001 + sys_corr_116: -0.008830842686418011 + sys_corr_117: -0.01621096423564528 + sys_corr_118: -0.10406095236969481 + sys_corr_119: -0.00912952566484034 + sys_corr_120: 0.01968099563092255 + sys_corr_121: 0.0055694156459513925 + sys_corr_122: 0.0159931435208052 + sys_corr_123: 0.007089962636894603 + sys_corr_124: -0.030177127835800642 + sys_corr_125: -0.006916589673350117 + sys_corr_126: -0.0074031429846025685 + sys_corr_127: 0.027846229337444572 + sys_corr_128: -0.13523476913784074 + sys_corr_129: 0.10925689373199741 + sys_corr_130: 0.0001962307552136757 + sys_corr_131: -0.004749610678710995 + sys_corr_132: -0.008657354637688125 stat: 0.0 luminosity: 385.64999 -- sys_corr_1: 209.8405378320036 - sys_corr_2: -20.73104347142483 - sys_corr_3: 5.296855573062783 - sys_corr_4: 38.85563823070085 - sys_corr_5: -69.21771558255588 - sys_corr_6: -152.80090918565836 - sys_corr_7: 157.60510126158326 - sys_corr_8: 103.5800325844286 - sys_corr_9: 98.42047138163312 - sys_corr_10: 27.34953011439291 - sys_corr_11: 165.71381319171644 - sys_corr_12: 209.67744961369937 - sys_corr_13: 131.38557686140652 - sys_corr_14: -37.91399798559384 - sys_corr_15: -35.35858339715212 - sys_corr_16: -0.7216372639473096 - sys_corr_17: -11.742752026794017 - sys_corr_18: 42.064157439314485 - sys_corr_19: 22.447224071455427 - sys_corr_20: 24.430320936832445 - sys_corr_21: 20.586101719327907 - sys_corr_22: 275.9643857767503 - sys_corr_23: 33.493519058720295 - sys_corr_24: -5.569329307554627 - sys_corr_25: -12.754266836918005 - sys_corr_26: -40.81771799595177 - sys_corr_27: 21.461652021499724 - sys_corr_28: 23.60960891329413 - sys_corr_29: -36.74357857798725 - sys_corr_30: 93.76724833811075 - sys_corr_31: -0.690666798587348 - sys_corr_32: -17.400400062518017 - sys_corr_33: 20.170785251971207 - sys_corr_34: -25.186479339356655 - sys_corr_35: -10.228051773427907 - sys_corr_36: -10.721222595175796 - sys_corr_37: 4.514878939104412 - sys_corr_38: -10.490176132777004 - sys_corr_39: 25.091271798752814 - sys_corr_40: -28.020133956342484 - sys_corr_41: -48.69577738726101 - sys_corr_42: 27.01213506749557 - sys_corr_43: -6.9841342325300735 - sys_corr_44: 6.644725375221935 - sys_corr_45: 12.385596734550376 - sys_corr_46: 24.017105310388768 - sys_corr_47: 31.374271619201263 - sys_corr_48: -45.57518392477711 - sys_corr_49: 16.228468216956653 - sys_corr_50: 2.9059703683306575 - sys_corr_51: -63.22986431367445 - sys_corr_52: 12.04442561362558 - sys_corr_53: -60.90346446143538 - sys_corr_54: 0.17791047243345307 - sys_corr_55: 18.38991485225663 - sys_corr_56: -6.565403853250441 - sys_corr_57: -62.82767549291463 - sys_corr_58: 15.444341604234218 - sys_corr_59: -8.054394041277806 - sys_corr_60: -12.967307671705438 - sys_corr_61: -111.01156335971133 - sys_corr_62: -71.50147183832998 - sys_corr_63: -22.24593774700089 - sys_corr_64: -43.29855902886964 - sys_corr_65: -138.97493191496972 - sys_corr_66: -34.59220441215945 - sys_corr_67: 60.27012998102143 - sys_corr_68: -14.693663842410302 - sys_corr_69: -13.755312185766245 - sys_corr_70: 43.88326812890512 - sys_corr_71: 68.5746427320043 - sys_corr_72: 1.8065126569788184 - sys_corr_73: 8.386262189822633 - sys_corr_74: -1.4050436577498588 - sys_corr_75: 4.09696569789986 - sys_corr_76: 11.103786246028823 - sys_corr_77: 1.332380610871906 - sys_corr_78: -3.3475686064126458 - sys_corr_79: 4.598654661751438 - sys_corr_80: 0.10283070402334145 - sys_corr_81: -6.057485961735429 - sys_corr_82: 0.5042210855124737 - sys_corr_83: 2.4845441728244104 - sys_corr_84: 3.113510874718709 - sys_corr_85: -0.15369531992562774 - sys_corr_86: -15.462318482553629 - sys_corr_87: 4.279690818057738 - sys_corr_88: 10.325746076929365 - sys_corr_89: 0.5696196681044193 - sys_corr_90: 0.5285228592146933 - sys_corr_91: 0.4983423046240703 - sys_corr_92: 8.919784244281319 - sys_corr_93: 0.34025328753820655 - sys_corr_94: 1.2009056964515075 - sys_corr_95: -0.27227037299480206 - sys_corr_96: -0.1580243141868655 - sys_corr_97: -0.8687492068359707 - sys_corr_98: 0.16669342573119336 - sys_corr_99: -0.468345724684168 - sys_corr_100: -0.09010435608688792 - sys_corr_101: -0.07620383627377997 - sys_corr_102: 0.02151495605267248 - sys_corr_103: -0.16229095557559428 - sys_corr_104: 0.055808190277808256 - sys_corr_105: -0.34984328456609287 - sys_corr_106: -0.0657985640458453 - sys_corr_107: 0.20003921708988057 - sys_corr_108: 0.10983816399197215 - sys_corr_109: -0.0031405255747176215 - sys_corr_110: -0.050906318045012014 - sys_corr_111: 0.016738590260653663 - sys_corr_112: 0.05505547994593493 - sys_corr_113: 0.04245994051679358 - sys_corr_114: 3.488300384935541e-07 - sys_corr_115: -0.04571959668049018 - sys_corr_116: -0.04468909155646267 - sys_corr_117: -0.03705072404150209 - sys_corr_118: 0.04418025944247322 - sys_corr_119: -0.0020189195685145016 - sys_corr_120: 0.02373983242874119 - sys_corr_121: 0.0024875801441877152 - sys_corr_122: -0.007525980796820093 - sys_corr_123: -0.021271745023601147 - sys_corr_124: 0.041639806708527446 - sys_corr_125: 0.02723719027783291 - sys_corr_126: -0.006403279280807143 - sys_corr_127: -0.16954448691394683 - sys_corr_128: -0.01635803468197042 - sys_corr_129: -0.06556943807636989 - sys_corr_130: 0.0038239132532500685 - sys_corr_131: -0.014505923793775733 - sys_corr_132: -0.015336296092706824 +- sys_corr_1: 209.84053783200343 + sys_corr_2: -20.731043471424634 + sys_corr_3: 5.296855573062888 + sys_corr_4: 38.85563823070131 + sys_corr_5: -69.2177155825561 + sys_corr_6: -152.80090918565818 + sys_corr_7: 157.6051012615839 + sys_corr_8: 103.58003258443328 + sys_corr_9: 98.42047138163457 + sys_corr_10: 27.349530114381114 + sys_corr_11: 165.71381319173864 + sys_corr_12: 209.6774496136938 + sys_corr_13: -131.3855768614043 + sys_corr_14: 37.91399798559328 + sys_corr_15: 35.358583397153104 + sys_corr_16: 0.7216372639479215 + sys_corr_17: -11.742752026795086 + sys_corr_18: -42.06415743931516 + sys_corr_19: 22.447224071454084 + sys_corr_20: 24.430320936832914 + sys_corr_21: 20.5861017193258 + sys_corr_22: 275.96438577674996 + sys_corr_23: 33.49351905872025 + sys_corr_24: -5.569329307555422 + sys_corr_25: -12.754266836918115 + sys_corr_26: -40.8177179959519 + sys_corr_27: 21.461652021500836 + sys_corr_28: 23.60960891329268 + sys_corr_29: -36.74357857798639 + sys_corr_30: 93.76724833811014 + sys_corr_31: -0.6906667985860914 + sys_corr_32: 17.400400062519562 + sys_corr_33: -20.170785251973914 + sys_corr_34: -25.18647933935737 + sys_corr_35: -10.228051773424513 + sys_corr_36: -10.721222595175847 + sys_corr_37: -4.514878939099469 + sys_corr_38: 10.490176132777481 + sys_corr_39: -25.091271798755795 + sys_corr_40: 28.020133956349877 + sys_corr_41: -48.695777387264165 + sys_corr_42: -27.012135067503515 + sys_corr_43: -6.984134232540114 + sys_corr_44: 6.644725375226414 + sys_corr_45: -12.38559673456883 + sys_corr_46: -24.01710531038556 + sys_corr_47: -31.374271619203494 + sys_corr_48: 45.57518392477475 + sys_corr_49: -16.22846821695083 + sys_corr_50: 2.9059703683216442 + sys_corr_51: -63.229864313675144 + sys_corr_52: 12.044425613621126 + sys_corr_53: 60.90346446143447 + sys_corr_54: -0.1779104724129863 + sys_corr_55: -18.38991485225385 + sys_corr_56: 6.565403853248625 + sys_corr_57: -62.82767549291464 + sys_corr_58: -15.444341604226487 + sys_corr_59: -8.05439404127 + sys_corr_60: 12.967307671682894 + sys_corr_61: 111.01156335971466 + sys_corr_62: 71.50147183832352 + sys_corr_63: -22.245937746938914 + sys_corr_64: -43.29855902891194 + sys_corr_65: -138.974931915023 + sys_corr_66: 34.592204412179335 + sys_corr_67: 60.2701299810238 + sys_corr_68: 14.693663842379106 + sys_corr_69: -13.755312185751743 + sys_corr_70: -43.883268128916015 + sys_corr_71: 68.57464273199236 + sys_corr_72: -1.8065126569672387 + sys_corr_73: -8.38626218982531 + sys_corr_74: -1.4050436577474505 + sys_corr_75: 4.096965697883375 + sys_corr_76: 11.103786246031438 + sys_corr_77: -1.3323806108738734 + sys_corr_78: -0.10283070402353353 + sys_corr_79: -3.3475686064128642 + sys_corr_80: 4.598654661751306 + sys_corr_81: 6.057485961735344 + sys_corr_82: -0.5042210855126789 + sys_corr_83: 2.484544172826312 + sys_corr_84: -3.1135108747182443 + sys_corr_85: -0.1536953199260789 + sys_corr_86: 15.46231848257863 + sys_corr_87: -4.279690818058744 + sys_corr_88: 10.325746076913475 + sys_corr_89: 0.5285228592147724 + sys_corr_90: 0.5696196681045412 + sys_corr_91: 0.49834230462411033 + sys_corr_92: -8.919784244285667 + sys_corr_93: 0.3402532875381477 + sys_corr_94: 1.2009056964515057 + sys_corr_95: -0.27227037299470397 + sys_corr_96: 0.15802431418675608 + sys_corr_97: -0.8687492068358449 + sys_corr_98: -0.16669342573113635 + sys_corr_99: -0.468345724684099 + sys_corr_100: -0.07620383627367219 + sys_corr_101: -0.021514956052444998 + sys_corr_102: -0.1622909555747517 + sys_corr_103: -0.05580819027790407 + sys_corr_104: 0.34984328456580477 + sys_corr_105: 0.09010435608695792 + sys_corr_106: -0.06579856404579852 + sys_corr_107: 0.1098381639919531 + sys_corr_108: -0.00314052557474588 + sys_corr_109: 0.050906318045015456 + sys_corr_110: -0.20003921708980163 + sys_corr_111: -0.016738590260648074 + sys_corr_112: 0.055055479945966684 + sys_corr_113: -0.04245994051677413 + sys_corr_114: 3.4883003808706796e-07 + sys_corr_115: -0.04571959668048201 + sys_corr_116: 0.04468909155645333 + sys_corr_117: 0.037050724041509484 + sys_corr_118: -0.04418025944247301 + sys_corr_119: 0.0020189195685137913 + sys_corr_120: -0.023739832428749993 + sys_corr_121: -0.0024875801441921726 + sys_corr_122: -0.021271745023596078 + sys_corr_123: -0.007525980796814738 + sys_corr_124: 0.041639806708527675 + sys_corr_125: 0.027237190277835017 + sys_corr_126: 0.006403279280814268 + sys_corr_127: -0.16954448691395585 + sys_corr_128: -0.01635803468192775 + sys_corr_129: -0.06556943807637897 + sys_corr_130: 0.003823913253256226 + sys_corr_131: 0.014505923793786388 + sys_corr_132: -0.015336296092699854 stat: 0.0 luminosity: 384.18327200000004 -- sys_corr_1: 188.53455415718557 - sys_corr_2: -25.35755021998806 - sys_corr_3: -6.051314036519044 - sys_corr_4: 18.818169215954402 - sys_corr_5: -98.5697495637562 - sys_corr_6: -96.09657422215712 - sys_corr_7: 182.50401872921324 - sys_corr_8: 120.6960736819833 - sys_corr_9: 116.52384878368736 - sys_corr_10: 27.308009473534547 - sys_corr_11: 186.54724155245464 - sys_corr_12: 244.4559398305841 - sys_corr_13: 150.43525021195094 - sys_corr_14: -42.86541115446849 - sys_corr_15: -42.540306604521405 - sys_corr_16: -1.4701218173933548 - sys_corr_17: -2.013273351330375 - sys_corr_18: 46.924663701115776 - sys_corr_19: 24.702005373446625 - sys_corr_20: 27.096359689414204 - sys_corr_21: 21.10343899081404 - sys_corr_22: 253.2801624753216 - sys_corr_23: 36.50304522363832 - sys_corr_24: -25.464641659480527 - sys_corr_25: -1.188369438478263 - sys_corr_26: -14.178502907308449 - sys_corr_27: 8.622441472898924 - sys_corr_28: 24.230807832312397 - sys_corr_29: -39.79157587938714 - sys_corr_30: 85.0668926909797 - sys_corr_31: -1.3460157709736098 - sys_corr_32: 0.05597454193370768 - sys_corr_33: 11.758973817802639 - sys_corr_34: -15.264480277184111 - sys_corr_35: 11.454456573842478 - sys_corr_36: -2.6419976758633577 - sys_corr_37: -15.391379608403387 - sys_corr_38: 0.6077307964928973 - sys_corr_39: 7.635303551022903 - sys_corr_40: -24.19271230690331 - sys_corr_41: -11.020034788362116 - sys_corr_42: 12.263077083422457 - sys_corr_43: -2.390092868933431 - sys_corr_44: 19.7621489989137 - sys_corr_45: 21.072894473026036 - sys_corr_46: -5.106256039289265 - sys_corr_47: 1.6721408503864914 - sys_corr_48: -50.173788302343176 - sys_corr_49: 23.521052187828776 - sys_corr_50: 15.658967314650328 - sys_corr_51: -44.85323281446751 - sys_corr_52: 2.9193178343935107 - sys_corr_53: -31.310325413984565 - sys_corr_54: -8.696532371062727 - sys_corr_55: 11.194637547216637 - sys_corr_56: -60.41681628140033 - sys_corr_57: -36.0466080375961 - sys_corr_58: 24.93112666492957 - sys_corr_59: 19.889919248062675 - sys_corr_60: -41.40989987989424 - sys_corr_61: -34.010622535705 - sys_corr_62: 156.65732698749605 - sys_corr_63: 75.04702094410854 - sys_corr_64: -13.32090648851494 - sys_corr_65: 58.32447064358297 - sys_corr_66: 4.246687738809591 - sys_corr_67: -115.60371518879423 - sys_corr_68: -6.277309460483758 - sys_corr_69: -39.64772575437644 - sys_corr_70: -22.1998046097807 - sys_corr_71: 48.45846051902467 - sys_corr_72: 1.4006705842369245 - sys_corr_73: 19.580806947334363 - sys_corr_74: 27.54221231367368 - sys_corr_75: 8.356428416068576 - sys_corr_76: 16.645775550535742 - sys_corr_77: -5.755252056623082 - sys_corr_78: 7.4290301657750195 - sys_corr_79: 5.1304496168046505 - sys_corr_80: 0.48244488266947994 - sys_corr_81: 5.215707091047354 - sys_corr_82: 5.3401121108924965 - sys_corr_83: 0.4920898393045364 - sys_corr_84: -1.7872124298665881 - sys_corr_85: -6.959199905868778 - sys_corr_86: -3.3409218112168775 - sys_corr_87: 17.517823857753157 - sys_corr_88: 6.223631840299189 - sys_corr_89: 2.500352867360276 - sys_corr_90: -0.024254499264310024 - sys_corr_91: -2.232260663537852 - sys_corr_92: 6.958176118933306 - sys_corr_93: 0.11368166359997288 - sys_corr_94: -0.030524962185910113 - sys_corr_95: 1.2973089874567028 - sys_corr_96: -0.3254101900163504 - sys_corr_97: -0.9495982146307759 - sys_corr_98: 0.20292828954427 - sys_corr_99: -0.49459697878717823 - sys_corr_100: 0.7746342086118457 - sys_corr_101: -0.628051568613396 - sys_corr_102: 0.8924994124522153 - sys_corr_103: -2.9517337440981315 - sys_corr_104: -0.7456455056076825 - sys_corr_105: -0.9037336348609509 - sys_corr_106: -0.564645068168449 - sys_corr_107: 0.38217150301488867 - sys_corr_108: -0.41111497384960627 - sys_corr_109: 0.0494581249338609 - sys_corr_110: 0.14047840002270934 - sys_corr_111: -0.4456126503294669 - sys_corr_112: -0.05496131184226722 - sys_corr_113: -0.0697577285629345 - sys_corr_114: -0.0007921595791666589 - sys_corr_115: -0.1372474980614574 - sys_corr_116: -0.08586984064252197 - sys_corr_117: -0.046279928547201414 - sys_corr_118: 0.1324205537307048 - sys_corr_119: 0.004563922131816551 - sys_corr_120: 0.0502244924331584 - sys_corr_121: 0.012555743971538158 - sys_corr_122: -0.049022888379875805 - sys_corr_123: -0.08987566343096717 - sys_corr_124: 0.06441903224558074 - sys_corr_125: 0.06688664353559697 - sys_corr_126: 0.012553062034035516 - sys_corr_127: 0.2136775472188998 - sys_corr_128: -0.06695802316698095 - sys_corr_129: -0.04409633923869012 - sys_corr_130: 0.012206576548265478 - sys_corr_131: -0.05134481492426289 - sys_corr_132: -0.0832628225726986 +- sys_corr_1: 188.53455415718554 + sys_corr_2: -25.357550219987964 + sys_corr_3: -6.051314036518847 + sys_corr_4: 18.81816921595449 + sys_corr_5: -98.56974956375605 + sys_corr_6: -96.09657422215764 + sys_corr_7: 182.50401872921285 + sys_corr_8: 120.69607368198865 + sys_corr_9: 116.52384878368919 + sys_corr_10: 27.308009473521388 + sys_corr_11: 186.54724155248 + sys_corr_12: 244.45593983057788 + sys_corr_13: -150.4352502119485 + sys_corr_14: 42.86541115446822 + sys_corr_15: 42.54030660452174 + sys_corr_16: 1.4701218173942179 + sys_corr_17: -2.013273351331133 + sys_corr_18: -46.92466370111598 + sys_corr_19: 24.70200537344492 + sys_corr_20: 27.09635968941455 + sys_corr_21: 21.10343899081182 + sys_corr_22: 253.2801624753206 + sys_corr_23: 36.50304522363836 + sys_corr_24: -25.46464165948119 + sys_corr_25: -1.1883694384783876 + sys_corr_26: -14.178502907308665 + sys_corr_27: 8.6224414728992 + sys_corr_28: 24.230807832312284 + sys_corr_29: -39.791575879386926 + sys_corr_30: 85.06689269097927 + sys_corr_31: -1.3460157709732927 + sys_corr_32: -0.055974541934828016 + sys_corr_33: -11.758973817806462 + sys_corr_34: -15.264480277184347 + sys_corr_35: 11.45445657384381 + sys_corr_36: -2.641997675865427 + sys_corr_37: 15.391379608404174 + sys_corr_38: -0.6077307964941906 + sys_corr_39: -7.635303551022884 + sys_corr_40: 24.192712306906103 + sys_corr_41: -11.02003478836292 + sys_corr_42: -12.263077083424038 + sys_corr_43: -2.39009286893686 + sys_corr_44: 19.762148998915936 + sys_corr_45: -21.072894473025244 + sys_corr_46: 5.106256039296538 + sys_corr_47: -1.672140850388574 + sys_corr_48: 50.17378830234404 + sys_corr_49: -23.521052187821716 + sys_corr_50: 15.65896731464397 + sys_corr_51: -44.853232814470324 + sys_corr_52: 2.9193178343922925 + sys_corr_53: 31.310325413976535 + sys_corr_54: 8.696532371072992 + sys_corr_55: -11.19463754721966 + sys_corr_56: 60.41681628140022 + sys_corr_57: -36.04660803763189 + sys_corr_58: -24.931126664912714 + sys_corr_59: 19.88991924807273 + sys_corr_60: 41.40989987988637 + sys_corr_61: 34.01062253568499 + sys_corr_62: -156.65732698751086 + sys_corr_63: 75.04702094409126 + sys_corr_64: -13.320906488494877 + sys_corr_65: 58.3244706435553 + sys_corr_66: -4.246687738811994 + sys_corr_67: -115.60371518879154 + sys_corr_68: 6.277309460482466 + sys_corr_69: -39.6477257543892 + sys_corr_70: 22.199804609790505 + sys_corr_71: 48.45846051902604 + sys_corr_72: -1.4006705842389293 + sys_corr_73: -19.58080694733217 + sys_corr_74: 27.54221231367439 + sys_corr_75: 8.356428416049814 + sys_corr_76: 16.64577555054221 + sys_corr_77: 5.755252056627729 + sys_corr_78: -0.48244488266945906 + sys_corr_79: 7.429030165773367 + sys_corr_80: 5.13044961680409 + sys_corr_81: -5.2157070910468715 + sys_corr_82: -5.340112110892298 + sys_corr_83: 0.4920898393043678 + sys_corr_84: 1.7872124298672034 + sys_corr_85: -6.959199905868466 + sys_corr_86: 3.340921811237986 + sys_corr_87: -17.517823857751758 + sys_corr_88: 6.223631840301879 + sys_corr_89: -0.024254499264395636 + sys_corr_90: 2.500352867360306 + sys_corr_91: -2.2322606635377644 + sys_corr_92: -6.958176118937084 + sys_corr_93: 0.11368166360001204 + sys_corr_94: -0.0305249621859948 + sys_corr_95: 1.2973089874565247 + sys_corr_96: 0.3254101900163522 + sys_corr_97: -0.9495982146308662 + sys_corr_98: -0.2029282895443114 + sys_corr_99: -0.49459697878725656 + sys_corr_100: -0.6280515686132562 + sys_corr_101: -0.8924994124513048 + sys_corr_102: -2.9517337440982803 + sys_corr_103: 0.745645505607985 + sys_corr_104: 0.9037336348624703 + sys_corr_105: -0.7746342086118179 + sys_corr_106: -0.564645068168302 + sys_corr_107: -0.4111149738495512 + sys_corr_108: 0.04945812493387726 + sys_corr_109: -0.14047840002273093 + sys_corr_110: -0.3821715030150686 + sys_corr_111: 0.4456126503294184 + sys_corr_112: -0.05496131184229582 + sys_corr_113: 0.06975772856292417 + sys_corr_114: -0.0007921595791641888 + sys_corr_115: -0.1372474980614623 + sys_corr_116: 0.08586984064250104 + sys_corr_117: 0.0462799285471845 + sys_corr_118: -0.1324205537306957 + sys_corr_119: -0.004563922131821052 + sys_corr_120: -0.05022449243315219 + sys_corr_121: -0.012555743971542237 + sys_corr_122: -0.08987566343095045 + sys_corr_123: -0.04902288837985231 + sys_corr_124: 0.06441903224555587 + sys_corr_125: 0.06688664353559479 + sys_corr_126: -0.012553062034030399 + sys_corr_127: 0.21367754721896146 + sys_corr_128: -0.06695802316705385 + sys_corr_129: -0.04409633923873167 + sys_corr_130: 0.01220657654827731 + sys_corr_131: 0.051344814924236315 + sys_corr_132: -0.08326282257270537 stat: 0.0 luminosity: 371.96557200000007 -- sys_corr_1: 179.82950097857932 +- sys_corr_1: 179.8295009785796 sys_corr_2: -38.08290094596982 - sys_corr_3: -14.923954782980552 - sys_corr_4: 0.2329904985333788 - sys_corr_5: -121.69088205369067 - sys_corr_6: -86.52737870411529 - sys_corr_7: 218.79510692885904 - sys_corr_8: 142.8810331982874 - sys_corr_9: 150.28455467450001 - sys_corr_10: 32.10633751107633 - sys_corr_11: 230.34097520473895 - sys_corr_12: 320.4584266930244 - sys_corr_13: 197.32003342863504 - sys_corr_14: -59.7479330683096 - sys_corr_15: -54.708594939609966 - sys_corr_16: 11.19577826796715 - sys_corr_17: 8.991685192466603 - sys_corr_18: 42.794783298000674 - sys_corr_19: 11.07879928067625 - sys_corr_20: 28.912551718531905 - sys_corr_21: 24.970122960748963 - sys_corr_22: 230.44615993508162 - sys_corr_23: 34.712106571070954 - sys_corr_24: -97.08399153587979 - sys_corr_25: -6.498328196456665 - sys_corr_26: -16.103456005947734 - sys_corr_27: -15.547410785758762 - sys_corr_28: 25.476252037961334 - sys_corr_29: -25.216116260694164 - sys_corr_30: 68.47279151097844 - sys_corr_31: -41.406806822784 - sys_corr_32: -1.9721120368157263 - sys_corr_33: 7.25299162976442 - sys_corr_34: -8.931099298300083 - sys_corr_35: -18.004427071966926 - sys_corr_36: -0.8448119804565758 - sys_corr_37: 6.200035299306416 - sys_corr_38: -4.793452213456535 - sys_corr_39: 21.652545929410127 - sys_corr_40: -15.015175895019382 - sys_corr_41: -30.173062080987027 - sys_corr_42: -8.021167794851348 - sys_corr_43: 35.1162171163375 - sys_corr_44: 37.91031573259828 - sys_corr_45: -29.976249457445885 - sys_corr_46: 20.583003880727833 - sys_corr_47: 13.396704051006305 - sys_corr_48: -20.1256897408272 - sys_corr_49: -6.5675685135909205 - sys_corr_50: 40.98866788176226 - sys_corr_51: 10.37543717168083 - sys_corr_52: -19.124215857768053 - sys_corr_53: -143.37681182107698 - sys_corr_54: -12.126816644269471 - sys_corr_55: -25.36274795603596 - sys_corr_56: -4.591668389838923 - sys_corr_57: 67.22376079700568 - sys_corr_58: -64.73782305003442 - sys_corr_59: -62.75024972412336 - sys_corr_60: 57.42393218285066 - sys_corr_61: 51.517062759542185 - sys_corr_62: -36.82325035997913 - sys_corr_63: -78.00182590958634 - sys_corr_64: 69.76282165208927 - sys_corr_65: 71.199153115788 - sys_corr_66: -23.90368958967825 - sys_corr_67: -7.080780534880779 - sys_corr_68: -29.645205221724037 - sys_corr_69: -27.640810210493502 - sys_corr_70: -17.894124624733013 - sys_corr_71: -0.6241488297780171 - sys_corr_72: 31.270164898560523 - sys_corr_73: 5.143588792720142 - sys_corr_74: -58.512737276587366 - sys_corr_75: 15.231065050770884 - sys_corr_76: 17.295062801412485 - sys_corr_77: -0.5862310357779636 - sys_corr_78: 6.720411478601714 - sys_corr_79: -0.3312839134826015 - sys_corr_80: -4.358359145410531 - sys_corr_81: 3.8623961662343445 - sys_corr_82: 3.731881169289269 - sys_corr_83: -11.90629768460682 - sys_corr_84: 0.43972967444753813 - sys_corr_85: -6.583107756233415 - sys_corr_86: 8.47782241309131 - sys_corr_87: 14.05215416049285 - sys_corr_88: -20.19157513381558 - sys_corr_89: 1.3844961010371997 - sys_corr_90: 1.367654718938752 - sys_corr_91: -2.2521003772319985 - sys_corr_92: 10.732552641798703 - sys_corr_93: 0.5267278856435448 - sys_corr_94: 1.91337723858536 - sys_corr_95: -0.9086367290905347 - sys_corr_96: 0.19603378207689967 - sys_corr_97: -0.24481284148200533 - sys_corr_98: -0.30883348611511796 - sys_corr_99: -0.20360027801805564 - sys_corr_100: 1.0969511520479511 - sys_corr_101: -0.6922587142681195 - sys_corr_102: 1.6154925347443718 - sys_corr_103: -3.1903974732161937 - sys_corr_104: 0.16608435634107288 - sys_corr_105: -0.8368508715927482 - sys_corr_106: -0.8873814825980921 - sys_corr_107: 0.5089889216380474 - sys_corr_108: -0.6075962197933801 - sys_corr_109: -0.015692645474595198 - sys_corr_110: 0.008442567165904375 - sys_corr_111: -0.16297465758262408 - sys_corr_112: 0.12538020915718362 - sys_corr_113: -0.062204887413071876 - sys_corr_114: -0.001466264382584789 - sys_corr_115: -0.18464373952356958 - sys_corr_116: -0.08042883981863068 - sys_corr_117: -0.06554036876061796 - sys_corr_118: 0.11706127007060405 - sys_corr_119: -0.00019047426928892579 - sys_corr_120: 0.046194098005701935 - sys_corr_121: 0.011316235222398881 - sys_corr_122: -0.047782754189718106 - sys_corr_123: -0.08414638441720096 - sys_corr_124: 0.014407924574947838 - sys_corr_125: 0.06449003649308992 - sys_corr_126: 0.01332824381351408 - sys_corr_127: 0.033693900023736525 - sys_corr_128: -0.012932314389543216 - sys_corr_129: -0.02938794221144442 - sys_corr_130: 0.021368802490198645 - sys_corr_131: -0.048676098956464305 - sys_corr_132: -0.07042018829637603 + sys_corr_3: -14.92395478298033 + sys_corr_4: 0.23299049853344844 + sys_corr_5: -121.69088205369052 + sys_corr_6: -86.52737870411583 + sys_corr_7: 218.79510692885947 + sys_corr_8: 142.88103319829426 + sys_corr_9: 150.28455467450337 + sys_corr_10: 32.10633751105968 + sys_corr_11: 230.34097520477252 + sys_corr_12: 320.45842669301726 + sys_corr_13: -197.32003342863246 + sys_corr_14: 59.74793306830882 + sys_corr_15: 54.70859493961034 + sys_corr_16: -11.195778267966315 + sys_corr_17: 8.991685192465726 + sys_corr_18: -42.79478329800057 + sys_corr_19: 11.078799280675412 + sys_corr_20: 28.91255171853244 + sys_corr_21: 24.970122960747457 + sys_corr_22: 230.4461599350809 + sys_corr_23: 34.712106571071054 + sys_corr_24: -97.08399153588104 + sys_corr_25: -6.498328196456575 + sys_corr_26: -16.103456005946516 + sys_corr_27: -15.547410785758542 + sys_corr_28: 25.476252037961288 + sys_corr_29: -25.216116260694363 + sys_corr_30: 68.47279151097817 + sys_corr_31: -41.406806822783 + sys_corr_32: 1.9721120368181178 + sys_corr_33: -7.25299162976591 + sys_corr_34: -8.931099298299632 + sys_corr_35: -18.004427071964304 + sys_corr_36: -0.8448119804566792 + sys_corr_37: -6.200035299301756 + sys_corr_38: 4.793452213456689 + sys_corr_39: -21.652545929412884 + sys_corr_40: 15.0151758950232 + sys_corr_41: -30.173062080986174 + sys_corr_42: 8.021167794841118 + sys_corr_43: 35.116217116345226 + sys_corr_44: 37.91031573259928 + sys_corr_45: 29.97624945743327 + sys_corr_46: -20.583003880738712 + sys_corr_47: -13.39670405100449 + sys_corr_48: 20.125689740829667 + sys_corr_49: 6.567568513591804 + sys_corr_50: 40.98866788176014 + sys_corr_51: 10.37543717168588 + sys_corr_52: -19.124215857783458 + sys_corr_53: 143.3768118210859 + sys_corr_54: 12.126816644263974 + sys_corr_55: 25.36274795605 + sys_corr_56: 4.59166838984295 + sys_corr_57: 67.22376079699247 + sys_corr_58: 64.73782304998922 + sys_corr_59: -62.750249724158714 + sys_corr_60: -57.42393218285194 + sys_corr_61: -51.517062759535314 + sys_corr_62: 36.82325035998869 + sys_corr_63: -78.0018259096387 + sys_corr_64: 69.76282165210843 + sys_corr_65: 71.19915311586728 + sys_corr_66: 23.903689589685648 + sys_corr_67: -7.080780534891814 + sys_corr_68: 29.645205221722954 + sys_corr_69: -27.640810210489988 + sys_corr_70: 17.894124624757207 + sys_corr_71: -0.6241488297939057 + sys_corr_72: -31.27016489856128 + sys_corr_73: -5.143588792728407 + sys_corr_74: -58.512737276595 + sys_corr_75: 15.231065050747072 + sys_corr_76: 17.295062801417156 + sys_corr_77: 0.5862310357846341 + sys_corr_78: 4.358359145409916 + sys_corr_79: 6.72041147860272 + sys_corr_80: -0.33128391348284447 + sys_corr_81: -3.862396166229601 + sys_corr_82: -3.7318811692895513 + sys_corr_83: -11.906297684605665 + sys_corr_84: -0.43972967444812383 + sys_corr_85: -6.583107756233981 + sys_corr_86: -8.477822413098165 + sys_corr_87: -14.052154160489275 + sys_corr_88: -20.19157513379611 + sys_corr_89: 1.3676547189390695 + sys_corr_90: 1.3844961010371413 + sys_corr_91: -2.252100377232022 + sys_corr_92: -10.732552641795655 + sys_corr_93: 0.5267278856434583 + sys_corr_94: 1.9133772385856183 + sys_corr_95: -0.9086367290904502 + sys_corr_96: -0.19603378207694666 + sys_corr_97: -0.24481284148194885 + sys_corr_98: 0.3088334861150526 + sys_corr_99: -0.20360027801803637 + sys_corr_100: -0.6922587142677297 + sys_corr_101: -1.6154925347430225 + sys_corr_102: -3.190397473215342 + sys_corr_103: -0.16608435634087002 + sys_corr_104: 0.8368508715939528 + sys_corr_105: -1.0969511520477462 + sys_corr_106: -0.8873814825976778 + sys_corr_107: -0.6075962197932474 + sys_corr_108: -0.015692645474522395 + sys_corr_109: -0.008442567165961578 + sys_corr_110: -0.5089889216381034 + sys_corr_111: 0.1629746575825356 + sys_corr_112: 0.12538020915714732 + sys_corr_113: 0.06220488741304507 + sys_corr_114: -0.0014662643825871491 + sys_corr_115: -0.18464373952356233 + sys_corr_116: 0.08042883981858868 + sys_corr_117: 0.06554036876059922 + sys_corr_118: -0.11706127007058742 + sys_corr_119: 0.00019047426928851992 + sys_corr_120: -0.04619409800568163 + sys_corr_121: -0.011316235222398982 + sys_corr_122: -0.08414638441717194 + sys_corr_123: -0.04778275418969615 + sys_corr_124: 0.01440792457494201 + sys_corr_125: 0.06449003649308928 + sys_corr_126: -0.013328243813513236 + sys_corr_127: 0.033693900023691964 + sys_corr_128: -0.012932314389579046 + sys_corr_129: -0.02938794221143519 + sys_corr_130: 0.021368802490205573 + sys_corr_131: 0.04867609895644806 + sys_corr_132: -0.07042018829638481 stat: 0.0 luminosity: 372.66433600000005 -- sys_corr_1: 156.18322728438324 - sys_corr_2: -31.446523724220608 - sys_corr_3: -31.781536396485325 - sys_corr_4: -36.380866702403296 - sys_corr_5: -130.596143482552 - sys_corr_6: -62.04158565167143 - sys_corr_7: 215.69558965986647 - sys_corr_8: 148.39632650188736 - sys_corr_9: 177.71777272068476 - sys_corr_10: 38.76506709199477 - sys_corr_11: 246.10767103121728 - sys_corr_12: 350.63374654297314 - sys_corr_13: 219.6755968770912 - sys_corr_14: -62.76401249063911 - sys_corr_15: -63.72528786335851 - sys_corr_16: 15.330404075920752 - sys_corr_17: 22.13804012453223 - sys_corr_18: 46.488284727511086 - sys_corr_19: -4.542014246975798 - sys_corr_20: 27.314349060530002 - sys_corr_21: 26.18888542048193 - sys_corr_22: 149.2756272847533 - sys_corr_23: 22.430010551672126 - sys_corr_24: -151.42783284035548 - sys_corr_25: -11.953888336586267 - sys_corr_26: -30.61451418667722 - sys_corr_27: -37.94544017683035 - sys_corr_28: 48.87717855349553 - sys_corr_29: -12.259389127538126 - sys_corr_30: 17.54658657196887 - sys_corr_31: -58.89295243195908 - sys_corr_32: -6.910357009883432 - sys_corr_33: 10.672112285787778 - sys_corr_34: -7.4829185163453715 - sys_corr_35: 4.369820134899205 - sys_corr_36: -13.228755867850893 - sys_corr_37: -13.150095334931411 - sys_corr_38: -15.055417434108355 - sys_corr_39: 19.870063680860806 - sys_corr_40: -37.60001271279161 - sys_corr_41: -67.39170222437886 - sys_corr_42: -18.06253947993074 - sys_corr_43: 16.865391810479387 - sys_corr_44: 6.1946623340992035 - sys_corr_45: 19.352678572955185 - sys_corr_46: 21.39539619617447 - sys_corr_47: 30.840595814517208 - sys_corr_48: -9.758938633064403 - sys_corr_49: 4.720592325067726 - sys_corr_50: 16.949321079466188 - sys_corr_51: -50.423248925051446 - sys_corr_52: -6.444311002445408 - sys_corr_53: 203.7124244563032 - sys_corr_54: 24.82436337428667 - sys_corr_55: 50.11147027788726 - sys_corr_56: 40.05406942821347 - sys_corr_57: -33.68181730847131 - sys_corr_58: 50.15978407655838 - sys_corr_59: -3.9645963364375993 - sys_corr_60: -32.53345453616452 - sys_corr_61: 18.559532420380037 - sys_corr_62: 21.312890698388372 - sys_corr_63: -92.89749584526969 - sys_corr_64: 21.941549356096687 - sys_corr_65: 46.902534461749106 - sys_corr_66: -18.033297407043346 - sys_corr_67: 44.341314224925426 - sys_corr_68: -3.6624580536571116 - sys_corr_69: -6.518139014234639 - sys_corr_70: -22.289430029334376 - sys_corr_71: -10.426743295053821 - sys_corr_72: 34.74602763920758 - sys_corr_73: -7.104363969913328 - sys_corr_74: -30.2852249559803 - sys_corr_75: 0.565060807797316 - sys_corr_76: -0.12709265531941003 - sys_corr_77: 0.39435292981697184 - sys_corr_78: 1.1240002922254373 - sys_corr_79: -4.913144089546087 - sys_corr_80: -2.83811869403574 - sys_corr_81: 6.039565541218751 - sys_corr_82: -1.3001887246979247 - sys_corr_83: -7.3054105739804465 - sys_corr_84: -2.1105021319538393 - sys_corr_85: -0.8531768046509329 - sys_corr_86: 8.769098927869777 - sys_corr_87: -1.0368459813355329 - sys_corr_88: -8.938395457361388 - sys_corr_89: -1.1817093025838163 - sys_corr_90: -0.688600213047855 - sys_corr_91: -0.32416749255570915 - sys_corr_92: -1.639341969311549 - sys_corr_93: 0.17424568810266056 - sys_corr_94: 0.9169188777257425 - sys_corr_95: 0.1499787266209239 - sys_corr_96: 0.07881257707390452 - sys_corr_97: 0.23149466528912432 - sys_corr_98: -0.006276840056160361 - sys_corr_99: -0.04029562687546127 - sys_corr_100: 1.0074014670322637 - sys_corr_101: -0.8689725094476249 - sys_corr_102: 1.573955367582204 - sys_corr_103: -3.0504784533110127 - sys_corr_104: -0.7293383765763218 - sys_corr_105: -0.8712041368761233 - sys_corr_106: -0.7577006034628093 - sys_corr_107: 0.037620912672117215 - sys_corr_108: -0.5587375071625587 - sys_corr_109: 0.09728313606497617 - sys_corr_110: 0.016053976492709267 - sys_corr_111: -0.26445605515206105 - sys_corr_112: -0.04357514565871072 - sys_corr_113: 0.025511863013981496 - sys_corr_114: -0.002428493853857166 - sys_corr_115: -0.12701598976116596 - sys_corr_116: -0.021869630906627736 - sys_corr_117: -0.010975809791076844 - sys_corr_118: -0.008220973607389888 - sys_corr_119: -0.00978778293237547 - sys_corr_120: 0.013358132329780772 - sys_corr_121: 0.008003621626058477 - sys_corr_122: -0.014166922981550863 - sys_corr_123: -0.032809803776349906 - sys_corr_124: -0.008749424415422383 - sys_corr_125: 0.03950236007770011 - sys_corr_126: -0.010996913943205528 - sys_corr_127: 0.1759469981868392 - sys_corr_128: 0.09027078315407926 - sys_corr_129: -0.0745861163499342 - sys_corr_130: 0.02866227816507847 - sys_corr_131: -0.03277053222048208 - sys_corr_132: -0.10286822388614379 +- sys_corr_1: 156.18322728438343 + sys_corr_2: -31.44652372422049 + sys_corr_3: -31.781536396485166 + sys_corr_4: -36.38086670240396 + sys_corr_5: -130.59614348255158 + sys_corr_6: -62.04158565167159 + sys_corr_7: 215.6955896598668 + sys_corr_8: 148.39632650189566 + sys_corr_9: 177.7177727206872 + sys_corr_10: 38.76506709197526 + sys_corr_11: 246.10767103125312 + sys_corr_12: 350.63374654296547 + sys_corr_13: -219.6755968770888 + sys_corr_14: 62.76401249063844 + sys_corr_15: 63.72528786335912 + sys_corr_16: -15.330404075919647 + sys_corr_17: 22.138040124531308 + sys_corr_18: -46.488284727509786 + sys_corr_19: -4.5420142469766605 + sys_corr_20: 27.31434906053062 + sys_corr_21: 26.188885420480542 + sys_corr_22: 149.27562728475223 + sys_corr_23: 22.430010551673053 + sys_corr_24: -151.42783284035517 + sys_corr_25: -11.953888336585624 + sys_corr_26: -30.614514186674583 + sys_corr_27: -37.94544017682955 + sys_corr_28: 48.87717855349669 + sys_corr_29: -12.259389127537727 + sys_corr_30: 17.546586571967463 + sys_corr_31: -58.89295243195834 + sys_corr_32: 6.910357009885879 + sys_corr_33: -10.672112285787348 + sys_corr_34: -7.482918516342887 + sys_corr_35: 4.369820134901852 + sys_corr_36: -13.228755867852414 + sys_corr_37: 13.15009533493561 + sys_corr_38: 15.055417434107069 + sys_corr_39: -19.870063680858436 + sys_corr_40: 37.600012712794914 + sys_corr_41: -67.39170222437258 + sys_corr_42: 18.06253947991794 + sys_corr_43: 16.865391810491644 + sys_corr_44: 6.19466233410574 + sys_corr_45: -19.352678572969616 + sys_corr_46: -21.395396196166885 + sys_corr_47: -30.84059581451657 + sys_corr_48: 9.758938633063458 + sys_corr_49: -4.720592325068238 + sys_corr_50: 16.949321079460184 + sys_corr_51: -50.42324892504761 + sys_corr_52: -6.444311002420606 + sys_corr_53: -203.7124244563045 + sys_corr_54: -24.824363374275435 + sys_corr_55: -50.11147027789849 + sys_corr_56: -40.054069428224885 + sys_corr_57: -33.68181730843532 + sys_corr_58: -50.15978407655134 + sys_corr_59: -3.9645963363964563 + sys_corr_60: 32.53345453615012 + sys_corr_61: -18.559532420389 + sys_corr_62: -21.312890698386997 + sys_corr_63: -92.89749584528602 + sys_corr_64: 21.941549356104858 + sys_corr_65: 46.9025344617761 + sys_corr_66: 18.03329740704447 + sys_corr_67: 44.34131422493294 + sys_corr_68: 3.6624580536631592 + sys_corr_69: -6.518139014235563 + sys_corr_70: 22.289430029343567 + sys_corr_71: -10.42674329505453 + sys_corr_72: -34.746027639213 + sys_corr_73: 7.104363969910045 + sys_corr_74: -30.285224955986763 + sys_corr_75: 0.5650608077983247 + sys_corr_76: -0.12709265532059763 + sys_corr_77: -0.3943529298178412 + sys_corr_78: 2.8381186940350114 + sys_corr_79: 1.1240002922266967 + sys_corr_80: -4.91314408954643 + sys_corr_81: -6.039565541216105 + sys_corr_82: 1.3001887246967834 + sys_corr_83: -7.305410573980877 + sys_corr_84: 2.1105021319540977 + sys_corr_85: -0.8531768046509054 + sys_corr_86: -8.769098927884412 + sys_corr_87: 1.0368459813355806 + sys_corr_88: -8.93839545735238 + sys_corr_89: -0.6886002130478215 + sys_corr_90: -1.1817093025838883 + sys_corr_91: -0.32416749255575583 + sys_corr_92: 1.6393419693149371 + sys_corr_93: 0.1742456881026991 + sys_corr_94: 0.9169188777260567 + sys_corr_95: 0.14997872662062758 + sys_corr_96: -0.07881257707392021 + sys_corr_97: 0.23149466528933008 + sys_corr_98: 0.0062768400562125005 + sys_corr_99: -0.04029562687543971 + sys_corr_100: -0.8689725094473323 + sys_corr_101: -1.5739553675809967 + sys_corr_102: -3.0504784533100953 + sys_corr_103: 0.7293383765764317 + sys_corr_104: 0.8712041368770798 + sys_corr_105: -1.0074014670322031 + sys_corr_106: -0.7577006034625907 + sys_corr_107: -0.558737507162462 + sys_corr_108: 0.09728313606500874 + sys_corr_109: -0.016053976492723797 + sys_corr_110: -0.03762091267215287 + sys_corr_111: 0.26445605515197645 + sys_corr_112: -0.04357514565872682 + sys_corr_113: -0.025511863013989885 + sys_corr_114: -0.0024284938538562473 + sys_corr_115: -0.12701598976118966 + sys_corr_116: 0.021869630906617168 + sys_corr_117: 0.010975809791078244 + sys_corr_118: 0.008220973607382233 + sys_corr_119: 0.009787782932375337 + sys_corr_120: -0.013358132329784847 + sys_corr_121: -0.00800362162605765 + sys_corr_122: -0.032809803776352016 + sys_corr_123: -0.014166922981557131 + sys_corr_124: -0.008749424415409476 + sys_corr_125: 0.03950236007770986 + sys_corr_126: 0.010996913943196202 + sys_corr_127: 0.17594699818687326 + sys_corr_128: 0.09027078315405099 + sys_corr_129: -0.07458611634992403 + sys_corr_130: 0.028662278165075262 + sys_corr_131: 0.03277053222047818 + sys_corr_132: -0.10286822388614393 stat: 0.0 luminosity: 358.52907200000004 -- sys_corr_1: 149.27430279110584 - sys_corr_2: -29.690060565750247 - sys_corr_3: -41.45747903861761 - sys_corr_4: -95.29545760799864 - sys_corr_5: -116.31235808510652 - sys_corr_6: -46.48456106059128 - sys_corr_7: 217.73718569202467 - sys_corr_8: 157.20753292266474 - sys_corr_9: 204.5818811962974 - sys_corr_10: 39.31624196423165 - sys_corr_11: 251.40627604220214 - sys_corr_12: 378.368265762153 - sys_corr_13: 240.2130387740813 - sys_corr_14: -70.03000554083027 - sys_corr_15: -69.54947397671098 - sys_corr_16: 21.542616897967658 - sys_corr_17: 31.86639874786621 - sys_corr_18: 41.11592331560712 - sys_corr_19: -19.202315269566725 - sys_corr_20: 22.024310053716572 - sys_corr_21: 20.245922648783246 - sys_corr_22: 56.532229362632314 - sys_corr_23: 9.919775210982792 - sys_corr_24: -193.4747004680478 - sys_corr_25: -19.770092629284225 - sys_corr_26: -26.879213950697178 - sys_corr_27: -50.29729672979598 - sys_corr_28: 46.60640799659634 - sys_corr_29: 11.080195149035093 - sys_corr_30: -67.26778748870389 - sys_corr_31: -60.76412246290281 - sys_corr_32: -1.6759403244332016 - sys_corr_33: 5.849700047054037 - sys_corr_34: 7.282495558068921 - sys_corr_35: 5.965679261457945 - sys_corr_36: 11.098041858549612 - sys_corr_37: 1.4910460487736354 - sys_corr_38: 5.192744666569069 - sys_corr_39: 0.45958840935551004 - sys_corr_40: -11.832931114704474 - sys_corr_41: 1.5277879559425556 - sys_corr_42: 15.647782620327611 - sys_corr_43: -16.754862340478518 - sys_corr_44: 2.6978883482175195 - sys_corr_45: 14.328992329559407 - sys_corr_46: -48.47225202404227 - sys_corr_47: 25.599773344416306 - sys_corr_48: -7.377403312920201 - sys_corr_49: -26.78196607348973 - sys_corr_50: 25.509888413091446 - sys_corr_51: 20.281665080872703 - sys_corr_52: -8.368743706927566 - sys_corr_53: 55.4271283756577 - sys_corr_54: 75.65608731618748 - sys_corr_55: 25.709237263570145 - sys_corr_56: -20.21191956704156 - sys_corr_57: 155.1817831105097 - sys_corr_58: -73.91166519982684 - sys_corr_59: 2.3384298714828384 - sys_corr_60: 30.17336920345509 - sys_corr_61: -13.334235071158862 - sys_corr_62: -7.3774596774742776 - sys_corr_63: 137.30403737308748 - sys_corr_64: -13.403097506945882 - sys_corr_65: -38.084111120111366 - sys_corr_66: -6.195581472740728 - sys_corr_67: 35.21898152228096 - sys_corr_68: 30.26116600272688 - sys_corr_69: 6.319974861342268 - sys_corr_70: 16.037507699099624 - sys_corr_71: 31.751460776338718 - sys_corr_72: 13.682897060052976 - sys_corr_73: -5.746179975508308 - sys_corr_74: 5.769953981714577 - sys_corr_75: -14.219046794113643 - sys_corr_76: -15.914823705967317 - sys_corr_77: 0.0377625318087351 - sys_corr_78: 2.8055527663160165 - sys_corr_79: -2.6652109669364448 - sys_corr_80: -1.2737342441958672 - sys_corr_81: 2.5328673041868277 - sys_corr_82: -3.2012806265629363 - sys_corr_83: 1.1693791626864665 - sys_corr_84: 0.6446889112679447 - sys_corr_85: -0.049565900366189915 - sys_corr_86: 10.955427240015009 - sys_corr_87: 2.9683740934745706 - sys_corr_88: -12.832275302443042 - sys_corr_89: -0.8892533824499296 - sys_corr_90: -0.7058244713740665 - sys_corr_91: -0.19163958346336285 - sys_corr_92: -6.672108696357161 - sys_corr_93: -0.06472531834565948 - sys_corr_94: -0.5094472051222316 - sys_corr_95: 1.6057166474210358 - sys_corr_96: -0.141433194435889 - sys_corr_97: -0.23190367742530169 - sys_corr_98: 0.37651687378225496 - sys_corr_99: -0.12224757257963895 - sys_corr_100: 0.30223536432250403 - sys_corr_101: -0.2620718878310006 - sys_corr_102: 0.2662193003536146 - sys_corr_103: -0.5163938116564863 - sys_corr_104: -1.0516365916079562 - sys_corr_105: -0.1597811048112612 - sys_corr_106: -0.27931334392470747 - sys_corr_107: 0.20784874961379818 - sys_corr_108: -0.010116194851851808 - sys_corr_109: -0.10422229974738659 - sys_corr_110: 0.0716186443987433 - sys_corr_111: -0.08000380540097039 - sys_corr_112: 0.019187245363981642 - sys_corr_113: 0.0705199035233814 - sys_corr_114: -0.0011682492778621594 - sys_corr_115: -0.11853552490143171 - sys_corr_116: -0.024509257582254414 - sys_corr_117: -0.020782184377864325 - sys_corr_118: 0.055056744812900696 - sys_corr_119: -0.0017426298090603698 - sys_corr_120: 0.009245208598087695 - sys_corr_121: -0.002677931143917886 - sys_corr_122: 0.008323902930210902 - sys_corr_123: 0.01180431440821672 - sys_corr_124: 0.005200615025406036 - sys_corr_125: -0.0010883689206272805 - sys_corr_126: -0.006938928803315182 - sys_corr_127: -0.16171380070713534 - sys_corr_128: 0.2062719537669411 - sys_corr_129: -0.014040259568333565 - sys_corr_130: 0.0014248933472586134 - sys_corr_131: -0.0055155739661331875 - sys_corr_132: -0.08564777287109505 +- sys_corr_1: 149.2743027911061 + sys_corr_2: -29.690060565750297 + sys_corr_3: -41.45747903861742 + sys_corr_4: -95.29545760799898 + sys_corr_5: -116.31235808510593 + sys_corr_6: -46.4845610605919 + sys_corr_7: 217.73718569202555 + sys_corr_8: 157.20753292267298 + sys_corr_9: 204.58188119629895 + sys_corr_10: 39.3162419642109 + sys_corr_11: 251.40627604224056 + sys_corr_12: 378.36826576214395 + sys_corr_13: -240.21303877407823 + sys_corr_14: 70.03000554082993 + sys_corr_15: 69.54947397671128 + sys_corr_16: -21.54261689796651 + sys_corr_17: 31.866398747865244 + sys_corr_18: -41.11592331560679 + sys_corr_19: -19.20231526956697 + sys_corr_20: 22.024310053717397 + sys_corr_21: 20.245922648782667 + sys_corr_22: 56.53222936263173 + sys_corr_23: 9.919775210983046 + sys_corr_24: -193.4747004680479 + sys_corr_25: -19.77009262928378 + sys_corr_26: -26.879213950693458 + sys_corr_27: -50.29729672979555 + sys_corr_28: 46.60640799659719 + sys_corr_29: 11.080195149036625 + sys_corr_30: -67.2677874887048 + sys_corr_31: -60.764122462904155 + sys_corr_32: 1.6759403244323035 + sys_corr_33: -5.849700047051789 + sys_corr_34: 7.282495558068207 + sys_corr_35: 5.965679261457946 + sys_corr_36: 11.098041858550385 + sys_corr_37: -1.4910460487749686 + sys_corr_38: -5.192744666567617 + sys_corr_39: -0.45958840935908163 + sys_corr_40: 11.832931114704015 + sys_corr_41: 1.5277879559398517 + sys_corr_42: -15.647782620325577 + sys_corr_43: -16.754862340487048 + sys_corr_44: 2.697888348220697 + sys_corr_45: -14.32899232953354 + sys_corr_46: 48.472252024048444 + sys_corr_47: -25.599773344418534 + sys_corr_48: 7.37740331291717 + sys_corr_49: 26.781966073493056 + sys_corr_50: 25.509888413091268 + sys_corr_51: 20.281665080879733 + sys_corr_52: -8.36874370692863 + sys_corr_53: -55.427128375666314 + sys_corr_54: -75.65608731620935 + sys_corr_55: -25.709237263547873 + sys_corr_56: 20.211919567052018 + sys_corr_57: 155.18178311050653 + sys_corr_58: 73.91166519981259 + sys_corr_59: 2.3384298714093066 + sys_corr_60: -30.173369203432895 + sys_corr_61: 13.334235071170948 + sys_corr_62: 7.377459677471103 + sys_corr_63: 137.30403737309882 + sys_corr_64: -13.403097506941755 + sys_corr_65: -38.08411112013359 + sys_corr_66: 6.195581472738919 + sys_corr_67: 35.21898152228943 + sys_corr_68: -30.261166002743835 + sys_corr_69: 6.319974861350495 + sys_corr_70: -16.037507699121498 + sys_corr_71: 31.751460776350395 + sys_corr_72: -13.682897060044569 + sys_corr_73: 5.746179975504593 + sys_corr_74: 5.769953981715694 + sys_corr_75: -14.219046794092534 + sys_corr_76: -15.914823705974205 + sys_corr_77: -0.03776253180642413 + sys_corr_78: 1.2737342441967678 + sys_corr_79: 2.8055527663147783 + sys_corr_80: -2.665210966936331 + sys_corr_81: -2.5328673041877585 + sys_corr_82: 3.2012806265622182 + sys_corr_83: 1.169379162685201 + sys_corr_84: -0.6446889112684963 + sys_corr_85: -0.049565900366472376 + sys_corr_86: -10.955427240041614 + sys_corr_87: -2.9683740934748113 + sys_corr_88: -12.832275302433102 + sys_corr_89: -0.7058244713741358 + sys_corr_90: -0.8892533824499794 + sys_corr_91: -0.1916395834633394 + sys_corr_92: 6.672108696360849 + sys_corr_93: -0.06472531834562475 + sys_corr_94: -0.5094472051224024 + sys_corr_95: 1.6057166474209608 + sys_corr_96: 0.14143319443589897 + sys_corr_97: -0.23190367742550655 + sys_corr_98: -0.37651687378234533 + sys_corr_99: -0.12224757257977985 + sys_corr_100: -0.262071887831147 + sys_corr_101: -0.26621930035386315 + sys_corr_102: -0.5163938116579576 + sys_corr_103: 1.0516365916082795 + sys_corr_104: 0.15978110481205485 + sys_corr_105: -0.3022353643227283 + sys_corr_106: -0.27931334392485513 + sys_corr_107: -0.010116194851922486 + sys_corr_108: -0.10422229974743571 + sys_corr_109: -0.07161864439871518 + sys_corr_110: -0.20784874961390343 + sys_corr_111: 0.0800038054010174 + sys_corr_112: 0.019187245363996883 + sys_corr_113: -0.07051990352336657 + sys_corr_114: -0.0011682492778611934 + sys_corr_115: -0.11853552490142934 + sys_corr_116: 0.024509257582250886 + sys_corr_117: 0.020782184377888025 + sys_corr_118: -0.05505674481290997 + sys_corr_119: 0.0017426298090617662 + sys_corr_120: -0.009245208598093588 + sys_corr_121: 0.0026779311439199156 + sys_corr_122: 0.011804314408199908 + sys_corr_123: 0.00832390293020934 + sys_corr_124: 0.0052006150254052365 + sys_corr_125: -0.0010883689206158552 + sys_corr_126: 0.0069389288033094325 + sys_corr_127: -0.16171380070705776 + sys_corr_128: 0.2062719537669319 + sys_corr_129: -0.014040259568337038 + sys_corr_130: 0.001424893347248381 + sys_corr_131: 0.00551557396613731 + sys_corr_132: -0.08564777287108624 stat: 0.0 luminosity: 361.87791200000004 -- sys_corr_1: 132.11397572123175 - sys_corr_2: 2.9358492291000253 - sys_corr_3: -49.54969430887921 - sys_corr_4: -129.8009056269799 - sys_corr_5: -96.11519244274459 - sys_corr_6: -30.64862906089192 - sys_corr_7: 193.06982662771176 - sys_corr_8: 154.39464669212433 - sys_corr_9: 219.5802245557735 - sys_corr_10: 40.881798450710335 - sys_corr_11: 253.70247521272594 - sys_corr_12: 377.2247482917753 - sys_corr_13: 252.92357531061984 - sys_corr_14: -64.70519942176234 - sys_corr_15: -74.16734302539321 - sys_corr_16: 37.18740064311174 - sys_corr_17: 44.599913154468275 - sys_corr_18: 34.7849644802098 - sys_corr_19: -27.543189189938673 - sys_corr_20: 20.7832906315881 - sys_corr_21: 24.865814667988516 - sys_corr_22: -72.79290577827956 - sys_corr_23: -22.06168549609346 - sys_corr_24: -181.37976662097896 - sys_corr_25: -36.80502195756527 - sys_corr_26: -60.84949339091278 - sys_corr_27: -29.661677936938123 - sys_corr_28: 37.346976305080595 - sys_corr_29: 26.471397319542206 - sys_corr_30: -98.30771361931004 - sys_corr_31: -49.33070731611802 - sys_corr_32: -6.2767370573499495 - sys_corr_33: -0.30666634568640777 - sys_corr_34: -4.877906288018597 - sys_corr_35: 1.1528263790172188 - sys_corr_36: 22.259592685351464 - sys_corr_37: 21.73652106164259 - sys_corr_38: 8.569965481683756 - sys_corr_39: -3.0446032068502737 - sys_corr_40: 35.22609086086941 - sys_corr_41: 13.645663869407448 - sys_corr_42: 31.294517084503404 - sys_corr_43: 11.190255850880996 - sys_corr_44: 6.054484223386034 - sys_corr_45: -4.811250024370116 - sys_corr_46: 11.404638456533052 - sys_corr_47: -23.103793226558718 - sys_corr_48: -32.252766806033385 - sys_corr_49: 31.59685705773854 - sys_corr_50: -12.705872315976041 - sys_corr_51: -72.73377239962602 - sys_corr_52: -18.171986705752644 - sys_corr_53: -35.949395110190764 - sys_corr_54: -42.96033697545792 - sys_corr_55: 31.413173798531805 - sys_corr_56: -84.06506705494434 - sys_corr_57: -76.16110490461794 - sys_corr_58: -22.807573861683032 - sys_corr_59: 90.5726673042124 - sys_corr_60: 9.69458997539615 - sys_corr_61: 18.462513378604754 - sys_corr_62: -41.84535890756702 - sys_corr_63: 0.058024124971005536 - sys_corr_64: 65.80000901773869 - sys_corr_65: -19.702514982085216 - sys_corr_66: -6.897670729005455 - sys_corr_67: -18.21639577494674 - sys_corr_68: -5.9336595337537865 - sys_corr_69: 38.31351449695645 - sys_corr_70: 2.2790382391381887 - sys_corr_71: -91.44558856140212 - sys_corr_72: -62.04282464324926 - sys_corr_73: -16.35708486116692 - sys_corr_74: 50.67423195764075 - sys_corr_75: -13.875230609762621 - sys_corr_76: -37.894502939240496 - sys_corr_77: 5.270407714584495 - sys_corr_78: 2.129528748345557 - sys_corr_79: -11.247809648155043 - sys_corr_80: -5.4229130516153035 - sys_corr_81: 7.5720675377936955 - sys_corr_82: 4.1845546008117545 - sys_corr_83: 2.898285517995488 - sys_corr_84: 1.6119008223505147 - sys_corr_85: 4.437409446791088 - sys_corr_86: 34.71858307753412 - sys_corr_87: -7.75264086983379 - sys_corr_88: -17.49553373524013 - sys_corr_89: 0.05019567155711266 - sys_corr_90: 0.040967528240675434 - sys_corr_91: 3.421044050023899 - sys_corr_92: -35.606596616994956 - sys_corr_93: -0.7052598553767032 - sys_corr_94: -2.6532404920401316 - sys_corr_95: 0.9768803527964062 - sys_corr_96: -0.1056241590785255 - sys_corr_97: -0.08281474283861812 - sys_corr_98: 0.2826718542112735 - sys_corr_99: 0.1868659243544786 - sys_corr_100: -0.15098494362585707 - sys_corr_101: 0.28294112806195304 - sys_corr_102: -0.14692245121800981 - sys_corr_103: -0.7571030361196263 - sys_corr_104: 0.036434952050940245 - sys_corr_105: -0.7662167711729213 - sys_corr_106: 0.187347840518965 - sys_corr_107: -0.217512394634338 - sys_corr_108: 0.00018002365582015878 - sys_corr_109: -0.15378967307383598 - sys_corr_110: 0.14459139975840846 - sys_corr_111: 0.1518839262766337 - sys_corr_112: -0.08874550804336238 - sys_corr_113: 0.18147969916863785 - sys_corr_114: -0.004728992734937363 - sys_corr_115: -0.20644990998414495 - sys_corr_116: -0.016930806090515456 - sys_corr_117: -0.0044246439539195985 - sys_corr_118: 0.16914764803548332 - sys_corr_119: -0.0024545189982126026 - sys_corr_120: 0.006623973735477305 - sys_corr_121: 0.008411093689095527 - sys_corr_122: -0.00595189385115865 - sys_corr_123: -0.010481423031621322 - sys_corr_124: 0.007815247112252753 - sys_corr_125: 0.020938473755945694 - sys_corr_126: -0.0002182584189425489 - sys_corr_127: -0.04027182552546293 - sys_corr_128: 0.0027657329241108333 - sys_corr_129: 0.09736963527528777 - sys_corr_130: -0.00033856851885837676 - sys_corr_131: -0.014782328910099509 - sys_corr_132: -0.08149178499879589 +- sys_corr_1: 132.1139757212318 + sys_corr_2: 2.935849229099954 + sys_corr_3: -49.549694308879076 + sys_corr_4: -129.8009056269805 + sys_corr_5: -96.11519244274378 + sys_corr_6: -30.648629060892684 + sys_corr_7: 193.06982662771273 + sys_corr_8: 154.39464669213288 + sys_corr_9: 219.58022455577563 + sys_corr_10: 40.88179845068817 + sys_corr_11: 253.7024752127646 + sys_corr_12: 377.2247482917672 + sys_corr_13: -252.9235753106159 + sys_corr_14: 64.70519942176219 + sys_corr_15: 74.16734302539359 + sys_corr_16: -37.187400643110564 + sys_corr_17: 44.5999131544678 + sys_corr_18: -34.7849644802104 + sys_corr_19: -27.543189189937674 + sys_corr_20: 20.783290631589352 + sys_corr_21: 24.865814667988413 + sys_corr_22: -72.79290577828004 + sys_corr_23: -22.06168549609323 + sys_corr_24: -181.37976662097915 + sys_corr_25: -36.80502195756534 + sys_corr_26: -60.84949339091047 + sys_corr_27: -29.661677936937018 + sys_corr_28: 37.34697630508121 + sys_corr_29: 26.471397319543613 + sys_corr_30: -98.30771361931133 + sys_corr_31: -49.33070731611963 + sys_corr_32: 6.276737057346522 + sys_corr_33: 0.3066663456866029 + sys_corr_34: -4.877906288019247 + sys_corr_35: 1.152826379014536 + sys_corr_36: 22.259592685355067 + sys_corr_37: -21.73652106164411 + sys_corr_38: -8.56996548168184 + sys_corr_39: 3.0446032068491733 + sys_corr_40: -35.22609086086933 + sys_corr_41: 13.645663869406713 + sys_corr_42: -31.294517084502107 + sys_corr_43: 11.190255850863304 + sys_corr_44: 6.05448422338111 + sys_corr_45: 4.811250024359837 + sys_corr_46: -11.404638456537217 + sys_corr_47: 23.103793226558626 + sys_corr_48: 32.25276680603457 + sys_corr_49: -31.596857057735555 + sys_corr_50: -12.705872315981422 + sys_corr_51: -72.73377239962949 + sys_corr_52: -18.17198670575002 + sys_corr_53: 35.94939511019728 + sys_corr_54: 42.96033697547794 + sys_corr_55: -31.41317379853472 + sys_corr_56: 84.06506705494064 + sys_corr_57: -76.16110490466762 + sys_corr_58: 22.807573861753507 + sys_corr_59: 90.57266730420504 + sys_corr_60: -9.69458997538221 + sys_corr_61: -18.46251337860029 + sys_corr_62: 41.845358907563714 + sys_corr_63: 0.05802412495347566 + sys_corr_64: 65.80000901772833 + sys_corr_65: -19.702514982004438 + sys_corr_66: 6.897670728988342 + sys_corr_67: -18.216395774970547 + sys_corr_68: 5.933659533800527 + sys_corr_69: 38.31351449694379 + sys_corr_70: -2.2790382391265265 + sys_corr_71: -91.44558856140534 + sys_corr_72: 62.042824643244 + sys_corr_73: 16.357084861174368 + sys_corr_74: 50.67423195764506 + sys_corr_75: -13.87523060970355 + sys_corr_76: -37.894502939247175 + sys_corr_77: -5.270407714586556 + sys_corr_78: 5.4229130516163115 + sys_corr_79: 2.129528748344864 + sys_corr_80: -11.247809648154542 + sys_corr_81: -7.572067537795649 + sys_corr_82: -4.184554600812563 + sys_corr_83: 2.898285517993667 + sys_corr_84: -1.6119008223508846 + sys_corr_85: 4.43740944679087 + sys_corr_86: -34.718583077605665 + sys_corr_87: 7.752640869834679 + sys_corr_88: -17.495533735208717 + sys_corr_89: 0.04096752824026377 + sys_corr_90: 0.05019567155695284 + sys_corr_91: 3.421044050023774 + sys_corr_92: 35.606596617007284 + sys_corr_93: -0.705259855376566 + sys_corr_94: -2.653240492039944 + sys_corr_95: 0.9768803527959958 + sys_corr_96: 0.10562415907851887 + sys_corr_97: -0.08281474283875223 + sys_corr_98: -0.2826718542112758 + sys_corr_99: 0.18686592435441957 + sys_corr_100: 0.2829411280619479 + sys_corr_101: 0.1469224512180638 + sys_corr_102: -0.7571030361199025 + sys_corr_103: -0.03643495205074423 + sys_corr_104: 0.7662167711735635 + sys_corr_105: 0.15098494362582865 + sys_corr_106: 0.18734784051888193 + sys_corr_107: 0.0001800236557865875 + sys_corr_108: -0.15378967307387414 + sys_corr_109: -0.14459139975836896 + sys_corr_110: 0.2175123946342723 + sys_corr_111: -0.15188392627660677 + sys_corr_112: -0.08874550804333387 + sys_corr_113: -0.18147969916861212 + sys_corr_114: -0.004728992734935319 + sys_corr_115: -0.20644990998414123 + sys_corr_116: 0.016930806090489782 + sys_corr_117: 0.004424643953934883 + sys_corr_118: -0.16914764803549232 + sys_corr_119: 0.00245451899821677 + sys_corr_120: -0.006623973735484945 + sys_corr_121: -0.008411093689096306 + sys_corr_122: -0.010481423031629487 + sys_corr_123: -0.005951893851170576 + sys_corr_124: 0.007815247112259987 + sys_corr_125: 0.020938473755956824 + sys_corr_126: 0.00021825841894272468 + sys_corr_127: -0.04027182552538181 + sys_corr_128: 0.002765732924134143 + sys_corr_129: 0.09736963527528944 + sys_corr_130: -0.0003385685188623833 + sys_corr_131: 0.014782328910097698 + sys_corr_132: -0.08149178499879128 stat: 0.0 luminosity: 340.09586600000006 -- sys_corr_1: 134.84774095936314 - sys_corr_2: 27.505047797995488 - sys_corr_3: -43.62625368099693 - sys_corr_4: -150.44477633279158 - sys_corr_5: -80.68000675012523 - sys_corr_6: 2.4920111316714233 - sys_corr_7: 172.73163386551306 - sys_corr_8: 149.54118231782596 - sys_corr_9: 237.13944843610034 - sys_corr_10: 50.29777211477357 - sys_corr_11: 261.15134424645214 - sys_corr_12: 395.2118041865216 - sys_corr_13: 273.3593701155078 - sys_corr_14: -60.32830601629154 - sys_corr_15: -77.31014909925324 - sys_corr_16: 41.5645636393922 - sys_corr_17: 50.038291737537854 - sys_corr_18: 27.574022986901984 - sys_corr_19: -45.03675653348811 - sys_corr_20: 11.581985163815311 - sys_corr_21: 15.301199240075892 - sys_corr_22: -178.4884844050271 - sys_corr_23: -41.09919492053308 - sys_corr_24: -160.5164950055545 - sys_corr_25: -78.8469340649421 - sys_corr_26: -138.09848331958455 - sys_corr_27: 18.855707077285047 - sys_corr_28: 23.41101634415895 - sys_corr_29: 15.16451609036509 - sys_corr_30: -63.57071527874413 - sys_corr_31: -14.902546876389929 - sys_corr_32: -0.2739723562069038 - sys_corr_33: -5.44656333609907 - sys_corr_34: 15.21778750383619 - sys_corr_35: -4.122556464564844 - sys_corr_36: -2.5374674957643926 - sys_corr_37: 0.08896279365083848 - sys_corr_38: -2.240171342378069 - sys_corr_39: -3.837887655587846 - sys_corr_40: -12.336140681727136 - sys_corr_41: -1.0348875018638257 - sys_corr_42: -11.942864023346802 - sys_corr_43: 13.9361521384556 - sys_corr_44: -35.18229506274518 - sys_corr_45: 3.881672536512822 - sys_corr_46: 34.182673063582754 - sys_corr_47: -27.717467402390625 - sys_corr_48: 35.335544830570356 - sys_corr_49: 7.623616419641125 - sys_corr_50: -32.84686392086431 - sys_corr_51: 63.69690277587849 - sys_corr_52: 47.83933619220544 - sys_corr_53: -16.315441042509768 - sys_corr_54: 29.719772085492284 - sys_corr_55: -20.89671192840515 - sys_corr_56: 72.20181434341372 - sys_corr_57: 37.331267439794516 - sys_corr_58: 27.544957764193292 - sys_corr_59: -69.8523003736453 - sys_corr_60: 7.47933681882258 - sys_corr_61: -5.840529288372336 - sys_corr_62: 0.8918469314199287 - sys_corr_63: -81.34089759918544 - sys_corr_64: -79.61430885303169 - sys_corr_65: 0.6469375834197629 - sys_corr_66: -3.920344684300711 - sys_corr_67: -69.94738670326538 - sys_corr_68: -16.08920806914487 - sys_corr_69: 2.9842095599901763 - sys_corr_70: 5.799723304779217 - sys_corr_71: 24.6976601626188 - sys_corr_72: -85.95314944291462 - sys_corr_73: 24.339505125661482 - sys_corr_74: 84.32469396411355 - sys_corr_75: -8.021869194184351 - sys_corr_76: -3.462770713156924 - sys_corr_77: -0.4544273981982463 - sys_corr_78: -2.788788895199972 - sys_corr_79: 25.78846956823027 - sys_corr_80: -1.438176560563205 - sys_corr_81: -14.577276493804455 - sys_corr_82: -1.5756656730423648 - sys_corr_83: 16.748062691006318 - sys_corr_84: 2.1096843665474965 - sys_corr_85: 2.8806207915211335 - sys_corr_86: -10.237107159380452 - sys_corr_87: -9.45780215205468 - sys_corr_88: 28.554668022845867 - sys_corr_89: -1.4875741749324654 - sys_corr_90: -2.780045733179763 - sys_corr_91: 0.3364607877711676 - sys_corr_92: -10.314755735016274 - sys_corr_93: -0.46581861181379813 - sys_corr_94: -2.5181640716168503 - sys_corr_95: 2.606805214645516 - sys_corr_96: -0.4411120473266701 - sys_corr_97: -2.0675536069418303 - sys_corr_98: 1.0996622779660339 - sys_corr_99: -1.3477924921286943 - sys_corr_100: -0.8842947490341476 - sys_corr_101: 0.6923834551328109 - sys_corr_102: -1.1715836186544775 - sys_corr_103: 0.280486653745943 - sys_corr_104: -3.101812300362973 - sys_corr_105: -0.7731427409091591 - sys_corr_106: 0.48908942185707377 - sys_corr_107: 0.16653903427008226 - sys_corr_108: 0.2937076362718559 - sys_corr_109: -0.1677018734976858 - sys_corr_110: -0.08800456098701537 - sys_corr_111: 0.07813188388009658 - sys_corr_112: -0.12207237781105436 - sys_corr_113: 0.10330273084528968 - sys_corr_114: -0.00012779851325582465 - sys_corr_115: 0.0226891017814742 - sys_corr_116: 0.018823392152723998 - sys_corr_117: 0.0224777084193467 - sys_corr_118: 0.03350788571199039 - sys_corr_119: 0.0017990369724580693 - sys_corr_120: -0.016801745217781147 - sys_corr_121: -0.00746665627151165 - sys_corr_122: 0.03391447751767733 - sys_corr_123: 0.06786627780926999 - sys_corr_124: -0.0026837054450340333 - sys_corr_125: -0.05125015421760096 - sys_corr_126: -0.014089173621528273 - sys_corr_127: -0.09547672087151289 - sys_corr_128: 0.4250773495316825 - sys_corr_129: 0.08269009107967112 - sys_corr_130: -0.006131814371200309 - sys_corr_131: 0.034899693115286345 - sys_corr_132: -0.05760782134073874 +- sys_corr_1: 134.8477409593635 + sys_corr_2: 27.50504779799537 + sys_corr_3: -43.62625368099684 + sys_corr_4: -150.44477633279257 + sys_corr_5: -80.68000675012435 + sys_corr_6: 2.49201113167109 + sys_corr_7: 172.73163386551366 + sys_corr_8: 149.5411823178339 + sys_corr_9: 237.13944843610219 + sys_corr_10: 50.297772114750515 + sys_corr_11: 261.15134424649096 + sys_corr_12: 395.21180418651244 + sys_corr_13: -273.35937011550425 + sys_corr_14: 60.32830601629174 + sys_corr_15: 77.3101490992533 + sys_corr_16: -41.564563639391054 + sys_corr_17: 50.03829173753738 + sys_corr_18: -27.574022986902225 + sys_corr_19: -45.03675653348669 + sys_corr_20: 11.581985163816293 + sys_corr_21: 15.301199240076752 + sys_corr_22: -178.48848440502692 + sys_corr_23: -41.09919492053341 + sys_corr_24: -160.5164950055557 + sys_corr_25: -78.84693406494286 + sys_corr_26: -138.0984833195839 + sys_corr_27: 18.8557070772884 + sys_corr_28: 23.411016344158277 + sys_corr_29: 15.164516090367059 + sys_corr_30: -63.570715278743045 + sys_corr_31: -14.902546876390314 + sys_corr_32: 0.2739723562076539 + sys_corr_33: 5.446563336102655 + sys_corr_34: 15.21778750383719 + sys_corr_35: -4.122556464565497 + sys_corr_36: -2.537467495763371 + sys_corr_37: -0.08896279365153756 + sys_corr_38: 2.2401713423782463 + sys_corr_39: 3.837887655588417 + sys_corr_40: 12.336140681727006 + sys_corr_41: -1.034887501861466 + sys_corr_42: 11.942864023345752 + sys_corr_43: 13.936152138461603 + sys_corr_44: -35.1822950627468 + sys_corr_45: -3.881672536526599 + sys_corr_46: -34.182673063581355 + sys_corr_47: 27.7174674023908 + sys_corr_48: -35.33554483056779 + sys_corr_49: -7.6236164196450735 + sys_corr_50: -32.84686392085652 + sys_corr_51: 63.69690277587465 + sys_corr_52: 47.83933619219879 + sys_corr_53: 16.315441042495873 + sys_corr_54: -29.719772085500356 + sys_corr_55: 20.896711928406035 + sys_corr_56: -72.2018143434102 + sys_corr_57: 37.331267439836815 + sys_corr_58: -27.544957764243843 + sys_corr_59: -69.852300373636 + sys_corr_60: -7.479336818838614 + sys_corr_61: 5.840529288371495 + sys_corr_62: -0.891846931411015 + sys_corr_63: -81.34089759916516 + sys_corr_64: -79.61430885305832 + sys_corr_65: 0.646937583336327 + sys_corr_66: 3.920344684300319 + sys_corr_67: -69.94738670326682 + sys_corr_68: 16.089208069144544 + sys_corr_69: 2.984209559986475 + sys_corr_70: -5.799723304782642 + sys_corr_71: 24.69766016261867 + sys_corr_72: 85.95314944290914 + sys_corr_73: -24.339505125650746 + sys_corr_74: 84.32469396412283 + sys_corr_75: -8.021869194177414 + sys_corr_76: -3.4627707131560963 + sys_corr_77: 0.45442739819804795 + sys_corr_78: 1.4381765605630144 + sys_corr_79: -2.788788895200711 + sys_corr_80: 25.7884695682304 + sys_corr_81: 14.577276493800557 + sys_corr_82: 1.5756656730442424 + sys_corr_83: 16.74806269100861 + sys_corr_84: -2.1096843665474156 + sys_corr_85: 2.880620791520713 + sys_corr_86: 10.237107159402177 + sys_corr_87: 9.457802152052755 + sys_corr_88: 28.55466802282869 + sys_corr_89: -2.7800457331798363 + sys_corr_90: -1.4875741749324944 + sys_corr_91: 0.33646078777103566 + sys_corr_92: 10.314755735010648 + sys_corr_93: -0.46581861181363254 + sys_corr_94: -2.5181640716170635 + sys_corr_95: 2.606805214645073 + sys_corr_96: 0.4411120473265671 + sys_corr_97: -2.0675536069416696 + sys_corr_98: -1.099662277965951 + sys_corr_99: -1.347792492128597 + sys_corr_100: 0.692383455132964 + sys_corr_101: 1.1715836186547879 + sys_corr_102: 0.2804866537483202 + sys_corr_103: 3.101812300362567 + sys_corr_104: 0.7731427409081012 + sys_corr_105: 0.8842947490343611 + sys_corr_106: 0.4890894218571564 + sys_corr_107: 0.2937076362718829 + sys_corr_108: -0.16770187349765683 + sys_corr_109: 0.08800456098700009 + sys_corr_110: -0.16653903426985103 + sys_corr_111: -0.0781318838801483 + sys_corr_112: -0.12207237781106639 + sys_corr_113: -0.1033027308452877 + sys_corr_114: -0.00012779851325521354 + sys_corr_115: 0.022689101781492044 + sys_corr_116: -0.018823392152730118 + sys_corr_117: -0.022477708419346012 + sys_corr_118: -0.03350788571198348 + sys_corr_119: -0.0017990369724579687 + sys_corr_120: 0.01680174521779374 + sys_corr_121: 0.007466656271514235 + sys_corr_122: 0.06786627780927622 + sys_corr_123: 0.033914477517679766 + sys_corr_124: -0.0026837054450359454 + sys_corr_125: -0.051250154217600076 + sys_corr_126: 0.014089173621528728 + sys_corr_127: -0.09547672087163396 + sys_corr_128: 0.42507734953170734 + sys_corr_129: 0.08269009107967418 + sys_corr_130: -0.006131814371201645 + sys_corr_131: -0.034899693115305705 + sys_corr_132: -0.05760782134074944 stat: 0.0 luminosity: 334.50857 -- sys_corr_1: 119.32870026662029 - sys_corr_2: 49.27420729710476 - sys_corr_3: -48.53230632086927 - sys_corr_4: -169.8499957224969 - sys_corr_5: -52.065774013776014 - sys_corr_6: 22.8843838649217 - sys_corr_7: 110.76877537972732 - sys_corr_8: 122.87232404116496 - sys_corr_9: 216.8175861633101 - sys_corr_10: 47.896413501901655 - sys_corr_11: 220.59178654543393 - sys_corr_12: 329.943008548988 - sys_corr_13: 238.77501379818654 - sys_corr_14: -44.161106116167076 - sys_corr_15: -63.2853172451207 - sys_corr_16: 45.34540610823842 - sys_corr_17: 48.29007266016301 - sys_corr_18: 22.94692936648361 - sys_corr_19: -45.6311648175358 - sys_corr_20: -5.860257653608705 - sys_corr_21: 13.916176853931894 - sys_corr_22: -286.3825936541296 - sys_corr_23: -56.263665018054326 - sys_corr_24: -113.59243036802839 - sys_corr_25: -92.93994665407327 - sys_corr_26: -162.1485131951578 - sys_corr_27: 37.98073867453464 - sys_corr_28: 12.12584318586791 - sys_corr_29: 16.585661007951142 - sys_corr_30: -84.49469764839552 - sys_corr_31: 24.906992310206668 - sys_corr_32: 8.315494323557052 - sys_corr_33: -11.251497245872702 - sys_corr_34: 18.56551069554419 - sys_corr_35: -5.643725971412283 - sys_corr_36: 0.2934005095702337 - sys_corr_37: 0.09553595778642274 - sys_corr_38: -4.137420424503573 - sys_corr_39: -12.539688016171185 - sys_corr_40: 12.135747572075838 - sys_corr_41: 31.31802584580546 - sys_corr_42: -24.873665192884523 - sys_corr_43: -23.536906458349208 - sys_corr_44: -33.30014165659053 - sys_corr_45: -11.167272050290066 - sys_corr_46: -20.91154005357689 - sys_corr_47: -9.983242778161273 - sys_corr_48: 20.53592528346505 - sys_corr_49: -16.685132151764503 - sys_corr_50: 8.035837571073653 - sys_corr_51: 20.639266947761474 - sys_corr_52: -34.23366187614966 - sys_corr_53: -52.00632201923107 - sys_corr_54: -74.32533379403307 - sys_corr_55: -78.65290974694219 - sys_corr_56: -11.816483051878267 - sys_corr_57: -56.309081472976146 - sys_corr_58: 47.70857627049 - sys_corr_59: -19.445778167612275 - sys_corr_60: -30.686718719424668 - sys_corr_61: 10.648441072450648 - sys_corr_62: 36.94489023554048 - sys_corr_63: 26.25549069555957 - sys_corr_64: 21.01467065858803 - sys_corr_65: 13.11911141967946 - sys_corr_66: 31.962008844653038 - sys_corr_67: 99.19228391125213 - sys_corr_68: 29.694116931220783 - sys_corr_69: -22.531217502937853 - sys_corr_70: -12.803798585761985 - sys_corr_71: 33.62822446235124 - sys_corr_72: 117.79097080442958 - sys_corr_73: 14.255245787438977 - sys_corr_74: 20.928003471316593 - sys_corr_75: -11.619968423530938 - sys_corr_76: -11.868825047614298 - sys_corr_77: -0.16253170598552114 - sys_corr_78: -8.902460831583971 - sys_corr_79: 12.306704999880916 - sys_corr_80: 3.5892427921404706 - sys_corr_81: -4.816370812467672 - sys_corr_82: -17.059704969198545 - sys_corr_83: 4.153182729858562 - sys_corr_84: 0.5826558875818836 - sys_corr_85: 3.959373094245737 - sys_corr_86: -16.04583313968229 - sys_corr_87: -15.673180741714159 - sys_corr_88: 30.06063408859504 - sys_corr_89: -4.515912900036658 - sys_corr_90: -2.7064375684486923 - sys_corr_91: 2.7609564417426427 - sys_corr_92: 14.218327984682306 - sys_corr_93: -0.0049171199890899915 - sys_corr_94: 0.4389365578501927 - sys_corr_95: 0.8115249233144134 - sys_corr_96: 0.02995904206443067 - sys_corr_97: -1.0542224944833878 - sys_corr_98: 0.6130275184906828 - sys_corr_99: -0.7813317804719407 - sys_corr_100: -0.8300121047054282 - sys_corr_101: 0.6884611833510447 - sys_corr_102: -1.2016077314702596 - sys_corr_103: 1.1197420008881198 - sys_corr_104: -1.9440996622145772 - sys_corr_105: -0.38802242598942455 - sys_corr_106: 0.570312351734085 - sys_corr_107: -0.10534686850688259 - sys_corr_108: 0.7239555250045636 - sys_corr_109: -0.30908804107990434 - sys_corr_110: 0.21999653923573717 - sys_corr_111: 0.060364197202460106 - sys_corr_112: -0.13343029260917574 - sys_corr_113: 0.07911968228670231 - sys_corr_114: 0.0007944869627806629 - sys_corr_115: 0.034766427518850444 - sys_corr_116: 0.023824023801627604 - sys_corr_117: 0.030918546663450456 - sys_corr_118: -0.1124239245819101 - sys_corr_119: -0.002529594661951594 - sys_corr_120: -0.037165163302269766 - sys_corr_121: -0.00748517749674017 - sys_corr_122: 0.06955074162132215 - sys_corr_123: 0.12350892120429664 - sys_corr_124: -0.028272319966378443 - sys_corr_125: -0.09565682235914641 - sys_corr_126: -0.03349163299831058 - sys_corr_127: -0.31818677294393194 - sys_corr_128: 0.21816136854468138 - sys_corr_129: -0.07962267585235068 - sys_corr_130: -0.005390221955096852 - sys_corr_131: 0.04239945449366987 - sys_corr_132: -0.007026652174436851 +- sys_corr_1: 119.3287002666203 + sys_corr_2: 49.27420729710467 + sys_corr_3: -48.5323063208692 + sys_corr_4: -169.84999572249794 + sys_corr_5: -52.06577401377491 + sys_corr_6: 22.884383864921638 + sys_corr_7: 110.76877537972845 + sys_corr_8: 122.87232404117219 + sys_corr_9: 216.81758616331138 + sys_corr_10: 47.89641350188202 + sys_corr_11: 220.59178654546704 + sys_corr_12: 329.94300854898125 + sys_corr_13: -238.77501379818315 + sys_corr_14: 44.1611061161673 + sys_corr_15: 63.28531724512091 + sys_corr_16: -45.34540610823734 + sys_corr_17: 48.29007266016267 + sys_corr_18: -22.946929366483896 + sys_corr_19: -45.631164817533914 + sys_corr_20: -5.860257653607621 + sys_corr_21: 13.916176853933232 + sys_corr_22: -286.382593654129 + sys_corr_23: -56.26366501805546 + sys_corr_24: -113.59243036802918 + sys_corr_25: -92.93994665407492 + sys_corr_26: -162.14851319515802 + sys_corr_27: 37.98073867453795 + sys_corr_28: 12.12584318586726 + sys_corr_29: 16.585661007953295 + sys_corr_30: -84.4946976483948 + sys_corr_31: 24.906992310206018 + sys_corr_32: -8.315494323557335 + sys_corr_33: 11.251497245875646 + sys_corr_34: 18.565510695544457 + sys_corr_35: -5.6437259714129695 + sys_corr_36: 0.2934005095700108 + sys_corr_37: -0.09553595778757279 + sys_corr_38: 4.137420424503938 + sys_corr_39: 12.539688016173935 + sys_corr_40: -12.135747572080014 + sys_corr_41: 31.318025845805323 + sys_corr_42: 24.87366519289336 + sys_corr_43: -23.536906458339885 + sys_corr_44: -33.300141656593105 + sys_corr_45: 11.167272050305492 + sys_corr_46: 20.911540053572153 + sys_corr_47: 9.983242778157553 + sys_corr_48: -20.535925283465158 + sys_corr_49: 16.685132151761906 + sys_corr_50: 8.035837571076755 + sys_corr_51: 20.639266947761705 + sys_corr_52: -34.233661876152404 + sys_corr_53: 52.006322019251684 + sys_corr_54: 74.32533379402128 + sys_corr_55: 78.65290974692772 + sys_corr_56: 11.816483051870017 + sys_corr_57: -56.309081472994094 + sys_corr_58: -47.70857627050797 + sys_corr_59: -19.445778167563866 + sys_corr_60: 30.68671871942097 + sys_corr_61: -10.648441072459248 + sys_corr_62: -36.944890235540726 + sys_corr_63: 26.255490695554446 + sys_corr_64: 21.014670658612896 + sys_corr_65: 13.11911141969918 + sys_corr_66: -31.96200884464724 + sys_corr_67: 99.19228391127672 + sys_corr_68: -29.69411693126087 + sys_corr_69: -22.53121750292153 + sys_corr_70: 12.803798585752121 + sys_corr_71: 33.628224462361324 + sys_corr_72: -117.79097080442203 + sys_corr_73: -14.255245787438314 + sys_corr_74: 20.928003471312046 + sys_corr_75: -11.619968423521984 + sys_corr_76: -11.868825047618355 + sys_corr_77: 0.1625317059807851 + sys_corr_78: -3.5892427921410066 + sys_corr_79: -8.902460831584476 + sys_corr_80: 12.306704999881287 + sys_corr_81: 4.816370812466818 + sys_corr_82: 17.059704969197725 + sys_corr_83: 4.1531827298586155 + sys_corr_84: -0.5826558875820561 + sys_corr_85: 3.9593730942458594 + sys_corr_86: 16.045833139734185 + sys_corr_87: 15.673180741708947 + sys_corr_88: 30.0606340885721 + sys_corr_89: -2.7064375684485715 + sys_corr_90: -4.515912900036289 + sys_corr_91: 2.7609564417427572 + sys_corr_92: -14.218327984687631 + sys_corr_93: -0.004917119989268491 + sys_corr_94: 0.43893655784925595 + sys_corr_95: 0.811524923315231 + sys_corr_96: -0.029959042064363003 + sys_corr_97: -1.0542224944835277 + sys_corr_98: -0.6130275184906612 + sys_corr_99: -0.7813317804719698 + sys_corr_100: 0.6884611833511316 + sys_corr_101: 1.2016077314702096 + sys_corr_102: 1.1197420008897558 + sys_corr_103: 1.9440996622142706 + sys_corr_104: 0.388022425988348 + sys_corr_105: 0.8300121047056181 + sys_corr_106: 0.5703123517341133 + sys_corr_107: 0.723955525004582 + sys_corr_108: -0.3090880410798912 + sys_corr_109: -0.21999653923574808 + sys_corr_110: 0.10534686850700208 + sys_corr_111: -0.06036419720247946 + sys_corr_112: -0.13343029260918865 + sys_corr_113: -0.07911968228671287 + sys_corr_114: 0.0007944869627804748 + sys_corr_115: 0.03476642751884149 + sys_corr_116: -0.023824023801633763 + sys_corr_117: -0.030918546663457776 + sys_corr_118: 0.11242392458191207 + sys_corr_119: 0.0025295946619505985 + sys_corr_120: 0.03716516330227149 + sys_corr_121: 0.007485177496743878 + sys_corr_122: 0.12350892120429495 + sys_corr_123: 0.0695507416213043 + sys_corr_124: -0.028272319966378464 + sys_corr_125: -0.09565682235915925 + sys_corr_126: 0.033491632998306056 + sys_corr_127: -0.318186772943935 + sys_corr_128: 0.21816136854468016 + sys_corr_129: -0.07962267585235595 + sys_corr_130: -0.005390221955106489 + sys_corr_131: -0.04239945449367669 + sys_corr_132: -0.007026652174442591 stat: 0.0 luminosity: 309.41149800000005 -- sys_corr_1: 115.3639644797358 - sys_corr_2: 75.15621705833495 - sys_corr_3: -34.64783158883614 - sys_corr_4: -165.63207924577964 - sys_corr_5: -22.92201647917347 - sys_corr_6: 51.72597845389267 - sys_corr_7: 50.331783787025444 - sys_corr_8: 86.34299183944397 - sys_corr_9: 162.92424688517843 - sys_corr_10: 41.704293496879785 - sys_corr_11: 165.2939661096397 - sys_corr_12: 251.1576379329164 - sys_corr_13: 192.53573199148175 - sys_corr_14: -22.705638919062288 - sys_corr_15: -53.76495495904971 - sys_corr_16: 46.67229185379984 - sys_corr_17: 45.6758214782482 - sys_corr_18: 17.080850818384285 - sys_corr_19: -43.65669275598872 - sys_corr_20: -13.14214148260452 - sys_corr_21: 11.151453678325003 - sys_corr_22: -355.4110339122175 - sys_corr_23: -69.63071994537805 - sys_corr_24: -5.287981676129118 - sys_corr_25: -85.0352220963778 - sys_corr_26: -166.0663494409982 - sys_corr_27: 94.2256027240099 - sys_corr_28: -26.75379930094316 - sys_corr_29: 19.837856474085346 - sys_corr_30: 0.6694994891067152 - sys_corr_31: 63.217834000084814 - sys_corr_32: 2.106628607223249 - sys_corr_33: -4.354558871118048 - sys_corr_34: -2.343957160435314 - sys_corr_35: -4.562441972093199 - sys_corr_36: -4.989641903826678 - sys_corr_37: 8.994246400826697 - sys_corr_38: 7.058088286701311 - sys_corr_39: 1.6341263080113568 - sys_corr_40: 8.21432481867357 - sys_corr_41: 12.590477091297153 - sys_corr_42: 10.945258641391648 - sys_corr_43: 5.5741387985828235 - sys_corr_44: -11.383426948799519 - sys_corr_45: 11.61893117568742 - sys_corr_46: 2.6701595725723797 - sys_corr_47: 23.367689197426074 - sys_corr_48: -15.734629546202372 - sys_corr_49: 11.234027843760684 - sys_corr_50: -8.520518354812156 - sys_corr_51: -28.08340882403391 - sys_corr_52: -1.60548185928991 - sys_corr_53: 38.41979956994206 - sys_corr_54: 6.580577617896038 - sys_corr_55: -1.4661511510692193 - sys_corr_56: -16.86742294326001 - sys_corr_57: -18.69560987280995 - sys_corr_58: -28.035296256025756 - sys_corr_59: 56.313164951431155 - sys_corr_60: 26.32238739179024 - sys_corr_61: 12.280262644168914 - sys_corr_62: -43.67165702711981 - sys_corr_63: 15.496498718897193 - sys_corr_64: -18.703054783421116 - sys_corr_65: -11.464575345301776 - sys_corr_66: 61.086700954314715 - sys_corr_67: -62.87917535110666 - sys_corr_68: 9.39313716531785 - sys_corr_69: -3.5752492162137197 - sys_corr_70: -1.275101945027036 - sys_corr_71: 8.324996173550344 - sys_corr_72: -29.698610604425486 - sys_corr_73: -9.828863756729463 - sys_corr_74: -129.33722339032605 - sys_corr_75: 51.060247819388536 - sys_corr_76: 66.06418943943437 - sys_corr_77: -5.500402686620653 - sys_corr_78: -6.101734927664303 - sys_corr_79: 19.18123117076107 - sys_corr_80: 9.948322744197965 - sys_corr_81: -18.747292815875205 - sys_corr_82: 11.432470887029826 - sys_corr_83: 1.2203268977784894 - sys_corr_84: 0.3769650809998446 - sys_corr_85: -3.2819773065862723 - sys_corr_86: -63.7255144125307 - sys_corr_87: 8.802538456792433 - sys_corr_88: 15.913632175654213 - sys_corr_89: 2.786264134127564 - sys_corr_90: 4.047759780099883 - sys_corr_91: -3.1118643594166184 - sys_corr_92: 55.5767541348401 - sys_corr_93: 0.1662497037559501 - sys_corr_94: 0.16442745223603783 - sys_corr_95: -1.9813559680399582 - sys_corr_96: 0.046377471663487775 - sys_corr_97: -0.13066330732899337 - sys_corr_98: 0.2303832266463073 - sys_corr_99: -0.12300918417325815 - sys_corr_100: -0.13528653412782948 - sys_corr_101: 0.1744441105240264 - sys_corr_102: -0.5810532701444433 - sys_corr_103: 1.1076479096492862 - sys_corr_104: -0.4621864124624744 - sys_corr_105: 0.3304931937986553 - sys_corr_106: 0.36093602706198213 - sys_corr_107: 0.08220358260099098 - sys_corr_108: 0.0032679615109164834 - sys_corr_109: 0.08643297878684057 - sys_corr_110: 0.1694113000605972 - sys_corr_111: -0.005162631259357796 - sys_corr_112: 0.01958095865496796 - sys_corr_113: -0.12615727365936244 - sys_corr_114: -0.0012893819949271502 - sys_corr_115: 0.04717755897870417 - sys_corr_116: 0.038237292471253605 - sys_corr_117: 0.02339737612251053 - sys_corr_118: 0.07726202172114482 - sys_corr_119: -0.001122387272480809 - sys_corr_120: -0.015021713278827764 - sys_corr_121: 0.00437789411291251 - sys_corr_122: 0.010204451235880358 - sys_corr_123: 0.01432323673694393 - sys_corr_124: -0.03736310778630682 - sys_corr_125: -0.026872129060636265 - sys_corr_126: 0.00582124098815795 - sys_corr_127: -0.028168684695321206 - sys_corr_128: 0.02162339759497456 - sys_corr_129: 0.07850121562708175 - sys_corr_130: -0.0018039425959054773 - sys_corr_131: 0.021914886185918893 - sys_corr_132: 0.05505207748059341 +- sys_corr_1: 115.36396447973611 + sys_corr_2: 75.15621705833482 + sys_corr_3: -34.647831588836155 + sys_corr_4: -165.63207924578055 + sys_corr_5: -22.922016479172285 + sys_corr_6: 51.7259784538925 + sys_corr_7: 50.331783787026815 + sys_corr_8: 86.34299183944864 + sys_corr_9: 162.9242468851792 + sys_corr_10: 41.704293496864835 + sys_corr_11: 165.2939661096646 + sys_corr_12: 251.15763793291052 + sys_corr_13: -192.535731991479 + sys_corr_14: 22.705638919062697 + sys_corr_15: 53.764954959049604 + sys_corr_16: -46.67229185379929 + sys_corr_17: 45.67582147824776 + sys_corr_18: -17.08085081838458 + sys_corr_19: -43.656692755986455 + sys_corr_20: -13.142141482602918 + sys_corr_21: 11.15145367832714 + sys_corr_22: -355.41103391221617 + sys_corr_23: -69.63071994538016 + sys_corr_24: -5.287981676129448 + sys_corr_25: -85.0352220963798 + sys_corr_26: -166.0663494410016 + sys_corr_27: 94.22560272401425 + sys_corr_28: -26.75379930094499 + sys_corr_29: 19.837856474085324 + sys_corr_30: 0.6694994891071467 + sys_corr_31: 63.21783400008478 + sys_corr_32: -2.106628607224707 + sys_corr_33: 4.35455887111525 + sys_corr_34: -2.3439571604359566 + sys_corr_35: -4.56244197209312 + sys_corr_36: -4.989641903826293 + sys_corr_37: -8.994246400828137 + sys_corr_38: -7.0580882866998715 + sys_corr_39: -1.634126308012793 + sys_corr_40: -8.2143248186742 + sys_corr_41: 12.590477091296652 + sys_corr_42: -10.945258641389922 + sys_corr_43: 5.5741387985754445 + sys_corr_44: -11.383426948795686 + sys_corr_45: -11.618931175690305 + sys_corr_46: -2.6701595725671394 + sys_corr_47: -23.36768919742924 + sys_corr_48: 15.734629546202225 + sys_corr_49: -11.234027843759792 + sys_corr_50: -8.520518354814067 + sys_corr_51: -28.083408824031846 + sys_corr_52: -1.6054818592770284 + sys_corr_53: -38.41979956994128 + sys_corr_54: -6.580577617896104 + sys_corr_55: 1.4661511510678709 + sys_corr_56: 16.86742294326546 + sys_corr_57: -18.69560987281626 + sys_corr_58: 28.035296256065294 + sys_corr_59: 56.31316495140689 + sys_corr_60: -26.322387391774498 + sys_corr_61: -12.280262644163214 + sys_corr_62: 43.67165702712451 + sys_corr_63: 15.496498718914323 + sys_corr_64: -18.703054783431625 + sys_corr_65: -11.464575345317721 + sys_corr_66: -61.086700954320065 + sys_corr_67: -62.87917535110543 + sys_corr_68: -9.393137165316729 + sys_corr_69: -3.5752492162162746 + sys_corr_70: 1.2751019450259267 + sys_corr_71: 8.324996173545768 + sys_corr_72: 29.698610604425653 + sys_corr_73: 9.828863756721045 + sys_corr_74: -129.3372233903245 + sys_corr_75: 51.060247819280875 + sys_corr_76: 66.06418943945499 + sys_corr_77: 5.500402686624968 + sys_corr_78: -9.948322744198157 + sys_corr_79: -6.10173492766465 + sys_corr_80: 19.1812311707607 + sys_corr_81: 18.74729281587632 + sys_corr_82: -11.432470887026305 + sys_corr_83: 1.2203268977829917 + sys_corr_84: -0.3769650809991792 + sys_corr_85: -3.281977306585966 + sys_corr_86: 63.725514412632435 + sys_corr_87: -8.802538456789902 + sys_corr_88: 15.913632175600316 + sys_corr_89: 4.047759780100242 + sys_corr_90: 2.786264134127494 + sys_corr_91: -3.1118643594165336 + sys_corr_92: -55.57675413485891 + sys_corr_93: 0.1662497037560402 + sys_corr_94: 0.16442745223644584 + sys_corr_95: -1.9813559680401343 + sys_corr_96: -0.046377471663482446 + sys_corr_97: -0.13066330732891054 + sys_corr_98: -0.23038322664642907 + sys_corr_99: -0.1230091841732553 + sys_corr_100: 0.17444411052386616 + sys_corr_101: 0.5810532701438623 + sys_corr_102: 1.1076479096485987 + sys_corr_103: 0.4621864124625004 + sys_corr_104: -0.3304931937988663 + sys_corr_105: 0.13528653412774588 + sys_corr_106: 0.36093602706180716 + sys_corr_107: 0.0032679615108743214 + sys_corr_108: 0.08643297878682682 + sys_corr_109: -0.16941130006060462 + sys_corr_110: -0.08220358260101544 + sys_corr_111: 0.005162631259373692 + sys_corr_112: 0.019580958654971267 + sys_corr_113: 0.12615727365936702 + sys_corr_114: -0.001289381994927622 + sys_corr_115: 0.04717755897870177 + sys_corr_116: -0.0382372924712472 + sys_corr_117: -0.02339737612251772 + sys_corr_118: -0.07726202172113542 + sys_corr_119: 0.0011223872724769554 + sys_corr_120: 0.015021713278831703 + sys_corr_121: -0.004377894112913495 + sys_corr_122: 0.014323236736953519 + sys_corr_123: 0.010204451235887355 + sys_corr_124: -0.0373631077863167 + sys_corr_125: -0.02687212906065294 + sys_corr_126: -0.005821240988157949 + sys_corr_127: -0.028168684695312463 + sys_corr_128: 0.021623397594965406 + sys_corr_129: 0.0785012156270794 + sys_corr_130: -0.0018039425959020814 + sys_corr_131: -0.02191488618591768 + sys_corr_132: 0.055052077480588754 stat: 0.0 luminosity: 277.542496 -- sys_corr_1: 101.19215420243317 - sys_corr_2: 86.53382533790885 - sys_corr_3: -28.82489139029541 - sys_corr_4: -142.2528901479227 - sys_corr_5: -5.7756071427792035 +- sys_corr_1: 101.19215420243312 + sys_corr_2: 86.53382533790875 + sys_corr_3: -28.824891390295438 + sys_corr_4: -142.25289014792364 + sys_corr_5: -5.775607142778228 sys_corr_6: 68.5990626199649 - sys_corr_7: 0.42038823039824375 - sys_corr_8: 53.54817806870057 - sys_corr_9: 102.42271204590746 - sys_corr_10: 34.096149297568324 - sys_corr_11: 103.92719114902346 - sys_corr_12: 149.06374292189096 - sys_corr_13: 128.67399573416034 - sys_corr_14: -5.811520537916335 - sys_corr_15: -32.47813841595094 - sys_corr_16: 40.68628895664039 - sys_corr_17: 29.19019873269328 - sys_corr_18: 13.169132018457015 - sys_corr_19: -35.90789216959492 - sys_corr_20: -31.83485053742321 - sys_corr_21: 0.3023110727763882 - sys_corr_22: -336.9676211205069 - sys_corr_23: -57.353118779617276 - sys_corr_24: 113.04245209013884 - sys_corr_25: -66.00555485869998 - sys_corr_26: -133.10872355919804 - sys_corr_27: 133.94162902519224 - sys_corr_28: -63.4724101079577 - sys_corr_29: 4.536107618083488 - sys_corr_30: 103.80309535023476 - sys_corr_31: 84.84150061152496 - sys_corr_32: -0.6599337191130288 - sys_corr_33: 1.0621782929431243 - sys_corr_34: -18.570353690060237 - sys_corr_35: -1.8925192761499308 - sys_corr_36: -10.717886423233614 - sys_corr_37: 1.4884104766432686 - sys_corr_38: -1.603496186908199 - sys_corr_39: 4.329204951202307 - sys_corr_40: -0.3814574853855462 - sys_corr_41: -8.115893433233156 - sys_corr_42: 1.3661448378044072 - sys_corr_43: 5.935948273506568 - sys_corr_44: 16.196955985232446 - sys_corr_45: -1.0594813132023309 - sys_corr_46: 7.528301813332129 - sys_corr_47: 14.779686666367832 - sys_corr_48: -6.99685645142435 - sys_corr_49: 20.143287117184133 - sys_corr_50: -3.724482259213936 - sys_corr_51: -5.68693253507334 - sys_corr_52: 11.199420594791771 - sys_corr_53: -12.453281016392449 - sys_corr_54: 0.8238925868793328 - sys_corr_55: -41.04321628208632 - sys_corr_56: 26.781237920911707 - sys_corr_57: 24.614034636258953 - sys_corr_58: 25.4439971281774 - sys_corr_59: -36.10899656964979 - sys_corr_60: -33.74448184838426 - sys_corr_61: -16.49051056383454 - sys_corr_62: 72.04516983135682 - sys_corr_63: 38.87004738280782 - sys_corr_64: 7.198295064857102 - sys_corr_65: -0.4486195425369216 - sys_corr_66: -150.62612790742057 - sys_corr_67: 48.783072369416416 - sys_corr_68: 4.4212779398506585 - sys_corr_69: 26.677378169073727 - sys_corr_70: 20.70559999161304 - sys_corr_71: -53.88245714101493 - sys_corr_72: -55.70217385851019 - sys_corr_73: -12.099453917677868 - sys_corr_74: -47.7551099224398 - sys_corr_75: -7.276365495370654 - sys_corr_76: -5.8164201730970175 - sys_corr_77: -2.8581041866856878 - sys_corr_78: 5.536806943708908 - sys_corr_79: -15.12780596062244 - sys_corr_80: -1.9121859770278964 - sys_corr_81: 17.885384425992296 - sys_corr_82: 10.357461147836064 - sys_corr_83: -16.987710875776685 - sys_corr_84: 4.345205537509184 - sys_corr_85: -1.6745167846206481 - sys_corr_86: 26.552676949929097 - sys_corr_87: 20.769852577100455 - sys_corr_88: -45.984533388968835 - sys_corr_89: 6.891221610372412 - sys_corr_90: 4.5351262957662675 - sys_corr_91: 3.4980780981133783 - sys_corr_92: -20.485960557542285 - sys_corr_93: 1.482688765526334 - sys_corr_94: 7.19079944154244 - sys_corr_95: -6.208934343237189 - sys_corr_96: 0.9570388185250956 - sys_corr_97: 1.4694901517247485 - sys_corr_98: -0.25646474332217073 - sys_corr_99: 0.22913044709947908 - sys_corr_100: -0.06187338516705611 - sys_corr_101: 0.014155149884211581 - sys_corr_102: -0.6568619630087377 - sys_corr_103: 0.9023779584682192 - sys_corr_104: 1.628677908951831 - sys_corr_105: 0.27586775703293426 - sys_corr_106: -0.2031315469988075 - sys_corr_107: -0.42310727566054374 - sys_corr_108: -0.20689726715585935 - sys_corr_109: 0.11536036455973507 - sys_corr_110: 0.031072925535434774 - sys_corr_111: -0.2546120207598213 - sys_corr_112: 0.07151054313381994 - sys_corr_113: -0.08165918619456738 - sys_corr_114: 0.00024061233063248837 - sys_corr_115: -0.04136347046004384 - sys_corr_116: -0.028806290332847328 - sys_corr_117: -0.01714763892311417 - sys_corr_118: 0.10679651198037057 - sys_corr_119: 0.01874710822049269 - sys_corr_120: 0.021552616908671964 - sys_corr_121: 0.018405393642131705 - sys_corr_122: -0.036599707738891596 - sys_corr_123: -0.05114686965830397 - sys_corr_124: 0.02210180095451311 - sys_corr_125: 0.04034870155859942 - sys_corr_126: 0.022637524812517414 - sys_corr_127: -0.026581559754840296 - sys_corr_128: -0.08406386079422457 - sys_corr_129: -0.041292952233555086 - sys_corr_130: 0.002262239529012068 - sys_corr_131: -0.014401147523363916 - sys_corr_132: 0.07845963965592019 + sys_corr_7: 0.4203882303992738 + sys_corr_8: 53.54817806870284 + sys_corr_9: 102.42271204590865 + sys_corr_10: 34.09614929755778 + sys_corr_11: 103.92719114903927 + sys_corr_12: 149.06374292188698 + sys_corr_13: -128.6739957341581 + sys_corr_14: 5.811520537916893 + sys_corr_15: 32.478138415951406 + sys_corr_16: -40.68628895663989 + sys_corr_17: 29.190198732693172 + sys_corr_18: -13.16913201845689 + sys_corr_19: -35.90789216959256 + sys_corr_20: -31.834850537421104 + sys_corr_21: 0.3023110727794033 + sys_corr_22: -336.9676211205067 + sys_corr_23: -57.353118779619784 + sys_corr_24: 113.0424520901392 + sys_corr_25: -66.00555485870221 + sys_corr_26: -133.10872355920458 + sys_corr_27: 133.94162902519616 + sys_corr_28: -63.47241010795913 + sys_corr_29: 4.536107618081151 + sys_corr_30: 103.80309535023534 + sys_corr_31: 84.841500611526 + sys_corr_32: 0.6599337191129246 + sys_corr_33: -1.0621782929478698 + sys_corr_34: -18.570353690060948 + sys_corr_35: -1.892519276148702 + sys_corr_36: -10.717886423233542 + sys_corr_37: -1.488410476641955 + sys_corr_38: 1.6034961869079503 + sys_corr_39: -4.329204951202073 + sys_corr_40: 0.38145748538729823 + sys_corr_41: -8.1158934332335 + sys_corr_42: -1.3661448378073515 + sys_corr_43: 5.935948273508002 + sys_corr_44: 16.19695598523555 + sys_corr_45: 1.0594813131965948 + sys_corr_46: -7.528301813332508 + sys_corr_47: -14.779686666366217 + sys_corr_48: 6.996856451425543 + sys_corr_49: -20.143287117182773 + sys_corr_50: -3.72448225921429 + sys_corr_51: -5.686932535074044 + sys_corr_52: 11.199420594791528 + sys_corr_53: 12.45328101639301 + sys_corr_54: -0.8238925868893014 + sys_corr_55: 41.04321628208659 + sys_corr_56: -26.781237920910236 + sys_corr_57: 24.614034636268926 + sys_corr_58: -25.443997128202408 + sys_corr_59: -36.108996569632346 + sys_corr_60: 33.744481848372445 + sys_corr_61: 16.490510563827712 + sys_corr_62: -72.04516983135741 + sys_corr_63: 38.87004738280022 + sys_corr_64: 7.19829506486573 + sys_corr_65: -0.44861954254602165 + sys_corr_66: 150.62612790741753 + sys_corr_67: 48.7830723694091 + sys_corr_68: -4.421277939806196 + sys_corr_69: 26.677378169063495 + sys_corr_70: -20.70559999161095 + sys_corr_71: -53.882457141015514 + sys_corr_72: 55.702173858508736 + sys_corr_73: 12.099453917669178 + sys_corr_74: -47.75510992243875 + sys_corr_75: -7.276365495352729 + sys_corr_76: -5.816420173103998 + sys_corr_77: 2.8581041866857615 + sys_corr_78: 1.912185977028187 + sys_corr_79: 5.536806943710226 + sys_corr_80: -15.127805960622883 + sys_corr_81: -17.88538442598944 + sys_corr_82: -10.35746114783771 + sys_corr_83: -16.987710875778873 + sys_corr_84: -4.345205537508421 + sys_corr_85: -1.6745167846209401 + sys_corr_86: -26.55267695001459 + sys_corr_87: -20.769852577096852 + sys_corr_88: -45.98453338894022 + sys_corr_89: 4.535126295765949 + sys_corr_90: 6.891221610372436 + sys_corr_91: 3.498078098113546 + sys_corr_92: 20.485960557551753 + sys_corr_93: 1.4826887655260674 + sys_corr_94: 7.19079944154353 + sys_corr_95: -6.208934343236558 + sys_corr_96: -0.9570388185252292 + sys_corr_97: 1.469490151724618 + sys_corr_98: 0.2564647433220349 + sys_corr_99: 0.2291304470993635 + sys_corr_100: 0.014155149884020819 + sys_corr_101: 0.6568619630081227 + sys_corr_102: 0.9023779584670333 + sys_corr_103: -1.6286779089517023 + sys_corr_104: -0.2758677570328053 + sys_corr_105: 0.06187338516681529 + sys_corr_106: -0.2031315469990393 + sys_corr_107: -0.20689726715592566 + sys_corr_108: 0.11536036455969173 + sys_corr_109: -0.03107292553541241 + sys_corr_110: 0.42310727566047346 + sys_corr_111: 0.25461202075984707 + sys_corr_112: 0.07151054313382971 + sys_corr_113: 0.08165918619459506 + sys_corr_114: 0.00024061233063194705 + sys_corr_115: -0.041363470460062335 + sys_corr_116: 0.028806290332849142 + sys_corr_117: 0.017147638923113225 + sys_corr_118: -0.10679651198038037 + sys_corr_119: -0.018747108220493098 + sys_corr_120: -0.021552616908677196 + sys_corr_121: -0.01840539364213575 + sys_corr_122: -0.05114686965831041 + sys_corr_123: -0.036599707738881944 + sys_corr_124: 0.02210180095451419 + sys_corr_125: 0.040348701558606745 + sys_corr_126: -0.022637524812511564 + sys_corr_127: -0.026581559754774466 + sys_corr_128: -0.08406386079423346 + sys_corr_129: -0.041292952233527365 + sys_corr_130: 0.0022622395290187885 + sys_corr_131: 0.01440114752338817 + sys_corr_132: 0.07845963965593121 stat: 0.0 luminosity: 242.393756 -- sys_corr_1: 80.32620162615473 - sys_corr_2: 77.6480237076792 - sys_corr_3: -16.033811544866673 - sys_corr_4: -87.18615554429292 - sys_corr_5: -14.153491373189564 - sys_corr_6: 60.98575815790213 - sys_corr_7: -31.55071645045204 - sys_corr_8: 25.83946456033367 - sys_corr_9: 56.329050931130844 - sys_corr_10: 27.365867217626135 - sys_corr_11: 64.56224590924207 - sys_corr_12: 85.6510828144979 - sys_corr_13: 83.37039048572493 - sys_corr_14: 6.357977191627793 - sys_corr_15: -22.500405448275078 - sys_corr_16: 34.895939714955304 - sys_corr_17: 19.69490567991342 - sys_corr_18: 6.570118618238511 - sys_corr_19: -26.314122452239197 - sys_corr_20: -29.882621005528968 - sys_corr_21: -4.8323666856999345 - sys_corr_22: -271.13382296735716 - sys_corr_23: -41.61802214680545 +- sys_corr_1: 80.32620162615477 + sys_corr_2: 77.64802370767914 + sys_corr_3: -16.033811544866605 + sys_corr_4: -87.18615554429358 + sys_corr_5: -14.153491373188848 + sys_corr_6: 60.985758157902076 + sys_corr_7: -31.550716450451475 + sys_corr_8: 25.839464560334335 + sys_corr_9: 56.32905093113105 + sys_corr_10: 27.36586721762095 + sys_corr_11: 64.56224590925058 + sys_corr_12: 85.65108281449606 + sys_corr_13: -83.3703904857231 + sys_corr_14: -6.357977191627821 + sys_corr_15: 22.500405448275114 + sys_corr_16: -34.89593971495473 + sys_corr_17: 19.694905679913163 + sys_corr_18: -6.570118618239255 + sys_corr_19: -26.31412245223809 + sys_corr_20: -29.88262100552864 + sys_corr_21: -4.832366685697646 + sys_corr_22: -271.1338229673573 + sys_corr_23: -41.61802214680771 sys_corr_24: 130.77388796219654 - sys_corr_25: -49.66617128162622 - sys_corr_26: -116.42781369533185 - sys_corr_27: 127.66288281962649 - sys_corr_28: -56.85172091847942 - sys_corr_29: -1.3197116581896293 - sys_corr_30: 114.87687456081731 - sys_corr_31: 73.10332215687012 - sys_corr_32: -0.5095413133291818 - sys_corr_33: 2.4654120565121462 - sys_corr_34: -9.134412748457802 - sys_corr_35: -5.898139861144042 - sys_corr_36: -19.234527658677376 - sys_corr_37: -5.031492993965691 - sys_corr_38: -5.545246099720197 - sys_corr_39: 6.066291735975224 - sys_corr_40: -11.375483996505535 - sys_corr_41: -10.662279589292826 - sys_corr_42: 1.7589596163567625 - sys_corr_43: 5.1440407304585944 - sys_corr_44: 4.77424684814217 - sys_corr_45: -7.534136057542556 - sys_corr_46: 7.201229321894667 - sys_corr_47: -1.9339948058573988 - sys_corr_48: -14.325686654058176 - sys_corr_49: -0.08345383860928628 - sys_corr_50: 21.236009962008634 - sys_corr_51: 14.700160208359883 - sys_corr_52: -5.708955907993016 - sys_corr_53: 3.776391452137684 - sys_corr_54: 16.631664907998037 - sys_corr_55: 52.44990294304965 - sys_corr_56: -3.2167506661513596 - sys_corr_57: 2.508202533328533 - sys_corr_58: -7.403122645980805 - sys_corr_59: 16.040847315937445 - sys_corr_60: 11.06028471851916 - sys_corr_61: 1.1142583993702366 - sys_corr_62: -34.07219026197615 - sys_corr_63: -28.34142284064009 - sys_corr_64: -14.911241865328124 - sys_corr_65: 4.4184742084248825 - sys_corr_66: 97.04408865220505 - sys_corr_67: -28.55126888823112 - sys_corr_68: 2.348185428085351 - sys_corr_69: -38.742234194786704 - sys_corr_70: -5.07728402463761 - sys_corr_71: 75.96804667271175 - sys_corr_72: 27.591800721610408 - sys_corr_73: -41.12367769664771 - sys_corr_74: 21.59812727465183 - sys_corr_75: -42.37695202749899 - sys_corr_76: -47.30971155441206 - sys_corr_77: 15.365496342907113 - sys_corr_78: 4.1421549559254185 - sys_corr_79: -60.5715867014795 - sys_corr_80: -18.955533523294154 - sys_corr_81: 16.26505219216227 - sys_corr_82: 0.14218035725897435 - sys_corr_83: -10.79836588317834 - sys_corr_84: 5.570245557532364 - sys_corr_85: -3.646438489291807 - sys_corr_86: 88.65475148988479 - sys_corr_87: 8.649063384551695 - sys_corr_88: -66.9854635385596 - sys_corr_89: 3.733282296379046 - sys_corr_90: 2.955628733641474 - sys_corr_91: 6.187945322757888 - sys_corr_92: -39.70505415745253 - sys_corr_93: 3.301965460496366 - sys_corr_94: 15.820998497216909 - sys_corr_95: -16.894398009415184 - sys_corr_96: 2.3377506773186294 - sys_corr_97: 4.13304506620048 - sys_corr_98: -1.087557783544687 - sys_corr_99: 0.7968398607974141 - sys_corr_100: 0.28904276263790546 - sys_corr_101: -0.10142861281191135 - sys_corr_102: -0.378271299305792 - sys_corr_103: 0.3777713007453705 - sys_corr_104: 4.888173596701203 - sys_corr_105: -0.6645074689440769 - sys_corr_106: -0.71690866587236 - sys_corr_107: -1.0657384970150703 - sys_corr_108: -0.9481003412552498 - sys_corr_109: 0.05899577394956741 - sys_corr_110: -0.15980631881331048 - sys_corr_111: -0.3012617157882721 - sys_corr_112: 0.1789592952079106 - sys_corr_113: -0.1726360862892461 - sys_corr_114: -0.0009171437939817286 - sys_corr_115: -0.132894895889977 - sys_corr_116: -0.028059289379485885 - sys_corr_117: -0.015927680104562563 - sys_corr_118: 0.06177850964640299 - sys_corr_119: 0.0024208261322338793 - sys_corr_120: 0.02186863372302446 - sys_corr_121: 0.012872442299908528 - sys_corr_122: -0.03659003890447356 - sys_corr_123: -0.055720464591522634 - sys_corr_124: 0.002233600751480969 - sys_corr_125: 0.04085587768679602 - sys_corr_126: 0.019281707523651524 - sys_corr_127: 0.36767368690727814 - sys_corr_128: -0.42326805293464614 - sys_corr_129: -0.03412660119079159 - sys_corr_130: -0.0006560577609520057 - sys_corr_131: -0.020592181602739613 - sys_corr_132: -0.0174896867653995 + sys_corr_25: -49.66617128162822 + sys_corr_26: -116.42781369533782 + sys_corr_27: 127.66288281962971 + sys_corr_28: -56.851720918481554 + sys_corr_29: -1.3197116581910986 + sys_corr_30: 114.8768745608177 + sys_corr_31: 73.1033221568717 + sys_corr_32: 0.5095413133308075 + sys_corr_33: -2.4654120565157913 + sys_corr_34: -9.134412748457684 + sys_corr_35: -5.8981398611412335 + sys_corr_36: -19.234527658677724 + sys_corr_37: 5.031492993967589 + sys_corr_38: 5.545246099719336 + sys_corr_39: -6.066291735974413 + sys_corr_40: 11.37548399650772 + sys_corr_41: -10.66227958929333 + sys_corr_42: -1.7589596163604382 + sys_corr_43: 5.14404073045953 + sys_corr_44: 4.774246848143452 + sys_corr_45: 7.534136057539067 + sys_corr_46: -7.201229321897702 + sys_corr_47: 1.9339948058563767 + sys_corr_48: 14.325686654059664 + sys_corr_49: 0.08345383861052363 + sys_corr_50: 21.236009962008406 + sys_corr_51: 14.700160208361584 + sys_corr_52: -5.708955907997766 + sys_corr_53: -3.7763914521420143 + sys_corr_54: -16.6316649079859 + sys_corr_55: -52.4499029430447 + sys_corr_56: 3.2167506661509324 + sys_corr_57: 2.508202533331969 + sys_corr_58: 7.403122645994104 + sys_corr_59: 16.040847315933753 + sys_corr_60: -11.060284718515748 + sys_corr_61: -1.1142583993671373 + sys_corr_62: 34.07219026197243 + sys_corr_63: -28.341422840635776 + sys_corr_64: -14.91124186532569 + sys_corr_65: 4.418474208417983 + sys_corr_66: -97.0440886521962 + sys_corr_67: -28.55126888821165 + sys_corr_68: -2.3481854281317758 + sys_corr_69: -38.7422341947783 + sys_corr_70: 5.077284024632813 + sys_corr_71: 75.96804667271218 + sys_corr_72: -27.591800721612266 + sys_corr_73: 41.12367769664299 + sys_corr_74: 21.598127274647364 + sys_corr_75: -42.37695202741949 + sys_corr_76: -47.30971155443627 + sys_corr_77: -15.365496342905768 + sys_corr_78: 18.955533523295784 + sys_corr_79: 4.142154955926952 + sys_corr_80: -60.57158670147893 + sys_corr_81: -16.26505219216109 + sys_corr_82: -0.14218035726221487 + sys_corr_83: -10.798365883182827 + sys_corr_84: -5.570245557533737 + sys_corr_85: -3.6464384892937054 + sys_corr_86: -88.65475149002648 + sys_corr_87: -8.64906338454656 + sys_corr_88: -66.98546353846314 + sys_corr_89: 2.9556287336414466 + sys_corr_90: 3.733282296378965 + sys_corr_91: 6.18794532275782 + sys_corr_92: 39.705054157481214 + sys_corr_93: 3.3019654604956985 + sys_corr_94: 15.820998497219662 + sys_corr_95: -16.89439800941338 + sys_corr_96: -2.3377506773189567 + sys_corr_97: 4.1330450662000295 + sys_corr_98: 1.0875577835443857 + sys_corr_99: 0.7968398607972126 + sys_corr_100: -0.10142861281188774 + sys_corr_101: 0.3782712993055723 + sys_corr_102: 0.37777130074482845 + sys_corr_103: -4.8881735967008915 + sys_corr_104: 0.6645074689446651 + sys_corr_105: -0.28904276263799644 + sys_corr_106: -0.7169086658722932 + sys_corr_107: -0.9481003412551686 + sys_corr_108: 0.05899577394959217 + sys_corr_109: 0.15980631881331636 + sys_corr_110: 1.065738497014861 + sys_corr_111: 0.3012617157882547 + sys_corr_112: 0.17895929520793336 + sys_corr_113: 0.17263608628925592 + sys_corr_114: -0.0009171437939794116 + sys_corr_115: -0.13289489588997233 + sys_corr_116: 0.028059289379470904 + sys_corr_117: 0.015927680104553317 + sys_corr_118: -0.061778509646382734 + sys_corr_119: -0.0024208261322333333 + sys_corr_120: -0.021868633723019074 + sys_corr_121: -0.012872442299906186 + sys_corr_122: -0.05572046459149726 + sys_corr_123: -0.036590038904452026 + sys_corr_124: 0.0022336007515020443 + sys_corr_125: 0.040855877686795196 + sys_corr_126: -0.01928170752364148 + sys_corr_127: 0.36767368690747027 + sys_corr_128: -0.42326805293466524 + sys_corr_129: -0.03412660119079015 + sys_corr_130: -0.0006560577609431913 + sys_corr_131: 0.020592181602729066 + sys_corr_132: -0.017489686765399554 stat: 0.0 luminosity: 184.882214 -- sys_corr_1: 72.94614808216465 - sys_corr_2: 64.40502537971777 - sys_corr_3: 25.865716241017658 - sys_corr_4: -61.774658064468085 - sys_corr_5: -16.628867071079206 - sys_corr_6: 53.399723115461185 - sys_corr_7: -39.77906061794765 - sys_corr_8: 13.508230117422377 - sys_corr_9: 28.39545054845215 - sys_corr_10: 22.680478665508428 - sys_corr_11: 36.360853452485586 - sys_corr_12: 31.14277959549735 - sys_corr_13: 45.129675562887456 - sys_corr_14: 9.582054410999428 - sys_corr_15: -12.473980875383882 - sys_corr_16: 22.360700276670396 - sys_corr_17: 13.976480569723917 - sys_corr_18: 6.4912462152504515 - sys_corr_19: -17.386337411335656 - sys_corr_20: -30.838854005140362 - sys_corr_21: -6.065027447118463 - sys_corr_22: -192.09448269112693 - sys_corr_23: -32.47680272433449 - sys_corr_24: 163.85427338004834 - sys_corr_25: -34.33562817640404 - sys_corr_26: -83.17680391486532 - sys_corr_27: 124.31005235864879 - sys_corr_28: -60.12384404323881 - sys_corr_29: -15.566199486868566 - sys_corr_30: 144.9414722887034 - sys_corr_31: 41.84250808174231 - sys_corr_32: -6.463361930162952 - sys_corr_33: 6.668155542025472 - sys_corr_34: -15.16334895111377 - sys_corr_35: -3.9261031054559137 - sys_corr_36: -21.281979318714026 - sys_corr_37: -4.0450971586721876 - sys_corr_38: -3.672825886393614 - sys_corr_39: 10.467513687962299 - sys_corr_40: -16.26951788693811 - sys_corr_41: -24.2979934534661 - sys_corr_42: -3.5761642289562827 - sys_corr_43: 12.08420112800137 - sys_corr_44: 20.330910428033903 - sys_corr_45: -2.7891104895547536 - sys_corr_46: 12.402120389156726 - sys_corr_47: 1.6492424265849737 - sys_corr_48: -1.080724391817675 - sys_corr_49: -2.2147926101387516 - sys_corr_50: 41.98242543893899 - sys_corr_51: 12.287914054163362 - sys_corr_52: -15.808141868070557 - sys_corr_53: 27.366052525806197 - sys_corr_54: 28.707170250113133 - sys_corr_55: 92.77219344294825 - sys_corr_56: -6.112401968992713 - sys_corr_57: 22.460502258112108 - sys_corr_58: -46.04540006253912 - sys_corr_59: 2.3558432159497467 - sys_corr_60: 12.764166890530618 - sys_corr_61: -23.844167595840894 - sys_corr_62: -34.390985908522175 - sys_corr_63: 14.148518522632362 - sys_corr_64: 64.65394772931423 - sys_corr_65: 3.2703322141845867 - sys_corr_66: -28.4994887951153 - sys_corr_67: -15.484633185916287 - sys_corr_68: -30.354443571456194 - sys_corr_69: 10.223975871626429 - sys_corr_70: -17.999787952619286 - sys_corr_71: -63.47443070880875 - sys_corr_72: 63.378053842324064 - sys_corr_73: 62.18598017119247 - sys_corr_74: 99.23926912495418 - sys_corr_75: 9.484864596821625 - sys_corr_76: 21.576121515796356 - sys_corr_77: 0.4901068640488733 - sys_corr_78: -0.08376758912210355 - sys_corr_79: 24.22741222284991 - sys_corr_80: 6.015878949264393 - sys_corr_81: -17.44514917747069 - sys_corr_82: -14.36877591024862 - sys_corr_83: 10.93998071492589 - sys_corr_84: -10.51141066135557 - sys_corr_85: -9.71273068817556 - sys_corr_86: -46.788333364487386 - sys_corr_87: -28.02905542036687 - sys_corr_88: 68.37719019948337 - sys_corr_89: -1.5742121141772059 - sys_corr_90: -4.471903173479706 - sys_corr_91: -7.7792232322131944 - sys_corr_92: 7.8705232536431735 - sys_corr_93: 3.55391849380009 - sys_corr_94: 15.714431589310118 - sys_corr_95: -12.668494240382076 - sys_corr_96: 1.4812799852860525 - sys_corr_97: 1.9041343363523124 - sys_corr_98: -0.23650990113086845 - sys_corr_99: -0.011401529922636364 - sys_corr_100: -0.05043516285910541 - sys_corr_101: 0.08390544906235599 - sys_corr_102: -0.13282687612267893 - sys_corr_103: -2.4216758891090673 - sys_corr_104: 3.463107464052962 - sys_corr_105: -2.112012208196677 - sys_corr_106: 0.09836269468742802 - sys_corr_107: 0.10014793654689406 - sys_corr_108: -0.1537021324001521 - sys_corr_109: 0.32185253031946964 - sys_corr_110: -0.1271956902054475 - sys_corr_111: -0.14414664234009145 - sys_corr_112: 0.13237900916419498 - sys_corr_113: -0.24241515359938545 - sys_corr_114: 0.006359652830270321 - sys_corr_115: 0.23541741964680601 - sys_corr_116: 0.058627421556322515 - sys_corr_117: 0.03061944807441134 - sys_corr_118: -0.17112074019198267 - sys_corr_119: 0.0021588268806629297 - sys_corr_120: -0.03783119154026407 - sys_corr_121: -0.011408006295618901 - sys_corr_122: 0.026359100703769213 - sys_corr_123: 0.057115274623229476 - sys_corr_124: -0.0159152420336848 - sys_corr_125: -0.05967931669009038 - sys_corr_126: -0.005962939183367434 - sys_corr_127: 0.35961687661242286 - sys_corr_128: -0.12738678821656427 - sys_corr_129: 0.2416181919707649 - sys_corr_130: -0.018976835404905513 - sys_corr_131: 0.03209241790572866 - sys_corr_132: -0.03265621574067226 +- sys_corr_1: 72.94614808216468 + sys_corr_2: 64.40502537971771 + sys_corr_3: 25.865716241017665 + sys_corr_4: -61.774658064468305 + sys_corr_5: -16.62886707107869 + sys_corr_6: 53.399723115461086 + sys_corr_7: -39.779060617947486 + sys_corr_8: 13.508230117422327 + sys_corr_9: 28.39545054845234 + sys_corr_10: 22.680478665505373 + sys_corr_11: 36.360853452490026 + sys_corr_12: 31.142779595495192 + sys_corr_13: -45.129675562886355 + sys_corr_14: -9.582054410999172 + sys_corr_15: 12.473980875383674 + sys_corr_16: -22.360700276670197 + sys_corr_17: 13.976480569723673 + sys_corr_18: -6.491246215251101 + sys_corr_19: -17.386337411335017 + sys_corr_20: -30.83885400514026 + sys_corr_21: -6.0650274471174015 + sys_corr_22: -192.09448269112647 + sys_corr_23: -32.476802724335855 + sys_corr_24: 163.85427338004826 + sys_corr_25: -34.33562817640518 + sys_corr_26: -83.17680391487129 + sys_corr_27: 124.31005235865128 + sys_corr_28: -60.123844043241334 + sys_corr_29: -15.566199486870655 + sys_corr_30: 144.94147228870273 + sys_corr_31: 41.84250808174348 + sys_corr_32: 6.463361930165717 + sys_corr_33: -6.668155542028086 + sys_corr_34: -15.163348951113516 + sys_corr_35: -3.9261031054534405 + sys_corr_36: -21.281979318714594 + sys_corr_37: 4.045097158673272 + sys_corr_38: 3.672825886391847 + sys_corr_39: -10.467513687961809 + sys_corr_40: 16.269517886940314 + sys_corr_41: -24.297993453465175 + sys_corr_42: 3.5761642289502182 + sys_corr_43: 12.084201128006097 + sys_corr_44: 20.33091042803316 + sys_corr_45: 2.789110489547423 + sys_corr_46: -12.402120389157286 + sys_corr_47: -1.6492424265829106 + sys_corr_48: 1.0807243918186489 + sys_corr_49: 2.2147926101381152 + sys_corr_50: 41.98242543893633 + sys_corr_51: 12.287914054165977 + sys_corr_52: -15.808141868078378 + sys_corr_53: -27.366052525811366 + sys_corr_54: -28.70717025009456 + sys_corr_55: -92.77219344293981 + sys_corr_56: 6.112401968988835 + sys_corr_57: 22.46050225811483 + sys_corr_58: 46.04540006254316 + sys_corr_59: 2.355843215915466 + sys_corr_60: -12.764166890529921 + sys_corr_61: 23.84416759584653 + sys_corr_62: 34.39098590851109 + sys_corr_63: 14.148518522604926 + sys_corr_64: 64.65394772931646 + sys_corr_65: 3.2703322142567632 + sys_corr_66: 28.499488795114765 + sys_corr_67: -15.484633185945496 + sys_corr_68: 30.354443571478313 + sys_corr_69: 10.223975871618789 + sys_corr_70: 17.999787952640435 + sys_corr_71: -63.47443070881137 + sys_corr_72: -63.378053842322686 + sys_corr_73: -62.18598017117489 + sys_corr_74: 99.23926912495241 + sys_corr_75: 9.484864596793013 + sys_corr_76: 21.576121515809014 + sys_corr_77: -0.49010686405294135 + sys_corr_78: -6.0158789492650415 + sys_corr_79: -0.08376758912333482 + sys_corr_80: 24.227412222850248 + sys_corr_81: 17.44514917746819 + sys_corr_82: 14.368775910250196 + sys_corr_83: 10.939980714928627 + sys_corr_84: 10.511410661357527 + sys_corr_85: -9.712730688173943 + sys_corr_86: 46.78833336458388 + sys_corr_87: 28.02905542035884 + sys_corr_88: 68.37719019942163 + sys_corr_89: -4.471903173479442 + sys_corr_90: -1.5742121141770744 + sys_corr_91: -7.779223232213001 + sys_corr_92: -7.870523253661023 + sys_corr_93: 3.553918493799514 + sys_corr_94: 15.714431589312357 + sys_corr_95: -12.66849424038079 + sys_corr_96: -1.481279985286397 + sys_corr_97: 1.9041343363522714 + sys_corr_98: 0.23650990113069967 + sys_corr_99: -0.011401529922752136 + sys_corr_100: 0.08390544906238923 + sys_corr_101: 0.13282687612316657 + sys_corr_102: -2.421675889109404 + sys_corr_103: -3.4631074640525057 + sys_corr_104: 2.1120122081985744 + sys_corr_105: 0.05043516285902946 + sys_corr_106: 0.09836269468732649 + sys_corr_107: -0.15370213240021505 + sys_corr_108: 0.32185253031940964 + sys_corr_109: 0.12719569020549093 + sys_corr_110: -0.10014793654723277 + sys_corr_111: 0.14414664234015995 + sys_corr_112: 0.13237900916420056 + sys_corr_113: 0.24241515359938567 + sys_corr_114: 0.006359652830269845 + sys_corr_115: 0.23541741964680887 + sys_corr_116: -0.058627421556268586 + sys_corr_117: -0.030619448074374712 + sys_corr_118: 0.1711207401919604 + sys_corr_119: -0.0021588268806647447 + sys_corr_120: 0.03783119154025375 + sys_corr_121: 0.011408006295621588 + sys_corr_122: 0.0571152746232117 + sys_corr_123: 0.026359100703745256 + sys_corr_124: -0.015915242033667922 + sys_corr_125: -0.05967931669008497 + sys_corr_126: 0.005962939183362924 + sys_corr_127: 0.35961687661256975 + sys_corr_128: -0.12738678821655772 + sys_corr_129: 0.24161819197075787 + sys_corr_130: -0.01897683540491338 + sys_corr_131: -0.03209241790571962 + sys_corr_132: -0.03265621574067351 stat: 0.0 luminosity: 120.13718200000001 -- sys_corr_1: 25.00114201025024 - sys_corr_2: 16.657361185737884 - sys_corr_3: 5.631631494281992 - sys_corr_4: -24.59911975950564 - sys_corr_5: -6.37282165272004 - sys_corr_6: 28.330021792592966 - sys_corr_7: -12.328416019178738 - sys_corr_8: 6.841441243461014 - sys_corr_9: 5.253344649917254 - sys_corr_10: 11.309540869643625 - sys_corr_11: 15.56706019830267 - sys_corr_12: 13.662207082006717 - sys_corr_13: 13.636832315672805 - sys_corr_14: 3.7694599735372036 - sys_corr_15: -3.810298861831263 - sys_corr_16: 5.417937996957992 - sys_corr_17: 6.071276505339615 - sys_corr_18: 1.9929721643109346 - sys_corr_19: -8.990098685649905 - sys_corr_20: -14.644962905106814 - sys_corr_21: -2.956636221539134 - sys_corr_22: -76.48938265366074 - sys_corr_23: -11.66067310790675 - sys_corr_24: 61.822227904384995 - sys_corr_25: -13.776666776643111 - sys_corr_26: -35.7298692665391 - sys_corr_27: 48.535018444885836 - sys_corr_28: -23.891723738126778 - sys_corr_29: -3.4018989702806075 - sys_corr_30: 57.64388939664676 - sys_corr_31: 14.775619453227506 - sys_corr_32: -0.5870554257880164 - sys_corr_33: 3.499303296477774 - sys_corr_34: 0.3642684881611441 - sys_corr_35: -3.365041804613336 - sys_corr_36: -9.22833764990775 - sys_corr_37: -4.287896783341448 - sys_corr_38: -3.836458737709653 - sys_corr_39: 1.1660055009647827 - sys_corr_40: -8.305849536114687 - sys_corr_41: -8.0759579155523 - sys_corr_42: 1.254246816858159 - sys_corr_43: 7.494786053667022 - sys_corr_44: 0.28380723828784293 - sys_corr_45: -1.52519160025564 - sys_corr_46: 4.301134173113884 - sys_corr_47: 1.9475811192281594 - sys_corr_48: -1.1632862990201795 - sys_corr_49: -2.578887671705629 - sys_corr_50: 16.190791637661746 - sys_corr_51: 7.0011670230973895 - sys_corr_52: -7.468343092681884 - sys_corr_53: 3.2292012212883536 - sys_corr_54: 6.966394861635007 - sys_corr_55: 19.7037753886255 - sys_corr_56: -0.3416180330919688 - sys_corr_57: 1.569696418583886 - sys_corr_58: -6.529923228778206 - sys_corr_59: 1.0593193812441044 - sys_corr_60: 3.4237650189219613 - sys_corr_61: -5.216507271815202 - sys_corr_62: -7.915821506880283 - sys_corr_63: -0.7943267322508294 - sys_corr_64: 8.427702212280678 - sys_corr_65: 2.3450975423048463 - sys_corr_66: 4.299898478250218 - sys_corr_67: -1.2864750610157503 - sys_corr_68: -0.15897529570199273 - sys_corr_69: -2.52526925878289 - sys_corr_70: -3.6198277494850446 - sys_corr_71: -2.5198247919794587 - sys_corr_72: 11.255439468989993 - sys_corr_73: 1.1919144139969016 - sys_corr_74: 7.849776717426228 - sys_corr_75: -6.266083159102808 - sys_corr_76: -4.3545374163385615 - sys_corr_77: -7.656343651979581 - sys_corr_78: 1.8827445215369125 - sys_corr_79: -5.19775248236734 - sys_corr_80: 0.30621627873081886 - sys_corr_81: 5.602405949348254 - sys_corr_82: -0.2704658527949859 - sys_corr_83: -2.8519050134306543 - sys_corr_84: 9.840111651051187 - sys_corr_85: 8.247379408367166 - sys_corr_86: 7.600648656626682 - sys_corr_87: 6.642000600104864 - sys_corr_88: -4.706355881261952 - sys_corr_89: 4.204819275996819 - sys_corr_90: 1.6274403817748524 - sys_corr_91: 10.827457650116687 - sys_corr_92: -4.128580866850087 - sys_corr_93: -20.556715911529174 - sys_corr_94: -95.84962578873075 - sys_corr_95: 104.8661587292676 - sys_corr_96: -13.312075366553582 - sys_corr_97: -33.25113680222506 - sys_corr_98: 6.081361134006866 - sys_corr_99: -7.101776225088667 - sys_corr_100: -5.307751841934494 - sys_corr_101: 4.292000518529666 - sys_corr_102: -6.404244619648466 - sys_corr_103: 5.095241801076618 - sys_corr_104: -6.727032590442821 - sys_corr_105: -3.193287570022698 - sys_corr_106: 4.451264621348948 - sys_corr_107: 5.261517187497812 - sys_corr_108: 4.1387708677878035 - sys_corr_109: -0.08669253919102729 - sys_corr_110: -0.0580766600714445 - sys_corr_111: 1.8371328593172462 - sys_corr_112: 0.0425332090435229 - sys_corr_113: 0.2850985043245388 - sys_corr_114: 0.004147089700212132 - sys_corr_115: -0.3003341480749623 - sys_corr_116: 0.1111595623424313 - sys_corr_117: 0.07926411075929878 - sys_corr_118: 0.12818083556622453 - sys_corr_119: -0.018834875904454616 - sys_corr_120: -0.0729909849935878 - sys_corr_121: -0.023391542923874728 - sys_corr_122: 0.017823401187828884 - sys_corr_123: 0.025003777894261198 - sys_corr_124: -0.1889134748147966 - sys_corr_125: -0.03347688378817219 - sys_corr_126: -0.0033754424917066053 - sys_corr_127: 0.9623954081569707 - sys_corr_128: -1.4295269235403254 - sys_corr_129: 0.13864272566336436 - sys_corr_130: -0.015889309333596353 - sys_corr_131: 0.043956235665563295 - sys_corr_132: 0.11671900950715941 +- sys_corr_1: 25.001142010250252 + sys_corr_2: 16.657361185737837 + sys_corr_3: 5.631631494282014 + sys_corr_4: -24.599119759505786 + sys_corr_5: -6.3728216527198205 + sys_corr_6: 28.33002179259296 + sys_corr_7: -12.328416019178682 + sys_corr_8: 6.841441243460826 + sys_corr_9: 5.253344649917271 + sys_corr_10: 11.309540869642671 + sys_corr_11: 15.56706019830453 + sys_corr_12: 13.662207082005782 + sys_corr_13: -13.636832315672446 + sys_corr_14: -3.7694599735376393 + sys_corr_15: 3.8102988618312827 + sys_corr_16: -5.417937996957908 + sys_corr_17: 6.071276505339942 + sys_corr_18: -1.9929721643110792 + sys_corr_19: -8.990098685649892 + sys_corr_20: -14.644962905106594 + sys_corr_21: -2.9566362215383295 + sys_corr_22: -76.48938265366075 + sys_corr_23: -11.660673107907705 + sys_corr_24: 61.82222790438527 + sys_corr_25: -13.776666776643744 + sys_corr_26: -35.72986926654183 + sys_corr_27: 48.53501844488684 + sys_corr_28: -23.891723738127546 + sys_corr_29: -3.401898970281446 + sys_corr_30: 57.64388939664704 + sys_corr_31: 14.775619453228106 + sys_corr_32: 0.5870554257886088 + sys_corr_33: -3.49930329647819 + sys_corr_34: 0.36426848816109614 + sys_corr_35: -3.365041804611655 + sys_corr_36: -9.228337649908623 + sys_corr_37: 4.287896783342346 + sys_corr_38: 3.8364587377095303 + sys_corr_39: -1.1660055009646004 + sys_corr_40: 8.305849536116225 + sys_corr_41: -8.075957915551914 + sys_corr_42: -1.2542468168612575 + sys_corr_43: 7.4947860536673865 + sys_corr_44: 0.2838072382884885 + sys_corr_45: 1.525191600253333 + sys_corr_46: -4.301134173115083 + sys_corr_47: -1.9475811192291217 + sys_corr_48: 1.1632862990212272 + sys_corr_49: 2.578887671704982 + sys_corr_50: 16.190791637661572 + sys_corr_51: 7.001167023098362 + sys_corr_52: -7.468343092684204 + sys_corr_53: -3.229201221288729 + sys_corr_54: -6.966394861630362 + sys_corr_55: -19.70377538862316 + sys_corr_56: 0.3416180330904133 + sys_corr_57: 1.5696964185852005 + sys_corr_58: 6.529923228780123 + sys_corr_59: 1.0593193812402866 + sys_corr_60: -3.423765018922534 + sys_corr_61: 5.2165072718164 + sys_corr_62: 7.915821506877833 + sys_corr_63: -0.7943267322554435 + sys_corr_64: 8.42770221228293 + sys_corr_65: 2.3450975423153286 + sys_corr_66: -4.299898478249817 + sys_corr_67: -1.2864750610163376 + sys_corr_68: 0.15897529570088387 + sys_corr_69: -2.5252692587835393 + sys_corr_70: 3.619827749486203 + sys_corr_71: -2.519824791978611 + sys_corr_72: -11.255439468989948 + sys_corr_73: -1.191914413996276 + sys_corr_74: 7.849776717425175 + sys_corr_75: -6.266083159094142 + sys_corr_76: -4.354537416341394 + sys_corr_77: 7.65634365197818 + sys_corr_78: -0.30621627873152674 + sys_corr_79: 1.882744521536981 + sys_corr_80: -5.197752482368026 + sys_corr_81: -5.602405949347194 + sys_corr_82: 0.2704658527944565 + sys_corr_83: -2.851905013431656 + sys_corr_84: -9.840111651051517 + sys_corr_85: 8.247379408366848 + sys_corr_86: -7.6006486566385645 + sys_corr_87: -6.642000600104812 + sys_corr_88: -4.706355881254598 + sys_corr_89: 1.6274403817750351 + sys_corr_90: 4.2048192759963054 + sys_corr_91: 10.827457650116935 + sys_corr_92: 4.128580866851791 + sys_corr_93: -20.55671591152569 + sys_corr_94: -95.84962578874905 + sys_corr_95: 104.86615872925951 + sys_corr_96: 13.312075366555177 + sys_corr_97: -33.251136802224316 + sys_corr_98: -6.081361134005277 + sys_corr_99: -7.101776225087296 + sys_corr_100: 4.292000518529998 + sys_corr_101: 6.404244619648989 + sys_corr_102: 5.095241801088976 + sys_corr_103: 6.72703259044087 + sys_corr_104: 3.193287570015785 + sys_corr_105: 5.307751841935654 + sys_corr_106: 4.451264621348955 + sys_corr_107: 4.138770867787583 + sys_corr_108: -0.0866925391909794 + sys_corr_109: 0.05807666007135797 + sys_corr_110: -5.261517187496838 + sys_corr_111: -1.8371328593170457 + sys_corr_112: 0.042533209043503356 + sys_corr_113: -0.2850985043245771 + sys_corr_114: 0.004147089700209965 + sys_corr_115: -0.30033414807491926 + sys_corr_116: -0.11115956234244101 + sys_corr_117: -0.07926411075930712 + sys_corr_118: -0.1281808355662205 + sys_corr_119: 0.01883487590445838 + sys_corr_120: 0.07299098499355033 + sys_corr_121: 0.0233915429238664 + sys_corr_122: 0.02500377789422187 + sys_corr_123: 0.01782340118777694 + sys_corr_124: -0.1889134748147998 + sys_corr_125: -0.03347688378815426 + sys_corr_126: 0.0033754424916970427 + sys_corr_127: 0.96239540815578 + sys_corr_128: -1.429526923540158 + sys_corr_129: 0.1386427256633039 + sys_corr_130: -0.015889309333596505 + sys_corr_131: -0.043956235665582814 + sys_corr_132: 0.1167190095071564 stat: 0.0 luminosity: 45.493976 -- sys_corr_1: 350.44662101574204 - sys_corr_2: 170.7264074792374 - sys_corr_3: -3.0919647839710382 - sys_corr_4: 140.17262126039878 - sys_corr_5: 143.41489129497305 - sys_corr_6: -724.5030341783638 - sys_corr_7: 16.352477889425792 - sys_corr_8: 4.385457496181006 - sys_corr_9: 3.208693914401521 - sys_corr_10: 2.1316597823556602 - sys_corr_11: 5.805612192584716 - sys_corr_12: -51.26864095969246 - sys_corr_13: -49.015862948634364 - sys_corr_14: 12.417170621830069 - sys_corr_15: 2.7769417980616913 - sys_corr_16: -11.455495119932324 - sys_corr_17: -7.425390949063679 - sys_corr_18: 3.103900387967323 - sys_corr_19: 52.98906143620864 - sys_corr_20: 25.498899685533747 - sys_corr_21: 19.599874216491855 - sys_corr_22: 123.18180322371248 - sys_corr_23: -27.845767229650697 - sys_corr_24: 173.8980567333003 - sys_corr_25: -35.21714378992132 - sys_corr_26: -93.55522182947544 - sys_corr_27: 37.14817815847607 - sys_corr_28: -57.212942055941554 - sys_corr_29: 115.13522122480349 - sys_corr_30: -171.6159228263999 - sys_corr_31: -50.770784950656314 - sys_corr_32: -52.04872933873017 - sys_corr_33: -48.05518500573426 - sys_corr_34: -161.3278603944203 - sys_corr_35: -135.4158779207986 - sys_corr_36: -216.67854599468367 - sys_corr_37: -3.4936241494897438 - sys_corr_38: 57.8348645117053 - sys_corr_39: 97.66423875958698 - sys_corr_40: 1.1538198613274027 - sys_corr_41: 0.6706505262653742 - sys_corr_42: -16.52198323461177 - sys_corr_43: -15.39440856661442 - sys_corr_44: 2.8883586255279434 - sys_corr_45: 19.867736846478984 - sys_corr_46: 10.722026921205867 - sys_corr_47: 19.13689369873577 - sys_corr_48: -28.33893599979297 - sys_corr_49: 39.547537507056525 - sys_corr_50: 45.239609848785385 - sys_corr_51: 22.13105395899908 - sys_corr_52: -0.1295872872365822 - sys_corr_53: -11.330635094500444 - sys_corr_54: 6.830460174664628 - sys_corr_55: 10.390560244225137 - sys_corr_56: -1.1402305301613596 - sys_corr_57: 12.127812046088797 - sys_corr_58: 11.153357176446724 - sys_corr_59: 0.7720776964804199 - sys_corr_60: -10.909668188390972 - sys_corr_61: -0.9437839612449206 - sys_corr_62: 9.885995301116083 - sys_corr_63: -1.8724113342960191 - sys_corr_64: -5.768787538903794 - sys_corr_65: 0.7313078516430361 - sys_corr_66: 7.19057564865804 - sys_corr_67: -2.204632578069952 - sys_corr_68: 13.488139713905271 - sys_corr_69: -5.232881961791491 - sys_corr_70: -3.435001517972258 - sys_corr_71: -13.525262487088149 - sys_corr_72: -0.6383529713727325 - sys_corr_73: 8.845906222696529 - sys_corr_74: -5.2151346134016565 - sys_corr_75: 0.5382760149828182 - sys_corr_76: -4.689477043484842 - sys_corr_77: -1.3426823218234345 - sys_corr_78: 7.269090850903394 - sys_corr_79: -0.5783795444262749 - sys_corr_80: -3.063480878862155 - sys_corr_81: 5.140781074685088 - sys_corr_82: 4.795421141646374 - sys_corr_83: -5.5361201590773845 - sys_corr_84: -0.5415614446070726 - sys_corr_85: -1.9692945624202371 - sys_corr_86: 2.1153682409405765 - sys_corr_87: -11.021103641963752 - sys_corr_88: -1.1053996397051027 - sys_corr_89: -0.4702482376018589 - sys_corr_90: 0.654072150595669 - sys_corr_91: -0.7822802561776317 - sys_corr_92: 0.35189172230519844 - sys_corr_93: -0.015580690393441529 - sys_corr_94: -0.4948333620706716 - sys_corr_95: 0.5719363582372272 - sys_corr_96: 0.008721413670990812 - sys_corr_97: 0.12732807249752345 - sys_corr_98: 0.3220789040194826 - sys_corr_99: 0.5543252089887166 - sys_corr_100: 0.16094797747228337 - sys_corr_101: 0.6000595378582457 - sys_corr_102: -1.1859902581738915 - sys_corr_103: 3.2474014021329007 - sys_corr_104: 1.3530931472410757 - sys_corr_105: 1.0533345553121602 - sys_corr_106: 0.33155440937557706 - sys_corr_107: -0.35117633037113605 - sys_corr_108: -0.3287823621876391 - sys_corr_109: 0.028446122100327362 - sys_corr_110: 0.5453737232216213 - sys_corr_111: -0.04697015435893811 - sys_corr_112: -0.22400820372423147 - sys_corr_113: 0.20086342378023192 - sys_corr_114: 0.0007416328395145529 - sys_corr_115: 0.03565158993419141 - sys_corr_116: 0.0009382932484405576 - sys_corr_117: 0.022548101291681066 - sys_corr_118: -0.06922829865380646 - sys_corr_119: -0.004842655955644971 - sys_corr_120: -0.016472603732908552 - sys_corr_121: -0.0012154567643314518 - sys_corr_122: 0.03332712222885924 - sys_corr_123: 0.07107713152912128 - sys_corr_124: 0.05248234235435787 - sys_corr_125: -0.045412605431215176 - sys_corr_126: -0.017232521969402777 - sys_corr_127: 0.22439641224582657 - sys_corr_128: -0.0814098853141125 - sys_corr_129: 0.004570402477728551 - sys_corr_130: -0.003963284411702622 - sys_corr_131: 0.023716462730211364 - sys_corr_132: -0.0396024766189039 +- sys_corr_1: 350.44662101574124 + sys_corr_2: 170.72640747923887 + sys_corr_3: -3.0919647839716173 + sys_corr_4: 140.17262126040114 + sys_corr_5: 143.41489129496892 + sys_corr_6: -724.5030341783627 + sys_corr_7: 16.352477889425415 + sys_corr_8: 4.3854574961818 + sys_corr_9: 3.208693914402424 + sys_corr_10: 2.1316597823571306 + sys_corr_11: 5.805612192579969 + sys_corr_12: -51.26864095969309 + sys_corr_13: 49.015862948635 + sys_corr_14: -12.417170621830245 + sys_corr_15: -2.776941798061209 + sys_corr_16: 11.455495119932941 + sys_corr_17: -7.4253909490631385 + sys_corr_18: -3.1039003879675047 + sys_corr_19: 52.98906143620824 + sys_corr_20: 25.498899685532216 + sys_corr_21: 19.599874216489848 + sys_corr_22: 123.18180322371249 + sys_corr_23: -27.845767229653532 + sys_corr_24: 173.89805673329963 + sys_corr_25: -35.2171437899228 + sys_corr_26: -93.55522182947574 + sys_corr_27: 37.1481781584783 + sys_corr_28: -57.21294205594248 + sys_corr_29: 115.13522122480259 + sys_corr_30: -171.61592282640365 + sys_corr_31: -50.770784950658964 + sys_corr_32: 52.04872933872312 + sys_corr_33: 48.0551850057061 + sys_corr_34: -161.3278603944194 + sys_corr_35: -135.41587792080045 + sys_corr_36: -216.6785459946821 + sys_corr_37: 3.4936241494863194 + sys_corr_38: -57.834864511718145 + sys_corr_39: -97.66423875958722 + sys_corr_40: -1.1538198613198114 + sys_corr_41: 0.670650526260348 + sys_corr_42: 16.521983234617313 + sys_corr_43: -15.39440856660083 + sys_corr_44: 2.8883586255358047 + sys_corr_45: -19.86773684648953 + sys_corr_46: -10.722026921196935 + sys_corr_47: -19.136893698737975 + sys_corr_48: 28.33893599980031 + sys_corr_49: -39.54753750705111 + sys_corr_50: 45.23960984878636 + sys_corr_51: 22.131053959001772 + sys_corr_52: -0.12958728724265595 + sys_corr_53: 11.330635094497575 + sys_corr_54: -6.830460174659876 + sys_corr_55: -10.390560244222863 + sys_corr_56: 1.1402305301604119 + sys_corr_57: 12.127812046089764 + sys_corr_58: -11.153357176444851 + sys_corr_59: 0.7720776964859061 + sys_corr_60: 10.909668188388112 + sys_corr_61: 0.943783961244185 + sys_corr_62: -9.885995301116818 + sys_corr_63: -1.8724113342966833 + sys_corr_64: -5.7687875389050225 + sys_corr_65: 0.731307851638896 + sys_corr_66: -7.190575648662602 + sys_corr_67: -2.2046325780631393 + sys_corr_68: -13.48813971390848 + sys_corr_69: -5.232881961793876 + sys_corr_70: 3.435001517974676 + sys_corr_71: -13.525262487083024 + sys_corr_72: 0.6383529713695809 + sys_corr_73: -8.845906222695698 + sys_corr_74: -5.2151346134023315 + sys_corr_75: 0.5382760149879304 + sys_corr_76: -4.68947704348537 + sys_corr_77: 1.342682321825161 + sys_corr_78: 3.0634808788622934 + sys_corr_79: 7.26909085090421 + sys_corr_80: -0.5783795444275301 + sys_corr_81: -5.140781074684017 + sys_corr_82: -4.7954211416455585 + sys_corr_83: -5.536120159078597 + sys_corr_84: 0.54156144460693 + sys_corr_85: -1.9692945624203333 + sys_corr_86: -2.1153682409417573 + sys_corr_87: 11.021103641964789 + sys_corr_88: -1.105399639703145 + sys_corr_89: 0.6540721505957909 + sys_corr_90: -0.47024823760184437 + sys_corr_91: -0.7822802561775243 + sys_corr_92: -0.35189172230360544 + sys_corr_93: -0.015580690393448665 + sys_corr_94: -0.4948333620708121 + sys_corr_95: 0.5719363582371658 + sys_corr_96: -0.008721413671006255 + sys_corr_97: 0.12732807249766062 + sys_corr_98: -0.3220789040194106 + sys_corr_99: 0.554325208988827 + sys_corr_100: 0.6000595378580352 + sys_corr_101: 1.1859902581729358 + sys_corr_102: 3.247401402133022 + sys_corr_103: -1.353093147241383 + sys_corr_104: -1.0533345553136537 + sys_corr_105: -0.1609479774723569 + sys_corr_106: 0.33155440937544967 + sys_corr_107: -0.32878236218763973 + sys_corr_108: 0.028446122100354913 + sys_corr_109: -0.5453737232216423 + sys_corr_110: 0.35117633037122675 + sys_corr_111: 0.04697015435894773 + sys_corr_112: -0.22400820372423927 + sys_corr_113: -0.20086342378024657 + sys_corr_114: 0.000741632839513675 + sys_corr_115: 0.035651589934201845 + sys_corr_116: -0.0009382932484438305 + sys_corr_117: -0.022548101291690745 + sys_corr_118: 0.06922829865382052 + sys_corr_119: 0.004842655955645603 + sys_corr_120: 0.016472603732919644 + sys_corr_121: 0.0012154567643330265 + sys_corr_122: 0.07107713152913941 + sys_corr_123: 0.03332712222886006 + sys_corr_124: 0.05248234235435475 + sys_corr_125: -0.04541260543123243 + sys_corr_126: 0.017232521969404616 + sys_corr_127: 0.22439641224576282 + sys_corr_128: -0.08140988531412528 + sys_corr_129: 0.004570402477718689 + sys_corr_130: -0.003963284411704285 + sys_corr_131: -0.023716462730228715 + sys_corr_132: -0.039602476618905764 stat: 0.0 luminosity: 591.248768 -- sys_corr_1: 335.06989399246254 - sys_corr_2: 142.9444006495219 - sys_corr_3: 13.198081736493277 - sys_corr_4: 111.80442369818641 - sys_corr_5: 99.05715782444277 - sys_corr_6: -593.7074081063287 - sys_corr_7: 21.14098362243369 - sys_corr_8: 15.267784909318069 - sys_corr_9: 0.05054637864437132 - sys_corr_10: 17.455414974807518 - sys_corr_11: 6.036608648054453 - sys_corr_12: -9.316533459127182 - sys_corr_13: -30.454732841486962 - sys_corr_14: 8.24660716343305 - sys_corr_15: 1.5245475757264244 - sys_corr_16: -0.12956883264074234 - sys_corr_17: -66.09249680689985 - sys_corr_18: -0.15249408339511034 - sys_corr_19: 58.11682038843097 - sys_corr_20: 23.855317396104102 - sys_corr_21: 2.2100990175638926 - sys_corr_22: 183.95373214566905 - sys_corr_23: -16.22200042055778 - sys_corr_24: 198.49545747370618 - sys_corr_25: -32.277491119142695 - sys_corr_26: -92.10088650257381 - sys_corr_27: 61.42062648401921 - sys_corr_28: -50.35388334721491 - sys_corr_29: 97.60974929400426 - sys_corr_30: -97.25541092487363 - sys_corr_31: 37.29751438978745 - sys_corr_32: 42.316813809222324 - sys_corr_33: -57.18793777021727 - sys_corr_34: -1.3930468669096074 - sys_corr_35: -98.02039527672417 - sys_corr_36: 168.3146436447953 - sys_corr_37: 171.43361272342705 - sys_corr_38: -94.06621682316893 - sys_corr_39: -125.23100738444045 - sys_corr_40: -37.32263430165949 - sys_corr_41: -74.70937419578578 - sys_corr_42: 21.99824516570812 - sys_corr_43: 64.2642026472672 - sys_corr_44: -69.49890974501703 - sys_corr_45: 34.078092217008866 - sys_corr_46: 6.557426106988723 - sys_corr_47: 41.285160750738854 - sys_corr_48: -36.145641879026705 - sys_corr_49: 5.443212929832457 - sys_corr_50: 51.34361248837055 - sys_corr_51: -3.963884224393138 - sys_corr_52: 10.032848554982806 - sys_corr_53: -3.695439258451245 - sys_corr_54: 11.18975538190658 - sys_corr_55: -0.34860333966149115 - sys_corr_56: 14.166232822944316 - sys_corr_57: 8.039270859111342 - sys_corr_58: 6.822769777759888 - sys_corr_59: 6.552160479981141 - sys_corr_60: 3.8174969871950974 - sys_corr_61: 1.7077650954774073 - sys_corr_62: 13.285350687409284 - sys_corr_63: 0.9240715134482252 - sys_corr_64: 7.084455063714205 - sys_corr_65: 12.252095899949701 - sys_corr_66: 1.9568889561177456 - sys_corr_67: 3.096186293511052 - sys_corr_68: 7.556625541004792 - sys_corr_69: -0.9238909498893043 - sys_corr_70: 2.588244035700262 - sys_corr_71: -2.061954740407645 - sys_corr_72: 0.1308117051128846 - sys_corr_73: -8.030535710952718 - sys_corr_74: 9.611627201378091 - sys_corr_75: 13.957539112065946 - sys_corr_76: -2.428757031866228 - sys_corr_77: 10.764496068390702 - sys_corr_78: -7.142011311749718 - sys_corr_79: 0.48616334492923013 - sys_corr_80: -2.8104317104913625 - sys_corr_81: -10.689793109703473 - sys_corr_82: -11.634207252728821 - sys_corr_83: 8.009025663808226 - sys_corr_84: 1.1234691814319422 - sys_corr_85: -1.0004384965162902 - sys_corr_86: 3.048824141432493 - sys_corr_87: 0.2450136078768965 - sys_corr_88: -2.84004113508636 - sys_corr_89: -0.6033214310028159 - sys_corr_90: 1.000112449383832 - sys_corr_91: -1.3430543656314538 - sys_corr_92: 0.9353125948061083 - sys_corr_93: -0.08731063926001487 - sys_corr_94: -0.6127768533884537 - sys_corr_95: -0.3294530853624942 - sys_corr_96: 0.09477347052145457 - sys_corr_97: 0.3161791144203872 - sys_corr_98: -0.04260133510636989 - sys_corr_99: -0.507967102453772 - sys_corr_100: -0.023983733943283857 - sys_corr_101: 0.17154969581791468 - sys_corr_102: 0.25774685167271133 - sys_corr_103: -0.3775150811204813 - sys_corr_104: 0.23748085370594926 - sys_corr_105: -0.9004816485591203 - sys_corr_106: -0.5648722450751302 - sys_corr_107: -0.10531917537829506 - sys_corr_108: -0.43672249444789873 - sys_corr_109: -0.06771598653607759 - sys_corr_110: 0.15382867947067702 - sys_corr_111: -0.5070387137902692 - sys_corr_112: 0.0044291641159974315 - sys_corr_113: 0.039254146517620894 - sys_corr_114: 0.002912163767075284 - sys_corr_115: 0.06726850251098933 - sys_corr_116: 0.03395717642921333 - sys_corr_117: 0.028768977385756518 - sys_corr_118: 0.03463846117101406 - sys_corr_119: 0.0020554914885641483 - sys_corr_120: -0.00602169589242203 - sys_corr_121: 0.002798005856069082 - sys_corr_122: -0.0022235209350199227 - sys_corr_123: 0.005716459215007081 - sys_corr_124: -0.02155723734660505 - sys_corr_125: -0.008739286995872668 - sys_corr_126: 0.011531303849187682 - sys_corr_127: 0.3493760054295083 - sys_corr_128: -0.2997980923429796 - sys_corr_129: 0.09187960092158769 - sys_corr_130: -0.018339787456973573 - sys_corr_131: 0.012584655735366788 - sys_corr_132: 0.04757305030278444 +- sys_corr_1: 335.0698939924626 + sys_corr_2: 142.9444006495227 + sys_corr_3: 13.19808173649328 + sys_corr_4: 111.80442369818857 + sys_corr_5: 99.05715782443976 + sys_corr_6: -593.7074081063281 + sys_corr_7: 21.140983622432937 + sys_corr_8: 15.267784909318912 + sys_corr_9: 0.050546378644614774 + sys_corr_10: 17.45541497480811 + sys_corr_11: 6.036608648054132 + sys_corr_12: -9.31653345912728 + sys_corr_13: 30.45473284148712 + sys_corr_14: -8.246607163433346 + sys_corr_15: -1.5245475757260691 + sys_corr_16: 0.12956883263982197 + sys_corr_17: -66.09249680690041 + sys_corr_18: 0.15249408339369025 + sys_corr_19: 58.116820388429495 + sys_corr_20: 23.855317396102844 + sys_corr_21: 2.210099017561214 + sys_corr_22: 183.95373214566942 + sys_corr_23: -16.222000420559215 + sys_corr_24: 198.49545747370587 + sys_corr_25: -32.277491119144315 + sys_corr_26: -92.10088650257812 + sys_corr_27: 61.42062648402118 + sys_corr_28: -50.35388334721592 + sys_corr_29: 97.60974929400398 + sys_corr_30: -97.25541092487306 + sys_corr_31: 37.297514389786826 + sys_corr_32: -42.316813809221905 + sys_corr_33: 57.18793777022428 + sys_corr_34: -1.3930468669137885 + sys_corr_35: -98.02039527672902 + sys_corr_36: 168.3146436448089 + sys_corr_37: -171.4336127234072 + sys_corr_38: 94.06621682319526 + sys_corr_39: 125.2310073844137 + sys_corr_40: 37.322634301659164 + sys_corr_41: -74.70937419577929 + sys_corr_42: -21.9982451657287 + sys_corr_43: 64.26420264725421 + sys_corr_44: -69.49890974500526 + sys_corr_45: -34.07809221701067 + sys_corr_46: -6.557426106979985 + sys_corr_47: -41.28516075075467 + sys_corr_48: 36.14564187903006 + sys_corr_49: -5.443212929830677 + sys_corr_50: 51.34361248836935 + sys_corr_51: -3.9638842243858132 + sys_corr_52: 10.032848554984687 + sys_corr_53: 3.6954392584509734 + sys_corr_54: -11.189755381903451 + sys_corr_55: 0.3486033396649537 + sys_corr_56: -14.166232822940827 + sys_corr_57: 8.03927085911621 + sys_corr_58: -6.822769777754059 + sys_corr_59: 6.552160479987066 + sys_corr_60: -3.8174969871954896 + sys_corr_61: -1.7077650954788826 + sys_corr_62: -13.285350687409416 + sys_corr_63: 0.9240715134415647 + sys_corr_64: 7.0844550637171935 + sys_corr_65: 12.252095899956167 + sys_corr_66: -1.9568889561207286 + sys_corr_67: 3.096186293515995 + sys_corr_68: -7.556625541007168 + sys_corr_69: -0.9238909498867957 + sys_corr_70: -2.5882440357014738 + sys_corr_71: -2.061954740406422 + sys_corr_72: -0.13081170511373238 + sys_corr_73: 8.030535710953252 + sys_corr_74: 9.611627201374572 + sys_corr_75: 13.95753911207075 + sys_corr_76: -2.428757031859134 + sys_corr_77: -10.764496068390855 + sys_corr_78: 2.810431710491934 + sys_corr_79: -7.142011311749472 + sys_corr_80: 0.4861633449303517 + sys_corr_81: 10.689793109702686 + sys_corr_82: 11.63420725272908 + sys_corr_83: 8.009025663809988 + sys_corr_84: -1.1234691814327575 + sys_corr_85: -1.0004384965172302 + sys_corr_86: -3.048824141433221 + sys_corr_87: -0.2450136078769606 + sys_corr_88: -2.840041135080805 + sys_corr_89: 1.00011244938384 + sys_corr_90: -0.6033214310028018 + sys_corr_91: -1.3430543656315757 + sys_corr_92: -0.9353125948042703 + sys_corr_93: -0.08731063926000894 + sys_corr_94: -0.6127768533884578 + sys_corr_95: -0.32945308536245405 + sys_corr_96: -0.09477347052140686 + sys_corr_97: 0.31617911442033314 + sys_corr_98: 0.04260133510633903 + sys_corr_99: -0.5079671024537756 + sys_corr_100: 0.171549695817948 + sys_corr_101: -0.2577468516725268 + sys_corr_102: -0.37751508111986426 + sys_corr_103: -0.23748085370596536 + sys_corr_104: 0.9004816485591453 + sys_corr_105: 0.02398373394321444 + sys_corr_106: -0.5648722450750934 + sys_corr_107: -0.43672249444783434 + sys_corr_108: -0.06771598653607819 + sys_corr_109: -0.15382867947066345 + sys_corr_110: 0.10531917537824387 + sys_corr_111: 0.5070387137902604 + sys_corr_112: 0.004429164116006488 + sys_corr_113: -0.03925414651760174 + sys_corr_114: 0.0029121637670748908 + sys_corr_115: 0.06726850251098918 + sys_corr_116: -0.03395717642920051 + sys_corr_117: -0.028768977385755408 + sys_corr_118: -0.03463846117101332 + sys_corr_119: -0.002055491488564057 + sys_corr_120: 0.006021695892416861 + sys_corr_121: -0.0027980058560685846 + sys_corr_122: 0.0057164592150039115 + sys_corr_123: -0.002223520935024491 + sys_corr_124: -0.021557237346593313 + sys_corr_125: -0.008739286995875551 + sys_corr_126: -0.011531303849183898 + sys_corr_127: 0.34937600542954006 + sys_corr_128: -0.29979809234301275 + sys_corr_129: 0.09187960092159371 + sys_corr_130: -0.018339787456972144 + sys_corr_131: -0.012584655735360576 + sys_corr_132: 0.04757305030278339 stat: 0.0 luminosity: 563.851222 -- sys_corr_1: 330.50791892465656 - sys_corr_2: 121.91077423685138 - sys_corr_3: -5.974602503540412 - sys_corr_4: 115.14640103426727 - sys_corr_5: 103.54414448778684 - sys_corr_6: -570.7826348085104 - sys_corr_7: 29.748730937526194 - sys_corr_8: 21.465953431970508 - sys_corr_9: 15.608660078658664 - sys_corr_10: 10.270097047608024 - sys_corr_11: 24.140754671708965 - sys_corr_12: -13.868590989889434 - sys_corr_13: -21.749806355388184 - sys_corr_14: 4.337640768965872 - sys_corr_15: 2.285986382288461 - sys_corr_16: -4.463503996015811 - sys_corr_17: -3.7718103376662304 - sys_corr_18: -2.5898535254583437 - sys_corr_19: 63.80943135125645 - sys_corr_20: 27.187056192597506 - sys_corr_21: 0.0375148895925599 - sys_corr_22: 148.8924968065862 - sys_corr_23: -6.429197435801704 - sys_corr_24: 166.11815939973638 - sys_corr_25: -45.22527319698073 - sys_corr_26: -110.90756213315225 - sys_corr_27: 49.049191931023685 - sys_corr_28: -27.51902204517952 - sys_corr_29: 103.9502662892879 - sys_corr_30: -115.309125550063 - sys_corr_31: 21.70394753585195 - sys_corr_32: 54.4754633477503 - sys_corr_33: -17.088577659442713 - sys_corr_34: 62.2751841587393 - sys_corr_35: 340.36466181718527 - sys_corr_36: -70.29578135638057 - sys_corr_37: 4.3711657762744585 - sys_corr_38: -41.32643779910298 - sys_corr_39: 18.903536567776865 - sys_corr_40: -16.484083963244736 - sys_corr_41: -14.519261051112625 - sys_corr_42: -10.306052519023082 - sys_corr_43: 12.366385064024382 - sys_corr_44: -1.6534597264460829 - sys_corr_45: -40.21680093467889 - sys_corr_46: 32.485465002616984 - sys_corr_47: 24.32897812745604 - sys_corr_48: -6.95681767432483 - sys_corr_49: 9.34844687408034 - sys_corr_50: 29.07432009412554 - sys_corr_51: -12.860051749835069 - sys_corr_52: 0.5923930829494343 - sys_corr_53: -13.351669185881619 - sys_corr_54: 13.719184395389998 - sys_corr_55: -0.6095012071250117 - sys_corr_56: -1.4835105515901221 - sys_corr_57: 15.702635067347693 - sys_corr_58: 4.29050267708049 - sys_corr_59: 7.859383046607628 - sys_corr_60: -2.3453335940441224 - sys_corr_61: -5.878679131961316 - sys_corr_62: -2.0162740667468224 - sys_corr_63: -8.526681339256584 - sys_corr_64: 4.048309133813802 - sys_corr_65: -1.1249694316304633 - sys_corr_66: 1.844563947733765 - sys_corr_67: 2.206358485898524 - sys_corr_68: -1.2110157796298162 - sys_corr_69: -6.708435860542351 - sys_corr_70: -1.941054097302857 - sys_corr_71: -5.987753785203285 - sys_corr_72: 1.0413581301018902 - sys_corr_73: 4.275167951213876 - sys_corr_74: -0.3358837198228301 - sys_corr_75: -2.49594187311756 - sys_corr_76: 0.09858202247988165 - sys_corr_77: -2.9987648362728416 - sys_corr_78: -1.074037916227597 - sys_corr_79: -1.2480038458562928 - sys_corr_80: 2.239014264766538 - sys_corr_81: 7.255086496938406 - sys_corr_82: 4.291945770178133 - sys_corr_83: -0.287688563855025 - sys_corr_84: -0.47166775383135656 - sys_corr_85: 1.237763673595672 - sys_corr_86: -2.6440221384372773 - sys_corr_87: 12.292194340650168 - sys_corr_88: 1.481979895508037 - sys_corr_89: 0.41797504468384244 - sys_corr_90: -0.22325437928549743 - sys_corr_91: 1.0186504802017402 - sys_corr_92: -3.732989904564962 - sys_corr_93: 0.01625343796582078 - sys_corr_94: 0.23260648088115998 - sys_corr_95: -0.055416305278494275 - sys_corr_96: 0.053628208341146594 - sys_corr_97: 0.12060538534932026 - sys_corr_98: -0.07046445217450875 - sys_corr_99: -0.11766177847035561 - sys_corr_100: 0.3518424612488078 - sys_corr_101: 0.14022024367151883 - sys_corr_102: 0.20204429474803912 - sys_corr_103: -1.6176613112031821 - sys_corr_104: -0.2578537521841364 - sys_corr_105: -1.0289825964073034 - sys_corr_106: 0.16922143235064882 - sys_corr_107: 0.07733106183492974 - sys_corr_108: -0.5433302200631026 - sys_corr_109: 0.0020654788814142475 - sys_corr_110: -0.030156150240200144 - sys_corr_111: -0.39579642519580505 - sys_corr_112: -0.025406787400918555 - sys_corr_113: -0.002848484288372963 - sys_corr_114: 0.0009966059650473836 - sys_corr_115: 0.048113470771448785 - sys_corr_116: 0.03712260705311236 - sys_corr_117: 0.027938412881781477 - sys_corr_118: -0.014786342649617167 - sys_corr_119: -0.0031620158021105163 - sys_corr_120: -0.015938224135001188 - sys_corr_121: -0.001232213565966386 - sys_corr_122: 0.0076624005358773995 - sys_corr_123: 0.017390585625751142 - sys_corr_124: -0.03917308250997549 - sys_corr_125: -0.02212370414421171 - sys_corr_126: 0.01386595598122048 - sys_corr_127: 0.09936638277095897 - sys_corr_128: -0.024501002878435138 - sys_corr_129: -0.0749713273220097 - sys_corr_130: -0.025581662898064194 - sys_corr_131: 0.013622495510429168 - sys_corr_132: 0.0566403398866606 +- sys_corr_1: 330.50791892465634 + sys_corr_2: 121.91077423685216 + sys_corr_3: -5.974602503540623 + sys_corr_4: 115.14640103426954 + sys_corr_5: 103.5441444877835 + sys_corr_6: -570.7826348085099 + sys_corr_7: 29.748730937525615 + sys_corr_8: 21.465953431971755 + sys_corr_9: 15.608660078659234 + sys_corr_10: 10.270097047607502 + sys_corr_11: 24.14075467170795 + sys_corr_12: -13.868590989890677 + sys_corr_13: 21.749806355388763 + sys_corr_14: -4.337640768966524 + sys_corr_15: -2.2859863822875637 + sys_corr_16: 4.4635039960161755 + sys_corr_17: -3.77181033766639 + sys_corr_18: 2.5898535254576327 + sys_corr_19: 63.80943135125586 + sys_corr_20: 27.187056192596156 + sys_corr_21: 0.03751488959040876 + sys_corr_22: 148.89249680658628 + sys_corr_23: -6.429197435802901 + sys_corr_24: 166.1181593997375 + sys_corr_25: -45.225273196981696 + sys_corr_26: -110.90756213315439 + sys_corr_27: 49.049191931026776 + sys_corr_28: -27.51902204517998 + sys_corr_29: 103.95026628928913 + sys_corr_30: -115.30912555006131 + sys_corr_31: 21.703947535848403 + sys_corr_32: -54.475463347751564 + sys_corr_33: 17.08857765945142 + sys_corr_34: 62.27518415874447 + sys_corr_35: 340.36466181719135 + sys_corr_36: -70.29578135637256 + sys_corr_37: -4.3711657762795335 + sys_corr_38: 41.326437799105236 + sys_corr_39: -18.903536567767727 + sys_corr_40: 16.48408396324762 + sys_corr_41: -14.519261051115963 + sys_corr_42: 10.306052519012724 + sys_corr_43: 12.36638506403309 + sys_corr_44: -1.6534597264410063 + sys_corr_45: 40.21680093466474 + sys_corr_46: -32.485465002633504 + sys_corr_47: -24.328978127459095 + sys_corr_48: 6.956817674328044 + sys_corr_49: -9.348446874081347 + sys_corr_50: 29.07432009412523 + sys_corr_51: -12.860051749833817 + sys_corr_52: 0.5923930829502868 + sys_corr_53: 13.35166918588359 + sys_corr_54: -13.719184395387115 + sys_corr_55: 0.6095012071304872 + sys_corr_56: 1.4835105515936418 + sys_corr_57: 15.702635067347869 + sys_corr_58: -4.290502677072413 + sys_corr_59: 7.859383046609648 + sys_corr_60: 2.3453335940418922 + sys_corr_61: 5.878679131960305 + sys_corr_62: 2.016274066746196 + sys_corr_63: -8.526681339257724 + sys_corr_64: 4.04830913381336 + sys_corr_65: -1.124969431625517 + sys_corr_66: -1.84456394773217 + sys_corr_67: 2.206358485898236 + sys_corr_68: 1.211015779628092 + sys_corr_69: -6.708435860543044 + sys_corr_70: 1.9410540973082375 + sys_corr_71: -5.987753785204752 + sys_corr_72: -1.0413581301019061 + sys_corr_73: -4.275167951211757 + sys_corr_74: -0.33588371982465737 + sys_corr_75: -2.4959418731186482 + sys_corr_76: 0.09858202247923656 + sys_corr_77: 2.9987648362721044 + sys_corr_78: -2.2390142647664772 + sys_corr_79: -1.0740379162276794 + sys_corr_80: -1.2480038458570557 + sys_corr_81: -7.2550864969389375 + sys_corr_82: -4.291945770178747 + sys_corr_83: -0.28768856385637015 + sys_corr_84: 0.47166775383128196 + sys_corr_85: 1.237763673595976 + sys_corr_86: 2.644022138433325 + sys_corr_87: -12.292194340650882 + sys_corr_88: 1.481979895502834 + sys_corr_89: -0.223254379285413 + sys_corr_90: 0.4179750446839187 + sys_corr_91: 1.0186504802018557 + sys_corr_92: 3.7329899045637127 + sys_corr_93: 0.01625343796580947 + sys_corr_94: 0.23260648088124136 + sys_corr_95: -0.055416305278513565 + sys_corr_96: -0.053628208341154414 + sys_corr_97: 0.12060538534926264 + sys_corr_98: 0.07046445217445814 + sys_corr_99: -0.11766177847042471 + sys_corr_100: 0.1402202436715982 + sys_corr_101: -0.2020442947476319 + sys_corr_102: -1.6176613112032536 + sys_corr_103: 0.2578537521843737 + sys_corr_104: 1.0289825964082633 + sys_corr_105: -0.351842461248791 + sys_corr_106: 0.16922143235064546 + sys_corr_107: -0.5433302200631098 + sys_corr_108: 0.002065478881387669 + sys_corr_109: 0.030156150240218855 + sys_corr_110: -0.07733106183503578 + sys_corr_111: 0.3957964251958247 + sys_corr_112: -0.025406787400906815 + sys_corr_113: 0.0028484842883728404 + sys_corr_114: 0.0009966059650464527 + sys_corr_115: 0.048113470771443935 + sys_corr_116: -0.03712260705310016 + sys_corr_117: -0.02793841288177421 + sys_corr_118: 0.014786342649600197 + sys_corr_119: 0.0031620158021093527 + sys_corr_120: 0.01593822413499716 + sys_corr_121: 0.0012322135659643602 + sys_corr_122: 0.017390585625742253 + sys_corr_123: 0.007662400535869187 + sys_corr_124: -0.03917308250997489 + sys_corr_125: -0.022123704144205912 + sys_corr_126: -0.01386595598121855 + sys_corr_127: 0.09936638277101484 + sys_corr_128: -0.024501002878465218 + sys_corr_129: -0.07497132732200504 + sys_corr_130: -0.02558166289806321 + sys_corr_131: -0.013622495510415084 + sys_corr_132: 0.05664033988666384 stat: 0.0 luminosity: 569.4133280000001 -- sys_corr_1: 308.1465857329446 - sys_corr_2: 108.44170850806714 - sys_corr_3: -34.75978994586247 - sys_corr_4: 86.83570429407267 - sys_corr_5: 106.91036157076667 - sys_corr_6: -558.8619958432079 - sys_corr_7: 31.280619035491323 - sys_corr_8: 2.3217867646266517 - sys_corr_9: -5.605752059195621 - sys_corr_10: -2.8047858842347715 - sys_corr_11: -3.992934950412608 - sys_corr_12: 4.128841215151783 - sys_corr_13: -13.597641386531594 - sys_corr_14: 36.810779766881026 - sys_corr_15: -5.085305262322293 - sys_corr_16: -11.214698757215226 - sys_corr_17: -24.439240828400166 - sys_corr_18: 3.6925152461127078 - sys_corr_19: 9.512474604684318 - sys_corr_20: 8.824793539620101 - sys_corr_21: 0.17776537110486582 - sys_corr_22: 103.68601276341768 - sys_corr_23: -8.929257588887145 - sys_corr_24: 86.27984585184035 - sys_corr_25: -29.587986896990014 - sys_corr_26: -54.41176922098012 - sys_corr_27: 34.292285539514644 - sys_corr_28: -54.75054385852051 - sys_corr_29: 89.91370507008472 - sys_corr_30: -58.49386815787874 - sys_corr_31: 33.76563670193822 - sys_corr_32: -172.19839457591345 - sys_corr_33: 305.77437317010146 - sys_corr_34: 184.07249215202887 - sys_corr_35: -57.50252655435902 - sys_corr_36: 22.042580857220646 - sys_corr_37: -58.891995572389 - sys_corr_38: 12.237608137577226 - sys_corr_39: -0.3626094260467826 - sys_corr_40: 21.41243918395523 - sys_corr_41: -5.792069816588571 - sys_corr_42: -34.093091212778 - sys_corr_43: -1.875446252636382 - sys_corr_44: 6.486149170591191 - sys_corr_45: 4.9838796487466555 - sys_corr_46: 0.18980893314039293 - sys_corr_47: -4.686996575099892 - sys_corr_48: -15.420037646753624 - sys_corr_49: 25.804893614130766 - sys_corr_50: 21.0410318277257 - sys_corr_51: 0.8285247637247682 - sys_corr_52: 9.951037461651064 - sys_corr_53: 5.942900424162432 - sys_corr_54: -10.424678799419892 - sys_corr_55: 3.093435653841253 - sys_corr_56: -8.210631466357267 - sys_corr_57: 0.8606218931905677 - sys_corr_58: -4.503692915512613 - sys_corr_59: -11.285652185251797 - sys_corr_60: 0.6914463725054616 - sys_corr_61: 5.716677327458372 - sys_corr_62: -1.1333748142836984 - sys_corr_63: 2.966916794571962 - sys_corr_64: -3.880289792329532 - sys_corr_65: 6.7169809455033285 - sys_corr_66: -0.9018362087776953 - sys_corr_67: 0.5084430445100611 - sys_corr_68: -0.9040494055081866 - sys_corr_69: -1.891817018859766 - sys_corr_70: 1.443600106924771 - sys_corr_71: -3.9637389478829954 - sys_corr_72: -2.9459866007370428 - sys_corr_73: -2.6561787480371604 - sys_corr_74: -2.8710683490907525 - sys_corr_75: -4.652711406236011 - sys_corr_76: -1.0932159301536386 - sys_corr_77: 5.580782923699163 - sys_corr_78: -2.5670358886174913 - sys_corr_79: -1.4796432825766233 - sys_corr_80: 1.5911808218990209 - sys_corr_81: -4.881365519429446 - sys_corr_82: 0.3222259454053025 - sys_corr_83: 2.1716620961196083 - sys_corr_84: 1.5114118638709972 - sys_corr_85: -0.2826455633620048 - sys_corr_86: -4.218073365719582 - sys_corr_87: 2.3172726921946123 - sys_corr_88: 1.6088729778037367 - sys_corr_89: 0.37421429354550556 - sys_corr_90: 0.4804777089890232 - sys_corr_91: 1.6034711868797333 - sys_corr_92: -5.724659117673348 - sys_corr_93: 0.03215175379674224 - sys_corr_94: 0.1710634855824775 - sys_corr_95: -0.7146763870471338 - sys_corr_96: 0.13734479198986793 - sys_corr_97: 0.9549765989760565 - sys_corr_98: -0.4330528924154873 - sys_corr_99: -0.13176947821597867 - sys_corr_100: -0.1684506690645848 - sys_corr_101: -0.28838328429694604 - sys_corr_102: -0.3550117130190511 - sys_corr_103: 2.4346591846136656 - sys_corr_104: 0.5390751112116727 - sys_corr_105: 0.8169400542235385 - sys_corr_106: 0.00970301382913598 - sys_corr_107: -0.23917762543313 - sys_corr_108: -0.3213240439230534 - sys_corr_109: 0.12251987483569876 - sys_corr_110: 0.005309184303311098 - sys_corr_111: 0.0027685914841410865 - sys_corr_112: 0.019863401516784892 - sys_corr_113: 0.07986585513128731 - sys_corr_114: 0.0016984623182629654 - sys_corr_115: 0.10483431712729141 - sys_corr_116: 0.006142302709177931 - sys_corr_117: -1.4340339026914576e-05 - sys_corr_118: -0.03396087746924029 - sys_corr_119: -0.0010322165175367755 - sys_corr_120: 0.0011502216730608342 - sys_corr_121: 0.0013335209928531477 - sys_corr_122: 0.0010599329919232167 - sys_corr_123: 0.008265423226673625 - sys_corr_124: 0.03388112413394752 - sys_corr_125: -0.00688850493858439 - sys_corr_126: 0.000719815026244494 - sys_corr_127: 0.25617296430035935 - sys_corr_128: -0.053316353900106514 - sys_corr_129: -0.04205044482816488 - sys_corr_130: -0.007219817989774792 - sys_corr_131: 0.005417060745104405 - sys_corr_132: 0.02386068053869585 +- sys_corr_1: 308.1465857329438 + sys_corr_2: 108.44170850806806 + sys_corr_3: -34.7597899458625 + sys_corr_4: 86.83570429407487 + sys_corr_5: 106.91036157076302 + sys_corr_6: -558.8619958432067 + sys_corr_7: 31.280619035491107 + sys_corr_8: 2.321786764627513 + sys_corr_9: -5.605752059195334 + sys_corr_10: -2.804785884234477 + sys_corr_11: -3.99293495041196 + sys_corr_12: 4.128841215151998 + sys_corr_13: 13.597641386531187 + sys_corr_14: -36.81077976688213 + sys_corr_15: 5.085305262322664 + sys_corr_16: 11.214698757215007 + sys_corr_17: -24.439240828400433 + sys_corr_18: -3.6925152461132353 + sys_corr_19: 9.512474604683035 + sys_corr_20: 8.824793539619158 + sys_corr_21: 0.17776537110482332 + sys_corr_22: 103.6860127634186 + sys_corr_23: -8.929257588887662 + sys_corr_24: 86.27984585184193 + sys_corr_25: -29.587986896991115 + sys_corr_26: -54.41176922098238 + sys_corr_27: 34.29228553951577 + sys_corr_28: -54.75054385852275 + sys_corr_29: 89.91370507008537 + sys_corr_30: -58.4938681578828 + sys_corr_31: 33.76563670193613 + sys_corr_32: 172.19839457591112 + sys_corr_33: -305.77437317008776 + sys_corr_34: 184.0724921520463 + sys_corr_35: -57.50252655434451 + sys_corr_36: 22.042580857219107 + sys_corr_37: 58.89199557238984 + sys_corr_38: -12.237608137577045 + sys_corr_39: 0.3626094260606844 + sys_corr_40: -21.412439183954792 + sys_corr_41: -5.792069816585581 + sys_corr_42: 34.093091212772435 + sys_corr_43: -1.8754462526192905 + sys_corr_44: 6.486149170595593 + sys_corr_45: -4.983879648744443 + sys_corr_46: -0.18980893313763156 + sys_corr_47: 4.686996575097182 + sys_corr_48: 15.420037646757926 + sys_corr_49: -25.804893614126428 + sys_corr_50: 21.041031827726215 + sys_corr_51: 0.8285247637275481 + sys_corr_52: 9.95103746165316 + sys_corr_53: -5.942900424160386 + sys_corr_54: 10.424678799418698 + sys_corr_55: -3.0934356538428283 + sys_corr_56: 8.210631466354398 + sys_corr_57: 0.8606218931859154 + sys_corr_58: 4.503692915503462 + sys_corr_59: -11.285652185254918 + sys_corr_60: -0.691446372505274 + sys_corr_61: -5.716677327456046 + sys_corr_62: 1.1333748142850688 + sys_corr_63: 2.9669167945704213 + sys_corr_64: -3.8802897923271193 + sys_corr_65: 6.716980945498825 + sys_corr_66: 0.9018362087771484 + sys_corr_67: 0.5084430445096523 + sys_corr_68: 0.9040494055060695 + sys_corr_69: -1.8918170188598498 + sys_corr_70: -1.443600106923189 + sys_corr_71: -3.963738947881664 + sys_corr_72: 2.9459866007362563 + sys_corr_73: 2.6561787480365937 + sys_corr_74: -2.871068349091085 + sys_corr_75: -4.652711406234471 + sys_corr_76: -1.0932159301556756 + sys_corr_77: -5.580782923702415 + sys_corr_78: -1.5911808218989076 + sys_corr_79: -2.5670358886172067 + sys_corr_80: -1.479643282576395 + sys_corr_81: 4.881365519428468 + sys_corr_82: -0.32222594540537414 + sys_corr_83: 2.171662096120489 + sys_corr_84: -1.5114118638707497 + sys_corr_85: -0.2826455633622803 + sys_corr_86: 4.21807336571229 + sys_corr_87: -2.317272692195708 + sys_corr_88: 1.6088729777945314 + sys_corr_89: 0.4804777089890226 + sys_corr_90: 0.3742142935456243 + sys_corr_91: 1.6034711868797913 + sys_corr_92: 5.724659117671673 + sys_corr_93: 0.03215175379678868 + sys_corr_94: 0.17106348558274947 + sys_corr_95: -0.714676387047389 + sys_corr_96: -0.13734479198990796 + sys_corr_97: 0.9549765989762868 + sys_corr_98: 0.43305289241554573 + sys_corr_99: -0.1317694782158668 + sys_corr_100: -0.2883832842970804 + sys_corr_101: 0.35501171301841244 + sys_corr_102: 2.4346591846140964 + sys_corr_103: -0.539075111212102 + sys_corr_104: -0.8169400542250014 + sys_corr_105: 0.16845066906449835 + sys_corr_106: 0.009703013829044 + sys_corr_107: -0.3213240439230717 + sys_corr_108: 0.12251987483569651 + sys_corr_109: -0.005309184303329891 + sys_corr_110: 0.2391776254333026 + sys_corr_111: -0.0027685914841232536 + sys_corr_112: 0.019863401516788882 + sys_corr_113: -0.07986585513128597 + sys_corr_114: 0.0016984623182623034 + sys_corr_115: 0.10483431712729273 + sys_corr_116: -0.006142302709159418 + sys_corr_117: 1.43403390336188e-05 + sys_corr_118: 0.033960877469228275 + sys_corr_119: 0.0010322165175360631 + sys_corr_120: -0.001150221673064574 + sys_corr_121: -0.0013335209928563082 + sys_corr_122: 0.0082654232266711 + sys_corr_123: 0.0010599329919234151 + sys_corr_124: 0.03388112413394809 + sys_corr_125: -0.006888504938579439 + sys_corr_126: -0.0007198150262401101 + sys_corr_127: 0.2561729643003013 + sys_corr_128: -0.05331635390011392 + sys_corr_129: -0.04205044482817094 + sys_corr_130: -0.00721981798977158 + sys_corr_131: -0.005417060745099954 + sys_corr_132: 0.023860680538701853 stat: 0.0 luminosity: 564.811698 -- sys_corr_1: 303.47112678912924 - sys_corr_2: 85.22586392919985 - sys_corr_3: -55.87553500103537 - sys_corr_4: 78.21183975253415 - sys_corr_5: 123.16935817760105 - sys_corr_6: -553.8453310598027 - sys_corr_7: 54.55005990535722 - sys_corr_8: 4.551928276621814 - sys_corr_9: -7.381512839348459 - sys_corr_10: -19.24707420390736 - sys_corr_11: 3.726363411838736 - sys_corr_12: 21.0918445428988 - sys_corr_13: 12.975190357868177 - sys_corr_14: 24.9077331403355 - sys_corr_15: -4.472738298577721 - sys_corr_16: -7.4956057345729095 - sys_corr_17: -11.808457615520153 - sys_corr_18: -10.150760352573416 - sys_corr_19: 1.4190587396316168 - sys_corr_20: 10.050814464218462 - sys_corr_21: -1.504407891741202 - sys_corr_22: 80.57768925681472 - sys_corr_23: -0.5656719513337132 - sys_corr_24: 32.316193731016924 - sys_corr_25: -18.289607880462892 - sys_corr_26: -42.587240814390576 - sys_corr_27: 13.707542377679431 - sys_corr_28: -72.59517510293368 - sys_corr_29: 95.52402071552247 - sys_corr_30: 66.15918985984806 - sys_corr_31: -77.45043694770516 - sys_corr_32: 252.23384809599582 - sys_corr_33: -95.31219687790409 - sys_corr_34: 225.9281129676494 - sys_corr_35: -99.67975323830929 - sys_corr_36: 20.482935219897755 - sys_corr_37: -60.49441698569694 - sys_corr_38: 43.498840560542206 - sys_corr_39: 106.30195038446404 - sys_corr_40: 26.253069957027808 - sys_corr_41: 51.01768138985514 - sys_corr_42: -32.83853245681616 - sys_corr_43: -26.059960031126256 - sys_corr_44: 2.3947398173920367 - sys_corr_45: 17.108953805551288 - sys_corr_46: 16.874747549517807 - sys_corr_47: -15.535405029576017 - sys_corr_48: -11.854406184750363 - sys_corr_49: 38.61496598361472 - sys_corr_50: 12.248555084764854 - sys_corr_51: -15.113278838352588 - sys_corr_52: -20.27881651853714 - sys_corr_53: 3.188251000901458 - sys_corr_54: 4.9263938656223685 - sys_corr_55: 5.689398518008634 - sys_corr_56: -1.6485218757828919 - sys_corr_57: 4.045247165408048 - sys_corr_58: 4.300305223652005 - sys_corr_59: 1.359418761930991 - sys_corr_60: -1.8943702848797843 - sys_corr_61: -3.3441307957794635 - sys_corr_62: -1.2824825634043557 - sys_corr_63: -2.027325616904714 - sys_corr_64: -7.920172652737834 - sys_corr_65: -3.1302343948783027 - sys_corr_66: -2.135357567355583 - sys_corr_67: 4.78484616317335 - sys_corr_68: 6.8553925231279855 - sys_corr_69: 3.8638143974283037 - sys_corr_70: 4.4997222970446655 - sys_corr_71: -2.751823944533887 - sys_corr_72: -4.957935037765239 - sys_corr_73: -0.6152341328522041 - sys_corr_74: -1.8560377948847122 - sys_corr_75: -2.10529966934855 - sys_corr_76: -0.9191687264395861 - sys_corr_77: 8.354278432877681 - sys_corr_78: 1.3610536579051238 - sys_corr_79: -0.7009330299279971 - sys_corr_80: -0.12503213845128514 - sys_corr_81: -5.8582395117842765 - sys_corr_82: 0.13667729641570267 - sys_corr_83: 3.7727305436526923 - sys_corr_84: -1.8179832576408461 - sys_corr_85: 1.8808793651769211 - sys_corr_86: -2.9321169462811527 - sys_corr_87: 0.5908777093774331 - sys_corr_88: -0.07524693436314178 - sys_corr_89: 0.8413452674554274 - sys_corr_90: 0.12893628257066186 - sys_corr_91: 1.669005599526544 - sys_corr_92: -1.9608774626990624 - sys_corr_93: 0.22173240673746544 - sys_corr_94: 0.6190552676259369 - sys_corr_95: -0.9265414775497638 - sys_corr_96: 0.07159333345382424 - sys_corr_97: 0.15456207688178641 - sys_corr_98: -0.24085969853272468 - sys_corr_99: -0.40241551624614 - sys_corr_100: 0.08636814975893957 - sys_corr_101: -0.5119256119245668 - sys_corr_102: 0.4190169732227703 - sys_corr_103: -1.0583129313847222 - sys_corr_104: -0.08960190317199423 - sys_corr_105: -0.5617302923549067 - sys_corr_106: -0.229381613299762 - sys_corr_107: 0.11766300771542758 - sys_corr_108: -0.4433923171426641 - sys_corr_109: 0.05012780447194083 - sys_corr_110: -0.13263639500271912 - sys_corr_111: 0.058876672361289274 - sys_corr_112: 0.06858859361542151 - sys_corr_113: -0.02442336980318529 - sys_corr_114: 0.0011922477442406316 - sys_corr_115: 0.046423815499367145 - sys_corr_116: 0.013484081815100121 - sys_corr_117: 0.004787890249051827 - sys_corr_118: -0.06788551318894384 - sys_corr_119: 0.0015072155330068185 - sys_corr_120: -0.0018970039238337402 - sys_corr_121: -0.0013530755767028788 - sys_corr_122: 0.00133311198572359 - sys_corr_123: 0.004836738109698698 - sys_corr_124: -0.005280503380241072 - sys_corr_125: -0.008438320637859532 - sys_corr_126: 0.0006853074730586258 - sys_corr_127: 0.23673618394262438 - sys_corr_128: 0.03384922966176439 - sys_corr_129: -0.0015049659231642098 - sys_corr_130: -0.0038593147794578437 - sys_corr_131: 0.009994248710726246 - sys_corr_132: -0.009140079135641096 +- sys_corr_1: 303.47112678912885 + sys_corr_2: 85.22586392920086 + sys_corr_3: -55.875535001035686 + sys_corr_4: 78.21183975253612 + sys_corr_5: 123.1693581775984 + sys_corr_6: -553.8453310598037 + sys_corr_7: 54.550059905356775 + sys_corr_8: 4.551928276622088 + sys_corr_9: -7.38151283934803 + sys_corr_10: -19.24707420390755 + sys_corr_11: 3.726363411841204 + sys_corr_12: 21.091844542898592 + sys_corr_13: -12.975190357868293 + sys_corr_14: -24.907733140335353 + sys_corr_15: 4.472738298577664 + sys_corr_16: 7.495605734571559 + sys_corr_17: -11.808457615520247 + sys_corr_18: 10.1507603525731 + sys_corr_19: 1.4190587396308356 + sys_corr_20: 10.050814464218423 + sys_corr_21: -1.5044078917425487 + sys_corr_22: 80.57768925681573 + sys_corr_23: -0.56567195133488 + sys_corr_24: 32.31619373101698 + sys_corr_25: -18.289607880462857 + sys_corr_26: -42.58724081439027 + sys_corr_27: 13.707542377680872 + sys_corr_28: -72.59517510293404 + sys_corr_29: 95.52402071551495 + sys_corr_30: 66.15918985985331 + sys_corr_31: -77.45043694770233 + sys_corr_32: -252.23384809598232 + sys_corr_33: 95.3121968779528 + sys_corr_34: 225.9281129676342 + sys_corr_35: -99.67975323829808 + sys_corr_36: 20.482935219874747 + sys_corr_37: 60.49441698568718 + sys_corr_38: -43.49884056055039 + sys_corr_39: -106.30195038446259 + sys_corr_40: -26.253069957032274 + sys_corr_41: 51.01768138984949 + sys_corr_42: 32.838532456830286 + sys_corr_43: -26.05996003111077 + sys_corr_44: 2.394739817390169 + sys_corr_45: -17.10895380555876 + sys_corr_46: -16.874747549506996 + sys_corr_47: 15.53540502957553 + sys_corr_48: 11.854406184755165 + sys_corr_49: -38.614965983613935 + sys_corr_50: 12.248555084764266 + sys_corr_51: -15.113278838351508 + sys_corr_52: -20.27881651853549 + sys_corr_53: -3.188251000898995 + sys_corr_54: -4.9263938656208985 + sys_corr_55: -5.689398518006105 + sys_corr_56: 1.6485218757802962 + sys_corr_57: 4.045247165408835 + sys_corr_58: -4.300305223653117 + sys_corr_59: 1.3594187619309595 + sys_corr_60: 1.894370284880219 + sys_corr_61: 3.3441307957788458 + sys_corr_62: 1.2824825634048287 + sys_corr_63: -2.027325616898979 + sys_corr_64: -7.920172652742701 + sys_corr_65: -3.130234394887524 + sys_corr_66: 2.135357567352313 + sys_corr_67: 4.784846163177628 + sys_corr_68: -6.855392523128873 + sys_corr_69: 3.8638143974299095 + sys_corr_70: -4.499722297047415 + sys_corr_71: -2.751823944533525 + sys_corr_72: 4.957935037764638 + sys_corr_73: 0.6152341328533314 + sys_corr_74: -1.8560377948825928 + sys_corr_75: -2.105299669349961 + sys_corr_76: -0.9191687264411394 + sys_corr_77: -8.35427843287725 + sys_corr_78: 0.1250321384517952 + sys_corr_79: 1.3610536579054902 + sys_corr_80: -0.7009330299280249 + sys_corr_81: 5.858239511783431 + sys_corr_82: -0.1366772964155597 + sys_corr_83: 3.772730543653823 + sys_corr_84: 1.8179832576395565 + sys_corr_85: 1.880879365176519 + sys_corr_86: 2.932116946277382 + sys_corr_87: -0.5908777093777098 + sys_corr_88: -0.07524693436817523 + sys_corr_89: 0.12893628257079645 + sys_corr_90: 0.8413452674552889 + sys_corr_91: 1.6690055995263966 + sys_corr_92: 1.9608774626989478 + sys_corr_93: 0.22173240673755026 + sys_corr_94: 0.61905526762655 + sys_corr_95: -0.9265414775502343 + sys_corr_96: -0.07159333345389823 + sys_corr_97: 0.15456207688205068 + sys_corr_98: 0.24085969853276715 + sys_corr_99: -0.40241551624603467 + sys_corr_100: -0.5119256119243891 + sys_corr_101: -0.4190169732221318 + sys_corr_102: -1.0583129313834507 + sys_corr_103: 0.08960190317184749 + sys_corr_104: 0.561730292354869 + sys_corr_105: -0.0863681497588371 + sys_corr_106: -0.2293816132996184 + sys_corr_107: -0.44339231714262956 + sys_corr_108: 0.05012780447197837 + sys_corr_109: 0.1326363950027008 + sys_corr_110: -0.1176630077153398 + sys_corr_111: -0.05887667236132153 + sys_corr_112: 0.06858859361541567 + sys_corr_113: 0.024423369803182056 + sys_corr_114: 0.001192247744239865 + sys_corr_115: 0.04642381549936991 + sys_corr_116: -0.013484081815094967 + sys_corr_117: -0.004787890249050075 + sys_corr_118: 0.06788551318894154 + sys_corr_119: -0.0015072155330067057 + sys_corr_120: 0.0018970039238349592 + sys_corr_121: 0.0013530755767032668 + sys_corr_122: 0.004836738109698682 + sys_corr_123: 0.0013331119857258487 + sys_corr_124: -0.005280503380239292 + sys_corr_125: -0.008438320637856664 + sys_corr_126: -0.0006853074730578592 + sys_corr_127: 0.23673618394261037 + sys_corr_128: 0.03384922966175574 + sys_corr_129: -0.0015049659231713525 + sys_corr_130: -0.0038593147794600147 + sys_corr_131: -0.009994248710728057 + sys_corr_132: -0.009140079135641141 stat: 0.0 luminosity: 574.477992 -- sys_corr_1: 300.2128906005674 - sys_corr_2: 84.79909138800208 - sys_corr_3: -88.9691430908872 - sys_corr_4: 62.92101813189697 - sys_corr_5: 158.6231403764149 - sys_corr_6: -582.6766946579252 - sys_corr_7: 48.54051329530065 - sys_corr_8: 10.820780210095077 - sys_corr_9: -10.374108863493415 - sys_corr_10: 2.185933143257335 - sys_corr_11: 6.675258314784795 - sys_corr_12: 13.212704148817764 - sys_corr_13: -22.500230038356186 - sys_corr_14: -4.581178544463838 - sys_corr_15: 5.268471694607148 - sys_corr_16: 4.674852567524213 - sys_corr_17: 5.640851743198664 - sys_corr_18: -34.43562453060376 - sys_corr_19: 11.800703782144168 - sys_corr_20: 15.918851537080075 - sys_corr_21: 7.061372347446518 - sys_corr_22: 7.628232222162577 - sys_corr_23: -1.3080812546486649 - sys_corr_24: -45.4824090964379 - sys_corr_25: -8.652708222085778 - sys_corr_26: -4.113904439114685 - sys_corr_27: -4.556129620851468 - sys_corr_28: -63.433961245654274 - sys_corr_29: 84.57462166237733 - sys_corr_30: 85.4444583353559 - sys_corr_31: -98.33496082861983 - sys_corr_32: -20.982166974441128 - sys_corr_33: -37.01774354074019 - sys_corr_34: -1.8441262066570743 - sys_corr_35: -5.159612178000346 - sys_corr_36: -64.90151439555045 - sys_corr_37: -141.5204761625397 - sys_corr_38: 86.554658476124 - sys_corr_39: -264.8368349367133 - sys_corr_40: -79.92565313763421 - sys_corr_41: 76.20201905378696 - sys_corr_42: 52.771841201148675 - sys_corr_43: -9.3409578061985 - sys_corr_44: -62.605177953302764 - sys_corr_45: -54.170554250419286 - sys_corr_46: 30.80485360835756 - sys_corr_47: 44.94462929640738 - sys_corr_48: -4.912503341392944 - sys_corr_49: 9.41368491724478 - sys_corr_50: 4.277286524052675 - sys_corr_51: -21.19113474678997 - sys_corr_52: -10.210408969792535 - sys_corr_53: -3.6703380628282836 - sys_corr_54: 5.781023673884863 - sys_corr_55: -9.393509059837294 - sys_corr_56: 14.748016279476701 - sys_corr_57: 1.354648025366682 - sys_corr_58: -1.8181045252752608 - sys_corr_59: 12.74088093675488 - sys_corr_60: 5.90173327436343 - sys_corr_61: -5.0940975779505 - sys_corr_62: 0.04343660059396406 - sys_corr_63: -2.5448643666050708 - sys_corr_64: 6.10312683215764 - sys_corr_65: 5.931832196234539 - sys_corr_66: 1.279752975197272 - sys_corr_67: 9.23867793256062 - sys_corr_68: -10.468064273976001 - sys_corr_69: -10.835074020452701 - sys_corr_70: 4.729455947460799 - sys_corr_71: -4.523992714889266 - sys_corr_72: -8.850614456724534 - sys_corr_73: -3.6060786427691083 - sys_corr_74: -1.7835168587789616 - sys_corr_75: -2.264997849313579 - sys_corr_76: -0.31937801144367245 - sys_corr_77: 5.40708664623217 - sys_corr_78: -8.380854531915249 - sys_corr_79: -0.5030900594789913 - sys_corr_80: 0.6743012976347735 - sys_corr_81: 3.27404479193381 - sys_corr_82: -7.0743571183306155 - sys_corr_83: -3.1151148561424202 - sys_corr_84: -1.3099844667197633 - sys_corr_85: 0.17873748195273068 - sys_corr_86: -0.7517065693027313 - sys_corr_87: -10.35643798547733 - sys_corr_88: 1.4240513929681977 - sys_corr_89: 0.5764210102343428 - sys_corr_90: 0.28625650496994365 - sys_corr_91: 0.825010798827562 - sys_corr_92: 2.8512380272531956 - sys_corr_93: 0.10903085109402237 - sys_corr_94: 0.9579325400583437 - sys_corr_95: -1.4220382134521656 - sys_corr_96: 0.2727563743394541 - sys_corr_97: 1.166954478316101 - sys_corr_98: -0.845846481436988 - sys_corr_99: -0.04751060567779282 - sys_corr_100: 0.0521225866096371 - sys_corr_101: 0.7123384565938825 - sys_corr_102: 0.039880250572301865 - sys_corr_103: 1.86851242363422 - sys_corr_104: 0.4163181223930327 - sys_corr_105: 0.38463058412575696 - sys_corr_106: 0.11330630245492648 - sys_corr_107: 0.4221788558532152 - sys_corr_108: -0.6384320776517103 - sys_corr_109: 0.09093179048492794 - sys_corr_110: -0.10038617707796825 - sys_corr_111: -0.03480318070570357 - sys_corr_112: 0.05588810941309365 - sys_corr_113: -0.07531253973720446 - sys_corr_114: 0.00023242280960502753 - sys_corr_115: 0.010447768749224654 - sys_corr_116: 0.04463820023648683 - sys_corr_117: 0.021238554910009273 - sys_corr_118: 0.028729595921127754 - sys_corr_119: 0.0002951130114579053 - sys_corr_120: -0.01810633487890514 - sys_corr_121: 0.009272142846680001 - sys_corr_122: -0.01094160579223709 - sys_corr_123: -0.013230427610734227 - sys_corr_124: -0.04586058191129116 - sys_corr_125: 0.007433931746316728 - sys_corr_126: 0.00968721029652002 - sys_corr_127: 0.12231710778923899 - sys_corr_128: -0.015189317898225448 - sys_corr_129: 0.019983989674799696 - sys_corr_130: -5.6070532764422866e-05 - sys_corr_131: -3.8135149501748505e-05 - sys_corr_132: -0.007924491402828677 +- sys_corr_1: 300.2128906005667 + sys_corr_2: 84.79909138800292 + sys_corr_3: -88.96914309088726 + sys_corr_4: 62.92101813189833 + sys_corr_5: 158.62314037641178 + sys_corr_6: -582.6766946579253 + sys_corr_7: 48.54051329530006 + sys_corr_8: 10.820780210095515 + sys_corr_9: -10.37410886349292 + sys_corr_10: 2.1859331432575635 + sys_corr_11: 6.675258314786273 + sys_corr_12: 13.21270414881718 + sys_corr_13: 22.500230038356182 + sys_corr_14: 4.581178544463957 + sys_corr_15: -5.2684716946070305 + sys_corr_16: -4.674852567524101 + sys_corr_17: 5.640851743198853 + sys_corr_18: 34.435624530603974 + sys_corr_19: 11.80070378214397 + sys_corr_20: 15.918851537080064 + sys_corr_21: 7.061372347445265 + sys_corr_22: 7.628232222162737 + sys_corr_23: -1.308081254648717 + sys_corr_24: -45.48240909643822 + sys_corr_25: -8.65270822208615 + sys_corr_26: -4.113904439115083 + sys_corr_27: -4.556129620851872 + sys_corr_28: -63.4339612456539 + sys_corr_29: 84.57462166237555 + sys_corr_30: 85.44445833535697 + sys_corr_31: -98.3349608286198 + sys_corr_32: 20.982166974439057 + sys_corr_33: 37.0177435407329 + sys_corr_34: -1.844126206661256 + sys_corr_35: -5.159612178004834 + sys_corr_36: -64.90151439557597 + sys_corr_37: 141.52047616251087 + sys_corr_38: -86.55465847613179 + sys_corr_39: 264.8368349367211 + sys_corr_40: 79.92565313763359 + sys_corr_41: 76.20201905379984 + sys_corr_42: -52.77184120113892 + sys_corr_43: -9.340957806236966 + sys_corr_44: -62.60517795330119 + sys_corr_45: 54.17055425040259 + sys_corr_46: -30.804853608379382 + sys_corr_47: -44.94462929641423 + sys_corr_48: 4.912503341388312 + sys_corr_49: -9.41368491725003 + sys_corr_50: 4.277286524045517 + sys_corr_51: -21.19113474678528 + sys_corr_52: -10.210408969787972 + sys_corr_53: 3.670338062830047 + sys_corr_54: -5.781023673885154 + sys_corr_55: 9.393509059840722 + sys_corr_56: -14.748016279472775 + sys_corr_57: 1.354648025370996 + sys_corr_58: 1.8181045252861776 + sys_corr_59: 12.74088093675732 + sys_corr_60: -5.90173327436232 + sys_corr_61: 5.094097577950329 + sys_corr_62: -0.043436600596442075 + sys_corr_63: -2.544864366608267 + sys_corr_64: 6.103126832162132 + sys_corr_65: 5.931832196239548 + sys_corr_66: -1.279752975190209 + sys_corr_67: 9.238677932555925 + sys_corr_68: 10.468064273967297 + sys_corr_69: -10.835074020449841 + sys_corr_70: -4.729455947452569 + sys_corr_71: -4.523992714894768 + sys_corr_72: 8.850614456725989 + sys_corr_73: 3.606078642770165 + sys_corr_74: -1.7835168587781696 + sys_corr_75: -2.2649978493153724 + sys_corr_76: -0.3193780114447947 + sys_corr_77: -5.407086646231784 + sys_corr_78: -0.6743012976346894 + sys_corr_79: -8.380854531915096 + sys_corr_80: -0.5030900594776337 + sys_corr_81: -3.274044791933335 + sys_corr_82: 7.074357118331061 + sys_corr_83: -3.1151148561431965 + sys_corr_84: 1.30998446671926 + sys_corr_85: 0.1787374819525118 + sys_corr_86: 0.7517065693089746 + sys_corr_87: 10.356437985476996 + sys_corr_88: 1.424051392968351 + sys_corr_89: 0.28625650497002253 + sys_corr_90: 0.5764210102342784 + sys_corr_91: 0.8250107988272274 + sys_corr_92: -2.851238027253747 + sys_corr_93: 0.10903085109414003 + sys_corr_94: 0.9579325400592669 + sys_corr_95: -1.4220382134528713 + sys_corr_96: -0.27275637433955524 + sys_corr_97: 1.1669544783164507 + sys_corr_98: 0.8458464814370318 + sys_corr_99: -0.0475106056776639 + sys_corr_100: 0.7123384565938095 + sys_corr_101: -0.03988025057274547 + sys_corr_102: 1.868512423634778 + sys_corr_103: -0.41631812239332133 + sys_corr_104: -0.3846305841269686 + sys_corr_105: -0.05212258660965807 + sys_corr_106: 0.11330630245490389 + sys_corr_107: -0.638432077651713 + sys_corr_108: 0.09093179048495202 + sys_corr_109: 0.1003861770779491 + sys_corr_110: -0.4221788558530608 + sys_corr_111: 0.034803180705708446 + sys_corr_112: 0.05588810941307842 + sys_corr_113: 0.07531253973718754 + sys_corr_114: 0.0002324228096052634 + sys_corr_115: 0.01044776874923743 + sys_corr_116: -0.0446382002364954 + sys_corr_117: -0.0212385549100103 + sys_corr_118: -0.028729595921129468 + sys_corr_119: -0.0002951130114577957 + sys_corr_120: 0.0181063348789048 + sys_corr_121: -0.009272142846679614 + sys_corr_122: -0.013230427610730696 + sys_corr_123: -0.010941605792229438 + sys_corr_124: -0.04586058191129056 + sys_corr_125: 0.0074339317463137395 + sys_corr_126: -0.009687210296516131 + sys_corr_127: 0.12231710778910801 + sys_corr_128: -0.01518931789823919 + sys_corr_129: 0.01998398967480159 + sys_corr_130: -5.607053275867137e-05 + sys_corr_131: 3.813514950390326e-05 + sys_corr_132: -0.00792449140282383 stat: 0.0 luminosity: 595.996522 -- sys_corr_1: 280.8669083902397 - sys_corr_2: 66.6989933429719 - sys_corr_3: -111.14202319991597 - sys_corr_4: 50.328229047120644 - sys_corr_5: 189.02921306755417 - sys_corr_6: -598.0833623943478 - sys_corr_7: 61.46128342588393 - sys_corr_8: -7.768760948494499 - sys_corr_9: -22.21097736342921 - sys_corr_10: -36.62849988386281 - sys_corr_11: -10.477613079876592 - sys_corr_12: 15.924002295965932 - sys_corr_13: 10.298542685702577 - sys_corr_14: -7.142011509651888 - sys_corr_15: -0.8518891656313436 - sys_corr_16: -2.669921535514761 - sys_corr_17: 6.357230242253186 - sys_corr_18: 6.079063821011248 - sys_corr_19: -6.136421898603667 - sys_corr_20: -0.7435689160879236 - sys_corr_21: 4.609163109879117 - sys_corr_22: -27.126461029889 - sys_corr_23: 0.7964910365781505 - sys_corr_24: -54.95346781569691 - sys_corr_25: 10.125503095638981 - sys_corr_26: 42.97677561546001 - sys_corr_27: -20.24175738278071 - sys_corr_28: -69.44875317355945 - sys_corr_29: 70.54440913104607 - sys_corr_30: 87.54808785950907 - sys_corr_31: -28.437845632248568 - sys_corr_32: -37.710063328911296 - sys_corr_33: -12.324271517373075 - sys_corr_34: 20.178750113229768 - sys_corr_35: 6.64948982245441 - sys_corr_36: -27.89505581362275 - sys_corr_37: 27.154316207670696 - sys_corr_38: 19.81501182282098 - sys_corr_39: 83.26906350777972 - sys_corr_40: -62.44574989290574 - sys_corr_41: -105.84365964844282 - sys_corr_42: 50.199090719016354 - sys_corr_43: 101.25042301773895 - sys_corr_44: -114.95046665502235 - sys_corr_45: -113.23267227752956 - sys_corr_46: -200.23896426975602 - sys_corr_47: -23.428177028708586 - sys_corr_48: 40.994367203325936 - sys_corr_49: 32.859313908764385 - sys_corr_50: -77.15784985769498 - sys_corr_51: 9.967839645874601 - sys_corr_52: -19.20546712397596 - sys_corr_53: 0.8074916989089109 - sys_corr_54: -15.386730655928929 - sys_corr_55: -6.5088277836351525 - sys_corr_56: -9.072840822852003 - sys_corr_57: -9.703890364887815 - sys_corr_58: -14.21248258138656 - sys_corr_59: 8.44944224387799 - sys_corr_60: 12.353138134765647 - sys_corr_61: 1.5254608237296254 - sys_corr_62: 16.93720533837174 - sys_corr_63: -12.649680686589612 - sys_corr_64: 2.9467321024581388 - sys_corr_65: -12.944357206651018 - sys_corr_66: -2.656944759709034 - sys_corr_67: -10.959907685908396 - sys_corr_68: 28.593771128912003 - sys_corr_69: 8.659507025912058 - sys_corr_70: 1.619795715958454 - sys_corr_71: -0.46724626914055367 - sys_corr_72: 0.3819352271359314 - sys_corr_73: 4.863103173961465 - sys_corr_74: -4.331773055180023 - sys_corr_75: -14.948485389984564 - sys_corr_76: 0.3634112554029812 - sys_corr_77: -4.97161624161216 - sys_corr_78: -5.5815211447109165 - sys_corr_79: -3.1719048321283427 - sys_corr_80: 3.051269933781448 - sys_corr_81: -0.2464304516938759 - sys_corr_82: -3.020281755741705 - sys_corr_83: -2.1679638950121736 - sys_corr_84: -1.8757927101904956 - sys_corr_85: -0.6056587294193431 - sys_corr_86: -5.512708673742372 - sys_corr_87: -7.655708617057673 - sys_corr_88: 4.708160505142747 - sys_corr_89: 2.3508955995988297 - sys_corr_90: 0.09533786457712906 - sys_corr_91: 1.344628864062539 - sys_corr_92: -1.4940819304567283 - sys_corr_93: 0.08876499488297282 - sys_corr_94: 0.8781239217783329 - sys_corr_95: -0.9931947862360399 - sys_corr_96: -0.053710220102666 - sys_corr_97: 0.4936210141991299 - sys_corr_98: -0.11506973865704472 - sys_corr_99: 0.5206502344885653 - sys_corr_100: 0.6103941216136952 - sys_corr_101: -0.4807980342973771 - sys_corr_102: 0.010829269796743488 - sys_corr_103: -0.045129238705317105 - sys_corr_104: 0.33453256524926683 - sys_corr_105: 0.7156600629533365 - sys_corr_106: -0.3234935983790664 - sys_corr_107: -0.3909254293255559 - sys_corr_108: -0.39672326331993474 - sys_corr_109: 0.42759654453723434 - sys_corr_110: -0.21718914045863047 - sys_corr_111: -0.14425292881683763 - sys_corr_112: 0.20243290518237264 - sys_corr_113: -0.15156197787403958 - sys_corr_114: 0.001102763488989097 - sys_corr_115: 0.13135206825707274 - sys_corr_116: 0.03693624028098402 - sys_corr_117: 0.019906514348546497 - sys_corr_118: -0.012747528410778187 - sys_corr_119: -0.00018821654960054916 - sys_corr_120: -0.006371609139518328 - sys_corr_121: 0.010666269741415456 - sys_corr_122: -0.02412080451208538 - sys_corr_123: -0.046150334879545604 - sys_corr_124: -0.0293528123167832 - sys_corr_125: 0.027355773672494477 - sys_corr_126: 0.006051896298005606 - sys_corr_127: 0.12515048130455228 - sys_corr_128: -0.06995783589413755 - sys_corr_129: -0.03313541699719565 - sys_corr_130: 0.015364586960460983 - sys_corr_131: -0.0071973945460247326 - sys_corr_132: -0.005814274827690673 +- sys_corr_1: 280.866908390239 + sys_corr_2: 66.69899334297278 + sys_corr_3: -111.14202319991604 + sys_corr_4: 50.328229047121965 + sys_corr_5: 189.02921306754996 + sys_corr_6: -598.0833623943468 + sys_corr_7: 61.461283425883465 + sys_corr_8: -7.768760948494428 + sys_corr_9: -22.210977363429155 + sys_corr_10: -36.62849988386182 + sys_corr_11: -10.477613079875164 + sys_corr_12: 15.924002295966705 + sys_corr_13: -10.298542685703172 + sys_corr_14: 7.142011509652132 + sys_corr_15: 0.8518891656316896 + sys_corr_16: 2.6699215355145998 + sys_corr_17: 6.3572302422526485 + sys_corr_18: -6.079063821010743 + sys_corr_19: -6.136421898602794 + sys_corr_20: -0.7435689160875922 + sys_corr_21: 4.609163109878772 + sys_corr_22: -27.12646102988786 + sys_corr_23: 0.7964910365795699 + sys_corr_24: -54.95346781569551 + sys_corr_25: 10.125503095640052 + sys_corr_26: 42.97677561546222 + sys_corr_27: -20.241757382781834 + sys_corr_28: -69.44875317356166 + sys_corr_29: 70.54440913104605 + sys_corr_30: 87.5480878595105 + sys_corr_31: -28.43784563224528 + sys_corr_32: 37.71006332891916 + sys_corr_33: 12.324271517381346 + sys_corr_34: 20.17875011322803 + sys_corr_35: 6.64948982246347 + sys_corr_36: -27.89505581362118 + sys_corr_37: -27.15431620767225 + sys_corr_38: -19.815011822817524 + sys_corr_39: -83.2690635077941 + sys_corr_40: 62.4457498929155 + sys_corr_41: -105.84365964842301 + sys_corr_42: -50.19909071903407 + sys_corr_43: 101.25042301770551 + sys_corr_44: -114.95046665505505 + sys_corr_45: 113.23267227763809 + sys_corr_46: 200.23896426970197 + sys_corr_47: 23.42817702870589 + sys_corr_48: -40.994367203325304 + sys_corr_49: -32.85931390877781 + sys_corr_50: -77.15784985769018 + sys_corr_51: 9.96783964587834 + sys_corr_52: -19.20546712397293 + sys_corr_53: -0.807491698904993 + sys_corr_54: 15.386730655922596 + sys_corr_55: 6.508827783633306 + sys_corr_56: 9.072840822850747 + sys_corr_57: -9.703890364891446 + sys_corr_58: 14.212482581391194 + sys_corr_59: 8.449442243863718 + sys_corr_60: -12.353138134764096 + sys_corr_61: -1.525460823729412 + sys_corr_62: -16.937205338372088 + sys_corr_63: -12.649680686588086 + sys_corr_64: 2.946732102440431 + sys_corr_65: -12.944357206647013 + sys_corr_66: 2.656944759697186 + sys_corr_67: -10.95990768589198 + sys_corr_68: -28.593771128901313 + sys_corr_69: 8.659507025912779 + sys_corr_70: -1.6197957159654757 + sys_corr_71: -0.467246269139907 + sys_corr_72: -0.38193522713741995 + sys_corr_73: -4.863103173965194 + sys_corr_74: -4.331773055174495 + sys_corr_75: -14.948485389983938 + sys_corr_76: 0.36341125539578994 + sys_corr_77: 4.971616241606476 + sys_corr_78: -3.0512699337827227 + sys_corr_79: -5.581521144709973 + sys_corr_80: -3.1719048321271672 + sys_corr_81: 0.2464304516935759 + sys_corr_82: 3.020281755741592 + sys_corr_83: -2.1679638950123343 + sys_corr_84: 1.8757927101923202 + sys_corr_85: -0.6056587294180072 + sys_corr_86: 5.512708673743554 + sys_corr_87: 7.6557086170556525 + sys_corr_88: 4.708160505132007 + sys_corr_89: 0.09533786457707855 + sys_corr_90: 2.350895599598927 + sys_corr_91: 1.3446288640629054 + sys_corr_92: 1.494081930453967 + sys_corr_93: 0.08876499488268345 + sys_corr_94: 0.8781239217772494 + sys_corr_95: -0.9931947862346303 + sys_corr_96: 0.053710220102836076 + sys_corr_97: 0.4936210141987122 + sys_corr_98: 0.11506973865699835 + sys_corr_99: 0.5206502344884507 + sys_corr_100: -0.4807980342973957 + sys_corr_101: -0.010829269796735827 + sys_corr_102: -0.04512923870579278 + sys_corr_103: -0.33453256524919184 + sys_corr_104: -0.7156600629531953 + sys_corr_105: -0.6103941216137219 + sys_corr_106: -0.3234935983790235 + sys_corr_107: -0.3967232633198854 + sys_corr_108: 0.4275965445372135 + sys_corr_109: 0.21718914045863644 + sys_corr_110: 0.39092542932548024 + sys_corr_111: 0.14425292881681498 + sys_corr_112: 0.20243290518238105 + sys_corr_113: 0.1515619778740265 + sys_corr_114: 0.0011027634889889883 + sys_corr_115: 0.1313520682570579 + sys_corr_116: -0.03693624028095741 + sys_corr_117: -0.019906514348537265 + sys_corr_118: 0.012747528410773208 + sys_corr_119: 0.0001882165496010753 + sys_corr_120: 0.006371609139518456 + sys_corr_121: -0.010666269741417819 + sys_corr_122: -0.04615033487955395 + sys_corr_123: -0.02412080451208272 + sys_corr_124: -0.02935281231678253 + sys_corr_125: 0.02735577367249511 + sys_corr_126: -0.006051896298005035 + sys_corr_127: 0.12515048130459175 + sys_corr_128: -0.0699578358941554 + sys_corr_129: -0.033135416997193134 + sys_corr_130: 0.015364586960461992 + sys_corr_131: 0.00719739454602982 + sys_corr_132: -0.005814274827688101 stat: 0.0 luminosity: 575.7196720000001 -- sys_corr_1: 267.03477235232293 - sys_corr_2: 62.84105054444207 - sys_corr_3: -121.69630625134154 - sys_corr_4: 29.02237245269283 - sys_corr_5: 198.8349727683912 - sys_corr_6: -599.8928324320743 - sys_corr_7: 68.93007889265317 - sys_corr_8: 6.1948533720574375 - sys_corr_9: -9.35967187696708 - sys_corr_10: -21.64146587305683 - sys_corr_11: -1.3514882017552114 - sys_corr_12: 24.504043831883585 - sys_corr_13: 5.578144752918481 - sys_corr_14: -7.573518513258505 - sys_corr_15: 1.9298464743231742 - sys_corr_16: -0.26727703409131215 - sys_corr_17: 3.860770778963626 - sys_corr_18: -11.435187086342859 - sys_corr_19: -10.349212816179877 - sys_corr_20: 7.365773018976895 - sys_corr_21: 4.931270902350598 - sys_corr_22: -50.463734968517294 - sys_corr_23: 2.9306859886960193 - sys_corr_24: -98.86118869060009 - sys_corr_25: 14.12815738355214 - sys_corr_26: 61.48306136597004 - sys_corr_27: -31.777690972018814 - sys_corr_28: -79.04111736509722 - sys_corr_29: 49.21593579967882 - sys_corr_30: 119.88866114457794 - sys_corr_31: -84.6151579762223 - sys_corr_32: -42.155478665621516 - sys_corr_33: 44.1215273559282 - sys_corr_34: -11.85489381383428 - sys_corr_35: -7.149341628727321 - sys_corr_36: -58.866830883887346 - sys_corr_37: 68.83822974575871 - sys_corr_38: -265.8092927887748 - sys_corr_39: 57.1632689350139 - sys_corr_40: -6.128716436249129 - sys_corr_41: 128.00587196471577 - sys_corr_42: 61.31267800084969 - sys_corr_43: -91.81555592702325 - sys_corr_44: -51.99677593947375 - sys_corr_45: 26.453562339394004 - sys_corr_46: 42.942906532050884 - sys_corr_47: 52.11206182745144 - sys_corr_48: 25.290286456285145 - sys_corr_49: -11.48404305961963 - sys_corr_50: -27.29152349345005 - sys_corr_51: -1.0977333059180687 - sys_corr_52: -18.256548277425956 - sys_corr_53: -6.278944110746314 - sys_corr_54: 3.935081328060991 - sys_corr_55: -7.7167822695217625 - sys_corr_56: 10.696442543668777 - sys_corr_57: -0.4098366664687787 - sys_corr_58: 1.4995700918285293 - sys_corr_59: 4.584122534907941 - sys_corr_60: 7.737328144752711 - sys_corr_61: 9.434275736400462 - sys_corr_62: 8.142638819445695 - sys_corr_63: -2.0620661315548623 - sys_corr_64: 0.22822022517667617 - sys_corr_65: 1.8533413944169552 - sys_corr_66: 8.846646984645943 - sys_corr_67: -6.963000999831966 - sys_corr_68: 15.675123008217184 - sys_corr_69: 9.979463882314379 - sys_corr_70: -1.8927566137760352 - sys_corr_71: -14.176574343374098 - sys_corr_72: 1.5547727685087045 - sys_corr_73: 1.3749375951694804 - sys_corr_74: -1.6666243031776895 - sys_corr_75: -9.023379114683761 - sys_corr_76: -2.1607570651517753 - sys_corr_77: -4.667756719097584 - sys_corr_78: -3.6399762280222228 - sys_corr_79: -2.3640230255275343 - sys_corr_80: 1.5271568517773775 - sys_corr_81: -1.9346506422896572 - sys_corr_82: 0.8753490711886683 - sys_corr_83: 2.5982505376161393 - sys_corr_84: -2.988829171184172 - sys_corr_85: 2.0750453031508553 - sys_corr_86: -0.27267636316036165 - sys_corr_87: -0.8698067269146955 - sys_corr_88: 1.0897533683845324 - sys_corr_89: 0.13224818655329307 - sys_corr_90: -0.2590261688200991 - sys_corr_91: -0.19317491797150482 - sys_corr_92: -0.615957785604032 - sys_corr_93: 0.2026636949366959 - sys_corr_94: 0.9194117534292356 - sys_corr_95: -0.813965617847708 - sys_corr_96: -0.03286891063033056 - sys_corr_97: 0.094291941708353 - sys_corr_98: -0.21606487919448325 - sys_corr_99: 0.01370922821466191 - sys_corr_100: 0.5169283914502023 - sys_corr_101: -0.28241765086884857 - sys_corr_102: 0.8340900845348077 - sys_corr_103: -2.2325677366036643 - sys_corr_104: -0.2293066534068915 - sys_corr_105: -0.5823086555933765 - sys_corr_106: -0.4175194250110145 - sys_corr_107: 0.25537845871260206 - sys_corr_108: -0.47700082424014256 - sys_corr_109: 0.23107149136663407 - sys_corr_110: -0.18628730509086558 - sys_corr_111: -0.22673056422605736 - sys_corr_112: 0.09357215702491833 - sys_corr_113: -0.20429819621908887 - sys_corr_114: 0.0009537905520895273 - sys_corr_115: 0.07009223551564846 - sys_corr_116: 0.029536675314455 - sys_corr_117: 0.010930107131891164 - sys_corr_118: -0.056218361055006154 - sys_corr_119: 2.814727827700085e-05 - sys_corr_120: -0.006180495301110245 - sys_corr_121: 0.005966413045567279 - sys_corr_122: -0.009835058537987497 - sys_corr_123: -0.01069998820163537 - sys_corr_124: -0.036921806589838985 - sys_corr_125: 0.004573804864568732 - sys_corr_126: 0.005754603665103437 - sys_corr_127: 0.015754980676353832 - sys_corr_128: -0.009739823309784559 - sys_corr_129: 0.029082446933406184 - sys_corr_130: 0.00540071169839665 - sys_corr_131: -0.0031166464587044675 - sys_corr_132: -0.07221528231839147 +- sys_corr_1: 267.03477235232265 + sys_corr_2: 62.841050544442474 + sys_corr_3: -121.69630625134175 + sys_corr_4: 29.022372452694576 + sys_corr_5: 198.83497276838807 + sys_corr_6: -599.8928324320742 + sys_corr_7: 68.93007889265276 + sys_corr_8: 6.194853372057848 + sys_corr_9: -9.35967187696665 + sys_corr_10: -21.6414658730567 + sys_corr_11: -1.3514882017530419 + sys_corr_12: 24.50404383188406 + sys_corr_13: -5.578144752918838 + sys_corr_14: 7.573518513258733 + sys_corr_15: -1.929846474323108 + sys_corr_16: 0.2672770340906983 + sys_corr_17: 3.8607707789629093 + sys_corr_18: 11.43518708634285 + sys_corr_19: -10.34921281617915 + sys_corr_20: 7.365773018976952 + sys_corr_21: 4.931270902350292 + sys_corr_22: -50.46373496851724 + sys_corr_23: 2.930685988697628 + sys_corr_24: -98.8611886906005 + sys_corr_25: 14.12815738355403 + sys_corr_26: 61.48306136597496 + sys_corr_27: -31.777690972021233 + sys_corr_28: -79.04111736509938 + sys_corr_29: 49.2159357996761 + sys_corr_30: 119.88866114457677 + sys_corr_31: -84.61515797622343 + sys_corr_32: 42.15547866563413 + sys_corr_33: -44.121527355929395 + sys_corr_34: -11.854893813819805 + sys_corr_35: -7.149341628724527 + sys_corr_36: -58.86683088388035 + sys_corr_37: -68.83822974571248 + sys_corr_38: 265.80929278878045 + sys_corr_39: -57.16326893500435 + sys_corr_40: 6.128716436238496 + sys_corr_41: 128.0058719646964 + sys_corr_42: -61.312678000819055 + sys_corr_43: -91.81555592705655 + sys_corr_44: -51.996775939468186 + sys_corr_45: -26.453562339419594 + sys_corr_46: -42.94290653203943 + sys_corr_47: -52.112061827455015 + sys_corr_48: -25.290286456290346 + sys_corr_49: 11.484043059609558 + sys_corr_50: -27.291523493449382 + sys_corr_51: -1.0977333059157026 + sys_corr_52: -18.256548277422997 + sys_corr_53: 6.278944110746265 + sys_corr_54: -3.9350813280594936 + sys_corr_55: 7.716782269522807 + sys_corr_56: -10.696442543667898 + sys_corr_57: -0.40983666646320205 + sys_corr_58: -1.4995700918253536 + sys_corr_59: 4.58412253491001 + sys_corr_60: -7.737328144750865 + sys_corr_61: -9.434275736400213 + sys_corr_62: -8.142638819444363 + sys_corr_63: -2.0620661315547535 + sys_corr_64: 0.2282202251722094 + sys_corr_65: 1.8533413944178008 + sys_corr_66: -8.846646984653981 + sys_corr_67: -6.963000999825219 + sys_corr_68: -15.67512300821032 + sys_corr_69: 9.97946388231389 + sys_corr_70: 1.8927566137721414 + sys_corr_71: -14.176574343372307 + sys_corr_72: -1.554772768510188 + sys_corr_73: -1.3749375951692233 + sys_corr_74: -1.6666243031744363 + sys_corr_75: -9.023379114682221 + sys_corr_76: -2.160757065157148 + sys_corr_77: 4.667756719095674 + sys_corr_78: -1.5271568517775433 + sys_corr_79: -3.639976228022566 + sys_corr_80: -2.364023025527418 + sys_corr_81: 1.934650642288078 + sys_corr_82: -0.8753490711886281 + sys_corr_83: 2.5982505376158196 + sys_corr_84: 2.988829171184534 + sys_corr_85: 2.0750453031521268 + sys_corr_86: 0.27267636315868676 + sys_corr_87: 0.8698067269143592 + sys_corr_88: 1.089753368382058 + sys_corr_89: -0.25902616882015395 + sys_corr_90: 0.13224818655332443 + sys_corr_91: -0.19317491797131864 + sys_corr_92: 0.6159577856038512 + sys_corr_93: 0.20266369493651662 + sys_corr_94: 0.9194117534287147 + sys_corr_95: -0.8139656178467694 + sys_corr_96: 0.0328689106304636 + sys_corr_97: 0.09429194170780884 + sys_corr_98: 0.2160648791943181 + sys_corr_99: 0.013709228214463827 + sys_corr_100: -0.2824176508686849 + sys_corr_101: -0.8340900845341648 + sys_corr_102: -2.2325677366044347 + sys_corr_103: 0.22930665340736178 + sys_corr_104: 0.5823086555948829 + sys_corr_105: -0.5169283914501025 + sys_corr_106: -0.4175194250108292 + sys_corr_107: -0.4770008242400551 + sys_corr_108: 0.23107149136666572 + sys_corr_109: 0.18628730509085878 + sys_corr_110: -0.25537845871279574 + sys_corr_111: 0.226730564225994 + sys_corr_112: 0.09357215702489469 + sys_corr_113: 0.20429819621907527 + sys_corr_114: 0.0009537905520894882 + sys_corr_115: 0.0700922355156566 + sys_corr_116: -0.029536675314462673 + sys_corr_117: -0.01093010713190567 + sys_corr_118: 0.056218361055030704 + sys_corr_119: -2.814727827620822e-05 + sys_corr_120: 0.006180495301119437 + sys_corr_121: -0.005966413045568652 + sys_corr_122: -0.010699988201618015 + sys_corr_123: -0.009835058537976846 + sys_corr_124: -0.03692180658983935 + sys_corr_125: 0.004573804864557696 + sys_corr_126: -0.005754603665101501 + sys_corr_127: 0.01575498067641864 + sys_corr_128: -0.009739823309829466 + sys_corr_129: 0.02908244693341341 + sys_corr_130: 0.00540071169840083 + sys_corr_131: 0.003116646458682531 + sys_corr_132: -0.07221528231839637 stat: 0.0 luminosity: 564.255494 -- sys_corr_1: 267.4341338245668 - sys_corr_2: 65.62301015624537 - sys_corr_3: -132.77756538290197 - sys_corr_4: 26.60693691550447 - sys_corr_5: 196.91080020275214 - sys_corr_6: -604.078038277245 - sys_corr_7: 85.2929051142464 - sys_corr_8: 13.986964164253191 - sys_corr_9: -3.9221095537912225 - sys_corr_10: -25.78061707181153 - sys_corr_11: 9.846110685101772 - sys_corr_12: 48.97084500024521 - sys_corr_13: 16.88863692705637 - sys_corr_14: -12.544325398732042 - sys_corr_15: -3.276968397256189 - sys_corr_16: 3.346137099493004 - sys_corr_17: 9.897471152337816 - sys_corr_18: -9.791703247368874 - sys_corr_19: -14.806517977283919 - sys_corr_20: 4.042707191313097 - sys_corr_21: 6.910386606211505 - sys_corr_22: -74.72403636356364 - sys_corr_23: 1.194571590303667 - sys_corr_24: -114.32009574774865 - sys_corr_25: 30.048680112251894 - sys_corr_26: 96.58975451461787 - sys_corr_27: -48.01968566365591 - sys_corr_28: -81.47538153464393 - sys_corr_29: 51.340693591489156 - sys_corr_30: 111.99643332011925 - sys_corr_31: -38.66288527639202 - sys_corr_32: -26.169970624047124 - sys_corr_33: -12.794767667252984 - sys_corr_34: -25.215610122870345 - sys_corr_35: 85.96808231673526 - sys_corr_36: -22.0787609047766 - sys_corr_37: 44.24867647654506 - sys_corr_38: 32.16188677135861 - sys_corr_39: -37.45123461604324 - sys_corr_40: 20.47137132351543 - sys_corr_41: 4.381490697905413 - sys_corr_42: -85.06879401576911 - sys_corr_43: 35.52367810602107 - sys_corr_44: -19.800436153271246 - sys_corr_45: 204.164495781756 - sys_corr_46: -60.30014379116256 - sys_corr_47: -114.0043375600274 - sys_corr_48: -108.05997612834022 - sys_corr_49: 27.34643481700628 - sys_corr_50: 45.547997654142904 - sys_corr_51: 46.41569965729092 - sys_corr_52: 31.729916607572072 - sys_corr_53: 4.00944212169462 - sys_corr_54: -4.083870426605052 - sys_corr_55: -17.568471569530782 - sys_corr_56: 7.339176378976375 - sys_corr_57: -38.74640612386966 - sys_corr_58: 3.955676272694415 - sys_corr_59: -35.02173480216121 - sys_corr_60: 16.242249179138827 - sys_corr_61: 24.017332255683346 - sys_corr_62: -34.68003595226467 - sys_corr_63: 23.173446825256157 - sys_corr_64: -3.06202159181131 - sys_corr_65: 5.92407504802344 - sys_corr_66: 0.980681618542204 - sys_corr_67: 5.002643704905931 - sys_corr_68: 5.3319311137124314 - sys_corr_69: 3.175649962023244 - sys_corr_70: 11.701684326513677 - sys_corr_71: -4.078842903517012 - sys_corr_72: -3.7741719596495775 - sys_corr_73: -6.083283548448171 - sys_corr_74: -5.394692475526669 - sys_corr_75: -4.810884277985955 - sys_corr_76: -0.27677320631150504 - sys_corr_77: -10.372062225886076 - sys_corr_78: -12.412947574914158 - sys_corr_79: -0.3822178378608733 - sys_corr_80: -3.5229514275197285 - sys_corr_81: 12.193548151567727 - sys_corr_82: -9.39430826156655 - sys_corr_83: -10.462764914013286 - sys_corr_84: 2.507214130897441 - sys_corr_85: -3.092129937689461 - sys_corr_86: -2.2114531821360592 - sys_corr_87: -14.7585523923092 - sys_corr_88: 4.292754723590241 - sys_corr_89: 0.25826754412192904 - sys_corr_90: 0.7992450776086317 - sys_corr_91: 0.5180882034204143 - sys_corr_92: 2.717276363221861 - sys_corr_93: 0.08878372088633896 - sys_corr_94: 0.2979337373520236 - sys_corr_95: -0.49134606297187466 - sys_corr_96: 0.01721849080435068 - sys_corr_97: 1.2756529554495792 - sys_corr_98: -0.6652334852838352 - sys_corr_99: 0.6542608869074341 - sys_corr_100: -0.009839401620730796 - sys_corr_101: 0.24041621681136974 - sys_corr_102: -0.6847849792679448 - sys_corr_103: 3.9364007530803113 - sys_corr_104: 0.9962061256092115 - sys_corr_105: 2.067322035485833 - sys_corr_106: 0.05821247930355642 - sys_corr_107: -0.11297166942633197 - sys_corr_108: -0.23486633613004151 - sys_corr_109: 0.2745482797106995 - sys_corr_110: -0.055801947819923564 - sys_corr_111: -0.03640949369033219 - sys_corr_112: 0.14747362286452487 - sys_corr_113: -0.13087555764705658 - sys_corr_114: -0.0009040159616446808 - sys_corr_115: 0.055212265462845085 - sys_corr_116: 0.034049337126605975 - sys_corr_117: 0.03251684254281576 - sys_corr_118: -0.05271619449329178 - sys_corr_119: -0.004451282526706037 - sys_corr_120: -0.016177423008494955 - sys_corr_121: 0.008842173986638675 - sys_corr_122: -0.006130669756382608 - sys_corr_123: -0.006969064687194197 - sys_corr_124: -0.03450447162626759 - sys_corr_125: 0.002135666254091607 - sys_corr_126: 0.0019208097145953485 - sys_corr_127: 0.11166033798521093 - sys_corr_128: -0.07201815998871762 - sys_corr_129: 0.017204185444128665 - sys_corr_130: 0.007742969433364092 - sys_corr_131: -0.002577841415779002 - sys_corr_132: -0.09257107809911334 +- sys_corr_1: 267.43413382456595 + sys_corr_2: 65.62301015624693 + sys_corr_3: -132.7775653829022 + sys_corr_4: 26.606936915506246 + sys_corr_5: 196.91080020274907 + sys_corr_6: -604.0780382772439 + sys_corr_7: 85.29290511424588 + sys_corr_8: 13.986964164254225 + sys_corr_9: -3.922109553790512 + sys_corr_10: -25.780617071812436 + sys_corr_11: 9.846110685106115 + sys_corr_12: 48.970845000245106 + sys_corr_13: -16.888636927056698 + sys_corr_14: 12.544325398732756 + sys_corr_15: 3.2769683972564785 + sys_corr_16: -3.3461370994923003 + sys_corr_17: 9.897471152338165 + sys_corr_18: 9.791703247368849 + sys_corr_19: -14.80651797728333 + sys_corr_20: 4.04270719131322 + sys_corr_21: 6.910386606211374 + sys_corr_22: -74.72403636356313 + sys_corr_23: 1.194571590304851 + sys_corr_24: -114.32009574774735 + sys_corr_25: 30.04868011225454 + sys_corr_26: 96.58975451462373 + sys_corr_27: -48.019685663658834 + sys_corr_28: -81.47538153464566 + sys_corr_29: 51.34069359148581 + sys_corr_30: 111.99643332011938 + sys_corr_31: -38.66288527639168 + sys_corr_32: 26.16997062404394 + sys_corr_33: 12.794767667246505 + sys_corr_34: -25.215610122860962 + sys_corr_35: 85.96808231673668 + sys_corr_36: -22.078760904763854 + sys_corr_37: -44.24867647655581 + sys_corr_38: -32.1618867713517 + sys_corr_39: 37.451234616039656 + sys_corr_40: -20.471371323524632 + sys_corr_41: 4.381490697908522 + sys_corr_42: 85.06879401577153 + sys_corr_43: 35.52367810606871 + sys_corr_44: -19.80043615325817 + sys_corr_45: -204.16449578171017 + sys_corr_46: 60.30014379124462 + sys_corr_47: 114.00433756000889 + sys_corr_48: 108.05997612835473 + sys_corr_49: -27.346434816978626 + sys_corr_50: 45.54799765415011 + sys_corr_51: 46.4156996572967 + sys_corr_52: 31.729916607571308 + sys_corr_53: -4.009442121689489 + sys_corr_54: 4.083870426594591 + sys_corr_55: 17.568471569528494 + sys_corr_56: -7.33917637897771 + sys_corr_57: -38.74640612386434 + sys_corr_58: -3.9556762727242156 + sys_corr_59: -35.021734802153354 + sys_corr_60: -16.24224917913468 + sys_corr_61: -24.017332255676298 + sys_corr_62: 34.68003595227042 + sys_corr_63: 23.173446825252462 + sys_corr_64: -3.0620215917999993 + sys_corr_65: 5.924075048020359 + sys_corr_66: -0.9806816185423392 + sys_corr_67: 5.002643704906746 + sys_corr_68: -5.331931113713989 + sys_corr_69: 3.1756499620222196 + sys_corr_70: -11.701684326518226 + sys_corr_71: -4.078842903511576 + sys_corr_72: 3.77417195964925 + sys_corr_73: 6.083283548446433 + sys_corr_74: -5.394692475522363 + sys_corr_75: -4.8108842779862115 + sys_corr_76: -0.27677320631530733 + sys_corr_77: 10.372062225883731 + sys_corr_78: 3.5229514275192204 + sys_corr_79: -12.41294757491408 + sys_corr_80: -0.38221783786125824 + sys_corr_81: -12.193548151566572 + sys_corr_82: 9.394308261567227 + sys_corr_83: -10.46276491401625 + sys_corr_84: -2.5072141308954388 + sys_corr_85: -3.0921299376889317 + sys_corr_86: 2.2114531821429018 + sys_corr_87: 14.758552392308506 + sys_corr_88: 4.29275472358608 + sys_corr_89: 0.7992450776084802 + sys_corr_90: 0.25826754412211594 + sys_corr_91: 0.518088203420778 + sys_corr_92: -2.7172763632225814 + sys_corr_93: 0.08878372088614968 + sys_corr_94: 0.2979337373513327 + sys_corr_95: -0.491346062971032 + sys_corr_96: -0.017218490804197448 + sys_corr_97: 1.2756529554493532 + sys_corr_98: 0.6652334852838159 + sys_corr_99: 0.6542608869074242 + sys_corr_100: 0.24041621681106679 + sys_corr_101: 0.6847849792665895 + sys_corr_102: 3.9364007530793232 + sys_corr_103: -0.9962061256095193 + sys_corr_104: -2.067322035487517 + sys_corr_105: 0.009839401620546775 + sys_corr_106: 0.05821247930337707 + sys_corr_107: -0.23486633613007277 + sys_corr_108: 0.27454827971067913 + sys_corr_109: 0.05580194781990817 + sys_corr_110: 0.11297166942642833 + sys_corr_111: 0.03640949369035963 + sys_corr_112: 0.1474736228645139 + sys_corr_113: 0.1308755576470577 + sys_corr_114: -0.0009040159616460518 + sys_corr_115: 0.055212265462855806 + sys_corr_116: -0.03404933712661937 + sys_corr_117: -0.03251684254282721 + sys_corr_118: 0.05271619449329792 + sys_corr_119: 0.004451282526707105 + sys_corr_120: 0.016177423008504003 + sys_corr_121: -0.008842173986637997 + sys_corr_122: -0.006969064687181709 + sys_corr_123: -0.006130669756381941 + sys_corr_124: -0.034504471626273986 + sys_corr_125: 0.00213566625407917 + sys_corr_126: -0.0019208097145947995 + sys_corr_127: 0.1116603379851223 + sys_corr_128: -0.07201815998872632 + sys_corr_129: 0.017204185444124026 + sys_corr_130: 0.0077429694333643155 + sys_corr_131: 0.002577841415767575 + sys_corr_132: -0.09257107809911341 stat: 0.0 luminosity: 578.4582980000001 -- sys_corr_1: 257.4979574677762 - sys_corr_2: 63.7647017247998 - sys_corr_3: -127.88990672645204 - sys_corr_4: -6.811426368091293 - sys_corr_5: 181.83136348875064 - sys_corr_6: -555.7275096290176 - sys_corr_7: 101.38468396686787 - sys_corr_8: 24.687253937149514 - sys_corr_9: 18.70046136175056 - sys_corr_10: -20.63635444674012 - sys_corr_11: 31.632048062684014 - sys_corr_12: 83.08777631621845 - sys_corr_13: 41.86655618579511 - sys_corr_14: -18.57252804486394 - sys_corr_15: -6.39113695257448 - sys_corr_16: 5.416287841873736 - sys_corr_17: 13.869767166480685 - sys_corr_18: -3.5283866943374678 - sys_corr_19: -13.18859552168699 - sys_corr_20: 7.908273213001953 - sys_corr_21: 7.660512048323251 - sys_corr_22: -59.88362934091975 - sys_corr_23: -1.5961622442498946 - sys_corr_24: -104.39468865974098 - sys_corr_25: 40.51274975945149 - sys_corr_26: 123.82761436158528 - sys_corr_27: -61.835740055714524 - sys_corr_28: -88.41315005979969 - sys_corr_29: 54.045101380344875 - sys_corr_30: 65.86229401903067 - sys_corr_31: 2.5905014192384392 - sys_corr_32: -26.121706713334355 - sys_corr_33: -39.79376619645159 - sys_corr_34: 2.7654889857333504 - sys_corr_35: -13.084371478416873 - sys_corr_36: -35.44774944502321 - sys_corr_37: 23.7424071238439 - sys_corr_38: -1.2655845297838657 - sys_corr_39: -42.33826510301014 - sys_corr_40: 228.22863331368487 - sys_corr_41: -118.52703796379433 - sys_corr_42: -86.13897806640631 - sys_corr_43: 54.16545091810344 - sys_corr_44: 3.5490493964023364 - sys_corr_45: -93.5507197990688 - sys_corr_46: 127.62516120487695 - sys_corr_47: 51.32812691639729 - sys_corr_48: 9.178146276103307 - sys_corr_49: -41.20313400697913 - sys_corr_50: -23.056596065637535 - sys_corr_51: 20.85607580475071 - sys_corr_52: 10.453101202050169 - sys_corr_53: 7.496108650445961 - sys_corr_54: 32.893625463446774 - sys_corr_55: -10.954863070933001 - sys_corr_56: -31.357134985405892 - sys_corr_57: -18.83180098872267 - sys_corr_58: 3.3381528033929926 - sys_corr_59: -4.776589146140694 - sys_corr_60: 6.522582433235319 - sys_corr_61: 4.422016207244994 - sys_corr_62: 12.064188842550367 - sys_corr_63: 23.528963255871457 - sys_corr_64: -4.882453808908362 - sys_corr_65: -14.57568378245596 - sys_corr_66: 0.9575025365341521 - sys_corr_67: -10.387068885728134 - sys_corr_68: 30.7156031186755 - sys_corr_69: 2.7012950919650685 - sys_corr_70: 4.757339137995209 - sys_corr_71: 11.383918088591857 - sys_corr_72: 8.497777543859375 - sys_corr_73: -6.112965041564179 - sys_corr_74: 4.611286482108587 - sys_corr_75: -17.34141687328351 - sys_corr_76: 3.4443331754560087 - sys_corr_77: -13.184537870587848 - sys_corr_78: 0.6117803976710449 - sys_corr_79: -4.358131523313098 - sys_corr_80: 5.265059924731385 - sys_corr_81: 1.255984958475391 - sys_corr_82: 0.0645412385536837 - sys_corr_83: -0.8429616771993037 - sys_corr_84: -2.542423363069301 - sys_corr_85: 1.5058287061784092 - sys_corr_86: -7.136687681295095 - sys_corr_87: 2.03297960759803 - sys_corr_88: 7.1443079361955215 - sys_corr_89: 0.3404076181897821 - sys_corr_90: -0.46717805311266936 - sys_corr_91: 0.5531287867569019 - sys_corr_92: 2.934773448364448 - sys_corr_93: -0.043365490882468966 - sys_corr_94: 0.35139041555608364 - sys_corr_95: 0.1326176901064388 - sys_corr_96: 0.0034476974432153377 - sys_corr_97: 0.9280809594073529 - sys_corr_98: -0.2880574262953329 - sys_corr_99: 0.4805138098840929 - sys_corr_100: 0.39224302288112434 - sys_corr_101: -0.2191687940578649 - sys_corr_102: 0.3418886850033441 - sys_corr_103: -0.4016468060863179 - sys_corr_104: -0.6663214021480668 - sys_corr_105: 0.4772165336247105 - sys_corr_106: -0.1038146464829583 - sys_corr_107: 0.13305784352651426 - sys_corr_108: -0.13016243334772643 - sys_corr_109: 0.2279970094158498 - sys_corr_110: -0.1700752116414857 - sys_corr_111: -0.09474883344445587 - sys_corr_112: 0.13800266405301606 - sys_corr_113: -0.16347985459286093 - sys_corr_114: 0.0005887462506881316 - sys_corr_115: 0.13127645998750853 - sys_corr_116: 0.04390184399642201 - sys_corr_117: 0.02285920967602892 - sys_corr_118: -0.0530167690257188 - sys_corr_119: 0.0038360395106532674 - sys_corr_120: -0.008873282009710675 - sys_corr_121: 0.005977347911193241 - sys_corr_122: -0.006230817567286215 - sys_corr_123: 0.0015029864965483265 - sys_corr_124: -0.03523614393046657 - sys_corr_125: -0.007296810714433713 - sys_corr_126: -0.00037658716192138863 - sys_corr_127: -0.047806379715757755 - sys_corr_128: 0.13001805321105214 - sys_corr_129: 0.05424293036012575 - sys_corr_130: 0.001967967927658979 - sys_corr_131: 0.014262199467418907 - sys_corr_132: -0.05854960041693984 +- sys_corr_1: 257.49795746777517 + sys_corr_2: 63.76470172480073 + sys_corr_3: -127.88990672645232 + sys_corr_4: -6.811426368089565 + sys_corr_5: 181.83136348874763 + sys_corr_6: -555.7275096290168 + sys_corr_7: 101.38468396686757 + sys_corr_8: 24.68725393715134 + sys_corr_9: 18.70046136175101 + sys_corr_10: -20.63635444674312 + sys_corr_11: 31.632048062692114 + sys_corr_12: 83.08777631621764 + sys_corr_13: -41.86655618579547 + sys_corr_14: 18.572528044864832 + sys_corr_15: 6.391136952574391 + sys_corr_16: -5.416287841873643 + sys_corr_17: 13.869767166480631 + sys_corr_18: 3.5283866943376965 + sys_corr_19: -13.188595521686386 + sys_corr_20: 7.90827321300257 + sys_corr_21: 7.6605120483227465 + sys_corr_22: -59.8836293409182 + sys_corr_23: -1.5961622442481642 + sys_corr_24: -104.39468865974044 + sys_corr_25: 40.51274975945336 + sys_corr_26: 123.82761436158984 + sys_corr_27: -61.835740055718524 + sys_corr_28: -88.41315005979996 + sys_corr_29: 54.04510138034107 + sys_corr_30: 65.86229401902956 + sys_corr_31: 2.59050141923953 + sys_corr_32: 26.12170671333319 + sys_corr_33: 39.79376619645478 + sys_corr_34: 2.7654889857345326 + sys_corr_35: -13.08437147841517 + sys_corr_36: -35.4477494450158 + sys_corr_37: -23.74240712384157 + sys_corr_38: 1.2655845297753678 + sys_corr_39: 42.338265103033685 + sys_corr_40: -228.22863331367506 + sys_corr_41: -118.52703796379907 + sys_corr_42: 86.13897806636865 + sys_corr_43: 54.16545091815438 + sys_corr_44: 3.549049396412474 + sys_corr_45: 93.55071979900146 + sys_corr_46: -127.62516120491304 + sys_corr_47: -51.32812691639809 + sys_corr_48: -9.178146276106034 + sys_corr_49: 41.20313400697579 + sys_corr_50: -23.05659606563465 + sys_corr_51: 20.856075804746023 + sys_corr_52: 10.45310120205578 + sys_corr_53: -7.496108650453805 + sys_corr_54: -32.89362546344704 + sys_corr_55: 10.954863070941878 + sys_corr_56: 31.357134985405366 + sys_corr_57: -18.831800988737584 + sys_corr_58: -3.3381528033990584 + sys_corr_59: -4.776589146140447 + sys_corr_60: -6.522582433234021 + sys_corr_61: -4.422016207245641 + sys_corr_62: -12.064188842546036 + sys_corr_63: 23.528963255876516 + sys_corr_64: -4.882453808914893 + sys_corr_65: -14.5756837824639 + sys_corr_66: -0.9575025365458315 + sys_corr_67: -10.387068885713349 + sys_corr_68: -30.715603118674057 + sys_corr_69: 2.7012950919661907 + sys_corr_70: -4.757339138006173 + sys_corr_71: 11.383918088595696 + sys_corr_72: -8.497777543859394 + sys_corr_73: 6.1129650415625 + sys_corr_74: 4.6112864821142825 + sys_corr_75: -17.34141687328836 + sys_corr_76: 3.4443331754478534 + sys_corr_77: 13.184537870583817 + sys_corr_78: -5.265059924732408 + sys_corr_79: 0.6117803976704083 + sys_corr_80: -4.35813152331331 + sys_corr_81: -1.2559849584762888 + sys_corr_82: -0.06454123855423982 + sys_corr_83: -0.8429616772003746 + sys_corr_84: 2.5424233630714106 + sys_corr_85: 1.5058287061803646 + sys_corr_86: 7.136687681305154 + sys_corr_87: -2.0329796075994855 + sys_corr_88: 7.144307936184595 + sys_corr_89: -0.4671780531128163 + sys_corr_90: 0.34040761818993004 + sys_corr_91: 0.5531287867572531 + sys_corr_92: -2.9347734483689325 + sys_corr_93: -0.043365490882643 + sys_corr_94: 0.3513904155552447 + sys_corr_95: 0.13261769010747643 + sys_corr_96: -0.003447697443078384 + sys_corr_97: 0.9280809594068649 + sys_corr_98: 0.28805742629520265 + sys_corr_99: 0.4805138098838593 + sys_corr_100: -0.21916879405803233 + sys_corr_101: -0.3418886850036631 + sys_corr_102: -0.4016468060883468 + sys_corr_103: 0.666321402148441 + sys_corr_104: -0.4772165336238328 + sys_corr_105: -0.392243022881274 + sys_corr_106: -0.10381464648308728 + sys_corr_107: -0.1301624333477705 + sys_corr_108: 0.22799700941580175 + sys_corr_109: 0.17007521164151437 + sys_corr_110: -0.13305784352668903 + sys_corr_111: 0.09474883344447942 + sys_corr_112: 0.1380026640530244 + sys_corr_113: 0.16347985459285705 + sys_corr_114: 0.000588746250687996 + sys_corr_115: 0.13127645998748955 + sys_corr_116: -0.04390184399638801 + sys_corr_117: -0.022859209676011533 + sys_corr_118: 0.05301676902569228 + sys_corr_119: -0.0038360395106538494 + sys_corr_120: 0.008873282009695137 + sys_corr_121: -0.0059773479111936935 + sys_corr_122: 0.0015029864965266438 + sys_corr_123: -0.006230817567296826 + sys_corr_124: -0.03523614393046474 + sys_corr_125: -0.007296810714421645 + sys_corr_126: 0.00037658716191963835 + sys_corr_127: -0.04780637971570294 + sys_corr_128: 0.13001805321104518 + sys_corr_129: 0.054242930360133196 + sys_corr_130: 0.0019679679276569176 + sys_corr_131: -0.014262199467406018 + sys_corr_132: -0.058549600416938144 stat: 0.0 luminosity: 562.97076 -- sys_corr_1: 264.6972111747807 - sys_corr_2: 63.68820261953083 - sys_corr_3: -105.70791505382881 - sys_corr_4: -19.027825029375997 - sys_corr_5: 150.0009176398724 - sys_corr_6: -511.0612984972629 - sys_corr_7: 149.50057834816818 - sys_corr_8: 56.69266427538798 - sys_corr_9: 51.20716942560527 - sys_corr_10: -20.473892901973937 - sys_corr_11: 74.08784086220909 - sys_corr_12: 129.91972772178752 - sys_corr_13: 76.4005103965614 - sys_corr_14: -31.09667003615373 - sys_corr_15: -11.053035069033951 - sys_corr_16: 7.70330105995434 - sys_corr_17: 8.910838458764278 - sys_corr_18: 7.298133622690801 - sys_corr_19: -3.633972379137887 - sys_corr_20: 11.428197276510575 - sys_corr_21: 6.7929752356508635 - sys_corr_22: -37.48569318775199 - sys_corr_23: 9.781846324800583 - sys_corr_24: -71.44107902072594 - sys_corr_25: 61.29585584303897 - sys_corr_26: 156.69355802540335 - sys_corr_27: -61.70450736296805 - sys_corr_28: -88.08446589395187 - sys_corr_29: 38.35389568318967 - sys_corr_30: 48.623460376352746 - sys_corr_31: 79.94406125145136 - sys_corr_32: -42.22811667500214 - sys_corr_33: 15.700247826564638 - sys_corr_34: -4.02165732003164 - sys_corr_35: 35.52289980122498 - sys_corr_36: 76.56999300125347 - sys_corr_37: 158.21759980643944 - sys_corr_38: 208.63503155190102 - sys_corr_39: 85.03393401286301 - sys_corr_40: -101.91675598605812 - sys_corr_41: 52.979355436416235 - sys_corr_42: 38.33582162681677 - sys_corr_43: -74.31386566836456 - sys_corr_44: -14.860241178214125 - sys_corr_45: -17.96063634419035 - sys_corr_46: 110.67283636046488 - sys_corr_47: 51.13991817626221 - sys_corr_48: 23.39577572462699 - sys_corr_49: 3.2181970062736673 - sys_corr_50: 5.073009705196492 - sys_corr_51: 33.21795095784284 - sys_corr_52: 29.321489984996504 - sys_corr_53: 1.1279161700020213 - sys_corr_54: -12.466617595679491 - sys_corr_55: -3.9176576460970405 - sys_corr_56: 8.616695995208104 - sys_corr_57: 13.280929208643359 - sys_corr_58: 10.839056112930686 - sys_corr_59: 26.652438879251335 - sys_corr_60: -4.249332412637405 - sys_corr_61: 3.6297724271539655 - sys_corr_62: 15.290320969268057 - sys_corr_63: -6.345511073183717 - sys_corr_64: 6.3943969802583736 - sys_corr_65: -7.986226482436439 - sys_corr_66: 15.291774794088253 - sys_corr_67: 6.914448325797669 - sys_corr_68: 0.5048129694602778 - sys_corr_69: 0.8165614774367401 - sys_corr_70: -6.185911044774944 - sys_corr_71: -10.315698587320007 - sys_corr_72: 10.090675639439832 - sys_corr_73: -5.756310077460764 - sys_corr_74: 2.1193688893559823 - sys_corr_75: -3.9369369746022227 - sys_corr_76: -0.07154962088756558 - sys_corr_77: -3.123373878698277 - sys_corr_78: 2.9533858993699997 - sys_corr_79: 0.6735912424877194 - sys_corr_80: 4.5936312203598 - sys_corr_81: 11.117232189215807 - sys_corr_82: -4.2835218728148785 - sys_corr_83: -7.856186193782327 - sys_corr_84: -0.2849668897241616 - sys_corr_85: 0.7670242894970991 - sys_corr_86: -3.0318168826258836 - sys_corr_87: -4.719457297268845 - sys_corr_88: 4.92582870504082 - sys_corr_89: -1.201426779827583 - sys_corr_90: -0.3846909420295258 - sys_corr_91: -0.5657990138349874 - sys_corr_92: -1.9629015417976323 - sys_corr_93: -0.26747371715017665 - sys_corr_94: -1.0517965642391833 - sys_corr_95: 1.1152530524679443 - sys_corr_96: 0.159463158487521 - sys_corr_97: 1.7063481313067308 - sys_corr_98: -0.7676766448870815 - sys_corr_99: 0.8784016831353407 - sys_corr_100: -0.073992598271956 - sys_corr_101: 0.23444140073584666 - sys_corr_102: -0.44941000928551356 - sys_corr_103: 2.667387154727888 - sys_corr_104: -0.0019144675357611783 - sys_corr_105: 1.9776202362227404 - sys_corr_106: 0.25264935526144566 - sys_corr_107: -0.2703756252698119 - sys_corr_108: 0.05487175509638629 - sys_corr_109: 0.2446790286856659 - sys_corr_110: -0.07705592216247104 - sys_corr_111: -0.13602156773211788 - sys_corr_112: 0.018336829120383966 - sys_corr_113: -0.16107257989847504 - sys_corr_114: -0.00028805175281217815 - sys_corr_115: 0.021151486223567183 - sys_corr_116: 0.05955515422137722 - sys_corr_117: 0.04200942667519902 - sys_corr_118: -0.030455462963217647 - sys_corr_119: 0.004704364738823081 - sys_corr_120: -0.022168012875448038 - sys_corr_121: 0.007998376279430877 - sys_corr_122: -0.006503182337832589 - sys_corr_123: 0.011526553236487042 - sys_corr_124: -0.06519670299826197 - sys_corr_125: -0.009777778760041126 - sys_corr_126: 0.007459748971539748 - sys_corr_127: -0.0995486454154537 - sys_corr_128: -0.0034795756835746166 - sys_corr_129: 0.0033290013538573105 - sys_corr_130: 0.0017432623040329906 - sys_corr_131: 0.010188696397033532 - sys_corr_132: -0.02206367253830326 +- sys_corr_1: 264.69721117478 + sys_corr_2: 63.68820261953134 + sys_corr_3: -105.70791505382884 + sys_corr_4: -19.027825029374714 + sys_corr_5: 150.00091763986995 + sys_corr_6: -511.0612984972623 + sys_corr_7: 149.5005783481677 + sys_corr_8: 56.692664275391365 + sys_corr_9: 51.20716942560643 + sys_corr_10: -20.473892901979987 + sys_corr_11: 74.08784086222214 + sys_corr_12: 129.9197277217852 + sys_corr_13: -76.4005103965608 + sys_corr_14: 31.09667003615423 + sys_corr_15: 11.053035069034166 + sys_corr_16: -7.703301059954343 + sys_corr_17: 8.910838458764037 + sys_corr_18: -7.2981336226905595 + sys_corr_19: -3.63397237913826 + sys_corr_20: 11.428197276510973 + sys_corr_21: 6.792975235650509 + sys_corr_22: -37.48569318775204 + sys_corr_23: 9.781846324801423 + sys_corr_24: -71.44107902072554 + sys_corr_25: 61.29585584304142 + sys_corr_26: 156.69355802540673 + sys_corr_27: -61.704507362972336 + sys_corr_28: -88.08446589395061 + sys_corr_29: 38.353895683185854 + sys_corr_30: 48.62346037635384 + sys_corr_31: 79.94406125145028 + sys_corr_32: 42.22811667498887 + sys_corr_33: -15.700247826576602 + sys_corr_34: -4.021657320040481 + sys_corr_35: 35.52289980122713 + sys_corr_36: 76.56999300127931 + sys_corr_37: -158.21759980647775 + sys_corr_38: -208.63503155187905 + sys_corr_39: -85.03393401290262 + sys_corr_40: 101.91675598606203 + sys_corr_41: 52.979355436409996 + sys_corr_42: -38.335821626800985 + sys_corr_43: -74.31386566838776 + sys_corr_44: -14.860241178199026 + sys_corr_45: 17.960636344120825 + sys_corr_46: -110.67283636047542 + sys_corr_47: -51.13991817626443 + sys_corr_48: -23.395775724626596 + sys_corr_49: -3.2181970062783214 + sys_corr_50: 5.073009705200823 + sys_corr_51: 33.217950957838866 + sys_corr_52: 29.32148998499233 + sys_corr_53: -1.1279161700055393 + sys_corr_54: 12.46661759568096 + sys_corr_55: 3.9176576460904813 + sys_corr_56: -8.616695995203784 + sys_corr_57: 13.280929208646118 + sys_corr_58: -10.839056112908269 + sys_corr_59: 26.652438879261442 + sys_corr_60: 4.249332412637628 + sys_corr_61: -3.6297724271565133 + sys_corr_62: -15.290320969269253 + sys_corr_63: -6.345511073182706 + sys_corr_64: 6.394396980255795 + sys_corr_65: -7.986226482428224 + sys_corr_66: -15.291774794088655 + sys_corr_67: 6.914448325797178 + sys_corr_68: -0.5048129694601579 + sys_corr_69: 0.8165614774344038 + sys_corr_70: 6.1859110447762955 + sys_corr_71: -10.315698587317245 + sys_corr_72: -10.090675639440583 + sys_corr_73: 5.756310077463038 + sys_corr_74: 2.119368889355353 + sys_corr_75: -3.9369369746027743 + sys_corr_76: -0.07154962088925207 + sys_corr_77: 3.123373878698484 + sys_corr_78: -4.593631220359724 + sys_corr_79: 2.9533858993700934 + sys_corr_80: 0.6735912424870352 + sys_corr_81: -11.11723218921501 + sys_corr_82: 4.2835218728146005 + sys_corr_83: -7.856186193784464 + sys_corr_84: 0.2849668897239935 + sys_corr_85: 0.7670242894972784 + sys_corr_86: 3.031816882628367 + sys_corr_87: 4.719457297267383 + sys_corr_88: 4.925828705034618 + sys_corr_89: -0.384690942029459 + sys_corr_90: -1.2014267798275733 + sys_corr_91: -0.565799013834907 + sys_corr_92: 1.962901541796401 + sys_corr_93: -0.2674737171501566 + sys_corr_94: -1.0517965642395073 + sys_corr_95: 1.1152530524679365 + sys_corr_96: -0.1594631584874378 + sys_corr_97: 1.7063481313068092 + sys_corr_98: 0.7676766448871344 + sys_corr_99: 0.8784016831353698 + sys_corr_100: 0.23444140073558867 + sys_corr_101: 0.44941000928450764 + sys_corr_102: 2.6673871547267547 + sys_corr_103: 0.0019144675355335218 + sys_corr_104: -1.9776202362238307 + sys_corr_105: 0.0739925982718104 + sys_corr_106: 0.25264935526125576 + sys_corr_107: 0.05487175509631685 + sys_corr_108: 0.244679028685647 + sys_corr_109: 0.07705592216249497 + sys_corr_110: 0.27037562526991826 + sys_corr_111: 0.1360215677321802 + sys_corr_112: 0.01833682912038076 + sys_corr_113: 0.16107257989846388 + sys_corr_114: -0.00028805175281089375 + sys_corr_115: 0.021151486223570645 + sys_corr_116: -0.05955515422137684 + sys_corr_117: -0.04200942667520008 + sys_corr_118: 0.030455462963211607 + sys_corr_119: -0.004704364738822296 + sys_corr_120: 0.022168012875439142 + sys_corr_121: -0.007998376279429401 + sys_corr_122: 0.01152655323648823 + sys_corr_123: -0.0065031823378353774 + sys_corr_124: -0.06519670299825833 + sys_corr_125: -0.009777778760049729 + sys_corr_126: -0.00745974897154016 + sys_corr_127: -0.0995486454154835 + sys_corr_128: -0.0034795756835765716 + sys_corr_129: 0.0033290013538629904 + sys_corr_130: 0.0017432623040350194 + sys_corr_131: -0.01018869639703721 + sys_corr_132: -0.022063672538306295 stat: 0.0 luminosity: 565.947492 -- sys_corr_1: 265.8395967598759 - sys_corr_2: 72.69973435238124 - sys_corr_3: -94.74661944213199 - sys_corr_4: -45.731507588231715 - sys_corr_5: 131.2923038419935 - sys_corr_6: -456.88797291280963 - sys_corr_7: 135.37376463014155 - sys_corr_8: 52.04820696366403 - sys_corr_9: 67.65710541259062 - sys_corr_10: -14.572614722006856 - sys_corr_11: 115.0523010931134 - sys_corr_12: 160.91075908453047 - sys_corr_13: 78.27906550883415 - sys_corr_14: -17.541782452928146 - sys_corr_15: -20.094468399064734 - sys_corr_16: 4.0697212212240865 - sys_corr_17: 1.0794858168779293 - sys_corr_18: 2.8286112736250613 - sys_corr_19: -23.19029652532292 - sys_corr_20: 9.12239079279935 - sys_corr_21: 4.781013010622068 - sys_corr_22: -57.72355141542599 - sys_corr_23: -4.893202012792912 - sys_corr_24: -40.22865371664507 - sys_corr_25: 66.537888845172 - sys_corr_26: 148.35495822386844 - sys_corr_27: -58.78402849526035 - sys_corr_28: -46.93059629952736 - sys_corr_29: 9.252014338539016 - sys_corr_30: -39.81125852862992 - sys_corr_31: 109.9572186600311 - sys_corr_32: 4.16758195526934 - sys_corr_33: -32.83119464586469 - sys_corr_34: -19.532625868991424 - sys_corr_35: 6.717582606666677 - sys_corr_36: 22.84289500872235 - sys_corr_37: -5.12733650091955 - sys_corr_38: -34.61371421801112 - sys_corr_39: -60.19398697322128 - sys_corr_40: 93.30927881192702 - sys_corr_41: -30.441883754289872 - sys_corr_42: 66.5490460004785 - sys_corr_43: -135.5136197788143 - sys_corr_44: 51.812279515461285 - sys_corr_45: -39.70358373429654 - sys_corr_46: -66.58091435666856 - sys_corr_47: -70.10546882472569 - sys_corr_48: 66.51934827200049 - sys_corr_49: 180.22043546801052 - sys_corr_50: 67.26301050323207 - sys_corr_51: 0.7425144600315168 - sys_corr_52: -27.92858137904673 - sys_corr_53: -4.682320014694401 - sys_corr_54: -8.747640732244626 - sys_corr_55: 57.69407086430948 - sys_corr_56: 22.933986715678817 - sys_corr_57: 26.19107180001734 - sys_corr_58: 21.81831462585928 - sys_corr_59: -6.116681342843915 - sys_corr_60: -17.10476355505441 - sys_corr_61: -14.447273947454425 - sys_corr_62: -13.595397054462644 - sys_corr_63: -14.044389706310124 - sys_corr_64: -0.37156885441444776 - sys_corr_65: 20.24115797011886 - sys_corr_66: -8.698873317842942 - sys_corr_67: 5.378543163920771 - sys_corr_68: -21.473766494326362 - sys_corr_69: -19.340076881750857 - sys_corr_70: 13.042333382929925 - sys_corr_71: 19.02798934514322 - sys_corr_72: 1.1060457608087402 - sys_corr_73: -6.500341595936405 - sys_corr_74: -8.646728960783216 - sys_corr_75: 11.550589107691613 - sys_corr_76: 7.282789785917111 - sys_corr_77: -9.75757240903762 - sys_corr_78: 3.9677931633841768 - sys_corr_79: -2.45998613439696 - sys_corr_80: 5.678065718483304 - sys_corr_81: -6.848652369087923 - sys_corr_82: 5.18652137308484 - sys_corr_83: 0.7019634284786427 - sys_corr_84: -2.9062483800103056 - sys_corr_85: 3.211689155389809 - sys_corr_86: -8.092393382788362 - sys_corr_87: 1.384628184393038 - sys_corr_88: 1.9218233350120817 - sys_corr_89: -0.614124209679828 - sys_corr_90: -1.0059595356097415 - sys_corr_91: -0.756538713428703 - sys_corr_92: 0.6406055210889594 - sys_corr_93: -0.321882952515044 - sys_corr_94: -1.763688821346992 - sys_corr_95: 2.068287104362953 - sys_corr_96: 0.0828051080784761 - sys_corr_97: 2.044496081806694 - sys_corr_98: -0.9472327613362148 - sys_corr_99: 0.017853910988614313 - sys_corr_100: -0.4424604363101399 - sys_corr_101: 0.11509907875575086 - sys_corr_102: -0.03858292663601394 - sys_corr_103: 2.734598781342631 - sys_corr_104: -0.38505677198651694 - sys_corr_105: 1.9551380211962004 - sys_corr_106: 0.44081169720066427 - sys_corr_107: -0.4298526385533785 - sys_corr_108: 0.18709648512805435 - sys_corr_109: 0.3859970898873413 - sys_corr_110: -0.06316044602974269 - sys_corr_111: 0.02626427492308942 - sys_corr_112: -0.005631464641092377 - sys_corr_113: -0.061099907040830716 - sys_corr_114: -0.0006762918572667887 - sys_corr_115: -0.02909756194814562 - sys_corr_116: 0.08796996691249531 - sys_corr_117: 0.08212854662760931 - sys_corr_118: -0.017561394518201396 - sys_corr_119: 0.002230245097128931 - sys_corr_120: -0.0319925313240551 - sys_corr_121: 0.00678100551188599 - sys_corr_122: 0.00011454473099831259 - sys_corr_123: 0.014467381307040764 - sys_corr_124: -0.09494370217114444 - sys_corr_125: -0.02816473609812674 - sys_corr_126: 0.001145336495948317 - sys_corr_127: 0.6435409672904462 - sys_corr_128: 0.15150459526193039 - sys_corr_129: 0.1284463467156859 - sys_corr_130: 0.005050296248350454 - sys_corr_131: 0.02998065602477306 - sys_corr_132: -0.03114260158592973 +- sys_corr_1: 265.8395967598751 + sys_corr_2: 72.69973435238192 + sys_corr_3: -94.74661944213186 + sys_corr_4: -45.73150758823081 + sys_corr_5: 131.29230384199124 + sys_corr_6: -456.887972912809 + sys_corr_7: 135.37376463014147 + sys_corr_8: 52.04820696366737 + sys_corr_9: 67.65710541259206 + sys_corr_10: -14.572614722014949 + sys_corr_11: 115.05230109312889 + sys_corr_12: 160.91075908452592 + sys_corr_13: -78.27906550883306 + sys_corr_14: 17.54178245292807 + sys_corr_15: 20.094468399065153 + sys_corr_16: -4.069721221224223 + sys_corr_17: 1.0794858168777044 + sys_corr_18: -2.8286112736250035 + sys_corr_19: -23.19029652532305 + sys_corr_20: 9.122390792800191 + sys_corr_21: 4.781013010622269 + sys_corr_22: -57.723551415425014 + sys_corr_23: -4.893202012792076 + sys_corr_24: -40.22865371664444 + sys_corr_25: 66.53788884517284 + sys_corr_26: 148.3549582238692 + sys_corr_27: -58.78402849526379 + sys_corr_28: -46.93059629952632 + sys_corr_29: 9.252014338537634 + sys_corr_30: -39.81125852863056 + sys_corr_31: 109.9572186600318 + sys_corr_32: -4.167581955269016 + sys_corr_33: 32.83119464586242 + sys_corr_34: -19.532625868996394 + sys_corr_35: 6.717582606661691 + sys_corr_36: 22.84289500871806 + sys_corr_37: 5.1273365009248035 + sys_corr_38: 34.61371421800702 + sys_corr_39: 60.19398697322556 + sys_corr_40: -93.3092788119253 + sys_corr_41: -30.441883754307607 + sys_corr_42: -66.5490460004732 + sys_corr_43: -135.51361977884744 + sys_corr_44: 51.81227951544702 + sys_corr_45: 39.70358373432769 + sys_corr_46: 66.5809143566581 + sys_corr_47: 70.10546882474257 + sys_corr_48: -66.51934827198208 + sys_corr_49: -180.2204354680171 + sys_corr_50: 67.2630105032358 + sys_corr_51: 0.7425144600323292 + sys_corr_52: -27.92858137904685 + sys_corr_53: 4.682320014694069 + sys_corr_54: 8.747640732263058 + sys_corr_55: -57.69407086430963 + sys_corr_56: -22.933986715684956 + sys_corr_57: 26.191071800030986 + sys_corr_58: -21.818314625861362 + sys_corr_59: -6.116681342825914 + sys_corr_60: 17.104763555048105 + sys_corr_61: 14.447273947452603 + sys_corr_62: 13.595397054457866 + sys_corr_63: -14.04438970631624 + sys_corr_64: -0.3715688544036586 + sys_corr_65: 20.24115797011743 + sys_corr_66: 8.69887331785417 + sys_corr_67: 5.378543163914497 + sys_corr_68: 21.47376649430752 + sys_corr_69: -19.340076881745357 + sys_corr_70: -13.042333382922543 + sys_corr_71: 19.027989345137115 + sys_corr_72: -1.106045760806402 + sys_corr_73: 6.500341595935849 + sys_corr_74: -8.646728960785017 + sys_corr_75: 11.5505891076795 + sys_corr_76: 7.282789785924269 + sys_corr_77: 9.757572409037854 + sys_corr_78: -5.678065718484984 + sys_corr_79: 3.967793163385267 + sys_corr_80: -2.4599861343974703 + sys_corr_81: 6.84865236908959 + sys_corr_82: -5.186521373084189 + sys_corr_83: 0.701963428480101 + sys_corr_84: 2.9062483800102497 + sys_corr_85: 3.2116891553906948 + sys_corr_86: 8.092393382795231 + sys_corr_87: -1.3846281843918042 + sys_corr_88: 1.9218233350057004 + sys_corr_89: -1.005959535609807 + sys_corr_90: -0.614124209679902 + sys_corr_91: -0.7565387134286469 + sys_corr_92: -0.6406055210911584 + sys_corr_93: -0.32188295251494325 + sys_corr_94: -1.7636888213472717 + sys_corr_95: 2.068287104362573 + sys_corr_96: -0.08280510807840248 + sys_corr_97: 2.044496081807045 + sys_corr_98: 0.9472327613363183 + sys_corr_99: 0.017853910988835417 + sys_corr_100: 0.11509907875568605 + sys_corr_101: 0.03858292663544527 + sys_corr_102: 2.734598781343265 + sys_corr_103: 0.38505677198588556 + sys_corr_104: -1.9551380211982041 + sys_corr_105: 0.44246043631020626 + sys_corr_106: 0.4408116972006292 + sys_corr_107: 0.18709648512804478 + sys_corr_108: 0.3859970898873381 + sys_corr_109: 0.06316044602973953 + sys_corr_110: 0.42985263855362815 + sys_corr_111: -0.026264274923079516 + sys_corr_112: -0.00563146464106837 + sys_corr_113: 0.061099907040838626 + sys_corr_114: -0.0006762918572667525 + sys_corr_115: -0.029097561948144366 + sys_corr_116: -0.08796996691248521 + sys_corr_117: -0.08212854662759526 + sys_corr_118: 0.01756139451819308 + sys_corr_119: -0.002230245097128094 + sys_corr_120: 0.03199253132405703 + sys_corr_121: -0.006781005511884915 + sys_corr_122: 0.014467381307041453 + sys_corr_123: 0.00011454473099580456 + sys_corr_124: -0.09494370217112824 + sys_corr_125: -0.028164736098119352 + sys_corr_126: -0.0011453364959527795 + sys_corr_127: 0.6435409672903294 + sys_corr_128: 0.15150459526194324 + sys_corr_129: 0.12844634671568614 + sys_corr_130: 0.005050296248345179 + sys_corr_131: -0.029980656024778406 + sys_corr_132: -0.031142601585930425 stat: 0.0 luminosity: 562.0156300000001 -- sys_corr_1: 259.5844604170032 - sys_corr_2: 74.11434805089026 - sys_corr_3: -70.86415550572652 - sys_corr_4: -69.9481209510813 - sys_corr_5: 96.06229966071734 - sys_corr_6: -378.398972808916 - sys_corr_7: 146.64927657560943 - sys_corr_8: 81.21415990189968 - sys_corr_9: 93.78760318034709 - sys_corr_10: -10.070260518392239 - sys_corr_11: 133.5752197195386 - sys_corr_12: 163.17000523361318 - sys_corr_13: 112.15931878258922 - sys_corr_14: -36.680829087380374 - sys_corr_15: -33.76329281399862 - sys_corr_16: 28.515572274914273 - sys_corr_17: 17.29672108908607 - sys_corr_18: 27.11548565249024 - sys_corr_19: -17.055124356623583 - sys_corr_20: -2.7470589749376306 - sys_corr_21: -1.6463168845270484 - sys_corr_22: -70.27043108533945 - sys_corr_23: 1.8927435101979015 - sys_corr_24: 10.411219983598158 - sys_corr_25: 69.41255594498428 - sys_corr_26: 159.6034061847463 - sys_corr_27: -55.672584517997954 - sys_corr_28: -40.417334464990326 - sys_corr_29: -2.198113927689294 - sys_corr_30: -43.694832712111115 - sys_corr_31: 94.94187470877367 - sys_corr_32: 22.120458514514738 - sys_corr_33: -4.14955885331903 - sys_corr_34: -17.289426403901896 - sys_corr_35: -33.76654116081066 - sys_corr_36: -11.392320079697747 - sys_corr_37: 38.14686705550453 - sys_corr_38: -54.565576278329445 - sys_corr_39: -27.261327755208697 - sys_corr_40: -82.443692403531 - sys_corr_41: 150.27889826040962 - sys_corr_42: -187.97311302968734 - sys_corr_43: 75.96369750654004 - sys_corr_44: 87.40491526376077 - sys_corr_45: -122.1238846107655 - sys_corr_46: -69.5788001170729 - sys_corr_47: -8.699852994064173 - sys_corr_48: -50.12074999424226 - sys_corr_49: -21.456756519842966 - sys_corr_50: -7.506904486368623 - sys_corr_51: -43.721514436872134 - sys_corr_52: 23.747059371172373 - sys_corr_53: -7.668823348853902 - sys_corr_54: 27.828887001217023 - sys_corr_55: 45.3444049465704 - sys_corr_56: 8.047336256003005 - sys_corr_57: -6.2362022975546125 - sys_corr_58: 10.598012159115386 - sys_corr_59: -0.9896588014703704 - sys_corr_60: -8.3274340745598 - sys_corr_61: -8.168313713861465 - sys_corr_62: 0.9089218406844336 - sys_corr_63: -6.170270189334255 - sys_corr_64: -16.72696100162835 - sys_corr_65: -5.091327785205516 - sys_corr_66: 0.5821057589075324 - sys_corr_67: 12.11492585312397 - sys_corr_68: -9.646443660009245 - sys_corr_69: -3.0104294776151885 - sys_corr_70: 2.604999279292937 - sys_corr_71: -1.175266906335953 - sys_corr_72: -3.7067350070952543 - sys_corr_73: -8.874882751815655 - sys_corr_74: 3.7482694962948435 - sys_corr_75: -1.8325911546709572 - sys_corr_76: 7.327486673699058 - sys_corr_77: 1.2586596726637576 - sys_corr_78: -0.22112891234171042 - sys_corr_79: 3.6659263618804325 - sys_corr_80: 6.076845223652502 - sys_corr_81: -6.818079819423199 - sys_corr_82: 9.196804052159388 - sys_corr_83: 3.6109052944052307 - sys_corr_84: -2.626743321933681 - sys_corr_85: 4.140680485078531 - sys_corr_86: -4.785139257794837 - sys_corr_87: 10.252222743863253 - sys_corr_88: 4.100025621471118 - sys_corr_89: -0.20122135797392085 - sys_corr_90: -1.4856623041728743 - sys_corr_91: 0.004314089787919125 - sys_corr_92: -1.6821645680603194 - sys_corr_93: -0.20375279769296228 - sys_corr_94: -0.7578345150187892 - sys_corr_95: 1.8327491393769904 - sys_corr_96: 0.08650213294052914 - sys_corr_97: 1.294264337239881 - sys_corr_98: -0.06789525517783637 - sys_corr_99: 1.150126179860047 - sys_corr_100: -0.7682613988932498 - sys_corr_101: 0.42133619261529887 - sys_corr_102: -0.7880283364820022 - sys_corr_103: 2.98981518203131 - sys_corr_104: -0.7585149534722391 - sys_corr_105: 1.704831626371611 - sys_corr_106: 0.8286458893768566 - sys_corr_107: -0.9530534176382012 - sys_corr_108: 0.7220517970810285 - sys_corr_109: 0.05850147798076521 - sys_corr_110: 0.023963424635187382 - sys_corr_111: 0.17744932790699922 - sys_corr_112: -0.0781280984313075 - sys_corr_113: 0.03614725187750694 - sys_corr_114: -0.0014131413757653506 - sys_corr_115: -0.0868342780203685 - sys_corr_116: 0.04305564021142535 - sys_corr_117: 0.05270208520226994 - sys_corr_118: -0.0036376776607344036 - sys_corr_119: 0.0017196237645305083 - sys_corr_120: -0.027154629274839852 - sys_corr_121: 0.00026491518495753557 - sys_corr_122: 0.009351283794172036 - sys_corr_123: 0.02602006409254443 - sys_corr_124: -0.07131906241732151 - sys_corr_125: -0.021764224017229578 - sys_corr_126: -0.0002850750710967482 - sys_corr_127: 0.3586820204745806 - sys_corr_128: 0.2020904734333583 - sys_corr_129: -0.07102981756361833 - sys_corr_130: -0.0013162728842427284 - sys_corr_131: 0.02606057029694836 - sys_corr_132: 0.022779039646997935 +- sys_corr_1: 259.58446041700273 + sys_corr_2: 74.11434805089068 + sys_corr_3: -70.86415550572647 + sys_corr_4: -69.94812095108091 + sys_corr_5: 96.06229966071572 + sys_corr_6: -378.39897280891483 + sys_corr_7: 146.64927657560946 + sys_corr_8: 81.21415990190407 + sys_corr_9: 93.787603180349 + sys_corr_10: -10.070260518402248 + sys_corr_11: 133.57521971955535 + sys_corr_12: 163.1700052336079 + sys_corr_13: -112.15931878258687 + sys_corr_14: 36.68082908738014 + sys_corr_15: 33.763292813998945 + sys_corr_16: -28.51557227491267 + sys_corr_17: 17.2967210890853 + sys_corr_18: -27.115485652490893 + sys_corr_19: -17.055124356623427 + sys_corr_20: -2.747058974936782 + sys_corr_21: -1.6463168845265481 + sys_corr_22: -70.27043108533847 + sys_corr_23: 1.8927435101989896 + sys_corr_24: 10.411219983598647 + sys_corr_25: 69.41255594498645 + sys_corr_26: 159.60340618474953 + sys_corr_27: -55.672584518002054 + sys_corr_28: -40.417334464991356 + sys_corr_29: -2.198113927688378 + sys_corr_30: -43.69483271211204 + sys_corr_31: 94.941874708773 + sys_corr_32: -22.120458514510126 + sys_corr_33: 4.149558853326194 + sys_corr_34: -17.28942640389217 + sys_corr_35: -33.76654116081637 + sys_corr_36: -11.392320079694072 + sys_corr_37: -38.14686705548809 + sys_corr_38: 54.56557627833546 + sys_corr_39: 27.261327755193786 + sys_corr_40: 82.44369240350947 + sys_corr_41: 150.2788982604357 + sys_corr_42: 187.9731130297006 + sys_corr_43: 75.96369750662818 + sys_corr_44: 87.40491526375928 + sys_corr_45: 122.12388461081673 + sys_corr_46: 69.57880011702805 + sys_corr_47: 8.6998529940722 + sys_corr_48: 50.12074999424336 + sys_corr_49: 21.456756519850586 + sys_corr_50: -7.506904486371979 + sys_corr_51: -43.721514436876525 + sys_corr_52: 23.74705937117037 + sys_corr_53: 7.668823348842618 + sys_corr_54: -27.82888700120493 + sys_corr_55: -45.34440494656727 + sys_corr_56: -8.047336256004044 + sys_corr_57: -6.236202297550789 + sys_corr_58: -10.598012159114568 + sys_corr_59: -0.9896588014619507 + sys_corr_60: 8.327434074556942 + sys_corr_61: 8.168313713859067 + sys_corr_62: -0.9089218406827797 + sys_corr_63: -6.170270189327211 + sys_corr_64: -16.726961001624225 + sys_corr_65: -5.091327785222537 + sys_corr_66: -0.5821057589004668 + sys_corr_67: 12.114925853119226 + sys_corr_68: 9.646443660004271 + sys_corr_69: -3.010429477615268 + sys_corr_70: -2.6049992792908765 + sys_corr_71: -1.175266906336016 + sys_corr_72: 3.7067350070950402 + sys_corr_73: 8.874882751816436 + sys_corr_74: 3.7482694962949363 + sys_corr_75: -1.832591154676428 + sys_corr_76: 7.327486673698922 + sys_corr_77: -1.2586596726684829 + sys_corr_78: -6.07684522365265 + sys_corr_79: -0.22112891234121856 + sys_corr_80: 3.665926361880826 + sys_corr_81: 6.818079819422269 + sys_corr_82: -9.196804052159628 + sys_corr_83: 3.610905294407028 + sys_corr_84: 2.6267433219340512 + sys_corr_85: 4.140680485079229 + sys_corr_86: 4.785139257796215 + sys_corr_87: -10.252222743863864 + sys_corr_88: 4.100025621463174 + sys_corr_89: -1.4856623041729515 + sys_corr_90: -0.2012213579737886 + sys_corr_91: 0.004314089787913985 + sys_corr_92: 1.6821645680576092 + sys_corr_93: -0.20375279769298213 + sys_corr_94: -0.7578345150194364 + sys_corr_95: 1.832749139377249 + sys_corr_96: -0.08650213294041881 + sys_corr_97: 1.2942643372398879 + sys_corr_98: 0.06789525517789388 + sys_corr_99: 1.1501261798600653 + sys_corr_100: 0.42133619261500793 + sys_corr_101: 0.7880283364808013 + sys_corr_102: 2.9898151820300423 + sys_corr_103: 0.7585149534719959 + sys_corr_104: -1.7048316263728247 + sys_corr_105: 0.7682613988931558 + sys_corr_106: 0.8286458893765611 + sys_corr_107: 0.7220517970809248 + sys_corr_108: 0.05850147798066639 + sys_corr_109: -0.023963424635161948 + sys_corr_110: 0.953053417638252 + sys_corr_111: -0.17744932790689677 + sys_corr_112: -0.07812809843128952 + sys_corr_113: -0.0361472518775009 + sys_corr_114: -0.0014131413757635847 + sys_corr_115: -0.08683427802038285 + sys_corr_116: -0.043055640211416196 + sys_corr_117: -0.052702085202251406 + sys_corr_118: 0.0036376776607137994 + sys_corr_119: -0.0017196237645309147 + sys_corr_120: 0.027154629274828774 + sys_corr_121: -0.0002649151849582698 + sys_corr_122: 0.026020064092518242 + sys_corr_123: 0.009351283794156623 + sys_corr_124: -0.07131906241732774 + sys_corr_125: -0.02176422401720897 + sys_corr_126: 0.00028507507108953387 + sys_corr_127: 0.35868202047459624 + sys_corr_128: 0.2020904734333933 + sys_corr_129: -0.07102981756361032 + sys_corr_130: -0.001316272884249128 + sys_corr_131: -0.026060570296930142 + sys_corr_132: 0.0227790396470046 stat: 0.0 luminosity: 539.288002 -- sys_corr_1: 276.75299240877354 - sys_corr_2: 72.4597787527508 - sys_corr_3: -41.63275731967154 - sys_corr_4: -110.69165642866749 - sys_corr_5: 14.830275668546053 - sys_corr_6: -228.92260165634218 - sys_corr_7: 174.8440895863466 - sys_corr_8: 111.75822788535473 - sys_corr_9: 133.81232406742606 - sys_corr_10: 18.13239376721231 - sys_corr_11: 187.37059805309593 - sys_corr_12: 239.35804339540093 - sys_corr_13: 143.67121525989475 - sys_corr_14: -47.763052602534 - sys_corr_15: -19.42768192827881 - sys_corr_16: 7.483369109663676 - sys_corr_17: 11.527199909484777 - sys_corr_18: 9.82954618718167 - sys_corr_19: -7.019196581781085 - sys_corr_20: -5.96908576781608 - sys_corr_21: -5.994513255198086 - sys_corr_22: -38.59694598262363 - sys_corr_23: 6.821048383768128 - sys_corr_24: 104.58468775167442 - sys_corr_25: 90.11192444562592 - sys_corr_26: 177.9507052693026 - sys_corr_27: -34.58641623000449 - sys_corr_28: -40.38073834436436 - sys_corr_29: -15.206192694131763 - sys_corr_30: -40.05441897190451 - sys_corr_31: 143.20408234493783 - sys_corr_32: 52.274290783290546 - sys_corr_33: -7.573494133060807 - sys_corr_34: 24.347822536029636 - sys_corr_35: -3.9041649955683897 - sys_corr_36: -44.92668407144864 - sys_corr_37: -83.23666278058028 - sys_corr_38: 2.1044670947085504 - sys_corr_39: -22.919011283623334 - sys_corr_40: -6.462659166124356 - sys_corr_41: -77.2518586437596 - sys_corr_42: -20.585201055348836 - sys_corr_43: -79.73562534622062 - sys_corr_44: -23.497103577949872 - sys_corr_45: 130.41061119703548 - sys_corr_46: -85.0424577596477 - sys_corr_47: 155.3962389025895 - sys_corr_48: 25.700111287366546 - sys_corr_49: -65.1711415124111 - sys_corr_50: -81.67025918582377 - sys_corr_51: -42.82142964316399 - sys_corr_52: 50.26850888581322 - sys_corr_53: -42.03849273738357 - sys_corr_54: 0.7632403111684163 - sys_corr_55: 11.202764862208992 - sys_corr_56: -11.044221294144398 - sys_corr_57: 6.452262524967399 - sys_corr_58: 6.7642769167099885 - sys_corr_59: -15.047183455071762 - sys_corr_60: -0.20484622199591176 - sys_corr_61: 17.543478294250598 - sys_corr_62: -10.017330004487382 - sys_corr_63: -17.27867319773921 - sys_corr_64: 3.540062041183819 - sys_corr_65: 12.598650472141417 - sys_corr_66: 17.601050020676727 - sys_corr_67: -8.230157580880245 - sys_corr_68: 6.885497690879527 - sys_corr_69: 23.081117512305305 - sys_corr_70: -1.1819993732328005 - sys_corr_71: -27.751364661924743 - sys_corr_72: 8.800371664644576 - sys_corr_73: 5.382354368236631 - sys_corr_74: 13.390457547251602 - sys_corr_75: 17.510546300940003 - sys_corr_76: -10.407542572784937 - sys_corr_77: 11.031817880557755 - sys_corr_78: 11.50094465095096 - sys_corr_79: 5.813481758739658 - sys_corr_80: -5.778218520855202 - sys_corr_81: -0.26259117138907057 - sys_corr_82: -0.7449538010584679 - sys_corr_83: 3.3513244815565457 - sys_corr_84: -0.0798018100608513 - sys_corr_85: 5.726623249271904 - sys_corr_86: 8.218214887157682 - sys_corr_87: -2.6584006051255984 - sys_corr_88: -5.015427362480148 - sys_corr_89: -5.202513123319039 - sys_corr_90: 0.41659631154050347 - sys_corr_91: -1.3571026197464024 - sys_corr_92: -5.627257856906761 - sys_corr_93: -0.3600540033858173 - sys_corr_94: -1.4166713808999118 - sys_corr_95: 1.0374167599638977 - sys_corr_96: 0.02175582634437703 - sys_corr_97: 0.5367499348928416 - sys_corr_98: -0.5630810217150494 - sys_corr_99: -0.3428401891699556 - sys_corr_100: -0.41334935808506695 - sys_corr_101: 0.6459869587043752 - sys_corr_102: -0.17127396460470395 - sys_corr_103: 1.1223974293470815 - sys_corr_104: -0.14388945447190912 - sys_corr_105: 0.5137616748837847 - sys_corr_106: 0.5842161052292381 - sys_corr_107: -0.032025611442127136 - sys_corr_108: 0.8493807106876766 - sys_corr_109: -0.17773901461861868 - sys_corr_110: 0.10014780832000078 - sys_corr_111: 0.32264205087013104 - sys_corr_112: -0.09560862145577469 - sys_corr_113: 0.005165477309442243 - sys_corr_114: -0.0014231144059447312 - sys_corr_115: -0.13624868917319938 - sys_corr_116: -0.019075377271813895 - sys_corr_117: -0.016372377381687418 - sys_corr_118: 0.014966417170787274 - sys_corr_119: -0.0024118692214623464 - sys_corr_120: 0.000424858676093102 - sys_corr_121: -0.010704530062085792 - sys_corr_122: 0.01962695976600469 - sys_corr_123: 0.02784332871493764 - sys_corr_124: 0.020036879612901883 - sys_corr_125: -0.009972794610193281 - sys_corr_126: -0.007034489441353871 - sys_corr_127: -0.18507549073809199 - sys_corr_128: 0.048546334825887494 - sys_corr_129: 0.07497324121411175 - sys_corr_130: -0.011324797191459887 - sys_corr_131: 0.0018264139594508877 - sys_corr_132: -0.004821687584686662 +- sys_corr_1: 276.7529924087729 + sys_corr_2: 72.45977875275105 + sys_corr_3: -41.63275731967147 + sys_corr_4: -110.69165642866733 + sys_corr_5: 14.830275668545257 + sys_corr_6: -228.9226016563415 + sys_corr_7: 174.84408958634685 + sys_corr_8: 111.75822788536026 + sys_corr_9: 133.81232406742834 + sys_corr_10: 18.132393767198234 + sys_corr_11: 187.37059805311992 + sys_corr_12: 239.35804339539396 + sys_corr_13: -143.6712152598925 + sys_corr_14: 47.763052602533676 + sys_corr_15: 19.427681928279753 + sys_corr_16: -7.483369109663411 + sys_corr_17: 11.52719990948484 + sys_corr_18: -9.829546187181341 + sys_corr_19: -7.019196581781111 + sys_corr_20: -5.969085767815419 + sys_corr_21: -5.994513255197813 + sys_corr_22: -38.596945982623545 + sys_corr_23: 6.821048383768846 + sys_corr_24: 104.58468775167556 + sys_corr_25: 90.11192444562674 + sys_corr_26: 177.95070526930152 + sys_corr_27: -34.58641623000866 + sys_corr_28: -40.38073834436352 + sys_corr_29: -15.206192694132499 + sys_corr_30: -40.05441897190401 + sys_corr_31: 143.2040823449387 + sys_corr_32: -52.274290783287206 + sys_corr_33: 7.573494133061588 + sys_corr_34: 24.3478225360286 + sys_corr_35: -3.904164995568236 + sys_corr_36: -44.92668407146402 + sys_corr_37: 83.23666278057709 + sys_corr_38: -2.10446709471907 + sys_corr_39: 22.91901128363197 + sys_corr_40: 6.462659166127411 + sys_corr_41: -77.25185864376897 + sys_corr_42: 20.58520105535158 + sys_corr_43: -79.73562534620442 + sys_corr_44: -23.497103577929607 + sys_corr_45: -130.41061119699813 + sys_corr_46: 85.04245775970385 + sys_corr_47: -155.39623890259065 + sys_corr_48: -25.700111287386022 + sys_corr_49: 65.17114151240578 + sys_corr_50: -81.67025918582772 + sys_corr_51: -42.821429643166844 + sys_corr_52: 50.268508885812054 + sys_corr_53: 42.03849273737276 + sys_corr_54: -0.7632403111643642 + sys_corr_55: -11.202764862206676 + sys_corr_56: 11.044221294149091 + sys_corr_57: 6.452262524957281 + sys_corr_58: -6.7642769167233885 + sys_corr_59: -15.047183455063417 + sys_corr_60: 0.20484622199753952 + sys_corr_61: -17.543478294247294 + sys_corr_62: 10.017330004487661 + sys_corr_63: -17.27867319774044 + sys_corr_64: 3.5400620411810966 + sys_corr_65: 12.59865047215075 + sys_corr_66: -17.601050020686305 + sys_corr_67: -8.230157580879489 + sys_corr_68: -6.885497690868814 + sys_corr_69: 23.081117512306946 + sys_corr_70: 1.181999373228932 + sys_corr_71: -27.75136466192391 + sys_corr_72: -8.80037166464933 + sys_corr_73: -5.382354368237731 + sys_corr_74: 13.390457547247719 + sys_corr_75: 17.51054630095833 + sys_corr_76: -10.40754257277558 + sys_corr_77: -11.031817880557137 + sys_corr_78: 5.778218520855803 + sys_corr_79: 11.500944650951526 + sys_corr_80: 5.813481758740409 + sys_corr_81: 0.26259117138877053 + sys_corr_82: 0.7449538010587755 + sys_corr_83: 3.3513244815576 + sys_corr_84: 0.07980181005904737 + sys_corr_85: 5.726623249271009 + sys_corr_86: -8.218214887168315 + sys_corr_87: 2.658400605126629 + sys_corr_88: -5.015427362468403 + sys_corr_89: 0.41659631154034493 + sys_corr_90: -5.202513123319112 + sys_corr_91: -1.3571026197468774 + sys_corr_92: 5.627257856910796 + sys_corr_93: -0.3600540033857546 + sys_corr_94: -1.4166713809000895 + sys_corr_95: 1.0374167599637567 + sys_corr_96: -0.021755826344365778 + sys_corr_97: 0.536749934893007 + sys_corr_98: 0.5630810217150771 + sys_corr_99: -0.34284018916982584 + sys_corr_100: 0.6459869587044118 + sys_corr_101: 0.17127396460462324 + sys_corr_102: 1.1223974293480563 + sys_corr_103: 0.14388945447157797 + sys_corr_104: -0.5137616748847997 + sys_corr_105: 0.4133493580852121 + sys_corr_106: 0.5842161052292801 + sys_corr_107: 0.8493807106876805 + sys_corr_108: -0.1777390146186216 + sys_corr_109: -0.10014780831997935 + sys_corr_110: 0.03202561144228524 + sys_corr_111: -0.3226420508701094 + sys_corr_112: -0.09560862145577011 + sys_corr_113: -0.005165477309419779 + sys_corr_114: -0.001423114405945156 + sys_corr_115: -0.13624868917320765 + sys_corr_116: 0.019075377271815 + sys_corr_117: 0.016372377381687883 + sys_corr_118: -0.01496641717078549 + sys_corr_119: 0.002411869221464241 + sys_corr_120: -0.0004248586760937865 + sys_corr_121: 0.010704530062088245 + sys_corr_122: 0.027843328714923052 + sys_corr_123: 0.019626959765992328 + sys_corr_124: 0.02003687961291682 + sys_corr_125: -0.009972794610187817 + sys_corr_126: 0.0070344894413504125 + sys_corr_127: -0.1850754907381825 + sys_corr_128: 0.04854633482592882 + sys_corr_129: 0.07497324121414008 + sys_corr_130: -0.011324797191465065 + sys_corr_131: -0.0018264139594503794 + sys_corr_132: -0.004821687584683132 stat: 0.0 luminosity: 566.7237620000001 -- sys_corr_1: 250.91711023905646 - sys_corr_2: 60.03301933447141 - sys_corr_3: -30.206350254954707 - sys_corr_4: -126.06243931011765 - sys_corr_5: -38.90353077662781 - sys_corr_6: -102.74186672729364 - sys_corr_7: 162.7325733238163 - sys_corr_8: 127.05183494495296 - sys_corr_9: 135.36987892399682 - sys_corr_10: 24.103924950005094 - sys_corr_11: 179.09320276855664 - sys_corr_12: 208.64658728493845 - sys_corr_13: 152.22938278384407 - sys_corr_14: -46.03361437603905 - sys_corr_15: -44.30029785867197 - sys_corr_16: 27.377348649619332 - sys_corr_17: 11.71163035627414 - sys_corr_18: 37.92522521876343 - sys_corr_19: -7.253228841485533 - sys_corr_20: -18.75663962893869 - sys_corr_21: -17.10236955718037 - sys_corr_22: -4.751850123593427 - sys_corr_23: 18.584316497767134 +- sys_corr_1: 250.91711023905634 + sys_corr_2: 60.03301933447158 + sys_corr_3: -30.206350254954536 + sys_corr_4: -126.06243931011754 + sys_corr_5: -38.903530776627655 + sys_corr_6: -102.7418667272941 + sys_corr_7: 162.73257332381638 + sys_corr_8: 127.05183494495888 + sys_corr_9: 135.36987892399878 + sys_corr_10: 24.10392494999166 + sys_corr_11: 179.09320276857835 + sys_corr_12: 208.64658728493148 + sys_corr_13: -152.22938278384058 + sys_corr_14: 46.03361437603816 + sys_corr_15: 44.300297858672295 + sys_corr_16: -27.377348649618604 + sys_corr_17: 11.711630356273776 + sys_corr_18: -37.925225218763416 + sys_corr_19: -7.2532288414858925 + sys_corr_20: -18.756639628937904 + sys_corr_21: -17.102369557180232 + sys_corr_22: -4.751850123593239 + sys_corr_23: 18.584316497767325 sys_corr_24: 167.8130942863394 - sys_corr_25: 89.1589166435368 - sys_corr_26: 173.47263792460197 - sys_corr_27: -19.523110445596018 - sys_corr_28: -14.011631429670135 - sys_corr_29: -44.97694449000906 - sys_corr_30: -30.810417881199 - sys_corr_31: 94.71797942838988 - sys_corr_32: 13.678691573659831 - sys_corr_33: 14.268420065922731 - sys_corr_34: 6.257346785483796 - sys_corr_35: 1.0288499438830911 - sys_corr_36: -22.84338476869707 - sys_corr_37: -30.720912892156207 - sys_corr_38: 23.254847275165726 - sys_corr_39: 31.828358219591 - sys_corr_40: 118.42029841422062 - sys_corr_41: 109.85909410454599 - sys_corr_42: 194.13600541545426 - sys_corr_43: 133.50057123559702 - sys_corr_44: -46.66317250573253 - sys_corr_45: 4.468904916092916 - sys_corr_46: -0.9496585788852229 - sys_corr_47: -41.234519929230295 - sys_corr_48: -84.7697055924872 - sys_corr_49: -71.78273530172147 - sys_corr_50: 35.502085237431615 - sys_corr_51: -19.615015538533118 - sys_corr_52: -25.630778800090148 - sys_corr_53: 22.115452528618313 - sys_corr_54: 4.916991996750957 - sys_corr_55: -16.155976467319437 - sys_corr_56: 14.808146482785304 - sys_corr_57: 27.643807988151305 - sys_corr_58: 10.184943685601906 - sys_corr_59: -13.621997449981087 - sys_corr_60: -9.210205296775378 - sys_corr_61: -9.16639820237429 - sys_corr_62: 13.749881542044815 - sys_corr_63: -31.64096351037112 - sys_corr_64: -9.088272946455104 - sys_corr_65: 3.1842260674613394 - sys_corr_66: 4.574922776522333 - sys_corr_67: 17.155468944159892 - sys_corr_68: -2.934757002157797 - sys_corr_69: -4.273197166843612 - sys_corr_70: -1.3144409070327072 - sys_corr_71: 1.1627573781798057 - sys_corr_72: 3.0533878113951323 - sys_corr_73: -3.365635850522527 - sys_corr_74: 7.283163263473509 - sys_corr_75: 11.675519915127284 - sys_corr_76: -3.1557656817048674 - sys_corr_77: 8.713093464043293 - sys_corr_78: -2.2671570922071425 - sys_corr_79: 5.072666301806191 - sys_corr_80: -2.919863598600364 - sys_corr_81: -8.29945808616458 - sys_corr_82: 1.7290367527431811 - sys_corr_83: 7.76559144256967 - sys_corr_84: 4.110737140167504 - sys_corr_85: 1.220774439315779 - sys_corr_86: -4.74355633170376 - sys_corr_87: -5.196312026817915 - sys_corr_88: 6.771282714040301 - sys_corr_89: -3.4740108374547436 - sys_corr_90: -0.15524318601094564 - sys_corr_91: -1.6838979074341969 - sys_corr_92: -1.448869184115987 - sys_corr_93: -0.22995070781137392 - sys_corr_94: -0.8306305870860051 - sys_corr_95: -0.33135304599311577 - sys_corr_96: -0.027308278503075347 - sys_corr_97: -0.4763346334282604 - sys_corr_98: 0.32187401024025175 - sys_corr_99: 0.3701672554740254 - sys_corr_100: 0.253254632359312 - sys_corr_101: -0.4246499099309601 - sys_corr_102: 1.1094053521804597 - sys_corr_103: -3.7435904543236127 - sys_corr_104: -0.7490515296671435 - sys_corr_105: -1.5625684072499368 - sys_corr_106: -0.31498806512570704 - sys_corr_107: 0.036752634575463565 - sys_corr_108: 0.048261483635659186 - sys_corr_109: -0.05020981867044723 - sys_corr_110: -0.14001937726236083 - sys_corr_111: -0.04828330694584197 - sys_corr_112: -0.018306555370477734 - sys_corr_113: -0.05617759734426599 - sys_corr_114: -0.0007642245964563721 - sys_corr_115: -0.033319663293680316 - sys_corr_116: -0.058581841993034664 - sys_corr_117: -0.05594422346179255 - sys_corr_118: -0.006141811015822224 - sys_corr_119: -0.0003720319314563278 - sys_corr_120: 0.03320363121415838 - sys_corr_121: -0.004097007941730476 - sys_corr_122: -0.008196092599305692 - sys_corr_123: -0.025036322268966234 - sys_corr_124: 0.06478587200684315 - sys_corr_125: 0.02789028715842904 - sys_corr_126: 0.003371162323888243 - sys_corr_127: 0.10358600611232548 - sys_corr_128: -0.11186042315120191 - sys_corr_129: -0.02582697143293401 - sys_corr_130: -0.003853748171043891 - sys_corr_131: -0.024716887293516336 - sys_corr_132: 0.01147673116154886 + sys_corr_25: 89.15891664353771 + sys_corr_26: 173.47263792459935 + sys_corr_27: -19.523110445600317 + sys_corr_28: -14.011631429668949 + sys_corr_29: -44.976944490009174 + sys_corr_30: -30.810417881198795 + sys_corr_31: 94.71797942838944 + sys_corr_32: -13.678691573667896 + sys_corr_33: -14.268420065929183 + sys_corr_34: 6.257346785476818 + sys_corr_35: 1.0288499438874201 + sys_corr_36: -22.843384768698794 + sys_corr_37: 30.72091289215054 + sys_corr_38: -23.254847275171002 + sys_corr_39: -31.82835821957776 + sys_corr_40: -118.42029841421741 + sys_corr_41: 109.8590941045401 + sys_corr_42: -194.1360054154475 + sys_corr_43: 133.50057123549095 + sys_corr_44: -46.663172505749955 + sys_corr_45: -4.468904916093571 + sys_corr_46: 0.9496585788809829 + sys_corr_47: 41.234519929216795 + sys_corr_48: 84.76970559248207 + sys_corr_49: 71.78273530173063 + sys_corr_50: 35.50208523742127 + sys_corr_51: -19.615015538523572 + sys_corr_52: -25.630778800094937 + sys_corr_53: -22.11545252860665 + sys_corr_54: -4.916991996762727 + sys_corr_55: 16.155976467322116 + sys_corr_56: -14.808146482784911 + sys_corr_57: 27.643807988160937 + sys_corr_58: -10.184943685611689 + sys_corr_59: -13.621997449978602 + sys_corr_60: 9.210205296768974 + sys_corr_61: 9.166398202372596 + sys_corr_62: -13.749881542047394 + sys_corr_63: -31.6409635103708 + sys_corr_64: -9.08827294645788 + sys_corr_65: 3.1842260674508536 + sys_corr_66: -4.574922776517 + sys_corr_67: 17.155468944165722 + sys_corr_68: 2.934757002151482 + sys_corr_69: -4.27319716684302 + sys_corr_70: 1.314440907034336 + sys_corr_71: 1.162757378179913 + sys_corr_72: -3.053387811396422 + sys_corr_73: 3.3656358505264796 + sys_corr_74: 7.283163263468906 + sys_corr_75: 11.675519915127474 + sys_corr_76: -3.15576568169759 + sys_corr_77: -8.713093464040828 + sys_corr_78: 2.9198635986009975 + sys_corr_79: -2.2671570922078037 + sys_corr_80: 5.072666301805864 + sys_corr_81: 8.299458086163868 + sys_corr_82: -1.7290367527430723 + sys_corr_83: 7.765591442571015 + sys_corr_84: -4.110737140169442 + sys_corr_85: 1.2207744393140736 + sys_corr_86: 4.7435563317121785 + sys_corr_87: 5.1963120268175365 + sys_corr_88: 6.771282714034963 + sys_corr_89: -0.15524318601092196 + sys_corr_90: -3.474010837454781 + sys_corr_91: -1.6838979074343752 + sys_corr_92: 1.4488691841158192 + sys_corr_93: -0.2299507078112578 + sys_corr_94: -0.8306305870855972 + sys_corr_95: -0.33135304599358656 + sys_corr_96: 0.027308278503028395 + sys_corr_97: -0.47633463342806953 + sys_corr_98: -0.32187401024016465 + sys_corr_99: 0.37016725547402324 + sys_corr_100: -0.42464990993063584 + sys_corr_101: -1.1094053521790812 + sys_corr_102: -3.7435904543227556 + sys_corr_103: 0.7490515296674454 + sys_corr_104: 1.5625684072514678 + sys_corr_105: -0.2532546323591119 + sys_corr_106: -0.31498806512544836 + sys_corr_107: 0.0482614836357211 + sys_corr_108: -0.050209818670440644 + sys_corr_109: 0.14001937726234584 + sys_corr_110: -0.036752634575584246 + sys_corr_111: 0.04828330694582468 + sys_corr_112: -0.018306555370486616 + sys_corr_113: 0.056177597344269165 + sys_corr_114: -0.0007642245964550756 + sys_corr_115: -0.03331966329366985 + sys_corr_116: 0.0585818419930145 + sys_corr_117: 0.05594422346179652 + sys_corr_118: 0.006141811015820923 + sys_corr_119: 0.00037203193145519503 + sys_corr_120: -0.03320363121415385 + sys_corr_121: 0.004097007941730695 + sys_corr_122: -0.02503632226896083 + sys_corr_123: -0.00819609259930347 + sys_corr_124: 0.06478587200684137 + sys_corr_125: 0.027890287158428964 + sys_corr_126: -0.003371162323888349 + sys_corr_127: 0.10358600611242276 + sys_corr_128: -0.1118604231512017 + sys_corr_129: -0.02582697143294757 + sys_corr_130: -0.0038537481710442705 + sys_corr_131: 0.02471688729351356 + sys_corr_132: 0.011476731161551682 stat: 0.0 luminosity: 530.0436460000001 -- sys_corr_1: 233.7217181636562 - sys_corr_2: 50.78339512652908 - sys_corr_3: -31.154688657829574 - sys_corr_4: -157.6803603405416 - sys_corr_5: -59.6704122735094 - sys_corr_6: -50.72466621718337 - sys_corr_7: 142.33607914397066 - sys_corr_8: 130.61219765291722 - sys_corr_9: 146.62060879277306 - sys_corr_10: 38.79430662900565 - sys_corr_11: 155.3305842057276 - sys_corr_12: 200.52737041918874 - sys_corr_13: 143.67509449646448 - sys_corr_14: -39.40693575894858 - sys_corr_15: -38.72820139015319 - sys_corr_16: 24.568316210183223 - sys_corr_17: 23.10281840945186 - sys_corr_18: 25.643781530808134 - sys_corr_19: -5.834616361501864 - sys_corr_20: -28.312985168813192 - sys_corr_21: -31.479971133698765 - sys_corr_22: -25.217559779725025 - sys_corr_23: 13.696934279896151 - sys_corr_24: 194.91670038315215 - sys_corr_25: 82.93048270264738 - sys_corr_26: 168.79155112466648 - sys_corr_27: -14.887302565581239 - sys_corr_28: 4.957374650024715 - sys_corr_29: -57.99884314404068 - sys_corr_30: -23.942168789498847 - sys_corr_31: 40.26837812160123 - sys_corr_32: 30.172204529837753 - sys_corr_33: 3.708629776170001 - sys_corr_34: 5.444814974557613 - sys_corr_35: -31.76454645091822 - sys_corr_36: -32.14145220841802 - sys_corr_37: -71.85228727622646 - sys_corr_38: -75.91688736123326 - sys_corr_39: 1.6736446339547157 - sys_corr_40: -129.5863671654129 - sys_corr_41: -110.58903236402483 - sys_corr_42: -17.456019548614893 - sys_corr_43: -68.37663664835267 - sys_corr_44: -59.17710359736881 - sys_corr_45: -44.91023101238258 - sys_corr_46: 117.41943781612453 - sys_corr_47: -165.80717405620842 - sys_corr_48: -53.093194720146606 - sys_corr_49: -5.95476558148665 - sys_corr_50: -36.43952749124727 - sys_corr_51: 33.27550981076648 - sys_corr_52: 8.364799858868269 - sys_corr_53: 17.04710606939594 - sys_corr_54: 11.592938466660957 - sys_corr_55: -62.204476761433455 - sys_corr_56: -39.14320035560523 - sys_corr_57: 16.628333397319057 - sys_corr_58: -10.038219253543279 - sys_corr_59: 26.66369804542628 - sys_corr_60: 5.28429605961609 - sys_corr_61: 13.79192398450713 - sys_corr_62: -4.676381657058141 - sys_corr_63: 15.421749488931617 - sys_corr_64: 8.498333545772354 - sys_corr_65: -11.964346205752753 - sys_corr_66: 5.744606431895337 - sys_corr_67: 8.375819311421305 - sys_corr_68: 12.999004827966301 - sys_corr_69: 0.5187530123661324 - sys_corr_70: -2.187877732375048 - sys_corr_71: -12.877669403290275 - sys_corr_72: -0.19190290600327584 - sys_corr_73: -20.755920215188997 - sys_corr_74: -4.346016590023773 - sys_corr_75: 8.452100394801121 - sys_corr_76: -0.8092182836572183 - sys_corr_77: 2.6140914829963537 - sys_corr_78: -5.2046646930947595 - sys_corr_79: -0.8138341971670497 - sys_corr_80: -2.201063642238665 - sys_corr_81: 1.7806143140947397 - sys_corr_82: 2.458515663232809 - sys_corr_83: 3.845440074052919 - sys_corr_84: 0.8240648936544783 - sys_corr_85: 2.9253394864982143 - sys_corr_86: -6.117280421456962 - sys_corr_87: -6.189447476962324 - sys_corr_88: 6.1851764896516155 - sys_corr_89: -2.9471367109282385 - sys_corr_90: -0.2964326695040752 - sys_corr_91: 0.4547538318007243 - sys_corr_92: 1.4176029775792922 - sys_corr_93: -0.09649561904449742 - sys_corr_94: -0.30963040207103554 - sys_corr_95: -0.9495186307943867 - sys_corr_96: 0.17876107603509003 - sys_corr_97: 0.2635851218665902 - sys_corr_98: 0.03862608535148459 - sys_corr_99: 0.6329316227210408 - sys_corr_100: 0.5287375801503705 - sys_corr_101: -0.3287388889222622 - sys_corr_102: 0.7063254531524266 - sys_corr_103: -1.569016587301586 - sys_corr_104: 0.18779682763055372 - sys_corr_105: -0.6720144458154872 - sys_corr_106: -0.39543267856909725 - sys_corr_107: 0.274562750294628 - sys_corr_108: -0.5153980450727441 - sys_corr_109: 0.0018006115365563878 - sys_corr_110: -0.17476583997295678 - sys_corr_111: -0.1859206863907464 - sys_corr_112: 0.07106667362873428 - sys_corr_113: 0.014380127318253659 - sys_corr_114: 0.0009010833837568427 - sys_corr_115: 0.14117123121057498 - sys_corr_116: -0.05690469802193155 - sys_corr_117: -0.049190425363458995 - sys_corr_118: -0.04744490613207986 - sys_corr_119: -0.002153022987196678 - sys_corr_120: 0.034539604035216415 - sys_corr_121: -0.0005490319057335591 - sys_corr_122: -0.011799081438257213 - sys_corr_123: -0.031099600100368937 - sys_corr_124: 0.08920522307081806 - sys_corr_125: 0.0302869814257727 - sys_corr_126: 0.007560201484755399 - sys_corr_127: -0.27102692711408743 - sys_corr_128: -0.14019056094015267 - sys_corr_129: -0.07630610644011335 - sys_corr_130: -0.004735743754301017 - sys_corr_131: -0.026261294225628548 - sys_corr_132: 0.032574177729776055 +- sys_corr_1: 233.72171816365628 + sys_corr_2: 50.78339512652912 + sys_corr_3: -31.154688657829375 + sys_corr_4: -157.68036034054236 + sys_corr_5: -59.6704122735087 + sys_corr_6: -50.72466621718343 + sys_corr_7: 142.33607914397092 + sys_corr_8: 130.61219765292375 + sys_corr_9: 146.620608792775 + sys_corr_10: 38.794306628992516 + sys_corr_11: 155.33058420574847 + sys_corr_12: 200.52737041918348 + sys_corr_13: -143.67509449646178 + sys_corr_14: 39.40693575894756 + sys_corr_15: 38.72820139015386 + sys_corr_16: -24.568316210182658 + sys_corr_17: 23.102818409451636 + sys_corr_18: -25.643781530808283 + sys_corr_19: -5.834616361501716 + sys_corr_20: -28.312985168813 + sys_corr_21: -31.47997113369813 + sys_corr_22: -25.21755977972477 + sys_corr_23: 13.696934279896054 + sys_corr_24: 194.91670038315226 + sys_corr_25: 82.9304827026474 + sys_corr_26: 168.79155112466435 + sys_corr_27: -14.88730256558526 + sys_corr_28: 4.9573746500258995 + sys_corr_29: -57.998843144040165 + sys_corr_30: -23.942168789498194 + sys_corr_31: 40.2683781216013 + sys_corr_32: -30.172204529833905 + sys_corr_33: -3.7086297761707843 + sys_corr_34: 5.444814974555936 + sys_corr_35: -31.76454645091487 + sys_corr_36: -32.14145220843146 + sys_corr_37: 71.85228727623713 + sys_corr_38: 75.91688736122894 + sys_corr_39: -1.673644633944521 + sys_corr_40: 129.58636716541972 + sys_corr_41: -110.5890323640196 + sys_corr_42: 17.45601954859846 + sys_corr_43: -68.37663664834089 + sys_corr_44: -59.17710359738278 + sys_corr_45: 44.91023101232835 + sys_corr_46: -117.41943781614779 + sys_corr_47: 165.80717405619788 + sys_corr_48: 53.093194720151146 + sys_corr_49: 5.954765581496744 + sys_corr_50: -36.4395274912432 + sys_corr_51: 33.27550981076699 + sys_corr_52: 8.364799858877406 + sys_corr_53: -17.04710606939791 + sys_corr_54: -11.592938466683343 + sys_corr_55: 62.20447676143836 + sys_corr_56: 39.14320035561263 + sys_corr_57: 16.62833339729751 + sys_corr_58: 10.03821925355783 + sys_corr_59: 26.663698045417608 + sys_corr_60: -5.28429605960734 + sys_corr_61: -13.79192398450473 + sys_corr_62: 4.676381657059348 + sys_corr_63: 15.421749488929134 + sys_corr_64: 8.498333545769608 + sys_corr_65: -11.96434620574222 + sys_corr_66: -5.744606431899014 + sys_corr_67: 8.375819311423205 + sys_corr_68: -12.999004827963814 + sys_corr_69: 0.5187530123643453 + sys_corr_70: 2.1878777323743677 + sys_corr_71: -12.877669403285326 + sys_corr_72: 0.19190290600381335 + sys_corr_73: 20.755920215189978 + sys_corr_74: -4.3460165900245995 + sys_corr_75: 8.452100394799784 + sys_corr_76: -0.8092182836527381 + sys_corr_77: -2.6140914829967463 + sys_corr_78: 2.2010636422391485 + sys_corr_79: -5.20466469309493 + sys_corr_80: -0.8138341971669791 + sys_corr_81: -1.7806143140957718 + sys_corr_82: -2.4585156632327716 + sys_corr_83: 3.845440074052265 + sys_corr_84: -0.824064893655219 + sys_corr_85: 2.925339486497939 + sys_corr_86: 6.1172804214671554 + sys_corr_87: 6.189447476961776 + sys_corr_88: 6.185176489644816 + sys_corr_89: -0.296432669504135 + sys_corr_90: -2.947136710928228 + sys_corr_91: 0.45475383180067785 + sys_corr_92: -1.4176029775805958 + sys_corr_93: -0.09649561904441907 + sys_corr_94: -0.30963040207058334 + sys_corr_95: -0.9495186307946585 + sys_corr_96: -0.1787610760351015 + sys_corr_97: 0.26358512186652777 + sys_corr_98: -0.03862608535151278 + sys_corr_99: 0.6329316227209548 + sys_corr_100: -0.3287388889222276 + sys_corr_101: -0.7063254531521116 + sys_corr_102: -1.5690165873022135 + sys_corr_103: -0.18779682763018782 + sys_corr_104: 0.6720144458165836 + sys_corr_105: -0.5287375801504185 + sys_corr_106: -0.39543267856905384 + sys_corr_107: -0.5153980450727239 + sys_corr_108: 0.0018006115365803365 + sys_corr_109: 0.17476583997292472 + sys_corr_110: -0.2745627502947355 + sys_corr_111: 0.18592068639074666 + sys_corr_112: 0.07106667362872217 + sys_corr_113: -0.014380127318266324 + sys_corr_114: 0.0009010833837555526 + sys_corr_115: 0.14117123121057473 + sys_corr_116: 0.05690469802193526 + sys_corr_117: 0.04919042536345248 + sys_corr_118: 0.04744490613209111 + sys_corr_119: 0.002153022987196102 + sys_corr_120: -0.03453960403520504 + sys_corr_121: 0.0005490319057320655 + sys_corr_122: -0.03109960010035644 + sys_corr_123: -0.011799081438244829 + sys_corr_124: 0.08920522307082043 + sys_corr_125: 0.030286981425760175 + sys_corr_126: -0.007560201484747448 + sys_corr_127: -0.2710269271140328 + sys_corr_128: -0.14019056094018575 + sys_corr_129: -0.0763061064401219 + sys_corr_130: -0.004735743754293877 + sys_corr_131: 0.02626129422562674 + sys_corr_132: 0.03257417772977654 stat: 0.0 luminosity: 513.6688700000001 -- sys_corr_1: 205.14432021406793 - sys_corr_2: 57.9759342796937 - sys_corr_3: -42.59457734233418 - sys_corr_4: -180.66311349588898 - sys_corr_5: -50.54795624786124 - sys_corr_6: -17.15368702065537 - sys_corr_7: 111.42634218995869 - sys_corr_8: 105.44996514220846 - sys_corr_9: 128.7950994726098 - sys_corr_10: 29.63368072972705 - sys_corr_11: 143.3857562631146 - sys_corr_12: 170.48060456374657 - sys_corr_13: 128.28110734538754 - sys_corr_14: -27.062040638528938 - sys_corr_15: -36.378969069428216 - sys_corr_16: 20.514324947877725 - sys_corr_17: 18.54068194951886 - sys_corr_18: 22.062347129967705 - sys_corr_19: -17.752780322148634 - sys_corr_20: -40.567059593005816 - sys_corr_21: -24.889168053881285 - sys_corr_22: -56.45921989184244 - sys_corr_23: 9.92433829748525 - sys_corr_24: 212.58254424737012 - sys_corr_25: 67.80944925152404 - sys_corr_26: 144.41809934092066 - sys_corr_27: 9.64807200926099 - sys_corr_28: 20.803763876598843 - sys_corr_29: -52.30586708304062 - sys_corr_30: 20.176582696148014 - sys_corr_31: -80.4525266649207 - sys_corr_32: -7.411533202423 - sys_corr_33: 10.6555132913398 - sys_corr_34: -4.085819535993909 - sys_corr_35: 5.62250973355807 - sys_corr_36: -6.800094151080141 - sys_corr_37: -15.913268070679367 - sys_corr_38: -19.306458737825007 - sys_corr_39: 3.7432495151546945 - sys_corr_40: -40.077161292995214 - sys_corr_41: 8.734797550623757 - sys_corr_42: -12.095520022676059 - sys_corr_43: 169.5725482505227 - sys_corr_44: 79.13190768417772 - sys_corr_45: 77.59031315858614 - sys_corr_46: 58.2456304900064 - sys_corr_47: 58.21294474867406 - sys_corr_48: 129.53132904427216 - sys_corr_49: 143.90022297778262 - sys_corr_50: -16.490812803893977 - sys_corr_51: -8.495875013492059 - sys_corr_52: -17.62494078371774 - sys_corr_53: 10.148024053225296 - sys_corr_54: -39.11072201940573 - sys_corr_55: -69.98446368778397 - sys_corr_56: 13.32734361317765 - sys_corr_57: 10.532998454637754 - sys_corr_58: -16.648657152394485 - sys_corr_59: 36.1592432792125 - sys_corr_60: 9.55582047383475 - sys_corr_61: 16.330379745900917 - sys_corr_62: -10.833487399232355 - sys_corr_63: 29.81518381396236 - sys_corr_64: -18.833290519956204 - sys_corr_65: -1.8653318510876582 - sys_corr_66: 17.066282842846768 - sys_corr_67: 13.604892659202227 - sys_corr_68: 9.291123731082175 - sys_corr_69: 1.202390298291417 - sys_corr_70: 3.3735118361313092 - sys_corr_71: 13.853442795246032 - sys_corr_72: 1.7386956236244584 - sys_corr_73: -5.559503395293847 - sys_corr_74: 17.24159549565901 - sys_corr_75: -0.9831281382294231 - sys_corr_76: -7.5855813785730275 - sys_corr_77: -0.3197601263636835 - sys_corr_78: -1.4148450587967563 - sys_corr_79: -3.938057219979072 - sys_corr_80: -0.20681807857211973 - sys_corr_81: 0.11986049997742754 - sys_corr_82: -2.7408275180393944 - sys_corr_83: 4.378275984154394 - sys_corr_84: -3.740574882017299 - sys_corr_85: -0.6456541620745336 - sys_corr_86: -2.103292072019897 - sys_corr_87: -4.228532994385383 - sys_corr_88: 10.60390868661507 - sys_corr_89: -3.8437376653588657 - sys_corr_90: -0.18001392512958228 - sys_corr_91: 4.890364249310983 - sys_corr_92: 0.49415278689785674 - sys_corr_93: 0.14266373986073735 - sys_corr_94: 0.6811103257582356 - sys_corr_95: -0.3965233659809194 - sys_corr_96: 0.12254243228481608 - sys_corr_97: -0.6241935329631205 - sys_corr_98: 0.15203762939733526 - sys_corr_99: -0.18717612584072277 - sys_corr_100: 0.1578147989772034 - sys_corr_101: -0.13327473944219195 - sys_corr_102: 0.08216556128841235 - sys_corr_103: -0.982694330952865 - sys_corr_104: 0.5963677207058238 - sys_corr_105: -0.814212035261056 - sys_corr_106: -0.2496522998121683 - sys_corr_107: 0.29760575511788784 - sys_corr_108: -0.23422738109049882 - sys_corr_109: 0.02742228562341029 - sys_corr_110: -0.03520341717469188 - sys_corr_111: -0.0265981880448346 - sys_corr_112: 0.11578371893696154 - sys_corr_113: -0.03449702132866605 - sys_corr_114: 0.001139074775617765 - sys_corr_115: 0.165200148360555 - sys_corr_116: -0.0746492021641588 - sys_corr_117: -0.06473474065929152 - sys_corr_118: 0.061761863002091584 - sys_corr_119: 0.0005488114188866193 - sys_corr_120: 0.04043145458793114 - sys_corr_121: -0.004002923854615145 - sys_corr_122: -0.011824317338942755 - sys_corr_123: -0.03380135224207156 - sys_corr_124: 0.1348987756925253 - sys_corr_125: 0.037634558156876295 - sys_corr_126: 0.009138050520813198 - sys_corr_127: 0.022908873593882977 - sys_corr_128: -0.15625211290512536 - sys_corr_129: 0.01086570273740615 - sys_corr_130: -0.00192139346856243 - sys_corr_131: -0.031120758527501367 - sys_corr_132: 0.006851476993129523 +- sys_corr_1: 205.14432021406802 + sys_corr_2: 57.97593427969365 + sys_corr_3: -42.59457734233395 + sys_corr_4: -180.6631134958895 + sys_corr_5: -50.54795624786071 + sys_corr_6: -17.153687020655752 + sys_corr_7: 111.42634218995877 + sys_corr_8: 105.44996514221363 + sys_corr_9: 128.7950994726116 + sys_corr_10: 29.633680729715284 + sys_corr_11: 143.38575626313258 + sys_corr_12: 170.4806045637416 + sys_corr_13: -128.2811073453845 + sys_corr_14: 27.06204063852804 + sys_corr_15: 36.37896906942892 + sys_corr_16: -20.51432494787706 + sys_corr_17: 18.540681949518753 + sys_corr_18: -22.062347129968003 + sys_corr_19: -17.752780322148354 + sys_corr_20: -40.56705959300537 + sys_corr_21: -24.889168053880297 + sys_corr_22: -56.45921989184215 + sys_corr_23: 9.924338297485473 + sys_corr_24: 212.58254424737066 + sys_corr_25: 67.80944925152458 + sys_corr_26: 144.41809934091805 + sys_corr_27: 9.648072009257428 + sys_corr_28: 20.80376387660106 + sys_corr_29: -52.30586708304206 + sys_corr_30: 20.176582696148763 + sys_corr_31: -80.45252666492064 + sys_corr_32: 7.4115332024245975 + sys_corr_33: -10.655513291339316 + sys_corr_34: -4.085819535990014 + sys_corr_35: 5.622509733558459 + sys_corr_36: -6.8000941510824635 + sys_corr_37: 15.913268070686636 + sys_corr_38: 19.306458737824865 + sys_corr_39: -3.7432495151556897 + sys_corr_40: 40.077161292996024 + sys_corr_41: 8.73479755064029 + sys_corr_42: 12.09552002266379 + sys_corr_43: 169.57254825053516 + sys_corr_44: 79.13190768418741 + sys_corr_45: -77.59031315862087 + sys_corr_46: -58.24563048996642 + sys_corr_47: -58.21294474864921 + sys_corr_48: -129.531329044263 + sys_corr_49: -143.90022297779953 + sys_corr_50: -16.490812803887145 + sys_corr_51: -8.495875013498454 + sys_corr_52: -17.624940783711132 + sys_corr_53: -10.148024053215275 + sys_corr_54: 39.11072201939227 + sys_corr_55: 69.98446368777094 + sys_corr_56: -13.327343613177808 + sys_corr_57: 10.532998454642899 + sys_corr_58: 16.64865715241785 + sys_corr_59: 36.15924327919674 + sys_corr_60: -9.55582047382269 + sys_corr_61: -16.330379745900427 + sys_corr_62: 10.833487399240097 + sys_corr_63: 29.815183813975576 + sys_corr_64: -18.833290519956567 + sys_corr_65: -1.865331851106681 + sys_corr_66: -17.066282842849276 + sys_corr_67: 13.604892659205206 + sys_corr_68: -9.291123731095103 + sys_corr_69: 1.2023902983008359 + sys_corr_70: -3.3735118361383534 + sys_corr_71: 13.853442795245765 + sys_corr_72: -1.738695623620101 + sys_corr_73: 5.559503395294799 + sys_corr_74: 17.24159549565995 + sys_corr_75: -0.9831281382222198 + sys_corr_76: -7.585581378572979 + sys_corr_77: 0.3197601263627516 + sys_corr_78: 0.20681807857223436 + sys_corr_79: -1.4148450587967956 + sys_corr_80: -3.9380572199790063 + sys_corr_81: -0.1198604999787231 + sys_corr_82: 2.740827518039446 + sys_corr_83: 4.378275984154108 + sys_corr_84: 3.7405748820178575 + sys_corr_85: -0.6456541620736953 + sys_corr_86: 2.103292072033249 + sys_corr_87: 4.228532994384358 + sys_corr_88: 10.603908686612014 + sys_corr_89: -0.18001392512951417 + sys_corr_90: -3.843737665358855 + sys_corr_91: 4.890364249310896 + sys_corr_92: -0.494152786898738 + sys_corr_93: 0.1426637398608055 + sys_corr_94: 0.6811103257587734 + sys_corr_95: -0.39652336598128507 + sys_corr_96: -0.12254243228488396 + sys_corr_97: -0.6241935329630965 + sys_corr_98: -0.15203762939734347 + sys_corr_99: -0.1871761258407416 + sys_corr_100: -0.13327473944210402 + sys_corr_101: -0.08216556128807746 + sys_corr_102: -0.9826943309526148 + sys_corr_103: -0.5963677207056689 + sys_corr_104: 0.8142120352616767 + sys_corr_105: -0.15781479897717962 + sys_corr_106: -0.24965229981210443 + sys_corr_107: -0.2342273810904923 + sys_corr_108: 0.027422285623459327 + sys_corr_109: 0.03520341717467083 + sys_corr_110: -0.2976057551179638 + sys_corr_111: 0.026598188044787054 + sys_corr_112: 0.11578371893695176 + sys_corr_113: 0.03449702132866038 + sys_corr_114: 0.0011390747756165375 + sys_corr_115: 0.1652001483605478 + sys_corr_116: 0.07464920216416385 + sys_corr_117: 0.06473474065928646 + sys_corr_118: -0.06176186300209005 + sys_corr_119: -0.0005488114188861892 + sys_corr_120: -0.040431454587933124 + sys_corr_121: 0.004002923854616278 + sys_corr_122: -0.03380135224205531 + sys_corr_123: -0.011824317338936114 + sys_corr_124: 0.1348987756925221 + sys_corr_125: 0.03763455815686334 + sys_corr_126: -0.009138050520810848 + sys_corr_127: 0.022908873593897292 + sys_corr_128: -0.15625211290513386 + sys_corr_129: 0.010865702737409043 + sys_corr_130: -0.0019213934685630419 + sys_corr_131: 0.03112075852749931 + sys_corr_132: 0.006851476993126133 stat: 0.0 luminosity: 477.209722 -- sys_corr_1: 175.16830985780234 - sys_corr_2: 47.968288184191 - sys_corr_3: -42.37720677112896 - sys_corr_4: -186.8650362313377 - sys_corr_5: -46.14945458352502 - sys_corr_6: -7.188282425338181 - sys_corr_7: 92.30422418956068 - sys_corr_8: 94.51640719937538 - sys_corr_9: 123.8809707609366 - sys_corr_10: 34.82047488755719 - sys_corr_11: 130.36681660475028 - sys_corr_12: 153.57502017309818 - sys_corr_13: 119.10960304011948 - sys_corr_14: -21.65318514724663 - sys_corr_15: -28.97224204323459 - sys_corr_16: 15.384147376232127 - sys_corr_17: 19.561099838598256 - sys_corr_18: 20.860541420135785 - sys_corr_19: -24.766772260304638 - sys_corr_20: -43.625204737016745 - sys_corr_21: -29.892417235248953 - sys_corr_22: -55.92644286033205 - sys_corr_23: 14.89822921083687 - sys_corr_24: 178.40219427143296 - sys_corr_25: 51.568585112083376 - sys_corr_26: 105.58983266051224 - sys_corr_27: 17.474216090690952 - sys_corr_28: 16.90681239118113 - sys_corr_29: -45.856682803685516 - sys_corr_30: 32.860819448689156 - sys_corr_31: -88.19177192976379 - sys_corr_32: -9.559461993193535 - sys_corr_33: 5.315749473614609 - sys_corr_34: 11.55053308441534 - sys_corr_35: 11.712124915649989 - sys_corr_36: 10.004608677734838 - sys_corr_37: 9.803876924028645 - sys_corr_38: 7.2812016559008335 - sys_corr_39: -4.726599156371207 - sys_corr_40: -9.475899765982916 - sys_corr_41: -27.90274704997505 - sys_corr_42: -45.703968696990955 - sys_corr_43: -67.38436882034962 - sys_corr_44: 19.092450781786397 - sys_corr_45: -28.56450038418626 - sys_corr_46: -73.686997592332 - sys_corr_47: 61.26609947800706 - sys_corr_48: 17.99135312860231 - sys_corr_49: -96.62238430953134 - sys_corr_50: 166.6326559991725 - sys_corr_51: 83.85376844221447 - sys_corr_52: -124.71655514949136 - sys_corr_53: 22.401853125539922 - sys_corr_54: -38.387108437495385 - sys_corr_55: -44.32321190224905 - sys_corr_56: -21.835772734434173 - sys_corr_57: -38.14699577367558 - sys_corr_58: -1.0397087811129955 - sys_corr_59: 21.90162634964519 - sys_corr_60: -5.889205702383016 - sys_corr_61: 4.5701587466303275 - sys_corr_62: 2.0904489976975755 - sys_corr_63: -25.48876729814327 - sys_corr_64: -19.600767915645946 - sys_corr_65: -18.25353322978975 - sys_corr_66: -5.979754943698245 - sys_corr_67: -10.403435806485206 - sys_corr_68: 5.687803227992804 - sys_corr_69: 18.989231657602247 - sys_corr_70: 2.026038010084815 - sys_corr_71: 13.990503545985236 - sys_corr_72: -75.47166215248579 - sys_corr_73: 1.5618776773284633 - sys_corr_74: 7.6391755473325285 - sys_corr_75: 2.0713971515823792 - sys_corr_76: -4.250999709846151 - sys_corr_77: 0.1474493864578605 - sys_corr_78: -4.121039482451122 - sys_corr_79: 0.8228118445282346 - sys_corr_80: 0.8182341326981123 - sys_corr_81: -0.3512864442719205 - sys_corr_82: 1.0503945942980164 - sys_corr_83: 6.606379797403759 - sys_corr_84: 1.200860802093816 - sys_corr_85: 2.568709023273196 - sys_corr_86: -7.2252281451453095 - sys_corr_87: -2.0286035832627554 - sys_corr_88: 5.243212016726373 - sys_corr_89: 3.444186955149264 - sys_corr_90: 0.2633580423779942 - sys_corr_91: -2.3799667386943004 - sys_corr_92: 1.2718131652160485 - sys_corr_93: 0.4354072601650478 - sys_corr_94: 2.475607995997367 - sys_corr_95: -2.9790919745846103 - sys_corr_96: 0.16034064636012993 - sys_corr_97: -1.4165308044517695 - sys_corr_98: 0.6704785367800113 - sys_corr_99: -0.4273855412788885 - sys_corr_100: 0.2616227012702908 - sys_corr_101: -0.23137784211376963 - sys_corr_102: -0.09874226130106589 - sys_corr_103: -1.4651704469419766 - sys_corr_104: 0.6472007159253418 - sys_corr_105: -1.366122101338658 - sys_corr_106: -0.39583271858379904 - sys_corr_107: 0.3101784734336496 - sys_corr_108: -0.8054379392098855 - sys_corr_109: 0.3928266491011107 - sys_corr_110: -0.3032382388293122 - sys_corr_111: -0.221494154830687 - sys_corr_112: 0.30618723872492265 - sys_corr_113: -0.11074287613870916 - sys_corr_114: 0.0032514479196861326 - sys_corr_115: 0.2579790309818728 - sys_corr_116: -0.06998109055459838 - sys_corr_117: -0.06363979122353498 - sys_corr_118: -0.06210330432045012 - sys_corr_119: 0.008675098205420144 - sys_corr_120: 0.04267201070444893 - sys_corr_121: 0.0011816635542668242 - sys_corr_122: -0.017174797268244748 - sys_corr_123: -0.04118818711530285 - sys_corr_124: 0.14228751748260085 - sys_corr_125: 0.03907981154679365 - sys_corr_126: 0.012154274521348705 - sys_corr_127: -0.202108723129319 - sys_corr_128: -0.2578497590954028 - sys_corr_129: 0.006322992912903422 - sys_corr_130: -0.002805743038873952 - sys_corr_131: -0.029254194337497378 - sys_corr_132: 0.02715420388937759 +- sys_corr_1: 175.16830985780254 + sys_corr_2: 47.96828818419096 + sys_corr_3: -42.37720677112887 + sys_corr_4: -186.865036231338 + sys_corr_5: -46.14945458352419 + sys_corr_6: -7.188282425338567 + sys_corr_7: 92.30422418956098 + sys_corr_8: 94.51640719938074 + sys_corr_9: 123.88097076093798 + sys_corr_10: 34.8204748875462 + sys_corr_11: 130.36681660476592 + sys_corr_12: 153.57502017309298 + sys_corr_13: -119.10960304011711 + sys_corr_14: 21.65318514724588 + sys_corr_15: 28.972242043235045 + sys_corr_16: -15.38414737623134 + sys_corr_17: 19.561099838598366 + sys_corr_18: -20.86054142013569 + sys_corr_19: -24.766772260303977 + sys_corr_20: -43.62520473701615 + sys_corr_21: -29.89241723524797 + sys_corr_22: -55.92644286033238 + sys_corr_23: 14.89822921083702 + sys_corr_24: 178.40219427143313 + sys_corr_25: 51.56858511208312 + sys_corr_26: 105.58983266050882 + sys_corr_27: 17.474216090688447 + sys_corr_28: 16.906812391183003 + sys_corr_29: -45.856682803687086 + sys_corr_30: 32.86081944868886 + sys_corr_31: -88.19177192976356 + sys_corr_32: 9.55946199319394 + sys_corr_33: -5.315749473612533 + sys_corr_34: 11.550533084414132 + sys_corr_35: 11.712124915651888 + sys_corr_36: 10.004608677735078 + sys_corr_37: -9.80387692403117 + sys_corr_38: -7.281201655899739 + sys_corr_39: 4.726599156369056 + sys_corr_40: 9.475899765982563 + sys_corr_41: -27.90274704997805 + sys_corr_42: 45.703968696991545 + sys_corr_43: -67.3843688203253 + sys_corr_44: 19.092450781790355 + sys_corr_45: 28.564500384226786 + sys_corr_46: 73.6869975923187 + sys_corr_47: -61.266099478011476 + sys_corr_48: -17.991353128606146 + sys_corr_49: 96.62238430952851 + sys_corr_50: 166.6326559991657 + sys_corr_51: 83.85376844223032 + sys_corr_52: -124.71655514950173 + sys_corr_53: -22.401853125507184 + sys_corr_54: 38.38710843748847 + sys_corr_55: 44.323211902242676 + sys_corr_56: 21.835772734431288 + sys_corr_57: -38.14699577368121 + sys_corr_58: 1.0397087811358643 + sys_corr_59: 21.90162634964033 + sys_corr_60: 5.889205702380167 + sys_corr_61: -4.570158746630841 + sys_corr_62: -2.090448997691792 + sys_corr_63: -25.48876729813382 + sys_corr_64: -19.600767915662978 + sys_corr_65: -18.253533229810575 + sys_corr_66: 5.979754943691017 + sys_corr_67: -10.403435806482983 + sys_corr_68: -5.687803227980188 + sys_corr_69: 18.989231657600254 + sys_corr_70: -2.026038010096724 + sys_corr_71: 13.990503545986309 + sys_corr_72: 75.47166215248478 + sys_corr_73: -1.5618776773270384 + sys_corr_74: 7.639175547340021 + sys_corr_75: 2.0713971515828886 + sys_corr_76: -4.250999709845047 + sys_corr_77: -0.1474493864565717 + sys_corr_78: -0.8182341326979023 + sys_corr_79: -4.121039482451198 + sys_corr_80: 0.8228118445281881 + sys_corr_81: 0.3512864442706657 + sys_corr_82: -1.0503945942971762 + sys_corr_83: 6.606379797403253 + sys_corr_84: -1.20086080209438 + sys_corr_85: 2.5687090232727154 + sys_corr_86: 7.225228145154779 + sys_corr_87: 2.028603583263653 + sys_corr_88: 5.243212016720235 + sys_corr_89: 0.2633580423779213 + sys_corr_90: 3.4441869551490516 + sys_corr_91: -2.3799667386945775 + sys_corr_92: -1.271813165217675 + sys_corr_93: 0.4354072601650355 + sys_corr_94: 2.4756079959982347 + sys_corr_95: -2.9790919745848035 + sys_corr_96: -0.1603406463603095 + sys_corr_97: -1.4165308044517306 + sys_corr_98: -0.6704785367800188 + sys_corr_99: -0.4273855412788754 + sys_corr_100: -0.23137784211372744 + sys_corr_101: 0.09874226130150308 + sys_corr_102: -1.4651704469415454 + sys_corr_103: -0.647200715925194 + sys_corr_104: 1.3661221013394627 + sys_corr_105: -0.2616227012703169 + sys_corr_106: -0.3958327185837324 + sys_corr_107: -0.8054379392098456 + sys_corr_108: 0.39282664910112725 + sys_corr_109: 0.30323823882934703 + sys_corr_110: -0.3101784734337031 + sys_corr_111: 0.22149415483066384 + sys_corr_112: 0.30618723872491777 + sys_corr_113: 0.11074287613870853 + sys_corr_114: 0.003251447919685757 + sys_corr_115: 0.25797903098187663 + sys_corr_116: 0.06998109055461614 + sys_corr_117: 0.06363979122352462 + sys_corr_118: 0.062103304320470974 + sys_corr_119: -0.00867509820542017 + sys_corr_120: -0.04267201070443964 + sys_corr_121: -0.0011816635542716866 + sys_corr_122: -0.041188187115295746 + sys_corr_123: -0.017174797268234853 + sys_corr_124: 0.1422875174825961 + sys_corr_125: 0.03907981154678511 + sys_corr_126: -0.012154274521345976 + sys_corr_127: -0.20210872312930322 + sys_corr_128: -0.25784975909542995 + sys_corr_129: 0.006322992912900827 + sys_corr_130: -0.00280574303886586 + sys_corr_131: 0.029254194337492913 + sys_corr_132: 0.02715420388937516 stat: 0.0 luminosity: 424.158086 -- sys_corr_1: 146.16300864490353 - sys_corr_2: 45.660213283289025 - sys_corr_3: -38.79945391933628 - sys_corr_4: -215.18471240026014 - sys_corr_5: -25.715422462992027 - sys_corr_6: -11.520619664624741 - sys_corr_7: 70.68982263956507 - sys_corr_8: 89.22923036153372 - sys_corr_9: 136.66863948645423 - sys_corr_10: 35.81428256671025 - sys_corr_11: 118.51400921458132 - sys_corr_12: 137.93616175873743 - sys_corr_13: 111.9986624977103 - sys_corr_14: -23.54944591030035 - sys_corr_15: -28.931825326515355 - sys_corr_16: 13.371509428731951 - sys_corr_17: 22.96284728306602 - sys_corr_18: 16.604413536002344 - sys_corr_19: -30.250455323343342 - sys_corr_20: -42.099885171684825 - sys_corr_21: -30.69713266893134 - sys_corr_22: -94.14100337317392 - sys_corr_23: 2.832570602742391 - sys_corr_24: 147.7701546748254 - sys_corr_25: 33.74375846816822 - sys_corr_26: 56.35010776571793 - sys_corr_27: 0.48714244948282714 - sys_corr_28: 46.03807432823307 - sys_corr_29: -44.59788197381413 - sys_corr_30: -43.871545428243444 - sys_corr_31: -142.7264059181772 - sys_corr_32: -12.5839724731115 - sys_corr_33: 2.275112501266882 - sys_corr_34: 32.42767213692895 - sys_corr_35: 13.487075458492878 - sys_corr_36: 11.40704247077207 - sys_corr_37: -3.9032916497125916 - sys_corr_38: 2.6293701037438613 - sys_corr_39: -5.9356174816237415 - sys_corr_40: 3.480123657549277 - sys_corr_41: 1.0098807403083112 - sys_corr_42: -2.0377248127715464 - sys_corr_43: 32.11995301345259 - sys_corr_44: -51.76166294857058 - sys_corr_45: 20.437462584209833 - sys_corr_46: 30.42548919581088 - sys_corr_47: -41.36288401100071 - sys_corr_48: 65.74410293094606 - sys_corr_49: -52.22403130551431 - sys_corr_50: -12.60632382074468 - sys_corr_51: 67.49297428892474 - sys_corr_52: 40.50965420897928 - sys_corr_53: -78.4503529321074 - sys_corr_54: -25.232107083087108 - sys_corr_55: 207.3862245093393 - sys_corr_56: 31.46001842060752 - sys_corr_57: -18.014272145501273 - sys_corr_58: 38.926858213459916 - sys_corr_59: 15.549373347960026 - sys_corr_60: -16.412451768743583 - sys_corr_61: 16.98160231384815 - sys_corr_62: 37.46320215246407 - sys_corr_63: 19.744982075021866 - sys_corr_64: -0.5347060838016916 - sys_corr_65: -3.3659491469569534 - sys_corr_66: -14.02564706981115 - sys_corr_67: 18.738833958656897 - sys_corr_68: 2.7863976964313304 - sys_corr_69: 0.6434639109971105 - sys_corr_70: 19.74121800027436 - sys_corr_71: 6.140215159492659 - sys_corr_72: 1.5034746541068602 - sys_corr_73: -8.228491296957129 - sys_corr_74: -53.241431973850624 - sys_corr_75: 7.686147364206317 - sys_corr_76: -4.551029251979993 - sys_corr_77: -1.5546782345093135 - sys_corr_78: -4.039933038097882 - sys_corr_79: -14.913907816776938 - sys_corr_80: 7.3530121695379504 - sys_corr_81: 2.9907190681795814 - sys_corr_82: -6.021048517682466 - sys_corr_83: -10.597302958119046 - sys_corr_84: -2.464410621459258 - sys_corr_85: 8.831042176546928 - sys_corr_86: -10.799878258764451 - sys_corr_87: -6.777573593123773 - sys_corr_88: -1.8525501275405292 - sys_corr_89: -4.204896905434405 - sys_corr_90: 2.736256958384479 - sys_corr_91: 0.16224561720493894 - sys_corr_92: 16.264124217591277 - sys_corr_93: 0.1561348548884988 - sys_corr_94: 0.7866461167666121 - sys_corr_95: -2.7424556660627526 - sys_corr_96: 0.07540335262163327 - sys_corr_97: -0.9487304866843103 - sys_corr_98: 0.32812249400495846 - sys_corr_99: 0.0461716046085622 - sys_corr_100: 0.043822019349222835 - sys_corr_101: -0.025599799900169206 - sys_corr_102: -0.22960739978060346 - sys_corr_103: 1.2760669438089771 - sys_corr_104: 2.416633848360527 - sys_corr_105: 0.19841073182208047 - sys_corr_106: 0.02787657521977485 - sys_corr_107: 0.2274818557602352 - sys_corr_108: -0.19972995727736212 - sys_corr_109: 0.4204435378442592 - sys_corr_110: -0.13140010639691269 - sys_corr_111: 0.03286150439375297 - sys_corr_112: 0.1585619313207386 - sys_corr_113: -0.06417361442282243 - sys_corr_114: 0.003202722333781624 - sys_corr_115: 0.2782909430214278 - sys_corr_116: -0.030715827618624403 - sys_corr_117: -0.03664313445170353 - sys_corr_118: -0.27602758178727893 - sys_corr_119: 0.007608883229428593 - sys_corr_120: 0.016294353443652886 - sys_corr_121: -0.005525739184989868 - sys_corr_122: 0.015105039323907835 - sys_corr_123: 0.01849232572446161 - sys_corr_124: 0.09532677088382857 - sys_corr_125: -0.006957334697203255 - sys_corr_126: -0.004617880298996591 - sys_corr_127: -0.458940467615955 - sys_corr_128: -0.3876602373731183 - sys_corr_129: -0.02031277867545152 - sys_corr_130: -0.0027248316948801964 - sys_corr_131: -0.005638785350067331 - sys_corr_132: 0.04310477201522111 +- sys_corr_1: 146.16300864490364 + sys_corr_2: 45.660213283288975 + sys_corr_3: -38.79945391933611 + sys_corr_4: -215.18471240026074 + sys_corr_5: -25.715422462991114 + sys_corr_6: -11.52061966462487 + sys_corr_7: 70.68982263956546 + sys_corr_8: 89.22923036153881 + sys_corr_9: 136.6686394864555 + sys_corr_10: 35.81428256669957 + sys_corr_11: 118.51400921459532 + sys_corr_12: 137.93616175873308 + sys_corr_13: -111.99866249770795 + sys_corr_14: 23.549445910299795 + sys_corr_15: 28.93182532651579 + sys_corr_16: -13.371509428731413 + sys_corr_17: 22.962847283066363 + sys_corr_18: -16.604413536001747 + sys_corr_19: -30.250455323342543 + sys_corr_20: -42.09988517168446 + sys_corr_21: -30.697132668930028 + sys_corr_22: -94.14100337317404 + sys_corr_23: 2.8325706027421984 + sys_corr_24: 147.77015467482502 + sys_corr_25: 33.743758468168075 + sys_corr_26: 56.35010776571643 + sys_corr_27: 0.48714244948146695 + sys_corr_28: 46.0380743282337 + sys_corr_29: -44.597881973812584 + sys_corr_30: -43.871545428243195 + sys_corr_31: -142.72640591817776 + sys_corr_32: 12.583972473113656 + sys_corr_33: -2.27511250126066 + sys_corr_34: 32.42767213693043 + sys_corr_35: 13.487075458493486 + sys_corr_36: 11.407042470772069 + sys_corr_37: 3.903291649709207 + sys_corr_38: -2.6293701037438244 + sys_corr_39: 5.935617481627228 + sys_corr_40: -3.4801236575492824 + sys_corr_41: 1.0098807403089594 + sys_corr_42: 2.0377248127699232 + sys_corr_43: 32.11995301345434 + sys_corr_44: -51.76166294857395 + sys_corr_45: -20.43746258422204 + sys_corr_46: -30.42548919580634 + sys_corr_47: 41.36288401099507 + sys_corr_48: -65.74410293094398 + sys_corr_49: 52.22403130550321 + sys_corr_50: -12.606323820730918 + sys_corr_51: 67.49297428891298 + sys_corr_52: 40.50965420895072 + sys_corr_53: 78.45035293208771 + sys_corr_54: 25.232107083150144 + sys_corr_55: -207.38622450934358 + sys_corr_56: -31.46001842061186 + sys_corr_57: -18.014272145489272 + sys_corr_58: -38.92685821344535 + sys_corr_59: 15.549373347994507 + sys_corr_60: 16.41245176874338 + sys_corr_61: -16.981602313857056 + sys_corr_62: -37.46320215246059 + sys_corr_63: 19.744982075026243 + sys_corr_64: -0.5347060837925662 + sys_corr_65: -3.365949146962862 + sys_corr_66: 14.025647069812699 + sys_corr_67: 18.738833958660084 + sys_corr_68: -2.7863976964322497 + sys_corr_69: 0.6434639109971685 + sys_corr_70: -19.741218000278803 + sys_corr_71: 6.140215159494131 + sys_corr_72: -1.50347465410764 + sys_corr_73: 8.228491296948942 + sys_corr_74: -53.24143197384954 + sys_corr_75: 7.686147364203033 + sys_corr_76: -4.551029251977507 + sys_corr_77: 1.5546782345069636 + sys_corr_78: -7.353012169538352 + sys_corr_79: -4.0399330380967395 + sys_corr_80: -14.913907816775788 + sys_corr_81: -2.990719068177347 + sys_corr_82: 6.021048517683155 + sys_corr_83: -10.597302958120075 + sys_corr_84: 2.4644106214578647 + sys_corr_85: 8.831042176547657 + sys_corr_86: 10.799878258786656 + sys_corr_87: 6.77757359312454 + sys_corr_88: -1.8525501275458596 + sys_corr_89: 2.736256958384397 + sys_corr_90: -4.20489690543441 + sys_corr_91: 0.1622456172046683 + sys_corr_92: -16.264124217593906 + sys_corr_93: 0.1561348548884359 + sys_corr_94: 0.7866461167669958 + sys_corr_95: -2.7424556660626327 + sys_corr_96: -0.07540335262166208 + sys_corr_97: -0.9487304866844971 + sys_corr_98: -0.32812249400501226 + sys_corr_99: 0.04617160460854896 + sys_corr_100: -0.02559979990029423 + sys_corr_101: 0.22960739978021752 + sys_corr_102: 1.2760669438085888 + sys_corr_103: -2.416633848360434 + sys_corr_104: -0.19841073182231111 + sys_corr_105: -0.04382201934930996 + sys_corr_106: 0.027876575219716485 + sys_corr_107: -0.19972995727732443 + sys_corr_108: 0.4204435378442275 + sys_corr_109: 0.13140010639690097 + sys_corr_110: -0.22748185576027685 + sys_corr_111: -0.032861504393729 + sys_corr_112: 0.15856193132075433 + sys_corr_113: 0.06417361442283422 + sys_corr_114: 0.003202722333779688 + sys_corr_115: 0.27829094302141816 + sys_corr_116: 0.03071582761867601 + sys_corr_117: 0.03664313445170949 + sys_corr_118: 0.27602758178729025 + sys_corr_119: -0.0076088832294319685 + sys_corr_120: -0.016294353443643314 + sys_corr_121: 0.005525739184985106 + sys_corr_122: 0.018492325724486343 + sys_corr_123: 0.015105039323911527 + sys_corr_124: 0.09532677088382688 + sys_corr_125: -0.006957334697213489 + sys_corr_126: 0.004617880299001034 + sys_corr_127: -0.4589404676160277 + sys_corr_128: -0.3876602373731096 + sys_corr_129: -0.02031277867545216 + sys_corr_130: -0.0027248316948778363 + sys_corr_131: 0.005638785350058258 + sys_corr_132: 0.04310477201521813 stat: 0.0 luminosity: 364.184744 -- sys_corr_1: 120.38195967330243 - sys_corr_2: 40.88860260487153 - sys_corr_3: -32.03893966074375 - sys_corr_4: -216.6282769890032 - sys_corr_5: -1.9323275348487128 - sys_corr_6: -17.01477387751482 - sys_corr_7: 33.33081953861101 - sys_corr_8: 65.1800968036154 - sys_corr_9: 103.30449200770306 - sys_corr_10: 29.147573719263505 - sys_corr_11: 80.97417062839737 - sys_corr_12: 78.87717155851517 - sys_corr_13: 73.40245012172683 - sys_corr_14: -10.862301538430042 - sys_corr_15: -22.57874037543109 - sys_corr_16: 16.068868497944518 - sys_corr_17: 18.967219837392076 - sys_corr_18: 9.417367243866238 - sys_corr_19: -23.747605085321688 - sys_corr_20: -41.34275862535047 - sys_corr_21: -35.283178416065795 - sys_corr_22: -107.75570406660864 - sys_corr_23: -5.8098094888905605 - sys_corr_24: 167.56774757096235 - sys_corr_25: 29.504623101619288 - sys_corr_26: 38.398947535675134 - sys_corr_27: 14.741065099883535 - sys_corr_28: 46.592179762972194 - sys_corr_29: -25.29318121434618 - sys_corr_30: -32.0322503024872 - sys_corr_31: -135.9213834558864 - sys_corr_32: -21.97051477787992 - sys_corr_33: -1.6093675092890025 - sys_corr_34: 10.345240985394051 - sys_corr_35: 10.371541845977193 - sys_corr_36: 35.69192927921344 - sys_corr_37: 32.0718321859487 - sys_corr_38: 20.390486084013745 - sys_corr_39: -5.630233930142828 - sys_corr_40: 28.71706379911182 - sys_corr_41: 20.92004441754415 - sys_corr_42: -18.76870048451747 - sys_corr_43: -35.1422431828463 - sys_corr_44: 8.330764625414805 - sys_corr_45: -24.815155343967657 - sys_corr_46: -27.85456160998178 - sys_corr_47: 1.4229470585336612 - sys_corr_48: -6.873220849409995 - sys_corr_49: 15.609567582279217 - sys_corr_50: -21.818281459064167 - sys_corr_51: -29.062475884472292 - sys_corr_52: 25.158199880047135 - sys_corr_53: 24.26479417368316 - sys_corr_54: 22.26811647383736 - sys_corr_55: -54.952480394833415 - sys_corr_56: 27.090710486912478 - sys_corr_57: 14.968800284695599 - sys_corr_58: 27.915492774371582 - sys_corr_59: -108.33483680311335 - sys_corr_60: -27.736188170605736 - sys_corr_61: -84.36746195518431 - sys_corr_62: 10.23448026692224 - sys_corr_63: -0.7485344835728349 - sys_corr_64: 116.30033656866128 - sys_corr_65: -59.71428185364863 - sys_corr_66: 51.323831247662284 - sys_corr_67: -86.92642934404816 - sys_corr_68: -6.895848439389908 - sys_corr_69: 4.868782012650386 - sys_corr_70: 45.09195717553102 - sys_corr_71: -33.84226220410998 - sys_corr_72: 33.3116825508048 - sys_corr_73: -21.685079746957317 - sys_corr_74: -26.007858757847657 - sys_corr_75: 10.609447999474506 - sys_corr_76: -23.701558313916173 - sys_corr_77: 8.130014116069146 - sys_corr_78: -9.375305031479598 - sys_corr_79: -22.839645600759926 - sys_corr_80: 3.527864884210282 - sys_corr_81: 18.484452612683526 - sys_corr_82: -9.520945660983214 - sys_corr_83: 3.3747459607465546 - sys_corr_84: -0.8335046837024584 - sys_corr_85: 8.767785576183975 - sys_corr_86: -5.732514663461028 - sys_corr_87: -25.156385116107558 - sys_corr_88: -9.438539092505419 - sys_corr_89: -5.528789198637891 - sys_corr_90: 0.9478442241793539 - sys_corr_91: 0.4015415821056435 - sys_corr_92: 1.672875377080411 - sys_corr_93: -0.7499662657724705 - sys_corr_94: -3.859788252034257 - sys_corr_95: -2.122888950313117 - sys_corr_96: -0.27851573406370683 - sys_corr_97: -1.8733576754957062 - sys_corr_98: 0.17360739506174117 - sys_corr_99: 0.28382139553613256 - sys_corr_100: 0.4717142798691623 - sys_corr_101: -0.19247197497956317 - sys_corr_102: 0.6814904588960876 - sys_corr_103: -0.28904091195790016 - sys_corr_104: 5.188017047941315 - sys_corr_105: -0.43598295941361054 - sys_corr_106: -0.2229649588862402 - sys_corr_107: 0.6373889251948895 - sys_corr_108: -0.460423311352318 - sys_corr_109: 0.14192813356209893 - sys_corr_110: -0.15671589685640808 - sys_corr_111: 0.039827336064896676 - sys_corr_112: 0.21496826523687876 - sys_corr_113: 0.036908265063426836 - sys_corr_114: 0.0018561610255085931 - sys_corr_115: 0.20587632625278882 - sys_corr_116: -0.05958266591199743 - sys_corr_117: -0.06497613357426357 - sys_corr_118: -0.13180707736304434 - sys_corr_119: 0.00840517597922402 - sys_corr_120: 0.039632023886232076 - sys_corr_121: 0.003947766120776079 - sys_corr_122: -0.013823475355248844 - sys_corr_123: -0.03872698071594092 - sys_corr_124: 0.13295276316426097 - sys_corr_125: 0.030447554930670414 - sys_corr_126: 0.0064174496809965 - sys_corr_127: -0.3601041739317487 - sys_corr_128: -0.6165647368652083 - sys_corr_129: 0.1493519537863399 - sys_corr_130: -0.016324150756485783 - sys_corr_131: -0.028308905759383055 - sys_corr_132: 0.12234916226271518 +- sys_corr_1: 120.3819596733025 + sys_corr_2: 40.888602604871586 + sys_corr_3: -32.0389396607436 + sys_corr_4: -216.62827698900375 + sys_corr_5: -1.9323275348478568 + sys_corr_6: -17.014773877514802 + sys_corr_7: 33.33081953861136 + sys_corr_8: 65.18009680361888 + sys_corr_9: 103.30449200770386 + sys_corr_10: 29.147573719256282 + sys_corr_11: 80.97417062840574 + sys_corr_12: 78.87717155851242 + sys_corr_13: -73.40245012172483 + sys_corr_14: 10.862301538429465 + sys_corr_15: 22.578740375431284 + sys_corr_16: -16.068868497944003 + sys_corr_17: 18.9672198373924 + sys_corr_18: -9.417367243866236 + sys_corr_19: -23.74760508532053 + sys_corr_20: -41.3427586253501 + sys_corr_21: -35.28317841606401 + sys_corr_22: -107.75570406660863 + sys_corr_23: -5.809809488890927 + sys_corr_24: 167.5677475709627 + sys_corr_25: 29.50462310161928 + sys_corr_26: 38.39894753567375 + sys_corr_27: 14.7410650998828 + sys_corr_28: 46.592179762973075 + sys_corr_29: -25.293181214345108 + sys_corr_30: -32.03225030248658 + sys_corr_31: -135.92138345588728 + sys_corr_32: 21.97051477788004 + sys_corr_33: 1.609367509295602 + sys_corr_34: 10.345240985395785 + sys_corr_35: 10.371541845974127 + sys_corr_36: 35.6919292792198 + sys_corr_37: -32.07183218595258 + sys_corr_38: -20.39048608400961 + sys_corr_39: 5.630233930136144 + sys_corr_40: -28.717063799115277 + sys_corr_41: 20.920044417541305 + sys_corr_42: 18.768700484523762 + sys_corr_43: -35.142243182839564 + sys_corr_44: 8.330764625414421 + sys_corr_45: 24.815155343981985 + sys_corr_46: 27.854561609973892 + sys_corr_47: -1.4229470585311976 + sys_corr_48: 6.873220849410676 + sys_corr_49: -15.60956758227753 + sys_corr_50: -21.818281459064604 + sys_corr_51: -29.06247588447348 + sys_corr_52: 25.158199880055214 + sys_corr_53: -24.264794173691207 + sys_corr_54: -22.26811647386153 + sys_corr_55: 54.952480394830715 + sys_corr_56: -27.090710486916397 + sys_corr_57: 14.968800284711051 + sys_corr_58: -27.915492774447593 + sys_corr_59: -108.33483680307882 + sys_corr_60: 27.736188170577446 + sys_corr_61: 84.36746195519027 + sys_corr_62: -10.234480266947733 + sys_corr_63: -0.7485344835893506 + sys_corr_64: 116.30033656863345 + sys_corr_65: -59.71428185352949 + sys_corr_66: -51.323831247674576 + sys_corr_67: -86.92642934405329 + sys_corr_68: 6.895848439404933 + sys_corr_69: 4.868782012645976 + sys_corr_70: -45.09195717552027 + sys_corr_71: -33.84226220412457 + sys_corr_72: -33.31168255080692 + sys_corr_73: 21.68507974695324 + sys_corr_74: -26.00785875784813 + sys_corr_75: 10.609447999496021 + sys_corr_76: -23.7015583139114 + sys_corr_77: -8.13001411607168 + sys_corr_78: -3.5278648842104574 + sys_corr_79: -9.375305031478185 + sys_corr_80: -22.839645600758736 + sys_corr_81: -18.484452612684052 + sys_corr_82: 9.520945660983378 + sys_corr_83: 3.3747459607428003 + sys_corr_84: 0.8335046836999023 + sys_corr_85: 8.767785576183492 + sys_corr_86: 5.732514663454687 + sys_corr_87: 25.156385116107753 + sys_corr_88: -9.438539092508787 + sys_corr_89: 0.9478442241792325 + sys_corr_90: -5.528789198637877 + sys_corr_91: 0.401541582105545 + sys_corr_92: -1.6728753770786875 + sys_corr_93: -0.7499662657724003 + sys_corr_94: -3.859788252034069 + sys_corr_95: -2.1228889503132446 + sys_corr_96: 0.2785157340636551 + sys_corr_97: -1.8733576754957 + sys_corr_98: -0.17360739506163536 + sys_corr_99: 0.2838213955363282 + sys_corr_100: -0.19247197497942647 + sys_corr_101: -0.6814904588957874 + sys_corr_102: -0.289040911957292 + sys_corr_103: -5.188017047941342 + sys_corr_104: 0.43598295941381815 + sys_corr_105: -0.47171427986900955 + sys_corr_106: -0.2229649588860528 + sys_corr_107: -0.4604233113522428 + sys_corr_108: 0.141928133562174 + sys_corr_109: 0.15671589685635626 + sys_corr_110: -0.6373889251948852 + sys_corr_111: -0.03982733606491682 + sys_corr_112: 0.21496826523685816 + sys_corr_113: -0.036908265063451316 + sys_corr_114: 0.0018561610255071132 + sys_corr_115: 0.20587632625281999 + sys_corr_116: 0.05958266591201148 + sys_corr_117: 0.06497613357425927 + sys_corr_118: 0.13180707736305833 + sys_corr_119: -0.008405175979222414 + sys_corr_120: -0.039632023886212134 + sys_corr_121: -0.003947766120781796 + sys_corr_122: -0.03872698071594093 + sys_corr_123: -0.013823475355245191 + sys_corr_124: 0.13295276316428098 + sys_corr_125: 0.03044755493065745 + sys_corr_126: -0.006417449680988377 + sys_corr_127: -0.36010417393180005 + sys_corr_128: -0.61656473686521 + sys_corr_129: 0.1493519537863143 + sys_corr_130: -0.016324150756484922 + sys_corr_131: 0.028308905759390487 + sys_corr_132: 0.12234916226271336 stat: 0.0 luminosity: 303.01161 -- sys_corr_1: 100.52961269415155 - sys_corr_2: 49.499091852651425 - sys_corr_3: -17.877455110455294 - sys_corr_4: -192.84317372303022 - sys_corr_5: 10.10165168553665 - sys_corr_6: -22.52658679463378 - sys_corr_7: -1.2060004602235512 - sys_corr_8: 45.38985812084553 - sys_corr_9: 79.57918262376198 - sys_corr_10: 28.053554555835003 - sys_corr_11: 53.03625993657193 - sys_corr_12: 41.72518038335724 - sys_corr_13: 56.13576785755527 - sys_corr_14: 0.09149989935867278 - sys_corr_15: -16.033201971751346 - sys_corr_16: 14.903975325600095 - sys_corr_17: 11.376785587909447 - sys_corr_18: 11.470402388778062 - sys_corr_19: -20.736447400197587 - sys_corr_20: -40.705223275734475 - sys_corr_21: -28.30212441511917 - sys_corr_22: -105.71745352826673 - sys_corr_23: -7.90976985891363 - sys_corr_24: 183.95884883228427 - sys_corr_25: 5.1328960136656665 - sys_corr_26: 2.922418478213457 - sys_corr_27: 31.951142962527594 - sys_corr_28: 42.29801675569294 - sys_corr_29: -11.710803420889528 - sys_corr_30: -8.476632912494177 - sys_corr_31: -127.64268441909836 - sys_corr_32: -27.35305959194809 - sys_corr_33: -3.5539737187080798 - sys_corr_34: -7.618444551177001 - sys_corr_35: 15.178242125614155 - sys_corr_36: 36.357158476193156 - sys_corr_37: 46.91849888017843 - sys_corr_38: 31.810016770384163 - sys_corr_39: -4.318306848169409 - sys_corr_40: 47.19507476436697 - sys_corr_41: 11.091057701174336 - sys_corr_42: -2.777539321341833 - sys_corr_43: -68.25685822074983 - sys_corr_44: -0.2850583881263973 - sys_corr_45: -27.3396131329762 - sys_corr_46: -35.67372605657144 - sys_corr_47: 1.8892791400294136 - sys_corr_48: -45.70163448238746 - sys_corr_49: 6.176107571212847 - sys_corr_50: -34.331985040191626 - sys_corr_51: -60.431626821067816 - sys_corr_52: 22.532261038705343 - sys_corr_53: 1.0862825060796975 - sys_corr_54: 20.349180312783716 - sys_corr_55: -31.179045763006673 - sys_corr_56: -24.090755469884897 - sys_corr_57: 4.0816430392811185 - sys_corr_58: -27.200721745015635 - sys_corr_59: 39.30139665351241 - sys_corr_60: 30.313624153605478 - sys_corr_61: 53.73475560906818 - sys_corr_62: -9.099642101711591 - sys_corr_63: -31.681493689832486 - sys_corr_64: -143.955848760779 - sys_corr_65: 26.883706945428457 - sys_corr_66: -72.8760585109761 - sys_corr_67: -26.310824118989512 - sys_corr_68: -35.78468669324139 - sys_corr_69: -20.571452047037216 - sys_corr_70: 39.68989413875158 - sys_corr_71: -24.996508346272165 - sys_corr_72: 89.88416820809796 - sys_corr_73: -11.713599756543173 - sys_corr_74: 7.924915880456241 - sys_corr_75: 6.880193675398472 - sys_corr_76: -8.075094033134254 - sys_corr_77: 6.4247704684388856 - sys_corr_78: 1.7100421918661128 - sys_corr_79: -42.22005297501207 - sys_corr_80: -1.832125980154124 - sys_corr_81: 20.498155500446142 - sys_corr_82: -10.17161234791559 - sys_corr_83: 2.457482855641587 - sys_corr_84: -2.54892212371244 - sys_corr_85: 9.1656322562098 - sys_corr_86: -2.627870638843872 - sys_corr_87: -12.406792760026812 - sys_corr_88: 25.548115831326072 - sys_corr_89: -5.3743342297140915 - sys_corr_90: 4.211625528871694 - sys_corr_91: 0.2975220435686881 - sys_corr_92: 2.92308827762051 - sys_corr_93: -0.7534371416732223 - sys_corr_94: -3.499290258544235 - sys_corr_95: 0.4222775562539868 - sys_corr_96: -0.34717245071985997 - sys_corr_97: -0.9924169514101752 - sys_corr_98: -0.31136368979576673 - sys_corr_99: 0.6188126503427036 - sys_corr_100: 0.6081039180978461 - sys_corr_101: -0.5384334818873596 - sys_corr_102: 0.9791623591513124 - sys_corr_103: 0.04314883263374124 - sys_corr_104: 5.689995085735867 - sys_corr_105: 0.1442848588095145 - sys_corr_106: -0.5183290273908261 - sys_corr_107: 0.400863528000364 - sys_corr_108: -0.539208347568211 - sys_corr_109: 0.19092552312371003 - sys_corr_110: -0.024871797815235696 - sys_corr_111: 0.13105704193551654 - sys_corr_112: 0.029479479636874677 - sys_corr_113: 0.13333984470505794 - sys_corr_114: -0.0022203608361504334 - sys_corr_115: 0.173350540838967 - sys_corr_116: -0.04649721452130666 - sys_corr_117: -0.055365148489095295 - sys_corr_118: -0.05326280512432022 - sys_corr_119: 0.005269424417604531 - sys_corr_120: 0.03484619928772681 - sys_corr_121: 0.008791667189378873 - sys_corr_122: -0.03829478711211739 - sys_corr_123: -0.06941298065533093 - sys_corr_124: 0.07320560366464644 - sys_corr_125: 0.05697483614846786 - sys_corr_126: 0.014433009047225576 - sys_corr_127: -0.36314028774589163 - sys_corr_128: -1.028481083606866 - sys_corr_129: -0.16724696570215786 - sys_corr_130: -0.003871471985245221 - sys_corr_131: -0.036612274873127404 - sys_corr_132: 0.06332084052910526 +- sys_corr_1: 100.52961269415165 + sys_corr_2: 49.499091852651446 + sys_corr_3: -17.877455110455234 + sys_corr_4: -192.8431737230306 + sys_corr_5: 10.101651685537185 + sys_corr_6: -22.526586794633776 + sys_corr_7: -1.2060004602230439 + sys_corr_8: 45.389858120847876 + sys_corr_9: 79.57918262376258 + sys_corr_10: 28.053554555829965 + sys_corr_11: 53.03625993657659 + sys_corr_12: 41.725180383355166 + sys_corr_13: -56.1357678575536 + sys_corr_14: -0.09149989935916678 + sys_corr_15: 16.033201971751474 + sys_corr_16: -14.903975325599646 + sys_corr_17: 11.3767855879098 + sys_corr_18: -11.470402388778284 + sys_corr_19: -20.73644740019673 + sys_corr_20: -40.70522327573389 + sys_corr_21: -28.30212441511769 + sys_corr_22: -105.71745352826615 + sys_corr_23: -7.9097698589141645 + sys_corr_24: 183.95884883228373 + sys_corr_25: 5.132896013664944 + sys_corr_26: 2.9224184782108344 + sys_corr_27: 31.951142962527936 + sys_corr_28: 42.2980167556938 + sys_corr_29: -11.710803420888938 + sys_corr_30: -8.47663291249431 + sys_corr_31: -127.64268441909843 + sys_corr_32: 27.35305959194509 + sys_corr_33: 3.553973718711284 + sys_corr_34: -7.618444551176095 + sys_corr_35: 15.17824212561035 + sys_corr_36: 36.357158476201135 + sys_corr_37: -46.91849888018307 + sys_corr_38: -31.810016770379764 + sys_corr_39: 4.318306848162375 + sys_corr_40: -47.19507476436933 + sys_corr_41: 11.091057701168824 + sys_corr_42: 2.777539321350181 + sys_corr_43: -68.25685822075322 + sys_corr_44: -0.2850583881269116 + sys_corr_45: 27.339613132992834 + sys_corr_46: 35.673726056559325 + sys_corr_47: -1.889279140030935 + sys_corr_48: 45.70163448238526 + sys_corr_49: -6.176107571205371 + sys_corr_50: -34.33198504019625 + sys_corr_51: -60.431626821066644 + sys_corr_52: 22.53226103871947 + sys_corr_53: -1.0862825060807937 + sys_corr_54: -20.349180312790192 + sys_corr_55: 31.179045763013868 + sys_corr_56: 24.090755469891885 + sys_corr_57: 4.081643039271074 + sys_corr_58: 27.2007217450419 + sys_corr_59: 39.301396653475315 + sys_corr_60: -30.31362415359149 + sys_corr_61: -53.73475560906758 + sys_corr_62: 9.099642101736306 + sys_corr_63: -31.6814936898001 + sys_corr_64: -143.95584876077183 + sys_corr_65: 26.883706945271427 + sys_corr_66: 72.87605851100349 + sys_corr_67: -26.31082411899388 + sys_corr_68: 35.78468669322591 + sys_corr_69: -20.571452047035965 + sys_corr_70: -39.68989413873467 + sys_corr_71: -24.996508346286195 + sys_corr_72: -89.88416820810188 + sys_corr_73: 11.71359975654127 + sys_corr_74: 7.924915880449 + sys_corr_75: 6.88019367540799 + sys_corr_76: -8.075094033128558 + sys_corr_77: -6.424770468446473 + sys_corr_78: 1.8321259801529353 + sys_corr_79: 1.7100421918711073 + sys_corr_80: -42.22005297501269 + sys_corr_81: -20.498155500445474 + sys_corr_82: 10.171612347914888 + sys_corr_83: 2.4574828556376977 + sys_corr_84: 2.548922123710722 + sys_corr_85: 9.165632256209848 + sys_corr_86: 2.6278706388796342 + sys_corr_87: 12.406792760024384 + sys_corr_88: 25.54811583132154 + sys_corr_89: 4.211625528871486 + sys_corr_90: -5.374334229714109 + sys_corr_91: 0.29752204356833084 + sys_corr_92: -2.9230882776215883 + sys_corr_93: -0.7534371416730603 + sys_corr_94: -3.499290258544013 + sys_corr_95: 0.4222775562533463 + sys_corr_96: 0.3471724507198536 + sys_corr_97: -0.9924169514099443 + sys_corr_98: 0.3113636897959209 + sys_corr_99: 0.6188126503429181 + sys_corr_100: -0.5384334818873912 + sys_corr_101: -0.979162359151293 + sys_corr_102: 0.043148832633499355 + sys_corr_103: -5.689995085735877 + sys_corr_104: -0.14428485880921244 + sys_corr_105: -0.6081039180979523 + sys_corr_106: -0.5183290273907636 + sys_corr_107: -0.5392083475681593 + sys_corr_108: 0.1909255231237175 + sys_corr_109: 0.02487179781524566 + sys_corr_110: -0.400863528000359 + sys_corr_111: -0.13105704193545142 + sys_corr_112: 0.02947947963686167 + sys_corr_113: -0.1333398447050753 + sys_corr_114: -0.002220360836151704 + sys_corr_115: 0.17335054083895424 + sys_corr_116: 0.046497214521341666 + sys_corr_117: 0.055365148489088134 + sys_corr_118: 0.05326280512430644 + sys_corr_119: -0.0052694244176062196 + sys_corr_120: -0.034846199287727926 + sys_corr_121: -0.008791667189382455 + sys_corr_122: -0.06941298065532957 + sys_corr_123: -0.03829478711210889 + sys_corr_124: 0.07320560366464164 + sys_corr_125: 0.0569748361484698 + sys_corr_126: -0.014433009047226998 + sys_corr_127: -0.36314028774600166 + sys_corr_128: -1.0284810836068894 + sys_corr_129: -0.1672469657021765 + sys_corr_130: -0.003871471985243923 + sys_corr_131: 0.03661227487313309 + sys_corr_132: 0.06332084052910662 stat: 0.0 luminosity: 242.285516 -- sys_corr_1: 78.19255199692742 - sys_corr_2: 44.77968767734945 - sys_corr_3: -4.126583706428905 - sys_corr_4: -141.6201710880831 - sys_corr_5: 15.696920414001402 - sys_corr_6: -19.397423774033708 - sys_corr_7: -29.767831083827655 - sys_corr_8: 20.61523845585771 - sys_corr_9: 39.97344201187867 - sys_corr_10: 20.72730577825851 - sys_corr_11: 22.212892639235836 - sys_corr_12: 0.8793862127623795 - sys_corr_13: 30.159260678333833 - sys_corr_14: 4.631178720248442 - sys_corr_15: -8.067330488985204 - sys_corr_16: 15.87246853092142 - sys_corr_17: 8.635641484256366 - sys_corr_18: 5.853876222336804 - sys_corr_19: -13.94660226081389 - sys_corr_20: -33.55696939616749 - sys_corr_21: -20.888994378428478 - sys_corr_22: -86.94789645223997 - sys_corr_23: -7.476112291353555 - sys_corr_24: 197.34644446019354 - sys_corr_25: 0.9939754389666214 - sys_corr_26: -3.536835300830195 - sys_corr_27: 42.334484517804036 - sys_corr_28: 23.46095345843859 - sys_corr_29: -12.050730217635687 - sys_corr_30: 37.76672535604771 - sys_corr_31: -105.07706974597414 - sys_corr_32: -26.969854627246892 - sys_corr_33: 2.4893054953250955 - sys_corr_34: -14.85335553142635 - sys_corr_35: 11.578052614869046 - sys_corr_36: 27.838712650631216 - sys_corr_37: 36.823322483890465 - sys_corr_38: 25.65760705041814 - sys_corr_39: 1.2227056069080953 - sys_corr_40: 40.95812238835362 - sys_corr_41: -2.8662213645427514 - sys_corr_42: 5.156976763422798 - sys_corr_43: -57.177561887668524 - sys_corr_44: 18.324722545763642 - sys_corr_45: -17.91238762146393 - sys_corr_46: -24.95190933511497 - sys_corr_47: -4.958749596277389 - sys_corr_48: -51.40129416367116 - sys_corr_49: 25.551399685593612 - sys_corr_50: -52.51121978226372 - sys_corr_51: -72.93684790223568 - sys_corr_52: 46.93475941702141 - sys_corr_53: -8.018318158374287 - sys_corr_54: 29.028808031801436 - sys_corr_55: 1.0793667007430767 - sys_corr_56: -21.515211438166375 - sys_corr_57: 24.757286384283987 - sys_corr_58: 1.3034717359047086 - sys_corr_59: -23.685468242335133 - sys_corr_60: 15.827250503761991 - sys_corr_61: 34.04323891249053 - sys_corr_62: 24.501792816656163 - sys_corr_63: -11.74312321572701 - sys_corr_64: 36.981129924853676 - sys_corr_65: 27.98946569519574 - sys_corr_66: 58.07618181002598 - sys_corr_67: 107.65426617743579 - sys_corr_68: 19.58106233133918 - sys_corr_69: 19.74909861138172 - sys_corr_70: -73.86328523243907 - sys_corr_71: 54.327260671463584 - sys_corr_72: -95.18143129710201 - sys_corr_73: 41.82553186723119 - sys_corr_74: 38.02056843556339 - sys_corr_75: -3.5706959103871654 - sys_corr_76: 41.72132244361784 - sys_corr_77: -2.1262886488274053 - sys_corr_78: 5.769949777277897 - sys_corr_79: -41.336155364866514 - sys_corr_80: -3.3866930566676494 - sys_corr_81: 7.596068024116233 - sys_corr_82: 2.02575462284481 - sys_corr_83: -5.6344777253901634 - sys_corr_84: -2.2969187283006653 - sys_corr_85: -0.9026180295444124 - sys_corr_86: -24.678326943383173 - sys_corr_87: 18.029307050823057 - sys_corr_88: 21.27055248118514 - sys_corr_89: 3.572911996137243 - sys_corr_90: 5.997993871800151 - sys_corr_91: -1.8483770089102551 - sys_corr_92: 24.95971082481116 - sys_corr_93: -0.5351000067805374 - sys_corr_94: -1.0636238051458828 - sys_corr_95: 1.3990124636074308 - sys_corr_96: -0.2516530030290871 - sys_corr_97: 0.7426205448496158 - sys_corr_98: -0.8047594751419221 - sys_corr_99: 1.0303065288366753 - sys_corr_100: 0.8453469649981542 - sys_corr_101: -0.576770965211701 - sys_corr_102: 0.9750812346346107 - sys_corr_103: -0.19702765462944732 - sys_corr_104: 6.533759663552773 - sys_corr_105: 0.2895714768516107 - sys_corr_106: -0.6302660931226084 - sys_corr_107: 0.07229220275480643 - sys_corr_108: -0.7942570866362333 - sys_corr_109: -0.20514414540983975 - sys_corr_110: 0.08184095661770739 - sys_corr_111: 0.4442152992362956 - sys_corr_112: -0.17724997789358563 - sys_corr_113: 0.16077093981056736 - sys_corr_114: -0.005438091338188306 - sys_corr_115: -0.054604652916435605 - sys_corr_116: -0.013230131591632074 - sys_corr_117: -0.01861362076337435 - sys_corr_118: 0.0966241930698521 - sys_corr_119: -0.014428684767990337 - sys_corr_120: 0.01589603288692646 - sys_corr_121: 0.0035229236318162134 - sys_corr_122: -0.033948603271797974 - sys_corr_123: -0.053171717009979365 - sys_corr_124: -0.034227165097513744 - sys_corr_125: 0.05672137359753382 - sys_corr_126: 0.016447707531466085 - sys_corr_127: -0.10586561023853272 - sys_corr_128: -0.9373233132754318 - sys_corr_129: -0.27785596353430136 - sys_corr_130: 0.013679909601113243 - sys_corr_131: -0.03293748836187947 - sys_corr_132: -0.11539713559789937 +- sys_corr_1: 78.19255199692739 + sys_corr_2: 44.779687677349465 + sys_corr_3: -4.12658370642883 + sys_corr_4: -141.62017108808342 + sys_corr_5: 15.696920414001713 + sys_corr_6: -19.3974237740337 + sys_corr_7: -29.76783108382735 + sys_corr_8: 20.615238455858456 + sys_corr_9: 39.97344201187885 + sys_corr_10: 20.72730577825643 + sys_corr_11: 22.212892639236472 + sys_corr_12: 0.8793862127613489 + sys_corr_13: -30.159260678332757 + sys_corr_14: -4.631178720248801 + sys_corr_15: 8.067330488985183 + sys_corr_16: -15.872468530921092 + sys_corr_17: 8.63564148425657 + sys_corr_18: -5.853876222337071 + sys_corr_19: -13.946602260813025 + sys_corr_20: -33.55696939616694 + sys_corr_21: -20.88899437842728 + sys_corr_22: -86.94789645223935 + sys_corr_23: -7.476112291354251 + sys_corr_24: 197.3464444601935 + sys_corr_25: 0.9939754389659393 + sys_corr_26: -3.536835300833012 + sys_corr_27: 42.33448451780433 + sys_corr_28: 23.460953458438823 + sys_corr_29: -12.050730217635882 + sys_corr_30: 37.766725356046926 + sys_corr_31: -105.07706974597399 + sys_corr_32: 26.969854627245553 + sys_corr_33: -2.4893054953227485 + sys_corr_34: -14.853355531423547 + sys_corr_35: 11.578052614866099 + sys_corr_36: 27.838712650638705 + sys_corr_37: -36.823322483892646 + sys_corr_38: -25.657607050416157 + sys_corr_39: -1.2227056069145956 + sys_corr_40: -40.95812238835446 + sys_corr_41: -2.866221364549234 + sys_corr_42: -5.156976763417907 + sys_corr_43: -57.17756188767285 + sys_corr_44: 18.324722545763315 + sys_corr_45: 17.912387621472874 + sys_corr_46: 24.951909335107988 + sys_corr_47: 4.958749596279092 + sys_corr_48: 51.401294163669554 + sys_corr_49: -25.551399685585725 + sys_corr_50: -52.511219782267986 + sys_corr_51: -72.936847902241 + sys_corr_52: 46.934759417028985 + sys_corr_53: 8.018318158360673 + sys_corr_54: -29.028808031804097 + sys_corr_55: -1.0793667007343146 + sys_corr_56: 21.51521143816571 + sys_corr_57: 24.757286384267328 + sys_corr_58: -1.3034717359295827 + sys_corr_59: -23.685468242331186 + sys_corr_60: -15.827250503759284 + sys_corr_61: -34.04323891249458 + sys_corr_62: -24.501792816653182 + sys_corr_63: -11.743123215744253 + sys_corr_64: 36.98112992486345 + sys_corr_65: 27.989465695244192 + sys_corr_66: -58.07618181003475 + sys_corr_67: 107.65426617743681 + sys_corr_68: -19.58106233134323 + sys_corr_69: 19.749098611387073 + sys_corr_70: 73.86328523241434 + sys_corr_71: 54.32726067148749 + sys_corr_72: 95.1814312971106 + sys_corr_73: -41.82553186722039 + sys_corr_74: 38.020568435571 + sys_corr_75: -3.5706959104378337 + sys_corr_76: 41.721322443614945 + sys_corr_77: 2.1262886488200747 + sys_corr_78: 3.386693056667332 + sys_corr_79: 5.769949777281187 + sys_corr_80: -41.33615536486737 + sys_corr_81: -7.596068024115773 + sys_corr_82: -2.025754622844526 + sys_corr_83: -5.634477725392982 + sys_corr_84: 2.2969187283017405 + sys_corr_85: -0.9026180295433917 + sys_corr_86: 24.678326943439004 + sys_corr_87: -18.029307050824805 + sys_corr_88: 21.270552481158116 + sys_corr_89: 5.997993871800029 + sys_corr_90: 3.57291199613729 + sys_corr_91: -1.8483770089099978 + sys_corr_92: -24.959710824822192 + sys_corr_93: -0.5351000067805031 + sys_corr_94: -1.0636238051462266 + sys_corr_95: 1.399012463607612 + sys_corr_96: 0.2516530030291641 + sys_corr_97: 0.7426205448496167 + sys_corr_98: 0.804759475141932 + sys_corr_99: 1.0303065288367523 + sys_corr_100: -0.576770965211959 + sys_corr_101: -0.9750812346350163 + sys_corr_102: -0.19702765463158242 + sys_corr_103: -6.53375966355248 + sys_corr_104: -0.2895714768504823 + sys_corr_105: -0.8453469649984781 + sys_corr_106: -0.6302660931227476 + sys_corr_107: -0.7942570866362533 + sys_corr_108: -0.2051441454098573 + sys_corr_109: -0.08184095661768552 + sys_corr_110: -0.072292202755018 + sys_corr_111: -0.44421529923621533 + sys_corr_112: -0.17724997789357444 + sys_corr_113: -0.16077093981058949 + sys_corr_114: -0.005438091338185529 + sys_corr_115: -0.054604652916463534 + sys_corr_116: 0.013230131591630247 + sys_corr_117: 0.018613620763381303 + sys_corr_118: -0.09662419306985606 + sys_corr_119: 0.0144286847679891 + sys_corr_120: -0.015896032886942416 + sys_corr_121: -0.0035229236318142397 + sys_corr_122: -0.053171717009998246 + sys_corr_123: -0.03394860327179762 + sys_corr_124: -0.034227165097531785 + sys_corr_125: 0.056721373597556905 + sys_corr_126: -0.01644770753147904 + sys_corr_127: -0.10586561023851201 + sys_corr_128: -0.9373233132754462 + sys_corr_129: -0.27785596353429964 + sys_corr_130: 0.013679909601114 + sys_corr_131: 0.03293748836188593 + sys_corr_132: -0.11539713559789477 stat: 0.0 luminosity: 173.60336400000003 -- sys_corr_1: 46.0565865465715 - sys_corr_2: 34.626150847279675 - sys_corr_3: 1.2881307696322277 - sys_corr_4: -112.46749251949741 - sys_corr_5: 15.202049293789281 - sys_corr_6: -13.941892605382032 - sys_corr_7: -31.305552018001265 - sys_corr_8: 11.608015967801077 - sys_corr_9: 25.2499114536822 - sys_corr_10: 16.090065258521328 - sys_corr_11: 15.293082342457843 - sys_corr_12: -5.304962151400372 - sys_corr_13: 17.549803935640984 - sys_corr_14: 8.984317221809441 - sys_corr_15: -8.099546113011797 - sys_corr_16: 12.78556026961987 - sys_corr_17: 3.7373898007960964 - sys_corr_18: 5.663036859273508 - sys_corr_19: -8.932503959304873 - sys_corr_20: -25.834238972630263 - sys_corr_21: -15.92316605657571 - sys_corr_22: -66.34953728024502 - sys_corr_23: -3.0004227447872234 - sys_corr_24: 162.49697890595348 - sys_corr_25: 6.712677121306778 - sys_corr_26: 1.264445319800667 - sys_corr_27: 34.83499567481184 - sys_corr_28: 13.091522330557112 - sys_corr_29: -6.354416515784579 - sys_corr_30: 35.35649114990352 - sys_corr_31: -71.3403293556344 - sys_corr_32: -16.28601594588817 - sys_corr_33: 2.0351847174977484 - sys_corr_34: -7.309701660702784 - sys_corr_35: 9.438933642614504 - sys_corr_36: 15.742262477573782 - sys_corr_37: 19.53493452786084 - sys_corr_38: 14.729176040597881 - sys_corr_39: -1.0784661474230164 - sys_corr_40: 21.931447811949564 - sys_corr_41: -5.384673523776609 - sys_corr_42: 2.9270379981496637 - sys_corr_43: -28.58922681036065 - sys_corr_44: 10.653225042258956 - sys_corr_45: -11.719427835676726 - sys_corr_46: -10.595246275799775 - sys_corr_47: -2.6511226306186124 - sys_corr_48: -26.59348047430411 - sys_corr_49: 12.73866905527442 - sys_corr_50: -20.286021229349092 - sys_corr_51: -28.882139717643003 - sys_corr_52: 14.434448389752456 - sys_corr_53: -0.3306034738339242 - sys_corr_54: 12.730036142902309 - sys_corr_55: 8.57968391889719 - sys_corr_56: -9.565060342393474 - sys_corr_57: 3.390226420100074 - sys_corr_58: -3.1107952463482746 - sys_corr_59: 5.994805623090046 - sys_corr_60: 8.29037011477921 - sys_corr_61: 15.065718158360907 - sys_corr_62: 2.852523367425856 - sys_corr_63: -9.128672499033303 - sys_corr_64: -4.03807513467645 - sys_corr_65: 10.770642818956873 - sys_corr_66: 14.365027862171958 - sys_corr_67: 14.749530955298935 - sys_corr_68: 6.286063089484322 - sys_corr_69: -5.924115657814624 - sys_corr_70: 0.6316057315533473 - sys_corr_71: 18.430809356774652 - sys_corr_72: 5.905656131388021 - sys_corr_73: -18.798617777828216 - sys_corr_74: -9.305434311054087 - sys_corr_75: -26.47877056267486 - sys_corr_76: -22.01784491117403 - sys_corr_77: -26.88182714553987 - sys_corr_78: -0.8158952298473144 - sys_corr_79: 183.7084585773087 - sys_corr_80: 48.689722611131785 - sys_corr_81: -19.700420307674207 - sys_corr_82: 3.138506888363446 - sys_corr_83: -7.1000579891862285 - sys_corr_84: -6.453410456275783 - sys_corr_85: 10.183629757088864 - sys_corr_86: 41.625367831946704 - sys_corr_87: -2.6540060715998526 - sys_corr_88: -38.037306128605955 - sys_corr_89: -0.7855991349747428 - sys_corr_90: -3.377071874660791 - sys_corr_91: -0.4463849245993131 - sys_corr_92: -37.90700305976192 - sys_corr_93: -0.9437238178101681 - sys_corr_94: -4.913232429917244 - sys_corr_95: -4.703451911359478 - sys_corr_96: -0.271070906567684 - sys_corr_97: 1.9215051541773416 - sys_corr_98: -1.8630148354805913 - sys_corr_99: 2.182877710291037 - sys_corr_100: 1.3486403268014728 - sys_corr_101: -1.164377846210897 - sys_corr_102: 1.7851911203750654 - sys_corr_103: -0.7202940687717124 - sys_corr_104: 14.191404614568746 - sys_corr_105: 0.03041009451402254 - sys_corr_106: -0.985374566711583 - sys_corr_107: -0.30499404508060757 - sys_corr_108: -1.1057987285954032 - sys_corr_109: -0.2935022754111356 - sys_corr_110: 0.20678162413893267 - sys_corr_111: 0.6009628900313402 - sys_corr_112: -0.22988745182011963 - sys_corr_113: 0.06530926374614131 - sys_corr_114: -0.004614824224982284 - sys_corr_115: -0.0964266670078058 - sys_corr_116: -0.024011742293545257 - sys_corr_117: -0.03219185755483921 - sys_corr_118: 0.26504034383922426 - sys_corr_119: -0.013570690541496858 - sys_corr_120: 0.030674356247861547 - sys_corr_121: 0.006514306137791679 - sys_corr_122: -0.05887431646980556 - sys_corr_123: -0.12107126201013405 - sys_corr_124: -0.031021928240799086 - sys_corr_125: 0.07943748432739811 - sys_corr_126: 0.021303306656292223 - sys_corr_127: 0.30140328935006905 - sys_corr_128: -1.697862555016929 - sys_corr_129: -0.3817906695187043 - sys_corr_130: 0.012502292010817666 - sys_corr_131: -0.0568939073820602 - sys_corr_132: -0.1017198556118281 +- sys_corr_1: 46.05658654657153 + sys_corr_2: 34.6261508472797 + sys_corr_3: 1.2881307696322741 + sys_corr_4: -112.46749251949755 + sys_corr_5: 15.202049293789628 + sys_corr_6: -13.941892605382046 + sys_corr_7: -31.30555201800096 + sys_corr_8: 11.608015967801363 + sys_corr_9: 25.249911453682405 + sys_corr_10: 16.090065258520035 + sys_corr_11: 15.293082342457764 + sys_corr_12: -5.304962151401128 + sys_corr_13: -17.549803935639996 + sys_corr_14: -8.984317221809818 + sys_corr_15: 8.099546113011595 + sys_corr_16: -12.785560269619662 + sys_corr_17: 3.737389800796298 + sys_corr_18: -5.663036859273913 + sys_corr_19: -8.932503959304535 + sys_corr_20: -25.834238972629944 + sys_corr_21: -15.923166056574871 + sys_corr_22: -66.34953728024485 + sys_corr_23: -3.0004227447877017 + sys_corr_24: 162.49697890595354 + sys_corr_25: 6.712677121306253 + sys_corr_26: 1.2644453197982843 + sys_corr_27: 34.834995674812 + sys_corr_28: 13.091522330557225 + sys_corr_29: -6.354416515785032 + sys_corr_30: 35.35649114990297 + sys_corr_31: -71.34032935563425 + sys_corr_32: 16.286015945887396 + sys_corr_33: -2.0351847174970827 + sys_corr_34: -7.30970166070127 + sys_corr_35: 9.43893364261296 + sys_corr_36: 15.742262477577832 + sys_corr_37: -19.534934527862696 + sys_corr_38: -14.729176040596435 + sys_corr_39: 1.07846614742008 + sys_corr_40: -21.93144781194955 + sys_corr_41: -5.384673523780049 + sys_corr_42: -2.9270379981482995 + sys_corr_43: -28.58922681036305 + sys_corr_44: 10.653225042258644 + sys_corr_45: 11.719427835680222 + sys_corr_46: 10.59524627579492 + sys_corr_47: 2.651122630619389 + sys_corr_48: 26.593480474303885 + sys_corr_49: -12.73866905527067 + sys_corr_50: -20.28602122935071 + sys_corr_51: -28.882139717644243 + sys_corr_52: 14.434448389756554 + sys_corr_53: 0.3306034738289491 + sys_corr_54: -12.730036142899143 + sys_corr_55: -8.57968391889252 + sys_corr_56: 9.565060342393759 + sys_corr_57: 3.390226420094232 + sys_corr_58: 3.1107952463511426 + sys_corr_59: 5.994805623087941 + sys_corr_60: -8.29037011477549 + sys_corr_61: -15.065718158360783 + sys_corr_62: -2.852523367423661 + sys_corr_63: -9.128672499035346 + sys_corr_64: -4.038075134673369 + sys_corr_65: 10.770642818955649 + sys_corr_66: -14.365027862173596 + sys_corr_67: 14.749530955307092 + sys_corr_68: -6.286063089495261 + sys_corr_69: -5.924115657808297 + sys_corr_70: -0.6316057315559171 + sys_corr_71: 18.430809356774734 + sys_corr_72: -5.905656131390744 + sys_corr_73: 18.798617777821722 + sys_corr_74: -9.30543431105336 + sys_corr_75: -26.478770562637205 + sys_corr_76: -22.017844911188313 + sys_corr_77: 26.88182714555826 + sys_corr_78: -48.68972261113151 + sys_corr_79: -0.8158952298597447 + sys_corr_80: 183.70845857730998 + sys_corr_81: 19.700420307674598 + sys_corr_82: -3.1385068883640033 + sys_corr_83: -7.100057989178643 + sys_corr_84: 6.45341045627479 + sys_corr_85: 10.183629757090417 + sys_corr_86: -41.62536783204836 + sys_corr_87: 2.654006071601127 + sys_corr_88: -38.03730612856744 + sys_corr_89: -3.37707187466051 + sys_corr_90: -0.7855991349748069 + sys_corr_91: -0.446384924599169 + sys_corr_92: 37.907003059775214 + sys_corr_93: -0.9437238178101133 + sys_corr_94: -4.913232429917022 + sys_corr_95: -4.703451911359633 + sys_corr_96: 0.27107090656784477 + sys_corr_97: 1.9215051541773174 + sys_corr_98: 1.8630148354807052 + sys_corr_99: 2.182877710291224 + sys_corr_100: -1.1643778462110506 + sys_corr_101: -1.7851911203752555 + sys_corr_102: -0.7202940687742141 + sys_corr_103: -14.191404614568388 + sys_corr_104: -0.030410094512070635 + sys_corr_105: -1.348640326801711 + sys_corr_106: -0.9853745667115522 + sys_corr_107: -1.1057987285953528 + sys_corr_108: -0.29350227541116913 + sys_corr_109: -0.2067816241389575 + sys_corr_110: 0.3049940450801331 + sys_corr_111: -0.6009628900312532 + sys_corr_112: -0.22988745182013165 + sys_corr_113: -0.06530926374611785 + sys_corr_114: -0.004614824224981813 + sys_corr_115: -0.09642666700780682 + sys_corr_116: 0.02401174229353196 + sys_corr_117: 0.032191857554872035 + sys_corr_118: -0.26504034383921915 + sys_corr_119: 0.01357069054149926 + sys_corr_120: -0.030674356247845477 + sys_corr_121: -0.0065143061377912655 + sys_corr_122: -0.12107126201015017 + sys_corr_123: -0.058874316469790806 + sys_corr_124: -0.031021928240851 + sys_corr_125: 0.07943748432742255 + sys_corr_126: -0.021303306656286818 + sys_corr_127: 0.3014032893501744 + sys_corr_128: -1.6978625550169646 + sys_corr_129: -0.3817906695187203 + sys_corr_130: 0.012502292010819989 + sys_corr_131: 0.05689390738204886 + sys_corr_132: -0.10171985561182086 stat: 0.0 luminosity: 102.83460000000001 -- sys_corr_1: 16.782893532931542 - sys_corr_2: 11.355898877482717 - sys_corr_3: 2.1021592745259374 - sys_corr_4: -43.11424296214602 - sys_corr_5: 6.003495383001607 - sys_corr_6: -7.283156713741889 - sys_corr_7: -12.25649685525176 - sys_corr_8: 4.273520933184496 - sys_corr_9: 7.876175102583457 - sys_corr_10: 6.673705158125883 - sys_corr_11: 4.094117763379368 - sys_corr_12: -4.820788569128351 - sys_corr_13: 4.489097056969784 - sys_corr_14: 4.046112537939582 - sys_corr_15: -1.3756427797195105 - sys_corr_16: 3.8890428274804503 - sys_corr_17: 1.2013974441498396 - sys_corr_18: 0.31382456605748366 - sys_corr_19: -2.9236365036883805 - sys_corr_20: -10.978228733653038 - sys_corr_21: -6.586834286778923 - sys_corr_22: -24.501689880759187 - sys_corr_23: -2.8763924363001547 - sys_corr_24: 65.1766734129796 - sys_corr_25: 3.9462907100161524 - sys_corr_26: -0.5048604829027271 - sys_corr_27: 13.929492501624072 - sys_corr_28: 6.17953332331853 - sys_corr_29: -3.2737803200953177 - sys_corr_30: 13.74840758660851 - sys_corr_31: -26.87680888101167 - sys_corr_32: -6.092072216531113 - sys_corr_33: 0.7649771599645173 - sys_corr_34: -2.921647025982153 - sys_corr_35: 2.3699729421681606 - sys_corr_36: 4.631816966947103 - sys_corr_37: 6.459326525286999 - sys_corr_38: 4.997893914984979 - sys_corr_39: 0.4531372900713173 - sys_corr_40: 6.0330871634776395 - sys_corr_41: -1.9980175624153804 - sys_corr_42: 1.4714475198067805 - sys_corr_43: -8.578869478549757 - sys_corr_44: 3.391481922624581 - sys_corr_45: -3.0684179932261744 - sys_corr_46: -3.920135265711037 - sys_corr_47: -0.44347107198804087 - sys_corr_48: -8.631156550974064 - sys_corr_49: 3.1939107944290925 - sys_corr_50: -5.3319149863515625 - sys_corr_51: -8.105253567045553 - sys_corr_52: 4.351059412595654 - sys_corr_53: -0.39561984809213885 - sys_corr_54: 3.4641099387222893 - sys_corr_55: 3.820485502190224 - sys_corr_56: -2.1812890008561543 - sys_corr_57: 1.9652339173859898 - sys_corr_58: -1.213256437326762 - sys_corr_59: -0.5334293929401797 - sys_corr_60: 1.923537749999476 - sys_corr_61: 1.929237529897879 - sys_corr_62: -1.0563078977737814 - sys_corr_63: -2.0132353087028623 - sys_corr_64: 2.1990761456821626 - sys_corr_65: 1.383623464351341 - sys_corr_66: 3.4765469842096612 - sys_corr_67: 1.4662954541525803 - sys_corr_68: 0.8625213461245355 - sys_corr_69: -0.6066992203119962 - sys_corr_70: -1.261531030679708 - sys_corr_71: -0.3950352851904737 - sys_corr_72: 3.1137243114411763 - sys_corr_73: -1.6626453568972857 - sys_corr_74: 0.1170508660872123 - sys_corr_75: -2.367312387845572 - sys_corr_76: -2.548206120554272 - sys_corr_77: -1.6261261163179737 - sys_corr_78: -0.4269358579396414 - sys_corr_79: 12.900603475909794 - sys_corr_80: 0.8560358947601017 - sys_corr_81: -1.3041908202119674 - sys_corr_82: 0.6440523380428209 - sys_corr_83: -0.6296708698574917 - sys_corr_84: 1.665829630251327 - sys_corr_85: -0.8881380869266005 - sys_corr_86: 5.45517942008633 - sys_corr_87: 0.43956584822815287 - sys_corr_88: -4.447557110184469 - sys_corr_89: -0.5123516685702949 - sys_corr_90: -3.917805226862026 - sys_corr_91: -1.1681485653360562 - sys_corr_92: -4.520112976246229 - sys_corr_93: 2.1313975486398418 - sys_corr_94: 11.204817257151298 - sys_corr_95: -2.2455855202801556 - sys_corr_96: 1.6169517054770695 - sys_corr_97: -0.9429681835695093 - sys_corr_98: 7.0072044028250025 - sys_corr_99: -7.872838508646593 - sys_corr_100: 2.602334446225914 - sys_corr_101: -1.9917539742706685 - sys_corr_102: 4.06212293516231 - sys_corr_103: 15.424024180840785 - sys_corr_104: -131.21293414244616 - sys_corr_105: 21.160000119330626 - sys_corr_106: -1.696310503240794 - sys_corr_107: -3.3279099315934477 - sys_corr_108: -2.0277209648685206 - sys_corr_109: 0.17151825258577297 - sys_corr_110: 0.27549086649029003 - sys_corr_111: -0.39722296033617716 - sys_corr_112: -0.09317903426520793 - sys_corr_113: 0.30629142125626524 - sys_corr_114: -0.006888067765772463 - sys_corr_115: -0.10842149598999594 - sys_corr_116: -0.009918358768671637 - sys_corr_117: -0.022547742257659282 - sys_corr_118: 0.26090196977089497 - sys_corr_119: -0.013677805155233336 - sys_corr_120: 0.03952496247064427 - sys_corr_121: 0.017986796017776214 - sys_corr_122: -0.08857480128219757 - sys_corr_123: -0.15197973297360173 - sys_corr_124: -0.041617910918153374 - sys_corr_125: 0.11106109714258186 - sys_corr_126: 0.03669198491821304 - sys_corr_127: -4.1175716074819695 - sys_corr_128: 0.8871918195067496 - sys_corr_129: -0.05229940311464342 - sys_corr_130: 0.0019371452525409974 - sys_corr_131: -0.06102085628767255 - sys_corr_132: -0.051881117280271304 +- sys_corr_1: 16.78289353293156 + sys_corr_2: 11.35589887748273 + sys_corr_3: 2.1021592745259396 + sys_corr_4: -43.114242962146115 + sys_corr_5: 6.003495383001756 + sys_corr_6: -7.283156713741961 + sys_corr_7: -12.256496855251733 + sys_corr_8: 4.27352093318457 + sys_corr_9: 7.876175102583516 + sys_corr_10: 6.673705158125583 + sys_corr_11: 4.094117763379061 + sys_corr_12: -4.820788569128576 + sys_corr_13: -4.489097056969431 + sys_corr_14: -4.046112537939724 + sys_corr_15: 1.375642779719535 + sys_corr_16: -3.889042827480373 + sys_corr_17: 1.2013974441499184 + sys_corr_18: -0.31382456605755304 + sys_corr_19: -2.9236365036881495 + sys_corr_20: -10.978228733653019 + sys_corr_21: -6.586834286778621 + sys_corr_22: -24.5016898807591 + sys_corr_23: -2.876392436300381 + sys_corr_24: 65.17667341297972 + sys_corr_25: 3.946290710015918 + sys_corr_26: -0.5048604829038368 + sys_corr_27: 13.929492501624233 + sys_corr_28: 6.179533323318608 + sys_corr_29: -3.27378032009548 + sys_corr_30: 13.748407586608332 + sys_corr_31: -26.876808881011705 + sys_corr_32: 6.092072216530821 + sys_corr_33: -0.7649771599645537 + sys_corr_34: -2.9216470259815632 + sys_corr_35: 2.369972942167905 + sys_corr_36: 4.631816966948313 + sys_corr_37: -6.459326525287557 + sys_corr_38: -4.99789391498456 + sys_corr_39: -0.453137290072458 + sys_corr_40: -6.033087163477533 + sys_corr_41: -1.9980175624163574 + sys_corr_42: -1.4714475198062746 + sys_corr_43: -8.578869478550503 + sys_corr_44: 3.3914819226246053 + sys_corr_45: 3.0684179932274893 + sys_corr_46: 3.920135265709639 + sys_corr_47: 0.4434710719882635 + sys_corr_48: 8.63115655097393 + sys_corr_49: -3.193910794427924 + sys_corr_50: -5.331914986352208 + sys_corr_51: -8.105253567045873 + sys_corr_52: 4.351059412596506 + sys_corr_53: 0.3956198480909584 + sys_corr_54: -3.4641099387212684 + sys_corr_55: -3.8204855021890074 + sys_corr_56: 2.1812890008559647 + sys_corr_57: 1.9652339173845013 + sys_corr_58: 1.213256437326051 + sys_corr_59: -0.5334293929409261 + sys_corr_60: -1.92353774999927 + sys_corr_61: -1.92923752989769 + sys_corr_62: 1.0563078977734845 + sys_corr_63: -2.0132353087043207 + sys_corr_64: 2.1990761456827315 + sys_corr_65: 1.3836234643548067 + sys_corr_66: -3.4765469842102186 + sys_corr_67: 1.46629545415312 + sys_corr_68: -0.8625213461252988 + sys_corr_69: -0.6066992203119461 + sys_corr_70: 1.261531030680064 + sys_corr_71: -0.39503528519026376 + sys_corr_72: -3.1137243114417332 + sys_corr_73: 1.662645356897005 + sys_corr_74: 0.11705086608706396 + sys_corr_75: -2.367312387840983 + sys_corr_76: -2.548206120555637 + sys_corr_77: 1.6261261163193736 + sys_corr_78: -0.8560358947599489 + sys_corr_79: -0.42693585794069466 + sys_corr_80: 12.900603475909854 + sys_corr_81: 1.3041908202119896 + sys_corr_82: -0.6440523380429558 + sys_corr_83: -0.6296708698565789 + sys_corr_84: -1.6658296302515432 + sys_corr_85: -0.8881380869267708 + sys_corr_86: -5.455179420098088 + sys_corr_87: -0.43956584822794614 + sys_corr_88: -4.447557110178939 + sys_corr_89: -3.9178052268620984 + sys_corr_90: -0.5123516685703605 + sys_corr_91: -1.1681485653362162 + sys_corr_92: 4.52011297624813 + sys_corr_93: 2.131397548639737 + sys_corr_94: 11.20481725715163 + sys_corr_95: -2.2455855202794828 + sys_corr_96: -1.6169517054774187 + sys_corr_97: -0.9429681835704246 + sys_corr_98: -7.007204402825501 + sys_corr_99: -7.872838508649177 + sys_corr_100: -1.9917539742707755 + sys_corr_101: -4.062122935166236 + sys_corr_102: 15.42402418083918 + sys_corr_103: 131.21293414244172 + sys_corr_104: -21.16000011934973 + sys_corr_105: -2.6023344462265947 + sys_corr_106: -1.6963105032411288 + sys_corr_107: -2.0277209648685 + sys_corr_108: 0.1715182525859547 + sys_corr_109: -0.27549086649033744 + sys_corr_110: 3.3279099315977683 + sys_corr_111: 0.3972229603363296 + sys_corr_112: -0.09317903426525363 + sys_corr_113: -0.30629142125632935 + sys_corr_114: -0.006888067765772804 + sys_corr_115: -0.10842149599001046 + sys_corr_116: 0.009918358768594185 + sys_corr_117: 0.022547742257603764 + sys_corr_118: -0.2609019697708898 + sys_corr_119: 0.013677805155231702 + sys_corr_120: -0.03952496247067843 + sys_corr_121: -0.017986796017781248 + sys_corr_122: -0.15197973297359738 + sys_corr_123: -0.08857480128220196 + sys_corr_124: -0.04161791091812028 + sys_corr_125: 0.11106109714258436 + sys_corr_126: -0.03669198491819626 + sys_corr_127: -4.117571607482476 + sys_corr_128: 0.8871918195066743 + sys_corr_129: -0.05229940311461383 + sys_corr_130: 0.0019371452525509315 + sys_corr_131: 0.0610208562876771 + sys_corr_132: -0.051881117280274995 stat: 0.0 luminosity: 35.797410000000006 -- sys_corr_1: 132.7836793233346 - sys_corr_2: 13.925521424414777 - sys_corr_3: 13.214456824197082 - sys_corr_4: 27.79229587731727 - sys_corr_5: -70.47692695223277 - sys_corr_6: -85.78969483333023 - sys_corr_7: 12.7669805192652 - sys_corr_8: 4.615437618818631 - sys_corr_9: -7.813212564859239 - sys_corr_10: 10.032212301588538 - sys_corr_11: 27.387563505525097 - sys_corr_12: 45.316033960118624 - sys_corr_13: 31.798774113380354 - sys_corr_14: -4.957742522812432 - sys_corr_15: -19.787017103242697 - sys_corr_16: 6.352600507448867 - sys_corr_17: -12.057198640426124 - sys_corr_18: 4.162735424676197 - sys_corr_19: 6.40327352645901 - sys_corr_20: 4.240243486918899 - sys_corr_21: 10.326046204846351 - sys_corr_22: 53.23443350432351 - sys_corr_23: -6.264655027307153 - sys_corr_24: 10.795703208368515 - sys_corr_25: -25.555638490592436 - sys_corr_26: -42.750314194882314 - sys_corr_27: 4.621469011140635 - sys_corr_28: -67.45570881650178 - sys_corr_29: 103.51029299211815 - sys_corr_30: 20.655518658328 - sys_corr_31: -33.18958504202722 - sys_corr_32: 10.296471403748575 - sys_corr_33: 9.893815307188929 - sys_corr_34: -23.295564407015018 - sys_corr_35: 2.7178905580962325 - sys_corr_36: 26.82173759355906 - sys_corr_37: 0.6448277011439657 - sys_corr_38: -2.1336310882061476 - sys_corr_39: -18.542073384057893 - sys_corr_40: -5.010127343505297 - sys_corr_41: -9.815306135699139 - sys_corr_42: 25.374108026109063 - sys_corr_43: 3.6089144809773184 - sys_corr_44: 60.93298928154441 - sys_corr_45: 7.769310893324283 - sys_corr_46: -9.74323592393775 - sys_corr_47: -32.01001501769523 - sys_corr_48: 28.424228049187874 - sys_corr_49: -49.65232241002507 - sys_corr_50: -26.100092266019832 - sys_corr_51: 7.89175612557788 - sys_corr_52: 0.26422600570921095 - sys_corr_53: 1.841327411415496 - sys_corr_54: -21.498419495213298 - sys_corr_55: -2.6057281229849774 - sys_corr_56: -4.583740373986911 - sys_corr_57: 8.82522426705738 - sys_corr_58: -1.8849256319711076 - sys_corr_59: -8.990083009898008 - sys_corr_60: -23.97656526646755 - sys_corr_61: 3.546627261033695 - sys_corr_62: 1.3477731721098165 - sys_corr_63: -2.4072974884177594 - sys_corr_64: -5.425555263736148 - sys_corr_65: -5.621534328820766 - sys_corr_66: 3.970075000035937 - sys_corr_67: 2.832706431898177 - sys_corr_68: -14.093995688292049 - sys_corr_69: 55.15851240380354 - sys_corr_70: -15.323438898334802 - sys_corr_71: 27.0277867296024 - sys_corr_72: 25.9587186418236 - sys_corr_73: -58.81607629392411 - sys_corr_74: 26.291999302674277 - sys_corr_75: 57.21446141815027 - sys_corr_76: 9.937516131496727 - sys_corr_77: -7.434639553479879 - sys_corr_78: 16.7431870296111 - sys_corr_79: -0.2752877642626616 - sys_corr_80: 0.776762589290406 - sys_corr_81: 15.251575892005247 - sys_corr_82: 175.27662275323726 - sys_corr_83: -38.29864073974693 - sys_corr_84: 2.7829070112320964 - sys_corr_85: -1.957025847145178 - sys_corr_86: -11.889117381726805 - sys_corr_87: -54.838414744037884 - sys_corr_88: 10.372346946461237 - sys_corr_89: 5.411290918071501 - sys_corr_90: -1.000970866250865 - sys_corr_91: 7.003102448036706 - sys_corr_92: -16.17015338755466 - sys_corr_93: 0.15900995501799114 - sys_corr_94: 2.5682488038365636 - sys_corr_95: 0.3593258570280156 - sys_corr_96: -0.22887311834445362 - sys_corr_97: -4.345323292086101 - sys_corr_98: 2.346648331937434 - sys_corr_99: -1.760070951630591 - sys_corr_100: -1.1882114473229068 - sys_corr_101: 0.8772509024609251 - sys_corr_102: -2.0250378502722595 - sys_corr_103: -1.4588072568543373 - sys_corr_104: -0.25438409449255706 - sys_corr_105: -3.3553867721450628 - sys_corr_106: 0.25995775834075885 - sys_corr_107: 0.19384943005223004 - sys_corr_108: 0.7601195813471975 - sys_corr_109: -0.6541336552536002 - sys_corr_110: 0.16133614996382292 - sys_corr_111: 0.46504107445158965 - sys_corr_112: -0.07033262751761958 - sys_corr_113: 0.2074686333324497 - sys_corr_114: 0.0021795406672003117 - sys_corr_115: 0.14742688520148256 - sys_corr_116: -0.0011993804853766524 - sys_corr_117: 0.017284033127980776 - sys_corr_118: -0.07498375957899642 - sys_corr_119: 0.00616287204006438 - sys_corr_120: -0.02942714615314627 - sys_corr_121: -0.011501371088826576 - sys_corr_122: 0.019626450818530334 - sys_corr_123: 0.023722413496420187 - sys_corr_124: 0.035973924442511435 - sys_corr_125: -0.05653291701412083 - sys_corr_126: -0.009453350908499933 - sys_corr_127: 0.4186032322637753 - sys_corr_128: 0.18468436060693086 - sys_corr_129: -0.03648892733237246 - sys_corr_130: -0.013653281315279502 - sys_corr_131: 0.03276279311778951 - sys_corr_132: -0.018823745454619196 +- sys_corr_1: 132.7836793233347 + sys_corr_2: 13.925521424414837 + sys_corr_3: 13.214456824197065 + sys_corr_4: 27.792295877317564 + sys_corr_5: -70.47692695223326 + sys_corr_6: -85.78969483333042 + sys_corr_7: 12.766980519265037 + sys_corr_8: 4.6154376188182065 + sys_corr_9: -7.813212564858955 + sys_corr_10: 10.032212301587416 + sys_corr_11: 27.387563505530412 + sys_corr_12: 45.31603396011806 + sys_corr_13: -31.798774113379853 + sys_corr_14: 4.957742522812082 + sys_corr_15: 19.787017103243112 + sys_corr_16: -6.352600507449342 + sys_corr_17: -12.057198640426616 + sys_corr_18: -4.162735424676812 + sys_corr_19: 6.403273526458643 + sys_corr_20: 4.240243486919062 + sys_corr_21: 10.32604620484561 + sys_corr_22: 53.23443350432402 + sys_corr_23: -6.264655027307457 + sys_corr_24: 10.795703208368973 + sys_corr_25: -25.55563849059241 + sys_corr_26: -42.75031419488164 + sys_corr_27: 4.621469011141766 + sys_corr_28: -67.4557088165027 + sys_corr_29: 103.51029299211541 + sys_corr_30: 20.65551865832792 + sys_corr_31: -33.1895850420271 + sys_corr_32: -10.296471403749823 + sys_corr_33: -9.893815307190234 + sys_corr_34: -23.295564407017398 + sys_corr_35: 2.7178905580913773 + sys_corr_36: 26.821737593559046 + sys_corr_37: -0.6448277011426292 + sys_corr_38: 2.1336310882071503 + sys_corr_39: 18.54207338405579 + sys_corr_40: 5.010127343506069 + sys_corr_41: -9.815306135699078 + sys_corr_42: -25.374108026111916 + sys_corr_43: 3.6089144809661846 + sys_corr_44: 60.93298928153769 + sys_corr_45: -7.769310893320473 + sys_corr_46: 9.74323592394127 + sys_corr_47: 32.01001501770545 + sys_corr_48: -28.424228049194163 + sys_corr_49: 49.65232241002492 + sys_corr_50: -26.100092266019544 + sys_corr_51: 7.891756125572173 + sys_corr_52: 0.26422600570480115 + sys_corr_53: -1.8413274114131253 + sys_corr_54: 21.498419495210243 + sys_corr_55: 2.6057281229793006 + sys_corr_56: 4.583740373983652 + sys_corr_57: 8.825224267052215 + sys_corr_58: 1.8849256319626515 + sys_corr_59: -8.990083009899003 + sys_corr_60: 23.976565266467066 + sys_corr_61: -3.5466272610340743 + sys_corr_62: -1.3477731721074708 + sys_corr_63: -2.4072974884107015 + sys_corr_64: -5.425555263736253 + sys_corr_65: -5.62153432882807 + sys_corr_66: -3.9700750000349725 + sys_corr_67: 2.8327064318911575 + sys_corr_68: 14.093995688313761 + sys_corr_69: 55.158512403805325 + sys_corr_70: 15.323438898300202 + sys_corr_71: 27.027786729609442 + sys_corr_72: -25.958718641825712 + sys_corr_73: 58.81607629392159 + sys_corr_74: 26.291999302665666 + sys_corr_75: 57.21446141814752 + sys_corr_76: 9.937516131536379 + sys_corr_77: 7.4346395534833505 + sys_corr_78: -0.7767625892890477 + sys_corr_79: 16.743187029609512 + sys_corr_80: -0.2752877642632397 + sys_corr_81: -15.251575892004388 + sys_corr_82: -175.27662275323607 + sys_corr_83: -38.2986407397491 + sys_corr_84: -2.7829070112317305 + sys_corr_85: -1.9570258471453104 + sys_corr_86: 11.8891173817421 + sys_corr_87: 54.838414744049985 + sys_corr_88: 10.372346946463733 + sys_corr_89: -1.0009708662507055 + sys_corr_90: 5.411290918071244 + sys_corr_91: 7.003102448037259 + sys_corr_92: 16.17015338755081 + sys_corr_93: 0.1590099550178378 + sys_corr_94: 2.568248803836319 + sys_corr_95: 0.35932585702856895 + sys_corr_96: 0.22887311834434096 + sys_corr_97: -4.345323292086341 + sys_corr_98: -2.346648331937596 + sys_corr_99: -1.7600709516306878 + sys_corr_100: 0.8772509024611674 + sys_corr_101: 2.0250378502729625 + sys_corr_102: -1.4588072568515122 + sys_corr_103: 0.25438409449281557 + sys_corr_104: 3.3553867721455104 + sys_corr_105: 1.1882114473230727 + sys_corr_106: 0.2599577583408015 + sys_corr_107: 0.7601195813471917 + sys_corr_108: -0.6541336552536287 + sys_corr_109: -0.16133614996384582 + sys_corr_110: -0.19384943005231592 + sys_corr_111: -0.46504107445159304 + sys_corr_112: -0.07033262751759545 + sys_corr_113: -0.20746863333242727 + sys_corr_114: 0.0021795406672002696 + sys_corr_115: 0.14742688520149794 + sys_corr_116: 0.001199380485377344 + sys_corr_117: -0.017284033127999664 + sys_corr_118: 0.07498375957901013 + sys_corr_119: -0.006162872040068715 + sys_corr_120: 0.029427146153165003 + sys_corr_121: 0.011501371088820113 + sys_corr_122: 0.02372241349641405 + sys_corr_123: 0.019626450818535035 + sys_corr_124: 0.03597392444251421 + sys_corr_125: -0.056532917014117154 + sys_corr_126: 0.009453350908500672 + sys_corr_127: 0.41860323226380786 + sys_corr_128: 0.1846843606069952 + sys_corr_129: -0.036488927332374244 + sys_corr_130: -0.013653281315286214 + sys_corr_131: -0.03276279311781086 + sys_corr_132: -0.018823745454633382 stat: 0.0 luminosity: 246.76720200000005 -- sys_corr_1: 128.8453156196431 - sys_corr_2: 20.497993068675044 - sys_corr_3: 5.664266670483394 - sys_corr_4: 25.941517793984513 - sys_corr_5: -61.1308329485238 - sys_corr_6: -91.77783476365222 - sys_corr_7: 12.65257829898473 - sys_corr_8: -0.1150633919461428 - sys_corr_9: -3.8994726893779315 - sys_corr_10: 8.808065562969231 - sys_corr_11: 23.05510323702871 - sys_corr_12: 44.33335286664069 - sys_corr_13: 23.766691973322292 - sys_corr_14: -1.5298766796667553 - sys_corr_15: -8.376468356086717 - sys_corr_16: 14.65524215985333 - sys_corr_17: -6.701707442488094 - sys_corr_18: 1.1362682604215446 - sys_corr_19: 4.652424910052844 - sys_corr_20: 5.812152998136695 - sys_corr_21: 8.225197245686863 - sys_corr_22: 40.40778374520284 - sys_corr_23: -5.256373801270935 - sys_corr_24: 1.8406197847007988 - sys_corr_25: -21.406216230861368 - sys_corr_26: -33.3790202525153 - sys_corr_27: 1.7471806878796547 - sys_corr_28: -69.6409964302971 - sys_corr_29: 102.36841806622586 - sys_corr_30: 18.855903038607444 - sys_corr_31: -38.4346670838554 - sys_corr_32: 1.6227123493663722 - sys_corr_33: 9.491558747660985 - sys_corr_34: -40.01248645788285 - sys_corr_35: 5.403265435538523 - sys_corr_36: -5.109942361580605 - sys_corr_37: -8.247743924735348 - sys_corr_38: 8.95860078420929 - sys_corr_39: -1.1004755452578012 - sys_corr_40: -0.005107539610522659 - sys_corr_41: -5.768543204300482 - sys_corr_42: 23.51909359836651 - sys_corr_43: -4.630516269557946 - sys_corr_44: 72.78729955167555 - sys_corr_45: 5.409934630314214 - sys_corr_46: -10.78421362130134 - sys_corr_47: -39.785365170052735 - sys_corr_48: 27.072900648206847 - sys_corr_49: -43.85663767147416 - sys_corr_50: -30.843540833000343 - sys_corr_51: 6.5310311299058235 - sys_corr_52: -2.271542267848176 - sys_corr_53: -3.6160395069783986 - sys_corr_54: -20.49686016237138 - sys_corr_55: 1.5821317724257238 - sys_corr_56: -3.3137653971330283 - sys_corr_57: 10.140108490456177 - sys_corr_58: -9.844345131570629 - sys_corr_59: -5.235558092747151 - sys_corr_60: -41.270754649204584 - sys_corr_61: -0.263300044916123 - sys_corr_62: -0.1321328361341629 - sys_corr_63: -10.254599076150052 - sys_corr_64: -3.8451948807724587 - sys_corr_65: -8.435732660737926 - sys_corr_66: -6.334145326834168 - sys_corr_67: -6.931830476017002 - sys_corr_68: -7.524660226920054 - sys_corr_69: 73.97335838450329 - sys_corr_70: -39.095547212782165 - sys_corr_71: 23.780584421646807 - sys_corr_72: 20.84645191823688 - sys_corr_73: -114.53595122319689 - sys_corr_74: 26.66645712438993 - sys_corr_75: 73.87071313649517 - sys_corr_76: 29.25929347565317 - sys_corr_77: 2.279954429180997 - sys_corr_78: -9.039135109390955 - sys_corr_79: 1.8414437023749026 - sys_corr_80: -1.6118044681652925 - sys_corr_81: -20.945555875702578 - sys_corr_82: -115.03910565148043 - sys_corr_83: 15.689354245150488 - sys_corr_84: -0.9237716162834878 - sys_corr_85: -1.6165158081396913 - sys_corr_86: -22.342270431669633 - sys_corr_87: 75.76767458662171 - sys_corr_88: -3.5394587526451122 - sys_corr_89: 3.2751126685688075 - sys_corr_90: 0.0994363369250007 - sys_corr_91: 3.1648709731988505 - sys_corr_92: -39.577159299447175 - sys_corr_93: 0.6373012220796275 - sys_corr_94: 1.3679699766762596 - sys_corr_95: -0.06386348080245748 - sys_corr_96: -0.6798358877935948 - sys_corr_97: -2.942573773828852 - sys_corr_98: 1.1491533060790498 - sys_corr_99: -1.7524498138632747 - sys_corr_100: -0.7809582587382596 - sys_corr_101: 0.4057842711616727 - sys_corr_102: -0.7605583563835968 - sys_corr_103: -3.296234157677998 - sys_corr_104: -0.4886745309598644 - sys_corr_105: -3.580280478682362 - sys_corr_106: -0.2232338397009998 - sys_corr_107: 0.3193793322788908 - sys_corr_108: 0.24897219269891763 - sys_corr_109: -0.5229431087253236 - sys_corr_110: 0.06875369830374259 - sys_corr_111: 0.18856717025070235 - sys_corr_112: -0.06640173467122815 - sys_corr_113: 0.13440138114402203 - sys_corr_114: 0.0020475452004169604 - sys_corr_115: 0.04608299785303065 - sys_corr_116: 0.05327667281142071 - sys_corr_117: 0.015198052598819407 - sys_corr_118: -0.04201041322218065 - sys_corr_119: 0.009403202817442446 - sys_corr_120: -0.03223212074584722 - sys_corr_121: -0.0061387563035906366 - sys_corr_122: 0.012655554237835756 - sys_corr_123: 0.013587124299298207 - sys_corr_124: -0.07088407529445757 - sys_corr_125: -0.02486522258920587 - sys_corr_126: -0.00366669325331722 - sys_corr_127: 0.253332141498149 - sys_corr_128: 0.034952192291194686 - sys_corr_129: -0.0657973042265813 - sys_corr_130: -0.013413045576236217 - sys_corr_131: 0.004543895581037427 - sys_corr_132: -0.02634922683153262 +- sys_corr_1: 128.84531561964317 + sys_corr_2: 20.497993068675118 + sys_corr_3: 5.664266670483364 + sys_corr_4: 25.94151779398484 + sys_corr_5: -61.13083294852417 + sys_corr_6: -91.77783476365235 + sys_corr_7: 12.652578298984796 + sys_corr_8: -0.11506339194633976 + sys_corr_9: -3.899472689377906 + sys_corr_10: 8.808065562968219 + sys_corr_11: 23.055103237033443 + sys_corr_12: 44.33335286663986 + sys_corr_13: -23.766691973322008 + sys_corr_14: 1.5298766796666843 + sys_corr_15: 8.376468356087083 + sys_corr_16: -14.655242159853561 + sys_corr_17: -6.70170744248855 + sys_corr_18: -1.136268260422153 + sys_corr_19: 4.652424910052652 + sys_corr_20: 5.8121529981368125 + sys_corr_21: 8.225197245686266 + sys_corr_22: 40.40778374520337 + sys_corr_23: -5.256373801271269 + sys_corr_24: 1.8406197847014574 + sys_corr_25: -21.406216230861396 + sys_corr_26: -33.379020252514536 + sys_corr_27: 1.7471806878805003 + sys_corr_28: -69.64099643029827 + sys_corr_29: 102.36841806622338 + sys_corr_30: 18.855903038607046 + sys_corr_31: -38.43466708385531 + sys_corr_32: -1.622712349370133 + sys_corr_33: -9.491558747665522 + sys_corr_34: -40.012486457884776 + sys_corr_35: 5.40326543553326 + sys_corr_36: -5.109942361579883 + sys_corr_37: 8.247743924734081 + sys_corr_38: -8.95860078421134 + sys_corr_39: 1.1004755452575468 + sys_corr_40: 0.005107539612005041 + sys_corr_41: -5.768543204302746 + sys_corr_42: -23.519093598367498 + sys_corr_43: -4.630516269566579 + sys_corr_44: 72.78729955166605 + sys_corr_45: -5.409934630309228 + sys_corr_46: 10.784213621305064 + sys_corr_47: 39.78536517006481 + sys_corr_48: -27.07290064821288 + sys_corr_49: 43.85663767147496 + sys_corr_50: -30.843540833000525 + sys_corr_51: 6.5310311299007155 + sys_corr_52: -2.2715422678519 + sys_corr_53: 3.6160395069786784 + sys_corr_54: 20.496860162372556 + sys_corr_55: -1.582131772430093 + sys_corr_56: 3.313765397127826 + sys_corr_57: 10.14010849045405 + sys_corr_58: 9.844345131566488 + sys_corr_59: -5.235558092757987 + sys_corr_60: 41.2707546492021 + sys_corr_61: 0.26330004491379705 + sys_corr_62: 0.13213283613552215 + sys_corr_63: -10.254599076141565 + sys_corr_64: -3.8451948807777487 + sys_corr_65: -8.435732660742383 + sys_corr_66: 6.33414532683028 + sys_corr_67: -6.931830476023354 + sys_corr_68: 7.524660226959797 + sys_corr_69: 73.97335838449685 + sys_corr_70: 39.095547212735305 + sys_corr_71: 23.780584421668852 + sys_corr_72: -20.846451918240383 + sys_corr_73: 114.53595122320046 + sys_corr_74: 26.666457124373846 + sys_corr_75: 73.87071313646746 + sys_corr_76: 29.25929347569541 + sys_corr_77: -2.2799544291811755 + sys_corr_78: 1.611804468163976 + sys_corr_79: -9.039135109389006 + sys_corr_80: 1.841443702374602 + sys_corr_81: 20.9455558757063 + sys_corr_82: 115.03910565147945 + sys_corr_83: 15.689354245155945 + sys_corr_84: 0.9237716162835314 + sys_corr_85: -1.616515808140337 + sys_corr_86: 22.342270431620303 + sys_corr_87: -75.76767458662876 + sys_corr_88: -3.539458752676244 + sys_corr_89: 0.09943633692496168 + sys_corr_90: 3.275112668568987 + sys_corr_91: 3.164870973198466 + sys_corr_92: 39.577159299442165 + sys_corr_93: 0.6373012220797208 + sys_corr_94: 1.3679699766770435 + sys_corr_95: -0.06386348080330696 + sys_corr_96: 0.6798358877934086 + sys_corr_97: -2.942573773828737 + sys_corr_98: -1.149153306079056 + sys_corr_99: -1.7524498138631595 + sys_corr_100: 0.4057842711620837 + sys_corr_101: 0.7605583563850851 + sys_corr_102: -3.296234157674767 + sys_corr_103: 0.48867453095993146 + sys_corr_104: 3.5802804786832487 + sys_corr_105: 0.780958258738444 + sys_corr_106: -0.22323383970075159 + sys_corr_107: 0.24897219269898105 + sys_corr_108: -0.5229431087252527 + sys_corr_109: -0.06875369830378911 + sys_corr_110: -0.3193793322790082 + sys_corr_111: -0.18856717025078568 + sys_corr_112: -0.06640173467122594 + sys_corr_113: -0.13440138114401842 + sys_corr_114: 0.0020475452004144173 + sys_corr_115: 0.0460829978530514 + sys_corr_116: -0.053276672811426014 + sys_corr_117: -0.015198052598807278 + sys_corr_118: 0.042010413222191956 + sys_corr_119: -0.009403202817444672 + sys_corr_120: 0.03223212074584699 + sys_corr_121: 0.006138756303586087 + sys_corr_122: 0.013587124299306414 + sys_corr_123: 0.01265555423783251 + sys_corr_124: -0.07088407529446106 + sys_corr_125: -0.024865222589205795 + sys_corr_126: 0.0036666932533208664 + sys_corr_127: 0.2533321414982516 + sys_corr_128: 0.03495219229117218 + sys_corr_129: -0.0657973042265885 + sys_corr_130: -0.013413045576232215 + sys_corr_131: -0.004543895581043775 + sys_corr_132: -0.026349226831535587 stat: 0.0 luminosity: 246.38728400000002 -- sys_corr_1: 122.69278957381945 - sys_corr_2: 20.706947542583425 - sys_corr_3: 3.162259617752145 - sys_corr_4: 19.50206826516153 - sys_corr_5: -72.39795561614439 - sys_corr_6: -61.11220312622253 - sys_corr_7: 15.358572308169055 - sys_corr_8: 9.384379908890045 - sys_corr_9: -3.4261476284592547 - sys_corr_10: 1.6330241645002237 - sys_corr_11: 31.103817409250368 - sys_corr_12: 52.32140324851679 - sys_corr_13: 25.09290879343739 - sys_corr_14: -5.003932534363427 - sys_corr_15: -15.417216221471655 - sys_corr_16: 7.715723779629984 - sys_corr_17: -5.415935064327607 - sys_corr_18: 6.981978677516765 - sys_corr_19: 5.620934950974276 - sys_corr_20: 4.503701689514756 - sys_corr_21: 10.573378138397313 - sys_corr_22: 58.15648427012758 - sys_corr_23: -2.9106417147808985 - sys_corr_24: 22.804416478981345 - sys_corr_25: -14.839526506308646 - sys_corr_26: -23.02901204929768 - sys_corr_27: 5.056300018971723 - sys_corr_28: -73.59226213029619 - sys_corr_29: 101.58111379818847 - sys_corr_30: 25.712257762419195 - sys_corr_31: -19.751848049657323 - sys_corr_32: 10.517767874827518 - sys_corr_33: 13.734238144227895 - sys_corr_34: -33.33832538207899 - sys_corr_35: -2.7359270973219494 - sys_corr_36: 20.765249643204733 - sys_corr_37: -2.8629463387296297 - sys_corr_38: -1.3089208190021326 - sys_corr_39: -10.5594401119079 - sys_corr_40: -10.302447678676035 - sys_corr_41: -17.58112342900405 - sys_corr_42: 34.479275647908274 - sys_corr_43: 0.07074680770694515 - sys_corr_44: 112.77975816341815 - sys_corr_45: 11.507692429584443 - sys_corr_46: -17.135427972153654 - sys_corr_47: -47.83895340805447 - sys_corr_48: 38.48570951230691 - sys_corr_49: -75.53070885457845 - sys_corr_50: -36.12417642008704 - sys_corr_51: -3.083030719657687 - sys_corr_52: -5.78863382732196 - sys_corr_53: 20.351566962471576 - sys_corr_54: -43.190139446299725 - sys_corr_55: -5.020836870783597 - sys_corr_56: -41.51399450448466 - sys_corr_57: 44.50328784773956 - sys_corr_58: 150.6779968376252 - sys_corr_59: 18.41338106449918 - sys_corr_60: 146.886141790669 - sys_corr_61: -40.951971882102335 - sys_corr_62: -6.4191180038940265 - sys_corr_63: 4.0689377181138005 - sys_corr_64: -3.0596402356853676 - sys_corr_65: 10.455286994948208 - sys_corr_66: 9.490635608639785 - sys_corr_67: 4.8388328143454125 - sys_corr_68: 19.382514683213603 - sys_corr_69: -63.848737013545644 - sys_corr_70: 33.99439190436773 - sys_corr_71: -35.80408502264142 - sys_corr_72: -11.243981519674087 - sys_corr_73: 30.530732060425244 - sys_corr_74: -4.529794564627956 - sys_corr_75: -4.7579286927538895 - sys_corr_76: -0.843399110523732 - sys_corr_77: 5.220073897587624 - sys_corr_78: 1.3323783120096804 - sys_corr_79: -0.24566691409099944 - sys_corr_80: -1.331322175355232 - sys_corr_81: -4.890667315615472 - sys_corr_82: -11.875617945406141 - sys_corr_83: 4.3266776668723255 - sys_corr_84: -0.35573934276642205 - sys_corr_85: -1.2187096281907976 - sys_corr_86: -1.3702185963917541 - sys_corr_87: 9.175287212581708 - sys_corr_88: -0.7763820441375519 - sys_corr_89: 1.3232391915949362 - sys_corr_90: -0.0453546012940186 - sys_corr_91: 0.8156949520583607 - sys_corr_92: 0.7559000972624892 - sys_corr_93: -0.3274572933342923 - sys_corr_94: 0.8421501579310976 - sys_corr_95: -0.13759216700988217 - sys_corr_96: -0.35360304364903483 - sys_corr_97: -1.2226625101591762 - sys_corr_98: 0.30987242009687566 - sys_corr_99: -0.5041115904359134 - sys_corr_100: -0.15275131471357523 - sys_corr_101: 0.1435399701145915 - sys_corr_102: -0.3680042689492193 - sys_corr_103: -1.1866712924609477 - sys_corr_104: 0.09031366878738271 - sys_corr_105: -1.3856123501913729 - sys_corr_106: -0.09029105466146996 - sys_corr_107: 0.058839738886028975 - sys_corr_108: -0.09637821135612251 - sys_corr_109: 0.02371756769707722 - sys_corr_110: -0.0514824640644805 - sys_corr_111: 0.1694426256968205 - sys_corr_112: -0.03607435321111288 - sys_corr_113: 0.03320862933383437 - sys_corr_114: 0.001781107576421199 - sys_corr_115: 0.12547703530067725 - sys_corr_116: 0.0619074195812675 - sys_corr_117: 0.021306310151121537 - sys_corr_118: -0.049653290999926616 - sys_corr_119: 0.0034515535841675615 - sys_corr_120: -0.008913077420959913 - sys_corr_121: 0.00024250841254389727 - sys_corr_122: -0.006745426310847646 - sys_corr_123: -0.018249953664264927 - sys_corr_124: -0.03672202584053949 - sys_corr_125: 2.890041651863078e-05 - sys_corr_126: 0.003293008882429815 - sys_corr_127: 0.4076118702627908 - sys_corr_128: 0.009863477484241209 - sys_corr_129: 0.0018380596372286565 - sys_corr_130: -0.0026441088819925164 - sys_corr_131: 0.013835922638197013 - sys_corr_132: -0.017388104051057104 +- sys_corr_1: 122.69278957381955 + sys_corr_2: 20.706947542583492 + sys_corr_3: 3.162259617752172 + sys_corr_4: 19.502068265161746 + sys_corr_5: -72.39795561614464 + sys_corr_6: -61.11220312622276 + sys_corr_7: 15.358572308168803 + sys_corr_8: 9.384379908889827 + sys_corr_9: -3.426147628458841 + sys_corr_10: 1.6330241644989028 + sys_corr_11: 31.103817409256187 + sys_corr_12: 52.32140324851579 + sys_corr_13: -25.092908793436965 + sys_corr_14: 5.003932534363069 + sys_corr_15: 15.417216221472133 + sys_corr_16: -7.71572377963002 + sys_corr_17: -5.415935064328141 + sys_corr_18: -6.9819786775171115 + sys_corr_19: 5.620934950973885 + sys_corr_20: 4.503701689515003 + sys_corr_21: 10.573378138396661 + sys_corr_22: 58.1564842701281 + sys_corr_23: -2.9106417147812644 + sys_corr_24: 22.804416478981558 + sys_corr_25: -14.839526506308843 + sys_corr_26: -23.029012049297553 + sys_corr_27: 5.056300018972368 + sys_corr_28: -73.59226213029737 + sys_corr_29: 101.58111379818612 + sys_corr_30: 25.712257762419018 + sys_corr_31: -19.751848049657525 + sys_corr_32: -10.517767874829964 + sys_corr_33: -13.734238144231327 + sys_corr_34: -33.33832538208153 + sys_corr_35: -2.7359270973279055 + sys_corr_36: 20.765249643204854 + sys_corr_37: 2.8629463387309655 + sys_corr_38: 1.3089208190028898 + sys_corr_39: 10.559440111904651 + sys_corr_40: 10.302447678679219 + sys_corr_41: -17.58112342900486 + sys_corr_42: -34.479275647912694 + sys_corr_43: 0.07074680769342155 + sys_corr_44: 112.77975816340768 + sys_corr_45: -11.507692429578917 + sys_corr_46: 17.13542797215798 + sys_corr_47: 47.838953408071994 + sys_corr_48: -38.48570951231685 + sys_corr_49: 75.53070885457964 + sys_corr_50: -36.124176420086776 + sys_corr_51: -3.083030719669922 + sys_corr_52: -5.788633827329006 + sys_corr_53: -20.351566962473118 + sys_corr_54: 43.19013944629373 + sys_corr_55: 5.020836870764339 + sys_corr_56: 41.5139945044861 + sys_corr_57: 44.503287847717715 + sys_corr_58: -150.677996837602 + sys_corr_59: 18.41338106463248 + sys_corr_60: -146.88614179068352 + sys_corr_61: 40.951971882097325 + sys_corr_62: 6.4191180038812785 + sys_corr_63: 4.068937718105121 + sys_corr_64: -3.059640235677393 + sys_corr_65: 10.455286994943911 + sys_corr_66: -9.490635608636515 + sys_corr_67: 4.838832814358338 + sys_corr_68: -19.38251468325005 + sys_corr_69: -63.848737013541694 + sys_corr_70: -33.99439190433227 + sys_corr_71: -35.80408502264906 + sys_corr_72: 11.243981519672971 + sys_corr_73: -30.530732060423002 + sys_corr_74: -4.529794564627517 + sys_corr_75: -4.757928692753979 + sys_corr_76: -0.843399110526586 + sys_corr_77: -5.22007389758692 + sys_corr_78: 1.3313221753558597 + sys_corr_79: 1.3323783120092922 + sys_corr_80: -0.24566691409046387 + sys_corr_81: 4.890667315614832 + sys_corr_82: 11.875617945406242 + sys_corr_83: 4.326677666872948 + sys_corr_84: 0.35573934276609687 + sys_corr_85: -1.2187096281909233 + sys_corr_86: 1.3702185963899585 + sys_corr_87: -9.175287212582695 + sys_corr_88: -0.7763820441409802 + sys_corr_89: -0.045354601293941886 + sys_corr_90: 1.3232391915948245 + sys_corr_91: 0.8156949520582626 + sys_corr_92: -0.7559000972633066 + sys_corr_93: -0.32745729333431595 + sys_corr_94: 0.8421501579313107 + sys_corr_95: -0.13759216700985352 + sys_corr_96: 0.3536030436489751 + sys_corr_97: -1.2226625101593978 + sys_corr_98: -0.30987242009695315 + sys_corr_99: -0.5041115904359864 + sys_corr_100: 0.14353997011460412 + sys_corr_101: 0.36800426894951316 + sys_corr_102: -1.186671292460611 + sys_corr_103: -0.09031366878712967 + sys_corr_104: 1.3856123501921165 + sys_corr_105: 0.15275131471355868 + sys_corr_106: -0.0902910546614953 + sys_corr_107: -0.09637821135608846 + sys_corr_108: 0.023717567697119885 + sys_corr_109: 0.051482464064484305 + sys_corr_110: -0.05883973888614161 + sys_corr_111: -0.16944262569685883 + sys_corr_112: -0.036074353211109855 + sys_corr_113: -0.03320862933382766 + sys_corr_114: 0.0017811075764188316 + sys_corr_115: 0.1254770353006879 + sys_corr_116: -0.061907419581252086 + sys_corr_117: -0.021306310151125073 + sys_corr_118: 0.049653290999916465 + sys_corr_119: -0.0034515535841676864 + sys_corr_120: 0.008913077420958504 + sys_corr_121: -0.0002425084125438593 + sys_corr_122: -0.018249953664264018 + sys_corr_123: -0.006745426310839248 + sys_corr_124: -0.03672202584052932 + sys_corr_125: 2.890041652733674e-05 + sys_corr_126: -0.0032930088824233436 + sys_corr_127: 0.4076118702628002 + sys_corr_128: 0.009863477484253319 + sys_corr_129: 0.0018380596372354109 + sys_corr_130: -0.002644108881983335 + sys_corr_131: -0.013835922638197638 + sys_corr_132: -0.017388104051051515 stat: 0.0 luminosity: 243.12714800000003 -- sys_corr_1: 123.44679076284997 - sys_corr_2: 29.56373887535141 - sys_corr_3: -5.563875799572624 - sys_corr_4: 25.532797980138056 - sys_corr_5: -57.733894936266054 - sys_corr_6: -79.21498736571282 - sys_corr_7: 19.453252611476014 - sys_corr_8: 2.4307607333785315 - sys_corr_9: 2.9813799957095424 - sys_corr_10: 4.551357189847917 - sys_corr_11: 30.139946045695343 - sys_corr_12: 47.755915180439786 - sys_corr_13: 30.69985443138513 - sys_corr_14: -6.749898877528517 - sys_corr_15: -18.7282937555448 - sys_corr_16: 7.298402504471087 - sys_corr_17: -7.809983049263256 - sys_corr_18: 3.9391744036487917 - sys_corr_19: 4.834678737278898 - sys_corr_20: 5.6165273229032096 - sys_corr_21: 11.76384987204668 - sys_corr_22: 48.71890598447961 - sys_corr_23: -3.3084678679053634 - sys_corr_24: 12.049243778454574 - sys_corr_25: -10.716093559189186 - sys_corr_26: -12.891033170567853 - sys_corr_27: -0.9937443416152038 - sys_corr_28: -63.959802129852015 - sys_corr_29: 89.71384466241804 - sys_corr_30: 30.38050087889139 - sys_corr_31: -22.080949065253773 - sys_corr_32: 12.547944134506789 - sys_corr_33: 7.9158567386259495 - sys_corr_34: -25.425067513695737 - sys_corr_35: 1.1824120043261523 - sys_corr_36: 26.54350683832132 - sys_corr_37: 10.523696996169464 - sys_corr_38: -3.697534477918443 - sys_corr_39: -19.635174896881615 - sys_corr_40: -5.025337686782058 - sys_corr_41: -18.459002646433962 - sys_corr_42: 30.85907242973536 - sys_corr_43: -1.7668810090902847 - sys_corr_44: 84.49044392614078 - sys_corr_45: 10.743556127106785 - sys_corr_46: -7.574459877294486 - sys_corr_47: -40.26979474968316 - sys_corr_48: 25.125799886002003 - sys_corr_49: -57.76619593246809 - sys_corr_50: -39.15049866432871 - sys_corr_51: -7.162467673273561 - sys_corr_52: -0.30621607888554575 - sys_corr_53: 5.325614064109045 - sys_corr_54: -23.989781515205816 - sys_corr_55: -0.9134345566040016 - sys_corr_56: -3.948497718167707 - sys_corr_57: 17.503388024746883 - sys_corr_58: -72.25412402745808 - sys_corr_59: -14.72787239959195 - sys_corr_60: -166.05313417845701 - sys_corr_61: 58.01271995215115 - sys_corr_62: -15.154354023437897 - sys_corr_63: -12.178094086223517 - sys_corr_64: -15.463015849972363 - sys_corr_65: -27.66911008270073 - sys_corr_66: 30.13512801582109 - sys_corr_67: 6.562442411387777 - sys_corr_68: 41.78873790263234 - sys_corr_69: -119.13593324765885 - sys_corr_70: 47.747527497598405 - sys_corr_71: -45.55209602654497 - sys_corr_72: -27.670179717761084 - sys_corr_73: 54.93622449216773 - sys_corr_74: -5.574309383696038 - sys_corr_75: -8.658611428726362 - sys_corr_76: -2.2287708938735973 - sys_corr_77: 5.082228905421978 - sys_corr_78: 6.426776415083193 - sys_corr_79: 1.935109008438161 - sys_corr_80: -3.918323894598459 - sys_corr_81: -2.7492032526990307 - sys_corr_82: -6.234342728758034 - sys_corr_83: 2.297718151375997 - sys_corr_84: -3.760164425316525 - sys_corr_85: 0.8303499401190997 - sys_corr_86: -1.7966811036142778 - sys_corr_87: 8.676956901572241 - sys_corr_88: 0.6088190153315521 - sys_corr_89: 1.3889710820761254 - sys_corr_90: 0.4591449898785371 - sys_corr_91: -0.0010575655821554598 - sys_corr_92: 3.1755476431516017 - sys_corr_93: 0.36993686435759315 - sys_corr_94: 0.23330397829288094 - sys_corr_95: 0.48317757664841543 - sys_corr_96: -0.16770632667288504 - sys_corr_97: -2.009187262102901 - sys_corr_98: 0.3441358290983036 - sys_corr_99: -0.5825298776130511 - sys_corr_100: -0.4108430399867688 - sys_corr_101: 0.337675987262271 - sys_corr_102: -0.6860710762022659 - sys_corr_103: -1.2495329899982353 - sys_corr_104: -0.055879184394215284 - sys_corr_105: -1.4737447286569894 - sys_corr_106: -0.050148041899880175 - sys_corr_107: 0.27366672403481473 - sys_corr_108: 0.12599356540342302 - sys_corr_109: -0.15171406855233863 - sys_corr_110: 0.13381144686014637 - sys_corr_111: 0.21417732176303234 - sys_corr_112: -0.06502712373203423 - sys_corr_113: 0.13978625525232616 - sys_corr_114: 0.0015988440685068017 - sys_corr_115: 0.07772781360029901 - sys_corr_116: 0.023913148120361032 - sys_corr_117: 0.02623740268055842 - sys_corr_118: -0.01714313016941896 - sys_corr_119: 0.0032360425070588126 - sys_corr_120: -0.02304370302098001 - sys_corr_121: -0.0023199034282014616 - sys_corr_122: -0.001123907153301388 - sys_corr_123: 0.00863348960963125 - sys_corr_124: -0.005818367988879185 - sys_corr_125: -0.003935975246653018 - sys_corr_126: 0.01172257441917731 - sys_corr_127: 0.31055259837961924 - sys_corr_128: -0.003991788406489001 - sys_corr_129: -0.00491573915528234 - sys_corr_130: -0.0013017729745019033 - sys_corr_131: 0.0036157523236037617 - sys_corr_132: -0.002353207729140084 +- sys_corr_1: 123.4467907628497 + sys_corr_2: 29.56373887535152 + sys_corr_3: -5.563875799572598 + sys_corr_4: 25.532797980138213 + sys_corr_5: -57.733894936266566 + sys_corr_6: -79.21498736571303 + sys_corr_7: 19.453252611475982 + sys_corr_8: 2.430760733378797 + sys_corr_9: 2.9813799957097737 + sys_corr_10: 4.551357189846316 + sys_corr_11: 30.139946045700658 + sys_corr_12: 47.755915180438734 + sys_corr_13: -30.69985443138459 + sys_corr_14: 6.749898877528208 + sys_corr_15: 18.72829375554514 + sys_corr_16: -7.298402504471517 + sys_corr_17: -7.8099830492634785 + sys_corr_18: -3.9391744036493677 + sys_corr_19: 4.834678737278194 + sys_corr_20: 5.616527322903544 + sys_corr_21: 11.763849872046025 + sys_corr_22: 48.718905984479875 + sys_corr_23: -3.30846786790539 + sys_corr_24: 12.049243778454853 + sys_corr_25: -10.7160935591894 + sys_corr_26: -12.891033170567567 + sys_corr_27: -0.9937443416148907 + sys_corr_28: -63.959802129852804 + sys_corr_29: 89.7138446624155 + sys_corr_30: 30.380500878890363 + sys_corr_31: -22.08094906525357 + sys_corr_32: -12.547944134509198 + sys_corr_33: -7.915856738627245 + sys_corr_34: -25.425067513699485 + sys_corr_35: 1.1824120043208521 + sys_corr_36: 26.543506838322468 + sys_corr_37: -10.523696996168546 + sys_corr_38: 3.697534477920033 + sys_corr_39: 19.63517489687782 + sys_corr_40: 5.025337686784274 + sys_corr_41: -18.459002646435597 + sys_corr_42: -30.85907242973927 + sys_corr_43: -1.7668810091022797 + sys_corr_44: 84.49044392613253 + sys_corr_45: -10.743556127105172 + sys_corr_46: 7.574459877298673 + sys_corr_47: 40.269794749697276 + sys_corr_48: -25.12579988601064 + sys_corr_49: 57.76619593246896 + sys_corr_50: -39.150498664330144 + sys_corr_51: -7.162467673278849 + sys_corr_52: -0.30621607888976543 + sys_corr_53: -5.325614064107705 + sys_corr_54: 23.989781515199883 + sys_corr_55: 0.9134345565986126 + sys_corr_56: 3.9484977181665153 + sys_corr_57: 17.503388024746343 + sys_corr_58: 72.25412402743488 + sys_corr_59: -14.727872399666314 + sys_corr_60: 166.0531341784706 + sys_corr_61: -58.01271995214767 + sys_corr_62: 15.154354023458092 + sys_corr_63: -12.178094086204712 + sys_corr_64: -15.463015849979039 + sys_corr_65: -27.669110082710823 + sys_corr_66: -30.135128015821724 + sys_corr_67: 6.562442411411551 + sys_corr_68: -41.7887379027002 + sys_corr_69: -119.13593324765029 + sys_corr_70: -47.74752749753578 + sys_corr_71: -45.552096026562715 + sys_corr_72: 27.670179717759154 + sys_corr_73: -54.93622449216422 + sys_corr_74: -5.57430938369761 + sys_corr_75: -8.658611428725328 + sys_corr_76: -2.2287708938764457 + sys_corr_77: -5.082228905421097 + sys_corr_78: 3.9183238945982857 + sys_corr_79: 6.426776415082986 + sys_corr_80: 1.935109008438431 + sys_corr_81: 2.74920325269946 + sys_corr_82: 6.234342728758016 + sys_corr_83: 2.297718151376731 + sys_corr_84: 3.7601644253159328 + sys_corr_85: 0.8303499401191734 + sys_corr_86: 1.7966811036192694 + sys_corr_87: -8.67695690157299 + sys_corr_88: 0.6088190153290131 + sys_corr_89: 0.4591449898785588 + sys_corr_90: 1.3889710820763699 + sys_corr_91: -0.0010575655823706525 + sys_corr_92: -3.17554764315388 + sys_corr_93: 0.3699368643576233 + sys_corr_94: 0.23330397829302832 + sys_corr_95: 0.4831775766482298 + sys_corr_96: 0.16770632667282176 + sys_corr_97: -2.009187262102733 + sys_corr_98: -0.3441358290981982 + sys_corr_99: -0.5825298776129987 + sys_corr_100: 0.33767598726237896 + sys_corr_101: 0.6860710762027278 + sys_corr_102: -1.2495329899971537 + sys_corr_103: 0.05587918439431619 + sys_corr_104: 1.4737447286574141 + sys_corr_105: 0.4108430399868132 + sys_corr_106: -0.050148041899839804 + sys_corr_107: 0.12599356540342435 + sys_corr_108: -0.1517140685524195 + sys_corr_109: -0.13381144686012428 + sys_corr_110: -0.2736667240349111 + sys_corr_111: -0.2141773217630151 + sys_corr_112: -0.06502712373202942 + sys_corr_113: -0.1397862552523171 + sys_corr_114: 0.0015988440685088235 + sys_corr_115: 0.07772781360030237 + sys_corr_116: -0.02391314812034015 + sys_corr_117: -0.026237402680558627 + sys_corr_118: 0.017143130169418073 + sys_corr_119: -0.003236042507058288 + sys_corr_120: 0.023043703020977656 + sys_corr_121: 0.002319903428198275 + sys_corr_122: 0.008633489609631438 + sys_corr_123: -0.0011239071533171588 + sys_corr_124: -0.0058183679888647475 + sys_corr_125: -0.003935975246659694 + sys_corr_126: -0.011722574419180454 + sys_corr_127: 0.3105525983796548 + sys_corr_128: -0.003991788406450845 + sys_corr_129: -0.004915739155266339 + sys_corr_130: -0.001301772974502113 + sys_corr_131: -0.0036157523236058117 + sys_corr_132: -0.0023532077291439305 stat: 0.0 luminosity: 249.60493800000003 -- sys_corr_1: 109.46582923677916 - sys_corr_2: 37.831230549617274 - sys_corr_3: -12.567754072807443 - sys_corr_4: 11.302234252904041 - sys_corr_5: -55.5788450907253 - sys_corr_6: -52.1462325728431 - sys_corr_7: 18.167975377727995 - sys_corr_8: 10.152229742676377 - sys_corr_9: 2.962999629641961 - sys_corr_10: 6.443842552800106 - sys_corr_11: 26.241564078359737 - sys_corr_12: 40.15110043379012 - sys_corr_13: 29.03046099096732 - sys_corr_14: -2.603901675116014 - sys_corr_15: -4.5040559228930865 - sys_corr_16: 6.526456215079393 - sys_corr_17: -2.022965509608561 - sys_corr_18: 8.258097488274746 - sys_corr_19: 7.5724381940483205 - sys_corr_20: 2.872473750461709 - sys_corr_21: 10.64380041793142 - sys_corr_22: 25.329111217245778 - sys_corr_23: -2.5396133300066057 - sys_corr_24: 26.495342357041356 - sys_corr_25: 2.3719478398237728 - sys_corr_26: 14.776423565046048 - sys_corr_27: -2.540892026444252 - sys_corr_28: -82.51012468264565 - sys_corr_29: 113.56844059879748 - sys_corr_30: 1.862282747035554 - sys_corr_31: -19.216305307337343 - sys_corr_32: 18.71772174844367 - sys_corr_33: 38.171252640707884 - sys_corr_34: -195.36061470116994 - sys_corr_35: 39.797214862646534 - sys_corr_36: 222.2733410824191 - sys_corr_37: -195.66792322401048 - sys_corr_38: -14.361146673022525 - sys_corr_39: 97.31764614373219 - sys_corr_40: 28.850480903473915 - sys_corr_41: 34.57933739986848 - sys_corr_42: -63.16713094149236 - sys_corr_43: 3.983021176610289 - sys_corr_44: -83.99286759711471 - sys_corr_45: -14.688593578829886 - sys_corr_46: 12.044664525941196 - sys_corr_47: 31.78483102425378 - sys_corr_48: -10.809710058339485 - sys_corr_49: 27.143589984961242 - sys_corr_50: 16.314906342115933 - sys_corr_51: 10.043773061217783 - sys_corr_52: -1.3487918927214189 - sys_corr_53: -4.878804428594486 - sys_corr_54: 3.888225397811577 - sys_corr_55: 3.7188433916287646 - sys_corr_56: 3.1992730419111535 - sys_corr_57: 2.0547304525008765 - sys_corr_58: 2.3242506601136235 - sys_corr_59: 0.9952832868923115 - sys_corr_60: 2.265607921832003 - sys_corr_61: -0.21166867280739904 - sys_corr_62: -3.137080396445587 - sys_corr_63: -1.0966035994015315 - sys_corr_64: -1.0726397944600918 - sys_corr_65: -1.011585940316656 - sys_corr_66: 4.564255956694792 - sys_corr_67: 2.4866300269539896 - sys_corr_68: 5.5370322854595075 - sys_corr_69: -6.88035752418324 - sys_corr_70: 4.121507743354506 - sys_corr_71: -5.812351619696683 - sys_corr_72: -1.4444188295297025 - sys_corr_73: 3.265298544353795 - sys_corr_74: 0.4416998211652292 - sys_corr_75: -0.6054935656231829 - sys_corr_76: 0.7376829866790922 - sys_corr_77: 1.2927829450365793 - sys_corr_78: -0.08876993639513706 - sys_corr_79: 0.006194530247338005 - sys_corr_80: -0.6803269007869258 - sys_corr_81: -0.5396435287934629 - sys_corr_82: -2.413089013406403 - sys_corr_83: 0.19012706618954905 - sys_corr_84: -1.2096853304235213 - sys_corr_85: -1.6063071001143985 - sys_corr_86: -0.47953131139105865 - sys_corr_87: 0.9461084025049242 - sys_corr_88: 0.32065082250175136 - sys_corr_89: 0.07343869584276257 - sys_corr_90: 0.06909230987000943 - sys_corr_91: -0.6503761842325148 - sys_corr_92: 0.1745836623447198 - sys_corr_93: -0.12348667672622109 - sys_corr_94: -0.11785700710040163 - sys_corr_95: 0.44248916438323554 - sys_corr_96: -0.07326017415682264 - sys_corr_97: -0.433631955527389 - sys_corr_98: 0.2124378765886012 - sys_corr_99: -0.17317126221131543 - sys_corr_100: -0.040768365767333045 - sys_corr_101: -0.04857004817838476 - sys_corr_102: 0.004608415902610683 - sys_corr_103: -1.0318535617923086 - sys_corr_104: -0.17717724800919882 - sys_corr_105: -0.5446480568468347 - sys_corr_106: -0.03221945776720115 - sys_corr_107: 0.26993116178291476 - sys_corr_108: 0.1022773806064536 - sys_corr_109: -0.07054969252686538 - sys_corr_110: 0.12101534329382735 - sys_corr_111: 0.020975185078761147 - sys_corr_112: -0.015763770411222865 - sys_corr_113: 0.01511304776789555 - sys_corr_114: 0.0009592168928477948 - sys_corr_115: -0.001960274195773381 - sys_corr_116: 0.019604894355565606 - sys_corr_117: 0.00792889466984194 - sys_corr_118: 0.01073852966049709 - sys_corr_119: 0.0014563359850732263 - sys_corr_120: -0.008650211790630972 - sys_corr_121: 0.0008611397366110639 - sys_corr_122: -0.006929761162730947 - sys_corr_123: -0.013385202155060933 - sys_corr_124: -0.004405125729209734 - sys_corr_125: 0.000890045843946635 - sys_corr_126: 0.003987369584210487 - sys_corr_127: 0.1353664740451425 - sys_corr_128: -0.022402930016284427 - sys_corr_129: 0.010714997022151083 - sys_corr_130: -0.0012005468178374608 - sys_corr_131: -0.005815582724060474 - sys_corr_132: -0.00220912585942847 +- sys_corr_1: 109.46582923677903 + sys_corr_2: 37.83123054961732 + sys_corr_3: -12.567754072807446 + sys_corr_4: 11.302234252904126 + sys_corr_5: -55.578845090725444 + sys_corr_6: -52.14623257284312 + sys_corr_7: 18.167975377727767 + sys_corr_8: 10.15222974267654 + sys_corr_9: 2.9629996296421983 + sys_corr_10: 6.4438425527987295 + sys_corr_11: 26.241564078364313 + sys_corr_12: 40.15110043378917 + sys_corr_13: -29.030460990967057 + sys_corr_14: 2.603901675115728 + sys_corr_15: 4.504055922893425 + sys_corr_16: -6.526456215079508 + sys_corr_17: -2.0229655096090884 + sys_corr_18: -8.258097488274897 + sys_corr_19: 7.57243819404783 + sys_corr_20: 2.872473750462054 + sys_corr_21: 10.643800417930718 + sys_corr_22: 25.329111217245938 + sys_corr_23: -2.5396133300069113 + sys_corr_24: 26.495342357041704 + sys_corr_25: 2.371947839823719 + sys_corr_26: 14.776423565045942 + sys_corr_27: -2.540892026444544 + sys_corr_28: -82.51012468264578 + sys_corr_29: 113.56844059879477 + sys_corr_30: 1.862282747035845 + sys_corr_31: -19.21630530733835 + sys_corr_32: -18.717721748456 + sys_corr_33: -38.17125264072804 + sys_corr_34: -195.36061470117363 + sys_corr_35: 39.79721486262271 + sys_corr_36: 222.2733410824055 + sys_corr_37: 195.66792322402802 + sys_corr_38: 14.361146673005043 + sys_corr_39: -97.31764614370628 + sys_corr_40: -28.85048090348427 + sys_corr_41: 34.579337399873026 + sys_corr_42: 63.16713094150328 + sys_corr_43: 3.9830211766373806 + sys_corr_44: -83.99286759711102 + sys_corr_45: 14.688593578827394 + sys_corr_46: -12.044664525945782 + sys_corr_47: -31.78483102426459 + sys_corr_48: 10.809710058343052 + sys_corr_49: -27.14358998496444 + sys_corr_50: 16.314906342115876 + sys_corr_51: 10.043773061222044 + sys_corr_52: -1.3487918927214495 + sys_corr_53: 4.878804428595263 + sys_corr_54: -3.8882253978108716 + sys_corr_55: -3.718843391626542 + sys_corr_56: -3.1992730419103963 + sys_corr_57: 2.0547304525018686 + sys_corr_58: -2.324250660113176 + sys_corr_59: 0.995283286895197 + sys_corr_60: -2.265607921831891 + sys_corr_61: 0.21166867280807097 + sys_corr_62: 3.137080396444909 + sys_corr_63: -1.0966035994023273 + sys_corr_64: -1.0726397944604729 + sys_corr_65: -1.0115859403168537 + sys_corr_66: -4.564255956696072 + sys_corr_67: 2.486630026956677 + sys_corr_68: -5.537032285464933 + sys_corr_69: -6.880357524182232 + sys_corr_70: -4.121507743350747 + sys_corr_71: -5.812351619697671 + sys_corr_72: 1.4444188295296918 + sys_corr_73: -3.2652985443529703 + sys_corr_74: 0.44169982116498513 + sys_corr_75: -0.6054935656241899 + sys_corr_76: 0.7376829866786244 + sys_corr_77: -1.292782945036437 + sys_corr_78: 0.6803269007870382 + sys_corr_79: -0.08876993639504155 + sys_corr_80: 0.006194530247309749 + sys_corr_81: 0.5396435287934167 + sys_corr_82: 2.413089013406371 + sys_corr_83: 0.19012706618962405 + sys_corr_84: 1.2096853304236292 + sys_corr_85: -1.606307100114306 + sys_corr_86: 0.4795313113910896 + sys_corr_87: -0.9461084025052421 + sys_corr_88: 0.3206508225004924 + sys_corr_89: 0.06909230987009377 + sys_corr_90: 0.07343869584270876 + sys_corr_91: -0.6503761842324765 + sys_corr_92: -0.17458366234479739 + sys_corr_93: -0.12348667672623378 + sys_corr_94: -0.11785700710052187 + sys_corr_95: 0.44248916438327296 + sys_corr_96: 0.07326017415682336 + sys_corr_97: -0.43363195552738515 + sys_corr_98: -0.21243787658859029 + sys_corr_99: -0.17317126221133747 + sys_corr_100: -0.04857004817831258 + sys_corr_101: -0.004608415902247363 + sys_corr_102: -1.0318535617919398 + sys_corr_103: 0.17717724800929785 + sys_corr_104: 0.5446480568472527 + sys_corr_105: 0.04076836576737518 + sys_corr_106: -0.03221945776717314 + sys_corr_107: 0.10227738060646059 + sys_corr_108: -0.07054969252686415 + sys_corr_109: -0.12101534329383958 + sys_corr_110: -0.26993116178296767 + sys_corr_111: -0.020975185078755305 + sys_corr_112: -0.015763770411233644 + sys_corr_113: -0.015113047767906318 + sys_corr_114: 0.0009592168928469347 + sys_corr_115: -0.0019602741957668395 + sys_corr_116: -0.0196048943555699 + sys_corr_117: -0.007928894669839376 + sys_corr_118: -0.010738529660504805 + sys_corr_119: -0.0014563359850725372 + sys_corr_120: 0.008650211790628175 + sys_corr_121: -0.0008611397366099444 + sys_corr_122: -0.013385202155070665 + sys_corr_123: -0.006929761162733832 + sys_corr_124: -0.004405125729211557 + sys_corr_125: 0.0008900458439484012 + sys_corr_126: -0.003987369584212022 + sys_corr_127: 0.13536647404514374 + sys_corr_128: -0.022402930016281384 + sys_corr_129: 0.010714997022143843 + sys_corr_130: -0.001200546817837725 + sys_corr_131: 0.005815582724064342 + sys_corr_132: -0.0022091258594246752 stat: 0.0 luminosity: 234.78083200000003 -- sys_corr_1: 126.80308877539076 - sys_corr_2: 57.29654296585698 - sys_corr_3: -2.4710364234401307 - sys_corr_4: 9.615614754566343 - sys_corr_5: -56.32750330952012 - sys_corr_6: -83.35784991769566 - sys_corr_7: 19.786451288170525 - sys_corr_8: 11.049764829167458 - sys_corr_9: 7.084330932492359 - sys_corr_10: 3.592880123207299 - sys_corr_11: 28.808411534962026 - sys_corr_12: 49.64125076672242 - sys_corr_13: 29.81327150414234 - sys_corr_14: -6.620635596213765 - sys_corr_15: -21.600584996773826 - sys_corr_16: 17.87934472903985 - sys_corr_17: -3.445265064108179 - sys_corr_18: 8.004726526325337 - sys_corr_19: 6.953532756465839 - sys_corr_20: 4.292975016749997 - sys_corr_21: 4.808041080849163 - sys_corr_22: 18.978463423474 - sys_corr_23: -6.437152422385587 - sys_corr_24: 32.80521131135842 - sys_corr_25: 1.8980748950765596 - sys_corr_26: 11.584997657274178 - sys_corr_27: -8.087628135296276 - sys_corr_28: -56.234573078492346 - sys_corr_29: 80.36663326546268 - sys_corr_30: -20.619237888513776 - sys_corr_31: 1.088837427138136 - sys_corr_32: 12.636609152844304 - sys_corr_33: 10.815795348237245 - sys_corr_34: -18.048783955338713 - sys_corr_35: 16.146296344418055 - sys_corr_36: 10.88540144448849 - sys_corr_37: -0.9853451585851588 - sys_corr_38: 0.03470676434549628 - sys_corr_39: 0.6571065867848428 - sys_corr_40: -4.607760349677598 - sys_corr_41: -3.106739885976361 - sys_corr_42: 20.460161242149848 - sys_corr_43: -8.21924846360035 - sys_corr_44: 57.699835581884166 - sys_corr_45: 4.2643774050109196 - sys_corr_46: -0.3135966645789562 - sys_corr_47: -24.844858438198422 - sys_corr_48: 18.34524030152356 - sys_corr_49: -29.453520928965244 - sys_corr_50: -26.582061860064528 - sys_corr_51: -8.378672680894411 - sys_corr_52: -1.3880102817156588 - sys_corr_53: 5.676974659910974 - sys_corr_54: -3.6946371787574535 - sys_corr_55: -6.071518922421971 - sys_corr_56: -4.064288805572063 - sys_corr_57: -10.800885956174223 - sys_corr_58: -15.533583467888494 - sys_corr_59: -0.7560537512724503 - sys_corr_60: -16.281831716719307 - sys_corr_61: -0.37775867938228447 - sys_corr_62: 2.356608928061182 - sys_corr_63: 3.072118532211679 - sys_corr_64: 6.945503855324504 - sys_corr_65: -1.0685778636062984 - sys_corr_66: -37.87824210225169 - sys_corr_67: -17.585027574547496 - sys_corr_68: -39.155014452670834 - sys_corr_69: 50.38277186540229 - sys_corr_70: -27.272886803675014 - sys_corr_71: 34.297026537995045 - sys_corr_72: -1.3537655016191164 - sys_corr_73: -12.020233707372464 - sys_corr_74: -7.32788154922778 - sys_corr_75: -75.69274086399683 - sys_corr_76: 21.557112755312577 - sys_corr_77: 20.118677689084855 - sys_corr_78: 3.347634138537813 - sys_corr_79: 0.857482827850076 - sys_corr_80: -7.378960605843355 - sys_corr_81: -55.415583642692056 - sys_corr_82: -34.110557198688916 - sys_corr_83: 30.518313946795733 - sys_corr_84: -1.5078929602496918 - sys_corr_85: -8.152251774950876 - sys_corr_86: 71.17327957580235 - sys_corr_87: -96.07460066691877 - sys_corr_88: -25.42130788250333 - sys_corr_89: 0.5557961477414656 - sys_corr_90: -0.36704842718669334 - sys_corr_91: -5.903127698378902 - sys_corr_92: 140.93203250017402 - sys_corr_93: -0.9102443833048934 - sys_corr_94: -2.5557821813806214 - sys_corr_95: 3.7194481801451045 - sys_corr_96: -0.01689110610897373 - sys_corr_97: -0.5245111165703198 - sys_corr_98: 0.6417316253458675 - sys_corr_99: -0.4557978953858368 - sys_corr_100: -0.307527639546071 - sys_corr_101: 0.05272891227661572 - sys_corr_102: -0.058792634798580976 - sys_corr_103: -0.7571537053718869 - sys_corr_104: -0.7054263738740746 - sys_corr_105: -0.5340853463676363 - sys_corr_106: -0.07234926615390189 - sys_corr_107: 0.12128595654026418 - sys_corr_108: 0.2520653150490544 - sys_corr_109: -0.5856576082068191 - sys_corr_110: 0.28277982665944734 - sys_corr_111: 0.06806440418038581 - sys_corr_112: -0.2858043993181766 - sys_corr_113: 0.24294149856276948 - sys_corr_114: 0.004295502224548267 - sys_corr_115: 0.01651479894693059 - sys_corr_116: 0.03946958148148968 - sys_corr_117: 0.052951750690569906 - sys_corr_118: 0.03539939304108983 - sys_corr_119: 0.0062327752102547184 - sys_corr_120: -0.02607633225419053 - sys_corr_121: 0.0038707213318446786 - sys_corr_122: -0.014667592207843458 - sys_corr_123: -0.012954888456574791 - sys_corr_124: -0.07491168423903276 - sys_corr_125: -0.009156345900215924 - sys_corr_126: 0.01576025998927895 - sys_corr_127: -0.09008326908449225 - sys_corr_128: 0.05714801872504911 - sys_corr_129: -0.04676250987258397 - sys_corr_130: 0.0020210055466824716 - sys_corr_131: 0.003159861163661792 - sys_corr_132: 0.05262848031468562 +- sys_corr_1: 126.80308877539103 + sys_corr_2: 57.29654296585701 + sys_corr_3: -2.4710364234401148 + sys_corr_4: 9.615614754566549 + sys_corr_5: -56.327503309520665 + sys_corr_6: -83.35784991769576 + sys_corr_7: 19.78645128817049 + sys_corr_8: 11.049764829167653 + sys_corr_9: 7.084330932492724 + sys_corr_10: 3.5928801232055827 + sys_corr_11: 28.80841153496755 + sys_corr_12: 49.64125076672141 + sys_corr_13: -29.813271504141515 + sys_corr_14: 6.620635596213588 + sys_corr_15: 21.600584996774252 + sys_corr_16: -17.87934472903987 + sys_corr_17: -3.4452650641087432 + sys_corr_18: -8.004726526326019 + sys_corr_19: 6.953532756465618 + sys_corr_20: 4.292975016750246 + sys_corr_21: 4.808041080848625 + sys_corr_22: 18.978463423474377 + sys_corr_23: -6.437152422385746 + sys_corr_24: 32.80521131135845 + sys_corr_25: 1.898074895076479 + sys_corr_26: 11.584997657274354 + sys_corr_27: -8.087628135296459 + sys_corr_28: -56.234573078492105 + sys_corr_29: 80.36663326546093 + sys_corr_30: -20.619237888513467 + sys_corr_31: 1.0888374271377081 + sys_corr_32: -12.636609152847608 + sys_corr_33: -10.81579534823856 + sys_corr_34: -18.04878395534113 + sys_corr_35: 16.146296344414722 + sys_corr_36: 10.885401444489611 + sys_corr_37: 0.9853451585857415 + sys_corr_38: -0.034706764345336726 + sys_corr_39: -0.6571065867859185 + sys_corr_40: 4.607760349679665 + sys_corr_41: -3.1067398859788176 + sys_corr_42: -20.46016124215135 + sys_corr_43: -8.219248463607826 + sys_corr_44: 57.69983558187832 + sys_corr_45: -4.264377405011216 + sys_corr_46: 0.31359666458178714 + sys_corr_47: 24.84485843820749 + sys_corr_48: -18.34524030152886 + sys_corr_49: 29.453520928965737 + sys_corr_50: -26.582061860065366 + sys_corr_51: -8.378672680898593 + sys_corr_52: -1.388010281715014 + sys_corr_53: -5.676974659910692 + sys_corr_54: 3.6946371787548427 + sys_corr_55: 6.07151892242008 + sys_corr_56: 4.064288805571956 + sys_corr_57: -10.800885956175042 + sys_corr_58: 15.533583467887588 + sys_corr_59: -0.7560537512870225 + sys_corr_60: 16.281831716719964 + sys_corr_61: 0.37775867938138313 + sys_corr_62: -2.3566089280605333 + sys_corr_63: 3.072118532211994 + sys_corr_64: 6.945503855322612 + sys_corr_65: -1.0685778636012575 + sys_corr_66: 37.878242102253914 + sys_corr_67: -17.585027574572283 + sys_corr_68: 39.15501445271453 + sys_corr_69: 50.38277186539245 + sys_corr_70: 27.27288680365433 + sys_corr_71: 34.29702653799385 + sys_corr_72: 1.353765501627376 + sys_corr_73: 12.020233707371954 + sys_corr_74: -7.327881549203512 + sys_corr_75: -75.69274086402395 + sys_corr_76: 21.55711275524521 + sys_corr_77: -20.11867768908212 + sys_corr_78: 7.378960605844887 + sys_corr_79: 3.34763413853433 + sys_corr_80: 0.8574828278535679 + sys_corr_81: 55.415583642686855 + sys_corr_82: 34.11055719869352 + sys_corr_83: 30.518313946802184 + sys_corr_84: 1.5078929602499829 + sys_corr_85: -8.152251774951527 + sys_corr_86: -71.17327957567625 + sys_corr_87: 96.07460066692222 + sys_corr_88: -25.421307882397002 + sys_corr_89: -0.3670484271862077 + sys_corr_90: 0.5557961477408064 + sys_corr_91: -5.903127698379325 + sys_corr_92: -140.93203250015154 + sys_corr_93: -0.9102443833047587 + sys_corr_94: -2.5557821813812085 + sys_corr_95: 3.719448180144842 + sys_corr_96: 0.0168911061091171 + sys_corr_97: -0.5245111165704655 + sys_corr_98: -0.6417316253458895 + sys_corr_99: -0.45579789538594334 + sys_corr_100: 0.05272891227664643 + sys_corr_101: 0.05879263479872161 + sys_corr_102: -0.7571537053723572 + sys_corr_103: 0.7054263738744406 + sys_corr_104: 0.5340853463682479 + sys_corr_105: 0.30752763954607065 + sys_corr_106: -0.0723492661538915 + sys_corr_107: 0.25206531504906793 + sys_corr_108: -0.585657608206783 + sys_corr_109: -0.28277982665950374 + sys_corr_110: -0.12128595654039709 + sys_corr_111: -0.06806440418045334 + sys_corr_112: -0.285804399318226 + sys_corr_113: -0.24294149856276867 + sys_corr_114: 0.004295502224546507 + sys_corr_115: 0.016514798946963363 + sys_corr_116: -0.03946958148152209 + sys_corr_117: -0.052951750690589175 + sys_corr_118: -0.03539939304107335 + sys_corr_119: -0.006232775210257768 + sys_corr_120: 0.026076332254178203 + sys_corr_121: -0.003870721331840801 + sys_corr_122: -0.012954888456561514 + sys_corr_123: -0.014667592207829521 + sys_corr_124: -0.07491168423905789 + sys_corr_125: -0.009156345900232784 + sys_corr_126: -0.015760259989275098 + sys_corr_127: -0.09008326908453312 + sys_corr_128: 0.0571480187250734 + sys_corr_129: -0.046762509872546966 + sys_corr_130: 0.002021005546697443 + sys_corr_131: -0.003159861163662729 + sys_corr_132: 0.05262848031465891 stat: 0.0 luminosity: 257.28879 -- sys_corr_1: 127.11600779189547 - sys_corr_2: 56.59612914580542 - sys_corr_3: -3.9468339997787694 - sys_corr_4: 13.488628853862087 - sys_corr_5: -39.69750500533355 - sys_corr_6: -97.87457925369108 - sys_corr_7: 25.807761247081896 - sys_corr_8: 6.823628493120486 - sys_corr_9: 10.928244645715768 - sys_corr_10: 3.8929905075636286 - sys_corr_11: 26.280189849647112 - sys_corr_12: 43.054820186263846 - sys_corr_13: 20.740033251449766 - sys_corr_14: -3.615065048299162 - sys_corr_15: -9.418958466039879 - sys_corr_16: 5.3772382379643435 - sys_corr_17: -1.4876284517899812 - sys_corr_18: -2.928178910378709 - sys_corr_19: 6.109173382091251 - sys_corr_20: -0.5829011801998546 - sys_corr_21: 4.960008434136636 - sys_corr_22: -9.966660099322423 - sys_corr_23: -6.746461059143983 - sys_corr_24: 35.60581688722431 - sys_corr_25: 7.325131060590918 - sys_corr_26: 18.95371432638221 - sys_corr_27: -9.740552917303026 - sys_corr_28: -44.40650115710522 - sys_corr_29: 65.18123194712989 - sys_corr_30: -28.34398883780232 - sys_corr_31: 2.923961393812946 - sys_corr_32: 16.793819537763614 - sys_corr_33: -2.631893752252165 - sys_corr_34: -22.47249596708223 - sys_corr_35: -5.841434996633613 - sys_corr_36: 18.935424930493927 - sys_corr_37: 1.2640996004719436 - sys_corr_38: -4.7604842412661235 - sys_corr_39: -14.82334513054968 - sys_corr_40: -5.728580192398811 - sys_corr_41: -2.3635510315523907 - sys_corr_42: 18.213611275139737 - sys_corr_43: -2.932632233774975 - sys_corr_44: 40.36879782114081 - sys_corr_45: 10.223953468226506 - sys_corr_46: 5.5921321713819045 - sys_corr_47: -21.781956164058105 - sys_corr_48: 8.192731240632291 - sys_corr_49: -28.76177907004149 - sys_corr_50: -28.438137388639444 - sys_corr_51: -6.6933608435729814 - sys_corr_52: -3.53055227751009 - sys_corr_53: 8.006709160204423 - sys_corr_54: 2.295492101483208 - sys_corr_55: -12.692082778453193 - sys_corr_56: -1.8046558775537387 - sys_corr_57: -14.138994677704755 - sys_corr_58: -9.689021745055614 - sys_corr_59: 11.400298229466548 - sys_corr_60: -10.439915785678465 - sys_corr_61: 12.877792849439773 - sys_corr_62: -8.270342602508828 - sys_corr_63: 9.82215453108458 - sys_corr_64: 13.530851057342492 - sys_corr_65: -1.3585806639609925 - sys_corr_66: -20.198558297445416 - sys_corr_67: -27.011116071254808 - sys_corr_68: -68.58179183505307 - sys_corr_69: 59.67531291893509 - sys_corr_70: -37.0818372310719 - sys_corr_71: 71.40291641333752 - sys_corr_72: 6.979939225049071 - sys_corr_73: 98.59426065571004 - sys_corr_74: -81.24984829688965 - sys_corr_75: -66.77845749090523 - sys_corr_76: -52.95859319340354 - sys_corr_77: 10.365180986514774 - sys_corr_78: -8.215660158099597 - sys_corr_79: -14.092938672113142 - sys_corr_80: -5.366881489376913 - sys_corr_81: -15.067881686514298 - sys_corr_82: -17.101647174725375 - sys_corr_83: -4.141524780353482 - sys_corr_84: -2.5734299123915068 - sys_corr_85: -2.596347858118011 - sys_corr_86: -50.2968721250966 - sys_corr_87: -25.943918135987534 - sys_corr_88: 27.975857661027497 - sys_corr_89: -1.4483137204017271 - sys_corr_90: -0.8772655474955621 - sys_corr_91: -3.015777233303877 - sys_corr_92: -121.41650733517383 - sys_corr_93: -0.5372468372993826 - sys_corr_94: -1.6870496061373703 - sys_corr_95: 2.3907007674156455 - sys_corr_96: -0.15946063469462562 - sys_corr_97: 1.284551428815266 - sys_corr_98: -0.19543938660106874 - sys_corr_99: 0.5778903294714415 - sys_corr_100: 0.20013720530593015 - sys_corr_101: -0.10323131969163155 - sys_corr_102: 0.5313883189455056 - sys_corr_103: -0.9984751041825731 - sys_corr_104: -0.424023421463998 - sys_corr_105: -0.04770556165571608 - sys_corr_106: -0.1964063462292036 - sys_corr_107: -0.21159155618136857 - sys_corr_108: -0.1524395597354668 - sys_corr_109: -0.3874422204585472 - sys_corr_110: 0.4253157182597856 - sys_corr_111: -0.072378262525487 - sys_corr_112: -0.21715129193570654 - sys_corr_113: 0.22276691336990287 - sys_corr_114: 0.002095684841903944 - sys_corr_115: -0.04646360750681443 - sys_corr_116: 0.044475554839494134 - sys_corr_117: 0.060028447879032394 - sys_corr_118: -0.024453557013940926 - sys_corr_119: -0.006165948444865298 - sys_corr_120: -0.01887598745870197 - sys_corr_121: -0.0008693498757279292 - sys_corr_122: -0.016634836626174026 - sys_corr_123: 8.937470987589753e-05 - sys_corr_124: -0.0696037792526969 - sys_corr_125: -0.005452448644480353 - sys_corr_126: 0.0060210389656197676 - sys_corr_127: 0.10682921894661908 - sys_corr_128: 0.13340014408954803 - sys_corr_129: -0.09888349172501619 - sys_corr_130: -0.008523635486801988 - sys_corr_131: 0.022616830534944128 - sys_corr_132: 0.03676754412139328 +- sys_corr_1: 127.1160077918955 + sys_corr_2: 56.59612914580558 + sys_corr_3: -3.946833999778853 + sys_corr_4: 13.4886288538622 + sys_corr_5: -39.6975050053339 + sys_corr_6: -97.87457925369124 + sys_corr_7: 25.80776124708193 + sys_corr_8: 6.823628493120954 + sys_corr_9: 10.928244645715976 + sys_corr_10: 3.8929905075619637 + sys_corr_11: 26.280189849651755 + sys_corr_12: 43.05482018626281 + sys_corr_13: -20.740033251449432 + sys_corr_14: 3.6150650482990225 + sys_corr_15: 9.418958466040289 + sys_corr_16: -5.377238237964275 + sys_corr_17: -1.4876284517902987 + sys_corr_18: 2.928178910378293 + sys_corr_19: 6.109173382091196 + sys_corr_20: -0.5829011801997825 + sys_corr_21: 4.960008434136541 + sys_corr_22: -9.96666009932233 + sys_corr_23: -6.746461059143992 + sys_corr_24: 35.6058168872248 + sys_corr_25: 7.3251310605912225 + sys_corr_26: 18.953714326382674 + sys_corr_27: -9.740552917303225 + sys_corr_28: -44.406501157104714 + sys_corr_29: 65.18123194712778 + sys_corr_30: -28.34398883780176 + sys_corr_31: 2.9239613938126037 + sys_corr_32: -16.793819537768197 + sys_corr_33: 2.6318937522488883 + sys_corr_34: -22.472495967083965 + sys_corr_35: -5.841434996639286 + sys_corr_36: 18.935424930493326 + sys_corr_37: -1.2640996004703495 + sys_corr_38: 4.7604842412661235 + sys_corr_39: 14.823345130547763 + sys_corr_40: 5.728580192398781 + sys_corr_41: -2.36355103155216 + sys_corr_42: -18.213611275139836 + sys_corr_43: -2.93263223378349 + sys_corr_44: 40.368797821136255 + sys_corr_45: -10.223953468230953 + sys_corr_46: -5.592132171377403 + sys_corr_47: 21.78195616406523 + sys_corr_48: -8.1927312406374 + sys_corr_49: 28.761779070041985 + sys_corr_50: -28.438137388640577 + sys_corr_51: -6.693360843575672 + sys_corr_52: -3.530552277507232 + sys_corr_53: -8.006709160203824 + sys_corr_54: -2.295492101484729 + sys_corr_55: 12.692082778454697 + sys_corr_56: 1.8046558775564354 + sys_corr_57: -14.138994677707855 + sys_corr_58: 9.689021745060243 + sys_corr_59: 11.400298229455284 + sys_corr_60: 10.439915785684773 + sys_corr_61: -12.877792849439599 + sys_corr_62: 8.270342602512025 + sys_corr_63: 9.822154531077397 + sys_corr_64: 13.530851057343682 + sys_corr_65: -1.358580663948169 + sys_corr_66: 20.198558297458803 + sys_corr_67: -27.011116071288367 + sys_corr_68: 68.58179183509407 + sys_corr_69: 59.67531291892441 + sys_corr_70: 37.08183723104488 + sys_corr_71: 71.40291641333796 + sys_corr_72: -6.979939225043054 + sys_corr_73: -98.59426065572507 + sys_corr_74: -81.24984829688123 + sys_corr_75: -66.77845749086178 + sys_corr_76: -52.958593193421365 + sys_corr_77: -10.365180986519563 + sys_corr_78: 5.366881489377697 + sys_corr_79: -8.215660158099414 + sys_corr_80: -14.092938672115134 + sys_corr_81: 15.067881686511797 + sys_corr_82: 17.10164717472356 + sys_corr_83: -4.141524780352442 + sys_corr_84: 2.573429912391606 + sys_corr_85: -2.5963478581180017 + sys_corr_86: 50.29687212496867 + sys_corr_87: 25.943918135977974 + sys_corr_88: 27.97585766091729 + sys_corr_89: -0.8772655474952908 + sys_corr_90: -1.4483137204017875 + sys_corr_91: -3.015777233303822 + sys_corr_92: 121.41650733516097 + sys_corr_93: -0.5372468372993737 + sys_corr_94: -1.6870496061379296 + sys_corr_95: 2.3907007674154386 + sys_corr_96: 0.15946063469468716 + sys_corr_97: 1.2845514288154987 + sys_corr_98: 0.19543938660118065 + sys_corr_99: 0.5778903294715502 + sys_corr_100: -0.10323131969151858 + sys_corr_101: -0.5313883189452538 + sys_corr_102: -0.9984751041826929 + sys_corr_103: 0.42402342146402067 + sys_corr_104: 0.04770556165614289 + sys_corr_105: -0.20013720530600687 + sys_corr_106: -0.196406346229189 + sys_corr_107: -0.15243955973548665 + sys_corr_108: -0.3874422204585658 + sys_corr_109: -0.4253157182597556 + sys_corr_110: 0.21159155618134268 + sys_corr_111: 0.07237826252552997 + sys_corr_112: -0.2171512919356819 + sys_corr_113: -0.22276691336991453 + sys_corr_114: 0.002095684841900901 + sys_corr_115: -0.04646360750682934 + sys_corr_116: -0.0444755548394945 + sys_corr_117: -0.06002844787901681 + sys_corr_118: 0.02445355701392611 + sys_corr_119: 0.006165948444870556 + sys_corr_120: 0.018875987458704623 + sys_corr_121: 0.0008693498757224504 + sys_corr_122: 8.937470985873133e-05 + sys_corr_123: -0.016634836626179525 + sys_corr_124: -0.06960377925267643 + sys_corr_125: -0.00545244864447644 + sys_corr_126: -0.006021038965612055 + sys_corr_127: 0.10682921894675487 + sys_corr_128: 0.13340014408951445 + sys_corr_129: -0.09888349172502182 + sys_corr_130: -0.008523635486807804 + sys_corr_131: -0.02261683053492555 + sys_corr_132: 0.03676754412141848 stat: 0.0 luminosity: 252.72341600000001 -- sys_corr_1: 122.66423460639814 - sys_corr_2: 52.2539221465476 - sys_corr_3: -11.385078460450433 - sys_corr_4: 0.9483900247345536 - sys_corr_5: -17.498120666090312 - sys_corr_6: -104.37338875547667 - sys_corr_7: 28.8540199001526 - sys_corr_8: 10.518133778889997 - sys_corr_9: 14.671253034343199 - sys_corr_10: -2.6870115822451894 - sys_corr_11: 25.338767037796075 - sys_corr_12: 32.46234893105758 - sys_corr_13: 26.382461248508005 - sys_corr_14: -8.715113736758317 - sys_corr_15: -9.356875762570553 - sys_corr_16: 5.250475375616417 - sys_corr_17: 2.5319301618536842 - sys_corr_18: 3.3394390110549077 - sys_corr_19: -1.1266930659735206 - sys_corr_20: -3.292136540731006 - sys_corr_21: 3.164962586984483 - sys_corr_22: -32.39269049808907 - sys_corr_23: -8.264795556619923 - sys_corr_24: 22.912428091490938 - sys_corr_25: 8.979292530990161 - sys_corr_26: 22.065389277327842 - sys_corr_27: -13.90846516447875 - sys_corr_28: -30.892681322145574 - sys_corr_29: 49.98930526071644 - sys_corr_30: -55.312834678354236 - sys_corr_31: 19.232092438664154 - sys_corr_32: 15.814981023455113 - sys_corr_33: -4.969156341579677 - sys_corr_34: -11.237405961701256 - sys_corr_35: 3.488161938850644 - sys_corr_36: 11.178034839273076 - sys_corr_37: -13.598512383925916 - sys_corr_38: 5.080901024449621 - sys_corr_39: 10.37420599554422 - sys_corr_40: -25.34632059010013 - sys_corr_41: -3.6441238224826584 - sys_corr_42: 51.94122198531132 - sys_corr_43: -18.42482042702501 - sys_corr_44: 56.53921812612652 - sys_corr_45: -1.1013842164309744 - sys_corr_46: 13.165704471698083 - sys_corr_47: -16.13356707595509 - sys_corr_48: 41.133828345409 - sys_corr_49: -13.977656569569994 - sys_corr_50: -2.6750829178909967 - sys_corr_51: -0.8426174001777416 - sys_corr_52: -11.911295561561388 - sys_corr_53: 16.884396153335427 - sys_corr_54: 60.99587276371187 - sys_corr_55: 17.42355373942879 - sys_corr_56: 35.517129612592804 - sys_corr_57: -154.65679814944633 - sys_corr_58: -127.9794062453944 - sys_corr_59: -93.72074831268422 - sys_corr_60: 116.80134655854852 - sys_corr_61: -1.0698251120969666 - sys_corr_62: 70.81243239490065 - sys_corr_63: 20.85594644927154 - sys_corr_64: -14.605760223406703 - sys_corr_65: -4.311227698255556 - sys_corr_66: 6.616549204570833 - sys_corr_67: 26.022014562233583 - sys_corr_68: 14.472151750162809 - sys_corr_69: -33.03673041684105 - sys_corr_70: 13.853754482302463 - sys_corr_71: -10.246738881222797 - sys_corr_72: -8.558500332941513 - sys_corr_73: -6.504096945894859 - sys_corr_74: 1.4025606312832588 - sys_corr_75: 18.245456756278717 - sys_corr_76: -6.623895515340581 - sys_corr_77: 20.083898633587054 - sys_corr_78: -12.507153160431201 - sys_corr_79: 1.4648100136366837 - sys_corr_80: -3.4656719597033185 - sys_corr_81: 1.5161247529299728 - sys_corr_82: -0.9950026350884612 - sys_corr_83: -0.7820216067080347 - sys_corr_84: -4.467624495400768 - sys_corr_85: 0.868495272716367 - sys_corr_86: 2.37039122488242 - sys_corr_87: 0.7029492574544455 - sys_corr_88: -5.086346902595325 - sys_corr_89: -0.31845951427463187 - sys_corr_90: -1.5435475685518558 - sys_corr_91: 0.8433315790322287 - sys_corr_92: -13.166230132823845 - sys_corr_93: -0.0180854840927019 - sys_corr_94: 0.15066945641758778 - sys_corr_95: 0.8907271785645023 - sys_corr_96: -0.12807543909122804 - sys_corr_97: 0.542037819654255 - sys_corr_98: -0.2050629842863636 - sys_corr_99: 0.039001263640984676 - sys_corr_100: 0.24838619127198913 - sys_corr_101: -0.28612988808205997 - sys_corr_102: 0.6676588393286994 - sys_corr_103: -0.5074915517215309 - sys_corr_104: -0.5180009376524528 - sys_corr_105: -0.5554197986686733 - sys_corr_106: -0.315493210365139 - sys_corr_107: 0.0008019324647387088 - sys_corr_108: -0.15344759514883444 - sys_corr_109: 0.07439312900254227 - sys_corr_110: 0.19132448947031053 - sys_corr_111: -0.10230436039613303 - sys_corr_112: -0.08419500114020284 - sys_corr_113: 0.10145185292834578 - sys_corr_114: 0.0011402987649664729 - sys_corr_115: 0.01292776145695375 - sys_corr_116: 0.02972554410828836 - sys_corr_117: 0.03212944482759476 - sys_corr_118: -0.0698683056097402 - sys_corr_119: -0.007488513284251264 - sys_corr_120: -0.017442596705982742 - sys_corr_121: -0.00043685707119145 - sys_corr_122: -0.001532709245429556 - sys_corr_123: 0.005399456198859266 - sys_corr_124: -0.03162877368420756 - sys_corr_125: -0.003889162666287119 - sys_corr_126: 0.0013555172299389536 - sys_corr_127: 0.4147324161997038 - sys_corr_128: 0.12716289552918544 - sys_corr_129: -0.06431185566231915 - sys_corr_130: -0.004751186175901537 - sys_corr_131: 0.011295334061623651 - sys_corr_132: 0.016032536956968664 +- sys_corr_1: 122.66423460639811 + sys_corr_2: 52.25392214654779 + sys_corr_3: -11.38507846045054 + sys_corr_4: 0.9483900247346211 + sys_corr_5: -17.498120666090706 + sys_corr_6: -104.37338875547678 + sys_corr_7: 28.854019900152565 + sys_corr_8: 10.518133778890673 + sys_corr_9: 14.671253034343476 + sys_corr_10: -2.6870115822467957 + sys_corr_11: 25.33876703779946 + sys_corr_12: 32.462348931056376 + sys_corr_13: -26.382461248507514 + sys_corr_14: 8.715113736758287 + sys_corr_15: 9.356875762570711 + sys_corr_16: -5.2504753756166584 + sys_corr_17: 2.5319301618535714 + sys_corr_18: -3.339439011054929 + sys_corr_19: -1.126693065973811 + sys_corr_20: -3.2921365407307728 + sys_corr_21: 3.164962586984595 + sys_corr_22: -32.392690498089 + sys_corr_23: -8.26479555662024 + sys_corr_24: 22.9124280914912 + sys_corr_25: 8.979292530990262 + sys_corr_26: 22.06538927732768 + sys_corr_27: -13.908465164479374 + sys_corr_28: -30.892681322145393 + sys_corr_29: 49.989305260715895 + sys_corr_30: -55.312834678353376 + sys_corr_31: 19.232092438663226 + sys_corr_32: -15.814981023457205 + sys_corr_33: 4.969156341575906 + sys_corr_34: -11.237405961706315 + sys_corr_35: 3.4881619388477505 + sys_corr_36: 11.178034839270122 + sys_corr_37: 13.598512383923463 + sys_corr_38: -5.0809010244491315 + sys_corr_39: -10.374205995543633 + sys_corr_40: 25.346320590102675 + sys_corr_41: -3.6441238224851165 + sys_corr_42: -51.941221985310236 + sys_corr_43: -18.42482042705013 + sys_corr_44: 56.53921812611778 + sys_corr_45: 1.101384216419297 + sys_corr_46: -13.165704471698376 + sys_corr_47: 16.13356707596573 + sys_corr_48: -41.133828345410805 + sys_corr_49: 13.977656569566319 + sys_corr_50: -2.675082917890874 + sys_corr_51: -0.8426174001822193 + sys_corr_52: -11.911295561556022 + sys_corr_53: -16.884396153340184 + sys_corr_54: -60.99587276370022 + sys_corr_55: -17.42355373941419 + sys_corr_56: -35.51712961261277 + sys_corr_57: -154.6567981494166 + sys_corr_58: 127.97940624533399 + sys_corr_59: -93.7207483127768 + sys_corr_60: -116.80134655855238 + sys_corr_61: 1.0698251120992794 + sys_corr_62: -70.81243239489679 + sys_corr_63: 20.855946449279468 + sys_corr_64: -14.60576022340967 + sys_corr_65: -4.311227698276402 + sys_corr_66: -6.61654920456647 + sys_corr_67: 26.022014562244156 + sys_corr_68: -14.472151750190006 + sys_corr_69: -33.03673041683601 + sys_corr_70: -13.853754482289382 + sys_corr_71: -10.246738881223665 + sys_corr_72: 8.558500332941666 + sys_corr_73: 6.504096945895516 + sys_corr_74: 1.402560631274943 + sys_corr_75: 18.24545675628856 + sys_corr_76: -6.623895515329334 + sys_corr_77: -20.08389863358573 + sys_corr_78: 3.4656719597050176 + sys_corr_79: -12.507153160430809 + sys_corr_80: 1.4648100136384454 + sys_corr_81: -1.5161247529304922 + sys_corr_82: 0.9950026350877842 + sys_corr_83: -0.7820216067082691 + sys_corr_84: 4.467624495398418 + sys_corr_85: 0.868495272715542 + sys_corr_86: -2.370391224902065 + sys_corr_87: -0.7029492574548364 + sys_corr_88: -5.0863469025930375 + sys_corr_89: -1.5435475685515863 + sys_corr_90: -0.31845951427456853 + sys_corr_91: 0.8433315790317413 + sys_corr_92: 13.166230132825332 + sys_corr_93: -0.018085484092684817 + sys_corr_94: 0.15066945641772156 + sys_corr_95: 0.8907271785640871 + sys_corr_96: 0.12807543909123142 + sys_corr_97: 0.5420378196544018 + sys_corr_98: 0.20506298428640105 + sys_corr_99: 0.03900126364101785 + sys_corr_100: -0.2861298880820012 + sys_corr_101: -0.6676588393284897 + sys_corr_102: -0.5074915517212151 + sys_corr_103: 0.5180009376525203 + sys_corr_104: 0.55541979866877 + sys_corr_105: -0.24838619127199793 + sys_corr_106: -0.3154932103650909 + sys_corr_107: -0.15344759514885226 + sys_corr_108: 0.07439312900259824 + sys_corr_109: -0.1913244894702964 + sys_corr_110: -0.0008019324647451087 + sys_corr_111: 0.10230436039610641 + sys_corr_112: -0.08419500114021183 + sys_corr_113: -0.10145185292834166 + sys_corr_114: 0.0011402987649643834 + sys_corr_115: 0.012927761456972506 + sys_corr_116: -0.02972554410828958 + sys_corr_117: -0.03212944482758861 + sys_corr_118: 0.06986830560975099 + sys_corr_119: 0.007488513284251535 + sys_corr_120: 0.017442596706003056 + sys_corr_121: 0.00043685707118939425 + sys_corr_122: 0.005399456198861275 + sys_corr_123: -0.0015327092454244147 + sys_corr_124: -0.03162877368421379 + sys_corr_125: -0.003889162666284968 + sys_corr_126: -0.0013555172299344758 + sys_corr_127: 0.4147324161997176 + sys_corr_128: 0.12716289552917634 + sys_corr_129: -0.06431185566230777 + sys_corr_130: -0.00475118617590603 + sys_corr_131: -0.011295334061627546 + sys_corr_132: 0.01603253695697078 stat: 0.0 luminosity: 247.64438600000003 -- sys_corr_1: 124.38750867721573 - sys_corr_2: 58.757269688112146 - sys_corr_3: -13.012661314207087 - sys_corr_4: -10.359921854816536 - sys_corr_5: 6.188574401617573 - sys_corr_6: -131.1819837556573 - sys_corr_7: 29.107844120200017 - sys_corr_8: 13.569160406756728 - sys_corr_9: 13.426163653236163 - sys_corr_10: 3.3051485039619335 - sys_corr_11: 11.550228933633921 - sys_corr_12: 29.345690074493145 - sys_corr_13: 17.498742433700947 - sys_corr_14: -7.864260472424232 - sys_corr_15: -5.511320733337442 - sys_corr_16: 3.860366992480752 - sys_corr_17: 2.298206794305202 - sys_corr_18: -2.698657888716723 - sys_corr_19: 3.6365062061970206 - sys_corr_20: 0.8993485320256251 - sys_corr_21: -7.119974331874637 - sys_corr_22: -26.8629519114577 - sys_corr_23: -6.470371900464819 - sys_corr_24: 14.623502608844905 - sys_corr_25: 8.20200198746614 - sys_corr_26: 17.576436794448508 - sys_corr_27: -13.606771825913096 - sys_corr_28: -18.420977503220758 - sys_corr_29: 33.748252560451945 - sys_corr_30: -42.36593138695212 - sys_corr_31: 7.421627685644603 - sys_corr_32: 5.230063369851697 - sys_corr_33: -3.159007047113514 - sys_corr_34: 2.9599547021004593 - sys_corr_35: -23.025557927666462 - sys_corr_36: 17.027976858121093 - sys_corr_37: -15.463391033738924 - sys_corr_38: -4.10855397065224 - sys_corr_39: 0.5360218924680793 - sys_corr_40: -2.6977470032915627 - sys_corr_41: 1.7547958210605443 - sys_corr_42: 21.0880852154578 - sys_corr_43: 0.856537439685394 - sys_corr_44: 25.504334608314952 - sys_corr_45: 9.113488333388055 - sys_corr_46: 2.044040182218015 - sys_corr_47: -17.145066174794295 - sys_corr_48: 21.267198523967803 - sys_corr_49: -23.743092990011167 - sys_corr_50: -13.876167148018839 - sys_corr_51: -8.989326990901379 - sys_corr_52: -20.763411372945736 - sys_corr_53: 2.3618375470722435 - sys_corr_54: 17.660641990296934 - sys_corr_55: -0.25436330528149587 - sys_corr_56: 15.411630591843753 - sys_corr_57: -6.403186002006611 - sys_corr_58: 1.368979827263314 - sys_corr_59: 15.749619957764999 - sys_corr_60: -9.379174975818492 - sys_corr_61: 4.050720763285545 - sys_corr_62: -26.186427737696583 - sys_corr_63: -6.6394861438496084 - sys_corr_64: 10.50747447278406 - sys_corr_65: -7.361354793807412 - sys_corr_66: -25.925367842514397 - sys_corr_67: -30.259340810455225 - sys_corr_68: 8.408936711187577 - sys_corr_69: 32.74285354846006 - sys_corr_70: -18.917710760516517 - sys_corr_71: 26.408011077608695 - sys_corr_72: 19.73138123978363 - sys_corr_73: 58.74027300641291 - sys_corr_74: 16.577103573989625 - sys_corr_75: 0.40200434971729776 - sys_corr_76: 8.380600990662183 - sys_corr_77: -14.034882016191563 - sys_corr_78: -131.73626724692804 - sys_corr_79: 11.852607201469548 - sys_corr_80: 32.875545695929716 - sys_corr_81: 115.99807178312777 - sys_corr_82: 10.203826808018166 - sys_corr_83: -20.45185752142864 - sys_corr_84: 19.982429806108616 - sys_corr_85: -11.895268919556148 - sys_corr_86: 34.898672330801446 - sys_corr_87: 62.28576184392883 - sys_corr_88: -7.350288924423992 - sys_corr_89: 2.0177601138594725 - sys_corr_90: 1.0718836240517284 - sys_corr_91: 3.770774136235054 - sys_corr_92: 51.97844069191687 - sys_corr_93: -0.07741054946505434 - sys_corr_94: 0.5661544891427556 - sys_corr_95: -3.090490206498614 - sys_corr_96: 0.7815303151114819 - sys_corr_97: 6.5428481381860415 - sys_corr_98: -1.904284790766811 - sys_corr_99: 2.01421045794456 - sys_corr_100: -1.3047474509342385 - sys_corr_101: 1.9874419436343143 - sys_corr_102: -4.959975323052924 - sys_corr_103: 21.123933941825186 - sys_corr_104: 3.869415874777174 - sys_corr_105: 10.04559813298095 - sys_corr_106: 1.7513588517507057 - sys_corr_107: -3.1618242718770553 - sys_corr_108: 0.5091604959713824 - sys_corr_109: 0.054208524271178726 - sys_corr_110: 0.06866261756750264 - sys_corr_111: 0.06317697496592291 - sys_corr_112: -0.16422274376927065 - sys_corr_113: 0.1864026318940175 - sys_corr_114: -0.00013471677212582186 - sys_corr_115: 0.14037125547721196 - sys_corr_116: 0.08298137738815833 - sys_corr_117: 0.08148695772957919 - sys_corr_118: -0.15439975818484414 - sys_corr_119: -0.006790839616040423 - sys_corr_120: -0.023517614717065392 - sys_corr_121: 0.0018952804936548347 - sys_corr_122: 0.01666565069480281 - sys_corr_123: 0.03210014968138524 - sys_corr_124: -0.07336226930731286 - sys_corr_125: -0.031015749980858928 - sys_corr_126: 0.003875344130473629 - sys_corr_127: 0.02584949666889478 - sys_corr_128: -0.21600080938903732 - sys_corr_129: -0.13050135835604398 - sys_corr_130: -0.005282558203740883 - sys_corr_131: 0.03425298514505741 - sys_corr_132: 0.03935177171812333 +- sys_corr_1: 124.38750867721583 + sys_corr_2: 58.757269688112395 + sys_corr_3: -13.012661314207152 + sys_corr_4: -10.359921854816399 + sys_corr_5: 6.188574401617202 + sys_corr_6: -131.18198375565746 + sys_corr_7: 29.107844120199836 + sys_corr_8: 13.569160406757339 + sys_corr_9: 13.426163653236289 + sys_corr_10: 3.3051485039606114 + sys_corr_11: 11.550228933636802 + sys_corr_12: 29.34569007449275 + sys_corr_13: -17.49874243370084 + sys_corr_14: 7.864260472424305 + sys_corr_15: 5.511320733337603 + sys_corr_16: -3.8603669924810644 + sys_corr_17: 2.298206794305162 + sys_corr_18: 2.6986578887167667 + sys_corr_19: 3.6365062061971165 + sys_corr_20: 0.8993485320252746 + sys_corr_21: -7.119974331874765 + sys_corr_22: -26.862951911457852 + sys_corr_23: -6.470371900464989 + sys_corr_24: 14.623502608845126 + sys_corr_25: 8.202001987466463 + sys_corr_26: 17.57643679444875 + sys_corr_27: -13.606771825913535 + sys_corr_28: -18.42097750322011 + sys_corr_29: 33.748252560450986 + sys_corr_30: -42.365931386951715 + sys_corr_31: 7.421627685644443 + sys_corr_32: -5.2300633698543555 + sys_corr_33: 3.159007047111833 + sys_corr_34: 2.9599547020965953 + sys_corr_35: -23.025557927667375 + sys_corr_36: 17.027976858117523 + sys_corr_37: 15.463391033738647 + sys_corr_38: 4.108553970651426 + sys_corr_39: -0.5360218924660902 + sys_corr_40: 2.697747003291486 + sys_corr_41: 1.7547958210600023 + sys_corr_42: -21.08808521545701 + sys_corr_43: 0.8565374396750293 + sys_corr_44: 25.504334608309122 + sys_corr_45: -9.113488333389629 + sys_corr_46: -2.0440401822135517 + sys_corr_47: 17.14506617480014 + sys_corr_48: -21.26719852397088 + sys_corr_49: 23.743092990008314 + sys_corr_50: -13.87616714801992 + sys_corr_51: -8.989326990902967 + sys_corr_52: -20.763411372943004 + sys_corr_53: -2.3618375470711537 + sys_corr_54: -17.660641990294362 + sys_corr_55: 0.2543633052872076 + sys_corr_56: -15.411630591841098 + sys_corr_57: -6.403186001999494 + sys_corr_58: -1.368979827254324 + sys_corr_59: 15.749619957764134 + sys_corr_60: 9.379174975822156 + sys_corr_61: -4.050720763285716 + sys_corr_62: 26.186427737701194 + sys_corr_63: -6.639486143850436 + sys_corr_64: 10.50747447277383 + sys_corr_65: -7.361354793796187 + sys_corr_66: 25.92536784250275 + sys_corr_67: -30.25934081044857 + sys_corr_68: -8.408936711156835 + sys_corr_69: 32.74285354845761 + sys_corr_70: 18.917710760497837 + sys_corr_71: 26.40801107760689 + sys_corr_72: -19.731381239786753 + sys_corr_73: -58.74027300641412 + sys_corr_74: 16.57710357399375 + sys_corr_75: 0.40200434971130966 + sys_corr_76: 8.380600990656514 + sys_corr_77: 14.034882016180397 + sys_corr_78: -32.87554569593086 + sys_corr_79: -131.73626724692517 + sys_corr_80: 11.852607201475472 + sys_corr_81: -115.99807178312713 + sys_corr_82: -10.203826808021008 + sys_corr_83: -20.4518575214489 + sys_corr_84: -19.982429806104605 + sys_corr_85: -11.895268919557886 + sys_corr_86: -34.89867233073909 + sys_corr_87: -62.28576184392267 + sys_corr_88: -7.350288924354254 + sys_corr_89: 1.071883624051537 + sys_corr_90: 2.017760113860247 + sys_corr_91: 3.7707741362358993 + sys_corr_92: -51.978440691910095 + sys_corr_93: -0.07741054946548998 + sys_corr_94: 0.5661544891405966 + sys_corr_95: -3.0904902064962685 + sys_corr_96: -0.7815303151111976 + sys_corr_97: 6.54284813818634 + sys_corr_98: 1.9042847907670086 + sys_corr_99: 2.0142104579450204 + sys_corr_100: 1.9874419436328832 + sys_corr_101: 4.959975323046244 + sys_corr_102: 21.123933941823726 + sys_corr_103: -3.8694158747797727 + sys_corr_104: -10.045598132991593 + sys_corr_105: 1.3047474509335701 + sys_corr_106: 1.7513588517497198 + sys_corr_107: 0.5091604959711631 + sys_corr_108: 0.054208524270984715 + sys_corr_109: -0.06866261756738164 + sys_corr_110: 3.16182427187802 + sys_corr_111: -0.06317697496572437 + sys_corr_112: -0.16422274376924648 + sys_corr_113: -0.18640263189395972 + sys_corr_114: -0.00013471677212182611 + sys_corr_115: 0.14037125547719592 + sys_corr_116: -0.0829813773881146 + sys_corr_117: -0.08148695772955968 + sys_corr_118: 0.1543997581848161 + sys_corr_119: 0.006790839616039307 + sys_corr_120: 0.023517614717054568 + sys_corr_121: -0.0018952804936550817 + sys_corr_122: 0.03210014968139367 + sys_corr_123: 0.016665650694801328 + sys_corr_124: -0.07336226930734052 + sys_corr_125: -0.031015749980852242 + sys_corr_126: -0.0038753441304735146 + sys_corr_127: 0.02584949666855333 + sys_corr_128: -0.21600080938900532 + sys_corr_129: -0.1305013583560417 + sys_corr_130: -0.005282558203739974 + sys_corr_131: -0.034252985145028766 + sys_corr_132: 0.03935177171812303 stat: 0.0 luminosity: 248.51530000000002 -- sys_corr_1: 127.88713199164397 - sys_corr_2: 57.70404365773351 - sys_corr_3: -4.942615468333455 - sys_corr_4: -31.961953457633474 - sys_corr_5: 14.80212724204559 - sys_corr_6: -107.79042360883007 - sys_corr_7: 28.25176238487888 - sys_corr_8: 17.532562271955747 - sys_corr_9: 21.216040074777922 - sys_corr_10: 1.594438375154208 - sys_corr_11: 30.005336887034396 - sys_corr_12: 32.6835280291243 - sys_corr_13: 22.300664273189778 - sys_corr_14: -6.032436216086126 - sys_corr_15: -3.6062838287802217 - sys_corr_16: 7.738278085673729 - sys_corr_17: -3.135946304387461 - sys_corr_18: -1.9790985297110741 - sys_corr_19: -3.8601535885408613 - sys_corr_20: -5.806561530104758 - sys_corr_21: -8.298378441464596 - sys_corr_22: -37.82289557456295 - sys_corr_23: -7.622928872826329 - sys_corr_24: 24.17375195305334 - sys_corr_25: 5.293285784557206 - sys_corr_26: 10.216835036129217 - sys_corr_27: -9.997093858534535 - sys_corr_28: -23.758982823670337 - sys_corr_29: 42.42281186812247 - sys_corr_30: -39.77363958198071 - sys_corr_31: -3.0989238340244905 - sys_corr_32: 12.455597926199236 - sys_corr_33: 3.5517573547316847 - sys_corr_34: 20.800727764988427 - sys_corr_35: -16.51628183038857 - sys_corr_36: 10.958817440561333 - sys_corr_37: -0.22458637035549528 - sys_corr_38: -16.467132752846325 - sys_corr_39: -11.539132812592227 - sys_corr_40: -3.431220963795048 - sys_corr_41: 15.628433895821106 - sys_corr_42: 3.479687262558787 - sys_corr_43: 16.10732828326232 - sys_corr_44: -19.983111848529838 - sys_corr_45: -4.372116634508235 - sys_corr_46: 0.05981463434002879 - sys_corr_47: -14.330362725780283 - sys_corr_48: 16.595329325187738 - sys_corr_49: -19.030813342557202 - sys_corr_50: -17.757875286937026 - sys_corr_51: 16.968574633652686 - sys_corr_52: -9.55414354168286 - sys_corr_53: 29.127572186533598 - sys_corr_54: -12.419646887610881 - sys_corr_55: -12.861833682901201 - sys_corr_56: -2.974488571809966 - sys_corr_57: -25.433558690567665 - sys_corr_58: -12.075011271143417 - sys_corr_59: -9.043791519687296 - sys_corr_60: 8.287106112657254 - sys_corr_61: -11.229517333993112 - sys_corr_62: -18.228100634191318 - sys_corr_63: 15.19839695284952 - sys_corr_64: -0.639763984757038 - sys_corr_65: -21.812779628259843 - sys_corr_66: -1.5407435387147692 - sys_corr_67: -3.119436870042772 - sys_corr_68: -71.30271485913475 - sys_corr_69: -4.464546365207749 - sys_corr_70: -21.18337909045776 - sys_corr_71: 15.503161735106975 - sys_corr_72: 1.8655674089367813 - sys_corr_73: 57.21214641901822 - sys_corr_74: 7.210897171227445 - sys_corr_75: 53.48793389967307 - sys_corr_76: 0.5074918757204955 - sys_corr_77: -104.17074042020135 - sys_corr_78: 128.84266297377718 - sys_corr_79: -0.9175321933477356 - sys_corr_80: 8.61915993986834 - sys_corr_81: 63.65528353199282 - sys_corr_82: -39.60829475495739 - sys_corr_83: -38.547945893212336 - sys_corr_84: 11.284577289879454 - sys_corr_85: 11.024004361130729 - sys_corr_86: 35.588874840045946 - sys_corr_87: 8.432420228589846 - sys_corr_88: -26.242957021264328 - sys_corr_89: -8.458935231425622 - sys_corr_90: -1.926077028769737 - sys_corr_91: -6.965894027051317 - sys_corr_92: 25.92858219975257 - sys_corr_93: 0.7771971036293535 - sys_corr_94: 2.2552541746735004 - sys_corr_95: -2.9809805779625416 - sys_corr_96: 0.29840081997108225 - sys_corr_97: 3.9787913391870657 - sys_corr_98: -1.4387117190642171 - sys_corr_99: 1.2338889379616305 - sys_corr_100: 0.3981753229789927 - sys_corr_101: -0.010539294762278616 - sys_corr_102: -0.27467498435146437 - sys_corr_103: 0.7148003248541484 - sys_corr_104: -0.45720116570339314 - sys_corr_105: 1.7018548144687728 - sys_corr_106: -0.24745450740172373 - sys_corr_107: -0.32171535387742345 - sys_corr_108: 0.29939512337391205 - sys_corr_109: -0.14870729943809932 - sys_corr_110: -0.16599383479829452 - sys_corr_111: -0.14357762921817407 - sys_corr_112: -0.027335426461551838 - sys_corr_113: 0.14280768137789007 - sys_corr_114: 0.0021904816684065777 - sys_corr_115: -0.002544263577420291 - sys_corr_116: 0.10535369856800084 - sys_corr_117: 0.05722925513747261 - sys_corr_118: -0.15038116221602568 - sys_corr_119: -0.009665417754717619 - sys_corr_120: -0.04339771556940949 - sys_corr_121: -0.009596981566369461 - sys_corr_122: 0.011821773131327814 - sys_corr_123: 0.03913541018958867 - sys_corr_124: -0.13545539540099094 - sys_corr_125: -0.042431314094264434 - sys_corr_126: 0.0006381843068701409 - sys_corr_127: -0.228717386841443 - sys_corr_128: 0.11524741373111211 - sys_corr_129: -0.03128158886099177 - sys_corr_130: -0.016161418109745255 - sys_corr_131: 0.03166011216320682 - sys_corr_132: 0.08094349586214614 +- sys_corr_1: 127.88713199164391 + sys_corr_2: 57.70404365773364 + sys_corr_3: -4.942615468333367 + sys_corr_4: -31.96195345763319 + sys_corr_5: 14.802127242045227 + sys_corr_6: -107.79042360883011 + sys_corr_7: 28.2517623848789 + sys_corr_8: 17.532562271956643 + sys_corr_9: 21.21604007477831 + sys_corr_10: 1.5944383751521372 + sys_corr_11: 30.00533688703749 + sys_corr_12: 32.683528029123 + sys_corr_13: -22.300664273189195 + sys_corr_14: 6.032436216086021 + sys_corr_15: 3.606283828780346 + sys_corr_16: -7.7382780856740006 + sys_corr_17: -3.1359463043876907 + sys_corr_18: 1.9790985297109844 + sys_corr_19: -3.8601535885406792 + sys_corr_20: -5.806561530105062 + sys_corr_21: -8.298378441464271 + sys_corr_22: -37.82289557456311 + sys_corr_23: -7.622928872826321 + sys_corr_24: 24.173751953053397 + sys_corr_25: 5.293285784557262 + sys_corr_26: 10.2168350361296 + sys_corr_27: -9.997093858534802 + sys_corr_28: -23.758982823670475 + sys_corr_29: 42.422811868121926 + sys_corr_30: -39.77363958198093 + sys_corr_31: -3.098923834025032 + sys_corr_32: -12.455597926199108 + sys_corr_33: -3.5517573547291827 + sys_corr_34: 20.800727764987872 + sys_corr_35: -16.516281830389527 + sys_corr_36: 10.958817440559798 + sys_corr_37: 0.22458637035763673 + sys_corr_38: 16.467132752847437 + sys_corr_39: 11.539132812593039 + sys_corr_40: 3.4312209637932822 + sys_corr_41: 15.62843389582329 + sys_corr_42: -3.4796872625578117 + sys_corr_43: 16.10732828325901 + sys_corr_44: -19.983111848532666 + sys_corr_45: 4.372116634511096 + sys_corr_46: -0.05981463434284104 + sys_corr_47: 14.33036272577879 + sys_corr_48: -16.595329325189578 + sys_corr_49: 19.03081334255435 + sys_corr_50: -17.757875286934016 + sys_corr_51: 16.96857463365384 + sys_corr_52: -9.554143541677623 + sys_corr_53: -29.127572186529914 + sys_corr_54: 12.419646887604943 + sys_corr_55: 12.861833682894583 + sys_corr_56: 2.974488571809029 + sys_corr_57: -25.433558690565864 + sys_corr_58: 12.075011271136034 + sys_corr_59: -9.0437915196989 + sys_corr_60: -8.287106112656343 + sys_corr_61: 11.22951733399205 + sys_corr_62: 18.228100634192486 + sys_corr_63: 15.198396952857575 + sys_corr_64: -0.639763984754186 + sys_corr_65: -21.81277962825803 + sys_corr_66: 1.5407435387394526 + sys_corr_67: -3.1194368700831605 + sys_corr_68: 71.30271485913826 + sys_corr_69: -4.464546365213795 + sys_corr_70: 21.183379090475093 + sys_corr_71: 15.503161735097958 + sys_corr_72: -1.8655674089286889 + sys_corr_73: -57.212146419016605 + sys_corr_74: 7.2108971712096945 + sys_corr_75: 53.48793389967483 + sys_corr_76: 0.5074918757430474 + sys_corr_77: 104.17074042022999 + sys_corr_78: -8.619159939876594 + sys_corr_79: 128.84266297377889 + sys_corr_80: -0.9175321933611041 + sys_corr_81: -63.65528353197404 + sys_corr_82: 39.60829475495711 + sys_corr_83: -38.547945893221616 + sys_corr_84: -11.284577289877369 + sys_corr_85: 11.02400436113295 + sys_corr_86: -35.58887484003262 + sys_corr_87: -8.432420228582702 + sys_corr_88: -26.242957021198563 + sys_corr_89: -1.926077028770931 + sys_corr_90: -8.458935231425418 + sys_corr_91: -6.965894027050503 + sys_corr_92: -25.92858219973675 + sys_corr_93: 0.77719710362927 + sys_corr_94: 2.255254174674093 + sys_corr_95: -2.980980577962477 + sys_corr_96: -0.29840081997103224 + sys_corr_97: 3.978791339186963 + sys_corr_98: 1.4387117190641445 + sys_corr_99: 1.23388893796162 + sys_corr_100: -0.010539294762305352 + sys_corr_101: 0.2746749843512227 + sys_corr_102: 0.7148003248532474 + sys_corr_103: 0.45720116570348274 + sys_corr_104: -1.7018548144689833 + sys_corr_105: -0.3981753229790705 + sys_corr_106: -0.24745450740170166 + sys_corr_107: 0.2993951233739169 + sys_corr_108: -0.14870729943808428 + sys_corr_109: 0.16599383479831925 + sys_corr_110: 0.3217153538774268 + sys_corr_111: 0.14357762921812336 + sys_corr_112: -0.027335426461552886 + sys_corr_113: -0.14280768137790256 + sys_corr_114: 0.0021904816684043503 + sys_corr_115: -0.0025442635774047934 + sys_corr_116: -0.10535369856801857 + sys_corr_117: -0.05722925513751 + sys_corr_118: 0.15038116221604036 + sys_corr_119: 0.009665417754714313 + sys_corr_120: 0.04339771556941757 + sys_corr_121: 0.009596981566371163 + sys_corr_122: 0.03913541018960426 + sys_corr_123: 0.011821773131325103 + sys_corr_124: -0.13545539540098334 + sys_corr_125: -0.04243131409428072 + sys_corr_126: -0.0006381843068716897 + sys_corr_127: -0.22871738684142712 + sys_corr_128: 0.11524741373111727 + sys_corr_129: -0.03128158886096884 + sys_corr_130: -0.016161418109741654 + sys_corr_131: -0.03166011216321294 + sys_corr_132: 0.08094349586214002 stat: 0.0 luminosity: 245.734258 -- sys_corr_1: 115.69869511808399 - sys_corr_2: 49.8145581824304 - sys_corr_3: -19.833988589757283 - sys_corr_4: -50.75952184934744 - sys_corr_5: 35.25593223701927 - sys_corr_6: -112.3723360421969 - sys_corr_7: 21.46040885976361 - sys_corr_8: 12.008441655291808 - sys_corr_9: 18.034778647315946 - sys_corr_10: 0.013939061890274664 - sys_corr_11: 12.178168603635088 - sys_corr_12: 22.85048519721156 - sys_corr_13: 18.00315553532312 - sys_corr_14: 5.978099332931584 - sys_corr_15: -8.638153925270764 - sys_corr_16: 0.7756782074709705 - sys_corr_17: 6.174246438374217 - sys_corr_18: 4.202839265197324 - sys_corr_19: -10.870227659121321 - sys_corr_20: -13.428841525691487 - sys_corr_21: -9.262658653959738 - sys_corr_22: -44.81307807120265 - sys_corr_23: -3.218740574052297 - sys_corr_24: 24.539307301464312 - sys_corr_25: 8.237096425350042 - sys_corr_26: 16.606036757876524 - sys_corr_27: -7.209486773314156 - sys_corr_28: -6.097738165448893 - sys_corr_29: 17.988496450008434 - sys_corr_30: -35.944204843654404 - sys_corr_31: -18.102636015266217 - sys_corr_32: -3.911456198615935 - sys_corr_33: -10.815591653911941 - sys_corr_34: -9.445848341318984 - sys_corr_35: -11.55469453157299 - sys_corr_36: 5.450816755284786 - sys_corr_37: 1.0690395720209824 - sys_corr_38: 7.096135688297063 - sys_corr_39: -17.54826206634623 - sys_corr_40: 1.2574781351869009 - sys_corr_41: -0.35198173770972085 - sys_corr_42: 5.557364339929122 - sys_corr_43: -1.8324405474624883 - sys_corr_44: -18.609483972601804 - sys_corr_45: 40.86003911933178 - sys_corr_46: -7.673368616979012 - sys_corr_47: -20.37542201009296 - sys_corr_48: 14.503536365480775 - sys_corr_49: -16.024181315731717 - sys_corr_50: -6.3635800602028105 - sys_corr_51: 10.488630530806242 - sys_corr_52: -10.851068795679973 - sys_corr_53: 9.83454120435769 - sys_corr_54: -12.457303869156616 - sys_corr_55: -6.031294500823081 - sys_corr_56: 16.337465978035283 - sys_corr_57: -8.678463214289598 - sys_corr_58: -19.713277732107688 - sys_corr_59: 5.084425674254658 - sys_corr_60: 6.705238939036976 - sys_corr_61: -22.36663970459868 - sys_corr_62: -3.450300868351699 - sys_corr_63: -11.466831569943817 - sys_corr_64: 20.299456289509077 - sys_corr_65: -14.53533820695314 - sys_corr_66: -13.92625217105983 - sys_corr_67: -15.939577289084593 - sys_corr_68: -27.49409424145818 - sys_corr_69: -6.071032100835023 - sys_corr_70: -13.775812936685618 - sys_corr_71: -5.183265057044757 - sys_corr_72: 21.772666061032112 - sys_corr_73: -35.032755601245455 - sys_corr_74: 5.38746636683739 - sys_corr_75: -128.77693523631814 - sys_corr_76: 43.20279543279442 - sys_corr_77: 52.79053134519706 - sys_corr_78: 77.18547622274082 - sys_corr_79: 5.163471142311371 - sys_corr_80: 30.21673458378239 - sys_corr_81: 23.05202227279634 - sys_corr_82: 50.29824861322549 - sys_corr_83: 15.277038701683491 - sys_corr_84: -25.443568752240086 - sys_corr_85: 24.214241460689856 - sys_corr_86: -24.623639255363198 - sys_corr_87: 125.86649862942929 - sys_corr_88: 23.109359497343018 - sys_corr_89: -1.0571760213332524 - sys_corr_90: -5.001599384134433 - sys_corr_91: 2.8811982715705 - sys_corr_92: 24.111827899961714 - sys_corr_93: 0.17707554961997463 - sys_corr_94: 0.8432575709272315 - sys_corr_95: -1.5268956693576954 - sys_corr_96: 0.2970071215361755 - sys_corr_97: 0.9427915744697637 - sys_corr_98: -0.12233829155242425 - sys_corr_99: 0.5618555053636701 - sys_corr_100: -0.05463294502462527 - sys_corr_101: -0.16508894977346145 - sys_corr_102: 0.7138990357717936 - sys_corr_103: -1.5696518083211373 - sys_corr_104: -0.6470704665257196 - sys_corr_105: 0.02421055711475607 - sys_corr_106: -0.24486944309837394 - sys_corr_107: -0.05721125409940048 - sys_corr_108: 0.23828369305452232 - sys_corr_109: -0.001155011915185799 - sys_corr_110: -0.06913413423164817 - sys_corr_111: 0.15703560649777068 - sys_corr_112: 0.0920208596590261 - sys_corr_113: 0.10071249810504511 - sys_corr_114: 0.0017896730385048504 - sys_corr_115: 0.04548913455122856 - sys_corr_116: 0.060250442051490466 - sys_corr_117: 0.03946011286946905 - sys_corr_118: -0.15247015336327904 - sys_corr_119: -0.0028770369417699766 - sys_corr_120: -0.02213864128536676 - sys_corr_121: -0.006799702880632459 - sys_corr_122: 0.010639529830349456 - sys_corr_123: 0.011755620499652964 - sys_corr_124: -0.0893520258089142 - sys_corr_125: -0.019325774815471496 - sys_corr_126: -0.0033869609724885 - sys_corr_127: 0.48025657306160996 - sys_corr_128: 0.12112191498987374 - sys_corr_129: -0.11283711321427331 - sys_corr_130: 0.001225274149613609 - sys_corr_131: 0.0179932492786164 - sys_corr_132: 0.025619607180737317 +- sys_corr_1: 115.69869511808409 + sys_corr_2: 49.814558182430545 + sys_corr_3: -19.833988589757222 + sys_corr_4: -50.7595218493474 + sys_corr_5: 35.25593223701889 + sys_corr_6: -112.37233604219686 + sys_corr_7: 21.460408859763653 + sys_corr_8: 12.008441655292506 + sys_corr_9: 18.034778647316173 + sys_corr_10: 0.013939061888826178 + sys_corr_11: 12.178168603637161 + sys_corr_12: 22.850485197211295 + sys_corr_13: -18.003155535322907 + sys_corr_14: -5.9780993329316345 + sys_corr_15: 8.638153925270776 + sys_corr_16: -0.7756782074710332 + sys_corr_17: 6.174246438374596 + sys_corr_18: -4.202839265197259 + sys_corr_19: -10.870227659120646 + sys_corr_20: -13.428841525691404 + sys_corr_21: -9.262658653959553 + sys_corr_22: -44.813078071202284 + sys_corr_23: -3.2187405740524877 + sys_corr_24: 24.53930730146463 + sys_corr_25: 8.237096425350005 + sys_corr_26: 16.60603675787656 + sys_corr_27: -7.209486773314783 + sys_corr_28: -6.097738165448511 + sys_corr_29: 17.988496450008395 + sys_corr_30: -35.94420484365448 + sys_corr_31: -18.102636015266203 + sys_corr_32: 3.9114561986160816 + sys_corr_33: 10.81559165391029 + sys_corr_34: -9.445848341321188 + sys_corr_35: -11.554694531573508 + sys_corr_36: 5.450816755284369 + sys_corr_37: -1.0690395720242156 + sys_corr_38: -7.096135688296749 + sys_corr_39: 17.548262066346673 + sys_corr_40: -1.257478135188138 + sys_corr_41: -0.35198173770921787 + sys_corr_42: -5.557364339926406 + sys_corr_43: -1.8324405474653653 + sys_corr_44: -18.60948397260281 + sys_corr_45: -40.860039119326174 + sys_corr_46: 7.673368616995036 + sys_corr_47: 20.375422010091295 + sys_corr_48: -14.50353636548224 + sys_corr_49: 16.024181315731884 + sys_corr_50: -6.363580060200263 + sys_corr_51: 10.488630530808178 + sys_corr_52: -10.85106879567778 + sys_corr_53: -9.834541204352217 + sys_corr_54: 12.457303869153227 + sys_corr_55: 6.031294500818735 + sys_corr_56: -16.337465978034018 + sys_corr_57: -8.678463214278327 + sys_corr_58: 19.713277732118524 + sys_corr_59: 5.084425674242338 + sys_corr_60: -6.705238939041382 + sys_corr_61: 22.36663970459987 + sys_corr_62: 3.450300868346582 + sys_corr_63: -11.466831569946484 + sys_corr_64: 20.29945628950493 + sys_corr_65: -14.535338206933563 + sys_corr_66: 13.926252171069157 + sys_corr_67: -15.939577289098379 + sys_corr_68: 27.494094241465604 + sys_corr_69: -6.0710321008405215 + sys_corr_70: 13.775812936697017 + sys_corr_71: -5.183265057055248 + sys_corr_72: -21.772666061031824 + sys_corr_73: 35.03275560125142 + sys_corr_74: 5.387466366858017 + sys_corr_75: -128.77693523636978 + sys_corr_76: 43.20279543272594 + sys_corr_77: -52.790531345203476 + sys_corr_78: -30.216734583777445 + sys_corr_79: 77.18547622274146 + sys_corr_80: 5.16347114231237 + sys_corr_81: -23.052022272806585 + sys_corr_82: -50.29824861323049 + sys_corr_83: 15.277038701685994 + sys_corr_84: 25.44356875223145 + sys_corr_85: 24.214241460691163 + sys_corr_86: 24.62363925539432 + sys_corr_87: -125.86649862943794 + sys_corr_88: 23.109359497294516 + sys_corr_89: -5.001599384133884 + sys_corr_90: -1.0571760213336112 + sys_corr_91: 2.8811982715689295 + sys_corr_92: -24.11182789998742 + sys_corr_93: 0.17707554962015273 + sys_corr_94: 0.8432575709285339 + sys_corr_95: -1.5268956693585696 + sys_corr_96: -0.29700712153632436 + sys_corr_97: 0.9427915744699621 + sys_corr_98: 0.1223382915523004 + sys_corr_99: 0.5618555053635745 + sys_corr_100: -0.16508894977339988 + sys_corr_101: -0.7138990357715469 + sys_corr_102: -1.5696518083223674 + sys_corr_103: 0.6470704665260903 + sys_corr_104: -0.024210557113658923 + sys_corr_105: 0.054632945024598194 + sys_corr_106: -0.2448694430983064 + sys_corr_107: 0.23828369305452643 + sys_corr_108: -0.0011550119151617826 + sys_corr_109: 0.06913413423160045 + sys_corr_110: 0.05721125409925753 + sys_corr_111: -0.1570356064978542 + sys_corr_112: 0.09202085965899416 + sys_corr_113: -0.10071249810505124 + sys_corr_114: 0.0017896730385036953 + sys_corr_115: 0.045489134551241685 + sys_corr_116: -0.06025044205147537 + sys_corr_117: -0.03946011286948547 + sys_corr_118: 0.15247015336330216 + sys_corr_119: 0.0028770369417649693 + sys_corr_120: 0.022138641285390642 + sys_corr_121: 0.0067997028806290214 + sys_corr_122: 0.011755620499647708 + sys_corr_123: 0.010639529830352322 + sys_corr_124: -0.08935202580892578 + sys_corr_125: -0.019325774815466705 + sys_corr_126: 0.0033869609724860067 + sys_corr_127: 0.4802565730616907 + sys_corr_128: 0.12112191498986037 + sys_corr_129: -0.11283711321426426 + sys_corr_130: 0.0012252741496167512 + sys_corr_131: -0.017993249278618072 + sys_corr_132: 0.025619607180733382 stat: 0.0 luminosity: 236.99966400000002 - sys_corr_1: 107.35974326226015 - sys_corr_2: 50.274152237869565 - sys_corr_3: -24.36996540030198 - sys_corr_4: -58.906769304711695 - sys_corr_5: 42.05979441370407 - sys_corr_6: -105.567557068252 - sys_corr_7: 13.361164796785589 - sys_corr_8: 10.633987619020754 - sys_corr_9: 15.68258669433488 - sys_corr_10: -1.3165024108304813 - sys_corr_11: 10.57621951692994 - sys_corr_12: 20.920065050592886 - sys_corr_13: 11.556456603482317 - sys_corr_14: -7.633943991094272 - sys_corr_15: -2.4740644534353096 - sys_corr_16: -0.32135632837590417 - sys_corr_17: 10.002989953299947 - sys_corr_18: 0.8711095917401429 - sys_corr_19: -8.067673381932424 - sys_corr_20: -15.988218004923569 - sys_corr_21: -8.989409696338582 - sys_corr_22: -55.572572036821114 - sys_corr_23: -6.015302746035143 - sys_corr_24: 25.33267468075964 - sys_corr_25: 9.978337647234941 - sys_corr_26: 22.85645329037188 - sys_corr_27: -9.176701465541475 - sys_corr_28: -8.160825347852306 - sys_corr_29: 17.47128534197547 - sys_corr_30: -26.24941818758072 - sys_corr_31: -33.896694448166215 - sys_corr_32: -14.826613335793471 - sys_corr_33: -11.233338362704886 - sys_corr_34: 7.06685266774477 - sys_corr_35: -3.365264858518312 - sys_corr_36: 1.3558357365442821 - sys_corr_37: 13.578144667950413 - sys_corr_38: 5.451052389565868 - sys_corr_39: 29.392451597121457 - sys_corr_40: -3.5049674155832546 - sys_corr_41: 1.5265458248781176 - sys_corr_42: 4.59836960912483 - sys_corr_43: 1.3558974127152479 - sys_corr_44: -16.3054749334921 - sys_corr_45: -7.408559438169587 - sys_corr_46: 1.888834605785417 - sys_corr_47: 6.700174986211636 - sys_corr_48: 18.963644230296676 - sys_corr_49: -35.03065783904415 - sys_corr_50: -28.971646046490257 - sys_corr_51: 22.460579190462585 - sys_corr_52: 24.09957662531975 - sys_corr_53: 8.468528733978776 - sys_corr_54: 13.521762580616663 - sys_corr_55: -17.910272088954564 - sys_corr_56: -17.26521543723394 - sys_corr_57: -38.588548274484 - sys_corr_58: -31.61755522221486 - sys_corr_59: 11.721844629908531 - sys_corr_60: -44.238333626544886 - sys_corr_61: -141.9620465093087 - sys_corr_62: -93.6480218101361 - sys_corr_63: 36.08395186634599 - sys_corr_64: 5.375847332617755 - sys_corr_65: 183.1311046693967 - sys_corr_66: -17.642988006576612 - sys_corr_67: 26.518033578289344 - sys_corr_68: -14.549672626123836 - sys_corr_69: -21.148036354296067 - sys_corr_70: 43.38086681574068 - sys_corr_71: 24.75762798823817 - sys_corr_72: -30.485646633803302 - sys_corr_73: -13.2647936063855 - sys_corr_74: 2.4606218357724865 - sys_corr_75: 6.588956894318494 - sys_corr_76: -6.263859702048374 - sys_corr_77: -3.284118644263396 - sys_corr_78: -13.461925287070578 - sys_corr_79: -4.381270827633775 - sys_corr_80: 2.5409392703204943 - sys_corr_81: -2.531980839251569 - sys_corr_82: 3.8345915163272632 - sys_corr_83: 4.400148187161791 - sys_corr_84: -5.842657287087594 - sys_corr_85: 10.892283240706135 - sys_corr_86: -4.05019389441232 - sys_corr_87: 2.6341160447410066 - sys_corr_88: 0.7007471260729097 - sys_corr_89: -3.0240764420676816 - sys_corr_90: -1.3585326256834231 - sys_corr_91: -1.0630330619203248 - sys_corr_92: -2.361933409192488 - sys_corr_93: 0.16999595476409285 - sys_corr_94: 0.3112560879048297 - sys_corr_95: -0.4841782386846351 - sys_corr_96: -0.005524930146909493 - sys_corr_97: -0.5292557200240442 - sys_corr_98: 0.1374027613195334 - sys_corr_99: -0.4601686234694371 - sys_corr_100: -0.1384718503674949 - sys_corr_101: -0.6763554181266881 - sys_corr_102: 1.0846975937132328 - sys_corr_103: -4.665301310605315 - sys_corr_104: -0.8871398671642728 - sys_corr_105: -1.877849473943483 - sys_corr_106: -0.33726224425904294 - sys_corr_107: 0.8387084868397459 - sys_corr_108: -0.32482136700580855 - sys_corr_109: -0.015411125956060596 - sys_corr_110: -0.0707198657225341 - sys_corr_111: -0.0012888500130698263 - sys_corr_112: 0.11376294245656482 - sys_corr_113: 0.08829417714453235 - sys_corr_114: 0.0010654594452954634 - sys_corr_115: -0.004557580341171786 - sys_corr_116: 0.027522409575482153 - sys_corr_117: 0.019656525740988664 - sys_corr_118: -0.10260743237262171 - sys_corr_119: -0.0028457202915113645 - sys_corr_120: -0.01407701435479435 - sys_corr_121: -0.005184071474707877 - sys_corr_122: 0.007603533276435603 - sys_corr_123: 0.011441062162148359 - sys_corr_124: -0.045655397575265697 - sys_corr_125: -0.01737063742539455 - sys_corr_126: -0.0005012897567391694 - sys_corr_127: 0.34613417408774144 - sys_corr_128: 0.10915890857441608 - sys_corr_129: 0.05885385422241398 - sys_corr_130: -0.004824192209895168 - sys_corr_131: 0.007411622758890207 - sys_corr_132: 0.004689063182676091 + sys_corr_2: 50.27415223786964 + sys_corr_3: -24.369965400301982 + sys_corr_4: -58.906769304711666 + sys_corr_5: 42.05979441370369 + sys_corr_6: -105.56755706825196 + sys_corr_7: 13.361164796785586 + sys_corr_8: 10.633987619021374 + sys_corr_9: 15.682586694335061 + sys_corr_10: -1.316502410831635 + sys_corr_11: 10.576219516932031 + sys_corr_12: 20.920065050592253 + sys_corr_13: -11.556456603482392 + sys_corr_14: 7.633943991093997 + sys_corr_15: 2.474064453435621 + sys_corr_16: 0.32135632837604183 + sys_corr_17: 10.002989953300188 + sys_corr_18: -0.8711095917398185 + sys_corr_19: -8.06767338193187 + sys_corr_20: -15.988218004923754 + sys_corr_21: -8.989409696338145 + sys_corr_22: -55.572572036820766 + sys_corr_23: -6.015302746034905 + sys_corr_24: 25.332674680759872 + sys_corr_25: 9.978337647235156 + sys_corr_26: 22.856453290371984 + sys_corr_27: -9.176701465542225 + sys_corr_28: -8.160825347851633 + sys_corr_29: 17.47128534197504 + sys_corr_30: -26.24941818758045 + sys_corr_31: -33.89669444816673 + sys_corr_32: 14.826613335793692 + sys_corr_33: 11.233338362704709 + sys_corr_34: 7.0668526677439205 + sys_corr_35: -3.365264858516411 + sys_corr_36: 1.3558357365448994 + sys_corr_37: -13.578144667951435 + sys_corr_38: -5.4510523895650955 + sys_corr_39: -29.39245159712291 + sys_corr_40: 3.504967415583384 + sys_corr_41: 1.5265458248784813 + sys_corr_42: -4.598369609122836 + sys_corr_43: 1.3558974127119836 + sys_corr_44: -16.305474933493702 + sys_corr_45: 7.408559438167331 + sys_corr_46: -1.8888346057911503 + sys_corr_47: -6.700174986211964 + sys_corr_48: -18.963644230300073 + sys_corr_49: 35.03065783904029 + sys_corr_50: -28.971646046487532 + sys_corr_51: 22.46057919046031 + sys_corr_52: 24.099576625318726 + sys_corr_53: -8.468528733989295 + sys_corr_54: -13.521762580624864 + sys_corr_55: 17.91027208895391 + sys_corr_56: 17.265215437236918 + sys_corr_57: -38.58854827449498 + sys_corr_58: 31.61755522222156 + sys_corr_59: 11.721844629890153 + sys_corr_60: 44.23833362653731 + sys_corr_61: 141.9620465093156 + sys_corr_62: 93.64802181007526 + sys_corr_63: 36.08395186629278 + sys_corr_64: 5.375847332699608 + sys_corr_65: 183.13110466939835 + sys_corr_66: 17.642988006590937 + sys_corr_67: 26.51803357829327 + sys_corr_68: 14.549672626083382 + sys_corr_69: -21.148036354273998 + sys_corr_70: -43.38086681573714 + sys_corr_71: 24.757627988228965 + sys_corr_72: 30.48564663380485 + sys_corr_73: 13.264793606382295 + sys_corr_74: 2.460621835774207 + sys_corr_75: 6.588956894322245 + sys_corr_76: -6.263859702042408 + sys_corr_77: 3.284118644262093 + sys_corr_78: -2.5409392703214797 + sys_corr_79: -13.461925287071056 + sys_corr_80: -4.381270827632359 + sys_corr_81: 2.531980839251569 + sys_corr_82: -3.834591516327417 + sys_corr_83: 4.400148187162167 + sys_corr_84: 5.842657287085938 + sys_corr_85: 10.892283240707174 + sys_corr_86: 4.0501938944145195 + sys_corr_87: -2.634116044740632 + sys_corr_88: 0.7007471260723069 + sys_corr_89: -1.3585326256834886 + sys_corr_90: -3.0240764420676505 + sys_corr_91: -1.0630330619208288 + sys_corr_92: 2.3619334091907604 + sys_corr_93: 0.16999595476416077 + sys_corr_94: 0.3112560879052604 + sys_corr_95: -0.4841782386847621 + sys_corr_96: 0.005524930146913294 + sys_corr_97: -0.5292557200242496 + sys_corr_98: -0.13740276131966309 + sys_corr_99: -0.46016862346956683 + sys_corr_100: -0.6763554181263471 + sys_corr_101: -1.084697593711666 + sys_corr_102: -4.6653013106046535 + sys_corr_103: 0.8871398671647316 + sys_corr_104: 1.8778494739455558 + sys_corr_105: 0.1384718503677159 + sys_corr_106: -0.3372622442587936 + sys_corr_107: -0.3248213670057401 + sys_corr_108: -0.015411125956040142 + sys_corr_109: 0.07071986572250326 + sys_corr_110: -0.8387084868399718 + sys_corr_111: 0.001288850012988062 + sys_corr_112: 0.11376294245656797 + sys_corr_113: -0.08829417714455148 + sys_corr_114: 0.0010654594452934889 + sys_corr_115: -0.004557580341178633 + sys_corr_116: -0.02752240957548885 + sys_corr_117: -0.01965652574101344 + sys_corr_118: 0.10260743237262585 + sys_corr_119: 0.0028457202915139024 + sys_corr_120: 0.014077014354797088 + sys_corr_121: 0.005184071474713329 + sys_corr_122: 0.011441062162144407 + sys_corr_123: 0.007603533276435295 + sys_corr_124: -0.0456553975752673 + sys_corr_125: -0.017370637425394388 + sys_corr_126: 0.0005012897567385164 + sys_corr_127: 0.3461341740877903 + sys_corr_128: 0.10915890857439245 + sys_corr_129: 0.05885385422241147 + sys_corr_130: -0.004824192209897022 + sys_corr_131: -0.007411622758898786 + sys_corr_132: 0.004689063182669488 stat: 0.0 luminosity: 226.69594200000003 -- sys_corr_1: 98.44182134039161 - sys_corr_2: 43.46561491484892 - sys_corr_3: -30.215169362653175 - sys_corr_4: -62.93159620406984 - sys_corr_5: 54.628710228868016 - sys_corr_6: -111.95023790883775 - sys_corr_7: 12.85525771792968 - sys_corr_8: 6.804633758498165 - sys_corr_9: 12.456862074229523 - sys_corr_10: -2.427206005586047 - sys_corr_11: -1.4177714449608594 - sys_corr_12: 5.870065517037218 - sys_corr_13: 10.65794229164871 - sys_corr_14: -0.436807400341103 - sys_corr_15: -0.06311964962321247 - sys_corr_16: 2.7313755783453377 - sys_corr_17: 0.28038276421189445 - sys_corr_18: -3.8629301221567145 - sys_corr_19: -17.7047645461837 - sys_corr_20: -14.107166288003475 - sys_corr_21: -4.0879385817832015 - sys_corr_22: -54.43432498741052 - sys_corr_23: -3.3914451973093604 - sys_corr_24: 24.13570816501096 - sys_corr_25: 11.803443808243381 - sys_corr_26: 26.384515022688852 - sys_corr_27: -4.647357652611098 - sys_corr_28: -2.264338782956103 - sys_corr_29: 8.23033920261148 - sys_corr_30: -11.663972608070441 - sys_corr_31: -37.83942217362116 - sys_corr_32: -5.030169651456498 - sys_corr_33: -5.252989565784752 - sys_corr_34: -2.836777350155383 - sys_corr_35: 4.005287691468531 - sys_corr_36: -4.5092306596172005 - sys_corr_37: 2.051169002154394 - sys_corr_38: 26.470496741735246 - sys_corr_39: -8.094827069276501 - sys_corr_40: -1.8474525369513801 - sys_corr_41: 8.783478603956024 - sys_corr_42: -4.117715742723097 - sys_corr_43: -9.502781858053732 - sys_corr_44: -15.843047936421256 - sys_corr_45: 8.846133052065179 - sys_corr_46: 0.3166485496760068 - sys_corr_47: -4.491375522994198 - sys_corr_48: -4.862911989651596 - sys_corr_49: -1.375489743705008 - sys_corr_50: -0.8288611074065725 - sys_corr_51: 15.813961908752708 - sys_corr_52: 34.61188368173793 - sys_corr_53: 22.05301777787838 - sys_corr_54: -29.062308004137424 - sys_corr_55: -9.093851701283652 - sys_corr_56: 0.6255182011641488 - sys_corr_57: -8.88397157269643 - sys_corr_58: -16.367598979135337 - sys_corr_59: 1.2824891628039292 - sys_corr_60: 10.989345825231304 - sys_corr_61: -1.0969417430766766 - sys_corr_62: 2.8212554104807412 - sys_corr_63: -5.187656971551274 - sys_corr_64: 14.877587415840596 - sys_corr_65: -19.78106252579955 - sys_corr_66: -19.80810048023731 - sys_corr_67: -6.905119282213037 - sys_corr_68: -5.401818232762175 - sys_corr_69: 2.2421417708238773 - sys_corr_70: -10.416022468955823 - sys_corr_71: 4.712750182051584 - sys_corr_72: 30.25176097110651 - sys_corr_73: 58.31933713946633 - sys_corr_74: 3.3117558580231843 - sys_corr_75: 36.15838217378193 - sys_corr_76: -11.665822466937943 - sys_corr_77: -73.07844007215216 - sys_corr_78: -36.167266151104435 - sys_corr_79: -35.586411170748384 - sys_corr_80: 7.610220753857711 - sys_corr_81: -121.86693509057824 - sys_corr_82: 62.350475041272695 - sys_corr_83: 87.18302216775041 - sys_corr_84: -13.603565655476414 - sys_corr_85: 15.268501225455097 - sys_corr_86: 46.45976780509379 - sys_corr_87: 82.70899725630171 - sys_corr_88: -36.62128983294343 - sys_corr_89: -2.524689879783064 - sys_corr_90: -2.616360320646222 - sys_corr_91: -4.490283328316232 - sys_corr_92: 1.108279700139366 - sys_corr_93: 0.3375081837991202 - sys_corr_94: 0.5341173621811744 - sys_corr_95: -1.4200713124744817 - sys_corr_96: -0.4113318329938791 - sys_corr_97: 0.14092387573234763 - sys_corr_98: -0.24207941447130918 - sys_corr_99: 0.027233174930043617 - sys_corr_100: -0.02749302424880992 - sys_corr_101: -0.20647906970405194 - sys_corr_102: 0.5838831428024066 - sys_corr_103: -1.2255791562995693 - sys_corr_104: 1.132947553162831 - sys_corr_105: 0.1715008343923979 - sys_corr_106: 0.512411484419737 - sys_corr_107: 0.6353261790322582 - sys_corr_108: -0.08477256756838614 - sys_corr_109: 0.2220010831432389 - sys_corr_110: 0.0031902544386114688 - sys_corr_111: 0.032863962503009846 - sys_corr_112: 0.07782865253903314 - sys_corr_113: -0.08073783208494527 - sys_corr_114: -4.172853210095921e-05 - sys_corr_115: -0.010478806571769729 - sys_corr_116: 0.031128562402866905 - sys_corr_117: 0.018638321129576998 - sys_corr_118: 0.00022742779500460597 - sys_corr_119: -0.005718791129642656 - sys_corr_120: -0.018497566126185576 - sys_corr_121: -0.0035781892358356417 - sys_corr_122: 0.011231427070656705 - sys_corr_123: 0.017480563014502078 - sys_corr_124: -0.04321559576053478 - sys_corr_125: -0.014478038757848116 - sys_corr_126: -0.007819755155401835 - sys_corr_127: -0.4593418525292687 - sys_corr_128: -0.08030257436174988 - sys_corr_129: 0.09269063776149357 - sys_corr_130: 0.004412610134053277 - sys_corr_131: 0.011278094662065547 - sys_corr_132: -0.06393699502111336 +- sys_corr_1: 98.44182134039143 + sys_corr_2: 43.46561491484906 + sys_corr_3: -30.215169362653167 + sys_corr_4: -62.931596204070004 + sys_corr_5: 54.62871022886743 + sys_corr_6: -111.95023790883734 + sys_corr_7: 12.855257717929689 + sys_corr_8: 6.8046337584987135 + sys_corr_9: 12.45686207422974 + sys_corr_10: -2.42720600558663 + sys_corr_11: -1.4177714449602121 + sys_corr_12: 5.870065517037397 + sys_corr_13: -10.657942291648911 + sys_corr_14: 0.43680740034108245 + sys_corr_15: 0.06311964962323861 + sys_corr_16: -2.731375578345651 + sys_corr_17: 0.28038276421207364 + sys_corr_18: 3.862930122156821 + sys_corr_19: -17.70476454618324 + sys_corr_20: -14.107166288003285 + sys_corr_21: -4.087938581782442 + sys_corr_22: -54.434324987409674 + sys_corr_23: -3.3914451973091726 + sys_corr_24: 24.13570816501134 + sys_corr_25: 11.803443808243447 + sys_corr_26: 26.384515022688486 + sys_corr_27: -4.647357652611676 + sys_corr_28: -2.2643387829560493 + sys_corr_29: 8.230339202611844 + sys_corr_30: -11.663972608070587 + sys_corr_31: -37.83942217362102 + sys_corr_32: 5.03016965145841 + sys_corr_33: 5.2529895657869075 + sys_corr_34: -2.8367773501542173 + sys_corr_35: 4.005287691467568 + sys_corr_36: -4.509230659615583 + sys_corr_37: -2.0511690021595874 + sys_corr_38: -26.47049674173434 + sys_corr_39: 8.094827069274135 + sys_corr_40: 1.8474525369508432 + sys_corr_41: 8.78347860395635 + sys_corr_42: 4.117715742726461 + sys_corr_43: -9.50278185805215 + sys_corr_44: -15.843047936417937 + sys_corr_45: -8.846133052065587 + sys_corr_46: -0.3166485496728149 + sys_corr_47: 4.491375522990772 + sys_corr_48: 4.862911989652032 + sys_corr_49: 1.37548974370854 + sys_corr_50: -0.8288611074031802 + sys_corr_51: 15.813961908752763 + sys_corr_52: 34.61188368173891 + sys_corr_53: -22.053017777879116 + sys_corr_54: 29.062308004132685 + sys_corr_55: 9.09385170127165 + sys_corr_56: -0.6255182011651346 + sys_corr_57: -8.883971572695101 + sys_corr_58: 16.367598979141228 + sys_corr_59: 1.2824891627932284 + sys_corr_60: -10.989345825233107 + sys_corr_61: 1.096941743076854 + sys_corr_62: -2.8212554104818603 + sys_corr_63: -5.187656971554271 + sys_corr_64: 14.877587415833888 + sys_corr_65: -19.781062525783184 + sys_corr_66: 19.80810048023735 + sys_corr_67: -6.905119282217574 + sys_corr_68: 5.401818232771432 + sys_corr_69: 2.24214177081968 + sys_corr_70: 10.416022468958804 + sys_corr_71: 4.712750182046701 + sys_corr_72: -30.25176097110543 + sys_corr_73: -58.31933713946626 + sys_corr_74: 3.311755858007077 + sys_corr_75: 36.15838217379997 + sys_corr_76: -11.665822466918835 + sys_corr_77: 73.0784400721491 + sys_corr_78: -7.6102207538657485 + sys_corr_79: -36.16726615110795 + sys_corr_80: -35.58641117075059 + sys_corr_81: 121.8669350905715 + sys_corr_82: -62.35047504127372 + sys_corr_83: 87.18302216776745 + sys_corr_84: 13.603565655480965 + sys_corr_85: 15.268501225462332 + sys_corr_86: -46.45976780512441 + sys_corr_87: -82.70899725628699 + sys_corr_88: -36.6212898328667 + sys_corr_89: -2.616360320647271 + sys_corr_90: -2.5246898797831117 + sys_corr_91: -4.4902833283153925 + sys_corr_92: -1.108279700119503 + sys_corr_93: 0.3375081837989809 + sys_corr_94: 0.5341173621811378 + sys_corr_95: -1.4200713124737865 + sys_corr_96: 0.41133183299389187 + sys_corr_97: 0.14092387573185614 + sys_corr_98: 0.24207941447112788 + sys_corr_99: 0.027233174929766187 + sys_corr_100: -0.20647906970411803 + sys_corr_101: -0.583883142802381 + sys_corr_102: -1.2255791563014466 + sys_corr_103: -1.132947553162248 + sys_corr_104: -0.1715008343908972 + sys_corr_105: 0.027493024248829216 + sys_corr_106: 0.512411484419622 + sys_corr_107: -0.08477256756844924 + sys_corr_108: 0.22200108314319428 + sys_corr_109: -0.003190254438655198 + sys_corr_110: -0.6353261790324444 + sys_corr_111: -0.03286396250297811 + sys_corr_112: 0.07782865253902123 + sys_corr_113: 0.08073783208496826 + sys_corr_114: -4.172853210193364e-05 + sys_corr_115: -0.010478806571771236 + sys_corr_116: -0.03112856240283865 + sys_corr_117: -0.018638321129582372 + sys_corr_118: -0.00022742779498457471 + sys_corr_119: 0.0057187911296429994 + sys_corr_120: 0.018497566126183956 + sys_corr_121: 0.0035781892358365693 + sys_corr_122: 0.01748056301451009 + sys_corr_123: 0.011231427070652751 + sys_corr_124: -0.04321559576053299 + sys_corr_125: -0.014478038757844612 + sys_corr_126: 0.00781975515539638 + sys_corr_127: -0.45934185252927817 + sys_corr_128: -0.08030257436173523 + sys_corr_129: 0.09269063776151698 + sys_corr_130: 0.0044126101340512735 + sys_corr_131: -0.01127809466207028 + sys_corr_132: -0.06393699502111541 stat: 0.0 luminosity: 214.20009600000003 -- sys_corr_1: 98.1219381056378 - sys_corr_2: 36.627297366384674 +- sys_corr_1: 98.12193810563761 + sys_corr_2: 36.62729736638478 sys_corr_3: -29.628852362499053 - sys_corr_4: -72.00776899746575 - sys_corr_5: 49.82964879279525 - sys_corr_6: -94.76522388941653 - sys_corr_7: 13.163912522623423 - sys_corr_8: 7.600771659989459 - sys_corr_9: 14.58047073077428 - sys_corr_10: -3.8108524839477558 - sys_corr_11: 7.44365612804163 - sys_corr_12: 6.088797974990911 - sys_corr_13: 6.56964677718494 - sys_corr_14: 1.5342637551203593 - sys_corr_15: -3.0709346670609983 - sys_corr_16: 4.274832071134415 - sys_corr_17: 13.978036384671109 - sys_corr_18: -14.985484878973196 - sys_corr_19: -7.894711630390668 - sys_corr_20: -9.958760384501288 - sys_corr_21: -14.215555406409981 - sys_corr_22: -49.43013185097333 - sys_corr_23: 3.435270971429708 - sys_corr_24: 32.81039575962793 - sys_corr_25: 12.227015303469116 - sys_corr_26: 26.669296069596953 - sys_corr_27: -3.08829067735777 - sys_corr_28: 3.9685183430193023 - sys_corr_29: -3.7215975591539947 - sys_corr_30: -7.803960725129619 - sys_corr_31: -37.83771458721926 - sys_corr_32: 0.509079326572613 - sys_corr_33: 7.389474471701501 - sys_corr_34: 4.017802125603512 - sys_corr_35: 4.902049924411309 - sys_corr_36: 8.664426257611622 - sys_corr_37: 11.199018099261151 - sys_corr_38: 5.888593294823256 - sys_corr_39: -3.7592127217484568 - sys_corr_40: 5.720199619281164 - sys_corr_41: 3.533308193202233 - sys_corr_42: 2.9864781331971115 - sys_corr_43: -5.907014383632268 - sys_corr_44: -4.216606261419248 - sys_corr_45: -19.5470449854887 - sys_corr_46: -1.0651623841096602 - sys_corr_47: -5.43829672912573 - sys_corr_48: 11.850384698478715 - sys_corr_49: 2.705325176909087 - sys_corr_50: -0.7637331895953798 - sys_corr_51: -4.176661267440037 - sys_corr_52: 1.467190208176386 - sys_corr_53: 2.2212645526494783 - sys_corr_54: 6.08305408947048 - sys_corr_55: 4.016187158883138 - sys_corr_56: 6.653854589634793 - sys_corr_57: -12.73092165893293 - sys_corr_58: 10.418242965912642 - sys_corr_59: -2.5450574243629185 - sys_corr_60: -4.621741803622897 - sys_corr_61: -4.197286837149739 - sys_corr_62: -14.019204492451827 - sys_corr_63: 13.906264110675611 - sys_corr_64: -1.1809475658785649 - sys_corr_65: 1.579697671383121 - sys_corr_66: -4.740672947958559 - sys_corr_67: -7.5723327430106355 - sys_corr_68: 4.417437765171979 - sys_corr_69: 9.51915847151293 - sys_corr_70: -5.507564813309438 - sys_corr_71: -4.696740999928927 - sys_corr_72: 16.67092648256365 - sys_corr_73: 10.962337033169797 - sys_corr_74: -1.612452753278581 - sys_corr_75: -13.024607358036148 - sys_corr_76: 16.64992201260443 - sys_corr_77: -0.06974216999756937 - sys_corr_78: 4.087695523381442 - sys_corr_79: 52.272806591704544 - sys_corr_80: -190.26657109416396 - sys_corr_81: -0.1516657026014142 - sys_corr_82: 17.0979790144165 - sys_corr_83: -7.852853827863211 - sys_corr_84: 28.636202027773294 - sys_corr_85: -15.115296634952223 - sys_corr_86: -2.460737193621905 - sys_corr_87: 40.544091675385054 - sys_corr_88: -7.888684592285605 - sys_corr_89: -11.918339773851464 - sys_corr_90: 0.2399452415666409 - sys_corr_91: -24.05111251261032 - sys_corr_92: 6.736289014352718 - sys_corr_93: 0.3507474073399164 - sys_corr_94: -0.6648185858052157 - sys_corr_95: -0.4212203992944232 - sys_corr_96: 0.040289880546191884 - sys_corr_97: 1.0922102371422855 - sys_corr_98: -0.992077187583406 - sys_corr_99: 0.9157375250274479 - sys_corr_100: -2.6103016220735777 - sys_corr_101: 2.4535537660115265 - sys_corr_102: -4.276723842495808 - sys_corr_103: 16.769305609715055 - sys_corr_104: 6.04784867304311 - sys_corr_105: 6.926723795488674 - sys_corr_106: 1.8493669422643721 - sys_corr_107: -0.15735609982382723 - sys_corr_108: 1.461384134641018 - sys_corr_109: 0.4041585633365054 - sys_corr_110: 0.04006582401968823 - sys_corr_111: 0.05322568534715619 - sys_corr_112: -0.0391194130536571 - sys_corr_113: -0.10386232341884277 - sys_corr_114: -0.0016177351370911092 - sys_corr_115: -0.04761250055366582 - sys_corr_116: 0.019378572426714015 - sys_corr_117: 0.02145559560723255 - sys_corr_118: -0.13085070581757036 - sys_corr_119: -0.008239555453004472 - sys_corr_120: -0.029590629126760953 - sys_corr_121: -0.007550629334876521 - sys_corr_122: 0.05311793662757712 - sys_corr_123: 0.09448871461863982 - sys_corr_124: -0.00946416853810409 - sys_corr_125: -0.0521882679481823 - sys_corr_126: -0.024733192713404732 - sys_corr_127: -0.7580954647279117 - sys_corr_128: -0.6509317197067536 - sys_corr_129: -0.11078148739787101 - sys_corr_130: 0.010512901415710605 - sys_corr_131: 0.03558129306249683 - sys_corr_132: -0.057707486600836994 + sys_corr_4: -72.0077689974656 + sys_corr_5: 49.829648792795 + sys_corr_6: -94.76522388941643 + sys_corr_7: 13.163912522623484 + sys_corr_8: 7.600771659990058 + sys_corr_9: 14.580470730774692 + sys_corr_10: -3.8108524839487012 + sys_corr_11: 7.443656128042112 + sys_corr_12: 6.088797974990488 + sys_corr_13: -6.5696467771846825 + sys_corr_14: -1.5342637551203304 + sys_corr_15: 3.070934667061028 + sys_corr_16: -4.274832071134701 + sys_corr_17: 13.978036384671302 + sys_corr_18: 14.9854848789734 + sys_corr_19: -7.894711630390213 + sys_corr_20: -9.958760384501423 + sys_corr_21: -14.215555406409495 + sys_corr_22: -49.43013185097305 + sys_corr_23: 3.435270971429641 + sys_corr_24: 32.81039575962834 + sys_corr_25: 12.227015303469265 + sys_corr_26: 26.669296069596705 + sys_corr_27: -3.088290677358452 + sys_corr_28: 3.9685183430192486 + sys_corr_29: -3.7215975591537425 + sys_corr_30: -7.803960725130166 + sys_corr_31: -37.837714587219295 + sys_corr_32: -0.509079326571352 + sys_corr_33: -7.389474471698798 + sys_corr_34: 4.017802125604005 + sys_corr_35: 4.90204992441068 + sys_corr_36: 8.66442625761386 + sys_corr_37: -11.199018099261759 + sys_corr_38: -5.888593294821986 + sys_corr_39: 3.75921272174654 + sys_corr_40: -5.720199619281027 + sys_corr_41: 3.533308193201405 + sys_corr_42: -2.986478133196955 + sys_corr_43: -5.907014383634945 + sys_corr_44: -4.216606261420566 + sys_corr_45: 19.547044985489194 + sys_corr_46: 1.0651623841020457 + sys_corr_47: 5.438296729126636 + sys_corr_48: -11.850384698477761 + sys_corr_49: -2.7053251769103173 + sys_corr_50: -0.7637331895935116 + sys_corr_51: -4.17666126744068 + sys_corr_52: 1.4671902081789037 + sys_corr_53: -2.2212645526509696 + sys_corr_54: -6.083054089469398 + sys_corr_55: -4.0161871588815234 + sys_corr_56: -6.653854589635717 + sys_corr_57: -12.730921658931708 + sys_corr_58: -10.41824296591698 + sys_corr_59: -2.5450574243529767 + sys_corr_60: 4.621741803624437 + sys_corr_61: 4.197286837150427 + sys_corr_62: 14.01920449245187 + sys_corr_63: 13.906264110676341 + sys_corr_64: -1.1809475658750983 + sys_corr_65: 1.5796976713803987 + sys_corr_66: 4.7406729479550105 + sys_corr_67: -7.572332743006993 + sys_corr_68: -4.417437765165689 + sys_corr_69: 9.519158471510643 + sys_corr_70: 5.507564813304943 + sys_corr_71: -4.696740999927536 + sys_corr_72: -16.670926482564603 + sys_corr_73: -10.962337033166364 + sys_corr_74: -1.6124527532780617 + sys_corr_75: -13.024607358054272 + sys_corr_76: 16.64992201259588 + sys_corr_77: 0.06974217001473047 + sys_corr_78: 190.26657109416576 + sys_corr_79: 4.087695523376385 + sys_corr_80: 52.272806591697766 + sys_corr_81: 0.15166570260320397 + sys_corr_82: -17.097979014415913 + sys_corr_83: -7.852853827857127 + sys_corr_84: -28.636202027770207 + sys_corr_85: -15.115296634957406 + sys_corr_86: 2.46073719361706 + sys_corr_87: -40.54409167538296 + sys_corr_88: -7.8886845922886275 + sys_corr_89: 0.23994524156544988 + sys_corr_90: -11.918339773850755 + sys_corr_91: -24.051112512610256 + sys_corr_92: -6.736289014355158 + sys_corr_93: 0.35074740733995535 + sys_corr_94: -0.6648185858052637 + sys_corr_95: -0.4212203992944203 + sys_corr_96: -0.04028988054649623 + sys_corr_97: 1.0922102371429994 + sys_corr_98: 0.992077187583593 + sys_corr_99: 0.9157375250278675 + sys_corr_100: 2.453553766010315 + sys_corr_101: 4.2767238424903935 + sys_corr_102: 16.76930560971391 + sys_corr_103: -6.0478486730450305 + sys_corr_104: -6.926723795496596 + sys_corr_105: 2.610301622073082 + sys_corr_106: 1.8493669422635346 + sys_corr_107: 1.4613841346407779 + sys_corr_108: 0.4041585633363778 + sys_corr_109: -0.04006582401962404 + sys_corr_110: 0.15735609982464863 + sys_corr_111: -0.05322568534690033 + sys_corr_112: -0.039119413053601476 + sys_corr_113: 0.10386232341887551 + sys_corr_114: -0.0016177351370906517 + sys_corr_115: -0.047612500553682165 + sys_corr_116: -0.019378572426684282 + sys_corr_117: -0.021455595607256916 + sys_corr_118: 0.1308507058175956 + sys_corr_119: 0.008239555453006973 + sys_corr_120: 0.02959062912676639 + sys_corr_121: 0.00755062933488131 + sys_corr_122: 0.09448871461863352 + sys_corr_123: 0.05311793662757863 + sys_corr_124: -0.009464168538093159 + sys_corr_125: -0.05218826794818711 + sys_corr_126: 0.024733192713400114 + sys_corr_127: -0.7580954647284082 + sys_corr_128: -0.650931719706697 + sys_corr_129: -0.11078148739785218 + sys_corr_130: 0.01051290141570789 + sys_corr_131: -0.03558129306248996 + sys_corr_132: -0.05770748660083498 stat: 0.0 luminosity: 215.63733400000004 -- sys_corr_1: 85.71132527631039 - sys_corr_2: 34.921423457799236 - sys_corr_3: -33.98004235323225 - sys_corr_4: -52.84282543964785 - sys_corr_5: 41.4867075078747 - sys_corr_6: -83.45958698549025 - sys_corr_7: 15.554878740163781 - sys_corr_8: 7.28316045456845 - sys_corr_9: 13.717935380738725 - sys_corr_10: -2.3864357720623737 - sys_corr_11: 3.847125157754214 - sys_corr_12: 7.235308775003411 - sys_corr_13: 4.028616806591337 - sys_corr_14: 1.4739925498712598 - sys_corr_15: -2.448375627828738 - sys_corr_16: -0.03176681803295423 - sys_corr_17: -5.901964889891622 - sys_corr_18: -6.7693827121868795 - sys_corr_19: 1.3319187447631162 - sys_corr_20: -7.5813451170246635 - sys_corr_21: -14.198521938864593 - sys_corr_22: -42.58315138765235 - sys_corr_23: 2.7175898858461784 - sys_corr_24: 9.064106060708617 - sys_corr_25: 11.144980519432863 - sys_corr_26: 28.869771805809854 - sys_corr_27: -10.369150211877203 - sys_corr_28: 1.3212423639006248 - sys_corr_29: 0.4258324061716811 - sys_corr_30: -11.492295906993574 - sys_corr_31: -28.054500259084318 - sys_corr_32: -2.709715091917818 - sys_corr_33: -2.0253551927439 - sys_corr_34: 0.8661000382166604 - sys_corr_35: 5.733665883189572 - sys_corr_36: -4.465676063258938 - sys_corr_37: 8.609067849910542 - sys_corr_38: 4.923137502642073 - sys_corr_39: -5.5279974751243905 - sys_corr_40: 7.342953909027957 - sys_corr_41: 3.8887201596737677 - sys_corr_42: -14.608906236014823 - sys_corr_43: -10.162862407725788 - sys_corr_44: -11.21931329518509 - sys_corr_45: -1.7180978438201842 - sys_corr_46: -1.7234826068077502 - sys_corr_47: -6.5840186421667095 - sys_corr_48: 8.805572512287762 - sys_corr_49: 4.218360624756208 - sys_corr_50: -11.000323120923646 - sys_corr_51: 2.666225233215848 - sys_corr_52: 1.2184269018990235 - sys_corr_53: 4.238767294718524 - sys_corr_54: -3.13043458807094 - sys_corr_55: -0.124113033043177 - sys_corr_56: 8.047122062698014 - sys_corr_57: -7.635172242968452 - sys_corr_58: -4.704937555273201 - sys_corr_59: 6.178497929302438 - sys_corr_60: -1.2693768534269274 - sys_corr_61: -8.142629990509828 - sys_corr_62: -1.3240047440067522 - sys_corr_63: 0.27502666043989293 - sys_corr_64: 1.1135717785462915 - sys_corr_65: 3.8420947896393534 - sys_corr_66: -1.1976473730697346 - sys_corr_67: 3.703286877792862 - sys_corr_68: -0.2788919717917604 - sys_corr_69: -0.5278590579905106 - sys_corr_70: 9.975928695284471 - sys_corr_71: -2.3861939062690345 - sys_corr_72: 8.631110211647705 - sys_corr_73: 13.49055373259893 - sys_corr_74: 4.576317218115951 - sys_corr_75: 5.129181608351209 - sys_corr_76: 6.4874766570256925 - sys_corr_77: 36.8121548529194 - sys_corr_78: 26.27044073887932 - sys_corr_79: 0.03390987787928875 - sys_corr_80: 43.182184920116285 - sys_corr_81: -21.275606798595508 - sys_corr_82: 10.79668298456223 - sys_corr_83: 9.320549799271669 - sys_corr_84: 134.59725302111607 - sys_corr_85: -117.26117325597491 - sys_corr_86: 5.8685431334682265 - sys_corr_87: 21.370318882855173 - sys_corr_88: -10.167403289421467 - sys_corr_89: -19.481120863320143 - sys_corr_90: 23.026639936611847 - sys_corr_91: -41.72942945193404 - sys_corr_92: -8.620006948660366 - sys_corr_93: -0.09134981808984552 - sys_corr_94: -2.332206255120714 - sys_corr_95: 0.24342596508117975 - sys_corr_96: -0.8403689949702233 - sys_corr_97: -3.578795067970382 - sys_corr_98: 1.2596501385980718 - sys_corr_99: -3.382443817722187 - sys_corr_100: 0.5481432429138948 - sys_corr_101: -0.9177387696305082 - sys_corr_102: 4.043928784711321 - sys_corr_103: -19.083422491127443 - sys_corr_104: -1.9567734329777227 - sys_corr_105: -8.057661220020384 - sys_corr_106: -0.8980330734294037 - sys_corr_107: 3.0150842706738556 - sys_corr_108: 0.22157193403248499 - sys_corr_109: -0.06772366456880916 - sys_corr_110: -0.6865032688070026 - sys_corr_111: 0.30521235610432856 - sys_corr_112: 0.1890667956265395 - sys_corr_113: -0.07418399955233006 - sys_corr_114: -0.0004393921220980536 - sys_corr_115: -0.11520811215298067 - sys_corr_116: -0.021928843553162953 - sys_corr_117: -0.009538984685021911 - sys_corr_118: -0.012677272773449478 - sys_corr_119: -0.009066206689892612 - sys_corr_120: 0.011273514124099352 - sys_corr_121: -0.011080979222456152 - sys_corr_122: 0.015070806960008763 - sys_corr_123: 0.01653509607564618 - sys_corr_124: -0.048289871629678245 - sys_corr_125: -0.016247751335941564 - sys_corr_126: -0.005639292046230366 - sys_corr_127: 0.74367677914027 - sys_corr_128: -0.025630147262311862 - sys_corr_129: -0.06932751656552472 - sys_corr_130: -0.013262768885447751 - sys_corr_131: -0.011077300738344205 - sys_corr_132: -0.04102412219729342 +- sys_corr_1: 85.71132527631026 + sys_corr_2: 34.921423457799364 + sys_corr_3: -33.98004235323233 + sys_corr_4: -52.842825439647655 + sys_corr_5: 41.48670750787437 + sys_corr_6: -83.45958698549023 + sys_corr_7: 15.55487874016392 + sys_corr_8: 7.283160454569175 + sys_corr_9: 13.717935380738934 + sys_corr_10: -2.3864357720632237 + sys_corr_11: 3.8471251577547774 + sys_corr_12: 7.235308775003311 + sys_corr_13: -4.028616806591348 + sys_corr_14: -1.4739925498711792 + sys_corr_15: 2.448375627828632 + sys_corr_16: 0.03176681803254013 + sys_corr_17: -5.901964889891491 + sys_corr_18: 6.76938271218691 + sys_corr_19: 1.33191874476346 + sys_corr_20: -7.581345117025282 + sys_corr_21: -14.198521938864225 + sys_corr_22: -42.58315138765223 + sys_corr_23: 2.7175898858465573 + sys_corr_24: 9.064106060708655 + sys_corr_25: 11.144980519433208 + sys_corr_26: 28.869771805810192 + sys_corr_27: -10.369150211878154 + sys_corr_28: 1.3212423639011153 + sys_corr_29: 0.42583240617198825 + sys_corr_30: -11.492295906993778 + sys_corr_31: -28.054500259084715 + sys_corr_32: 2.7097150919172623 + sys_corr_33: 2.0253551927452893 + sys_corr_34: 0.8661000382173362 + sys_corr_35: 5.733665883189887 + sys_corr_36: -4.465676063257562 + sys_corr_37: -8.60906784991304 + sys_corr_38: -4.923137502641071 + sys_corr_39: 5.527997475124549 + sys_corr_40: -7.342953909029286 + sys_corr_41: 3.88872015967346 + sys_corr_42: 14.608906236017212 + sys_corr_43: -10.162862407719109 + sys_corr_44: -11.219313295186424 + sys_corr_45: 1.718097843822207 + sys_corr_46: 1.7234826068075073 + sys_corr_47: 6.584018642166178 + sys_corr_48: -8.80557251228733 + sys_corr_49: -4.218360624757862 + sys_corr_50: -11.000323120922548 + sys_corr_51: 2.6662252332154477 + sys_corr_52: 1.2184269019004184 + sys_corr_53: -4.23876729471951 + sys_corr_54: 3.1304345880719473 + sys_corr_55: 0.12411303304117413 + sys_corr_56: -8.047122062698083 + sys_corr_57: -7.635172242964096 + sys_corr_58: 4.704937555278515 + sys_corr_59: 6.178497929300649 + sys_corr_60: 1.2693768534271839 + sys_corr_61: 8.1426299905097 + sys_corr_62: 1.3240047440025609 + sys_corr_63: 0.2750266604385503 + sys_corr_64: 1.1135717785474717 + sys_corr_65: 3.8420947896402025 + sys_corr_66: 1.1976473730700115 + sys_corr_67: 3.703286877795251 + sys_corr_68: 0.2788919717887537 + sys_corr_69: -0.5278590579866379 + sys_corr_70: -9.975928695282084 + sys_corr_71: -2.386193906273651 + sys_corr_72: -8.631110211646936 + sys_corr_73: -13.490553732599482 + sys_corr_74: 4.576317218111625 + sys_corr_75: 5.1291816083488495 + sys_corr_76: 6.487476657029009 + sys_corr_77: -36.81215485290331 + sys_corr_78: -43.18218492010808 + sys_corr_79: 26.270440738877483 + sys_corr_80: 0.03390987788073277 + sys_corr_81: 21.275606798591625 + sys_corr_82: -10.796682984562853 + sys_corr_83: 9.320549799275335 + sys_corr_84: -134.59725302110385 + sys_corr_85: -117.261173255999 + sys_corr_86: -5.868543133492147 + sys_corr_87: -21.370318882854317 + sys_corr_88: -10.167403289417308 + sys_corr_89: 23.026639936610465 + sys_corr_90: -19.48112086332004 + sys_corr_91: -41.72942945192943 + sys_corr_92: 8.620006948662521 + sys_corr_93: -0.0913498180900494 + sys_corr_94: -2.332206255121851 + sys_corr_95: 0.24342596508210126 + sys_corr_96: 0.8403689949705131 + sys_corr_97: -3.578795067971371 + sys_corr_98: -1.2596501385985026 + sys_corr_99: -3.3824438177227076 + sys_corr_100: -0.9177387696291945 + sys_corr_101: -4.0439287847052725 + sys_corr_102: -19.083422491125805 + sys_corr_103: 1.9567734329797966 + sys_corr_104: 8.057661220029551 + sys_corr_105: -0.5481432429132118 + sys_corr_106: -0.8980330734285831 + sys_corr_107: 0.2215719340326753 + sys_corr_108: -0.06772366456871107 + sys_corr_109: 0.6865032688070382 + sys_corr_110: -3.0150842706747873 + sys_corr_111: -0.305212356104499 + sys_corr_112: 0.18906679562653247 + sys_corr_113: 0.0741839995523123 + sys_corr_114: -0.0004393921220967154 + sys_corr_115: -0.11520811215299286 + sys_corr_116: 0.021928843553157638 + sys_corr_117: 0.00953898468504462 + sys_corr_118: 0.012677272773426227 + sys_corr_119: 0.009066206689891984 + sys_corr_120: -0.011273514124103537 + sys_corr_121: 0.011080979222458896 + sys_corr_122: 0.016535096075640944 + sys_corr_123: 0.01507080696000574 + sys_corr_124: -0.04828987162969172 + sys_corr_125: -0.016247751335933792 + sys_corr_126: 0.00563929204622928 + sys_corr_127: 0.7436767791404736 + sys_corr_128: -0.025630147262317413 + sys_corr_129: -0.06932751656553653 + sys_corr_130: -0.013262768885452064 + sys_corr_131: 0.011077300738342665 + sys_corr_132: -0.04102412219728707 stat: 0.0 luminosity: 196.52111600000003 - sys_corr_1: 83.33484344268913 - sys_corr_2: 37.340315511032244 - sys_corr_3: -18.917827842603415 - sys_corr_4: -54.04731471279828 - sys_corr_5: 13.69310167596003 - sys_corr_6: -31.27216517242967 - sys_corr_7: 20.626162058779226 - sys_corr_8: 16.552616582742594 - sys_corr_9: 21.07049801185983 - sys_corr_10: 1.6362383787092403 - sys_corr_11: 17.709280461801114 - sys_corr_12: 17.65831670835743 - sys_corr_13: 12.13651220563427 - sys_corr_14: 2.6104510296124532e-05 - sys_corr_15: -4.417636518980884 - sys_corr_16: -1.4701834702558294 - sys_corr_17: 2.804470765316017 - sys_corr_18: 3.143889230260834 - sys_corr_19: -0.457948693818812 - sys_corr_20: -11.550715472237883 - sys_corr_21: 2.8088763677851465 - sys_corr_22: -9.269795014921497 - sys_corr_23: 0.5092564752145736 - sys_corr_24: 42.16517305561121 + sys_corr_2: 37.34031551103229 + sys_corr_3: -18.91782784260337 + sys_corr_4: -54.04731471279837 + sys_corr_5: 13.693101675960085 + sys_corr_6: -31.272165172429705 + sys_corr_7: 20.62616205877929 + sys_corr_8: 16.552616582743557 + sys_corr_9: 21.07049801186016 + sys_corr_10: 1.6362383787077428 + sys_corr_11: 17.70928046180288 + sys_corr_12: 17.65831670835674 + sys_corr_13: -12.13651220563386 + sys_corr_14: -2.6104510426420155e-05 + sys_corr_15: 4.4176365189809035 + sys_corr_16: 1.4701834702558116 + sys_corr_17: 2.804470765316328 + sys_corr_18: -3.143889230260681 + sys_corr_19: -0.45794869381876224 + sys_corr_20: -11.550715472237655 + sys_corr_21: 2.808876367785248 + sys_corr_22: -9.269795014921035 + sys_corr_23: 0.5092564752144645 + sys_corr_24: 42.1651730556113 sys_corr_25: 13.852027880734276 - sys_corr_26: 24.537405444810748 - sys_corr_27: -7.978082136430154 - sys_corr_28: 8.538270682979917 - sys_corr_29: -8.371725920838609 - sys_corr_30: -18.161564748044025 - sys_corr_31: -16.94285962553101 - sys_corr_32: -1.191153026668206 - sys_corr_33: -3.0287611323172694 - sys_corr_34: 9.38430104545479 - sys_corr_35: 3.2587179178628305 - sys_corr_36: 10.138105225591623 - sys_corr_37: 9.461597884935939 - sys_corr_38: 6.302759149409477 - sys_corr_39: -5.995843859913579 - sys_corr_40: 12.373031388663431 - sys_corr_41: 18.936614998244778 - sys_corr_42: -4.0139237440692375 - sys_corr_43: -11.835501091066808 - sys_corr_44: -14.355006967878442 - sys_corr_45: -0.8272275976873422 - sys_corr_46: -12.464313419461304 - sys_corr_47: 5.531389558725018 - sys_corr_48: 11.913916106686912 - sys_corr_49: -2.806436493550661 - sys_corr_50: -12.731028665553714 - sys_corr_51: 0.33566651499213207 - sys_corr_52: 7.368868912019132 - sys_corr_53: 1.952810816105447 - sys_corr_54: -1.376557525946071 - sys_corr_55: -0.47238788041078933 - sys_corr_56: 22.061621538454364 - sys_corr_57: -17.500640784768915 - sys_corr_58: 14.365984039047644 - sys_corr_59: -11.400733939168775 - sys_corr_60: 1.7250586665856535 - sys_corr_61: -21.575424797636906 - sys_corr_62: -66.85852924062321 - sys_corr_63: 28.70658800728315 - sys_corr_64: 0.9155870360890997 - sys_corr_65: -26.128352148343733 - sys_corr_66: -79.7302905615511 - sys_corr_67: -37.84671205927362 - sys_corr_68: 63.71870110762019 - sys_corr_69: -106.89471990053873 - sys_corr_70: -189.54165661151106 - sys_corr_71: 0.5811005509052274 - sys_corr_72: -6.597730848282464 - sys_corr_73: -32.56219858388887 - sys_corr_74: -10.119811586401408 - sys_corr_75: 17.501890042763357 - sys_corr_76: -39.086252674620845 - sys_corr_77: 12.694173502612099 - sys_corr_78: 4.140773907480815 - sys_corr_79: -0.45455705685967 - sys_corr_80: 3.216838480376525 - sys_corr_81: 0.832186403762574 - sys_corr_82: 5.732359059639111 - sys_corr_83: 6.045484054152658 - sys_corr_84: 0.7887208555931441 - sys_corr_85: -3.8454375320305307 - sys_corr_86: 1.5892336931577988 - sys_corr_87: -21.358910908096306 - sys_corr_88: 12.084002211245206 - sys_corr_89: -5.68182826788207 - sys_corr_90: 3.260658038767312 - sys_corr_91: 4.6703603105193405 - sys_corr_92: -7.657324319012153 - sys_corr_93: -0.17748305736539519 - sys_corr_94: -1.2953030538806702 - sys_corr_95: -0.6105914652270109 - sys_corr_96: -0.05336756396045368 - sys_corr_97: 0.6396886018785299 - sys_corr_98: -0.2516386483755756 - sys_corr_99: 0.27887621827866405 - sys_corr_100: -0.6615398512883333 - sys_corr_101: 0.22497822370567758 - sys_corr_102: -0.31435692958514516 - sys_corr_103: 0.38423613767524223 - sys_corr_104: 0.6778269834950975 - sys_corr_105: 0.20950529039509092 - sys_corr_106: 0.550856387285309 - sys_corr_107: 0.18259594235641985 - sys_corr_108: 0.44426311586525574 - sys_corr_109: -0.08905786480491856 - sys_corr_110: -0.2654915978418024 - sys_corr_111: 0.11113818065222654 - sys_corr_112: 0.19697192461010485 - sys_corr_113: 0.049480567184854315 - sys_corr_114: 0.0009352492596281942 - sys_corr_115: 0.05662706440460377 - sys_corr_116: 0.046062048059516136 - sys_corr_117: 0.03140927031589625 - sys_corr_118: -0.06937811115715717 - sys_corr_119: 0.002772043518627012 - sys_corr_120: -0.019489022324406007 - sys_corr_121: -0.003483214128500375 - sys_corr_122: 0.004720448817888545 - sys_corr_123: 0.010808502934778703 - sys_corr_124: -0.045941692244445304 - sys_corr_125: -0.013371293509438217 - sys_corr_126: 0.0016957052813243243 - sys_corr_127: 0.16371184406986822 - sys_corr_128: -0.30410984211282965 - sys_corr_129: -0.07247502956742763 - sys_corr_130: -0.0033278141114917435 - sys_corr_131: 0.013329121986313744 - sys_corr_132: 0.04963922509030633 + sys_corr_26: 24.53740544481046 + sys_corr_27: -7.978082136430875 + sys_corr_28: 8.538270682980837 + sys_corr_29: -8.37172592083874 + sys_corr_30: -18.161564748043876 + sys_corr_31: -16.94285962553123 + sys_corr_32: 1.1911530266679768 + sys_corr_33: 3.0287611323194517 + sys_corr_34: 9.3843010454533 + sys_corr_35: 3.2587179178625845 + sys_corr_36: 10.138105225593081 + sys_corr_37: -9.461597884938687 + sys_corr_38: -6.3027591494076605 + sys_corr_39: 5.995843859913053 + sys_corr_40: -12.373031388665332 + sys_corr_41: 18.936614998242685 + sys_corr_42: 4.013923744073476 + sys_corr_43: -11.835501091066433 + sys_corr_44: -14.355006967878305 + sys_corr_45: 0.8272275976952395 + sys_corr_46: 12.464313419460757 + sys_corr_47: -5.5313895587263735 + sys_corr_48: -11.913916106687546 + sys_corr_49: 2.806436493548839 + sys_corr_50: -12.731028665551307 + sys_corr_51: 0.33566651499194944 + sys_corr_52: 7.368868912021637 + sys_corr_53: -1.9528108161062252 + sys_corr_54: 1.3765575259476188 + sys_corr_55: 0.4723878804083956 + sys_corr_56: -22.06162153845458 + sys_corr_57: -17.50064078475781 + sys_corr_58: -14.365984039055775 + sys_corr_59: -11.400733939153444 + sys_corr_60: -1.725058666587226 + sys_corr_61: 21.575424797641105 + sys_corr_62: 66.85852924062178 + sys_corr_63: 28.706588007282814 + sys_corr_64: 0.9155870360946736 + sys_corr_65: -26.128352148337246 + sys_corr_66: 79.73029056155393 + sys_corr_67: -37.84671205926369 + sys_corr_68: -63.718701107604794 + sys_corr_69: -106.89471990058408 + sys_corr_70: 189.5416566115475 + sys_corr_71: 0.5811005509482009 + sys_corr_72: 6.59773084827845 + sys_corr_73: 32.56219858389082 + sys_corr_74: -10.119811586412553 + sys_corr_75: 17.501890042804465 + sys_corr_76: -39.086252674612055 + sys_corr_77: -12.694173502612749 + sys_corr_78: -3.2168384803752375 + sys_corr_79: 4.140773907480918 + sys_corr_80: -0.4545570568591472 + sys_corr_81: -0.8321864037639318 + sys_corr_82: -5.732359059639721 + sys_corr_83: 6.04548405415153 + sys_corr_84: -0.7887208555936728 + sys_corr_85: -3.8454375320307976 + sys_corr_86: -1.5892336931507802 + sys_corr_87: 21.358910908095712 + sys_corr_88: 12.084002211245476 + sys_corr_89: 3.2606580387672874 + sys_corr_90: -5.681828267882 + sys_corr_91: 4.670360310519293 + sys_corr_92: 7.6573243190152 + sys_corr_93: -0.17748305736537928 + sys_corr_94: -1.295303053880485 + sys_corr_95: -0.6105914652272588 + sys_corr_96: 0.05336756396051349 + sys_corr_97: 0.639688601878471 + sys_corr_98: 0.2516386483756604 + sys_corr_99: 0.2788762182787211 + sys_corr_100: 0.22497822370565224 + sys_corr_101: 0.31435692958504324 + sys_corr_102: 0.38423613767508497 + sys_corr_103: -0.6778269834950738 + sys_corr_104: -0.20950529039519653 + sys_corr_105: 0.661539851288484 + sys_corr_106: 0.5508563872853002 + sys_corr_107: 0.44426311586524503 + sys_corr_108: -0.08905786480494451 + sys_corr_109: 0.26549159784179377 + sys_corr_110: -0.182595942356434 + sys_corr_111: -0.11113818065216005 + sys_corr_112: 0.19697192461010257 + sys_corr_113: -0.04948056718488292 + sys_corr_114: 0.0009352492596277272 + sys_corr_115: 0.05662706440464604 + sys_corr_116: -0.046062048059526475 + sys_corr_117: -0.03140927031589132 + sys_corr_118: 0.06937811115714933 + sys_corr_119: -0.0027720435186334913 + sys_corr_120: 0.019489022324410275 + sys_corr_121: 0.003483214128504429 + sys_corr_122: 0.010808502934785344 + sys_corr_123: 0.004720448817895384 + sys_corr_124: -0.045941692244430926 + sys_corr_125: -0.013371293509437842 + sys_corr_126: -0.0016957052813212875 + sys_corr_127: 0.16371184406984224 + sys_corr_128: -0.3041098421127898 + sys_corr_129: -0.07247502956744514 + sys_corr_130: -0.0033278141114911025 + sys_corr_131: -0.013329121986320292 + sys_corr_132: 0.04963922509030099 stat: 0.0 luminosity: 184.345018 -- sys_corr_1: 69.25076114637832 - sys_corr_2: 29.068386988737256 - sys_corr_3: -18.499316744816625 - sys_corr_4: -47.13798047775374 - sys_corr_5: -3.2804550130517645 - sys_corr_6: -10.96625291602461 - sys_corr_7: 26.322268042470867 - sys_corr_8: 21.80213921683412 - sys_corr_9: 26.883684120614195 - sys_corr_10: 3.020770441341667 - sys_corr_11: 22.955205783243176 - sys_corr_12: 23.491608005529795 - sys_corr_13: 16.57583388733901 - sys_corr_14: -5.706022514624593 - sys_corr_15: -0.8214525159008145 - sys_corr_16: -1.790301261917712 - sys_corr_17: 6.408432495221898 - sys_corr_18: 3.0776728013751087 - sys_corr_19: -6.220570559531565 - sys_corr_20: 2.2823862300373463 - sys_corr_21: -13.251290346471311 - sys_corr_22: -9.613904017804494 - sys_corr_23: -2.2850776820291907 - sys_corr_24: 25.961598209679128 - sys_corr_25: 12.028436212940145 - sys_corr_26: 22.50468777069845 - sys_corr_27: -13.035886485439113 - sys_corr_28: 13.822833620238644 - sys_corr_29: -9.756682612698285 - sys_corr_30: -26.096095825843392 - sys_corr_31: -8.960677776114395 - sys_corr_32: 0.7164136371651779 - sys_corr_33: -2.2192386983389696 - sys_corr_34: 7.745949659740043 - sys_corr_35: -0.9440514433271172 - sys_corr_36: 4.463300615091506 - sys_corr_37: 5.138164033172203 - sys_corr_38: 1.9199168045759007 - sys_corr_39: -5.391266405108904 - sys_corr_40: 5.9829683326593965 - sys_corr_41: 8.513152254398502 - sys_corr_42: -0.5457658208346418 - sys_corr_43: -11.382260714432501 - sys_corr_44: -13.890580184671302 - sys_corr_45: -2.7668408998540444 - sys_corr_46: -3.6790468759985484 - sys_corr_47: -0.20978510317397517 - sys_corr_48: -0.04222954254812705 - sys_corr_49: -7.007896576674997 - sys_corr_50: -4.843430011719023 - sys_corr_51: 5.621325886938983 - sys_corr_52: 1.6550981538279221 - sys_corr_53: 2.746324485373572 - sys_corr_54: 0.7505582878956352 - sys_corr_55: -1.9738868039208604 - sys_corr_56: 2.6116808838210637 - sys_corr_57: -7.0575615788868395 - sys_corr_58: 2.0354874041416915 - sys_corr_59: -2.043615342856976 - sys_corr_60: -1.023425608024769 - sys_corr_61: -7.299023629288609 - sys_corr_62: -7.643415753940245 - sys_corr_63: -0.1192457119486384 - sys_corr_64: -2.8201789295594852 - sys_corr_65: -0.6690398253749839 - sys_corr_66: -0.6232383269229237 - sys_corr_67: -2.461294520986475 - sys_corr_68: -3.3364392589948944 - sys_corr_69: 2.110368373275086 - sys_corr_70: 7.146416332054566 - sys_corr_71: -4.764995872573226 - sys_corr_72: 4.933252120965518 - sys_corr_73: 10.78273339847924 - sys_corr_74: 1.1033801428589531 - sys_corr_75: -5.185981785244548 - sys_corr_76: 14.702295842548311 - sys_corr_77: -14.109529816545843 - sys_corr_78: 8.672430535238703 - sys_corr_79: 5.162360233865692 - sys_corr_80: -13.407081460841852 - sys_corr_81: -8.649223881237713 - sys_corr_82: -1.9424440230168492 - sys_corr_83: -14.9413492967093 - sys_corr_84: -70.66929203547026 - sys_corr_85: -126.52032525455246 - sys_corr_86: 4.730181968239503 - sys_corr_87: 8.896970597530528 - sys_corr_88: -7.540595232745751 - sys_corr_89: 11.623726114667821 - sys_corr_90: 25.386385890508727 - sys_corr_91: 131.56489854034265 - sys_corr_92: -2.1232935792163063 - sys_corr_93: -1.0688413564625345 - sys_corr_94: -4.30685672573371 - sys_corr_95: -2.27195396203563 - sys_corr_96: 0.2280170108923012 - sys_corr_97: 0.6657676619637816 - sys_corr_98: -0.3905712579162688 - sys_corr_99: -0.372886783900123 - sys_corr_100: -0.95818116547641 - sys_corr_101: 0.6472386315144929 - sys_corr_102: -0.44029503014148486 - sys_corr_103: -3.100326623184088 - sys_corr_104: -1.3632847117003764 - sys_corr_105: -1.3943642622083785 - sys_corr_106: 1.0545445557699689 - sys_corr_107: -0.23188347036424653 - sys_corr_108: 1.0791010560257002 - sys_corr_109: -0.7327539757646098 - sys_corr_110: 0.23993212610106562 - sys_corr_111: 0.6332968480486137 - sys_corr_112: 0.5179968440265792 - sys_corr_113: -0.10444556853588911 - sys_corr_114: 0.0024055157020177903 - sys_corr_115: 0.24176789004466107 - sys_corr_116: -0.0039339744544867146 - sys_corr_117: -0.008906266053179832 - sys_corr_118: -0.2023667923455397 - sys_corr_119: -0.004760045667577075 - sys_corr_120: 0.003777830057282214 - sys_corr_121: -0.018178905041459026 - sys_corr_122: 0.04178476291212079 - sys_corr_123: 0.05516678030077304 - sys_corr_124: 0.07905839694545456 - sys_corr_125: -0.030974958727898193 - sys_corr_126: -0.007337974167316399 - sys_corr_127: 0.3942122050626818 - sys_corr_128: -0.030332334344587795 - sys_corr_129: 0.06766790217376194 - sys_corr_130: -0.02217015479446806 - sys_corr_131: 0.008896303910939903 - sys_corr_132: 0.08464446232072026 +- sys_corr_1: 69.2507611463783 + sys_corr_2: 29.06838698873724 + sys_corr_3: -18.499316744816568 + sys_corr_4: -47.13798047775376 + sys_corr_5: -3.2804550130516676 + sys_corr_6: -10.966252916024574 + sys_corr_7: 26.3222680424709 + sys_corr_8: 21.80213921683532 + sys_corr_9: 26.883684120614646 + sys_corr_10: 3.0207704413396677 + sys_corr_11: 22.955205783245486 + sys_corr_12: 23.491608005528867 + sys_corr_13: -16.57583388733862 + sys_corr_14: 5.706022514624456 + sys_corr_15: 0.8214525159009124 + sys_corr_16: 1.7903012619178817 + sys_corr_17: 6.408432495222007 + sys_corr_18: -3.077672801374983 + sys_corr_19: -6.2205705595316845 + sys_corr_20: 2.2823862300371838 + sys_corr_21: -13.251290346471155 + sys_corr_22: -9.613904017804723 + sys_corr_23: -2.2850776820289234 + sys_corr_24: 25.96159820967922 + sys_corr_25: 12.028436212940312 + sys_corr_26: 22.504687770698734 + sys_corr_27: -13.035886485439674 + sys_corr_28: 13.822833620238985 + sys_corr_29: -9.75668261269786 + sys_corr_30: -26.09609582584339 + sys_corr_31: -8.960677776114338 + sys_corr_32: -0.7164136371645518 + sys_corr_33: 2.219238698340328 + sys_corr_34: 7.74594965973978 + sys_corr_35: -0.9440514433276507 + sys_corr_36: 4.463300615092284 + sys_corr_37: -5.138164033173372 + sys_corr_38: -1.9199168045753126 + sys_corr_39: 5.391266405108976 + sys_corr_40: -5.982968332660522 + sys_corr_41: 8.513152254397296 + sys_corr_42: 0.5457658208376451 + sys_corr_43: -11.382260714433658 + sys_corr_44: -13.890580184671245 + sys_corr_45: 2.766840899855981 + sys_corr_46: 3.6790468759968427 + sys_corr_47: 0.2097851031726458 + sys_corr_48: 0.042229542547518144 + sys_corr_49: 7.00789657667546 + sys_corr_50: -4.8434300117183575 + sys_corr_51: 5.621325886938823 + sys_corr_52: 1.6550981538280534 + sys_corr_53: -2.7463244853731057 + sys_corr_54: -0.7505582878965594 + sys_corr_55: 1.9738868039202537 + sys_corr_56: -2.6116808838218413 + sys_corr_57: -7.057561578885068 + sys_corr_58: -2.0354874041430966 + sys_corr_59: -2.0436153428543014 + sys_corr_60: 1.0234256080238444 + sys_corr_61: 7.299023629289866 + sys_corr_62: 7.643415753938119 + sys_corr_63: -0.1192457119480729 + sys_corr_64: -2.8201789295590625 + sys_corr_65: -0.6690398253781908 + sys_corr_66: 0.6232383269234895 + sys_corr_67: -2.4612945209884076 + sys_corr_68: 3.3364392589935052 + sys_corr_69: 2.1103683732745915 + sys_corr_70: -7.146416332053598 + sys_corr_71: -4.7649958725745165 + sys_corr_72: -4.933252120965964 + sys_corr_73: -10.782733398477308 + sys_corr_74: 1.1033801428600885 + sys_corr_75: -5.185981785259045 + sys_corr_76: 14.702295842545455 + sys_corr_77: 14.109529816553245 + sys_corr_78: 13.407081460841635 + sys_corr_79: 8.67243053523858 + sys_corr_80: 5.162360233863486 + sys_corr_81: 8.649223881241918 + sys_corr_82: 1.9424440230185092 + sys_corr_83: -14.941349296708147 + sys_corr_84: 70.66929203549786 + sys_corr_85: -126.5203252545389 + sys_corr_86: -4.730181968250876 + sys_corr_87: -8.896970597529757 + sys_corr_88: -7.540595232739411 + sys_corr_89: 25.386385890514923 + sys_corr_90: 11.623726114667997 + sys_corr_91: 131.56489854034584 + sys_corr_92: 2.1232935792158822 + sys_corr_93: -1.0688413564623123 + sys_corr_94: -4.30685672573314 + sys_corr_95: -2.2719539620361666 + sys_corr_96: -0.22801701089202162 + sys_corr_97: 0.6657676619634831 + sys_corr_98: 0.39057125791625025 + sys_corr_99: -0.3728867839002929 + sys_corr_100: 0.6472386315148259 + sys_corr_101: 0.44029503014265553 + sys_corr_102: -3.1003266231832995 + sys_corr_103: 1.3632847117009113 + sys_corr_104: 1.3943642622097805 + sys_corr_105: 0.9581811654768759 + sys_corr_106: 1.0545445557701312 + sys_corr_107: 1.0791010560257668 + sys_corr_108: -0.732753975764538 + sys_corr_109: -0.23993212610107711 + sys_corr_110: 0.23188347036405796 + sys_corr_111: -0.6332968480486264 + sys_corr_112: 0.5179968440265943 + sys_corr_113: 0.10444556853586767 + sys_corr_114: 0.002405515702015025 + sys_corr_115: 0.24176789004466134 + sys_corr_116: 0.003933974454510034 + sys_corr_117: 0.008906266053167538 + sys_corr_118: 0.20236679234556096 + sys_corr_119: 0.004760045667574425 + sys_corr_120: -0.0037778300572579144 + sys_corr_121: 0.018178905041463952 + sys_corr_122: 0.05516678030078281 + sys_corr_123: 0.04178476291211641 + sys_corr_124: 0.07905839694549503 + sys_corr_125: -0.03097495872790656 + sys_corr_126: 0.00733797416732062 + sys_corr_127: 0.3942122050627528 + sys_corr_128: -0.030332334344529352 + sys_corr_129: 0.06766790217376889 + sys_corr_130: -0.022170154794463118 + sys_corr_131: -0.00889630391092331 + sys_corr_132: 0.08464446232071654 stat: 0.0 luminosity: 161.920308 -- sys_corr_1: 56.017544238760074 - sys_corr_2: 29.20747166602408 - sys_corr_3: -22.073490091128665 - sys_corr_4: -37.77888723337327 - sys_corr_5: -6.134678979862601 - sys_corr_6: -1.3594691652116104 - sys_corr_7: 22.859919118780304 - sys_corr_8: 22.518624944830556 - sys_corr_9: 25.949881432433017 - sys_corr_10: 6.11840853688118 - sys_corr_11: 26.338119179159854 - sys_corr_12: 26.35655284947847 - sys_corr_13: 18.941936796420226 - sys_corr_14: -3.288345757665777 - sys_corr_15: -4.0469927551340215 - sys_corr_16: 1.8175551415655613 - sys_corr_17: 4.876846108949357 - sys_corr_18: 2.5465714391926135 - sys_corr_19: -3.9747636798636963 - sys_corr_20: -16.649207764527425 - sys_corr_21: -14.927072109510586 - sys_corr_22: -8.811585834673402 - sys_corr_23: -1.345500236184181 - sys_corr_24: 23.190207348661517 - sys_corr_25: 12.545736104583757 - sys_corr_26: 25.340497218029448 - sys_corr_27: -17.87752402729893 - sys_corr_28: 14.040230210518883 - sys_corr_29: -6.482245330492638 - sys_corr_30: -24.830178620340607 - sys_corr_31: -10.151352387889494 - sys_corr_32: -0.1621507929850855 - sys_corr_33: -1.5347568684989654 - sys_corr_34: 6.39152796092976 - sys_corr_35: -0.8782415108587502 - sys_corr_36: 1.356546183100847 - sys_corr_37: 1.0430881599412203 - sys_corr_38: 1.5526287359984523 - sys_corr_39: -3.145913436383612 - sys_corr_40: 2.9625494223695226 - sys_corr_41: 6.576612650323451 - sys_corr_42: -0.9384538710148267 - sys_corr_43: -1.6534252166390422 - sys_corr_44: -10.686844075863819 - sys_corr_45: 4.2160937553906335 - sys_corr_46: 2.4143981860502333 - sys_corr_47: 1.438875844466868 - sys_corr_48: 4.5036057080855665 - sys_corr_49: 2.2344145679865703 - sys_corr_50: -8.923212487881027 - sys_corr_51: 3.1179464953463785 - sys_corr_52: 4.836047875038939 - sys_corr_53: 1.360694097524216 - sys_corr_54: 0.05921849906959473 - sys_corr_55: -0.9889363956333197 - sys_corr_56: 4.651784638789723 - sys_corr_57: -5.80893777235567 - sys_corr_58: 2.58238361884584 - sys_corr_59: -1.8535048456888221 - sys_corr_60: 0.5511115887143224 - sys_corr_61: -3.1178114951181137 - sys_corr_62: -8.850657772098442 - sys_corr_63: 2.541294775432361 - sys_corr_64: -1.098780001647747 - sys_corr_65: -0.43052994787009635 - sys_corr_66: -2.024372253367741 - sys_corr_67: -1.5793783158553865 - sys_corr_68: 0.6460119438916313 - sys_corr_69: -6.841688737658618 - sys_corr_70: -1.7592847111840282 - sys_corr_71: -3.401241724756875 - sys_corr_72: 13.17561361231168 - sys_corr_73: 4.3509487947785885 - sys_corr_74: 2.748006088772591 - sys_corr_75: -1.972739751914863 - sys_corr_76: 6.324615165941428 - sys_corr_77: -3.5848870738460445 - sys_corr_78: 6.476430348471143 - sys_corr_79: 0.9574873195069565 - sys_corr_80: -5.042277169950001 - sys_corr_81: 1.9445307346290386 - sys_corr_82: -2.958447266040581 - sys_corr_83: 4.070515921244413 - sys_corr_84: 4.288474605665685 - sys_corr_85: -17.784681761879998 - sys_corr_86: -0.5406994913989058 - sys_corr_87: -1.8789015471672763 - sys_corr_88: -4.309797644024205 - sys_corr_89: 176.61247421055356 - sys_corr_90: -19.55514345171813 - sys_corr_91: -35.068327983330946 - sys_corr_92: -5.403050946574289 - sys_corr_93: -1.9702726792777043 - sys_corr_94: -6.903999867761671 - sys_corr_95: -6.7985145544074195 - sys_corr_96: -0.1574539682536024 - sys_corr_97: 1.9228711236575602 - sys_corr_98: -0.32318870750631845 - sys_corr_99: 0.3013045786659106 - sys_corr_100: -1.275553633025524 - sys_corr_101: 0.48557492170591987 - sys_corr_102: -0.4043293355932391 - sys_corr_103: -3.4428567330501876 - sys_corr_104: -0.8830745522990061 - sys_corr_105: -2.076950483376755 - sys_corr_106: 0.26830373981247624 - sys_corr_107: -1.0723983290423555 - sys_corr_108: 0.3917351979266711 - sys_corr_109: -0.6203487594712147 - sys_corr_110: -0.34598415121229315 - sys_corr_111: -0.1508798110655205 - sys_corr_112: -0.6711333792576429 - sys_corr_113: -0.29530939224794445 - sys_corr_114: 0.0032200126714184187 - sys_corr_115: 0.3935967485064482 - sys_corr_116: -0.01423921401157148 - sys_corr_117: -0.013443255075530899 - sys_corr_118: -0.309860192486676 - sys_corr_119: -0.0002496892491075368 - sys_corr_120: 0.015086594317187226 - sys_corr_121: -0.011435067505770793 - sys_corr_122: 0.01745796102217361 - sys_corr_123: 0.017033180387834624 - sys_corr_124: 0.11967972800553993 - sys_corr_125: -0.014234142656648904 - sys_corr_126: 0.0062114174123795995 - sys_corr_127: 1.271245665333626 - sys_corr_128: -0.41376264878122376 - sys_corr_129: -0.1448119441575264 - sys_corr_130: -0.019865024974281192 - sys_corr_131: -0.006413353033255973 - sys_corr_132: 0.19440269843557334 +- sys_corr_1: 56.01754423876009 + sys_corr_2: 29.207471666024087 + sys_corr_3: -22.073490091128612 + sys_corr_4: -37.77888723337346 + sys_corr_5: -6.134678979862409 + sys_corr_6: -1.3594691652117081 + sys_corr_7: 22.859919118780226 + sys_corr_8: 22.51862494483161 + sys_corr_9: 25.94988143243338 + sys_corr_10: 6.118408536878962 + sys_corr_11: 26.338119179162554 + sys_corr_12: 26.356552849477556 + sys_corr_13: -18.941936796419657 + sys_corr_14: 3.2883457576655406 + sys_corr_15: 4.046992755134094 + sys_corr_16: -1.8175551415653115 + sys_corr_17: 4.876846108949376 + sys_corr_18: -2.546571439192512 + sys_corr_19: -3.974763679863324 + sys_corr_20: -16.649207764527556 + sys_corr_21: -14.927072109510304 + sys_corr_22: -8.811585834673652 + sys_corr_23: -1.3455002361838773 + sys_corr_24: 23.190207348661428 + sys_corr_25: 12.545736104584119 + sys_corr_26: 25.340497218030418 + sys_corr_27: -17.877524027299586 + sys_corr_28: 14.040230210519399 + sys_corr_29: -6.482245330492353 + sys_corr_30: -24.830178620340337 + sys_corr_31: -10.151352387889814 + sys_corr_32: 0.16215079298465798 + sys_corr_33: 1.5347568684998298 + sys_corr_34: 6.391527960929793 + sys_corr_35: -0.8782415108590538 + sys_corr_36: 1.3565461831008105 + sys_corr_37: -1.0430881599417032 + sys_corr_38: -1.55262873599861 + sys_corr_39: 3.145913436383545 + sys_corr_40: -2.962549422370324 + sys_corr_41: 6.576612650323089 + sys_corr_42: 0.9384538710166168 + sys_corr_43: -1.6534252166393995 + sys_corr_44: -10.686844075863057 + sys_corr_45: -4.216093755391757 + sys_corr_46: -2.4143981860482344 + sys_corr_47: -1.4388758444675205 + sys_corr_48: -4.503605708085701 + sys_corr_49: -2.2344145679872485 + sys_corr_50: -8.923212487880157 + sys_corr_51: 3.117946495345817 + sys_corr_52: 4.836047875038931 + sys_corr_53: -1.3606940975247466 + sys_corr_54: -0.05921849907043477 + sys_corr_55: 0.9889363956329279 + sys_corr_56: -4.651784638790428 + sys_corr_57: -5.808937772352247 + sys_corr_58: -2.582383618847722 + sys_corr_59: -1.8535048456861136 + sys_corr_60: -0.5511115887142769 + sys_corr_61: 3.1178114951192266 + sys_corr_62: 8.85065777209799 + sys_corr_63: 2.5412947754327613 + sys_corr_64: -1.0987800016459612 + sys_corr_65: -0.4305299478712356 + sys_corr_66: 2.0243722533696227 + sys_corr_67: -1.579378315854701 + sys_corr_68: -0.646011943894941 + sys_corr_69: -6.841688737658845 + sys_corr_70: 1.7592847111875323 + sys_corr_71: -3.4012417247563325 + sys_corr_72: -13.175613612311704 + sys_corr_73: -4.350948794777596 + sys_corr_74: 2.7480060887711395 + sys_corr_75: -1.9727397519200793 + sys_corr_76: 6.324615165940768 + sys_corr_77: 3.5848870738485923 + sys_corr_78: 5.042277169947767 + sys_corr_79: 6.4764303484713786 + sys_corr_80: 0.9574873195053248 + sys_corr_81: -1.944530734628301 + sys_corr_82: 2.9584472660399013 + sys_corr_83: 4.070515921243699 + sys_corr_84: -4.2884746056637955 + sys_corr_85: -17.784681761880798 + sys_corr_86: 0.5406994913860519 + sys_corr_87: 1.878901547167473 + sys_corr_88: -4.309797644028184 + sys_corr_89: -19.555143451717303 + sys_corr_90: 176.61247421055327 + sys_corr_91: -35.068327983329915 + sys_corr_92: 5.403050946574192 + sys_corr_93: -1.970272679277627 + sys_corr_94: -6.903999867761325 + sys_corr_95: -6.7985145544072445 + sys_corr_96: 0.15745396825373698 + sys_corr_97: 1.9228711236567075 + sys_corr_98: 0.32318870750600265 + sys_corr_99: 0.30130457866540383 + sys_corr_100: 0.48557492170600447 + sys_corr_101: 0.40432933559371936 + sys_corr_102: -3.4428567330516797 + sys_corr_103: 0.883074552300071 + sys_corr_104: 2.076950483379485 + sys_corr_105: 1.275553633025615 + sys_corr_106: 0.2683037398124504 + sys_corr_107: 0.3917351979267091 + sys_corr_108: -0.6203487594713188 + sys_corr_109: 0.3459841512123778 + sys_corr_110: 1.0723983290418182 + sys_corr_111: 0.15087981106558238 + sys_corr_112: -0.6711333792576355 + sys_corr_113: 0.2953093922479452 + sys_corr_114: 0.003220012671418986 + sys_corr_115: 0.39359674850648346 + sys_corr_116: 0.014239214011574007 + sys_corr_117: 0.01344325507551547 + sys_corr_118: 0.3098601924866683 + sys_corr_119: 0.0002496892491053981 + sys_corr_120: -0.015086594317186466 + sys_corr_121: 0.01143506750576972 + sys_corr_122: 0.01703318038783844 + sys_corr_123: 0.017457961022171363 + sys_corr_124: 0.11967972800551628 + sys_corr_125: -0.014234142656642794 + sys_corr_126: -0.0062114174123771545 + sys_corr_127: 1.2712456653340747 + sys_corr_128: -0.4137626487812151 + sys_corr_129: -0.1448119441575262 + sys_corr_130: -0.01986502497427968 + sys_corr_131: 0.006413353033285513 + sys_corr_132: 0.19440269843556668 stat: 0.0 luminosity: 141.34076000000002 - sys_corr_1: 46.695438774907565 - sys_corr_2: 25.15451554278745 - sys_corr_3: -26.598097784569852 - sys_corr_4: -34.21341578871776 - sys_corr_5: -10.088804422120113 - sys_corr_6: -2.042220255303071 - sys_corr_7: 26.257876047936712 - sys_corr_8: 19.78735968314803 - sys_corr_9: 25.968205475457165 - sys_corr_10: 3.4546597165459834 - sys_corr_11: 21.29641977197938 - sys_corr_12: 23.89878582261473 - sys_corr_13: 17.880996994087027 - sys_corr_14: -2.016881647119956 - sys_corr_15: -6.781395067177261 - sys_corr_16: 1.3398174115276738 - sys_corr_17: 0.30188032896619205 - sys_corr_18: 3.5677467089497945 - sys_corr_19: -3.631412780608298 - sys_corr_20: -7.006580742127439 - sys_corr_21: -2.992616767500523 - sys_corr_22: -6.446240068355199 - sys_corr_23: 14.117164155592807 - sys_corr_24: 17.37193925311337 - sys_corr_25: 8.70641452392237 - sys_corr_26: 22.225370640307947 - sys_corr_27: -14.295169119761773 - sys_corr_28: 13.639205887278978 - sys_corr_29: -7.727232310364028 - sys_corr_30: -29.01196663699415 - sys_corr_31: -10.09494354392837 - sys_corr_32: 1.8784135736635588 - sys_corr_33: -2.842769604042029 - sys_corr_34: 6.513386376665608 - sys_corr_35: 0.3494996691333486 - sys_corr_36: 0.8957450733010083 - sys_corr_37: 1.0323321223762987 - sys_corr_38: -1.1028244154378806 - sys_corr_39: -0.8364796573529708 - sys_corr_40: 2.953260870007388 - sys_corr_41: 5.502912746965486 - sys_corr_42: -0.9937929493580427 - sys_corr_43: -5.093548654146793 - sys_corr_44: -12.08187229668305 - sys_corr_45: 0.7599485132407339 - sys_corr_46: -0.17941422496701154 - sys_corr_47: 1.0692114703553974 - sys_corr_48: 4.1006032596899935 - sys_corr_49: -0.9794656926502974 - sys_corr_50: -0.08155283922554392 - sys_corr_51: 0.0461686372994994 - sys_corr_52: -3.2974586484676394 - sys_corr_53: 9.309939609089543 - sys_corr_54: -2.5557279917790106 - sys_corr_55: -15.621041870666767 - sys_corr_56: 3.6462380603763798 - sys_corr_57: -5.459288593439544 - sys_corr_58: 2.1881976867264012 - sys_corr_59: -2.458017583130801 - sys_corr_60: 0.1560883783882954 - sys_corr_61: -7.370305445973105 - sys_corr_62: -11.650672052936518 - sys_corr_63: 7.462714708323612 - sys_corr_64: -2.5555230749532627 - sys_corr_65: -8.957618800288838 - sys_corr_66: -6.803040815378196 - sys_corr_67: -18.882788476633408 - sys_corr_68: -0.011193647074517955 - sys_corr_69: -5.251625364700779 - sys_corr_70: -5.206027003377446 - sys_corr_71: -9.841856323632715 - sys_corr_72: 7.9160995949027795 - sys_corr_73: 18.94801482713141 - sys_corr_74: 20.27811601758286 - sys_corr_75: -8.344634405650282 - sys_corr_76: 30.12811218037697 - sys_corr_77: 14.821615965948018 - sys_corr_78: -23.632189320589703 - sys_corr_79: -15.157559892739668 - sys_corr_80: 11.723191837399074 - sys_corr_81: -99.88874177789405 - sys_corr_82: -11.527811179692872 - sys_corr_83: -194.0884398290903 - sys_corr_84: 6.087768201730225 - sys_corr_85: 24.420375583351216 - sys_corr_86: 24.137092556983525 - sys_corr_87: 29.160131196784942 - sys_corr_88: 2.5078444936725157 - sys_corr_89: 2.3996242464161925 - sys_corr_90: 4.141119189990703 - sys_corr_91: -2.353277359136637 - sys_corr_92: 4.077345780090224 - sys_corr_93: -0.7419448703995704 - sys_corr_94: -2.302761513874972 - sys_corr_95: -2.435501074527264 - sys_corr_96: 0.047273571077356066 - sys_corr_97: 0.684253176323984 - sys_corr_98: -0.015296940302192438 - sys_corr_99: 0.11123223120716189 - sys_corr_100: -0.524553921315665 - sys_corr_101: 0.01144070783946231 - sys_corr_102: -0.025781670954156705 - sys_corr_103: -1.5529830939824982 - sys_corr_104: -0.5689977166370911 - sys_corr_105: -0.7616361874224759 - sys_corr_106: 0.19618289445656367 - sys_corr_107: -0.4650916991106296 - sys_corr_108: 0.08098917779777925 - sys_corr_109: -0.06148412672063928 - sys_corr_110: -0.017971714054906465 - sys_corr_111: -0.006820658027096505 - sys_corr_112: -0.13624055129880835 - sys_corr_113: 0.1827047527757177 - sys_corr_114: 0.003463255811918717 - sys_corr_115: 0.37751642250846446 - sys_corr_116: 0.010294185529134681 - sys_corr_117: -0.010125273799952617 - sys_corr_118: -0.2243867656228123 - sys_corr_119: 0.003928131167482665 - sys_corr_120: 0.013103259964651098 - sys_corr_121: -0.004001848202294243 - sys_corr_122: 0.006297797054344821 - sys_corr_123: 0.0012337078838109208 - sys_corr_124: 0.10427356017485762 - sys_corr_125: -0.0010586014184722952 - sys_corr_126: 0.004702320451127328 - sys_corr_127: 0.22241160978742128 - sys_corr_128: -0.22230265666228782 - sys_corr_129: 0.15658759713874704 - sys_corr_130: -0.010299712366499646 - sys_corr_131: -0.0030922750287162627 - sys_corr_132: 0.13191546635965426 + sys_corr_2: 25.15451554278743 + sys_corr_3: -26.59809778456981 + sys_corr_4: -34.21341578871788 + sys_corr_5: -10.088804422119951 + sys_corr_6: -2.042220255303127 + sys_corr_7: 26.25787604793668 + sys_corr_8: 19.787359683149248 + sys_corr_9: 25.968205475457555 + sys_corr_10: 3.4546597165439747 + sys_corr_11: 21.296419771981693 + sys_corr_12: 23.898785822613892 + sys_corr_13: -17.88099699408656 + sys_corr_14: 2.0168816471198157 + sys_corr_15: 6.781395067177255 + sys_corr_16: -1.3398174115275543 + sys_corr_17: 0.30188032896624634 + sys_corr_18: -3.5677467089497865 + sys_corr_19: -3.631412780608297 + sys_corr_20: -7.00658074212734 + sys_corr_21: -2.992616767500345 + sys_corr_22: -6.446240068355189 + sys_corr_23: 14.117164155592922 + sys_corr_24: 17.37193925311344 + sys_corr_25: 8.706414523922623 + sys_corr_26: 22.225370640308547 + sys_corr_27: -14.295169119762345 + sys_corr_28: 13.639205887279562 + sys_corr_29: -7.727232310363924 + sys_corr_30: -29.01196663699412 + sys_corr_31: -10.094943543928755 + sys_corr_32: -1.8784135736636858 + sys_corr_33: 2.8427696040428962 + sys_corr_34: 6.513386376665414 + sys_corr_35: 0.34949966913291064 + sys_corr_36: 0.8957450733009562 + sys_corr_37: -1.0323321223766615 + sys_corr_38: 1.1028244154379097 + sys_corr_39: 0.836479657353327 + sys_corr_40: -2.953260870008206 + sys_corr_41: 5.502912746965392 + sys_corr_42: 0.9937929493598131 + sys_corr_43: -5.093548654147326 + sys_corr_44: -12.081872296682615 + sys_corr_45: -0.7599485132402813 + sys_corr_46: 0.17941422496716763 + sys_corr_47: -1.0692114703564717 + sys_corr_48: -4.100603259690171 + sys_corr_49: 0.979465692649478 + sys_corr_50: -0.08155283922506888 + sys_corr_51: 0.046168637300488626 + sys_corr_52: -3.297458648464985 + sys_corr_53: -9.309939609087568 + sys_corr_54: 2.555727991773676 + sys_corr_55: 15.621041870664557 + sys_corr_56: -3.6462380603760645 + sys_corr_57: -5.459288593437129 + sys_corr_58: -2.188197686728681 + sys_corr_59: -2.458017583129367 + sys_corr_60: -0.1560883783884428 + sys_corr_61: 7.37030544597546 + sys_corr_62: 11.650672052935594 + sys_corr_63: 7.462714708325143 + sys_corr_64: -2.5555230749562967 + sys_corr_65: -8.957618800292131 + sys_corr_66: 6.803040815379485 + sys_corr_67: -18.882788476635533 + sys_corr_68: 0.01119364707908986 + sys_corr_69: -5.251625364703837 + sys_corr_70: 5.206027003382032 + sys_corr_71: -9.841856323634985 + sys_corr_72: -7.9160995949019926 + sys_corr_73: -18.948014827128045 + sys_corr_74: 20.278116017582747 + sys_corr_75: -8.344634405674814 + sys_corr_76: 30.128112180371595 + sys_corr_77: -14.821615965957944 + sys_corr_78: -11.723191837395161 + sys_corr_79: -23.632189320588708 + sys_corr_80: -15.157559892735868 + sys_corr_81: 99.88874177791844 + sys_corr_82: 11.527811179696034 + sys_corr_83: -194.08843982907544 + sys_corr_84: -6.087768201735972 + sys_corr_85: 24.420375583350207 + sys_corr_86: -24.1370925569773 + sys_corr_87: -29.16013119678624 + sys_corr_88: 2.5078444937011883 + sys_corr_89: 4.141119189990326 + sys_corr_90: 2.3996242464158963 + sys_corr_91: -2.3532773591375373 + sys_corr_92: -4.077345780086167 + sys_corr_93: -0.7419448703994186 + sys_corr_94: -2.30276151387422 + sys_corr_95: -2.4355010745277914 + sys_corr_96: -0.047273571077290445 + sys_corr_97: 0.6842531763237236 + sys_corr_98: 0.015296940302148425 + sys_corr_99: 0.11123223120697012 + sys_corr_100: 0.011440707839486213 + sys_corr_101: 0.025781670954513 + sys_corr_102: -1.5529830939828184 + sys_corr_103: 0.56899771663738 + sys_corr_104: 0.7616361874234278 + sys_corr_105: 0.5245539213157497 + sys_corr_106: 0.1961828944565322 + sys_corr_107: 0.08098917779780919 + sys_corr_108: -0.061484126720643156 + sys_corr_109: 0.01797171405490368 + sys_corr_110: 0.4650916991104723 + sys_corr_111: 0.006820658027128025 + sys_corr_112: -0.1362405512988402 + sys_corr_113: -0.18270475277572462 + sys_corr_114: 0.0034632558119173608 + sys_corr_115: 0.3775164225084818 + sys_corr_116: -0.010294185529096788 + sys_corr_117: 0.010125273799940491 + sys_corr_118: 0.2243867656227923 + sys_corr_119: -0.003928131167479159 + sys_corr_120: -0.013103259964649394 + sys_corr_121: 0.004001848202295059 + sys_corr_122: 0.0012337078838198093 + sys_corr_123: 0.006297797054342316 + sys_corr_124: 0.10427356017483597 + sys_corr_125: -0.0010586014184693934 + sys_corr_126: -0.004702320451127238 + sys_corr_127: 0.2224116097875276 + sys_corr_128: -0.2223026566622877 + sys_corr_129: 0.1565875971387372 + sys_corr_130: -0.010299712366495852 + sys_corr_131: 0.003092275028713884 + sys_corr_132: 0.13191546635965223 stat: 0.0 luminosity: 129.83007400000002 -- sys_corr_1: 34.07995563895704 - sys_corr_2: 21.33315221607668 - sys_corr_3: -27.795071050499295 - sys_corr_4: -31.51263565009248 - sys_corr_5: -11.221387256217069 - sys_corr_6: -0.43157875047267497 - sys_corr_7: 22.984419953366817 - sys_corr_8: 16.788879619655038 - sys_corr_9: 22.477009072971804 - sys_corr_10: 2.7770040005222247 - sys_corr_11: 17.23973528984208 - sys_corr_12: 22.535468767555848 - sys_corr_13: 16.986037682950187 - sys_corr_14: -2.891404845517283 - sys_corr_15: -4.334755744179366 - sys_corr_16: 1.5224168563670233 - sys_corr_17: 3.525510708577934 - sys_corr_18: -0.7811239311942962 - sys_corr_19: -8.556219125294444 - sys_corr_20: -6.346549987383406 - sys_corr_21: -8.809309263906883 - sys_corr_22: -8.07610097594051 - sys_corr_23: 1.5516676833011835 - sys_corr_24: 6.634852796329702 - sys_corr_25: 21.34517308544897 - sys_corr_26: 21.146002684134825 - sys_corr_27: -6.29820755428301 - sys_corr_28: 14.470814896986443 - sys_corr_29: -3.85097619628436 - sys_corr_30: -28.933498762195054 - sys_corr_31: -13.013451872843506 - sys_corr_32: 0.5835976864206428 - sys_corr_33: -1.9743715774252215 - sys_corr_34: 6.417408822080457 - sys_corr_35: 0.6146887145896894 - sys_corr_36: 1.5677781492435303 - sys_corr_37: 1.0974617330770207 - sys_corr_38: -0.09664482960143687 - sys_corr_39: -2.8422389361415323 - sys_corr_40: 1.0893425604423506 - sys_corr_41: 5.6858434074172095 - sys_corr_42: -1.773717802684679 - sys_corr_43: 1.0930385421682605 - sys_corr_44: -10.234621303083582 - sys_corr_45: 4.4730227571891845 - sys_corr_46: 2.0708214751333434 - sys_corr_47: 1.1155041011794078 - sys_corr_48: 4.034435551529061 - sys_corr_49: -1.6382627408298034 - sys_corr_50: -2.406537373151838 - sys_corr_51: 9.342655536070387 - sys_corr_52: -4.78815507733541 - sys_corr_53: 1.4449392625591555 - sys_corr_54: -8.58766823547123 - sys_corr_55: -3.4570118838956536 - sys_corr_56: 2.5615544646525406 - sys_corr_57: -9.654835493354478 - sys_corr_58: 1.9993021684505008 - sys_corr_59: 3.829322188927137 - sys_corr_60: 0.4843727152471559 - sys_corr_61: -3.3536778444692734 - sys_corr_62: -12.203493866397686 - sys_corr_63: 2.428393588102546 - sys_corr_64: -12.52075737604375 - sys_corr_65: -4.063465935063216 - sys_corr_66: -9.668536783709754 - sys_corr_67: -5.920314942704788 - sys_corr_68: 2.8070805503684055 - sys_corr_69: -15.779512057981279 - sys_corr_70: -18.415321841837525 - sys_corr_71: -8.062126420564134 - sys_corr_72: 23.015687330140388 - sys_corr_73: 23.651627858061588 - sys_corr_74: 43.464348258289434 - sys_corr_75: -26.8124153413268 - sys_corr_76: 109.6819354611782 - sys_corr_77: 0.05916967106945395 - sys_corr_78: -15.203667883322208 - sys_corr_79: -8.855395502104196 - sys_corr_80: 6.892279452422979 - sys_corr_81: 8.424105352186066 - sys_corr_82: -2.1495007692270365 - sys_corr_83: 9.99555446622312 - sys_corr_84: 1.1093920833582238 - sys_corr_85: 15.465520241805615 - sys_corr_86: -90.92769989492412 - sys_corr_87: -45.12169436302234 - sys_corr_88: -174.7373574574292 - sys_corr_89: -8.054176042819055 - sys_corr_90: 4.328163074470664 - sys_corr_91: 1.1214745071869012 - sys_corr_92: -37.77256704873886 - sys_corr_93: -0.3727728796546491 - sys_corr_94: -2.4240466868426642 - sys_corr_95: -1.783697516969432 - sys_corr_96: 0.2623229884890278 - sys_corr_97: 0.562332632279059 - sys_corr_98: -0.02291474652564694 - sys_corr_99: -0.07571115940522669 - sys_corr_100: -0.6550499516732646 - sys_corr_101: 0.10707760906081913 - sys_corr_102: -0.1123431566008321 - sys_corr_103: -0.8021660365845469 - sys_corr_104: -0.43271621228730567 - sys_corr_105: -0.28941257409622606 - sys_corr_106: 0.2063577974735246 - sys_corr_107: -0.1892774519632029 - sys_corr_108: 0.3411265873714749 - sys_corr_109: -0.2701559075787209 - sys_corr_110: 0.11120974809355307 - sys_corr_111: 0.46271416424758205 - sys_corr_112: -0.03278643139250206 - sys_corr_113: 0.28507532116208356 - sys_corr_114: 0.002688131830843042 - sys_corr_115: 0.20669507696982103 - sys_corr_116: 0.0036155722559836198 - sys_corr_117: 0.002772818562909931 - sys_corr_118: -0.20507009579708582 - sys_corr_119: 0.004094672645477651 - sys_corr_120: 0.003294115963146198 - sys_corr_121: -0.005597020266195762 - sys_corr_122: 0.00798270876268841 - sys_corr_123: 0.011252005162457616 - sys_corr_124: 0.01503602213298864 - sys_corr_125: -0.01295533134758763 - sys_corr_126: 0.0028379639103366604 - sys_corr_127: 0.10087453417536736 - sys_corr_128: -0.1587630415568872 - sys_corr_129: -0.33736857698731665 - sys_corr_130: -0.022165464810687645 - sys_corr_131: 0.003591892546819065 - sys_corr_132: 0.14040526309912738 +- sys_corr_1: 34.07995563895708 + sys_corr_2: 21.333152216076677 + sys_corr_3: -27.795071050499253 + sys_corr_4: -31.51263565009255 + sys_corr_5: -11.221387256216953 + sys_corr_6: -0.4315787504726699 + sys_corr_7: 22.984419953366913 + sys_corr_8: 16.788879619656058 + sys_corr_9: 22.47700907297209 + sys_corr_10: 2.7770040005205407 + sys_corr_11: 17.239735289844358 + sys_corr_12: 22.535468767555276 + sys_corr_13: -16.986037682949913 + sys_corr_14: 2.8914048455172128 + sys_corr_15: 4.334755744179448 + sys_corr_16: -1.5224168563669842 + sys_corr_17: 3.5255107085779627 + sys_corr_18: 0.7811239311943801 + sys_corr_19: -8.556219125294236 + sys_corr_20: -6.346549987383414 + sys_corr_21: -8.809309263906629 + sys_corr_22: -8.076100975940566 + sys_corr_23: 1.5516676833013967 + sys_corr_24: 6.634852796329652 + sys_corr_25: 21.345173085449076 + sys_corr_26: 21.14600268413466 + sys_corr_27: -6.2982075542833105 + sys_corr_28: 14.470814896986564 + sys_corr_29: -3.8509761962837925 + sys_corr_30: -28.93349876219484 + sys_corr_31: -13.013451872843735 + sys_corr_32: -0.5835976864206196 + sys_corr_33: 1.974371577426382 + sys_corr_34: 6.417408822080839 + sys_corr_35: 0.6146887145889499 + sys_corr_36: 1.5677781492438696 + sys_corr_37: -1.0974617330775975 + sys_corr_38: 0.09664482960166285 + sys_corr_39: 2.842238936141793 + sys_corr_40: -1.0893425604429958 + sys_corr_41: 5.685843407417435 + sys_corr_42: 1.7737178026859597 + sys_corr_43: 1.0930385421686064 + sys_corr_44: -10.234621303082967 + sys_corr_45: -4.473022757189796 + sys_corr_46: -2.0708214751318144 + sys_corr_47: -1.1155041011807345 + sys_corr_48: -4.034435551528905 + sys_corr_49: 1.6382627408291128 + sys_corr_50: -2.4065373731507647 + sys_corr_51: 9.342655536069994 + sys_corr_52: -4.788155077335554 + sys_corr_53: -1.4449392625562543 + sys_corr_54: 8.587668235471527 + sys_corr_55: 3.45701188389285 + sys_corr_56: -2.5615544646535624 + sys_corr_57: -9.654835493352888 + sys_corr_58: -1.999302168446981 + sys_corr_59: 3.8293221889285842 + sys_corr_60: -0.48437271524694386 + sys_corr_61: 3.3536778444696655 + sys_corr_62: 12.203493866398713 + sys_corr_63: 2.4283935881064407 + sys_corr_64: -12.520757376041248 + sys_corr_65: -4.063465935076852 + sys_corr_66: 9.66853678371513 + sys_corr_67: -5.920314942703236 + sys_corr_68: -2.8070805503749194 + sys_corr_69: -15.77951205798624 + sys_corr_70: 18.415321841843518 + sys_corr_71: -8.06212642055767 + sys_corr_72: -23.01568733014172 + sys_corr_73: -23.651627858050922 + sys_corr_74: 43.46434825828391 + sys_corr_75: -26.812415341416166 + sys_corr_76: 109.68193546116353 + sys_corr_77: -0.05916967107348809 + sys_corr_78: -6.892279452423514 + sys_corr_79: -15.203667883323645 + sys_corr_80: -8.855395502102146 + sys_corr_81: -8.424105352189173 + sys_corr_82: 2.1495007692252437 + sys_corr_83: 9.995554466220476 + sys_corr_84: -1.1093920833597741 + sys_corr_85: 15.46552024180564 + sys_corr_86: 90.92769989464944 + sys_corr_87: 45.12169436301903 + sys_corr_88: -174.73735745756994 + sys_corr_89: 4.3281630744701225 + sys_corr_90: -8.05417604281916 + sys_corr_91: 1.1214745071869385 + sys_corr_92: 37.7725670487136 + sys_corr_93: -0.372772879654481 + sys_corr_94: -2.42404668684248 + sys_corr_95: -1.7836975169693625 + sys_corr_96: -0.26232298848903407 + sys_corr_97: 0.5623326322789334 + sys_corr_98: 0.022914746525555713 + sys_corr_99: -0.07571115940525294 + sys_corr_100: 0.10707760906102363 + sys_corr_101: 0.11234315660124339 + sys_corr_102: -0.802166036584018 + sys_corr_103: 0.43271621228735463 + sys_corr_104: 0.2894125740963741 + sys_corr_105: 0.6550499516733985 + sys_corr_106: 0.20635779747356756 + sys_corr_107: 0.34112658737149976 + sys_corr_108: -0.2701559075786855 + sys_corr_109: -0.11120974809359042 + sys_corr_110: 0.18927745196319884 + sys_corr_111: -0.4627141642475998 + sys_corr_112: -0.03278643139250703 + sys_corr_113: -0.2850753211621165 + sys_corr_114: 0.0026881318308418518 + sys_corr_115: 0.20669507696982747 + sys_corr_116: -0.003615572255957611 + sys_corr_117: -0.002772818562909348 + sys_corr_118: 0.20507009579709048 + sys_corr_119: -0.0040946726454862935 + sys_corr_120: -0.00329411596313975 + sys_corr_121: 0.00559702026619447 + sys_corr_122: 0.011252005162461845 + sys_corr_123: 0.007982708762695351 + sys_corr_124: 0.0150360221329933 + sys_corr_125: -0.012955331347595741 + sys_corr_126: -0.0028379639103317932 + sys_corr_127: 0.10087453417541518 + sys_corr_128: -0.15876304155687307 + sys_corr_129: -0.33736857698733935 + sys_corr_130: -0.02216546481068482 + sys_corr_131: -0.003591892546817753 + sys_corr_132: 0.14040526309912268 stat: 0.0 luminosity: 108.345072 -- sys_corr_1: 25.466212907166387 - sys_corr_2: 21.421357474300933 - sys_corr_3: -24.649888312887057 - sys_corr_4: -28.310555351026235 - sys_corr_5: -12.48496498995035 - sys_corr_6: -1.0156127411693519 - sys_corr_7: 16.95238685942929 - sys_corr_8: 14.950647683136593 - sys_corr_9: 20.48586821722849 - sys_corr_10: 4.6659099083775315 - sys_corr_11: 15.540906459488776 - sys_corr_12: 17.050209862111192 - sys_corr_13: 10.206592270286794 - sys_corr_14: -4.367892336607574 - sys_corr_15: -1.7906941060483752 - sys_corr_16: 0.09356012191692092 - sys_corr_17: 3.1777647166717413 - sys_corr_18: -1.69095113024296 - sys_corr_19: -6.712937582563855 - sys_corr_20: -2.779993499293555 - sys_corr_21: -6.755590545016787 - sys_corr_22: -6.883576782589937 - sys_corr_23: 0.5768962222598469 - sys_corr_24: 8.646224182676375 - sys_corr_25: -2.209718548349793 - sys_corr_26: 16.97189913105635 - sys_corr_27: -6.259576791184196 - sys_corr_28: 14.67564909672451 - sys_corr_29: -6.281260917439497 - sys_corr_30: -24.232277236823514 - sys_corr_31: -11.641937023362331 - sys_corr_32: 1.0088251559913703 - sys_corr_33: -2.3271801419738503 - sys_corr_34: 8.817645073618342 - sys_corr_35: -0.36461025873110164 - sys_corr_36: 1.2067693204614574 - sys_corr_37: 1.489768951904179 - sys_corr_38: 0.19602116105848494 - sys_corr_39: -2.3991002638443275 - sys_corr_40: 4.3614655554113195 - sys_corr_41: 6.200144229258467 - sys_corr_42: -3.4984639332130376 - sys_corr_43: -1.0100087059667981 - sys_corr_44: -13.639235368865888 - sys_corr_45: 1.9361727123331645 - sys_corr_46: -0.7397377892294037 - sys_corr_47: 3.3814411642729505 - sys_corr_48: 9.314039872572627 - sys_corr_49: -3.6552916575580063 - sys_corr_50: 1.6040322960786986 - sys_corr_51: 7.944369874901391 - sys_corr_52: -2.19154563363356 - sys_corr_53: 0.584620283567239 - sys_corr_54: -8.862335095463912 - sys_corr_55: -1.0122225185102092 - sys_corr_56: 3.7792052978735464 - sys_corr_57: -3.542132309219042 - sys_corr_58: 5.171172186955552 - sys_corr_59: -5.776973636151923 - sys_corr_60: -2.729747721652087 - sys_corr_61: -10.188952871812722 - sys_corr_62: -6.906101127394115 - sys_corr_63: 12.743574869726228 - sys_corr_64: 5.956394391640505 - sys_corr_65: -7.998248840099993 - sys_corr_66: -2.489559339866312 - sys_corr_67: -2.452434044385178 - sys_corr_68: 13.73785201541684 - sys_corr_69: -11.35721276779036 - sys_corr_70: 0.5833169658271653 - sys_corr_71: -3.5354265643870986 - sys_corr_72: 3.8793830280827284 - sys_corr_73: 9.994884167774668 - sys_corr_74: -22.34226473932147 - sys_corr_75: -0.3753285190456939 - sys_corr_76: 165.37288352380966 - sys_corr_77: 3.654798064665248 - sys_corr_78: -3.611695742062048 - sys_corr_79: -5.656547429231696 - sys_corr_80: -1.3250401743340683 - sys_corr_81: 15.662569285696739 - sys_corr_82: -4.234094416514412 - sys_corr_83: 29.492295616475996 - sys_corr_84: 3.941392121210278 - sys_corr_85: 13.881171536513243 - sys_corr_86: 124.84258959205887 - sys_corr_87: -34.660602515181 - sys_corr_88: 71.92123750839414 - sys_corr_89: -4.691627377781081 - sys_corr_90: 4.032619097581148 - sys_corr_91: 3.1537556550771866 - sys_corr_92: -91.25074578636449 - sys_corr_93: -0.4435090039648286 - sys_corr_94: -1.7718034938449585 - sys_corr_95: -0.38523408597363806 - sys_corr_96: -0.05929250017741493 - sys_corr_97: 1.179539351165145 - sys_corr_98: -0.49596560881685087 - sys_corr_99: 0.23682036823420938 - sys_corr_100: -0.2945496391934991 - sys_corr_101: 0.12760256176187237 - sys_corr_102: 0.35059874058122414 - sys_corr_103: -0.31115203906518807 - sys_corr_104: -0.061815103687001986 - sys_corr_105: 0.10651799275911986 - sys_corr_106: 0.12161754658721223 - sys_corr_107: -0.22177258720009616 - sys_corr_108: 0.2299051248102212 - sys_corr_109: -0.2746353350399258 - sys_corr_110: -0.2778039133212874 - sys_corr_111: 0.34487426025200263 - sys_corr_112: -0.2554529860097124 - sys_corr_113: 0.18797998759676904 - sys_corr_114: 0.0026480069128454716 - sys_corr_115: -0.14566745281730134 - sys_corr_116: -0.05481974726551278 - sys_corr_117: -0.015432130554216064 - sys_corr_118: -0.3376645602207749 - sys_corr_119: 0.007192340227259581 - sys_corr_120: 0.011294979874979806 - sys_corr_121: -0.002656057570789743 - sys_corr_122: 0.007888508034131743 - sys_corr_123: 0.011266285125555853 - sys_corr_124: 0.02822399821002591 - sys_corr_125: -0.0036208400971014048 - sys_corr_126: 0.005702562346509478 - sys_corr_127: 0.0094873602832597 - sys_corr_128: -0.15038102383895308 - sys_corr_129: -0.17789706697791086 - sys_corr_130: -0.01112782462070246 - sys_corr_131: 0.00047327692616888287 - sys_corr_132: 0.14484392997878706 +- sys_corr_1: 25.46621290716638 + sys_corr_2: 21.421357474300944 + sys_corr_3: -24.64988831288702 + sys_corr_4: -28.310555351026377 + sys_corr_5: -12.484964989950221 + sys_corr_6: -1.015612741169382 + sys_corr_7: 16.952386859429392 + sys_corr_8: 14.950647683137474 + sys_corr_9: 20.48586821722873 + sys_corr_10: 4.665909908376084 + sys_corr_11: 15.540906459490415 + sys_corr_12: 17.050209862110634 + sys_corr_13: -10.206592270286516 + sys_corr_14: 4.367892336607499 + sys_corr_15: 1.7906941060484618 + sys_corr_16: -0.09356012191687216 + sys_corr_17: 3.177764716671808 + sys_corr_18: 1.690951130243059 + sys_corr_19: -6.712937582563718 + sys_corr_20: -2.779993499293669 + sys_corr_21: -6.755590545016563 + sys_corr_22: -6.883576782589998 + sys_corr_23: 0.5768962222599883 + sys_corr_24: 8.646224182676493 + sys_corr_25: -2.209718548349764 + sys_corr_26: 16.971899131056716 + sys_corr_27: -6.259576791184792 + sys_corr_28: 14.67564909672478 + sys_corr_29: -6.281260917438963 + sys_corr_30: -24.232277236823446 + sys_corr_31: -11.641937023362525 + sys_corr_32: -1.0088251559910588 + sys_corr_33: 2.3271801419752554 + sys_corr_34: 8.817645073618625 + sys_corr_35: -0.3646102587311153 + sys_corr_36: 1.2067693204616525 + sys_corr_37: -1.489768951904912 + sys_corr_38: -0.19602116105824735 + sys_corr_39: 2.399100263844608 + sys_corr_40: -4.361465555412134 + sys_corr_41: 6.200144229258374 + sys_corr_42: 3.498463933214801 + sys_corr_43: -1.0100087059657024 + sys_corr_44: -13.639235368865293 + sys_corr_45: -1.9361727123322388 + sys_corr_46: 0.7397377892299204 + sys_corr_47: -3.381441164274285 + sys_corr_48: -9.314039872572538 + sys_corr_49: 3.6552916575564884 + sys_corr_50: 1.604032296080084 + sys_corr_51: 7.944369874901721 + sys_corr_52: -2.1915456336340124 + sys_corr_53: -0.5846202835658698 + sys_corr_54: 8.862335095463294 + sys_corr_55: 1.0122225185072615 + sys_corr_56: -3.77920529787474 + sys_corr_57: -3.5421323092169206 + sys_corr_58: -5.171172186959497 + sys_corr_59: -5.776973636147201 + sys_corr_60: 2.7297477216505475 + sys_corr_61: 10.188952871813228 + sys_corr_62: 6.906101127391064 + sys_corr_63: 12.743574869726961 + sys_corr_64: 5.956394391640304 + sys_corr_65: -7.99824884009497 + sys_corr_66: 2.489559339865307 + sys_corr_67: -2.4524340443809134 + sys_corr_68: -13.73785201542099 + sys_corr_69: -11.357212767791692 + sys_corr_70: -0.583316965824469 + sys_corr_71: -3.5354265643842053 + sys_corr_72: -3.8793830280801505 + sys_corr_73: -9.994884167775925 + sys_corr_74: -22.342264739316416 + sys_corr_75: -0.37532851919648186 + sys_corr_76: 165.37288352381944 + sys_corr_77: -3.654798064666414 + sys_corr_78: 1.3250401743332885 + sys_corr_79: -3.611695742061543 + sys_corr_80: -5.656547429231583 + sys_corr_81: -15.66256928570196 + sys_corr_82: 4.234094416515561 + sys_corr_83: 29.49229561647296 + sys_corr_84: -3.9413921212132745 + sys_corr_85: 13.881171536512367 + sys_corr_86: -124.8425895920853 + sys_corr_87: 34.66060251518361 + sys_corr_88: 71.92123750852068 + sys_corr_89: 4.032619097581423 + sys_corr_90: -4.691627377781062 + sys_corr_91: 3.153755655076838 + sys_corr_92: 91.25074578638906 + sys_corr_93: -0.4435090039649278 + sys_corr_94: -1.771803493844846 + sys_corr_95: -0.38523408597389247 + sys_corr_96: 0.05929250017743297 + sys_corr_97: 1.1795393511651397 + sys_corr_98: 0.4959656088169903 + sys_corr_99: 0.23682036823424915 + sys_corr_100: 0.12760256176200135 + sys_corr_101: -0.35059874058108803 + sys_corr_102: -0.31115203906508004 + sys_corr_103: 0.06181510368695819 + sys_corr_104: -0.10651799275911428 + sys_corr_105: 0.29454963919361005 + sys_corr_106: 0.12161754658727054 + sys_corr_107: 0.2299051248102439 + sys_corr_108: -0.2746353350399105 + sys_corr_109: 0.2778039133213058 + sys_corr_110: 0.2217725872000541 + sys_corr_111: -0.3448742602519912 + sys_corr_112: -0.2554529860097172 + sys_corr_113: -0.18797998759678702 + sys_corr_114: 0.0026480069128453957 + sys_corr_115: -0.14566745281732452 + sys_corr_116: 0.054819747265494684 + sys_corr_117: 0.015432130554218023 + sys_corr_118: 0.3376645602207856 + sys_corr_119: -0.007192340227259099 + sys_corr_120: -0.0112949798749559 + sys_corr_121: 0.0026560575707817867 + sys_corr_122: 0.011266285125555702 + sys_corr_123: 0.007888508034127825 + sys_corr_124: 0.028223998210013777 + sys_corr_125: -0.0036208400970997963 + sys_corr_126: -0.005702562346501657 + sys_corr_127: 0.009487360283288478 + sys_corr_128: -0.15038102383890128 + sys_corr_129: -0.17789706697791985 + sys_corr_130: -0.011127824620698522 + sys_corr_131: -0.0004732769261699498 + sys_corr_132: 0.1448439299787965 stat: 0.0 luminosity: 89.08160800000002 -- sys_corr_1: 11.697531406751745 - sys_corr_2: 20.169296145787055 - sys_corr_3: -17.464580761828998 - sys_corr_4: -25.265224703428892 - sys_corr_5: -14.968498639205071 - sys_corr_6: -2.911918164610985 - sys_corr_7: 7.872884565015065 - sys_corr_8: 8.453782618643125 - sys_corr_9: 10.205030988282662 - sys_corr_10: 1.988235649558199 - sys_corr_11: 7.127064896085635 - sys_corr_12: 2.9657039046507205 - sys_corr_13: 3.7661906689366904 - sys_corr_14: 0.07548861742892321 - sys_corr_15: -0.9831937371762869 - sys_corr_16: 0.8919262420834418 - sys_corr_17: 0.9697921732831666 - sys_corr_18: 0.7168506724168658 - sys_corr_19: -1.248395697085827 - sys_corr_20: -4.923419425327474 - sys_corr_21: -4.091090815219739 - sys_corr_22: -7.999280144879156 - sys_corr_23: -0.5035909230916258 - sys_corr_24: 18.21112836649057 - sys_corr_25: 3.3298814625502056 - sys_corr_26: 2.5716498095125617 - sys_corr_27: -2.2887401468903126 - sys_corr_28: 0.6588243235328942 - sys_corr_29: -10.497526590454742 - sys_corr_30: -9.613374752033671 - sys_corr_31: -12.804658982840635 - sys_corr_32: -1.1785019537897485 - sys_corr_33: -0.5821977499025572 - sys_corr_34: 3.2818764431227554 - sys_corr_35: 0.0008774395307831755 - sys_corr_36: 2.9526191425756676 - sys_corr_37: 2.092725928324044 - sys_corr_38: 1.9642086806451404 - sys_corr_39: -1.3287561953820322 - sys_corr_40: 3.8609537371492535 - sys_corr_41: 2.232543900586274 - sys_corr_42: 0.42899582293420346 - sys_corr_43: -3.00665482920954 - sys_corr_44: -6.977697169463936 - sys_corr_45: 0.15663937451010293 - sys_corr_46: -1.2770744115184154 - sys_corr_47: -2.245954363254569 - sys_corr_48: 1.8118019559466998 - sys_corr_49: -1.728508429207156 - sys_corr_50: -0.6663290981398969 - sys_corr_51: -3.7911634186861045 - sys_corr_52: 3.806871954026272 - sys_corr_53: -0.0226996642590129 - sys_corr_54: -0.5095237007827818 - sys_corr_55: -3.1786663083896762 - sys_corr_56: 0.37880664910014433 - sys_corr_57: -1.22473239400093 - sys_corr_58: 1.5906156098648982 - sys_corr_59: -0.20963524301122421 - sys_corr_60: -0.22680879851779853 - sys_corr_61: -1.3691487592856781 - sys_corr_62: -2.9130345376200593 - sys_corr_63: -0.8485767842063551 - sys_corr_64: -0.9552221639083764 - sys_corr_65: -1.948427760946142 - sys_corr_66: 1.7869507481577074 - sys_corr_67: -4.759680310381898 - sys_corr_68: 1.382684820412046 - sys_corr_69: -2.0505658635303083 - sys_corr_70: 1.1344798982246467 - sys_corr_71: -2.513288394210664 - sys_corr_72: 1.1705752311684696 - sys_corr_73: -1.92617008791681 - sys_corr_74: -1.8763107790423073 - sys_corr_75: -1.5346102338362666 - sys_corr_76: 3.234560438086272 - sys_corr_77: -1.0232742990600543 - sys_corr_78: -1.1123498645968593 - sys_corr_79: 4.490851184806497 - sys_corr_80: 2.2725844157156905 - sys_corr_81: -2.4088186292827336 - sys_corr_82: -0.7453151838196908 - sys_corr_83: -3.6907354994268107 - sys_corr_84: -0.3432840879087815 - sys_corr_85: -6.864165961193318 - sys_corr_86: 1.6708884657762608 - sys_corr_87: 0.03695669792661583 - sys_corr_88: -5.455979502703933 - sys_corr_89: 9.003743341242362 - sys_corr_90: -8.262679545381909 - sys_corr_91: 0.38965199266573725 - sys_corr_92: -3.1064245005021145 - sys_corr_93: 13.39183600716407 - sys_corr_94: 104.94066011115461 - sys_corr_95: 107.7536287141143 - sys_corr_96: 0.6575599403704375 - sys_corr_97: 25.43125317584722 - sys_corr_98: -8.374549297130022 - sys_corr_99: 4.526648420589226 - sys_corr_100: -0.08012694417063519 - sys_corr_101: -0.40740952642162387 - sys_corr_102: 1.7592123241124062 - sys_corr_103: -1.5990379796390808 - sys_corr_104: 5.926086570201806 - sys_corr_105: 2.3129921785192322 - sys_corr_106: 0.1556998159397662 - sys_corr_107: -2.582150413459163 - sys_corr_108: -0.012554161991002328 - sys_corr_109: -1.0680198101210867 - sys_corr_110: 1.0284874004448645 - sys_corr_111: 1.2615501523398882 - sys_corr_112: -0.601718754211383 - sys_corr_113: 0.7864778446083542 - sys_corr_114: 0.0028077548314720175 - sys_corr_115: -0.5179576714285069 - sys_corr_116: 0.004741278941877096 - sys_corr_117: 0.0374714875842875 - sys_corr_118: 0.0378478817307968 - sys_corr_119: 0.020296468911006883 - sys_corr_120: -0.010829230087362498 - sys_corr_121: 0.012001278108390622 - sys_corr_122: -0.03664829961059666 - sys_corr_123: -0.04920791625950567 - sys_corr_124: -0.16048272919019663 - sys_corr_125: 0.02520484574715635 - sys_corr_126: 0.021910053818338913 - sys_corr_127: 1.2991960462358787 - sys_corr_128: -1.9619974256706647 - sys_corr_129: -0.4162043259209278 - sys_corr_130: 0.00047422783574505907 - sys_corr_131: -0.0008687729320770176 - sys_corr_132: 0.17859156238200546 +- sys_corr_1: 11.69753140675175 + sys_corr_2: 20.169296145787044 + sys_corr_3: -17.464580761828962 + sys_corr_4: -25.26522470342904 + sys_corr_5: -14.968498639205006 + sys_corr_6: -2.911918164611016 + sys_corr_7: 7.872884565015058 + sys_corr_8: 8.453782618643567 + sys_corr_9: 10.205030988282829 + sys_corr_10: 1.9882356495575868 + sys_corr_11: 7.127064896085933 + sys_corr_12: 2.9657039046503977 + sys_corr_13: -3.7661906689364715 + sys_corr_14: -0.0754886174290007 + sys_corr_15: 0.9831937371762796 + sys_corr_16: -0.8919262420833218 + sys_corr_17: 0.9697921732831817 + sys_corr_18: -0.7168506724168505 + sys_corr_19: -1.2483956970857224 + sys_corr_20: -4.923419425327521 + sys_corr_21: -4.091090815219561 + sys_corr_22: -7.999280144879172 + sys_corr_23: -0.5035909230916309 + sys_corr_24: 18.211128366490545 + sys_corr_25: 3.329881462550224 + sys_corr_26: 2.5716498095125004 + sys_corr_27: -2.288740146890373 + sys_corr_28: 0.6588243235330021 + sys_corr_29: -10.497526590454699 + sys_corr_30: -9.613374752033582 + sys_corr_31: -12.804658982840689 + sys_corr_32: 1.1785019537899541 + sys_corr_33: 0.5821977499031292 + sys_corr_34: 3.2818764431228664 + sys_corr_35: 0.0008774395304203918 + sys_corr_36: 2.9526191425759873 + sys_corr_37: -2.0927259283246333 + sys_corr_38: -1.9642086806450485 + sys_corr_39: 1.3287561953818718 + sys_corr_40: -3.860953737149641 + sys_corr_41: 2.2325439005857826 + sys_corr_42: -0.42899582293300637 + sys_corr_43: -3.0066548292102353 + sys_corr_44: -6.977697169464184 + sys_corr_45: -0.15663937450934787 + sys_corr_46: 1.2770744115180892 + sys_corr_47: 2.2459543632537144 + sys_corr_48: -1.8118019559466587 + sys_corr_49: 1.7285084292069557 + sys_corr_50: -0.6663290981395595 + sys_corr_51: -3.7911634186864256 + sys_corr_52: 3.806871954026605 + sys_corr_53: 0.02269966425896944 + sys_corr_54: 0.5095237007811594 + sys_corr_55: 3.17866630838912 + sys_corr_56: -0.37880664910020445 + sys_corr_57: -1.2247323940011252 + sys_corr_58: -1.5906156098649955 + sys_corr_59: -0.20963524300934044 + sys_corr_60: 0.2268087985180534 + sys_corr_61: 1.3691487592865592 + sys_corr_62: 2.913034537619144 + sys_corr_63: -0.8485767842055825 + sys_corr_64: -0.9552221639094685 + sys_corr_65: -1.9484277609471077 + sys_corr_66: -1.7869507481577158 + sys_corr_67: -4.759680310381415 + sys_corr_68: -1.3826848204121835 + sys_corr_69: -2.0505658635308825 + sys_corr_70: -1.1344798982235793 + sys_corr_71: -2.513288394210581 + sys_corr_72: -1.1705752311688307 + sys_corr_73: 1.9261700879170112 + sys_corr_74: -1.8763107790426106 + sys_corr_75: -1.5346102338383336 + sys_corr_76: 3.2345604380850475 + sys_corr_77: 1.0232742990608417 + sys_corr_78: -2.272584415715361 + sys_corr_79: -1.1123498645971854 + sys_corr_80: 4.490851184806366 + sys_corr_81: 2.4088186292831986 + sys_corr_82: 0.7453151838197535 + sys_corr_83: -3.690735499426548 + sys_corr_84: 0.3432840879105148 + sys_corr_85: -6.864165961193337 + sys_corr_86: -1.6708884657874712 + sys_corr_87: -0.036956697926809584 + sys_corr_88: -5.455979502703024 + sys_corr_89: -8.262679545381589 + sys_corr_90: 9.00374334124233 + sys_corr_91: 0.3896519926655036 + sys_corr_92: 3.1064245005028543 + sys_corr_93: 13.391836007160238 + sys_corr_94: 104.94066011113647 + sys_corr_95: 107.75362871412393 + sys_corr_96: -0.6575599403692438 + sys_corr_97: 25.431253175850994 + sys_corr_98: 8.37454929712986 + sys_corr_99: 4.526648420589953 + sys_corr_100: -0.4074095264211582 + sys_corr_101: -1.7592123241110917 + sys_corr_102: -1.5990379796380862 + sys_corr_103: -5.926086570202486 + sys_corr_104: -2.312992178518867 + sys_corr_105: 0.08012694417100083 + sys_corr_106: 0.15569981593997007 + sys_corr_107: -0.012554161990876849 + sys_corr_108: -1.068019810121073 + sys_corr_109: -1.0284874004450137 + sys_corr_110: 2.5821504134589395 + sys_corr_111: -1.2615501523398782 + sys_corr_112: -0.6017187542113638 + sys_corr_113: -0.7864778446082913 + sys_corr_114: 0.0028077548314764432 + sys_corr_115: -0.5179576714285026 + sys_corr_116: -0.00474127894194273 + sys_corr_117: -0.03747148758431407 + sys_corr_118: -0.0378478817307537 + sys_corr_119: -0.020296468911010862 + sys_corr_120: 0.010829230087359915 + sys_corr_121: -0.012001278108397788 + sys_corr_122: -0.049207916259478825 + sys_corr_123: -0.036648299610576175 + sys_corr_124: -0.16048272919013892 + sys_corr_125: 0.0252048457471709 + sys_corr_126: -0.021910053818331655 + sys_corr_127: 1.2991960462361802 + sys_corr_128: -1.96199742567062 + sys_corr_129: -0.4162043259209021 + sys_corr_130: 0.0004742278357617143 + sys_corr_131: 0.0008687729321035454 + sys_corr_132: 0.17859156238199775 stat: 0.0 luminosity: 56.532520000000005 -- sys_corr_1: 5.994773035706244 - sys_corr_2: 17.561059734443614 - sys_corr_3: -13.368784460056165 - sys_corr_4: -20.220540536755855 - sys_corr_5: -15.96745557580821 - sys_corr_6: -3.822676073170571 - sys_corr_7: 1.4613929692022845 - sys_corr_8: 3.149011990907311 - sys_corr_9: 4.3905380422612525 - sys_corr_10: 1.4126202223630977 - sys_corr_11: 5.055239877687952 - sys_corr_12: 2.978284543030547 - sys_corr_13: 3.862242362840302 - sys_corr_14: 0.19005637419579902 - sys_corr_15: -1.473619193020613 - sys_corr_16: 2.344698371719067 - sys_corr_17: 0.09768848691288523 - sys_corr_18: 0.9254157534833498 - sys_corr_19: -0.1047467107261435 - sys_corr_20: -2.1441416289142086 - sys_corr_21: -2.0674471596542987 - sys_corr_22: -7.2966756698338155 - sys_corr_23: -1.4382293467820269 - sys_corr_24: 19.67746346637149 - sys_corr_25: -0.11375615234484734 - sys_corr_26: -2.096145078937806 - sys_corr_27: 4.37645702787557 - sys_corr_28: 4.137170225858669 - sys_corr_29: -1.7717297991380974 - sys_corr_30: 3.8476344963036957 - sys_corr_31: -6.538065236730905 - sys_corr_32: -1.6271869452806658 - sys_corr_33: -0.3320503811152609 - sys_corr_34: -0.005119593542942051 - sys_corr_35: -0.045303080334622346 - sys_corr_36: 0.8823555697498326 - sys_corr_37: 3.142794544774978 - sys_corr_38: 2.1573198030461884 - sys_corr_39: -0.5922181098188511 - sys_corr_40: 3.9203236079271866 - sys_corr_41: 0.3100932495268396 - sys_corr_42: -1.030163979211472 - sys_corr_43: -4.330849122704108 - sys_corr_44: -3.930179785612611 - sys_corr_45: -0.15975371029998717 - sys_corr_46: -2.568844438510784 - sys_corr_47: 0.5456055076290791 - sys_corr_48: -0.2692444661475212 - sys_corr_49: -0.9088815668328124 - sys_corr_50: 0.843004736207302 - sys_corr_51: -5.904120780107514 - sys_corr_52: 5.163513475042212 - sys_corr_53: -2.528258281640388 - sys_corr_54: -0.08743280308578427 - sys_corr_55: -0.1951721647762984 - sys_corr_56: -0.0782227427746463 - sys_corr_57: 0.5373940167676059 - sys_corr_58: 0.2950474852164879 - sys_corr_59: 1.5455783829560283 - sys_corr_60: -0.19385610486016502 - sys_corr_61: 1.650019108216459 - sys_corr_62: -0.5152678429933376 - sys_corr_63: 0.5078466044445386 - sys_corr_64: -3.117821265534594 - sys_corr_65: 0.4458078063270674 - sys_corr_66: -1.0503734056819736 - sys_corr_67: 0.6030729114834911 - sys_corr_68: 3.7899299857289233 - sys_corr_69: -1.2858915669613373 - sys_corr_70: -1.182960230582988 - sys_corr_71: -1.5788084690723145 - sys_corr_72: -4.329469755324733 - sys_corr_73: -0.13746083082047353 - sys_corr_74: -5.811700558300719 - sys_corr_75: 0.29973557422115976 - sys_corr_76: 8.714219063441254 - sys_corr_77: 1.518290578270734 - sys_corr_78: -0.4064618451617753 - sys_corr_79: -8.14779220139603 - sys_corr_80: 1.8903885214608624 - sys_corr_81: -2.895429763815197 - sys_corr_82: -1.1679263713005892 - sys_corr_83: -6.230964805553863 - sys_corr_84: 14.119958882866925 - sys_corr_85: -25.67579281220162 - sys_corr_86: 1.1515988191029725 - sys_corr_87: 0.25818086080340114 - sys_corr_88: -4.722965812365439 - sys_corr_89: -17.894549183895208 - sys_corr_90: -192.27506346354411 - sys_corr_91: 21.84572898678363 - sys_corr_92: -1.7584824442815175 - sys_corr_93: -0.8626457040237834 - sys_corr_94: -6.2368134724055535 - sys_corr_95: -4.020846254069719 - sys_corr_96: -0.13308745021655635 - sys_corr_97: 0.886009667562229 - sys_corr_98: -0.42074300424451155 - sys_corr_99: 0.0987248187272185 - sys_corr_100: -0.44091035000028134 - sys_corr_101: 0.27813987249944666 - sys_corr_102: -0.16274766735898205 - sys_corr_103: -1.4787213076138424 - sys_corr_104: 2.34726956501163 - sys_corr_105: -0.9075673239686783 - sys_corr_106: 0.29974041487417563 - sys_corr_107: -0.26282957133216467 - sys_corr_108: 0.4405954773550006 - sys_corr_109: -0.952637585169643 - sys_corr_110: 0.33691959546401073 - sys_corr_111: 0.7725898139888107 - sys_corr_112: -0.34953912213075927 - sys_corr_113: 0.3309236323148584 - sys_corr_114: -0.00027226738824813733 - sys_corr_115: -0.12615128613509496 - sys_corr_116: 0.03610464787351988 - sys_corr_117: 0.034771019499737335 - sys_corr_118: 0.031761917734848204 - sys_corr_119: 0.010518781957156506 - sys_corr_120: -0.01866810730732452 - sys_corr_121: 0.006659586285509198 - sys_corr_122: -0.02119502491538869 - sys_corr_123: -0.02983131270715657 - sys_corr_124: -0.10207631191667364 - sys_corr_125: 0.018000544263273403 - sys_corr_126: 0.010975154309678008 - sys_corr_127: 0.4866736883398927 - sys_corr_128: -1.0717942320900642 - sys_corr_129: -0.2281650058582513 - sys_corr_130: 0.004944242358968062 - sys_corr_131: -0.009809554388693908 - sys_corr_132: -0.3090822240889139 +- sys_corr_1: 5.994773035706258 + sys_corr_2: 17.561059734443607 + sys_corr_3: -13.368784460056155 + sys_corr_4: -20.22054053675592 + sys_corr_5: -15.967455575808147 + sys_corr_6: -3.8226760731706038 + sys_corr_7: 1.461392969202286 + sys_corr_8: 3.1490119909074368 + sys_corr_9: 4.390538042261327 + sys_corr_10: 1.412620222362736 + sys_corr_11: 5.055239877688317 + sys_corr_12: 2.978284543030346 + sys_corr_13: -3.8622423628401275 + sys_corr_14: -0.19005637419585675 + sys_corr_15: 1.473619193020645 + sys_corr_16: -2.344698371719021 + sys_corr_17: 0.09768848691287545 + sys_corr_18: -0.9254157534833864 + sys_corr_19: -0.10474671072609423 + sys_corr_20: -2.144141628914226 + sys_corr_21: -2.0674471596542077 + sys_corr_22: -7.296675669833781 + sys_corr_23: -1.4382293467821452 + sys_corr_24: 19.6774634663715 + sys_corr_25: -0.11375615234495587 + sys_corr_26: -2.096145078938176 + sys_corr_27: 4.376457027875685 + sys_corr_28: 4.137170225858654 + sys_corr_29: -1.771729799138029 + sys_corr_30: 3.8476344963035443 + sys_corr_31: -6.538065236730829 + sys_corr_32: 1.6271869452806806 + sys_corr_33: 0.33205038111537993 + sys_corr_34: -0.005119593542597108 + sys_corr_35: -0.04530308033452912 + sys_corr_36: 0.8823555697503658 + sys_corr_37: -3.1427945447753167 + sys_corr_38: -2.1573198030459855 + sys_corr_39: 0.5922181098183937 + sys_corr_40: -3.9203236079274455 + sys_corr_41: 0.3100932495262737 + sys_corr_42: 1.0301639792121842 + sys_corr_43: -4.330849122703849 + sys_corr_44: -3.9301797856123177 + sys_corr_45: 0.15975371030134458 + sys_corr_46: 2.5688444385104727 + sys_corr_47: -0.5456055076298499 + sys_corr_48: 0.269244466147433 + sys_corr_49: 0.908881566832961 + sys_corr_50: 0.8430047362073948 + sys_corr_51: -5.9041207801072195 + sys_corr_52: 5.163513475042668 + sys_corr_53: 2.528258281639593 + sys_corr_54: 0.08743280308537554 + sys_corr_55: 0.19517216477616453 + sys_corr_56: 0.0782227427752106 + sys_corr_57: 0.537394016766651 + sys_corr_58: -0.2950474852157031 + sys_corr_59: 1.5455783829560736 + sys_corr_60: 0.1938561048608968 + sys_corr_61: -1.6500191082159839 + sys_corr_62: 0.5152678429934189 + sys_corr_63: 0.5078466044449838 + sys_corr_64: -3.1178212655344506 + sys_corr_65: 0.4458078063238488 + sys_corr_66: 1.0503734056815555 + sys_corr_67: 0.6030729114851071 + sys_corr_68: -3.789929985728735 + sys_corr_69: -1.2858915669617699 + sys_corr_70: 1.182960230582791 + sys_corr_71: -1.5788084690713817 + sys_corr_72: 4.329469755324816 + sys_corr_73: 0.1374608308200969 + sys_corr_74: -5.8117005583004415 + sys_corr_75: 0.2997355742128409 + sys_corr_76: 8.714219063441492 + sys_corr_77: -1.5182905782732574 + sys_corr_78: -1.8903885214603378 + sys_corr_79: -0.40646184516212586 + sys_corr_80: -8.147792201396024 + sys_corr_81: 2.895429763816444 + sys_corr_82: 1.16792637130064 + sys_corr_83: -6.230964805553608 + sys_corr_84: -14.11995888285712 + sys_corr_85: -25.675792812202463 + sys_corr_86: -1.151598819111438 + sys_corr_87: -0.2581808608028445 + sys_corr_88: -4.722965812364319 + sys_corr_89: -192.2750634635438 + sys_corr_90: -17.89454918389461 + sys_corr_91: 21.845728986781168 + sys_corr_92: 1.7584824442815181 + sys_corr_93: -0.862645704023521 + sys_corr_94: -6.2368134724046955 + sys_corr_95: -4.0208462540704435 + sys_corr_96: 0.13308745021663299 + sys_corr_97: 0.8860096675620474 + sys_corr_98: 0.4207430042444763 + sys_corr_99: 0.09872481872731535 + sys_corr_100: 0.2781398724996121 + sys_corr_101: 0.16274766735962312 + sys_corr_102: -1.4787213076132724 + sys_corr_103: -2.347269565011464 + sys_corr_104: 0.9075673239694794 + sys_corr_105: 0.44091035000038337 + sys_corr_106: 0.2997404148741797 + sys_corr_107: 0.4405954773550122 + sys_corr_108: -0.9526375851696256 + sys_corr_109: -0.3369195954639822 + sys_corr_110: 0.262829571332066 + sys_corr_111: -0.7725898139887222 + sys_corr_112: -0.34953912213071225 + sys_corr_113: -0.3309236323148358 + sys_corr_114: -0.0002722673882456741 + sys_corr_115: -0.12615128613511367 + sys_corr_116: -0.036104647873537864 + sys_corr_117: -0.03477101949973536 + sys_corr_118: -0.03176191773483985 + sys_corr_119: -0.010518781957155693 + sys_corr_120: 0.01866810730732641 + sys_corr_121: -0.006659586285511393 + sys_corr_122: -0.02983131270717632 + sys_corr_123: -0.02119502491537936 + sys_corr_124: -0.10207631191669414 + sys_corr_125: 0.018000544263287583 + sys_corr_126: -0.010975154309676344 + sys_corr_127: 0.4866736883399564 + sys_corr_128: -1.0717942320900522 + sys_corr_129: -0.22816500585825103 + sys_corr_130: 0.004944242358971498 + sys_corr_131: 0.009809554388655531 + sys_corr_132: -0.3090822240889114 stat: 0.0 luminosity: 39.56007 -- sys_corr_1: 1.0560199465907538 - sys_corr_2: 5.218610233972616 - sys_corr_3: -4.189938974596444 - sys_corr_4: -13.310385288850357 - sys_corr_5: -6.577145873403312 - sys_corr_6: -2.0462800651952735 - sys_corr_7: -0.08322566225575 - sys_corr_8: 2.0566974561883065 - sys_corr_9: 1.7945015246121137 - sys_corr_10: 0.9628007056576949 - sys_corr_11: 1.2484716098770028 - sys_corr_12: -1.033242955354591 - sys_corr_13: 0.43510195593868545 - sys_corr_14: 0.31083656875293225 - sys_corr_15: -0.11583199506025385 - sys_corr_16: 0.6863050374509349 - sys_corr_17: 0.1815771576303294 - sys_corr_18: 0.4631596275643102 - sys_corr_19: -0.5396560117065132 +- sys_corr_1: 1.0560199465907576 + sys_corr_2: 5.218610233972612 + sys_corr_3: -4.189938974596437 + sys_corr_4: -13.310385288850394 + sys_corr_5: -6.577145873403278 + sys_corr_6: -2.04628006519527 + sys_corr_7: -0.0832256622557603 + sys_corr_8: 2.0566974561883598 + sys_corr_9: 1.794501524612167 + sys_corr_10: 0.962800705657615 + sys_corr_11: 1.2484716098769242 + sys_corr_12: -1.0332429553546674 + sys_corr_13: -0.4351019559386005 + sys_corr_14: -0.31083656875297283 + sys_corr_15: 0.1158319950602664 + sys_corr_16: -0.6863050374509018 + sys_corr_17: 0.18157715763034593 + sys_corr_18: -0.4631596275643236 + sys_corr_19: -0.5396560117064731 sys_corr_20: -2.797464929967132 - sys_corr_21: -2.0503218852459764 + sys_corr_21: -2.0503218852459035 sys_corr_22: -4.1253091995180435 - sys_corr_23: -0.2359042720450862 - sys_corr_24: 13.895373750199562 - sys_corr_25: 0.3159079896878254 - sys_corr_26: 0.9115300417737786 - sys_corr_27: 3.2883797279127718 - sys_corr_28: 0.42579690952902377 - sys_corr_29: -2.3440804636139694 - sys_corr_30: 1.4381728942054546 - sys_corr_31: -6.243873418470869 - sys_corr_32: -1.1782496938868554 - sys_corr_33: 0.1462953246297638 - sys_corr_34: 0.08232197104249422 - sys_corr_35: 0.36538132360278797 - sys_corr_36: 1.5773169445313606 - sys_corr_37: 1.1935007067677128 - sys_corr_38: 0.9858237551173156 - sys_corr_39: -0.286672076626648 - sys_corr_40: 1.2550522293039272 - sys_corr_41: -0.3267545896569555 - sys_corr_42: 0.819064578175444 - sys_corr_43: -1.7883105710065077 - sys_corr_44: 0.6565134133828846 - sys_corr_45: -0.5537988110309849 - sys_corr_46: -0.8335881961837913 - sys_corr_47: 0.8539117190159619 - sys_corr_48: -3.7640082372082837 - sys_corr_49: 1.1483000405595813 - sys_corr_50: -2.591754343251373 - sys_corr_51: -0.1075492743827816 - sys_corr_52: -0.31415711116232053 - sys_corr_53: -0.061283728173638266 - sys_corr_54: -0.055907012922921606 - sys_corr_55: 0.7299853013881376 - sys_corr_56: -0.08296955752305606 - sys_corr_57: 0.09283057135777098 - sys_corr_58: -0.08902774751883696 - sys_corr_59: 0.32038676395730825 - sys_corr_60: 0.5201873271893394 - sys_corr_61: 0.6845189217474996 - sys_corr_62: -0.4221120514219478 - sys_corr_63: -0.552342835562061 - sys_corr_64: -0.06860492056258338 - sys_corr_65: 0.3585373119889165 - sys_corr_66: 0.5314679068537786 - sys_corr_67: 0.23802130212424633 - sys_corr_68: 0.6913524775394957 - sys_corr_69: -0.6074537499013744 - sys_corr_70: -0.47263240615332697 - sys_corr_71: 0.10484082896374311 - sys_corr_72: 0.4492554031998661 - sys_corr_73: -0.29389168363057006 - sys_corr_74: -0.05260180472702349 - sys_corr_75: -0.6291370598791929 - sys_corr_76: 0.5338144419594977 - sys_corr_77: -0.2824757692425361 - sys_corr_78: -0.2267807645364623 - sys_corr_79: 1.9596162500108083 - sys_corr_80: 0.44274417838510743 - sys_corr_81: -0.25223127026213216 - sys_corr_82: -0.21101796375441295 - sys_corr_83: -0.5865173860252518 - sys_corr_84: 0.46541052230725277 - sys_corr_85: -0.5150514231382471 - sys_corr_86: 1.0887393379887245 - sys_corr_87: 0.022260092513887792 - sys_corr_88: -1.1931922453245298 - sys_corr_89: 0.44710956441967425 - sys_corr_90: -2.4152443335037526 - sys_corr_91: 0.3953403164049146 - sys_corr_92: -0.9103899124051875 - sys_corr_93: 0.044610625623155216 - sys_corr_94: 1.1830410081171843 - sys_corr_95: 3.581998590086159 - sys_corr_96: -0.15491952189834765 - sys_corr_97: -0.49633715179450244 - sys_corr_98: 0.3118031606336032 - sys_corr_99: 0.06050704386877478 - sys_corr_100: -2.255872449131016 - sys_corr_101: -0.12500982197884505 - sys_corr_102: -0.4313535550118632 - sys_corr_103: 0.9736511393610061 - sys_corr_104: 1.6173560750008316 - sys_corr_105: -0.45553931549387716 - sys_corr_106: 1.830158729688113 - sys_corr_107: 0.26062994490047714 - sys_corr_108: 11.51043042173433 - sys_corr_109: 4.0802704537488985 - sys_corr_110: -1.3795015973805833 - sys_corr_111: -34.94839248101568 - sys_corr_112: 0.3953640027213687 - sys_corr_113: -0.21798537515723518 - sys_corr_114: 0.00022656834925296578 - sys_corr_115: 0.5725216035286284 - sys_corr_116: 0.20827636040007763 - sys_corr_117: 0.07913785189613032 - sys_corr_118: -0.02695915870116234 - sys_corr_119: 0.022534255883314668 - sys_corr_120: -0.0011745230761181504 - sys_corr_121: 0.06232525086242147 - sys_corr_122: -0.0881989109896455 - sys_corr_123: -0.1841493656239705 - sys_corr_124: -0.2570472620454015 - sys_corr_125: 0.11033756547299375 - sys_corr_126: -0.06852465960825241 - sys_corr_127: -0.07146937968347165 - sys_corr_128: 94.76548385486706 - sys_corr_129: -0.0037323392878503923 - sys_corr_130: 0.28543588720107055 - sys_corr_131: -0.04969380431804507 - sys_corr_132: -0.08088909265844706 + sys_corr_23: -0.23590427204512207 + sys_corr_24: 13.89537375019961 + sys_corr_25: 0.315907989687754 + sys_corr_26: 0.911530041773545 + sys_corr_27: 3.288379727912743 + sys_corr_28: 0.42579690952905885 + sys_corr_29: -2.3440804636140085 + sys_corr_30: 1.438172894205461 + sys_corr_31: -6.243873418470859 + sys_corr_32: 1.178249693886893 + sys_corr_33: -0.14629532462958156 + sys_corr_34: 0.08232197104256951 + sys_corr_35: 0.36538132360265174 + sys_corr_36: 1.577316944531593 + sys_corr_37: -1.1935007067678551 + sys_corr_38: -0.9858237551171807 + sys_corr_39: 0.2866720766264858 + sys_corr_40: -1.2550522293039017 + sys_corr_41: -0.32675458965716037 + sys_corr_42: -0.8190645781754109 + sys_corr_43: -1.7883105710071296 + sys_corr_44: 0.6565134133829024 + sys_corr_45: 0.5537988110312327 + sys_corr_46: 0.8335881961835138 + sys_corr_47: -0.8539117190160118 + sys_corr_48: 3.7640082372081327 + sys_corr_49: -1.148300040559182 + sys_corr_50: -2.591754343251726 + sys_corr_51: -0.10754927438289019 + sys_corr_52: -0.31415711116231065 + sys_corr_53: 0.061283728173692466 + sys_corr_54: 0.055907012923328205 + sys_corr_55: -0.7299853013880405 + sys_corr_56: 0.08296955752296753 + sys_corr_57: 0.09283057135779589 + sys_corr_58: 0.08902774751910716 + sys_corr_59: 0.3203867639573843 + sys_corr_60: -0.5201873271891826 + sys_corr_61: -0.684518921747485 + sys_corr_62: 0.4221120514221918 + sys_corr_63: -0.5523428355621233 + sys_corr_64: -0.06860492056246796 + sys_corr_65: 0.3585373119888615 + sys_corr_66: -0.5314679068539295 + sys_corr_67: 0.23802130212481237 + sys_corr_68: -0.6913524775397457 + sys_corr_69: -0.6074537499012942 + sys_corr_70: 0.47263240615337443 + sys_corr_71: 0.10484082896389456 + sys_corr_72: -0.4492554031998165 + sys_corr_73: 0.29389168363058654 + sys_corr_74: -0.05260180472700482 + sys_corr_75: -0.6291370598792696 + sys_corr_76: 0.5338144419592716 + sys_corr_77: 0.2824757692426511 + sys_corr_78: -0.4427441783851578 + sys_corr_79: -0.2267807645366837 + sys_corr_80: 1.959616250010952 + sys_corr_81: 0.2522312702621838 + sys_corr_82: 0.21101796375440965 + sys_corr_83: -0.586517386025109 + sys_corr_84: -0.4654105223070093 + sys_corr_85: -0.5150514231382528 + sys_corr_86: -1.0887393379914994 + sys_corr_87: -0.022260092514006607 + sys_corr_88: -1.1931922453234944 + sys_corr_89: -2.4152443335036073 + sys_corr_90: 0.44710956441972927 + sys_corr_91: 0.39534031640495554 + sys_corr_92: 0.9103899124051831 + sys_corr_93: 0.04461062562316063 + sys_corr_94: 1.1830410081166127 + sys_corr_95: 3.5819985900864877 + sys_corr_96: 0.15491952189847716 + sys_corr_97: -0.49633715179450794 + sys_corr_98: -0.31180316063353825 + sys_corr_99: 0.06050704386886714 + sys_corr_100: -0.12500982197883742 + sys_corr_101: 0.4313535550114107 + sys_corr_102: 0.9736511393609696 + sys_corr_103: -1.6173560750007998 + sys_corr_104: 0.4555393154938022 + sys_corr_105: 2.255872449131326 + sys_corr_106: 1.830158729688053 + sys_corr_107: 11.510430421732117 + sys_corr_108: 4.080270453748092 + sys_corr_109: 1.3795015973808342 + sys_corr_110: -0.26062994490065644 + sys_corr_111: 34.94839248100874 + sys_corr_112: 0.395364002721232 + sys_corr_113: 0.21798537515717997 + sys_corr_114: 0.00022656834925047033 + sys_corr_115: 0.5725216035287259 + sys_corr_116: -0.20827636040000605 + sys_corr_117: -0.07913785189616714 + sys_corr_118: 0.02695915870109727 + sys_corr_119: -0.0225342558832976 + sys_corr_120: 0.0011745230761173893 + sys_corr_121: -0.06232525086239922 + sys_corr_122: -0.1841493656239635 + sys_corr_123: -0.08819891098962095 + sys_corr_124: -0.25704726204550277 + sys_corr_125: 0.1103375654729962 + sys_corr_126: 0.06852465960822902 + sys_corr_127: -0.07146937968308899 + sys_corr_128: 94.76548385486609 + sys_corr_129: -0.003732339287849628 + sys_corr_130: 0.28543588720103563 + sys_corr_131: 0.049693804318073305 + sys_corr_132: -0.08088909265845812 stat: 0.0 luminosity: 13.462196000000002 -- sys_corr_1: 3178.5482345175146 - sys_corr_2: -3272.81856474204 - sys_corr_3: -1653.0523429220607 +- sys_corr_1: 3178.5482345175155 + sys_corr_2: -3272.8185647420355 + sys_corr_3: -1653.0523429220618 sys_corr_4: 1401.8518004442699 - sys_corr_5: -561.75307342996 - sys_corr_6: -88.88024605342275 - sys_corr_7: -929.3743365408791 - sys_corr_8: -413.3454573045811 - sys_corr_9: 1141.6370602984878 - sys_corr_10: -247.58999680553163 - sys_corr_11: -217.72084451921293 - sys_corr_12: 316.7288812735754 - sys_corr_13: -273.9614954814981 - sys_corr_14: 164.17710244634708 - sys_corr_15: 380.74522175318083 - sys_corr_16: 552.3625638982226 - sys_corr_17: 121.03094960096372 - sys_corr_18: 214.86294574162406 - sys_corr_19: 19.418085659740967 - sys_corr_20: 42.05975158166362 - sys_corr_21: 14.341068740472945 - sys_corr_22: 27.127821529940856 - sys_corr_23: 14.809308354795375 - sys_corr_24: -4.14757914081018 - sys_corr_25: 14.573005244827996 - sys_corr_26: 27.136442641250277 - sys_corr_27: 7.810002628545736 - sys_corr_28: -4.015205574933315 - sys_corr_29: -5.427823255698086 - sys_corr_30: 2.627246979497506 - sys_corr_31: -1.123160317023192 - sys_corr_32: -0.3086821942046672 - sys_corr_33: -1.030059754919421 - sys_corr_34: 1.5614020097721797 - sys_corr_35: -0.2911315794850146 - sys_corr_36: 0.07721084876412283 - sys_corr_37: 1.2609772159431096 - sys_corr_38: 0.8137720248161272 - sys_corr_39: -0.29653597074506743 - sys_corr_40: 1.158656282300101 - sys_corr_41: 1.2377294120358813 - sys_corr_42: -0.06582607488832204 - sys_corr_43: -0.9239988173612466 - sys_corr_44: -1.5640326479043134 - sys_corr_45: 0.4979940368622941 - sys_corr_46: -0.9647771815227523 - sys_corr_47: 0.050484311302706274 - sys_corr_48: 1.1366035144445388 - sys_corr_49: -0.0002047336486586307 - sys_corr_50: -0.7223159690637683 - sys_corr_51: -0.14161319015401383 - sys_corr_52: 0.4817858369779047 - sys_corr_53: 0.014360688364435227 - sys_corr_54: 0.48383469017459835 - sys_corr_55: -0.32477420144024793 - sys_corr_56: 0.809386660769216 - sys_corr_57: -0.49971882998795636 - sys_corr_58: -0.3136373374182039 - sys_corr_59: -0.056647128126716 - sys_corr_60: 0.3947797312090339 - sys_corr_61: -0.5434564595182101 - sys_corr_62: -0.3631299984612706 - sys_corr_63: 0.21611530246031407 - sys_corr_64: 0.2337602587585157 - sys_corr_65: 0.2912182254293364 - sys_corr_66: -0.46950956971426766 - sys_corr_67: -0.39727638356493916 - sys_corr_68: -0.39419751286986326 - sys_corr_69: -0.38027823452569176 - sys_corr_70: -0.048708357467323576 - sys_corr_71: -0.14199728933759317 - sys_corr_72: 0.09557145517488624 - sys_corr_73: 0.22471558823594223 - sys_corr_74: 0.09889208740967154 - sys_corr_75: 0.009306109770785156 - sys_corr_76: 0.23159893002027 - sys_corr_77: -0.7100827795702573 - sys_corr_78: 0.2551508722523817 - sys_corr_79: 0.0998663184463148 - sys_corr_80: -0.18293910218784734 - sys_corr_81: 0.22804967701529041 - sys_corr_82: 1.1544694727051825 - sys_corr_83: -0.11843740485023689 - sys_corr_84: 0.538990421881068 - sys_corr_85: -0.1879100877372671 - sys_corr_86: -0.0657162524116255 - sys_corr_87: 0.7851831962632303 - sys_corr_88: 0.015853431279170577 - sys_corr_89: 0.08678918112796265 - sys_corr_90: 0.023483250044298555 - sys_corr_91: 0.16889128624029787 - sys_corr_92: 0.0729350377770909 - sys_corr_93: 0.42289892080845587 - sys_corr_94: 0.04521537065398075 - sys_corr_95: 0.1358599888414747 - sys_corr_96: -1.2105286928938226 - sys_corr_97: -0.5550438115981808 - sys_corr_98: -0.1724100204236952 - sys_corr_99: -0.3088578954966105 - sys_corr_100: -0.07401869931094436 - sys_corr_101: 0.24260490484308025 - sys_corr_102: -0.24572513788962294 - sys_corr_103: 0.226139139860042 - sys_corr_104: -0.06132078996713984 - sys_corr_105: -0.051871786534421926 - sys_corr_106: -0.03008381673134442 - sys_corr_107: 0.1617498901178049 - sys_corr_108: -0.01761635963944673 - sys_corr_109: -0.021531581807087037 - sys_corr_110: 0.0061910478102089415 - sys_corr_111: 0.0004777142207480349 - sys_corr_112: 0.007856896556996566 - sys_corr_113: 0.0581699448495303 - sys_corr_114: 1.9236937671329715e-05 - sys_corr_115: 0.033283155825501655 - sys_corr_116: -0.007483369694694754 - sys_corr_117: -0.005598616603204816 - sys_corr_118: -0.029717528632729844 - sys_corr_119: 0.00014265364039244975 - sys_corr_120: 0.0012014810548116501 - sys_corr_121: -0.0008864059207026048 - sys_corr_122: 0.004348026046647671 - sys_corr_123: 0.008985063630806391 - sys_corr_124: 0.021363377226132605 - sys_corr_125: -0.010526066008262771 - sys_corr_126: -0.00028856498586181514 - sys_corr_127: 0.22387274449798908 - sys_corr_128: 0.03572018818489513 - sys_corr_129: -0.030217697695052958 - sys_corr_130: -0.0020783551341570926 - sys_corr_131: 0.0014205116359590026 - sys_corr_132: 0.017438514700231878 + sys_corr_5: -561.7530734299644 + sys_corr_6: -88.88024605342422 + sys_corr_7: -929.3743365408477 + sys_corr_8: -413.34545730454465 + sys_corr_9: 1141.6370602984855 + sys_corr_10: -247.58999680556863 + sys_corr_11: -217.7208445192102 + sys_corr_12: 316.7288812735632 + sys_corr_13: 273.96149548147633 + sys_corr_14: -164.177102446337 + sys_corr_15: -380.7452217531724 + sys_corr_16: -552.362563898212 + sys_corr_17: 121.03094960095407 + sys_corr_18: -214.86294574162994 + sys_corr_19: 19.41808565974071 + sys_corr_20: 42.059751581666525 + sys_corr_21: 14.341068740472515 + sys_corr_22: 27.127821529942022 + sys_corr_23: 14.809308354795487 + sys_corr_24: -4.147579140809433 + sys_corr_25: 14.573005244827819 + sys_corr_26: 27.13644264124916 + sys_corr_27: 7.810002628545454 + sys_corr_28: -4.01520557493314 + sys_corr_29: -5.427823255698194 + sys_corr_30: 2.6272469794973303 + sys_corr_31: -1.12316031702311 + sys_corr_32: 0.30868219420529674 + sys_corr_33: 1.0300597549204815 + sys_corr_34: 1.5614020097727517 + sys_corr_35: -0.29113157948521484 + sys_corr_36: 0.0772108487645255 + sys_corr_37: -1.2609772159428376 + sys_corr_38: -0.81377202481591 + sys_corr_39: 0.2965359707448465 + sys_corr_40: -1.1586562823002022 + sys_corr_41: 1.2377294120361295 + sys_corr_42: 0.06582607488842136 + sys_corr_43: -0.9239988173612939 + sys_corr_44: -1.5640326479042201 + sys_corr_45: -0.49799403686194305 + sys_corr_46: 0.9647771815231758 + sys_corr_47: -0.05048431130285863 + sys_corr_48: -1.1366035144450946 + sys_corr_49: 0.0002047336482833202 + sys_corr_50: -0.7223159690637999 + sys_corr_51: -0.14161319015284551 + sys_corr_52: 0.48178583697820004 + sys_corr_53: -0.01436068836488452 + sys_corr_54: -0.4838346901760451 + sys_corr_55: 0.3247742014403153 + sys_corr_56: -0.8093866607685775 + sys_corr_57: -0.49971882998730544 + sys_corr_58: 0.31363733741830135 + sys_corr_59: -0.05664712812676161 + sys_corr_60: -0.3947797312089841 + sys_corr_61: 0.5434564595188679 + sys_corr_62: 0.3631299984610445 + sys_corr_63: 0.21611530245975297 + sys_corr_64: 0.2337602587581519 + sys_corr_65: 0.291218225429256 + sys_corr_66: 0.4695095697140749 + sys_corr_67: -0.39727638356479184 + sys_corr_68: 0.39419751287000016 + sys_corr_69: -0.38027823452565984 + sys_corr_70: 0.048708357467874906 + sys_corr_71: -0.141997289338409 + sys_corr_72: -0.09557145517466206 + sys_corr_73: -0.22471558823572624 + sys_corr_74: 0.09889208740943989 + sys_corr_75: 0.009306109770279299 + sys_corr_76: 0.23159893002031012 + sys_corr_77: 0.7100827795704308 + sys_corr_78: 0.18293910218763004 + sys_corr_79: 0.25515087225224437 + sys_corr_80: 0.09986631844618754 + sys_corr_81: -0.2280496770150527 + sys_corr_82: -1.154469472705234 + sys_corr_83: -0.11843740485018889 + sys_corr_84: -0.5389904218810991 + sys_corr_85: -0.18791008773739865 + sys_corr_86: 0.06571625241193697 + sys_corr_87: -0.7851831962630343 + sys_corr_88: 0.015853431279344493 + sys_corr_89: 0.02348325004428102 + sys_corr_90: 0.08678918112797919 + sys_corr_91: 0.16889128624030866 + sys_corr_92: -0.07293503777707175 + sys_corr_93: 0.4228989208084651 + sys_corr_94: 0.04521537065397655 + sys_corr_95: 0.13585998884139938 + sys_corr_96: 1.2105286928937882 + sys_corr_97: -0.5550438115980588 + sys_corr_98: 0.17241002042372364 + sys_corr_99: -0.30885789549653037 + sys_corr_100: 0.2426049048431679 + sys_corr_101: 0.24572513788981196 + sys_corr_102: 0.22613913986116402 + sys_corr_103: 0.06132078996694181 + sys_corr_104: 0.05187178653386436 + sys_corr_105: 0.07401869931102245 + sys_corr_106: -0.030083816731271983 + sys_corr_107: -0.01761635963942848 + sys_corr_108: -0.02153158180705747 + sys_corr_109: -0.0061910478102175405 + sys_corr_110: -0.16174989011772448 + sys_corr_111: -0.00047771422078929225 + sys_corr_112: 0.007856896556982497 + sys_corr_113: -0.05816994484953442 + sys_corr_114: 1.9236937671170188e-05 + sys_corr_115: 0.03328315582550954 + sys_corr_116: 0.007483369694693868 + sys_corr_117: 0.005598616603204329 + sys_corr_118: 0.029717528632738664 + sys_corr_119: -0.00014265364039286525 + sys_corr_120: -0.0012014810548056493 + sys_corr_121: 0.0008864059207030668 + sys_corr_122: 0.008985063630810182 + sys_corr_123: 0.004348026046647428 + sys_corr_124: 0.02136337722613071 + sys_corr_125: -0.010526066008268966 + sys_corr_126: 0.00028856498586211986 + sys_corr_127: 0.223872744497932 + sys_corr_128: 0.03572018818489144 + sys_corr_129: -0.030217697695053242 + sys_corr_130: -0.0020783551341575146 + sys_corr_131: -0.001420511635961544 + sys_corr_132: 0.017438514700230844 stat: 0.0 luminosity: 6979.001854000001 -- sys_corr_1: 3226.398599302067 - sys_corr_2: -3279.356209971113 - sys_corr_3: -1506.619741176622 +- sys_corr_1: 3226.398599302068 + sys_corr_2: -3279.35620997111 + sys_corr_3: -1506.6197411766254 sys_corr_4: 1306.8090445926591 - sys_corr_5: -439.8002226864635 - sys_corr_6: -76.62798790059345 - sys_corr_7: -810.3928162750711 - sys_corr_8: 508.53743934229203 - sys_corr_9: -59.47841175035592 - sys_corr_10: -192.02736858934762 - sys_corr_11: 84.25586434748422 - sys_corr_12: -222.37887498635808 - sys_corr_13: 400.3226300147281 - sys_corr_14: -324.709473105527 - sys_corr_15: -720.56538682539 - sys_corr_16: -837.8377507554277 - sys_corr_17: -198.9429236210538 - sys_corr_18: -344.3660551471023 - sys_corr_19: 3.436100113159195 - sys_corr_20: 5.672242077929915 - sys_corr_21: 9.804983513740373 - sys_corr_22: -35.17461923893163 - sys_corr_23: -5.465549056697385 - sys_corr_24: 1.3067894397251583 - sys_corr_25: 10.831032394345751 - sys_corr_26: 13.621943510182216 - sys_corr_27: 8.320893774331772 - sys_corr_28: 2.890279003880807 - sys_corr_29: -7.526817551453517 - sys_corr_30: -1.5732526325274645 - sys_corr_31: -0.07587468728831069 - sys_corr_32: -0.8037081859333464 - sys_corr_33: -0.30124647924502773 - sys_corr_34: -0.22928317223726788 - sys_corr_35: 0.4410388436833038 - sys_corr_36: 0.742043417224992 - sys_corr_37: 0.9597860951365197 - sys_corr_38: 1.0400056980280232 - sys_corr_39: -0.22629080275375427 - sys_corr_40: 0.8838304635348051 - sys_corr_41: 1.4919508404341475 - sys_corr_42: -1.3701860032114583 - sys_corr_43: -0.7408181727935212 - sys_corr_44: -0.9810600965079288 - sys_corr_45: -1.229196087007221 - sys_corr_46: -0.026993135190480386 - sys_corr_47: 0.05445363154420994 - sys_corr_48: 0.3674248889751567 - sys_corr_49: -0.21665233849366156 - sys_corr_50: -0.46177616001504745 - sys_corr_51: -0.44529719486785724 - sys_corr_52: 0.5771287242813382 - sys_corr_53: 0.3348867229499219 - sys_corr_54: -0.20194235404933034 - sys_corr_55: -0.3837174210559924 - sys_corr_56: -0.17752908515345073 - sys_corr_57: 0.04462472751828047 - sys_corr_58: 0.24621720841111092 - sys_corr_59: -0.020986296040289572 - sys_corr_60: 0.2930892211711017 - sys_corr_61: 0.1859864474040977 - sys_corr_62: -0.45798850509973715 - sys_corr_63: 0.04124542938659848 - sys_corr_64: 0.23927560135805018 - sys_corr_65: 0.09264452535086234 - sys_corr_66: -0.4792064971859584 - sys_corr_67: -0.057643807561592604 - sys_corr_68: -0.04057576540146211 - sys_corr_69: 0.3510845837049136 - sys_corr_70: -0.06446317606925034 - sys_corr_71: 0.02732863447906994 - sys_corr_72: -0.0875838957104032 - sys_corr_73: -0.5436710335276055 - sys_corr_74: -0.017855005585898587 - sys_corr_75: -0.1322465939429266 - sys_corr_76: 0.16220208676032308 - sys_corr_77: -0.4895574374979307 - sys_corr_78: 0.17937612748880832 - sys_corr_79: 0.16241427472446382 - sys_corr_80: -0.003047681108665675 - sys_corr_81: 0.022728105118261573 - sys_corr_82: -0.8407930405835359 - sys_corr_83: 0.11452603232702446 - sys_corr_84: -0.6290398518194852 - sys_corr_85: -0.34981867835031455 - sys_corr_86: 0.1336261995784144 - sys_corr_87: 0.7812747115893715 - sys_corr_88: -0.13798166440842244 - sys_corr_89: -0.1002015930723782 - sys_corr_90: -0.14156222294010248 - sys_corr_91: -0.586591316880335 - sys_corr_92: 0.16238231381863252 - sys_corr_93: -0.9148182464279876 - sys_corr_94: 0.35761271911593295 - sys_corr_95: 0.010352417554044894 - sys_corr_96: 1.0288197862389077 - sys_corr_97: -0.9475592323965423 - sys_corr_98: -0.13237940945766935 - sys_corr_99: 0.358889627325448 - sys_corr_100: -0.0714394015406885 - sys_corr_101: -0.07727053857254844 - sys_corr_102: -0.11398173807533996 - sys_corr_103: 0.01942777890406805 - sys_corr_104: -0.02520301001265251 - sys_corr_105: 0.09157634252524231 - sys_corr_106: 0.06999948760458613 - sys_corr_107: 0.08690732167352341 - sys_corr_108: 0.0010387558930885746 - sys_corr_109: 0.0021869007508072565 - sys_corr_110: 0.006627242642202158 - sys_corr_111: -0.016573668705694364 - sys_corr_112: -0.022035515925716016 - sys_corr_113: 0.04175422513175814 - sys_corr_114: 7.159132269294134e-05 - sys_corr_115: 0.01282050926468812 - sys_corr_116: -0.0020904482471212813 - sys_corr_117: 0.0009406094104860661 - sys_corr_118: -0.0175992735468689 - sys_corr_119: 0.0007926839855916314 - sys_corr_120: -0.004915676333382146 - sys_corr_121: -0.0017332089820326672 - sys_corr_122: 0.003926898965773755 - sys_corr_123: 0.004802827488519033 - sys_corr_124: 0.010914571323883264 - sys_corr_125: -0.002098807232691855 - sys_corr_126: -0.0003606602968123229 - sys_corr_127: -0.031768577685462075 - sys_corr_128: 0.01856766390127476 - sys_corr_129: -0.035149176472571216 - sys_corr_130: -0.0011601872235052475 - sys_corr_131: 0.004742874287203144 - sys_corr_132: 0.010667682339508313 + sys_corr_5: -439.8002226864653 + sys_corr_6: -76.62798790059287 + sys_corr_7: -810.3928162750767 + sys_corr_8: 508.5374393422858 + sys_corr_9: -59.478411750348876 + sys_corr_10: -192.02736858934423 + sys_corr_11: 84.25586434748413 + sys_corr_12: -222.37887498634774 + sys_corr_13: -400.3226300147108 + sys_corr_14: 324.709473105513 + sys_corr_15: 720.565386825384 + sys_corr_16: 837.8377507554097 + sys_corr_17: -198.94292362103965 + sys_corr_18: 344.36605514710493 + sys_corr_19: 3.436100113159518 + sys_corr_20: 5.672242077926989 + sys_corr_21: 9.804983513741167 + sys_corr_22: -35.17461923892591 + sys_corr_23: -5.465549056697428 + sys_corr_24: 1.3067894397245567 + sys_corr_25: 10.831032394344904 + sys_corr_26: 13.621943510180456 + sys_corr_27: 8.320893774331667 + sys_corr_28: 2.8902790038822075 + sys_corr_29: -7.526817551454848 + sys_corr_30: -1.573252632527553 + sys_corr_31: -0.07587468728773293 + sys_corr_32: 0.8037081859344812 + sys_corr_33: 0.30124647924547093 + sys_corr_34: -0.22928317223733893 + sys_corr_35: 0.4410388436835366 + sys_corr_36: 0.742043417225605 + sys_corr_37: -0.9597860951369053 + sys_corr_38: -1.0400056980281427 + sys_corr_39: 0.2262908027538502 + sys_corr_40: -0.8838304635352396 + sys_corr_41: 1.4919508404346757 + sys_corr_42: 1.370186003212307 + sys_corr_43: -0.7408181727930534 + sys_corr_44: -0.9810600965082505 + sys_corr_45: 1.2291960870072216 + sys_corr_46: 0.026993135189995153 + sys_corr_47: -0.05445363154387673 + sys_corr_48: -0.36742488897568754 + sys_corr_49: 0.21665233849364748 + sys_corr_50: -0.461776160015588 + sys_corr_51: -0.4452971948680936 + sys_corr_52: 0.5771287242804036 + sys_corr_53: -0.3348867229500561 + sys_corr_54: 0.20194235404915822 + sys_corr_55: 0.3837174210558349 + sys_corr_56: 0.1775290851543141 + sys_corr_57: 0.04462472751793882 + sys_corr_58: -0.24621720841144465 + sys_corr_59: -0.02098629604024728 + sys_corr_60: -0.2930892211708013 + sys_corr_61: -0.18598644740436293 + sys_corr_62: 0.4579885050993666 + sys_corr_63: 0.041245429386649025 + sys_corr_64: 0.23927560135832118 + sys_corr_65: 0.09264452535145502 + sys_corr_66: 0.47920649718600655 + sys_corr_67: -0.05764380756164947 + sys_corr_68: 0.04057576540173795 + sys_corr_69: 0.3510845837050093 + sys_corr_70: 0.06446317606925565 + sys_corr_71: 0.02732863447919563 + sys_corr_72: 0.08758389571014011 + sys_corr_73: 0.5436710335272077 + sys_corr_74: -0.017855005585851652 + sys_corr_75: -0.13224659394269514 + sys_corr_76: 0.1622020867599952 + sys_corr_77: 0.4895574374973126 + sys_corr_78: 0.0030476811087690845 + sys_corr_79: 0.17937612748885332 + sys_corr_80: 0.16241427472453598 + sys_corr_81: -0.022728105118427495 + sys_corr_82: 0.840793040583497 + sys_corr_83: 0.11452603232705989 + sys_corr_84: 0.6290398518198708 + sys_corr_85: -0.34981867835005426 + sys_corr_86: -0.13362619957887029 + sys_corr_87: -0.7812747115895747 + sys_corr_88: -0.13798166440857884 + sys_corr_89: -0.1415622229401581 + sys_corr_90: -0.10020159307238173 + sys_corr_91: -0.5865913168802989 + sys_corr_92: -0.16238231381865784 + sys_corr_93: -0.9148182464280108 + sys_corr_94: 0.3576127191158711 + sys_corr_95: 0.010352417554215856 + sys_corr_96: -1.0288197862389328 + sys_corr_97: -0.9475592323966485 + sys_corr_98: 0.13237940945768278 + sys_corr_99: 0.35888962732537094 + sys_corr_100: -0.07727053857261858 + sys_corr_101: 0.11398173807515953 + sys_corr_102: 0.019427778903392385 + sys_corr_103: 0.02520301001279366 + sys_corr_104: -0.09157634252496646 + sys_corr_105: 0.07143940154063798 + sys_corr_106: 0.06999948760450292 + sys_corr_107: 0.001038755893070932 + sys_corr_108: 0.0021869007507835047 + sys_corr_109: -0.006627242642195032 + sys_corr_110: -0.0869073216735694 + sys_corr_111: 0.01657366870570735 + sys_corr_112: -0.022035515925718837 + sys_corr_113: -0.04175422513175281 + sys_corr_114: 7.159132269284716e-05 + sys_corr_115: 0.012820509264683793 + sys_corr_116: 0.002090448247133094 + sys_corr_117: -0.0009406094104833506 + sys_corr_118: 0.01759927354686369 + sys_corr_119: -0.0007926839855915975 + sys_corr_120: 0.004915676333377452 + sys_corr_121: 0.0017332089820313726 + sys_corr_122: 0.004802827488515751 + sys_corr_123: 0.003926898965772073 + sys_corr_124: 0.010914571323875468 + sys_corr_125: -0.002098807232690641 + sys_corr_126: 0.00036066029681239173 + sys_corr_127: -0.03176857768546179 + sys_corr_128: 0.01856766390127577 + sys_corr_129: -0.03514917647257957 + sys_corr_130: -0.0011601872235044856 + sys_corr_131: -0.0047428742871998475 + sys_corr_132: 0.010667682339509184 stat: 0.0 luminosity: 6935.227794 - sys_corr_1: 3390.62509493841 - sys_corr_2: -3360.305765465446 - sys_corr_3: -1255.8301792030695 - sys_corr_4: 977.5392806558528 - sys_corr_5: -149.74170484651395 - sys_corr_6: 46.35165768419826 - sys_corr_7: 703.4095442691464 - sys_corr_8: -865.638213191164 - sys_corr_9: -468.4975798114631 - sys_corr_10: 1305.8135195702214 - sys_corr_11: 211.2498474757342 - sys_corr_12: -395.2184616887201 - sys_corr_13: 484.9781026078925 - sys_corr_14: 20.343383260178648 - sys_corr_15: 118.75689902215461 - sys_corr_16: 152.0779480526028 - sys_corr_17: 51.43504688592608 - sys_corr_18: 85.27698603996681 - sys_corr_19: -16.76493143974345 - sys_corr_20: 14.587150996313591 - sys_corr_21: -7.292353705381035 - sys_corr_22: -35.68868430998008 - sys_corr_23: 8.155901901589436 - sys_corr_24: -0.5664940633745268 - sys_corr_25: -0.20703782364329146 - sys_corr_26: 11.448481636002402 - sys_corr_27: 14.987225754968897 - sys_corr_28: 7.43561767450851 - sys_corr_29: -5.362515580449597 - sys_corr_30: -6.834586013796068 - sys_corr_31: -2.52544645443541 - sys_corr_32: -0.23552693628978044 - sys_corr_33: -0.6425547366761271 - sys_corr_34: 1.4581810295403566 - sys_corr_35: -0.357243617396749 - sys_corr_36: 0.4428521165252166 - sys_corr_37: 1.7296090128708894 - sys_corr_38: 0.7934265673826989 - sys_corr_39: -0.190049438260217 - sys_corr_40: 1.0389703908367736 - sys_corr_41: 0.5601384059297158 - sys_corr_42: -1.0496297274719668 - sys_corr_43: -1.2174305283448632 - sys_corr_44: -1.1163847650567884 - sys_corr_45: 0.06524869100957865 - sys_corr_46: -0.42004278970862124 - sys_corr_47: -0.05995200167990934 - sys_corr_48: 0.743002576915318 - sys_corr_49: 0.6836328156120115 - sys_corr_50: -0.25016795230093675 - sys_corr_51: -0.36938088648453904 - sys_corr_52: 0.8159043252444401 - sys_corr_53: -0.03805173487081382 - sys_corr_54: 0.023587565070776684 - sys_corr_55: -0.06429236259947409 - sys_corr_56: -0.3750384592108257 - sys_corr_57: 0.38557130996846767 - sys_corr_58: 0.7385894604200891 - sys_corr_59: 0.10934825579805578 - sys_corr_60: 0.4861249644681361 - sys_corr_61: -0.2780006904819503 - sys_corr_62: -0.3084589676284027 - sys_corr_63: 0.35088996657543325 - sys_corr_64: 0.16546043238288385 - sys_corr_65: 0.4117514351774845 - sys_corr_66: -0.2870871328075465 - sys_corr_67: -0.0722095210361472 - sys_corr_68: 0.25678289185105907 - sys_corr_69: -0.5188186474822688 - sys_corr_70: 0.32507601555146703 - sys_corr_71: -0.388403343350926 - sys_corr_72: -0.14597423153847391 - sys_corr_73: 0.0601683106673211 - sys_corr_74: -0.19900011766319745 - sys_corr_75: -0.2666171761358882 - sys_corr_76: -0.14849305039065208 - sys_corr_77: -0.22525251857278378 - sys_corr_78: 0.10394812005309007 - sys_corr_79: 0.23703132176049194 - sys_corr_80: -0.15376681918737287 - sys_corr_81: -0.05029165452692541 - sys_corr_82: -0.08702155304945808 - sys_corr_83: 0.0922282791868882 - sys_corr_84: -0.21894248609557537 - sys_corr_85: -0.35134884979382913 - sys_corr_86: 0.11391474636772432 - sys_corr_87: 0.09329969688992712 - sys_corr_88: -0.014712957641471264 - sys_corr_89: -0.16544805441991078 - sys_corr_90: -0.010579101517690596 - sys_corr_91: -0.40373891314814997 - sys_corr_92: 0.25966447799994014 - sys_corr_93: 1.0950985665377153 - sys_corr_94: 0.0021853357468651267 - sys_corr_95: -0.0036404247118692534 - sys_corr_96: 0.44641682779873104 - sys_corr_97: -0.24896477575974563 - sys_corr_98: 0.2927544307875499 - sys_corr_99: -0.4009040720749565 - sys_corr_100: -0.02956249022464847 - sys_corr_101: 0.07836040247240772 - sys_corr_102: -0.05468752508015861 - sys_corr_103: -0.11813949132369538 - sys_corr_104: 0.02014703363297362 - sys_corr_105: 0.06517496880997858 - sys_corr_106: -0.043693242809894714 - sys_corr_107: 0.47659098512934045 - sys_corr_108: -0.05962141883560672 - sys_corr_109: -0.0001318004870347813 - sys_corr_110: 0.030729867790213406 - sys_corr_111: -0.02700764481548067 - sys_corr_112: -0.00466847468726235 - sys_corr_113: 0.03652801548604063 - sys_corr_114: -0.00010973433594873029 - sys_corr_115: 0.0019546819026867793 - sys_corr_116: -0.004356320966605859 - sys_corr_117: -9.171616298148195e-05 - sys_corr_118: -0.017228701582991966 - sys_corr_119: -0.0012373053050171844 - sys_corr_120: -0.0015586014003186445 - sys_corr_121: -0.0005469153335504668 - sys_corr_122: 0.0004646965967627704 - sys_corr_123: -0.00021921854254750988 - sys_corr_124: 0.008174981687635433 - sys_corr_125: -0.003317784575987883 - sys_corr_126: 0.000648484226543844 - sys_corr_127: -0.037790545250255235 - sys_corr_128: 0.017369559132269403 - sys_corr_129: -0.010085581175740219 - sys_corr_130: -0.0005115311500656166 - sys_corr_131: 0.002178857146837721 - sys_corr_132: 0.0012449174051047487 + sys_corr_2: -3360.3057654654463 + sys_corr_3: -1255.8301792030722 + sys_corr_4: 977.539280655854 + sys_corr_5: -149.7417048465186 + sys_corr_6: 46.35165768420051 + sys_corr_7: 703.4095442691527 + sys_corr_8: -865.6382131911828 + sys_corr_9: -468.49757981149094 + sys_corr_10: 1305.8135195702328 + sys_corr_11: 211.24984747572097 + sys_corr_12: -395.2184616887098 + sys_corr_13: -484.97810260787793 + sys_corr_14: -20.343383260178136 + sys_corr_15: -118.75689902215811 + sys_corr_16: -152.0779480526029 + sys_corr_17: 51.435046885925644 + sys_corr_18: -85.27698603996875 + sys_corr_19: -16.7649314397426 + sys_corr_20: 14.587150996314593 + sys_corr_21: -7.292353705380508 + sys_corr_22: -35.688684309983415 + sys_corr_23: 8.155901901588354 + sys_corr_24: -0.5664940633767143 + sys_corr_25: -0.20703782364346712 + sys_corr_26: 11.448481636001455 + sys_corr_27: 14.987225754968298 + sys_corr_28: 7.4356176745084 + sys_corr_29: -5.362515580449192 + sys_corr_30: -6.834586013795675 + sys_corr_31: -2.5254464544356297 + sys_corr_32: 0.23552693628894503 + sys_corr_33: 0.6425547366754779 + sys_corr_34: 1.4581810295397617 + sys_corr_35: -0.35724361739635957 + sys_corr_36: 0.44285211652504997 + sys_corr_37: -1.7296090128715178 + sys_corr_38: -0.7934265673826358 + sys_corr_39: 0.19004943825993426 + sys_corr_40: -1.0389703908367505 + sys_corr_41: 0.5601384059291612 + sys_corr_42: 1.0496297274721549 + sys_corr_43: -1.2174305283444071 + sys_corr_44: -1.1163847650564906 + sys_corr_45: -0.06524869100941545 + sys_corr_46: 0.4200427897085827 + sys_corr_47: 0.05995200167982081 + sys_corr_48: -0.7430025769146364 + sys_corr_49: -0.6836328156120174 + sys_corr_50: -0.2501679523003918 + sys_corr_51: -0.36938088648517003 + sys_corr_52: 0.8159043252445538 + sys_corr_53: 0.0380517348712438 + sys_corr_54: -0.02358756507066044 + sys_corr_55: 0.06429236259942715 + sys_corr_56: 0.375038459210472 + sys_corr_57: 0.3855713099681182 + sys_corr_58: -0.7385894604201784 + sys_corr_59: 0.10934825579879993 + sys_corr_60: -0.4861249644680932 + sys_corr_61: 0.2780006904821169 + sys_corr_62: 0.3084589676280455 + sys_corr_63: 0.35088996657581883 + sys_corr_64: 0.16546043238306318 + sys_corr_65: 0.4117514351776173 + sys_corr_66: 0.287087132807567 + sys_corr_67: -0.07220952103643877 + sys_corr_68: -0.256782891851358 + sys_corr_69: -0.5188186474823668 + sys_corr_70: -0.32507601555124926 + sys_corr_71: -0.38840334335062454 + sys_corr_72: 0.1459742315384323 + sys_corr_73: -0.060168310667451194 + sys_corr_74: -0.19900011766293563 + sys_corr_75: -0.2666171761357731 + sys_corr_76: -0.14849305039074087 + sys_corr_77: 0.22525251857309392 + sys_corr_78: 0.15376681918735424 + sys_corr_79: 0.1039481200531542 + sys_corr_80: 0.23703132176050531 + sys_corr_81: 0.050291654526870955 + sys_corr_82: 0.08702155304947612 + sys_corr_83: 0.0922282791868949 + sys_corr_84: 0.21894248609560382 + sys_corr_85: -0.35134884979377423 + sys_corr_86: -0.11391474636740913 + sys_corr_87: -0.09329969688999447 + sys_corr_88: -0.014712957641262712 + sys_corr_89: -0.010579101517707136 + sys_corr_90: -0.1654480544199119 + sys_corr_91: -0.40373891314813054 + sys_corr_92: -0.25966447799999376 + sys_corr_93: 1.0950985665377118 + sys_corr_94: 0.0021853357468843574 + sys_corr_95: -0.003640424711879801 + sys_corr_96: -0.44641682779875735 + sys_corr_97: -0.24896477575981216 + sys_corr_98: -0.29275443078761976 + sys_corr_99: -0.4009040720749691 + sys_corr_100: 0.07836040247239563 + sys_corr_101: 0.054687525080126 + sys_corr_102: -0.11813949132395359 + sys_corr_103: -0.020147033632913685 + sys_corr_104: -0.06517496880984261 + sys_corr_105: 0.02956249022461105 + sys_corr_106: -0.04369324280991831 + sys_corr_107: -0.05962141883561141 + sys_corr_108: -0.00013180048703264593 + sys_corr_109: -0.030729867790216307 + sys_corr_110: -0.47659098512935744 + sys_corr_111: 0.027007644815476954 + sys_corr_112: -0.004668474687258622 + sys_corr_113: -0.03652801548604702 + sys_corr_114: -0.00010973433594903225 + sys_corr_115: 0.001954681902685139 + sys_corr_116: 0.004356320966606883 + sys_corr_117: 9.171616298075246e-05 + sys_corr_118: 0.017228701582999023 + sys_corr_119: 0.0012373053050178096 + sys_corr_120: 0.0015586014003230273 + sys_corr_121: 0.0005469153335508417 + sys_corr_122: -0.0002192185425428153 + sys_corr_123: 0.0004646965967667861 + sys_corr_124: 0.008174981687635943 + sys_corr_125: -0.0033177845759893286 + sys_corr_126: -0.0006484842265442511 + sys_corr_127: -0.037790545250303516 + sys_corr_128: 0.017369559132267145 + sys_corr_129: -0.01008558117573923 + sys_corr_130: -0.0005115311500659822 + sys_corr_131: -0.0021788571468385636 + sys_corr_132: 0.0012449174051038555 stat: 0.0 luminosity: 6948.627620000001 -- sys_corr_1: 3671.624799325751 - sys_corr_2: -3322.7975896125045 - sys_corr_3: -752.8364787905527 - sys_corr_4: 414.3595814501281 - sys_corr_5: 149.60106164160513 - sys_corr_6: 174.79632761881885 - sys_corr_7: 125.47102724300322 - sys_corr_8: 1070.9017550084538 - sys_corr_9: -1239.4338784083977 - sys_corr_10: -517.6502428460257 - sys_corr_11: 229.93841120987065 - sys_corr_12: 309.65187503397357 - sys_corr_13: -169.39769576536227 - sys_corr_14: 328.18682414088545 - sys_corr_15: 544.8964119896231 - sys_corr_16: 332.26672864211815 - sys_corr_17: 70.33209658513063 - sys_corr_18: 138.7455463637549 - sys_corr_19: -20.815178029147944 - sys_corr_20: -13.235918304482118 - sys_corr_21: 5.888825745501669 - sys_corr_22: -44.34175310461509 - sys_corr_23: -1.3180829380086683 - sys_corr_24: 14.416881652459432 - sys_corr_25: -8.452969685779388 - sys_corr_26: -14.486919763218078 - sys_corr_27: 1.4187926353829465 - sys_corr_28: 7.077884655753217 - sys_corr_29: -7.989702118733074 - sys_corr_30: -10.845568590493809 - sys_corr_31: -7.1124014848244554 - sys_corr_32: -0.8285843527956421 - sys_corr_33: -0.5925116462560135 - sys_corr_34: -0.152543441718873 - sys_corr_35: -0.08191314882916333 - sys_corr_36: 1.0083255457947091 - sys_corr_37: 1.0140537891558172 - sys_corr_38: 0.226704783992291 - sys_corr_39: -0.14527026494756587 - sys_corr_40: 0.32216540032882407 - sys_corr_41: -0.725560974392593 - sys_corr_42: -0.3192760735677797 - sys_corr_43: -0.8937484809090039 - sys_corr_44: -0.4033049085761697 - sys_corr_45: 0.26759926885378776 - sys_corr_46: 0.7957928937793063 - sys_corr_47: -0.10169661515630148 - sys_corr_48: 0.4665871454924184 - sys_corr_49: -0.9180931036637668 - sys_corr_50: -0.05268991909325041 - sys_corr_51: -0.5274112259862989 - sys_corr_52: 0.286600610684869 - sys_corr_53: -0.08330765398767129 - sys_corr_54: -0.13087612919194624 - sys_corr_55: 0.13357774664749308 - sys_corr_56: -0.17946286273061787 - sys_corr_57: 0.40387265931267724 - sys_corr_58: -0.20213000347111817 - sys_corr_59: -0.2728599690689271 - sys_corr_60: -0.8584740079394038 - sys_corr_61: 0.4637234787194672 - sys_corr_62: 0.45391026083525493 - sys_corr_63: -0.33050090477846394 - sys_corr_64: -0.3840475835441501 - sys_corr_65: -0.5498532965943719 - sys_corr_66: 0.06551822943368844 - sys_corr_67: 0.06797746124709171 - sys_corr_68: 0.21482731950708836 - sys_corr_69: -0.13671357061543607 - sys_corr_70: 0.4173890504896208 - sys_corr_71: 0.033171433914703376 - sys_corr_72: -0.21808164520877313 - sys_corr_73: 0.17272809707931255 - sys_corr_74: 0.1411641127649677 - sys_corr_75: -0.030162611978801938 - sys_corr_76: -0.13711398155576354 - sys_corr_77: 0.06030490921317093 - sys_corr_78: -0.359114411554375 - sys_corr_79: 0.2620237347310271 - sys_corr_80: 0.18112229972867575 - sys_corr_81: -0.046494972385978744 - sys_corr_82: 0.027177292290352838 - sys_corr_83: 0.053034706019264626 - sys_corr_84: -0.2526953176818937 - sys_corr_85: -0.11869451922584397 - sys_corr_86: -0.1856379969336986 - sys_corr_87: -0.5577432327117768 - sys_corr_88: 0.3239225440446923 - sys_corr_89: -0.3413607652912672 - sys_corr_90: -0.023024238580060172 - sys_corr_91: -0.5017141302264637 - sys_corr_92: -0.021757139606865965 - sys_corr_93: -0.2330271115822545 - sys_corr_94: 0.1545225898042093 - sys_corr_95: -0.20378799847021073 - sys_corr_96: -0.5462832673955806 - sys_corr_97: 0.3756477706045032 - sys_corr_98: 0.8941523868952679 - sys_corr_99: -0.40208263903559943 - sys_corr_100: 0.037958915851403645 - sys_corr_101: 0.05748332230299769 - sys_corr_102: 0.0436358258572029 - sys_corr_103: -0.08088402557976761 - sys_corr_104: 0.06568158873033086 - sys_corr_105: 0.025180870540253412 - sys_corr_106: -0.058494163527201715 - sys_corr_107: 0.17822257532553631 - sys_corr_108: -0.1265185518129038 - sys_corr_109: 0.01659881869116721 - sys_corr_110: -0.01343288480360082 - sys_corr_111: -0.05238836927786901 - sys_corr_112: 0.012155084453358628 - sys_corr_113: 0.01827899061240634 - sys_corr_114: -5.136378752746526e-05 - sys_corr_115: -0.011288063447764514 - sys_corr_116: 0.001556322683013097 - sys_corr_117: 0.005323342256841944 - sys_corr_118: 0.026607933954709798 - sys_corr_119: -0.0011443019808980795 - sys_corr_120: -0.0016130496781570846 - sys_corr_121: 0.001357802185149296 - sys_corr_122: -0.006369994369887677 - sys_corr_123: -0.007708900607493643 - sys_corr_124: -0.004252459614378197 - sys_corr_125: 0.0033266039271668906 - sys_corr_126: 0.002158711787103027 - sys_corr_127: -0.2702506706433064 - sys_corr_128: -0.017318132955482755 - sys_corr_129: -0.007520985592060115 - sys_corr_130: 0.0003397453848676517 - sys_corr_131: -0.0002359185160870965 - sys_corr_132: 0.005973812604939716 +- sys_corr_1: 3671.624799325753 + sys_corr_2: -3322.797589612506 + sys_corr_3: -752.8364787905523 + sys_corr_4: 414.3595814501299 + sys_corr_5: 149.60106164160592 + sys_corr_6: 174.79632761881953 + sys_corr_7: 125.47102724294946 + sys_corr_8: 1070.9017550083993 + sys_corr_9: -1239.4338784083823 + sys_corr_10: -517.6502428459938 + sys_corr_11: 229.9384112098963 + sys_corr_12: 309.651875033961 + sys_corr_13: 169.3976957653582 + sys_corr_14: -328.18682414087584 + sys_corr_15: -544.8964119896245 + sys_corr_16: -332.26672864211054 + sys_corr_17: 70.33209658512665 + sys_corr_18: -138.74554636375163 + sys_corr_19: -20.815178029149568 + sys_corr_20: -13.235918304482102 + sys_corr_21: 5.888825745500602 + sys_corr_22: -44.34175310462318 + sys_corr_23: -1.3180829380088661 + sys_corr_24: 14.416881652460582 + sys_corr_25: -8.452969685778442 + sys_corr_26: -14.486919763215921 + sys_corr_27: 1.4187926353823965 + sys_corr_28: 7.077884655750743 + sys_corr_29: -7.989702118730365 + sys_corr_30: -10.845568590494041 + sys_corr_31: -7.112401484825249 + sys_corr_32: 0.8285843527941393 + sys_corr_33: 0.5925116462549727 + sys_corr_34: -0.1525434417190414 + sys_corr_35: -0.08191314882939787 + sys_corr_36: 1.0083255457941156 + sys_corr_37: -1.014053789155875 + sys_corr_38: -0.2267047839919673 + sys_corr_39: 0.14527026494700357 + sys_corr_40: -0.32216540032853197 + sys_corr_41: -0.7255609743934178 + sys_corr_42: 0.3192760735674951 + sys_corr_43: -0.8937484809088668 + sys_corr_44: -0.4033049085756973 + sys_corr_45: -0.26759926885414204 + sys_corr_46: -0.7957928937795743 + sys_corr_47: 0.10169661515568477 + sys_corr_48: -0.4665871454913729 + sys_corr_49: 0.9180931036640944 + sys_corr_50: -0.0526899190923038 + sys_corr_51: -0.527411225987458 + sys_corr_52: 0.28660061068612624 + sys_corr_53: 0.08330765398728461 + sys_corr_54: 0.13087612919321356 + sys_corr_55: -0.1335777466476996 + sys_corr_56: 0.17946286272915962 + sys_corr_57: 0.40387265931270283 + sys_corr_58: 0.20213000347122378 + sys_corr_59: -0.2728599690687352 + sys_corr_60: 0.8584740079389873 + sys_corr_61: -0.463723478719855 + sys_corr_62: -0.4539102608346776 + sys_corr_63: -0.33050090477832905 + sys_corr_64: -0.3840475835438984 + sys_corr_65: -0.5498532965949358 + sys_corr_66: -0.06551822943336513 + sys_corr_67: 0.06797746124671523 + sys_corr_68: -0.21482731950754927 + sys_corr_69: -0.1367135706158986 + sys_corr_70: -0.4173890504902747 + sys_corr_71: 0.033171433915700925 + sys_corr_72: 0.2180816452089757 + sys_corr_73: -0.172728097078779 + sys_corr_74: 0.14116411276525082 + sys_corr_75: -0.03016261197897837 + sys_corr_76: -0.13711398155544485 + sys_corr_77: -0.060304909212476734 + sys_corr_78: -0.18112229972869412 + sys_corr_79: -0.3591144115542124 + sys_corr_80: 0.26202373473100743 + sys_corr_81: 0.0464949723859941 + sys_corr_82: -0.027177292290238835 + sys_corr_83: 0.053034706019106 + sys_corr_84: 0.25269531768161085 + sys_corr_85: -0.11869451922601333 + sys_corr_86: 0.18563799693457772 + sys_corr_87: 0.5577432327119772 + sys_corr_88: 0.3239225440448191 + sys_corr_89: -0.0230242385800332 + sys_corr_90: -0.3413607652912726 + sys_corr_91: -0.5017141302264891 + sys_corr_92: 0.021757139606812737 + sys_corr_93: -0.23302711158228426 + sys_corr_94: 0.15452258980420022 + sys_corr_95: -0.20378799847019027 + sys_corr_96: 0.5462832673955738 + sys_corr_97: 0.3756477706045254 + sys_corr_98: -0.8941523868952896 + sys_corr_99: -0.40208263903558344 + sys_corr_100: 0.05748332230298045 + sys_corr_101: -0.04363582585723446 + sys_corr_102: -0.08088402557989548 + sys_corr_103: -0.06568158873033772 + sys_corr_104: -0.025180870540192895 + sys_corr_105: -0.037958915851441684 + sys_corr_106: -0.05849416352722645 + sys_corr_107: -0.12651855181290214 + sys_corr_108: 0.016598818691165227 + sys_corr_109: 0.013432884803603573 + sys_corr_110: -0.17822257532551306 + sys_corr_111: 0.052388369277863826 + sys_corr_112: 0.012155084453371502 + sys_corr_113: -0.01827899061240666 + sys_corr_114: -5.136378752672762e-05 + sys_corr_115: -0.011288063447757566 + sys_corr_116: -0.0015563226830141328 + sys_corr_117: -0.005323342256839567 + sys_corr_118: -0.026607933954712157 + sys_corr_119: 0.0011443019808973893 + sys_corr_120: 0.0016130496781527502 + sys_corr_121: -0.0013578021851485375 + sys_corr_122: -0.0077089006074952645 + sys_corr_123: -0.00636999436988758 + sys_corr_124: -0.004252459614374237 + sys_corr_125: 0.0033266039271688946 + sys_corr_126: -0.002158711787105004 + sys_corr_127: -0.2702506706433275 + sys_corr_128: -0.017318132955490704 + sys_corr_129: -0.007520985592059023 + sys_corr_130: 0.0003397453848648999 + sys_corr_131: 0.00023591851609245583 + sys_corr_132: 0.005973812604942501 stat: 0.0 luminosity: 6880.653780000001 -- sys_corr_1: 3997.251360134939 - sys_corr_2: -2972.0856279519303 - sys_corr_3: -123.80313971412119 - sys_corr_4: -516.6473490896348 - sys_corr_5: 550.9602164009494 - sys_corr_6: 354.17120205612093 - sys_corr_7: 1125.539475030979 - sys_corr_8: -482.7350730977705 - sys_corr_9: 82.8402149888183 - sys_corr_10: -430.5428847416291 - sys_corr_11: -304.2987773211281 - sys_corr_12: 355.38912133892813 - sys_corr_13: -878.3972037814141 - sys_corr_14: -139.83923796246205 - sys_corr_15: -873.7548270563175 - sys_corr_16: 29.255675197536096 - sys_corr_17: -27.02276299311794 - sys_corr_18: 12.396233376525876 - sys_corr_19: -53.75487587447775 - sys_corr_20: -64.93029709838117 - sys_corr_21: -16.04623997250755 - sys_corr_22: -16.871960301163174 - sys_corr_23: -19.19151408089083 - sys_corr_24: 27.89993266045365 - sys_corr_25: -8.448801470005408 - sys_corr_26: -34.102791398228 - sys_corr_27: -6.574428124477534 - sys_corr_28: 4.2597204691409205 - sys_corr_29: 1.015406031705797 - sys_corr_30: 0.8579510257062414 - sys_corr_31: 1.0820774536588385 - sys_corr_32: 0.39504381136776945 - sys_corr_33: -0.04723255889939962 - sys_corr_34: -2.391212327143137 - sys_corr_35: 0.4493118755306318 - sys_corr_36: 0.4191302122645122 - sys_corr_37: -1.55379503430961 - sys_corr_38: -0.2517355245552503 - sys_corr_39: 0.8368793705911602 - sys_corr_40: -0.2968405496847343 - sys_corr_41: -0.7845574023634038 - sys_corr_42: -0.2718493577709817 - sys_corr_43: -0.3708526852805981 - sys_corr_44: 0.290299955524642 - sys_corr_45: 0.24684549965914065 - sys_corr_46: 0.9262603525523295 - sys_corr_47: 1.1988576577926295 - sys_corr_48: -1.1005034669270828 - sys_corr_49: -0.9560138804243021 - sys_corr_50: 0.5486744401433323 - sys_corr_51: -0.6844732422222476 - sys_corr_52: 0.0928614202031223 - sys_corr_53: -0.41992335631028593 - sys_corr_54: -0.21187733908829093 - sys_corr_55: 0.4576272695324051 - sys_corr_56: -0.29102711261467623 - sys_corr_57: 0.34191254478005983 - sys_corr_58: -0.04804154350602449 - sys_corr_59: 0.32027566865751167 - sys_corr_60: -0.027057062436075374 - sys_corr_61: 0.8004758993144527 - sys_corr_62: 0.5177674123872321 - sys_corr_63: -0.548277921051564 - sys_corr_64: -0.07104536940168307 - sys_corr_65: -0.20780676196860673 - sys_corr_66: 0.6136147961663673 - sys_corr_67: 0.7346057408142895 - sys_corr_68: 0.13707406816724665 - sys_corr_69: 0.5759708149956907 - sys_corr_70: 0.18940568855067036 - sys_corr_71: 0.22182804239987008 - sys_corr_72: 0.01585017231007692 - sys_corr_73: -0.1600470886084897 - sys_corr_74: 0.5892832379101577 - sys_corr_75: 0.6534334872662996 - sys_corr_76: -0.330019348281524 - sys_corr_77: 0.13142140406808178 - sys_corr_78: -0.007616811942789216 - sys_corr_79: 0.1061167538494142 - sys_corr_80: 0.41044008260726134 - sys_corr_81: 0.3434284868700966 - sys_corr_82: -0.48575568676763475 - sys_corr_83: 0.00778293290479655 - sys_corr_84: -0.9576200560495505 - sys_corr_85: 0.017533168496280026 - sys_corr_86: 0.17205523474511794 - sys_corr_87: -0.7275277776979113 - sys_corr_88: 0.07094025537900735 - sys_corr_89: -0.12283169525976458 - sys_corr_90: -0.15841712940312108 - sys_corr_91: -0.5536067597953512 - sys_corr_92: -0.32207241666663183 - sys_corr_93: -0.05368716817557549 - sys_corr_94: -0.074148447017033 - sys_corr_95: -0.02702716036438133 - sys_corr_96: 0.1758119901674167 - sys_corr_97: 0.12431171224122309 - sys_corr_98: -0.6836277422162217 - sys_corr_99: -0.016102255312964706 - sys_corr_100: 0.11354560414458295 - sys_corr_101: -0.1022014559337661 - sys_corr_102: 0.18557709051306343 - sys_corr_103: 0.08967124783653604 - sys_corr_104: -0.08224148243784801 - sys_corr_105: -0.2647623944184808 - sys_corr_106: -0.03909654890892445 - sys_corr_107: -0.716810185047326 - sys_corr_108: -0.017420791442092815 - sys_corr_109: -0.03499211308692718 - sys_corr_110: -0.00451094037673354 - sys_corr_111: -0.02908116915555989 - sys_corr_112: -0.008770031296473725 - sys_corr_113: -0.06408553273547941 - sys_corr_114: 1.0822453039158374e-05 - sys_corr_115: -0.032721823858086876 - sys_corr_116: 0.0015021894921792539 - sys_corr_117: 0.0004176723906643914 - sys_corr_118: 0.03366274207963612 - sys_corr_119: -0.0004962132338567845 - sys_corr_120: 0.0004961675712805467 - sys_corr_121: 0.0006845999525038813 - sys_corr_122: -0.0024919505038911117 - sys_corr_123: -0.0024330661679915918 - sys_corr_124: -0.0029180071452777345 - sys_corr_125: 0.003649060693722729 - sys_corr_126: -0.0008456993114230152 - sys_corr_127: -0.8474175902622901 - sys_corr_128: 0.0015465460015125505 - sys_corr_129: 0.026110492996170003 - sys_corr_130: 0.0017544659230867123 - sys_corr_131: -0.0013360973193368632 - sys_corr_132: -0.022467763157511034 +- sys_corr_1: 3997.25136013494 + sys_corr_2: -2972.0856279519326 + sys_corr_3: -123.80313971411853 + sys_corr_4: -516.6473490896356 + sys_corr_5: 550.960216400951 + sys_corr_6: 354.17120205611934 + sys_corr_7: 1125.5394750310015 + sys_corr_8: -482.7350730977355 + sys_corr_9: 82.84021498882619 + sys_corr_10: -430.54288474162274 + sys_corr_11: -304.29877732110793 + sys_corr_12: 355.38912133892876 + sys_corr_13: 878.3972037814159 + sys_corr_14: 139.83923796244923 + sys_corr_15: 873.7548270563259 + sys_corr_16: -29.255675197530074 + sys_corr_17: -27.022762993124065 + sys_corr_18: -12.396233376528919 + sys_corr_19: -53.754875874474884 + sys_corr_20: -64.9302970983794 + sys_corr_21: -16.046239972505624 + sys_corr_22: -16.871960301156097 + sys_corr_23: -19.191514080889633 + sys_corr_24: 27.899932660453576 + sys_corr_25: -8.44880147000544 + sys_corr_26: -34.10279139822788 + sys_corr_27: -6.574428124475741 + sys_corr_28: 4.259720469143066 + sys_corr_29: 1.0154060317037479 + sys_corr_30: 0.857951025706637 + sys_corr_31: 1.0820774536590245 + sys_corr_32: -0.39504381136727656 + sys_corr_33: 0.04723255890026907 + sys_corr_34: -2.391212327142432 + sys_corr_35: 0.44931187553010044 + sys_corr_36: 0.41913021226510727 + sys_corr_37: 1.5537950343101952 + sys_corr_38: 0.25173552455508547 + sys_corr_39: -0.8368793705907385 + sys_corr_40: 0.2968405496845187 + sys_corr_41: -0.784557402362842 + sys_corr_42: 0.27184935777073094 + sys_corr_43: -0.37085268528014864 + sys_corr_44: 0.2902999555246392 + sys_corr_45: -0.24684549965932412 + sys_corr_46: -0.9262603525520672 + sys_corr_47: -1.1988576577925834 + sys_corr_48: 1.1005034669260454 + sys_corr_49: 0.9560138804238276 + sys_corr_50: 0.5486744401425317 + sys_corr_51: -0.6844732422209495 + sys_corr_52: 0.0928614202029987 + sys_corr_53: 0.41992335631012323 + sys_corr_54: 0.2118773390879934 + sys_corr_55: -0.4576272695322198 + sys_corr_56: 0.2910271126161073 + sys_corr_57: 0.3419125447793187 + sys_corr_58: 0.04804154350606184 + sys_corr_59: 0.3202756686571271 + sys_corr_60: 0.02705706243639259 + sys_corr_61: -0.8004758993144568 + sys_corr_62: -0.5177674123870819 + sys_corr_63: -0.5482779210520958 + sys_corr_64: -0.07104536940181214 + sys_corr_65: -0.20780676196846382 + sys_corr_66: -0.6136147961663703 + sys_corr_67: 0.7346057408149743 + sys_corr_68: -0.13707406816671808 + sys_corr_69: 0.5759708149962203 + sys_corr_70: -0.18940568855062767 + sys_corr_71: 0.22182804239889725 + sys_corr_72: -0.015850172310087063 + sys_corr_73: 0.16004708860817568 + sys_corr_74: 0.5892832379099417 + sys_corr_75: 0.653433487267024 + sys_corr_76: -0.3300193482812739 + sys_corr_77: -0.13142140406879393 + sys_corr_78: -0.4104400826073922 + sys_corr_79: -0.007616811942840316 + sys_corr_80: 0.10611675384946 + sys_corr_81: -0.34342848687007876 + sys_corr_82: 0.4857556867676143 + sys_corr_83: 0.007782932904830837 + sys_corr_84: 0.9576200560496309 + sys_corr_85: 0.017533168496437473 + sys_corr_86: -0.1720552347455884 + sys_corr_87: 0.7275277776978495 + sys_corr_88: 0.07094025537902589 + sys_corr_89: -0.15841712940312444 + sys_corr_90: -0.12283169525975698 + sys_corr_91: -0.553606759795382 + sys_corr_92: 0.3220724166668444 + sys_corr_93: -0.05368716817552818 + sys_corr_94: -0.07414844701688471 + sys_corr_95: -0.02702716036454265 + sys_corr_96: -0.1758119901674367 + sys_corr_97: 0.12431171224131535 + sys_corr_98: 0.6836277422162563 + sys_corr_99: -0.016102255312924613 + sys_corr_100: -0.10220145593372977 + sys_corr_101: -0.1855770905129593 + sys_corr_102: 0.08967124783702178 + sys_corr_103: 0.08224148243764592 + sys_corr_104: 0.26476239441830585 + sys_corr_105: -0.11354560414452126 + sys_corr_106: -0.03909654890887106 + sys_corr_107: -0.01742079144206719 + sys_corr_108: -0.0349921130869138 + sys_corr_109: 0.004510940376735026 + sys_corr_110: 0.716810185047432 + sys_corr_111: 0.029081169155549196 + sys_corr_112: -0.00877003129646995 + sys_corr_113: 0.0640855327354751 + sys_corr_114: 1.0822453039193312e-05 + sys_corr_115: -0.032721823858086654 + sys_corr_116: -0.001502189492181922 + sys_corr_117: -0.00041767239066094625 + sys_corr_118: -0.03366274207963068 + sys_corr_119: 0.0004962132338572918 + sys_corr_120: -0.0004961675712761032 + sys_corr_121: -0.000684599952502388 + sys_corr_122: -0.0024330661679963024 + sys_corr_123: -0.002491950503891924 + sys_corr_124: -0.0029180071452791826 + sys_corr_125: 0.0036490606937213373 + sys_corr_126: 0.0008456993114256087 + sys_corr_127: -0.8474175902622068 + sys_corr_128: 0.001546546001510866 + sys_corr_129: 0.026110492996168508 + sys_corr_130: 0.0017544659230885867 + sys_corr_131: 0.0013360973193374758 + sys_corr_132: -0.022467763157509618 stat: 0.0 luminosity: 6877.309648 -- sys_corr_1: 4238.271577745015 - sys_corr_2: -2083.4723049270024 - sys_corr_3: 556.0012333704254 - sys_corr_4: -1575.402434815214 - sys_corr_5: 575.1460970390264 - sys_corr_6: 280.77122249040394 - sys_corr_7: 491.63300626350366 - sys_corr_8: -218.04222804294187 - sys_corr_9: 586.8303146289383 - sys_corr_10: -352.71268213853625 - sys_corr_11: -38.88600764977538 - sys_corr_12: -154.39159991946778 - sys_corr_13: 248.15653203832193 - sys_corr_14: 103.62886232929924 - sys_corr_15: 976.8546741791188 - sys_corr_16: -675.9524743824437 - sys_corr_17: -142.8142348099153 - sys_corr_18: -447.1492462248999 - sys_corr_19: 81.3248215484951 - sys_corr_20: -2.0290484505049067 - sys_corr_21: -15.10979804111393 - sys_corr_22: 14.01780480491024 - sys_corr_23: 11.678874464144755 - sys_corr_24: -6.716705650861102 - sys_corr_25: -6.376809677064982 - sys_corr_26: -25.338554421160957 - sys_corr_27: -1.2367081651704916 - sys_corr_28: -3.703247178174208 - sys_corr_29: 16.359929361411243 - sys_corr_30: 4.08425656125292 - sys_corr_31: 4.999088635358994 - sys_corr_32: -0.34183191781926653 - sys_corr_33: 1.694915529319366 - sys_corr_34: -4.314305415034271 - sys_corr_35: -1.2776144315211504 - sys_corr_36: -0.5418110871545848 - sys_corr_37: -0.49372770389675275 - sys_corr_38: -1.8493935630309564 - sys_corr_39: 0.8702260705293717 - sys_corr_40: -1.8903996690089402 - sys_corr_41: -0.595243159274079 - sys_corr_42: 1.7009003504071825 - sys_corr_43: 4.516277614515818 - sys_corr_44: 5.321579798828413 - sys_corr_45: -1.4899924415356662 - sys_corr_46: 0.5754319915989401 - sys_corr_47: -2.32140298262688 - sys_corr_48: -3.6808041097959285 - sys_corr_49: -0.34183383391901134 - sys_corr_50: 0.25816761306121333 - sys_corr_51: 0.1781072288980882 - sys_corr_52: -1.640474633004819 - sys_corr_53: 1.2446659081919649 - sys_corr_54: -0.2947099763421346 - sys_corr_55: 0.8893043072481887 - sys_corr_56: -0.3850103666358513 - sys_corr_57: 0.7266041198941711 - sys_corr_58: -0.6332159586575283 - sys_corr_59: 0.023767303546756546 - sys_corr_60: -0.21379391003372064 - sys_corr_61: 0.44351062192132845 - sys_corr_62: 0.42493983572276817 - sys_corr_63: -0.45803189377590736 - sys_corr_64: -0.1881761128201606 - sys_corr_65: 0.03190515926927564 - sys_corr_66: 0.6003721498671329 - sys_corr_67: 0.46966958415143745 - sys_corr_68: -0.3295134016541214 - sys_corr_69: 0.5630746721657665 - sys_corr_70: -0.4190584446601176 - sys_corr_71: 0.2506048836245263 - sys_corr_72: -0.33214562317846874 - sys_corr_73: -0.7491658759815177 - sys_corr_74: 0.2623626637806614 - sys_corr_75: -0.8885540347383337 - sys_corr_76: -0.27776035991368536 - sys_corr_77: 0.6568216065483882 - sys_corr_78: -0.3344507521153883 - sys_corr_79: 0.11347946674325166 - sys_corr_80: 0.6167806649952403 - sys_corr_81: -0.3610471302373169 - sys_corr_82: -0.13013509013948218 - sys_corr_83: 0.09411337106158742 - sys_corr_84: -0.3412444291934653 - sys_corr_85: 0.7871776893750657 - sys_corr_86: 0.5231030114056626 - sys_corr_87: -1.65535017014191 - sys_corr_88: 0.08138113090435645 - sys_corr_89: 0.0645194519856039 - sys_corr_90: -0.3689006326738937 - sys_corr_91: 0.022917363309658656 - sys_corr_92: 0.7625928491467072 - sys_corr_93: -0.18790942010102019 - sys_corr_94: -0.05422256488526154 - sys_corr_95: 0.09772646240264636 - sys_corr_96: 0.040133393462502796 - sys_corr_97: 0.23083686606300285 - sys_corr_98: 0.6182395555268981 - sys_corr_99: 1.3638108749887625 - sys_corr_100: 0.07131811785884672 - sys_corr_101: -0.2545402138082294 - sys_corr_102: 0.2136274262555475 - sys_corr_103: 0.1964472225488183 - sys_corr_104: -0.058413331754202165 - sys_corr_105: -0.2883853977588193 - sys_corr_106: -0.0032129096239537957 - sys_corr_107: -0.3204202276912995 - sys_corr_108: 0.057422300564401514 - sys_corr_109: -0.009023625239411744 - sys_corr_110: 0.024695977761817475 - sys_corr_111: 0.060518254864832005 - sys_corr_112: -0.028787739233539344 - sys_corr_113: -0.021938067978338645 - sys_corr_114: 0.0002724907646553886 - sys_corr_115: 0.0090963837127296 - sys_corr_116: -0.0009611287959167383 - sys_corr_117: -0.003717350797174247 - sys_corr_118: 0.017785175118398503 - sys_corr_119: 0.0003305927483639356 - sys_corr_120: 0.004814986673306863 - sys_corr_121: 0.0007724055891447952 - sys_corr_122: -0.0026507486051292888 - sys_corr_123: -0.0056955893621174715 - sys_corr_124: 0.008021394174944067 - sys_corr_125: 0.007161991449249947 - sys_corr_126: -0.002178578854596515 - sys_corr_127: 0.8584757752676067 - sys_corr_128: 0.018797894254095095 - sys_corr_129: 0.013824751415515564 - sys_corr_130: 0.005946056401711624 - sys_corr_131: -0.0035695512092971987 - sys_corr_132: -0.019462827901026894 +- sys_corr_1: 4238.271577745009 + sys_corr_2: -2083.472304927001 + sys_corr_3: 556.0012333704253 + sys_corr_4: -1575.4024348152157 + sys_corr_5: 575.1460970390335 + sys_corr_6: 280.77122249040235 + sys_corr_7: 491.633006263508 + sys_corr_8: -218.04222804291877 + sys_corr_9: 586.8303146289354 + sys_corr_10: -352.7126821385557 + sys_corr_11: -38.88600764980373 + sys_corr_12: -154.39159991947355 + sys_corr_13: -248.15653203835123 + sys_corr_14: -103.62886232928483 + sys_corr_15: -976.8546741791246 + sys_corr_16: 675.9524743824259 + sys_corr_17: -142.81423480989832 + sys_corr_18: 447.14924622491156 + sys_corr_19: 81.32482154849288 + sys_corr_20: -2.0290484505138404 + sys_corr_21: -15.109798041115047 + sys_corr_22: 14.01780480490844 + sys_corr_23: 11.678874464146004 + sys_corr_24: -6.71670565085888 + sys_corr_25: -6.376809677064823 + sys_corr_26: -25.338554421160705 + sys_corr_27: -1.2367081651701903 + sys_corr_28: -3.7032471781752356 + sys_corr_29: 16.359929361412163 + sys_corr_30: 4.084256561252817 + sys_corr_31: 4.999088635359073 + sys_corr_32: 0.34183191781899946 + sys_corr_33: -1.6949155293208815 + sys_corr_34: -4.314305415034123 + sys_corr_35: -1.277614431521229 + sys_corr_36: -0.5418110871547276 + sys_corr_37: 0.4937277038969485 + sys_corr_38: 1.84939356303076 + sys_corr_39: -0.8702260705292792 + sys_corr_40: 1.8903996690090425 + sys_corr_41: -0.5952431592738965 + sys_corr_42: -1.7009003504073619 + sys_corr_43: 4.516277614514986 + sys_corr_44: 5.321579798827601 + sys_corr_45: 1.4899924415352932 + sys_corr_46: -0.5754319915999871 + sys_corr_47: 2.321402982627504 + sys_corr_48: 3.6808041097962905 + sys_corr_49: 0.3418338339198847 + sys_corr_50: 0.2581676130607551 + sys_corr_51: 0.17810722889681047 + sys_corr_52: -1.6404746330057396 + sys_corr_53: -1.2446659081914166 + sys_corr_54: 0.294709976343479 + sys_corr_55: -0.8893043072483414 + sys_corr_56: 0.3850103666344536 + sys_corr_57: 0.7266041198940154 + sys_corr_58: 0.6332159586575472 + sys_corr_59: 0.023767303545815684 + sys_corr_60: 0.21379391003337261 + sys_corr_61: -0.4435106219221952 + sys_corr_62: -0.4249398357217248 + sys_corr_63: -0.4580318937759914 + sys_corr_64: -0.18817611281989124 + sys_corr_65: 0.03190515926932725 + sys_corr_66: -0.6003721498670631 + sys_corr_67: 0.4696695841511278 + sys_corr_68: 0.32951340165397386 + sys_corr_69: 0.5630746721657811 + sys_corr_70: 0.4190584446595798 + sys_corr_71: 0.2506048836252422 + sys_corr_72: 0.33214562317840857 + sys_corr_73: 0.749165875981663 + sys_corr_74: 0.2623626637807347 + sys_corr_75: -0.8885540347379228 + sys_corr_76: -0.27776035991435444 + sys_corr_77: -0.656821606548491 + sys_corr_78: -0.6167806649949097 + sys_corr_79: -0.33445075211546876 + sys_corr_80: 0.1134794667433541 + sys_corr_81: 0.36104713023695684 + sys_corr_82: 0.1301350901395203 + sys_corr_83: 0.0941133710614944 + sys_corr_84: 0.3412444291934218 + sys_corr_85: 0.7871776893752659 + sys_corr_86: -0.5231030114050393 + sys_corr_87: 1.6553501701417406 + sys_corr_88: 0.08138113090469631 + sys_corr_89: -0.3689006326739118 + sys_corr_90: 0.06451945198558015 + sys_corr_91: 0.02291736330965397 + sys_corr_92: -0.762592849146637 + sys_corr_93: -0.1879094201010488 + sys_corr_94: -0.05422256488532611 + sys_corr_95: 0.09772646240270122 + sys_corr_96: -0.0401333934624693 + sys_corr_97: 0.23083686606288753 + sys_corr_98: -0.6182395555268786 + sys_corr_99: 1.3638108749886657 + sys_corr_100: -0.2545402138083832 + sys_corr_101: -0.21362742625594636 + sys_corr_102: 0.19644722254747288 + sys_corr_103: 0.058413331754604364 + sys_corr_104: 0.28838539775932936 + sys_corr_105: -0.07131811785896679 + sys_corr_106: -0.003212909624081197 + sys_corr_107: 0.057422300564347765 + sys_corr_108: -0.009023625239436135 + sys_corr_109: -0.02469597776180727 + sys_corr_110: 0.32042022769107636 + sys_corr_111: -0.06051825486479208 + sys_corr_112: -0.02878773923353601 + sys_corr_113: 0.0219380679783408 + sys_corr_114: 0.00027249076465558165 + sys_corr_115: 0.009096383712721194 + sys_corr_116: 0.000961128795917089 + sys_corr_117: 0.003717350797180784 + sys_corr_118: -0.017785175118401476 + sys_corr_119: -0.00033059274836451656 + sys_corr_120: -0.004814986673308339 + sys_corr_121: -0.0007724055891451977 + sys_corr_122: -0.005695589362122685 + sys_corr_123: -0.0026507486051293287 + sys_corr_124: 0.008021394174947618 + sys_corr_125: 0.007161991449253944 + sys_corr_126: 0.002178578854595142 + sys_corr_127: 0.8584757752676947 + sys_corr_128: 0.01879789425410246 + sys_corr_129: 0.013824751415525225 + sys_corr_130: 0.005946056401711485 + sys_corr_131: 0.003569551209298986 + sys_corr_132: -0.01946282790102676 stat: 0.0 luminosity: 6811.148432000001 - sys_corr_1: 4370.963231915929 - sys_corr_2: -1108.6309594112754 - sys_corr_3: 1034.2987145512034 - sys_corr_4: -1980.8496045917793 - sys_corr_5: 435.0689674901816 - sys_corr_6: 53.11471350885252 - sys_corr_7: -290.43840452098004 - sys_corr_8: 639.7332313338641 - sys_corr_9: 292.29545088966887 - sys_corr_10: 44.44017786223153 - sys_corr_11: -252.84720027834706 - sys_corr_12: -875.1188547172842 - sys_corr_13: 443.1027751268857 - sys_corr_14: -461.9510716251299 - sys_corr_15: -298.314007798907 - sys_corr_16: 516.8992519515817 - sys_corr_17: 219.47102057110862 - sys_corr_18: 482.6733634095877 - sys_corr_19: 106.03785194519719 - sys_corr_20: -8.19523897979153 - sys_corr_21: -44.3684545526678 - sys_corr_22: 69.40150496341819 - sys_corr_23: 19.308926759555817 - sys_corr_24: -49.41093663736773 - sys_corr_25: -17.773324535839212 - sys_corr_26: -0.7622316590078283 - sys_corr_27: -10.52634815399542 - sys_corr_28: -12.991296816685459 - sys_corr_29: 18.82994951426323 - sys_corr_30: 3.597499177480423 - sys_corr_31: 11.531613870098706 - sys_corr_32: 3.2280273178080434 - sys_corr_33: 1.8455336889280642 - sys_corr_34: 2.562114690052928 - sys_corr_35: -2.820446932933289 - sys_corr_36: -2.2609998906097752 - sys_corr_37: -2.4469967575722746 - sys_corr_38: -0.962180469725353 - sys_corr_39: -2.476967649180491 - sys_corr_40: -0.7169260448896716 - sys_corr_41: -3.2266594931236243 - sys_corr_42: 1.0971054662078314 - sys_corr_43: -1.452782902243728 - sys_corr_44: 0.5334918010682459 - sys_corr_45: 3.40019886032061 - sys_corr_46: -0.23840524364772891 - sys_corr_47: 3.221092642879687 - sys_corr_48: 1.1548608089375645 - sys_corr_49: 3.5728973313435755 - sys_corr_50: 2.5212799028433523 - sys_corr_51: 0.769639955209452 - sys_corr_52: -1.14308797449316 - sys_corr_53: -0.8918139463196307 - sys_corr_54: -0.08520910085161283 - sys_corr_55: 1.2872846762658054 - sys_corr_56: 0.8112982444364415 - sys_corr_57: 0.3217316550648833 - sys_corr_58: 0.7384479001098548 - sys_corr_59: -0.5429596911502957 - sys_corr_60: -0.3508459291780291 - sys_corr_61: 0.6685187793440974 - sys_corr_62: -0.4733562978847696 - sys_corr_63: -0.21113973075526887 - sys_corr_64: 0.2531633327988714 - sys_corr_65: 0.9238456253783529 - sys_corr_66: 0.24401891864905467 - sys_corr_67: -0.5337077742917236 - sys_corr_68: -1.0828735575273818 - sys_corr_69: -0.280095971178538 - sys_corr_70: -0.0909648170425961 - sys_corr_71: 0.4150808397741755 - sys_corr_72: -0.1346195786133443 - sys_corr_73: 0.6918402259160352 - sys_corr_74: -0.49634317697068525 - sys_corr_75: 0.2685291652090483 - sys_corr_76: -0.20189969605274594 - sys_corr_77: 0.5719879865896997 - sys_corr_78: -0.11068224983609601 - sys_corr_79: -0.37844410860960526 - sys_corr_80: -0.15942999334202104 - sys_corr_81: -0.12984467794287097 - sys_corr_82: -0.341904761748888 - sys_corr_83: 0.07981820969487187 - sys_corr_84: 0.34665108383927384 - sys_corr_85: 0.2383900239066902 - sys_corr_86: -0.37068716004628066 - sys_corr_87: -0.1511060901435519 - sys_corr_88: -0.05618856013955206 - sys_corr_89: -0.052176159456510086 - sys_corr_90: -0.03962014937980668 - sys_corr_91: 0.3051934881762194 - sys_corr_92: -1.2761315946020657 - sys_corr_93: 0.022543217002042922 - sys_corr_94: -0.2779527671576474 - sys_corr_95: 0.23275314072628003 - sys_corr_96: 0.005217726513633994 - sys_corr_97: 0.6495048389841656 - sys_corr_98: -0.8153125545901996 - sys_corr_99: -1.369929900927371 - sys_corr_100: 0.0017281519474874295 - sys_corr_101: 0.020135738462042817 - sys_corr_102: 0.11066097914491971 - sys_corr_103: 0.21800476962550505 - sys_corr_104: 0.03244277037331398 - sys_corr_105: 0.10654505778064421 - sys_corr_106: -0.0649766869076885 - sys_corr_107: 0.33580676657532466 - sys_corr_108: -0.08422330123781543 - sys_corr_109: 0.01308311992850735 - sys_corr_110: 0.03514043198735742 - sys_corr_111: 0.07645342874311314 - sys_corr_112: -0.0022097757884046434 - sys_corr_113: -0.05793913784458731 - sys_corr_114: -0.00022626814571147065 - sys_corr_115: -0.018728591331773556 - sys_corr_116: -0.006674155382250791 - sys_corr_117: -0.004718628600493131 - sys_corr_118: 0.004256463019536328 - sys_corr_119: 0.00016786077821920764 - sys_corr_120: 0.00662474845163745 - sys_corr_121: 0.000871324611196016 - sys_corr_122: 0.0004013828382540245 - sys_corr_123: 0.0021193815294749006 - sys_corr_124: 0.015163061899305566 - sys_corr_125: 0.00038358088706868235 - sys_corr_126: -0.002225796900136752 - sys_corr_127: 0.5215741561145667 - sys_corr_128: 0.03810743881207262 - sys_corr_129: 0.06287386036872784 - sys_corr_130: 0.0024448035831464363 - sys_corr_131: -0.002543858347444163 - sys_corr_132: -0.017254045390283017 + sys_corr_2: -1108.6309594112743 + sys_corr_3: 1034.298714551206 + sys_corr_4: -1980.8496045917825 + sys_corr_5: 435.0689674901873 + sys_corr_6: 53.114713508849945 + sys_corr_7: -290.4384045209892 + sys_corr_8: 639.733231333866 + sys_corr_9: 292.295450889672 + sys_corr_10: 44.440177862236666 + sys_corr_11: -252.84720027841456 + sys_corr_12: -875.1188547172669 + sys_corr_13: -443.1027751268704 + sys_corr_14: 461.95107162512454 + sys_corr_15: 298.31400779890424 + sys_corr_16: -516.8992519515685 + sys_corr_17: 219.47102057109726 + sys_corr_18: -482.6733634095943 + sys_corr_19: 106.03785194519644 + sys_corr_20: -8.195238979784849 + sys_corr_21: -44.368454552667835 + sys_corr_22: 69.40150496341674 + sys_corr_23: 19.30892675955349 + sys_corr_24: -49.41093663736985 + sys_corr_25: -17.77332453583935 + sys_corr_26: -0.762231659006779 + sys_corr_27: -10.52634815399566 + sys_corr_28: -12.99129681668629 + sys_corr_29: 18.829949514263493 + sys_corr_30: 3.597499177480543 + sys_corr_31: 11.531613870098624 + sys_corr_32: -3.2280273178076 + sys_corr_33: -1.8455336889272436 + sys_corr_34: 2.56211469005191 + sys_corr_35: -2.8204469329329993 + sys_corr_36: -2.260999890610288 + sys_corr_37: 2.4469967575725087 + sys_corr_38: 0.9621804697256785 + sys_corr_39: 2.47696764918112 + sys_corr_40: 0.7169260448902764 + sys_corr_41: -3.2266594931240804 + sys_corr_42: -1.0971054662090982 + sys_corr_43: -1.4527829022440162 + sys_corr_44: 0.5334918010693394 + sys_corr_45: -3.4001988603206654 + sys_corr_46: 0.23840524364971707 + sys_corr_47: -3.221092642879985 + sys_corr_48: -1.1548608089372272 + sys_corr_49: -3.5728973313432593 + sys_corr_50: 2.5212799028437747 + sys_corr_51: 0.7696399552102116 + sys_corr_52: -1.1430879744927234 + sys_corr_53: 0.8918139463201666 + sys_corr_54: 0.08520910085141352 + sys_corr_55: -1.2872846762653811 + sys_corr_56: -0.8112982444370566 + sys_corr_57: 0.3217316550660811 + sys_corr_58: -0.7384479001098446 + sys_corr_59: -0.5429596911492255 + sys_corr_60: 0.3508459291779363 + sys_corr_61: -0.6685187793434412 + sys_corr_62: 0.4733562978848031 + sys_corr_63: -0.2111397307542531 + sys_corr_64: 0.2531633327986254 + sys_corr_65: 0.9238456253782846 + sys_corr_66: -0.24401891864943118 + sys_corr_67: -0.5337077742919383 + sys_corr_68: 1.0828735575272508 + sys_corr_69: -0.28009597117835233 + sys_corr_70: 0.09096481704312527 + sys_corr_71: 0.41508083977335314 + sys_corr_72: 0.13461957861324794 + sys_corr_73: -0.6918402259160074 + sys_corr_74: -0.4963431769708991 + sys_corr_75: 0.26852916520892467 + sys_corr_76: -0.20189969605232222 + sys_corr_77: -0.571987986589441 + sys_corr_78: 0.15942999334175617 + sys_corr_79: -0.11068224983606613 + sys_corr_80: -0.3784441086095635 + sys_corr_81: 0.12984467794317497 + sys_corr_82: 0.3419047617489413 + sys_corr_83: 0.07981820969502326 + sys_corr_84: -0.3466510838394841 + sys_corr_85: 0.2383900239064459 + sys_corr_86: 0.3706871600450342 + sys_corr_87: 0.1511060901436701 + sys_corr_88: -0.05618856014003709 + sys_corr_89: -0.039620149379793024 + sys_corr_90: -0.05217615945647761 + sys_corr_91: 0.30519348817615327 + sys_corr_92: 1.276131594601943 + sys_corr_93: 0.02254321700205571 + sys_corr_94: -0.27795276715774364 + sys_corr_95: 0.23275314072626657 + sys_corr_96: -0.005217726513617664 + sys_corr_97: 0.6495048389842378 + sys_corr_98: 0.8153125545901619 + sys_corr_99: -1.3699299009272765 + sys_corr_100: 0.020135738462189336 + sys_corr_101: -0.11066097914461115 + sys_corr_102: 0.2180047696268824 + sys_corr_103: -0.032442770373667947 + sys_corr_104: -0.10654505778143455 + sys_corr_105: -0.001728151947364063 + sys_corr_106: -0.0649766869075548 + sys_corr_107: -0.08422330123777219 + sys_corr_108: 0.013083119928530828 + sys_corr_109: -0.03514043198737842 + sys_corr_110: -0.3358067665752019 + sys_corr_111: -0.07645342874315089 + sys_corr_112: -0.0022097757884055325 + sys_corr_113: 0.057939137844587374 + sys_corr_114: -0.00022626814571103906 + sys_corr_115: -0.01872859133177467 + sys_corr_116: 0.006674155382248987 + sys_corr_117: 0.004718628600486605 + sys_corr_118: -0.004256463019531693 + sys_corr_119: -0.00016786077821849454 + sys_corr_120: -0.006624748451634626 + sys_corr_121: -0.0008713246111949509 + sys_corr_122: 0.0021193815294758937 + sys_corr_123: 0.00040138283825441693 + sys_corr_124: 0.015163061899303268 + sys_corr_125: 0.000383580887064057 + sys_corr_126: 0.002225796900135918 + sys_corr_127: 0.5215741561144716 + sys_corr_128: 0.03810743881206795 + sys_corr_129: 0.0628738603687194 + sys_corr_130: 0.002444803583145119 + sys_corr_131: 0.002543858347437851 + sys_corr_132: -0.017254045390284026 stat: 0.0 luminosity: 6750.541556000001 -- sys_corr_1: 4343.509557944347 - sys_corr_2: 647.6092524755767 - sys_corr_3: 1420.460103814061 - sys_corr_4: -1530.0366913338946 - sys_corr_5: -222.31209880201408 - sys_corr_6: -183.8970761363458 - sys_corr_7: -897.7513603379562 - sys_corr_8: 291.4307002045229 - sys_corr_9: -98.86482182735442 - sys_corr_10: 1163.466088503218 - sys_corr_11: -44.56209477869262 - sys_corr_12: 568.9698998951001 - sys_corr_13: -605.5512732709175 - sys_corr_14: 391.59401469342106 - sys_corr_15: -120.74524952458147 - sys_corr_16: -68.96886976359515 - sys_corr_17: -61.88045327995421 - sys_corr_18: -359.4352303417225 - sys_corr_19: -120.88128227222384 - sys_corr_20: 21.640112003553924 - sys_corr_21: 13.621244491041033 - sys_corr_22: 51.13606733003582 - sys_corr_23: 2.602817400754043 - sys_corr_24: -40.549055289597376 - sys_corr_25: 12.548228420897651 - sys_corr_26: 14.237870378649392 - sys_corr_27: -3.8818638971985107 - sys_corr_28: -1.7036860303105439 - sys_corr_29: -7.290102934521648 - sys_corr_30: 3.4250357286217064 - sys_corr_31: 8.598396832218183 - sys_corr_32: 0.5198731167266698 - sys_corr_33: -2.0167945657963875 - sys_corr_34: -1.3040523295056856 - sys_corr_35: 1.1159797314924158 - sys_corr_36: -2.290369981784848 - sys_corr_37: 1.5789289998763236 - sys_corr_38: 0.7118719688828667 - sys_corr_39: 6.01667350508579 - sys_corr_40: -0.5452416389133051 - sys_corr_41: 1.7480806395368969 - sys_corr_42: -1.2882340502888148 - sys_corr_43: 3.3538993025857624 - sys_corr_44: -0.49390677065356914 - sys_corr_45: -1.3839660598419359 - sys_corr_46: -1.2190709168980114 - sys_corr_47: -1.133586798238917 - sys_corr_48: 0.35413919641456676 - sys_corr_49: 0.03353484155344649 - sys_corr_50: 0.4764514796795981 - sys_corr_51: -0.652723233701579 - sys_corr_52: 0.7475646661159099 - sys_corr_53: -0.3877951072931866 - sys_corr_54: -0.057473469635105495 - sys_corr_55: -0.41735060740420965 - sys_corr_56: -0.12211232534691589 - sys_corr_57: -0.44909526060479327 - sys_corr_58: -1.6409190836320593 - sys_corr_59: 0.6132230780089146 - sys_corr_60: 0.6388536347053264 - sys_corr_61: -1.06848473137372 - sys_corr_62: 1.7489595944929714 - sys_corr_63: -1.0805976735598302 - sys_corr_64: -0.6567155251387253 - sys_corr_65: -0.2905998071412641 - sys_corr_66: 0.360012442023934 - sys_corr_67: 0.2501499629619166 - sys_corr_68: 1.4878664829535795 - sys_corr_69: 0.40754969874500646 - sys_corr_70: -0.4124836868243805 - sys_corr_71: -0.7843435379108232 - sys_corr_72: -0.22952735648540407 - sys_corr_73: 0.9529208188114727 - sys_corr_74: -0.3430488408463247 - sys_corr_75: -0.30092032428218857 - sys_corr_76: -0.29923130868334796 - sys_corr_77: 0.005292609501288483 - sys_corr_78: 0.16494652962799475 - sys_corr_79: -0.290682332945817 - sys_corr_80: 0.22377818692348353 - sys_corr_81: 0.32674992155549615 - sys_corr_82: -0.07286697738927715 - sys_corr_83: -0.4449619164867009 - sys_corr_84: -0.42417017424273545 - sys_corr_85: 0.19278917371588664 - sys_corr_86: 0.0357653879253712 - sys_corr_87: -0.40456564366017006 - sys_corr_88: -0.07250254987731561 - sys_corr_89: -0.023958828351701118 - sys_corr_90: -0.06435537479443103 - sys_corr_91: 0.04771856869209633 - sys_corr_92: 0.13399083190455893 - sys_corr_93: 0.047853473010913944 - sys_corr_94: 0.15055618615724875 - sys_corr_95: -0.028288071578188134 - sys_corr_96: 0.0752972972016949 - sys_corr_97: -0.17652772108117168 - sys_corr_98: 0.19850376979170695 - sys_corr_99: 0.5124726619067889 - sys_corr_100: 0.16702930995774778 - sys_corr_101: 0.010528486119706883 - sys_corr_102: -0.4816774922773695 - sys_corr_103: -0.491431142205666 - sys_corr_104: 0.10763932490154773 - sys_corr_105: 0.4860060421809863 - sys_corr_106: -0.05495969018650815 - sys_corr_107: -0.7028975755298854 - sys_corr_108: 0.056064351320264307 - sys_corr_109: 0.07069936725365661 - sys_corr_110: 0.0023380181582753233 - sys_corr_111: -0.1434619864846459 - sys_corr_112: -0.0029595826996719164 - sys_corr_113: -0.026356074295530264 - sys_corr_114: -0.00039690827559200117 - sys_corr_115: 0.022526784540193714 - sys_corr_116: 0.0001196668672765252 - sys_corr_117: -0.002105996594847761 - sys_corr_118: -0.005046809238987208 - sys_corr_119: 3.5075901138354965e-06 - sys_corr_120: -0.0022948708671840412 - sys_corr_121: -0.0011895962631121833 - sys_corr_122: 0.001084703762968645 - sys_corr_123: 0.0012739359804572383 - sys_corr_124: -0.0032849498880623052 - sys_corr_125: -0.0014874912574991768 - sys_corr_126: 0.0024714865323918534 - sys_corr_127: -0.14442684637276088 - sys_corr_128: -0.04124911178873155 - sys_corr_129: -0.008814989886287594 - sys_corr_130: -0.004027730766997639 - sys_corr_131: 0.001791117064466975 - sys_corr_132: 0.0006738019649626174 +- sys_corr_1: 4343.509557944349 + sys_corr_2: 647.609252475578 + sys_corr_3: 1420.4601038140634 + sys_corr_4: -1530.0366913338985 + sys_corr_5: -222.31209880201104 + sys_corr_6: -183.8970761363417 + sys_corr_7: -897.7513603379497 + sys_corr_8: 291.43070020451376 + sys_corr_9: -98.86482182736017 + sys_corr_10: 1163.4660885032213 + sys_corr_11: -44.56209477863298 + sys_corr_12: 568.9698998951114 + sys_corr_13: 605.5512732709155 + sys_corr_14: -391.5940146934265 + sys_corr_15: 120.74524952458472 + sys_corr_16: 68.9688697635871 + sys_corr_17: -61.880453279949776 + sys_corr_18: 359.43523034172176 + sys_corr_19: -120.88128227222049 + sys_corr_20: 21.64011200354992 + sys_corr_21: 13.621244491042203 + sys_corr_22: 51.13606733003687 + sys_corr_23: 2.602817400754572 + sys_corr_24: -40.54905528959661 + sys_corr_25: 12.54822842089728 + sys_corr_26: 14.237870378649152 + sys_corr_27: -3.8818638971986594 + sys_corr_28: -1.7036860303099184 + sys_corr_29: -7.290102934522453 + sys_corr_30: 3.4250357286210784 + sys_corr_31: 8.598396832218523 + sys_corr_32: -0.5198731167260903 + sys_corr_33: 2.016794565795452 + sys_corr_34: -1.3040523295053086 + sys_corr_35: 1.115979731492689 + sys_corr_36: -2.290369981784561 + sys_corr_37: -1.57892899987639 + sys_corr_38: -0.71187196888321 + sys_corr_39: -6.016673505086195 + sys_corr_40: 0.545241638913102 + sys_corr_41: 1.7480806395374409 + sys_corr_42: 1.288234050289482 + sys_corr_43: 3.353899302586553 + sys_corr_44: -0.49390677065414473 + sys_corr_45: 1.383966059842494 + sys_corr_46: 1.219070916897301 + sys_corr_47: 1.1335867982391885 + sys_corr_48: -0.354139196414737 + sys_corr_49: -0.033534841553874366 + sys_corr_50: 0.47645147967946727 + sys_corr_51: -0.6527232337015358 + sys_corr_52: 0.74756466611494 + sys_corr_53: 0.3877951072931562 + sys_corr_54: 0.05747346963443701 + sys_corr_55: 0.4173506074039796 + sys_corr_56: 0.12211232534797364 + sys_corr_57: -0.4490952606049144 + sys_corr_58: 1.640919083632383 + sys_corr_59: 0.6132230780070078 + sys_corr_60: -0.6388536347052524 + sys_corr_61: 1.0684847313736354 + sys_corr_62: -1.7489595944939194 + sys_corr_63: -1.0805976735602763 + sys_corr_64: -0.6567155251392953 + sys_corr_65: -0.29059980714143036 + sys_corr_66: -0.36001244202412114 + sys_corr_67: 0.2501499629627369 + sys_corr_68: -1.4878664829534811 + sys_corr_69: 0.4075496987447992 + sys_corr_70: 0.41248368682426567 + sys_corr_71: -0.7843435379104657 + sys_corr_72: 0.2295273564850927 + sys_corr_73: -0.9529208188113448 + sys_corr_74: -0.3430488408464111 + sys_corr_75: -0.3009203242819251 + sys_corr_76: -0.2992313086836811 + sys_corr_77: -0.005292609501302996 + sys_corr_78: -0.2237781869234438 + sys_corr_79: 0.16494652962810108 + sys_corr_80: -0.29068233294599954 + sys_corr_81: -0.3267499215555139 + sys_corr_82: 0.0728669773892076 + sys_corr_83: -0.44496191648685113 + sys_corr_84: 0.42417017424269093 + sys_corr_85: 0.19278917371596704 + sys_corr_86: -0.03576538792564432 + sys_corr_87: 0.40456564366001885 + sys_corr_88: -0.07250254987758498 + sys_corr_89: -0.0643553747944038 + sys_corr_90: -0.023958828351705604 + sys_corr_91: 0.047718568692090374 + sys_corr_92: -0.1339908319043533 + sys_corr_93: 0.04785347301087738 + sys_corr_94: 0.1505561861571375 + sys_corr_95: -0.02828807157804346 + sys_corr_96: -0.07529729720169002 + sys_corr_97: -0.17652772108118578 + sys_corr_98: -0.19850376979168494 + sys_corr_99: 0.5124726619067704 + sys_corr_100: 0.010528486119655352 + sys_corr_101: 0.4816774922773579 + sys_corr_102: -0.49143114220627765 + sys_corr_103: -0.10763932490149819 + sys_corr_104: -0.4860060421805304 + sys_corr_105: -0.16702930995782841 + sys_corr_106: -0.05495969018657348 + sys_corr_107: 0.05606435132024114 + sys_corr_108: 0.07069936725363986 + sys_corr_109: -0.0023380181582572535 + sys_corr_110: 0.7028975755298421 + sys_corr_111: 0.1434619864846685 + sys_corr_112: -0.0029595826996738966 + sys_corr_113: 0.02635607429553094 + sys_corr_114: -0.0003969082755910552 + sys_corr_115: 0.022526784540191705 + sys_corr_116: -0.00011966686726689071 + sys_corr_117: 0.00210599659485183 + sys_corr_118: 0.005046809238984689 + sys_corr_119: -3.5075901140025233e-06 + sys_corr_120: 0.0022948708671848305 + sys_corr_121: 0.001189596263113583 + sys_corr_122: 0.0012739359804527528 + sys_corr_123: 0.0010847037629654883 + sys_corr_124: -0.003284949888060205 + sys_corr_125: -0.0014874912574965086 + sys_corr_126: -0.00247148653239274 + sys_corr_127: -0.14442684637265912 + sys_corr_128: -0.041249111788732334 + sys_corr_129: -0.008814989886285395 + sys_corr_130: -0.00402773076699977 + sys_corr_131: -0.0017911170644635396 + sys_corr_132: 0.0006738019649639532 stat: 0.0 luminosity: 6589.665038 -- sys_corr_1: 4022.2690807647673 - sys_corr_2: 1951.3073819544875 - sys_corr_3: 1214.2089393914869 - sys_corr_4: -700.1412804704208 - sys_corr_5: -734.0779742174451 - sys_corr_6: -254.72248572328425 - sys_corr_7: -561.1043312507461 - sys_corr_8: -1053.536178891729 - sys_corr_9: -421.2412717662602 - sys_corr_10: -698.6472211168783 - sys_corr_11: 994.1053805494647 - sys_corr_12: -159.76104664662876 - sys_corr_13: 106.33102389145942 - sys_corr_14: 254.6631932079674 - sys_corr_15: -144.7063937828703 - sys_corr_16: -66.15388442264783 - sys_corr_17: -164.37579064967056 - sys_corr_18: 363.9302718732875 +- sys_corr_1: 4022.269080764768 + sys_corr_2: 1951.3073819544877 + sys_corr_3: 1214.2089393914885 + sys_corr_4: -700.1412804704247 + sys_corr_5: -734.077974217446 + sys_corr_6: -254.72248572328456 + sys_corr_7: -561.1043312507315 + sys_corr_8: -1053.536178891757 + sys_corr_9: -421.241271766254 + sys_corr_10: -698.6472211168824 + sys_corr_11: 994.10538054944 + sys_corr_12: -159.76104664668338 + sys_corr_13: -106.33102389142557 + sys_corr_14: -254.6631932079696 + sys_corr_15: 144.70639378286592 + sys_corr_16: 66.15388442266381 + sys_corr_17: -164.375790649677 + sys_corr_18: -363.93027187329153 sys_corr_19: -260.9615527775355 - sys_corr_20: -73.13392177252265 - sys_corr_21: 77.49401068122107 - sys_corr_22: 12.697227640360108 - sys_corr_23: 6.547802000500346 - sys_corr_24: -16.85339094063838 - sys_corr_25: -1.1178301769485322 - sys_corr_26: 6.27606518079585 - sys_corr_27: -4.424095149857982 - sys_corr_28: 13.332109515827451 - sys_corr_29: -12.308081937898942 - sys_corr_30: -3.5469654555680132 - sys_corr_31: 0.01309473602811475 - sys_corr_32: 0.25723642222422377 - sys_corr_33: -2.500278660933472 - sys_corr_34: 0.4610115098978564 - sys_corr_35: 2.628159945911985 - sys_corr_36: -1.714127159912481 - sys_corr_37: -0.3758815500536173 - sys_corr_38: 0.22617954258321651 - sys_corr_39: -1.9618459602020637 - sys_corr_40: -2.463145046321352 - sys_corr_41: -0.03912032013968181 - sys_corr_42: -0.05381562672515628 - sys_corr_43: 0.1232589785535436 - sys_corr_44: -5.3286494867121945 - sys_corr_45: 0.8086435624811223 - sys_corr_46: 4.803048565149827 - sys_corr_47: 1.1059356269824887 - sys_corr_48: 0.13712854801132035 - sys_corr_49: -1.534638190662957 - sys_corr_50: 1.6656266846888292 - sys_corr_51: -0.19325640138058126 - sys_corr_52: 1.688522397360831 - sys_corr_53: -0.4818402661794765 - sys_corr_54: 0.8692195501665181 - sys_corr_55: -2.6135790668422434 - sys_corr_56: -0.5467826311012708 - sys_corr_57: 0.501879144830117 - sys_corr_58: 0.5384596082710622 - sys_corr_59: 0.9922033803694692 - sys_corr_60: 0.48499639886181156 - sys_corr_61: 1.8657301505059973 - sys_corr_62: -0.0667314309650794 - sys_corr_63: 0.860339479687398 - sys_corr_64: 1.5675372537793606 - sys_corr_65: -0.16658319266426364 - sys_corr_66: -0.5713187970144711 - sys_corr_67: -0.6886997741891553 - sys_corr_68: 0.5497910056016984 - sys_corr_69: 0.10698987120127905 - sys_corr_70: 1.0231539511111285 - sys_corr_71: 0.02519300451381628 - sys_corr_72: -0.7007051913667234 - sys_corr_73: -0.4202880052555926 - sys_corr_74: 0.3746867838027559 - sys_corr_75: 0.13849463429752168 - sys_corr_76: 0.059859428379641116 - sys_corr_77: -0.18695179668390208 - sys_corr_78: -1.0075476712133786 - sys_corr_79: -0.2850568115124773 - sys_corr_80: -0.300726072321279 - sys_corr_81: 0.8890293814691681 - sys_corr_82: -0.6112890078146221 - sys_corr_83: -0.16673338249423242 - sys_corr_84: 0.1187027203123635 - sys_corr_85: -0.532529450398531 - sys_corr_86: -0.14886346089390878 - sys_corr_87: -0.20156310731616547 - sys_corr_88: 0.06269272057469097 - sys_corr_89: -0.10044931280001128 - sys_corr_90: 0.3202604251695519 - sys_corr_91: -0.309685559063304 - sys_corr_92: -0.19266342529235644 - sys_corr_93: -0.03136625250121501 - sys_corr_94: -0.13138077836423248 - sys_corr_95: -0.01397257776136716 - sys_corr_96: 0.11871257042422491 - sys_corr_97: 0.38081719053422 - sys_corr_98: -0.2372678778088969 - sys_corr_99: 0.14585843463163065 - sys_corr_100: 0.056379791134189214 - sys_corr_101: 0.46484328759314997 - sys_corr_102: -0.25629887154833114 - sys_corr_103: -0.061216113260377035 - sys_corr_104: -0.07662021924090767 - sys_corr_105: -0.19625303276053535 - sys_corr_106: -0.0034514048040549094 - sys_corr_107: 0.9847921266433075 - sys_corr_108: -0.2113209176603384 - sys_corr_109: -0.10775626415935485 - sys_corr_110: -0.07830379944064207 - sys_corr_111: -0.11813428903669237 - sys_corr_112: 0.04306899577367807 - sys_corr_113: -0.0394032763859426 - sys_corr_114: -0.0005824271116351835 - sys_corr_115: -0.008032776780051248 - sys_corr_116: 0.015142752467727739 - sys_corr_117: 0.0148004110494783 - sys_corr_118: 0.02263647501072266 - sys_corr_119: 0.0005950224742840121 - sys_corr_120: -0.011517811623149927 - sys_corr_121: 0.0003343998628523154 - sys_corr_122: 0.00029886388422544163 - sys_corr_123: 0.0064398670156794 - sys_corr_124: -0.028863819826530142 - sys_corr_125: -0.010513919930514898 - sys_corr_126: 0.004525745888197701 - sys_corr_127: -0.554962960270105 - sys_corr_128: -0.023839862595647104 - sys_corr_129: 0.030824117722937954 - sys_corr_130: -0.008312859200763899 - sys_corr_131: 0.006885867770241093 - sys_corr_132: -0.0003383162118001342 + sys_corr_20: -73.13392177251554 + sys_corr_21: 77.49401068122287 + sys_corr_22: 12.697227640361255 + sys_corr_23: 6.547802000502703 + sys_corr_24: -16.853390940638878 + sys_corr_25: -1.1178301769478045 + sys_corr_26: 6.276065180797596 + sys_corr_27: -4.4240951498575525 + sys_corr_28: 13.332109515828206 + sys_corr_29: -12.308081937899114 + sys_corr_30: -3.5469654555680434 + sys_corr_31: 0.01309473602799355 + sys_corr_32: -0.2572364222255373 + sys_corr_33: 2.500278660933757 + sys_corr_34: 0.4610115098979925 + sys_corr_35: 2.628159945911754 + sys_corr_36: -1.7141271599126835 + sys_corr_37: 0.37588155005378227 + sys_corr_38: -0.22617954258350764 + sys_corr_39: 1.961845960201534 + sys_corr_40: 2.4631450463212814 + sys_corr_41: -0.039120320139289566 + sys_corr_42: 0.05381562672498957 + sys_corr_43: 0.1232589785534609 + sys_corr_44: -5.328649486711337 + sys_corr_45: -0.8086435624832624 + sys_corr_46: -4.803048565149529 + sys_corr_47: -1.1059356269831262 + sys_corr_48: -0.13712854801169905 + sys_corr_49: 1.5346381906625668 + sys_corr_50: 1.665626684688696 + sys_corr_51: -0.1932564013795159 + sys_corr_52: 1.6885223973616394 + sys_corr_53: 0.4818402661793159 + sys_corr_54: -0.8692195501673448 + sys_corr_55: 2.613579066842581 + sys_corr_56: 0.5467826311022768 + sys_corr_57: 0.5018791448294126 + sys_corr_58: -0.5384596082705957 + sys_corr_59: 0.9922033803700072 + sys_corr_60: -0.48499639886130114 + sys_corr_61: -1.8657301505057846 + sys_corr_62: 0.06673143096540708 + sys_corr_63: 0.860339479686378 + sys_corr_64: 1.5675372537790129 + sys_corr_65: -0.166583192662872 + sys_corr_66: 0.5713187970139916 + sys_corr_67: -0.6886997741894276 + sys_corr_68: -0.5497910056013166 + sys_corr_69: 0.10698987120148096 + sys_corr_70: -1.023153951111291 + sys_corr_71: 0.02519300451385463 + sys_corr_72: 0.7007051913670873 + sys_corr_73: 0.42028800525513194 + sys_corr_74: 0.3746867838033625 + sys_corr_75: 0.1384946342977495 + sys_corr_76: 0.059859428379733216 + sys_corr_77: 0.18695179668354633 + sys_corr_78: 0.30072607232132315 + sys_corr_79: -1.007547671213359 + sys_corr_80: -0.28505681151228207 + sys_corr_81: -0.8890293814692152 + sys_corr_82: 0.6112890078145897 + sys_corr_83: -0.16673338249436637 + sys_corr_84: -0.11870272031218694 + sys_corr_85: -0.5325294503984755 + sys_corr_86: 0.14886346089376104 + sys_corr_87: 0.20156310731612706 + sys_corr_88: 0.06269272057455584 + sys_corr_89: 0.320260425169518 + sys_corr_90: -0.10044931280001435 + sys_corr_91: -0.3096855590632766 + sys_corr_92: 0.1926634252922656 + sys_corr_93: -0.03136625250120401 + sys_corr_94: -0.13138077836422035 + sys_corr_95: -0.013972577761390161 + sys_corr_96: -0.11871257042420987 + sys_corr_97: 0.3808171905341987 + sys_corr_98: 0.2372678778088924 + sys_corr_99: 0.1458584346316029 + sys_corr_100: 0.4648432875931722 + sys_corr_101: 0.2562988715483824 + sys_corr_102: -0.06121611326013575 + sys_corr_103: 0.0766202192410036 + sys_corr_104: 0.19625303276055872 + sys_corr_105: -0.05637979113416675 + sys_corr_106: -0.003451404804038815 + sys_corr_107: -0.21132091766032657 + sys_corr_108: -0.10775626415934443 + sys_corr_109: 0.07830379944063877 + sys_corr_110: -0.9847921266432745 + sys_corr_111: 0.11813428903667965 + sys_corr_112: 0.043068995773669294 + sys_corr_113: 0.03940327638593459 + sys_corr_114: -0.0005824271116345185 + sys_corr_115: -0.008032776780047468 + sys_corr_116: -0.015142752467733805 + sys_corr_117: -0.014800411049481913 + sys_corr_118: -0.022636475010717944 + sys_corr_119: -0.0005950224742864456 + sys_corr_120: 0.011517811623149889 + sys_corr_121: -0.0003343998628540387 + sys_corr_122: 0.006439867015684669 + sys_corr_123: 0.000298863884224149 + sys_corr_124: -0.02886381982652704 + sys_corr_125: -0.010513919930525114 + sys_corr_126: -0.004525745888194673 + sys_corr_127: -0.554962960270218 + sys_corr_128: -0.023839862595657985 + sys_corr_129: 0.03082411772294034 + sys_corr_130: -0.008312859200761802 + sys_corr_131: -0.006885867770246608 + sys_corr_132: -0.00033831621180228005 stat: 0.0 luminosity: 6434.088232 -- sys_corr_1: 3597.5836780808395 - sys_corr_2: 2898.1517841470895 - sys_corr_3: 634.0668155789637 - sys_corr_4: 201.5526427152709 - sys_corr_5: -1104.8189262598596 - sys_corr_6: -191.7434936830036 - sys_corr_7: 35.35969307402046 - sys_corr_8: -346.4816110016219 - sys_corr_9: -480.6637482174883 - sys_corr_10: -169.83856762316807 - sys_corr_11: -1214.295527049914 - sys_corr_12: 644.2001552661109 - sys_corr_13: 539.850803907077 - sys_corr_14: -106.66687533716015 - sys_corr_15: 71.57336373866981 - sys_corr_16: -307.41490092248824 - sys_corr_17: 381.89778318993126 - sys_corr_18: 302.9242299746782 - sys_corr_19: 185.01900698849764 - sys_corr_20: 24.002912154439883 - sys_corr_21: -103.18369675382341 - sys_corr_22: -27.952712287355116 - sys_corr_23: 11.785140336930567 - sys_corr_24: 19.3425027325109 - sys_corr_25: 0.21881615073430638 - sys_corr_26: 0.6382018943397186 - sys_corr_27: 2.192684033441702 - sys_corr_28: 12.80724974103564 - sys_corr_29: -17.298821010151784 - sys_corr_30: -5.314085025844201 - sys_corr_31: -1.127004531141094 - sys_corr_32: -1.0189265119895177 - sys_corr_33: -2.2780254431413436 - sys_corr_34: -0.619333756683199 - sys_corr_35: 0.1541249089330821 - sys_corr_36: -0.7984481847697784 - sys_corr_37: 0.6981682746781178 - sys_corr_38: -0.10524833085497354 - sys_corr_39: -3.7993501455523013 - sys_corr_40: 1.1070611332579186 - sys_corr_41: 2.52252479834741 - sys_corr_42: -0.538938660486474 - sys_corr_43: -1.7453485965520719 - sys_corr_44: -0.768157797657782 - sys_corr_45: -0.17238643847073945 - sys_corr_46: -0.07356682707350638 - sys_corr_47: 2.524955147784141 - sys_corr_48: -1.5231008618813506 - sys_corr_49: 1.907374765419417 - sys_corr_50: 0.7591609473949604 - sys_corr_51: -0.3741315153861321 - sys_corr_52: -0.18263680487321376 - sys_corr_53: -1.0682307324784943 - sys_corr_54: 0.2928561649947912 - sys_corr_55: 0.8223062664515148 - sys_corr_56: 0.5350012832718088 - sys_corr_57: 0.5096308596272179 - sys_corr_58: 1.7503655470571358 - sys_corr_59: -0.6201462338241396 - sys_corr_60: -0.5123224295998916 - sys_corr_61: 0.44363919455276957 - sys_corr_62: -0.1706461328431036 - sys_corr_63: -0.35761977744779305 - sys_corr_64: -0.04774260106776367 - sys_corr_65: -0.37658919745461134 - sys_corr_66: 0.40585597054843897 - sys_corr_67: 0.5686536073326464 - sys_corr_68: -0.7195312064370196 - sys_corr_69: -0.7909913034284701 - sys_corr_70: 0.6970587977438857 - sys_corr_71: -0.8350978055010652 - sys_corr_72: 0.031117152998404337 - sys_corr_73: -0.37490746204704756 - sys_corr_74: 0.23218157886559782 - sys_corr_75: 1.2949833276124163 - sys_corr_76: -0.15586345356894843 - sys_corr_77: -0.13703553608737898 - sys_corr_78: 0.8648310216528461 - sys_corr_79: 0.2296117501578705 - sys_corr_80: 0.0050136470829700375 - sys_corr_81: -0.3387785358023795 - sys_corr_82: -0.34063780024623047 - sys_corr_83: -0.1319978971334019 - sys_corr_84: -0.6778130952675729 - sys_corr_85: -0.2786211908184977 - sys_corr_86: 0.18497341089828398 - sys_corr_87: -0.34736803643122954 - sys_corr_88: -0.13795668211642517 - sys_corr_89: -0.24581140027829754 - sys_corr_90: 0.10789477798168386 - sys_corr_91: -1.1782657226126108 - sys_corr_92: -0.4638626398585833 - sys_corr_93: 0.0027698466294495986 - sys_corr_94: -0.23930687823255928 - sys_corr_95: 0.11842499221922773 - sys_corr_96: -0.07880001960991227 - sys_corr_97: 0.02063553246343831 - sys_corr_98: -0.10620171333654602 - sys_corr_99: -0.023582702268681 - sys_corr_100: -0.6858949069837669 - sys_corr_101: 0.5330114704916565 - sys_corr_102: 0.814234957733307 - sys_corr_103: 0.18610141434426453 - sys_corr_104: -0.018393701041171953 - sys_corr_105: 0.21307516448146063 - sys_corr_106: 0.07692538063371183 - sys_corr_107: -0.15154936315820725 - sys_corr_108: -0.23252592123768184 - sys_corr_109: 0.15021122933996653 - sys_corr_110: 0.016892328983535217 - sys_corr_111: 0.044281020649012515 - sys_corr_112: -0.004559096852075125 - sys_corr_113: 0.027860992458268317 - sys_corr_114: -0.0002478637764278963 - sys_corr_115: -0.034858827073336554 - sys_corr_116: 0.02132267674944301 - sys_corr_117: 0.016636502600005883 - sys_corr_118: 0.011052912347816463 - sys_corr_119: 0.0020261357259698373 - sys_corr_120: -0.011440141478576367 - sys_corr_121: 0.0019241242690684625 - sys_corr_122: 0.0012130349843525452 - sys_corr_123: 0.006376478766578426 - sys_corr_124: -0.029099631406019406 - sys_corr_125: -0.008490188302601401 - sys_corr_126: 5.1755556275694265e-05 - sys_corr_127: 0.11543681824161377 - sys_corr_128: -0.011410556338934154 - sys_corr_129: -0.001812645814894948 - sys_corr_130: 0.002694173587756314 - sys_corr_131: 0.004737185923350968 - sys_corr_132: 0.008451738295747238 +- sys_corr_1: 3597.5836780808386 + sys_corr_2: 2898.15178414709 + sys_corr_3: 634.0668155789643 + sys_corr_4: 201.55264271526912 + sys_corr_5: -1104.8189262598582 + sys_corr_6: -191.74349368300454 + sys_corr_7: 35.35969307401692 + sys_corr_8: -346.48161100163924 + sys_corr_9: -480.6637482175094 + sys_corr_10: -169.83856762313852 + sys_corr_11: -1214.295527049844 + sys_corr_12: 644.2001552661741 + sys_corr_13: -539.8508039071265 + sys_corr_14: 106.66687533716764 + sys_corr_15: -71.57336373866512 + sys_corr_16: 307.4149009224916 + sys_corr_17: 381.89778318993757 + sys_corr_18: -302.92422997466105 + sys_corr_19: 185.0190069884994 + sys_corr_20: 24.00291215444022 + sys_corr_21: -103.18369675382833 + sys_corr_22: -27.95271228735859 + sys_corr_23: 11.785140336929619 + sys_corr_24: 19.342502732511647 + sys_corr_25: 0.21881615073422964 + sys_corr_26: 0.6382018943386127 + sys_corr_27: 2.1926840334413416 + sys_corr_28: 12.807249741035662 + sys_corr_29: -17.29882101015129 + sys_corr_30: -5.314085025843661 + sys_corr_31: -1.1270045311408345 + sys_corr_32: 1.0189265119902782 + sys_corr_33: 2.2780254431413938 + sys_corr_34: -0.6193337566848339 + sys_corr_35: 0.15412490893435793 + sys_corr_36: -0.7984481847694243 + sys_corr_37: -0.6981682746786639 + sys_corr_38: 0.10524833085575531 + sys_corr_39: 3.799350145553445 + sys_corr_40: -1.1070611332579767 + sys_corr_41: 2.52252479834713 + sys_corr_42: 0.5389386604863692 + sys_corr_43: -1.7453485965520723 + sys_corr_44: -0.7681577976569809 + sys_corr_45: 0.17238643847058488 + sys_corr_46: 0.073566827073308 + sys_corr_47: -2.524955147784547 + sys_corr_48: 1.523100861881639 + sys_corr_49: -1.9073747654185862 + sys_corr_50: 0.7591609473948183 + sys_corr_51: -0.3741315153869212 + sys_corr_52: -0.18263680487326833 + sys_corr_53: 1.0682307324780649 + sys_corr_54: -0.29285616499436246 + sys_corr_55: -0.8223062664516588 + sys_corr_56: -0.5350012832721852 + sys_corr_57: 0.5096308596271579 + sys_corr_58: -1.7503655470571593 + sys_corr_59: -0.6201462338217976 + sys_corr_60: 0.5123224295995273 + sys_corr_61: -0.4436391945529181 + sys_corr_62: 0.17064613284385025 + sys_corr_63: -0.35761977744744666 + sys_corr_64: -0.04774260106716009 + sys_corr_65: -0.3765891974546666 + sys_corr_66: -0.40585597054830563 + sys_corr_67: 0.5686536073321307 + sys_corr_68: 0.7195312064360443 + sys_corr_69: -0.7909913034280526 + sys_corr_70: -0.6970587977432441 + sys_corr_71: -0.835097805501992 + sys_corr_72: -0.03111715299831061 + sys_corr_73: 0.37490746204746567 + sys_corr_74: 0.23218157886510865 + sys_corr_75: 1.2949833276124876 + sys_corr_76: -0.15586345356809436 + sys_corr_77: 0.13703553608803043 + sys_corr_78: -0.005013647083121092 + sys_corr_79: 0.8648310216529788 + sys_corr_80: 0.22961175015764917 + sys_corr_81: 0.33877853580271566 + sys_corr_82: 0.34063780024634444 + sys_corr_83: -0.13199789713331717 + sys_corr_84: 0.6778130952674688 + sys_corr_85: -0.2786211908185978 + sys_corr_86: -0.184973410898565 + sys_corr_87: 0.34736803643153835 + sys_corr_88: -0.13795668211591927 + sys_corr_89: 0.10789477798168191 + sys_corr_90: -0.24581140027832535 + sys_corr_91: -1.1782657226126894 + sys_corr_92: 0.4638626398588156 + sys_corr_93: 0.0027698466295425477 + sys_corr_94: -0.23930687823221491 + sys_corr_95: 0.11842499221877112 + sys_corr_96: 0.07880001960985104 + sys_corr_97: 0.020635532463667373 + sys_corr_98: 0.10620171333660047 + sys_corr_99: -0.02358270226858902 + sys_corr_100: 0.5330114704917122 + sys_corr_101: -0.8142349577332945 + sys_corr_102: 0.18610141434433536 + sys_corr_103: 0.018393701041016938 + sys_corr_104: -0.21307516448173303 + sys_corr_105: 0.6858949069837921 + sys_corr_106: 0.0769253806337194 + sys_corr_107: -0.23252592123767862 + sys_corr_108: 0.15021122933997666 + sys_corr_109: -0.016892328983537413 + sys_corr_110: 0.1515493631582616 + sys_corr_111: -0.04428102064902798 + sys_corr_112: -0.004559096852069904 + sys_corr_113: -0.027860992458261753 + sys_corr_114: -0.00024786377642787465 + sys_corr_115: -0.03485882707333081 + sys_corr_116: -0.02132267674944707 + sys_corr_117: -0.01663650260000643 + sys_corr_118: -0.011052912347817842 + sys_corr_119: -0.0020261357259688385 + sys_corr_120: 0.011440141478576346 + sys_corr_121: -0.0019241242690677324 + sys_corr_122: 0.006376478766577732 + sys_corr_123: 0.0012130349843520413 + sys_corr_124: -0.029099631406016062 + sys_corr_125: -0.008490188302598763 + sys_corr_126: -5.175555627587269e-05 + sys_corr_127: 0.11543681824159943 + sys_corr_128: -0.011410556338934475 + sys_corr_129: -0.0018126458148901518 + sys_corr_130: 0.0026941735877565325 + sys_corr_131: -0.004737185923349674 + sys_corr_132: 0.00845173829574736 stat: 0.0 luminosity: 6289.764712000001 -- sys_corr_1: 3351.500144620634 - sys_corr_2: 3151.869878907478 - sys_corr_3: 366.97837916074917 - sys_corr_4: 621.6056331972458 - sys_corr_5: -958.6256031719473 - sys_corr_6: -48.08752232002192 - sys_corr_7: 152.5991028888718 - sys_corr_8: -21.656477770574035 - sys_corr_9: -150.10404123502795 - sys_corr_10: -78.42745528440778 - sys_corr_11: 206.48712485607146 - sys_corr_12: -51.48561520409876 - sys_corr_13: -283.2972349351326 - sys_corr_14: -1166.2651604065172 - sys_corr_15: 290.4128974671101 - sys_corr_16: 501.2410753844404 - sys_corr_17: -262.0662225691497 - sys_corr_18: -630.9760021529698 - sys_corr_19: 162.98254441967168 - sys_corr_20: 48.58515949584121 - sys_corr_21: 126.41590354834396 - sys_corr_22: -61.42557505616983 - sys_corr_23: -23.786569570305627 - sys_corr_24: 12.015499113671577 - sys_corr_25: 0.31091344890562234 - sys_corr_26: -3.8948213438558628 - sys_corr_27: -2.292867088634379 - sys_corr_28: 22.69870747143204 - sys_corr_29: -11.87707911146543 - sys_corr_30: 5.470392594247443 - sys_corr_31: -4.359586903521355 - sys_corr_32: -2.8443580660886956 - sys_corr_33: 3.5443349147218637 - sys_corr_34: 5.397104520504276 - sys_corr_35: -1.7298561751206503 - sys_corr_36: 2.370307202905846 - sys_corr_37: 0.17025925923350635 - sys_corr_38: 1.3070409904455034 - sys_corr_39: 5.36747130194052 - sys_corr_40: 3.857589399089955 - sys_corr_41: 0.6975820594871948 - sys_corr_42: -2.741042792993921 - sys_corr_43: -1.573843298696875 - sys_corr_44: 0.5038429865765118 - sys_corr_45: -1.645717025174751 - sys_corr_46: -1.717464904302785 - sys_corr_47: -1.0132876801130122 - sys_corr_48: -1.7066978680761642 - sys_corr_49: 2.5070704019376295 - sys_corr_50: -1.8518523546139594 - sys_corr_51: 2.5668108067815165 - sys_corr_52: -1.5315298329750322 - sys_corr_53: 1.0755661062439834 - sys_corr_54: -1.342893568541023 - sys_corr_55: 0.987181850156062 - sys_corr_56: -0.02063628282562828 - sys_corr_57: 0.11245630272674884 - sys_corr_58: 0.44113967942846805 - sys_corr_59: 0.1522440543075996 - sys_corr_60: 0.13470697387904765 - sys_corr_61: -0.44458658021541597 - sys_corr_62: 0.3222736653859197 - sys_corr_63: 0.3970989617279647 - sys_corr_64: -0.9091883732786956 - sys_corr_65: -0.3779566761963958 - sys_corr_66: -0.3418439719655896 - sys_corr_67: -0.19347175485226548 - sys_corr_68: 0.6577610893143052 - sys_corr_69: -0.4414063427433125 - sys_corr_70: 0.7290932418159942 - sys_corr_71: -0.14663396499011164 - sys_corr_72: -0.05021326281745209 - sys_corr_73: -0.8609946427807289 - sys_corr_74: -0.1037366312550975 - sys_corr_75: -0.9189986291361233 - sys_corr_76: 0.07778559448635793 - sys_corr_77: 0.5372284938170684 - sys_corr_78: 0.5915562051190508 - sys_corr_79: 0.18069866852620206 - sys_corr_80: 0.5613343768248998 - sys_corr_81: -0.42826792809015357 - sys_corr_82: 0.8935165087724362 - sys_corr_83: 0.1858443221637851 - sys_corr_84: -0.8864183549063671 - sys_corr_85: 0.29567307341134413 - sys_corr_86: -0.6295726105214468 - sys_corr_87: 0.9755698658255182 - sys_corr_88: 0.1193455697655269 - sys_corr_89: 0.08667135249983342 - sys_corr_90: 0.1629318477457631 - sys_corr_91: -0.4035577779288348 - sys_corr_92: 0.3657327647347967 - sys_corr_93: -0.027313620626318407 - sys_corr_94: -0.1672877149552058 - sys_corr_95: -0.02953325819931565 - sys_corr_96: -0.08219652045744276 - sys_corr_97: -0.10351530501743679 - sys_corr_98: 0.09568134504776427 - sys_corr_99: 0.04165660998087766 - sys_corr_100: -0.07278909860598388 - sys_corr_101: -1.362145884166044 - sys_corr_102: -0.14797809669725345 - sys_corr_103: -0.1355300302764834 - sys_corr_104: -0.012946732587322643 - sys_corr_105: 0.17094419471391345 - sys_corr_106: 0.4737288722196958 - sys_corr_107: -0.07983819514262415 - sys_corr_108: 0.16061609768054935 - sys_corr_109: 0.2510857196368088 - sys_corr_110: -0.10080624799790042 - sys_corr_111: -0.17871688760194782 - sys_corr_112: -0.03292590362735226 - sys_corr_113: 0.11439672489976338 - sys_corr_114: 0.0004536420256620744 - sys_corr_115: -0.044381205980804195 - sys_corr_116: 0.005039137302471916 - sys_corr_117: 0.00912268809101977 - sys_corr_118: -0.03859770716325283 - sys_corr_119: 0.0018739513883907642 - sys_corr_120: -0.002760521395141534 - sys_corr_121: 0.0020069340388445315 - sys_corr_122: 0.0026779599944679097 - sys_corr_123: 0.003397341620931392 - sys_corr_124: -0.014627734976015138 - sys_corr_125: -0.00181577173533949 - sys_corr_126: -0.002007557370676663 - sys_corr_127: 0.16814970268711235 - sys_corr_128: -0.1627771058950553 - sys_corr_129: -0.08153867055950911 - sys_corr_130: 0.007328478595621197 - sys_corr_131: 0.005280613315171036 - sys_corr_132: 0.002597693172976646 +- sys_corr_1: 3351.5001446206375 + sys_corr_2: 3151.8698789074765 + sys_corr_3: 366.9783791607492 + sys_corr_4: 621.605633197244 + sys_corr_5: -958.6256031719495 + sys_corr_6: -48.087522320020234 + sys_corr_7: 152.59910288886527 + sys_corr_8: -21.656477770580878 + sys_corr_9: -150.10404123502335 + sys_corr_10: -78.42745528439679 + sys_corr_11: 206.48712485606634 + sys_corr_12: -51.485615204113046 + sys_corr_13: 283.2972349351303 + sys_corr_14: 1166.2651604065222 + sys_corr_15: -290.41289746710015 + sys_corr_16: -501.241075384464 + sys_corr_17: -262.06622256914795 + sys_corr_18: 630.976002152959 + sys_corr_19: 162.98254441967 + sys_corr_20: 48.58515949583547 + sys_corr_21: 126.41590354834591 + sys_corr_22: -61.42557505616368 + sys_corr_23: -23.78656957030505 + sys_corr_24: 12.015499113670357 + sys_corr_25: 0.3109134489040843 + sys_corr_26: -3.8948213438575054 + sys_corr_27: -2.2928670886345355 + sys_corr_28: 22.698707471431113 + sys_corr_29: -11.87707911146425 + sys_corr_30: 5.470392594246702 + sys_corr_31: -4.359586903521322 + sys_corr_32: 2.8443580660900256 + sys_corr_33: -3.5443349147223446 + sys_corr_34: 5.397104520506221 + sys_corr_35: -1.7298561751207697 + sys_corr_36: 2.3703072029059267 + sys_corr_37: -0.17025925923373192 + sys_corr_38: -1.3070409904458475 + sys_corr_39: -5.367471301940658 + sys_corr_40: -3.857589399090668 + sys_corr_41: 0.6975820594865011 + sys_corr_42: 2.7410427929948713 + sys_corr_43: -1.5738432986954436 + sys_corr_44: 0.5038429865760667 + sys_corr_45: 1.6457170251758175 + sys_corr_46: 1.717464904302351 + sys_corr_47: 1.0132876801131554 + sys_corr_48: 1.7066978680768663 + sys_corr_49: -2.507070401937888 + sys_corr_50: -1.851852354613495 + sys_corr_51: 2.5668108067816746 + sys_corr_52: -1.5315298329745428 + sys_corr_53: -1.0755661062434425 + sys_corr_54: 1.342893568541716 + sys_corr_55: -0.987181850156258 + sys_corr_56: 0.02063628282501759 + sys_corr_57: 0.11245630272694762 + sys_corr_58: -0.44113967942863114 + sys_corr_59: 0.15224405430743662 + sys_corr_60: -0.13470697387904662 + sys_corr_61: 0.4445865802151983 + sys_corr_62: -0.32227366538616814 + sys_corr_63: 0.39709896172871817 + sys_corr_64: -0.9091883732789502 + sys_corr_65: -0.3779566761975432 + sys_corr_66: 0.34184397196564975 + sys_corr_67: -0.193471754851638 + sys_corr_68: -0.6577610893139253 + sys_corr_69: -0.4414063427436817 + sys_corr_70: -0.7290932418160464 + sys_corr_71: -0.14663396498952555 + sys_corr_72: 0.050213262817397034 + sys_corr_73: 0.8609946427804949 + sys_corr_74: -0.10373663125462856 + sys_corr_75: -0.9189986291359823 + sys_corr_76: 0.07778559448567461 + sys_corr_77: -0.5372284938179753 + sys_corr_78: -0.5613343768247491 + sys_corr_79: 0.5915562051189678 + sys_corr_80: 0.1806986685263068 + sys_corr_81: 0.42826792808988623 + sys_corr_82: -0.8935165087724859 + sys_corr_83: 0.18584432216393776 + sys_corr_84: 0.8864183549063829 + sys_corr_85: 0.2956730734115124 + sys_corr_86: 0.6295726105214354 + sys_corr_87: -0.9755698658258084 + sys_corr_88: 0.11934556976433976 + sys_corr_89: 0.16293184774573458 + sys_corr_90: 0.08667135249983376 + sys_corr_91: -0.40355777792878766 + sys_corr_92: -0.36573276473504684 + sys_corr_93: -0.027313620626311166 + sys_corr_94: -0.1672877149551742 + sys_corr_95: -0.029533258199341262 + sys_corr_96: 0.08219652045743811 + sys_corr_97: -0.10351530501747516 + sys_corr_98: -0.09568134504776042 + sys_corr_99: 0.04165660998084731 + sys_corr_100: -1.3621458841660632 + sys_corr_101: 0.14797809669725104 + sys_corr_102: -0.13553003027679314 + sys_corr_103: 0.012946732587385903 + sys_corr_104: -0.17094419471375238 + sys_corr_105: 0.07278909860609852 + sys_corr_106: 0.47372887221967874 + sys_corr_107: 0.16061609768054386 + sys_corr_108: 0.251085719636799 + sys_corr_109: 0.10080624799789069 + sys_corr_110: 0.07983819514259088 + sys_corr_111: 0.1787168876019845 + sys_corr_112: -0.032925903627344315 + sys_corr_113: -0.11439672489976421 + sys_corr_114: 0.0004536420256619843 + sys_corr_115: -0.04438120598081133 + sys_corr_116: -0.00503913730247193 + sys_corr_117: -0.00912268809101772 + sys_corr_118: 0.03859770716324683 + sys_corr_119: -0.0018739513883905008 + sys_corr_120: 0.0027605213951388805 + sys_corr_121: -0.002006934038844513 + sys_corr_122: 0.003397341620929565 + sys_corr_123: 0.0026779599944664386 + sys_corr_124: -0.01462773497601738 + sys_corr_125: -0.0018157717353387527 + sys_corr_126: 0.002007557370674848 + sys_corr_127: 0.16814970268713397 + sys_corr_128: -0.16277710589505895 + sys_corr_129: -0.08153867055950745 + sys_corr_130: 0.007328478595621301 + sys_corr_131: -0.005280613315168866 + sys_corr_132: 0.0025976931729771204 stat: 0.0 luminosity: 6072.557480000001 -- sys_corr_1: 3097.836663189718 +- sys_corr_1: 3097.8366631897165 sys_corr_2: 3199.2465016295873 - sys_corr_3: 172.26011446253213 - sys_corr_4: 878.962590474895 - sys_corr_5: -735.4264031839837 - sys_corr_6: 73.32992399781543 - sys_corr_7: 632.9129186503673 - sys_corr_8: 428.7698176714918 - sys_corr_9: 364.70941407798915 - sys_corr_10: -182.9885940394121 - sys_corr_11: -357.6866226829764 - sys_corr_12: -445.65349953143703 - sys_corr_13: 391.4543487588716 - sys_corr_14: 937.2049983106937 - sys_corr_15: -291.8500436567912 - sys_corr_16: 409.43695444062206 - sys_corr_17: -414.7399852850551 - sys_corr_18: -411.4459442823028 - sys_corr_19: -338.32629583933704 - sys_corr_20: 20.254406644187288 - sys_corr_21: -27.60526179340533 - sys_corr_22: 12.399110964466633 - sys_corr_23: -18.546286676918825 - sys_corr_24: -12.183489649201402 - sys_corr_25: -4.2567323863271715 - sys_corr_26: 0.9168061858396965 - sys_corr_27: -8.260819879882591 - sys_corr_28: 8.827957624862966 - sys_corr_29: -4.552022165805651 - sys_corr_30: 2.012922073953183 - sys_corr_31: 3.560092540152967 - sys_corr_32: -2.848664694693671 - sys_corr_33: -3.954782174366509 - sys_corr_34: -5.238341330757885 - sys_corr_35: 3.735318709345639 - sys_corr_36: -3.0831129149803926 - sys_corr_37: 0.9169616558157654 - sys_corr_38: 0.4199883162505214 - sys_corr_39: 0.3209573294916863 - sys_corr_40: -0.10385240800579877 - sys_corr_41: -0.9344291408816909 - sys_corr_42: -0.4292932676639851 - sys_corr_43: -0.3881745458938551 - sys_corr_44: -1.199706036247761 - sys_corr_45: -0.6169467274101123 - sys_corr_46: -0.7846889005515814 - sys_corr_47: 2.1964769009866325 - sys_corr_48: 0.057711475146196664 - sys_corr_49: -0.6739446750958487 - sys_corr_50: -0.6840360909105612 - sys_corr_51: -0.9564185274218658 - sys_corr_52: 0.8144479063393649 - sys_corr_53: -0.47728721875606067 - sys_corr_54: 0.24992099993057373 - sys_corr_55: 0.6312450334698732 - sys_corr_56: -0.575839972781946 - sys_corr_57: 0.6855680324849226 - sys_corr_58: 0.3379306491487846 - sys_corr_59: 0.13834770644707592 - sys_corr_60: 0.2410518540867858 - sys_corr_61: -0.38527991422268587 - sys_corr_62: 0.08249624594076858 - sys_corr_63: 0.2136979142526263 - sys_corr_64: 0.5123876861012376 - sys_corr_65: 1.176619616522117 - sys_corr_66: 0.2239668262276942 - sys_corr_67: 0.26925900575981854 - sys_corr_68: 0.7680467008815687 - sys_corr_69: -0.10921372928328263 - sys_corr_70: 0.649025467545053 - sys_corr_71: -0.19015208494372668 - sys_corr_72: -0.3887791354654593 - sys_corr_73: -0.3721190220266634 - sys_corr_74: -0.36376925978853175 - sys_corr_75: 0.2580131173021141 - sys_corr_76: -1.1321259414845384 - sys_corr_77: -0.38711924160765265 - sys_corr_78: -0.1256709949265121 - sys_corr_79: 0.3253901223927979 - sys_corr_80: -0.008361047303488437 - sys_corr_81: 0.9124908387411148 - sys_corr_82: -0.13052821071816947 - sys_corr_83: 0.10973074132271306 - sys_corr_84: -0.5338624900189253 - sys_corr_85: 0.12560032982272695 - sys_corr_86: -0.21234838947966336 - sys_corr_87: -0.4658742867735593 - sys_corr_88: 0.6024174140031762 - sys_corr_89: -0.3928436887645045 - sys_corr_90: 0.10134468650055063 - sys_corr_91: -0.38122920616850875 - sys_corr_92: 0.21932778598513156 - sys_corr_93: -0.025330653705075305 - sys_corr_94: -0.2610133764222057 - sys_corr_95: 0.039341646447423356 - sys_corr_96: -0.03186753875177321 - sys_corr_97: -0.2751263827641841 - sys_corr_98: 0.20846586612990653 - sys_corr_99: 0.11324203173728167 - sys_corr_100: 0.9774854949155608 - sys_corr_101: 0.2888954742700039 - sys_corr_102: -0.14895353089881327 - sys_corr_103: -0.14306317851003209 - sys_corr_104: -0.10024390876557221 - sys_corr_105: -0.11682474248530354 - sys_corr_106: 0.20636647269423156 - sys_corr_107: 0.01403402430272212 - sys_corr_108: 0.5284540386352554 - sys_corr_109: 0.22793576855509515 - sys_corr_110: 0.08589383440232097 - sys_corr_111: -0.21132229060534904 - sys_corr_112: 0.025260228851980537 - sys_corr_113: -0.0156985903721732 - sys_corr_114: 0.0003655654650026949 - sys_corr_115: -0.037315627600574226 - sys_corr_116: 0.0010940711215541314 - sys_corr_117: -0.0005506412159469621 - sys_corr_118: -0.006543629325084503 - sys_corr_119: -0.0006404127221759173 - sys_corr_120: -0.004269307325640429 - sys_corr_121: -0.002575266429859666 - sys_corr_122: 0.0026580240854244667 - sys_corr_123: 0.006881536286752424 - sys_corr_124: -0.006400561159191034 - sys_corr_125: -0.002594257033313043 - sys_corr_126: -0.0010877039659604047 - sys_corr_127: 0.02024635024567689 - sys_corr_128: -0.13971406294347943 - sys_corr_129: 0.01753026254299829 - sys_corr_130: -0.0009137898426989052 - sys_corr_131: 0.0019388609898706236 - sys_corr_132: -0.0033496534780346997 + sys_corr_3: 172.26011446253187 + sys_corr_4: 878.9625904748956 + sys_corr_5: -735.4264031839824 + sys_corr_6: 73.32992399780926 + sys_corr_7: 632.9129186503649 + sys_corr_8: 428.7698176715155 + sys_corr_9: 364.7094140779951 + sys_corr_10: -182.98859403941734 + sys_corr_11: -357.68662268302455 + sys_corr_12: -445.6534995314229 + sys_corr_13: -391.4543487588665 + sys_corr_14: -937.2049983106899 + sys_corr_15: 291.85004365677514 + sys_corr_16: -409.4369544406466 + sys_corr_17: -414.7399852850546 + sys_corr_18: 411.4459442822875 + sys_corr_19: -338.3262958393355 + sys_corr_20: 20.254406644188627 + sys_corr_21: -27.60526179340134 + sys_corr_22: 12.399110964469864 + sys_corr_23: -18.546286676919298 + sys_corr_24: -12.183489649199954 + sys_corr_25: -4.256732386326563 + sys_corr_26: 0.9168061858405296 + sys_corr_27: -8.260819879882966 + sys_corr_28: 8.827957624862387 + sys_corr_29: -4.552022165804217 + sys_corr_30: 2.012922073953036 + sys_corr_31: 3.5600925401534154 + sys_corr_32: 2.8486646946949286 + sys_corr_33: 3.954782174366285 + sys_corr_34: -5.238341330756746 + sys_corr_35: 3.7353187093449853 + sys_corr_36: -3.0831129149799037 + sys_corr_37: -0.9169616558158717 + sys_corr_38: -0.41998831625142913 + sys_corr_39: -0.32095732949191874 + sys_corr_40: 0.10385240800603113 + sys_corr_41: -0.9344291408820774 + sys_corr_42: 0.42929326766451004 + sys_corr_43: -0.388174545893148 + sys_corr_44: -1.1997060362481504 + sys_corr_45: 0.616946727410581 + sys_corr_46: 0.784688900551724 + sys_corr_47: -2.1964769009867977 + sys_corr_48: -0.05771147514632449 + sys_corr_49: 0.6739446750953441 + sys_corr_50: -0.6840360909108066 + sys_corr_51: -0.956418527421973 + sys_corr_52: 0.8144479063391022 + sys_corr_53: 0.47728721875569285 + sys_corr_54: -0.2499209999302827 + sys_corr_55: -0.631245033469964 + sys_corr_56: 0.5758399727824509 + sys_corr_57: 0.6855680324845078 + sys_corr_58: -0.33793064914879983 + sys_corr_59: 0.13834770644706154 + sys_corr_60: -0.24105185408679675 + sys_corr_61: 0.38527991422251423 + sys_corr_62: -0.08249624594134147 + sys_corr_63: 0.2136979142516494 + sys_corr_64: 0.5123876861019688 + sys_corr_65: 1.176619616522655 + sys_corr_66: -0.22396682622744063 + sys_corr_67: 0.2692590057602379 + sys_corr_68: -0.7680467008815604 + sys_corr_69: -0.10921372928356647 + sys_corr_70: -0.6490254675453434 + sys_corr_71: -0.19015208494299596 + sys_corr_72: 0.3887791354653633 + sys_corr_73: 0.3721190220266285 + sys_corr_74: -0.3637692597885742 + sys_corr_75: 0.25801311730329024 + sys_corr_76: -1.1321259414843103 + sys_corr_77: 0.3871192416075785 + sys_corr_78: 0.008361047303635662 + sys_corr_79: -0.12567099492666595 + sys_corr_80: 0.3253901223927872 + sys_corr_81: -0.912490838741282 + sys_corr_82: 0.13052821071814882 + sys_corr_83: 0.10973074132248717 + sys_corr_84: 0.5338624900189157 + sys_corr_85: 0.12560032982287722 + sys_corr_86: 0.21234838948071233 + sys_corr_87: 0.4658742867733663 + sys_corr_88: 0.6024174140029821 + sys_corr_89: 0.10134468650054945 + sys_corr_90: -0.39284368876451686 + sys_corr_91: -0.38122920616846245 + sys_corr_92: -0.21932778598521105 + sys_corr_93: -0.025330653705129064 + sys_corr_94: -0.26101337642246747 + sys_corr_95: 0.03934164644771747 + sys_corr_96: 0.03186753875180765 + sys_corr_97: -0.27512638276434453 + sys_corr_98: -0.2084658661299321 + sys_corr_99: 0.11324203173721148 + sys_corr_100: 0.28889547426989715 + sys_corr_101: 0.14895353089865113 + sys_corr_102: -0.14306317851066558 + sys_corr_103: 0.10024390876575222 + sys_corr_104: 0.11682474248568432 + sys_corr_105: -0.9774854949156031 + sys_corr_106: 0.20636647269417574 + sys_corr_107: 0.5284540386352309 + sys_corr_108: 0.227935768555055 + sys_corr_109: -0.08589383440229077 + sys_corr_110: -0.014034024302801772 + sys_corr_111: 0.21132229060541494 + sys_corr_112: 0.025260228851996164 + sys_corr_113: 0.015698590372187814 + sys_corr_114: 0.0003655654650026884 + sys_corr_115: -0.0373156276005792 + sys_corr_116: -0.0010940711215497027 + sys_corr_117: 0.0005506412159558866 + sys_corr_118: 0.006543629325068172 + sys_corr_119: 0.0006404127221763097 + sys_corr_120: 0.004269307325635035 + sys_corr_121: 0.0025752664298608814 + sys_corr_122: 0.006881536286742119 + sys_corr_123: 0.002658024085417952 + sys_corr_124: -0.006400561159186882 + sys_corr_125: -0.0025942570333044343 + sys_corr_126: 0.0010877039659588212 + sys_corr_127: 0.020246350245705928 + sys_corr_128: -0.13971406294347744 + sys_corr_129: 0.017530262542999834 + sys_corr_130: -0.0009137898427005824 + sys_corr_131: -0.0019388609898634806 + sys_corr_132: -0.0033496534780305173 stat: 0.0 luminosity: 5815.246162 -- sys_corr_1: 2881.9147618003244 - sys_corr_2: 3222.411066389373 - sys_corr_3: -76.01835972363348 - sys_corr_4: 923.4974089950477 - sys_corr_5: -127.39479956630188 - sys_corr_6: 198.23175968687633 - sys_corr_7: 288.3638417883672 - sys_corr_8: 263.83546940207754 - sys_corr_9: 286.57667159650936 - sys_corr_10: 62.09731566579544 - sys_corr_11: 607.5644390187888 - sys_corr_12: -384.8171687482622 - sys_corr_13: -446.80735181158315 - sys_corr_14: 377.6883067325 - sys_corr_15: -100.82168465936473 - sys_corr_16: -284.6957627991242 - sys_corr_17: 841.7484334753282 - sys_corr_18: 19.66445237026801 - sys_corr_19: 670.6851464331725 - sys_corr_20: 166.74909063684618 - sys_corr_21: -107.58793521283896 - sys_corr_22: -87.64107167069263 - sys_corr_23: 3.993046813052733 - sys_corr_24: -19.17614192765143 - sys_corr_25: 18.331404593992218 - sys_corr_26: -3.941979750630388 - sys_corr_27: -11.568198990759045 - sys_corr_28: -0.9970638108950259 - sys_corr_29: -5.31972089016434 - sys_corr_30: 9.273885843898462 - sys_corr_31: -3.6739815500363906 - sys_corr_32: -0.6114221444809247 - sys_corr_33: 2.6540235363194458 - sys_corr_34: 2.9848244015714553 - sys_corr_35: -5.447411375406271 - sys_corr_36: 9.547674846431727 - sys_corr_37: 2.721730318136216 - sys_corr_38: -0.8054002979049328 - sys_corr_39: -0.2723666526569078 - sys_corr_40: 2.8465544708043056 - sys_corr_41: -1.3041247310263748 - sys_corr_42: 0.5071709290437697 - sys_corr_43: -0.332507732268221 - sys_corr_44: 2.7807299388712545 - sys_corr_45: 0.9215755308835694 - sys_corr_46: -2.9831271620915834 - sys_corr_47: -1.3797621080288134 - sys_corr_48: -0.055270207493334604 - sys_corr_49: -0.6616348482120084 - sys_corr_50: -3.6927483712851186 - sys_corr_51: 1.49509682701605 - sys_corr_52: -1.5159476108238281 - sys_corr_53: 0.5422058357501783 - sys_corr_54: -1.2760694488524174 - sys_corr_55: 0.6228572361423408 - sys_corr_56: 0.43416023122967645 - sys_corr_57: 0.6688649019257965 - sys_corr_58: -0.2319948229063645 - sys_corr_59: -0.4520789348986023 - sys_corr_60: 0.07767640292306756 - sys_corr_61: 0.1743979946063337 - sys_corr_62: 0.03363318111663999 - sys_corr_63: -0.5631909783412475 - sys_corr_64: -0.7480834525499178 - sys_corr_65: -0.7907505095225213 - sys_corr_66: -0.40958247998077957 - sys_corr_67: 1.1662136689316398 - sys_corr_68: -0.2774092182444942 - sys_corr_69: 0.13638163627664096 - sys_corr_70: 0.7601262305852344 - sys_corr_71: 1.078976314746584 - sys_corr_72: -0.12482467593421505 - sys_corr_73: -1.1313539679983728 - sys_corr_74: 0.5393109281267012 - sys_corr_75: 0.639419231088568 - sys_corr_76: 0.18171571866030986 - sys_corr_77: -0.7744759464325874 - sys_corr_78: -0.09003811882218103 - sys_corr_79: -0.27101088483352515 - sys_corr_80: 0.6444149890594555 - sys_corr_81: -1.5353423629249978 - sys_corr_82: 0.6959637186831846 - sys_corr_83: 0.8953627883267985 - sys_corr_84: -0.28922369615568394 - sys_corr_85: 0.8706702108564518 - sys_corr_86: 0.19231193999003607 - sys_corr_87: 0.3104287587998122 - sys_corr_88: -0.2832829964985399 - sys_corr_89: -0.3885342406532556 - sys_corr_90: -0.09178828788721723 - sys_corr_91: -0.381073099275269 - sys_corr_92: 0.16438619424275663 - sys_corr_93: 0.02028100018318394 - sys_corr_94: -0.03564736317027251 - sys_corr_95: -0.15860301284945452 - sys_corr_96: -0.06466659469480956 - sys_corr_97: -0.20492055318185512 - sys_corr_98: 0.12805974434009612 - sys_corr_99: -0.053364832429355746 - sys_corr_100: -0.6103725353955364 - sys_corr_101: -0.2592088134188669 - sys_corr_102: 0.25496324528079645 - sys_corr_103: -0.18922692672899363 - sys_corr_104: -0.09110484894497956 - sys_corr_105: -0.06431390335245446 - sys_corr_106: -1.0151251971454627 - sys_corr_107: -0.017953566820412985 - sys_corr_108: 0.2777863552239725 - sys_corr_109: 0.3534514546094819 - sys_corr_110: -0.1250343195324279 - sys_corr_111: 0.4853254938310656 - sys_corr_112: 0.05341063302840433 - sys_corr_113: 0.055462694599977824 - sys_corr_114: 0.00046199682848461197 - sys_corr_115: -0.009145772682357323 - sys_corr_116: -0.012493436034163845 - sys_corr_117: -0.001870216682150783 - sys_corr_118: 0.006949409928588242 - sys_corr_119: -0.0004579703130834622 - sys_corr_120: 0.005393087139585145 - sys_corr_121: 0.0012656683580472017 - sys_corr_122: 0.003560327558007942 - sys_corr_123: 0.0044555321329956205 - sys_corr_124: 0.006300031479703348 - sys_corr_125: 0.0023866015752642446 - sys_corr_126: -0.005777855414684097 - sys_corr_127: -0.11552052007961615 - sys_corr_128: 0.13334183883978734 - sys_corr_129: -0.054239330320767776 - sys_corr_130: 0.00792876684295726 - sys_corr_131: 0.002156696333072554 - sys_corr_132: 0.01402008195204358 +- sys_corr_1: 2881.9147618003267 + sys_corr_2: 3222.4110663893694 + sys_corr_3: -76.01835972363423 + sys_corr_4: 923.4974089950483 + sys_corr_5: -127.39479956630417 + sys_corr_6: 198.23175968687698 + sys_corr_7: 288.36384178836687 + sys_corr_8: 263.8354694020939 + sys_corr_9: 286.5766715965207 + sys_corr_10: 62.09731566577789 + sys_corr_11: 607.5644390187483 + sys_corr_12: -384.8171687482914 + sys_corr_13: 446.80735181160964 + sys_corr_14: -377.6883067325081 + sys_corr_15: 100.82168465936537 + sys_corr_16: 284.6957627991515 + sys_corr_17: 841.7484334753259 + sys_corr_18: -19.664452370255677 + sys_corr_19: 670.6851464331746 + sys_corr_20: 166.74909063683526 + sys_corr_21: -107.58793521284699 + sys_corr_22: -87.64107167069933 + sys_corr_23: 3.9930468130484864 + sys_corr_24: -19.176141927651972 + sys_corr_25: 18.331404593991984 + sys_corr_26: -3.9419797506309715 + sys_corr_27: -11.568198990759162 + sys_corr_28: -0.997063810894027 + sys_corr_29: -5.319720890164772 + sys_corr_30: 9.273885843897288 + sys_corr_31: -3.673981550036718 + sys_corr_32: 0.6114221444807676 + sys_corr_33: -2.65402353631935 + sys_corr_34: 2.9848244015717267 + sys_corr_35: -5.447411375405474 + sys_corr_36: 9.547674846431294 + sys_corr_37: -2.721730318135486 + sys_corr_38: 0.8054002979052313 + sys_corr_39: 0.2723666526563199 + sys_corr_40: -2.8465544708046346 + sys_corr_41: -1.3041247310261392 + sys_corr_42: -0.5071709290437186 + sys_corr_43: -0.33250773226894165 + sys_corr_44: 2.7807299388708806 + sys_corr_45: -0.9215755308822198 + sys_corr_46: 2.983127162091458 + sys_corr_47: 1.3797621080293452 + sys_corr_48: 0.055270207493172525 + sys_corr_49: 0.6616348482121359 + sys_corr_50: -3.692748371285055 + sys_corr_51: 1.4950968270153262 + sys_corr_52: -1.5159476108243775 + sys_corr_53: -0.5422058357500377 + sys_corr_54: 1.2760694488523536 + sys_corr_55: -0.6228572361425221 + sys_corr_56: -0.4341602312305062 + sys_corr_57: 0.6688649019260037 + sys_corr_58: 0.23199482290570034 + sys_corr_59: -0.4520789348986622 + sys_corr_60: -0.07767640292291547 + sys_corr_61: -0.17439799460641833 + sys_corr_62: -0.03363318111625411 + sys_corr_63: -0.5631909783400157 + sys_corr_64: -0.7480834525506956 + sys_corr_65: -0.7907505095233213 + sys_corr_66: 0.4095824799804587 + sys_corr_67: 1.166213668931554 + sys_corr_68: 0.2774092182440741 + sys_corr_69: 0.136381636277338 + sys_corr_70: -0.7601262305852551 + sys_corr_71: 1.0789763147457754 + sys_corr_72: 0.12482467593429394 + sys_corr_73: 1.131353967998064 + sys_corr_74: 0.539310928126521 + sys_corr_75: 0.6394192310884659 + sys_corr_76: 0.1817157186609889 + sys_corr_77: 0.7744759464328671 + sys_corr_78: -0.6444149890597094 + sys_corr_79: -0.09003811882227539 + sys_corr_80: -0.2710108848331839 + sys_corr_81: 1.535342362925108 + sys_corr_82: -0.6959637186832129 + sys_corr_83: 0.895362788327154 + sys_corr_84: 0.28922369615562477 + sys_corr_85: 0.870670210856563 + sys_corr_86: -0.19231193998935786 + sys_corr_87: -0.3104287587996278 + sys_corr_88: -0.2832829964974578 + sys_corr_89: -0.09178828788725267 + sys_corr_90: -0.3885342406533182 + sys_corr_91: -0.38107309927533145 + sys_corr_92: -0.164386194242984 + sys_corr_93: 0.02028100018318561 + sys_corr_94: -0.0356473631702922 + sys_corr_95: -0.158603012849417 + sys_corr_96: 0.06466659469480701 + sys_corr_97: -0.20492055318187127 + sys_corr_98: -0.12805974434010298 + sys_corr_99: -0.0533648324293624 + sys_corr_100: -0.2592088134188161 + sys_corr_101: -0.2549632452806901 + sys_corr_102: -0.18922692672884864 + sys_corr_103: 0.09110484894499686 + sys_corr_104: 0.06431390335248643 + sys_corr_105: 0.6103725353954008 + sys_corr_106: -1.0151251971453992 + sys_corr_107: 0.2777863552239922 + sys_corr_108: 0.35345145460951 + sys_corr_109: 0.1250343195324055 + sys_corr_110: 0.017953566820413953 + sys_corr_111: -0.4853254938311016 + sys_corr_112: 0.053410633028401905 + sys_corr_113: -0.055462694599987296 + sys_corr_114: 0.00046199682848337874 + sys_corr_115: -0.009145772682357478 + sys_corr_116: 0.012493436034156799 + sys_corr_117: 0.0018702166821399553 + sys_corr_118: -0.006949409928568196 + sys_corr_119: 0.00045797031308334905 + sys_corr_120: -0.00539308713957678 + sys_corr_121: -0.001265668358046849 + sys_corr_122: 0.004455532133002441 + sys_corr_123: 0.0035603275580142974 + sys_corr_124: 0.006300031479696136 + sys_corr_125: 0.002386601575259862 + sys_corr_126: 0.00577785541468365 + sys_corr_127: -0.11552052007961192 + sys_corr_128: 0.13334183883981873 + sys_corr_129: -0.054239330320769705 + sys_corr_130: 0.007928766842957196 + sys_corr_131: -0.0021566963330787664 + sys_corr_132: 0.014020081952038872 stat: 0.0 luminosity: 5493.463888000001 -- sys_corr_1: 2536.42710238911 - sys_corr_2: 3128.384092528264 - sys_corr_3: -533.1932058039744 - sys_corr_4: 890.5561594696686 - sys_corr_5: 522.7288245577693 - sys_corr_6: 344.37751428906427 - sys_corr_7: 182.19141162834978 - sys_corr_8: 399.6626118574765 - sys_corr_9: 261.0489903677476 - sys_corr_10: 372.58390948468747 - sys_corr_11: -37.434745464959434 - sys_corr_12: 0.37945889059412513 - sys_corr_13: -356.30713317424585 - sys_corr_14: -137.51065859236766 - sys_corr_15: 229.22260631765806 - sys_corr_16: -399.551033067812 - sys_corr_17: -879.041724692304 - sys_corr_18: 845.3773876430466 - sys_corr_19: 102.73157417583818 - sys_corr_20: -161.29153116886175 - sys_corr_21: 129.84789539546065 - sys_corr_22: -97.2378031195907 - sys_corr_23: -5.399054843651969 - sys_corr_24: -21.404314549740246 - sys_corr_25: 5.314797745709896 - sys_corr_26: 4.7889687447282805 - sys_corr_27: -6.817486877646311 - sys_corr_28: 3.084605277076425 - sys_corr_29: 14.69978011881567 - sys_corr_30: 1.9844439241703222 - sys_corr_31: -7.143333187161508 - sys_corr_32: 1.6076023601736529 - sys_corr_33: -0.46421923313052954 - sys_corr_34: 2.8923205868498973 - sys_corr_35: 2.4257990794441673 - sys_corr_36: -3.0784501928958967 - sys_corr_37: -2.517663515552309 - sys_corr_38: 1.3202898175608702 - sys_corr_39: -0.7876575571426827 - sys_corr_40: -0.22647966310491618 - sys_corr_41: 0.2516007986054971 - sys_corr_42: -0.3090404657098718 - sys_corr_43: -1.2320504236699759 - sys_corr_44: 1.3619865043687156 - sys_corr_45: -1.0921382697094915 - sys_corr_46: 0.9561676198614332 - sys_corr_47: -0.43773731910788705 - sys_corr_48: -0.4734672164741721 - sys_corr_49: 0.6838715920329294 - sys_corr_50: -1.149073266182414 - sys_corr_51: 0.0509980286697151 - sys_corr_52: -0.9445623499660615 - sys_corr_53: -0.7394896724094379 - sys_corr_54: 0.9079201454247343 - sys_corr_55: 0.03259114522946702 - sys_corr_56: -0.17785579612009672 - sys_corr_57: 0.9088432893683622 - sys_corr_58: 0.2484730714177386 - sys_corr_59: 0.04674362399714683 - sys_corr_60: 0.06494095328268903 - sys_corr_61: 0.18212750848864204 - sys_corr_62: -0.38631223218439864 - sys_corr_63: -1.2006482452079308 - sys_corr_64: 0.2329008173236046 - sys_corr_65: -0.11643734283403678 - sys_corr_66: 0.992737179987836 - sys_corr_67: -0.008678629779947529 - sys_corr_68: 0.15667830175886632 - sys_corr_69: 0.5559132149203028 - sys_corr_70: 0.05842393728186329 - sys_corr_71: -0.3311685061131705 - sys_corr_72: -0.48216259630548214 - sys_corr_73: -0.3037602844652292 - sys_corr_74: 0.24409922407284795 - sys_corr_75: -0.6679715167055565 - sys_corr_76: 0.3519565525343877 - sys_corr_77: -0.42137146390915925 - sys_corr_78: -0.3879767275492348 - sys_corr_79: 0.7901319976963895 - sys_corr_80: -1.8264039225501532 - sys_corr_81: 0.2322275272230226 - sys_corr_82: -0.05056833815818768 - sys_corr_83: 0.3549109892096639 - sys_corr_84: -0.2555261549698193 - sys_corr_85: -0.06408633007107388 - sys_corr_86: -0.34695677065524466 - sys_corr_87: -0.12004610207870865 - sys_corr_88: 0.2008606570528984 - sys_corr_89: -0.35040527785892955 - sys_corr_90: -0.19597038925922858 - sys_corr_91: -0.18330585739986768 - sys_corr_92: -0.07002792238228883 - sys_corr_93: 0.05901104685005381 - sys_corr_94: 0.12419863401028909 - sys_corr_95: -0.08481437741622487 - sys_corr_96: 0.049656149088685084 - sys_corr_97: -0.08255492871873622 - sys_corr_98: 0.04836191601382209 - sys_corr_99: -0.2838816862973989 - sys_corr_100: 0.23649624661919907 - sys_corr_101: 0.38387596208164765 - sys_corr_102: 0.0969760936764775 - sys_corr_103: 0.3765537072688848 - sys_corr_104: -0.018189369168233636 - sys_corr_105: -0.09994886850222312 - sys_corr_106: 0.49190049186327217 - sys_corr_107: 0.08164681005198146 - sys_corr_108: -0.8032391883008568 - sys_corr_109: -0.5013634301933512 - sys_corr_110: -0.40773983727889507 - sys_corr_111: 0.8340726288053054 - sys_corr_112: 0.09492978021165989 - sys_corr_113: -0.07959405146043716 - sys_corr_114: 2.5082013241195055e-05 - sys_corr_115: 0.013712942983313619 - sys_corr_116: 0.004735117999060795 - sys_corr_117: 0.0033262880916923717 - sys_corr_118: 0.010894079047017993 - sys_corr_119: -0.0007836222336901475 - sys_corr_120: -0.005287045488024757 - sys_corr_121: 0.0005829027266224627 - sys_corr_122: 0.006022320155066872 - sys_corr_123: 0.005442791599566926 - sys_corr_124: 0.004508927487181612 - sys_corr_125: -0.004780498927472118 - sys_corr_126: -0.0031720569808249494 - sys_corr_127: -0.02190756998266613 - sys_corr_128: 0.4425643316725949 - sys_corr_129: 0.0089099361166537 - sys_corr_130: 0.0035518065086810177 - sys_corr_131: 0.00396790551665232 - sys_corr_132: -0.014620359880262591 +- sys_corr_1: 2536.4271023891106 + sys_corr_2: 3128.3840925282657 + sys_corr_3: -533.1932058039733 + sys_corr_4: 890.5561594696723 + sys_corr_5: 522.7288245577664 + sys_corr_6: 344.37751428906927 + sys_corr_7: 182.19141162834737 + sys_corr_8: 399.6626118574931 + sys_corr_9: 261.048990367747 + sys_corr_10: 372.5839094846829 + sys_corr_11: -37.43474546495648 + sys_corr_12: 0.3794588905964303 + sys_corr_13: 356.30713317423516 + sys_corr_14: 137.51065859236695 + sys_corr_15: -229.22260631766312 + sys_corr_16: 399.5510330678234 + sys_corr_17: -879.0417246923089 + sys_corr_18: -845.3773876430555 + sys_corr_19: 102.73157417582823 + sys_corr_20: -161.2915311688542 + sys_corr_21: 129.84789539546134 + sys_corr_22: -97.23780311959273 + sys_corr_23: -5.39905484365094 + sys_corr_24: -21.404314549741375 + sys_corr_25: 5.31479774571156 + sys_corr_26: 4.788968744730292 + sys_corr_27: -6.817486877645513 + sys_corr_28: 3.0846052770785484 + sys_corr_29: 14.699780118814532 + sys_corr_30: 1.984443924172853 + sys_corr_31: -7.143333187162194 + sys_corr_32: -1.6076023601771154 + sys_corr_33: 0.4642192331316409 + sys_corr_34: 2.892320586848454 + sys_corr_35: 2.425799079444286 + sys_corr_36: -3.0784501928967476 + sys_corr_37: 2.5176635155522096 + sys_corr_38: -1.3202898175600595 + sys_corr_39: 0.7876575571424533 + sys_corr_40: 0.22647966310521753 + sys_corr_41: 0.25160079860638473 + sys_corr_42: 0.30904046570903326 + sys_corr_43: -1.2320504236701961 + sys_corr_44: 1.3619865043690704 + sys_corr_45: 1.0921382697090531 + sys_corr_46: -0.9561676198622014 + sys_corr_47: 0.4377373191081659 + sys_corr_48: 0.4734672164739482 + sys_corr_49: -0.683871592032735 + sys_corr_50: -1.1490732661826024 + sys_corr_51: 0.05099802867045867 + sys_corr_52: -0.9445623499657847 + sys_corr_53: 0.7394896724094682 + sys_corr_54: -0.9079201454242269 + sys_corr_55: -0.03259114522914956 + sys_corr_56: 0.1778557961200713 + sys_corr_57: 0.9088432893687174 + sys_corr_58: -0.24847307141723235 + sys_corr_59: 0.04674362399731701 + sys_corr_60: -0.06494095328318325 + sys_corr_61: -0.18212750848879178 + sys_corr_62: 0.38631223218498983 + sys_corr_63: -1.2006482452080287 + sys_corr_64: 0.232900817323475 + sys_corr_65: -0.11643734283368952 + sys_corr_66: -0.9927371799880412 + sys_corr_67: -0.008678629779974304 + sys_corr_68: -0.1566783017587866 + sys_corr_69: 0.5559132149206844 + sys_corr_70: -0.05842393728215876 + sys_corr_71: -0.33116850611319365 + sys_corr_72: 0.4821625963054396 + sys_corr_73: 0.30376028446486164 + sys_corr_74: 0.24409922407355197 + sys_corr_75: -0.6679715167056792 + sys_corr_76: 0.3519565525338723 + sys_corr_77: 0.42137146390866853 + sys_corr_78: 1.8264039225501771 + sys_corr_79: -0.387976727549241 + sys_corr_80: 0.7901319976964787 + sys_corr_81: -0.23222752722325227 + sys_corr_82: 0.050568338158279096 + sys_corr_83: 0.3549109892097055 + sys_corr_84: 0.2555261549700576 + sys_corr_85: -0.06408633007088688 + sys_corr_86: 0.346956770655036 + sys_corr_87: 0.1200461020787588 + sys_corr_88: 0.20086065705221862 + sys_corr_89: -0.1959703892592576 + sys_corr_90: -0.35040527785890363 + sys_corr_91: -0.18330585739983743 + sys_corr_92: 0.0700279223821327 + sys_corr_93: 0.05901104685002841 + sys_corr_94: 0.12419863401020217 + sys_corr_95: -0.08481437741605607 + sys_corr_96: -0.04965614908866874 + sys_corr_97: -0.08255492871883495 + sys_corr_98: -0.04836191601387595 + sys_corr_99: -0.2838816862974251 + sys_corr_100: 0.383875962081656 + sys_corr_101: -0.09697609367654406 + sys_corr_102: 0.3765537072689991 + sys_corr_103: 0.01818936916820381 + sys_corr_104: 0.09994886850205993 + sys_corr_105: -0.23649624661910054 + sys_corr_106: 0.49190049186329193 + sys_corr_107: -0.8032391883008574 + sys_corr_108: -0.5013634301933264 + sys_corr_109: 0.4077398372788725 + sys_corr_110: -0.0816468100519604 + sys_corr_111: -0.8340726288053751 + sys_corr_112: 0.09492978021165616 + sys_corr_113: 0.07959405146043233 + sys_corr_114: 2.5082013241129813e-05 + sys_corr_115: 0.013712942983315211 + sys_corr_116: -0.004735117999065931 + sys_corr_117: -0.003326288091693601 + sys_corr_118: -0.010894079047010096 + sys_corr_119: 0.0007836222336922782 + sys_corr_120: 0.0052870454880295315 + sys_corr_121: -0.0005829027266196421 + sys_corr_122: 0.005442791599573028 + sys_corr_123: 0.00602232015507386 + sys_corr_124: 0.004508927487176354 + sys_corr_125: -0.004780498927473248 + sys_corr_126: 0.0031720569808247534 + sys_corr_127: -0.021907569982683006 + sys_corr_128: 0.442564331672599 + sys_corr_129: 0.008909936116652806 + sys_corr_130: 0.003551806508679741 + sys_corr_131: -0.003967905516657157 + sys_corr_132: -0.014620359880265386 stat: 0.0 luminosity: 5146.129736000001 -- sys_corr_1: 2049.4659466633557 - sys_corr_2: 2965.176935739618 - sys_corr_3: -1225.1065951211626 - sys_corr_4: 612.9887908816527 - sys_corr_5: 1165.4478777244854 - sys_corr_6: 369.1855476233158 - sys_corr_7: -26.83982328554198 - sys_corr_8: 108.50504743440436 - sys_corr_9: 85.25202399321351 - sys_corr_10: 63.25519074776568 - sys_corr_11: -48.39709479255151 - sys_corr_12: -71.95222566028372 - sys_corr_13: -75.22239535659094 - sys_corr_14: -289.46676699828436 - sys_corr_15: 153.0933443075092 - sys_corr_16: -194.2736860405702 - sys_corr_17: 715.3383831411631 - sys_corr_18: -13.0389476365478 - sys_corr_19: -872.8157475468014 - sys_corr_20: -118.46136008204627 - sys_corr_21: 376.4328044581611 - sys_corr_22: 137.84070853925144 - sys_corr_23: -64.94151699681181 - sys_corr_24: 35.15438002360207 - sys_corr_25: -8.318234275576252 - sys_corr_26: -5.557141361629968 - sys_corr_27: 2.4840335226738555 - sys_corr_28: -11.364286623483789 - sys_corr_29: 6.322707200311215 - sys_corr_30: -5.43837477555143 - sys_corr_31: 3.9020256786774254 - sys_corr_32: 1.9704812888825471 - sys_corr_33: -0.8416709039494097 - sys_corr_34: -0.7363501566556145 - sys_corr_35: 0.7417174754795736 - sys_corr_36: 2.9328041196359096 - sys_corr_37: 2.204894461791463 - sys_corr_38: -2.1089598107658265 - sys_corr_39: -2.535784593979287 - sys_corr_40: -2.5829349210512085 - sys_corr_41: -1.0365049712131695 - sys_corr_42: 2.101646789122685 - sys_corr_43: 0.9711102518007206 - sys_corr_44: -0.3117842926469719 - sys_corr_45: 0.2841991415208755 - sys_corr_46: 1.268643808406797 - sys_corr_47: -0.8083623596929567 - sys_corr_48: 1.3763441834200358 - sys_corr_49: -1.7530685163647626 - sys_corr_50: 3.4298872578985735 - sys_corr_51: -2.7621736533709664 - sys_corr_52: 3.1022710373428692 - sys_corr_53: -0.18586819572883218 - sys_corr_54: 0.7219002055553452 - sys_corr_55: -1.3349646733946814 - sys_corr_56: -0.9822254838119563 - sys_corr_57: 0.2916012450753243 - sys_corr_58: -0.0005705146812262931 - sys_corr_59: -0.28214209768971993 - sys_corr_60: -0.5389950648021087 - sys_corr_61: 0.7605272061129819 - sys_corr_62: 0.3350148596313557 - sys_corr_63: 0.17456853018473453 - sys_corr_64: -0.21997530434575294 - sys_corr_65: 0.04812295147374408 - sys_corr_66: 0.91671600332049 - sys_corr_67: -0.49786416144783674 - sys_corr_68: -0.47315921430519653 - sys_corr_69: 1.4998260997643473 - sys_corr_70: -0.4173248026369477 - sys_corr_71: -0.06705183069537769 - sys_corr_72: 0.888494719368521 - sys_corr_73: -0.37939872493289234 - sys_corr_74: -0.11610126501495746 - sys_corr_75: -0.4366322202881107 - sys_corr_76: -0.3466371667937399 - sys_corr_77: -0.15913130810193798 - sys_corr_78: -0.2734230532015386 - sys_corr_79: 0.21738608452218888 - sys_corr_80: 0.5617333332174461 - sys_corr_81: 1.091198652084855 - sys_corr_82: -0.5591414507541386 - sys_corr_83: -0.7804068919236326 - sys_corr_84: 1.106937239103266 - sys_corr_85: -1.4411545527201333 - sys_corr_86: 0.4266235238305649 - sys_corr_87: -0.29357853548855045 - sys_corr_88: -0.17931108992353087 - sys_corr_89: -0.3071708969179083 - sys_corr_90: -0.13516338604750538 - sys_corr_91: -0.9977022485478974 - sys_corr_92: 0.2334338143704512 - sys_corr_93: 0.14809756052068257 - sys_corr_94: 0.33172817215991884 - sys_corr_95: -0.09042695153090866 - sys_corr_96: 0.06476303490950022 - sys_corr_97: -0.375108014601902 - sys_corr_98: 0.17126924517732106 - sys_corr_99: -0.38759415615219267 - sys_corr_100: 0.2471101058612506 - sys_corr_101: 0.05784770487228321 - sys_corr_102: -0.07003658081612318 - sys_corr_103: -0.6437384124481209 - sys_corr_104: -0.12325317807371192 - sys_corr_105: -0.40560631466129543 - sys_corr_106: -0.4332818954232375 - sys_corr_107: 0.16204083207380165 - sys_corr_108: 0.12969221818266752 - sys_corr_109: -1.0853456240968231 - sys_corr_110: -0.03438990689448787 - sys_corr_111: -1.294365001118003 - sys_corr_112: 0.14814019947564006 - sys_corr_113: -0.25087153951019836 - sys_corr_114: -0.0005136468319535 - sys_corr_115: 0.00691441901008424 - sys_corr_116: -0.005447167087308242 - sys_corr_117: -0.005100465180073252 - sys_corr_118: 0.07359701733310196 - sys_corr_119: -0.0021802206417829285 - sys_corr_120: 0.00554085579750992 - sys_corr_121: -0.0008035226714249654 - sys_corr_122: 2.4432537410521255e-05 - sys_corr_123: -0.0038599543910733773 - sys_corr_124: -0.01235314906798858 - sys_corr_125: -0.0018520227106030099 - sys_corr_126: 0.0022387175269187815 - sys_corr_127: -0.030634064384041704 - sys_corr_128: -0.3541769087296534 - sys_corr_129: 0.06018492797818055 - sys_corr_130: -0.010309503164494086 - sys_corr_131: -0.004371569191639002 - sys_corr_132: -0.0034637716205262632 +- sys_corr_1: 2049.465946663357 + sys_corr_2: 2965.176935739622 + sys_corr_3: -1225.106595121163 + sys_corr_4: 612.9887908816569 + sys_corr_5: 1165.447877724486 + sys_corr_6: 369.1855476233149 + sys_corr_7: -26.839823285543336 + sys_corr_8: 108.50504743440939 + sys_corr_9: 85.25202399321375 + sys_corr_10: 63.25519074776657 + sys_corr_11: -48.39709479255801 + sys_corr_12: -71.95222566027986 + sys_corr_13: 75.22239535658984 + sys_corr_14: 289.4667669982825 + sys_corr_15: -153.09334430750292 + sys_corr_16: 194.27368604058557 + sys_corr_17: 715.3383831411712 + sys_corr_18: 13.038947636567727 + sys_corr_19: -872.8157475467957 + sys_corr_20: -118.4613600820239 + sys_corr_21: 376.43280445816646 + sys_corr_22: 137.840708539262 + sys_corr_23: -64.94151699681092 + sys_corr_24: 35.154380023602215 + sys_corr_25: -8.31823427557726 + sys_corr_26: -5.557141361629863 + sys_corr_27: 2.4840335226741512 + sys_corr_28: -11.364286623484798 + sys_corr_29: 6.3227072003103135 + sys_corr_30: -5.438374775551902 + sys_corr_31: 3.9020256786783247 + sys_corr_32: -1.9704812888811034 + sys_corr_33: 0.8416709039488698 + sys_corr_34: -0.7363501566558978 + sys_corr_35: 0.7417174754789405 + sys_corr_36: 2.9328041196367054 + sys_corr_37: -2.2048944617911173 + sys_corr_38: 2.1089598107656564 + sys_corr_39: 2.5357845939790566 + sys_corr_40: 2.582934921051399 + sys_corr_41: -1.0365049712136334 + sys_corr_42: -2.1016467891231807 + sys_corr_43: 0.971110251799867 + sys_corr_44: -0.3117842926466032 + sys_corr_45: -0.2841991415215518 + sys_corr_46: -1.2686438084063676 + sys_corr_47: 0.8083623596927554 + sys_corr_48: -1.3763441834202093 + sys_corr_49: 1.753068516365039 + sys_corr_50: 3.429887257898559 + sys_corr_51: -2.7621736533710477 + sys_corr_52: 3.1022710373428684 + sys_corr_53: 0.1858681957289452 + sys_corr_54: -0.72190020555659 + sys_corr_55: 1.3349646733947422 + sys_corr_56: 0.9822254838126415 + sys_corr_57: 0.2916012450745704 + sys_corr_58: 0.0005705146809148059 + sys_corr_59: -0.28214209768984283 + sys_corr_60: 0.5389950648024544 + sys_corr_61: -0.7605272061123053 + sys_corr_62: -0.33501485963135197 + sys_corr_63: 0.17456853018452548 + sys_corr_64: -0.2199753043459375 + sys_corr_65: 0.04812295147331613 + sys_corr_66: -0.9167160033206199 + sys_corr_67: -0.49786416144793405 + sys_corr_68: 0.4731592143053571 + sys_corr_69: 1.4998260997640294 + sys_corr_70: 0.4173248026362131 + sys_corr_71: -0.06705183069496636 + sys_corr_72: -0.8884947193687838 + sys_corr_73: 0.37939872493358606 + sys_corr_74: -0.11610126501507262 + sys_corr_75: -0.4366322202884664 + sys_corr_76: -0.34663716679411677 + sys_corr_77: 0.15913130810270237 + sys_corr_78: -0.5617333332175235 + sys_corr_79: -0.2734230532014538 + sys_corr_80: 0.21738608452175254 + sys_corr_81: -1.0911986520845305 + sys_corr_82: 0.5591414507541418 + sys_corr_83: -0.7804068919238784 + sys_corr_84: -1.1069372391032855 + sys_corr_85: -1.4411545527204925 + sys_corr_86: -0.4266235238305627 + sys_corr_87: 0.2935785354886303 + sys_corr_88: -0.17931108992303194 + sys_corr_89: -0.13516338604747252 + sys_corr_90: -0.3071708969178711 + sys_corr_91: -0.9977022485478843 + sys_corr_92: -0.2334338143700397 + sys_corr_93: 0.14809756052069256 + sys_corr_94: 0.3317281721600472 + sys_corr_95: -0.09042695153102477 + sys_corr_96: -0.06476303490953893 + sys_corr_97: -0.375108014601824 + sys_corr_98: -0.17126924517731884 + sys_corr_99: -0.3875941561521585 + sys_corr_100: 0.0578477048723207 + sys_corr_101: 0.07003658081636732 + sys_corr_102: -0.6437384124475921 + sys_corr_103: 0.12325317807365224 + sys_corr_104: 0.4056063146614065 + sys_corr_105: -0.2471101058613129 + sys_corr_106: -0.4332818954232037 + sys_corr_107: 0.12969221818271806 + sys_corr_108: -1.0853456240968549 + sys_corr_109: 0.03438990689452586 + sys_corr_110: -0.1620408320737764 + sys_corr_111: 1.2943650011180339 + sys_corr_112: 0.14814019947565102 + sys_corr_113: 0.2508715395102092 + sys_corr_114: -0.0005136468319529108 + sys_corr_115: 0.006914419010080631 + sys_corr_116: 0.005447167087312541 + sys_corr_117: 0.005100465180080683 + sys_corr_118: -0.07359701733311644 + sys_corr_119: 0.0021802206417832885 + sys_corr_120: -0.005540855797518461 + sys_corr_121: 0.0008035226714256312 + sys_corr_122: -0.0038599543910851956 + sys_corr_123: 2.443253740212556e-05 + sys_corr_124: -0.01235314906798013 + sys_corr_125: -0.0018520227105920265 + sys_corr_126: -0.002238717526919774 + sys_corr_127: -0.030634064384059145 + sys_corr_128: -0.3541769087296998 + sys_corr_129: 0.06018492797818595 + sys_corr_130: -0.01030950316449691 + sys_corr_131: 0.004371569191648586 + sys_corr_132: -0.003463771620520431 stat: 0.0 luminosity: 4820.588916000001 -- sys_corr_1: 1412.99659186555 - sys_corr_2: 2553.2761498519776 - sys_corr_3: -1817.9290267104636 - sys_corr_4: 20.49441816918523 - sys_corr_5: 1323.5867718964462 - sys_corr_6: 362.1904244719506 - sys_corr_7: -277.1417559520617 - sys_corr_8: -179.92594524285815 - sys_corr_9: -113.11533534453363 - sys_corr_10: -43.414431272118954 - sys_corr_11: 127.91302651527158 - sys_corr_12: 171.07651981223836 - sys_corr_13: 87.47210638960735 - sys_corr_14: -154.19303693455663 - sys_corr_15: -0.5733782234343221 - sys_corr_16: 113.95162288646124 - sys_corr_17: -123.6384121713508 - sys_corr_18: -105.73522747724603 - sys_corr_19: -131.78452184534768 - sys_corr_20: 90.27749940815735 - sys_corr_21: -998.3348504207587 - sys_corr_22: 86.70386401636486 - sys_corr_23: 127.54870223614861 - sys_corr_24: -50.375103912834476 - sys_corr_25: -42.00582176461807 - sys_corr_26: 0.23485033596074661 - sys_corr_27: 61.150167362267354 - sys_corr_28: -34.03355725522215 - sys_corr_29: -1.4293039605488072 - sys_corr_30: -10.823512281722687 - sys_corr_31: 2.003381071634322 - sys_corr_32: 0.9826353936196871 - sys_corr_33: 0.8896934747968748 - sys_corr_34: -8.209148327050755 - sys_corr_35: -1.1546576878318007 - sys_corr_36: -3.673431816301346 - sys_corr_37: -0.34233626649442606 - sys_corr_38: 1.659121319810804 - sys_corr_39: 2.059142034196023 - sys_corr_40: -0.30262187416336406 - sys_corr_41: -0.8044964791366385 - sys_corr_42: -0.1623243835140841 - sys_corr_43: 1.3017073393673653 - sys_corr_44: 0.8431431487000391 - sys_corr_45: 1.2316490601519117 - sys_corr_46: 0.22898708986630772 - sys_corr_47: -1.5476839338976685 - sys_corr_48: 3.763629120860782 - sys_corr_49: -1.325240095212252 - sys_corr_50: 3.5454029218147847 - sys_corr_51: -6.481738176383637 - sys_corr_52: 2.6711404467456616 - sys_corr_53: 0.2962733233529268 - sys_corr_54: 0.7742022494837751 - sys_corr_55: -0.3455646355302492 - sys_corr_56: -1.4244738004485775 - sys_corr_57: -0.4124411859173201 - sys_corr_58: -0.6548378052541611 - sys_corr_59: 0.40670783746141626 - sys_corr_60: 0.15790089401882296 - sys_corr_61: 1.5084696445139816 - sys_corr_62: 0.32512516527742374 - sys_corr_63: 0.287022843548774 - sys_corr_64: 0.5331976272844445 - sys_corr_65: 0.19743909336482662 - sys_corr_66: -0.2629212010267291 - sys_corr_67: 0.3696750822288401 - sys_corr_68: -0.030113374670345628 - sys_corr_69: -0.778789343094891 - sys_corr_70: -1.8399342014717754 - sys_corr_71: 0.07310268055528546 - sys_corr_72: -0.5090374706889104 - sys_corr_73: 0.29660070577418485 - sys_corr_74: -0.7414555723534574 - sys_corr_75: 0.7744963594713022 - sys_corr_76: -1.45383181156323 - sys_corr_77: 0.8880278890305761 - sys_corr_78: -0.05839652174572196 - sys_corr_79: 0.16266605338137832 - sys_corr_80: 1.2023858155736156 - sys_corr_81: -0.5763044206583621 - sys_corr_82: 0.1368366927967867 - sys_corr_83: -0.1610723203296566 - sys_corr_84: -1.7177740709780471 - sys_corr_85: 0.6093578961321102 - sys_corr_86: -0.04555092139883907 - sys_corr_87: -1.3632591131764604 - sys_corr_88: 0.3519040934861678 - sys_corr_89: -0.6663138866672663 - sys_corr_90: -0.4031774438482521 - sys_corr_91: -0.669016704407522 - sys_corr_92: -0.5421933249772618 - sys_corr_93: 0.10330545034452945 - sys_corr_94: 0.18509385369266823 - sys_corr_95: 0.09858212232833749 - sys_corr_96: -0.07535356176424082 - sys_corr_97: -0.6074269588543411 - sys_corr_98: 0.19986281751976245 - sys_corr_99: 0.07531847784497406 - sys_corr_100: 0.0274362963110124 - sys_corr_101: 0.05111382313227278 - sys_corr_102: -0.4257440833705787 - sys_corr_103: 0.9984104064536573 - sys_corr_104: -0.04070097221308428 - sys_corr_105: 0.06847252734184359 - sys_corr_106: 0.016559804905649404 - sys_corr_107: 0.3780573443955669 - sys_corr_108: -0.1333638949501169 - sys_corr_109: 0.7850283328351467 - sys_corr_110: 1.5164519628846314 - sys_corr_111: 0.42051786052819784 - sys_corr_112: -0.15193458864171772 - sys_corr_113: -0.22026704641392003 - sys_corr_114: -0.0013060530456129066 - sys_corr_115: 0.06626308722727323 - sys_corr_116: 0.04749238547893657 - sys_corr_117: 0.015289910747445148 - sys_corr_118: 0.047224519323218694 - sys_corr_119: -0.0007341302288524324 - sys_corr_120: -0.016043999682564473 - sys_corr_121: 0.0015839860981963184 - sys_corr_122: -0.01612064621380261 - sys_corr_123: -0.019367058322227827 - sys_corr_124: -0.004241412924444775 - sys_corr_125: 0.004430499400918369 - sys_corr_126: 0.008579072006093228 - sys_corr_127: -0.1853352554929608 - sys_corr_128: 0.2090303264670839 - sys_corr_129: 0.2801098271404099 - sys_corr_130: -0.0077425054362037764 - sys_corr_131: 0.00420693341608449 - sys_corr_132: -0.0003530125589303542 +- sys_corr_1: 1412.996591865551 + sys_corr_2: 2553.2761498519803 + sys_corr_3: -1817.9290267104627 + sys_corr_4: 20.49441816918863 + sys_corr_5: 1323.5867718964469 + sys_corr_6: 362.19042447194903 + sys_corr_7: -277.1417559520591 + sys_corr_8: -179.92594524286815 + sys_corr_9: -113.11533534453487 + sys_corr_10: -43.414431272120716 + sys_corr_11: 127.91302651528643 + sys_corr_12: 171.07651981223304 + sys_corr_13: -87.47210638960648 + sys_corr_14: 154.1930369345535 + sys_corr_15: 0.5733782234397288 + sys_corr_16: -113.95162288646694 + sys_corr_17: -123.63841217135706 + sys_corr_18: 105.73522747724235 + sys_corr_19: -131.7845218453495 + sys_corr_20: 90.2774994081297 + sys_corr_21: -998.3348504207551 + sys_corr_22: 86.703864016341 + sys_corr_23: 127.54870223615708 + sys_corr_24: -50.37510391283475 + sys_corr_25: -42.005821764617 + sys_corr_26: 0.23485033596089577 + sys_corr_27: 61.15016736226701 + sys_corr_28: -34.03355725522398 + sys_corr_29: -1.4293039605483882 + sys_corr_30: -10.823512281722286 + sys_corr_31: 2.003381071633641 + sys_corr_32: -0.9826353936201521 + sys_corr_33: -0.8896934747958477 + sys_corr_34: -8.209148327051121 + sys_corr_35: -1.154657687833708 + sys_corr_36: -3.673431816300167 + sys_corr_37: 0.34233626649383697 + sys_corr_38: -1.6591213198103227 + sys_corr_39: -2.0591420341956113 + sys_corr_40: 0.30262187416380043 + sys_corr_41: -0.8044964791361947 + sys_corr_42: 0.16232438351405154 + sys_corr_43: 1.3017073393674408 + sys_corr_44: 0.8431431486994363 + sys_corr_45: -1.2316490601526628 + sys_corr_46: -0.22898708986608074 + sys_corr_47: 1.5476839338978792 + sys_corr_48: -3.763629120860727 + sys_corr_49: 1.3252400952124475 + sys_corr_50: 3.545402921814687 + sys_corr_51: -6.48173817638453 + sys_corr_52: 2.671140446745343 + sys_corr_53: -0.2962733233532484 + sys_corr_54: -0.7742022494843632 + sys_corr_55: 0.34556463553069605 + sys_corr_56: 1.4244738004479203 + sys_corr_57: -0.4124411859177722 + sys_corr_58: 0.6548378052544629 + sys_corr_59: 0.4067078374610101 + sys_corr_60: -0.15790089401856106 + sys_corr_61: -1.5084696445140502 + sys_corr_62: -0.3251251652773914 + sys_corr_63: 0.2870228435485119 + sys_corr_64: 0.533197627284521 + sys_corr_65: 0.197439093365936 + sys_corr_66: 0.26292120102681504 + sys_corr_67: 0.36967508222853823 + sys_corr_68: 0.030113374669961227 + sys_corr_69: -0.778789343095026 + sys_corr_70: 1.8399342014722058 + sys_corr_71: 0.07310268055532476 + sys_corr_72: 0.5090374706891461 + sys_corr_73: -0.29660070577380837 + sys_corr_74: -0.7414555723542964 + sys_corr_75: 0.7744963594723687 + sys_corr_76: -1.4538318115628137 + sys_corr_77: -0.8880278890299668 + sys_corr_78: -1.2023858155735239 + sys_corr_79: -0.05839652174562454 + sys_corr_80: 0.16266605338118356 + sys_corr_81: 0.5763044206584178 + sys_corr_82: -0.136836692796752 + sys_corr_83: -0.16107232032972837 + sys_corr_84: 1.7177740709776406 + sys_corr_85: 0.6093578961321967 + sys_corr_86: 0.04555092139858031 + sys_corr_87: 1.3632591131764629 + sys_corr_88: 0.3519040934857862 + sys_corr_89: -0.4031774438481611 + sys_corr_90: -0.6663138866672774 + sys_corr_91: -0.669016704407603 + sys_corr_92: 0.5421933249775381 + sys_corr_93: 0.10330545034454307 + sys_corr_94: 0.18509385369275985 + sys_corr_95: 0.09858212232819943 + sys_corr_96: 0.07535356176419325 + sys_corr_97: -0.607426958854226 + sys_corr_98: -0.19986281751970797 + sys_corr_99: 0.07531847784502538 + sys_corr_100: 0.05111382313222098 + sys_corr_101: 0.42574408337032366 + sys_corr_102: 0.9984104064540618 + sys_corr_103: 0.0407009722129825 + sys_corr_104: -0.06847252734244845 + sys_corr_105: -0.027436296311071428 + sys_corr_106: 0.01655980490558876 + sys_corr_107: -0.13336389495016013 + sys_corr_108: 0.7850283328351677 + sys_corr_109: -1.5164519628846458 + sys_corr_110: -0.37805734439548355 + sys_corr_111: -0.4205178605281974 + sys_corr_112: -0.15193458864171436 + sys_corr_113: 0.22026704641393297 + sys_corr_114: -0.0013060530456134704 + sys_corr_115: 0.06626308722728287 + sys_corr_116: -0.04749238547893269 + sys_corr_117: -0.015289910747447906 + sys_corr_118: -0.04722451932321857 + sys_corr_119: 0.0007341302288526538 + sys_corr_120: 0.016043999682561226 + sys_corr_121: -0.0015839860981967135 + sys_corr_122: -0.019367058322225336 + sys_corr_123: -0.01612064621380015 + sys_corr_124: -0.004241412924424132 + sys_corr_125: 0.004430499400920047 + sys_corr_126: -0.008579072006090344 + sys_corr_127: -0.18533525549304394 + sys_corr_128: 0.20903032646710198 + sys_corr_129: 0.2801098271404163 + sys_corr_130: -0.007742505436201925 + sys_corr_131: -0.004206933416079904 + sys_corr_132: -0.0003530125589281783 stat: 0.0 luminosity: 4328.561886 -- sys_corr_1: 738.5714365611205 - sys_corr_2: 1977.1255752064978 - sys_corr_3: -2447.2395211143894 +- sys_corr_1: 738.5714365611204 + sys_corr_2: 1977.125575206497 + sys_corr_3: -2447.239521114386 sys_corr_4: -613.368265933482 - sys_corr_5: 1227.069910399053 - sys_corr_6: 272.60622083630034 - sys_corr_7: -322.21633924071875 - sys_corr_8: -288.8451292614873 - sys_corr_9: -187.1293178357462 - sys_corr_10: -91.73860680332169 - sys_corr_11: -63.91304436687786 - sys_corr_12: 207.38895091520536 - sys_corr_13: 347.02558320388675 - sys_corr_14: 252.3304820841615 - sys_corr_15: -194.00263960980453 - sys_corr_16: 272.31753263095646 - sys_corr_17: -64.28805241771221 - sys_corr_18: -299.2021737198796 - sys_corr_19: 547.5995168019048 - sys_corr_20: -668.6570725499373 - sys_corr_21: 401.63268328426847 - sys_corr_22: 59.23683985603904 - sys_corr_23: 128.85354281192818 - sys_corr_24: -37.053964389900024 - sys_corr_25: 4.9622883478371556 - sys_corr_26: 14.61340635185865 - sys_corr_27: 52.3757149062113 - sys_corr_28: -0.83024726464814 - sys_corr_29: -0.7486648635981094 - sys_corr_30: -12.395303699261172 - sys_corr_31: 0.6956265248780105 - sys_corr_32: 1.4718871138127265 - sys_corr_33: 0.45655022620753355 - sys_corr_34: 0.1987951517409145 - sys_corr_35: -1.0524319099060095 - sys_corr_36: -1.6611604716953734 - sys_corr_37: -0.7571231419916532 - sys_corr_38: -0.2893012354167699 - sys_corr_39: 0.4758462425675516 - sys_corr_40: -0.13875341720153536 - sys_corr_41: 0.5515458582583121 - sys_corr_42: -0.29403099052254095 - sys_corr_43: -0.6186884425850923 - sys_corr_44: -0.7478357779666756 - sys_corr_45: 0.6129288342930358 - sys_corr_46: 0.41482430138387744 - sys_corr_47: -2.02862857869195 - sys_corr_48: 2.1755918068263753 - sys_corr_49: -1.3177098996008343 - sys_corr_50: 1.67905923660829 - sys_corr_51: -1.7959862543358598 - sys_corr_52: 1.6272617694816307 - sys_corr_53: 0.5909531301098874 - sys_corr_54: 0.6728925045858353 - sys_corr_55: 0.1413874099064151 - sys_corr_56: -0.4981969623175392 - sys_corr_57: 0.7424906082152428 - sys_corr_58: 0.029228882658041636 - sys_corr_59: -0.32107701498803165 - sys_corr_60: 0.18854817913027322 - sys_corr_61: 0.5363207830360587 - sys_corr_62: 0.5107766623536262 - sys_corr_63: -0.7530727392466117 - sys_corr_64: 0.20313636193132054 - sys_corr_65: -0.34855978107455554 - sys_corr_66: 0.49625477705768967 - sys_corr_67: -0.08832044624609278 - sys_corr_68: -1.1158842008037702 - sys_corr_69: 0.6480168052409752 - sys_corr_70: 0.9183278781073063 - sys_corr_71: -0.1260740418021748 - sys_corr_72: -0.29956077715396734 - sys_corr_73: 0.27293154286747373 - sys_corr_74: 0.44408568953160915 - sys_corr_75: 0.585139354533559 - sys_corr_76: 0.5937188365193928 - sys_corr_77: -0.18121039159975688 - sys_corr_78: -0.2807298047479592 - sys_corr_79: 0.1389517725886365 - sys_corr_80: 0.2074523942506723 - sys_corr_81: 0.9856567729963662 - sys_corr_82: -0.44673007448479024 - sys_corr_83: 0.15234897014200247 - sys_corr_84: -1.2287751041783403 - sys_corr_85: -0.7826100423842298 - sys_corr_86: -0.020917793004940885 - sys_corr_87: -0.6301877572481974 - sys_corr_88: 0.30289251958999663 - sys_corr_89: -0.061258224933120727 - sys_corr_90: -0.00968011754164241 - sys_corr_91: 1.0072146660332288 - sys_corr_92: -0.13412048947003008 - sys_corr_93: 0.011064553941638024 - sys_corr_94: 0.027085227668096557 - sys_corr_95: 0.20144888683747914 - sys_corr_96: -0.05538057602556109 - sys_corr_97: -0.39097119280618825 - sys_corr_98: 0.15867785296182507 - sys_corr_99: -0.17829592294838703 - sys_corr_100: 0.07587049103685203 - sys_corr_101: -0.0292358720197675 - sys_corr_102: -0.12482215416727634 - sys_corr_103: 0.07577363600480085 - sys_corr_104: 0.018466170014228876 - sys_corr_105: -0.02121173549192 - sys_corr_106: -0.0928017381338412 - sys_corr_107: -0.04580533121674304 - sys_corr_108: -0.3257872944523658 - sys_corr_109: 0.18713382396985764 - sys_corr_110: -0.8509281885452246 - sys_corr_111: -0.20470744600202959 - sys_corr_112: -0.8376672649380053 - sys_corr_113: 0.31078388251213673 - sys_corr_114: -0.0007258524154147956 - sys_corr_115: 0.16801183011767667 - sys_corr_116: 0.020992941266889734 - sys_corr_117: 0.00950582221004613 - sys_corr_118: -0.013309779901622767 - sys_corr_119: 0.0002712715824288977 - sys_corr_120: 0.004627301645607606 - sys_corr_121: 0.001750677101946365 - sys_corr_122: -0.007677557783144255 - sys_corr_123: -0.0063310481416373144 - sys_corr_124: 0.01938945034987923 - sys_corr_125: 0.009212806453082749 - sys_corr_126: 0.007144977584707454 - sys_corr_127: 0.1130581354442157 - sys_corr_128: -0.008667271605197922 - sys_corr_129: 0.024181766686477858 - sys_corr_130: -0.005017489764145232 - sys_corr_131: -0.007719829053230218 - sys_corr_132: -0.007270149823568334 + sys_corr_5: 1227.0699103990548 + sys_corr_6: 272.60622083630113 + sys_corr_7: -322.2163392407157 + sys_corr_8: -288.845129261501 + sys_corr_9: -187.12931783575158 + sys_corr_10: -91.73860680332166 + sys_corr_11: -63.91304436685516 + sys_corr_12: 207.38895091521067 + sys_corr_13: -347.02558320388624 + sys_corr_14: -252.33048208415622 + sys_corr_15: 194.0026396098006 + sys_corr_16: -272.31753263096954 + sys_corr_17: -64.2880524177086 + sys_corr_18: 299.20217371987275 + sys_corr_19: 547.5995168019192 + sys_corr_20: -668.6570725499338 + sys_corr_21: 401.63268328426716 + sys_corr_22: 59.23683985605291 + sys_corr_23: 128.85354281192218 + sys_corr_24: -37.05396438989607 + sys_corr_25: 4.962288347834962 + sys_corr_26: 14.613406351853866 + sys_corr_27: 52.37571490621033 + sys_corr_28: -0.8302472646477691 + sys_corr_29: -0.7486648635976799 + sys_corr_30: -12.395303699261905 + sys_corr_31: 0.6956265248777381 + sys_corr_32: -1.471887113813499 + sys_corr_33: -0.4565502262085744 + sys_corr_34: 0.19879515174075812 + sys_corr_35: -1.0524319099051807 + sys_corr_36: -1.6611604716960344 + sys_corr_37: 0.7571231419915995 + sys_corr_38: 0.28930123541666525 + sys_corr_39: -0.4758462425672375 + sys_corr_40: 0.1387534172012497 + sys_corr_41: 0.5515458582581989 + sys_corr_42: 0.2940309905226599 + sys_corr_43: -0.6186884425848813 + sys_corr_44: -0.7478357779669141 + sys_corr_45: -0.6129288342924948 + sys_corr_46: -0.4148243013835964 + sys_corr_47: 2.028628578691532 + sys_corr_48: -2.1755918068262 + sys_corr_49: 1.3177098996004644 + sys_corr_50: 1.6790592366088453 + sys_corr_51: -1.795986254335606 + sys_corr_52: 1.6272617694828557 + sys_corr_53: -0.5909531301110218 + sys_corr_54: -0.6728925045853984 + sys_corr_55: -0.1413874099063642 + sys_corr_56: 0.49819696231801425 + sys_corr_57: 0.742490608214502 + sys_corr_58: -0.02922888265850996 + sys_corr_59: -0.3210770149881749 + sys_corr_60: -0.1885481791301872 + sys_corr_61: -0.5363207830364687 + sys_corr_62: -0.5107766623533411 + sys_corr_63: -0.753072739246393 + sys_corr_64: 0.20313636193126267 + sys_corr_65: -0.34855978107432806 + sys_corr_66: -0.49625477705731474 + sys_corr_67: -0.08832044624667729 + sys_corr_68: 1.115884200804148 + sys_corr_69: 0.6480168052410961 + sys_corr_70: -0.91832787810738 + sys_corr_71: -0.12607404180244777 + sys_corr_72: 0.2995607771540093 + sys_corr_73: -0.2729315428676457 + sys_corr_74: 0.44408568953171396 + sys_corr_75: 0.585139354533265 + sys_corr_76: 0.5937188365198669 + sys_corr_77: 0.18121039159933208 + sys_corr_78: -0.20745239425078016 + sys_corr_79: -0.28072980474792303 + sys_corr_80: 0.1389517725888779 + sys_corr_81: -0.9856567729964636 + sys_corr_82: 0.4467300744848274 + sys_corr_83: 0.15234897014187185 + sys_corr_84: 1.2287751041786161 + sys_corr_85: -0.7826100423839855 + sys_corr_86: 0.02091779300545284 + sys_corr_87: 0.6301877572481063 + sys_corr_88: 0.3028925195901791 + sys_corr_89: -0.009680117541601342 + sys_corr_90: -0.06125822493310416 + sys_corr_91: 1.0072146660332648 + sys_corr_92: 0.13412048946986113 + sys_corr_93: 0.011064553941619057 + sys_corr_94: 0.0270852276679752 + sys_corr_95: 0.20144888683755863 + sys_corr_96: 0.05538057602554755 + sys_corr_97: -0.39097119280620113 + sys_corr_98: -0.15867785296182055 + sys_corr_99: -0.17829592294838734 + sys_corr_100: -0.029235872019788712 + sys_corr_101: 0.12482215416726489 + sys_corr_102: 0.07577363600486851 + sys_corr_103: -0.018466170014231592 + sys_corr_104: 0.02121173549187856 + sys_corr_105: -0.07587049103688019 + sys_corr_106: -0.09280173813383538 + sys_corr_107: -0.3257872944523601 + sys_corr_108: 0.1871338239698378 + sys_corr_109: 0.8509281885452227 + sys_corr_110: 0.045805331216738854 + sys_corr_111: 0.20470744600201227 + sys_corr_112: -0.8376672649380066 + sys_corr_113: -0.3107838825121424 + sys_corr_114: -0.0007258524154138598 + sys_corr_115: 0.16801183011767515 + sys_corr_116: -0.020992941266876654 + sys_corr_117: -0.009505822210047001 + sys_corr_118: 0.013309779901618682 + sys_corr_119: -0.0002712715824287855 + sys_corr_120: -0.0046273016456108325 + sys_corr_121: -0.0017506771019471477 + sys_corr_122: -0.006331048141636502 + sys_corr_123: -0.007677557783145239 + sys_corr_124: 0.01938945034987995 + sys_corr_125: 0.00921280645308451 + sys_corr_126: -0.007144977584705452 + sys_corr_127: 0.11305813544421633 + sys_corr_128: -0.008667271605211212 + sys_corr_129: 0.02418176668647812 + sys_corr_130: -0.005017489764143473 + sys_corr_131: 0.007719829053231343 + sys_corr_132: -0.007270149823568277 stat: 0.0 luminosity: 3916.504636 -- sys_corr_1: 90.96090936370575 - sys_corr_2: 1271.651477053307 +- sys_corr_1: 90.96090936370635 + sys_corr_2: 1271.6514770533051 sys_corr_3: -2591.228447840672 - sys_corr_4: -1104.9589842316875 - sys_corr_5: 290.3400721456471 - sys_corr_6: 138.06176670653466 - sys_corr_7: -50.655295662416535 - sys_corr_8: -118.38135730787032 - sys_corr_9: -134.94736553239562 - sys_corr_10: -78.0720416017998 - sys_corr_11: -85.7388484936771 - sys_corr_12: 42.54475217003733 - sys_corr_13: 54.04136646701998 - sys_corr_14: 78.05211010612041 - sys_corr_15: -92.95378750351787 - sys_corr_16: 34.77507204919275 - sys_corr_17: -167.3317969322489 - sys_corr_18: 35.70474750103621 - sys_corr_19: 46.160975643530776 - sys_corr_20: 997.6326764476914 - sys_corr_21: 374.65131215007045 - sys_corr_22: -99.72889179893068 - sys_corr_23: 287.2769687331534 - sys_corr_24: 33.469865479887034 - sys_corr_25: 42.50189343785508 - sys_corr_26: 8.898874941513785 - sys_corr_27: 63.98094544851927 - sys_corr_28: 2.4701079295120043 - sys_corr_29: -7.906244432742066 - sys_corr_30: -8.50576329366371 - sys_corr_31: -12.045157682303456 - sys_corr_32: 0.39874283487039497 - sys_corr_33: 1.5185745055590842 - sys_corr_34: 2.600443195674889 - sys_corr_35: -0.7966762084573861 - sys_corr_36: 1.9431129073243463 - sys_corr_37: -2.261853367931463 - sys_corr_38: -0.4990150299052801 - sys_corr_39: 1.1184640242937525 - sys_corr_40: -1.3845338640226386 - sys_corr_41: -1.8520659161297637 - sys_corr_42: 0.42973321814705506 - sys_corr_43: 1.0026415372881416 - sys_corr_44: 1.8450146915938754 - sys_corr_45: -0.06946727107573075 - sys_corr_46: -0.7339426629620286 - sys_corr_47: -1.4628928365439522 - sys_corr_48: -0.13173386815629298 - sys_corr_49: -2.4392925030686974 - sys_corr_50: -1.21923373715259 - sys_corr_51: 2.171328789904156 - sys_corr_52: -0.43236967333290427 - sys_corr_53: 0.6227589564073108 - sys_corr_54: -0.7830188371541982 - sys_corr_55: -0.2652910124919703 - sys_corr_56: -0.7613894152960259 - sys_corr_57: -0.226956229126033 - sys_corr_58: -0.24395605424747563 - sys_corr_59: -1.1449500003343376 - sys_corr_60: -0.17953691895463003 - sys_corr_61: -0.9268234075365481 - sys_corr_62: -0.3769282259596018 - sys_corr_63: -0.12148561781105528 - sys_corr_64: -0.16406276852746265 - sys_corr_65: -0.22344177179071414 - sys_corr_66: -0.49983930333187354 - sys_corr_67: 0.6063899730553313 - sys_corr_68: -0.9694816974082417 - sys_corr_69: -0.001691147687222937 - sys_corr_70: 0.22801652754122956 - sys_corr_71: 0.5108860968710656 - sys_corr_72: 0.934660348448637 - sys_corr_73: -0.20903596381780046 - sys_corr_74: 0.5001331043932761 - sys_corr_75: 0.3661379595120265 - sys_corr_76: 0.15370453555160984 - sys_corr_77: 0.12081293519358226 - sys_corr_78: 0.4045552433674989 - sys_corr_79: -0.4151819493048594 - sys_corr_80: 0.3845997698067287 - sys_corr_81: 0.856107565525811 - sys_corr_82: 0.1094491361579412 - sys_corr_83: 0.4267076813249231 - sys_corr_84: -0.4039308378184576 - sys_corr_85: 0.2473752575546936 - sys_corr_86: -0.5173563798530596 - sys_corr_87: -0.1266360129412826 - sys_corr_88: 0.47220127779309495 - sys_corr_89: 1.7922133881961253 - sys_corr_90: -0.17130181563311503 - sys_corr_91: -0.6142130458991295 - sys_corr_92: -0.0970366587776078 - sys_corr_93: 0.003239352896207544 - sys_corr_94: -0.027804543494896455 - sys_corr_95: 0.1549173158246973 - sys_corr_96: -0.06358217604288768 - sys_corr_97: -0.30839283525951366 - sys_corr_98: 0.26743561178850433 - sys_corr_99: -0.21325584053741692 - sys_corr_100: -0.3454496086549637 - sys_corr_101: 0.2590343162172407 - sys_corr_102: -0.5343623293211853 - sys_corr_103: -0.08283786900856462 - sys_corr_104: -0.12520103648172293 - sys_corr_105: -0.3695259405953782 - sys_corr_106: 0.08127150608366242 - sys_corr_107: -0.10783208773466108 - sys_corr_108: -0.02377411555236035 - sys_corr_109: 0.056588430019071795 - sys_corr_110: 0.06670938011615064 - sys_corr_111: -0.12029765609017556 - sys_corr_112: 1.0093296752188923 - sys_corr_113: 1.1431933730281627 - sys_corr_114: 0.0008583864691613895 - sys_corr_115: 0.28093906367949595 - sys_corr_116: 0.026176586343366597 - sys_corr_117: 0.010016901866442886 - sys_corr_118: -0.18468680555241182 - sys_corr_119: 0.0014287869750866972 - sys_corr_120: -0.004723070211583518 - sys_corr_121: 0.0009659011318378061 - sys_corr_122: -0.008058197452570515 - sys_corr_123: -0.014373792224161804 - sys_corr_124: 0.02455778935074271 - sys_corr_125: 0.003560302530707536 - sys_corr_126: 0.00831048652042145 - sys_corr_127: 0.18680643481653975 - sys_corr_128: -0.06192046750380696 - sys_corr_129: -0.16529915291340452 - sys_corr_130: -0.006492809658361823 - sys_corr_131: 0.0029516583483112824 - sys_corr_132: 0.06148117131634508 + sys_corr_4: -1104.9589842316907 + sys_corr_5: 290.34007214564923 + sys_corr_6: 138.06176670653457 + sys_corr_7: -50.65529566241421 + sys_corr_8: -118.38135730787626 + sys_corr_9: -134.94736553239596 + sys_corr_10: -78.07204160179246 + sys_corr_11: -85.73884849367418 + sys_corr_12: 42.5447521700409 + sys_corr_13: -54.041366467021 + sys_corr_14: -78.05211010611691 + sys_corr_15: 92.9537875035129 + sys_corr_16: -34.775072049198954 + sys_corr_17: -167.33179693224767 + sys_corr_18: -35.70474750103967 + sys_corr_19: 46.16097564351018 + sys_corr_20: 997.632676447703 + sys_corr_21: 374.65131215006073 + sys_corr_22: -99.72889179892482 + sys_corr_23: 287.2769687331497 + sys_corr_24: 33.46986547988653 + sys_corr_25: 42.50189343785344 + sys_corr_26: 8.89887494150562 + sys_corr_27: 63.98094544851964 + sys_corr_28: 2.4701079295122987 + sys_corr_29: -7.906244432742265 + sys_corr_30: -8.505763293663467 + sys_corr_31: -12.045157682303463 + sys_corr_32: -0.39874283487015105 + sys_corr_33: -1.5185745055584436 + sys_corr_34: 2.6004431956752585 + sys_corr_35: -0.7966762084571705 + sys_corr_36: 1.9431129073234723 + sys_corr_37: 2.2618533679317885 + sys_corr_38: 0.4990150299051308 + sys_corr_39: -1.1184640242948445 + sys_corr_40: 1.38453386402282 + sys_corr_41: -1.8520659161300856 + sys_corr_42: -0.4297332181473648 + sys_corr_43: 1.0026415372882935 + sys_corr_44: 1.8450146915936174 + sys_corr_45: 0.06946727107631097 + sys_corr_46: 0.7339426629621447 + sys_corr_47: 1.4628928365441103 + sys_corr_48: 0.13173386815614033 + sys_corr_49: 2.4392925030682364 + sys_corr_50: -1.219233737152249 + sys_corr_51: 2.1713287899043663 + sys_corr_52: -0.43236967333275295 + sys_corr_53: -0.6227589564080441 + sys_corr_54: 0.7830188371540805 + sys_corr_55: 0.2652910124913734 + sys_corr_56: 0.7613894152968022 + sys_corr_57: -0.22695622912638264 + sys_corr_58: 0.24395605424677363 + sys_corr_59: -1.144950000334796 + sys_corr_60: 0.179536918954473 + sys_corr_61: 0.9268234075369637 + sys_corr_62: 0.3769282259593324 + sys_corr_63: -0.12148561781117062 + sys_corr_64: -0.1640627685274318 + sys_corr_65: -0.22344177179109456 + sys_corr_66: 0.49983930333237137 + sys_corr_67: 0.6063899730551177 + sys_corr_68: 0.9694816974082254 + sys_corr_69: -0.001691147687264042 + sys_corr_70: -0.22801652754116858 + sys_corr_71: 0.5108860968712227 + sys_corr_72: -0.934660348448781 + sys_corr_73: 0.20903596381751915 + sys_corr_74: 0.5001331043928251 + sys_corr_75: 0.3661379595122068 + sys_corr_76: 0.15370453555195954 + sys_corr_77: -0.12081293519408272 + sys_corr_78: -0.3845997698068791 + sys_corr_79: 0.4045552433676921 + sys_corr_80: -0.41518194930486624 + sys_corr_81: -0.8561075655258796 + sys_corr_82: -0.10944913615803871 + sys_corr_83: 0.42670768132477555 + sys_corr_84: 0.40393083781834016 + sys_corr_85: 0.2473752575546494 + sys_corr_86: 0.5173563798535287 + sys_corr_87: 0.1266360129411164 + sys_corr_88: 0.4722012777922943 + sys_corr_89: -0.17130181563307562 + sys_corr_90: 1.7922133881961415 + sys_corr_91: -0.6142130458991419 + sys_corr_92: 0.0970366587773626 + sys_corr_93: 0.003239352896238798 + sys_corr_94: -0.027804543494763034 + sys_corr_95: 0.15491731582453666 + sys_corr_96: 0.06358217604286927 + sys_corr_97: -0.30839283525947225 + sys_corr_98: -0.26743561178850056 + sys_corr_99: -0.21325584053740013 + sys_corr_100: 0.2590343162172858 + sys_corr_101: 0.5343623293212842 + sys_corr_102: -0.08283786900795266 + sys_corr_103: 0.12520103648167383 + sys_corr_104: 0.3695259405952802 + sys_corr_105: 0.3454496086549782 + sys_corr_106: 0.08127150608365734 + sys_corr_107: -0.023774115552351472 + sys_corr_108: 0.056588430019078644 + sys_corr_109: -0.06670938011615574 + sys_corr_110: 0.10783208773466348 + sys_corr_111: 0.12029765609018882 + sys_corr_112: 1.0093296752188914 + sys_corr_113: -1.1431933730281603 + sys_corr_114: 0.0008583864691608882 + sys_corr_115: 0.280939063679499 + sys_corr_116: -0.02617658634333602 + sys_corr_117: -0.010016901866452658 + sys_corr_118: 0.18468680555241757 + sys_corr_119: -0.0014287869750877718 + sys_corr_120: 0.004723070211590926 + sys_corr_121: -0.0009659011318389697 + sys_corr_122: -0.014373792224161302 + sys_corr_123: -0.008058197452569667 + sys_corr_124: 0.02455778935074206 + sys_corr_125: 0.0035603025307040597 + sys_corr_126: -0.008310486520418305 + sys_corr_127: 0.1868064348165564 + sys_corr_128: -0.06192046750381216 + sys_corr_129: -0.16529915291342265 + sys_corr_130: -0.006492809658358619 + sys_corr_131: -0.002951658348310236 + sys_corr_132: 0.06148117131634285 stat: 0.0 luminosity: 3380.8851340000006 -- sys_corr_1: -247.09793346124192 - sys_corr_2: 752.4180707580538 - sys_corr_3: -2465.702471547063 - sys_corr_4: -1054.054930547848 - sys_corr_5: -435.3260891902815 - sys_corr_6: -20.250373236312765 - sys_corr_7: 4.892215800140841 - sys_corr_8: -31.494408243505475 - sys_corr_9: -66.06416644860367 - sys_corr_10: -14.147361058328379 - sys_corr_11: -11.444964710879647 - sys_corr_12: -39.91657308871043 - sys_corr_13: -25.113467450345258 - sys_corr_14: 42.26882825954217 - sys_corr_15: 11.753706963880642 - sys_corr_16: -0.5015814591646521 - sys_corr_17: -58.15992793837563 - sys_corr_18: 36.544793045181315 - sys_corr_19: 77.08941916032208 - sys_corr_20: 99.42284711408377 - sys_corr_21: -59.709801774823276 - sys_corr_22: 136.45423378392528 - sys_corr_23: -900.3013968564873 - sys_corr_24: -36.97954486632026 - sys_corr_25: 158.56393490339647 - sys_corr_26: 4.92341077171625 - sys_corr_27: 39.391965879119695 - sys_corr_28: 22.224162932574185 - sys_corr_29: -6.365798009697683 - sys_corr_30: 9.863634854868598 - sys_corr_31: -4.405400652030447 - sys_corr_32: -0.7460235968067429 - sys_corr_33: -0.12692713399687838 - sys_corr_34: 2.600343380283055 - sys_corr_35: 4.066429936401626 - sys_corr_36: 1.1002615129173998 - sys_corr_37: -2.3285299705574665 - sys_corr_38: 0.006080513888229082 - sys_corr_39: 1.6389929438105466 - sys_corr_40: -2.513465097840315 - sys_corr_41: 0.8560878055349225 - sys_corr_42: 1.917489611133425 - sys_corr_43: 0.37708597025626656 - sys_corr_44: 3.522924892994178 - sys_corr_45: -1.0008971001700837 - sys_corr_46: -0.0014420458939436076 - sys_corr_47: 4.0866759155698436 - sys_corr_48: -8.181856525907204 - sys_corr_49: 0.5685504421126842 - sys_corr_50: -6.309658135985439 - sys_corr_51: 7.633830474840689 - sys_corr_52: -5.952776392433972 - sys_corr_53: 0.2523803076687156 - sys_corr_54: -0.9361089105762183 - sys_corr_55: 1.7586477253800994 - sys_corr_56: 0.34944762779749805 - sys_corr_57: 0.0014777809587007552 - sys_corr_58: 0.4330613599041889 - sys_corr_59: -1.07191243960888 - sys_corr_60: 0.16924291821988252 - sys_corr_61: 0.4118032304613791 - sys_corr_62: 0.3480721598420346 - sys_corr_63: 0.08898346433716968 - sys_corr_64: -0.4252812144974959 - sys_corr_65: 0.28886355627879423 - sys_corr_66: -0.40157461642564946 - sys_corr_67: 0.8618750396764354 - sys_corr_68: 0.09139822808550996 - sys_corr_69: -0.02784245713923096 - sys_corr_70: 0.0783471192737237 - sys_corr_71: 1.1028227685315537 - sys_corr_72: 0.8781842559032921 - sys_corr_73: 0.14367822350357165 - sys_corr_74: 0.22752868096525808 - sys_corr_75: -0.22156978790907927 - sys_corr_76: -0.1128381673262111 - sys_corr_77: 0.4619765963643284 - sys_corr_78: 0.29772258994376327 - sys_corr_79: 0.1385931637169651 - sys_corr_80: -0.5231531592327272 - sys_corr_81: -0.9635074599226929 - sys_corr_82: 0.2034835485948498 - sys_corr_83: -2.0003212974065496 - sys_corr_84: 0.8388013725810174 - sys_corr_85: 0.9057084920723135 - sys_corr_86: 0.6848891967229084 - sys_corr_87: 1.4976217124069395 - sys_corr_88: 1.0041811448907985 - sys_corr_89: -0.5447336103468136 - sys_corr_90: 0.25855419782840566 - sys_corr_91: -0.4485884712506796 - sys_corr_92: 0.0819365973210314 - sys_corr_93: -0.08307564442609104 - sys_corr_94: -0.11687388181564483 - sys_corr_95: 0.005229745557060113 - sys_corr_96: 0.047860512899946674 - sys_corr_97: 0.1848115247787562 - sys_corr_98: 0.02865743160286212 - sys_corr_99: 0.007718621682537688 - sys_corr_100: -0.13162320988591342 - sys_corr_101: 0.1254117961051122 - sys_corr_102: -0.31330874411364995 - sys_corr_103: -0.22638891111325085 - sys_corr_104: 0.10197031914728458 - sys_corr_105: -0.35198407965861656 - sys_corr_106: 0.053940552764943146 - sys_corr_107: -0.23410415590463268 - sys_corr_108: -0.23913701679365815 - sys_corr_109: 0.14488570576754667 - sys_corr_110: -0.35548590285068116 - sys_corr_111: -0.10211268347152189 - sys_corr_112: -0.32054989567810727 - sys_corr_113: -1.0386994260719915 - sys_corr_114: 0.0027236391682668617 - sys_corr_115: -0.16140166907874356 - sys_corr_116: -0.0286702062753229 - sys_corr_117: 0.022435143569173952 - sys_corr_118: -0.2505657217394829 - sys_corr_119: 0.004162462594537149 - sys_corr_120: -0.015795334890664325 - sys_corr_121: -0.0033017092972035737 - sys_corr_122: 0.01656928039539432 - sys_corr_123: 0.024312147425682048 - sys_corr_124: -0.15216004283327164 - sys_corr_125: -0.024860675702915207 - sys_corr_126: -0.0021881694887874573 - sys_corr_127: 0.16598305217561288 - sys_corr_128: -0.1441549485892494 - sys_corr_129: -1.3439903133410023 - sys_corr_130: 0.01354020213769203 - sys_corr_131: 0.01956025992065604 - sys_corr_132: 0.07890580615944913 +- sys_corr_1: -247.09793346124215 + sys_corr_2: 752.4180707580545 + sys_corr_3: -2465.702471547062 + sys_corr_4: -1054.0549305478523 + sys_corr_5: -435.3260891902798 + sys_corr_6: -20.25037323631202 + sys_corr_7: 4.892215800139832 + sys_corr_8: -31.49440824350797 + sys_corr_9: -66.06416644860477 + sys_corr_10: -14.147361058324886 + sys_corr_11: -11.444964710883571 + sys_corr_12: -39.916573088709725 + sys_corr_13: 25.113467450343737 + sys_corr_14: -42.268828259541266 + sys_corr_15: -11.753706963882264 + sys_corr_16: 0.5015814591643335 + sys_corr_17: -58.159927938377116 + sys_corr_18: -36.54479304518205 + sys_corr_19: 77.08941916031951 + sys_corr_20: 99.42284711408156 + sys_corr_21: -59.70980177482814 + sys_corr_22: 136.45423378392348 + sys_corr_23: -900.3013968564858 + sys_corr_24: -36.97954486632595 + sys_corr_25: 158.56393490339505 + sys_corr_26: 4.923410771709154 + sys_corr_27: 39.39196587912186 + sys_corr_28: 22.224162932574636 + sys_corr_29: -6.36579800969683 + sys_corr_30: 9.863634854868645 + sys_corr_31: -4.405400652030622 + sys_corr_32: 0.7460235968075443 + sys_corr_33: 0.12692713399714609 + sys_corr_34: 2.600343380283613 + sys_corr_35: 4.066429936402068 + sys_corr_36: 1.1002615129171633 + sys_corr_37: 2.3285299705578 + sys_corr_38: -0.006080513888589591 + sys_corr_39: -1.6389929438099835 + sys_corr_40: 2.5134650978405504 + sys_corr_41: 0.856087805535068 + sys_corr_42: -1.9174896111336843 + sys_corr_43: 0.3770859702553199 + sys_corr_44: 3.52292489299441 + sys_corr_45: 1.0008971001696523 + sys_corr_46: 0.0014420458937031042 + sys_corr_47: -4.0866759155693595 + sys_corr_48: 8.181856525906886 + sys_corr_49: -0.5685504421118993 + sys_corr_50: -6.309658135986445 + sys_corr_51: 7.633830474840943 + sys_corr_52: -5.952776392434917 + sys_corr_53: -0.25238030766696423 + sys_corr_54: 0.9361089105770811 + sys_corr_55: -1.758647725379794 + sys_corr_56: -0.34944762779836286 + sys_corr_57: 0.001477780958855468 + sys_corr_58: -0.4330613599051673 + sys_corr_59: -1.071912439608271 + sys_corr_60: -0.16924291822017415 + sys_corr_61: -0.41180323046192274 + sys_corr_62: -0.3480721598414174 + sys_corr_63: 0.08898346433724239 + sys_corr_64: -0.4252812144971449 + sys_corr_65: 0.2888635562781181 + sys_corr_66: 0.4015746164251428 + sys_corr_67: 0.8618750396767916 + sys_corr_68: -0.0913982280855247 + sys_corr_69: -0.027842457139231034 + sys_corr_70: -0.07834711927409584 + sys_corr_71: 1.1028227685319136 + sys_corr_72: -0.8781842559033615 + sys_corr_73: -0.1436782235038199 + sys_corr_74: 0.22752868096589698 + sys_corr_75: -0.22156978790878887 + sys_corr_76: -0.11283816732649621 + sys_corr_77: -0.46197659636474514 + sys_corr_78: 0.5231531592328514 + sys_corr_79: 0.29772258994371514 + sys_corr_80: 0.13859316371702443 + sys_corr_81: 0.9635074599229935 + sys_corr_82: -0.2034835485948169 + sys_corr_83: -2.0003212974061926 + sys_corr_84: -0.8388013725811256 + sys_corr_85: 0.9057084920722404 + sys_corr_86: -0.6848891967217624 + sys_corr_87: -1.4976217124068731 + sys_corr_88: 1.0041811448917477 + sys_corr_89: 0.2585541978283389 + sys_corr_90: -0.5447336103468209 + sys_corr_91: -0.4485884712506885 + sys_corr_92: -0.08193659732088078 + sys_corr_93: -0.08307564442608761 + sys_corr_94: -0.11687388181563797 + sys_corr_95: 0.005229745557037994 + sys_corr_96: -0.047860512899946195 + sys_corr_97: 0.18481152477874235 + sys_corr_98: -0.028657431602877953 + sys_corr_99: 0.007718621682538274 + sys_corr_100: 0.12541179610514158 + sys_corr_101: 0.313308744113766 + sys_corr_102: -0.2263889111129473 + sys_corr_103: -0.1019703191472529 + sys_corr_104: 0.35198407965870876 + sys_corr_105: 0.1316232098859349 + sys_corr_106: 0.05394055276495072 + sys_corr_107: -0.2391370167936561 + sys_corr_108: 0.14488570576755092 + sys_corr_109: 0.3554859028506907 + sys_corr_110: 0.23410415590459582 + sys_corr_111: 0.1021126834715316 + sys_corr_112: -0.32054989567809267 + sys_corr_113: 1.0386994260719584 + sys_corr_114: 0.002723639168264883 + sys_corr_115: -0.16140166907873962 + sys_corr_116: 0.028670206275304554 + sys_corr_117: -0.0224351435691832 + sys_corr_118: 0.2505657217394865 + sys_corr_119: -0.004162462594538487 + sys_corr_120: 0.015795334890678518 + sys_corr_121: 0.0033017092972028343 + sys_corr_122: 0.024312147425681024 + sys_corr_123: 0.016569280395393224 + sys_corr_124: -0.1521600428333676 + sys_corr_125: -0.02486067570292113 + sys_corr_126: 0.002188169488783483 + sys_corr_127: 0.16598305217565018 + sys_corr_128: -0.14415494858926114 + sys_corr_129: -1.343990313340998 + sys_corr_130: 0.013540202137692841 + sys_corr_131: -0.019560259920656926 + sys_corr_132: 0.07890580615944823 stat: 0.0 luminosity: 2891.338186 -- sys_corr_1: -472.82581493003516 - sys_corr_2: 465.11650967003766 - sys_corr_3: -2212.360945442133 - sys_corr_4: -877.3582767349868 - sys_corr_5: -849.749575747154 - sys_corr_6: -163.7080583810945 - sys_corr_7: 59.3241996665147 - sys_corr_8: 55.83713132133447 - sys_corr_9: 17.020372846371938 - sys_corr_10: 54.359518380297885 - sys_corr_11: 19.21541907899267 - sys_corr_12: -80.14374872435339 - sys_corr_13: -121.24691050786801 - sys_corr_14: 13.719011644316387 - sys_corr_15: 38.06481325329068 - sys_corr_16: -63.138279022988065 - sys_corr_17: 16.997852405858158 - sys_corr_18: 30.110722696466617 - sys_corr_19: -21.38122921036654 - sys_corr_20: -88.3729381760578 - sys_corr_21: -44.16110555012864 - sys_corr_22: -13.794937972298747 - sys_corr_23: 6.722200715510094 - sys_corr_24: 157.95370218985224 - sys_corr_25: -539.7945588518264 - sys_corr_26: 27.696457800392498 - sys_corr_27: -421.56557488861614 - sys_corr_28: -13.316251550971815 - sys_corr_29: -37.53017107351495 - sys_corr_30: 32.341039035793145 - sys_corr_31: 24.51615491109778 - sys_corr_32: 0.16899245136525518 - sys_corr_33: -0.14642933973656502 - sys_corr_34: -2.3829217949091843 - sys_corr_35: -2.906419152883696 - sys_corr_36: -1.9074556594040477 - sys_corr_37: -1.5651276457852232 - sys_corr_38: 0.2878902371856099 - sys_corr_39: 0.022004449946244085 - sys_corr_40: -0.9553066554516974 - sys_corr_41: -0.029028842877328216 - sys_corr_42: 0.09941660999831956 - sys_corr_43: 1.5377655441771516 - sys_corr_44: -3.190066855997805 - sys_corr_45: 1.6094858053498615 - sys_corr_46: -0.9024243388644 - sys_corr_47: 0.6887065418447467 - sys_corr_48: 4.628741524964117 - sys_corr_49: 0.627141515886919 - sys_corr_50: 9.000104177257116 - sys_corr_51: -4.807112176991985 - sys_corr_52: 2.9151624046209257 - sys_corr_53: -0.8671172476727618 - sys_corr_54: 2.3438984255455657 - sys_corr_55: 1.015050401238624 - sys_corr_56: 1.1129862114832065 - sys_corr_57: 0.8586851154178364 - sys_corr_58: -1.35180934172581 - sys_corr_59: 2.2201337288756764 - sys_corr_60: 0.630836800504883 - sys_corr_61: -1.085069552146868 - sys_corr_62: -0.4132558395457076 - sys_corr_63: -0.11964354376639946 - sys_corr_64: 1.7171146905492858 - sys_corr_65: -0.1774981955533964 - sys_corr_66: 0.25710452994005295 - sys_corr_67: -2.5735680708404387 - sys_corr_68: 0.09095579312647302 - sys_corr_69: 0.7493446526486724 - sys_corr_70: 1.1797154351434103 - sys_corr_71: -1.6415673627653653 - sys_corr_72: -0.6761394087316263 - sys_corr_73: 0.19033204597291578 - sys_corr_74: 0.8542418998843807 - sys_corr_75: -0.9322825540015327 - sys_corr_76: -1.0996864382202889 - sys_corr_77: -0.6416529172524187 - sys_corr_78: 0.05232957305223002 - sys_corr_79: -0.7733912114793056 - sys_corr_80: -0.34446209646719905 - sys_corr_81: 0.5803560615856167 - sys_corr_82: -0.31367649532176634 - sys_corr_83: 1.6109921628733652 - sys_corr_84: 0.036312911874396864 - sys_corr_85: 0.8842188219696994 - sys_corr_86: -1.5270355808815859 - sys_corr_87: -0.38148842460064875 - sys_corr_88: -3.5663721351345297 - sys_corr_89: -1.6064644530976184 - sys_corr_90: 0.6795292587558137 - sys_corr_91: -0.6555404677486383 - sys_corr_92: -0.39366696808994905 - sys_corr_93: -0.07436395903218321 - sys_corr_94: -0.4014223459807407 - sys_corr_95: -0.44270705613782074 - sys_corr_96: 0.008309773075065042 - sys_corr_97: -0.18795339275642436 - sys_corr_98: 0.1135272106344118 - sys_corr_99: -0.22717032680256788 - sys_corr_100: 0.017445635238014453 - sys_corr_101: 0.20261216675677954 - sys_corr_102: -0.2519854489084049 - sys_corr_103: -0.34033847660683386 - sys_corr_104: -0.09522865010168534 - sys_corr_105: -0.40705897028489657 - sys_corr_106: -0.026042742095062528 - sys_corr_107: -0.12770134430081043 - sys_corr_108: -0.2675460819432152 - sys_corr_109: 0.5514907918896066 - sys_corr_110: 0.18494636650197263 - sys_corr_111: -0.015370075421823231 - sys_corr_112: 0.5294475786595901 - sys_corr_113: -0.04438095945057205 - sys_corr_114: 0.0026797208880980057 - sys_corr_115: -1.29978544646084 - sys_corr_116: -0.09896102558680439 - sys_corr_117: 0.0013379400021886526 - sys_corr_118: 0.13977659469764248 - sys_corr_119: 0.002312835810067647 - sys_corr_120: 0.00021276758891925377 - sys_corr_121: -0.004332918445742993 - sys_corr_122: -0.006727007864876548 - sys_corr_123: 0.01346459427668214 - sys_corr_124: 0.09189764054167969 - sys_corr_125: -0.008605992870528132 - sys_corr_126: -0.002158682995288743 - sys_corr_127: 0.06421894367825612 - sys_corr_128: -0.048218794411507546 - sys_corr_129: 1.7270341262699942 - sys_corr_130: -0.02880056226687482 - sys_corr_131: -0.005225200164403951 - sys_corr_132: 0.07598790340947231 +- sys_corr_1: -472.82581493003534 + sys_corr_2: 465.11650967003834 + sys_corr_3: -2212.3609454421326 + sys_corr_4: -877.3582767349913 + sys_corr_5: -849.7495757471527 + sys_corr_6: -163.70805838109425 + sys_corr_7: 59.324199666513756 + sys_corr_8: 55.837131321336486 + sys_corr_9: 17.02037284637397 + sys_corr_10: 54.359518380299065 + sys_corr_11: 19.21541907898472 + sys_corr_12: -80.14374872435384 + sys_corr_13: 121.24691050786726 + sys_corr_14: -13.719011644317652 + sys_corr_15: -38.06481325329056 + sys_corr_16: 63.138279022990346 + sys_corr_17: 16.997852405858115 + sys_corr_18: -30.110722696465857 + sys_corr_19: -21.38122921036502 + sys_corr_20: -88.37293817605861 + sys_corr_21: -44.16110555012663 + sys_corr_22: -13.794937972298765 + sys_corr_23: 6.722200715512625 + sys_corr_24: 157.95370218985772 + sys_corr_25: -539.7945588518173 + sys_corr_26: 27.696457800434217 + sys_corr_27: -421.5655748886257 + sys_corr_28: -13.316251550969113 + sys_corr_29: -37.53017107351789 + sys_corr_30: 32.34103903579326 + sys_corr_31: 24.516154911098713 + sys_corr_32: -0.16899245136425506 + sys_corr_33: 0.14642933973583622 + sys_corr_34: -2.3829217949088592 + sys_corr_35: -2.9064191528818903 + sys_corr_36: -1.907455659404163 + sys_corr_37: 1.5651276457854408 + sys_corr_38: -0.2878902371861005 + sys_corr_39: -0.022004449946141664 + sys_corr_40: 0.955306655451652 + sys_corr_41: -0.02902884287709767 + sys_corr_42: -0.0994166099973316 + sys_corr_43: 1.5377655441771783 + sys_corr_44: -3.1900668559978356 + sys_corr_45: -1.6094858053498093 + sys_corr_46: 0.9024243388649877 + sys_corr_47: -0.688706541844652 + sys_corr_48: -4.6287415249644255 + sys_corr_49: -0.6271415158875712 + sys_corr_50: 9.00010417725632 + sys_corr_51: -4.807112176991246 + sys_corr_52: 2.915162404619165 + sys_corr_53: 0.8671172476727234 + sys_corr_54: -2.343898425547066 + sys_corr_55: -1.015050401238063 + sys_corr_56: -1.1129862114829507 + sys_corr_57: 0.858685115419107 + sys_corr_58: 1.3518093417278074 + sys_corr_59: 2.22013372887488 + sys_corr_60: -0.6308368005045303 + sys_corr_61: 1.0850695521479428 + sys_corr_62: 0.41325583954381234 + sys_corr_63: -0.11964354376730042 + sys_corr_64: 1.7171146905484664 + sys_corr_65: -0.17749819555113508 + sys_corr_66: -0.2571045299402765 + sys_corr_67: -2.5735680708408695 + sys_corr_68: -0.09095579312491547 + sys_corr_69: 0.7493446526482508 + sys_corr_70: -1.1797154351428023 + sys_corr_71: -1.6415673627663379 + sys_corr_72: 0.6761394087319644 + sys_corr_73: -0.19033204597304762 + sys_corr_74: 0.854241899884532 + sys_corr_75: -0.932282553999811 + sys_corr_76: -1.0996864382207598 + sys_corr_77: 0.641652917252663 + sys_corr_78: 0.3444620964673235 + sys_corr_79: 0.05232957305182364 + sys_corr_80: -0.7733912114791216 + sys_corr_81: -0.5803560615858957 + sys_corr_82: 0.31367649532155367 + sys_corr_83: 1.6109921628732695 + sys_corr_84: -0.03631291187436649 + sys_corr_85: 0.8842188219698398 + sys_corr_86: 1.5270355808764875 + sys_corr_87: 0.38148842460046006 + sys_corr_88: -3.5663721351367075 + sys_corr_89: 0.6795292587557227 + sys_corr_90: -1.6064644530976235 + sys_corr_91: -0.6555404677486795 + sys_corr_92: 0.3936669680896034 + sys_corr_93: -0.07436395903221958 + sys_corr_94: -0.40142234598090554 + sys_corr_95: -0.44270705613751854 + sys_corr_96: -0.00830977307502281 + sys_corr_97: -0.18795339275665204 + sys_corr_98: -0.1135272106344768 + sys_corr_99: -0.22717032680264504 + sys_corr_100: 0.20261216675675284 + sys_corr_101: 0.251985448908384 + sys_corr_102: -0.3403384766071158 + sys_corr_103: 0.09522865010183953 + sys_corr_104: 0.4070589702852885 + sys_corr_105: -0.01744563523804769 + sys_corr_106: -0.026042742095087047 + sys_corr_107: -0.2675460819432257 + sys_corr_108: 0.5514907918896181 + sys_corr_109: -0.1849463665019556 + sys_corr_110: 0.12770134430072622 + sys_corr_111: 0.015370075421835128 + sys_corr_112: 0.5294475786595804 + sys_corr_113: 0.044380959450581375 + sys_corr_114: 0.002679720888097822 + sys_corr_115: -1.2997854464608691 + sys_corr_116: 0.09896102558666163 + sys_corr_117: -0.001337940002192345 + sys_corr_118: -0.13977659469762926 + sys_corr_119: -0.0023128358100686594 + sys_corr_120: -0.00021276758891800843 + sys_corr_121: 0.004332918445741029 + sys_corr_122: 0.013464594276677185 + sys_corr_123: -0.00672700786487906 + sys_corr_124: 0.09189764054178634 + sys_corr_125: -0.008605992870531941 + sys_corr_126: 0.0021586829952937947 + sys_corr_127: 0.06421894367831522 + sys_corr_128: -0.04821879441151111 + sys_corr_129: 1.7270341262700128 + sys_corr_130: -0.028800562266877484 + sys_corr_131: 0.005225200164407747 + sys_corr_132: 0.07598790340946918 stat: 0.0 luminosity: 2338.925446 - sys_corr_1: -653.7111320113015 - sys_corr_2: 266.2418446083588 - sys_corr_3: -1944.7864591746709 - sys_corr_4: -841.7290637093486 - sys_corr_5: -1120.161770602226 - sys_corr_6: -259.7327903526374 - sys_corr_7: 143.9188466953692 - sys_corr_8: 123.65741788811795 - sys_corr_9: 36.50470696113612 - sys_corr_10: 56.22307225190358 - sys_corr_11: 17.568272304787946 - sys_corr_12: -140.09390009642433 - sys_corr_13: -153.67449378207573 - sys_corr_14: -47.12282976981434 - sys_corr_15: 66.46975177367348 - sys_corr_16: -63.41734227927222 - sys_corr_17: 63.08605078618919 - sys_corr_18: 53.41160957150996 - sys_corr_19: -138.774320084703 - sys_corr_20: -259.08109041077137 - sys_corr_21: -125.26253445948353 - sys_corr_22: -52.04206977020476 - sys_corr_23: 291.8309373569935 - sys_corr_24: 27.142869323147625 - sys_corr_25: 470.4578005194998 - sys_corr_26: -343.04682221189046 - sys_corr_27: -228.7020745588022 - sys_corr_28: -65.60752089774833 - sys_corr_29: -26.354208563730097 - sys_corr_30: 7.261443286216374 - sys_corr_31: 12.637192897972628 - sys_corr_32: -4.760264682193935 - sys_corr_33: -0.18820931450500725 - sys_corr_34: -0.7597988763024858 - sys_corr_35: -0.008682147074341118 - sys_corr_36: -0.1544380130714178 - sys_corr_37: 0.9414118491908398 - sys_corr_38: -1.0432289627499505 - sys_corr_39: -1.2714701706374933 - sys_corr_40: -0.25945512334054505 - sys_corr_41: -0.5325357864297704 - sys_corr_42: -1.3388625323115377 - sys_corr_43: 1.9070770555934717 - sys_corr_44: 0.2444207667723549 - sys_corr_45: -0.03454351009863267 - sys_corr_46: 1.4184937284917905 - sys_corr_47: 1.4665138692827049 - sys_corr_48: -0.0481487555772548 - sys_corr_49: 3.4561098872277025 - sys_corr_50: 1.3371472507771862 - sys_corr_51: -0.34378532009658114 - sys_corr_52: -1.0414367169690308 - sys_corr_53: -2.066640508514266 - sys_corr_54: 0.34640039639280823 - sys_corr_55: -2.673676903142471 - sys_corr_56: 0.6909492135501579 - sys_corr_57: 0.39313151203543995 - sys_corr_58: -0.5467376033147114 - sys_corr_59: 2.1784765076075296 - sys_corr_60: 0.22820763582957085 - sys_corr_61: 0.8121418918634541 - sys_corr_62: 0.43025434665225687 - sys_corr_63: 0.660155202217054 - sys_corr_64: -1.056998216277007 - sys_corr_65: 0.03960655760432523 - sys_corr_66: 0.5595807082543853 - sys_corr_67: 0.4638389181044279 - sys_corr_68: 1.4283679828885651 - sys_corr_69: 1.0630340370770408 - sys_corr_70: 0.4651640948921673 - sys_corr_71: -0.7271606812065989 - sys_corr_72: -1.9324341946256798 - sys_corr_73: 0.237347996135013 - sys_corr_74: 0.3990600276153943 - sys_corr_75: 0.08986862024872291 - sys_corr_76: 0.3368837358707407 - sys_corr_77: -0.23210585382777874 - sys_corr_78: -0.03065974827470082 - sys_corr_79: -0.041445378334606625 - sys_corr_80: 0.12913868849380267 - sys_corr_81: -0.5452519210638566 - sys_corr_82: -0.14010865844165238 - sys_corr_83: 1.6148632475942157 - sys_corr_84: -0.47265352428699564 - sys_corr_85: -0.15753345367674465 - sys_corr_86: 0.8932151042742855 - sys_corr_87: -0.83654949085452 - sys_corr_88: 2.7289636451594337 - sys_corr_89: -1.1173237808582914 - sys_corr_90: 0.44757608327665643 - sys_corr_91: -0.8669324793494357 - sys_corr_92: -0.33710443240771965 - sys_corr_93: -0.04713975689018999 - sys_corr_94: -0.47476029620552074 - sys_corr_95: -0.806851888589038 - sys_corr_96: 0.005524178619263246 - sys_corr_97: 0.12398964140580243 - sys_corr_98: -0.14135108233669813 - sys_corr_99: 0.14497606140798194 - sys_corr_100: -0.4851957428050978 - sys_corr_101: 0.21604119828504792 - sys_corr_102: -0.28045242619550714 - sys_corr_103: 0.3028895792357603 - sys_corr_104: 0.11434561744748475 - sys_corr_105: 0.017685612125493057 - sys_corr_106: 0.3269063097035233 - sys_corr_107: -0.057838574246684996 - sys_corr_108: 0.7452150523699966 - sys_corr_109: -0.45585893505744607 - sys_corr_110: -0.8518952505608014 - sys_corr_111: -0.07636124031189505 - sys_corr_112: 0.13458045666553067 - sys_corr_113: -0.4377706781009744 - sys_corr_114: -0.0006102941556275696 - sys_corr_115: 0.7615476137133345 - sys_corr_116: 0.07860924415013967 - sys_corr_117: 0.0012895021678888366 - sys_corr_118: 1.1896590026776726 - sys_corr_119: 0.00024406140822617902 - sys_corr_120: -0.017159675407661563 - sys_corr_121: 0.006571752938717766 - sys_corr_122: 0.0063352037416743645 - sys_corr_123: -0.007136155188307485 - sys_corr_124: 0.016369869389755373 - sys_corr_125: 0.0004213178926093543 - sys_corr_126: 0.004512405329498981 - sys_corr_127: -0.09541313766339123 - sys_corr_128: -0.18253098029174672 - sys_corr_129: -0.29094191299731886 - sys_corr_130: 0.005157700700729128 - sys_corr_131: 0.033750099074355513 - sys_corr_132: 0.03833568070033656 + sys_corr_2: 266.2418446083594 + sys_corr_3: -1944.7864591746725 + sys_corr_4: -841.7290637093532 + sys_corr_5: -1120.161770602225 + sys_corr_6: -259.7327903526384 + sys_corr_7: 143.91884669536637 + sys_corr_8: 123.65741788812153 + sys_corr_9: 36.504706961138496 + sys_corr_10: 56.223072251904874 + sys_corr_11: 17.56827230477398 + sys_corr_12: -140.09390009642576 + sys_corr_13: 153.6744937820786 + sys_corr_14: 47.122829769812284 + sys_corr_15: -66.46975177367095 + sys_corr_16: 63.4173422792778 + sys_corr_17: 63.086050786189084 + sys_corr_18: -53.41160957150756 + sys_corr_19: -138.77432008469847 + sys_corr_20: -259.08109041077125 + sys_corr_21: -125.26253445947988 + sys_corr_22: -52.042069770208414 + sys_corr_23: 291.83093735699316 + sys_corr_24: 27.14286932313857 + sys_corr_25: 470.4578005195052 + sys_corr_26: -343.0468222118861 + sys_corr_27: -228.70207455878528 + sys_corr_28: -65.60752089775012 + sys_corr_29: -26.35420856373096 + sys_corr_30: 7.2614432862155045 + sys_corr_31: 12.637192897973655 + sys_corr_32: 4.760264682195682 + sys_corr_33: 0.18820931450247771 + sys_corr_34: -0.7597988763027268 + sys_corr_35: -0.00868214707650484 + sys_corr_36: -0.15443801307214441 + sys_corr_37: -0.9414118491904887 + sys_corr_38: 1.0432289627484095 + sys_corr_39: 1.2714701706383174 + sys_corr_40: 0.2594551233402625 + sys_corr_41: -0.53253578642949 + sys_corr_42: 1.3388625323117918 + sys_corr_43: 1.9070770555937948 + sys_corr_44: 0.2444207667729573 + sys_corr_45: 0.03454351009760453 + sys_corr_46: -1.418493728492215 + sys_corr_47: -1.4665138692825415 + sys_corr_48: 0.04814875557780659 + sys_corr_49: -3.4561098872280778 + sys_corr_50: 1.3371472507770952 + sys_corr_51: -0.34378532009720997 + sys_corr_52: -1.041436716970063 + sys_corr_53: 2.0666405085157837 + sys_corr_54: -0.3464003963935354 + sys_corr_55: 2.6736769031424013 + sys_corr_56: -0.6909492135500994 + sys_corr_57: 0.3931315120350559 + sys_corr_58: 0.546737603316126 + sys_corr_59: 2.1784765076072916 + sys_corr_60: -0.22820763582897405 + sys_corr_61: -0.8121418918629633 + sys_corr_62: -0.43025434665198453 + sys_corr_63: 0.6601552022168098 + sys_corr_64: -1.0569982162771199 + sys_corr_65: 0.03960655760333978 + sys_corr_66: -0.5595807082551112 + sys_corr_67: 0.4638389181046661 + sys_corr_68: -1.4283679828888243 + sys_corr_69: 1.0630340370772113 + sys_corr_70: -0.46516409489272376 + sys_corr_71: -0.7271606812066405 + sys_corr_72: 1.9324341946255055 + sys_corr_73: -0.23734799613471158 + sys_corr_74: 0.3990600276157226 + sys_corr_75: 0.0898686202478459 + sys_corr_76: 0.3368837358710272 + sys_corr_77: 0.23210585382818083 + sys_corr_78: -0.12913868849371263 + sys_corr_79: -0.030659748274760038 + sys_corr_80: -0.041445378334819274 + sys_corr_81: 0.5452519210636771 + sys_corr_82: 0.14010865844172032 + sys_corr_83: 1.6148632475942 + sys_corr_84: 0.4726535242870591 + sys_corr_85: -0.15753345367664473 + sys_corr_86: -0.8932151042711293 + sys_corr_87: 0.8365494908545479 + sys_corr_88: 2.7289636451605856 + sys_corr_89: 0.44757608327666254 + sys_corr_90: -1.1173237808582854 + sys_corr_91: -0.8669324793494568 + sys_corr_92: 0.33710443240790117 + sys_corr_93: -0.04713975689019983 + sys_corr_94: -0.4747602962054916 + sys_corr_95: -0.8068518885889456 + sys_corr_96: -0.005524178619238797 + sys_corr_97: 0.12398964140571557 + sys_corr_98: 0.14135108233668917 + sys_corr_99: 0.1449760614079304 + sys_corr_100: 0.21604119828494436 + sys_corr_101: 0.28045242619520333 + sys_corr_102: 0.3028895792351123 + sys_corr_103: -0.11434561744740608 + sys_corr_104: -0.017685612125369527 + sys_corr_105: 0.48519574280505573 + sys_corr_106: 0.32690630970341555 + sys_corr_107: 0.7452150523699532 + sys_corr_108: -0.45585893505750347 + sys_corr_109: 0.8518952505608343 + sys_corr_110: 0.05783857424663734 + sys_corr_111: 0.07636124031195435 + sys_corr_112: 0.13458045666553617 + sys_corr_113: 0.4377706781009813 + sys_corr_114: -0.0006102941556251563 + sys_corr_115: 0.7615476137133635 + sys_corr_116: -0.07860924415006804 + sys_corr_117: -0.0012895021678535417 + sys_corr_118: -1.1896590026776943 + sys_corr_119: -0.00024406140822408047 + sys_corr_120: 0.017159675407594926 + sys_corr_121: -0.006571752938713672 + sys_corr_122: -0.007136155188318941 + sys_corr_123: 0.006335203741666114 + sys_corr_124: 0.01636986938973735 + sys_corr_125: 0.00042131789262279983 + sys_corr_126: -0.0045124053295026905 + sys_corr_127: -0.0954131376633654 + sys_corr_128: -0.18253098029172315 + sys_corr_129: -0.2909419129973213 + sys_corr_130: 0.0051577007007259975 + sys_corr_131: -0.03375009907433 + sys_corr_132: 0.038335680700346556 stat: 0.0 luminosity: 1806.3171280000001 -- sys_corr_1: -755.213386997695 - sys_corr_2: 102.69073047556434 - sys_corr_3: -1625.5444490488826 - sys_corr_4: -782.9868058640009 - sys_corr_5: -1143.9864383788572 - sys_corr_6: -286.48674621220187 - sys_corr_7: 195.05318468035546 - sys_corr_8: 149.05361585977354 - sys_corr_9: 35.23807786971121 - sys_corr_10: 17.991980979532666 - sys_corr_11: 4.464602511160409 - sys_corr_12: -145.88861179287161 - sys_corr_13: -232.83417636971578 - sys_corr_14: -25.02147895165797 - sys_corr_15: 62.50037259538157 - sys_corr_16: -104.35089614104567 - sys_corr_17: 106.87852291091131 - sys_corr_18: 55.40693215378334 - sys_corr_19: -137.01037228531797 - sys_corr_20: -219.31840555516294 - sys_corr_21: -99.7721479954725 - sys_corr_22: -36.12803793818308 - sys_corr_23: 204.23640913512978 - sys_corr_24: -69.36964742975997 - sys_corr_25: -46.60949009384982 - sys_corr_26: 175.68047331742167 - sys_corr_27: 276.3367237676796 - sys_corr_28: 317.56797208712146 - sys_corr_29: 252.2289306815817 - sys_corr_30: 35.333280666104045 - sys_corr_31: 49.598645604205345 - sys_corr_32: 3.227086628647464 - sys_corr_33: -4.912315501542999 - sys_corr_34: -2.8986730105093566 - sys_corr_35: -7.549234399565038 - sys_corr_36: -7.357884195651174 - sys_corr_37: 3.334857616909455 - sys_corr_38: -4.510949703953962 - sys_corr_39: -0.14004456635540516 - sys_corr_40: 0.9594638192126409 - sys_corr_41: 1.7099935262002175 - sys_corr_42: 2.7805513460494806 - sys_corr_43: -1.987395159408662 - sys_corr_44: 10.193887174750735 - sys_corr_45: -1.1761816034613353 - sys_corr_46: 6.5507059865268165 - sys_corr_47: 13.96240408664587 - sys_corr_48: -29.2648701092663 - sys_corr_49: 11.774971066144603 - sys_corr_50: -20.89543075355789 - sys_corr_51: 28.649756213121215 - sys_corr_52: -15.625462283765621 - sys_corr_53: -0.8771163886071579 - sys_corr_54: -10.638877591182476 - sys_corr_55: 9.917446470393266 - sys_corr_56: 7.1186984464022665 - sys_corr_57: -1.3825434490762207 - sys_corr_58: 1.7559944945230748 - sys_corr_59: -2.4102962003979087 - sys_corr_60: -0.5018084775348304 - sys_corr_61: -1.2855417254788644 - sys_corr_62: -0.4436121262258376 - sys_corr_63: 1.3097490834921843 - sys_corr_64: 1.006847001419344 - sys_corr_65: 1.3580747745254136 - sys_corr_66: -0.41132081620524413 - sys_corr_67: -0.37478834554132356 - sys_corr_68: 2.822076818236244 - sys_corr_69: 0.7908469057058141 - sys_corr_70: 0.4528143176990985 - sys_corr_71: -0.2840436729527179 - sys_corr_72: 0.7390655917390503 - sys_corr_73: 0.16830191816029122 - sys_corr_74: 0.02567707144019764 - sys_corr_75: 1.6559516457389234 - sys_corr_76: -1.7915019322652381 - sys_corr_77: 0.7661650764144924 - sys_corr_78: 0.28972564053801186 - sys_corr_79: -0.17965590438247872 - sys_corr_80: -0.5914987353602038 - sys_corr_81: 0.062010020925720534 - sys_corr_82: 0.22227880202971295 - sys_corr_83: -0.1953927840212758 - sys_corr_84: -1.4805491843149339 - sys_corr_85: -1.1918465518713253 - sys_corr_86: -1.4417308186098552 - sys_corr_87: 0.15393583445720016 - sys_corr_88: 2.600597661490299 - sys_corr_89: -0.8091889873988934 - sys_corr_90: -0.000652683768728477 - sys_corr_91: -1.5350467834544554 - sys_corr_92: 2.400856679845737 - sys_corr_93: 0.03965488472726968 - sys_corr_94: 0.45855537509300964 - sys_corr_95: 1.8286707450269648 - sys_corr_96: 0.2235635658948378 - sys_corr_97: 1.662710557573356 - sys_corr_98: -0.7234771950242745 - sys_corr_99: 0.7144307809789618 - sys_corr_100: 0.30016316043122887 - sys_corr_101: -0.7635279179610884 - sys_corr_102: 1.1468435171458422 - sys_corr_103: 0.09654698997611695 - sys_corr_104: 0.48008578706331795 - sys_corr_105: 1.0726580130495276 - sys_corr_106: 0.08597249954588358 - sys_corr_107: -0.04447550130724584 - sys_corr_108: 0.5774525795735435 - sys_corr_109: -0.5982389762512088 - sys_corr_110: 0.7922505621336731 - sys_corr_111: 0.9074241334035272 - sys_corr_112: -0.44686798270691436 - sys_corr_113: -0.2073292730864159 - sys_corr_114: -0.002690168809610437 - sys_corr_115: 0.016912528722797877 - sys_corr_116: -0.0006856413612809228 - sys_corr_117: -0.007633390105729405 - sys_corr_118: -1.1162459449489424 - sys_corr_119: 0.0016956076474888206 - sys_corr_120: 0.020480002034596847 - sys_corr_121: 0.00203985155074773 - sys_corr_122: 0.06832850964311722 - sys_corr_123: 0.12657479317690382 - sys_corr_124: -0.018520800864513007 - sys_corr_125: -0.058480444307876064 - sys_corr_126: -0.08383837831173871 - sys_corr_127: 0.08423457794379328 - sys_corr_128: 0.13930593722062304 - sys_corr_129: 0.08114192888732373 - sys_corr_130: 0.09884845531996987 - sys_corr_131: -0.019939165706403316 - sys_corr_132: -0.8527629017321178 +- sys_corr_1: -755.2133869976954 + sys_corr_2: 102.69073047556422 + sys_corr_3: -1625.5444490488817 + sys_corr_4: -782.9868058640023 + sys_corr_5: -1143.9864383788554 + sys_corr_6: -286.48674621220283 + sys_corr_7: 195.0531846803518 + sys_corr_8: 149.05361585977897 + sys_corr_9: 35.23807786971394 + sys_corr_10: 17.99198097953495 + sys_corr_11: 4.464602511144418 + sys_corr_12: -145.88861179287463 + sys_corr_13: 232.83417636971762 + sys_corr_14: 25.021478951655023 + sys_corr_15: -62.500372595379154 + sys_corr_16: 104.3508961410528 + sys_corr_17: 106.87852291091022 + sys_corr_18: -55.40693215378 + sys_corr_19: -137.0103722853144 + sys_corr_20: -219.31840555516226 + sys_corr_21: -99.77214799546726 + sys_corr_22: -36.128037938186296 + sys_corr_23: 204.23640913512983 + sys_corr_24: -69.36964742975633 + sys_corr_25: -46.60949009385647 + sys_corr_26: 175.68047331740647 + sys_corr_27: 276.33672376767527 + sys_corr_28: 317.5679720871193 + sys_corr_29: 252.228930681591 + sys_corr_30: 35.33328066610364 + sys_corr_31: 49.598645604204854 + sys_corr_32: -3.2270866286511444 + sys_corr_33: 4.91231550154021 + sys_corr_34: -2.8986730105078067 + sys_corr_35: -7.54923439956231 + sys_corr_36: -7.357884195650226 + sys_corr_37: -3.334857616908836 + sys_corr_38: 4.510949703955019 + sys_corr_39: 0.14004456635599508 + sys_corr_40: -0.9594638192123189 + sys_corr_41: 1.7099935261995287 + sys_corr_42: -2.7805513460513 + sys_corr_43: -1.987395159409121 + sys_corr_44: 10.193887174753156 + sys_corr_45: 1.1761816034580388 + sys_corr_46: -6.550705986526216 + sys_corr_47: -13.962404086645746 + sys_corr_48: 29.26487010926597 + sys_corr_49: -11.774971066141136 + sys_corr_50: -20.895430753558706 + sys_corr_51: 28.64975621312137 + sys_corr_52: -15.62546228376545 + sys_corr_53: 0.8771163886103632 + sys_corr_54: 10.63887759119023 + sys_corr_55: -9.917446470394566 + sys_corr_56: -7.118698446404909 + sys_corr_57: -1.3825434490717372 + sys_corr_58: -1.7559944945241033 + sys_corr_59: -2.410296200397204 + sys_corr_60: 0.5018084775329799 + sys_corr_61: 1.285541725475254 + sys_corr_62: 0.44361212622822943 + sys_corr_63: 1.3097490834932994 + sys_corr_64: 1.006847001420594 + sys_corr_65: 1.3580747745259685 + sys_corr_66: 0.41132081620424543 + sys_corr_67: -0.37478834553898405 + sys_corr_68: -2.8220768182365266 + sys_corr_69: 0.7908469057069658 + sys_corr_70: -0.4528143177006363 + sys_corr_71: -0.2840436729518461 + sys_corr_72: -0.7390655917395563 + sys_corr_73: -0.16830191816029838 + sys_corr_74: 0.025677071440906075 + sys_corr_75: 1.6559516457394865 + sys_corr_76: -1.7915019322647938 + sys_corr_77: -0.7661650764147442 + sys_corr_78: 0.5914987353602796 + sys_corr_79: 0.28972564053825167 + sys_corr_80: -0.17965590438214715 + sys_corr_81: -0.06201002092611748 + sys_corr_82: -0.2222788020294066 + sys_corr_83: -0.1953927840212655 + sys_corr_84: 1.4805491843149763 + sys_corr_85: -1.1918465518710435 + sys_corr_86: 1.4417308186165194 + sys_corr_87: -0.15393583445719455 + sys_corr_88: 2.6005976614897963 + sys_corr_89: -0.0006526837687360629 + sys_corr_90: -0.8091889873989976 + sys_corr_91: -1.5350467834543642 + sys_corr_92: -2.4008566798460946 + sys_corr_93: 0.03965488472731036 + sys_corr_94: 0.4585553750929632 + sys_corr_95: 1.8286707450266617 + sys_corr_96: -0.2235635658948023 + sys_corr_97: 1.6627105575735501 + sys_corr_98: 0.7234771950243188 + sys_corr_99: 0.7144307809790229 + sys_corr_100: -0.7635279179610398 + sys_corr_101: -1.146843517145733 + sys_corr_102: 0.09654698997565853 + sys_corr_103: -0.4800857870633633 + sys_corr_104: -1.0726580130496406 + sys_corr_105: -0.30016316043109564 + sys_corr_106: 0.08597249954600229 + sys_corr_107: 0.5774525795735735 + sys_corr_108: -0.5982389762511646 + sys_corr_109: -0.7922505621337151 + sys_corr_110: 0.04447550130728284 + sys_corr_111: -0.9074241334035538 + sys_corr_112: -0.44686798270691114 + sys_corr_113: 0.20732927308641916 + sys_corr_114: -0.00269016880961245 + sys_corr_115: 0.016912528722785227 + sys_corr_116: 0.0006856413612942765 + sys_corr_117: 0.007633390105714668 + sys_corr_118: 1.11624594494896 + sys_corr_119: -0.0016956076474847737 + sys_corr_120: -0.020480002034533422 + sys_corr_121: -0.0020398515507375403 + sys_corr_122: 0.12657479317691053 + sys_corr_123: 0.06832850964311828 + sys_corr_124: -0.018520800864513725 + sys_corr_125: -0.058480444307884086 + sys_corr_126: 0.08383837831171563 + sys_corr_127: 0.08423457794375877 + sys_corr_128: 0.1393059372206636 + sys_corr_129: 0.0811419288873247 + sys_corr_130: 0.09884845531995667 + sys_corr_131: 0.01993916570630555 + sys_corr_132: -0.8527629017321311 stat: 0.0 luminosity: 1255.5539700000002 -- sys_corr_1: -607.403190853724 - sys_corr_2: -63.28313627288394 - sys_corr_3: -1019.8192299679081 - sys_corr_4: -587.9799405436 - sys_corr_5: -1087.7413040919892 - sys_corr_6: -259.0404858877355 - sys_corr_7: 247.27102262016882 - sys_corr_8: 133.96612346318622 - sys_corr_9: 38.913300793186266 - sys_corr_10: 4.767848450487455 - sys_corr_11: -13.329036287158866 - sys_corr_12: -170.1890079011063 - sys_corr_13: -227.9496656151101 - sys_corr_14: -37.605656761566514 - sys_corr_15: 68.23426618850034 - sys_corr_16: -111.87926536174942 - sys_corr_17: 42.38504473458157 - sys_corr_18: 59.98580620532511 - sys_corr_19: -79.40667840438452 - sys_corr_20: -168.76475267471724 - sys_corr_21: -2.2581998164552624 - sys_corr_22: 101.28154946660506 - sys_corr_23: 117.48010782815764 - sys_corr_24: -162.5451964063212 - sys_corr_25: -136.90983639947922 - sys_corr_26: 106.22287283066935 - sys_corr_27: 348.8301864398342 - sys_corr_28: -312.50183395905816 - sys_corr_29: -231.78764677831148 - sys_corr_30: -101.7011285211876 - sys_corr_31: -61.51590267143912 - sys_corr_32: 3.723938978774889 - sys_corr_33: -4.237229042826306 - sys_corr_34: 5.885760186501229 - sys_corr_35: 11.863769920711496 - sys_corr_36: 15.15092491459705 - sys_corr_37: -3.2270776231683174 - sys_corr_38: 2.204078067163998 - sys_corr_39: -4.222362447301694 - sys_corr_40: -1.2004380973924287 - sys_corr_41: -3.705204295644083 - sys_corr_42: 7.4647744206590145 - sys_corr_43: -2.246867688382224 - sys_corr_44: 14.427533414537033 - sys_corr_45: -2.340914078354991 - sys_corr_46: -5.35665425981509 - sys_corr_47: 9.729414622049884 - sys_corr_48: -23.75942344494197 - sys_corr_49: 7.418069395651581 - sys_corr_50: -29.007458266608634 - sys_corr_51: 13.636341879392031 - sys_corr_52: -12.91224840248636 - sys_corr_53: 5.46126580536193 - sys_corr_54: 0.4942372847472613 - sys_corr_55: 1.4114658051043942 - sys_corr_56: -0.5311115217361846 - sys_corr_57: -1.0003983989364007 - sys_corr_58: 0.383942131593194 - sys_corr_59: 0.40533280109089087 - sys_corr_60: -0.14923248683133247 - sys_corr_61: 1.4861491522337424 - sys_corr_62: 0.6526370293029058 - sys_corr_63: -4.295031934621572 - sys_corr_64: 0.40770072575182265 - sys_corr_65: -0.1597685243923131 - sys_corr_66: -0.3020091494231187 - sys_corr_67: 2.372121278115769 - sys_corr_68: -1.9815218695622914 - sys_corr_69: -2.4306787708867525 - sys_corr_70: -0.4791525306880965 - sys_corr_71: 2.516270985829526 - sys_corr_72: 0.2782111584329586 - sys_corr_73: -1.1315860916952316 - sys_corr_74: -1.0940943027622618 - sys_corr_75: -0.14470073064101865 - sys_corr_76: 0.03056848174315823 - sys_corr_77: -1.3103426462096643 - sys_corr_78: -0.14526566919036946 - sys_corr_79: 1.4451441232009448 - sys_corr_80: 0.7677002974877095 - sys_corr_81: 0.3972119009665881 - sys_corr_82: 0.3646109241755877 - sys_corr_83: -0.9925524252758305 - sys_corr_84: -0.8910489380118429 - sys_corr_85: -0.596106176845568 - sys_corr_86: 0.458136508252443 - sys_corr_87: 0.05026875231874219 - sys_corr_88: -0.2482557973572813 - sys_corr_89: 0.9518893440097871 - sys_corr_90: -1.0663261128541148 - sys_corr_91: -0.3068902217976366 - sys_corr_92: 0.24683444278136002 - sys_corr_93: 0.3075322551428004 - sys_corr_94: 0.2737868400430266 - sys_corr_95: -1.590907693924066 - sys_corr_96: -0.10482445544683974 - sys_corr_97: -1.8561038131644043 - sys_corr_98: 1.0852881858382981 - sys_corr_99: -1.0365628442745876 - sys_corr_100: -2.19143164998867 - sys_corr_101: 1.4947999724065058 - sys_corr_102: -2.392412430894257 - sys_corr_103: 0.31466231882986295 - sys_corr_104: -0.9246041009777127 - sys_corr_105: -1.4179898018553498 - sys_corr_106: 1.5938793288383715 - sys_corr_107: 0.5713937264623524 - sys_corr_108: 1.5794131654493992 - sys_corr_109: 0.023787755993032022 - sys_corr_110: -0.5146171156683943 - sys_corr_111: 0.3698177113441538 - sys_corr_112: -0.3286542136584873 - sys_corr_113: 0.2580845494061921 - sys_corr_114: -0.005994207269346038 - sys_corr_115: 0.3139520466717738 - sys_corr_116: 0.004325055935543681 - sys_corr_117: -0.027909454927085835 - sys_corr_118: 0.09660556533569682 - sys_corr_119: 0.0037883980742532707 - sys_corr_120: 0.011682981811501356 - sys_corr_121: 0.02713037563538515 - sys_corr_122: -0.07653308138923706 - sys_corr_123: -0.16937039066552273 - sys_corr_124: 0.01283187125816476 - sys_corr_125: 0.053591371231348564 - sys_corr_126: -0.004191471292274147 - sys_corr_127: -0.07415067284097687 - sys_corr_128: -0.6300992989091799 - sys_corr_129: -0.4387837495233344 - sys_corr_130: 0.13881476408605425 - sys_corr_131: 0.019973202262759622 - sys_corr_132: 0.9954363100879432 +- sys_corr_1: -607.4031908537237 + sys_corr_2: -63.28313627288436 + sys_corr_3: -1019.8192299679083 + sys_corr_4: -587.9799405436032 + sys_corr_5: -1087.7413040919887 + sys_corr_6: -259.0404858877358 + sys_corr_7: 247.27102262016555 + sys_corr_8: 133.96612346319327 + sys_corr_9: 38.91330079319037 + sys_corr_10: 4.767848450491068 + sys_corr_11: -13.329036287177487 + sys_corr_12: -170.18900790110717 + sys_corr_13: 227.949665615111 + sys_corr_14: 37.60565676156379 + sys_corr_15: -68.23426618849864 + sys_corr_16: 111.87926536175544 + sys_corr_17: 42.38504473458111 + sys_corr_18: -59.98580620532282 + sys_corr_19: -79.40667840438154 + sys_corr_20: -168.76475267471753 + sys_corr_21: -2.2581998164527297 + sys_corr_22: 101.28154946660716 + sys_corr_23: 117.48010782815801 + sys_corr_24: -162.54519640631548 + sys_corr_25: -136.90983639948416 + sys_corr_26: 106.22287283064905 + sys_corr_27: 348.830186439828 + sys_corr_28: -312.5018339590577 + sys_corr_29: -231.7876467783194 + sys_corr_30: -101.70112852118456 + sys_corr_31: -61.515902671440564 + sys_corr_32: -3.723938978774166 + sys_corr_33: 4.2372290428332455 + sys_corr_34: 5.885760186495606 + sys_corr_35: 11.863769920706584 + sys_corr_36: 15.150924914596807 + sys_corr_37: 3.227077623166972 + sys_corr_38: -2.2040780671628686 + sys_corr_39: 4.222362447302075 + sys_corr_40: 1.2004380973936641 + sys_corr_41: -3.705204295645023 + sys_corr_42: -7.464774420660674 + sys_corr_43: -2.246867688386039 + sys_corr_44: 14.427533414536166 + sys_corr_45: 2.340914078354644 + sys_corr_46: 5.356654259814615 + sys_corr_47: -9.729414622048349 + sys_corr_48: 23.75942344493996 + sys_corr_49: -7.418069395649064 + sys_corr_50: -29.007458266612282 + sys_corr_51: 13.636341879390313 + sys_corr_52: -12.912248402487622 + sys_corr_53: -5.461265805361213 + sys_corr_54: -0.4942372847457907 + sys_corr_55: -1.4114658051046227 + sys_corr_56: 0.5311115217353586 + sys_corr_57: -1.0003983989344358 + sys_corr_58: -0.38394213159135787 + sys_corr_59: 0.40533280109214115 + sys_corr_60: 0.1492324868304696 + sys_corr_61: -1.4861491522328496 + sys_corr_62: -0.652637029302407 + sys_corr_63: -4.2950319346221715 + sys_corr_64: 0.40770072575117033 + sys_corr_65: -0.15976852439274128 + sys_corr_66: 0.3020091494238496 + sys_corr_67: 2.3721212781157273 + sys_corr_68: 1.9815218695605452 + sys_corr_69: -2.4306787708865545 + sys_corr_70: 0.4791525306890546 + sys_corr_71: 2.5162709858295673 + sys_corr_72: -0.2782111584326227 + sys_corr_73: 1.1315860916955174 + sys_corr_74: -1.0940943027631103 + sys_corr_75: -0.14470073064139072 + sys_corr_76: 0.03056848174299233 + sys_corr_77: 1.3103426462101049 + sys_corr_78: -0.767700297487768 + sys_corr_79: -0.1452656691903395 + sys_corr_80: 1.4451441232006463 + sys_corr_81: -0.39721190096631576 + sys_corr_82: -0.3646109241756651 + sys_corr_83: -0.9925524252759912 + sys_corr_84: 0.8910489380119005 + sys_corr_85: -0.5961061768454878 + sys_corr_86: -0.4581365082526326 + sys_corr_87: -0.05026875231856807 + sys_corr_88: -0.2482557973569103 + sys_corr_89: -1.0663261128540453 + sys_corr_90: 0.9518893440098543 + sys_corr_91: -0.30689022179762937 + sys_corr_92: -0.2468344427812121 + sys_corr_93: 0.307532255142796 + sys_corr_94: 0.273786840043358 + sys_corr_95: -1.5909076939241236 + sys_corr_96: 0.10482445544672196 + sys_corr_97: -1.856103813164388 + sys_corr_98: -1.0852881858383072 + sys_corr_99: -1.0365628442745594 + sys_corr_100: 1.4947999724066325 + sys_corr_101: 2.39241243089444 + sys_corr_102: 0.3146623188321893 + sys_corr_103: 0.9246041009776045 + sys_corr_104: 1.417989801854696 + sys_corr_105: 2.1914316499889934 + sys_corr_106: 1.593879328838293 + sys_corr_107: 1.579413165449373 + sys_corr_108: 0.023787755992986968 + sys_corr_109: 0.5146171156683776 + sys_corr_110: -0.571393726462288 + sys_corr_111: -0.3698177113440699 + sys_corr_112: -0.3286542136584849 + sys_corr_113: -0.25808454940619685 + sys_corr_114: -0.005994207269343428 + sys_corr_115: 0.3139520466717766 + sys_corr_116: -0.004325055935505929 + sys_corr_117: 0.02790945492707552 + sys_corr_118: -0.09660556533569989 + sys_corr_119: -0.0037883980742523925 + sys_corr_120: -0.011682981811510474 + sys_corr_121: -0.02713037563537955 + sys_corr_122: -0.1693703906655214 + sys_corr_123: -0.07653308138920457 + sys_corr_124: 0.012831871258140667 + sys_corr_125: 0.05359137123134718 + sys_corr_126: 0.004191471292255263 + sys_corr_127: -0.07415067284107019 + sys_corr_128: -0.6300992989091094 + sys_corr_129: -0.43878374952333926 + sys_corr_130: 0.13881476408606191 + sys_corr_131: -0.019973202262670887 + sys_corr_132: 0.9954363100879424 stat: 0.0 luminosity: 735.9526680000001 -- sys_corr_1: -235.3054536367594 - sys_corr_2: -34.01470246070927 - sys_corr_3: -353.7598733668224 - sys_corr_4: -208.79751243754592 - sys_corr_5: -403.26737497869505 - sys_corr_6: -92.2901894661802 - sys_corr_7: 101.21713190826729 - sys_corr_8: 53.56656733738235 - sys_corr_9: 13.147279313041157 - sys_corr_10: -3.5901207478734514 - sys_corr_11: -10.50444185469955 - sys_corr_12: -57.712482712616435 - sys_corr_13: -77.29261847108128 - sys_corr_14: -19.41650217636816 - sys_corr_15: 32.09156678459411 - sys_corr_16: -40.404736782896265 - sys_corr_17: 14.303984444595931 - sys_corr_18: 20.791527083527974 - sys_corr_19: 0.5012641075107488 - sys_corr_20: -31.18787857309904 - sys_corr_21: 3.1997791997717324 - sys_corr_22: 35.8161200150389 - sys_corr_23: 7.313118341152464 - sys_corr_24: -48.24609141453486 - sys_corr_25: -4.607879682847592 - sys_corr_26: 32.53070150735593 - sys_corr_27: 114.51295696888967 - sys_corr_28: -0.8907158840816206 - sys_corr_29: 16.07323563356635 - sys_corr_30: 29.851498882825574 - sys_corr_31: 12.660213480486261 - sys_corr_32: 8.12790733087803 - sys_corr_33: 13.032245583696621 - sys_corr_34: -17.339491782442263 - sys_corr_35: -13.234588348886394 - sys_corr_36: -28.85795745544571 - sys_corr_37: 12.208554423491703 - sys_corr_38: 11.148769962419877 - sys_corr_39: 11.825238085288957 - sys_corr_40: 10.230145431493712 - sys_corr_41: 9.757460763382575 - sys_corr_42: -32.636090887445974 - sys_corr_43: 4.930216387405252 - sys_corr_44: -78.81415723203486 - sys_corr_45: 8.797199005427913 - sys_corr_46: -5.106740635820605 - sys_corr_47: -84.36468275737953 - sys_corr_48: 169.67841923663914 - sys_corr_49: -65.57306045504323 - sys_corr_50: 140.51346333258675 - sys_corr_51: -151.27010973686586 - sys_corr_52: 105.4019607871419 - sys_corr_53: -8.026334680032495 - sys_corr_54: 32.156071513825786 - sys_corr_55: -34.83075506793184 - sys_corr_56: -27.00639793071838 - sys_corr_57: 7.8241392603481295 - sys_corr_58: -4.703305549000075 - sys_corr_59: 0.42224211314038346 - sys_corr_60: 0.35441655694309604 - sys_corr_61: 7.2952931907588905 - sys_corr_62: -1.429534122670437 - sys_corr_63: 1.1334845609091793 - sys_corr_64: -4.015817870146331 - sys_corr_65: -1.8282152302702077 - sys_corr_66: 5.674679167973756 - sys_corr_67: 1.1070437932456605 - sys_corr_68: -7.3172525954238266 - sys_corr_69: 1.9069798032515373 - sys_corr_70: -5.435138849240736 - sys_corr_71: -1.6705521572778195 - sys_corr_72: -4.0492646975780415 - sys_corr_73: -0.2616362770958449 - sys_corr_74: -1.9013764097059767 - sys_corr_75: -2.765762111797738 - sys_corr_76: -1.288292649785576 - sys_corr_77: -1.9579420222975514 - sys_corr_78: -1.288806688085807 - sys_corr_79: 3.3274308282149256 - sys_corr_80: 3.1125256649562227 - sys_corr_81: 2.306599348816282 - sys_corr_82: -2.2458878444849066 - sys_corr_83: -0.16964529383820873 - sys_corr_84: -1.29115277998407 - sys_corr_85: -0.03037941295059287 - sys_corr_86: 1.4974543460290621 - sys_corr_87: -2.430206696746778 - sys_corr_88: -5.68244830481064 - sys_corr_89: 1.810319922019752 - sys_corr_90: 3.4362683758544965 - sys_corr_91: 0.5232460245625157 - sys_corr_92: -3.604302017286855 - sys_corr_93: 0.4685714288281228 - sys_corr_94: 0.9448789569131446 - sys_corr_95: -2.9303935391878912 - sys_corr_96: -0.04087308207556956 - sys_corr_97: -3.250884634615282 - sys_corr_98: 1.4324416228157537 - sys_corr_99: -2.02954581320221 - sys_corr_100: -2.1763757582873855 - sys_corr_101: 2.29385577481871 - sys_corr_102: -3.2028512518940317 - sys_corr_103: -2.756229826929697 - sys_corr_104: -1.9324108854137518 - sys_corr_105: -3.430279315315906 - sys_corr_106: 1.6262057199959878 - sys_corr_107: 1.2681580375841373 - sys_corr_108: 1.5594338913406978 - sys_corr_109: 1.0173551436493213 - sys_corr_110: -0.8445025290109421 - sys_corr_111: -1.0118766561670607 - sys_corr_112: 0.3078049335122439 - sys_corr_113: 0.010334836790909758 - sys_corr_114: -0.00535841058510806 - sys_corr_115: 0.23297128085882754 - sys_corr_116: 0.0077608762375744956 - sys_corr_117: -0.04784028684393146 - sys_corr_118: 0.7127008993246716 - sys_corr_119: -0.004102120203401503 - sys_corr_120: 0.05841316416284997 - sys_corr_121: -0.02067461605745769 - sys_corr_122: -0.2770565001823566 - sys_corr_123: -0.4060888223844593 - sys_corr_124: 0.08541224376590974 - sys_corr_125: 0.22699201738459387 - sys_corr_126: 0.3681137931198788 - sys_corr_127: -0.29718603551534384 - sys_corr_128: 0.5901621320488216 - sys_corr_129: 0.5311452422811015 - sys_corr_130: -0.6280134483078299 - sys_corr_131: -0.10555633621763329 - sys_corr_132: -0.21203547439507822 +- sys_corr_1: -235.30545363675927 + sys_corr_2: -34.01470246070936 + sys_corr_3: -353.75987336682203 + sys_corr_4: -208.79751243754686 + sys_corr_5: -403.2673749786953 + sys_corr_6: -92.29018946618018 + sys_corr_7: 101.21713190826597 + sys_corr_8: 53.56656733738466 + sys_corr_9: 13.147279313042418 + sys_corr_10: -3.590120747872358 + sys_corr_11: -10.5044418547054 + sys_corr_12: -57.712482712616186 + sys_corr_13: 77.29261847108081 + sys_corr_14: 19.416502176367384 + sys_corr_15: -32.09156678459388 + sys_corr_16: 40.40473678289829 + sys_corr_17: 14.303984444595601 + sys_corr_18: -20.791527083527043 + sys_corr_19: 0.5012641075112607 + sys_corr_20: -31.18787857309955 + sys_corr_21: 3.1997791997716734 + sys_corr_22: 35.8161200150391 + sys_corr_23: 7.313118341152444 + sys_corr_24: -48.24609141453415 + sys_corr_25: -4.607879682849445 + sys_corr_26: 32.53070150734877 + sys_corr_27: 114.51295696888832 + sys_corr_28: -0.8907158840837492 + sys_corr_29: 16.073235633567958 + sys_corr_30: 29.851498882822757 + sys_corr_31: 12.660213480485586 + sys_corr_32: -8.12790733088142 + sys_corr_33: -13.032245583698913 + sys_corr_34: -17.3394917824371 + sys_corr_35: -13.234588348882937 + sys_corr_36: -28.857957455442943 + sys_corr_37: -12.20855442349241 + sys_corr_38: -11.148769962417903 + sys_corr_39: -11.825238085295718 + sys_corr_40: -10.230145431497569 + sys_corr_41: 9.757460763386796 + sys_corr_42: 32.63609088745279 + sys_corr_43: 4.930216387418731 + sys_corr_44: -78.81415723204044 + sys_corr_45: -8.797199005414171 + sys_corr_46: 5.106740635819698 + sys_corr_47: 84.36468275737194 + sys_corr_48: -169.67841923663178 + sys_corr_49: 65.57306045502811 + sys_corr_50: 140.51346333260403 + sys_corr_51: -151.27010973686293 + sys_corr_52: 105.4019607871556 + sys_corr_53: 8.026334680012182 + sys_corr_54: -32.1560715138509 + sys_corr_55: 34.830755067936835 + sys_corr_56: 27.006397930728934 + sys_corr_57: 7.82413926032532 + sys_corr_58: 4.703305548993658 + sys_corr_59: 0.42224211313451454 + sys_corr_60: -0.3544165569358296 + sys_corr_61: -7.295293190753624 + sys_corr_62: 1.429534122667088 + sys_corr_63: 1.1334845609101218 + sys_corr_64: -4.015817870147113 + sys_corr_65: -1.82821523027021 + sys_corr_66: -5.674679167970507 + sys_corr_67: 1.1070437932379218 + sys_corr_68: 7.3172525954255425 + sys_corr_69: 1.9069798032494645 + sys_corr_70: 5.435138849242496 + sys_corr_71: -1.670552157279644 + sys_corr_72: 4.049264697578993 + sys_corr_73: 0.2616362770961757 + sys_corr_74: -1.9013764097076984 + sys_corr_75: -2.765762111794656 + sys_corr_76: -1.2882926497862415 + sys_corr_77: 1.9579420222979724 + sys_corr_78: -3.1125256649577646 + sys_corr_79: -1.288806688085245 + sys_corr_80: 3.327430828214145 + sys_corr_81: -2.3065993488148058 + sys_corr_82: 2.245887844484712 + sys_corr_83: -0.16964529383847854 + sys_corr_84: 1.2911527799837177 + sys_corr_85: -0.030379412950968996 + sys_corr_86: -1.4974543460408234 + sys_corr_87: 2.430206696746695 + sys_corr_88: -5.6824483048106345 + sys_corr_89: 3.436268375854682 + sys_corr_90: 1.8103199220199129 + sys_corr_91: 0.5232460245625029 + sys_corr_92: 3.604302017287854 + sys_corr_93: 0.46857142882802016 + sys_corr_94: 0.9448789569132813 + sys_corr_95: -2.930393539187459 + sys_corr_96: 0.04087308207545292 + sys_corr_97: -3.250884634615344 + sys_corr_98: -1.4324416228157737 + sys_corr_99: -2.029545813202179 + sys_corr_100: 2.2938557748192463 + sys_corr_101: 3.202851251895578 + sys_corr_102: -2.756229826924821 + sys_corr_103: 1.9324108854136988 + sys_corr_104: 3.4302793153160245 + sys_corr_105: 2.176375758287973 + sys_corr_106: 1.62620571999616 + sys_corr_107: 1.5594338913406889 + sys_corr_108: 1.0173551436492887 + sys_corr_109: 0.8445025290109994 + sys_corr_110: -1.2681580375841055 + sys_corr_111: 1.0118766561670172 + sys_corr_112: 0.3078049335122275 + sys_corr_113: -0.010334836790895197 + sys_corr_114: -0.005358410585107142 + sys_corr_115: 0.23297128085885058 + sys_corr_116: -0.007760876237567135 + sys_corr_117: 0.0478402868439468 + sys_corr_118: -0.7127008993246734 + sys_corr_119: 0.004102120203386358 + sys_corr_120: -0.05841316416287808 + sys_corr_121: 0.02067461605740249 + sys_corr_122: -0.40608882238442423 + sys_corr_123: -0.27705650018236 + sys_corr_124: 0.08541224376595953 + sys_corr_125: 0.22699201738460856 + sys_corr_126: -0.36811379311972237 + sys_corr_127: -0.2971860355154436 + sys_corr_128: 0.590162132048831 + sys_corr_129: 0.5311452422811201 + sys_corr_130: -0.6280134483077539 + sys_corr_131: 0.10555633621762471 + sys_corr_132: -0.21203547439506265 stat: 0.0 luminosity: 233.73704200000003 -- sys_corr_1: 30.002716089555303 - sys_corr_2: 15.487056470038848 - sys_corr_3: -10.808612809616342 - sys_corr_4: -8.780017801729475 - sys_corr_5: -7.894693727398771 - sys_corr_6: 7.543375527885025 - sys_corr_7: 9.175009031270578 - sys_corr_8: -1.0816595018710067 - sys_corr_9: -18.79025126210624 - sys_corr_10: -2.216632490439533 - sys_corr_11: -4.569620758376597 - sys_corr_12: -8.74631059463793 - sys_corr_13: -3.897510122926035 - sys_corr_14: -2.3834454708596433 - sys_corr_15: -5.081984293294869 - sys_corr_16: -11.536120789752218 - sys_corr_17: -2.4454763126826835 - sys_corr_18: -4.146694071046322 - sys_corr_19: -1.5487753199918395 - sys_corr_20: -0.8491557367635763 - sys_corr_21: -0.48875881882571315 - sys_corr_22: 5.6925544959165135 - sys_corr_23: 2.6297643897600773 - sys_corr_24: -3.3424189295750684 - sys_corr_25: 4.514863063590733 - sys_corr_26: 9.023195972073994 - sys_corr_27: -5.315756389770426 - sys_corr_28: 0.15781765346442403 - sys_corr_29: 5.051522262947834 - sys_corr_30: -0.5318284052204195 - sys_corr_31: 2.2906930875885605 - sys_corr_32: -0.6374764390187205 - sys_corr_33: -0.30431291448633824 - sys_corr_34: -3.0690434932292874 - sys_corr_35: 0.17901913919376017 - sys_corr_36: 0.03336001606330849 - sys_corr_37: 1.754871246364355 - sys_corr_38: 0.7480791799248262 - sys_corr_39: -0.38227059852435225 - sys_corr_40: -0.8086358299301863 - sys_corr_41: -1.078843127720594 - sys_corr_42: -0.3794522933077975 - sys_corr_43: -0.9840299056757266 - sys_corr_44: 1.3280828366062516 - sys_corr_45: -0.5730118250560735 - sys_corr_46: 1.168549858287207 - sys_corr_47: 0.8963615257088032 - sys_corr_48: -2.8655645457792653 - sys_corr_49: 3.887713795230458 - sys_corr_50: 0.49434082383040884 - sys_corr_51: -1.1706026531677958 - sys_corr_52: -1.6086432262354364 - sys_corr_53: 0.6848117689112794 - sys_corr_54: 4.8171299717928955 - sys_corr_55: 2.269267265769757 - sys_corr_56: 1.5304842236443084 - sys_corr_57: 0.0676002211928443 - sys_corr_58: -2.5011327556906395 - sys_corr_59: 2.0546906964024165 - sys_corr_60: 1.1804508077090186 - sys_corr_61: 0.401180225068344 - sys_corr_62: 1.4847802948652853 - sys_corr_63: 0.13030093047011754 - sys_corr_64: 2.358360932034789 - sys_corr_65: 3.8571137549921883 - sys_corr_66: -0.4186326400529202 - sys_corr_67: -1.194400675202785 - sys_corr_68: 0.0001672521001509883 - sys_corr_69: 2.2272496530686463 - sys_corr_70: -2.412736764833236 - sys_corr_71: -0.2011206738334076 - sys_corr_72: 1.354853949626045 - sys_corr_73: 7.469262066648418 - sys_corr_74: -1.7463417107492296 - sys_corr_75: -1.6883704400417197 - sys_corr_76: -2.2389040427968765 - sys_corr_77: 3.3394307992065344 - sys_corr_78: 3.415909471152326 - sys_corr_79: 3.6546311320618243 - sys_corr_80: -2.3840752430906065 - sys_corr_81: -3.3460156170078075 - sys_corr_82: -2.0336373688093516 - sys_corr_83: 6.582108077092124 - sys_corr_84: 47.257453500955336 - sys_corr_85: 34.55480225033884 - sys_corr_86: -3.1322941111306184 - sys_corr_87: -0.5007827217199884 - sys_corr_88: 2.157321953593512 - sys_corr_89: 13.707759356715083 - sys_corr_90: 2.202426638389727 - sys_corr_91: 57.23810833482662 - sys_corr_92: 5.139735623328375 - sys_corr_93: 27.47593085113928 - sys_corr_94: 23.500552420360055 - sys_corr_95: -13.193526289374251 - sys_corr_96: -109.14854943077083 - sys_corr_97: -55.535045379653766 - sys_corr_98: -34.356665981376956 - sys_corr_99: 5.191378599554444 - sys_corr_100: -1.128441209696941 - sys_corr_101: 0.0624264340951826 - sys_corr_102: 2.530720837135277 - sys_corr_103: -0.35440932030624855 - sys_corr_104: 1.230754016024506 - sys_corr_105: 15.706255107911037 - sys_corr_106: 0.8202789803935715 - sys_corr_107: 19.22745330480236 - sys_corr_108: 2.6671515041321223 - sys_corr_109: -1.3194625791562173 - sys_corr_110: 0.6771330796117522 - sys_corr_111: 1.5543787188501546 - sys_corr_112: -0.7557096397733658 - sys_corr_113: 0.7637402454207928 - sys_corr_114: 0.0012155946480869447 - sys_corr_115: -0.6918650987250612 - sys_corr_116: 1.1392362006511414 - sys_corr_117: 0.8878761092859819 - sys_corr_118: 0.06710511930195726 - sys_corr_119: 0.011635269381409841 - sys_corr_120: -0.5389764398133636 - sys_corr_121: 0.006244019008778926 - sys_corr_122: -0.005824441999352184 - sys_corr_123: 0.09717220328825114 - sys_corr_124: -0.42389695992992926 - sys_corr_125: -0.28741045495279466 - sys_corr_126: 0.009787741159483823 - sys_corr_127: 5.119086913026262 - sys_corr_128: 0.2137654225032878 - sys_corr_129: -0.22008105278813747 - sys_corr_130: -0.017401359640993697 - sys_corr_131: 0.31136456485606484 - sys_corr_132: 0.25298830760543883 +- sys_corr_1: 30.002716089555328 + sys_corr_2: 15.487056470038828 + sys_corr_3: -10.808612809616324 + sys_corr_4: -8.780017801729494 + sys_corr_5: -7.894693727398723 + sys_corr_6: 7.543375527885028 + sys_corr_7: 9.175009031270344 + sys_corr_8: -1.0816595018714947 + sys_corr_9: -18.790251262106167 + sys_corr_10: -2.2166324904385526 + sys_corr_11: -4.569620758377213 + sys_corr_12: -8.746310594637574 + sys_corr_13: 3.8975101229261386 + sys_corr_14: 2.383445470859497 + sys_corr_15: 5.081984293294842 + sys_corr_16: 11.536120789752005 + sys_corr_17: -2.445476312682525 + sys_corr_18: 4.146694071046512 + sys_corr_19: -1.5487753199918148 + sys_corr_20: -0.8491557367636288 + sys_corr_21: -0.48875881882573075 + sys_corr_22: 5.692554495916478 + sys_corr_23: 2.6297643897601737 + sys_corr_24: -3.3424189295750777 + sys_corr_25: 4.51486306359086 + sys_corr_26: 9.023195972074207 + sys_corr_27: -5.315756389770619 + sys_corr_28: 0.157817653464435 + sys_corr_29: 5.051522262947771 + sys_corr_30: -0.5318284052202574 + sys_corr_31: 2.290693087588489 + sys_corr_32: 0.6374764390184607 + sys_corr_33: 0.30431291448546377 + sys_corr_34: -3.069043493229564 + sys_corr_35: 0.17901913919385426 + sys_corr_36: 0.033360016063392096 + sys_corr_37: -1.7548712463646339 + sys_corr_38: -0.7480791799246305 + sys_corr_39: 0.3822705985241883 + sys_corr_40: 0.808635829930324 + sys_corr_41: -1.0788431277206223 + sys_corr_42: 0.3794522933076877 + sys_corr_43: -0.9840299056754881 + sys_corr_44: 1.3280828366064323 + sys_corr_45: 0.5730118250553752 + sys_corr_46: -1.1685498582874945 + sys_corr_47: -0.8963615257087842 + sys_corr_48: 2.8655645457799674 + sys_corr_49: -3.8877137952301677 + sys_corr_50: 0.494340823830155 + sys_corr_51: -1.170602653168223 + sys_corr_52: -1.6086432262349566 + sys_corr_53: -0.6848117689112961 + sys_corr_54: -4.817129971790941 + sys_corr_55: -2.269267265768722 + sys_corr_56: -1.5304842236442018 + sys_corr_57: 0.06760022119331022 + sys_corr_58: 2.501132755692431 + sys_corr_59: 2.054690696400505 + sys_corr_60: -1.180450807708806 + sys_corr_61: -0.4011802250689729 + sys_corr_62: -1.484780294865478 + sys_corr_63: 0.13030093046805974 + sys_corr_64: 2.358360932036158 + sys_corr_65: 3.8571137549950962 + sys_corr_66: 0.41863264005204504 + sys_corr_67: -1.1944006752035912 + sys_corr_68: -0.00016725209788067243 + sys_corr_69: 2.2272496530684904 + sys_corr_70: 2.4127367648325753 + sys_corr_71: -0.20112067383307042 + sys_corr_72: -1.3548539496257808 + sys_corr_73: -7.469262066648432 + sys_corr_74: -1.7463417107480033 + sys_corr_75: -1.688370440040957 + sys_corr_76: -2.2389040427988154 + sys_corr_77: -3.3394307992080035 + sys_corr_78: 2.384075243091959 + sys_corr_79: 3.415909471152259 + sys_corr_80: 3.6546311320614406 + sys_corr_81: 3.3460156170067266 + sys_corr_82: 2.0336373688095084 + sys_corr_83: 6.58210807709308 + sys_corr_84: -47.25745350095918 + sys_corr_85: 34.55480225033286 + sys_corr_86: 3.1322941111386142 + sys_corr_87: 0.5007827217199582 + sys_corr_88: 2.157321953589465 + sys_corr_89: 2.202426638389507 + sys_corr_90: 13.707759356715256 + sys_corr_91: 57.238108334826094 + sys_corr_92: -5.139735623328923 + sys_corr_93: 27.475930851138628 + sys_corr_94: 23.500552420364954 + sys_corr_95: -13.193526289374978 + sys_corr_96: 109.14854943076915 + sys_corr_97: -55.53504537965424 + sys_corr_98: 34.356665981378065 + sys_corr_99: 5.191378599555754 + sys_corr_100: 0.06242643409596317 + sys_corr_101: -2.5307208371340333 + sys_corr_102: -0.35440932030675243 + sys_corr_103: -1.230754016024788 + sys_corr_104: -15.706255107915197 + sys_corr_105: 1.1284412096976546 + sys_corr_106: 0.8202789803941584 + sys_corr_107: 2.667151504131947 + sys_corr_108: -1.3194625791562256 + sys_corr_109: -0.6771330796118857 + sys_corr_110: -19.22745330480193 + sys_corr_111: -1.5543787188502927 + sys_corr_112: -0.7557096397733305 + sys_corr_113: -0.7637402454208068 + sys_corr_114: 0.0012155946480825886 + sys_corr_115: -0.6918650987248776 + sys_corr_116: -1.139236200651287 + sys_corr_117: -0.8878761092860181 + sys_corr_118: -0.06710511930196675 + sys_corr_119: -0.011635269381415079 + sys_corr_120: 0.5389764398133475 + sys_corr_121: -0.006244019008777828 + sys_corr_122: 0.09717220328823925 + sys_corr_123: -0.0058244419993672145 + sys_corr_124: -0.42389695992992904 + sys_corr_125: -0.28741045495279643 + sys_corr_126: -0.009787741159477122 + sys_corr_127: 5.119086913023337 + sys_corr_128: 0.2137654225034222 + sys_corr_129: -0.22008105278812654 + sys_corr_130: -0.01740135964098504 + sys_corr_131: -0.3113645648560432 + sys_corr_132: 0.2529883076054275 stat: 0.0 luminosity: 76.42969400000001 -- sys_corr_1: 30.33959875002358 - sys_corr_2: 13.845040938376775 - sys_corr_3: -13.424966099437064 - sys_corr_4: -3.6671432294917343 - sys_corr_5: -9.20134572931357 - sys_corr_6: 7.759106021386359 - sys_corr_7: 8.76466411983403 - sys_corr_8: -8.619108892353115 - sys_corr_9: -9.792050964968375 - sys_corr_10: -1.8210460438001064 - sys_corr_11: -9.091207950648501 - sys_corr_12: -3.0633245046883406 - sys_corr_13: -10.677024896088884 - sys_corr_14: 3.294678112834664 - sys_corr_15: 9.755163635592185 - sys_corr_16: 8.620374910895329 - sys_corr_17: 2.779494265170527 - sys_corr_18: 4.368700636194382 - sys_corr_19: 0.10467315299906715 - sys_corr_20: 0.23981683102621015 - sys_corr_21: -0.5737072610819193 - sys_corr_22: 7.869859995575308 - sys_corr_23: 3.5378667019407892 - sys_corr_24: -4.061398706624706 - sys_corr_25: 3.8227230684224884 - sys_corr_26: 7.641877449173692 - sys_corr_27: -4.620758412414822 - sys_corr_28: -1.345707608096903 - sys_corr_29: 4.910812652724233 - sys_corr_30: 0.675361212225259 - sys_corr_31: 1.196788460865895 - sys_corr_32: -0.7765441135706052 - sys_corr_33: -0.2882209016051852 - sys_corr_34: -2.675449478110293 - sys_corr_35: 0.0922734445484965 - sys_corr_36: -0.20122939429293768 - sys_corr_37: 1.7899401994511566 - sys_corr_38: 0.5807163344269567 - sys_corr_39: -0.2381848793118348 - sys_corr_40: -0.5843692794282451 - sys_corr_41: -1.1437990951724348 - sys_corr_42: -0.2656225167394939 - sys_corr_43: -0.9607231079540243 - sys_corr_44: 1.3657920781601052 - sys_corr_45: -0.004687092072937801 - sys_corr_46: 0.5749184510462563 - sys_corr_47: 0.5021104334957092 - sys_corr_48: -2.3396543228425997 - sys_corr_49: 3.5951468088243583 - sys_corr_50: 0.3860739022571877 - sys_corr_51: -1.013675180555306 - sys_corr_52: -1.4289812613166402 - sys_corr_53: 0.5958389184778573 - sys_corr_54: 5.092904645993408 - sys_corr_55: 2.4303851303289976 - sys_corr_56: 1.3505270767711437 - sys_corr_57: -0.18268741730860988 - sys_corr_58: -2.7965081051177414 - sys_corr_59: 1.7249159716924187 - sys_corr_60: 0.927576914987657 - sys_corr_61: -0.18381858083098973 - sys_corr_62: 1.5259637895397742 - sys_corr_63: 0.14808293427316946 - sys_corr_64: 1.9460049022055774 - sys_corr_65: 3.373445656120056 - sys_corr_66: -0.35222391305802997 - sys_corr_67: -1.2160966362169163 - sys_corr_68: -0.09943439033603821 - sys_corr_69: 1.744429716572955 - sys_corr_70: -2.6022730862514507 - sys_corr_71: -0.45747019896657587 - sys_corr_72: 1.4822846348504821 - sys_corr_73: 7.086532514750137 - sys_corr_74: -1.5475241601942622 - sys_corr_75: -0.570117437453082 - sys_corr_76: -1.9449284010308365 - sys_corr_77: 1.8549571877651665 - sys_corr_78: 3.4145811086287288 - sys_corr_79: 3.9170784404718946 - sys_corr_80: -2.3003547519271637 - sys_corr_81: -3.6121731859473973 - sys_corr_82: -2.515384306161366 - sys_corr_83: 6.775036928944888 - sys_corr_84: 45.054289481503375 - sys_corr_85: 32.07444483793668 - sys_corr_86: -3.2806876214435965 - sys_corr_87: 0.9081088531692064 - sys_corr_88: 2.4963670070819295 - sys_corr_89: 12.422000053880152 - sys_corr_90: 1.7664411826595645 - sys_corr_91: 52.78323297972254 - sys_corr_92: 4.179798370381814 - sys_corr_93: -86.50197267382805 - sys_corr_94: 32.40105078920746 - sys_corr_95: -5.893954966777934 - sys_corr_96: 72.61646033149589 - sys_corr_97: -64.32133085717312 - sys_corr_98: -19.929957422125433 - sys_corr_99: 9.986195136787295 - sys_corr_100: -0.5401206345980305 - sys_corr_101: -1.0463697127462337 - sys_corr_102: 1.8772506272783844 - sys_corr_103: -1.377964044350131 - sys_corr_104: 2.6914242148271685 - sys_corr_105: 16.732282089668747 - sys_corr_106: 0.8213437214618958 - sys_corr_107: 23.8657264427811 - sys_corr_108: 2.7970527315712266 - sys_corr_109: -1.5455957502592685 - sys_corr_110: 0.7006257720088143 - sys_corr_111: 1.5531162341260913 - sys_corr_112: -0.7765837093020865 - sys_corr_113: 0.6838184432516903 - sys_corr_114: 0.0013127032775430332 - sys_corr_115: -0.710719256979921 - sys_corr_116: 1.115933788809402 - sys_corr_117: 0.906990624541575 - sys_corr_118: 0.023707215331767523 - sys_corr_119: 0.013695803373870986 - sys_corr_120: -0.5519799200690901 - sys_corr_121: 0.0011418974510296383 - sys_corr_122: 0.0030308053594865106 - sys_corr_123: 0.0810245654286143 - sys_corr_124: -0.7105252523733167 - sys_corr_125: -0.26674521533820844 - sys_corr_126: 0.0035117006194018544 - sys_corr_127: 2.2821029674640254 - sys_corr_128: 0.14724206997393455 - sys_corr_129: -0.20073395673865269 - sys_corr_130: -0.01418265374878835 - sys_corr_131: 0.3144740357887242 - sys_corr_132: 0.20316829124491967 +- sys_corr_1: 30.339598750023626 + sys_corr_2: 13.84504093837678 + sys_corr_3: -13.42496609943706 + sys_corr_4: -3.6671432294917503 + sys_corr_5: -9.201345729313513 + sys_corr_6: 7.7591060213863035 + sys_corr_7: 8.764664119834002 + sys_corr_8: -8.61910889235332 + sys_corr_9: -9.79205096496847 + sys_corr_10: -1.821046043799438 + sys_corr_11: -9.091207950649128 + sys_corr_12: -3.06332450468813 + sys_corr_13: 10.677024896088477 + sys_corr_14: -3.294678112834498 + sys_corr_15: -9.755163635592053 + sys_corr_16: -8.620374910895164 + sys_corr_17: 2.779494265170362 + sys_corr_18: -4.368700636194313 + sys_corr_19: 0.10467315299907554 + sys_corr_20: 0.23981683102619752 + sys_corr_21: -0.5737072610819759 + sys_corr_22: 7.8698599955751485 + sys_corr_23: 3.537866701940846 + sys_corr_24: -4.061398706624622 + sys_corr_25: 3.8227230684226203 + sys_corr_26: 7.641877449173892 + sys_corr_27: -4.62075841241504 + sys_corr_28: -1.3457076080970403 + sys_corr_29: 4.910812652724294 + sys_corr_30: 0.6753612122251823 + sys_corr_31: 1.1967884608657544 + sys_corr_32: 0.7765441135704195 + sys_corr_33: 0.28822090160424113 + sys_corr_34: -2.675449478110562 + sys_corr_35: 0.09227344454861983 + sys_corr_36: -0.20122939429277822 + sys_corr_37: -1.7899401994515463 + sys_corr_38: -0.5807163344265106 + sys_corr_39: 0.2381848793116058 + sys_corr_40: 0.584369279428442 + sys_corr_41: -1.1437990951728847 + sys_corr_42: 0.26562251673911014 + sys_corr_43: -0.9607231079536906 + sys_corr_44: 1.365792078160319 + sys_corr_45: 0.00468709207263393 + sys_corr_46: -0.5749184510460905 + sys_corr_47: -0.502110433495888 + sys_corr_48: 2.339654322843262 + sys_corr_49: -3.595146808824176 + sys_corr_50: 0.38607390225722693 + sys_corr_51: -1.0136751805551578 + sys_corr_52: -1.4289812613154147 + sys_corr_53: -0.5958389184783995 + sys_corr_54: -5.092904645992212 + sys_corr_55: -2.430385130327559 + sys_corr_56: -1.350527076771258 + sys_corr_57: -0.18268741730810883 + sys_corr_58: 2.7965081051195257 + sys_corr_59: 1.7249159716904923 + sys_corr_60: -0.9275769149875404 + sys_corr_61: 0.1838185808310768 + sys_corr_62: -1.525963789539649 + sys_corr_63: 0.14808293427081098 + sys_corr_64: 1.9460049022061334 + sys_corr_65: 3.373445656122195 + sys_corr_66: 0.3522239130568882 + sys_corr_67: -1.216096636216905 + sys_corr_68: 0.09943439033825541 + sys_corr_69: 1.7444297165728115 + sys_corr_70: 2.602273086251188 + sys_corr_71: -0.45747019896676605 + sys_corr_72: -1.482284634850264 + sys_corr_73: -7.086532514749668 + sys_corr_74: -1.5475241601939058 + sys_corr_75: -0.5701174374528881 + sys_corr_76: -1.9449284010315055 + sys_corr_77: -1.8549571877659312 + sys_corr_78: 2.3003547519272023 + sys_corr_79: 3.4145811086284574 + sys_corr_80: 3.917078440471615 + sys_corr_81: 3.6121731859469857 + sys_corr_82: 2.515384306161331 + sys_corr_83: 6.7750369289461 + sys_corr_84: -45.0542894815074 + sys_corr_85: 32.07444483793019 + sys_corr_86: 3.2806876214520755 + sys_corr_87: -0.9081088531690527 + sys_corr_88: 2.4963670070784687 + sys_corr_89: 1.7664411826595225 + sys_corr_90: 12.422000053880291 + sys_corr_91: 52.78323297972181 + sys_corr_92: -4.179798370382808 + sys_corr_93: -86.50197267382939 + sys_corr_94: 32.40105078920469 + sys_corr_95: -5.893954966768446 + sys_corr_96: -72.6164603314975 + sys_corr_97: -64.32133085717314 + sys_corr_98: 19.9299574221283 + sys_corr_99: 9.986195136785804 + sys_corr_100: -1.0463697127463834 + sys_corr_101: -1.877250627279222 + sys_corr_102: -1.3779640443609282 + sys_corr_103: -2.691424214824827 + sys_corr_104: -16.732282089666835 + sys_corr_105: 0.5401206345980529 + sys_corr_106: 0.8213437214617314 + sys_corr_107: 2.797052731571089 + sys_corr_108: -1.5455957502593383 + sys_corr_109: -0.7006257720088831 + sys_corr_110: -23.86572644278092 + sys_corr_111: -1.5531162341260014 + sys_corr_112: -0.7765837093020523 + sys_corr_113: -0.683818443251661 + sys_corr_114: 0.001312703277539701 + sys_corr_115: -0.7107192569798245 + sys_corr_116: -1.1159337888094973 + sys_corr_117: -0.906990624541583 + sys_corr_118: -0.023707215331757174 + sys_corr_119: -0.013695803373871534 + sys_corr_120: 0.5519799200690821 + sys_corr_121: -0.0011418974510265972 + sys_corr_122: 0.08102456542857964 + sys_corr_123: 0.003030805359472483 + sys_corr_124: -0.7105252523733605 + sys_corr_125: -0.2667452153382252 + sys_corr_126: -0.003511700619391348 + sys_corr_127: 2.2821029674605886 + sys_corr_128: 0.14724206997404726 + sys_corr_129: -0.20073395673864575 + sys_corr_130: -0.014182653748786475 + sys_corr_131: -0.31447403578870026 + sys_corr_132: 0.20316829124490846 stat: 0.0 luminosity: 79.297416 -- sys_corr_1: 29.99396091682732 - sys_corr_2: 14.199640292273129 - sys_corr_3: -13.193520389787864 - sys_corr_4: -1.7439243973937602 - sys_corr_5: -9.498839343332865 - sys_corr_6: 6.119032521805314 - sys_corr_7: -3.845144347599548 - sys_corr_8: 2.904370778204999 - sys_corr_9: -6.9659810622048015 - sys_corr_10: -14.8770612793707 - sys_corr_11: -9.850813866208643 - sys_corr_12: -1.1206887841276014 - sys_corr_13: -10.547713426929082 - sys_corr_14: -0.8478505244066407 - sys_corr_15: -1.6240737399031393 - sys_corr_16: -4.949037850673049 - sys_corr_17: -1.1228093710849365 - sys_corr_18: -2.820602098570132 - sys_corr_19: 0.5589276461287966 - sys_corr_20: -0.7327405218605856 - sys_corr_21: -1.604330833912736 - sys_corr_22: 7.782514178683527 - sys_corr_23: 3.598480283991926 - sys_corr_24: -0.2861887240494608 - sys_corr_25: 4.065254035187694 - sys_corr_26: 6.71909407085425 - sys_corr_27: -3.6153670090806567 - sys_corr_28: -1.1767479635152553 - sys_corr_29: 4.036034463986007 - sys_corr_30: 3.608159077651238 - sys_corr_31: -0.40685028768772535 - sys_corr_32: -1.3328841503840894 - sys_corr_33: -0.1079000170921105 - sys_corr_34: -3.7177458195276 - sys_corr_35: 0.7708389824159301 - sys_corr_36: 0.000823700302654559 - sys_corr_37: 1.6407316321154688 - sys_corr_38: 1.038403789907101 - sys_corr_39: -0.12415545792294418 - sys_corr_40: -0.17648649250736448 - sys_corr_41: -1.2402195472720892 - sys_corr_42: -0.3341984253240673 - sys_corr_43: -1.1701731462655138 - sys_corr_44: 1.8370220474351349 - sys_corr_45: -0.4697071050384649 - sys_corr_46: 0.2801434003461369 - sys_corr_47: 0.37711872431193855 - sys_corr_48: -2.3064012076509974 - sys_corr_49: 2.5859493582801 - sys_corr_50: 0.02162266126254224 - sys_corr_51: -1.258021994031197 - sys_corr_52: -1.3898879317984445 - sys_corr_53: 0.637663961421822 - sys_corr_54: 4.249719754239047 - sys_corr_55: 2.52888419587608 - sys_corr_56: 1.3748387902914292 - sys_corr_57: 0.127403733931233 - sys_corr_58: -2.127596330714724 - sys_corr_59: 1.7254292578212107 - sys_corr_60: 1.8588405711869544 - sys_corr_61: 0.14582493917704903 - sys_corr_62: 1.7247484212957023 - sys_corr_63: 0.13166152741337353 - sys_corr_64: 2.419659713419124 - sys_corr_65: 3.5880829167533994 - sys_corr_66: 0.06125565133793644 - sys_corr_67: -1.16325338488501 - sys_corr_68: 0.17210464846463303 - sys_corr_69: 1.830986974881101 - sys_corr_70: -1.92816016953602 - sys_corr_71: -0.5869022274371335 - sys_corr_72: 1.6167834571203108 - sys_corr_73: 7.187897160345114 - sys_corr_74: -1.5554414923427362 - sys_corr_75: -0.48011952810637837 - sys_corr_76: -2.6821133807408937 - sys_corr_77: 3.082156103562651 - sys_corr_78: 3.452096697765571 - sys_corr_79: 4.15787371010979 - sys_corr_80: -2.8025791740241517 - sys_corr_81: -4.078414216471924 - sys_corr_82: -1.7379421465061893 - sys_corr_83: 7.0850565934976695 - sys_corr_84: 48.663995371277565 - sys_corr_85: 35.917617510271725 - sys_corr_86: -3.4895357797190414 - sys_corr_87: 0.2691609223748069 - sys_corr_88: 2.9876782356156264 - sys_corr_89: 14.310305255885464 - sys_corr_90: 2.704875905352192 - sys_corr_91: 58.333138630272884 - sys_corr_92: 4.82539712983457 - sys_corr_93: 114.45873421602212 - sys_corr_94: -10.990500831139919 - sys_corr_95: 4.140234456190234 - sys_corr_96: 64.05494660999432 - sys_corr_97: -13.660216155768298 - sys_corr_98: 31.743852320188704 - sys_corr_99: -10.579698958001892 - sys_corr_100: 0.0784174704712844 - sys_corr_101: -1.1849812041104084 - sys_corr_102: 1.7430251424900856 - sys_corr_103: -1.5688115802252816 - sys_corr_104: 4.653812250485353 - sys_corr_105: 9.921354984869442 - sys_corr_106: 0.17542598366085524 - sys_corr_107: 21.25288620800656 - sys_corr_108: 2.014102345177271 - sys_corr_109: -1.363949394277175 - sys_corr_110: 0.4199187816496545 - sys_corr_111: 1.136857914400316 - sys_corr_112: -0.5383601381539939 - sys_corr_113: 0.5300721851315798 - sys_corr_114: -0.00039041819772348875 - sys_corr_115: -0.5262178814730428 - sys_corr_116: -0.1045377422374329 - sys_corr_117: 0.7165611324515117 - sys_corr_118: 0.09807663214430504 - sys_corr_119: 0.004888552160502232 - sys_corr_120: -0.47009645392485183 - sys_corr_121: 0.005934767263501972 - sys_corr_122: -0.024935340843126073 - sys_corr_123: 0.05410471545670505 - sys_corr_124: -1.4478562411192446 - sys_corr_125: -0.2815508064410816 - sys_corr_126: 0.015373816350457483 - sys_corr_127: -4.989121111927539 - sys_corr_128: 0.10320903102697679 - sys_corr_129: -0.021885581364431302 - sys_corr_130: -0.008361542689586703 - sys_corr_131: 0.32240662191289254 - sys_corr_132: 0.12798523762732253 +- sys_corr_1: 29.993960916827394 + sys_corr_2: 14.199640292273113 + sys_corr_3: -13.193520389787842 + sys_corr_4: -1.7439243973937695 + sys_corr_5: -9.498839343332854 + sys_corr_6: 6.1190325218053045 + sys_corr_7: -3.845144347599702 + sys_corr_8: 2.9043707782048442 + sys_corr_9: -6.965981062204563 + sys_corr_10: -14.877061279370105 + sys_corr_11: -9.850813866208973 + sys_corr_12: -1.1206887841273427 + sys_corr_13: 10.547713426928773 + sys_corr_14: 0.8478505244066415 + sys_corr_15: 1.6240737399032648 + sys_corr_16: 4.949037850672922 + sys_corr_17: -1.1228093710849203 + sys_corr_18: 2.820602098570294 + sys_corr_19: 0.5589276461288231 + sys_corr_20: -0.732740521860713 + sys_corr_21: -1.6043308339127946 + sys_corr_22: 7.78251417868358 + sys_corr_23: 3.5984802839920182 + sys_corr_24: -0.2861887240493332 + sys_corr_25: 4.065254035187737 + sys_corr_26: 6.719094070854332 + sys_corr_27: -3.615367009080829 + sys_corr_28: -1.1767479635153626 + sys_corr_29: 4.036034463985937 + sys_corr_30: 3.6081590776510066 + sys_corr_31: -0.4068502876876677 + sys_corr_32: 1.3328841503845201 + sys_corr_33: 0.10790001709149366 + sys_corr_34: -3.7177458195274924 + sys_corr_35: 0.7708389824158323 + sys_corr_36: 0.0008237003030134645 + sys_corr_37: -1.6407316321156924 + sys_corr_38: -1.0384037899068743 + sys_corr_39: 0.12415545792281402 + sys_corr_40: 0.17648649250733464 + sys_corr_41: -1.2402195472720556 + sys_corr_42: 0.3341984253240395 + sys_corr_43: -1.1701731462653275 + sys_corr_44: 1.8370220474350878 + sys_corr_45: 0.46970710503810115 + sys_corr_46: -0.2801434003462181 + sys_corr_47: -0.37711872431175203 + sys_corr_48: 2.306401207651092 + sys_corr_49: -2.5859493582798945 + sys_corr_50: 0.02162266126209487 + sys_corr_51: -1.2580219940311725 + sys_corr_52: -1.389887931798049 + sys_corr_53: -0.6376639614224959 + sys_corr_54: -4.2497197542380265 + sys_corr_55: -2.528884195874944 + sys_corr_56: -1.3748387902909154 + sys_corr_57: 0.1274037339318588 + sys_corr_58: 2.127596330716281 + sys_corr_59: 1.7254292578197556 + sys_corr_60: -1.858840571186687 + sys_corr_61: -0.1458249391773484 + sys_corr_62: -1.7247484212958026 + sys_corr_63: 0.1316615274106606 + sys_corr_64: 2.4196597134199305 + sys_corr_65: 3.588082916755985 + sys_corr_66: -0.06125565133880211 + sys_corr_67: -1.16325338488477 + sys_corr_68: -0.17210464846264886 + sys_corr_69: 1.8309869748811476 + sys_corr_70: 1.9281601695357515 + sys_corr_71: -0.586902227437645 + sys_corr_72: -1.6167834571201574 + sys_corr_73: -7.18789716034493 + sys_corr_74: -1.5554414923420326 + sys_corr_75: -0.48011952810527764 + sys_corr_76: -2.6821133807416837 + sys_corr_77: -3.082156103564246 + sys_corr_78: 2.8025791740249786 + sys_corr_79: 3.452096697764922 + sys_corr_80: 4.157873710109714 + sys_corr_81: 4.078414216471241 + sys_corr_82: 1.7379421465062277 + sys_corr_83: 7.085056593498886 + sys_corr_84: -48.66399537128145 + sys_corr_85: 35.91761751026537 + sys_corr_86: 3.4895357797282744 + sys_corr_87: -0.26916092237443007 + sys_corr_88: 2.9876782356118707 + sys_corr_89: 2.704875905351911 + sys_corr_90: 14.310305255885295 + sys_corr_91: 58.33313863027209 + sys_corr_92: -4.8253971298353315 + sys_corr_93: 114.45873421602215 + sys_corr_94: -10.990500831140132 + sys_corr_95: 4.140234456188296 + sys_corr_96: -64.0549466099955 + sys_corr_97: -13.66021615576757 + sys_corr_98: -31.743852320190204 + sys_corr_99: -10.579698958002123 + sys_corr_100: -1.1849812041105194 + sys_corr_101: -1.7430251424899175 + sys_corr_102: -1.5688115802302616 + sys_corr_103: -4.653812250485049 + sys_corr_104: -9.921354984868776 + sys_corr_105: -0.07841747047121915 + sys_corr_106: 0.17542598366111314 + sys_corr_107: 2.014102345177076 + sys_corr_108: -1.363949394277262 + sys_corr_109: -0.4199187816496521 + sys_corr_110: -21.252886208005727 + sys_corr_111: -1.1368579144003554 + sys_corr_112: -0.5383601381540035 + sys_corr_113: -0.5300721851315617 + sys_corr_114: -0.0003904181977261484 + sys_corr_115: -0.5262178814730459 + sys_corr_116: 0.1045377422373658 + sys_corr_117: -0.7165611324515291 + sys_corr_118: -0.09807663214429603 + sys_corr_119: -0.004888552160510391 + sys_corr_120: 0.4700964539248645 + sys_corr_121: -0.005934767263499873 + sys_corr_122: 0.05410471545670246 + sys_corr_123: -0.024935340843147275 + sys_corr_124: -1.4478562411192355 + sys_corr_125: -0.2815508064410945 + sys_corr_126: -0.01537381635046484 + sys_corr_127: -4.989121111930571 + sys_corr_128: 0.10320903102707209 + sys_corr_129: -0.021885581364388344 + sys_corr_130: -0.008361542689577018 + sys_corr_131: -0.3224066219129042 + sys_corr_132: 0.12798523762732175 stat: 0.0 luminosity: 77.80432 -- sys_corr_1: 31.018934122755482 - sys_corr_2: 12.375333625372628 - sys_corr_3: -12.909067074316681 - sys_corr_4: 3.782080939498295 - sys_corr_5: -9.806277328387692 - sys_corr_6: 5.018962262928321 - sys_corr_7: -1.4337944106995784 - sys_corr_8: -12.776017213802248 - sys_corr_9: -0.97637500502794 - sys_corr_10: 1.7869627032108057 - sys_corr_11: -10.252802718787542 - sys_corr_12: -7.561838714383633 - sys_corr_13: -4.41443287093691 - sys_corr_14: -4.357834823032689 - sys_corr_15: -7.76997280339987 - sys_corr_16: -6.857853936969415 - sys_corr_17: -0.974030621380928 - sys_corr_18: -3.3946451593212577 - sys_corr_19: -0.5038334173249743 - sys_corr_20: -1.367230357548524 - sys_corr_21: -2.2742403610484856 - sys_corr_22: 7.791158939837245 - sys_corr_23: 4.454905679690073 - sys_corr_24: -0.4230619270723785 - sys_corr_25: 4.068373762882968 - sys_corr_26: 6.465936348118933 - sys_corr_27: -1.844137427557317 - sys_corr_28: -0.5665978193424054 - sys_corr_29: 2.9400570873352327 - sys_corr_30: 6.526562437341058 - sys_corr_31: 0.12256779693343767 - sys_corr_32: -1.427646236267564 - sys_corr_33: -0.23569021551590247 - sys_corr_34: -3.135785698151236 - sys_corr_35: 0.8032146773457812 - sys_corr_36: -0.8054434328523469 - sys_corr_37: 1.607159770195458 - sys_corr_38: 0.9666113991861727 - sys_corr_39: 0.23285743390559702 - sys_corr_40: -0.291824977469793 - sys_corr_41: -1.071050650578039 - sys_corr_42: -0.7588244184257058 - sys_corr_43: -0.9298896139646827 - sys_corr_44: 1.5106624295238973 - sys_corr_45: -0.5752363848164295 - sys_corr_46: 0.46746122414195557 - sys_corr_47: 0.6286076109855901 - sys_corr_48: -2.4869985106108747 - sys_corr_49: 3.2402005018126925 - sys_corr_50: 0.7741673110917215 - sys_corr_51: -0.7022558839059675 - sys_corr_52: -1.1470445102427336 - sys_corr_53: 0.15225064220883164 - sys_corr_54: 3.9812955892037296 - sys_corr_55: 2.441530615220735 - sys_corr_56: 1.6833888932573438 - sys_corr_57: 0.49636360003938973 - sys_corr_58: -2.8916512696566263 - sys_corr_59: 1.5629292443351088 - sys_corr_60: 0.6873910161048262 - sys_corr_61: -0.07122192732013015 - sys_corr_62: 1.5072888328779799 - sys_corr_63: 0.019039998103570977 - sys_corr_64: 2.1527216640745186 - sys_corr_65: 3.6919384092720655 - sys_corr_66: 0.4051050461489981 - sys_corr_67: -0.7944895813340093 - sys_corr_68: -0.018083064458621564 - sys_corr_69: 0.5448123096628047 - sys_corr_70: -1.361207966269305 - sys_corr_71: -1.204395814201376 - sys_corr_72: 1.7715165518459408 - sys_corr_73: 6.662803789616337 - sys_corr_74: -1.7370618432618115 - sys_corr_75: 0.2698426688489576 - sys_corr_76: -2.8804502782919275 - sys_corr_77: 3.3773336954249826 - sys_corr_78: 4.057307227743752 - sys_corr_79: 3.788836883321724 - sys_corr_80: -3.3185516201939023 - sys_corr_81: -3.2885215133981704 - sys_corr_82: -1.7904085086686692 - sys_corr_83: 6.976684987359348 - sys_corr_84: 42.09595183648954 - sys_corr_85: 31.851448201800654 - sys_corr_86: -3.3140947721420497 - sys_corr_87: 0.8926612983614955 - sys_corr_88: 2.3841179716095633 - sys_corr_89: 10.587244025152506 - sys_corr_90: 2.7932419941820243 - sys_corr_91: 50.71089983369851 - sys_corr_92: 4.354049537078776 - sys_corr_93: -49.08161700724228 - sys_corr_94: 13.488501245772776 - sys_corr_95: -4.728822767890569 - sys_corr_96: -34.053777486340245 - sys_corr_97: 39.36332233518358 - sys_corr_98: 100.71458649648157 - sys_corr_99: -38.501243767259346 - sys_corr_100: 0.6798480194760321 - sys_corr_101: -1.7104311939545753 - sys_corr_102: 2.6559947102561745 - sys_corr_103: 3.5471289776824637 - sys_corr_104: 7.293326762005441 - sys_corr_105: -5.165501182236425 - sys_corr_106: -0.4689156732792947 - sys_corr_107: 8.377654361310473 - sys_corr_108: 1.8245369679907997 - sys_corr_109: -1.5024273485562025 - sys_corr_110: 0.24674620433732525 - sys_corr_111: 1.4033918578243862 - sys_corr_112: -0.4346583051032271 - sys_corr_113: 0.562689747110249 - sys_corr_114: -0.0008587841848976675 - sys_corr_115: -0.6752518987733891 - sys_corr_116: 0.05099435335757073 - sys_corr_117: 0.7996828702270667 - sys_corr_118: 0.17499760989499388 - sys_corr_119: 0.003834491717412643 - sys_corr_120: -0.5469133919339546 - sys_corr_121: 0.005477709474135502 - sys_corr_122: -0.027358340426496756 - sys_corr_123: 0.055101225724306375 - sys_corr_124: -1.5615268341266708 - sys_corr_125: -0.2212826765606894 - sys_corr_126: 0.010156935100005314 - sys_corr_127: -31.064311843610927 - sys_corr_128: 0.18099055026998387 - sys_corr_129: -0.024222049690930936 - sys_corr_130: 0.0004850862628682665 - sys_corr_131: 0.29331873933460106 - sys_corr_132: 0.09870533434131822 +- sys_corr_1: 31.018934122755518 + sys_corr_2: 12.375333625372626 + sys_corr_3: -12.90906707431668 + sys_corr_4: 3.7820809394982797 + sys_corr_5: -9.806277328387718 + sys_corr_6: 5.018962262928399 + sys_corr_7: -1.433794410699327 + sys_corr_8: -12.776017213802174 + sys_corr_9: -0.9763750050281923 + sys_corr_10: 1.7869627032112307 + sys_corr_11: -10.252802718788212 + sys_corr_12: -7.561838714383133 + sys_corr_13: 4.414432870936777 + sys_corr_14: 4.357834823032539 + sys_corr_15: 7.769972803399947 + sys_corr_16: 6.857853936969207 + sys_corr_17: -0.9740306213808614 + sys_corr_18: 3.3946451593213287 + sys_corr_19: -0.5038334173249366 + sys_corr_20: -1.3672303575486011 + sys_corr_21: -2.2742403610484363 + sys_corr_22: 7.791158939837557 + sys_corr_23: 4.454905679690195 + sys_corr_24: -0.423061927072384 + sys_corr_25: 4.068373762882967 + sys_corr_26: 6.4659363481188095 + sys_corr_27: -1.8441374275573805 + sys_corr_28: -0.5665978193421328 + sys_corr_29: 2.940057087334904 + sys_corr_30: 6.52656243734112 + sys_corr_31: 0.12256779693356315 + sys_corr_32: 1.4276462362685132 + sys_corr_33: 0.23569021551585795 + sys_corr_34: -3.1357856981511136 + sys_corr_35: 0.8032146773457532 + sys_corr_36: -0.8054434328520405 + sys_corr_37: -1.6071597701955838 + sys_corr_38: -0.9666113991860653 + sys_corr_39: -0.23285743390577932 + sys_corr_40: 0.2918249774697673 + sys_corr_41: -1.071050650577767 + sys_corr_42: 0.7588244184257497 + sys_corr_43: -0.9298896139642825 + sys_corr_44: 1.5106624295237523 + sys_corr_45: 0.5752363848159108 + sys_corr_46: -0.46746122414197394 + sys_corr_47: -0.6286076109852393 + sys_corr_48: 2.4869985106107353 + sys_corr_49: -3.240200501812641 + sys_corr_50: 0.7741673110909775 + sys_corr_51: -0.7022558839056036 + sys_corr_52: -1.1470445102433198 + sys_corr_53: -0.15225064220925544 + sys_corr_54: -3.98129558920348 + sys_corr_55: -2.4415306152196274 + sys_corr_56: -1.683388893256289 + sys_corr_57: 0.49636360004001767 + sys_corr_58: 2.8916512696577317 + sys_corr_59: 1.5629292443325933 + sys_corr_60: -0.6873910161042299 + sys_corr_61: 0.07122192732017726 + sys_corr_62: -1.5072888328786873 + sys_corr_63: 0.01903999810141459 + sys_corr_64: 2.152721664074952 + sys_corr_65: 3.691938409274684 + sys_corr_66: -0.40510504615018006 + sys_corr_67: -0.7944895813337775 + sys_corr_68: 0.018083064459707296 + sys_corr_69: 0.544812309663343 + sys_corr_70: 1.361207966270574 + sys_corr_71: -1.2043958142029159 + sys_corr_72: -1.7715165518461589 + sys_corr_73: -6.662803789616575 + sys_corr_74: -1.7370618432618032 + sys_corr_75: 0.26984266885045477 + sys_corr_76: -2.8804502782925936 + sys_corr_77: -3.3773336954264956 + sys_corr_78: 3.3185516201947696 + sys_corr_79: 4.057307227743034 + sys_corr_80: 3.7888368833215242 + sys_corr_81: 3.2885215133975474 + sys_corr_82: 1.7904085086687134 + sys_corr_83: 6.976684987360631 + sys_corr_84: -42.09595183649295 + sys_corr_85: 31.851448201795392 + sys_corr_86: 3.314094772149723 + sys_corr_87: -0.892661298361561 + sys_corr_88: 2.3841179716057233 + sys_corr_89: 2.7932419941817863 + sys_corr_90: 10.58724402515254 + sys_corr_91: 50.71089983369816 + sys_corr_92: -4.354049537079508 + sys_corr_93: -49.08161700724391 + sys_corr_94: 13.4885012457724 + sys_corr_95: -4.728822767888905 + sys_corr_96: 34.05377748633997 + sys_corr_97: 39.363322335181515 + sys_corr_98: -100.71458649648442 + sys_corr_99: -38.501243767258515 + sys_corr_100: -1.7104311939549117 + sys_corr_101: -2.655994710256632 + sys_corr_102: 3.547128977685399 + sys_corr_103: -7.293326762008922 + sys_corr_104: 5.1655011822347365 + sys_corr_105: -0.6798480194761916 + sys_corr_106: -0.4689156732790057 + sys_corr_107: 1.8245369679910082 + sys_corr_108: -1.5024273485562636 + sys_corr_109: -0.24674620433743186 + sys_corr_110: -8.377654361307494 + sys_corr_111: -1.4033918578244118 + sys_corr_112: -0.4346583051032641 + sys_corr_113: -0.5626897471102533 + sys_corr_114: -0.0008587841849019096 + sys_corr_115: -0.6752518987733652 + sys_corr_116: -0.05099435335768919 + sys_corr_117: -0.7996828702270891 + sys_corr_118: -0.17499760989496885 + sys_corr_119: -0.0038344917174022897 + sys_corr_120: 0.5469133919339066 + sys_corr_121: -0.005477709474137119 + sys_corr_122: 0.055101225724305036 + sys_corr_123: -0.02735834042649857 + sys_corr_124: -1.561526834126656 + sys_corr_125: -0.2212826765606885 + sys_corr_126: -0.010156935100006495 + sys_corr_127: -31.064311843611918 + sys_corr_128: 0.1809905502700317 + sys_corr_129: -0.024222049690918727 + sys_corr_130: 0.00048508626286824445 + sys_corr_131: -0.2933187393346128 + sys_corr_132: 0.098705334341315 stat: 0.0 luminosity: 77.49416400000001 -- sys_corr_1: 29.519526451734073 - sys_corr_2: 15.878306672828689 - sys_corr_3: -13.253472916365316 - sys_corr_4: 8.127288236579528 - sys_corr_5: -9.832582693023786 - sys_corr_6: 2.9668122822912397 - sys_corr_7: -7.621971938980442 - sys_corr_8: -0.1871804885587791 - sys_corr_9: -9.465198248999604 - sys_corr_10: 1.0977423924812948 - sys_corr_11: -1.713726147668721 - sys_corr_12: -8.364310803560251 - sys_corr_13: 5.773207932912026 - sys_corr_14: 0.3642236323411532 - sys_corr_15: 11.652099769312223 - sys_corr_16: -1.786473130637432 - sys_corr_17: -0.2929533158686981 - sys_corr_18: -2.5603150749225705 - sys_corr_19: -0.026387917299172146 - sys_corr_20: -0.6066078828783815 - sys_corr_21: -1.341734162588322 - sys_corr_22: 6.628180913434949 - sys_corr_23: 4.808764159847078 - sys_corr_24: -1.359118123527478 - sys_corr_25: 2.519326964762955 - sys_corr_26: 6.31715338148257 - sys_corr_27: 0.16242294270383018 - sys_corr_28: -0.69549656949612 - sys_corr_29: 1.9395380063805359 - sys_corr_30: 4.6012871690450625 - sys_corr_31: -1.834987392261268 - sys_corr_32: -1.6652291151819656 - sys_corr_33: -0.110390368915607 - sys_corr_34: -3.4314515491461886 - sys_corr_35: 0.35684183647824147 - sys_corr_36: -0.6839077563018439 - sys_corr_37: 1.451111849744071 - sys_corr_38: 1.2669853643638833 - sys_corr_39: 0.7577828845749394 - sys_corr_40: 0.3337250933285648 - sys_corr_41: -0.8344617148138498 - sys_corr_42: -1.2041358816956744 - sys_corr_43: -0.8114700680561984 - sys_corr_44: 0.8651453776234697 - sys_corr_45: -0.45330106742573634 - sys_corr_46: -0.07765156809079407 - sys_corr_47: -0.04508857878979701 - sys_corr_48: -1.3730981891653111 - sys_corr_49: 2.60904482260062 - sys_corr_50: 0.5657841768900205 - sys_corr_51: -0.2255531968187373 - sys_corr_52: -0.8301941731310127 - sys_corr_53: 0.34421034593282257 - sys_corr_54: 3.4744215417789146 - sys_corr_55: 1.9530293434241575 - sys_corr_56: 1.453286240254315 - sys_corr_57: 0.45283966896733524 - sys_corr_58: -2.0047403233811263 - sys_corr_59: 1.0628004503870516 - sys_corr_60: 0.6463504705935358 - sys_corr_61: -0.6149614969628154 - sys_corr_62: 1.2217375674572057 - sys_corr_63: 0.5780069252375425 - sys_corr_64: 1.7926328770834477 - sys_corr_65: 3.078364071226327 - sys_corr_66: -0.39765729222102647 - sys_corr_67: -1.1432926238089949 - sys_corr_68: -0.005263841322687903 - sys_corr_69: 0.7271389928820755 - sys_corr_70: -1.0172979396473616 - sys_corr_71: -0.7807078676196356 - sys_corr_72: 1.2186843637489826 - sys_corr_73: 4.845479132384614 - sys_corr_74: -1.6022748545356496 - sys_corr_75: -0.2554922667181535 - sys_corr_76: -2.070216936904115 - sys_corr_77: 2.2014105738735785 - sys_corr_78: 2.9344350510074344 - sys_corr_79: 2.6922736555606295 - sys_corr_80: -2.700283351746231 - sys_corr_81: -2.9080581369814724 - sys_corr_82: -0.03222022718313779 - sys_corr_83: 5.806253058859983 - sys_corr_84: 32.826284973888455 - sys_corr_85: 23.119946761730507 - sys_corr_86: -3.250260462904715 - sys_corr_87: 0.8703639844907867 - sys_corr_88: 2.3313978148199586 - sys_corr_89: 7.009590120942524 - sys_corr_90: 2.6949125609823223 - sys_corr_91: 36.782589305960194 - sys_corr_92: 4.160511381074827 - sys_corr_93: 3.6089170584112162 - sys_corr_94: -1.386093944364036 - sys_corr_95: -0.5508853764546963 - sys_corr_96: 8.858891672012769 - sys_corr_97: 0.28696122860515977 - sys_corr_98: -45.78819642289921 - sys_corr_99: -10.941059448152494 - sys_corr_100: 1.4064277596728931 - sys_corr_101: -3.317006890544619 - sys_corr_102: 2.6770112821653904 - sys_corr_103: 16.67676992359938 - sys_corr_104: -5.56119720736231 - sys_corr_105: -61.081723944302325 - sys_corr_106: -1.8450460942184705 - sys_corr_107: -70.31471304099585 - sys_corr_108: 1.9081595942385086 - sys_corr_109: -1.9008685938730436 - sys_corr_110: 0.07058388644368466 - sys_corr_111: 1.8213846905707456 - sys_corr_112: -0.28328546663530746 - sys_corr_113: 0.19286608713350936 - sys_corr_114: -0.0034961919924522177 - sys_corr_115: -0.8899173674036812 - sys_corr_116: 1.0539143564813092 - sys_corr_117: -0.12364020058746052 - sys_corr_118: 0.29664914456114727 - sys_corr_119: -0.0004527706659956344 - sys_corr_120: -0.3934897804518805 - sys_corr_121: 0.0029234348148442293 - sys_corr_122: -0.015560926874777404 - sys_corr_123: 0.0733823976448337 - sys_corr_124: -1.438508551137917 - sys_corr_125: -0.22443019762212504 - sys_corr_126: 0.0036498030848751157 - sys_corr_127: -73.59368106325407 - sys_corr_128: 0.541796313789921 - sys_corr_129: 0.054624825545539 - sys_corr_130: 0.008872998123427482 - sys_corr_131: 0.28072208910495455 - sys_corr_132: -0.08953094756984081 +- sys_corr_1: 29.519526451734066 + sys_corr_2: 15.87830667282869 + sys_corr_3: -13.253472916365311 + sys_corr_4: 8.127288236579549 + sys_corr_5: -9.832582693023813 + sys_corr_6: 2.966812282291192 + sys_corr_7: -7.621971938980687 + sys_corr_8: -0.18718048855932265 + sys_corr_9: -9.465198248999684 + sys_corr_10: 1.0977423924817913 + sys_corr_11: -1.7137261476693924 + sys_corr_12: -8.364310803560087 + sys_corr_13: -5.773207932912124 + sys_corr_14: -0.364223632341017 + sys_corr_15: -11.652099769312288 + sys_corr_16: 1.7864731306372552 + sys_corr_17: -0.2929533158686036 + sys_corr_18: 2.5603150749226784 + sys_corr_19: -0.026387917299225853 + sys_corr_20: -0.6066078828785071 + sys_corr_21: -1.3417341625882881 + sys_corr_22: 6.628180913434726 + sys_corr_23: 4.808764159847082 + sys_corr_24: -1.3591181235275027 + sys_corr_25: 2.519326964762927 + sys_corr_26: 6.317153381482495 + sys_corr_27: 0.16242294270360885 + sys_corr_28: -0.6954965694963752 + sys_corr_29: 1.9395380063806336 + sys_corr_30: 4.601287169045019 + sys_corr_31: -1.8349873922613116 + sys_corr_32: 1.6652291151819825 + sys_corr_33: 0.11039036891449076 + sys_corr_34: -3.431451549146428 + sys_corr_35: 0.3568418364781554 + sys_corr_36: -0.6839077563017776 + sys_corr_37: -1.4511118497445186 + sys_corr_38: -1.2669853643636424 + sys_corr_39: -0.7577828845751455 + sys_corr_40: -0.33372509332847833 + sys_corr_41: -0.8344617148141944 + sys_corr_42: 1.204135881695659 + sys_corr_43: -0.8114700680556168 + sys_corr_44: 0.8651453776236251 + sys_corr_45: 0.45330106742557236 + sys_corr_46: 0.0776515680905074 + sys_corr_47: 0.04508857878981824 + sys_corr_48: 1.3730981891660483 + sys_corr_49: -2.6090448226001723 + sys_corr_50: 0.5657841768902184 + sys_corr_51: -0.22555319681930258 + sys_corr_52: -0.8301941731307774 + sys_corr_53: -0.3442103459329574 + sys_corr_54: -3.4744215417780855 + sys_corr_55: -1.95302934342343 + sys_corr_56: -1.453286240254726 + sys_corr_57: 0.4528396689684502 + sys_corr_58: 2.0047403233821415 + sys_corr_59: 1.0628004503856778 + sys_corr_60: -0.6463504705935058 + sys_corr_61: 0.6149614969628125 + sys_corr_62: -1.2217375674576496 + sys_corr_63: 0.5780069252360475 + sys_corr_64: 1.7926328770842401 + sys_corr_65: 3.0783640712280955 + sys_corr_66: 0.39765729222042984 + sys_corr_67: -1.1432926238095635 + sys_corr_68: 0.005263841323517183 + sys_corr_69: 0.7271389928817362 + sys_corr_70: 1.0172979396473916 + sys_corr_71: -0.7807078676191291 + sys_corr_72: -1.2186843637489309 + sys_corr_73: -4.84547913238429 + sys_corr_74: -1.6022748545350123 + sys_corr_75: -0.25549226671771647 + sys_corr_76: -2.0702169369044556 + sys_corr_77: -2.201410573873584 + sys_corr_78: 2.700283351746517 + sys_corr_79: 2.934435051007613 + sys_corr_80: 2.6922736555602778 + sys_corr_81: 2.9080581369809417 + sys_corr_82: 0.03222022718313567 + sys_corr_83: 5.80625305886083 + sys_corr_84: -32.82628497389132 + sys_corr_85: 23.119946761725934 + sys_corr_86: 3.250260462912673 + sys_corr_87: -0.8703639844906363 + sys_corr_88: 2.331397814816488 + sys_corr_89: 2.6949125609821305 + sys_corr_90: 7.009590120942575 + sys_corr_91: 36.78258930596 + sys_corr_92: -4.160511381075785 + sys_corr_93: 3.6089170584119867 + sys_corr_94: -1.3860939443651399 + sys_corr_95: -0.5508853764524301 + sys_corr_96: -8.858891672010854 + sys_corr_97: 0.28696122860414386 + sys_corr_98: 45.78819642289853 + sys_corr_99: -10.941059448152892 + sys_corr_100: -3.317006890544907 + sys_corr_101: -2.6770112821678245 + sys_corr_102: 16.676769923625315 + sys_corr_103: 5.561197207353848 + sys_corr_104: 61.08172394430046 + sys_corr_105: -1.4064277596723773 + sys_corr_106: -1.8450460942185103 + sys_corr_107: 1.908159594238976 + sys_corr_108: -1.9008685938727325 + sys_corr_109: -0.07058388644384195 + sys_corr_110: 70.31471304100083 + sys_corr_111: -1.8213846905707531 + sys_corr_112: -0.2832854666352536 + sys_corr_113: -0.1928660871334915 + sys_corr_114: -0.003496191992450915 + sys_corr_115: -0.8899173674035141 + sys_corr_116: -1.0539143564813582 + sys_corr_117: 0.12364020058746582 + sys_corr_118: -0.29664914456109953 + sys_corr_119: 0.00045277066600460245 + sys_corr_120: 0.39348978045191185 + sys_corr_121: -0.002923434814859085 + sys_corr_122: 0.07338239764486894 + sys_corr_123: -0.015560926874772148 + sys_corr_124: -1.4385085511379296 + sys_corr_125: -0.2244301976221409 + sys_corr_126: -0.0036498030848731576 + sys_corr_127: -73.59368106324396 + sys_corr_128: 0.5417963137900702 + sys_corr_129: 0.054624825545623396 + sys_corr_130: 0.008872998123437498 + sys_corr_131: -0.280722089104967 + sys_corr_132: -0.08953094756986323 stat: 0.0 luminosity: 74.42028 -- sys_corr_1: 31.517263806878113 - sys_corr_2: 10.20946806383944 - sys_corr_3: -15.535805139826225 - sys_corr_4: 18.20162584948493 - sys_corr_5: -8.232440798129492 - sys_corr_6: 3.8256098977716877 - sys_corr_7: -3.983561593727801 - sys_corr_8: -1.5097739367603435 - sys_corr_9: -15.400004651465162 - sys_corr_10: 3.061276051907883 - sys_corr_11: -2.771954406323375 - sys_corr_12: -5.646753161999245 - sys_corr_13: -6.181201354631995 - sys_corr_14: -3.830322034502026 - sys_corr_15: -13.021718825409922 - sys_corr_16: 7.390972684774616 - sys_corr_17: 4.406310031671472 - sys_corr_18: 9.767575776129794 - sys_corr_19: -2.7602278269966427 - sys_corr_20: -3.201723577895159 - sys_corr_21: -1.1353537048860627 - sys_corr_22: 5.465618598418021 - sys_corr_23: 4.856300644130231 - sys_corr_24: -1.3731637966364951 - sys_corr_25: 0.4918332215582901 - sys_corr_26: 2.0788385806542142 - sys_corr_27: 1.9542879970794225 - sys_corr_28: 0.9506816194437651 - sys_corr_29: -1.5133856020357581 - sys_corr_30: 6.5483779347042805 - sys_corr_31: -3.9305587737041776 - sys_corr_32: -1.634711727263135 - sys_corr_33: 0.01697184812949878 - sys_corr_34: -2.088769979345288 - sys_corr_35: 1.233581931730372 - sys_corr_36: 0.060882818607453607 - sys_corr_37: 0.8395705202663801 - sys_corr_38: 1.2091237745624805 - sys_corr_39: 0.39961830963483824 - sys_corr_40: 0.6884915958311993 - sys_corr_41: -2.007480929722767 - sys_corr_42: -1.229223876194951 - sys_corr_43: -2.20179922869035 - sys_corr_44: 0.037276115213850596 - sys_corr_45: 0.7002484217287955 - sys_corr_46: 0.10909353206777307 - sys_corr_47: 0.864415745846044 - sys_corr_48: 0.5492312376070526 - sys_corr_49: 1.3764020991760932 - sys_corr_50: 0.9407797917004613 - sys_corr_51: -0.7074613460551771 - sys_corr_52: 0.14091900472138055 - sys_corr_53: -0.8992893443644788 - sys_corr_54: 2.7661369226222368 - sys_corr_55: 1.2596400269990953 - sys_corr_56: 1.103341166804532 - sys_corr_57: 1.2389529274216777 - sys_corr_58: -1.8055219109381166 - sys_corr_59: 1.027317508961964 - sys_corr_60: 0.034275089103830356 - sys_corr_61: -0.3923981216093184 - sys_corr_62: 1.8806708741452107 - sys_corr_63: -0.05021074104731268 - sys_corr_64: 1.6560922918464003 - sys_corr_65: 2.4077540933510413 - sys_corr_66: -0.26088225696671213 - sys_corr_67: -0.630295316853337 - sys_corr_68: -0.5577001057674699 - sys_corr_69: 1.3822416122553143 - sys_corr_70: -0.38506477006796247 - sys_corr_71: -0.5103951839299334 - sys_corr_72: 1.670655826159204 - sys_corr_73: 5.036691830148735 - sys_corr_74: -1.2567927447321927 - sys_corr_75: 1.9468176099015582 - sys_corr_76: -2.423884132539286 - sys_corr_77: 3.160019385421894 - sys_corr_78: 2.833009717283246 - sys_corr_79: 2.652242155827433 - sys_corr_80: -3.7519943246914784 - sys_corr_81: -3.7823171376909204 - sys_corr_82: -0.6936708319783496 - sys_corr_83: 6.848765220957367 - sys_corr_84: 34.18784867099596 - sys_corr_85: 23.736559662608833 - sys_corr_86: -2.8293130859246496 - sys_corr_87: 0.6521513634725817 - sys_corr_88: 1.9317737543745537 - sys_corr_89: 5.369173747663418 - sys_corr_90: 3.5507801523504847 - sys_corr_91: 37.960444590289484 - sys_corr_92: 4.513786745732921 - sys_corr_93: -3.9894980054596774 - sys_corr_94: -2.3602337382516976 - sys_corr_95: -1.4662722543695212 - sys_corr_96: -2.234759882105999 - sys_corr_97: 17.351270469069185 - sys_corr_98: 26.127343600294143 - sys_corr_99: 80.18892279258935 - sys_corr_100: 2.8779474952108246 - sys_corr_101: -3.184981909258923 - sys_corr_102: -3.610391696413577 - sys_corr_103: 16.834337845565948 - sys_corr_104: -13.007245207069113 - sys_corr_105: -56.74491772666496 - sys_corr_106: -1.4916207178821563 - sys_corr_107: -24.171402905376826 - sys_corr_108: 2.0090171679325723 - sys_corr_109: -0.8395506045797925 - sys_corr_110: 0.01437441061351913 - sys_corr_111: 1.5523874867955814 - sys_corr_112: -0.18410998319032543 - sys_corr_113: 0.14133005916852986 - sys_corr_114: -0.0063344594629247165 - sys_corr_115: -0.8179063650620814 - sys_corr_116: 0.8742642321991345 - sys_corr_117: -0.1982290434209726 - sys_corr_118: 0.2735904864612047 - sys_corr_119: -0.004998212291496336 - sys_corr_120: -0.33132917518160404 - sys_corr_121: 0.0035309780175665387 - sys_corr_122: -0.008323828950920624 - sys_corr_123: 0.07759192411979467 - sys_corr_124: -1.3213708887677835 - sys_corr_125: -0.20885931178398306 - sys_corr_126: -0.004724480437452548 - sys_corr_127: 72.22411561878229 - sys_corr_128: 0.3673665419413276 - sys_corr_129: 0.04051400553356468 - sys_corr_130: 0.0199472118431603 - sys_corr_131: 0.255616406528416 - sys_corr_132: -0.21745456810779906 +- sys_corr_1: 31.517263806878184 + sys_corr_2: 10.20946806383945 + sys_corr_3: -15.535805139826238 + sys_corr_4: 18.201625849484955 + sys_corr_5: -8.232440798129566 + sys_corr_6: 3.825609897771722 + sys_corr_7: -3.983561593727962 + sys_corr_8: -1.5097739367608793 + sys_corr_9: -15.400004651465176 + sys_corr_10: 3.061276051908629 + sys_corr_11: -2.7719544063236876 + sys_corr_12: -5.646753161998971 + sys_corr_13: 6.181201354632333 + sys_corr_14: 3.830322034501773 + sys_corr_15: 13.021718825410009 + sys_corr_16: -7.390972684774223 + sys_corr_17: 4.406310031671234 + sys_corr_18: -9.767575776129874 + sys_corr_19: -2.7602278269965397 + sys_corr_20: -3.201723577894954 + sys_corr_21: -1.1353537048860223 + sys_corr_22: 5.465618598417975 + sys_corr_23: 4.856300644130235 + sys_corr_24: -1.3731637966366992 + sys_corr_25: 0.49183322155830417 + sys_corr_26: 2.0788385806541787 + sys_corr_27: 1.9542879970793925 + sys_corr_28: 0.9506816194437642 + sys_corr_29: -1.5133856020358853 + sys_corr_30: 6.548377934704238 + sys_corr_31: -3.9305587737042007 + sys_corr_32: 1.6347117272633962 + sys_corr_33: -0.016971848129538034 + sys_corr_34: -2.088769979345262 + sys_corr_35: 1.233581931730383 + sys_corr_36: 0.06088281860762017 + sys_corr_37: -0.8395705202665212 + sys_corr_38: -1.2091237745624412 + sys_corr_39: -0.3996183096347858 + sys_corr_40: -0.6884915958311163 + sys_corr_41: -2.007480929722946 + sys_corr_42: 1.2292238761947554 + sys_corr_43: -2.2017992286896426 + sys_corr_44: 0.0372761152140486 + sys_corr_45: -0.7002484217288685 + sys_corr_46: -0.10909353206717406 + sys_corr_47: -0.8644157458460761 + sys_corr_48: -0.5492312376069884 + sys_corr_49: -1.376402099176287 + sys_corr_50: 0.9407797917003574 + sys_corr_51: -0.7074613460548973 + sys_corr_52: 0.1409190047218108 + sys_corr_53: 0.8992893443637858 + sys_corr_54: -2.7661369226222896 + sys_corr_55: -1.259640026998232 + sys_corr_56: -1.1033411668035742 + sys_corr_57: 1.2389529274221607 + sys_corr_58: 1.8055219109389147 + sys_corr_59: 1.0273175089607973 + sys_corr_60: -0.03427508910345293 + sys_corr_61: 0.39239812160952875 + sys_corr_62: -1.8806708741462033 + sys_corr_63: -0.0502107410483376 + sys_corr_64: 1.6560922918465686 + sys_corr_65: 2.4077540933523993 + sys_corr_66: 0.26088225696650924 + sys_corr_67: -0.6302953168535996 + sys_corr_68: 0.5577001057689469 + sys_corr_69: 1.382241612255386 + sys_corr_70: 0.38506477006801587 + sys_corr_71: -0.510395183930757 + sys_corr_72: -1.6706558261587052 + sys_corr_73: -5.0366918301485315 + sys_corr_74: -1.2567927447321514 + sys_corr_75: 1.9468176099024472 + sys_corr_76: -2.4238841325385008 + sys_corr_77: -3.1600193854219256 + sys_corr_78: 3.7519943246916427 + sys_corr_79: 2.833009717283 + sys_corr_80: 2.6522421558274183 + sys_corr_81: 3.7823171376903875 + sys_corr_82: 0.6936708319782204 + sys_corr_83: 6.84876522095834 + sys_corr_84: -34.187848670999145 + sys_corr_85: 23.73655966260398 + sys_corr_86: 2.8293130859330513 + sys_corr_87: -0.6521513634724312 + sys_corr_88: 1.9317737543724445 + sys_corr_89: 3.550780152350245 + sys_corr_90: 5.369173747663442 + sys_corr_91: 37.960444590289136 + sys_corr_92: -4.513786745733447 + sys_corr_93: -3.9894980054596307 + sys_corr_94: -2.36023373824947 + sys_corr_95: -1.4662722543726796 + sys_corr_96: 2.234759882105433 + sys_corr_97: 17.351270469073473 + sys_corr_98: -26.127343600289382 + sys_corr_99: 80.18892279258993 + sys_corr_100: -3.1849819092602294 + sys_corr_101: 3.610391696409145 + sys_corr_102: 16.834337845585733 + sys_corr_103: 13.007245207083002 + sys_corr_104: 56.744917726660525 + sys_corr_105: -2.8779474952114374 + sys_corr_106: -1.4916207178828533 + sys_corr_107: 2.009017167932498 + sys_corr_108: -0.8395506045798835 + sys_corr_109: -0.014374410613531804 + sys_corr_110: 24.171402905366154 + sys_corr_111: -1.5523874867955099 + sys_corr_112: -0.18410998319028793 + sys_corr_113: -0.14133005916839111 + sys_corr_114: -0.006334459462920806 + sys_corr_115: -0.8179063650620354 + sys_corr_116: -0.874264232199202 + sys_corr_117: 0.19822904342102854 + sys_corr_118: -0.27359048646116674 + sys_corr_119: 0.004998212291491396 + sys_corr_120: 0.33132917518160104 + sys_corr_121: -0.0035309780175575957 + sys_corr_122: 0.07759192411979772 + sys_corr_123: -0.00832382895092408 + sys_corr_124: -1.3213708887677516 + sys_corr_125: -0.20885931178395759 + sys_corr_126: 0.004724480437443903 + sys_corr_127: 72.22411561878697 + sys_corr_128: 0.3673665419413022 + sys_corr_129: 0.04051400553360371 + sys_corr_130: 0.01994721184316654 + sys_corr_131: -0.25561640652843676 + sys_corr_132: -0.21745456810783775 stat: 0.0 luminosity: 77.47535400000001 -- sys_corr_1: 29.79570751069888 - sys_corr_2: 13.443625996969665 - sys_corr_3: -16.67465597713919 - sys_corr_4: 22.039214292259214 - sys_corr_5: -3.7886576290526364 - sys_corr_6: 3.98851196412018 - sys_corr_7: 0.4893612711947332 - sys_corr_8: -7.293339841904476 - sys_corr_9: -9.089214593803732 - sys_corr_10: -0.48387386026619716 - sys_corr_11: -0.7862660291750762 - sys_corr_12: 6.55802812408276 - sys_corr_13: -8.157410806443515 - sys_corr_14: 6.747616330101556 - sys_corr_15: 2.4908969095849143 - sys_corr_16: -12.741003308701135 - sys_corr_17: -2.963010023654613 - sys_corr_18: -11.331187196909513 - sys_corr_19: -2.080235653382559 - sys_corr_20: -1.674651433023011 - sys_corr_21: -3.9935331757199086 - sys_corr_22: 3.1338272596000296 - sys_corr_23: 4.208056370800005 - sys_corr_24: 1.7917545348830506 - sys_corr_25: 0.6533959363308723 - sys_corr_26: -0.12325711429337295 - sys_corr_27: 3.035857739125992 - sys_corr_28: 2.139834096425775 - sys_corr_29: -3.9391625546435236 - sys_corr_30: 6.159360570826426 - sys_corr_31: -4.951433165578249 - sys_corr_32: -2.4755803640824605 - sys_corr_33: -0.4865154418671796 - sys_corr_34: -5.295897270314854 - sys_corr_35: 1.2878436008670249 - sys_corr_36: -0.77648333964021 - sys_corr_37: 1.3730155426278692 - sys_corr_38: 0.6949387003174573 - sys_corr_39: 3.0179001041310523 - sys_corr_40: -0.02048183419764272 - sys_corr_41: -1.144126665264268 - sys_corr_42: -1.6918185515292443 - sys_corr_43: 0.9126833012697919 - sys_corr_44: 2.0905493799925763 - sys_corr_45: -1.0314902358132563 - sys_corr_46: 0.4204902861750526 - sys_corr_47: -1.1685429710605941 - sys_corr_48: -1.6510539981958636 - sys_corr_49: -1.3020895399144594 - sys_corr_50: 0.3620662969740192 - sys_corr_51: -0.2358625367417144 - sys_corr_52: -0.7786127838358622 - sys_corr_53: 0.19367623387421795 - sys_corr_54: 1.4693895185542143 - sys_corr_55: 1.5006129191409174 - sys_corr_56: 0.25934061478804676 - sys_corr_57: 1.9111942525783294 - sys_corr_58: -2.443839145498551 - sys_corr_59: 1.4086741559953273 - sys_corr_60: -0.008146670583890838 - sys_corr_61: -0.2708148508331565 - sys_corr_62: 2.986437577184349 - sys_corr_63: -0.343858218246476 - sys_corr_64: 1.5323441496538168 - sys_corr_65: 1.2213943323617489 - sys_corr_66: 0.282260639287231 - sys_corr_67: -0.25694476911841196 - sys_corr_68: 0.3041035089270158 - sys_corr_69: 2.212637477561928 - sys_corr_70: -0.05314160545940233 - sys_corr_71: -0.7641552081688302 - sys_corr_72: 1.326808299199248 - sys_corr_73: 3.5124490839451887 - sys_corr_74: -1.154068352929228 - sys_corr_75: 2.258489575694343 - sys_corr_76: -3.7247056927305104 - sys_corr_77: 4.434827037273364 - sys_corr_78: 3.31347376933964 - sys_corr_79: 2.3022179039589465 - sys_corr_80: -3.5679401748035895 - sys_corr_81: -3.7202326175090077 - sys_corr_82: 0.488965798013948 - sys_corr_83: 6.418960789083185 - sys_corr_84: 30.97178985034519 - sys_corr_85: 26.402437445430593 - sys_corr_86: -3.6946870248696198 - sys_corr_87: -0.9552525017793968 - sys_corr_88: 2.8346458644946613 - sys_corr_89: 5.436202879372325 - sys_corr_90: 3.819241946370424 - sys_corr_91: 37.07491316117248 - sys_corr_92: 4.03481885126347 - sys_corr_93: -10.60334568824621 - sys_corr_94: -10.76068631442276 - sys_corr_95: -2.620581718850582 - sys_corr_96: 6.8137394111146445 - sys_corr_97: 56.40744518508876 - sys_corr_98: -55.43487961825652 - sys_corr_99: -83.7997372678523 - sys_corr_100: 1.4678557069914138 - sys_corr_101: 0.9993527126300292 - sys_corr_102: -16.82869433378732 - sys_corr_103: -1.910137762214642 - sys_corr_104: -3.650146815626122 - sys_corr_105: -9.392954946139083 - sys_corr_106: -1.0105784229127854 - sys_corr_107: 5.3563734323922185 - sys_corr_108: 0.4433839171822643 - sys_corr_109: -1.4192271664258904 - sys_corr_110: -0.5188009222764571 - sys_corr_111: 0.4478264470083079 - sys_corr_112: 0.156389336957332 - sys_corr_113: -0.061187095253349734 - sys_corr_114: -0.006898026515364428 - sys_corr_115: -0.800674173373809 - sys_corr_116: 0.36218799573955224 - sys_corr_117: 0.2730767968626877 - sys_corr_118: 0.3172980032922165 - sys_corr_119: -0.0058440258277098 - sys_corr_120: 0.6188798556744024 - sys_corr_121: -0.00017014288179098197 - sys_corr_122: 0.013445016487935358 - sys_corr_123: 0.10279489392806307 - sys_corr_124: -0.7844322610545958 - sys_corr_125: -0.17891306816398123 - sys_corr_126: -0.01434689323006679 - sys_corr_127: 63.68826768311179 - sys_corr_128: 0.5667064213011856 - sys_corr_129: 0.15648936678525444 - sys_corr_130: 0.013247730627808584 - sys_corr_131: 0.11500007560683617 - sys_corr_132: -0.24092371702743057 +- sys_corr_1: 29.79570751069889 + sys_corr_2: 13.443625996969647 + sys_corr_3: -16.674655977139214 + sys_corr_4: 22.0392142922592 + sys_corr_5: -3.788657629052696 + sys_corr_6: 3.9885119641201747 + sys_corr_7: 0.48936127119475864 + sys_corr_8: -7.293339841904737 + sys_corr_9: -9.089214593803769 + sys_corr_10: -0.48387386026593 + sys_corr_11: -0.786266029174591 + sys_corr_12: 6.558028124082776 + sys_corr_13: 8.157410806443265 + sys_corr_14: -6.747616330101549 + sys_corr_15: -2.4908969095848406 + sys_corr_16: 12.741003308700842 + sys_corr_17: -2.9630100236543644 + sys_corr_18: 11.331187196909772 + sys_corr_19: -2.08023565338248 + sys_corr_20: -1.674651433023408 + sys_corr_21: -3.9935331757198984 + sys_corr_22: 3.1338272595999173 + sys_corr_23: 4.208056370800128 + sys_corr_24: 1.7917545348831312 + sys_corr_25: 0.6533959363308607 + sys_corr_26: -0.12325711429350823 + sys_corr_27: 3.035857739126005 + sys_corr_28: 2.139834096425867 + sys_corr_29: -3.939162554643626 + sys_corr_30: 6.1593605708262364 + sys_corr_31: -4.95143316557816 + sys_corr_32: 2.4755803640825427 + sys_corr_33: 0.4865154418664372 + sys_corr_34: -5.29589727031451 + sys_corr_35: 1.2878436008669476 + sys_corr_36: -0.776483339639716 + sys_corr_37: -1.3730155426280848 + sys_corr_38: -0.6949387003175128 + sys_corr_39: -3.017900104131289 + sys_corr_40: 0.020481834197549297 + sys_corr_41: -1.144126665264293 + sys_corr_42: 1.691818551529529 + sys_corr_43: 0.912683301270812 + sys_corr_44: 2.0905493799920136 + sys_corr_45: 1.031490235812843 + sys_corr_46: -0.4204902861756967 + sys_corr_47: 1.1685429710610462 + sys_corr_48: 1.6510539981957983 + sys_corr_49: 1.3020895399145722 + sys_corr_50: 0.36206629697344767 + sys_corr_51: -0.23586253674249674 + sys_corr_52: -0.7786127838368636 + sys_corr_53: -0.19367623387471133 + sys_corr_54: -1.469389518553374 + sys_corr_55: -1.5006129191407025 + sys_corr_56: -0.25934061478767856 + sys_corr_57: 1.9111942525781824 + sys_corr_58: 2.4438391454994135 + sys_corr_59: 1.4086741559928424 + sys_corr_60: 0.008146670583850463 + sys_corr_61: 0.2708148508322239 + sys_corr_62: -2.986437577184727 + sys_corr_63: -0.34385821824843527 + sys_corr_64: 1.5323441496542665 + sys_corr_65: 1.2213943323638847 + sys_corr_66: -0.2822606392872416 + sys_corr_67: -0.2569447691186729 + sys_corr_68: -0.3041035089257543 + sys_corr_69: 2.2126374775619326 + sys_corr_70: 0.05314160545871028 + sys_corr_71: -0.7641552081685257 + sys_corr_72: -1.3268082991990096 + sys_corr_73: -3.5124490839453166 + sys_corr_74: -1.1540683529293412 + sys_corr_75: 2.258489575697289 + sys_corr_76: -3.7247056927297373 + sys_corr_77: -4.434827037273465 + sys_corr_78: 3.5679401748048027 + sys_corr_79: 3.3134737693395255 + sys_corr_80: 2.3022179039589905 + sys_corr_81: 3.720232617507766 + sys_corr_82: -0.4889657980138617 + sys_corr_83: 6.418960789083996 + sys_corr_84: -30.971789850348607 + sys_corr_85: 26.40243744542675 + sys_corr_86: 3.694687024878067 + sys_corr_87: 0.9552525017793783 + sys_corr_88: 2.8346458644905947 + sys_corr_89: 3.8192419463701257 + sys_corr_90: 5.436202879372175 + sys_corr_91: 37.07491316117207 + sys_corr_92: -4.034818851264395 + sys_corr_93: -10.603345688245438 + sys_corr_94: -10.760686314422893 + sys_corr_95: -2.6205817188503593 + sys_corr_96: -6.813739411111545 + sys_corr_97: 56.40744518508296 + sys_corr_98: 55.43487961824973 + sys_corr_99: -83.79973726785322 + sys_corr_100: 0.9993527126312943 + sys_corr_101: 16.82869433379177 + sys_corr_102: -1.9101377621859965 + sys_corr_103: 3.650146815619931 + sys_corr_104: 9.392954946126038 + sys_corr_105: -1.4678557069910345 + sys_corr_106: -1.0105784229120147 + sys_corr_107: 0.44338391718243364 + sys_corr_108: -1.4192271664258203 + sys_corr_109: 0.5188009222764316 + sys_corr_110: -5.356373432393263 + sys_corr_111: -0.4478264470084219 + sys_corr_112: 0.15638933695731877 + sys_corr_113: 0.061187095253346535 + sys_corr_114: -0.006898026515360266 + sys_corr_115: -0.800674173373751 + sys_corr_116: -0.3621879957396758 + sys_corr_117: -0.27307679686267355 + sys_corr_118: -0.3172980032922565 + sys_corr_119: 0.005844025827715064 + sys_corr_120: -0.6188798556744382 + sys_corr_121: 0.000170142881804045 + sys_corr_122: 0.10279489392809074 + sys_corr_123: 0.013445016487925695 + sys_corr_124: -0.7844322610546124 + sys_corr_125: -0.17891306816398686 + sys_corr_126: 0.014346893230057396 + sys_corr_127: 63.68826768311037 + sys_corr_128: 0.5667064213012558 + sys_corr_129: 0.1564893667852725 + sys_corr_130: 0.013247730627807172 + sys_corr_131: -0.11500007560687746 + sys_corr_132: -0.24092371702744833 stat: 0.0 luminosity: 72.73794000000001 -- sys_corr_1: 30.28239530997315 - sys_corr_2: 11.09304306451055 - sys_corr_3: -17.366348029287778 - sys_corr_4: 19.315738932803406 - sys_corr_5: 0.9579489947415615 - sys_corr_6: 4.702318529250414 - sys_corr_7: 3.256704204071208 - sys_corr_8: -4.954789185908033 - sys_corr_9: -2.960464945152972 - sys_corr_10: -7.996609290846979 - sys_corr_11: -0.3703088417943704 - sys_corr_12: -6.890380937323636 - sys_corr_13: 6.374974945887739 - sys_corr_14: -4.6142470607377195 - sys_corr_15: 0.7732711274802926 - sys_corr_16: -0.08839664213159748 - sys_corr_17: 0.714791278369352 - sys_corr_18: 9.059311858817956 - sys_corr_19: 0.8848261837499883 - sys_corr_20: -2.2179034749990434 - sys_corr_21: -3.61732974101107 - sys_corr_22: 4.228729678560429 - sys_corr_23: 3.2738116278369276 - sys_corr_24: 2.3252939289627106 - sys_corr_25: -2.4698614990637893 - sys_corr_26: -3.5862917291330456 - sys_corr_27: 5.244284884186056 - sys_corr_28: -1.8286367824704084 - sys_corr_29: 0.62634755502181 - sys_corr_30: 6.090745130212268 - sys_corr_31: -4.568352627963288 - sys_corr_32: -0.7155353336667616 - sys_corr_33: 0.9001729904337092 - sys_corr_34: -1.932372299122015 - sys_corr_35: 0.5485033460043585 - sys_corr_36: -0.2671479566680526 - sys_corr_37: -0.6952939107155525 - sys_corr_38: 0.40025804198219717 - sys_corr_39: -1.305933528513234 - sys_corr_40: -0.480776772885759 - sys_corr_41: -2.053907494965027 - sys_corr_42: -0.3309843601859903 - sys_corr_43: -0.7508558340568859 - sys_corr_44: 1.6101897803288738 - sys_corr_45: 0.9026445896708203 - sys_corr_46: 1.0967305504779115 - sys_corr_47: 0.2327511162589317 - sys_corr_48: 0.3508257883990483 - sys_corr_49: -0.09080871918215334 - sys_corr_50: 1.6577466317593965 - sys_corr_51: -0.006358998686656836 - sys_corr_52: -1.025684395926692 - sys_corr_53: -0.16984671117025435 - sys_corr_54: 1.3473997884820081 - sys_corr_55: 1.6848431053978628 - sys_corr_56: 0.882117935370208 - sys_corr_57: 0.8650570735848262 - sys_corr_58: -1.3604884857657646 - sys_corr_59: -0.3257835788339128 - sys_corr_60: 0.20607793740446012 - sys_corr_61: 0.21702954352457438 - sys_corr_62: 1.003071894569354 - sys_corr_63: 0.5250177451203089 - sys_corr_64: 1.4336694028389114 - sys_corr_65: 1.6197897750298011 - sys_corr_66: 0.3832095677700037 - sys_corr_67: -0.023276923264417496 - sys_corr_68: -0.9286495812175817 - sys_corr_69: 0.46786264262971716 - sys_corr_70: 0.8950353995397253 - sys_corr_71: -0.04739103812053909 - sys_corr_72: 1.1547532450789373 - sys_corr_73: 1.1999353582206427 - sys_corr_74: 0.24938045055879143 - sys_corr_75: 3.4518532539795967 - sys_corr_76: -2.445709967437082 - sys_corr_77: 5.099151084705871 - sys_corr_78: 1.6981675293697192 - sys_corr_79: 1.5417000482831387 - sys_corr_80: -3.34614444131968 - sys_corr_81: -3.2433687019806663 - sys_corr_82: 0.28719609317393574 - sys_corr_83: 5.304494191860388 - sys_corr_84: 21.774610492389364 - sys_corr_85: 16.780309788463235 - sys_corr_86: -2.7432041912848844 - sys_corr_87: -0.4995957712420463 - sys_corr_88: 2.0843189745295922 - sys_corr_89: 2.8995691220448814 - sys_corr_90: 2.845811839458001 - sys_corr_91: 24.238864154394463 - sys_corr_92: 2.5172455410907575 - sys_corr_93: -4.074820014048721 - sys_corr_94: -9.107595433008209 - sys_corr_95: 0.5777722101847691 - sys_corr_96: -0.43290683810053826 - sys_corr_97: 18.2014822148366 - sys_corr_98: 2.8464133212418488 - sys_corr_99: 25.438375788211474 - sys_corr_100: -0.013331896064965489 - sys_corr_101: 11.275366561658029 - sys_corr_102: -57.1437146405185 - sys_corr_103: -53.00662134950887 - sys_corr_104: 1.621558437929308 - sys_corr_105: 65.54842065737067 - sys_corr_106: -1.9250882490662038 - sys_corr_107: -68.42750125507565 - sys_corr_108: 0.6810929067331508 - sys_corr_109: 0.036455212553882635 - sys_corr_110: -0.8167479926312506 - sys_corr_111: -1.6179291822432007 - sys_corr_112: 0.34815517727213297 - sys_corr_113: -0.05392224309322054 - sys_corr_114: -0.010908787575879448 - sys_corr_115: -0.7351864007891394 - sys_corr_116: 0.07672758469994323 - sys_corr_117: 0.22391871865504778 - sys_corr_118: 0.3420131276946161 - sys_corr_119: -0.017897162020306417 - sys_corr_120: 0.6274576325239735 - sys_corr_121: 0.0006572940597538861 - sys_corr_122: 0.036451967486462906 - sys_corr_123: 0.12929498746510157 - sys_corr_124: -0.5812812957223417 - sys_corr_125: -0.1459409288152219 - sys_corr_126: -0.013541968775927754 - sys_corr_127: -1.76853672079653 - sys_corr_128: -0.1374596596811661 - sys_corr_129: 0.2003074733699715 - sys_corr_130: 0.016338617238490928 - sys_corr_131: 0.029188597683376276 - sys_corr_132: -0.3839248388676034 +- sys_corr_1: 30.28239530997319 + sys_corr_2: 11.093043064510539 + sys_corr_3: -17.36634802928777 + sys_corr_4: 19.31573893280347 + sys_corr_5: 0.9579489947415093 + sys_corr_6: 4.702318529250388 + sys_corr_7: 3.256704204071226 + sys_corr_8: -4.954789185908106 + sys_corr_9: -2.960464945153 + sys_corr_10: -7.996609290846823 + sys_corr_11: -0.3703088417949349 + sys_corr_12: -6.8903809373236635 + sys_corr_13: -6.374974945887693 + sys_corr_14: 4.6142470607377275 + sys_corr_15: -0.7732711274803589 + sys_corr_16: 0.08839664213181352 + sys_corr_17: 0.7147912783692574 + sys_corr_18: -9.059311858817946 + sys_corr_19: 0.8848261837498761 + sys_corr_20: -2.217903474998975 + sys_corr_21: -3.617329741011045 + sys_corr_22: 4.228729678560182 + sys_corr_23: 3.2738116278370253 + sys_corr_24: 2.325293928962624 + sys_corr_25: -2.4698614990638283 + sys_corr_26: -3.586291729133162 + sys_corr_27: 5.244284884186136 + sys_corr_28: -1.8286367824705558 + sys_corr_29: 0.6263475550218487 + sys_corr_30: 6.090745130212458 + sys_corr_31: -4.568352627963351 + sys_corr_32: 0.7155353336664366 + sys_corr_33: -0.9001729904336537 + sys_corr_34: -1.932372299122272 + sys_corr_35: 0.5485033460038702 + sys_corr_36: -0.2671479566680345 + sys_corr_37: 0.6952939107154306 + sys_corr_38: -0.4002580419821321 + sys_corr_39: 1.3059335285133087 + sys_corr_40: 0.48077677288587173 + sys_corr_41: -2.053907494965345 + sys_corr_42: 0.3309843601853994 + sys_corr_43: -0.7508558340567377 + sys_corr_44: 1.610189780329061 + sys_corr_45: -0.9026445896714036 + sys_corr_46: -1.096730550477281 + sys_corr_47: -0.2327511162587169 + sys_corr_48: -0.350825788398926 + sys_corr_49: 0.090808719182542 + sys_corr_50: 1.6577466317593592 + sys_corr_51: -0.006358998686800692 + sys_corr_52: -1.025684395926504 + sys_corr_53: 0.16984671117040046 + sys_corr_54: -1.3473997884813056 + sys_corr_55: -1.684843105397259 + sys_corr_56: -0.8821179353711215 + sys_corr_57: 0.865057073585475 + sys_corr_58: 1.3604884857658017 + sys_corr_59: -0.3257835788343155 + sys_corr_60: -0.2060779374046778 + sys_corr_61: -0.21702954352486026 + sys_corr_62: -1.0030718945689072 + sys_corr_63: 0.5250177451199898 + sys_corr_64: 1.433669402839409 + sys_corr_65: 1.6197897750307446 + sys_corr_66: -0.38320956777040527 + sys_corr_67: -0.023276923264768705 + sys_corr_68: 0.9286495812175203 + sys_corr_69: 0.467862642630335 + sys_corr_70: -0.8950353995398768 + sys_corr_71: -0.04739103812085634 + sys_corr_72: -1.15475324507868 + sys_corr_73: -1.1999353582206767 + sys_corr_74: 0.2493804505586635 + sys_corr_75: 3.4518532539813878 + sys_corr_76: -2.445709967435229 + sys_corr_77: -5.099151084705349 + sys_corr_78: 3.3461444413203765 + sys_corr_79: 1.6981675293694958 + sys_corr_80: 1.5417000482834498 + sys_corr_81: 3.2433687019800255 + sys_corr_82: -0.287196093173653 + sys_corr_83: 5.30449419186138 + sys_corr_84: -21.77461049239184 + sys_corr_85: 16.78030978845998 + sys_corr_86: 2.743204191291331 + sys_corr_87: 0.4995957712424804 + sys_corr_88: 2.084318974527536 + sys_corr_89: 2.845811839457936 + sys_corr_90: 2.8995691220449706 + sys_corr_91: 24.238864154394072 + sys_corr_92: -2.5172455410916847 + sys_corr_93: -4.0748200140480435 + sys_corr_94: -9.107595433007058 + sys_corr_95: 0.5777722101821842 + sys_corr_96: 0.4329068381005194 + sys_corr_97: 18.201482214838478 + sys_corr_98: -2.846413321240755 + sys_corr_99: 25.438375788212102 + sys_corr_100: 11.275366561659261 + sys_corr_101: 57.143714640529524 + sys_corr_102: -53.006621349533454 + sys_corr_103: -1.621558437933614 + sys_corr_104: -65.54842065734252 + sys_corr_105: 0.01333189606335678 + sys_corr_106: -1.9250882490672183 + sys_corr_107: 0.6810929067331889 + sys_corr_108: 0.036455212553527766 + sys_corr_109: 0.8167479926315715 + sys_corr_110: 68.42750125507523 + sys_corr_111: 1.617929182243485 + sys_corr_112: 0.3481551772721528 + sys_corr_113: 0.05392224309305017 + sys_corr_114: -0.01090878757586861 + sys_corr_115: -0.7351864007891477 + sys_corr_116: -0.07672758470006841 + sys_corr_117: -0.22391871865498364 + sys_corr_118: -0.34201312769474007 + sys_corr_119: 0.017897162020314376 + sys_corr_120: -0.6274576325240335 + sys_corr_121: -0.000657294059732826 + sys_corr_122: 0.12929498746510235 + sys_corr_123: 0.036451967486418206 + sys_corr_124: -0.5812812957223483 + sys_corr_125: -0.14594092881524096 + sys_corr_126: 0.013541968775920678 + sys_corr_127: -1.7685367207884084 + sys_corr_128: -0.13745965968104315 + sys_corr_129: 0.20030747337000326 + sys_corr_130: 0.01633861723847278 + sys_corr_131: -0.02918859768339036 + sys_corr_132: -0.3839248388676104 stat: 0.0 luminosity: 73.06149400000001 -- sys_corr_1: 27.472115974429727 - sys_corr_2: 4.7900507208911325 - sys_corr_3: -22.189470966730163 - sys_corr_4: 18.35600442460019 - sys_corr_5: 6.903350963925709 - sys_corr_6: 5.293371773617226 - sys_corr_7: -1.107398149413221 - sys_corr_8: 7.662277188439314 - sys_corr_9: 2.1249080991541947 - sys_corr_10: 7.607253803538693 - sys_corr_11: -9.375979248432735 - sys_corr_12: 2.191017292755221 - sys_corr_13: -0.29955723991663963 - sys_corr_14: -3.773539363789576 - sys_corr_15: 0.9449936237504367 - sys_corr_16: 1.1543183749981747 - sys_corr_17: 0.1683082803529792 - sys_corr_18: -5.982556421104678 - sys_corr_19: 3.6915518678344403 - sys_corr_20: 1.12465107126187 - sys_corr_21: 2.1179850455361233 - sys_corr_22: 3.7311197857346463 - sys_corr_23: 0.38763796905575953 - sys_corr_24: 1.67060880260507 - sys_corr_25: -5.286202510168612 - sys_corr_26: -8.895114000706144 - sys_corr_27: 5.84988368438962 - sys_corr_28: -2.4457313505296168 - sys_corr_29: -0.3011443303809697 - sys_corr_30: 7.281750964155728 - sys_corr_31: -2.9761652331439423 - sys_corr_32: -1.1881457298636655 - sys_corr_33: 0.8796742296256186 - sys_corr_34: -3.4469457587026606 - sys_corr_35: -0.28922507675887943 - sys_corr_36: 0.06560375988298861 - sys_corr_37: 0.03845096840551243 - sys_corr_38: -0.5449804044952005 - sys_corr_39: 1.8779511899811914 - sys_corr_40: -0.14534026186075477 - sys_corr_41: -2.390740565533387 - sys_corr_42: -0.8181123623658947 - sys_corr_43: 1.3175185871616804 - sys_corr_44: 4.57320664818497 - sys_corr_45: 0.3887120406442602 - sys_corr_46: -1.4204848200738962 - sys_corr_47: -1.3954128208346221 - sys_corr_48: 1.0353976940388314 - sys_corr_49: -1.2828122934183885 - sys_corr_50: 1.3173359599760617 - sys_corr_51: 0.8838071237661043 - sys_corr_52: -1.7660509529868134 - sys_corr_53: -0.24860234574743165 - sys_corr_54: -0.7517858948938824 - sys_corr_55: 2.4725118235576713 - sys_corr_56: 0.4946144100059121 - sys_corr_57: 2.1204270647975956 - sys_corr_58: -0.9928732480828003 - sys_corr_59: -0.054037373811889874 - sys_corr_60: -1.1879918686451882 - sys_corr_61: -1.044598659289023 - sys_corr_62: 2.4454655524291335 - sys_corr_63: -0.8699924039260567 - sys_corr_64: -0.39799527000548524 - sys_corr_65: 0.708022017232213 - sys_corr_66: 1.1075724369790185 - sys_corr_67: -0.09100207356943812 - sys_corr_68: -0.05499130543564543 - sys_corr_69: 2.3413483605059278 - sys_corr_70: 0.28799937962263417 - sys_corr_71: -0.2763310869169353 - sys_corr_72: 1.3223953478243167 - sys_corr_73: 0.9786951526572064 - sys_corr_74: 0.8648081147039464 - sys_corr_75: 4.106674697901157 - sys_corr_76: -2.6477870921367 - sys_corr_77: 6.015972368710252 - sys_corr_78: 0.3022788306395582 - sys_corr_79: 1.3252190096121583 - sys_corr_80: -2.274468689568189 - sys_corr_81: -1.487381901359118 - sys_corr_82: 1.8063493962042116 - sys_corr_83: 3.800711500935755 - sys_corr_84: 17.970571218825008 - sys_corr_85: 15.534588113524618 - sys_corr_86: -2.2562780651172334 - sys_corr_87: -0.3826477169989459 - sys_corr_88: 1.4671231996771221 - sys_corr_89: 2.964548297327438 - sys_corr_90: 2.646829387984036 - sys_corr_91: 21.467997247342673 - sys_corr_92: 2.8066768308658943 - sys_corr_93: -7.422460437759822 - sys_corr_94: -19.10600530568431 - sys_corr_95: 0.36517678500944023 - sys_corr_96: -0.6611982651210974 - sys_corr_97: 68.87181662745616 - sys_corr_98: -38.358900907589096 - sys_corr_99: 53.148535637423535 - sys_corr_100: -10.575558656318437 - sys_corr_101: 24.291484914880066 - sys_corr_102: -17.113313445878457 - sys_corr_103: -15.38863959334837 - sys_corr_104: -11.704027829772457 - sys_corr_105: -6.032285845589876 - sys_corr_106: 1.5646971964050258 - sys_corr_107: 74.68378077474512 - sys_corr_108: -2.816291629179398 - sys_corr_109: 1.31930250162229 - sys_corr_110: -0.39156197535755083 - sys_corr_111: -1.6458845922113512 - sys_corr_112: 0.7052937543900805 - sys_corr_113: -0.7252126873339587 - sys_corr_114: -0.010763373218844862 - sys_corr_115: -0.20001695247722126 - sys_corr_116: 0.13706104036321964 - sys_corr_117: 0.09257165625124533 - sys_corr_118: 0.3709144163100808 - sys_corr_119: -0.016578123595795614 - sys_corr_120: -0.1754687190969813 - sys_corr_121: 0.004458931766435243 - sys_corr_122: 0.03909603662339149 - sys_corr_123: 0.149231298186838 - sys_corr_124: -0.2646526799658155 - sys_corr_125: -0.07144428714891934 - sys_corr_126: -0.005072913806427808 - sys_corr_127: -45.92608719730453 - sys_corr_128: -0.2604788816347722 - sys_corr_129: 0.4884602753799437 - sys_corr_130: -0.007957509698634336 - sys_corr_131: -0.48609216089256213 - sys_corr_132: -0.3376797463369681 +- sys_corr_1: 27.47211597442975 + sys_corr_2: 4.790050720891138 + sys_corr_3: -22.189470966730195 + sys_corr_4: 18.35600442460025 + sys_corr_5: 6.903350963925664 + sys_corr_6: 5.293371773617202 + sys_corr_7: -1.1073981494132923 + sys_corr_8: 7.66227718843946 + sys_corr_9: 2.124908099154111 + sys_corr_10: 7.60725380353878 + sys_corr_11: -9.375979248432389 + sys_corr_12: 2.1910172927557254 + sys_corr_13: 0.29955723991630395 + sys_corr_14: 3.773539363789595 + sys_corr_15: -0.944993623750412 + sys_corr_16: -1.154318374998471 + sys_corr_17: 0.16830828035307652 + sys_corr_18: 5.98255642110471 + sys_corr_19: 3.6915518678344466 + sys_corr_20: 1.1246510712617885 + sys_corr_21: 2.117985045536079 + sys_corr_22: 3.7311197857346694 + sys_corr_23: 0.3876379690555861 + sys_corr_24: 1.6706088026050099 + sys_corr_25: -5.286202510168801 + sys_corr_26: -8.895114000706483 + sys_corr_27: 5.849883684389792 + sys_corr_28: -2.4457313505296514 + sys_corr_29: -0.3011443303810982 + sys_corr_30: 7.281750964155827 + sys_corr_31: -2.976165233143827 + sys_corr_32: 1.1881457298640048 + sys_corr_33: -0.8796742296258946 + sys_corr_34: -3.446945758702689 + sys_corr_35: -0.2892250767589622 + sys_corr_36: 0.06560375988323353 + sys_corr_37: -0.03845096840534356 + sys_corr_38: 0.5449804044953304 + sys_corr_39: -1.8779511899812098 + sys_corr_40: 0.14534026186093107 + sys_corr_41: -2.390740565533736 + sys_corr_42: 0.8181123623655326 + sys_corr_43: 1.3175185871623392 + sys_corr_44: 4.573206648184429 + sys_corr_45: -0.38871204064369425 + sys_corr_46: 1.42048482007419 + sys_corr_47: 1.3954128208353462 + sys_corr_48: -1.0353976940388332 + sys_corr_49: 1.2828122934186121 + sys_corr_50: 1.3173359599759011 + sys_corr_51: 0.8838071237654938 + sys_corr_52: -1.766050952988146 + sys_corr_53: 0.2486023457473129 + sys_corr_54: 0.7517858948941587 + sys_corr_55: -2.4725118235580963 + sys_corr_56: -0.4946144100063506 + sys_corr_57: 2.1204270647983265 + sys_corr_58: 0.9928732480828378 + sys_corr_59: -0.054037373812801284 + sys_corr_60: 1.1879918686449176 + sys_corr_61: 1.0445986592891703 + sys_corr_62: -2.4454655524297637 + sys_corr_63: -0.869992403925867 + sys_corr_64: -0.3979952700056494 + sys_corr_65: 0.708022017231753 + sys_corr_66: -1.1075724369792945 + sys_corr_67: -0.09100207356876214 + sys_corr_68: 0.05499130543676032 + sys_corr_69: 2.3413483605059686 + sys_corr_70: -0.28799937962353644 + sys_corr_71: -0.2763310869168252 + sys_corr_72: -1.3223953478246542 + sys_corr_73: -0.9786951526567526 + sys_corr_74: 0.8648081147030138 + sys_corr_75: 4.106674697903429 + sys_corr_76: -2.6477870921347995 + sys_corr_77: -6.015972368709608 + sys_corr_78: 2.274468689568627 + sys_corr_79: 0.30227883063963046 + sys_corr_80: 1.3252190096120287 + sys_corr_81: 1.4873819013587448 + sys_corr_82: -1.8063493962041732 + sys_corr_83: 3.800711500935891 + sys_corr_84: -17.970571218827832 + sys_corr_85: 15.534588113521853 + sys_corr_86: 2.2562780651230008 + sys_corr_87: 0.38264771699904165 + sys_corr_88: 1.467123199675425 + sys_corr_89: 2.6468293879840408 + sys_corr_90: 2.9645482973275388 + sys_corr_91: 21.467997247342474 + sys_corr_92: -2.806676830865883 + sys_corr_93: -7.4224604377588985 + sys_corr_94: -19.106005305683762 + sys_corr_95: 0.3651767850061407 + sys_corr_96: 0.661198265124085 + sys_corr_97: 68.87181662745861 + sys_corr_98: 38.35890090759116 + sys_corr_99: 53.148535637421126 + sys_corr_100: 24.291484914881142 + sys_corr_101: 17.113313445881833 + sys_corr_102: -15.388639593345891 + sys_corr_103: 11.704027829784843 + sys_corr_104: 6.032285845601162 + sys_corr_105: 10.575558656318432 + sys_corr_106: 1.5646971964044811 + sys_corr_107: -2.81629162917982 + sys_corr_108: 1.3193025016222029 + sys_corr_109: 0.3915619753578398 + sys_corr_110: -74.68378077474443 + sys_corr_111: 1.6458845922113043 + sys_corr_112: 0.7052937543900799 + sys_corr_113: 0.7252126873339084 + sys_corr_114: -0.01076337321883471 + sys_corr_115: -0.2000169524772057 + sys_corr_116: -0.13706104036325054 + sys_corr_117: -0.09257165625126491 + sys_corr_118: -0.3709144163100975 + sys_corr_119: 0.0165781235957964 + sys_corr_120: 0.1754687190969751 + sys_corr_121: -0.004458931766436025 + sys_corr_122: 0.14923129818688372 + sys_corr_123: 0.03909603662340548 + sys_corr_124: -0.26465267996576913 + sys_corr_125: -0.07144428714896205 + sys_corr_126: 0.00507291380643211 + sys_corr_127: -45.92608719731276 + sys_corr_128: -0.26047888163490873 + sys_corr_129: 0.4884602753799321 + sys_corr_130: -0.007957509698635316 + sys_corr_131: 0.4860921608925127 + sys_corr_132: -0.33767974633696307 stat: 0.0 luminosity: 70.778004 -- sys_corr_1: 23.441977070105462 - sys_corr_2: 11.826727744810999 - sys_corr_3: -23.56501711095332 - sys_corr_4: 12.916082859726632 - sys_corr_5: 5.4827353326883195 - sys_corr_6: 5.368871304699882 - sys_corr_7: -3.874793069647667 - sys_corr_8: 1.1885862178118012 - sys_corr_9: 2.241913246376114 - sys_corr_10: 2.557799191838701 - sys_corr_11: 13.714519397011433 - sys_corr_12: -4.5415942826168925 - sys_corr_13: -2.5011576047511648 - sys_corr_14: 0.2390953685334903 - sys_corr_15: -2.3850009123744034 - sys_corr_16: 6.884497294628698 - sys_corr_17: -5.228857396066208 - sys_corr_18: -8.10908968002859 - sys_corr_19: -6.320221306191084 - sys_corr_20: 1.1345734540962384 - sys_corr_21: 1.1816470678540036 - sys_corr_22: 5.78908731224194 - sys_corr_23: -0.491766663366246 - sys_corr_24: -0.30822369187943616 - sys_corr_25: -5.546942007924177 - sys_corr_26: -8.118710062737883 - sys_corr_27: 6.165460825461869 - sys_corr_28: -4.218407879737671 - sys_corr_29: 0.021879450887390448 - sys_corr_30: 5.740707845109957 - sys_corr_31: -2.1856558928507757 - sys_corr_32: -0.6750011573787928 - sys_corr_33: 0.8109653218696672 - sys_corr_34: -2.9787407958714263 - sys_corr_35: 0.23659762053867048 - sys_corr_36: -0.9878709202699439 - sys_corr_37: -0.44284884190933377 - sys_corr_38: -0.08727023021326563 - sys_corr_39: 2.231778059351674 - sys_corr_40: -0.7498308100823488 - sys_corr_41: -2.074011786559045 - sys_corr_42: -0.8365362029968013 - sys_corr_43: 1.793302635937285 - sys_corr_44: 1.8436369308034182 - sys_corr_45: 0.5585300458310318 - sys_corr_46: 0.2333014615909617 - sys_corr_47: -1.8793353295831303 - sys_corr_48: 2.6519772176562046 - sys_corr_49: -2.692434159036453 - sys_corr_50: 2.164434504115869 - sys_corr_51: 0.6063245821135097 - sys_corr_52: -0.2947181595194785 - sys_corr_53: 0.2720976237532584 - sys_corr_54: -0.9023541230789385 - sys_corr_55: 0.19897543328745046 - sys_corr_56: -0.6192097785681765 - sys_corr_57: 1.4647278416503804 - sys_corr_58: -1.3015175102811032 - sys_corr_59: 0.5201116717000586 - sys_corr_60: -0.7894653975429821 - sys_corr_61: -0.037708217466475465 - sys_corr_62: 1.7123133588621862 - sys_corr_63: 0.24735927121771048 - sys_corr_64: 0.15985303212588783 - sys_corr_65: 0.16838916553676697 - sys_corr_66: 0.6048718750927089 - sys_corr_67: -0.19383486059303895 - sys_corr_68: 0.36810303266183403 - sys_corr_69: 1.647072148515257 - sys_corr_70: 0.5246958356643047 - sys_corr_71: 0.42794289666110225 - sys_corr_72: 0.09533739474699583 - sys_corr_73: 0.4647999313152385 - sys_corr_74: 0.7794371884248557 - sys_corr_75: 3.250854616012781 - sys_corr_76: -2.3300778864534175 - sys_corr_77: 2.7876332445808014 - sys_corr_78: 1.728380750938412 - sys_corr_79: 0.013073007456597712 - sys_corr_80: -1.1705533988668242 - sys_corr_81: -0.8579919428812149 - sys_corr_82: 0.5638164459491896 - sys_corr_83: 2.3392136948915097 - sys_corr_84: 12.212425008875245 - sys_corr_85: 10.506706660372032 - sys_corr_86: -1.9915360333978118 - sys_corr_87: -1.1270192339694332 - sys_corr_88: 1.1677206239036573 - sys_corr_89: 1.815806053776396 - sys_corr_90: 1.8579554418659108 - sys_corr_91: 14.746738018128898 - sys_corr_92: 1.9546447079789167 - sys_corr_93: -3.5224713511717423 - sys_corr_94: -8.228233491186263 - sys_corr_95: -0.7040721780793906 - sys_corr_96: 2.1541131096049804 - sys_corr_97: 18.894273740749888 - sys_corr_98: -5.7940573120089125 - sys_corr_99: 4.888427148868658 - sys_corr_100: -51.4711851309001 - sys_corr_101: 47.01904828048242 - sys_corr_102: 81.55062922788147 - sys_corr_103: -7.794741785598339 - sys_corr_104: 2.9212385599214232 - sys_corr_105: 25.881474795394816 - sys_corr_106: 22.204165436925113 - sys_corr_107: -29.00582613177539 - sys_corr_108: -6.625819055044549 - sys_corr_109: 4.83546484297527 - sys_corr_110: -2.65362662462021 - sys_corr_111: -1.468885888473275 - sys_corr_112: 0.9102802597799268 - sys_corr_113: -0.5876644153652755 - sys_corr_114: -0.009629059915907599 - sys_corr_115: 0.01300465871454161 - sys_corr_116: 0.27699016434844853 - sys_corr_117: 0.17086699270105296 - sys_corr_118: 0.25985675589010593 - sys_corr_119: -0.007720253101173542 - sys_corr_120: -0.2201438632776272 - sys_corr_121: 0.014440750563844034 - sys_corr_122: 0.07566302258509575 - sys_corr_123: 0.21051826684006456 - sys_corr_124: -0.3652386738919424 - sys_corr_125: -0.07010583443673483 - sys_corr_126: -0.02442371522962624 - sys_corr_127: 10.7761566642739 - sys_corr_128: -0.8904599694274229 - sys_corr_129: 0.6187923635911012 - sys_corr_130: 0.02279489100372595 - sys_corr_131: -0.4179249852786716 - sys_corr_132: -0.4218395199935014 +- sys_corr_1: 23.441977070105466 + sys_corr_2: 11.82672774481101 + sys_corr_3: -23.565017110953313 + sys_corr_4: 12.91608285972669 + sys_corr_5: 5.482735332688297 + sys_corr_6: 5.3688713046998675 + sys_corr_7: -3.8747930696476347 + sys_corr_8: 1.1885862178118114 + sys_corr_9: 2.2419132463762907 + sys_corr_10: 2.5577991918383978 + sys_corr_11: 13.714519397011005 + sys_corr_12: -4.541594282617534 + sys_corr_13: 2.501157604751761 + sys_corr_14: -0.2390953685335686 + sys_corr_15: 2.3850009123743643 + sys_corr_16: -6.884497294628855 + sys_corr_17: -5.228857396066292 + sys_corr_18: 8.109089680028315 + sys_corr_19: -6.3202213061910975 + sys_corr_20: 1.1345734540962154 + sys_corr_21: 1.1816470678541682 + sys_corr_22: 5.78908731224198 + sys_corr_23: -0.4917666633661508 + sys_corr_24: -0.3082236918795323 + sys_corr_25: -5.546942007924233 + sys_corr_26: -8.118710062737994 + sys_corr_27: 6.1654608254621 + sys_corr_28: -4.218407879737895 + sys_corr_29: 0.021879450887310407 + sys_corr_30: 5.740707845109804 + sys_corr_31: -2.18565589285075 + sys_corr_32: 0.675001157378832 + sys_corr_33: -0.8109653218699437 + sys_corr_34: -2.9787407958710794 + sys_corr_35: 0.2365976205380151 + sys_corr_36: -0.9878709202698731 + sys_corr_37: 0.4428488419096851 + sys_corr_38: 0.0872702302127505 + sys_corr_39: -2.23177805935191 + sys_corr_40: 0.749830810082458 + sys_corr_41: -2.074011786558887 + sys_corr_42: 0.8365362029965178 + sys_corr_43: 1.7933026359378579 + sys_corr_44: 1.843636930802975 + sys_corr_45: -0.5585300458312308 + sys_corr_46: -0.23330146159051446 + sys_corr_47: 1.879335329583438 + sys_corr_48: -2.6519772176563405 + sys_corr_49: 2.6924341590360608 + sys_corr_50: 2.164434504115985 + sys_corr_51: 0.6063245821136867 + sys_corr_52: -0.2947181595200658 + sys_corr_53: -0.27209762375319047 + sys_corr_54: 0.9023541230782954 + sys_corr_55: -0.19897543328776437 + sys_corr_56: 0.6192097785684457 + sys_corr_57: 1.4647278416504435 + sys_corr_58: 1.3015175102812593 + sys_corr_59: 0.5201116716982127 + sys_corr_60: 0.7894653975431862 + sys_corr_61: 0.03770821746653145 + sys_corr_62: -1.7123133588628714 + sys_corr_63: 0.24735927121771298 + sys_corr_64: 0.1598530321250245 + sys_corr_65: 0.16838916553701933 + sys_corr_66: -0.6048718750928954 + sys_corr_67: -0.19383486059284108 + sys_corr_68: -0.3681030326614051 + sys_corr_69: 1.6470721485152944 + sys_corr_70: -0.5246958356654359 + sys_corr_71: 0.42794289666224716 + sys_corr_72: -0.0953373947467292 + sys_corr_73: -0.4647999313153098 + sys_corr_74: 0.7794371884243794 + sys_corr_75: 3.2508546160148186 + sys_corr_76: -2.33007788645198 + sys_corr_77: -2.7876332445806797 + sys_corr_78: 1.170553398867387 + sys_corr_79: 1.7283807509385574 + sys_corr_80: 0.013073007456510044 + sys_corr_81: 0.8579919428810528 + sys_corr_82: -0.563816445949309 + sys_corr_83: 2.339213694891578 + sys_corr_84: -12.212425008876838 + sys_corr_85: 10.50670666037049 + sys_corr_86: 1.9915360334022718 + sys_corr_87: 1.1270192339693348 + sys_corr_88: 1.1677206239020907 + sys_corr_89: 1.857955441865786 + sys_corr_90: 1.8158060537764114 + sys_corr_91: 14.746738018128928 + sys_corr_92: -1.9546447079793792 + sys_corr_93: -3.522471351171104 + sys_corr_94: -8.228233491187108 + sys_corr_95: -0.704072178079314 + sys_corr_96: -2.154113109604195 + sys_corr_97: 18.894273740749302 + sys_corr_98: 5.7940573120075065 + sys_corr_99: 4.888427148868551 + sys_corr_100: 47.01904828048506 + sys_corr_101: -81.55062922788137 + sys_corr_102: -7.79474178564082 + sys_corr_103: -2.9212385599232444 + sys_corr_104: -25.881474795386545 + sys_corr_105: 51.471185130905674 + sys_corr_106: 22.20416543692501 + sys_corr_107: -6.625819055044427 + sys_corr_108: 4.835464842975594 + sys_corr_109: 2.653626624620268 + sys_corr_110: 29.005826131774175 + sys_corr_111: 1.4688858884730398 + sys_corr_112: 0.9102802597798192 + sys_corr_113: 0.5876644153653224 + sys_corr_114: -0.009629059915909382 + sys_corr_115: 0.013004658714628482 + sys_corr_116: -0.27699016434852775 + sys_corr_117: -0.17086699270101477 + sys_corr_118: -0.25985675589008944 + sys_corr_119: 0.007720253101170645 + sys_corr_120: 0.22014386327761198 + sys_corr_121: -0.014440750563840487 + sys_corr_122: 0.21051826684006666 + sys_corr_123: 0.07566302258510446 + sys_corr_124: -0.36523867389183373 + sys_corr_125: -0.07010583443674423 + sys_corr_126: 0.024423715229628065 + sys_corr_127: 10.776156664277616 + sys_corr_128: -0.8904599694274645 + sys_corr_129: 0.6187923635911914 + sys_corr_130: 0.022794891003722884 + sys_corr_131: 0.4179249852786262 + sys_corr_132: -0.421839519993517 stat: 0.0 luminosity: 67.15299800000001 -- sys_corr_1: 23.948227695211276 - sys_corr_2: 5.983345686539589 - sys_corr_3: -22.81370283189974 - sys_corr_4: 8.67047933065499 - sys_corr_5: 7.373071283518817 - sys_corr_6: 3.875277153491246 - sys_corr_7: -5.00474158101337 - sys_corr_8: -0.985573975689773 - sys_corr_9: 2.095968108346319 - sys_corr_10: 2.6566669702212717 - sys_corr_11: 0.7571145078762689 - sys_corr_12: 3.877305757555282 - sys_corr_13: 6.213922371354719 - sys_corr_14: 16.027806576934058 - sys_corr_15: -4.101308015428547 - sys_corr_16: -3.502436390496263 - sys_corr_17: 1.0800742437890716 - sys_corr_18: 13.234666829781732 - sys_corr_19: -3.381920600660791 - sys_corr_20: 1.5043504519333668 - sys_corr_21: 1.530312493958 - sys_corr_22: 4.627857803337581 - sys_corr_23: -1.8310363353278187 - sys_corr_24: 0.9925763474120509 - sys_corr_25: -6.20505798198783 - sys_corr_26: -8.365066664057949 - sys_corr_27: 5.039124072988213 - sys_corr_28: -6.826185218267123 - sys_corr_29: 0.4534694486572249 - sys_corr_30: 2.9393176715001377 - sys_corr_31: -1.625334462961781 - sys_corr_32: 0.041531194779762144 - sys_corr_33: -0.6353073513207642 - sys_corr_34: -3.4509300061712525 - sys_corr_35: 0.18805652086024416 - sys_corr_36: -1.2292434820563032 - sys_corr_37: -0.6191442263350095 - sys_corr_38: -0.33192939892383133 - sys_corr_39: -1.4138358184038309 - sys_corr_40: -1.565544152491663 - sys_corr_41: -0.8706410591315554 - sys_corr_42: 0.22115387501223488 - sys_corr_43: 1.1000477239065307 - sys_corr_44: 1.183582521939099 - sys_corr_45: 1.2731598126456145 - sys_corr_46: 0.602156733256562 - sys_corr_47: -1.483495098165822 - sys_corr_48: 3.7572727286810053 - sys_corr_49: -3.3081564259590563 - sys_corr_50: 2.414971923113619 - sys_corr_51: -0.41250175919530757 - sys_corr_52: 0.19065068119057446 - sys_corr_53: -0.749425568206182 - sys_corr_54: -0.3177972410163727 - sys_corr_55: -0.2811279590387141 - sys_corr_56: -0.4040983938650804 - sys_corr_57: 1.0989381935532456 - sys_corr_58: -0.25894237614365484 - sys_corr_59: -0.0969828930485342 - sys_corr_60: -1.0823353457826654 - sys_corr_61: 0.5378187748148534 - sys_corr_62: 0.44731314184972915 - sys_corr_63: -0.3283120834356618 - sys_corr_64: 0.38849010747794926 - sys_corr_65: -0.3208410129530023 - sys_corr_66: 0.9692612038423103 - sys_corr_67: -0.33735290867733925 - sys_corr_68: 0.1987775039217459 - sys_corr_69: 1.5631963848665194 - sys_corr_70: 0.5793348765203965 - sys_corr_71: 0.013587104665070916 - sys_corr_72: 0.23220626737676878 - sys_corr_73: -0.6178362288605591 - sys_corr_74: 1.5772011799842012 - sys_corr_75: 2.2254940853626777 - sys_corr_76: -1.069012570996365 - sys_corr_77: 2.468698600394886 - sys_corr_78: 0.9302241835075461 - sys_corr_79: -0.4077027659404382 - sys_corr_80: -1.6145006320216297 - sys_corr_81: -0.296377272943473 - sys_corr_82: 0.6944018039685071 - sys_corr_83: 1.289873790690009 - sys_corr_84: 7.133945904582487 - sys_corr_85: 4.92378057049105 - sys_corr_86: -1.207508373830491 - sys_corr_87: -0.792049957482266 - sys_corr_88: 0.840783912624524 - sys_corr_89: 1.2327085218579406 - sys_corr_90: 1.038173012313023 - sys_corr_91: 7.727944502892808 - sys_corr_92: 0.5626675129198883 - sys_corr_93: -2.8615040631646504 - sys_corr_94: -9.028700008499495 - sys_corr_95: 0.7112017021645971 - sys_corr_96: -0.4356566620389008 - sys_corr_97: 21.697900207817426 - sys_corr_98: -10.442091582747645 - sys_corr_99: 12.188411911133285 - sys_corr_100: -24.99627581439415 - sys_corr_101: -95.35163723687727 - sys_corr_102: 12.6727257314105 - sys_corr_103: -6.018028385984543 - sys_corr_104: 0.43643898759223787 - sys_corr_105: 16.382624013677404 - sys_corr_106: 47.876814492548434 - sys_corr_107: 0.20302236984989486 - sys_corr_108: 14.353615956022747 - sys_corr_109: 9.55291125138657 - sys_corr_110: -1.6674451929165917 - sys_corr_111: -7.4556972186304895 - sys_corr_112: 0.801035974988213 - sys_corr_113: -0.8119738413151439 - sys_corr_114: -0.0047437260593487865 - sys_corr_115: 0.5673981646175487 - sys_corr_116: 0.2342946690440635 - sys_corr_117: 0.13014533420440239 - sys_corr_118: -0.016911576637835005 - sys_corr_119: 0.0027254647440135425 - sys_corr_120: -0.034902128880656726 - sys_corr_121: 0.020853303817065072 - sys_corr_122: 0.08979785102131778 - sys_corr_123: 0.1822429106645622 - sys_corr_124: -0.12758208263567733 - sys_corr_125: 0.6561585640890505 - sys_corr_126: -0.031937325854756525 - sys_corr_127: -4.728809735897776 - sys_corr_128: -6.083091935369517 - sys_corr_129: 0.4965812860200806 - sys_corr_130: 0.036783677510145295 - sys_corr_131: 0.19744423598840108 - sys_corr_132: -0.34534501595527384 +- sys_corr_1: 23.948227695211287 + sys_corr_2: 5.983345686539601 + sys_corr_3: -22.81370283189977 + sys_corr_4: 8.670479330655036 + sys_corr_5: 7.373071283518806 + sys_corr_6: 3.8752771534912194 + sys_corr_7: -5.004741581013252 + sys_corr_8: -0.9855739756897615 + sys_corr_9: 2.095968108346246 + sys_corr_10: 2.656666970221024 + sys_corr_11: 0.7571145078766767 + sys_corr_12: 3.8773057575553227 + sys_corr_13: -6.213922371354652 + sys_corr_14: -16.027806576934026 + sys_corr_15: 4.1013080154283585 + sys_corr_16: 3.5024363904966442 + sys_corr_17: 1.0800742437890014 + sys_corr_18: -13.234666829781718 + sys_corr_19: -3.3819206006608566 + sys_corr_20: 1.5043504519336186 + sys_corr_21: 1.530312493957913 + sys_corr_22: 4.627857803337497 + sys_corr_23: -1.8310363353278734 + sys_corr_24: 0.9925763474120534 + sys_corr_25: -6.205057981987774 + sys_corr_26: -8.365066664057974 + sys_corr_27: 5.039124072988418 + sys_corr_28: -6.826185218267015 + sys_corr_29: 0.45346944865686084 + sys_corr_30: 2.939317671500345 + sys_corr_31: -1.6253344629616435 + sys_corr_32: -0.04153119478029653 + sys_corr_33: 0.6353073513206531 + sys_corr_34: -3.4509300061717605 + sys_corr_35: 0.18805652085999713 + sys_corr_36: -1.2292434820562093 + sys_corr_37: 0.6191442263351881 + sys_corr_38: 0.33192939892368056 + sys_corr_39: 1.4138358184037245 + sys_corr_40: 1.5655441524918554 + sys_corr_41: -0.8706410591313956 + sys_corr_42: -0.2211538750127605 + sys_corr_43: 1.1000477239065538 + sys_corr_44: 1.1835825219389993 + sys_corr_45: -1.27315981264585 + sys_corr_46: -0.6021567332559492 + sys_corr_47: 1.4834950981659785 + sys_corr_48: -3.757272728681279 + sys_corr_49: 3.3081564259588148 + sys_corr_50: 2.4149719231135354 + sys_corr_51: -0.4125017591953219 + sys_corr_52: 0.19065068119012482 + sys_corr_53: 0.7494255682056742 + sys_corr_54: 0.31779724101576456 + sys_corr_55: 0.28112795903851895 + sys_corr_56: 0.4040983938655283 + sys_corr_57: 1.0989381935528195 + sys_corr_58: 0.2589423761437162 + sys_corr_59: -0.09698289304863313 + sys_corr_60: 1.0823353457826659 + sys_corr_61: -0.5378187748143595 + sys_corr_62: -0.4473131418494052 + sys_corr_63: -0.32831208343612583 + sys_corr_64: 0.38849010747744156 + sys_corr_65: -0.3208410129527064 + sys_corr_66: -0.9692612038428058 + sys_corr_67: -0.3373529086774568 + sys_corr_68: -0.19877750392134758 + sys_corr_69: 1.5631963848670274 + sys_corr_70: -0.579334876521402 + sys_corr_71: 0.013587104665129067 + sys_corr_72: -0.23220626737664443 + sys_corr_73: 0.6178362288606511 + sys_corr_74: 1.5772011799837697 + sys_corr_75: 2.22549408536357 + sys_corr_76: -1.0690125709948821 + sys_corr_77: -2.4686986003939344 + sys_corr_78: 1.614500632021719 + sys_corr_79: 0.930224183507775 + sys_corr_80: -0.4077027659405533 + sys_corr_81: 0.29637727294370103 + sys_corr_82: -0.6944018039684683 + sys_corr_83: 1.2898737906900062 + sys_corr_84: -7.133945904583585 + sys_corr_85: 4.92378057048973 + sys_corr_86: 1.2075083738328918 + sys_corr_87: 0.7920499574824517 + sys_corr_88: 0.8407839126235895 + sys_corr_89: 1.0381730123129684 + sys_corr_90: 1.2327085218578426 + sys_corr_91: 7.727944502892572 + sys_corr_92: -0.5626675129200726 + sys_corr_93: -2.8615040631642503 + sys_corr_94: -9.028700008498921 + sys_corr_95: 0.7112017021628568 + sys_corr_96: 0.4356566620399581 + sys_corr_97: 21.69790020781785 + sys_corr_98: 10.442091582748677 + sys_corr_99: 12.188411911133374 + sys_corr_100: -95.35163723687519 + sys_corr_101: -12.672725731405166 + sys_corr_102: -6.018028385996787 + sys_corr_103: -0.4364389875916385 + sys_corr_104: -16.382624013673766 + sys_corr_105: 24.996275814407532 + sys_corr_106: 47.87681449254913 + sys_corr_107: 14.35361595602248 + sys_corr_108: 9.552911251386021 + sys_corr_109: 1.6674451929162066 + sys_corr_110: -0.20302236984963445 + sys_corr_111: 7.455697218631555 + sys_corr_112: 0.8010359749883716 + sys_corr_113: 0.8119738413152224 + sys_corr_114: -0.004743726059351372 + sys_corr_115: 0.5673981646175608 + sys_corr_116: -0.23429466904399865 + sys_corr_117: -0.1301453342044355 + sys_corr_118: 0.016911576637815468 + sys_corr_119: -0.0027254647440096 + sys_corr_120: 0.034902128880654144 + sys_corr_121: -0.020853303817044345 + sys_corr_122: 0.1822429106645974 + sys_corr_123: 0.08979785102129281 + sys_corr_124: -0.12758208263562104 + sys_corr_125: 0.6561585640890641 + sys_corr_126: 0.03193732585472951 + sys_corr_127: -4.728809735897865 + sys_corr_128: -6.083091935369417 + sys_corr_129: 0.49658128602016566 + sys_corr_130: 0.03678367751013879 + sys_corr_131: -0.1974442359884109 + sys_corr_132: -0.34534501595525724 stat: 0.0 luminosity: 66.664928 - sys_corr_1: 17.089611517497097 - sys_corr_2: 6.16671522966377 - sys_corr_3: -26.29254589913692 - sys_corr_4: 2.115169070445915 - sys_corr_5: 2.7840655489088433 - sys_corr_6: 2.166642084054875 - sys_corr_7: -7.467716996331922 - sys_corr_8: -3.7631964435205107 - sys_corr_9: -3.198539769536083 - sys_corr_10: 3.0927209433792635 - sys_corr_11: 6.399111645729854 - sys_corr_12: 7.840777049846053 - sys_corr_13: 0.5028245776505482 - sys_corr_14: -7.676219802496303 - sys_corr_15: 1.4227286698473607 - sys_corr_16: -4.491804816307338 - sys_corr_17: 5.34046292584043 - sys_corr_18: 7.673973695589689 - sys_corr_19: 7.921703365952364 - sys_corr_20: 3.091442773244381 - sys_corr_21: 2.33895294891643 - sys_corr_22: 1.9540083890161208 - sys_corr_23: -2.971987289381359 - sys_corr_24: 2.113633790702628 - sys_corr_25: -5.943872127602836 - sys_corr_26: -8.209483560586202 - sys_corr_27: 6.34308486960209 - sys_corr_28: -6.820033667989882 - sys_corr_29: 0.03155785575599561 - sys_corr_30: 2.3277875768032485 - sys_corr_31: -1.79845702978117 - sys_corr_32: 0.5627775169833423 - sys_corr_33: 0.9296838159150351 - sys_corr_34: -0.7917919946340356 - sys_corr_35: -0.2786672779938541 - sys_corr_36: 0.3163964588857993 - sys_corr_37: -0.26719530185425877 - sys_corr_38: -0.36795666927493903 - sys_corr_39: -0.3094484031788026 - sys_corr_40: -0.750702055378861 - sys_corr_41: -0.11215139104719579 - sys_corr_42: -0.15122924366451249 - sys_corr_43: 0.9686209780942603 - sys_corr_44: 1.3558467303025763 - sys_corr_45: 0.46974056736328085 - sys_corr_46: 0.32316729968768204 - sys_corr_47: -2.435777110023935 - sys_corr_48: 3.4265028961481816 - sys_corr_49: -2.4945529539342917 - sys_corr_50: 1.9460060575100335 - sys_corr_51: 0.8827352293515511 - sys_corr_52: -0.326332961420303 - sys_corr_53: 0.1113904621984565 - sys_corr_54: -0.9542290458893397 - sys_corr_55: -0.39500879546834095 - sys_corr_56: -0.21082256389903267 - sys_corr_57: 0.28980855346948003 - sys_corr_58: 0.038478255128131744 - sys_corr_59: 0.05787451201514018 - sys_corr_60: -1.5615203936501572 - sys_corr_61: -0.5694762205855783 - sys_corr_62: -0.6608695693789419 - sys_corr_63: 0.24926746825755897 - sys_corr_64: -0.5292714075511636 - sys_corr_65: 0.4142720164597045 - sys_corr_66: 0.24979124144398923 - sys_corr_67: -0.15748753123306178 - sys_corr_68: 0.11308464619583647 - sys_corr_69: 0.8902111772379879 - sys_corr_70: 0.4840656959349929 - sys_corr_71: 0.5850317715899165 - sys_corr_72: -0.5651089826160491 - sys_corr_73: -1.1769854773489437 - sys_corr_74: 1.8841192318120998 - sys_corr_75: 2.1223348660935906 - sys_corr_76: -0.3375315724618457 - sys_corr_77: 2.838784368933425 - sys_corr_78: 0.2981666978109642 - sys_corr_79: -0.7550476927367711 - sys_corr_80: -0.9900700238155112 - sys_corr_81: -1.5155271542582285 - sys_corr_82: 0.7086774398156536 - sys_corr_83: 0.5528322022253933 - sys_corr_84: 3.2510392773753916 - sys_corr_85: 2.720302064885924 - sys_corr_86: -0.8726861552274905 - sys_corr_87: -0.6584969492186554 - sys_corr_88: -0.17664591144601113 - sys_corr_89: 1.78535471268024 - sys_corr_90: 0.4093613707689043 - sys_corr_91: 3.6690517430498852 - sys_corr_92: -0.28360453602396873 - sys_corr_93: -1.934112877667485 - sys_corr_94: -6.45307623327707 - sys_corr_95: 0.8324235571026972 - sys_corr_96: 0.19207836940733877 - sys_corr_97: 14.313850006714171 - sys_corr_98: -7.0246914530723865 - sys_corr_99: 6.5945033922479475 - sys_corr_100: 73.13776656990272 - sys_corr_101: 19.455485416743223 - sys_corr_102: 29.99455721751975 - sys_corr_103: -1.2551769316128798 - sys_corr_104: 1.7304673989563581 - sys_corr_105: 14.10340991367373 - sys_corr_106: 28.717467401672554 - sys_corr_107: -3.521927573449363 - sys_corr_108: 62.996199591632966 - sys_corr_109: 12.374433309545465 - sys_corr_110: -3.6198933430564377 - sys_corr_111: 0.9817916461652103 - sys_corr_112: 3.124066969659587 - sys_corr_113: -2.0398540962267404 - sys_corr_114: 0.0005482049291320836 - sys_corr_115: 1.5050663762671657 - sys_corr_116: 0.3964587921074965 - sys_corr_117: 0.16854645689457862 - sys_corr_118: -0.13462276865006678 - sys_corr_119: 0.015499166643698518 - sys_corr_120: -0.06923070096079757 - sys_corr_121: 0.01230050457849585 - sys_corr_122: 0.09975714841458905 - sys_corr_123: 0.07914126805317878 - sys_corr_124: -0.13147712743839968 - sys_corr_125: 0.5571367629711305 - sys_corr_126: -0.020333410178195645 - sys_corr_127: -1.4973189384300467 - sys_corr_128: -6.296395965233737 - sys_corr_129: 1.374490393663346 - sys_corr_130: -0.015013988247113634 - sys_corr_131: 0.19430741359021297 - sys_corr_132: -0.12970928981209692 + sys_corr_2: 6.1667152296637715 + sys_corr_3: -26.292545899136897 + sys_corr_4: 2.1151690704459365 + sys_corr_5: 2.7840655489088246 + sys_corr_6: 2.166642084054892 + sys_corr_7: -7.467716996331862 + sys_corr_8: -3.7631964435207865 + sys_corr_9: -3.1985397695361493 + sys_corr_10: 3.0927209433791316 + sys_corr_11: 6.399111645730756 + sys_corr_12: 7.8407770498458715 + sys_corr_13: -0.5028245776505454 + sys_corr_14: 7.676219802496248 + sys_corr_15: -1.4227286698472184 + sys_corr_16: 4.491804816307656 + sys_corr_17: 5.340462925840397 + sys_corr_18: -7.67397369558954 + sys_corr_19: 7.921703365952281 + sys_corr_20: 3.0914427732443768 + sys_corr_21: 2.3389529489162695 + sys_corr_22: 1.9540083890160052 + sys_corr_23: -2.9719872893813526 + sys_corr_24: 2.113633790702536 + sys_corr_25: -5.943872127602984 + sys_corr_26: -8.209483560586396 + sys_corr_27: 6.3430848696022455 + sys_corr_28: -6.820033667989865 + sys_corr_29: 0.031557855755725214 + sys_corr_30: 2.3277875768033662 + sys_corr_31: -1.7984570297812463 + sys_corr_32: -0.5627775169837619 + sys_corr_33: -0.9296838159149768 + sys_corr_34: -0.7917919946344129 + sys_corr_35: -0.27866727799394564 + sys_corr_36: 0.31639645888569917 + sys_corr_37: 0.2671953018544105 + sys_corr_38: 0.36795666927504256 + sys_corr_39: 0.3094484031787301 + sys_corr_40: 0.7507020553788993 + sys_corr_41: -0.112151391046958 + sys_corr_42: 0.15122924366422166 + sys_corr_43: 0.9686209780943043 + sys_corr_44: 1.3558467303022887 + sys_corr_45: -0.4697405673633604 + sys_corr_46: -0.3231672996876476 + sys_corr_47: 2.4357771100241807 + sys_corr_48: -3.4265028961480843 + sys_corr_49: 2.494552953934156 + sys_corr_50: 1.9460060575102789 + sys_corr_51: 0.8827352293512916 + sys_corr_52: -0.3263329614208207 + sys_corr_53: -0.11139046219844467 + sys_corr_54: 0.9542290458888766 + sys_corr_55: 0.3950087954680105 + sys_corr_56: 0.21082256389875775 + sys_corr_57: 0.28980855346936585 + sys_corr_58: -0.03847825512818865 + sys_corr_59: 0.057874512015189505 + sys_corr_60: 1.5615203936501423 + sys_corr_61: 0.5694762205857732 + sys_corr_62: 0.6608695693788711 + sys_corr_63: 0.2492674682578547 + sys_corr_64: -0.5292714075514 + sys_corr_65: 0.4142720164592331 + sys_corr_66: -0.24979124144449974 + sys_corr_67: -0.15748753123314516 + sys_corr_68: -0.11308464619598765 + sys_corr_69: 0.8902111772382267 + sys_corr_70: -0.48406569593563226 + sys_corr_71: 0.5850317715898742 + sys_corr_72: 0.5651089826161015 + sys_corr_73: 1.1769854773490036 + sys_corr_74: 1.8841192318117514 + sys_corr_75: 2.122334866094098 + sys_corr_76: -0.33753157246057297 + sys_corr_77: -2.8387843689327354 + sys_corr_78: 0.9900700238156888 + sys_corr_79: 0.29816669781113714 + sys_corr_80: -0.7550476927367642 + sys_corr_81: 1.5155271542584317 + sys_corr_82: -0.708677439815575 + sys_corr_83: 0.5528322022256942 + sys_corr_84: -3.2510392773762433 + sys_corr_85: 2.720302064885106 + sys_corr_86: 0.8726861552274879 + sys_corr_87: 0.6584969492189389 + sys_corr_88: -0.17664591144667185 + sys_corr_89: 0.4093613707689048 + sys_corr_90: 1.785354712680056 + sys_corr_91: 3.669051743049878 + sys_corr_92: 0.28360453602381436 + sys_corr_93: -1.9341128776668282 + sys_corr_94: -6.453076233275744 + sys_corr_95: 0.8324235571003715 + sys_corr_96: -0.19207836940658368 + sys_corr_97: 14.313850006715388 + sys_corr_98: 7.024691453072954 + sys_corr_99: 6.594503392248546 + sys_corr_100: 19.455485416742313 + sys_corr_101: -29.994557217517876 + sys_corr_102: -1.2551769316253147 + sys_corr_103: -1.7304673989573585 + sys_corr_104: -14.103409913672838 + sys_corr_105: -73.13776656989418 + sys_corr_106: 28.717467401678128 + sys_corr_107: 62.99619959163374 + sys_corr_108: 12.374433309544735 + sys_corr_109: 3.6198933430563853 + sys_corr_110: 3.521927573449655 + sys_corr_111: -0.9817916461630808 + sys_corr_112: 3.124066969659791 + sys_corr_113: 2.0398540962269487 + sys_corr_114: 0.0005482049291277131 + sys_corr_115: 1.5050663762672636 + sys_corr_116: -0.3964587921071353 + sys_corr_117: -0.16854645689451717 + sys_corr_118: 0.1346227686500346 + sys_corr_119: -0.015499166643683865 + sys_corr_120: 0.06923070096080815 + sys_corr_121: -0.012300504578469885 + sys_corr_122: 0.07914126805320666 + sys_corr_123: 0.09975714841455333 + sys_corr_124: -0.13147712743824866 + sys_corr_125: 0.557136762971176 + sys_corr_126: 0.020333410178191715 + sys_corr_127: -1.497318938429997 + sys_corr_128: -6.296395965232497 + sys_corr_129: 1.3744903936633226 + sys_corr_130: -0.015013988247120802 + sys_corr_131: -0.19430741359012718 + sys_corr_132: -0.12970928981204258 stat: 0.0 luminosity: 61.363632 -- sys_corr_1: 11.062823338211253 - sys_corr_2: 6.599058752596629 - sys_corr_3: -29.126318854256112 - sys_corr_4: -3.205789240589946 - sys_corr_5: -8.312653321328947 - sys_corr_6: -1.0439937025361348 +- sys_corr_1: 11.062823338211263 + sys_corr_2: 6.599058752596628 + sys_corr_3: -29.126318854256084 + sys_corr_4: -3.2057892405899486 + sys_corr_5: -8.31265332132895 + sys_corr_6: -1.043993702536137 sys_corr_7: -1.7938273930728235 - sys_corr_8: -0.21505666258796582 - sys_corr_9: -1.220755057874029 - sys_corr_10: 1.2661273812411789 - sys_corr_11: -1.0651213872466336 - sys_corr_12: 7.611078365439985 - sys_corr_13: 6.69269513414083 - sys_corr_14: -3.096085472224709 - sys_corr_15: 0.13614773620254478 - sys_corr_16: 3.2443800140486942 - sys_corr_17: -12.90604670078909 - sys_corr_18: 2.9069711925089 - sys_corr_19: -9.846761672235038 - sys_corr_20: -0.22504531742562678 - sys_corr_21: 5.897911095503357 - sys_corr_22: 5.893756027902359 - sys_corr_23: -3.4450776222534976 - sys_corr_24: 1.1666822969020425 - sys_corr_25: -6.98772305217488 - sys_corr_26: -7.821773430116833 - sys_corr_27: 7.913513304123205 - sys_corr_28: -8.381722916613656 - sys_corr_29: -2.3764065545838116 - sys_corr_30: 0.897628049234564 - sys_corr_31: 0.6256979644067935 - sys_corr_32: 0.372864618795642 - sys_corr_33: -0.4883841665243523 - sys_corr_34: -1.984267950793925 - sys_corr_35: 1.574614831524796 - sys_corr_36: -2.7699043675917308 - sys_corr_37: -0.806259044016361 - sys_corr_38: 0.06977041333648071 - sys_corr_39: -0.3923418677206882 - sys_corr_40: -1.1763931538186247 - sys_corr_41: 0.7493338182456717 - sys_corr_42: -1.096075371808284 - sys_corr_43: 0.8695798840144483 - sys_corr_44: -0.9586163461347662 - sys_corr_45: -0.10375433278278652 - sys_corr_46: 0.7136828496048276 - sys_corr_47: -1.8814965333063887 - sys_corr_48: 5.236369992134595 - sys_corr_49: -2.802507841979013 - sys_corr_50: 4.1112645457525865 - sys_corr_51: -1.0029531011307653 - sys_corr_52: 1.3086456228791543 - sys_corr_53: -0.1186074442633956 - sys_corr_54: -0.6057132065433306 - sys_corr_55: -0.20102938825847988 - sys_corr_56: -0.5947354263931263 - sys_corr_57: 0.1139215344826382 - sys_corr_58: 0.37447730793327044 - sys_corr_59: 0.19200962152333706 - sys_corr_60: -1.0811004568606315 - sys_corr_61: 0.05859646292578218 - sys_corr_62: -0.5692517835557287 - sys_corr_63: 0.4717384389036878 - sys_corr_64: 0.2566261304072226 - sys_corr_65: -0.363554812073496 - sys_corr_66: 0.3588127428327903 - sys_corr_67: -1.1769720709537264 - sys_corr_68: 0.8858190158859888 - sys_corr_69: 1.1419748018238016 - sys_corr_70: 0.4071221236669676 - sys_corr_71: -0.5538531332381039 - sys_corr_72: 0.029180383762121405 - sys_corr_73: 0.11609098299618234 - sys_corr_74: 1.5844719121276154 - sys_corr_75: 2.200133826717916 - sys_corr_76: -1.0154757580771152 - sys_corr_77: 1.470313995590138 - sys_corr_78: -0.22958048174131826 - sys_corr_79: -1.1903697748540734 - sys_corr_80: -0.9459979340028661 - sys_corr_81: -1.2082887543022338 - sys_corr_82: 0.8775443672695062 - sys_corr_83: 0.6807006007766626 - sys_corr_84: 2.2883499403905097 - sys_corr_85: 1.2765031997636693 - sys_corr_86: -1.0763843133346889 - sys_corr_87: -0.37954522878051916 - sys_corr_88: 0.7148058764662514 - sys_corr_89: 0.8831683203466917 - sys_corr_90: 0.671367870449547 - sys_corr_91: 3.057137188678531 - sys_corr_92: 0.28512746175849935 - sys_corr_93: -2.308343939581969 - sys_corr_94: -8.55770435909125 - sys_corr_95: 2.2454886195639383 - sys_corr_96: 0.02989276936113905 - sys_corr_97: 15.069339323763877 - sys_corr_98: -7.3540351962215 - sys_corr_99: 8.07128120356701 - sys_corr_100: -19.339641478640974 - sys_corr_101: -25.810514887782574 - sys_corr_102: 22.522154570399465 - sys_corr_103: 2.7720866947560254 - sys_corr_104: 3.00076353400013 - sys_corr_105: 18.144453392995096 - sys_corr_106: -78.61505899032693 - sys_corr_107: -1.8509112389891869 - sys_corr_108: 43.07583471926933 - sys_corr_109: 3.8261970228250677 - sys_corr_110: -8.919466105730198 - sys_corr_111: 38.18263325026343 - sys_corr_112: 3.240733036923971 - sys_corr_113: -2.9401691745540446 - sys_corr_114: 0.0059609173222073255 - sys_corr_115: 2.7446373355497653 - sys_corr_116: 0.45091320217109326 - sys_corr_117: 0.18916808098368587 - sys_corr_118: -0.6016107290109458 - sys_corr_119: 0.026789557878409764 - sys_corr_120: -0.05495781479530101 - sys_corr_121: -0.0013842286719500663 - sys_corr_122: 0.22724951448452269 - sys_corr_123: -0.4694539084633779 - sys_corr_124: 0.15528477935180252 - sys_corr_125: -0.07572439664534152 - sys_corr_126: -0.09041427720325704 - sys_corr_127: -1.1984687507972789 - sys_corr_128: 10.108446819034638 - sys_corr_129: 1.88587534773965 - sys_corr_130: -0.004956095623301081 - sys_corr_131: 0.024219034929455714 - sys_corr_132: -0.05106192887881337 + sys_corr_8: -0.21505666258807402 + sys_corr_9: -1.2207550578740887 + sys_corr_10: 1.2661273812410865 + sys_corr_11: -1.0651213872458114 + sys_corr_12: 7.611078365440079 + sys_corr_13: -6.692695134140978 + sys_corr_14: 3.0960854722247677 + sys_corr_15: -0.13614773620257065 + sys_corr_16: -3.2443800140489296 + sys_corr_17: -12.906046700789089 + sys_corr_18: -2.9069711925091233 + sys_corr_19: -9.846761672235155 + sys_corr_20: -0.22504531742533926 + sys_corr_21: 5.8979110955034395 + sys_corr_22: 5.893756027902564 + sys_corr_23: -3.4450776222534074 + sys_corr_24: 1.1666822969020365 + sys_corr_25: -6.987723052175022 + sys_corr_26: -7.821773430117064 + sys_corr_27: 7.913513304123298 + sys_corr_28: -8.381722916613748 + sys_corr_29: -2.3764065545840327 + sys_corr_30: 0.8976280492348749 + sys_corr_31: 0.6256979644068948 + sys_corr_32: -0.3728646187957002 + sys_corr_33: 0.4883841665243206 + sys_corr_34: -1.984267950794085 + sys_corr_35: 1.5746148315244783 + sys_corr_36: -2.769904367591579 + sys_corr_37: 0.8062590440161438 + sys_corr_38: -0.06977041333651333 + sys_corr_39: 0.3923418677207024 + sys_corr_40: 1.1763931538187307 + sys_corr_41: 0.7493338182456913 + sys_corr_42: 1.0960753718083054 + sys_corr_43: 0.8695798840152239 + sys_corr_44: -0.9586163461350526 + sys_corr_45: 0.10375433278264558 + sys_corr_46: -0.7136828496048112 + sys_corr_47: 1.8814965333064069 + sys_corr_48: -5.236369992134499 + sys_corr_49: 2.8025078419783465 + sys_corr_50: 4.111264545752852 + sys_corr_51: -1.002953101130634 + sys_corr_52: 1.308645622878864 + sys_corr_53: 0.11860744426314597 + sys_corr_54: 0.6057132065427906 + sys_corr_55: 0.2010293882579378 + sys_corr_56: 0.5947354263934582 + sys_corr_57: 0.1139215344822847 + sys_corr_58: -0.3744773079332459 + sys_corr_59: 0.19200962152347356 + sys_corr_60: 1.0811004568606428 + sys_corr_61: -0.058596462925454194 + sys_corr_62: 0.5692517835555645 + sys_corr_63: 0.4717384389031264 + sys_corr_64: 0.2566261304068602 + sys_corr_65: -0.36355481207317353 + sys_corr_66: -0.35881274283324754 + sys_corr_67: -1.176972070953746 + sys_corr_68: -0.8858190158852695 + sys_corr_69: 1.1419748018234561 + sys_corr_70: -0.4071221236676391 + sys_corr_71: -0.5538531332373411 + sys_corr_72: -0.029180383762124125 + sys_corr_73: -0.11609098299607457 + sys_corr_74: 1.5844719121273994 + sys_corr_75: 2.200133826719239 + sys_corr_76: -1.0154757580760696 + sys_corr_77: -1.4703139955907194 + sys_corr_78: 0.9459979340032266 + sys_corr_79: -0.22958048174114998 + sys_corr_80: -1.190369774854443 + sys_corr_81: 1.208288754302125 + sys_corr_82: -0.8775443672694422 + sys_corr_83: 0.6807006007766911 + sys_corr_84: -2.288349940390798 + sys_corr_85: 1.2765031997633125 + sys_corr_86: 1.0763843133358086 + sys_corr_87: 0.3795452287805477 + sys_corr_88: 0.7148058764647943 + sys_corr_89: 0.6713678704495221 + sys_corr_90: 0.883168320346531 + sys_corr_91: 3.057137188678595 + sys_corr_92: -0.28512746175857856 + sys_corr_93: -2.3083439395812473 + sys_corr_94: -8.557704359091474 + sys_corr_95: 2.2454886195627477 + sys_corr_96: -0.02989276936044406 + sys_corr_97: 15.069339323764444 + sys_corr_98: 7.354035196221619 + sys_corr_99: 8.071281203566995 + sys_corr_100: -25.81051488778431 + sys_corr_101: -22.52215457040402 + sys_corr_102: 2.772086694731713 + sys_corr_103: -3.000763534000496 + sys_corr_104: -18.14445339299371 + sys_corr_105: 19.339641478625357 + sys_corr_106: -78.61505899032593 + sys_corr_107: 43.07583471926903 + sys_corr_108: 3.826197022825306 + sys_corr_109: 8.919466105729882 + sys_corr_110: 1.850911238989127 + sys_corr_111: -38.18263325026395 + sys_corr_112: 3.2407330369240626 + sys_corr_113: 2.940169174554124 + sys_corr_114: 0.005960917322198146 + sys_corr_115: 2.744637335549778 + sys_corr_116: -0.4509132021707759 + sys_corr_117: -0.18916808098371796 + sys_corr_118: 0.6016107290109735 + sys_corr_119: -0.026789557878418153 + sys_corr_120: 0.054957814795325854 + sys_corr_121: 0.001384228671956366 + sys_corr_122: -0.469453908463406 + sys_corr_123: 0.22724951448459288 + sys_corr_124: 0.15528477935183774 + sys_corr_125: -0.0757243966453079 + sys_corr_126: 0.09041427720324921 + sys_corr_127: -1.1984687507970309 + sys_corr_128: 10.108446819037281 + sys_corr_129: 1.8858753477397276 + sys_corr_130: -0.004956095623323374 + sys_corr_131: -0.02421903492946805 + sys_corr_132: -0.05106192887882274 stat: 0.0 luminosity: 59.62217800000001 -- sys_corr_1: 3.352110528130334 - sys_corr_2: 7.814192110815064 - sys_corr_3: -31.262339594995634 - sys_corr_4: -9.352685615365866 - sys_corr_5: -20.114394685647675 - sys_corr_6: -4.829675562609361 - sys_corr_7: 1.7777988088483612 - sys_corr_8: -0.7659197533990549 - sys_corr_9: -1.2462589564055158 - sys_corr_10: -1.9384613063386262 - sys_corr_11: 3.6471169075163474 - sys_corr_12: 2.3633307804344033 - sys_corr_13: 4.467347196823976 - sys_corr_14: 1.3283515326301403 - sys_corr_15: -3.0233595316699273 - sys_corr_16: 5.049789813629067 - sys_corr_17: 14.513391508058682 - sys_corr_18: -12.219877415648895 - sys_corr_19: -4.096443546049245 - sys_corr_20: 4.950152560441443 - sys_corr_21: -0.43707357205762376 - sys_corr_22: 6.961856940498828 - sys_corr_23: -0.4011575395857137 - sys_corr_24: -0.15228877851834885 - sys_corr_25: -6.066297152057658 - sys_corr_26: -5.5480521528763775 - sys_corr_27: 7.594991893334417 - sys_corr_28: -8.94675364038196 - sys_corr_29: -5.380134732523646 - sys_corr_30: 1.5714994557552635 - sys_corr_31: 2.5997471940416803 - sys_corr_32: 0.15913382971340692 - sys_corr_33: -0.10096563224722833 - sys_corr_34: -2.003476105562475 - sys_corr_35: -0.13842329337415987 - sys_corr_36: -0.1818020954464835 - sys_corr_37: 0.6508509795938596 - sys_corr_38: -0.5311191815452521 - sys_corr_39: 0.1128137260276831 - sys_corr_40: -0.19592051521251844 - sys_corr_41: 0.6993983411260513 - sys_corr_42: -1.0643408092589721 - sys_corr_43: 1.2404540420488428 - sys_corr_44: -1.5193161997840487 - sys_corr_45: 0.3595277042227347 - sys_corr_46: -0.4184202538551921 - sys_corr_47: -2.5097617073317133 - sys_corr_48: 6.577868546786545 - sys_corr_49: -3.215666226299619 - sys_corr_50: 4.350138981567233 - sys_corr_51: -1.6509126455954477 - sys_corr_52: 2.1665103928715665 - sys_corr_53: 0.26589410197934427 - sys_corr_54: -0.7738342140299407 - sys_corr_55: -0.06172337589128523 - sys_corr_56: -0.08469994392427259 - sys_corr_57: -0.3379623188893733 - sys_corr_58: 0.054805384511368474 - sys_corr_59: -0.04154638114227292 - sys_corr_60: -1.0508252003490963 - sys_corr_61: 0.043897841988032336 - sys_corr_62: -0.37913479305157655 - sys_corr_63: 1.1474399155606378 - sys_corr_64: -0.1222956819777342 - sys_corr_65: -0.4225114638371211 - sys_corr_66: -0.6157386099185633 - sys_corr_67: -0.7612639816067583 - sys_corr_68: 0.0681072529752149 - sys_corr_69: 0.47532922422205215 - sys_corr_70: 0.5873634827678108 - sys_corr_71: -0.26486891973685683 - sys_corr_72: 0.8043067557968637 - sys_corr_73: -0.44010740996600994 - sys_corr_74: 1.5591255279797216 - sys_corr_75: 1.849160855219819 - sys_corr_76: -0.647714351964854 - sys_corr_77: 1.8743759083636893 - sys_corr_78: 0.6801924509738284 - sys_corr_79: -0.8091309215188176 - sys_corr_80: -2.5510100239855413 - sys_corr_81: -0.7284042003957799 - sys_corr_82: 0.5778892261018022 - sys_corr_83: 0.3172239586507735 - sys_corr_84: 3.1804520254259527 - sys_corr_85: 1.791633498250934 - sys_corr_86: -1.0798708013827776 - sys_corr_87: 0.26708407161685827 - sys_corr_88: 0.38275576942428197 - sys_corr_89: 1.062194945666859 - sys_corr_90: 1.0281709231072313 - sys_corr_91: 2.3343663646105646 - sys_corr_92: 0.5335901279951863 - sys_corr_93: -1.8419304675899026 - sys_corr_94: -7.381482593923352 - sys_corr_95: 2.027627588115517 - sys_corr_96: -0.3623215496187472 - sys_corr_97: 10.068975949050971 - sys_corr_98: -5.034151997982954 - sys_corr_99: 7.125701552235212 - sys_corr_100: 29.299043581495273 - sys_corr_101: -10.357375193700527 - sys_corr_102: 14.63773060014899 - sys_corr_103: 0.008898277065320814 - sys_corr_104: 2.7331320693002192 - sys_corr_105: 12.642587696504421 - sys_corr_106: 23.48881842129482 - sys_corr_107: -1.7130977085604633 - sys_corr_108: -37.113904371465544 - sys_corr_109: -43.919449898631726 - sys_corr_110: -15.159101905664906 - sys_corr_111: 62.366517972478334 - sys_corr_112: 4.118056445150528 - sys_corr_113: -4.859521078894922 - sys_corr_114: 0.011482747844385416 - sys_corr_115: 3.4926071001492356 - sys_corr_116: 0.6129185561367294 - sys_corr_117: 0.2305970848575172 - sys_corr_118: -0.8970995141560826 - sys_corr_119: 0.04600628727544878 - sys_corr_120: -0.11712704464714274 - sys_corr_121: -0.015364248375250364 - sys_corr_122: 0.17233744625480213 - sys_corr_123: -0.5164539569550346 - sys_corr_124: 0.07408606623269677 - sys_corr_125: -0.15479876159642664 - sys_corr_126: -0.12761212049959278 - sys_corr_127: -1.6749808677233433 - sys_corr_128: 29.775052703576947 - sys_corr_129: 1.4744530534458167 - sys_corr_130: -0.009634083267620682 - sys_corr_131: 0.06231150554144712 - sys_corr_132: 0.08178924956926807 +- sys_corr_1: 3.3521105281303463 + sys_corr_2: 7.814192110815054 + sys_corr_3: -31.26233959499561 + sys_corr_4: -9.352685615365901 + sys_corr_5: -20.11439468564771 + sys_corr_6: -4.829675562609403 + sys_corr_7: 1.7777988088483496 + sys_corr_8: -0.7659197533991289 + sys_corr_9: -1.2462589564054631 + sys_corr_10: -1.9384613063387506 + sys_corr_11: 3.647116907516618 + sys_corr_12: 2.363330780434282 + sys_corr_13: -4.467347196823792 + sys_corr_14: -1.3283515326301787 + sys_corr_15: 3.0233595316699966 + sys_corr_16: -5.049789813629104 + sys_corr_17: 14.513391508058769 + sys_corr_18: 12.219877415649094 + sys_corr_19: -4.096443546049084 + sys_corr_20: 4.950152560441334 + sys_corr_21: -0.43707357205765607 + sys_corr_22: 6.961856940498957 + sys_corr_23: -0.4011575395857601 + sys_corr_24: -0.15228877851827735 + sys_corr_25: -6.066297152057913 + sys_corr_26: -5.548052152876803 + sys_corr_27: 7.594991893334425 + sys_corr_28: -8.946753640382187 + sys_corr_29: -5.380134732523787 + sys_corr_30: 1.5714994557548667 + sys_corr_31: 2.5997471940417527 + sys_corr_32: -0.1591338297126511 + sys_corr_33: 0.10096563224690215 + sys_corr_34: -2.0034761055622434 + sys_corr_35: -0.13842329337435877 + sys_corr_36: -0.1818020954461482 + sys_corr_37: -0.6508509795939028 + sys_corr_38: 0.5311191815450467 + sys_corr_39: -0.11281372602764358 + sys_corr_40: 0.19592051521233306 + sys_corr_41: 0.6993983411259442 + sys_corr_42: 1.064340809259344 + sys_corr_43: 1.240454042049513 + sys_corr_44: -1.5193161997845255 + sys_corr_45: -0.3595277042223397 + sys_corr_46: 0.4184202538554525 + sys_corr_47: 2.509761707331785 + sys_corr_48: -6.577868546786405 + sys_corr_49: 3.215666226298878 + sys_corr_50: 4.350138981567729 + sys_corr_51: -1.6509126455958 + sys_corr_52: 2.1665103928710017 + sys_corr_53: -0.26589410197972524 + sys_corr_54: 0.7738342140288317 + sys_corr_55: 0.06172337589080099 + sys_corr_56: 0.08469994392439377 + sys_corr_57: -0.3379623188898729 + sys_corr_58: -0.0548053845119404 + sys_corr_59: -0.041546381142094656 + sys_corr_60: 1.050825200349592 + sys_corr_61: -0.04389784198754436 + sys_corr_62: 0.37913479305112624 + sys_corr_63: 1.1474399155607018 + sys_corr_64: -0.12229568197782523 + sys_corr_65: -0.42251146383728394 + sys_corr_66: 0.6157386099183019 + sys_corr_67: -0.761263981606983 + sys_corr_68: -0.06810725297489238 + sys_corr_69: 0.4753292242217863 + sys_corr_70: -0.5873634827679447 + sys_corr_71: -0.2648689197367378 + sys_corr_72: -0.8043067557969614 + sys_corr_73: 0.44010740996644504 + sys_corr_74: 1.5591255279791183 + sys_corr_75: 1.8491608552203895 + sys_corr_76: -0.6477143519637061 + sys_corr_77: -1.874375908362742 + sys_corr_78: 2.5510100239856817 + sys_corr_79: 0.6801924509738697 + sys_corr_80: -0.8091309215191504 + sys_corr_81: 0.7284042003960459 + sys_corr_82: -0.5778892261017721 + sys_corr_83: 0.31722395865102454 + sys_corr_84: -3.1804520254265993 + sys_corr_85: 1.7916334982501951 + sys_corr_86: 1.0798708013844582 + sys_corr_87: -0.26708407161673753 + sys_corr_88: 0.38275576942353495 + sys_corr_89: 1.028170923107174 + sys_corr_90: 1.0621949456666937 + sys_corr_91: 2.334366364610304 + sys_corr_92: -0.5335901279954408 + sys_corr_93: -1.8419304675895058 + sys_corr_94: -7.381482593923153 + sys_corr_95: 2.0276275881138566 + sys_corr_96: 0.362321549618965 + sys_corr_97: 10.068975949051753 + sys_corr_98: 5.034151997983341 + sys_corr_99: 7.12570155223541 + sys_corr_100: -10.35737519370157 + sys_corr_101: -14.637730600150414 + sys_corr_102: 0.008898277051427836 + sys_corr_103: -2.7331320692999848 + sys_corr_104: -12.64258769650259 + sys_corr_105: -29.29904358149228 + sys_corr_106: 23.488818421294315 + sys_corr_107: -37.1139043714665 + sys_corr_108: -43.91944989863029 + sys_corr_109: 15.15910190566439 + sys_corr_110: 1.713097708561113 + sys_corr_111: -62.36651797248168 + sys_corr_112: 4.118056445150777 + sys_corr_113: 4.859521078894855 + sys_corr_114: 0.011482747844387416 + sys_corr_115: 3.4926071001493337 + sys_corr_116: -0.6129185561364318 + sys_corr_117: -0.23059708485752098 + sys_corr_118: 0.897099514156116 + sys_corr_119: -0.046006287275446874 + sys_corr_120: 0.11712704464719796 + sys_corr_121: 0.015364248375233465 + sys_corr_122: -0.5164539569550747 + sys_corr_123: 0.17233744625487155 + sys_corr_124: 0.07408606623263451 + sys_corr_125: -0.15479876159641612 + sys_corr_126: 0.12761212049958878 + sys_corr_127: -1.674980867723255 + sys_corr_128: 29.775052703577796 + sys_corr_129: 1.4744530534457978 + sys_corr_130: -0.009634083267671574 + sys_corr_131: -0.062311505541510485 + sys_corr_132: 0.0817892495692453 stat: 0.0 luminosity: 55.40271 -- sys_corr_1: -0.4375830501411203 - sys_corr_2: 7.346678411334769 - sys_corr_3: -32.64876258401491 - sys_corr_4: -10.831052333528502 - sys_corr_5: -26.62494039507906 - sys_corr_6: -7.3039586323895955 - sys_corr_7: 3.329442901743884 - sys_corr_8: 1.7128365591247554 - sys_corr_9: 0.06130840565840148 - sys_corr_10: 0.909091570238215 - sys_corr_11: 3.5392542185037925 - sys_corr_12: 2.2420294297221166 - sys_corr_13: 0.3403109864363216 - sys_corr_14: 3.3693504271285457 - sys_corr_15: -1.6182728599318577 - sys_corr_16: 1.3490453741647672 - sys_corr_17: -11.396863590177444 - sys_corr_18: 2.438158247688464 - sys_corr_19: 17.238109177006518 - sys_corr_20: 3.6729808073754633 - sys_corr_21: -9.789245641265563 - sys_corr_22: 0.3541318055535205 - sys_corr_23: 1.3081603512419984 - sys_corr_24: -3.815270039786912 - sys_corr_25: -8.369880699150858 - sys_corr_26: -2.2728973237206476 - sys_corr_27: 7.536085985929884 - sys_corr_28: -7.324313235941715 - sys_corr_29: -5.0336862763195604 - sys_corr_30: 3.117706236395882 - sys_corr_31: 1.0673338019375365 - sys_corr_32: 0.19561357849238453 - sys_corr_33: 0.09684363473547265 - sys_corr_34: -1.2308245855358089 - sys_corr_35: 0.42414491696375406 - sys_corr_36: -1.9534431976599607 - sys_corr_37: -0.9050207767174011 - sys_corr_38: 0.5196491774141591 - sys_corr_39: 0.3855119394382524 - sys_corr_40: 0.5690977119432875 - sys_corr_41: 1.1731809519664513 - sys_corr_42: -2.1159190247529276 - sys_corr_43: 0.6538429270740516 - sys_corr_44: -1.2370237187029074 - sys_corr_45: 0.16513602397461655 - sys_corr_46: -0.6383674361856786 - sys_corr_47: -2.723545620947091 - sys_corr_48: 6.787358511704354 - sys_corr_49: -3.173882431943346 - sys_corr_50: 2.9475156165855054 - sys_corr_51: -0.8580344405140027 - sys_corr_52: 0.6728453962429166 - sys_corr_53: 0.2682251218294551 - sys_corr_54: -0.8803741620378603 - sys_corr_55: 0.69265605767422 - sys_corr_56: -0.032456674404689724 - sys_corr_57: 0.18986834938617245 - sys_corr_58: -0.0073566001367896695 - sys_corr_59: 0.34830434543871935 - sys_corr_60: -0.5919156821753339 - sys_corr_61: -0.5616044981709792 - sys_corr_62: -1.0571470672304024 - sys_corr_63: 0.15379239491010815 - sys_corr_64: 0.46183188256343427 - sys_corr_65: -0.3221759648436054 - sys_corr_66: -0.21887329894507918 - sys_corr_67: -0.33287513009381925 - sys_corr_68: 0.414399887967621 - sys_corr_69: -0.1215815496534402 - sys_corr_70: 1.3723192877628612 - sys_corr_71: -0.916253076507534 - sys_corr_72: -0.17559441795689223 - sys_corr_73: -0.3520897935353196 - sys_corr_74: 2.0765416582960445 - sys_corr_75: 2.5141797484353114 - sys_corr_76: -0.06201679781152416 - sys_corr_77: 2.380086500269992 - sys_corr_78: 1.413725893726791 - sys_corr_79: -1.3260379586242104 - sys_corr_80: -0.45002589580691377 - sys_corr_81: -2.173015515730171 - sys_corr_82: 1.338471113689387 - sys_corr_83: 1.3738570663762735 - sys_corr_84: 4.455995773495222 - sys_corr_85: 1.6038914249580527 - sys_corr_86: -1.8161815639447738 - sys_corr_87: 0.004158229157680105 - sys_corr_88: 0.6788431185457131 - sys_corr_89: 0.2076373806358516 - sys_corr_90: 1.6841520630784597 - sys_corr_91: 4.088515904535221 - sys_corr_92: -0.12011787855348963 - sys_corr_93: -2.3520662714983858 - sys_corr_94: -8.501220253609446 - sys_corr_95: 2.7652212992402916 - sys_corr_96: -0.5273636919602914 - sys_corr_97: 10.794340096429924 - sys_corr_98: -5.414393204193327 - sys_corr_99: 7.186480234060143 - sys_corr_100: 9.428042472861804 - sys_corr_101: -10.890628581580376 - sys_corr_102: 19.702738687100723 - sys_corr_103: 5.876964079852424 - sys_corr_104: 3.184675184602036 - sys_corr_105: 14.405061547853391 - sys_corr_106: -22.008546845516694 - sys_corr_107: -2.725944657123569 - sys_corr_108: 6.522081763381422 - sys_corr_109: -73.29321021829804 - sys_corr_110: 9.204229400431485 - sys_corr_111: -50.57364770517333 - sys_corr_112: -0.1362324567485069 - sys_corr_113: -8.082651717032856 - sys_corr_114: 0.009388429778813875 - sys_corr_115: 3.4519680606077587 - sys_corr_116: 0.5168751707684549 - sys_corr_117: 0.2044449551459754 - sys_corr_118: -0.8600086359874636 - sys_corr_119: 0.03489231917896985 - sys_corr_120: -0.0991902201016425 - sys_corr_121: -0.07335627140765719 - sys_corr_122: -0.48117387959223756 - sys_corr_123: -0.06455766969903408 - sys_corr_124: 0.025515306379469107 - sys_corr_125: -0.08763982844161357 - sys_corr_126: -0.24526995700497436 - sys_corr_127: -0.739042513079096 - sys_corr_128: -15.463002818505199 - sys_corr_129: 1.8324425584021424 - sys_corr_130: -0.04627090324790528 - sys_corr_131: 0.08632888279923741 - sys_corr_132: -0.02731581200867947 +- sys_corr_1: -0.43758305014111465 + sys_corr_2: 7.346678411334759 + sys_corr_3: -32.64876258401495 + sys_corr_4: -10.831052333528577 + sys_corr_5: -26.624940395079093 + sys_corr_6: -7.303958632389601 + sys_corr_7: 3.3294429017438527 + sys_corr_8: 1.712836559124797 + sys_corr_9: 0.0613084056584519 + sys_corr_10: 0.9090915702380779 + sys_corr_11: 3.5392542185040643 + sys_corr_12: 2.2420294297219603 + sys_corr_13: -0.3403109864362872 + sys_corr_14: -3.3693504271285546 + sys_corr_15: 1.618272859931762 + sys_corr_16: -1.3490453741648556 + sys_corr_17: -11.396863590177572 + sys_corr_18: -2.4381582476887873 + sys_corr_19: 17.238109177006304 + sys_corr_20: 3.672980807374872 + sys_corr_21: -9.789245641265774 + sys_corr_22: 0.3541318055532093 + sys_corr_23: 1.3081603512420203 + sys_corr_24: -3.8152700397868395 + sys_corr_25: -8.369880699151029 + sys_corr_26: -2.2728973237207897 + sys_corr_27: 7.536085985929682 + sys_corr_28: -7.324313235941581 + sys_corr_29: -5.033686276319659 + sys_corr_30: 3.1177062363959407 + sys_corr_31: 1.067333801937263 + sys_corr_32: -0.19561357849277314 + sys_corr_33: -0.09684363473539652 + sys_corr_34: -1.2308245855357371 + sys_corr_35: 0.42414491696365114 + sys_corr_36: -1.9534431976601485 + sys_corr_37: 0.9050207767172531 + sys_corr_38: -0.5196491774140142 + sys_corr_39: -0.38551193943813566 + sys_corr_40: -0.5690977119434346 + sys_corr_41: 1.1731809519669032 + sys_corr_42: 2.115919024753108 + sys_corr_43: 0.6538429270749404 + sys_corr_44: -1.2370237187035453 + sys_corr_45: -0.16513602397401866 + sys_corr_46: 0.6383674361854473 + sys_corr_47: 2.723545620947143 + sys_corr_48: -6.78735851170439 + sys_corr_49: 3.173882431942522 + sys_corr_50: 2.947515616585995 + sys_corr_51: -0.8580344405139905 + sys_corr_52: 0.6728453962426965 + sys_corr_53: -0.26822512183002895 + sys_corr_54: 0.8803741620377667 + sys_corr_55: -0.6926560576744428 + sys_corr_56: 0.03245667440472389 + sys_corr_57: 0.18986834938603867 + sys_corr_58: 0.007356600137047011 + sys_corr_59: 0.3483043454388905 + sys_corr_60: 0.5919156821755731 + sys_corr_61: 0.5616044981710504 + sys_corr_62: 1.0571470672299765 + sys_corr_63: 0.15379239491006835 + sys_corr_64: 0.4618318825632168 + sys_corr_65: -0.32217596484295113 + sys_corr_66: 0.21887329894485094 + sys_corr_67: -0.33287513009388925 + sys_corr_68: -0.41439988796734595 + sys_corr_69: -0.12158154965302544 + sys_corr_70: -1.372319287762559 + sys_corr_71: -0.9162530765081077 + sys_corr_72: 0.17559441795728079 + sys_corr_73: 0.3520897935350739 + sys_corr_74: 2.076541658295743 + sys_corr_75: 2.514179748435887 + sys_corr_76: -0.062016797809870225 + sys_corr_77: -2.3800865002704352 + sys_corr_78: 0.45002589580712904 + sys_corr_79: 1.4137258937269184 + sys_corr_80: -1.3260379586235824 + sys_corr_81: 2.173015515729891 + sys_corr_82: -1.3384711136893712 + sys_corr_83: 1.3738570663767886 + sys_corr_84: -4.455995773495405 + sys_corr_85: 1.6038914249573046 + sys_corr_86: 1.8161815639460819 + sys_corr_87: -0.004158229157895405 + sys_corr_88: 0.6788431185438173 + sys_corr_89: 1.684152063078437 + sys_corr_90: 0.2076373806356784 + sys_corr_91: 4.088515904535343 + sys_corr_92: 0.12011787855299533 + sys_corr_93: -2.3520662714978635 + sys_corr_94: -8.501220253610075 + sys_corr_95: 2.7652212992394984 + sys_corr_96: 0.5273636919606771 + sys_corr_97: 10.794340096429861 + sys_corr_98: 5.414393204193373 + sys_corr_99: 7.186480234059927 + sys_corr_100: -10.890628581581632 + sys_corr_101: -19.70273868710481 + sys_corr_102: 5.876964079834257 + sys_corr_103: -3.1846751846021415 + sys_corr_104: -14.405061547852974 + sys_corr_105: -9.42804247286544 + sys_corr_106: -22.00854684551573 + sys_corr_107: 6.522081763383541 + sys_corr_108: -73.2932102182986 + sys_corr_109: -9.204229400430586 + sys_corr_110: 2.725944657123619 + sys_corr_111: 50.573647705174096 + sys_corr_112: -0.13623245674862886 + sys_corr_113: 8.082651717032677 + sys_corr_114: 0.009388429778813491 + sys_corr_115: 3.4519680606079985 + sys_corr_116: -0.51687517076819 + sys_corr_117: -0.20444495514591268 + sys_corr_118: 0.8600086359872512 + sys_corr_119: -0.03489231917898175 + sys_corr_120: 0.09919022010158281 + sys_corr_121: 0.07335627140764081 + sys_corr_122: -0.06455766969915452 + sys_corr_123: -0.48117387959229235 + sys_corr_124: 0.02551530637960221 + sys_corr_125: -0.08763982844151687 + sys_corr_126: 0.24526995700498228 + sys_corr_127: -0.739042513078901 + sys_corr_128: -15.463002818506892 + sys_corr_129: 1.8324425584021193 + sys_corr_130: -0.0462709032479278 + sys_corr_131: -0.08632888279917326 + sys_corr_132: -0.02731581200863822 stat: 0.0 luminosity: 53.63272200000001 - sys_corr_1: -7.1681804442018695 - sys_corr_2: 3.239325194509477 - sys_corr_3: -34.694772062867635 - sys_corr_4: -14.23093161952492 - sys_corr_5: -33.09023855335382 - sys_corr_6: -8.307768351268148 - sys_corr_7: 6.6321006142364 - sys_corr_8: 4.290642287228012 - sys_corr_9: 1.7284495932439767 - sys_corr_10: 1.3934069671249039 - sys_corr_11: 1.026027888046969 - sys_corr_12: -2.226733404608136 - sys_corr_13: -3.5060570463574114 - sys_corr_14: 1.030187043941126 - sys_corr_15: 0.9526204936183155 - sys_corr_16: -3.306159299618198 - sys_corr_17: 1.4967692996559274 - sys_corr_18: 4.035315494690766 - sys_corr_19: 1.8021602386282745 - sys_corr_20: -5.227511591963217 - sys_corr_21: 23.277617412951848 - sys_corr_22: 0.9329594421008343 - sys_corr_23: -1.564094805917552 - sys_corr_24: -1.0518406716660318 - sys_corr_25: 6.112217136175545 - sys_corr_26: -6.907705615675753 - sys_corr_27: 4.055889982516471 - sys_corr_28: -9.794295645016957 - sys_corr_29: -8.32613579030477 - sys_corr_30: 2.3775098760461812 - sys_corr_31: 0.5669826535712525 - sys_corr_32: 0.24079617451024996 - sys_corr_33: -0.18015290598212938 - sys_corr_34: 0.7902236421989931 - sys_corr_35: 0.9006346088966793 - sys_corr_36: 0.06980381867120691 - sys_corr_37: -0.46584364631680886 - sys_corr_38: -0.3052467538312135 - sys_corr_39: -0.5119402871404222 - sys_corr_40: -0.08958791455246391 - sys_corr_41: 0.9957645784720925 - sys_corr_42: -1.2711163080894703 - sys_corr_43: 0.8982657271581317 - sys_corr_44: -1.7676517428691527 - sys_corr_45: -0.150500552743421 - sys_corr_46: -0.35374985478358595 - sys_corr_47: -2.5606825094053316 - sys_corr_48: 6.092954815361125 - sys_corr_49: -3.3708842368047147 - sys_corr_50: 3.026461458965731 - sys_corr_51: -0.8552754051153465 - sys_corr_52: 1.4362189948045236 - sys_corr_53: 0.10069782015272848 - sys_corr_54: -0.31555142502713857 - sys_corr_55: -0.49605498901044925 - sys_corr_56: -0.014769278826851645 - sys_corr_57: 0.3760408166391697 - sys_corr_58: 0.30448275792059676 - sys_corr_59: -0.006129341395657578 - sys_corr_60: -0.6436754858093569 - sys_corr_61: -0.7659617822614814 - sys_corr_62: -1.4458362504369906 - sys_corr_63: 0.10894244425865272 - sys_corr_64: 0.04816104871111378 - sys_corr_65: -0.9420446409949482 - sys_corr_66: -0.4228821750790961 - sys_corr_67: -0.646601081216413 - sys_corr_68: 0.5457147691267805 - sys_corr_69: -0.019048806689956115 - sys_corr_70: -0.08080899703571592 - sys_corr_71: -0.4147633762293948 - sys_corr_72: 0.2916646667027436 - sys_corr_73: -1.0958031514653215 - sys_corr_74: 1.848678341633908 - sys_corr_75: 1.158053739745381 - sys_corr_76: 0.29206465044269475 - sys_corr_77: 0.5403794464234772 - sys_corr_78: 0.6457119969057751 - sys_corr_79: -1.0360333797588634 - sys_corr_80: -1.3630321103382594 - sys_corr_81: -0.18194801840442565 - sys_corr_82: 0.6907931847893066 - sys_corr_83: 0.6441290446627863 - sys_corr_84: 4.424575663310715 - sys_corr_85: 1.014566140505159 - sys_corr_86: -0.5458233420997715 - sys_corr_87: 0.3100746340069639 - sys_corr_88: 0.7976936989002328 - sys_corr_89: 1.2728221544941567 - sys_corr_90: 1.2527679261450673 - sys_corr_91: 3.2933636064716607 - sys_corr_92: 0.21510405989631884 - sys_corr_93: -1.8060916218168885 - sys_corr_94: -7.01742378149478 - sys_corr_95: 0.9978385007628023 - sys_corr_96: -0.10386820072604518 - sys_corr_97: 8.424704400981533 - sys_corr_98: -4.053635903439822 - sys_corr_99: 4.001999105850014 - sys_corr_100: 12.47472987254602 - sys_corr_101: -6.9051335066838035 - sys_corr_102: 12.981841632299448 - sys_corr_103: -1.1006842488937754 - sys_corr_104: 2.122116980365514 - sys_corr_105: 8.622745452692273 - sys_corr_106: -5.525474773504781 - sys_corr_107: -2.823941505067425 - sys_corr_108: -11.16754036156348 - sys_corr_109: 9.317828047696652 - sys_corr_110: 81.7020142912004 - sys_corr_111: 14.51081187255978 - sys_corr_112: -19.85838260524835 - sys_corr_113: -3.146367019039692 - sys_corr_114: 0.005007274574216176 - sys_corr_115: 1.2874118532303962 - sys_corr_116: 0.35997127488406644 - sys_corr_117: 0.11055776655269825 - sys_corr_118: -2.48153588812532 - sys_corr_119: 0.03315532413782159 - sys_corr_120: -0.06202511804884199 - sys_corr_121: -0.12562489015101172 - sys_corr_122: -0.7330179385704649 - sys_corr_123: -0.30652161112393755 - sys_corr_124: 0.6606075923379509 - sys_corr_125: 0.06826450443664805 - sys_corr_126: -0.16392822865015136 - sys_corr_127: -0.28428027941103945 - sys_corr_128: 8.376561315009086 - sys_corr_129: 6.692799035754694 - sys_corr_130: 0.05597566860268545 - sys_corr_131: -0.035176192810759156 - sys_corr_132: -0.5890054365226337 + sys_corr_2: 3.2393251945094583 + sys_corr_3: -34.69477206286761 + sys_corr_4: -14.230931619525013 + sys_corr_5: -33.09023855335386 + sys_corr_6: -8.307768351268157 + sys_corr_7: 6.6321006142363155 + sys_corr_8: 4.290642287228193 + sys_corr_9: 1.7284495932440527 + sys_corr_10: 1.3934069671248868 + sys_corr_11: 1.0260278880467508 + sys_corr_12: -2.226733404608203 + sys_corr_13: 3.50605704635746 + sys_corr_14: -1.0301870439411291 + sys_corr_15: -0.9526204936183635 + sys_corr_16: 3.3061592996183844 + sys_corr_17: 1.4967692996560094 + sys_corr_18: -4.035315494690713 + sys_corr_19: 1.802160238628345 + sys_corr_20: -5.227511591962643 + sys_corr_21: 23.277617412951773 + sys_corr_22: 0.9329594421014556 + sys_corr_23: -1.5640948059178499 + sys_corr_24: -1.0518406716660749 + sys_corr_25: 6.11221713617539 + sys_corr_26: -6.9077056156764 + sys_corr_27: 4.055889982516786 + sys_corr_28: -9.794295645016833 + sys_corr_29: -8.326135790305177 + sys_corr_30: 2.377509876046128 + sys_corr_31: 0.5669826535714699 + sys_corr_32: -0.24079617451018281 + sys_corr_33: 0.18015290598178912 + sys_corr_34: 0.7902236421987203 + sys_corr_35: 0.9006346088969421 + sys_corr_36: 0.06980381867096153 + sys_corr_37: 0.46584364631686487 + sys_corr_38: 0.30524675383099886 + sys_corr_39: 0.5119402871403318 + sys_corr_40: 0.0895879145522092 + sys_corr_41: 0.9957645784718991 + sys_corr_42: 1.2711163080897432 + sys_corr_43: 0.8982657271587233 + sys_corr_44: -1.7676517428693408 + sys_corr_45: 0.1505005527440527 + sys_corr_46: 0.35374985478352367 + sys_corr_47: 2.5606825094052486 + sys_corr_48: -6.09295481536107 + sys_corr_49: 3.3708842368040988 + sys_corr_50: 3.026461458966156 + sys_corr_51: -0.8552754051152514 + sys_corr_52: 1.4362189948042965 + sys_corr_53: -0.10069782015293699 + sys_corr_54: 0.3155514250262995 + sys_corr_55: 0.49605498900999484 + sys_corr_56: 0.01476927882733331 + sys_corr_57: 0.3760408166387291 + sys_corr_58: -0.3044827579207796 + sys_corr_59: -0.006129341395136953 + sys_corr_60: 0.6436754858095273 + sys_corr_61: 0.765961782262002 + sys_corr_62: 1.4458362504367737 + sys_corr_63: 0.1089424442587531 + sys_corr_64: 0.04816104871070092 + sys_corr_65: -0.9420446409951643 + sys_corr_66: 0.4228821750789358 + sys_corr_67: -0.6466010812163755 + sys_corr_68: -0.5457147691261091 + sys_corr_69: -0.019048806690416895 + sys_corr_70: 0.08080899703560807 + sys_corr_71: -0.4147633762291229 + sys_corr_72: -0.2916646667026393 + sys_corr_73: 1.0958031514653106 + sys_corr_74: 1.848678341634173 + sys_corr_75: 1.15805373974525 + sys_corr_76: 0.2920646504433934 + sys_corr_77: -0.5403794464237148 + sys_corr_78: 1.3630321103383152 + sys_corr_79: 0.6457119969057 + sys_corr_80: -1.0360333797586978 + sys_corr_81: 0.18194801840418912 + sys_corr_82: -0.6907931847893454 + sys_corr_83: 0.6441290446629171 + sys_corr_84: -4.424575663310724 + sys_corr_85: 1.014566140504483 + sys_corr_86: 0.5458233421014049 + sys_corr_87: -0.3100746340069992 + sys_corr_88: 0.7976936989000744 + sys_corr_89: 1.2527679261451268 + sys_corr_90: 1.2728221544941216 + sys_corr_91: 3.2933636064718415 + sys_corr_92: -0.21510405989648754 + sys_corr_93: -1.8060916218164231 + sys_corr_94: -7.017423781495445 + sys_corr_95: 0.9978385007624329 + sys_corr_96: 0.10386820072669563 + sys_corr_97: 8.424704400981609 + sys_corr_98: 4.053635903439937 + sys_corr_99: 4.001999105850172 + sys_corr_100: -6.905133506684079 + sys_corr_101: -12.981841632300677 + sys_corr_102: -1.1006842489065687 + sys_corr_103: -2.1221169803653837 + sys_corr_104: -8.622745452689642 + sys_corr_105: -12.474729872548146 + sys_corr_106: -5.525474773505629 + sys_corr_107: -11.167540361564265 + sys_corr_108: 9.317828047697825 + sys_corr_109: -81.70201429120084 + sys_corr_110: 2.8239415050678596 + sys_corr_111: -14.510811872559831 + sys_corr_112: -19.85838260524807 + sys_corr_113: 3.1463670190404724 + sys_corr_114: 0.005007274574189219 + sys_corr_115: 1.2874118532303938 + sys_corr_116: -0.3599712748837483 + sys_corr_117: -0.11055776655273022 + sys_corr_118: 2.4815358881253333 + sys_corr_119: -0.03315532413783951 + sys_corr_120: 0.06202511804896464 + sys_corr_121: 0.12562489015097755 + sys_corr_122: -0.3065216111237709 + sys_corr_123: -0.7330179385703746 + sys_corr_124: 0.6606075923385065 + sys_corr_125: 0.06826450443662542 + sys_corr_126: 0.16392822865019185 + sys_corr_127: -0.284280279410605 + sys_corr_128: 8.376561315009305 + sys_corr_129: 6.692799035754631 + sys_corr_130: 0.055975668602705746 + sys_corr_131: 0.03517619281068336 + sys_corr_132: -0.5890054365226369 stat: 0.0 luminosity: 48.11107400000001 -- sys_corr_1: -8.410994944457505 - sys_corr_2: 4.27627880106309 - sys_corr_3: -34.287669001927924 - sys_corr_4: -8.326645241715239 - sys_corr_5: -30.46697499037488 - sys_corr_6: -9.761919655806214 - sys_corr_7: 7.354468332616889 - sys_corr_8: 5.819710629111155 - sys_corr_9: 3.7129613601620903 - sys_corr_10: 2.3124877388821883 - sys_corr_11: 3.0351395073662624 - sys_corr_12: -2.2677935869510906 - sys_corr_13: -5.766620456338789 - sys_corr_14: -3.2668152590693915 - sys_corr_15: 2.7949206059921354 - sys_corr_16: -5.901201991469081 - sys_corr_17: 1.6753657980474344 - sys_corr_18: 7.289275449367936 - sys_corr_19: -11.402208985902117 - sys_corr_20: 12.239024622068785 - sys_corr_21: -6.188782578652939 - sys_corr_22: 0.8225103232442155 - sys_corr_23: 2.019067744262311 - sys_corr_24: -2.3483216231299417 - sys_corr_25: -6.1175738271179 - sys_corr_26: -6.433240520142632 - sys_corr_27: 4.290902810859639 - sys_corr_28: -5.557764957530087 - sys_corr_29: -3.827328287730268 - sys_corr_30: 3.2737039550495317 - sys_corr_31: 3.743953727205011 - sys_corr_32: 0.7653752579916862 - sys_corr_33: -0.43272721593565144 - sys_corr_34: -1.923029405520469 - sys_corr_35: 0.13876263472027367 - sys_corr_36: -0.490336245901093 - sys_corr_37: -1.0385719233629924 - sys_corr_38: -0.10256843639392829 - sys_corr_39: -0.26771471631458615 - sys_corr_40: 0.19130261981824126 - sys_corr_41: 1.1129208379224795 - sys_corr_42: -1.7587481134473 - sys_corr_43: 1.3783599316537751 - sys_corr_44: -0.3879020575791476 - sys_corr_45: 0.6802176362031138 - sys_corr_46: -0.3622823816880291 - sys_corr_47: -2.045786119397531 - sys_corr_48: 6.30714202956551 - sys_corr_49: -3.927701026565192 - sys_corr_50: 2.6506721439305823 - sys_corr_51: -0.1276110422622858 - sys_corr_52: 1.101086737709814 - sys_corr_53: -0.2815111299526387 - sys_corr_54: -1.891117966098968 - sys_corr_55: 0.035501202970009256 - sys_corr_56: 0.5211808369079064 - sys_corr_57: 0.2042810999938999 - sys_corr_58: -0.3697115953171396 - sys_corr_59: 0.07286849263034331 - sys_corr_60: -1.3603732721219182 - sys_corr_61: -1.0577665523688313 - sys_corr_62: -1.6015328324414346 - sys_corr_63: 1.1171415949594337 - sys_corr_64: 0.19611522437725626 - sys_corr_65: -0.590347577051012 - sys_corr_66: 0.020455125293001152 - sys_corr_67: -0.738633394054542 - sys_corr_68: 0.4443503257699125 - sys_corr_69: 1.0646982628545218 - sys_corr_70: 0.0653615411329661 - sys_corr_71: -0.942887062536859 - sys_corr_72: 0.8540893025725567 - sys_corr_73: -0.4881127646179621 - sys_corr_74: 1.9271889935388682 - sys_corr_75: 2.434266755209004 - sys_corr_76: -0.4397445150648607 - sys_corr_77: 2.2247957155866254 - sys_corr_78: 1.5435671671638436 - sys_corr_79: -1.065688214262451 - sys_corr_80: -1.7753994249095533 - sys_corr_81: -1.9048612506906724 - sys_corr_82: 1.4453821398283142 - sys_corr_83: 1.1811397196794255 - sys_corr_84: 4.620795747212603 - sys_corr_85: 0.886662587256011 - sys_corr_86: -2.0057054846041917 - sys_corr_87: 0.036553682693209945 - sys_corr_88: 0.2504014814399937 - sys_corr_89: 0.9919469638339461 - sys_corr_90: 1.2181943209737711 - sys_corr_91: 7.3852871938417595 - sys_corr_92: 0.4655716977935171 - sys_corr_93: -2.3891865918991315 - sys_corr_94: -8.393299572038165 - sys_corr_95: 3.216656312659015 - sys_corr_96: -0.2740855217418551 - sys_corr_97: 9.739958497725667 - sys_corr_98: -5.4019679107988985 - sys_corr_99: 5.858437147389858 - sys_corr_100: 20.643039153589605 - sys_corr_101: -9.612042680217254 - sys_corr_102: 16.28049956620578 - sys_corr_103: 3.703069460834062 - sys_corr_104: 3.57079991315321 - sys_corr_105: 11.737877496352743 - sys_corr_106: -14.676999465233108 - sys_corr_107: -2.3047588495577616 - sys_corr_108: -20.54831747644839 - sys_corr_109: 10.066269924059744 - sys_corr_110: -24.879472219550795 - sys_corr_111: -11.153010126735238 - sys_corr_112: -65.119246802199 - sys_corr_113: 27.187825818579945 - sys_corr_114: 0.00327788801611978 - sys_corr_115: 1.0636603597465653 - sys_corr_116: 0.17166336821934894 - sys_corr_117: 0.2972356675244751 - sys_corr_118: -1.195168532576 - sys_corr_119: -0.038079782997480424 - sys_corr_120: -0.23292227277717426 - sys_corr_121: -0.31245980341064966 - sys_corr_122: 0.11434587013474527 - sys_corr_123: 0.28800412619766047 - sys_corr_124: 0.4075807510387212 - sys_corr_125: -0.4618910774821715 - sys_corr_126: 0.42064015125069376 - sys_corr_127: -1.1434899741342088 - sys_corr_128: -1.5486352347293169 - sys_corr_129: -2.733383250149177 - sys_corr_130: 0.3809657595939127 - sys_corr_131: 0.21653153168770176 - sys_corr_132: -0.268958645912991 +- sys_corr_1: -8.410994944457501 + sys_corr_2: 4.2762788010630866 + sys_corr_3: -34.28766900192793 + sys_corr_4: -8.32664524171526 + sys_corr_5: -30.466974990374887 + sys_corr_6: -9.761919655806212 + sys_corr_7: 7.354468332616826 + sys_corr_8: 5.819710629111437 + sys_corr_9: 3.712961360162199 + sys_corr_10: 2.3124877388820697 + sys_corr_11: 3.0351395073660363 + sys_corr_12: -2.267793586951259 + sys_corr_13: 5.766620456338827 + sys_corr_14: 3.2668152590692916 + sys_corr_15: -2.7949206059920892 + sys_corr_16: 5.901201991469429 + sys_corr_17: 1.6753657980473877 + sys_corr_18: -7.2892754493678344 + sys_corr_19: -11.402208985902467 + sys_corr_20: 12.239024622068833 + sys_corr_21: -6.188782578652877 + sys_corr_22: 0.8225103232439513 + sys_corr_23: 2.019067744262448 + sys_corr_24: -2.348321623130054 + sys_corr_25: -6.117573827117939 + sys_corr_26: -6.433240520142635 + sys_corr_27: 4.290902810859761 + sys_corr_28: -5.557764957530112 + sys_corr_29: -3.8273282877304142 + sys_corr_30: 3.2737039550496947 + sys_corr_31: 3.7439537272051 + sys_corr_32: -0.7653752579916541 + sys_corr_33: 0.4327272159355297 + sys_corr_34: -1.9230294055205825 + sys_corr_35: 0.13876263472001593 + sys_corr_36: -0.49033624590104047 + sys_corr_37: 1.0385719233629527 + sys_corr_38: 0.10256843639390252 + sys_corr_39: 0.267714716314773 + sys_corr_40: -0.1913026198183535 + sys_corr_41: 1.112920837922614 + sys_corr_42: 1.7587481134474827 + sys_corr_43: 1.3783599316546844 + sys_corr_44: -0.3879020575795255 + sys_corr_45: -0.6802176362028622 + sys_corr_46: 0.3622823816882139 + sys_corr_47: 2.045786119397752 + sys_corr_48: -6.30714202956563 + sys_corr_49: 3.9277010265647117 + sys_corr_50: 2.650672143930989 + sys_corr_51: -0.12761104226262263 + sys_corr_52: 1.1010867377088824 + sys_corr_53: 0.28151112995294963 + sys_corr_54: 1.891117966098178 + sys_corr_55: -0.035501202970816555 + sys_corr_56: -0.5211808369078917 + sys_corr_57: 0.20428109999412772 + sys_corr_58: 0.36971159531700026 + sys_corr_59: 0.07286849263027186 + sys_corr_60: 1.3603732721220732 + sys_corr_61: 1.0577665523694124 + sys_corr_62: 1.6015328324409022 + sys_corr_63: 1.1171415949596326 + sys_corr_64: 0.19611522437690232 + sys_corr_65: -0.5903475770509057 + sys_corr_66: -0.02045512529339427 + sys_corr_67: -0.7386333940546443 + sys_corr_68: -0.44435032576931444 + sys_corr_69: 1.064698262854361 + sys_corr_70: -0.06536154113329296 + sys_corr_71: -0.9428870625365613 + sys_corr_72: -0.8540893025726047 + sys_corr_73: 0.48811276461845426 + sys_corr_74: 1.9271889935383495 + sys_corr_75: 2.4342667552094217 + sys_corr_76: -0.43974451506339046 + sys_corr_77: -2.2247957155858846 + sys_corr_78: 1.7753994249099552 + sys_corr_79: 1.5435671671636877 + sys_corr_80: -1.0656882142626276 + sys_corr_81: 1.9048612506906717 + sys_corr_82: -1.4453821398282176 + sys_corr_83: 1.1811397196796998 + sys_corr_84: -4.620795747212968 + sys_corr_85: 0.8866625872552311 + sys_corr_86: 2.0057054846056332 + sys_corr_87: -0.03655368269314857 + sys_corr_88: 0.250401481438071 + sys_corr_89: 1.218194320973811 + sys_corr_90: 0.9919469638337819 + sys_corr_91: 7.385287193841764 + sys_corr_92: -0.465571697793957 + sys_corr_93: -2.3891865918987176 + sys_corr_94: -8.393299572038083 + sys_corr_95: 3.216656312657615 + sys_corr_96: 0.2740855217421338 + sys_corr_97: 9.73995849772639 + sys_corr_98: 5.401967910799336 + sys_corr_99: 5.85843714739003 + sys_corr_100: -9.612042680219114 + sys_corr_101: -16.28049956620841 + sys_corr_102: 3.7030694608194006 + sys_corr_103: -3.570799913153572 + sys_corr_104: -11.737877496352548 + sys_corr_105: -20.64303915359348 + sys_corr_106: -14.67699946523273 + sys_corr_107: -20.54831747644786 + sys_corr_108: 10.066269924059291 + sys_corr_109: 24.879472219549925 + sys_corr_110: 2.3047588495580307 + sys_corr_111: 11.153010126734205 + sys_corr_112: -65.11924680219944 + sys_corr_113: -27.18782581858014 + sys_corr_114: 0.003277888016122516 + sys_corr_115: 1.063660359746349 + sys_corr_116: -0.17166336821936476 + sys_corr_117: -0.2972356675244453 + sys_corr_118: 1.1951685325756858 + sys_corr_119: 0.03807978299746905 + sys_corr_120: 0.23292227277703786 + sys_corr_121: 0.3124598034106695 + sys_corr_122: 0.28800412619771715 + sys_corr_123: 0.11434587013467823 + sys_corr_124: 0.4075807510383733 + sys_corr_125: -0.4618910774821684 + sys_corr_126: -0.4206401512507915 + sys_corr_127: -1.1434899741342022 + sys_corr_128: -1.5486352347303212 + sys_corr_129: -2.7333832501494624 + sys_corr_130: 0.38096575959399315 + sys_corr_131: -0.21653153168765576 + sys_corr_132: -0.26895864591299784 stat: 0.0 luminosity: 42.881916000000004 -- sys_corr_1: -11.096171457596947 - sys_corr_2: 1.568320197401 +- sys_corr_1: -11.09617145759695 + sys_corr_2: 1.5683201974009817 sys_corr_3: -30.896860865022404 - sys_corr_4: -9.594445589947703 - sys_corr_5: -29.63956172710615 - sys_corr_6: -8.664805385288126 - sys_corr_7: 5.668537034667888 - sys_corr_8: 4.54390865382999 - sys_corr_9: 2.865192612785329 - sys_corr_10: 2.1413291330839224 - sys_corr_11: 2.442712419480552 - sys_corr_12: -2.4650147109418565 - sys_corr_13: -4.44313688396649 - sys_corr_14: -1.6979302520469053 - sys_corr_15: 2.327507570549816 - sys_corr_16: -3.435500955802419 - sys_corr_17: 3.2128714356124837 - sys_corr_18: 2.324872993151051 - sys_corr_19: -3.6358182923652653 - sys_corr_20: -21.988080173533103 - sys_corr_21: -7.985216830783983 - sys_corr_22: 5.337171052832441 - sys_corr_23: -8.891404641535699 - sys_corr_24: -5.891695849098366 - sys_corr_25: 0.32043917408852307 - sys_corr_26: -5.77920756746857 - sys_corr_27: 6.362631483216014 - sys_corr_28: -5.106931049646597 - sys_corr_29: -2.8590883062395993 - sys_corr_30: 2.301342946669919 - sys_corr_31: 4.638522658221222 - sys_corr_32: 0.7386377242325559 - sys_corr_33: -0.6088381921728528 - sys_corr_34: -1.6419289863400133 - sys_corr_35: 0.3884451499156238 - sys_corr_36: -0.9151396355381959 - sys_corr_37: -0.7278620561120464 - sys_corr_38: -0.09936338095728289 - sys_corr_39: -0.2622304190371926 - sys_corr_40: 0.3381285627245 - sys_corr_41: 1.5339203558876826 - sys_corr_42: -1.2846422501960462 - sys_corr_43: 0.8054393436253622 - sys_corr_44: -0.5992393554324251 - sys_corr_45: 0.6006459384939367 - sys_corr_46: 0.16177486762233148 - sys_corr_47: -1.5484504675116204 - sys_corr_48: 5.255583942672018 - sys_corr_49: -2.84950505674867 - sys_corr_50: 1.696068980485354 - sys_corr_51: -0.4620704868276719 - sys_corr_52: 0.8990268504130886 - sys_corr_53: -0.029639748772957924 - sys_corr_54: -1.4750413501505248 - sys_corr_55: 0.31186642388220515 - sys_corr_56: 0.5695154372855937 - sys_corr_57: 0.419378104865709 - sys_corr_58: 0.12642626403125296 - sys_corr_59: 0.23168575564836927 - sys_corr_60: -0.8797666689305276 - sys_corr_61: -0.35856901100899913 - sys_corr_62: -0.7086263815936412 - sys_corr_63: 0.6728312198720099 - sys_corr_64: 0.17905316858129017 - sys_corr_65: -0.4717554767883235 - sys_corr_66: 0.22939402141674614 - sys_corr_67: -0.5616525058875349 - sys_corr_68: 0.27541891127030227 - sys_corr_69: 0.8558548461556069 - sys_corr_70: 0.24260367918637102 - sys_corr_71: -0.7076494560231941 - sys_corr_72: 0.5140392540187015 - sys_corr_73: -0.1587187348083291 - sys_corr_74: 1.8324390306768572 - sys_corr_75: 1.9401147514133954 - sys_corr_76: -0.0485010484814015 - sys_corr_77: 1.4558324332647175 - sys_corr_78: 0.8253096105999357 - sys_corr_79: -0.3875653216346432 - sys_corr_80: -1.7024087339058376 - sys_corr_81: -1.6778193996563988 - sys_corr_82: 0.871427480879037 - sys_corr_83: 0.889208520717145 - sys_corr_84: 4.48091414197998 - sys_corr_85: 1.3958892393379294 - sys_corr_86: -1.1507561361378171 - sys_corr_87: -0.1933759826053403 - sys_corr_88: 1.0852949235471019 - sys_corr_89: 2.7718141879569957 - sys_corr_90: 0.5366011748039226 - sys_corr_91: 4.531061397215419 - sys_corr_92: 0.5138069897344361 - sys_corr_93: -1.9593483517097599 - sys_corr_94: -7.001962110038524 - sys_corr_95: 1.9698013008859987 - sys_corr_96: -0.1250641657765811 - sys_corr_97: 7.945078569143948 - sys_corr_98: -4.535834754942075 - sys_corr_99: 4.948356145885591 - sys_corr_100: 15.592379068490208 - sys_corr_101: -8.732164152443863 - sys_corr_102: 13.942805919176699 - sys_corr_103: 2.6714245616841055 - sys_corr_104: 3.0966962800233775 - sys_corr_105: 9.68217883180379 - sys_corr_106: -12.010647850303007 - sys_corr_107: -1.9941976517209465 - sys_corr_108: -16.243740017095973 - sys_corr_109: 3.187833554205772 - sys_corr_110: 9.89223190276987 - sys_corr_111: -6.722534904927825 - sys_corr_112: 39.081541516303844 - sys_corr_113: 60.97150519853554 - sys_corr_114: 0.014467357516590377 - sys_corr_115: -3.7629817780097365 - sys_corr_116: -0.4231272340245058 - sys_corr_117: 0.2347344500440797 - sys_corr_118: -2.8567326748863233 - sys_corr_119: -0.045055689337059834 - sys_corr_120: -0.2685868139465609 - sys_corr_121: -0.20287813040740746 - sys_corr_122: 0.15062245863302265 - sys_corr_123: 0.26818133223222135 - sys_corr_124: -1.0338080640312262 - sys_corr_125: -0.28039719839190286 - sys_corr_126: 0.29056812008222066 - sys_corr_127: -0.8715247838695697 - sys_corr_128: 0.011884163897760487 - sys_corr_129: -12.182290150925446 - sys_corr_130: 0.21589990859579206 - sys_corr_131: 0.34426794070978367 - sys_corr_132: 0.28833439813586426 + sys_corr_4: -9.594445589947785 + sys_corr_5: -29.639561727106187 + sys_corr_6: -8.664805385288151 + sys_corr_7: 5.668537034667823 + sys_corr_8: 4.543908653830224 + sys_corr_9: 2.8651926127854312 + sys_corr_10: 2.1413291330837914 + sys_corr_11: 2.4427124194803107 + sys_corr_12: -2.4650147109419565 + sys_corr_13: 4.443136883966552 + sys_corr_14: 1.697930252046776 + sys_corr_15: -2.3275075705497352 + sys_corr_16: 3.435500955802697 + sys_corr_17: 3.212871435612457 + sys_corr_18: -2.3248729931509335 + sys_corr_19: -3.6358182923648528 + sys_corr_20: -21.9880801735332 + sys_corr_21: -7.985216830783756 + sys_corr_22: 5.337171052832301 + sys_corr_23: -8.891404641535528 + sys_corr_24: -5.891695849098415 + sys_corr_25: 0.32043917408834943 + sys_corr_26: -5.779207567468828 + sys_corr_27: 6.362631483216199 + sys_corr_28: -5.106931049646701 + sys_corr_29: -2.859088306239658 + sys_corr_30: 2.3013429466699233 + sys_corr_31: 4.638522658221289 + sys_corr_32: -0.7386377242325801 + sys_corr_33: 0.6088381921724154 + sys_corr_34: -1.6419289863402733 + sys_corr_35: 0.38844514991539786 + sys_corr_36: -0.9151396355381608 + sys_corr_37: 0.7278620561118342 + sys_corr_38: 0.09936338095720972 + sys_corr_39: 0.26223041903768907 + sys_corr_40: -0.3381285627247317 + sys_corr_41: 1.5339203558878458 + sys_corr_42: 1.2846422501963302 + sys_corr_43: 0.8054393436258726 + sys_corr_44: -0.5992393554327268 + sys_corr_45: -0.6006459384938676 + sys_corr_46: -0.16177486762220927 + sys_corr_47: 1.5484504675117927 + sys_corr_48: -5.255583942672041 + sys_corr_49: 2.8495050567484714 + sys_corr_50: 1.6960689804856792 + sys_corr_51: -0.46207048682819296 + sys_corr_52: 0.8990268504126151 + sys_corr_53: 0.029639748773325654 + sys_corr_54: 1.4750413501504396 + sys_corr_55: -0.3118664238827381 + sys_corr_56: -0.5695154372859416 + sys_corr_57: 0.41937810486585614 + sys_corr_58: -0.12642626403123966 + sys_corr_59: 0.23168575564867053 + sys_corr_60: 0.8797666689305652 + sys_corr_61: 0.3585690110088802 + sys_corr_62: 0.7086263815936522 + sys_corr_63: 0.6728312198724627 + sys_corr_64: 0.17905316858117515 + sys_corr_65: -0.47175547678824825 + sys_corr_66: -0.22939402141701912 + sys_corr_67: -0.5616525058877818 + sys_corr_68: -0.2754189112700706 + sys_corr_69: 0.8558548461557612 + sys_corr_70: -0.24260367918677003 + sys_corr_71: -0.7076494560232294 + sys_corr_72: -0.5140392540185118 + sys_corr_73: 0.15871873480900633 + sys_corr_74: 1.8324390306766118 + sys_corr_75: 1.9401147514130497 + sys_corr_76: -0.04850104848023653 + sys_corr_77: -1.455832433263891 + sys_corr_78: 1.7024087339061231 + sys_corr_79: 0.8253096105998011 + sys_corr_80: -0.38756532163480906 + sys_corr_81: 1.6778193996563535 + sys_corr_82: -0.8714274808790765 + sys_corr_83: 0.8892085207174085 + sys_corr_84: -4.480914141980338 + sys_corr_85: 1.3958892393373163 + sys_corr_86: 1.150756136140202 + sys_corr_87: 0.19337598260546066 + sys_corr_88: 1.0852949235462468 + sys_corr_89: 0.5366011748038599 + sys_corr_90: 2.7718141879568554 + sys_corr_91: 4.5310613972153835 + sys_corr_92: -0.5138069897348203 + sys_corr_93: -1.959348351709308 + sys_corr_94: -7.001962110038543 + sys_corr_95: 1.9698013008852537 + sys_corr_96: 0.1250641657770726 + sys_corr_97: 7.945078569144306 + sys_corr_98: 4.535834754942293 + sys_corr_99: 4.948356145885606 + sys_corr_100: -8.73216415244487 + sys_corr_101: -13.942805919179825 + sys_corr_102: 2.671424561670672 + sys_corr_103: -3.096696280023405 + sys_corr_104: -9.682178831802563 + sys_corr_105: -15.592379068493416 + sys_corr_106: -12.010647850303224 + sys_corr_107: -16.24374001709539 + sys_corr_108: 3.1878335542060996 + sys_corr_109: -9.892231902769833 + sys_corr_110: 1.9941976517211222 + sys_corr_111: 6.722534904927843 + sys_corr_112: 39.081541516303716 + sys_corr_113: -60.97150519853547 + sys_corr_114: 0.014467357516583757 + sys_corr_115: -3.762981778009713 + sys_corr_116: 0.4231272340241342 + sys_corr_117: -0.23473445004422003 + sys_corr_118: 2.856732674886344 + sys_corr_119: 0.04505568933703484 + sys_corr_120: 0.2685868139466198 + sys_corr_121: 0.2028781304074532 + sys_corr_122: 0.2681813322322854 + sys_corr_123: 0.1506224586329633 + sys_corr_124: -1.0338080640316651 + sys_corr_125: -0.28039719839202326 + sys_corr_126: -0.29056812008226784 + sys_corr_127: -0.8715247838693206 + sys_corr_128: 0.011884163896888171 + sys_corr_129: -12.182290150926084 + sys_corr_130: 0.21589990859584646 + sys_corr_131: -0.34426794070975814 + sys_corr_132: 0.28833439813587014 stat: 0.0 luminosity: 34.790668000000004 -- sys_corr_1: -11.389145800402062 - sys_corr_2: 1.2904557532366816 - sys_corr_3: -29.040023726392494 - sys_corr_4: -4.939397044639432 - sys_corr_5: -22.71374106650995 - sys_corr_6: -7.179197407762593 - sys_corr_7: 4.180655827552588 - sys_corr_8: 2.966689979575418 - sys_corr_9: 2.730550380556804 - sys_corr_10: 1.5411287852835938 - sys_corr_11: 2.004034024775784 - sys_corr_12: -0.08264892685739486 - sys_corr_13: -1.9061525209730923 - sys_corr_14: -0.9177432303518644 - sys_corr_15: 0.6199971982678728 - sys_corr_16: -2.520972075830513 - sys_corr_17: 0.6852549438195014 - sys_corr_18: 1.9590368114512626 - sys_corr_19: -2.4039786636482523 - sys_corr_20: -1.2067315560027927 - sys_corr_21: 3.001995221804604 - sys_corr_22: 0.7111055891690254 - sys_corr_23: 22.45619817798997 - sys_corr_24: -2.022881635434444 - sys_corr_25: -11.646321115731753 - sys_corr_26: -5.5017101480972785 - sys_corr_27: 5.617353763294839 - sys_corr_28: -7.120382435696329 - sys_corr_29: -3.14866090689126 - sys_corr_30: -1.2757708783517625 - sys_corr_31: 3.625231690857343 - sys_corr_32: 1.2565874891813738 - sys_corr_33: -0.37263519431460296 - sys_corr_34: -2.429008250705629 - sys_corr_35: -0.8036364467724962 - sys_corr_36: -0.3418680244432091 - sys_corr_37: -1.2372792998550481 - sys_corr_38: -0.09820619032930561 - sys_corr_39: -0.6172009788598793 - sys_corr_40: 0.7948281046291907 - sys_corr_41: 1.370436565924825 - sys_corr_42: -1.6977824428860704 - sys_corr_43: 0.8964243218328428 - sys_corr_44: -0.029989152911671018 - sys_corr_45: 1.1671511339666754 - sys_corr_46: -0.2663116969707854 - sys_corr_47: -3.2107148791520568 - sys_corr_48: 7.987611608366265 - sys_corr_49: -4.687238335270803 - sys_corr_50: 2.4627313074187533 - sys_corr_51: -1.394727361605228 - sys_corr_52: 2.4353830064745314 - sys_corr_53: 0.14720242425848795 - sys_corr_54: -2.099921950878976 - sys_corr_55: -0.6779106721057023 - sys_corr_56: 0.6530490596751142 - sys_corr_57: 0.27729045677960723 - sys_corr_58: -0.5801952108850704 - sys_corr_59: 0.2836907941934858 - sys_corr_60: -1.6442202886083046 - sys_corr_61: -1.3219738195140576 - sys_corr_62: -1.6426071538982632 - sys_corr_63: 0.9195954844287308 - sys_corr_64: 0.25802960710491674 - sys_corr_65: -1.018975733276907 - sys_corr_66: -0.08990717638705986 - sys_corr_67: -1.07665683404884 - sys_corr_68: -0.36185536999260576 - sys_corr_69: 1.368603108130377 - sys_corr_70: -0.0733992805185123 - sys_corr_71: -1.1868572880206134 - sys_corr_72: 0.6774969567566118 - sys_corr_73: 0.14414619579952273 - sys_corr_74: 2.66398221202068 - sys_corr_75: 2.3572742415476586 - sys_corr_76: 0.39564216688090503 - sys_corr_77: 2.1831387700445313 - sys_corr_78: 1.061059564474966 - sys_corr_79: -1.1456930171257471 - sys_corr_80: -1.2563857103428195 - sys_corr_81: -2.224436262641039 - sys_corr_82: 1.0579195350925328 - sys_corr_83: -0.0432890573184125 - sys_corr_84: 5.018500269311753 - sys_corr_85: 1.7989674197687826 - sys_corr_86: -1.6096341682439392 - sys_corr_87: -0.853136057750902 - sys_corr_88: 0.6652361941047947 - sys_corr_89: 2.3232007138296655 - sys_corr_90: 0.19305632833765674 - sys_corr_91: 7.073971680699595 - sys_corr_92: 0.5993951551938655 - sys_corr_93: -2.181505335327226 - sys_corr_94: -7.250583075778689 - sys_corr_95: 3.7651921896349747 - sys_corr_96: -0.5184220395525744 - sys_corr_97: 7.099457424591688 - sys_corr_98: -4.382428751257875 - sys_corr_99: 4.872988328608659 - sys_corr_100: 19.72239247366155 - sys_corr_101: -9.737222748975821 - sys_corr_102: 15.368881358790679 - sys_corr_103: 4.27016716500382 - sys_corr_104: 3.4324367078930957 - sys_corr_105: 11.303676233044854 - sys_corr_106: -14.974955905527596 - sys_corr_107: -2.0172969764361053 - sys_corr_108: -23.4435420505337 - sys_corr_109: 16.156085425043205 - sys_corr_110: -0.9166819400725299 - sys_corr_111: -9.034037072222567 - sys_corr_112: 5.851348830768421 - sys_corr_113: -29.99647921155058 - sys_corr_114: 0.007410567531485177 - sys_corr_115: -21.632100134978632 - sys_corr_116: -2.0363100709533564 - sys_corr_117: 0.5426745802593251 - sys_corr_118: -1.7260515107573657 - sys_corr_119: -0.28160831443837503 - sys_corr_120: -0.7059799255797787 - sys_corr_121: 0.4040151343490393 - sys_corr_122: 0.6362626855986131 - sys_corr_123: 1.4047236660559708 - sys_corr_124: -8.348844357475613 - sys_corr_125: -1.1241534926753547 - sys_corr_126: -0.33276078651494717 - sys_corr_127: -1.0632849889739904 - sys_corr_128: -0.6400549066794845 - sys_corr_129: -50.65168539985837 - sys_corr_130: 0.11557922222182293 - sys_corr_131: 0.747657674798824 - sys_corr_132: -0.7833091133146256 +- sys_corr_1: -11.38914580040206 + sys_corr_2: 1.2904557532366803 + sys_corr_3: -29.040023726392505 + sys_corr_4: -4.939397044639474 + sys_corr_5: -22.713741066509993 + sys_corr_6: -7.1791974077626115 + sys_corr_7: 4.180655827552572 + sys_corr_8: 2.966689979575583 + sys_corr_9: 2.730550380556848 + sys_corr_10: 1.5411287852834292 + sys_corr_11: 2.004034024775765 + sys_corr_12: -0.08264892685749207 + sys_corr_13: 1.9061525209731205 + sys_corr_14: 0.9177432303517926 + sys_corr_15: -0.6199971982678535 + sys_corr_16: 2.5209720758306884 + sys_corr_17: 0.6852549438195047 + sys_corr_18: -1.9590368114511962 + sys_corr_19: -2.403978663648271 + sys_corr_20: -1.2067315560026994 + sys_corr_21: 3.0019952218046826 + sys_corr_22: 0.7111055891690546 + sys_corr_23: 22.456198177989855 + sys_corr_24: -2.022881635434237 + sys_corr_25: -11.64632111573191 + sys_corr_26: -5.501710148097267 + sys_corr_27: 5.6173537632947355 + sys_corr_28: -7.12038243569634 + sys_corr_29: -3.148660906891487 + sys_corr_30: -1.2757708783517225 + sys_corr_31: 3.6252316908573183 + sys_corr_32: -1.2565874891815219 + sys_corr_33: 0.3726351943142328 + sys_corr_34: -2.429008250705809 + sys_corr_35: -0.8036364467728986 + sys_corr_36: -0.341868024443266 + sys_corr_37: 1.2372792998549387 + sys_corr_38: 0.09820619032929642 + sys_corr_39: 0.6172009788600071 + sys_corr_40: -0.7948281046293936 + sys_corr_41: 1.3704365659248976 + sys_corr_42: 1.6977824428864028 + sys_corr_43: 0.8964243218338296 + sys_corr_44: -0.0299891529122626 + sys_corr_45: -1.167151133966096 + sys_corr_46: 0.2663116969712415 + sys_corr_47: 3.2107148791523286 + sys_corr_48: -7.98761160836654 + sys_corr_49: 4.687238335270067 + sys_corr_50: 2.462731307419338 + sys_corr_51: -1.3947273616055818 + sys_corr_52: 2.435383006474118 + sys_corr_53: -0.14720242425913077 + sys_corr_54: 2.099921950878075 + sys_corr_55: 0.6779106721045632 + sys_corr_56: -0.6530490596748841 + sys_corr_57: 0.277290456779917 + sys_corr_58: 0.5801952108850871 + sys_corr_59: 0.28369079419286086 + sys_corr_60: 1.6442202886084696 + sys_corr_61: 1.3219738195143056 + sys_corr_62: 1.6426071538977234 + sys_corr_63: 0.919595484429203 + sys_corr_64: 0.258029607104437 + sys_corr_65: -1.01897573327663 + sys_corr_66: 0.08990717638713333 + sys_corr_67: -1.0766568340493143 + sys_corr_68: 0.3618553699936009 + sys_corr_69: 1.3686031081303265 + sys_corr_70: 0.07339928051830515 + sys_corr_71: -1.186857288020748 + sys_corr_72: -0.6774969567565327 + sys_corr_73: -0.14414619579900095 + sys_corr_74: 2.663982212019945 + sys_corr_75: 2.357274241547162 + sys_corr_76: 0.39564216688245274 + sys_corr_77: -2.183138770044382 + sys_corr_78: 1.2563857103430285 + sys_corr_79: 1.0610595644750231 + sys_corr_80: -1.1456930171258253 + sys_corr_81: 2.2244362626410945 + sys_corr_82: -1.05791953509248 + sys_corr_83: -0.043289057318121896 + sys_corr_84: -5.018500269312065 + sys_corr_85: 1.798967419768023 + sys_corr_86: 1.6096341682460036 + sys_corr_87: 0.8531360577508823 + sys_corr_88: 0.6652361941031892 + sys_corr_89: 0.19305632833774095 + sys_corr_90: 2.3232007138295723 + sys_corr_91: 7.073971680699557 + sys_corr_92: -0.5993951551942025 + sys_corr_93: -2.181505335326742 + sys_corr_94: -7.250583075778971 + sys_corr_95: 3.7651921896337894 + sys_corr_96: 0.5184220395528435 + sys_corr_97: 7.099457424592287 + sys_corr_98: 4.382428751258188 + sys_corr_99: 4.87298832860889 + sys_corr_100: -9.73722274897743 + sys_corr_101: -15.368881358794171 + sys_corr_102: 4.270167164989248 + sys_corr_103: -3.432436707893696 + sys_corr_104: -11.30367623304471 + sys_corr_105: -19.72239247366531 + sys_corr_106: -14.974955905527516 + sys_corr_107: -23.44354205053369 + sys_corr_108: 16.156085425043628 + sys_corr_109: 0.916681940072912 + sys_corr_110: 2.017296976436565 + sys_corr_111: 9.034037072222468 + sys_corr_112: 5.851348830768945 + sys_corr_113: 29.99647921154974 + sys_corr_114: 0.007410567531482101 + sys_corr_115: -21.63210013497882 + sys_corr_116: 2.0363100709511763 + sys_corr_117: -0.5426745802594557 + sys_corr_118: 1.7260515107575167 + sys_corr_119: 0.281608314438427 + sys_corr_120: 0.705979925580051 + sys_corr_121: -0.4040151343490057 + sys_corr_122: 1.4047236660558629 + sys_corr_123: 0.6362626855984873 + sys_corr_124: -8.348844357478923 + sys_corr_125: -1.1241534926754804 + sys_corr_126: 0.33276078651491253 + sys_corr_127: -1.0632849889741645 + sys_corr_128: -0.6400549066805719 + sys_corr_129: -50.651685399857726 + sys_corr_130: 0.11557922222175067 + sys_corr_131: -0.7476576747989132 + sys_corr_132: -0.7833091133145965 stat: 0.0 luminosity: 27.583644 -- sys_corr_1: -16.653463423409775 - sys_corr_2: -2.5127497969106307 - sys_corr_3: -32.33482155447354 - sys_corr_4: -10.078545660483545 - sys_corr_5: -28.033779058140716 - sys_corr_6: -7.308252727367478 - sys_corr_7: 4.7613492995207976 - sys_corr_8: 2.8929172549457296 - sys_corr_9: 1.7207792508544744 - sys_corr_10: 0.705188375089717 - sys_corr_11: 1.2906742456770646 - sys_corr_12: -0.9562775953450201 - sys_corr_13: -2.5008685772787165 - sys_corr_14: -0.84502029489265 - sys_corr_15: 0.9998241113635684 - sys_corr_16: -2.112678269212841 - sys_corr_17: -0.22219172863704512 - sys_corr_18: 1.5791684043509533 - sys_corr_19: 0.06282659866976843 - sys_corr_20: 1.8811470936346129 - sys_corr_21: 3.1519347518103737 - sys_corr_22: 3.872799980358371 - sys_corr_23: -1.2526461968699252 - sys_corr_24: -7.35342550255694 - sys_corr_25: 16.292686054751467 - sys_corr_26: -5.9286457352232755 - sys_corr_27: 23.56735753458798 - sys_corr_28: -7.934259391438285 - sys_corr_29: -2.938785102149722 - sys_corr_30: -4.326337502053669 - sys_corr_31: 0.36544044454290814 - sys_corr_32: 1.0235481065182734 - sys_corr_33: -0.1836630934784333 - sys_corr_34: -1.7176121415821868 - sys_corr_35: 0.3992568290283813 - sys_corr_36: 0.3456535663413124 - sys_corr_37: -1.1056476491624234 - sys_corr_38: 0.04186112523726098 - sys_corr_39: -0.28964539516360394 - sys_corr_40: 0.4155117449079191 - sys_corr_41: 1.6901299211362404 - sys_corr_42: -1.2476122999536157 - sys_corr_43: 0.5467256945311065 - sys_corr_44: 1.268111834293318 - sys_corr_45: 0.5662241800316286 - sys_corr_46: -0.2594462764061981 - sys_corr_47: -2.5044901949136573 - sys_corr_48: 5.000396575045707 - sys_corr_49: -4.34661705945223 - sys_corr_50: -1.4023829689952194 - sys_corr_51: 0.7708579214874668 - sys_corr_52: 0.4148696966806392 - sys_corr_53: 0.32590613558321635 - sys_corr_54: -2.2949211544271084 - sys_corr_55: -0.4420163174656122 - sys_corr_56: 0.2863479614600304 - sys_corr_57: -0.4264919979496653 - sys_corr_58: 0.002449257551826508 - sys_corr_59: -0.2286475250772078 - sys_corr_60: -1.7523506972784955 - sys_corr_61: -0.6219396190168088 - sys_corr_62: -1.2764688218118156 - sys_corr_63: 0.9446548206810541 - sys_corr_64: -0.850131698123826 - sys_corr_65: -1.0097201776686189 - sys_corr_66: -0.4948470069100241 - sys_corr_67: 0.3070591254332469 - sys_corr_68: -0.6556963082914973 - sys_corr_69: 0.834512550387444 - sys_corr_70: -1.1583086159349039 - sys_corr_71: -0.15933449415290185 - sys_corr_72: 1.3366498652324452 - sys_corr_73: 0.15525597869331775 - sys_corr_74: 2.3918433790473106 - sys_corr_75: 1.6038071157022538 - sys_corr_76: 2.213269847304731 - sys_corr_77: 2.3756444568509725 - sys_corr_78: 1.1534676632680119 - sys_corr_79: -0.15780234907602372 - sys_corr_80: -1.022231869983264 - sys_corr_81: -1.817092557693302 - sys_corr_82: 1.1834891113014192 - sys_corr_83: 0.03228416380956033 - sys_corr_84: 5.255936631714519 - sys_corr_85: 1.1231545987257876 - sys_corr_86: -1.7545171408254756 - sys_corr_87: -0.67908170852411 - sys_corr_88: -0.2853431938154477 - sys_corr_89: 3.394936877774145 - sys_corr_90: -0.8155365230561767 - sys_corr_91: 6.887599970695285 - sys_corr_92: -0.06992753477512975 - sys_corr_93: -1.9760657245943396 - sys_corr_94: -5.845510688546422 - sys_corr_95: 4.131905526816623 - sys_corr_96: -0.5537280346858705 - sys_corr_97: 5.494663892837777 - sys_corr_98: -3.75924162091715 - sys_corr_99: 4.560520617771875 - sys_corr_100: 20.925829654945005 - sys_corr_101: -10.324664230495783 - sys_corr_102: 14.52857410498543 - sys_corr_103: 6.21790932044785 - sys_corr_104: 4.195062449932177 - sys_corr_105: 11.170637063624852 - sys_corr_106: -15.965339277717096 - sys_corr_107: -1.767474760533419 - sys_corr_108: -27.565268910134346 - sys_corr_109: 17.023520913368213 - sys_corr_110: -9.632245810535931 - sys_corr_111: -13.203919233158702 - sys_corr_112: 12.864020886196542 - sys_corr_113: -11.33898168439088 - sys_corr_114: -0.0025461468336131898 - sys_corr_115: -34.61094862961885 - sys_corr_116: -2.687943824237808 - sys_corr_117: 0.20383615059967983 - sys_corr_118: 3.7092053624152346 - sys_corr_119: -0.22345154482883814 - sys_corr_120: -0.4473335141887023 - sys_corr_121: 0.5392840666897352 - sys_corr_122: 0.4541023158690025 - sys_corr_123: 1.176518057588908 - sys_corr_124: 1.451322500257657 - sys_corr_125: -0.633334116882825 - sys_corr_126: -0.3606398154111221 - sys_corr_127: -1.0399307141388072 - sys_corr_128: -1.703966192295047 - sys_corr_129: 44.60010891984799 - sys_corr_130: -0.002809347721810389 - sys_corr_131: 0.4224207312541713 - sys_corr_132: -1.5785059441863294 +- sys_corr_1: -16.653463423409807 + sys_corr_2: -2.5127497969106427 + sys_corr_3: -32.33482155447352 + sys_corr_4: -10.078545660483604 + sys_corr_5: -28.033779058140762 + sys_corr_6: -7.308252727367468 + sys_corr_7: 4.7613492995207665 + sys_corr_8: 2.892917254945884 + sys_corr_9: 1.7207792508545086 + sys_corr_10: 0.7051883750896595 + sys_corr_11: 1.290674245676975 + sys_corr_12: -0.9562775953451003 + sys_corr_13: 2.5008685772787236 + sys_corr_14: 0.8450202948925961 + sys_corr_15: -0.9998241113635798 + sys_corr_16: 2.1126782692129464 + sys_corr_17: -0.22219172863706274 + sys_corr_18: -1.579168404350939 + sys_corr_19: 0.06282659866965491 + sys_corr_20: 1.8811470936347152 + sys_corr_21: 3.1519347518102694 + sys_corr_22: 3.8727999803584243 + sys_corr_23: -1.2526461968699825 + sys_corr_24: -7.3534255025570765 + sys_corr_25: 16.29268605475094 + sys_corr_26: -5.92864573522516 + sys_corr_27: 23.567357534588403 + sys_corr_28: -7.934259391438386 + sys_corr_29: -2.9387851021497426 + sys_corr_30: -4.32633750205352 + sys_corr_31: 0.36544044454279834 + sys_corr_32: -1.0235481065183905 + sys_corr_33: 0.18366309347833862 + sys_corr_34: -1.717612141582377 + sys_corr_35: 0.3992568290277661 + sys_corr_36: 0.34565356634123756 + sys_corr_37: 1.1056476491622096 + sys_corr_38: -0.041861125237250475 + sys_corr_39: 0.28964539516380805 + sys_corr_40: -0.41551174490811055 + sys_corr_41: 1.690129921136358 + sys_corr_42: 1.2476122999537629 + sys_corr_43: 0.5467256945318305 + sys_corr_44: 1.2681118342927649 + sys_corr_45: -0.5662241800310829 + sys_corr_46: 0.25944627640643936 + sys_corr_47: 2.5044901949140868 + sys_corr_48: -5.000396575046044 + sys_corr_49: 4.346617059451811 + sys_corr_50: -1.402382968994779 + sys_corr_51: 0.7708579214868316 + sys_corr_52: 0.414869696680517 + sys_corr_53: -0.32590613558337583 + sys_corr_54: 2.2949211544269352 + sys_corr_55: 0.4420163174646368 + sys_corr_56: -0.2863479614602831 + sys_corr_57: -0.42649199794999787 + sys_corr_58: -0.0024492575523305735 + sys_corr_59: -0.22864752507725322 + sys_corr_60: 1.7523506972786649 + sys_corr_61: 0.6219396190167569 + sys_corr_62: 1.2764688218121885 + sys_corr_63: 0.9446548206819032 + sys_corr_64: -0.8501316981238534 + sys_corr_65: -1.0097201776697566 + sys_corr_66: 0.49484700691018985 + sys_corr_67: 0.3070591254326485 + sys_corr_68: 0.65569630829174 + sys_corr_69: 0.8345125503873084 + sys_corr_70: 1.1583086159344371 + sys_corr_71: -0.15933449415237796 + sys_corr_72: -1.3366498652323948 + sys_corr_73: -0.15525597869265764 + sys_corr_74: 2.3918433790468865 + sys_corr_75: 1.6038071156999962 + sys_corr_76: 2.2132698473057077 + sys_corr_77: -2.3756444568507473 + sys_corr_78: 1.0222318699834034 + sys_corr_79: 1.1534676632682457 + sys_corr_80: -0.15780234907613813 + sys_corr_81: 1.817092557693429 + sys_corr_82: -1.1834891113012962 + sys_corr_83: 0.03228416380986555 + sys_corr_84: -5.255936631714825 + sys_corr_85: 1.123154598724996 + sys_corr_86: 1.7545171408252593 + sys_corr_87: 0.6790817085241166 + sys_corr_88: -0.28534319381771533 + sys_corr_89: -0.815536523055988 + sys_corr_90: 3.3949368777741085 + sys_corr_91: 6.887599970695139 + sys_corr_92: 0.06992753477448961 + sys_corr_93: -1.976065724594048 + sys_corr_94: -5.845510688546921 + sys_corr_95: 4.131905526815468 + sys_corr_96: 0.5537280346860999 + sys_corr_97: 5.4946638928384415 + sys_corr_98: 3.759241620917535 + sys_corr_99: 4.5605206177722515 + sys_corr_100: -10.324664230497511 + sys_corr_101: -14.528574104989346 + sys_corr_102: 6.217909320434712 + sys_corr_103: -4.195062449933072 + sys_corr_104: -11.170637063625758 + sys_corr_105: -20.925829654948867 + sys_corr_106: -15.965339277716758 + sys_corr_107: -27.565268910133906 + sys_corr_108: 17.023520913368184 + sys_corr_109: 9.632245810536384 + sys_corr_110: 1.7674747605338115 + sys_corr_111: 13.20391923315844 + sys_corr_112: 12.86402088619598 + sys_corr_113: 11.338981684390845 + sys_corr_114: -0.0025461468336024466 + sys_corr_115: -34.61094862961958 + sys_corr_116: 2.6879438242338933 + sys_corr_117: -0.20383615059977764 + sys_corr_118: -3.709205362415015 + sys_corr_119: 0.22345154482889126 + sys_corr_120: 0.44733351418875006 + sys_corr_121: -0.539284066689698 + sys_corr_122: 1.1765180575886829 + sys_corr_123: 0.4541023158688569 + sys_corr_124: 1.451322500260255 + sys_corr_125: -0.6333341168829364 + sys_corr_126: 0.3606398154111006 + sys_corr_127: -1.0399307141387486 + sys_corr_128: -1.7039661922962137 + sys_corr_129: 44.60010891984849 + sys_corr_130: -0.00280934772196326 + sys_corr_131: -0.42242073125443236 + sys_corr_132: -1.578505944186428 stat: 0.0 luminosity: 25.489376 -- sys_corr_1: -12.128379328567808 - sys_corr_2: -2.456426183863075 - sys_corr_3: -21.815187935272952 - sys_corr_4: -4.839816939510489 - sys_corr_5: -21.18345428696609 - sys_corr_6: -6.019812412095527 - sys_corr_7: 4.10485043933719 - sys_corr_8: 1.7138693292964857 - sys_corr_9: 1.2220029319849381 - sys_corr_10: 0.42074950468037775 - sys_corr_11: 0.45447016734446766 - sys_corr_12: -0.8391681689094331 - sys_corr_13: -2.523732737925795 - sys_corr_14: -0.3533944439961613 - sys_corr_15: 0.1714025761015157 - sys_corr_16: -1.83638017262295 - sys_corr_17: -0.19516676754579035 - sys_corr_18: 0.8822819727033614 - sys_corr_19: 1.0995816537968546 - sys_corr_20: 2.9700455109373056 - sys_corr_21: 3.022606290873423 - sys_corr_22: 2.9268565275545333 - sys_corr_23: -5.504261351459015 - sys_corr_24: -4.564441948632323 - sys_corr_25: -16.578282210499534 - sys_corr_26: 8.24397910248719 - sys_corr_27: 11.403791626159176 - sys_corr_28: 2.9347756917351298 - sys_corr_29: 1.6285717694480502 - sys_corr_30: -2.1609982457047745 - sys_corr_31: 3.3054316635977714 - sys_corr_32: 1.555792805598473 - sys_corr_33: -0.5383042342858441 - sys_corr_34: -1.4441843228462619 - sys_corr_35: -0.2826409445136728 - sys_corr_36: -0.16045577384702522 - sys_corr_37: -1.1961357883701942 - sys_corr_38: -0.012691206948249793 - sys_corr_39: -0.276262013394526 - sys_corr_40: 0.5176096924704048 - sys_corr_41: 1.8064411062218098 - sys_corr_42: -0.8455133277760049 - sys_corr_43: -0.07125481675155293 - sys_corr_44: 1.1664791905026382 - sys_corr_45: 0.7373927098945174 - sys_corr_46: -0.12342722393407453 - sys_corr_47: -0.7197205916787013 - sys_corr_48: 1.7967551641628514 - sys_corr_49: -2.60992012287755 - sys_corr_50: -2.1104075587396403 - sys_corr_51: 2.1786077553222127 - sys_corr_52: -0.42209833958641574 - sys_corr_53: 0.4944102758446541 - sys_corr_54: -2.3929233897315725 - sys_corr_55: 1.1137119555268462 - sys_corr_56: 1.092150771032107 - sys_corr_57: -0.4027231626359962 - sys_corr_58: -0.3799500364822371 - sys_corr_59: -0.43033441613683454 - sys_corr_60: -1.2694837717191092 - sys_corr_61: -1.395325269235299 - sys_corr_62: -1.2120820370755514 - sys_corr_63: 0.7433260344115501 - sys_corr_64: 0.33638388575158984 - sys_corr_65: -0.3313961186132875 - sys_corr_66: -0.4006272191996071 - sys_corr_67: -0.07392199621345634 - sys_corr_68: -0.6667236815246718 - sys_corr_69: 0.670296483257775 - sys_corr_70: -0.7955847825945439 - sys_corr_71: -0.2715395557544769 - sys_corr_72: 1.5043234500842413 - sys_corr_73: 0.8146439194807499 - sys_corr_74: 1.493073820189491 - sys_corr_75: 1.406653628437392 - sys_corr_76: 2.0581308388455377 - sys_corr_77: 2.0440044450627357 - sys_corr_78: 1.2919004917159655 - sys_corr_79: -0.5755170640820986 - sys_corr_80: -1.6475206853437692 - sys_corr_81: -0.858559102248757 - sys_corr_82: 0.7196008700020069 - sys_corr_83: 0.5835722454786915 - sys_corr_84: 5.693741063678809 - sys_corr_85: 2.1245423927891327 - sys_corr_86: -0.2461920344620076 - sys_corr_87: -0.22417814076689124 - sys_corr_88: 0.3254173255506476 - sys_corr_89: 2.5132589488429002 - sys_corr_90: -0.4083590789675276 - sys_corr_91: 6.963412702017493 - sys_corr_92: -0.32797485626781936 - sys_corr_93: -1.536391965822159 - sys_corr_94: -3.699008008350426 - sys_corr_95: 3.82254582633831 - sys_corr_96: -0.3382773741164734 - sys_corr_97: 3.5105604516154125 - sys_corr_98: -2.4973937821490653 - sys_corr_99: 2.6548574671092546 - sys_corr_100: 15.230858640875343 - sys_corr_101: -6.8978047067649 - sys_corr_102: 9.538905062680472 - sys_corr_103: 3.564566192724925 - sys_corr_104: 3.056886486663798 - sys_corr_105: 7.055045849174082 - sys_corr_106: -11.654183406171187 - sys_corr_107: -1.7791393446992945 - sys_corr_108: -22.33840927421055 - sys_corr_109: 16.3717571650865 - sys_corr_110: -1.2914561904456259 - sys_corr_111: -9.970102266243051 - sys_corr_112: 10.163209127217602 - sys_corr_113: -8.069135902968089 - sys_corr_114: -0.09339898539375809 - sys_corr_115: 30.714706657160857 - sys_corr_116: 4.998607634806678 - sys_corr_117: 1.313805507935641 - sys_corr_118: 37.55470838234342 - sys_corr_119: 0.4569129352664164 - sys_corr_120: -1.6119874917936625 - sys_corr_121: -0.16719649543425974 - sys_corr_122: 1.148774557158981 - sys_corr_123: 1.79912458360499 - sys_corr_124: -0.49545275351117557 - sys_corr_125: -1.7669776601460134 - sys_corr_126: -0.5201467630247582 - sys_corr_127: -0.4182694503720949 - sys_corr_128: -2.112049585516858 - sys_corr_129: 1.0045060050637915 - sys_corr_130: 0.048178202674036566 - sys_corr_131: 1.3960856223224585 - sys_corr_132: -3.8074361189925283 +- sys_corr_1: -12.128379328567812 + sys_corr_2: -2.4564261838630848 + sys_corr_3: -21.815187935272956 + sys_corr_4: -4.839816939510548 + sys_corr_5: -21.183454286966143 + sys_corr_6: -6.019812412095531 + sys_corr_7: 4.104850439337188 + sys_corr_8: 1.713869329296597 + sys_corr_9: 1.2220029319849623 + sys_corr_10: 0.4207495046803513 + sys_corr_11: 0.45447016734436624 + sys_corr_12: -0.8391681689094861 + sys_corr_13: 2.5237327379257892 + sys_corr_14: 0.3533944439961206 + sys_corr_15: -0.17140257610153295 + sys_corr_16: 1.8363801726230302 + sys_corr_17: -0.1951667675457772 + sys_corr_18: -0.8822819727033361 + sys_corr_19: 1.0995816537967795 + sys_corr_20: 2.9700455109373287 + sys_corr_21: 3.02260629087336 + sys_corr_22: 2.926856527554569 + sys_corr_23: -5.504261351459032 + sys_corr_24: -4.564441948632098 + sys_corr_25: -16.578282210499818 + sys_corr_26: 8.243979102486902 + sys_corr_27: 11.403791626158638 + sys_corr_28: 2.9347756917352514 + sys_corr_29: 1.6285717694481332 + sys_corr_30: -2.1609982457046373 + sys_corr_31: 3.305431663597628 + sys_corr_32: -1.5557928055987664 + sys_corr_33: 0.5383042342858855 + sys_corr_34: -1.4441843228462634 + sys_corr_35: -0.2826409445136809 + sys_corr_36: -0.16045577384697743 + sys_corr_37: 1.19613578837008 + sys_corr_38: 0.012691206948360548 + sys_corr_39: 0.27626201339468537 + sys_corr_40: -0.5176096924705876 + sys_corr_41: 1.806441106221742 + sys_corr_42: 0.8455133277763236 + sys_corr_43: -0.07125481675106504 + sys_corr_44: 1.1664791905023992 + sys_corr_45: -0.7373927098943505 + sys_corr_46: 0.12342722393450799 + sys_corr_47: 0.7197205916790519 + sys_corr_48: -1.796755164163263 + sys_corr_49: 2.609920122877421 + sys_corr_50: -2.1104075587395754 + sys_corr_51: 2.1786077553220964 + sys_corr_52: -0.4220983395869444 + sys_corr_53: -0.494410275844577 + sys_corr_54: 2.392923389731785 + sys_corr_55: -1.1137119555277046 + sys_corr_56: -1.092150771032451 + sys_corr_57: -0.4027231626351359 + sys_corr_58: 0.37995003648200754 + sys_corr_59: -0.43033441613716317 + sys_corr_60: 1.2694837717188387 + sys_corr_61: 1.395325269235194 + sys_corr_62: 1.212082037075335 + sys_corr_63: 0.7433260344118691 + sys_corr_64: 0.33638388575183337 + sys_corr_65: -0.3313961186131397 + sys_corr_66: 0.40062721919985395 + sys_corr_67: -0.0739219962138108 + sys_corr_68: 0.6667236815253749 + sys_corr_69: 0.6702964832577282 + sys_corr_70: 0.7955847825942499 + sys_corr_71: -0.271539555754183 + sys_corr_72: -1.5043234500841318 + sys_corr_73: -0.8146439194804881 + sys_corr_74: 1.4930738201891747 + sys_corr_75: 1.4066536284356603 + sys_corr_76: 2.0581308388463535 + sys_corr_77: -2.0440044450625163 + sys_corr_78: 1.6475206853441358 + sys_corr_79: 1.2919004917158108 + sys_corr_80: -0.5755170640820895 + sys_corr_81: 0.8585591022486377 + sys_corr_82: -0.719600870001867 + sys_corr_83: 0.5835722454791077 + sys_corr_84: -5.693741063679127 + sys_corr_85: 2.1245423927880975 + sys_corr_86: 0.2461920344623719 + sys_corr_87: 0.2241781407669606 + sys_corr_88: 0.3254173255503662 + sys_corr_89: -0.4083590789674505 + sys_corr_90: 2.51325894884269 + sys_corr_91: 6.963412702017544 + sys_corr_92: 0.32797485626761047 + sys_corr_93: -1.5363919658220462 + sys_corr_94: -3.69900800835085 + sys_corr_95: 3.822545826337504 + sys_corr_96: 0.33827737411640607 + sys_corr_97: 3.5105604516159907 + sys_corr_98: 2.497393782149314 + sys_corr_99: 2.6548574671094602 + sys_corr_100: -6.897804706765737 + sys_corr_101: -9.53890506268264 + sys_corr_102: 3.564566192716945 + sys_corr_103: -3.0568864866641845 + sys_corr_104: -7.0550458491748484 + sys_corr_105: -15.23085864087798 + sys_corr_106: -11.654183406170773 + sys_corr_107: -22.338409274210154 + sys_corr_108: 16.371757165086997 + sys_corr_109: 1.291456190445716 + sys_corr_110: 1.7791393446997465 + sys_corr_111: 9.970102266242476 + sys_corr_112: 10.163209127217725 + sys_corr_113: 8.06913590296833 + sys_corr_114: -0.09339898539369354 + sys_corr_115: 30.71470665716231 + sys_corr_116: -4.998607634804057 + sys_corr_117: -1.313805507934797 + sys_corr_118: -37.55470838234366 + sys_corr_119: -0.456912935266402 + sys_corr_120: 1.611987491791657 + sys_corr_121: 0.1671964954343374 + sys_corr_122: 1.7991245836049734 + sys_corr_123: 1.1487745571587384 + sys_corr_124: -0.49545275351102197 + sys_corr_125: -1.766977660145854 + sys_corr_126: 0.5201467630245815 + sys_corr_127: -0.4182694503720925 + sys_corr_128: -2.112049585517802 + sys_corr_129: 1.0045060050635413 + sys_corr_130: 0.04817820267380022 + sys_corr_131: -1.3960856223224556 + sys_corr_132: -3.8074361189923573 stat: 0.0 luminosity: 16.003856000000003 -- sys_corr_1: -12.07811085646506 - sys_corr_2: -2.705336464586508 - sys_corr_3: -19.465637123448996 - sys_corr_4: -2.9435789137485284 - sys_corr_5: -24.98943326810883 - sys_corr_6: -5.536009978958486 - sys_corr_7: 5.570225936800874 - sys_corr_8: 2.5950816428805585 - sys_corr_9: 0.13948123574408766 - sys_corr_10: 0.37438298902672024 - sys_corr_11: 0.08491594409666549 - sys_corr_12: -3.221227889983086 - sys_corr_13: -4.113602437712929 - sys_corr_14: -1.7677932805036414 - sys_corr_15: 2.0307799147847505 - sys_corr_16: -3.19960922556367 - sys_corr_17: 0.9614703501260896 - sys_corr_18: 1.99275120471959 - sys_corr_19: -1.2865734619943832 - sys_corr_20: -3.29556272734984 - sys_corr_21: 0.18214595224633146 - sys_corr_22: 4.267021233374199 - sys_corr_23: 1.7377330387339835 - sys_corr_24: -4.378884433688349 - sys_corr_25: -3.2361126384998657 - sys_corr_26: -9.449363312314283 - sys_corr_27: -1.1488104288997691 - sys_corr_28: -12.345794525329374 - sys_corr_29: -11.720844593960212 - sys_corr_30: -2.08158310675535 - sys_corr_31: 2.257465195576911 - sys_corr_32: 0.601475006251126 - sys_corr_33: -0.2064059169977488 - sys_corr_34: -2.2578530653879954 - sys_corr_35: 0.12419508138210207 - sys_corr_36: 0.8771966300523933 - sys_corr_37: -1.4613787920712598 - sys_corr_38: 0.5052290539083301 - sys_corr_39: -0.12102563528357187 - sys_corr_40: -0.05329550048269956 - sys_corr_41: 0.740638973226606 - sys_corr_42: -0.35834607576743227 - sys_corr_43: 0.6240922001866803 - sys_corr_44: 1.2998049187316418 - sys_corr_45: 0.40842595804578397 - sys_corr_46: -0.8514865288245119 - sys_corr_47: -1.2564270448347417 - sys_corr_48: 2.987794309966503 - sys_corr_49: -2.0690013985565168 - sys_corr_50: 0.9958338335576805 - sys_corr_51: -3.9358261510644157 - sys_corr_52: 2.453147462921517 - sys_corr_53: -0.7794381450071342 - sys_corr_54: 0.36579909155878165 - sys_corr_55: -1.52490146891165 - sys_corr_56: -0.14162175719940814 - sys_corr_57: 0.5077844640318814 - sys_corr_58: -0.7968320678074006 - sys_corr_59: 1.041614863720655 - sys_corr_60: -0.881603638587664 - sys_corr_61: 0.27339420593957464 - sys_corr_62: -0.1749917351595732 - sys_corr_63: 0.2716846232350204 - sys_corr_64: 0.09081267588493534 - sys_corr_65: -0.044462352244887364 - sys_corr_66: 0.15420243270046635 - sys_corr_67: 0.18820838773909582 - sys_corr_68: -0.9906475643724268 - sys_corr_69: 0.9082940853463378 - sys_corr_70: -0.9742050967103296 - sys_corr_71: 0.2513048844472975 - sys_corr_72: -0.4181503635717322 - sys_corr_73: 0.2549318310516461 - sys_corr_74: 0.3796701741066362 - sys_corr_75: 0.8273942577512127 - sys_corr_76: -0.21371070300352463 - sys_corr_77: 1.7271913249650388 - sys_corr_78: 1.2451355750835256 - sys_corr_79: 1.0079467716412414 - sys_corr_80: -0.7111946685326194 - sys_corr_81: -1.0043425899547054 - sys_corr_82: 0.41897502152884264 - sys_corr_83: 1.5379759350185354 - sys_corr_84: 6.288075774393154 - sys_corr_85: 3.5493638802942744 - sys_corr_86: 0.2927516664707221 - sys_corr_87: -0.5076135054335092 - sys_corr_88: -0.8431066376390952 - sys_corr_89: 1.6165464065013377 - sys_corr_90: -0.35037018104599554 - sys_corr_91: 7.519817370878737 - sys_corr_92: -0.07855835991562203 - sys_corr_93: -1.1422711020291232 - sys_corr_94: -1.9819389778268053 - sys_corr_95: 4.073471967999085 - sys_corr_96: -0.4781342680962121 - sys_corr_97: 1.7003456754607593 - sys_corr_98: -1.4327689803992738 - sys_corr_99: 1.286167326544638 - sys_corr_100: 11.979996107775792 - sys_corr_101: -4.203184029417064 - sys_corr_102: 5.6868950868752 - sys_corr_103: 2.569652235651035 - sys_corr_104: 1.2132279530724714 - sys_corr_105: 3.878630694380715 - sys_corr_106: -9.301412563288011 - sys_corr_107: -1.4887193509579053 - sys_corr_108: -20.840657026339898 - sys_corr_109: 18.22197109178652 - sys_corr_110: -7.564097165177066 - sys_corr_111: -11.58658570048796 - sys_corr_112: 11.57950269788257 - sys_corr_113: -12.441198637331343 - sys_corr_114: -0.0751323445291771 - sys_corr_115: 29.085841045518155 - sys_corr_116: 5.0003064498096865 - sys_corr_117: 2.4085781009528477 - sys_corr_118: -30.27977270593401 - sys_corr_119: 0.3923463606591302 - sys_corr_120: -1.4428284863753986 - sys_corr_121: -0.4868376930393829 - sys_corr_122: 2.5225278813005283 - sys_corr_123: 4.659005137108497 - sys_corr_124: 0.16931949598978813 - sys_corr_125: -3.03227977707848 - sys_corr_126: -1.576846265731747 - sys_corr_127: -0.43051745946609504 - sys_corr_128: -3.3401073453692556 - sys_corr_129: 8.391961886431561 - sys_corr_130: 0.8442087216810947 - sys_corr_131: 0.9014118079860933 - sys_corr_132: -16.779579389033888 +- sys_corr_1: -12.078110856465045 + sys_corr_2: -2.705336464586514 + sys_corr_3: -19.465637123449014 + sys_corr_4: -2.943578913748593 + sys_corr_5: -24.989433268108893 + sys_corr_6: -5.536009978958528 + sys_corr_7: 5.570225936800799 + sys_corr_8: 2.5950816428806607 + sys_corr_9: 0.13948123574413282 + sys_corr_10: 0.37438298902679995 + sys_corr_11: 0.08491594409633275 + sys_corr_12: -3.221227889983109 + sys_corr_13: 4.11360243771293 + sys_corr_14: 1.7677932805036063 + sys_corr_15: -2.0307799147847283 + sys_corr_16: 3.1996092255638073 + sys_corr_17: 0.9614703501260746 + sys_corr_18: -1.9927512047195166 + sys_corr_19: -1.2865734619942968 + sys_corr_20: -3.2955627273498753 + sys_corr_21: 0.18214595224638708 + sys_corr_22: 4.267021233374168 + sys_corr_23: 1.737733038734033 + sys_corr_24: -4.37888443368838 + sys_corr_25: -3.2361126384997347 + sys_corr_26: -9.449363312314249 + sys_corr_27: -1.1488104288995666 + sys_corr_28: -12.345794525329392 + sys_corr_29: -11.720844593960669 + sys_corr_30: -2.081583106755259 + sys_corr_31: 2.257465195576945 + sys_corr_32: -0.6014750062510612 + sys_corr_33: 0.2064059169973691 + sys_corr_34: -2.2578530653881663 + sys_corr_35: 0.12419508138171473 + sys_corr_36: 0.8771966300522323 + sys_corr_37: 1.4613787920713495 + sys_corr_38: -0.5052290539086689 + sys_corr_39: 0.12102563528357041 + sys_corr_40: 0.05329550048264059 + sys_corr_41: 0.7406389732266953 + sys_corr_42: 0.35834607576767136 + sys_corr_43: 0.6240922001867613 + sys_corr_44: 1.2998049187312226 + sys_corr_45: -0.4084259580453575 + sys_corr_46: 0.8514865288245659 + sys_corr_47: 1.256427044835068 + sys_corr_48: -2.9877943099665885 + sys_corr_49: 2.0690013985564435 + sys_corr_50: 0.9958338335575728 + sys_corr_51: -3.935826151064835 + sys_corr_52: 2.453147462921113 + sys_corr_53: 0.7794381450068916 + sys_corr_54: -0.3657990915596784 + sys_corr_55: 1.5249014689115448 + sys_corr_56: 0.14162175719973485 + sys_corr_57: 0.5077844640315006 + sys_corr_58: 0.7968320678080335 + sys_corr_59: 1.0416148637202653 + sys_corr_60: 0.8816036385881116 + sys_corr_61: -0.2733942059391973 + sys_corr_62: 0.17499173515942062 + sys_corr_63: 0.27168462323504455 + sys_corr_64: 0.0908126758848993 + sys_corr_65: -0.04446235224471178 + sys_corr_66: -0.15420243270039827 + sys_corr_67: 0.18820838773829435 + sys_corr_68: 0.9906475643732721 + sys_corr_69: 0.9082940853460941 + sys_corr_70: 0.9742050967101398 + sys_corr_71: 0.2513048844473096 + sys_corr_72: 0.4181503635718509 + sys_corr_73: -0.25493183105143274 + sys_corr_74: 0.3796701741062385 + sys_corr_75: 0.8273942577517701 + sys_corr_76: -0.21371070300302444 + sys_corr_77: -1.7271913249647957 + sys_corr_78: 0.7111946685328843 + sys_corr_79: 1.2451355750832576 + sys_corr_80: 1.0079467716412132 + sys_corr_81: 1.0043425899546092 + sys_corr_82: -0.4189750215288392 + sys_corr_83: 1.5379759350187585 + sys_corr_84: -6.288075774393652 + sys_corr_85: 3.5493638802933094 + sys_corr_86: -0.29275166647184137 + sys_corr_87: 0.5076135054336708 + sys_corr_88: -0.8431066376386418 + sys_corr_89: -0.35037018104606377 + sys_corr_90: 1.6165464065010844 + sys_corr_91: 7.519817370878534 + sys_corr_92: 0.07855835991586348 + sys_corr_93: -1.1422711020291167 + sys_corr_94: -1.9819389778272096 + sys_corr_95: 4.073471967998557 + sys_corr_96: 0.4781342680963472 + sys_corr_97: 1.7003456754609412 + sys_corr_98: 1.432768980399434 + sys_corr_99: 1.2861673265446467 + sys_corr_100: -4.20318402941834 + sys_corr_101: -5.686895086877288 + sys_corr_102: 2.569652235644922 + sys_corr_103: -1.2132279530728904 + sys_corr_104: -3.878630694380987 + sys_corr_105: -11.979996107778332 + sys_corr_106: -9.30141256328809 + sys_corr_107: -20.840657026339635 + sys_corr_108: 18.221971091786678 + sys_corr_109: 7.564097165177378 + sys_corr_110: 1.4887193509580197 + sys_corr_111: 11.586585700487863 + sys_corr_112: 11.579502697882672 + sys_corr_113: 12.441198637331228 + sys_corr_114: -0.07513234452920683 + sys_corr_115: 29.085841045518094 + sys_corr_116: -5.0003064498059056 + sys_corr_117: -2.4085781009529725 + sys_corr_118: 30.27977270593402 + sys_corr_119: -0.3923463606590735 + sys_corr_120: 1.4428284863766738 + sys_corr_121: 0.48683769303957014 + sys_corr_122: 4.659005137108251 + sys_corr_123: 2.5225278813000864 + sys_corr_124: 0.16931949599034377 + sys_corr_125: -3.0322797770784145 + sys_corr_126: 1.5768462657312874 + sys_corr_127: -0.43051745946593994 + sys_corr_128: -3.3401073453701606 + sys_corr_129: 8.391961886431485 + sys_corr_130: 0.8442087216807019 + sys_corr_131: -0.901411807987909 + sys_corr_132: -16.779579389034197 stat: 0.0 luminosity: 11.507782000000002 -- sys_corr_1: -4.78342540323949 - sys_corr_2: -3.96537607224228 - sys_corr_3: -9.68167813309767 - sys_corr_4: -1.2628397183148674 - sys_corr_5: -10.085160713467372 - sys_corr_6: -2.884642556218345 - sys_corr_7: 4.368160663065999 - sys_corr_8: 2.300865514492333 - sys_corr_9: 1.4998039836338246 - sys_corr_10: 0.43194057745264813 - sys_corr_11: 2.21449377510306 - sys_corr_12: 2.1290076713403105 - sys_corr_13: 0.1397066948972882 - sys_corr_14: -1.5514741232344664 - sys_corr_15: 0.03302775632989703 - sys_corr_16: -1.2228776922746354 - sys_corr_17: 1.664362439304748 - sys_corr_18: 1.2356005687821257 - sys_corr_19: -2.005761727659106 - sys_corr_20: -2.8451739492310533 - sys_corr_21: -0.6552619206292506 - sys_corr_22: 0.12007880389759755 - sys_corr_23: 3.677430593141488 - sys_corr_24: -4.754191357020355 - sys_corr_25: -0.24723308688427922 - sys_corr_26: -2.1623085472770485 - sys_corr_27: -0.12879157851293874 - sys_corr_28: 9.051479553263782 - sys_corr_29: 7.3089051962918035 - sys_corr_30: 4.516292202586186 - sys_corr_31: 2.7419886657575203 - sys_corr_32: 0.049533831685725505 - sys_corr_33: 0.0438382757412558 - sys_corr_34: -2.462641488525877 - sys_corr_35: -0.5992289536933771 - sys_corr_36: -1.0722218041156841 - sys_corr_37: -0.3485169008004892 - sys_corr_38: 0.1787965696302441 - sys_corr_39: 0.46335426017812203 - sys_corr_40: 0.5452181831439872 - sys_corr_41: 0.017934087470256904 - sys_corr_42: -0.7636485415330824 - sys_corr_43: 0.20309185290710874 - sys_corr_44: 0.44471037692406246 - sys_corr_45: 0.8015687391090679 - sys_corr_46: 0.04158239517836614 - sys_corr_47: -1.5850226646905758 - sys_corr_48: 2.387663857403173 - sys_corr_49: -1.4621884314622877 - sys_corr_50: 2.136165361199683 - sys_corr_51: -3.1459417187127996 - sys_corr_52: 2.1096203273682708 - sys_corr_53: -0.7011541693822587 - sys_corr_54: -0.4493940853677286 - sys_corr_55: -0.07872178284083933 - sys_corr_56: -0.20801107782785527 - sys_corr_57: 0.9266557449058627 - sys_corr_58: -0.6341986943553884 - sys_corr_59: 0.46559092303688787 - sys_corr_60: -0.4972116809143103 - sys_corr_61: -0.025251874573518147 - sys_corr_62: 0.22680880343372736 - sys_corr_63: 0.10039468736009376 - sys_corr_64: -0.3806263487388931 - sys_corr_65: 0.6291607049023662 - sys_corr_66: 0.978513900535572 - sys_corr_67: 0.756118296921289 - sys_corr_68: 0.010469669502535913 - sys_corr_69: 1.2318289343420168 - sys_corr_70: -0.981126480976004 - sys_corr_71: 0.0455320089963548 - sys_corr_72: -0.39363614735345753 - sys_corr_73: 0.47406510290539383 - sys_corr_74: 0.951875340341242 - sys_corr_75: 1.2352730061312085 - sys_corr_76: -1.0944982539041834 - sys_corr_77: 1.7054599885376904 - sys_corr_78: 0.8886959809642012 - sys_corr_79: 0.9686098665766824 - sys_corr_80: -0.811365748445129 - sys_corr_81: -0.8535634133872623 - sys_corr_82: 0.7263198143958429 - sys_corr_83: 1.5176972317503612 - sys_corr_84: 3.9204622102563915 - sys_corr_85: 1.8419340224562237 - sys_corr_86: 0.03177191374168536 - sys_corr_87: 0.21081461272567928 - sys_corr_88: -0.13736068081229935 - sys_corr_89: -0.07144773038682 - sys_corr_90: -1.6671187151153086 - sys_corr_91: 4.460718476634716 - sys_corr_92: 0.1570939138825601 - sys_corr_93: -1.025092483594269 - sys_corr_94: -2.7545273649852025 - sys_corr_95: 1.7988298584483535 - sys_corr_96: 0.04621702045731818 - sys_corr_97: 4.09733015912769 - sys_corr_98: -2.062391890305264 - sys_corr_99: 2.091301415182658 - sys_corr_100: 7.556482014064807 - sys_corr_101: -3.2290484697829913 - sys_corr_102: 4.8749014258819985 - sys_corr_103: 1.0508917284858006 - sys_corr_104: 0.7252695799021119 - sys_corr_105: 3.6377852265876114 - sys_corr_106: -5.693450239803441 - sys_corr_107: -1.9548586650605646 - sys_corr_108: -12.798995962123618 - sys_corr_109: 11.166452775286858 - sys_corr_110: -2.8241386222619904 - sys_corr_111: -6.95980136736728 - sys_corr_112: 5.779814124393356 - sys_corr_113: -7.8327290506914276 - sys_corr_114: 0.61491821394655 - sys_corr_115: 14.253255026530859 - sys_corr_116: 2.8320633277393887 - sys_corr_117: 1.656674251593296 - sys_corr_118: -9.524652471262065 - sys_corr_119: -0.5440380227842468 - sys_corr_120: -0.8198594454013434 - sys_corr_121: -0.5719696741270331 - sys_corr_122: 1.8201530083896431 - sys_corr_123: 2.4525934153167004 - sys_corr_124: -0.1998086790664626 - sys_corr_125: -2.475787531038656 - sys_corr_126: -1.1483004778078327 - sys_corr_127: 0.019670583783615702 - sys_corr_128: -1.6060352775721 - sys_corr_129: 5.008967455574462 - sys_corr_130: 1.3037466776999218 - sys_corr_131: 2.2793906197273675 - sys_corr_132: 36.29537037765901 +- sys_corr_1: -4.783425403239493 + sys_corr_2: -3.965376072242284 + sys_corr_3: -9.681678133097664 + sys_corr_4: -1.2628397183148963 + sys_corr_5: -10.085160713467396 + sys_corr_6: -2.884642556218347 + sys_corr_7: 4.36816066306598 + sys_corr_8: 2.3008655144924455 + sys_corr_9: 1.4998039836338668 + sys_corr_10: 0.4319405774524939 + sys_corr_11: 2.2144937751032643 + sys_corr_12: 2.129007671340229 + sys_corr_13: -0.13970669489725096 + sys_corr_14: 1.5514741232344522 + sys_corr_15: -0.03302775632986985 + sys_corr_16: 1.2228776922747135 + sys_corr_17: 1.6643624393047207 + sys_corr_18: -1.2356005687820837 + sys_corr_19: -2.0057617276590483 + sys_corr_20: -2.845173949231016 + sys_corr_21: -0.6552619206292103 + sys_corr_22: 0.1200788038975378 + sys_corr_23: 3.6774305931414975 + sys_corr_24: -4.754191357020389 + sys_corr_25: -0.24723308688429352 + sys_corr_26: -2.162308547276993 + sys_corr_27: -0.12879157851284773 + sys_corr_28: 9.051479553263679 + sys_corr_29: 7.308905196292088 + sys_corr_30: 4.516292202586092 + sys_corr_31: 2.7419886657575554 + sys_corr_32: -0.049533831685884634 + sys_corr_33: -0.04383827574177039 + sys_corr_34: -2.462641488525681 + sys_corr_35: -0.5992289536932236 + sys_corr_36: -1.0722218041156237 + sys_corr_37: 0.3485169008005351 + sys_corr_38: -0.17879656963035134 + sys_corr_39: -0.4633542601780896 + sys_corr_40: -0.5452181831440397 + sys_corr_41: 0.017934087470219136 + sys_corr_42: 0.76364854153314 + sys_corr_43: 0.20309185290763018 + sys_corr_44: 0.4447103769239309 + sys_corr_45: -0.8015687391088339 + sys_corr_46: -0.04158239517801879 + sys_corr_47: 1.5850226646906445 + sys_corr_48: -2.387663857403047 + sys_corr_49: 1.4621884314622697 + sys_corr_50: 2.136165361199962 + sys_corr_51: -3.145941718712829 + sys_corr_52: 2.109620327368408 + sys_corr_53: 0.7011541693820884 + sys_corr_54: 0.44939408536757697 + sys_corr_55: 0.07872178284069138 + sys_corr_56: 0.20801107782795175 + sys_corr_57: 0.926655744905502 + sys_corr_58: 0.6341986943555693 + sys_corr_59: 0.46559092303617267 + sys_corr_60: 0.49721168091451895 + sys_corr_61: 0.025251874573263403 + sys_corr_62: -0.22680880343379153 + sys_corr_63: 0.10039468736030102 + sys_corr_64: -0.3806263487387251 + sys_corr_65: 0.6291607049022165 + sys_corr_66: -0.9785139005356391 + sys_corr_67: 0.7561182969211544 + sys_corr_68: -0.010469669502117668 + sys_corr_69: 1.2318289343422466 + sys_corr_70: 0.9811264809753758 + sys_corr_71: 0.045532008996582274 + sys_corr_72: 0.3936361473534458 + sys_corr_73: -0.4740651029051787 + sys_corr_74: 0.9518753403410911 + sys_corr_75: 1.235273006132409 + sys_corr_76: -1.0944982539035182 + sys_corr_77: -1.705459988537282 + sys_corr_78: 0.8113657484453777 + sys_corr_79: 0.8886959809640743 + sys_corr_80: 0.9686098665766852 + sys_corr_81: 0.8535634133870632 + sys_corr_82: -0.7263198143957996 + sys_corr_83: 1.5176972317505784 + sys_corr_84: -3.920462210256716 + sys_corr_85: 1.8419340224555125 + sys_corr_86: -0.03177191374140755 + sys_corr_87: -0.2108146127255983 + sys_corr_88: -0.13736068081188768 + sys_corr_89: -1.667118715115264 + sys_corr_90: -0.07144773038706005 + sys_corr_91: 4.460718476634684 + sys_corr_92: -0.1570939138822231 + sys_corr_93: -1.0250924835940836 + sys_corr_94: -2.7545273649853734 + sys_corr_95: 1.7988298584479532 + sys_corr_96: -0.046217020457175996 + sys_corr_97: 4.097330159127918 + sys_corr_98: 2.062391890305386 + sys_corr_99: 2.0913014151827127 + sys_corr_100: -3.2290484697835264 + sys_corr_101: -4.8749014258830385 + sys_corr_102: 1.050891728481236 + sys_corr_103: -0.7252695799022408 + sys_corr_104: -3.6377852265874275 + sys_corr_105: -7.556482014066169 + sys_corr_106: -5.693450239803218 + sys_corr_107: -12.798995962123403 + sys_corr_108: 11.16645277528711 + sys_corr_109: 2.8241386222621383 + sys_corr_110: 1.9548586650606843 + sys_corr_111: 6.959801367367132 + sys_corr_112: 5.779814124393469 + sys_corr_113: 7.832729050691279 + sys_corr_114: 0.6149182139464059 + sys_corr_115: 14.253255026531125 + sys_corr_116: -2.832063327737584 + sys_corr_117: -1.6566742515937518 + sys_corr_118: 9.524652471261968 + sys_corr_119: 0.5440380227842718 + sys_corr_120: 0.8198594454015499 + sys_corr_121: 0.5719696741272516 + sys_corr_122: 2.452593415316485 + sys_corr_123: 1.8201530083895048 + sys_corr_124: -0.19980867906612013 + sys_corr_125: -2.47578753103898 + sys_corr_126: 1.1483004778073944 + sys_corr_127: 0.019670583783915337 + sys_corr_128: -1.606035277572665 + sys_corr_129: 5.008967455574451 + sys_corr_130: 1.3037466776997118 + sys_corr_131: -2.2793906197242295 + sys_corr_132: 36.295370377659076 stat: 0.0 luminosity: 6.068678 -- sys_corr_1: -1.9232466001005961 - sys_corr_2: -1.25911558092972 - sys_corr_3: -3.7709326511947063 - sys_corr_4: -0.19252791095688657 - sys_corr_5: -4.448885232484748 - sys_corr_6: -0.863775283912484 - sys_corr_7: 1.5439846180539571 - sys_corr_8: 0.9889910077421673 - sys_corr_9: 0.7680291294429998 - sys_corr_10: 0.2299288153896306 - sys_corr_11: 0.35840941986905267 - sys_corr_12: -0.10396805655040214 - sys_corr_13: -0.5633524706895767 - sys_corr_14: -0.5786831394050592 - sys_corr_15: 0.1865424155713284 - sys_corr_16: -0.606072624828177 - sys_corr_17: 0.6909095884434167 - sys_corr_18: 0.43698884083924405 - sys_corr_19: -0.8573250680755963 - sys_corr_20: -1.428927562763933 - sys_corr_21: -0.4414669761921952 - sys_corr_22: -0.10228540358549351 - sys_corr_23: 1.5804575093266735 - sys_corr_24: -2.471918538925232 - sys_corr_25: -0.7746853868272595 - sys_corr_26: -0.6454373172479586 - sys_corr_27: 0.3719427191420969 - sys_corr_28: -0.016031309499597038 - sys_corr_29: -1.1462018296268535 - sys_corr_30: -0.9217357999913293 - sys_corr_31: -0.12968346240865009 - sys_corr_32: -0.17747621544653003 - sys_corr_33: -0.3438887720749697 - sys_corr_34: -0.1740885742491728 - sys_corr_35: 0.17841543068456847 - sys_corr_36: 0.7434797258964078 - sys_corr_37: -0.5152700096309981 - sys_corr_38: -0.1517300120517544 - sys_corr_39: -0.279468274508896 - sys_corr_40: -0.15517481495083799 - sys_corr_41: -0.27858243003918387 - sys_corr_42: 0.7638066738420192 - sys_corr_43: -0.11957966969694188 - sys_corr_44: 2.8401537014657663 - sys_corr_45: -0.10387897968147101 - sys_corr_46: 0.049185287251177975 - sys_corr_47: 2.535382583757312 - sys_corr_48: -5.415104904820009 - sys_corr_49: 1.994741982940015 - sys_corr_50: -4.995006429655422 - sys_corr_51: 4.779535985508925 - sys_corr_52: -3.7487773811000134 - sys_corr_53: 0.2389053959710994 - sys_corr_54: -1.3552161770372992 - sys_corr_55: 1.266639812176342 - sys_corr_56: 1.1518077545047198 - sys_corr_57: -0.11041596883177231 - sys_corr_58: 0.08510404296854984 - sys_corr_59: 0.17299025823447473 - sys_corr_60: -0.19982084832540337 - sys_corr_61: -0.30848833609994925 - sys_corr_62: 0.19366421458627125 - sys_corr_63: -0.17661384639037442 - sys_corr_64: 0.1505406669479725 - sys_corr_65: 0.21542681185233492 - sys_corr_66: -0.13365823740464616 - sys_corr_67: 0.25956591369397486 - sys_corr_68: 0.33513958540748684 - sys_corr_69: 0.12696102466358883 - sys_corr_70: 0.00932891908529613 - sys_corr_71: 0.15854913923172023 - sys_corr_72: 0.1490740634210575 - sys_corr_73: 0.0941243726663999 - sys_corr_74: 0.16266904605270016 - sys_corr_75: 0.45964015037316064 - sys_corr_76: -0.16892405258459664 - sys_corr_77: 0.5838599997488081 - sys_corr_78: 0.3277425001455222 - sys_corr_79: 0.08506373991499241 - sys_corr_80: -0.5049748973030999 - sys_corr_81: -0.446008331067562 - sys_corr_82: 0.3214183346320736 - sys_corr_83: 0.39030033879068754 - sys_corr_84: 1.1634539873926195 - sys_corr_85: 0.6610846648764159 - sys_corr_86: -0.08768148539039007 - sys_corr_87: 0.12089037054977074 - sys_corr_88: 0.25891008472081517 - sys_corr_89: 0.05112508009410534 - sys_corr_90: -0.323462383212027 - sys_corr_91: 1.2976887757850704 - sys_corr_92: 0.32050698786635895 - sys_corr_93: -0.3530537730344634 - sys_corr_94: -0.802339145905054 - sys_corr_95: 0.7306186795939867 - sys_corr_96: -0.027098080266589546 - sys_corr_97: 1.2281370444336193 - sys_corr_98: -0.6376172337988947 - sys_corr_99: 0.6939093651232565 - sys_corr_100: 2.4307692843879876 - sys_corr_101: -1.3407077583172633 - sys_corr_102: 1.802893187298035 - sys_corr_103: 0.7619888765774223 - sys_corr_104: 0.5838949073757036 - sys_corr_105: 1.4337427321603056 - sys_corr_106: -1.8564390307892493 - sys_corr_107: -0.6460477298181221 - sys_corr_108: -3.7054095142861114 - sys_corr_109: 3.0123723238933584 - sys_corr_110: -0.9452298791566379 - sys_corr_111: -2.246272578751948 - sys_corr_112: 1.352025206687565 - sys_corr_113: -1.9102500102955646 - sys_corr_114: -0.04247192185742013 - sys_corr_115: 3.0932756200814455 - sys_corr_116: 0.6245091981540267 - sys_corr_117: 0.2805036085185593 - sys_corr_118: -2.3647268482173573 - sys_corr_119: -1.1779484288517779 - sys_corr_120: -0.1345721588861479 - sys_corr_121: -2.494617886092236 - sys_corr_122: -1.5094964699221403 - sys_corr_123: -0.5642293482142262 - sys_corr_124: -0.15814124593396606 - sys_corr_125: -0.09041551005708831 - sys_corr_126: 8.126153218577892 - sys_corr_127: 0.027934427632996355 - sys_corr_128: 0.8549576765842677 - sys_corr_129: 0.6919020500104773 - sys_corr_130: -19.643959614382055 - sys_corr_131: 0.25301189851650574 - sys_corr_132: 1.488542829925216 +- sys_corr_1: -1.9232466001005968 + sys_corr_2: -1.2591155809297228 + sys_corr_3: -3.7709326511947068 + sys_corr_4: -0.19252791095689958 + sys_corr_5: -4.4488852324847565 + sys_corr_6: -0.8637752839124873 + sys_corr_7: 1.5439846180539436 + sys_corr_8: 0.9889910077422226 + sys_corr_9: 0.7680291294430167 + sys_corr_10: 0.22992881538958784 + sys_corr_11: 0.3584094198690362 + sys_corr_12: -0.1039680565504185 + sys_corr_13: 0.5633524706895818 + sys_corr_14: 0.5786831394050478 + sys_corr_15: -0.18654241557131712 + sys_corr_16: 0.6060726248282411 + sys_corr_17: 0.6909095884434069 + sys_corr_18: -0.4369888408392155 + sys_corr_19: -0.857325068075565 + sys_corr_20: -1.42892756276393 + sys_corr_21: -0.4414669761921756 + sys_corr_22: -0.10228540358551372 + sys_corr_23: 1.5804575093266917 + sys_corr_24: -2.471918538925235 + sys_corr_25: -0.7746853868273178 + sys_corr_26: -0.6454373172478896 + sys_corr_27: 0.3719427191420168 + sys_corr_28: -0.01603130949954065 + sys_corr_29: -1.1462018296268324 + sys_corr_30: -0.9217357999913136 + sys_corr_31: -0.12968346240858505 + sys_corr_32: 0.17747621544649617 + sys_corr_33: 0.34388877207499413 + sys_corr_34: -0.174088574249372 + sys_corr_35: 0.17841543068435223 + sys_corr_36: 0.7434797258963983 + sys_corr_37: 0.5152700096309831 + sys_corr_38: 0.15173001205167447 + sys_corr_39: 0.279468274509048 + sys_corr_40: 0.15517481495091334 + sys_corr_41: -0.2785824300392477 + sys_corr_42: -0.7638066738421692 + sys_corr_43: -0.11957966969727955 + sys_corr_44: 2.8401537014659413 + sys_corr_45: 0.10387897968117703 + sys_corr_46: -0.04918528725107482 + sys_corr_47: -2.5353825837569057 + sys_corr_48: 5.415104904819657 + sys_corr_49: -1.994741982939423 + sys_corr_50: -4.995006429655969 + sys_corr_51: 4.779535985508733 + sys_corr_52: -3.7487773811005347 + sys_corr_53: -0.2389053959704859 + sys_corr_54: 1.3552161770383009 + sys_corr_55: -1.2666398121765514 + sys_corr_56: -1.1518077545052208 + sys_corr_57: -0.11041596883084813 + sys_corr_58: -0.08510404296800801 + sys_corr_59: 0.17299025823460867 + sys_corr_60: 0.19982084832509714 + sys_corr_61: 0.30848833609967424 + sys_corr_62: -0.193664214586065 + sys_corr_63: -0.1766138463904441 + sys_corr_64: 0.15054066694790155 + sys_corr_65: 0.21542681185229112 + sys_corr_66: 0.1336582374044083 + sys_corr_67: 0.2595659136943522 + sys_corr_68: -0.3351395854074412 + sys_corr_69: 0.12696102466369552 + sys_corr_70: -0.009328919085372266 + sys_corr_71: 0.1585491392319237 + sys_corr_72: -0.14907406342102913 + sys_corr_73: -0.09412437266620839 + sys_corr_74: 0.16266904605264232 + sys_corr_75: 0.4596401503730406 + sys_corr_76: -0.1689240525843567 + sys_corr_77: -0.5838599997485892 + sys_corr_78: 0.5049748973032614 + sys_corr_79: 0.32774250014539175 + sys_corr_80: 0.0850637399150913 + sys_corr_81: 0.44600833106732823 + sys_corr_82: -0.3214183346320395 + sys_corr_83: 0.39030033879082365 + sys_corr_84: -1.163453987392728 + sys_corr_85: 0.6610846648761577 + sys_corr_86: 0.08768148539128018 + sys_corr_87: -0.12089037054979672 + sys_corr_88: 0.25891008472103944 + sys_corr_89: -0.32346238321202114 + sys_corr_90: 0.05112508009404625 + sys_corr_91: 1.2976887757850022 + sys_corr_92: -0.32050698786640297 + sys_corr_93: -0.35305377303442537 + sys_corr_94: -0.8023391459051604 + sys_corr_95: 0.7306186795938652 + sys_corr_96: 0.027098080266823747 + sys_corr_97: 1.2281370444335922 + sys_corr_98: 0.637617233799 + sys_corr_99: 0.6939093651232696 + sys_corr_100: -1.340707758317468 + sys_corr_101: -1.8028931872987701 + sys_corr_102: 0.7619888765752483 + sys_corr_103: -0.5838949073757642 + sys_corr_104: -1.4337427321602982 + sys_corr_105: -2.4307692843885174 + sys_corr_106: -1.8564390307892966 + sys_corr_107: -3.705409514286217 + sys_corr_108: 3.0123723238933797 + sys_corr_109: 0.9452298791565402 + sys_corr_110: 0.6460477298181259 + sys_corr_111: 2.24627257875182 + sys_corr_112: 1.3520252066874254 + sys_corr_113: 1.9102500102953481 + sys_corr_114: -0.04247192185738769 + sys_corr_115: 3.093275620081878 + sys_corr_116: -0.624509198153844 + sys_corr_117: -0.28050360851847195 + sys_corr_118: 2.364726848217352 + sys_corr_119: 1.1779484288513609 + sys_corr_120: 0.13457215888613178 + sys_corr_121: 2.4946178860909867 + sys_corr_122: -0.5642293482134276 + sys_corr_123: -1.5094964699237547 + sys_corr_124: -0.15814124593384096 + sys_corr_125: -0.0904155100573093 + sys_corr_126: -8.126153218573787 + sys_corr_127: 0.0279344276329025 + sys_corr_128: 0.8549576765840535 + sys_corr_129: 0.6919020500106008 + sys_corr_130: -19.643959614380716 + sys_corr_131: -0.253011898516338 + sys_corr_132: 1.4885428299254653 stat: 0.0 luminosity: 2.356574 -- sys_corr_1: 3.6242373793521074 - sys_corr_2: 6.4594484261529175 - sys_corr_3: -2.6420520955417968 - sys_corr_4: 1.1515670017132602 - sys_corr_5: -3.811323744576514 - sys_corr_6: 1.734140258933352 - sys_corr_7: 0.11371668527547563 - sys_corr_8: -1.04063880021389 - sys_corr_9: -2.1795765968203784 - sys_corr_10: -0.661746028401615 - sys_corr_11: -0.460089240257284 - sys_corr_12: 0.08219125873716987 - sys_corr_13: -0.5643566784620896 - sys_corr_14: -0.22919319754676645 - sys_corr_15: -0.10563119583579303 - sys_corr_16: -0.44662146748208575 - sys_corr_17: -0.04277558847002892 - sys_corr_18: 0.04884536585392808 - sys_corr_19: -0.3534820298018769 - sys_corr_20: -0.09410197778679982 - sys_corr_21: -0.16245600274065683 - sys_corr_22: 1.9207040162695177 - sys_corr_23: 0.7911203284852206 - sys_corr_24: -1.2765349425599766 - sys_corr_25: -0.9380427162791882 - sys_corr_26: -0.46494947054077956 - sys_corr_27: 0.833441433022946 - sys_corr_28: -1.481898026831731 - sys_corr_29: 1.326833276782083 - sys_corr_30: 0.9670841782689101 - sys_corr_31: 1.0245675178699476 - sys_corr_32: 0.025777784652730947 - sys_corr_33: -0.28907029096311826 - sys_corr_34: -0.686831814185748 - sys_corr_35: 0.20060732516756521 - sys_corr_36: 0.07776698472437081 - sys_corr_37: 0.417104256405695 - sys_corr_38: 0.19725270620612803 - sys_corr_39: -0.44274292401330617 - sys_corr_40: 0.14677230088968068 - sys_corr_41: 0.37355266329972503 - sys_corr_42: -0.16323124123100305 - sys_corr_43: -0.35201578685255364 - sys_corr_44: 0.2992293321073065 - sys_corr_45: -0.14663414043597167 - sys_corr_46: -0.18778208181186862 - sys_corr_47: -0.43930539776476585 - sys_corr_48: 0.5539341273297764 - sys_corr_49: -0.025202181324202644 - sys_corr_50: -0.2086502178477203 - sys_corr_51: -0.05408803871613881 - sys_corr_52: 0.009686322759020094 - sys_corr_53: 0.10329622657128326 - sys_corr_54: 0.6862640359128376 - sys_corr_55: 0.43223963321199954 - sys_corr_56: 0.36411188729999894 - sys_corr_57: -0.15082254021727726 - sys_corr_58: -0.28963242126995953 - sys_corr_59: 0.21316526267547597 - sys_corr_60: 0.06032025828390648 - sys_corr_61: -0.04058180349474021 - sys_corr_62: -0.35500160077856374 - sys_corr_63: 0.07038788954628349 - sys_corr_64: 0.3851308586305707 - sys_corr_65: 0.5377309850585055 - sys_corr_66: -0.030502717820055023 - sys_corr_67: -0.08595296790087452 - sys_corr_68: 0.15625127534731634 - sys_corr_69: 0.4820989634157826 - sys_corr_70: -0.4367766658725367 - sys_corr_71: -0.06639718469154841 - sys_corr_72: 0.3111671016462678 - sys_corr_73: 0.7620087422265299 - sys_corr_74: 0.008382563226706453 - sys_corr_75: -0.03687403244315724 - sys_corr_76: -0.2848144793894132 - sys_corr_77: 0.1306291550641775 - sys_corr_78: 0.6537824344285228 - sys_corr_79: 0.3691661634663972 - sys_corr_80: -0.3382134664246544 - sys_corr_81: -0.45917495392366386 - sys_corr_82: -0.17634015214661594 - sys_corr_83: 0.9820459291572178 - sys_corr_84: 4.892846654034834 - sys_corr_85: 3.400701003589652 - sys_corr_86: -0.4720849970847204 - sys_corr_87: 0.3254266184772221 - sys_corr_88: 0.33273608888350276 - sys_corr_89: 0.8622757192550139 - sys_corr_90: 0.061328669468736816 - sys_corr_91: 5.50290712643034 - sys_corr_92: 0.7037332637923649 - sys_corr_93: 0.15209426421110622 - sys_corr_94: -0.5568923357941229 - sys_corr_95: 0.6394179573395795 - sys_corr_96: 0.7867408079326693 - sys_corr_97: 1.848755153155244 - sys_corr_98: 0.7406580704040477 - sys_corr_99: 0.30636461725144803 - sys_corr_100: 1.5652528071044907 - sys_corr_101: -0.6843175139063795 - sys_corr_102: 1.1745909379141821 - sys_corr_103: 0.3218606645228726 - sys_corr_104: 0.012292919056502382 - sys_corr_105: -0.48327779219275313 - sys_corr_106: -0.9750916118937091 - sys_corr_107: -1.515749179709591 - sys_corr_108: -1.6093223693810437 - sys_corr_109: 1.2372313719559986 - sys_corr_110: -0.2524149734894971 - sys_corr_111: -0.9567053715460413 - sys_corr_112: 1.4060270870188318 - sys_corr_113: -2.357030924714965 - sys_corr_114: -0.002511711002444411 - sys_corr_115: -2.100105690791162 - sys_corr_116: -0.7011757977045278 - sys_corr_117: 3.3278234948652217 - sys_corr_118: 0.14116964582730665 - sys_corr_119: 0.010297176803534794 - sys_corr_120: -1.7725676176468481 - sys_corr_121: 0.007475639660008382 - sys_corr_122: 0.10873765370568712 - sys_corr_123: 0.42514901391918186 - sys_corr_124: 70.54611289282566 - sys_corr_125: -0.8168857997526705 - sys_corr_126: -0.001740723330851473 - sys_corr_127: -0.340495143561055 - sys_corr_128: 0.22732321408158573 - sys_corr_129: -7.1075919886664 - sys_corr_130: -0.03946233698133062 - sys_corr_131: 0.929837757975994 - sys_corr_132: 0.003244474465904211 +- sys_corr_1: 3.6242373793521208 + sys_corr_2: 6.459448426152907 + sys_corr_3: -2.6420520955417977 + sys_corr_4: 1.1515670017132609 + sys_corr_5: -3.8113237445765047 + sys_corr_6: 1.7341402589333463 + sys_corr_7: 0.11371668527546229 + sys_corr_8: -1.0406388002139666 + sys_corr_9: -2.179576596820378 + sys_corr_10: -0.6617460284015281 + sys_corr_11: -0.46008924025726966 + sys_corr_12: 0.08219125873719776 + sys_corr_13: 0.5643566784620696 + sys_corr_14: 0.22919319754676934 + sys_corr_15: 0.10563119583580904 + sys_corr_16: 0.4466214674820839 + sys_corr_17: -0.04277558847002822 + sys_corr_18: -0.04884536585390843 + sys_corr_19: -0.35348202980187027 + sys_corr_20: -0.09410197778680937 + sys_corr_21: -0.16245600274067093 + sys_corr_22: 1.9207040162695097 + sys_corr_23: 0.7911203284852348 + sys_corr_24: -1.276534942559967 + sys_corr_25: -0.9380427162792089 + sys_corr_26: -0.4649494705407968 + sys_corr_27: 0.8334414330229364 + sys_corr_28: -1.48189802683177 + sys_corr_29: 1.3268332767820512 + sys_corr_30: 0.9670841782689132 + sys_corr_31: 1.0245675178699338 + sys_corr_32: -0.0257777846527602 + sys_corr_33: 0.28907029096299425 + sys_corr_34: -0.6868318141858266 + sys_corr_35: 0.20060732516752108 + sys_corr_36: 0.07776698472442552 + sys_corr_37: -0.4171042564058031 + sys_corr_38: -0.1972527062060837 + sys_corr_39: 0.44274292401323023 + sys_corr_40: -0.14677230088975549 + sys_corr_41: 0.37355266329971176 + sys_corr_42: 0.16323124123104069 + sys_corr_43: -0.35201578685247115 + sys_corr_44: 0.2992293321072146 + sys_corr_45: 0.14663414043616474 + sys_corr_46: 0.18778208181190026 + sys_corr_47: 0.4393053977648547 + sys_corr_48: -0.5539341273297392 + sys_corr_49: 0.025202181324126764 + sys_corr_50: -0.2086502178476673 + sys_corr_51: -0.054088038716193686 + sys_corr_52: 0.009686322759112884 + sys_corr_53: -0.10329622657142812 + sys_corr_54: -0.6862640359126684 + sys_corr_55: -0.43223963321177966 + sys_corr_56: -0.3641118872999675 + sys_corr_57: -0.1508225402171514 + sys_corr_58: 0.28963242127012023 + sys_corr_59: 0.2131652626753151 + sys_corr_60: -0.06032025828379156 + sys_corr_61: 0.04058180349476301 + sys_corr_62: 0.35500160077852394 + sys_corr_63: 0.07038788954598327 + sys_corr_64: 0.3851308586307579 + sys_corr_65: 0.5377309850590262 + sys_corr_66: 0.030502717819894953 + sys_corr_67: -0.08595296790087761 + sys_corr_68: -0.15625127534698327 + sys_corr_69: 0.48209896341577885 + sys_corr_70: 0.436776665872331 + sys_corr_71: -0.06639718469153581 + sys_corr_72: -0.3111671016461597 + sys_corr_73: -0.7620087422264431 + sys_corr_74: 0.008382563226849243 + sys_corr_75: -0.036874032443185545 + sys_corr_76: -0.28481447938955545 + sys_corr_77: -0.13062915506416775 + sys_corr_78: 0.3382134664246537 + sys_corr_79: 0.6537824344284694 + sys_corr_80: 0.3691661634663748 + sys_corr_81: 0.4591749539235804 + sys_corr_82: 0.1763401521466132 + sys_corr_83: 0.9820459291573262 + sys_corr_84: -4.892846654035192 + sys_corr_85: 3.4007010035889778 + sys_corr_86: 0.47208499708583923 + sys_corr_87: -0.3254266184771923 + sys_corr_88: 0.3327360888829241 + sys_corr_89: 0.06132866946874567 + sys_corr_90: 0.86227571925504 + sys_corr_91: 5.502907126430328 + sys_corr_92: -0.7037332637926212 + sys_corr_93: 0.15209426421101238 + sys_corr_94: -0.5568923357943258 + sys_corr_95: 0.6394179573394823 + sys_corr_96: -0.7867408079325479 + sys_corr_97: 1.8487551531552866 + sys_corr_98: -0.7406580704041438 + sys_corr_99: 0.3063646172514759 + sys_corr_100: -0.6843175139065512 + sys_corr_101: -1.174590937914244 + sys_corr_102: 0.32186066452239903 + sys_corr_103: -0.012292919056658684 + sys_corr_104: 0.4832777921928802 + sys_corr_105: -1.565252807104682 + sys_corr_106: -0.9750916118934508 + sys_corr_107: -1.609322369381126 + sys_corr_108: 1.2372313719560415 + sys_corr_109: 0.25241497348962194 + sys_corr_110: 1.5157491797097062 + sys_corr_111: 0.956705371546155 + sys_corr_112: 1.406027087018616 + sys_corr_113: 2.3570309247150316 + sys_corr_114: -0.002511711002443387 + sys_corr_115: -2.1001056907913758 + sys_corr_116: 0.7011757977045374 + sys_corr_117: -3.327823494865429 + sys_corr_118: -0.1411696458273286 + sys_corr_119: -0.010297176803501328 + sys_corr_120: 1.7725676176467684 + sys_corr_121: -0.007475639660051798 + sys_corr_122: 0.4251490139190435 + sys_corr_123: 0.10873765370560291 + sys_corr_124: 70.54611289282518 + sys_corr_125: -0.8168857997526616 + sys_corr_126: 0.001740723330833192 + sys_corr_127: -0.34049514356072863 + sys_corr_128: 0.22732321408147657 + sys_corr_129: -7.107591988668364 + sys_corr_130: -0.03946233698138914 + sys_corr_131: -0.9298377579761191 + sys_corr_132: 0.0032444744658437223 stat: 0.0 luminosity: 11.657844000000003 -- sys_corr_1: 4.218247174358299 - sys_corr_2: 5.300560648672866 - sys_corr_3: -3.4470042221279447 - sys_corr_4: 0.7166150014453916 - sys_corr_5: -3.170695012458027 - sys_corr_6: 1.50044643477532 - sys_corr_7: 0.4204913124951247 - sys_corr_8: -0.895600940647576 - sys_corr_9: -2.1730014969261906 - sys_corr_10: -0.4701909817280382 - sys_corr_11: -0.4433993208145785 - sys_corr_12: 0.11415729809021591 - sys_corr_13: -0.287520634166263 - sys_corr_14: -0.23044051165075163 - sys_corr_15: 0.0880018823385201 - sys_corr_16: -0.16897010860519635 +- sys_corr_1: 4.218247174358309 + sys_corr_2: 5.300560648672863 + sys_corr_3: -3.4470042221279384 + sys_corr_4: 0.716615001445392 + sys_corr_5: -3.1706950124580224 + sys_corr_6: 1.5004464347753153 + sys_corr_7: 0.42049131249511046 + sys_corr_8: -0.8956009406476492 + sys_corr_9: -2.1730014969261986 + sys_corr_10: -0.4701909817279471 + sys_corr_11: -0.4433993208145569 + sys_corr_12: 0.1141572980902398 + sys_corr_13: 0.28752063416624113 + sys_corr_14: 0.23044051165074964 + sys_corr_15: -0.08800188233851287 + sys_corr_16: 0.168970108605207 sys_corr_17: -0.3589179683467866 - sys_corr_18: 0.05300254447934498 - sys_corr_19: 0.03258382081708216 - sys_corr_20: 0.1961982512330442 - sys_corr_21: -0.22323643797688558 - sys_corr_22: 1.570494011265281 - sys_corr_23: 0.3971351291907056 - sys_corr_24: -1.061701768341573 - sys_corr_25: -0.8598521108973345 - sys_corr_26: -0.3773046922994822 - sys_corr_27: 0.2894484555140007 - sys_corr_28: -1.5401654786119976 - sys_corr_29: 1.2856177418159342 - sys_corr_30: 0.4487477637407772 - sys_corr_31: 0.9427828982944018 - sys_corr_32: 0.07440522252074505 - sys_corr_33: -0.16932058954521217 - sys_corr_34: -0.5946024831156113 - sys_corr_35: 0.16136379553868377 - sys_corr_36: 0.0513977312839968 - sys_corr_37: 0.2986517561478774 - sys_corr_38: 0.20465177003927518 - sys_corr_39: -0.36897223470841084 - sys_corr_40: 0.09748179258322863 - sys_corr_41: 0.3558985798991824 - sys_corr_42: -0.11530685046348559 - sys_corr_43: -0.3031939758342946 - sys_corr_44: 0.18076981485172014 - sys_corr_45: -0.12724654261067514 - sys_corr_46: -0.1567924535414267 - sys_corr_47: -0.3710504991985464 - sys_corr_48: 0.5223827079853035 - sys_corr_49: 0.04530991723275285 - sys_corr_50: -0.13704705773999967 - sys_corr_51: -0.1122108052343115 - sys_corr_52: 0.008082881700533803 - sys_corr_53: 0.1707826200596642 - sys_corr_54: 0.5961226783056408 - sys_corr_55: 0.3633977679691599 - sys_corr_56: 0.26849870363747286 - sys_corr_57: -0.19399415605581435 - sys_corr_58: -0.16069510836372342 - sys_corr_59: 0.19910715662170836 - sys_corr_60: 0.04742353029610093 - sys_corr_61: -0.05419318436353839 - sys_corr_62: -0.31627279817695453 - sys_corr_63: 0.06881836642029869 - sys_corr_64: 0.24947415169591206 - sys_corr_65: 0.40481042670894013 - sys_corr_66: -0.03220100000144101 - sys_corr_67: -0.06413968102852773 - sys_corr_68: 0.18552815504029602 - sys_corr_69: 0.37597016802864913 - sys_corr_70: -0.3852452522766964 - sys_corr_71: -0.06936524380856914 - sys_corr_72: 0.19759912330132115 - sys_corr_73: 0.649631946193416 - sys_corr_74: 0.03465468771816654 - sys_corr_75: -0.05596278848058068 - sys_corr_76: -0.22732853630158448 - sys_corr_77: 0.10521916320807129 - sys_corr_78: 0.5972831311788808 - sys_corr_79: 0.2874649321124218 - sys_corr_80: -0.21562337640507082 - sys_corr_81: -0.39212132020431695 - sys_corr_82: -0.16757748444439902 - sys_corr_83: 0.7204156128337484 - sys_corr_84: 3.77914314073368 - sys_corr_85: 2.5825500601358913 - sys_corr_86: -0.37577419344497937 - sys_corr_87: 0.25734415664249577 - sys_corr_88: 0.206801303832699 - sys_corr_89: 0.7439839939885186 - sys_corr_90: 0.0027612097937179717 - sys_corr_91: 4.271931134113616 - sys_corr_92: 0.45579016386290944 - sys_corr_93: -1.6583002425527738 - sys_corr_94: 0.3132974903940541 - sys_corr_95: 0.23066373586492087 - sys_corr_96: -0.7448296957162844 - sys_corr_97: -0.6029394716296492 - sys_corr_98: -2.3081259390836784 - sys_corr_99: 1.19617019958742 - sys_corr_100: 1.184031599452245 - sys_corr_101: -0.6162398301529375 - sys_corr_102: 1.0294014305353987 - sys_corr_103: 0.7825368934923981 - sys_corr_104: -0.05292261161582191 - sys_corr_105: -0.2233697073587856 - sys_corr_106: -0.6504519443076481 - sys_corr_107: -1.1284663673002187 - sys_corr_108: -1.2337917560669573 - sys_corr_109: 1.0030127167454925 - sys_corr_110: -0.1787615139565046 - sys_corr_111: -0.545986685751581 - sys_corr_112: 0.6860430273024325 - sys_corr_113: -0.9338922606890382 - sys_corr_114: -0.0024541318329670005 - sys_corr_115: 7.991493354120565 - sys_corr_116: -59.31190665140286 - sys_corr_117: -0.7495115726754205 - sys_corr_118: 0.003031551290270143 - sys_corr_119: 0.023682356413534816 - sys_corr_120: -3.1221970481445016 - sys_corr_121: 0.011232722625649038 - sys_corr_122: 0.14105187744549375 - sys_corr_123: 0.6145119285908339 - sys_corr_124: -0.8507452846275589 - sys_corr_125: -1.3133668627535307 - sys_corr_126: -0.015340355395387903 - sys_corr_127: 0.2364470535512485 - sys_corr_128: 0.18319750628028225 - sys_corr_129: 1.0352526776924085 - sys_corr_130: -0.04904013566852758 - sys_corr_131: 1.4997817810404375 - sys_corr_132: 0.06170764180186349 + sys_corr_18: -0.05300254447933614 + sys_corr_19: 0.03258382081707446 + sys_corr_20: 0.1961982512330293 + sys_corr_21: -0.22323643797689618 + sys_corr_22: 1.5704940112652546 + sys_corr_23: 0.39713512919072713 + sys_corr_24: -1.0617017683415653 + sys_corr_25: -0.85985211089737 + sys_corr_26: -0.3773046922994445 + sys_corr_27: 0.2894484555139572 + sys_corr_28: -1.5401654786120234 + sys_corr_29: 1.2856177418159214 + sys_corr_30: 0.44874776374078673 + sys_corr_31: 0.9427828982943758 + sys_corr_32: -0.07440522252082225 + sys_corr_33: 0.1693205895450808 + sys_corr_34: -0.594602483115603 + sys_corr_35: 0.16136379553860478 + sys_corr_36: 0.051397731284006855 + sys_corr_37: -0.29865175614798234 + sys_corr_38: -0.2046517700391932 + sys_corr_39: 0.3689722347083708 + sys_corr_40: -0.09748179258325851 + sys_corr_41: 0.3558985798992434 + sys_corr_42: 0.11530685046357399 + sys_corr_43: -0.30319397583421326 + sys_corr_44: 0.180769814851651 + sys_corr_45: 0.12724654261082935 + sys_corr_46: 0.15679245354144172 + sys_corr_47: 0.37105049919867056 + sys_corr_48: -0.5223827079853176 + sys_corr_49: -0.04530991723282983 + sys_corr_50: -0.1370470577399687 + sys_corr_51: -0.11221080523441401 + sys_corr_52: 0.008082881700606606 + sys_corr_53: -0.1707826200597634 + sys_corr_54: -0.5961226783055487 + sys_corr_55: -0.3633977679689806 + sys_corr_56: -0.26849870363747746 + sys_corr_57: -0.19399415605567447 + sys_corr_58: 0.16069510836379974 + sys_corr_59: 0.19910715662166234 + sys_corr_60: -0.04742353029602693 + sys_corr_61: 0.05419318436360055 + sys_corr_62: 0.31627279817687665 + sys_corr_63: 0.06881836642010278 + sys_corr_64: 0.24947415169602644 + sys_corr_65: 0.4048104267094062 + sys_corr_66: 0.03220100000128345 + sys_corr_67: -0.06413968102851536 + sys_corr_68: -0.1855281550398904 + sys_corr_69: 0.3759701680286832 + sys_corr_70: 0.38524525227646395 + sys_corr_71: -0.0693652438084921 + sys_corr_72: -0.197599123301266 + sys_corr_73: -0.6496319461934295 + sys_corr_74: 0.03465468771832402 + sys_corr_75: -0.05596278848050105 + sys_corr_76: -0.2273285363018266 + sys_corr_77: -0.10521916320809829 + sys_corr_78: 0.21562337640496487 + sys_corr_79: 0.597283131178934 + sys_corr_80: 0.28746493211233237 + sys_corr_81: 0.39212132020437407 + sys_corr_82: 0.1675774844443022 + sys_corr_83: 0.7204156128337426 + sys_corr_84: -3.779143140733941 + sys_corr_85: 2.582550060135523 + sys_corr_86: 0.37577419344587054 + sys_corr_87: -0.2573441566425069 + sys_corr_88: 0.2068013038324041 + sys_corr_89: 0.002761209793729679 + sys_corr_90: 0.7439839939886568 + sys_corr_91: 4.271931134113562 + sys_corr_92: -0.45579016386315424 + sys_corr_93: -1.6583002425528113 + sys_corr_94: 0.31329749039399907 + sys_corr_95: 0.23066373586501526 + sys_corr_96: 0.7448296957164129 + sys_corr_97: -0.6029394716296754 + sys_corr_98: 2.3081259390839457 + sys_corr_99: 1.1961701995874148 + sys_corr_100: -0.6162398301531289 + sys_corr_101: -1.0294014305357344 + sys_corr_102: 0.7825368934914421 + sys_corr_103: 0.05292261161595319 + sys_corr_104: 0.2233697073586099 + sys_corr_105: -1.1840315994524828 + sys_corr_106: -0.6504519443076501 + sys_corr_107: -1.2337917560669789 + sys_corr_108: 1.003012716745315 + sys_corr_109: 0.1787615139566214 + sys_corr_110: 1.1284663673003024 + sys_corr_111: 0.5459866857515878 + sys_corr_112: 0.6860430273020901 + sys_corr_113: 0.9338922606890318 + sys_corr_114: -0.0024541318329559967 + sys_corr_115: 7.991493354113385 + sys_corr_116: 59.31190665140409 + sys_corr_117: 0.7495115726753172 + sys_corr_118: -0.003031551289834069 + sys_corr_119: -0.02368235641356532 + sys_corr_120: 3.1221970481444865 + sys_corr_121: -0.011232722625724346 + sys_corr_122: 0.6145119285906907 + sys_corr_123: 0.14105187744532047 + sys_corr_124: -0.850745284627358 + sys_corr_125: -1.3133668627534594 + sys_corr_126: 0.015340355395269093 + sys_corr_127: 0.23644705355145398 + sys_corr_128: 0.18319750628022125 + sys_corr_129: 1.0352526776929536 + sys_corr_130: -0.04904013566857775 + sys_corr_131: -1.4997817810405976 + sys_corr_132: 0.06170764180196757 stat: 0.0 luminosity: 13.383766 -- sys_corr_1: 4.191792934787038 - sys_corr_2: 4.8331685256338135 - sys_corr_3: -4.248849004613019 - sys_corr_4: 0.328325767209553 - sys_corr_5: -3.3292846506260036 - sys_corr_6: 1.3060307151765467 - sys_corr_7: 0.43852387866337655 - sys_corr_8: -0.942298336655711 - sys_corr_9: -1.8068108693945872 - sys_corr_10: -0.685124187663097 - sys_corr_11: -0.3621342780569522 - sys_corr_12: 0.23105882269762404 - sys_corr_13: -0.43085699608161876 - sys_corr_14: -0.1970686607734657 - sys_corr_15: -0.07913982710114756 - sys_corr_16: -0.43525418931810395 - sys_corr_17: -0.37043298912193623 - sys_corr_18: -0.01837033013614753 - sys_corr_19: 0.26353721875859404 - sys_corr_20: 0.37936379678309545 - sys_corr_21: 0.10114404515426548 - sys_corr_22: 1.575966428795589 - sys_corr_23: -0.020359034189132888 - sys_corr_24: -1.006455085976627 - sys_corr_25: -0.6238492000521303 - sys_corr_26: -0.5647035401154329 - sys_corr_27: 0.10946530899731748 - sys_corr_28: -1.742781114937126 - sys_corr_29: 1.2861662694668923 - sys_corr_30: 0.20235196701520583 - sys_corr_31: 1.1229207715499918 - sys_corr_32: 0.11914590485135056 - sys_corr_33: -0.1930801696831878 - sys_corr_34: -0.6554006826306439 - sys_corr_35: 0.1072049627280783 - sys_corr_36: -0.016988155656331893 - sys_corr_37: 0.3387121621263783 - sys_corr_38: 0.14345379043690637 - sys_corr_39: -0.3684477635755367 - sys_corr_40: 0.021939909047245625 - sys_corr_41: 0.3223678591577268 - sys_corr_42: -0.20611153989793077 - sys_corr_43: -0.2436080422327453 - sys_corr_44: 0.29032614285520125 - sys_corr_45: -0.08560981537035806 - sys_corr_46: -0.16532409583089516 - sys_corr_47: -0.4781853504701339 - sys_corr_48: 0.576810395414542 - sys_corr_49: 0.026728160776358815 - sys_corr_50: -0.08203294470524843 - sys_corr_51: -0.105711986489073 - sys_corr_52: -0.0478321877812253 - sys_corr_53: 0.16379509656919858 - sys_corr_54: 0.4862852115965541 - sys_corr_55: 0.33823090472324 - sys_corr_56: 0.36656625191212305 - sys_corr_57: -0.2856458271254837 - sys_corr_58: -0.204362593821838 - sys_corr_59: 0.22207924347961033 - sys_corr_60: -0.07892669575037846 - sys_corr_61: 0.0007323429352252711 - sys_corr_62: -0.24425873361038936 - sys_corr_63: 0.11826608259379419 - sys_corr_64: 0.2426029052321001 - sys_corr_65: 0.37890334205170584 - sys_corr_66: -0.06360339114582156 - sys_corr_67: -0.1241225180815579 - sys_corr_68: 0.1472716837287635 - sys_corr_69: 0.3563200056569449 - sys_corr_70: -0.3723784392425827 - sys_corr_71: -0.000817421980087503 - sys_corr_72: 0.17095802124389825 - sys_corr_73: 0.658124731926595 - sys_corr_74: 0.09091843285339751 - sys_corr_75: -0.13453486503837256 - sys_corr_76: -0.15630845872780863 - sys_corr_77: 0.16083419303407287 - sys_corr_78: 0.4470709962825779 - sys_corr_79: 0.23643314568426357 - sys_corr_80: -0.20847984503004235 - sys_corr_81: -0.3948391374144694 - sys_corr_82: -0.05004518328385643 - sys_corr_83: 0.6484789436908673 - sys_corr_84: 3.7363269799437107 - sys_corr_85: 2.5260638951841874 - sys_corr_86: -0.37643079437321336 - sys_corr_87: 0.08246013834565338 - sys_corr_88: 0.2424062778564298 - sys_corr_89: 0.9266095812430282 - sys_corr_90: -0.03430687059113066 - sys_corr_91: 4.342941845065246 - sys_corr_92: 0.42100750895994504 - sys_corr_93: -0.4723558959495091 - sys_corr_94: 0.23057321776728565 - sys_corr_95: 0.30722516311300885 - sys_corr_96: -0.1980693622152754 - sys_corr_97: -0.28178862533367116 - sys_corr_98: 0.3657532237991672 - sys_corr_99: -0.4748949561101027 - sys_corr_100: 1.3922713006706313 - sys_corr_101: -0.7105233272306347 - sys_corr_102: 1.2709658276600593 - sys_corr_103: 0.20393563708942752 - sys_corr_104: 0.5558002335331967 - sys_corr_105: 2.229083326109482 - sys_corr_106: -0.9238149169544736 - sys_corr_107: 0.9177836500421739 - sys_corr_108: -1.5999861623612674 - sys_corr_109: 1.1399821645869648 - sys_corr_110: -0.35527469021779146 - sys_corr_111: -0.7684530640655898 - sys_corr_112: 0.7173039968837922 - sys_corr_113: -0.8852857936624337 - sys_corr_114: -0.000824739604088921 - sys_corr_115: 1.5837344790175054 - sys_corr_116: 1.3188476829721285 - sys_corr_117: -53.07972610528016 - sys_corr_118: -0.6428405542635058 - sys_corr_119: 0.028199475600695315 - sys_corr_120: 0.794145529322145 - sys_corr_121: -0.012621662793152548 - sys_corr_122: 0.2578828208195205 - sys_corr_123: 0.9964023217502899 - sys_corr_124: 4.167964881573715 - sys_corr_125: -1.957268113103565 - sys_corr_126: -0.05527177530664487 - sys_corr_127: -0.382194062561412 - sys_corr_128: 0.06372290154916256 - sys_corr_129: -0.2877822605044349 - sys_corr_130: -0.052511902197673044 - sys_corr_131: 2.0595172269994237 - sys_corr_132: 0.17439594008188436 +- sys_corr_1: 4.191792934787041 + sys_corr_2: 4.833168525633819 + sys_corr_3: -4.248849004613018 + sys_corr_4: 0.32832576720955076 + sys_corr_5: -3.329284650625996 + sys_corr_6: 1.3060307151765458 + sys_corr_7: 0.43852387866337134 + sys_corr_8: -0.9422983366557706 + sys_corr_9: -1.8068108693945921 + sys_corr_10: -0.6851241876630242 + sys_corr_11: -0.3621342780569267 + sys_corr_12: 0.23105882269764472 + sys_corr_13: 0.4308569960816015 + sys_corr_14: 0.19706866077346522 + sys_corr_15: 0.07913982710115547 + sys_corr_16: 0.435254189318095 + sys_corr_17: -0.3704329891219442 + sys_corr_18: 0.018370330136159817 + sys_corr_19: 0.2635372187585775 + sys_corr_20: 0.3793637967830809 + sys_corr_21: 0.10114404515424091 + sys_corr_22: 1.5759664287955888 + sys_corr_23: -0.020359034189113678 + sys_corr_24: -1.0064550859766306 + sys_corr_25: -0.6238492000521823 + sys_corr_26: -0.5647035401153847 + sys_corr_27: 0.10946530899728399 + sys_corr_28: -1.742781114937132 + sys_corr_29: 1.28616626946686 + sys_corr_30: 0.20235196701519023 + sys_corr_31: 1.1229207715499687 + sys_corr_32: -0.11914590485138443 + sys_corr_33: 0.19308016968307987 + sys_corr_34: -0.6554006826306592 + sys_corr_35: 0.10720496272802356 + sys_corr_36: -0.016988155656260783 + sys_corr_37: -0.3387121621264806 + sys_corr_38: -0.14345379043683418 + sys_corr_39: 0.36844776357551473 + sys_corr_40: -0.021939909047306 + sys_corr_41: 0.32236785915771826 + sys_corr_42: 0.2061115398980378 + sys_corr_43: -0.243608042232554 + sys_corr_44: 0.29032614285514957 + sys_corr_45: 0.0856098153705015 + sys_corr_46: 0.16532409583090002 + sys_corr_47: 0.4781853504702981 + sys_corr_48: -0.5768103954145911 + sys_corr_49: -0.026728160776488753 + sys_corr_50: -0.08203294470518328 + sys_corr_51: -0.10571198648907747 + sys_corr_52: -0.0478321877811464 + sys_corr_53: -0.16379509656925814 + sys_corr_54: -0.48628521159648075 + sys_corr_55: -0.3382309047230488 + sys_corr_56: -0.3665662519121087 + sys_corr_57: -0.2856458271252706 + sys_corr_58: 0.2043625938219225 + sys_corr_59: 0.22207924347946748 + sys_corr_60: 0.07892669575044903 + sys_corr_61: -0.0007323429352288965 + sys_corr_62: 0.24425873361035824 + sys_corr_63: 0.11826608259358051 + sys_corr_64: 0.2426029052322436 + sys_corr_65: 0.37890334205200144 + sys_corr_66: 0.06360339114569127 + sys_corr_67: -0.12412251808148105 + sys_corr_68: -0.14727168372855112 + sys_corr_69: 0.3563200056568592 + sys_corr_70: 0.37237843924244973 + sys_corr_71: -0.0008174219800654567 + sys_corr_72: -0.17095802124383946 + sys_corr_73: -0.658124731926669 + sys_corr_74: 0.09091843285341367 + sys_corr_75: -0.13453486503830694 + sys_corr_76: -0.15630845872776802 + sys_corr_77: -0.1608341930341878 + sys_corr_78: 0.20847984503008082 + sys_corr_79: 0.4470709962826201 + sys_corr_80: 0.23643314568414706 + sys_corr_81: 0.3948391374144712 + sys_corr_82: 0.05004518328384515 + sys_corr_83: 0.6484789436910724 + sys_corr_84: -3.7363269799439607 + sys_corr_85: 2.5260638951837726 + sys_corr_86: 0.3764307943738722 + sys_corr_87: -0.08246013834568908 + sys_corr_88: 0.24240627785610325 + sys_corr_89: -0.034306870591130585 + sys_corr_90: 0.9266095812430617 + sys_corr_91: 4.342941845065176 + sys_corr_92: -0.4210075089599197 + sys_corr_93: -0.47235589594962574 + sys_corr_94: 0.2305732177672062 + sys_corr_95: 0.3072251631129581 + sys_corr_96: 0.19806936221518176 + sys_corr_97: -0.28178862533359456 + sys_corr_98: -0.3657532237989543 + sys_corr_99: -0.47489495611008586 + sys_corr_100: -0.7105233272306783 + sys_corr_101: -1.2709658276601534 + sys_corr_102: 0.20393563708784943 + sys_corr_103: -0.5558002335332136 + sys_corr_104: -2.2290833261097727 + sys_corr_105: -1.3922713006709113 + sys_corr_106: -0.9238149169543969 + sys_corr_107: -1.5999861623611955 + sys_corr_108: 1.1399821645866925 + sys_corr_109: 0.35527469021780556 + sys_corr_110: -0.9177836500420908 + sys_corr_111: 0.7684530640655904 + sys_corr_112: 0.717303996883595 + sys_corr_113: 0.8852857936625224 + sys_corr_114: -0.0008247396040648729 + sys_corr_115: 1.5837344790183403 + sys_corr_116: -1.3188476829714446 + sys_corr_117: 53.079726105280436 + sys_corr_118: 0.6428405542648867 + sys_corr_119: -0.02819947560068092 + sys_corr_120: -0.7941455293203905 + sys_corr_121: 0.01262166279314881 + sys_corr_122: 0.9964023217502131 + sys_corr_123: 0.2578828208193855 + sys_corr_124: 4.16796488157387 + sys_corr_125: -1.957268113103418 + sys_corr_126: 0.055271775306620544 + sys_corr_127: -0.3821940625615818 + sys_corr_128: 0.06372290154911298 + sys_corr_129: -0.28778226050480876 + sys_corr_130: -0.0525119021976912 + sys_corr_131: -2.0595172269995112 + sys_corr_132: 0.1743959400816878 stat: 0.0 luminosity: 14.348884000000002 -- sys_corr_1: 2.969283685292737 +- sys_corr_1: 2.9692836852927416 sys_corr_2: 3.402454656846707 - sys_corr_3: -3.6388347412609434 - sys_corr_4: 0.11540864494630824 - sys_corr_5: -3.5673826746226687 - sys_corr_6: 0.5255200461173054 - sys_corr_7: 0.06136269898842732 - sys_corr_8: -0.5172965776434062 - sys_corr_9: -1.4238919364680158 - sys_corr_10: -0.15149929112951405 - sys_corr_11: -0.3567373946369796 - sys_corr_12: -0.07325476197808409 - sys_corr_13: -0.43754928841230223 - sys_corr_14: -0.15311204860295038 - sys_corr_15: -0.15259739371074552 - sys_corr_16: -0.21946951107680238 - sys_corr_17: -0.4567574994842526 - sys_corr_18: 0.17288344316219642 - sys_corr_19: -0.04079795753940261 - sys_corr_20: 0.4314793300103846 - sys_corr_21: -0.031318481317733515 - sys_corr_22: 1.3824409332604117 - sys_corr_23: 0.018911655378805004 - sys_corr_24: -0.9558617205139006 - sys_corr_25: -0.5488396860735371 - sys_corr_26: -0.5837339373583428 - sys_corr_27: 0.3852690004261525 - sys_corr_28: -1.6129000967761113 - sys_corr_29: 0.7452135414688772 - sys_corr_30: 0.0964294345707968 - sys_corr_31: 0.8955271870683559 - sys_corr_32: 0.09639096401099963 - sys_corr_33: -0.1915292782261971 - sys_corr_34: -0.4723215200895666 - sys_corr_35: 0.10941901017741454 - sys_corr_36: -0.0032753697430195185 - sys_corr_37: 0.11883012810880868 - sys_corr_38: 0.14461362085507604 - sys_corr_39: -0.302433280992888 - sys_corr_40: 0.06069690540156364 - sys_corr_41: 0.3812563878464715 - sys_corr_42: -0.16766978021049778 - sys_corr_43: -0.1865998716409908 - sys_corr_44: 0.19303360879702255 - sys_corr_45: -0.023131936866988643 - sys_corr_46: -0.15975360399807795 - sys_corr_47: -0.3449731177502912 - sys_corr_48: 0.608417044678927 - sys_corr_49: -0.13131792380623608 - sys_corr_50: -0.19318264062194843 - sys_corr_51: 0.09498207080351515 - sys_corr_52: -0.005673628127594826 - sys_corr_53: 0.14038885963023445 - sys_corr_54: 0.30372707012680905 - sys_corr_55: 0.2595484476829692 - sys_corr_56: 0.2779937113310116 - sys_corr_57: -0.2177846988416144 - sys_corr_58: -0.20406531341429654 - sys_corr_59: 0.13626136198337166 - sys_corr_60: -0.10983121216363458 - sys_corr_61: -0.08018146067040217 - sys_corr_62: -0.300660763961109 - sys_corr_63: 0.09157660086924498 - sys_corr_64: 0.16505260462506569 - sys_corr_65: 0.2534113246023108 - sys_corr_66: -0.022261883731604103 - sys_corr_67: -0.030884079651437437 - sys_corr_68: 0.1282799575051905 - sys_corr_69: 0.3147045440448735 - sys_corr_70: -0.3297053361039794 - sys_corr_71: -0.1304033805479781 - sys_corr_72: 0.2365463355718104 - sys_corr_73: 0.4618546027496835 - sys_corr_74: 0.1546250927067123 - sys_corr_75: -0.013627455265855234 - sys_corr_76: -0.026044875647937574 - sys_corr_77: 0.06031256060495744 - sys_corr_78: 0.48038092951037414 - sys_corr_79: 0.14095574594057578 - sys_corr_80: -0.20086504511668288 - sys_corr_81: -0.3780964080094152 - sys_corr_82: -0.04011290308738888 - sys_corr_83: 0.49276797850861115 - sys_corr_84: 2.867695420277401 - sys_corr_85: 1.8237643284732472 - sys_corr_86: -0.3412577104918296 - sys_corr_87: 0.0803372524682082 - sys_corr_88: 0.22978898690462327 - sys_corr_89: 0.7476290113618456 - sys_corr_90: -0.04797954736792155 - sys_corr_91: 3.3287171994193834 - sys_corr_92: 0.3092248897434901 - sys_corr_93: -0.24643733889933134 - sys_corr_94: 0.25936157767922785 - sys_corr_95: 0.33792429201563656 - sys_corr_96: -0.23284329463770037 - sys_corr_97: -1.078615403948104 - sys_corr_98: 0.7711206680049176 - sys_corr_99: 1.503524111341609 - sys_corr_100: 1.4370852622920645 - sys_corr_101: -0.8934873902152409 - sys_corr_102: 2.4733247033364307 - sys_corr_103: 1.6108780103090765 - sys_corr_104: 0.3836380019244182 - sys_corr_105: -0.31861472136897373 - sys_corr_106: -0.8797393443103843 - sys_corr_107: 0.6459028711230386 - sys_corr_108: -1.7166512740323108 - sys_corr_109: 1.158734324848162 - sys_corr_110: -0.19039255908958955 - sys_corr_111: -0.7049526087240037 - sys_corr_112: 0.7247322733544763 - sys_corr_113: -0.7199467469368046 - sys_corr_114: 0.0010934344751229212 - sys_corr_115: 1.5431111173696253 - sys_corr_116: -3.6563403809180794 - sys_corr_117: 1.190713614274312 - sys_corr_118: 0.4449078382315439 - sys_corr_119: 0.03226058941960268 - sys_corr_120: 46.64981460801827 - sys_corr_121: -0.05345037502064568 - sys_corr_122: 0.5229802603204656 - sys_corr_123: 1.7235054127445266 - sys_corr_124: 2.323619187143022 - sys_corr_125: -2.623137320422262 - sys_corr_126: -0.1264437699505219 - sys_corr_127: -1.4061457251785177 - sys_corr_128: -0.03988796673420726 - sys_corr_129: -0.281269658652464 - sys_corr_130: -0.10260031822912072 - sys_corr_131: -2.5936378096063946 - sys_corr_132: 0.027672497141359567 + sys_corr_3: -3.6388347412609474 + sys_corr_4: 0.115408644946304 + sys_corr_5: -3.5673826746226736 + sys_corr_6: 0.5255200461173075 + sys_corr_7: 0.061362698988419055 + sys_corr_8: -0.517296577643455 + sys_corr_9: -1.4238919364680218 + sys_corr_10: -0.15149929112944732 + sys_corr_11: -0.3567373946369759 + sys_corr_12: -0.07325476197806288 + sys_corr_13: 0.4375492884122911 + sys_corr_14: 0.1531120486029411 + sys_corr_15: 0.15259739371075423 + sys_corr_16: 0.21946951107681506 + sys_corr_17: -0.4567574994842595 + sys_corr_18: -0.1728834431621951 + sys_corr_19: -0.040797957539410616 + sys_corr_20: 0.43147933001038175 + sys_corr_21: -0.031318481317755074 + sys_corr_22: 1.3824409332604124 + sys_corr_23: 0.01891165537882461 + sys_corr_24: -0.9558617205139044 + sys_corr_25: -0.5488396860735657 + sys_corr_26: -0.583733937358321 + sys_corr_27: 0.3852690004261398 + sys_corr_28: -1.6129000967761207 + sys_corr_29: 0.7452135414688423 + sys_corr_30: 0.09642943457079442 + sys_corr_31: 0.8955271870683185 + sys_corr_32: -0.09639096401101167 + sys_corr_33: 0.19152927822613003 + sys_corr_34: -0.47232152008958667 + sys_corr_35: 0.10941901017732666 + sys_corr_36: -0.0032753697430345577 + sys_corr_37: -0.11883012810886819 + sys_corr_38: -0.14461362085502974 + sys_corr_39: 0.30243328099290034 + sys_corr_40: -0.060696905401612565 + sys_corr_41: 0.3812563878464805 + sys_corr_42: 0.16766978021060405 + sys_corr_43: -0.18659987164091532 + sys_corr_44: 0.19303360879697673 + sys_corr_45: 0.023131936867123937 + sys_corr_46: 0.1597536039981137 + sys_corr_47: 0.3449731177503723 + sys_corr_48: -0.6084170446789602 + sys_corr_49: 0.1313179238061046 + sys_corr_50: -0.1931826406219346 + sys_corr_51: 0.09498207080348846 + sys_corr_52: -0.005673628127575333 + sys_corr_53: -0.14038885963031064 + sys_corr_54: -0.3037270701267274 + sys_corr_55: -0.2595484476830317 + sys_corr_56: -0.2779937113310082 + sys_corr_57: -0.21778469884143536 + sys_corr_58: 0.20406531341439063 + sys_corr_59: 0.1362613619832188 + sys_corr_60: 0.10983121216362954 + sys_corr_61: 0.08018146067043257 + sys_corr_62: 0.30066076396103164 + sys_corr_63: 0.09157660086905421 + sys_corr_64: 0.16505260462514304 + sys_corr_65: 0.25341132460267257 + sys_corr_66: 0.022261883731514564 + sys_corr_67: -0.03088407965153444 + sys_corr_68: -0.12827995750489235 + sys_corr_69: 0.3147045440449338 + sys_corr_70: 0.32970533610380315 + sys_corr_71: -0.13040338054787243 + sys_corr_72: -0.23654633557171859 + sys_corr_73: -0.46185460274964224 + sys_corr_74: 0.15462509270684952 + sys_corr_75: -0.013627455265839765 + sys_corr_76: -0.026044875648047677 + sys_corr_77: -0.06031256060502372 + sys_corr_78: 0.20086504511680242 + sys_corr_79: 0.4803809295103174 + sys_corr_80: 0.14095574594054447 + sys_corr_81: 0.3780964080094625 + sys_corr_82: 0.04011290308725953 + sys_corr_83: 0.492767978508695 + sys_corr_84: -2.8676954202775247 + sys_corr_85: 1.8237643284728442 + sys_corr_86: 0.34125771049240633 + sys_corr_87: -0.08033725246824884 + sys_corr_88: 0.2297889869043055 + sys_corr_89: -0.047979547367907674 + sys_corr_90: 0.7476290113618005 + sys_corr_91: 3.3287171994194065 + sys_corr_92: -0.3092248897435037 + sys_corr_93: -0.2464373388993197 + sys_corr_94: 0.2593615776792171 + sys_corr_95: 0.3379242920155742 + sys_corr_96: 0.2328432946376042 + sys_corr_97: -1.0786154039478915 + sys_corr_98: -0.7711206680048341 + sys_corr_99: 1.5035241113416344 + sys_corr_100: -0.8934873902153516 + sys_corr_101: -2.4733247033370995 + sys_corr_102: 1.610878010307894 + sys_corr_103: -0.3836380019243063 + sys_corr_104: 0.31861472136870017 + sys_corr_105: -1.4370852622922503 + sys_corr_106: -0.879739344310402 + sys_corr_107: -1.7166512740322621 + sys_corr_108: 1.1587343248482675 + sys_corr_109: 0.19039255908976466 + sys_corr_110: -0.645902871123054 + sys_corr_111: 0.7049526087240101 + sys_corr_112: 0.7247322733544267 + sys_corr_113: 0.7199467469369965 + sys_corr_114: 0.00109343447514576 + sys_corr_115: 1.5431111173690357 + sys_corr_116: 3.6563403809179142 + sys_corr_117: -1.1907136142740418 + sys_corr_118: -0.444907838231502 + sys_corr_119: -0.03226058941958942 + sys_corr_120: -46.64981460801855 + sys_corr_121: 0.0534503750207585 + sys_corr_122: 1.7235054127449208 + sys_corr_123: 0.5229802603203335 + sys_corr_124: 2.3236191871428247 + sys_corr_125: -2.623137320422337 + sys_corr_126: 0.1264437699505411 + sys_corr_127: -1.4061457251786047 + sys_corr_128: -0.03988796673439171 + sys_corr_129: -0.28126965865229464 + sys_corr_130: -0.10260031822922434 + sys_corr_131: 2.5936378096062205 + sys_corr_132: 0.027672497141537168 stat: 0.0 luminosity: 11.475156 -- sys_corr_1: 2.0360649037270266 - sys_corr_2: 2.4884171208206642 - sys_corr_3: -4.721738989609721 - sys_corr_4: -0.2585431747640905 - sys_corr_5: -4.95266197368796 - sys_corr_6: -0.22233288740905507 - sys_corr_7: 0.5108360724619416 - sys_corr_8: -0.39597292548771235 - sys_corr_9: -1.0423127086423154 - sys_corr_10: -0.2205013416322559 - sys_corr_11: -0.050949392336926885 - sys_corr_12: -0.19254831077213594 - sys_corr_13: -0.6415031788012981 - sys_corr_14: -0.1983393876007186 - sys_corr_15: 0.04547251874489823 - sys_corr_16: -0.6082362027795541 - sys_corr_17: -0.1223301660573312 - sys_corr_18: 0.44707043065451296 - sys_corr_19: -0.13991656248412507 - sys_corr_20: 0.11358472567396315 - sys_corr_21: -0.13719319952646625 - sys_corr_22: 1.077685522166245 - sys_corr_23: 0.20394030689030407 - sys_corr_24: -1.0786043610697051 - sys_corr_25: -0.39803237470405733 - sys_corr_26: -0.7829924107029865 - sys_corr_27: 0.599412120130849 - sys_corr_28: -1.2740553338779061 - sys_corr_29: 0.5821766178812354 - sys_corr_30: -0.22285991482282538 - sys_corr_31: 1.1028251912060885 - sys_corr_32: 0.21109556057186396 - sys_corr_33: -0.2459481904539729 - sys_corr_34: -0.35806276307655643 - sys_corr_35: -0.01562030001970996 - sys_corr_36: -0.07474077031024659 - sys_corr_37: 0.11494009730477124 - sys_corr_38: 0.058420310568136256 - sys_corr_39: -0.30674054442337245 - sys_corr_40: 0.16925681256534233 - sys_corr_41: 0.41367940412534443 - sys_corr_42: -0.24484017372172462 - sys_corr_43: -0.14680285139514765 - sys_corr_44: 0.1807182433169719 - sys_corr_45: -0.018594963245241847 - sys_corr_46: -0.010914535714058596 - sys_corr_47: -0.267971423690318 - sys_corr_48: 0.6009700714118588 - sys_corr_49: -0.16028849110582494 - sys_corr_50: -0.252661408031602 - sys_corr_51: 0.3172409469824327 - sys_corr_52: -0.11128858207695592 - sys_corr_53: 0.09797015583283712 - sys_corr_54: 0.13514261773235517 - sys_corr_55: 0.2518773841565123 - sys_corr_56: 0.2618686874447112 - sys_corr_57: -0.13300188878422115 - sys_corr_58: -0.11863138941094828 - sys_corr_59: 0.06582701561502746 - sys_corr_60: -0.038584815343405056 - sys_corr_61: -0.17104725063208798 - sys_corr_62: -0.30554294466033577 - sys_corr_63: 0.14687843250450625 - sys_corr_64: 0.13312734950210245 - sys_corr_65: 0.15247443998863974 - sys_corr_66: -0.05573287037264721 - sys_corr_67: -0.09345065097033776 - sys_corr_68: 0.07887296956202963 - sys_corr_69: 0.3009061850015619 - sys_corr_70: -0.21152684571013597 - sys_corr_71: -0.0680387628925076 - sys_corr_72: 0.21264273665321168 - sys_corr_73: 0.4822005310325822 - sys_corr_74: 0.19185120313025347 - sys_corr_75: 0.06926954520807752 - sys_corr_76: 0.00027058460566460585 - sys_corr_77: 0.17133370736802855 - sys_corr_78: 0.4447231213301038 - sys_corr_79: 0.06990700327446957 - sys_corr_80: -0.2724317538591246 - sys_corr_81: -0.4200175557811139 - sys_corr_82: 0.12439836908327345 - sys_corr_83: 0.48774606576494917 - sys_corr_84: 2.721850846960168 - sys_corr_85: 1.6550343118708726 - sys_corr_86: -0.42832253800681586 - sys_corr_87: 0.034042666125031124 - sys_corr_88: 0.30866790730816984 - sys_corr_89: 0.6768348452104683 - sys_corr_90: 0.022849772368491086 - sys_corr_91: 3.134651457759899 - sys_corr_92: 0.24184110519401253 - sys_corr_93: -0.08899107273141768 - sys_corr_94: -0.007965890606210994 - sys_corr_95: 0.35567991947721006 - sys_corr_96: 0.006785710446482944 - sys_corr_97: -0.6531449027397314 - sys_corr_98: 0.2466917109616626 - sys_corr_99: -0.2973584332291473 - sys_corr_100: 2.6566534120308956 - sys_corr_101: -1.9239132772027556 - sys_corr_102: 0.57487961832391 - sys_corr_103: 1.1791014153229646 - sys_corr_104: 0.5941288682227243 - sys_corr_105: 0.6087907356015766 - sys_corr_106: -1.5041823896638296 - sys_corr_107: -1.0877768271732575 - sys_corr_108: -1.9774467439251449 - sys_corr_109: 1.2848898955564885 - sys_corr_110: -0.31523300738673515 - sys_corr_111: -0.872043488526162 - sys_corr_112: 0.8576033100033329 - sys_corr_113: -0.7570693395775266 - sys_corr_114: 0.00203463464366866 - sys_corr_115: 1.565604668644468 - sys_corr_116: -1.6582556614439805 - sys_corr_117: -2.6204565653567156 - sys_corr_118: 0.29050269005595486 - sys_corr_119: -0.0017173675072961589 - sys_corr_120: -3.2882121941733935 - sys_corr_121: -0.1715680953818336 - sys_corr_122: 1.3164792676659292 - sys_corr_123: 3.9375669580034676 - sys_corr_124: 1.499922748464184 - sys_corr_125: 3.548451964291977 - sys_corr_126: -0.3038942678025656 - sys_corr_127: 0.34615512661619224 - sys_corr_128: -0.15508632040898288 - sys_corr_129: -0.3328201867887469 - sys_corr_130: -0.24238218833923364 - sys_corr_131: -39.069447954527746 - sys_corr_132: 1.6307640722560865 +- sys_corr_1: 2.036064903727033 + sys_corr_2: 2.488417120820662 + sys_corr_3: -4.721738989609717 + sys_corr_4: -0.25854317476409955 + sys_corr_5: -4.952661973687966 + sys_corr_6: -0.2223328874090614 + sys_corr_7: 0.510836072461933 + sys_corr_8: -0.39597292548774066 + sys_corr_9: -1.0423127086423134 + sys_corr_10: -0.22050134163221383 + sys_corr_11: -0.05094939233693912 + sys_corr_12: -0.1925483107721342 + sys_corr_13: 0.641503178801291 + sys_corr_14: 0.19833938760070774 + sys_corr_15: -0.04547251874489047 + sys_corr_16: 0.6082362027795741 + sys_corr_17: -0.12233016605733867 + sys_corr_18: -0.4470704306545046 + sys_corr_19: -0.13991656248413778 + sys_corr_20: 0.11358472567394845 + sys_corr_21: -0.1371931995264687 + sys_corr_22: 1.0776855221662327 + sys_corr_23: 0.20394030689032175 + sys_corr_24: -1.0786043610697094 + sys_corr_25: -0.3980323747041399 + sys_corr_26: -0.7829924107029553 + sys_corr_27: 0.5994121201308168 + sys_corr_28: -1.2740553338778884 + sys_corr_29: 0.5821766178812313 + sys_corr_30: -0.2228599148228211 + sys_corr_31: 1.1028251912061036 + sys_corr_32: -0.21109556057192613 + sys_corr_33: 0.24594819045392036 + sys_corr_34: -0.3580627630765912 + sys_corr_35: -0.015620300019804745 + sys_corr_36: -0.07474077031022615 + sys_corr_37: -0.11494009730484377 + sys_corr_38: -0.0584203105680854 + sys_corr_39: 0.30674054442340953 + sys_corr_40: -0.16925681256543154 + sys_corr_41: 0.4136794041253051 + sys_corr_42: 0.24484017372183783 + sys_corr_43: -0.14680285139502122 + sys_corr_44: 0.1807182433169295 + sys_corr_45: 0.018594963245359537 + sys_corr_46: 0.01091453571411915 + sys_corr_47: 0.26797142369031846 + sys_corr_48: -0.6009700714119088 + sys_corr_49: 0.16028849110569307 + sys_corr_50: -0.2526614080315716 + sys_corr_51: 0.31724094698242894 + sys_corr_52: -0.11128858207699785 + sys_corr_53: -0.0979701558328849 + sys_corr_54: -0.13514261773227287 + sys_corr_55: -0.25187738415655037 + sys_corr_56: -0.26186868744470576 + sys_corr_57: -0.1330018887839989 + sys_corr_58: 0.11863138941095544 + sys_corr_59: 0.06582701561500526 + sys_corr_60: 0.03858481534350498 + sys_corr_61: 0.1710472506320707 + sys_corr_62: 0.30554294466016396 + sys_corr_63: 0.14687843250429997 + sys_corr_64: 0.13312734950211594 + sys_corr_65: 0.15247443998882537 + sys_corr_66: 0.05573287037259924 + sys_corr_67: -0.09345065097039293 + sys_corr_68: -0.07887296956186192 + sys_corr_69: 0.30090618500155814 + sys_corr_70: 0.21152684571007704 + sys_corr_71: -0.06803876289234466 + sys_corr_72: -0.21264273665318315 + sys_corr_73: -0.48220053103250926 + sys_corr_74: 0.19185120313020296 + sys_corr_75: 0.06926954520810402 + sys_corr_76: 0.0002705846057200113 + sys_corr_77: -0.17133370736803713 + sys_corr_78: 0.272431753859286 + sys_corr_79: 0.4447231213301466 + sys_corr_80: 0.06990700327435584 + sys_corr_81: 0.42001755578113276 + sys_corr_82: -0.12439836908339115 + sys_corr_83: 0.4877460657649672 + sys_corr_84: -2.7218508469602893 + sys_corr_85: 1.6550343118704678 + sys_corr_86: 0.42832253800759673 + sys_corr_87: -0.034042666125162505 + sys_corr_88: 0.30866790730772825 + sys_corr_89: 0.022849772368508107 + sys_corr_90: 0.6768348452103575 + sys_corr_91: 3.1346514577598654 + sys_corr_92: -0.2418411051941276 + sys_corr_93: -0.08899107273151734 + sys_corr_94: -0.007965890606218119 + sys_corr_95: 0.3556799194772249 + sys_corr_96: -0.006785710446666995 + sys_corr_97: -0.6531449027397443 + sys_corr_98: -0.24669171096159753 + sys_corr_99: -0.2973584332290618 + sys_corr_100: -1.923913277202963 + sys_corr_101: -0.5748796183244156 + sys_corr_102: 1.1791014153220796 + sys_corr_103: -0.5941288682227561 + sys_corr_104: -0.6087907356017713 + sys_corr_105: -2.6566534120312877 + sys_corr_106: -1.5041823896637339 + sys_corr_107: -1.977446743924999 + sys_corr_108: 1.2848898955565249 + sys_corr_109: 0.31523300738691445 + sys_corr_110: 1.0877768271730757 + sys_corr_111: 0.8720434885260241 + sys_corr_112: 0.8576033100032653 + sys_corr_113: 0.7570693395773671 + sys_corr_114: 0.0020346346437056487 + sys_corr_115: 1.5656046686443503 + sys_corr_116: 1.6582556614438888 + sys_corr_117: 2.620456565356242 + sys_corr_118: -0.2905026900563152 + sys_corr_119: 0.0017173675073520807 + sys_corr_120: 3.288212194172763 + sys_corr_121: 0.17156809538181322 + sys_corr_122: 3.9375669580042265 + sys_corr_123: 1.3164792676662056 + sys_corr_124: 1.4999227484643733 + sys_corr_125: 3.5484519642907992 + sys_corr_126: 0.3038942678027583 + sys_corr_127: 0.34615512661605397 + sys_corr_128: -0.15508632040899514 + sys_corr_129: -0.33282018678883385 + sys_corr_130: -0.2423821883393316 + sys_corr_131: 39.06944795452806 + sys_corr_132: 1.63076407225576 stat: 0.0 luminosity: 11.739090000000001 -- sys_corr_1: 1.792333471054346 - sys_corr_2: 2.348417980578817 - sys_corr_3: -4.993849811639786 - sys_corr_4: 0.3765542517605611 - sys_corr_5: -5.46580327721873 - sys_corr_6: -0.589692734324571 - sys_corr_7: 0.4279638250967442 - sys_corr_8: -0.3374456155644964 - sys_corr_9: -0.614108183855165 - sys_corr_10: -0.12262414031456387 - sys_corr_11: -0.1393584885675819 - sys_corr_12: -0.10376155282023047 - sys_corr_13: -0.5847918042003137 - sys_corr_14: -0.3839810224448608 - sys_corr_15: 0.12272669843914641 - sys_corr_16: -0.23602759162722484 - sys_corr_17: -0.10446555874570775 - sys_corr_18: 0.13264258325901068 - sys_corr_19: -0.5319782892828882 - sys_corr_20: 0.1179064333911711 - sys_corr_21: -0.017997447417815834 - sys_corr_22: 0.9863947496895492 - sys_corr_23: 0.16961235446777242 - sys_corr_24: -1.291377147318184 - sys_corr_25: -1.1939928785296294 - sys_corr_26: -1.0506387147040637 - sys_corr_27: 0.4209355308062567 - sys_corr_28: -0.7520948283891778 - sys_corr_29: 0.8414058680303466 - sys_corr_30: -0.4762556915516221 - sys_corr_31: 1.4706195931756965 - sys_corr_32: 0.2345314784935975 - sys_corr_33: -0.25322174380742646 - sys_corr_34: -0.5133880433728125 - sys_corr_35: 0.01858769612638043 - sys_corr_36: -0.12216700127795505 - sys_corr_37: -0.017320434812532853 - sys_corr_38: 0.08671235816522659 - sys_corr_39: -0.23669706684426056 - sys_corr_40: 0.23482833675534728 - sys_corr_41: 0.5744006122661581 - sys_corr_42: -0.3952686853269986 - sys_corr_43: -0.1824744125356589 - sys_corr_44: 0.2789612790488224 - sys_corr_45: 0.09227644473404634 - sys_corr_46: -0.011008646404584637 - sys_corr_47: -0.22456551700874072 - sys_corr_48: 0.5725793186236054 - sys_corr_49: -0.23030705401775525 - sys_corr_50: -0.5075365800759182 - sys_corr_51: 0.6603734549251928 - sys_corr_52: -0.2391930675916595 - sys_corr_53: 0.11107346457168976 - sys_corr_54: -0.1955513209187514 - sys_corr_55: 0.3530719100476272 - sys_corr_56: 0.4141712249626953 - sys_corr_57: -0.10354444002805507 - sys_corr_58: -0.20024898001779035 - sys_corr_59: 0.06468327112248862 - sys_corr_60: -0.22041461044646327 - sys_corr_61: -0.24376195185386984 - sys_corr_62: -0.339212343144758 - sys_corr_63: 0.2625761298118876 - sys_corr_64: 0.19539540584468248 - sys_corr_65: 0.13676945419613182 - sys_corr_66: -0.019774159281965076 - sys_corr_67: -0.05655627911346212 - sys_corr_68: 0.005437615798044981 - sys_corr_69: 0.40469578120637817 - sys_corr_70: -0.27916406721574477 - sys_corr_71: -0.09093999898077279 - sys_corr_72: 0.4332563030886168 - sys_corr_73: 0.5084537965640921 - sys_corr_74: 0.3613173070767292 - sys_corr_75: 0.30677689646849043 - sys_corr_76: 0.06756164709114068 - sys_corr_77: 0.3281807748007069 - sys_corr_78: 0.4985051467802827 - sys_corr_79: 0.17042554640723995 - sys_corr_80: -0.4000873692145238 - sys_corr_81: -0.4791321046578757 - sys_corr_82: 0.17647995106266098 - sys_corr_83: 0.56792236303807 - sys_corr_84: 3.0659005264612604 - sys_corr_85: 1.787111694852657 - sys_corr_86: -0.5009222924401783 - sys_corr_87: -0.022209300851662204 - sys_corr_88: 0.3371179653980681 - sys_corr_89: 0.776646167759396 - sys_corr_90: 0.05738993748231868 - sys_corr_91: 3.5673448944605792 - sys_corr_92: 0.4019994036571612 - sys_corr_93: -0.20729078857938157 - sys_corr_94: -0.3875230209137862 - sys_corr_95: 0.522235442055372 - sys_corr_96: -0.05748195040211377 - sys_corr_97: 0.1161940259779423 - sys_corr_98: -0.27400403106418514 - sys_corr_99: 0.41102133006991387 - sys_corr_100: 1.8566190720023423 - sys_corr_101: 0.36858127987865 - sys_corr_102: 1.1412046143261891 - sys_corr_103: 0.8929295444660822 - sys_corr_104: 0.6089962517986715 - sys_corr_105: 0.7137984370410829 - sys_corr_106: -3.3868475548184516 - sys_corr_107: -0.3476399200899547 - sys_corr_108: -4.919856533410857 - sys_corr_109: 1.8326092854353206 - sys_corr_110: -0.6933820549003069 - sys_corr_111: -1.3512979406573624 - sys_corr_112: 0.9242629468496704 - sys_corr_113: -1.4749795252277202 - sys_corr_114: -0.0032283599915075623 - sys_corr_115: 2.591915336977012 - sys_corr_116: -1.3883498441663988 - sys_corr_117: -1.8276168534939774 - sys_corr_118: -0.7802300558613522 - sys_corr_119: -0.13625134260288504 - sys_corr_120: 2.956489211790835 - sys_corr_121: -0.41801267427095823 - sys_corr_122: 3.4194086404012136 - sys_corr_123: 3.6148703025389994 - sys_corr_124: 1.3153201489040025 - sys_corr_125: 35.97952120574059 - sys_corr_126: -0.9712803108744709 - sys_corr_127: -0.11594489043577925 - sys_corr_128: -0.15018022858907693 - sys_corr_129: -0.1457114556024623 - sys_corr_130: -0.37325031183574237 - sys_corr_131: 4.793278250400349 - sys_corr_132: 0.5638050830458665 +- sys_corr_1: 1.7923334710543466 + sys_corr_2: 2.348417980578816 + sys_corr_3: -4.993849811639793 + sys_corr_4: 0.37655425176055335 + sys_corr_5: -5.465803277218736 + sys_corr_6: -0.5896927343245729 + sys_corr_7: 0.42796382509674036 + sys_corr_8: -0.337445615564508 + sys_corr_9: -0.6141081838551637 + sys_corr_10: -0.12262414031453253 + sys_corr_11: -0.13935848856759261 + sys_corr_12: -0.10376155282023082 + sys_corr_13: 0.5847918042003023 + sys_corr_14: 0.3839810224448604 + sys_corr_15: -0.1227266984391385 + sys_corr_16: 0.2360275916272429 + sys_corr_17: -0.10446555874571885 + sys_corr_18: -0.1326425832590036 + sys_corr_19: -0.5319782892828947 + sys_corr_20: 0.11790643339117408 + sys_corr_21: -0.017997447417811934 + sys_corr_22: 0.9863947496895441 + sys_corr_23: 0.16961235446779607 + sys_corr_24: -1.2913771473181903 + sys_corr_25: -1.1939928785296752 + sys_corr_26: -1.0506387147040193 + sys_corr_27: 0.4209355308062415 + sys_corr_28: -0.7520948283891694 + sys_corr_29: 0.8414058680303415 + sys_corr_30: -0.4762556915516084 + sys_corr_31: 1.4706195931757076 + sys_corr_32: -0.2345314784936675 + sys_corr_33: 0.25322174380737256 + sys_corr_34: -0.5133880433728516 + sys_corr_35: 0.018587696126268836 + sys_corr_36: -0.12216700127791584 + sys_corr_37: 0.017320434812454766 + sys_corr_38: -0.08671235816520617 + sys_corr_39: 0.2366970668443342 + sys_corr_40: -0.23482833675540674 + sys_corr_41: 0.5744006122661429 + sys_corr_42: 0.3952686853271279 + sys_corr_43: -0.18247441253548277 + sys_corr_44: 0.27896127904875984 + sys_corr_45: -0.09227644473396608 + sys_corr_46: 0.011008646404682769 + sys_corr_47: 0.2245655170087489 + sys_corr_48: -0.5725793186236916 + sys_corr_49: 0.23030705401765467 + sys_corr_50: -0.5075365800758899 + sys_corr_51: 0.6603734549251044 + sys_corr_52: -0.23919306759172793 + sys_corr_53: -0.1110734645716919 + sys_corr_54: 0.19555132091889676 + sys_corr_55: -0.3530719100478161 + sys_corr_56: -0.41417122496272174 + sys_corr_57: -0.10354444002774707 + sys_corr_58: 0.20024898001782104 + sys_corr_59: 0.06468327112236481 + sys_corr_60: 0.22041461044658311 + sys_corr_61: 0.24376195185383878 + sys_corr_62: 0.33921234314466103 + sys_corr_63: 0.2625761298117802 + sys_corr_64: 0.19539540584475934 + sys_corr_65: 0.13676945419637812 + sys_corr_66: 0.019774159281924636 + sys_corr_67: -0.056556279113509536 + sys_corr_68: -0.005437615797820636 + sys_corr_69: 0.40469578120646404 + sys_corr_70: 0.2791640672154966 + sys_corr_71: -0.09093999898066663 + sys_corr_72: -0.43325630308860413 + sys_corr_73: -0.5084537965640805 + sys_corr_74: 0.36131730707656085 + sys_corr_75: 0.3067768964684106 + sys_corr_76: 0.06756164709136556 + sys_corr_77: -0.32818077480065255 + sys_corr_78: 0.40008736921466576 + sys_corr_79: 0.49850514678027064 + sys_corr_80: 0.17042554640719404 + sys_corr_81: 0.479132104657875 + sys_corr_82: -0.17647995106267408 + sys_corr_83: 0.5679223630382182 + sys_corr_84: -3.0659005264614425 + sys_corr_85: 1.7871116948521757 + sys_corr_86: 0.5009222924413316 + sys_corr_87: 0.0222093008517552 + sys_corr_88: 0.3371179653975519 + sys_corr_89: 0.05738993748235571 + sys_corr_90: 0.7766461677593279 + sys_corr_91: 3.567344894460436 + sys_corr_92: -0.4019994036572862 + sys_corr_93: -0.20729078857929437 + sys_corr_94: -0.38752302091374463 + sys_corr_95: 0.5222354420552408 + sys_corr_96: 0.05748195040195857 + sys_corr_97: 0.11619402597796087 + sys_corr_98: 0.27400403106422 + sys_corr_99: 0.4110213300698524 + sys_corr_100: 0.3685812798784289 + sys_corr_101: -1.1412046143268315 + sys_corr_102: 0.8929295444649233 + sys_corr_103: -0.6089962517987895 + sys_corr_104: -0.7137984370412717 + sys_corr_105: -1.8566190720031202 + sys_corr_106: -3.3868475548185546 + sys_corr_107: -4.919856533410843 + sys_corr_108: 1.8326092854356355 + sys_corr_109: 0.6933820549005948 + sys_corr_110: 0.3476399200900702 + sys_corr_111: 1.3512979406572412 + sys_corr_112: 0.9242629468496638 + sys_corr_113: 1.4749795252273905 + sys_corr_114: -0.0032283599914749075 + sys_corr_115: 2.5919153369769847 + sys_corr_116: 1.3883498441662383 + sys_corr_117: 1.8276168534941706 + sys_corr_118: 0.7802300558614004 + sys_corr_119: 0.1362513426030609 + sys_corr_120: -2.9564892117896187 + sys_corr_121: 0.41801267427100347 + sys_corr_122: 3.6148703025406728 + sys_corr_123: 3.41940864040134 + sys_corr_124: 1.3153201489038466 + sys_corr_125: 35.97952120574051 + sys_corr_126: 0.9712803108742089 + sys_corr_127: -0.11594489043571302 + sys_corr_128: -0.15018022858901545 + sys_corr_129: -0.14571145560259452 + sys_corr_130: -0.37325031183600965 + sys_corr_131: -4.7932782503993945 + sys_corr_132: 0.5638050830471122 stat: 0.0 luminosity: 11.594990000000001 -- sys_corr_1: 2.6673118852848186 - sys_corr_2: 2.4611156823906994 - sys_corr_3: -3.594831696853627 - sys_corr_4: 2.1057524527034586 - sys_corr_5: -4.039667174002356 - sys_corr_6: -0.7893921191876593 - sys_corr_7: 0.07934460724218001 - sys_corr_8: -0.20888388026427546 - sys_corr_9: 0.038217182559536454 - sys_corr_10: 0.08006110191147159 - sys_corr_11: 0.35131332274564164 - sys_corr_12: 0.343605286556817 - sys_corr_13: -0.15241221989443215 - sys_corr_14: -0.017007009867831758 - sys_corr_15: -0.20266205982908284 - sys_corr_16: -0.46980639518985334 - sys_corr_17: 0.018427471500633594 - sys_corr_18: 0.6024855670360716 - sys_corr_19: 0.07489935782852018 - sys_corr_20: 0.07698771402668207 - sys_corr_21: 0.12542087716179132 - sys_corr_22: 0.5536182135743373 - sys_corr_23: 0.049620202279032036 - sys_corr_24: -1.5189912347832162 - sys_corr_25: -1.1658159544916011 - sys_corr_26: -2.108593675124816 - sys_corr_27: -0.36852535277004117 - sys_corr_28: 0.1776518119097486 - sys_corr_29: 1.3283304912603116 - sys_corr_30: -0.9584771117854187 - sys_corr_31: 2.035092959578115 - sys_corr_32: 0.34248209264503593 - sys_corr_33: -0.3643550357508278 - sys_corr_34: -0.5600475058212292 - sys_corr_35: -0.12925178739643148 - sys_corr_36: -0.2651588210716933 - sys_corr_37: -0.11008684472687541 - sys_corr_38: 0.0511939699171539 - sys_corr_39: -0.30663326374025723 - sys_corr_40: 0.25025194997191813 - sys_corr_41: 0.757006318705772 - sys_corr_42: -0.48814557495608 - sys_corr_43: -0.15372827478917564 - sys_corr_44: 0.5267211749215519 - sys_corr_45: 0.22393380570665822 - sys_corr_46: 0.16966711892164787 - sys_corr_47: 0.05894563938301233 - sys_corr_48: 0.32153740494516514 - sys_corr_49: -0.3323687560542914 - sys_corr_50: -1.0754521366758723 - sys_corr_51: 1.3127367686798637 - sys_corr_52: -0.5544025254027312 - sys_corr_53: 0.13279725224151787 - sys_corr_54: -0.6198532285517954 - sys_corr_55: 0.40909150622393914 - sys_corr_56: 0.7136456721731447 - sys_corr_57: -0.10919947790601219 - sys_corr_58: -0.2704635938141053 - sys_corr_59: 0.08406632767466489 - sys_corr_60: -0.4286506693202887 - sys_corr_61: -0.3167748897686989 - sys_corr_62: -0.4015089740238079 - sys_corr_63: 0.33606854972443456 - sys_corr_64: 0.18178553751756296 - sys_corr_65: -0.008520955292379706 - sys_corr_66: 0.0010483233566465288 - sys_corr_67: 0.17525224086774285 - sys_corr_68: -0.03327363635777326 - sys_corr_69: 0.4288953340369956 - sys_corr_70: -0.24813431985268655 - sys_corr_71: -0.13615341119703966 - sys_corr_72: 0.35165836992052374 - sys_corr_73: 0.6082346045542367 - sys_corr_74: 0.6177989102243461 - sys_corr_75: 0.5092847120707027 - sys_corr_76: 0.16023511087840786 - sys_corr_77: 0.632215433954892 - sys_corr_78: 0.6466119955725778 - sys_corr_79: -0.04360714961924795 - sys_corr_80: -0.6038565122057082 - sys_corr_81: -0.6275963176247437 - sys_corr_82: 0.15789700361139447 - sys_corr_83: 0.6258044833280495 - sys_corr_84: 2.968967416612858 - sys_corr_85: 1.4701271259981759 - sys_corr_86: -0.5754148353555668 - sys_corr_87: -0.10119288305848179 - sys_corr_88: 0.40960078499288444 - sys_corr_89: 0.7698999919564731 - sys_corr_90: 0.04135057767227123 +- sys_corr_1: 2.667311885284818 + sys_corr_2: 2.4611156823907008 + sys_corr_3: -3.594831696853629 + sys_corr_4: 2.1057524527034572 + sys_corr_5: -4.039667174002368 + sys_corr_6: -0.7893921191876635 + sys_corr_7: 0.07934460724218514 + sys_corr_8: -0.20888388026426827 + sys_corr_9: 0.03821718255953834 + sys_corr_10: 0.08006110191144375 + sys_corr_11: 0.35131332274568955 + sys_corr_12: 0.3436052865567995 + sys_corr_13: 0.15241221989442408 + sys_corr_14: 0.017007009867805626 + sys_corr_15: 0.202662059829087 + sys_corr_16: 0.46980639518996964 + sys_corr_17: 0.01842747150066345 + sys_corr_18: -0.6024855670360691 + sys_corr_19: 0.07489935782849794 + sys_corr_20: 0.07698771402671237 + sys_corr_21: 0.12542087716175856 + sys_corr_22: 0.5536182135743286 + sys_corr_23: 0.04962020227903995 + sys_corr_24: -1.51899123478324 + sys_corr_25: -1.1658159544917297 + sys_corr_26: -2.1085936751246663 + sys_corr_27: -0.36852535277014115 + sys_corr_28: 0.1776518119097857 + sys_corr_29: 1.3283304912603504 + sys_corr_30: -0.9584771117854285 + sys_corr_31: 2.0350929595781655 + sys_corr_32: -0.34248209264514534 + sys_corr_33: 0.36435503575074674 + sys_corr_34: -0.5600475058213401 + sys_corr_35: -0.1292517873966085 + sys_corr_36: -0.26515882107162836 + sys_corr_37: 0.11008684472679053 + sys_corr_38: -0.0511939699171501 + sys_corr_39: 0.306633263740397 + sys_corr_40: -0.25025194997203365 + sys_corr_41: 0.7570063187057533 + sys_corr_42: 0.48814557495625066 + sys_corr_43: -0.15372827478897616 + sys_corr_44: 0.5267211749216053 + sys_corr_45: -0.2239338057066728 + sys_corr_46: -0.1696671189214286 + sys_corr_47: -0.058945639382950395 + sys_corr_48: -0.3215374049453013 + sys_corr_49: 0.3323687560542337 + sys_corr_50: -1.0754521366758993 + sys_corr_51: 1.3127367686797466 + sys_corr_52: -0.5544025254029304 + sys_corr_53: -0.13279725224144692 + sys_corr_54: 0.6198532285520606 + sys_corr_55: -0.4090915062242333 + sys_corr_56: -0.7136456721733522 + sys_corr_57: -0.10919947790568388 + sys_corr_58: 0.27046359381417195 + sys_corr_59: 0.08406632767449727 + sys_corr_60: 0.42865066932037243 + sys_corr_61: 0.316774889768726 + sys_corr_62: 0.40150897402381586 + sys_corr_63: 0.3360685497243664 + sys_corr_64: 0.18178553751763754 + sys_corr_65: -0.008520955292217861 + sys_corr_66: -0.0010483233567575802 + sys_corr_67: 0.17525224086758848 + sys_corr_68: 0.033273636357936405 + sys_corr_69: 0.42889533403695107 + sys_corr_70: 0.2481343198524555 + sys_corr_71: -0.13615341119703175 + sys_corr_72: -0.35165836992048827 + sys_corr_73: -0.6082346045541315 + sys_corr_74: 0.6177989102244061 + sys_corr_75: 0.5092847120703764 + sys_corr_76: 0.1602351108786397 + sys_corr_77: -0.6322154339547698 + sys_corr_78: 0.6038565122058356 + sys_corr_79: 0.6466119955725227 + sys_corr_80: -0.04360714961921877 + sys_corr_81: 0.6275963176246913 + sys_corr_82: -0.15789700361135978 + sys_corr_83: 0.6258044833282731 + sys_corr_84: -2.9689674166130753 + sys_corr_85: 1.4701271259978037 + sys_corr_86: 0.5754148353565873 + sys_corr_87: 0.10119288305856838 + sys_corr_88: 0.40960078499233327 + sys_corr_89: 0.04135057767219217 + sys_corr_90: 0.7698999919565501 sys_corr_91: 3.4938767226015175 - sys_corr_92: 0.2916926755234401 - sys_corr_93: -0.4648178933861753 - sys_corr_94: -0.880543568225964 - sys_corr_95: 0.7887322320753546 - sys_corr_96: -0.15698981700553208 - sys_corr_97: 0.975453642125036 - sys_corr_98: -0.7321746480664584 - sys_corr_99: 0.7827139718690912 - sys_corr_100: 3.315573708913696 - sys_corr_101: -1.0639507436220155 - sys_corr_102: 1.8749794557690205 - sys_corr_103: 1.3689338933609942 - sys_corr_104: 0.9456990509082497 - sys_corr_105: 1.598459884023302 - sys_corr_106: -1.708256812404197 - sys_corr_107: -0.6379315089109167 - sys_corr_108: -5.506057360739551 - sys_corr_109: 4.699804677344106 - sys_corr_110: -1.0172110469777582 - sys_corr_111: -4.51659309845562 - sys_corr_112: 1.8929226695083672 - sys_corr_113: -2.3078336041343186 - sys_corr_114: -0.046585049076349735 - sys_corr_115: 2.9551843482322284 - sys_corr_116: -0.7132516794266482 - sys_corr_117: -1.243877653830509 - sys_corr_118: -1.8425773871487483 - sys_corr_119: -0.5742346718451845 - sys_corr_120: 1.4952411017231935 - sys_corr_121: -1.6155524282393072 - sys_corr_122: 10.121842204098344 - sys_corr_123: -27.467260107051917 - sys_corr_124: 0.9078585912244259 - sys_corr_125: 1.4049235794937434 - sys_corr_126: -4.609716910937319 - sys_corr_127: -0.16173257509602762 - sys_corr_128: -1.6823931748482401 - sys_corr_129: 0.3182821053412301 - sys_corr_130: -1.3237524988391065 - sys_corr_131: -3.2130877400808875 - sys_corr_132: -0.1267849532726155 + sys_corr_92: -0.29169267552365924 + sys_corr_93: -0.4648178933861826 + sys_corr_94: -0.8805435682260252 + sys_corr_95: 0.7887322320754018 + sys_corr_96: 0.15698981700566086 + sys_corr_97: 0.975453642125135 + sys_corr_98: 0.7321746480664825 + sys_corr_99: 0.782713971869152 + sys_corr_100: -1.0639507436222768 + sys_corr_101: -1.8749794557698531 + sys_corr_102: 1.3689338933588056 + sys_corr_103: -0.9456990509083054 + sys_corr_104: -1.5984598840237463 + sys_corr_105: -3.315573708914267 + sys_corr_106: -1.7082568124042767 + sys_corr_107: -5.506057360739507 + sys_corr_108: 4.6998046773443285 + sys_corr_109: 1.0172110469779128 + sys_corr_110: 0.6379315089110011 + sys_corr_111: 4.516593098455759 + sys_corr_112: 1.8929226695082932 + sys_corr_113: 2.3078336041342418 + sys_corr_114: -0.04658504907632649 + sys_corr_115: 2.9551843482319833 + sys_corr_116: 0.7132516794267785 + sys_corr_117: 1.2438776538300444 + sys_corr_118: 1.8425773871481381 + sys_corr_119: 0.5742346718448164 + sys_corr_120: -1.495241101723147 + sys_corr_121: 1.6155524282393277 + sys_corr_122: -27.467260107052812 + sys_corr_123: 10.121842204101144 + sys_corr_124: 0.9078585912245193 + sys_corr_125: 1.4049235794952997 + sys_corr_126: 4.609716910937167 + sys_corr_127: -0.1617325750960411 + sys_corr_128: -1.682393174848455 + sys_corr_129: 0.3182821053411769 + sys_corr_130: -1.323752498840208 + sys_corr_131: 3.213087740080387 + sys_corr_132: -0.12678495327269418 stat: 0.0 luminosity: 10.468546000000002 -- sys_corr_1: 1.9793337306879004 - sys_corr_2: 2.0686359210441445 - sys_corr_3: -2.414715669653534 +- sys_corr_1: 1.9793337306878955 + sys_corr_2: 2.068635921044144 + sys_corr_3: -2.414715669653532 sys_corr_4: 2.747984875686236 - sys_corr_5: -2.97915875801601 - sys_corr_6: -1.1439821753377915 - sys_corr_7: -0.17795085344735662 - sys_corr_8: -0.1375997715077518 - sys_corr_9: 0.4529372348336267 - sys_corr_10: 0.3672942522318029 - sys_corr_11: 0.413711040010529 - sys_corr_12: 0.5197762835458822 - sys_corr_13: 0.12773603282343715 - sys_corr_14: -0.3888613745927461 - sys_corr_15: -0.15795354312605933 - sys_corr_16: -0.41460806588913435 - sys_corr_17: 0.28947078711096624 - sys_corr_18: 0.3845520749027674 - sys_corr_19: -0.8103187394568796 - sys_corr_20: 0.20522828697077325 - sys_corr_21: -0.039677379170134745 - sys_corr_22: 0.3873092125655328 - sys_corr_23: -0.28101966209511064 - sys_corr_24: -1.4528111044312786 - sys_corr_25: -1.061423442284601 - sys_corr_26: -2.3850618357673556 - sys_corr_27: -0.31778847078491146 - sys_corr_28: 0.6251476657541918 - sys_corr_29: 1.3016607020555444 - sys_corr_30: -1.3057356399987372 - sys_corr_31: 2.0031219016943456 - sys_corr_32: 0.4217192043404497 - sys_corr_33: -0.39169848634907 - sys_corr_34: -0.5648163311023583 - sys_corr_35: -0.0748217122809473 - sys_corr_36: -0.2723024627235143 - sys_corr_37: -0.24722050818523608 - sys_corr_38: -0.03135459275874231 - sys_corr_39: -0.3082508901366164 - sys_corr_40: 0.21880624504266555 - sys_corr_41: 0.7377887545043649 - sys_corr_42: -0.468379894514932 - sys_corr_43: -0.06457071006312289 - sys_corr_44: 0.5226751969563725 - sys_corr_45: 0.347994267991561 - sys_corr_46: 0.14137784722838728 - sys_corr_47: 0.13834920669350617 - sys_corr_48: 0.23250674420467224 - sys_corr_49: -0.39951820102198815 - sys_corr_50: -1.2162039703980791 - sys_corr_51: 1.4648343955091851 - sys_corr_52: -0.689897050884906 - sys_corr_53: 0.13449551735585163 - sys_corr_54: -0.8286008654064096 - sys_corr_55: 0.3617701025010072 - sys_corr_56: 0.6892250924562294 - sys_corr_57: -0.08583871935633902 - sys_corr_58: -0.17843708338317454 - sys_corr_59: 0.08843252729113883 - sys_corr_60: -0.4953911689722526 - sys_corr_61: -0.41222951189547113 - sys_corr_62: -0.39369577318552923 - sys_corr_63: 0.3929732588936486 - sys_corr_64: 0.12770514400624358 - sys_corr_65: -0.10920394295549056 - sys_corr_66: 0.09270765119099217 - sys_corr_67: 0.20382564065618142 - sys_corr_68: -0.10763798649426927 - sys_corr_69: 0.42115215966897646 - sys_corr_70: -0.228272550342517 - sys_corr_71: -0.20211022891800193 - sys_corr_72: 0.3973556750863229 - sys_corr_73: 0.4274828339687183 - sys_corr_74: 0.655826894509688 - sys_corr_75: 0.6475819577862536 - sys_corr_76: 0.2770928040967755 - sys_corr_77: 0.7047458770977968 - sys_corr_78: 0.484690855130609 - sys_corr_79: -0.0084163735290659 - sys_corr_80: -0.6141769616360244 - sys_corr_81: -0.6142600938771827 - sys_corr_82: 0.23170379924131132 - sys_corr_83: 0.49186916675646686 - sys_corr_84: 2.2926851023320047 - sys_corr_85: 0.9609246748897398 - sys_corr_86: -0.49907969226927446 - sys_corr_87: -0.06490841417964373 - sys_corr_88: 0.3488249959355973 - sys_corr_89: 0.7133575021570504 - sys_corr_90: -0.03351140514996439 - sys_corr_91: 2.8368793863410136 - sys_corr_92: 0.2834719698794328 - sys_corr_93: -0.4823935666897885 - sys_corr_94: -0.9575348424057907 - sys_corr_95: 0.8548166953741582 - sys_corr_96: -0.10306810270303998 - sys_corr_97: 0.9685869430452457 - sys_corr_98: -0.7983512955419867 - sys_corr_99: 0.8233502760345394 - sys_corr_100: 3.3167191326560364 - sys_corr_101: -1.3106113190386917 - sys_corr_102: 1.9512604867309626 - sys_corr_103: 1.3527083345040818 - sys_corr_104: 1.0382228585369209 - sys_corr_105: 1.8132641635253017 - sys_corr_106: -2.386751868680484 - sys_corr_107: -0.5330051221692548 - sys_corr_108: -5.4817679465859515 - sys_corr_109: 5.75395942007253 - sys_corr_110: -4.134545949263392 - sys_corr_111: -2.0663004382972865 - sys_corr_112: 2.8298414356361965 - sys_corr_113: -2.1862249138799177 - sys_corr_114: -0.10649299316009075 - sys_corr_115: 3.7118343722961216 - sys_corr_116: -0.23376905503087678 - sys_corr_117: -0.7640617274337245 - sys_corr_118: -1.6154990628936718 - sys_corr_119: -1.428155148157073 - sys_corr_120: 1.123117364858144 - sys_corr_121: -4.1979106557309755 - sys_corr_122: -21.998479526194682 - sys_corr_123: -6.384557872425769 - sys_corr_124: 0.6049547451934335 - sys_corr_125: 3.765428181236953 - sys_corr_126: -9.171089709343438 - sys_corr_127: -0.1593610735142573 - sys_corr_128: -0.9247881932748229 - sys_corr_129: 0.1279960871221584 - sys_corr_130: -1.1321761290553944 - sys_corr_131: -1.7583781231462494 - sys_corr_132: 0.42226746508406265 + sys_corr_5: -2.979158758016024 + sys_corr_6: -1.1439821753377928 + sys_corr_7: -0.1779508534473466 + sys_corr_8: -0.1375997715077386 + sys_corr_9: 0.45293723483362086 + sys_corr_10: 0.36729425223175644 + sys_corr_11: 0.41371104001059394 + sys_corr_12: 0.5197762835458662 + sys_corr_13: -0.12773603282344348 + sys_corr_14: 0.3888613745927246 + sys_corr_15: 0.15795354312606685 + sys_corr_16: 0.4146080658892085 + sys_corr_17: 0.28947078711100066 + sys_corr_18: -0.38455207490275994 + sys_corr_19: -0.8103187394568931 + sys_corr_20: 0.2052282869707847 + sys_corr_21: -0.039677379170125524 + sys_corr_22: 0.38730921256552053 + sys_corr_23: -0.2810196620950905 + sys_corr_24: -1.4528111044313077 + sys_corr_25: -1.0614234422846942 + sys_corr_26: -2.3850618357672224 + sys_corr_27: -0.31778847078494626 + sys_corr_28: 0.6251476657542366 + sys_corr_29: 1.3016607020556088 + sys_corr_30: -1.3057356399987436 + sys_corr_31: 2.0031219016944988 + sys_corr_32: -0.4217192043405787 + sys_corr_33: 0.39169848634907883 + sys_corr_34: -0.5648163311025423 + sys_corr_35: -0.07482171228118349 + sys_corr_36: -0.2723024627234142 + sys_corr_37: 0.24722050818517058 + sys_corr_38: 0.031354592758670405 + sys_corr_39: 0.3082508901367304 + sys_corr_40: -0.2188062450428029 + sys_corr_41: 0.7377887545044813 + sys_corr_42: 0.4683798945150819 + sys_corr_43: -0.06457071006292972 + sys_corr_44: 0.5226751969564061 + sys_corr_45: -0.3479942679915254 + sys_corr_46: -0.1413778472281524 + sys_corr_47: -0.13834920669337974 + sys_corr_48: -0.232506744204837 + sys_corr_49: 0.399518201022035 + sys_corr_50: -1.216203970398089 + sys_corr_51: 1.464834395508975 + sys_corr_52: -0.6898970508852121 + sys_corr_53: -0.1344955173557208 + sys_corr_54: 0.8286008654064878 + sys_corr_55: -0.36177010250128233 + sys_corr_56: -0.6892250924564504 + sys_corr_57: -0.08583871935589235 + sys_corr_58: 0.1784370833832695 + sys_corr_59: 0.08843252729109248 + sys_corr_60: 0.4953911689723062 + sys_corr_61: 0.4122295118954217 + sys_corr_62: 0.3936957731854257 + sys_corr_63: 0.3929732588937346 + sys_corr_64: 0.1277051440062508 + sys_corr_65: -0.10920394295540219 + sys_corr_66: -0.09270765119089695 + sys_corr_67: 0.20382564065594888 + sys_corr_68: 0.10763798649438608 + sys_corr_69: 0.421152159669002 + sys_corr_70: 0.2282725503424445 + sys_corr_71: -0.20211022891780372 + sys_corr_72: -0.397355675086304 + sys_corr_73: -0.4274828339684258 + sys_corr_74: 0.6558268945093989 + sys_corr_75: 0.6475819577857826 + sys_corr_76: 0.2770928040972131 + sys_corr_77: -0.7047458770975896 + sys_corr_78: 0.6141769616361027 + sys_corr_79: 0.48469085513058785 + sys_corr_80: -0.00841637352908791 + sys_corr_81: 0.6142600938771062 + sys_corr_82: -0.23170379924137435 + sys_corr_83: 0.4918691667565413 + sys_corr_84: -2.2926851023322468 + sys_corr_85: 0.9609246748895061 + sys_corr_86: 0.4990796922702524 + sys_corr_87: 0.06490841417940597 + sys_corr_88: 0.34882499593510063 + sys_corr_89: -0.03351140515009179 + sys_corr_90: 0.7133575021571854 + sys_corr_91: 2.8368793863410433 + sys_corr_92: -0.2834719698796144 + sys_corr_93: -0.482393566689829 + sys_corr_94: -0.9575348424059268 + sys_corr_95: 0.8548166953738344 + sys_corr_96: 0.10306810270302097 + sys_corr_97: 0.9685869430453139 + sys_corr_98: 0.7983512955420945 + sys_corr_99: 0.8233502760344874 + sys_corr_100: -1.3106113190390638 + sys_corr_101: -1.9512604867318746 + sys_corr_102: 1.3527083345016766 + sys_corr_103: -1.0382228585368856 + sys_corr_104: -1.8132641635256124 + sys_corr_105: -3.316719132656662 + sys_corr_106: -2.386751868680412 + sys_corr_107: -5.481767946585963 + sys_corr_108: 5.7539594200727295 + sys_corr_109: 4.134545949263371 + sys_corr_110: 0.5330051221693841 + sys_corr_111: 2.0663004382971475 + sys_corr_112: 2.8298414356360677 + sys_corr_113: 2.18622491388006 + sys_corr_114: -0.10649299316005048 + sys_corr_115: 3.711834372295962 + sys_corr_116: 0.23376905503141285 + sys_corr_117: 0.7640617274338205 + sys_corr_118: 1.6154990628937584 + sys_corr_119: 1.4281551481564103 + sys_corr_120: -1.1231173648580306 + sys_corr_121: 4.197910655730508 + sys_corr_122: -6.384557872425062 + sys_corr_123: -21.998479526194192 + sys_corr_124: 0.6049547451934078 + sys_corr_125: 3.765428181236722 + sys_corr_126: 9.17108970934509 + sys_corr_127: -0.15936107351415432 + sys_corr_128: -0.9247881932751035 + sys_corr_129: 0.12799608712202676 + sys_corr_130: -1.1321761290561245 + sys_corr_131: 1.7583781231464273 + sys_corr_132: 0.42226746508429586 stat: 0.0 luminosity: 7.112402 -- sys_corr_1: 1.2131506168405612 - sys_corr_2: 1.4364553622586678 - sys_corr_3: -2.330606385001879 - sys_corr_4: 2.548557645806681 - sys_corr_5: -2.57888463206446 - sys_corr_6: -1.1521105316213986 - sys_corr_7: -0.0686379139956651 - sys_corr_8: -0.10302433989044181 - sys_corr_9: 0.4928839101926963 - sys_corr_10: 0.19937664366885968 - sys_corr_11: 0.3921169192671472 - sys_corr_12: 0.525109721660126 - sys_corr_13: 0.22453304927426027 - sys_corr_14: -0.09826754740213163 - sys_corr_15: -0.2985531315374067 - sys_corr_16: -0.2656281150784011 - sys_corr_17: 0.17870035768275827 - sys_corr_18: 0.2226382091845838 - sys_corr_19: 0.04353221526394757 - sys_corr_20: 0.26733008175371864 - sys_corr_21: 0.5621267703047809 - sys_corr_22: 0.31159167724442366 - sys_corr_23: 0.2175136344999004 - sys_corr_24: -1.483328288136364 - sys_corr_25: -1.5510220821957477 - sys_corr_26: -2.1550944890391888 - sys_corr_27: -0.5475335654237827 - sys_corr_28: 0.9400622007364087 - sys_corr_29: 1.1697138828296727 - sys_corr_30: -1.4329011836030823 - sys_corr_31: 1.8408576916347743 - sys_corr_32: 0.3423583896807182 - sys_corr_33: -0.37729617772827945 - sys_corr_34: -0.48691736896753823 - sys_corr_35: -0.24230485284113049 - sys_corr_36: -0.28995755890231123 - sys_corr_37: -0.3520584065191709 - sys_corr_38: -0.00868178890702785 - sys_corr_39: -0.2319479242373677 - sys_corr_40: 0.26259831801944783 - sys_corr_41: 0.6700180456378504 - sys_corr_42: -0.46492827701241857 - sys_corr_43: -0.0711833359488197 - sys_corr_44: 0.5154008748409974 - sys_corr_45: 0.33698030954778035 - sys_corr_46: 0.12851626195845578 - sys_corr_47: 0.15188838690505105 - sys_corr_48: 0.16300896631522138 - sys_corr_49: -0.4051930490269233 - sys_corr_50: -1.1692395310511876 - sys_corr_51: 1.4489126759540774 - sys_corr_52: -0.6008965210989192 - sys_corr_53: 0.181471382335158 - sys_corr_54: -0.8901043233829268 - sys_corr_55: 0.39375647754723475 - sys_corr_56: 0.5208042438548022 - sys_corr_57: -0.11982561131272643 - sys_corr_58: -0.11229307907257961 - sys_corr_59: -0.022676648300377564 - sys_corr_60: -0.42007209612219826 - sys_corr_61: -0.5380554891203632 - sys_corr_62: -0.3221148025174074 - sys_corr_63: 0.28953943357137363 - sys_corr_64: 0.10134040159626523 - sys_corr_65: -0.20268910428379946 - sys_corr_66: -0.014430284351420916 - sys_corr_67: 0.15891378649457585 - sys_corr_68: -0.08461339215852494 - sys_corr_69: 0.4455764373263129 - sys_corr_70: -0.149193333588087 - sys_corr_71: -0.15622283979016255 - sys_corr_72: 0.5415613588554913 - sys_corr_73: 0.33859753219290445 - sys_corr_74: 0.7279599847325909 - sys_corr_75: 0.6406360523878054 - sys_corr_76: 0.23777882396401406 - sys_corr_77: 0.6474602648376846 - sys_corr_78: 0.4933166161886392 - sys_corr_79: -0.06298564474893545 - sys_corr_80: -0.5764348513779707 - sys_corr_81: -0.5486685626453323 - sys_corr_82: 0.22987284090545063 - sys_corr_83: 0.46704337418925773 - sys_corr_84: 2.2408565202672475 - sys_corr_85: 0.9635142588977045 - sys_corr_86: -0.5695357559538036 - sys_corr_87: -0.12543690843952313 - sys_corr_88: 0.3467463540618932 - sys_corr_89: 0.6065679071631088 - sys_corr_90: 0.010478311831066104 - sys_corr_91: 2.629421263347062 - sys_corr_92: 0.10894084158931491 - sys_corr_93: -0.48093198488710326 - sys_corr_94: -0.9050217012933192 - sys_corr_95: 0.8323606190287587 - sys_corr_96: -0.12574297497931758 - sys_corr_97: 0.8588733812248184 - sys_corr_98: -0.7341798056025137 - sys_corr_99: 0.7397582290157795 - sys_corr_100: 3.1185738007007893 - sys_corr_101: -1.3366503230175126 - sys_corr_102: 1.9995622545866802 - sys_corr_103: 1.2711468586837378 - sys_corr_104: 0.9970077119887439 - sys_corr_105: 1.752922421922111 - sys_corr_106: -2.398873247962965 - sys_corr_107: -0.5015709705806222 - sys_corr_108: -4.947511318006129 - sys_corr_109: 3.7652710121286233 - sys_corr_110: -1.4426599807828733 - sys_corr_111: -2.4435633325933934 - sys_corr_112: 3.798497939777749 - sys_corr_113: -5.035649687415895 - sys_corr_114: -0.1568150091950778 - sys_corr_115: 3.6490746580772853 - sys_corr_116: -0.10721491481376993 - sys_corr_117: -0.6460346334112176 - sys_corr_118: -1.608548219603979 - sys_corr_119: -2.850247491113239 - sys_corr_120: 0.9803439594561799 - sys_corr_121: -5.493957735160446 - sys_corr_122: -5.451570678416011 - sys_corr_123: -7.2407428618723735 - sys_corr_124: 0.5067207777736586 - sys_corr_125: 2.9741787790799483 - sys_corr_126: 16.970746032793453 - sys_corr_127: -0.11121945771815252 - sys_corr_128: -1.0024350822409251 - sys_corr_129: 1.1678051659869035 - sys_corr_130: 8.699781362014539 - sys_corr_131: -1.5845736608480854 - sys_corr_132: -0.28798535406863024 +- sys_corr_1: 1.213150616840563 + sys_corr_2: 1.4364553622586687 + sys_corr_3: -2.3306063850018823 + sys_corr_4: 2.5485576458066803 + sys_corr_5: -2.5788846320644767 + sys_corr_6: -1.1521105316213978 + sys_corr_7: -0.06863791399565476 + sys_corr_8: -0.10302433989042285 + sys_corr_9: 0.4928839101926853 + sys_corr_10: 0.19937664366881494 + sys_corr_11: 0.3921169192672145 + sys_corr_12: 0.5251097216601023 + sys_corr_13: -0.22453304927426498 + sys_corr_14: 0.09826754740212261 + sys_corr_15: 0.2985531315374004 + sys_corr_16: 0.26562811507841616 + sys_corr_17: 0.17870035768274342 + sys_corr_18: -0.22263820918458074 + sys_corr_19: 0.04353221526393575 + sys_corr_20: 0.2673300817537363 + sys_corr_21: 0.5621267703047772 + sys_corr_22: 0.31159167724443176 + sys_corr_23: 0.21751363449990138 + sys_corr_24: -1.4833282881363785 + sys_corr_25: -1.551022082195798 + sys_corr_26: -2.155094489039078 + sys_corr_27: -0.5475335654238023 + sys_corr_28: 0.940062200736424 + sys_corr_29: 1.1697138828297056 + sys_corr_30: -1.4329011836030938 + sys_corr_31: 1.8408576916348829 + sys_corr_32: -0.3423583896808235 + sys_corr_33: 0.3772961777282347 + sys_corr_34: -0.4869173689676084 + sys_corr_35: -0.2423048528413276 + sys_corr_36: -0.28995755890227737 + sys_corr_37: 0.35205840651911874 + sys_corr_38: 0.008681788906949922 + sys_corr_39: 0.23194792423746685 + sys_corr_40: -0.2625983180195708 + sys_corr_41: 0.6700180456379052 + sys_corr_42: 0.46492827701260026 + sys_corr_43: -0.07118333594860625 + sys_corr_44: 0.5154008748410218 + sys_corr_45: -0.3369803095477311 + sys_corr_46: -0.12851626195821514 + sys_corr_47: -0.15188838690496925 + sys_corr_48: -0.16300896631538983 + sys_corr_49: 0.4051930490269691 + sys_corr_50: -1.1692395310511858 + sys_corr_51: 1.4489126759539692 + sys_corr_52: -0.6008965210991237 + sys_corr_53: -0.18147138233506555 + sys_corr_54: 0.8901043233830779 + sys_corr_55: -0.39375647754760656 + sys_corr_56: -0.5208042438549341 + sys_corr_57: -0.11982561131240616 + sys_corr_58: 0.11229307907265598 + sys_corr_59: -0.02267664830045355 + sys_corr_60: 0.42007209612215235 + sys_corr_61: 0.5380554891202627 + sys_corr_62: 0.32211480251733615 + sys_corr_63: 0.2895394335714445 + sys_corr_64: 0.10134040159623255 + sys_corr_65: -0.20268910428371237 + sys_corr_66: 0.014430284351431226 + sys_corr_67: 0.1589137864944637 + sys_corr_68: 0.08461339215872929 + sys_corr_69: 0.44557643732638147 + sys_corr_70: 0.14919333358785491 + sys_corr_71: -0.15622283979000975 + sys_corr_72: -0.5415613588554515 + sys_corr_73: -0.338597532192724 + sys_corr_74: 0.7279599847324127 + sys_corr_75: 0.6406360523875108 + sys_corr_76: 0.237778823964419 + sys_corr_77: -0.6474602648376359 + sys_corr_78: 0.5764348513780416 + sys_corr_79: 0.49331661618860984 + sys_corr_80: -0.06298564474889634 + sys_corr_81: 0.5486685626451815 + sys_corr_82: -0.22987284090548898 + sys_corr_83: 0.4670433741894564 + sys_corr_84: -2.240856520267434 + sys_corr_85: 0.9635142588973721 + sys_corr_86: 0.5695357559545735 + sys_corr_87: 0.1254369084394656 + sys_corr_88: 0.34674635406123416 + sys_corr_89: 0.010478311831008254 + sys_corr_90: 0.6065679071631387 + sys_corr_91: 2.6294212633470484 + sys_corr_92: -0.10894084158923636 + sys_corr_93: -0.48093198488704475 + sys_corr_94: -0.9050217012934663 + sys_corr_95: 0.8323606190286608 + sys_corr_96: 0.12574297497941567 + sys_corr_97: 0.8588733812248374 + sys_corr_98: 0.7341798056025926 + sys_corr_99: 0.7397582290157834 + sys_corr_100: -1.336650323017789 + sys_corr_101: -1.9995622545875122 + sys_corr_102: 1.2711468586813992 + sys_corr_103: -0.9970077119888441 + sys_corr_104: -1.752922421922429 + sys_corr_105: -3.1185738007013626 + sys_corr_106: -2.3988732479629475 + sys_corr_107: -4.947511318006119 + sys_corr_108: 3.7652710121287787 + sys_corr_109: 1.442659980782967 + sys_corr_110: 0.5015709705805176 + sys_corr_111: 2.4435633325934862 + sys_corr_112: 3.798497939777664 + sys_corr_113: 5.035649687415772 + sys_corr_114: -0.15681500919499405 + sys_corr_115: 3.649074658077214 + sys_corr_116: 0.10721491481401581 + sys_corr_117: 0.6460346334112225 + sys_corr_118: 1.6085482196038183 + sys_corr_119: 2.8502474911130586 + sys_corr_120: -0.980343959456233 + sys_corr_121: 5.493957735160918 + sys_corr_122: -7.240742861871443 + sys_corr_123: -5.451570678415753 + sys_corr_124: 0.5067207777738753 + sys_corr_125: 2.974178779079935 + sys_corr_126: -16.970746032795457 + sys_corr_127: -0.11121945771815851 + sys_corr_128: -1.0024350822410384 + sys_corr_129: 1.1678051659867554 + sys_corr_130: 8.699781362017559 + sys_corr_131: 1.5845736608486671 + sys_corr_132: -0.2879853540688069 stat: 0.0 luminosity: 5.42245 -- sys_corr_1: 0.6762086865106027 - sys_corr_2: 0.44823367002809844 - sys_corr_3: -1.5341023233434592 - sys_corr_4: 2.008282767615648 - sys_corr_5: -2.176068047814131 - sys_corr_6: -1.322204047692019 - sys_corr_7: -0.09773504092162066 - sys_corr_8: -0.012585480764220986 - sys_corr_9: 0.38594932511707414 - sys_corr_10: 0.2738806858621555 - sys_corr_11: 0.05620286815666894 - sys_corr_12: -0.10662933930423421 - sys_corr_13: -0.10748168647089297 - sys_corr_14: 0.010414042034371218 - sys_corr_15: -0.14101446254497413 - sys_corr_16: -0.42543717822454985 - sys_corr_17: 0.02027666281051848 - sys_corr_18: 0.21555247626215418 - sys_corr_19: -0.344091909881359 - sys_corr_20: 0.09055786172079273 - sys_corr_21: -0.09672574471079663 - sys_corr_22: 0.4703700504136069 - sys_corr_23: -1.0199300520806063 - sys_corr_24: -0.7086595468457834 - sys_corr_25: -1.6521334130445249 - sys_corr_26: -1.4755433495237475 - sys_corr_27: -1.2022297576973018 - sys_corr_28: 1.0835146073144784 - sys_corr_29: 0.4387004281553354 - sys_corr_30: -0.7504341662172794 - sys_corr_31: 1.6056987525371424 - sys_corr_32: 0.32825415858685575 - sys_corr_33: -0.35035552072893383 - sys_corr_34: -0.32651997954948436 - sys_corr_35: -0.1435682629345374 - sys_corr_36: -0.09930081387505628 - sys_corr_37: -0.44207267434670316 - sys_corr_38: -0.053472687274360574 - sys_corr_39: -0.11892932260425144 - sys_corr_40: 0.17706704260762923 - sys_corr_41: 0.5265197325488218 - sys_corr_42: -0.3091831414671007 - sys_corr_43: 0.01599733304047905 - sys_corr_44: 0.5652670776697191 - sys_corr_45: 0.28981181394289274 - sys_corr_46: 0.08879059924622383 - sys_corr_47: 0.19852979344511618 - sys_corr_48: 0.12400157664701332 - sys_corr_49: -0.4448693481232544 - sys_corr_50: -0.9628634000869024 - sys_corr_51: 1.2518715565677896 - sys_corr_52: -0.49576272385290365 - sys_corr_53: 0.08883267735410937 - sys_corr_54: -0.7795724553127127 - sys_corr_55: 0.37883941278324434 - sys_corr_56: 0.6270344668808606 - sys_corr_57: 0.04921301187671404 - sys_corr_58: -0.16752505221573166 - sys_corr_59: 0.03809804211547021 - sys_corr_60: -0.3524979785860914 - sys_corr_61: -0.40867388411354555 - sys_corr_62: -0.3479468322641907 - sys_corr_63: 0.3000988617549534 - sys_corr_64: 0.058858507789500844 - sys_corr_65: -0.0917992257759901 - sys_corr_66: 0.05187248380103241 - sys_corr_67: 0.10667942669862776 - sys_corr_68: 0.01984163529928525 - sys_corr_69: 0.41569874634379833 - sys_corr_70: -0.17887132816267154 - sys_corr_71: -0.12697761561618606 - sys_corr_72: 0.3596831423959236 - sys_corr_73: 0.33373571682725434 - sys_corr_74: 0.6029876451474856 - sys_corr_75: 0.5682112692518131 - sys_corr_76: 0.1688486863148723 - sys_corr_77: 0.5522099838437732 - sys_corr_78: 0.519029250616793 - sys_corr_79: 0.028396376302654316 - sys_corr_80: -0.49823418365259353 - sys_corr_81: -0.4464414009578394 - sys_corr_82: 0.22262353585501563 - sys_corr_83: 0.4430869983382626 - sys_corr_84: 1.6653998417371922 - sys_corr_85: 0.6803230557667663 - sys_corr_86: -0.37353890190473765 - sys_corr_87: -0.010746319241954889 - sys_corr_88: 0.2911298615216999 - sys_corr_89: 0.4459990616957192 - sys_corr_90: 0.01991700515806597 - sys_corr_91: 2.042326924626323 - sys_corr_92: 0.123625356553253 - sys_corr_93: -0.40278135114123254 - sys_corr_94: -0.8060379982599234 - sys_corr_95: 0.717792665003066 - sys_corr_96: -0.06670302885828226 - sys_corr_97: 0.651709116091073 - sys_corr_98: -0.5473819475534485 - sys_corr_99: 0.5066283916268373 - sys_corr_100: 2.4005928229420856 - sys_corr_101: -0.9203722491816508 - sys_corr_102: 1.4182362418742482 - sys_corr_103: 0.7437063090913701 - sys_corr_104: 0.7663583833656817 - sys_corr_105: 1.1246349176039885 - sys_corr_106: -1.828528367257264 - sys_corr_107: -0.4369189730578976 - sys_corr_108: -3.8198316103055134 - sys_corr_109: 2.8365950566344975 - sys_corr_110: -1.0628016669461904 - sys_corr_111: -1.8507142327644754 - sys_corr_112: 1.1436073853317825 - sys_corr_113: -0.6345584846982107 - sys_corr_114: -0.23623251884617885 - sys_corr_115: 6.099598153003283 - sys_corr_116: 0.3869997277231938 - sys_corr_117: -0.3729609929583835 - sys_corr_118: -1.9234800237768468 - sys_corr_119: -5.497352634745865 - sys_corr_120: 0.7042188104915496 - sys_corr_121: 15.739891126185976 - sys_corr_122: -5.030544152638953 - sys_corr_123: -5.010709147989528 - sys_corr_124: 0.5263383962436257 - sys_corr_125: 2.209301123359608 - sys_corr_126: 2.803433033135004 - sys_corr_127: -0.04591714687198927 - sys_corr_128: -0.8407441073533671 - sys_corr_129: 0.6269366723135266 - sys_corr_130: -0.3854932404873971 - sys_corr_131: -1.1721002315799705 - sys_corr_132: 0.5187140653010482 +- sys_corr_1: 0.6762086865106022 + sys_corr_2: 0.4482336700280998 + sys_corr_3: -1.534102323343461 + sys_corr_4: 2.0082827676156474 + sys_corr_5: -2.1760680478141436 + sys_corr_6: -1.3222040476920216 + sys_corr_7: -0.09773504092161651 + sys_corr_8: -0.012585480764205771 + sys_corr_9: 0.38594932511707114 + sys_corr_10: 0.27388068586213554 + sys_corr_11: 0.05620286815666094 + sys_corr_12: -0.10662933930423636 + sys_corr_13: 0.10748168647088986 + sys_corr_14: -0.01041404203437891 + sys_corr_15: 0.14101446254497355 + sys_corr_16: 0.42543717822456945 + sys_corr_17: 0.020276662810517834 + sys_corr_18: -0.21555247626215163 + sys_corr_19: -0.34409190988136584 + sys_corr_20: 0.09055786172080295 + sys_corr_21: -0.09672574471080794 + sys_corr_22: 0.47037005041359636 + sys_corr_23: -1.0199300520805934 + sys_corr_24: -0.7086595468457993 + sys_corr_25: -1.6521334130445442 + sys_corr_26: -1.4755433495236014 + sys_corr_27: -1.2022297576972993 + sys_corr_28: 1.0835146073145079 + sys_corr_29: 0.4387004281553687 + sys_corr_30: -0.750434166217266 + sys_corr_31: 1.6056987525371835 + sys_corr_32: -0.3282541585868706 + sys_corr_33: 0.35035552072888393 + sys_corr_34: -0.326519979549533 + sys_corr_35: -0.14356826293464325 + sys_corr_36: -0.09930081387508442 + sys_corr_37: 0.44207267434669756 + sys_corr_38: 0.05347268727427511 + sys_corr_39: 0.11892932260441082 + sys_corr_40: -0.17706704260770487 + sys_corr_41: 0.5265197325488147 + sys_corr_42: 0.3091831414672372 + sys_corr_43: 0.015997333040632982 + sys_corr_44: 0.5652670776697365 + sys_corr_45: -0.2898118139429351 + sys_corr_46: -0.08879059924604564 + sys_corr_47: -0.19852979344502064 + sys_corr_48: -0.12400157664715943 + sys_corr_49: 0.44486934812328705 + sys_corr_50: -0.9628634000869484 + sys_corr_51: 1.2518715565676608 + sys_corr_52: -0.4957627238531823 + sys_corr_53: -0.08883267735396964 + sys_corr_54: 0.7795724553127802 + sys_corr_55: -0.3788394127834401 + sys_corr_56: -0.6270344668809931 + sys_corr_57: 0.049213011877094114 + sys_corr_58: 0.16752505221576988 + sys_corr_59: 0.03809804211536108 + sys_corr_60: 0.3524979785860921 + sys_corr_61: 0.40867388411349426 + sys_corr_62: 0.34794683226404655 + sys_corr_63: 0.30009886175508405 + sys_corr_64: 0.05885850778949045 + sys_corr_65: -0.09179922577586883 + sys_corr_66: -0.05187248380101363 + sys_corr_67: 0.10667942669851825 + sys_corr_68: -0.01984163529909921 + sys_corr_69: 0.41569874634380777 + sys_corr_70: 0.17887132816251966 + sys_corr_71: -0.12697761561607537 + sys_corr_72: -0.35968314239590043 + sys_corr_73: -0.3337357168271069 + sys_corr_74: 0.60298764514738 + sys_corr_75: 0.5682112692515464 + sys_corr_76: 0.16884868631519337 + sys_corr_77: -0.5522099838436685 + sys_corr_78: 0.4982341836526984 + sys_corr_79: 0.5190292506167439 + sys_corr_80: 0.02839637630267366 + sys_corr_81: 0.44644140095774787 + sys_corr_82: -0.22262353585504763 + sys_corr_83: 0.44308699833830245 + sys_corr_84: -1.665399841737328 + sys_corr_85: 0.6803230557666252 + sys_corr_86: 0.3735389019053077 + sys_corr_87: 0.01074631924194717 + sys_corr_88: 0.29112986152108017 + sys_corr_89: 0.019917005157971023 + sys_corr_90: 0.44599906169579706 + sys_corr_91: 2.0423269246263374 + sys_corr_92: -0.1236253565532951 + sys_corr_93: -0.4027813511412766 + sys_corr_94: -0.8060379982600199 + sys_corr_95: 0.7177926650029891 + sys_corr_96: 0.06670302885833382 + sys_corr_97: 0.6517091160910786 + sys_corr_98: 0.5473819475534158 + sys_corr_99: 0.5066283916268284 + sys_corr_100: -0.9203722491819821 + sys_corr_101: -1.4182362418747534 + sys_corr_102: 0.7437063090896299 + sys_corr_103: -0.7663583833657472 + sys_corr_104: -1.124634917604222 + sys_corr_105: -2.4005928229425257 + sys_corr_106: -1.8285283672573427 + sys_corr_107: -3.819831610305335 + sys_corr_108: 2.8365950566346037 + sys_corr_109: 1.0628016669461933 + sys_corr_110: 0.4369189730577953 + sys_corr_111: 1.8507142327645192 + sys_corr_112: 1.1436073853317137 + sys_corr_113: 0.6345584846981563 + sys_corr_114: -0.2362325188461816 + sys_corr_115: 6.0995981530030665 + sys_corr_116: -0.38699972772256974 + sys_corr_117: 0.3729609929582257 + sys_corr_118: 1.9234800237765295 + sys_corr_119: 5.497352634746962 + sys_corr_120: -0.7042188104914913 + sys_corr_121: -15.739891126186183 + sys_corr_122: -5.010709147989704 + sys_corr_123: -5.030544152637597 + sys_corr_124: 0.5263383962435745 + sys_corr_125: 2.2093011233594715 + sys_corr_126: -2.80343303313328 + sys_corr_127: -0.04591714687181854 + sys_corr_128: -0.8407441073535981 + sys_corr_129: 0.6269366723133136 + sys_corr_130: -0.38549324048608746 + sys_corr_131: 1.1721002315800069 + sys_corr_132: 0.5187140653011632 stat: 0.0 luminosity: 3.3334180000000004 -- sys_corr_1: 1.0429116850959386 - sys_corr_2: -0.2052144965273743 - sys_corr_3: -0.7307645723268829 - sys_corr_4: 3.1419743046198256 - sys_corr_5: -0.5374648456016575 +- sys_corr_1: 1.0429116850959372 + sys_corr_2: -0.20521449652737295 + sys_corr_3: -0.7307645723268853 + sys_corr_4: 3.1419743046198323 + sys_corr_5: -0.537464845601674 sys_corr_6: -1.4111700925788264 - sys_corr_7: 0.11816113624123532 - sys_corr_8: 0.09432357546255057 - sys_corr_9: 0.38019263980987633 - sys_corr_10: 0.3806684981744772 - sys_corr_11: 0.24539924461116766 - sys_corr_12: -0.09022386283832777 - sys_corr_13: -0.20524796660541264 - sys_corr_14: 0.06458368028592176 - sys_corr_15: -0.07185997093764461 - sys_corr_16: -0.3323937781552143 - sys_corr_17: 0.3049368313980509 - sys_corr_18: 0.27889846818754116 - sys_corr_19: -0.6509040448294211 - sys_corr_20: -0.20621875249686525 - sys_corr_21: -0.08380203309248203 - sys_corr_22: 0.017837247761402383 - sys_corr_23: 0.636729027502538 - sys_corr_24: -1.2590354816919662 - sys_corr_25: -0.405766697396293 - sys_corr_26: -1.8488325168120108 - sys_corr_27: -0.8477767082675799 - sys_corr_28: 1.4804066112609198 - sys_corr_29: 1.3278179606574239 - sys_corr_30: -0.8218386440756271 - sys_corr_31: 1.2880889990640343 - sys_corr_32: 0.1881051324412818 - sys_corr_33: -0.2662019260837801 - sys_corr_34: -0.4322921394833695 - sys_corr_35: -0.13424881662674457 - sys_corr_36: -0.33304432087953767 - sys_corr_37: -0.38473636548687207 - sys_corr_38: -0.1111877977917589 - sys_corr_39: -0.10569976827613638 - sys_corr_40: 0.0686964971697881 - sys_corr_41: 0.3322445949701281 - sys_corr_42: -0.2435770326254812 - sys_corr_43: 0.045874582264035506 - sys_corr_44: 0.5193099348609521 - sys_corr_45: 0.4355175258737637 - sys_corr_46: 0.1434771393473548 - sys_corr_47: 0.1684112785934475 - sys_corr_48: -0.220457086610758 - sys_corr_49: -0.13200116282161578 - sys_corr_50: -1.1118059568064962 - sys_corr_51: 1.1893037851834318 - sys_corr_52: -0.639571158206731 - sys_corr_53: 0.27535323288544816 - sys_corr_54: -0.5855052643718546 - sys_corr_55: 0.4768371765292542 - sys_corr_56: 0.32921174372576223 - sys_corr_57: -0.1391672857221548 - sys_corr_58: -0.25893464476010214 - sys_corr_59: -0.047373354932907584 - sys_corr_60: -0.20715496070943537 - sys_corr_61: -0.35965945712853586 - sys_corr_62: -0.41646290764390237 - sys_corr_63: 0.12833429356306242 - sys_corr_64: 0.06034602994625966 - sys_corr_65: 0.021330178976629397 - sys_corr_66: 0.36469384015400524 - sys_corr_67: 0.409327607352368 - sys_corr_68: -0.044544466178589565 - sys_corr_69: 0.4305255808964849 - sys_corr_70: -0.3454125834678273 - sys_corr_71: 0.0018718667084354072 - sys_corr_72: 0.3915904842063916 - sys_corr_73: 0.6348148475250354 - sys_corr_74: 0.632546763147314 - sys_corr_75: 0.5545276415837657 - sys_corr_76: -0.058625451448751906 - sys_corr_77: 0.5177418438430773 - sys_corr_78: 0.4928053082852347 - sys_corr_79: 0.2607140114745345 - sys_corr_80: -0.5055923288061391 - sys_corr_81: -0.4540751085606726 - sys_corr_82: 0.3138900965070118 - sys_corr_83: 0.44099322694919924 - sys_corr_84: 1.6560075044753855 - sys_corr_85: 0.5535805033018999 - sys_corr_86: -0.41961186612869866 - sys_corr_87: 0.16280018892940343 - sys_corr_88: 0.2916550723924791 - sys_corr_89: 0.3661166604270478 - sys_corr_90: 0.07292384348323554 - sys_corr_91: 1.947896581932433 - sys_corr_92: 0.21963418295090958 - sys_corr_93: -0.4444402480233313 - sys_corr_94: -1.3296421534775607 - sys_corr_95: 0.6772482215760526 - sys_corr_96: -0.07811321038008849 - sys_corr_97: 1.08381380768886 - sys_corr_98: -0.6867570634113414 - sys_corr_99: 0.735726886871647 - sys_corr_100: 2.5880214144719127 - sys_corr_101: -1.0274106008016717 - sys_corr_102: 1.6403461445647487 - sys_corr_103: 0.8369794861324333 - sys_corr_104: 0.6213765009361412 - sys_corr_105: 1.461074092793517 - sys_corr_106: -2.0001820052530315 - sys_corr_107: -0.5502777886122429 - sys_corr_108: -4.265236100695067 - sys_corr_109: 3.508847140086582 - sys_corr_110: -1.5800050049068983 - sys_corr_111: -2.2013716253103293 - sys_corr_112: 1.7201008305826595 - sys_corr_113: -2.1030629802015097 - sys_corr_114: -0.8238132853330965 - sys_corr_115: 1.7696378133763753 - sys_corr_116: -0.04040249659231403 - sys_corr_117: -0.3297839249740679 - sys_corr_118: -2.5980794503549998 - sys_corr_119: 12.66854314638386 - sys_corr_120: 0.6370224084649019 - sys_corr_121: 4.648164569547032 - sys_corr_122: -5.297726965798096 - sys_corr_123: -5.560767558496662 - sys_corr_124: 0.19822612461122727 - sys_corr_125: 2.392216390682581 - sys_corr_126: 4.362415653483954 - sys_corr_127: -0.06979163348020362 - sys_corr_128: -0.8711072582812357 - sys_corr_129: 0.16279134030175338 - sys_corr_130: -0.1782292855197184 - sys_corr_131: -1.0193707892529145 - sys_corr_132: 3.1055705103496063 + sys_corr_7: 0.11816113624123625 + sys_corr_8: 0.09432357546256799 + sys_corr_9: 0.38019263980987483 + sys_corr_10: 0.38066849817444987 + sys_corr_11: 0.24539924461116108 + sys_corr_12: -0.09022386283833862 + sys_corr_13: 0.20524796660541905 + sys_corr_14: -0.06458368028593352 + sys_corr_15: 0.07185997093764403 + sys_corr_16: 0.3323937781552659 + sys_corr_17: 0.30493683139807454 + sys_corr_18: -0.27889846818753283 + sys_corr_19: -0.6509040448294162 + sys_corr_20: -0.2062187524968525 + sys_corr_21: -0.08380203309247214 + sys_corr_22: 0.017837247761393782 + sys_corr_23: 0.6367290275025465 + sys_corr_24: -1.2590354816919953 + sys_corr_25: -0.4057666973963445 + sys_corr_26: -1.848832516811884 + sys_corr_27: -0.8477767082675599 + sys_corr_28: 1.4804066112609462 + sys_corr_29: 1.3278179606574911 + sys_corr_30: -0.8218386440756333 + sys_corr_31: 1.288088999064085 + sys_corr_32: -0.18810513244132684 + sys_corr_33: 0.26620192608368615 + sys_corr_34: -0.43229213948341294 + sys_corr_35: -0.13424881662683377 + sys_corr_36: -0.3330443208795374 + sys_corr_37: 0.38473636548684914 + sys_corr_38: 0.11118779779170851 + sys_corr_39: 0.10569976827630885 + sys_corr_40: -0.06869649716984332 + sys_corr_41: 0.3322445949701714 + sys_corr_42: 0.2435770326255665 + sys_corr_43: 0.045874582264192915 + sys_corr_44: 0.5193099348609774 + sys_corr_45: -0.4355175258738525 + sys_corr_46: -0.14347713934712508 + sys_corr_47: -0.16841127859335228 + sys_corr_48: 0.2204570866106594 + sys_corr_49: 0.13200116282170343 + sys_corr_50: -1.1118059568065515 + sys_corr_51: 1.1893037851833164 + sys_corr_52: -0.639571158206885 + sys_corr_53: -0.27535323288531677 + sys_corr_54: 0.5855052643719895 + sys_corr_55: -0.47683717652931656 + sys_corr_56: -0.3292117437259256 + sys_corr_57: -0.13916728572191042 + sys_corr_58: 0.2589346447600525 + sys_corr_59: -0.04737335493310481 + sys_corr_60: 0.20715496070941944 + sys_corr_61: 0.35965945712846603 + sys_corr_62: 0.4164629076438385 + sys_corr_63: 0.12833429356333895 + sys_corr_64: 0.06034602994637022 + sys_corr_65: 0.021330178976926795 + sys_corr_66: -0.3646938401540185 + sys_corr_67: 0.4093276073522643 + sys_corr_68: 0.04454446617863361 + sys_corr_69: 0.4305255808964636 + sys_corr_70: 0.3454125834677343 + sys_corr_71: 0.0018718667086782494 + sys_corr_72: -0.3915904842063822 + sys_corr_73: -0.6348148475248255 + sys_corr_74: 0.6325467631472189 + sys_corr_75: 0.554527641583686 + sys_corr_76: -0.05862545144837653 + sys_corr_77: -0.5177418438428731 + sys_corr_78: 0.505592328806274 + sys_corr_79: 0.49280530828524005 + sys_corr_80: 0.2607140114744855 + sys_corr_81: 0.45407510856056477 + sys_corr_82: -0.313890096507037 + sys_corr_83: 0.4409932269492397 + sys_corr_84: -1.6560075044755416 + sys_corr_85: 0.553580503301748 + sys_corr_86: 0.4196118661294612 + sys_corr_87: -0.1628001889293548 + sys_corr_88: 0.2916550723920565 + sys_corr_89: 0.07292384348315531 + sys_corr_90: 0.3661166604271947 + sys_corr_91: 1.9478965819324627 + sys_corr_92: -0.21963418295099202 + sys_corr_93: -0.44444024802322646 + sys_corr_94: -1.3296421534776597 + sys_corr_95: 0.6772482215757392 + sys_corr_96: 0.07811321038010857 + sys_corr_97: 1.0838138076888832 + sys_corr_98: 0.6867570634114036 + sys_corr_99: 0.7357268868715682 + sys_corr_100: -1.0274106008020336 + sys_corr_101: -1.6403461445652898 + sys_corr_102: 0.8369794861303692 + sys_corr_103: -0.6213765009361776 + sys_corr_104: -1.4610740927936121 + sys_corr_105: -2.588021414472457 + sys_corr_106: -2.0001820052529715 + sys_corr_107: -4.265236100694938 + sys_corr_108: 3.508847140086666 + sys_corr_109: 1.5800050049069272 + sys_corr_110: 0.5502777886122181 + sys_corr_111: 2.2013716253103537 + sys_corr_112: 1.7201008305827359 + sys_corr_113: 2.1030629802013725 + sys_corr_114: -0.82381328533302 + sys_corr_115: 1.7696378133763424 + sys_corr_116: 0.04040249659255478 + sys_corr_117: 0.32978392497366044 + sys_corr_118: 2.59807945035503 + sys_corr_119: -12.668543146384078 + sys_corr_120: -0.6370224084648303 + sys_corr_121: -4.648164569548272 + sys_corr_122: -5.560767558496683 + sys_corr_123: -5.29772696579656 + sys_corr_124: 0.19822612461132574 + sys_corr_125: 2.3922163906829166 + sys_corr_126: -4.362415653483191 + sys_corr_127: -0.069791633480277 + sys_corr_128: -0.871107258281442 + sys_corr_129: 0.16279134030178063 + sys_corr_130: -0.17822928551849726 + sys_corr_131: 1.0193707892530794 + sys_corr_132: 3.105570510349486 stat: 0.0 luminosity: 2.1264540000000003 -- sys_corr_1: -0.004140634593389878 - sys_corr_2: 0.12372356456564616 - sys_corr_3: -0.292695396520295 - sys_corr_4: 0.28525412787084653 - sys_corr_5: -0.5277458719364143 - sys_corr_6: -0.6610407381427531 - sys_corr_7: -0.06432042432167848 - sys_corr_8: 0.010566636072008724 - sys_corr_9: 0.0625432817291059 - sys_corr_10: 0.09933871619670039 - sys_corr_11: -0.013063284412522573 - sys_corr_12: -0.19341471949868355 - sys_corr_13: -0.2592307687643815 - sys_corr_14: -0.0619764287671496 - sys_corr_15: 0.021902498502331374 - sys_corr_16: -0.18307004499204985 - sys_corr_17: 0.17520105958313323 - sys_corr_18: 0.19999134680528555 - sys_corr_19: -0.33679068157476827 - sys_corr_20: -0.24212553006976129 - sys_corr_21: -0.007146661117834845 - sys_corr_22: 0.20033113461940374 - sys_corr_23: 0.3724982255128671 - sys_corr_24: -1.028564508756849 - sys_corr_25: -0.4944054388844519 - sys_corr_26: -0.02063522624803602 - sys_corr_27: 0.6645109943978778 - sys_corr_28: -0.5765320839411726 - sys_corr_29: -1.2721686619336068 - sys_corr_30: -0.8832390319082782 - sys_corr_31: -0.019901842308961377 - sys_corr_32: 0.026352766318749072 - sys_corr_33: -0.17116345840728917 - sys_corr_34: -0.017524337238077656 - sys_corr_35: 0.14697124619412313 - sys_corr_36: 0.007265952244381412 - sys_corr_37: -0.031095407223812304 - sys_corr_38: 0.0937854108730438 - sys_corr_39: -0.03041686677303124 - sys_corr_40: 0.17678949426165652 - sys_corr_41: 0.18811006043199455 - sys_corr_42: -0.0523046810104642 - sys_corr_43: -0.12329119377663501 - sys_corr_44: 0.11492521156083524 - sys_corr_45: -0.009748562646982198 - sys_corr_46: -0.0485700929636188 - sys_corr_47: 0.22135824728747813 - sys_corr_48: -0.5443265665913866 - sys_corr_49: 0.24095137814537687 - sys_corr_50: -0.6857390882834726 - sys_corr_51: 0.24150950340642055 - sys_corr_52: -0.16704695918996484 - sys_corr_53: 0.15106789398864912 - sys_corr_54: -0.1470528902765927 - sys_corr_55: 0.043782898720458534 - sys_corr_56: 0.004444857383515421 - sys_corr_57: -0.022095786871549707 - sys_corr_58: -0.06335469468422729 - sys_corr_59: 0.04670762484193465 - sys_corr_60: 0.030907229270212222 - sys_corr_61: 0.01641981770629022 - sys_corr_62: -0.0421227141809985 - sys_corr_63: -0.08249623921298144 - sys_corr_64: -0.03419127600271357 - sys_corr_65: 0.05393072077832811 - sys_corr_66: 0.14032393652311106 - sys_corr_67: 0.2133533233577771 - sys_corr_68: -0.0793032481889864 - sys_corr_69: -0.008496335264103054 - sys_corr_70: -0.036974181923819814 - sys_corr_71: -0.00694503607913167 - sys_corr_72: -0.013433652486057084 - sys_corr_73: 0.08468377780594281 - sys_corr_74: -0.013507425551086012 - sys_corr_75: 0.20531100795854515 - sys_corr_76: -0.060925967375420546 - sys_corr_77: 0.19009533524845137 - sys_corr_78: 0.11914272055773058 - sys_corr_79: 0.09357417873038082 - sys_corr_80: -0.06999304020068853 - sys_corr_81: -0.021791248407815683 - sys_corr_82: 0.07591168957694008 - sys_corr_83: 0.11585247147711335 - sys_corr_84: 0.45556240980267976 - sys_corr_85: 0.21582506860312434 - sys_corr_86: -0.042623301362743955 - sys_corr_87: 0.09191872277592096 - sys_corr_88: 0.0003065928493924556 - sys_corr_89: 0.11573371009165294 - sys_corr_90: 0.2178833280819341 - sys_corr_91: 0.4614754557515985 - sys_corr_92: -0.0169691510165232 - sys_corr_93: -0.04738211529788374 - sys_corr_94: -0.10169392544259544 - sys_corr_95: -0.04544929957467799 - sys_corr_96: -0.004564384964250899 - sys_corr_97: 0.17592665137917496 - sys_corr_98: -0.09406839831151309 - sys_corr_99: 0.11683287521276804 - sys_corr_100: -0.01886714206669711 - sys_corr_101: 0.1151574509225642 - sys_corr_102: -0.11554251978123378 - sys_corr_103: 0.3490894942167686 - sys_corr_104: 0.001869294202128032 - sys_corr_105: 0.22124494961979446 - sys_corr_106: 0.011828924463375187 - sys_corr_107: -0.09104853091026327 - sys_corr_108: -0.28376090130320325 - sys_corr_109: 0.4442939050208058 - sys_corr_110: -0.32727826269827426 - sys_corr_111: -0.21848348738371037 - sys_corr_112: 0.13680362802050927 - sys_corr_113: -0.11945786307603666 - sys_corr_114: 5.0181200679613465 - sys_corr_115: 0.09008357559138001 - sys_corr_116: -0.2033917819672071 - sys_corr_117: -0.269697706170001 - sys_corr_118: 0.7990517365417711 - sys_corr_119: 1.767287164412144 - sys_corr_120: 0.2478722358989436 - sys_corr_121: 1.2676178933342597 - sys_corr_122: -1.8249229019123123 - sys_corr_123: -1.96592492025761 - sys_corr_124: 0.15499859367849855 - sys_corr_125: 0.9307636948625476 - sys_corr_126: 1.317121802650667 - sys_corr_127: -0.012300300669150478 - sys_corr_128: -0.2024420993298076 - sys_corr_129: -0.24755169139524377 - sys_corr_130: -0.1255868452737572 - sys_corr_131: -0.5592722440441874 - sys_corr_132: -4.228557633201144 +- sys_corr_1: -0.004140634593390477 + sys_corr_2: 0.12372356456564672 + sys_corr_3: -0.29269539652029525 + sys_corr_4: 0.2852541278708472 + sys_corr_5: -0.5277458719364193 + sys_corr_6: -0.6610407381427533 + sys_corr_7: -0.06432042432167802 + sys_corr_8: 0.010566636072012808 + sys_corr_9: 0.06254328172910417 + sys_corr_10: 0.09933871619669885 + sys_corr_11: -0.013063284412539478 + sys_corr_12: -0.1934147194986864 + sys_corr_13: 0.25923076876438034 + sys_corr_14: 0.061976428767142655 + sys_corr_15: -0.021902498502330572 + sys_corr_16: 0.18307004499208193 + sys_corr_17: 0.17520105958314883 + sys_corr_18: -0.19999134680528152 + sys_corr_19: -0.33679068157476943 + sys_corr_20: -0.24212553006974885 + sys_corr_21: -0.0071466611178410576 + sys_corr_22: 0.2003311346194041 + sys_corr_23: 0.3724982255128696 + sys_corr_24: -1.0285645087568416 + sys_corr_25: -0.4944054388844928 + sys_corr_26: -0.020635226248037153 + sys_corr_27: 0.6645109943978098 + sys_corr_28: -0.5765320839411537 + sys_corr_29: -1.2721686619336148 + sys_corr_30: -0.8832390319082509 + sys_corr_31: -0.019901842308862158 + sys_corr_32: -0.026352766318780155 + sys_corr_33: 0.17116345840737254 + sys_corr_34: -0.017524337238166442 + sys_corr_35: 0.14697124619407326 + sys_corr_36: 0.007265952244432524 + sys_corr_37: 0.03109540722370989 + sys_corr_38: -0.09378541087298063 + sys_corr_39: 0.03041686677306146 + sys_corr_40: -0.1767894942617365 + sys_corr_41: 0.1881100604319555 + sys_corr_42: 0.052304681010509904 + sys_corr_43: -0.12329119377658893 + sys_corr_44: 0.11492521156086456 + sys_corr_45: 0.009748562647118835 + sys_corr_46: 0.04857009296353357 + sys_corr_47: -0.22135824728750653 + sys_corr_48: 0.5443265665913016 + sys_corr_49: -0.24095137814534998 + sys_corr_50: -0.6857390882834505 + sys_corr_51: 0.2415095034063355 + sys_corr_52: -0.16704695919004497 + sys_corr_53: -0.15106789398871348 + sys_corr_54: 0.14705289027657562 + sys_corr_55: -0.043782898720523586 + sys_corr_56: -0.0044448573834835504 + sys_corr_57: -0.022095786871472237 + sys_corr_58: 0.06335469468441408 + sys_corr_59: 0.04670762484190879 + sys_corr_60: -0.03090722927027638 + sys_corr_61: -0.016419817706318472 + sys_corr_62: 0.04212271418099897 + sys_corr_63: -0.08249623921307636 + sys_corr_64: -0.03419127600281918 + sys_corr_65: 0.05393072077829531 + sys_corr_66: -0.14032393652311964 + sys_corr_67: 0.21335332335773513 + sys_corr_68: 0.07930324818900301 + sys_corr_69: -0.008496335264041414 + sys_corr_70: 0.036974181923844676 + sys_corr_71: -0.006945036079074491 + sys_corr_72: 0.01343365248598739 + sys_corr_73: -0.08468377780593088 + sys_corr_74: -0.013507425551248013 + sys_corr_75: 0.20531100795861268 + sys_corr_76: -0.06092596737529698 + sys_corr_77: -0.1900953352483354 + sys_corr_78: 0.06999304020071094 + sys_corr_79: 0.11914272055777636 + sys_corr_80: 0.09357417873033072 + sys_corr_81: 0.021791248408021678 + sys_corr_82: -0.07591168957686896 + sys_corr_83: 0.11585247147727555 + sys_corr_84: -0.45556240980266133 + sys_corr_85: 0.21582506860299647 + sys_corr_86: 0.042623301362699435 + sys_corr_87: -0.09191872277596842 + sys_corr_88: 0.0003065928491926396 + sys_corr_89: 0.21788332808192226 + sys_corr_90: 0.11573371009135178 + sys_corr_91: 0.46147545575159776 + sys_corr_92: 0.016969151016473425 + sys_corr_93: -0.04738211529791475 + sys_corr_94: -0.1016939254426353 + sys_corr_95: -0.04544929957485832 + sys_corr_96: 0.004564384964299988 + sys_corr_97: 0.17592665137928096 + sys_corr_98: 0.0940683983116816 + sys_corr_99: 0.11683287521283378 + sys_corr_100: 0.11515745092242793 + sys_corr_101: 0.1155425197809606 + sys_corr_102: 0.34908949421674196 + sys_corr_103: -0.001869294202244325 + sys_corr_104: -0.22124494961999097 + sys_corr_105: 0.01886714206659748 + sys_corr_106: 0.011828924463217805 + sys_corr_107: -0.2837609013032969 + sys_corr_108: 0.44429390502102506 + sys_corr_109: 0.32727826269834115 + sys_corr_110: 0.09104853091025283 + sys_corr_111: 0.2184834873837009 + sys_corr_112: 0.136803628020304 + sys_corr_113: 0.11945786307603466 + sys_corr_114: 5.0181200679599405 + sys_corr_115: 0.09008357559149192 + sys_corr_116: 0.2033917819670652 + sys_corr_117: 0.26969770616985905 + sys_corr_118: -0.799051736541935 + sys_corr_119: -1.7672871644122532 + sys_corr_120: -0.24787223589889432 + sys_corr_121: -1.2676178933348383 + sys_corr_122: -1.9659249202583648 + sys_corr_123: -1.8249229019121074 + sys_corr_124: 0.1549985936785073 + sys_corr_125: 0.9307636948627704 + sys_corr_126: -1.317121802650589 + sys_corr_127: -0.012300300669126296 + sys_corr_128: -0.20244209932978172 + sys_corr_129: -0.247551691395245 + sys_corr_130: -0.12558684527332048 + sys_corr_131: 0.5592722440438592 + sys_corr_132: -4.228557633201175 stat: 0.0 luminosity: 0.473748 diff --git a/nnpdf_data/nnpdf_data/new_commondata/H1_1JET_319GEV_290PB-1_DIF/uncertainties.yaml b/nnpdf_data/nnpdf_data/new_commondata/H1_1JET_319GEV_290PB-1_DIF/uncertainties.yaml index a952843e31..a320b41333 100644 --- a/nnpdf_data/nnpdf_data/new_commondata/H1_1JET_319GEV_290PB-1_DIF/uncertainties.yaml +++ b/nnpdf_data/nnpdf_data/new_commondata/H1_1JET_319GEV_290PB-1_DIF/uncertainties.yaml @@ -459,102 +459,102 @@ bins: ModelRW_2: 12.09152595828996 JES_1: 11.549391217722254 JES_2: 11.549391217722254 - ArtUnc_1: 28.53461948130384 - ArtUnc_2: -7.123863967078527 - ArtUnc_3: -2.718126555131723 - ArtUnc_4: -0.38992848761021287 - ArtUnc_5: -0.0067074637807442525 - ArtUnc_6: 0.008283999205216913 - ArtUnc_7: -0.0007567391512449102 - ArtUnc_8: 0.2785588228961477 - ArtUnc_9: 0.0015553697559489398 - ArtUnc_10: 0.6841040029689238 - ArtUnc_11: 0.27039826133315903 - ArtUnc_12: -0.025771205810183807 - ArtUnc_13: -0.2019651073492938 - ArtUnc_14: -0.06124574938371301 - ArtUnc_15: -0.13733988140609574 - ArtUnc_16: 0.055592506460016365 - ArtUnc_17: 0.03891494291030174 - ArtUnc_18: -0.022439546494829106 - ArtUnc_19: 0.004613609699705377 - ArtUnc_20: 0.005955233470981325 - ArtUnc_21: -0.000919797110477942 - ArtUnc_22: -0.001561310882612792 - ArtUnc_23: 0.0005657803910753065 - ArtUnc_24: 0.00013845948901261996 - ArtUnc_25: -0.0015884893142737797 - ArtUnc_26: -0.002799873191823955 - ArtUnc_27: -0.012058199532830136 - ArtUnc_28: -0.0010435302393417775 - ArtUnc_29: 0.0008423840084403705 - ArtUnc_30: 0.00685468575650593 - ArtUnc_31: -0.0006563809746295895 - ArtUnc_32: -0.0033977228069870455 - ArtUnc_33: -0.001355084387744165 - ArtUnc_34: 0.0018974214458764834 - ArtUnc_35: 0.0033135972302499035 - ArtUnc_36: -0.0011026071913300026 - ArtUnc_37: -0.0002112098128054945 - ArtUnc_38: -0.00016111750143405293 - ArtUnc_39: 7.780354641443638e-06 - ArtUnc_40: -1.0949039928915275e-05 - ArtUnc_41: 0.000816245137223375 - ArtUnc_42: 0.0006595543728718285 - ArtUnc_43: -0.00019201795704490361 - ArtUnc_44: -0.00029239045544503147 - ArtUnc_45: 0.00029228857947157796 - ArtUnc_46: -0.0001495058040451832 - ArtUnc_47: -0.00034465529271012645 - ArtUnc_48: 0.00011551717262219872 - ArtUnc_49: 0.0001708533090525714 - ArtUnc_50: 0.0001364469829349886 - ArtUnc_51: 0.00014030870040233282 - ArtUnc_52: -2.172973149282298e-05 - ArtUnc_53: -2.5524966768609078e-05 - ArtUnc_54: 1.1225502356581918e-05 - ArtUnc_55: -1.49055443718135e-05 - ArtUnc_56: 9.219831701846346e-06 - ArtUnc_57: 4.691504492441189e-06 - ArtUnc_58: -7.6197052616900875e-06 - ArtUnc_59: -9.825460992185917e-06 - ArtUnc_60: -3.627685529542087e-06 - ArtUnc_61: 2.392677403828972e-06 - ArtUnc_62: 2.6175445500912144e-06 - ArtUnc_63: -1.7619189417090062e-06 - ArtUnc_64: -4.092775317851887e-06 - ArtUnc_65: -4.0074756663387494e-06 - ArtUnc_66: 2.9159524324258453e-06 - ArtUnc_67: -1.0830813048007426e-06 - ArtUnc_68: -3.596523553699565e-06 - ArtUnc_69: -2.322886166859726e-06 - ArtUnc_70: 1.561334361050154e-07 - ArtUnc_71: 6.637580118038576e-08 - ArtUnc_72: -2.5743213044265465e-07 - ArtUnc_73: -6.870695206562224e-07 - ArtUnc_74: -8.574271135635655e-07 - ArtUnc_75: -1.1569485846267584e-07 - ArtUnc_76: -6.437296749786064e-08 - ArtUnc_77: -1.8370731100060585e-07 - ArtUnc_78: 2.4335993445393443e-07 - ArtUnc_79: 3.0163122457541757e-07 - ArtUnc_80: 1.0246606463765263e-07 - ArtUnc_81: 3.8856419054492235e-08 - ArtUnc_82: -3.676040090992887e-11 - ArtUnc_83: 1.978891082722876e-08 - ArtUnc_84: -3.067811729035533e-08 - ArtUnc_85: -1.2655550615767179e-08 - ArtUnc_86: 3.768689079174495e-08 - ArtUnc_87: -3.3591322456585576e-08 - ArtUnc_88: 1.590444265428146e-08 - ArtUnc_89: 1.3221074939131933e-08 - ArtUnc_90: 5.231483778556825e-09 - ArtUnc_91: -6.979669883932993e-09 - ArtUnc_92: 6.92443228530112e-09 - ArtUnc_93: 1.493979649829139e-08 - ArtUnc_94: -1.0576092301005824e-09 - ArtUnc_95: 5.957595733315587e-09 - ArtUnc_96: 1.5437534461032975e-10 + ArtUnc_1: 28.534619481303825 + ArtUnc_2: -7.123863967078508 + ArtUnc_3: -2.7181265551317226 + ArtUnc_4: -0.3899284876102117 + ArtUnc_5: -0.00670746378074466 + ArtUnc_6: -0.008283999205217387 + ArtUnc_7: 0.0007567391512459143 + ArtUnc_8: -0.27855882289615036 + ArtUnc_9: -0.0015553697559445726 + ArtUnc_10: 0.6841040029689246 + ArtUnc_11: 0.2703982613331601 + ArtUnc_12: -0.02577120581018809 + ArtUnc_13: -0.20196510734929263 + ArtUnc_14: -0.061245749383712446 + ArtUnc_15: -0.1373398814060955 + ArtUnc_16: 0.05559250646001657 + ArtUnc_17: -0.03891494291030187 + ArtUnc_18: 0.022439546494828832 + ArtUnc_19: -0.004613609699705583 + ArtUnc_20: -0.005955233470981109 + ArtUnc_21: -0.000919797110477925 + ArtUnc_22: -0.0015613108826127554 + ArtUnc_23: -0.0005657803910752896 + ArtUnc_24: -0.00013845948901258673 + ArtUnc_25: 0.0015884893142738003 + ArtUnc_26: 0.0027998731918240935 + ArtUnc_27: 0.012058199532830109 + ArtUnc_28: 0.0010435302393417168 + ArtUnc_29: -0.0008423840084407331 + ArtUnc_30: 0.006854685756505784 + ArtUnc_31: 0.0006563809746296008 + ArtUnc_32: -0.003397722806987923 + ArtUnc_33: -0.0013550843877417945 + ArtUnc_34: -0.0018974214458767377 + ArtUnc_35: -0.0033135972302497743 + ArtUnc_36: -0.0011026071913299487 + ArtUnc_37: -0.00021120981280549925 + ArtUnc_38: 0.0001611175014340478 + ArtUnc_39: 7.780354641441171e-06 + ArtUnc_40: -1.0949039928915957e-05 + ArtUnc_41: 0.0008162451372233949 + ArtUnc_42: 0.0006595543728718163 + ArtUnc_43: -0.0001920179570449045 + ArtUnc_44: -0.00029239045544503836 + ArtUnc_45: 0.00029228857947158284 + ArtUnc_46: -0.00014950580404518931 + ArtUnc_47: 0.0003446552927101274 + ArtUnc_48: -0.00011551717262218647 + ArtUnc_49: -0.00017085330905257303 + ArtUnc_50: -0.00013644698293498577 + ArtUnc_51: 9.219831701846136e-06 + ArtUnc_52: -1.4905544371813783e-05 + ArtUnc_53: -0.00014030870040233003 + ArtUnc_54: 2.172973149282271e-05 + ArtUnc_55: 2.5524966768608532e-05 + ArtUnc_56: 1.1225502356583022e-05 + ArtUnc_57: -4.691504492441422e-06 + ArtUnc_58: 7.6197052616898715e-06 + ArtUnc_59: 9.825460992185863e-06 + ArtUnc_60: 3.627685529542029e-06 + ArtUnc_61: -2.392677403828778e-06 + ArtUnc_62: -2.617544550091262e-06 + ArtUnc_63: 1.7619189417090515e-06 + ArtUnc_64: -4.0927753178519035e-06 + ArtUnc_65: 4.0074756663388155e-06 + ArtUnc_66: 2.9159524324259093e-06 + ArtUnc_67: -1.0830813048008015e-06 + ArtUnc_68: -3.5965235536997996e-06 + ArtUnc_69: -2.322886166859595e-06 + ArtUnc_70: 2.5743213044265925e-07 + ArtUnc_71: -1.5613343610499397e-07 + ArtUnc_72: 6.637580118037731e-08 + ArtUnc_73: -6.870695206562281e-07 + ArtUnc_74: 8.574271135636011e-07 + ArtUnc_75: 1.1569485846268291e-07 + ArtUnc_76: -6.437296749786422e-08 + ArtUnc_77: -1.837073110006341e-07 + ArtUnc_78: -2.4335993445393687e-07 + ArtUnc_79: 3.0163122457542233e-07 + ArtUnc_80: -1.0246606463765234e-07 + ArtUnc_81: 3.8856419054493195e-08 + ArtUnc_82: -3.6760400909888214e-11 + ArtUnc_83: 1.978891082722819e-08 + ArtUnc_84: -3.067811729035556e-08 + ArtUnc_85: -1.2655550615766943e-08 + ArtUnc_86: -6.924432285300878e-09 + ArtUnc_87: -1.4939796498290833e-08 + ArtUnc_88: 3.768689079174396e-08 + ArtUnc_89: 3.359132245658672e-08 + ArtUnc_90: 1.590444265428233e-08 + ArtUnc_91: -5.957595733315514e-09 + ArtUnc_92: -1.0576092301003206e-09 + ArtUnc_93: 1.3221074939131718e-08 + ArtUnc_94: -5.2314837785566986e-09 + ArtUnc_95: -6.979669883933357e-09 + ArtUnc_96: 1.543753446103767e-10 - stat: 0 Uncorr: 4.38 RCES: 29.11807397064579 @@ -570,102 +570,102 @@ bins: ModelRW_2: 7.711847976976726 JES_1: 26.788324028483007 JES_2: 26.788324028483007 - ArtUnc_1: 2.297076133139009 - ArtUnc_2: -1.0892033898037945 - ArtUnc_3: -0.46266437928941223 - ArtUnc_4: 0.003459726676908899 - ArtUnc_5: -0.0702479988032363 - ArtUnc_6: 0.025635496777509318 - ArtUnc_7: 0.0011811538975454896 - ArtUnc_8: -5.698072050451222 - ArtUnc_9: -0.01838660928837008 - ArtUnc_10: -6.024756075070182 - ArtUnc_11: -2.9660838975572634 - ArtUnc_12: 0.5090423741530861 - ArtUnc_13: 1.8418379289105657 - ArtUnc_14: 0.51853845035762 - ArtUnc_15: 1.3053603129533569 - ArtUnc_16: -0.4807548269525335 - ArtUnc_17: -0.3546020620221221 - ArtUnc_18: 0.1900089641370534 - ArtUnc_19: -0.03448455438106442 - ArtUnc_20: -0.03347777181934266 - ArtUnc_21: 0.006677665520888274 - ArtUnc_22: 0.005573150621445732 - ArtUnc_23: -0.001614094874854339 - ArtUnc_24: -0.000568273667309047 - ArtUnc_25: 0.13949268880937934 - ArtUnc_26: 0.0735257804556413 - ArtUnc_27: 0.18086565126001672 - ArtUnc_28: 0.02126020679739065 - ArtUnc_29: -0.009972218314624906 - ArtUnc_30: -0.09065927398924303 - ArtUnc_31: 0.0006883162712904542 - ArtUnc_32: 0.04229196904251895 - ArtUnc_33: 0.016219675814081926 - ArtUnc_34: -0.02714390336879897 - ArtUnc_35: -0.043504078961787714 - ArtUnc_36: 0.01651470665811468 - ArtUnc_37: 0.0024434123447176818 - ArtUnc_38: 0.0029714037791766005 - ArtUnc_39: -0.0007310172834329654 - ArtUnc_40: -0.0002113625287745033 - ArtUnc_41: -0.00716087066432244 - ArtUnc_42: -0.00587695178165027 - ArtUnc_43: 0.0017314514208508663 - ArtUnc_44: 0.002553951127823668 - ArtUnc_45: -0.0025656232271245084 - ArtUnc_46: 0.0011881545478557916 - ArtUnc_47: 0.002804030604187064 - ArtUnc_48: -0.0008879580966486244 - ArtUnc_49: -0.0013691464108833973 - ArtUnc_50: -0.0011494198540057236 - ArtUnc_51: -0.0011819515239073419 - ArtUnc_52: 0.0002536231243983661 - ArtUnc_53: 0.00018472562965263277 - ArtUnc_54: -8.73983655878302e-05 - ArtUnc_55: 7.294074042155457e-05 - ArtUnc_56: -9.055078135816856e-05 - ArtUnc_57: -4.885657431811372e-05 - ArtUnc_58: 5.5139030312729935e-05 - ArtUnc_59: 0.00013839594374450177 - ArtUnc_60: 4.877085515415399e-05 - ArtUnc_61: -4.227075372782918e-05 - ArtUnc_62: -2.8700177521540744e-05 - ArtUnc_63: 2.380380668656732e-05 - ArtUnc_64: 5.132418586798756e-05 - ArtUnc_65: 5.261628114177773e-05 - ArtUnc_66: -3.8834498081222535e-05 - ArtUnc_67: 1.3491744321720766e-05 - ArtUnc_68: 3.742843080220253e-05 - ArtUnc_69: 2.0431367214920775e-05 - ArtUnc_70: -7.380420140614505e-07 - ArtUnc_71: -1.1211342621343872e-06 - ArtUnc_72: 6.037085275243379e-07 - ArtUnc_73: 7.3257684432416824e-06 - ArtUnc_74: 8.91679159433491e-06 - ArtUnc_75: 1.162861834698764e-06 - ArtUnc_76: 6.250625946348372e-07 - ArtUnc_77: 1.8200635034374447e-06 - ArtUnc_78: -2.5253370700758245e-06 - ArtUnc_79: -3.227347634136561e-06 - ArtUnc_80: -9.159003097231446e-07 - ArtUnc_81: -3.472046352210964e-07 - ArtUnc_82: 8.06392582351291e-10 - ArtUnc_83: -2.002810595725193e-07 - ArtUnc_84: 2.56765894718828e-07 - ArtUnc_85: 1.2916345002614962e-07 - ArtUnc_86: -4.2204082732703897e-07 - ArtUnc_87: 3.5825707537556616e-07 - ArtUnc_88: -1.3673297886086651e-07 - ArtUnc_89: -1.2730479200691235e-07 - ArtUnc_90: -5.8950569248484984e-08 - ArtUnc_91: 3.969493521176897e-08 - ArtUnc_92: -5.4068451479893034e-08 - ArtUnc_93: -1.388648088096199e-07 - ArtUnc_94: 9.722202506316362e-09 - ArtUnc_95: -5.3828040959302966e-08 - ArtUnc_96: 4.001083540114983e-09 + ArtUnc_1: 2.2970761331390066 + ArtUnc_2: -1.0892033898037916 + ArtUnc_3: -0.4626643792894114 + ArtUnc_4: 0.0034597266768986723 + ArtUnc_5: -0.07024799880322546 + ArtUnc_6: -0.025635496777499604 + ArtUnc_7: -0.0011811538975831683 + ArtUnc_8: 5.698072050451249 + ArtUnc_9: 0.01838660928832924 + ArtUnc_10: -6.02475607507018 + ArtUnc_11: -2.9660838975572674 + ArtUnc_12: 0.509042374153124 + ArtUnc_13: 1.8418379289105533 + ArtUnc_14: 0.5185384503576153 + ArtUnc_15: 1.3053603129533584 + ArtUnc_16: -0.48075482695253724 + ArtUnc_17: 0.3546020620221246 + ArtUnc_18: -0.19000896413705118 + ArtUnc_19: 0.03448455438106577 + ArtUnc_20: 0.0334777718193411 + ArtUnc_21: 0.00667766552088803 + ArtUnc_22: 0.005573150621444783 + ArtUnc_23: 0.0016140948748548712 + ArtUnc_24: 0.000568273667308521 + ArtUnc_25: -0.13949268880938007 + ArtUnc_26: -0.07352578045564359 + ArtUnc_27: -0.1808656512600164 + ArtUnc_28: -0.021260206797389925 + ArtUnc_29: 0.00997221831462979 + ArtUnc_30: -0.09065927398924134 + ArtUnc_31: -0.0006883162712905388 + ArtUnc_32: 0.04229196904252959 + ArtUnc_33: 0.01621967581405243 + ArtUnc_34: 0.027143903368802316 + ArtUnc_35: 0.04350407896178598 + ArtUnc_36: 0.016514706658114008 + ArtUnc_37: 0.0024434123447177863 + ArtUnc_38: -0.002971403779176569 + ArtUnc_39: -0.0007310172834329555 + ArtUnc_40: -0.00021136252877450334 + ArtUnc_41: -0.007160870664322624 + ArtUnc_42: -0.005876951781650189 + ArtUnc_43: 0.0017314514208508819 + ArtUnc_44: 0.002553951127823745 + ArtUnc_45: -0.0025656232271245513 + ArtUnc_46: 0.0011881545478558493 + ArtUnc_47: -0.002804030604187082 + ArtUnc_48: 0.0008879580966485295 + ArtUnc_49: 0.001369146410883418 + ArtUnc_50: 0.0011494198540057063 + ArtUnc_51: -9.055078135816814e-05 + ArtUnc_52: 7.294074042155794e-05 + ArtUnc_53: 0.001181951523907321 + ArtUnc_54: -0.00025362312439836495 + ArtUnc_55: -0.00018472562965263104 + ArtUnc_56: -8.739836558783833e-05 + ArtUnc_57: 4.885657431811609e-05 + ArtUnc_58: -5.51390303127279e-05 + ArtUnc_59: -0.00013839594374450153 + ArtUnc_60: -4.877085515415337e-05 + ArtUnc_61: 4.22707537278272e-05 + ArtUnc_62: 2.8700177521542225e-05 + ArtUnc_63: -2.3803806686567963e-05 + ArtUnc_64: 5.132418586798827e-05 + ArtUnc_65: -5.261628114177895e-05 + ArtUnc_66: -3.88344980812236e-05 + ArtUnc_67: 1.3491744321721498e-05 + ArtUnc_68: 3.7428430802205095e-05 + ArtUnc_69: 2.0431367214919684e-05 + ArtUnc_70: -6.037085275244034e-07 + ArtUnc_71: 7.380420140613976e-07 + ArtUnc_72: -1.1211342621343135e-06 + ArtUnc_73: 7.325768443241816e-06 + ArtUnc_74: -8.916791594335334e-06 + ArtUnc_75: -1.162861834698842e-06 + ArtUnc_76: 6.250625946348806e-07 + ArtUnc_77: 1.82006350343776e-06 + ArtUnc_78: 2.525337070075889e-06 + ArtUnc_79: -3.227347634136641e-06 + ArtUnc_80: 9.159003097231551e-07 + ArtUnc_81: -3.4720463522110955e-07 + ArtUnc_82: 8.063925823509818e-10 + ArtUnc_83: -2.002810595725168e-07 + ArtUnc_84: 2.5676589471883596e-07 + ArtUnc_85: 1.2916345002614888e-07 + ArtUnc_86: 5.406845147989175e-08 + ArtUnc_87: 1.3886480880961782e-07 + ArtUnc_88: -4.220408273270315e-07 + ArtUnc_89: -3.5825707537558045e-07 + ArtUnc_90: -1.3673297886087641e-07 + ArtUnc_91: 5.3828040959303416e-08 + ArtUnc_92: 9.722202506314322e-09 + ArtUnc_93: -1.2730479200691123e-07 + ArtUnc_94: 5.895056924848404e-08 + ArtUnc_95: 3.96949352117729e-08 + ArtUnc_96: 4.001083540114452e-09 - stat: 0 Uncorr: 1.06 RCES: 0.9778894978472771 @@ -681,102 +681,102 @@ bins: ModelRW_2: 2.5184315118740073 JES_1: 3.7530643126650527 JES_2: 3.7530643126650527 - ArtUnc_1: -0.0009965196005386932 - ArtUnc_2: -0.0490763710144604 - ArtUnc_3: -0.047564970547462816 - ArtUnc_4: -0.013756699974386742 - ArtUnc_5: 0.0013405642217338104 - ArtUnc_6: 0.00038667537064925343 - ArtUnc_7: 0.00012760105811892577 - ArtUnc_8: -0.31731888380211215 - ArtUnc_9: -0.0011592755697405527 - ArtUnc_10: -0.4504172181733019 - ArtUnc_11: -0.21373373716518707 - ArtUnc_12: 0.07390984381923715 - ArtUnc_13: 0.15323462967136534 - ArtUnc_14: 0.016725144962615363 - ArtUnc_15: 0.061541096508847544 - ArtUnc_16: 0.0012801800918939162 - ArtUnc_17: 0.01019751389634067 - ArtUnc_18: 0.003646885619794577 - ArtUnc_19: 0.007440900959470505 - ArtUnc_20: -0.030597234662372658 - ArtUnc_21: 0.01992090985890483 - ArtUnc_22: -0.008080984027201168 - ArtUnc_23: 0.0025137026103077445 - ArtUnc_24: -0.00041309541960145876 - ArtUnc_25: 0.7665401298664348 - ArtUnc_26: -0.20904621147771893 - ArtUnc_27: -2.472266072161976 - ArtUnc_28: 0.2963104198978536 - ArtUnc_29: 0.2289045278005049 - ArtUnc_30: 1.0542185366477328 - ArtUnc_31: 0.028303682128789087 - ArtUnc_32: -0.4932083605436826 - ArtUnc_33: -0.13788572623234713 - ArtUnc_34: 0.2784114116994266 - ArtUnc_35: 0.47389759816721194 - ArtUnc_36: -0.17395524785263045 - ArtUnc_37: -0.029441826176746566 - ArtUnc_38: -0.02962185468097465 - ArtUnc_39: 0.003793759664381692 - ArtUnc_40: 0.000617116973854914 - ArtUnc_41: 0.07130678915444245 - ArtUnc_42: 0.09783409895431039 - ArtUnc_43: -0.00251864351554638 - ArtUnc_44: -0.02557340624368057 - ArtUnc_45: 0.03679531486118423 - ArtUnc_46: -0.0032245074874930045 - ArtUnc_47: -0.022428942333149526 - ArtUnc_48: -0.002745702202360223 - ArtUnc_49: 0.013380306228957502 - ArtUnc_50: 0.016804630618115865 - ArtUnc_51: 0.016114514223098075 - ArtUnc_52: -0.00524029381954212 - ArtUnc_53: -0.0029677086312849287 - ArtUnc_54: 0.0001902632252158602 - ArtUnc_55: -0.0005791249759598457 - ArtUnc_56: 0.0006300547084760401 - ArtUnc_57: -0.0002804429750602387 - ArtUnc_58: 0.0018944439314549104 - ArtUnc_59: -0.0013271820680700972 - ArtUnc_60: -0.00035204867711393723 - ArtUnc_61: 0.0014031938044521042 - ArtUnc_62: -0.0002882139019710647 - ArtUnc_63: -0.0005940507007868716 - ArtUnc_64: -8.61814497537013e-05 - ArtUnc_65: -0.00027621386915058997 - ArtUnc_66: 0.0008705951659873406 - ArtUnc_67: -0.0002900155986531735 - ArtUnc_68: -0.0010883729771620856 - ArtUnc_69: -0.0005855436480219128 - ArtUnc_70: 0.00010782019438672839 - ArtUnc_71: 7.085871654984603e-05 - ArtUnc_72: -3.89122163738746e-05 - ArtUnc_73: -9.267549343752526e-06 - ArtUnc_74: -1.0338450946925255e-05 - ArtUnc_75: -2.5984669077541534e-06 - ArtUnc_76: -3.7953189242007785e-06 - ArtUnc_77: -6.080111235028886e-06 - ArtUnc_78: 1.1459432837723044e-05 - ArtUnc_79: 1.3531736033283021e-05 - ArtUnc_80: -4.785256084645539e-06 - ArtUnc_81: -1.4476474117621292e-06 - ArtUnc_82: 8.717567938833966e-09 - ArtUnc_83: 2.1625432339053885e-06 - ArtUnc_84: 1.4245958021684796e-06 - ArtUnc_85: -1.5918227317217163e-06 - ArtUnc_86: 1.70581822952215e-06 - ArtUnc_87: -1.638206806189619e-06 - ArtUnc_88: -2.8779633835817855e-07 - ArtUnc_89: -5.728647448866196e-08 - ArtUnc_90: 7.621759654344365e-07 - ArtUnc_91: 4.1672703857240277e-08 - ArtUnc_92: -2.0337474318313564e-06 - ArtUnc_93: -1.5086338157836613e-06 - ArtUnc_94: 6.715287876038684e-08 - ArtUnc_95: -4.343963169364552e-07 - ArtUnc_96: -2.8880854045614826e-07 + ArtUnc_1: -0.0009965196005386923 + ArtUnc_2: -0.04907637101446047 + ArtUnc_3: -0.04756497054746269 + ArtUnc_4: -0.013756699974385526 + ArtUnc_5: 0.0013405642217313753 + ArtUnc_6: -0.0003866753706473783 + ArtUnc_7: -0.00012760105812504135 + ArtUnc_8: 0.3173188838021138 + ArtUnc_9: 0.0011592755697388047 + ArtUnc_10: -0.45041721817330066 + ArtUnc_11: -0.2137337371651879 + ArtUnc_12: 0.07390984381923797 + ArtUnc_13: 0.15323462967136156 + ArtUnc_14: 0.016725144962614295 + ArtUnc_15: 0.06154109650884441 + ArtUnc_16: 0.0012801800918984287 + ArtUnc_17: -0.010197513896344924 + ArtUnc_18: -0.0036468856197927895 + ArtUnc_19: -0.007440900959471428 + ArtUnc_20: 0.030597234662372387 + ArtUnc_21: 0.01992090985890962 + ArtUnc_22: -0.008080984027201216 + ArtUnc_23: -0.002513702610298424 + ArtUnc_24: 0.0004130954196040905 + ArtUnc_25: -0.7665401298664287 + ArtUnc_26: 0.20904621147775262 + ArtUnc_27: 2.4722660721619834 + ArtUnc_28: -0.2963104198978628 + ArtUnc_29: -0.22890452780055967 + ArtUnc_30: 1.0542185366477073 + ArtUnc_31: -0.028303682128787668 + ArtUnc_32: -0.49320836054377415 + ArtUnc_33: -0.1378857262320036 + ArtUnc_34: -0.27841141169946304 + ArtUnc_35: -0.4738975981671955 + ArtUnc_36: -0.17395524785262387 + ArtUnc_37: -0.02944182617674767 + ArtUnc_38: 0.029621854680974245 + ArtUnc_39: 0.0037937596643816225 + ArtUnc_40: 0.0006171169738548413 + ArtUnc_41: 0.07130678915444527 + ArtUnc_42: 0.09783409895430999 + ArtUnc_43: -0.0025186435155468063 + ArtUnc_44: -0.025573406243681544 + ArtUnc_45: 0.03679531486118474 + ArtUnc_46: -0.003224507487493442 + ArtUnc_47: 0.022428942333149793 + ArtUnc_48: 0.0027457022023610472 + ArtUnc_49: -0.013380306228957847 + ArtUnc_50: -0.01680463061811569 + ArtUnc_51: 0.0006300547084760256 + ArtUnc_52: -0.0005791249759598666 + ArtUnc_53: -0.016114514223097707 + ArtUnc_54: 0.005240293819542083 + ArtUnc_55: 0.002967708631284937 + ArtUnc_56: 0.00019026322521595404 + ArtUnc_57: 0.0002804429750602793 + ArtUnc_58: -0.001894443931454924 + ArtUnc_59: 0.0013271820680700766 + ArtUnc_60: 0.00035204867711393067 + ArtUnc_61: -0.0014031938044521107 + ArtUnc_62: 0.000288213901971008 + ArtUnc_63: 0.0005940507007868716 + ArtUnc_64: -8.618144975369645e-05 + ArtUnc_65: 0.0002762138691505921 + ArtUnc_66: 0.0008705951659873383 + ArtUnc_67: -0.0002900155986531886 + ArtUnc_68: -0.001088372977162145 + ArtUnc_69: -0.0005855436480218688 + ArtUnc_70: 3.891221637388164e-05 + ArtUnc_71: -0.00010782019438672507 + ArtUnc_72: 7.085871654984114e-05 + ArtUnc_73: -9.26754934375886e-06 + ArtUnc_74: 1.0338450946933556e-05 + ArtUnc_75: 2.5984669077553655e-06 + ArtUnc_76: -3.7953189242014587e-06 + ArtUnc_77: -6.080111235031745e-06 + ArtUnc_78: -1.145943283772544e-05 + ArtUnc_79: 1.3531736033285865e-05 + ArtUnc_80: 4.785256084644365e-06 + ArtUnc_81: -1.4476474117618153e-06 + ArtUnc_82: 8.717567938832361e-09 + ArtUnc_83: 2.1625432339056964e-06 + ArtUnc_84: 1.4245958021681639e-06 + ArtUnc_85: -1.5918227317219126e-06 + ArtUnc_86: 2.033747431831262e-06 + ArtUnc_87: 1.5086338157833956e-06 + ArtUnc_88: 1.705818229522455e-06 + ArtUnc_89: 1.6382068061899532e-06 + ArtUnc_90: -2.8779633835803196e-07 + ArtUnc_91: 4.3439631693636184e-07 + ArtUnc_92: 6.715287876035183e-08 + ArtUnc_93: -5.728647448855988e-08 + ArtUnc_94: -7.621759654344934e-07 + ArtUnc_95: 4.1672703857164295e-08 + ArtUnc_96: -2.8880854045615154e-07 - stat: 0 Uncorr: 0.18100000000000002 RCES: 0.1497686137847313 @@ -792,102 +792,102 @@ bins: ModelRW_2: 0.6232934144125061 JES_1: 0.6682087586226328 JES_2: 0.6682087586226328 - ArtUnc_1: 0.00048222324563112324 - ArtUnc_2: -0.00045481936606475335 - ArtUnc_3: -0.00028651499613534676 - ArtUnc_4: -5.045932370837303e-06 - ArtUnc_5: -6.963204243240137e-05 - ArtUnc_6: 3.525407986547766e-05 - ArtUnc_7: 7.335364810789872e-07 - ArtUnc_8: -0.011353917117131667 - ArtUnc_9: -4.218063182215126e-05 - ArtUnc_10: -0.015707934389066276 - ArtUnc_11: -0.009803885316949507 - ArtUnc_12: 0.002153699370555611 - ArtUnc_13: 0.00753284433765608 - ArtUnc_14: 0.0021950944042568345 - ArtUnc_15: 0.006046097250410136 - ArtUnc_16: -0.002311692799103495 - ArtUnc_17: -0.0017171120266755752 - ArtUnc_18: 0.0010288977453567977 - ArtUnc_19: -0.00011311504002507693 - ArtUnc_20: -0.0005321726757169514 - ArtUnc_21: 0.00031996106432857584 - ArtUnc_22: -9.23556488693514e-05 - ArtUnc_23: 4.181140486327824e-05 - ArtUnc_24: -1.9034702199728612e-05 - ArtUnc_25: 0.020487758169370637 - ArtUnc_26: -0.011574866257633072 - ArtUnc_27: -0.08912912698772604 - ArtUnc_28: 0.008665626267010507 - ArtUnc_29: 0.006635338253214907 - ArtUnc_30: 0.02794587681218538 - ArtUnc_31: 0.000977229749718423 - ArtUnc_32: -0.010216142199214729 - ArtUnc_33: -0.002845330035775146 - ArtUnc_34: 0.005570333273643814 - ArtUnc_35: 0.009662654568295312 - ArtUnc_36: -0.004528737722650618 - ArtUnc_37: -0.0012038460339397936 - ArtUnc_38: -0.0018731277432523967 - ArtUnc_39: 0.0008503564209477177 - ArtUnc_40: 0.000138445622024803 - ArtUnc_41: 0.663849568643789 - ArtUnc_42: -0.5706914172499961 - ArtUnc_43: -0.3775614838740124 - ArtUnc_44: -0.03501730818426179 - ArtUnc_45: -0.22079268371283478 - ArtUnc_46: -0.15556486625569363 - ArtUnc_47: -0.03878286742300643 - ArtUnc_48: 0.1792366648952618 - ArtUnc_49: -0.054283781528397274 - ArtUnc_50: -0.13242443389466826 - ArtUnc_51: -0.13148541911448722 - ArtUnc_52: 0.048082372908605085 - ArtUnc_53: 0.03475140647080293 - ArtUnc_54: 0.0036341293741232877 - ArtUnc_55: 0.007711552695186414 - ArtUnc_56: -0.003416335306032307 - ArtUnc_57: 0.008015429032454417 - ArtUnc_58: -0.04296678302902025 - ArtUnc_59: 0.021593356391990164 - ArtUnc_60: 0.005088828565798807 - ArtUnc_61: -0.024094100946152837 - ArtUnc_62: 0.006406534115998357 - ArtUnc_63: 0.009260583805346435 - ArtUnc_64: -0.0007324592001936841 - ArtUnc_65: 0.0023102409510445264 - ArtUnc_66: -0.011795995784537588 - ArtUnc_67: 0.0037988107609475724 - ArtUnc_68: 0.014005992450294541 - ArtUnc_69: 0.007273315267392656 - ArtUnc_70: -0.001466337672531976 - ArtUnc_71: -0.0009929230225180076 - ArtUnc_72: 0.00042293942566536656 - ArtUnc_73: 0.00011844704664032813 - ArtUnc_74: 0.00023022953652045142 - ArtUnc_75: 5.280533255610051e-05 - ArtUnc_76: 5.8320312563029384e-05 - ArtUnc_77: 0.00013664656253661587 - ArtUnc_78: -0.0002258553331687576 - ArtUnc_79: -0.0003222283740100807 - ArtUnc_80: 8.560658591627343e-05 - ArtUnc_81: 2.7635731751350576e-05 - ArtUnc_82: -1.4471079941618696e-07 - ArtUnc_83: -4.849242745558435e-05 - ArtUnc_84: -2.73851982751988e-05 - ArtUnc_85: 3.691156820800472e-05 - ArtUnc_86: -3.2808291692025e-05 - ArtUnc_87: 5.063474698032525e-05 - ArtUnc_88: 5.9404921856279335e-06 - ArtUnc_89: 1.3945197108891403e-05 - ArtUnc_90: -1.976061848848475e-05 - ArtUnc_91: 5.4158037246835686e-06 - ArtUnc_92: 4.5856356459877216e-05 - ArtUnc_93: 3.282889882737818e-05 - ArtUnc_94: -1.5861418317529727e-06 - ArtUnc_95: 9.969375328917745e-06 - ArtUnc_96: 8.099606377265982e-06 + ArtUnc_1: 0.00048222324563112264 + ArtUnc_2: -0.0004548193660647549 + ArtUnc_3: -0.000286514996135342 + ArtUnc_4: -5.045932370756765e-06 + ArtUnc_5: -6.963204243240928e-05 + ArtUnc_6: -3.525407986559304e-05 + ArtUnc_7: -7.335364812501672e-07 + ArtUnc_8: 0.011353917117131688 + ArtUnc_9: 4.218063182166823e-05 + ArtUnc_10: -0.015707934389066265 + ArtUnc_11: -0.009803885316949498 + ArtUnc_12: 0.0021536993705559898 + ArtUnc_13: 0.007532844337655942 + ArtUnc_14: 0.0021950944042568683 + ArtUnc_15: 0.006046097250410134 + ArtUnc_16: -0.0023116927991033214 + ArtUnc_17: 0.0017171120266754247 + ArtUnc_18: -0.0010288977453566045 + ArtUnc_19: 0.00011311504002460291 + ArtUnc_20: 0.0005321726757171317 + ArtUnc_21: 0.00031996106432853085 + ArtUnc_22: -9.235564886922412e-05 + ArtUnc_23: -4.181140486276274e-05 + ArtUnc_24: 1.90347021989865e-05 + ArtUnc_25: -0.020487758169369312 + ArtUnc_26: 0.011574866257633931 + ArtUnc_27: 0.08912912698772603 + ArtUnc_28: -0.008665626267010482 + ArtUnc_29: -0.006635338253216263 + ArtUnc_30: 0.027945876812184477 + ArtUnc_31: -0.0009772297497179653 + ArtUnc_32: -0.010216142199216087 + ArtUnc_33: -0.002845330035767449 + ArtUnc_34: -0.005570333273645624 + ArtUnc_35: -0.009662654568296104 + ArtUnc_36: -0.004528737722651677 + ArtUnc_37: -0.0012038460339396265 + ArtUnc_38: 0.0018731277432525726 + ArtUnc_39: 0.0008503564209471586 + ArtUnc_40: 0.00013844562202529199 + ArtUnc_41: 0.6638495686437801 + ArtUnc_42: -0.5706914172500034 + ArtUnc_43: -0.37756148387400784 + ArtUnc_44: -0.03501730818425852 + ArtUnc_45: -0.22079268371283536 + ArtUnc_46: -0.1555648662556946 + ArtUnc_47: 0.03878286742300583 + ArtUnc_48: -0.17923666489526285 + ArtUnc_49: 0.05428378152839977 + ArtUnc_50: 0.1324244338946672 + ArtUnc_51: -0.003416335306031974 + ArtUnc_52: 0.007711552695186313 + ArtUnc_53: 0.13148541911448347 + ArtUnc_54: -0.04808237290860438 + ArtUnc_55: -0.03475140647080258 + ArtUnc_56: 0.003634129374122391 + ArtUnc_57: -0.008015429032455383 + ArtUnc_58: 0.042966783029020544 + ArtUnc_59: -0.021593356391989723 + ArtUnc_60: -0.005088828565798671 + ArtUnc_61: 0.024094100946153038 + ArtUnc_62: -0.006406534115997293 + ArtUnc_63: -0.009260583805346423 + ArtUnc_64: -0.0007324592001938286 + ArtUnc_65: -0.0023102409510445 + ArtUnc_66: -0.011795995784537529 + ArtUnc_67: 0.003798810760947751 + ArtUnc_68: 0.014005992450295192 + ArtUnc_69: 0.0072733152673920285 + ArtUnc_70: -0.0004229394256654641 + ArtUnc_71: 0.0014663376725319356 + ArtUnc_72: -0.0009929230225179458 + ArtUnc_73: 0.00011844704664039685 + ArtUnc_74: -0.00023022953652054892 + ArtUnc_75: -5.280533255611597e-05 + ArtUnc_76: 5.8320312563038125e-05 + ArtUnc_77: 0.00013664656253665832 + ArtUnc_78: 0.00022585533316878535 + ArtUnc_79: -0.0003222283740101118 + ArtUnc_80: -8.560658591625873e-05 + ArtUnc_81: 2.7635731751347974e-05 + ArtUnc_82: -1.4471079941616133e-07 + ArtUnc_83: -4.8492427455588045e-05 + ArtUnc_84: -2.7385198275194944e-05 + ArtUnc_85: 3.691156820800699e-05 + ArtUnc_86: -4.585635645987649e-05 + ArtUnc_87: -3.282889882737541e-05 + ArtUnc_88: -3.2808291692027684e-05 + ArtUnc_89: -5.063474698032896e-05 + ArtUnc_90: 5.940492185626315e-06 + ArtUnc_91: -9.96937532891693e-06 + ArtUnc_92: -1.5861418317524066e-06 + ArtUnc_93: 1.394519710889056e-05 + ArtUnc_94: 1.976061848848542e-05 + ArtUnc_95: 5.415803724684479e-06 + ArtUnc_96: 8.099606377266068e-06 - stat: 0 Uncorr: 0.0216 RCES: 0.05579368222299009 @@ -903,102 +903,102 @@ bins: ModelRW_2: 0.09301565442440321 JES_1: 0.12244914072381236 JES_2: 0.12244914072381236 - ArtUnc_1: 8.284240535459945e-05 - ArtUnc_2: -7.143652520747548e-05 - ArtUnc_3: -4.293910641632099e-05 - ArtUnc_4: 9.189147705404e-07 - ArtUnc_5: -1.1683924773492631e-05 - ArtUnc_6: 5.437220127168312e-06 - ArtUnc_7: 3.1867886787515996e-07 - ArtUnc_8: -0.001750767579044543 - ArtUnc_9: -6.320894995004844e-06 - ArtUnc_10: -0.0023152786563023536 - ArtUnc_11: -0.0015122601857190162 - ArtUnc_12: 0.00028672664141823575 - ArtUnc_13: 0.001170713781008741 - ArtUnc_14: 0.00037400319118559457 - ArtUnc_15: 0.0010149982650400344 - ArtUnc_16: -0.0004244565163136573 - ArtUnc_17: -0.00034015178709350026 - ArtUnc_18: 0.00019293282009014468 - ArtUnc_19: -4.3545110517268796e-05 - ArtUnc_20: -3.082354649522926e-05 - ArtUnc_21: 1.7465997791860596e-06 - ArtUnc_22: 1.2057399180629462e-05 - ArtUnc_23: -4.49174474318245e-06 - ArtUnc_24: -9.79744710511551e-07 - ArtUnc_25: -0.00020738105703601545 - ArtUnc_26: 0.000423076135428493 - ArtUnc_27: 0.003193753895059643 - ArtUnc_28: -0.0002789218703016149 - ArtUnc_29: -0.0003826943616379029 - ArtUnc_30: -0.002112576370727655 - ArtUnc_31: -4.6340652522069066e-05 - ArtUnc_32: 0.0012541085350817492 - ArtUnc_33: 0.00037808859529180923 - ArtUnc_34: -0.0008401347196621201 - ArtUnc_35: -0.001437235721419083 - ArtUnc_36: 0.0005759556505316176 - ArtUnc_37: 9.800053871529871e-05 - ArtUnc_38: 0.00010495865631075194 - ArtUnc_39: -1.4606526389308009e-05 - ArtUnc_40: -3.996192470531904e-06 - ArtUnc_41: 0.011750948973267745 - ArtUnc_42: -0.015575601828046928 - ArtUnc_43: -0.0041891881277658785 - ArtUnc_44: 0.0011989486168135766 - ArtUnc_45: -0.0023379869035208283 - ArtUnc_46: 0.0001545301319618089 - ArtUnc_47: 0.000555931868146022 - ArtUnc_48: -2.71013976006483e-05 - ArtUnc_49: 0.00020626001420983263 - ArtUnc_50: 5.820870463682508e-05 - ArtUnc_51: 0.00014939065649090851 - ArtUnc_52: 9.672127646830308e-05 - ArtUnc_53: 1.109866188438674e-05 - ArtUnc_54: 1.7388712029753375e-05 - ArtUnc_55: 2.554443969099818e-05 - ArtUnc_56: -1.6662171502083667e-05 - ArtUnc_57: 0.11990698671213056 - ArtUnc_58: -0.16304725262959285 - ArtUnc_59: -0.2330672324039735 - ArtUnc_60: -0.08346872670813604 - ArtUnc_61: 0.0561300422126411 - ArtUnc_62: 0.05180044908507952 - ArtUnc_63: -0.03058943537058552 - ArtUnc_64: -0.08155023196137727 - ArtUnc_65: -0.07903336729866804 - ArtUnc_66: 0.045303057260935316 - ArtUnc_67: -0.013349390116759171 - ArtUnc_68: -0.02640805009968987 - ArtUnc_69: -0.012559102862259879 - ArtUnc_70: 0.0003946408968876557 - ArtUnc_71: 0.0015003052226944262 - ArtUnc_72: -0.0011507880480597812 - ArtUnc_73: -0.016644764783269997 - ArtUnc_74: -0.01751538637366093 - ArtUnc_75: -0.0022558265607425017 - ArtUnc_76: 0.0004613325151309625 - ArtUnc_77: -0.003493613132642539 - ArtUnc_78: 0.002690829307184598 - ArtUnc_79: 0.006560964965245627 - ArtUnc_80: -0.00094481817009344 - ArtUnc_81: -0.00044521757762512745 - ArtUnc_82: 9.185677018423849e-08 - ArtUnc_83: -0.00011809609694400983 - ArtUnc_84: 0.0005436643903216545 - ArtUnc_85: 6.64884406015711e-05 - ArtUnc_86: 0.0003553342130206749 - ArtUnc_87: -0.0010106515967770208 - ArtUnc_88: -0.00013932834585072567 - ArtUnc_89: -4.664789298302181e-05 - ArtUnc_90: 0.0005146245491329366 - ArtUnc_91: -0.00012595303709050655 - ArtUnc_92: -4.825610490853249e-05 - ArtUnc_93: -7.071954635315597e-05 - ArtUnc_94: 3.920061732910895e-06 - ArtUnc_95: -2.3758346408525107e-05 - ArtUnc_96: 1.3968545028193236e-06 + ArtUnc_1: 8.284240535459942e-05 + ArtUnc_2: -7.143652520747553e-05 + ArtUnc_3: -4.2939106416322474e-05 + ArtUnc_4: 9.189147705604213e-07 + ArtUnc_5: -1.168392477351611e-05 + ArtUnc_6: -5.437220127116407e-06 + ArtUnc_7: -3.186788680124188e-07 + ArtUnc_8: 0.0017507675790445158 + ArtUnc_9: 6.3208949947927375e-06 + ArtUnc_10: -0.0023152786563023693 + ArtUnc_11: -0.001512260185718958 + ArtUnc_12: 0.0002867266414185476 + ArtUnc_13: 0.0011707137810086823 + ArtUnc_14: 0.00037400319118526687 + ArtUnc_15: 0.0010149982650403862 + ArtUnc_16: -0.0004244565163130159 + ArtUnc_17: 0.00034015178709396565 + ArtUnc_18: -0.000192932820089954 + ArtUnc_19: 4.354511051629244e-05 + ArtUnc_20: 3.082354649563666e-05 + ArtUnc_21: 1.7465997797400437e-06 + ArtUnc_22: 1.2057399180159132e-05 + ArtUnc_23: 4.491744744461753e-06 + ArtUnc_24: 9.79744710611963e-07 + ArtUnc_25: 0.000207381057035519 + ArtUnc_26: -0.0004230761354287319 + ArtUnc_27: -0.0031937538950595834 + ArtUnc_28: 0.0002789218703015377 + ArtUnc_29: 0.0003826943616382765 + ArtUnc_30: -0.0021125763707275347 + ArtUnc_31: 4.634065252060755e-05 + ArtUnc_32: 0.0012541085350820632 + ArtUnc_33: 0.0003780885952905535 + ArtUnc_34: 0.0008401347196628806 + ArtUnc_35: 0.0014372357214196374 + ArtUnc_36: 0.0005759556505313191 + ArtUnc_37: 9.800053871621878e-05 + ArtUnc_38: -0.0001049586563108525 + ArtUnc_39: -1.4606526390462278e-05 + ArtUnc_40: -3.996192469797755e-06 + ArtUnc_41: 0.011750948973270116 + ArtUnc_42: -0.015575601828048118 + ArtUnc_43: -0.004189188127765207 + ArtUnc_44: 0.0011989486168144544 + ArtUnc_45: -0.002337986903522328 + ArtUnc_46: 0.00015453013196292003 + ArtUnc_47: -0.0005559318681489714 + ArtUnc_48: 2.7101397601735106e-05 + ArtUnc_49: -0.00020626001420911725 + ArtUnc_50: -5.820870463632121e-05 + ArtUnc_51: -1.6662171501764027e-05 + ArtUnc_52: 2.5544439689513627e-05 + ArtUnc_53: -0.00014939065649154743 + ArtUnc_54: -9.672127646801581e-05 + ArtUnc_55: -1.1098661883805367e-05 + ArtUnc_56: 1.7388712030098158e-05 + ArtUnc_57: -0.11990698671213583 + ArtUnc_58: 0.1630472526295877 + ArtUnc_59: 0.23306723240397223 + ArtUnc_60: 0.08346872670813442 + ArtUnc_61: -0.05613004221263735 + ArtUnc_62: -0.0518004490850811 + ArtUnc_63: 0.030589435370586383 + ArtUnc_64: -0.08155023196137762 + ArtUnc_65: 0.07903336729866912 + ArtUnc_66: 0.04530305726093659 + ArtUnc_67: -0.013349390116759653 + ArtUnc_68: -0.0264080500996915 + ArtUnc_69: -0.012559102862259136 + ArtUnc_70: 0.0011507880480598309 + ArtUnc_71: -0.00039464089688755454 + ArtUnc_72: 0.0015003052226943954 + ArtUnc_73: -0.01664476478326977 + ArtUnc_74: 0.017515386373661138 + ArtUnc_75: 0.0022558265607425716 + ArtUnc_76: 0.00046133251513093 + ArtUnc_77: -0.0034936131326428277 + ArtUnc_78: -0.0026908293071845365 + ArtUnc_79: 0.006560964965245572 + ArtUnc_80: 0.0009448181700934723 + ArtUnc_81: -0.00044521757762517754 + ArtUnc_82: 9.185677018507984e-08 + ArtUnc_83: -0.00011809609694401655 + ArtUnc_84: 0.0005436643903216629 + ArtUnc_85: 6.648844060157769e-05 + ArtUnc_86: 4.8256104908536475e-05 + ArtUnc_87: 7.071954635315663e-05 + ArtUnc_88: 0.00035533421302064275 + ArtUnc_89: 0.00101065159677701 + ArtUnc_90: -0.00013932834585073713 + ArtUnc_91: 2.375834640852458e-05 + ArtUnc_92: 3.920061732908886e-06 + ArtUnc_93: -4.664789298303528e-05 + ArtUnc_94: -0.0005146245491329366 + ArtUnc_95: -0.00012595303709050904 + ArtUnc_96: 1.3968545028191379e-06 - stat: 0 Uncorr: 0.0032600000000000003 RCES: 0.008554798430705425 @@ -1014,102 +1014,102 @@ bins: ModelRW_2: 0.0016136176746677012 JES_1: 0.0276391170013624 JES_2: 0.0276391170013624 - ArtUnc_1: -8.737694534121226e-10 - ArtUnc_2: 1.646459406432666e-09 - ArtUnc_3: 1.5950511990297585e-09 - ArtUnc_4: 1.304097411534912e-10 - ArtUnc_5: 5.508080194962333e-10 - ArtUnc_6: -3.7671139811463697e-10 - ArtUnc_7: -1.2766550800524874e-11 - ArtUnc_8: 1.831855433562771e-07 - ArtUnc_9: 7.59841523925736e-10 - ArtUnc_10: 3.172515480713826e-07 - ArtUnc_11: 2.644748786934261e-07 - ArtUnc_12: -5.4907586638807504e-08 - ArtUnc_13: -2.718473923424106e-07 - ArtUnc_14: -9.213717981734448e-08 - ArtUnc_15: -2.7243632993552247e-07 - ArtUnc_16: 1.2069090293084262e-07 - ArtUnc_17: 9.887766630746757e-08 - ArtUnc_18: -6.492169166503194e-08 - ArtUnc_19: 1.0089425734632696e-08 - ArtUnc_20: 3.782777691680796e-08 - ArtUnc_21: -2.4942538803657166e-08 - ArtUnc_22: 7.1820777657191135e-09 - ArtUnc_23: -4.737267003279405e-09 - ArtUnc_24: 2.6786010092417603e-09 - ArtUnc_25: -2.9575991000909014e-06 - ArtUnc_26: 2.4109347240861037e-06 - ArtUnc_27: 1.9589600326097696e-05 - ArtUnc_28: -2.1605117265004075e-06 - ArtUnc_29: -1.866721069813087e-06 - ArtUnc_30: -8.220576699275737e-06 - ArtUnc_31: -3.148499519731872e-07 - ArtUnc_32: 3.566962795196321e-06 - ArtUnc_33: 9.91053259509128e-07 - ArtUnc_34: -2.229321893011696e-06 - ArtUnc_35: -3.988495166844839e-06 - ArtUnc_36: 2.166989013686728e-06 - ArtUnc_37: 6.645354509139063e-07 - ArtUnc_38: 1.1370711387899895e-06 - ArtUnc_39: -6.259626810449045e-07 - ArtUnc_40: -1.139598981769818e-07 - ArtUnc_41: -0.0011137227426165602 - ArtUnc_42: 0.001141607145327685 - ArtUnc_43: 0.0008346508307615107 - ArtUnc_44: 8.6019434785856e-05 - ArtUnc_45: 0.0005798205279119712 - ArtUnc_46: 0.0004383472277824593 - ArtUnc_47: 0.00012074281722233053 - ArtUnc_48: -0.0005528749315808311 - ArtUnc_49: 0.00017207676192542085 - ArtUnc_50: 0.0004507527380131445 - ArtUnc_51: 0.00048763024663606885 - ArtUnc_52: -0.00018684558503820846 - ArtUnc_53: -0.00015388762592656805 - ArtUnc_54: -1.818698188722652e-05 - ArtUnc_55: -4.812354390019649e-05 - ArtUnc_56: 2.5089994914974807e-05 - ArtUnc_57: 0.004004969220651188 - ArtUnc_58: -0.0036072664081089937 - ArtUnc_59: -0.004505974454369955 - ArtUnc_60: -0.0013454969700595991 - ArtUnc_61: 0.000818722134420752 - ArtUnc_62: 0.00031123049440000554 - ArtUnc_63: -0.0002862908683742836 - ArtUnc_64: -0.00031524814064586633 - ArtUnc_65: -0.00036836388364806913 - ArtUnc_66: 0.0002982348981039499 - ArtUnc_67: -0.00015023875584110896 - ArtUnc_68: -0.0006147404317043047 - ArtUnc_69: -0.0005233603568171549 - ArtUnc_70: 8.244916610592315e-05 - ArtUnc_71: 0.000149859393634602 - ArtUnc_72: -0.0001969746047289603 - ArtUnc_73: 0.003804818333467311 - ArtUnc_74: 0.0007028573295871507 - ArtUnc_75: -0.0011840866023423537 - ArtUnc_76: 0.028353481601100815 - ArtUnc_77: -0.005216149143443748 - ArtUnc_78: -0.06222596545671067 - ArtUnc_79: 0.015037693794520234 - ArtUnc_80: 0.026302069053069095 - ArtUnc_81: 0.014767802765716851 - ArtUnc_82: -1.172977938891221e-06 - ArtUnc_83: -0.006403768686471259 - ArtUnc_84: -0.017996315182303758 - ArtUnc_85: 0.004758655675668418 - ArtUnc_86: -0.0433753782945244 - ArtUnc_87: 0.02937958362476692 - ArtUnc_88: 0.0073881170622491854 - ArtUnc_89: -0.030648055619916185 - ArtUnc_90: -0.013312031052442995 - ArtUnc_91: 0.0008653673756016006 - ArtUnc_92: 0.005074421813299009 - ArtUnc_93: 0.0028297512649376163 - ArtUnc_94: -0.0001033480450327636 - ArtUnc_95: 0.0007635967238544992 - ArtUnc_96: 0.001045600489105708 + ArtUnc_1: -8.737694534121229e-10 + ArtUnc_2: 1.6464594064326736e-09 + ArtUnc_3: 1.5950511990295304e-09 + ArtUnc_4: 1.3040974115525698e-10 + ArtUnc_5: 5.508080194611627e-10 + ArtUnc_6: 3.7671139816293967e-10 + ArtUnc_7: 1.2766550907783893e-11 + ArtUnc_8: -1.8318554335628124e-07 + ArtUnc_9: -7.598415241707395e-10 + ArtUnc_10: 3.172515480713788e-07 + ArtUnc_11: 2.644748786934402e-07 + ArtUnc_12: -5.490758663839249e-08 + ArtUnc_13: -2.718473923425416e-07 + ArtUnc_14: -9.213717981691248e-08 + ArtUnc_15: -2.724363299357123e-07 + ArtUnc_16: 1.2069090292989235e-07 + ArtUnc_17: -9.887766630843156e-08 + ArtUnc_18: 6.492169166509936e-08 + ArtUnc_19: -1.0089425732864725e-08 + ArtUnc_20: -3.7827776916724463e-08 + ArtUnc_21: -2.494253881503824e-08 + ArtUnc_22: 7.18207777277124e-09 + ArtUnc_23: 4.737266987816121e-09 + ArtUnc_24: -2.6786010019964452e-09 + ArtUnc_25: 2.9575991000873583e-06 + ArtUnc_26: -2.4109347240891293e-06 + ArtUnc_27: -1.958960032609601e-05 + ArtUnc_28: 2.1605117264882275e-06 + ArtUnc_29: 1.866721069826176e-06 + ArtUnc_30: -8.22057669927223e-06 + ArtUnc_31: 3.1484995192426904e-07 + ArtUnc_32: 3.566962795179308e-06 + ArtUnc_33: 9.910532595307408e-07 + ArtUnc_34: 2.229321892986007e-06 + ArtUnc_35: 3.9884951668698356e-06 + ArtUnc_36: 2.166989013651135e-06 + ArtUnc_37: 6.645354509858519e-07 + ArtUnc_38: -1.137071138773637e-06 + ArtUnc_39: -6.259626810669443e-07 + ArtUnc_40: -1.139598981579064e-07 + ArtUnc_41: -0.0011137227426165804 + ArtUnc_42: 0.001141607145327739 + ArtUnc_43: 0.0008346508307614627 + ArtUnc_44: 8.601943478581479e-05 + ArtUnc_45: 0.0005798205279119543 + ArtUnc_46: 0.0004383472277824721 + ArtUnc_47: -0.00012074281722239596 + ArtUnc_48: 0.000552874931580836 + ArtUnc_49: -0.00017207676192544896 + ArtUnc_50: -0.0004507527380131608 + ArtUnc_51: 2.508999491499608e-05 + ArtUnc_52: -4.8123543900225626e-05 + ArtUnc_53: -0.0004876302466361276 + ArtUnc_54: 0.00018684558503821334 + ArtUnc_55: 0.00015388762592659022 + ArtUnc_56: -1.8186981887229775e-05 + ArtUnc_57: -0.004004969220651377 + ArtUnc_58: 0.003607266408108926 + ArtUnc_59: 0.004505974454370048 + ArtUnc_60: 0.001345496970059587 + ArtUnc_61: -0.0008187221344207724 + ArtUnc_62: -0.0003112304944000799 + ArtUnc_63: 0.0002862908683742685 + ArtUnc_64: -0.0003152481406459922 + ArtUnc_65: 0.0003683638836481357 + ArtUnc_66: 0.0002982348981041299 + ArtUnc_67: -0.0001502387558411166 + ArtUnc_68: -0.0006147404317045237 + ArtUnc_69: -0.0005233603568172246 + ArtUnc_70: 0.00019697460472897514 + ArtUnc_71: -8.244916610588482e-05 + ArtUnc_72: 0.00014985939363457848 + ArtUnc_73: 0.0038048183334672874 + ArtUnc_74: -0.0007028573295874387 + ArtUnc_75: 0.0011840866023422926 + ArtUnc_76: 0.02835348160110081 + ArtUnc_77: -0.005216149143439307 + ArtUnc_78: 0.06222596545671097 + ArtUnc_79: 0.015037693794521264 + ArtUnc_80: -0.026302069053068946 + ArtUnc_81: 0.01476780276571734 + ArtUnc_82: -1.1729779388745412e-06 + ArtUnc_83: -0.006403768686471221 + ArtUnc_84: -0.017996315182303557 + ArtUnc_85: 0.004758655675668427 + ArtUnc_86: -0.005074421813299028 + ArtUnc_87: -0.002829751264937561 + ArtUnc_88: -0.04337537829452347 + ArtUnc_89: -0.029379583624767714 + ArtUnc_90: 0.007388117062249002 + ArtUnc_91: -0.0007635967238545224 + ArtUnc_92: -0.00010334804503274076 + ArtUnc_93: -0.030648055619916178 + ArtUnc_94: 0.01331203105244284 + ArtUnc_95: 0.0008653673756013533 + ArtUnc_96: 0.001045600489105698 - stat: 0 Uncorr: 10.8 RCES: 45.40022502146878 @@ -1125,102 +1125,102 @@ bins: ModelRW_2: 35.28179995408398 JES_1: 5.739262670413335 JES_2: 5.739262670413335 - ArtUnc_1: 28.53461948130384 - ArtUnc_2: -7.123863967078527 - ArtUnc_3: -2.718126555131723 - ArtUnc_4: -0.38992848761021287 - ArtUnc_5: -0.0067074637807442525 - ArtUnc_6: 0.008283999205216913 - ArtUnc_7: -0.0007567391512449102 - ArtUnc_8: 0.2785588228961477 - ArtUnc_9: 0.0015553697559489398 - ArtUnc_10: 0.6841040029689238 - ArtUnc_11: 0.27039826133315903 - ArtUnc_12: -0.025771205810183807 - ArtUnc_13: -0.2019651073492938 - ArtUnc_14: -0.06124574938371301 - ArtUnc_15: -0.13733988140609574 - ArtUnc_16: 0.055592506460016365 - ArtUnc_17: 0.03891494291030174 - ArtUnc_18: -0.022439546494829106 - ArtUnc_19: 0.004613609699705377 - ArtUnc_20: 0.005955233470981325 - ArtUnc_21: -0.000919797110477942 - ArtUnc_22: -0.001561310882612792 - ArtUnc_23: 0.0005657803910753065 - ArtUnc_24: 0.00013845948901261996 - ArtUnc_25: -0.0015884893142737797 - ArtUnc_26: -0.002799873191823955 - ArtUnc_27: -0.012058199532830136 - ArtUnc_28: -0.0010435302393417775 - ArtUnc_29: 0.0008423840084403705 - ArtUnc_30: 0.00685468575650593 - ArtUnc_31: -0.0006563809746295895 - ArtUnc_32: -0.0033977228069870455 - ArtUnc_33: -0.001355084387744165 - ArtUnc_34: 0.0018974214458764834 - ArtUnc_35: 0.0033135972302499035 - ArtUnc_36: -0.0011026071913300026 - ArtUnc_37: -0.0002112098128054945 - ArtUnc_38: -0.00016111750143405293 - ArtUnc_39: 7.780354641443638e-06 - ArtUnc_40: -1.0949039928915275e-05 - ArtUnc_41: 0.000816245137223375 - ArtUnc_42: 0.0006595543728718285 - ArtUnc_43: -0.00019201795704490361 - ArtUnc_44: -0.00029239045544503147 - ArtUnc_45: 0.00029228857947157796 - ArtUnc_46: -0.0001495058040451832 - ArtUnc_47: -0.00034465529271012645 - ArtUnc_48: 0.00011551717262219872 - ArtUnc_49: 0.0001708533090525714 - ArtUnc_50: 0.0001364469829349886 - ArtUnc_51: 0.00014030870040233282 - ArtUnc_52: -2.172973149282298e-05 - ArtUnc_53: -2.5524966768609078e-05 - ArtUnc_54: 1.1225502356581918e-05 - ArtUnc_55: -1.49055443718135e-05 - ArtUnc_56: 9.219831701846346e-06 - ArtUnc_57: 4.691504492441189e-06 - ArtUnc_58: -7.6197052616900875e-06 - ArtUnc_59: -9.825460992185917e-06 - ArtUnc_60: -3.627685529542087e-06 - ArtUnc_61: 2.392677403828972e-06 - ArtUnc_62: 2.6175445500912144e-06 - ArtUnc_63: -1.7619189417090062e-06 - ArtUnc_64: -4.092775317851887e-06 - ArtUnc_65: -4.0074756663387494e-06 - ArtUnc_66: 2.9159524324258453e-06 - ArtUnc_67: -1.0830813048007426e-06 - ArtUnc_68: -3.596523553699565e-06 - ArtUnc_69: -2.322886166859726e-06 - ArtUnc_70: 1.561334361050154e-07 - ArtUnc_71: 6.637580118038576e-08 - ArtUnc_72: -2.5743213044265465e-07 - ArtUnc_73: -6.870695206562224e-07 - ArtUnc_74: -8.574271135635655e-07 - ArtUnc_75: -1.1569485846267584e-07 - ArtUnc_76: -6.437296749786064e-08 - ArtUnc_77: -1.8370731100060585e-07 - ArtUnc_78: 2.4335993445393443e-07 - ArtUnc_79: 3.0163122457541757e-07 - ArtUnc_80: 1.0246606463765263e-07 - ArtUnc_81: 3.8856419054492235e-08 - ArtUnc_82: -3.676040090992887e-11 - ArtUnc_83: 1.978891082722876e-08 - ArtUnc_84: -3.067811729035533e-08 - ArtUnc_85: -1.2655550615767179e-08 - ArtUnc_86: 3.768689079174495e-08 - ArtUnc_87: -3.3591322456585576e-08 - ArtUnc_88: 1.590444265428146e-08 - ArtUnc_89: 1.3221074939131933e-08 - ArtUnc_90: 5.231483778556825e-09 - ArtUnc_91: -6.979669883932993e-09 - ArtUnc_92: 6.92443228530112e-09 - ArtUnc_93: 1.493979649829139e-08 - ArtUnc_94: -1.0576092301005824e-09 - ArtUnc_95: 5.957595733315587e-09 - ArtUnc_96: 1.5437534461032975e-10 + ArtUnc_1: 28.534619481303825 + ArtUnc_2: -7.123863967078508 + ArtUnc_3: -2.7181265551317226 + ArtUnc_4: -0.3899284876102117 + ArtUnc_5: -0.00670746378074466 + ArtUnc_6: -0.008283999205217387 + ArtUnc_7: 0.0007567391512459143 + ArtUnc_8: -0.27855882289615036 + ArtUnc_9: -0.0015553697559445726 + ArtUnc_10: 0.6841040029689246 + ArtUnc_11: 0.2703982613331601 + ArtUnc_12: -0.02577120581018809 + ArtUnc_13: -0.20196510734929263 + ArtUnc_14: -0.061245749383712446 + ArtUnc_15: -0.1373398814060955 + ArtUnc_16: 0.05559250646001657 + ArtUnc_17: -0.03891494291030187 + ArtUnc_18: 0.022439546494828832 + ArtUnc_19: -0.004613609699705583 + ArtUnc_20: -0.005955233470981109 + ArtUnc_21: -0.000919797110477925 + ArtUnc_22: -0.0015613108826127554 + ArtUnc_23: -0.0005657803910752896 + ArtUnc_24: -0.00013845948901258673 + ArtUnc_25: 0.0015884893142738003 + ArtUnc_26: 0.0027998731918240935 + ArtUnc_27: 0.012058199532830109 + ArtUnc_28: 0.0010435302393417168 + ArtUnc_29: -0.0008423840084407331 + ArtUnc_30: 0.006854685756505784 + ArtUnc_31: 0.0006563809746296008 + ArtUnc_32: -0.003397722806987923 + ArtUnc_33: -0.0013550843877417945 + ArtUnc_34: -0.0018974214458767377 + ArtUnc_35: -0.0033135972302497743 + ArtUnc_36: -0.0011026071913299487 + ArtUnc_37: -0.00021120981280549925 + ArtUnc_38: 0.0001611175014340478 + ArtUnc_39: 7.780354641441171e-06 + ArtUnc_40: -1.0949039928915957e-05 + ArtUnc_41: 0.0008162451372233949 + ArtUnc_42: 0.0006595543728718163 + ArtUnc_43: -0.0001920179570449045 + ArtUnc_44: -0.00029239045544503836 + ArtUnc_45: 0.00029228857947158284 + ArtUnc_46: -0.00014950580404518931 + ArtUnc_47: 0.0003446552927101274 + ArtUnc_48: -0.00011551717262218647 + ArtUnc_49: -0.00017085330905257303 + ArtUnc_50: -0.00013644698293498577 + ArtUnc_51: 9.219831701846136e-06 + ArtUnc_52: -1.4905544371813783e-05 + ArtUnc_53: -0.00014030870040233003 + ArtUnc_54: 2.172973149282271e-05 + ArtUnc_55: 2.5524966768608532e-05 + ArtUnc_56: 1.1225502356583022e-05 + ArtUnc_57: -4.691504492441422e-06 + ArtUnc_58: 7.6197052616898715e-06 + ArtUnc_59: 9.825460992185863e-06 + ArtUnc_60: 3.627685529542029e-06 + ArtUnc_61: -2.392677403828778e-06 + ArtUnc_62: -2.617544550091262e-06 + ArtUnc_63: 1.7619189417090515e-06 + ArtUnc_64: -4.0927753178519035e-06 + ArtUnc_65: 4.0074756663388155e-06 + ArtUnc_66: 2.9159524324259093e-06 + ArtUnc_67: -1.0830813048008015e-06 + ArtUnc_68: -3.5965235536997996e-06 + ArtUnc_69: -2.322886166859595e-06 + ArtUnc_70: 2.5743213044265925e-07 + ArtUnc_71: -1.5613343610499397e-07 + ArtUnc_72: 6.637580118037731e-08 + ArtUnc_73: -6.870695206562281e-07 + ArtUnc_74: 8.574271135636011e-07 + ArtUnc_75: 1.1569485846268291e-07 + ArtUnc_76: -6.437296749786422e-08 + ArtUnc_77: -1.837073110006341e-07 + ArtUnc_78: -2.4335993445393687e-07 + ArtUnc_79: 3.0163122457542233e-07 + ArtUnc_80: -1.0246606463765234e-07 + ArtUnc_81: 3.8856419054493195e-08 + ArtUnc_82: -3.6760400909888214e-11 + ArtUnc_83: 1.978891082722819e-08 + ArtUnc_84: -3.067811729035556e-08 + ArtUnc_85: -1.2655550615766943e-08 + ArtUnc_86: -6.924432285300878e-09 + ArtUnc_87: -1.4939796498290833e-08 + ArtUnc_88: 3.768689079174396e-08 + ArtUnc_89: 3.359132245658672e-08 + ArtUnc_90: 1.590444265428233e-08 + ArtUnc_91: -5.957595733315514e-09 + ArtUnc_92: -1.0576092301003206e-09 + ArtUnc_93: 1.3221074939131718e-08 + ArtUnc_94: -5.2314837785566986e-09 + ArtUnc_95: -6.979669883933357e-09 + ArtUnc_96: 1.543753446103767e-10 - stat: 0 Uncorr: 3.61 RCES: 13.585536075087356 @@ -1236,102 +1236,102 @@ bins: ModelRW_2: 6.330585590606922 JES_1: 19.421074463678625 JES_2: 19.421074463678625 - ArtUnc_1: 2.297076133139009 - ArtUnc_2: -1.0892033898037945 - ArtUnc_3: -0.46266437928941223 - ArtUnc_4: 0.003459726676908899 - ArtUnc_5: -0.0702479988032363 - ArtUnc_6: 0.025635496777509318 - ArtUnc_7: 0.0011811538975454896 - ArtUnc_8: -5.698072050451222 - ArtUnc_9: -0.01838660928837008 - ArtUnc_10: -6.024756075070182 - ArtUnc_11: -2.9660838975572634 - ArtUnc_12: 0.5090423741530861 - ArtUnc_13: 1.8418379289105657 - ArtUnc_14: 0.51853845035762 - ArtUnc_15: 1.3053603129533569 - ArtUnc_16: -0.4807548269525335 - ArtUnc_17: -0.3546020620221221 - ArtUnc_18: 0.1900089641370534 - ArtUnc_19: -0.03448455438106442 - ArtUnc_20: -0.03347777181934266 - ArtUnc_21: 0.006677665520888274 - ArtUnc_22: 0.005573150621445732 - ArtUnc_23: -0.001614094874854339 - ArtUnc_24: -0.000568273667309047 - ArtUnc_25: 0.13949268880937934 - ArtUnc_26: 0.0735257804556413 - ArtUnc_27: 0.18086565126001672 - ArtUnc_28: 0.02126020679739065 - ArtUnc_29: -0.009972218314624906 - ArtUnc_30: -0.09065927398924303 - ArtUnc_31: 0.0006883162712904542 - ArtUnc_32: 0.04229196904251895 - ArtUnc_33: 0.016219675814081926 - ArtUnc_34: -0.02714390336879897 - ArtUnc_35: -0.043504078961787714 - ArtUnc_36: 0.01651470665811468 - ArtUnc_37: 0.0024434123447176818 - ArtUnc_38: 0.0029714037791766005 - ArtUnc_39: -0.0007310172834329654 - ArtUnc_40: -0.0002113625287745033 - ArtUnc_41: -0.00716087066432244 - ArtUnc_42: -0.00587695178165027 - ArtUnc_43: 0.0017314514208508663 - ArtUnc_44: 0.002553951127823668 - ArtUnc_45: -0.0025656232271245084 - ArtUnc_46: 0.0011881545478557916 - ArtUnc_47: 0.002804030604187064 - ArtUnc_48: -0.0008879580966486244 - ArtUnc_49: -0.0013691464108833973 - ArtUnc_50: -0.0011494198540057236 - ArtUnc_51: -0.0011819515239073419 - ArtUnc_52: 0.0002536231243983661 - ArtUnc_53: 0.00018472562965263277 - ArtUnc_54: -8.73983655878302e-05 - ArtUnc_55: 7.294074042155457e-05 - ArtUnc_56: -9.055078135816856e-05 - ArtUnc_57: -4.885657431811372e-05 - ArtUnc_58: 5.5139030312729935e-05 - ArtUnc_59: 0.00013839594374450177 - ArtUnc_60: 4.877085515415399e-05 - ArtUnc_61: -4.227075372782918e-05 - ArtUnc_62: -2.8700177521540744e-05 - ArtUnc_63: 2.380380668656732e-05 - ArtUnc_64: 5.132418586798756e-05 - ArtUnc_65: 5.261628114177773e-05 - ArtUnc_66: -3.8834498081222535e-05 - ArtUnc_67: 1.3491744321720766e-05 - ArtUnc_68: 3.742843080220253e-05 - ArtUnc_69: 2.0431367214920775e-05 - ArtUnc_70: -7.380420140614505e-07 - ArtUnc_71: -1.1211342621343872e-06 - ArtUnc_72: 6.037085275243379e-07 - ArtUnc_73: 7.3257684432416824e-06 - ArtUnc_74: 8.91679159433491e-06 - ArtUnc_75: 1.162861834698764e-06 - ArtUnc_76: 6.250625946348372e-07 - ArtUnc_77: 1.8200635034374447e-06 - ArtUnc_78: -2.5253370700758245e-06 - ArtUnc_79: -3.227347634136561e-06 - ArtUnc_80: -9.159003097231446e-07 - ArtUnc_81: -3.472046352210964e-07 - ArtUnc_82: 8.06392582351291e-10 - ArtUnc_83: -2.002810595725193e-07 - ArtUnc_84: 2.56765894718828e-07 - ArtUnc_85: 1.2916345002614962e-07 - ArtUnc_86: -4.2204082732703897e-07 - ArtUnc_87: 3.5825707537556616e-07 - ArtUnc_88: -1.3673297886086651e-07 - ArtUnc_89: -1.2730479200691235e-07 - ArtUnc_90: -5.8950569248484984e-08 - ArtUnc_91: 3.969493521176897e-08 - ArtUnc_92: -5.4068451479893034e-08 - ArtUnc_93: -1.388648088096199e-07 - ArtUnc_94: 9.722202506316362e-09 - ArtUnc_95: -5.3828040959302966e-08 - ArtUnc_96: 4.001083540114983e-09 + ArtUnc_1: 2.2970761331390066 + ArtUnc_2: -1.0892033898037916 + ArtUnc_3: -0.4626643792894114 + ArtUnc_4: 0.0034597266768986723 + ArtUnc_5: -0.07024799880322546 + ArtUnc_6: -0.025635496777499604 + ArtUnc_7: -0.0011811538975831683 + ArtUnc_8: 5.698072050451249 + ArtUnc_9: 0.01838660928832924 + ArtUnc_10: -6.02475607507018 + ArtUnc_11: -2.9660838975572674 + ArtUnc_12: 0.509042374153124 + ArtUnc_13: 1.8418379289105533 + ArtUnc_14: 0.5185384503576153 + ArtUnc_15: 1.3053603129533584 + ArtUnc_16: -0.48075482695253724 + ArtUnc_17: 0.3546020620221246 + ArtUnc_18: -0.19000896413705118 + ArtUnc_19: 0.03448455438106577 + ArtUnc_20: 0.0334777718193411 + ArtUnc_21: 0.00667766552088803 + ArtUnc_22: 0.005573150621444783 + ArtUnc_23: 0.0016140948748548712 + ArtUnc_24: 0.000568273667308521 + ArtUnc_25: -0.13949268880938007 + ArtUnc_26: -0.07352578045564359 + ArtUnc_27: -0.1808656512600164 + ArtUnc_28: -0.021260206797389925 + ArtUnc_29: 0.00997221831462979 + ArtUnc_30: -0.09065927398924134 + ArtUnc_31: -0.0006883162712905388 + ArtUnc_32: 0.04229196904252959 + ArtUnc_33: 0.01621967581405243 + ArtUnc_34: 0.027143903368802316 + ArtUnc_35: 0.04350407896178598 + ArtUnc_36: 0.016514706658114008 + ArtUnc_37: 0.0024434123447177863 + ArtUnc_38: -0.002971403779176569 + ArtUnc_39: -0.0007310172834329555 + ArtUnc_40: -0.00021136252877450334 + ArtUnc_41: -0.007160870664322624 + ArtUnc_42: -0.005876951781650189 + ArtUnc_43: 0.0017314514208508819 + ArtUnc_44: 0.002553951127823745 + ArtUnc_45: -0.0025656232271245513 + ArtUnc_46: 0.0011881545478558493 + ArtUnc_47: -0.002804030604187082 + ArtUnc_48: 0.0008879580966485295 + ArtUnc_49: 0.001369146410883418 + ArtUnc_50: 0.0011494198540057063 + ArtUnc_51: -9.055078135816814e-05 + ArtUnc_52: 7.294074042155794e-05 + ArtUnc_53: 0.001181951523907321 + ArtUnc_54: -0.00025362312439836495 + ArtUnc_55: -0.00018472562965263104 + ArtUnc_56: -8.739836558783833e-05 + ArtUnc_57: 4.885657431811609e-05 + ArtUnc_58: -5.51390303127279e-05 + ArtUnc_59: -0.00013839594374450153 + ArtUnc_60: -4.877085515415337e-05 + ArtUnc_61: 4.22707537278272e-05 + ArtUnc_62: 2.8700177521542225e-05 + ArtUnc_63: -2.3803806686567963e-05 + ArtUnc_64: 5.132418586798827e-05 + ArtUnc_65: -5.261628114177895e-05 + ArtUnc_66: -3.88344980812236e-05 + ArtUnc_67: 1.3491744321721498e-05 + ArtUnc_68: 3.7428430802205095e-05 + ArtUnc_69: 2.0431367214919684e-05 + ArtUnc_70: -6.037085275244034e-07 + ArtUnc_71: 7.380420140613976e-07 + ArtUnc_72: -1.1211342621343135e-06 + ArtUnc_73: 7.325768443241816e-06 + ArtUnc_74: -8.916791594335334e-06 + ArtUnc_75: -1.162861834698842e-06 + ArtUnc_76: 6.250625946348806e-07 + ArtUnc_77: 1.82006350343776e-06 + ArtUnc_78: 2.525337070075889e-06 + ArtUnc_79: -3.227347634136641e-06 + ArtUnc_80: 9.159003097231551e-07 + ArtUnc_81: -3.4720463522110955e-07 + ArtUnc_82: 8.063925823509818e-10 + ArtUnc_83: -2.002810595725168e-07 + ArtUnc_84: 2.5676589471883596e-07 + ArtUnc_85: 1.2916345002614888e-07 + ArtUnc_86: 5.406845147989175e-08 + ArtUnc_87: 1.3886480880961782e-07 + ArtUnc_88: -4.220408273270315e-07 + ArtUnc_89: -3.5825707537558045e-07 + ArtUnc_90: -1.3673297886087641e-07 + ArtUnc_91: 5.3828040959303416e-08 + ArtUnc_92: 9.722202506314322e-09 + ArtUnc_93: -1.2730479200691123e-07 + ArtUnc_94: 5.895056924848404e-08 + ArtUnc_95: 3.96949352117729e-08 + ArtUnc_96: 4.001083540114452e-09 - stat: 0 Uncorr: 0.848 RCES: 0.746179770296676 @@ -1347,102 +1347,102 @@ bins: ModelRW_2: 0.6955667985175831 JES_1: 2.318997057695417 JES_2: 2.318997057695417 - ArtUnc_1: -0.0009965196005386932 - ArtUnc_2: -0.0490763710144604 - ArtUnc_3: -0.047564970547462816 - ArtUnc_4: -0.013756699974386742 - ArtUnc_5: 0.0013405642217338104 - ArtUnc_6: 0.00038667537064925343 - ArtUnc_7: 0.00012760105811892577 - ArtUnc_8: -0.31731888380211215 - ArtUnc_9: -0.0011592755697405527 - ArtUnc_10: -0.4504172181733019 - ArtUnc_11: -0.21373373716518707 - ArtUnc_12: 0.07390984381923715 - ArtUnc_13: 0.15323462967136534 - ArtUnc_14: 0.016725144962615363 - ArtUnc_15: 0.061541096508847544 - ArtUnc_16: 0.0012801800918939162 - ArtUnc_17: 0.01019751389634067 - ArtUnc_18: 0.003646885619794577 - ArtUnc_19: 0.007440900959470505 - ArtUnc_20: -0.030597234662372658 - ArtUnc_21: 0.01992090985890483 - ArtUnc_22: -0.008080984027201168 - ArtUnc_23: 0.0025137026103077445 - ArtUnc_24: -0.00041309541960145876 - ArtUnc_25: 0.7665401298664348 - ArtUnc_26: -0.20904621147771893 - ArtUnc_27: -2.472266072161976 - ArtUnc_28: 0.2963104198978536 - ArtUnc_29: 0.2289045278005049 - ArtUnc_30: 1.0542185366477328 - ArtUnc_31: 0.028303682128789087 - ArtUnc_32: -0.4932083605436826 - ArtUnc_33: -0.13788572623234713 - ArtUnc_34: 0.2784114116994266 - ArtUnc_35: 0.47389759816721194 - ArtUnc_36: -0.17395524785263045 - ArtUnc_37: -0.029441826176746566 - ArtUnc_38: -0.02962185468097465 - ArtUnc_39: 0.003793759664381692 - ArtUnc_40: 0.000617116973854914 - ArtUnc_41: 0.07130678915444245 - ArtUnc_42: 0.09783409895431039 - ArtUnc_43: -0.00251864351554638 - ArtUnc_44: -0.02557340624368057 - ArtUnc_45: 0.03679531486118423 - ArtUnc_46: -0.0032245074874930045 - ArtUnc_47: -0.022428942333149526 - ArtUnc_48: -0.002745702202360223 - ArtUnc_49: 0.013380306228957502 - ArtUnc_50: 0.016804630618115865 - ArtUnc_51: 0.016114514223098075 - ArtUnc_52: -0.00524029381954212 - ArtUnc_53: -0.0029677086312849287 - ArtUnc_54: 0.0001902632252158602 - ArtUnc_55: -0.0005791249759598457 - ArtUnc_56: 0.0006300547084760401 - ArtUnc_57: -0.0002804429750602387 - ArtUnc_58: 0.0018944439314549104 - ArtUnc_59: -0.0013271820680700972 - ArtUnc_60: -0.00035204867711393723 - ArtUnc_61: 0.0014031938044521042 - ArtUnc_62: -0.0002882139019710647 - ArtUnc_63: -0.0005940507007868716 - ArtUnc_64: -8.61814497537013e-05 - ArtUnc_65: -0.00027621386915058997 - ArtUnc_66: 0.0008705951659873406 - ArtUnc_67: -0.0002900155986531735 - ArtUnc_68: -0.0010883729771620856 - ArtUnc_69: -0.0005855436480219128 - ArtUnc_70: 0.00010782019438672839 - ArtUnc_71: 7.085871654984603e-05 - ArtUnc_72: -3.89122163738746e-05 - ArtUnc_73: -9.267549343752526e-06 - ArtUnc_74: -1.0338450946925255e-05 - ArtUnc_75: -2.5984669077541534e-06 - ArtUnc_76: -3.7953189242007785e-06 - ArtUnc_77: -6.080111235028886e-06 - ArtUnc_78: 1.1459432837723044e-05 - ArtUnc_79: 1.3531736033283021e-05 - ArtUnc_80: -4.785256084645539e-06 - ArtUnc_81: -1.4476474117621292e-06 - ArtUnc_82: 8.717567938833966e-09 - ArtUnc_83: 2.1625432339053885e-06 - ArtUnc_84: 1.4245958021684796e-06 - ArtUnc_85: -1.5918227317217163e-06 - ArtUnc_86: 1.70581822952215e-06 - ArtUnc_87: -1.638206806189619e-06 - ArtUnc_88: -2.8779633835817855e-07 - ArtUnc_89: -5.728647448866196e-08 - ArtUnc_90: 7.621759654344365e-07 - ArtUnc_91: 4.1672703857240277e-08 - ArtUnc_92: -2.0337474318313564e-06 - ArtUnc_93: -1.5086338157836613e-06 - ArtUnc_94: 6.715287876038684e-08 - ArtUnc_95: -4.343963169364552e-07 - ArtUnc_96: -2.8880854045614826e-07 + ArtUnc_1: -0.0009965196005386923 + ArtUnc_2: -0.04907637101446047 + ArtUnc_3: -0.04756497054746269 + ArtUnc_4: -0.013756699974385526 + ArtUnc_5: 0.0013405642217313753 + ArtUnc_6: -0.0003866753706473783 + ArtUnc_7: -0.00012760105812504135 + ArtUnc_8: 0.3173188838021138 + ArtUnc_9: 0.0011592755697388047 + ArtUnc_10: -0.45041721817330066 + ArtUnc_11: -0.2137337371651879 + ArtUnc_12: 0.07390984381923797 + ArtUnc_13: 0.15323462967136156 + ArtUnc_14: 0.016725144962614295 + ArtUnc_15: 0.06154109650884441 + ArtUnc_16: 0.0012801800918984287 + ArtUnc_17: -0.010197513896344924 + ArtUnc_18: -0.0036468856197927895 + ArtUnc_19: -0.007440900959471428 + ArtUnc_20: 0.030597234662372387 + ArtUnc_21: 0.01992090985890962 + ArtUnc_22: -0.008080984027201216 + ArtUnc_23: -0.002513702610298424 + ArtUnc_24: 0.0004130954196040905 + ArtUnc_25: -0.7665401298664287 + ArtUnc_26: 0.20904621147775262 + ArtUnc_27: 2.4722660721619834 + ArtUnc_28: -0.2963104198978628 + ArtUnc_29: -0.22890452780055967 + ArtUnc_30: 1.0542185366477073 + ArtUnc_31: -0.028303682128787668 + ArtUnc_32: -0.49320836054377415 + ArtUnc_33: -0.1378857262320036 + ArtUnc_34: -0.27841141169946304 + ArtUnc_35: -0.4738975981671955 + ArtUnc_36: -0.17395524785262387 + ArtUnc_37: -0.02944182617674767 + ArtUnc_38: 0.029621854680974245 + ArtUnc_39: 0.0037937596643816225 + ArtUnc_40: 0.0006171169738548413 + ArtUnc_41: 0.07130678915444527 + ArtUnc_42: 0.09783409895430999 + ArtUnc_43: -0.0025186435155468063 + ArtUnc_44: -0.025573406243681544 + ArtUnc_45: 0.03679531486118474 + ArtUnc_46: -0.003224507487493442 + ArtUnc_47: 0.022428942333149793 + ArtUnc_48: 0.0027457022023610472 + ArtUnc_49: -0.013380306228957847 + ArtUnc_50: -0.01680463061811569 + ArtUnc_51: 0.0006300547084760256 + ArtUnc_52: -0.0005791249759598666 + ArtUnc_53: -0.016114514223097707 + ArtUnc_54: 0.005240293819542083 + ArtUnc_55: 0.002967708631284937 + ArtUnc_56: 0.00019026322521595404 + ArtUnc_57: 0.0002804429750602793 + ArtUnc_58: -0.001894443931454924 + ArtUnc_59: 0.0013271820680700766 + ArtUnc_60: 0.00035204867711393067 + ArtUnc_61: -0.0014031938044521107 + ArtUnc_62: 0.000288213901971008 + ArtUnc_63: 0.0005940507007868716 + ArtUnc_64: -8.618144975369645e-05 + ArtUnc_65: 0.0002762138691505921 + ArtUnc_66: 0.0008705951659873383 + ArtUnc_67: -0.0002900155986531886 + ArtUnc_68: -0.001088372977162145 + ArtUnc_69: -0.0005855436480218688 + ArtUnc_70: 3.891221637388164e-05 + ArtUnc_71: -0.00010782019438672507 + ArtUnc_72: 7.085871654984114e-05 + ArtUnc_73: -9.26754934375886e-06 + ArtUnc_74: 1.0338450946933556e-05 + ArtUnc_75: 2.5984669077553655e-06 + ArtUnc_76: -3.7953189242014587e-06 + ArtUnc_77: -6.080111235031745e-06 + ArtUnc_78: -1.145943283772544e-05 + ArtUnc_79: 1.3531736033285865e-05 + ArtUnc_80: 4.785256084644365e-06 + ArtUnc_81: -1.4476474117618153e-06 + ArtUnc_82: 8.717567938832361e-09 + ArtUnc_83: 2.1625432339056964e-06 + ArtUnc_84: 1.4245958021681639e-06 + ArtUnc_85: -1.5918227317219126e-06 + ArtUnc_86: 2.033747431831262e-06 + ArtUnc_87: 1.5086338157833956e-06 + ArtUnc_88: 1.705818229522455e-06 + ArtUnc_89: 1.6382068061899532e-06 + ArtUnc_90: -2.8779633835803196e-07 + ArtUnc_91: 4.3439631693636184e-07 + ArtUnc_92: 6.715287876035183e-08 + ArtUnc_93: -5.728647448855988e-08 + ArtUnc_94: -7.621759654344934e-07 + ArtUnc_95: 4.1672703857164295e-08 + ArtUnc_96: -2.8880854045615154e-07 - stat: 0 Uncorr: 0.127 RCES: 0.12432223242445416 @@ -1458,102 +1458,102 @@ bins: ModelRW_2: 0.5486936489973252 JES_1: 0.47912906594935356 JES_2: 0.47912906594935356 - ArtUnc_1: 0.00048222324563112324 - ArtUnc_2: -0.00045481936606475335 - ArtUnc_3: -0.00028651499613534676 - ArtUnc_4: -5.045932370837303e-06 - ArtUnc_5: -6.963204243240137e-05 - ArtUnc_6: 3.525407986547766e-05 - ArtUnc_7: 7.335364810789872e-07 - ArtUnc_8: -0.011353917117131667 - ArtUnc_9: -4.218063182215126e-05 - ArtUnc_10: -0.015707934389066276 - ArtUnc_11: -0.009803885316949507 - ArtUnc_12: 0.002153699370555611 - ArtUnc_13: 0.00753284433765608 - ArtUnc_14: 0.0021950944042568345 - ArtUnc_15: 0.006046097250410136 - ArtUnc_16: -0.002311692799103495 - ArtUnc_17: -0.0017171120266755752 - ArtUnc_18: 0.0010288977453567977 - ArtUnc_19: -0.00011311504002507693 - ArtUnc_20: -0.0005321726757169514 - ArtUnc_21: 0.00031996106432857584 - ArtUnc_22: -9.23556488693514e-05 - ArtUnc_23: 4.181140486327824e-05 - ArtUnc_24: -1.9034702199728612e-05 - ArtUnc_25: 0.020487758169370637 - ArtUnc_26: -0.011574866257633072 - ArtUnc_27: -0.08912912698772604 - ArtUnc_28: 0.008665626267010507 - ArtUnc_29: 0.006635338253214907 - ArtUnc_30: 0.02794587681218538 - ArtUnc_31: 0.000977229749718423 - ArtUnc_32: -0.010216142199214729 - ArtUnc_33: -0.002845330035775146 - ArtUnc_34: 0.005570333273643814 - ArtUnc_35: 0.009662654568295312 - ArtUnc_36: -0.004528737722650618 - ArtUnc_37: -0.0012038460339397936 - ArtUnc_38: -0.0018731277432523967 - ArtUnc_39: 0.0008503564209477177 - ArtUnc_40: 0.000138445622024803 - ArtUnc_41: 0.663849568643789 - ArtUnc_42: -0.5706914172499961 - ArtUnc_43: -0.3775614838740124 - ArtUnc_44: -0.03501730818426179 - ArtUnc_45: -0.22079268371283478 - ArtUnc_46: -0.15556486625569363 - ArtUnc_47: -0.03878286742300643 - ArtUnc_48: 0.1792366648952618 - ArtUnc_49: -0.054283781528397274 - ArtUnc_50: -0.13242443389466826 - ArtUnc_51: -0.13148541911448722 - ArtUnc_52: 0.048082372908605085 - ArtUnc_53: 0.03475140647080293 - ArtUnc_54: 0.0036341293741232877 - ArtUnc_55: 0.007711552695186414 - ArtUnc_56: -0.003416335306032307 - ArtUnc_57: 0.008015429032454417 - ArtUnc_58: -0.04296678302902025 - ArtUnc_59: 0.021593356391990164 - ArtUnc_60: 0.005088828565798807 - ArtUnc_61: -0.024094100946152837 - ArtUnc_62: 0.006406534115998357 - ArtUnc_63: 0.009260583805346435 - ArtUnc_64: -0.0007324592001936841 - ArtUnc_65: 0.0023102409510445264 - ArtUnc_66: -0.011795995784537588 - ArtUnc_67: 0.0037988107609475724 - ArtUnc_68: 0.014005992450294541 - ArtUnc_69: 0.007273315267392656 - ArtUnc_70: -0.001466337672531976 - ArtUnc_71: -0.0009929230225180076 - ArtUnc_72: 0.00042293942566536656 - ArtUnc_73: 0.00011844704664032813 - ArtUnc_74: 0.00023022953652045142 - ArtUnc_75: 5.280533255610051e-05 - ArtUnc_76: 5.8320312563029384e-05 - ArtUnc_77: 0.00013664656253661587 - ArtUnc_78: -0.0002258553331687576 - ArtUnc_79: -0.0003222283740100807 - ArtUnc_80: 8.560658591627343e-05 - ArtUnc_81: 2.7635731751350576e-05 - ArtUnc_82: -1.4471079941618696e-07 - ArtUnc_83: -4.849242745558435e-05 - ArtUnc_84: -2.73851982751988e-05 - ArtUnc_85: 3.691156820800472e-05 - ArtUnc_86: -3.2808291692025e-05 - ArtUnc_87: 5.063474698032525e-05 - ArtUnc_88: 5.9404921856279335e-06 - ArtUnc_89: 1.3945197108891403e-05 - ArtUnc_90: -1.976061848848475e-05 - ArtUnc_91: 5.4158037246835686e-06 - ArtUnc_92: 4.5856356459877216e-05 - ArtUnc_93: 3.282889882737818e-05 - ArtUnc_94: -1.5861418317529727e-06 - ArtUnc_95: 9.969375328917745e-06 - ArtUnc_96: 8.099606377265982e-06 + ArtUnc_1: 0.00048222324563112264 + ArtUnc_2: -0.0004548193660647549 + ArtUnc_3: -0.000286514996135342 + ArtUnc_4: -5.045932370756765e-06 + ArtUnc_5: -6.963204243240928e-05 + ArtUnc_6: -3.525407986559304e-05 + ArtUnc_7: -7.335364812501672e-07 + ArtUnc_8: 0.011353917117131688 + ArtUnc_9: 4.218063182166823e-05 + ArtUnc_10: -0.015707934389066265 + ArtUnc_11: -0.009803885316949498 + ArtUnc_12: 0.0021536993705559898 + ArtUnc_13: 0.007532844337655942 + ArtUnc_14: 0.0021950944042568683 + ArtUnc_15: 0.006046097250410134 + ArtUnc_16: -0.0023116927991033214 + ArtUnc_17: 0.0017171120266754247 + ArtUnc_18: -0.0010288977453566045 + ArtUnc_19: 0.00011311504002460291 + ArtUnc_20: 0.0005321726757171317 + ArtUnc_21: 0.00031996106432853085 + ArtUnc_22: -9.235564886922412e-05 + ArtUnc_23: -4.181140486276274e-05 + ArtUnc_24: 1.90347021989865e-05 + ArtUnc_25: -0.020487758169369312 + ArtUnc_26: 0.011574866257633931 + ArtUnc_27: 0.08912912698772603 + ArtUnc_28: -0.008665626267010482 + ArtUnc_29: -0.006635338253216263 + ArtUnc_30: 0.027945876812184477 + ArtUnc_31: -0.0009772297497179653 + ArtUnc_32: -0.010216142199216087 + ArtUnc_33: -0.002845330035767449 + ArtUnc_34: -0.005570333273645624 + ArtUnc_35: -0.009662654568296104 + ArtUnc_36: -0.004528737722651677 + ArtUnc_37: -0.0012038460339396265 + ArtUnc_38: 0.0018731277432525726 + ArtUnc_39: 0.0008503564209471586 + ArtUnc_40: 0.00013844562202529199 + ArtUnc_41: 0.6638495686437801 + ArtUnc_42: -0.5706914172500034 + ArtUnc_43: -0.37756148387400784 + ArtUnc_44: -0.03501730818425852 + ArtUnc_45: -0.22079268371283536 + ArtUnc_46: -0.1555648662556946 + ArtUnc_47: 0.03878286742300583 + ArtUnc_48: -0.17923666489526285 + ArtUnc_49: 0.05428378152839977 + ArtUnc_50: 0.1324244338946672 + ArtUnc_51: -0.003416335306031974 + ArtUnc_52: 0.007711552695186313 + ArtUnc_53: 0.13148541911448347 + ArtUnc_54: -0.04808237290860438 + ArtUnc_55: -0.03475140647080258 + ArtUnc_56: 0.003634129374122391 + ArtUnc_57: -0.008015429032455383 + ArtUnc_58: 0.042966783029020544 + ArtUnc_59: -0.021593356391989723 + ArtUnc_60: -0.005088828565798671 + ArtUnc_61: 0.024094100946153038 + ArtUnc_62: -0.006406534115997293 + ArtUnc_63: -0.009260583805346423 + ArtUnc_64: -0.0007324592001938286 + ArtUnc_65: -0.0023102409510445 + ArtUnc_66: -0.011795995784537529 + ArtUnc_67: 0.003798810760947751 + ArtUnc_68: 0.014005992450295192 + ArtUnc_69: 0.0072733152673920285 + ArtUnc_70: -0.0004229394256654641 + ArtUnc_71: 0.0014663376725319356 + ArtUnc_72: -0.0009929230225179458 + ArtUnc_73: 0.00011844704664039685 + ArtUnc_74: -0.00023022953652054892 + ArtUnc_75: -5.280533255611597e-05 + ArtUnc_76: 5.8320312563038125e-05 + ArtUnc_77: 0.00013664656253665832 + ArtUnc_78: 0.00022585533316878535 + ArtUnc_79: -0.0003222283740101118 + ArtUnc_80: -8.560658591625873e-05 + ArtUnc_81: 2.7635731751347974e-05 + ArtUnc_82: -1.4471079941616133e-07 + ArtUnc_83: -4.8492427455588045e-05 + ArtUnc_84: -2.7385198275194944e-05 + ArtUnc_85: 3.691156820800699e-05 + ArtUnc_86: -4.585635645987649e-05 + ArtUnc_87: -3.282889882737541e-05 + ArtUnc_88: -3.2808291692027684e-05 + ArtUnc_89: -5.063474698032896e-05 + ArtUnc_90: 5.940492185626315e-06 + ArtUnc_91: -9.96937532891693e-06 + ArtUnc_92: -1.5861418317524066e-06 + ArtUnc_93: 1.394519710889056e-05 + ArtUnc_94: 1.976061848848542e-05 + ArtUnc_95: 5.415803724684479e-06 + ArtUnc_96: 8.099606377266068e-06 - stat: 0 Uncorr: 0.015600000000000001 RCES: 0.02281389997348108 @@ -1569,102 +1569,102 @@ bins: ModelRW_2: 0.03165858480728411 JES_1: 0.11464963932782345 JES_2: 0.11464963932782345 - ArtUnc_1: 8.284240535459945e-05 - ArtUnc_2: -7.143652520747548e-05 - ArtUnc_3: -4.293910641632099e-05 - ArtUnc_4: 9.189147705404e-07 - ArtUnc_5: -1.1683924773492631e-05 - ArtUnc_6: 5.437220127168312e-06 - ArtUnc_7: 3.1867886787515996e-07 - ArtUnc_8: -0.001750767579044543 - ArtUnc_9: -6.320894995004844e-06 - ArtUnc_10: -0.0023152786563023536 - ArtUnc_11: -0.0015122601857190162 - ArtUnc_12: 0.00028672664141823575 - ArtUnc_13: 0.001170713781008741 - ArtUnc_14: 0.00037400319118559457 - ArtUnc_15: 0.0010149982650400344 - ArtUnc_16: -0.0004244565163136573 - ArtUnc_17: -0.00034015178709350026 - ArtUnc_18: 0.00019293282009014468 - ArtUnc_19: -4.3545110517268796e-05 - ArtUnc_20: -3.082354649522926e-05 - ArtUnc_21: 1.7465997791860596e-06 - ArtUnc_22: 1.2057399180629462e-05 - ArtUnc_23: -4.49174474318245e-06 - ArtUnc_24: -9.79744710511551e-07 - ArtUnc_25: -0.00020738105703601545 - ArtUnc_26: 0.000423076135428493 - ArtUnc_27: 0.003193753895059643 - ArtUnc_28: -0.0002789218703016149 - ArtUnc_29: -0.0003826943616379029 - ArtUnc_30: -0.002112576370727655 - ArtUnc_31: -4.6340652522069066e-05 - ArtUnc_32: 0.0012541085350817492 - ArtUnc_33: 0.00037808859529180923 - ArtUnc_34: -0.0008401347196621201 - ArtUnc_35: -0.001437235721419083 - ArtUnc_36: 0.0005759556505316176 - ArtUnc_37: 9.800053871529871e-05 - ArtUnc_38: 0.00010495865631075194 - ArtUnc_39: -1.4606526389308009e-05 - ArtUnc_40: -3.996192470531904e-06 - ArtUnc_41: 0.011750948973267745 - ArtUnc_42: -0.015575601828046928 - ArtUnc_43: -0.0041891881277658785 - ArtUnc_44: 0.0011989486168135766 - ArtUnc_45: -0.0023379869035208283 - ArtUnc_46: 0.0001545301319618089 - ArtUnc_47: 0.000555931868146022 - ArtUnc_48: -2.71013976006483e-05 - ArtUnc_49: 0.00020626001420983263 - ArtUnc_50: 5.820870463682508e-05 - ArtUnc_51: 0.00014939065649090851 - ArtUnc_52: 9.672127646830308e-05 - ArtUnc_53: 1.109866188438674e-05 - ArtUnc_54: 1.7388712029753375e-05 - ArtUnc_55: 2.554443969099818e-05 - ArtUnc_56: -1.6662171502083667e-05 - ArtUnc_57: 0.11990698671213056 - ArtUnc_58: -0.16304725262959285 - ArtUnc_59: -0.2330672324039735 - ArtUnc_60: -0.08346872670813604 - ArtUnc_61: 0.0561300422126411 - ArtUnc_62: 0.05180044908507952 - ArtUnc_63: -0.03058943537058552 - ArtUnc_64: -0.08155023196137727 - ArtUnc_65: -0.07903336729866804 - ArtUnc_66: 0.045303057260935316 - ArtUnc_67: -0.013349390116759171 - ArtUnc_68: -0.02640805009968987 - ArtUnc_69: -0.012559102862259879 - ArtUnc_70: 0.0003946408968876557 - ArtUnc_71: 0.0015003052226944262 - ArtUnc_72: -0.0011507880480597812 - ArtUnc_73: -0.016644764783269997 - ArtUnc_74: -0.01751538637366093 - ArtUnc_75: -0.0022558265607425017 - ArtUnc_76: 0.0004613325151309625 - ArtUnc_77: -0.003493613132642539 - ArtUnc_78: 0.002690829307184598 - ArtUnc_79: 0.006560964965245627 - ArtUnc_80: -0.00094481817009344 - ArtUnc_81: -0.00044521757762512745 - ArtUnc_82: 9.185677018423849e-08 - ArtUnc_83: -0.00011809609694400983 - ArtUnc_84: 0.0005436643903216545 - ArtUnc_85: 6.64884406015711e-05 - ArtUnc_86: 0.0003553342130206749 - ArtUnc_87: -0.0010106515967770208 - ArtUnc_88: -0.00013932834585072567 - ArtUnc_89: -4.664789298302181e-05 - ArtUnc_90: 0.0005146245491329366 - ArtUnc_91: -0.00012595303709050655 - ArtUnc_92: -4.825610490853249e-05 - ArtUnc_93: -7.071954635315597e-05 - ArtUnc_94: 3.920061732910895e-06 - ArtUnc_95: -2.3758346408525107e-05 - ArtUnc_96: 1.3968545028193236e-06 + ArtUnc_1: 8.284240535459942e-05 + ArtUnc_2: -7.143652520747553e-05 + ArtUnc_3: -4.2939106416322474e-05 + ArtUnc_4: 9.189147705604213e-07 + ArtUnc_5: -1.168392477351611e-05 + ArtUnc_6: -5.437220127116407e-06 + ArtUnc_7: -3.186788680124188e-07 + ArtUnc_8: 0.0017507675790445158 + ArtUnc_9: 6.3208949947927375e-06 + ArtUnc_10: -0.0023152786563023693 + ArtUnc_11: -0.001512260185718958 + ArtUnc_12: 0.0002867266414185476 + ArtUnc_13: 0.0011707137810086823 + ArtUnc_14: 0.00037400319118526687 + ArtUnc_15: 0.0010149982650403862 + ArtUnc_16: -0.0004244565163130159 + ArtUnc_17: 0.00034015178709396565 + ArtUnc_18: -0.000192932820089954 + ArtUnc_19: 4.354511051629244e-05 + ArtUnc_20: 3.082354649563666e-05 + ArtUnc_21: 1.7465997797400437e-06 + ArtUnc_22: 1.2057399180159132e-05 + ArtUnc_23: 4.491744744461753e-06 + ArtUnc_24: 9.79744710611963e-07 + ArtUnc_25: 0.000207381057035519 + ArtUnc_26: -0.0004230761354287319 + ArtUnc_27: -0.0031937538950595834 + ArtUnc_28: 0.0002789218703015377 + ArtUnc_29: 0.0003826943616382765 + ArtUnc_30: -0.0021125763707275347 + ArtUnc_31: 4.634065252060755e-05 + ArtUnc_32: 0.0012541085350820632 + ArtUnc_33: 0.0003780885952905535 + ArtUnc_34: 0.0008401347196628806 + ArtUnc_35: 0.0014372357214196374 + ArtUnc_36: 0.0005759556505313191 + ArtUnc_37: 9.800053871621878e-05 + ArtUnc_38: -0.0001049586563108525 + ArtUnc_39: -1.4606526390462278e-05 + ArtUnc_40: -3.996192469797755e-06 + ArtUnc_41: 0.011750948973270116 + ArtUnc_42: -0.015575601828048118 + ArtUnc_43: -0.004189188127765207 + ArtUnc_44: 0.0011989486168144544 + ArtUnc_45: -0.002337986903522328 + ArtUnc_46: 0.00015453013196292003 + ArtUnc_47: -0.0005559318681489714 + ArtUnc_48: 2.7101397601735106e-05 + ArtUnc_49: -0.00020626001420911725 + ArtUnc_50: -5.820870463632121e-05 + ArtUnc_51: -1.6662171501764027e-05 + ArtUnc_52: 2.5544439689513627e-05 + ArtUnc_53: -0.00014939065649154743 + ArtUnc_54: -9.672127646801581e-05 + ArtUnc_55: -1.1098661883805367e-05 + ArtUnc_56: 1.7388712030098158e-05 + ArtUnc_57: -0.11990698671213583 + ArtUnc_58: 0.1630472526295877 + ArtUnc_59: 0.23306723240397223 + ArtUnc_60: 0.08346872670813442 + ArtUnc_61: -0.05613004221263735 + ArtUnc_62: -0.0518004490850811 + ArtUnc_63: 0.030589435370586383 + ArtUnc_64: -0.08155023196137762 + ArtUnc_65: 0.07903336729866912 + ArtUnc_66: 0.04530305726093659 + ArtUnc_67: -0.013349390116759653 + ArtUnc_68: -0.0264080500996915 + ArtUnc_69: -0.012559102862259136 + ArtUnc_70: 0.0011507880480598309 + ArtUnc_71: -0.00039464089688755454 + ArtUnc_72: 0.0015003052226943954 + ArtUnc_73: -0.01664476478326977 + ArtUnc_74: 0.017515386373661138 + ArtUnc_75: 0.0022558265607425716 + ArtUnc_76: 0.00046133251513093 + ArtUnc_77: -0.0034936131326428277 + ArtUnc_78: -0.0026908293071845365 + ArtUnc_79: 0.006560964965245572 + ArtUnc_80: 0.0009448181700934723 + ArtUnc_81: -0.00044521757762517754 + ArtUnc_82: 9.185677018507984e-08 + ArtUnc_83: -0.00011809609694401655 + ArtUnc_84: 0.0005436643903216629 + ArtUnc_85: 6.648844060157769e-05 + ArtUnc_86: 4.8256104908536475e-05 + ArtUnc_87: 7.071954635315663e-05 + ArtUnc_88: 0.00035533421302064275 + ArtUnc_89: 0.00101065159677701 + ArtUnc_90: -0.00013932834585073713 + ArtUnc_91: 2.375834640852458e-05 + ArtUnc_92: 3.920061732908886e-06 + ArtUnc_93: -4.664789298303528e-05 + ArtUnc_94: -0.0005146245491329366 + ArtUnc_95: -0.00012595303709050904 + ArtUnc_96: 1.3968545028191379e-06 - stat: 0 Uncorr: 0.00251 RCES: 0.011977480937471786 @@ -1680,102 +1680,102 @@ bins: ModelRW_2: 0.007578558348723059 JES_1: 0.017554027346879688 JES_2: 0.017554027346879688 - ArtUnc_1: -8.737694534121226e-10 - ArtUnc_2: 1.646459406432666e-09 - ArtUnc_3: 1.5950511990297585e-09 - ArtUnc_4: 1.304097411534912e-10 - ArtUnc_5: 5.508080194962333e-10 - ArtUnc_6: -3.7671139811463697e-10 - ArtUnc_7: -1.2766550800524874e-11 - ArtUnc_8: 1.831855433562771e-07 - ArtUnc_9: 7.59841523925736e-10 - ArtUnc_10: 3.172515480713826e-07 - ArtUnc_11: 2.644748786934261e-07 - ArtUnc_12: -5.4907586638807504e-08 - ArtUnc_13: -2.718473923424106e-07 - ArtUnc_14: -9.213717981734448e-08 - ArtUnc_15: -2.7243632993552247e-07 - ArtUnc_16: 1.2069090293084262e-07 - ArtUnc_17: 9.887766630746757e-08 - ArtUnc_18: -6.492169166503194e-08 - ArtUnc_19: 1.0089425734632696e-08 - ArtUnc_20: 3.782777691680796e-08 - ArtUnc_21: -2.4942538803657166e-08 - ArtUnc_22: 7.1820777657191135e-09 - ArtUnc_23: -4.737267003279405e-09 - ArtUnc_24: 2.6786010092417603e-09 - ArtUnc_25: -2.9575991000909014e-06 - ArtUnc_26: 2.4109347240861037e-06 - ArtUnc_27: 1.9589600326097696e-05 - ArtUnc_28: -2.1605117265004075e-06 - ArtUnc_29: -1.866721069813087e-06 - ArtUnc_30: -8.220576699275737e-06 - ArtUnc_31: -3.148499519731872e-07 - ArtUnc_32: 3.566962795196321e-06 - ArtUnc_33: 9.91053259509128e-07 - ArtUnc_34: -2.229321893011696e-06 - ArtUnc_35: -3.988495166844839e-06 - ArtUnc_36: 2.166989013686728e-06 - ArtUnc_37: 6.645354509139063e-07 - ArtUnc_38: 1.1370711387899895e-06 - ArtUnc_39: -6.259626810449045e-07 - ArtUnc_40: -1.139598981769818e-07 - ArtUnc_41: -0.0011137227426165602 - ArtUnc_42: 0.001141607145327685 - ArtUnc_43: 0.0008346508307615107 - ArtUnc_44: 8.6019434785856e-05 - ArtUnc_45: 0.0005798205279119712 - ArtUnc_46: 0.0004383472277824593 - ArtUnc_47: 0.00012074281722233053 - ArtUnc_48: -0.0005528749315808311 - ArtUnc_49: 0.00017207676192542085 - ArtUnc_50: 0.0004507527380131445 - ArtUnc_51: 0.00048763024663606885 - ArtUnc_52: -0.00018684558503820846 - ArtUnc_53: -0.00015388762592656805 - ArtUnc_54: -1.818698188722652e-05 - ArtUnc_55: -4.812354390019649e-05 - ArtUnc_56: 2.5089994914974807e-05 - ArtUnc_57: 0.004004969220651188 - ArtUnc_58: -0.0036072664081089937 - ArtUnc_59: -0.004505974454369955 - ArtUnc_60: -0.0013454969700595991 - ArtUnc_61: 0.000818722134420752 - ArtUnc_62: 0.00031123049440000554 - ArtUnc_63: -0.0002862908683742836 - ArtUnc_64: -0.00031524814064586633 - ArtUnc_65: -0.00036836388364806913 - ArtUnc_66: 0.0002982348981039499 - ArtUnc_67: -0.00015023875584110896 - ArtUnc_68: -0.0006147404317043047 - ArtUnc_69: -0.0005233603568171549 - ArtUnc_70: 8.244916610592315e-05 - ArtUnc_71: 0.000149859393634602 - ArtUnc_72: -0.0001969746047289603 - ArtUnc_73: 0.003804818333467311 - ArtUnc_74: 0.0007028573295871507 - ArtUnc_75: -0.0011840866023423537 - ArtUnc_76: 0.028353481601100815 - ArtUnc_77: -0.005216149143443748 - ArtUnc_78: -0.06222596545671067 - ArtUnc_79: 0.015037693794520234 - ArtUnc_80: 0.026302069053069095 - ArtUnc_81: 0.014767802765716851 - ArtUnc_82: -1.172977938891221e-06 - ArtUnc_83: -0.006403768686471259 - ArtUnc_84: -0.017996315182303758 - ArtUnc_85: 0.004758655675668418 - ArtUnc_86: -0.0433753782945244 - ArtUnc_87: 0.02937958362476692 - ArtUnc_88: 0.0073881170622491854 - ArtUnc_89: -0.030648055619916185 - ArtUnc_90: -0.013312031052442995 - ArtUnc_91: 0.0008653673756016006 - ArtUnc_92: 0.005074421813299009 - ArtUnc_93: 0.0028297512649376163 - ArtUnc_94: -0.0001033480450327636 - ArtUnc_95: 0.0007635967238544992 - ArtUnc_96: 0.001045600489105708 + ArtUnc_1: -8.737694534121229e-10 + ArtUnc_2: 1.6464594064326736e-09 + ArtUnc_3: 1.5950511990295304e-09 + ArtUnc_4: 1.3040974115525698e-10 + ArtUnc_5: 5.508080194611627e-10 + ArtUnc_6: 3.7671139816293967e-10 + ArtUnc_7: 1.2766550907783893e-11 + ArtUnc_8: -1.8318554335628124e-07 + ArtUnc_9: -7.598415241707395e-10 + ArtUnc_10: 3.172515480713788e-07 + ArtUnc_11: 2.644748786934402e-07 + ArtUnc_12: -5.490758663839249e-08 + ArtUnc_13: -2.718473923425416e-07 + ArtUnc_14: -9.213717981691248e-08 + ArtUnc_15: -2.724363299357123e-07 + ArtUnc_16: 1.2069090292989235e-07 + ArtUnc_17: -9.887766630843156e-08 + ArtUnc_18: 6.492169166509936e-08 + ArtUnc_19: -1.0089425732864725e-08 + ArtUnc_20: -3.7827776916724463e-08 + ArtUnc_21: -2.494253881503824e-08 + ArtUnc_22: 7.18207777277124e-09 + ArtUnc_23: 4.737266987816121e-09 + ArtUnc_24: -2.6786010019964452e-09 + ArtUnc_25: 2.9575991000873583e-06 + ArtUnc_26: -2.4109347240891293e-06 + ArtUnc_27: -1.958960032609601e-05 + ArtUnc_28: 2.1605117264882275e-06 + ArtUnc_29: 1.866721069826176e-06 + ArtUnc_30: -8.22057669927223e-06 + ArtUnc_31: 3.1484995192426904e-07 + ArtUnc_32: 3.566962795179308e-06 + ArtUnc_33: 9.910532595307408e-07 + ArtUnc_34: 2.229321892986007e-06 + ArtUnc_35: 3.9884951668698356e-06 + ArtUnc_36: 2.166989013651135e-06 + ArtUnc_37: 6.645354509858519e-07 + ArtUnc_38: -1.137071138773637e-06 + ArtUnc_39: -6.259626810669443e-07 + ArtUnc_40: -1.139598981579064e-07 + ArtUnc_41: -0.0011137227426165804 + ArtUnc_42: 0.001141607145327739 + ArtUnc_43: 0.0008346508307614627 + ArtUnc_44: 8.601943478581479e-05 + ArtUnc_45: 0.0005798205279119543 + ArtUnc_46: 0.0004383472277824721 + ArtUnc_47: -0.00012074281722239596 + ArtUnc_48: 0.000552874931580836 + ArtUnc_49: -0.00017207676192544896 + ArtUnc_50: -0.0004507527380131608 + ArtUnc_51: 2.508999491499608e-05 + ArtUnc_52: -4.8123543900225626e-05 + ArtUnc_53: -0.0004876302466361276 + ArtUnc_54: 0.00018684558503821334 + ArtUnc_55: 0.00015388762592659022 + ArtUnc_56: -1.8186981887229775e-05 + ArtUnc_57: -0.004004969220651377 + ArtUnc_58: 0.003607266408108926 + ArtUnc_59: 0.004505974454370048 + ArtUnc_60: 0.001345496970059587 + ArtUnc_61: -0.0008187221344207724 + ArtUnc_62: -0.0003112304944000799 + ArtUnc_63: 0.0002862908683742685 + ArtUnc_64: -0.0003152481406459922 + ArtUnc_65: 0.0003683638836481357 + ArtUnc_66: 0.0002982348981041299 + ArtUnc_67: -0.0001502387558411166 + ArtUnc_68: -0.0006147404317045237 + ArtUnc_69: -0.0005233603568172246 + ArtUnc_70: 0.00019697460472897514 + ArtUnc_71: -8.244916610588482e-05 + ArtUnc_72: 0.00014985939363457848 + ArtUnc_73: 0.0038048183334672874 + ArtUnc_74: -0.0007028573295874387 + ArtUnc_75: 0.0011840866023422926 + ArtUnc_76: 0.02835348160110081 + ArtUnc_77: -0.005216149143439307 + ArtUnc_78: 0.06222596545671097 + ArtUnc_79: 0.015037693794521264 + ArtUnc_80: -0.026302069053068946 + ArtUnc_81: 0.01476780276571734 + ArtUnc_82: -1.1729779388745412e-06 + ArtUnc_83: -0.006403768686471221 + ArtUnc_84: -0.017996315182303557 + ArtUnc_85: 0.004758655675668427 + ArtUnc_86: -0.005074421813299028 + ArtUnc_87: -0.002829751264937561 + ArtUnc_88: -0.04337537829452347 + ArtUnc_89: -0.029379583624767714 + ArtUnc_90: 0.007388117062249002 + ArtUnc_91: -0.0007635967238545224 + ArtUnc_92: -0.00010334804503274076 + ArtUnc_93: -0.030648055619916178 + ArtUnc_94: 0.01331203105244284 + ArtUnc_95: 0.0008653673756013533 + ArtUnc_96: 0.001045600489105698 - stat: 0 Uncorr: 10.6 RCES: 33.82596026722671 @@ -1791,102 +1791,102 @@ bins: ModelRW_2: 15.215523717572127 JES_1: 7.602498536665429 JES_2: 7.602498536665429 - ArtUnc_1: 28.53461948130384 - ArtUnc_2: -7.123863967078527 - ArtUnc_3: -2.718126555131723 - ArtUnc_4: -0.38992848761021287 - ArtUnc_5: -0.0067074637807442525 - ArtUnc_6: 0.008283999205216913 - ArtUnc_7: -0.0007567391512449102 - ArtUnc_8: 0.2785588228961477 - ArtUnc_9: 0.0015553697559489398 - ArtUnc_10: 0.6841040029689238 - ArtUnc_11: 0.27039826133315903 - ArtUnc_12: -0.025771205810183807 - ArtUnc_13: -0.2019651073492938 - ArtUnc_14: -0.06124574938371301 - ArtUnc_15: -0.13733988140609574 - ArtUnc_16: 0.055592506460016365 - ArtUnc_17: 0.03891494291030174 - ArtUnc_18: -0.022439546494829106 - ArtUnc_19: 0.004613609699705377 - ArtUnc_20: 0.005955233470981325 - ArtUnc_21: -0.000919797110477942 - ArtUnc_22: -0.001561310882612792 - ArtUnc_23: 0.0005657803910753065 - ArtUnc_24: 0.00013845948901261996 - ArtUnc_25: -0.0015884893142737797 - ArtUnc_26: -0.002799873191823955 - ArtUnc_27: -0.012058199532830136 - ArtUnc_28: -0.0010435302393417775 - ArtUnc_29: 0.0008423840084403705 - ArtUnc_30: 0.00685468575650593 - ArtUnc_31: -0.0006563809746295895 - ArtUnc_32: -0.0033977228069870455 - ArtUnc_33: -0.001355084387744165 - ArtUnc_34: 0.0018974214458764834 - ArtUnc_35: 0.0033135972302499035 - ArtUnc_36: -0.0011026071913300026 - ArtUnc_37: -0.0002112098128054945 - ArtUnc_38: -0.00016111750143405293 - ArtUnc_39: 7.780354641443638e-06 - ArtUnc_40: -1.0949039928915275e-05 - ArtUnc_41: 0.000816245137223375 - ArtUnc_42: 0.0006595543728718285 - ArtUnc_43: -0.00019201795704490361 - ArtUnc_44: -0.00029239045544503147 - ArtUnc_45: 0.00029228857947157796 - ArtUnc_46: -0.0001495058040451832 - ArtUnc_47: -0.00034465529271012645 - ArtUnc_48: 0.00011551717262219872 - ArtUnc_49: 0.0001708533090525714 - ArtUnc_50: 0.0001364469829349886 - ArtUnc_51: 0.00014030870040233282 - ArtUnc_52: -2.172973149282298e-05 - ArtUnc_53: -2.5524966768609078e-05 - ArtUnc_54: 1.1225502356581918e-05 - ArtUnc_55: -1.49055443718135e-05 - ArtUnc_56: 9.219831701846346e-06 - ArtUnc_57: 4.691504492441189e-06 - ArtUnc_58: -7.6197052616900875e-06 - ArtUnc_59: -9.825460992185917e-06 - ArtUnc_60: -3.627685529542087e-06 - ArtUnc_61: 2.392677403828972e-06 - ArtUnc_62: 2.6175445500912144e-06 - ArtUnc_63: -1.7619189417090062e-06 - ArtUnc_64: -4.092775317851887e-06 - ArtUnc_65: -4.0074756663387494e-06 - ArtUnc_66: 2.9159524324258453e-06 - ArtUnc_67: -1.0830813048007426e-06 - ArtUnc_68: -3.596523553699565e-06 - ArtUnc_69: -2.322886166859726e-06 - ArtUnc_70: 1.561334361050154e-07 - ArtUnc_71: 6.637580118038576e-08 - ArtUnc_72: -2.5743213044265465e-07 - ArtUnc_73: -6.870695206562224e-07 - ArtUnc_74: -8.574271135635655e-07 - ArtUnc_75: -1.1569485846267584e-07 - ArtUnc_76: -6.437296749786064e-08 - ArtUnc_77: -1.8370731100060585e-07 - ArtUnc_78: 2.4335993445393443e-07 - ArtUnc_79: 3.0163122457541757e-07 - ArtUnc_80: 1.0246606463765263e-07 - ArtUnc_81: 3.8856419054492235e-08 - ArtUnc_82: -3.676040090992887e-11 - ArtUnc_83: 1.978891082722876e-08 - ArtUnc_84: -3.067811729035533e-08 - ArtUnc_85: -1.2655550615767179e-08 - ArtUnc_86: 3.768689079174495e-08 - ArtUnc_87: -3.3591322456585576e-08 - ArtUnc_88: 1.590444265428146e-08 - ArtUnc_89: 1.3221074939131933e-08 - ArtUnc_90: 5.231483778556825e-09 - ArtUnc_91: -6.979669883932993e-09 - ArtUnc_92: 6.92443228530112e-09 - ArtUnc_93: 1.493979649829139e-08 - ArtUnc_94: -1.0576092301005824e-09 - ArtUnc_95: 5.957595733315587e-09 - ArtUnc_96: 1.5437534461032975e-10 + ArtUnc_1: 28.534619481303825 + ArtUnc_2: -7.123863967078508 + ArtUnc_3: -2.7181265551317226 + ArtUnc_4: -0.3899284876102117 + ArtUnc_5: -0.00670746378074466 + ArtUnc_6: -0.008283999205217387 + ArtUnc_7: 0.0007567391512459143 + ArtUnc_8: -0.27855882289615036 + ArtUnc_9: -0.0015553697559445726 + ArtUnc_10: 0.6841040029689246 + ArtUnc_11: 0.2703982613331601 + ArtUnc_12: -0.02577120581018809 + ArtUnc_13: -0.20196510734929263 + ArtUnc_14: -0.061245749383712446 + ArtUnc_15: -0.1373398814060955 + ArtUnc_16: 0.05559250646001657 + ArtUnc_17: -0.03891494291030187 + ArtUnc_18: 0.022439546494828832 + ArtUnc_19: -0.004613609699705583 + ArtUnc_20: -0.005955233470981109 + ArtUnc_21: -0.000919797110477925 + ArtUnc_22: -0.0015613108826127554 + ArtUnc_23: -0.0005657803910752896 + ArtUnc_24: -0.00013845948901258673 + ArtUnc_25: 0.0015884893142738003 + ArtUnc_26: 0.0027998731918240935 + ArtUnc_27: 0.012058199532830109 + ArtUnc_28: 0.0010435302393417168 + ArtUnc_29: -0.0008423840084407331 + ArtUnc_30: 0.006854685756505784 + ArtUnc_31: 0.0006563809746296008 + ArtUnc_32: -0.003397722806987923 + ArtUnc_33: -0.0013550843877417945 + ArtUnc_34: -0.0018974214458767377 + ArtUnc_35: -0.0033135972302497743 + ArtUnc_36: -0.0011026071913299487 + ArtUnc_37: -0.00021120981280549925 + ArtUnc_38: 0.0001611175014340478 + ArtUnc_39: 7.780354641441171e-06 + ArtUnc_40: -1.0949039928915957e-05 + ArtUnc_41: 0.0008162451372233949 + ArtUnc_42: 0.0006595543728718163 + ArtUnc_43: -0.0001920179570449045 + ArtUnc_44: -0.00029239045544503836 + ArtUnc_45: 0.00029228857947158284 + ArtUnc_46: -0.00014950580404518931 + ArtUnc_47: 0.0003446552927101274 + ArtUnc_48: -0.00011551717262218647 + ArtUnc_49: -0.00017085330905257303 + ArtUnc_50: -0.00013644698293498577 + ArtUnc_51: 9.219831701846136e-06 + ArtUnc_52: -1.4905544371813783e-05 + ArtUnc_53: -0.00014030870040233003 + ArtUnc_54: 2.172973149282271e-05 + ArtUnc_55: 2.5524966768608532e-05 + ArtUnc_56: 1.1225502356583022e-05 + ArtUnc_57: -4.691504492441422e-06 + ArtUnc_58: 7.6197052616898715e-06 + ArtUnc_59: 9.825460992185863e-06 + ArtUnc_60: 3.627685529542029e-06 + ArtUnc_61: -2.392677403828778e-06 + ArtUnc_62: -2.617544550091262e-06 + ArtUnc_63: 1.7619189417090515e-06 + ArtUnc_64: -4.0927753178519035e-06 + ArtUnc_65: 4.0074756663388155e-06 + ArtUnc_66: 2.9159524324259093e-06 + ArtUnc_67: -1.0830813048008015e-06 + ArtUnc_68: -3.5965235536997996e-06 + ArtUnc_69: -2.322886166859595e-06 + ArtUnc_70: 2.5743213044265925e-07 + ArtUnc_71: -1.5613343610499397e-07 + ArtUnc_72: 6.637580118037731e-08 + ArtUnc_73: -6.870695206562281e-07 + ArtUnc_74: 8.574271135636011e-07 + ArtUnc_75: 1.1569485846268291e-07 + ArtUnc_76: -6.437296749786422e-08 + ArtUnc_77: -1.837073110006341e-07 + ArtUnc_78: -2.4335993445393687e-07 + ArtUnc_79: 3.0163122457542233e-07 + ArtUnc_80: -1.0246606463765234e-07 + ArtUnc_81: 3.8856419054493195e-08 + ArtUnc_82: -3.6760400909888214e-11 + ArtUnc_83: 1.978891082722819e-08 + ArtUnc_84: -3.067811729035556e-08 + ArtUnc_85: -1.2655550615766943e-08 + ArtUnc_86: -6.924432285300878e-09 + ArtUnc_87: -1.4939796498290833e-08 + ArtUnc_88: 3.768689079174396e-08 + ArtUnc_89: 3.359132245658672e-08 + ArtUnc_90: 1.590444265428233e-08 + ArtUnc_91: -5.957595733315514e-09 + ArtUnc_92: -1.0576092301003206e-09 + ArtUnc_93: 1.3221074939131718e-08 + ArtUnc_94: -5.2314837785566986e-09 + ArtUnc_95: -6.979669883933357e-09 + ArtUnc_96: 1.543753446103767e-10 - stat: 0 Uncorr: 3.58 RCES: 16.410102625821693 @@ -1902,102 +1902,102 @@ bins: ModelRW_2: 14.910195009455776 JES_1: 17.775916725727537 JES_2: 17.775916725727537 - ArtUnc_1: 2.297076133139009 - ArtUnc_2: -1.0892033898037945 - ArtUnc_3: -0.46266437928941223 - ArtUnc_4: 0.003459726676908899 - ArtUnc_5: -0.0702479988032363 - ArtUnc_6: 0.025635496777509318 - ArtUnc_7: 0.0011811538975454896 - ArtUnc_8: -5.698072050451222 - ArtUnc_9: -0.01838660928837008 - ArtUnc_10: -6.024756075070182 - ArtUnc_11: -2.9660838975572634 - ArtUnc_12: 0.5090423741530861 - ArtUnc_13: 1.8418379289105657 - ArtUnc_14: 0.51853845035762 - ArtUnc_15: 1.3053603129533569 - ArtUnc_16: -0.4807548269525335 - ArtUnc_17: -0.3546020620221221 - ArtUnc_18: 0.1900089641370534 - ArtUnc_19: -0.03448455438106442 - ArtUnc_20: -0.03347777181934266 - ArtUnc_21: 0.006677665520888274 - ArtUnc_22: 0.005573150621445732 - ArtUnc_23: -0.001614094874854339 - ArtUnc_24: -0.000568273667309047 - ArtUnc_25: 0.13949268880937934 - ArtUnc_26: 0.0735257804556413 - ArtUnc_27: 0.18086565126001672 - ArtUnc_28: 0.02126020679739065 - ArtUnc_29: -0.009972218314624906 - ArtUnc_30: -0.09065927398924303 - ArtUnc_31: 0.0006883162712904542 - ArtUnc_32: 0.04229196904251895 - ArtUnc_33: 0.016219675814081926 - ArtUnc_34: -0.02714390336879897 - ArtUnc_35: -0.043504078961787714 - ArtUnc_36: 0.01651470665811468 - ArtUnc_37: 0.0024434123447176818 - ArtUnc_38: 0.0029714037791766005 - ArtUnc_39: -0.0007310172834329654 - ArtUnc_40: -0.0002113625287745033 - ArtUnc_41: -0.00716087066432244 - ArtUnc_42: -0.00587695178165027 - ArtUnc_43: 0.0017314514208508663 - ArtUnc_44: 0.002553951127823668 - ArtUnc_45: -0.0025656232271245084 - ArtUnc_46: 0.0011881545478557916 - ArtUnc_47: 0.002804030604187064 - ArtUnc_48: -0.0008879580966486244 - ArtUnc_49: -0.0013691464108833973 - ArtUnc_50: -0.0011494198540057236 - ArtUnc_51: -0.0011819515239073419 - ArtUnc_52: 0.0002536231243983661 - ArtUnc_53: 0.00018472562965263277 - ArtUnc_54: -8.73983655878302e-05 - ArtUnc_55: 7.294074042155457e-05 - ArtUnc_56: -9.055078135816856e-05 - ArtUnc_57: -4.885657431811372e-05 - ArtUnc_58: 5.5139030312729935e-05 - ArtUnc_59: 0.00013839594374450177 - ArtUnc_60: 4.877085515415399e-05 - ArtUnc_61: -4.227075372782918e-05 - ArtUnc_62: -2.8700177521540744e-05 - ArtUnc_63: 2.380380668656732e-05 - ArtUnc_64: 5.132418586798756e-05 - ArtUnc_65: 5.261628114177773e-05 - ArtUnc_66: -3.8834498081222535e-05 - ArtUnc_67: 1.3491744321720766e-05 - ArtUnc_68: 3.742843080220253e-05 - ArtUnc_69: 2.0431367214920775e-05 - ArtUnc_70: -7.380420140614505e-07 - ArtUnc_71: -1.1211342621343872e-06 - ArtUnc_72: 6.037085275243379e-07 - ArtUnc_73: 7.3257684432416824e-06 - ArtUnc_74: 8.91679159433491e-06 - ArtUnc_75: 1.162861834698764e-06 - ArtUnc_76: 6.250625946348372e-07 - ArtUnc_77: 1.8200635034374447e-06 - ArtUnc_78: -2.5253370700758245e-06 - ArtUnc_79: -3.227347634136561e-06 - ArtUnc_80: -9.159003097231446e-07 - ArtUnc_81: -3.472046352210964e-07 - ArtUnc_82: 8.06392582351291e-10 - ArtUnc_83: -2.002810595725193e-07 - ArtUnc_84: 2.56765894718828e-07 - ArtUnc_85: 1.2916345002614962e-07 - ArtUnc_86: -4.2204082732703897e-07 - ArtUnc_87: 3.5825707537556616e-07 - ArtUnc_88: -1.3673297886086651e-07 - ArtUnc_89: -1.2730479200691235e-07 - ArtUnc_90: -5.8950569248484984e-08 - ArtUnc_91: 3.969493521176897e-08 - ArtUnc_92: -5.4068451479893034e-08 - ArtUnc_93: -1.388648088096199e-07 - ArtUnc_94: 9.722202506316362e-09 - ArtUnc_95: -5.3828040959302966e-08 - ArtUnc_96: 4.001083540114983e-09 + ArtUnc_1: 2.2970761331390066 + ArtUnc_2: -1.0892033898037916 + ArtUnc_3: -0.4626643792894114 + ArtUnc_4: 0.0034597266768986723 + ArtUnc_5: -0.07024799880322546 + ArtUnc_6: -0.025635496777499604 + ArtUnc_7: -0.0011811538975831683 + ArtUnc_8: 5.698072050451249 + ArtUnc_9: 0.01838660928832924 + ArtUnc_10: -6.02475607507018 + ArtUnc_11: -2.9660838975572674 + ArtUnc_12: 0.509042374153124 + ArtUnc_13: 1.8418379289105533 + ArtUnc_14: 0.5185384503576153 + ArtUnc_15: 1.3053603129533584 + ArtUnc_16: -0.48075482695253724 + ArtUnc_17: 0.3546020620221246 + ArtUnc_18: -0.19000896413705118 + ArtUnc_19: 0.03448455438106577 + ArtUnc_20: 0.0334777718193411 + ArtUnc_21: 0.00667766552088803 + ArtUnc_22: 0.005573150621444783 + ArtUnc_23: 0.0016140948748548712 + ArtUnc_24: 0.000568273667308521 + ArtUnc_25: -0.13949268880938007 + ArtUnc_26: -0.07352578045564359 + ArtUnc_27: -0.1808656512600164 + ArtUnc_28: -0.021260206797389925 + ArtUnc_29: 0.00997221831462979 + ArtUnc_30: -0.09065927398924134 + ArtUnc_31: -0.0006883162712905388 + ArtUnc_32: 0.04229196904252959 + ArtUnc_33: 0.01621967581405243 + ArtUnc_34: 0.027143903368802316 + ArtUnc_35: 0.04350407896178598 + ArtUnc_36: 0.016514706658114008 + ArtUnc_37: 0.0024434123447177863 + ArtUnc_38: -0.002971403779176569 + ArtUnc_39: -0.0007310172834329555 + ArtUnc_40: -0.00021136252877450334 + ArtUnc_41: -0.007160870664322624 + ArtUnc_42: -0.005876951781650189 + ArtUnc_43: 0.0017314514208508819 + ArtUnc_44: 0.002553951127823745 + ArtUnc_45: -0.0025656232271245513 + ArtUnc_46: 0.0011881545478558493 + ArtUnc_47: -0.002804030604187082 + ArtUnc_48: 0.0008879580966485295 + ArtUnc_49: 0.001369146410883418 + ArtUnc_50: 0.0011494198540057063 + ArtUnc_51: -9.055078135816814e-05 + ArtUnc_52: 7.294074042155794e-05 + ArtUnc_53: 0.001181951523907321 + ArtUnc_54: -0.00025362312439836495 + ArtUnc_55: -0.00018472562965263104 + ArtUnc_56: -8.739836558783833e-05 + ArtUnc_57: 4.885657431811609e-05 + ArtUnc_58: -5.51390303127279e-05 + ArtUnc_59: -0.00013839594374450153 + ArtUnc_60: -4.877085515415337e-05 + ArtUnc_61: 4.22707537278272e-05 + ArtUnc_62: 2.8700177521542225e-05 + ArtUnc_63: -2.3803806686567963e-05 + ArtUnc_64: 5.132418586798827e-05 + ArtUnc_65: -5.261628114177895e-05 + ArtUnc_66: -3.88344980812236e-05 + ArtUnc_67: 1.3491744321721498e-05 + ArtUnc_68: 3.7428430802205095e-05 + ArtUnc_69: 2.0431367214919684e-05 + ArtUnc_70: -6.037085275244034e-07 + ArtUnc_71: 7.380420140613976e-07 + ArtUnc_72: -1.1211342621343135e-06 + ArtUnc_73: 7.325768443241816e-06 + ArtUnc_74: -8.916791594335334e-06 + ArtUnc_75: -1.162861834698842e-06 + ArtUnc_76: 6.250625946348806e-07 + ArtUnc_77: 1.82006350343776e-06 + ArtUnc_78: 2.525337070075889e-06 + ArtUnc_79: -3.227347634136641e-06 + ArtUnc_80: 9.159003097231551e-07 + ArtUnc_81: -3.4720463522110955e-07 + ArtUnc_82: 8.063925823509818e-10 + ArtUnc_83: -2.002810595725168e-07 + ArtUnc_84: 2.5676589471883596e-07 + ArtUnc_85: 1.2916345002614888e-07 + ArtUnc_86: 5.406845147989175e-08 + ArtUnc_87: 1.3886480880961782e-07 + ArtUnc_88: -4.220408273270315e-07 + ArtUnc_89: -3.5825707537558045e-07 + ArtUnc_90: -1.3673297886087641e-07 + ArtUnc_91: 5.3828040959303416e-08 + ArtUnc_92: 9.722202506314322e-09 + ArtUnc_93: -1.2730479200691123e-07 + ArtUnc_94: 5.895056924848404e-08 + ArtUnc_95: 3.96949352117729e-08 + ArtUnc_96: 4.001083540114452e-09 - stat: 0 Uncorr: 0.904 RCES: 0.6864896479918688 @@ -2013,102 +2013,102 @@ bins: ModelRW_2: 1.9624193076914018 JES_1: 2.725353856217574 JES_2: 2.725353856217574 - ArtUnc_1: -0.0009965196005386932 - ArtUnc_2: -0.0490763710144604 - ArtUnc_3: -0.047564970547462816 - ArtUnc_4: -0.013756699974386742 - ArtUnc_5: 0.0013405642217338104 - ArtUnc_6: 0.00038667537064925343 - ArtUnc_7: 0.00012760105811892577 - ArtUnc_8: -0.31731888380211215 - ArtUnc_9: -0.0011592755697405527 - ArtUnc_10: -0.4504172181733019 - ArtUnc_11: -0.21373373716518707 - ArtUnc_12: 0.07390984381923715 - ArtUnc_13: 0.15323462967136534 - ArtUnc_14: 0.016725144962615363 - ArtUnc_15: 0.061541096508847544 - ArtUnc_16: 0.0012801800918939162 - ArtUnc_17: 0.01019751389634067 - ArtUnc_18: 0.003646885619794577 - ArtUnc_19: 0.007440900959470505 - ArtUnc_20: -0.030597234662372658 - ArtUnc_21: 0.01992090985890483 - ArtUnc_22: -0.008080984027201168 - ArtUnc_23: 0.0025137026103077445 - ArtUnc_24: -0.00041309541960145876 - ArtUnc_25: 0.7665401298664348 - ArtUnc_26: -0.20904621147771893 - ArtUnc_27: -2.472266072161976 - ArtUnc_28: 0.2963104198978536 - ArtUnc_29: 0.2289045278005049 - ArtUnc_30: 1.0542185366477328 - ArtUnc_31: 0.028303682128789087 - ArtUnc_32: -0.4932083605436826 - ArtUnc_33: -0.13788572623234713 - ArtUnc_34: 0.2784114116994266 - ArtUnc_35: 0.47389759816721194 - ArtUnc_36: -0.17395524785263045 - ArtUnc_37: -0.029441826176746566 - ArtUnc_38: -0.02962185468097465 - ArtUnc_39: 0.003793759664381692 - ArtUnc_40: 0.000617116973854914 - ArtUnc_41: 0.07130678915444245 - ArtUnc_42: 0.09783409895431039 - ArtUnc_43: -0.00251864351554638 - ArtUnc_44: -0.02557340624368057 - ArtUnc_45: 0.03679531486118423 - ArtUnc_46: -0.0032245074874930045 - ArtUnc_47: -0.022428942333149526 - ArtUnc_48: -0.002745702202360223 - ArtUnc_49: 0.013380306228957502 - ArtUnc_50: 0.016804630618115865 - ArtUnc_51: 0.016114514223098075 - ArtUnc_52: -0.00524029381954212 - ArtUnc_53: -0.0029677086312849287 - ArtUnc_54: 0.0001902632252158602 - ArtUnc_55: -0.0005791249759598457 - ArtUnc_56: 0.0006300547084760401 - ArtUnc_57: -0.0002804429750602387 - ArtUnc_58: 0.0018944439314549104 - ArtUnc_59: -0.0013271820680700972 - ArtUnc_60: -0.00035204867711393723 - ArtUnc_61: 0.0014031938044521042 - ArtUnc_62: -0.0002882139019710647 - ArtUnc_63: -0.0005940507007868716 - ArtUnc_64: -8.61814497537013e-05 - ArtUnc_65: -0.00027621386915058997 - ArtUnc_66: 0.0008705951659873406 - ArtUnc_67: -0.0002900155986531735 - ArtUnc_68: -0.0010883729771620856 - ArtUnc_69: -0.0005855436480219128 - ArtUnc_70: 0.00010782019438672839 - ArtUnc_71: 7.085871654984603e-05 - ArtUnc_72: -3.89122163738746e-05 - ArtUnc_73: -9.267549343752526e-06 - ArtUnc_74: -1.0338450946925255e-05 - ArtUnc_75: -2.5984669077541534e-06 - ArtUnc_76: -3.7953189242007785e-06 - ArtUnc_77: -6.080111235028886e-06 - ArtUnc_78: 1.1459432837723044e-05 - ArtUnc_79: 1.3531736033283021e-05 - ArtUnc_80: -4.785256084645539e-06 - ArtUnc_81: -1.4476474117621292e-06 - ArtUnc_82: 8.717567938833966e-09 - ArtUnc_83: 2.1625432339053885e-06 - ArtUnc_84: 1.4245958021684796e-06 - ArtUnc_85: -1.5918227317217163e-06 - ArtUnc_86: 1.70581822952215e-06 - ArtUnc_87: -1.638206806189619e-06 - ArtUnc_88: -2.8779633835817855e-07 - ArtUnc_89: -5.728647448866196e-08 - ArtUnc_90: 7.621759654344365e-07 - ArtUnc_91: 4.1672703857240277e-08 - ArtUnc_92: -2.0337474318313564e-06 - ArtUnc_93: -1.5086338157836613e-06 - ArtUnc_94: 6.715287876038684e-08 - ArtUnc_95: -4.343963169364552e-07 - ArtUnc_96: -2.8880854045614826e-07 + ArtUnc_1: -0.0009965196005386923 + ArtUnc_2: -0.04907637101446047 + ArtUnc_3: -0.04756497054746269 + ArtUnc_4: -0.013756699974385526 + ArtUnc_5: 0.0013405642217313753 + ArtUnc_6: -0.0003866753706473783 + ArtUnc_7: -0.00012760105812504135 + ArtUnc_8: 0.3173188838021138 + ArtUnc_9: 0.0011592755697388047 + ArtUnc_10: -0.45041721817330066 + ArtUnc_11: -0.2137337371651879 + ArtUnc_12: 0.07390984381923797 + ArtUnc_13: 0.15323462967136156 + ArtUnc_14: 0.016725144962614295 + ArtUnc_15: 0.06154109650884441 + ArtUnc_16: 0.0012801800918984287 + ArtUnc_17: -0.010197513896344924 + ArtUnc_18: -0.0036468856197927895 + ArtUnc_19: -0.007440900959471428 + ArtUnc_20: 0.030597234662372387 + ArtUnc_21: 0.01992090985890962 + ArtUnc_22: -0.008080984027201216 + ArtUnc_23: -0.002513702610298424 + ArtUnc_24: 0.0004130954196040905 + ArtUnc_25: -0.7665401298664287 + ArtUnc_26: 0.20904621147775262 + ArtUnc_27: 2.4722660721619834 + ArtUnc_28: -0.2963104198978628 + ArtUnc_29: -0.22890452780055967 + ArtUnc_30: 1.0542185366477073 + ArtUnc_31: -0.028303682128787668 + ArtUnc_32: -0.49320836054377415 + ArtUnc_33: -0.1378857262320036 + ArtUnc_34: -0.27841141169946304 + ArtUnc_35: -0.4738975981671955 + ArtUnc_36: -0.17395524785262387 + ArtUnc_37: -0.02944182617674767 + ArtUnc_38: 0.029621854680974245 + ArtUnc_39: 0.0037937596643816225 + ArtUnc_40: 0.0006171169738548413 + ArtUnc_41: 0.07130678915444527 + ArtUnc_42: 0.09783409895430999 + ArtUnc_43: -0.0025186435155468063 + ArtUnc_44: -0.025573406243681544 + ArtUnc_45: 0.03679531486118474 + ArtUnc_46: -0.003224507487493442 + ArtUnc_47: 0.022428942333149793 + ArtUnc_48: 0.0027457022023610472 + ArtUnc_49: -0.013380306228957847 + ArtUnc_50: -0.01680463061811569 + ArtUnc_51: 0.0006300547084760256 + ArtUnc_52: -0.0005791249759598666 + ArtUnc_53: -0.016114514223097707 + ArtUnc_54: 0.005240293819542083 + ArtUnc_55: 0.002967708631284937 + ArtUnc_56: 0.00019026322521595404 + ArtUnc_57: 0.0002804429750602793 + ArtUnc_58: -0.001894443931454924 + ArtUnc_59: 0.0013271820680700766 + ArtUnc_60: 0.00035204867711393067 + ArtUnc_61: -0.0014031938044521107 + ArtUnc_62: 0.000288213901971008 + ArtUnc_63: 0.0005940507007868716 + ArtUnc_64: -8.618144975369645e-05 + ArtUnc_65: 0.0002762138691505921 + ArtUnc_66: 0.0008705951659873383 + ArtUnc_67: -0.0002900155986531886 + ArtUnc_68: -0.001088372977162145 + ArtUnc_69: -0.0005855436480218688 + ArtUnc_70: 3.891221637388164e-05 + ArtUnc_71: -0.00010782019438672507 + ArtUnc_72: 7.085871654984114e-05 + ArtUnc_73: -9.26754934375886e-06 + ArtUnc_74: 1.0338450946933556e-05 + ArtUnc_75: 2.5984669077553655e-06 + ArtUnc_76: -3.7953189242014587e-06 + ArtUnc_77: -6.080111235031745e-06 + ArtUnc_78: -1.145943283772544e-05 + ArtUnc_79: 1.3531736033285865e-05 + ArtUnc_80: 4.785256084644365e-06 + ArtUnc_81: -1.4476474117618153e-06 + ArtUnc_82: 8.717567938832361e-09 + ArtUnc_83: 2.1625432339056964e-06 + ArtUnc_84: 1.4245958021681639e-06 + ArtUnc_85: -1.5918227317219126e-06 + ArtUnc_86: 2.033747431831262e-06 + ArtUnc_87: 1.5086338157833956e-06 + ArtUnc_88: 1.705818229522455e-06 + ArtUnc_89: 1.6382068061899532e-06 + ArtUnc_90: -2.8779633835803196e-07 + ArtUnc_91: 4.3439631693636184e-07 + ArtUnc_92: 6.715287876035183e-08 + ArtUnc_93: -5.728647448855988e-08 + ArtUnc_94: -7.621759654344934e-07 + ArtUnc_95: 4.1672703857164295e-08 + ArtUnc_96: -2.8880854045615154e-07 - stat: 0 Uncorr: 0.149 RCES: 0.07179883146681428 @@ -2124,102 +2124,102 @@ bins: ModelRW_2: 0.22441447914517457 JES_1: 0.4924272481671785 JES_2: 0.4924272481671785 - ArtUnc_1: 0.00048222324563112324 - ArtUnc_2: -0.00045481936606475335 - ArtUnc_3: -0.00028651499613534676 - ArtUnc_4: -5.045932370837303e-06 - ArtUnc_5: -6.963204243240137e-05 - ArtUnc_6: 3.525407986547766e-05 - ArtUnc_7: 7.335364810789872e-07 - ArtUnc_8: -0.011353917117131667 - ArtUnc_9: -4.218063182215126e-05 - ArtUnc_10: -0.015707934389066276 - ArtUnc_11: -0.009803885316949507 - ArtUnc_12: 0.002153699370555611 - ArtUnc_13: 0.00753284433765608 - ArtUnc_14: 0.0021950944042568345 - ArtUnc_15: 0.006046097250410136 - ArtUnc_16: -0.002311692799103495 - ArtUnc_17: -0.0017171120266755752 - ArtUnc_18: 0.0010288977453567977 - ArtUnc_19: -0.00011311504002507693 - ArtUnc_20: -0.0005321726757169514 - ArtUnc_21: 0.00031996106432857584 - ArtUnc_22: -9.23556488693514e-05 - ArtUnc_23: 4.181140486327824e-05 - ArtUnc_24: -1.9034702199728612e-05 - ArtUnc_25: 0.020487758169370637 - ArtUnc_26: -0.011574866257633072 - ArtUnc_27: -0.08912912698772604 - ArtUnc_28: 0.008665626267010507 - ArtUnc_29: 0.006635338253214907 - ArtUnc_30: 0.02794587681218538 - ArtUnc_31: 0.000977229749718423 - ArtUnc_32: -0.010216142199214729 - ArtUnc_33: -0.002845330035775146 - ArtUnc_34: 0.005570333273643814 - ArtUnc_35: 0.009662654568295312 - ArtUnc_36: -0.004528737722650618 - ArtUnc_37: -0.0012038460339397936 - ArtUnc_38: -0.0018731277432523967 - ArtUnc_39: 0.0008503564209477177 - ArtUnc_40: 0.000138445622024803 - ArtUnc_41: 0.663849568643789 - ArtUnc_42: -0.5706914172499961 - ArtUnc_43: -0.3775614838740124 - ArtUnc_44: -0.03501730818426179 - ArtUnc_45: -0.22079268371283478 - ArtUnc_46: -0.15556486625569363 - ArtUnc_47: -0.03878286742300643 - ArtUnc_48: 0.1792366648952618 - ArtUnc_49: -0.054283781528397274 - ArtUnc_50: -0.13242443389466826 - ArtUnc_51: -0.13148541911448722 - ArtUnc_52: 0.048082372908605085 - ArtUnc_53: 0.03475140647080293 - ArtUnc_54: 0.0036341293741232877 - ArtUnc_55: 0.007711552695186414 - ArtUnc_56: -0.003416335306032307 - ArtUnc_57: 0.008015429032454417 - ArtUnc_58: -0.04296678302902025 - ArtUnc_59: 0.021593356391990164 - ArtUnc_60: 0.005088828565798807 - ArtUnc_61: -0.024094100946152837 - ArtUnc_62: 0.006406534115998357 - ArtUnc_63: 0.009260583805346435 - ArtUnc_64: -0.0007324592001936841 - ArtUnc_65: 0.0023102409510445264 - ArtUnc_66: -0.011795995784537588 - ArtUnc_67: 0.0037988107609475724 - ArtUnc_68: 0.014005992450294541 - ArtUnc_69: 0.007273315267392656 - ArtUnc_70: -0.001466337672531976 - ArtUnc_71: -0.0009929230225180076 - ArtUnc_72: 0.00042293942566536656 - ArtUnc_73: 0.00011844704664032813 - ArtUnc_74: 0.00023022953652045142 - ArtUnc_75: 5.280533255610051e-05 - ArtUnc_76: 5.8320312563029384e-05 - ArtUnc_77: 0.00013664656253661587 - ArtUnc_78: -0.0002258553331687576 - ArtUnc_79: -0.0003222283740100807 - ArtUnc_80: 8.560658591627343e-05 - ArtUnc_81: 2.7635731751350576e-05 - ArtUnc_82: -1.4471079941618696e-07 - ArtUnc_83: -4.849242745558435e-05 - ArtUnc_84: -2.73851982751988e-05 - ArtUnc_85: 3.691156820800472e-05 - ArtUnc_86: -3.2808291692025e-05 - ArtUnc_87: 5.063474698032525e-05 - ArtUnc_88: 5.9404921856279335e-06 - ArtUnc_89: 1.3945197108891403e-05 - ArtUnc_90: -1.976061848848475e-05 - ArtUnc_91: 5.4158037246835686e-06 - ArtUnc_92: 4.5856356459877216e-05 - ArtUnc_93: 3.282889882737818e-05 - ArtUnc_94: -1.5861418317529727e-06 - ArtUnc_95: 9.969375328917745e-06 - ArtUnc_96: 8.099606377265982e-06 + ArtUnc_1: 0.00048222324563112264 + ArtUnc_2: -0.0004548193660647549 + ArtUnc_3: -0.000286514996135342 + ArtUnc_4: -5.045932370756765e-06 + ArtUnc_5: -6.963204243240928e-05 + ArtUnc_6: -3.525407986559304e-05 + ArtUnc_7: -7.335364812501672e-07 + ArtUnc_8: 0.011353917117131688 + ArtUnc_9: 4.218063182166823e-05 + ArtUnc_10: -0.015707934389066265 + ArtUnc_11: -0.009803885316949498 + ArtUnc_12: 0.0021536993705559898 + ArtUnc_13: 0.007532844337655942 + ArtUnc_14: 0.0021950944042568683 + ArtUnc_15: 0.006046097250410134 + ArtUnc_16: -0.0023116927991033214 + ArtUnc_17: 0.0017171120266754247 + ArtUnc_18: -0.0010288977453566045 + ArtUnc_19: 0.00011311504002460291 + ArtUnc_20: 0.0005321726757171317 + ArtUnc_21: 0.00031996106432853085 + ArtUnc_22: -9.235564886922412e-05 + ArtUnc_23: -4.181140486276274e-05 + ArtUnc_24: 1.90347021989865e-05 + ArtUnc_25: -0.020487758169369312 + ArtUnc_26: 0.011574866257633931 + ArtUnc_27: 0.08912912698772603 + ArtUnc_28: -0.008665626267010482 + ArtUnc_29: -0.006635338253216263 + ArtUnc_30: 0.027945876812184477 + ArtUnc_31: -0.0009772297497179653 + ArtUnc_32: -0.010216142199216087 + ArtUnc_33: -0.002845330035767449 + ArtUnc_34: -0.005570333273645624 + ArtUnc_35: -0.009662654568296104 + ArtUnc_36: -0.004528737722651677 + ArtUnc_37: -0.0012038460339396265 + ArtUnc_38: 0.0018731277432525726 + ArtUnc_39: 0.0008503564209471586 + ArtUnc_40: 0.00013844562202529199 + ArtUnc_41: 0.6638495686437801 + ArtUnc_42: -0.5706914172500034 + ArtUnc_43: -0.37756148387400784 + ArtUnc_44: -0.03501730818425852 + ArtUnc_45: -0.22079268371283536 + ArtUnc_46: -0.1555648662556946 + ArtUnc_47: 0.03878286742300583 + ArtUnc_48: -0.17923666489526285 + ArtUnc_49: 0.05428378152839977 + ArtUnc_50: 0.1324244338946672 + ArtUnc_51: -0.003416335306031974 + ArtUnc_52: 0.007711552695186313 + ArtUnc_53: 0.13148541911448347 + ArtUnc_54: -0.04808237290860438 + ArtUnc_55: -0.03475140647080258 + ArtUnc_56: 0.003634129374122391 + ArtUnc_57: -0.008015429032455383 + ArtUnc_58: 0.042966783029020544 + ArtUnc_59: -0.021593356391989723 + ArtUnc_60: -0.005088828565798671 + ArtUnc_61: 0.024094100946153038 + ArtUnc_62: -0.006406534115997293 + ArtUnc_63: -0.009260583805346423 + ArtUnc_64: -0.0007324592001938286 + ArtUnc_65: -0.0023102409510445 + ArtUnc_66: -0.011795995784537529 + ArtUnc_67: 0.003798810760947751 + ArtUnc_68: 0.014005992450295192 + ArtUnc_69: 0.0072733152673920285 + ArtUnc_70: -0.0004229394256654641 + ArtUnc_71: 0.0014663376725319356 + ArtUnc_72: -0.0009929230225179458 + ArtUnc_73: 0.00011844704664039685 + ArtUnc_74: -0.00023022953652054892 + ArtUnc_75: -5.280533255611597e-05 + ArtUnc_76: 5.8320312563038125e-05 + ArtUnc_77: 0.00013664656253665832 + ArtUnc_78: 0.00022585533316878535 + ArtUnc_79: -0.0003222283740101118 + ArtUnc_80: -8.560658591625873e-05 + ArtUnc_81: 2.7635731751347974e-05 + ArtUnc_82: -1.4471079941616133e-07 + ArtUnc_83: -4.8492427455588045e-05 + ArtUnc_84: -2.7385198275194944e-05 + ArtUnc_85: 3.691156820800699e-05 + ArtUnc_86: -4.585635645987649e-05 + ArtUnc_87: -3.282889882737541e-05 + ArtUnc_88: -3.2808291692027684e-05 + ArtUnc_89: -5.063474698032896e-05 + ArtUnc_90: 5.940492185626315e-06 + ArtUnc_91: -9.96937532891693e-06 + ArtUnc_92: -1.5861418317524066e-06 + ArtUnc_93: 1.394519710889056e-05 + ArtUnc_94: 1.976061848848542e-05 + ArtUnc_95: 5.415803724684479e-06 + ArtUnc_96: 8.099606377266068e-06 - stat: 0 Uncorr: 0.023799999999999998 RCES: 0.029731906497902215 @@ -2235,102 +2235,102 @@ bins: ModelRW_2: 0.09357002614085345 JES_1: 0.06572781628427951 JES_2: 0.06572781628427951 - ArtUnc_1: 8.284240535459945e-05 - ArtUnc_2: -7.143652520747548e-05 - ArtUnc_3: -4.293910641632099e-05 - ArtUnc_4: 9.189147705404e-07 - ArtUnc_5: -1.1683924773492631e-05 - ArtUnc_6: 5.437220127168312e-06 - ArtUnc_7: 3.1867886787515996e-07 - ArtUnc_8: -0.001750767579044543 - ArtUnc_9: -6.320894995004844e-06 - ArtUnc_10: -0.0023152786563023536 - ArtUnc_11: -0.0015122601857190162 - ArtUnc_12: 0.00028672664141823575 - ArtUnc_13: 0.001170713781008741 - ArtUnc_14: 0.00037400319118559457 - ArtUnc_15: 0.0010149982650400344 - ArtUnc_16: -0.0004244565163136573 - ArtUnc_17: -0.00034015178709350026 - ArtUnc_18: 0.00019293282009014468 - ArtUnc_19: -4.3545110517268796e-05 - ArtUnc_20: -3.082354649522926e-05 - ArtUnc_21: 1.7465997791860596e-06 - ArtUnc_22: 1.2057399180629462e-05 - ArtUnc_23: -4.49174474318245e-06 - ArtUnc_24: -9.79744710511551e-07 - ArtUnc_25: -0.00020738105703601545 - ArtUnc_26: 0.000423076135428493 - ArtUnc_27: 0.003193753895059643 - ArtUnc_28: -0.0002789218703016149 - ArtUnc_29: -0.0003826943616379029 - ArtUnc_30: -0.002112576370727655 - ArtUnc_31: -4.6340652522069066e-05 - ArtUnc_32: 0.0012541085350817492 - ArtUnc_33: 0.00037808859529180923 - ArtUnc_34: -0.0008401347196621201 - ArtUnc_35: -0.001437235721419083 - ArtUnc_36: 0.0005759556505316176 - ArtUnc_37: 9.800053871529871e-05 - ArtUnc_38: 0.00010495865631075194 - ArtUnc_39: -1.4606526389308009e-05 - ArtUnc_40: -3.996192470531904e-06 - ArtUnc_41: 0.011750948973267745 - ArtUnc_42: -0.015575601828046928 - ArtUnc_43: -0.0041891881277658785 - ArtUnc_44: 0.0011989486168135766 - ArtUnc_45: -0.0023379869035208283 - ArtUnc_46: 0.0001545301319618089 - ArtUnc_47: 0.000555931868146022 - ArtUnc_48: -2.71013976006483e-05 - ArtUnc_49: 0.00020626001420983263 - ArtUnc_50: 5.820870463682508e-05 - ArtUnc_51: 0.00014939065649090851 - ArtUnc_52: 9.672127646830308e-05 - ArtUnc_53: 1.109866188438674e-05 - ArtUnc_54: 1.7388712029753375e-05 - ArtUnc_55: 2.554443969099818e-05 - ArtUnc_56: -1.6662171502083667e-05 - ArtUnc_57: 0.11990698671213056 - ArtUnc_58: -0.16304725262959285 - ArtUnc_59: -0.2330672324039735 - ArtUnc_60: -0.08346872670813604 - ArtUnc_61: 0.0561300422126411 - ArtUnc_62: 0.05180044908507952 - ArtUnc_63: -0.03058943537058552 - ArtUnc_64: -0.08155023196137727 - ArtUnc_65: -0.07903336729866804 - ArtUnc_66: 0.045303057260935316 - ArtUnc_67: -0.013349390116759171 - ArtUnc_68: -0.02640805009968987 - ArtUnc_69: -0.012559102862259879 - ArtUnc_70: 0.0003946408968876557 - ArtUnc_71: 0.0015003052226944262 - ArtUnc_72: -0.0011507880480597812 - ArtUnc_73: -0.016644764783269997 - ArtUnc_74: -0.01751538637366093 - ArtUnc_75: -0.0022558265607425017 - ArtUnc_76: 0.0004613325151309625 - ArtUnc_77: -0.003493613132642539 - ArtUnc_78: 0.002690829307184598 - ArtUnc_79: 0.006560964965245627 - ArtUnc_80: -0.00094481817009344 - ArtUnc_81: -0.00044521757762512745 - ArtUnc_82: 9.185677018423849e-08 - ArtUnc_83: -0.00011809609694400983 - ArtUnc_84: 0.0005436643903216545 - ArtUnc_85: 6.64884406015711e-05 - ArtUnc_86: 0.0003553342130206749 - ArtUnc_87: -0.0010106515967770208 - ArtUnc_88: -0.00013932834585072567 - ArtUnc_89: -4.664789298302181e-05 - ArtUnc_90: 0.0005146245491329366 - ArtUnc_91: -0.00012595303709050655 - ArtUnc_92: -4.825610490853249e-05 - ArtUnc_93: -7.071954635315597e-05 - ArtUnc_94: 3.920061732910895e-06 - ArtUnc_95: -2.3758346408525107e-05 - ArtUnc_96: 1.3968545028193236e-06 + ArtUnc_1: 8.284240535459942e-05 + ArtUnc_2: -7.143652520747553e-05 + ArtUnc_3: -4.2939106416322474e-05 + ArtUnc_4: 9.189147705604213e-07 + ArtUnc_5: -1.168392477351611e-05 + ArtUnc_6: -5.437220127116407e-06 + ArtUnc_7: -3.186788680124188e-07 + ArtUnc_8: 0.0017507675790445158 + ArtUnc_9: 6.3208949947927375e-06 + ArtUnc_10: -0.0023152786563023693 + ArtUnc_11: -0.001512260185718958 + ArtUnc_12: 0.0002867266414185476 + ArtUnc_13: 0.0011707137810086823 + ArtUnc_14: 0.00037400319118526687 + ArtUnc_15: 0.0010149982650403862 + ArtUnc_16: -0.0004244565163130159 + ArtUnc_17: 0.00034015178709396565 + ArtUnc_18: -0.000192932820089954 + ArtUnc_19: 4.354511051629244e-05 + ArtUnc_20: 3.082354649563666e-05 + ArtUnc_21: 1.7465997797400437e-06 + ArtUnc_22: 1.2057399180159132e-05 + ArtUnc_23: 4.491744744461753e-06 + ArtUnc_24: 9.79744710611963e-07 + ArtUnc_25: 0.000207381057035519 + ArtUnc_26: -0.0004230761354287319 + ArtUnc_27: -0.0031937538950595834 + ArtUnc_28: 0.0002789218703015377 + ArtUnc_29: 0.0003826943616382765 + ArtUnc_30: -0.0021125763707275347 + ArtUnc_31: 4.634065252060755e-05 + ArtUnc_32: 0.0012541085350820632 + ArtUnc_33: 0.0003780885952905535 + ArtUnc_34: 0.0008401347196628806 + ArtUnc_35: 0.0014372357214196374 + ArtUnc_36: 0.0005759556505313191 + ArtUnc_37: 9.800053871621878e-05 + ArtUnc_38: -0.0001049586563108525 + ArtUnc_39: -1.4606526390462278e-05 + ArtUnc_40: -3.996192469797755e-06 + ArtUnc_41: 0.011750948973270116 + ArtUnc_42: -0.015575601828048118 + ArtUnc_43: -0.004189188127765207 + ArtUnc_44: 0.0011989486168144544 + ArtUnc_45: -0.002337986903522328 + ArtUnc_46: 0.00015453013196292003 + ArtUnc_47: -0.0005559318681489714 + ArtUnc_48: 2.7101397601735106e-05 + ArtUnc_49: -0.00020626001420911725 + ArtUnc_50: -5.820870463632121e-05 + ArtUnc_51: -1.6662171501764027e-05 + ArtUnc_52: 2.5544439689513627e-05 + ArtUnc_53: -0.00014939065649154743 + ArtUnc_54: -9.672127646801581e-05 + ArtUnc_55: -1.1098661883805367e-05 + ArtUnc_56: 1.7388712030098158e-05 + ArtUnc_57: -0.11990698671213583 + ArtUnc_58: 0.1630472526295877 + ArtUnc_59: 0.23306723240397223 + ArtUnc_60: 0.08346872670813442 + ArtUnc_61: -0.05613004221263735 + ArtUnc_62: -0.0518004490850811 + ArtUnc_63: 0.030589435370586383 + ArtUnc_64: -0.08155023196137762 + ArtUnc_65: 0.07903336729866912 + ArtUnc_66: 0.04530305726093659 + ArtUnc_67: -0.013349390116759653 + ArtUnc_68: -0.0264080500996915 + ArtUnc_69: -0.012559102862259136 + ArtUnc_70: 0.0011507880480598309 + ArtUnc_71: -0.00039464089688755454 + ArtUnc_72: 0.0015003052226943954 + ArtUnc_73: -0.01664476478326977 + ArtUnc_74: 0.017515386373661138 + ArtUnc_75: 0.0022558265607425716 + ArtUnc_76: 0.00046133251513093 + ArtUnc_77: -0.0034936131326428277 + ArtUnc_78: -0.0026908293071845365 + ArtUnc_79: 0.006560964965245572 + ArtUnc_80: 0.0009448181700934723 + ArtUnc_81: -0.00044521757762517754 + ArtUnc_82: 9.185677018507984e-08 + ArtUnc_83: -0.00011809609694401655 + ArtUnc_84: 0.0005436643903216629 + ArtUnc_85: 6.648844060157769e-05 + ArtUnc_86: 4.8256104908536475e-05 + ArtUnc_87: 7.071954635315663e-05 + ArtUnc_88: 0.00035533421302064275 + ArtUnc_89: 0.00101065159677701 + ArtUnc_90: -0.00013932834585073713 + ArtUnc_91: 2.375834640852458e-05 + ArtUnc_92: 3.920061732908886e-06 + ArtUnc_93: -4.664789298303528e-05 + ArtUnc_94: -0.0005146245491329366 + ArtUnc_95: -0.00012595303709050904 + ArtUnc_96: 1.3968545028191379e-06 - stat: 0 Uncorr: 0.0044800000000000005 RCES: 0.010424522964625288 @@ -2346,102 +2346,102 @@ bins: ModelRW_2: 0.02157297936586414 JES_1: 0.018860287879033027 JES_2: 0.018860287879033027 - ArtUnc_1: -8.737694534121226e-10 - ArtUnc_2: 1.646459406432666e-09 - ArtUnc_3: 1.5950511990297585e-09 - ArtUnc_4: 1.304097411534912e-10 - ArtUnc_5: 5.508080194962333e-10 - ArtUnc_6: -3.7671139811463697e-10 - ArtUnc_7: -1.2766550800524874e-11 - ArtUnc_8: 1.831855433562771e-07 - ArtUnc_9: 7.59841523925736e-10 - ArtUnc_10: 3.172515480713826e-07 - ArtUnc_11: 2.644748786934261e-07 - ArtUnc_12: -5.4907586638807504e-08 - ArtUnc_13: -2.718473923424106e-07 - ArtUnc_14: -9.213717981734448e-08 - ArtUnc_15: -2.7243632993552247e-07 - ArtUnc_16: 1.2069090293084262e-07 - ArtUnc_17: 9.887766630746757e-08 - ArtUnc_18: -6.492169166503194e-08 - ArtUnc_19: 1.0089425734632696e-08 - ArtUnc_20: 3.782777691680796e-08 - ArtUnc_21: -2.4942538803657166e-08 - ArtUnc_22: 7.1820777657191135e-09 - ArtUnc_23: -4.737267003279405e-09 - ArtUnc_24: 2.6786010092417603e-09 - ArtUnc_25: -2.9575991000909014e-06 - ArtUnc_26: 2.4109347240861037e-06 - ArtUnc_27: 1.9589600326097696e-05 - ArtUnc_28: -2.1605117265004075e-06 - ArtUnc_29: -1.866721069813087e-06 - ArtUnc_30: -8.220576699275737e-06 - ArtUnc_31: -3.148499519731872e-07 - ArtUnc_32: 3.566962795196321e-06 - ArtUnc_33: 9.91053259509128e-07 - ArtUnc_34: -2.229321893011696e-06 - ArtUnc_35: -3.988495166844839e-06 - ArtUnc_36: 2.166989013686728e-06 - ArtUnc_37: 6.645354509139063e-07 - ArtUnc_38: 1.1370711387899895e-06 - ArtUnc_39: -6.259626810449045e-07 - ArtUnc_40: -1.139598981769818e-07 - ArtUnc_41: -0.0011137227426165602 - ArtUnc_42: 0.001141607145327685 - ArtUnc_43: 0.0008346508307615107 - ArtUnc_44: 8.6019434785856e-05 - ArtUnc_45: 0.0005798205279119712 - ArtUnc_46: 0.0004383472277824593 - ArtUnc_47: 0.00012074281722233053 - ArtUnc_48: -0.0005528749315808311 - ArtUnc_49: 0.00017207676192542085 - ArtUnc_50: 0.0004507527380131445 - ArtUnc_51: 0.00048763024663606885 - ArtUnc_52: -0.00018684558503820846 - ArtUnc_53: -0.00015388762592656805 - ArtUnc_54: -1.818698188722652e-05 - ArtUnc_55: -4.812354390019649e-05 - ArtUnc_56: 2.5089994914974807e-05 - ArtUnc_57: 0.004004969220651188 - ArtUnc_58: -0.0036072664081089937 - ArtUnc_59: -0.004505974454369955 - ArtUnc_60: -0.0013454969700595991 - ArtUnc_61: 0.000818722134420752 - ArtUnc_62: 0.00031123049440000554 - ArtUnc_63: -0.0002862908683742836 - ArtUnc_64: -0.00031524814064586633 - ArtUnc_65: -0.00036836388364806913 - ArtUnc_66: 0.0002982348981039499 - ArtUnc_67: -0.00015023875584110896 - ArtUnc_68: -0.0006147404317043047 - ArtUnc_69: -0.0005233603568171549 - ArtUnc_70: 8.244916610592315e-05 - ArtUnc_71: 0.000149859393634602 - ArtUnc_72: -0.0001969746047289603 - ArtUnc_73: 0.003804818333467311 - ArtUnc_74: 0.0007028573295871507 - ArtUnc_75: -0.0011840866023423537 - ArtUnc_76: 0.028353481601100815 - ArtUnc_77: -0.005216149143443748 - ArtUnc_78: -0.06222596545671067 - ArtUnc_79: 0.015037693794520234 - ArtUnc_80: 0.026302069053069095 - ArtUnc_81: 0.014767802765716851 - ArtUnc_82: -1.172977938891221e-06 - ArtUnc_83: -0.006403768686471259 - ArtUnc_84: -0.017996315182303758 - ArtUnc_85: 0.004758655675668418 - ArtUnc_86: -0.0433753782945244 - ArtUnc_87: 0.02937958362476692 - ArtUnc_88: 0.0073881170622491854 - ArtUnc_89: -0.030648055619916185 - ArtUnc_90: -0.013312031052442995 - ArtUnc_91: 0.0008653673756016006 - ArtUnc_92: 0.005074421813299009 - ArtUnc_93: 0.0028297512649376163 - ArtUnc_94: -0.0001033480450327636 - ArtUnc_95: 0.0007635967238544992 - ArtUnc_96: 0.001045600489105708 + ArtUnc_1: -8.737694534121229e-10 + ArtUnc_2: 1.6464594064326736e-09 + ArtUnc_3: 1.5950511990295304e-09 + ArtUnc_4: 1.3040974115525698e-10 + ArtUnc_5: 5.508080194611627e-10 + ArtUnc_6: 3.7671139816293967e-10 + ArtUnc_7: 1.2766550907783893e-11 + ArtUnc_8: -1.8318554335628124e-07 + ArtUnc_9: -7.598415241707395e-10 + ArtUnc_10: 3.172515480713788e-07 + ArtUnc_11: 2.644748786934402e-07 + ArtUnc_12: -5.490758663839249e-08 + ArtUnc_13: -2.718473923425416e-07 + ArtUnc_14: -9.213717981691248e-08 + ArtUnc_15: -2.724363299357123e-07 + ArtUnc_16: 1.2069090292989235e-07 + ArtUnc_17: -9.887766630843156e-08 + ArtUnc_18: 6.492169166509936e-08 + ArtUnc_19: -1.0089425732864725e-08 + ArtUnc_20: -3.7827776916724463e-08 + ArtUnc_21: -2.494253881503824e-08 + ArtUnc_22: 7.18207777277124e-09 + ArtUnc_23: 4.737266987816121e-09 + ArtUnc_24: -2.6786010019964452e-09 + ArtUnc_25: 2.9575991000873583e-06 + ArtUnc_26: -2.4109347240891293e-06 + ArtUnc_27: -1.958960032609601e-05 + ArtUnc_28: 2.1605117264882275e-06 + ArtUnc_29: 1.866721069826176e-06 + ArtUnc_30: -8.22057669927223e-06 + ArtUnc_31: 3.1484995192426904e-07 + ArtUnc_32: 3.566962795179308e-06 + ArtUnc_33: 9.910532595307408e-07 + ArtUnc_34: 2.229321892986007e-06 + ArtUnc_35: 3.9884951668698356e-06 + ArtUnc_36: 2.166989013651135e-06 + ArtUnc_37: 6.645354509858519e-07 + ArtUnc_38: -1.137071138773637e-06 + ArtUnc_39: -6.259626810669443e-07 + ArtUnc_40: -1.139598981579064e-07 + ArtUnc_41: -0.0011137227426165804 + ArtUnc_42: 0.001141607145327739 + ArtUnc_43: 0.0008346508307614627 + ArtUnc_44: 8.601943478581479e-05 + ArtUnc_45: 0.0005798205279119543 + ArtUnc_46: 0.0004383472277824721 + ArtUnc_47: -0.00012074281722239596 + ArtUnc_48: 0.000552874931580836 + ArtUnc_49: -0.00017207676192544896 + ArtUnc_50: -0.0004507527380131608 + ArtUnc_51: 2.508999491499608e-05 + ArtUnc_52: -4.8123543900225626e-05 + ArtUnc_53: -0.0004876302466361276 + ArtUnc_54: 0.00018684558503821334 + ArtUnc_55: 0.00015388762592659022 + ArtUnc_56: -1.8186981887229775e-05 + ArtUnc_57: -0.004004969220651377 + ArtUnc_58: 0.003607266408108926 + ArtUnc_59: 0.004505974454370048 + ArtUnc_60: 0.001345496970059587 + ArtUnc_61: -0.0008187221344207724 + ArtUnc_62: -0.0003112304944000799 + ArtUnc_63: 0.0002862908683742685 + ArtUnc_64: -0.0003152481406459922 + ArtUnc_65: 0.0003683638836481357 + ArtUnc_66: 0.0002982348981041299 + ArtUnc_67: -0.0001502387558411166 + ArtUnc_68: -0.0006147404317045237 + ArtUnc_69: -0.0005233603568172246 + ArtUnc_70: 0.00019697460472897514 + ArtUnc_71: -8.244916610588482e-05 + ArtUnc_72: 0.00014985939363457848 + ArtUnc_73: 0.0038048183334672874 + ArtUnc_74: -0.0007028573295874387 + ArtUnc_75: 0.0011840866023422926 + ArtUnc_76: 0.02835348160110081 + ArtUnc_77: -0.005216149143439307 + ArtUnc_78: 0.06222596545671097 + ArtUnc_79: 0.015037693794521264 + ArtUnc_80: -0.026302069053068946 + ArtUnc_81: 0.01476780276571734 + ArtUnc_82: -1.1729779388745412e-06 + ArtUnc_83: -0.006403768686471221 + ArtUnc_84: -0.017996315182303557 + ArtUnc_85: 0.004758655675668427 + ArtUnc_86: -0.005074421813299028 + ArtUnc_87: -0.002829751264937561 + ArtUnc_88: -0.04337537829452347 + ArtUnc_89: -0.029379583624767714 + ArtUnc_90: 0.007388117062249002 + ArtUnc_91: -0.0007635967238545224 + ArtUnc_92: -0.00010334804503274076 + ArtUnc_93: -0.030648055619916178 + ArtUnc_94: 0.01331203105244284 + ArtUnc_95: 0.0008653673756013533 + ArtUnc_96: 0.001045600489105698 - stat: 0 Uncorr: 7.41 RCES: 26.389667145068348 @@ -2457,102 +2457,102 @@ bins: ModelRW_2: 4.9776781861627 JES_1: 3.1814496512989168 JES_2: 3.1814496512989168 - ArtUnc_1: 28.53461948130384 - ArtUnc_2: -7.123863967078527 - ArtUnc_3: -2.718126555131723 - ArtUnc_4: -0.38992848761021287 - ArtUnc_5: -0.0067074637807442525 - ArtUnc_6: 0.008283999205216913 - ArtUnc_7: -0.0007567391512449102 - ArtUnc_8: 0.2785588228961477 - ArtUnc_9: 0.0015553697559489398 - ArtUnc_10: 0.6841040029689238 - ArtUnc_11: 0.27039826133315903 - ArtUnc_12: -0.025771205810183807 - ArtUnc_13: -0.2019651073492938 - ArtUnc_14: -0.06124574938371301 - ArtUnc_15: -0.13733988140609574 - ArtUnc_16: 0.055592506460016365 - ArtUnc_17: 0.03891494291030174 - ArtUnc_18: -0.022439546494829106 - ArtUnc_19: 0.004613609699705377 - ArtUnc_20: 0.005955233470981325 - ArtUnc_21: -0.000919797110477942 - ArtUnc_22: -0.001561310882612792 - ArtUnc_23: 0.0005657803910753065 - ArtUnc_24: 0.00013845948901261996 - ArtUnc_25: -0.0015884893142737797 - ArtUnc_26: -0.002799873191823955 - ArtUnc_27: -0.012058199532830136 - ArtUnc_28: -0.0010435302393417775 - ArtUnc_29: 0.0008423840084403705 - ArtUnc_30: 0.00685468575650593 - ArtUnc_31: -0.0006563809746295895 - ArtUnc_32: -0.0033977228069870455 - ArtUnc_33: -0.001355084387744165 - ArtUnc_34: 0.0018974214458764834 - ArtUnc_35: 0.0033135972302499035 - ArtUnc_36: -0.0011026071913300026 - ArtUnc_37: -0.0002112098128054945 - ArtUnc_38: -0.00016111750143405293 - ArtUnc_39: 7.780354641443638e-06 - ArtUnc_40: -1.0949039928915275e-05 - ArtUnc_41: 0.000816245137223375 - ArtUnc_42: 0.0006595543728718285 - ArtUnc_43: -0.00019201795704490361 - ArtUnc_44: -0.00029239045544503147 - ArtUnc_45: 0.00029228857947157796 - ArtUnc_46: -0.0001495058040451832 - ArtUnc_47: -0.00034465529271012645 - ArtUnc_48: 0.00011551717262219872 - ArtUnc_49: 0.0001708533090525714 - ArtUnc_50: 0.0001364469829349886 - ArtUnc_51: 0.00014030870040233282 - ArtUnc_52: -2.172973149282298e-05 - ArtUnc_53: -2.5524966768609078e-05 - ArtUnc_54: 1.1225502356581918e-05 - ArtUnc_55: -1.49055443718135e-05 - ArtUnc_56: 9.219831701846346e-06 - ArtUnc_57: 4.691504492441189e-06 - ArtUnc_58: -7.6197052616900875e-06 - ArtUnc_59: -9.825460992185917e-06 - ArtUnc_60: -3.627685529542087e-06 - ArtUnc_61: 2.392677403828972e-06 - ArtUnc_62: 2.6175445500912144e-06 - ArtUnc_63: -1.7619189417090062e-06 - ArtUnc_64: -4.092775317851887e-06 - ArtUnc_65: -4.0074756663387494e-06 - ArtUnc_66: 2.9159524324258453e-06 - ArtUnc_67: -1.0830813048007426e-06 - ArtUnc_68: -3.596523553699565e-06 - ArtUnc_69: -2.322886166859726e-06 - ArtUnc_70: 1.561334361050154e-07 - ArtUnc_71: 6.637580118038576e-08 - ArtUnc_72: -2.5743213044265465e-07 - ArtUnc_73: -6.870695206562224e-07 - ArtUnc_74: -8.574271135635655e-07 - ArtUnc_75: -1.1569485846267584e-07 - ArtUnc_76: -6.437296749786064e-08 - ArtUnc_77: -1.8370731100060585e-07 - ArtUnc_78: 2.4335993445393443e-07 - ArtUnc_79: 3.0163122457541757e-07 - ArtUnc_80: 1.0246606463765263e-07 - ArtUnc_81: 3.8856419054492235e-08 - ArtUnc_82: -3.676040090992887e-11 - ArtUnc_83: 1.978891082722876e-08 - ArtUnc_84: -3.067811729035533e-08 - ArtUnc_85: -1.2655550615767179e-08 - ArtUnc_86: 3.768689079174495e-08 - ArtUnc_87: -3.3591322456585576e-08 - ArtUnc_88: 1.590444265428146e-08 - ArtUnc_89: 1.3221074939131933e-08 - ArtUnc_90: 5.231483778556825e-09 - ArtUnc_91: -6.979669883932993e-09 - ArtUnc_92: 6.92443228530112e-09 - ArtUnc_93: 1.493979649829139e-08 - ArtUnc_94: -1.0576092301005824e-09 - ArtUnc_95: 5.957595733315587e-09 - ArtUnc_96: 1.5437534461032975e-10 + ArtUnc_1: 28.534619481303825 + ArtUnc_2: -7.123863967078508 + ArtUnc_3: -2.7181265551317226 + ArtUnc_4: -0.3899284876102117 + ArtUnc_5: -0.00670746378074466 + ArtUnc_6: -0.008283999205217387 + ArtUnc_7: 0.0007567391512459143 + ArtUnc_8: -0.27855882289615036 + ArtUnc_9: -0.0015553697559445726 + ArtUnc_10: 0.6841040029689246 + ArtUnc_11: 0.2703982613331601 + ArtUnc_12: -0.02577120581018809 + ArtUnc_13: -0.20196510734929263 + ArtUnc_14: -0.061245749383712446 + ArtUnc_15: -0.1373398814060955 + ArtUnc_16: 0.05559250646001657 + ArtUnc_17: -0.03891494291030187 + ArtUnc_18: 0.022439546494828832 + ArtUnc_19: -0.004613609699705583 + ArtUnc_20: -0.005955233470981109 + ArtUnc_21: -0.000919797110477925 + ArtUnc_22: -0.0015613108826127554 + ArtUnc_23: -0.0005657803910752896 + ArtUnc_24: -0.00013845948901258673 + ArtUnc_25: 0.0015884893142738003 + ArtUnc_26: 0.0027998731918240935 + ArtUnc_27: 0.012058199532830109 + ArtUnc_28: 0.0010435302393417168 + ArtUnc_29: -0.0008423840084407331 + ArtUnc_30: 0.006854685756505784 + ArtUnc_31: 0.0006563809746296008 + ArtUnc_32: -0.003397722806987923 + ArtUnc_33: -0.0013550843877417945 + ArtUnc_34: -0.0018974214458767377 + ArtUnc_35: -0.0033135972302497743 + ArtUnc_36: -0.0011026071913299487 + ArtUnc_37: -0.00021120981280549925 + ArtUnc_38: 0.0001611175014340478 + ArtUnc_39: 7.780354641441171e-06 + ArtUnc_40: -1.0949039928915957e-05 + ArtUnc_41: 0.0008162451372233949 + ArtUnc_42: 0.0006595543728718163 + ArtUnc_43: -0.0001920179570449045 + ArtUnc_44: -0.00029239045544503836 + ArtUnc_45: 0.00029228857947158284 + ArtUnc_46: -0.00014950580404518931 + ArtUnc_47: 0.0003446552927101274 + ArtUnc_48: -0.00011551717262218647 + ArtUnc_49: -0.00017085330905257303 + ArtUnc_50: -0.00013644698293498577 + ArtUnc_51: 9.219831701846136e-06 + ArtUnc_52: -1.4905544371813783e-05 + ArtUnc_53: -0.00014030870040233003 + ArtUnc_54: 2.172973149282271e-05 + ArtUnc_55: 2.5524966768608532e-05 + ArtUnc_56: 1.1225502356583022e-05 + ArtUnc_57: -4.691504492441422e-06 + ArtUnc_58: 7.6197052616898715e-06 + ArtUnc_59: 9.825460992185863e-06 + ArtUnc_60: 3.627685529542029e-06 + ArtUnc_61: -2.392677403828778e-06 + ArtUnc_62: -2.617544550091262e-06 + ArtUnc_63: 1.7619189417090515e-06 + ArtUnc_64: -4.0927753178519035e-06 + ArtUnc_65: 4.0074756663388155e-06 + ArtUnc_66: 2.9159524324259093e-06 + ArtUnc_67: -1.0830813048008015e-06 + ArtUnc_68: -3.5965235536997996e-06 + ArtUnc_69: -2.322886166859595e-06 + ArtUnc_70: 2.5743213044265925e-07 + ArtUnc_71: -1.5613343610499397e-07 + ArtUnc_72: 6.637580118037731e-08 + ArtUnc_73: -6.870695206562281e-07 + ArtUnc_74: 8.574271135636011e-07 + ArtUnc_75: 1.1569485846268291e-07 + ArtUnc_76: -6.437296749786422e-08 + ArtUnc_77: -1.837073110006341e-07 + ArtUnc_78: -2.4335993445393687e-07 + ArtUnc_79: 3.0163122457542233e-07 + ArtUnc_80: -1.0246606463765234e-07 + ArtUnc_81: 3.8856419054493195e-08 + ArtUnc_82: -3.6760400909888214e-11 + ArtUnc_83: 1.978891082722819e-08 + ArtUnc_84: -3.067811729035556e-08 + ArtUnc_85: -1.2655550615766943e-08 + ArtUnc_86: -6.924432285300878e-09 + ArtUnc_87: -1.4939796498290833e-08 + ArtUnc_88: 3.768689079174396e-08 + ArtUnc_89: 3.359132245658672e-08 + ArtUnc_90: 1.590444265428233e-08 + ArtUnc_91: -5.957595733315514e-09 + ArtUnc_92: -1.0576092301003206e-09 + ArtUnc_93: 1.3221074939131718e-08 + ArtUnc_94: -5.2314837785566986e-09 + ArtUnc_95: -6.979669883933357e-09 + ArtUnc_96: 1.543753446103767e-10 - stat: 0 Uncorr: 2.7800000000000002 RCES: 9.37576380408551 @@ -2568,102 +2568,102 @@ bins: ModelRW_2: 3.9118561348802183 JES_1: 13.082709979778654 JES_2: 13.082709979778654 - ArtUnc_1: 2.297076133139009 - ArtUnc_2: -1.0892033898037945 - ArtUnc_3: -0.46266437928941223 - ArtUnc_4: 0.003459726676908899 - ArtUnc_5: -0.0702479988032363 - ArtUnc_6: 0.025635496777509318 - ArtUnc_7: 0.0011811538975454896 - ArtUnc_8: -5.698072050451222 - ArtUnc_9: -0.01838660928837008 - ArtUnc_10: -6.024756075070182 - ArtUnc_11: -2.9660838975572634 - ArtUnc_12: 0.5090423741530861 - ArtUnc_13: 1.8418379289105657 - ArtUnc_14: 0.51853845035762 - ArtUnc_15: 1.3053603129533569 - ArtUnc_16: -0.4807548269525335 - ArtUnc_17: -0.3546020620221221 - ArtUnc_18: 0.1900089641370534 - ArtUnc_19: -0.03448455438106442 - ArtUnc_20: -0.03347777181934266 - ArtUnc_21: 0.006677665520888274 - ArtUnc_22: 0.005573150621445732 - ArtUnc_23: -0.001614094874854339 - ArtUnc_24: -0.000568273667309047 - ArtUnc_25: 0.13949268880937934 - ArtUnc_26: 0.0735257804556413 - ArtUnc_27: 0.18086565126001672 - ArtUnc_28: 0.02126020679739065 - ArtUnc_29: -0.009972218314624906 - ArtUnc_30: -0.09065927398924303 - ArtUnc_31: 0.0006883162712904542 - ArtUnc_32: 0.04229196904251895 - ArtUnc_33: 0.016219675814081926 - ArtUnc_34: -0.02714390336879897 - ArtUnc_35: -0.043504078961787714 - ArtUnc_36: 0.01651470665811468 - ArtUnc_37: 0.0024434123447176818 - ArtUnc_38: 0.0029714037791766005 - ArtUnc_39: -0.0007310172834329654 - ArtUnc_40: -0.0002113625287745033 - ArtUnc_41: -0.00716087066432244 - ArtUnc_42: -0.00587695178165027 - ArtUnc_43: 0.0017314514208508663 - ArtUnc_44: 0.002553951127823668 - ArtUnc_45: -0.0025656232271245084 - ArtUnc_46: 0.0011881545478557916 - ArtUnc_47: 0.002804030604187064 - ArtUnc_48: -0.0008879580966486244 - ArtUnc_49: -0.0013691464108833973 - ArtUnc_50: -0.0011494198540057236 - ArtUnc_51: -0.0011819515239073419 - ArtUnc_52: 0.0002536231243983661 - ArtUnc_53: 0.00018472562965263277 - ArtUnc_54: -8.73983655878302e-05 - ArtUnc_55: 7.294074042155457e-05 - ArtUnc_56: -9.055078135816856e-05 - ArtUnc_57: -4.885657431811372e-05 - ArtUnc_58: 5.5139030312729935e-05 - ArtUnc_59: 0.00013839594374450177 - ArtUnc_60: 4.877085515415399e-05 - ArtUnc_61: -4.227075372782918e-05 - ArtUnc_62: -2.8700177521540744e-05 - ArtUnc_63: 2.380380668656732e-05 - ArtUnc_64: 5.132418586798756e-05 - ArtUnc_65: 5.261628114177773e-05 - ArtUnc_66: -3.8834498081222535e-05 - ArtUnc_67: 1.3491744321720766e-05 - ArtUnc_68: 3.742843080220253e-05 - ArtUnc_69: 2.0431367214920775e-05 - ArtUnc_70: -7.380420140614505e-07 - ArtUnc_71: -1.1211342621343872e-06 - ArtUnc_72: 6.037085275243379e-07 - ArtUnc_73: 7.3257684432416824e-06 - ArtUnc_74: 8.91679159433491e-06 - ArtUnc_75: 1.162861834698764e-06 - ArtUnc_76: 6.250625946348372e-07 - ArtUnc_77: 1.8200635034374447e-06 - ArtUnc_78: -2.5253370700758245e-06 - ArtUnc_79: -3.227347634136561e-06 - ArtUnc_80: -9.159003097231446e-07 - ArtUnc_81: -3.472046352210964e-07 - ArtUnc_82: 8.06392582351291e-10 - ArtUnc_83: -2.002810595725193e-07 - ArtUnc_84: 2.56765894718828e-07 - ArtUnc_85: 1.2916345002614962e-07 - ArtUnc_86: -4.2204082732703897e-07 - ArtUnc_87: 3.5825707537556616e-07 - ArtUnc_88: -1.3673297886086651e-07 - ArtUnc_89: -1.2730479200691235e-07 - ArtUnc_90: -5.8950569248484984e-08 - ArtUnc_91: 3.969493521176897e-08 - ArtUnc_92: -5.4068451479893034e-08 - ArtUnc_93: -1.388648088096199e-07 - ArtUnc_94: 9.722202506316362e-09 - ArtUnc_95: -5.3828040959302966e-08 - ArtUnc_96: 4.001083540114983e-09 + ArtUnc_1: 2.2970761331390066 + ArtUnc_2: -1.0892033898037916 + ArtUnc_3: -0.4626643792894114 + ArtUnc_4: 0.0034597266768986723 + ArtUnc_5: -0.07024799880322546 + ArtUnc_6: -0.025635496777499604 + ArtUnc_7: -0.0011811538975831683 + ArtUnc_8: 5.698072050451249 + ArtUnc_9: 0.01838660928832924 + ArtUnc_10: -6.02475607507018 + ArtUnc_11: -2.9660838975572674 + ArtUnc_12: 0.509042374153124 + ArtUnc_13: 1.8418379289105533 + ArtUnc_14: 0.5185384503576153 + ArtUnc_15: 1.3053603129533584 + ArtUnc_16: -0.48075482695253724 + ArtUnc_17: 0.3546020620221246 + ArtUnc_18: -0.19000896413705118 + ArtUnc_19: 0.03448455438106577 + ArtUnc_20: 0.0334777718193411 + ArtUnc_21: 0.00667766552088803 + ArtUnc_22: 0.005573150621444783 + ArtUnc_23: 0.0016140948748548712 + ArtUnc_24: 0.000568273667308521 + ArtUnc_25: -0.13949268880938007 + ArtUnc_26: -0.07352578045564359 + ArtUnc_27: -0.1808656512600164 + ArtUnc_28: -0.021260206797389925 + ArtUnc_29: 0.00997221831462979 + ArtUnc_30: -0.09065927398924134 + ArtUnc_31: -0.0006883162712905388 + ArtUnc_32: 0.04229196904252959 + ArtUnc_33: 0.01621967581405243 + ArtUnc_34: 0.027143903368802316 + ArtUnc_35: 0.04350407896178598 + ArtUnc_36: 0.016514706658114008 + ArtUnc_37: 0.0024434123447177863 + ArtUnc_38: -0.002971403779176569 + ArtUnc_39: -0.0007310172834329555 + ArtUnc_40: -0.00021136252877450334 + ArtUnc_41: -0.007160870664322624 + ArtUnc_42: -0.005876951781650189 + ArtUnc_43: 0.0017314514208508819 + ArtUnc_44: 0.002553951127823745 + ArtUnc_45: -0.0025656232271245513 + ArtUnc_46: 0.0011881545478558493 + ArtUnc_47: -0.002804030604187082 + ArtUnc_48: 0.0008879580966485295 + ArtUnc_49: 0.001369146410883418 + ArtUnc_50: 0.0011494198540057063 + ArtUnc_51: -9.055078135816814e-05 + ArtUnc_52: 7.294074042155794e-05 + ArtUnc_53: 0.001181951523907321 + ArtUnc_54: -0.00025362312439836495 + ArtUnc_55: -0.00018472562965263104 + ArtUnc_56: -8.739836558783833e-05 + ArtUnc_57: 4.885657431811609e-05 + ArtUnc_58: -5.51390303127279e-05 + ArtUnc_59: -0.00013839594374450153 + ArtUnc_60: -4.877085515415337e-05 + ArtUnc_61: 4.22707537278272e-05 + ArtUnc_62: 2.8700177521542225e-05 + ArtUnc_63: -2.3803806686567963e-05 + ArtUnc_64: 5.132418586798827e-05 + ArtUnc_65: -5.261628114177895e-05 + ArtUnc_66: -3.88344980812236e-05 + ArtUnc_67: 1.3491744321721498e-05 + ArtUnc_68: 3.7428430802205095e-05 + ArtUnc_69: 2.0431367214919684e-05 + ArtUnc_70: -6.037085275244034e-07 + ArtUnc_71: 7.380420140613976e-07 + ArtUnc_72: -1.1211342621343135e-06 + ArtUnc_73: 7.325768443241816e-06 + ArtUnc_74: -8.916791594335334e-06 + ArtUnc_75: -1.162861834698842e-06 + ArtUnc_76: 6.250625946348806e-07 + ArtUnc_77: 1.82006350343776e-06 + ArtUnc_78: 2.525337070075889e-06 + ArtUnc_79: -3.227347634136641e-06 + ArtUnc_80: 9.159003097231551e-07 + ArtUnc_81: -3.4720463522110955e-07 + ArtUnc_82: 8.063925823509818e-10 + ArtUnc_83: -2.002810595725168e-07 + ArtUnc_84: 2.5676589471883596e-07 + ArtUnc_85: 1.2916345002614888e-07 + ArtUnc_86: 5.406845147989175e-08 + ArtUnc_87: 1.3886480880961782e-07 + ArtUnc_88: -4.220408273270315e-07 + ArtUnc_89: -3.5825707537558045e-07 + ArtUnc_90: -1.3673297886087641e-07 + ArtUnc_91: 5.3828040959303416e-08 + ArtUnc_92: 9.722202506314322e-09 + ArtUnc_93: -1.2730479200691123e-07 + ArtUnc_94: 5.895056924848404e-08 + ArtUnc_95: 3.96949352117729e-08 + ArtUnc_96: 4.001083540114452e-09 - stat: 0 Uncorr: 0.713 RCES: 0.40408925103249166 @@ -2679,102 +2679,102 @@ bins: ModelRW_2: 0.060500056198321 JES_1: 2.0379393516123097 JES_2: 2.0379393516123097 - ArtUnc_1: -0.0009965196005386932 - ArtUnc_2: -0.0490763710144604 - ArtUnc_3: -0.047564970547462816 - ArtUnc_4: -0.013756699974386742 - ArtUnc_5: 0.0013405642217338104 - ArtUnc_6: 0.00038667537064925343 - ArtUnc_7: 0.00012760105811892577 - ArtUnc_8: -0.31731888380211215 - ArtUnc_9: -0.0011592755697405527 - ArtUnc_10: -0.4504172181733019 - ArtUnc_11: -0.21373373716518707 - ArtUnc_12: 0.07390984381923715 - ArtUnc_13: 0.15323462967136534 - ArtUnc_14: 0.016725144962615363 - ArtUnc_15: 0.061541096508847544 - ArtUnc_16: 0.0012801800918939162 - ArtUnc_17: 0.01019751389634067 - ArtUnc_18: 0.003646885619794577 - ArtUnc_19: 0.007440900959470505 - ArtUnc_20: -0.030597234662372658 - ArtUnc_21: 0.01992090985890483 - ArtUnc_22: -0.008080984027201168 - ArtUnc_23: 0.0025137026103077445 - ArtUnc_24: -0.00041309541960145876 - ArtUnc_25: 0.7665401298664348 - ArtUnc_26: -0.20904621147771893 - ArtUnc_27: -2.472266072161976 - ArtUnc_28: 0.2963104198978536 - ArtUnc_29: 0.2289045278005049 - ArtUnc_30: 1.0542185366477328 - ArtUnc_31: 0.028303682128789087 - ArtUnc_32: -0.4932083605436826 - ArtUnc_33: -0.13788572623234713 - ArtUnc_34: 0.2784114116994266 - ArtUnc_35: 0.47389759816721194 - ArtUnc_36: -0.17395524785263045 - ArtUnc_37: -0.029441826176746566 - ArtUnc_38: -0.02962185468097465 - ArtUnc_39: 0.003793759664381692 - ArtUnc_40: 0.000617116973854914 - ArtUnc_41: 0.07130678915444245 - ArtUnc_42: 0.09783409895431039 - ArtUnc_43: -0.00251864351554638 - ArtUnc_44: -0.02557340624368057 - ArtUnc_45: 0.03679531486118423 - ArtUnc_46: -0.0032245074874930045 - ArtUnc_47: -0.022428942333149526 - ArtUnc_48: -0.002745702202360223 - ArtUnc_49: 0.013380306228957502 - ArtUnc_50: 0.016804630618115865 - ArtUnc_51: 0.016114514223098075 - ArtUnc_52: -0.00524029381954212 - ArtUnc_53: -0.0029677086312849287 - ArtUnc_54: 0.0001902632252158602 - ArtUnc_55: -0.0005791249759598457 - ArtUnc_56: 0.0006300547084760401 - ArtUnc_57: -0.0002804429750602387 - ArtUnc_58: 0.0018944439314549104 - ArtUnc_59: -0.0013271820680700972 - ArtUnc_60: -0.00035204867711393723 - ArtUnc_61: 0.0014031938044521042 - ArtUnc_62: -0.0002882139019710647 - ArtUnc_63: -0.0005940507007868716 - ArtUnc_64: -8.61814497537013e-05 - ArtUnc_65: -0.00027621386915058997 - ArtUnc_66: 0.0008705951659873406 - ArtUnc_67: -0.0002900155986531735 - ArtUnc_68: -0.0010883729771620856 - ArtUnc_69: -0.0005855436480219128 - ArtUnc_70: 0.00010782019438672839 - ArtUnc_71: 7.085871654984603e-05 - ArtUnc_72: -3.89122163738746e-05 - ArtUnc_73: -9.267549343752526e-06 - ArtUnc_74: -1.0338450946925255e-05 - ArtUnc_75: -2.5984669077541534e-06 - ArtUnc_76: -3.7953189242007785e-06 - ArtUnc_77: -6.080111235028886e-06 - ArtUnc_78: 1.1459432837723044e-05 - ArtUnc_79: 1.3531736033283021e-05 - ArtUnc_80: -4.785256084645539e-06 - ArtUnc_81: -1.4476474117621292e-06 - ArtUnc_82: 8.717567938833966e-09 - ArtUnc_83: 2.1625432339053885e-06 - ArtUnc_84: 1.4245958021684796e-06 - ArtUnc_85: -1.5918227317217163e-06 - ArtUnc_86: 1.70581822952215e-06 - ArtUnc_87: -1.638206806189619e-06 - ArtUnc_88: -2.8779633835817855e-07 - ArtUnc_89: -5.728647448866196e-08 - ArtUnc_90: 7.621759654344365e-07 - ArtUnc_91: 4.1672703857240277e-08 - ArtUnc_92: -2.0337474318313564e-06 - ArtUnc_93: -1.5086338157836613e-06 - ArtUnc_94: 6.715287876038684e-08 - ArtUnc_95: -4.343963169364552e-07 - ArtUnc_96: -2.8880854045614826e-07 + ArtUnc_1: -0.0009965196005386923 + ArtUnc_2: -0.04907637101446047 + ArtUnc_3: -0.04756497054746269 + ArtUnc_4: -0.013756699974385526 + ArtUnc_5: 0.0013405642217313753 + ArtUnc_6: -0.0003866753706473783 + ArtUnc_7: -0.00012760105812504135 + ArtUnc_8: 0.3173188838021138 + ArtUnc_9: 0.0011592755697388047 + ArtUnc_10: -0.45041721817330066 + ArtUnc_11: -0.2137337371651879 + ArtUnc_12: 0.07390984381923797 + ArtUnc_13: 0.15323462967136156 + ArtUnc_14: 0.016725144962614295 + ArtUnc_15: 0.06154109650884441 + ArtUnc_16: 0.0012801800918984287 + ArtUnc_17: -0.010197513896344924 + ArtUnc_18: -0.0036468856197927895 + ArtUnc_19: -0.007440900959471428 + ArtUnc_20: 0.030597234662372387 + ArtUnc_21: 0.01992090985890962 + ArtUnc_22: -0.008080984027201216 + ArtUnc_23: -0.002513702610298424 + ArtUnc_24: 0.0004130954196040905 + ArtUnc_25: -0.7665401298664287 + ArtUnc_26: 0.20904621147775262 + ArtUnc_27: 2.4722660721619834 + ArtUnc_28: -0.2963104198978628 + ArtUnc_29: -0.22890452780055967 + ArtUnc_30: 1.0542185366477073 + ArtUnc_31: -0.028303682128787668 + ArtUnc_32: -0.49320836054377415 + ArtUnc_33: -0.1378857262320036 + ArtUnc_34: -0.27841141169946304 + ArtUnc_35: -0.4738975981671955 + ArtUnc_36: -0.17395524785262387 + ArtUnc_37: -0.02944182617674767 + ArtUnc_38: 0.029621854680974245 + ArtUnc_39: 0.0037937596643816225 + ArtUnc_40: 0.0006171169738548413 + ArtUnc_41: 0.07130678915444527 + ArtUnc_42: 0.09783409895430999 + ArtUnc_43: -0.0025186435155468063 + ArtUnc_44: -0.025573406243681544 + ArtUnc_45: 0.03679531486118474 + ArtUnc_46: -0.003224507487493442 + ArtUnc_47: 0.022428942333149793 + ArtUnc_48: 0.0027457022023610472 + ArtUnc_49: -0.013380306228957847 + ArtUnc_50: -0.01680463061811569 + ArtUnc_51: 0.0006300547084760256 + ArtUnc_52: -0.0005791249759598666 + ArtUnc_53: -0.016114514223097707 + ArtUnc_54: 0.005240293819542083 + ArtUnc_55: 0.002967708631284937 + ArtUnc_56: 0.00019026322521595404 + ArtUnc_57: 0.0002804429750602793 + ArtUnc_58: -0.001894443931454924 + ArtUnc_59: 0.0013271820680700766 + ArtUnc_60: 0.00035204867711393067 + ArtUnc_61: -0.0014031938044521107 + ArtUnc_62: 0.000288213901971008 + ArtUnc_63: 0.0005940507007868716 + ArtUnc_64: -8.618144975369645e-05 + ArtUnc_65: 0.0002762138691505921 + ArtUnc_66: 0.0008705951659873383 + ArtUnc_67: -0.0002900155986531886 + ArtUnc_68: -0.001088372977162145 + ArtUnc_69: -0.0005855436480218688 + ArtUnc_70: 3.891221637388164e-05 + ArtUnc_71: -0.00010782019438672507 + ArtUnc_72: 7.085871654984114e-05 + ArtUnc_73: -9.26754934375886e-06 + ArtUnc_74: 1.0338450946933556e-05 + ArtUnc_75: 2.5984669077553655e-06 + ArtUnc_76: -3.7953189242014587e-06 + ArtUnc_77: -6.080111235031745e-06 + ArtUnc_78: -1.145943283772544e-05 + ArtUnc_79: 1.3531736033285865e-05 + ArtUnc_80: 4.785256084644365e-06 + ArtUnc_81: -1.4476474117618153e-06 + ArtUnc_82: 8.717567938832361e-09 + ArtUnc_83: 2.1625432339056964e-06 + ArtUnc_84: 1.4245958021681639e-06 + ArtUnc_85: -1.5918227317219126e-06 + ArtUnc_86: 2.033747431831262e-06 + ArtUnc_87: 1.5086338157833956e-06 + ArtUnc_88: 1.705818229522455e-06 + ArtUnc_89: 1.6382068061899532e-06 + ArtUnc_90: -2.8779633835803196e-07 + ArtUnc_91: 4.3439631693636184e-07 + ArtUnc_92: 6.715287876035183e-08 + ArtUnc_93: -5.728647448855988e-08 + ArtUnc_94: -7.621759654344934e-07 + ArtUnc_95: 4.1672703857164295e-08 + ArtUnc_96: -2.8880854045615154e-07 - stat: 0 Uncorr: 0.133 RCES: 0.032922537493334264 @@ -2790,102 +2790,102 @@ bins: ModelRW_2: 0.30470645414890707 JES_1: 0.3367343579143655 JES_2: 0.3367343579143655 - ArtUnc_1: 0.00048222324563112324 - ArtUnc_2: -0.00045481936606475335 - ArtUnc_3: -0.00028651499613534676 - ArtUnc_4: -5.045932370837303e-06 - ArtUnc_5: -6.963204243240137e-05 - ArtUnc_6: 3.525407986547766e-05 - ArtUnc_7: 7.335364810789872e-07 - ArtUnc_8: -0.011353917117131667 - ArtUnc_9: -4.218063182215126e-05 - ArtUnc_10: -0.015707934389066276 - ArtUnc_11: -0.009803885316949507 - ArtUnc_12: 0.002153699370555611 - ArtUnc_13: 0.00753284433765608 - ArtUnc_14: 0.0021950944042568345 - ArtUnc_15: 0.006046097250410136 - ArtUnc_16: -0.002311692799103495 - ArtUnc_17: -0.0017171120266755752 - ArtUnc_18: 0.0010288977453567977 - ArtUnc_19: -0.00011311504002507693 - ArtUnc_20: -0.0005321726757169514 - ArtUnc_21: 0.00031996106432857584 - ArtUnc_22: -9.23556488693514e-05 - ArtUnc_23: 4.181140486327824e-05 - ArtUnc_24: -1.9034702199728612e-05 - ArtUnc_25: 0.020487758169370637 - ArtUnc_26: -0.011574866257633072 - ArtUnc_27: -0.08912912698772604 - ArtUnc_28: 0.008665626267010507 - ArtUnc_29: 0.006635338253214907 - ArtUnc_30: 0.02794587681218538 - ArtUnc_31: 0.000977229749718423 - ArtUnc_32: -0.010216142199214729 - ArtUnc_33: -0.002845330035775146 - ArtUnc_34: 0.005570333273643814 - ArtUnc_35: 0.009662654568295312 - ArtUnc_36: -0.004528737722650618 - ArtUnc_37: -0.0012038460339397936 - ArtUnc_38: -0.0018731277432523967 - ArtUnc_39: 0.0008503564209477177 - ArtUnc_40: 0.000138445622024803 - ArtUnc_41: 0.663849568643789 - ArtUnc_42: -0.5706914172499961 - ArtUnc_43: -0.3775614838740124 - ArtUnc_44: -0.03501730818426179 - ArtUnc_45: -0.22079268371283478 - ArtUnc_46: -0.15556486625569363 - ArtUnc_47: -0.03878286742300643 - ArtUnc_48: 0.1792366648952618 - ArtUnc_49: -0.054283781528397274 - ArtUnc_50: -0.13242443389466826 - ArtUnc_51: -0.13148541911448722 - ArtUnc_52: 0.048082372908605085 - ArtUnc_53: 0.03475140647080293 - ArtUnc_54: 0.0036341293741232877 - ArtUnc_55: 0.007711552695186414 - ArtUnc_56: -0.003416335306032307 - ArtUnc_57: 0.008015429032454417 - ArtUnc_58: -0.04296678302902025 - ArtUnc_59: 0.021593356391990164 - ArtUnc_60: 0.005088828565798807 - ArtUnc_61: -0.024094100946152837 - ArtUnc_62: 0.006406534115998357 - ArtUnc_63: 0.009260583805346435 - ArtUnc_64: -0.0007324592001936841 - ArtUnc_65: 0.0023102409510445264 - ArtUnc_66: -0.011795995784537588 - ArtUnc_67: 0.0037988107609475724 - ArtUnc_68: 0.014005992450294541 - ArtUnc_69: 0.007273315267392656 - ArtUnc_70: -0.001466337672531976 - ArtUnc_71: -0.0009929230225180076 - ArtUnc_72: 0.00042293942566536656 - ArtUnc_73: 0.00011844704664032813 - ArtUnc_74: 0.00023022953652045142 - ArtUnc_75: 5.280533255610051e-05 - ArtUnc_76: 5.8320312563029384e-05 - ArtUnc_77: 0.00013664656253661587 - ArtUnc_78: -0.0002258553331687576 - ArtUnc_79: -0.0003222283740100807 - ArtUnc_80: 8.560658591627343e-05 - ArtUnc_81: 2.7635731751350576e-05 - ArtUnc_82: -1.4471079941618696e-07 - ArtUnc_83: -4.849242745558435e-05 - ArtUnc_84: -2.73851982751988e-05 - ArtUnc_85: 3.691156820800472e-05 - ArtUnc_86: -3.2808291692025e-05 - ArtUnc_87: 5.063474698032525e-05 - ArtUnc_88: 5.9404921856279335e-06 - ArtUnc_89: 1.3945197108891403e-05 - ArtUnc_90: -1.976061848848475e-05 - ArtUnc_91: 5.4158037246835686e-06 - ArtUnc_92: 4.5856356459877216e-05 - ArtUnc_93: 3.282889882737818e-05 - ArtUnc_94: -1.5861418317529727e-06 - ArtUnc_95: 9.969375328917745e-06 - ArtUnc_96: 8.099606377265982e-06 + ArtUnc_1: 0.00048222324563112264 + ArtUnc_2: -0.0004548193660647549 + ArtUnc_3: -0.000286514996135342 + ArtUnc_4: -5.045932370756765e-06 + ArtUnc_5: -6.963204243240928e-05 + ArtUnc_6: -3.525407986559304e-05 + ArtUnc_7: -7.335364812501672e-07 + ArtUnc_8: 0.011353917117131688 + ArtUnc_9: 4.218063182166823e-05 + ArtUnc_10: -0.015707934389066265 + ArtUnc_11: -0.009803885316949498 + ArtUnc_12: 0.0021536993705559898 + ArtUnc_13: 0.007532844337655942 + ArtUnc_14: 0.0021950944042568683 + ArtUnc_15: 0.006046097250410134 + ArtUnc_16: -0.0023116927991033214 + ArtUnc_17: 0.0017171120266754247 + ArtUnc_18: -0.0010288977453566045 + ArtUnc_19: 0.00011311504002460291 + ArtUnc_20: 0.0005321726757171317 + ArtUnc_21: 0.00031996106432853085 + ArtUnc_22: -9.235564886922412e-05 + ArtUnc_23: -4.181140486276274e-05 + ArtUnc_24: 1.90347021989865e-05 + ArtUnc_25: -0.020487758169369312 + ArtUnc_26: 0.011574866257633931 + ArtUnc_27: 0.08912912698772603 + ArtUnc_28: -0.008665626267010482 + ArtUnc_29: -0.006635338253216263 + ArtUnc_30: 0.027945876812184477 + ArtUnc_31: -0.0009772297497179653 + ArtUnc_32: -0.010216142199216087 + ArtUnc_33: -0.002845330035767449 + ArtUnc_34: -0.005570333273645624 + ArtUnc_35: -0.009662654568296104 + ArtUnc_36: -0.004528737722651677 + ArtUnc_37: -0.0012038460339396265 + ArtUnc_38: 0.0018731277432525726 + ArtUnc_39: 0.0008503564209471586 + ArtUnc_40: 0.00013844562202529199 + ArtUnc_41: 0.6638495686437801 + ArtUnc_42: -0.5706914172500034 + ArtUnc_43: -0.37756148387400784 + ArtUnc_44: -0.03501730818425852 + ArtUnc_45: -0.22079268371283536 + ArtUnc_46: -0.1555648662556946 + ArtUnc_47: 0.03878286742300583 + ArtUnc_48: -0.17923666489526285 + ArtUnc_49: 0.05428378152839977 + ArtUnc_50: 0.1324244338946672 + ArtUnc_51: -0.003416335306031974 + ArtUnc_52: 0.007711552695186313 + ArtUnc_53: 0.13148541911448347 + ArtUnc_54: -0.04808237290860438 + ArtUnc_55: -0.03475140647080258 + ArtUnc_56: 0.003634129374122391 + ArtUnc_57: -0.008015429032455383 + ArtUnc_58: 0.042966783029020544 + ArtUnc_59: -0.021593356391989723 + ArtUnc_60: -0.005088828565798671 + ArtUnc_61: 0.024094100946153038 + ArtUnc_62: -0.006406534115997293 + ArtUnc_63: -0.009260583805346423 + ArtUnc_64: -0.0007324592001938286 + ArtUnc_65: -0.0023102409510445 + ArtUnc_66: -0.011795995784537529 + ArtUnc_67: 0.003798810760947751 + ArtUnc_68: 0.014005992450295192 + ArtUnc_69: 0.0072733152673920285 + ArtUnc_70: -0.0004229394256654641 + ArtUnc_71: 0.0014663376725319356 + ArtUnc_72: -0.0009929230225179458 + ArtUnc_73: 0.00011844704664039685 + ArtUnc_74: -0.00023022953652054892 + ArtUnc_75: -5.280533255611597e-05 + ArtUnc_76: 5.8320312563038125e-05 + ArtUnc_77: 0.00013664656253665832 + ArtUnc_78: 0.00022585533316878535 + ArtUnc_79: -0.0003222283740101118 + ArtUnc_80: -8.560658591625873e-05 + ArtUnc_81: 2.7635731751347974e-05 + ArtUnc_82: -1.4471079941616133e-07 + ArtUnc_83: -4.8492427455588045e-05 + ArtUnc_84: -2.7385198275194944e-05 + ArtUnc_85: 3.691156820800699e-05 + ArtUnc_86: -4.585635645987649e-05 + ArtUnc_87: -3.282889882737541e-05 + ArtUnc_88: -3.2808291692027684e-05 + ArtUnc_89: -5.063474698032896e-05 + ArtUnc_90: 5.940492185626315e-06 + ArtUnc_91: -9.96937532891693e-06 + ArtUnc_92: -1.5861418317524066e-06 + ArtUnc_93: 1.394519710889056e-05 + ArtUnc_94: 1.976061848848542e-05 + ArtUnc_95: 5.415803724684479e-06 + ArtUnc_96: 8.099606377266068e-06 - stat: 0 Uncorr: 0.0177 RCES: 0.021539525551877884 @@ -2901,102 +2901,102 @@ bins: ModelRW_2: 0.09737284641007471 JES_1: 0.09023954044929529 JES_2: 0.09023954044929529 - ArtUnc_1: 8.284240535459945e-05 - ArtUnc_2: -7.143652520747548e-05 - ArtUnc_3: -4.293910641632099e-05 - ArtUnc_4: 9.189147705404e-07 - ArtUnc_5: -1.1683924773492631e-05 - ArtUnc_6: 5.437220127168312e-06 - ArtUnc_7: 3.1867886787515996e-07 - ArtUnc_8: -0.001750767579044543 - ArtUnc_9: -6.320894995004844e-06 - ArtUnc_10: -0.0023152786563023536 - ArtUnc_11: -0.0015122601857190162 - ArtUnc_12: 0.00028672664141823575 - ArtUnc_13: 0.001170713781008741 - ArtUnc_14: 0.00037400319118559457 - ArtUnc_15: 0.0010149982650400344 - ArtUnc_16: -0.0004244565163136573 - ArtUnc_17: -0.00034015178709350026 - ArtUnc_18: 0.00019293282009014468 - ArtUnc_19: -4.3545110517268796e-05 - ArtUnc_20: -3.082354649522926e-05 - ArtUnc_21: 1.7465997791860596e-06 - ArtUnc_22: 1.2057399180629462e-05 - ArtUnc_23: -4.49174474318245e-06 - ArtUnc_24: -9.79744710511551e-07 - ArtUnc_25: -0.00020738105703601545 - ArtUnc_26: 0.000423076135428493 - ArtUnc_27: 0.003193753895059643 - ArtUnc_28: -0.0002789218703016149 - ArtUnc_29: -0.0003826943616379029 - ArtUnc_30: -0.002112576370727655 - ArtUnc_31: -4.6340652522069066e-05 - ArtUnc_32: 0.0012541085350817492 - ArtUnc_33: 0.00037808859529180923 - ArtUnc_34: -0.0008401347196621201 - ArtUnc_35: -0.001437235721419083 - ArtUnc_36: 0.0005759556505316176 - ArtUnc_37: 9.800053871529871e-05 - ArtUnc_38: 0.00010495865631075194 - ArtUnc_39: -1.4606526389308009e-05 - ArtUnc_40: -3.996192470531904e-06 - ArtUnc_41: 0.011750948973267745 - ArtUnc_42: -0.015575601828046928 - ArtUnc_43: -0.0041891881277658785 - ArtUnc_44: 0.0011989486168135766 - ArtUnc_45: -0.0023379869035208283 - ArtUnc_46: 0.0001545301319618089 - ArtUnc_47: 0.000555931868146022 - ArtUnc_48: -2.71013976006483e-05 - ArtUnc_49: 0.00020626001420983263 - ArtUnc_50: 5.820870463682508e-05 - ArtUnc_51: 0.00014939065649090851 - ArtUnc_52: 9.672127646830308e-05 - ArtUnc_53: 1.109866188438674e-05 - ArtUnc_54: 1.7388712029753375e-05 - ArtUnc_55: 2.554443969099818e-05 - ArtUnc_56: -1.6662171502083667e-05 - ArtUnc_57: 0.11990698671213056 - ArtUnc_58: -0.16304725262959285 - ArtUnc_59: -0.2330672324039735 - ArtUnc_60: -0.08346872670813604 - ArtUnc_61: 0.0561300422126411 - ArtUnc_62: 0.05180044908507952 - ArtUnc_63: -0.03058943537058552 - ArtUnc_64: -0.08155023196137727 - ArtUnc_65: -0.07903336729866804 - ArtUnc_66: 0.045303057260935316 - ArtUnc_67: -0.013349390116759171 - ArtUnc_68: -0.02640805009968987 - ArtUnc_69: -0.012559102862259879 - ArtUnc_70: 0.0003946408968876557 - ArtUnc_71: 0.0015003052226944262 - ArtUnc_72: -0.0011507880480597812 - ArtUnc_73: -0.016644764783269997 - ArtUnc_74: -0.01751538637366093 - ArtUnc_75: -0.0022558265607425017 - ArtUnc_76: 0.0004613325151309625 - ArtUnc_77: -0.003493613132642539 - ArtUnc_78: 0.002690829307184598 - ArtUnc_79: 0.006560964965245627 - ArtUnc_80: -0.00094481817009344 - ArtUnc_81: -0.00044521757762512745 - ArtUnc_82: 9.185677018423849e-08 - ArtUnc_83: -0.00011809609694400983 - ArtUnc_84: 0.0005436643903216545 - ArtUnc_85: 6.64884406015711e-05 - ArtUnc_86: 0.0003553342130206749 - ArtUnc_87: -0.0010106515967770208 - ArtUnc_88: -0.00013932834585072567 - ArtUnc_89: -4.664789298302181e-05 - ArtUnc_90: 0.0005146245491329366 - ArtUnc_91: -0.00012595303709050655 - ArtUnc_92: -4.825610490853249e-05 - ArtUnc_93: -7.071954635315597e-05 - ArtUnc_94: 3.920061732910895e-06 - ArtUnc_95: -2.3758346408525107e-05 - ArtUnc_96: 1.3968545028193236e-06 + ArtUnc_1: 8.284240535459942e-05 + ArtUnc_2: -7.143652520747553e-05 + ArtUnc_3: -4.2939106416322474e-05 + ArtUnc_4: 9.189147705604213e-07 + ArtUnc_5: -1.168392477351611e-05 + ArtUnc_6: -5.437220127116407e-06 + ArtUnc_7: -3.186788680124188e-07 + ArtUnc_8: 0.0017507675790445158 + ArtUnc_9: 6.3208949947927375e-06 + ArtUnc_10: -0.0023152786563023693 + ArtUnc_11: -0.001512260185718958 + ArtUnc_12: 0.0002867266414185476 + ArtUnc_13: 0.0011707137810086823 + ArtUnc_14: 0.00037400319118526687 + ArtUnc_15: 0.0010149982650403862 + ArtUnc_16: -0.0004244565163130159 + ArtUnc_17: 0.00034015178709396565 + ArtUnc_18: -0.000192932820089954 + ArtUnc_19: 4.354511051629244e-05 + ArtUnc_20: 3.082354649563666e-05 + ArtUnc_21: 1.7465997797400437e-06 + ArtUnc_22: 1.2057399180159132e-05 + ArtUnc_23: 4.491744744461753e-06 + ArtUnc_24: 9.79744710611963e-07 + ArtUnc_25: 0.000207381057035519 + ArtUnc_26: -0.0004230761354287319 + ArtUnc_27: -0.0031937538950595834 + ArtUnc_28: 0.0002789218703015377 + ArtUnc_29: 0.0003826943616382765 + ArtUnc_30: -0.0021125763707275347 + ArtUnc_31: 4.634065252060755e-05 + ArtUnc_32: 0.0012541085350820632 + ArtUnc_33: 0.0003780885952905535 + ArtUnc_34: 0.0008401347196628806 + ArtUnc_35: 0.0014372357214196374 + ArtUnc_36: 0.0005759556505313191 + ArtUnc_37: 9.800053871621878e-05 + ArtUnc_38: -0.0001049586563108525 + ArtUnc_39: -1.4606526390462278e-05 + ArtUnc_40: -3.996192469797755e-06 + ArtUnc_41: 0.011750948973270116 + ArtUnc_42: -0.015575601828048118 + ArtUnc_43: -0.004189188127765207 + ArtUnc_44: 0.0011989486168144544 + ArtUnc_45: -0.002337986903522328 + ArtUnc_46: 0.00015453013196292003 + ArtUnc_47: -0.0005559318681489714 + ArtUnc_48: 2.7101397601735106e-05 + ArtUnc_49: -0.00020626001420911725 + ArtUnc_50: -5.820870463632121e-05 + ArtUnc_51: -1.6662171501764027e-05 + ArtUnc_52: 2.5544439689513627e-05 + ArtUnc_53: -0.00014939065649154743 + ArtUnc_54: -9.672127646801581e-05 + ArtUnc_55: -1.1098661883805367e-05 + ArtUnc_56: 1.7388712030098158e-05 + ArtUnc_57: -0.11990698671213583 + ArtUnc_58: 0.1630472526295877 + ArtUnc_59: 0.23306723240397223 + ArtUnc_60: 0.08346872670813442 + ArtUnc_61: -0.05613004221263735 + ArtUnc_62: -0.0518004490850811 + ArtUnc_63: 0.030589435370586383 + ArtUnc_64: -0.08155023196137762 + ArtUnc_65: 0.07903336729866912 + ArtUnc_66: 0.04530305726093659 + ArtUnc_67: -0.013349390116759653 + ArtUnc_68: -0.0264080500996915 + ArtUnc_69: -0.012559102862259136 + ArtUnc_70: 0.0011507880480598309 + ArtUnc_71: -0.00039464089688755454 + ArtUnc_72: 0.0015003052226943954 + ArtUnc_73: -0.01664476478326977 + ArtUnc_74: 0.017515386373661138 + ArtUnc_75: 0.0022558265607425716 + ArtUnc_76: 0.00046133251513093 + ArtUnc_77: -0.0034936131326428277 + ArtUnc_78: -0.0026908293071845365 + ArtUnc_79: 0.006560964965245572 + ArtUnc_80: 0.0009448181700934723 + ArtUnc_81: -0.00044521757762517754 + ArtUnc_82: 9.185677018507984e-08 + ArtUnc_83: -0.00011809609694401655 + ArtUnc_84: 0.0005436643903216629 + ArtUnc_85: 6.648844060157769e-05 + ArtUnc_86: 4.8256104908536475e-05 + ArtUnc_87: 7.071954635315663e-05 + ArtUnc_88: 0.00035533421302064275 + ArtUnc_89: 0.00101065159677701 + ArtUnc_90: -0.00013932834585073713 + ArtUnc_91: 2.375834640852458e-05 + ArtUnc_92: 3.920061732908886e-06 + ArtUnc_93: -4.664789298303528e-05 + ArtUnc_94: -0.0005146245491329366 + ArtUnc_95: -0.00012595303709050904 + ArtUnc_96: 1.3968545028191379e-06 - stat: 0 Uncorr: 0.00255 RCES: 0.0023413874492488424 @@ -3012,102 +3012,102 @@ bins: ModelRW_2: 0.009159861243490537 JES_1: 0.01574009834288687 JES_2: 0.01574009834288687 - ArtUnc_1: -8.737694534121226e-10 - ArtUnc_2: 1.646459406432666e-09 - ArtUnc_3: 1.5950511990297585e-09 - ArtUnc_4: 1.304097411534912e-10 - ArtUnc_5: 5.508080194962333e-10 - ArtUnc_6: -3.7671139811463697e-10 - ArtUnc_7: -1.2766550800524874e-11 - ArtUnc_8: 1.831855433562771e-07 - ArtUnc_9: 7.59841523925736e-10 - ArtUnc_10: 3.172515480713826e-07 - ArtUnc_11: 2.644748786934261e-07 - ArtUnc_12: -5.4907586638807504e-08 - ArtUnc_13: -2.718473923424106e-07 - ArtUnc_14: -9.213717981734448e-08 - ArtUnc_15: -2.7243632993552247e-07 - ArtUnc_16: 1.2069090293084262e-07 - ArtUnc_17: 9.887766630746757e-08 - ArtUnc_18: -6.492169166503194e-08 - ArtUnc_19: 1.0089425734632696e-08 - ArtUnc_20: 3.782777691680796e-08 - ArtUnc_21: -2.4942538803657166e-08 - ArtUnc_22: 7.1820777657191135e-09 - ArtUnc_23: -4.737267003279405e-09 - ArtUnc_24: 2.6786010092417603e-09 - ArtUnc_25: -2.9575991000909014e-06 - ArtUnc_26: 2.4109347240861037e-06 - ArtUnc_27: 1.9589600326097696e-05 - ArtUnc_28: -2.1605117265004075e-06 - ArtUnc_29: -1.866721069813087e-06 - ArtUnc_30: -8.220576699275737e-06 - ArtUnc_31: -3.148499519731872e-07 - ArtUnc_32: 3.566962795196321e-06 - ArtUnc_33: 9.91053259509128e-07 - ArtUnc_34: -2.229321893011696e-06 - ArtUnc_35: -3.988495166844839e-06 - ArtUnc_36: 2.166989013686728e-06 - ArtUnc_37: 6.645354509139063e-07 - ArtUnc_38: 1.1370711387899895e-06 - ArtUnc_39: -6.259626810449045e-07 - ArtUnc_40: -1.139598981769818e-07 - ArtUnc_41: -0.0011137227426165602 - ArtUnc_42: 0.001141607145327685 - ArtUnc_43: 0.0008346508307615107 - ArtUnc_44: 8.6019434785856e-05 - ArtUnc_45: 0.0005798205279119712 - ArtUnc_46: 0.0004383472277824593 - ArtUnc_47: 0.00012074281722233053 - ArtUnc_48: -0.0005528749315808311 - ArtUnc_49: 0.00017207676192542085 - ArtUnc_50: 0.0004507527380131445 - ArtUnc_51: 0.00048763024663606885 - ArtUnc_52: -0.00018684558503820846 - ArtUnc_53: -0.00015388762592656805 - ArtUnc_54: -1.818698188722652e-05 - ArtUnc_55: -4.812354390019649e-05 - ArtUnc_56: 2.5089994914974807e-05 - ArtUnc_57: 0.004004969220651188 - ArtUnc_58: -0.0036072664081089937 - ArtUnc_59: -0.004505974454369955 - ArtUnc_60: -0.0013454969700595991 - ArtUnc_61: 0.000818722134420752 - ArtUnc_62: 0.00031123049440000554 - ArtUnc_63: -0.0002862908683742836 - ArtUnc_64: -0.00031524814064586633 - ArtUnc_65: -0.00036836388364806913 - ArtUnc_66: 0.0002982348981039499 - ArtUnc_67: -0.00015023875584110896 - ArtUnc_68: -0.0006147404317043047 - ArtUnc_69: -0.0005233603568171549 - ArtUnc_70: 8.244916610592315e-05 - ArtUnc_71: 0.000149859393634602 - ArtUnc_72: -0.0001969746047289603 - ArtUnc_73: 0.003804818333467311 - ArtUnc_74: 0.0007028573295871507 - ArtUnc_75: -0.0011840866023423537 - ArtUnc_76: 0.028353481601100815 - ArtUnc_77: -0.005216149143443748 - ArtUnc_78: -0.06222596545671067 - ArtUnc_79: 0.015037693794520234 - ArtUnc_80: 0.026302069053069095 - ArtUnc_81: 0.014767802765716851 - ArtUnc_82: -1.172977938891221e-06 - ArtUnc_83: -0.006403768686471259 - ArtUnc_84: -0.017996315182303758 - ArtUnc_85: 0.004758655675668418 - ArtUnc_86: -0.0433753782945244 - ArtUnc_87: 0.02937958362476692 - ArtUnc_88: 0.0073881170622491854 - ArtUnc_89: -0.030648055619916185 - ArtUnc_90: -0.013312031052442995 - ArtUnc_91: 0.0008653673756016006 - ArtUnc_92: 0.005074421813299009 - ArtUnc_93: 0.0028297512649376163 - ArtUnc_94: -0.0001033480450327636 - ArtUnc_95: 0.0007635967238544992 - ArtUnc_96: 0.001045600489105708 + ArtUnc_1: -8.737694534121229e-10 + ArtUnc_2: 1.6464594064326736e-09 + ArtUnc_3: 1.5950511990295304e-09 + ArtUnc_4: 1.3040974115525698e-10 + ArtUnc_5: 5.508080194611627e-10 + ArtUnc_6: 3.7671139816293967e-10 + ArtUnc_7: 1.2766550907783893e-11 + ArtUnc_8: -1.8318554335628124e-07 + ArtUnc_9: -7.598415241707395e-10 + ArtUnc_10: 3.172515480713788e-07 + ArtUnc_11: 2.644748786934402e-07 + ArtUnc_12: -5.490758663839249e-08 + ArtUnc_13: -2.718473923425416e-07 + ArtUnc_14: -9.213717981691248e-08 + ArtUnc_15: -2.724363299357123e-07 + ArtUnc_16: 1.2069090292989235e-07 + ArtUnc_17: -9.887766630843156e-08 + ArtUnc_18: 6.492169166509936e-08 + ArtUnc_19: -1.0089425732864725e-08 + ArtUnc_20: -3.7827776916724463e-08 + ArtUnc_21: -2.494253881503824e-08 + ArtUnc_22: 7.18207777277124e-09 + ArtUnc_23: 4.737266987816121e-09 + ArtUnc_24: -2.6786010019964452e-09 + ArtUnc_25: 2.9575991000873583e-06 + ArtUnc_26: -2.4109347240891293e-06 + ArtUnc_27: -1.958960032609601e-05 + ArtUnc_28: 2.1605117264882275e-06 + ArtUnc_29: 1.866721069826176e-06 + ArtUnc_30: -8.22057669927223e-06 + ArtUnc_31: 3.1484995192426904e-07 + ArtUnc_32: 3.566962795179308e-06 + ArtUnc_33: 9.910532595307408e-07 + ArtUnc_34: 2.229321892986007e-06 + ArtUnc_35: 3.9884951668698356e-06 + ArtUnc_36: 2.166989013651135e-06 + ArtUnc_37: 6.645354509858519e-07 + ArtUnc_38: -1.137071138773637e-06 + ArtUnc_39: -6.259626810669443e-07 + ArtUnc_40: -1.139598981579064e-07 + ArtUnc_41: -0.0011137227426165804 + ArtUnc_42: 0.001141607145327739 + ArtUnc_43: 0.0008346508307614627 + ArtUnc_44: 8.601943478581479e-05 + ArtUnc_45: 0.0005798205279119543 + ArtUnc_46: 0.0004383472277824721 + ArtUnc_47: -0.00012074281722239596 + ArtUnc_48: 0.000552874931580836 + ArtUnc_49: -0.00017207676192544896 + ArtUnc_50: -0.0004507527380131608 + ArtUnc_51: 2.508999491499608e-05 + ArtUnc_52: -4.8123543900225626e-05 + ArtUnc_53: -0.0004876302466361276 + ArtUnc_54: 0.00018684558503821334 + ArtUnc_55: 0.00015388762592659022 + ArtUnc_56: -1.8186981887229775e-05 + ArtUnc_57: -0.004004969220651377 + ArtUnc_58: 0.003607266408108926 + ArtUnc_59: 0.004505974454370048 + ArtUnc_60: 0.001345496970059587 + ArtUnc_61: -0.0008187221344207724 + ArtUnc_62: -0.0003112304944000799 + ArtUnc_63: 0.0002862908683742685 + ArtUnc_64: -0.0003152481406459922 + ArtUnc_65: 0.0003683638836481357 + ArtUnc_66: 0.0002982348981041299 + ArtUnc_67: -0.0001502387558411166 + ArtUnc_68: -0.0006147404317045237 + ArtUnc_69: -0.0005233603568172246 + ArtUnc_70: 0.00019697460472897514 + ArtUnc_71: -8.244916610588482e-05 + ArtUnc_72: 0.00014985939363457848 + ArtUnc_73: 0.0038048183334672874 + ArtUnc_74: -0.0007028573295874387 + ArtUnc_75: 0.0011840866023422926 + ArtUnc_76: 0.02835348160110081 + ArtUnc_77: -0.005216149143439307 + ArtUnc_78: 0.06222596545671097 + ArtUnc_79: 0.015037693794521264 + ArtUnc_80: -0.026302069053068946 + ArtUnc_81: 0.01476780276571734 + ArtUnc_82: -1.1729779388745412e-06 + ArtUnc_83: -0.006403768686471221 + ArtUnc_84: -0.017996315182303557 + ArtUnc_85: 0.004758655675668427 + ArtUnc_86: -0.005074421813299028 + ArtUnc_87: -0.002829751264937561 + ArtUnc_88: -0.04337537829452347 + ArtUnc_89: -0.029379583624767714 + ArtUnc_90: 0.007388117062249002 + ArtUnc_91: -0.0007635967238545224 + ArtUnc_92: -0.00010334804503274076 + ArtUnc_93: -0.030648055619916178 + ArtUnc_94: 0.01331203105244284 + ArtUnc_95: 0.0008653673756013533 + ArtUnc_96: 0.001045600489105698 - stat: 0 Uncorr: 5.59 RCES: 22.248761801952035 @@ -3123,102 +3123,102 @@ bins: ModelRW_2: 8.577417387827177 JES_1: 3.838981084057331 JES_2: 3.838981084057331 - ArtUnc_1: 28.53461948130384 - ArtUnc_2: -7.123863967078527 - ArtUnc_3: -2.718126555131723 - ArtUnc_4: -0.38992848761021287 - ArtUnc_5: -0.0067074637807442525 - ArtUnc_6: 0.008283999205216913 - ArtUnc_7: -0.0007567391512449102 - ArtUnc_8: 0.2785588228961477 - ArtUnc_9: 0.0015553697559489398 - ArtUnc_10: 0.6841040029689238 - ArtUnc_11: 0.27039826133315903 - ArtUnc_12: -0.025771205810183807 - ArtUnc_13: -0.2019651073492938 - ArtUnc_14: -0.06124574938371301 - ArtUnc_15: -0.13733988140609574 - ArtUnc_16: 0.055592506460016365 - ArtUnc_17: 0.03891494291030174 - ArtUnc_18: -0.022439546494829106 - ArtUnc_19: 0.004613609699705377 - ArtUnc_20: 0.005955233470981325 - ArtUnc_21: -0.000919797110477942 - ArtUnc_22: -0.001561310882612792 - ArtUnc_23: 0.0005657803910753065 - ArtUnc_24: 0.00013845948901261996 - ArtUnc_25: -0.0015884893142737797 - ArtUnc_26: -0.002799873191823955 - ArtUnc_27: -0.012058199532830136 - ArtUnc_28: -0.0010435302393417775 - ArtUnc_29: 0.0008423840084403705 - ArtUnc_30: 0.00685468575650593 - ArtUnc_31: -0.0006563809746295895 - ArtUnc_32: -0.0033977228069870455 - ArtUnc_33: -0.001355084387744165 - ArtUnc_34: 0.0018974214458764834 - ArtUnc_35: 0.0033135972302499035 - ArtUnc_36: -0.0011026071913300026 - ArtUnc_37: -0.0002112098128054945 - ArtUnc_38: -0.00016111750143405293 - ArtUnc_39: 7.780354641443638e-06 - ArtUnc_40: -1.0949039928915275e-05 - ArtUnc_41: 0.000816245137223375 - ArtUnc_42: 0.0006595543728718285 - ArtUnc_43: -0.00019201795704490361 - ArtUnc_44: -0.00029239045544503147 - ArtUnc_45: 0.00029228857947157796 - ArtUnc_46: -0.0001495058040451832 - ArtUnc_47: -0.00034465529271012645 - ArtUnc_48: 0.00011551717262219872 - ArtUnc_49: 0.0001708533090525714 - ArtUnc_50: 0.0001364469829349886 - ArtUnc_51: 0.00014030870040233282 - ArtUnc_52: -2.172973149282298e-05 - ArtUnc_53: -2.5524966768609078e-05 - ArtUnc_54: 1.1225502356581918e-05 - ArtUnc_55: -1.49055443718135e-05 - ArtUnc_56: 9.219831701846346e-06 - ArtUnc_57: 4.691504492441189e-06 - ArtUnc_58: -7.6197052616900875e-06 - ArtUnc_59: -9.825460992185917e-06 - ArtUnc_60: -3.627685529542087e-06 - ArtUnc_61: 2.392677403828972e-06 - ArtUnc_62: 2.6175445500912144e-06 - ArtUnc_63: -1.7619189417090062e-06 - ArtUnc_64: -4.092775317851887e-06 - ArtUnc_65: -4.0074756663387494e-06 - ArtUnc_66: 2.9159524324258453e-06 - ArtUnc_67: -1.0830813048007426e-06 - ArtUnc_68: -3.596523553699565e-06 - ArtUnc_69: -2.322886166859726e-06 - ArtUnc_70: 1.561334361050154e-07 - ArtUnc_71: 6.637580118038576e-08 - ArtUnc_72: -2.5743213044265465e-07 - ArtUnc_73: -6.870695206562224e-07 - ArtUnc_74: -8.574271135635655e-07 - ArtUnc_75: -1.1569485846267584e-07 - ArtUnc_76: -6.437296749786064e-08 - ArtUnc_77: -1.8370731100060585e-07 - ArtUnc_78: 2.4335993445393443e-07 - ArtUnc_79: 3.0163122457541757e-07 - ArtUnc_80: 1.0246606463765263e-07 - ArtUnc_81: 3.8856419054492235e-08 - ArtUnc_82: -3.676040090992887e-11 - ArtUnc_83: 1.978891082722876e-08 - ArtUnc_84: -3.067811729035533e-08 - ArtUnc_85: -1.2655550615767179e-08 - ArtUnc_86: 3.768689079174495e-08 - ArtUnc_87: -3.3591322456585576e-08 - ArtUnc_88: 1.590444265428146e-08 - ArtUnc_89: 1.3221074939131933e-08 - ArtUnc_90: 5.231483778556825e-09 - ArtUnc_91: -6.979669883932993e-09 - ArtUnc_92: 6.92443228530112e-09 - ArtUnc_93: 1.493979649829139e-08 - ArtUnc_94: -1.0576092301005824e-09 - ArtUnc_95: 5.957595733315587e-09 - ArtUnc_96: 1.5437534461032975e-10 + ArtUnc_1: 28.534619481303825 + ArtUnc_2: -7.123863967078508 + ArtUnc_3: -2.7181265551317226 + ArtUnc_4: -0.3899284876102117 + ArtUnc_5: -0.00670746378074466 + ArtUnc_6: -0.008283999205217387 + ArtUnc_7: 0.0007567391512459143 + ArtUnc_8: -0.27855882289615036 + ArtUnc_9: -0.0015553697559445726 + ArtUnc_10: 0.6841040029689246 + ArtUnc_11: 0.2703982613331601 + ArtUnc_12: -0.02577120581018809 + ArtUnc_13: -0.20196510734929263 + ArtUnc_14: -0.061245749383712446 + ArtUnc_15: -0.1373398814060955 + ArtUnc_16: 0.05559250646001657 + ArtUnc_17: -0.03891494291030187 + ArtUnc_18: 0.022439546494828832 + ArtUnc_19: -0.004613609699705583 + ArtUnc_20: -0.005955233470981109 + ArtUnc_21: -0.000919797110477925 + ArtUnc_22: -0.0015613108826127554 + ArtUnc_23: -0.0005657803910752896 + ArtUnc_24: -0.00013845948901258673 + ArtUnc_25: 0.0015884893142738003 + ArtUnc_26: 0.0027998731918240935 + ArtUnc_27: 0.012058199532830109 + ArtUnc_28: 0.0010435302393417168 + ArtUnc_29: -0.0008423840084407331 + ArtUnc_30: 0.006854685756505784 + ArtUnc_31: 0.0006563809746296008 + ArtUnc_32: -0.003397722806987923 + ArtUnc_33: -0.0013550843877417945 + ArtUnc_34: -0.0018974214458767377 + ArtUnc_35: -0.0033135972302497743 + ArtUnc_36: -0.0011026071913299487 + ArtUnc_37: -0.00021120981280549925 + ArtUnc_38: 0.0001611175014340478 + ArtUnc_39: 7.780354641441171e-06 + ArtUnc_40: -1.0949039928915957e-05 + ArtUnc_41: 0.0008162451372233949 + ArtUnc_42: 0.0006595543728718163 + ArtUnc_43: -0.0001920179570449045 + ArtUnc_44: -0.00029239045544503836 + ArtUnc_45: 0.00029228857947158284 + ArtUnc_46: -0.00014950580404518931 + ArtUnc_47: 0.0003446552927101274 + ArtUnc_48: -0.00011551717262218647 + ArtUnc_49: -0.00017085330905257303 + ArtUnc_50: -0.00013644698293498577 + ArtUnc_51: 9.219831701846136e-06 + ArtUnc_52: -1.4905544371813783e-05 + ArtUnc_53: -0.00014030870040233003 + ArtUnc_54: 2.172973149282271e-05 + ArtUnc_55: 2.5524966768608532e-05 + ArtUnc_56: 1.1225502356583022e-05 + ArtUnc_57: -4.691504492441422e-06 + ArtUnc_58: 7.6197052616898715e-06 + ArtUnc_59: 9.825460992185863e-06 + ArtUnc_60: 3.627685529542029e-06 + ArtUnc_61: -2.392677403828778e-06 + ArtUnc_62: -2.617544550091262e-06 + ArtUnc_63: 1.7619189417090515e-06 + ArtUnc_64: -4.0927753178519035e-06 + ArtUnc_65: 4.0074756663388155e-06 + ArtUnc_66: 2.9159524324259093e-06 + ArtUnc_67: -1.0830813048008015e-06 + ArtUnc_68: -3.5965235536997996e-06 + ArtUnc_69: -2.322886166859595e-06 + ArtUnc_70: 2.5743213044265925e-07 + ArtUnc_71: -1.5613343610499397e-07 + ArtUnc_72: 6.637580118037731e-08 + ArtUnc_73: -6.870695206562281e-07 + ArtUnc_74: 8.574271135636011e-07 + ArtUnc_75: 1.1569485846268291e-07 + ArtUnc_76: -6.437296749786422e-08 + ArtUnc_77: -1.837073110006341e-07 + ArtUnc_78: -2.4335993445393687e-07 + ArtUnc_79: 3.0163122457542233e-07 + ArtUnc_80: -1.0246606463765234e-07 + ArtUnc_81: 3.8856419054493195e-08 + ArtUnc_82: -3.6760400909888214e-11 + ArtUnc_83: 1.978891082722819e-08 + ArtUnc_84: -3.067811729035556e-08 + ArtUnc_85: -1.2655550615766943e-08 + ArtUnc_86: -6.924432285300878e-09 + ArtUnc_87: -1.4939796498290833e-08 + ArtUnc_88: 3.768689079174396e-08 + ArtUnc_89: 3.359132245658672e-08 + ArtUnc_90: 1.590444265428233e-08 + ArtUnc_91: -5.957595733315514e-09 + ArtUnc_92: -1.0576092301003206e-09 + ArtUnc_93: 1.3221074939131718e-08 + ArtUnc_94: -5.2314837785566986e-09 + ArtUnc_95: -6.979669883933357e-09 + ArtUnc_96: 1.543753446103767e-10 - stat: 0 Uncorr: 2.3000000000000003 RCES: 8.234216826754079 @@ -3234,102 +3234,102 @@ bins: ModelRW_2: 6.440328563047075 JES_1: 10.212660451615927 JES_2: 10.212660451615927 - ArtUnc_1: 2.297076133139009 - ArtUnc_2: -1.0892033898037945 - ArtUnc_3: -0.46266437928941223 - ArtUnc_4: 0.003459726676908899 - ArtUnc_5: -0.0702479988032363 - ArtUnc_6: 0.025635496777509318 - ArtUnc_7: 0.0011811538975454896 - ArtUnc_8: -5.698072050451222 - ArtUnc_9: -0.01838660928837008 - ArtUnc_10: -6.024756075070182 - ArtUnc_11: -2.9660838975572634 - ArtUnc_12: 0.5090423741530861 - ArtUnc_13: 1.8418379289105657 - ArtUnc_14: 0.51853845035762 - ArtUnc_15: 1.3053603129533569 - ArtUnc_16: -0.4807548269525335 - ArtUnc_17: -0.3546020620221221 - ArtUnc_18: 0.1900089641370534 - ArtUnc_19: -0.03448455438106442 - ArtUnc_20: -0.03347777181934266 - ArtUnc_21: 0.006677665520888274 - ArtUnc_22: 0.005573150621445732 - ArtUnc_23: -0.001614094874854339 - ArtUnc_24: -0.000568273667309047 - ArtUnc_25: 0.13949268880937934 - ArtUnc_26: 0.0735257804556413 - ArtUnc_27: 0.18086565126001672 - ArtUnc_28: 0.02126020679739065 - ArtUnc_29: -0.009972218314624906 - ArtUnc_30: -0.09065927398924303 - ArtUnc_31: 0.0006883162712904542 - ArtUnc_32: 0.04229196904251895 - ArtUnc_33: 0.016219675814081926 - ArtUnc_34: -0.02714390336879897 - ArtUnc_35: -0.043504078961787714 - ArtUnc_36: 0.01651470665811468 - ArtUnc_37: 0.0024434123447176818 - ArtUnc_38: 0.0029714037791766005 - ArtUnc_39: -0.0007310172834329654 - ArtUnc_40: -0.0002113625287745033 - ArtUnc_41: -0.00716087066432244 - ArtUnc_42: -0.00587695178165027 - ArtUnc_43: 0.0017314514208508663 - ArtUnc_44: 0.002553951127823668 - ArtUnc_45: -0.0025656232271245084 - ArtUnc_46: 0.0011881545478557916 - ArtUnc_47: 0.002804030604187064 - ArtUnc_48: -0.0008879580966486244 - ArtUnc_49: -0.0013691464108833973 - ArtUnc_50: -0.0011494198540057236 - ArtUnc_51: -0.0011819515239073419 - ArtUnc_52: 0.0002536231243983661 - ArtUnc_53: 0.00018472562965263277 - ArtUnc_54: -8.73983655878302e-05 - ArtUnc_55: 7.294074042155457e-05 - ArtUnc_56: -9.055078135816856e-05 - ArtUnc_57: -4.885657431811372e-05 - ArtUnc_58: 5.5139030312729935e-05 - ArtUnc_59: 0.00013839594374450177 - ArtUnc_60: 4.877085515415399e-05 - ArtUnc_61: -4.227075372782918e-05 - ArtUnc_62: -2.8700177521540744e-05 - ArtUnc_63: 2.380380668656732e-05 - ArtUnc_64: 5.132418586798756e-05 - ArtUnc_65: 5.261628114177773e-05 - ArtUnc_66: -3.8834498081222535e-05 - ArtUnc_67: 1.3491744321720766e-05 - ArtUnc_68: 3.742843080220253e-05 - ArtUnc_69: 2.0431367214920775e-05 - ArtUnc_70: -7.380420140614505e-07 - ArtUnc_71: -1.1211342621343872e-06 - ArtUnc_72: 6.037085275243379e-07 - ArtUnc_73: 7.3257684432416824e-06 - ArtUnc_74: 8.91679159433491e-06 - ArtUnc_75: 1.162861834698764e-06 - ArtUnc_76: 6.250625946348372e-07 - ArtUnc_77: 1.8200635034374447e-06 - ArtUnc_78: -2.5253370700758245e-06 - ArtUnc_79: -3.227347634136561e-06 - ArtUnc_80: -9.159003097231446e-07 - ArtUnc_81: -3.472046352210964e-07 - ArtUnc_82: 8.06392582351291e-10 - ArtUnc_83: -2.002810595725193e-07 - ArtUnc_84: 2.56765894718828e-07 - ArtUnc_85: 1.2916345002614962e-07 - ArtUnc_86: -4.2204082732703897e-07 - ArtUnc_87: 3.5825707537556616e-07 - ArtUnc_88: -1.3673297886086651e-07 - ArtUnc_89: -1.2730479200691235e-07 - ArtUnc_90: -5.8950569248484984e-08 - ArtUnc_91: 3.969493521176897e-08 - ArtUnc_92: -5.4068451479893034e-08 - ArtUnc_93: -1.388648088096199e-07 - ArtUnc_94: 9.722202506316362e-09 - ArtUnc_95: -5.3828040959302966e-08 - ArtUnc_96: 4.001083540114983e-09 + ArtUnc_1: 2.2970761331390066 + ArtUnc_2: -1.0892033898037916 + ArtUnc_3: -0.4626643792894114 + ArtUnc_4: 0.0034597266768986723 + ArtUnc_5: -0.07024799880322546 + ArtUnc_6: -0.025635496777499604 + ArtUnc_7: -0.0011811538975831683 + ArtUnc_8: 5.698072050451249 + ArtUnc_9: 0.01838660928832924 + ArtUnc_10: -6.02475607507018 + ArtUnc_11: -2.9660838975572674 + ArtUnc_12: 0.509042374153124 + ArtUnc_13: 1.8418379289105533 + ArtUnc_14: 0.5185384503576153 + ArtUnc_15: 1.3053603129533584 + ArtUnc_16: -0.48075482695253724 + ArtUnc_17: 0.3546020620221246 + ArtUnc_18: -0.19000896413705118 + ArtUnc_19: 0.03448455438106577 + ArtUnc_20: 0.0334777718193411 + ArtUnc_21: 0.00667766552088803 + ArtUnc_22: 0.005573150621444783 + ArtUnc_23: 0.0016140948748548712 + ArtUnc_24: 0.000568273667308521 + ArtUnc_25: -0.13949268880938007 + ArtUnc_26: -0.07352578045564359 + ArtUnc_27: -0.1808656512600164 + ArtUnc_28: -0.021260206797389925 + ArtUnc_29: 0.00997221831462979 + ArtUnc_30: -0.09065927398924134 + ArtUnc_31: -0.0006883162712905388 + ArtUnc_32: 0.04229196904252959 + ArtUnc_33: 0.01621967581405243 + ArtUnc_34: 0.027143903368802316 + ArtUnc_35: 0.04350407896178598 + ArtUnc_36: 0.016514706658114008 + ArtUnc_37: 0.0024434123447177863 + ArtUnc_38: -0.002971403779176569 + ArtUnc_39: -0.0007310172834329555 + ArtUnc_40: -0.00021136252877450334 + ArtUnc_41: -0.007160870664322624 + ArtUnc_42: -0.005876951781650189 + ArtUnc_43: 0.0017314514208508819 + ArtUnc_44: 0.002553951127823745 + ArtUnc_45: -0.0025656232271245513 + ArtUnc_46: 0.0011881545478558493 + ArtUnc_47: -0.002804030604187082 + ArtUnc_48: 0.0008879580966485295 + ArtUnc_49: 0.001369146410883418 + ArtUnc_50: 0.0011494198540057063 + ArtUnc_51: -9.055078135816814e-05 + ArtUnc_52: 7.294074042155794e-05 + ArtUnc_53: 0.001181951523907321 + ArtUnc_54: -0.00025362312439836495 + ArtUnc_55: -0.00018472562965263104 + ArtUnc_56: -8.739836558783833e-05 + ArtUnc_57: 4.885657431811609e-05 + ArtUnc_58: -5.51390303127279e-05 + ArtUnc_59: -0.00013839594374450153 + ArtUnc_60: -4.877085515415337e-05 + ArtUnc_61: 4.22707537278272e-05 + ArtUnc_62: 2.8700177521542225e-05 + ArtUnc_63: -2.3803806686567963e-05 + ArtUnc_64: 5.132418586798827e-05 + ArtUnc_65: -5.261628114177895e-05 + ArtUnc_66: -3.88344980812236e-05 + ArtUnc_67: 1.3491744321721498e-05 + ArtUnc_68: 3.7428430802205095e-05 + ArtUnc_69: 2.0431367214919684e-05 + ArtUnc_70: -6.037085275244034e-07 + ArtUnc_71: 7.380420140613976e-07 + ArtUnc_72: -1.1211342621343135e-06 + ArtUnc_73: 7.325768443241816e-06 + ArtUnc_74: -8.916791594335334e-06 + ArtUnc_75: -1.162861834698842e-06 + ArtUnc_76: 6.250625946348806e-07 + ArtUnc_77: 1.82006350343776e-06 + ArtUnc_78: 2.525337070075889e-06 + ArtUnc_79: -3.227347634136641e-06 + ArtUnc_80: 9.159003097231551e-07 + ArtUnc_81: -3.4720463522110955e-07 + ArtUnc_82: 8.063925823509818e-10 + ArtUnc_83: -2.002810595725168e-07 + ArtUnc_84: 2.5676589471883596e-07 + ArtUnc_85: 1.2916345002614888e-07 + ArtUnc_86: 5.406845147989175e-08 + ArtUnc_87: 1.3886480880961782e-07 + ArtUnc_88: -4.220408273270315e-07 + ArtUnc_89: -3.5825707537558045e-07 + ArtUnc_90: -1.3673297886087641e-07 + ArtUnc_91: 5.3828040959303416e-08 + ArtUnc_92: 9.722202506314322e-09 + ArtUnc_93: -1.2730479200691123e-07 + ArtUnc_94: 5.895056924848404e-08 + ArtUnc_95: 3.96949352117729e-08 + ArtUnc_96: 4.001083540114452e-09 - stat: 0 Uncorr: 0.631 RCES: 0.5889633801858993 @@ -3345,102 +3345,102 @@ bins: ModelRW_2: 2.0122915489684887 JES_1: 1.6927155709982702 JES_2: 1.6927155709982702 - ArtUnc_1: -0.0009965196005386932 - ArtUnc_2: -0.0490763710144604 - ArtUnc_3: -0.047564970547462816 - ArtUnc_4: -0.013756699974386742 - ArtUnc_5: 0.0013405642217338104 - ArtUnc_6: 0.00038667537064925343 - ArtUnc_7: 0.00012760105811892577 - ArtUnc_8: -0.31731888380211215 - ArtUnc_9: -0.0011592755697405527 - ArtUnc_10: -0.4504172181733019 - ArtUnc_11: -0.21373373716518707 - ArtUnc_12: 0.07390984381923715 - ArtUnc_13: 0.15323462967136534 - ArtUnc_14: 0.016725144962615363 - ArtUnc_15: 0.061541096508847544 - ArtUnc_16: 0.0012801800918939162 - ArtUnc_17: 0.01019751389634067 - ArtUnc_18: 0.003646885619794577 - ArtUnc_19: 0.007440900959470505 - ArtUnc_20: -0.030597234662372658 - ArtUnc_21: 0.01992090985890483 - ArtUnc_22: -0.008080984027201168 - ArtUnc_23: 0.0025137026103077445 - ArtUnc_24: -0.00041309541960145876 - ArtUnc_25: 0.7665401298664348 - ArtUnc_26: -0.20904621147771893 - ArtUnc_27: -2.472266072161976 - ArtUnc_28: 0.2963104198978536 - ArtUnc_29: 0.2289045278005049 - ArtUnc_30: 1.0542185366477328 - ArtUnc_31: 0.028303682128789087 - ArtUnc_32: -0.4932083605436826 - ArtUnc_33: -0.13788572623234713 - ArtUnc_34: 0.2784114116994266 - ArtUnc_35: 0.47389759816721194 - ArtUnc_36: -0.17395524785263045 - ArtUnc_37: -0.029441826176746566 - ArtUnc_38: -0.02962185468097465 - ArtUnc_39: 0.003793759664381692 - ArtUnc_40: 0.000617116973854914 - ArtUnc_41: 0.07130678915444245 - ArtUnc_42: 0.09783409895431039 - ArtUnc_43: -0.00251864351554638 - ArtUnc_44: -0.02557340624368057 - ArtUnc_45: 0.03679531486118423 - ArtUnc_46: -0.0032245074874930045 - ArtUnc_47: -0.022428942333149526 - ArtUnc_48: -0.002745702202360223 - ArtUnc_49: 0.013380306228957502 - ArtUnc_50: 0.016804630618115865 - ArtUnc_51: 0.016114514223098075 - ArtUnc_52: -0.00524029381954212 - ArtUnc_53: -0.0029677086312849287 - ArtUnc_54: 0.0001902632252158602 - ArtUnc_55: -0.0005791249759598457 - ArtUnc_56: 0.0006300547084760401 - ArtUnc_57: -0.0002804429750602387 - ArtUnc_58: 0.0018944439314549104 - ArtUnc_59: -0.0013271820680700972 - ArtUnc_60: -0.00035204867711393723 - ArtUnc_61: 0.0014031938044521042 - ArtUnc_62: -0.0002882139019710647 - ArtUnc_63: -0.0005940507007868716 - ArtUnc_64: -8.61814497537013e-05 - ArtUnc_65: -0.00027621386915058997 - ArtUnc_66: 0.0008705951659873406 - ArtUnc_67: -0.0002900155986531735 - ArtUnc_68: -0.0010883729771620856 - ArtUnc_69: -0.0005855436480219128 - ArtUnc_70: 0.00010782019438672839 - ArtUnc_71: 7.085871654984603e-05 - ArtUnc_72: -3.89122163738746e-05 - ArtUnc_73: -9.267549343752526e-06 - ArtUnc_74: -1.0338450946925255e-05 - ArtUnc_75: -2.5984669077541534e-06 - ArtUnc_76: -3.7953189242007785e-06 - ArtUnc_77: -6.080111235028886e-06 - ArtUnc_78: 1.1459432837723044e-05 - ArtUnc_79: 1.3531736033283021e-05 - ArtUnc_80: -4.785256084645539e-06 - ArtUnc_81: -1.4476474117621292e-06 - ArtUnc_82: 8.717567938833966e-09 - ArtUnc_83: 2.1625432339053885e-06 - ArtUnc_84: 1.4245958021684796e-06 - ArtUnc_85: -1.5918227317217163e-06 - ArtUnc_86: 1.70581822952215e-06 - ArtUnc_87: -1.638206806189619e-06 - ArtUnc_88: -2.8779633835817855e-07 - ArtUnc_89: -5.728647448866196e-08 - ArtUnc_90: 7.621759654344365e-07 - ArtUnc_91: 4.1672703857240277e-08 - ArtUnc_92: -2.0337474318313564e-06 - ArtUnc_93: -1.5086338157836613e-06 - ArtUnc_94: 6.715287876038684e-08 - ArtUnc_95: -4.343963169364552e-07 - ArtUnc_96: -2.8880854045614826e-07 + ArtUnc_1: -0.0009965196005386923 + ArtUnc_2: -0.04907637101446047 + ArtUnc_3: -0.04756497054746269 + ArtUnc_4: -0.013756699974385526 + ArtUnc_5: 0.0013405642217313753 + ArtUnc_6: -0.0003866753706473783 + ArtUnc_7: -0.00012760105812504135 + ArtUnc_8: 0.3173188838021138 + ArtUnc_9: 0.0011592755697388047 + ArtUnc_10: -0.45041721817330066 + ArtUnc_11: -0.2137337371651879 + ArtUnc_12: 0.07390984381923797 + ArtUnc_13: 0.15323462967136156 + ArtUnc_14: 0.016725144962614295 + ArtUnc_15: 0.06154109650884441 + ArtUnc_16: 0.0012801800918984287 + ArtUnc_17: -0.010197513896344924 + ArtUnc_18: -0.0036468856197927895 + ArtUnc_19: -0.007440900959471428 + ArtUnc_20: 0.030597234662372387 + ArtUnc_21: 0.01992090985890962 + ArtUnc_22: -0.008080984027201216 + ArtUnc_23: -0.002513702610298424 + ArtUnc_24: 0.0004130954196040905 + ArtUnc_25: -0.7665401298664287 + ArtUnc_26: 0.20904621147775262 + ArtUnc_27: 2.4722660721619834 + ArtUnc_28: -0.2963104198978628 + ArtUnc_29: -0.22890452780055967 + ArtUnc_30: 1.0542185366477073 + ArtUnc_31: -0.028303682128787668 + ArtUnc_32: -0.49320836054377415 + ArtUnc_33: -0.1378857262320036 + ArtUnc_34: -0.27841141169946304 + ArtUnc_35: -0.4738975981671955 + ArtUnc_36: -0.17395524785262387 + ArtUnc_37: -0.02944182617674767 + ArtUnc_38: 0.029621854680974245 + ArtUnc_39: 0.0037937596643816225 + ArtUnc_40: 0.0006171169738548413 + ArtUnc_41: 0.07130678915444527 + ArtUnc_42: 0.09783409895430999 + ArtUnc_43: -0.0025186435155468063 + ArtUnc_44: -0.025573406243681544 + ArtUnc_45: 0.03679531486118474 + ArtUnc_46: -0.003224507487493442 + ArtUnc_47: 0.022428942333149793 + ArtUnc_48: 0.0027457022023610472 + ArtUnc_49: -0.013380306228957847 + ArtUnc_50: -0.01680463061811569 + ArtUnc_51: 0.0006300547084760256 + ArtUnc_52: -0.0005791249759598666 + ArtUnc_53: -0.016114514223097707 + ArtUnc_54: 0.005240293819542083 + ArtUnc_55: 0.002967708631284937 + ArtUnc_56: 0.00019026322521595404 + ArtUnc_57: 0.0002804429750602793 + ArtUnc_58: -0.001894443931454924 + ArtUnc_59: 0.0013271820680700766 + ArtUnc_60: 0.00035204867711393067 + ArtUnc_61: -0.0014031938044521107 + ArtUnc_62: 0.000288213901971008 + ArtUnc_63: 0.0005940507007868716 + ArtUnc_64: -8.618144975369645e-05 + ArtUnc_65: 0.0002762138691505921 + ArtUnc_66: 0.0008705951659873383 + ArtUnc_67: -0.0002900155986531886 + ArtUnc_68: -0.001088372977162145 + ArtUnc_69: -0.0005855436480218688 + ArtUnc_70: 3.891221637388164e-05 + ArtUnc_71: -0.00010782019438672507 + ArtUnc_72: 7.085871654984114e-05 + ArtUnc_73: -9.26754934375886e-06 + ArtUnc_74: 1.0338450946933556e-05 + ArtUnc_75: 2.5984669077553655e-06 + ArtUnc_76: -3.7953189242014587e-06 + ArtUnc_77: -6.080111235031745e-06 + ArtUnc_78: -1.145943283772544e-05 + ArtUnc_79: 1.3531736033285865e-05 + ArtUnc_80: 4.785256084644365e-06 + ArtUnc_81: -1.4476474117618153e-06 + ArtUnc_82: 8.717567938832361e-09 + ArtUnc_83: 2.1625432339056964e-06 + ArtUnc_84: 1.4245958021681639e-06 + ArtUnc_85: -1.5918227317219126e-06 + ArtUnc_86: 2.033747431831262e-06 + ArtUnc_87: 1.5086338157833956e-06 + ArtUnc_88: 1.705818229522455e-06 + ArtUnc_89: 1.6382068061899532e-06 + ArtUnc_90: -2.8779633835803196e-07 + ArtUnc_91: 4.3439631693636184e-07 + ArtUnc_92: 6.715287876035183e-08 + ArtUnc_93: -5.728647448855988e-08 + ArtUnc_94: -7.621759654344934e-07 + ArtUnc_95: 4.1672703857164295e-08 + ArtUnc_96: -2.8880854045615154e-07 - stat: 0 Uncorr: 0.105 RCES: 0.15236943591153704 @@ -3456,102 +3456,102 @@ bins: ModelRW_2: 0.3511845828762989 JES_1: 0.36323474847541776 JES_2: 0.36323474847541776 - ArtUnc_1: 0.00048222324563112324 - ArtUnc_2: -0.00045481936606475335 - ArtUnc_3: -0.00028651499613534676 - ArtUnc_4: -5.045932370837303e-06 - ArtUnc_5: -6.963204243240137e-05 - ArtUnc_6: 3.525407986547766e-05 - ArtUnc_7: 7.335364810789872e-07 - ArtUnc_8: -0.011353917117131667 - ArtUnc_9: -4.218063182215126e-05 - ArtUnc_10: -0.015707934389066276 - ArtUnc_11: -0.009803885316949507 - ArtUnc_12: 0.002153699370555611 - ArtUnc_13: 0.00753284433765608 - ArtUnc_14: 0.0021950944042568345 - ArtUnc_15: 0.006046097250410136 - ArtUnc_16: -0.002311692799103495 - ArtUnc_17: -0.0017171120266755752 - ArtUnc_18: 0.0010288977453567977 - ArtUnc_19: -0.00011311504002507693 - ArtUnc_20: -0.0005321726757169514 - ArtUnc_21: 0.00031996106432857584 - ArtUnc_22: -9.23556488693514e-05 - ArtUnc_23: 4.181140486327824e-05 - ArtUnc_24: -1.9034702199728612e-05 - ArtUnc_25: 0.020487758169370637 - ArtUnc_26: -0.011574866257633072 - ArtUnc_27: -0.08912912698772604 - ArtUnc_28: 0.008665626267010507 - ArtUnc_29: 0.006635338253214907 - ArtUnc_30: 0.02794587681218538 - ArtUnc_31: 0.000977229749718423 - ArtUnc_32: -0.010216142199214729 - ArtUnc_33: -0.002845330035775146 - ArtUnc_34: 0.005570333273643814 - ArtUnc_35: 0.009662654568295312 - ArtUnc_36: -0.004528737722650618 - ArtUnc_37: -0.0012038460339397936 - ArtUnc_38: -0.0018731277432523967 - ArtUnc_39: 0.0008503564209477177 - ArtUnc_40: 0.000138445622024803 - ArtUnc_41: 0.663849568643789 - ArtUnc_42: -0.5706914172499961 - ArtUnc_43: -0.3775614838740124 - ArtUnc_44: -0.03501730818426179 - ArtUnc_45: -0.22079268371283478 - ArtUnc_46: -0.15556486625569363 - ArtUnc_47: -0.03878286742300643 - ArtUnc_48: 0.1792366648952618 - ArtUnc_49: -0.054283781528397274 - ArtUnc_50: -0.13242443389466826 - ArtUnc_51: -0.13148541911448722 - ArtUnc_52: 0.048082372908605085 - ArtUnc_53: 0.03475140647080293 - ArtUnc_54: 0.0036341293741232877 - ArtUnc_55: 0.007711552695186414 - ArtUnc_56: -0.003416335306032307 - ArtUnc_57: 0.008015429032454417 - ArtUnc_58: -0.04296678302902025 - ArtUnc_59: 0.021593356391990164 - ArtUnc_60: 0.005088828565798807 - ArtUnc_61: -0.024094100946152837 - ArtUnc_62: 0.006406534115998357 - ArtUnc_63: 0.009260583805346435 - ArtUnc_64: -0.0007324592001936841 - ArtUnc_65: 0.0023102409510445264 - ArtUnc_66: -0.011795995784537588 - ArtUnc_67: 0.0037988107609475724 - ArtUnc_68: 0.014005992450294541 - ArtUnc_69: 0.007273315267392656 - ArtUnc_70: -0.001466337672531976 - ArtUnc_71: -0.0009929230225180076 - ArtUnc_72: 0.00042293942566536656 - ArtUnc_73: 0.00011844704664032813 - ArtUnc_74: 0.00023022953652045142 - ArtUnc_75: 5.280533255610051e-05 - ArtUnc_76: 5.8320312563029384e-05 - ArtUnc_77: 0.00013664656253661587 - ArtUnc_78: -0.0002258553331687576 - ArtUnc_79: -0.0003222283740100807 - ArtUnc_80: 8.560658591627343e-05 - ArtUnc_81: 2.7635731751350576e-05 - ArtUnc_82: -1.4471079941618696e-07 - ArtUnc_83: -4.849242745558435e-05 - ArtUnc_84: -2.73851982751988e-05 - ArtUnc_85: 3.691156820800472e-05 - ArtUnc_86: -3.2808291692025e-05 - ArtUnc_87: 5.063474698032525e-05 - ArtUnc_88: 5.9404921856279335e-06 - ArtUnc_89: 1.3945197108891403e-05 - ArtUnc_90: -1.976061848848475e-05 - ArtUnc_91: 5.4158037246835686e-06 - ArtUnc_92: 4.5856356459877216e-05 - ArtUnc_93: 3.282889882737818e-05 - ArtUnc_94: -1.5861418317529727e-06 - ArtUnc_95: 9.969375328917745e-06 - ArtUnc_96: 8.099606377265982e-06 + ArtUnc_1: 0.00048222324563112264 + ArtUnc_2: -0.0004548193660647549 + ArtUnc_3: -0.000286514996135342 + ArtUnc_4: -5.045932370756765e-06 + ArtUnc_5: -6.963204243240928e-05 + ArtUnc_6: -3.525407986559304e-05 + ArtUnc_7: -7.335364812501672e-07 + ArtUnc_8: 0.011353917117131688 + ArtUnc_9: 4.218063182166823e-05 + ArtUnc_10: -0.015707934389066265 + ArtUnc_11: -0.009803885316949498 + ArtUnc_12: 0.0021536993705559898 + ArtUnc_13: 0.007532844337655942 + ArtUnc_14: 0.0021950944042568683 + ArtUnc_15: 0.006046097250410134 + ArtUnc_16: -0.0023116927991033214 + ArtUnc_17: 0.0017171120266754247 + ArtUnc_18: -0.0010288977453566045 + ArtUnc_19: 0.00011311504002460291 + ArtUnc_20: 0.0005321726757171317 + ArtUnc_21: 0.00031996106432853085 + ArtUnc_22: -9.235564886922412e-05 + ArtUnc_23: -4.181140486276274e-05 + ArtUnc_24: 1.90347021989865e-05 + ArtUnc_25: -0.020487758169369312 + ArtUnc_26: 0.011574866257633931 + ArtUnc_27: 0.08912912698772603 + ArtUnc_28: -0.008665626267010482 + ArtUnc_29: -0.006635338253216263 + ArtUnc_30: 0.027945876812184477 + ArtUnc_31: -0.0009772297497179653 + ArtUnc_32: -0.010216142199216087 + ArtUnc_33: -0.002845330035767449 + ArtUnc_34: -0.005570333273645624 + ArtUnc_35: -0.009662654568296104 + ArtUnc_36: -0.004528737722651677 + ArtUnc_37: -0.0012038460339396265 + ArtUnc_38: 0.0018731277432525726 + ArtUnc_39: 0.0008503564209471586 + ArtUnc_40: 0.00013844562202529199 + ArtUnc_41: 0.6638495686437801 + ArtUnc_42: -0.5706914172500034 + ArtUnc_43: -0.37756148387400784 + ArtUnc_44: -0.03501730818425852 + ArtUnc_45: -0.22079268371283536 + ArtUnc_46: -0.1555648662556946 + ArtUnc_47: 0.03878286742300583 + ArtUnc_48: -0.17923666489526285 + ArtUnc_49: 0.05428378152839977 + ArtUnc_50: 0.1324244338946672 + ArtUnc_51: -0.003416335306031974 + ArtUnc_52: 0.007711552695186313 + ArtUnc_53: 0.13148541911448347 + ArtUnc_54: -0.04808237290860438 + ArtUnc_55: -0.03475140647080258 + ArtUnc_56: 0.003634129374122391 + ArtUnc_57: -0.008015429032455383 + ArtUnc_58: 0.042966783029020544 + ArtUnc_59: -0.021593356391989723 + ArtUnc_60: -0.005088828565798671 + ArtUnc_61: 0.024094100946153038 + ArtUnc_62: -0.006406534115997293 + ArtUnc_63: -0.009260583805346423 + ArtUnc_64: -0.0007324592001938286 + ArtUnc_65: -0.0023102409510445 + ArtUnc_66: -0.011795995784537529 + ArtUnc_67: 0.003798810760947751 + ArtUnc_68: 0.014005992450295192 + ArtUnc_69: 0.0072733152673920285 + ArtUnc_70: -0.0004229394256654641 + ArtUnc_71: 0.0014663376725319356 + ArtUnc_72: -0.0009929230225179458 + ArtUnc_73: 0.00011844704664039685 + ArtUnc_74: -0.00023022953652054892 + ArtUnc_75: -5.280533255611597e-05 + ArtUnc_76: 5.8320312563038125e-05 + ArtUnc_77: 0.00013664656253665832 + ArtUnc_78: 0.00022585533316878535 + ArtUnc_79: -0.0003222283740101118 + ArtUnc_80: -8.560658591625873e-05 + ArtUnc_81: 2.7635731751347974e-05 + ArtUnc_82: -1.4471079941616133e-07 + ArtUnc_83: -4.8492427455588045e-05 + ArtUnc_84: -2.7385198275194944e-05 + ArtUnc_85: 3.691156820800699e-05 + ArtUnc_86: -4.585635645987649e-05 + ArtUnc_87: -3.282889882737541e-05 + ArtUnc_88: -3.2808291692027684e-05 + ArtUnc_89: -5.063474698032896e-05 + ArtUnc_90: 5.940492185626315e-06 + ArtUnc_91: -9.96937532891693e-06 + ArtUnc_92: -1.5861418317524066e-06 + ArtUnc_93: 1.394519710889056e-05 + ArtUnc_94: 1.976061848848542e-05 + ArtUnc_95: 5.415803724684479e-06 + ArtUnc_96: 8.099606377266068e-06 - stat: 0 Uncorr: 0.0181 RCES: 0.027783794786709757 @@ -3567,102 +3567,102 @@ bins: ModelRW_2: 0.05145050361269556 JES_1: 0.08495137673619538 JES_2: 0.08495137673619538 - ArtUnc_1: 8.284240535459945e-05 - ArtUnc_2: -7.143652520747548e-05 - ArtUnc_3: -4.293910641632099e-05 - ArtUnc_4: 9.189147705404e-07 - ArtUnc_5: -1.1683924773492631e-05 - ArtUnc_6: 5.437220127168312e-06 - ArtUnc_7: 3.1867886787515996e-07 - ArtUnc_8: -0.001750767579044543 - ArtUnc_9: -6.320894995004844e-06 - ArtUnc_10: -0.0023152786563023536 - ArtUnc_11: -0.0015122601857190162 - ArtUnc_12: 0.00028672664141823575 - ArtUnc_13: 0.001170713781008741 - ArtUnc_14: 0.00037400319118559457 - ArtUnc_15: 0.0010149982650400344 - ArtUnc_16: -0.0004244565163136573 - ArtUnc_17: -0.00034015178709350026 - ArtUnc_18: 0.00019293282009014468 - ArtUnc_19: -4.3545110517268796e-05 - ArtUnc_20: -3.082354649522926e-05 - ArtUnc_21: 1.7465997791860596e-06 - ArtUnc_22: 1.2057399180629462e-05 - ArtUnc_23: -4.49174474318245e-06 - ArtUnc_24: -9.79744710511551e-07 - ArtUnc_25: -0.00020738105703601545 - ArtUnc_26: 0.000423076135428493 - ArtUnc_27: 0.003193753895059643 - ArtUnc_28: -0.0002789218703016149 - ArtUnc_29: -0.0003826943616379029 - ArtUnc_30: -0.002112576370727655 - ArtUnc_31: -4.6340652522069066e-05 - ArtUnc_32: 0.0012541085350817492 - ArtUnc_33: 0.00037808859529180923 - ArtUnc_34: -0.0008401347196621201 - ArtUnc_35: -0.001437235721419083 - ArtUnc_36: 0.0005759556505316176 - ArtUnc_37: 9.800053871529871e-05 - ArtUnc_38: 0.00010495865631075194 - ArtUnc_39: -1.4606526389308009e-05 - ArtUnc_40: -3.996192470531904e-06 - ArtUnc_41: 0.011750948973267745 - ArtUnc_42: -0.015575601828046928 - ArtUnc_43: -0.0041891881277658785 - ArtUnc_44: 0.0011989486168135766 - ArtUnc_45: -0.0023379869035208283 - ArtUnc_46: 0.0001545301319618089 - ArtUnc_47: 0.000555931868146022 - ArtUnc_48: -2.71013976006483e-05 - ArtUnc_49: 0.00020626001420983263 - ArtUnc_50: 5.820870463682508e-05 - ArtUnc_51: 0.00014939065649090851 - ArtUnc_52: 9.672127646830308e-05 - ArtUnc_53: 1.109866188438674e-05 - ArtUnc_54: 1.7388712029753375e-05 - ArtUnc_55: 2.554443969099818e-05 - ArtUnc_56: -1.6662171502083667e-05 - ArtUnc_57: 0.11990698671213056 - ArtUnc_58: -0.16304725262959285 - ArtUnc_59: -0.2330672324039735 - ArtUnc_60: -0.08346872670813604 - ArtUnc_61: 0.0561300422126411 - ArtUnc_62: 0.05180044908507952 - ArtUnc_63: -0.03058943537058552 - ArtUnc_64: -0.08155023196137727 - ArtUnc_65: -0.07903336729866804 - ArtUnc_66: 0.045303057260935316 - ArtUnc_67: -0.013349390116759171 - ArtUnc_68: -0.02640805009968987 - ArtUnc_69: -0.012559102862259879 - ArtUnc_70: 0.0003946408968876557 - ArtUnc_71: 0.0015003052226944262 - ArtUnc_72: -0.0011507880480597812 - ArtUnc_73: -0.016644764783269997 - ArtUnc_74: -0.01751538637366093 - ArtUnc_75: -0.0022558265607425017 - ArtUnc_76: 0.0004613325151309625 - ArtUnc_77: -0.003493613132642539 - ArtUnc_78: 0.002690829307184598 - ArtUnc_79: 0.006560964965245627 - ArtUnc_80: -0.00094481817009344 - ArtUnc_81: -0.00044521757762512745 - ArtUnc_82: 9.185677018423849e-08 - ArtUnc_83: -0.00011809609694400983 - ArtUnc_84: 0.0005436643903216545 - ArtUnc_85: 6.64884406015711e-05 - ArtUnc_86: 0.0003553342130206749 - ArtUnc_87: -0.0010106515967770208 - ArtUnc_88: -0.00013932834585072567 - ArtUnc_89: -4.664789298302181e-05 - ArtUnc_90: 0.0005146245491329366 - ArtUnc_91: -0.00012595303709050655 - ArtUnc_92: -4.825610490853249e-05 - ArtUnc_93: -7.071954635315597e-05 - ArtUnc_94: 3.920061732910895e-06 - ArtUnc_95: -2.3758346408525107e-05 - ArtUnc_96: 1.3968545028193236e-06 + ArtUnc_1: 8.284240535459942e-05 + ArtUnc_2: -7.143652520747553e-05 + ArtUnc_3: -4.2939106416322474e-05 + ArtUnc_4: 9.189147705604213e-07 + ArtUnc_5: -1.168392477351611e-05 + ArtUnc_6: -5.437220127116407e-06 + ArtUnc_7: -3.186788680124188e-07 + ArtUnc_8: 0.0017507675790445158 + ArtUnc_9: 6.3208949947927375e-06 + ArtUnc_10: -0.0023152786563023693 + ArtUnc_11: -0.001512260185718958 + ArtUnc_12: 0.0002867266414185476 + ArtUnc_13: 0.0011707137810086823 + ArtUnc_14: 0.00037400319118526687 + ArtUnc_15: 0.0010149982650403862 + ArtUnc_16: -0.0004244565163130159 + ArtUnc_17: 0.00034015178709396565 + ArtUnc_18: -0.000192932820089954 + ArtUnc_19: 4.354511051629244e-05 + ArtUnc_20: 3.082354649563666e-05 + ArtUnc_21: 1.7465997797400437e-06 + ArtUnc_22: 1.2057399180159132e-05 + ArtUnc_23: 4.491744744461753e-06 + ArtUnc_24: 9.79744710611963e-07 + ArtUnc_25: 0.000207381057035519 + ArtUnc_26: -0.0004230761354287319 + ArtUnc_27: -0.0031937538950595834 + ArtUnc_28: 0.0002789218703015377 + ArtUnc_29: 0.0003826943616382765 + ArtUnc_30: -0.0021125763707275347 + ArtUnc_31: 4.634065252060755e-05 + ArtUnc_32: 0.0012541085350820632 + ArtUnc_33: 0.0003780885952905535 + ArtUnc_34: 0.0008401347196628806 + ArtUnc_35: 0.0014372357214196374 + ArtUnc_36: 0.0005759556505313191 + ArtUnc_37: 9.800053871621878e-05 + ArtUnc_38: -0.0001049586563108525 + ArtUnc_39: -1.4606526390462278e-05 + ArtUnc_40: -3.996192469797755e-06 + ArtUnc_41: 0.011750948973270116 + ArtUnc_42: -0.015575601828048118 + ArtUnc_43: -0.004189188127765207 + ArtUnc_44: 0.0011989486168144544 + ArtUnc_45: -0.002337986903522328 + ArtUnc_46: 0.00015453013196292003 + ArtUnc_47: -0.0005559318681489714 + ArtUnc_48: 2.7101397601735106e-05 + ArtUnc_49: -0.00020626001420911725 + ArtUnc_50: -5.820870463632121e-05 + ArtUnc_51: -1.6662171501764027e-05 + ArtUnc_52: 2.5544439689513627e-05 + ArtUnc_53: -0.00014939065649154743 + ArtUnc_54: -9.672127646801581e-05 + ArtUnc_55: -1.1098661883805367e-05 + ArtUnc_56: 1.7388712030098158e-05 + ArtUnc_57: -0.11990698671213583 + ArtUnc_58: 0.1630472526295877 + ArtUnc_59: 0.23306723240397223 + ArtUnc_60: 0.08346872670813442 + ArtUnc_61: -0.05613004221263735 + ArtUnc_62: -0.0518004490850811 + ArtUnc_63: 0.030589435370586383 + ArtUnc_64: -0.08155023196137762 + ArtUnc_65: 0.07903336729866912 + ArtUnc_66: 0.04530305726093659 + ArtUnc_67: -0.013349390116759653 + ArtUnc_68: -0.0264080500996915 + ArtUnc_69: -0.012559102862259136 + ArtUnc_70: 0.0011507880480598309 + ArtUnc_71: -0.00039464089688755454 + ArtUnc_72: 0.0015003052226943954 + ArtUnc_73: -0.01664476478326977 + ArtUnc_74: 0.017515386373661138 + ArtUnc_75: 0.0022558265607425716 + ArtUnc_76: 0.00046133251513093 + ArtUnc_77: -0.0034936131326428277 + ArtUnc_78: -0.0026908293071845365 + ArtUnc_79: 0.006560964965245572 + ArtUnc_80: 0.0009448181700934723 + ArtUnc_81: -0.00044521757762517754 + ArtUnc_82: 9.185677018507984e-08 + ArtUnc_83: -0.00011809609694401655 + ArtUnc_84: 0.0005436643903216629 + ArtUnc_85: 6.648844060157769e-05 + ArtUnc_86: 4.8256104908536475e-05 + ArtUnc_87: 7.071954635315663e-05 + ArtUnc_88: 0.00035533421302064275 + ArtUnc_89: 0.00101065159677701 + ArtUnc_90: -0.00013932834585073713 + ArtUnc_91: 2.375834640852458e-05 + ArtUnc_92: 3.920061732908886e-06 + ArtUnc_93: -4.664789298303528e-05 + ArtUnc_94: -0.0005146245491329366 + ArtUnc_95: -0.00012595303709050904 + ArtUnc_96: 1.3968545028191379e-06 - stat: 0 Uncorr: 0.00406 RCES: 0.002407669003413883 @@ -3678,102 +3678,102 @@ bins: ModelRW_2: 0.019521804014998204 JES_1: 0.010139316577560838 JES_2: 0.010139316577560838 - ArtUnc_1: -8.737694534121226e-10 - ArtUnc_2: 1.646459406432666e-09 - ArtUnc_3: 1.5950511990297585e-09 - ArtUnc_4: 1.304097411534912e-10 - ArtUnc_5: 5.508080194962333e-10 - ArtUnc_6: -3.7671139811463697e-10 - ArtUnc_7: -1.2766550800524874e-11 - ArtUnc_8: 1.831855433562771e-07 - ArtUnc_9: 7.59841523925736e-10 - ArtUnc_10: 3.172515480713826e-07 - ArtUnc_11: 2.644748786934261e-07 - ArtUnc_12: -5.4907586638807504e-08 - ArtUnc_13: -2.718473923424106e-07 - ArtUnc_14: -9.213717981734448e-08 - ArtUnc_15: -2.7243632993552247e-07 - ArtUnc_16: 1.2069090293084262e-07 - ArtUnc_17: 9.887766630746757e-08 - ArtUnc_18: -6.492169166503194e-08 - ArtUnc_19: 1.0089425734632696e-08 - ArtUnc_20: 3.782777691680796e-08 - ArtUnc_21: -2.4942538803657166e-08 - ArtUnc_22: 7.1820777657191135e-09 - ArtUnc_23: -4.737267003279405e-09 - ArtUnc_24: 2.6786010092417603e-09 - ArtUnc_25: -2.9575991000909014e-06 - ArtUnc_26: 2.4109347240861037e-06 - ArtUnc_27: 1.9589600326097696e-05 - ArtUnc_28: -2.1605117265004075e-06 - ArtUnc_29: -1.866721069813087e-06 - ArtUnc_30: -8.220576699275737e-06 - ArtUnc_31: -3.148499519731872e-07 - ArtUnc_32: 3.566962795196321e-06 - ArtUnc_33: 9.91053259509128e-07 - ArtUnc_34: -2.229321893011696e-06 - ArtUnc_35: -3.988495166844839e-06 - ArtUnc_36: 2.166989013686728e-06 - ArtUnc_37: 6.645354509139063e-07 - ArtUnc_38: 1.1370711387899895e-06 - ArtUnc_39: -6.259626810449045e-07 - ArtUnc_40: -1.139598981769818e-07 - ArtUnc_41: -0.0011137227426165602 - ArtUnc_42: 0.001141607145327685 - ArtUnc_43: 0.0008346508307615107 - ArtUnc_44: 8.6019434785856e-05 - ArtUnc_45: 0.0005798205279119712 - ArtUnc_46: 0.0004383472277824593 - ArtUnc_47: 0.00012074281722233053 - ArtUnc_48: -0.0005528749315808311 - ArtUnc_49: 0.00017207676192542085 - ArtUnc_50: 0.0004507527380131445 - ArtUnc_51: 0.00048763024663606885 - ArtUnc_52: -0.00018684558503820846 - ArtUnc_53: -0.00015388762592656805 - ArtUnc_54: -1.818698188722652e-05 - ArtUnc_55: -4.812354390019649e-05 - ArtUnc_56: 2.5089994914974807e-05 - ArtUnc_57: 0.004004969220651188 - ArtUnc_58: -0.0036072664081089937 - ArtUnc_59: -0.004505974454369955 - ArtUnc_60: -0.0013454969700595991 - ArtUnc_61: 0.000818722134420752 - ArtUnc_62: 0.00031123049440000554 - ArtUnc_63: -0.0002862908683742836 - ArtUnc_64: -0.00031524814064586633 - ArtUnc_65: -0.00036836388364806913 - ArtUnc_66: 0.0002982348981039499 - ArtUnc_67: -0.00015023875584110896 - ArtUnc_68: -0.0006147404317043047 - ArtUnc_69: -0.0005233603568171549 - ArtUnc_70: 8.244916610592315e-05 - ArtUnc_71: 0.000149859393634602 - ArtUnc_72: -0.0001969746047289603 - ArtUnc_73: 0.003804818333467311 - ArtUnc_74: 0.0007028573295871507 - ArtUnc_75: -0.0011840866023423537 - ArtUnc_76: 0.028353481601100815 - ArtUnc_77: -0.005216149143443748 - ArtUnc_78: -0.06222596545671067 - ArtUnc_79: 0.015037693794520234 - ArtUnc_80: 0.026302069053069095 - ArtUnc_81: 0.014767802765716851 - ArtUnc_82: -1.172977938891221e-06 - ArtUnc_83: -0.006403768686471259 - ArtUnc_84: -0.017996315182303758 - ArtUnc_85: 0.004758655675668418 - ArtUnc_86: -0.0433753782945244 - ArtUnc_87: 0.02937958362476692 - ArtUnc_88: 0.0073881170622491854 - ArtUnc_89: -0.030648055619916185 - ArtUnc_90: -0.013312031052442995 - ArtUnc_91: 0.0008653673756016006 - ArtUnc_92: 0.005074421813299009 - ArtUnc_93: 0.0028297512649376163 - ArtUnc_94: -0.0001033480450327636 - ArtUnc_95: 0.0007635967238544992 - ArtUnc_96: 0.001045600489105708 + ArtUnc_1: -8.737694534121229e-10 + ArtUnc_2: 1.6464594064326736e-09 + ArtUnc_3: 1.5950511990295304e-09 + ArtUnc_4: 1.3040974115525698e-10 + ArtUnc_5: 5.508080194611627e-10 + ArtUnc_6: 3.7671139816293967e-10 + ArtUnc_7: 1.2766550907783893e-11 + ArtUnc_8: -1.8318554335628124e-07 + ArtUnc_9: -7.598415241707395e-10 + ArtUnc_10: 3.172515480713788e-07 + ArtUnc_11: 2.644748786934402e-07 + ArtUnc_12: -5.490758663839249e-08 + ArtUnc_13: -2.718473923425416e-07 + ArtUnc_14: -9.213717981691248e-08 + ArtUnc_15: -2.724363299357123e-07 + ArtUnc_16: 1.2069090292989235e-07 + ArtUnc_17: -9.887766630843156e-08 + ArtUnc_18: 6.492169166509936e-08 + ArtUnc_19: -1.0089425732864725e-08 + ArtUnc_20: -3.7827776916724463e-08 + ArtUnc_21: -2.494253881503824e-08 + ArtUnc_22: 7.18207777277124e-09 + ArtUnc_23: 4.737266987816121e-09 + ArtUnc_24: -2.6786010019964452e-09 + ArtUnc_25: 2.9575991000873583e-06 + ArtUnc_26: -2.4109347240891293e-06 + ArtUnc_27: -1.958960032609601e-05 + ArtUnc_28: 2.1605117264882275e-06 + ArtUnc_29: 1.866721069826176e-06 + ArtUnc_30: -8.22057669927223e-06 + ArtUnc_31: 3.1484995192426904e-07 + ArtUnc_32: 3.566962795179308e-06 + ArtUnc_33: 9.910532595307408e-07 + ArtUnc_34: 2.229321892986007e-06 + ArtUnc_35: 3.9884951668698356e-06 + ArtUnc_36: 2.166989013651135e-06 + ArtUnc_37: 6.645354509858519e-07 + ArtUnc_38: -1.137071138773637e-06 + ArtUnc_39: -6.259626810669443e-07 + ArtUnc_40: -1.139598981579064e-07 + ArtUnc_41: -0.0011137227426165804 + ArtUnc_42: 0.001141607145327739 + ArtUnc_43: 0.0008346508307614627 + ArtUnc_44: 8.601943478581479e-05 + ArtUnc_45: 0.0005798205279119543 + ArtUnc_46: 0.0004383472277824721 + ArtUnc_47: -0.00012074281722239596 + ArtUnc_48: 0.000552874931580836 + ArtUnc_49: -0.00017207676192544896 + ArtUnc_50: -0.0004507527380131608 + ArtUnc_51: 2.508999491499608e-05 + ArtUnc_52: -4.8123543900225626e-05 + ArtUnc_53: -0.0004876302466361276 + ArtUnc_54: 0.00018684558503821334 + ArtUnc_55: 0.00015388762592659022 + ArtUnc_56: -1.8186981887229775e-05 + ArtUnc_57: -0.004004969220651377 + ArtUnc_58: 0.003607266408108926 + ArtUnc_59: 0.004505974454370048 + ArtUnc_60: 0.001345496970059587 + ArtUnc_61: -0.0008187221344207724 + ArtUnc_62: -0.0003112304944000799 + ArtUnc_63: 0.0002862908683742685 + ArtUnc_64: -0.0003152481406459922 + ArtUnc_65: 0.0003683638836481357 + ArtUnc_66: 0.0002982348981041299 + ArtUnc_67: -0.0001502387558411166 + ArtUnc_68: -0.0006147404317045237 + ArtUnc_69: -0.0005233603568172246 + ArtUnc_70: 0.00019697460472897514 + ArtUnc_71: -8.244916610588482e-05 + ArtUnc_72: 0.00014985939363457848 + ArtUnc_73: 0.0038048183334672874 + ArtUnc_74: -0.0007028573295874387 + ArtUnc_75: 0.0011840866023422926 + ArtUnc_76: 0.02835348160110081 + ArtUnc_77: -0.005216149143439307 + ArtUnc_78: 0.06222596545671097 + ArtUnc_79: 0.015037693794521264 + ArtUnc_80: -0.026302069053068946 + ArtUnc_81: 0.01476780276571734 + ArtUnc_82: -1.1729779388745412e-06 + ArtUnc_83: -0.006403768686471221 + ArtUnc_84: -0.017996315182303557 + ArtUnc_85: 0.004758655675668427 + ArtUnc_86: -0.005074421813299028 + ArtUnc_87: -0.002829751264937561 + ArtUnc_88: -0.04337537829452347 + ArtUnc_89: -0.029379583624767714 + ArtUnc_90: 0.007388117062249002 + ArtUnc_91: -0.0007635967238545224 + ArtUnc_92: -0.00010334804503274076 + ArtUnc_93: -0.030648055619916178 + ArtUnc_94: 0.01331203105244284 + ArtUnc_95: 0.0008653673756013533 + ArtUnc_96: 0.001045600489105698 - stat: 0 Uncorr: 5.36 RCES: 16.606747101103213 @@ -3789,102 +3789,102 @@ bins: ModelRW_2: 17.889235878594704 JES_1: 3.3130263627082717 JES_2: 3.3130263627082717 - ArtUnc_1: 28.53461948130384 - ArtUnc_2: -7.123863967078527 - ArtUnc_3: -2.718126555131723 - ArtUnc_4: -0.38992848761021287 - ArtUnc_5: -0.0067074637807442525 - ArtUnc_6: 0.008283999205216913 - ArtUnc_7: -0.0007567391512449102 - ArtUnc_8: 0.2785588228961477 - ArtUnc_9: 0.0015553697559489398 - ArtUnc_10: 0.6841040029689238 - ArtUnc_11: 0.27039826133315903 - ArtUnc_12: -0.025771205810183807 - ArtUnc_13: -0.2019651073492938 - ArtUnc_14: -0.06124574938371301 - ArtUnc_15: -0.13733988140609574 - ArtUnc_16: 0.055592506460016365 - ArtUnc_17: 0.03891494291030174 - ArtUnc_18: -0.022439546494829106 - ArtUnc_19: 0.004613609699705377 - ArtUnc_20: 0.005955233470981325 - ArtUnc_21: -0.000919797110477942 - ArtUnc_22: -0.001561310882612792 - ArtUnc_23: 0.0005657803910753065 - ArtUnc_24: 0.00013845948901261996 - ArtUnc_25: -0.0015884893142737797 - ArtUnc_26: -0.002799873191823955 - ArtUnc_27: -0.012058199532830136 - ArtUnc_28: -0.0010435302393417775 - ArtUnc_29: 0.0008423840084403705 - ArtUnc_30: 0.00685468575650593 - ArtUnc_31: -0.0006563809746295895 - ArtUnc_32: -0.0033977228069870455 - ArtUnc_33: -0.001355084387744165 - ArtUnc_34: 0.0018974214458764834 - ArtUnc_35: 0.0033135972302499035 - ArtUnc_36: -0.0011026071913300026 - ArtUnc_37: -0.0002112098128054945 - ArtUnc_38: -0.00016111750143405293 - ArtUnc_39: 7.780354641443638e-06 - ArtUnc_40: -1.0949039928915275e-05 - ArtUnc_41: 0.000816245137223375 - ArtUnc_42: 0.0006595543728718285 - ArtUnc_43: -0.00019201795704490361 - ArtUnc_44: -0.00029239045544503147 - ArtUnc_45: 0.00029228857947157796 - ArtUnc_46: -0.0001495058040451832 - ArtUnc_47: -0.00034465529271012645 - ArtUnc_48: 0.00011551717262219872 - ArtUnc_49: 0.0001708533090525714 - ArtUnc_50: 0.0001364469829349886 - ArtUnc_51: 0.00014030870040233282 - ArtUnc_52: -2.172973149282298e-05 - ArtUnc_53: -2.5524966768609078e-05 - ArtUnc_54: 1.1225502356581918e-05 - ArtUnc_55: -1.49055443718135e-05 - ArtUnc_56: 9.219831701846346e-06 - ArtUnc_57: 4.691504492441189e-06 - ArtUnc_58: -7.6197052616900875e-06 - ArtUnc_59: -9.825460992185917e-06 - ArtUnc_60: -3.627685529542087e-06 - ArtUnc_61: 2.392677403828972e-06 - ArtUnc_62: 2.6175445500912144e-06 - ArtUnc_63: -1.7619189417090062e-06 - ArtUnc_64: -4.092775317851887e-06 - ArtUnc_65: -4.0074756663387494e-06 - ArtUnc_66: 2.9159524324258453e-06 - ArtUnc_67: -1.0830813048007426e-06 - ArtUnc_68: -3.596523553699565e-06 - ArtUnc_69: -2.322886166859726e-06 - ArtUnc_70: 1.561334361050154e-07 - ArtUnc_71: 6.637580118038576e-08 - ArtUnc_72: -2.5743213044265465e-07 - ArtUnc_73: -6.870695206562224e-07 - ArtUnc_74: -8.574271135635655e-07 - ArtUnc_75: -1.1569485846267584e-07 - ArtUnc_76: -6.437296749786064e-08 - ArtUnc_77: -1.8370731100060585e-07 - ArtUnc_78: 2.4335993445393443e-07 - ArtUnc_79: 3.0163122457541757e-07 - ArtUnc_80: 1.0246606463765263e-07 - ArtUnc_81: 3.8856419054492235e-08 - ArtUnc_82: -3.676040090992887e-11 - ArtUnc_83: 1.978891082722876e-08 - ArtUnc_84: -3.067811729035533e-08 - ArtUnc_85: -1.2655550615767179e-08 - ArtUnc_86: 3.768689079174495e-08 - ArtUnc_87: -3.3591322456585576e-08 - ArtUnc_88: 1.590444265428146e-08 - ArtUnc_89: 1.3221074939131933e-08 - ArtUnc_90: 5.231483778556825e-09 - ArtUnc_91: -6.979669883932993e-09 - ArtUnc_92: 6.92443228530112e-09 - ArtUnc_93: 1.493979649829139e-08 - ArtUnc_94: -1.0576092301005824e-09 - ArtUnc_95: 5.957595733315587e-09 - ArtUnc_96: 1.5437534461032975e-10 + ArtUnc_1: 28.534619481303825 + ArtUnc_2: -7.123863967078508 + ArtUnc_3: -2.7181265551317226 + ArtUnc_4: -0.3899284876102117 + ArtUnc_5: -0.00670746378074466 + ArtUnc_6: -0.008283999205217387 + ArtUnc_7: 0.0007567391512459143 + ArtUnc_8: -0.27855882289615036 + ArtUnc_9: -0.0015553697559445726 + ArtUnc_10: 0.6841040029689246 + ArtUnc_11: 0.2703982613331601 + ArtUnc_12: -0.02577120581018809 + ArtUnc_13: -0.20196510734929263 + ArtUnc_14: -0.061245749383712446 + ArtUnc_15: -0.1373398814060955 + ArtUnc_16: 0.05559250646001657 + ArtUnc_17: -0.03891494291030187 + ArtUnc_18: 0.022439546494828832 + ArtUnc_19: -0.004613609699705583 + ArtUnc_20: -0.005955233470981109 + ArtUnc_21: -0.000919797110477925 + ArtUnc_22: -0.0015613108826127554 + ArtUnc_23: -0.0005657803910752896 + ArtUnc_24: -0.00013845948901258673 + ArtUnc_25: 0.0015884893142738003 + ArtUnc_26: 0.0027998731918240935 + ArtUnc_27: 0.012058199532830109 + ArtUnc_28: 0.0010435302393417168 + ArtUnc_29: -0.0008423840084407331 + ArtUnc_30: 0.006854685756505784 + ArtUnc_31: 0.0006563809746296008 + ArtUnc_32: -0.003397722806987923 + ArtUnc_33: -0.0013550843877417945 + ArtUnc_34: -0.0018974214458767377 + ArtUnc_35: -0.0033135972302497743 + ArtUnc_36: -0.0011026071913299487 + ArtUnc_37: -0.00021120981280549925 + ArtUnc_38: 0.0001611175014340478 + ArtUnc_39: 7.780354641441171e-06 + ArtUnc_40: -1.0949039928915957e-05 + ArtUnc_41: 0.0008162451372233949 + ArtUnc_42: 0.0006595543728718163 + ArtUnc_43: -0.0001920179570449045 + ArtUnc_44: -0.00029239045544503836 + ArtUnc_45: 0.00029228857947158284 + ArtUnc_46: -0.00014950580404518931 + ArtUnc_47: 0.0003446552927101274 + ArtUnc_48: -0.00011551717262218647 + ArtUnc_49: -0.00017085330905257303 + ArtUnc_50: -0.00013644698293498577 + ArtUnc_51: 9.219831701846136e-06 + ArtUnc_52: -1.4905544371813783e-05 + ArtUnc_53: -0.00014030870040233003 + ArtUnc_54: 2.172973149282271e-05 + ArtUnc_55: 2.5524966768608532e-05 + ArtUnc_56: 1.1225502356583022e-05 + ArtUnc_57: -4.691504492441422e-06 + ArtUnc_58: 7.6197052616898715e-06 + ArtUnc_59: 9.825460992185863e-06 + ArtUnc_60: 3.627685529542029e-06 + ArtUnc_61: -2.392677403828778e-06 + ArtUnc_62: -2.617544550091262e-06 + ArtUnc_63: 1.7619189417090515e-06 + ArtUnc_64: -4.0927753178519035e-06 + ArtUnc_65: 4.0074756663388155e-06 + ArtUnc_66: 2.9159524324259093e-06 + ArtUnc_67: -1.0830813048008015e-06 + ArtUnc_68: -3.5965235536997996e-06 + ArtUnc_69: -2.322886166859595e-06 + ArtUnc_70: 2.5743213044265925e-07 + ArtUnc_71: -1.5613343610499397e-07 + ArtUnc_72: 6.637580118037731e-08 + ArtUnc_73: -6.870695206562281e-07 + ArtUnc_74: 8.574271135636011e-07 + ArtUnc_75: 1.1569485846268291e-07 + ArtUnc_76: -6.437296749786422e-08 + ArtUnc_77: -1.837073110006341e-07 + ArtUnc_78: -2.4335993445393687e-07 + ArtUnc_79: 3.0163122457542233e-07 + ArtUnc_80: -1.0246606463765234e-07 + ArtUnc_81: 3.8856419054493195e-08 + ArtUnc_82: -3.6760400909888214e-11 + ArtUnc_83: 1.978891082722819e-08 + ArtUnc_84: -3.067811729035556e-08 + ArtUnc_85: -1.2655550615766943e-08 + ArtUnc_86: -6.924432285300878e-09 + ArtUnc_87: -1.4939796498290833e-08 + ArtUnc_88: 3.768689079174396e-08 + ArtUnc_89: 3.359132245658672e-08 + ArtUnc_90: 1.590444265428233e-08 + ArtUnc_91: -5.957595733315514e-09 + ArtUnc_92: -1.0576092301003206e-09 + ArtUnc_93: 1.3221074939131718e-08 + ArtUnc_94: -5.2314837785566986e-09 + ArtUnc_95: -6.979669883933357e-09 + ArtUnc_96: 1.543753446103767e-10 - stat: 0 Uncorr: 2.43 RCES: 6.880462504803002 @@ -3900,102 +3900,102 @@ bins: ModelRW_2: 0.3436538956566621 JES_1: 10.55154576495785 JES_2: 10.55154576495785 - ArtUnc_1: 2.297076133139009 - ArtUnc_2: -1.0892033898037945 - ArtUnc_3: -0.46266437928941223 - ArtUnc_4: 0.003459726676908899 - ArtUnc_5: -0.0702479988032363 - ArtUnc_6: 0.025635496777509318 - ArtUnc_7: 0.0011811538975454896 - ArtUnc_8: -5.698072050451222 - ArtUnc_9: -0.01838660928837008 - ArtUnc_10: -6.024756075070182 - ArtUnc_11: -2.9660838975572634 - ArtUnc_12: 0.5090423741530861 - ArtUnc_13: 1.8418379289105657 - ArtUnc_14: 0.51853845035762 - ArtUnc_15: 1.3053603129533569 - ArtUnc_16: -0.4807548269525335 - ArtUnc_17: -0.3546020620221221 - ArtUnc_18: 0.1900089641370534 - ArtUnc_19: -0.03448455438106442 - ArtUnc_20: -0.03347777181934266 - ArtUnc_21: 0.006677665520888274 - ArtUnc_22: 0.005573150621445732 - ArtUnc_23: -0.001614094874854339 - ArtUnc_24: -0.000568273667309047 - ArtUnc_25: 0.13949268880937934 - ArtUnc_26: 0.0735257804556413 - ArtUnc_27: 0.18086565126001672 - ArtUnc_28: 0.02126020679739065 - ArtUnc_29: -0.009972218314624906 - ArtUnc_30: -0.09065927398924303 - ArtUnc_31: 0.0006883162712904542 - ArtUnc_32: 0.04229196904251895 - ArtUnc_33: 0.016219675814081926 - ArtUnc_34: -0.02714390336879897 - ArtUnc_35: -0.043504078961787714 - ArtUnc_36: 0.01651470665811468 - ArtUnc_37: 0.0024434123447176818 - ArtUnc_38: 0.0029714037791766005 - ArtUnc_39: -0.0007310172834329654 - ArtUnc_40: -0.0002113625287745033 - ArtUnc_41: -0.00716087066432244 - ArtUnc_42: -0.00587695178165027 - ArtUnc_43: 0.0017314514208508663 - ArtUnc_44: 0.002553951127823668 - ArtUnc_45: -0.0025656232271245084 - ArtUnc_46: 0.0011881545478557916 - ArtUnc_47: 0.002804030604187064 - ArtUnc_48: -0.0008879580966486244 - ArtUnc_49: -0.0013691464108833973 - ArtUnc_50: -0.0011494198540057236 - ArtUnc_51: -0.0011819515239073419 - ArtUnc_52: 0.0002536231243983661 - ArtUnc_53: 0.00018472562965263277 - ArtUnc_54: -8.73983655878302e-05 - ArtUnc_55: 7.294074042155457e-05 - ArtUnc_56: -9.055078135816856e-05 - ArtUnc_57: -4.885657431811372e-05 - ArtUnc_58: 5.5139030312729935e-05 - ArtUnc_59: 0.00013839594374450177 - ArtUnc_60: 4.877085515415399e-05 - ArtUnc_61: -4.227075372782918e-05 - ArtUnc_62: -2.8700177521540744e-05 - ArtUnc_63: 2.380380668656732e-05 - ArtUnc_64: 5.132418586798756e-05 - ArtUnc_65: 5.261628114177773e-05 - ArtUnc_66: -3.8834498081222535e-05 - ArtUnc_67: 1.3491744321720766e-05 - ArtUnc_68: 3.742843080220253e-05 - ArtUnc_69: 2.0431367214920775e-05 - ArtUnc_70: -7.380420140614505e-07 - ArtUnc_71: -1.1211342621343872e-06 - ArtUnc_72: 6.037085275243379e-07 - ArtUnc_73: 7.3257684432416824e-06 - ArtUnc_74: 8.91679159433491e-06 - ArtUnc_75: 1.162861834698764e-06 - ArtUnc_76: 6.250625946348372e-07 - ArtUnc_77: 1.8200635034374447e-06 - ArtUnc_78: -2.5253370700758245e-06 - ArtUnc_79: -3.227347634136561e-06 - ArtUnc_80: -9.159003097231446e-07 - ArtUnc_81: -3.472046352210964e-07 - ArtUnc_82: 8.06392582351291e-10 - ArtUnc_83: -2.002810595725193e-07 - ArtUnc_84: 2.56765894718828e-07 - ArtUnc_85: 1.2916345002614962e-07 - ArtUnc_86: -4.2204082732703897e-07 - ArtUnc_87: 3.5825707537556616e-07 - ArtUnc_88: -1.3673297886086651e-07 - ArtUnc_89: -1.2730479200691235e-07 - ArtUnc_90: -5.8950569248484984e-08 - ArtUnc_91: 3.969493521176897e-08 - ArtUnc_92: -5.4068451479893034e-08 - ArtUnc_93: -1.388648088096199e-07 - ArtUnc_94: 9.722202506316362e-09 - ArtUnc_95: -5.3828040959302966e-08 - ArtUnc_96: 4.001083540114983e-09 + ArtUnc_1: 2.2970761331390066 + ArtUnc_2: -1.0892033898037916 + ArtUnc_3: -0.4626643792894114 + ArtUnc_4: 0.0034597266768986723 + ArtUnc_5: -0.07024799880322546 + ArtUnc_6: -0.025635496777499604 + ArtUnc_7: -0.0011811538975831683 + ArtUnc_8: 5.698072050451249 + ArtUnc_9: 0.01838660928832924 + ArtUnc_10: -6.02475607507018 + ArtUnc_11: -2.9660838975572674 + ArtUnc_12: 0.509042374153124 + ArtUnc_13: 1.8418379289105533 + ArtUnc_14: 0.5185384503576153 + ArtUnc_15: 1.3053603129533584 + ArtUnc_16: -0.48075482695253724 + ArtUnc_17: 0.3546020620221246 + ArtUnc_18: -0.19000896413705118 + ArtUnc_19: 0.03448455438106577 + ArtUnc_20: 0.0334777718193411 + ArtUnc_21: 0.00667766552088803 + ArtUnc_22: 0.005573150621444783 + ArtUnc_23: 0.0016140948748548712 + ArtUnc_24: 0.000568273667308521 + ArtUnc_25: -0.13949268880938007 + ArtUnc_26: -0.07352578045564359 + ArtUnc_27: -0.1808656512600164 + ArtUnc_28: -0.021260206797389925 + ArtUnc_29: 0.00997221831462979 + ArtUnc_30: -0.09065927398924134 + ArtUnc_31: -0.0006883162712905388 + ArtUnc_32: 0.04229196904252959 + ArtUnc_33: 0.01621967581405243 + ArtUnc_34: 0.027143903368802316 + ArtUnc_35: 0.04350407896178598 + ArtUnc_36: 0.016514706658114008 + ArtUnc_37: 0.0024434123447177863 + ArtUnc_38: -0.002971403779176569 + ArtUnc_39: -0.0007310172834329555 + ArtUnc_40: -0.00021136252877450334 + ArtUnc_41: -0.007160870664322624 + ArtUnc_42: -0.005876951781650189 + ArtUnc_43: 0.0017314514208508819 + ArtUnc_44: 0.002553951127823745 + ArtUnc_45: -0.0025656232271245513 + ArtUnc_46: 0.0011881545478558493 + ArtUnc_47: -0.002804030604187082 + ArtUnc_48: 0.0008879580966485295 + ArtUnc_49: 0.001369146410883418 + ArtUnc_50: 0.0011494198540057063 + ArtUnc_51: -9.055078135816814e-05 + ArtUnc_52: 7.294074042155794e-05 + ArtUnc_53: 0.001181951523907321 + ArtUnc_54: -0.00025362312439836495 + ArtUnc_55: -0.00018472562965263104 + ArtUnc_56: -8.739836558783833e-05 + ArtUnc_57: 4.885657431811609e-05 + ArtUnc_58: -5.51390303127279e-05 + ArtUnc_59: -0.00013839594374450153 + ArtUnc_60: -4.877085515415337e-05 + ArtUnc_61: 4.22707537278272e-05 + ArtUnc_62: 2.8700177521542225e-05 + ArtUnc_63: -2.3803806686567963e-05 + ArtUnc_64: 5.132418586798827e-05 + ArtUnc_65: -5.261628114177895e-05 + ArtUnc_66: -3.88344980812236e-05 + ArtUnc_67: 1.3491744321721498e-05 + ArtUnc_68: 3.7428430802205095e-05 + ArtUnc_69: 2.0431367214919684e-05 + ArtUnc_70: -6.037085275244034e-07 + ArtUnc_71: 7.380420140613976e-07 + ArtUnc_72: -1.1211342621343135e-06 + ArtUnc_73: 7.325768443241816e-06 + ArtUnc_74: -8.916791594335334e-06 + ArtUnc_75: -1.162861834698842e-06 + ArtUnc_76: 6.250625946348806e-07 + ArtUnc_77: 1.82006350343776e-06 + ArtUnc_78: 2.525337070075889e-06 + ArtUnc_79: -3.227347634136641e-06 + ArtUnc_80: 9.159003097231551e-07 + ArtUnc_81: -3.4720463522110955e-07 + ArtUnc_82: 8.063925823509818e-10 + ArtUnc_83: -2.002810595725168e-07 + ArtUnc_84: 2.5676589471883596e-07 + ArtUnc_85: 1.2916345002614888e-07 + ArtUnc_86: 5.406845147989175e-08 + ArtUnc_87: 1.3886480880961782e-07 + ArtUnc_88: -4.220408273270315e-07 + ArtUnc_89: -3.5825707537558045e-07 + ArtUnc_90: -1.3673297886087641e-07 + ArtUnc_91: 5.3828040959303416e-08 + ArtUnc_92: 9.722202506314322e-09 + ArtUnc_93: -1.2730479200691123e-07 + ArtUnc_94: 5.895056924848404e-08 + ArtUnc_95: 3.96949352117729e-08 + ArtUnc_96: 4.001083540114452e-09 - stat: 0 Uncorr: 0.6559999999999999 RCES: 0.3805224114293401 @@ -4011,102 +4011,102 @@ bins: ModelRW_2: 1.7070123383268203 JES_1: 1.7675563633446034 JES_2: 1.7675563633446034 - ArtUnc_1: -0.0009965196005386932 - ArtUnc_2: -0.0490763710144604 - ArtUnc_3: -0.047564970547462816 - ArtUnc_4: -0.013756699974386742 - ArtUnc_5: 0.0013405642217338104 - ArtUnc_6: 0.00038667537064925343 - ArtUnc_7: 0.00012760105811892577 - ArtUnc_8: -0.31731888380211215 - ArtUnc_9: -0.0011592755697405527 - ArtUnc_10: -0.4504172181733019 - ArtUnc_11: -0.21373373716518707 - ArtUnc_12: 0.07390984381923715 - ArtUnc_13: 0.15323462967136534 - ArtUnc_14: 0.016725144962615363 - ArtUnc_15: 0.061541096508847544 - ArtUnc_16: 0.0012801800918939162 - ArtUnc_17: 0.01019751389634067 - ArtUnc_18: 0.003646885619794577 - ArtUnc_19: 0.007440900959470505 - ArtUnc_20: -0.030597234662372658 - ArtUnc_21: 0.01992090985890483 - ArtUnc_22: -0.008080984027201168 - ArtUnc_23: 0.0025137026103077445 - ArtUnc_24: -0.00041309541960145876 - ArtUnc_25: 0.7665401298664348 - ArtUnc_26: -0.20904621147771893 - ArtUnc_27: -2.472266072161976 - ArtUnc_28: 0.2963104198978536 - ArtUnc_29: 0.2289045278005049 - ArtUnc_30: 1.0542185366477328 - ArtUnc_31: 0.028303682128789087 - ArtUnc_32: -0.4932083605436826 - ArtUnc_33: -0.13788572623234713 - ArtUnc_34: 0.2784114116994266 - ArtUnc_35: 0.47389759816721194 - ArtUnc_36: -0.17395524785263045 - ArtUnc_37: -0.029441826176746566 - ArtUnc_38: -0.02962185468097465 - ArtUnc_39: 0.003793759664381692 - ArtUnc_40: 0.000617116973854914 - ArtUnc_41: 0.07130678915444245 - ArtUnc_42: 0.09783409895431039 - ArtUnc_43: -0.00251864351554638 - ArtUnc_44: -0.02557340624368057 - ArtUnc_45: 0.03679531486118423 - ArtUnc_46: -0.0032245074874930045 - ArtUnc_47: -0.022428942333149526 - ArtUnc_48: -0.002745702202360223 - ArtUnc_49: 0.013380306228957502 - ArtUnc_50: 0.016804630618115865 - ArtUnc_51: 0.016114514223098075 - ArtUnc_52: -0.00524029381954212 - ArtUnc_53: -0.0029677086312849287 - ArtUnc_54: 0.0001902632252158602 - ArtUnc_55: -0.0005791249759598457 - ArtUnc_56: 0.0006300547084760401 - ArtUnc_57: -0.0002804429750602387 - ArtUnc_58: 0.0018944439314549104 - ArtUnc_59: -0.0013271820680700972 - ArtUnc_60: -0.00035204867711393723 - ArtUnc_61: 0.0014031938044521042 - ArtUnc_62: -0.0002882139019710647 - ArtUnc_63: -0.0005940507007868716 - ArtUnc_64: -8.61814497537013e-05 - ArtUnc_65: -0.00027621386915058997 - ArtUnc_66: 0.0008705951659873406 - ArtUnc_67: -0.0002900155986531735 - ArtUnc_68: -0.0010883729771620856 - ArtUnc_69: -0.0005855436480219128 - ArtUnc_70: 0.00010782019438672839 - ArtUnc_71: 7.085871654984603e-05 - ArtUnc_72: -3.89122163738746e-05 - ArtUnc_73: -9.267549343752526e-06 - ArtUnc_74: -1.0338450946925255e-05 - ArtUnc_75: -2.5984669077541534e-06 - ArtUnc_76: -3.7953189242007785e-06 - ArtUnc_77: -6.080111235028886e-06 - ArtUnc_78: 1.1459432837723044e-05 - ArtUnc_79: 1.3531736033283021e-05 - ArtUnc_80: -4.785256084645539e-06 - ArtUnc_81: -1.4476474117621292e-06 - ArtUnc_82: 8.717567938833966e-09 - ArtUnc_83: 2.1625432339053885e-06 - ArtUnc_84: 1.4245958021684796e-06 - ArtUnc_85: -1.5918227317217163e-06 - ArtUnc_86: 1.70581822952215e-06 - ArtUnc_87: -1.638206806189619e-06 - ArtUnc_88: -2.8779633835817855e-07 - ArtUnc_89: -5.728647448866196e-08 - ArtUnc_90: 7.621759654344365e-07 - ArtUnc_91: 4.1672703857240277e-08 - ArtUnc_92: -2.0337474318313564e-06 - ArtUnc_93: -1.5086338157836613e-06 - ArtUnc_94: 6.715287876038684e-08 - ArtUnc_95: -4.343963169364552e-07 - ArtUnc_96: -2.8880854045614826e-07 + ArtUnc_1: -0.0009965196005386923 + ArtUnc_2: -0.04907637101446047 + ArtUnc_3: -0.04756497054746269 + ArtUnc_4: -0.013756699974385526 + ArtUnc_5: 0.0013405642217313753 + ArtUnc_6: -0.0003866753706473783 + ArtUnc_7: -0.00012760105812504135 + ArtUnc_8: 0.3173188838021138 + ArtUnc_9: 0.0011592755697388047 + ArtUnc_10: -0.45041721817330066 + ArtUnc_11: -0.2137337371651879 + ArtUnc_12: 0.07390984381923797 + ArtUnc_13: 0.15323462967136156 + ArtUnc_14: 0.016725144962614295 + ArtUnc_15: 0.06154109650884441 + ArtUnc_16: 0.0012801800918984287 + ArtUnc_17: -0.010197513896344924 + ArtUnc_18: -0.0036468856197927895 + ArtUnc_19: -0.007440900959471428 + ArtUnc_20: 0.030597234662372387 + ArtUnc_21: 0.01992090985890962 + ArtUnc_22: -0.008080984027201216 + ArtUnc_23: -0.002513702610298424 + ArtUnc_24: 0.0004130954196040905 + ArtUnc_25: -0.7665401298664287 + ArtUnc_26: 0.20904621147775262 + ArtUnc_27: 2.4722660721619834 + ArtUnc_28: -0.2963104198978628 + ArtUnc_29: -0.22890452780055967 + ArtUnc_30: 1.0542185366477073 + ArtUnc_31: -0.028303682128787668 + ArtUnc_32: -0.49320836054377415 + ArtUnc_33: -0.1378857262320036 + ArtUnc_34: -0.27841141169946304 + ArtUnc_35: -0.4738975981671955 + ArtUnc_36: -0.17395524785262387 + ArtUnc_37: -0.02944182617674767 + ArtUnc_38: 0.029621854680974245 + ArtUnc_39: 0.0037937596643816225 + ArtUnc_40: 0.0006171169738548413 + ArtUnc_41: 0.07130678915444527 + ArtUnc_42: 0.09783409895430999 + ArtUnc_43: -0.0025186435155468063 + ArtUnc_44: -0.025573406243681544 + ArtUnc_45: 0.03679531486118474 + ArtUnc_46: -0.003224507487493442 + ArtUnc_47: 0.022428942333149793 + ArtUnc_48: 0.0027457022023610472 + ArtUnc_49: -0.013380306228957847 + ArtUnc_50: -0.01680463061811569 + ArtUnc_51: 0.0006300547084760256 + ArtUnc_52: -0.0005791249759598666 + ArtUnc_53: -0.016114514223097707 + ArtUnc_54: 0.005240293819542083 + ArtUnc_55: 0.002967708631284937 + ArtUnc_56: 0.00019026322521595404 + ArtUnc_57: 0.0002804429750602793 + ArtUnc_58: -0.001894443931454924 + ArtUnc_59: 0.0013271820680700766 + ArtUnc_60: 0.00035204867711393067 + ArtUnc_61: -0.0014031938044521107 + ArtUnc_62: 0.000288213901971008 + ArtUnc_63: 0.0005940507007868716 + ArtUnc_64: -8.618144975369645e-05 + ArtUnc_65: 0.0002762138691505921 + ArtUnc_66: 0.0008705951659873383 + ArtUnc_67: -0.0002900155986531886 + ArtUnc_68: -0.001088372977162145 + ArtUnc_69: -0.0005855436480218688 + ArtUnc_70: 3.891221637388164e-05 + ArtUnc_71: -0.00010782019438672507 + ArtUnc_72: 7.085871654984114e-05 + ArtUnc_73: -9.26754934375886e-06 + ArtUnc_74: 1.0338450946933556e-05 + ArtUnc_75: 2.5984669077553655e-06 + ArtUnc_76: -3.7953189242014587e-06 + ArtUnc_77: -6.080111235031745e-06 + ArtUnc_78: -1.145943283772544e-05 + ArtUnc_79: 1.3531736033285865e-05 + ArtUnc_80: 4.785256084644365e-06 + ArtUnc_81: -1.4476474117618153e-06 + ArtUnc_82: 8.717567938832361e-09 + ArtUnc_83: 2.1625432339056964e-06 + ArtUnc_84: 1.4245958021681639e-06 + ArtUnc_85: -1.5918227317219126e-06 + ArtUnc_86: 2.033747431831262e-06 + ArtUnc_87: 1.5086338157833956e-06 + ArtUnc_88: 1.705818229522455e-06 + ArtUnc_89: 1.6382068061899532e-06 + ArtUnc_90: -2.8779633835803196e-07 + ArtUnc_91: 4.3439631693636184e-07 + ArtUnc_92: 6.715287876035183e-08 + ArtUnc_93: -5.728647448855988e-08 + ArtUnc_94: -7.621759654344934e-07 + ArtUnc_95: 4.1672703857164295e-08 + ArtUnc_96: -2.8880854045615154e-07 - stat: 0 Uncorr: 0.129 RCES: 0.07946598942314882 @@ -4122,102 +4122,102 @@ bins: ModelRW_2: 0.4898340805313571 JES_1: 0.3480643160933048 JES_2: 0.3480643160933048 - ArtUnc_1: 0.00048222324563112324 - ArtUnc_2: -0.00045481936606475335 - ArtUnc_3: -0.00028651499613534676 - ArtUnc_4: -5.045932370837303e-06 - ArtUnc_5: -6.963204243240137e-05 - ArtUnc_6: 3.525407986547766e-05 - ArtUnc_7: 7.335364810789872e-07 - ArtUnc_8: -0.011353917117131667 - ArtUnc_9: -4.218063182215126e-05 - ArtUnc_10: -0.015707934389066276 - ArtUnc_11: -0.009803885316949507 - ArtUnc_12: 0.002153699370555611 - ArtUnc_13: 0.00753284433765608 - ArtUnc_14: 0.0021950944042568345 - ArtUnc_15: 0.006046097250410136 - ArtUnc_16: -0.002311692799103495 - ArtUnc_17: -0.0017171120266755752 - ArtUnc_18: 0.0010288977453567977 - ArtUnc_19: -0.00011311504002507693 - ArtUnc_20: -0.0005321726757169514 - ArtUnc_21: 0.00031996106432857584 - ArtUnc_22: -9.23556488693514e-05 - ArtUnc_23: 4.181140486327824e-05 - ArtUnc_24: -1.9034702199728612e-05 - ArtUnc_25: 0.020487758169370637 - ArtUnc_26: -0.011574866257633072 - ArtUnc_27: -0.08912912698772604 - ArtUnc_28: 0.008665626267010507 - ArtUnc_29: 0.006635338253214907 - ArtUnc_30: 0.02794587681218538 - ArtUnc_31: 0.000977229749718423 - ArtUnc_32: -0.010216142199214729 - ArtUnc_33: -0.002845330035775146 - ArtUnc_34: 0.005570333273643814 - ArtUnc_35: 0.009662654568295312 - ArtUnc_36: -0.004528737722650618 - ArtUnc_37: -0.0012038460339397936 - ArtUnc_38: -0.0018731277432523967 - ArtUnc_39: 0.0008503564209477177 - ArtUnc_40: 0.000138445622024803 - ArtUnc_41: 0.663849568643789 - ArtUnc_42: -0.5706914172499961 - ArtUnc_43: -0.3775614838740124 - ArtUnc_44: -0.03501730818426179 - ArtUnc_45: -0.22079268371283478 - ArtUnc_46: -0.15556486625569363 - ArtUnc_47: -0.03878286742300643 - ArtUnc_48: 0.1792366648952618 - ArtUnc_49: -0.054283781528397274 - ArtUnc_50: -0.13242443389466826 - ArtUnc_51: -0.13148541911448722 - ArtUnc_52: 0.048082372908605085 - ArtUnc_53: 0.03475140647080293 - ArtUnc_54: 0.0036341293741232877 - ArtUnc_55: 0.007711552695186414 - ArtUnc_56: -0.003416335306032307 - ArtUnc_57: 0.008015429032454417 - ArtUnc_58: -0.04296678302902025 - ArtUnc_59: 0.021593356391990164 - ArtUnc_60: 0.005088828565798807 - ArtUnc_61: -0.024094100946152837 - ArtUnc_62: 0.006406534115998357 - ArtUnc_63: 0.009260583805346435 - ArtUnc_64: -0.0007324592001936841 - ArtUnc_65: 0.0023102409510445264 - ArtUnc_66: -0.011795995784537588 - ArtUnc_67: 0.0037988107609475724 - ArtUnc_68: 0.014005992450294541 - ArtUnc_69: 0.007273315267392656 - ArtUnc_70: -0.001466337672531976 - ArtUnc_71: -0.0009929230225180076 - ArtUnc_72: 0.00042293942566536656 - ArtUnc_73: 0.00011844704664032813 - ArtUnc_74: 0.00023022953652045142 - ArtUnc_75: 5.280533255610051e-05 - ArtUnc_76: 5.8320312563029384e-05 - ArtUnc_77: 0.00013664656253661587 - ArtUnc_78: -0.0002258553331687576 - ArtUnc_79: -0.0003222283740100807 - ArtUnc_80: 8.560658591627343e-05 - ArtUnc_81: 2.7635731751350576e-05 - ArtUnc_82: -1.4471079941618696e-07 - ArtUnc_83: -4.849242745558435e-05 - ArtUnc_84: -2.73851982751988e-05 - ArtUnc_85: 3.691156820800472e-05 - ArtUnc_86: -3.2808291692025e-05 - ArtUnc_87: 5.063474698032525e-05 - ArtUnc_88: 5.9404921856279335e-06 - ArtUnc_89: 1.3945197108891403e-05 - ArtUnc_90: -1.976061848848475e-05 - ArtUnc_91: 5.4158037246835686e-06 - ArtUnc_92: 4.5856356459877216e-05 - ArtUnc_93: 3.282889882737818e-05 - ArtUnc_94: -1.5861418317529727e-06 - ArtUnc_95: 9.969375328917745e-06 - ArtUnc_96: 8.099606377265982e-06 + ArtUnc_1: 0.00048222324563112264 + ArtUnc_2: -0.0004548193660647549 + ArtUnc_3: -0.000286514996135342 + ArtUnc_4: -5.045932370756765e-06 + ArtUnc_5: -6.963204243240928e-05 + ArtUnc_6: -3.525407986559304e-05 + ArtUnc_7: -7.335364812501672e-07 + ArtUnc_8: 0.011353917117131688 + ArtUnc_9: 4.218063182166823e-05 + ArtUnc_10: -0.015707934389066265 + ArtUnc_11: -0.009803885316949498 + ArtUnc_12: 0.0021536993705559898 + ArtUnc_13: 0.007532844337655942 + ArtUnc_14: 0.0021950944042568683 + ArtUnc_15: 0.006046097250410134 + ArtUnc_16: -0.0023116927991033214 + ArtUnc_17: 0.0017171120266754247 + ArtUnc_18: -0.0010288977453566045 + ArtUnc_19: 0.00011311504002460291 + ArtUnc_20: 0.0005321726757171317 + ArtUnc_21: 0.00031996106432853085 + ArtUnc_22: -9.235564886922412e-05 + ArtUnc_23: -4.181140486276274e-05 + ArtUnc_24: 1.90347021989865e-05 + ArtUnc_25: -0.020487758169369312 + ArtUnc_26: 0.011574866257633931 + ArtUnc_27: 0.08912912698772603 + ArtUnc_28: -0.008665626267010482 + ArtUnc_29: -0.006635338253216263 + ArtUnc_30: 0.027945876812184477 + ArtUnc_31: -0.0009772297497179653 + ArtUnc_32: -0.010216142199216087 + ArtUnc_33: -0.002845330035767449 + ArtUnc_34: -0.005570333273645624 + ArtUnc_35: -0.009662654568296104 + ArtUnc_36: -0.004528737722651677 + ArtUnc_37: -0.0012038460339396265 + ArtUnc_38: 0.0018731277432525726 + ArtUnc_39: 0.0008503564209471586 + ArtUnc_40: 0.00013844562202529199 + ArtUnc_41: 0.6638495686437801 + ArtUnc_42: -0.5706914172500034 + ArtUnc_43: -0.37756148387400784 + ArtUnc_44: -0.03501730818425852 + ArtUnc_45: -0.22079268371283536 + ArtUnc_46: -0.1555648662556946 + ArtUnc_47: 0.03878286742300583 + ArtUnc_48: -0.17923666489526285 + ArtUnc_49: 0.05428378152839977 + ArtUnc_50: 0.1324244338946672 + ArtUnc_51: -0.003416335306031974 + ArtUnc_52: 0.007711552695186313 + ArtUnc_53: 0.13148541911448347 + ArtUnc_54: -0.04808237290860438 + ArtUnc_55: -0.03475140647080258 + ArtUnc_56: 0.003634129374122391 + ArtUnc_57: -0.008015429032455383 + ArtUnc_58: 0.042966783029020544 + ArtUnc_59: -0.021593356391989723 + ArtUnc_60: -0.005088828565798671 + ArtUnc_61: 0.024094100946153038 + ArtUnc_62: -0.006406534115997293 + ArtUnc_63: -0.009260583805346423 + ArtUnc_64: -0.0007324592001938286 + ArtUnc_65: -0.0023102409510445 + ArtUnc_66: -0.011795995784537529 + ArtUnc_67: 0.003798810760947751 + ArtUnc_68: 0.014005992450295192 + ArtUnc_69: 0.0072733152673920285 + ArtUnc_70: -0.0004229394256654641 + ArtUnc_71: 0.0014663376725319356 + ArtUnc_72: -0.0009929230225179458 + ArtUnc_73: 0.00011844704664039685 + ArtUnc_74: -0.00023022953652054892 + ArtUnc_75: -5.280533255611597e-05 + ArtUnc_76: 5.8320312563038125e-05 + ArtUnc_77: 0.00013664656253665832 + ArtUnc_78: 0.00022585533316878535 + ArtUnc_79: -0.0003222283740101118 + ArtUnc_80: -8.560658591625873e-05 + ArtUnc_81: 2.7635731751347974e-05 + ArtUnc_82: -1.4471079941616133e-07 + ArtUnc_83: -4.8492427455588045e-05 + ArtUnc_84: -2.7385198275194944e-05 + ArtUnc_85: 3.691156820800699e-05 + ArtUnc_86: -4.585635645987649e-05 + ArtUnc_87: -3.282889882737541e-05 + ArtUnc_88: -3.2808291692027684e-05 + ArtUnc_89: -5.063474698032896e-05 + ArtUnc_90: 5.940492185626315e-06 + ArtUnc_91: -9.96937532891693e-06 + ArtUnc_92: -1.5861418317524066e-06 + ArtUnc_93: 1.394519710889056e-05 + ArtUnc_94: 1.976061848848542e-05 + ArtUnc_95: 5.415803724684479e-06 + ArtUnc_96: 8.099606377266068e-06 - stat: 0 Uncorr: 0.015500000000000002 RCES: 0.01468067671294481 @@ -4233,102 +4233,102 @@ bins: ModelRW_2: 0.021262700910279486 JES_1: 0.08213309083052335 JES_2: 0.08213309083052335 - ArtUnc_1: 8.284240535459945e-05 - ArtUnc_2: -7.143652520747548e-05 - ArtUnc_3: -4.293910641632099e-05 - ArtUnc_4: 9.189147705404e-07 - ArtUnc_5: -1.1683924773492631e-05 - ArtUnc_6: 5.437220127168312e-06 - ArtUnc_7: 3.1867886787515996e-07 - ArtUnc_8: -0.001750767579044543 - ArtUnc_9: -6.320894995004844e-06 - ArtUnc_10: -0.0023152786563023536 - ArtUnc_11: -0.0015122601857190162 - ArtUnc_12: 0.00028672664141823575 - ArtUnc_13: 0.001170713781008741 - ArtUnc_14: 0.00037400319118559457 - ArtUnc_15: 0.0010149982650400344 - ArtUnc_16: -0.0004244565163136573 - ArtUnc_17: -0.00034015178709350026 - ArtUnc_18: 0.00019293282009014468 - ArtUnc_19: -4.3545110517268796e-05 - ArtUnc_20: -3.082354649522926e-05 - ArtUnc_21: 1.7465997791860596e-06 - ArtUnc_22: 1.2057399180629462e-05 - ArtUnc_23: -4.49174474318245e-06 - ArtUnc_24: -9.79744710511551e-07 - ArtUnc_25: -0.00020738105703601545 - ArtUnc_26: 0.000423076135428493 - ArtUnc_27: 0.003193753895059643 - ArtUnc_28: -0.0002789218703016149 - ArtUnc_29: -0.0003826943616379029 - ArtUnc_30: -0.002112576370727655 - ArtUnc_31: -4.6340652522069066e-05 - ArtUnc_32: 0.0012541085350817492 - ArtUnc_33: 0.00037808859529180923 - ArtUnc_34: -0.0008401347196621201 - ArtUnc_35: -0.001437235721419083 - ArtUnc_36: 0.0005759556505316176 - ArtUnc_37: 9.800053871529871e-05 - ArtUnc_38: 0.00010495865631075194 - ArtUnc_39: -1.4606526389308009e-05 - ArtUnc_40: -3.996192470531904e-06 - ArtUnc_41: 0.011750948973267745 - ArtUnc_42: -0.015575601828046928 - ArtUnc_43: -0.0041891881277658785 - ArtUnc_44: 0.0011989486168135766 - ArtUnc_45: -0.0023379869035208283 - ArtUnc_46: 0.0001545301319618089 - ArtUnc_47: 0.000555931868146022 - ArtUnc_48: -2.71013976006483e-05 - ArtUnc_49: 0.00020626001420983263 - ArtUnc_50: 5.820870463682508e-05 - ArtUnc_51: 0.00014939065649090851 - ArtUnc_52: 9.672127646830308e-05 - ArtUnc_53: 1.109866188438674e-05 - ArtUnc_54: 1.7388712029753375e-05 - ArtUnc_55: 2.554443969099818e-05 - ArtUnc_56: -1.6662171502083667e-05 - ArtUnc_57: 0.11990698671213056 - ArtUnc_58: -0.16304725262959285 - ArtUnc_59: -0.2330672324039735 - ArtUnc_60: -0.08346872670813604 - ArtUnc_61: 0.0561300422126411 - ArtUnc_62: 0.05180044908507952 - ArtUnc_63: -0.03058943537058552 - ArtUnc_64: -0.08155023196137727 - ArtUnc_65: -0.07903336729866804 - ArtUnc_66: 0.045303057260935316 - ArtUnc_67: -0.013349390116759171 - ArtUnc_68: -0.02640805009968987 - ArtUnc_69: -0.012559102862259879 - ArtUnc_70: 0.0003946408968876557 - ArtUnc_71: 0.0015003052226944262 - ArtUnc_72: -0.0011507880480597812 - ArtUnc_73: -0.016644764783269997 - ArtUnc_74: -0.01751538637366093 - ArtUnc_75: -0.0022558265607425017 - ArtUnc_76: 0.0004613325151309625 - ArtUnc_77: -0.003493613132642539 - ArtUnc_78: 0.002690829307184598 - ArtUnc_79: 0.006560964965245627 - ArtUnc_80: -0.00094481817009344 - ArtUnc_81: -0.00044521757762512745 - ArtUnc_82: 9.185677018423849e-08 - ArtUnc_83: -0.00011809609694400983 - ArtUnc_84: 0.0005436643903216545 - ArtUnc_85: 6.64884406015711e-05 - ArtUnc_86: 0.0003553342130206749 - ArtUnc_87: -0.0010106515967770208 - ArtUnc_88: -0.00013932834585072567 - ArtUnc_89: -4.664789298302181e-05 - ArtUnc_90: 0.0005146245491329366 - ArtUnc_91: -0.00012595303709050655 - ArtUnc_92: -4.825610490853249e-05 - ArtUnc_93: -7.071954635315597e-05 - ArtUnc_94: 3.920061732910895e-06 - ArtUnc_95: -2.3758346408525107e-05 - ArtUnc_96: 1.3968545028193236e-06 + ArtUnc_1: 8.284240535459942e-05 + ArtUnc_2: -7.143652520747553e-05 + ArtUnc_3: -4.2939106416322474e-05 + ArtUnc_4: 9.189147705604213e-07 + ArtUnc_5: -1.168392477351611e-05 + ArtUnc_6: -5.437220127116407e-06 + ArtUnc_7: -3.186788680124188e-07 + ArtUnc_8: 0.0017507675790445158 + ArtUnc_9: 6.3208949947927375e-06 + ArtUnc_10: -0.0023152786563023693 + ArtUnc_11: -0.001512260185718958 + ArtUnc_12: 0.0002867266414185476 + ArtUnc_13: 0.0011707137810086823 + ArtUnc_14: 0.00037400319118526687 + ArtUnc_15: 0.0010149982650403862 + ArtUnc_16: -0.0004244565163130159 + ArtUnc_17: 0.00034015178709396565 + ArtUnc_18: -0.000192932820089954 + ArtUnc_19: 4.354511051629244e-05 + ArtUnc_20: 3.082354649563666e-05 + ArtUnc_21: 1.7465997797400437e-06 + ArtUnc_22: 1.2057399180159132e-05 + ArtUnc_23: 4.491744744461753e-06 + ArtUnc_24: 9.79744710611963e-07 + ArtUnc_25: 0.000207381057035519 + ArtUnc_26: -0.0004230761354287319 + ArtUnc_27: -0.0031937538950595834 + ArtUnc_28: 0.0002789218703015377 + ArtUnc_29: 0.0003826943616382765 + ArtUnc_30: -0.0021125763707275347 + ArtUnc_31: 4.634065252060755e-05 + ArtUnc_32: 0.0012541085350820632 + ArtUnc_33: 0.0003780885952905535 + ArtUnc_34: 0.0008401347196628806 + ArtUnc_35: 0.0014372357214196374 + ArtUnc_36: 0.0005759556505313191 + ArtUnc_37: 9.800053871621878e-05 + ArtUnc_38: -0.0001049586563108525 + ArtUnc_39: -1.4606526390462278e-05 + ArtUnc_40: -3.996192469797755e-06 + ArtUnc_41: 0.011750948973270116 + ArtUnc_42: -0.015575601828048118 + ArtUnc_43: -0.004189188127765207 + ArtUnc_44: 0.0011989486168144544 + ArtUnc_45: -0.002337986903522328 + ArtUnc_46: 0.00015453013196292003 + ArtUnc_47: -0.0005559318681489714 + ArtUnc_48: 2.7101397601735106e-05 + ArtUnc_49: -0.00020626001420911725 + ArtUnc_50: -5.820870463632121e-05 + ArtUnc_51: -1.6662171501764027e-05 + ArtUnc_52: 2.5544439689513627e-05 + ArtUnc_53: -0.00014939065649154743 + ArtUnc_54: -9.672127646801581e-05 + ArtUnc_55: -1.1098661883805367e-05 + ArtUnc_56: 1.7388712030098158e-05 + ArtUnc_57: -0.11990698671213583 + ArtUnc_58: 0.1630472526295877 + ArtUnc_59: 0.23306723240397223 + ArtUnc_60: 0.08346872670813442 + ArtUnc_61: -0.05613004221263735 + ArtUnc_62: -0.0518004490850811 + ArtUnc_63: 0.030589435370586383 + ArtUnc_64: -0.08155023196137762 + ArtUnc_65: 0.07903336729866912 + ArtUnc_66: 0.04530305726093659 + ArtUnc_67: -0.013349390116759653 + ArtUnc_68: -0.0264080500996915 + ArtUnc_69: -0.012559102862259136 + ArtUnc_70: 0.0011507880480598309 + ArtUnc_71: -0.00039464089688755454 + ArtUnc_72: 0.0015003052226943954 + ArtUnc_73: -0.01664476478326977 + ArtUnc_74: 0.017515386373661138 + ArtUnc_75: 0.0022558265607425716 + ArtUnc_76: 0.00046133251513093 + ArtUnc_77: -0.0034936131326428277 + ArtUnc_78: -0.0026908293071845365 + ArtUnc_79: 0.006560964965245572 + ArtUnc_80: 0.0009448181700934723 + ArtUnc_81: -0.00044521757762517754 + ArtUnc_82: 9.185677018507984e-08 + ArtUnc_83: -0.00011809609694401655 + ArtUnc_84: 0.0005436643903216629 + ArtUnc_85: 6.648844060157769e-05 + ArtUnc_86: 4.8256104908536475e-05 + ArtUnc_87: 7.071954635315663e-05 + ArtUnc_88: 0.00035533421302064275 + ArtUnc_89: 0.00101065159677701 + ArtUnc_90: -0.00013932834585073713 + ArtUnc_91: 2.375834640852458e-05 + ArtUnc_92: 3.920061732908886e-06 + ArtUnc_93: -4.664789298303528e-05 + ArtUnc_94: -0.0005146245491329366 + ArtUnc_95: -0.00012595303709050904 + ArtUnc_96: 1.3968545028191379e-06 - stat: 0 Uncorr: 0.00232 RCES: 0.013835308863917711 @@ -4344,102 +4344,102 @@ bins: ModelRW_2: 0.06732561653575851 JES_1: 0.009568164914966716 JES_2: 0.009568164914966716 - ArtUnc_1: -8.737694534121226e-10 - ArtUnc_2: 1.646459406432666e-09 - ArtUnc_3: 1.5950511990297585e-09 - ArtUnc_4: 1.304097411534912e-10 - ArtUnc_5: 5.508080194962333e-10 - ArtUnc_6: -3.7671139811463697e-10 - ArtUnc_7: -1.2766550800524874e-11 - ArtUnc_8: 1.831855433562771e-07 - ArtUnc_9: 7.59841523925736e-10 - ArtUnc_10: 3.172515480713826e-07 - ArtUnc_11: 2.644748786934261e-07 - ArtUnc_12: -5.4907586638807504e-08 - ArtUnc_13: -2.718473923424106e-07 - ArtUnc_14: -9.213717981734448e-08 - ArtUnc_15: -2.7243632993552247e-07 - ArtUnc_16: 1.2069090293084262e-07 - ArtUnc_17: 9.887766630746757e-08 - ArtUnc_18: -6.492169166503194e-08 - ArtUnc_19: 1.0089425734632696e-08 - ArtUnc_20: 3.782777691680796e-08 - ArtUnc_21: -2.4942538803657166e-08 - ArtUnc_22: 7.1820777657191135e-09 - ArtUnc_23: -4.737267003279405e-09 - ArtUnc_24: 2.6786010092417603e-09 - ArtUnc_25: -2.9575991000909014e-06 - ArtUnc_26: 2.4109347240861037e-06 - ArtUnc_27: 1.9589600326097696e-05 - ArtUnc_28: -2.1605117265004075e-06 - ArtUnc_29: -1.866721069813087e-06 - ArtUnc_30: -8.220576699275737e-06 - ArtUnc_31: -3.148499519731872e-07 - ArtUnc_32: 3.566962795196321e-06 - ArtUnc_33: 9.91053259509128e-07 - ArtUnc_34: -2.229321893011696e-06 - ArtUnc_35: -3.988495166844839e-06 - ArtUnc_36: 2.166989013686728e-06 - ArtUnc_37: 6.645354509139063e-07 - ArtUnc_38: 1.1370711387899895e-06 - ArtUnc_39: -6.259626810449045e-07 - ArtUnc_40: -1.139598981769818e-07 - ArtUnc_41: -0.0011137227426165602 - ArtUnc_42: 0.001141607145327685 - ArtUnc_43: 0.0008346508307615107 - ArtUnc_44: 8.6019434785856e-05 - ArtUnc_45: 0.0005798205279119712 - ArtUnc_46: 0.0004383472277824593 - ArtUnc_47: 0.00012074281722233053 - ArtUnc_48: -0.0005528749315808311 - ArtUnc_49: 0.00017207676192542085 - ArtUnc_50: 0.0004507527380131445 - ArtUnc_51: 0.00048763024663606885 - ArtUnc_52: -0.00018684558503820846 - ArtUnc_53: -0.00015388762592656805 - ArtUnc_54: -1.818698188722652e-05 - ArtUnc_55: -4.812354390019649e-05 - ArtUnc_56: 2.5089994914974807e-05 - ArtUnc_57: 0.004004969220651188 - ArtUnc_58: -0.0036072664081089937 - ArtUnc_59: -0.004505974454369955 - ArtUnc_60: -0.0013454969700595991 - ArtUnc_61: 0.000818722134420752 - ArtUnc_62: 0.00031123049440000554 - ArtUnc_63: -0.0002862908683742836 - ArtUnc_64: -0.00031524814064586633 - ArtUnc_65: -0.00036836388364806913 - ArtUnc_66: 0.0002982348981039499 - ArtUnc_67: -0.00015023875584110896 - ArtUnc_68: -0.0006147404317043047 - ArtUnc_69: -0.0005233603568171549 - ArtUnc_70: 8.244916610592315e-05 - ArtUnc_71: 0.000149859393634602 - ArtUnc_72: -0.0001969746047289603 - ArtUnc_73: 0.003804818333467311 - ArtUnc_74: 0.0007028573295871507 - ArtUnc_75: -0.0011840866023423537 - ArtUnc_76: 0.028353481601100815 - ArtUnc_77: -0.005216149143443748 - ArtUnc_78: -0.06222596545671067 - ArtUnc_79: 0.015037693794520234 - ArtUnc_80: 0.026302069053069095 - ArtUnc_81: 0.014767802765716851 - ArtUnc_82: -1.172977938891221e-06 - ArtUnc_83: -0.006403768686471259 - ArtUnc_84: -0.017996315182303758 - ArtUnc_85: 0.004758655675668418 - ArtUnc_86: -0.0433753782945244 - ArtUnc_87: 0.02937958362476692 - ArtUnc_88: 0.0073881170622491854 - ArtUnc_89: -0.030648055619916185 - ArtUnc_90: -0.013312031052442995 - ArtUnc_91: 0.0008653673756016006 - ArtUnc_92: 0.005074421813299009 - ArtUnc_93: 0.0028297512649376163 - ArtUnc_94: -0.0001033480450327636 - ArtUnc_95: 0.0007635967238544992 - ArtUnc_96: 0.001045600489105708 + ArtUnc_1: -8.737694534121229e-10 + ArtUnc_2: 1.6464594064326736e-09 + ArtUnc_3: 1.5950511990295304e-09 + ArtUnc_4: 1.3040974115525698e-10 + ArtUnc_5: 5.508080194611627e-10 + ArtUnc_6: 3.7671139816293967e-10 + ArtUnc_7: 1.2766550907783893e-11 + ArtUnc_8: -1.8318554335628124e-07 + ArtUnc_9: -7.598415241707395e-10 + ArtUnc_10: 3.172515480713788e-07 + ArtUnc_11: 2.644748786934402e-07 + ArtUnc_12: -5.490758663839249e-08 + ArtUnc_13: -2.718473923425416e-07 + ArtUnc_14: -9.213717981691248e-08 + ArtUnc_15: -2.724363299357123e-07 + ArtUnc_16: 1.2069090292989235e-07 + ArtUnc_17: -9.887766630843156e-08 + ArtUnc_18: 6.492169166509936e-08 + ArtUnc_19: -1.0089425732864725e-08 + ArtUnc_20: -3.7827776916724463e-08 + ArtUnc_21: -2.494253881503824e-08 + ArtUnc_22: 7.18207777277124e-09 + ArtUnc_23: 4.737266987816121e-09 + ArtUnc_24: -2.6786010019964452e-09 + ArtUnc_25: 2.9575991000873583e-06 + ArtUnc_26: -2.4109347240891293e-06 + ArtUnc_27: -1.958960032609601e-05 + ArtUnc_28: 2.1605117264882275e-06 + ArtUnc_29: 1.866721069826176e-06 + ArtUnc_30: -8.22057669927223e-06 + ArtUnc_31: 3.1484995192426904e-07 + ArtUnc_32: 3.566962795179308e-06 + ArtUnc_33: 9.910532595307408e-07 + ArtUnc_34: 2.229321892986007e-06 + ArtUnc_35: 3.9884951668698356e-06 + ArtUnc_36: 2.166989013651135e-06 + ArtUnc_37: 6.645354509858519e-07 + ArtUnc_38: -1.137071138773637e-06 + ArtUnc_39: -6.259626810669443e-07 + ArtUnc_40: -1.139598981579064e-07 + ArtUnc_41: -0.0011137227426165804 + ArtUnc_42: 0.001141607145327739 + ArtUnc_43: 0.0008346508307614627 + ArtUnc_44: 8.601943478581479e-05 + ArtUnc_45: 0.0005798205279119543 + ArtUnc_46: 0.0004383472277824721 + ArtUnc_47: -0.00012074281722239596 + ArtUnc_48: 0.000552874931580836 + ArtUnc_49: -0.00017207676192544896 + ArtUnc_50: -0.0004507527380131608 + ArtUnc_51: 2.508999491499608e-05 + ArtUnc_52: -4.8123543900225626e-05 + ArtUnc_53: -0.0004876302466361276 + ArtUnc_54: 0.00018684558503821334 + ArtUnc_55: 0.00015388762592659022 + ArtUnc_56: -1.8186981887229775e-05 + ArtUnc_57: -0.004004969220651377 + ArtUnc_58: 0.003607266408108926 + ArtUnc_59: 0.004505974454370048 + ArtUnc_60: 0.001345496970059587 + ArtUnc_61: -0.0008187221344207724 + ArtUnc_62: -0.0003112304944000799 + ArtUnc_63: 0.0002862908683742685 + ArtUnc_64: -0.0003152481406459922 + ArtUnc_65: 0.0003683638836481357 + ArtUnc_66: 0.0002982348981041299 + ArtUnc_67: -0.0001502387558411166 + ArtUnc_68: -0.0006147404317045237 + ArtUnc_69: -0.0005233603568172246 + ArtUnc_70: 0.00019697460472897514 + ArtUnc_71: -8.244916610588482e-05 + ArtUnc_72: 0.00014985939363457848 + ArtUnc_73: 0.0038048183334672874 + ArtUnc_74: -0.0007028573295874387 + ArtUnc_75: 0.0011840866023422926 + ArtUnc_76: 0.02835348160110081 + ArtUnc_77: -0.005216149143439307 + ArtUnc_78: 0.06222596545671097 + ArtUnc_79: 0.015037693794521264 + ArtUnc_80: -0.026302069053068946 + ArtUnc_81: 0.01476780276571734 + ArtUnc_82: -1.1729779388745412e-06 + ArtUnc_83: -0.006403768686471221 + ArtUnc_84: -0.017996315182303557 + ArtUnc_85: 0.004758655675668427 + ArtUnc_86: -0.005074421813299028 + ArtUnc_87: -0.002829751264937561 + ArtUnc_88: -0.04337537829452347 + ArtUnc_89: -0.029379583624767714 + ArtUnc_90: 0.007388117062249002 + ArtUnc_91: -0.0007635967238545224 + ArtUnc_92: -0.00010334804503274076 + ArtUnc_93: -0.030648055619916178 + ArtUnc_94: 0.01331203105244284 + ArtUnc_95: 0.0008653673756013533 + ArtUnc_96: 0.001045600489105698 - stat: 0 Uncorr: 3.88 RCES: 14.346388539280541 @@ -4455,102 +4455,102 @@ bins: ModelRW_2: 0.9053795226312554 JES_1: 1.5731952707785513 JES_2: 1.5731952707785513 - ArtUnc_1: 28.53461948130384 - ArtUnc_2: -7.123863967078527 - ArtUnc_3: -2.718126555131723 - ArtUnc_4: -0.38992848761021287 - ArtUnc_5: -0.0067074637807442525 - ArtUnc_6: 0.008283999205216913 - ArtUnc_7: -0.0007567391512449102 - ArtUnc_8: 0.2785588228961477 - ArtUnc_9: 0.0015553697559489398 - ArtUnc_10: 0.6841040029689238 - ArtUnc_11: 0.27039826133315903 - ArtUnc_12: -0.025771205810183807 - ArtUnc_13: -0.2019651073492938 - ArtUnc_14: -0.06124574938371301 - ArtUnc_15: -0.13733988140609574 - ArtUnc_16: 0.055592506460016365 - ArtUnc_17: 0.03891494291030174 - ArtUnc_18: -0.022439546494829106 - ArtUnc_19: 0.004613609699705377 - ArtUnc_20: 0.005955233470981325 - ArtUnc_21: -0.000919797110477942 - ArtUnc_22: -0.001561310882612792 - ArtUnc_23: 0.0005657803910753065 - ArtUnc_24: 0.00013845948901261996 - ArtUnc_25: -0.0015884893142737797 - ArtUnc_26: -0.002799873191823955 - ArtUnc_27: -0.012058199532830136 - ArtUnc_28: -0.0010435302393417775 - ArtUnc_29: 0.0008423840084403705 - ArtUnc_30: 0.00685468575650593 - ArtUnc_31: -0.0006563809746295895 - ArtUnc_32: -0.0033977228069870455 - ArtUnc_33: -0.001355084387744165 - ArtUnc_34: 0.0018974214458764834 - ArtUnc_35: 0.0033135972302499035 - ArtUnc_36: -0.0011026071913300026 - ArtUnc_37: -0.0002112098128054945 - ArtUnc_38: -0.00016111750143405293 - ArtUnc_39: 7.780354641443638e-06 - ArtUnc_40: -1.0949039928915275e-05 - ArtUnc_41: 0.000816245137223375 - ArtUnc_42: 0.0006595543728718285 - ArtUnc_43: -0.00019201795704490361 - ArtUnc_44: -0.00029239045544503147 - ArtUnc_45: 0.00029228857947157796 - ArtUnc_46: -0.0001495058040451832 - ArtUnc_47: -0.00034465529271012645 - ArtUnc_48: 0.00011551717262219872 - ArtUnc_49: 0.0001708533090525714 - ArtUnc_50: 0.0001364469829349886 - ArtUnc_51: 0.00014030870040233282 - ArtUnc_52: -2.172973149282298e-05 - ArtUnc_53: -2.5524966768609078e-05 - ArtUnc_54: 1.1225502356581918e-05 - ArtUnc_55: -1.49055443718135e-05 - ArtUnc_56: 9.219831701846346e-06 - ArtUnc_57: 4.691504492441189e-06 - ArtUnc_58: -7.6197052616900875e-06 - ArtUnc_59: -9.825460992185917e-06 - ArtUnc_60: -3.627685529542087e-06 - ArtUnc_61: 2.392677403828972e-06 - ArtUnc_62: 2.6175445500912144e-06 - ArtUnc_63: -1.7619189417090062e-06 - ArtUnc_64: -4.092775317851887e-06 - ArtUnc_65: -4.0074756663387494e-06 - ArtUnc_66: 2.9159524324258453e-06 - ArtUnc_67: -1.0830813048007426e-06 - ArtUnc_68: -3.596523553699565e-06 - ArtUnc_69: -2.322886166859726e-06 - ArtUnc_70: 1.561334361050154e-07 - ArtUnc_71: 6.637580118038576e-08 - ArtUnc_72: -2.5743213044265465e-07 - ArtUnc_73: -6.870695206562224e-07 - ArtUnc_74: -8.574271135635655e-07 - ArtUnc_75: -1.1569485846267584e-07 - ArtUnc_76: -6.437296749786064e-08 - ArtUnc_77: -1.8370731100060585e-07 - ArtUnc_78: 2.4335993445393443e-07 - ArtUnc_79: 3.0163122457541757e-07 - ArtUnc_80: 1.0246606463765263e-07 - ArtUnc_81: 3.8856419054492235e-08 - ArtUnc_82: -3.676040090992887e-11 - ArtUnc_83: 1.978891082722876e-08 - ArtUnc_84: -3.067811729035533e-08 - ArtUnc_85: -1.2655550615767179e-08 - ArtUnc_86: 3.768689079174495e-08 - ArtUnc_87: -3.3591322456585576e-08 - ArtUnc_88: 1.590444265428146e-08 - ArtUnc_89: 1.3221074939131933e-08 - ArtUnc_90: 5.231483778556825e-09 - ArtUnc_91: -6.979669883932993e-09 - ArtUnc_92: 6.92443228530112e-09 - ArtUnc_93: 1.493979649829139e-08 - ArtUnc_94: -1.0576092301005824e-09 - ArtUnc_95: 5.957595733315587e-09 - ArtUnc_96: 1.5437534461032975e-10 + ArtUnc_1: 28.534619481303825 + ArtUnc_2: -7.123863967078508 + ArtUnc_3: -2.7181265551317226 + ArtUnc_4: -0.3899284876102117 + ArtUnc_5: -0.00670746378074466 + ArtUnc_6: -0.008283999205217387 + ArtUnc_7: 0.0007567391512459143 + ArtUnc_8: -0.27855882289615036 + ArtUnc_9: -0.0015553697559445726 + ArtUnc_10: 0.6841040029689246 + ArtUnc_11: 0.2703982613331601 + ArtUnc_12: -0.02577120581018809 + ArtUnc_13: -0.20196510734929263 + ArtUnc_14: -0.061245749383712446 + ArtUnc_15: -0.1373398814060955 + ArtUnc_16: 0.05559250646001657 + ArtUnc_17: -0.03891494291030187 + ArtUnc_18: 0.022439546494828832 + ArtUnc_19: -0.004613609699705583 + ArtUnc_20: -0.005955233470981109 + ArtUnc_21: -0.000919797110477925 + ArtUnc_22: -0.0015613108826127554 + ArtUnc_23: -0.0005657803910752896 + ArtUnc_24: -0.00013845948901258673 + ArtUnc_25: 0.0015884893142738003 + ArtUnc_26: 0.0027998731918240935 + ArtUnc_27: 0.012058199532830109 + ArtUnc_28: 0.0010435302393417168 + ArtUnc_29: -0.0008423840084407331 + ArtUnc_30: 0.006854685756505784 + ArtUnc_31: 0.0006563809746296008 + ArtUnc_32: -0.003397722806987923 + ArtUnc_33: -0.0013550843877417945 + ArtUnc_34: -0.0018974214458767377 + ArtUnc_35: -0.0033135972302497743 + ArtUnc_36: -0.0011026071913299487 + ArtUnc_37: -0.00021120981280549925 + ArtUnc_38: 0.0001611175014340478 + ArtUnc_39: 7.780354641441171e-06 + ArtUnc_40: -1.0949039928915957e-05 + ArtUnc_41: 0.0008162451372233949 + ArtUnc_42: 0.0006595543728718163 + ArtUnc_43: -0.0001920179570449045 + ArtUnc_44: -0.00029239045544503836 + ArtUnc_45: 0.00029228857947158284 + ArtUnc_46: -0.00014950580404518931 + ArtUnc_47: 0.0003446552927101274 + ArtUnc_48: -0.00011551717262218647 + ArtUnc_49: -0.00017085330905257303 + ArtUnc_50: -0.00013644698293498577 + ArtUnc_51: 9.219831701846136e-06 + ArtUnc_52: -1.4905544371813783e-05 + ArtUnc_53: -0.00014030870040233003 + ArtUnc_54: 2.172973149282271e-05 + ArtUnc_55: 2.5524966768608532e-05 + ArtUnc_56: 1.1225502356583022e-05 + ArtUnc_57: -4.691504492441422e-06 + ArtUnc_58: 7.6197052616898715e-06 + ArtUnc_59: 9.825460992185863e-06 + ArtUnc_60: 3.627685529542029e-06 + ArtUnc_61: -2.392677403828778e-06 + ArtUnc_62: -2.617544550091262e-06 + ArtUnc_63: 1.7619189417090515e-06 + ArtUnc_64: -4.0927753178519035e-06 + ArtUnc_65: 4.0074756663388155e-06 + ArtUnc_66: 2.9159524324259093e-06 + ArtUnc_67: -1.0830813048008015e-06 + ArtUnc_68: -3.5965235536997996e-06 + ArtUnc_69: -2.322886166859595e-06 + ArtUnc_70: 2.5743213044265925e-07 + ArtUnc_71: -1.5613343610499397e-07 + ArtUnc_72: 6.637580118037731e-08 + ArtUnc_73: -6.870695206562281e-07 + ArtUnc_74: 8.574271135636011e-07 + ArtUnc_75: 1.1569485846268291e-07 + ArtUnc_76: -6.437296749786422e-08 + ArtUnc_77: -1.837073110006341e-07 + ArtUnc_78: -2.4335993445393687e-07 + ArtUnc_79: 3.0163122457542233e-07 + ArtUnc_80: -1.0246606463765234e-07 + ArtUnc_81: 3.8856419054493195e-08 + ArtUnc_82: -3.6760400909888214e-11 + ArtUnc_83: 1.978891082722819e-08 + ArtUnc_84: -3.067811729035556e-08 + ArtUnc_85: -1.2655550615766943e-08 + ArtUnc_86: -6.924432285300878e-09 + ArtUnc_87: -1.4939796498290833e-08 + ArtUnc_88: 3.768689079174396e-08 + ArtUnc_89: 3.359132245658672e-08 + ArtUnc_90: 1.590444265428233e-08 + ArtUnc_91: -5.957595733315514e-09 + ArtUnc_92: -1.0576092301003206e-09 + ArtUnc_93: 1.3221074939131718e-08 + ArtUnc_94: -5.2314837785566986e-09 + ArtUnc_95: -6.979669883933357e-09 + ArtUnc_96: 1.543753446103767e-10 - stat: 0 Uncorr: 1.96 RCES: 4.76770755395085 @@ -4566,102 +4566,102 @@ bins: ModelRW_2: 6.5000083753792195 JES_1: 8.14366143083073 JES_2: 8.14366143083073 - ArtUnc_1: 2.297076133139009 - ArtUnc_2: -1.0892033898037945 - ArtUnc_3: -0.46266437928941223 - ArtUnc_4: 0.003459726676908899 - ArtUnc_5: -0.0702479988032363 - ArtUnc_6: 0.025635496777509318 - ArtUnc_7: 0.0011811538975454896 - ArtUnc_8: -5.698072050451222 - ArtUnc_9: -0.01838660928837008 - ArtUnc_10: -6.024756075070182 - ArtUnc_11: -2.9660838975572634 - ArtUnc_12: 0.5090423741530861 - ArtUnc_13: 1.8418379289105657 - ArtUnc_14: 0.51853845035762 - ArtUnc_15: 1.3053603129533569 - ArtUnc_16: -0.4807548269525335 - ArtUnc_17: -0.3546020620221221 - ArtUnc_18: 0.1900089641370534 - ArtUnc_19: -0.03448455438106442 - ArtUnc_20: -0.03347777181934266 - ArtUnc_21: 0.006677665520888274 - ArtUnc_22: 0.005573150621445732 - ArtUnc_23: -0.001614094874854339 - ArtUnc_24: -0.000568273667309047 - ArtUnc_25: 0.13949268880937934 - ArtUnc_26: 0.0735257804556413 - ArtUnc_27: 0.18086565126001672 - ArtUnc_28: 0.02126020679739065 - ArtUnc_29: -0.009972218314624906 - ArtUnc_30: -0.09065927398924303 - ArtUnc_31: 0.0006883162712904542 - ArtUnc_32: 0.04229196904251895 - ArtUnc_33: 0.016219675814081926 - ArtUnc_34: -0.02714390336879897 - ArtUnc_35: -0.043504078961787714 - ArtUnc_36: 0.01651470665811468 - ArtUnc_37: 0.0024434123447176818 - ArtUnc_38: 0.0029714037791766005 - ArtUnc_39: -0.0007310172834329654 - ArtUnc_40: -0.0002113625287745033 - ArtUnc_41: -0.00716087066432244 - ArtUnc_42: -0.00587695178165027 - ArtUnc_43: 0.0017314514208508663 - ArtUnc_44: 0.002553951127823668 - ArtUnc_45: -0.0025656232271245084 - ArtUnc_46: 0.0011881545478557916 - ArtUnc_47: 0.002804030604187064 - ArtUnc_48: -0.0008879580966486244 - ArtUnc_49: -0.0013691464108833973 - ArtUnc_50: -0.0011494198540057236 - ArtUnc_51: -0.0011819515239073419 - ArtUnc_52: 0.0002536231243983661 - ArtUnc_53: 0.00018472562965263277 - ArtUnc_54: -8.73983655878302e-05 - ArtUnc_55: 7.294074042155457e-05 - ArtUnc_56: -9.055078135816856e-05 - ArtUnc_57: -4.885657431811372e-05 - ArtUnc_58: 5.5139030312729935e-05 - ArtUnc_59: 0.00013839594374450177 - ArtUnc_60: 4.877085515415399e-05 - ArtUnc_61: -4.227075372782918e-05 - ArtUnc_62: -2.8700177521540744e-05 - ArtUnc_63: 2.380380668656732e-05 - ArtUnc_64: 5.132418586798756e-05 - ArtUnc_65: 5.261628114177773e-05 - ArtUnc_66: -3.8834498081222535e-05 - ArtUnc_67: 1.3491744321720766e-05 - ArtUnc_68: 3.742843080220253e-05 - ArtUnc_69: 2.0431367214920775e-05 - ArtUnc_70: -7.380420140614505e-07 - ArtUnc_71: -1.1211342621343872e-06 - ArtUnc_72: 6.037085275243379e-07 - ArtUnc_73: 7.3257684432416824e-06 - ArtUnc_74: 8.91679159433491e-06 - ArtUnc_75: 1.162861834698764e-06 - ArtUnc_76: 6.250625946348372e-07 - ArtUnc_77: 1.8200635034374447e-06 - ArtUnc_78: -2.5253370700758245e-06 - ArtUnc_79: -3.227347634136561e-06 - ArtUnc_80: -9.159003097231446e-07 - ArtUnc_81: -3.472046352210964e-07 - ArtUnc_82: 8.06392582351291e-10 - ArtUnc_83: -2.002810595725193e-07 - ArtUnc_84: 2.56765894718828e-07 - ArtUnc_85: 1.2916345002614962e-07 - ArtUnc_86: -4.2204082732703897e-07 - ArtUnc_87: 3.5825707537556616e-07 - ArtUnc_88: -1.3673297886086651e-07 - ArtUnc_89: -1.2730479200691235e-07 - ArtUnc_90: -5.8950569248484984e-08 - ArtUnc_91: 3.969493521176897e-08 - ArtUnc_92: -5.4068451479893034e-08 - ArtUnc_93: -1.388648088096199e-07 - ArtUnc_94: 9.722202506316362e-09 - ArtUnc_95: -5.3828040959302966e-08 - ArtUnc_96: 4.001083540114983e-09 + ArtUnc_1: 2.2970761331390066 + ArtUnc_2: -1.0892033898037916 + ArtUnc_3: -0.4626643792894114 + ArtUnc_4: 0.0034597266768986723 + ArtUnc_5: -0.07024799880322546 + ArtUnc_6: -0.025635496777499604 + ArtUnc_7: -0.0011811538975831683 + ArtUnc_8: 5.698072050451249 + ArtUnc_9: 0.01838660928832924 + ArtUnc_10: -6.02475607507018 + ArtUnc_11: -2.9660838975572674 + ArtUnc_12: 0.509042374153124 + ArtUnc_13: 1.8418379289105533 + ArtUnc_14: 0.5185384503576153 + ArtUnc_15: 1.3053603129533584 + ArtUnc_16: -0.48075482695253724 + ArtUnc_17: 0.3546020620221246 + ArtUnc_18: -0.19000896413705118 + ArtUnc_19: 0.03448455438106577 + ArtUnc_20: 0.0334777718193411 + ArtUnc_21: 0.00667766552088803 + ArtUnc_22: 0.005573150621444783 + ArtUnc_23: 0.0016140948748548712 + ArtUnc_24: 0.000568273667308521 + ArtUnc_25: -0.13949268880938007 + ArtUnc_26: -0.07352578045564359 + ArtUnc_27: -0.1808656512600164 + ArtUnc_28: -0.021260206797389925 + ArtUnc_29: 0.00997221831462979 + ArtUnc_30: -0.09065927398924134 + ArtUnc_31: -0.0006883162712905388 + ArtUnc_32: 0.04229196904252959 + ArtUnc_33: 0.01621967581405243 + ArtUnc_34: 0.027143903368802316 + ArtUnc_35: 0.04350407896178598 + ArtUnc_36: 0.016514706658114008 + ArtUnc_37: 0.0024434123447177863 + ArtUnc_38: -0.002971403779176569 + ArtUnc_39: -0.0007310172834329555 + ArtUnc_40: -0.00021136252877450334 + ArtUnc_41: -0.007160870664322624 + ArtUnc_42: -0.005876951781650189 + ArtUnc_43: 0.0017314514208508819 + ArtUnc_44: 0.002553951127823745 + ArtUnc_45: -0.0025656232271245513 + ArtUnc_46: 0.0011881545478558493 + ArtUnc_47: -0.002804030604187082 + ArtUnc_48: 0.0008879580966485295 + ArtUnc_49: 0.001369146410883418 + ArtUnc_50: 0.0011494198540057063 + ArtUnc_51: -9.055078135816814e-05 + ArtUnc_52: 7.294074042155794e-05 + ArtUnc_53: 0.001181951523907321 + ArtUnc_54: -0.00025362312439836495 + ArtUnc_55: -0.00018472562965263104 + ArtUnc_56: -8.739836558783833e-05 + ArtUnc_57: 4.885657431811609e-05 + ArtUnc_58: -5.51390303127279e-05 + ArtUnc_59: -0.00013839594374450153 + ArtUnc_60: -4.877085515415337e-05 + ArtUnc_61: 4.22707537278272e-05 + ArtUnc_62: 2.8700177521542225e-05 + ArtUnc_63: -2.3803806686567963e-05 + ArtUnc_64: 5.132418586798827e-05 + ArtUnc_65: -5.261628114177895e-05 + ArtUnc_66: -3.88344980812236e-05 + ArtUnc_67: 1.3491744321721498e-05 + ArtUnc_68: 3.7428430802205095e-05 + ArtUnc_69: 2.0431367214919684e-05 + ArtUnc_70: -6.037085275244034e-07 + ArtUnc_71: 7.380420140613976e-07 + ArtUnc_72: -1.1211342621343135e-06 + ArtUnc_73: 7.325768443241816e-06 + ArtUnc_74: -8.916791594335334e-06 + ArtUnc_75: -1.162861834698842e-06 + ArtUnc_76: 6.250625946348806e-07 + ArtUnc_77: 1.82006350343776e-06 + ArtUnc_78: 2.525337070075889e-06 + ArtUnc_79: -3.227347634136641e-06 + ArtUnc_80: 9.159003097231551e-07 + ArtUnc_81: -3.4720463522110955e-07 + ArtUnc_82: 8.063925823509818e-10 + ArtUnc_83: -2.002810595725168e-07 + ArtUnc_84: 2.5676589471883596e-07 + ArtUnc_85: 1.2916345002614888e-07 + ArtUnc_86: 5.406845147989175e-08 + ArtUnc_87: 1.3886480880961782e-07 + ArtUnc_88: -4.220408273270315e-07 + ArtUnc_89: -3.5825707537558045e-07 + ArtUnc_90: -1.3673297886087641e-07 + ArtUnc_91: 5.3828040959303416e-08 + ArtUnc_92: 9.722202506314322e-09 + ArtUnc_93: -1.2730479200691123e-07 + ArtUnc_94: 5.895056924848404e-08 + ArtUnc_95: 3.96949352117729e-08 + ArtUnc_96: 4.001083540114452e-09 - stat: 0 Uncorr: 0.596 RCES: 0.26269676130474084 @@ -4677,102 +4677,102 @@ bins: ModelRW_2: 1.0198742526409812 JES_1: 1.3796016129303414 JES_2: 1.3796016129303414 - ArtUnc_1: -0.0009965196005386932 - ArtUnc_2: -0.0490763710144604 - ArtUnc_3: -0.047564970547462816 - ArtUnc_4: -0.013756699974386742 - ArtUnc_5: 0.0013405642217338104 - ArtUnc_6: 0.00038667537064925343 - ArtUnc_7: 0.00012760105811892577 - ArtUnc_8: -0.31731888380211215 - ArtUnc_9: -0.0011592755697405527 - ArtUnc_10: -0.4504172181733019 - ArtUnc_11: -0.21373373716518707 - ArtUnc_12: 0.07390984381923715 - ArtUnc_13: 0.15323462967136534 - ArtUnc_14: 0.016725144962615363 - ArtUnc_15: 0.061541096508847544 - ArtUnc_16: 0.0012801800918939162 - ArtUnc_17: 0.01019751389634067 - ArtUnc_18: 0.003646885619794577 - ArtUnc_19: 0.007440900959470505 - ArtUnc_20: -0.030597234662372658 - ArtUnc_21: 0.01992090985890483 - ArtUnc_22: -0.008080984027201168 - ArtUnc_23: 0.0025137026103077445 - ArtUnc_24: -0.00041309541960145876 - ArtUnc_25: 0.7665401298664348 - ArtUnc_26: -0.20904621147771893 - ArtUnc_27: -2.472266072161976 - ArtUnc_28: 0.2963104198978536 - ArtUnc_29: 0.2289045278005049 - ArtUnc_30: 1.0542185366477328 - ArtUnc_31: 0.028303682128789087 - ArtUnc_32: -0.4932083605436826 - ArtUnc_33: -0.13788572623234713 - ArtUnc_34: 0.2784114116994266 - ArtUnc_35: 0.47389759816721194 - ArtUnc_36: -0.17395524785263045 - ArtUnc_37: -0.029441826176746566 - ArtUnc_38: -0.02962185468097465 - ArtUnc_39: 0.003793759664381692 - ArtUnc_40: 0.000617116973854914 - ArtUnc_41: 0.07130678915444245 - ArtUnc_42: 0.09783409895431039 - ArtUnc_43: -0.00251864351554638 - ArtUnc_44: -0.02557340624368057 - ArtUnc_45: 0.03679531486118423 - ArtUnc_46: -0.0032245074874930045 - ArtUnc_47: -0.022428942333149526 - ArtUnc_48: -0.002745702202360223 - ArtUnc_49: 0.013380306228957502 - ArtUnc_50: 0.016804630618115865 - ArtUnc_51: 0.016114514223098075 - ArtUnc_52: -0.00524029381954212 - ArtUnc_53: -0.0029677086312849287 - ArtUnc_54: 0.0001902632252158602 - ArtUnc_55: -0.0005791249759598457 - ArtUnc_56: 0.0006300547084760401 - ArtUnc_57: -0.0002804429750602387 - ArtUnc_58: 0.0018944439314549104 - ArtUnc_59: -0.0013271820680700972 - ArtUnc_60: -0.00035204867711393723 - ArtUnc_61: 0.0014031938044521042 - ArtUnc_62: -0.0002882139019710647 - ArtUnc_63: -0.0005940507007868716 - ArtUnc_64: -8.61814497537013e-05 - ArtUnc_65: -0.00027621386915058997 - ArtUnc_66: 0.0008705951659873406 - ArtUnc_67: -0.0002900155986531735 - ArtUnc_68: -0.0010883729771620856 - ArtUnc_69: -0.0005855436480219128 - ArtUnc_70: 0.00010782019438672839 - ArtUnc_71: 7.085871654984603e-05 - ArtUnc_72: -3.89122163738746e-05 - ArtUnc_73: -9.267549343752526e-06 - ArtUnc_74: -1.0338450946925255e-05 - ArtUnc_75: -2.5984669077541534e-06 - ArtUnc_76: -3.7953189242007785e-06 - ArtUnc_77: -6.080111235028886e-06 - ArtUnc_78: 1.1459432837723044e-05 - ArtUnc_79: 1.3531736033283021e-05 - ArtUnc_80: -4.785256084645539e-06 - ArtUnc_81: -1.4476474117621292e-06 - ArtUnc_82: 8.717567938833966e-09 - ArtUnc_83: 2.1625432339053885e-06 - ArtUnc_84: 1.4245958021684796e-06 - ArtUnc_85: -1.5918227317217163e-06 - ArtUnc_86: 1.70581822952215e-06 - ArtUnc_87: -1.638206806189619e-06 - ArtUnc_88: -2.8779633835817855e-07 - ArtUnc_89: -5.728647448866196e-08 - ArtUnc_90: 7.621759654344365e-07 - ArtUnc_91: 4.1672703857240277e-08 - ArtUnc_92: -2.0337474318313564e-06 - ArtUnc_93: -1.5086338157836613e-06 - ArtUnc_94: 6.715287876038684e-08 - ArtUnc_95: -4.343963169364552e-07 - ArtUnc_96: -2.8880854045614826e-07 + ArtUnc_1: -0.0009965196005386923 + ArtUnc_2: -0.04907637101446047 + ArtUnc_3: -0.04756497054746269 + ArtUnc_4: -0.013756699974385526 + ArtUnc_5: 0.0013405642217313753 + ArtUnc_6: -0.0003866753706473783 + ArtUnc_7: -0.00012760105812504135 + ArtUnc_8: 0.3173188838021138 + ArtUnc_9: 0.0011592755697388047 + ArtUnc_10: -0.45041721817330066 + ArtUnc_11: -0.2137337371651879 + ArtUnc_12: 0.07390984381923797 + ArtUnc_13: 0.15323462967136156 + ArtUnc_14: 0.016725144962614295 + ArtUnc_15: 0.06154109650884441 + ArtUnc_16: 0.0012801800918984287 + ArtUnc_17: -0.010197513896344924 + ArtUnc_18: -0.0036468856197927895 + ArtUnc_19: -0.007440900959471428 + ArtUnc_20: 0.030597234662372387 + ArtUnc_21: 0.01992090985890962 + ArtUnc_22: -0.008080984027201216 + ArtUnc_23: -0.002513702610298424 + ArtUnc_24: 0.0004130954196040905 + ArtUnc_25: -0.7665401298664287 + ArtUnc_26: 0.20904621147775262 + ArtUnc_27: 2.4722660721619834 + ArtUnc_28: -0.2963104198978628 + ArtUnc_29: -0.22890452780055967 + ArtUnc_30: 1.0542185366477073 + ArtUnc_31: -0.028303682128787668 + ArtUnc_32: -0.49320836054377415 + ArtUnc_33: -0.1378857262320036 + ArtUnc_34: -0.27841141169946304 + ArtUnc_35: -0.4738975981671955 + ArtUnc_36: -0.17395524785262387 + ArtUnc_37: -0.02944182617674767 + ArtUnc_38: 0.029621854680974245 + ArtUnc_39: 0.0037937596643816225 + ArtUnc_40: 0.0006171169738548413 + ArtUnc_41: 0.07130678915444527 + ArtUnc_42: 0.09783409895430999 + ArtUnc_43: -0.0025186435155468063 + ArtUnc_44: -0.025573406243681544 + ArtUnc_45: 0.03679531486118474 + ArtUnc_46: -0.003224507487493442 + ArtUnc_47: 0.022428942333149793 + ArtUnc_48: 0.0027457022023610472 + ArtUnc_49: -0.013380306228957847 + ArtUnc_50: -0.01680463061811569 + ArtUnc_51: 0.0006300547084760256 + ArtUnc_52: -0.0005791249759598666 + ArtUnc_53: -0.016114514223097707 + ArtUnc_54: 0.005240293819542083 + ArtUnc_55: 0.002967708631284937 + ArtUnc_56: 0.00019026322521595404 + ArtUnc_57: 0.0002804429750602793 + ArtUnc_58: -0.001894443931454924 + ArtUnc_59: 0.0013271820680700766 + ArtUnc_60: 0.00035204867711393067 + ArtUnc_61: -0.0014031938044521107 + ArtUnc_62: 0.000288213901971008 + ArtUnc_63: 0.0005940507007868716 + ArtUnc_64: -8.618144975369645e-05 + ArtUnc_65: 0.0002762138691505921 + ArtUnc_66: 0.0008705951659873383 + ArtUnc_67: -0.0002900155986531886 + ArtUnc_68: -0.001088372977162145 + ArtUnc_69: -0.0005855436480218688 + ArtUnc_70: 3.891221637388164e-05 + ArtUnc_71: -0.00010782019438672507 + ArtUnc_72: 7.085871654984114e-05 + ArtUnc_73: -9.26754934375886e-06 + ArtUnc_74: 1.0338450946933556e-05 + ArtUnc_75: 2.5984669077553655e-06 + ArtUnc_76: -3.7953189242014587e-06 + ArtUnc_77: -6.080111235031745e-06 + ArtUnc_78: -1.145943283772544e-05 + ArtUnc_79: 1.3531736033285865e-05 + ArtUnc_80: 4.785256084644365e-06 + ArtUnc_81: -1.4476474117618153e-06 + ArtUnc_82: 8.717567938832361e-09 + ArtUnc_83: 2.1625432339056964e-06 + ArtUnc_84: 1.4245958021681639e-06 + ArtUnc_85: -1.5918227317219126e-06 + ArtUnc_86: 2.033747431831262e-06 + ArtUnc_87: 1.5086338157833956e-06 + ArtUnc_88: 1.705818229522455e-06 + ArtUnc_89: 1.6382068061899532e-06 + ArtUnc_90: -2.8779633835803196e-07 + ArtUnc_91: 4.3439631693636184e-07 + ArtUnc_92: 6.715287876035183e-08 + ArtUnc_93: -5.728647448855988e-08 + ArtUnc_94: -7.621759654344934e-07 + ArtUnc_95: 4.1672703857164295e-08 + ArtUnc_96: -2.8880854045615154e-07 - stat: 0 Uncorr: 0.126 RCES: 0.0365345685618429 @@ -4788,102 +4788,102 @@ bins: ModelRW_2: 0.3706370904267407 JES_1: 0.3376902843583155 JES_2: 0.3376902843583155 - ArtUnc_1: 0.00048222324563112324 - ArtUnc_2: -0.00045481936606475335 - ArtUnc_3: -0.00028651499613534676 - ArtUnc_4: -5.045932370837303e-06 - ArtUnc_5: -6.963204243240137e-05 - ArtUnc_6: 3.525407986547766e-05 - ArtUnc_7: 7.335364810789872e-07 - ArtUnc_8: -0.011353917117131667 - ArtUnc_9: -4.218063182215126e-05 - ArtUnc_10: -0.015707934389066276 - ArtUnc_11: -0.009803885316949507 - ArtUnc_12: 0.002153699370555611 - ArtUnc_13: 0.00753284433765608 - ArtUnc_14: 0.0021950944042568345 - ArtUnc_15: 0.006046097250410136 - ArtUnc_16: -0.002311692799103495 - ArtUnc_17: -0.0017171120266755752 - ArtUnc_18: 0.0010288977453567977 - ArtUnc_19: -0.00011311504002507693 - ArtUnc_20: -0.0005321726757169514 - ArtUnc_21: 0.00031996106432857584 - ArtUnc_22: -9.23556488693514e-05 - ArtUnc_23: 4.181140486327824e-05 - ArtUnc_24: -1.9034702199728612e-05 - ArtUnc_25: 0.020487758169370637 - ArtUnc_26: -0.011574866257633072 - ArtUnc_27: -0.08912912698772604 - ArtUnc_28: 0.008665626267010507 - ArtUnc_29: 0.006635338253214907 - ArtUnc_30: 0.02794587681218538 - ArtUnc_31: 0.000977229749718423 - ArtUnc_32: -0.010216142199214729 - ArtUnc_33: -0.002845330035775146 - ArtUnc_34: 0.005570333273643814 - ArtUnc_35: 0.009662654568295312 - ArtUnc_36: -0.004528737722650618 - ArtUnc_37: -0.0012038460339397936 - ArtUnc_38: -0.0018731277432523967 - ArtUnc_39: 0.0008503564209477177 - ArtUnc_40: 0.000138445622024803 - ArtUnc_41: 0.663849568643789 - ArtUnc_42: -0.5706914172499961 - ArtUnc_43: -0.3775614838740124 - ArtUnc_44: -0.03501730818426179 - ArtUnc_45: -0.22079268371283478 - ArtUnc_46: -0.15556486625569363 - ArtUnc_47: -0.03878286742300643 - ArtUnc_48: 0.1792366648952618 - ArtUnc_49: -0.054283781528397274 - ArtUnc_50: -0.13242443389466826 - ArtUnc_51: -0.13148541911448722 - ArtUnc_52: 0.048082372908605085 - ArtUnc_53: 0.03475140647080293 - ArtUnc_54: 0.0036341293741232877 - ArtUnc_55: 0.007711552695186414 - ArtUnc_56: -0.003416335306032307 - ArtUnc_57: 0.008015429032454417 - ArtUnc_58: -0.04296678302902025 - ArtUnc_59: 0.021593356391990164 - ArtUnc_60: 0.005088828565798807 - ArtUnc_61: -0.024094100946152837 - ArtUnc_62: 0.006406534115998357 - ArtUnc_63: 0.009260583805346435 - ArtUnc_64: -0.0007324592001936841 - ArtUnc_65: 0.0023102409510445264 - ArtUnc_66: -0.011795995784537588 - ArtUnc_67: 0.0037988107609475724 - ArtUnc_68: 0.014005992450294541 - ArtUnc_69: 0.007273315267392656 - ArtUnc_70: -0.001466337672531976 - ArtUnc_71: -0.0009929230225180076 - ArtUnc_72: 0.00042293942566536656 - ArtUnc_73: 0.00011844704664032813 - ArtUnc_74: 0.00023022953652045142 - ArtUnc_75: 5.280533255610051e-05 - ArtUnc_76: 5.8320312563029384e-05 - ArtUnc_77: 0.00013664656253661587 - ArtUnc_78: -0.0002258553331687576 - ArtUnc_79: -0.0003222283740100807 - ArtUnc_80: 8.560658591627343e-05 - ArtUnc_81: 2.7635731751350576e-05 - ArtUnc_82: -1.4471079941618696e-07 - ArtUnc_83: -4.849242745558435e-05 - ArtUnc_84: -2.73851982751988e-05 - ArtUnc_85: 3.691156820800472e-05 - ArtUnc_86: -3.2808291692025e-05 - ArtUnc_87: 5.063474698032525e-05 - ArtUnc_88: 5.9404921856279335e-06 - ArtUnc_89: 1.3945197108891403e-05 - ArtUnc_90: -1.976061848848475e-05 - ArtUnc_91: 5.4158037246835686e-06 - ArtUnc_92: 4.5856356459877216e-05 - ArtUnc_93: 3.282889882737818e-05 - ArtUnc_94: -1.5861418317529727e-06 - ArtUnc_95: 9.969375328917745e-06 - ArtUnc_96: 8.099606377265982e-06 + ArtUnc_1: 0.00048222324563112264 + ArtUnc_2: -0.0004548193660647549 + ArtUnc_3: -0.000286514996135342 + ArtUnc_4: -5.045932370756765e-06 + ArtUnc_5: -6.963204243240928e-05 + ArtUnc_6: -3.525407986559304e-05 + ArtUnc_7: -7.335364812501672e-07 + ArtUnc_8: 0.011353917117131688 + ArtUnc_9: 4.218063182166823e-05 + ArtUnc_10: -0.015707934389066265 + ArtUnc_11: -0.009803885316949498 + ArtUnc_12: 0.0021536993705559898 + ArtUnc_13: 0.007532844337655942 + ArtUnc_14: 0.0021950944042568683 + ArtUnc_15: 0.006046097250410134 + ArtUnc_16: -0.0023116927991033214 + ArtUnc_17: 0.0017171120266754247 + ArtUnc_18: -0.0010288977453566045 + ArtUnc_19: 0.00011311504002460291 + ArtUnc_20: 0.0005321726757171317 + ArtUnc_21: 0.00031996106432853085 + ArtUnc_22: -9.235564886922412e-05 + ArtUnc_23: -4.181140486276274e-05 + ArtUnc_24: 1.90347021989865e-05 + ArtUnc_25: -0.020487758169369312 + ArtUnc_26: 0.011574866257633931 + ArtUnc_27: 0.08912912698772603 + ArtUnc_28: -0.008665626267010482 + ArtUnc_29: -0.006635338253216263 + ArtUnc_30: 0.027945876812184477 + ArtUnc_31: -0.0009772297497179653 + ArtUnc_32: -0.010216142199216087 + ArtUnc_33: -0.002845330035767449 + ArtUnc_34: -0.005570333273645624 + ArtUnc_35: -0.009662654568296104 + ArtUnc_36: -0.004528737722651677 + ArtUnc_37: -0.0012038460339396265 + ArtUnc_38: 0.0018731277432525726 + ArtUnc_39: 0.0008503564209471586 + ArtUnc_40: 0.00013844562202529199 + ArtUnc_41: 0.6638495686437801 + ArtUnc_42: -0.5706914172500034 + ArtUnc_43: -0.37756148387400784 + ArtUnc_44: -0.03501730818425852 + ArtUnc_45: -0.22079268371283536 + ArtUnc_46: -0.1555648662556946 + ArtUnc_47: 0.03878286742300583 + ArtUnc_48: -0.17923666489526285 + ArtUnc_49: 0.05428378152839977 + ArtUnc_50: 0.1324244338946672 + ArtUnc_51: -0.003416335306031974 + ArtUnc_52: 0.007711552695186313 + ArtUnc_53: 0.13148541911448347 + ArtUnc_54: -0.04808237290860438 + ArtUnc_55: -0.03475140647080258 + ArtUnc_56: 0.003634129374122391 + ArtUnc_57: -0.008015429032455383 + ArtUnc_58: 0.042966783029020544 + ArtUnc_59: -0.021593356391989723 + ArtUnc_60: -0.005088828565798671 + ArtUnc_61: 0.024094100946153038 + ArtUnc_62: -0.006406534115997293 + ArtUnc_63: -0.009260583805346423 + ArtUnc_64: -0.0007324592001938286 + ArtUnc_65: -0.0023102409510445 + ArtUnc_66: -0.011795995784537529 + ArtUnc_67: 0.003798810760947751 + ArtUnc_68: 0.014005992450295192 + ArtUnc_69: 0.0072733152673920285 + ArtUnc_70: -0.0004229394256654641 + ArtUnc_71: 0.0014663376725319356 + ArtUnc_72: -0.0009929230225179458 + ArtUnc_73: 0.00011844704664039685 + ArtUnc_74: -0.00023022953652054892 + ArtUnc_75: -5.280533255611597e-05 + ArtUnc_76: 5.8320312563038125e-05 + ArtUnc_77: 0.00013664656253665832 + ArtUnc_78: 0.00022585533316878535 + ArtUnc_79: -0.0003222283740101118 + ArtUnc_80: -8.560658591625873e-05 + ArtUnc_81: 2.7635731751347974e-05 + ArtUnc_82: -1.4471079941616133e-07 + ArtUnc_83: -4.8492427455588045e-05 + ArtUnc_84: -2.7385198275194944e-05 + ArtUnc_85: 3.691156820800699e-05 + ArtUnc_86: -4.585635645987649e-05 + ArtUnc_87: -3.282889882737541e-05 + ArtUnc_88: -3.2808291692027684e-05 + ArtUnc_89: -5.063474698032896e-05 + ArtUnc_90: 5.940492185626315e-06 + ArtUnc_91: -9.96937532891693e-06 + ArtUnc_92: -1.5861418317524066e-06 + ArtUnc_93: 1.394519710889056e-05 + ArtUnc_94: 1.976061848848542e-05 + ArtUnc_95: 5.415803724684479e-06 + ArtUnc_96: 8.099606377266068e-06 - stat: 0 Uncorr: 0.0227 RCES: 0.009166837881734356 @@ -4899,102 +4899,102 @@ bins: ModelRW_2: 0.0008025661966467315 JES_1: 0.07051205198669941 JES_2: 0.07051205198669941 - ArtUnc_1: 8.284240535459945e-05 - ArtUnc_2: -7.143652520747548e-05 - ArtUnc_3: -4.293910641632099e-05 - ArtUnc_4: 9.189147705404e-07 - ArtUnc_5: -1.1683924773492631e-05 - ArtUnc_6: 5.437220127168312e-06 - ArtUnc_7: 3.1867886787515996e-07 - ArtUnc_8: -0.001750767579044543 - ArtUnc_9: -6.320894995004844e-06 - ArtUnc_10: -0.0023152786563023536 - ArtUnc_11: -0.0015122601857190162 - ArtUnc_12: 0.00028672664141823575 - ArtUnc_13: 0.001170713781008741 - ArtUnc_14: 0.00037400319118559457 - ArtUnc_15: 0.0010149982650400344 - ArtUnc_16: -0.0004244565163136573 - ArtUnc_17: -0.00034015178709350026 - ArtUnc_18: 0.00019293282009014468 - ArtUnc_19: -4.3545110517268796e-05 - ArtUnc_20: -3.082354649522926e-05 - ArtUnc_21: 1.7465997791860596e-06 - ArtUnc_22: 1.2057399180629462e-05 - ArtUnc_23: -4.49174474318245e-06 - ArtUnc_24: -9.79744710511551e-07 - ArtUnc_25: -0.00020738105703601545 - ArtUnc_26: 0.000423076135428493 - ArtUnc_27: 0.003193753895059643 - ArtUnc_28: -0.0002789218703016149 - ArtUnc_29: -0.0003826943616379029 - ArtUnc_30: -0.002112576370727655 - ArtUnc_31: -4.6340652522069066e-05 - ArtUnc_32: 0.0012541085350817492 - ArtUnc_33: 0.00037808859529180923 - ArtUnc_34: -0.0008401347196621201 - ArtUnc_35: -0.001437235721419083 - ArtUnc_36: 0.0005759556505316176 - ArtUnc_37: 9.800053871529871e-05 - ArtUnc_38: 0.00010495865631075194 - ArtUnc_39: -1.4606526389308009e-05 - ArtUnc_40: -3.996192470531904e-06 - ArtUnc_41: 0.011750948973267745 - ArtUnc_42: -0.015575601828046928 - ArtUnc_43: -0.0041891881277658785 - ArtUnc_44: 0.0011989486168135766 - ArtUnc_45: -0.0023379869035208283 - ArtUnc_46: 0.0001545301319618089 - ArtUnc_47: 0.000555931868146022 - ArtUnc_48: -2.71013976006483e-05 - ArtUnc_49: 0.00020626001420983263 - ArtUnc_50: 5.820870463682508e-05 - ArtUnc_51: 0.00014939065649090851 - ArtUnc_52: 9.672127646830308e-05 - ArtUnc_53: 1.109866188438674e-05 - ArtUnc_54: 1.7388712029753375e-05 - ArtUnc_55: 2.554443969099818e-05 - ArtUnc_56: -1.6662171502083667e-05 - ArtUnc_57: 0.11990698671213056 - ArtUnc_58: -0.16304725262959285 - ArtUnc_59: -0.2330672324039735 - ArtUnc_60: -0.08346872670813604 - ArtUnc_61: 0.0561300422126411 - ArtUnc_62: 0.05180044908507952 - ArtUnc_63: -0.03058943537058552 - ArtUnc_64: -0.08155023196137727 - ArtUnc_65: -0.07903336729866804 - ArtUnc_66: 0.045303057260935316 - ArtUnc_67: -0.013349390116759171 - ArtUnc_68: -0.02640805009968987 - ArtUnc_69: -0.012559102862259879 - ArtUnc_70: 0.0003946408968876557 - ArtUnc_71: 0.0015003052226944262 - ArtUnc_72: -0.0011507880480597812 - ArtUnc_73: -0.016644764783269997 - ArtUnc_74: -0.01751538637366093 - ArtUnc_75: -0.0022558265607425017 - ArtUnc_76: 0.0004613325151309625 - ArtUnc_77: -0.003493613132642539 - ArtUnc_78: 0.002690829307184598 - ArtUnc_79: 0.006560964965245627 - ArtUnc_80: -0.00094481817009344 - ArtUnc_81: -0.00044521757762512745 - ArtUnc_82: 9.185677018423849e-08 - ArtUnc_83: -0.00011809609694400983 - ArtUnc_84: 0.0005436643903216545 - ArtUnc_85: 6.64884406015711e-05 - ArtUnc_86: 0.0003553342130206749 - ArtUnc_87: -0.0010106515967770208 - ArtUnc_88: -0.00013932834585072567 - ArtUnc_89: -4.664789298302181e-05 - ArtUnc_90: 0.0005146245491329366 - ArtUnc_91: -0.00012595303709050655 - ArtUnc_92: -4.825610490853249e-05 - ArtUnc_93: -7.071954635315597e-05 - ArtUnc_94: 3.920061732910895e-06 - ArtUnc_95: -2.3758346408525107e-05 - ArtUnc_96: 1.3968545028193236e-06 + ArtUnc_1: 8.284240535459942e-05 + ArtUnc_2: -7.143652520747553e-05 + ArtUnc_3: -4.2939106416322474e-05 + ArtUnc_4: 9.189147705604213e-07 + ArtUnc_5: -1.168392477351611e-05 + ArtUnc_6: -5.437220127116407e-06 + ArtUnc_7: -3.186788680124188e-07 + ArtUnc_8: 0.0017507675790445158 + ArtUnc_9: 6.3208949947927375e-06 + ArtUnc_10: -0.0023152786563023693 + ArtUnc_11: -0.001512260185718958 + ArtUnc_12: 0.0002867266414185476 + ArtUnc_13: 0.0011707137810086823 + ArtUnc_14: 0.00037400319118526687 + ArtUnc_15: 0.0010149982650403862 + ArtUnc_16: -0.0004244565163130159 + ArtUnc_17: 0.00034015178709396565 + ArtUnc_18: -0.000192932820089954 + ArtUnc_19: 4.354511051629244e-05 + ArtUnc_20: 3.082354649563666e-05 + ArtUnc_21: 1.7465997797400437e-06 + ArtUnc_22: 1.2057399180159132e-05 + ArtUnc_23: 4.491744744461753e-06 + ArtUnc_24: 9.79744710611963e-07 + ArtUnc_25: 0.000207381057035519 + ArtUnc_26: -0.0004230761354287319 + ArtUnc_27: -0.0031937538950595834 + ArtUnc_28: 0.0002789218703015377 + ArtUnc_29: 0.0003826943616382765 + ArtUnc_30: -0.0021125763707275347 + ArtUnc_31: 4.634065252060755e-05 + ArtUnc_32: 0.0012541085350820632 + ArtUnc_33: 0.0003780885952905535 + ArtUnc_34: 0.0008401347196628806 + ArtUnc_35: 0.0014372357214196374 + ArtUnc_36: 0.0005759556505313191 + ArtUnc_37: 9.800053871621878e-05 + ArtUnc_38: -0.0001049586563108525 + ArtUnc_39: -1.4606526390462278e-05 + ArtUnc_40: -3.996192469797755e-06 + ArtUnc_41: 0.011750948973270116 + ArtUnc_42: -0.015575601828048118 + ArtUnc_43: -0.004189188127765207 + ArtUnc_44: 0.0011989486168144544 + ArtUnc_45: -0.002337986903522328 + ArtUnc_46: 0.00015453013196292003 + ArtUnc_47: -0.0005559318681489714 + ArtUnc_48: 2.7101397601735106e-05 + ArtUnc_49: -0.00020626001420911725 + ArtUnc_50: -5.820870463632121e-05 + ArtUnc_51: -1.6662171501764027e-05 + ArtUnc_52: 2.5544439689513627e-05 + ArtUnc_53: -0.00014939065649154743 + ArtUnc_54: -9.672127646801581e-05 + ArtUnc_55: -1.1098661883805367e-05 + ArtUnc_56: 1.7388712030098158e-05 + ArtUnc_57: -0.11990698671213583 + ArtUnc_58: 0.1630472526295877 + ArtUnc_59: 0.23306723240397223 + ArtUnc_60: 0.08346872670813442 + ArtUnc_61: -0.05613004221263735 + ArtUnc_62: -0.0518004490850811 + ArtUnc_63: 0.030589435370586383 + ArtUnc_64: -0.08155023196137762 + ArtUnc_65: 0.07903336729866912 + ArtUnc_66: 0.04530305726093659 + ArtUnc_67: -0.013349390116759653 + ArtUnc_68: -0.0264080500996915 + ArtUnc_69: -0.012559102862259136 + ArtUnc_70: 0.0011507880480598309 + ArtUnc_71: -0.00039464089688755454 + ArtUnc_72: 0.0015003052226943954 + ArtUnc_73: -0.01664476478326977 + ArtUnc_74: 0.017515386373661138 + ArtUnc_75: 0.0022558265607425716 + ArtUnc_76: 0.00046133251513093 + ArtUnc_77: -0.0034936131326428277 + ArtUnc_78: -0.0026908293071845365 + ArtUnc_79: 0.006560964965245572 + ArtUnc_80: 0.0009448181700934723 + ArtUnc_81: -0.00044521757762517754 + ArtUnc_82: 9.185677018507984e-08 + ArtUnc_83: -0.00011809609694401655 + ArtUnc_84: 0.0005436643903216629 + ArtUnc_85: 6.648844060157769e-05 + ArtUnc_86: 4.8256104908536475e-05 + ArtUnc_87: 7.071954635315663e-05 + ArtUnc_88: 0.00035533421302064275 + ArtUnc_89: 0.00101065159677701 + ArtUnc_90: -0.00013932834585073713 + ArtUnc_91: 2.375834640852458e-05 + ArtUnc_92: 3.920061732908886e-06 + ArtUnc_93: -4.664789298303528e-05 + ArtUnc_94: -0.0005146245491329366 + ArtUnc_95: -0.00012595303709050904 + ArtUnc_96: 1.3968545028191379e-06 - stat: 0 Uncorr: 0.00372 RCES: 0.009759081635072022 @@ -5010,102 +5010,102 @@ bins: ModelRW_2: 0.023279369450223516 JES_1: 0.013690863528645661 JES_2: 0.013690863528645661 - ArtUnc_1: -8.737694534121226e-10 - ArtUnc_2: 1.646459406432666e-09 - ArtUnc_3: 1.5950511990297585e-09 - ArtUnc_4: 1.304097411534912e-10 - ArtUnc_5: 5.508080194962333e-10 - ArtUnc_6: -3.7671139811463697e-10 - ArtUnc_7: -1.2766550800524874e-11 - ArtUnc_8: 1.831855433562771e-07 - ArtUnc_9: 7.59841523925736e-10 - ArtUnc_10: 3.172515480713826e-07 - ArtUnc_11: 2.644748786934261e-07 - ArtUnc_12: -5.4907586638807504e-08 - ArtUnc_13: -2.718473923424106e-07 - ArtUnc_14: -9.213717981734448e-08 - ArtUnc_15: -2.7243632993552247e-07 - ArtUnc_16: 1.2069090293084262e-07 - ArtUnc_17: 9.887766630746757e-08 - ArtUnc_18: -6.492169166503194e-08 - ArtUnc_19: 1.0089425734632696e-08 - ArtUnc_20: 3.782777691680796e-08 - ArtUnc_21: -2.4942538803657166e-08 - ArtUnc_22: 7.1820777657191135e-09 - ArtUnc_23: -4.737267003279405e-09 - ArtUnc_24: 2.6786010092417603e-09 - ArtUnc_25: -2.9575991000909014e-06 - ArtUnc_26: 2.4109347240861037e-06 - ArtUnc_27: 1.9589600326097696e-05 - ArtUnc_28: -2.1605117265004075e-06 - ArtUnc_29: -1.866721069813087e-06 - ArtUnc_30: -8.220576699275737e-06 - ArtUnc_31: -3.148499519731872e-07 - ArtUnc_32: 3.566962795196321e-06 - ArtUnc_33: 9.91053259509128e-07 - ArtUnc_34: -2.229321893011696e-06 - ArtUnc_35: -3.988495166844839e-06 - ArtUnc_36: 2.166989013686728e-06 - ArtUnc_37: 6.645354509139063e-07 - ArtUnc_38: 1.1370711387899895e-06 - ArtUnc_39: -6.259626810449045e-07 - ArtUnc_40: -1.139598981769818e-07 - ArtUnc_41: -0.0011137227426165602 - ArtUnc_42: 0.001141607145327685 - ArtUnc_43: 0.0008346508307615107 - ArtUnc_44: 8.6019434785856e-05 - ArtUnc_45: 0.0005798205279119712 - ArtUnc_46: 0.0004383472277824593 - ArtUnc_47: 0.00012074281722233053 - ArtUnc_48: -0.0005528749315808311 - ArtUnc_49: 0.00017207676192542085 - ArtUnc_50: 0.0004507527380131445 - ArtUnc_51: 0.00048763024663606885 - ArtUnc_52: -0.00018684558503820846 - ArtUnc_53: -0.00015388762592656805 - ArtUnc_54: -1.818698188722652e-05 - ArtUnc_55: -4.812354390019649e-05 - ArtUnc_56: 2.5089994914974807e-05 - ArtUnc_57: 0.004004969220651188 - ArtUnc_58: -0.0036072664081089937 - ArtUnc_59: -0.004505974454369955 - ArtUnc_60: -0.0013454969700595991 - ArtUnc_61: 0.000818722134420752 - ArtUnc_62: 0.00031123049440000554 - ArtUnc_63: -0.0002862908683742836 - ArtUnc_64: -0.00031524814064586633 - ArtUnc_65: -0.00036836388364806913 - ArtUnc_66: 0.0002982348981039499 - ArtUnc_67: -0.00015023875584110896 - ArtUnc_68: -0.0006147404317043047 - ArtUnc_69: -0.0005233603568171549 - ArtUnc_70: 8.244916610592315e-05 - ArtUnc_71: 0.000149859393634602 - ArtUnc_72: -0.0001969746047289603 - ArtUnc_73: 0.003804818333467311 - ArtUnc_74: 0.0007028573295871507 - ArtUnc_75: -0.0011840866023423537 - ArtUnc_76: 0.028353481601100815 - ArtUnc_77: -0.005216149143443748 - ArtUnc_78: -0.06222596545671067 - ArtUnc_79: 0.015037693794520234 - ArtUnc_80: 0.026302069053069095 - ArtUnc_81: 0.014767802765716851 - ArtUnc_82: -1.172977938891221e-06 - ArtUnc_83: -0.006403768686471259 - ArtUnc_84: -0.017996315182303758 - ArtUnc_85: 0.004758655675668418 - ArtUnc_86: -0.0433753782945244 - ArtUnc_87: 0.02937958362476692 - ArtUnc_88: 0.0073881170622491854 - ArtUnc_89: -0.030648055619916185 - ArtUnc_90: -0.013312031052442995 - ArtUnc_91: 0.0008653673756016006 - ArtUnc_92: 0.005074421813299009 - ArtUnc_93: 0.0028297512649376163 - ArtUnc_94: -0.0001033480450327636 - ArtUnc_95: 0.0007635967238544992 - ArtUnc_96: 0.001045600489105708 + ArtUnc_1: -8.737694534121229e-10 + ArtUnc_2: 1.6464594064326736e-09 + ArtUnc_3: 1.5950511990295304e-09 + ArtUnc_4: 1.3040974115525698e-10 + ArtUnc_5: 5.508080194611627e-10 + ArtUnc_6: 3.7671139816293967e-10 + ArtUnc_7: 1.2766550907783893e-11 + ArtUnc_8: -1.8318554335628124e-07 + ArtUnc_9: -7.598415241707395e-10 + ArtUnc_10: 3.172515480713788e-07 + ArtUnc_11: 2.644748786934402e-07 + ArtUnc_12: -5.490758663839249e-08 + ArtUnc_13: -2.718473923425416e-07 + ArtUnc_14: -9.213717981691248e-08 + ArtUnc_15: -2.724363299357123e-07 + ArtUnc_16: 1.2069090292989235e-07 + ArtUnc_17: -9.887766630843156e-08 + ArtUnc_18: 6.492169166509936e-08 + ArtUnc_19: -1.0089425732864725e-08 + ArtUnc_20: -3.7827776916724463e-08 + ArtUnc_21: -2.494253881503824e-08 + ArtUnc_22: 7.18207777277124e-09 + ArtUnc_23: 4.737266987816121e-09 + ArtUnc_24: -2.6786010019964452e-09 + ArtUnc_25: 2.9575991000873583e-06 + ArtUnc_26: -2.4109347240891293e-06 + ArtUnc_27: -1.958960032609601e-05 + ArtUnc_28: 2.1605117264882275e-06 + ArtUnc_29: 1.866721069826176e-06 + ArtUnc_30: -8.22057669927223e-06 + ArtUnc_31: 3.1484995192426904e-07 + ArtUnc_32: 3.566962795179308e-06 + ArtUnc_33: 9.910532595307408e-07 + ArtUnc_34: 2.229321892986007e-06 + ArtUnc_35: 3.9884951668698356e-06 + ArtUnc_36: 2.166989013651135e-06 + ArtUnc_37: 6.645354509858519e-07 + ArtUnc_38: -1.137071138773637e-06 + ArtUnc_39: -6.259626810669443e-07 + ArtUnc_40: -1.139598981579064e-07 + ArtUnc_41: -0.0011137227426165804 + ArtUnc_42: 0.001141607145327739 + ArtUnc_43: 0.0008346508307614627 + ArtUnc_44: 8.601943478581479e-05 + ArtUnc_45: 0.0005798205279119543 + ArtUnc_46: 0.0004383472277824721 + ArtUnc_47: -0.00012074281722239596 + ArtUnc_48: 0.000552874931580836 + ArtUnc_49: -0.00017207676192544896 + ArtUnc_50: -0.0004507527380131608 + ArtUnc_51: 2.508999491499608e-05 + ArtUnc_52: -4.8123543900225626e-05 + ArtUnc_53: -0.0004876302466361276 + ArtUnc_54: 0.00018684558503821334 + ArtUnc_55: 0.00015388762592659022 + ArtUnc_56: -1.8186981887229775e-05 + ArtUnc_57: -0.004004969220651377 + ArtUnc_58: 0.003607266408108926 + ArtUnc_59: 0.004505974454370048 + ArtUnc_60: 0.001345496970059587 + ArtUnc_61: -0.0008187221344207724 + ArtUnc_62: -0.0003112304944000799 + ArtUnc_63: 0.0002862908683742685 + ArtUnc_64: -0.0003152481406459922 + ArtUnc_65: 0.0003683638836481357 + ArtUnc_66: 0.0002982348981041299 + ArtUnc_67: -0.0001502387558411166 + ArtUnc_68: -0.0006147404317045237 + ArtUnc_69: -0.0005233603568172246 + ArtUnc_70: 0.00019697460472897514 + ArtUnc_71: -8.244916610588482e-05 + ArtUnc_72: 0.00014985939363457848 + ArtUnc_73: 0.0038048183334672874 + ArtUnc_74: -0.0007028573295874387 + ArtUnc_75: 0.0011840866023422926 + ArtUnc_76: 0.02835348160110081 + ArtUnc_77: -0.005216149143439307 + ArtUnc_78: 0.06222596545671097 + ArtUnc_79: 0.015037693794521264 + ArtUnc_80: -0.026302069053068946 + ArtUnc_81: 0.01476780276571734 + ArtUnc_82: -1.1729779388745412e-06 + ArtUnc_83: -0.006403768686471221 + ArtUnc_84: -0.017996315182303557 + ArtUnc_85: 0.004758655675668427 + ArtUnc_86: -0.005074421813299028 + ArtUnc_87: -0.002829751264937561 + ArtUnc_88: -0.04337537829452347 + ArtUnc_89: -0.029379583624767714 + ArtUnc_90: 0.007388117062249002 + ArtUnc_91: -0.0007635967238545224 + ArtUnc_92: -0.00010334804503274076 + ArtUnc_93: -0.030648055619916178 + ArtUnc_94: 0.01331203105244284 + ArtUnc_95: 0.0008653673756013533 + ArtUnc_96: 0.001045600489105698 - stat: 0 Uncorr: 2.7600000000000002 RCES: 10.949680417254195 @@ -5121,102 +5121,102 @@ bins: ModelRW_2: 13.114850892023133 JES_1: 0.915960381239276 JES_2: 0.915960381239276 - ArtUnc_1: 28.53461948130384 - ArtUnc_2: -7.123863967078527 - ArtUnc_3: -2.718126555131723 - ArtUnc_4: -0.38992848761021287 - ArtUnc_5: -0.0067074637807442525 - ArtUnc_6: 0.008283999205216913 - ArtUnc_7: -0.0007567391512449102 - ArtUnc_8: 0.2785588228961477 - ArtUnc_9: 0.0015553697559489398 - ArtUnc_10: 0.6841040029689238 - ArtUnc_11: 0.27039826133315903 - ArtUnc_12: -0.025771205810183807 - ArtUnc_13: -0.2019651073492938 - ArtUnc_14: -0.06124574938371301 - ArtUnc_15: -0.13733988140609574 - ArtUnc_16: 0.055592506460016365 - ArtUnc_17: 0.03891494291030174 - ArtUnc_18: -0.022439546494829106 - ArtUnc_19: 0.004613609699705377 - ArtUnc_20: 0.005955233470981325 - ArtUnc_21: -0.000919797110477942 - ArtUnc_22: -0.001561310882612792 - ArtUnc_23: 0.0005657803910753065 - ArtUnc_24: 0.00013845948901261996 - ArtUnc_25: -0.0015884893142737797 - ArtUnc_26: -0.002799873191823955 - ArtUnc_27: -0.012058199532830136 - ArtUnc_28: -0.0010435302393417775 - ArtUnc_29: 0.0008423840084403705 - ArtUnc_30: 0.00685468575650593 - ArtUnc_31: -0.0006563809746295895 - ArtUnc_32: -0.0033977228069870455 - ArtUnc_33: -0.001355084387744165 - ArtUnc_34: 0.0018974214458764834 - ArtUnc_35: 0.0033135972302499035 - ArtUnc_36: -0.0011026071913300026 - ArtUnc_37: -0.0002112098128054945 - ArtUnc_38: -0.00016111750143405293 - ArtUnc_39: 7.780354641443638e-06 - ArtUnc_40: -1.0949039928915275e-05 - ArtUnc_41: 0.000816245137223375 - ArtUnc_42: 0.0006595543728718285 - ArtUnc_43: -0.00019201795704490361 - ArtUnc_44: -0.00029239045544503147 - ArtUnc_45: 0.00029228857947157796 - ArtUnc_46: -0.0001495058040451832 - ArtUnc_47: -0.00034465529271012645 - ArtUnc_48: 0.00011551717262219872 - ArtUnc_49: 0.0001708533090525714 - ArtUnc_50: 0.0001364469829349886 - ArtUnc_51: 0.00014030870040233282 - ArtUnc_52: -2.172973149282298e-05 - ArtUnc_53: -2.5524966768609078e-05 - ArtUnc_54: 1.1225502356581918e-05 - ArtUnc_55: -1.49055443718135e-05 - ArtUnc_56: 9.219831701846346e-06 - ArtUnc_57: 4.691504492441189e-06 - ArtUnc_58: -7.6197052616900875e-06 - ArtUnc_59: -9.825460992185917e-06 - ArtUnc_60: -3.627685529542087e-06 - ArtUnc_61: 2.392677403828972e-06 - ArtUnc_62: 2.6175445500912144e-06 - ArtUnc_63: -1.7619189417090062e-06 - ArtUnc_64: -4.092775317851887e-06 - ArtUnc_65: -4.0074756663387494e-06 - ArtUnc_66: 2.9159524324258453e-06 - ArtUnc_67: -1.0830813048007426e-06 - ArtUnc_68: -3.596523553699565e-06 - ArtUnc_69: -2.322886166859726e-06 - ArtUnc_70: 1.561334361050154e-07 - ArtUnc_71: 6.637580118038576e-08 - ArtUnc_72: -2.5743213044265465e-07 - ArtUnc_73: -6.870695206562224e-07 - ArtUnc_74: -8.574271135635655e-07 - ArtUnc_75: -1.1569485846267584e-07 - ArtUnc_76: -6.437296749786064e-08 - ArtUnc_77: -1.8370731100060585e-07 - ArtUnc_78: 2.4335993445393443e-07 - ArtUnc_79: 3.0163122457541757e-07 - ArtUnc_80: 1.0246606463765263e-07 - ArtUnc_81: 3.8856419054492235e-08 - ArtUnc_82: -3.676040090992887e-11 - ArtUnc_83: 1.978891082722876e-08 - ArtUnc_84: -3.067811729035533e-08 - ArtUnc_85: -1.2655550615767179e-08 - ArtUnc_86: 3.768689079174495e-08 - ArtUnc_87: -3.3591322456585576e-08 - ArtUnc_88: 1.590444265428146e-08 - ArtUnc_89: 1.3221074939131933e-08 - ArtUnc_90: 5.231483778556825e-09 - ArtUnc_91: -6.979669883932993e-09 - ArtUnc_92: 6.92443228530112e-09 - ArtUnc_93: 1.493979649829139e-08 - ArtUnc_94: -1.0576092301005824e-09 - ArtUnc_95: 5.957595733315587e-09 - ArtUnc_96: 1.5437534461032975e-10 + ArtUnc_1: 28.534619481303825 + ArtUnc_2: -7.123863967078508 + ArtUnc_3: -2.7181265551317226 + ArtUnc_4: -0.3899284876102117 + ArtUnc_5: -0.00670746378074466 + ArtUnc_6: -0.008283999205217387 + ArtUnc_7: 0.0007567391512459143 + ArtUnc_8: -0.27855882289615036 + ArtUnc_9: -0.0015553697559445726 + ArtUnc_10: 0.6841040029689246 + ArtUnc_11: 0.2703982613331601 + ArtUnc_12: -0.02577120581018809 + ArtUnc_13: -0.20196510734929263 + ArtUnc_14: -0.061245749383712446 + ArtUnc_15: -0.1373398814060955 + ArtUnc_16: 0.05559250646001657 + ArtUnc_17: -0.03891494291030187 + ArtUnc_18: 0.022439546494828832 + ArtUnc_19: -0.004613609699705583 + ArtUnc_20: -0.005955233470981109 + ArtUnc_21: -0.000919797110477925 + ArtUnc_22: -0.0015613108826127554 + ArtUnc_23: -0.0005657803910752896 + ArtUnc_24: -0.00013845948901258673 + ArtUnc_25: 0.0015884893142738003 + ArtUnc_26: 0.0027998731918240935 + ArtUnc_27: 0.012058199532830109 + ArtUnc_28: 0.0010435302393417168 + ArtUnc_29: -0.0008423840084407331 + ArtUnc_30: 0.006854685756505784 + ArtUnc_31: 0.0006563809746296008 + ArtUnc_32: -0.003397722806987923 + ArtUnc_33: -0.0013550843877417945 + ArtUnc_34: -0.0018974214458767377 + ArtUnc_35: -0.0033135972302497743 + ArtUnc_36: -0.0011026071913299487 + ArtUnc_37: -0.00021120981280549925 + ArtUnc_38: 0.0001611175014340478 + ArtUnc_39: 7.780354641441171e-06 + ArtUnc_40: -1.0949039928915957e-05 + ArtUnc_41: 0.0008162451372233949 + ArtUnc_42: 0.0006595543728718163 + ArtUnc_43: -0.0001920179570449045 + ArtUnc_44: -0.00029239045544503836 + ArtUnc_45: 0.00029228857947158284 + ArtUnc_46: -0.00014950580404518931 + ArtUnc_47: 0.0003446552927101274 + ArtUnc_48: -0.00011551717262218647 + ArtUnc_49: -0.00017085330905257303 + ArtUnc_50: -0.00013644698293498577 + ArtUnc_51: 9.219831701846136e-06 + ArtUnc_52: -1.4905544371813783e-05 + ArtUnc_53: -0.00014030870040233003 + ArtUnc_54: 2.172973149282271e-05 + ArtUnc_55: 2.5524966768608532e-05 + ArtUnc_56: 1.1225502356583022e-05 + ArtUnc_57: -4.691504492441422e-06 + ArtUnc_58: 7.6197052616898715e-06 + ArtUnc_59: 9.825460992185863e-06 + ArtUnc_60: 3.627685529542029e-06 + ArtUnc_61: -2.392677403828778e-06 + ArtUnc_62: -2.617544550091262e-06 + ArtUnc_63: 1.7619189417090515e-06 + ArtUnc_64: -4.0927753178519035e-06 + ArtUnc_65: 4.0074756663388155e-06 + ArtUnc_66: 2.9159524324259093e-06 + ArtUnc_67: -1.0830813048008015e-06 + ArtUnc_68: -3.5965235536997996e-06 + ArtUnc_69: -2.322886166859595e-06 + ArtUnc_70: 2.5743213044265925e-07 + ArtUnc_71: -1.5613343610499397e-07 + ArtUnc_72: 6.637580118037731e-08 + ArtUnc_73: -6.870695206562281e-07 + ArtUnc_74: 8.574271135636011e-07 + ArtUnc_75: 1.1569485846268291e-07 + ArtUnc_76: -6.437296749786422e-08 + ArtUnc_77: -1.837073110006341e-07 + ArtUnc_78: -2.4335993445393687e-07 + ArtUnc_79: 3.0163122457542233e-07 + ArtUnc_80: -1.0246606463765234e-07 + ArtUnc_81: 3.8856419054493195e-08 + ArtUnc_82: -3.6760400909888214e-11 + ArtUnc_83: 1.978891082722819e-08 + ArtUnc_84: -3.067811729035556e-08 + ArtUnc_85: -1.2655550615766943e-08 + ArtUnc_86: -6.924432285300878e-09 + ArtUnc_87: -1.4939796498290833e-08 + ArtUnc_88: 3.768689079174396e-08 + ArtUnc_89: 3.359132245658672e-08 + ArtUnc_90: 1.590444265428233e-08 + ArtUnc_91: -5.957595733315514e-09 + ArtUnc_92: -1.0576092301003206e-09 + ArtUnc_93: 1.3221074939131718e-08 + ArtUnc_94: -5.2314837785566986e-09 + ArtUnc_95: -6.979669883933357e-09 + ArtUnc_96: 1.543753446103767e-10 - stat: 0 Uncorr: 1.22 RCES: 0.3797709309570706 @@ -5232,102 +5232,102 @@ bins: ModelRW_2: 4.5635257444217405 JES_1: 5.288167014665857 JES_2: 5.288167014665857 - ArtUnc_1: 2.297076133139009 - ArtUnc_2: -1.0892033898037945 - ArtUnc_3: -0.46266437928941223 - ArtUnc_4: 0.003459726676908899 - ArtUnc_5: -0.0702479988032363 - ArtUnc_6: 0.025635496777509318 - ArtUnc_7: 0.0011811538975454896 - ArtUnc_8: -5.698072050451222 - ArtUnc_9: -0.01838660928837008 - ArtUnc_10: -6.024756075070182 - ArtUnc_11: -2.9660838975572634 - ArtUnc_12: 0.5090423741530861 - ArtUnc_13: 1.8418379289105657 - ArtUnc_14: 0.51853845035762 - ArtUnc_15: 1.3053603129533569 - ArtUnc_16: -0.4807548269525335 - ArtUnc_17: -0.3546020620221221 - ArtUnc_18: 0.1900089641370534 - ArtUnc_19: -0.03448455438106442 - ArtUnc_20: -0.03347777181934266 - ArtUnc_21: 0.006677665520888274 - ArtUnc_22: 0.005573150621445732 - ArtUnc_23: -0.001614094874854339 - ArtUnc_24: -0.000568273667309047 - ArtUnc_25: 0.13949268880937934 - ArtUnc_26: 0.0735257804556413 - ArtUnc_27: 0.18086565126001672 - ArtUnc_28: 0.02126020679739065 - ArtUnc_29: -0.009972218314624906 - ArtUnc_30: -0.09065927398924303 - ArtUnc_31: 0.0006883162712904542 - ArtUnc_32: 0.04229196904251895 - ArtUnc_33: 0.016219675814081926 - ArtUnc_34: -0.02714390336879897 - ArtUnc_35: -0.043504078961787714 - ArtUnc_36: 0.01651470665811468 - ArtUnc_37: 0.0024434123447176818 - ArtUnc_38: 0.0029714037791766005 - ArtUnc_39: -0.0007310172834329654 - ArtUnc_40: -0.0002113625287745033 - ArtUnc_41: -0.00716087066432244 - ArtUnc_42: -0.00587695178165027 - ArtUnc_43: 0.0017314514208508663 - ArtUnc_44: 0.002553951127823668 - ArtUnc_45: -0.0025656232271245084 - ArtUnc_46: 0.0011881545478557916 - ArtUnc_47: 0.002804030604187064 - ArtUnc_48: -0.0008879580966486244 - ArtUnc_49: -0.0013691464108833973 - ArtUnc_50: -0.0011494198540057236 - ArtUnc_51: -0.0011819515239073419 - ArtUnc_52: 0.0002536231243983661 - ArtUnc_53: 0.00018472562965263277 - ArtUnc_54: -8.73983655878302e-05 - ArtUnc_55: 7.294074042155457e-05 - ArtUnc_56: -9.055078135816856e-05 - ArtUnc_57: -4.885657431811372e-05 - ArtUnc_58: 5.5139030312729935e-05 - ArtUnc_59: 0.00013839594374450177 - ArtUnc_60: 4.877085515415399e-05 - ArtUnc_61: -4.227075372782918e-05 - ArtUnc_62: -2.8700177521540744e-05 - ArtUnc_63: 2.380380668656732e-05 - ArtUnc_64: 5.132418586798756e-05 - ArtUnc_65: 5.261628114177773e-05 - ArtUnc_66: -3.8834498081222535e-05 - ArtUnc_67: 1.3491744321720766e-05 - ArtUnc_68: 3.742843080220253e-05 - ArtUnc_69: 2.0431367214920775e-05 - ArtUnc_70: -7.380420140614505e-07 - ArtUnc_71: -1.1211342621343872e-06 - ArtUnc_72: 6.037085275243379e-07 - ArtUnc_73: 7.3257684432416824e-06 - ArtUnc_74: 8.91679159433491e-06 - ArtUnc_75: 1.162861834698764e-06 - ArtUnc_76: 6.250625946348372e-07 - ArtUnc_77: 1.8200635034374447e-06 - ArtUnc_78: -2.5253370700758245e-06 - ArtUnc_79: -3.227347634136561e-06 - ArtUnc_80: -9.159003097231446e-07 - ArtUnc_81: -3.472046352210964e-07 - ArtUnc_82: 8.06392582351291e-10 - ArtUnc_83: -2.002810595725193e-07 - ArtUnc_84: 2.56765894718828e-07 - ArtUnc_85: 1.2916345002614962e-07 - ArtUnc_86: -4.2204082732703897e-07 - ArtUnc_87: 3.5825707537556616e-07 - ArtUnc_88: -1.3673297886086651e-07 - ArtUnc_89: -1.2730479200691235e-07 - ArtUnc_90: -5.8950569248484984e-08 - ArtUnc_91: 3.969493521176897e-08 - ArtUnc_92: -5.4068451479893034e-08 - ArtUnc_93: -1.388648088096199e-07 - ArtUnc_94: 9.722202506316362e-09 - ArtUnc_95: -5.3828040959302966e-08 - ArtUnc_96: 4.001083540114983e-09 + ArtUnc_1: 2.2970761331390066 + ArtUnc_2: -1.0892033898037916 + ArtUnc_3: -0.4626643792894114 + ArtUnc_4: 0.0034597266768986723 + ArtUnc_5: -0.07024799880322546 + ArtUnc_6: -0.025635496777499604 + ArtUnc_7: -0.0011811538975831683 + ArtUnc_8: 5.698072050451249 + ArtUnc_9: 0.01838660928832924 + ArtUnc_10: -6.02475607507018 + ArtUnc_11: -2.9660838975572674 + ArtUnc_12: 0.509042374153124 + ArtUnc_13: 1.8418379289105533 + ArtUnc_14: 0.5185384503576153 + ArtUnc_15: 1.3053603129533584 + ArtUnc_16: -0.48075482695253724 + ArtUnc_17: 0.3546020620221246 + ArtUnc_18: -0.19000896413705118 + ArtUnc_19: 0.03448455438106577 + ArtUnc_20: 0.0334777718193411 + ArtUnc_21: 0.00667766552088803 + ArtUnc_22: 0.005573150621444783 + ArtUnc_23: 0.0016140948748548712 + ArtUnc_24: 0.000568273667308521 + ArtUnc_25: -0.13949268880938007 + ArtUnc_26: -0.07352578045564359 + ArtUnc_27: -0.1808656512600164 + ArtUnc_28: -0.021260206797389925 + ArtUnc_29: 0.00997221831462979 + ArtUnc_30: -0.09065927398924134 + ArtUnc_31: -0.0006883162712905388 + ArtUnc_32: 0.04229196904252959 + ArtUnc_33: 0.01621967581405243 + ArtUnc_34: 0.027143903368802316 + ArtUnc_35: 0.04350407896178598 + ArtUnc_36: 0.016514706658114008 + ArtUnc_37: 0.0024434123447177863 + ArtUnc_38: -0.002971403779176569 + ArtUnc_39: -0.0007310172834329555 + ArtUnc_40: -0.00021136252877450334 + ArtUnc_41: -0.007160870664322624 + ArtUnc_42: -0.005876951781650189 + ArtUnc_43: 0.0017314514208508819 + ArtUnc_44: 0.002553951127823745 + ArtUnc_45: -0.0025656232271245513 + ArtUnc_46: 0.0011881545478558493 + ArtUnc_47: -0.002804030604187082 + ArtUnc_48: 0.0008879580966485295 + ArtUnc_49: 0.001369146410883418 + ArtUnc_50: 0.0011494198540057063 + ArtUnc_51: -9.055078135816814e-05 + ArtUnc_52: 7.294074042155794e-05 + ArtUnc_53: 0.001181951523907321 + ArtUnc_54: -0.00025362312439836495 + ArtUnc_55: -0.00018472562965263104 + ArtUnc_56: -8.739836558783833e-05 + ArtUnc_57: 4.885657431811609e-05 + ArtUnc_58: -5.51390303127279e-05 + ArtUnc_59: -0.00013839594374450153 + ArtUnc_60: -4.877085515415337e-05 + ArtUnc_61: 4.22707537278272e-05 + ArtUnc_62: 2.8700177521542225e-05 + ArtUnc_63: -2.3803806686567963e-05 + ArtUnc_64: 5.132418586798827e-05 + ArtUnc_65: -5.261628114177895e-05 + ArtUnc_66: -3.88344980812236e-05 + ArtUnc_67: 1.3491744321721498e-05 + ArtUnc_68: 3.7428430802205095e-05 + ArtUnc_69: 2.0431367214919684e-05 + ArtUnc_70: -6.037085275244034e-07 + ArtUnc_71: 7.380420140613976e-07 + ArtUnc_72: -1.1211342621343135e-06 + ArtUnc_73: 7.325768443241816e-06 + ArtUnc_74: -8.916791594335334e-06 + ArtUnc_75: -1.162861834698842e-06 + ArtUnc_76: 6.250625946348806e-07 + ArtUnc_77: 1.82006350343776e-06 + ArtUnc_78: 2.525337070075889e-06 + ArtUnc_79: -3.227347634136641e-06 + ArtUnc_80: 9.159003097231551e-07 + ArtUnc_81: -3.4720463522110955e-07 + ArtUnc_82: 8.063925823509818e-10 + ArtUnc_83: -2.002810595725168e-07 + ArtUnc_84: 2.5676589471883596e-07 + ArtUnc_85: 1.2916345002614888e-07 + ArtUnc_86: 5.406845147989175e-08 + ArtUnc_87: 1.3886480880961782e-07 + ArtUnc_88: -4.220408273270315e-07 + ArtUnc_89: -3.5825707537558045e-07 + ArtUnc_90: -1.3673297886087641e-07 + ArtUnc_91: 5.3828040959303416e-08 + ArtUnc_92: 9.722202506314322e-09 + ArtUnc_93: -1.2730479200691123e-07 + ArtUnc_94: 5.895056924848404e-08 + ArtUnc_95: 3.96949352117729e-08 + ArtUnc_96: 4.001083540114452e-09 - stat: 0 Uncorr: 0.384 RCES: 0.37448860490006897 @@ -5343,102 +5343,102 @@ bins: ModelRW_2: 0.5023286573549234 JES_1: 1.4051744011331833 JES_2: 1.4051744011331833 - ArtUnc_1: -0.0009965196005386932 - ArtUnc_2: -0.0490763710144604 - ArtUnc_3: -0.047564970547462816 - ArtUnc_4: -0.013756699974386742 - ArtUnc_5: 0.0013405642217338104 - ArtUnc_6: 0.00038667537064925343 - ArtUnc_7: 0.00012760105811892577 - ArtUnc_8: -0.31731888380211215 - ArtUnc_9: -0.0011592755697405527 - ArtUnc_10: -0.4504172181733019 - ArtUnc_11: -0.21373373716518707 - ArtUnc_12: 0.07390984381923715 - ArtUnc_13: 0.15323462967136534 - ArtUnc_14: 0.016725144962615363 - ArtUnc_15: 0.061541096508847544 - ArtUnc_16: 0.0012801800918939162 - ArtUnc_17: 0.01019751389634067 - ArtUnc_18: 0.003646885619794577 - ArtUnc_19: 0.007440900959470505 - ArtUnc_20: -0.030597234662372658 - ArtUnc_21: 0.01992090985890483 - ArtUnc_22: -0.008080984027201168 - ArtUnc_23: 0.0025137026103077445 - ArtUnc_24: -0.00041309541960145876 - ArtUnc_25: 0.7665401298664348 - ArtUnc_26: -0.20904621147771893 - ArtUnc_27: -2.472266072161976 - ArtUnc_28: 0.2963104198978536 - ArtUnc_29: 0.2289045278005049 - ArtUnc_30: 1.0542185366477328 - ArtUnc_31: 0.028303682128789087 - ArtUnc_32: -0.4932083605436826 - ArtUnc_33: -0.13788572623234713 - ArtUnc_34: 0.2784114116994266 - ArtUnc_35: 0.47389759816721194 - ArtUnc_36: -0.17395524785263045 - ArtUnc_37: -0.029441826176746566 - ArtUnc_38: -0.02962185468097465 - ArtUnc_39: 0.003793759664381692 - ArtUnc_40: 0.000617116973854914 - ArtUnc_41: 0.07130678915444245 - ArtUnc_42: 0.09783409895431039 - ArtUnc_43: -0.00251864351554638 - ArtUnc_44: -0.02557340624368057 - ArtUnc_45: 0.03679531486118423 - ArtUnc_46: -0.0032245074874930045 - ArtUnc_47: -0.022428942333149526 - ArtUnc_48: -0.002745702202360223 - ArtUnc_49: 0.013380306228957502 - ArtUnc_50: 0.016804630618115865 - ArtUnc_51: 0.016114514223098075 - ArtUnc_52: -0.00524029381954212 - ArtUnc_53: -0.0029677086312849287 - ArtUnc_54: 0.0001902632252158602 - ArtUnc_55: -0.0005791249759598457 - ArtUnc_56: 0.0006300547084760401 - ArtUnc_57: -0.0002804429750602387 - ArtUnc_58: 0.0018944439314549104 - ArtUnc_59: -0.0013271820680700972 - ArtUnc_60: -0.00035204867711393723 - ArtUnc_61: 0.0014031938044521042 - ArtUnc_62: -0.0002882139019710647 - ArtUnc_63: -0.0005940507007868716 - ArtUnc_64: -8.61814497537013e-05 - ArtUnc_65: -0.00027621386915058997 - ArtUnc_66: 0.0008705951659873406 - ArtUnc_67: -0.0002900155986531735 - ArtUnc_68: -0.0010883729771620856 - ArtUnc_69: -0.0005855436480219128 - ArtUnc_70: 0.00010782019438672839 - ArtUnc_71: 7.085871654984603e-05 - ArtUnc_72: -3.89122163738746e-05 - ArtUnc_73: -9.267549343752526e-06 - ArtUnc_74: -1.0338450946925255e-05 - ArtUnc_75: -2.5984669077541534e-06 - ArtUnc_76: -3.7953189242007785e-06 - ArtUnc_77: -6.080111235028886e-06 - ArtUnc_78: 1.1459432837723044e-05 - ArtUnc_79: 1.3531736033283021e-05 - ArtUnc_80: -4.785256084645539e-06 - ArtUnc_81: -1.4476474117621292e-06 - ArtUnc_82: 8.717567938833966e-09 - ArtUnc_83: 2.1625432339053885e-06 - ArtUnc_84: 1.4245958021684796e-06 - ArtUnc_85: -1.5918227317217163e-06 - ArtUnc_86: 1.70581822952215e-06 - ArtUnc_87: -1.638206806189619e-06 - ArtUnc_88: -2.8779633835817855e-07 - ArtUnc_89: -5.728647448866196e-08 - ArtUnc_90: 7.621759654344365e-07 - ArtUnc_91: 4.1672703857240277e-08 - ArtUnc_92: -2.0337474318313564e-06 - ArtUnc_93: -1.5086338157836613e-06 - ArtUnc_94: 6.715287876038684e-08 - ArtUnc_95: -4.343963169364552e-07 - ArtUnc_96: -2.8880854045614826e-07 + ArtUnc_1: -0.0009965196005386923 + ArtUnc_2: -0.04907637101446047 + ArtUnc_3: -0.04756497054746269 + ArtUnc_4: -0.013756699974385526 + ArtUnc_5: 0.0013405642217313753 + ArtUnc_6: -0.0003866753706473783 + ArtUnc_7: -0.00012760105812504135 + ArtUnc_8: 0.3173188838021138 + ArtUnc_9: 0.0011592755697388047 + ArtUnc_10: -0.45041721817330066 + ArtUnc_11: -0.2137337371651879 + ArtUnc_12: 0.07390984381923797 + ArtUnc_13: 0.15323462967136156 + ArtUnc_14: 0.016725144962614295 + ArtUnc_15: 0.06154109650884441 + ArtUnc_16: 0.0012801800918984287 + ArtUnc_17: -0.010197513896344924 + ArtUnc_18: -0.0036468856197927895 + ArtUnc_19: -0.007440900959471428 + ArtUnc_20: 0.030597234662372387 + ArtUnc_21: 0.01992090985890962 + ArtUnc_22: -0.008080984027201216 + ArtUnc_23: -0.002513702610298424 + ArtUnc_24: 0.0004130954196040905 + ArtUnc_25: -0.7665401298664287 + ArtUnc_26: 0.20904621147775262 + ArtUnc_27: 2.4722660721619834 + ArtUnc_28: -0.2963104198978628 + ArtUnc_29: -0.22890452780055967 + ArtUnc_30: 1.0542185366477073 + ArtUnc_31: -0.028303682128787668 + ArtUnc_32: -0.49320836054377415 + ArtUnc_33: -0.1378857262320036 + ArtUnc_34: -0.27841141169946304 + ArtUnc_35: -0.4738975981671955 + ArtUnc_36: -0.17395524785262387 + ArtUnc_37: -0.02944182617674767 + ArtUnc_38: 0.029621854680974245 + ArtUnc_39: 0.0037937596643816225 + ArtUnc_40: 0.0006171169738548413 + ArtUnc_41: 0.07130678915444527 + ArtUnc_42: 0.09783409895430999 + ArtUnc_43: -0.0025186435155468063 + ArtUnc_44: -0.025573406243681544 + ArtUnc_45: 0.03679531486118474 + ArtUnc_46: -0.003224507487493442 + ArtUnc_47: 0.022428942333149793 + ArtUnc_48: 0.0027457022023610472 + ArtUnc_49: -0.013380306228957847 + ArtUnc_50: -0.01680463061811569 + ArtUnc_51: 0.0006300547084760256 + ArtUnc_52: -0.0005791249759598666 + ArtUnc_53: -0.016114514223097707 + ArtUnc_54: 0.005240293819542083 + ArtUnc_55: 0.002967708631284937 + ArtUnc_56: 0.00019026322521595404 + ArtUnc_57: 0.0002804429750602793 + ArtUnc_58: -0.001894443931454924 + ArtUnc_59: 0.0013271820680700766 + ArtUnc_60: 0.00035204867711393067 + ArtUnc_61: -0.0014031938044521107 + ArtUnc_62: 0.000288213901971008 + ArtUnc_63: 0.0005940507007868716 + ArtUnc_64: -8.618144975369645e-05 + ArtUnc_65: 0.0002762138691505921 + ArtUnc_66: 0.0008705951659873383 + ArtUnc_67: -0.0002900155986531886 + ArtUnc_68: -0.001088372977162145 + ArtUnc_69: -0.0005855436480218688 + ArtUnc_70: 3.891221637388164e-05 + ArtUnc_71: -0.00010782019438672507 + ArtUnc_72: 7.085871654984114e-05 + ArtUnc_73: -9.26754934375886e-06 + ArtUnc_74: 1.0338450946933556e-05 + ArtUnc_75: 2.5984669077553655e-06 + ArtUnc_76: -3.7953189242014587e-06 + ArtUnc_77: -6.080111235031745e-06 + ArtUnc_78: -1.145943283772544e-05 + ArtUnc_79: 1.3531736033285865e-05 + ArtUnc_80: 4.785256084644365e-06 + ArtUnc_81: -1.4476474117618153e-06 + ArtUnc_82: 8.717567938832361e-09 + ArtUnc_83: 2.1625432339056964e-06 + ArtUnc_84: 1.4245958021681639e-06 + ArtUnc_85: -1.5918227317219126e-06 + ArtUnc_86: 2.033747431831262e-06 + ArtUnc_87: 1.5086338157833956e-06 + ArtUnc_88: 1.705818229522455e-06 + ArtUnc_89: 1.6382068061899532e-06 + ArtUnc_90: -2.8779633835803196e-07 + ArtUnc_91: 4.3439631693636184e-07 + ArtUnc_92: 6.715287876035183e-08 + ArtUnc_93: -5.728647448855988e-08 + ArtUnc_94: -7.621759654344934e-07 + ArtUnc_95: 4.1672703857164295e-08 + ArtUnc_96: -2.8880854045615154e-07 - stat: 0 Uncorr: 0.09369999999999999 RCES: 0.09759204738092138 @@ -5454,102 +5454,102 @@ bins: ModelRW_2: 0.12919901552450003 JES_1: 0.23475730467655312 JES_2: 0.23475730467655312 - ArtUnc_1: 0.00048222324563112324 - ArtUnc_2: -0.00045481936606475335 - ArtUnc_3: -0.00028651499613534676 - ArtUnc_4: -5.045932370837303e-06 - ArtUnc_5: -6.963204243240137e-05 - ArtUnc_6: 3.525407986547766e-05 - ArtUnc_7: 7.335364810789872e-07 - ArtUnc_8: -0.011353917117131667 - ArtUnc_9: -4.218063182215126e-05 - ArtUnc_10: -0.015707934389066276 - ArtUnc_11: -0.009803885316949507 - ArtUnc_12: 0.002153699370555611 - ArtUnc_13: 0.00753284433765608 - ArtUnc_14: 0.0021950944042568345 - ArtUnc_15: 0.006046097250410136 - ArtUnc_16: -0.002311692799103495 - ArtUnc_17: -0.0017171120266755752 - ArtUnc_18: 0.0010288977453567977 - ArtUnc_19: -0.00011311504002507693 - ArtUnc_20: -0.0005321726757169514 - ArtUnc_21: 0.00031996106432857584 - ArtUnc_22: -9.23556488693514e-05 - ArtUnc_23: 4.181140486327824e-05 - ArtUnc_24: -1.9034702199728612e-05 - ArtUnc_25: 0.020487758169370637 - ArtUnc_26: -0.011574866257633072 - ArtUnc_27: -0.08912912698772604 - ArtUnc_28: 0.008665626267010507 - ArtUnc_29: 0.006635338253214907 - ArtUnc_30: 0.02794587681218538 - ArtUnc_31: 0.000977229749718423 - ArtUnc_32: -0.010216142199214729 - ArtUnc_33: -0.002845330035775146 - ArtUnc_34: 0.005570333273643814 - ArtUnc_35: 0.009662654568295312 - ArtUnc_36: -0.004528737722650618 - ArtUnc_37: -0.0012038460339397936 - ArtUnc_38: -0.0018731277432523967 - ArtUnc_39: 0.0008503564209477177 - ArtUnc_40: 0.000138445622024803 - ArtUnc_41: 0.663849568643789 - ArtUnc_42: -0.5706914172499961 - ArtUnc_43: -0.3775614838740124 - ArtUnc_44: -0.03501730818426179 - ArtUnc_45: -0.22079268371283478 - ArtUnc_46: -0.15556486625569363 - ArtUnc_47: -0.03878286742300643 - ArtUnc_48: 0.1792366648952618 - ArtUnc_49: -0.054283781528397274 - ArtUnc_50: -0.13242443389466826 - ArtUnc_51: -0.13148541911448722 - ArtUnc_52: 0.048082372908605085 - ArtUnc_53: 0.03475140647080293 - ArtUnc_54: 0.0036341293741232877 - ArtUnc_55: 0.007711552695186414 - ArtUnc_56: -0.003416335306032307 - ArtUnc_57: 0.008015429032454417 - ArtUnc_58: -0.04296678302902025 - ArtUnc_59: 0.021593356391990164 - ArtUnc_60: 0.005088828565798807 - ArtUnc_61: -0.024094100946152837 - ArtUnc_62: 0.006406534115998357 - ArtUnc_63: 0.009260583805346435 - ArtUnc_64: -0.0007324592001936841 - ArtUnc_65: 0.0023102409510445264 - ArtUnc_66: -0.011795995784537588 - ArtUnc_67: 0.0037988107609475724 - ArtUnc_68: 0.014005992450294541 - ArtUnc_69: 0.007273315267392656 - ArtUnc_70: -0.001466337672531976 - ArtUnc_71: -0.0009929230225180076 - ArtUnc_72: 0.00042293942566536656 - ArtUnc_73: 0.00011844704664032813 - ArtUnc_74: 0.00023022953652045142 - ArtUnc_75: 5.280533255610051e-05 - ArtUnc_76: 5.8320312563029384e-05 - ArtUnc_77: 0.00013664656253661587 - ArtUnc_78: -0.0002258553331687576 - ArtUnc_79: -0.0003222283740100807 - ArtUnc_80: 8.560658591627343e-05 - ArtUnc_81: 2.7635731751350576e-05 - ArtUnc_82: -1.4471079941618696e-07 - ArtUnc_83: -4.849242745558435e-05 - ArtUnc_84: -2.73851982751988e-05 - ArtUnc_85: 3.691156820800472e-05 - ArtUnc_86: -3.2808291692025e-05 - ArtUnc_87: 5.063474698032525e-05 - ArtUnc_88: 5.9404921856279335e-06 - ArtUnc_89: 1.3945197108891403e-05 - ArtUnc_90: -1.976061848848475e-05 - ArtUnc_91: 5.4158037246835686e-06 - ArtUnc_92: 4.5856356459877216e-05 - ArtUnc_93: 3.282889882737818e-05 - ArtUnc_94: -1.5861418317529727e-06 - ArtUnc_95: 9.969375328917745e-06 - ArtUnc_96: 8.099606377265982e-06 + ArtUnc_1: 0.00048222324563112264 + ArtUnc_2: -0.0004548193660647549 + ArtUnc_3: -0.000286514996135342 + ArtUnc_4: -5.045932370756765e-06 + ArtUnc_5: -6.963204243240928e-05 + ArtUnc_6: -3.525407986559304e-05 + ArtUnc_7: -7.335364812501672e-07 + ArtUnc_8: 0.011353917117131688 + ArtUnc_9: 4.218063182166823e-05 + ArtUnc_10: -0.015707934389066265 + ArtUnc_11: -0.009803885316949498 + ArtUnc_12: 0.0021536993705559898 + ArtUnc_13: 0.007532844337655942 + ArtUnc_14: 0.0021950944042568683 + ArtUnc_15: 0.006046097250410134 + ArtUnc_16: -0.0023116927991033214 + ArtUnc_17: 0.0017171120266754247 + ArtUnc_18: -0.0010288977453566045 + ArtUnc_19: 0.00011311504002460291 + ArtUnc_20: 0.0005321726757171317 + ArtUnc_21: 0.00031996106432853085 + ArtUnc_22: -9.235564886922412e-05 + ArtUnc_23: -4.181140486276274e-05 + ArtUnc_24: 1.90347021989865e-05 + ArtUnc_25: -0.020487758169369312 + ArtUnc_26: 0.011574866257633931 + ArtUnc_27: 0.08912912698772603 + ArtUnc_28: -0.008665626267010482 + ArtUnc_29: -0.006635338253216263 + ArtUnc_30: 0.027945876812184477 + ArtUnc_31: -0.0009772297497179653 + ArtUnc_32: -0.010216142199216087 + ArtUnc_33: -0.002845330035767449 + ArtUnc_34: -0.005570333273645624 + ArtUnc_35: -0.009662654568296104 + ArtUnc_36: -0.004528737722651677 + ArtUnc_37: -0.0012038460339396265 + ArtUnc_38: 0.0018731277432525726 + ArtUnc_39: 0.0008503564209471586 + ArtUnc_40: 0.00013844562202529199 + ArtUnc_41: 0.6638495686437801 + ArtUnc_42: -0.5706914172500034 + ArtUnc_43: -0.37756148387400784 + ArtUnc_44: -0.03501730818425852 + ArtUnc_45: -0.22079268371283536 + ArtUnc_46: -0.1555648662556946 + ArtUnc_47: 0.03878286742300583 + ArtUnc_48: -0.17923666489526285 + ArtUnc_49: 0.05428378152839977 + ArtUnc_50: 0.1324244338946672 + ArtUnc_51: -0.003416335306031974 + ArtUnc_52: 0.007711552695186313 + ArtUnc_53: 0.13148541911448347 + ArtUnc_54: -0.04808237290860438 + ArtUnc_55: -0.03475140647080258 + ArtUnc_56: 0.003634129374122391 + ArtUnc_57: -0.008015429032455383 + ArtUnc_58: 0.042966783029020544 + ArtUnc_59: -0.021593356391989723 + ArtUnc_60: -0.005088828565798671 + ArtUnc_61: 0.024094100946153038 + ArtUnc_62: -0.006406534115997293 + ArtUnc_63: -0.009260583805346423 + ArtUnc_64: -0.0007324592001938286 + ArtUnc_65: -0.0023102409510445 + ArtUnc_66: -0.011795995784537529 + ArtUnc_67: 0.003798810760947751 + ArtUnc_68: 0.014005992450295192 + ArtUnc_69: 0.0072733152673920285 + ArtUnc_70: -0.0004229394256654641 + ArtUnc_71: 0.0014663376725319356 + ArtUnc_72: -0.0009929230225179458 + ArtUnc_73: 0.00011844704664039685 + ArtUnc_74: -0.00023022953652054892 + ArtUnc_75: -5.280533255611597e-05 + ArtUnc_76: 5.8320312563038125e-05 + ArtUnc_77: 0.00013664656253665832 + ArtUnc_78: 0.00022585533316878535 + ArtUnc_79: -0.0003222283740101118 + ArtUnc_80: -8.560658591625873e-05 + ArtUnc_81: 2.7635731751347974e-05 + ArtUnc_82: -1.4471079941616133e-07 + ArtUnc_83: -4.8492427455588045e-05 + ArtUnc_84: -2.7385198275194944e-05 + ArtUnc_85: 3.691156820800699e-05 + ArtUnc_86: -4.585635645987649e-05 + ArtUnc_87: -3.282889882737541e-05 + ArtUnc_88: -3.2808291692027684e-05 + ArtUnc_89: -5.063474698032896e-05 + ArtUnc_90: 5.940492185626315e-06 + ArtUnc_91: -9.96937532891693e-06 + ArtUnc_92: -1.5861418317524066e-06 + ArtUnc_93: 1.394519710889056e-05 + ArtUnc_94: 1.976061848848542e-05 + ArtUnc_95: 5.415803724684479e-06 + ArtUnc_96: 8.099606377266068e-06 - stat: 0 Uncorr: 0.00999 RCES: 0.00032754405428888494 @@ -5565,102 +5565,102 @@ bins: ModelRW_2: 0.1049003516491961 JES_1: 0.0772048228741168 JES_2: 0.0772048228741168 - ArtUnc_1: 8.284240535459945e-05 - ArtUnc_2: -7.143652520747548e-05 - ArtUnc_3: -4.293910641632099e-05 - ArtUnc_4: 9.189147705404e-07 - ArtUnc_5: -1.1683924773492631e-05 - ArtUnc_6: 5.437220127168312e-06 - ArtUnc_7: 3.1867886787515996e-07 - ArtUnc_8: -0.001750767579044543 - ArtUnc_9: -6.320894995004844e-06 - ArtUnc_10: -0.0023152786563023536 - ArtUnc_11: -0.0015122601857190162 - ArtUnc_12: 0.00028672664141823575 - ArtUnc_13: 0.001170713781008741 - ArtUnc_14: 0.00037400319118559457 - ArtUnc_15: 0.0010149982650400344 - ArtUnc_16: -0.0004244565163136573 - ArtUnc_17: -0.00034015178709350026 - ArtUnc_18: 0.00019293282009014468 - ArtUnc_19: -4.3545110517268796e-05 - ArtUnc_20: -3.082354649522926e-05 - ArtUnc_21: 1.7465997791860596e-06 - ArtUnc_22: 1.2057399180629462e-05 - ArtUnc_23: -4.49174474318245e-06 - ArtUnc_24: -9.79744710511551e-07 - ArtUnc_25: -0.00020738105703601545 - ArtUnc_26: 0.000423076135428493 - ArtUnc_27: 0.003193753895059643 - ArtUnc_28: -0.0002789218703016149 - ArtUnc_29: -0.0003826943616379029 - ArtUnc_30: -0.002112576370727655 - ArtUnc_31: -4.6340652522069066e-05 - ArtUnc_32: 0.0012541085350817492 - ArtUnc_33: 0.00037808859529180923 - ArtUnc_34: -0.0008401347196621201 - ArtUnc_35: -0.001437235721419083 - ArtUnc_36: 0.0005759556505316176 - ArtUnc_37: 9.800053871529871e-05 - ArtUnc_38: 0.00010495865631075194 - ArtUnc_39: -1.4606526389308009e-05 - ArtUnc_40: -3.996192470531904e-06 - ArtUnc_41: 0.011750948973267745 - ArtUnc_42: -0.015575601828046928 - ArtUnc_43: -0.0041891881277658785 - ArtUnc_44: 0.0011989486168135766 - ArtUnc_45: -0.0023379869035208283 - ArtUnc_46: 0.0001545301319618089 - ArtUnc_47: 0.000555931868146022 - ArtUnc_48: -2.71013976006483e-05 - ArtUnc_49: 0.00020626001420983263 - ArtUnc_50: 5.820870463682508e-05 - ArtUnc_51: 0.00014939065649090851 - ArtUnc_52: 9.672127646830308e-05 - ArtUnc_53: 1.109866188438674e-05 - ArtUnc_54: 1.7388712029753375e-05 - ArtUnc_55: 2.554443969099818e-05 - ArtUnc_56: -1.6662171502083667e-05 - ArtUnc_57: 0.11990698671213056 - ArtUnc_58: -0.16304725262959285 - ArtUnc_59: -0.2330672324039735 - ArtUnc_60: -0.08346872670813604 - ArtUnc_61: 0.0561300422126411 - ArtUnc_62: 0.05180044908507952 - ArtUnc_63: -0.03058943537058552 - ArtUnc_64: -0.08155023196137727 - ArtUnc_65: -0.07903336729866804 - ArtUnc_66: 0.045303057260935316 - ArtUnc_67: -0.013349390116759171 - ArtUnc_68: -0.02640805009968987 - ArtUnc_69: -0.012559102862259879 - ArtUnc_70: 0.0003946408968876557 - ArtUnc_71: 0.0015003052226944262 - ArtUnc_72: -0.0011507880480597812 - ArtUnc_73: -0.016644764783269997 - ArtUnc_74: -0.01751538637366093 - ArtUnc_75: -0.0022558265607425017 - ArtUnc_76: 0.0004613325151309625 - ArtUnc_77: -0.003493613132642539 - ArtUnc_78: 0.002690829307184598 - ArtUnc_79: 0.006560964965245627 - ArtUnc_80: -0.00094481817009344 - ArtUnc_81: -0.00044521757762512745 - ArtUnc_82: 9.185677018423849e-08 - ArtUnc_83: -0.00011809609694400983 - ArtUnc_84: 0.0005436643903216545 - ArtUnc_85: 6.64884406015711e-05 - ArtUnc_86: 0.0003553342130206749 - ArtUnc_87: -0.0010106515967770208 - ArtUnc_88: -0.00013932834585072567 - ArtUnc_89: -4.664789298302181e-05 - ArtUnc_90: 0.0005146245491329366 - ArtUnc_91: -0.00012595303709050655 - ArtUnc_92: -4.825610490853249e-05 - ArtUnc_93: -7.071954635315597e-05 - ArtUnc_94: 3.920061732910895e-06 - ArtUnc_95: -2.3758346408525107e-05 - ArtUnc_96: 1.3968545028193236e-06 + ArtUnc_1: 8.284240535459942e-05 + ArtUnc_2: -7.143652520747553e-05 + ArtUnc_3: -4.2939106416322474e-05 + ArtUnc_4: 9.189147705604213e-07 + ArtUnc_5: -1.168392477351611e-05 + ArtUnc_6: -5.437220127116407e-06 + ArtUnc_7: -3.186788680124188e-07 + ArtUnc_8: 0.0017507675790445158 + ArtUnc_9: 6.3208949947927375e-06 + ArtUnc_10: -0.0023152786563023693 + ArtUnc_11: -0.001512260185718958 + ArtUnc_12: 0.0002867266414185476 + ArtUnc_13: 0.0011707137810086823 + ArtUnc_14: 0.00037400319118526687 + ArtUnc_15: 0.0010149982650403862 + ArtUnc_16: -0.0004244565163130159 + ArtUnc_17: 0.00034015178709396565 + ArtUnc_18: -0.000192932820089954 + ArtUnc_19: 4.354511051629244e-05 + ArtUnc_20: 3.082354649563666e-05 + ArtUnc_21: 1.7465997797400437e-06 + ArtUnc_22: 1.2057399180159132e-05 + ArtUnc_23: 4.491744744461753e-06 + ArtUnc_24: 9.79744710611963e-07 + ArtUnc_25: 0.000207381057035519 + ArtUnc_26: -0.0004230761354287319 + ArtUnc_27: -0.0031937538950595834 + ArtUnc_28: 0.0002789218703015377 + ArtUnc_29: 0.0003826943616382765 + ArtUnc_30: -0.0021125763707275347 + ArtUnc_31: 4.634065252060755e-05 + ArtUnc_32: 0.0012541085350820632 + ArtUnc_33: 0.0003780885952905535 + ArtUnc_34: 0.0008401347196628806 + ArtUnc_35: 0.0014372357214196374 + ArtUnc_36: 0.0005759556505313191 + ArtUnc_37: 9.800053871621878e-05 + ArtUnc_38: -0.0001049586563108525 + ArtUnc_39: -1.4606526390462278e-05 + ArtUnc_40: -3.996192469797755e-06 + ArtUnc_41: 0.011750948973270116 + ArtUnc_42: -0.015575601828048118 + ArtUnc_43: -0.004189188127765207 + ArtUnc_44: 0.0011989486168144544 + ArtUnc_45: -0.002337986903522328 + ArtUnc_46: 0.00015453013196292003 + ArtUnc_47: -0.0005559318681489714 + ArtUnc_48: 2.7101397601735106e-05 + ArtUnc_49: -0.00020626001420911725 + ArtUnc_50: -5.820870463632121e-05 + ArtUnc_51: -1.6662171501764027e-05 + ArtUnc_52: 2.5544439689513627e-05 + ArtUnc_53: -0.00014939065649154743 + ArtUnc_54: -9.672127646801581e-05 + ArtUnc_55: -1.1098661883805367e-05 + ArtUnc_56: 1.7388712030098158e-05 + ArtUnc_57: -0.11990698671213583 + ArtUnc_58: 0.1630472526295877 + ArtUnc_59: 0.23306723240397223 + ArtUnc_60: 0.08346872670813442 + ArtUnc_61: -0.05613004221263735 + ArtUnc_62: -0.0518004490850811 + ArtUnc_63: 0.030589435370586383 + ArtUnc_64: -0.08155023196137762 + ArtUnc_65: 0.07903336729866912 + ArtUnc_66: 0.04530305726093659 + ArtUnc_67: -0.013349390116759653 + ArtUnc_68: -0.0264080500996915 + ArtUnc_69: -0.012559102862259136 + ArtUnc_70: 0.0011507880480598309 + ArtUnc_71: -0.00039464089688755454 + ArtUnc_72: 0.0015003052226943954 + ArtUnc_73: -0.01664476478326977 + ArtUnc_74: 0.017515386373661138 + ArtUnc_75: 0.0022558265607425716 + ArtUnc_76: 0.00046133251513093 + ArtUnc_77: -0.0034936131326428277 + ArtUnc_78: -0.0026908293071845365 + ArtUnc_79: 0.006560964965245572 + ArtUnc_80: 0.0009448181700934723 + ArtUnc_81: -0.00044521757762517754 + ArtUnc_82: 9.185677018507984e-08 + ArtUnc_83: -0.00011809609694401655 + ArtUnc_84: 0.0005436643903216629 + ArtUnc_85: 6.648844060157769e-05 + ArtUnc_86: 4.8256104908536475e-05 + ArtUnc_87: 7.071954635315663e-05 + ArtUnc_88: 0.00035533421302064275 + ArtUnc_89: 0.00101065159677701 + ArtUnc_90: -0.00013932834585073713 + ArtUnc_91: 2.375834640852458e-05 + ArtUnc_92: 3.920061732908886e-06 + ArtUnc_93: -4.664789298303528e-05 + ArtUnc_94: -0.0005146245491329366 + ArtUnc_95: -0.00012595303709050904 + ArtUnc_96: 1.3968545028191379e-06 - stat: 0 Uncorr: 0.0017000000000000001 RCES: 0.009910646434516772 @@ -5676,99 +5676,99 @@ bins: ModelRW_2: 0.015849447226165332 JES_1: 0.01346821043698828 JES_2: 0.01346821043698828 - ArtUnc_1: -8.737694534121226e-10 - ArtUnc_2: 1.646459406432666e-09 - ArtUnc_3: 1.5950511990297585e-09 - ArtUnc_4: 1.304097411534912e-10 - ArtUnc_5: 5.508080194962333e-10 - ArtUnc_6: -3.7671139811463697e-10 - ArtUnc_7: -1.2766550800524874e-11 - ArtUnc_8: 1.831855433562771e-07 - ArtUnc_9: 7.59841523925736e-10 - ArtUnc_10: 3.172515480713826e-07 - ArtUnc_11: 2.644748786934261e-07 - ArtUnc_12: -5.4907586638807504e-08 - ArtUnc_13: -2.718473923424106e-07 - ArtUnc_14: -9.213717981734448e-08 - ArtUnc_15: -2.7243632993552247e-07 - ArtUnc_16: 1.2069090293084262e-07 - ArtUnc_17: 9.887766630746757e-08 - ArtUnc_18: -6.492169166503194e-08 - ArtUnc_19: 1.0089425734632696e-08 - ArtUnc_20: 3.782777691680796e-08 - ArtUnc_21: -2.4942538803657166e-08 - ArtUnc_22: 7.1820777657191135e-09 - ArtUnc_23: -4.737267003279405e-09 - ArtUnc_24: 2.6786010092417603e-09 - ArtUnc_25: -2.9575991000909014e-06 - ArtUnc_26: 2.4109347240861037e-06 - ArtUnc_27: 1.9589600326097696e-05 - ArtUnc_28: -2.1605117265004075e-06 - ArtUnc_29: -1.866721069813087e-06 - ArtUnc_30: -8.220576699275737e-06 - ArtUnc_31: -3.148499519731872e-07 - ArtUnc_32: 3.566962795196321e-06 - ArtUnc_33: 9.91053259509128e-07 - ArtUnc_34: -2.229321893011696e-06 - ArtUnc_35: -3.988495166844839e-06 - ArtUnc_36: 2.166989013686728e-06 - ArtUnc_37: 6.645354509139063e-07 - ArtUnc_38: 1.1370711387899895e-06 - ArtUnc_39: -6.259626810449045e-07 - ArtUnc_40: -1.139598981769818e-07 - ArtUnc_41: -0.0011137227426165602 - ArtUnc_42: 0.001141607145327685 - ArtUnc_43: 0.0008346508307615107 - ArtUnc_44: 8.6019434785856e-05 - ArtUnc_45: 0.0005798205279119712 - ArtUnc_46: 0.0004383472277824593 - ArtUnc_47: 0.00012074281722233053 - ArtUnc_48: -0.0005528749315808311 - ArtUnc_49: 0.00017207676192542085 - ArtUnc_50: 0.0004507527380131445 - ArtUnc_51: 0.00048763024663606885 - ArtUnc_52: -0.00018684558503820846 - ArtUnc_53: -0.00015388762592656805 - ArtUnc_54: -1.818698188722652e-05 - ArtUnc_55: -4.812354390019649e-05 - ArtUnc_56: 2.5089994914974807e-05 - ArtUnc_57: 0.004004969220651188 - ArtUnc_58: -0.0036072664081089937 - ArtUnc_59: -0.004505974454369955 - ArtUnc_60: -0.0013454969700595991 - ArtUnc_61: 0.000818722134420752 - ArtUnc_62: 0.00031123049440000554 - ArtUnc_63: -0.0002862908683742836 - ArtUnc_64: -0.00031524814064586633 - ArtUnc_65: -0.00036836388364806913 - ArtUnc_66: 0.0002982348981039499 - ArtUnc_67: -0.00015023875584110896 - ArtUnc_68: -0.0006147404317043047 - ArtUnc_69: -0.0005233603568171549 - ArtUnc_70: 8.244916610592315e-05 - ArtUnc_71: 0.000149859393634602 - ArtUnc_72: -0.0001969746047289603 - ArtUnc_73: 0.003804818333467311 - ArtUnc_74: 0.0007028573295871507 - ArtUnc_75: -0.0011840866023423537 - ArtUnc_76: 0.028353481601100815 - ArtUnc_77: -0.005216149143443748 - ArtUnc_78: -0.06222596545671067 - ArtUnc_79: 0.015037693794520234 - ArtUnc_80: 0.026302069053069095 - ArtUnc_81: 0.014767802765716851 - ArtUnc_82: -1.172977938891221e-06 - ArtUnc_83: -0.006403768686471259 - ArtUnc_84: -0.017996315182303758 - ArtUnc_85: 0.004758655675668418 - ArtUnc_86: -0.0433753782945244 - ArtUnc_87: 0.02937958362476692 - ArtUnc_88: 0.0073881170622491854 - ArtUnc_89: -0.030648055619916185 - ArtUnc_90: -0.013312031052442995 - ArtUnc_91: 0.0008653673756016006 - ArtUnc_92: 0.005074421813299009 - ArtUnc_93: 0.0028297512649376163 - ArtUnc_94: -0.0001033480450327636 - ArtUnc_95: 0.0007635967238544992 - ArtUnc_96: 0.001045600489105708 + ArtUnc_1: -8.737694534121229e-10 + ArtUnc_2: 1.6464594064326736e-09 + ArtUnc_3: 1.5950511990295304e-09 + ArtUnc_4: 1.3040974115525698e-10 + ArtUnc_5: 5.508080194611627e-10 + ArtUnc_6: 3.7671139816293967e-10 + ArtUnc_7: 1.2766550907783893e-11 + ArtUnc_8: -1.8318554335628124e-07 + ArtUnc_9: -7.598415241707395e-10 + ArtUnc_10: 3.172515480713788e-07 + ArtUnc_11: 2.644748786934402e-07 + ArtUnc_12: -5.490758663839249e-08 + ArtUnc_13: -2.718473923425416e-07 + ArtUnc_14: -9.213717981691248e-08 + ArtUnc_15: -2.724363299357123e-07 + ArtUnc_16: 1.2069090292989235e-07 + ArtUnc_17: -9.887766630843156e-08 + ArtUnc_18: 6.492169166509936e-08 + ArtUnc_19: -1.0089425732864725e-08 + ArtUnc_20: -3.7827776916724463e-08 + ArtUnc_21: -2.494253881503824e-08 + ArtUnc_22: 7.18207777277124e-09 + ArtUnc_23: 4.737266987816121e-09 + ArtUnc_24: -2.6786010019964452e-09 + ArtUnc_25: 2.9575991000873583e-06 + ArtUnc_26: -2.4109347240891293e-06 + ArtUnc_27: -1.958960032609601e-05 + ArtUnc_28: 2.1605117264882275e-06 + ArtUnc_29: 1.866721069826176e-06 + ArtUnc_30: -8.22057669927223e-06 + ArtUnc_31: 3.1484995192426904e-07 + ArtUnc_32: 3.566962795179308e-06 + ArtUnc_33: 9.910532595307408e-07 + ArtUnc_34: 2.229321892986007e-06 + ArtUnc_35: 3.9884951668698356e-06 + ArtUnc_36: 2.166989013651135e-06 + ArtUnc_37: 6.645354509858519e-07 + ArtUnc_38: -1.137071138773637e-06 + ArtUnc_39: -6.259626810669443e-07 + ArtUnc_40: -1.139598981579064e-07 + ArtUnc_41: -0.0011137227426165804 + ArtUnc_42: 0.001141607145327739 + ArtUnc_43: 0.0008346508307614627 + ArtUnc_44: 8.601943478581479e-05 + ArtUnc_45: 0.0005798205279119543 + ArtUnc_46: 0.0004383472277824721 + ArtUnc_47: -0.00012074281722239596 + ArtUnc_48: 0.000552874931580836 + ArtUnc_49: -0.00017207676192544896 + ArtUnc_50: -0.0004507527380131608 + ArtUnc_51: 2.508999491499608e-05 + ArtUnc_52: -4.8123543900225626e-05 + ArtUnc_53: -0.0004876302466361276 + ArtUnc_54: 0.00018684558503821334 + ArtUnc_55: 0.00015388762592659022 + ArtUnc_56: -1.8186981887229775e-05 + ArtUnc_57: -0.004004969220651377 + ArtUnc_58: 0.003607266408108926 + ArtUnc_59: 0.004505974454370048 + ArtUnc_60: 0.001345496970059587 + ArtUnc_61: -0.0008187221344207724 + ArtUnc_62: -0.0003112304944000799 + ArtUnc_63: 0.0002862908683742685 + ArtUnc_64: -0.0003152481406459922 + ArtUnc_65: 0.0003683638836481357 + ArtUnc_66: 0.0002982348981041299 + ArtUnc_67: -0.0001502387558411166 + ArtUnc_68: -0.0006147404317045237 + ArtUnc_69: -0.0005233603568172246 + ArtUnc_70: 0.00019697460472897514 + ArtUnc_71: -8.244916610588482e-05 + ArtUnc_72: 0.00014985939363457848 + ArtUnc_73: 0.0038048183334672874 + ArtUnc_74: -0.0007028573295874387 + ArtUnc_75: 0.0011840866023422926 + ArtUnc_76: 0.02835348160110081 + ArtUnc_77: -0.005216149143439307 + ArtUnc_78: 0.06222596545671097 + ArtUnc_79: 0.015037693794521264 + ArtUnc_80: -0.026302069053068946 + ArtUnc_81: 0.01476780276571734 + ArtUnc_82: -1.1729779388745412e-06 + ArtUnc_83: -0.006403768686471221 + ArtUnc_84: -0.017996315182303557 + ArtUnc_85: 0.004758655675668427 + ArtUnc_86: -0.005074421813299028 + ArtUnc_87: -0.002829751264937561 + ArtUnc_88: -0.04337537829452347 + ArtUnc_89: -0.029379583624767714 + ArtUnc_90: 0.007388117062249002 + ArtUnc_91: -0.0007635967238545224 + ArtUnc_92: -0.00010334804503274076 + ArtUnc_93: -0.030648055619916178 + ArtUnc_94: 0.01331203105244284 + ArtUnc_95: 0.0008653673756013533 + ArtUnc_96: 0.001045600489105698 diff --git a/nnpdf_data/nnpdf_data/new_commondata/H1_1JET_319GEV_290PB-1_DIF/uncertainties_norm.yaml b/nnpdf_data/nnpdf_data/new_commondata/H1_1JET_319GEV_290PB-1_DIF/uncertainties_norm.yaml index 39257dd0f7..bd557e917e 100644 --- a/nnpdf_data/nnpdf_data/new_commondata/H1_1JET_319GEV_290PB-1_DIF/uncertainties_norm.yaml +++ b/nnpdf_data/nnpdf_data/new_commondata/H1_1JET_319GEV_290PB-1_DIF/uncertainties_norm.yaml @@ -459,102 +459,102 @@ bins: ModelRW_2: 0.0007389265863399421 JES_1: 0.0008237064859523688 JES_2: 0.0008237064859523688 - ArtUnc_1: -5.184077554804865e-09 - ArtUnc_2: 1.1677814854411717e-06 - ArtUnc_3: 6.484945269316032e-06 - ArtUnc_4: 2.9607766166695188e-05 - ArtUnc_5: 1.0260097645233027e-06 - ArtUnc_6: 2.6625129317257976e-07 - ArtUnc_7: 0.00019243537417088768 - ArtUnc_8: -0.0010127354200840373 - ArtUnc_9: 1.8484503325495992e-05 - ArtUnc_10: 0.0004836711327518179 - ArtUnc_11: -0.001000349484245882 - ArtUnc_12: 8.105091416691032e-05 - ArtUnc_13: 0.001560303726292502 - ArtUnc_14: -1.312468346417106e-05 - ArtUnc_15: -2.2591533427099566e-06 - ArtUnc_16: 5.81782659962372e-07 - ArtUnc_17: -1.1337540775552543e-06 - ArtUnc_18: -2.9870296863938236e-09 - ArtUnc_19: 4.885827276898902e-06 - ArtUnc_20: 5.46036666714075e-06 - ArtUnc_21: -1.9999995328936353e-07 - ArtUnc_22: 1.1276225478014803e-05 - ArtUnc_23: 2.415068877154063e-07 - ArtUnc_24: -1.869934832142698e-05 - ArtUnc_25: -8.703721396487764e-06 - ArtUnc_26: -5.289837150205136e-07 - ArtUnc_27: 2.0927443056242083e-05 - ArtUnc_28: -1.1909023961736666e-06 - ArtUnc_29: 1.376509661271128e-07 - ArtUnc_30: 2.3200362872257244e-06 - ArtUnc_31: 9.390934551417529e-07 - ArtUnc_32: 5.2604449124956104e-05 - ArtUnc_33: 2.0294766714359843e-08 - ArtUnc_34: 6.195759482584393e-07 - ArtUnc_35: -9.550353952130715e-07 - ArtUnc_36: -3.7298417895135e-08 - ArtUnc_37: -8.018721329022145e-07 - ArtUnc_38: -1.3985486051413725e-07 - ArtUnc_39: 6.047222284831873e-07 - ArtUnc_40: -2.4299704067399724e-09 - ArtUnc_41: 1.4240506631795575e-07 - ArtUnc_42: -1.763199430666483e-09 - ArtUnc_43: -3.8265962551439144e-07 - ArtUnc_44: 5.247038576006091e-07 - ArtUnc_45: 2.189129079036999e-09 - ArtUnc_46: -1.4438072463173603e-08 - ArtUnc_47: 1.3171349073521783e-08 - ArtUnc_48: 2.791115764211058e-10 - ArtUnc_49: 1.2825201759836086e-06 - ArtUnc_50: 3.9512167365672865e-08 - ArtUnc_51: -4.224301304456276e-09 - ArtUnc_52: -6.7536858555796595e-09 - ArtUnc_53: 1.0953565605416257e-09 - ArtUnc_54: -5.617115275140115e-10 - ArtUnc_55: -1.7820274368217247e-08 - ArtUnc_56: -1.2209974055510865e-09 - ArtUnc_57: -4.019287354504049e-10 - ArtUnc_58: -4.213685453428e-09 - ArtUnc_59: 1.2091701534008238e-10 - ArtUnc_60: 8.476923147506623e-09 - ArtUnc_61: -2.7460661767762e-11 - ArtUnc_62: -2.3627119172180134e-10 - ArtUnc_63: 1.983654630674247e-11 - ArtUnc_64: 6.46630459178119e-08 - ArtUnc_65: 1.1144518540054536e-09 - ArtUnc_66: -4.5764880710363666e-08 - ArtUnc_67: 5.587580325254852e-10 - ArtUnc_68: -6.110199357285555e-10 - ArtUnc_69: 1.7776037748952677e-11 - ArtUnc_70: -2.1053104483385263e-10 - ArtUnc_71: -2.036025074802014e-12 - ArtUnc_72: -5.932777335713809e-10 - ArtUnc_73: -4.280016881337702e-11 - ArtUnc_74: -8.42143694808457e-11 - ArtUnc_75: -9.046981473561906e-10 - ArtUnc_76: -8.71138686602466e-12 - ArtUnc_77: -8.7834967448671e-12 - ArtUnc_78: 1.1157174486689162e-09 - ArtUnc_79: -6.647586284952316e-10 - ArtUnc_80: 2.5056554750085015e-12 - ArtUnc_81: 2.9053533657375577e-11 - ArtUnc_82: 1.614311342765625e-12 - ArtUnc_83: -1.379289251603314e-11 - ArtUnc_84: -2.5599498846856188e-11 - ArtUnc_85: 4.113652347930657e-13 - ArtUnc_86: 3.0054805505082303e-12 - ArtUnc_87: 3.627340632113543e-12 - ArtUnc_88: 1.9168249548639103e-11 - ArtUnc_89: -2.8013289475795883e-12 - ArtUnc_90: 1.7317335682249135e-11 - ArtUnc_91: -2.0340718509919114e-12 - ArtUnc_92: -7.107882979359801e-11 - ArtUnc_93: -1.9824035580746016e-12 - ArtUnc_94: -8.498361675632156e-13 - ArtUnc_95: 3.0305793135592135e-11 - ArtUnc_96: 4.905247241945592e-12 + ArtUnc_1: -5.184077555533741e-09 + ArtUnc_2: 1.1677814854411006e-06 + ArtUnc_3: 6.484945269315138e-06 + ArtUnc_4: 2.9607766166695967e-05 + ArtUnc_5: 1.026009764528549e-06 + ArtUnc_6: 2.662512931754971e-07 + ArtUnc_7: 0.00019243537417088093 + ArtUnc_8: -0.0010127354200840388 + ArtUnc_9: 1.8484503325499536e-05 + ArtUnc_10: 0.00048367113275177076 + ArtUnc_11: -0.0010003494842459083 + ArtUnc_12: -8.105091416697253e-05 + ArtUnc_13: -0.001560303726292504 + ArtUnc_14: -1.3124683464170857e-05 + ArtUnc_15: -2.2591533427100417e-06 + ArtUnc_16: 5.817826599619027e-07 + ArtUnc_17: -1.1337540775553265e-06 + ArtUnc_18: 2.987029686372386e-09 + ArtUnc_19: -4.885827276898941e-06 + ArtUnc_20: 5.46036666714073e-06 + ArtUnc_21: -1.9999995328938429e-07 + ArtUnc_22: 1.127622547801492e-05 + ArtUnc_23: 2.4150688771514286e-07 + ArtUnc_24: -1.8699348321426944e-05 + ArtUnc_25: -8.703721396487673e-06 + ArtUnc_26: -5.289837150206431e-07 + ArtUnc_27: 2.092744305624243e-05 + ArtUnc_28: 1.1909023961737446e-06 + ArtUnc_29: -1.376509661274837e-07 + ArtUnc_30: 2.320036287223341e-06 + ArtUnc_31: -9.390934551493554e-07 + ArtUnc_32: 5.260444912495629e-05 + ArtUnc_33: -2.0294766714438776e-08 + ArtUnc_34: 6.195759482581024e-07 + ArtUnc_35: 9.550353952130143e-07 + ArtUnc_36: 3.729841789513544e-08 + ArtUnc_37: -8.01872132902217e-07 + ArtUnc_38: 1.3985486051409333e-07 + ArtUnc_39: -6.047222284831918e-07 + ArtUnc_40: -2.4299704067528574e-09 + ArtUnc_41: 1.4240506631795265e-07 + ArtUnc_42: 1.7631994306664332e-09 + ArtUnc_43: -3.8265962551438614e-07 + ArtUnc_44: 5.247038576006126e-07 + ArtUnc_45: -2.189129079051947e-09 + ArtUnc_46: -1.44380724631698e-08 + ArtUnc_47: 1.3171349073524332e-08 + ArtUnc_48: -2.7911157642128274e-10 + ArtUnc_49: -1.2825201759836507e-06 + ArtUnc_50: -3.951216736568954e-08 + ArtUnc_51: 4.224301304456062e-09 + ArtUnc_52: 6.753685855579711e-09 + ArtUnc_53: -1.0953565605415092e-09 + ArtUnc_54: 5.61711527514032e-10 + ArtUnc_55: -1.782027436821851e-08 + ArtUnc_56: -1.2209974055510724e-09 + ArtUnc_57: -4.019287354508974e-10 + ArtUnc_58: -4.213685453428593e-09 + ArtUnc_59: 1.2091701533994065e-10 + ArtUnc_60: -8.476923147507564e-09 + ArtUnc_61: 2.7460661768004776e-11 + ArtUnc_62: -2.362711917216108e-10 + ArtUnc_63: 1.9836546306819357e-11 + ArtUnc_64: -6.466304591781763e-08 + ArtUnc_65: 1.114451854006085e-09 + ArtUnc_66: 4.576488071035876e-08 + ArtUnc_67: 5.587580325253636e-10 + ArtUnc_68: -6.110199357284909e-10 + ArtUnc_69: -1.7776037748956474e-11 + ArtUnc_70: 2.105310448338427e-10 + ArtUnc_71: 2.036025074802777e-12 + ArtUnc_72: 5.932777335713569e-10 + ArtUnc_73: 4.2800168813375514e-11 + ArtUnc_74: 8.421436948084789e-11 + ArtUnc_75: -9.046981473561437e-10 + ArtUnc_76: -8.711386866030128e-12 + ArtUnc_77: -8.783496744864512e-12 + ArtUnc_78: 1.1157174486688844e-09 + ArtUnc_79: -6.647586284951538e-10 + ArtUnc_80: 2.5056554750015145e-12 + ArtUnc_81: 2.9053533657378786e-11 + ArtUnc_82: -1.6143113427655448e-12 + ArtUnc_83: -1.3792892516033813e-11 + ArtUnc_84: 2.55994988468569e-11 + ArtUnc_85: -4.1136523479301395e-13 + ArtUnc_86: 3.0054805505082905e-12 + ArtUnc_87: 3.6273406321135882e-12 + ArtUnc_88: -2.8013289475797947e-12 + ArtUnc_89: -1.9168249548640208e-11 + ArtUnc_90: -1.7317335682249917e-11 + ArtUnc_91: -2.0340718509920277e-12 + ArtUnc_92: 7.107882979360044e-11 + ArtUnc_93: -1.982403558075022e-12 + ArtUnc_94: -8.498361675632596e-13 + ArtUnc_95: 3.0305793135593906e-11 + ArtUnc_96: 4.905247241945646e-12 - stat: 0 Uncorr: 0.00032300000000000004 RCES: 0.002372295373699279 @@ -570,102 +570,102 @@ bins: ModelRW_2: 0.0005230256728402537 JES_1: 0.0020453017007766847 JES_2: 0.0020453017007766847 - ArtUnc_1: 9.75354752026044e-11 - ArtUnc_2: -6.2273727859760864e-09 - ArtUnc_3: 1.7087591791453076e-08 - ArtUnc_4: 4.3191107089871855e-07 - ArtUnc_5: 1.5544336954288856e-08 - ArtUnc_6: 7.296344356718899e-09 - ArtUnc_7: 6.546000347583141e-06 - ArtUnc_8: -5.724476102832814e-05 - ArtUnc_9: 1.186505533191221e-06 - ArtUnc_10: 4.336442172325017e-05 - ArtUnc_11: -8.826179700580657e-05 - ArtUnc_12: 7.203021247224612e-06 - ArtUnc_13: 0.00015235000980224025 - ArtUnc_14: -4.796339927818345e-07 - ArtUnc_15: -1.0309022261121592e-06 - ArtUnc_16: 9.391591905535796e-08 - ArtUnc_17: 5.1417193078837926e-06 - ArtUnc_18: 1.678842609126929e-07 - ArtUnc_19: 1.2964071120157593e-05 - ArtUnc_20: -3.0078776123107486e-05 - ArtUnc_21: 1.4925297085899568e-06 - ArtUnc_22: -0.0002355474459410796 - ArtUnc_23: -3.6760785509666088e-06 - ArtUnc_24: 0.0001026755887035469 - ArtUnc_25: 6.497741781848203e-05 - ArtUnc_26: -1.8235778533687866e-05 - ArtUnc_27: -0.000324237010333689 - ArtUnc_28: 1.4688165452172505e-05 - ArtUnc_29: 0.00015227934141965964 - ArtUnc_30: -5.982084023959652e-05 - ArtUnc_31: -2.4570653641737887e-05 - ArtUnc_32: -0.0005046502186004556 - ArtUnc_33: -1.7699603926284625e-07 - ArtUnc_34: -4.9246920619964135e-06 - ArtUnc_35: 7.714627557624803e-06 - ArtUnc_36: 2.239252880549989e-07 - ArtUnc_37: 6.411402027397142e-06 - ArtUnc_38: 1.1162652040399548e-06 - ArtUnc_39: 1.1430952119947786e-06 - ArtUnc_40: -6.74883846534561e-08 - ArtUnc_41: -2.3494255885953138e-06 - ArtUnc_42: 3.5551468648716967e-08 - ArtUnc_43: 4.703836380515397e-06 + ArtUnc_1: 9.753547439539828e-11 + ArtUnc_2: -6.227372784156302e-09 + ArtUnc_3: 1.708759179124174e-08 + ArtUnc_4: 4.319110708990544e-07 + ArtUnc_5: 1.55443369537763e-08 + ArtUnc_6: 7.296344354538225e-09 + ArtUnc_7: 6.5460003475791674e-06 + ArtUnc_8: -5.7244761028330045e-05 + ArtUnc_9: 1.186505533190126e-06 + ArtUnc_10: 4.336442172324861e-05 + ArtUnc_11: -8.82617970058097e-05 + ArtUnc_12: -7.2030212472301245e-06 + ArtUnc_13: -0.00015235000980223684 + ArtUnc_14: -4.796339927814513e-07 + ArtUnc_15: -1.0309022261121442e-06 + ArtUnc_16: 9.39159190546805e-08 + ArtUnc_17: 5.141719307884341e-06 + ArtUnc_18: -1.6788426091245276e-07 + ArtUnc_19: -1.2964071120157313e-05 + ArtUnc_20: -3.0078776123106327e-05 + ArtUnc_21: 1.492529708589883e-06 + ArtUnc_22: -0.00023554744594108016 + ArtUnc_23: -3.676078550964621e-06 + ArtUnc_24: 0.00010267558870354524 + ArtUnc_25: 6.497741781847948e-05 + ArtUnc_26: -1.8235778533686426e-05 + ArtUnc_27: -0.00032423701033369213 + ArtUnc_28: -1.4688165452177336e-05 + ArtUnc_29: -0.0001522793414196557 + ArtUnc_30: -5.9820840239537066e-05 + ArtUnc_31: 2.457065364193579e-05 + ArtUnc_32: -0.000504650218600457 + ArtUnc_33: 1.7699603926293156e-07 + ArtUnc_34: -4.924692061993343e-06 + ArtUnc_35: -7.714627557624232e-06 + ArtUnc_36: -2.2392528805489359e-07 + ArtUnc_37: 6.411402027397098e-06 + ArtUnc_38: -1.1162652040395937e-06 + ArtUnc_39: -1.1430952119947765e-06 + ArtUnc_40: -6.748838465346753e-08 + ArtUnc_41: -2.3494255885952587e-06 + ArtUnc_42: -3.555146864871654e-08 + ArtUnc_43: 4.703836380515194e-06 ArtUnc_44: -1.0566857235536604e-05 - ArtUnc_45: -4.4945124539154526e-08 - ArtUnc_46: -2.4857258556842753e-08 - ArtUnc_47: -1.6350369399768692e-07 - ArtUnc_48: -1.0292275806382017e-08 - ArtUnc_49: -1.4375919532155716e-05 - ArtUnc_50: -4.5840583908422396e-07 - ArtUnc_51: 2.5943913798835746e-08 - ArtUnc_52: 3.02608715287162e-08 - ArtUnc_53: -5.632813063283787e-09 - ArtUnc_54: 3.4802714012216528e-09 - ArtUnc_55: 1.3420913257162435e-07 - ArtUnc_56: -1.9194512317746415e-08 - ArtUnc_57: -4.460334623166559e-09 - ArtUnc_58: 1.857298792904718e-07 - ArtUnc_59: -1.5232168649288685e-09 - ArtUnc_60: -2.4123029218965524e-08 - ArtUnc_61: 1.7882848468395116e-10 - ArtUnc_62: 1.7966622080950064e-09 - ArtUnc_63: -1.571494213326034e-10 - ArtUnc_64: -6.671627784510943e-07 - ArtUnc_65: -1.0251897553522388e-08 - ArtUnc_66: 4.632156231862757e-07 - ArtUnc_67: -6.16158835415434e-09 - ArtUnc_68: 6.201726802225472e-09 - ArtUnc_69: -2.1346750028951346e-10 - ArtUnc_70: 2.4861479308311137e-09 - ArtUnc_71: 2.787441481270428e-11 - ArtUnc_72: 7.099604145631209e-09 - ArtUnc_73: 5.686130851729391e-10 - ArtUnc_74: 1.429200388025044e-09 - ArtUnc_75: 1.0248505960158253e-08 - ArtUnc_76: 1.0475918137978693e-10 - ArtUnc_77: 5.6777043837773735e-11 - ArtUnc_78: -1.2579885201608976e-08 - ArtUnc_79: 7.794043392190016e-09 - ArtUnc_80: -7.579711414809432e-11 - ArtUnc_81: -3.4308525311691373e-10 - ArtUnc_82: -1.7751170490890264e-11 - ArtUnc_83: 1.675001844948625e-10 - ArtUnc_84: 3.033136767964866e-10 - ArtUnc_85: -4.200393841862105e-12 - ArtUnc_86: -2.7784398976117046e-11 - ArtUnc_87: -3.283629617375814e-11 - ArtUnc_88: -2.877883598046446e-10 - ArtUnc_89: 3.125116211258946e-11 - ArtUnc_90: -1.5366438817765233e-10 - ArtUnc_91: 1.518307637548374e-11 - ArtUnc_92: 7.963922779568119e-10 - ArtUnc_93: 1.854010673838889e-11 - ArtUnc_94: 1.30934162861907e-11 - ArtUnc_95: -3.159639964275127e-10 - ArtUnc_96: -5.187217158734205e-11 + ArtUnc_45: 4.4945124539397075e-08 + ArtUnc_46: -2.4857258556887034e-08 + ArtUnc_47: -1.6350369399770955e-07 + ArtUnc_48: 1.0292275806389106e-08 + ArtUnc_49: 1.4375919532156121e-05 + ArtUnc_50: 4.584058390843983e-07 + ArtUnc_51: -2.5943913798833367e-08 + ArtUnc_52: -3.026087152871613e-08 + ArtUnc_53: 5.632813063282722e-09 + ArtUnc_54: -3.4802714012223778e-09 + ArtUnc_55: 1.3420913257163547e-07 + ArtUnc_56: -1.919451231774332e-08 + ArtUnc_57: -4.460334623172426e-09 + ArtUnc_58: 1.8572987929047742e-07 + ArtUnc_59: -1.5232168649282663e-09 + ArtUnc_60: 2.412302921897371e-08 + ArtUnc_61: -1.7882848468633827e-10 + ArtUnc_62: 1.7966622080932891e-09 + ArtUnc_63: -1.5714942133352477e-10 + ArtUnc_64: 6.671627784511517e-07 + ArtUnc_65: -1.025189755352918e-08 + ArtUnc_66: -4.632156231862248e-07 + ArtUnc_67: -6.161588354153124e-09 + ArtUnc_68: 6.201726802224839e-09 + ArtUnc_69: 2.1346750028956372e-10 + ArtUnc_70: -2.4861479308310165e-09 + ArtUnc_71: -2.787441481271272e-11 + ArtUnc_72: -7.099604145631049e-09 + ArtUnc_73: -5.6861308517293e-10 + ArtUnc_74: -1.4292003880250983e-09 + ArtUnc_75: 1.0248505960157929e-08 + ArtUnc_76: 1.0475918137984441e-10 + ArtUnc_77: 5.677704383775364e-11 + ArtUnc_78: -1.2579885201608965e-08 + ArtUnc_79: 7.794043392189298e-09 + ArtUnc_80: -7.579711414801293e-11 + ArtUnc_81: -3.430852531169544e-10 + ArtUnc_82: 1.775117049089012e-11 + ArtUnc_83: 1.675001844948761e-10 + ArtUnc_84: -3.033136767965014e-10 + ArtUnc_85: 4.20039384186154e-12 + ArtUnc_86: -2.7784398976116623e-11 + ArtUnc_87: -3.283629617375756e-11 + ArtUnc_88: 3.125116211259143e-11 + ArtUnc_89: 2.877883598046601e-10 + ArtUnc_90: 1.536643881776656e-10 + ArtUnc_91: 1.5183076375485108e-11 + ArtUnc_92: -7.963922779568559e-10 + ArtUnc_93: 1.8540106738393557e-11 + ArtUnc_94: 1.3093416286191433e-11 + ArtUnc_95: -3.1596399642754e-10 + ArtUnc_96: -5.1872171587344076e-11 - stat: 0 Uncorr: 7.83e-05 RCES: 9.630183814834482e-05 @@ -681,102 +681,102 @@ bins: ModelRW_2: 0.00017772633970377042 JES_1: 0.00028803440171097617 JES_2: 0.00028803440171097617 - ArtUnc_1: 7.051224218170511e-11 - ArtUnc_2: -1.3977675181281722e-08 - ArtUnc_3: -7.119561085980849e-08 - ArtUnc_4: -2.8058198438085766e-07 - ArtUnc_5: -9.592216421389346e-09 - ArtUnc_6: -2.0297899814471796e-09 - ArtUnc_7: -1.347255652054934e-06 - ArtUnc_8: 4.150934493663707e-06 - ArtUnc_9: -5.952842188880549e-08 - ArtUnc_10: 5.4380103949999256e-08 - ArtUnc_11: 7.059796883563438e-08 - ArtUnc_12: -9.139260861121792e-09 - ArtUnc_13: 1.2790170539615172e-06 - ArtUnc_14: 2.561740834704523e-08 - ArtUnc_15: -1.9841482617862814e-08 - ArtUnc_16: 1.619807352846073e-10 - ArtUnc_17: 2.3983235953591063e-07 - ArtUnc_18: 7.139715680012391e-09 - ArtUnc_19: 7.286802604848566e-07 - ArtUnc_20: -1.5345833041427986e-06 - ArtUnc_21: 9.112349277439667e-08 - ArtUnc_22: -1.309874406162031e-05 - ArtUnc_23: -2.366435465708012e-07 - ArtUnc_24: 5.656671937789394e-06 - ArtUnc_25: 7.335671792195618e-06 - ArtUnc_26: -1.4577249046429854e-06 - ArtUnc_27: -2.234281373099328e-05 - ArtUnc_28: 9.327416416809586e-07 - ArtUnc_29: 3.571113044835011e-06 - ArtUnc_30: -2.329824213958802e-06 - ArtUnc_31: -9.539461832915348e-07 - ArtUnc_32: -3.3654680854993295e-05 - ArtUnc_33: -1.0814802951169263e-08 - ArtUnc_34: 5.098518791696569e-07 - ArtUnc_35: -7.814559505920847e-07 - ArtUnc_36: 6.4424889366370495e-06 - ArtUnc_37: 1.9979813786579762e-05 - ArtUnc_38: 3.5595772793985083e-06 - ArtUnc_39: 2.0489934740514856e-05 - ArtUnc_40: 3.02489581171129e-08 - ArtUnc_41: 6.089728888448017e-05 - ArtUnc_42: 3.7802166670696874e-07 - ArtUnc_43: -8.955261597294889e-05 - ArtUnc_44: -4.8024390229445945e-05 - ArtUnc_45: -6.22209842054908e-07 - ArtUnc_46: -1.3687951532626222e-05 - ArtUnc_47: 9.264014209200441e-07 - ArtUnc_48: -1.60940431640056e-08 - ArtUnc_49: 0.00017973388342818194 - ArtUnc_50: 4.459666900135036e-06 - ArtUnc_51: -2.0380504375675267e-07 - ArtUnc_52: 1.0862800138358524e-07 - ArtUnc_53: -3.971425587637444e-09 - ArtUnc_54: -2.9663603746897475e-09 - ArtUnc_55: -1.8811433941313633e-06 - ArtUnc_56: -1.9456883465458955e-06 - ArtUnc_57: -5.713827041414732e-07 - ArtUnc_58: -2.6674338272983187e-06 - ArtUnc_59: 3.8161231902574834e-08 - ArtUnc_60: -2.6960411564784744e-06 - ArtUnc_61: -2.2069932666303474e-09 - ArtUnc_62: 3.133504537482695e-08 - ArtUnc_63: -3.6382703959762624e-09 - ArtUnc_64: 5.3039856593629825e-06 - ArtUnc_65: 3.295262320677758e-08 - ArtUnc_66: -6.5141943706438e-06 - ArtUnc_67: 1.2249385484021418e-07 - ArtUnc_68: -6.042472036353696e-08 - ArtUnc_69: 2.5250031773642886e-09 - ArtUnc_70: -1.6964903821870466e-08 - ArtUnc_71: 4.213129200918381e-11 - ArtUnc_72: -1.0434560435131835e-09 - ArtUnc_73: -2.2988054108962423e-10 - ArtUnc_74: 4.0295819332110446e-08 - ArtUnc_75: 1.1695826127319187e-08 - ArtUnc_76: -1.1125737214142425e-09 - ArtUnc_77: -9.908908004052798e-10 - ArtUnc_78: 2.15663383962382e-07 - ArtUnc_79: 7.525356436863188e-08 - ArtUnc_80: -5.458073635483631e-10 - ArtUnc_81: 6.330795480690561e-09 - ArtUnc_82: -2.2198364046810994e-10 - ArtUnc_83: -1.484624633027967e-09 - ArtUnc_84: -1.368357657876776e-10 - ArtUnc_85: -2.5794689719642245e-10 - ArtUnc_86: 7.61121894871189e-11 - ArtUnc_87: 3.4903456058672834e-11 - ArtUnc_88: -1.7002038126260137e-09 - ArtUnc_89: -7.883110106207349e-11 - ArtUnc_90: 1.183009035226033e-09 - ArtUnc_91: 6.70014151095372e-10 - ArtUnc_92: -1.7580036048981999e-09 - ArtUnc_93: -4.661069203930548e-11 - ArtUnc_94: -5.5651946891794884e-11 - ArtUnc_95: -2.1446402629040687e-10 - ArtUnc_96: -5.192669359744669e-11 + ArtUnc_1: 7.051224216026941e-11 + ArtUnc_2: -1.3977675181295216e-08 + ArtUnc_3: -7.119561085981802e-08 + ArtUnc_4: -2.8058198438083383e-07 + ArtUnc_5: -9.59221642205358e-09 + ArtUnc_6: -2.02978998101931e-09 + ArtUnc_7: -1.3472556520548992e-06 + ArtUnc_8: 4.150934493663712e-06 + ArtUnc_9: -5.952842188927762e-08 + ArtUnc_10: 5.438010394919081e-08 + ArtUnc_11: 7.05979688352413e-08 + ArtUnc_12: 9.139260861476654e-09 + ArtUnc_13: -1.2790170539615633e-06 + ArtUnc_14: 2.5617408347870514e-08 + ArtUnc_15: -1.9841482618095413e-08 + ArtUnc_16: 1.6198073526381094e-10 + ArtUnc_17: 2.3983235953556213e-07 + ArtUnc_18: -7.139715679976194e-09 + ArtUnc_19: -7.286802604846646e-07 + ArtUnc_20: -1.534583304142478e-06 + ArtUnc_21: 9.112349277463271e-08 + ArtUnc_22: -1.3098744061619803e-05 + ArtUnc_23: -2.3664354657076953e-07 + ArtUnc_24: 5.656671937789673e-06 + ArtUnc_25: 7.335671792195338e-06 + ArtUnc_26: -1.4577249046427076e-06 + ArtUnc_27: -2.2342813730992484e-05 + ArtUnc_28: -9.32741641681257e-07 + ArtUnc_29: -3.5711130448348982e-06 + ArtUnc_30: -2.3298242139567014e-06 + ArtUnc_31: 9.539461832991869e-07 + ArtUnc_32: -3.365468085499373e-05 + ArtUnc_33: 1.0814802950801851e-08 + ArtUnc_34: 5.098518791699796e-07 + ArtUnc_35: 7.814559505928643e-07 + ArtUnc_36: -6.442488936637111e-06 + ArtUnc_37: 1.9979813786580084e-05 + ArtUnc_38: -3.559577279397605e-06 + ArtUnc_39: -2.0489934740514652e-05 + ArtUnc_40: 3.024895811611956e-08 + ArtUnc_41: 6.08972888844798e-05 + ArtUnc_42: -3.780216667070498e-07 + ArtUnc_43: -8.955261597295062e-05 + ArtUnc_44: -4.8024390229445863e-05 + ArtUnc_45: 6.222098420543644e-07 + ArtUnc_46: -1.368795153262544e-05 + ArtUnc_47: 9.264014209204773e-07 + ArtUnc_48: 1.6094043163831705e-08 + ArtUnc_49: -0.00017973388342818443 + ArtUnc_50: -4.459666900137267e-06 + ArtUnc_51: 2.038050437567206e-07 + ArtUnc_52: -1.0862800138360604e-07 + ArtUnc_53: 3.9714255876467446e-09 + ArtUnc_54: 2.966360374701162e-09 + ArtUnc_55: -1.8811433941314635e-06 + ArtUnc_56: -1.9456883465457418e-06 + ArtUnc_57: -5.713827041420243e-07 + ArtUnc_58: -2.6674338272983496e-06 + ArtUnc_59: 3.8161231902587136e-08 + ArtUnc_60: 2.6960411564784075e-06 + ArtUnc_61: 2.2069932666540668e-09 + ArtUnc_62: 3.1335045374841156e-08 + ArtUnc_63: -3.6382703959669343e-09 + ArtUnc_64: -5.303985659363463e-06 + ArtUnc_65: 3.295262320683488e-08 + ArtUnc_66: 6.51419437064317e-06 + ArtUnc_67: 1.224938548401954e-07 + ArtUnc_68: -6.0424720363524e-08 + ArtUnc_69: -2.525003177364441e-09 + ArtUnc_70: 1.6964903821867333e-08 + ArtUnc_71: -4.213129200925123e-11 + ArtUnc_72: 1.0434560435049898e-09 + ArtUnc_73: 2.2988054108867716e-10 + ArtUnc_74: -4.029581933211132e-08 + ArtUnc_75: 1.1695826127329766e-08 + ArtUnc_76: -1.1125737214139704e-09 + ArtUnc_77: -9.908908004047555e-10 + ArtUnc_78: 2.1566338396236692e-07 + ArtUnc_79: 7.525356436864798e-08 + ArtUnc_80: -5.458073635477984e-10 + ArtUnc_81: 6.330795480691271e-09 + ArtUnc_82: 2.219836404681475e-10 + ArtUnc_83: -1.4846246330279971e-09 + ArtUnc_84: 1.368357657876286e-10 + ArtUnc_85: 2.579468971964336e-10 + ArtUnc_86: 7.611218948708382e-11 + ArtUnc_87: 3.4903456058610976e-11 + ArtUnc_88: -7.88311010620826e-11 + ArtUnc_89: 1.7002038126260505e-09 + ArtUnc_90: -1.1830090352260171e-09 + ArtUnc_91: 6.700141510953795e-10 + ArtUnc_92: 1.7580036048980386e-09 + ArtUnc_93: -4.661069203930877e-11 + ArtUnc_94: -5.5651946891796474e-11 + ArtUnc_95: -2.1446402629044331e-10 + ArtUnc_96: -5.1926693597453337e-11 - stat: 0 Uncorr: 1.33e-05 RCES: 1.7340058304400248e-05 @@ -792,102 +792,102 @@ bins: ModelRW_2: 4.485956130525575e-05 JES_1: 5.098100096114238e-05 JES_2: 5.098100096114238e-05 - ArtUnc_1: 5.028194037011682e-14 - ArtUnc_2: -7.930923863452117e-12 - ArtUnc_3: -3.500863412875774e-11 - ArtUnc_4: -9.003481958413572e-11 - ArtUnc_5: -3.1431617563460395e-12 - ArtUnc_6: -2.6228551187093957e-13 - ArtUnc_7: 2.4988272275389347e-10 - ArtUnc_8: -7.095544583118769e-09 - ArtUnc_9: 1.7262562013246882e-10 - ArtUnc_10: 9.466624384995902e-09 - ArtUnc_11: -1.8797889805441954e-08 - ArtUnc_12: 1.5481587852640913e-09 - ArtUnc_13: 4.131411529644207e-08 - ArtUnc_14: 1.2381720441638352e-10 - ArtUnc_15: -5.996467589129313e-10 - ArtUnc_16: 4.239274459555293e-11 - ArtUnc_17: 3.8003228588328964e-09 - ArtUnc_18: 1.1617569595827475e-10 - ArtUnc_19: 9.204297352629586e-09 - ArtUnc_20: -3.2952159006435125e-08 - ArtUnc_21: 1.706019035926824e-09 - ArtUnc_22: -3.1590324005269335e-07 - ArtUnc_23: -6.308935847157541e-09 - ArtUnc_24: 1.7278494489381813e-07 - ArtUnc_25: 1.387547211393275e-07 - ArtUnc_26: -2.9595791064755926e-08 - ArtUnc_27: -6.592875651505977e-07 - ArtUnc_28: 2.498500597107091e-08 - ArtUnc_29: 3.1242140113624735e-07 - ArtUnc_30: -1.2830119955878174e-07 - ArtUnc_31: -5.325623570391923e-08 - ArtUnc_32: -1.557857961817653e-06 - ArtUnc_33: -1.8667160575862471e-10 - ArtUnc_34: 3.4328292949324215e-08 - ArtUnc_35: -1.5603640778704735e-08 - ArtUnc_36: 3.414412333334038e-07 - ArtUnc_37: 6.324378226229919e-07 - ArtUnc_38: 1.1310962710340537e-07 - ArtUnc_39: 5.436061122555622e-07 - ArtUnc_40: 9.940743205069577e-09 - ArtUnc_41: 2.723372214838286e-06 - ArtUnc_42: -3.5212973381854846e-09 - ArtUnc_43: -3.2286787244512606e-06 - ArtUnc_44: -1.137559147814426e-06 - ArtUnc_45: -1.8692778347109393e-08 - ArtUnc_46: -4.7039603477273036e-07 - ArtUnc_47: 1.780854677128344e-07 - ArtUnc_48: 6.883291106114957e-09 - ArtUnc_49: 5.5623819126375e-06 - ArtUnc_50: 1.1534748792054565e-07 - ArtUnc_51: 1.028575206998775e-06 - ArtUnc_52: -3.0315609727011743e-07 - ArtUnc_53: -6.972290082412896e-09 - ArtUnc_54: 8.435772815705874e-08 - ArtUnc_55: -1.3118817752018065e-05 - ArtUnc_56: 8.339153477262663e-06 - ArtUnc_57: 2.3637144144613787e-06 - ArtUnc_58: -2.2236860622236262e-05 - ArtUnc_59: -4.699881721535158e-08 - ArtUnc_60: 2.263671637940174e-05 - ArtUnc_61: 3.1315628658612085e-09 - ArtUnc_62: -8.57322660994336e-07 - ArtUnc_63: 9.546774888890239e-08 - ArtUnc_64: 4.3457629674280023e-05 - ArtUnc_65: 1.6714745717973356e-06 - ArtUnc_66: 5.062688865522578e-05 - ArtUnc_67: -1.6624391063533658e-06 - ArtUnc_68: 3.1870521645735013e-07 - ArtUnc_69: -4.135156259850382e-08 - ArtUnc_70: 2.955379799570098e-07 - ArtUnc_71: -2.72632503482665e-09 - ArtUnc_72: -1.3610040269890458e-06 - ArtUnc_73: -1.026442091430942e-07 - ArtUnc_74: -5.69311430194319e-07 - ArtUnc_75: -1.703078184775388e-06 - ArtUnc_76: -6.269284013198872e-09 - ArtUnc_77: 8.642190079210228e-09 - ArtUnc_78: -3.365296810775991e-06 - ArtUnc_79: -1.844309294769266e-06 - ArtUnc_80: 9.498543448093592e-09 - ArtUnc_81: -9.359532363281393e-08 - ArtUnc_82: 5.063739805795015e-09 - ArtUnc_83: 1.6723098673167816e-08 - ArtUnc_84: -1.2576779963022046e-08 - ArtUnc_85: 5.9980743564484816e-09 - ArtUnc_86: -1.4311052060219964e-09 - ArtUnc_87: -1.0586207274605797e-09 - ArtUnc_88: 3.948718245876623e-08 - ArtUnc_89: -1.5082683611736483e-10 - ArtUnc_90: -1.8390899459918704e-08 - ArtUnc_91: -1.2206702689793343e-08 - ArtUnc_92: 3.956258911796859e-08 - ArtUnc_93: 2.2233604812058874e-10 - ArtUnc_94: 1.6431022394437524e-09 - ArtUnc_95: 2.7427779419382887e-09 - ArtUnc_96: 2.071055907394705e-10 + ArtUnc_1: 5.02819392911427e-14 + ArtUnc_2: -7.93092386430135e-12 + ArtUnc_3: -3.500863412851607e-11 + ArtUnc_4: -9.003481958336642e-11 + ArtUnc_5: -3.1431617742647692e-12 + ArtUnc_6: -2.6228548749244885e-13 + ArtUnc_7: 2.4988272275362133e-10 + ArtUnc_8: -7.095544583119142e-09 + ArtUnc_9: 1.7262562010402244e-10 + ArtUnc_10: 9.466624384963338e-09 + ArtUnc_11: -1.879788980545776e-08 + ArtUnc_12: -1.548158785248519e-09 + ArtUnc_13: -4.131411529644298e-08 + ArtUnc_14: 1.2381720443187933e-10 + ArtUnc_15: -5.996467589130546e-10 + ArtUnc_16: 4.2392744590761055e-11 + ArtUnc_17: 3.800322858826508e-09 + ArtUnc_18: -1.161756959648318e-10 + ArtUnc_19: -9.204297352626248e-09 + ArtUnc_20: -3.29521590064212e-08 + ArtUnc_21: 1.7060190359246318e-09 + ArtUnc_22: -3.159032400526775e-07 + ArtUnc_23: -6.308935847250307e-09 + ArtUnc_24: 1.7278494489382729e-07 + ArtUnc_25: 1.3875472113931756e-07 + ArtUnc_26: -2.9595791064606375e-08 + ArtUnc_27: -6.592875651505602e-07 + ArtUnc_28: -2.4985005971144744e-08 + ArtUnc_29: -3.1242140113639304e-07 + ArtUnc_30: -1.2830119955860022e-07 + ArtUnc_31: 5.325623570444768e-08 + ArtUnc_32: -1.557857961817675e-06 + ArtUnc_33: 1.8667160570307258e-10 + ArtUnc_34: 3.4328292949259264e-08 + ArtUnc_35: 1.5603640778777838e-08 + ArtUnc_36: -3.41441233333585e-07 + ArtUnc_37: 6.324378226229994e-07 + ArtUnc_38: -1.1310962710342948e-07 + ArtUnc_39: -5.43606112255573e-07 + ArtUnc_40: 9.94074320502835e-09 + ArtUnc_41: 2.723372214838412e-06 + ArtUnc_42: 3.5212973382349376e-09 + ArtUnc_43: -3.2286787244513157e-06 + ArtUnc_44: -1.137559147814532e-06 + ArtUnc_45: 1.8692778347107762e-08 + ArtUnc_46: -4.703960347728094e-07 + ArtUnc_47: 1.7808546771262623e-07 + ArtUnc_48: -6.883291106153041e-09 + ArtUnc_49: -5.562381912637747e-06 + ArtUnc_50: -1.1534748792065501e-07 + ArtUnc_51: -1.028575206998728e-06 + ArtUnc_52: 3.031560972701436e-07 + ArtUnc_53: 6.9722900824939765e-09 + ArtUnc_54: -8.435772815707573e-08 + ArtUnc_55: -1.3118817752018197e-05 + ArtUnc_56: 8.339153477261923e-06 + ArtUnc_57: 2.363714414463892e-06 + ArtUnc_58: -2.2236860622236516e-05 + ArtUnc_59: -4.699881721560735e-08 + ArtUnc_60: -2.2636716379401355e-05 + ArtUnc_61: -3.1315628659250002e-09 + ArtUnc_62: -8.573226609941899e-07 + ArtUnc_63: 9.546774888907887e-08 + ArtUnc_64: -4.345762967427407e-05 + ArtUnc_65: 1.6714745717974936e-06 + ArtUnc_66: -5.062688865522955e-05 + ArtUnc_67: -1.662439106353279e-06 + ArtUnc_68: 3.187052164572777e-07 + ArtUnc_69: 4.13515625985064e-08 + ArtUnc_70: -2.9553797995699014e-07 + ArtUnc_71: 2.7263250348303047e-09 + ArtUnc_72: 1.3610040269891257e-06 + ArtUnc_73: 1.0264420914310467e-07 + ArtUnc_74: 5.69311430194333e-07 + ArtUnc_75: -1.7030781847754871e-06 + ArtUnc_76: -6.269284013211263e-09 + ArtUnc_77: 8.642190079204772e-09 + ArtUnc_78: -3.365296810775796e-06 + ArtUnc_79: -1.84430929476948e-06 + ArtUnc_80: 9.498543448078409e-09 + ArtUnc_81: -9.359532363282695e-08 + ArtUnc_82: -5.063739805795505e-09 + ArtUnc_83: 1.672309867316878e-08 + ArtUnc_84: 1.257677996302173e-08 + ArtUnc_85: -5.998074356448583e-09 + ArtUnc_86: -1.4311052060218262e-09 + ArtUnc_87: -1.0586207274600761e-09 + ArtUnc_88: -1.508268361170333e-10 + ArtUnc_89: -3.94871824587661e-08 + ArtUnc_90: 1.8390899459919323e-08 + ArtUnc_91: -1.220670268979323e-08 + ArtUnc_92: -3.9562589117971506e-08 + ArtUnc_93: 2.223360481207455e-10 + ArtUnc_94: 1.6431022394438529e-09 + ArtUnc_95: 2.7427779419367713e-09 + ArtUnc_96: 2.0710559073924454e-10 - stat: 0 Uncorr: 1.59e-06 RCES: 4.999835839305126e-06 @@ -903,102 +903,102 @@ bins: ModelRW_2: 6.678340705594467e-06 JES_1: 9.351227841305119e-06 JES_2: 9.351227841305119e-06 - ArtUnc_1: 3.1649577406472285e-16 - ArtUnc_2: -5.2335776188955977e-14 - ArtUnc_3: 1.2009689613669813e-13 - ArtUnc_4: 5.2775724723700894e-12 - ArtUnc_5: 1.9602453108170133e-13 - ArtUnc_6: 1.195060314105756e-13 - ArtUnc_7: 1.1770919468664458e-10 - ArtUnc_8: -1.4179526772946948e-09 - ArtUnc_9: 3.14077879028471e-11 - ArtUnc_10: 1.5709557509771584e-09 - ArtUnc_11: -3.1240802535423297e-09 - ArtUnc_12: 2.51872726822909e-10 - ArtUnc_13: 7.045050237369375e-09 - ArtUnc_14: -2.488938284850154e-11 - ArtUnc_15: -6.151766026702624e-11 - ArtUnc_16: 5.5825738656037795e-12 - ArtUnc_17: 3.9609087454243e-10 - ArtUnc_18: 1.2186192509001654e-11 - ArtUnc_19: 1.2867497103020471e-09 - ArtUnc_20: -4.035383590529823e-09 - ArtUnc_21: 2.330392107992802e-10 - ArtUnc_22: -4.487504907636015e-08 - ArtUnc_23: -7.936318198450206e-10 - ArtUnc_24: 2.371442818122049e-08 - ArtUnc_25: 1.5749752398151737e-08 - ArtUnc_26: -4.309261165056775e-09 - ArtUnc_27: -9.798403070582949e-08 - ArtUnc_28: 4.94433998787048e-09 - ArtUnc_29: 5.412031033566136e-08 - ArtUnc_30: -2.2124207161286627e-08 - ArtUnc_31: -9.099620059223857e-09 - ArtUnc_32: -2.421228490786892e-07 - ArtUnc_33: -7.643746274094484e-11 - ArtUnc_34: -2.531175015935894e-09 - ArtUnc_35: 4.649292937028954e-09 - ArtUnc_36: -2.160183108841626e-10 - ArtUnc_37: 1.4995257681071308e-09 - ArtUnc_38: 1.5743773339187948e-10 - ArtUnc_39: -7.455873430701368e-09 - ArtUnc_40: -4.95794967743893e-11 - ArtUnc_41: -2.9637995205923787e-08 - ArtUnc_42: -1.4364644653881406e-09 - ArtUnc_43: 8.010985922253673e-08 - ArtUnc_44: 1.1402569191216392e-08 - ArtUnc_45: 4.703198444676842e-10 - ArtUnc_46: 1.002303393172774e-08 - ArtUnc_47: 7.62877990502964e-09 - ArtUnc_48: 4.3229700829160684e-10 - ArtUnc_49: -3.164264343361119e-07 - ArtUnc_50: -1.2443658523872265e-08 - ArtUnc_51: 5.759850014050222e-08 - ArtUnc_52: -4.171637040698967e-08 - ArtUnc_53: 2.9314420570197154e-09 - ArtUnc_54: 3.51842026721901e-09 - ArtUnc_55: -4.505148231943277e-07 - ArtUnc_56: 4.7492041930748927e-07 - ArtUnc_57: 1.41493406225733e-07 - ArtUnc_58: -5.06873105407887e-07 - ArtUnc_59: -4.014248528161996e-09 - ArtUnc_60: 6.52500989313911e-07 - ArtUnc_61: -7.476582193153976e-10 - ArtUnc_62: -6.22455801358553e-08 - ArtUnc_63: 5.9473529005908975e-09 - ArtUnc_64: 4.6023902239761547e-07 - ArtUnc_65: 1.4696462627758393e-08 - ArtUnc_66: 8.742215561409534e-07 - ArtUnc_67: 2.6854374134708383e-07 - ArtUnc_68: -2.51560080948986e-08 - ArtUnc_69: 9.12920090977178e-08 - ArtUnc_70: -2.008073335549839e-06 - ArtUnc_71: -2.98185579529821e-08 - ArtUnc_72: -1.2038558502868007e-06 - ArtUnc_73: 3.7382863737146895e-09 - ArtUnc_74: -7.397192237967821e-06 - ArtUnc_75: -1.1239358915611417e-07 - ArtUnc_76: 1.9660642274449522e-07 - ArtUnc_77: 2.0281556677640734e-07 - ArtUnc_78: 1.2953754330490816e-05 - ArtUnc_79: -2.1173808847071083e-05 - ArtUnc_80: 3.9649564622569576e-07 - ArtUnc_81: 2.68212297280555e-07 - ArtUnc_82: 5.16968632898392e-08 - ArtUnc_83: -1.5922154831443385e-07 - ArtUnc_84: -7.311494935121377e-07 - ArtUnc_85: -2.964885666779676e-09 - ArtUnc_86: -2.056962891334488e-08 - ArtUnc_87: -2.213952086686656e-08 - ArtUnc_88: 9.456451570328827e-07 - ArtUnc_89: -3.832132486986422e-08 - ArtUnc_90: -2.9598162641288955e-07 - ArtUnc_91: 1.3646041135443824e-07 - ArtUnc_92: -1.63688694421884e-06 - ArtUnc_93: -4.626251923597679e-09 - ArtUnc_94: -2.9079417657433032e-08 - ArtUnc_95: 1.2467227997216099e-08 - ArtUnc_96: -9.500208452471877e-09 + ArtUnc_1: 3.1649572545798636e-16 + ArtUnc_2: -5.233577612250058e-14 + ArtUnc_3: 1.2009689584926394e-13 + ArtUnc_4: 5.277572473053857e-12 + ArtUnc_5: 1.9602452330203135e-13 + ArtUnc_6: 1.1950603216690673e-13 + ArtUnc_7: 1.177091946862514e-10 + ArtUnc_8: -1.4179526772949043e-09 + ArtUnc_9: 3.140778790121353e-11 + ArtUnc_10: 1.5709557509707463e-09 + ArtUnc_11: -3.1240802535447885e-09 + ArtUnc_12: -2.518727268235315e-10 + ArtUnc_13: -7.045050237369745e-09 + ArtUnc_14: -2.4889382837967554e-11 + ArtUnc_15: -6.151766026825989e-11 + ArtUnc_16: 5.582573905562612e-12 + ArtUnc_17: 3.960908745469827e-10 + ArtUnc_18: -1.2186192497896489e-11 + ArtUnc_19: -1.2867497103024744e-09 + ArtUnc_20: -4.035383590529554e-09 + ArtUnc_21: 2.330392107937851e-10 + ArtUnc_22: -4.487504907636002e-08 + ArtUnc_23: -7.936318198209268e-10 + ArtUnc_24: 2.371442818121514e-08 + ArtUnc_25: 1.574975239816285e-08 + ArtUnc_26: -4.309261165127264e-09 + ArtUnc_27: -9.7984030705831e-08 + ArtUnc_28: -4.944339987828451e-09 + ArtUnc_29: -5.412031033562565e-08 + ArtUnc_30: -2.2124207161280466e-08 + ArtUnc_31: 9.099620059241552e-09 + ArtUnc_32: -2.4212284907869234e-07 + ArtUnc_33: 7.643746265587136e-11 + ArtUnc_34: -2.531175015901532e-09 + ArtUnc_35: -4.649292937064408e-09 + ArtUnc_36: 2.1601831095153314e-10 + ArtUnc_37: 1.4995257681146108e-09 + ArtUnc_38: -1.5743773344953369e-10 + ArtUnc_39: 7.455873430691035e-09 + ArtUnc_40: -4.957949681526738e-11 + ArtUnc_41: -2.9637995206043367e-08 + ArtUnc_42: 1.4364644653972603e-09 + ArtUnc_43: 8.010985922253236e-08 + ArtUnc_44: 1.1402569191300257e-08 + ArtUnc_45: -4.70319844532275e-10 + ArtUnc_46: 1.0023033931634319e-08 + ArtUnc_47: 7.628779905008244e-09 + ArtUnc_48: -4.3229700830991953e-10 + ArtUnc_49: 3.164264343360258e-07 + ArtUnc_50: 1.244365852390118e-08 + ArtUnc_51: -5.759850014053632e-08 + ArtUnc_52: 4.17163704070633e-08 + ArtUnc_53: -2.931442056952663e-09 + ArtUnc_54: -3.5184202673116693e-09 + ArtUnc_55: -4.5051482319390554e-07 + ArtUnc_56: 4.7492041930752146e-07 + ArtUnc_57: 1.4149340622586435e-07 + ArtUnc_58: -5.06873105407668e-07 + ArtUnc_59: -4.014248528158959e-09 + ArtUnc_60: -6.525009893137404e-07 + ArtUnc_61: 7.476582192990769e-10 + ArtUnc_62: -6.224558013585522e-08 + ArtUnc_63: 5.947352900612051e-09 + ArtUnc_64: -4.6023902239792263e-07 + ArtUnc_65: 1.469646262779821e-08 + ArtUnc_66: -8.742215561408021e-07 + ArtUnc_67: 2.685437413470425e-07 + ArtUnc_68: -2.515600809491753e-08 + ArtUnc_69: -9.129200909773729e-08 + ArtUnc_70: 2.0080733355498856e-06 + ArtUnc_71: 2.981855795298056e-08 + ArtUnc_72: 1.2038558502867265e-06 + ArtUnc_73: -3.738286373691037e-09 + ArtUnc_74: 7.397192237967834e-06 + ArtUnc_75: -1.1239358915581491e-07 + ArtUnc_76: 1.9660642274449898e-07 + ArtUnc_77: 2.0281556677642994e-07 + ArtUnc_78: 1.2953754330491275e-05 + ArtUnc_79: -2.117380884707036e-05 + ArtUnc_80: 3.964956462254869e-07 + ArtUnc_81: 2.6821229728058613e-07 + ArtUnc_82: -5.169686328983974e-08 + ArtUnc_83: -1.592215483144535e-07 + ArtUnc_84: 7.311494935121575e-07 + ArtUnc_85: 2.9648856667801234e-09 + ArtUnc_86: -2.056962891334345e-08 + ArtUnc_87: -2.2139520866865153e-08 + ArtUnc_88: -3.832132486986376e-08 + ArtUnc_89: -9.456451570329005e-07 + ArtUnc_90: 2.959816264128777e-07 + ArtUnc_91: 1.36460411354434e-07 + ArtUnc_92: 1.6368869442189318e-06 + ArtUnc_93: -4.62625192359946e-09 + ArtUnc_94: -2.907941765743483e-08 + ArtUnc_95: 1.2467227997260188e-08 + ArtUnc_96: -9.500208452465233e-09 - stat: 0 Uncorr: 2.41e-07 RCES: 8.112818548907648e-07 @@ -1014,102 +1014,102 @@ bins: ModelRW_2: 1.82341625664575e-07 JES_1: 2.1147471921248644e-06 JES_2: 2.1147471921248644e-06 - ArtUnc_1: 7.525551366001484e-19 - ArtUnc_2: 1.701106506288059e-18 - ArtUnc_3: 2.2088374552042653e-17 - ArtUnc_4: 1.2241962773743911e-16 - ArtUnc_5: 4.1406436477623455e-18 - ArtUnc_6: 1.8386320253768616e-18 - ArtUnc_7: 4.662605559313038e-16 - ArtUnc_8: 3.695906971419403e-15 - ArtUnc_9: 4.122837894431185e-17 - ArtUnc_10: -1.6732250972111107e-14 - ArtUnc_11: 2.906247935821747e-14 - ArtUnc_12: -2.0735468235288463e-15 - ArtUnc_13: -1.0956125714153958e-13 - ArtUnc_14: -7.645551120169018e-16 - ArtUnc_15: 4.445232600208668e-15 - ArtUnc_16: -2.675055029764981e-16 - ArtUnc_17: -6.686565834916709e-15 - ArtUnc_18: -1.8429778988880834e-16 - ArtUnc_19: -5.309393895649595e-14 - ArtUnc_20: 1.6034412809639874e-13 - ArtUnc_21: -9.114499218152497e-15 - ArtUnc_22: 2.8160976159435096e-12 - ArtUnc_23: 5.926044547378676e-14 - ArtUnc_24: -1.9827743594024963e-12 - ArtUnc_25: -2.8747873250231603e-13 - ArtUnc_26: 1.604025822026323e-13 - ArtUnc_27: 8.751908398158677e-12 - ArtUnc_28: -3.2430577908284667e-13 - ArtUnc_29: -6.553866975505245e-12 - ArtUnc_30: 2.568968732181833e-12 - ArtUnc_31: 1.0753638368186946e-12 - ArtUnc_32: 4.1544951068355053e-11 - ArtUnc_33: 1.7348281782282054e-15 - ArtUnc_34: -1.504056954162059e-12 - ArtUnc_35: 7.984848532177075e-13 - ArtUnc_36: -2.4281165361645328e-11 - ArtUnc_37: -4.7504459545822565e-11 - ArtUnc_38: -9.352170382311762e-12 - ArtUnc_39: -5.003011145125786e-11 - ArtUnc_40: -9.794687296308413e-13 - ArtUnc_41: -3.3840096663886415e-10 - ArtUnc_42: -9.145350862669522e-12 - ArtUnc_43: 5.444991103340965e-10 - ArtUnc_44: 2.164790135154207e-10 - ArtUnc_45: 5.036337926644948e-12 - ArtUnc_46: 7.572012011905827e-11 - ArtUnc_47: 1.3122931491819182e-11 - ArtUnc_48: 1.623502336058403e-12 - ArtUnc_49: -1.446386899261996e-09 - ArtUnc_50: -6.487919379622005e-11 - ArtUnc_51: -2.5640452705376276e-10 - ArtUnc_52: 1.9086491769857173e-11 - ArtUnc_53: 6.004925716784896e-11 - ArtUnc_54: -1.3528719568469096e-11 - ArtUnc_55: 1.1799485815549566e-08 - ArtUnc_56: -9.975340208778051e-09 - ArtUnc_57: -2.2521217812461434e-09 - ArtUnc_58: 2.8046997584408207e-08 - ArtUnc_59: 2.2103976595498915e-10 - ArtUnc_60: -3.3649817451945465e-08 - ArtUnc_61: -1.1740658032909334e-10 - ArtUnc_62: -2.4023398508546184e-09 - ArtUnc_63: 1.7391658748616523e-10 - ArtUnc_64: -8.892744340589307e-08 - ArtUnc_65: -4.7974890767403846e-09 - ArtUnc_66: -1.223645169680704e-07 - ArtUnc_67: 3.0406525795472946e-08 - ArtUnc_68: -6.8622035401585674e-09 - ArtUnc_69: 7.665774654291003e-09 - ArtUnc_70: -1.480625126632562e-07 - ArtUnc_71: -2.0979076256279665e-09 - ArtUnc_72: -5.12220960070288e-08 - ArtUnc_73: -1.3362480636346698e-10 - ArtUnc_74: -2.7175826221355415e-07 - ArtUnc_75: -4.951873092023613e-08 - ArtUnc_76: 3.1980767459502424e-09 - ArtUnc_77: 1.1602659070867372e-08 - ArtUnc_78: 2.0132775223614465e-07 - ArtUnc_79: -3.730666429976659e-07 - ArtUnc_80: 5.992296682740758e-09 - ArtUnc_81: -4.792623496430073e-09 - ArtUnc_82: 1.0624184782711253e-09 - ArtUnc_83: 9.610625844063604e-08 - ArtUnc_84: 1.269439672133434e-07 - ArtUnc_85: 6.457187616301165e-07 - ArtUnc_86: -2.931789992925559e-07 - ArtUnc_87: -3.93721173068405e-07 - ArtUnc_88: -1.8185695363265478e-07 - ArtUnc_89: 4.955158818554088e-08 - ArtUnc_90: -1.0973584506276621e-06 - ArtUnc_91: -6.700710340023026e-06 - ArtUnc_92: 4.1782353724122134e-08 - ArtUnc_93: 6.932943847533906e-08 - ArtUnc_94: 1.1183383282740128e-07 - ArtUnc_95: -2.9181645166768724e-06 - ArtUnc_96: -6.066089548558548e-07 + ArtUnc_1: 7.525551332810761e-19 + ArtUnc_2: 1.7011065060993183e-18 + ArtUnc_3: 2.2088374550225672e-17 + ArtUnc_4: 1.2241962774379785e-16 + ArtUnc_5: 4.140643639484835e-18 + ArtUnc_6: 1.838631669346577e-18 + ArtUnc_7: 4.662605559246975e-16 + ArtUnc_8: 3.6959069714146945e-15 + ArtUnc_9: 4.1228378670082187e-17 + ArtUnc_10: -1.6732250973069617e-14 + ArtUnc_11: 2.906247935746357e-14 + ArtUnc_12: 2.07354682755585e-15 + ArtUnc_13: 1.0956125714146772e-13 + ArtUnc_14: -7.645551038861831e-16 + ArtUnc_15: 4.445232595615555e-15 + ArtUnc_16: -2.675054665071818e-16 + ArtUnc_17: -6.686565834819298e-15 + ArtUnc_18: 1.8429779658553334e-16 + ArtUnc_19: 5.3093938955127536e-14 + ArtUnc_20: 1.6034412809324093e-13 + ArtUnc_21: -9.114499216275052e-15 + ArtUnc_22: 2.8160976159407595e-12 + ArtUnc_23: 5.926044542417139e-14 + ArtUnc_24: -1.9827743594159214e-12 + ArtUnc_25: -2.8747873249342066e-13 + ArtUnc_26: 1.6040258231256255e-13 + ArtUnc_27: 8.751908398152517e-12 + ArtUnc_28: 3.243057790862044e-13 + ArtUnc_29: 6.553866976012681e-12 + ArtUnc_30: 2.568968732178255e-12 + ArtUnc_31: -1.0753638369503453e-12 + ArtUnc_32: 4.1544951068356036e-11 + ArtUnc_33: -1.7348277059421816e-15 + ArtUnc_34: -1.5040569541908268e-12 + ArtUnc_35: -7.984848532209664e-13 + ArtUnc_36: 2.4281165361617614e-11 + ArtUnc_37: -4.750445954573314e-11 + ArtUnc_38: 9.352170382692404e-12 + ArtUnc_39: 5.0030111451300346e-11 + ArtUnc_40: -9.794687305802967e-13 + ArtUnc_41: -3.384009666384961e-10 + ArtUnc_42: 9.145350864578396e-12 + ArtUnc_43: 5.444991103342456e-10 + ArtUnc_44: 2.164790135155239e-10 + ArtUnc_45: -5.036337921055136e-12 + ArtUnc_46: 7.572012011880331e-11 + ArtUnc_47: 1.3122931491457895e-11 + ArtUnc_48: -1.6235023239829938e-12 + ArtUnc_49: 1.4463868992619182e-09 + ArtUnc_50: 6.487919379608554e-11 + ArtUnc_51: 2.564045270519593e-10 + ArtUnc_52: -1.9086491770607894e-11 + ArtUnc_53: -6.004925716718752e-11 + ArtUnc_54: 1.3528719560799027e-11 + ArtUnc_55: 1.1799485815545221e-08 + ArtUnc_56: -9.975340208781463e-09 + ArtUnc_57: -2.2521217812471348e-09 + ArtUnc_58: 2.804699758441273e-08 + ArtUnc_59: 2.2103976595410218e-10 + ArtUnc_60: 3.3649817451941395e-08 + ArtUnc_61: 1.1740658032824714e-10 + ArtUnc_62: -2.402339850854667e-09 + ArtUnc_63: 1.7391658748525373e-10 + ArtUnc_64: 8.89274434058841e-08 + ArtUnc_65: -4.7974890767402026e-09 + ArtUnc_66: 1.22364516968084e-07 + ArtUnc_67: 3.040652579547578e-08 + ArtUnc_68: -6.862203540163716e-09 + ArtUnc_69: -7.665774654289796e-09 + ArtUnc_70: 1.480625126632594e-07 + ArtUnc_71: 2.0979076256282548e-09 + ArtUnc_72: 5.122209600702832e-08 + ArtUnc_73: 1.3362480636831328e-10 + ArtUnc_74: 2.717582622135473e-07 + ArtUnc_75: -4.951873092024478e-08 + ArtUnc_76: 3.198076745946251e-09 + ArtUnc_77: 1.1602659070872547e-08 + ArtUnc_78: 2.0132775223619658e-07 + ArtUnc_79: -3.7306664299767404e-07 + ArtUnc_80: 5.992296682747596e-09 + ArtUnc_81: -4.792623496419435e-09 + ArtUnc_82: -1.0624184782695466e-09 + ArtUnc_83: 9.610625844064377e-08 + ArtUnc_84: -1.2694396721333717e-07 + ArtUnc_85: -6.457187616301097e-07 + ArtUnc_86: -2.9317899929255475e-07 + ArtUnc_87: -3.9372117306839423e-07 + ArtUnc_88: 4.955158818554302e-08 + ArtUnc_89: 1.8185695363269428e-07 + ArtUnc_90: 1.097358450627666e-06 + ArtUnc_91: -6.7007103400230265e-06 + ArtUnc_92: -4.1782353724083415e-08 + ArtUnc_93: 6.93294384753824e-08 + ArtUnc_94: 1.1183383282743e-07 + ArtUnc_95: -2.9181645166768758e-06 + ArtUnc_96: -6.066089548558399e-07 - stat: 0 Uncorr: 0.00123 RCES: 0.004552541394375234 @@ -1125,102 +1125,102 @@ bins: ModelRW_2: 0.004000810167953486 JES_1: 0.0006407225725694391 JES_2: 0.0006407225725694391 - ArtUnc_1: -5.184077554804865e-09 - ArtUnc_2: 1.1677814854411717e-06 - ArtUnc_3: 6.484945269316032e-06 - ArtUnc_4: 2.9607766166695188e-05 - ArtUnc_5: 1.0260097645233027e-06 - ArtUnc_6: 2.6625129317257976e-07 - ArtUnc_7: 0.00019243537417088768 - ArtUnc_8: -0.0010127354200840373 - ArtUnc_9: 1.8484503325495992e-05 - ArtUnc_10: 0.0004836711327518179 - ArtUnc_11: -0.001000349484245882 - ArtUnc_12: 8.105091416691032e-05 - ArtUnc_13: 0.001560303726292502 - ArtUnc_14: -1.312468346417106e-05 - ArtUnc_15: -2.2591533427099566e-06 - ArtUnc_16: 5.81782659962372e-07 - ArtUnc_17: -1.1337540775552543e-06 - ArtUnc_18: -2.9870296863938236e-09 - ArtUnc_19: 4.885827276898902e-06 - ArtUnc_20: 5.46036666714075e-06 - ArtUnc_21: -1.9999995328936353e-07 - ArtUnc_22: 1.1276225478014803e-05 - ArtUnc_23: 2.415068877154063e-07 - ArtUnc_24: -1.869934832142698e-05 - ArtUnc_25: -8.703721396487764e-06 - ArtUnc_26: -5.289837150205136e-07 - ArtUnc_27: 2.0927443056242083e-05 - ArtUnc_28: -1.1909023961736666e-06 - ArtUnc_29: 1.376509661271128e-07 - ArtUnc_30: 2.3200362872257244e-06 - ArtUnc_31: 9.390934551417529e-07 - ArtUnc_32: 5.2604449124956104e-05 - ArtUnc_33: 2.0294766714359843e-08 - ArtUnc_34: 6.195759482584393e-07 - ArtUnc_35: -9.550353952130715e-07 - ArtUnc_36: -3.7298417895135e-08 - ArtUnc_37: -8.018721329022145e-07 - ArtUnc_38: -1.3985486051413725e-07 - ArtUnc_39: 6.047222284831873e-07 - ArtUnc_40: -2.4299704067399724e-09 - ArtUnc_41: 1.4240506631795575e-07 - ArtUnc_42: -1.763199430666483e-09 - ArtUnc_43: -3.8265962551439144e-07 - ArtUnc_44: 5.247038576006091e-07 - ArtUnc_45: 2.189129079036999e-09 - ArtUnc_46: -1.4438072463173603e-08 - ArtUnc_47: 1.3171349073521783e-08 - ArtUnc_48: 2.791115764211058e-10 - ArtUnc_49: 1.2825201759836086e-06 - ArtUnc_50: 3.9512167365672865e-08 - ArtUnc_51: -4.224301304456276e-09 - ArtUnc_52: -6.7536858555796595e-09 - ArtUnc_53: 1.0953565605416257e-09 - ArtUnc_54: -5.617115275140115e-10 - ArtUnc_55: -1.7820274368217247e-08 - ArtUnc_56: -1.2209974055510865e-09 - ArtUnc_57: -4.019287354504049e-10 - ArtUnc_58: -4.213685453428e-09 - ArtUnc_59: 1.2091701534008238e-10 - ArtUnc_60: 8.476923147506623e-09 - ArtUnc_61: -2.7460661767762e-11 - ArtUnc_62: -2.3627119172180134e-10 - ArtUnc_63: 1.983654630674247e-11 - ArtUnc_64: 6.46630459178119e-08 - ArtUnc_65: 1.1144518540054536e-09 - ArtUnc_66: -4.5764880710363666e-08 - ArtUnc_67: 5.587580325254852e-10 - ArtUnc_68: -6.110199357285555e-10 - ArtUnc_69: 1.7776037748952677e-11 - ArtUnc_70: -2.1053104483385263e-10 - ArtUnc_71: -2.036025074802014e-12 - ArtUnc_72: -5.932777335713809e-10 - ArtUnc_73: -4.280016881337702e-11 - ArtUnc_74: -8.42143694808457e-11 - ArtUnc_75: -9.046981473561906e-10 - ArtUnc_76: -8.71138686602466e-12 - ArtUnc_77: -8.7834967448671e-12 - ArtUnc_78: 1.1157174486689162e-09 - ArtUnc_79: -6.647586284952316e-10 - ArtUnc_80: 2.5056554750085015e-12 - ArtUnc_81: 2.9053533657375577e-11 - ArtUnc_82: 1.614311342765625e-12 - ArtUnc_83: -1.379289251603314e-11 - ArtUnc_84: -2.5599498846856188e-11 - ArtUnc_85: 4.113652347930657e-13 - ArtUnc_86: 3.0054805505082303e-12 - ArtUnc_87: 3.627340632113543e-12 - ArtUnc_88: 1.9168249548639103e-11 - ArtUnc_89: -2.8013289475795883e-12 - ArtUnc_90: 1.7317335682249135e-11 - ArtUnc_91: -2.0340718509919114e-12 - ArtUnc_92: -7.107882979359801e-11 - ArtUnc_93: -1.9824035580746016e-12 - ArtUnc_94: -8.498361675632156e-13 - ArtUnc_95: 3.0305793135592135e-11 - ArtUnc_96: 4.905247241945592e-12 + ArtUnc_1: -5.184077555533741e-09 + ArtUnc_2: 1.1677814854411006e-06 + ArtUnc_3: 6.484945269315138e-06 + ArtUnc_4: 2.9607766166695967e-05 + ArtUnc_5: 1.026009764528549e-06 + ArtUnc_6: 2.662512931754971e-07 + ArtUnc_7: 0.00019243537417088093 + ArtUnc_8: -0.0010127354200840388 + ArtUnc_9: 1.8484503325499536e-05 + ArtUnc_10: 0.00048367113275177076 + ArtUnc_11: -0.0010003494842459083 + ArtUnc_12: -8.105091416697253e-05 + ArtUnc_13: -0.001560303726292504 + ArtUnc_14: -1.3124683464170857e-05 + ArtUnc_15: -2.2591533427100417e-06 + ArtUnc_16: 5.817826599619027e-07 + ArtUnc_17: -1.1337540775553265e-06 + ArtUnc_18: 2.987029686372386e-09 + ArtUnc_19: -4.885827276898941e-06 + ArtUnc_20: 5.46036666714073e-06 + ArtUnc_21: -1.9999995328938429e-07 + ArtUnc_22: 1.127622547801492e-05 + ArtUnc_23: 2.4150688771514286e-07 + ArtUnc_24: -1.8699348321426944e-05 + ArtUnc_25: -8.703721396487673e-06 + ArtUnc_26: -5.289837150206431e-07 + ArtUnc_27: 2.092744305624243e-05 + ArtUnc_28: 1.1909023961737446e-06 + ArtUnc_29: -1.376509661274837e-07 + ArtUnc_30: 2.320036287223341e-06 + ArtUnc_31: -9.390934551493554e-07 + ArtUnc_32: 5.260444912495629e-05 + ArtUnc_33: -2.0294766714438776e-08 + ArtUnc_34: 6.195759482581024e-07 + ArtUnc_35: 9.550353952130143e-07 + ArtUnc_36: 3.729841789513544e-08 + ArtUnc_37: -8.01872132902217e-07 + ArtUnc_38: 1.3985486051409333e-07 + ArtUnc_39: -6.047222284831918e-07 + ArtUnc_40: -2.4299704067528574e-09 + ArtUnc_41: 1.4240506631795265e-07 + ArtUnc_42: 1.7631994306664332e-09 + ArtUnc_43: -3.8265962551438614e-07 + ArtUnc_44: 5.247038576006126e-07 + ArtUnc_45: -2.189129079051947e-09 + ArtUnc_46: -1.44380724631698e-08 + ArtUnc_47: 1.3171349073524332e-08 + ArtUnc_48: -2.7911157642128274e-10 + ArtUnc_49: -1.2825201759836507e-06 + ArtUnc_50: -3.951216736568954e-08 + ArtUnc_51: 4.224301304456062e-09 + ArtUnc_52: 6.753685855579711e-09 + ArtUnc_53: -1.0953565605415092e-09 + ArtUnc_54: 5.61711527514032e-10 + ArtUnc_55: -1.782027436821851e-08 + ArtUnc_56: -1.2209974055510724e-09 + ArtUnc_57: -4.019287354508974e-10 + ArtUnc_58: -4.213685453428593e-09 + ArtUnc_59: 1.2091701533994065e-10 + ArtUnc_60: -8.476923147507564e-09 + ArtUnc_61: 2.7460661768004776e-11 + ArtUnc_62: -2.362711917216108e-10 + ArtUnc_63: 1.9836546306819357e-11 + ArtUnc_64: -6.466304591781763e-08 + ArtUnc_65: 1.114451854006085e-09 + ArtUnc_66: 4.576488071035876e-08 + ArtUnc_67: 5.587580325253636e-10 + ArtUnc_68: -6.110199357284909e-10 + ArtUnc_69: -1.7776037748956474e-11 + ArtUnc_70: 2.105310448338427e-10 + ArtUnc_71: 2.036025074802777e-12 + ArtUnc_72: 5.932777335713569e-10 + ArtUnc_73: 4.2800168813375514e-11 + ArtUnc_74: 8.421436948084789e-11 + ArtUnc_75: -9.046981473561437e-10 + ArtUnc_76: -8.711386866030128e-12 + ArtUnc_77: -8.783496744864512e-12 + ArtUnc_78: 1.1157174486688844e-09 + ArtUnc_79: -6.647586284951538e-10 + ArtUnc_80: 2.5056554750015145e-12 + ArtUnc_81: 2.9053533657378786e-11 + ArtUnc_82: -1.6143113427655448e-12 + ArtUnc_83: -1.3792892516033813e-11 + ArtUnc_84: 2.55994988468569e-11 + ArtUnc_85: -4.1136523479301395e-13 + ArtUnc_86: 3.0054805505082905e-12 + ArtUnc_87: 3.6273406321135882e-12 + ArtUnc_88: -2.8013289475797947e-12 + ArtUnc_89: -1.9168249548640208e-11 + ArtUnc_90: -1.7317335682249917e-11 + ArtUnc_91: -2.0340718509920277e-12 + ArtUnc_92: 7.107882979360044e-11 + ArtUnc_93: -1.982403558075022e-12 + ArtUnc_94: -8.498361675632596e-13 + ArtUnc_95: 3.0305793135593906e-11 + ArtUnc_96: 4.905247241945646e-12 - stat: 0 Uncorr: 0.000409 RCES: 0.0018312823708196944 @@ -1236,102 +1236,102 @@ bins: ModelRW_2: 0.0006998801498828209 JES_1: 0.002259935042274445 JES_2: 0.002259935042274445 - ArtUnc_1: 9.75354752026044e-11 - ArtUnc_2: -6.2273727859760864e-09 - ArtUnc_3: 1.7087591791453076e-08 - ArtUnc_4: 4.3191107089871855e-07 - ArtUnc_5: 1.5544336954288856e-08 - ArtUnc_6: 7.296344356718899e-09 - ArtUnc_7: 6.546000347583141e-06 - ArtUnc_8: -5.724476102832814e-05 - ArtUnc_9: 1.186505533191221e-06 - ArtUnc_10: 4.336442172325017e-05 - ArtUnc_11: -8.826179700580657e-05 - ArtUnc_12: 7.203021247224612e-06 - ArtUnc_13: 0.00015235000980224025 - ArtUnc_14: -4.796339927818345e-07 - ArtUnc_15: -1.0309022261121592e-06 - ArtUnc_16: 9.391591905535796e-08 - ArtUnc_17: 5.1417193078837926e-06 - ArtUnc_18: 1.678842609126929e-07 - ArtUnc_19: 1.2964071120157593e-05 - ArtUnc_20: -3.0078776123107486e-05 - ArtUnc_21: 1.4925297085899568e-06 - ArtUnc_22: -0.0002355474459410796 - ArtUnc_23: -3.6760785509666088e-06 - ArtUnc_24: 0.0001026755887035469 - ArtUnc_25: 6.497741781848203e-05 - ArtUnc_26: -1.8235778533687866e-05 - ArtUnc_27: -0.000324237010333689 - ArtUnc_28: 1.4688165452172505e-05 - ArtUnc_29: 0.00015227934141965964 - ArtUnc_30: -5.982084023959652e-05 - ArtUnc_31: -2.4570653641737887e-05 - ArtUnc_32: -0.0005046502186004556 - ArtUnc_33: -1.7699603926284625e-07 - ArtUnc_34: -4.9246920619964135e-06 - ArtUnc_35: 7.714627557624803e-06 - ArtUnc_36: 2.239252880549989e-07 - ArtUnc_37: 6.411402027397142e-06 - ArtUnc_38: 1.1162652040399548e-06 - ArtUnc_39: 1.1430952119947786e-06 - ArtUnc_40: -6.74883846534561e-08 - ArtUnc_41: -2.3494255885953138e-06 - ArtUnc_42: 3.5551468648716967e-08 - ArtUnc_43: 4.703836380515397e-06 + ArtUnc_1: 9.753547439539828e-11 + ArtUnc_2: -6.227372784156302e-09 + ArtUnc_3: 1.708759179124174e-08 + ArtUnc_4: 4.319110708990544e-07 + ArtUnc_5: 1.55443369537763e-08 + ArtUnc_6: 7.296344354538225e-09 + ArtUnc_7: 6.5460003475791674e-06 + ArtUnc_8: -5.7244761028330045e-05 + ArtUnc_9: 1.186505533190126e-06 + ArtUnc_10: 4.336442172324861e-05 + ArtUnc_11: -8.82617970058097e-05 + ArtUnc_12: -7.2030212472301245e-06 + ArtUnc_13: -0.00015235000980223684 + ArtUnc_14: -4.796339927814513e-07 + ArtUnc_15: -1.0309022261121442e-06 + ArtUnc_16: 9.39159190546805e-08 + ArtUnc_17: 5.141719307884341e-06 + ArtUnc_18: -1.6788426091245276e-07 + ArtUnc_19: -1.2964071120157313e-05 + ArtUnc_20: -3.0078776123106327e-05 + ArtUnc_21: 1.492529708589883e-06 + ArtUnc_22: -0.00023554744594108016 + ArtUnc_23: -3.676078550964621e-06 + ArtUnc_24: 0.00010267558870354524 + ArtUnc_25: 6.497741781847948e-05 + ArtUnc_26: -1.8235778533686426e-05 + ArtUnc_27: -0.00032423701033369213 + ArtUnc_28: -1.4688165452177336e-05 + ArtUnc_29: -0.0001522793414196557 + ArtUnc_30: -5.9820840239537066e-05 + ArtUnc_31: 2.457065364193579e-05 + ArtUnc_32: -0.000504650218600457 + ArtUnc_33: 1.7699603926293156e-07 + ArtUnc_34: -4.924692061993343e-06 + ArtUnc_35: -7.714627557624232e-06 + ArtUnc_36: -2.2392528805489359e-07 + ArtUnc_37: 6.411402027397098e-06 + ArtUnc_38: -1.1162652040395937e-06 + ArtUnc_39: -1.1430952119947765e-06 + ArtUnc_40: -6.748838465346753e-08 + ArtUnc_41: -2.3494255885952587e-06 + ArtUnc_42: -3.555146864871654e-08 + ArtUnc_43: 4.703836380515194e-06 ArtUnc_44: -1.0566857235536604e-05 - ArtUnc_45: -4.4945124539154526e-08 - ArtUnc_46: -2.4857258556842753e-08 - ArtUnc_47: -1.6350369399768692e-07 - ArtUnc_48: -1.0292275806382017e-08 - ArtUnc_49: -1.4375919532155716e-05 - ArtUnc_50: -4.5840583908422396e-07 - ArtUnc_51: 2.5943913798835746e-08 - ArtUnc_52: 3.02608715287162e-08 - ArtUnc_53: -5.632813063283787e-09 - ArtUnc_54: 3.4802714012216528e-09 - ArtUnc_55: 1.3420913257162435e-07 - ArtUnc_56: -1.9194512317746415e-08 - ArtUnc_57: -4.460334623166559e-09 - ArtUnc_58: 1.857298792904718e-07 - ArtUnc_59: -1.5232168649288685e-09 - ArtUnc_60: -2.4123029218965524e-08 - ArtUnc_61: 1.7882848468395116e-10 - ArtUnc_62: 1.7966622080950064e-09 - ArtUnc_63: -1.571494213326034e-10 - ArtUnc_64: -6.671627784510943e-07 - ArtUnc_65: -1.0251897553522388e-08 - ArtUnc_66: 4.632156231862757e-07 - ArtUnc_67: -6.16158835415434e-09 - ArtUnc_68: 6.201726802225472e-09 - ArtUnc_69: -2.1346750028951346e-10 - ArtUnc_70: 2.4861479308311137e-09 - ArtUnc_71: 2.787441481270428e-11 - ArtUnc_72: 7.099604145631209e-09 - ArtUnc_73: 5.686130851729391e-10 - ArtUnc_74: 1.429200388025044e-09 - ArtUnc_75: 1.0248505960158253e-08 - ArtUnc_76: 1.0475918137978693e-10 - ArtUnc_77: 5.6777043837773735e-11 - ArtUnc_78: -1.2579885201608976e-08 - ArtUnc_79: 7.794043392190016e-09 - ArtUnc_80: -7.579711414809432e-11 - ArtUnc_81: -3.4308525311691373e-10 - ArtUnc_82: -1.7751170490890264e-11 - ArtUnc_83: 1.675001844948625e-10 - ArtUnc_84: 3.033136767964866e-10 - ArtUnc_85: -4.200393841862105e-12 - ArtUnc_86: -2.7784398976117046e-11 - ArtUnc_87: -3.283629617375814e-11 - ArtUnc_88: -2.877883598046446e-10 - ArtUnc_89: 3.125116211258946e-11 - ArtUnc_90: -1.5366438817765233e-10 - ArtUnc_91: 1.518307637548374e-11 - ArtUnc_92: 7.963922779568119e-10 - ArtUnc_93: 1.854010673838889e-11 - ArtUnc_94: 1.30934162861907e-11 - ArtUnc_95: -3.159639964275127e-10 - ArtUnc_96: -5.187217158734205e-11 + ArtUnc_45: 4.4945124539397075e-08 + ArtUnc_46: -2.4857258556887034e-08 + ArtUnc_47: -1.6350369399770955e-07 + ArtUnc_48: 1.0292275806389106e-08 + ArtUnc_49: 1.4375919532156121e-05 + ArtUnc_50: 4.584058390843983e-07 + ArtUnc_51: -2.5943913798833367e-08 + ArtUnc_52: -3.026087152871613e-08 + ArtUnc_53: 5.632813063282722e-09 + ArtUnc_54: -3.4802714012223778e-09 + ArtUnc_55: 1.3420913257163547e-07 + ArtUnc_56: -1.919451231774332e-08 + ArtUnc_57: -4.460334623172426e-09 + ArtUnc_58: 1.8572987929047742e-07 + ArtUnc_59: -1.5232168649282663e-09 + ArtUnc_60: 2.412302921897371e-08 + ArtUnc_61: -1.7882848468633827e-10 + ArtUnc_62: 1.7966622080932891e-09 + ArtUnc_63: -1.5714942133352477e-10 + ArtUnc_64: 6.671627784511517e-07 + ArtUnc_65: -1.025189755352918e-08 + ArtUnc_66: -4.632156231862248e-07 + ArtUnc_67: -6.161588354153124e-09 + ArtUnc_68: 6.201726802224839e-09 + ArtUnc_69: 2.1346750028956372e-10 + ArtUnc_70: -2.4861479308310165e-09 + ArtUnc_71: -2.787441481271272e-11 + ArtUnc_72: -7.099604145631049e-09 + ArtUnc_73: -5.6861308517293e-10 + ArtUnc_74: -1.4292003880250983e-09 + ArtUnc_75: 1.0248505960157929e-08 + ArtUnc_76: 1.0475918137984441e-10 + ArtUnc_77: 5.677704383775364e-11 + ArtUnc_78: -1.2579885201608965e-08 + ArtUnc_79: 7.794043392189298e-09 + ArtUnc_80: -7.579711414801293e-11 + ArtUnc_81: -3.430852531169544e-10 + ArtUnc_82: 1.775117049089012e-11 + ArtUnc_83: 1.675001844948761e-10 + ArtUnc_84: -3.033136767965014e-10 + ArtUnc_85: 4.20039384186154e-12 + ArtUnc_86: -2.7784398976116623e-11 + ArtUnc_87: -3.283629617375756e-11 + ArtUnc_88: 3.125116211259143e-11 + ArtUnc_89: 2.877883598046601e-10 + ArtUnc_90: 1.536643881776656e-10 + ArtUnc_91: 1.5183076375485108e-11 + ArtUnc_92: -7.963922779568559e-10 + ArtUnc_93: 1.8540106738393557e-11 + ArtUnc_94: 1.3093416286191433e-11 + ArtUnc_95: -3.1596399642754e-10 + ArtUnc_96: -5.1872171587344076e-11 - stat: 0 Uncorr: 9.63e-05 RCES: 6.196775925229183e-05 @@ -1347,102 +1347,102 @@ bins: ModelRW_2: 7.218004600996039e-05 JES_1: 0.0002719624785285187 JES_2: 0.0002719624785285187 - ArtUnc_1: 7.051224218170511e-11 - ArtUnc_2: -1.3977675181281722e-08 - ArtUnc_3: -7.119561085980849e-08 - ArtUnc_4: -2.8058198438085766e-07 - ArtUnc_5: -9.592216421389346e-09 - ArtUnc_6: -2.0297899814471796e-09 - ArtUnc_7: -1.347255652054934e-06 - ArtUnc_8: 4.150934493663707e-06 - ArtUnc_9: -5.952842188880549e-08 - ArtUnc_10: 5.4380103949999256e-08 - ArtUnc_11: 7.059796883563438e-08 - ArtUnc_12: -9.139260861121792e-09 - ArtUnc_13: 1.2790170539615172e-06 - ArtUnc_14: 2.561740834704523e-08 - ArtUnc_15: -1.9841482617862814e-08 - ArtUnc_16: 1.619807352846073e-10 - ArtUnc_17: 2.3983235953591063e-07 - ArtUnc_18: 7.139715680012391e-09 - ArtUnc_19: 7.286802604848566e-07 - ArtUnc_20: -1.5345833041427986e-06 - ArtUnc_21: 9.112349277439667e-08 - ArtUnc_22: -1.309874406162031e-05 - ArtUnc_23: -2.366435465708012e-07 - ArtUnc_24: 5.656671937789394e-06 - ArtUnc_25: 7.335671792195618e-06 - ArtUnc_26: -1.4577249046429854e-06 - ArtUnc_27: -2.234281373099328e-05 - ArtUnc_28: 9.327416416809586e-07 - ArtUnc_29: 3.571113044835011e-06 - ArtUnc_30: -2.329824213958802e-06 - ArtUnc_31: -9.539461832915348e-07 - ArtUnc_32: -3.3654680854993295e-05 - ArtUnc_33: -1.0814802951169263e-08 - ArtUnc_34: 5.098518791696569e-07 - ArtUnc_35: -7.814559505920847e-07 - ArtUnc_36: 6.4424889366370495e-06 - ArtUnc_37: 1.9979813786579762e-05 - ArtUnc_38: 3.5595772793985083e-06 - ArtUnc_39: 2.0489934740514856e-05 - ArtUnc_40: 3.02489581171129e-08 - ArtUnc_41: 6.089728888448017e-05 - ArtUnc_42: 3.7802166670696874e-07 - ArtUnc_43: -8.955261597294889e-05 - ArtUnc_44: -4.8024390229445945e-05 - ArtUnc_45: -6.22209842054908e-07 - ArtUnc_46: -1.3687951532626222e-05 - ArtUnc_47: 9.264014209200441e-07 - ArtUnc_48: -1.60940431640056e-08 - ArtUnc_49: 0.00017973388342818194 - ArtUnc_50: 4.459666900135036e-06 - ArtUnc_51: -2.0380504375675267e-07 - ArtUnc_52: 1.0862800138358524e-07 - ArtUnc_53: -3.971425587637444e-09 - ArtUnc_54: -2.9663603746897475e-09 - ArtUnc_55: -1.8811433941313633e-06 - ArtUnc_56: -1.9456883465458955e-06 - ArtUnc_57: -5.713827041414732e-07 - ArtUnc_58: -2.6674338272983187e-06 - ArtUnc_59: 3.8161231902574834e-08 - ArtUnc_60: -2.6960411564784744e-06 - ArtUnc_61: -2.2069932666303474e-09 - ArtUnc_62: 3.133504537482695e-08 - ArtUnc_63: -3.6382703959762624e-09 - ArtUnc_64: 5.3039856593629825e-06 - ArtUnc_65: 3.295262320677758e-08 - ArtUnc_66: -6.5141943706438e-06 - ArtUnc_67: 1.2249385484021418e-07 - ArtUnc_68: -6.042472036353696e-08 - ArtUnc_69: 2.5250031773642886e-09 - ArtUnc_70: -1.6964903821870466e-08 - ArtUnc_71: 4.213129200918381e-11 - ArtUnc_72: -1.0434560435131835e-09 - ArtUnc_73: -2.2988054108962423e-10 - ArtUnc_74: 4.0295819332110446e-08 - ArtUnc_75: 1.1695826127319187e-08 - ArtUnc_76: -1.1125737214142425e-09 - ArtUnc_77: -9.908908004052798e-10 - ArtUnc_78: 2.15663383962382e-07 - ArtUnc_79: 7.525356436863188e-08 - ArtUnc_80: -5.458073635483631e-10 - ArtUnc_81: 6.330795480690561e-09 - ArtUnc_82: -2.2198364046810994e-10 - ArtUnc_83: -1.484624633027967e-09 - ArtUnc_84: -1.368357657876776e-10 - ArtUnc_85: -2.5794689719642245e-10 - ArtUnc_86: 7.61121894871189e-11 - ArtUnc_87: 3.4903456058672834e-11 - ArtUnc_88: -1.7002038126260137e-09 - ArtUnc_89: -7.883110106207349e-11 - ArtUnc_90: 1.183009035226033e-09 - ArtUnc_91: 6.70014151095372e-10 - ArtUnc_92: -1.7580036048981999e-09 - ArtUnc_93: -4.661069203930548e-11 - ArtUnc_94: -5.5651946891794884e-11 - ArtUnc_95: -2.1446402629040687e-10 - ArtUnc_96: -5.192669359744669e-11 + ArtUnc_1: 7.051224216026941e-11 + ArtUnc_2: -1.3977675181295216e-08 + ArtUnc_3: -7.119561085981802e-08 + ArtUnc_4: -2.8058198438083383e-07 + ArtUnc_5: -9.59221642205358e-09 + ArtUnc_6: -2.02978998101931e-09 + ArtUnc_7: -1.3472556520548992e-06 + ArtUnc_8: 4.150934493663712e-06 + ArtUnc_9: -5.952842188927762e-08 + ArtUnc_10: 5.438010394919081e-08 + ArtUnc_11: 7.05979688352413e-08 + ArtUnc_12: 9.139260861476654e-09 + ArtUnc_13: -1.2790170539615633e-06 + ArtUnc_14: 2.5617408347870514e-08 + ArtUnc_15: -1.9841482618095413e-08 + ArtUnc_16: 1.6198073526381094e-10 + ArtUnc_17: 2.3983235953556213e-07 + ArtUnc_18: -7.139715679976194e-09 + ArtUnc_19: -7.286802604846646e-07 + ArtUnc_20: -1.534583304142478e-06 + ArtUnc_21: 9.112349277463271e-08 + ArtUnc_22: -1.3098744061619803e-05 + ArtUnc_23: -2.3664354657076953e-07 + ArtUnc_24: 5.656671937789673e-06 + ArtUnc_25: 7.335671792195338e-06 + ArtUnc_26: -1.4577249046427076e-06 + ArtUnc_27: -2.2342813730992484e-05 + ArtUnc_28: -9.32741641681257e-07 + ArtUnc_29: -3.5711130448348982e-06 + ArtUnc_30: -2.3298242139567014e-06 + ArtUnc_31: 9.539461832991869e-07 + ArtUnc_32: -3.365468085499373e-05 + ArtUnc_33: 1.0814802950801851e-08 + ArtUnc_34: 5.098518791699796e-07 + ArtUnc_35: 7.814559505928643e-07 + ArtUnc_36: -6.442488936637111e-06 + ArtUnc_37: 1.9979813786580084e-05 + ArtUnc_38: -3.559577279397605e-06 + ArtUnc_39: -2.0489934740514652e-05 + ArtUnc_40: 3.024895811611956e-08 + ArtUnc_41: 6.08972888844798e-05 + ArtUnc_42: -3.780216667070498e-07 + ArtUnc_43: -8.955261597295062e-05 + ArtUnc_44: -4.8024390229445863e-05 + ArtUnc_45: 6.222098420543644e-07 + ArtUnc_46: -1.368795153262544e-05 + ArtUnc_47: 9.264014209204773e-07 + ArtUnc_48: 1.6094043163831705e-08 + ArtUnc_49: -0.00017973388342818443 + ArtUnc_50: -4.459666900137267e-06 + ArtUnc_51: 2.038050437567206e-07 + ArtUnc_52: -1.0862800138360604e-07 + ArtUnc_53: 3.9714255876467446e-09 + ArtUnc_54: 2.966360374701162e-09 + ArtUnc_55: -1.8811433941314635e-06 + ArtUnc_56: -1.9456883465457418e-06 + ArtUnc_57: -5.713827041420243e-07 + ArtUnc_58: -2.6674338272983496e-06 + ArtUnc_59: 3.8161231902587136e-08 + ArtUnc_60: 2.6960411564784075e-06 + ArtUnc_61: 2.2069932666540668e-09 + ArtUnc_62: 3.1335045374841156e-08 + ArtUnc_63: -3.6382703959669343e-09 + ArtUnc_64: -5.303985659363463e-06 + ArtUnc_65: 3.295262320683488e-08 + ArtUnc_66: 6.51419437064317e-06 + ArtUnc_67: 1.224938548401954e-07 + ArtUnc_68: -6.0424720363524e-08 + ArtUnc_69: -2.525003177364441e-09 + ArtUnc_70: 1.6964903821867333e-08 + ArtUnc_71: -4.213129200925123e-11 + ArtUnc_72: 1.0434560435049898e-09 + ArtUnc_73: 2.2988054108867716e-10 + ArtUnc_74: -4.029581933211132e-08 + ArtUnc_75: 1.1695826127329766e-08 + ArtUnc_76: -1.1125737214139704e-09 + ArtUnc_77: -9.908908004047555e-10 + ArtUnc_78: 2.1566338396236692e-07 + ArtUnc_79: 7.525356436864798e-08 + ArtUnc_80: -5.458073635477984e-10 + ArtUnc_81: 6.330795480691271e-09 + ArtUnc_82: 2.219836404681475e-10 + ArtUnc_83: -1.4846246330279971e-09 + ArtUnc_84: 1.368357657876286e-10 + ArtUnc_85: 2.579468971964336e-10 + ArtUnc_86: 7.611218948708382e-11 + ArtUnc_87: 3.4903456058610976e-11 + ArtUnc_88: -7.88311010620826e-11 + ArtUnc_89: 1.7002038126260505e-09 + ArtUnc_90: -1.1830090352260171e-09 + ArtUnc_91: 6.700141510953795e-10 + ArtUnc_92: 1.7580036048980386e-09 + ArtUnc_93: -4.661069203930877e-11 + ArtUnc_94: -5.5651946891796474e-11 + ArtUnc_95: -2.1446402629044331e-10 + ArtUnc_96: -5.1926693597453337e-11 - stat: 0 Uncorr: 1.4400000000000001e-05 RCES: 2.2002332967210546e-05 @@ -1458,102 +1458,102 @@ bins: ModelRW_2: 6.211225965942633e-05 JES_1: 5.600776289051367e-05 JES_2: 5.600776289051367e-05 - ArtUnc_1: 5.028194037011682e-14 - ArtUnc_2: -7.930923863452117e-12 - ArtUnc_3: -3.500863412875774e-11 - ArtUnc_4: -9.003481958413572e-11 - ArtUnc_5: -3.1431617563460395e-12 - ArtUnc_6: -2.6228551187093957e-13 - ArtUnc_7: 2.4988272275389347e-10 - ArtUnc_8: -7.095544583118769e-09 - ArtUnc_9: 1.7262562013246882e-10 - ArtUnc_10: 9.466624384995902e-09 - ArtUnc_11: -1.8797889805441954e-08 - ArtUnc_12: 1.5481587852640913e-09 - ArtUnc_13: 4.131411529644207e-08 - ArtUnc_14: 1.2381720441638352e-10 - ArtUnc_15: -5.996467589129313e-10 - ArtUnc_16: 4.239274459555293e-11 - ArtUnc_17: 3.8003228588328964e-09 - ArtUnc_18: 1.1617569595827475e-10 - ArtUnc_19: 9.204297352629586e-09 - ArtUnc_20: -3.2952159006435125e-08 - ArtUnc_21: 1.706019035926824e-09 - ArtUnc_22: -3.1590324005269335e-07 - ArtUnc_23: -6.308935847157541e-09 - ArtUnc_24: 1.7278494489381813e-07 - ArtUnc_25: 1.387547211393275e-07 - ArtUnc_26: -2.9595791064755926e-08 - ArtUnc_27: -6.592875651505977e-07 - ArtUnc_28: 2.498500597107091e-08 - ArtUnc_29: 3.1242140113624735e-07 - ArtUnc_30: -1.2830119955878174e-07 - ArtUnc_31: -5.325623570391923e-08 - ArtUnc_32: -1.557857961817653e-06 - ArtUnc_33: -1.8667160575862471e-10 - ArtUnc_34: 3.4328292949324215e-08 - ArtUnc_35: -1.5603640778704735e-08 - ArtUnc_36: 3.414412333334038e-07 - ArtUnc_37: 6.324378226229919e-07 - ArtUnc_38: 1.1310962710340537e-07 - ArtUnc_39: 5.436061122555622e-07 - ArtUnc_40: 9.940743205069577e-09 - ArtUnc_41: 2.723372214838286e-06 - ArtUnc_42: -3.5212973381854846e-09 - ArtUnc_43: -3.2286787244512606e-06 - ArtUnc_44: -1.137559147814426e-06 - ArtUnc_45: -1.8692778347109393e-08 - ArtUnc_46: -4.7039603477273036e-07 - ArtUnc_47: 1.780854677128344e-07 - ArtUnc_48: 6.883291106114957e-09 - ArtUnc_49: 5.5623819126375e-06 - ArtUnc_50: 1.1534748792054565e-07 - ArtUnc_51: 1.028575206998775e-06 - ArtUnc_52: -3.0315609727011743e-07 - ArtUnc_53: -6.972290082412896e-09 - ArtUnc_54: 8.435772815705874e-08 - ArtUnc_55: -1.3118817752018065e-05 - ArtUnc_56: 8.339153477262663e-06 - ArtUnc_57: 2.3637144144613787e-06 - ArtUnc_58: -2.2236860622236262e-05 - ArtUnc_59: -4.699881721535158e-08 - ArtUnc_60: 2.263671637940174e-05 - ArtUnc_61: 3.1315628658612085e-09 - ArtUnc_62: -8.57322660994336e-07 - ArtUnc_63: 9.546774888890239e-08 - ArtUnc_64: 4.3457629674280023e-05 - ArtUnc_65: 1.6714745717973356e-06 - ArtUnc_66: 5.062688865522578e-05 - ArtUnc_67: -1.6624391063533658e-06 - ArtUnc_68: 3.1870521645735013e-07 - ArtUnc_69: -4.135156259850382e-08 - ArtUnc_70: 2.955379799570098e-07 - ArtUnc_71: -2.72632503482665e-09 - ArtUnc_72: -1.3610040269890458e-06 - ArtUnc_73: -1.026442091430942e-07 - ArtUnc_74: -5.69311430194319e-07 - ArtUnc_75: -1.703078184775388e-06 - ArtUnc_76: -6.269284013198872e-09 - ArtUnc_77: 8.642190079210228e-09 - ArtUnc_78: -3.365296810775991e-06 - ArtUnc_79: -1.844309294769266e-06 - ArtUnc_80: 9.498543448093592e-09 - ArtUnc_81: -9.359532363281393e-08 - ArtUnc_82: 5.063739805795015e-09 - ArtUnc_83: 1.6723098673167816e-08 - ArtUnc_84: -1.2576779963022046e-08 - ArtUnc_85: 5.9980743564484816e-09 - ArtUnc_86: -1.4311052060219964e-09 - ArtUnc_87: -1.0586207274605797e-09 - ArtUnc_88: 3.948718245876623e-08 - ArtUnc_89: -1.5082683611736483e-10 - ArtUnc_90: -1.8390899459918704e-08 - ArtUnc_91: -1.2206702689793343e-08 - ArtUnc_92: 3.956258911796859e-08 - ArtUnc_93: 2.2233604812058874e-10 - ArtUnc_94: 1.6431022394437524e-09 - ArtUnc_95: 2.7427779419382887e-09 - ArtUnc_96: 2.071055907394705e-10 + ArtUnc_1: 5.02819392911427e-14 + ArtUnc_2: -7.93092386430135e-12 + ArtUnc_3: -3.500863412851607e-11 + ArtUnc_4: -9.003481958336642e-11 + ArtUnc_5: -3.1431617742647692e-12 + ArtUnc_6: -2.6228548749244885e-13 + ArtUnc_7: 2.4988272275362133e-10 + ArtUnc_8: -7.095544583119142e-09 + ArtUnc_9: 1.7262562010402244e-10 + ArtUnc_10: 9.466624384963338e-09 + ArtUnc_11: -1.879788980545776e-08 + ArtUnc_12: -1.548158785248519e-09 + ArtUnc_13: -4.131411529644298e-08 + ArtUnc_14: 1.2381720443187933e-10 + ArtUnc_15: -5.996467589130546e-10 + ArtUnc_16: 4.2392744590761055e-11 + ArtUnc_17: 3.800322858826508e-09 + ArtUnc_18: -1.161756959648318e-10 + ArtUnc_19: -9.204297352626248e-09 + ArtUnc_20: -3.29521590064212e-08 + ArtUnc_21: 1.7060190359246318e-09 + ArtUnc_22: -3.159032400526775e-07 + ArtUnc_23: -6.308935847250307e-09 + ArtUnc_24: 1.7278494489382729e-07 + ArtUnc_25: 1.3875472113931756e-07 + ArtUnc_26: -2.9595791064606375e-08 + ArtUnc_27: -6.592875651505602e-07 + ArtUnc_28: -2.4985005971144744e-08 + ArtUnc_29: -3.1242140113639304e-07 + ArtUnc_30: -1.2830119955860022e-07 + ArtUnc_31: 5.325623570444768e-08 + ArtUnc_32: -1.557857961817675e-06 + ArtUnc_33: 1.8667160570307258e-10 + ArtUnc_34: 3.4328292949259264e-08 + ArtUnc_35: 1.5603640778777838e-08 + ArtUnc_36: -3.41441233333585e-07 + ArtUnc_37: 6.324378226229994e-07 + ArtUnc_38: -1.1310962710342948e-07 + ArtUnc_39: -5.43606112255573e-07 + ArtUnc_40: 9.94074320502835e-09 + ArtUnc_41: 2.723372214838412e-06 + ArtUnc_42: 3.5212973382349376e-09 + ArtUnc_43: -3.2286787244513157e-06 + ArtUnc_44: -1.137559147814532e-06 + ArtUnc_45: 1.8692778347107762e-08 + ArtUnc_46: -4.703960347728094e-07 + ArtUnc_47: 1.7808546771262623e-07 + ArtUnc_48: -6.883291106153041e-09 + ArtUnc_49: -5.562381912637747e-06 + ArtUnc_50: -1.1534748792065501e-07 + ArtUnc_51: -1.028575206998728e-06 + ArtUnc_52: 3.031560972701436e-07 + ArtUnc_53: 6.9722900824939765e-09 + ArtUnc_54: -8.435772815707573e-08 + ArtUnc_55: -1.3118817752018197e-05 + ArtUnc_56: 8.339153477261923e-06 + ArtUnc_57: 2.363714414463892e-06 + ArtUnc_58: -2.2236860622236516e-05 + ArtUnc_59: -4.699881721560735e-08 + ArtUnc_60: -2.2636716379401355e-05 + ArtUnc_61: -3.1315628659250002e-09 + ArtUnc_62: -8.573226609941899e-07 + ArtUnc_63: 9.546774888907887e-08 + ArtUnc_64: -4.345762967427407e-05 + ArtUnc_65: 1.6714745717974936e-06 + ArtUnc_66: -5.062688865522955e-05 + ArtUnc_67: -1.662439106353279e-06 + ArtUnc_68: 3.187052164572777e-07 + ArtUnc_69: 4.13515625985064e-08 + ArtUnc_70: -2.9553797995699014e-07 + ArtUnc_71: 2.7263250348303047e-09 + ArtUnc_72: 1.3610040269891257e-06 + ArtUnc_73: 1.0264420914310467e-07 + ArtUnc_74: 5.69311430194333e-07 + ArtUnc_75: -1.7030781847754871e-06 + ArtUnc_76: -6.269284013211263e-09 + ArtUnc_77: 8.642190079204772e-09 + ArtUnc_78: -3.365296810775796e-06 + ArtUnc_79: -1.84430929476948e-06 + ArtUnc_80: 9.498543448078409e-09 + ArtUnc_81: -9.359532363282695e-08 + ArtUnc_82: -5.063739805795505e-09 + ArtUnc_83: 1.672309867316878e-08 + ArtUnc_84: 1.257677996302173e-08 + ArtUnc_85: -5.998074356448583e-09 + ArtUnc_86: -1.4311052060218262e-09 + ArtUnc_87: -1.0586207274600761e-09 + ArtUnc_88: -1.508268361170333e-10 + ArtUnc_89: -3.94871824587661e-08 + ArtUnc_90: 1.8390899459919323e-08 + ArtUnc_91: -1.220670268979323e-08 + ArtUnc_92: -3.9562589117971506e-08 + ArtUnc_93: 2.223360481207455e-10 + ArtUnc_94: 1.6431022394438529e-09 + ArtUnc_95: 2.7427779419367713e-09 + ArtUnc_96: 2.0710559073924454e-10 - stat: 0 Uncorr: 1.77e-06 RCES: 1.2845310846764276e-06 @@ -1569,102 +1569,102 @@ bins: ModelRW_2: 3.4418422574255194e-06 JES_1: 1.3368754753295088e-05 JES_2: 1.3368754753295088e-05 - ArtUnc_1: 3.1649577406472285e-16 - ArtUnc_2: -5.2335776188955977e-14 - ArtUnc_3: 1.2009689613669813e-13 - ArtUnc_4: 5.2775724723700894e-12 - ArtUnc_5: 1.9602453108170133e-13 - ArtUnc_6: 1.195060314105756e-13 - ArtUnc_7: 1.1770919468664458e-10 - ArtUnc_8: -1.4179526772946948e-09 - ArtUnc_9: 3.14077879028471e-11 - ArtUnc_10: 1.5709557509771584e-09 - ArtUnc_11: -3.1240802535423297e-09 - ArtUnc_12: 2.51872726822909e-10 - ArtUnc_13: 7.045050237369375e-09 - ArtUnc_14: -2.488938284850154e-11 - ArtUnc_15: -6.151766026702624e-11 - ArtUnc_16: 5.5825738656037795e-12 - ArtUnc_17: 3.9609087454243e-10 - ArtUnc_18: 1.2186192509001654e-11 - ArtUnc_19: 1.2867497103020471e-09 - ArtUnc_20: -4.035383590529823e-09 - ArtUnc_21: 2.330392107992802e-10 - ArtUnc_22: -4.487504907636015e-08 - ArtUnc_23: -7.936318198450206e-10 - ArtUnc_24: 2.371442818122049e-08 - ArtUnc_25: 1.5749752398151737e-08 - ArtUnc_26: -4.309261165056775e-09 - ArtUnc_27: -9.798403070582949e-08 - ArtUnc_28: 4.94433998787048e-09 - ArtUnc_29: 5.412031033566136e-08 - ArtUnc_30: -2.2124207161286627e-08 - ArtUnc_31: -9.099620059223857e-09 - ArtUnc_32: -2.421228490786892e-07 - ArtUnc_33: -7.643746274094484e-11 - ArtUnc_34: -2.531175015935894e-09 - ArtUnc_35: 4.649292937028954e-09 - ArtUnc_36: -2.160183108841626e-10 - ArtUnc_37: 1.4995257681071308e-09 - ArtUnc_38: 1.5743773339187948e-10 - ArtUnc_39: -7.455873430701368e-09 - ArtUnc_40: -4.95794967743893e-11 - ArtUnc_41: -2.9637995205923787e-08 - ArtUnc_42: -1.4364644653881406e-09 - ArtUnc_43: 8.010985922253673e-08 - ArtUnc_44: 1.1402569191216392e-08 - ArtUnc_45: 4.703198444676842e-10 - ArtUnc_46: 1.002303393172774e-08 - ArtUnc_47: 7.62877990502964e-09 - ArtUnc_48: 4.3229700829160684e-10 - ArtUnc_49: -3.164264343361119e-07 - ArtUnc_50: -1.2443658523872265e-08 - ArtUnc_51: 5.759850014050222e-08 - ArtUnc_52: -4.171637040698967e-08 - ArtUnc_53: 2.9314420570197154e-09 - ArtUnc_54: 3.51842026721901e-09 - ArtUnc_55: -4.505148231943277e-07 - ArtUnc_56: 4.7492041930748927e-07 - ArtUnc_57: 1.41493406225733e-07 - ArtUnc_58: -5.06873105407887e-07 - ArtUnc_59: -4.014248528161996e-09 - ArtUnc_60: 6.52500989313911e-07 - ArtUnc_61: -7.476582193153976e-10 - ArtUnc_62: -6.22455801358553e-08 - ArtUnc_63: 5.9473529005908975e-09 - ArtUnc_64: 4.6023902239761547e-07 - ArtUnc_65: 1.4696462627758393e-08 - ArtUnc_66: 8.742215561409534e-07 - ArtUnc_67: 2.6854374134708383e-07 - ArtUnc_68: -2.51560080948986e-08 - ArtUnc_69: 9.12920090977178e-08 - ArtUnc_70: -2.008073335549839e-06 - ArtUnc_71: -2.98185579529821e-08 - ArtUnc_72: -1.2038558502868007e-06 - ArtUnc_73: 3.7382863737146895e-09 - ArtUnc_74: -7.397192237967821e-06 - ArtUnc_75: -1.1239358915611417e-07 - ArtUnc_76: 1.9660642274449522e-07 - ArtUnc_77: 2.0281556677640734e-07 - ArtUnc_78: 1.2953754330490816e-05 - ArtUnc_79: -2.1173808847071083e-05 - ArtUnc_80: 3.9649564622569576e-07 - ArtUnc_81: 2.68212297280555e-07 - ArtUnc_82: 5.16968632898392e-08 - ArtUnc_83: -1.5922154831443385e-07 - ArtUnc_84: -7.311494935121377e-07 - ArtUnc_85: -2.964885666779676e-09 - ArtUnc_86: -2.056962891334488e-08 - ArtUnc_87: -2.213952086686656e-08 - ArtUnc_88: 9.456451570328827e-07 - ArtUnc_89: -3.832132486986422e-08 - ArtUnc_90: -2.9598162641288955e-07 - ArtUnc_91: 1.3646041135443824e-07 - ArtUnc_92: -1.63688694421884e-06 - ArtUnc_93: -4.626251923597679e-09 - ArtUnc_94: -2.9079417657433032e-08 - ArtUnc_95: 1.2467227997216099e-08 - ArtUnc_96: -9.500208452471877e-09 + ArtUnc_1: 3.1649572545798636e-16 + ArtUnc_2: -5.233577612250058e-14 + ArtUnc_3: 1.2009689584926394e-13 + ArtUnc_4: 5.277572473053857e-12 + ArtUnc_5: 1.9602452330203135e-13 + ArtUnc_6: 1.1950603216690673e-13 + ArtUnc_7: 1.177091946862514e-10 + ArtUnc_8: -1.4179526772949043e-09 + ArtUnc_9: 3.140778790121353e-11 + ArtUnc_10: 1.5709557509707463e-09 + ArtUnc_11: -3.1240802535447885e-09 + ArtUnc_12: -2.518727268235315e-10 + ArtUnc_13: -7.045050237369745e-09 + ArtUnc_14: -2.4889382837967554e-11 + ArtUnc_15: -6.151766026825989e-11 + ArtUnc_16: 5.582573905562612e-12 + ArtUnc_17: 3.960908745469827e-10 + ArtUnc_18: -1.2186192497896489e-11 + ArtUnc_19: -1.2867497103024744e-09 + ArtUnc_20: -4.035383590529554e-09 + ArtUnc_21: 2.330392107937851e-10 + ArtUnc_22: -4.487504907636002e-08 + ArtUnc_23: -7.936318198209268e-10 + ArtUnc_24: 2.371442818121514e-08 + ArtUnc_25: 1.574975239816285e-08 + ArtUnc_26: -4.309261165127264e-09 + ArtUnc_27: -9.7984030705831e-08 + ArtUnc_28: -4.944339987828451e-09 + ArtUnc_29: -5.412031033562565e-08 + ArtUnc_30: -2.2124207161280466e-08 + ArtUnc_31: 9.099620059241552e-09 + ArtUnc_32: -2.4212284907869234e-07 + ArtUnc_33: 7.643746265587136e-11 + ArtUnc_34: -2.531175015901532e-09 + ArtUnc_35: -4.649292937064408e-09 + ArtUnc_36: 2.1601831095153314e-10 + ArtUnc_37: 1.4995257681146108e-09 + ArtUnc_38: -1.5743773344953369e-10 + ArtUnc_39: 7.455873430691035e-09 + ArtUnc_40: -4.957949681526738e-11 + ArtUnc_41: -2.9637995206043367e-08 + ArtUnc_42: 1.4364644653972603e-09 + ArtUnc_43: 8.010985922253236e-08 + ArtUnc_44: 1.1402569191300257e-08 + ArtUnc_45: -4.70319844532275e-10 + ArtUnc_46: 1.0023033931634319e-08 + ArtUnc_47: 7.628779905008244e-09 + ArtUnc_48: -4.3229700830991953e-10 + ArtUnc_49: 3.164264343360258e-07 + ArtUnc_50: 1.244365852390118e-08 + ArtUnc_51: -5.759850014053632e-08 + ArtUnc_52: 4.17163704070633e-08 + ArtUnc_53: -2.931442056952663e-09 + ArtUnc_54: -3.5184202673116693e-09 + ArtUnc_55: -4.5051482319390554e-07 + ArtUnc_56: 4.7492041930752146e-07 + ArtUnc_57: 1.4149340622586435e-07 + ArtUnc_58: -5.06873105407668e-07 + ArtUnc_59: -4.014248528158959e-09 + ArtUnc_60: -6.525009893137404e-07 + ArtUnc_61: 7.476582192990769e-10 + ArtUnc_62: -6.224558013585522e-08 + ArtUnc_63: 5.947352900612051e-09 + ArtUnc_64: -4.6023902239792263e-07 + ArtUnc_65: 1.469646262779821e-08 + ArtUnc_66: -8.742215561408021e-07 + ArtUnc_67: 2.685437413470425e-07 + ArtUnc_68: -2.515600809491753e-08 + ArtUnc_69: -9.129200909773729e-08 + ArtUnc_70: 2.0080733355498856e-06 + ArtUnc_71: 2.981855795298056e-08 + ArtUnc_72: 1.2038558502867265e-06 + ArtUnc_73: -3.738286373691037e-09 + ArtUnc_74: 7.397192237967834e-06 + ArtUnc_75: -1.1239358915581491e-07 + ArtUnc_76: 1.9660642274449898e-07 + ArtUnc_77: 2.0281556677642994e-07 + ArtUnc_78: 1.2953754330491275e-05 + ArtUnc_79: -2.117380884707036e-05 + ArtUnc_80: 3.964956462254869e-07 + ArtUnc_81: 2.6821229728058613e-07 + ArtUnc_82: -5.169686328983974e-08 + ArtUnc_83: -1.592215483144535e-07 + ArtUnc_84: 7.311494935121575e-07 + ArtUnc_85: 2.9648856667801234e-09 + ArtUnc_86: -2.056962891334345e-08 + ArtUnc_87: -2.2139520866865153e-08 + ArtUnc_88: -3.832132486986376e-08 + ArtUnc_89: -9.456451570329005e-07 + ArtUnc_90: 2.959816264128777e-07 + ArtUnc_91: 1.36460411354434e-07 + ArtUnc_92: 1.6368869442189318e-06 + ArtUnc_93: -4.62625192359946e-09 + ArtUnc_94: -2.907941765743483e-08 + ArtUnc_95: 1.2467227997260188e-08 + ArtUnc_96: -9.500208452465233e-09 - stat: 0 Uncorr: 2.84e-07 RCES: 1.6280577123677157e-06 @@ -1680,102 +1680,102 @@ bins: ModelRW_2: 8.354042355650347e-07 JES_1: 2.043017320141951e-06 JES_2: 2.043017320141951e-06 - ArtUnc_1: 7.525551366001484e-19 - ArtUnc_2: 1.701106506288059e-18 - ArtUnc_3: 2.2088374552042653e-17 - ArtUnc_4: 1.2241962773743911e-16 - ArtUnc_5: 4.1406436477623455e-18 - ArtUnc_6: 1.8386320253768616e-18 - ArtUnc_7: 4.662605559313038e-16 - ArtUnc_8: 3.695906971419403e-15 - ArtUnc_9: 4.122837894431185e-17 - ArtUnc_10: -1.6732250972111107e-14 - ArtUnc_11: 2.906247935821747e-14 - ArtUnc_12: -2.0735468235288463e-15 - ArtUnc_13: -1.0956125714153958e-13 - ArtUnc_14: -7.645551120169018e-16 - ArtUnc_15: 4.445232600208668e-15 - ArtUnc_16: -2.675055029764981e-16 - ArtUnc_17: -6.686565834916709e-15 - ArtUnc_18: -1.8429778988880834e-16 - ArtUnc_19: -5.309393895649595e-14 - ArtUnc_20: 1.6034412809639874e-13 - ArtUnc_21: -9.114499218152497e-15 - ArtUnc_22: 2.8160976159435096e-12 - ArtUnc_23: 5.926044547378676e-14 - ArtUnc_24: -1.9827743594024963e-12 - ArtUnc_25: -2.8747873250231603e-13 - ArtUnc_26: 1.604025822026323e-13 - ArtUnc_27: 8.751908398158677e-12 - ArtUnc_28: -3.2430577908284667e-13 - ArtUnc_29: -6.553866975505245e-12 - ArtUnc_30: 2.568968732181833e-12 - ArtUnc_31: 1.0753638368186946e-12 - ArtUnc_32: 4.1544951068355053e-11 - ArtUnc_33: 1.7348281782282054e-15 - ArtUnc_34: -1.504056954162059e-12 - ArtUnc_35: 7.984848532177075e-13 - ArtUnc_36: -2.4281165361645328e-11 - ArtUnc_37: -4.7504459545822565e-11 - ArtUnc_38: -9.352170382311762e-12 - ArtUnc_39: -5.003011145125786e-11 - ArtUnc_40: -9.794687296308413e-13 - ArtUnc_41: -3.3840096663886415e-10 - ArtUnc_42: -9.145350862669522e-12 - ArtUnc_43: 5.444991103340965e-10 - ArtUnc_44: 2.164790135154207e-10 - ArtUnc_45: 5.036337926644948e-12 - ArtUnc_46: 7.572012011905827e-11 - ArtUnc_47: 1.3122931491819182e-11 - ArtUnc_48: 1.623502336058403e-12 - ArtUnc_49: -1.446386899261996e-09 - ArtUnc_50: -6.487919379622005e-11 - ArtUnc_51: -2.5640452705376276e-10 - ArtUnc_52: 1.9086491769857173e-11 - ArtUnc_53: 6.004925716784896e-11 - ArtUnc_54: -1.3528719568469096e-11 - ArtUnc_55: 1.1799485815549566e-08 - ArtUnc_56: -9.975340208778051e-09 - ArtUnc_57: -2.2521217812461434e-09 - ArtUnc_58: 2.8046997584408207e-08 - ArtUnc_59: 2.2103976595498915e-10 - ArtUnc_60: -3.3649817451945465e-08 - ArtUnc_61: -1.1740658032909334e-10 - ArtUnc_62: -2.4023398508546184e-09 - ArtUnc_63: 1.7391658748616523e-10 - ArtUnc_64: -8.892744340589307e-08 - ArtUnc_65: -4.7974890767403846e-09 - ArtUnc_66: -1.223645169680704e-07 - ArtUnc_67: 3.0406525795472946e-08 - ArtUnc_68: -6.8622035401585674e-09 - ArtUnc_69: 7.665774654291003e-09 - ArtUnc_70: -1.480625126632562e-07 - ArtUnc_71: -2.0979076256279665e-09 - ArtUnc_72: -5.12220960070288e-08 - ArtUnc_73: -1.3362480636346698e-10 - ArtUnc_74: -2.7175826221355415e-07 - ArtUnc_75: -4.951873092023613e-08 - ArtUnc_76: 3.1980767459502424e-09 - ArtUnc_77: 1.1602659070867372e-08 - ArtUnc_78: 2.0132775223614465e-07 - ArtUnc_79: -3.730666429976659e-07 - ArtUnc_80: 5.992296682740758e-09 - ArtUnc_81: -4.792623496430073e-09 - ArtUnc_82: 1.0624184782711253e-09 - ArtUnc_83: 9.610625844063604e-08 - ArtUnc_84: 1.269439672133434e-07 - ArtUnc_85: 6.457187616301165e-07 - ArtUnc_86: -2.931789992925559e-07 - ArtUnc_87: -3.93721173068405e-07 - ArtUnc_88: -1.8185695363265478e-07 - ArtUnc_89: 4.955158818554088e-08 - ArtUnc_90: -1.0973584506276621e-06 - ArtUnc_91: -6.700710340023026e-06 - ArtUnc_92: 4.1782353724122134e-08 - ArtUnc_93: 6.932943847533906e-08 - ArtUnc_94: 1.1183383282740128e-07 - ArtUnc_95: -2.9181645166768724e-06 - ArtUnc_96: -6.066089548558548e-07 + ArtUnc_1: 7.525551332810761e-19 + ArtUnc_2: 1.7011065060993183e-18 + ArtUnc_3: 2.2088374550225672e-17 + ArtUnc_4: 1.2241962774379785e-16 + ArtUnc_5: 4.140643639484835e-18 + ArtUnc_6: 1.838631669346577e-18 + ArtUnc_7: 4.662605559246975e-16 + ArtUnc_8: 3.6959069714146945e-15 + ArtUnc_9: 4.1228378670082187e-17 + ArtUnc_10: -1.6732250973069617e-14 + ArtUnc_11: 2.906247935746357e-14 + ArtUnc_12: 2.07354682755585e-15 + ArtUnc_13: 1.0956125714146772e-13 + ArtUnc_14: -7.645551038861831e-16 + ArtUnc_15: 4.445232595615555e-15 + ArtUnc_16: -2.675054665071818e-16 + ArtUnc_17: -6.686565834819298e-15 + ArtUnc_18: 1.8429779658553334e-16 + ArtUnc_19: 5.3093938955127536e-14 + ArtUnc_20: 1.6034412809324093e-13 + ArtUnc_21: -9.114499216275052e-15 + ArtUnc_22: 2.8160976159407595e-12 + ArtUnc_23: 5.926044542417139e-14 + ArtUnc_24: -1.9827743594159214e-12 + ArtUnc_25: -2.8747873249342066e-13 + ArtUnc_26: 1.6040258231256255e-13 + ArtUnc_27: 8.751908398152517e-12 + ArtUnc_28: 3.243057790862044e-13 + ArtUnc_29: 6.553866976012681e-12 + ArtUnc_30: 2.568968732178255e-12 + ArtUnc_31: -1.0753638369503453e-12 + ArtUnc_32: 4.1544951068356036e-11 + ArtUnc_33: -1.7348277059421816e-15 + ArtUnc_34: -1.5040569541908268e-12 + ArtUnc_35: -7.984848532209664e-13 + ArtUnc_36: 2.4281165361617614e-11 + ArtUnc_37: -4.750445954573314e-11 + ArtUnc_38: 9.352170382692404e-12 + ArtUnc_39: 5.0030111451300346e-11 + ArtUnc_40: -9.794687305802967e-13 + ArtUnc_41: -3.384009666384961e-10 + ArtUnc_42: 9.145350864578396e-12 + ArtUnc_43: 5.444991103342456e-10 + ArtUnc_44: 2.164790135155239e-10 + ArtUnc_45: -5.036337921055136e-12 + ArtUnc_46: 7.572012011880331e-11 + ArtUnc_47: 1.3122931491457895e-11 + ArtUnc_48: -1.6235023239829938e-12 + ArtUnc_49: 1.4463868992619182e-09 + ArtUnc_50: 6.487919379608554e-11 + ArtUnc_51: 2.564045270519593e-10 + ArtUnc_52: -1.9086491770607894e-11 + ArtUnc_53: -6.004925716718752e-11 + ArtUnc_54: 1.3528719560799027e-11 + ArtUnc_55: 1.1799485815545221e-08 + ArtUnc_56: -9.975340208781463e-09 + ArtUnc_57: -2.2521217812471348e-09 + ArtUnc_58: 2.804699758441273e-08 + ArtUnc_59: 2.2103976595410218e-10 + ArtUnc_60: 3.3649817451941395e-08 + ArtUnc_61: 1.1740658032824714e-10 + ArtUnc_62: -2.402339850854667e-09 + ArtUnc_63: 1.7391658748525373e-10 + ArtUnc_64: 8.89274434058841e-08 + ArtUnc_65: -4.7974890767402026e-09 + ArtUnc_66: 1.22364516968084e-07 + ArtUnc_67: 3.040652579547578e-08 + ArtUnc_68: -6.862203540163716e-09 + ArtUnc_69: -7.665774654289796e-09 + ArtUnc_70: 1.480625126632594e-07 + ArtUnc_71: 2.0979076256282548e-09 + ArtUnc_72: 5.122209600702832e-08 + ArtUnc_73: 1.3362480636831328e-10 + ArtUnc_74: 2.717582622135473e-07 + ArtUnc_75: -4.951873092024478e-08 + ArtUnc_76: 3.198076745946251e-09 + ArtUnc_77: 1.1602659070872547e-08 + ArtUnc_78: 2.0132775223619658e-07 + ArtUnc_79: -3.7306664299767404e-07 + ArtUnc_80: 5.992296682747596e-09 + ArtUnc_81: -4.792623496419435e-09 + ArtUnc_82: -1.0624184782695466e-09 + ArtUnc_83: 9.610625844064377e-08 + ArtUnc_84: -1.2694396721333717e-07 + ArtUnc_85: -6.457187616301097e-07 + ArtUnc_86: -2.9317899929255475e-07 + ArtUnc_87: -3.9372117306839423e-07 + ArtUnc_88: 4.955158818554302e-08 + ArtUnc_89: 1.8185695363269428e-07 + ArtUnc_90: 1.097358450627666e-06 + ArtUnc_91: -6.7007103400230265e-06 + ArtUnc_92: -4.1782353724083415e-08 + ArtUnc_93: 6.93294384753824e-08 + ArtUnc_94: 1.1183383282743e-07 + ArtUnc_95: -2.9181645166768758e-06 + ArtUnc_96: -6.066089548558399e-07 - stat: 0 Uncorr: 0.00136 RCES: 0.0036118371391855417 @@ -1791,102 +1791,102 @@ bins: ModelRW_2: 0.002250296620448069 JES_1: 0.0009718410981225276 JES_2: 0.0009718410981225276 - ArtUnc_1: -5.184077554804865e-09 - ArtUnc_2: 1.1677814854411717e-06 - ArtUnc_3: 6.484945269316032e-06 - ArtUnc_4: 2.9607766166695188e-05 - ArtUnc_5: 1.0260097645233027e-06 - ArtUnc_6: 2.6625129317257976e-07 - ArtUnc_7: 0.00019243537417088768 - ArtUnc_8: -0.0010127354200840373 - ArtUnc_9: 1.8484503325495992e-05 - ArtUnc_10: 0.0004836711327518179 - ArtUnc_11: -0.001000349484245882 - ArtUnc_12: 8.105091416691032e-05 - ArtUnc_13: 0.001560303726292502 - ArtUnc_14: -1.312468346417106e-05 - ArtUnc_15: -2.2591533427099566e-06 - ArtUnc_16: 5.81782659962372e-07 - ArtUnc_17: -1.1337540775552543e-06 - ArtUnc_18: -2.9870296863938236e-09 - ArtUnc_19: 4.885827276898902e-06 - ArtUnc_20: 5.46036666714075e-06 - ArtUnc_21: -1.9999995328936353e-07 - ArtUnc_22: 1.1276225478014803e-05 - ArtUnc_23: 2.415068877154063e-07 - ArtUnc_24: -1.869934832142698e-05 - ArtUnc_25: -8.703721396487764e-06 - ArtUnc_26: -5.289837150205136e-07 - ArtUnc_27: 2.0927443056242083e-05 - ArtUnc_28: -1.1909023961736666e-06 - ArtUnc_29: 1.376509661271128e-07 - ArtUnc_30: 2.3200362872257244e-06 - ArtUnc_31: 9.390934551417529e-07 - ArtUnc_32: 5.2604449124956104e-05 - ArtUnc_33: 2.0294766714359843e-08 - ArtUnc_34: 6.195759482584393e-07 - ArtUnc_35: -9.550353952130715e-07 - ArtUnc_36: -3.7298417895135e-08 - ArtUnc_37: -8.018721329022145e-07 - ArtUnc_38: -1.3985486051413725e-07 - ArtUnc_39: 6.047222284831873e-07 - ArtUnc_40: -2.4299704067399724e-09 - ArtUnc_41: 1.4240506631795575e-07 - ArtUnc_42: -1.763199430666483e-09 - ArtUnc_43: -3.8265962551439144e-07 - ArtUnc_44: 5.247038576006091e-07 - ArtUnc_45: 2.189129079036999e-09 - ArtUnc_46: -1.4438072463173603e-08 - ArtUnc_47: 1.3171349073521783e-08 - ArtUnc_48: 2.791115764211058e-10 - ArtUnc_49: 1.2825201759836086e-06 - ArtUnc_50: 3.9512167365672865e-08 - ArtUnc_51: -4.224301304456276e-09 - ArtUnc_52: -6.7536858555796595e-09 - ArtUnc_53: 1.0953565605416257e-09 - ArtUnc_54: -5.617115275140115e-10 - ArtUnc_55: -1.7820274368217247e-08 - ArtUnc_56: -1.2209974055510865e-09 - ArtUnc_57: -4.019287354504049e-10 - ArtUnc_58: -4.213685453428e-09 - ArtUnc_59: 1.2091701534008238e-10 - ArtUnc_60: 8.476923147506623e-09 - ArtUnc_61: -2.7460661767762e-11 - ArtUnc_62: -2.3627119172180134e-10 - ArtUnc_63: 1.983654630674247e-11 - ArtUnc_64: 6.46630459178119e-08 - ArtUnc_65: 1.1144518540054536e-09 - ArtUnc_66: -4.5764880710363666e-08 - ArtUnc_67: 5.587580325254852e-10 - ArtUnc_68: -6.110199357285555e-10 - ArtUnc_69: 1.7776037748952677e-11 - ArtUnc_70: -2.1053104483385263e-10 - ArtUnc_71: -2.036025074802014e-12 - ArtUnc_72: -5.932777335713809e-10 - ArtUnc_73: -4.280016881337702e-11 - ArtUnc_74: -8.42143694808457e-11 - ArtUnc_75: -9.046981473561906e-10 - ArtUnc_76: -8.71138686602466e-12 - ArtUnc_77: -8.7834967448671e-12 - ArtUnc_78: 1.1157174486689162e-09 - ArtUnc_79: -6.647586284952316e-10 - ArtUnc_80: 2.5056554750085015e-12 - ArtUnc_81: 2.9053533657375577e-11 - ArtUnc_82: 1.614311342765625e-12 - ArtUnc_83: -1.379289251603314e-11 - ArtUnc_84: -2.5599498846856188e-11 - ArtUnc_85: 4.113652347930657e-13 - ArtUnc_86: 3.0054805505082303e-12 - ArtUnc_87: 3.627340632113543e-12 - ArtUnc_88: 1.9168249548639103e-11 - ArtUnc_89: -2.8013289475795883e-12 - ArtUnc_90: 1.7317335682249135e-11 - ArtUnc_91: -2.0340718509919114e-12 - ArtUnc_92: -7.107882979359801e-11 - ArtUnc_93: -1.9824035580746016e-12 - ArtUnc_94: -8.498361675632156e-13 - ArtUnc_95: 3.0305793135592135e-11 - ArtUnc_96: 4.905247241945592e-12 + ArtUnc_1: -5.184077555533741e-09 + ArtUnc_2: 1.1677814854411006e-06 + ArtUnc_3: 6.484945269315138e-06 + ArtUnc_4: 2.9607766166695967e-05 + ArtUnc_5: 1.026009764528549e-06 + ArtUnc_6: 2.662512931754971e-07 + ArtUnc_7: 0.00019243537417088093 + ArtUnc_8: -0.0010127354200840388 + ArtUnc_9: 1.8484503325499536e-05 + ArtUnc_10: 0.00048367113275177076 + ArtUnc_11: -0.0010003494842459083 + ArtUnc_12: -8.105091416697253e-05 + ArtUnc_13: -0.001560303726292504 + ArtUnc_14: -1.3124683464170857e-05 + ArtUnc_15: -2.2591533427100417e-06 + ArtUnc_16: 5.817826599619027e-07 + ArtUnc_17: -1.1337540775553265e-06 + ArtUnc_18: 2.987029686372386e-09 + ArtUnc_19: -4.885827276898941e-06 + ArtUnc_20: 5.46036666714073e-06 + ArtUnc_21: -1.9999995328938429e-07 + ArtUnc_22: 1.127622547801492e-05 + ArtUnc_23: 2.4150688771514286e-07 + ArtUnc_24: -1.8699348321426944e-05 + ArtUnc_25: -8.703721396487673e-06 + ArtUnc_26: -5.289837150206431e-07 + ArtUnc_27: 2.092744305624243e-05 + ArtUnc_28: 1.1909023961737446e-06 + ArtUnc_29: -1.376509661274837e-07 + ArtUnc_30: 2.320036287223341e-06 + ArtUnc_31: -9.390934551493554e-07 + ArtUnc_32: 5.260444912495629e-05 + ArtUnc_33: -2.0294766714438776e-08 + ArtUnc_34: 6.195759482581024e-07 + ArtUnc_35: 9.550353952130143e-07 + ArtUnc_36: 3.729841789513544e-08 + ArtUnc_37: -8.01872132902217e-07 + ArtUnc_38: 1.3985486051409333e-07 + ArtUnc_39: -6.047222284831918e-07 + ArtUnc_40: -2.4299704067528574e-09 + ArtUnc_41: 1.4240506631795265e-07 + ArtUnc_42: 1.7631994306664332e-09 + ArtUnc_43: -3.8265962551438614e-07 + ArtUnc_44: 5.247038576006126e-07 + ArtUnc_45: -2.189129079051947e-09 + ArtUnc_46: -1.44380724631698e-08 + ArtUnc_47: 1.3171349073524332e-08 + ArtUnc_48: -2.7911157642128274e-10 + ArtUnc_49: -1.2825201759836507e-06 + ArtUnc_50: -3.951216736568954e-08 + ArtUnc_51: 4.224301304456062e-09 + ArtUnc_52: 6.753685855579711e-09 + ArtUnc_53: -1.0953565605415092e-09 + ArtUnc_54: 5.61711527514032e-10 + ArtUnc_55: -1.782027436821851e-08 + ArtUnc_56: -1.2209974055510724e-09 + ArtUnc_57: -4.019287354508974e-10 + ArtUnc_58: -4.213685453428593e-09 + ArtUnc_59: 1.2091701533994065e-10 + ArtUnc_60: -8.476923147507564e-09 + ArtUnc_61: 2.7460661768004776e-11 + ArtUnc_62: -2.362711917216108e-10 + ArtUnc_63: 1.9836546306819357e-11 + ArtUnc_64: -6.466304591781763e-08 + ArtUnc_65: 1.114451854006085e-09 + ArtUnc_66: 4.576488071035876e-08 + ArtUnc_67: 5.587580325253636e-10 + ArtUnc_68: -6.110199357284909e-10 + ArtUnc_69: -1.7776037748956474e-11 + ArtUnc_70: 2.105310448338427e-10 + ArtUnc_71: 2.036025074802777e-12 + ArtUnc_72: 5.932777335713569e-10 + ArtUnc_73: 4.2800168813375514e-11 + ArtUnc_74: 8.421436948084789e-11 + ArtUnc_75: -9.046981473561437e-10 + ArtUnc_76: -8.711386866030128e-12 + ArtUnc_77: -8.783496744864512e-12 + ArtUnc_78: 1.1157174486688844e-09 + ArtUnc_79: -6.647586284951538e-10 + ArtUnc_80: 2.5056554750015145e-12 + ArtUnc_81: 2.9053533657378786e-11 + ArtUnc_82: -1.6143113427655448e-12 + ArtUnc_83: -1.3792892516033813e-11 + ArtUnc_84: 2.55994988468569e-11 + ArtUnc_85: -4.1136523479301395e-13 + ArtUnc_86: 3.0054805505082905e-12 + ArtUnc_87: 3.6273406321135882e-12 + ArtUnc_88: -2.8013289475797947e-12 + ArtUnc_89: -1.9168249548640208e-11 + ArtUnc_90: -1.7317335682249917e-11 + ArtUnc_91: -2.0340718509920277e-12 + ArtUnc_92: 7.107882979360044e-11 + ArtUnc_93: -1.982403558075022e-12 + ArtUnc_94: -8.498361675632596e-13 + ArtUnc_95: 3.0305793135593906e-11 + ArtUnc_96: 4.905247241945646e-12 - stat: 0 Uncorr: 0.00045900000000000004 RCES: 0.002456034972160413 @@ -1902,102 +1902,102 @@ bins: ModelRW_2: 0.0020479862992827855 JES_1: 0.002342417695509813 JES_2: 0.002342417695509813 - ArtUnc_1: 9.75354752026044e-11 - ArtUnc_2: -6.2273727859760864e-09 - ArtUnc_3: 1.7087591791453076e-08 - ArtUnc_4: 4.3191107089871855e-07 - ArtUnc_5: 1.5544336954288856e-08 - ArtUnc_6: 7.296344356718899e-09 - ArtUnc_7: 6.546000347583141e-06 - ArtUnc_8: -5.724476102832814e-05 - ArtUnc_9: 1.186505533191221e-06 - ArtUnc_10: 4.336442172325017e-05 - ArtUnc_11: -8.826179700580657e-05 - ArtUnc_12: 7.203021247224612e-06 - ArtUnc_13: 0.00015235000980224025 - ArtUnc_14: -4.796339927818345e-07 - ArtUnc_15: -1.0309022261121592e-06 - ArtUnc_16: 9.391591905535796e-08 - ArtUnc_17: 5.1417193078837926e-06 - ArtUnc_18: 1.678842609126929e-07 - ArtUnc_19: 1.2964071120157593e-05 - ArtUnc_20: -3.0078776123107486e-05 - ArtUnc_21: 1.4925297085899568e-06 - ArtUnc_22: -0.0002355474459410796 - ArtUnc_23: -3.6760785509666088e-06 - ArtUnc_24: 0.0001026755887035469 - ArtUnc_25: 6.497741781848203e-05 - ArtUnc_26: -1.8235778533687866e-05 - ArtUnc_27: -0.000324237010333689 - ArtUnc_28: 1.4688165452172505e-05 - ArtUnc_29: 0.00015227934141965964 - ArtUnc_30: -5.982084023959652e-05 - ArtUnc_31: -2.4570653641737887e-05 - ArtUnc_32: -0.0005046502186004556 - ArtUnc_33: -1.7699603926284625e-07 - ArtUnc_34: -4.9246920619964135e-06 - ArtUnc_35: 7.714627557624803e-06 - ArtUnc_36: 2.239252880549989e-07 - ArtUnc_37: 6.411402027397142e-06 - ArtUnc_38: 1.1162652040399548e-06 - ArtUnc_39: 1.1430952119947786e-06 - ArtUnc_40: -6.74883846534561e-08 - ArtUnc_41: -2.3494255885953138e-06 - ArtUnc_42: 3.5551468648716967e-08 - ArtUnc_43: 4.703836380515397e-06 + ArtUnc_1: 9.753547439539828e-11 + ArtUnc_2: -6.227372784156302e-09 + ArtUnc_3: 1.708759179124174e-08 + ArtUnc_4: 4.319110708990544e-07 + ArtUnc_5: 1.55443369537763e-08 + ArtUnc_6: 7.296344354538225e-09 + ArtUnc_7: 6.5460003475791674e-06 + ArtUnc_8: -5.7244761028330045e-05 + ArtUnc_9: 1.186505533190126e-06 + ArtUnc_10: 4.336442172324861e-05 + ArtUnc_11: -8.82617970058097e-05 + ArtUnc_12: -7.2030212472301245e-06 + ArtUnc_13: -0.00015235000980223684 + ArtUnc_14: -4.796339927814513e-07 + ArtUnc_15: -1.0309022261121442e-06 + ArtUnc_16: 9.39159190546805e-08 + ArtUnc_17: 5.141719307884341e-06 + ArtUnc_18: -1.6788426091245276e-07 + ArtUnc_19: -1.2964071120157313e-05 + ArtUnc_20: -3.0078776123106327e-05 + ArtUnc_21: 1.492529708589883e-06 + ArtUnc_22: -0.00023554744594108016 + ArtUnc_23: -3.676078550964621e-06 + ArtUnc_24: 0.00010267558870354524 + ArtUnc_25: 6.497741781847948e-05 + ArtUnc_26: -1.8235778533686426e-05 + ArtUnc_27: -0.00032423701033369213 + ArtUnc_28: -1.4688165452177336e-05 + ArtUnc_29: -0.0001522793414196557 + ArtUnc_30: -5.9820840239537066e-05 + ArtUnc_31: 2.457065364193579e-05 + ArtUnc_32: -0.000504650218600457 + ArtUnc_33: 1.7699603926293156e-07 + ArtUnc_34: -4.924692061993343e-06 + ArtUnc_35: -7.714627557624232e-06 + ArtUnc_36: -2.2392528805489359e-07 + ArtUnc_37: 6.411402027397098e-06 + ArtUnc_38: -1.1162652040395937e-06 + ArtUnc_39: -1.1430952119947765e-06 + ArtUnc_40: -6.748838465346753e-08 + ArtUnc_41: -2.3494255885952587e-06 + ArtUnc_42: -3.555146864871654e-08 + ArtUnc_43: 4.703836380515194e-06 ArtUnc_44: -1.0566857235536604e-05 - ArtUnc_45: -4.4945124539154526e-08 - ArtUnc_46: -2.4857258556842753e-08 - ArtUnc_47: -1.6350369399768692e-07 - ArtUnc_48: -1.0292275806382017e-08 - ArtUnc_49: -1.4375919532155716e-05 - ArtUnc_50: -4.5840583908422396e-07 - ArtUnc_51: 2.5943913798835746e-08 - ArtUnc_52: 3.02608715287162e-08 - ArtUnc_53: -5.632813063283787e-09 - ArtUnc_54: 3.4802714012216528e-09 - ArtUnc_55: 1.3420913257162435e-07 - ArtUnc_56: -1.9194512317746415e-08 - ArtUnc_57: -4.460334623166559e-09 - ArtUnc_58: 1.857298792904718e-07 - ArtUnc_59: -1.5232168649288685e-09 - ArtUnc_60: -2.4123029218965524e-08 - ArtUnc_61: 1.7882848468395116e-10 - ArtUnc_62: 1.7966622080950064e-09 - ArtUnc_63: -1.571494213326034e-10 - ArtUnc_64: -6.671627784510943e-07 - ArtUnc_65: -1.0251897553522388e-08 - ArtUnc_66: 4.632156231862757e-07 - ArtUnc_67: -6.16158835415434e-09 - ArtUnc_68: 6.201726802225472e-09 - ArtUnc_69: -2.1346750028951346e-10 - ArtUnc_70: 2.4861479308311137e-09 - ArtUnc_71: 2.787441481270428e-11 - ArtUnc_72: 7.099604145631209e-09 - ArtUnc_73: 5.686130851729391e-10 - ArtUnc_74: 1.429200388025044e-09 - ArtUnc_75: 1.0248505960158253e-08 - ArtUnc_76: 1.0475918137978693e-10 - ArtUnc_77: 5.6777043837773735e-11 - ArtUnc_78: -1.2579885201608976e-08 - ArtUnc_79: 7.794043392190016e-09 - ArtUnc_80: -7.579711414809432e-11 - ArtUnc_81: -3.4308525311691373e-10 - ArtUnc_82: -1.7751170490890264e-11 - ArtUnc_83: 1.675001844948625e-10 - ArtUnc_84: 3.033136767964866e-10 - ArtUnc_85: -4.200393841862105e-12 - ArtUnc_86: -2.7784398976117046e-11 - ArtUnc_87: -3.283629617375814e-11 - ArtUnc_88: -2.877883598046446e-10 - ArtUnc_89: 3.125116211258946e-11 - ArtUnc_90: -1.5366438817765233e-10 - ArtUnc_91: 1.518307637548374e-11 - ArtUnc_92: 7.963922779568119e-10 - ArtUnc_93: 1.854010673838889e-11 - ArtUnc_94: 1.30934162861907e-11 - ArtUnc_95: -3.159639964275127e-10 - ArtUnc_96: -5.187217158734205e-11 + ArtUnc_45: 4.4945124539397075e-08 + ArtUnc_46: -2.4857258556887034e-08 + ArtUnc_47: -1.6350369399770955e-07 + ArtUnc_48: 1.0292275806389106e-08 + ArtUnc_49: 1.4375919532156121e-05 + ArtUnc_50: 4.584058390843983e-07 + ArtUnc_51: -2.5943913798833367e-08 + ArtUnc_52: -3.026087152871613e-08 + ArtUnc_53: 5.632813063282722e-09 + ArtUnc_54: -3.4802714012223778e-09 + ArtUnc_55: 1.3420913257163547e-07 + ArtUnc_56: -1.919451231774332e-08 + ArtUnc_57: -4.460334623172426e-09 + ArtUnc_58: 1.8572987929047742e-07 + ArtUnc_59: -1.5232168649282663e-09 + ArtUnc_60: 2.412302921897371e-08 + ArtUnc_61: -1.7882848468633827e-10 + ArtUnc_62: 1.7966622080932891e-09 + ArtUnc_63: -1.5714942133352477e-10 + ArtUnc_64: 6.671627784511517e-07 + ArtUnc_65: -1.025189755352918e-08 + ArtUnc_66: -4.632156231862248e-07 + ArtUnc_67: -6.161588354153124e-09 + ArtUnc_68: 6.201726802224839e-09 + ArtUnc_69: 2.1346750028956372e-10 + ArtUnc_70: -2.4861479308310165e-09 + ArtUnc_71: -2.787441481271272e-11 + ArtUnc_72: -7.099604145631049e-09 + ArtUnc_73: -5.6861308517293e-10 + ArtUnc_74: -1.4292003880250983e-09 + ArtUnc_75: 1.0248505960157929e-08 + ArtUnc_76: 1.0475918137984441e-10 + ArtUnc_77: 5.677704383775364e-11 + ArtUnc_78: -1.2579885201608965e-08 + ArtUnc_79: 7.794043392189298e-09 + ArtUnc_80: -7.579711414801293e-11 + ArtUnc_81: -3.430852531169544e-10 + ArtUnc_82: 1.775117049089012e-11 + ArtUnc_83: 1.675001844948761e-10 + ArtUnc_84: -3.033136767965014e-10 + ArtUnc_85: 4.20039384186154e-12 + ArtUnc_86: -2.7784398976116623e-11 + ArtUnc_87: -3.283629617375756e-11 + ArtUnc_88: 3.125116211259143e-11 + ArtUnc_89: 2.877883598046601e-10 + ArtUnc_90: 1.536643881776656e-10 + ArtUnc_91: 1.5183076375485108e-11 + ArtUnc_92: -7.963922779568559e-10 + ArtUnc_93: 1.8540106738393557e-11 + ArtUnc_94: 1.3093416286191433e-11 + ArtUnc_95: -3.1596399642754e-10 + ArtUnc_96: -5.1872171587344076e-11 - stat: 0 Uncorr: 0.000116 RCES: 0.00014704458507541174 @@ -2013,102 +2013,102 @@ bins: ModelRW_2: 0.0002797031583661508 JES_1: 0.00036034387576313817 JES_2: 0.00036034387576313817 - ArtUnc_1: 7.051224218170511e-11 - ArtUnc_2: -1.3977675181281722e-08 - ArtUnc_3: -7.119561085980849e-08 - ArtUnc_4: -2.8058198438085766e-07 - ArtUnc_5: -9.592216421389346e-09 - ArtUnc_6: -2.0297899814471796e-09 - ArtUnc_7: -1.347255652054934e-06 - ArtUnc_8: 4.150934493663707e-06 - ArtUnc_9: -5.952842188880549e-08 - ArtUnc_10: 5.4380103949999256e-08 - ArtUnc_11: 7.059796883563438e-08 - ArtUnc_12: -9.139260861121792e-09 - ArtUnc_13: 1.2790170539615172e-06 - ArtUnc_14: 2.561740834704523e-08 - ArtUnc_15: -1.9841482617862814e-08 - ArtUnc_16: 1.619807352846073e-10 - ArtUnc_17: 2.3983235953591063e-07 - ArtUnc_18: 7.139715680012391e-09 - ArtUnc_19: 7.286802604848566e-07 - ArtUnc_20: -1.5345833041427986e-06 - ArtUnc_21: 9.112349277439667e-08 - ArtUnc_22: -1.309874406162031e-05 - ArtUnc_23: -2.366435465708012e-07 - ArtUnc_24: 5.656671937789394e-06 - ArtUnc_25: 7.335671792195618e-06 - ArtUnc_26: -1.4577249046429854e-06 - ArtUnc_27: -2.234281373099328e-05 - ArtUnc_28: 9.327416416809586e-07 - ArtUnc_29: 3.571113044835011e-06 - ArtUnc_30: -2.329824213958802e-06 - ArtUnc_31: -9.539461832915348e-07 - ArtUnc_32: -3.3654680854993295e-05 - ArtUnc_33: -1.0814802951169263e-08 - ArtUnc_34: 5.098518791696569e-07 - ArtUnc_35: -7.814559505920847e-07 - ArtUnc_36: 6.4424889366370495e-06 - ArtUnc_37: 1.9979813786579762e-05 - ArtUnc_38: 3.5595772793985083e-06 - ArtUnc_39: 2.0489934740514856e-05 - ArtUnc_40: 3.02489581171129e-08 - ArtUnc_41: 6.089728888448017e-05 - ArtUnc_42: 3.7802166670696874e-07 - ArtUnc_43: -8.955261597294889e-05 - ArtUnc_44: -4.8024390229445945e-05 - ArtUnc_45: -6.22209842054908e-07 - ArtUnc_46: -1.3687951532626222e-05 - ArtUnc_47: 9.264014209200441e-07 - ArtUnc_48: -1.60940431640056e-08 - ArtUnc_49: 0.00017973388342818194 - ArtUnc_50: 4.459666900135036e-06 - ArtUnc_51: -2.0380504375675267e-07 - ArtUnc_52: 1.0862800138358524e-07 - ArtUnc_53: -3.971425587637444e-09 - ArtUnc_54: -2.9663603746897475e-09 - ArtUnc_55: -1.8811433941313633e-06 - ArtUnc_56: -1.9456883465458955e-06 - ArtUnc_57: -5.713827041414732e-07 - ArtUnc_58: -2.6674338272983187e-06 - ArtUnc_59: 3.8161231902574834e-08 - ArtUnc_60: -2.6960411564784744e-06 - ArtUnc_61: -2.2069932666303474e-09 - ArtUnc_62: 3.133504537482695e-08 - ArtUnc_63: -3.6382703959762624e-09 - ArtUnc_64: 5.3039856593629825e-06 - ArtUnc_65: 3.295262320677758e-08 - ArtUnc_66: -6.5141943706438e-06 - ArtUnc_67: 1.2249385484021418e-07 - ArtUnc_68: -6.042472036353696e-08 - ArtUnc_69: 2.5250031773642886e-09 - ArtUnc_70: -1.6964903821870466e-08 - ArtUnc_71: 4.213129200918381e-11 - ArtUnc_72: -1.0434560435131835e-09 - ArtUnc_73: -2.2988054108962423e-10 - ArtUnc_74: 4.0295819332110446e-08 - ArtUnc_75: 1.1695826127319187e-08 - ArtUnc_76: -1.1125737214142425e-09 - ArtUnc_77: -9.908908004052798e-10 - ArtUnc_78: 2.15663383962382e-07 - ArtUnc_79: 7.525356436863188e-08 - ArtUnc_80: -5.458073635483631e-10 - ArtUnc_81: 6.330795480690561e-09 - ArtUnc_82: -2.2198364046810994e-10 - ArtUnc_83: -1.484624633027967e-09 - ArtUnc_84: -1.368357657876776e-10 - ArtUnc_85: -2.5794689719642245e-10 - ArtUnc_86: 7.61121894871189e-11 - ArtUnc_87: 3.4903456058672834e-11 - ArtUnc_88: -1.7002038126260137e-09 - ArtUnc_89: -7.883110106207349e-11 - ArtUnc_90: 1.183009035226033e-09 - ArtUnc_91: 6.70014151095372e-10 - ArtUnc_92: -1.7580036048981999e-09 - ArtUnc_93: -4.661069203930548e-11 - ArtUnc_94: -5.5651946891794884e-11 - ArtUnc_95: -2.1446402629040687e-10 - ArtUnc_96: -5.192669359744669e-11 + ArtUnc_1: 7.051224216026941e-11 + ArtUnc_2: -1.3977675181295216e-08 + ArtUnc_3: -7.119561085981802e-08 + ArtUnc_4: -2.8058198438083383e-07 + ArtUnc_5: -9.59221642205358e-09 + ArtUnc_6: -2.02978998101931e-09 + ArtUnc_7: -1.3472556520548992e-06 + ArtUnc_8: 4.150934493663712e-06 + ArtUnc_9: -5.952842188927762e-08 + ArtUnc_10: 5.438010394919081e-08 + ArtUnc_11: 7.05979688352413e-08 + ArtUnc_12: 9.139260861476654e-09 + ArtUnc_13: -1.2790170539615633e-06 + ArtUnc_14: 2.5617408347870514e-08 + ArtUnc_15: -1.9841482618095413e-08 + ArtUnc_16: 1.6198073526381094e-10 + ArtUnc_17: 2.3983235953556213e-07 + ArtUnc_18: -7.139715679976194e-09 + ArtUnc_19: -7.286802604846646e-07 + ArtUnc_20: -1.534583304142478e-06 + ArtUnc_21: 9.112349277463271e-08 + ArtUnc_22: -1.3098744061619803e-05 + ArtUnc_23: -2.3664354657076953e-07 + ArtUnc_24: 5.656671937789673e-06 + ArtUnc_25: 7.335671792195338e-06 + ArtUnc_26: -1.4577249046427076e-06 + ArtUnc_27: -2.2342813730992484e-05 + ArtUnc_28: -9.32741641681257e-07 + ArtUnc_29: -3.5711130448348982e-06 + ArtUnc_30: -2.3298242139567014e-06 + ArtUnc_31: 9.539461832991869e-07 + ArtUnc_32: -3.365468085499373e-05 + ArtUnc_33: 1.0814802950801851e-08 + ArtUnc_34: 5.098518791699796e-07 + ArtUnc_35: 7.814559505928643e-07 + ArtUnc_36: -6.442488936637111e-06 + ArtUnc_37: 1.9979813786580084e-05 + ArtUnc_38: -3.559577279397605e-06 + ArtUnc_39: -2.0489934740514652e-05 + ArtUnc_40: 3.024895811611956e-08 + ArtUnc_41: 6.08972888844798e-05 + ArtUnc_42: -3.780216667070498e-07 + ArtUnc_43: -8.955261597295062e-05 + ArtUnc_44: -4.8024390229445863e-05 + ArtUnc_45: 6.222098420543644e-07 + ArtUnc_46: -1.368795153262544e-05 + ArtUnc_47: 9.264014209204773e-07 + ArtUnc_48: 1.6094043163831705e-08 + ArtUnc_49: -0.00017973388342818443 + ArtUnc_50: -4.459666900137267e-06 + ArtUnc_51: 2.038050437567206e-07 + ArtUnc_52: -1.0862800138360604e-07 + ArtUnc_53: 3.9714255876467446e-09 + ArtUnc_54: 2.966360374701162e-09 + ArtUnc_55: -1.8811433941314635e-06 + ArtUnc_56: -1.9456883465457418e-06 + ArtUnc_57: -5.713827041420243e-07 + ArtUnc_58: -2.6674338272983496e-06 + ArtUnc_59: 3.8161231902587136e-08 + ArtUnc_60: 2.6960411564784075e-06 + ArtUnc_61: 2.2069932666540668e-09 + ArtUnc_62: 3.1335045374841156e-08 + ArtUnc_63: -3.6382703959669343e-09 + ArtUnc_64: -5.303985659363463e-06 + ArtUnc_65: 3.295262320683488e-08 + ArtUnc_66: 6.51419437064317e-06 + ArtUnc_67: 1.224938548401954e-07 + ArtUnc_68: -6.0424720363524e-08 + ArtUnc_69: -2.525003177364441e-09 + ArtUnc_70: 1.6964903821867333e-08 + ArtUnc_71: -4.213129200925123e-11 + ArtUnc_72: 1.0434560435049898e-09 + ArtUnc_73: 2.2988054108867716e-10 + ArtUnc_74: -4.029581933211132e-08 + ArtUnc_75: 1.1695826127329766e-08 + ArtUnc_76: -1.1125737214139704e-09 + ArtUnc_77: -9.908908004047555e-10 + ArtUnc_78: 2.1566338396236692e-07 + ArtUnc_79: 7.525356436864798e-08 + ArtUnc_80: -5.458073635477984e-10 + ArtUnc_81: 6.330795480691271e-09 + ArtUnc_82: 2.219836404681475e-10 + ArtUnc_83: -1.4846246330279971e-09 + ArtUnc_84: 1.368357657876286e-10 + ArtUnc_85: 2.579468971964336e-10 + ArtUnc_86: 7.611218948708382e-11 + ArtUnc_87: 3.4903456058610976e-11 + ArtUnc_88: -7.88311010620826e-11 + ArtUnc_89: 1.7002038126260505e-09 + ArtUnc_90: -1.1830090352260171e-09 + ArtUnc_91: 6.700141510953795e-10 + ArtUnc_92: 1.7580036048980386e-09 + ArtUnc_93: -4.661069203930877e-11 + ArtUnc_94: -5.5651946891796474e-11 + ArtUnc_95: -2.1446402629044331e-10 + ArtUnc_96: -5.1926693597453337e-11 - stat: 0 Uncorr: 1.91e-05 RCES: 2.220205558050876e-05 @@ -2124,102 +2124,102 @@ bins: ModelRW_2: 3.362929140645101e-05 JES_1: 6.501898523796723e-05 JES_2: 6.501898523796723e-05 - ArtUnc_1: 5.028194037011682e-14 - ArtUnc_2: -7.930923863452117e-12 - ArtUnc_3: -3.500863412875774e-11 - ArtUnc_4: -9.003481958413572e-11 - ArtUnc_5: -3.1431617563460395e-12 - ArtUnc_6: -2.6228551187093957e-13 - ArtUnc_7: 2.4988272275389347e-10 - ArtUnc_8: -7.095544583118769e-09 - ArtUnc_9: 1.7262562013246882e-10 - ArtUnc_10: 9.466624384995902e-09 - ArtUnc_11: -1.8797889805441954e-08 - ArtUnc_12: 1.5481587852640913e-09 - ArtUnc_13: 4.131411529644207e-08 - ArtUnc_14: 1.2381720441638352e-10 - ArtUnc_15: -5.996467589129313e-10 - ArtUnc_16: 4.239274459555293e-11 - ArtUnc_17: 3.8003228588328964e-09 - ArtUnc_18: 1.1617569595827475e-10 - ArtUnc_19: 9.204297352629586e-09 - ArtUnc_20: -3.2952159006435125e-08 - ArtUnc_21: 1.706019035926824e-09 - ArtUnc_22: -3.1590324005269335e-07 - ArtUnc_23: -6.308935847157541e-09 - ArtUnc_24: 1.7278494489381813e-07 - ArtUnc_25: 1.387547211393275e-07 - ArtUnc_26: -2.9595791064755926e-08 - ArtUnc_27: -6.592875651505977e-07 - ArtUnc_28: 2.498500597107091e-08 - ArtUnc_29: 3.1242140113624735e-07 - ArtUnc_30: -1.2830119955878174e-07 - ArtUnc_31: -5.325623570391923e-08 - ArtUnc_32: -1.557857961817653e-06 - ArtUnc_33: -1.8667160575862471e-10 - ArtUnc_34: 3.4328292949324215e-08 - ArtUnc_35: -1.5603640778704735e-08 - ArtUnc_36: 3.414412333334038e-07 - ArtUnc_37: 6.324378226229919e-07 - ArtUnc_38: 1.1310962710340537e-07 - ArtUnc_39: 5.436061122555622e-07 - ArtUnc_40: 9.940743205069577e-09 - ArtUnc_41: 2.723372214838286e-06 - ArtUnc_42: -3.5212973381854846e-09 - ArtUnc_43: -3.2286787244512606e-06 - ArtUnc_44: -1.137559147814426e-06 - ArtUnc_45: -1.8692778347109393e-08 - ArtUnc_46: -4.7039603477273036e-07 - ArtUnc_47: 1.780854677128344e-07 - ArtUnc_48: 6.883291106114957e-09 - ArtUnc_49: 5.5623819126375e-06 - ArtUnc_50: 1.1534748792054565e-07 - ArtUnc_51: 1.028575206998775e-06 - ArtUnc_52: -3.0315609727011743e-07 - ArtUnc_53: -6.972290082412896e-09 - ArtUnc_54: 8.435772815705874e-08 - ArtUnc_55: -1.3118817752018065e-05 - ArtUnc_56: 8.339153477262663e-06 - ArtUnc_57: 2.3637144144613787e-06 - ArtUnc_58: -2.2236860622236262e-05 - ArtUnc_59: -4.699881721535158e-08 - ArtUnc_60: 2.263671637940174e-05 - ArtUnc_61: 3.1315628658612085e-09 - ArtUnc_62: -8.57322660994336e-07 - ArtUnc_63: 9.546774888890239e-08 - ArtUnc_64: 4.3457629674280023e-05 - ArtUnc_65: 1.6714745717973356e-06 - ArtUnc_66: 5.062688865522578e-05 - ArtUnc_67: -1.6624391063533658e-06 - ArtUnc_68: 3.1870521645735013e-07 - ArtUnc_69: -4.135156259850382e-08 - ArtUnc_70: 2.955379799570098e-07 - ArtUnc_71: -2.72632503482665e-09 - ArtUnc_72: -1.3610040269890458e-06 - ArtUnc_73: -1.026442091430942e-07 - ArtUnc_74: -5.69311430194319e-07 - ArtUnc_75: -1.703078184775388e-06 - ArtUnc_76: -6.269284013198872e-09 - ArtUnc_77: 8.642190079210228e-09 - ArtUnc_78: -3.365296810775991e-06 - ArtUnc_79: -1.844309294769266e-06 - ArtUnc_80: 9.498543448093592e-09 - ArtUnc_81: -9.359532363281393e-08 - ArtUnc_82: 5.063739805795015e-09 - ArtUnc_83: 1.6723098673167816e-08 - ArtUnc_84: -1.2576779963022046e-08 - ArtUnc_85: 5.9980743564484816e-09 - ArtUnc_86: -1.4311052060219964e-09 - ArtUnc_87: -1.0586207274605797e-09 - ArtUnc_88: 3.948718245876623e-08 - ArtUnc_89: -1.5082683611736483e-10 - ArtUnc_90: -1.8390899459918704e-08 - ArtUnc_91: -1.2206702689793343e-08 - ArtUnc_92: 3.956258911796859e-08 - ArtUnc_93: 2.2233604812058874e-10 - ArtUnc_94: 1.6431022394437524e-09 - ArtUnc_95: 2.7427779419382887e-09 - ArtUnc_96: 2.071055907394705e-10 + ArtUnc_1: 5.02819392911427e-14 + ArtUnc_2: -7.93092386430135e-12 + ArtUnc_3: -3.500863412851607e-11 + ArtUnc_4: -9.003481958336642e-11 + ArtUnc_5: -3.1431617742647692e-12 + ArtUnc_6: -2.6228548749244885e-13 + ArtUnc_7: 2.4988272275362133e-10 + ArtUnc_8: -7.095544583119142e-09 + ArtUnc_9: 1.7262562010402244e-10 + ArtUnc_10: 9.466624384963338e-09 + ArtUnc_11: -1.879788980545776e-08 + ArtUnc_12: -1.548158785248519e-09 + ArtUnc_13: -4.131411529644298e-08 + ArtUnc_14: 1.2381720443187933e-10 + ArtUnc_15: -5.996467589130546e-10 + ArtUnc_16: 4.2392744590761055e-11 + ArtUnc_17: 3.800322858826508e-09 + ArtUnc_18: -1.161756959648318e-10 + ArtUnc_19: -9.204297352626248e-09 + ArtUnc_20: -3.29521590064212e-08 + ArtUnc_21: 1.7060190359246318e-09 + ArtUnc_22: -3.159032400526775e-07 + ArtUnc_23: -6.308935847250307e-09 + ArtUnc_24: 1.7278494489382729e-07 + ArtUnc_25: 1.3875472113931756e-07 + ArtUnc_26: -2.9595791064606375e-08 + ArtUnc_27: -6.592875651505602e-07 + ArtUnc_28: -2.4985005971144744e-08 + ArtUnc_29: -3.1242140113639304e-07 + ArtUnc_30: -1.2830119955860022e-07 + ArtUnc_31: 5.325623570444768e-08 + ArtUnc_32: -1.557857961817675e-06 + ArtUnc_33: 1.8667160570307258e-10 + ArtUnc_34: 3.4328292949259264e-08 + ArtUnc_35: 1.5603640778777838e-08 + ArtUnc_36: -3.41441233333585e-07 + ArtUnc_37: 6.324378226229994e-07 + ArtUnc_38: -1.1310962710342948e-07 + ArtUnc_39: -5.43606112255573e-07 + ArtUnc_40: 9.94074320502835e-09 + ArtUnc_41: 2.723372214838412e-06 + ArtUnc_42: 3.5212973382349376e-09 + ArtUnc_43: -3.2286787244513157e-06 + ArtUnc_44: -1.137559147814532e-06 + ArtUnc_45: 1.8692778347107762e-08 + ArtUnc_46: -4.703960347728094e-07 + ArtUnc_47: 1.7808546771262623e-07 + ArtUnc_48: -6.883291106153041e-09 + ArtUnc_49: -5.562381912637747e-06 + ArtUnc_50: -1.1534748792065501e-07 + ArtUnc_51: -1.028575206998728e-06 + ArtUnc_52: 3.031560972701436e-07 + ArtUnc_53: 6.9722900824939765e-09 + ArtUnc_54: -8.435772815707573e-08 + ArtUnc_55: -1.3118817752018197e-05 + ArtUnc_56: 8.339153477261923e-06 + ArtUnc_57: 2.363714414463892e-06 + ArtUnc_58: -2.2236860622236516e-05 + ArtUnc_59: -4.699881721560735e-08 + ArtUnc_60: -2.2636716379401355e-05 + ArtUnc_61: -3.1315628659250002e-09 + ArtUnc_62: -8.573226609941899e-07 + ArtUnc_63: 9.546774888907887e-08 + ArtUnc_64: -4.345762967427407e-05 + ArtUnc_65: 1.6714745717974936e-06 + ArtUnc_66: -5.062688865522955e-05 + ArtUnc_67: -1.662439106353279e-06 + ArtUnc_68: 3.187052164572777e-07 + ArtUnc_69: 4.13515625985064e-08 + ArtUnc_70: -2.9553797995699014e-07 + ArtUnc_71: 2.7263250348303047e-09 + ArtUnc_72: 1.3610040269891257e-06 + ArtUnc_73: 1.0264420914310467e-07 + ArtUnc_74: 5.69311430194333e-07 + ArtUnc_75: -1.7030781847754871e-06 + ArtUnc_76: -6.269284013211263e-09 + ArtUnc_77: 8.642190079204772e-09 + ArtUnc_78: -3.365296810775796e-06 + ArtUnc_79: -1.84430929476948e-06 + ArtUnc_80: 9.498543448078409e-09 + ArtUnc_81: -9.359532363282695e-08 + ArtUnc_82: -5.063739805795505e-09 + ArtUnc_83: 1.672309867316878e-08 + ArtUnc_84: 1.257677996302173e-08 + ArtUnc_85: -5.998074356448583e-09 + ArtUnc_86: -1.4311052060218262e-09 + ArtUnc_87: -1.0586207274600761e-09 + ArtUnc_88: -1.508268361170333e-10 + ArtUnc_89: -3.94871824587661e-08 + ArtUnc_90: 1.8390899459919323e-08 + ArtUnc_91: -1.220670268979323e-08 + ArtUnc_92: -3.9562589117971506e-08 + ArtUnc_93: 2.223360481207455e-10 + ArtUnc_94: 1.6431022394438529e-09 + ArtUnc_95: 2.7427779419367713e-09 + ArtUnc_96: 2.0710559073924454e-10 - stat: 0 Uncorr: 3.0600000000000003e-06 RCES: 6.000253494645039e-06 @@ -2235,102 +2235,102 @@ bins: ModelRW_2: 1.3004117970089319e-05 JES_1: 8.731274473981448e-06 JES_2: 8.731274473981448e-06 - ArtUnc_1: 3.1649577406472285e-16 - ArtUnc_2: -5.2335776188955977e-14 - ArtUnc_3: 1.2009689613669813e-13 - ArtUnc_4: 5.2775724723700894e-12 - ArtUnc_5: 1.9602453108170133e-13 - ArtUnc_6: 1.195060314105756e-13 - ArtUnc_7: 1.1770919468664458e-10 - ArtUnc_8: -1.4179526772946948e-09 - ArtUnc_9: 3.14077879028471e-11 - ArtUnc_10: 1.5709557509771584e-09 - ArtUnc_11: -3.1240802535423297e-09 - ArtUnc_12: 2.51872726822909e-10 - ArtUnc_13: 7.045050237369375e-09 - ArtUnc_14: -2.488938284850154e-11 - ArtUnc_15: -6.151766026702624e-11 - ArtUnc_16: 5.5825738656037795e-12 - ArtUnc_17: 3.9609087454243e-10 - ArtUnc_18: 1.2186192509001654e-11 - ArtUnc_19: 1.2867497103020471e-09 - ArtUnc_20: -4.035383590529823e-09 - ArtUnc_21: 2.330392107992802e-10 - ArtUnc_22: -4.487504907636015e-08 - ArtUnc_23: -7.936318198450206e-10 - ArtUnc_24: 2.371442818122049e-08 - ArtUnc_25: 1.5749752398151737e-08 - ArtUnc_26: -4.309261165056775e-09 - ArtUnc_27: -9.798403070582949e-08 - ArtUnc_28: 4.94433998787048e-09 - ArtUnc_29: 5.412031033566136e-08 - ArtUnc_30: -2.2124207161286627e-08 - ArtUnc_31: -9.099620059223857e-09 - ArtUnc_32: -2.421228490786892e-07 - ArtUnc_33: -7.643746274094484e-11 - ArtUnc_34: -2.531175015935894e-09 - ArtUnc_35: 4.649292937028954e-09 - ArtUnc_36: -2.160183108841626e-10 - ArtUnc_37: 1.4995257681071308e-09 - ArtUnc_38: 1.5743773339187948e-10 - ArtUnc_39: -7.455873430701368e-09 - ArtUnc_40: -4.95794967743893e-11 - ArtUnc_41: -2.9637995205923787e-08 - ArtUnc_42: -1.4364644653881406e-09 - ArtUnc_43: 8.010985922253673e-08 - ArtUnc_44: 1.1402569191216392e-08 - ArtUnc_45: 4.703198444676842e-10 - ArtUnc_46: 1.002303393172774e-08 - ArtUnc_47: 7.62877990502964e-09 - ArtUnc_48: 4.3229700829160684e-10 - ArtUnc_49: -3.164264343361119e-07 - ArtUnc_50: -1.2443658523872265e-08 - ArtUnc_51: 5.759850014050222e-08 - ArtUnc_52: -4.171637040698967e-08 - ArtUnc_53: 2.9314420570197154e-09 - ArtUnc_54: 3.51842026721901e-09 - ArtUnc_55: -4.505148231943277e-07 - ArtUnc_56: 4.7492041930748927e-07 - ArtUnc_57: 1.41493406225733e-07 - ArtUnc_58: -5.06873105407887e-07 - ArtUnc_59: -4.014248528161996e-09 - ArtUnc_60: 6.52500989313911e-07 - ArtUnc_61: -7.476582193153976e-10 - ArtUnc_62: -6.22455801358553e-08 - ArtUnc_63: 5.9473529005908975e-09 - ArtUnc_64: 4.6023902239761547e-07 - ArtUnc_65: 1.4696462627758393e-08 - ArtUnc_66: 8.742215561409534e-07 - ArtUnc_67: 2.6854374134708383e-07 - ArtUnc_68: -2.51560080948986e-08 - ArtUnc_69: 9.12920090977178e-08 - ArtUnc_70: -2.008073335549839e-06 - ArtUnc_71: -2.98185579529821e-08 - ArtUnc_72: -1.2038558502868007e-06 - ArtUnc_73: 3.7382863737146895e-09 - ArtUnc_74: -7.397192237967821e-06 - ArtUnc_75: -1.1239358915611417e-07 - ArtUnc_76: 1.9660642274449522e-07 - ArtUnc_77: 2.0281556677640734e-07 - ArtUnc_78: 1.2953754330490816e-05 - ArtUnc_79: -2.1173808847071083e-05 - ArtUnc_80: 3.9649564622569576e-07 - ArtUnc_81: 2.68212297280555e-07 - ArtUnc_82: 5.16968632898392e-08 - ArtUnc_83: -1.5922154831443385e-07 - ArtUnc_84: -7.311494935121377e-07 - ArtUnc_85: -2.964885666779676e-09 - ArtUnc_86: -2.056962891334488e-08 - ArtUnc_87: -2.213952086686656e-08 - ArtUnc_88: 9.456451570328827e-07 - ArtUnc_89: -3.832132486986422e-08 - ArtUnc_90: -2.9598162641288955e-07 - ArtUnc_91: 1.3646041135443824e-07 - ArtUnc_92: -1.63688694421884e-06 - ArtUnc_93: -4.626251923597679e-09 - ArtUnc_94: -2.9079417657433032e-08 - ArtUnc_95: 1.2467227997216099e-08 - ArtUnc_96: -9.500208452471877e-09 + ArtUnc_1: 3.1649572545798636e-16 + ArtUnc_2: -5.233577612250058e-14 + ArtUnc_3: 1.2009689584926394e-13 + ArtUnc_4: 5.277572473053857e-12 + ArtUnc_5: 1.9602452330203135e-13 + ArtUnc_6: 1.1950603216690673e-13 + ArtUnc_7: 1.177091946862514e-10 + ArtUnc_8: -1.4179526772949043e-09 + ArtUnc_9: 3.140778790121353e-11 + ArtUnc_10: 1.5709557509707463e-09 + ArtUnc_11: -3.1240802535447885e-09 + ArtUnc_12: -2.518727268235315e-10 + ArtUnc_13: -7.045050237369745e-09 + ArtUnc_14: -2.4889382837967554e-11 + ArtUnc_15: -6.151766026825989e-11 + ArtUnc_16: 5.582573905562612e-12 + ArtUnc_17: 3.960908745469827e-10 + ArtUnc_18: -1.2186192497896489e-11 + ArtUnc_19: -1.2867497103024744e-09 + ArtUnc_20: -4.035383590529554e-09 + ArtUnc_21: 2.330392107937851e-10 + ArtUnc_22: -4.487504907636002e-08 + ArtUnc_23: -7.936318198209268e-10 + ArtUnc_24: 2.371442818121514e-08 + ArtUnc_25: 1.574975239816285e-08 + ArtUnc_26: -4.309261165127264e-09 + ArtUnc_27: -9.7984030705831e-08 + ArtUnc_28: -4.944339987828451e-09 + ArtUnc_29: -5.412031033562565e-08 + ArtUnc_30: -2.2124207161280466e-08 + ArtUnc_31: 9.099620059241552e-09 + ArtUnc_32: -2.4212284907869234e-07 + ArtUnc_33: 7.643746265587136e-11 + ArtUnc_34: -2.531175015901532e-09 + ArtUnc_35: -4.649292937064408e-09 + ArtUnc_36: 2.1601831095153314e-10 + ArtUnc_37: 1.4995257681146108e-09 + ArtUnc_38: -1.5743773344953369e-10 + ArtUnc_39: 7.455873430691035e-09 + ArtUnc_40: -4.957949681526738e-11 + ArtUnc_41: -2.9637995206043367e-08 + ArtUnc_42: 1.4364644653972603e-09 + ArtUnc_43: 8.010985922253236e-08 + ArtUnc_44: 1.1402569191300257e-08 + ArtUnc_45: -4.70319844532275e-10 + ArtUnc_46: 1.0023033931634319e-08 + ArtUnc_47: 7.628779905008244e-09 + ArtUnc_48: -4.3229700830991953e-10 + ArtUnc_49: 3.164264343360258e-07 + ArtUnc_50: 1.244365852390118e-08 + ArtUnc_51: -5.759850014053632e-08 + ArtUnc_52: 4.17163704070633e-08 + ArtUnc_53: -2.931442056952663e-09 + ArtUnc_54: -3.5184202673116693e-09 + ArtUnc_55: -4.5051482319390554e-07 + ArtUnc_56: 4.7492041930752146e-07 + ArtUnc_57: 1.4149340622586435e-07 + ArtUnc_58: -5.06873105407668e-07 + ArtUnc_59: -4.014248528158959e-09 + ArtUnc_60: -6.525009893137404e-07 + ArtUnc_61: 7.476582192990769e-10 + ArtUnc_62: -6.224558013585522e-08 + ArtUnc_63: 5.947352900612051e-09 + ArtUnc_64: -4.6023902239792263e-07 + ArtUnc_65: 1.469646262779821e-08 + ArtUnc_66: -8.742215561408021e-07 + ArtUnc_67: 2.685437413470425e-07 + ArtUnc_68: -2.515600809491753e-08 + ArtUnc_69: -9.129200909773729e-08 + ArtUnc_70: 2.0080733355498856e-06 + ArtUnc_71: 2.981855795298056e-08 + ArtUnc_72: 1.2038558502867265e-06 + ArtUnc_73: -3.738286373691037e-09 + ArtUnc_74: 7.397192237967834e-06 + ArtUnc_75: -1.1239358915581491e-07 + ArtUnc_76: 1.9660642274449898e-07 + ArtUnc_77: 2.0281556677642994e-07 + ArtUnc_78: 1.2953754330491275e-05 + ArtUnc_79: -2.117380884707036e-05 + ArtUnc_80: 3.964956462254869e-07 + ArtUnc_81: 2.6821229728058613e-07 + ArtUnc_82: -5.169686328983974e-08 + ArtUnc_83: -1.592215483144535e-07 + ArtUnc_84: 7.311494935121575e-07 + ArtUnc_85: 2.9648856667801234e-09 + ArtUnc_86: -2.056962891334345e-08 + ArtUnc_87: -2.2139520866865153e-08 + ArtUnc_88: -3.832132486986376e-08 + ArtUnc_89: -9.456451570329005e-07 + ArtUnc_90: 2.959816264128777e-07 + ArtUnc_91: 1.36460411354434e-07 + ArtUnc_92: 1.6368869442189318e-06 + ArtUnc_93: -4.62625192359946e-09 + ArtUnc_94: -2.907941765743483e-08 + ArtUnc_95: 1.2467227997260188e-08 + ArtUnc_96: -9.500208452465233e-09 - stat: 0 Uncorr: 5.74e-07 RCES: 1.3436597040545647e-06 @@ -2346,102 +2346,102 @@ bins: ModelRW_2: 2.9548012486798498e-06 JES_1: 2.4875401119177956e-06 JES_2: 2.4875401119177956e-06 - ArtUnc_1: 7.525551366001484e-19 - ArtUnc_2: 1.701106506288059e-18 - ArtUnc_3: 2.2088374552042653e-17 - ArtUnc_4: 1.2241962773743911e-16 - ArtUnc_5: 4.1406436477623455e-18 - ArtUnc_6: 1.8386320253768616e-18 - ArtUnc_7: 4.662605559313038e-16 - ArtUnc_8: 3.695906971419403e-15 - ArtUnc_9: 4.122837894431185e-17 - ArtUnc_10: -1.6732250972111107e-14 - ArtUnc_11: 2.906247935821747e-14 - ArtUnc_12: -2.0735468235288463e-15 - ArtUnc_13: -1.0956125714153958e-13 - ArtUnc_14: -7.645551120169018e-16 - ArtUnc_15: 4.445232600208668e-15 - ArtUnc_16: -2.675055029764981e-16 - ArtUnc_17: -6.686565834916709e-15 - ArtUnc_18: -1.8429778988880834e-16 - ArtUnc_19: -5.309393895649595e-14 - ArtUnc_20: 1.6034412809639874e-13 - ArtUnc_21: -9.114499218152497e-15 - ArtUnc_22: 2.8160976159435096e-12 - ArtUnc_23: 5.926044547378676e-14 - ArtUnc_24: -1.9827743594024963e-12 - ArtUnc_25: -2.8747873250231603e-13 - ArtUnc_26: 1.604025822026323e-13 - ArtUnc_27: 8.751908398158677e-12 - ArtUnc_28: -3.2430577908284667e-13 - ArtUnc_29: -6.553866975505245e-12 - ArtUnc_30: 2.568968732181833e-12 - ArtUnc_31: 1.0753638368186946e-12 - ArtUnc_32: 4.1544951068355053e-11 - ArtUnc_33: 1.7348281782282054e-15 - ArtUnc_34: -1.504056954162059e-12 - ArtUnc_35: 7.984848532177075e-13 - ArtUnc_36: -2.4281165361645328e-11 - ArtUnc_37: -4.7504459545822565e-11 - ArtUnc_38: -9.352170382311762e-12 - ArtUnc_39: -5.003011145125786e-11 - ArtUnc_40: -9.794687296308413e-13 - ArtUnc_41: -3.3840096663886415e-10 - ArtUnc_42: -9.145350862669522e-12 - ArtUnc_43: 5.444991103340965e-10 - ArtUnc_44: 2.164790135154207e-10 - ArtUnc_45: 5.036337926644948e-12 - ArtUnc_46: 7.572012011905827e-11 - ArtUnc_47: 1.3122931491819182e-11 - ArtUnc_48: 1.623502336058403e-12 - ArtUnc_49: -1.446386899261996e-09 - ArtUnc_50: -6.487919379622005e-11 - ArtUnc_51: -2.5640452705376276e-10 - ArtUnc_52: 1.9086491769857173e-11 - ArtUnc_53: 6.004925716784896e-11 - ArtUnc_54: -1.3528719568469096e-11 - ArtUnc_55: 1.1799485815549566e-08 - ArtUnc_56: -9.975340208778051e-09 - ArtUnc_57: -2.2521217812461434e-09 - ArtUnc_58: 2.8046997584408207e-08 - ArtUnc_59: 2.2103976595498915e-10 - ArtUnc_60: -3.3649817451945465e-08 - ArtUnc_61: -1.1740658032909334e-10 - ArtUnc_62: -2.4023398508546184e-09 - ArtUnc_63: 1.7391658748616523e-10 - ArtUnc_64: -8.892744340589307e-08 - ArtUnc_65: -4.7974890767403846e-09 - ArtUnc_66: -1.223645169680704e-07 - ArtUnc_67: 3.0406525795472946e-08 - ArtUnc_68: -6.8622035401585674e-09 - ArtUnc_69: 7.665774654291003e-09 - ArtUnc_70: -1.480625126632562e-07 - ArtUnc_71: -2.0979076256279665e-09 - ArtUnc_72: -5.12220960070288e-08 - ArtUnc_73: -1.3362480636346698e-10 - ArtUnc_74: -2.7175826221355415e-07 - ArtUnc_75: -4.951873092023613e-08 - ArtUnc_76: 3.1980767459502424e-09 - ArtUnc_77: 1.1602659070867372e-08 - ArtUnc_78: 2.0132775223614465e-07 - ArtUnc_79: -3.730666429976659e-07 - ArtUnc_80: 5.992296682740758e-09 - ArtUnc_81: -4.792623496430073e-09 - ArtUnc_82: 1.0624184782711253e-09 - ArtUnc_83: 9.610625844063604e-08 - ArtUnc_84: 1.269439672133434e-07 - ArtUnc_85: 6.457187616301165e-07 - ArtUnc_86: -2.931789992925559e-07 - ArtUnc_87: -3.93721173068405e-07 - ArtUnc_88: -1.8185695363265478e-07 - ArtUnc_89: 4.955158818554088e-08 - ArtUnc_90: -1.0973584506276621e-06 - ArtUnc_91: -6.700710340023026e-06 - ArtUnc_92: 4.1782353724122134e-08 - ArtUnc_93: 6.932943847533906e-08 - ArtUnc_94: 1.1183383282740128e-07 - ArtUnc_95: -2.9181645166768724e-06 - ArtUnc_96: -6.066089548558548e-07 + ArtUnc_1: 7.525551332810761e-19 + ArtUnc_2: 1.7011065060993183e-18 + ArtUnc_3: 2.2088374550225672e-17 + ArtUnc_4: 1.2241962774379785e-16 + ArtUnc_5: 4.140643639484835e-18 + ArtUnc_6: 1.838631669346577e-18 + ArtUnc_7: 4.662605559246975e-16 + ArtUnc_8: 3.6959069714146945e-15 + ArtUnc_9: 4.1228378670082187e-17 + ArtUnc_10: -1.6732250973069617e-14 + ArtUnc_11: 2.906247935746357e-14 + ArtUnc_12: 2.07354682755585e-15 + ArtUnc_13: 1.0956125714146772e-13 + ArtUnc_14: -7.645551038861831e-16 + ArtUnc_15: 4.445232595615555e-15 + ArtUnc_16: -2.675054665071818e-16 + ArtUnc_17: -6.686565834819298e-15 + ArtUnc_18: 1.8429779658553334e-16 + ArtUnc_19: 5.3093938955127536e-14 + ArtUnc_20: 1.6034412809324093e-13 + ArtUnc_21: -9.114499216275052e-15 + ArtUnc_22: 2.8160976159407595e-12 + ArtUnc_23: 5.926044542417139e-14 + ArtUnc_24: -1.9827743594159214e-12 + ArtUnc_25: -2.8747873249342066e-13 + ArtUnc_26: 1.6040258231256255e-13 + ArtUnc_27: 8.751908398152517e-12 + ArtUnc_28: 3.243057790862044e-13 + ArtUnc_29: 6.553866976012681e-12 + ArtUnc_30: 2.568968732178255e-12 + ArtUnc_31: -1.0753638369503453e-12 + ArtUnc_32: 4.1544951068356036e-11 + ArtUnc_33: -1.7348277059421816e-15 + ArtUnc_34: -1.5040569541908268e-12 + ArtUnc_35: -7.984848532209664e-13 + ArtUnc_36: 2.4281165361617614e-11 + ArtUnc_37: -4.750445954573314e-11 + ArtUnc_38: 9.352170382692404e-12 + ArtUnc_39: 5.0030111451300346e-11 + ArtUnc_40: -9.794687305802967e-13 + ArtUnc_41: -3.384009666384961e-10 + ArtUnc_42: 9.145350864578396e-12 + ArtUnc_43: 5.444991103342456e-10 + ArtUnc_44: 2.164790135155239e-10 + ArtUnc_45: -5.036337921055136e-12 + ArtUnc_46: 7.572012011880331e-11 + ArtUnc_47: 1.3122931491457895e-11 + ArtUnc_48: -1.6235023239829938e-12 + ArtUnc_49: 1.4463868992619182e-09 + ArtUnc_50: 6.487919379608554e-11 + ArtUnc_51: 2.564045270519593e-10 + ArtUnc_52: -1.9086491770607894e-11 + ArtUnc_53: -6.004925716718752e-11 + ArtUnc_54: 1.3528719560799027e-11 + ArtUnc_55: 1.1799485815545221e-08 + ArtUnc_56: -9.975340208781463e-09 + ArtUnc_57: -2.2521217812471348e-09 + ArtUnc_58: 2.804699758441273e-08 + ArtUnc_59: 2.2103976595410218e-10 + ArtUnc_60: 3.3649817451941395e-08 + ArtUnc_61: 1.1740658032824714e-10 + ArtUnc_62: -2.402339850854667e-09 + ArtUnc_63: 1.7391658748525373e-10 + ArtUnc_64: 8.89274434058841e-08 + ArtUnc_65: -4.7974890767402026e-09 + ArtUnc_66: 1.22364516968084e-07 + ArtUnc_67: 3.040652579547578e-08 + ArtUnc_68: -6.862203540163716e-09 + ArtUnc_69: -7.665774654289796e-09 + ArtUnc_70: 1.480625126632594e-07 + ArtUnc_71: 2.0979076256282548e-09 + ArtUnc_72: 5.122209600702832e-08 + ArtUnc_73: 1.3362480636831328e-10 + ArtUnc_74: 2.717582622135473e-07 + ArtUnc_75: -4.951873092024478e-08 + ArtUnc_76: 3.198076745946251e-09 + ArtUnc_77: 1.1602659070872547e-08 + ArtUnc_78: 2.0132775223619658e-07 + ArtUnc_79: -3.7306664299767404e-07 + ArtUnc_80: 5.992296682747596e-09 + ArtUnc_81: -4.792623496419435e-09 + ArtUnc_82: -1.0624184782695466e-09 + ArtUnc_83: 9.610625844064377e-08 + ArtUnc_84: -1.2694396721333717e-07 + ArtUnc_85: -6.457187616301097e-07 + ArtUnc_86: -2.9317899929255475e-07 + ArtUnc_87: -3.9372117306839423e-07 + ArtUnc_88: 4.955158818554302e-08 + ArtUnc_89: 1.8185695363269428e-07 + ArtUnc_90: 1.097358450627666e-06 + ArtUnc_91: -6.7007103400230265e-06 + ArtUnc_92: -4.1782353724083415e-08 + ArtUnc_93: 6.93294384753824e-08 + ArtUnc_94: 1.1183383282743e-07 + ArtUnc_95: -2.9181645166768758e-06 + ArtUnc_96: -6.066089548558399e-07 - stat: 0 Uncorr: 0.0015300000000000001 RCES: 0.004702678446375002 @@ -2457,102 +2457,102 @@ bins: ModelRW_2: 0.0005625741551120172 JES_1: 0.0006434191207914168 JES_2: 0.0006434191207914168 - ArtUnc_1: -5.184077554804865e-09 - ArtUnc_2: 1.1677814854411717e-06 - ArtUnc_3: 6.484945269316032e-06 - ArtUnc_4: 2.9607766166695188e-05 - ArtUnc_5: 1.0260097645233027e-06 - ArtUnc_6: 2.6625129317257976e-07 - ArtUnc_7: 0.00019243537417088768 - ArtUnc_8: -0.0010127354200840373 - ArtUnc_9: 1.8484503325495992e-05 - ArtUnc_10: 0.0004836711327518179 - ArtUnc_11: -0.001000349484245882 - ArtUnc_12: 8.105091416691032e-05 - ArtUnc_13: 0.001560303726292502 - ArtUnc_14: -1.312468346417106e-05 - ArtUnc_15: -2.2591533427099566e-06 - ArtUnc_16: 5.81782659962372e-07 - ArtUnc_17: -1.1337540775552543e-06 - ArtUnc_18: -2.9870296863938236e-09 - ArtUnc_19: 4.885827276898902e-06 - ArtUnc_20: 5.46036666714075e-06 - ArtUnc_21: -1.9999995328936353e-07 - ArtUnc_22: 1.1276225478014803e-05 - ArtUnc_23: 2.415068877154063e-07 - ArtUnc_24: -1.869934832142698e-05 - ArtUnc_25: -8.703721396487764e-06 - ArtUnc_26: -5.289837150205136e-07 - ArtUnc_27: 2.0927443056242083e-05 - ArtUnc_28: -1.1909023961736666e-06 - ArtUnc_29: 1.376509661271128e-07 - ArtUnc_30: 2.3200362872257244e-06 - ArtUnc_31: 9.390934551417529e-07 - ArtUnc_32: 5.2604449124956104e-05 - ArtUnc_33: 2.0294766714359843e-08 - ArtUnc_34: 6.195759482584393e-07 - ArtUnc_35: -9.550353952130715e-07 - ArtUnc_36: -3.7298417895135e-08 - ArtUnc_37: -8.018721329022145e-07 - ArtUnc_38: -1.3985486051413725e-07 - ArtUnc_39: 6.047222284831873e-07 - ArtUnc_40: -2.4299704067399724e-09 - ArtUnc_41: 1.4240506631795575e-07 - ArtUnc_42: -1.763199430666483e-09 - ArtUnc_43: -3.8265962551439144e-07 - ArtUnc_44: 5.247038576006091e-07 - ArtUnc_45: 2.189129079036999e-09 - ArtUnc_46: -1.4438072463173603e-08 - ArtUnc_47: 1.3171349073521783e-08 - ArtUnc_48: 2.791115764211058e-10 - ArtUnc_49: 1.2825201759836086e-06 - ArtUnc_50: 3.9512167365672865e-08 - ArtUnc_51: -4.224301304456276e-09 - ArtUnc_52: -6.7536858555796595e-09 - ArtUnc_53: 1.0953565605416257e-09 - ArtUnc_54: -5.617115275140115e-10 - ArtUnc_55: -1.7820274368217247e-08 - ArtUnc_56: -1.2209974055510865e-09 - ArtUnc_57: -4.019287354504049e-10 - ArtUnc_58: -4.213685453428e-09 - ArtUnc_59: 1.2091701534008238e-10 - ArtUnc_60: 8.476923147506623e-09 - ArtUnc_61: -2.7460661767762e-11 - ArtUnc_62: -2.3627119172180134e-10 - ArtUnc_63: 1.983654630674247e-11 - ArtUnc_64: 6.46630459178119e-08 - ArtUnc_65: 1.1144518540054536e-09 - ArtUnc_66: -4.5764880710363666e-08 - ArtUnc_67: 5.587580325254852e-10 - ArtUnc_68: -6.110199357285555e-10 - ArtUnc_69: 1.7776037748952677e-11 - ArtUnc_70: -2.1053104483385263e-10 - ArtUnc_71: -2.036025074802014e-12 - ArtUnc_72: -5.932777335713809e-10 - ArtUnc_73: -4.280016881337702e-11 - ArtUnc_74: -8.42143694808457e-11 - ArtUnc_75: -9.046981473561906e-10 - ArtUnc_76: -8.71138686602466e-12 - ArtUnc_77: -8.7834967448671e-12 - ArtUnc_78: 1.1157174486689162e-09 - ArtUnc_79: -6.647586284952316e-10 - ArtUnc_80: 2.5056554750085015e-12 - ArtUnc_81: 2.9053533657375577e-11 - ArtUnc_82: 1.614311342765625e-12 - ArtUnc_83: -1.379289251603314e-11 - ArtUnc_84: -2.5599498846856188e-11 - ArtUnc_85: 4.113652347930657e-13 - ArtUnc_86: 3.0054805505082303e-12 - ArtUnc_87: 3.627340632113543e-12 - ArtUnc_88: 1.9168249548639103e-11 - ArtUnc_89: -2.8013289475795883e-12 - ArtUnc_90: 1.7317335682249135e-11 - ArtUnc_91: -2.0340718509919114e-12 - ArtUnc_92: -7.107882979359801e-11 - ArtUnc_93: -1.9824035580746016e-12 - ArtUnc_94: -8.498361675632156e-13 - ArtUnc_95: 3.0305793135592135e-11 - ArtUnc_96: 4.905247241945592e-12 + ArtUnc_1: -5.184077555533741e-09 + ArtUnc_2: 1.1677814854411006e-06 + ArtUnc_3: 6.484945269315138e-06 + ArtUnc_4: 2.9607766166695967e-05 + ArtUnc_5: 1.026009764528549e-06 + ArtUnc_6: 2.662512931754971e-07 + ArtUnc_7: 0.00019243537417088093 + ArtUnc_8: -0.0010127354200840388 + ArtUnc_9: 1.8484503325499536e-05 + ArtUnc_10: 0.00048367113275177076 + ArtUnc_11: -0.0010003494842459083 + ArtUnc_12: -8.105091416697253e-05 + ArtUnc_13: -0.001560303726292504 + ArtUnc_14: -1.3124683464170857e-05 + ArtUnc_15: -2.2591533427100417e-06 + ArtUnc_16: 5.817826599619027e-07 + ArtUnc_17: -1.1337540775553265e-06 + ArtUnc_18: 2.987029686372386e-09 + ArtUnc_19: -4.885827276898941e-06 + ArtUnc_20: 5.46036666714073e-06 + ArtUnc_21: -1.9999995328938429e-07 + ArtUnc_22: 1.127622547801492e-05 + ArtUnc_23: 2.4150688771514286e-07 + ArtUnc_24: -1.8699348321426944e-05 + ArtUnc_25: -8.703721396487673e-06 + ArtUnc_26: -5.289837150206431e-07 + ArtUnc_27: 2.092744305624243e-05 + ArtUnc_28: 1.1909023961737446e-06 + ArtUnc_29: -1.376509661274837e-07 + ArtUnc_30: 2.320036287223341e-06 + ArtUnc_31: -9.390934551493554e-07 + ArtUnc_32: 5.260444912495629e-05 + ArtUnc_33: -2.0294766714438776e-08 + ArtUnc_34: 6.195759482581024e-07 + ArtUnc_35: 9.550353952130143e-07 + ArtUnc_36: 3.729841789513544e-08 + ArtUnc_37: -8.01872132902217e-07 + ArtUnc_38: 1.3985486051409333e-07 + ArtUnc_39: -6.047222284831918e-07 + ArtUnc_40: -2.4299704067528574e-09 + ArtUnc_41: 1.4240506631795265e-07 + ArtUnc_42: 1.7631994306664332e-09 + ArtUnc_43: -3.8265962551438614e-07 + ArtUnc_44: 5.247038576006126e-07 + ArtUnc_45: -2.189129079051947e-09 + ArtUnc_46: -1.44380724631698e-08 + ArtUnc_47: 1.3171349073524332e-08 + ArtUnc_48: -2.7911157642128274e-10 + ArtUnc_49: -1.2825201759836507e-06 + ArtUnc_50: -3.951216736568954e-08 + ArtUnc_51: 4.224301304456062e-09 + ArtUnc_52: 6.753685855579711e-09 + ArtUnc_53: -1.0953565605415092e-09 + ArtUnc_54: 5.61711527514032e-10 + ArtUnc_55: -1.782027436821851e-08 + ArtUnc_56: -1.2209974055510724e-09 + ArtUnc_57: -4.019287354508974e-10 + ArtUnc_58: -4.213685453428593e-09 + ArtUnc_59: 1.2091701533994065e-10 + ArtUnc_60: -8.476923147507564e-09 + ArtUnc_61: 2.7460661768004776e-11 + ArtUnc_62: -2.362711917216108e-10 + ArtUnc_63: 1.9836546306819357e-11 + ArtUnc_64: -6.466304591781763e-08 + ArtUnc_65: 1.114451854006085e-09 + ArtUnc_66: 4.576488071035876e-08 + ArtUnc_67: 5.587580325253636e-10 + ArtUnc_68: -6.110199357284909e-10 + ArtUnc_69: -1.7776037748956474e-11 + ArtUnc_70: 2.105310448338427e-10 + ArtUnc_71: 2.036025074802777e-12 + ArtUnc_72: 5.932777335713569e-10 + ArtUnc_73: 4.2800168813375514e-11 + ArtUnc_74: 8.421436948084789e-11 + ArtUnc_75: -9.046981473561437e-10 + ArtUnc_76: -8.711386866030128e-12 + ArtUnc_77: -8.783496744864512e-12 + ArtUnc_78: 1.1157174486688844e-09 + ArtUnc_79: -6.647586284951538e-10 + ArtUnc_80: 2.5056554750015145e-12 + ArtUnc_81: 2.9053533657378786e-11 + ArtUnc_82: -1.6143113427655448e-12 + ArtUnc_83: -1.3792892516033813e-11 + ArtUnc_84: 2.55994988468569e-11 + ArtUnc_85: -4.1136523479301395e-13 + ArtUnc_86: 3.0054805505082905e-12 + ArtUnc_87: 3.6273406321135882e-12 + ArtUnc_88: -2.8013289475797947e-12 + ArtUnc_89: -1.9168249548640208e-11 + ArtUnc_90: -1.7317335682249917e-11 + ArtUnc_91: -2.0340718509920277e-12 + ArtUnc_92: 7.107882979360044e-11 + ArtUnc_93: -1.982403558075022e-12 + ArtUnc_94: -8.498361675632596e-13 + ArtUnc_95: 3.0305793135593906e-11 + ArtUnc_96: 4.905247241945646e-12 - stat: 0 Uncorr: 0.000575 RCES: 0.002308802219225372 @@ -2568,102 +2568,102 @@ bins: ModelRW_2: 0.0010083342699720166 JES_1: 0.002769002635200985 JES_2: 0.002769002635200985 - ArtUnc_1: 9.75354752026044e-11 - ArtUnc_2: -6.2273727859760864e-09 - ArtUnc_3: 1.7087591791453076e-08 - ArtUnc_4: 4.3191107089871855e-07 - ArtUnc_5: 1.5544336954288856e-08 - ArtUnc_6: 7.296344356718899e-09 - ArtUnc_7: 6.546000347583141e-06 - ArtUnc_8: -5.724476102832814e-05 - ArtUnc_9: 1.186505533191221e-06 - ArtUnc_10: 4.336442172325017e-05 - ArtUnc_11: -8.826179700580657e-05 - ArtUnc_12: 7.203021247224612e-06 - ArtUnc_13: 0.00015235000980224025 - ArtUnc_14: -4.796339927818345e-07 - ArtUnc_15: -1.0309022261121592e-06 - ArtUnc_16: 9.391591905535796e-08 - ArtUnc_17: 5.1417193078837926e-06 - ArtUnc_18: 1.678842609126929e-07 - ArtUnc_19: 1.2964071120157593e-05 - ArtUnc_20: -3.0078776123107486e-05 - ArtUnc_21: 1.4925297085899568e-06 - ArtUnc_22: -0.0002355474459410796 - ArtUnc_23: -3.6760785509666088e-06 - ArtUnc_24: 0.0001026755887035469 - ArtUnc_25: 6.497741781848203e-05 - ArtUnc_26: -1.8235778533687866e-05 - ArtUnc_27: -0.000324237010333689 - ArtUnc_28: 1.4688165452172505e-05 - ArtUnc_29: 0.00015227934141965964 - ArtUnc_30: -5.982084023959652e-05 - ArtUnc_31: -2.4570653641737887e-05 - ArtUnc_32: -0.0005046502186004556 - ArtUnc_33: -1.7699603926284625e-07 - ArtUnc_34: -4.9246920619964135e-06 - ArtUnc_35: 7.714627557624803e-06 - ArtUnc_36: 2.239252880549989e-07 - ArtUnc_37: 6.411402027397142e-06 - ArtUnc_38: 1.1162652040399548e-06 - ArtUnc_39: 1.1430952119947786e-06 - ArtUnc_40: -6.74883846534561e-08 - ArtUnc_41: -2.3494255885953138e-06 - ArtUnc_42: 3.5551468648716967e-08 - ArtUnc_43: 4.703836380515397e-06 + ArtUnc_1: 9.753547439539828e-11 + ArtUnc_2: -6.227372784156302e-09 + ArtUnc_3: 1.708759179124174e-08 + ArtUnc_4: 4.319110708990544e-07 + ArtUnc_5: 1.55443369537763e-08 + ArtUnc_6: 7.296344354538225e-09 + ArtUnc_7: 6.5460003475791674e-06 + ArtUnc_8: -5.7244761028330045e-05 + ArtUnc_9: 1.186505533190126e-06 + ArtUnc_10: 4.336442172324861e-05 + ArtUnc_11: -8.82617970058097e-05 + ArtUnc_12: -7.2030212472301245e-06 + ArtUnc_13: -0.00015235000980223684 + ArtUnc_14: -4.796339927814513e-07 + ArtUnc_15: -1.0309022261121442e-06 + ArtUnc_16: 9.39159190546805e-08 + ArtUnc_17: 5.141719307884341e-06 + ArtUnc_18: -1.6788426091245276e-07 + ArtUnc_19: -1.2964071120157313e-05 + ArtUnc_20: -3.0078776123106327e-05 + ArtUnc_21: 1.492529708589883e-06 + ArtUnc_22: -0.00023554744594108016 + ArtUnc_23: -3.676078550964621e-06 + ArtUnc_24: 0.00010267558870354524 + ArtUnc_25: 6.497741781847948e-05 + ArtUnc_26: -1.8235778533686426e-05 + ArtUnc_27: -0.00032423701033369213 + ArtUnc_28: -1.4688165452177336e-05 + ArtUnc_29: -0.0001522793414196557 + ArtUnc_30: -5.9820840239537066e-05 + ArtUnc_31: 2.457065364193579e-05 + ArtUnc_32: -0.000504650218600457 + ArtUnc_33: 1.7699603926293156e-07 + ArtUnc_34: -4.924692061993343e-06 + ArtUnc_35: -7.714627557624232e-06 + ArtUnc_36: -2.2392528805489359e-07 + ArtUnc_37: 6.411402027397098e-06 + ArtUnc_38: -1.1162652040395937e-06 + ArtUnc_39: -1.1430952119947765e-06 + ArtUnc_40: -6.748838465346753e-08 + ArtUnc_41: -2.3494255885952587e-06 + ArtUnc_42: -3.555146864871654e-08 + ArtUnc_43: 4.703836380515194e-06 ArtUnc_44: -1.0566857235536604e-05 - ArtUnc_45: -4.4945124539154526e-08 - ArtUnc_46: -2.4857258556842753e-08 - ArtUnc_47: -1.6350369399768692e-07 - ArtUnc_48: -1.0292275806382017e-08 - ArtUnc_49: -1.4375919532155716e-05 - ArtUnc_50: -4.5840583908422396e-07 - ArtUnc_51: 2.5943913798835746e-08 - ArtUnc_52: 3.02608715287162e-08 - ArtUnc_53: -5.632813063283787e-09 - ArtUnc_54: 3.4802714012216528e-09 - ArtUnc_55: 1.3420913257162435e-07 - ArtUnc_56: -1.9194512317746415e-08 - ArtUnc_57: -4.460334623166559e-09 - ArtUnc_58: 1.857298792904718e-07 - ArtUnc_59: -1.5232168649288685e-09 - ArtUnc_60: -2.4123029218965524e-08 - ArtUnc_61: 1.7882848468395116e-10 - ArtUnc_62: 1.7966622080950064e-09 - ArtUnc_63: -1.571494213326034e-10 - ArtUnc_64: -6.671627784510943e-07 - ArtUnc_65: -1.0251897553522388e-08 - ArtUnc_66: 4.632156231862757e-07 - ArtUnc_67: -6.16158835415434e-09 - ArtUnc_68: 6.201726802225472e-09 - ArtUnc_69: -2.1346750028951346e-10 - ArtUnc_70: 2.4861479308311137e-09 - ArtUnc_71: 2.787441481270428e-11 - ArtUnc_72: 7.099604145631209e-09 - ArtUnc_73: 5.686130851729391e-10 - ArtUnc_74: 1.429200388025044e-09 - ArtUnc_75: 1.0248505960158253e-08 - ArtUnc_76: 1.0475918137978693e-10 - ArtUnc_77: 5.6777043837773735e-11 - ArtUnc_78: -1.2579885201608976e-08 - ArtUnc_79: 7.794043392190016e-09 - ArtUnc_80: -7.579711414809432e-11 - ArtUnc_81: -3.4308525311691373e-10 - ArtUnc_82: -1.7751170490890264e-11 - ArtUnc_83: 1.675001844948625e-10 - ArtUnc_84: 3.033136767964866e-10 - ArtUnc_85: -4.200393841862105e-12 - ArtUnc_86: -2.7784398976117046e-11 - ArtUnc_87: -3.283629617375814e-11 - ArtUnc_88: -2.877883598046446e-10 - ArtUnc_89: 3.125116211258946e-11 - ArtUnc_90: -1.5366438817765233e-10 - ArtUnc_91: 1.518307637548374e-11 - ArtUnc_92: 7.963922779568119e-10 - ArtUnc_93: 1.854010673838889e-11 - ArtUnc_94: 1.30934162861907e-11 - ArtUnc_95: -3.159639964275127e-10 - ArtUnc_96: -5.187217158734205e-11 + ArtUnc_45: 4.4945124539397075e-08 + ArtUnc_46: -2.4857258556887034e-08 + ArtUnc_47: -1.6350369399770955e-07 + ArtUnc_48: 1.0292275806389106e-08 + ArtUnc_49: 1.4375919532156121e-05 + ArtUnc_50: 4.584058390843983e-07 + ArtUnc_51: -2.5943913798833367e-08 + ArtUnc_52: -3.026087152871613e-08 + ArtUnc_53: 5.632813063282722e-09 + ArtUnc_54: -3.4802714012223778e-09 + ArtUnc_55: 1.3420913257163547e-07 + ArtUnc_56: -1.919451231774332e-08 + ArtUnc_57: -4.460334623172426e-09 + ArtUnc_58: 1.8572987929047742e-07 + ArtUnc_59: -1.5232168649282663e-09 + ArtUnc_60: 2.412302921897371e-08 + ArtUnc_61: -1.7882848468633827e-10 + ArtUnc_62: 1.7966622080932891e-09 + ArtUnc_63: -1.5714942133352477e-10 + ArtUnc_64: 6.671627784511517e-07 + ArtUnc_65: -1.025189755352918e-08 + ArtUnc_66: -4.632156231862248e-07 + ArtUnc_67: -6.161588354153124e-09 + ArtUnc_68: 6.201726802224839e-09 + ArtUnc_69: 2.1346750028956372e-10 + ArtUnc_70: -2.4861479308310165e-09 + ArtUnc_71: -2.787441481271272e-11 + ArtUnc_72: -7.099604145631049e-09 + ArtUnc_73: -5.6861308517293e-10 + ArtUnc_74: -1.4292003880250983e-09 + ArtUnc_75: 1.0248505960157929e-08 + ArtUnc_76: 1.0475918137984441e-10 + ArtUnc_77: 5.677704383775364e-11 + ArtUnc_78: -1.2579885201608965e-08 + ArtUnc_79: 7.794043392189298e-09 + ArtUnc_80: -7.579711414801293e-11 + ArtUnc_81: -3.430852531169544e-10 + ArtUnc_82: 1.775117049089012e-11 + ArtUnc_83: 1.675001844948761e-10 + ArtUnc_84: -3.033136767965014e-10 + ArtUnc_85: 4.20039384186154e-12 + ArtUnc_86: -2.7784398976116623e-11 + ArtUnc_87: -3.283629617375756e-11 + ArtUnc_88: 3.125116211259143e-11 + ArtUnc_89: 2.877883598046601e-10 + ArtUnc_90: 1.536643881776656e-10 + ArtUnc_91: 1.5183076375485108e-11 + ArtUnc_92: -7.963922779568559e-10 + ArtUnc_93: 1.8540106738393557e-11 + ArtUnc_94: 1.3093416286191433e-11 + ArtUnc_95: -3.1596399642754e-10 + ArtUnc_96: -5.1872171587344076e-11 - stat: 0 Uncorr: 0.00014800000000000002 RCES: 0.00014270109039527342 @@ -2679,102 +2679,102 @@ bins: ModelRW_2: 3.453509519315098e-05 JES_1: 0.0004340170971286731 JES_2: 0.0004340170971286731 - ArtUnc_1: 7.051224218170511e-11 - ArtUnc_2: -1.3977675181281722e-08 - ArtUnc_3: -7.119561085980849e-08 - ArtUnc_4: -2.8058198438085766e-07 - ArtUnc_5: -9.592216421389346e-09 - ArtUnc_6: -2.0297899814471796e-09 - ArtUnc_7: -1.347255652054934e-06 - ArtUnc_8: 4.150934493663707e-06 - ArtUnc_9: -5.952842188880549e-08 - ArtUnc_10: 5.4380103949999256e-08 - ArtUnc_11: 7.059796883563438e-08 - ArtUnc_12: -9.139260861121792e-09 - ArtUnc_13: 1.2790170539615172e-06 - ArtUnc_14: 2.561740834704523e-08 - ArtUnc_15: -1.9841482617862814e-08 - ArtUnc_16: 1.619807352846073e-10 - ArtUnc_17: 2.3983235953591063e-07 - ArtUnc_18: 7.139715680012391e-09 - ArtUnc_19: 7.286802604848566e-07 - ArtUnc_20: -1.5345833041427986e-06 - ArtUnc_21: 9.112349277439667e-08 - ArtUnc_22: -1.309874406162031e-05 - ArtUnc_23: -2.366435465708012e-07 - ArtUnc_24: 5.656671937789394e-06 - ArtUnc_25: 7.335671792195618e-06 - ArtUnc_26: -1.4577249046429854e-06 - ArtUnc_27: -2.234281373099328e-05 - ArtUnc_28: 9.327416416809586e-07 - ArtUnc_29: 3.571113044835011e-06 - ArtUnc_30: -2.329824213958802e-06 - ArtUnc_31: -9.539461832915348e-07 - ArtUnc_32: -3.3654680854993295e-05 - ArtUnc_33: -1.0814802951169263e-08 - ArtUnc_34: 5.098518791696569e-07 - ArtUnc_35: -7.814559505920847e-07 - ArtUnc_36: 6.4424889366370495e-06 - ArtUnc_37: 1.9979813786579762e-05 - ArtUnc_38: 3.5595772793985083e-06 - ArtUnc_39: 2.0489934740514856e-05 - ArtUnc_40: 3.02489581171129e-08 - ArtUnc_41: 6.089728888448017e-05 - ArtUnc_42: 3.7802166670696874e-07 - ArtUnc_43: -8.955261597294889e-05 - ArtUnc_44: -4.8024390229445945e-05 - ArtUnc_45: -6.22209842054908e-07 - ArtUnc_46: -1.3687951532626222e-05 - ArtUnc_47: 9.264014209200441e-07 - ArtUnc_48: -1.60940431640056e-08 - ArtUnc_49: 0.00017973388342818194 - ArtUnc_50: 4.459666900135036e-06 - ArtUnc_51: -2.0380504375675267e-07 - ArtUnc_52: 1.0862800138358524e-07 - ArtUnc_53: -3.971425587637444e-09 - ArtUnc_54: -2.9663603746897475e-09 - ArtUnc_55: -1.8811433941313633e-06 - ArtUnc_56: -1.9456883465458955e-06 - ArtUnc_57: -5.713827041414732e-07 - ArtUnc_58: -2.6674338272983187e-06 - ArtUnc_59: 3.8161231902574834e-08 - ArtUnc_60: -2.6960411564784744e-06 - ArtUnc_61: -2.2069932666303474e-09 - ArtUnc_62: 3.133504537482695e-08 - ArtUnc_63: -3.6382703959762624e-09 - ArtUnc_64: 5.3039856593629825e-06 - ArtUnc_65: 3.295262320677758e-08 - ArtUnc_66: -6.5141943706438e-06 - ArtUnc_67: 1.2249385484021418e-07 - ArtUnc_68: -6.042472036353696e-08 - ArtUnc_69: 2.5250031773642886e-09 - ArtUnc_70: -1.6964903821870466e-08 - ArtUnc_71: 4.213129200918381e-11 - ArtUnc_72: -1.0434560435131835e-09 - ArtUnc_73: -2.2988054108962423e-10 - ArtUnc_74: 4.0295819332110446e-08 - ArtUnc_75: 1.1695826127319187e-08 - ArtUnc_76: -1.1125737214142425e-09 - ArtUnc_77: -9.908908004052798e-10 - ArtUnc_78: 2.15663383962382e-07 - ArtUnc_79: 7.525356436863188e-08 - ArtUnc_80: -5.458073635483631e-10 - ArtUnc_81: 6.330795480690561e-09 - ArtUnc_82: -2.2198364046810994e-10 - ArtUnc_83: -1.484624633027967e-09 - ArtUnc_84: -1.368357657876776e-10 - ArtUnc_85: -2.5794689719642245e-10 - ArtUnc_86: 7.61121894871189e-11 - ArtUnc_87: 3.4903456058672834e-11 - ArtUnc_88: -1.7002038126260137e-09 - ArtUnc_89: -7.883110106207349e-11 - ArtUnc_90: 1.183009035226033e-09 - ArtUnc_91: 6.70014151095372e-10 - ArtUnc_92: -1.7580036048981999e-09 - ArtUnc_93: -4.661069203930548e-11 - ArtUnc_94: -5.5651946891794884e-11 - ArtUnc_95: -2.1446402629040687e-10 - ArtUnc_96: -5.192669359744669e-11 + ArtUnc_1: 7.051224216026941e-11 + ArtUnc_2: -1.3977675181295216e-08 + ArtUnc_3: -7.119561085981802e-08 + ArtUnc_4: -2.8058198438083383e-07 + ArtUnc_5: -9.59221642205358e-09 + ArtUnc_6: -2.02978998101931e-09 + ArtUnc_7: -1.3472556520548992e-06 + ArtUnc_8: 4.150934493663712e-06 + ArtUnc_9: -5.952842188927762e-08 + ArtUnc_10: 5.438010394919081e-08 + ArtUnc_11: 7.05979688352413e-08 + ArtUnc_12: 9.139260861476654e-09 + ArtUnc_13: -1.2790170539615633e-06 + ArtUnc_14: 2.5617408347870514e-08 + ArtUnc_15: -1.9841482618095413e-08 + ArtUnc_16: 1.6198073526381094e-10 + ArtUnc_17: 2.3983235953556213e-07 + ArtUnc_18: -7.139715679976194e-09 + ArtUnc_19: -7.286802604846646e-07 + ArtUnc_20: -1.534583304142478e-06 + ArtUnc_21: 9.112349277463271e-08 + ArtUnc_22: -1.3098744061619803e-05 + ArtUnc_23: -2.3664354657076953e-07 + ArtUnc_24: 5.656671937789673e-06 + ArtUnc_25: 7.335671792195338e-06 + ArtUnc_26: -1.4577249046427076e-06 + ArtUnc_27: -2.2342813730992484e-05 + ArtUnc_28: -9.32741641681257e-07 + ArtUnc_29: -3.5711130448348982e-06 + ArtUnc_30: -2.3298242139567014e-06 + ArtUnc_31: 9.539461832991869e-07 + ArtUnc_32: -3.365468085499373e-05 + ArtUnc_33: 1.0814802950801851e-08 + ArtUnc_34: 5.098518791699796e-07 + ArtUnc_35: 7.814559505928643e-07 + ArtUnc_36: -6.442488936637111e-06 + ArtUnc_37: 1.9979813786580084e-05 + ArtUnc_38: -3.559577279397605e-06 + ArtUnc_39: -2.0489934740514652e-05 + ArtUnc_40: 3.024895811611956e-08 + ArtUnc_41: 6.08972888844798e-05 + ArtUnc_42: -3.780216667070498e-07 + ArtUnc_43: -8.955261597295062e-05 + ArtUnc_44: -4.8024390229445863e-05 + ArtUnc_45: 6.222098420543644e-07 + ArtUnc_46: -1.368795153262544e-05 + ArtUnc_47: 9.264014209204773e-07 + ArtUnc_48: 1.6094043163831705e-08 + ArtUnc_49: -0.00017973388342818443 + ArtUnc_50: -4.459666900137267e-06 + ArtUnc_51: 2.038050437567206e-07 + ArtUnc_52: -1.0862800138360604e-07 + ArtUnc_53: 3.9714255876467446e-09 + ArtUnc_54: 2.966360374701162e-09 + ArtUnc_55: -1.8811433941314635e-06 + ArtUnc_56: -1.9456883465457418e-06 + ArtUnc_57: -5.713827041420243e-07 + ArtUnc_58: -2.6674338272983496e-06 + ArtUnc_59: 3.8161231902587136e-08 + ArtUnc_60: 2.6960411564784075e-06 + ArtUnc_61: 2.2069932666540668e-09 + ArtUnc_62: 3.1335045374841156e-08 + ArtUnc_63: -3.6382703959669343e-09 + ArtUnc_64: -5.303985659363463e-06 + ArtUnc_65: 3.295262320683488e-08 + ArtUnc_66: 6.51419437064317e-06 + ArtUnc_67: 1.224938548401954e-07 + ArtUnc_68: -6.0424720363524e-08 + ArtUnc_69: -2.525003177364441e-09 + ArtUnc_70: 1.6964903821867333e-08 + ArtUnc_71: -4.213129200925123e-11 + ArtUnc_72: 1.0434560435049898e-09 + ArtUnc_73: 2.2988054108867716e-10 + ArtUnc_74: -4.029581933211132e-08 + ArtUnc_75: 1.1695826127329766e-08 + ArtUnc_76: -1.1125737214139704e-09 + ArtUnc_77: -9.908908004047555e-10 + ArtUnc_78: 2.1566338396236692e-07 + ArtUnc_79: 7.525356436864798e-08 + ArtUnc_80: -5.458073635477984e-10 + ArtUnc_81: 6.330795480691271e-09 + ArtUnc_82: 2.219836404681475e-10 + ArtUnc_83: -1.4846246330279971e-09 + ArtUnc_84: 1.368357657876286e-10 + ArtUnc_85: 2.579468971964336e-10 + ArtUnc_86: 7.611218948708382e-11 + ArtUnc_87: 3.4903456058610976e-11 + ArtUnc_88: -7.88311010620826e-11 + ArtUnc_89: 1.7002038126260505e-09 + ArtUnc_90: -1.1830090352260171e-09 + ArtUnc_91: 6.700141510953795e-10 + ArtUnc_92: 1.7580036048980386e-09 + ArtUnc_93: -4.661069203930877e-11 + ArtUnc_94: -5.5651946891796474e-11 + ArtUnc_95: -2.1446402629044331e-10 + ArtUnc_96: -5.1926693597453337e-11 - stat: 0 Uncorr: 2.76e-05 RCES: 1.8307768842761804e-05 @@ -2790,102 +2790,102 @@ bins: ModelRW_2: 7.338071332441514e-05 JES_1: 7.173259380504791e-05 JES_2: 7.173259380504791e-05 - ArtUnc_1: 5.028194037011682e-14 - ArtUnc_2: -7.930923863452117e-12 - ArtUnc_3: -3.500863412875774e-11 - ArtUnc_4: -9.003481958413572e-11 - ArtUnc_5: -3.1431617563460395e-12 - ArtUnc_6: -2.6228551187093957e-13 - ArtUnc_7: 2.4988272275389347e-10 - ArtUnc_8: -7.095544583118769e-09 - ArtUnc_9: 1.7262562013246882e-10 - ArtUnc_10: 9.466624384995902e-09 - ArtUnc_11: -1.8797889805441954e-08 - ArtUnc_12: 1.5481587852640913e-09 - ArtUnc_13: 4.131411529644207e-08 - ArtUnc_14: 1.2381720441638352e-10 - ArtUnc_15: -5.996467589129313e-10 - ArtUnc_16: 4.239274459555293e-11 - ArtUnc_17: 3.8003228588328964e-09 - ArtUnc_18: 1.1617569595827475e-10 - ArtUnc_19: 9.204297352629586e-09 - ArtUnc_20: -3.2952159006435125e-08 - ArtUnc_21: 1.706019035926824e-09 - ArtUnc_22: -3.1590324005269335e-07 - ArtUnc_23: -6.308935847157541e-09 - ArtUnc_24: 1.7278494489381813e-07 - ArtUnc_25: 1.387547211393275e-07 - ArtUnc_26: -2.9595791064755926e-08 - ArtUnc_27: -6.592875651505977e-07 - ArtUnc_28: 2.498500597107091e-08 - ArtUnc_29: 3.1242140113624735e-07 - ArtUnc_30: -1.2830119955878174e-07 - ArtUnc_31: -5.325623570391923e-08 - ArtUnc_32: -1.557857961817653e-06 - ArtUnc_33: -1.8667160575862471e-10 - ArtUnc_34: 3.4328292949324215e-08 - ArtUnc_35: -1.5603640778704735e-08 - ArtUnc_36: 3.414412333334038e-07 - ArtUnc_37: 6.324378226229919e-07 - ArtUnc_38: 1.1310962710340537e-07 - ArtUnc_39: 5.436061122555622e-07 - ArtUnc_40: 9.940743205069577e-09 - ArtUnc_41: 2.723372214838286e-06 - ArtUnc_42: -3.5212973381854846e-09 - ArtUnc_43: -3.2286787244512606e-06 - ArtUnc_44: -1.137559147814426e-06 - ArtUnc_45: -1.8692778347109393e-08 - ArtUnc_46: -4.7039603477273036e-07 - ArtUnc_47: 1.780854677128344e-07 - ArtUnc_48: 6.883291106114957e-09 - ArtUnc_49: 5.5623819126375e-06 - ArtUnc_50: 1.1534748792054565e-07 - ArtUnc_51: 1.028575206998775e-06 - ArtUnc_52: -3.0315609727011743e-07 - ArtUnc_53: -6.972290082412896e-09 - ArtUnc_54: 8.435772815705874e-08 - ArtUnc_55: -1.3118817752018065e-05 - ArtUnc_56: 8.339153477262663e-06 - ArtUnc_57: 2.3637144144613787e-06 - ArtUnc_58: -2.2236860622236262e-05 - ArtUnc_59: -4.699881721535158e-08 - ArtUnc_60: 2.263671637940174e-05 - ArtUnc_61: 3.1315628658612085e-09 - ArtUnc_62: -8.57322660994336e-07 - ArtUnc_63: 9.546774888890239e-08 - ArtUnc_64: 4.3457629674280023e-05 - ArtUnc_65: 1.6714745717973356e-06 - ArtUnc_66: 5.062688865522578e-05 - ArtUnc_67: -1.6624391063533658e-06 - ArtUnc_68: 3.1870521645735013e-07 - ArtUnc_69: -4.135156259850382e-08 - ArtUnc_70: 2.955379799570098e-07 - ArtUnc_71: -2.72632503482665e-09 - ArtUnc_72: -1.3610040269890458e-06 - ArtUnc_73: -1.026442091430942e-07 - ArtUnc_74: -5.69311430194319e-07 - ArtUnc_75: -1.703078184775388e-06 - ArtUnc_76: -6.269284013198872e-09 - ArtUnc_77: 8.642190079210228e-09 - ArtUnc_78: -3.365296810775991e-06 - ArtUnc_79: -1.844309294769266e-06 - ArtUnc_80: 9.498543448093592e-09 - ArtUnc_81: -9.359532363281393e-08 - ArtUnc_82: 5.063739805795015e-09 - ArtUnc_83: 1.6723098673167816e-08 - ArtUnc_84: -1.2576779963022046e-08 - ArtUnc_85: 5.9980743564484816e-09 - ArtUnc_86: -1.4311052060219964e-09 - ArtUnc_87: -1.0586207274605797e-09 - ArtUnc_88: 3.948718245876623e-08 - ArtUnc_89: -1.5082683611736483e-10 - ArtUnc_90: -1.8390899459918704e-08 - ArtUnc_91: -1.2206702689793343e-08 - ArtUnc_92: 3.956258911796859e-08 - ArtUnc_93: 2.2233604812058874e-10 - ArtUnc_94: 1.6431022394437524e-09 - ArtUnc_95: 2.7427779419382887e-09 - ArtUnc_96: 2.071055907394705e-10 + ArtUnc_1: 5.02819392911427e-14 + ArtUnc_2: -7.93092386430135e-12 + ArtUnc_3: -3.500863412851607e-11 + ArtUnc_4: -9.003481958336642e-11 + ArtUnc_5: -3.1431617742647692e-12 + ArtUnc_6: -2.6228548749244885e-13 + ArtUnc_7: 2.4988272275362133e-10 + ArtUnc_8: -7.095544583119142e-09 + ArtUnc_9: 1.7262562010402244e-10 + ArtUnc_10: 9.466624384963338e-09 + ArtUnc_11: -1.879788980545776e-08 + ArtUnc_12: -1.548158785248519e-09 + ArtUnc_13: -4.131411529644298e-08 + ArtUnc_14: 1.2381720443187933e-10 + ArtUnc_15: -5.996467589130546e-10 + ArtUnc_16: 4.2392744590761055e-11 + ArtUnc_17: 3.800322858826508e-09 + ArtUnc_18: -1.161756959648318e-10 + ArtUnc_19: -9.204297352626248e-09 + ArtUnc_20: -3.29521590064212e-08 + ArtUnc_21: 1.7060190359246318e-09 + ArtUnc_22: -3.159032400526775e-07 + ArtUnc_23: -6.308935847250307e-09 + ArtUnc_24: 1.7278494489382729e-07 + ArtUnc_25: 1.3875472113931756e-07 + ArtUnc_26: -2.9595791064606375e-08 + ArtUnc_27: -6.592875651505602e-07 + ArtUnc_28: -2.4985005971144744e-08 + ArtUnc_29: -3.1242140113639304e-07 + ArtUnc_30: -1.2830119955860022e-07 + ArtUnc_31: 5.325623570444768e-08 + ArtUnc_32: -1.557857961817675e-06 + ArtUnc_33: 1.8667160570307258e-10 + ArtUnc_34: 3.4328292949259264e-08 + ArtUnc_35: 1.5603640778777838e-08 + ArtUnc_36: -3.41441233333585e-07 + ArtUnc_37: 6.324378226229994e-07 + ArtUnc_38: -1.1310962710342948e-07 + ArtUnc_39: -5.43606112255573e-07 + ArtUnc_40: 9.94074320502835e-09 + ArtUnc_41: 2.723372214838412e-06 + ArtUnc_42: 3.5212973382349376e-09 + ArtUnc_43: -3.2286787244513157e-06 + ArtUnc_44: -1.137559147814532e-06 + ArtUnc_45: 1.8692778347107762e-08 + ArtUnc_46: -4.703960347728094e-07 + ArtUnc_47: 1.7808546771262623e-07 + ArtUnc_48: -6.883291106153041e-09 + ArtUnc_49: -5.562381912637747e-06 + ArtUnc_50: -1.1534748792065501e-07 + ArtUnc_51: -1.028575206998728e-06 + ArtUnc_52: 3.031560972701436e-07 + ArtUnc_53: 6.9722900824939765e-09 + ArtUnc_54: -8.435772815707573e-08 + ArtUnc_55: -1.3118817752018197e-05 + ArtUnc_56: 8.339153477261923e-06 + ArtUnc_57: 2.363714414463892e-06 + ArtUnc_58: -2.2236860622236516e-05 + ArtUnc_59: -4.699881721560735e-08 + ArtUnc_60: -2.2636716379401355e-05 + ArtUnc_61: -3.1315628659250002e-09 + ArtUnc_62: -8.573226609941899e-07 + ArtUnc_63: 9.546774888907887e-08 + ArtUnc_64: -4.345762967427407e-05 + ArtUnc_65: 1.6714745717974936e-06 + ArtUnc_66: -5.062688865522955e-05 + ArtUnc_67: -1.662439106353279e-06 + ArtUnc_68: 3.187052164572777e-07 + ArtUnc_69: 4.13515625985064e-08 + ArtUnc_70: -2.9553797995699014e-07 + ArtUnc_71: 2.7263250348303047e-09 + ArtUnc_72: 1.3610040269891257e-06 + ArtUnc_73: 1.0264420914310467e-07 + ArtUnc_74: 5.69311430194333e-07 + ArtUnc_75: -1.7030781847754871e-06 + ArtUnc_76: -6.269284013211263e-09 + ArtUnc_77: 8.642190079204772e-09 + ArtUnc_78: -3.365296810775796e-06 + ArtUnc_79: -1.84430929476948e-06 + ArtUnc_80: 9.498543448078409e-09 + ArtUnc_81: -9.359532363282695e-08 + ArtUnc_82: -5.063739805795505e-09 + ArtUnc_83: 1.672309867316878e-08 + ArtUnc_84: 1.257677996302173e-08 + ArtUnc_85: -5.998074356448583e-09 + ArtUnc_86: -1.4311052060218262e-09 + ArtUnc_87: -1.0586207274600761e-09 + ArtUnc_88: -1.508268361170333e-10 + ArtUnc_89: -3.94871824587661e-08 + ArtUnc_90: 1.8390899459919323e-08 + ArtUnc_91: -1.220670268979323e-08 + ArtUnc_92: -3.9562589117971506e-08 + ArtUnc_93: 2.223360481207455e-10 + ArtUnc_94: 1.6431022394438529e-09 + ArtUnc_95: 2.7427779419367713e-09 + ArtUnc_96: 2.0710559073924454e-10 - stat: 0 Uncorr: 3.67e-06 RCES: 2.5017316217971905e-06 @@ -2901,102 +2901,102 @@ bins: ModelRW_2: 2.216199931459253e-05 JES_1: 1.9177795608593807e-05 JES_2: 1.9177795608593807e-05 - ArtUnc_1: 3.1649577406472285e-16 - ArtUnc_2: -5.2335776188955977e-14 - ArtUnc_3: 1.2009689613669813e-13 - ArtUnc_4: 5.2775724723700894e-12 - ArtUnc_5: 1.9602453108170133e-13 - ArtUnc_6: 1.195060314105756e-13 - ArtUnc_7: 1.1770919468664458e-10 - ArtUnc_8: -1.4179526772946948e-09 - ArtUnc_9: 3.14077879028471e-11 - ArtUnc_10: 1.5709557509771584e-09 - ArtUnc_11: -3.1240802535423297e-09 - ArtUnc_12: 2.51872726822909e-10 - ArtUnc_13: 7.045050237369375e-09 - ArtUnc_14: -2.488938284850154e-11 - ArtUnc_15: -6.151766026702624e-11 - ArtUnc_16: 5.5825738656037795e-12 - ArtUnc_17: 3.9609087454243e-10 - ArtUnc_18: 1.2186192509001654e-11 - ArtUnc_19: 1.2867497103020471e-09 - ArtUnc_20: -4.035383590529823e-09 - ArtUnc_21: 2.330392107992802e-10 - ArtUnc_22: -4.487504907636015e-08 - ArtUnc_23: -7.936318198450206e-10 - ArtUnc_24: 2.371442818122049e-08 - ArtUnc_25: 1.5749752398151737e-08 - ArtUnc_26: -4.309261165056775e-09 - ArtUnc_27: -9.798403070582949e-08 - ArtUnc_28: 4.94433998787048e-09 - ArtUnc_29: 5.412031033566136e-08 - ArtUnc_30: -2.2124207161286627e-08 - ArtUnc_31: -9.099620059223857e-09 - ArtUnc_32: -2.421228490786892e-07 - ArtUnc_33: -7.643746274094484e-11 - ArtUnc_34: -2.531175015935894e-09 - ArtUnc_35: 4.649292937028954e-09 - ArtUnc_36: -2.160183108841626e-10 - ArtUnc_37: 1.4995257681071308e-09 - ArtUnc_38: 1.5743773339187948e-10 - ArtUnc_39: -7.455873430701368e-09 - ArtUnc_40: -4.95794967743893e-11 - ArtUnc_41: -2.9637995205923787e-08 - ArtUnc_42: -1.4364644653881406e-09 - ArtUnc_43: 8.010985922253673e-08 - ArtUnc_44: 1.1402569191216392e-08 - ArtUnc_45: 4.703198444676842e-10 - ArtUnc_46: 1.002303393172774e-08 - ArtUnc_47: 7.62877990502964e-09 - ArtUnc_48: 4.3229700829160684e-10 - ArtUnc_49: -3.164264343361119e-07 - ArtUnc_50: -1.2443658523872265e-08 - ArtUnc_51: 5.759850014050222e-08 - ArtUnc_52: -4.171637040698967e-08 - ArtUnc_53: 2.9314420570197154e-09 - ArtUnc_54: 3.51842026721901e-09 - ArtUnc_55: -4.505148231943277e-07 - ArtUnc_56: 4.7492041930748927e-07 - ArtUnc_57: 1.41493406225733e-07 - ArtUnc_58: -5.06873105407887e-07 - ArtUnc_59: -4.014248528161996e-09 - ArtUnc_60: 6.52500989313911e-07 - ArtUnc_61: -7.476582193153976e-10 - ArtUnc_62: -6.22455801358553e-08 - ArtUnc_63: 5.9473529005908975e-09 - ArtUnc_64: 4.6023902239761547e-07 - ArtUnc_65: 1.4696462627758393e-08 - ArtUnc_66: 8.742215561409534e-07 - ArtUnc_67: 2.6854374134708383e-07 - ArtUnc_68: -2.51560080948986e-08 - ArtUnc_69: 9.12920090977178e-08 - ArtUnc_70: -2.008073335549839e-06 - ArtUnc_71: -2.98185579529821e-08 - ArtUnc_72: -1.2038558502868007e-06 - ArtUnc_73: 3.7382863737146895e-09 - ArtUnc_74: -7.397192237967821e-06 - ArtUnc_75: -1.1239358915611417e-07 - ArtUnc_76: 1.9660642274449522e-07 - ArtUnc_77: 2.0281556677640734e-07 - ArtUnc_78: 1.2953754330490816e-05 - ArtUnc_79: -2.1173808847071083e-05 - ArtUnc_80: 3.9649564622569576e-07 - ArtUnc_81: 2.68212297280555e-07 - ArtUnc_82: 5.16968632898392e-08 - ArtUnc_83: -1.5922154831443385e-07 - ArtUnc_84: -7.311494935121377e-07 - ArtUnc_85: -2.964885666779676e-09 - ArtUnc_86: -2.056962891334488e-08 - ArtUnc_87: -2.213952086686656e-08 - ArtUnc_88: 9.456451570328827e-07 - ArtUnc_89: -3.832132486986422e-08 - ArtUnc_90: -2.9598162641288955e-07 - ArtUnc_91: 1.3646041135443824e-07 - ArtUnc_92: -1.63688694421884e-06 - ArtUnc_93: -4.626251923597679e-09 - ArtUnc_94: -2.9079417657433032e-08 - ArtUnc_95: 1.2467227997216099e-08 - ArtUnc_96: -9.500208452471877e-09 + ArtUnc_1: 3.1649572545798636e-16 + ArtUnc_2: -5.233577612250058e-14 + ArtUnc_3: 1.2009689584926394e-13 + ArtUnc_4: 5.277572473053857e-12 + ArtUnc_5: 1.9602452330203135e-13 + ArtUnc_6: 1.1950603216690673e-13 + ArtUnc_7: 1.177091946862514e-10 + ArtUnc_8: -1.4179526772949043e-09 + ArtUnc_9: 3.140778790121353e-11 + ArtUnc_10: 1.5709557509707463e-09 + ArtUnc_11: -3.1240802535447885e-09 + ArtUnc_12: -2.518727268235315e-10 + ArtUnc_13: -7.045050237369745e-09 + ArtUnc_14: -2.4889382837967554e-11 + ArtUnc_15: -6.151766026825989e-11 + ArtUnc_16: 5.582573905562612e-12 + ArtUnc_17: 3.960908745469827e-10 + ArtUnc_18: -1.2186192497896489e-11 + ArtUnc_19: -1.2867497103024744e-09 + ArtUnc_20: -4.035383590529554e-09 + ArtUnc_21: 2.330392107937851e-10 + ArtUnc_22: -4.487504907636002e-08 + ArtUnc_23: -7.936318198209268e-10 + ArtUnc_24: 2.371442818121514e-08 + ArtUnc_25: 1.574975239816285e-08 + ArtUnc_26: -4.309261165127264e-09 + ArtUnc_27: -9.7984030705831e-08 + ArtUnc_28: -4.944339987828451e-09 + ArtUnc_29: -5.412031033562565e-08 + ArtUnc_30: -2.2124207161280466e-08 + ArtUnc_31: 9.099620059241552e-09 + ArtUnc_32: -2.4212284907869234e-07 + ArtUnc_33: 7.643746265587136e-11 + ArtUnc_34: -2.531175015901532e-09 + ArtUnc_35: -4.649292937064408e-09 + ArtUnc_36: 2.1601831095153314e-10 + ArtUnc_37: 1.4995257681146108e-09 + ArtUnc_38: -1.5743773344953369e-10 + ArtUnc_39: 7.455873430691035e-09 + ArtUnc_40: -4.957949681526738e-11 + ArtUnc_41: -2.9637995206043367e-08 + ArtUnc_42: 1.4364644653972603e-09 + ArtUnc_43: 8.010985922253236e-08 + ArtUnc_44: 1.1402569191300257e-08 + ArtUnc_45: -4.70319844532275e-10 + ArtUnc_46: 1.0023033931634319e-08 + ArtUnc_47: 7.628779905008244e-09 + ArtUnc_48: -4.3229700830991953e-10 + ArtUnc_49: 3.164264343360258e-07 + ArtUnc_50: 1.244365852390118e-08 + ArtUnc_51: -5.759850014053632e-08 + ArtUnc_52: 4.17163704070633e-08 + ArtUnc_53: -2.931442056952663e-09 + ArtUnc_54: -3.5184202673116693e-09 + ArtUnc_55: -4.5051482319390554e-07 + ArtUnc_56: 4.7492041930752146e-07 + ArtUnc_57: 1.4149340622586435e-07 + ArtUnc_58: -5.06873105407668e-07 + ArtUnc_59: -4.014248528158959e-09 + ArtUnc_60: -6.525009893137404e-07 + ArtUnc_61: 7.476582192990769e-10 + ArtUnc_62: -6.224558013585522e-08 + ArtUnc_63: 5.947352900612051e-09 + ArtUnc_64: -4.6023902239792263e-07 + ArtUnc_65: 1.469646262779821e-08 + ArtUnc_66: -8.742215561408021e-07 + ArtUnc_67: 2.685437413470425e-07 + ArtUnc_68: -2.515600809491753e-08 + ArtUnc_69: -9.129200909773729e-08 + ArtUnc_70: 2.0080733355498856e-06 + ArtUnc_71: 2.981855795298056e-08 + ArtUnc_72: 1.2038558502867265e-06 + ArtUnc_73: -3.738286373691037e-09 + ArtUnc_74: 7.397192237967834e-06 + ArtUnc_75: -1.1239358915581491e-07 + ArtUnc_76: 1.9660642274449898e-07 + ArtUnc_77: 2.0281556677642994e-07 + ArtUnc_78: 1.2953754330491275e-05 + ArtUnc_79: -2.117380884707036e-05 + ArtUnc_80: 3.964956462254869e-07 + ArtUnc_81: 2.6821229728058613e-07 + ArtUnc_82: -5.169686328983974e-08 + ArtUnc_83: -1.592215483144535e-07 + ArtUnc_84: 7.311494935121575e-07 + ArtUnc_85: 2.9648856667801234e-09 + ArtUnc_86: -2.056962891334345e-08 + ArtUnc_87: -2.2139520866865153e-08 + ArtUnc_88: -3.832132486986376e-08 + ArtUnc_89: -9.456451570329005e-07 + ArtUnc_90: 2.959816264128777e-07 + ArtUnc_91: 1.36460411354434e-07 + ArtUnc_92: 1.6368869442189318e-06 + ArtUnc_93: -4.62625192359946e-09 + ArtUnc_94: -2.907941765743483e-08 + ArtUnc_95: 1.2467227997260188e-08 + ArtUnc_96: -9.500208452465233e-09 - stat: 0 Uncorr: 5.27e-07 RCES: 9.789157990348303e-07 @@ -3012,102 +3012,102 @@ bins: ModelRW_2: 1.6210069405311007e-06 JES_1: 3.334895703817062e-06 JES_2: 3.334895703817062e-06 - ArtUnc_1: 7.525551366001484e-19 - ArtUnc_2: 1.701106506288059e-18 - ArtUnc_3: 2.2088374552042653e-17 - ArtUnc_4: 1.2241962773743911e-16 - ArtUnc_5: 4.1406436477623455e-18 - ArtUnc_6: 1.8386320253768616e-18 - ArtUnc_7: 4.662605559313038e-16 - ArtUnc_8: 3.695906971419403e-15 - ArtUnc_9: 4.122837894431185e-17 - ArtUnc_10: -1.6732250972111107e-14 - ArtUnc_11: 2.906247935821747e-14 - ArtUnc_12: -2.0735468235288463e-15 - ArtUnc_13: -1.0956125714153958e-13 - ArtUnc_14: -7.645551120169018e-16 - ArtUnc_15: 4.445232600208668e-15 - ArtUnc_16: -2.675055029764981e-16 - ArtUnc_17: -6.686565834916709e-15 - ArtUnc_18: -1.8429778988880834e-16 - ArtUnc_19: -5.309393895649595e-14 - ArtUnc_20: 1.6034412809639874e-13 - ArtUnc_21: -9.114499218152497e-15 - ArtUnc_22: 2.8160976159435096e-12 - ArtUnc_23: 5.926044547378676e-14 - ArtUnc_24: -1.9827743594024963e-12 - ArtUnc_25: -2.8747873250231603e-13 - ArtUnc_26: 1.604025822026323e-13 - ArtUnc_27: 8.751908398158677e-12 - ArtUnc_28: -3.2430577908284667e-13 - ArtUnc_29: -6.553866975505245e-12 - ArtUnc_30: 2.568968732181833e-12 - ArtUnc_31: 1.0753638368186946e-12 - ArtUnc_32: 4.1544951068355053e-11 - ArtUnc_33: 1.7348281782282054e-15 - ArtUnc_34: -1.504056954162059e-12 - ArtUnc_35: 7.984848532177075e-13 - ArtUnc_36: -2.4281165361645328e-11 - ArtUnc_37: -4.7504459545822565e-11 - ArtUnc_38: -9.352170382311762e-12 - ArtUnc_39: -5.003011145125786e-11 - ArtUnc_40: -9.794687296308413e-13 - ArtUnc_41: -3.3840096663886415e-10 - ArtUnc_42: -9.145350862669522e-12 - ArtUnc_43: 5.444991103340965e-10 - ArtUnc_44: 2.164790135154207e-10 - ArtUnc_45: 5.036337926644948e-12 - ArtUnc_46: 7.572012011905827e-11 - ArtUnc_47: 1.3122931491819182e-11 - ArtUnc_48: 1.623502336058403e-12 - ArtUnc_49: -1.446386899261996e-09 - ArtUnc_50: -6.487919379622005e-11 - ArtUnc_51: -2.5640452705376276e-10 - ArtUnc_52: 1.9086491769857173e-11 - ArtUnc_53: 6.004925716784896e-11 - ArtUnc_54: -1.3528719568469096e-11 - ArtUnc_55: 1.1799485815549566e-08 - ArtUnc_56: -9.975340208778051e-09 - ArtUnc_57: -2.2521217812461434e-09 - ArtUnc_58: 2.8046997584408207e-08 - ArtUnc_59: 2.2103976595498915e-10 - ArtUnc_60: -3.3649817451945465e-08 - ArtUnc_61: -1.1740658032909334e-10 - ArtUnc_62: -2.4023398508546184e-09 - ArtUnc_63: 1.7391658748616523e-10 - ArtUnc_64: -8.892744340589307e-08 - ArtUnc_65: -4.7974890767403846e-09 - ArtUnc_66: -1.223645169680704e-07 - ArtUnc_67: 3.0406525795472946e-08 - ArtUnc_68: -6.8622035401585674e-09 - ArtUnc_69: 7.665774654291003e-09 - ArtUnc_70: -1.480625126632562e-07 - ArtUnc_71: -2.0979076256279665e-09 - ArtUnc_72: -5.12220960070288e-08 - ArtUnc_73: -1.3362480636346698e-10 - ArtUnc_74: -2.7175826221355415e-07 - ArtUnc_75: -4.951873092023613e-08 - ArtUnc_76: 3.1980767459502424e-09 - ArtUnc_77: 1.1602659070867372e-08 - ArtUnc_78: 2.0132775223614465e-07 - ArtUnc_79: -3.730666429976659e-07 - ArtUnc_80: 5.992296682740758e-09 - ArtUnc_81: -4.792623496430073e-09 - ArtUnc_82: 1.0624184782711253e-09 - ArtUnc_83: 9.610625844063604e-08 - ArtUnc_84: 1.269439672133434e-07 - ArtUnc_85: 6.457187616301165e-07 - ArtUnc_86: -2.931789992925559e-07 - ArtUnc_87: -3.93721173068405e-07 - ArtUnc_88: -1.8185695363265478e-07 - ArtUnc_89: 4.955158818554088e-08 - ArtUnc_90: -1.0973584506276621e-06 - ArtUnc_91: -6.700710340023026e-06 - ArtUnc_92: 4.1782353724122134e-08 - ArtUnc_93: 6.932943847533906e-08 - ArtUnc_94: 1.1183383282740128e-07 - ArtUnc_95: -2.9181645166768724e-06 - ArtUnc_96: -6.066089548558548e-07 + ArtUnc_1: 7.525551332810761e-19 + ArtUnc_2: 1.7011065060993183e-18 + ArtUnc_3: 2.2088374550225672e-17 + ArtUnc_4: 1.2241962774379785e-16 + ArtUnc_5: 4.140643639484835e-18 + ArtUnc_6: 1.838631669346577e-18 + ArtUnc_7: 4.662605559246975e-16 + ArtUnc_8: 3.6959069714146945e-15 + ArtUnc_9: 4.1228378670082187e-17 + ArtUnc_10: -1.6732250973069617e-14 + ArtUnc_11: 2.906247935746357e-14 + ArtUnc_12: 2.07354682755585e-15 + ArtUnc_13: 1.0956125714146772e-13 + ArtUnc_14: -7.645551038861831e-16 + ArtUnc_15: 4.445232595615555e-15 + ArtUnc_16: -2.675054665071818e-16 + ArtUnc_17: -6.686565834819298e-15 + ArtUnc_18: 1.8429779658553334e-16 + ArtUnc_19: 5.3093938955127536e-14 + ArtUnc_20: 1.6034412809324093e-13 + ArtUnc_21: -9.114499216275052e-15 + ArtUnc_22: 2.8160976159407595e-12 + ArtUnc_23: 5.926044542417139e-14 + ArtUnc_24: -1.9827743594159214e-12 + ArtUnc_25: -2.8747873249342066e-13 + ArtUnc_26: 1.6040258231256255e-13 + ArtUnc_27: 8.751908398152517e-12 + ArtUnc_28: 3.243057790862044e-13 + ArtUnc_29: 6.553866976012681e-12 + ArtUnc_30: 2.568968732178255e-12 + ArtUnc_31: -1.0753638369503453e-12 + ArtUnc_32: 4.1544951068356036e-11 + ArtUnc_33: -1.7348277059421816e-15 + ArtUnc_34: -1.5040569541908268e-12 + ArtUnc_35: -7.984848532209664e-13 + ArtUnc_36: 2.4281165361617614e-11 + ArtUnc_37: -4.750445954573314e-11 + ArtUnc_38: 9.352170382692404e-12 + ArtUnc_39: 5.0030111451300346e-11 + ArtUnc_40: -9.794687305802967e-13 + ArtUnc_41: -3.384009666384961e-10 + ArtUnc_42: 9.145350864578396e-12 + ArtUnc_43: 5.444991103342456e-10 + ArtUnc_44: 2.164790135155239e-10 + ArtUnc_45: -5.036337921055136e-12 + ArtUnc_46: 7.572012011880331e-11 + ArtUnc_47: 1.3122931491457895e-11 + ArtUnc_48: -1.6235023239829938e-12 + ArtUnc_49: 1.4463868992619182e-09 + ArtUnc_50: 6.487919379608554e-11 + ArtUnc_51: 2.564045270519593e-10 + ArtUnc_52: -1.9086491770607894e-11 + ArtUnc_53: -6.004925716718752e-11 + ArtUnc_54: 1.3528719560799027e-11 + ArtUnc_55: 1.1799485815545221e-08 + ArtUnc_56: -9.975340208781463e-09 + ArtUnc_57: -2.2521217812471348e-09 + ArtUnc_58: 2.804699758441273e-08 + ArtUnc_59: 2.2103976595410218e-10 + ArtUnc_60: 3.3649817451941395e-08 + ArtUnc_61: 1.1740658032824714e-10 + ArtUnc_62: -2.402339850854667e-09 + ArtUnc_63: 1.7391658748525373e-10 + ArtUnc_64: 8.89274434058841e-08 + ArtUnc_65: -4.7974890767402026e-09 + ArtUnc_66: 1.22364516968084e-07 + ArtUnc_67: 3.040652579547578e-08 + ArtUnc_68: -6.862203540163716e-09 + ArtUnc_69: -7.665774654289796e-09 + ArtUnc_70: 1.480625126632594e-07 + ArtUnc_71: 2.0979076256282548e-09 + ArtUnc_72: 5.122209600702832e-08 + ArtUnc_73: 1.3362480636831328e-10 + ArtUnc_74: 2.717582622135473e-07 + ArtUnc_75: -4.951873092024478e-08 + ArtUnc_76: 3.198076745946251e-09 + ArtUnc_77: 1.1602659070872547e-08 + ArtUnc_78: 2.0132775223619658e-07 + ArtUnc_79: -3.7306664299767404e-07 + ArtUnc_80: 5.992296682747596e-09 + ArtUnc_81: -4.792623496419435e-09 + ArtUnc_82: -1.0624184782695466e-09 + ArtUnc_83: 9.610625844064377e-08 + ArtUnc_84: -1.2694396721333717e-07 + ArtUnc_85: -6.457187616301097e-07 + ArtUnc_86: -2.9317899929255475e-07 + ArtUnc_87: -3.9372117306839423e-07 + ArtUnc_88: 4.955158818554302e-08 + ArtUnc_89: 1.8185695363269428e-07 + ArtUnc_90: 1.097358450627666e-06 + ArtUnc_91: -6.7007103400230265e-06 + ArtUnc_92: -4.1782353724083415e-08 + ArtUnc_93: 6.93294384753824e-08 + ArtUnc_94: 1.1183383282743e-07 + ArtUnc_95: -2.9181645166768758e-06 + ArtUnc_96: -6.066089548558399e-07 - stat: 0 Uncorr: 0.00161 RCES: 0.0056028 @@ -3123,102 +3123,102 @@ bins: ModelRW_2: 0.0033584036572455074 JES_1: 0.0010904110555198896 JES_2: 0.0010904110555198896 - ArtUnc_1: -5.184077554804865e-09 - ArtUnc_2: 1.1677814854411717e-06 - ArtUnc_3: 6.484945269316032e-06 - ArtUnc_4: 2.9607766166695188e-05 - ArtUnc_5: 1.0260097645233027e-06 - ArtUnc_6: 2.6625129317257976e-07 - ArtUnc_7: 0.00019243537417088768 - ArtUnc_8: -0.0010127354200840373 - ArtUnc_9: 1.8484503325495992e-05 - ArtUnc_10: 0.0004836711327518179 - ArtUnc_11: -0.001000349484245882 - ArtUnc_12: 8.105091416691032e-05 - ArtUnc_13: 0.001560303726292502 - ArtUnc_14: -1.312468346417106e-05 - ArtUnc_15: -2.2591533427099566e-06 - ArtUnc_16: 5.81782659962372e-07 - ArtUnc_17: -1.1337540775552543e-06 - ArtUnc_18: -2.9870296863938236e-09 - ArtUnc_19: 4.885827276898902e-06 - ArtUnc_20: 5.46036666714075e-06 - ArtUnc_21: -1.9999995328936353e-07 - ArtUnc_22: 1.1276225478014803e-05 - ArtUnc_23: 2.415068877154063e-07 - ArtUnc_24: -1.869934832142698e-05 - ArtUnc_25: -8.703721396487764e-06 - ArtUnc_26: -5.289837150205136e-07 - ArtUnc_27: 2.0927443056242083e-05 - ArtUnc_28: -1.1909023961736666e-06 - ArtUnc_29: 1.376509661271128e-07 - ArtUnc_30: 2.3200362872257244e-06 - ArtUnc_31: 9.390934551417529e-07 - ArtUnc_32: 5.2604449124956104e-05 - ArtUnc_33: 2.0294766714359843e-08 - ArtUnc_34: 6.195759482584393e-07 - ArtUnc_35: -9.550353952130715e-07 - ArtUnc_36: -3.7298417895135e-08 - ArtUnc_37: -8.018721329022145e-07 - ArtUnc_38: -1.3985486051413725e-07 - ArtUnc_39: 6.047222284831873e-07 - ArtUnc_40: -2.4299704067399724e-09 - ArtUnc_41: 1.4240506631795575e-07 - ArtUnc_42: -1.763199430666483e-09 - ArtUnc_43: -3.8265962551439144e-07 - ArtUnc_44: 5.247038576006091e-07 - ArtUnc_45: 2.189129079036999e-09 - ArtUnc_46: -1.4438072463173603e-08 - ArtUnc_47: 1.3171349073521783e-08 - ArtUnc_48: 2.791115764211058e-10 - ArtUnc_49: 1.2825201759836086e-06 - ArtUnc_50: 3.9512167365672865e-08 - ArtUnc_51: -4.224301304456276e-09 - ArtUnc_52: -6.7536858555796595e-09 - ArtUnc_53: 1.0953565605416257e-09 - ArtUnc_54: -5.617115275140115e-10 - ArtUnc_55: -1.7820274368217247e-08 - ArtUnc_56: -1.2209974055510865e-09 - ArtUnc_57: -4.019287354504049e-10 - ArtUnc_58: -4.213685453428e-09 - ArtUnc_59: 1.2091701534008238e-10 - ArtUnc_60: 8.476923147506623e-09 - ArtUnc_61: -2.7460661767762e-11 - ArtUnc_62: -2.3627119172180134e-10 - ArtUnc_63: 1.983654630674247e-11 - ArtUnc_64: 6.46630459178119e-08 - ArtUnc_65: 1.1144518540054536e-09 - ArtUnc_66: -4.5764880710363666e-08 - ArtUnc_67: 5.587580325254852e-10 - ArtUnc_68: -6.110199357285555e-10 - ArtUnc_69: 1.7776037748952677e-11 - ArtUnc_70: -2.1053104483385263e-10 - ArtUnc_71: -2.036025074802014e-12 - ArtUnc_72: -5.932777335713809e-10 - ArtUnc_73: -4.280016881337702e-11 - ArtUnc_74: -8.42143694808457e-11 - ArtUnc_75: -9.046981473561906e-10 - ArtUnc_76: -8.71138686602466e-12 - ArtUnc_77: -8.7834967448671e-12 - ArtUnc_78: 1.1157174486689162e-09 - ArtUnc_79: -6.647586284952316e-10 - ArtUnc_80: 2.5056554750085015e-12 - ArtUnc_81: 2.9053533657375577e-11 - ArtUnc_82: 1.614311342765625e-12 - ArtUnc_83: -1.379289251603314e-11 - ArtUnc_84: -2.5599498846856188e-11 - ArtUnc_85: 4.113652347930657e-13 - ArtUnc_86: 3.0054805505082303e-12 - ArtUnc_87: 3.627340632113543e-12 - ArtUnc_88: 1.9168249548639103e-11 - ArtUnc_89: -2.8013289475795883e-12 - ArtUnc_90: 1.7317335682249135e-11 - ArtUnc_91: -2.0340718509919114e-12 - ArtUnc_92: -7.107882979359801e-11 - ArtUnc_93: -1.9824035580746016e-12 - ArtUnc_94: -8.498361675632156e-13 - ArtUnc_95: 3.0305793135592135e-11 - ArtUnc_96: 4.905247241945592e-12 + ArtUnc_1: -5.184077555533741e-09 + ArtUnc_2: 1.1677814854411006e-06 + ArtUnc_3: 6.484945269315138e-06 + ArtUnc_4: 2.9607766166695967e-05 + ArtUnc_5: 1.026009764528549e-06 + ArtUnc_6: 2.662512931754971e-07 + ArtUnc_7: 0.00019243537417088093 + ArtUnc_8: -0.0010127354200840388 + ArtUnc_9: 1.8484503325499536e-05 + ArtUnc_10: 0.00048367113275177076 + ArtUnc_11: -0.0010003494842459083 + ArtUnc_12: -8.105091416697253e-05 + ArtUnc_13: -0.001560303726292504 + ArtUnc_14: -1.3124683464170857e-05 + ArtUnc_15: -2.2591533427100417e-06 + ArtUnc_16: 5.817826599619027e-07 + ArtUnc_17: -1.1337540775553265e-06 + ArtUnc_18: 2.987029686372386e-09 + ArtUnc_19: -4.885827276898941e-06 + ArtUnc_20: 5.46036666714073e-06 + ArtUnc_21: -1.9999995328938429e-07 + ArtUnc_22: 1.127622547801492e-05 + ArtUnc_23: 2.4150688771514286e-07 + ArtUnc_24: -1.8699348321426944e-05 + ArtUnc_25: -8.703721396487673e-06 + ArtUnc_26: -5.289837150206431e-07 + ArtUnc_27: 2.092744305624243e-05 + ArtUnc_28: 1.1909023961737446e-06 + ArtUnc_29: -1.376509661274837e-07 + ArtUnc_30: 2.320036287223341e-06 + ArtUnc_31: -9.390934551493554e-07 + ArtUnc_32: 5.260444912495629e-05 + ArtUnc_33: -2.0294766714438776e-08 + ArtUnc_34: 6.195759482581024e-07 + ArtUnc_35: 9.550353952130143e-07 + ArtUnc_36: 3.729841789513544e-08 + ArtUnc_37: -8.01872132902217e-07 + ArtUnc_38: 1.3985486051409333e-07 + ArtUnc_39: -6.047222284831918e-07 + ArtUnc_40: -2.4299704067528574e-09 + ArtUnc_41: 1.4240506631795265e-07 + ArtUnc_42: 1.7631994306664332e-09 + ArtUnc_43: -3.8265962551438614e-07 + ArtUnc_44: 5.247038576006126e-07 + ArtUnc_45: -2.189129079051947e-09 + ArtUnc_46: -1.44380724631698e-08 + ArtUnc_47: 1.3171349073524332e-08 + ArtUnc_48: -2.7911157642128274e-10 + ArtUnc_49: -1.2825201759836507e-06 + ArtUnc_50: -3.951216736568954e-08 + ArtUnc_51: 4.224301304456062e-09 + ArtUnc_52: 6.753685855579711e-09 + ArtUnc_53: -1.0953565605415092e-09 + ArtUnc_54: 5.61711527514032e-10 + ArtUnc_55: -1.782027436821851e-08 + ArtUnc_56: -1.2209974055510724e-09 + ArtUnc_57: -4.019287354508974e-10 + ArtUnc_58: -4.213685453428593e-09 + ArtUnc_59: 1.2091701533994065e-10 + ArtUnc_60: -8.476923147507564e-09 + ArtUnc_61: 2.7460661768004776e-11 + ArtUnc_62: -2.362711917216108e-10 + ArtUnc_63: 1.9836546306819357e-11 + ArtUnc_64: -6.466304591781763e-08 + ArtUnc_65: 1.114451854006085e-09 + ArtUnc_66: 4.576488071035876e-08 + ArtUnc_67: 5.587580325253636e-10 + ArtUnc_68: -6.110199357284909e-10 + ArtUnc_69: -1.7776037748956474e-11 + ArtUnc_70: 2.105310448338427e-10 + ArtUnc_71: 2.036025074802777e-12 + ArtUnc_72: 5.932777335713569e-10 + ArtUnc_73: 4.2800168813375514e-11 + ArtUnc_74: 8.421436948084789e-11 + ArtUnc_75: -9.046981473561437e-10 + ArtUnc_76: -8.711386866030128e-12 + ArtUnc_77: -8.783496744864512e-12 + ArtUnc_78: 1.1157174486688844e-09 + ArtUnc_79: -6.647586284951538e-10 + ArtUnc_80: 2.5056554750015145e-12 + ArtUnc_81: 2.9053533657378786e-11 + ArtUnc_82: -1.6143113427655448e-12 + ArtUnc_83: -1.3792892516033813e-11 + ArtUnc_84: 2.55994988468569e-11 + ArtUnc_85: -4.1136523479301395e-13 + ArtUnc_86: 3.0054805505082905e-12 + ArtUnc_87: 3.6273406321135882e-12 + ArtUnc_88: -2.8013289475797947e-12 + ArtUnc_89: -1.9168249548640208e-11 + ArtUnc_90: -1.7317335682249917e-11 + ArtUnc_91: -2.0340718509920277e-12 + ArtUnc_92: 7.107882979360044e-11 + ArtUnc_93: -1.982403558075022e-12 + ArtUnc_94: -8.498361675632596e-13 + ArtUnc_95: 3.0305793135593906e-11 + ArtUnc_96: 4.905247241945646e-12 - stat: 0 Uncorr: 0.000661 RCES: 0.0027269274408021934 @@ -3234,102 +3234,102 @@ bins: ModelRW_2: 0.002210790564583177 JES_1: 0.0029675955533225887 JES_2: 0.0029675955533225887 - ArtUnc_1: 9.75354752026044e-11 - ArtUnc_2: -6.2273727859760864e-09 - ArtUnc_3: 1.7087591791453076e-08 - ArtUnc_4: 4.3191107089871855e-07 - ArtUnc_5: 1.5544336954288856e-08 - ArtUnc_6: 7.296344356718899e-09 - ArtUnc_7: 6.546000347583141e-06 - ArtUnc_8: -5.724476102832814e-05 - ArtUnc_9: 1.186505533191221e-06 - ArtUnc_10: 4.336442172325017e-05 - ArtUnc_11: -8.826179700580657e-05 - ArtUnc_12: 7.203021247224612e-06 - ArtUnc_13: 0.00015235000980224025 - ArtUnc_14: -4.796339927818345e-07 - ArtUnc_15: -1.0309022261121592e-06 - ArtUnc_16: 9.391591905535796e-08 - ArtUnc_17: 5.1417193078837926e-06 - ArtUnc_18: 1.678842609126929e-07 - ArtUnc_19: 1.2964071120157593e-05 - ArtUnc_20: -3.0078776123107486e-05 - ArtUnc_21: 1.4925297085899568e-06 - ArtUnc_22: -0.0002355474459410796 - ArtUnc_23: -3.6760785509666088e-06 - ArtUnc_24: 0.0001026755887035469 - ArtUnc_25: 6.497741781848203e-05 - ArtUnc_26: -1.8235778533687866e-05 - ArtUnc_27: -0.000324237010333689 - ArtUnc_28: 1.4688165452172505e-05 - ArtUnc_29: 0.00015227934141965964 - ArtUnc_30: -5.982084023959652e-05 - ArtUnc_31: -2.4570653641737887e-05 - ArtUnc_32: -0.0005046502186004556 - ArtUnc_33: -1.7699603926284625e-07 - ArtUnc_34: -4.9246920619964135e-06 - ArtUnc_35: 7.714627557624803e-06 - ArtUnc_36: 2.239252880549989e-07 - ArtUnc_37: 6.411402027397142e-06 - ArtUnc_38: 1.1162652040399548e-06 - ArtUnc_39: 1.1430952119947786e-06 - ArtUnc_40: -6.74883846534561e-08 - ArtUnc_41: -2.3494255885953138e-06 - ArtUnc_42: 3.5551468648716967e-08 - ArtUnc_43: 4.703836380515397e-06 + ArtUnc_1: 9.753547439539828e-11 + ArtUnc_2: -6.227372784156302e-09 + ArtUnc_3: 1.708759179124174e-08 + ArtUnc_4: 4.319110708990544e-07 + ArtUnc_5: 1.55443369537763e-08 + ArtUnc_6: 7.296344354538225e-09 + ArtUnc_7: 6.5460003475791674e-06 + ArtUnc_8: -5.7244761028330045e-05 + ArtUnc_9: 1.186505533190126e-06 + ArtUnc_10: 4.336442172324861e-05 + ArtUnc_11: -8.82617970058097e-05 + ArtUnc_12: -7.2030212472301245e-06 + ArtUnc_13: -0.00015235000980223684 + ArtUnc_14: -4.796339927814513e-07 + ArtUnc_15: -1.0309022261121442e-06 + ArtUnc_16: 9.39159190546805e-08 + ArtUnc_17: 5.141719307884341e-06 + ArtUnc_18: -1.6788426091245276e-07 + ArtUnc_19: -1.2964071120157313e-05 + ArtUnc_20: -3.0078776123106327e-05 + ArtUnc_21: 1.492529708589883e-06 + ArtUnc_22: -0.00023554744594108016 + ArtUnc_23: -3.676078550964621e-06 + ArtUnc_24: 0.00010267558870354524 + ArtUnc_25: 6.497741781847948e-05 + ArtUnc_26: -1.8235778533686426e-05 + ArtUnc_27: -0.00032423701033369213 + ArtUnc_28: -1.4688165452177336e-05 + ArtUnc_29: -0.0001522793414196557 + ArtUnc_30: -5.9820840239537066e-05 + ArtUnc_31: 2.457065364193579e-05 + ArtUnc_32: -0.000504650218600457 + ArtUnc_33: 1.7699603926293156e-07 + ArtUnc_34: -4.924692061993343e-06 + ArtUnc_35: -7.714627557624232e-06 + ArtUnc_36: -2.2392528805489359e-07 + ArtUnc_37: 6.411402027397098e-06 + ArtUnc_38: -1.1162652040395937e-06 + ArtUnc_39: -1.1430952119947765e-06 + ArtUnc_40: -6.748838465346753e-08 + ArtUnc_41: -2.3494255885952587e-06 + ArtUnc_42: -3.555146864871654e-08 + ArtUnc_43: 4.703836380515194e-06 ArtUnc_44: -1.0566857235536604e-05 - ArtUnc_45: -4.4945124539154526e-08 - ArtUnc_46: -2.4857258556842753e-08 - ArtUnc_47: -1.6350369399768692e-07 - ArtUnc_48: -1.0292275806382017e-08 - ArtUnc_49: -1.4375919532155716e-05 - ArtUnc_50: -4.5840583908422396e-07 - ArtUnc_51: 2.5943913798835746e-08 - ArtUnc_52: 3.02608715287162e-08 - ArtUnc_53: -5.632813063283787e-09 - ArtUnc_54: 3.4802714012216528e-09 - ArtUnc_55: 1.3420913257162435e-07 - ArtUnc_56: -1.9194512317746415e-08 - ArtUnc_57: -4.460334623166559e-09 - ArtUnc_58: 1.857298792904718e-07 - ArtUnc_59: -1.5232168649288685e-09 - ArtUnc_60: -2.4123029218965524e-08 - ArtUnc_61: 1.7882848468395116e-10 - ArtUnc_62: 1.7966622080950064e-09 - ArtUnc_63: -1.571494213326034e-10 - ArtUnc_64: -6.671627784510943e-07 - ArtUnc_65: -1.0251897553522388e-08 - ArtUnc_66: 4.632156231862757e-07 - ArtUnc_67: -6.16158835415434e-09 - ArtUnc_68: 6.201726802225472e-09 - ArtUnc_69: -2.1346750028951346e-10 - ArtUnc_70: 2.4861479308311137e-09 - ArtUnc_71: 2.787441481270428e-11 - ArtUnc_72: 7.099604145631209e-09 - ArtUnc_73: 5.686130851729391e-10 - ArtUnc_74: 1.429200388025044e-09 - ArtUnc_75: 1.0248505960158253e-08 - ArtUnc_76: 1.0475918137978693e-10 - ArtUnc_77: 5.6777043837773735e-11 - ArtUnc_78: -1.2579885201608976e-08 - ArtUnc_79: 7.794043392190016e-09 - ArtUnc_80: -7.579711414809432e-11 - ArtUnc_81: -3.4308525311691373e-10 - ArtUnc_82: -1.7751170490890264e-11 - ArtUnc_83: 1.675001844948625e-10 - ArtUnc_84: 3.033136767964866e-10 - ArtUnc_85: -4.200393841862105e-12 - ArtUnc_86: -2.7784398976117046e-11 - ArtUnc_87: -3.283629617375814e-11 - ArtUnc_88: -2.877883598046446e-10 - ArtUnc_89: 3.125116211258946e-11 - ArtUnc_90: -1.5366438817765233e-10 - ArtUnc_91: 1.518307637548374e-11 - ArtUnc_92: 7.963922779568119e-10 - ArtUnc_93: 1.854010673838889e-11 - ArtUnc_94: 1.30934162861907e-11 - ArtUnc_95: -3.159639964275127e-10 - ArtUnc_96: -5.187217158734205e-11 + ArtUnc_45: 4.4945124539397075e-08 + ArtUnc_46: -2.4857258556887034e-08 + ArtUnc_47: -1.6350369399770955e-07 + ArtUnc_48: 1.0292275806389106e-08 + ArtUnc_49: 1.4375919532156121e-05 + ArtUnc_50: 4.584058390843983e-07 + ArtUnc_51: -2.5943913798833367e-08 + ArtUnc_52: -3.026087152871613e-08 + ArtUnc_53: 5.632813063282722e-09 + ArtUnc_54: -3.4802714012223778e-09 + ArtUnc_55: 1.3420913257163547e-07 + ArtUnc_56: -1.919451231774332e-08 + ArtUnc_57: -4.460334623172426e-09 + ArtUnc_58: 1.8572987929047742e-07 + ArtUnc_59: -1.5232168649282663e-09 + ArtUnc_60: 2.412302921897371e-08 + ArtUnc_61: -1.7882848468633827e-10 + ArtUnc_62: 1.7966622080932891e-09 + ArtUnc_63: -1.5714942133352477e-10 + ArtUnc_64: 6.671627784511517e-07 + ArtUnc_65: -1.025189755352918e-08 + ArtUnc_66: -4.632156231862248e-07 + ArtUnc_67: -6.161588354153124e-09 + ArtUnc_68: 6.201726802224839e-09 + ArtUnc_69: 2.1346750028956372e-10 + ArtUnc_70: -2.4861479308310165e-09 + ArtUnc_71: -2.787441481271272e-11 + ArtUnc_72: -7.099604145631049e-09 + ArtUnc_73: -5.6861308517293e-10 + ArtUnc_74: -1.4292003880250983e-09 + ArtUnc_75: 1.0248505960157929e-08 + ArtUnc_76: 1.0475918137984441e-10 + ArtUnc_77: 5.677704383775364e-11 + ArtUnc_78: -1.2579885201608965e-08 + ArtUnc_79: 7.794043392189298e-09 + ArtUnc_80: -7.579711414801293e-11 + ArtUnc_81: -3.430852531169544e-10 + ArtUnc_82: 1.775117049089012e-11 + ArtUnc_83: 1.675001844948761e-10 + ArtUnc_84: -3.033136767965014e-10 + ArtUnc_85: 4.20039384186154e-12 + ArtUnc_86: -2.7784398976116623e-11 + ArtUnc_87: -3.283629617375756e-11 + ArtUnc_88: 3.125116211259143e-11 + ArtUnc_89: 2.877883598046601e-10 + ArtUnc_90: 1.536643881776656e-10 + ArtUnc_91: 1.5183076375485108e-11 + ArtUnc_92: -7.963922779568559e-10 + ArtUnc_93: 1.8540106738393557e-11 + ArtUnc_94: 1.3093416286191433e-11 + ArtUnc_95: -3.1596399642754e-10 + ArtUnc_96: -5.1872171587344076e-11 - stat: 0 Uncorr: 0.000182 RCES: 0.00026041268248685583 @@ -3345,102 +3345,102 @@ bins: ModelRW_2: 0.0006782143981072652 JES_1: 0.000494576418968798 JES_2: 0.000494576418968798 - ArtUnc_1: 7.051224218170511e-11 - ArtUnc_2: -1.3977675181281722e-08 - ArtUnc_3: -7.119561085980849e-08 - ArtUnc_4: -2.8058198438085766e-07 - ArtUnc_5: -9.592216421389346e-09 - ArtUnc_6: -2.0297899814471796e-09 - ArtUnc_7: -1.347255652054934e-06 - ArtUnc_8: 4.150934493663707e-06 - ArtUnc_9: -5.952842188880549e-08 - ArtUnc_10: 5.4380103949999256e-08 - ArtUnc_11: 7.059796883563438e-08 - ArtUnc_12: -9.139260861121792e-09 - ArtUnc_13: 1.2790170539615172e-06 - ArtUnc_14: 2.561740834704523e-08 - ArtUnc_15: -1.9841482617862814e-08 - ArtUnc_16: 1.619807352846073e-10 - ArtUnc_17: 2.3983235953591063e-07 - ArtUnc_18: 7.139715680012391e-09 - ArtUnc_19: 7.286802604848566e-07 - ArtUnc_20: -1.5345833041427986e-06 - ArtUnc_21: 9.112349277439667e-08 - ArtUnc_22: -1.309874406162031e-05 - ArtUnc_23: -2.366435465708012e-07 - ArtUnc_24: 5.656671937789394e-06 - ArtUnc_25: 7.335671792195618e-06 - ArtUnc_26: -1.4577249046429854e-06 - ArtUnc_27: -2.234281373099328e-05 - ArtUnc_28: 9.327416416809586e-07 - ArtUnc_29: 3.571113044835011e-06 - ArtUnc_30: -2.329824213958802e-06 - ArtUnc_31: -9.539461832915348e-07 - ArtUnc_32: -3.3654680854993295e-05 - ArtUnc_33: -1.0814802951169263e-08 - ArtUnc_34: 5.098518791696569e-07 - ArtUnc_35: -7.814559505920847e-07 - ArtUnc_36: 6.4424889366370495e-06 - ArtUnc_37: 1.9979813786579762e-05 - ArtUnc_38: 3.5595772793985083e-06 - ArtUnc_39: 2.0489934740514856e-05 - ArtUnc_40: 3.02489581171129e-08 - ArtUnc_41: 6.089728888448017e-05 - ArtUnc_42: 3.7802166670696874e-07 - ArtUnc_43: -8.955261597294889e-05 - ArtUnc_44: -4.8024390229445945e-05 - ArtUnc_45: -6.22209842054908e-07 - ArtUnc_46: -1.3687951532626222e-05 - ArtUnc_47: 9.264014209200441e-07 - ArtUnc_48: -1.60940431640056e-08 - ArtUnc_49: 0.00017973388342818194 - ArtUnc_50: 4.459666900135036e-06 - ArtUnc_51: -2.0380504375675267e-07 - ArtUnc_52: 1.0862800138358524e-07 - ArtUnc_53: -3.971425587637444e-09 - ArtUnc_54: -2.9663603746897475e-09 - ArtUnc_55: -1.8811433941313633e-06 - ArtUnc_56: -1.9456883465458955e-06 - ArtUnc_57: -5.713827041414732e-07 - ArtUnc_58: -2.6674338272983187e-06 - ArtUnc_59: 3.8161231902574834e-08 - ArtUnc_60: -2.6960411564784744e-06 - ArtUnc_61: -2.2069932666303474e-09 - ArtUnc_62: 3.133504537482695e-08 - ArtUnc_63: -3.6382703959762624e-09 - ArtUnc_64: 5.3039856593629825e-06 - ArtUnc_65: 3.295262320677758e-08 - ArtUnc_66: -6.5141943706438e-06 - ArtUnc_67: 1.2249385484021418e-07 - ArtUnc_68: -6.042472036353696e-08 - ArtUnc_69: 2.5250031773642886e-09 - ArtUnc_70: -1.6964903821870466e-08 - ArtUnc_71: 4.213129200918381e-11 - ArtUnc_72: -1.0434560435131835e-09 - ArtUnc_73: -2.2988054108962423e-10 - ArtUnc_74: 4.0295819332110446e-08 - ArtUnc_75: 1.1695826127319187e-08 - ArtUnc_76: -1.1125737214142425e-09 - ArtUnc_77: -9.908908004052798e-10 - ArtUnc_78: 2.15663383962382e-07 - ArtUnc_79: 7.525356436863188e-08 - ArtUnc_80: -5.458073635483631e-10 - ArtUnc_81: 6.330795480690561e-09 - ArtUnc_82: -2.2198364046810994e-10 - ArtUnc_83: -1.484624633027967e-09 - ArtUnc_84: -1.368357657876776e-10 - ArtUnc_85: -2.5794689719642245e-10 - ArtUnc_86: 7.61121894871189e-11 - ArtUnc_87: 3.4903456058672834e-11 - ArtUnc_88: -1.7002038126260137e-09 - ArtUnc_89: -7.883110106207349e-11 - ArtUnc_90: 1.183009035226033e-09 - ArtUnc_91: 6.70014151095372e-10 - ArtUnc_92: -1.7580036048981999e-09 - ArtUnc_93: -4.661069203930548e-11 - ArtUnc_94: -5.5651946891794884e-11 - ArtUnc_95: -2.1446402629040687e-10 - ArtUnc_96: -5.192669359744669e-11 + ArtUnc_1: 7.051224216026941e-11 + ArtUnc_2: -1.3977675181295216e-08 + ArtUnc_3: -7.119561085981802e-08 + ArtUnc_4: -2.8058198438083383e-07 + ArtUnc_5: -9.59221642205358e-09 + ArtUnc_6: -2.02978998101931e-09 + ArtUnc_7: -1.3472556520548992e-06 + ArtUnc_8: 4.150934493663712e-06 + ArtUnc_9: -5.952842188927762e-08 + ArtUnc_10: 5.438010394919081e-08 + ArtUnc_11: 7.05979688352413e-08 + ArtUnc_12: 9.139260861476654e-09 + ArtUnc_13: -1.2790170539615633e-06 + ArtUnc_14: 2.5617408347870514e-08 + ArtUnc_15: -1.9841482618095413e-08 + ArtUnc_16: 1.6198073526381094e-10 + ArtUnc_17: 2.3983235953556213e-07 + ArtUnc_18: -7.139715679976194e-09 + ArtUnc_19: -7.286802604846646e-07 + ArtUnc_20: -1.534583304142478e-06 + ArtUnc_21: 9.112349277463271e-08 + ArtUnc_22: -1.3098744061619803e-05 + ArtUnc_23: -2.3664354657076953e-07 + ArtUnc_24: 5.656671937789673e-06 + ArtUnc_25: 7.335671792195338e-06 + ArtUnc_26: -1.4577249046427076e-06 + ArtUnc_27: -2.2342813730992484e-05 + ArtUnc_28: -9.32741641681257e-07 + ArtUnc_29: -3.5711130448348982e-06 + ArtUnc_30: -2.3298242139567014e-06 + ArtUnc_31: 9.539461832991869e-07 + ArtUnc_32: -3.365468085499373e-05 + ArtUnc_33: 1.0814802950801851e-08 + ArtUnc_34: 5.098518791699796e-07 + ArtUnc_35: 7.814559505928643e-07 + ArtUnc_36: -6.442488936637111e-06 + ArtUnc_37: 1.9979813786580084e-05 + ArtUnc_38: -3.559577279397605e-06 + ArtUnc_39: -2.0489934740514652e-05 + ArtUnc_40: 3.024895811611956e-08 + ArtUnc_41: 6.08972888844798e-05 + ArtUnc_42: -3.780216667070498e-07 + ArtUnc_43: -8.955261597295062e-05 + ArtUnc_44: -4.8024390229445863e-05 + ArtUnc_45: 6.222098420543644e-07 + ArtUnc_46: -1.368795153262544e-05 + ArtUnc_47: 9.264014209204773e-07 + ArtUnc_48: 1.6094043163831705e-08 + ArtUnc_49: -0.00017973388342818443 + ArtUnc_50: -4.459666900137267e-06 + ArtUnc_51: 2.038050437567206e-07 + ArtUnc_52: -1.0862800138360604e-07 + ArtUnc_53: 3.9714255876467446e-09 + ArtUnc_54: 2.966360374701162e-09 + ArtUnc_55: -1.8811433941314635e-06 + ArtUnc_56: -1.9456883465457418e-06 + ArtUnc_57: -5.713827041420243e-07 + ArtUnc_58: -2.6674338272983496e-06 + ArtUnc_59: 3.8161231902587136e-08 + ArtUnc_60: 2.6960411564784075e-06 + ArtUnc_61: 2.2069932666540668e-09 + ArtUnc_62: 3.1335045374841156e-08 + ArtUnc_63: -3.6382703959669343e-09 + ArtUnc_64: -5.303985659363463e-06 + ArtUnc_65: 3.295262320683488e-08 + ArtUnc_66: 6.51419437064317e-06 + ArtUnc_67: 1.224938548401954e-07 + ArtUnc_68: -6.0424720363524e-08 + ArtUnc_69: -2.525003177364441e-09 + ArtUnc_70: 1.6964903821867333e-08 + ArtUnc_71: -4.213129200925123e-11 + ArtUnc_72: 1.0434560435049898e-09 + ArtUnc_73: 2.2988054108867716e-10 + ArtUnc_74: -4.029581933211132e-08 + ArtUnc_75: 1.1695826127329766e-08 + ArtUnc_76: -1.1125737214139704e-09 + ArtUnc_77: -9.908908004047555e-10 + ArtUnc_78: 2.1566338396236692e-07 + ArtUnc_79: 7.525356436864798e-08 + ArtUnc_80: -5.458073635477984e-10 + ArtUnc_81: 6.330795480691271e-09 + ArtUnc_82: 2.219836404681475e-10 + ArtUnc_83: -1.4846246330279971e-09 + ArtUnc_84: 1.368357657876286e-10 + ArtUnc_85: 2.579468971964336e-10 + ArtUnc_86: 7.611218948708382e-11 + ArtUnc_87: 3.4903456058610976e-11 + ArtUnc_88: -7.88311010620826e-11 + ArtUnc_89: 1.7002038126260505e-09 + ArtUnc_90: -1.1830090352260171e-09 + ArtUnc_91: 6.700141510953795e-10 + ArtUnc_92: 1.7580036048980386e-09 + ArtUnc_93: -4.661069203930877e-11 + ArtUnc_94: -5.5651946891796474e-11 + ArtUnc_95: -2.1446402629044331e-10 + ArtUnc_96: -5.1926693597453337e-11 - stat: 0 Uncorr: 3.03e-05 RCES: 6.18379871842543e-05 @@ -3456,102 +3456,102 @@ bins: ModelRW_2: 0.00012062463869583196 JES_1: 0.00010620285074034031 JES_2: 0.00010620285074034031 - ArtUnc_1: 5.028194037011682e-14 - ArtUnc_2: -7.930923863452117e-12 - ArtUnc_3: -3.500863412875774e-11 - ArtUnc_4: -9.003481958413572e-11 - ArtUnc_5: -3.1431617563460395e-12 - ArtUnc_6: -2.6228551187093957e-13 - ArtUnc_7: 2.4988272275389347e-10 - ArtUnc_8: -7.095544583118769e-09 - ArtUnc_9: 1.7262562013246882e-10 - ArtUnc_10: 9.466624384995902e-09 - ArtUnc_11: -1.8797889805441954e-08 - ArtUnc_12: 1.5481587852640913e-09 - ArtUnc_13: 4.131411529644207e-08 - ArtUnc_14: 1.2381720441638352e-10 - ArtUnc_15: -5.996467589129313e-10 - ArtUnc_16: 4.239274459555293e-11 - ArtUnc_17: 3.8003228588328964e-09 - ArtUnc_18: 1.1617569595827475e-10 - ArtUnc_19: 9.204297352629586e-09 - ArtUnc_20: -3.2952159006435125e-08 - ArtUnc_21: 1.706019035926824e-09 - ArtUnc_22: -3.1590324005269335e-07 - ArtUnc_23: -6.308935847157541e-09 - ArtUnc_24: 1.7278494489381813e-07 - ArtUnc_25: 1.387547211393275e-07 - ArtUnc_26: -2.9595791064755926e-08 - ArtUnc_27: -6.592875651505977e-07 - ArtUnc_28: 2.498500597107091e-08 - ArtUnc_29: 3.1242140113624735e-07 - ArtUnc_30: -1.2830119955878174e-07 - ArtUnc_31: -5.325623570391923e-08 - ArtUnc_32: -1.557857961817653e-06 - ArtUnc_33: -1.8667160575862471e-10 - ArtUnc_34: 3.4328292949324215e-08 - ArtUnc_35: -1.5603640778704735e-08 - ArtUnc_36: 3.414412333334038e-07 - ArtUnc_37: 6.324378226229919e-07 - ArtUnc_38: 1.1310962710340537e-07 - ArtUnc_39: 5.436061122555622e-07 - ArtUnc_40: 9.940743205069577e-09 - ArtUnc_41: 2.723372214838286e-06 - ArtUnc_42: -3.5212973381854846e-09 - ArtUnc_43: -3.2286787244512606e-06 - ArtUnc_44: -1.137559147814426e-06 - ArtUnc_45: -1.8692778347109393e-08 - ArtUnc_46: -4.7039603477273036e-07 - ArtUnc_47: 1.780854677128344e-07 - ArtUnc_48: 6.883291106114957e-09 - ArtUnc_49: 5.5623819126375e-06 - ArtUnc_50: 1.1534748792054565e-07 - ArtUnc_51: 1.028575206998775e-06 - ArtUnc_52: -3.0315609727011743e-07 - ArtUnc_53: -6.972290082412896e-09 - ArtUnc_54: 8.435772815705874e-08 - ArtUnc_55: -1.3118817752018065e-05 - ArtUnc_56: 8.339153477262663e-06 - ArtUnc_57: 2.3637144144613787e-06 - ArtUnc_58: -2.2236860622236262e-05 - ArtUnc_59: -4.699881721535158e-08 - ArtUnc_60: 2.263671637940174e-05 - ArtUnc_61: 3.1315628658612085e-09 - ArtUnc_62: -8.57322660994336e-07 - ArtUnc_63: 9.546774888890239e-08 - ArtUnc_64: 4.3457629674280023e-05 - ArtUnc_65: 1.6714745717973356e-06 - ArtUnc_66: 5.062688865522578e-05 - ArtUnc_67: -1.6624391063533658e-06 - ArtUnc_68: 3.1870521645735013e-07 - ArtUnc_69: -4.135156259850382e-08 - ArtUnc_70: 2.955379799570098e-07 - ArtUnc_71: -2.72632503482665e-09 - ArtUnc_72: -1.3610040269890458e-06 - ArtUnc_73: -1.026442091430942e-07 - ArtUnc_74: -5.69311430194319e-07 - ArtUnc_75: -1.703078184775388e-06 - ArtUnc_76: -6.269284013198872e-09 - ArtUnc_77: 8.642190079210228e-09 - ArtUnc_78: -3.365296810775991e-06 - ArtUnc_79: -1.844309294769266e-06 - ArtUnc_80: 9.498543448093592e-09 - ArtUnc_81: -9.359532363281393e-08 - ArtUnc_82: 5.063739805795015e-09 - ArtUnc_83: 1.6723098673167816e-08 - ArtUnc_84: -1.2576779963022046e-08 - ArtUnc_85: 5.9980743564484816e-09 - ArtUnc_86: -1.4311052060219964e-09 - ArtUnc_87: -1.0586207274605797e-09 - ArtUnc_88: 3.948718245876623e-08 - ArtUnc_89: -1.5082683611736483e-10 - ArtUnc_90: -1.8390899459918704e-08 - ArtUnc_91: -1.2206702689793343e-08 - ArtUnc_92: 3.956258911796859e-08 - ArtUnc_93: 2.2233604812058874e-10 - ArtUnc_94: 1.6431022394437524e-09 - ArtUnc_95: 2.7427779419382887e-09 - ArtUnc_96: 2.071055907394705e-10 + ArtUnc_1: 5.02819392911427e-14 + ArtUnc_2: -7.93092386430135e-12 + ArtUnc_3: -3.500863412851607e-11 + ArtUnc_4: -9.003481958336642e-11 + ArtUnc_5: -3.1431617742647692e-12 + ArtUnc_6: -2.6228548749244885e-13 + ArtUnc_7: 2.4988272275362133e-10 + ArtUnc_8: -7.095544583119142e-09 + ArtUnc_9: 1.7262562010402244e-10 + ArtUnc_10: 9.466624384963338e-09 + ArtUnc_11: -1.879788980545776e-08 + ArtUnc_12: -1.548158785248519e-09 + ArtUnc_13: -4.131411529644298e-08 + ArtUnc_14: 1.2381720443187933e-10 + ArtUnc_15: -5.996467589130546e-10 + ArtUnc_16: 4.2392744590761055e-11 + ArtUnc_17: 3.800322858826508e-09 + ArtUnc_18: -1.161756959648318e-10 + ArtUnc_19: -9.204297352626248e-09 + ArtUnc_20: -3.29521590064212e-08 + ArtUnc_21: 1.7060190359246318e-09 + ArtUnc_22: -3.159032400526775e-07 + ArtUnc_23: -6.308935847250307e-09 + ArtUnc_24: 1.7278494489382729e-07 + ArtUnc_25: 1.3875472113931756e-07 + ArtUnc_26: -2.9595791064606375e-08 + ArtUnc_27: -6.592875651505602e-07 + ArtUnc_28: -2.4985005971144744e-08 + ArtUnc_29: -3.1242140113639304e-07 + ArtUnc_30: -1.2830119955860022e-07 + ArtUnc_31: 5.325623570444768e-08 + ArtUnc_32: -1.557857961817675e-06 + ArtUnc_33: 1.8667160570307258e-10 + ArtUnc_34: 3.4328292949259264e-08 + ArtUnc_35: 1.5603640778777838e-08 + ArtUnc_36: -3.41441233333585e-07 + ArtUnc_37: 6.324378226229994e-07 + ArtUnc_38: -1.1310962710342948e-07 + ArtUnc_39: -5.43606112255573e-07 + ArtUnc_40: 9.94074320502835e-09 + ArtUnc_41: 2.723372214838412e-06 + ArtUnc_42: 3.5212973382349376e-09 + ArtUnc_43: -3.2286787244513157e-06 + ArtUnc_44: -1.137559147814532e-06 + ArtUnc_45: 1.8692778347107762e-08 + ArtUnc_46: -4.703960347728094e-07 + ArtUnc_47: 1.7808546771262623e-07 + ArtUnc_48: -6.883291106153041e-09 + ArtUnc_49: -5.562381912637747e-06 + ArtUnc_50: -1.1534748792065501e-07 + ArtUnc_51: -1.028575206998728e-06 + ArtUnc_52: 3.031560972701436e-07 + ArtUnc_53: 6.9722900824939765e-09 + ArtUnc_54: -8.435772815707573e-08 + ArtUnc_55: -1.3118817752018197e-05 + ArtUnc_56: 8.339153477261923e-06 + ArtUnc_57: 2.363714414463892e-06 + ArtUnc_58: -2.2236860622236516e-05 + ArtUnc_59: -4.699881721560735e-08 + ArtUnc_60: -2.2636716379401355e-05 + ArtUnc_61: -3.1315628659250002e-09 + ArtUnc_62: -8.573226609941899e-07 + ArtUnc_63: 9.546774888907887e-08 + ArtUnc_64: -4.345762967427407e-05 + ArtUnc_65: 1.6714745717974936e-06 + ArtUnc_66: -5.062688865522955e-05 + ArtUnc_67: -1.662439106353279e-06 + ArtUnc_68: 3.187052164572777e-07 + ArtUnc_69: 4.13515625985064e-08 + ArtUnc_70: -2.9553797995699014e-07 + ArtUnc_71: 2.7263250348303047e-09 + ArtUnc_72: 1.3610040269891257e-06 + ArtUnc_73: 1.0264420914310467e-07 + ArtUnc_74: 5.69311430194333e-07 + ArtUnc_75: -1.7030781847754871e-06 + ArtUnc_76: -6.269284013211263e-09 + ArtUnc_77: 8.642190079204772e-09 + ArtUnc_78: -3.365296810775796e-06 + ArtUnc_79: -1.84430929476948e-06 + ArtUnc_80: 9.498543448078409e-09 + ArtUnc_81: -9.359532363282695e-08 + ArtUnc_82: -5.063739805795505e-09 + ArtUnc_83: 1.672309867316878e-08 + ArtUnc_84: 1.257677996302173e-08 + ArtUnc_85: -5.998074356448583e-09 + ArtUnc_86: -1.4311052060218262e-09 + ArtUnc_87: -1.0586207274600761e-09 + ArtUnc_88: -1.508268361170333e-10 + ArtUnc_89: -3.94871824587661e-08 + ArtUnc_90: 1.8390899459919323e-08 + ArtUnc_91: -1.220670268979323e-08 + ArtUnc_92: -3.9562589117971506e-08 + ArtUnc_93: 2.223360481207455e-10 + ArtUnc_94: 1.6431022394438529e-09 + ArtUnc_95: 2.7427779419367713e-09 + ArtUnc_96: 2.0710559073924454e-10 - stat: 0 Uncorr: 5.199999999999999e-06 RCES: 1.1284958484637859e-05 @@ -3567,102 +3567,102 @@ bins: ModelRW_2: 1.823769810036343e-05 JES_1: 2.4654382612428158e-05 JES_2: 2.4654382612428158e-05 - ArtUnc_1: 3.1649577406472285e-16 - ArtUnc_2: -5.2335776188955977e-14 - ArtUnc_3: 1.2009689613669813e-13 - ArtUnc_4: 5.2775724723700894e-12 - ArtUnc_5: 1.9602453108170133e-13 - ArtUnc_6: 1.195060314105756e-13 - ArtUnc_7: 1.1770919468664458e-10 - ArtUnc_8: -1.4179526772946948e-09 - ArtUnc_9: 3.14077879028471e-11 - ArtUnc_10: 1.5709557509771584e-09 - ArtUnc_11: -3.1240802535423297e-09 - ArtUnc_12: 2.51872726822909e-10 - ArtUnc_13: 7.045050237369375e-09 - ArtUnc_14: -2.488938284850154e-11 - ArtUnc_15: -6.151766026702624e-11 - ArtUnc_16: 5.5825738656037795e-12 - ArtUnc_17: 3.9609087454243e-10 - ArtUnc_18: 1.2186192509001654e-11 - ArtUnc_19: 1.2867497103020471e-09 - ArtUnc_20: -4.035383590529823e-09 - ArtUnc_21: 2.330392107992802e-10 - ArtUnc_22: -4.487504907636015e-08 - ArtUnc_23: -7.936318198450206e-10 - ArtUnc_24: 2.371442818122049e-08 - ArtUnc_25: 1.5749752398151737e-08 - ArtUnc_26: -4.309261165056775e-09 - ArtUnc_27: -9.798403070582949e-08 - ArtUnc_28: 4.94433998787048e-09 - ArtUnc_29: 5.412031033566136e-08 - ArtUnc_30: -2.2124207161286627e-08 - ArtUnc_31: -9.099620059223857e-09 - ArtUnc_32: -2.421228490786892e-07 - ArtUnc_33: -7.643746274094484e-11 - ArtUnc_34: -2.531175015935894e-09 - ArtUnc_35: 4.649292937028954e-09 - ArtUnc_36: -2.160183108841626e-10 - ArtUnc_37: 1.4995257681071308e-09 - ArtUnc_38: 1.5743773339187948e-10 - ArtUnc_39: -7.455873430701368e-09 - ArtUnc_40: -4.95794967743893e-11 - ArtUnc_41: -2.9637995205923787e-08 - ArtUnc_42: -1.4364644653881406e-09 - ArtUnc_43: 8.010985922253673e-08 - ArtUnc_44: 1.1402569191216392e-08 - ArtUnc_45: 4.703198444676842e-10 - ArtUnc_46: 1.002303393172774e-08 - ArtUnc_47: 7.62877990502964e-09 - ArtUnc_48: 4.3229700829160684e-10 - ArtUnc_49: -3.164264343361119e-07 - ArtUnc_50: -1.2443658523872265e-08 - ArtUnc_51: 5.759850014050222e-08 - ArtUnc_52: -4.171637040698967e-08 - ArtUnc_53: 2.9314420570197154e-09 - ArtUnc_54: 3.51842026721901e-09 - ArtUnc_55: -4.505148231943277e-07 - ArtUnc_56: 4.7492041930748927e-07 - ArtUnc_57: 1.41493406225733e-07 - ArtUnc_58: -5.06873105407887e-07 - ArtUnc_59: -4.014248528161996e-09 - ArtUnc_60: 6.52500989313911e-07 - ArtUnc_61: -7.476582193153976e-10 - ArtUnc_62: -6.22455801358553e-08 - ArtUnc_63: 5.9473529005908975e-09 - ArtUnc_64: 4.6023902239761547e-07 - ArtUnc_65: 1.4696462627758393e-08 - ArtUnc_66: 8.742215561409534e-07 - ArtUnc_67: 2.6854374134708383e-07 - ArtUnc_68: -2.51560080948986e-08 - ArtUnc_69: 9.12920090977178e-08 - ArtUnc_70: -2.008073335549839e-06 - ArtUnc_71: -2.98185579529821e-08 - ArtUnc_72: -1.2038558502868007e-06 - ArtUnc_73: 3.7382863737146895e-09 - ArtUnc_74: -7.397192237967821e-06 - ArtUnc_75: -1.1239358915611417e-07 - ArtUnc_76: 1.9660642274449522e-07 - ArtUnc_77: 2.0281556677640734e-07 - ArtUnc_78: 1.2953754330490816e-05 - ArtUnc_79: -2.1173808847071083e-05 - ArtUnc_80: 3.9649564622569576e-07 - ArtUnc_81: 2.68212297280555e-07 - ArtUnc_82: 5.16968632898392e-08 - ArtUnc_83: -1.5922154831443385e-07 - ArtUnc_84: -7.311494935121377e-07 - ArtUnc_85: -2.964885666779676e-09 - ArtUnc_86: -2.056962891334488e-08 - ArtUnc_87: -2.213952086686656e-08 - ArtUnc_88: 9.456451570328827e-07 - ArtUnc_89: -3.832132486986422e-08 - ArtUnc_90: -2.9598162641288955e-07 - ArtUnc_91: 1.3646041135443824e-07 - ArtUnc_92: -1.63688694421884e-06 - ArtUnc_93: -4.626251923597679e-09 - ArtUnc_94: -2.9079417657433032e-08 - ArtUnc_95: 1.2467227997216099e-08 - ArtUnc_96: -9.500208452471877e-09 + ArtUnc_1: 3.1649572545798636e-16 + ArtUnc_2: -5.233577612250058e-14 + ArtUnc_3: 1.2009689584926394e-13 + ArtUnc_4: 5.277572473053857e-12 + ArtUnc_5: 1.9602452330203135e-13 + ArtUnc_6: 1.1950603216690673e-13 + ArtUnc_7: 1.177091946862514e-10 + ArtUnc_8: -1.4179526772949043e-09 + ArtUnc_9: 3.140778790121353e-11 + ArtUnc_10: 1.5709557509707463e-09 + ArtUnc_11: -3.1240802535447885e-09 + ArtUnc_12: -2.518727268235315e-10 + ArtUnc_13: -7.045050237369745e-09 + ArtUnc_14: -2.4889382837967554e-11 + ArtUnc_15: -6.151766026825989e-11 + ArtUnc_16: 5.582573905562612e-12 + ArtUnc_17: 3.960908745469827e-10 + ArtUnc_18: -1.2186192497896489e-11 + ArtUnc_19: -1.2867497103024744e-09 + ArtUnc_20: -4.035383590529554e-09 + ArtUnc_21: 2.330392107937851e-10 + ArtUnc_22: -4.487504907636002e-08 + ArtUnc_23: -7.936318198209268e-10 + ArtUnc_24: 2.371442818121514e-08 + ArtUnc_25: 1.574975239816285e-08 + ArtUnc_26: -4.309261165127264e-09 + ArtUnc_27: -9.7984030705831e-08 + ArtUnc_28: -4.944339987828451e-09 + ArtUnc_29: -5.412031033562565e-08 + ArtUnc_30: -2.2124207161280466e-08 + ArtUnc_31: 9.099620059241552e-09 + ArtUnc_32: -2.4212284907869234e-07 + ArtUnc_33: 7.643746265587136e-11 + ArtUnc_34: -2.531175015901532e-09 + ArtUnc_35: -4.649292937064408e-09 + ArtUnc_36: 2.1601831095153314e-10 + ArtUnc_37: 1.4995257681146108e-09 + ArtUnc_38: -1.5743773344953369e-10 + ArtUnc_39: 7.455873430691035e-09 + ArtUnc_40: -4.957949681526738e-11 + ArtUnc_41: -2.9637995206043367e-08 + ArtUnc_42: 1.4364644653972603e-09 + ArtUnc_43: 8.010985922253236e-08 + ArtUnc_44: 1.1402569191300257e-08 + ArtUnc_45: -4.70319844532275e-10 + ArtUnc_46: 1.0023033931634319e-08 + ArtUnc_47: 7.628779905008244e-09 + ArtUnc_48: -4.3229700830991953e-10 + ArtUnc_49: 3.164264343360258e-07 + ArtUnc_50: 1.244365852390118e-08 + ArtUnc_51: -5.759850014053632e-08 + ArtUnc_52: 4.17163704070633e-08 + ArtUnc_53: -2.931442056952663e-09 + ArtUnc_54: -3.5184202673116693e-09 + ArtUnc_55: -4.5051482319390554e-07 + ArtUnc_56: 4.7492041930752146e-07 + ArtUnc_57: 1.4149340622586435e-07 + ArtUnc_58: -5.06873105407668e-07 + ArtUnc_59: -4.014248528158959e-09 + ArtUnc_60: -6.525009893137404e-07 + ArtUnc_61: 7.476582192990769e-10 + ArtUnc_62: -6.224558013585522e-08 + ArtUnc_63: 5.947352900612051e-09 + ArtUnc_64: -4.6023902239792263e-07 + ArtUnc_65: 1.469646262779821e-08 + ArtUnc_66: -8.742215561408021e-07 + ArtUnc_67: 2.685437413470425e-07 + ArtUnc_68: -2.515600809491753e-08 + ArtUnc_69: -9.129200909773729e-08 + ArtUnc_70: 2.0080733355498856e-06 + ArtUnc_71: 2.981855795298056e-08 + ArtUnc_72: 1.2038558502867265e-06 + ArtUnc_73: -3.738286373691037e-09 + ArtUnc_74: 7.397192237967834e-06 + ArtUnc_75: -1.1239358915581491e-07 + ArtUnc_76: 1.9660642274449898e-07 + ArtUnc_77: 2.0281556677642994e-07 + ArtUnc_78: 1.2953754330491275e-05 + ArtUnc_79: -2.117380884707036e-05 + ArtUnc_80: 3.964956462254869e-07 + ArtUnc_81: 2.6821229728058613e-07 + ArtUnc_82: -5.169686328983974e-08 + ArtUnc_83: -1.592215483144535e-07 + ArtUnc_84: 7.311494935121575e-07 + ArtUnc_85: 2.9648856667801234e-09 + ArtUnc_86: -2.056962891334345e-08 + ArtUnc_87: -2.2139520866865153e-08 + ArtUnc_88: -3.832132486986376e-08 + ArtUnc_89: -9.456451570329005e-07 + ArtUnc_90: 2.959816264128777e-07 + ArtUnc_91: 1.36460411354434e-07 + ArtUnc_92: 1.6368869442189318e-06 + ArtUnc_93: -4.62625192359946e-09 + ArtUnc_94: -2.907941765743483e-08 + ArtUnc_95: 1.2467227997260188e-08 + ArtUnc_96: -9.500208452465233e-09 - stat: 0 Uncorr: 1.17e-06 RCES: 5.103601155066881e-07 @@ -3678,102 +3678,102 @@ bins: ModelRW_2: 5.063167396008154e-06 JES_1: 2.9632660933503762e-06 JES_2: 2.9632660933503762e-06 - ArtUnc_1: 7.525551366001484e-19 - ArtUnc_2: 1.701106506288059e-18 - ArtUnc_3: 2.2088374552042653e-17 - ArtUnc_4: 1.2241962773743911e-16 - ArtUnc_5: 4.1406436477623455e-18 - ArtUnc_6: 1.8386320253768616e-18 - ArtUnc_7: 4.662605559313038e-16 - ArtUnc_8: 3.695906971419403e-15 - ArtUnc_9: 4.122837894431185e-17 - ArtUnc_10: -1.6732250972111107e-14 - ArtUnc_11: 2.906247935821747e-14 - ArtUnc_12: -2.0735468235288463e-15 - ArtUnc_13: -1.0956125714153958e-13 - ArtUnc_14: -7.645551120169018e-16 - ArtUnc_15: 4.445232600208668e-15 - ArtUnc_16: -2.675055029764981e-16 - ArtUnc_17: -6.686565834916709e-15 - ArtUnc_18: -1.8429778988880834e-16 - ArtUnc_19: -5.309393895649595e-14 - ArtUnc_20: 1.6034412809639874e-13 - ArtUnc_21: -9.114499218152497e-15 - ArtUnc_22: 2.8160976159435096e-12 - ArtUnc_23: 5.926044547378676e-14 - ArtUnc_24: -1.9827743594024963e-12 - ArtUnc_25: -2.8747873250231603e-13 - ArtUnc_26: 1.604025822026323e-13 - ArtUnc_27: 8.751908398158677e-12 - ArtUnc_28: -3.2430577908284667e-13 - ArtUnc_29: -6.553866975505245e-12 - ArtUnc_30: 2.568968732181833e-12 - ArtUnc_31: 1.0753638368186946e-12 - ArtUnc_32: 4.1544951068355053e-11 - ArtUnc_33: 1.7348281782282054e-15 - ArtUnc_34: -1.504056954162059e-12 - ArtUnc_35: 7.984848532177075e-13 - ArtUnc_36: -2.4281165361645328e-11 - ArtUnc_37: -4.7504459545822565e-11 - ArtUnc_38: -9.352170382311762e-12 - ArtUnc_39: -5.003011145125786e-11 - ArtUnc_40: -9.794687296308413e-13 - ArtUnc_41: -3.3840096663886415e-10 - ArtUnc_42: -9.145350862669522e-12 - ArtUnc_43: 5.444991103340965e-10 - ArtUnc_44: 2.164790135154207e-10 - ArtUnc_45: 5.036337926644948e-12 - ArtUnc_46: 7.572012011905827e-11 - ArtUnc_47: 1.3122931491819182e-11 - ArtUnc_48: 1.623502336058403e-12 - ArtUnc_49: -1.446386899261996e-09 - ArtUnc_50: -6.487919379622005e-11 - ArtUnc_51: -2.5640452705376276e-10 - ArtUnc_52: 1.9086491769857173e-11 - ArtUnc_53: 6.004925716784896e-11 - ArtUnc_54: -1.3528719568469096e-11 - ArtUnc_55: 1.1799485815549566e-08 - ArtUnc_56: -9.975340208778051e-09 - ArtUnc_57: -2.2521217812461434e-09 - ArtUnc_58: 2.8046997584408207e-08 - ArtUnc_59: 2.2103976595498915e-10 - ArtUnc_60: -3.3649817451945465e-08 - ArtUnc_61: -1.1740658032909334e-10 - ArtUnc_62: -2.4023398508546184e-09 - ArtUnc_63: 1.7391658748616523e-10 - ArtUnc_64: -8.892744340589307e-08 - ArtUnc_65: -4.7974890767403846e-09 - ArtUnc_66: -1.223645169680704e-07 - ArtUnc_67: 3.0406525795472946e-08 - ArtUnc_68: -6.8622035401585674e-09 - ArtUnc_69: 7.665774654291003e-09 - ArtUnc_70: -1.480625126632562e-07 - ArtUnc_71: -2.0979076256279665e-09 - ArtUnc_72: -5.12220960070288e-08 - ArtUnc_73: -1.3362480636346698e-10 - ArtUnc_74: -2.7175826221355415e-07 - ArtUnc_75: -4.951873092023613e-08 - ArtUnc_76: 3.1980767459502424e-09 - ArtUnc_77: 1.1602659070867372e-08 - ArtUnc_78: 2.0132775223614465e-07 - ArtUnc_79: -3.730666429976659e-07 - ArtUnc_80: 5.992296682740758e-09 - ArtUnc_81: -4.792623496430073e-09 - ArtUnc_82: 1.0624184782711253e-09 - ArtUnc_83: 9.610625844063604e-08 - ArtUnc_84: 1.269439672133434e-07 - ArtUnc_85: 6.457187616301165e-07 - ArtUnc_86: -2.931789992925559e-07 - ArtUnc_87: -3.93721173068405e-07 - ArtUnc_88: -1.8185695363265478e-07 - ArtUnc_89: 4.955158818554088e-08 - ArtUnc_90: -1.0973584506276621e-06 - ArtUnc_91: -6.700710340023026e-06 - ArtUnc_92: 4.1782353724122134e-08 - ArtUnc_93: 6.932943847533906e-08 - ArtUnc_94: 1.1183383282740128e-07 - ArtUnc_95: -2.9181645166768724e-06 - ArtUnc_96: -6.066089548558548e-07 + ArtUnc_1: 7.525551332810761e-19 + ArtUnc_2: 1.7011065060993183e-18 + ArtUnc_3: 2.2088374550225672e-17 + ArtUnc_4: 1.2241962774379785e-16 + ArtUnc_5: 4.140643639484835e-18 + ArtUnc_6: 1.838631669346577e-18 + ArtUnc_7: 4.662605559246975e-16 + ArtUnc_8: 3.6959069714146945e-15 + ArtUnc_9: 4.1228378670082187e-17 + ArtUnc_10: -1.6732250973069617e-14 + ArtUnc_11: 2.906247935746357e-14 + ArtUnc_12: 2.07354682755585e-15 + ArtUnc_13: 1.0956125714146772e-13 + ArtUnc_14: -7.645551038861831e-16 + ArtUnc_15: 4.445232595615555e-15 + ArtUnc_16: -2.675054665071818e-16 + ArtUnc_17: -6.686565834819298e-15 + ArtUnc_18: 1.8429779658553334e-16 + ArtUnc_19: 5.3093938955127536e-14 + ArtUnc_20: 1.6034412809324093e-13 + ArtUnc_21: -9.114499216275052e-15 + ArtUnc_22: 2.8160976159407595e-12 + ArtUnc_23: 5.926044542417139e-14 + ArtUnc_24: -1.9827743594159214e-12 + ArtUnc_25: -2.8747873249342066e-13 + ArtUnc_26: 1.6040258231256255e-13 + ArtUnc_27: 8.751908398152517e-12 + ArtUnc_28: 3.243057790862044e-13 + ArtUnc_29: 6.553866976012681e-12 + ArtUnc_30: 2.568968732178255e-12 + ArtUnc_31: -1.0753638369503453e-12 + ArtUnc_32: 4.1544951068356036e-11 + ArtUnc_33: -1.7348277059421816e-15 + ArtUnc_34: -1.5040569541908268e-12 + ArtUnc_35: -7.984848532209664e-13 + ArtUnc_36: 2.4281165361617614e-11 + ArtUnc_37: -4.750445954573314e-11 + ArtUnc_38: 9.352170382692404e-12 + ArtUnc_39: 5.0030111451300346e-11 + ArtUnc_40: -9.794687305802967e-13 + ArtUnc_41: -3.384009666384961e-10 + ArtUnc_42: 9.145350864578396e-12 + ArtUnc_43: 5.444991103342456e-10 + ArtUnc_44: 2.164790135155239e-10 + ArtUnc_45: -5.036337921055136e-12 + ArtUnc_46: 7.572012011880331e-11 + ArtUnc_47: 1.3122931491457895e-11 + ArtUnc_48: -1.6235023239829938e-12 + ArtUnc_49: 1.4463868992619182e-09 + ArtUnc_50: 6.487919379608554e-11 + ArtUnc_51: 2.564045270519593e-10 + ArtUnc_52: -1.9086491770607894e-11 + ArtUnc_53: -6.004925716718752e-11 + ArtUnc_54: 1.3528719560799027e-11 + ArtUnc_55: 1.1799485815545221e-08 + ArtUnc_56: -9.975340208781463e-09 + ArtUnc_57: -2.2521217812471348e-09 + ArtUnc_58: 2.804699758441273e-08 + ArtUnc_59: 2.2103976595410218e-10 + ArtUnc_60: 3.3649817451941395e-08 + ArtUnc_61: 1.1740658032824714e-10 + ArtUnc_62: -2.402339850854667e-09 + ArtUnc_63: 1.7391658748525373e-10 + ArtUnc_64: 8.89274434058841e-08 + ArtUnc_65: -4.7974890767402026e-09 + ArtUnc_66: 1.22364516968084e-07 + ArtUnc_67: 3.040652579547578e-08 + ArtUnc_68: -6.862203540163716e-09 + ArtUnc_69: -7.665774654289796e-09 + ArtUnc_70: 1.480625126632594e-07 + ArtUnc_71: 2.0979076256282548e-09 + ArtUnc_72: 5.122209600702832e-08 + ArtUnc_73: 1.3362480636831328e-10 + ArtUnc_74: 2.717582622135473e-07 + ArtUnc_75: -4.951873092024478e-08 + ArtUnc_76: 3.198076745946251e-09 + ArtUnc_77: 1.1602659070872547e-08 + ArtUnc_78: 2.0132775223619658e-07 + ArtUnc_79: -3.7306664299767404e-07 + ArtUnc_80: 5.992296682747596e-09 + ArtUnc_81: -4.792623496419435e-09 + ArtUnc_82: -1.0624184782695466e-09 + ArtUnc_83: 9.610625844064377e-08 + ArtUnc_84: -1.2694396721333717e-07 + ArtUnc_85: -6.457187616301097e-07 + ArtUnc_86: -2.9317899929255475e-07 + ArtUnc_87: -3.9372117306839423e-07 + ArtUnc_88: 4.955158818554302e-08 + ArtUnc_89: 1.8185695363269428e-07 + ArtUnc_90: 1.097358450627666e-06 + ArtUnc_91: -6.7007103400230265e-06 + ArtUnc_92: -4.1782353724083415e-08 + ArtUnc_93: 6.93294384753824e-08 + ArtUnc_94: 1.1183383282743e-07 + ArtUnc_95: -2.9181645166768758e-06 + ArtUnc_96: -6.066089548558399e-07 - stat: 0 Uncorr: 0.00193 RCES: 0.005300090646394644 @@ -3789,102 +3789,102 @@ bins: ModelRW_2: 0.004776506306915128 JES_1: 0.001179354764267309 JES_2: 0.001179354764267309 - ArtUnc_1: -5.184077554804865e-09 - ArtUnc_2: 1.1677814854411717e-06 - ArtUnc_3: 6.484945269316032e-06 - ArtUnc_4: 2.9607766166695188e-05 - ArtUnc_5: 1.0260097645233027e-06 - ArtUnc_6: 2.6625129317257976e-07 - ArtUnc_7: 0.00019243537417088768 - ArtUnc_8: -0.0010127354200840373 - ArtUnc_9: 1.8484503325495992e-05 - ArtUnc_10: 0.0004836711327518179 - ArtUnc_11: -0.001000349484245882 - ArtUnc_12: 8.105091416691032e-05 - ArtUnc_13: 0.001560303726292502 - ArtUnc_14: -1.312468346417106e-05 - ArtUnc_15: -2.2591533427099566e-06 - ArtUnc_16: 5.81782659962372e-07 - ArtUnc_17: -1.1337540775552543e-06 - ArtUnc_18: -2.9870296863938236e-09 - ArtUnc_19: 4.885827276898902e-06 - ArtUnc_20: 5.46036666714075e-06 - ArtUnc_21: -1.9999995328936353e-07 - ArtUnc_22: 1.1276225478014803e-05 - ArtUnc_23: 2.415068877154063e-07 - ArtUnc_24: -1.869934832142698e-05 - ArtUnc_25: -8.703721396487764e-06 - ArtUnc_26: -5.289837150205136e-07 - ArtUnc_27: 2.0927443056242083e-05 - ArtUnc_28: -1.1909023961736666e-06 - ArtUnc_29: 1.376509661271128e-07 - ArtUnc_30: 2.3200362872257244e-06 - ArtUnc_31: 9.390934551417529e-07 - ArtUnc_32: 5.2604449124956104e-05 - ArtUnc_33: 2.0294766714359843e-08 - ArtUnc_34: 6.195759482584393e-07 - ArtUnc_35: -9.550353952130715e-07 - ArtUnc_36: -3.7298417895135e-08 - ArtUnc_37: -8.018721329022145e-07 - ArtUnc_38: -1.3985486051413725e-07 - ArtUnc_39: 6.047222284831873e-07 - ArtUnc_40: -2.4299704067399724e-09 - ArtUnc_41: 1.4240506631795575e-07 - ArtUnc_42: -1.763199430666483e-09 - ArtUnc_43: -3.8265962551439144e-07 - ArtUnc_44: 5.247038576006091e-07 - ArtUnc_45: 2.189129079036999e-09 - ArtUnc_46: -1.4438072463173603e-08 - ArtUnc_47: 1.3171349073521783e-08 - ArtUnc_48: 2.791115764211058e-10 - ArtUnc_49: 1.2825201759836086e-06 - ArtUnc_50: 3.9512167365672865e-08 - ArtUnc_51: -4.224301304456276e-09 - ArtUnc_52: -6.7536858555796595e-09 - ArtUnc_53: 1.0953565605416257e-09 - ArtUnc_54: -5.617115275140115e-10 - ArtUnc_55: -1.7820274368217247e-08 - ArtUnc_56: -1.2209974055510865e-09 - ArtUnc_57: -4.019287354504049e-10 - ArtUnc_58: -4.213685453428e-09 - ArtUnc_59: 1.2091701534008238e-10 - ArtUnc_60: 8.476923147506623e-09 - ArtUnc_61: -2.7460661767762e-11 - ArtUnc_62: -2.3627119172180134e-10 - ArtUnc_63: 1.983654630674247e-11 - ArtUnc_64: 6.46630459178119e-08 - ArtUnc_65: 1.1144518540054536e-09 - ArtUnc_66: -4.5764880710363666e-08 - ArtUnc_67: 5.587580325254852e-10 - ArtUnc_68: -6.110199357285555e-10 - ArtUnc_69: 1.7776037748952677e-11 - ArtUnc_70: -2.1053104483385263e-10 - ArtUnc_71: -2.036025074802014e-12 - ArtUnc_72: -5.932777335713809e-10 - ArtUnc_73: -4.280016881337702e-11 - ArtUnc_74: -8.42143694808457e-11 - ArtUnc_75: -9.046981473561906e-10 - ArtUnc_76: -8.71138686602466e-12 - ArtUnc_77: -8.7834967448671e-12 - ArtUnc_78: 1.1157174486689162e-09 - ArtUnc_79: -6.647586284952316e-10 - ArtUnc_80: 2.5056554750085015e-12 - ArtUnc_81: 2.9053533657375577e-11 - ArtUnc_82: 1.614311342765625e-12 - ArtUnc_83: -1.379289251603314e-11 - ArtUnc_84: -2.5599498846856188e-11 - ArtUnc_85: 4.113652347930657e-13 - ArtUnc_86: 3.0054805505082303e-12 - ArtUnc_87: 3.627340632113543e-12 - ArtUnc_88: 1.9168249548639103e-11 - ArtUnc_89: -2.8013289475795883e-12 - ArtUnc_90: 1.7317335682249135e-11 - ArtUnc_91: -2.0340718509919114e-12 - ArtUnc_92: -7.107882979359801e-11 - ArtUnc_93: -1.9824035580746016e-12 - ArtUnc_94: -8.498361675632156e-13 - ArtUnc_95: 3.0305793135592135e-11 - ArtUnc_96: 4.905247241945592e-12 + ArtUnc_1: -5.184077555533741e-09 + ArtUnc_2: 1.1677814854411006e-06 + ArtUnc_3: 6.484945269315138e-06 + ArtUnc_4: 2.9607766166695967e-05 + ArtUnc_5: 1.026009764528549e-06 + ArtUnc_6: 2.662512931754971e-07 + ArtUnc_7: 0.00019243537417088093 + ArtUnc_8: -0.0010127354200840388 + ArtUnc_9: 1.8484503325499536e-05 + ArtUnc_10: 0.00048367113275177076 + ArtUnc_11: -0.0010003494842459083 + ArtUnc_12: -8.105091416697253e-05 + ArtUnc_13: -0.001560303726292504 + ArtUnc_14: -1.3124683464170857e-05 + ArtUnc_15: -2.2591533427100417e-06 + ArtUnc_16: 5.817826599619027e-07 + ArtUnc_17: -1.1337540775553265e-06 + ArtUnc_18: 2.987029686372386e-09 + ArtUnc_19: -4.885827276898941e-06 + ArtUnc_20: 5.46036666714073e-06 + ArtUnc_21: -1.9999995328938429e-07 + ArtUnc_22: 1.127622547801492e-05 + ArtUnc_23: 2.4150688771514286e-07 + ArtUnc_24: -1.8699348321426944e-05 + ArtUnc_25: -8.703721396487673e-06 + ArtUnc_26: -5.289837150206431e-07 + ArtUnc_27: 2.092744305624243e-05 + ArtUnc_28: 1.1909023961737446e-06 + ArtUnc_29: -1.376509661274837e-07 + ArtUnc_30: 2.320036287223341e-06 + ArtUnc_31: -9.390934551493554e-07 + ArtUnc_32: 5.260444912495629e-05 + ArtUnc_33: -2.0294766714438776e-08 + ArtUnc_34: 6.195759482581024e-07 + ArtUnc_35: 9.550353952130143e-07 + ArtUnc_36: 3.729841789513544e-08 + ArtUnc_37: -8.01872132902217e-07 + ArtUnc_38: 1.3985486051409333e-07 + ArtUnc_39: -6.047222284831918e-07 + ArtUnc_40: -2.4299704067528574e-09 + ArtUnc_41: 1.4240506631795265e-07 + ArtUnc_42: 1.7631994306664332e-09 + ArtUnc_43: -3.8265962551438614e-07 + ArtUnc_44: 5.247038576006126e-07 + ArtUnc_45: -2.189129079051947e-09 + ArtUnc_46: -1.44380724631698e-08 + ArtUnc_47: 1.3171349073524332e-08 + ArtUnc_48: -2.7911157642128274e-10 + ArtUnc_49: -1.2825201759836507e-06 + ArtUnc_50: -3.951216736568954e-08 + ArtUnc_51: 4.224301304456062e-09 + ArtUnc_52: 6.753685855579711e-09 + ArtUnc_53: -1.0953565605415092e-09 + ArtUnc_54: 5.61711527514032e-10 + ArtUnc_55: -1.782027436821851e-08 + ArtUnc_56: -1.2209974055510724e-09 + ArtUnc_57: -4.019287354508974e-10 + ArtUnc_58: -4.213685453428593e-09 + ArtUnc_59: 1.2091701533994065e-10 + ArtUnc_60: -8.476923147507564e-09 + ArtUnc_61: 2.7460661768004776e-11 + ArtUnc_62: -2.362711917216108e-10 + ArtUnc_63: 1.9836546306819357e-11 + ArtUnc_64: -6.466304591781763e-08 + ArtUnc_65: 1.114451854006085e-09 + ArtUnc_66: 4.576488071035876e-08 + ArtUnc_67: 5.587580325253636e-10 + ArtUnc_68: -6.110199357284909e-10 + ArtUnc_69: -1.7776037748956474e-11 + ArtUnc_70: 2.105310448338427e-10 + ArtUnc_71: 2.036025074802777e-12 + ArtUnc_72: 5.932777335713569e-10 + ArtUnc_73: 4.2800168813375514e-11 + ArtUnc_74: 8.421436948084789e-11 + ArtUnc_75: -9.046981473561437e-10 + ArtUnc_76: -8.711386866030128e-12 + ArtUnc_77: -8.783496744864512e-12 + ArtUnc_78: 1.1157174486688844e-09 + ArtUnc_79: -6.647586284951538e-10 + ArtUnc_80: 2.5056554750015145e-12 + ArtUnc_81: 2.9053533657378786e-11 + ArtUnc_82: -1.6143113427655448e-12 + ArtUnc_83: -1.3792892516033813e-11 + ArtUnc_84: 2.55994988468569e-11 + ArtUnc_85: -4.1136523479301395e-13 + ArtUnc_86: 3.0054805505082905e-12 + ArtUnc_87: 3.6273406321135882e-12 + ArtUnc_88: -2.8013289475797947e-12 + ArtUnc_89: -1.9168249548640208e-11 + ArtUnc_90: -1.7317335682249917e-11 + ArtUnc_91: -2.0340718509920277e-12 + ArtUnc_92: 7.107882979360044e-11 + ArtUnc_93: -1.982403558075022e-12 + ArtUnc_94: -8.498361675632596e-13 + ArtUnc_95: 3.0305793135593906e-11 + ArtUnc_96: 4.905247241945646e-12 - stat: 0 Uncorr: 0.0008740000000000001 RCES: 0.0028165455166923896 @@ -3900,102 +3900,102 @@ bins: ModelRW_2: 0.0006056511002219017 JES_1: 0.003844517279399326 JES_2: 0.003844517279399326 - ArtUnc_1: 9.75354752026044e-11 - ArtUnc_2: -6.2273727859760864e-09 - ArtUnc_3: 1.7087591791453076e-08 - ArtUnc_4: 4.3191107089871855e-07 - ArtUnc_5: 1.5544336954288856e-08 - ArtUnc_6: 7.296344356718899e-09 - ArtUnc_7: 6.546000347583141e-06 - ArtUnc_8: -5.724476102832814e-05 - ArtUnc_9: 1.186505533191221e-06 - ArtUnc_10: 4.336442172325017e-05 - ArtUnc_11: -8.826179700580657e-05 - ArtUnc_12: 7.203021247224612e-06 - ArtUnc_13: 0.00015235000980224025 - ArtUnc_14: -4.796339927818345e-07 - ArtUnc_15: -1.0309022261121592e-06 - ArtUnc_16: 9.391591905535796e-08 - ArtUnc_17: 5.1417193078837926e-06 - ArtUnc_18: 1.678842609126929e-07 - ArtUnc_19: 1.2964071120157593e-05 - ArtUnc_20: -3.0078776123107486e-05 - ArtUnc_21: 1.4925297085899568e-06 - ArtUnc_22: -0.0002355474459410796 - ArtUnc_23: -3.6760785509666088e-06 - ArtUnc_24: 0.0001026755887035469 - ArtUnc_25: 6.497741781848203e-05 - ArtUnc_26: -1.8235778533687866e-05 - ArtUnc_27: -0.000324237010333689 - ArtUnc_28: 1.4688165452172505e-05 - ArtUnc_29: 0.00015227934141965964 - ArtUnc_30: -5.982084023959652e-05 - ArtUnc_31: -2.4570653641737887e-05 - ArtUnc_32: -0.0005046502186004556 - ArtUnc_33: -1.7699603926284625e-07 - ArtUnc_34: -4.9246920619964135e-06 - ArtUnc_35: 7.714627557624803e-06 - ArtUnc_36: 2.239252880549989e-07 - ArtUnc_37: 6.411402027397142e-06 - ArtUnc_38: 1.1162652040399548e-06 - ArtUnc_39: 1.1430952119947786e-06 - ArtUnc_40: -6.74883846534561e-08 - ArtUnc_41: -2.3494255885953138e-06 - ArtUnc_42: 3.5551468648716967e-08 - ArtUnc_43: 4.703836380515397e-06 + ArtUnc_1: 9.753547439539828e-11 + ArtUnc_2: -6.227372784156302e-09 + ArtUnc_3: 1.708759179124174e-08 + ArtUnc_4: 4.319110708990544e-07 + ArtUnc_5: 1.55443369537763e-08 + ArtUnc_6: 7.296344354538225e-09 + ArtUnc_7: 6.5460003475791674e-06 + ArtUnc_8: -5.7244761028330045e-05 + ArtUnc_9: 1.186505533190126e-06 + ArtUnc_10: 4.336442172324861e-05 + ArtUnc_11: -8.82617970058097e-05 + ArtUnc_12: -7.2030212472301245e-06 + ArtUnc_13: -0.00015235000980223684 + ArtUnc_14: -4.796339927814513e-07 + ArtUnc_15: -1.0309022261121442e-06 + ArtUnc_16: 9.39159190546805e-08 + ArtUnc_17: 5.141719307884341e-06 + ArtUnc_18: -1.6788426091245276e-07 + ArtUnc_19: -1.2964071120157313e-05 + ArtUnc_20: -3.0078776123106327e-05 + ArtUnc_21: 1.492529708589883e-06 + ArtUnc_22: -0.00023554744594108016 + ArtUnc_23: -3.676078550964621e-06 + ArtUnc_24: 0.00010267558870354524 + ArtUnc_25: 6.497741781847948e-05 + ArtUnc_26: -1.8235778533686426e-05 + ArtUnc_27: -0.00032423701033369213 + ArtUnc_28: -1.4688165452177336e-05 + ArtUnc_29: -0.0001522793414196557 + ArtUnc_30: -5.9820840239537066e-05 + ArtUnc_31: 2.457065364193579e-05 + ArtUnc_32: -0.000504650218600457 + ArtUnc_33: 1.7699603926293156e-07 + ArtUnc_34: -4.924692061993343e-06 + ArtUnc_35: -7.714627557624232e-06 + ArtUnc_36: -2.2392528805489359e-07 + ArtUnc_37: 6.411402027397098e-06 + ArtUnc_38: -1.1162652040395937e-06 + ArtUnc_39: -1.1430952119947765e-06 + ArtUnc_40: -6.748838465346753e-08 + ArtUnc_41: -2.3494255885952587e-06 + ArtUnc_42: -3.555146864871654e-08 + ArtUnc_43: 4.703836380515194e-06 ArtUnc_44: -1.0566857235536604e-05 - ArtUnc_45: -4.4945124539154526e-08 - ArtUnc_46: -2.4857258556842753e-08 - ArtUnc_47: -1.6350369399768692e-07 - ArtUnc_48: -1.0292275806382017e-08 - ArtUnc_49: -1.4375919532155716e-05 - ArtUnc_50: -4.5840583908422396e-07 - ArtUnc_51: 2.5943913798835746e-08 - ArtUnc_52: 3.02608715287162e-08 - ArtUnc_53: -5.632813063283787e-09 - ArtUnc_54: 3.4802714012216528e-09 - ArtUnc_55: 1.3420913257162435e-07 - ArtUnc_56: -1.9194512317746415e-08 - ArtUnc_57: -4.460334623166559e-09 - ArtUnc_58: 1.857298792904718e-07 - ArtUnc_59: -1.5232168649288685e-09 - ArtUnc_60: -2.4123029218965524e-08 - ArtUnc_61: 1.7882848468395116e-10 - ArtUnc_62: 1.7966622080950064e-09 - ArtUnc_63: -1.571494213326034e-10 - ArtUnc_64: -6.671627784510943e-07 - ArtUnc_65: -1.0251897553522388e-08 - ArtUnc_66: 4.632156231862757e-07 - ArtUnc_67: -6.16158835415434e-09 - ArtUnc_68: 6.201726802225472e-09 - ArtUnc_69: -2.1346750028951346e-10 - ArtUnc_70: 2.4861479308311137e-09 - ArtUnc_71: 2.787441481270428e-11 - ArtUnc_72: 7.099604145631209e-09 - ArtUnc_73: 5.686130851729391e-10 - ArtUnc_74: 1.429200388025044e-09 - ArtUnc_75: 1.0248505960158253e-08 - ArtUnc_76: 1.0475918137978693e-10 - ArtUnc_77: 5.6777043837773735e-11 - ArtUnc_78: -1.2579885201608976e-08 - ArtUnc_79: 7.794043392190016e-09 - ArtUnc_80: -7.579711414809432e-11 - ArtUnc_81: -3.4308525311691373e-10 - ArtUnc_82: -1.7751170490890264e-11 - ArtUnc_83: 1.675001844948625e-10 - ArtUnc_84: 3.033136767964866e-10 - ArtUnc_85: -4.200393841862105e-12 - ArtUnc_86: -2.7784398976117046e-11 - ArtUnc_87: -3.283629617375814e-11 - ArtUnc_88: -2.877883598046446e-10 - ArtUnc_89: 3.125116211258946e-11 - ArtUnc_90: -1.5366438817765233e-10 - ArtUnc_91: 1.518307637548374e-11 - ArtUnc_92: 7.963922779568119e-10 - ArtUnc_93: 1.854010673838889e-11 - ArtUnc_94: 1.30934162861907e-11 - ArtUnc_95: -3.159639964275127e-10 - ArtUnc_96: -5.187217158734205e-11 + ArtUnc_45: 4.4945124539397075e-08 + ArtUnc_46: -2.4857258556887034e-08 + ArtUnc_47: -1.6350369399770955e-07 + ArtUnc_48: 1.0292275806389106e-08 + ArtUnc_49: 1.4375919532156121e-05 + ArtUnc_50: 4.584058390843983e-07 + ArtUnc_51: -2.5943913798833367e-08 + ArtUnc_52: -3.026087152871613e-08 + ArtUnc_53: 5.632813063282722e-09 + ArtUnc_54: -3.4802714012223778e-09 + ArtUnc_55: 1.3420913257163547e-07 + ArtUnc_56: -1.919451231774332e-08 + ArtUnc_57: -4.460334623172426e-09 + ArtUnc_58: 1.8572987929047742e-07 + ArtUnc_59: -1.5232168649282663e-09 + ArtUnc_60: 2.412302921897371e-08 + ArtUnc_61: -1.7882848468633827e-10 + ArtUnc_62: 1.7966622080932891e-09 + ArtUnc_63: -1.5714942133352477e-10 + ArtUnc_64: 6.671627784511517e-07 + ArtUnc_65: -1.025189755352918e-08 + ArtUnc_66: -4.632156231862248e-07 + ArtUnc_67: -6.161588354153124e-09 + ArtUnc_68: 6.201726802224839e-09 + ArtUnc_69: 2.1346750028956372e-10 + ArtUnc_70: -2.4861479308310165e-09 + ArtUnc_71: -2.787441481271272e-11 + ArtUnc_72: -7.099604145631049e-09 + ArtUnc_73: -5.6861308517293e-10 + ArtUnc_74: -1.4292003880250983e-09 + ArtUnc_75: 1.0248505960157929e-08 + ArtUnc_76: 1.0475918137984441e-10 + ArtUnc_77: 5.677704383775364e-11 + ArtUnc_78: -1.2579885201608965e-08 + ArtUnc_79: 7.794043392189298e-09 + ArtUnc_80: -7.579711414801293e-11 + ArtUnc_81: -3.430852531169544e-10 + ArtUnc_82: 1.775117049089012e-11 + ArtUnc_83: 1.675001844948761e-10 + ArtUnc_84: -3.033136767965014e-10 + ArtUnc_85: 4.20039384186154e-12 + ArtUnc_86: -2.7784398976116623e-11 + ArtUnc_87: -3.283629617375756e-11 + ArtUnc_88: 3.125116211259143e-11 + ArtUnc_89: 2.877883598046601e-10 + ArtUnc_90: 1.536643881776656e-10 + ArtUnc_91: 1.5183076375485108e-11 + ArtUnc_92: -7.963922779568559e-10 + ArtUnc_93: 1.8540106738393557e-11 + ArtUnc_94: 1.3093416286191433e-11 + ArtUnc_95: -3.1596399642754e-10 + ArtUnc_96: -5.1872171587344076e-11 - stat: 0 Uncorr: 0.000236 RCES: 0.00022117053239525378 @@ -4011,102 +4011,102 @@ bins: ModelRW_2: 0.0008243733697785245 JES_1: 0.0006451179898282174 JES_2: 0.0006451179898282174 - ArtUnc_1: 7.051224218170511e-11 - ArtUnc_2: -1.3977675181281722e-08 - ArtUnc_3: -7.119561085980849e-08 - ArtUnc_4: -2.8058198438085766e-07 - ArtUnc_5: -9.592216421389346e-09 - ArtUnc_6: -2.0297899814471796e-09 - ArtUnc_7: -1.347255652054934e-06 - ArtUnc_8: 4.150934493663707e-06 - ArtUnc_9: -5.952842188880549e-08 - ArtUnc_10: 5.4380103949999256e-08 - ArtUnc_11: 7.059796883563438e-08 - ArtUnc_12: -9.139260861121792e-09 - ArtUnc_13: 1.2790170539615172e-06 - ArtUnc_14: 2.561740834704523e-08 - ArtUnc_15: -1.9841482617862814e-08 - ArtUnc_16: 1.619807352846073e-10 - ArtUnc_17: 2.3983235953591063e-07 - ArtUnc_18: 7.139715680012391e-09 - ArtUnc_19: 7.286802604848566e-07 - ArtUnc_20: -1.5345833041427986e-06 - ArtUnc_21: 9.112349277439667e-08 - ArtUnc_22: -1.309874406162031e-05 - ArtUnc_23: -2.366435465708012e-07 - ArtUnc_24: 5.656671937789394e-06 - ArtUnc_25: 7.335671792195618e-06 - ArtUnc_26: -1.4577249046429854e-06 - ArtUnc_27: -2.234281373099328e-05 - ArtUnc_28: 9.327416416809586e-07 - ArtUnc_29: 3.571113044835011e-06 - ArtUnc_30: -2.329824213958802e-06 - ArtUnc_31: -9.539461832915348e-07 - ArtUnc_32: -3.3654680854993295e-05 - ArtUnc_33: -1.0814802951169263e-08 - ArtUnc_34: 5.098518791696569e-07 - ArtUnc_35: -7.814559505920847e-07 - ArtUnc_36: 6.4424889366370495e-06 - ArtUnc_37: 1.9979813786579762e-05 - ArtUnc_38: 3.5595772793985083e-06 - ArtUnc_39: 2.0489934740514856e-05 - ArtUnc_40: 3.02489581171129e-08 - ArtUnc_41: 6.089728888448017e-05 - ArtUnc_42: 3.7802166670696874e-07 - ArtUnc_43: -8.955261597294889e-05 - ArtUnc_44: -4.8024390229445945e-05 - ArtUnc_45: -6.22209842054908e-07 - ArtUnc_46: -1.3687951532626222e-05 - ArtUnc_47: 9.264014209200441e-07 - ArtUnc_48: -1.60940431640056e-08 - ArtUnc_49: 0.00017973388342818194 - ArtUnc_50: 4.459666900135036e-06 - ArtUnc_51: -2.0380504375675267e-07 - ArtUnc_52: 1.0862800138358524e-07 - ArtUnc_53: -3.971425587637444e-09 - ArtUnc_54: -2.9663603746897475e-09 - ArtUnc_55: -1.8811433941313633e-06 - ArtUnc_56: -1.9456883465458955e-06 - ArtUnc_57: -5.713827041414732e-07 - ArtUnc_58: -2.6674338272983187e-06 - ArtUnc_59: 3.8161231902574834e-08 - ArtUnc_60: -2.6960411564784744e-06 - ArtUnc_61: -2.2069932666303474e-09 - ArtUnc_62: 3.133504537482695e-08 - ArtUnc_63: -3.6382703959762624e-09 - ArtUnc_64: 5.3039856593629825e-06 - ArtUnc_65: 3.295262320677758e-08 - ArtUnc_66: -6.5141943706438e-06 - ArtUnc_67: 1.2249385484021418e-07 - ArtUnc_68: -6.042472036353696e-08 - ArtUnc_69: 2.5250031773642886e-09 - ArtUnc_70: -1.6964903821870466e-08 - ArtUnc_71: 4.213129200918381e-11 - ArtUnc_72: -1.0434560435131835e-09 - ArtUnc_73: -2.2988054108962423e-10 - ArtUnc_74: 4.0295819332110446e-08 - ArtUnc_75: 1.1695826127319187e-08 - ArtUnc_76: -1.1125737214142425e-09 - ArtUnc_77: -9.908908004052798e-10 - ArtUnc_78: 2.15663383962382e-07 - ArtUnc_79: 7.525356436863188e-08 - ArtUnc_80: -5.458073635483631e-10 - ArtUnc_81: 6.330795480690561e-09 - ArtUnc_82: -2.2198364046810994e-10 - ArtUnc_83: -1.484624633027967e-09 - ArtUnc_84: -1.368357657876776e-10 - ArtUnc_85: -2.5794689719642245e-10 - ArtUnc_86: 7.61121894871189e-11 - ArtUnc_87: 3.4903456058672834e-11 - ArtUnc_88: -1.7002038126260137e-09 - ArtUnc_89: -7.883110106207349e-11 - ArtUnc_90: 1.183009035226033e-09 - ArtUnc_91: 6.70014151095372e-10 - ArtUnc_92: -1.7580036048981999e-09 - ArtUnc_93: -4.661069203930548e-11 - ArtUnc_94: -5.5651946891794884e-11 - ArtUnc_95: -2.1446402629040687e-10 - ArtUnc_96: -5.192669359744669e-11 + ArtUnc_1: 7.051224216026941e-11 + ArtUnc_2: -1.3977675181295216e-08 + ArtUnc_3: -7.119561085981802e-08 + ArtUnc_4: -2.8058198438083383e-07 + ArtUnc_5: -9.59221642205358e-09 + ArtUnc_6: -2.02978998101931e-09 + ArtUnc_7: -1.3472556520548992e-06 + ArtUnc_8: 4.150934493663712e-06 + ArtUnc_9: -5.952842188927762e-08 + ArtUnc_10: 5.438010394919081e-08 + ArtUnc_11: 7.05979688352413e-08 + ArtUnc_12: 9.139260861476654e-09 + ArtUnc_13: -1.2790170539615633e-06 + ArtUnc_14: 2.5617408347870514e-08 + ArtUnc_15: -1.9841482618095413e-08 + ArtUnc_16: 1.6198073526381094e-10 + ArtUnc_17: 2.3983235953556213e-07 + ArtUnc_18: -7.139715679976194e-09 + ArtUnc_19: -7.286802604846646e-07 + ArtUnc_20: -1.534583304142478e-06 + ArtUnc_21: 9.112349277463271e-08 + ArtUnc_22: -1.3098744061619803e-05 + ArtUnc_23: -2.3664354657076953e-07 + ArtUnc_24: 5.656671937789673e-06 + ArtUnc_25: 7.335671792195338e-06 + ArtUnc_26: -1.4577249046427076e-06 + ArtUnc_27: -2.2342813730992484e-05 + ArtUnc_28: -9.32741641681257e-07 + ArtUnc_29: -3.5711130448348982e-06 + ArtUnc_30: -2.3298242139567014e-06 + ArtUnc_31: 9.539461832991869e-07 + ArtUnc_32: -3.365468085499373e-05 + ArtUnc_33: 1.0814802950801851e-08 + ArtUnc_34: 5.098518791699796e-07 + ArtUnc_35: 7.814559505928643e-07 + ArtUnc_36: -6.442488936637111e-06 + ArtUnc_37: 1.9979813786580084e-05 + ArtUnc_38: -3.559577279397605e-06 + ArtUnc_39: -2.0489934740514652e-05 + ArtUnc_40: 3.024895811611956e-08 + ArtUnc_41: 6.08972888844798e-05 + ArtUnc_42: -3.780216667070498e-07 + ArtUnc_43: -8.955261597295062e-05 + ArtUnc_44: -4.8024390229445863e-05 + ArtUnc_45: 6.222098420543644e-07 + ArtUnc_46: -1.368795153262544e-05 + ArtUnc_47: 9.264014209204773e-07 + ArtUnc_48: 1.6094043163831705e-08 + ArtUnc_49: -0.00017973388342818443 + ArtUnc_50: -4.459666900137267e-06 + ArtUnc_51: 2.038050437567206e-07 + ArtUnc_52: -1.0862800138360604e-07 + ArtUnc_53: 3.9714255876467446e-09 + ArtUnc_54: 2.966360374701162e-09 + ArtUnc_55: -1.8811433941314635e-06 + ArtUnc_56: -1.9456883465457418e-06 + ArtUnc_57: -5.713827041420243e-07 + ArtUnc_58: -2.6674338272983496e-06 + ArtUnc_59: 3.8161231902587136e-08 + ArtUnc_60: 2.6960411564784075e-06 + ArtUnc_61: 2.2069932666540668e-09 + ArtUnc_62: 3.1335045374841156e-08 + ArtUnc_63: -3.6382703959669343e-09 + ArtUnc_64: -5.303985659363463e-06 + ArtUnc_65: 3.295262320683488e-08 + ArtUnc_66: 6.51419437064317e-06 + ArtUnc_67: 1.224938548401954e-07 + ArtUnc_68: -6.0424720363524e-08 + ArtUnc_69: -2.525003177364441e-09 + ArtUnc_70: 1.6964903821867333e-08 + ArtUnc_71: -4.213129200925123e-11 + ArtUnc_72: 1.0434560435049898e-09 + ArtUnc_73: 2.2988054108867716e-10 + ArtUnc_74: -4.029581933211132e-08 + ArtUnc_75: 1.1695826127329766e-08 + ArtUnc_76: -1.1125737214139704e-09 + ArtUnc_77: -9.908908004047555e-10 + ArtUnc_78: 2.1566338396236692e-07 + ArtUnc_79: 7.525356436864798e-08 + ArtUnc_80: -5.458073635477984e-10 + ArtUnc_81: 6.330795480691271e-09 + ArtUnc_82: 2.219836404681475e-10 + ArtUnc_83: -1.4846246330279971e-09 + ArtUnc_84: 1.368357657876286e-10 + ArtUnc_85: 2.579468971964336e-10 + ArtUnc_86: 7.611218948708382e-11 + ArtUnc_87: 3.4903456058610976e-11 + ArtUnc_88: -7.88311010620826e-11 + ArtUnc_89: 1.7002038126260505e-09 + ArtUnc_90: -1.1830090352260171e-09 + ArtUnc_91: 6.700141510953795e-10 + ArtUnc_92: 1.7580036048980386e-09 + ArtUnc_93: -4.661069203930877e-11 + ArtUnc_94: -5.5651946891796474e-11 + ArtUnc_95: -2.1446402629044331e-10 + ArtUnc_96: -5.1926693597453337e-11 - stat: 0 Uncorr: 4.62e-05 RCES: 4.689413791722799e-05 @@ -4122,102 +4122,102 @@ bins: ModelRW_2: 0.00021920451638139207 JES_1: 0.00012645683533127024 JES_2: 0.00012645683533127024 - ArtUnc_1: 5.028194037011682e-14 - ArtUnc_2: -7.930923863452117e-12 - ArtUnc_3: -3.500863412875774e-11 - ArtUnc_4: -9.003481958413572e-11 - ArtUnc_5: -3.1431617563460395e-12 - ArtUnc_6: -2.6228551187093957e-13 - ArtUnc_7: 2.4988272275389347e-10 - ArtUnc_8: -7.095544583118769e-09 - ArtUnc_9: 1.7262562013246882e-10 - ArtUnc_10: 9.466624384995902e-09 - ArtUnc_11: -1.8797889805441954e-08 - ArtUnc_12: 1.5481587852640913e-09 - ArtUnc_13: 4.131411529644207e-08 - ArtUnc_14: 1.2381720441638352e-10 - ArtUnc_15: -5.996467589129313e-10 - ArtUnc_16: 4.239274459555293e-11 - ArtUnc_17: 3.8003228588328964e-09 - ArtUnc_18: 1.1617569595827475e-10 - ArtUnc_19: 9.204297352629586e-09 - ArtUnc_20: -3.2952159006435125e-08 - ArtUnc_21: 1.706019035926824e-09 - ArtUnc_22: -3.1590324005269335e-07 - ArtUnc_23: -6.308935847157541e-09 - ArtUnc_24: 1.7278494489381813e-07 - ArtUnc_25: 1.387547211393275e-07 - ArtUnc_26: -2.9595791064755926e-08 - ArtUnc_27: -6.592875651505977e-07 - ArtUnc_28: 2.498500597107091e-08 - ArtUnc_29: 3.1242140113624735e-07 - ArtUnc_30: -1.2830119955878174e-07 - ArtUnc_31: -5.325623570391923e-08 - ArtUnc_32: -1.557857961817653e-06 - ArtUnc_33: -1.8667160575862471e-10 - ArtUnc_34: 3.4328292949324215e-08 - ArtUnc_35: -1.5603640778704735e-08 - ArtUnc_36: 3.414412333334038e-07 - ArtUnc_37: 6.324378226229919e-07 - ArtUnc_38: 1.1310962710340537e-07 - ArtUnc_39: 5.436061122555622e-07 - ArtUnc_40: 9.940743205069577e-09 - ArtUnc_41: 2.723372214838286e-06 - ArtUnc_42: -3.5212973381854846e-09 - ArtUnc_43: -3.2286787244512606e-06 - ArtUnc_44: -1.137559147814426e-06 - ArtUnc_45: -1.8692778347109393e-08 - ArtUnc_46: -4.7039603477273036e-07 - ArtUnc_47: 1.780854677128344e-07 - ArtUnc_48: 6.883291106114957e-09 - ArtUnc_49: 5.5623819126375e-06 - ArtUnc_50: 1.1534748792054565e-07 - ArtUnc_51: 1.028575206998775e-06 - ArtUnc_52: -3.0315609727011743e-07 - ArtUnc_53: -6.972290082412896e-09 - ArtUnc_54: 8.435772815705874e-08 - ArtUnc_55: -1.3118817752018065e-05 - ArtUnc_56: 8.339153477262663e-06 - ArtUnc_57: 2.3637144144613787e-06 - ArtUnc_58: -2.2236860622236262e-05 - ArtUnc_59: -4.699881721535158e-08 - ArtUnc_60: 2.263671637940174e-05 - ArtUnc_61: 3.1315628658612085e-09 - ArtUnc_62: -8.57322660994336e-07 - ArtUnc_63: 9.546774888890239e-08 - ArtUnc_64: 4.3457629674280023e-05 - ArtUnc_65: 1.6714745717973356e-06 - ArtUnc_66: 5.062688865522578e-05 - ArtUnc_67: -1.6624391063533658e-06 - ArtUnc_68: 3.1870521645735013e-07 - ArtUnc_69: -4.135156259850382e-08 - ArtUnc_70: 2.955379799570098e-07 - ArtUnc_71: -2.72632503482665e-09 - ArtUnc_72: -1.3610040269890458e-06 - ArtUnc_73: -1.026442091430942e-07 - ArtUnc_74: -5.69311430194319e-07 - ArtUnc_75: -1.703078184775388e-06 - ArtUnc_76: -6.269284013198872e-09 - ArtUnc_77: 8.642190079210228e-09 - ArtUnc_78: -3.365296810775991e-06 - ArtUnc_79: -1.844309294769266e-06 - ArtUnc_80: 9.498543448093592e-09 - ArtUnc_81: -9.359532363281393e-08 - ArtUnc_82: 5.063739805795015e-09 - ArtUnc_83: 1.6723098673167816e-08 - ArtUnc_84: -1.2576779963022046e-08 - ArtUnc_85: 5.9980743564484816e-09 - ArtUnc_86: -1.4311052060219964e-09 - ArtUnc_87: -1.0586207274605797e-09 - ArtUnc_88: 3.948718245876623e-08 - ArtUnc_89: -1.5082683611736483e-10 - ArtUnc_90: -1.8390899459918704e-08 - ArtUnc_91: -1.2206702689793343e-08 - ArtUnc_92: 3.956258911796859e-08 - ArtUnc_93: 2.2233604812058874e-10 - ArtUnc_94: 1.6431022394437524e-09 - ArtUnc_95: 2.7427779419382887e-09 - ArtUnc_96: 2.071055907394705e-10 + ArtUnc_1: 5.02819392911427e-14 + ArtUnc_2: -7.93092386430135e-12 + ArtUnc_3: -3.500863412851607e-11 + ArtUnc_4: -9.003481958336642e-11 + ArtUnc_5: -3.1431617742647692e-12 + ArtUnc_6: -2.6228548749244885e-13 + ArtUnc_7: 2.4988272275362133e-10 + ArtUnc_8: -7.095544583119142e-09 + ArtUnc_9: 1.7262562010402244e-10 + ArtUnc_10: 9.466624384963338e-09 + ArtUnc_11: -1.879788980545776e-08 + ArtUnc_12: -1.548158785248519e-09 + ArtUnc_13: -4.131411529644298e-08 + ArtUnc_14: 1.2381720443187933e-10 + ArtUnc_15: -5.996467589130546e-10 + ArtUnc_16: 4.2392744590761055e-11 + ArtUnc_17: 3.800322858826508e-09 + ArtUnc_18: -1.161756959648318e-10 + ArtUnc_19: -9.204297352626248e-09 + ArtUnc_20: -3.29521590064212e-08 + ArtUnc_21: 1.7060190359246318e-09 + ArtUnc_22: -3.159032400526775e-07 + ArtUnc_23: -6.308935847250307e-09 + ArtUnc_24: 1.7278494489382729e-07 + ArtUnc_25: 1.3875472113931756e-07 + ArtUnc_26: -2.9595791064606375e-08 + ArtUnc_27: -6.592875651505602e-07 + ArtUnc_28: -2.4985005971144744e-08 + ArtUnc_29: -3.1242140113639304e-07 + ArtUnc_30: -1.2830119955860022e-07 + ArtUnc_31: 5.325623570444768e-08 + ArtUnc_32: -1.557857961817675e-06 + ArtUnc_33: 1.8667160570307258e-10 + ArtUnc_34: 3.4328292949259264e-08 + ArtUnc_35: 1.5603640778777838e-08 + ArtUnc_36: -3.41441233333585e-07 + ArtUnc_37: 6.324378226229994e-07 + ArtUnc_38: -1.1310962710342948e-07 + ArtUnc_39: -5.43606112255573e-07 + ArtUnc_40: 9.94074320502835e-09 + ArtUnc_41: 2.723372214838412e-06 + ArtUnc_42: 3.5212973382349376e-09 + ArtUnc_43: -3.2286787244513157e-06 + ArtUnc_44: -1.137559147814532e-06 + ArtUnc_45: 1.8692778347107762e-08 + ArtUnc_46: -4.703960347728094e-07 + ArtUnc_47: 1.7808546771262623e-07 + ArtUnc_48: -6.883291106153041e-09 + ArtUnc_49: -5.562381912637747e-06 + ArtUnc_50: -1.1534748792065501e-07 + ArtUnc_51: -1.028575206998728e-06 + ArtUnc_52: 3.031560972701436e-07 + ArtUnc_53: 6.9722900824939765e-09 + ArtUnc_54: -8.435772815707573e-08 + ArtUnc_55: -1.3118817752018197e-05 + ArtUnc_56: 8.339153477261923e-06 + ArtUnc_57: 2.363714414463892e-06 + ArtUnc_58: -2.2236860622236516e-05 + ArtUnc_59: -4.699881721560735e-08 + ArtUnc_60: -2.2636716379401355e-05 + ArtUnc_61: -3.1315628659250002e-09 + ArtUnc_62: -8.573226609941899e-07 + ArtUnc_63: 9.546774888907887e-08 + ArtUnc_64: -4.345762967427407e-05 + ArtUnc_65: 1.6714745717974936e-06 + ArtUnc_66: -5.062688865522955e-05 + ArtUnc_67: -1.662439106353279e-06 + ArtUnc_68: 3.187052164572777e-07 + ArtUnc_69: 4.13515625985064e-08 + ArtUnc_70: -2.9553797995699014e-07 + ArtUnc_71: 2.7263250348303047e-09 + ArtUnc_72: 1.3610040269891257e-06 + ArtUnc_73: 1.0264420914310467e-07 + ArtUnc_74: 5.69311430194333e-07 + ArtUnc_75: -1.7030781847754871e-06 + ArtUnc_76: -6.269284013211263e-09 + ArtUnc_77: 8.642190079204772e-09 + ArtUnc_78: -3.365296810775796e-06 + ArtUnc_79: -1.84430929476948e-06 + ArtUnc_80: 9.498543448078409e-09 + ArtUnc_81: -9.359532363282695e-08 + ArtUnc_82: -5.063739805795505e-09 + ArtUnc_83: 1.672309867316878e-08 + ArtUnc_84: 1.257677996302173e-08 + ArtUnc_85: -5.998074356448583e-09 + ArtUnc_86: -1.4311052060218262e-09 + ArtUnc_87: -1.0586207274600761e-09 + ArtUnc_88: -1.508268361170333e-10 + ArtUnc_89: -3.94871824587661e-08 + ArtUnc_90: 1.8390899459919323e-08 + ArtUnc_91: -1.220670268979323e-08 + ArtUnc_92: -3.9562589117971506e-08 + ArtUnc_93: 2.223360481207455e-10 + ArtUnc_94: 1.6431022394438529e-09 + ArtUnc_95: 2.7427779419367713e-09 + ArtUnc_96: 2.0710559073924454e-10 - stat: 0 Uncorr: 5.56e-06 RCES: 7.994614937568912e-06 @@ -4233,102 +4233,102 @@ bins: ModelRW_2: 1.5057697484011292e-05 JES_1: 2.98756758477528e-05 JES_2: 2.98756758477528e-05 - ArtUnc_1: 3.1649577406472285e-16 - ArtUnc_2: -5.2335776188955977e-14 - ArtUnc_3: 1.2009689613669813e-13 - ArtUnc_4: 5.2775724723700894e-12 - ArtUnc_5: 1.9602453108170133e-13 - ArtUnc_6: 1.195060314105756e-13 - ArtUnc_7: 1.1770919468664458e-10 - ArtUnc_8: -1.4179526772946948e-09 - ArtUnc_9: 3.14077879028471e-11 - ArtUnc_10: 1.5709557509771584e-09 - ArtUnc_11: -3.1240802535423297e-09 - ArtUnc_12: 2.51872726822909e-10 - ArtUnc_13: 7.045050237369375e-09 - ArtUnc_14: -2.488938284850154e-11 - ArtUnc_15: -6.151766026702624e-11 - ArtUnc_16: 5.5825738656037795e-12 - ArtUnc_17: 3.9609087454243e-10 - ArtUnc_18: 1.2186192509001654e-11 - ArtUnc_19: 1.2867497103020471e-09 - ArtUnc_20: -4.035383590529823e-09 - ArtUnc_21: 2.330392107992802e-10 - ArtUnc_22: -4.487504907636015e-08 - ArtUnc_23: -7.936318198450206e-10 - ArtUnc_24: 2.371442818122049e-08 - ArtUnc_25: 1.5749752398151737e-08 - ArtUnc_26: -4.309261165056775e-09 - ArtUnc_27: -9.798403070582949e-08 - ArtUnc_28: 4.94433998787048e-09 - ArtUnc_29: 5.412031033566136e-08 - ArtUnc_30: -2.2124207161286627e-08 - ArtUnc_31: -9.099620059223857e-09 - ArtUnc_32: -2.421228490786892e-07 - ArtUnc_33: -7.643746274094484e-11 - ArtUnc_34: -2.531175015935894e-09 - ArtUnc_35: 4.649292937028954e-09 - ArtUnc_36: -2.160183108841626e-10 - ArtUnc_37: 1.4995257681071308e-09 - ArtUnc_38: 1.5743773339187948e-10 - ArtUnc_39: -7.455873430701368e-09 - ArtUnc_40: -4.95794967743893e-11 - ArtUnc_41: -2.9637995205923787e-08 - ArtUnc_42: -1.4364644653881406e-09 - ArtUnc_43: 8.010985922253673e-08 - ArtUnc_44: 1.1402569191216392e-08 - ArtUnc_45: 4.703198444676842e-10 - ArtUnc_46: 1.002303393172774e-08 - ArtUnc_47: 7.62877990502964e-09 - ArtUnc_48: 4.3229700829160684e-10 - ArtUnc_49: -3.164264343361119e-07 - ArtUnc_50: -1.2443658523872265e-08 - ArtUnc_51: 5.759850014050222e-08 - ArtUnc_52: -4.171637040698967e-08 - ArtUnc_53: 2.9314420570197154e-09 - ArtUnc_54: 3.51842026721901e-09 - ArtUnc_55: -4.505148231943277e-07 - ArtUnc_56: 4.7492041930748927e-07 - ArtUnc_57: 1.41493406225733e-07 - ArtUnc_58: -5.06873105407887e-07 - ArtUnc_59: -4.014248528161996e-09 - ArtUnc_60: 6.52500989313911e-07 - ArtUnc_61: -7.476582193153976e-10 - ArtUnc_62: -6.22455801358553e-08 - ArtUnc_63: 5.9473529005908975e-09 - ArtUnc_64: 4.6023902239761547e-07 - ArtUnc_65: 1.4696462627758393e-08 - ArtUnc_66: 8.742215561409534e-07 - ArtUnc_67: 2.6854374134708383e-07 - ArtUnc_68: -2.51560080948986e-08 - ArtUnc_69: 9.12920090977178e-08 - ArtUnc_70: -2.008073335549839e-06 - ArtUnc_71: -2.98185579529821e-08 - ArtUnc_72: -1.2038558502868007e-06 - ArtUnc_73: 3.7382863737146895e-09 - ArtUnc_74: -7.397192237967821e-06 - ArtUnc_75: -1.1239358915611417e-07 - ArtUnc_76: 1.9660642274449522e-07 - ArtUnc_77: 2.0281556677640734e-07 - ArtUnc_78: 1.2953754330490816e-05 - ArtUnc_79: -2.1173808847071083e-05 - ArtUnc_80: 3.9649564622569576e-07 - ArtUnc_81: 2.68212297280555e-07 - ArtUnc_82: 5.16968632898392e-08 - ArtUnc_83: -1.5922154831443385e-07 - ArtUnc_84: -7.311494935121377e-07 - ArtUnc_85: -2.964885666779676e-09 - ArtUnc_86: -2.056962891334488e-08 - ArtUnc_87: -2.213952086686656e-08 - ArtUnc_88: 9.456451570328827e-07 - ArtUnc_89: -3.832132486986422e-08 - ArtUnc_90: -2.9598162641288955e-07 - ArtUnc_91: 1.3646041135443824e-07 - ArtUnc_92: -1.63688694421884e-06 - ArtUnc_93: -4.626251923597679e-09 - ArtUnc_94: -2.9079417657433032e-08 - ArtUnc_95: 1.2467227997216099e-08 - ArtUnc_96: -9.500208452471877e-09 + ArtUnc_1: 3.1649572545798636e-16 + ArtUnc_2: -5.233577612250058e-14 + ArtUnc_3: 1.2009689584926394e-13 + ArtUnc_4: 5.277572473053857e-12 + ArtUnc_5: 1.9602452330203135e-13 + ArtUnc_6: 1.1950603216690673e-13 + ArtUnc_7: 1.177091946862514e-10 + ArtUnc_8: -1.4179526772949043e-09 + ArtUnc_9: 3.140778790121353e-11 + ArtUnc_10: 1.5709557509707463e-09 + ArtUnc_11: -3.1240802535447885e-09 + ArtUnc_12: -2.518727268235315e-10 + ArtUnc_13: -7.045050237369745e-09 + ArtUnc_14: -2.4889382837967554e-11 + ArtUnc_15: -6.151766026825989e-11 + ArtUnc_16: 5.582573905562612e-12 + ArtUnc_17: 3.960908745469827e-10 + ArtUnc_18: -1.2186192497896489e-11 + ArtUnc_19: -1.2867497103024744e-09 + ArtUnc_20: -4.035383590529554e-09 + ArtUnc_21: 2.330392107937851e-10 + ArtUnc_22: -4.487504907636002e-08 + ArtUnc_23: -7.936318198209268e-10 + ArtUnc_24: 2.371442818121514e-08 + ArtUnc_25: 1.574975239816285e-08 + ArtUnc_26: -4.309261165127264e-09 + ArtUnc_27: -9.7984030705831e-08 + ArtUnc_28: -4.944339987828451e-09 + ArtUnc_29: -5.412031033562565e-08 + ArtUnc_30: -2.2124207161280466e-08 + ArtUnc_31: 9.099620059241552e-09 + ArtUnc_32: -2.4212284907869234e-07 + ArtUnc_33: 7.643746265587136e-11 + ArtUnc_34: -2.531175015901532e-09 + ArtUnc_35: -4.649292937064408e-09 + ArtUnc_36: 2.1601831095153314e-10 + ArtUnc_37: 1.4995257681146108e-09 + ArtUnc_38: -1.5743773344953369e-10 + ArtUnc_39: 7.455873430691035e-09 + ArtUnc_40: -4.957949681526738e-11 + ArtUnc_41: -2.9637995206043367e-08 + ArtUnc_42: 1.4364644653972603e-09 + ArtUnc_43: 8.010985922253236e-08 + ArtUnc_44: 1.1402569191300257e-08 + ArtUnc_45: -4.70319844532275e-10 + ArtUnc_46: 1.0023033931634319e-08 + ArtUnc_47: 7.628779905008244e-09 + ArtUnc_48: -4.3229700830991953e-10 + ArtUnc_49: 3.164264343360258e-07 + ArtUnc_50: 1.244365852390118e-08 + ArtUnc_51: -5.759850014053632e-08 + ArtUnc_52: 4.17163704070633e-08 + ArtUnc_53: -2.931442056952663e-09 + ArtUnc_54: -3.5184202673116693e-09 + ArtUnc_55: -4.5051482319390554e-07 + ArtUnc_56: 4.7492041930752146e-07 + ArtUnc_57: 1.4149340622586435e-07 + ArtUnc_58: -5.06873105407668e-07 + ArtUnc_59: -4.014248528158959e-09 + ArtUnc_60: -6.525009893137404e-07 + ArtUnc_61: 7.476582192990769e-10 + ArtUnc_62: -6.224558013585522e-08 + ArtUnc_63: 5.947352900612051e-09 + ArtUnc_64: -4.6023902239792263e-07 + ArtUnc_65: 1.469646262779821e-08 + ArtUnc_66: -8.742215561408021e-07 + ArtUnc_67: 2.685437413470425e-07 + ArtUnc_68: -2.515600809491753e-08 + ArtUnc_69: -9.129200909773729e-08 + ArtUnc_70: 2.0080733355498856e-06 + ArtUnc_71: 2.981855795298056e-08 + ArtUnc_72: 1.2038558502867265e-06 + ArtUnc_73: -3.738286373691037e-09 + ArtUnc_74: 7.397192237967834e-06 + ArtUnc_75: -1.1239358915581491e-07 + ArtUnc_76: 1.9660642274449898e-07 + ArtUnc_77: 2.0281556677642994e-07 + ArtUnc_78: 1.2953754330491275e-05 + ArtUnc_79: -2.117380884707036e-05 + ArtUnc_80: 3.964956462254869e-07 + ArtUnc_81: 2.6821229728058613e-07 + ArtUnc_82: -5.169686328983974e-08 + ArtUnc_83: -1.592215483144535e-07 + ArtUnc_84: 7.311494935121575e-07 + ArtUnc_85: 2.9648856667801234e-09 + ArtUnc_86: -2.056962891334345e-08 + ArtUnc_87: -2.2139520866865153e-08 + ArtUnc_88: -3.832132486986376e-08 + ArtUnc_89: -9.456451570329005e-07 + ArtUnc_90: 2.959816264128777e-07 + ArtUnc_91: 1.36460411354434e-07 + ArtUnc_92: 1.6368869442189318e-06 + ArtUnc_93: -4.62625192359946e-09 + ArtUnc_94: -2.907941765743483e-08 + ArtUnc_95: 1.2467227997260188e-08 + ArtUnc_96: -9.500208452465233e-09 - stat: 0 Uncorr: 8.349999999999999e-07 RCES: 5.301538229785296e-06 @@ -4344,102 +4344,102 @@ bins: ModelRW_2: 2.593186840781049e-05 JES_1: 3.496741334978897e-06 JES_2: 3.496741334978897e-06 - ArtUnc_1: 7.525551366001484e-19 - ArtUnc_2: 1.701106506288059e-18 - ArtUnc_3: 2.2088374552042653e-17 - ArtUnc_4: 1.2241962773743911e-16 - ArtUnc_5: 4.1406436477623455e-18 - ArtUnc_6: 1.8386320253768616e-18 - ArtUnc_7: 4.662605559313038e-16 - ArtUnc_8: 3.695906971419403e-15 - ArtUnc_9: 4.122837894431185e-17 - ArtUnc_10: -1.6732250972111107e-14 - ArtUnc_11: 2.906247935821747e-14 - ArtUnc_12: -2.0735468235288463e-15 - ArtUnc_13: -1.0956125714153958e-13 - ArtUnc_14: -7.645551120169018e-16 - ArtUnc_15: 4.445232600208668e-15 - ArtUnc_16: -2.675055029764981e-16 - ArtUnc_17: -6.686565834916709e-15 - ArtUnc_18: -1.8429778988880834e-16 - ArtUnc_19: -5.309393895649595e-14 - ArtUnc_20: 1.6034412809639874e-13 - ArtUnc_21: -9.114499218152497e-15 - ArtUnc_22: 2.8160976159435096e-12 - ArtUnc_23: 5.926044547378676e-14 - ArtUnc_24: -1.9827743594024963e-12 - ArtUnc_25: -2.8747873250231603e-13 - ArtUnc_26: 1.604025822026323e-13 - ArtUnc_27: 8.751908398158677e-12 - ArtUnc_28: -3.2430577908284667e-13 - ArtUnc_29: -6.553866975505245e-12 - ArtUnc_30: 2.568968732181833e-12 - ArtUnc_31: 1.0753638368186946e-12 - ArtUnc_32: 4.1544951068355053e-11 - ArtUnc_33: 1.7348281782282054e-15 - ArtUnc_34: -1.504056954162059e-12 - ArtUnc_35: 7.984848532177075e-13 - ArtUnc_36: -2.4281165361645328e-11 - ArtUnc_37: -4.7504459545822565e-11 - ArtUnc_38: -9.352170382311762e-12 - ArtUnc_39: -5.003011145125786e-11 - ArtUnc_40: -9.794687296308413e-13 - ArtUnc_41: -3.3840096663886415e-10 - ArtUnc_42: -9.145350862669522e-12 - ArtUnc_43: 5.444991103340965e-10 - ArtUnc_44: 2.164790135154207e-10 - ArtUnc_45: 5.036337926644948e-12 - ArtUnc_46: 7.572012011905827e-11 - ArtUnc_47: 1.3122931491819182e-11 - ArtUnc_48: 1.623502336058403e-12 - ArtUnc_49: -1.446386899261996e-09 - ArtUnc_50: -6.487919379622005e-11 - ArtUnc_51: -2.5640452705376276e-10 - ArtUnc_52: 1.9086491769857173e-11 - ArtUnc_53: 6.004925716784896e-11 - ArtUnc_54: -1.3528719568469096e-11 - ArtUnc_55: 1.1799485815549566e-08 - ArtUnc_56: -9.975340208778051e-09 - ArtUnc_57: -2.2521217812461434e-09 - ArtUnc_58: 2.8046997584408207e-08 - ArtUnc_59: 2.2103976595498915e-10 - ArtUnc_60: -3.3649817451945465e-08 - ArtUnc_61: -1.1740658032909334e-10 - ArtUnc_62: -2.4023398508546184e-09 - ArtUnc_63: 1.7391658748616523e-10 - ArtUnc_64: -8.892744340589307e-08 - ArtUnc_65: -4.7974890767403846e-09 - ArtUnc_66: -1.223645169680704e-07 - ArtUnc_67: 3.0406525795472946e-08 - ArtUnc_68: -6.8622035401585674e-09 - ArtUnc_69: 7.665774654291003e-09 - ArtUnc_70: -1.480625126632562e-07 - ArtUnc_71: -2.0979076256279665e-09 - ArtUnc_72: -5.12220960070288e-08 - ArtUnc_73: -1.3362480636346698e-10 - ArtUnc_74: -2.7175826221355415e-07 - ArtUnc_75: -4.951873092023613e-08 - ArtUnc_76: 3.1980767459502424e-09 - ArtUnc_77: 1.1602659070867372e-08 - ArtUnc_78: 2.0132775223614465e-07 - ArtUnc_79: -3.730666429976659e-07 - ArtUnc_80: 5.992296682740758e-09 - ArtUnc_81: -4.792623496430073e-09 - ArtUnc_82: 1.0624184782711253e-09 - ArtUnc_83: 9.610625844063604e-08 - ArtUnc_84: 1.269439672133434e-07 - ArtUnc_85: 6.457187616301165e-07 - ArtUnc_86: -2.931789992925559e-07 - ArtUnc_87: -3.93721173068405e-07 - ArtUnc_88: -1.8185695363265478e-07 - ArtUnc_89: 4.955158818554088e-08 - ArtUnc_90: -1.0973584506276621e-06 - ArtUnc_91: -6.700710340023026e-06 - ArtUnc_92: 4.1782353724122134e-08 - ArtUnc_93: 6.932943847533906e-08 - ArtUnc_94: 1.1183383282740128e-07 - ArtUnc_95: -2.9181645166768724e-06 - ArtUnc_96: -6.066089548558548e-07 + ArtUnc_1: 7.525551332810761e-19 + ArtUnc_2: 1.7011065060993183e-18 + ArtUnc_3: 2.2088374550225672e-17 + ArtUnc_4: 1.2241962774379785e-16 + ArtUnc_5: 4.140643639484835e-18 + ArtUnc_6: 1.838631669346577e-18 + ArtUnc_7: 4.662605559246975e-16 + ArtUnc_8: 3.6959069714146945e-15 + ArtUnc_9: 4.1228378670082187e-17 + ArtUnc_10: -1.6732250973069617e-14 + ArtUnc_11: 2.906247935746357e-14 + ArtUnc_12: 2.07354682755585e-15 + ArtUnc_13: 1.0956125714146772e-13 + ArtUnc_14: -7.645551038861831e-16 + ArtUnc_15: 4.445232595615555e-15 + ArtUnc_16: -2.675054665071818e-16 + ArtUnc_17: -6.686565834819298e-15 + ArtUnc_18: 1.8429779658553334e-16 + ArtUnc_19: 5.3093938955127536e-14 + ArtUnc_20: 1.6034412809324093e-13 + ArtUnc_21: -9.114499216275052e-15 + ArtUnc_22: 2.8160976159407595e-12 + ArtUnc_23: 5.926044542417139e-14 + ArtUnc_24: -1.9827743594159214e-12 + ArtUnc_25: -2.8747873249342066e-13 + ArtUnc_26: 1.6040258231256255e-13 + ArtUnc_27: 8.751908398152517e-12 + ArtUnc_28: 3.243057790862044e-13 + ArtUnc_29: 6.553866976012681e-12 + ArtUnc_30: 2.568968732178255e-12 + ArtUnc_31: -1.0753638369503453e-12 + ArtUnc_32: 4.1544951068356036e-11 + ArtUnc_33: -1.7348277059421816e-15 + ArtUnc_34: -1.5040569541908268e-12 + ArtUnc_35: -7.984848532209664e-13 + ArtUnc_36: 2.4281165361617614e-11 + ArtUnc_37: -4.750445954573314e-11 + ArtUnc_38: 9.352170382692404e-12 + ArtUnc_39: 5.0030111451300346e-11 + ArtUnc_40: -9.794687305802967e-13 + ArtUnc_41: -3.384009666384961e-10 + ArtUnc_42: 9.145350864578396e-12 + ArtUnc_43: 5.444991103342456e-10 + ArtUnc_44: 2.164790135155239e-10 + ArtUnc_45: -5.036337921055136e-12 + ArtUnc_46: 7.572012011880331e-11 + ArtUnc_47: 1.3122931491457895e-11 + ArtUnc_48: -1.6235023239829938e-12 + ArtUnc_49: 1.4463868992619182e-09 + ArtUnc_50: 6.487919379608554e-11 + ArtUnc_51: 2.564045270519593e-10 + ArtUnc_52: -1.9086491770607894e-11 + ArtUnc_53: -6.004925716718752e-11 + ArtUnc_54: 1.3528719560799027e-11 + ArtUnc_55: 1.1799485815545221e-08 + ArtUnc_56: -9.975340208781463e-09 + ArtUnc_57: -2.2521217812471348e-09 + ArtUnc_58: 2.804699758441273e-08 + ArtUnc_59: 2.2103976595410218e-10 + ArtUnc_60: 3.3649817451941395e-08 + ArtUnc_61: 1.1740658032824714e-10 + ArtUnc_62: -2.402339850854667e-09 + ArtUnc_63: 1.7391658748525373e-10 + ArtUnc_64: 8.89274434058841e-08 + ArtUnc_65: -4.7974890767402026e-09 + ArtUnc_66: 1.22364516968084e-07 + ArtUnc_67: 3.040652579547578e-08 + ArtUnc_68: -6.862203540163716e-09 + ArtUnc_69: -7.665774654289796e-09 + ArtUnc_70: 1.480625126632594e-07 + ArtUnc_71: 2.0979076256282548e-09 + ArtUnc_72: 5.122209600702832e-08 + ArtUnc_73: 1.3362480636831328e-10 + ArtUnc_74: 2.717582622135473e-07 + ArtUnc_75: -4.951873092024478e-08 + ArtUnc_76: 3.198076745946251e-09 + ArtUnc_77: 1.1602659070872547e-08 + ArtUnc_78: 2.0132775223619658e-07 + ArtUnc_79: -3.7306664299767404e-07 + ArtUnc_80: 5.992296682747596e-09 + ArtUnc_81: -4.792623496419435e-09 + ArtUnc_82: -1.0624184782695466e-09 + ArtUnc_83: 9.610625844064377e-08 + ArtUnc_84: -1.2694396721333717e-07 + ArtUnc_85: -6.457187616301097e-07 + ArtUnc_86: -2.9317899929255475e-07 + ArtUnc_87: -3.9372117306839423e-07 + ArtUnc_88: 4.955158818554302e-08 + ArtUnc_89: 1.8185695363269428e-07 + ArtUnc_90: 1.097358450627666e-06 + ArtUnc_91: -6.7007103400230265e-06 + ArtUnc_92: -4.1782353724083415e-08 + ArtUnc_93: 6.93294384753824e-08 + ArtUnc_94: 1.1183383282743e-07 + ArtUnc_95: -2.9181645166768758e-06 + ArtUnc_96: -6.066089548558399e-07 - stat: 0 Uncorr: 0.00188 RCES: 0.004991603574003048 @@ -4455,102 +4455,102 @@ bins: ModelRW_2: 0.0011565438513087172 JES_1: 0.0009012977643376245 JES_2: 0.0009012977643376245 - ArtUnc_1: -5.184077554804865e-09 - ArtUnc_2: 1.1677814854411717e-06 - ArtUnc_3: 6.484945269316032e-06 - ArtUnc_4: 2.9607766166695188e-05 - ArtUnc_5: 1.0260097645233027e-06 - ArtUnc_6: 2.6625129317257976e-07 - ArtUnc_7: 0.00019243537417088768 - ArtUnc_8: -0.0010127354200840373 - ArtUnc_9: 1.8484503325495992e-05 - ArtUnc_10: 0.0004836711327518179 - ArtUnc_11: -0.001000349484245882 - ArtUnc_12: 8.105091416691032e-05 - ArtUnc_13: 0.001560303726292502 - ArtUnc_14: -1.312468346417106e-05 - ArtUnc_15: -2.2591533427099566e-06 - ArtUnc_16: 5.81782659962372e-07 - ArtUnc_17: -1.1337540775552543e-06 - ArtUnc_18: -2.9870296863938236e-09 - ArtUnc_19: 4.885827276898902e-06 - ArtUnc_20: 5.46036666714075e-06 - ArtUnc_21: -1.9999995328936353e-07 - ArtUnc_22: 1.1276225478014803e-05 - ArtUnc_23: 2.415068877154063e-07 - ArtUnc_24: -1.869934832142698e-05 - ArtUnc_25: -8.703721396487764e-06 - ArtUnc_26: -5.289837150205136e-07 - ArtUnc_27: 2.0927443056242083e-05 - ArtUnc_28: -1.1909023961736666e-06 - ArtUnc_29: 1.376509661271128e-07 - ArtUnc_30: 2.3200362872257244e-06 - ArtUnc_31: 9.390934551417529e-07 - ArtUnc_32: 5.2604449124956104e-05 - ArtUnc_33: 2.0294766714359843e-08 - ArtUnc_34: 6.195759482584393e-07 - ArtUnc_35: -9.550353952130715e-07 - ArtUnc_36: -3.7298417895135e-08 - ArtUnc_37: -8.018721329022145e-07 - ArtUnc_38: -1.3985486051413725e-07 - ArtUnc_39: 6.047222284831873e-07 - ArtUnc_40: -2.4299704067399724e-09 - ArtUnc_41: 1.4240506631795575e-07 - ArtUnc_42: -1.763199430666483e-09 - ArtUnc_43: -3.8265962551439144e-07 - ArtUnc_44: 5.247038576006091e-07 - ArtUnc_45: 2.189129079036999e-09 - ArtUnc_46: -1.4438072463173603e-08 - ArtUnc_47: 1.3171349073521783e-08 - ArtUnc_48: 2.791115764211058e-10 - ArtUnc_49: 1.2825201759836086e-06 - ArtUnc_50: 3.9512167365672865e-08 - ArtUnc_51: -4.224301304456276e-09 - ArtUnc_52: -6.7536858555796595e-09 - ArtUnc_53: 1.0953565605416257e-09 - ArtUnc_54: -5.617115275140115e-10 - ArtUnc_55: -1.7820274368217247e-08 - ArtUnc_56: -1.2209974055510865e-09 - ArtUnc_57: -4.019287354504049e-10 - ArtUnc_58: -4.213685453428e-09 - ArtUnc_59: 1.2091701534008238e-10 - ArtUnc_60: 8.476923147506623e-09 - ArtUnc_61: -2.7460661767762e-11 - ArtUnc_62: -2.3627119172180134e-10 - ArtUnc_63: 1.983654630674247e-11 - ArtUnc_64: 6.46630459178119e-08 - ArtUnc_65: 1.1144518540054536e-09 - ArtUnc_66: -4.5764880710363666e-08 - ArtUnc_67: 5.587580325254852e-10 - ArtUnc_68: -6.110199357285555e-10 - ArtUnc_69: 1.7776037748952677e-11 - ArtUnc_70: -2.1053104483385263e-10 - ArtUnc_71: -2.036025074802014e-12 - ArtUnc_72: -5.932777335713809e-10 - ArtUnc_73: -4.280016881337702e-11 - ArtUnc_74: -8.42143694808457e-11 - ArtUnc_75: -9.046981473561906e-10 - ArtUnc_76: -8.71138686602466e-12 - ArtUnc_77: -8.7834967448671e-12 - ArtUnc_78: 1.1157174486689162e-09 - ArtUnc_79: -6.647586284952316e-10 - ArtUnc_80: 2.5056554750085015e-12 - ArtUnc_81: 2.9053533657375577e-11 - ArtUnc_82: 1.614311342765625e-12 - ArtUnc_83: -1.379289251603314e-11 - ArtUnc_84: -2.5599498846856188e-11 - ArtUnc_85: 4.113652347930657e-13 - ArtUnc_86: 3.0054805505082303e-12 - ArtUnc_87: 3.627340632113543e-12 - ArtUnc_88: 1.9168249548639103e-11 - ArtUnc_89: -2.8013289475795883e-12 - ArtUnc_90: 1.7317335682249135e-11 - ArtUnc_91: -2.0340718509919114e-12 - ArtUnc_92: -7.107882979359801e-11 - ArtUnc_93: -1.9824035580746016e-12 - ArtUnc_94: -8.498361675632156e-13 - ArtUnc_95: 3.0305793135592135e-11 - ArtUnc_96: 4.905247241945592e-12 + ArtUnc_1: -5.184077555533741e-09 + ArtUnc_2: 1.1677814854411006e-06 + ArtUnc_3: 6.484945269315138e-06 + ArtUnc_4: 2.9607766166695967e-05 + ArtUnc_5: 1.026009764528549e-06 + ArtUnc_6: 2.662512931754971e-07 + ArtUnc_7: 0.00019243537417088093 + ArtUnc_8: -0.0010127354200840388 + ArtUnc_9: 1.8484503325499536e-05 + ArtUnc_10: 0.00048367113275177076 + ArtUnc_11: -0.0010003494842459083 + ArtUnc_12: -8.105091416697253e-05 + ArtUnc_13: -0.001560303726292504 + ArtUnc_14: -1.3124683464170857e-05 + ArtUnc_15: -2.2591533427100417e-06 + ArtUnc_16: 5.817826599619027e-07 + ArtUnc_17: -1.1337540775553265e-06 + ArtUnc_18: 2.987029686372386e-09 + ArtUnc_19: -4.885827276898941e-06 + ArtUnc_20: 5.46036666714073e-06 + ArtUnc_21: -1.9999995328938429e-07 + ArtUnc_22: 1.127622547801492e-05 + ArtUnc_23: 2.4150688771514286e-07 + ArtUnc_24: -1.8699348321426944e-05 + ArtUnc_25: -8.703721396487673e-06 + ArtUnc_26: -5.289837150206431e-07 + ArtUnc_27: 2.092744305624243e-05 + ArtUnc_28: 1.1909023961737446e-06 + ArtUnc_29: -1.376509661274837e-07 + ArtUnc_30: 2.320036287223341e-06 + ArtUnc_31: -9.390934551493554e-07 + ArtUnc_32: 5.260444912495629e-05 + ArtUnc_33: -2.0294766714438776e-08 + ArtUnc_34: 6.195759482581024e-07 + ArtUnc_35: 9.550353952130143e-07 + ArtUnc_36: 3.729841789513544e-08 + ArtUnc_37: -8.01872132902217e-07 + ArtUnc_38: 1.3985486051409333e-07 + ArtUnc_39: -6.047222284831918e-07 + ArtUnc_40: -2.4299704067528574e-09 + ArtUnc_41: 1.4240506631795265e-07 + ArtUnc_42: 1.7631994306664332e-09 + ArtUnc_43: -3.8265962551438614e-07 + ArtUnc_44: 5.247038576006126e-07 + ArtUnc_45: -2.189129079051947e-09 + ArtUnc_46: -1.44380724631698e-08 + ArtUnc_47: 1.3171349073524332e-08 + ArtUnc_48: -2.7911157642128274e-10 + ArtUnc_49: -1.2825201759836507e-06 + ArtUnc_50: -3.951216736568954e-08 + ArtUnc_51: 4.224301304456062e-09 + ArtUnc_52: 6.753685855579711e-09 + ArtUnc_53: -1.0953565605415092e-09 + ArtUnc_54: 5.61711527514032e-10 + ArtUnc_55: -1.782027436821851e-08 + ArtUnc_56: -1.2209974055510724e-09 + ArtUnc_57: -4.019287354508974e-10 + ArtUnc_58: -4.213685453428593e-09 + ArtUnc_59: 1.2091701533994065e-10 + ArtUnc_60: -8.476923147507564e-09 + ArtUnc_61: 2.7460661768004776e-11 + ArtUnc_62: -2.362711917216108e-10 + ArtUnc_63: 1.9836546306819357e-11 + ArtUnc_64: -6.466304591781763e-08 + ArtUnc_65: 1.114451854006085e-09 + ArtUnc_66: 4.576488071035876e-08 + ArtUnc_67: 5.587580325253636e-10 + ArtUnc_68: -6.110199357284909e-10 + ArtUnc_69: -1.7776037748956474e-11 + ArtUnc_70: 2.105310448338427e-10 + ArtUnc_71: 2.036025074802777e-12 + ArtUnc_72: 5.932777335713569e-10 + ArtUnc_73: 4.2800168813375514e-11 + ArtUnc_74: 8.421436948084789e-11 + ArtUnc_75: -9.046981473561437e-10 + ArtUnc_76: -8.711386866030128e-12 + ArtUnc_77: -8.783496744864512e-12 + ArtUnc_78: 1.1157174486688844e-09 + ArtUnc_79: -6.647586284951538e-10 + ArtUnc_80: 2.5056554750015145e-12 + ArtUnc_81: 2.9053533657378786e-11 + ArtUnc_82: -1.6143113427655448e-12 + ArtUnc_83: -1.3792892516033813e-11 + ArtUnc_84: 2.55994988468569e-11 + ArtUnc_85: -4.1136523479301395e-13 + ArtUnc_86: 3.0054805505082905e-12 + ArtUnc_87: 3.6273406321135882e-12 + ArtUnc_88: -2.8013289475797947e-12 + ArtUnc_89: -1.9168249548640208e-11 + ArtUnc_90: -1.7317335682249917e-11 + ArtUnc_91: -2.0340718509920277e-12 + ArtUnc_92: 7.107882979360044e-11 + ArtUnc_93: -1.982403558075022e-12 + ArtUnc_94: -8.498361675632596e-13 + ArtUnc_95: 3.0305793135593906e-11 + ArtUnc_96: 4.905247241945646e-12 - stat: 0 Uncorr: 0.00095 RCES: 0.0032624859003526742 @@ -4566,102 +4566,102 @@ bins: ModelRW_2: 0.003506542527904089 JES_1: 0.003920317186625338 JES_2: 0.003920317186625338 - ArtUnc_1: 9.75354752026044e-11 - ArtUnc_2: -6.2273727859760864e-09 - ArtUnc_3: 1.7087591791453076e-08 - ArtUnc_4: 4.3191107089871855e-07 - ArtUnc_5: 1.5544336954288856e-08 - ArtUnc_6: 7.296344356718899e-09 - ArtUnc_7: 6.546000347583141e-06 - ArtUnc_8: -5.724476102832814e-05 - ArtUnc_9: 1.186505533191221e-06 - ArtUnc_10: 4.336442172325017e-05 - ArtUnc_11: -8.826179700580657e-05 - ArtUnc_12: 7.203021247224612e-06 - ArtUnc_13: 0.00015235000980224025 - ArtUnc_14: -4.796339927818345e-07 - ArtUnc_15: -1.0309022261121592e-06 - ArtUnc_16: 9.391591905535796e-08 - ArtUnc_17: 5.1417193078837926e-06 - ArtUnc_18: 1.678842609126929e-07 - ArtUnc_19: 1.2964071120157593e-05 - ArtUnc_20: -3.0078776123107486e-05 - ArtUnc_21: 1.4925297085899568e-06 - ArtUnc_22: -0.0002355474459410796 - ArtUnc_23: -3.6760785509666088e-06 - ArtUnc_24: 0.0001026755887035469 - ArtUnc_25: 6.497741781848203e-05 - ArtUnc_26: -1.8235778533687866e-05 - ArtUnc_27: -0.000324237010333689 - ArtUnc_28: 1.4688165452172505e-05 - ArtUnc_29: 0.00015227934141965964 - ArtUnc_30: -5.982084023959652e-05 - ArtUnc_31: -2.4570653641737887e-05 - ArtUnc_32: -0.0005046502186004556 - ArtUnc_33: -1.7699603926284625e-07 - ArtUnc_34: -4.9246920619964135e-06 - ArtUnc_35: 7.714627557624803e-06 - ArtUnc_36: 2.239252880549989e-07 - ArtUnc_37: 6.411402027397142e-06 - ArtUnc_38: 1.1162652040399548e-06 - ArtUnc_39: 1.1430952119947786e-06 - ArtUnc_40: -6.74883846534561e-08 - ArtUnc_41: -2.3494255885953138e-06 - ArtUnc_42: 3.5551468648716967e-08 - ArtUnc_43: 4.703836380515397e-06 + ArtUnc_1: 9.753547439539828e-11 + ArtUnc_2: -6.227372784156302e-09 + ArtUnc_3: 1.708759179124174e-08 + ArtUnc_4: 4.319110708990544e-07 + ArtUnc_5: 1.55443369537763e-08 + ArtUnc_6: 7.296344354538225e-09 + ArtUnc_7: 6.5460003475791674e-06 + ArtUnc_8: -5.7244761028330045e-05 + ArtUnc_9: 1.186505533190126e-06 + ArtUnc_10: 4.336442172324861e-05 + ArtUnc_11: -8.82617970058097e-05 + ArtUnc_12: -7.2030212472301245e-06 + ArtUnc_13: -0.00015235000980223684 + ArtUnc_14: -4.796339927814513e-07 + ArtUnc_15: -1.0309022261121442e-06 + ArtUnc_16: 9.39159190546805e-08 + ArtUnc_17: 5.141719307884341e-06 + ArtUnc_18: -1.6788426091245276e-07 + ArtUnc_19: -1.2964071120157313e-05 + ArtUnc_20: -3.0078776123106327e-05 + ArtUnc_21: 1.492529708589883e-06 + ArtUnc_22: -0.00023554744594108016 + ArtUnc_23: -3.676078550964621e-06 + ArtUnc_24: 0.00010267558870354524 + ArtUnc_25: 6.497741781847948e-05 + ArtUnc_26: -1.8235778533686426e-05 + ArtUnc_27: -0.00032423701033369213 + ArtUnc_28: -1.4688165452177336e-05 + ArtUnc_29: -0.0001522793414196557 + ArtUnc_30: -5.9820840239537066e-05 + ArtUnc_31: 2.457065364193579e-05 + ArtUnc_32: -0.000504650218600457 + ArtUnc_33: 1.7699603926293156e-07 + ArtUnc_34: -4.924692061993343e-06 + ArtUnc_35: -7.714627557624232e-06 + ArtUnc_36: -2.2392528805489359e-07 + ArtUnc_37: 6.411402027397098e-06 + ArtUnc_38: -1.1162652040395937e-06 + ArtUnc_39: -1.1430952119947765e-06 + ArtUnc_40: -6.748838465346753e-08 + ArtUnc_41: -2.3494255885952587e-06 + ArtUnc_42: -3.555146864871654e-08 + ArtUnc_43: 4.703836380515194e-06 ArtUnc_44: -1.0566857235536604e-05 - ArtUnc_45: -4.4945124539154526e-08 - ArtUnc_46: -2.4857258556842753e-08 - ArtUnc_47: -1.6350369399768692e-07 - ArtUnc_48: -1.0292275806382017e-08 - ArtUnc_49: -1.4375919532155716e-05 - ArtUnc_50: -4.5840583908422396e-07 - ArtUnc_51: 2.5943913798835746e-08 - ArtUnc_52: 3.02608715287162e-08 - ArtUnc_53: -5.632813063283787e-09 - ArtUnc_54: 3.4802714012216528e-09 - ArtUnc_55: 1.3420913257162435e-07 - ArtUnc_56: -1.9194512317746415e-08 - ArtUnc_57: -4.460334623166559e-09 - ArtUnc_58: 1.857298792904718e-07 - ArtUnc_59: -1.5232168649288685e-09 - ArtUnc_60: -2.4123029218965524e-08 - ArtUnc_61: 1.7882848468395116e-10 - ArtUnc_62: 1.7966622080950064e-09 - ArtUnc_63: -1.571494213326034e-10 - ArtUnc_64: -6.671627784510943e-07 - ArtUnc_65: -1.0251897553522388e-08 - ArtUnc_66: 4.632156231862757e-07 - ArtUnc_67: -6.16158835415434e-09 - ArtUnc_68: 6.201726802225472e-09 - ArtUnc_69: -2.1346750028951346e-10 - ArtUnc_70: 2.4861479308311137e-09 - ArtUnc_71: 2.787441481270428e-11 - ArtUnc_72: 7.099604145631209e-09 - ArtUnc_73: 5.686130851729391e-10 - ArtUnc_74: 1.429200388025044e-09 - ArtUnc_75: 1.0248505960158253e-08 - ArtUnc_76: 1.0475918137978693e-10 - ArtUnc_77: 5.6777043837773735e-11 - ArtUnc_78: -1.2579885201608976e-08 - ArtUnc_79: 7.794043392190016e-09 - ArtUnc_80: -7.579711414809432e-11 - ArtUnc_81: -3.4308525311691373e-10 - ArtUnc_82: -1.7751170490890264e-11 - ArtUnc_83: 1.675001844948625e-10 - ArtUnc_84: 3.033136767964866e-10 - ArtUnc_85: -4.200393841862105e-12 - ArtUnc_86: -2.7784398976117046e-11 - ArtUnc_87: -3.283629617375814e-11 - ArtUnc_88: -2.877883598046446e-10 - ArtUnc_89: 3.125116211258946e-11 - ArtUnc_90: -1.5366438817765233e-10 - ArtUnc_91: 1.518307637548374e-11 - ArtUnc_92: 7.963922779568119e-10 - ArtUnc_93: 1.854010673838889e-11 - ArtUnc_94: 1.30934162861907e-11 - ArtUnc_95: -3.159639964275127e-10 - ArtUnc_96: -5.187217158734205e-11 + ArtUnc_45: 4.4945124539397075e-08 + ArtUnc_46: -2.4857258556887034e-08 + ArtUnc_47: -1.6350369399770955e-07 + ArtUnc_48: 1.0292275806389106e-08 + ArtUnc_49: 1.4375919532156121e-05 + ArtUnc_50: 4.584058390843983e-07 + ArtUnc_51: -2.5943913798833367e-08 + ArtUnc_52: -3.026087152871613e-08 + ArtUnc_53: 5.632813063282722e-09 + ArtUnc_54: -3.4802714012223778e-09 + ArtUnc_55: 1.3420913257163547e-07 + ArtUnc_56: -1.919451231774332e-08 + ArtUnc_57: -4.460334623172426e-09 + ArtUnc_58: 1.8572987929047742e-07 + ArtUnc_59: -1.5232168649282663e-09 + ArtUnc_60: 2.412302921897371e-08 + ArtUnc_61: -1.7882848468633827e-10 + ArtUnc_62: 1.7966622080932891e-09 + ArtUnc_63: -1.5714942133352477e-10 + ArtUnc_64: 6.671627784511517e-07 + ArtUnc_65: -1.025189755352918e-08 + ArtUnc_66: -4.632156231862248e-07 + ArtUnc_67: -6.161588354153124e-09 + ArtUnc_68: 6.201726802224839e-09 + ArtUnc_69: 2.1346750028956372e-10 + ArtUnc_70: -2.4861479308310165e-09 + ArtUnc_71: -2.787441481271272e-11 + ArtUnc_72: -7.099604145631049e-09 + ArtUnc_73: -5.6861308517293e-10 + ArtUnc_74: -1.4292003880250983e-09 + ArtUnc_75: 1.0248505960157929e-08 + ArtUnc_76: 1.0475918137984441e-10 + ArtUnc_77: 5.677704383775364e-11 + ArtUnc_78: -1.2579885201608965e-08 + ArtUnc_79: 7.794043392189298e-09 + ArtUnc_80: -7.579711414801293e-11 + ArtUnc_81: -3.430852531169544e-10 + ArtUnc_82: 1.775117049089012e-11 + ArtUnc_83: 1.675001844948761e-10 + ArtUnc_84: -3.033136767965014e-10 + ArtUnc_85: 4.20039384186154e-12 + ArtUnc_86: -2.7784398976116623e-11 + ArtUnc_87: -3.283629617375756e-11 + ArtUnc_88: 3.125116211259143e-11 + ArtUnc_89: 2.877883598046601e-10 + ArtUnc_90: 1.536643881776656e-10 + ArtUnc_91: 1.5183076375485108e-11 + ArtUnc_92: -7.963922779568559e-10 + ArtUnc_93: 1.8540106738393557e-11 + ArtUnc_94: 1.3093416286191433e-11 + ArtUnc_95: -3.1596399642754e-10 + ArtUnc_96: -5.1872171587344076e-11 - stat: 0 Uncorr: 0.000289 RCES: 0.00037318786083553147 @@ -4677,102 +4677,102 @@ bins: ModelRW_2: 0.0005967132705077037 JES_1: 0.0006560236343303494 JES_2: 0.0006560236343303494 - ArtUnc_1: 7.051224218170511e-11 - ArtUnc_2: -1.3977675181281722e-08 - ArtUnc_3: -7.119561085980849e-08 - ArtUnc_4: -2.8058198438085766e-07 - ArtUnc_5: -9.592216421389346e-09 - ArtUnc_6: -2.0297899814471796e-09 - ArtUnc_7: -1.347255652054934e-06 - ArtUnc_8: 4.150934493663707e-06 - ArtUnc_9: -5.952842188880549e-08 - ArtUnc_10: 5.4380103949999256e-08 - ArtUnc_11: 7.059796883563438e-08 - ArtUnc_12: -9.139260861121792e-09 - ArtUnc_13: 1.2790170539615172e-06 - ArtUnc_14: 2.561740834704523e-08 - ArtUnc_15: -1.9841482617862814e-08 - ArtUnc_16: 1.619807352846073e-10 - ArtUnc_17: 2.3983235953591063e-07 - ArtUnc_18: 7.139715680012391e-09 - ArtUnc_19: 7.286802604848566e-07 - ArtUnc_20: -1.5345833041427986e-06 - ArtUnc_21: 9.112349277439667e-08 - ArtUnc_22: -1.309874406162031e-05 - ArtUnc_23: -2.366435465708012e-07 - ArtUnc_24: 5.656671937789394e-06 - ArtUnc_25: 7.335671792195618e-06 - ArtUnc_26: -1.4577249046429854e-06 - ArtUnc_27: -2.234281373099328e-05 - ArtUnc_28: 9.327416416809586e-07 - ArtUnc_29: 3.571113044835011e-06 - ArtUnc_30: -2.329824213958802e-06 - ArtUnc_31: -9.539461832915348e-07 - ArtUnc_32: -3.3654680854993295e-05 - ArtUnc_33: -1.0814802951169263e-08 - ArtUnc_34: 5.098518791696569e-07 - ArtUnc_35: -7.814559505920847e-07 - ArtUnc_36: 6.4424889366370495e-06 - ArtUnc_37: 1.9979813786579762e-05 - ArtUnc_38: 3.5595772793985083e-06 - ArtUnc_39: 2.0489934740514856e-05 - ArtUnc_40: 3.02489581171129e-08 - ArtUnc_41: 6.089728888448017e-05 - ArtUnc_42: 3.7802166670696874e-07 - ArtUnc_43: -8.955261597294889e-05 - ArtUnc_44: -4.8024390229445945e-05 - ArtUnc_45: -6.22209842054908e-07 - ArtUnc_46: -1.3687951532626222e-05 - ArtUnc_47: 9.264014209200441e-07 - ArtUnc_48: -1.60940431640056e-08 - ArtUnc_49: 0.00017973388342818194 - ArtUnc_50: 4.459666900135036e-06 - ArtUnc_51: -2.0380504375675267e-07 - ArtUnc_52: 1.0862800138358524e-07 - ArtUnc_53: -3.971425587637444e-09 - ArtUnc_54: -2.9663603746897475e-09 - ArtUnc_55: -1.8811433941313633e-06 - ArtUnc_56: -1.9456883465458955e-06 - ArtUnc_57: -5.713827041414732e-07 - ArtUnc_58: -2.6674338272983187e-06 - ArtUnc_59: 3.8161231902574834e-08 - ArtUnc_60: -2.6960411564784744e-06 - ArtUnc_61: -2.2069932666303474e-09 - ArtUnc_62: 3.133504537482695e-08 - ArtUnc_63: -3.6382703959762624e-09 - ArtUnc_64: 5.3039856593629825e-06 - ArtUnc_65: 3.295262320677758e-08 - ArtUnc_66: -6.5141943706438e-06 - ArtUnc_67: 1.2249385484021418e-07 - ArtUnc_68: -6.042472036353696e-08 - ArtUnc_69: 2.5250031773642886e-09 - ArtUnc_70: -1.6964903821870466e-08 - ArtUnc_71: 4.213129200918381e-11 - ArtUnc_72: -1.0434560435131835e-09 - ArtUnc_73: -2.2988054108962423e-10 - ArtUnc_74: 4.0295819332110446e-08 - ArtUnc_75: 1.1695826127319187e-08 - ArtUnc_76: -1.1125737214142425e-09 - ArtUnc_77: -9.908908004052798e-10 - ArtUnc_78: 2.15663383962382e-07 - ArtUnc_79: 7.525356436863188e-08 - ArtUnc_80: -5.458073635483631e-10 - ArtUnc_81: 6.330795480690561e-09 - ArtUnc_82: -2.2198364046810994e-10 - ArtUnc_83: -1.484624633027967e-09 - ArtUnc_84: -1.368357657876776e-10 - ArtUnc_85: -2.5794689719642245e-10 - ArtUnc_86: 7.61121894871189e-11 - ArtUnc_87: 3.4903456058672834e-11 - ArtUnc_88: -1.7002038126260137e-09 - ArtUnc_89: -7.883110106207349e-11 - ArtUnc_90: 1.183009035226033e-09 - ArtUnc_91: 6.70014151095372e-10 - ArtUnc_92: -1.7580036048981999e-09 - ArtUnc_93: -4.661069203930548e-11 - ArtUnc_94: -5.5651946891794884e-11 - ArtUnc_95: -2.1446402629040687e-10 - ArtUnc_96: -5.192669359744669e-11 + ArtUnc_1: 7.051224216026941e-11 + ArtUnc_2: -1.3977675181295216e-08 + ArtUnc_3: -7.119561085981802e-08 + ArtUnc_4: -2.8058198438083383e-07 + ArtUnc_5: -9.59221642205358e-09 + ArtUnc_6: -2.02978998101931e-09 + ArtUnc_7: -1.3472556520548992e-06 + ArtUnc_8: 4.150934493663712e-06 + ArtUnc_9: -5.952842188927762e-08 + ArtUnc_10: 5.438010394919081e-08 + ArtUnc_11: 7.05979688352413e-08 + ArtUnc_12: 9.139260861476654e-09 + ArtUnc_13: -1.2790170539615633e-06 + ArtUnc_14: 2.5617408347870514e-08 + ArtUnc_15: -1.9841482618095413e-08 + ArtUnc_16: 1.6198073526381094e-10 + ArtUnc_17: 2.3983235953556213e-07 + ArtUnc_18: -7.139715679976194e-09 + ArtUnc_19: -7.286802604846646e-07 + ArtUnc_20: -1.534583304142478e-06 + ArtUnc_21: 9.112349277463271e-08 + ArtUnc_22: -1.3098744061619803e-05 + ArtUnc_23: -2.3664354657076953e-07 + ArtUnc_24: 5.656671937789673e-06 + ArtUnc_25: 7.335671792195338e-06 + ArtUnc_26: -1.4577249046427076e-06 + ArtUnc_27: -2.2342813730992484e-05 + ArtUnc_28: -9.32741641681257e-07 + ArtUnc_29: -3.5711130448348982e-06 + ArtUnc_30: -2.3298242139567014e-06 + ArtUnc_31: 9.539461832991869e-07 + ArtUnc_32: -3.365468085499373e-05 + ArtUnc_33: 1.0814802950801851e-08 + ArtUnc_34: 5.098518791699796e-07 + ArtUnc_35: 7.814559505928643e-07 + ArtUnc_36: -6.442488936637111e-06 + ArtUnc_37: 1.9979813786580084e-05 + ArtUnc_38: -3.559577279397605e-06 + ArtUnc_39: -2.0489934740514652e-05 + ArtUnc_40: 3.024895811611956e-08 + ArtUnc_41: 6.08972888844798e-05 + ArtUnc_42: -3.780216667070498e-07 + ArtUnc_43: -8.955261597295062e-05 + ArtUnc_44: -4.8024390229445863e-05 + ArtUnc_45: 6.222098420543644e-07 + ArtUnc_46: -1.368795153262544e-05 + ArtUnc_47: 9.264014209204773e-07 + ArtUnc_48: 1.6094043163831705e-08 + ArtUnc_49: -0.00017973388342818443 + ArtUnc_50: -4.459666900137267e-06 + ArtUnc_51: 2.038050437567206e-07 + ArtUnc_52: -1.0862800138360604e-07 + ArtUnc_53: 3.9714255876467446e-09 + ArtUnc_54: 2.966360374701162e-09 + ArtUnc_55: -1.8811433941314635e-06 + ArtUnc_56: -1.9456883465457418e-06 + ArtUnc_57: -5.713827041420243e-07 + ArtUnc_58: -2.6674338272983496e-06 + ArtUnc_59: 3.8161231902587136e-08 + ArtUnc_60: 2.6960411564784075e-06 + ArtUnc_61: 2.2069932666540668e-09 + ArtUnc_62: 3.1335045374841156e-08 + ArtUnc_63: -3.6382703959669343e-09 + ArtUnc_64: -5.303985659363463e-06 + ArtUnc_65: 3.295262320683488e-08 + ArtUnc_66: 6.51419437064317e-06 + ArtUnc_67: 1.224938548401954e-07 + ArtUnc_68: -6.0424720363524e-08 + ArtUnc_69: -2.525003177364441e-09 + ArtUnc_70: 1.6964903821867333e-08 + ArtUnc_71: -4.213129200925123e-11 + ArtUnc_72: 1.0434560435049898e-09 + ArtUnc_73: 2.2988054108867716e-10 + ArtUnc_74: -4.029581933211132e-08 + ArtUnc_75: 1.1695826127329766e-08 + ArtUnc_76: -1.1125737214139704e-09 + ArtUnc_77: -9.908908004047555e-10 + ArtUnc_78: 2.1566338396236692e-07 + ArtUnc_79: 7.525356436864798e-08 + ArtUnc_80: -5.458073635477984e-10 + ArtUnc_81: 6.330795480691271e-09 + ArtUnc_82: 2.219836404681475e-10 + ArtUnc_83: -1.4846246330279971e-09 + ArtUnc_84: 1.368357657876286e-10 + ArtUnc_85: 2.579468971964336e-10 + ArtUnc_86: 7.611218948708382e-11 + ArtUnc_87: 3.4903456058610976e-11 + ArtUnc_88: -7.88311010620826e-11 + ArtUnc_89: 1.7002038126260505e-09 + ArtUnc_90: -1.1830090352260171e-09 + ArtUnc_91: 6.700141510953795e-10 + ArtUnc_92: 1.7580036048980386e-09 + ArtUnc_93: -4.661069203930877e-11 + ArtUnc_94: -5.5651946891796474e-11 + ArtUnc_95: -2.1446402629044331e-10 + ArtUnc_96: -5.1926693597453337e-11 - stat: 0 Uncorr: 6.12e-05 RCES: 7.254910885738018e-05 @@ -4788,102 +4788,102 @@ bins: ModelRW_2: 0.00020252669584032613 JES_1: 0.0001613151202832518 JES_2: 0.0001613151202832518 - ArtUnc_1: 5.028194037011682e-14 - ArtUnc_2: -7.930923863452117e-12 - ArtUnc_3: -3.500863412875774e-11 - ArtUnc_4: -9.003481958413572e-11 - ArtUnc_5: -3.1431617563460395e-12 - ArtUnc_6: -2.6228551187093957e-13 - ArtUnc_7: 2.4988272275389347e-10 - ArtUnc_8: -7.095544583118769e-09 - ArtUnc_9: 1.7262562013246882e-10 - ArtUnc_10: 9.466624384995902e-09 - ArtUnc_11: -1.8797889805441954e-08 - ArtUnc_12: 1.5481587852640913e-09 - ArtUnc_13: 4.131411529644207e-08 - ArtUnc_14: 1.2381720441638352e-10 - ArtUnc_15: -5.996467589129313e-10 - ArtUnc_16: 4.239274459555293e-11 - ArtUnc_17: 3.8003228588328964e-09 - ArtUnc_18: 1.1617569595827475e-10 - ArtUnc_19: 9.204297352629586e-09 - ArtUnc_20: -3.2952159006435125e-08 - ArtUnc_21: 1.706019035926824e-09 - ArtUnc_22: -3.1590324005269335e-07 - ArtUnc_23: -6.308935847157541e-09 - ArtUnc_24: 1.7278494489381813e-07 - ArtUnc_25: 1.387547211393275e-07 - ArtUnc_26: -2.9595791064755926e-08 - ArtUnc_27: -6.592875651505977e-07 - ArtUnc_28: 2.498500597107091e-08 - ArtUnc_29: 3.1242140113624735e-07 - ArtUnc_30: -1.2830119955878174e-07 - ArtUnc_31: -5.325623570391923e-08 - ArtUnc_32: -1.557857961817653e-06 - ArtUnc_33: -1.8667160575862471e-10 - ArtUnc_34: 3.4328292949324215e-08 - ArtUnc_35: -1.5603640778704735e-08 - ArtUnc_36: 3.414412333334038e-07 - ArtUnc_37: 6.324378226229919e-07 - ArtUnc_38: 1.1310962710340537e-07 - ArtUnc_39: 5.436061122555622e-07 - ArtUnc_40: 9.940743205069577e-09 - ArtUnc_41: 2.723372214838286e-06 - ArtUnc_42: -3.5212973381854846e-09 - ArtUnc_43: -3.2286787244512606e-06 - ArtUnc_44: -1.137559147814426e-06 - ArtUnc_45: -1.8692778347109393e-08 - ArtUnc_46: -4.7039603477273036e-07 - ArtUnc_47: 1.780854677128344e-07 - ArtUnc_48: 6.883291106114957e-09 - ArtUnc_49: 5.5623819126375e-06 - ArtUnc_50: 1.1534748792054565e-07 - ArtUnc_51: 1.028575206998775e-06 - ArtUnc_52: -3.0315609727011743e-07 - ArtUnc_53: -6.972290082412896e-09 - ArtUnc_54: 8.435772815705874e-08 - ArtUnc_55: -1.3118817752018065e-05 - ArtUnc_56: 8.339153477262663e-06 - ArtUnc_57: 2.3637144144613787e-06 - ArtUnc_58: -2.2236860622236262e-05 - ArtUnc_59: -4.699881721535158e-08 - ArtUnc_60: 2.263671637940174e-05 - ArtUnc_61: 3.1315628658612085e-09 - ArtUnc_62: -8.57322660994336e-07 - ArtUnc_63: 9.546774888890239e-08 - ArtUnc_64: 4.3457629674280023e-05 - ArtUnc_65: 1.6714745717973356e-06 - ArtUnc_66: 5.062688865522578e-05 - ArtUnc_67: -1.6624391063533658e-06 - ArtUnc_68: 3.1870521645735013e-07 - ArtUnc_69: -4.135156259850382e-08 - ArtUnc_70: 2.955379799570098e-07 - ArtUnc_71: -2.72632503482665e-09 - ArtUnc_72: -1.3610040269890458e-06 - ArtUnc_73: -1.026442091430942e-07 - ArtUnc_74: -5.69311430194319e-07 - ArtUnc_75: -1.703078184775388e-06 - ArtUnc_76: -6.269284013198872e-09 - ArtUnc_77: 8.642190079210228e-09 - ArtUnc_78: -3.365296810775991e-06 - ArtUnc_79: -1.844309294769266e-06 - ArtUnc_80: 9.498543448093592e-09 - ArtUnc_81: -9.359532363281393e-08 - ArtUnc_82: 5.063739805795015e-09 - ArtUnc_83: 1.6723098673167816e-08 - ArtUnc_84: -1.2576779963022046e-08 - ArtUnc_85: 5.9980743564484816e-09 - ArtUnc_86: -1.4311052060219964e-09 - ArtUnc_87: -1.0586207274605797e-09 - ArtUnc_88: 3.948718245876623e-08 - ArtUnc_89: -1.5082683611736483e-10 - ArtUnc_90: -1.8390899459918704e-08 - ArtUnc_91: -1.2206702689793343e-08 - ArtUnc_92: 3.956258911796859e-08 - ArtUnc_93: 2.2233604812058874e-10 - ArtUnc_94: 1.6431022394437524e-09 - ArtUnc_95: 2.7427779419382887e-09 - ArtUnc_96: 2.071055907394705e-10 + ArtUnc_1: 5.02819392911427e-14 + ArtUnc_2: -7.93092386430135e-12 + ArtUnc_3: -3.500863412851607e-11 + ArtUnc_4: -9.003481958336642e-11 + ArtUnc_5: -3.1431617742647692e-12 + ArtUnc_6: -2.6228548749244885e-13 + ArtUnc_7: 2.4988272275362133e-10 + ArtUnc_8: -7.095544583119142e-09 + ArtUnc_9: 1.7262562010402244e-10 + ArtUnc_10: 9.466624384963338e-09 + ArtUnc_11: -1.879788980545776e-08 + ArtUnc_12: -1.548158785248519e-09 + ArtUnc_13: -4.131411529644298e-08 + ArtUnc_14: 1.2381720443187933e-10 + ArtUnc_15: -5.996467589130546e-10 + ArtUnc_16: 4.2392744590761055e-11 + ArtUnc_17: 3.800322858826508e-09 + ArtUnc_18: -1.161756959648318e-10 + ArtUnc_19: -9.204297352626248e-09 + ArtUnc_20: -3.29521590064212e-08 + ArtUnc_21: 1.7060190359246318e-09 + ArtUnc_22: -3.159032400526775e-07 + ArtUnc_23: -6.308935847250307e-09 + ArtUnc_24: 1.7278494489382729e-07 + ArtUnc_25: 1.3875472113931756e-07 + ArtUnc_26: -2.9595791064606375e-08 + ArtUnc_27: -6.592875651505602e-07 + ArtUnc_28: -2.4985005971144744e-08 + ArtUnc_29: -3.1242140113639304e-07 + ArtUnc_30: -1.2830119955860022e-07 + ArtUnc_31: 5.325623570444768e-08 + ArtUnc_32: -1.557857961817675e-06 + ArtUnc_33: 1.8667160570307258e-10 + ArtUnc_34: 3.4328292949259264e-08 + ArtUnc_35: 1.5603640778777838e-08 + ArtUnc_36: -3.41441233333585e-07 + ArtUnc_37: 6.324378226229994e-07 + ArtUnc_38: -1.1310962710342948e-07 + ArtUnc_39: -5.43606112255573e-07 + ArtUnc_40: 9.94074320502835e-09 + ArtUnc_41: 2.723372214838412e-06 + ArtUnc_42: 3.5212973382349376e-09 + ArtUnc_43: -3.2286787244513157e-06 + ArtUnc_44: -1.137559147814532e-06 + ArtUnc_45: 1.8692778347107762e-08 + ArtUnc_46: -4.703960347728094e-07 + ArtUnc_47: 1.7808546771262623e-07 + ArtUnc_48: -6.883291106153041e-09 + ArtUnc_49: -5.562381912637747e-06 + ArtUnc_50: -1.1534748792065501e-07 + ArtUnc_51: -1.028575206998728e-06 + ArtUnc_52: 3.031560972701436e-07 + ArtUnc_53: 6.9722900824939765e-09 + ArtUnc_54: -8.435772815707573e-08 + ArtUnc_55: -1.3118817752018197e-05 + ArtUnc_56: 8.339153477261923e-06 + ArtUnc_57: 2.363714414463892e-06 + ArtUnc_58: -2.2236860622236516e-05 + ArtUnc_59: -4.699881721560735e-08 + ArtUnc_60: -2.2636716379401355e-05 + ArtUnc_61: -3.1315628659250002e-09 + ArtUnc_62: -8.573226609941899e-07 + ArtUnc_63: 9.546774888907887e-08 + ArtUnc_64: -4.345762967427407e-05 + ArtUnc_65: 1.6714745717974936e-06 + ArtUnc_66: -5.062688865522955e-05 + ArtUnc_67: -1.662439106353279e-06 + ArtUnc_68: 3.187052164572777e-07 + ArtUnc_69: 4.13515625985064e-08 + ArtUnc_70: -2.9553797995699014e-07 + ArtUnc_71: 2.7263250348303047e-09 + ArtUnc_72: 1.3610040269891257e-06 + ArtUnc_73: 1.0264420914310467e-07 + ArtUnc_74: 5.69311430194333e-07 + ArtUnc_75: -1.7030781847754871e-06 + ArtUnc_76: -6.269284013211263e-09 + ArtUnc_77: 8.642190079204772e-09 + ArtUnc_78: -3.365296810775796e-06 + ArtUnc_79: -1.84430929476948e-06 + ArtUnc_80: 9.498543448078409e-09 + ArtUnc_81: -9.359532363282695e-08 + ArtUnc_82: -5.063739805795505e-09 + ArtUnc_83: 1.672309867316878e-08 + ArtUnc_84: 1.257677996302173e-08 + ArtUnc_85: -5.998074356448583e-09 + ArtUnc_86: -1.4311052060218262e-09 + ArtUnc_87: -1.0586207274600761e-09 + ArtUnc_88: -1.508268361170333e-10 + ArtUnc_89: -3.94871824587661e-08 + ArtUnc_90: 1.8390899459919323e-08 + ArtUnc_91: -1.220670268979323e-08 + ArtUnc_92: -3.9562589117971506e-08 + ArtUnc_93: 2.223360481207455e-10 + ArtUnc_94: 1.6431022394438529e-09 + ArtUnc_95: 2.7427779419367713e-09 + ArtUnc_96: 2.0710559073924454e-10 - stat: 0 Uncorr: 1.1000000000000001e-05 RCES: 1.3990663851297411e-05 @@ -4899,102 +4899,102 @@ bins: ModelRW_2: 3.266833329081849e-06 JES_1: 3.380265725501473e-05 JES_2: 3.380265725501473e-05 - ArtUnc_1: 3.1649577406472285e-16 - ArtUnc_2: -5.2335776188955977e-14 - ArtUnc_3: 1.2009689613669813e-13 - ArtUnc_4: 5.2775724723700894e-12 - ArtUnc_5: 1.9602453108170133e-13 - ArtUnc_6: 1.195060314105756e-13 - ArtUnc_7: 1.1770919468664458e-10 - ArtUnc_8: -1.4179526772946948e-09 - ArtUnc_9: 3.14077879028471e-11 - ArtUnc_10: 1.5709557509771584e-09 - ArtUnc_11: -3.1240802535423297e-09 - ArtUnc_12: 2.51872726822909e-10 - ArtUnc_13: 7.045050237369375e-09 - ArtUnc_14: -2.488938284850154e-11 - ArtUnc_15: -6.151766026702624e-11 - ArtUnc_16: 5.5825738656037795e-12 - ArtUnc_17: 3.9609087454243e-10 - ArtUnc_18: 1.2186192509001654e-11 - ArtUnc_19: 1.2867497103020471e-09 - ArtUnc_20: -4.035383590529823e-09 - ArtUnc_21: 2.330392107992802e-10 - ArtUnc_22: -4.487504907636015e-08 - ArtUnc_23: -7.936318198450206e-10 - ArtUnc_24: 2.371442818122049e-08 - ArtUnc_25: 1.5749752398151737e-08 - ArtUnc_26: -4.309261165056775e-09 - ArtUnc_27: -9.798403070582949e-08 - ArtUnc_28: 4.94433998787048e-09 - ArtUnc_29: 5.412031033566136e-08 - ArtUnc_30: -2.2124207161286627e-08 - ArtUnc_31: -9.099620059223857e-09 - ArtUnc_32: -2.421228490786892e-07 - ArtUnc_33: -7.643746274094484e-11 - ArtUnc_34: -2.531175015935894e-09 - ArtUnc_35: 4.649292937028954e-09 - ArtUnc_36: -2.160183108841626e-10 - ArtUnc_37: 1.4995257681071308e-09 - ArtUnc_38: 1.5743773339187948e-10 - ArtUnc_39: -7.455873430701368e-09 - ArtUnc_40: -4.95794967743893e-11 - ArtUnc_41: -2.9637995205923787e-08 - ArtUnc_42: -1.4364644653881406e-09 - ArtUnc_43: 8.010985922253673e-08 - ArtUnc_44: 1.1402569191216392e-08 - ArtUnc_45: 4.703198444676842e-10 - ArtUnc_46: 1.002303393172774e-08 - ArtUnc_47: 7.62877990502964e-09 - ArtUnc_48: 4.3229700829160684e-10 - ArtUnc_49: -3.164264343361119e-07 - ArtUnc_50: -1.2443658523872265e-08 - ArtUnc_51: 5.759850014050222e-08 - ArtUnc_52: -4.171637040698967e-08 - ArtUnc_53: 2.9314420570197154e-09 - ArtUnc_54: 3.51842026721901e-09 - ArtUnc_55: -4.505148231943277e-07 - ArtUnc_56: 4.7492041930748927e-07 - ArtUnc_57: 1.41493406225733e-07 - ArtUnc_58: -5.06873105407887e-07 - ArtUnc_59: -4.014248528161996e-09 - ArtUnc_60: 6.52500989313911e-07 - ArtUnc_61: -7.476582193153976e-10 - ArtUnc_62: -6.22455801358553e-08 - ArtUnc_63: 5.9473529005908975e-09 - ArtUnc_64: 4.6023902239761547e-07 - ArtUnc_65: 1.4696462627758393e-08 - ArtUnc_66: 8.742215561409534e-07 - ArtUnc_67: 2.6854374134708383e-07 - ArtUnc_68: -2.51560080948986e-08 - ArtUnc_69: 9.12920090977178e-08 - ArtUnc_70: -2.008073335549839e-06 - ArtUnc_71: -2.98185579529821e-08 - ArtUnc_72: -1.2038558502868007e-06 - ArtUnc_73: 3.7382863737146895e-09 - ArtUnc_74: -7.397192237967821e-06 - ArtUnc_75: -1.1239358915611417e-07 - ArtUnc_76: 1.9660642274449522e-07 - ArtUnc_77: 2.0281556677640734e-07 - ArtUnc_78: 1.2953754330490816e-05 - ArtUnc_79: -2.1173808847071083e-05 - ArtUnc_80: 3.9649564622569576e-07 - ArtUnc_81: 2.68212297280555e-07 - ArtUnc_82: 5.16968632898392e-08 - ArtUnc_83: -1.5922154831443385e-07 - ArtUnc_84: -7.311494935121377e-07 - ArtUnc_85: -2.964885666779676e-09 - ArtUnc_86: -2.056962891334488e-08 - ArtUnc_87: -2.213952086686656e-08 - ArtUnc_88: 9.456451570328827e-07 - ArtUnc_89: -3.832132486986422e-08 - ArtUnc_90: -2.9598162641288955e-07 - ArtUnc_91: 1.3646041135443824e-07 - ArtUnc_92: -1.63688694421884e-06 - ArtUnc_93: -4.626251923597679e-09 - ArtUnc_94: -2.9079417657433032e-08 - ArtUnc_95: 1.2467227997216099e-08 - ArtUnc_96: -9.500208452471877e-09 + ArtUnc_1: 3.1649572545798636e-16 + ArtUnc_2: -5.233577612250058e-14 + ArtUnc_3: 1.2009689584926394e-13 + ArtUnc_4: 5.277572473053857e-12 + ArtUnc_5: 1.9602452330203135e-13 + ArtUnc_6: 1.1950603216690673e-13 + ArtUnc_7: 1.177091946862514e-10 + ArtUnc_8: -1.4179526772949043e-09 + ArtUnc_9: 3.140778790121353e-11 + ArtUnc_10: 1.5709557509707463e-09 + ArtUnc_11: -3.1240802535447885e-09 + ArtUnc_12: -2.518727268235315e-10 + ArtUnc_13: -7.045050237369745e-09 + ArtUnc_14: -2.4889382837967554e-11 + ArtUnc_15: -6.151766026825989e-11 + ArtUnc_16: 5.582573905562612e-12 + ArtUnc_17: 3.960908745469827e-10 + ArtUnc_18: -1.2186192497896489e-11 + ArtUnc_19: -1.2867497103024744e-09 + ArtUnc_20: -4.035383590529554e-09 + ArtUnc_21: 2.330392107937851e-10 + ArtUnc_22: -4.487504907636002e-08 + ArtUnc_23: -7.936318198209268e-10 + ArtUnc_24: 2.371442818121514e-08 + ArtUnc_25: 1.574975239816285e-08 + ArtUnc_26: -4.309261165127264e-09 + ArtUnc_27: -9.7984030705831e-08 + ArtUnc_28: -4.944339987828451e-09 + ArtUnc_29: -5.412031033562565e-08 + ArtUnc_30: -2.2124207161280466e-08 + ArtUnc_31: 9.099620059241552e-09 + ArtUnc_32: -2.4212284907869234e-07 + ArtUnc_33: 7.643746265587136e-11 + ArtUnc_34: -2.531175015901532e-09 + ArtUnc_35: -4.649292937064408e-09 + ArtUnc_36: 2.1601831095153314e-10 + ArtUnc_37: 1.4995257681146108e-09 + ArtUnc_38: -1.5743773344953369e-10 + ArtUnc_39: 7.455873430691035e-09 + ArtUnc_40: -4.957949681526738e-11 + ArtUnc_41: -2.9637995206043367e-08 + ArtUnc_42: 1.4364644653972603e-09 + ArtUnc_43: 8.010985922253236e-08 + ArtUnc_44: 1.1402569191300257e-08 + ArtUnc_45: -4.70319844532275e-10 + ArtUnc_46: 1.0023033931634319e-08 + ArtUnc_47: 7.628779905008244e-09 + ArtUnc_48: -4.3229700830991953e-10 + ArtUnc_49: 3.164264343360258e-07 + ArtUnc_50: 1.244365852390118e-08 + ArtUnc_51: -5.759850014053632e-08 + ArtUnc_52: 4.17163704070633e-08 + ArtUnc_53: -2.931442056952663e-09 + ArtUnc_54: -3.5184202673116693e-09 + ArtUnc_55: -4.5051482319390554e-07 + ArtUnc_56: 4.7492041930752146e-07 + ArtUnc_57: 1.4149340622586435e-07 + ArtUnc_58: -5.06873105407668e-07 + ArtUnc_59: -4.014248528158959e-09 + ArtUnc_60: -6.525009893137404e-07 + ArtUnc_61: 7.476582192990769e-10 + ArtUnc_62: -6.224558013585522e-08 + ArtUnc_63: 5.947352900612051e-09 + ArtUnc_64: -4.6023902239792263e-07 + ArtUnc_65: 1.469646262779821e-08 + ArtUnc_66: -8.742215561408021e-07 + ArtUnc_67: 2.685437413470425e-07 + ArtUnc_68: -2.515600809491753e-08 + ArtUnc_69: -9.129200909773729e-08 + ArtUnc_70: 2.0080733355498856e-06 + ArtUnc_71: 2.981855795298056e-08 + ArtUnc_72: 1.2038558502867265e-06 + ArtUnc_73: -3.738286373691037e-09 + ArtUnc_74: 7.397192237967834e-06 + ArtUnc_75: -1.1239358915581491e-07 + ArtUnc_76: 1.9660642274449898e-07 + ArtUnc_77: 2.0281556677642994e-07 + ArtUnc_78: 1.2953754330491275e-05 + ArtUnc_79: -2.117380884707036e-05 + ArtUnc_80: 3.964956462254869e-07 + ArtUnc_81: 2.6821229728058613e-07 + ArtUnc_82: -5.169686328983974e-08 + ArtUnc_83: -1.592215483144535e-07 + ArtUnc_84: 7.311494935121575e-07 + ArtUnc_85: 2.9648856667801234e-09 + ArtUnc_86: -2.056962891334345e-08 + ArtUnc_87: -2.2139520866865153e-08 + ArtUnc_88: -3.832132486986376e-08 + ArtUnc_89: -9.456451570329005e-07 + ArtUnc_90: 2.959816264128777e-07 + ArtUnc_91: 1.36460411354434e-07 + ArtUnc_92: 1.6368869442189318e-06 + ArtUnc_93: -4.62625192359946e-09 + ArtUnc_94: -2.907941765743483e-08 + ArtUnc_95: 1.2467227997260188e-08 + ArtUnc_96: -9.500208452465233e-09 - stat: 0 Uncorr: 1.8000000000000001e-06 RCES: 4.219944430913754e-06 @@ -5010,102 +5010,102 @@ bins: ModelRW_2: 1.205334219210589e-05 JES_1: 6.580406484405048e-06 JES_2: 6.580406484405048e-06 - ArtUnc_1: 7.525551366001484e-19 - ArtUnc_2: 1.701106506288059e-18 - ArtUnc_3: 2.2088374552042653e-17 - ArtUnc_4: 1.2241962773743911e-16 - ArtUnc_5: 4.1406436477623455e-18 - ArtUnc_6: 1.8386320253768616e-18 - ArtUnc_7: 4.662605559313038e-16 - ArtUnc_8: 3.695906971419403e-15 - ArtUnc_9: 4.122837894431185e-17 - ArtUnc_10: -1.6732250972111107e-14 - ArtUnc_11: 2.906247935821747e-14 - ArtUnc_12: -2.0735468235288463e-15 - ArtUnc_13: -1.0956125714153958e-13 - ArtUnc_14: -7.645551120169018e-16 - ArtUnc_15: 4.445232600208668e-15 - ArtUnc_16: -2.675055029764981e-16 - ArtUnc_17: -6.686565834916709e-15 - ArtUnc_18: -1.8429778988880834e-16 - ArtUnc_19: -5.309393895649595e-14 - ArtUnc_20: 1.6034412809639874e-13 - ArtUnc_21: -9.114499218152497e-15 - ArtUnc_22: 2.8160976159435096e-12 - ArtUnc_23: 5.926044547378676e-14 - ArtUnc_24: -1.9827743594024963e-12 - ArtUnc_25: -2.8747873250231603e-13 - ArtUnc_26: 1.604025822026323e-13 - ArtUnc_27: 8.751908398158677e-12 - ArtUnc_28: -3.2430577908284667e-13 - ArtUnc_29: -6.553866975505245e-12 - ArtUnc_30: 2.568968732181833e-12 - ArtUnc_31: 1.0753638368186946e-12 - ArtUnc_32: 4.1544951068355053e-11 - ArtUnc_33: 1.7348281782282054e-15 - ArtUnc_34: -1.504056954162059e-12 - ArtUnc_35: 7.984848532177075e-13 - ArtUnc_36: -2.4281165361645328e-11 - ArtUnc_37: -4.7504459545822565e-11 - ArtUnc_38: -9.352170382311762e-12 - ArtUnc_39: -5.003011145125786e-11 - ArtUnc_40: -9.794687296308413e-13 - ArtUnc_41: -3.3840096663886415e-10 - ArtUnc_42: -9.145350862669522e-12 - ArtUnc_43: 5.444991103340965e-10 - ArtUnc_44: 2.164790135154207e-10 - ArtUnc_45: 5.036337926644948e-12 - ArtUnc_46: 7.572012011905827e-11 - ArtUnc_47: 1.3122931491819182e-11 - ArtUnc_48: 1.623502336058403e-12 - ArtUnc_49: -1.446386899261996e-09 - ArtUnc_50: -6.487919379622005e-11 - ArtUnc_51: -2.5640452705376276e-10 - ArtUnc_52: 1.9086491769857173e-11 - ArtUnc_53: 6.004925716784896e-11 - ArtUnc_54: -1.3528719568469096e-11 - ArtUnc_55: 1.1799485815549566e-08 - ArtUnc_56: -9.975340208778051e-09 - ArtUnc_57: -2.2521217812461434e-09 - ArtUnc_58: 2.8046997584408207e-08 - ArtUnc_59: 2.2103976595498915e-10 - ArtUnc_60: -3.3649817451945465e-08 - ArtUnc_61: -1.1740658032909334e-10 - ArtUnc_62: -2.4023398508546184e-09 - ArtUnc_63: 1.7391658748616523e-10 - ArtUnc_64: -8.892744340589307e-08 - ArtUnc_65: -4.7974890767403846e-09 - ArtUnc_66: -1.223645169680704e-07 - ArtUnc_67: 3.0406525795472946e-08 - ArtUnc_68: -6.8622035401585674e-09 - ArtUnc_69: 7.665774654291003e-09 - ArtUnc_70: -1.480625126632562e-07 - ArtUnc_71: -2.0979076256279665e-09 - ArtUnc_72: -5.12220960070288e-08 - ArtUnc_73: -1.3362480636346698e-10 - ArtUnc_74: -2.7175826221355415e-07 - ArtUnc_75: -4.951873092023613e-08 - ArtUnc_76: 3.1980767459502424e-09 - ArtUnc_77: 1.1602659070867372e-08 - ArtUnc_78: 2.0132775223614465e-07 - ArtUnc_79: -3.730666429976659e-07 - ArtUnc_80: 5.992296682740758e-09 - ArtUnc_81: -4.792623496430073e-09 - ArtUnc_82: 1.0624184782711253e-09 - ArtUnc_83: 9.610625844063604e-08 - ArtUnc_84: 1.269439672133434e-07 - ArtUnc_85: 6.457187616301165e-07 - ArtUnc_86: -2.931789992925559e-07 - ArtUnc_87: -3.93721173068405e-07 - ArtUnc_88: -1.8185695363265478e-07 - ArtUnc_89: 4.955158818554088e-08 - ArtUnc_90: -1.0973584506276621e-06 - ArtUnc_91: -6.700710340023026e-06 - ArtUnc_92: 4.1782353724122134e-08 - ArtUnc_93: 6.932943847533906e-08 - ArtUnc_94: 1.1183383282740128e-07 - ArtUnc_95: -2.9181645166768724e-06 - ArtUnc_96: -6.066089548558548e-07 + ArtUnc_1: 7.525551332810761e-19 + ArtUnc_2: 1.7011065060993183e-18 + ArtUnc_3: 2.2088374550225672e-17 + ArtUnc_4: 1.2241962774379785e-16 + ArtUnc_5: 4.140643639484835e-18 + ArtUnc_6: 1.838631669346577e-18 + ArtUnc_7: 4.662605559246975e-16 + ArtUnc_8: 3.6959069714146945e-15 + ArtUnc_9: 4.1228378670082187e-17 + ArtUnc_10: -1.6732250973069617e-14 + ArtUnc_11: 2.906247935746357e-14 + ArtUnc_12: 2.07354682755585e-15 + ArtUnc_13: 1.0956125714146772e-13 + ArtUnc_14: -7.645551038861831e-16 + ArtUnc_15: 4.445232595615555e-15 + ArtUnc_16: -2.675054665071818e-16 + ArtUnc_17: -6.686565834819298e-15 + ArtUnc_18: 1.8429779658553334e-16 + ArtUnc_19: 5.3093938955127536e-14 + ArtUnc_20: 1.6034412809324093e-13 + ArtUnc_21: -9.114499216275052e-15 + ArtUnc_22: 2.8160976159407595e-12 + ArtUnc_23: 5.926044542417139e-14 + ArtUnc_24: -1.9827743594159214e-12 + ArtUnc_25: -2.8747873249342066e-13 + ArtUnc_26: 1.6040258231256255e-13 + ArtUnc_27: 8.751908398152517e-12 + ArtUnc_28: 3.243057790862044e-13 + ArtUnc_29: 6.553866976012681e-12 + ArtUnc_30: 2.568968732178255e-12 + ArtUnc_31: -1.0753638369503453e-12 + ArtUnc_32: 4.1544951068356036e-11 + ArtUnc_33: -1.7348277059421816e-15 + ArtUnc_34: -1.5040569541908268e-12 + ArtUnc_35: -7.984848532209664e-13 + ArtUnc_36: 2.4281165361617614e-11 + ArtUnc_37: -4.750445954573314e-11 + ArtUnc_38: 9.352170382692404e-12 + ArtUnc_39: 5.0030111451300346e-11 + ArtUnc_40: -9.794687305802967e-13 + ArtUnc_41: -3.384009666384961e-10 + ArtUnc_42: 9.145350864578396e-12 + ArtUnc_43: 5.444991103342456e-10 + ArtUnc_44: 2.164790135155239e-10 + ArtUnc_45: -5.036337921055136e-12 + ArtUnc_46: 7.572012011880331e-11 + ArtUnc_47: 1.3122931491457895e-11 + ArtUnc_48: -1.6235023239829938e-12 + ArtUnc_49: 1.4463868992619182e-09 + ArtUnc_50: 6.487919379608554e-11 + ArtUnc_51: 2.564045270519593e-10 + ArtUnc_52: -1.9086491770607894e-11 + ArtUnc_53: -6.004925716718752e-11 + ArtUnc_54: 1.3528719560799027e-11 + ArtUnc_55: 1.1799485815545221e-08 + ArtUnc_56: -9.975340208781463e-09 + ArtUnc_57: -2.2521217812471348e-09 + ArtUnc_58: 2.804699758441273e-08 + ArtUnc_59: 2.2103976595410218e-10 + ArtUnc_60: 3.3649817451941395e-08 + ArtUnc_61: 1.1740658032824714e-10 + ArtUnc_62: -2.402339850854667e-09 + ArtUnc_63: 1.7391658748525373e-10 + ArtUnc_64: 8.89274434058841e-08 + ArtUnc_65: -4.7974890767402026e-09 + ArtUnc_66: 1.22364516968084e-07 + ArtUnc_67: 3.040652579547578e-08 + ArtUnc_68: -6.862203540163716e-09 + ArtUnc_69: -7.665774654289796e-09 + ArtUnc_70: 1.480625126632594e-07 + ArtUnc_71: 2.0979076256282548e-09 + ArtUnc_72: 5.122209600702832e-08 + ArtUnc_73: 1.3362480636831328e-10 + ArtUnc_74: 2.717582622135473e-07 + ArtUnc_75: -4.951873092024478e-08 + ArtUnc_76: 3.198076745946251e-09 + ArtUnc_77: 1.1602659070872547e-08 + ArtUnc_78: 2.0132775223619658e-07 + ArtUnc_79: -3.7306664299767404e-07 + ArtUnc_80: 5.992296682747596e-09 + ArtUnc_81: -4.792623496419435e-09 + ArtUnc_82: -1.0624184782695466e-09 + ArtUnc_83: 9.610625844064377e-08 + ArtUnc_84: -1.2694396721333717e-07 + ArtUnc_85: -6.457187616301097e-07 + ArtUnc_86: -2.9317899929255475e-07 + ArtUnc_87: -3.9372117306839423e-07 + ArtUnc_88: 4.955158818554302e-08 + ArtUnc_89: 1.8185695363269428e-07 + ArtUnc_90: 1.097358450627666e-06 + ArtUnc_91: -6.7007103400230265e-06 + ArtUnc_92: -4.1782353724083415e-08 + ArtUnc_93: 6.93294384753824e-08 + ArtUnc_94: 1.1183383282743e-07 + ArtUnc_95: -2.9181645166768758e-06 + ArtUnc_96: -6.066089548558399e-07 - stat: 0 Uncorr: 0.00236 RCES: 0.005189894345745393 @@ -5121,102 +5121,102 @@ bins: ModelRW_2: 0.009295060060053404 JES_1: 0.0014672625054842777 JES_2: 0.0014672625054842777 - ArtUnc_1: -5.184077554804865e-09 - ArtUnc_2: 1.1677814854411717e-06 - ArtUnc_3: 6.484945269316032e-06 - ArtUnc_4: 2.9607766166695188e-05 - ArtUnc_5: 1.0260097645233027e-06 - ArtUnc_6: 2.6625129317257976e-07 - ArtUnc_7: 0.00019243537417088768 - ArtUnc_8: -0.0010127354200840373 - ArtUnc_9: 1.8484503325495992e-05 - ArtUnc_10: 0.0004836711327518179 - ArtUnc_11: -0.001000349484245882 - ArtUnc_12: 8.105091416691032e-05 - ArtUnc_13: 0.001560303726292502 - ArtUnc_14: -1.312468346417106e-05 - ArtUnc_15: -2.2591533427099566e-06 - ArtUnc_16: 5.81782659962372e-07 - ArtUnc_17: -1.1337540775552543e-06 - ArtUnc_18: -2.9870296863938236e-09 - ArtUnc_19: 4.885827276898902e-06 - ArtUnc_20: 5.46036666714075e-06 - ArtUnc_21: -1.9999995328936353e-07 - ArtUnc_22: 1.1276225478014803e-05 - ArtUnc_23: 2.415068877154063e-07 - ArtUnc_24: -1.869934832142698e-05 - ArtUnc_25: -8.703721396487764e-06 - ArtUnc_26: -5.289837150205136e-07 - ArtUnc_27: 2.0927443056242083e-05 - ArtUnc_28: -1.1909023961736666e-06 - ArtUnc_29: 1.376509661271128e-07 - ArtUnc_30: 2.3200362872257244e-06 - ArtUnc_31: 9.390934551417529e-07 - ArtUnc_32: 5.2604449124956104e-05 - ArtUnc_33: 2.0294766714359843e-08 - ArtUnc_34: 6.195759482584393e-07 - ArtUnc_35: -9.550353952130715e-07 - ArtUnc_36: -3.7298417895135e-08 - ArtUnc_37: -8.018721329022145e-07 - ArtUnc_38: -1.3985486051413725e-07 - ArtUnc_39: 6.047222284831873e-07 - ArtUnc_40: -2.4299704067399724e-09 - ArtUnc_41: 1.4240506631795575e-07 - ArtUnc_42: -1.763199430666483e-09 - ArtUnc_43: -3.8265962551439144e-07 - ArtUnc_44: 5.247038576006091e-07 - ArtUnc_45: 2.189129079036999e-09 - ArtUnc_46: -1.4438072463173603e-08 - ArtUnc_47: 1.3171349073521783e-08 - ArtUnc_48: 2.791115764211058e-10 - ArtUnc_49: 1.2825201759836086e-06 - ArtUnc_50: 3.9512167365672865e-08 - ArtUnc_51: -4.224301304456276e-09 - ArtUnc_52: -6.7536858555796595e-09 - ArtUnc_53: 1.0953565605416257e-09 - ArtUnc_54: -5.617115275140115e-10 - ArtUnc_55: -1.7820274368217247e-08 - ArtUnc_56: -1.2209974055510865e-09 - ArtUnc_57: -4.019287354504049e-10 - ArtUnc_58: -4.213685453428e-09 - ArtUnc_59: 1.2091701534008238e-10 - ArtUnc_60: 8.476923147506623e-09 - ArtUnc_61: -2.7460661767762e-11 - ArtUnc_62: -2.3627119172180134e-10 - ArtUnc_63: 1.983654630674247e-11 - ArtUnc_64: 6.46630459178119e-08 - ArtUnc_65: 1.1144518540054536e-09 - ArtUnc_66: -4.5764880710363666e-08 - ArtUnc_67: 5.587580325254852e-10 - ArtUnc_68: -6.110199357285555e-10 - ArtUnc_69: 1.7776037748952677e-11 - ArtUnc_70: -2.1053104483385263e-10 - ArtUnc_71: -2.036025074802014e-12 - ArtUnc_72: -5.932777335713809e-10 - ArtUnc_73: -4.280016881337702e-11 - ArtUnc_74: -8.42143694808457e-11 - ArtUnc_75: -9.046981473561906e-10 - ArtUnc_76: -8.71138686602466e-12 - ArtUnc_77: -8.7834967448671e-12 - ArtUnc_78: 1.1157174486689162e-09 - ArtUnc_79: -6.647586284952316e-10 - ArtUnc_80: 2.5056554750085015e-12 - ArtUnc_81: 2.9053533657375577e-11 - ArtUnc_82: 1.614311342765625e-12 - ArtUnc_83: -1.379289251603314e-11 - ArtUnc_84: -2.5599498846856188e-11 - ArtUnc_85: 4.113652347930657e-13 - ArtUnc_86: 3.0054805505082303e-12 - ArtUnc_87: 3.627340632113543e-12 - ArtUnc_88: 1.9168249548639103e-11 - ArtUnc_89: -2.8013289475795883e-12 - ArtUnc_90: 1.7317335682249135e-11 - ArtUnc_91: -2.0340718509919114e-12 - ArtUnc_92: -7.107882979359801e-11 - ArtUnc_93: -1.9824035580746016e-12 - ArtUnc_94: -8.498361675632156e-13 - ArtUnc_95: 3.0305793135592135e-11 - ArtUnc_96: 4.905247241945592e-12 + ArtUnc_1: -5.184077555533741e-09 + ArtUnc_2: 1.1677814854411006e-06 + ArtUnc_3: 6.484945269315138e-06 + ArtUnc_4: 2.9607766166695967e-05 + ArtUnc_5: 1.026009764528549e-06 + ArtUnc_6: 2.662512931754971e-07 + ArtUnc_7: 0.00019243537417088093 + ArtUnc_8: -0.0010127354200840388 + ArtUnc_9: 1.8484503325499536e-05 + ArtUnc_10: 0.00048367113275177076 + ArtUnc_11: -0.0010003494842459083 + ArtUnc_12: -8.105091416697253e-05 + ArtUnc_13: -0.001560303726292504 + ArtUnc_14: -1.3124683464170857e-05 + ArtUnc_15: -2.2591533427100417e-06 + ArtUnc_16: 5.817826599619027e-07 + ArtUnc_17: -1.1337540775553265e-06 + ArtUnc_18: 2.987029686372386e-09 + ArtUnc_19: -4.885827276898941e-06 + ArtUnc_20: 5.46036666714073e-06 + ArtUnc_21: -1.9999995328938429e-07 + ArtUnc_22: 1.127622547801492e-05 + ArtUnc_23: 2.4150688771514286e-07 + ArtUnc_24: -1.8699348321426944e-05 + ArtUnc_25: -8.703721396487673e-06 + ArtUnc_26: -5.289837150206431e-07 + ArtUnc_27: 2.092744305624243e-05 + ArtUnc_28: 1.1909023961737446e-06 + ArtUnc_29: -1.376509661274837e-07 + ArtUnc_30: 2.320036287223341e-06 + ArtUnc_31: -9.390934551493554e-07 + ArtUnc_32: 5.260444912495629e-05 + ArtUnc_33: -2.0294766714438776e-08 + ArtUnc_34: 6.195759482581024e-07 + ArtUnc_35: 9.550353952130143e-07 + ArtUnc_36: 3.729841789513544e-08 + ArtUnc_37: -8.01872132902217e-07 + ArtUnc_38: 1.3985486051409333e-07 + ArtUnc_39: -6.047222284831918e-07 + ArtUnc_40: -2.4299704067528574e-09 + ArtUnc_41: 1.4240506631795265e-07 + ArtUnc_42: 1.7631994306664332e-09 + ArtUnc_43: -3.8265962551438614e-07 + ArtUnc_44: 5.247038576006126e-07 + ArtUnc_45: -2.189129079051947e-09 + ArtUnc_46: -1.44380724631698e-08 + ArtUnc_47: 1.3171349073524332e-08 + ArtUnc_48: -2.7911157642128274e-10 + ArtUnc_49: -1.2825201759836507e-06 + ArtUnc_50: -3.951216736568954e-08 + ArtUnc_51: 4.224301304456062e-09 + ArtUnc_52: 6.753685855579711e-09 + ArtUnc_53: -1.0953565605415092e-09 + ArtUnc_54: 5.61711527514032e-10 + ArtUnc_55: -1.782027436821851e-08 + ArtUnc_56: -1.2209974055510724e-09 + ArtUnc_57: -4.019287354508974e-10 + ArtUnc_58: -4.213685453428593e-09 + ArtUnc_59: 1.2091701533994065e-10 + ArtUnc_60: -8.476923147507564e-09 + ArtUnc_61: 2.7460661768004776e-11 + ArtUnc_62: -2.362711917216108e-10 + ArtUnc_63: 1.9836546306819357e-11 + ArtUnc_64: -6.466304591781763e-08 + ArtUnc_65: 1.114451854006085e-09 + ArtUnc_66: 4.576488071035876e-08 + ArtUnc_67: 5.587580325253636e-10 + ArtUnc_68: -6.110199357284909e-10 + ArtUnc_69: -1.7776037748956474e-11 + ArtUnc_70: 2.105310448338427e-10 + ArtUnc_71: 2.036025074802777e-12 + ArtUnc_72: 5.932777335713569e-10 + ArtUnc_73: 4.2800168813375514e-11 + ArtUnc_74: 8.421436948084789e-11 + ArtUnc_75: -9.046981473561437e-10 + ArtUnc_76: -8.711386866030128e-12 + ArtUnc_77: -8.783496744864512e-12 + ArtUnc_78: 1.1157174486688844e-09 + ArtUnc_79: -6.647586284951538e-10 + ArtUnc_80: 2.5056554750015145e-12 + ArtUnc_81: 2.9053533657378786e-11 + ArtUnc_82: -1.6143113427655448e-12 + ArtUnc_83: -1.3792892516033813e-11 + ArtUnc_84: 2.55994988468569e-11 + ArtUnc_85: -4.1136523479301395e-13 + ArtUnc_86: 3.0054805505082905e-12 + ArtUnc_87: 3.6273406321135882e-12 + ArtUnc_88: -2.8013289475797947e-12 + ArtUnc_89: -1.9168249548640208e-11 + ArtUnc_90: -1.7317335682249917e-11 + ArtUnc_91: -2.0340718509920277e-12 + ArtUnc_92: 7.107882979360044e-11 + ArtUnc_93: -1.982403558075022e-12 + ArtUnc_94: -8.498361675632596e-13 + ArtUnc_95: 3.0305793135593906e-11 + ArtUnc_96: 4.905247241945646e-12 - stat: 0 Uncorr: 0.00104 RCES: 0.0023045975266844316 @@ -5232,102 +5232,102 @@ bins: ModelRW_2: 0.0029195024781630175 JES_1: 0.004261164423018666 JES_2: 0.004261164423018666 - ArtUnc_1: 9.75354752026044e-11 - ArtUnc_2: -6.2273727859760864e-09 - ArtUnc_3: 1.7087591791453076e-08 - ArtUnc_4: 4.3191107089871855e-07 - ArtUnc_5: 1.5544336954288856e-08 - ArtUnc_6: 7.296344356718899e-09 - ArtUnc_7: 6.546000347583141e-06 - ArtUnc_8: -5.724476102832814e-05 - ArtUnc_9: 1.186505533191221e-06 - ArtUnc_10: 4.336442172325017e-05 - ArtUnc_11: -8.826179700580657e-05 - ArtUnc_12: 7.203021247224612e-06 - ArtUnc_13: 0.00015235000980224025 - ArtUnc_14: -4.796339927818345e-07 - ArtUnc_15: -1.0309022261121592e-06 - ArtUnc_16: 9.391591905535796e-08 - ArtUnc_17: 5.1417193078837926e-06 - ArtUnc_18: 1.678842609126929e-07 - ArtUnc_19: 1.2964071120157593e-05 - ArtUnc_20: -3.0078776123107486e-05 - ArtUnc_21: 1.4925297085899568e-06 - ArtUnc_22: -0.0002355474459410796 - ArtUnc_23: -3.6760785509666088e-06 - ArtUnc_24: 0.0001026755887035469 - ArtUnc_25: 6.497741781848203e-05 - ArtUnc_26: -1.8235778533687866e-05 - ArtUnc_27: -0.000324237010333689 - ArtUnc_28: 1.4688165452172505e-05 - ArtUnc_29: 0.00015227934141965964 - ArtUnc_30: -5.982084023959652e-05 - ArtUnc_31: -2.4570653641737887e-05 - ArtUnc_32: -0.0005046502186004556 - ArtUnc_33: -1.7699603926284625e-07 - ArtUnc_34: -4.9246920619964135e-06 - ArtUnc_35: 7.714627557624803e-06 - ArtUnc_36: 2.239252880549989e-07 - ArtUnc_37: 6.411402027397142e-06 - ArtUnc_38: 1.1162652040399548e-06 - ArtUnc_39: 1.1430952119947786e-06 - ArtUnc_40: -6.74883846534561e-08 - ArtUnc_41: -2.3494255885953138e-06 - ArtUnc_42: 3.5551468648716967e-08 - ArtUnc_43: 4.703836380515397e-06 + ArtUnc_1: 9.753547439539828e-11 + ArtUnc_2: -6.227372784156302e-09 + ArtUnc_3: 1.708759179124174e-08 + ArtUnc_4: 4.319110708990544e-07 + ArtUnc_5: 1.55443369537763e-08 + ArtUnc_6: 7.296344354538225e-09 + ArtUnc_7: 6.5460003475791674e-06 + ArtUnc_8: -5.7244761028330045e-05 + ArtUnc_9: 1.186505533190126e-06 + ArtUnc_10: 4.336442172324861e-05 + ArtUnc_11: -8.82617970058097e-05 + ArtUnc_12: -7.2030212472301245e-06 + ArtUnc_13: -0.00015235000980223684 + ArtUnc_14: -4.796339927814513e-07 + ArtUnc_15: -1.0309022261121442e-06 + ArtUnc_16: 9.39159190546805e-08 + ArtUnc_17: 5.141719307884341e-06 + ArtUnc_18: -1.6788426091245276e-07 + ArtUnc_19: -1.2964071120157313e-05 + ArtUnc_20: -3.0078776123106327e-05 + ArtUnc_21: 1.492529708589883e-06 + ArtUnc_22: -0.00023554744594108016 + ArtUnc_23: -3.676078550964621e-06 + ArtUnc_24: 0.00010267558870354524 + ArtUnc_25: 6.497741781847948e-05 + ArtUnc_26: -1.8235778533686426e-05 + ArtUnc_27: -0.00032423701033369213 + ArtUnc_28: -1.4688165452177336e-05 + ArtUnc_29: -0.0001522793414196557 + ArtUnc_30: -5.9820840239537066e-05 + ArtUnc_31: 2.457065364193579e-05 + ArtUnc_32: -0.000504650218600457 + ArtUnc_33: 1.7699603926293156e-07 + ArtUnc_34: -4.924692061993343e-06 + ArtUnc_35: -7.714627557624232e-06 + ArtUnc_36: -2.2392528805489359e-07 + ArtUnc_37: 6.411402027397098e-06 + ArtUnc_38: -1.1162652040395937e-06 + ArtUnc_39: -1.1430952119947765e-06 + ArtUnc_40: -6.748838465346753e-08 + ArtUnc_41: -2.3494255885952587e-06 + ArtUnc_42: -3.555146864871654e-08 + ArtUnc_43: 4.703836380515194e-06 ArtUnc_44: -1.0566857235536604e-05 - ArtUnc_45: -4.4945124539154526e-08 - ArtUnc_46: -2.4857258556842753e-08 - ArtUnc_47: -1.6350369399768692e-07 - ArtUnc_48: -1.0292275806382017e-08 - ArtUnc_49: -1.4375919532155716e-05 - ArtUnc_50: -4.5840583908422396e-07 - ArtUnc_51: 2.5943913798835746e-08 - ArtUnc_52: 3.02608715287162e-08 - ArtUnc_53: -5.632813063283787e-09 - ArtUnc_54: 3.4802714012216528e-09 - ArtUnc_55: 1.3420913257162435e-07 - ArtUnc_56: -1.9194512317746415e-08 - ArtUnc_57: -4.460334623166559e-09 - ArtUnc_58: 1.857298792904718e-07 - ArtUnc_59: -1.5232168649288685e-09 - ArtUnc_60: -2.4123029218965524e-08 - ArtUnc_61: 1.7882848468395116e-10 - ArtUnc_62: 1.7966622080950064e-09 - ArtUnc_63: -1.571494213326034e-10 - ArtUnc_64: -6.671627784510943e-07 - ArtUnc_65: -1.0251897553522388e-08 - ArtUnc_66: 4.632156231862757e-07 - ArtUnc_67: -6.16158835415434e-09 - ArtUnc_68: 6.201726802225472e-09 - ArtUnc_69: -2.1346750028951346e-10 - ArtUnc_70: 2.4861479308311137e-09 - ArtUnc_71: 2.787441481270428e-11 - ArtUnc_72: 7.099604145631209e-09 - ArtUnc_73: 5.686130851729391e-10 - ArtUnc_74: 1.429200388025044e-09 - ArtUnc_75: 1.0248505960158253e-08 - ArtUnc_76: 1.0475918137978693e-10 - ArtUnc_77: 5.6777043837773735e-11 - ArtUnc_78: -1.2579885201608976e-08 - ArtUnc_79: 7.794043392190016e-09 - ArtUnc_80: -7.579711414809432e-11 - ArtUnc_81: -3.4308525311691373e-10 - ArtUnc_82: -1.7751170490890264e-11 - ArtUnc_83: 1.675001844948625e-10 - ArtUnc_84: 3.033136767964866e-10 - ArtUnc_85: -4.200393841862105e-12 - ArtUnc_86: -2.7784398976117046e-11 - ArtUnc_87: -3.283629617375814e-11 - ArtUnc_88: -2.877883598046446e-10 - ArtUnc_89: 3.125116211258946e-11 - ArtUnc_90: -1.5366438817765233e-10 - ArtUnc_91: 1.518307637548374e-11 - ArtUnc_92: 7.963922779568119e-10 - ArtUnc_93: 1.854010673838889e-11 - ArtUnc_94: 1.30934162861907e-11 - ArtUnc_95: -3.159639964275127e-10 - ArtUnc_96: -5.187217158734205e-11 + ArtUnc_45: 4.4945124539397075e-08 + ArtUnc_46: -2.4857258556887034e-08 + ArtUnc_47: -1.6350369399770955e-07 + ArtUnc_48: 1.0292275806389106e-08 + ArtUnc_49: 1.4375919532156121e-05 + ArtUnc_50: 4.584058390843983e-07 + ArtUnc_51: -2.5943913798833367e-08 + ArtUnc_52: -3.026087152871613e-08 + ArtUnc_53: 5.632813063282722e-09 + ArtUnc_54: -3.4802714012223778e-09 + ArtUnc_55: 1.3420913257163547e-07 + ArtUnc_56: -1.919451231774332e-08 + ArtUnc_57: -4.460334623172426e-09 + ArtUnc_58: 1.8572987929047742e-07 + ArtUnc_59: -1.5232168649282663e-09 + ArtUnc_60: 2.412302921897371e-08 + ArtUnc_61: -1.7882848468633827e-10 + ArtUnc_62: 1.7966622080932891e-09 + ArtUnc_63: -1.5714942133352477e-10 + ArtUnc_64: 6.671627784511517e-07 + ArtUnc_65: -1.025189755352918e-08 + ArtUnc_66: -4.632156231862248e-07 + ArtUnc_67: -6.161588354153124e-09 + ArtUnc_68: 6.201726802224839e-09 + ArtUnc_69: 2.1346750028956372e-10 + ArtUnc_70: -2.4861479308310165e-09 + ArtUnc_71: -2.787441481271272e-11 + ArtUnc_72: -7.099604145631049e-09 + ArtUnc_73: -5.6861308517293e-10 + ArtUnc_74: -1.4292003880250983e-09 + ArtUnc_75: 1.0248505960157929e-08 + ArtUnc_76: 1.0475918137984441e-10 + ArtUnc_77: 5.677704383775364e-11 + ArtUnc_78: -1.2579885201608965e-08 + ArtUnc_79: 7.794043392189298e-09 + ArtUnc_80: -7.579711414801293e-11 + ArtUnc_81: -3.430852531169544e-10 + ArtUnc_82: 1.775117049089012e-11 + ArtUnc_83: 1.675001844948761e-10 + ArtUnc_84: -3.033136767965014e-10 + ArtUnc_85: 4.20039384186154e-12 + ArtUnc_86: -2.7784398976116623e-11 + ArtUnc_87: -3.283629617375756e-11 + ArtUnc_88: 3.125116211259143e-11 + ArtUnc_89: 2.877883598046601e-10 + ArtUnc_90: 1.536643881776656e-10 + ArtUnc_91: 1.5183076375485108e-11 + ArtUnc_92: -7.963922779568559e-10 + ArtUnc_93: 1.8540106738393557e-11 + ArtUnc_94: 1.3093416286191433e-11 + ArtUnc_95: -3.1596399642754e-10 + ArtUnc_96: -5.1872171587344076e-11 - stat: 0 Uncorr: 0.000327 RCES: 0.00035480253448221026 @@ -5343,102 +5343,102 @@ bins: ModelRW_2: 0.0007722878842763234 JES_1: 0.001112187042924885 JES_2: 0.001112187042924885 - ArtUnc_1: 7.051224218170511e-11 - ArtUnc_2: -1.3977675181281722e-08 - ArtUnc_3: -7.119561085980849e-08 - ArtUnc_4: -2.8058198438085766e-07 - ArtUnc_5: -9.592216421389346e-09 - ArtUnc_6: -2.0297899814471796e-09 - ArtUnc_7: -1.347255652054934e-06 - ArtUnc_8: 4.150934493663707e-06 - ArtUnc_9: -5.952842188880549e-08 - ArtUnc_10: 5.4380103949999256e-08 - ArtUnc_11: 7.059796883563438e-08 - ArtUnc_12: -9.139260861121792e-09 - ArtUnc_13: 1.2790170539615172e-06 - ArtUnc_14: 2.561740834704523e-08 - ArtUnc_15: -1.9841482617862814e-08 - ArtUnc_16: 1.619807352846073e-10 - ArtUnc_17: 2.3983235953591063e-07 - ArtUnc_18: 7.139715680012391e-09 - ArtUnc_19: 7.286802604848566e-07 - ArtUnc_20: -1.5345833041427986e-06 - ArtUnc_21: 9.112349277439667e-08 - ArtUnc_22: -1.309874406162031e-05 - ArtUnc_23: -2.366435465708012e-07 - ArtUnc_24: 5.656671937789394e-06 - ArtUnc_25: 7.335671792195618e-06 - ArtUnc_26: -1.4577249046429854e-06 - ArtUnc_27: -2.234281373099328e-05 - ArtUnc_28: 9.327416416809586e-07 - ArtUnc_29: 3.571113044835011e-06 - ArtUnc_30: -2.329824213958802e-06 - ArtUnc_31: -9.539461832915348e-07 - ArtUnc_32: -3.3654680854993295e-05 - ArtUnc_33: -1.0814802951169263e-08 - ArtUnc_34: 5.098518791696569e-07 - ArtUnc_35: -7.814559505920847e-07 - ArtUnc_36: 6.4424889366370495e-06 - ArtUnc_37: 1.9979813786579762e-05 - ArtUnc_38: 3.5595772793985083e-06 - ArtUnc_39: 2.0489934740514856e-05 - ArtUnc_40: 3.02489581171129e-08 - ArtUnc_41: 6.089728888448017e-05 - ArtUnc_42: 3.7802166670696874e-07 - ArtUnc_43: -8.955261597294889e-05 - ArtUnc_44: -4.8024390229445945e-05 - ArtUnc_45: -6.22209842054908e-07 - ArtUnc_46: -1.3687951532626222e-05 - ArtUnc_47: 9.264014209200441e-07 - ArtUnc_48: -1.60940431640056e-08 - ArtUnc_49: 0.00017973388342818194 - ArtUnc_50: 4.459666900135036e-06 - ArtUnc_51: -2.0380504375675267e-07 - ArtUnc_52: 1.0862800138358524e-07 - ArtUnc_53: -3.971425587637444e-09 - ArtUnc_54: -2.9663603746897475e-09 - ArtUnc_55: -1.8811433941313633e-06 - ArtUnc_56: -1.9456883465458955e-06 - ArtUnc_57: -5.713827041414732e-07 - ArtUnc_58: -2.6674338272983187e-06 - ArtUnc_59: 3.8161231902574834e-08 - ArtUnc_60: -2.6960411564784744e-06 - ArtUnc_61: -2.2069932666303474e-09 - ArtUnc_62: 3.133504537482695e-08 - ArtUnc_63: -3.6382703959762624e-09 - ArtUnc_64: 5.3039856593629825e-06 - ArtUnc_65: 3.295262320677758e-08 - ArtUnc_66: -6.5141943706438e-06 - ArtUnc_67: 1.2249385484021418e-07 - ArtUnc_68: -6.042472036353696e-08 - ArtUnc_69: 2.5250031773642886e-09 - ArtUnc_70: -1.6964903821870466e-08 - ArtUnc_71: 4.213129200918381e-11 - ArtUnc_72: -1.0434560435131835e-09 - ArtUnc_73: -2.2988054108962423e-10 - ArtUnc_74: 4.0295819332110446e-08 - ArtUnc_75: 1.1695826127319187e-08 - ArtUnc_76: -1.1125737214142425e-09 - ArtUnc_77: -9.908908004052798e-10 - ArtUnc_78: 2.15663383962382e-07 - ArtUnc_79: 7.525356436863188e-08 - ArtUnc_80: -5.458073635483631e-10 - ArtUnc_81: 6.330795480690561e-09 - ArtUnc_82: -2.2198364046810994e-10 - ArtUnc_83: -1.484624633027967e-09 - ArtUnc_84: -1.368357657876776e-10 - ArtUnc_85: -2.5794689719642245e-10 - ArtUnc_86: 7.61121894871189e-11 - ArtUnc_87: 3.4903456058672834e-11 - ArtUnc_88: -1.7002038126260137e-09 - ArtUnc_89: -7.883110106207349e-11 - ArtUnc_90: 1.183009035226033e-09 - ArtUnc_91: 6.70014151095372e-10 - ArtUnc_92: -1.7580036048981999e-09 - ArtUnc_93: -4.661069203930548e-11 - ArtUnc_94: -5.5651946891794884e-11 - ArtUnc_95: -2.1446402629040687e-10 - ArtUnc_96: -5.192669359744669e-11 + ArtUnc_1: 7.051224216026941e-11 + ArtUnc_2: -1.3977675181295216e-08 + ArtUnc_3: -7.119561085981802e-08 + ArtUnc_4: -2.8058198438083383e-07 + ArtUnc_5: -9.59221642205358e-09 + ArtUnc_6: -2.02978998101931e-09 + ArtUnc_7: -1.3472556520548992e-06 + ArtUnc_8: 4.150934493663712e-06 + ArtUnc_9: -5.952842188927762e-08 + ArtUnc_10: 5.438010394919081e-08 + ArtUnc_11: 7.05979688352413e-08 + ArtUnc_12: 9.139260861476654e-09 + ArtUnc_13: -1.2790170539615633e-06 + ArtUnc_14: 2.5617408347870514e-08 + ArtUnc_15: -1.9841482618095413e-08 + ArtUnc_16: 1.6198073526381094e-10 + ArtUnc_17: 2.3983235953556213e-07 + ArtUnc_18: -7.139715679976194e-09 + ArtUnc_19: -7.286802604846646e-07 + ArtUnc_20: -1.534583304142478e-06 + ArtUnc_21: 9.112349277463271e-08 + ArtUnc_22: -1.3098744061619803e-05 + ArtUnc_23: -2.3664354657076953e-07 + ArtUnc_24: 5.656671937789673e-06 + ArtUnc_25: 7.335671792195338e-06 + ArtUnc_26: -1.4577249046427076e-06 + ArtUnc_27: -2.2342813730992484e-05 + ArtUnc_28: -9.32741641681257e-07 + ArtUnc_29: -3.5711130448348982e-06 + ArtUnc_30: -2.3298242139567014e-06 + ArtUnc_31: 9.539461832991869e-07 + ArtUnc_32: -3.365468085499373e-05 + ArtUnc_33: 1.0814802950801851e-08 + ArtUnc_34: 5.098518791699796e-07 + ArtUnc_35: 7.814559505928643e-07 + ArtUnc_36: -6.442488936637111e-06 + ArtUnc_37: 1.9979813786580084e-05 + ArtUnc_38: -3.559577279397605e-06 + ArtUnc_39: -2.0489934740514652e-05 + ArtUnc_40: 3.024895811611956e-08 + ArtUnc_41: 6.08972888844798e-05 + ArtUnc_42: -3.780216667070498e-07 + ArtUnc_43: -8.955261597295062e-05 + ArtUnc_44: -4.8024390229445863e-05 + ArtUnc_45: 6.222098420543644e-07 + ArtUnc_46: -1.368795153262544e-05 + ArtUnc_47: 9.264014209204773e-07 + ArtUnc_48: 1.6094043163831705e-08 + ArtUnc_49: -0.00017973388342818443 + ArtUnc_50: -4.459666900137267e-06 + ArtUnc_51: 2.038050437567206e-07 + ArtUnc_52: -1.0862800138360604e-07 + ArtUnc_53: 3.9714255876467446e-09 + ArtUnc_54: 2.966360374701162e-09 + ArtUnc_55: -1.8811433941314635e-06 + ArtUnc_56: -1.9456883465457418e-06 + ArtUnc_57: -5.713827041420243e-07 + ArtUnc_58: -2.6674338272983496e-06 + ArtUnc_59: 3.8161231902587136e-08 + ArtUnc_60: 2.6960411564784075e-06 + ArtUnc_61: 2.2069932666540668e-09 + ArtUnc_62: 3.1335045374841156e-08 + ArtUnc_63: -3.6382703959669343e-09 + ArtUnc_64: -5.303985659363463e-06 + ArtUnc_65: 3.295262320683488e-08 + ArtUnc_66: 6.51419437064317e-06 + ArtUnc_67: 1.224938548401954e-07 + ArtUnc_68: -6.0424720363524e-08 + ArtUnc_69: -2.525003177364441e-09 + ArtUnc_70: 1.6964903821867333e-08 + ArtUnc_71: -4.213129200925123e-11 + ArtUnc_72: 1.0434560435049898e-09 + ArtUnc_73: 2.2988054108867716e-10 + ArtUnc_74: -4.029581933211132e-08 + ArtUnc_75: 1.1695826127329766e-08 + ArtUnc_76: -1.1125737214139704e-09 + ArtUnc_77: -9.908908004047555e-10 + ArtUnc_78: 2.1566338396236692e-07 + ArtUnc_79: 7.525356436864798e-08 + ArtUnc_80: -5.458073635477984e-10 + ArtUnc_81: 6.330795480691271e-09 + ArtUnc_82: 2.219836404681475e-10 + ArtUnc_83: -1.4846246330279971e-09 + ArtUnc_84: 1.368357657876286e-10 + ArtUnc_85: 2.579468971964336e-10 + ArtUnc_86: 7.611218948708382e-11 + ArtUnc_87: 3.4903456058610976e-11 + ArtUnc_88: -7.88311010620826e-11 + ArtUnc_89: 1.7002038126260505e-09 + ArtUnc_90: -1.1830090352260171e-09 + ArtUnc_91: 6.700141510953795e-10 + ArtUnc_92: 1.7580036048980386e-09 + ArtUnc_93: -4.661069203930877e-11 + ArtUnc_94: -5.5651946891796474e-11 + ArtUnc_95: -2.1446402629044331e-10 + ArtUnc_96: -5.1926693597453337e-11 - stat: 0 Uncorr: 8.0e-05 RCES: 6.771587701566007e-05 @@ -5454,102 +5454,102 @@ bins: ModelRW_2: 3.733523804664971e-05 JES_1: 0.0001809793358369955 JES_2: 0.0001809793358369955 - ArtUnc_1: 5.028194037011682e-14 - ArtUnc_2: -7.930923863452117e-12 - ArtUnc_3: -3.500863412875774e-11 - ArtUnc_4: -9.003481958413572e-11 - ArtUnc_5: -3.1431617563460395e-12 - ArtUnc_6: -2.6228551187093957e-13 - ArtUnc_7: 2.4988272275389347e-10 - ArtUnc_8: -7.095544583118769e-09 - ArtUnc_9: 1.7262562013246882e-10 - ArtUnc_10: 9.466624384995902e-09 - ArtUnc_11: -1.8797889805441954e-08 - ArtUnc_12: 1.5481587852640913e-09 - ArtUnc_13: 4.131411529644207e-08 - ArtUnc_14: 1.2381720441638352e-10 - ArtUnc_15: -5.996467589129313e-10 - ArtUnc_16: 4.239274459555293e-11 - ArtUnc_17: 3.8003228588328964e-09 - ArtUnc_18: 1.1617569595827475e-10 - ArtUnc_19: 9.204297352629586e-09 - ArtUnc_20: -3.2952159006435125e-08 - ArtUnc_21: 1.706019035926824e-09 - ArtUnc_22: -3.1590324005269335e-07 - ArtUnc_23: -6.308935847157541e-09 - ArtUnc_24: 1.7278494489381813e-07 - ArtUnc_25: 1.387547211393275e-07 - ArtUnc_26: -2.9595791064755926e-08 - ArtUnc_27: -6.592875651505977e-07 - ArtUnc_28: 2.498500597107091e-08 - ArtUnc_29: 3.1242140113624735e-07 - ArtUnc_30: -1.2830119955878174e-07 - ArtUnc_31: -5.325623570391923e-08 - ArtUnc_32: -1.557857961817653e-06 - ArtUnc_33: -1.8667160575862471e-10 - ArtUnc_34: 3.4328292949324215e-08 - ArtUnc_35: -1.5603640778704735e-08 - ArtUnc_36: 3.414412333334038e-07 - ArtUnc_37: 6.324378226229919e-07 - ArtUnc_38: 1.1310962710340537e-07 - ArtUnc_39: 5.436061122555622e-07 - ArtUnc_40: 9.940743205069577e-09 - ArtUnc_41: 2.723372214838286e-06 - ArtUnc_42: -3.5212973381854846e-09 - ArtUnc_43: -3.2286787244512606e-06 - ArtUnc_44: -1.137559147814426e-06 - ArtUnc_45: -1.8692778347109393e-08 - ArtUnc_46: -4.7039603477273036e-07 - ArtUnc_47: 1.780854677128344e-07 - ArtUnc_48: 6.883291106114957e-09 - ArtUnc_49: 5.5623819126375e-06 - ArtUnc_50: 1.1534748792054565e-07 - ArtUnc_51: 1.028575206998775e-06 - ArtUnc_52: -3.0315609727011743e-07 - ArtUnc_53: -6.972290082412896e-09 - ArtUnc_54: 8.435772815705874e-08 - ArtUnc_55: -1.3118817752018065e-05 - ArtUnc_56: 8.339153477262663e-06 - ArtUnc_57: 2.3637144144613787e-06 - ArtUnc_58: -2.2236860622236262e-05 - ArtUnc_59: -4.699881721535158e-08 - ArtUnc_60: 2.263671637940174e-05 - ArtUnc_61: 3.1315628658612085e-09 - ArtUnc_62: -8.57322660994336e-07 - ArtUnc_63: 9.546774888890239e-08 - ArtUnc_64: 4.3457629674280023e-05 - ArtUnc_65: 1.6714745717973356e-06 - ArtUnc_66: 5.062688865522578e-05 - ArtUnc_67: -1.6624391063533658e-06 - ArtUnc_68: 3.1870521645735013e-07 - ArtUnc_69: -4.135156259850382e-08 - ArtUnc_70: 2.955379799570098e-07 - ArtUnc_71: -2.72632503482665e-09 - ArtUnc_72: -1.3610040269890458e-06 - ArtUnc_73: -1.026442091430942e-07 - ArtUnc_74: -5.69311430194319e-07 - ArtUnc_75: -1.703078184775388e-06 - ArtUnc_76: -6.269284013198872e-09 - ArtUnc_77: 8.642190079210228e-09 - ArtUnc_78: -3.365296810775991e-06 - ArtUnc_79: -1.844309294769266e-06 - ArtUnc_80: 9.498543448093592e-09 - ArtUnc_81: -9.359532363281393e-08 - ArtUnc_82: 5.063739805795015e-09 - ArtUnc_83: 1.6723098673167816e-08 - ArtUnc_84: -1.2576779963022046e-08 - ArtUnc_85: 5.9980743564484816e-09 - ArtUnc_86: -1.4311052060219964e-09 - ArtUnc_87: -1.0586207274605797e-09 - ArtUnc_88: 3.948718245876623e-08 - ArtUnc_89: -1.5082683611736483e-10 - ArtUnc_90: -1.8390899459918704e-08 - ArtUnc_91: -1.2206702689793343e-08 - ArtUnc_92: 3.956258911796859e-08 - ArtUnc_93: 2.2233604812058874e-10 - ArtUnc_94: 1.6431022394437524e-09 - ArtUnc_95: 2.7427779419382887e-09 - ArtUnc_96: 2.071055907394705e-10 + ArtUnc_1: 5.02819392911427e-14 + ArtUnc_2: -7.93092386430135e-12 + ArtUnc_3: -3.500863412851607e-11 + ArtUnc_4: -9.003481958336642e-11 + ArtUnc_5: -3.1431617742647692e-12 + ArtUnc_6: -2.6228548749244885e-13 + ArtUnc_7: 2.4988272275362133e-10 + ArtUnc_8: -7.095544583119142e-09 + ArtUnc_9: 1.7262562010402244e-10 + ArtUnc_10: 9.466624384963338e-09 + ArtUnc_11: -1.879788980545776e-08 + ArtUnc_12: -1.548158785248519e-09 + ArtUnc_13: -4.131411529644298e-08 + ArtUnc_14: 1.2381720443187933e-10 + ArtUnc_15: -5.996467589130546e-10 + ArtUnc_16: 4.2392744590761055e-11 + ArtUnc_17: 3.800322858826508e-09 + ArtUnc_18: -1.161756959648318e-10 + ArtUnc_19: -9.204297352626248e-09 + ArtUnc_20: -3.29521590064212e-08 + ArtUnc_21: 1.7060190359246318e-09 + ArtUnc_22: -3.159032400526775e-07 + ArtUnc_23: -6.308935847250307e-09 + ArtUnc_24: 1.7278494489382729e-07 + ArtUnc_25: 1.3875472113931756e-07 + ArtUnc_26: -2.9595791064606375e-08 + ArtUnc_27: -6.592875651505602e-07 + ArtUnc_28: -2.4985005971144744e-08 + ArtUnc_29: -3.1242140113639304e-07 + ArtUnc_30: -1.2830119955860022e-07 + ArtUnc_31: 5.325623570444768e-08 + ArtUnc_32: -1.557857961817675e-06 + ArtUnc_33: 1.8667160570307258e-10 + ArtUnc_34: 3.4328292949259264e-08 + ArtUnc_35: 1.5603640778777838e-08 + ArtUnc_36: -3.41441233333585e-07 + ArtUnc_37: 6.324378226229994e-07 + ArtUnc_38: -1.1310962710342948e-07 + ArtUnc_39: -5.43606112255573e-07 + ArtUnc_40: 9.94074320502835e-09 + ArtUnc_41: 2.723372214838412e-06 + ArtUnc_42: 3.5212973382349376e-09 + ArtUnc_43: -3.2286787244513157e-06 + ArtUnc_44: -1.137559147814532e-06 + ArtUnc_45: 1.8692778347107762e-08 + ArtUnc_46: -4.703960347728094e-07 + ArtUnc_47: 1.7808546771262623e-07 + ArtUnc_48: -6.883291106153041e-09 + ArtUnc_49: -5.562381912637747e-06 + ArtUnc_50: -1.1534748792065501e-07 + ArtUnc_51: -1.028575206998728e-06 + ArtUnc_52: 3.031560972701436e-07 + ArtUnc_53: 6.9722900824939765e-09 + ArtUnc_54: -8.435772815707573e-08 + ArtUnc_55: -1.3118817752018197e-05 + ArtUnc_56: 8.339153477261923e-06 + ArtUnc_57: 2.363714414463892e-06 + ArtUnc_58: -2.2236860622236516e-05 + ArtUnc_59: -4.699881721560735e-08 + ArtUnc_60: -2.2636716379401355e-05 + ArtUnc_61: -3.1315628659250002e-09 + ArtUnc_62: -8.573226609941899e-07 + ArtUnc_63: 9.546774888907887e-08 + ArtUnc_64: -4.345762967427407e-05 + ArtUnc_65: 1.6714745717974936e-06 + ArtUnc_66: -5.062688865522955e-05 + ArtUnc_67: -1.662439106353279e-06 + ArtUnc_68: 3.187052164572777e-07 + ArtUnc_69: 4.13515625985064e-08 + ArtUnc_70: -2.9553797995699014e-07 + ArtUnc_71: 2.7263250348303047e-09 + ArtUnc_72: 1.3610040269891257e-06 + ArtUnc_73: 1.0264420914310467e-07 + ArtUnc_74: 5.69311430194333e-07 + ArtUnc_75: -1.7030781847754871e-06 + ArtUnc_76: -6.269284013211263e-09 + ArtUnc_77: 8.642190079204772e-09 + ArtUnc_78: -3.365296810775796e-06 + ArtUnc_79: -1.84430929476948e-06 + ArtUnc_80: 9.498543448078409e-09 + ArtUnc_81: -9.359532363282695e-08 + ArtUnc_82: -5.063739805795505e-09 + ArtUnc_83: 1.672309867316878e-08 + ArtUnc_84: 1.257677996302173e-08 + ArtUnc_85: -5.998074356448583e-09 + ArtUnc_86: -1.4311052060218262e-09 + ArtUnc_87: -1.0586207274600761e-09 + ArtUnc_88: -1.508268361170333e-10 + ArtUnc_89: -3.94871824587661e-08 + ArtUnc_90: 1.8390899459919323e-08 + ArtUnc_91: -1.220670268979323e-08 + ArtUnc_92: -3.9562589117971506e-08 + ArtUnc_93: 2.223360481207455e-10 + ArtUnc_94: 1.6431022394438529e-09 + ArtUnc_95: 2.7427779419367713e-09 + ArtUnc_96: 2.0710559073924454e-10 - stat: 0 Uncorr: 8.53e-06 RCES: 2.8109521065423727e-05 @@ -5565,102 +5565,102 @@ bins: ModelRW_2: 0.00010549304855318665 JES_1: 6.292605339996304e-05 JES_2: 6.292605339996304e-05 - ArtUnc_1: 3.1649577406472285e-16 - ArtUnc_2: -5.2335776188955977e-14 - ArtUnc_3: 1.2009689613669813e-13 - ArtUnc_4: 5.2775724723700894e-12 - ArtUnc_5: 1.9602453108170133e-13 - ArtUnc_6: 1.195060314105756e-13 - ArtUnc_7: 1.1770919468664458e-10 - ArtUnc_8: -1.4179526772946948e-09 - ArtUnc_9: 3.14077879028471e-11 - ArtUnc_10: 1.5709557509771584e-09 - ArtUnc_11: -3.1240802535423297e-09 - ArtUnc_12: 2.51872726822909e-10 - ArtUnc_13: 7.045050237369375e-09 - ArtUnc_14: -2.488938284850154e-11 - ArtUnc_15: -6.151766026702624e-11 - ArtUnc_16: 5.5825738656037795e-12 - ArtUnc_17: 3.9609087454243e-10 - ArtUnc_18: 1.2186192509001654e-11 - ArtUnc_19: 1.2867497103020471e-09 - ArtUnc_20: -4.035383590529823e-09 - ArtUnc_21: 2.330392107992802e-10 - ArtUnc_22: -4.487504907636015e-08 - ArtUnc_23: -7.936318198450206e-10 - ArtUnc_24: 2.371442818122049e-08 - ArtUnc_25: 1.5749752398151737e-08 - ArtUnc_26: -4.309261165056775e-09 - ArtUnc_27: -9.798403070582949e-08 - ArtUnc_28: 4.94433998787048e-09 - ArtUnc_29: 5.412031033566136e-08 - ArtUnc_30: -2.2124207161286627e-08 - ArtUnc_31: -9.099620059223857e-09 - ArtUnc_32: -2.421228490786892e-07 - ArtUnc_33: -7.643746274094484e-11 - ArtUnc_34: -2.531175015935894e-09 - ArtUnc_35: 4.649292937028954e-09 - ArtUnc_36: -2.160183108841626e-10 - ArtUnc_37: 1.4995257681071308e-09 - ArtUnc_38: 1.5743773339187948e-10 - ArtUnc_39: -7.455873430701368e-09 - ArtUnc_40: -4.95794967743893e-11 - ArtUnc_41: -2.9637995205923787e-08 - ArtUnc_42: -1.4364644653881406e-09 - ArtUnc_43: 8.010985922253673e-08 - ArtUnc_44: 1.1402569191216392e-08 - ArtUnc_45: 4.703198444676842e-10 - ArtUnc_46: 1.002303393172774e-08 - ArtUnc_47: 7.62877990502964e-09 - ArtUnc_48: 4.3229700829160684e-10 - ArtUnc_49: -3.164264343361119e-07 - ArtUnc_50: -1.2443658523872265e-08 - ArtUnc_51: 5.759850014050222e-08 - ArtUnc_52: -4.171637040698967e-08 - ArtUnc_53: 2.9314420570197154e-09 - ArtUnc_54: 3.51842026721901e-09 - ArtUnc_55: -4.505148231943277e-07 - ArtUnc_56: 4.7492041930748927e-07 - ArtUnc_57: 1.41493406225733e-07 - ArtUnc_58: -5.06873105407887e-07 - ArtUnc_59: -4.014248528161996e-09 - ArtUnc_60: 6.52500989313911e-07 - ArtUnc_61: -7.476582193153976e-10 - ArtUnc_62: -6.22455801358553e-08 - ArtUnc_63: 5.9473529005908975e-09 - ArtUnc_64: 4.6023902239761547e-07 - ArtUnc_65: 1.4696462627758393e-08 - ArtUnc_66: 8.742215561409534e-07 - ArtUnc_67: 2.6854374134708383e-07 - ArtUnc_68: -2.51560080948986e-08 - ArtUnc_69: 9.12920090977178e-08 - ArtUnc_70: -2.008073335549839e-06 - ArtUnc_71: -2.98185579529821e-08 - ArtUnc_72: -1.2038558502868007e-06 - ArtUnc_73: 3.7382863737146895e-09 - ArtUnc_74: -7.397192237967821e-06 - ArtUnc_75: -1.1239358915611417e-07 - ArtUnc_76: 1.9660642274449522e-07 - ArtUnc_77: 2.0281556677640734e-07 - ArtUnc_78: 1.2953754330490816e-05 - ArtUnc_79: -2.1173808847071083e-05 - ArtUnc_80: 3.9649564622569576e-07 - ArtUnc_81: 2.68212297280555e-07 - ArtUnc_82: 5.16968632898392e-08 - ArtUnc_83: -1.5922154831443385e-07 - ArtUnc_84: -7.311494935121377e-07 - ArtUnc_85: -2.964885666779676e-09 - ArtUnc_86: -2.056962891334488e-08 - ArtUnc_87: -2.213952086686656e-08 - ArtUnc_88: 9.456451570328827e-07 - ArtUnc_89: -3.832132486986422e-08 - ArtUnc_90: -2.9598162641288955e-07 - ArtUnc_91: 1.3646041135443824e-07 - ArtUnc_92: -1.63688694421884e-06 - ArtUnc_93: -4.626251923597679e-09 - ArtUnc_94: -2.9079417657433032e-08 - ArtUnc_95: 1.2467227997216099e-08 - ArtUnc_96: -9.500208452471877e-09 + ArtUnc_1: 3.1649572545798636e-16 + ArtUnc_2: -5.233577612250058e-14 + ArtUnc_3: 1.2009689584926394e-13 + ArtUnc_4: 5.277572473053857e-12 + ArtUnc_5: 1.9602452330203135e-13 + ArtUnc_6: 1.1950603216690673e-13 + ArtUnc_7: 1.177091946862514e-10 + ArtUnc_8: -1.4179526772949043e-09 + ArtUnc_9: 3.140778790121353e-11 + ArtUnc_10: 1.5709557509707463e-09 + ArtUnc_11: -3.1240802535447885e-09 + ArtUnc_12: -2.518727268235315e-10 + ArtUnc_13: -7.045050237369745e-09 + ArtUnc_14: -2.4889382837967554e-11 + ArtUnc_15: -6.151766026825989e-11 + ArtUnc_16: 5.582573905562612e-12 + ArtUnc_17: 3.960908745469827e-10 + ArtUnc_18: -1.2186192497896489e-11 + ArtUnc_19: -1.2867497103024744e-09 + ArtUnc_20: -4.035383590529554e-09 + ArtUnc_21: 2.330392107937851e-10 + ArtUnc_22: -4.487504907636002e-08 + ArtUnc_23: -7.936318198209268e-10 + ArtUnc_24: 2.371442818121514e-08 + ArtUnc_25: 1.574975239816285e-08 + ArtUnc_26: -4.309261165127264e-09 + ArtUnc_27: -9.7984030705831e-08 + ArtUnc_28: -4.944339987828451e-09 + ArtUnc_29: -5.412031033562565e-08 + ArtUnc_30: -2.2124207161280466e-08 + ArtUnc_31: 9.099620059241552e-09 + ArtUnc_32: -2.4212284907869234e-07 + ArtUnc_33: 7.643746265587136e-11 + ArtUnc_34: -2.531175015901532e-09 + ArtUnc_35: -4.649292937064408e-09 + ArtUnc_36: 2.1601831095153314e-10 + ArtUnc_37: 1.4995257681146108e-09 + ArtUnc_38: -1.5743773344953369e-10 + ArtUnc_39: 7.455873430691035e-09 + ArtUnc_40: -4.957949681526738e-11 + ArtUnc_41: -2.9637995206043367e-08 + ArtUnc_42: 1.4364644653972603e-09 + ArtUnc_43: 8.010985922253236e-08 + ArtUnc_44: 1.1402569191300257e-08 + ArtUnc_45: -4.70319844532275e-10 + ArtUnc_46: 1.0023033931634319e-08 + ArtUnc_47: 7.628779905008244e-09 + ArtUnc_48: -4.3229700830991953e-10 + ArtUnc_49: 3.164264343360258e-07 + ArtUnc_50: 1.244365852390118e-08 + ArtUnc_51: -5.759850014053632e-08 + ArtUnc_52: 4.17163704070633e-08 + ArtUnc_53: -2.931442056952663e-09 + ArtUnc_54: -3.5184202673116693e-09 + ArtUnc_55: -4.5051482319390554e-07 + ArtUnc_56: 4.7492041930752146e-07 + ArtUnc_57: 1.4149340622586435e-07 + ArtUnc_58: -5.06873105407668e-07 + ArtUnc_59: -4.014248528158959e-09 + ArtUnc_60: -6.525009893137404e-07 + ArtUnc_61: 7.476582192990769e-10 + ArtUnc_62: -6.224558013585522e-08 + ArtUnc_63: 5.947352900612051e-09 + ArtUnc_64: -4.6023902239792263e-07 + ArtUnc_65: 1.469646262779821e-08 + ArtUnc_66: -8.742215561408021e-07 + ArtUnc_67: 2.685437413470425e-07 + ArtUnc_68: -2.515600809491753e-08 + ArtUnc_69: -9.129200909773729e-08 + ArtUnc_70: 2.0080733355498856e-06 + ArtUnc_71: 2.981855795298056e-08 + ArtUnc_72: 1.2038558502867265e-06 + ArtUnc_73: -3.738286373691037e-09 + ArtUnc_74: 7.397192237967834e-06 + ArtUnc_75: -1.1239358915581491e-07 + ArtUnc_76: 1.9660642274449898e-07 + ArtUnc_77: 2.0281556677642994e-07 + ArtUnc_78: 1.2953754330491275e-05 + ArtUnc_79: -2.117380884707036e-05 + ArtUnc_80: 3.964956462254869e-07 + ArtUnc_81: 2.6821229728058613e-07 + ArtUnc_82: -5.169686328983974e-08 + ArtUnc_83: -1.592215483144535e-07 + ArtUnc_84: 7.311494935121575e-07 + ArtUnc_85: 2.9648856667801234e-09 + ArtUnc_86: -2.056962891334345e-08 + ArtUnc_87: -2.2139520866865153e-08 + ArtUnc_88: -3.832132486986376e-08 + ArtUnc_89: -9.456451570329005e-07 + ArtUnc_90: 2.959816264128777e-07 + ArtUnc_91: 1.36460411354434e-07 + ArtUnc_92: 1.6368869442189318e-06 + ArtUnc_93: -4.62625192359946e-09 + ArtUnc_94: -2.907941765743483e-08 + ArtUnc_95: 1.2467227997260188e-08 + ArtUnc_96: -9.500208452465233e-09 - stat: 0 Uncorr: 1.45e-06 RCES: 1.3424093030350319e-05 @@ -5676,99 +5676,99 @@ bins: ModelRW_2: 1.6481776780546143e-05 JES_1: 1.0960935464183702e-05 JES_2: 1.0960935464183702e-05 - ArtUnc_1: 7.525551366001484e-19 - ArtUnc_2: 1.701106506288059e-18 - ArtUnc_3: 2.2088374552042653e-17 - ArtUnc_4: 1.2241962773743911e-16 - ArtUnc_5: 4.1406436477623455e-18 - ArtUnc_6: 1.8386320253768616e-18 - ArtUnc_7: 4.662605559313038e-16 - ArtUnc_8: 3.695906971419403e-15 - ArtUnc_9: 4.122837894431185e-17 - ArtUnc_10: -1.6732250972111107e-14 - ArtUnc_11: 2.906247935821747e-14 - ArtUnc_12: -2.0735468235288463e-15 - ArtUnc_13: -1.0956125714153958e-13 - ArtUnc_14: -7.645551120169018e-16 - ArtUnc_15: 4.445232600208668e-15 - ArtUnc_16: -2.675055029764981e-16 - ArtUnc_17: -6.686565834916709e-15 - ArtUnc_18: -1.8429778988880834e-16 - ArtUnc_19: -5.309393895649595e-14 - ArtUnc_20: 1.6034412809639874e-13 - ArtUnc_21: -9.114499218152497e-15 - ArtUnc_22: 2.8160976159435096e-12 - ArtUnc_23: 5.926044547378676e-14 - ArtUnc_24: -1.9827743594024963e-12 - ArtUnc_25: -2.8747873250231603e-13 - ArtUnc_26: 1.604025822026323e-13 - ArtUnc_27: 8.751908398158677e-12 - ArtUnc_28: -3.2430577908284667e-13 - ArtUnc_29: -6.553866975505245e-12 - ArtUnc_30: 2.568968732181833e-12 - ArtUnc_31: 1.0753638368186946e-12 - ArtUnc_32: 4.1544951068355053e-11 - ArtUnc_33: 1.7348281782282054e-15 - ArtUnc_34: -1.504056954162059e-12 - ArtUnc_35: 7.984848532177075e-13 - ArtUnc_36: -2.4281165361645328e-11 - ArtUnc_37: -4.7504459545822565e-11 - ArtUnc_38: -9.352170382311762e-12 - ArtUnc_39: -5.003011145125786e-11 - ArtUnc_40: -9.794687296308413e-13 - ArtUnc_41: -3.3840096663886415e-10 - ArtUnc_42: -9.145350862669522e-12 - ArtUnc_43: 5.444991103340965e-10 - ArtUnc_44: 2.164790135154207e-10 - ArtUnc_45: 5.036337926644948e-12 - ArtUnc_46: 7.572012011905827e-11 - ArtUnc_47: 1.3122931491819182e-11 - ArtUnc_48: 1.623502336058403e-12 - ArtUnc_49: -1.446386899261996e-09 - ArtUnc_50: -6.487919379622005e-11 - ArtUnc_51: -2.5640452705376276e-10 - ArtUnc_52: 1.9086491769857173e-11 - ArtUnc_53: 6.004925716784896e-11 - ArtUnc_54: -1.3528719568469096e-11 - ArtUnc_55: 1.1799485815549566e-08 - ArtUnc_56: -9.975340208778051e-09 - ArtUnc_57: -2.2521217812461434e-09 - ArtUnc_58: 2.8046997584408207e-08 - ArtUnc_59: 2.2103976595498915e-10 - ArtUnc_60: -3.3649817451945465e-08 - ArtUnc_61: -1.1740658032909334e-10 - ArtUnc_62: -2.4023398508546184e-09 - ArtUnc_63: 1.7391658748616523e-10 - ArtUnc_64: -8.892744340589307e-08 - ArtUnc_65: -4.7974890767403846e-09 - ArtUnc_66: -1.223645169680704e-07 - ArtUnc_67: 3.0406525795472946e-08 - ArtUnc_68: -6.8622035401585674e-09 - ArtUnc_69: 7.665774654291003e-09 - ArtUnc_70: -1.480625126632562e-07 - ArtUnc_71: -2.0979076256279665e-09 - ArtUnc_72: -5.12220960070288e-08 - ArtUnc_73: -1.3362480636346698e-10 - ArtUnc_74: -2.7175826221355415e-07 - ArtUnc_75: -4.951873092023613e-08 - ArtUnc_76: 3.1980767459502424e-09 - ArtUnc_77: 1.1602659070867372e-08 - ArtUnc_78: 2.0132775223614465e-07 - ArtUnc_79: -3.730666429976659e-07 - ArtUnc_80: 5.992296682740758e-09 - ArtUnc_81: -4.792623496430073e-09 - ArtUnc_82: 1.0624184782711253e-09 - ArtUnc_83: 9.610625844063604e-08 - ArtUnc_84: 1.269439672133434e-07 - ArtUnc_85: 6.457187616301165e-07 - ArtUnc_86: -2.931789992925559e-07 - ArtUnc_87: -3.93721173068405e-07 - ArtUnc_88: -1.8185695363265478e-07 - ArtUnc_89: 4.955158818554088e-08 - ArtUnc_90: -1.0973584506276621e-06 - ArtUnc_91: -6.700710340023026e-06 - ArtUnc_92: 4.1782353724122134e-08 - ArtUnc_93: 6.932943847533906e-08 - ArtUnc_94: 1.1183383282740128e-07 - ArtUnc_95: -2.9181645166768724e-06 - ArtUnc_96: -6.066089548558548e-07 + ArtUnc_1: 7.525551332810761e-19 + ArtUnc_2: 1.7011065060993183e-18 + ArtUnc_3: 2.2088374550225672e-17 + ArtUnc_4: 1.2241962774379785e-16 + ArtUnc_5: 4.140643639484835e-18 + ArtUnc_6: 1.838631669346577e-18 + ArtUnc_7: 4.662605559246975e-16 + ArtUnc_8: 3.6959069714146945e-15 + ArtUnc_9: 4.1228378670082187e-17 + ArtUnc_10: -1.6732250973069617e-14 + ArtUnc_11: 2.906247935746357e-14 + ArtUnc_12: 2.07354682755585e-15 + ArtUnc_13: 1.0956125714146772e-13 + ArtUnc_14: -7.645551038861831e-16 + ArtUnc_15: 4.445232595615555e-15 + ArtUnc_16: -2.675054665071818e-16 + ArtUnc_17: -6.686565834819298e-15 + ArtUnc_18: 1.8429779658553334e-16 + ArtUnc_19: 5.3093938955127536e-14 + ArtUnc_20: 1.6034412809324093e-13 + ArtUnc_21: -9.114499216275052e-15 + ArtUnc_22: 2.8160976159407595e-12 + ArtUnc_23: 5.926044542417139e-14 + ArtUnc_24: -1.9827743594159214e-12 + ArtUnc_25: -2.8747873249342066e-13 + ArtUnc_26: 1.6040258231256255e-13 + ArtUnc_27: 8.751908398152517e-12 + ArtUnc_28: 3.243057790862044e-13 + ArtUnc_29: 6.553866976012681e-12 + ArtUnc_30: 2.568968732178255e-12 + ArtUnc_31: -1.0753638369503453e-12 + ArtUnc_32: 4.1544951068356036e-11 + ArtUnc_33: -1.7348277059421816e-15 + ArtUnc_34: -1.5040569541908268e-12 + ArtUnc_35: -7.984848532209664e-13 + ArtUnc_36: 2.4281165361617614e-11 + ArtUnc_37: -4.750445954573314e-11 + ArtUnc_38: 9.352170382692404e-12 + ArtUnc_39: 5.0030111451300346e-11 + ArtUnc_40: -9.794687305802967e-13 + ArtUnc_41: -3.384009666384961e-10 + ArtUnc_42: 9.145350864578396e-12 + ArtUnc_43: 5.444991103342456e-10 + ArtUnc_44: 2.164790135155239e-10 + ArtUnc_45: -5.036337921055136e-12 + ArtUnc_46: 7.572012011880331e-11 + ArtUnc_47: 1.3122931491457895e-11 + ArtUnc_48: -1.6235023239829938e-12 + ArtUnc_49: 1.4463868992619182e-09 + ArtUnc_50: 6.487919379608554e-11 + ArtUnc_51: 2.564045270519593e-10 + ArtUnc_52: -1.9086491770607894e-11 + ArtUnc_53: -6.004925716718752e-11 + ArtUnc_54: 1.3528719560799027e-11 + ArtUnc_55: 1.1799485815545221e-08 + ArtUnc_56: -9.975340208781463e-09 + ArtUnc_57: -2.2521217812471348e-09 + ArtUnc_58: 2.804699758441273e-08 + ArtUnc_59: 2.2103976595410218e-10 + ArtUnc_60: 3.3649817451941395e-08 + ArtUnc_61: 1.1740658032824714e-10 + ArtUnc_62: -2.402339850854667e-09 + ArtUnc_63: 1.7391658748525373e-10 + ArtUnc_64: 8.89274434058841e-08 + ArtUnc_65: -4.7974890767402026e-09 + ArtUnc_66: 1.22364516968084e-07 + ArtUnc_67: 3.040652579547578e-08 + ArtUnc_68: -6.862203540163716e-09 + ArtUnc_69: -7.665774654289796e-09 + ArtUnc_70: 1.480625126632594e-07 + ArtUnc_71: 2.0979076256282548e-09 + ArtUnc_72: 5.122209600702832e-08 + ArtUnc_73: 1.3362480636831328e-10 + ArtUnc_74: 2.717582622135473e-07 + ArtUnc_75: -4.951873092024478e-08 + ArtUnc_76: 3.198076745946251e-09 + ArtUnc_77: 1.1602659070872547e-08 + ArtUnc_78: 2.0132775223619658e-07 + ArtUnc_79: -3.7306664299767404e-07 + ArtUnc_80: 5.992296682747596e-09 + ArtUnc_81: -4.792623496419435e-09 + ArtUnc_82: -1.0624184782695466e-09 + ArtUnc_83: 9.610625844064377e-08 + ArtUnc_84: -1.2694396721333717e-07 + ArtUnc_85: -6.457187616301097e-07 + ArtUnc_86: -2.9317899929255475e-07 + ArtUnc_87: -3.9372117306839423e-07 + ArtUnc_88: 4.955158818554302e-08 + ArtUnc_89: 1.8185695363269428e-07 + ArtUnc_90: 1.097358450627666e-06 + ArtUnc_91: -6.7007103400230265e-06 + ArtUnc_92: -4.1782353724083415e-08 + ArtUnc_93: 6.93294384753824e-08 + ArtUnc_94: 1.1183383282743e-07 + ArtUnc_95: -2.9181645166768758e-06 + ArtUnc_96: -6.066089548558399e-07 diff --git a/nnpdf_data/nnpdf_data/new_commondata/H1_2JET_319GEV_290PB-1_DIF/uncertainties.yaml b/nnpdf_data/nnpdf_data/new_commondata/H1_2JET_319GEV_290PB-1_DIF/uncertainties.yaml index bb7bebcfdd..9440cf680c 100644 --- a/nnpdf_data/nnpdf_data/new_commondata/H1_2JET_319GEV_290PB-1_DIF/uncertainties.yaml +++ b/nnpdf_data/nnpdf_data/new_commondata/H1_2JET_319GEV_290PB-1_DIF/uncertainties.yaml @@ -460,101 +460,101 @@ bins: JES_1: 11.81603871708916 JES_2: 11.81603871708916 ArtUnc_1: 0.862390513360958 - ArtUnc_2: -0.0585223341972758 - ArtUnc_3: -0.015617481349614281 - ArtUnc_4: -0.02865956582028331 - ArtUnc_5: 0.024560404389025382 - ArtUnc_6: 0.01369754229357918 - ArtUnc_7: -0.03126673580103048 - ArtUnc_8: 8.052766469309573 - ArtUnc_9: 0.0038695705497448643 - ArtUnc_10: -5.440340482204737 - ArtUnc_11: 0.5063656603501598 - ArtUnc_12: 0.13134908148401084 - ArtUnc_13: 1.5029665042315419 - ArtUnc_14: -0.028689992197552618 - ArtUnc_15: 0.18002815502716843 - ArtUnc_16: 0.014250407028977898 - ArtUnc_17: -0.04851242069981796 - ArtUnc_18: 0.29940436496149647 - ArtUnc_19: -0.07767460929124594 - ArtUnc_20: -0.2717761425707225 - ArtUnc_21: 0.04717710535467236 - ArtUnc_22: 0.03848277959299325 - ArtUnc_23: -0.014740246882677633 - ArtUnc_24: -0.002989650130971767 - ArtUnc_25: 0.04036369541606758 - ArtUnc_26: 0.09302467152124247 - ArtUnc_27: 0.014597160954111526 - ArtUnc_28: 0.03227102341406198 - ArtUnc_29: -0.011743211789941789 - ArtUnc_30: -0.020758408969679874 - ArtUnc_31: -0.011241230788636574 - ArtUnc_32: 0.007682375996861734 - ArtUnc_33: 0.006482760235230509 - ArtUnc_34: -0.008580794784232671 - ArtUnc_35: -0.004056435036263777 - ArtUnc_36: 0.0008921238755738536 - ArtUnc_37: -0.0021935306004609665 - ArtUnc_38: -0.0009761650792591071 - ArtUnc_39: -0.0005096127087808091 - ArtUnc_40: -0.0005619835756197858 - ArtUnc_41: -0.0031631785001944813 - ArtUnc_42: -0.002833615200537957 - ArtUnc_43: 0.0007371773212970561 - ArtUnc_44: 0.0013088878222306671 - ArtUnc_45: -0.0012901354777218276 - ArtUnc_46: 0.000796063416044034 - ArtUnc_47: 0.0016605377633478315 - ArtUnc_48: -0.0004132208519303545 - ArtUnc_49: -0.0007064806487292458 - ArtUnc_50: -0.0008218480678580298 - ArtUnc_51: -0.0007009699714016416 - ArtUnc_52: 0.00017757524658647763 - ArtUnc_53: -9.061136987680712e-06 - ArtUnc_54: -0.00013438631943932464 - ArtUnc_55: 7.824198600373515e-05 - ArtUnc_56: -0.0001362899566796528 - ArtUnc_57: -9.964845519297443e-06 - ArtUnc_58: 1.122877378876763e-05 - ArtUnc_59: 1.3513642131207025e-05 - ArtUnc_60: 4.997737295236754e-06 - ArtUnc_61: -1.0751982835758077e-05 - ArtUnc_62: -6.136271969468173e-06 - ArtUnc_63: 7.0241953046404945e-06 - ArtUnc_64: 1.104379494273857e-05 - ArtUnc_65: 6.8579771992259895e-06 - ArtUnc_66: 1.5782301702338166e-06 - ArtUnc_67: 1.8570889589515615e-07 - ArtUnc_68: 7.24148349806898e-06 - ArtUnc_69: 9.093223014310866e-06 - ArtUnc_70: -4.916213171292747e-07 - ArtUnc_71: -5.360034925647852e-07 - ArtUnc_72: 2.251432226795964e-07 - ArtUnc_73: 1.5427469524348637e-06 - ArtUnc_74: 2.3515148923935714e-06 - ArtUnc_75: 4.3175359448502795e-07 - ArtUnc_76: 1.127293496046763e-07 - ArtUnc_77: 7.517926745289768e-07 - ArtUnc_78: -5.095707024872688e-07 - ArtUnc_79: -7.866491425713704e-07 - ArtUnc_80: -9.43488938444306e-08 - ArtUnc_81: -1.1980382405504978e-08 - ArtUnc_82: -4.258541093895629e-10 - ArtUnc_83: -4.412159234028068e-08 - ArtUnc_84: -2.5736692776210896e-08 - ArtUnc_85: 4.2710197772579343e-08 - ArtUnc_86: 7.8015829568531e-09 - ArtUnc_87: 5.735037683417709e-10 - ArtUnc_88: -9.147156941503064e-08 - ArtUnc_89: -1.3073151315178207e-07 - ArtUnc_90: -8.733441907194588e-08 - ArtUnc_91: 2.3566459633314016e-08 - ArtUnc_92: -8.348804058711307e-09 - ArtUnc_93: -1.7661293696835112e-08 - ArtUnc_94: 4.852624460880265e-09 - ArtUnc_95: -2.0837586511281873e-08 - ArtUnc_96: -8.364543817190377e-09 + ArtUnc_2: -0.058522334197274935 + ArtUnc_3: -0.015617481349614557 + ArtUnc_4: -0.02865956582028775 + ArtUnc_5: 0.024560404389031128 + ArtUnc_6: -0.013697542293582938 + ArtUnc_7: 0.0312667358010939 + ArtUnc_8: -8.052766469309553 + ArtUnc_9: -0.003869570549781359 + ArtUnc_10: -5.440340482204765 + ArtUnc_11: 0.5063656603501565 + ArtUnc_12: 0.13134908148404048 + ArtUnc_13: 1.5029665042315448 + ArtUnc_14: -0.02868999219755132 + ArtUnc_15: 0.1800281550271725 + ArtUnc_16: 0.01425040702897497 + ArtUnc_17: 0.04851242069982236 + ArtUnc_18: -0.2994043649614981 + ArtUnc_19: 0.07767460929125639 + ArtUnc_20: 0.2717761425707195 + ArtUnc_21: 0.047177105354672885 + ArtUnc_22: 0.03848277959299294 + ArtUnc_23: 0.014740246882677685 + ArtUnc_24: 0.0029896501309716835 + ArtUnc_25: -0.04036369541606761 + ArtUnc_26: -0.09302467152124266 + ArtUnc_27: -0.014597160954110492 + ArtUnc_28: -0.032271023414061836 + ArtUnc_29: 0.011743211789942889 + ArtUnc_30: -0.02075840896967938 + ArtUnc_31: 0.011241230788636522 + ArtUnc_32: 0.007682375996866057 + ArtUnc_33: 0.006482760235225154 + ArtUnc_34: 0.008580794784233063 + ArtUnc_35: 0.004056435036263157 + ArtUnc_36: 0.0008921238755738741 + ArtUnc_37: -0.0021935306004609617 + ArtUnc_38: 0.0009761650792590337 + ArtUnc_39: -0.0005096127087808053 + ArtUnc_40: -0.0005619835756197868 + ArtUnc_41: -0.0031631785001945928 + ArtUnc_42: -0.002833615200537926 + ArtUnc_43: 0.000737177321297061 + ArtUnc_44: 0.001308887822230703 + ArtUnc_45: -0.0012901354777218469 + ArtUnc_46: 0.0007960634160440661 + ArtUnc_47: -0.0016605377633478362 + ArtUnc_48: 0.00041322085193029644 + ArtUnc_49: 0.0007064806487292607 + ArtUnc_50: 0.0008218480678580217 + ArtUnc_51: -0.00013628995667965135 + ArtUnc_52: 7.824198600373727e-05 + ArtUnc_53: 0.0007009699714016272 + ArtUnc_54: -0.00017757524658647804 + ArtUnc_55: 9.061136987685657e-06 + ArtUnc_56: -0.00013438631943932383 + ArtUnc_57: 9.964845519297726e-06 + ArtUnc_58: -1.1228773788767014e-05 + ArtUnc_59: -1.3513642131206547e-05 + ArtUnc_60: -4.997737295236594e-06 + ArtUnc_61: 1.0751982835757547e-05 + ArtUnc_62: 6.1362719694684646e-06 + ArtUnc_63: -7.024195304640522e-06 + ArtUnc_64: 1.104379494273848e-05 + ArtUnc_65: -6.857977199225964e-06 + ArtUnc_66: 1.578230170233843e-06 + ArtUnc_67: 1.8570889589523063e-07 + ArtUnc_68: 7.241483498069554e-06 + ArtUnc_69: 9.093223014310423e-06 + ArtUnc_70: -2.2514322267953912e-07 + ArtUnc_71: 4.916213171292535e-07 + ArtUnc_72: -5.360034925647657e-07 + ArtUnc_73: 1.5427469524348488e-06 + ArtUnc_74: -2.3515148923936133e-06 + ArtUnc_75: -4.317535944850396e-07 + ArtUnc_76: 1.1272934960468206e-07 + ArtUnc_77: 7.517926745290272e-07 + ArtUnc_78: 5.095707024872422e-07 + ArtUnc_79: -7.8664914257136e-07 + ArtUnc_80: 9.434889384442472e-08 + ArtUnc_81: -1.1980382405502867e-08 + ArtUnc_82: -4.258541093895767e-10 + ArtUnc_83: -4.4121592340278306e-08 + ArtUnc_84: -2.5736692776212392e-08 + ArtUnc_85: 4.2710197772578146e-08 + ArtUnc_86: 8.348804058710194e-09 + ArtUnc_87: 1.766129369683349e-08 + ArtUnc_88: 7.80158295685783e-09 + ArtUnc_89: -5.735037683417001e-10 + ArtUnc_90: -9.147156941503087e-08 + ArtUnc_91: 2.083758651128185e-08 + ArtUnc_92: 4.8526244608792894e-09 + ArtUnc_93: -1.3073151315177993e-07 + ArtUnc_94: 8.733441907194496e-08 + ArtUnc_95: 2.3566459633314595e-08 + ArtUnc_96: -8.364543817190556e-09 - stat: 0 Uncorr: 1.85 RCES: 1.008334858814273 @@ -570,102 +570,102 @@ bins: ModelRW_2: 5.141019852616794 JES_1: 2.563969188582421 JES_2: 2.563969188582421 - ArtUnc_1: 0.13203839691016306 - ArtUnc_2: -0.0018981155812128453 - ArtUnc_3: 0.030449734167063695 - ArtUnc_4: 0.016599559452784796 - ArtUnc_5: -0.007039446793514841 - ArtUnc_6: 0.001674499070408551 - ArtUnc_7: -0.00015496188070864445 - ArtUnc_8: -0.04741118864007381 - ArtUnc_9: -0.0007186835313007978 - ArtUnc_10: -0.43052640155181093 - ArtUnc_11: -0.3402840139397078 - ArtUnc_12: 0.39895212060858115 - ArtUnc_13: 0.09101270589019789 - ArtUnc_14: -0.04546627440151189 - ArtUnc_15: 0.009692340009631114 - ArtUnc_16: 0.033194936534638134 - ArtUnc_17: -0.05060998404362767 - ArtUnc_18: 0.06042621545255223 - ArtUnc_19: -0.0421258089941154 - ArtUnc_20: -0.015698438313400037 - ArtUnc_21: -0.02794838949429772 - ArtUnc_22: 0.037847574133300005 - ArtUnc_23: -0.021509993525688612 - ArtUnc_24: 0.0004039371438069027 - ArtUnc_25: -3.271928974855699 - ArtUnc_26: -1.3315714679588317 - ArtUnc_27: -0.38737893889621744 - ArtUnc_28: -0.6847540037957475 - ArtUnc_29: -0.02089315840519039 - ArtUnc_30: 0.24155149523280106 - ArtUnc_31: 0.05080766078860316 - ArtUnc_32: -0.08409477654657979 - ArtUnc_33: -0.056203225074044176 - ArtUnc_34: 0.0816718202411427 - ArtUnc_35: 0.08773620671065417 - ArtUnc_36: -0.03706189225462979 - ArtUnc_37: 0.0024416941282670228 - ArtUnc_38: -0.005311259237549454 - ArtUnc_39: 0.004140830387009792 - ArtUnc_40: 0.0023273358670159654 - ArtUnc_41: 0.016608369052247947 - ArtUnc_42: 0.017377037665656576 - ArtUnc_43: -0.00747387858271836 - ArtUnc_44: -0.011366997835019018 - ArtUnc_45: 0.012081466399688648 - ArtUnc_46: -0.006010521471543163 - ArtUnc_47: -0.014787560023833005 - ArtUnc_48: 0.00471112823989923 - ArtUnc_49: 0.007430677269866008 - ArtUnc_50: 0.0068079799094667255 - ArtUnc_51: 0.007292737341519148 - ArtUnc_52: -0.0021796124008489014 - ArtUnc_53: -0.0010621839197682802 - ArtUnc_54: 0.00038932020161367266 - ArtUnc_55: -0.00013504142134225413 - ArtUnc_56: 0.0006050043502575571 - ArtUnc_57: -2.8675619155665895e-06 - ArtUnc_58: 0.00011801018194305257 - ArtUnc_59: -0.00015106725253573102 - ArtUnc_60: -5.0107640597455927e-05 - ArtUnc_61: 9.86699971619997e-06 - ArtUnc_62: 5.093667125677953e-05 - ArtUnc_63: -1.3994054984177e-06 - ArtUnc_64: -7.893786420285647e-05 - ArtUnc_65: -6.916046599340792e-05 - ArtUnc_66: 4.153359855592597e-06 - ArtUnc_67: -3.774018839093155e-06 - ArtUnc_68: -4.220146094319829e-06 - ArtUnc_69: -5.492019682321761e-06 - ArtUnc_70: -6.1693509047642875e-06 - ArtUnc_71: -1.923963939951251e-06 - ArtUnc_72: 4.037667501783322e-06 - ArtUnc_73: -2.4791489574757286e-06 - ArtUnc_74: -1.4911766742090438e-05 - ArtUnc_75: -2.4181351515255923e-06 - ArtUnc_76: -4.5954891167815134e-07 - ArtUnc_77: -4.506827325797678e-06 - ArtUnc_78: 3.1715976843935505e-06 - ArtUnc_79: 7.267656447245819e-06 - ArtUnc_80: -8.869255228243919e-07 - ArtUnc_81: -3.4742103213119546e-07 - ArtUnc_82: -3.2867253404633533e-09 - ArtUnc_83: 4.799206644697365e-07 - ArtUnc_84: 4.956056692359648e-07 - ArtUnc_85: -3.057175107316412e-07 - ArtUnc_86: -3.941215089842415e-07 - ArtUnc_87: 4.0547287225579874e-07 - ArtUnc_88: -1.3450800291205406e-08 - ArtUnc_89: 3.038985099760333e-07 - ArtUnc_90: 2.603149510967373e-07 - ArtUnc_91: 2.5716364133559936e-07 - ArtUnc_92: 6.513106602556618e-08 - ArtUnc_93: 1.2852660797314178e-07 - ArtUnc_94: -1.941848074855664e-08 - ArtUnc_95: 7.577235197068728e-08 - ArtUnc_96: -1.791599555890439e-09 + ArtUnc_1: 0.1320383969101628 + ArtUnc_2: -0.0018981155812127922 + ArtUnc_3: 0.030449734167063938 + ArtUnc_4: 0.016599559452785167 + ArtUnc_5: -0.007039446793516058 + ArtUnc_6: -0.0016744990704085601 + ArtUnc_7: 0.00015496188070738973 + ArtUnc_8: 0.04741118864007513 + ArtUnc_9: 0.0007186835312962168 + ArtUnc_10: -0.4305264015518117 + ArtUnc_11: -0.3402840139397071 + ArtUnc_12: 0.3989521206085828 + ArtUnc_13: 0.09101270589019123 + ArtUnc_14: -0.0454662744015132 + ArtUnc_15: 0.009692340009628061 + ArtUnc_16: 0.03319493653463854 + ArtUnc_17: 0.05060998404362843 + ArtUnc_18: -0.06042621545255102 + ArtUnc_19: 0.04212580899411449 + ArtUnc_20: 0.015698438313396287 + ArtUnc_21: -0.027948389494300365 + ArtUnc_22: 0.03784757413331094 + ArtUnc_23: 0.021509993525674447 + ArtUnc_24: -0.0004039371438018868 + ArtUnc_25: 3.2719289748556997 + ArtUnc_26: 1.3315714679588329 + ArtUnc_27: 0.3873789388962019 + ArtUnc_28: 0.6847540037957462 + ArtUnc_29: 0.020893158405177158 + ArtUnc_30: 0.24155149523280334 + ArtUnc_31: -0.05080766078860241 + ArtUnc_32: -0.08409477654661683 + ArtUnc_33: -0.056203225073985175 + ArtUnc_34: -0.08167182024114937 + ArtUnc_35: -0.08773620671064794 + ArtUnc_36: -0.037061892254628304 + ArtUnc_37: 0.0024416941282667287 + ArtUnc_38: 0.005311259237549614 + ArtUnc_39: 0.004140830387009761 + ArtUnc_40: 0.0023273358670159597 + ArtUnc_41: 0.016608369052248613 + ArtUnc_42: 0.017377037665656427 + ArtUnc_43: -0.007473878582718413 + ArtUnc_44: -0.01136699783501941 + ArtUnc_45: 0.012081466399688854 + ArtUnc_46: -0.006010521471543492 + ArtUnc_47: 0.014787560023833185 + ArtUnc_48: -0.004711128239898752 + ArtUnc_49: -0.007430677269866188 + ArtUnc_50: -0.006807979909466713 + ArtUnc_51: 0.0006050043502575601 + ArtUnc_52: -0.0001350414213422827 + ArtUnc_53: -0.0072927373415190835 + ArtUnc_54: 0.0021796124008489058 + ArtUnc_55: 0.0010621839197683008 + ArtUnc_56: 0.00038932020161372015 + ArtUnc_57: 2.8675619155647794e-06 + ArtUnc_58: -0.00011801018194304885 + ArtUnc_59: 0.00015106725253573715 + ArtUnc_60: 5.010764059745741e-05 + ArtUnc_61: -9.866999716198439e-06 + ArtUnc_62: -5.093667125678123e-05 + ArtUnc_63: 1.3994054984194227e-06 + ArtUnc_64: -7.893786420285958e-05 + ArtUnc_65: 6.916046599341139e-05 + ArtUnc_66: 4.153359855595592e-06 + ArtUnc_67: -3.7740188390941575e-06 + ArtUnc_68: -4.220146094322869e-06 + ArtUnc_69: -5.492019682323398e-06 + ArtUnc_70: -4.037667501783616e-06 + ArtUnc_71: 6.169350904763874e-06 + ArtUnc_72: -1.9239639399510934e-06 + ArtUnc_73: -2.479148957476188e-06 + ArtUnc_74: 1.4911766742091386e-05 + ArtUnc_75: 2.4181351515257655e-06 + ArtUnc_76: -4.5954891167824075e-07 + ArtUnc_77: -4.5068273257981715e-06 + ArtUnc_78: -3.171597684393666e-06 + ArtUnc_79: 7.267656447246022e-06 + ArtUnc_80: 8.86925522824323e-07 + ArtUnc_81: -3.4742103213120816e-07 + ArtUnc_82: -3.2867253404634625e-09 + ArtUnc_83: 4.799206644697428e-07 + ArtUnc_84: 4.956056692359477e-07 + ArtUnc_85: -3.0571751073164814e-07 + ArtUnc_86: -6.513106602556879e-08 + ArtUnc_87: -1.285266079731519e-07 + ArtUnc_88: -3.941215089842248e-07 + ArtUnc_89: -4.054728722557868e-07 + ArtUnc_90: -1.3450800291205652e-08 + ArtUnc_91: -7.577235197069439e-08 + ArtUnc_92: -1.9418480748555077e-08 + ArtUnc_93: 3.038985099760247e-07 + ArtUnc_94: -2.603149510967458e-07 + ArtUnc_95: 2.5716364133558877e-07 + ArtUnc_96: -1.7915995558900218e-09 - stat: 0 Uncorr: 0.397 RCES: 0.2899119512455463 @@ -681,102 +681,102 @@ bins: ModelRW_2: 0.9348022357964278 JES_1: 1.0800324621683832 JES_2: 1.0800324621683832 - ArtUnc_1: 0.009828482441487735 - ArtUnc_2: -0.004608717000644577 - ArtUnc_3: -0.002367722967671028 - ArtUnc_4: -0.0002992603290157714 - ArtUnc_5: -0.00012690827336530388 - ArtUnc_6: 6.221066045210017e-06 - ArtUnc_7: 8.451570832514642e-05 - ArtUnc_8: -0.027510575217467394 - ArtUnc_9: -1.5723655122747197e-05 - ArtUnc_10: 0.01782520377434654 - ArtUnc_11: -0.006729346020043541 - ArtUnc_12: 0.015601139436508949 - ArtUnc_13: -0.007047244784116721 - ArtUnc_14: -0.00655217351819557 - ArtUnc_15: -0.005325434628899753 - ArtUnc_16: 0.006491767310628188 - ArtUnc_17: 0.003418023898827354 - ArtUnc_18: -0.0016271913888615047 - ArtUnc_19: 0.0010176831113117685 - ArtUnc_20: -0.0012412268220375559 - ArtUnc_21: 0.0013910730652472807 - ArtUnc_22: -0.0009017674683387694 - ArtUnc_23: -4.58580457396342e-05 - ArtUnc_24: 0.0001413221668143694 - ArtUnc_25: -0.048844340697329666 - ArtUnc_26: -0.04181590905251658 - ArtUnc_27: -0.3258966386876538 - ArtUnc_28: 0.046280711933588965 - ArtUnc_29: 0.0308197731950588 - ArtUnc_30: 0.14587854716562434 - ArtUnc_31: 0.001639621949476087 - ArtUnc_32: -0.06785451207482246 - ArtUnc_33: -0.02266181334052346 - ArtUnc_34: 0.04182033033426069 - ArtUnc_35: 0.0690577377189733 - ArtUnc_36: -0.026864389685193148 - ArtUnc_37: -0.004292649218078493 - ArtUnc_38: -0.005080290696072506 - ArtUnc_39: 0.0008362842858754024 - ArtUnc_40: 0.0003095012144621889 - ArtUnc_41: -0.7052015856250874 - ArtUnc_42: -0.6327097492563725 - ArtUnc_43: 0.12172801961898731 - ArtUnc_44: 0.22099531757297722 - ArtUnc_45: -0.23647012932139075 - ArtUnc_46: 0.08099032950666239 - ArtUnc_47: 0.20664841683345464 - ArtUnc_48: -0.03826598893292267 - ArtUnc_49: -0.09491404193287428 - ArtUnc_50: -0.09824741575171746 - ArtUnc_51: -0.09017523379420644 - ArtUnc_52: 0.02814318215868148 - ArtUnc_53: 0.01119679334780394 - ArtUnc_54: -0.003444288089995832 - ArtUnc_55: 0.0017742998422924019 - ArtUnc_56: -0.0046173282151575155 - ArtUnc_57: -0.0010036416826925368 - ArtUnc_58: 0.00282317313894363 - ArtUnc_59: -0.001204653199342814 - ArtUnc_60: -0.0003414476538073429 - ArtUnc_61: -2.5372229813729875e-05 - ArtUnc_62: 0.0003273466917351464 - ArtUnc_63: 0.0002863249146864457 - ArtUnc_64: -0.0006345923426677806 - ArtUnc_65: -0.000538610575124353 - ArtUnc_66: -0.0011505629179389683 - ArtUnc_67: 0.0004560945531370805 - ArtUnc_68: 0.0030148469490411567 - ArtUnc_69: 0.002073800466422449 - ArtUnc_70: -0.0004925221551272268 - ArtUnc_71: -0.00026471775867247964 - ArtUnc_72: 0.00037625735442798074 - ArtUnc_73: 0.00026934779133247223 - ArtUnc_74: 0.00026473689865877446 - ArtUnc_75: 3.59520305997644e-05 - ArtUnc_76: 1.2460882397125119e-06 - ArtUnc_77: 4.642367619192158e-05 - ArtUnc_78: -3.9134180863925706e-05 - ArtUnc_79: -6.51698698504492e-05 - ArtUnc_80: -4.185286658610534e-07 - ArtUnc_81: 1.3553201993634238e-06 - ArtUnc_82: -1.3444472389723267e-09 - ArtUnc_83: -1.3574624362066917e-06 - ArtUnc_84: -3.53029436685307e-06 - ArtUnc_85: 1.2092535550320447e-06 - ArtUnc_86: -7.154831036186798e-06 - ArtUnc_87: 4.0481952286339225e-06 - ArtUnc_88: 2.553863669683852e-06 - ArtUnc_89: -1.0256192208287806e-05 - ArtUnc_90: -3.0734211339617674e-06 - ArtUnc_91: -2.4789324434247186e-06 - ArtUnc_92: 2.3925801886004683e-06 - ArtUnc_93: 2.928764715175451e-06 - ArtUnc_94: -7.50380017785513e-08 - ArtUnc_95: 6.988055593526797e-07 - ArtUnc_96: -9.190338720973444e-08 + ArtUnc_1: 0.009828482441487745 + ArtUnc_2: -0.00460871700064456 + ArtUnc_3: -0.002367722967671026 + ArtUnc_4: -0.00029926032901598235 + ArtUnc_5: -0.00012690827336534974 + ArtUnc_6: -6.2210660451003455e-06 + ArtUnc_7: -8.451570832595379e-05 + ArtUnc_8: 0.02751057521746776 + ArtUnc_9: 1.5723655127338393e-05 + ArtUnc_10: 0.017825203774346893 + ArtUnc_11: -0.006729346020044204 + ArtUnc_12: 0.015601139436504471 + ArtUnc_13: -0.007047244784114975 + ArtUnc_14: -0.0065521735181942676 + ArtUnc_15: -0.005325434628903351 + ArtUnc_16: 0.0064917673106256015 + ArtUnc_17: -0.0034180238988290863 + ArtUnc_18: 0.0016271913888590524 + ArtUnc_19: -0.0010176831113118696 + ArtUnc_20: 0.0012412268220376775 + ArtUnc_21: 0.0013910730652472933 + ArtUnc_22: -0.0009017674683374423 + ArtUnc_23: 4.585804574036141e-05 + ArtUnc_24: -0.0001413221668135053 + ArtUnc_25: 0.048844340697331595 + ArtUnc_26: 0.04181590905252278 + ArtUnc_27: 0.32589663868765795 + ArtUnc_28: -0.046280711933589666 + ArtUnc_29: -0.030819773195066773 + ArtUnc_30: 0.14587854716562404 + ArtUnc_31: -0.0016396219494746182 + ArtUnc_32: -0.0678545120748393 + ArtUnc_33: -0.022661813340476022 + ArtUnc_34: -0.04182033033426591 + ArtUnc_35: -0.06905773771897107 + ArtUnc_36: -0.026864389685190497 + ArtUnc_37: -0.004292649218077433 + ArtUnc_38: 0.0050802906960727345 + ArtUnc_39: 0.0008362842858768569 + ArtUnc_40: 0.0003095012144619919 + ArtUnc_41: -0.7052015856251063 + ArtUnc_42: -0.6327097492563641 + ArtUnc_43: 0.12172801961898926 + ArtUnc_44: 0.22099531757298294 + ArtUnc_45: -0.23647012932139355 + ArtUnc_46: 0.08099032950666608 + ArtUnc_47: -0.20664841683345517 + ArtUnc_48: 0.038265988932915405 + ArtUnc_49: 0.09491404193287561 + ArtUnc_50: 0.09824741575171583 + ArtUnc_51: -0.004617328215157453 + ArtUnc_52: 0.0017742998422925309 + ArtUnc_53: 0.09017523379420407 + ArtUnc_54: -0.028143182158681345 + ArtUnc_55: -0.011196793347803947 + ArtUnc_56: -0.0034442880899961553 + ArtUnc_57: 0.0010036416826926242 + ArtUnc_58: -0.0028231731389436556 + ArtUnc_59: 0.0012046531993427795 + ArtUnc_60: 0.0003414476538073182 + ArtUnc_61: 2.537222981374834e-05 + ArtUnc_62: -0.00032734669173514557 + ArtUnc_63: -0.00028632491468644916 + ArtUnc_64: -0.0006345923426677774 + ArtUnc_65: 0.0005386105751243396 + ArtUnc_66: -0.0011505629179389587 + ArtUnc_67: 0.0004560945531371202 + ArtUnc_68: 0.003014846949041353 + ArtUnc_69: 0.0020738004664223268 + ArtUnc_70: -0.00037625735442800627 + ArtUnc_71: 0.0004925221551271979 + ArtUnc_72: -0.00026471775867246614 + ArtUnc_73: 0.0002693477913324866 + ArtUnc_74: -0.00026473689865880184 + ArtUnc_75: -3.595203059976877e-05 + ArtUnc_76: 1.2460882397148897e-06 + ArtUnc_77: 4.642367619193105e-05 + ArtUnc_78: 3.913418086393189e-05 + ArtUnc_79: -6.51698698504578e-05 + ArtUnc_80: 4.185286658640881e-07 + ArtUnc_81: 1.355320199362528e-06 + ArtUnc_82: -1.3444472389898236e-09 + ArtUnc_83: -1.3574624362073272e-06 + ArtUnc_84: -3.5302943668521003e-06 + ArtUnc_85: 1.2092535550324354e-06 + ArtUnc_86: -2.392580188600286e-06 + ArtUnc_87: -2.9287647151749426e-06 + ArtUnc_88: -7.154831036187616e-06 + ArtUnc_89: -4.048195228634956e-06 + ArtUnc_90: 2.553863669683389e-06 + ArtUnc_91: -6.988055593524728e-07 + ArtUnc_92: -7.503800177848302e-08 + ArtUnc_93: -1.0256192208288061e-05 + ArtUnc_94: 3.073421133961953e-06 + ArtUnc_95: -2.478932443424516e-06 + ArtUnc_96: -9.190338720973543e-08 - stat: 0 Uncorr: 0.0665 RCES: 0.030949302900065454 @@ -792,102 +792,102 @@ bins: ModelRW_2: 0.047963052967883515 JES_1: 0.22174833578856912 JES_2: 0.22174833578856912 - ArtUnc_1: -6.164644459496333e-08 + ArtUnc_1: -6.164644459496338e-08 ArtUnc_2: 3.922489697003599e-06 - ArtUnc_3: 3.676532891100394e-06 - ArtUnc_4: 5.56487344764471e-07 - ArtUnc_5: 6.597432172993162e-07 - ArtUnc_6: -4.992344983074685e-07 - ArtUnc_7: 1.1475159680928933e-07 - ArtUnc_8: 9.85268949055519e-05 - ArtUnc_9: 4.4079656946630887e-07 - ArtUnc_10: 0.00017923445289304494 - ArtUnc_11: 7.616657232720363e-05 - ArtUnc_12: -4.4728975211691914e-05 - ArtUnc_13: -4.079778614206482e-05 - ArtUnc_14: 1.1653214759906138e-05 - ArtUnc_15: 2.9468682734544436e-05 - ArtUnc_16: -4.060088063748322e-05 - ArtUnc_17: -4.898611122436428e-05 - ArtUnc_18: 2.5000894892529564e-05 - ArtUnc_19: -1.889207092898967e-05 - ArtUnc_20: 3.208941532949087e-05 - ArtUnc_21: -3.183327131448302e-05 - ArtUnc_22: 1.902572815062949e-05 - ArtUnc_23: -7.026400508550222e-06 - ArtUnc_24: 5.427374187195018e-07 - ArtUnc_25: -0.0018049794383780081 - ArtUnc_26: 0.0011801587967397737 - ArtUnc_27: 0.00957849418161535 - ArtUnc_28: -0.0008501682735662729 - ArtUnc_29: -0.00090065037085261 - ArtUnc_30: -0.004665811728323799 - ArtUnc_31: -0.00010043484313471119 - ArtUnc_32: 0.0020131234135996206 - ArtUnc_33: 0.0006497633601130008 - ArtUnc_34: -0.0008514052295296936 - ArtUnc_35: -0.0011510551850159917 - ArtUnc_36: -5.32719746779371e-05 - ArtUnc_37: -0.00018763487850364906 - ArtUnc_38: -0.00037460143753174647 - ArtUnc_39: 0.00020843676093660634 - ArtUnc_40: 3.0350509533323387e-05 - ArtUnc_41: 0.1026626014015879 - ArtUnc_42: -0.09840882032617751 - ArtUnc_43: -0.06871362568789526 - ArtUnc_44: -0.00931737469487431 - ArtUnc_45: -0.0351818352211152 - ArtUnc_46: -0.029312409153198712 - ArtUnc_47: -0.013643854055219985 - ArtUnc_48: 0.033826594367277786 - ArtUnc_49: -0.004633542472206927 - ArtUnc_50: -0.02025841501175573 - ArtUnc_51: -0.02252368836875011 - ArtUnc_52: 0.009567457581226341 - ArtUnc_53: 0.009843605589854273 - ArtUnc_54: 0.0015170613413585646 - ArtUnc_55: 0.004771693908959932 - ArtUnc_56: -0.002384075134639636 - ArtUnc_57: -0.06258888615097233 - ArtUnc_58: 0.26121858121934344 - ArtUnc_59: -0.10808008735278968 - ArtUnc_60: -0.023049073521630832 - ArtUnc_61: 0.14287717897481966 - ArtUnc_62: -0.04647436774649933 - ArtUnc_63: -0.05445480327220323 - ArtUnc_64: 0.020264268067554825 - ArtUnc_65: 0.00208377706928161 - ArtUnc_66: 0.06705184198137588 - ArtUnc_67: -0.021510300671448226 - ArtUnc_68: -0.0835583452065412 - ArtUnc_69: -0.042482935947782685 - ArtUnc_70: 0.009286362438022399 - ArtUnc_71: 0.005984455381454777 - ArtUnc_72: -0.0015854931928308486 - ArtUnc_73: 0.0016273501516147152 - ArtUnc_74: 0.001251898970055396 - ArtUnc_75: 5.0258160043944296e-05 - ArtUnc_76: -5.509821488613624e-05 - ArtUnc_77: -0.00014416711829247207 - ArtUnc_78: 0.00010278516747366994 - ArtUnc_79: 0.0006061054586887364 - ArtUnc_80: 6.343135642241622e-05 - ArtUnc_81: 7.291486148517893e-05 - ArtUnc_82: 3.946880946781509e-07 - ArtUnc_83: 0.00013469409234429693 - ArtUnc_84: -0.00010207049142692077 - ArtUnc_85: -0.00010050144195657886 - ArtUnc_86: -0.000207775124867491 - ArtUnc_87: 0.00011443435620056058 - ArtUnc_88: 3.8873770841941044e-05 - ArtUnc_89: -0.0002676195551706335 - ArtUnc_90: -8.669785835344134e-05 - ArtUnc_91: 8.024371620582725e-06 - ArtUnc_92: -0.00011679913164205565 - ArtUnc_93: -7.445854981991481e-05 - ArtUnc_94: 4.009384033284143e-06 - ArtUnc_95: -2.328595519510194e-05 - ArtUnc_96: -2.1333954408291226e-05 + ArtUnc_3: 3.676532891100279e-06 + ArtUnc_4: 5.564873447651579e-07 + ArtUnc_5: 6.59743217294973e-07 + ArtUnc_6: 4.992344983248174e-07 + ArtUnc_7: -1.1475159678064252e-07 + ArtUnc_8: -9.852689490555703e-05 + ArtUnc_9: -4.407965694973057e-07 + ArtUnc_10: 0.0001792344528930398 + ArtUnc_11: 7.616657232721964e-05 + ArtUnc_12: -4.4728975211666266e-05 + ArtUnc_13: -4.0797786142070816e-05 + ArtUnc_14: 1.1653214759857445e-05 + ArtUnc_15: 2.9468682734613832e-05 + ArtUnc_16: -4.060088063743114e-05 + ArtUnc_17: 4.8986111224387076e-05 + ArtUnc_18: -2.500089489249813e-05 + ArtUnc_19: 1.8892070928952376e-05 + ArtUnc_20: -3.2089415329472654e-05 + ArtUnc_21: -3.1833271314447314e-05 + ArtUnc_22: 1.9025728150568153e-05 + ArtUnc_23: 7.026400508713268e-06 + ArtUnc_24: -5.427374187542625e-07 + ArtUnc_25: 0.00180497943837816 + ArtUnc_26: -0.0011801587967399964 + ArtUnc_27: -0.009578494181615448 + ArtUnc_28: 0.0008501682735662387 + ArtUnc_29: 0.0009006503708527966 + ArtUnc_30: -0.004665811728323744 + ArtUnc_31: 0.00010043484313485591 + ArtUnc_32: 0.002013123413600144 + ArtUnc_33: 0.0006497633601117199 + ArtUnc_34: 0.0008514052295296975 + ArtUnc_35: 0.001151055185015836 + ArtUnc_36: -5.32719746780574e-05 + ArtUnc_37: -0.00018763487850387555 + ArtUnc_38: 0.000374601437531586 + ArtUnc_39: 0.00020843676093705043 + ArtUnc_40: 3.0350509533418895e-05 + ArtUnc_41: 0.10266260140158713 + ArtUnc_42: -0.09840882032617902 + ArtUnc_43: -0.0687136256878946 + ArtUnc_44: -0.009317374694874054 + ArtUnc_45: -0.03518183522111571 + ArtUnc_46: -0.029312409153198906 + ArtUnc_47: 0.013643854055219597 + ArtUnc_48: -0.03382659436727794 + ArtUnc_49: 0.004633542472207272 + ArtUnc_50: 0.02025841501175562 + ArtUnc_51: -0.0023840751346399375 + ArtUnc_52: 0.004771693908960994 + ArtUnc_53: 0.022523688368749763 + ArtUnc_54: -0.009567457581226015 + ArtUnc_55: -0.009843605589854792 + ArtUnc_56: 0.001517061341357972 + ArtUnc_57: 0.06258888615097814 + ArtUnc_58: -0.26121858121934405 + ArtUnc_59: 0.10808008735278782 + ArtUnc_60: 0.023049073521630416 + ArtUnc_61: -0.14287717897482147 + ArtUnc_62: 0.04647436774649283 + ArtUnc_63: 0.05445480327220324 + ArtUnc_64: 0.020264268067555387 + ArtUnc_65: -0.002083777069281772 + ArtUnc_66: 0.06705184198137516 + ArtUnc_67: -0.021510300671449198 + ArtUnc_68: -0.08355834520654506 + ArtUnc_69: -0.04248293594777888 + ArtUnc_70: 0.0015854931928314551 + ArtUnc_71: -0.009286362438022215 + ArtUnc_72: 0.005984455381454388 + ArtUnc_73: 0.0016273501516143546 + ArtUnc_74: -0.001251898970055017 + ArtUnc_75: -5.0258160043893535e-05 + ArtUnc_76: -5.509821488616488e-05 + ArtUnc_77: -0.0001441671182925708 + ArtUnc_78: -0.00010278516747378758 + ArtUnc_79: 0.0006061054586888791 + ArtUnc_80: -6.34313564224788e-05 + ArtUnc_81: 7.291486148520376e-05 + ArtUnc_82: 3.946880946781465e-07 + ArtUnc_83: 0.0001346940923443161 + ArtUnc_84: -0.00010207049142693918 + ArtUnc_85: -0.00010050144195659215 + ArtUnc_86: 0.0001167991316420489 + ArtUnc_87: 7.445854981989877e-05 + ArtUnc_88: -0.00020777512486746868 + ArtUnc_89: -0.00011443435620054819 + ArtUnc_90: 3.887377084194982e-05 + ArtUnc_91: 2.3285955195096784e-05 + ArtUnc_92: 4.009384033282361e-06 + ArtUnc_93: -0.0002676195551706283 + ArtUnc_94: 8.669785835343736e-05 + ArtUnc_95: 8.024371620577143e-06 + ArtUnc_96: -2.1333954408291494e-05 - stat: 0 Uncorr: 0.011399999999999999 RCES: 0.021150840621592323 @@ -903,102 +903,102 @@ bins: ModelRW_2: 0.01716996686077174 JES_1: 0.026350373156750546 JES_2: 0.026350373156750546 - ArtUnc_1: -2.817126819950767e-08 - ArtUnc_2: 4.4684049988513985e-07 - ArtUnc_3: 6.06566938162903e-07 - ArtUnc_4: 2.2074680006429258e-07 - ArtUnc_5: -2.7226297565523305e-08 - ArtUnc_6: -1.0502030775142442e-08 - ArtUnc_7: -6.247091275967356e-09 - ArtUnc_8: 1.3352960960346633e-05 - ArtUnc_9: 5.195880521860876e-08 - ArtUnc_10: 2.174311254461487e-05 - ArtUnc_11: 1.438428343348627e-05 - ArtUnc_12: -6.488154730194581e-06 - ArtUnc_13: -1.2077849621578791e-05 - ArtUnc_14: -9.851969940031306e-07 - ArtUnc_15: -5.508344773231738e-06 - ArtUnc_16: -8.576868897549714e-07 - ArtUnc_17: -1.7036429902542261e-06 - ArtUnc_18: -2.257652907611229e-07 - ArtUnc_19: -1.2942610814162311e-06 - ArtUnc_20: 5.002398679522411e-06 - ArtUnc_21: -3.825337628274403e-06 - ArtUnc_22: 1.7604760362986067e-06 - ArtUnc_23: -6.148453535389899e-07 - ArtUnc_24: 8.647766601743679e-08 - ArtUnc_25: -0.00021897760157160368 - ArtUnc_26: 0.0001041769653105037 - ArtUnc_27: 0.0012450843536182547 - ArtUnc_28: -0.00017348975365976 - ArtUnc_29: -0.00015219103957117347 - ArtUnc_30: -0.0007465051590979212 - ArtUnc_31: -2.0704047750258446e-05 - ArtUnc_32: 0.0004343764298589348 - ArtUnc_33: 0.00012404908013743279 - ArtUnc_34: -0.0002862893515867421 - ArtUnc_35: -0.0004963590614518438 - ArtUnc_36: 0.00020282456223151047 - ArtUnc_37: 3.7094347069720885e-05 - ArtUnc_38: 4.106182778419227e-05 - ArtUnc_39: -6.799893174138268e-06 - ArtUnc_40: -1.4954824069585455e-06 - ArtUnc_41: 0.0008081930040477415 - ArtUnc_42: 0.002108683928137042 - ArtUnc_43: 0.00035821304071891865 - ArtUnc_44: -0.0005399654934629002 - ArtUnc_45: 0.001316493409075432 - ArtUnc_46: 0.00020101437821280166 - ArtUnc_47: -0.0006350875907169873 - ArtUnc_48: -0.00047593825956509703 - ArtUnc_49: 0.000602376009215324 - ArtUnc_50: 0.0009495179427234354 - ArtUnc_51: 0.0009883270985556625 - ArtUnc_52: -0.00035012232252778645 - ArtUnc_53: -0.0002381219447796239 - ArtUnc_54: -4.1236601124929335e-06 - ArtUnc_55: -7.65822539999393e-05 - ArtUnc_56: 6.923725304543144e-05 - ArtUnc_57: 0.020661271954792452 - ArtUnc_58: -0.03012617915198426 - ArtUnc_59: -0.0463298301030496 - ArtUnc_60: -0.017025874165601154 - ArtUnc_61: 0.008563593972698479 - ArtUnc_62: 0.012710627449859669 - ArtUnc_63: -0.004931348879742483 - ArtUnc_64: -0.01951139053213328 - ArtUnc_65: -0.01837312552201215 - ArtUnc_66: 0.0069553190698154 - ArtUnc_67: -0.0018328306634743797 - ArtUnc_68: -0.0002602993112448357 - ArtUnc_69: 0.0005484249307853947 - ArtUnc_70: -0.0007404022609204061 - ArtUnc_71: -0.00026912314771388465 - ArtUnc_72: 0.0001401840323889083 - ArtUnc_73: 0.07358766616309499 - ArtUnc_74: 0.08935275262643164 - ArtUnc_75: 0.012055679340105329 - ArtUnc_76: -0.0027011264050325317 - ArtUnc_77: 0.021387610532925833 - ArtUnc_78: -0.013447794794431011 - ArtUnc_79: -0.043068065429579305 - ArtUnc_80: -0.00025035287636590564 - ArtUnc_81: -0.0004905800793988719 - ArtUnc_82: -2.4339488351599227e-06 - ArtUnc_83: 0.00034942425994390856 - ArtUnc_84: 0.0003703550434100738 - ArtUnc_85: -0.00018102905776393803 - ArtUnc_86: 0.002600428908484644 - ArtUnc_87: 0.0023811496247881157 - ArtUnc_88: -0.0006337108544292563 - ArtUnc_89: 0.004616274227591015 - ArtUnc_90: -0.0008602099782936526 - ArtUnc_91: 0.000764431035628665 - ArtUnc_92: 0.0001438932534886056 - ArtUnc_93: 0.00039986682117638847 - ArtUnc_94: -3.0413386783335254e-05 - ArtUnc_95: 0.00015991026827909247 - ArtUnc_96: -1.4366715556161222e-06 + ArtUnc_1: -2.8171268199507716e-08 + ArtUnc_2: 4.468404998851395e-07 + ArtUnc_3: 6.065669381628866e-07 + ArtUnc_4: 2.2074680006442324e-07 + ArtUnc_5: -2.7226297566834386e-08 + ArtUnc_6: 1.0502030776599082e-08 + ArtUnc_7: 6.247091281933477e-09 + ArtUnc_8: -1.3352960960347073e-05 + ArtUnc_9: -5.195880523141805e-08 + ArtUnc_10: 2.1743112544614577e-05 + ArtUnc_11: 1.4384283433486833e-05 + ArtUnc_12: -6.488154730178476e-06 + ArtUnc_13: -1.2077849621583853e-05 + ArtUnc_14: -9.85196993995112e-07 + ArtUnc_15: -5.508344773231818e-06 + ArtUnc_16: -8.576868897751414e-07 + ArtUnc_17: 1.703642990227518e-06 + ArtUnc_18: 2.2576529075168028e-07 + ArtUnc_19: 1.2942610814684423e-06 + ArtUnc_20: -5.002398679556529e-06 + ArtUnc_21: -3.8253376283432924e-06 + ArtUnc_22: 1.7604760363566307e-06 + ArtUnc_23: 6.148453534215448e-07 + ArtUnc_24: -8.64776660808692e-08 + ArtUnc_25: 0.00021897760157158004 + ArtUnc_26: -0.00010417696531048306 + ArtUnc_27: -0.0012450843536182764 + ArtUnc_28: 0.0001734897536596235 + ArtUnc_29: 0.00015219103957132238 + ArtUnc_30: -0.0007465051590978547 + ArtUnc_31: 2.0704047749812754e-05 + ArtUnc_32: 0.0004343764298588992 + ArtUnc_33: 0.0001240490801374033 + ArtUnc_34: 0.0002862893515864769 + ArtUnc_35: 0.000496359061452056 + ArtUnc_36: 0.00020282456223106611 + ArtUnc_37: 3.709434707071476e-05 + ArtUnc_38: -4.1061827783918016e-05 + ArtUnc_39: -6.799893174198059e-06 + ArtUnc_40: -1.495482406591319e-06 + ArtUnc_41: 0.0008081930040474229 + ArtUnc_42: 0.0021086839281373873 + ArtUnc_43: 0.00035821304071842616 + ArtUnc_44: -0.0005399654934635183 + ArtUnc_45: 0.001316493409075148 + ArtUnc_46: 0.0002010143782132027 + ArtUnc_47: 0.0006350875907164479 + ArtUnc_48: 0.0004759382595654312 + ArtUnc_49: -0.0006023760092153574 + ArtUnc_50: -0.0009495179427241272 + ArtUnc_51: 6.923725304565707e-05 + ArtUnc_52: -7.658225400022983e-05 + ArtUnc_53: -0.0009883270985561877 + ArtUnc_54: 0.00035012232252784885 + ArtUnc_55: 0.00023812194477975467 + ArtUnc_56: -4.123660112127637e-06 + ArtUnc_57: -0.02066127195479415 + ArtUnc_58: 0.030126179151983706 + ArtUnc_59: 0.046329830103050265 + ArtUnc_60: 0.01702587416560102 + ArtUnc_61: -0.008563593972697963 + ArtUnc_62: -0.012710627449860143 + ArtUnc_63: 0.004931348879743005 + ArtUnc_64: -0.019511390532134486 + ArtUnc_65: 0.01837312552201359 + ArtUnc_66: 0.006955319069816964 + ArtUnc_67: -0.001832830663475033 + ArtUnc_68: -0.00026029931124660403 + ArtUnc_69: 0.000548424930784027 + ArtUnc_70: -0.00014018403238890204 + ArtUnc_71: 0.0007404022609201388 + ArtUnc_72: -0.0002691231477139737 + ArtUnc_73: 0.07358766616309388 + ArtUnc_74: -0.0893527526264328 + ArtUnc_75: -0.012055679340105704 + ArtUnc_76: -0.0027011264050323686 + ArtUnc_77: 0.021387610532927363 + ArtUnc_78: 0.013447794794430668 + ArtUnc_79: -0.04306806542957896 + ArtUnc_80: 0.0002503528763656325 + ArtUnc_81: -0.0004905800793986709 + ArtUnc_82: -2.433948835170254e-06 + ArtUnc_83: 0.00034942425994394585 + ArtUnc_84: 0.0003703550434099853 + ArtUnc_85: -0.00018102905776399447 + ArtUnc_86: -0.00014389325348863863 + ArtUnc_87: -0.0003998668211764174 + ArtUnc_88: 0.00260042890848475 + ArtUnc_89: -0.0023811496247879713 + ArtUnc_90: -0.0006337108544291929 + ArtUnc_91: -0.000159910268279095 + ArtUnc_92: -3.0413386783324703e-05 + ArtUnc_93: 0.004616274227591099 + ArtUnc_94: 0.0008602099782936573 + ArtUnc_95: 0.0007644310356287082 + ArtUnc_96: -1.4366715556144155e-06 - stat: 0 Uncorr: 0.00214 RCES: 0.0027765623781935817 @@ -1014,102 +1014,102 @@ bins: ModelRW_2: 0.016055142309553034 JES_1: 0.01204927375321849 JES_2: 0.01204927375321849 - ArtUnc_1: 6.041525253143828e-10 - ArtUnc_2: -7.457087380483391e-10 - ArtUnc_3: -1.4082834307512728e-10 - ArtUnc_4: 5.259751980809698e-10 - ArtUnc_5: -6.923695139523178e-10 - ArtUnc_6: 3.3208895331698243e-10 - ArtUnc_7: 8.073137294780598e-12 - ArtUnc_8: -1.2230927873465858e-07 - ArtUnc_9: -5.113647669890167e-10 - ArtUnc_10: -2.2446935066345123e-07 - ArtUnc_11: -1.4326065212866686e-07 - ArtUnc_12: 1.153026085468027e-08 - ArtUnc_13: 1.1174732880309481e-07 - ArtUnc_14: 2.4558207141038358e-08 - ArtUnc_15: 8.883175741719856e-10 - ArtUnc_16: 3.6467441648207014e-08 - ArtUnc_17: 8.236732097262847e-08 - ArtUnc_18: -5.197226792070373e-08 - ArtUnc_19: 3.841247467637868e-08 - ArtUnc_20: -6.425356531140175e-08 - ArtUnc_21: 6.155293697788874e-08 - ArtUnc_22: -2.951676174829013e-08 - ArtUnc_23: 5.562899998071879e-09 - ArtUnc_24: -7.151556924463854e-10 - ArtUnc_25: 1.608931748776258e-06 - ArtUnc_26: -1.8646694530908165e-06 - ArtUnc_27: -1.1274858886782248e-05 - ArtUnc_28: 6.938518411524558e-07 - ArtUnc_29: 4.5559441224943266e-07 - ArtUnc_30: 1.961726405134673e-06 - ArtUnc_31: -2.1287085839396652e-08 - ArtUnc_32: 4.881844799100779e-07 - ArtUnc_33: 2.1793478494002968e-08 - ArtUnc_34: -7.364259583222377e-07 - ArtUnc_35: -1.4923928499632316e-06 - ArtUnc_36: 7.430948147792464e-07 - ArtUnc_37: 1.8178644101091007e-07 - ArtUnc_38: 2.3100931027139345e-07 - ArtUnc_39: -2.047416229184488e-07 - ArtUnc_40: -7.423803500036187e-08 - ArtUnc_41: 0.0005268887524988114 - ArtUnc_42: -0.0005714659827221061 - ArtUnc_43: -0.00027022218346637445 - ArtUnc_44: 1.639807218947462e-05 - ArtUnc_45: -0.00017043659189344178 - ArtUnc_46: -4.9978593562796565e-05 - ArtUnc_47: 3.940253779989799e-05 - ArtUnc_48: 3.0242333060471106e-05 - ArtUnc_49: -2.5495449976636212e-05 - ArtUnc_50: -6.6918278221475645e-06 - ArtUnc_51: 4.833166067699923e-05 - ArtUnc_52: -2.4613900281051554e-05 - ArtUnc_53: -5.019518747024589e-05 - ArtUnc_54: -7.534173203401729e-06 - ArtUnc_55: -2.9103029027200832e-05 - ArtUnc_56: 1.4789803073690994e-05 - ArtUnc_57: 0.0009724406566382068 - ArtUnc_58: -0.0025805819255820058 - ArtUnc_59: -0.0003722812543555839 - ArtUnc_60: -0.00024486307773781673 - ArtUnc_61: -0.000750290877691974 - ArtUnc_62: 0.0006032959090819328 - ArtUnc_63: 0.00021837644109062756 - ArtUnc_64: -0.0006049467434411304 - ArtUnc_65: -0.000469840672415627 - ArtUnc_66: -0.00016047606982258245 - ArtUnc_67: 5.597628896179762e-05 - ArtUnc_68: 0.00021823897883524966 - ArtUnc_69: 1.100866729218056e-05 - ArtUnc_70: -1.7410499464597899e-06 - ArtUnc_71: 1.5512309295244594e-05 - ArtUnc_72: -9.332428840907835e-05 - ArtUnc_73: 0.0011714027120292337 - ArtUnc_74: 0.00027863115780019164 - ArtUnc_75: -0.000287000157299122 - ArtUnc_76: 0.0072247650818527 - ArtUnc_77: -0.0013220955446080014 - ArtUnc_78: -0.01613476439515327 - ArtUnc_79: 0.00381306711786311 - ArtUnc_80: 0.005064477730472728 - ArtUnc_81: 0.0034362312205621515 - ArtUnc_82: 2.2412802282072182e-05 - ArtUnc_83: 0.022201540076900495 - ArtUnc_84: -0.004456629085650692 - ArtUnc_85: -0.017428639534710202 - ArtUnc_86: -0.011385699670263552 - ArtUnc_87: 0.00778080219253493 - ArtUnc_88: 0.0018988296326871237 - ArtUnc_89: -0.008045285761312297 - ArtUnc_90: -0.0034782788311635794 - ArtUnc_91: 0.00022653556448832082 - ArtUnc_92: -0.02149648344381187 - ArtUnc_93: -0.013607990667775922 - ArtUnc_94: 0.0005860095065114094 - ArtUnc_95: -0.00395969577280809 - ArtUnc_96: -0.004254928877904954 + ArtUnc_1: 6.041525253143837e-10 + ArtUnc_2: -7.457087380483398e-10 + ArtUnc_3: -1.4082834307497503e-10 + ArtUnc_4: 5.259751980797566e-10 + ArtUnc_5: -6.923695139325593e-10 + ArtUnc_6: -3.3208895333728377e-10 + ArtUnc_7: -8.073137240863234e-12 + ArtUnc_8: 1.2230927873466213e-07 + ArtUnc_9: 5.113647670230508e-10 + ArtUnc_10: -2.244693506634476e-07 + ArtUnc_11: -1.432606521286891e-07 + ArtUnc_12: 1.1530260854438604e-08 + ArtUnc_13: 1.117473288031136e-07 + ArtUnc_14: 2.455820714133376e-08 + ArtUnc_15: 8.883175739142325e-10 + ArtUnc_16: 3.64674416477968e-08 + ArtUnc_17: -8.23673209728863e-08 + ArtUnc_18: 5.197226792066097e-08 + ArtUnc_19: -3.841247467568004e-08 + ArtUnc_20: 6.425356531113657e-08 + ArtUnc_21: 6.155293697544512e-08 + ArtUnc_22: -2.9516761746782553e-08 + ArtUnc_23: -5.562900001094921e-09 + ArtUnc_24: 7.151556918564961e-10 + ArtUnc_25: -1.6089317487759996e-06 + ArtUnc_26: 1.8646694530904163e-06 + ArtUnc_27: 1.1274858886782353e-05 + ArtUnc_28: -6.938518411540835e-07 + ArtUnc_29: -4.555944122477703e-07 + ArtUnc_30: 1.9617264051350774e-06 + ArtUnc_31: 2.1287085831880707e-08 + ArtUnc_32: 4.881844799069134e-07 + ArtUnc_33: 2.179347849928199e-08 + ArtUnc_34: 7.364259583162062e-07 + ArtUnc_35: 1.4923928499667925e-06 + ArtUnc_36: 7.430948147728629e-07 + ArtUnc_37: 1.8178644102041127e-07 + ArtUnc_38: -2.3100931026616919e-07 + ArtUnc_39: -2.047416229297779e-07 + ArtUnc_40: -7.4238034992303e-08 + ArtUnc_41: 0.0005268887524987921 + ArtUnc_42: -0.0005714659827220986 + ArtUnc_43: -0.00027022218346638225 + ArtUnc_44: 1.6398072189473574e-05 + ArtUnc_45: -0.00017043659189344853 + ArtUnc_46: -4.997859356279252e-05 + ArtUnc_47: -3.9402537799913584e-05 + ArtUnc_48: -3.0242333060468175e-05 + ArtUnc_49: 2.5495449976636246e-05 + ArtUnc_50: 6.691827822136524e-06 + ArtUnc_51: 1.4789803073696317e-05 + ArtUnc_52: -2.910302902721402e-05 + ArtUnc_53: -4.8331660677013445e-05 + ArtUnc_54: 2.46139002810582e-05 + ArtUnc_55: 5.0195187470255184e-05 + ArtUnc_56: -7.534173203397271e-06 + ArtUnc_57: -0.0009724406566382886 + ArtUnc_58: 0.002580581925581996 + ArtUnc_59: 0.0003722812543556141 + ArtUnc_60: 0.00024486307773779494 + ArtUnc_61: 0.0007502908776919723 + ArtUnc_62: -0.000603295909081876 + ArtUnc_63: -0.00021837644109062352 + ArtUnc_64: -0.0006049467434411995 + ArtUnc_65: 0.0004698406724156381 + ArtUnc_66: -0.00016047606982258857 + ArtUnc_67: 5.597628896170966e-05 + ArtUnc_68: 0.0002182389788351802 + ArtUnc_69: 1.1008667292203844e-05 + ArtUnc_70: 9.332428840909884e-05 + ArtUnc_71: 1.7410499463531618e-06 + ArtUnc_72: 1.5512309295234166e-05 + ArtUnc_73: 0.001171402712029326 + ArtUnc_74: -0.0002786311578004168 + ArtUnc_75: 0.00028700015729913036 + ArtUnc_76: 0.007224765081852715 + ArtUnc_77: -0.0013220955446067943 + ArtUnc_78: 0.01613476439515324 + ArtUnc_79: 0.0038130671178633353 + ArtUnc_80: -0.005064477730472428 + ArtUnc_81: 0.003436231220562271 + ArtUnc_82: 2.2412802282053842e-05 + ArtUnc_83: 0.022201540076900436 + ArtUnc_84: -0.0044566290856507575 + ArtUnc_85: -0.01742863953471023 + ArtUnc_86: 0.021496483443812036 + ArtUnc_87: 0.013607990667775918 + ArtUnc_88: -0.011385699670263238 + ArtUnc_89: -0.007780802192535263 + ArtUnc_90: 0.001898829632687188 + ArtUnc_91: 0.003959695772808286 + ArtUnc_92: 0.0005860095065112893 + ArtUnc_93: -0.008045285761312283 + ArtUnc_94: 0.0034782788311635373 + ArtUnc_95: 0.00022653556448828135 + ArtUnc_96: -0.004254928877905018 - stat: 0 Uncorr: 2.5500000000000003 RCES: 17.013426291829052 @@ -1126,101 +1126,101 @@ bins: JES_1: 7.194864653000776 JES_2: 7.194864653000776 ArtUnc_1: 0.862390513360958 - ArtUnc_2: -0.0585223341972758 - ArtUnc_3: -0.015617481349614281 - ArtUnc_4: -0.02865956582028331 - ArtUnc_5: 0.024560404389025382 - ArtUnc_6: 0.01369754229357918 - ArtUnc_7: -0.03126673580103048 - ArtUnc_8: 8.052766469309573 - ArtUnc_9: 0.0038695705497448643 - ArtUnc_10: -5.440340482204737 - ArtUnc_11: 0.5063656603501598 - ArtUnc_12: 0.13134908148401084 - ArtUnc_13: 1.5029665042315419 - ArtUnc_14: -0.028689992197552618 - ArtUnc_15: 0.18002815502716843 - ArtUnc_16: 0.014250407028977898 - ArtUnc_17: -0.04851242069981796 - ArtUnc_18: 0.29940436496149647 - ArtUnc_19: -0.07767460929124594 - ArtUnc_20: -0.2717761425707225 - ArtUnc_21: 0.04717710535467236 - ArtUnc_22: 0.03848277959299325 - ArtUnc_23: -0.014740246882677633 - ArtUnc_24: -0.002989650130971767 - ArtUnc_25: 0.04036369541606758 - ArtUnc_26: 0.09302467152124247 - ArtUnc_27: 0.014597160954111526 - ArtUnc_28: 0.03227102341406198 - ArtUnc_29: -0.011743211789941789 - ArtUnc_30: -0.020758408969679874 - ArtUnc_31: -0.011241230788636574 - ArtUnc_32: 0.007682375996861734 - ArtUnc_33: 0.006482760235230509 - ArtUnc_34: -0.008580794784232671 - ArtUnc_35: -0.004056435036263777 - ArtUnc_36: 0.0008921238755738536 - ArtUnc_37: -0.0021935306004609665 - ArtUnc_38: -0.0009761650792591071 - ArtUnc_39: -0.0005096127087808091 - ArtUnc_40: -0.0005619835756197858 - ArtUnc_41: -0.0031631785001944813 - ArtUnc_42: -0.002833615200537957 - ArtUnc_43: 0.0007371773212970561 - ArtUnc_44: 0.0013088878222306671 - ArtUnc_45: -0.0012901354777218276 - ArtUnc_46: 0.000796063416044034 - ArtUnc_47: 0.0016605377633478315 - ArtUnc_48: -0.0004132208519303545 - ArtUnc_49: -0.0007064806487292458 - ArtUnc_50: -0.0008218480678580298 - ArtUnc_51: -0.0007009699714016416 - ArtUnc_52: 0.00017757524658647763 - ArtUnc_53: -9.061136987680712e-06 - ArtUnc_54: -0.00013438631943932464 - ArtUnc_55: 7.824198600373515e-05 - ArtUnc_56: -0.0001362899566796528 - ArtUnc_57: -9.964845519297443e-06 - ArtUnc_58: 1.122877378876763e-05 - ArtUnc_59: 1.3513642131207025e-05 - ArtUnc_60: 4.997737295236754e-06 - ArtUnc_61: -1.0751982835758077e-05 - ArtUnc_62: -6.136271969468173e-06 - ArtUnc_63: 7.0241953046404945e-06 - ArtUnc_64: 1.104379494273857e-05 - ArtUnc_65: 6.8579771992259895e-06 - ArtUnc_66: 1.5782301702338166e-06 - ArtUnc_67: 1.8570889589515615e-07 - ArtUnc_68: 7.24148349806898e-06 - ArtUnc_69: 9.093223014310866e-06 - ArtUnc_70: -4.916213171292747e-07 - ArtUnc_71: -5.360034925647852e-07 - ArtUnc_72: 2.251432226795964e-07 - ArtUnc_73: 1.5427469524348637e-06 - ArtUnc_74: 2.3515148923935714e-06 - ArtUnc_75: 4.3175359448502795e-07 - ArtUnc_76: 1.127293496046763e-07 - ArtUnc_77: 7.517926745289768e-07 - ArtUnc_78: -5.095707024872688e-07 - ArtUnc_79: -7.866491425713704e-07 - ArtUnc_80: -9.43488938444306e-08 - ArtUnc_81: -1.1980382405504978e-08 - ArtUnc_82: -4.258541093895629e-10 - ArtUnc_83: -4.412159234028068e-08 - ArtUnc_84: -2.5736692776210896e-08 - ArtUnc_85: 4.2710197772579343e-08 - ArtUnc_86: 7.8015829568531e-09 - ArtUnc_87: 5.735037683417709e-10 - ArtUnc_88: -9.147156941503064e-08 - ArtUnc_89: -1.3073151315178207e-07 - ArtUnc_90: -8.733441907194588e-08 - ArtUnc_91: 2.3566459633314016e-08 - ArtUnc_92: -8.348804058711307e-09 - ArtUnc_93: -1.7661293696835112e-08 - ArtUnc_94: 4.852624460880265e-09 - ArtUnc_95: -2.0837586511281873e-08 - ArtUnc_96: -8.364543817190377e-09 + ArtUnc_2: -0.058522334197274935 + ArtUnc_3: -0.015617481349614557 + ArtUnc_4: -0.02865956582028775 + ArtUnc_5: 0.024560404389031128 + ArtUnc_6: -0.013697542293582938 + ArtUnc_7: 0.0312667358010939 + ArtUnc_8: -8.052766469309553 + ArtUnc_9: -0.003869570549781359 + ArtUnc_10: -5.440340482204765 + ArtUnc_11: 0.5063656603501565 + ArtUnc_12: 0.13134908148404048 + ArtUnc_13: 1.5029665042315448 + ArtUnc_14: -0.02868999219755132 + ArtUnc_15: 0.1800281550271725 + ArtUnc_16: 0.01425040702897497 + ArtUnc_17: 0.04851242069982236 + ArtUnc_18: -0.2994043649614981 + ArtUnc_19: 0.07767460929125639 + ArtUnc_20: 0.2717761425707195 + ArtUnc_21: 0.047177105354672885 + ArtUnc_22: 0.03848277959299294 + ArtUnc_23: 0.014740246882677685 + ArtUnc_24: 0.0029896501309716835 + ArtUnc_25: -0.04036369541606761 + ArtUnc_26: -0.09302467152124266 + ArtUnc_27: -0.014597160954110492 + ArtUnc_28: -0.032271023414061836 + ArtUnc_29: 0.011743211789942889 + ArtUnc_30: -0.02075840896967938 + ArtUnc_31: 0.011241230788636522 + ArtUnc_32: 0.007682375996866057 + ArtUnc_33: 0.006482760235225154 + ArtUnc_34: 0.008580794784233063 + ArtUnc_35: 0.004056435036263157 + ArtUnc_36: 0.0008921238755738741 + ArtUnc_37: -0.0021935306004609617 + ArtUnc_38: 0.0009761650792590337 + ArtUnc_39: -0.0005096127087808053 + ArtUnc_40: -0.0005619835756197868 + ArtUnc_41: -0.0031631785001945928 + ArtUnc_42: -0.002833615200537926 + ArtUnc_43: 0.000737177321297061 + ArtUnc_44: 0.001308887822230703 + ArtUnc_45: -0.0012901354777218469 + ArtUnc_46: 0.0007960634160440661 + ArtUnc_47: -0.0016605377633478362 + ArtUnc_48: 0.00041322085193029644 + ArtUnc_49: 0.0007064806487292607 + ArtUnc_50: 0.0008218480678580217 + ArtUnc_51: -0.00013628995667965135 + ArtUnc_52: 7.824198600373727e-05 + ArtUnc_53: 0.0007009699714016272 + ArtUnc_54: -0.00017757524658647804 + ArtUnc_55: 9.061136987685657e-06 + ArtUnc_56: -0.00013438631943932383 + ArtUnc_57: 9.964845519297726e-06 + ArtUnc_58: -1.1228773788767014e-05 + ArtUnc_59: -1.3513642131206547e-05 + ArtUnc_60: -4.997737295236594e-06 + ArtUnc_61: 1.0751982835757547e-05 + ArtUnc_62: 6.1362719694684646e-06 + ArtUnc_63: -7.024195304640522e-06 + ArtUnc_64: 1.104379494273848e-05 + ArtUnc_65: -6.857977199225964e-06 + ArtUnc_66: 1.578230170233843e-06 + ArtUnc_67: 1.8570889589523063e-07 + ArtUnc_68: 7.241483498069554e-06 + ArtUnc_69: 9.093223014310423e-06 + ArtUnc_70: -2.2514322267953912e-07 + ArtUnc_71: 4.916213171292535e-07 + ArtUnc_72: -5.360034925647657e-07 + ArtUnc_73: 1.5427469524348488e-06 + ArtUnc_74: -2.3515148923936133e-06 + ArtUnc_75: -4.317535944850396e-07 + ArtUnc_76: 1.1272934960468206e-07 + ArtUnc_77: 7.517926745290272e-07 + ArtUnc_78: 5.095707024872422e-07 + ArtUnc_79: -7.8664914257136e-07 + ArtUnc_80: 9.434889384442472e-08 + ArtUnc_81: -1.1980382405502867e-08 + ArtUnc_82: -4.258541093895767e-10 + ArtUnc_83: -4.4121592340278306e-08 + ArtUnc_84: -2.5736692776212392e-08 + ArtUnc_85: 4.2710197772578146e-08 + ArtUnc_86: 8.348804058710194e-09 + ArtUnc_87: 1.766129369683349e-08 + ArtUnc_88: 7.80158295685783e-09 + ArtUnc_89: -5.735037683417001e-10 + ArtUnc_90: -9.147156941503087e-08 + ArtUnc_91: 2.083758651128185e-08 + ArtUnc_92: 4.8526244608792894e-09 + ArtUnc_93: -1.3073151315177993e-07 + ArtUnc_94: 8.733441907194496e-08 + ArtUnc_95: 2.3566459633314595e-08 + ArtUnc_96: -8.364543817190556e-09 - stat: 0 Uncorr: 1.49 RCES: 2.090412119654878 @@ -1236,102 +1236,102 @@ bins: ModelRW_2: 0.71644059069821 JES_1: 2.107566683108746 JES_2: 2.107566683108746 - ArtUnc_1: 0.13203839691016306 - ArtUnc_2: -0.0018981155812128453 - ArtUnc_3: 0.030449734167063695 - ArtUnc_4: 0.016599559452784796 - ArtUnc_5: -0.007039446793514841 - ArtUnc_6: 0.001674499070408551 - ArtUnc_7: -0.00015496188070864445 - ArtUnc_8: -0.04741118864007381 - ArtUnc_9: -0.0007186835313007978 - ArtUnc_10: -0.43052640155181093 - ArtUnc_11: -0.3402840139397078 - ArtUnc_12: 0.39895212060858115 - ArtUnc_13: 0.09101270589019789 - ArtUnc_14: -0.04546627440151189 - ArtUnc_15: 0.009692340009631114 - ArtUnc_16: 0.033194936534638134 - ArtUnc_17: -0.05060998404362767 - ArtUnc_18: 0.06042621545255223 - ArtUnc_19: -0.0421258089941154 - ArtUnc_20: -0.015698438313400037 - ArtUnc_21: -0.02794838949429772 - ArtUnc_22: 0.037847574133300005 - ArtUnc_23: -0.021509993525688612 - ArtUnc_24: 0.0004039371438069027 - ArtUnc_25: -3.271928974855699 - ArtUnc_26: -1.3315714679588317 - ArtUnc_27: -0.38737893889621744 - ArtUnc_28: -0.6847540037957475 - ArtUnc_29: -0.02089315840519039 - ArtUnc_30: 0.24155149523280106 - ArtUnc_31: 0.05080766078860316 - ArtUnc_32: -0.08409477654657979 - ArtUnc_33: -0.056203225074044176 - ArtUnc_34: 0.0816718202411427 - ArtUnc_35: 0.08773620671065417 - ArtUnc_36: -0.03706189225462979 - ArtUnc_37: 0.0024416941282670228 - ArtUnc_38: -0.005311259237549454 - ArtUnc_39: 0.004140830387009792 - ArtUnc_40: 0.0023273358670159654 - ArtUnc_41: 0.016608369052247947 - ArtUnc_42: 0.017377037665656576 - ArtUnc_43: -0.00747387858271836 - ArtUnc_44: -0.011366997835019018 - ArtUnc_45: 0.012081466399688648 - ArtUnc_46: -0.006010521471543163 - ArtUnc_47: -0.014787560023833005 - ArtUnc_48: 0.00471112823989923 - ArtUnc_49: 0.007430677269866008 - ArtUnc_50: 0.0068079799094667255 - ArtUnc_51: 0.007292737341519148 - ArtUnc_52: -0.0021796124008489014 - ArtUnc_53: -0.0010621839197682802 - ArtUnc_54: 0.00038932020161367266 - ArtUnc_55: -0.00013504142134225413 - ArtUnc_56: 0.0006050043502575571 - ArtUnc_57: -2.8675619155665895e-06 - ArtUnc_58: 0.00011801018194305257 - ArtUnc_59: -0.00015106725253573102 - ArtUnc_60: -5.0107640597455927e-05 - ArtUnc_61: 9.86699971619997e-06 - ArtUnc_62: 5.093667125677953e-05 - ArtUnc_63: -1.3994054984177e-06 - ArtUnc_64: -7.893786420285647e-05 - ArtUnc_65: -6.916046599340792e-05 - ArtUnc_66: 4.153359855592597e-06 - ArtUnc_67: -3.774018839093155e-06 - ArtUnc_68: -4.220146094319829e-06 - ArtUnc_69: -5.492019682321761e-06 - ArtUnc_70: -6.1693509047642875e-06 - ArtUnc_71: -1.923963939951251e-06 - ArtUnc_72: 4.037667501783322e-06 - ArtUnc_73: -2.4791489574757286e-06 - ArtUnc_74: -1.4911766742090438e-05 - ArtUnc_75: -2.4181351515255923e-06 - ArtUnc_76: -4.5954891167815134e-07 - ArtUnc_77: -4.506827325797678e-06 - ArtUnc_78: 3.1715976843935505e-06 - ArtUnc_79: 7.267656447245819e-06 - ArtUnc_80: -8.869255228243919e-07 - ArtUnc_81: -3.4742103213119546e-07 - ArtUnc_82: -3.2867253404633533e-09 - ArtUnc_83: 4.799206644697365e-07 - ArtUnc_84: 4.956056692359648e-07 - ArtUnc_85: -3.057175107316412e-07 - ArtUnc_86: -3.941215089842415e-07 - ArtUnc_87: 4.0547287225579874e-07 - ArtUnc_88: -1.3450800291205406e-08 - ArtUnc_89: 3.038985099760333e-07 - ArtUnc_90: 2.603149510967373e-07 - ArtUnc_91: 2.5716364133559936e-07 - ArtUnc_92: 6.513106602556618e-08 - ArtUnc_93: 1.2852660797314178e-07 - ArtUnc_94: -1.941848074855664e-08 - ArtUnc_95: 7.577235197068728e-08 - ArtUnc_96: -1.791599555890439e-09 + ArtUnc_1: 0.1320383969101628 + ArtUnc_2: -0.0018981155812127922 + ArtUnc_3: 0.030449734167063938 + ArtUnc_4: 0.016599559452785167 + ArtUnc_5: -0.007039446793516058 + ArtUnc_6: -0.0016744990704085601 + ArtUnc_7: 0.00015496188070738973 + ArtUnc_8: 0.04741118864007513 + ArtUnc_9: 0.0007186835312962168 + ArtUnc_10: -0.4305264015518117 + ArtUnc_11: -0.3402840139397071 + ArtUnc_12: 0.3989521206085828 + ArtUnc_13: 0.09101270589019123 + ArtUnc_14: -0.0454662744015132 + ArtUnc_15: 0.009692340009628061 + ArtUnc_16: 0.03319493653463854 + ArtUnc_17: 0.05060998404362843 + ArtUnc_18: -0.06042621545255102 + ArtUnc_19: 0.04212580899411449 + ArtUnc_20: 0.015698438313396287 + ArtUnc_21: -0.027948389494300365 + ArtUnc_22: 0.03784757413331094 + ArtUnc_23: 0.021509993525674447 + ArtUnc_24: -0.0004039371438018868 + ArtUnc_25: 3.2719289748556997 + ArtUnc_26: 1.3315714679588329 + ArtUnc_27: 0.3873789388962019 + ArtUnc_28: 0.6847540037957462 + ArtUnc_29: 0.020893158405177158 + ArtUnc_30: 0.24155149523280334 + ArtUnc_31: -0.05080766078860241 + ArtUnc_32: -0.08409477654661683 + ArtUnc_33: -0.056203225073985175 + ArtUnc_34: -0.08167182024114937 + ArtUnc_35: -0.08773620671064794 + ArtUnc_36: -0.037061892254628304 + ArtUnc_37: 0.0024416941282667287 + ArtUnc_38: 0.005311259237549614 + ArtUnc_39: 0.004140830387009761 + ArtUnc_40: 0.0023273358670159597 + ArtUnc_41: 0.016608369052248613 + ArtUnc_42: 0.017377037665656427 + ArtUnc_43: -0.007473878582718413 + ArtUnc_44: -0.01136699783501941 + ArtUnc_45: 0.012081466399688854 + ArtUnc_46: -0.006010521471543492 + ArtUnc_47: 0.014787560023833185 + ArtUnc_48: -0.004711128239898752 + ArtUnc_49: -0.007430677269866188 + ArtUnc_50: -0.006807979909466713 + ArtUnc_51: 0.0006050043502575601 + ArtUnc_52: -0.0001350414213422827 + ArtUnc_53: -0.0072927373415190835 + ArtUnc_54: 0.0021796124008489058 + ArtUnc_55: 0.0010621839197683008 + ArtUnc_56: 0.00038932020161372015 + ArtUnc_57: 2.8675619155647794e-06 + ArtUnc_58: -0.00011801018194304885 + ArtUnc_59: 0.00015106725253573715 + ArtUnc_60: 5.010764059745741e-05 + ArtUnc_61: -9.866999716198439e-06 + ArtUnc_62: -5.093667125678123e-05 + ArtUnc_63: 1.3994054984194227e-06 + ArtUnc_64: -7.893786420285958e-05 + ArtUnc_65: 6.916046599341139e-05 + ArtUnc_66: 4.153359855595592e-06 + ArtUnc_67: -3.7740188390941575e-06 + ArtUnc_68: -4.220146094322869e-06 + ArtUnc_69: -5.492019682323398e-06 + ArtUnc_70: -4.037667501783616e-06 + ArtUnc_71: 6.169350904763874e-06 + ArtUnc_72: -1.9239639399510934e-06 + ArtUnc_73: -2.479148957476188e-06 + ArtUnc_74: 1.4911766742091386e-05 + ArtUnc_75: 2.4181351515257655e-06 + ArtUnc_76: -4.5954891167824075e-07 + ArtUnc_77: -4.5068273257981715e-06 + ArtUnc_78: -3.171597684393666e-06 + ArtUnc_79: 7.267656447246022e-06 + ArtUnc_80: 8.86925522824323e-07 + ArtUnc_81: -3.4742103213120816e-07 + ArtUnc_82: -3.2867253404634625e-09 + ArtUnc_83: 4.799206644697428e-07 + ArtUnc_84: 4.956056692359477e-07 + ArtUnc_85: -3.0571751073164814e-07 + ArtUnc_86: -6.513106602556879e-08 + ArtUnc_87: -1.285266079731519e-07 + ArtUnc_88: -3.941215089842248e-07 + ArtUnc_89: -4.054728722557868e-07 + ArtUnc_90: -1.3450800291205652e-08 + ArtUnc_91: -7.577235197069439e-08 + ArtUnc_92: -1.9418480748555077e-08 + ArtUnc_93: 3.038985099760247e-07 + ArtUnc_94: -2.603149510967458e-07 + ArtUnc_95: 2.5716364133558877e-07 + ArtUnc_96: -1.7915995558900218e-09 - stat: 0 Uncorr: 0.32 RCES: 0.09695524740827595 @@ -1347,102 +1347,102 @@ bins: ModelRW_2: 1.0023945730100496 JES_1: 0.8952361029359798 JES_2: 0.8952361029359798 - ArtUnc_1: 0.009828482441487735 - ArtUnc_2: -0.004608717000644577 - ArtUnc_3: -0.002367722967671028 - ArtUnc_4: -0.0002992603290157714 - ArtUnc_5: -0.00012690827336530388 - ArtUnc_6: 6.221066045210017e-06 - ArtUnc_7: 8.451570832514642e-05 - ArtUnc_8: -0.027510575217467394 - ArtUnc_9: -1.5723655122747197e-05 - ArtUnc_10: 0.01782520377434654 - ArtUnc_11: -0.006729346020043541 - ArtUnc_12: 0.015601139436508949 - ArtUnc_13: -0.007047244784116721 - ArtUnc_14: -0.00655217351819557 - ArtUnc_15: -0.005325434628899753 - ArtUnc_16: 0.006491767310628188 - ArtUnc_17: 0.003418023898827354 - ArtUnc_18: -0.0016271913888615047 - ArtUnc_19: 0.0010176831113117685 - ArtUnc_20: -0.0012412268220375559 - ArtUnc_21: 0.0013910730652472807 - ArtUnc_22: -0.0009017674683387694 - ArtUnc_23: -4.58580457396342e-05 - ArtUnc_24: 0.0001413221668143694 - ArtUnc_25: -0.048844340697329666 - ArtUnc_26: -0.04181590905251658 - ArtUnc_27: -0.3258966386876538 - ArtUnc_28: 0.046280711933588965 - ArtUnc_29: 0.0308197731950588 - ArtUnc_30: 0.14587854716562434 - ArtUnc_31: 0.001639621949476087 - ArtUnc_32: -0.06785451207482246 - ArtUnc_33: -0.02266181334052346 - ArtUnc_34: 0.04182033033426069 - ArtUnc_35: 0.0690577377189733 - ArtUnc_36: -0.026864389685193148 - ArtUnc_37: -0.004292649218078493 - ArtUnc_38: -0.005080290696072506 - ArtUnc_39: 0.0008362842858754024 - ArtUnc_40: 0.0003095012144621889 - ArtUnc_41: -0.7052015856250874 - ArtUnc_42: -0.6327097492563725 - ArtUnc_43: 0.12172801961898731 - ArtUnc_44: 0.22099531757297722 - ArtUnc_45: -0.23647012932139075 - ArtUnc_46: 0.08099032950666239 - ArtUnc_47: 0.20664841683345464 - ArtUnc_48: -0.03826598893292267 - ArtUnc_49: -0.09491404193287428 - ArtUnc_50: -0.09824741575171746 - ArtUnc_51: -0.09017523379420644 - ArtUnc_52: 0.02814318215868148 - ArtUnc_53: 0.01119679334780394 - ArtUnc_54: -0.003444288089995832 - ArtUnc_55: 0.0017742998422924019 - ArtUnc_56: -0.0046173282151575155 - ArtUnc_57: -0.0010036416826925368 - ArtUnc_58: 0.00282317313894363 - ArtUnc_59: -0.001204653199342814 - ArtUnc_60: -0.0003414476538073429 - ArtUnc_61: -2.5372229813729875e-05 - ArtUnc_62: 0.0003273466917351464 - ArtUnc_63: 0.0002863249146864457 - ArtUnc_64: -0.0006345923426677806 - ArtUnc_65: -0.000538610575124353 - ArtUnc_66: -0.0011505629179389683 - ArtUnc_67: 0.0004560945531370805 - ArtUnc_68: 0.0030148469490411567 - ArtUnc_69: 0.002073800466422449 - ArtUnc_70: -0.0004925221551272268 - ArtUnc_71: -0.00026471775867247964 - ArtUnc_72: 0.00037625735442798074 - ArtUnc_73: 0.00026934779133247223 - ArtUnc_74: 0.00026473689865877446 - ArtUnc_75: 3.59520305997644e-05 - ArtUnc_76: 1.2460882397125119e-06 - ArtUnc_77: 4.642367619192158e-05 - ArtUnc_78: -3.9134180863925706e-05 - ArtUnc_79: -6.51698698504492e-05 - ArtUnc_80: -4.185286658610534e-07 - ArtUnc_81: 1.3553201993634238e-06 - ArtUnc_82: -1.3444472389723267e-09 - ArtUnc_83: -1.3574624362066917e-06 - ArtUnc_84: -3.53029436685307e-06 - ArtUnc_85: 1.2092535550320447e-06 - ArtUnc_86: -7.154831036186798e-06 - ArtUnc_87: 4.0481952286339225e-06 - ArtUnc_88: 2.553863669683852e-06 - ArtUnc_89: -1.0256192208287806e-05 - ArtUnc_90: -3.0734211339617674e-06 - ArtUnc_91: -2.4789324434247186e-06 - ArtUnc_92: 2.3925801886004683e-06 - ArtUnc_93: 2.928764715175451e-06 - ArtUnc_94: -7.50380017785513e-08 - ArtUnc_95: 6.988055593526797e-07 - ArtUnc_96: -9.190338720973444e-08 + ArtUnc_1: 0.009828482441487745 + ArtUnc_2: -0.00460871700064456 + ArtUnc_3: -0.002367722967671026 + ArtUnc_4: -0.00029926032901598235 + ArtUnc_5: -0.00012690827336534974 + ArtUnc_6: -6.2210660451003455e-06 + ArtUnc_7: -8.451570832595379e-05 + ArtUnc_8: 0.02751057521746776 + ArtUnc_9: 1.5723655127338393e-05 + ArtUnc_10: 0.017825203774346893 + ArtUnc_11: -0.006729346020044204 + ArtUnc_12: 0.015601139436504471 + ArtUnc_13: -0.007047244784114975 + ArtUnc_14: -0.0065521735181942676 + ArtUnc_15: -0.005325434628903351 + ArtUnc_16: 0.0064917673106256015 + ArtUnc_17: -0.0034180238988290863 + ArtUnc_18: 0.0016271913888590524 + ArtUnc_19: -0.0010176831113118696 + ArtUnc_20: 0.0012412268220376775 + ArtUnc_21: 0.0013910730652472933 + ArtUnc_22: -0.0009017674683374423 + ArtUnc_23: 4.585804574036141e-05 + ArtUnc_24: -0.0001413221668135053 + ArtUnc_25: 0.048844340697331595 + ArtUnc_26: 0.04181590905252278 + ArtUnc_27: 0.32589663868765795 + ArtUnc_28: -0.046280711933589666 + ArtUnc_29: -0.030819773195066773 + ArtUnc_30: 0.14587854716562404 + ArtUnc_31: -0.0016396219494746182 + ArtUnc_32: -0.0678545120748393 + ArtUnc_33: -0.022661813340476022 + ArtUnc_34: -0.04182033033426591 + ArtUnc_35: -0.06905773771897107 + ArtUnc_36: -0.026864389685190497 + ArtUnc_37: -0.004292649218077433 + ArtUnc_38: 0.0050802906960727345 + ArtUnc_39: 0.0008362842858768569 + ArtUnc_40: 0.0003095012144619919 + ArtUnc_41: -0.7052015856251063 + ArtUnc_42: -0.6327097492563641 + ArtUnc_43: 0.12172801961898926 + ArtUnc_44: 0.22099531757298294 + ArtUnc_45: -0.23647012932139355 + ArtUnc_46: 0.08099032950666608 + ArtUnc_47: -0.20664841683345517 + ArtUnc_48: 0.038265988932915405 + ArtUnc_49: 0.09491404193287561 + ArtUnc_50: 0.09824741575171583 + ArtUnc_51: -0.004617328215157453 + ArtUnc_52: 0.0017742998422925309 + ArtUnc_53: 0.09017523379420407 + ArtUnc_54: -0.028143182158681345 + ArtUnc_55: -0.011196793347803947 + ArtUnc_56: -0.0034442880899961553 + ArtUnc_57: 0.0010036416826926242 + ArtUnc_58: -0.0028231731389436556 + ArtUnc_59: 0.0012046531993427795 + ArtUnc_60: 0.0003414476538073182 + ArtUnc_61: 2.537222981374834e-05 + ArtUnc_62: -0.00032734669173514557 + ArtUnc_63: -0.00028632491468644916 + ArtUnc_64: -0.0006345923426677774 + ArtUnc_65: 0.0005386105751243396 + ArtUnc_66: -0.0011505629179389587 + ArtUnc_67: 0.0004560945531371202 + ArtUnc_68: 0.003014846949041353 + ArtUnc_69: 0.0020738004664223268 + ArtUnc_70: -0.00037625735442800627 + ArtUnc_71: 0.0004925221551271979 + ArtUnc_72: -0.00026471775867246614 + ArtUnc_73: 0.0002693477913324866 + ArtUnc_74: -0.00026473689865880184 + ArtUnc_75: -3.595203059976877e-05 + ArtUnc_76: 1.2460882397148897e-06 + ArtUnc_77: 4.642367619193105e-05 + ArtUnc_78: 3.913418086393189e-05 + ArtUnc_79: -6.51698698504578e-05 + ArtUnc_80: 4.185286658640881e-07 + ArtUnc_81: 1.355320199362528e-06 + ArtUnc_82: -1.3444472389898236e-09 + ArtUnc_83: -1.3574624362073272e-06 + ArtUnc_84: -3.5302943668521003e-06 + ArtUnc_85: 1.2092535550324354e-06 + ArtUnc_86: -2.392580188600286e-06 + ArtUnc_87: -2.9287647151749426e-06 + ArtUnc_88: -7.154831036187616e-06 + ArtUnc_89: -4.048195228634956e-06 + ArtUnc_90: 2.553863669683389e-06 + ArtUnc_91: -6.988055593524728e-07 + ArtUnc_92: -7.503800177848302e-08 + ArtUnc_93: -1.0256192208288061e-05 + ArtUnc_94: 3.073421133961953e-06 + ArtUnc_95: -2.478932443424516e-06 + ArtUnc_96: -9.190338720973543e-08 - stat: 0 Uncorr: 0.050499999999999996 RCES: 0.06405094393332544 @@ -1458,102 +1458,102 @@ bins: ModelRW_2: 0.10426996595376828 JES_1: 0.15076713471236028 JES_2: 0.15076713471236028 - ArtUnc_1: -6.164644459496333e-08 + ArtUnc_1: -6.164644459496338e-08 ArtUnc_2: 3.922489697003599e-06 - ArtUnc_3: 3.676532891100394e-06 - ArtUnc_4: 5.56487344764471e-07 - ArtUnc_5: 6.597432172993162e-07 - ArtUnc_6: -4.992344983074685e-07 - ArtUnc_7: 1.1475159680928933e-07 - ArtUnc_8: 9.85268949055519e-05 - ArtUnc_9: 4.4079656946630887e-07 - ArtUnc_10: 0.00017923445289304494 - ArtUnc_11: 7.616657232720363e-05 - ArtUnc_12: -4.4728975211691914e-05 - ArtUnc_13: -4.079778614206482e-05 - ArtUnc_14: 1.1653214759906138e-05 - ArtUnc_15: 2.9468682734544436e-05 - ArtUnc_16: -4.060088063748322e-05 - ArtUnc_17: -4.898611122436428e-05 - ArtUnc_18: 2.5000894892529564e-05 - ArtUnc_19: -1.889207092898967e-05 - ArtUnc_20: 3.208941532949087e-05 - ArtUnc_21: -3.183327131448302e-05 - ArtUnc_22: 1.902572815062949e-05 - ArtUnc_23: -7.026400508550222e-06 - ArtUnc_24: 5.427374187195018e-07 - ArtUnc_25: -0.0018049794383780081 - ArtUnc_26: 0.0011801587967397737 - ArtUnc_27: 0.00957849418161535 - ArtUnc_28: -0.0008501682735662729 - ArtUnc_29: -0.00090065037085261 - ArtUnc_30: -0.004665811728323799 - ArtUnc_31: -0.00010043484313471119 - ArtUnc_32: 0.0020131234135996206 - ArtUnc_33: 0.0006497633601130008 - ArtUnc_34: -0.0008514052295296936 - ArtUnc_35: -0.0011510551850159917 - ArtUnc_36: -5.32719746779371e-05 - ArtUnc_37: -0.00018763487850364906 - ArtUnc_38: -0.00037460143753174647 - ArtUnc_39: 0.00020843676093660634 - ArtUnc_40: 3.0350509533323387e-05 - ArtUnc_41: 0.1026626014015879 - ArtUnc_42: -0.09840882032617751 - ArtUnc_43: -0.06871362568789526 - ArtUnc_44: -0.00931737469487431 - ArtUnc_45: -0.0351818352211152 - ArtUnc_46: -0.029312409153198712 - ArtUnc_47: -0.013643854055219985 - ArtUnc_48: 0.033826594367277786 - ArtUnc_49: -0.004633542472206927 - ArtUnc_50: -0.02025841501175573 - ArtUnc_51: -0.02252368836875011 - ArtUnc_52: 0.009567457581226341 - ArtUnc_53: 0.009843605589854273 - ArtUnc_54: 0.0015170613413585646 - ArtUnc_55: 0.004771693908959932 - ArtUnc_56: -0.002384075134639636 - ArtUnc_57: -0.06258888615097233 - ArtUnc_58: 0.26121858121934344 - ArtUnc_59: -0.10808008735278968 - ArtUnc_60: -0.023049073521630832 - ArtUnc_61: 0.14287717897481966 - ArtUnc_62: -0.04647436774649933 - ArtUnc_63: -0.05445480327220323 - ArtUnc_64: 0.020264268067554825 - ArtUnc_65: 0.00208377706928161 - ArtUnc_66: 0.06705184198137588 - ArtUnc_67: -0.021510300671448226 - ArtUnc_68: -0.0835583452065412 - ArtUnc_69: -0.042482935947782685 - ArtUnc_70: 0.009286362438022399 - ArtUnc_71: 0.005984455381454777 - ArtUnc_72: -0.0015854931928308486 - ArtUnc_73: 0.0016273501516147152 - ArtUnc_74: 0.001251898970055396 - ArtUnc_75: 5.0258160043944296e-05 - ArtUnc_76: -5.509821488613624e-05 - ArtUnc_77: -0.00014416711829247207 - ArtUnc_78: 0.00010278516747366994 - ArtUnc_79: 0.0006061054586887364 - ArtUnc_80: 6.343135642241622e-05 - ArtUnc_81: 7.291486148517893e-05 - ArtUnc_82: 3.946880946781509e-07 - ArtUnc_83: 0.00013469409234429693 - ArtUnc_84: -0.00010207049142692077 - ArtUnc_85: -0.00010050144195657886 - ArtUnc_86: -0.000207775124867491 - ArtUnc_87: 0.00011443435620056058 - ArtUnc_88: 3.8873770841941044e-05 - ArtUnc_89: -0.0002676195551706335 - ArtUnc_90: -8.669785835344134e-05 - ArtUnc_91: 8.024371620582725e-06 - ArtUnc_92: -0.00011679913164205565 - ArtUnc_93: -7.445854981991481e-05 - ArtUnc_94: 4.009384033284143e-06 - ArtUnc_95: -2.328595519510194e-05 - ArtUnc_96: -2.1333954408291226e-05 + ArtUnc_3: 3.676532891100279e-06 + ArtUnc_4: 5.564873447651579e-07 + ArtUnc_5: 6.59743217294973e-07 + ArtUnc_6: 4.992344983248174e-07 + ArtUnc_7: -1.1475159678064252e-07 + ArtUnc_8: -9.852689490555703e-05 + ArtUnc_9: -4.407965694973057e-07 + ArtUnc_10: 0.0001792344528930398 + ArtUnc_11: 7.616657232721964e-05 + ArtUnc_12: -4.4728975211666266e-05 + ArtUnc_13: -4.0797786142070816e-05 + ArtUnc_14: 1.1653214759857445e-05 + ArtUnc_15: 2.9468682734613832e-05 + ArtUnc_16: -4.060088063743114e-05 + ArtUnc_17: 4.8986111224387076e-05 + ArtUnc_18: -2.500089489249813e-05 + ArtUnc_19: 1.8892070928952376e-05 + ArtUnc_20: -3.2089415329472654e-05 + ArtUnc_21: -3.1833271314447314e-05 + ArtUnc_22: 1.9025728150568153e-05 + ArtUnc_23: 7.026400508713268e-06 + ArtUnc_24: -5.427374187542625e-07 + ArtUnc_25: 0.00180497943837816 + ArtUnc_26: -0.0011801587967399964 + ArtUnc_27: -0.009578494181615448 + ArtUnc_28: 0.0008501682735662387 + ArtUnc_29: 0.0009006503708527966 + ArtUnc_30: -0.004665811728323744 + ArtUnc_31: 0.00010043484313485591 + ArtUnc_32: 0.002013123413600144 + ArtUnc_33: 0.0006497633601117199 + ArtUnc_34: 0.0008514052295296975 + ArtUnc_35: 0.001151055185015836 + ArtUnc_36: -5.32719746780574e-05 + ArtUnc_37: -0.00018763487850387555 + ArtUnc_38: 0.000374601437531586 + ArtUnc_39: 0.00020843676093705043 + ArtUnc_40: 3.0350509533418895e-05 + ArtUnc_41: 0.10266260140158713 + ArtUnc_42: -0.09840882032617902 + ArtUnc_43: -0.0687136256878946 + ArtUnc_44: -0.009317374694874054 + ArtUnc_45: -0.03518183522111571 + ArtUnc_46: -0.029312409153198906 + ArtUnc_47: 0.013643854055219597 + ArtUnc_48: -0.03382659436727794 + ArtUnc_49: 0.004633542472207272 + ArtUnc_50: 0.02025841501175562 + ArtUnc_51: -0.0023840751346399375 + ArtUnc_52: 0.004771693908960994 + ArtUnc_53: 0.022523688368749763 + ArtUnc_54: -0.009567457581226015 + ArtUnc_55: -0.009843605589854792 + ArtUnc_56: 0.001517061341357972 + ArtUnc_57: 0.06258888615097814 + ArtUnc_58: -0.26121858121934405 + ArtUnc_59: 0.10808008735278782 + ArtUnc_60: 0.023049073521630416 + ArtUnc_61: -0.14287717897482147 + ArtUnc_62: 0.04647436774649283 + ArtUnc_63: 0.05445480327220324 + ArtUnc_64: 0.020264268067555387 + ArtUnc_65: -0.002083777069281772 + ArtUnc_66: 0.06705184198137516 + ArtUnc_67: -0.021510300671449198 + ArtUnc_68: -0.08355834520654506 + ArtUnc_69: -0.04248293594777888 + ArtUnc_70: 0.0015854931928314551 + ArtUnc_71: -0.009286362438022215 + ArtUnc_72: 0.005984455381454388 + ArtUnc_73: 0.0016273501516143546 + ArtUnc_74: -0.001251898970055017 + ArtUnc_75: -5.0258160043893535e-05 + ArtUnc_76: -5.509821488616488e-05 + ArtUnc_77: -0.0001441671182925708 + ArtUnc_78: -0.00010278516747378758 + ArtUnc_79: 0.0006061054586888791 + ArtUnc_80: -6.34313564224788e-05 + ArtUnc_81: 7.291486148520376e-05 + ArtUnc_82: 3.946880946781465e-07 + ArtUnc_83: 0.0001346940923443161 + ArtUnc_84: -0.00010207049142693918 + ArtUnc_85: -0.00010050144195659215 + ArtUnc_86: 0.0001167991316420489 + ArtUnc_87: 7.445854981989877e-05 + ArtUnc_88: -0.00020777512486746868 + ArtUnc_89: -0.00011443435620054819 + ArtUnc_90: 3.887377084194982e-05 + ArtUnc_91: 2.3285955195096784e-05 + ArtUnc_92: 4.009384033282361e-06 + ArtUnc_93: -0.0002676195551706283 + ArtUnc_94: 8.669785835343736e-05 + ArtUnc_95: 8.024371620577143e-06 + ArtUnc_96: -2.1333954408291494e-05 - stat: 0 Uncorr: 0.00901 RCES: 0.011365821269490387 @@ -1569,102 +1569,102 @@ bins: ModelRW_2: 0.007708948839173859 JES_1: 0.028766374043207983 JES_2: 0.028766374043207983 - ArtUnc_1: -2.817126819950767e-08 - ArtUnc_2: 4.4684049988513985e-07 - ArtUnc_3: 6.06566938162903e-07 - ArtUnc_4: 2.2074680006429258e-07 - ArtUnc_5: -2.7226297565523305e-08 - ArtUnc_6: -1.0502030775142442e-08 - ArtUnc_7: -6.247091275967356e-09 - ArtUnc_8: 1.3352960960346633e-05 - ArtUnc_9: 5.195880521860876e-08 - ArtUnc_10: 2.174311254461487e-05 - ArtUnc_11: 1.438428343348627e-05 - ArtUnc_12: -6.488154730194581e-06 - ArtUnc_13: -1.2077849621578791e-05 - ArtUnc_14: -9.851969940031306e-07 - ArtUnc_15: -5.508344773231738e-06 - ArtUnc_16: -8.576868897549714e-07 - ArtUnc_17: -1.7036429902542261e-06 - ArtUnc_18: -2.257652907611229e-07 - ArtUnc_19: -1.2942610814162311e-06 - ArtUnc_20: 5.002398679522411e-06 - ArtUnc_21: -3.825337628274403e-06 - ArtUnc_22: 1.7604760362986067e-06 - ArtUnc_23: -6.148453535389899e-07 - ArtUnc_24: 8.647766601743679e-08 - ArtUnc_25: -0.00021897760157160368 - ArtUnc_26: 0.0001041769653105037 - ArtUnc_27: 0.0012450843536182547 - ArtUnc_28: -0.00017348975365976 - ArtUnc_29: -0.00015219103957117347 - ArtUnc_30: -0.0007465051590979212 - ArtUnc_31: -2.0704047750258446e-05 - ArtUnc_32: 0.0004343764298589348 - ArtUnc_33: 0.00012404908013743279 - ArtUnc_34: -0.0002862893515867421 - ArtUnc_35: -0.0004963590614518438 - ArtUnc_36: 0.00020282456223151047 - ArtUnc_37: 3.7094347069720885e-05 - ArtUnc_38: 4.106182778419227e-05 - ArtUnc_39: -6.799893174138268e-06 - ArtUnc_40: -1.4954824069585455e-06 - ArtUnc_41: 0.0008081930040477415 - ArtUnc_42: 0.002108683928137042 - ArtUnc_43: 0.00035821304071891865 - ArtUnc_44: -0.0005399654934629002 - ArtUnc_45: 0.001316493409075432 - ArtUnc_46: 0.00020101437821280166 - ArtUnc_47: -0.0006350875907169873 - ArtUnc_48: -0.00047593825956509703 - ArtUnc_49: 0.000602376009215324 - ArtUnc_50: 0.0009495179427234354 - ArtUnc_51: 0.0009883270985556625 - ArtUnc_52: -0.00035012232252778645 - ArtUnc_53: -0.0002381219447796239 - ArtUnc_54: -4.1236601124929335e-06 - ArtUnc_55: -7.65822539999393e-05 - ArtUnc_56: 6.923725304543144e-05 - ArtUnc_57: 0.020661271954792452 - ArtUnc_58: -0.03012617915198426 - ArtUnc_59: -0.0463298301030496 - ArtUnc_60: -0.017025874165601154 - ArtUnc_61: 0.008563593972698479 - ArtUnc_62: 0.012710627449859669 - ArtUnc_63: -0.004931348879742483 - ArtUnc_64: -0.01951139053213328 - ArtUnc_65: -0.01837312552201215 - ArtUnc_66: 0.0069553190698154 - ArtUnc_67: -0.0018328306634743797 - ArtUnc_68: -0.0002602993112448357 - ArtUnc_69: 0.0005484249307853947 - ArtUnc_70: -0.0007404022609204061 - ArtUnc_71: -0.00026912314771388465 - ArtUnc_72: 0.0001401840323889083 - ArtUnc_73: 0.07358766616309499 - ArtUnc_74: 0.08935275262643164 - ArtUnc_75: 0.012055679340105329 - ArtUnc_76: -0.0027011264050325317 - ArtUnc_77: 0.021387610532925833 - ArtUnc_78: -0.013447794794431011 - ArtUnc_79: -0.043068065429579305 - ArtUnc_80: -0.00025035287636590564 - ArtUnc_81: -0.0004905800793988719 - ArtUnc_82: -2.4339488351599227e-06 - ArtUnc_83: 0.00034942425994390856 - ArtUnc_84: 0.0003703550434100738 - ArtUnc_85: -0.00018102905776393803 - ArtUnc_86: 0.002600428908484644 - ArtUnc_87: 0.0023811496247881157 - ArtUnc_88: -0.0006337108544292563 - ArtUnc_89: 0.004616274227591015 - ArtUnc_90: -0.0008602099782936526 - ArtUnc_91: 0.000764431035628665 - ArtUnc_92: 0.0001438932534886056 - ArtUnc_93: 0.00039986682117638847 - ArtUnc_94: -3.0413386783335254e-05 - ArtUnc_95: 0.00015991026827909247 - ArtUnc_96: -1.4366715556161222e-06 + ArtUnc_1: -2.8171268199507716e-08 + ArtUnc_2: 4.468404998851395e-07 + ArtUnc_3: 6.065669381628866e-07 + ArtUnc_4: 2.2074680006442324e-07 + ArtUnc_5: -2.7226297566834386e-08 + ArtUnc_6: 1.0502030776599082e-08 + ArtUnc_7: 6.247091281933477e-09 + ArtUnc_8: -1.3352960960347073e-05 + ArtUnc_9: -5.195880523141805e-08 + ArtUnc_10: 2.1743112544614577e-05 + ArtUnc_11: 1.4384283433486833e-05 + ArtUnc_12: -6.488154730178476e-06 + ArtUnc_13: -1.2077849621583853e-05 + ArtUnc_14: -9.85196993995112e-07 + ArtUnc_15: -5.508344773231818e-06 + ArtUnc_16: -8.576868897751414e-07 + ArtUnc_17: 1.703642990227518e-06 + ArtUnc_18: 2.2576529075168028e-07 + ArtUnc_19: 1.2942610814684423e-06 + ArtUnc_20: -5.002398679556529e-06 + ArtUnc_21: -3.8253376283432924e-06 + ArtUnc_22: 1.7604760363566307e-06 + ArtUnc_23: 6.148453534215448e-07 + ArtUnc_24: -8.64776660808692e-08 + ArtUnc_25: 0.00021897760157158004 + ArtUnc_26: -0.00010417696531048306 + ArtUnc_27: -0.0012450843536182764 + ArtUnc_28: 0.0001734897536596235 + ArtUnc_29: 0.00015219103957132238 + ArtUnc_30: -0.0007465051590978547 + ArtUnc_31: 2.0704047749812754e-05 + ArtUnc_32: 0.0004343764298588992 + ArtUnc_33: 0.0001240490801374033 + ArtUnc_34: 0.0002862893515864769 + ArtUnc_35: 0.000496359061452056 + ArtUnc_36: 0.00020282456223106611 + ArtUnc_37: 3.709434707071476e-05 + ArtUnc_38: -4.1061827783918016e-05 + ArtUnc_39: -6.799893174198059e-06 + ArtUnc_40: -1.495482406591319e-06 + ArtUnc_41: 0.0008081930040474229 + ArtUnc_42: 0.0021086839281373873 + ArtUnc_43: 0.00035821304071842616 + ArtUnc_44: -0.0005399654934635183 + ArtUnc_45: 0.001316493409075148 + ArtUnc_46: 0.0002010143782132027 + ArtUnc_47: 0.0006350875907164479 + ArtUnc_48: 0.0004759382595654312 + ArtUnc_49: -0.0006023760092153574 + ArtUnc_50: -0.0009495179427241272 + ArtUnc_51: 6.923725304565707e-05 + ArtUnc_52: -7.658225400022983e-05 + ArtUnc_53: -0.0009883270985561877 + ArtUnc_54: 0.00035012232252784885 + ArtUnc_55: 0.00023812194477975467 + ArtUnc_56: -4.123660112127637e-06 + ArtUnc_57: -0.02066127195479415 + ArtUnc_58: 0.030126179151983706 + ArtUnc_59: 0.046329830103050265 + ArtUnc_60: 0.01702587416560102 + ArtUnc_61: -0.008563593972697963 + ArtUnc_62: -0.012710627449860143 + ArtUnc_63: 0.004931348879743005 + ArtUnc_64: -0.019511390532134486 + ArtUnc_65: 0.01837312552201359 + ArtUnc_66: 0.006955319069816964 + ArtUnc_67: -0.001832830663475033 + ArtUnc_68: -0.00026029931124660403 + ArtUnc_69: 0.000548424930784027 + ArtUnc_70: -0.00014018403238890204 + ArtUnc_71: 0.0007404022609201388 + ArtUnc_72: -0.0002691231477139737 + ArtUnc_73: 0.07358766616309388 + ArtUnc_74: -0.0893527526264328 + ArtUnc_75: -0.012055679340105704 + ArtUnc_76: -0.0027011264050323686 + ArtUnc_77: 0.021387610532927363 + ArtUnc_78: 0.013447794794430668 + ArtUnc_79: -0.04306806542957896 + ArtUnc_80: 0.0002503528763656325 + ArtUnc_81: -0.0004905800793986709 + ArtUnc_82: -2.433948835170254e-06 + ArtUnc_83: 0.00034942425994394585 + ArtUnc_84: 0.0003703550434099853 + ArtUnc_85: -0.00018102905776399447 + ArtUnc_86: -0.00014389325348863863 + ArtUnc_87: -0.0003998668211764174 + ArtUnc_88: 0.00260042890848475 + ArtUnc_89: -0.0023811496247879713 + ArtUnc_90: -0.0006337108544291929 + ArtUnc_91: -0.000159910268279095 + ArtUnc_92: -3.0413386783324703e-05 + ArtUnc_93: 0.004616274227591099 + ArtUnc_94: 0.0008602099782936573 + ArtUnc_95: 0.0007644310356287082 + ArtUnc_96: -1.4366715556144155e-06 - stat: 0 Uncorr: 0.000644 RCES: 0.003050575726383464 @@ -1680,102 +1680,102 @@ bins: ModelRW_2: 0.009644879926842013 JES_1: 0.006474149328336504 JES_2: 0.006474149328336504 - ArtUnc_1: 6.041525253143828e-10 - ArtUnc_2: -7.457087380483391e-10 - ArtUnc_3: -1.4082834307512728e-10 - ArtUnc_4: 5.259751980809698e-10 - ArtUnc_5: -6.923695139523178e-10 - ArtUnc_6: 3.3208895331698243e-10 - ArtUnc_7: 8.073137294780598e-12 - ArtUnc_8: -1.2230927873465858e-07 - ArtUnc_9: -5.113647669890167e-10 - ArtUnc_10: -2.2446935066345123e-07 - ArtUnc_11: -1.4326065212866686e-07 - ArtUnc_12: 1.153026085468027e-08 - ArtUnc_13: 1.1174732880309481e-07 - ArtUnc_14: 2.4558207141038358e-08 - ArtUnc_15: 8.883175741719856e-10 - ArtUnc_16: 3.6467441648207014e-08 - ArtUnc_17: 8.236732097262847e-08 - ArtUnc_18: -5.197226792070373e-08 - ArtUnc_19: 3.841247467637868e-08 - ArtUnc_20: -6.425356531140175e-08 - ArtUnc_21: 6.155293697788874e-08 - ArtUnc_22: -2.951676174829013e-08 - ArtUnc_23: 5.562899998071879e-09 - ArtUnc_24: -7.151556924463854e-10 - ArtUnc_25: 1.608931748776258e-06 - ArtUnc_26: -1.8646694530908165e-06 - ArtUnc_27: -1.1274858886782248e-05 - ArtUnc_28: 6.938518411524558e-07 - ArtUnc_29: 4.5559441224943266e-07 - ArtUnc_30: 1.961726405134673e-06 - ArtUnc_31: -2.1287085839396652e-08 - ArtUnc_32: 4.881844799100779e-07 - ArtUnc_33: 2.1793478494002968e-08 - ArtUnc_34: -7.364259583222377e-07 - ArtUnc_35: -1.4923928499632316e-06 - ArtUnc_36: 7.430948147792464e-07 - ArtUnc_37: 1.8178644101091007e-07 - ArtUnc_38: 2.3100931027139345e-07 - ArtUnc_39: -2.047416229184488e-07 - ArtUnc_40: -7.423803500036187e-08 - ArtUnc_41: 0.0005268887524988114 - ArtUnc_42: -0.0005714659827221061 - ArtUnc_43: -0.00027022218346637445 - ArtUnc_44: 1.639807218947462e-05 - ArtUnc_45: -0.00017043659189344178 - ArtUnc_46: -4.9978593562796565e-05 - ArtUnc_47: 3.940253779989799e-05 - ArtUnc_48: 3.0242333060471106e-05 - ArtUnc_49: -2.5495449976636212e-05 - ArtUnc_50: -6.6918278221475645e-06 - ArtUnc_51: 4.833166067699923e-05 - ArtUnc_52: -2.4613900281051554e-05 - ArtUnc_53: -5.019518747024589e-05 - ArtUnc_54: -7.534173203401729e-06 - ArtUnc_55: -2.9103029027200832e-05 - ArtUnc_56: 1.4789803073690994e-05 - ArtUnc_57: 0.0009724406566382068 - ArtUnc_58: -0.0025805819255820058 - ArtUnc_59: -0.0003722812543555839 - ArtUnc_60: -0.00024486307773781673 - ArtUnc_61: -0.000750290877691974 - ArtUnc_62: 0.0006032959090819328 - ArtUnc_63: 0.00021837644109062756 - ArtUnc_64: -0.0006049467434411304 - ArtUnc_65: -0.000469840672415627 - ArtUnc_66: -0.00016047606982258245 - ArtUnc_67: 5.597628896179762e-05 - ArtUnc_68: 0.00021823897883524966 - ArtUnc_69: 1.100866729218056e-05 - ArtUnc_70: -1.7410499464597899e-06 - ArtUnc_71: 1.5512309295244594e-05 - ArtUnc_72: -9.332428840907835e-05 - ArtUnc_73: 0.0011714027120292337 - ArtUnc_74: 0.00027863115780019164 - ArtUnc_75: -0.000287000157299122 - ArtUnc_76: 0.0072247650818527 - ArtUnc_77: -0.0013220955446080014 - ArtUnc_78: -0.01613476439515327 - ArtUnc_79: 0.00381306711786311 - ArtUnc_80: 0.005064477730472728 - ArtUnc_81: 0.0034362312205621515 - ArtUnc_82: 2.2412802282072182e-05 - ArtUnc_83: 0.022201540076900495 - ArtUnc_84: -0.004456629085650692 - ArtUnc_85: -0.017428639534710202 - ArtUnc_86: -0.011385699670263552 - ArtUnc_87: 0.00778080219253493 - ArtUnc_88: 0.0018988296326871237 - ArtUnc_89: -0.008045285761312297 - ArtUnc_90: -0.0034782788311635794 - ArtUnc_91: 0.00022653556448832082 - ArtUnc_92: -0.02149648344381187 - ArtUnc_93: -0.013607990667775922 - ArtUnc_94: 0.0005860095065114094 - ArtUnc_95: -0.00395969577280809 - ArtUnc_96: -0.004254928877904954 + ArtUnc_1: 6.041525253143837e-10 + ArtUnc_2: -7.457087380483398e-10 + ArtUnc_3: -1.4082834307497503e-10 + ArtUnc_4: 5.259751980797566e-10 + ArtUnc_5: -6.923695139325593e-10 + ArtUnc_6: -3.3208895333728377e-10 + ArtUnc_7: -8.073137240863234e-12 + ArtUnc_8: 1.2230927873466213e-07 + ArtUnc_9: 5.113647670230508e-10 + ArtUnc_10: -2.244693506634476e-07 + ArtUnc_11: -1.432606521286891e-07 + ArtUnc_12: 1.1530260854438604e-08 + ArtUnc_13: 1.117473288031136e-07 + ArtUnc_14: 2.455820714133376e-08 + ArtUnc_15: 8.883175739142325e-10 + ArtUnc_16: 3.64674416477968e-08 + ArtUnc_17: -8.23673209728863e-08 + ArtUnc_18: 5.197226792066097e-08 + ArtUnc_19: -3.841247467568004e-08 + ArtUnc_20: 6.425356531113657e-08 + ArtUnc_21: 6.155293697544512e-08 + ArtUnc_22: -2.9516761746782553e-08 + ArtUnc_23: -5.562900001094921e-09 + ArtUnc_24: 7.151556918564961e-10 + ArtUnc_25: -1.6089317487759996e-06 + ArtUnc_26: 1.8646694530904163e-06 + ArtUnc_27: 1.1274858886782353e-05 + ArtUnc_28: -6.938518411540835e-07 + ArtUnc_29: -4.555944122477703e-07 + ArtUnc_30: 1.9617264051350774e-06 + ArtUnc_31: 2.1287085831880707e-08 + ArtUnc_32: 4.881844799069134e-07 + ArtUnc_33: 2.179347849928199e-08 + ArtUnc_34: 7.364259583162062e-07 + ArtUnc_35: 1.4923928499667925e-06 + ArtUnc_36: 7.430948147728629e-07 + ArtUnc_37: 1.8178644102041127e-07 + ArtUnc_38: -2.3100931026616919e-07 + ArtUnc_39: -2.047416229297779e-07 + ArtUnc_40: -7.4238034992303e-08 + ArtUnc_41: 0.0005268887524987921 + ArtUnc_42: -0.0005714659827220986 + ArtUnc_43: -0.00027022218346638225 + ArtUnc_44: 1.6398072189473574e-05 + ArtUnc_45: -0.00017043659189344853 + ArtUnc_46: -4.997859356279252e-05 + ArtUnc_47: -3.9402537799913584e-05 + ArtUnc_48: -3.0242333060468175e-05 + ArtUnc_49: 2.5495449976636246e-05 + ArtUnc_50: 6.691827822136524e-06 + ArtUnc_51: 1.4789803073696317e-05 + ArtUnc_52: -2.910302902721402e-05 + ArtUnc_53: -4.8331660677013445e-05 + ArtUnc_54: 2.46139002810582e-05 + ArtUnc_55: 5.0195187470255184e-05 + ArtUnc_56: -7.534173203397271e-06 + ArtUnc_57: -0.0009724406566382886 + ArtUnc_58: 0.002580581925581996 + ArtUnc_59: 0.0003722812543556141 + ArtUnc_60: 0.00024486307773779494 + ArtUnc_61: 0.0007502908776919723 + ArtUnc_62: -0.000603295909081876 + ArtUnc_63: -0.00021837644109062352 + ArtUnc_64: -0.0006049467434411995 + ArtUnc_65: 0.0004698406724156381 + ArtUnc_66: -0.00016047606982258857 + ArtUnc_67: 5.597628896170966e-05 + ArtUnc_68: 0.0002182389788351802 + ArtUnc_69: 1.1008667292203844e-05 + ArtUnc_70: 9.332428840909884e-05 + ArtUnc_71: 1.7410499463531618e-06 + ArtUnc_72: 1.5512309295234166e-05 + ArtUnc_73: 0.001171402712029326 + ArtUnc_74: -0.0002786311578004168 + ArtUnc_75: 0.00028700015729913036 + ArtUnc_76: 0.007224765081852715 + ArtUnc_77: -0.0013220955446067943 + ArtUnc_78: 0.01613476439515324 + ArtUnc_79: 0.0038130671178633353 + ArtUnc_80: -0.005064477730472428 + ArtUnc_81: 0.003436231220562271 + ArtUnc_82: 2.2412802282053842e-05 + ArtUnc_83: 0.022201540076900436 + ArtUnc_84: -0.0044566290856507575 + ArtUnc_85: -0.01742863953471023 + ArtUnc_86: 0.021496483443812036 + ArtUnc_87: 0.013607990667775918 + ArtUnc_88: -0.011385699670263238 + ArtUnc_89: -0.007780802192535263 + ArtUnc_90: 0.001898829632687188 + ArtUnc_91: 0.003959695772808286 + ArtUnc_92: 0.0005860095065112893 + ArtUnc_93: -0.008045285761312283 + ArtUnc_94: 0.0034782788311635373 + ArtUnc_95: 0.00022653556448828135 + ArtUnc_96: -0.004254928877905018 - stat: 0 Uncorr: 2.37 RCES: 14.240027209507012 @@ -1792,101 +1792,101 @@ bins: JES_1: 6.2898556496751175 JES_2: 6.2898556496751175 ArtUnc_1: 0.862390513360958 - ArtUnc_2: -0.0585223341972758 - ArtUnc_3: -0.015617481349614281 - ArtUnc_4: -0.02865956582028331 - ArtUnc_5: 0.024560404389025382 - ArtUnc_6: 0.01369754229357918 - ArtUnc_7: -0.03126673580103048 - ArtUnc_8: 8.052766469309573 - ArtUnc_9: 0.0038695705497448643 - ArtUnc_10: -5.440340482204737 - ArtUnc_11: 0.5063656603501598 - ArtUnc_12: 0.13134908148401084 - ArtUnc_13: 1.5029665042315419 - ArtUnc_14: -0.028689992197552618 - ArtUnc_15: 0.18002815502716843 - ArtUnc_16: 0.014250407028977898 - ArtUnc_17: -0.04851242069981796 - ArtUnc_18: 0.29940436496149647 - ArtUnc_19: -0.07767460929124594 - ArtUnc_20: -0.2717761425707225 - ArtUnc_21: 0.04717710535467236 - ArtUnc_22: 0.03848277959299325 - ArtUnc_23: -0.014740246882677633 - ArtUnc_24: -0.002989650130971767 - ArtUnc_25: 0.04036369541606758 - ArtUnc_26: 0.09302467152124247 - ArtUnc_27: 0.014597160954111526 - ArtUnc_28: 0.03227102341406198 - ArtUnc_29: -0.011743211789941789 - ArtUnc_30: -0.020758408969679874 - ArtUnc_31: -0.011241230788636574 - ArtUnc_32: 0.007682375996861734 - ArtUnc_33: 0.006482760235230509 - ArtUnc_34: -0.008580794784232671 - ArtUnc_35: -0.004056435036263777 - ArtUnc_36: 0.0008921238755738536 - ArtUnc_37: -0.0021935306004609665 - ArtUnc_38: -0.0009761650792591071 - ArtUnc_39: -0.0005096127087808091 - ArtUnc_40: -0.0005619835756197858 - ArtUnc_41: -0.0031631785001944813 - ArtUnc_42: -0.002833615200537957 - ArtUnc_43: 0.0007371773212970561 - ArtUnc_44: 0.0013088878222306671 - ArtUnc_45: -0.0012901354777218276 - ArtUnc_46: 0.000796063416044034 - ArtUnc_47: 0.0016605377633478315 - ArtUnc_48: -0.0004132208519303545 - ArtUnc_49: -0.0007064806487292458 - ArtUnc_50: -0.0008218480678580298 - ArtUnc_51: -0.0007009699714016416 - ArtUnc_52: 0.00017757524658647763 - ArtUnc_53: -9.061136987680712e-06 - ArtUnc_54: -0.00013438631943932464 - ArtUnc_55: 7.824198600373515e-05 - ArtUnc_56: -0.0001362899566796528 - ArtUnc_57: -9.964845519297443e-06 - ArtUnc_58: 1.122877378876763e-05 - ArtUnc_59: 1.3513642131207025e-05 - ArtUnc_60: 4.997737295236754e-06 - ArtUnc_61: -1.0751982835758077e-05 - ArtUnc_62: -6.136271969468173e-06 - ArtUnc_63: 7.0241953046404945e-06 - ArtUnc_64: 1.104379494273857e-05 - ArtUnc_65: 6.8579771992259895e-06 - ArtUnc_66: 1.5782301702338166e-06 - ArtUnc_67: 1.8570889589515615e-07 - ArtUnc_68: 7.24148349806898e-06 - ArtUnc_69: 9.093223014310866e-06 - ArtUnc_70: -4.916213171292747e-07 - ArtUnc_71: -5.360034925647852e-07 - ArtUnc_72: 2.251432226795964e-07 - ArtUnc_73: 1.5427469524348637e-06 - ArtUnc_74: 2.3515148923935714e-06 - ArtUnc_75: 4.3175359448502795e-07 - ArtUnc_76: 1.127293496046763e-07 - ArtUnc_77: 7.517926745289768e-07 - ArtUnc_78: -5.095707024872688e-07 - ArtUnc_79: -7.866491425713704e-07 - ArtUnc_80: -9.43488938444306e-08 - ArtUnc_81: -1.1980382405504978e-08 - ArtUnc_82: -4.258541093895629e-10 - ArtUnc_83: -4.412159234028068e-08 - ArtUnc_84: -2.5736692776210896e-08 - ArtUnc_85: 4.2710197772579343e-08 - ArtUnc_86: 7.8015829568531e-09 - ArtUnc_87: 5.735037683417709e-10 - ArtUnc_88: -9.147156941503064e-08 - ArtUnc_89: -1.3073151315178207e-07 - ArtUnc_90: -8.733441907194588e-08 - ArtUnc_91: 2.3566459633314016e-08 - ArtUnc_92: -8.348804058711307e-09 - ArtUnc_93: -1.7661293696835112e-08 - ArtUnc_94: 4.852624460880265e-09 - ArtUnc_95: -2.0837586511281873e-08 - ArtUnc_96: -8.364543817190377e-09 + ArtUnc_2: -0.058522334197274935 + ArtUnc_3: -0.015617481349614557 + ArtUnc_4: -0.02865956582028775 + ArtUnc_5: 0.024560404389031128 + ArtUnc_6: -0.013697542293582938 + ArtUnc_7: 0.0312667358010939 + ArtUnc_8: -8.052766469309553 + ArtUnc_9: -0.003869570549781359 + ArtUnc_10: -5.440340482204765 + ArtUnc_11: 0.5063656603501565 + ArtUnc_12: 0.13134908148404048 + ArtUnc_13: 1.5029665042315448 + ArtUnc_14: -0.02868999219755132 + ArtUnc_15: 0.1800281550271725 + ArtUnc_16: 0.01425040702897497 + ArtUnc_17: 0.04851242069982236 + ArtUnc_18: -0.2994043649614981 + ArtUnc_19: 0.07767460929125639 + ArtUnc_20: 0.2717761425707195 + ArtUnc_21: 0.047177105354672885 + ArtUnc_22: 0.03848277959299294 + ArtUnc_23: 0.014740246882677685 + ArtUnc_24: 0.0029896501309716835 + ArtUnc_25: -0.04036369541606761 + ArtUnc_26: -0.09302467152124266 + ArtUnc_27: -0.014597160954110492 + ArtUnc_28: -0.032271023414061836 + ArtUnc_29: 0.011743211789942889 + ArtUnc_30: -0.02075840896967938 + ArtUnc_31: 0.011241230788636522 + ArtUnc_32: 0.007682375996866057 + ArtUnc_33: 0.006482760235225154 + ArtUnc_34: 0.008580794784233063 + ArtUnc_35: 0.004056435036263157 + ArtUnc_36: 0.0008921238755738741 + ArtUnc_37: -0.0021935306004609617 + ArtUnc_38: 0.0009761650792590337 + ArtUnc_39: -0.0005096127087808053 + ArtUnc_40: -0.0005619835756197868 + ArtUnc_41: -0.0031631785001945928 + ArtUnc_42: -0.002833615200537926 + ArtUnc_43: 0.000737177321297061 + ArtUnc_44: 0.001308887822230703 + ArtUnc_45: -0.0012901354777218469 + ArtUnc_46: 0.0007960634160440661 + ArtUnc_47: -0.0016605377633478362 + ArtUnc_48: 0.00041322085193029644 + ArtUnc_49: 0.0007064806487292607 + ArtUnc_50: 0.0008218480678580217 + ArtUnc_51: -0.00013628995667965135 + ArtUnc_52: 7.824198600373727e-05 + ArtUnc_53: 0.0007009699714016272 + ArtUnc_54: -0.00017757524658647804 + ArtUnc_55: 9.061136987685657e-06 + ArtUnc_56: -0.00013438631943932383 + ArtUnc_57: 9.964845519297726e-06 + ArtUnc_58: -1.1228773788767014e-05 + ArtUnc_59: -1.3513642131206547e-05 + ArtUnc_60: -4.997737295236594e-06 + ArtUnc_61: 1.0751982835757547e-05 + ArtUnc_62: 6.1362719694684646e-06 + ArtUnc_63: -7.024195304640522e-06 + ArtUnc_64: 1.104379494273848e-05 + ArtUnc_65: -6.857977199225964e-06 + ArtUnc_66: 1.578230170233843e-06 + ArtUnc_67: 1.8570889589523063e-07 + ArtUnc_68: 7.241483498069554e-06 + ArtUnc_69: 9.093223014310423e-06 + ArtUnc_70: -2.2514322267953912e-07 + ArtUnc_71: 4.916213171292535e-07 + ArtUnc_72: -5.360034925647657e-07 + ArtUnc_73: 1.5427469524348488e-06 + ArtUnc_74: -2.3515148923936133e-06 + ArtUnc_75: -4.317535944850396e-07 + ArtUnc_76: 1.1272934960468206e-07 + ArtUnc_77: 7.517926745290272e-07 + ArtUnc_78: 5.095707024872422e-07 + ArtUnc_79: -7.8664914257136e-07 + ArtUnc_80: 9.434889384442472e-08 + ArtUnc_81: -1.1980382405502867e-08 + ArtUnc_82: -4.258541093895767e-10 + ArtUnc_83: -4.4121592340278306e-08 + ArtUnc_84: -2.5736692776212392e-08 + ArtUnc_85: 4.2710197772578146e-08 + ArtUnc_86: 8.348804058710194e-09 + ArtUnc_87: 1.766129369683349e-08 + ArtUnc_88: 7.80158295685783e-09 + ArtUnc_89: -5.735037683417001e-10 + ArtUnc_90: -9.147156941503087e-08 + ArtUnc_91: 2.083758651128185e-08 + ArtUnc_92: 4.8526244608792894e-09 + ArtUnc_93: -1.3073151315177993e-07 + ArtUnc_94: 8.733441907194496e-08 + ArtUnc_95: 2.3566459633314595e-08 + ArtUnc_96: -8.364543817190556e-09 - stat: 0 Uncorr: 1.48 RCES: 1.376698354760403 @@ -1902,102 +1902,102 @@ bins: ModelRW_2: 0.638376002055215 JES_1: 2.2450678029850235 JES_2: 2.2450678029850235 - ArtUnc_1: 0.13203839691016306 - ArtUnc_2: -0.0018981155812128453 - ArtUnc_3: 0.030449734167063695 - ArtUnc_4: 0.016599559452784796 - ArtUnc_5: -0.007039446793514841 - ArtUnc_6: 0.001674499070408551 - ArtUnc_7: -0.00015496188070864445 - ArtUnc_8: -0.04741118864007381 - ArtUnc_9: -0.0007186835313007978 - ArtUnc_10: -0.43052640155181093 - ArtUnc_11: -0.3402840139397078 - ArtUnc_12: 0.39895212060858115 - ArtUnc_13: 0.09101270589019789 - ArtUnc_14: -0.04546627440151189 - ArtUnc_15: 0.009692340009631114 - ArtUnc_16: 0.033194936534638134 - ArtUnc_17: -0.05060998404362767 - ArtUnc_18: 0.06042621545255223 - ArtUnc_19: -0.0421258089941154 - ArtUnc_20: -0.015698438313400037 - ArtUnc_21: -0.02794838949429772 - ArtUnc_22: 0.037847574133300005 - ArtUnc_23: -0.021509993525688612 - ArtUnc_24: 0.0004039371438069027 - ArtUnc_25: -3.271928974855699 - ArtUnc_26: -1.3315714679588317 - ArtUnc_27: -0.38737893889621744 - ArtUnc_28: -0.6847540037957475 - ArtUnc_29: -0.02089315840519039 - ArtUnc_30: 0.24155149523280106 - ArtUnc_31: 0.05080766078860316 - ArtUnc_32: -0.08409477654657979 - ArtUnc_33: -0.056203225074044176 - ArtUnc_34: 0.0816718202411427 - ArtUnc_35: 0.08773620671065417 - ArtUnc_36: -0.03706189225462979 - ArtUnc_37: 0.0024416941282670228 - ArtUnc_38: -0.005311259237549454 - ArtUnc_39: 0.004140830387009792 - ArtUnc_40: 0.0023273358670159654 - ArtUnc_41: 0.016608369052247947 - ArtUnc_42: 0.017377037665656576 - ArtUnc_43: -0.00747387858271836 - ArtUnc_44: -0.011366997835019018 - ArtUnc_45: 0.012081466399688648 - ArtUnc_46: -0.006010521471543163 - ArtUnc_47: -0.014787560023833005 - ArtUnc_48: 0.00471112823989923 - ArtUnc_49: 0.007430677269866008 - ArtUnc_50: 0.0068079799094667255 - ArtUnc_51: 0.007292737341519148 - ArtUnc_52: -0.0021796124008489014 - ArtUnc_53: -0.0010621839197682802 - ArtUnc_54: 0.00038932020161367266 - ArtUnc_55: -0.00013504142134225413 - ArtUnc_56: 0.0006050043502575571 - ArtUnc_57: -2.8675619155665895e-06 - ArtUnc_58: 0.00011801018194305257 - ArtUnc_59: -0.00015106725253573102 - ArtUnc_60: -5.0107640597455927e-05 - ArtUnc_61: 9.86699971619997e-06 - ArtUnc_62: 5.093667125677953e-05 - ArtUnc_63: -1.3994054984177e-06 - ArtUnc_64: -7.893786420285647e-05 - ArtUnc_65: -6.916046599340792e-05 - ArtUnc_66: 4.153359855592597e-06 - ArtUnc_67: -3.774018839093155e-06 - ArtUnc_68: -4.220146094319829e-06 - ArtUnc_69: -5.492019682321761e-06 - ArtUnc_70: -6.1693509047642875e-06 - ArtUnc_71: -1.923963939951251e-06 - ArtUnc_72: 4.037667501783322e-06 - ArtUnc_73: -2.4791489574757286e-06 - ArtUnc_74: -1.4911766742090438e-05 - ArtUnc_75: -2.4181351515255923e-06 - ArtUnc_76: -4.5954891167815134e-07 - ArtUnc_77: -4.506827325797678e-06 - ArtUnc_78: 3.1715976843935505e-06 - ArtUnc_79: 7.267656447245819e-06 - ArtUnc_80: -8.869255228243919e-07 - ArtUnc_81: -3.4742103213119546e-07 - ArtUnc_82: -3.2867253404633533e-09 - ArtUnc_83: 4.799206644697365e-07 - ArtUnc_84: 4.956056692359648e-07 - ArtUnc_85: -3.057175107316412e-07 - ArtUnc_86: -3.941215089842415e-07 - ArtUnc_87: 4.0547287225579874e-07 - ArtUnc_88: -1.3450800291205406e-08 - ArtUnc_89: 3.038985099760333e-07 - ArtUnc_90: 2.603149510967373e-07 - ArtUnc_91: 2.5716364133559936e-07 - ArtUnc_92: 6.513106602556618e-08 - ArtUnc_93: 1.2852660797314178e-07 - ArtUnc_94: -1.941848074855664e-08 - ArtUnc_95: 7.577235197068728e-08 - ArtUnc_96: -1.791599555890439e-09 + ArtUnc_1: 0.1320383969101628 + ArtUnc_2: -0.0018981155812127922 + ArtUnc_3: 0.030449734167063938 + ArtUnc_4: 0.016599559452785167 + ArtUnc_5: -0.007039446793516058 + ArtUnc_6: -0.0016744990704085601 + ArtUnc_7: 0.00015496188070738973 + ArtUnc_8: 0.04741118864007513 + ArtUnc_9: 0.0007186835312962168 + ArtUnc_10: -0.4305264015518117 + ArtUnc_11: -0.3402840139397071 + ArtUnc_12: 0.3989521206085828 + ArtUnc_13: 0.09101270589019123 + ArtUnc_14: -0.0454662744015132 + ArtUnc_15: 0.009692340009628061 + ArtUnc_16: 0.03319493653463854 + ArtUnc_17: 0.05060998404362843 + ArtUnc_18: -0.06042621545255102 + ArtUnc_19: 0.04212580899411449 + ArtUnc_20: 0.015698438313396287 + ArtUnc_21: -0.027948389494300365 + ArtUnc_22: 0.03784757413331094 + ArtUnc_23: 0.021509993525674447 + ArtUnc_24: -0.0004039371438018868 + ArtUnc_25: 3.2719289748556997 + ArtUnc_26: 1.3315714679588329 + ArtUnc_27: 0.3873789388962019 + ArtUnc_28: 0.6847540037957462 + ArtUnc_29: 0.020893158405177158 + ArtUnc_30: 0.24155149523280334 + ArtUnc_31: -0.05080766078860241 + ArtUnc_32: -0.08409477654661683 + ArtUnc_33: -0.056203225073985175 + ArtUnc_34: -0.08167182024114937 + ArtUnc_35: -0.08773620671064794 + ArtUnc_36: -0.037061892254628304 + ArtUnc_37: 0.0024416941282667287 + ArtUnc_38: 0.005311259237549614 + ArtUnc_39: 0.004140830387009761 + ArtUnc_40: 0.0023273358670159597 + ArtUnc_41: 0.016608369052248613 + ArtUnc_42: 0.017377037665656427 + ArtUnc_43: -0.007473878582718413 + ArtUnc_44: -0.01136699783501941 + ArtUnc_45: 0.012081466399688854 + ArtUnc_46: -0.006010521471543492 + ArtUnc_47: 0.014787560023833185 + ArtUnc_48: -0.004711128239898752 + ArtUnc_49: -0.007430677269866188 + ArtUnc_50: -0.006807979909466713 + ArtUnc_51: 0.0006050043502575601 + ArtUnc_52: -0.0001350414213422827 + ArtUnc_53: -0.0072927373415190835 + ArtUnc_54: 0.0021796124008489058 + ArtUnc_55: 0.0010621839197683008 + ArtUnc_56: 0.00038932020161372015 + ArtUnc_57: 2.8675619155647794e-06 + ArtUnc_58: -0.00011801018194304885 + ArtUnc_59: 0.00015106725253573715 + ArtUnc_60: 5.010764059745741e-05 + ArtUnc_61: -9.866999716198439e-06 + ArtUnc_62: -5.093667125678123e-05 + ArtUnc_63: 1.3994054984194227e-06 + ArtUnc_64: -7.893786420285958e-05 + ArtUnc_65: 6.916046599341139e-05 + ArtUnc_66: 4.153359855595592e-06 + ArtUnc_67: -3.7740188390941575e-06 + ArtUnc_68: -4.220146094322869e-06 + ArtUnc_69: -5.492019682323398e-06 + ArtUnc_70: -4.037667501783616e-06 + ArtUnc_71: 6.169350904763874e-06 + ArtUnc_72: -1.9239639399510934e-06 + ArtUnc_73: -2.479148957476188e-06 + ArtUnc_74: 1.4911766742091386e-05 + ArtUnc_75: 2.4181351515257655e-06 + ArtUnc_76: -4.5954891167824075e-07 + ArtUnc_77: -4.5068273257981715e-06 + ArtUnc_78: -3.171597684393666e-06 + ArtUnc_79: 7.267656447246022e-06 + ArtUnc_80: 8.86925522824323e-07 + ArtUnc_81: -3.4742103213120816e-07 + ArtUnc_82: -3.2867253404634625e-09 + ArtUnc_83: 4.799206644697428e-07 + ArtUnc_84: 4.956056692359477e-07 + ArtUnc_85: -3.0571751073164814e-07 + ArtUnc_86: -6.513106602556879e-08 + ArtUnc_87: -1.285266079731519e-07 + ArtUnc_88: -3.941215089842248e-07 + ArtUnc_89: -4.054728722557868e-07 + ArtUnc_90: -1.3450800291205652e-08 + ArtUnc_91: -7.577235197069439e-08 + ArtUnc_92: -1.9418480748555077e-08 + ArtUnc_93: 3.038985099760247e-07 + ArtUnc_94: -2.603149510967458e-07 + ArtUnc_95: 2.5716364133558877e-07 + ArtUnc_96: -1.7915995558900218e-09 - stat: 0 Uncorr: 0.36200000000000004 RCES: 0.17767526445738022 @@ -2013,102 +2013,102 @@ bins: ModelRW_2: 0.8037541360391249 JES_1: 0.9612718978520075 JES_2: 0.9612718978520075 - ArtUnc_1: 0.009828482441487735 - ArtUnc_2: -0.004608717000644577 - ArtUnc_3: -0.002367722967671028 - ArtUnc_4: -0.0002992603290157714 - ArtUnc_5: -0.00012690827336530388 - ArtUnc_6: 6.221066045210017e-06 - ArtUnc_7: 8.451570832514642e-05 - ArtUnc_8: -0.027510575217467394 - ArtUnc_9: -1.5723655122747197e-05 - ArtUnc_10: 0.01782520377434654 - ArtUnc_11: -0.006729346020043541 - ArtUnc_12: 0.015601139436508949 - ArtUnc_13: -0.007047244784116721 - ArtUnc_14: -0.00655217351819557 - ArtUnc_15: -0.005325434628899753 - ArtUnc_16: 0.006491767310628188 - ArtUnc_17: 0.003418023898827354 - ArtUnc_18: -0.0016271913888615047 - ArtUnc_19: 0.0010176831113117685 - ArtUnc_20: -0.0012412268220375559 - ArtUnc_21: 0.0013910730652472807 - ArtUnc_22: -0.0009017674683387694 - ArtUnc_23: -4.58580457396342e-05 - ArtUnc_24: 0.0001413221668143694 - ArtUnc_25: -0.048844340697329666 - ArtUnc_26: -0.04181590905251658 - ArtUnc_27: -0.3258966386876538 - ArtUnc_28: 0.046280711933588965 - ArtUnc_29: 0.0308197731950588 - ArtUnc_30: 0.14587854716562434 - ArtUnc_31: 0.001639621949476087 - ArtUnc_32: -0.06785451207482246 - ArtUnc_33: -0.02266181334052346 - ArtUnc_34: 0.04182033033426069 - ArtUnc_35: 0.0690577377189733 - ArtUnc_36: -0.026864389685193148 - ArtUnc_37: -0.004292649218078493 - ArtUnc_38: -0.005080290696072506 - ArtUnc_39: 0.0008362842858754024 - ArtUnc_40: 0.0003095012144621889 - ArtUnc_41: -0.7052015856250874 - ArtUnc_42: -0.6327097492563725 - ArtUnc_43: 0.12172801961898731 - ArtUnc_44: 0.22099531757297722 - ArtUnc_45: -0.23647012932139075 - ArtUnc_46: 0.08099032950666239 - ArtUnc_47: 0.20664841683345464 - ArtUnc_48: -0.03826598893292267 - ArtUnc_49: -0.09491404193287428 - ArtUnc_50: -0.09824741575171746 - ArtUnc_51: -0.09017523379420644 - ArtUnc_52: 0.02814318215868148 - ArtUnc_53: 0.01119679334780394 - ArtUnc_54: -0.003444288089995832 - ArtUnc_55: 0.0017742998422924019 - ArtUnc_56: -0.0046173282151575155 - ArtUnc_57: -0.0010036416826925368 - ArtUnc_58: 0.00282317313894363 - ArtUnc_59: -0.001204653199342814 - ArtUnc_60: -0.0003414476538073429 - ArtUnc_61: -2.5372229813729875e-05 - ArtUnc_62: 0.0003273466917351464 - ArtUnc_63: 0.0002863249146864457 - ArtUnc_64: -0.0006345923426677806 - ArtUnc_65: -0.000538610575124353 - ArtUnc_66: -0.0011505629179389683 - ArtUnc_67: 0.0004560945531370805 - ArtUnc_68: 0.0030148469490411567 - ArtUnc_69: 0.002073800466422449 - ArtUnc_70: -0.0004925221551272268 - ArtUnc_71: -0.00026471775867247964 - ArtUnc_72: 0.00037625735442798074 - ArtUnc_73: 0.00026934779133247223 - ArtUnc_74: 0.00026473689865877446 - ArtUnc_75: 3.59520305997644e-05 - ArtUnc_76: 1.2460882397125119e-06 - ArtUnc_77: 4.642367619192158e-05 - ArtUnc_78: -3.9134180863925706e-05 - ArtUnc_79: -6.51698698504492e-05 - ArtUnc_80: -4.185286658610534e-07 - ArtUnc_81: 1.3553201993634238e-06 - ArtUnc_82: -1.3444472389723267e-09 - ArtUnc_83: -1.3574624362066917e-06 - ArtUnc_84: -3.53029436685307e-06 - ArtUnc_85: 1.2092535550320447e-06 - ArtUnc_86: -7.154831036186798e-06 - ArtUnc_87: 4.0481952286339225e-06 - ArtUnc_88: 2.553863669683852e-06 - ArtUnc_89: -1.0256192208287806e-05 - ArtUnc_90: -3.0734211339617674e-06 - ArtUnc_91: -2.4789324434247186e-06 - ArtUnc_92: 2.3925801886004683e-06 - ArtUnc_93: 2.928764715175451e-06 - ArtUnc_94: -7.50380017785513e-08 - ArtUnc_95: 6.988055593526797e-07 - ArtUnc_96: -9.190338720973444e-08 + ArtUnc_1: 0.009828482441487745 + ArtUnc_2: -0.00460871700064456 + ArtUnc_3: -0.002367722967671026 + ArtUnc_4: -0.00029926032901598235 + ArtUnc_5: -0.00012690827336534974 + ArtUnc_6: -6.2210660451003455e-06 + ArtUnc_7: -8.451570832595379e-05 + ArtUnc_8: 0.02751057521746776 + ArtUnc_9: 1.5723655127338393e-05 + ArtUnc_10: 0.017825203774346893 + ArtUnc_11: -0.006729346020044204 + ArtUnc_12: 0.015601139436504471 + ArtUnc_13: -0.007047244784114975 + ArtUnc_14: -0.0065521735181942676 + ArtUnc_15: -0.005325434628903351 + ArtUnc_16: 0.0064917673106256015 + ArtUnc_17: -0.0034180238988290863 + ArtUnc_18: 0.0016271913888590524 + ArtUnc_19: -0.0010176831113118696 + ArtUnc_20: 0.0012412268220376775 + ArtUnc_21: 0.0013910730652472933 + ArtUnc_22: -0.0009017674683374423 + ArtUnc_23: 4.585804574036141e-05 + ArtUnc_24: -0.0001413221668135053 + ArtUnc_25: 0.048844340697331595 + ArtUnc_26: 0.04181590905252278 + ArtUnc_27: 0.32589663868765795 + ArtUnc_28: -0.046280711933589666 + ArtUnc_29: -0.030819773195066773 + ArtUnc_30: 0.14587854716562404 + ArtUnc_31: -0.0016396219494746182 + ArtUnc_32: -0.0678545120748393 + ArtUnc_33: -0.022661813340476022 + ArtUnc_34: -0.04182033033426591 + ArtUnc_35: -0.06905773771897107 + ArtUnc_36: -0.026864389685190497 + ArtUnc_37: -0.004292649218077433 + ArtUnc_38: 0.0050802906960727345 + ArtUnc_39: 0.0008362842858768569 + ArtUnc_40: 0.0003095012144619919 + ArtUnc_41: -0.7052015856251063 + ArtUnc_42: -0.6327097492563641 + ArtUnc_43: 0.12172801961898926 + ArtUnc_44: 0.22099531757298294 + ArtUnc_45: -0.23647012932139355 + ArtUnc_46: 0.08099032950666608 + ArtUnc_47: -0.20664841683345517 + ArtUnc_48: 0.038265988932915405 + ArtUnc_49: 0.09491404193287561 + ArtUnc_50: 0.09824741575171583 + ArtUnc_51: -0.004617328215157453 + ArtUnc_52: 0.0017742998422925309 + ArtUnc_53: 0.09017523379420407 + ArtUnc_54: -0.028143182158681345 + ArtUnc_55: -0.011196793347803947 + ArtUnc_56: -0.0034442880899961553 + ArtUnc_57: 0.0010036416826926242 + ArtUnc_58: -0.0028231731389436556 + ArtUnc_59: 0.0012046531993427795 + ArtUnc_60: 0.0003414476538073182 + ArtUnc_61: 2.537222981374834e-05 + ArtUnc_62: -0.00032734669173514557 + ArtUnc_63: -0.00028632491468644916 + ArtUnc_64: -0.0006345923426677774 + ArtUnc_65: 0.0005386105751243396 + ArtUnc_66: -0.0011505629179389587 + ArtUnc_67: 0.0004560945531371202 + ArtUnc_68: 0.003014846949041353 + ArtUnc_69: 0.0020738004664223268 + ArtUnc_70: -0.00037625735442800627 + ArtUnc_71: 0.0004925221551271979 + ArtUnc_72: -0.00026471775867246614 + ArtUnc_73: 0.0002693477913324866 + ArtUnc_74: -0.00026473689865880184 + ArtUnc_75: -3.595203059976877e-05 + ArtUnc_76: 1.2460882397148897e-06 + ArtUnc_77: 4.642367619193105e-05 + ArtUnc_78: 3.913418086393189e-05 + ArtUnc_79: -6.51698698504578e-05 + ArtUnc_80: 4.185286658640881e-07 + ArtUnc_81: 1.355320199362528e-06 + ArtUnc_82: -1.3444472389898236e-09 + ArtUnc_83: -1.3574624362073272e-06 + ArtUnc_84: -3.5302943668521003e-06 + ArtUnc_85: 1.2092535550324354e-06 + ArtUnc_86: -2.392580188600286e-06 + ArtUnc_87: -2.9287647151749426e-06 + ArtUnc_88: -7.154831036187616e-06 + ArtUnc_89: -4.048195228634956e-06 + ArtUnc_90: 2.553863669683389e-06 + ArtUnc_91: -6.988055593524728e-07 + ArtUnc_92: -7.503800177848302e-08 + ArtUnc_93: -1.0256192208288061e-05 + ArtUnc_94: 3.073421133961953e-06 + ArtUnc_95: -2.478932443424516e-06 + ArtUnc_96: -9.190338720973543e-08 - stat: 0 Uncorr: 0.06820000000000001 RCES: 0.04442302163293263 @@ -2124,102 +2124,102 @@ bins: ModelRW_2: 0.0303815499604612 JES_1: 0.1931425625528977 JES_2: 0.1931425625528977 - ArtUnc_1: -6.164644459496333e-08 + ArtUnc_1: -6.164644459496338e-08 ArtUnc_2: 3.922489697003599e-06 - ArtUnc_3: 3.676532891100394e-06 - ArtUnc_4: 5.56487344764471e-07 - ArtUnc_5: 6.597432172993162e-07 - ArtUnc_6: -4.992344983074685e-07 - ArtUnc_7: 1.1475159680928933e-07 - ArtUnc_8: 9.85268949055519e-05 - ArtUnc_9: 4.4079656946630887e-07 - ArtUnc_10: 0.00017923445289304494 - ArtUnc_11: 7.616657232720363e-05 - ArtUnc_12: -4.4728975211691914e-05 - ArtUnc_13: -4.079778614206482e-05 - ArtUnc_14: 1.1653214759906138e-05 - ArtUnc_15: 2.9468682734544436e-05 - ArtUnc_16: -4.060088063748322e-05 - ArtUnc_17: -4.898611122436428e-05 - ArtUnc_18: 2.5000894892529564e-05 - ArtUnc_19: -1.889207092898967e-05 - ArtUnc_20: 3.208941532949087e-05 - ArtUnc_21: -3.183327131448302e-05 - ArtUnc_22: 1.902572815062949e-05 - ArtUnc_23: -7.026400508550222e-06 - ArtUnc_24: 5.427374187195018e-07 - ArtUnc_25: -0.0018049794383780081 - ArtUnc_26: 0.0011801587967397737 - ArtUnc_27: 0.00957849418161535 - ArtUnc_28: -0.0008501682735662729 - ArtUnc_29: -0.00090065037085261 - ArtUnc_30: -0.004665811728323799 - ArtUnc_31: -0.00010043484313471119 - ArtUnc_32: 0.0020131234135996206 - ArtUnc_33: 0.0006497633601130008 - ArtUnc_34: -0.0008514052295296936 - ArtUnc_35: -0.0011510551850159917 - ArtUnc_36: -5.32719746779371e-05 - ArtUnc_37: -0.00018763487850364906 - ArtUnc_38: -0.00037460143753174647 - ArtUnc_39: 0.00020843676093660634 - ArtUnc_40: 3.0350509533323387e-05 - ArtUnc_41: 0.1026626014015879 - ArtUnc_42: -0.09840882032617751 - ArtUnc_43: -0.06871362568789526 - ArtUnc_44: -0.00931737469487431 - ArtUnc_45: -0.0351818352211152 - ArtUnc_46: -0.029312409153198712 - ArtUnc_47: -0.013643854055219985 - ArtUnc_48: 0.033826594367277786 - ArtUnc_49: -0.004633542472206927 - ArtUnc_50: -0.02025841501175573 - ArtUnc_51: -0.02252368836875011 - ArtUnc_52: 0.009567457581226341 - ArtUnc_53: 0.009843605589854273 - ArtUnc_54: 0.0015170613413585646 - ArtUnc_55: 0.004771693908959932 - ArtUnc_56: -0.002384075134639636 - ArtUnc_57: -0.06258888615097233 - ArtUnc_58: 0.26121858121934344 - ArtUnc_59: -0.10808008735278968 - ArtUnc_60: -0.023049073521630832 - ArtUnc_61: 0.14287717897481966 - ArtUnc_62: -0.04647436774649933 - ArtUnc_63: -0.05445480327220323 - ArtUnc_64: 0.020264268067554825 - ArtUnc_65: 0.00208377706928161 - ArtUnc_66: 0.06705184198137588 - ArtUnc_67: -0.021510300671448226 - ArtUnc_68: -0.0835583452065412 - ArtUnc_69: -0.042482935947782685 - ArtUnc_70: 0.009286362438022399 - ArtUnc_71: 0.005984455381454777 - ArtUnc_72: -0.0015854931928308486 - ArtUnc_73: 0.0016273501516147152 - ArtUnc_74: 0.001251898970055396 - ArtUnc_75: 5.0258160043944296e-05 - ArtUnc_76: -5.509821488613624e-05 - ArtUnc_77: -0.00014416711829247207 - ArtUnc_78: 0.00010278516747366994 - ArtUnc_79: 0.0006061054586887364 - ArtUnc_80: 6.343135642241622e-05 - ArtUnc_81: 7.291486148517893e-05 - ArtUnc_82: 3.946880946781509e-07 - ArtUnc_83: 0.00013469409234429693 - ArtUnc_84: -0.00010207049142692077 - ArtUnc_85: -0.00010050144195657886 - ArtUnc_86: -0.000207775124867491 - ArtUnc_87: 0.00011443435620056058 - ArtUnc_88: 3.8873770841941044e-05 - ArtUnc_89: -0.0002676195551706335 - ArtUnc_90: -8.669785835344134e-05 - ArtUnc_91: 8.024371620582725e-06 - ArtUnc_92: -0.00011679913164205565 - ArtUnc_93: -7.445854981991481e-05 - ArtUnc_94: 4.009384033284143e-06 - ArtUnc_95: -2.328595519510194e-05 - ArtUnc_96: -2.1333954408291226e-05 + ArtUnc_3: 3.676532891100279e-06 + ArtUnc_4: 5.564873447651579e-07 + ArtUnc_5: 6.59743217294973e-07 + ArtUnc_6: 4.992344983248174e-07 + ArtUnc_7: -1.1475159678064252e-07 + ArtUnc_8: -9.852689490555703e-05 + ArtUnc_9: -4.407965694973057e-07 + ArtUnc_10: 0.0001792344528930398 + ArtUnc_11: 7.616657232721964e-05 + ArtUnc_12: -4.4728975211666266e-05 + ArtUnc_13: -4.0797786142070816e-05 + ArtUnc_14: 1.1653214759857445e-05 + ArtUnc_15: 2.9468682734613832e-05 + ArtUnc_16: -4.060088063743114e-05 + ArtUnc_17: 4.8986111224387076e-05 + ArtUnc_18: -2.500089489249813e-05 + ArtUnc_19: 1.8892070928952376e-05 + ArtUnc_20: -3.2089415329472654e-05 + ArtUnc_21: -3.1833271314447314e-05 + ArtUnc_22: 1.9025728150568153e-05 + ArtUnc_23: 7.026400508713268e-06 + ArtUnc_24: -5.427374187542625e-07 + ArtUnc_25: 0.00180497943837816 + ArtUnc_26: -0.0011801587967399964 + ArtUnc_27: -0.009578494181615448 + ArtUnc_28: 0.0008501682735662387 + ArtUnc_29: 0.0009006503708527966 + ArtUnc_30: -0.004665811728323744 + ArtUnc_31: 0.00010043484313485591 + ArtUnc_32: 0.002013123413600144 + ArtUnc_33: 0.0006497633601117199 + ArtUnc_34: 0.0008514052295296975 + ArtUnc_35: 0.001151055185015836 + ArtUnc_36: -5.32719746780574e-05 + ArtUnc_37: -0.00018763487850387555 + ArtUnc_38: 0.000374601437531586 + ArtUnc_39: 0.00020843676093705043 + ArtUnc_40: 3.0350509533418895e-05 + ArtUnc_41: 0.10266260140158713 + ArtUnc_42: -0.09840882032617902 + ArtUnc_43: -0.0687136256878946 + ArtUnc_44: -0.009317374694874054 + ArtUnc_45: -0.03518183522111571 + ArtUnc_46: -0.029312409153198906 + ArtUnc_47: 0.013643854055219597 + ArtUnc_48: -0.03382659436727794 + ArtUnc_49: 0.004633542472207272 + ArtUnc_50: 0.02025841501175562 + ArtUnc_51: -0.0023840751346399375 + ArtUnc_52: 0.004771693908960994 + ArtUnc_53: 0.022523688368749763 + ArtUnc_54: -0.009567457581226015 + ArtUnc_55: -0.009843605589854792 + ArtUnc_56: 0.001517061341357972 + ArtUnc_57: 0.06258888615097814 + ArtUnc_58: -0.26121858121934405 + ArtUnc_59: 0.10808008735278782 + ArtUnc_60: 0.023049073521630416 + ArtUnc_61: -0.14287717897482147 + ArtUnc_62: 0.04647436774649283 + ArtUnc_63: 0.05445480327220324 + ArtUnc_64: 0.020264268067555387 + ArtUnc_65: -0.002083777069281772 + ArtUnc_66: 0.06705184198137516 + ArtUnc_67: -0.021510300671449198 + ArtUnc_68: -0.08355834520654506 + ArtUnc_69: -0.04248293594777888 + ArtUnc_70: 0.0015854931928314551 + ArtUnc_71: -0.009286362438022215 + ArtUnc_72: 0.005984455381454388 + ArtUnc_73: 0.0016273501516143546 + ArtUnc_74: -0.001251898970055017 + ArtUnc_75: -5.0258160043893535e-05 + ArtUnc_76: -5.509821488616488e-05 + ArtUnc_77: -0.0001441671182925708 + ArtUnc_78: -0.00010278516747378758 + ArtUnc_79: 0.0006061054586888791 + ArtUnc_80: -6.34313564224788e-05 + ArtUnc_81: 7.291486148520376e-05 + ArtUnc_82: 3.946880946781465e-07 + ArtUnc_83: 0.0001346940923443161 + ArtUnc_84: -0.00010207049142693918 + ArtUnc_85: -0.00010050144195659215 + ArtUnc_86: 0.0001167991316420489 + ArtUnc_87: 7.445854981989877e-05 + ArtUnc_88: -0.00020777512486746868 + ArtUnc_89: -0.00011443435620054819 + ArtUnc_90: 3.887377084194982e-05 + ArtUnc_91: 2.3285955195096784e-05 + ArtUnc_92: 4.009384033282361e-06 + ArtUnc_93: -0.0002676195551706283 + ArtUnc_94: 8.669785835343736e-05 + ArtUnc_95: 8.024371620577143e-06 + ArtUnc_96: -2.1333954408291494e-05 - stat: 0 Uncorr: 0.010700000000000001 RCES: 0.017544982210022333 @@ -2235,102 +2235,102 @@ bins: ModelRW_2: 0.005674531919022044 JES_1: 0.03119437690313753 JES_2: 0.03119437690313753 - ArtUnc_1: -2.817126819950767e-08 - ArtUnc_2: 4.4684049988513985e-07 - ArtUnc_3: 6.06566938162903e-07 - ArtUnc_4: 2.2074680006429258e-07 - ArtUnc_5: -2.7226297565523305e-08 - ArtUnc_6: -1.0502030775142442e-08 - ArtUnc_7: -6.247091275967356e-09 - ArtUnc_8: 1.3352960960346633e-05 - ArtUnc_9: 5.195880521860876e-08 - ArtUnc_10: 2.174311254461487e-05 - ArtUnc_11: 1.438428343348627e-05 - ArtUnc_12: -6.488154730194581e-06 - ArtUnc_13: -1.2077849621578791e-05 - ArtUnc_14: -9.851969940031306e-07 - ArtUnc_15: -5.508344773231738e-06 - ArtUnc_16: -8.576868897549714e-07 - ArtUnc_17: -1.7036429902542261e-06 - ArtUnc_18: -2.257652907611229e-07 - ArtUnc_19: -1.2942610814162311e-06 - ArtUnc_20: 5.002398679522411e-06 - ArtUnc_21: -3.825337628274403e-06 - ArtUnc_22: 1.7604760362986067e-06 - ArtUnc_23: -6.148453535389899e-07 - ArtUnc_24: 8.647766601743679e-08 - ArtUnc_25: -0.00021897760157160368 - ArtUnc_26: 0.0001041769653105037 - ArtUnc_27: 0.0012450843536182547 - ArtUnc_28: -0.00017348975365976 - ArtUnc_29: -0.00015219103957117347 - ArtUnc_30: -0.0007465051590979212 - ArtUnc_31: -2.0704047750258446e-05 - ArtUnc_32: 0.0004343764298589348 - ArtUnc_33: 0.00012404908013743279 - ArtUnc_34: -0.0002862893515867421 - ArtUnc_35: -0.0004963590614518438 - ArtUnc_36: 0.00020282456223151047 - ArtUnc_37: 3.7094347069720885e-05 - ArtUnc_38: 4.106182778419227e-05 - ArtUnc_39: -6.799893174138268e-06 - ArtUnc_40: -1.4954824069585455e-06 - ArtUnc_41: 0.0008081930040477415 - ArtUnc_42: 0.002108683928137042 - ArtUnc_43: 0.00035821304071891865 - ArtUnc_44: -0.0005399654934629002 - ArtUnc_45: 0.001316493409075432 - ArtUnc_46: 0.00020101437821280166 - ArtUnc_47: -0.0006350875907169873 - ArtUnc_48: -0.00047593825956509703 - ArtUnc_49: 0.000602376009215324 - ArtUnc_50: 0.0009495179427234354 - ArtUnc_51: 0.0009883270985556625 - ArtUnc_52: -0.00035012232252778645 - ArtUnc_53: -0.0002381219447796239 - ArtUnc_54: -4.1236601124929335e-06 - ArtUnc_55: -7.65822539999393e-05 - ArtUnc_56: 6.923725304543144e-05 - ArtUnc_57: 0.020661271954792452 - ArtUnc_58: -0.03012617915198426 - ArtUnc_59: -0.0463298301030496 - ArtUnc_60: -0.017025874165601154 - ArtUnc_61: 0.008563593972698479 - ArtUnc_62: 0.012710627449859669 - ArtUnc_63: -0.004931348879742483 - ArtUnc_64: -0.01951139053213328 - ArtUnc_65: -0.01837312552201215 - ArtUnc_66: 0.0069553190698154 - ArtUnc_67: -0.0018328306634743797 - ArtUnc_68: -0.0002602993112448357 - ArtUnc_69: 0.0005484249307853947 - ArtUnc_70: -0.0007404022609204061 - ArtUnc_71: -0.00026912314771388465 - ArtUnc_72: 0.0001401840323889083 - ArtUnc_73: 0.07358766616309499 - ArtUnc_74: 0.08935275262643164 - ArtUnc_75: 0.012055679340105329 - ArtUnc_76: -0.0027011264050325317 - ArtUnc_77: 0.021387610532925833 - ArtUnc_78: -0.013447794794431011 - ArtUnc_79: -0.043068065429579305 - ArtUnc_80: -0.00025035287636590564 - ArtUnc_81: -0.0004905800793988719 - ArtUnc_82: -2.4339488351599227e-06 - ArtUnc_83: 0.00034942425994390856 - ArtUnc_84: 0.0003703550434100738 - ArtUnc_85: -0.00018102905776393803 - ArtUnc_86: 0.002600428908484644 - ArtUnc_87: 0.0023811496247881157 - ArtUnc_88: -0.0006337108544292563 - ArtUnc_89: 0.004616274227591015 - ArtUnc_90: -0.0008602099782936526 - ArtUnc_91: 0.000764431035628665 - ArtUnc_92: 0.0001438932534886056 - ArtUnc_93: 0.00039986682117638847 - ArtUnc_94: -3.0413386783335254e-05 - ArtUnc_95: 0.00015991026827909247 - ArtUnc_96: -1.4366715556161222e-06 + ArtUnc_1: -2.8171268199507716e-08 + ArtUnc_2: 4.468404998851395e-07 + ArtUnc_3: 6.065669381628866e-07 + ArtUnc_4: 2.2074680006442324e-07 + ArtUnc_5: -2.7226297566834386e-08 + ArtUnc_6: 1.0502030776599082e-08 + ArtUnc_7: 6.247091281933477e-09 + ArtUnc_8: -1.3352960960347073e-05 + ArtUnc_9: -5.195880523141805e-08 + ArtUnc_10: 2.1743112544614577e-05 + ArtUnc_11: 1.4384283433486833e-05 + ArtUnc_12: -6.488154730178476e-06 + ArtUnc_13: -1.2077849621583853e-05 + ArtUnc_14: -9.85196993995112e-07 + ArtUnc_15: -5.508344773231818e-06 + ArtUnc_16: -8.576868897751414e-07 + ArtUnc_17: 1.703642990227518e-06 + ArtUnc_18: 2.2576529075168028e-07 + ArtUnc_19: 1.2942610814684423e-06 + ArtUnc_20: -5.002398679556529e-06 + ArtUnc_21: -3.8253376283432924e-06 + ArtUnc_22: 1.7604760363566307e-06 + ArtUnc_23: 6.148453534215448e-07 + ArtUnc_24: -8.64776660808692e-08 + ArtUnc_25: 0.00021897760157158004 + ArtUnc_26: -0.00010417696531048306 + ArtUnc_27: -0.0012450843536182764 + ArtUnc_28: 0.0001734897536596235 + ArtUnc_29: 0.00015219103957132238 + ArtUnc_30: -0.0007465051590978547 + ArtUnc_31: 2.0704047749812754e-05 + ArtUnc_32: 0.0004343764298588992 + ArtUnc_33: 0.0001240490801374033 + ArtUnc_34: 0.0002862893515864769 + ArtUnc_35: 0.000496359061452056 + ArtUnc_36: 0.00020282456223106611 + ArtUnc_37: 3.709434707071476e-05 + ArtUnc_38: -4.1061827783918016e-05 + ArtUnc_39: -6.799893174198059e-06 + ArtUnc_40: -1.495482406591319e-06 + ArtUnc_41: 0.0008081930040474229 + ArtUnc_42: 0.0021086839281373873 + ArtUnc_43: 0.00035821304071842616 + ArtUnc_44: -0.0005399654934635183 + ArtUnc_45: 0.001316493409075148 + ArtUnc_46: 0.0002010143782132027 + ArtUnc_47: 0.0006350875907164479 + ArtUnc_48: 0.0004759382595654312 + ArtUnc_49: -0.0006023760092153574 + ArtUnc_50: -0.0009495179427241272 + ArtUnc_51: 6.923725304565707e-05 + ArtUnc_52: -7.658225400022983e-05 + ArtUnc_53: -0.0009883270985561877 + ArtUnc_54: 0.00035012232252784885 + ArtUnc_55: 0.00023812194477975467 + ArtUnc_56: -4.123660112127637e-06 + ArtUnc_57: -0.02066127195479415 + ArtUnc_58: 0.030126179151983706 + ArtUnc_59: 0.046329830103050265 + ArtUnc_60: 0.01702587416560102 + ArtUnc_61: -0.008563593972697963 + ArtUnc_62: -0.012710627449860143 + ArtUnc_63: 0.004931348879743005 + ArtUnc_64: -0.019511390532134486 + ArtUnc_65: 0.01837312552201359 + ArtUnc_66: 0.006955319069816964 + ArtUnc_67: -0.001832830663475033 + ArtUnc_68: -0.00026029931124660403 + ArtUnc_69: 0.000548424930784027 + ArtUnc_70: -0.00014018403238890204 + ArtUnc_71: 0.0007404022609201388 + ArtUnc_72: -0.0002691231477139737 + ArtUnc_73: 0.07358766616309388 + ArtUnc_74: -0.0893527526264328 + ArtUnc_75: -0.012055679340105704 + ArtUnc_76: -0.0027011264050323686 + ArtUnc_77: 0.021387610532927363 + ArtUnc_78: 0.013447794794430668 + ArtUnc_79: -0.04306806542957896 + ArtUnc_80: 0.0002503528763656325 + ArtUnc_81: -0.0004905800793986709 + ArtUnc_82: -2.433948835170254e-06 + ArtUnc_83: 0.00034942425994394585 + ArtUnc_84: 0.0003703550434099853 + ArtUnc_85: -0.00018102905776399447 + ArtUnc_86: -0.00014389325348863863 + ArtUnc_87: -0.0003998668211764174 + ArtUnc_88: 0.00260042890848475 + ArtUnc_89: -0.0023811496247879713 + ArtUnc_90: -0.0006337108544291929 + ArtUnc_91: -0.000159910268279095 + ArtUnc_92: -3.0413386783324703e-05 + ArtUnc_93: 0.004616274227591099 + ArtUnc_94: 0.0008602099782936573 + ArtUnc_95: 0.0007644310356287082 + ArtUnc_96: -1.4366715556144155e-06 - stat: 0 Uncorr: 0.00124 RCES: 0.0019619057265832115 @@ -2346,102 +2346,102 @@ bins: ModelRW_2: 0.0076370360795271885 JES_1: 0.008553738722921105 JES_2: 0.008553738722921105 - ArtUnc_1: 6.041525253143828e-10 - ArtUnc_2: -7.457087380483391e-10 - ArtUnc_3: -1.4082834307512728e-10 - ArtUnc_4: 5.259751980809698e-10 - ArtUnc_5: -6.923695139523178e-10 - ArtUnc_6: 3.3208895331698243e-10 - ArtUnc_7: 8.073137294780598e-12 - ArtUnc_8: -1.2230927873465858e-07 - ArtUnc_9: -5.113647669890167e-10 - ArtUnc_10: -2.2446935066345123e-07 - ArtUnc_11: -1.4326065212866686e-07 - ArtUnc_12: 1.153026085468027e-08 - ArtUnc_13: 1.1174732880309481e-07 - ArtUnc_14: 2.4558207141038358e-08 - ArtUnc_15: 8.883175741719856e-10 - ArtUnc_16: 3.6467441648207014e-08 - ArtUnc_17: 8.236732097262847e-08 - ArtUnc_18: -5.197226792070373e-08 - ArtUnc_19: 3.841247467637868e-08 - ArtUnc_20: -6.425356531140175e-08 - ArtUnc_21: 6.155293697788874e-08 - ArtUnc_22: -2.951676174829013e-08 - ArtUnc_23: 5.562899998071879e-09 - ArtUnc_24: -7.151556924463854e-10 - ArtUnc_25: 1.608931748776258e-06 - ArtUnc_26: -1.8646694530908165e-06 - ArtUnc_27: -1.1274858886782248e-05 - ArtUnc_28: 6.938518411524558e-07 - ArtUnc_29: 4.5559441224943266e-07 - ArtUnc_30: 1.961726405134673e-06 - ArtUnc_31: -2.1287085839396652e-08 - ArtUnc_32: 4.881844799100779e-07 - ArtUnc_33: 2.1793478494002968e-08 - ArtUnc_34: -7.364259583222377e-07 - ArtUnc_35: -1.4923928499632316e-06 - ArtUnc_36: 7.430948147792464e-07 - ArtUnc_37: 1.8178644101091007e-07 - ArtUnc_38: 2.3100931027139345e-07 - ArtUnc_39: -2.047416229184488e-07 - ArtUnc_40: -7.423803500036187e-08 - ArtUnc_41: 0.0005268887524988114 - ArtUnc_42: -0.0005714659827221061 - ArtUnc_43: -0.00027022218346637445 - ArtUnc_44: 1.639807218947462e-05 - ArtUnc_45: -0.00017043659189344178 - ArtUnc_46: -4.9978593562796565e-05 - ArtUnc_47: 3.940253779989799e-05 - ArtUnc_48: 3.0242333060471106e-05 - ArtUnc_49: -2.5495449976636212e-05 - ArtUnc_50: -6.6918278221475645e-06 - ArtUnc_51: 4.833166067699923e-05 - ArtUnc_52: -2.4613900281051554e-05 - ArtUnc_53: -5.019518747024589e-05 - ArtUnc_54: -7.534173203401729e-06 - ArtUnc_55: -2.9103029027200832e-05 - ArtUnc_56: 1.4789803073690994e-05 - ArtUnc_57: 0.0009724406566382068 - ArtUnc_58: -0.0025805819255820058 - ArtUnc_59: -0.0003722812543555839 - ArtUnc_60: -0.00024486307773781673 - ArtUnc_61: -0.000750290877691974 - ArtUnc_62: 0.0006032959090819328 - ArtUnc_63: 0.00021837644109062756 - ArtUnc_64: -0.0006049467434411304 - ArtUnc_65: -0.000469840672415627 - ArtUnc_66: -0.00016047606982258245 - ArtUnc_67: 5.597628896179762e-05 - ArtUnc_68: 0.00021823897883524966 - ArtUnc_69: 1.100866729218056e-05 - ArtUnc_70: -1.7410499464597899e-06 - ArtUnc_71: 1.5512309295244594e-05 - ArtUnc_72: -9.332428840907835e-05 - ArtUnc_73: 0.0011714027120292337 - ArtUnc_74: 0.00027863115780019164 - ArtUnc_75: -0.000287000157299122 - ArtUnc_76: 0.0072247650818527 - ArtUnc_77: -0.0013220955446080014 - ArtUnc_78: -0.01613476439515327 - ArtUnc_79: 0.00381306711786311 - ArtUnc_80: 0.005064477730472728 - ArtUnc_81: 0.0034362312205621515 - ArtUnc_82: 2.2412802282072182e-05 - ArtUnc_83: 0.022201540076900495 - ArtUnc_84: -0.004456629085650692 - ArtUnc_85: -0.017428639534710202 - ArtUnc_86: -0.011385699670263552 - ArtUnc_87: 0.00778080219253493 - ArtUnc_88: 0.0018988296326871237 - ArtUnc_89: -0.008045285761312297 - ArtUnc_90: -0.0034782788311635794 - ArtUnc_91: 0.00022653556448832082 - ArtUnc_92: -0.02149648344381187 - ArtUnc_93: -0.013607990667775922 - ArtUnc_94: 0.0005860095065114094 - ArtUnc_95: -0.00395969577280809 - ArtUnc_96: -0.004254928877904954 + ArtUnc_1: 6.041525253143837e-10 + ArtUnc_2: -7.457087380483398e-10 + ArtUnc_3: -1.4082834307497503e-10 + ArtUnc_4: 5.259751980797566e-10 + ArtUnc_5: -6.923695139325593e-10 + ArtUnc_6: -3.3208895333728377e-10 + ArtUnc_7: -8.073137240863234e-12 + ArtUnc_8: 1.2230927873466213e-07 + ArtUnc_9: 5.113647670230508e-10 + ArtUnc_10: -2.244693506634476e-07 + ArtUnc_11: -1.432606521286891e-07 + ArtUnc_12: 1.1530260854438604e-08 + ArtUnc_13: 1.117473288031136e-07 + ArtUnc_14: 2.455820714133376e-08 + ArtUnc_15: 8.883175739142325e-10 + ArtUnc_16: 3.64674416477968e-08 + ArtUnc_17: -8.23673209728863e-08 + ArtUnc_18: 5.197226792066097e-08 + ArtUnc_19: -3.841247467568004e-08 + ArtUnc_20: 6.425356531113657e-08 + ArtUnc_21: 6.155293697544512e-08 + ArtUnc_22: -2.9516761746782553e-08 + ArtUnc_23: -5.562900001094921e-09 + ArtUnc_24: 7.151556918564961e-10 + ArtUnc_25: -1.6089317487759996e-06 + ArtUnc_26: 1.8646694530904163e-06 + ArtUnc_27: 1.1274858886782353e-05 + ArtUnc_28: -6.938518411540835e-07 + ArtUnc_29: -4.555944122477703e-07 + ArtUnc_30: 1.9617264051350774e-06 + ArtUnc_31: 2.1287085831880707e-08 + ArtUnc_32: 4.881844799069134e-07 + ArtUnc_33: 2.179347849928199e-08 + ArtUnc_34: 7.364259583162062e-07 + ArtUnc_35: 1.4923928499667925e-06 + ArtUnc_36: 7.430948147728629e-07 + ArtUnc_37: 1.8178644102041127e-07 + ArtUnc_38: -2.3100931026616919e-07 + ArtUnc_39: -2.047416229297779e-07 + ArtUnc_40: -7.4238034992303e-08 + ArtUnc_41: 0.0005268887524987921 + ArtUnc_42: -0.0005714659827220986 + ArtUnc_43: -0.00027022218346638225 + ArtUnc_44: 1.6398072189473574e-05 + ArtUnc_45: -0.00017043659189344853 + ArtUnc_46: -4.997859356279252e-05 + ArtUnc_47: -3.9402537799913584e-05 + ArtUnc_48: -3.0242333060468175e-05 + ArtUnc_49: 2.5495449976636246e-05 + ArtUnc_50: 6.691827822136524e-06 + ArtUnc_51: 1.4789803073696317e-05 + ArtUnc_52: -2.910302902721402e-05 + ArtUnc_53: -4.8331660677013445e-05 + ArtUnc_54: 2.46139002810582e-05 + ArtUnc_55: 5.0195187470255184e-05 + ArtUnc_56: -7.534173203397271e-06 + ArtUnc_57: -0.0009724406566382886 + ArtUnc_58: 0.002580581925581996 + ArtUnc_59: 0.0003722812543556141 + ArtUnc_60: 0.00024486307773779494 + ArtUnc_61: 0.0007502908776919723 + ArtUnc_62: -0.000603295909081876 + ArtUnc_63: -0.00021837644109062352 + ArtUnc_64: -0.0006049467434411995 + ArtUnc_65: 0.0004698406724156381 + ArtUnc_66: -0.00016047606982258857 + ArtUnc_67: 5.597628896170966e-05 + ArtUnc_68: 0.0002182389788351802 + ArtUnc_69: 1.1008667292203844e-05 + ArtUnc_70: 9.332428840909884e-05 + ArtUnc_71: 1.7410499463531618e-06 + ArtUnc_72: 1.5512309295234166e-05 + ArtUnc_73: 0.001171402712029326 + ArtUnc_74: -0.0002786311578004168 + ArtUnc_75: 0.00028700015729913036 + ArtUnc_76: 0.007224765081852715 + ArtUnc_77: -0.0013220955446067943 + ArtUnc_78: 0.01613476439515324 + ArtUnc_79: 0.0038130671178633353 + ArtUnc_80: -0.005064477730472428 + ArtUnc_81: 0.003436231220562271 + ArtUnc_82: 2.2412802282053842e-05 + ArtUnc_83: 0.022201540076900436 + ArtUnc_84: -0.0044566290856507575 + ArtUnc_85: -0.01742863953471023 + ArtUnc_86: 0.021496483443812036 + ArtUnc_87: 0.013607990667775918 + ArtUnc_88: -0.011385699670263238 + ArtUnc_89: -0.007780802192535263 + ArtUnc_90: 0.001898829632687188 + ArtUnc_91: 0.003959695772808286 + ArtUnc_92: 0.0005860095065112893 + ArtUnc_93: -0.008045285761312283 + ArtUnc_94: 0.0034782788311635373 + ArtUnc_95: 0.00022653556448828135 + ArtUnc_96: -0.004254928877905018 - stat: 0 Uncorr: 1.69 RCES: 11.908181799922271 @@ -2458,101 +2458,101 @@ bins: JES_1: 5.2278224916068075 JES_2: 5.2278224916068075 ArtUnc_1: 0.862390513360958 - ArtUnc_2: -0.0585223341972758 - ArtUnc_3: -0.015617481349614281 - ArtUnc_4: -0.02865956582028331 - ArtUnc_5: 0.024560404389025382 - ArtUnc_6: 0.01369754229357918 - ArtUnc_7: -0.03126673580103048 - ArtUnc_8: 8.052766469309573 - ArtUnc_9: 0.0038695705497448643 - ArtUnc_10: -5.440340482204737 - ArtUnc_11: 0.5063656603501598 - ArtUnc_12: 0.13134908148401084 - ArtUnc_13: 1.5029665042315419 - ArtUnc_14: -0.028689992197552618 - ArtUnc_15: 0.18002815502716843 - ArtUnc_16: 0.014250407028977898 - ArtUnc_17: -0.04851242069981796 - ArtUnc_18: 0.29940436496149647 - ArtUnc_19: -0.07767460929124594 - ArtUnc_20: -0.2717761425707225 - ArtUnc_21: 0.04717710535467236 - ArtUnc_22: 0.03848277959299325 - ArtUnc_23: -0.014740246882677633 - ArtUnc_24: -0.002989650130971767 - ArtUnc_25: 0.04036369541606758 - ArtUnc_26: 0.09302467152124247 - ArtUnc_27: 0.014597160954111526 - ArtUnc_28: 0.03227102341406198 - ArtUnc_29: -0.011743211789941789 - ArtUnc_30: -0.020758408969679874 - ArtUnc_31: -0.011241230788636574 - ArtUnc_32: 0.007682375996861734 - ArtUnc_33: 0.006482760235230509 - ArtUnc_34: -0.008580794784232671 - ArtUnc_35: -0.004056435036263777 - ArtUnc_36: 0.0008921238755738536 - ArtUnc_37: -0.0021935306004609665 - ArtUnc_38: -0.0009761650792591071 - ArtUnc_39: -0.0005096127087808091 - ArtUnc_40: -0.0005619835756197858 - ArtUnc_41: -0.0031631785001944813 - ArtUnc_42: -0.002833615200537957 - ArtUnc_43: 0.0007371773212970561 - ArtUnc_44: 0.0013088878222306671 - ArtUnc_45: -0.0012901354777218276 - ArtUnc_46: 0.000796063416044034 - ArtUnc_47: 0.0016605377633478315 - ArtUnc_48: -0.0004132208519303545 - ArtUnc_49: -0.0007064806487292458 - ArtUnc_50: -0.0008218480678580298 - ArtUnc_51: -0.0007009699714016416 - ArtUnc_52: 0.00017757524658647763 - ArtUnc_53: -9.061136987680712e-06 - ArtUnc_54: -0.00013438631943932464 - ArtUnc_55: 7.824198600373515e-05 - ArtUnc_56: -0.0001362899566796528 - ArtUnc_57: -9.964845519297443e-06 - ArtUnc_58: 1.122877378876763e-05 - ArtUnc_59: 1.3513642131207025e-05 - ArtUnc_60: 4.997737295236754e-06 - ArtUnc_61: -1.0751982835758077e-05 - ArtUnc_62: -6.136271969468173e-06 - ArtUnc_63: 7.0241953046404945e-06 - ArtUnc_64: 1.104379494273857e-05 - ArtUnc_65: 6.8579771992259895e-06 - ArtUnc_66: 1.5782301702338166e-06 - ArtUnc_67: 1.8570889589515615e-07 - ArtUnc_68: 7.24148349806898e-06 - ArtUnc_69: 9.093223014310866e-06 - ArtUnc_70: -4.916213171292747e-07 - ArtUnc_71: -5.360034925647852e-07 - ArtUnc_72: 2.251432226795964e-07 - ArtUnc_73: 1.5427469524348637e-06 - ArtUnc_74: 2.3515148923935714e-06 - ArtUnc_75: 4.3175359448502795e-07 - ArtUnc_76: 1.127293496046763e-07 - ArtUnc_77: 7.517926745289768e-07 - ArtUnc_78: -5.095707024872688e-07 - ArtUnc_79: -7.866491425713704e-07 - ArtUnc_80: -9.43488938444306e-08 - ArtUnc_81: -1.1980382405504978e-08 - ArtUnc_82: -4.258541093895629e-10 - ArtUnc_83: -4.412159234028068e-08 - ArtUnc_84: -2.5736692776210896e-08 - ArtUnc_85: 4.2710197772579343e-08 - ArtUnc_86: 7.8015829568531e-09 - ArtUnc_87: 5.735037683417709e-10 - ArtUnc_88: -9.147156941503064e-08 - ArtUnc_89: -1.3073151315178207e-07 - ArtUnc_90: -8.733441907194588e-08 - ArtUnc_91: 2.3566459633314016e-08 - ArtUnc_92: -8.348804058711307e-09 - ArtUnc_93: -1.7661293696835112e-08 - ArtUnc_94: 4.852624460880265e-09 - ArtUnc_95: -2.0837586511281873e-08 - ArtUnc_96: -8.364543817190377e-09 + ArtUnc_2: -0.058522334197274935 + ArtUnc_3: -0.015617481349614557 + ArtUnc_4: -0.02865956582028775 + ArtUnc_5: 0.024560404389031128 + ArtUnc_6: -0.013697542293582938 + ArtUnc_7: 0.0312667358010939 + ArtUnc_8: -8.052766469309553 + ArtUnc_9: -0.003869570549781359 + ArtUnc_10: -5.440340482204765 + ArtUnc_11: 0.5063656603501565 + ArtUnc_12: 0.13134908148404048 + ArtUnc_13: 1.5029665042315448 + ArtUnc_14: -0.02868999219755132 + ArtUnc_15: 0.1800281550271725 + ArtUnc_16: 0.01425040702897497 + ArtUnc_17: 0.04851242069982236 + ArtUnc_18: -0.2994043649614981 + ArtUnc_19: 0.07767460929125639 + ArtUnc_20: 0.2717761425707195 + ArtUnc_21: 0.047177105354672885 + ArtUnc_22: 0.03848277959299294 + ArtUnc_23: 0.014740246882677685 + ArtUnc_24: 0.0029896501309716835 + ArtUnc_25: -0.04036369541606761 + ArtUnc_26: -0.09302467152124266 + ArtUnc_27: -0.014597160954110492 + ArtUnc_28: -0.032271023414061836 + ArtUnc_29: 0.011743211789942889 + ArtUnc_30: -0.02075840896967938 + ArtUnc_31: 0.011241230788636522 + ArtUnc_32: 0.007682375996866057 + ArtUnc_33: 0.006482760235225154 + ArtUnc_34: 0.008580794784233063 + ArtUnc_35: 0.004056435036263157 + ArtUnc_36: 0.0008921238755738741 + ArtUnc_37: -0.0021935306004609617 + ArtUnc_38: 0.0009761650792590337 + ArtUnc_39: -0.0005096127087808053 + ArtUnc_40: -0.0005619835756197868 + ArtUnc_41: -0.0031631785001945928 + ArtUnc_42: -0.002833615200537926 + ArtUnc_43: 0.000737177321297061 + ArtUnc_44: 0.001308887822230703 + ArtUnc_45: -0.0012901354777218469 + ArtUnc_46: 0.0007960634160440661 + ArtUnc_47: -0.0016605377633478362 + ArtUnc_48: 0.00041322085193029644 + ArtUnc_49: 0.0007064806487292607 + ArtUnc_50: 0.0008218480678580217 + ArtUnc_51: -0.00013628995667965135 + ArtUnc_52: 7.824198600373727e-05 + ArtUnc_53: 0.0007009699714016272 + ArtUnc_54: -0.00017757524658647804 + ArtUnc_55: 9.061136987685657e-06 + ArtUnc_56: -0.00013438631943932383 + ArtUnc_57: 9.964845519297726e-06 + ArtUnc_58: -1.1228773788767014e-05 + ArtUnc_59: -1.3513642131206547e-05 + ArtUnc_60: -4.997737295236594e-06 + ArtUnc_61: 1.0751982835757547e-05 + ArtUnc_62: 6.1362719694684646e-06 + ArtUnc_63: -7.024195304640522e-06 + ArtUnc_64: 1.104379494273848e-05 + ArtUnc_65: -6.857977199225964e-06 + ArtUnc_66: 1.578230170233843e-06 + ArtUnc_67: 1.8570889589523063e-07 + ArtUnc_68: 7.241483498069554e-06 + ArtUnc_69: 9.093223014310423e-06 + ArtUnc_70: -2.2514322267953912e-07 + ArtUnc_71: 4.916213171292535e-07 + ArtUnc_72: -5.360034925647657e-07 + ArtUnc_73: 1.5427469524348488e-06 + ArtUnc_74: -2.3515148923936133e-06 + ArtUnc_75: -4.317535944850396e-07 + ArtUnc_76: 1.1272934960468206e-07 + ArtUnc_77: 7.517926745290272e-07 + ArtUnc_78: 5.095707024872422e-07 + ArtUnc_79: -7.8664914257136e-07 + ArtUnc_80: 9.434889384442472e-08 + ArtUnc_81: -1.1980382405502867e-08 + ArtUnc_82: -4.258541093895767e-10 + ArtUnc_83: -4.4121592340278306e-08 + ArtUnc_84: -2.5736692776212392e-08 + ArtUnc_85: 4.2710197772578146e-08 + ArtUnc_86: 8.348804058710194e-09 + ArtUnc_87: 1.766129369683349e-08 + ArtUnc_88: 7.80158295685783e-09 + ArtUnc_89: -5.735037683417001e-10 + ArtUnc_90: -9.147156941503087e-08 + ArtUnc_91: 2.083758651128185e-08 + ArtUnc_92: 4.8526244608792894e-09 + ArtUnc_93: -1.3073151315177993e-07 + ArtUnc_94: 8.733441907194496e-08 + ArtUnc_95: 2.3566459633314595e-08 + ArtUnc_96: -8.364543817190556e-09 - stat: 0 Uncorr: 1.1400000000000001 RCES: 1.576037115679704 @@ -2568,102 +2568,102 @@ bins: ModelRW_2: 2.394122139741413 JES_1: 1.151428217476018 JES_2: 1.151428217476018 - ArtUnc_1: 0.13203839691016306 - ArtUnc_2: -0.0018981155812128453 - ArtUnc_3: 0.030449734167063695 - ArtUnc_4: 0.016599559452784796 - ArtUnc_5: -0.007039446793514841 - ArtUnc_6: 0.001674499070408551 - ArtUnc_7: -0.00015496188070864445 - ArtUnc_8: -0.04741118864007381 - ArtUnc_9: -0.0007186835313007978 - ArtUnc_10: -0.43052640155181093 - ArtUnc_11: -0.3402840139397078 - ArtUnc_12: 0.39895212060858115 - ArtUnc_13: 0.09101270589019789 - ArtUnc_14: -0.04546627440151189 - ArtUnc_15: 0.009692340009631114 - ArtUnc_16: 0.033194936534638134 - ArtUnc_17: -0.05060998404362767 - ArtUnc_18: 0.06042621545255223 - ArtUnc_19: -0.0421258089941154 - ArtUnc_20: -0.015698438313400037 - ArtUnc_21: -0.02794838949429772 - ArtUnc_22: 0.037847574133300005 - ArtUnc_23: -0.021509993525688612 - ArtUnc_24: 0.0004039371438069027 - ArtUnc_25: -3.271928974855699 - ArtUnc_26: -1.3315714679588317 - ArtUnc_27: -0.38737893889621744 - ArtUnc_28: -0.6847540037957475 - ArtUnc_29: -0.02089315840519039 - ArtUnc_30: 0.24155149523280106 - ArtUnc_31: 0.05080766078860316 - ArtUnc_32: -0.08409477654657979 - ArtUnc_33: -0.056203225074044176 - ArtUnc_34: 0.0816718202411427 - ArtUnc_35: 0.08773620671065417 - ArtUnc_36: -0.03706189225462979 - ArtUnc_37: 0.0024416941282670228 - ArtUnc_38: -0.005311259237549454 - ArtUnc_39: 0.004140830387009792 - ArtUnc_40: 0.0023273358670159654 - ArtUnc_41: 0.016608369052247947 - ArtUnc_42: 0.017377037665656576 - ArtUnc_43: -0.00747387858271836 - ArtUnc_44: -0.011366997835019018 - ArtUnc_45: 0.012081466399688648 - ArtUnc_46: -0.006010521471543163 - ArtUnc_47: -0.014787560023833005 - ArtUnc_48: 0.00471112823989923 - ArtUnc_49: 0.007430677269866008 - ArtUnc_50: 0.0068079799094667255 - ArtUnc_51: 0.007292737341519148 - ArtUnc_52: -0.0021796124008489014 - ArtUnc_53: -0.0010621839197682802 - ArtUnc_54: 0.00038932020161367266 - ArtUnc_55: -0.00013504142134225413 - ArtUnc_56: 0.0006050043502575571 - ArtUnc_57: -2.8675619155665895e-06 - ArtUnc_58: 0.00011801018194305257 - ArtUnc_59: -0.00015106725253573102 - ArtUnc_60: -5.0107640597455927e-05 - ArtUnc_61: 9.86699971619997e-06 - ArtUnc_62: 5.093667125677953e-05 - ArtUnc_63: -1.3994054984177e-06 - ArtUnc_64: -7.893786420285647e-05 - ArtUnc_65: -6.916046599340792e-05 - ArtUnc_66: 4.153359855592597e-06 - ArtUnc_67: -3.774018839093155e-06 - ArtUnc_68: -4.220146094319829e-06 - ArtUnc_69: -5.492019682321761e-06 - ArtUnc_70: -6.1693509047642875e-06 - ArtUnc_71: -1.923963939951251e-06 - ArtUnc_72: 4.037667501783322e-06 - ArtUnc_73: -2.4791489574757286e-06 - ArtUnc_74: -1.4911766742090438e-05 - ArtUnc_75: -2.4181351515255923e-06 - ArtUnc_76: -4.5954891167815134e-07 - ArtUnc_77: -4.506827325797678e-06 - ArtUnc_78: 3.1715976843935505e-06 - ArtUnc_79: 7.267656447245819e-06 - ArtUnc_80: -8.869255228243919e-07 - ArtUnc_81: -3.4742103213119546e-07 - ArtUnc_82: -3.2867253404633533e-09 - ArtUnc_83: 4.799206644697365e-07 - ArtUnc_84: 4.956056692359648e-07 - ArtUnc_85: -3.057175107316412e-07 - ArtUnc_86: -3.941215089842415e-07 - ArtUnc_87: 4.0547287225579874e-07 - ArtUnc_88: -1.3450800291205406e-08 - ArtUnc_89: 3.038985099760333e-07 - ArtUnc_90: 2.603149510967373e-07 - ArtUnc_91: 2.5716364133559936e-07 - ArtUnc_92: 6.513106602556618e-08 - ArtUnc_93: 1.2852660797314178e-07 - ArtUnc_94: -1.941848074855664e-08 - ArtUnc_95: 7.577235197068728e-08 - ArtUnc_96: -1.791599555890439e-09 + ArtUnc_1: 0.1320383969101628 + ArtUnc_2: -0.0018981155812127922 + ArtUnc_3: 0.030449734167063938 + ArtUnc_4: 0.016599559452785167 + ArtUnc_5: -0.007039446793516058 + ArtUnc_6: -0.0016744990704085601 + ArtUnc_7: 0.00015496188070738973 + ArtUnc_8: 0.04741118864007513 + ArtUnc_9: 0.0007186835312962168 + ArtUnc_10: -0.4305264015518117 + ArtUnc_11: -0.3402840139397071 + ArtUnc_12: 0.3989521206085828 + ArtUnc_13: 0.09101270589019123 + ArtUnc_14: -0.0454662744015132 + ArtUnc_15: 0.009692340009628061 + ArtUnc_16: 0.03319493653463854 + ArtUnc_17: 0.05060998404362843 + ArtUnc_18: -0.06042621545255102 + ArtUnc_19: 0.04212580899411449 + ArtUnc_20: 0.015698438313396287 + ArtUnc_21: -0.027948389494300365 + ArtUnc_22: 0.03784757413331094 + ArtUnc_23: 0.021509993525674447 + ArtUnc_24: -0.0004039371438018868 + ArtUnc_25: 3.2719289748556997 + ArtUnc_26: 1.3315714679588329 + ArtUnc_27: 0.3873789388962019 + ArtUnc_28: 0.6847540037957462 + ArtUnc_29: 0.020893158405177158 + ArtUnc_30: 0.24155149523280334 + ArtUnc_31: -0.05080766078860241 + ArtUnc_32: -0.08409477654661683 + ArtUnc_33: -0.056203225073985175 + ArtUnc_34: -0.08167182024114937 + ArtUnc_35: -0.08773620671064794 + ArtUnc_36: -0.037061892254628304 + ArtUnc_37: 0.0024416941282667287 + ArtUnc_38: 0.005311259237549614 + ArtUnc_39: 0.004140830387009761 + ArtUnc_40: 0.0023273358670159597 + ArtUnc_41: 0.016608369052248613 + ArtUnc_42: 0.017377037665656427 + ArtUnc_43: -0.007473878582718413 + ArtUnc_44: -0.01136699783501941 + ArtUnc_45: 0.012081466399688854 + ArtUnc_46: -0.006010521471543492 + ArtUnc_47: 0.014787560023833185 + ArtUnc_48: -0.004711128239898752 + ArtUnc_49: -0.007430677269866188 + ArtUnc_50: -0.006807979909466713 + ArtUnc_51: 0.0006050043502575601 + ArtUnc_52: -0.0001350414213422827 + ArtUnc_53: -0.0072927373415190835 + ArtUnc_54: 0.0021796124008489058 + ArtUnc_55: 0.0010621839197683008 + ArtUnc_56: 0.00038932020161372015 + ArtUnc_57: 2.8675619155647794e-06 + ArtUnc_58: -0.00011801018194304885 + ArtUnc_59: 0.00015106725253573715 + ArtUnc_60: 5.010764059745741e-05 + ArtUnc_61: -9.866999716198439e-06 + ArtUnc_62: -5.093667125678123e-05 + ArtUnc_63: 1.3994054984194227e-06 + ArtUnc_64: -7.893786420285958e-05 + ArtUnc_65: 6.916046599341139e-05 + ArtUnc_66: 4.153359855595592e-06 + ArtUnc_67: -3.7740188390941575e-06 + ArtUnc_68: -4.220146094322869e-06 + ArtUnc_69: -5.492019682323398e-06 + ArtUnc_70: -4.037667501783616e-06 + ArtUnc_71: 6.169350904763874e-06 + ArtUnc_72: -1.9239639399510934e-06 + ArtUnc_73: -2.479148957476188e-06 + ArtUnc_74: 1.4911766742091386e-05 + ArtUnc_75: 2.4181351515257655e-06 + ArtUnc_76: -4.5954891167824075e-07 + ArtUnc_77: -4.5068273257981715e-06 + ArtUnc_78: -3.171597684393666e-06 + ArtUnc_79: 7.267656447246022e-06 + ArtUnc_80: 8.86925522824323e-07 + ArtUnc_81: -3.4742103213120816e-07 + ArtUnc_82: -3.2867253404634625e-09 + ArtUnc_83: 4.799206644697428e-07 + ArtUnc_84: 4.956056692359477e-07 + ArtUnc_85: -3.0571751073164814e-07 + ArtUnc_86: -6.513106602556879e-08 + ArtUnc_87: -1.285266079731519e-07 + ArtUnc_88: -3.941215089842248e-07 + ArtUnc_89: -4.054728722557868e-07 + ArtUnc_90: -1.3450800291205652e-08 + ArtUnc_91: -7.577235197069439e-08 + ArtUnc_92: -1.9418480748555077e-08 + ArtUnc_93: 3.038985099760247e-07 + ArtUnc_94: -2.603149510967458e-07 + ArtUnc_95: 2.5716364133558877e-07 + ArtUnc_96: -1.7915995558900218e-09 - stat: 0 Uncorr: 0.272 RCES: 0.15369203492699288 @@ -2679,102 +2679,102 @@ bins: ModelRW_2: 1.020327707356808 JES_1: 0.6984020435250743 JES_2: 0.6984020435250743 - ArtUnc_1: 0.009828482441487735 - ArtUnc_2: -0.004608717000644577 - ArtUnc_3: -0.002367722967671028 - ArtUnc_4: -0.0002992603290157714 - ArtUnc_5: -0.00012690827336530388 - ArtUnc_6: 6.221066045210017e-06 - ArtUnc_7: 8.451570832514642e-05 - ArtUnc_8: -0.027510575217467394 - ArtUnc_9: -1.5723655122747197e-05 - ArtUnc_10: 0.01782520377434654 - ArtUnc_11: -0.006729346020043541 - ArtUnc_12: 0.015601139436508949 - ArtUnc_13: -0.007047244784116721 - ArtUnc_14: -0.00655217351819557 - ArtUnc_15: -0.005325434628899753 - ArtUnc_16: 0.006491767310628188 - ArtUnc_17: 0.003418023898827354 - ArtUnc_18: -0.0016271913888615047 - ArtUnc_19: 0.0010176831113117685 - ArtUnc_20: -0.0012412268220375559 - ArtUnc_21: 0.0013910730652472807 - ArtUnc_22: -0.0009017674683387694 - ArtUnc_23: -4.58580457396342e-05 - ArtUnc_24: 0.0001413221668143694 - ArtUnc_25: -0.048844340697329666 - ArtUnc_26: -0.04181590905251658 - ArtUnc_27: -0.3258966386876538 - ArtUnc_28: 0.046280711933588965 - ArtUnc_29: 0.0308197731950588 - ArtUnc_30: 0.14587854716562434 - ArtUnc_31: 0.001639621949476087 - ArtUnc_32: -0.06785451207482246 - ArtUnc_33: -0.02266181334052346 - ArtUnc_34: 0.04182033033426069 - ArtUnc_35: 0.0690577377189733 - ArtUnc_36: -0.026864389685193148 - ArtUnc_37: -0.004292649218078493 - ArtUnc_38: -0.005080290696072506 - ArtUnc_39: 0.0008362842858754024 - ArtUnc_40: 0.0003095012144621889 - ArtUnc_41: -0.7052015856250874 - ArtUnc_42: -0.6327097492563725 - ArtUnc_43: 0.12172801961898731 - ArtUnc_44: 0.22099531757297722 - ArtUnc_45: -0.23647012932139075 - ArtUnc_46: 0.08099032950666239 - ArtUnc_47: 0.20664841683345464 - ArtUnc_48: -0.03826598893292267 - ArtUnc_49: -0.09491404193287428 - ArtUnc_50: -0.09824741575171746 - ArtUnc_51: -0.09017523379420644 - ArtUnc_52: 0.02814318215868148 - ArtUnc_53: 0.01119679334780394 - ArtUnc_54: -0.003444288089995832 - ArtUnc_55: 0.0017742998422924019 - ArtUnc_56: -0.0046173282151575155 - ArtUnc_57: -0.0010036416826925368 - ArtUnc_58: 0.00282317313894363 - ArtUnc_59: -0.001204653199342814 - ArtUnc_60: -0.0003414476538073429 - ArtUnc_61: -2.5372229813729875e-05 - ArtUnc_62: 0.0003273466917351464 - ArtUnc_63: 0.0002863249146864457 - ArtUnc_64: -0.0006345923426677806 - ArtUnc_65: -0.000538610575124353 - ArtUnc_66: -0.0011505629179389683 - ArtUnc_67: 0.0004560945531370805 - ArtUnc_68: 0.0030148469490411567 - ArtUnc_69: 0.002073800466422449 - ArtUnc_70: -0.0004925221551272268 - ArtUnc_71: -0.00026471775867247964 - ArtUnc_72: 0.00037625735442798074 - ArtUnc_73: 0.00026934779133247223 - ArtUnc_74: 0.00026473689865877446 - ArtUnc_75: 3.59520305997644e-05 - ArtUnc_76: 1.2460882397125119e-06 - ArtUnc_77: 4.642367619192158e-05 - ArtUnc_78: -3.9134180863925706e-05 - ArtUnc_79: -6.51698698504492e-05 - ArtUnc_80: -4.185286658610534e-07 - ArtUnc_81: 1.3553201993634238e-06 - ArtUnc_82: -1.3444472389723267e-09 - ArtUnc_83: -1.3574624362066917e-06 - ArtUnc_84: -3.53029436685307e-06 - ArtUnc_85: 1.2092535550320447e-06 - ArtUnc_86: -7.154831036186798e-06 - ArtUnc_87: 4.0481952286339225e-06 - ArtUnc_88: 2.553863669683852e-06 - ArtUnc_89: -1.0256192208287806e-05 - ArtUnc_90: -3.0734211339617674e-06 - ArtUnc_91: -2.4789324434247186e-06 - ArtUnc_92: 2.3925801886004683e-06 - ArtUnc_93: 2.928764715175451e-06 - ArtUnc_94: -7.50380017785513e-08 - ArtUnc_95: 6.988055593526797e-07 - ArtUnc_96: -9.190338720973444e-08 + ArtUnc_1: 0.009828482441487745 + ArtUnc_2: -0.00460871700064456 + ArtUnc_3: -0.002367722967671026 + ArtUnc_4: -0.00029926032901598235 + ArtUnc_5: -0.00012690827336534974 + ArtUnc_6: -6.2210660451003455e-06 + ArtUnc_7: -8.451570832595379e-05 + ArtUnc_8: 0.02751057521746776 + ArtUnc_9: 1.5723655127338393e-05 + ArtUnc_10: 0.017825203774346893 + ArtUnc_11: -0.006729346020044204 + ArtUnc_12: 0.015601139436504471 + ArtUnc_13: -0.007047244784114975 + ArtUnc_14: -0.0065521735181942676 + ArtUnc_15: -0.005325434628903351 + ArtUnc_16: 0.0064917673106256015 + ArtUnc_17: -0.0034180238988290863 + ArtUnc_18: 0.0016271913888590524 + ArtUnc_19: -0.0010176831113118696 + ArtUnc_20: 0.0012412268220376775 + ArtUnc_21: 0.0013910730652472933 + ArtUnc_22: -0.0009017674683374423 + ArtUnc_23: 4.585804574036141e-05 + ArtUnc_24: -0.0001413221668135053 + ArtUnc_25: 0.048844340697331595 + ArtUnc_26: 0.04181590905252278 + ArtUnc_27: 0.32589663868765795 + ArtUnc_28: -0.046280711933589666 + ArtUnc_29: -0.030819773195066773 + ArtUnc_30: 0.14587854716562404 + ArtUnc_31: -0.0016396219494746182 + ArtUnc_32: -0.0678545120748393 + ArtUnc_33: -0.022661813340476022 + ArtUnc_34: -0.04182033033426591 + ArtUnc_35: -0.06905773771897107 + ArtUnc_36: -0.026864389685190497 + ArtUnc_37: -0.004292649218077433 + ArtUnc_38: 0.0050802906960727345 + ArtUnc_39: 0.0008362842858768569 + ArtUnc_40: 0.0003095012144619919 + ArtUnc_41: -0.7052015856251063 + ArtUnc_42: -0.6327097492563641 + ArtUnc_43: 0.12172801961898926 + ArtUnc_44: 0.22099531757298294 + ArtUnc_45: -0.23647012932139355 + ArtUnc_46: 0.08099032950666608 + ArtUnc_47: -0.20664841683345517 + ArtUnc_48: 0.038265988932915405 + ArtUnc_49: 0.09491404193287561 + ArtUnc_50: 0.09824741575171583 + ArtUnc_51: -0.004617328215157453 + ArtUnc_52: 0.0017742998422925309 + ArtUnc_53: 0.09017523379420407 + ArtUnc_54: -0.028143182158681345 + ArtUnc_55: -0.011196793347803947 + ArtUnc_56: -0.0034442880899961553 + ArtUnc_57: 0.0010036416826926242 + ArtUnc_58: -0.0028231731389436556 + ArtUnc_59: 0.0012046531993427795 + ArtUnc_60: 0.0003414476538073182 + ArtUnc_61: 2.537222981374834e-05 + ArtUnc_62: -0.00032734669173514557 + ArtUnc_63: -0.00028632491468644916 + ArtUnc_64: -0.0006345923426677774 + ArtUnc_65: 0.0005386105751243396 + ArtUnc_66: -0.0011505629179389587 + ArtUnc_67: 0.0004560945531371202 + ArtUnc_68: 0.003014846949041353 + ArtUnc_69: 0.0020738004664223268 + ArtUnc_70: -0.00037625735442800627 + ArtUnc_71: 0.0004925221551271979 + ArtUnc_72: -0.00026471775867246614 + ArtUnc_73: 0.0002693477913324866 + ArtUnc_74: -0.00026473689865880184 + ArtUnc_75: -3.595203059976877e-05 + ArtUnc_76: 1.2460882397148897e-06 + ArtUnc_77: 4.642367619193105e-05 + ArtUnc_78: 3.913418086393189e-05 + ArtUnc_79: -6.51698698504578e-05 + ArtUnc_80: 4.185286658640881e-07 + ArtUnc_81: 1.355320199362528e-06 + ArtUnc_82: -1.3444472389898236e-09 + ArtUnc_83: -1.3574624362073272e-06 + ArtUnc_84: -3.5302943668521003e-06 + ArtUnc_85: 1.2092535550324354e-06 + ArtUnc_86: -2.392580188600286e-06 + ArtUnc_87: -2.9287647151749426e-06 + ArtUnc_88: -7.154831036187616e-06 + ArtUnc_89: -4.048195228634956e-06 + ArtUnc_90: 2.553863669683389e-06 + ArtUnc_91: -6.988055593524728e-07 + ArtUnc_92: -7.503800177848302e-08 + ArtUnc_93: -1.0256192208288061e-05 + ArtUnc_94: 3.073421133961953e-06 + ArtUnc_95: -2.478932443424516e-06 + ArtUnc_96: -9.190338720973543e-08 - stat: 0 Uncorr: 0.0484 RCES: 0.021449447172363207 @@ -2790,102 +2790,102 @@ bins: ModelRW_2: 0.19713005688631044 JES_1: 0.12691186967340762 JES_2: 0.12691186967340762 - ArtUnc_1: -6.164644459496333e-08 + ArtUnc_1: -6.164644459496338e-08 ArtUnc_2: 3.922489697003599e-06 - ArtUnc_3: 3.676532891100394e-06 - ArtUnc_4: 5.56487344764471e-07 - ArtUnc_5: 6.597432172993162e-07 - ArtUnc_6: -4.992344983074685e-07 - ArtUnc_7: 1.1475159680928933e-07 - ArtUnc_8: 9.85268949055519e-05 - ArtUnc_9: 4.4079656946630887e-07 - ArtUnc_10: 0.00017923445289304494 - ArtUnc_11: 7.616657232720363e-05 - ArtUnc_12: -4.4728975211691914e-05 - ArtUnc_13: -4.079778614206482e-05 - ArtUnc_14: 1.1653214759906138e-05 - ArtUnc_15: 2.9468682734544436e-05 - ArtUnc_16: -4.060088063748322e-05 - ArtUnc_17: -4.898611122436428e-05 - ArtUnc_18: 2.5000894892529564e-05 - ArtUnc_19: -1.889207092898967e-05 - ArtUnc_20: 3.208941532949087e-05 - ArtUnc_21: -3.183327131448302e-05 - ArtUnc_22: 1.902572815062949e-05 - ArtUnc_23: -7.026400508550222e-06 - ArtUnc_24: 5.427374187195018e-07 - ArtUnc_25: -0.0018049794383780081 - ArtUnc_26: 0.0011801587967397737 - ArtUnc_27: 0.00957849418161535 - ArtUnc_28: -0.0008501682735662729 - ArtUnc_29: -0.00090065037085261 - ArtUnc_30: -0.004665811728323799 - ArtUnc_31: -0.00010043484313471119 - ArtUnc_32: 0.0020131234135996206 - ArtUnc_33: 0.0006497633601130008 - ArtUnc_34: -0.0008514052295296936 - ArtUnc_35: -0.0011510551850159917 - ArtUnc_36: -5.32719746779371e-05 - ArtUnc_37: -0.00018763487850364906 - ArtUnc_38: -0.00037460143753174647 - ArtUnc_39: 0.00020843676093660634 - ArtUnc_40: 3.0350509533323387e-05 - ArtUnc_41: 0.1026626014015879 - ArtUnc_42: -0.09840882032617751 - ArtUnc_43: -0.06871362568789526 - ArtUnc_44: -0.00931737469487431 - ArtUnc_45: -0.0351818352211152 - ArtUnc_46: -0.029312409153198712 - ArtUnc_47: -0.013643854055219985 - ArtUnc_48: 0.033826594367277786 - ArtUnc_49: -0.004633542472206927 - ArtUnc_50: -0.02025841501175573 - ArtUnc_51: -0.02252368836875011 - ArtUnc_52: 0.009567457581226341 - ArtUnc_53: 0.009843605589854273 - ArtUnc_54: 0.0015170613413585646 - ArtUnc_55: 0.004771693908959932 - ArtUnc_56: -0.002384075134639636 - ArtUnc_57: -0.06258888615097233 - ArtUnc_58: 0.26121858121934344 - ArtUnc_59: -0.10808008735278968 - ArtUnc_60: -0.023049073521630832 - ArtUnc_61: 0.14287717897481966 - ArtUnc_62: -0.04647436774649933 - ArtUnc_63: -0.05445480327220323 - ArtUnc_64: 0.020264268067554825 - ArtUnc_65: 0.00208377706928161 - ArtUnc_66: 0.06705184198137588 - ArtUnc_67: -0.021510300671448226 - ArtUnc_68: -0.0835583452065412 - ArtUnc_69: -0.042482935947782685 - ArtUnc_70: 0.009286362438022399 - ArtUnc_71: 0.005984455381454777 - ArtUnc_72: -0.0015854931928308486 - ArtUnc_73: 0.0016273501516147152 - ArtUnc_74: 0.001251898970055396 - ArtUnc_75: 5.0258160043944296e-05 - ArtUnc_76: -5.509821488613624e-05 - ArtUnc_77: -0.00014416711829247207 - ArtUnc_78: 0.00010278516747366994 - ArtUnc_79: 0.0006061054586887364 - ArtUnc_80: 6.343135642241622e-05 - ArtUnc_81: 7.291486148517893e-05 - ArtUnc_82: 3.946880946781509e-07 - ArtUnc_83: 0.00013469409234429693 - ArtUnc_84: -0.00010207049142692077 - ArtUnc_85: -0.00010050144195657886 - ArtUnc_86: -0.000207775124867491 - ArtUnc_87: 0.00011443435620056058 - ArtUnc_88: 3.8873770841941044e-05 - ArtUnc_89: -0.0002676195551706335 - ArtUnc_90: -8.669785835344134e-05 - ArtUnc_91: 8.024371620582725e-06 - ArtUnc_92: -0.00011679913164205565 - ArtUnc_93: -7.445854981991481e-05 - ArtUnc_94: 4.009384033284143e-06 - ArtUnc_95: -2.328595519510194e-05 - ArtUnc_96: -2.1333954408291226e-05 + ArtUnc_3: 3.676532891100279e-06 + ArtUnc_4: 5.564873447651579e-07 + ArtUnc_5: 6.59743217294973e-07 + ArtUnc_6: 4.992344983248174e-07 + ArtUnc_7: -1.1475159678064252e-07 + ArtUnc_8: -9.852689490555703e-05 + ArtUnc_9: -4.407965694973057e-07 + ArtUnc_10: 0.0001792344528930398 + ArtUnc_11: 7.616657232721964e-05 + ArtUnc_12: -4.4728975211666266e-05 + ArtUnc_13: -4.0797786142070816e-05 + ArtUnc_14: 1.1653214759857445e-05 + ArtUnc_15: 2.9468682734613832e-05 + ArtUnc_16: -4.060088063743114e-05 + ArtUnc_17: 4.8986111224387076e-05 + ArtUnc_18: -2.500089489249813e-05 + ArtUnc_19: 1.8892070928952376e-05 + ArtUnc_20: -3.2089415329472654e-05 + ArtUnc_21: -3.1833271314447314e-05 + ArtUnc_22: 1.9025728150568153e-05 + ArtUnc_23: 7.026400508713268e-06 + ArtUnc_24: -5.427374187542625e-07 + ArtUnc_25: 0.00180497943837816 + ArtUnc_26: -0.0011801587967399964 + ArtUnc_27: -0.009578494181615448 + ArtUnc_28: 0.0008501682735662387 + ArtUnc_29: 0.0009006503708527966 + ArtUnc_30: -0.004665811728323744 + ArtUnc_31: 0.00010043484313485591 + ArtUnc_32: 0.002013123413600144 + ArtUnc_33: 0.0006497633601117199 + ArtUnc_34: 0.0008514052295296975 + ArtUnc_35: 0.001151055185015836 + ArtUnc_36: -5.32719746780574e-05 + ArtUnc_37: -0.00018763487850387555 + ArtUnc_38: 0.000374601437531586 + ArtUnc_39: 0.00020843676093705043 + ArtUnc_40: 3.0350509533418895e-05 + ArtUnc_41: 0.10266260140158713 + ArtUnc_42: -0.09840882032617902 + ArtUnc_43: -0.0687136256878946 + ArtUnc_44: -0.009317374694874054 + ArtUnc_45: -0.03518183522111571 + ArtUnc_46: -0.029312409153198906 + ArtUnc_47: 0.013643854055219597 + ArtUnc_48: -0.03382659436727794 + ArtUnc_49: 0.004633542472207272 + ArtUnc_50: 0.02025841501175562 + ArtUnc_51: -0.0023840751346399375 + ArtUnc_52: 0.004771693908960994 + ArtUnc_53: 0.022523688368749763 + ArtUnc_54: -0.009567457581226015 + ArtUnc_55: -0.009843605589854792 + ArtUnc_56: 0.001517061341357972 + ArtUnc_57: 0.06258888615097814 + ArtUnc_58: -0.26121858121934405 + ArtUnc_59: 0.10808008735278782 + ArtUnc_60: 0.023049073521630416 + ArtUnc_61: -0.14287717897482147 + ArtUnc_62: 0.04647436774649283 + ArtUnc_63: 0.05445480327220324 + ArtUnc_64: 0.020264268067555387 + ArtUnc_65: -0.002083777069281772 + ArtUnc_66: 0.06705184198137516 + ArtUnc_67: -0.021510300671449198 + ArtUnc_68: -0.08355834520654506 + ArtUnc_69: -0.04248293594777888 + ArtUnc_70: 0.0015854931928314551 + ArtUnc_71: -0.009286362438022215 + ArtUnc_72: 0.005984455381454388 + ArtUnc_73: 0.0016273501516143546 + ArtUnc_74: -0.001251898970055017 + ArtUnc_75: -5.0258160043893535e-05 + ArtUnc_76: -5.509821488616488e-05 + ArtUnc_77: -0.0001441671182925708 + ArtUnc_78: -0.00010278516747378758 + ArtUnc_79: 0.0006061054586888791 + ArtUnc_80: -6.34313564224788e-05 + ArtUnc_81: 7.291486148520376e-05 + ArtUnc_82: 3.946880946781465e-07 + ArtUnc_83: 0.0001346940923443161 + ArtUnc_84: -0.00010207049142693918 + ArtUnc_85: -0.00010050144195659215 + ArtUnc_86: 0.0001167991316420489 + ArtUnc_87: 7.445854981989877e-05 + ArtUnc_88: -0.00020777512486746868 + ArtUnc_89: -0.00011443435620054819 + ArtUnc_90: 3.887377084194982e-05 + ArtUnc_91: 2.3285955195096784e-05 + ArtUnc_92: 4.009384033282361e-06 + ArtUnc_93: -0.0002676195551706283 + ArtUnc_94: 8.669785835343736e-05 + ArtUnc_95: 8.024371620577143e-06 + ArtUnc_96: -2.1333954408291494e-05 - stat: 0 Uncorr: 0.00786 RCES: 0.002117828831610336 @@ -2901,102 +2901,102 @@ bins: ModelRW_2: 0.02684446041960985 JES_1: 0.03254514603070633 JES_2: 0.03254514603070633 - ArtUnc_1: -2.817126819950767e-08 - ArtUnc_2: 4.4684049988513985e-07 - ArtUnc_3: 6.06566938162903e-07 - ArtUnc_4: 2.2074680006429258e-07 - ArtUnc_5: -2.7226297565523305e-08 - ArtUnc_6: -1.0502030775142442e-08 - ArtUnc_7: -6.247091275967356e-09 - ArtUnc_8: 1.3352960960346633e-05 - ArtUnc_9: 5.195880521860876e-08 - ArtUnc_10: 2.174311254461487e-05 - ArtUnc_11: 1.438428343348627e-05 - ArtUnc_12: -6.488154730194581e-06 - ArtUnc_13: -1.2077849621578791e-05 - ArtUnc_14: -9.851969940031306e-07 - ArtUnc_15: -5.508344773231738e-06 - ArtUnc_16: -8.576868897549714e-07 - ArtUnc_17: -1.7036429902542261e-06 - ArtUnc_18: -2.257652907611229e-07 - ArtUnc_19: -1.2942610814162311e-06 - ArtUnc_20: 5.002398679522411e-06 - ArtUnc_21: -3.825337628274403e-06 - ArtUnc_22: 1.7604760362986067e-06 - ArtUnc_23: -6.148453535389899e-07 - ArtUnc_24: 8.647766601743679e-08 - ArtUnc_25: -0.00021897760157160368 - ArtUnc_26: 0.0001041769653105037 - ArtUnc_27: 0.0012450843536182547 - ArtUnc_28: -0.00017348975365976 - ArtUnc_29: -0.00015219103957117347 - ArtUnc_30: -0.0007465051590979212 - ArtUnc_31: -2.0704047750258446e-05 - ArtUnc_32: 0.0004343764298589348 - ArtUnc_33: 0.00012404908013743279 - ArtUnc_34: -0.0002862893515867421 - ArtUnc_35: -0.0004963590614518438 - ArtUnc_36: 0.00020282456223151047 - ArtUnc_37: 3.7094347069720885e-05 - ArtUnc_38: 4.106182778419227e-05 - ArtUnc_39: -6.799893174138268e-06 - ArtUnc_40: -1.4954824069585455e-06 - ArtUnc_41: 0.0008081930040477415 - ArtUnc_42: 0.002108683928137042 - ArtUnc_43: 0.00035821304071891865 - ArtUnc_44: -0.0005399654934629002 - ArtUnc_45: 0.001316493409075432 - ArtUnc_46: 0.00020101437821280166 - ArtUnc_47: -0.0006350875907169873 - ArtUnc_48: -0.00047593825956509703 - ArtUnc_49: 0.000602376009215324 - ArtUnc_50: 0.0009495179427234354 - ArtUnc_51: 0.0009883270985556625 - ArtUnc_52: -0.00035012232252778645 - ArtUnc_53: -0.0002381219447796239 - ArtUnc_54: -4.1236601124929335e-06 - ArtUnc_55: -7.65822539999393e-05 - ArtUnc_56: 6.923725304543144e-05 - ArtUnc_57: 0.020661271954792452 - ArtUnc_58: -0.03012617915198426 - ArtUnc_59: -0.0463298301030496 - ArtUnc_60: -0.017025874165601154 - ArtUnc_61: 0.008563593972698479 - ArtUnc_62: 0.012710627449859669 - ArtUnc_63: -0.004931348879742483 - ArtUnc_64: -0.01951139053213328 - ArtUnc_65: -0.01837312552201215 - ArtUnc_66: 0.0069553190698154 - ArtUnc_67: -0.0018328306634743797 - ArtUnc_68: -0.0002602993112448357 - ArtUnc_69: 0.0005484249307853947 - ArtUnc_70: -0.0007404022609204061 - ArtUnc_71: -0.00026912314771388465 - ArtUnc_72: 0.0001401840323889083 - ArtUnc_73: 0.07358766616309499 - ArtUnc_74: 0.08935275262643164 - ArtUnc_75: 0.012055679340105329 - ArtUnc_76: -0.0027011264050325317 - ArtUnc_77: 0.021387610532925833 - ArtUnc_78: -0.013447794794431011 - ArtUnc_79: -0.043068065429579305 - ArtUnc_80: -0.00025035287636590564 - ArtUnc_81: -0.0004905800793988719 - ArtUnc_82: -2.4339488351599227e-06 - ArtUnc_83: 0.00034942425994390856 - ArtUnc_84: 0.0003703550434100738 - ArtUnc_85: -0.00018102905776393803 - ArtUnc_86: 0.002600428908484644 - ArtUnc_87: 0.0023811496247881157 - ArtUnc_88: -0.0006337108544292563 - ArtUnc_89: 0.004616274227591015 - ArtUnc_90: -0.0008602099782936526 - ArtUnc_91: 0.000764431035628665 - ArtUnc_92: 0.0001438932534886056 - ArtUnc_93: 0.00039986682117638847 - ArtUnc_94: -3.0413386783335254e-05 - ArtUnc_95: 0.00015991026827909247 - ArtUnc_96: -1.4366715556161222e-06 + ArtUnc_1: -2.8171268199507716e-08 + ArtUnc_2: 4.468404998851395e-07 + ArtUnc_3: 6.065669381628866e-07 + ArtUnc_4: 2.2074680006442324e-07 + ArtUnc_5: -2.7226297566834386e-08 + ArtUnc_6: 1.0502030776599082e-08 + ArtUnc_7: 6.247091281933477e-09 + ArtUnc_8: -1.3352960960347073e-05 + ArtUnc_9: -5.195880523141805e-08 + ArtUnc_10: 2.1743112544614577e-05 + ArtUnc_11: 1.4384283433486833e-05 + ArtUnc_12: -6.488154730178476e-06 + ArtUnc_13: -1.2077849621583853e-05 + ArtUnc_14: -9.85196993995112e-07 + ArtUnc_15: -5.508344773231818e-06 + ArtUnc_16: -8.576868897751414e-07 + ArtUnc_17: 1.703642990227518e-06 + ArtUnc_18: 2.2576529075168028e-07 + ArtUnc_19: 1.2942610814684423e-06 + ArtUnc_20: -5.002398679556529e-06 + ArtUnc_21: -3.8253376283432924e-06 + ArtUnc_22: 1.7604760363566307e-06 + ArtUnc_23: 6.148453534215448e-07 + ArtUnc_24: -8.64776660808692e-08 + ArtUnc_25: 0.00021897760157158004 + ArtUnc_26: -0.00010417696531048306 + ArtUnc_27: -0.0012450843536182764 + ArtUnc_28: 0.0001734897536596235 + ArtUnc_29: 0.00015219103957132238 + ArtUnc_30: -0.0007465051590978547 + ArtUnc_31: 2.0704047749812754e-05 + ArtUnc_32: 0.0004343764298588992 + ArtUnc_33: 0.0001240490801374033 + ArtUnc_34: 0.0002862893515864769 + ArtUnc_35: 0.000496359061452056 + ArtUnc_36: 0.00020282456223106611 + ArtUnc_37: 3.709434707071476e-05 + ArtUnc_38: -4.1061827783918016e-05 + ArtUnc_39: -6.799893174198059e-06 + ArtUnc_40: -1.495482406591319e-06 + ArtUnc_41: 0.0008081930040474229 + ArtUnc_42: 0.0021086839281373873 + ArtUnc_43: 0.00035821304071842616 + ArtUnc_44: -0.0005399654934635183 + ArtUnc_45: 0.001316493409075148 + ArtUnc_46: 0.0002010143782132027 + ArtUnc_47: 0.0006350875907164479 + ArtUnc_48: 0.0004759382595654312 + ArtUnc_49: -0.0006023760092153574 + ArtUnc_50: -0.0009495179427241272 + ArtUnc_51: 6.923725304565707e-05 + ArtUnc_52: -7.658225400022983e-05 + ArtUnc_53: -0.0009883270985561877 + ArtUnc_54: 0.00035012232252784885 + ArtUnc_55: 0.00023812194477975467 + ArtUnc_56: -4.123660112127637e-06 + ArtUnc_57: -0.02066127195479415 + ArtUnc_58: 0.030126179151983706 + ArtUnc_59: 0.046329830103050265 + ArtUnc_60: 0.01702587416560102 + ArtUnc_61: -0.008563593972697963 + ArtUnc_62: -0.012710627449860143 + ArtUnc_63: 0.004931348879743005 + ArtUnc_64: -0.019511390532134486 + ArtUnc_65: 0.01837312552201359 + ArtUnc_66: 0.006955319069816964 + ArtUnc_67: -0.001832830663475033 + ArtUnc_68: -0.00026029931124660403 + ArtUnc_69: 0.000548424930784027 + ArtUnc_70: -0.00014018403238890204 + ArtUnc_71: 0.0007404022609201388 + ArtUnc_72: -0.0002691231477139737 + ArtUnc_73: 0.07358766616309388 + ArtUnc_74: -0.0893527526264328 + ArtUnc_75: -0.012055679340105704 + ArtUnc_76: -0.0027011264050323686 + ArtUnc_77: 0.021387610532927363 + ArtUnc_78: 0.013447794794430668 + ArtUnc_79: -0.04306806542957896 + ArtUnc_80: 0.0002503528763656325 + ArtUnc_81: -0.0004905800793986709 + ArtUnc_82: -2.433948835170254e-06 + ArtUnc_83: 0.00034942425994394585 + ArtUnc_84: 0.0003703550434099853 + ArtUnc_85: -0.00018102905776399447 + ArtUnc_86: -0.00014389325348863863 + ArtUnc_87: -0.0003998668211764174 + ArtUnc_88: 0.00260042890848475 + ArtUnc_89: -0.0023811496247879713 + ArtUnc_90: -0.0006337108544291929 + ArtUnc_91: -0.000159910268279095 + ArtUnc_92: -3.0413386783324703e-05 + ArtUnc_93: 0.004616274227591099 + ArtUnc_94: 0.0008602099782936573 + ArtUnc_95: 0.0007644310356287082 + ArtUnc_96: -1.4366715556144155e-06 - stat: 0 Uncorr: 0.00124 RCES: 0.0016417244104903843 @@ -3012,102 +3012,102 @@ bins: ModelRW_2: 0.012477040575392867 JES_1: 0.004856027057173385 JES_2: 0.004856027057173385 - ArtUnc_1: 6.041525253143828e-10 - ArtUnc_2: -7.457087380483391e-10 - ArtUnc_3: -1.4082834307512728e-10 - ArtUnc_4: 5.259751980809698e-10 - ArtUnc_5: -6.923695139523178e-10 - ArtUnc_6: 3.3208895331698243e-10 - ArtUnc_7: 8.073137294780598e-12 - ArtUnc_8: -1.2230927873465858e-07 - ArtUnc_9: -5.113647669890167e-10 - ArtUnc_10: -2.2446935066345123e-07 - ArtUnc_11: -1.4326065212866686e-07 - ArtUnc_12: 1.153026085468027e-08 - ArtUnc_13: 1.1174732880309481e-07 - ArtUnc_14: 2.4558207141038358e-08 - ArtUnc_15: 8.883175741719856e-10 - ArtUnc_16: 3.6467441648207014e-08 - ArtUnc_17: 8.236732097262847e-08 - ArtUnc_18: -5.197226792070373e-08 - ArtUnc_19: 3.841247467637868e-08 - ArtUnc_20: -6.425356531140175e-08 - ArtUnc_21: 6.155293697788874e-08 - ArtUnc_22: -2.951676174829013e-08 - ArtUnc_23: 5.562899998071879e-09 - ArtUnc_24: -7.151556924463854e-10 - ArtUnc_25: 1.608931748776258e-06 - ArtUnc_26: -1.8646694530908165e-06 - ArtUnc_27: -1.1274858886782248e-05 - ArtUnc_28: 6.938518411524558e-07 - ArtUnc_29: 4.5559441224943266e-07 - ArtUnc_30: 1.961726405134673e-06 - ArtUnc_31: -2.1287085839396652e-08 - ArtUnc_32: 4.881844799100779e-07 - ArtUnc_33: 2.1793478494002968e-08 - ArtUnc_34: -7.364259583222377e-07 - ArtUnc_35: -1.4923928499632316e-06 - ArtUnc_36: 7.430948147792464e-07 - ArtUnc_37: 1.8178644101091007e-07 - ArtUnc_38: 2.3100931027139345e-07 - ArtUnc_39: -2.047416229184488e-07 - ArtUnc_40: -7.423803500036187e-08 - ArtUnc_41: 0.0005268887524988114 - ArtUnc_42: -0.0005714659827221061 - ArtUnc_43: -0.00027022218346637445 - ArtUnc_44: 1.639807218947462e-05 - ArtUnc_45: -0.00017043659189344178 - ArtUnc_46: -4.9978593562796565e-05 - ArtUnc_47: 3.940253779989799e-05 - ArtUnc_48: 3.0242333060471106e-05 - ArtUnc_49: -2.5495449976636212e-05 - ArtUnc_50: -6.6918278221475645e-06 - ArtUnc_51: 4.833166067699923e-05 - ArtUnc_52: -2.4613900281051554e-05 - ArtUnc_53: -5.019518747024589e-05 - ArtUnc_54: -7.534173203401729e-06 - ArtUnc_55: -2.9103029027200832e-05 - ArtUnc_56: 1.4789803073690994e-05 - ArtUnc_57: 0.0009724406566382068 - ArtUnc_58: -0.0025805819255820058 - ArtUnc_59: -0.0003722812543555839 - ArtUnc_60: -0.00024486307773781673 - ArtUnc_61: -0.000750290877691974 - ArtUnc_62: 0.0006032959090819328 - ArtUnc_63: 0.00021837644109062756 - ArtUnc_64: -0.0006049467434411304 - ArtUnc_65: -0.000469840672415627 - ArtUnc_66: -0.00016047606982258245 - ArtUnc_67: 5.597628896179762e-05 - ArtUnc_68: 0.00021823897883524966 - ArtUnc_69: 1.100866729218056e-05 - ArtUnc_70: -1.7410499464597899e-06 - ArtUnc_71: 1.5512309295244594e-05 - ArtUnc_72: -9.332428840907835e-05 - ArtUnc_73: 0.0011714027120292337 - ArtUnc_74: 0.00027863115780019164 - ArtUnc_75: -0.000287000157299122 - ArtUnc_76: 0.0072247650818527 - ArtUnc_77: -0.0013220955446080014 - ArtUnc_78: -0.01613476439515327 - ArtUnc_79: 0.00381306711786311 - ArtUnc_80: 0.005064477730472728 - ArtUnc_81: 0.0034362312205621515 - ArtUnc_82: 2.2412802282072182e-05 - ArtUnc_83: 0.022201540076900495 - ArtUnc_84: -0.004456629085650692 - ArtUnc_85: -0.017428639534710202 - ArtUnc_86: -0.011385699670263552 - ArtUnc_87: 0.00778080219253493 - ArtUnc_88: 0.0018988296326871237 - ArtUnc_89: -0.008045285761312297 - ArtUnc_90: -0.0034782788311635794 - ArtUnc_91: 0.00022653556448832082 - ArtUnc_92: -0.02149648344381187 - ArtUnc_93: -0.013607990667775922 - ArtUnc_94: 0.0005860095065114094 - ArtUnc_95: -0.00395969577280809 - ArtUnc_96: -0.004254928877904954 + ArtUnc_1: 6.041525253143837e-10 + ArtUnc_2: -7.457087380483398e-10 + ArtUnc_3: -1.4082834307497503e-10 + ArtUnc_4: 5.259751980797566e-10 + ArtUnc_5: -6.923695139325593e-10 + ArtUnc_6: -3.3208895333728377e-10 + ArtUnc_7: -8.073137240863234e-12 + ArtUnc_8: 1.2230927873466213e-07 + ArtUnc_9: 5.113647670230508e-10 + ArtUnc_10: -2.244693506634476e-07 + ArtUnc_11: -1.432606521286891e-07 + ArtUnc_12: 1.1530260854438604e-08 + ArtUnc_13: 1.117473288031136e-07 + ArtUnc_14: 2.455820714133376e-08 + ArtUnc_15: 8.883175739142325e-10 + ArtUnc_16: 3.64674416477968e-08 + ArtUnc_17: -8.23673209728863e-08 + ArtUnc_18: 5.197226792066097e-08 + ArtUnc_19: -3.841247467568004e-08 + ArtUnc_20: 6.425356531113657e-08 + ArtUnc_21: 6.155293697544512e-08 + ArtUnc_22: -2.9516761746782553e-08 + ArtUnc_23: -5.562900001094921e-09 + ArtUnc_24: 7.151556918564961e-10 + ArtUnc_25: -1.6089317487759996e-06 + ArtUnc_26: 1.8646694530904163e-06 + ArtUnc_27: 1.1274858886782353e-05 + ArtUnc_28: -6.938518411540835e-07 + ArtUnc_29: -4.555944122477703e-07 + ArtUnc_30: 1.9617264051350774e-06 + ArtUnc_31: 2.1287085831880707e-08 + ArtUnc_32: 4.881844799069134e-07 + ArtUnc_33: 2.179347849928199e-08 + ArtUnc_34: 7.364259583162062e-07 + ArtUnc_35: 1.4923928499667925e-06 + ArtUnc_36: 7.430948147728629e-07 + ArtUnc_37: 1.8178644102041127e-07 + ArtUnc_38: -2.3100931026616919e-07 + ArtUnc_39: -2.047416229297779e-07 + ArtUnc_40: -7.4238034992303e-08 + ArtUnc_41: 0.0005268887524987921 + ArtUnc_42: -0.0005714659827220986 + ArtUnc_43: -0.00027022218346638225 + ArtUnc_44: 1.6398072189473574e-05 + ArtUnc_45: -0.00017043659189344853 + ArtUnc_46: -4.997859356279252e-05 + ArtUnc_47: -3.9402537799913584e-05 + ArtUnc_48: -3.0242333060468175e-05 + ArtUnc_49: 2.5495449976636246e-05 + ArtUnc_50: 6.691827822136524e-06 + ArtUnc_51: 1.4789803073696317e-05 + ArtUnc_52: -2.910302902721402e-05 + ArtUnc_53: -4.8331660677013445e-05 + ArtUnc_54: 2.46139002810582e-05 + ArtUnc_55: 5.0195187470255184e-05 + ArtUnc_56: -7.534173203397271e-06 + ArtUnc_57: -0.0009724406566382886 + ArtUnc_58: 0.002580581925581996 + ArtUnc_59: 0.0003722812543556141 + ArtUnc_60: 0.00024486307773779494 + ArtUnc_61: 0.0007502908776919723 + ArtUnc_62: -0.000603295909081876 + ArtUnc_63: -0.00021837644109062352 + ArtUnc_64: -0.0006049467434411995 + ArtUnc_65: 0.0004698406724156381 + ArtUnc_66: -0.00016047606982258857 + ArtUnc_67: 5.597628896170966e-05 + ArtUnc_68: 0.0002182389788351802 + ArtUnc_69: 1.1008667292203844e-05 + ArtUnc_70: 9.332428840909884e-05 + ArtUnc_71: 1.7410499463531618e-06 + ArtUnc_72: 1.5512309295234166e-05 + ArtUnc_73: 0.001171402712029326 + ArtUnc_74: -0.0002786311578004168 + ArtUnc_75: 0.00028700015729913036 + ArtUnc_76: 0.007224765081852715 + ArtUnc_77: -0.0013220955446067943 + ArtUnc_78: 0.01613476439515324 + ArtUnc_79: 0.0038130671178633353 + ArtUnc_80: -0.005064477730472428 + ArtUnc_81: 0.003436231220562271 + ArtUnc_82: 2.2412802282053842e-05 + ArtUnc_83: 0.022201540076900436 + ArtUnc_84: -0.0044566290856507575 + ArtUnc_85: -0.01742863953471023 + ArtUnc_86: 0.021496483443812036 + ArtUnc_87: 0.013607990667775918 + ArtUnc_88: -0.011385699670263238 + ArtUnc_89: -0.007780802192535263 + ArtUnc_90: 0.001898829632687188 + ArtUnc_91: 0.003959695772808286 + ArtUnc_92: 0.0005860095065112893 + ArtUnc_93: -0.008045285761312283 + ArtUnc_94: 0.0034782788311635373 + ArtUnc_95: 0.00022653556448828135 + ArtUnc_96: -0.004254928877905018 - stat: 0 Uncorr: 1.44 RCES: 8.406674491140953 @@ -3124,101 +3124,101 @@ bins: JES_1: 4.026734776465915 JES_2: 4.026734776465915 ArtUnc_1: 0.862390513360958 - ArtUnc_2: -0.0585223341972758 - ArtUnc_3: -0.015617481349614281 - ArtUnc_4: -0.02865956582028331 - ArtUnc_5: 0.024560404389025382 - ArtUnc_6: 0.01369754229357918 - ArtUnc_7: -0.03126673580103048 - ArtUnc_8: 8.052766469309573 - ArtUnc_9: 0.0038695705497448643 - ArtUnc_10: -5.440340482204737 - ArtUnc_11: 0.5063656603501598 - ArtUnc_12: 0.13134908148401084 - ArtUnc_13: 1.5029665042315419 - ArtUnc_14: -0.028689992197552618 - ArtUnc_15: 0.18002815502716843 - ArtUnc_16: 0.014250407028977898 - ArtUnc_17: -0.04851242069981796 - ArtUnc_18: 0.29940436496149647 - ArtUnc_19: -0.07767460929124594 - ArtUnc_20: -0.2717761425707225 - ArtUnc_21: 0.04717710535467236 - ArtUnc_22: 0.03848277959299325 - ArtUnc_23: -0.014740246882677633 - ArtUnc_24: -0.002989650130971767 - ArtUnc_25: 0.04036369541606758 - ArtUnc_26: 0.09302467152124247 - ArtUnc_27: 0.014597160954111526 - ArtUnc_28: 0.03227102341406198 - ArtUnc_29: -0.011743211789941789 - ArtUnc_30: -0.020758408969679874 - ArtUnc_31: -0.011241230788636574 - ArtUnc_32: 0.007682375996861734 - ArtUnc_33: 0.006482760235230509 - ArtUnc_34: -0.008580794784232671 - ArtUnc_35: -0.004056435036263777 - ArtUnc_36: 0.0008921238755738536 - ArtUnc_37: -0.0021935306004609665 - ArtUnc_38: -0.0009761650792591071 - ArtUnc_39: -0.0005096127087808091 - ArtUnc_40: -0.0005619835756197858 - ArtUnc_41: -0.0031631785001944813 - ArtUnc_42: -0.002833615200537957 - ArtUnc_43: 0.0007371773212970561 - ArtUnc_44: 0.0013088878222306671 - ArtUnc_45: -0.0012901354777218276 - ArtUnc_46: 0.000796063416044034 - ArtUnc_47: 0.0016605377633478315 - ArtUnc_48: -0.0004132208519303545 - ArtUnc_49: -0.0007064806487292458 - ArtUnc_50: -0.0008218480678580298 - ArtUnc_51: -0.0007009699714016416 - ArtUnc_52: 0.00017757524658647763 - ArtUnc_53: -9.061136987680712e-06 - ArtUnc_54: -0.00013438631943932464 - ArtUnc_55: 7.824198600373515e-05 - ArtUnc_56: -0.0001362899566796528 - ArtUnc_57: -9.964845519297443e-06 - ArtUnc_58: 1.122877378876763e-05 - ArtUnc_59: 1.3513642131207025e-05 - ArtUnc_60: 4.997737295236754e-06 - ArtUnc_61: -1.0751982835758077e-05 - ArtUnc_62: -6.136271969468173e-06 - ArtUnc_63: 7.0241953046404945e-06 - ArtUnc_64: 1.104379494273857e-05 - ArtUnc_65: 6.8579771992259895e-06 - ArtUnc_66: 1.5782301702338166e-06 - ArtUnc_67: 1.8570889589515615e-07 - ArtUnc_68: 7.24148349806898e-06 - ArtUnc_69: 9.093223014310866e-06 - ArtUnc_70: -4.916213171292747e-07 - ArtUnc_71: -5.360034925647852e-07 - ArtUnc_72: 2.251432226795964e-07 - ArtUnc_73: 1.5427469524348637e-06 - ArtUnc_74: 2.3515148923935714e-06 - ArtUnc_75: 4.3175359448502795e-07 - ArtUnc_76: 1.127293496046763e-07 - ArtUnc_77: 7.517926745289768e-07 - ArtUnc_78: -5.095707024872688e-07 - ArtUnc_79: -7.866491425713704e-07 - ArtUnc_80: -9.43488938444306e-08 - ArtUnc_81: -1.1980382405504978e-08 - ArtUnc_82: -4.258541093895629e-10 - ArtUnc_83: -4.412159234028068e-08 - ArtUnc_84: -2.5736692776210896e-08 - ArtUnc_85: 4.2710197772579343e-08 - ArtUnc_86: 7.8015829568531e-09 - ArtUnc_87: 5.735037683417709e-10 - ArtUnc_88: -9.147156941503064e-08 - ArtUnc_89: -1.3073151315178207e-07 - ArtUnc_90: -8.733441907194588e-08 - ArtUnc_91: 2.3566459633314016e-08 - ArtUnc_92: -8.348804058711307e-09 - ArtUnc_93: -1.7661293696835112e-08 - ArtUnc_94: 4.852624460880265e-09 - ArtUnc_95: -2.0837586511281873e-08 - ArtUnc_96: -8.364543817190377e-09 + ArtUnc_2: -0.058522334197274935 + ArtUnc_3: -0.015617481349614557 + ArtUnc_4: -0.02865956582028775 + ArtUnc_5: 0.024560404389031128 + ArtUnc_6: -0.013697542293582938 + ArtUnc_7: 0.0312667358010939 + ArtUnc_8: -8.052766469309553 + ArtUnc_9: -0.003869570549781359 + ArtUnc_10: -5.440340482204765 + ArtUnc_11: 0.5063656603501565 + ArtUnc_12: 0.13134908148404048 + ArtUnc_13: 1.5029665042315448 + ArtUnc_14: -0.02868999219755132 + ArtUnc_15: 0.1800281550271725 + ArtUnc_16: 0.01425040702897497 + ArtUnc_17: 0.04851242069982236 + ArtUnc_18: -0.2994043649614981 + ArtUnc_19: 0.07767460929125639 + ArtUnc_20: 0.2717761425707195 + ArtUnc_21: 0.047177105354672885 + ArtUnc_22: 0.03848277959299294 + ArtUnc_23: 0.014740246882677685 + ArtUnc_24: 0.0029896501309716835 + ArtUnc_25: -0.04036369541606761 + ArtUnc_26: -0.09302467152124266 + ArtUnc_27: -0.014597160954110492 + ArtUnc_28: -0.032271023414061836 + ArtUnc_29: 0.011743211789942889 + ArtUnc_30: -0.02075840896967938 + ArtUnc_31: 0.011241230788636522 + ArtUnc_32: 0.007682375996866057 + ArtUnc_33: 0.006482760235225154 + ArtUnc_34: 0.008580794784233063 + ArtUnc_35: 0.004056435036263157 + ArtUnc_36: 0.0008921238755738741 + ArtUnc_37: -0.0021935306004609617 + ArtUnc_38: 0.0009761650792590337 + ArtUnc_39: -0.0005096127087808053 + ArtUnc_40: -0.0005619835756197868 + ArtUnc_41: -0.0031631785001945928 + ArtUnc_42: -0.002833615200537926 + ArtUnc_43: 0.000737177321297061 + ArtUnc_44: 0.001308887822230703 + ArtUnc_45: -0.0012901354777218469 + ArtUnc_46: 0.0007960634160440661 + ArtUnc_47: -0.0016605377633478362 + ArtUnc_48: 0.00041322085193029644 + ArtUnc_49: 0.0007064806487292607 + ArtUnc_50: 0.0008218480678580217 + ArtUnc_51: -0.00013628995667965135 + ArtUnc_52: 7.824198600373727e-05 + ArtUnc_53: 0.0007009699714016272 + ArtUnc_54: -0.00017757524658647804 + ArtUnc_55: 9.061136987685657e-06 + ArtUnc_56: -0.00013438631943932383 + ArtUnc_57: 9.964845519297726e-06 + ArtUnc_58: -1.1228773788767014e-05 + ArtUnc_59: -1.3513642131206547e-05 + ArtUnc_60: -4.997737295236594e-06 + ArtUnc_61: 1.0751982835757547e-05 + ArtUnc_62: 6.1362719694684646e-06 + ArtUnc_63: -7.024195304640522e-06 + ArtUnc_64: 1.104379494273848e-05 + ArtUnc_65: -6.857977199225964e-06 + ArtUnc_66: 1.578230170233843e-06 + ArtUnc_67: 1.8570889589523063e-07 + ArtUnc_68: 7.241483498069554e-06 + ArtUnc_69: 9.093223014310423e-06 + ArtUnc_70: -2.2514322267953912e-07 + ArtUnc_71: 4.916213171292535e-07 + ArtUnc_72: -5.360034925647657e-07 + ArtUnc_73: 1.5427469524348488e-06 + ArtUnc_74: -2.3515148923936133e-06 + ArtUnc_75: -4.317535944850396e-07 + ArtUnc_76: 1.1272934960468206e-07 + ArtUnc_77: 7.517926745290272e-07 + ArtUnc_78: 5.095707024872422e-07 + ArtUnc_79: -7.8664914257136e-07 + ArtUnc_80: 9.434889384442472e-08 + ArtUnc_81: -1.1980382405502867e-08 + ArtUnc_82: -4.258541093895767e-10 + ArtUnc_83: -4.4121592340278306e-08 + ArtUnc_84: -2.5736692776212392e-08 + ArtUnc_85: 4.2710197772578146e-08 + ArtUnc_86: 8.348804058710194e-09 + ArtUnc_87: 1.766129369683349e-08 + ArtUnc_88: 7.80158295685783e-09 + ArtUnc_89: -5.735037683417001e-10 + ArtUnc_90: -9.147156941503087e-08 + ArtUnc_91: 2.083758651128185e-08 + ArtUnc_92: 4.8526244608792894e-09 + ArtUnc_93: -1.3073151315177993e-07 + ArtUnc_94: 8.733441907194496e-08 + ArtUnc_95: 2.3566459633314595e-08 + ArtUnc_96: -8.364543817190556e-09 - stat: 0 Uncorr: 1.04 RCES: 1.4209231928573762 @@ -3234,102 +3234,102 @@ bins: ModelRW_2: 0.8751153523964712 JES_1: 0.9381569591491608 JES_2: 0.9381569591491608 - ArtUnc_1: 0.13203839691016306 - ArtUnc_2: -0.0018981155812128453 - ArtUnc_3: 0.030449734167063695 - ArtUnc_4: 0.016599559452784796 - ArtUnc_5: -0.007039446793514841 - ArtUnc_6: 0.001674499070408551 - ArtUnc_7: -0.00015496188070864445 - ArtUnc_8: -0.04741118864007381 - ArtUnc_9: -0.0007186835313007978 - ArtUnc_10: -0.43052640155181093 - ArtUnc_11: -0.3402840139397078 - ArtUnc_12: 0.39895212060858115 - ArtUnc_13: 0.09101270589019789 - ArtUnc_14: -0.04546627440151189 - ArtUnc_15: 0.009692340009631114 - ArtUnc_16: 0.033194936534638134 - ArtUnc_17: -0.05060998404362767 - ArtUnc_18: 0.06042621545255223 - ArtUnc_19: -0.0421258089941154 - ArtUnc_20: -0.015698438313400037 - ArtUnc_21: -0.02794838949429772 - ArtUnc_22: 0.037847574133300005 - ArtUnc_23: -0.021509993525688612 - ArtUnc_24: 0.0004039371438069027 - ArtUnc_25: -3.271928974855699 - ArtUnc_26: -1.3315714679588317 - ArtUnc_27: -0.38737893889621744 - ArtUnc_28: -0.6847540037957475 - ArtUnc_29: -0.02089315840519039 - ArtUnc_30: 0.24155149523280106 - ArtUnc_31: 0.05080766078860316 - ArtUnc_32: -0.08409477654657979 - ArtUnc_33: -0.056203225074044176 - ArtUnc_34: 0.0816718202411427 - ArtUnc_35: 0.08773620671065417 - ArtUnc_36: -0.03706189225462979 - ArtUnc_37: 0.0024416941282670228 - ArtUnc_38: -0.005311259237549454 - ArtUnc_39: 0.004140830387009792 - ArtUnc_40: 0.0023273358670159654 - ArtUnc_41: 0.016608369052247947 - ArtUnc_42: 0.017377037665656576 - ArtUnc_43: -0.00747387858271836 - ArtUnc_44: -0.011366997835019018 - ArtUnc_45: 0.012081466399688648 - ArtUnc_46: -0.006010521471543163 - ArtUnc_47: -0.014787560023833005 - ArtUnc_48: 0.00471112823989923 - ArtUnc_49: 0.007430677269866008 - ArtUnc_50: 0.0068079799094667255 - ArtUnc_51: 0.007292737341519148 - ArtUnc_52: -0.0021796124008489014 - ArtUnc_53: -0.0010621839197682802 - ArtUnc_54: 0.00038932020161367266 - ArtUnc_55: -0.00013504142134225413 - ArtUnc_56: 0.0006050043502575571 - ArtUnc_57: -2.8675619155665895e-06 - ArtUnc_58: 0.00011801018194305257 - ArtUnc_59: -0.00015106725253573102 - ArtUnc_60: -5.0107640597455927e-05 - ArtUnc_61: 9.86699971619997e-06 - ArtUnc_62: 5.093667125677953e-05 - ArtUnc_63: -1.3994054984177e-06 - ArtUnc_64: -7.893786420285647e-05 - ArtUnc_65: -6.916046599340792e-05 - ArtUnc_66: 4.153359855592597e-06 - ArtUnc_67: -3.774018839093155e-06 - ArtUnc_68: -4.220146094319829e-06 - ArtUnc_69: -5.492019682321761e-06 - ArtUnc_70: -6.1693509047642875e-06 - ArtUnc_71: -1.923963939951251e-06 - ArtUnc_72: 4.037667501783322e-06 - ArtUnc_73: -2.4791489574757286e-06 - ArtUnc_74: -1.4911766742090438e-05 - ArtUnc_75: -2.4181351515255923e-06 - ArtUnc_76: -4.5954891167815134e-07 - ArtUnc_77: -4.506827325797678e-06 - ArtUnc_78: 3.1715976843935505e-06 - ArtUnc_79: 7.267656447245819e-06 - ArtUnc_80: -8.869255228243919e-07 - ArtUnc_81: -3.4742103213119546e-07 - ArtUnc_82: -3.2867253404633533e-09 - ArtUnc_83: 4.799206644697365e-07 - ArtUnc_84: 4.956056692359648e-07 - ArtUnc_85: -3.057175107316412e-07 - ArtUnc_86: -3.941215089842415e-07 - ArtUnc_87: 4.0547287225579874e-07 - ArtUnc_88: -1.3450800291205406e-08 - ArtUnc_89: 3.038985099760333e-07 - ArtUnc_90: 2.603149510967373e-07 - ArtUnc_91: 2.5716364133559936e-07 - ArtUnc_92: 6.513106602556618e-08 - ArtUnc_93: 1.2852660797314178e-07 - ArtUnc_94: -1.941848074855664e-08 - ArtUnc_95: 7.577235197068728e-08 - ArtUnc_96: -1.791599555890439e-09 + ArtUnc_1: 0.1320383969101628 + ArtUnc_2: -0.0018981155812127922 + ArtUnc_3: 0.030449734167063938 + ArtUnc_4: 0.016599559452785167 + ArtUnc_5: -0.007039446793516058 + ArtUnc_6: -0.0016744990704085601 + ArtUnc_7: 0.00015496188070738973 + ArtUnc_8: 0.04741118864007513 + ArtUnc_9: 0.0007186835312962168 + ArtUnc_10: -0.4305264015518117 + ArtUnc_11: -0.3402840139397071 + ArtUnc_12: 0.3989521206085828 + ArtUnc_13: 0.09101270589019123 + ArtUnc_14: -0.0454662744015132 + ArtUnc_15: 0.009692340009628061 + ArtUnc_16: 0.03319493653463854 + ArtUnc_17: 0.05060998404362843 + ArtUnc_18: -0.06042621545255102 + ArtUnc_19: 0.04212580899411449 + ArtUnc_20: 0.015698438313396287 + ArtUnc_21: -0.027948389494300365 + ArtUnc_22: 0.03784757413331094 + ArtUnc_23: 0.021509993525674447 + ArtUnc_24: -0.0004039371438018868 + ArtUnc_25: 3.2719289748556997 + ArtUnc_26: 1.3315714679588329 + ArtUnc_27: 0.3873789388962019 + ArtUnc_28: 0.6847540037957462 + ArtUnc_29: 0.020893158405177158 + ArtUnc_30: 0.24155149523280334 + ArtUnc_31: -0.05080766078860241 + ArtUnc_32: -0.08409477654661683 + ArtUnc_33: -0.056203225073985175 + ArtUnc_34: -0.08167182024114937 + ArtUnc_35: -0.08773620671064794 + ArtUnc_36: -0.037061892254628304 + ArtUnc_37: 0.0024416941282667287 + ArtUnc_38: 0.005311259237549614 + ArtUnc_39: 0.004140830387009761 + ArtUnc_40: 0.0023273358670159597 + ArtUnc_41: 0.016608369052248613 + ArtUnc_42: 0.017377037665656427 + ArtUnc_43: -0.007473878582718413 + ArtUnc_44: -0.01136699783501941 + ArtUnc_45: 0.012081466399688854 + ArtUnc_46: -0.006010521471543492 + ArtUnc_47: 0.014787560023833185 + ArtUnc_48: -0.004711128239898752 + ArtUnc_49: -0.007430677269866188 + ArtUnc_50: -0.006807979909466713 + ArtUnc_51: 0.0006050043502575601 + ArtUnc_52: -0.0001350414213422827 + ArtUnc_53: -0.0072927373415190835 + ArtUnc_54: 0.0021796124008489058 + ArtUnc_55: 0.0010621839197683008 + ArtUnc_56: 0.00038932020161372015 + ArtUnc_57: 2.8675619155647794e-06 + ArtUnc_58: -0.00011801018194304885 + ArtUnc_59: 0.00015106725253573715 + ArtUnc_60: 5.010764059745741e-05 + ArtUnc_61: -9.866999716198439e-06 + ArtUnc_62: -5.093667125678123e-05 + ArtUnc_63: 1.3994054984194227e-06 + ArtUnc_64: -7.893786420285958e-05 + ArtUnc_65: 6.916046599341139e-05 + ArtUnc_66: 4.153359855595592e-06 + ArtUnc_67: -3.7740188390941575e-06 + ArtUnc_68: -4.220146094322869e-06 + ArtUnc_69: -5.492019682323398e-06 + ArtUnc_70: -4.037667501783616e-06 + ArtUnc_71: 6.169350904763874e-06 + ArtUnc_72: -1.9239639399510934e-06 + ArtUnc_73: -2.479148957476188e-06 + ArtUnc_74: 1.4911766742091386e-05 + ArtUnc_75: 2.4181351515257655e-06 + ArtUnc_76: -4.5954891167824075e-07 + ArtUnc_77: -4.5068273257981715e-06 + ArtUnc_78: -3.171597684393666e-06 + ArtUnc_79: 7.267656447246022e-06 + ArtUnc_80: 8.86925522824323e-07 + ArtUnc_81: -3.4742103213120816e-07 + ArtUnc_82: -3.2867253404634625e-09 + ArtUnc_83: 4.799206644697428e-07 + ArtUnc_84: 4.956056692359477e-07 + ArtUnc_85: -3.0571751073164814e-07 + ArtUnc_86: -6.513106602556879e-08 + ArtUnc_87: -1.285266079731519e-07 + ArtUnc_88: -3.941215089842248e-07 + ArtUnc_89: -4.054728722557868e-07 + ArtUnc_90: -1.3450800291205652e-08 + ArtUnc_91: -7.577235197069439e-08 + ArtUnc_92: -1.9418480748555077e-08 + ArtUnc_93: 3.038985099760247e-07 + ArtUnc_94: -2.603149510967458e-07 + ArtUnc_95: 2.5716364133558877e-07 + ArtUnc_96: -1.7915995558900218e-09 - stat: 0 Uncorr: 0.265 RCES: 0.039904283917895335 @@ -3345,102 +3345,102 @@ bins: ModelRW_2: 0.6652107044012444 JES_1: 0.6155819380878552 JES_2: 0.6155819380878552 - ArtUnc_1: 0.009828482441487735 - ArtUnc_2: -0.004608717000644577 - ArtUnc_3: -0.002367722967671028 - ArtUnc_4: -0.0002992603290157714 - ArtUnc_5: -0.00012690827336530388 - ArtUnc_6: 6.221066045210017e-06 - ArtUnc_7: 8.451570832514642e-05 - ArtUnc_8: -0.027510575217467394 - ArtUnc_9: -1.5723655122747197e-05 - ArtUnc_10: 0.01782520377434654 - ArtUnc_11: -0.006729346020043541 - ArtUnc_12: 0.015601139436508949 - ArtUnc_13: -0.007047244784116721 - ArtUnc_14: -0.00655217351819557 - ArtUnc_15: -0.005325434628899753 - ArtUnc_16: 0.006491767310628188 - ArtUnc_17: 0.003418023898827354 - ArtUnc_18: -0.0016271913888615047 - ArtUnc_19: 0.0010176831113117685 - ArtUnc_20: -0.0012412268220375559 - ArtUnc_21: 0.0013910730652472807 - ArtUnc_22: -0.0009017674683387694 - ArtUnc_23: -4.58580457396342e-05 - ArtUnc_24: 0.0001413221668143694 - ArtUnc_25: -0.048844340697329666 - ArtUnc_26: -0.04181590905251658 - ArtUnc_27: -0.3258966386876538 - ArtUnc_28: 0.046280711933588965 - ArtUnc_29: 0.0308197731950588 - ArtUnc_30: 0.14587854716562434 - ArtUnc_31: 0.001639621949476087 - ArtUnc_32: -0.06785451207482246 - ArtUnc_33: -0.02266181334052346 - ArtUnc_34: 0.04182033033426069 - ArtUnc_35: 0.0690577377189733 - ArtUnc_36: -0.026864389685193148 - ArtUnc_37: -0.004292649218078493 - ArtUnc_38: -0.005080290696072506 - ArtUnc_39: 0.0008362842858754024 - ArtUnc_40: 0.0003095012144621889 - ArtUnc_41: -0.7052015856250874 - ArtUnc_42: -0.6327097492563725 - ArtUnc_43: 0.12172801961898731 - ArtUnc_44: 0.22099531757297722 - ArtUnc_45: -0.23647012932139075 - ArtUnc_46: 0.08099032950666239 - ArtUnc_47: 0.20664841683345464 - ArtUnc_48: -0.03826598893292267 - ArtUnc_49: -0.09491404193287428 - ArtUnc_50: -0.09824741575171746 - ArtUnc_51: -0.09017523379420644 - ArtUnc_52: 0.02814318215868148 - ArtUnc_53: 0.01119679334780394 - ArtUnc_54: -0.003444288089995832 - ArtUnc_55: 0.0017742998422924019 - ArtUnc_56: -0.0046173282151575155 - ArtUnc_57: -0.0010036416826925368 - ArtUnc_58: 0.00282317313894363 - ArtUnc_59: -0.001204653199342814 - ArtUnc_60: -0.0003414476538073429 - ArtUnc_61: -2.5372229813729875e-05 - ArtUnc_62: 0.0003273466917351464 - ArtUnc_63: 0.0002863249146864457 - ArtUnc_64: -0.0006345923426677806 - ArtUnc_65: -0.000538610575124353 - ArtUnc_66: -0.0011505629179389683 - ArtUnc_67: 0.0004560945531370805 - ArtUnc_68: 0.0030148469490411567 - ArtUnc_69: 0.002073800466422449 - ArtUnc_70: -0.0004925221551272268 - ArtUnc_71: -0.00026471775867247964 - ArtUnc_72: 0.00037625735442798074 - ArtUnc_73: 0.00026934779133247223 - ArtUnc_74: 0.00026473689865877446 - ArtUnc_75: 3.59520305997644e-05 - ArtUnc_76: 1.2460882397125119e-06 - ArtUnc_77: 4.642367619192158e-05 - ArtUnc_78: -3.9134180863925706e-05 - ArtUnc_79: -6.51698698504492e-05 - ArtUnc_80: -4.185286658610534e-07 - ArtUnc_81: 1.3553201993634238e-06 - ArtUnc_82: -1.3444472389723267e-09 - ArtUnc_83: -1.3574624362066917e-06 - ArtUnc_84: -3.53029436685307e-06 - ArtUnc_85: 1.2092535550320447e-06 - ArtUnc_86: -7.154831036186798e-06 - ArtUnc_87: 4.0481952286339225e-06 - ArtUnc_88: 2.553863669683852e-06 - ArtUnc_89: -1.0256192208287806e-05 - ArtUnc_90: -3.0734211339617674e-06 - ArtUnc_91: -2.4789324434247186e-06 - ArtUnc_92: 2.3925801886004683e-06 - ArtUnc_93: 2.928764715175451e-06 - ArtUnc_94: -7.50380017785513e-08 - ArtUnc_95: 6.988055593526797e-07 - ArtUnc_96: -9.190338720973444e-08 + ArtUnc_1: 0.009828482441487745 + ArtUnc_2: -0.00460871700064456 + ArtUnc_3: -0.002367722967671026 + ArtUnc_4: -0.00029926032901598235 + ArtUnc_5: -0.00012690827336534974 + ArtUnc_6: -6.2210660451003455e-06 + ArtUnc_7: -8.451570832595379e-05 + ArtUnc_8: 0.02751057521746776 + ArtUnc_9: 1.5723655127338393e-05 + ArtUnc_10: 0.017825203774346893 + ArtUnc_11: -0.006729346020044204 + ArtUnc_12: 0.015601139436504471 + ArtUnc_13: -0.007047244784114975 + ArtUnc_14: -0.0065521735181942676 + ArtUnc_15: -0.005325434628903351 + ArtUnc_16: 0.0064917673106256015 + ArtUnc_17: -0.0034180238988290863 + ArtUnc_18: 0.0016271913888590524 + ArtUnc_19: -0.0010176831113118696 + ArtUnc_20: 0.0012412268220376775 + ArtUnc_21: 0.0013910730652472933 + ArtUnc_22: -0.0009017674683374423 + ArtUnc_23: 4.585804574036141e-05 + ArtUnc_24: -0.0001413221668135053 + ArtUnc_25: 0.048844340697331595 + ArtUnc_26: 0.04181590905252278 + ArtUnc_27: 0.32589663868765795 + ArtUnc_28: -0.046280711933589666 + ArtUnc_29: -0.030819773195066773 + ArtUnc_30: 0.14587854716562404 + ArtUnc_31: -0.0016396219494746182 + ArtUnc_32: -0.0678545120748393 + ArtUnc_33: -0.022661813340476022 + ArtUnc_34: -0.04182033033426591 + ArtUnc_35: -0.06905773771897107 + ArtUnc_36: -0.026864389685190497 + ArtUnc_37: -0.004292649218077433 + ArtUnc_38: 0.0050802906960727345 + ArtUnc_39: 0.0008362842858768569 + ArtUnc_40: 0.0003095012144619919 + ArtUnc_41: -0.7052015856251063 + ArtUnc_42: -0.6327097492563641 + ArtUnc_43: 0.12172801961898926 + ArtUnc_44: 0.22099531757298294 + ArtUnc_45: -0.23647012932139355 + ArtUnc_46: 0.08099032950666608 + ArtUnc_47: -0.20664841683345517 + ArtUnc_48: 0.038265988932915405 + ArtUnc_49: 0.09491404193287561 + ArtUnc_50: 0.09824741575171583 + ArtUnc_51: -0.004617328215157453 + ArtUnc_52: 0.0017742998422925309 + ArtUnc_53: 0.09017523379420407 + ArtUnc_54: -0.028143182158681345 + ArtUnc_55: -0.011196793347803947 + ArtUnc_56: -0.0034442880899961553 + ArtUnc_57: 0.0010036416826926242 + ArtUnc_58: -0.0028231731389436556 + ArtUnc_59: 0.0012046531993427795 + ArtUnc_60: 0.0003414476538073182 + ArtUnc_61: 2.537222981374834e-05 + ArtUnc_62: -0.00032734669173514557 + ArtUnc_63: -0.00028632491468644916 + ArtUnc_64: -0.0006345923426677774 + ArtUnc_65: 0.0005386105751243396 + ArtUnc_66: -0.0011505629179389587 + ArtUnc_67: 0.0004560945531371202 + ArtUnc_68: 0.003014846949041353 + ArtUnc_69: 0.0020738004664223268 + ArtUnc_70: -0.00037625735442800627 + ArtUnc_71: 0.0004925221551271979 + ArtUnc_72: -0.00026471775867246614 + ArtUnc_73: 0.0002693477913324866 + ArtUnc_74: -0.00026473689865880184 + ArtUnc_75: -3.595203059976877e-05 + ArtUnc_76: 1.2460882397148897e-06 + ArtUnc_77: 4.642367619193105e-05 + ArtUnc_78: 3.913418086393189e-05 + ArtUnc_79: -6.51698698504578e-05 + ArtUnc_80: 4.185286658640881e-07 + ArtUnc_81: 1.355320199362528e-06 + ArtUnc_82: -1.3444472389898236e-09 + ArtUnc_83: -1.3574624362073272e-06 + ArtUnc_84: -3.5302943668521003e-06 + ArtUnc_85: 1.2092535550324354e-06 + ArtUnc_86: -2.392580188600286e-06 + ArtUnc_87: -2.9287647151749426e-06 + ArtUnc_88: -7.154831036187616e-06 + ArtUnc_89: -4.048195228634956e-06 + ArtUnc_90: 2.553863669683389e-06 + ArtUnc_91: -6.988055593524728e-07 + ArtUnc_92: -7.503800177848302e-08 + ArtUnc_93: -1.0256192208288061e-05 + ArtUnc_94: 3.073421133961953e-06 + ArtUnc_95: -2.478932443424516e-06 + ArtUnc_96: -9.190338720973543e-08 - stat: 0 Uncorr: 0.04820000000000001 RCES: 0.027691938231189237 @@ -3456,102 +3456,102 @@ bins: ModelRW_2: 0.08963709822389389 JES_1: 0.16880772703285832 JES_2: 0.16880772703285832 - ArtUnc_1: -6.164644459496333e-08 + ArtUnc_1: -6.164644459496338e-08 ArtUnc_2: 3.922489697003599e-06 - ArtUnc_3: 3.676532891100394e-06 - ArtUnc_4: 5.56487344764471e-07 - ArtUnc_5: 6.597432172993162e-07 - ArtUnc_6: -4.992344983074685e-07 - ArtUnc_7: 1.1475159680928933e-07 - ArtUnc_8: 9.85268949055519e-05 - ArtUnc_9: 4.4079656946630887e-07 - ArtUnc_10: 0.00017923445289304494 - ArtUnc_11: 7.616657232720363e-05 - ArtUnc_12: -4.4728975211691914e-05 - ArtUnc_13: -4.079778614206482e-05 - ArtUnc_14: 1.1653214759906138e-05 - ArtUnc_15: 2.9468682734544436e-05 - ArtUnc_16: -4.060088063748322e-05 - ArtUnc_17: -4.898611122436428e-05 - ArtUnc_18: 2.5000894892529564e-05 - ArtUnc_19: -1.889207092898967e-05 - ArtUnc_20: 3.208941532949087e-05 - ArtUnc_21: -3.183327131448302e-05 - ArtUnc_22: 1.902572815062949e-05 - ArtUnc_23: -7.026400508550222e-06 - ArtUnc_24: 5.427374187195018e-07 - ArtUnc_25: -0.0018049794383780081 - ArtUnc_26: 0.0011801587967397737 - ArtUnc_27: 0.00957849418161535 - ArtUnc_28: -0.0008501682735662729 - ArtUnc_29: -0.00090065037085261 - ArtUnc_30: -0.004665811728323799 - ArtUnc_31: -0.00010043484313471119 - ArtUnc_32: 0.0020131234135996206 - ArtUnc_33: 0.0006497633601130008 - ArtUnc_34: -0.0008514052295296936 - ArtUnc_35: -0.0011510551850159917 - ArtUnc_36: -5.32719746779371e-05 - ArtUnc_37: -0.00018763487850364906 - ArtUnc_38: -0.00037460143753174647 - ArtUnc_39: 0.00020843676093660634 - ArtUnc_40: 3.0350509533323387e-05 - ArtUnc_41: 0.1026626014015879 - ArtUnc_42: -0.09840882032617751 - ArtUnc_43: -0.06871362568789526 - ArtUnc_44: -0.00931737469487431 - ArtUnc_45: -0.0351818352211152 - ArtUnc_46: -0.029312409153198712 - ArtUnc_47: -0.013643854055219985 - ArtUnc_48: 0.033826594367277786 - ArtUnc_49: -0.004633542472206927 - ArtUnc_50: -0.02025841501175573 - ArtUnc_51: -0.02252368836875011 - ArtUnc_52: 0.009567457581226341 - ArtUnc_53: 0.009843605589854273 - ArtUnc_54: 0.0015170613413585646 - ArtUnc_55: 0.004771693908959932 - ArtUnc_56: -0.002384075134639636 - ArtUnc_57: -0.06258888615097233 - ArtUnc_58: 0.26121858121934344 - ArtUnc_59: -0.10808008735278968 - ArtUnc_60: -0.023049073521630832 - ArtUnc_61: 0.14287717897481966 - ArtUnc_62: -0.04647436774649933 - ArtUnc_63: -0.05445480327220323 - ArtUnc_64: 0.020264268067554825 - ArtUnc_65: 0.00208377706928161 - ArtUnc_66: 0.06705184198137588 - ArtUnc_67: -0.021510300671448226 - ArtUnc_68: -0.0835583452065412 - ArtUnc_69: -0.042482935947782685 - ArtUnc_70: 0.009286362438022399 - ArtUnc_71: 0.005984455381454777 - ArtUnc_72: -0.0015854931928308486 - ArtUnc_73: 0.0016273501516147152 - ArtUnc_74: 0.001251898970055396 - ArtUnc_75: 5.0258160043944296e-05 - ArtUnc_76: -5.509821488613624e-05 - ArtUnc_77: -0.00014416711829247207 - ArtUnc_78: 0.00010278516747366994 - ArtUnc_79: 0.0006061054586887364 - ArtUnc_80: 6.343135642241622e-05 - ArtUnc_81: 7.291486148517893e-05 - ArtUnc_82: 3.946880946781509e-07 - ArtUnc_83: 0.00013469409234429693 - ArtUnc_84: -0.00010207049142692077 - ArtUnc_85: -0.00010050144195657886 - ArtUnc_86: -0.000207775124867491 - ArtUnc_87: 0.00011443435620056058 - ArtUnc_88: 3.8873770841941044e-05 - ArtUnc_89: -0.0002676195551706335 - ArtUnc_90: -8.669785835344134e-05 - ArtUnc_91: 8.024371620582725e-06 - ArtUnc_92: -0.00011679913164205565 - ArtUnc_93: -7.445854981991481e-05 - ArtUnc_94: 4.009384033284143e-06 - ArtUnc_95: -2.328595519510194e-05 - ArtUnc_96: -2.1333954408291226e-05 + ArtUnc_3: 3.676532891100279e-06 + ArtUnc_4: 5.564873447651579e-07 + ArtUnc_5: 6.59743217294973e-07 + ArtUnc_6: 4.992344983248174e-07 + ArtUnc_7: -1.1475159678064252e-07 + ArtUnc_8: -9.852689490555703e-05 + ArtUnc_9: -4.407965694973057e-07 + ArtUnc_10: 0.0001792344528930398 + ArtUnc_11: 7.616657232721964e-05 + ArtUnc_12: -4.4728975211666266e-05 + ArtUnc_13: -4.0797786142070816e-05 + ArtUnc_14: 1.1653214759857445e-05 + ArtUnc_15: 2.9468682734613832e-05 + ArtUnc_16: -4.060088063743114e-05 + ArtUnc_17: 4.8986111224387076e-05 + ArtUnc_18: -2.500089489249813e-05 + ArtUnc_19: 1.8892070928952376e-05 + ArtUnc_20: -3.2089415329472654e-05 + ArtUnc_21: -3.1833271314447314e-05 + ArtUnc_22: 1.9025728150568153e-05 + ArtUnc_23: 7.026400508713268e-06 + ArtUnc_24: -5.427374187542625e-07 + ArtUnc_25: 0.00180497943837816 + ArtUnc_26: -0.0011801587967399964 + ArtUnc_27: -0.009578494181615448 + ArtUnc_28: 0.0008501682735662387 + ArtUnc_29: 0.0009006503708527966 + ArtUnc_30: -0.004665811728323744 + ArtUnc_31: 0.00010043484313485591 + ArtUnc_32: 0.002013123413600144 + ArtUnc_33: 0.0006497633601117199 + ArtUnc_34: 0.0008514052295296975 + ArtUnc_35: 0.001151055185015836 + ArtUnc_36: -5.32719746780574e-05 + ArtUnc_37: -0.00018763487850387555 + ArtUnc_38: 0.000374601437531586 + ArtUnc_39: 0.00020843676093705043 + ArtUnc_40: 3.0350509533418895e-05 + ArtUnc_41: 0.10266260140158713 + ArtUnc_42: -0.09840882032617902 + ArtUnc_43: -0.0687136256878946 + ArtUnc_44: -0.009317374694874054 + ArtUnc_45: -0.03518183522111571 + ArtUnc_46: -0.029312409153198906 + ArtUnc_47: 0.013643854055219597 + ArtUnc_48: -0.03382659436727794 + ArtUnc_49: 0.004633542472207272 + ArtUnc_50: 0.02025841501175562 + ArtUnc_51: -0.0023840751346399375 + ArtUnc_52: 0.004771693908960994 + ArtUnc_53: 0.022523688368749763 + ArtUnc_54: -0.009567457581226015 + ArtUnc_55: -0.009843605589854792 + ArtUnc_56: 0.001517061341357972 + ArtUnc_57: 0.06258888615097814 + ArtUnc_58: -0.26121858121934405 + ArtUnc_59: 0.10808008735278782 + ArtUnc_60: 0.023049073521630416 + ArtUnc_61: -0.14287717897482147 + ArtUnc_62: 0.04647436774649283 + ArtUnc_63: 0.05445480327220324 + ArtUnc_64: 0.020264268067555387 + ArtUnc_65: -0.002083777069281772 + ArtUnc_66: 0.06705184198137516 + ArtUnc_67: -0.021510300671449198 + ArtUnc_68: -0.08355834520654506 + ArtUnc_69: -0.04248293594777888 + ArtUnc_70: 0.0015854931928314551 + ArtUnc_71: -0.009286362438022215 + ArtUnc_72: 0.005984455381454388 + ArtUnc_73: 0.0016273501516143546 + ArtUnc_74: -0.001251898970055017 + ArtUnc_75: -5.0258160043893535e-05 + ArtUnc_76: -5.509821488616488e-05 + ArtUnc_77: -0.0001441671182925708 + ArtUnc_78: -0.00010278516747378758 + ArtUnc_79: 0.0006061054586888791 + ArtUnc_80: -6.34313564224788e-05 + ArtUnc_81: 7.291486148520376e-05 + ArtUnc_82: 3.946880946781465e-07 + ArtUnc_83: 0.0001346940923443161 + ArtUnc_84: -0.00010207049142693918 + ArtUnc_85: -0.00010050144195659215 + ArtUnc_86: 0.0001167991316420489 + ArtUnc_87: 7.445854981989877e-05 + ArtUnc_88: -0.00020777512486746868 + ArtUnc_89: -0.00011443435620054819 + ArtUnc_90: 3.887377084194982e-05 + ArtUnc_91: 2.3285955195096784e-05 + ArtUnc_92: 4.009384033282361e-06 + ArtUnc_93: -0.0002676195551706283 + ArtUnc_94: 8.669785835343736e-05 + ArtUnc_95: 8.024371620577143e-06 + ArtUnc_96: -2.1333954408291494e-05 - stat: 0 Uncorr: 0.00838 RCES: 0.010901410556437181 @@ -3567,102 +3567,102 @@ bins: ModelRW_2: 0.03276831818967828 JES_1: 0.026801249106991262 JES_2: 0.026801249106991262 - ArtUnc_1: -2.817126819950767e-08 - ArtUnc_2: 4.4684049988513985e-07 - ArtUnc_3: 6.06566938162903e-07 - ArtUnc_4: 2.2074680006429258e-07 - ArtUnc_5: -2.7226297565523305e-08 - ArtUnc_6: -1.0502030775142442e-08 - ArtUnc_7: -6.247091275967356e-09 - ArtUnc_8: 1.3352960960346633e-05 - ArtUnc_9: 5.195880521860876e-08 - ArtUnc_10: 2.174311254461487e-05 - ArtUnc_11: 1.438428343348627e-05 - ArtUnc_12: -6.488154730194581e-06 - ArtUnc_13: -1.2077849621578791e-05 - ArtUnc_14: -9.851969940031306e-07 - ArtUnc_15: -5.508344773231738e-06 - ArtUnc_16: -8.576868897549714e-07 - ArtUnc_17: -1.7036429902542261e-06 - ArtUnc_18: -2.257652907611229e-07 - ArtUnc_19: -1.2942610814162311e-06 - ArtUnc_20: 5.002398679522411e-06 - ArtUnc_21: -3.825337628274403e-06 - ArtUnc_22: 1.7604760362986067e-06 - ArtUnc_23: -6.148453535389899e-07 - ArtUnc_24: 8.647766601743679e-08 - ArtUnc_25: -0.00021897760157160368 - ArtUnc_26: 0.0001041769653105037 - ArtUnc_27: 0.0012450843536182547 - ArtUnc_28: -0.00017348975365976 - ArtUnc_29: -0.00015219103957117347 - ArtUnc_30: -0.0007465051590979212 - ArtUnc_31: -2.0704047750258446e-05 - ArtUnc_32: 0.0004343764298589348 - ArtUnc_33: 0.00012404908013743279 - ArtUnc_34: -0.0002862893515867421 - ArtUnc_35: -0.0004963590614518438 - ArtUnc_36: 0.00020282456223151047 - ArtUnc_37: 3.7094347069720885e-05 - ArtUnc_38: 4.106182778419227e-05 - ArtUnc_39: -6.799893174138268e-06 - ArtUnc_40: -1.4954824069585455e-06 - ArtUnc_41: 0.0008081930040477415 - ArtUnc_42: 0.002108683928137042 - ArtUnc_43: 0.00035821304071891865 - ArtUnc_44: -0.0005399654934629002 - ArtUnc_45: 0.001316493409075432 - ArtUnc_46: 0.00020101437821280166 - ArtUnc_47: -0.0006350875907169873 - ArtUnc_48: -0.00047593825956509703 - ArtUnc_49: 0.000602376009215324 - ArtUnc_50: 0.0009495179427234354 - ArtUnc_51: 0.0009883270985556625 - ArtUnc_52: -0.00035012232252778645 - ArtUnc_53: -0.0002381219447796239 - ArtUnc_54: -4.1236601124929335e-06 - ArtUnc_55: -7.65822539999393e-05 - ArtUnc_56: 6.923725304543144e-05 - ArtUnc_57: 0.020661271954792452 - ArtUnc_58: -0.03012617915198426 - ArtUnc_59: -0.0463298301030496 - ArtUnc_60: -0.017025874165601154 - ArtUnc_61: 0.008563593972698479 - ArtUnc_62: 0.012710627449859669 - ArtUnc_63: -0.004931348879742483 - ArtUnc_64: -0.01951139053213328 - ArtUnc_65: -0.01837312552201215 - ArtUnc_66: 0.0069553190698154 - ArtUnc_67: -0.0018328306634743797 - ArtUnc_68: -0.0002602993112448357 - ArtUnc_69: 0.0005484249307853947 - ArtUnc_70: -0.0007404022609204061 - ArtUnc_71: -0.00026912314771388465 - ArtUnc_72: 0.0001401840323889083 - ArtUnc_73: 0.07358766616309499 - ArtUnc_74: 0.08935275262643164 - ArtUnc_75: 0.012055679340105329 - ArtUnc_76: -0.0027011264050325317 - ArtUnc_77: 0.021387610532925833 - ArtUnc_78: -0.013447794794431011 - ArtUnc_79: -0.043068065429579305 - ArtUnc_80: -0.00025035287636590564 - ArtUnc_81: -0.0004905800793988719 - ArtUnc_82: -2.4339488351599227e-06 - ArtUnc_83: 0.00034942425994390856 - ArtUnc_84: 0.0003703550434100738 - ArtUnc_85: -0.00018102905776393803 - ArtUnc_86: 0.002600428908484644 - ArtUnc_87: 0.0023811496247881157 - ArtUnc_88: -0.0006337108544292563 - ArtUnc_89: 0.004616274227591015 - ArtUnc_90: -0.0008602099782936526 - ArtUnc_91: 0.000764431035628665 - ArtUnc_92: 0.0001438932534886056 - ArtUnc_93: 0.00039986682117638847 - ArtUnc_94: -3.0413386783335254e-05 - ArtUnc_95: 0.00015991026827909247 - ArtUnc_96: -1.4366715556161222e-06 + ArtUnc_1: -2.8171268199507716e-08 + ArtUnc_2: 4.468404998851395e-07 + ArtUnc_3: 6.065669381628866e-07 + ArtUnc_4: 2.2074680006442324e-07 + ArtUnc_5: -2.7226297566834386e-08 + ArtUnc_6: 1.0502030776599082e-08 + ArtUnc_7: 6.247091281933477e-09 + ArtUnc_8: -1.3352960960347073e-05 + ArtUnc_9: -5.195880523141805e-08 + ArtUnc_10: 2.1743112544614577e-05 + ArtUnc_11: 1.4384283433486833e-05 + ArtUnc_12: -6.488154730178476e-06 + ArtUnc_13: -1.2077849621583853e-05 + ArtUnc_14: -9.85196993995112e-07 + ArtUnc_15: -5.508344773231818e-06 + ArtUnc_16: -8.576868897751414e-07 + ArtUnc_17: 1.703642990227518e-06 + ArtUnc_18: 2.2576529075168028e-07 + ArtUnc_19: 1.2942610814684423e-06 + ArtUnc_20: -5.002398679556529e-06 + ArtUnc_21: -3.8253376283432924e-06 + ArtUnc_22: 1.7604760363566307e-06 + ArtUnc_23: 6.148453534215448e-07 + ArtUnc_24: -8.64776660808692e-08 + ArtUnc_25: 0.00021897760157158004 + ArtUnc_26: -0.00010417696531048306 + ArtUnc_27: -0.0012450843536182764 + ArtUnc_28: 0.0001734897536596235 + ArtUnc_29: 0.00015219103957132238 + ArtUnc_30: -0.0007465051590978547 + ArtUnc_31: 2.0704047749812754e-05 + ArtUnc_32: 0.0004343764298588992 + ArtUnc_33: 0.0001240490801374033 + ArtUnc_34: 0.0002862893515864769 + ArtUnc_35: 0.000496359061452056 + ArtUnc_36: 0.00020282456223106611 + ArtUnc_37: 3.709434707071476e-05 + ArtUnc_38: -4.1061827783918016e-05 + ArtUnc_39: -6.799893174198059e-06 + ArtUnc_40: -1.495482406591319e-06 + ArtUnc_41: 0.0008081930040474229 + ArtUnc_42: 0.0021086839281373873 + ArtUnc_43: 0.00035821304071842616 + ArtUnc_44: -0.0005399654934635183 + ArtUnc_45: 0.001316493409075148 + ArtUnc_46: 0.0002010143782132027 + ArtUnc_47: 0.0006350875907164479 + ArtUnc_48: 0.0004759382595654312 + ArtUnc_49: -0.0006023760092153574 + ArtUnc_50: -0.0009495179427241272 + ArtUnc_51: 6.923725304565707e-05 + ArtUnc_52: -7.658225400022983e-05 + ArtUnc_53: -0.0009883270985561877 + ArtUnc_54: 0.00035012232252784885 + ArtUnc_55: 0.00023812194477975467 + ArtUnc_56: -4.123660112127637e-06 + ArtUnc_57: -0.02066127195479415 + ArtUnc_58: 0.030126179151983706 + ArtUnc_59: 0.046329830103050265 + ArtUnc_60: 0.01702587416560102 + ArtUnc_61: -0.008563593972697963 + ArtUnc_62: -0.012710627449860143 + ArtUnc_63: 0.004931348879743005 + ArtUnc_64: -0.019511390532134486 + ArtUnc_65: 0.01837312552201359 + ArtUnc_66: 0.006955319069816964 + ArtUnc_67: -0.001832830663475033 + ArtUnc_68: -0.00026029931124660403 + ArtUnc_69: 0.000548424930784027 + ArtUnc_70: -0.00014018403238890204 + ArtUnc_71: 0.0007404022609201388 + ArtUnc_72: -0.0002691231477139737 + ArtUnc_73: 0.07358766616309388 + ArtUnc_74: -0.0893527526264328 + ArtUnc_75: -0.012055679340105704 + ArtUnc_76: -0.0027011264050323686 + ArtUnc_77: 0.021387610532927363 + ArtUnc_78: 0.013447794794430668 + ArtUnc_79: -0.04306806542957896 + ArtUnc_80: 0.0002503528763656325 + ArtUnc_81: -0.0004905800793986709 + ArtUnc_82: -2.433948835170254e-06 + ArtUnc_83: 0.00034942425994394585 + ArtUnc_84: 0.0003703550434099853 + ArtUnc_85: -0.00018102905776399447 + ArtUnc_86: -0.00014389325348863863 + ArtUnc_87: -0.0003998668211764174 + ArtUnc_88: 0.00260042890848475 + ArtUnc_89: -0.0023811496247879713 + ArtUnc_90: -0.0006337108544291929 + ArtUnc_91: -0.000159910268279095 + ArtUnc_92: -3.0413386783324703e-05 + ArtUnc_93: 0.004616274227591099 + ArtUnc_94: 0.0008602099782936573 + ArtUnc_95: 0.0007644310356287082 + ArtUnc_96: -1.4366715556144155e-06 - stat: 0 Uncorr: 0.0016500000000000002 RCES: 0.004619904240079009 @@ -3678,102 +3678,102 @@ bins: ModelRW_2: 0.008750446417183526 JES_1: 0.008618977990095462 JES_2: 0.008618977990095462 - ArtUnc_1: 6.041525253143828e-10 - ArtUnc_2: -7.457087380483391e-10 - ArtUnc_3: -1.4082834307512728e-10 - ArtUnc_4: 5.259751980809698e-10 - ArtUnc_5: -6.923695139523178e-10 - ArtUnc_6: 3.3208895331698243e-10 - ArtUnc_7: 8.073137294780598e-12 - ArtUnc_8: -1.2230927873465858e-07 - ArtUnc_9: -5.113647669890167e-10 - ArtUnc_10: -2.2446935066345123e-07 - ArtUnc_11: -1.4326065212866686e-07 - ArtUnc_12: 1.153026085468027e-08 - ArtUnc_13: 1.1174732880309481e-07 - ArtUnc_14: 2.4558207141038358e-08 - ArtUnc_15: 8.883175741719856e-10 - ArtUnc_16: 3.6467441648207014e-08 - ArtUnc_17: 8.236732097262847e-08 - ArtUnc_18: -5.197226792070373e-08 - ArtUnc_19: 3.841247467637868e-08 - ArtUnc_20: -6.425356531140175e-08 - ArtUnc_21: 6.155293697788874e-08 - ArtUnc_22: -2.951676174829013e-08 - ArtUnc_23: 5.562899998071879e-09 - ArtUnc_24: -7.151556924463854e-10 - ArtUnc_25: 1.608931748776258e-06 - ArtUnc_26: -1.8646694530908165e-06 - ArtUnc_27: -1.1274858886782248e-05 - ArtUnc_28: 6.938518411524558e-07 - ArtUnc_29: 4.5559441224943266e-07 - ArtUnc_30: 1.961726405134673e-06 - ArtUnc_31: -2.1287085839396652e-08 - ArtUnc_32: 4.881844799100779e-07 - ArtUnc_33: 2.1793478494002968e-08 - ArtUnc_34: -7.364259583222377e-07 - ArtUnc_35: -1.4923928499632316e-06 - ArtUnc_36: 7.430948147792464e-07 - ArtUnc_37: 1.8178644101091007e-07 - ArtUnc_38: 2.3100931027139345e-07 - ArtUnc_39: -2.047416229184488e-07 - ArtUnc_40: -7.423803500036187e-08 - ArtUnc_41: 0.0005268887524988114 - ArtUnc_42: -0.0005714659827221061 - ArtUnc_43: -0.00027022218346637445 - ArtUnc_44: 1.639807218947462e-05 - ArtUnc_45: -0.00017043659189344178 - ArtUnc_46: -4.9978593562796565e-05 - ArtUnc_47: 3.940253779989799e-05 - ArtUnc_48: 3.0242333060471106e-05 - ArtUnc_49: -2.5495449976636212e-05 - ArtUnc_50: -6.6918278221475645e-06 - ArtUnc_51: 4.833166067699923e-05 - ArtUnc_52: -2.4613900281051554e-05 - ArtUnc_53: -5.019518747024589e-05 - ArtUnc_54: -7.534173203401729e-06 - ArtUnc_55: -2.9103029027200832e-05 - ArtUnc_56: 1.4789803073690994e-05 - ArtUnc_57: 0.0009724406566382068 - ArtUnc_58: -0.0025805819255820058 - ArtUnc_59: -0.0003722812543555839 - ArtUnc_60: -0.00024486307773781673 - ArtUnc_61: -0.000750290877691974 - ArtUnc_62: 0.0006032959090819328 - ArtUnc_63: 0.00021837644109062756 - ArtUnc_64: -0.0006049467434411304 - ArtUnc_65: -0.000469840672415627 - ArtUnc_66: -0.00016047606982258245 - ArtUnc_67: 5.597628896179762e-05 - ArtUnc_68: 0.00021823897883524966 - ArtUnc_69: 1.100866729218056e-05 - ArtUnc_70: -1.7410499464597899e-06 - ArtUnc_71: 1.5512309295244594e-05 - ArtUnc_72: -9.332428840907835e-05 - ArtUnc_73: 0.0011714027120292337 - ArtUnc_74: 0.00027863115780019164 - ArtUnc_75: -0.000287000157299122 - ArtUnc_76: 0.0072247650818527 - ArtUnc_77: -0.0013220955446080014 - ArtUnc_78: -0.01613476439515327 - ArtUnc_79: 0.00381306711786311 - ArtUnc_80: 0.005064477730472728 - ArtUnc_81: 0.0034362312205621515 - ArtUnc_82: 2.2412802282072182e-05 - ArtUnc_83: 0.022201540076900495 - ArtUnc_84: -0.004456629085650692 - ArtUnc_85: -0.017428639534710202 - ArtUnc_86: -0.011385699670263552 - ArtUnc_87: 0.00778080219253493 - ArtUnc_88: 0.0018988296326871237 - ArtUnc_89: -0.008045285761312297 - ArtUnc_90: -0.0034782788311635794 - ArtUnc_91: 0.00022653556448832082 - ArtUnc_92: -0.02149648344381187 - ArtUnc_93: -0.013607990667775922 - ArtUnc_94: 0.0005860095065114094 - ArtUnc_95: -0.00395969577280809 - ArtUnc_96: -0.004254928877904954 + ArtUnc_1: 6.041525253143837e-10 + ArtUnc_2: -7.457087380483398e-10 + ArtUnc_3: -1.4082834307497503e-10 + ArtUnc_4: 5.259751980797566e-10 + ArtUnc_5: -6.923695139325593e-10 + ArtUnc_6: -3.3208895333728377e-10 + ArtUnc_7: -8.073137240863234e-12 + ArtUnc_8: 1.2230927873466213e-07 + ArtUnc_9: 5.113647670230508e-10 + ArtUnc_10: -2.244693506634476e-07 + ArtUnc_11: -1.432606521286891e-07 + ArtUnc_12: 1.1530260854438604e-08 + ArtUnc_13: 1.117473288031136e-07 + ArtUnc_14: 2.455820714133376e-08 + ArtUnc_15: 8.883175739142325e-10 + ArtUnc_16: 3.64674416477968e-08 + ArtUnc_17: -8.23673209728863e-08 + ArtUnc_18: 5.197226792066097e-08 + ArtUnc_19: -3.841247467568004e-08 + ArtUnc_20: 6.425356531113657e-08 + ArtUnc_21: 6.155293697544512e-08 + ArtUnc_22: -2.9516761746782553e-08 + ArtUnc_23: -5.562900001094921e-09 + ArtUnc_24: 7.151556918564961e-10 + ArtUnc_25: -1.6089317487759996e-06 + ArtUnc_26: 1.8646694530904163e-06 + ArtUnc_27: 1.1274858886782353e-05 + ArtUnc_28: -6.938518411540835e-07 + ArtUnc_29: -4.555944122477703e-07 + ArtUnc_30: 1.9617264051350774e-06 + ArtUnc_31: 2.1287085831880707e-08 + ArtUnc_32: 4.881844799069134e-07 + ArtUnc_33: 2.179347849928199e-08 + ArtUnc_34: 7.364259583162062e-07 + ArtUnc_35: 1.4923928499667925e-06 + ArtUnc_36: 7.430948147728629e-07 + ArtUnc_37: 1.8178644102041127e-07 + ArtUnc_38: -2.3100931026616919e-07 + ArtUnc_39: -2.047416229297779e-07 + ArtUnc_40: -7.4238034992303e-08 + ArtUnc_41: 0.0005268887524987921 + ArtUnc_42: -0.0005714659827220986 + ArtUnc_43: -0.00027022218346638225 + ArtUnc_44: 1.6398072189473574e-05 + ArtUnc_45: -0.00017043659189344853 + ArtUnc_46: -4.997859356279252e-05 + ArtUnc_47: -3.9402537799913584e-05 + ArtUnc_48: -3.0242333060468175e-05 + ArtUnc_49: 2.5495449976636246e-05 + ArtUnc_50: 6.691827822136524e-06 + ArtUnc_51: 1.4789803073696317e-05 + ArtUnc_52: -2.910302902721402e-05 + ArtUnc_53: -4.8331660677013445e-05 + ArtUnc_54: 2.46139002810582e-05 + ArtUnc_55: 5.0195187470255184e-05 + ArtUnc_56: -7.534173203397271e-06 + ArtUnc_57: -0.0009724406566382886 + ArtUnc_58: 0.002580581925581996 + ArtUnc_59: 0.0003722812543556141 + ArtUnc_60: 0.00024486307773779494 + ArtUnc_61: 0.0007502908776919723 + ArtUnc_62: -0.000603295909081876 + ArtUnc_63: -0.00021837644109062352 + ArtUnc_64: -0.0006049467434411995 + ArtUnc_65: 0.0004698406724156381 + ArtUnc_66: -0.00016047606982258857 + ArtUnc_67: 5.597628896170966e-05 + ArtUnc_68: 0.0002182389788351802 + ArtUnc_69: 1.1008667292203844e-05 + ArtUnc_70: 9.332428840909884e-05 + ArtUnc_71: 1.7410499463531618e-06 + ArtUnc_72: 1.5512309295234166e-05 + ArtUnc_73: 0.001171402712029326 + ArtUnc_74: -0.0002786311578004168 + ArtUnc_75: 0.00028700015729913036 + ArtUnc_76: 0.007224765081852715 + ArtUnc_77: -0.0013220955446067943 + ArtUnc_78: 0.01613476439515324 + ArtUnc_79: 0.0038130671178633353 + ArtUnc_80: -0.005064477730472428 + ArtUnc_81: 0.003436231220562271 + ArtUnc_82: 2.2412802282053842e-05 + ArtUnc_83: 0.022201540076900436 + ArtUnc_84: -0.0044566290856507575 + ArtUnc_85: -0.01742863953471023 + ArtUnc_86: 0.021496483443812036 + ArtUnc_87: 0.013607990667775918 + ArtUnc_88: -0.011385699670263238 + ArtUnc_89: -0.007780802192535263 + ArtUnc_90: 0.001898829632687188 + ArtUnc_91: 0.003959695772808286 + ArtUnc_92: 0.0005860095065112893 + ArtUnc_93: -0.008045285761312283 + ArtUnc_94: 0.0034782788311635373 + ArtUnc_95: 0.00022653556448828135 + ArtUnc_96: -0.004254928877905018 - stat: 0 Uncorr: 1.16 RCES: 7.72627924941883 @@ -3790,101 +3790,101 @@ bins: JES_1: 3.1046284511999174 JES_2: 3.1046284511999174 ArtUnc_1: 0.862390513360958 - ArtUnc_2: -0.0585223341972758 - ArtUnc_3: -0.015617481349614281 - ArtUnc_4: -0.02865956582028331 - ArtUnc_5: 0.024560404389025382 - ArtUnc_6: 0.01369754229357918 - ArtUnc_7: -0.03126673580103048 - ArtUnc_8: 8.052766469309573 - ArtUnc_9: 0.0038695705497448643 - ArtUnc_10: -5.440340482204737 - ArtUnc_11: 0.5063656603501598 - ArtUnc_12: 0.13134908148401084 - ArtUnc_13: 1.5029665042315419 - ArtUnc_14: -0.028689992197552618 - ArtUnc_15: 0.18002815502716843 - ArtUnc_16: 0.014250407028977898 - ArtUnc_17: -0.04851242069981796 - ArtUnc_18: 0.29940436496149647 - ArtUnc_19: -0.07767460929124594 - ArtUnc_20: -0.2717761425707225 - ArtUnc_21: 0.04717710535467236 - ArtUnc_22: 0.03848277959299325 - ArtUnc_23: -0.014740246882677633 - ArtUnc_24: -0.002989650130971767 - ArtUnc_25: 0.04036369541606758 - ArtUnc_26: 0.09302467152124247 - ArtUnc_27: 0.014597160954111526 - ArtUnc_28: 0.03227102341406198 - ArtUnc_29: -0.011743211789941789 - ArtUnc_30: -0.020758408969679874 - ArtUnc_31: -0.011241230788636574 - ArtUnc_32: 0.007682375996861734 - ArtUnc_33: 0.006482760235230509 - ArtUnc_34: -0.008580794784232671 - ArtUnc_35: -0.004056435036263777 - ArtUnc_36: 0.0008921238755738536 - ArtUnc_37: -0.0021935306004609665 - ArtUnc_38: -0.0009761650792591071 - ArtUnc_39: -0.0005096127087808091 - ArtUnc_40: -0.0005619835756197858 - ArtUnc_41: -0.0031631785001944813 - ArtUnc_42: -0.002833615200537957 - ArtUnc_43: 0.0007371773212970561 - ArtUnc_44: 0.0013088878222306671 - ArtUnc_45: -0.0012901354777218276 - ArtUnc_46: 0.000796063416044034 - ArtUnc_47: 0.0016605377633478315 - ArtUnc_48: -0.0004132208519303545 - ArtUnc_49: -0.0007064806487292458 - ArtUnc_50: -0.0008218480678580298 - ArtUnc_51: -0.0007009699714016416 - ArtUnc_52: 0.00017757524658647763 - ArtUnc_53: -9.061136987680712e-06 - ArtUnc_54: -0.00013438631943932464 - ArtUnc_55: 7.824198600373515e-05 - ArtUnc_56: -0.0001362899566796528 - ArtUnc_57: -9.964845519297443e-06 - ArtUnc_58: 1.122877378876763e-05 - ArtUnc_59: 1.3513642131207025e-05 - ArtUnc_60: 4.997737295236754e-06 - ArtUnc_61: -1.0751982835758077e-05 - ArtUnc_62: -6.136271969468173e-06 - ArtUnc_63: 7.0241953046404945e-06 - ArtUnc_64: 1.104379494273857e-05 - ArtUnc_65: 6.8579771992259895e-06 - ArtUnc_66: 1.5782301702338166e-06 - ArtUnc_67: 1.8570889589515615e-07 - ArtUnc_68: 7.24148349806898e-06 - ArtUnc_69: 9.093223014310866e-06 - ArtUnc_70: -4.916213171292747e-07 - ArtUnc_71: -5.360034925647852e-07 - ArtUnc_72: 2.251432226795964e-07 - ArtUnc_73: 1.5427469524348637e-06 - ArtUnc_74: 2.3515148923935714e-06 - ArtUnc_75: 4.3175359448502795e-07 - ArtUnc_76: 1.127293496046763e-07 - ArtUnc_77: 7.517926745289768e-07 - ArtUnc_78: -5.095707024872688e-07 - ArtUnc_79: -7.866491425713704e-07 - ArtUnc_80: -9.43488938444306e-08 - ArtUnc_81: -1.1980382405504978e-08 - ArtUnc_82: -4.258541093895629e-10 - ArtUnc_83: -4.412159234028068e-08 - ArtUnc_84: -2.5736692776210896e-08 - ArtUnc_85: 4.2710197772579343e-08 - ArtUnc_86: 7.8015829568531e-09 - ArtUnc_87: 5.735037683417709e-10 - ArtUnc_88: -9.147156941503064e-08 - ArtUnc_89: -1.3073151315178207e-07 - ArtUnc_90: -8.733441907194588e-08 - ArtUnc_91: 2.3566459633314016e-08 - ArtUnc_92: -8.348804058711307e-09 - ArtUnc_93: -1.7661293696835112e-08 - ArtUnc_94: 4.852624460880265e-09 - ArtUnc_95: -2.0837586511281873e-08 - ArtUnc_96: -8.364543817190377e-09 + ArtUnc_2: -0.058522334197274935 + ArtUnc_3: -0.015617481349614557 + ArtUnc_4: -0.02865956582028775 + ArtUnc_5: 0.024560404389031128 + ArtUnc_6: -0.013697542293582938 + ArtUnc_7: 0.0312667358010939 + ArtUnc_8: -8.052766469309553 + ArtUnc_9: -0.003869570549781359 + ArtUnc_10: -5.440340482204765 + ArtUnc_11: 0.5063656603501565 + ArtUnc_12: 0.13134908148404048 + ArtUnc_13: 1.5029665042315448 + ArtUnc_14: -0.02868999219755132 + ArtUnc_15: 0.1800281550271725 + ArtUnc_16: 0.01425040702897497 + ArtUnc_17: 0.04851242069982236 + ArtUnc_18: -0.2994043649614981 + ArtUnc_19: 0.07767460929125639 + ArtUnc_20: 0.2717761425707195 + ArtUnc_21: 0.047177105354672885 + ArtUnc_22: 0.03848277959299294 + ArtUnc_23: 0.014740246882677685 + ArtUnc_24: 0.0029896501309716835 + ArtUnc_25: -0.04036369541606761 + ArtUnc_26: -0.09302467152124266 + ArtUnc_27: -0.014597160954110492 + ArtUnc_28: -0.032271023414061836 + ArtUnc_29: 0.011743211789942889 + ArtUnc_30: -0.02075840896967938 + ArtUnc_31: 0.011241230788636522 + ArtUnc_32: 0.007682375996866057 + ArtUnc_33: 0.006482760235225154 + ArtUnc_34: 0.008580794784233063 + ArtUnc_35: 0.004056435036263157 + ArtUnc_36: 0.0008921238755738741 + ArtUnc_37: -0.0021935306004609617 + ArtUnc_38: 0.0009761650792590337 + ArtUnc_39: -0.0005096127087808053 + ArtUnc_40: -0.0005619835756197868 + ArtUnc_41: -0.0031631785001945928 + ArtUnc_42: -0.002833615200537926 + ArtUnc_43: 0.000737177321297061 + ArtUnc_44: 0.001308887822230703 + ArtUnc_45: -0.0012901354777218469 + ArtUnc_46: 0.0007960634160440661 + ArtUnc_47: -0.0016605377633478362 + ArtUnc_48: 0.00041322085193029644 + ArtUnc_49: 0.0007064806487292607 + ArtUnc_50: 0.0008218480678580217 + ArtUnc_51: -0.00013628995667965135 + ArtUnc_52: 7.824198600373727e-05 + ArtUnc_53: 0.0007009699714016272 + ArtUnc_54: -0.00017757524658647804 + ArtUnc_55: 9.061136987685657e-06 + ArtUnc_56: -0.00013438631943932383 + ArtUnc_57: 9.964845519297726e-06 + ArtUnc_58: -1.1228773788767014e-05 + ArtUnc_59: -1.3513642131206547e-05 + ArtUnc_60: -4.997737295236594e-06 + ArtUnc_61: 1.0751982835757547e-05 + ArtUnc_62: 6.1362719694684646e-06 + ArtUnc_63: -7.024195304640522e-06 + ArtUnc_64: 1.104379494273848e-05 + ArtUnc_65: -6.857977199225964e-06 + ArtUnc_66: 1.578230170233843e-06 + ArtUnc_67: 1.8570889589523063e-07 + ArtUnc_68: 7.241483498069554e-06 + ArtUnc_69: 9.093223014310423e-06 + ArtUnc_70: -2.2514322267953912e-07 + ArtUnc_71: 4.916213171292535e-07 + ArtUnc_72: -5.360034925647657e-07 + ArtUnc_73: 1.5427469524348488e-06 + ArtUnc_74: -2.3515148923936133e-06 + ArtUnc_75: -4.317535944850396e-07 + ArtUnc_76: 1.1272934960468206e-07 + ArtUnc_77: 7.517926745290272e-07 + ArtUnc_78: 5.095707024872422e-07 + ArtUnc_79: -7.8664914257136e-07 + ArtUnc_80: 9.434889384442472e-08 + ArtUnc_81: -1.1980382405502867e-08 + ArtUnc_82: -4.258541093895767e-10 + ArtUnc_83: -4.4121592340278306e-08 + ArtUnc_84: -2.5736692776212392e-08 + ArtUnc_85: 4.2710197772578146e-08 + ArtUnc_86: 8.348804058710194e-09 + ArtUnc_87: 1.766129369683349e-08 + ArtUnc_88: 7.80158295685783e-09 + ArtUnc_89: -5.735037683417001e-10 + ArtUnc_90: -9.147156941503087e-08 + ArtUnc_91: 2.083758651128185e-08 + ArtUnc_92: 4.8526244608792894e-09 + ArtUnc_93: -1.3073151315177993e-07 + ArtUnc_94: 8.733441907194496e-08 + ArtUnc_95: 2.3566459633314595e-08 + ArtUnc_96: -8.364543817190556e-09 - stat: 0 Uncorr: 0.9390000000000001 RCES: 1.281820986126768 @@ -3900,102 +3900,102 @@ bins: ModelRW_2: 1.7462496936148622 JES_1: 0.6334162292975292 JES_2: 0.6334162292975292 - ArtUnc_1: 0.13203839691016306 - ArtUnc_2: -0.0018981155812128453 - ArtUnc_3: 0.030449734167063695 - ArtUnc_4: 0.016599559452784796 - ArtUnc_5: -0.007039446793514841 - ArtUnc_6: 0.001674499070408551 - ArtUnc_7: -0.00015496188070864445 - ArtUnc_8: -0.04741118864007381 - ArtUnc_9: -0.0007186835313007978 - ArtUnc_10: -0.43052640155181093 - ArtUnc_11: -0.3402840139397078 - ArtUnc_12: 0.39895212060858115 - ArtUnc_13: 0.09101270589019789 - ArtUnc_14: -0.04546627440151189 - ArtUnc_15: 0.009692340009631114 - ArtUnc_16: 0.033194936534638134 - ArtUnc_17: -0.05060998404362767 - ArtUnc_18: 0.06042621545255223 - ArtUnc_19: -0.0421258089941154 - ArtUnc_20: -0.015698438313400037 - ArtUnc_21: -0.02794838949429772 - ArtUnc_22: 0.037847574133300005 - ArtUnc_23: -0.021509993525688612 - ArtUnc_24: 0.0004039371438069027 - ArtUnc_25: -3.271928974855699 - ArtUnc_26: -1.3315714679588317 - ArtUnc_27: -0.38737893889621744 - ArtUnc_28: -0.6847540037957475 - ArtUnc_29: -0.02089315840519039 - ArtUnc_30: 0.24155149523280106 - ArtUnc_31: 0.05080766078860316 - ArtUnc_32: -0.08409477654657979 - ArtUnc_33: -0.056203225074044176 - ArtUnc_34: 0.0816718202411427 - ArtUnc_35: 0.08773620671065417 - ArtUnc_36: -0.03706189225462979 - ArtUnc_37: 0.0024416941282670228 - ArtUnc_38: -0.005311259237549454 - ArtUnc_39: 0.004140830387009792 - ArtUnc_40: 0.0023273358670159654 - ArtUnc_41: 0.016608369052247947 - ArtUnc_42: 0.017377037665656576 - ArtUnc_43: -0.00747387858271836 - ArtUnc_44: -0.011366997835019018 - ArtUnc_45: 0.012081466399688648 - ArtUnc_46: -0.006010521471543163 - ArtUnc_47: -0.014787560023833005 - ArtUnc_48: 0.00471112823989923 - ArtUnc_49: 0.007430677269866008 - ArtUnc_50: 0.0068079799094667255 - ArtUnc_51: 0.007292737341519148 - ArtUnc_52: -0.0021796124008489014 - ArtUnc_53: -0.0010621839197682802 - ArtUnc_54: 0.00038932020161367266 - ArtUnc_55: -0.00013504142134225413 - ArtUnc_56: 0.0006050043502575571 - ArtUnc_57: -2.8675619155665895e-06 - ArtUnc_58: 0.00011801018194305257 - ArtUnc_59: -0.00015106725253573102 - ArtUnc_60: -5.0107640597455927e-05 - ArtUnc_61: 9.86699971619997e-06 - ArtUnc_62: 5.093667125677953e-05 - ArtUnc_63: -1.3994054984177e-06 - ArtUnc_64: -7.893786420285647e-05 - ArtUnc_65: -6.916046599340792e-05 - ArtUnc_66: 4.153359855592597e-06 - ArtUnc_67: -3.774018839093155e-06 - ArtUnc_68: -4.220146094319829e-06 - ArtUnc_69: -5.492019682321761e-06 - ArtUnc_70: -6.1693509047642875e-06 - ArtUnc_71: -1.923963939951251e-06 - ArtUnc_72: 4.037667501783322e-06 - ArtUnc_73: -2.4791489574757286e-06 - ArtUnc_74: -1.4911766742090438e-05 - ArtUnc_75: -2.4181351515255923e-06 - ArtUnc_76: -4.5954891167815134e-07 - ArtUnc_77: -4.506827325797678e-06 - ArtUnc_78: 3.1715976843935505e-06 - ArtUnc_79: 7.267656447245819e-06 - ArtUnc_80: -8.869255228243919e-07 - ArtUnc_81: -3.4742103213119546e-07 - ArtUnc_82: -3.2867253404633533e-09 - ArtUnc_83: 4.799206644697365e-07 - ArtUnc_84: 4.956056692359648e-07 - ArtUnc_85: -3.057175107316412e-07 - ArtUnc_86: -3.941215089842415e-07 - ArtUnc_87: 4.0547287225579874e-07 - ArtUnc_88: -1.3450800291205406e-08 - ArtUnc_89: 3.038985099760333e-07 - ArtUnc_90: 2.603149510967373e-07 - ArtUnc_91: 2.5716364133559936e-07 - ArtUnc_92: 6.513106602556618e-08 - ArtUnc_93: 1.2852660797314178e-07 - ArtUnc_94: -1.941848074855664e-08 - ArtUnc_95: 7.577235197068728e-08 - ArtUnc_96: -1.791599555890439e-09 + ArtUnc_1: 0.1320383969101628 + ArtUnc_2: -0.0018981155812127922 + ArtUnc_3: 0.030449734167063938 + ArtUnc_4: 0.016599559452785167 + ArtUnc_5: -0.007039446793516058 + ArtUnc_6: -0.0016744990704085601 + ArtUnc_7: 0.00015496188070738973 + ArtUnc_8: 0.04741118864007513 + ArtUnc_9: 0.0007186835312962168 + ArtUnc_10: -0.4305264015518117 + ArtUnc_11: -0.3402840139397071 + ArtUnc_12: 0.3989521206085828 + ArtUnc_13: 0.09101270589019123 + ArtUnc_14: -0.0454662744015132 + ArtUnc_15: 0.009692340009628061 + ArtUnc_16: 0.03319493653463854 + ArtUnc_17: 0.05060998404362843 + ArtUnc_18: -0.06042621545255102 + ArtUnc_19: 0.04212580899411449 + ArtUnc_20: 0.015698438313396287 + ArtUnc_21: -0.027948389494300365 + ArtUnc_22: 0.03784757413331094 + ArtUnc_23: 0.021509993525674447 + ArtUnc_24: -0.0004039371438018868 + ArtUnc_25: 3.2719289748556997 + ArtUnc_26: 1.3315714679588329 + ArtUnc_27: 0.3873789388962019 + ArtUnc_28: 0.6847540037957462 + ArtUnc_29: 0.020893158405177158 + ArtUnc_30: 0.24155149523280334 + ArtUnc_31: -0.05080766078860241 + ArtUnc_32: -0.08409477654661683 + ArtUnc_33: -0.056203225073985175 + ArtUnc_34: -0.08167182024114937 + ArtUnc_35: -0.08773620671064794 + ArtUnc_36: -0.037061892254628304 + ArtUnc_37: 0.0024416941282667287 + ArtUnc_38: 0.005311259237549614 + ArtUnc_39: 0.004140830387009761 + ArtUnc_40: 0.0023273358670159597 + ArtUnc_41: 0.016608369052248613 + ArtUnc_42: 0.017377037665656427 + ArtUnc_43: -0.007473878582718413 + ArtUnc_44: -0.01136699783501941 + ArtUnc_45: 0.012081466399688854 + ArtUnc_46: -0.006010521471543492 + ArtUnc_47: 0.014787560023833185 + ArtUnc_48: -0.004711128239898752 + ArtUnc_49: -0.007430677269866188 + ArtUnc_50: -0.006807979909466713 + ArtUnc_51: 0.0006050043502575601 + ArtUnc_52: -0.0001350414213422827 + ArtUnc_53: -0.0072927373415190835 + ArtUnc_54: 0.0021796124008489058 + ArtUnc_55: 0.0010621839197683008 + ArtUnc_56: 0.00038932020161372015 + ArtUnc_57: 2.8675619155647794e-06 + ArtUnc_58: -0.00011801018194304885 + ArtUnc_59: 0.00015106725253573715 + ArtUnc_60: 5.010764059745741e-05 + ArtUnc_61: -9.866999716198439e-06 + ArtUnc_62: -5.093667125678123e-05 + ArtUnc_63: 1.3994054984194227e-06 + ArtUnc_64: -7.893786420285958e-05 + ArtUnc_65: 6.916046599341139e-05 + ArtUnc_66: 4.153359855595592e-06 + ArtUnc_67: -3.7740188390941575e-06 + ArtUnc_68: -4.220146094322869e-06 + ArtUnc_69: -5.492019682323398e-06 + ArtUnc_70: -4.037667501783616e-06 + ArtUnc_71: 6.169350904763874e-06 + ArtUnc_72: -1.9239639399510934e-06 + ArtUnc_73: -2.479148957476188e-06 + ArtUnc_74: 1.4911766742091386e-05 + ArtUnc_75: 2.4181351515257655e-06 + ArtUnc_76: -4.5954891167824075e-07 + ArtUnc_77: -4.5068273257981715e-06 + ArtUnc_78: -3.171597684393666e-06 + ArtUnc_79: 7.267656447246022e-06 + ArtUnc_80: 8.86925522824323e-07 + ArtUnc_81: -3.4742103213120816e-07 + ArtUnc_82: -3.2867253404634625e-09 + ArtUnc_83: 4.799206644697428e-07 + ArtUnc_84: 4.956056692359477e-07 + ArtUnc_85: -3.0571751073164814e-07 + ArtUnc_86: -6.513106602556879e-08 + ArtUnc_87: -1.285266079731519e-07 + ArtUnc_88: -3.941215089842248e-07 + ArtUnc_89: -4.054728722557868e-07 + ArtUnc_90: -1.3450800291205652e-08 + ArtUnc_91: -7.577235197069439e-08 + ArtUnc_92: -1.9418480748555077e-08 + ArtUnc_93: 3.038985099760247e-07 + ArtUnc_94: -2.603149510967458e-07 + ArtUnc_95: 2.5716364133558877e-07 + ArtUnc_96: -1.7915995558900218e-09 - stat: 0 Uncorr: 0.267 RCES: 0.08066537965571104 @@ -4011,102 +4011,102 @@ bins: ModelRW_2: 0.6211438097976989 JES_1: 0.5779015933855001 JES_2: 0.5779015933855001 - ArtUnc_1: 0.009828482441487735 - ArtUnc_2: -0.004608717000644577 - ArtUnc_3: -0.002367722967671028 - ArtUnc_4: -0.0002992603290157714 - ArtUnc_5: -0.00012690827336530388 - ArtUnc_6: 6.221066045210017e-06 - ArtUnc_7: 8.451570832514642e-05 - ArtUnc_8: -0.027510575217467394 - ArtUnc_9: -1.5723655122747197e-05 - ArtUnc_10: 0.01782520377434654 - ArtUnc_11: -0.006729346020043541 - ArtUnc_12: 0.015601139436508949 - ArtUnc_13: -0.007047244784116721 - ArtUnc_14: -0.00655217351819557 - ArtUnc_15: -0.005325434628899753 - ArtUnc_16: 0.006491767310628188 - ArtUnc_17: 0.003418023898827354 - ArtUnc_18: -0.0016271913888615047 - ArtUnc_19: 0.0010176831113117685 - ArtUnc_20: -0.0012412268220375559 - ArtUnc_21: 0.0013910730652472807 - ArtUnc_22: -0.0009017674683387694 - ArtUnc_23: -4.58580457396342e-05 - ArtUnc_24: 0.0001413221668143694 - ArtUnc_25: -0.048844340697329666 - ArtUnc_26: -0.04181590905251658 - ArtUnc_27: -0.3258966386876538 - ArtUnc_28: 0.046280711933588965 - ArtUnc_29: 0.0308197731950588 - ArtUnc_30: 0.14587854716562434 - ArtUnc_31: 0.001639621949476087 - ArtUnc_32: -0.06785451207482246 - ArtUnc_33: -0.02266181334052346 - ArtUnc_34: 0.04182033033426069 - ArtUnc_35: 0.0690577377189733 - ArtUnc_36: -0.026864389685193148 - ArtUnc_37: -0.004292649218078493 - ArtUnc_38: -0.005080290696072506 - ArtUnc_39: 0.0008362842858754024 - ArtUnc_40: 0.0003095012144621889 - ArtUnc_41: -0.7052015856250874 - ArtUnc_42: -0.6327097492563725 - ArtUnc_43: 0.12172801961898731 - ArtUnc_44: 0.22099531757297722 - ArtUnc_45: -0.23647012932139075 - ArtUnc_46: 0.08099032950666239 - ArtUnc_47: 0.20664841683345464 - ArtUnc_48: -0.03826598893292267 - ArtUnc_49: -0.09491404193287428 - ArtUnc_50: -0.09824741575171746 - ArtUnc_51: -0.09017523379420644 - ArtUnc_52: 0.02814318215868148 - ArtUnc_53: 0.01119679334780394 - ArtUnc_54: -0.003444288089995832 - ArtUnc_55: 0.0017742998422924019 - ArtUnc_56: -0.0046173282151575155 - ArtUnc_57: -0.0010036416826925368 - ArtUnc_58: 0.00282317313894363 - ArtUnc_59: -0.001204653199342814 - ArtUnc_60: -0.0003414476538073429 - ArtUnc_61: -2.5372229813729875e-05 - ArtUnc_62: 0.0003273466917351464 - ArtUnc_63: 0.0002863249146864457 - ArtUnc_64: -0.0006345923426677806 - ArtUnc_65: -0.000538610575124353 - ArtUnc_66: -0.0011505629179389683 - ArtUnc_67: 0.0004560945531370805 - ArtUnc_68: 0.0030148469490411567 - ArtUnc_69: 0.002073800466422449 - ArtUnc_70: -0.0004925221551272268 - ArtUnc_71: -0.00026471775867247964 - ArtUnc_72: 0.00037625735442798074 - ArtUnc_73: 0.00026934779133247223 - ArtUnc_74: 0.00026473689865877446 - ArtUnc_75: 3.59520305997644e-05 - ArtUnc_76: 1.2460882397125119e-06 - ArtUnc_77: 4.642367619192158e-05 - ArtUnc_78: -3.9134180863925706e-05 - ArtUnc_79: -6.51698698504492e-05 - ArtUnc_80: -4.185286658610534e-07 - ArtUnc_81: 1.3553201993634238e-06 - ArtUnc_82: -1.3444472389723267e-09 - ArtUnc_83: -1.3574624362066917e-06 - ArtUnc_84: -3.53029436685307e-06 - ArtUnc_85: 1.2092535550320447e-06 - ArtUnc_86: -7.154831036186798e-06 - ArtUnc_87: 4.0481952286339225e-06 - ArtUnc_88: 2.553863669683852e-06 - ArtUnc_89: -1.0256192208287806e-05 - ArtUnc_90: -3.0734211339617674e-06 - ArtUnc_91: -2.4789324434247186e-06 - ArtUnc_92: 2.3925801886004683e-06 - ArtUnc_93: 2.928764715175451e-06 - ArtUnc_94: -7.50380017785513e-08 - ArtUnc_95: 6.988055593526797e-07 - ArtUnc_96: -9.190338720973444e-08 + ArtUnc_1: 0.009828482441487745 + ArtUnc_2: -0.00460871700064456 + ArtUnc_3: -0.002367722967671026 + ArtUnc_4: -0.00029926032901598235 + ArtUnc_5: -0.00012690827336534974 + ArtUnc_6: -6.2210660451003455e-06 + ArtUnc_7: -8.451570832595379e-05 + ArtUnc_8: 0.02751057521746776 + ArtUnc_9: 1.5723655127338393e-05 + ArtUnc_10: 0.017825203774346893 + ArtUnc_11: -0.006729346020044204 + ArtUnc_12: 0.015601139436504471 + ArtUnc_13: -0.007047244784114975 + ArtUnc_14: -0.0065521735181942676 + ArtUnc_15: -0.005325434628903351 + ArtUnc_16: 0.0064917673106256015 + ArtUnc_17: -0.0034180238988290863 + ArtUnc_18: 0.0016271913888590524 + ArtUnc_19: -0.0010176831113118696 + ArtUnc_20: 0.0012412268220376775 + ArtUnc_21: 0.0013910730652472933 + ArtUnc_22: -0.0009017674683374423 + ArtUnc_23: 4.585804574036141e-05 + ArtUnc_24: -0.0001413221668135053 + ArtUnc_25: 0.048844340697331595 + ArtUnc_26: 0.04181590905252278 + ArtUnc_27: 0.32589663868765795 + ArtUnc_28: -0.046280711933589666 + ArtUnc_29: -0.030819773195066773 + ArtUnc_30: 0.14587854716562404 + ArtUnc_31: -0.0016396219494746182 + ArtUnc_32: -0.0678545120748393 + ArtUnc_33: -0.022661813340476022 + ArtUnc_34: -0.04182033033426591 + ArtUnc_35: -0.06905773771897107 + ArtUnc_36: -0.026864389685190497 + ArtUnc_37: -0.004292649218077433 + ArtUnc_38: 0.0050802906960727345 + ArtUnc_39: 0.0008362842858768569 + ArtUnc_40: 0.0003095012144619919 + ArtUnc_41: -0.7052015856251063 + ArtUnc_42: -0.6327097492563641 + ArtUnc_43: 0.12172801961898926 + ArtUnc_44: 0.22099531757298294 + ArtUnc_45: -0.23647012932139355 + ArtUnc_46: 0.08099032950666608 + ArtUnc_47: -0.20664841683345517 + ArtUnc_48: 0.038265988932915405 + ArtUnc_49: 0.09491404193287561 + ArtUnc_50: 0.09824741575171583 + ArtUnc_51: -0.004617328215157453 + ArtUnc_52: 0.0017742998422925309 + ArtUnc_53: 0.09017523379420407 + ArtUnc_54: -0.028143182158681345 + ArtUnc_55: -0.011196793347803947 + ArtUnc_56: -0.0034442880899961553 + ArtUnc_57: 0.0010036416826926242 + ArtUnc_58: -0.0028231731389436556 + ArtUnc_59: 0.0012046531993427795 + ArtUnc_60: 0.0003414476538073182 + ArtUnc_61: 2.537222981374834e-05 + ArtUnc_62: -0.00032734669173514557 + ArtUnc_63: -0.00028632491468644916 + ArtUnc_64: -0.0006345923426677774 + ArtUnc_65: 0.0005386105751243396 + ArtUnc_66: -0.0011505629179389587 + ArtUnc_67: 0.0004560945531371202 + ArtUnc_68: 0.003014846949041353 + ArtUnc_69: 0.0020738004664223268 + ArtUnc_70: -0.00037625735442800627 + ArtUnc_71: 0.0004925221551271979 + ArtUnc_72: -0.00026471775867246614 + ArtUnc_73: 0.0002693477913324866 + ArtUnc_74: -0.00026473689865880184 + ArtUnc_75: -3.595203059976877e-05 + ArtUnc_76: 1.2460882397148897e-06 + ArtUnc_77: 4.642367619193105e-05 + ArtUnc_78: 3.913418086393189e-05 + ArtUnc_79: -6.51698698504578e-05 + ArtUnc_80: 4.185286658640881e-07 + ArtUnc_81: 1.355320199362528e-06 + ArtUnc_82: -1.3444472389898236e-09 + ArtUnc_83: -1.3574624362073272e-06 + ArtUnc_84: -3.5302943668521003e-06 + ArtUnc_85: 1.2092535550324354e-06 + ArtUnc_86: -2.392580188600286e-06 + ArtUnc_87: -2.9287647151749426e-06 + ArtUnc_88: -7.154831036187616e-06 + ArtUnc_89: -4.048195228634956e-06 + ArtUnc_90: 2.553863669683389e-06 + ArtUnc_91: -6.988055593524728e-07 + ArtUnc_92: -7.503800177848302e-08 + ArtUnc_93: -1.0256192208288061e-05 + ArtUnc_94: 3.073421133961953e-06 + ArtUnc_95: -2.478932443424516e-06 + ArtUnc_96: -9.190338720973543e-08 - stat: 0 Uncorr: 0.051100000000000007 RCES: 0.03236691909959921 @@ -4122,102 +4122,102 @@ bins: ModelRW_2: 0.1743426674207292 JES_1: 0.13523458358718748 JES_2: 0.13523458358718748 - ArtUnc_1: -6.164644459496333e-08 + ArtUnc_1: -6.164644459496338e-08 ArtUnc_2: 3.922489697003599e-06 - ArtUnc_3: 3.676532891100394e-06 - ArtUnc_4: 5.56487344764471e-07 - ArtUnc_5: 6.597432172993162e-07 - ArtUnc_6: -4.992344983074685e-07 - ArtUnc_7: 1.1475159680928933e-07 - ArtUnc_8: 9.85268949055519e-05 - ArtUnc_9: 4.4079656946630887e-07 - ArtUnc_10: 0.00017923445289304494 - ArtUnc_11: 7.616657232720363e-05 - ArtUnc_12: -4.4728975211691914e-05 - ArtUnc_13: -4.079778614206482e-05 - ArtUnc_14: 1.1653214759906138e-05 - ArtUnc_15: 2.9468682734544436e-05 - ArtUnc_16: -4.060088063748322e-05 - ArtUnc_17: -4.898611122436428e-05 - ArtUnc_18: 2.5000894892529564e-05 - ArtUnc_19: -1.889207092898967e-05 - ArtUnc_20: 3.208941532949087e-05 - ArtUnc_21: -3.183327131448302e-05 - ArtUnc_22: 1.902572815062949e-05 - ArtUnc_23: -7.026400508550222e-06 - ArtUnc_24: 5.427374187195018e-07 - ArtUnc_25: -0.0018049794383780081 - ArtUnc_26: 0.0011801587967397737 - ArtUnc_27: 0.00957849418161535 - ArtUnc_28: -0.0008501682735662729 - ArtUnc_29: -0.00090065037085261 - ArtUnc_30: -0.004665811728323799 - ArtUnc_31: -0.00010043484313471119 - ArtUnc_32: 0.0020131234135996206 - ArtUnc_33: 0.0006497633601130008 - ArtUnc_34: -0.0008514052295296936 - ArtUnc_35: -0.0011510551850159917 - ArtUnc_36: -5.32719746779371e-05 - ArtUnc_37: -0.00018763487850364906 - ArtUnc_38: -0.00037460143753174647 - ArtUnc_39: 0.00020843676093660634 - ArtUnc_40: 3.0350509533323387e-05 - ArtUnc_41: 0.1026626014015879 - ArtUnc_42: -0.09840882032617751 - ArtUnc_43: -0.06871362568789526 - ArtUnc_44: -0.00931737469487431 - ArtUnc_45: -0.0351818352211152 - ArtUnc_46: -0.029312409153198712 - ArtUnc_47: -0.013643854055219985 - ArtUnc_48: 0.033826594367277786 - ArtUnc_49: -0.004633542472206927 - ArtUnc_50: -0.02025841501175573 - ArtUnc_51: -0.02252368836875011 - ArtUnc_52: 0.009567457581226341 - ArtUnc_53: 0.009843605589854273 - ArtUnc_54: 0.0015170613413585646 - ArtUnc_55: 0.004771693908959932 - ArtUnc_56: -0.002384075134639636 - ArtUnc_57: -0.06258888615097233 - ArtUnc_58: 0.26121858121934344 - ArtUnc_59: -0.10808008735278968 - ArtUnc_60: -0.023049073521630832 - ArtUnc_61: 0.14287717897481966 - ArtUnc_62: -0.04647436774649933 - ArtUnc_63: -0.05445480327220323 - ArtUnc_64: 0.020264268067554825 - ArtUnc_65: 0.00208377706928161 - ArtUnc_66: 0.06705184198137588 - ArtUnc_67: -0.021510300671448226 - ArtUnc_68: -0.0835583452065412 - ArtUnc_69: -0.042482935947782685 - ArtUnc_70: 0.009286362438022399 - ArtUnc_71: 0.005984455381454777 - ArtUnc_72: -0.0015854931928308486 - ArtUnc_73: 0.0016273501516147152 - ArtUnc_74: 0.001251898970055396 - ArtUnc_75: 5.0258160043944296e-05 - ArtUnc_76: -5.509821488613624e-05 - ArtUnc_77: -0.00014416711829247207 - ArtUnc_78: 0.00010278516747366994 - ArtUnc_79: 0.0006061054586887364 - ArtUnc_80: 6.343135642241622e-05 - ArtUnc_81: 7.291486148517893e-05 - ArtUnc_82: 3.946880946781509e-07 - ArtUnc_83: 0.00013469409234429693 - ArtUnc_84: -0.00010207049142692077 - ArtUnc_85: -0.00010050144195657886 - ArtUnc_86: -0.000207775124867491 - ArtUnc_87: 0.00011443435620056058 - ArtUnc_88: 3.8873770841941044e-05 - ArtUnc_89: -0.0002676195551706335 - ArtUnc_90: -8.669785835344134e-05 - ArtUnc_91: 8.024371620582725e-06 - ArtUnc_92: -0.00011679913164205565 - ArtUnc_93: -7.445854981991481e-05 - ArtUnc_94: 4.009384033284143e-06 - ArtUnc_95: -2.328595519510194e-05 - ArtUnc_96: -2.1333954408291226e-05 + ArtUnc_3: 3.676532891100279e-06 + ArtUnc_4: 5.564873447651579e-07 + ArtUnc_5: 6.59743217294973e-07 + ArtUnc_6: 4.992344983248174e-07 + ArtUnc_7: -1.1475159678064252e-07 + ArtUnc_8: -9.852689490555703e-05 + ArtUnc_9: -4.407965694973057e-07 + ArtUnc_10: 0.0001792344528930398 + ArtUnc_11: 7.616657232721964e-05 + ArtUnc_12: -4.4728975211666266e-05 + ArtUnc_13: -4.0797786142070816e-05 + ArtUnc_14: 1.1653214759857445e-05 + ArtUnc_15: 2.9468682734613832e-05 + ArtUnc_16: -4.060088063743114e-05 + ArtUnc_17: 4.8986111224387076e-05 + ArtUnc_18: -2.500089489249813e-05 + ArtUnc_19: 1.8892070928952376e-05 + ArtUnc_20: -3.2089415329472654e-05 + ArtUnc_21: -3.1833271314447314e-05 + ArtUnc_22: 1.9025728150568153e-05 + ArtUnc_23: 7.026400508713268e-06 + ArtUnc_24: -5.427374187542625e-07 + ArtUnc_25: 0.00180497943837816 + ArtUnc_26: -0.0011801587967399964 + ArtUnc_27: -0.009578494181615448 + ArtUnc_28: 0.0008501682735662387 + ArtUnc_29: 0.0009006503708527966 + ArtUnc_30: -0.004665811728323744 + ArtUnc_31: 0.00010043484313485591 + ArtUnc_32: 0.002013123413600144 + ArtUnc_33: 0.0006497633601117199 + ArtUnc_34: 0.0008514052295296975 + ArtUnc_35: 0.001151055185015836 + ArtUnc_36: -5.32719746780574e-05 + ArtUnc_37: -0.00018763487850387555 + ArtUnc_38: 0.000374601437531586 + ArtUnc_39: 0.00020843676093705043 + ArtUnc_40: 3.0350509533418895e-05 + ArtUnc_41: 0.10266260140158713 + ArtUnc_42: -0.09840882032617902 + ArtUnc_43: -0.0687136256878946 + ArtUnc_44: -0.009317374694874054 + ArtUnc_45: -0.03518183522111571 + ArtUnc_46: -0.029312409153198906 + ArtUnc_47: 0.013643854055219597 + ArtUnc_48: -0.03382659436727794 + ArtUnc_49: 0.004633542472207272 + ArtUnc_50: 0.02025841501175562 + ArtUnc_51: -0.0023840751346399375 + ArtUnc_52: 0.004771693908960994 + ArtUnc_53: 0.022523688368749763 + ArtUnc_54: -0.009567457581226015 + ArtUnc_55: -0.009843605589854792 + ArtUnc_56: 0.001517061341357972 + ArtUnc_57: 0.06258888615097814 + ArtUnc_58: -0.26121858121934405 + ArtUnc_59: 0.10808008735278782 + ArtUnc_60: 0.023049073521630416 + ArtUnc_61: -0.14287717897482147 + ArtUnc_62: 0.04647436774649283 + ArtUnc_63: 0.05445480327220324 + ArtUnc_64: 0.020264268067555387 + ArtUnc_65: -0.002083777069281772 + ArtUnc_66: 0.06705184198137516 + ArtUnc_67: -0.021510300671449198 + ArtUnc_68: -0.08355834520654506 + ArtUnc_69: -0.04248293594777888 + ArtUnc_70: 0.0015854931928314551 + ArtUnc_71: -0.009286362438022215 + ArtUnc_72: 0.005984455381454388 + ArtUnc_73: 0.0016273501516143546 + ArtUnc_74: -0.001251898970055017 + ArtUnc_75: -5.0258160043893535e-05 + ArtUnc_76: -5.509821488616488e-05 + ArtUnc_77: -0.0001441671182925708 + ArtUnc_78: -0.00010278516747378758 + ArtUnc_79: 0.0006061054586888791 + ArtUnc_80: -6.34313564224788e-05 + ArtUnc_81: 7.291486148520376e-05 + ArtUnc_82: 3.946880946781465e-07 + ArtUnc_83: 0.0001346940923443161 + ArtUnc_84: -0.00010207049142693918 + ArtUnc_85: -0.00010050144195659215 + ArtUnc_86: 0.0001167991316420489 + ArtUnc_87: 7.445854981989877e-05 + ArtUnc_88: -0.00020777512486746868 + ArtUnc_89: -0.00011443435620054819 + ArtUnc_90: 3.887377084194982e-05 + ArtUnc_91: 2.3285955195096784e-05 + ArtUnc_92: 4.009384033282361e-06 + ArtUnc_93: -0.0002676195551706283 + ArtUnc_94: 8.669785835343736e-05 + ArtUnc_95: 8.024371620577143e-06 + ArtUnc_96: -2.1333954408291494e-05 - stat: 0 Uncorr: 0.00837 RCES: 0.0060904332462888055 @@ -4233,102 +4233,102 @@ bins: ModelRW_2: 0.012488000730501258 JES_1: 0.03993121648146973 JES_2: 0.03993121648146973 - ArtUnc_1: -2.817126819950767e-08 - ArtUnc_2: 4.4684049988513985e-07 - ArtUnc_3: 6.06566938162903e-07 - ArtUnc_4: 2.2074680006429258e-07 - ArtUnc_5: -2.7226297565523305e-08 - ArtUnc_6: -1.0502030775142442e-08 - ArtUnc_7: -6.247091275967356e-09 - ArtUnc_8: 1.3352960960346633e-05 - ArtUnc_9: 5.195880521860876e-08 - ArtUnc_10: 2.174311254461487e-05 - ArtUnc_11: 1.438428343348627e-05 - ArtUnc_12: -6.488154730194581e-06 - ArtUnc_13: -1.2077849621578791e-05 - ArtUnc_14: -9.851969940031306e-07 - ArtUnc_15: -5.508344773231738e-06 - ArtUnc_16: -8.576868897549714e-07 - ArtUnc_17: -1.7036429902542261e-06 - ArtUnc_18: -2.257652907611229e-07 - ArtUnc_19: -1.2942610814162311e-06 - ArtUnc_20: 5.002398679522411e-06 - ArtUnc_21: -3.825337628274403e-06 - ArtUnc_22: 1.7604760362986067e-06 - ArtUnc_23: -6.148453535389899e-07 - ArtUnc_24: 8.647766601743679e-08 - ArtUnc_25: -0.00021897760157160368 - ArtUnc_26: 0.0001041769653105037 - ArtUnc_27: 0.0012450843536182547 - ArtUnc_28: -0.00017348975365976 - ArtUnc_29: -0.00015219103957117347 - ArtUnc_30: -0.0007465051590979212 - ArtUnc_31: -2.0704047750258446e-05 - ArtUnc_32: 0.0004343764298589348 - ArtUnc_33: 0.00012404908013743279 - ArtUnc_34: -0.0002862893515867421 - ArtUnc_35: -0.0004963590614518438 - ArtUnc_36: 0.00020282456223151047 - ArtUnc_37: 3.7094347069720885e-05 - ArtUnc_38: 4.106182778419227e-05 - ArtUnc_39: -6.799893174138268e-06 - ArtUnc_40: -1.4954824069585455e-06 - ArtUnc_41: 0.0008081930040477415 - ArtUnc_42: 0.002108683928137042 - ArtUnc_43: 0.00035821304071891865 - ArtUnc_44: -0.0005399654934629002 - ArtUnc_45: 0.001316493409075432 - ArtUnc_46: 0.00020101437821280166 - ArtUnc_47: -0.0006350875907169873 - ArtUnc_48: -0.00047593825956509703 - ArtUnc_49: 0.000602376009215324 - ArtUnc_50: 0.0009495179427234354 - ArtUnc_51: 0.0009883270985556625 - ArtUnc_52: -0.00035012232252778645 - ArtUnc_53: -0.0002381219447796239 - ArtUnc_54: -4.1236601124929335e-06 - ArtUnc_55: -7.65822539999393e-05 - ArtUnc_56: 6.923725304543144e-05 - ArtUnc_57: 0.020661271954792452 - ArtUnc_58: -0.03012617915198426 - ArtUnc_59: -0.0463298301030496 - ArtUnc_60: -0.017025874165601154 - ArtUnc_61: 0.008563593972698479 - ArtUnc_62: 0.012710627449859669 - ArtUnc_63: -0.004931348879742483 - ArtUnc_64: -0.01951139053213328 - ArtUnc_65: -0.01837312552201215 - ArtUnc_66: 0.0069553190698154 - ArtUnc_67: -0.0018328306634743797 - ArtUnc_68: -0.0002602993112448357 - ArtUnc_69: 0.0005484249307853947 - ArtUnc_70: -0.0007404022609204061 - ArtUnc_71: -0.00026912314771388465 - ArtUnc_72: 0.0001401840323889083 - ArtUnc_73: 0.07358766616309499 - ArtUnc_74: 0.08935275262643164 - ArtUnc_75: 0.012055679340105329 - ArtUnc_76: -0.0027011264050325317 - ArtUnc_77: 0.021387610532925833 - ArtUnc_78: -0.013447794794431011 - ArtUnc_79: -0.043068065429579305 - ArtUnc_80: -0.00025035287636590564 - ArtUnc_81: -0.0004905800793988719 - ArtUnc_82: -2.4339488351599227e-06 - ArtUnc_83: 0.00034942425994390856 - ArtUnc_84: 0.0003703550434100738 - ArtUnc_85: -0.00018102905776393803 - ArtUnc_86: 0.002600428908484644 - ArtUnc_87: 0.0023811496247881157 - ArtUnc_88: -0.0006337108544292563 - ArtUnc_89: 0.004616274227591015 - ArtUnc_90: -0.0008602099782936526 - ArtUnc_91: 0.000764431035628665 - ArtUnc_92: 0.0001438932534886056 - ArtUnc_93: 0.00039986682117638847 - ArtUnc_94: -3.0413386783335254e-05 - ArtUnc_95: 0.00015991026827909247 - ArtUnc_96: -1.4366715556161222e-06 + ArtUnc_1: -2.8171268199507716e-08 + ArtUnc_2: 4.468404998851395e-07 + ArtUnc_3: 6.065669381628866e-07 + ArtUnc_4: 2.2074680006442324e-07 + ArtUnc_5: -2.7226297566834386e-08 + ArtUnc_6: 1.0502030776599082e-08 + ArtUnc_7: 6.247091281933477e-09 + ArtUnc_8: -1.3352960960347073e-05 + ArtUnc_9: -5.195880523141805e-08 + ArtUnc_10: 2.1743112544614577e-05 + ArtUnc_11: 1.4384283433486833e-05 + ArtUnc_12: -6.488154730178476e-06 + ArtUnc_13: -1.2077849621583853e-05 + ArtUnc_14: -9.85196993995112e-07 + ArtUnc_15: -5.508344773231818e-06 + ArtUnc_16: -8.576868897751414e-07 + ArtUnc_17: 1.703642990227518e-06 + ArtUnc_18: 2.2576529075168028e-07 + ArtUnc_19: 1.2942610814684423e-06 + ArtUnc_20: -5.002398679556529e-06 + ArtUnc_21: -3.8253376283432924e-06 + ArtUnc_22: 1.7604760363566307e-06 + ArtUnc_23: 6.148453534215448e-07 + ArtUnc_24: -8.64776660808692e-08 + ArtUnc_25: 0.00021897760157158004 + ArtUnc_26: -0.00010417696531048306 + ArtUnc_27: -0.0012450843536182764 + ArtUnc_28: 0.0001734897536596235 + ArtUnc_29: 0.00015219103957132238 + ArtUnc_30: -0.0007465051590978547 + ArtUnc_31: 2.0704047749812754e-05 + ArtUnc_32: 0.0004343764298588992 + ArtUnc_33: 0.0001240490801374033 + ArtUnc_34: 0.0002862893515864769 + ArtUnc_35: 0.000496359061452056 + ArtUnc_36: 0.00020282456223106611 + ArtUnc_37: 3.709434707071476e-05 + ArtUnc_38: -4.1061827783918016e-05 + ArtUnc_39: -6.799893174198059e-06 + ArtUnc_40: -1.495482406591319e-06 + ArtUnc_41: 0.0008081930040474229 + ArtUnc_42: 0.0021086839281373873 + ArtUnc_43: 0.00035821304071842616 + ArtUnc_44: -0.0005399654934635183 + ArtUnc_45: 0.001316493409075148 + ArtUnc_46: 0.0002010143782132027 + ArtUnc_47: 0.0006350875907164479 + ArtUnc_48: 0.0004759382595654312 + ArtUnc_49: -0.0006023760092153574 + ArtUnc_50: -0.0009495179427241272 + ArtUnc_51: 6.923725304565707e-05 + ArtUnc_52: -7.658225400022983e-05 + ArtUnc_53: -0.0009883270985561877 + ArtUnc_54: 0.00035012232252784885 + ArtUnc_55: 0.00023812194477975467 + ArtUnc_56: -4.123660112127637e-06 + ArtUnc_57: -0.02066127195479415 + ArtUnc_58: 0.030126179151983706 + ArtUnc_59: 0.046329830103050265 + ArtUnc_60: 0.01702587416560102 + ArtUnc_61: -0.008563593972697963 + ArtUnc_62: -0.012710627449860143 + ArtUnc_63: 0.004931348879743005 + ArtUnc_64: -0.019511390532134486 + ArtUnc_65: 0.01837312552201359 + ArtUnc_66: 0.006955319069816964 + ArtUnc_67: -0.001832830663475033 + ArtUnc_68: -0.00026029931124660403 + ArtUnc_69: 0.000548424930784027 + ArtUnc_70: -0.00014018403238890204 + ArtUnc_71: 0.0007404022609201388 + ArtUnc_72: -0.0002691231477139737 + ArtUnc_73: 0.07358766616309388 + ArtUnc_74: -0.0893527526264328 + ArtUnc_75: -0.012055679340105704 + ArtUnc_76: -0.0027011264050323686 + ArtUnc_77: 0.021387610532927363 + ArtUnc_78: 0.013447794794430668 + ArtUnc_79: -0.04306806542957896 + ArtUnc_80: 0.0002503528763656325 + ArtUnc_81: -0.0004905800793986709 + ArtUnc_82: -2.433948835170254e-06 + ArtUnc_83: 0.00034942425994394585 + ArtUnc_84: 0.0003703550434099853 + ArtUnc_85: -0.00018102905776399447 + ArtUnc_86: -0.00014389325348863863 + ArtUnc_87: -0.0003998668211764174 + ArtUnc_88: 0.00260042890848475 + ArtUnc_89: -0.0023811496247879713 + ArtUnc_90: -0.0006337108544291929 + ArtUnc_91: -0.000159910268279095 + ArtUnc_92: -3.0413386783324703e-05 + ArtUnc_93: 0.004616274227591099 + ArtUnc_94: 0.0008602099782936573 + ArtUnc_95: 0.0007644310356287082 + ArtUnc_96: -1.4366715556144155e-06 - stat: 0 Uncorr: 0.00126 RCES: 0.0036414000000000004 @@ -4344,102 +4344,102 @@ bins: ModelRW_2: 0.01594363281485747 JES_1: 0.003885276963100571 JES_2: 0.003885276963100571 - ArtUnc_1: 6.041525253143828e-10 - ArtUnc_2: -7.457087380483391e-10 - ArtUnc_3: -1.4082834307512728e-10 - ArtUnc_4: 5.259751980809698e-10 - ArtUnc_5: -6.923695139523178e-10 - ArtUnc_6: 3.3208895331698243e-10 - ArtUnc_7: 8.073137294780598e-12 - ArtUnc_8: -1.2230927873465858e-07 - ArtUnc_9: -5.113647669890167e-10 - ArtUnc_10: -2.2446935066345123e-07 - ArtUnc_11: -1.4326065212866686e-07 - ArtUnc_12: 1.153026085468027e-08 - ArtUnc_13: 1.1174732880309481e-07 - ArtUnc_14: 2.4558207141038358e-08 - ArtUnc_15: 8.883175741719856e-10 - ArtUnc_16: 3.6467441648207014e-08 - ArtUnc_17: 8.236732097262847e-08 - ArtUnc_18: -5.197226792070373e-08 - ArtUnc_19: 3.841247467637868e-08 - ArtUnc_20: -6.425356531140175e-08 - ArtUnc_21: 6.155293697788874e-08 - ArtUnc_22: -2.951676174829013e-08 - ArtUnc_23: 5.562899998071879e-09 - ArtUnc_24: -7.151556924463854e-10 - ArtUnc_25: 1.608931748776258e-06 - ArtUnc_26: -1.8646694530908165e-06 - ArtUnc_27: -1.1274858886782248e-05 - ArtUnc_28: 6.938518411524558e-07 - ArtUnc_29: 4.5559441224943266e-07 - ArtUnc_30: 1.961726405134673e-06 - ArtUnc_31: -2.1287085839396652e-08 - ArtUnc_32: 4.881844799100779e-07 - ArtUnc_33: 2.1793478494002968e-08 - ArtUnc_34: -7.364259583222377e-07 - ArtUnc_35: -1.4923928499632316e-06 - ArtUnc_36: 7.430948147792464e-07 - ArtUnc_37: 1.8178644101091007e-07 - ArtUnc_38: 2.3100931027139345e-07 - ArtUnc_39: -2.047416229184488e-07 - ArtUnc_40: -7.423803500036187e-08 - ArtUnc_41: 0.0005268887524988114 - ArtUnc_42: -0.0005714659827221061 - ArtUnc_43: -0.00027022218346637445 - ArtUnc_44: 1.639807218947462e-05 - ArtUnc_45: -0.00017043659189344178 - ArtUnc_46: -4.9978593562796565e-05 - ArtUnc_47: 3.940253779989799e-05 - ArtUnc_48: 3.0242333060471106e-05 - ArtUnc_49: -2.5495449976636212e-05 - ArtUnc_50: -6.6918278221475645e-06 - ArtUnc_51: 4.833166067699923e-05 - ArtUnc_52: -2.4613900281051554e-05 - ArtUnc_53: -5.019518747024589e-05 - ArtUnc_54: -7.534173203401729e-06 - ArtUnc_55: -2.9103029027200832e-05 - ArtUnc_56: 1.4789803073690994e-05 - ArtUnc_57: 0.0009724406566382068 - ArtUnc_58: -0.0025805819255820058 - ArtUnc_59: -0.0003722812543555839 - ArtUnc_60: -0.00024486307773781673 - ArtUnc_61: -0.000750290877691974 - ArtUnc_62: 0.0006032959090819328 - ArtUnc_63: 0.00021837644109062756 - ArtUnc_64: -0.0006049467434411304 - ArtUnc_65: -0.000469840672415627 - ArtUnc_66: -0.00016047606982258245 - ArtUnc_67: 5.597628896179762e-05 - ArtUnc_68: 0.00021823897883524966 - ArtUnc_69: 1.100866729218056e-05 - ArtUnc_70: -1.7410499464597899e-06 - ArtUnc_71: 1.5512309295244594e-05 - ArtUnc_72: -9.332428840907835e-05 - ArtUnc_73: 0.0011714027120292337 - ArtUnc_74: 0.00027863115780019164 - ArtUnc_75: -0.000287000157299122 - ArtUnc_76: 0.0072247650818527 - ArtUnc_77: -0.0013220955446080014 - ArtUnc_78: -0.01613476439515327 - ArtUnc_79: 0.00381306711786311 - ArtUnc_80: 0.005064477730472728 - ArtUnc_81: 0.0034362312205621515 - ArtUnc_82: 2.2412802282072182e-05 - ArtUnc_83: 0.022201540076900495 - ArtUnc_84: -0.004456629085650692 - ArtUnc_85: -0.017428639534710202 - ArtUnc_86: -0.011385699670263552 - ArtUnc_87: 0.00778080219253493 - ArtUnc_88: 0.0018988296326871237 - ArtUnc_89: -0.008045285761312297 - ArtUnc_90: -0.0034782788311635794 - ArtUnc_91: 0.00022653556448832082 - ArtUnc_92: -0.02149648344381187 - ArtUnc_93: -0.013607990667775922 - ArtUnc_94: 0.0005860095065114094 - ArtUnc_95: -0.00395969577280809 - ArtUnc_96: -0.004254928877904954 + ArtUnc_1: 6.041525253143837e-10 + ArtUnc_2: -7.457087380483398e-10 + ArtUnc_3: -1.4082834307497503e-10 + ArtUnc_4: 5.259751980797566e-10 + ArtUnc_5: -6.923695139325593e-10 + ArtUnc_6: -3.3208895333728377e-10 + ArtUnc_7: -8.073137240863234e-12 + ArtUnc_8: 1.2230927873466213e-07 + ArtUnc_9: 5.113647670230508e-10 + ArtUnc_10: -2.244693506634476e-07 + ArtUnc_11: -1.432606521286891e-07 + ArtUnc_12: 1.1530260854438604e-08 + ArtUnc_13: 1.117473288031136e-07 + ArtUnc_14: 2.455820714133376e-08 + ArtUnc_15: 8.883175739142325e-10 + ArtUnc_16: 3.64674416477968e-08 + ArtUnc_17: -8.23673209728863e-08 + ArtUnc_18: 5.197226792066097e-08 + ArtUnc_19: -3.841247467568004e-08 + ArtUnc_20: 6.425356531113657e-08 + ArtUnc_21: 6.155293697544512e-08 + ArtUnc_22: -2.9516761746782553e-08 + ArtUnc_23: -5.562900001094921e-09 + ArtUnc_24: 7.151556918564961e-10 + ArtUnc_25: -1.6089317487759996e-06 + ArtUnc_26: 1.8646694530904163e-06 + ArtUnc_27: 1.1274858886782353e-05 + ArtUnc_28: -6.938518411540835e-07 + ArtUnc_29: -4.555944122477703e-07 + ArtUnc_30: 1.9617264051350774e-06 + ArtUnc_31: 2.1287085831880707e-08 + ArtUnc_32: 4.881844799069134e-07 + ArtUnc_33: 2.179347849928199e-08 + ArtUnc_34: 7.364259583162062e-07 + ArtUnc_35: 1.4923928499667925e-06 + ArtUnc_36: 7.430948147728629e-07 + ArtUnc_37: 1.8178644102041127e-07 + ArtUnc_38: -2.3100931026616919e-07 + ArtUnc_39: -2.047416229297779e-07 + ArtUnc_40: -7.4238034992303e-08 + ArtUnc_41: 0.0005268887524987921 + ArtUnc_42: -0.0005714659827220986 + ArtUnc_43: -0.00027022218346638225 + ArtUnc_44: 1.6398072189473574e-05 + ArtUnc_45: -0.00017043659189344853 + ArtUnc_46: -4.997859356279252e-05 + ArtUnc_47: -3.9402537799913584e-05 + ArtUnc_48: -3.0242333060468175e-05 + ArtUnc_49: 2.5495449976636246e-05 + ArtUnc_50: 6.691827822136524e-06 + ArtUnc_51: 1.4789803073696317e-05 + ArtUnc_52: -2.910302902721402e-05 + ArtUnc_53: -4.8331660677013445e-05 + ArtUnc_54: 2.46139002810582e-05 + ArtUnc_55: 5.0195187470255184e-05 + ArtUnc_56: -7.534173203397271e-06 + ArtUnc_57: -0.0009724406566382886 + ArtUnc_58: 0.002580581925581996 + ArtUnc_59: 0.0003722812543556141 + ArtUnc_60: 0.00024486307773779494 + ArtUnc_61: 0.0007502908776919723 + ArtUnc_62: -0.000603295909081876 + ArtUnc_63: -0.00021837644109062352 + ArtUnc_64: -0.0006049467434411995 + ArtUnc_65: 0.0004698406724156381 + ArtUnc_66: -0.00016047606982258857 + ArtUnc_67: 5.597628896170966e-05 + ArtUnc_68: 0.0002182389788351802 + ArtUnc_69: 1.1008667292203844e-05 + ArtUnc_70: 9.332428840909884e-05 + ArtUnc_71: 1.7410499463531618e-06 + ArtUnc_72: 1.5512309295234166e-05 + ArtUnc_73: 0.001171402712029326 + ArtUnc_74: -0.0002786311578004168 + ArtUnc_75: 0.00028700015729913036 + ArtUnc_76: 0.007224765081852715 + ArtUnc_77: -0.0013220955446067943 + ArtUnc_78: 0.01613476439515324 + ArtUnc_79: 0.0038130671178633353 + ArtUnc_80: -0.005064477730472428 + ArtUnc_81: 0.003436231220562271 + ArtUnc_82: 2.2412802282053842e-05 + ArtUnc_83: 0.022201540076900436 + ArtUnc_84: -0.0044566290856507575 + ArtUnc_85: -0.01742863953471023 + ArtUnc_86: 0.021496483443812036 + ArtUnc_87: 0.013607990667775918 + ArtUnc_88: -0.011385699670263238 + ArtUnc_89: -0.007780802192535263 + ArtUnc_90: 0.001898829632687188 + ArtUnc_91: 0.003959695772808286 + ArtUnc_92: 0.0005860095065112893 + ArtUnc_93: -0.008045285761312283 + ArtUnc_94: 0.0034782788311635373 + ArtUnc_95: 0.00022653556448828135 + ArtUnc_96: -0.004254928877905018 - stat: 0 Uncorr: 1.04 RCES: 5.643806531056854 @@ -4456,101 +4456,101 @@ bins: JES_1: 2.1767575152046676 JES_2: 2.1767575152046676 ArtUnc_1: 0.862390513360958 - ArtUnc_2: -0.0585223341972758 - ArtUnc_3: -0.015617481349614281 - ArtUnc_4: -0.02865956582028331 - ArtUnc_5: 0.024560404389025382 - ArtUnc_6: 0.01369754229357918 - ArtUnc_7: -0.03126673580103048 - ArtUnc_8: 8.052766469309573 - ArtUnc_9: 0.0038695705497448643 - ArtUnc_10: -5.440340482204737 - ArtUnc_11: 0.5063656603501598 - ArtUnc_12: 0.13134908148401084 - ArtUnc_13: 1.5029665042315419 - ArtUnc_14: -0.028689992197552618 - ArtUnc_15: 0.18002815502716843 - ArtUnc_16: 0.014250407028977898 - ArtUnc_17: -0.04851242069981796 - ArtUnc_18: 0.29940436496149647 - ArtUnc_19: -0.07767460929124594 - ArtUnc_20: -0.2717761425707225 - ArtUnc_21: 0.04717710535467236 - ArtUnc_22: 0.03848277959299325 - ArtUnc_23: -0.014740246882677633 - ArtUnc_24: -0.002989650130971767 - ArtUnc_25: 0.04036369541606758 - ArtUnc_26: 0.09302467152124247 - ArtUnc_27: 0.014597160954111526 - ArtUnc_28: 0.03227102341406198 - ArtUnc_29: -0.011743211789941789 - ArtUnc_30: -0.020758408969679874 - ArtUnc_31: -0.011241230788636574 - ArtUnc_32: 0.007682375996861734 - ArtUnc_33: 0.006482760235230509 - ArtUnc_34: -0.008580794784232671 - ArtUnc_35: -0.004056435036263777 - ArtUnc_36: 0.0008921238755738536 - ArtUnc_37: -0.0021935306004609665 - ArtUnc_38: -0.0009761650792591071 - ArtUnc_39: -0.0005096127087808091 - ArtUnc_40: -0.0005619835756197858 - ArtUnc_41: -0.0031631785001944813 - ArtUnc_42: -0.002833615200537957 - ArtUnc_43: 0.0007371773212970561 - ArtUnc_44: 0.0013088878222306671 - ArtUnc_45: -0.0012901354777218276 - ArtUnc_46: 0.000796063416044034 - ArtUnc_47: 0.0016605377633478315 - ArtUnc_48: -0.0004132208519303545 - ArtUnc_49: -0.0007064806487292458 - ArtUnc_50: -0.0008218480678580298 - ArtUnc_51: -0.0007009699714016416 - ArtUnc_52: 0.00017757524658647763 - ArtUnc_53: -9.061136987680712e-06 - ArtUnc_54: -0.00013438631943932464 - ArtUnc_55: 7.824198600373515e-05 - ArtUnc_56: -0.0001362899566796528 - ArtUnc_57: -9.964845519297443e-06 - ArtUnc_58: 1.122877378876763e-05 - ArtUnc_59: 1.3513642131207025e-05 - ArtUnc_60: 4.997737295236754e-06 - ArtUnc_61: -1.0751982835758077e-05 - ArtUnc_62: -6.136271969468173e-06 - ArtUnc_63: 7.0241953046404945e-06 - ArtUnc_64: 1.104379494273857e-05 - ArtUnc_65: 6.8579771992259895e-06 - ArtUnc_66: 1.5782301702338166e-06 - ArtUnc_67: 1.8570889589515615e-07 - ArtUnc_68: 7.24148349806898e-06 - ArtUnc_69: 9.093223014310866e-06 - ArtUnc_70: -4.916213171292747e-07 - ArtUnc_71: -5.360034925647852e-07 - ArtUnc_72: 2.251432226795964e-07 - ArtUnc_73: 1.5427469524348637e-06 - ArtUnc_74: 2.3515148923935714e-06 - ArtUnc_75: 4.3175359448502795e-07 - ArtUnc_76: 1.127293496046763e-07 - ArtUnc_77: 7.517926745289768e-07 - ArtUnc_78: -5.095707024872688e-07 - ArtUnc_79: -7.866491425713704e-07 - ArtUnc_80: -9.43488938444306e-08 - ArtUnc_81: -1.1980382405504978e-08 - ArtUnc_82: -4.258541093895629e-10 - ArtUnc_83: -4.412159234028068e-08 - ArtUnc_84: -2.5736692776210896e-08 - ArtUnc_85: 4.2710197772579343e-08 - ArtUnc_86: 7.8015829568531e-09 - ArtUnc_87: 5.735037683417709e-10 - ArtUnc_88: -9.147156941503064e-08 - ArtUnc_89: -1.3073151315178207e-07 - ArtUnc_90: -8.733441907194588e-08 - ArtUnc_91: 2.3566459633314016e-08 - ArtUnc_92: -8.348804058711307e-09 - ArtUnc_93: -1.7661293696835112e-08 - ArtUnc_94: 4.852624460880265e-09 - ArtUnc_95: -2.0837586511281873e-08 - ArtUnc_96: -8.364543817190377e-09 + ArtUnc_2: -0.058522334197274935 + ArtUnc_3: -0.015617481349614557 + ArtUnc_4: -0.02865956582028775 + ArtUnc_5: 0.024560404389031128 + ArtUnc_6: -0.013697542293582938 + ArtUnc_7: 0.0312667358010939 + ArtUnc_8: -8.052766469309553 + ArtUnc_9: -0.003869570549781359 + ArtUnc_10: -5.440340482204765 + ArtUnc_11: 0.5063656603501565 + ArtUnc_12: 0.13134908148404048 + ArtUnc_13: 1.5029665042315448 + ArtUnc_14: -0.02868999219755132 + ArtUnc_15: 0.1800281550271725 + ArtUnc_16: 0.01425040702897497 + ArtUnc_17: 0.04851242069982236 + ArtUnc_18: -0.2994043649614981 + ArtUnc_19: 0.07767460929125639 + ArtUnc_20: 0.2717761425707195 + ArtUnc_21: 0.047177105354672885 + ArtUnc_22: 0.03848277959299294 + ArtUnc_23: 0.014740246882677685 + ArtUnc_24: 0.0029896501309716835 + ArtUnc_25: -0.04036369541606761 + ArtUnc_26: -0.09302467152124266 + ArtUnc_27: -0.014597160954110492 + ArtUnc_28: -0.032271023414061836 + ArtUnc_29: 0.011743211789942889 + ArtUnc_30: -0.02075840896967938 + ArtUnc_31: 0.011241230788636522 + ArtUnc_32: 0.007682375996866057 + ArtUnc_33: 0.006482760235225154 + ArtUnc_34: 0.008580794784233063 + ArtUnc_35: 0.004056435036263157 + ArtUnc_36: 0.0008921238755738741 + ArtUnc_37: -0.0021935306004609617 + ArtUnc_38: 0.0009761650792590337 + ArtUnc_39: -0.0005096127087808053 + ArtUnc_40: -0.0005619835756197868 + ArtUnc_41: -0.0031631785001945928 + ArtUnc_42: -0.002833615200537926 + ArtUnc_43: 0.000737177321297061 + ArtUnc_44: 0.001308887822230703 + ArtUnc_45: -0.0012901354777218469 + ArtUnc_46: 0.0007960634160440661 + ArtUnc_47: -0.0016605377633478362 + ArtUnc_48: 0.00041322085193029644 + ArtUnc_49: 0.0007064806487292607 + ArtUnc_50: 0.0008218480678580217 + ArtUnc_51: -0.00013628995667965135 + ArtUnc_52: 7.824198600373727e-05 + ArtUnc_53: 0.0007009699714016272 + ArtUnc_54: -0.00017757524658647804 + ArtUnc_55: 9.061136987685657e-06 + ArtUnc_56: -0.00013438631943932383 + ArtUnc_57: 9.964845519297726e-06 + ArtUnc_58: -1.1228773788767014e-05 + ArtUnc_59: -1.3513642131206547e-05 + ArtUnc_60: -4.997737295236594e-06 + ArtUnc_61: 1.0751982835757547e-05 + ArtUnc_62: 6.1362719694684646e-06 + ArtUnc_63: -7.024195304640522e-06 + ArtUnc_64: 1.104379494273848e-05 + ArtUnc_65: -6.857977199225964e-06 + ArtUnc_66: 1.578230170233843e-06 + ArtUnc_67: 1.8570889589523063e-07 + ArtUnc_68: 7.241483498069554e-06 + ArtUnc_69: 9.093223014310423e-06 + ArtUnc_70: -2.2514322267953912e-07 + ArtUnc_71: 4.916213171292535e-07 + ArtUnc_72: -5.360034925647657e-07 + ArtUnc_73: 1.5427469524348488e-06 + ArtUnc_74: -2.3515148923936133e-06 + ArtUnc_75: -4.317535944850396e-07 + ArtUnc_76: 1.1272934960468206e-07 + ArtUnc_77: 7.517926745290272e-07 + ArtUnc_78: 5.095707024872422e-07 + ArtUnc_79: -7.8664914257136e-07 + ArtUnc_80: 9.434889384442472e-08 + ArtUnc_81: -1.1980382405502867e-08 + ArtUnc_82: -4.258541093895767e-10 + ArtUnc_83: -4.4121592340278306e-08 + ArtUnc_84: -2.5736692776212392e-08 + ArtUnc_85: 4.2710197772578146e-08 + ArtUnc_86: 8.348804058710194e-09 + ArtUnc_87: 1.766129369683349e-08 + ArtUnc_88: 7.80158295685783e-09 + ArtUnc_89: -5.735037683417001e-10 + ArtUnc_90: -9.147156941503087e-08 + ArtUnc_91: 2.083758651128185e-08 + ArtUnc_92: 4.8526244608792894e-09 + ArtUnc_93: -1.3073151315177993e-07 + ArtUnc_94: 8.733441907194496e-08 + ArtUnc_95: 2.3566459633314595e-08 + ArtUnc_96: -8.364543817190556e-09 - stat: 0 Uncorr: 0.876 RCES: 1.0907519197324387 @@ -4566,102 +4566,102 @@ bins: ModelRW_2: 1.4494557643474322 JES_1: 0.9156400214057924 JES_2: 0.9156400214057924 - ArtUnc_1: 0.13203839691016306 - ArtUnc_2: -0.0018981155812128453 - ArtUnc_3: 0.030449734167063695 - ArtUnc_4: 0.016599559452784796 - ArtUnc_5: -0.007039446793514841 - ArtUnc_6: 0.001674499070408551 - ArtUnc_7: -0.00015496188070864445 - ArtUnc_8: -0.04741118864007381 - ArtUnc_9: -0.0007186835313007978 - ArtUnc_10: -0.43052640155181093 - ArtUnc_11: -0.3402840139397078 - ArtUnc_12: 0.39895212060858115 - ArtUnc_13: 0.09101270589019789 - ArtUnc_14: -0.04546627440151189 - ArtUnc_15: 0.009692340009631114 - ArtUnc_16: 0.033194936534638134 - ArtUnc_17: -0.05060998404362767 - ArtUnc_18: 0.06042621545255223 - ArtUnc_19: -0.0421258089941154 - ArtUnc_20: -0.015698438313400037 - ArtUnc_21: -0.02794838949429772 - ArtUnc_22: 0.037847574133300005 - ArtUnc_23: -0.021509993525688612 - ArtUnc_24: 0.0004039371438069027 - ArtUnc_25: -3.271928974855699 - ArtUnc_26: -1.3315714679588317 - ArtUnc_27: -0.38737893889621744 - ArtUnc_28: -0.6847540037957475 - ArtUnc_29: -0.02089315840519039 - ArtUnc_30: 0.24155149523280106 - ArtUnc_31: 0.05080766078860316 - ArtUnc_32: -0.08409477654657979 - ArtUnc_33: -0.056203225074044176 - ArtUnc_34: 0.0816718202411427 - ArtUnc_35: 0.08773620671065417 - ArtUnc_36: -0.03706189225462979 - ArtUnc_37: 0.0024416941282670228 - ArtUnc_38: -0.005311259237549454 - ArtUnc_39: 0.004140830387009792 - ArtUnc_40: 0.0023273358670159654 - ArtUnc_41: 0.016608369052247947 - ArtUnc_42: 0.017377037665656576 - ArtUnc_43: -0.00747387858271836 - ArtUnc_44: -0.011366997835019018 - ArtUnc_45: 0.012081466399688648 - ArtUnc_46: -0.006010521471543163 - ArtUnc_47: -0.014787560023833005 - ArtUnc_48: 0.00471112823989923 - ArtUnc_49: 0.007430677269866008 - ArtUnc_50: 0.0068079799094667255 - ArtUnc_51: 0.007292737341519148 - ArtUnc_52: -0.0021796124008489014 - ArtUnc_53: -0.0010621839197682802 - ArtUnc_54: 0.00038932020161367266 - ArtUnc_55: -0.00013504142134225413 - ArtUnc_56: 0.0006050043502575571 - ArtUnc_57: -2.8675619155665895e-06 - ArtUnc_58: 0.00011801018194305257 - ArtUnc_59: -0.00015106725253573102 - ArtUnc_60: -5.0107640597455927e-05 - ArtUnc_61: 9.86699971619997e-06 - ArtUnc_62: 5.093667125677953e-05 - ArtUnc_63: -1.3994054984177e-06 - ArtUnc_64: -7.893786420285647e-05 - ArtUnc_65: -6.916046599340792e-05 - ArtUnc_66: 4.153359855592597e-06 - ArtUnc_67: -3.774018839093155e-06 - ArtUnc_68: -4.220146094319829e-06 - ArtUnc_69: -5.492019682321761e-06 - ArtUnc_70: -6.1693509047642875e-06 - ArtUnc_71: -1.923963939951251e-06 - ArtUnc_72: 4.037667501783322e-06 - ArtUnc_73: -2.4791489574757286e-06 - ArtUnc_74: -1.4911766742090438e-05 - ArtUnc_75: -2.4181351515255923e-06 - ArtUnc_76: -4.5954891167815134e-07 - ArtUnc_77: -4.506827325797678e-06 - ArtUnc_78: 3.1715976843935505e-06 - ArtUnc_79: 7.267656447245819e-06 - ArtUnc_80: -8.869255228243919e-07 - ArtUnc_81: -3.4742103213119546e-07 - ArtUnc_82: -3.2867253404633533e-09 - ArtUnc_83: 4.799206644697365e-07 - ArtUnc_84: 4.956056692359648e-07 - ArtUnc_85: -3.057175107316412e-07 - ArtUnc_86: -3.941215089842415e-07 - ArtUnc_87: 4.0547287225579874e-07 - ArtUnc_88: -1.3450800291205406e-08 - ArtUnc_89: 3.038985099760333e-07 - ArtUnc_90: 2.603149510967373e-07 - ArtUnc_91: 2.5716364133559936e-07 - ArtUnc_92: 6.513106602556618e-08 - ArtUnc_93: 1.2852660797314178e-07 - ArtUnc_94: -1.941848074855664e-08 - ArtUnc_95: 7.577235197068728e-08 - ArtUnc_96: -1.791599555890439e-09 + ArtUnc_1: 0.1320383969101628 + ArtUnc_2: -0.0018981155812127922 + ArtUnc_3: 0.030449734167063938 + ArtUnc_4: 0.016599559452785167 + ArtUnc_5: -0.007039446793516058 + ArtUnc_6: -0.0016744990704085601 + ArtUnc_7: 0.00015496188070738973 + ArtUnc_8: 0.04741118864007513 + ArtUnc_9: 0.0007186835312962168 + ArtUnc_10: -0.4305264015518117 + ArtUnc_11: -0.3402840139397071 + ArtUnc_12: 0.3989521206085828 + ArtUnc_13: 0.09101270589019123 + ArtUnc_14: -0.0454662744015132 + ArtUnc_15: 0.009692340009628061 + ArtUnc_16: 0.03319493653463854 + ArtUnc_17: 0.05060998404362843 + ArtUnc_18: -0.06042621545255102 + ArtUnc_19: 0.04212580899411449 + ArtUnc_20: 0.015698438313396287 + ArtUnc_21: -0.027948389494300365 + ArtUnc_22: 0.03784757413331094 + ArtUnc_23: 0.021509993525674447 + ArtUnc_24: -0.0004039371438018868 + ArtUnc_25: 3.2719289748556997 + ArtUnc_26: 1.3315714679588329 + ArtUnc_27: 0.3873789388962019 + ArtUnc_28: 0.6847540037957462 + ArtUnc_29: 0.020893158405177158 + ArtUnc_30: 0.24155149523280334 + ArtUnc_31: -0.05080766078860241 + ArtUnc_32: -0.08409477654661683 + ArtUnc_33: -0.056203225073985175 + ArtUnc_34: -0.08167182024114937 + ArtUnc_35: -0.08773620671064794 + ArtUnc_36: -0.037061892254628304 + ArtUnc_37: 0.0024416941282667287 + ArtUnc_38: 0.005311259237549614 + ArtUnc_39: 0.004140830387009761 + ArtUnc_40: 0.0023273358670159597 + ArtUnc_41: 0.016608369052248613 + ArtUnc_42: 0.017377037665656427 + ArtUnc_43: -0.007473878582718413 + ArtUnc_44: -0.01136699783501941 + ArtUnc_45: 0.012081466399688854 + ArtUnc_46: -0.006010521471543492 + ArtUnc_47: 0.014787560023833185 + ArtUnc_48: -0.004711128239898752 + ArtUnc_49: -0.007430677269866188 + ArtUnc_50: -0.006807979909466713 + ArtUnc_51: 0.0006050043502575601 + ArtUnc_52: -0.0001350414213422827 + ArtUnc_53: -0.0072927373415190835 + ArtUnc_54: 0.0021796124008489058 + ArtUnc_55: 0.0010621839197683008 + ArtUnc_56: 0.00038932020161372015 + ArtUnc_57: 2.8675619155647794e-06 + ArtUnc_58: -0.00011801018194304885 + ArtUnc_59: 0.00015106725253573715 + ArtUnc_60: 5.010764059745741e-05 + ArtUnc_61: -9.866999716198439e-06 + ArtUnc_62: -5.093667125678123e-05 + ArtUnc_63: 1.3994054984194227e-06 + ArtUnc_64: -7.893786420285958e-05 + ArtUnc_65: 6.916046599341139e-05 + ArtUnc_66: 4.153359855595592e-06 + ArtUnc_67: -3.7740188390941575e-06 + ArtUnc_68: -4.220146094322869e-06 + ArtUnc_69: -5.492019682323398e-06 + ArtUnc_70: -4.037667501783616e-06 + ArtUnc_71: 6.169350904763874e-06 + ArtUnc_72: -1.9239639399510934e-06 + ArtUnc_73: -2.479148957476188e-06 + ArtUnc_74: 1.4911766742091386e-05 + ArtUnc_75: 2.4181351515257655e-06 + ArtUnc_76: -4.5954891167824075e-07 + ArtUnc_77: -4.5068273257981715e-06 + ArtUnc_78: -3.171597684393666e-06 + ArtUnc_79: 7.267656447246022e-06 + ArtUnc_80: 8.86925522824323e-07 + ArtUnc_81: -3.4742103213120816e-07 + ArtUnc_82: -3.2867253404634625e-09 + ArtUnc_83: 4.799206644697428e-07 + ArtUnc_84: 4.956056692359477e-07 + ArtUnc_85: -3.0571751073164814e-07 + ArtUnc_86: -6.513106602556879e-08 + ArtUnc_87: -1.285266079731519e-07 + ArtUnc_88: -3.941215089842248e-07 + ArtUnc_89: -4.054728722557868e-07 + ArtUnc_90: -1.3450800291205652e-08 + ArtUnc_91: -7.577235197069439e-08 + ArtUnc_92: -1.9418480748555077e-08 + ArtUnc_93: 3.038985099760247e-07 + ArtUnc_94: -2.603149510967458e-07 + ArtUnc_95: 2.5716364133558877e-07 + ArtUnc_96: -1.7915995558900218e-09 - stat: 0 Uncorr: 0.251 RCES: 0.06333710346234663 @@ -4677,102 +4677,102 @@ bins: ModelRW_2: 0.5466501103996962 JES_1: 0.6285382810139729 JES_2: 0.6285382810139729 - ArtUnc_1: 0.009828482441487735 - ArtUnc_2: -0.004608717000644577 - ArtUnc_3: -0.002367722967671028 - ArtUnc_4: -0.0002992603290157714 - ArtUnc_5: -0.00012690827336530388 - ArtUnc_6: 6.221066045210017e-06 - ArtUnc_7: 8.451570832514642e-05 - ArtUnc_8: -0.027510575217467394 - ArtUnc_9: -1.5723655122747197e-05 - ArtUnc_10: 0.01782520377434654 - ArtUnc_11: -0.006729346020043541 - ArtUnc_12: 0.015601139436508949 - ArtUnc_13: -0.007047244784116721 - ArtUnc_14: -0.00655217351819557 - ArtUnc_15: -0.005325434628899753 - ArtUnc_16: 0.006491767310628188 - ArtUnc_17: 0.003418023898827354 - ArtUnc_18: -0.0016271913888615047 - ArtUnc_19: 0.0010176831113117685 - ArtUnc_20: -0.0012412268220375559 - ArtUnc_21: 0.0013910730652472807 - ArtUnc_22: -0.0009017674683387694 - ArtUnc_23: -4.58580457396342e-05 - ArtUnc_24: 0.0001413221668143694 - ArtUnc_25: -0.048844340697329666 - ArtUnc_26: -0.04181590905251658 - ArtUnc_27: -0.3258966386876538 - ArtUnc_28: 0.046280711933588965 - ArtUnc_29: 0.0308197731950588 - ArtUnc_30: 0.14587854716562434 - ArtUnc_31: 0.001639621949476087 - ArtUnc_32: -0.06785451207482246 - ArtUnc_33: -0.02266181334052346 - ArtUnc_34: 0.04182033033426069 - ArtUnc_35: 0.0690577377189733 - ArtUnc_36: -0.026864389685193148 - ArtUnc_37: -0.004292649218078493 - ArtUnc_38: -0.005080290696072506 - ArtUnc_39: 0.0008362842858754024 - ArtUnc_40: 0.0003095012144621889 - ArtUnc_41: -0.7052015856250874 - ArtUnc_42: -0.6327097492563725 - ArtUnc_43: 0.12172801961898731 - ArtUnc_44: 0.22099531757297722 - ArtUnc_45: -0.23647012932139075 - ArtUnc_46: 0.08099032950666239 - ArtUnc_47: 0.20664841683345464 - ArtUnc_48: -0.03826598893292267 - ArtUnc_49: -0.09491404193287428 - ArtUnc_50: -0.09824741575171746 - ArtUnc_51: -0.09017523379420644 - ArtUnc_52: 0.02814318215868148 - ArtUnc_53: 0.01119679334780394 - ArtUnc_54: -0.003444288089995832 - ArtUnc_55: 0.0017742998422924019 - ArtUnc_56: -0.0046173282151575155 - ArtUnc_57: -0.0010036416826925368 - ArtUnc_58: 0.00282317313894363 - ArtUnc_59: -0.001204653199342814 - ArtUnc_60: -0.0003414476538073429 - ArtUnc_61: -2.5372229813729875e-05 - ArtUnc_62: 0.0003273466917351464 - ArtUnc_63: 0.0002863249146864457 - ArtUnc_64: -0.0006345923426677806 - ArtUnc_65: -0.000538610575124353 - ArtUnc_66: -0.0011505629179389683 - ArtUnc_67: 0.0004560945531370805 - ArtUnc_68: 0.0030148469490411567 - ArtUnc_69: 0.002073800466422449 - ArtUnc_70: -0.0004925221551272268 - ArtUnc_71: -0.00026471775867247964 - ArtUnc_72: 0.00037625735442798074 - ArtUnc_73: 0.00026934779133247223 - ArtUnc_74: 0.00026473689865877446 - ArtUnc_75: 3.59520305997644e-05 - ArtUnc_76: 1.2460882397125119e-06 - ArtUnc_77: 4.642367619192158e-05 - ArtUnc_78: -3.9134180863925706e-05 - ArtUnc_79: -6.51698698504492e-05 - ArtUnc_80: -4.185286658610534e-07 - ArtUnc_81: 1.3553201993634238e-06 - ArtUnc_82: -1.3444472389723267e-09 - ArtUnc_83: -1.3574624362066917e-06 - ArtUnc_84: -3.53029436685307e-06 - ArtUnc_85: 1.2092535550320447e-06 - ArtUnc_86: -7.154831036186798e-06 - ArtUnc_87: 4.0481952286339225e-06 - ArtUnc_88: 2.553863669683852e-06 - ArtUnc_89: -1.0256192208287806e-05 - ArtUnc_90: -3.0734211339617674e-06 - ArtUnc_91: -2.4789324434247186e-06 - ArtUnc_92: 2.3925801886004683e-06 - ArtUnc_93: 2.928764715175451e-06 - ArtUnc_94: -7.50380017785513e-08 - ArtUnc_95: 6.988055593526797e-07 - ArtUnc_96: -9.190338720973444e-08 + ArtUnc_1: 0.009828482441487745 + ArtUnc_2: -0.00460871700064456 + ArtUnc_3: -0.002367722967671026 + ArtUnc_4: -0.00029926032901598235 + ArtUnc_5: -0.00012690827336534974 + ArtUnc_6: -6.2210660451003455e-06 + ArtUnc_7: -8.451570832595379e-05 + ArtUnc_8: 0.02751057521746776 + ArtUnc_9: 1.5723655127338393e-05 + ArtUnc_10: 0.017825203774346893 + ArtUnc_11: -0.006729346020044204 + ArtUnc_12: 0.015601139436504471 + ArtUnc_13: -0.007047244784114975 + ArtUnc_14: -0.0065521735181942676 + ArtUnc_15: -0.005325434628903351 + ArtUnc_16: 0.0064917673106256015 + ArtUnc_17: -0.0034180238988290863 + ArtUnc_18: 0.0016271913888590524 + ArtUnc_19: -0.0010176831113118696 + ArtUnc_20: 0.0012412268220376775 + ArtUnc_21: 0.0013910730652472933 + ArtUnc_22: -0.0009017674683374423 + ArtUnc_23: 4.585804574036141e-05 + ArtUnc_24: -0.0001413221668135053 + ArtUnc_25: 0.048844340697331595 + ArtUnc_26: 0.04181590905252278 + ArtUnc_27: 0.32589663868765795 + ArtUnc_28: -0.046280711933589666 + ArtUnc_29: -0.030819773195066773 + ArtUnc_30: 0.14587854716562404 + ArtUnc_31: -0.0016396219494746182 + ArtUnc_32: -0.0678545120748393 + ArtUnc_33: -0.022661813340476022 + ArtUnc_34: -0.04182033033426591 + ArtUnc_35: -0.06905773771897107 + ArtUnc_36: -0.026864389685190497 + ArtUnc_37: -0.004292649218077433 + ArtUnc_38: 0.0050802906960727345 + ArtUnc_39: 0.0008362842858768569 + ArtUnc_40: 0.0003095012144619919 + ArtUnc_41: -0.7052015856251063 + ArtUnc_42: -0.6327097492563641 + ArtUnc_43: 0.12172801961898926 + ArtUnc_44: 0.22099531757298294 + ArtUnc_45: -0.23647012932139355 + ArtUnc_46: 0.08099032950666608 + ArtUnc_47: -0.20664841683345517 + ArtUnc_48: 0.038265988932915405 + ArtUnc_49: 0.09491404193287561 + ArtUnc_50: 0.09824741575171583 + ArtUnc_51: -0.004617328215157453 + ArtUnc_52: 0.0017742998422925309 + ArtUnc_53: 0.09017523379420407 + ArtUnc_54: -0.028143182158681345 + ArtUnc_55: -0.011196793347803947 + ArtUnc_56: -0.0034442880899961553 + ArtUnc_57: 0.0010036416826926242 + ArtUnc_58: -0.0028231731389436556 + ArtUnc_59: 0.0012046531993427795 + ArtUnc_60: 0.0003414476538073182 + ArtUnc_61: 2.537222981374834e-05 + ArtUnc_62: -0.00032734669173514557 + ArtUnc_63: -0.00028632491468644916 + ArtUnc_64: -0.0006345923426677774 + ArtUnc_65: 0.0005386105751243396 + ArtUnc_66: -0.0011505629179389587 + ArtUnc_67: 0.0004560945531371202 + ArtUnc_68: 0.003014846949041353 + ArtUnc_69: 0.0020738004664223268 + ArtUnc_70: -0.00037625735442800627 + ArtUnc_71: 0.0004925221551271979 + ArtUnc_72: -0.00026471775867246614 + ArtUnc_73: 0.0002693477913324866 + ArtUnc_74: -0.00026473689865880184 + ArtUnc_75: -3.595203059976877e-05 + ArtUnc_76: 1.2460882397148897e-06 + ArtUnc_77: 4.642367619193105e-05 + ArtUnc_78: 3.913418086393189e-05 + ArtUnc_79: -6.51698698504578e-05 + ArtUnc_80: 4.185286658640881e-07 + ArtUnc_81: 1.355320199362528e-06 + ArtUnc_82: -1.3444472389898236e-09 + ArtUnc_83: -1.3574624362073272e-06 + ArtUnc_84: -3.5302943668521003e-06 + ArtUnc_85: 1.2092535550324354e-06 + ArtUnc_86: -2.392580188600286e-06 + ArtUnc_87: -2.9287647151749426e-06 + ArtUnc_88: -7.154831036187616e-06 + ArtUnc_89: -4.048195228634956e-06 + ArtUnc_90: 2.553863669683389e-06 + ArtUnc_91: -6.988055593524728e-07 + ArtUnc_92: -7.503800177848302e-08 + ArtUnc_93: -1.0256192208288061e-05 + ArtUnc_94: 3.073421133961953e-06 + ArtUnc_95: -2.478932443424516e-06 + ArtUnc_96: -9.190338720973543e-08 - stat: 0 Uncorr: 0.0509 RCES: 0.021619022272064015 @@ -4788,102 +4788,102 @@ bins: ModelRW_2: 0.29207304172308507 JES_1: 0.17355584535928195 JES_2: 0.17355584535928195 - ArtUnc_1: -6.164644459496333e-08 + ArtUnc_1: -6.164644459496338e-08 ArtUnc_2: 3.922489697003599e-06 - ArtUnc_3: 3.676532891100394e-06 - ArtUnc_4: 5.56487344764471e-07 - ArtUnc_5: 6.597432172993162e-07 - ArtUnc_6: -4.992344983074685e-07 - ArtUnc_7: 1.1475159680928933e-07 - ArtUnc_8: 9.85268949055519e-05 - ArtUnc_9: 4.4079656946630887e-07 - ArtUnc_10: 0.00017923445289304494 - ArtUnc_11: 7.616657232720363e-05 - ArtUnc_12: -4.4728975211691914e-05 - ArtUnc_13: -4.079778614206482e-05 - ArtUnc_14: 1.1653214759906138e-05 - ArtUnc_15: 2.9468682734544436e-05 - ArtUnc_16: -4.060088063748322e-05 - ArtUnc_17: -4.898611122436428e-05 - ArtUnc_18: 2.5000894892529564e-05 - ArtUnc_19: -1.889207092898967e-05 - ArtUnc_20: 3.208941532949087e-05 - ArtUnc_21: -3.183327131448302e-05 - ArtUnc_22: 1.902572815062949e-05 - ArtUnc_23: -7.026400508550222e-06 - ArtUnc_24: 5.427374187195018e-07 - ArtUnc_25: -0.0018049794383780081 - ArtUnc_26: 0.0011801587967397737 - ArtUnc_27: 0.00957849418161535 - ArtUnc_28: -0.0008501682735662729 - ArtUnc_29: -0.00090065037085261 - ArtUnc_30: -0.004665811728323799 - ArtUnc_31: -0.00010043484313471119 - ArtUnc_32: 0.0020131234135996206 - ArtUnc_33: 0.0006497633601130008 - ArtUnc_34: -0.0008514052295296936 - ArtUnc_35: -0.0011510551850159917 - ArtUnc_36: -5.32719746779371e-05 - ArtUnc_37: -0.00018763487850364906 - ArtUnc_38: -0.00037460143753174647 - ArtUnc_39: 0.00020843676093660634 - ArtUnc_40: 3.0350509533323387e-05 - ArtUnc_41: 0.1026626014015879 - ArtUnc_42: -0.09840882032617751 - ArtUnc_43: -0.06871362568789526 - ArtUnc_44: -0.00931737469487431 - ArtUnc_45: -0.0351818352211152 - ArtUnc_46: -0.029312409153198712 - ArtUnc_47: -0.013643854055219985 - ArtUnc_48: 0.033826594367277786 - ArtUnc_49: -0.004633542472206927 - ArtUnc_50: -0.02025841501175573 - ArtUnc_51: -0.02252368836875011 - ArtUnc_52: 0.009567457581226341 - ArtUnc_53: 0.009843605589854273 - ArtUnc_54: 0.0015170613413585646 - ArtUnc_55: 0.004771693908959932 - ArtUnc_56: -0.002384075134639636 - ArtUnc_57: -0.06258888615097233 - ArtUnc_58: 0.26121858121934344 - ArtUnc_59: -0.10808008735278968 - ArtUnc_60: -0.023049073521630832 - ArtUnc_61: 0.14287717897481966 - ArtUnc_62: -0.04647436774649933 - ArtUnc_63: -0.05445480327220323 - ArtUnc_64: 0.020264268067554825 - ArtUnc_65: 0.00208377706928161 - ArtUnc_66: 0.06705184198137588 - ArtUnc_67: -0.021510300671448226 - ArtUnc_68: -0.0835583452065412 - ArtUnc_69: -0.042482935947782685 - ArtUnc_70: 0.009286362438022399 - ArtUnc_71: 0.005984455381454777 - ArtUnc_72: -0.0015854931928308486 - ArtUnc_73: 0.0016273501516147152 - ArtUnc_74: 0.001251898970055396 - ArtUnc_75: 5.0258160043944296e-05 - ArtUnc_76: -5.509821488613624e-05 - ArtUnc_77: -0.00014416711829247207 - ArtUnc_78: 0.00010278516747366994 - ArtUnc_79: 0.0006061054586887364 - ArtUnc_80: 6.343135642241622e-05 - ArtUnc_81: 7.291486148517893e-05 - ArtUnc_82: 3.946880946781509e-07 - ArtUnc_83: 0.00013469409234429693 - ArtUnc_84: -0.00010207049142692077 - ArtUnc_85: -0.00010050144195657886 - ArtUnc_86: -0.000207775124867491 - ArtUnc_87: 0.00011443435620056058 - ArtUnc_88: 3.8873770841941044e-05 - ArtUnc_89: -0.0002676195551706335 - ArtUnc_90: -8.669785835344134e-05 - ArtUnc_91: 8.024371620582725e-06 - ArtUnc_92: -0.00011679913164205565 - ArtUnc_93: -7.445854981991481e-05 - ArtUnc_94: 4.009384033284143e-06 - ArtUnc_95: -2.328595519510194e-05 - ArtUnc_96: -2.1333954408291226e-05 + ArtUnc_3: 3.676532891100279e-06 + ArtUnc_4: 5.564873447651579e-07 + ArtUnc_5: 6.59743217294973e-07 + ArtUnc_6: 4.992344983248174e-07 + ArtUnc_7: -1.1475159678064252e-07 + ArtUnc_8: -9.852689490555703e-05 + ArtUnc_9: -4.407965694973057e-07 + ArtUnc_10: 0.0001792344528930398 + ArtUnc_11: 7.616657232721964e-05 + ArtUnc_12: -4.4728975211666266e-05 + ArtUnc_13: -4.0797786142070816e-05 + ArtUnc_14: 1.1653214759857445e-05 + ArtUnc_15: 2.9468682734613832e-05 + ArtUnc_16: -4.060088063743114e-05 + ArtUnc_17: 4.8986111224387076e-05 + ArtUnc_18: -2.500089489249813e-05 + ArtUnc_19: 1.8892070928952376e-05 + ArtUnc_20: -3.2089415329472654e-05 + ArtUnc_21: -3.1833271314447314e-05 + ArtUnc_22: 1.9025728150568153e-05 + ArtUnc_23: 7.026400508713268e-06 + ArtUnc_24: -5.427374187542625e-07 + ArtUnc_25: 0.00180497943837816 + ArtUnc_26: -0.0011801587967399964 + ArtUnc_27: -0.009578494181615448 + ArtUnc_28: 0.0008501682735662387 + ArtUnc_29: 0.0009006503708527966 + ArtUnc_30: -0.004665811728323744 + ArtUnc_31: 0.00010043484313485591 + ArtUnc_32: 0.002013123413600144 + ArtUnc_33: 0.0006497633601117199 + ArtUnc_34: 0.0008514052295296975 + ArtUnc_35: 0.001151055185015836 + ArtUnc_36: -5.32719746780574e-05 + ArtUnc_37: -0.00018763487850387555 + ArtUnc_38: 0.000374601437531586 + ArtUnc_39: 0.00020843676093705043 + ArtUnc_40: 3.0350509533418895e-05 + ArtUnc_41: 0.10266260140158713 + ArtUnc_42: -0.09840882032617902 + ArtUnc_43: -0.0687136256878946 + ArtUnc_44: -0.009317374694874054 + ArtUnc_45: -0.03518183522111571 + ArtUnc_46: -0.029312409153198906 + ArtUnc_47: 0.013643854055219597 + ArtUnc_48: -0.03382659436727794 + ArtUnc_49: 0.004633542472207272 + ArtUnc_50: 0.02025841501175562 + ArtUnc_51: -0.0023840751346399375 + ArtUnc_52: 0.004771693908960994 + ArtUnc_53: 0.022523688368749763 + ArtUnc_54: -0.009567457581226015 + ArtUnc_55: -0.009843605589854792 + ArtUnc_56: 0.001517061341357972 + ArtUnc_57: 0.06258888615097814 + ArtUnc_58: -0.26121858121934405 + ArtUnc_59: 0.10808008735278782 + ArtUnc_60: 0.023049073521630416 + ArtUnc_61: -0.14287717897482147 + ArtUnc_62: 0.04647436774649283 + ArtUnc_63: 0.05445480327220324 + ArtUnc_64: 0.020264268067555387 + ArtUnc_65: -0.002083777069281772 + ArtUnc_66: 0.06705184198137516 + ArtUnc_67: -0.021510300671449198 + ArtUnc_68: -0.08355834520654506 + ArtUnc_69: -0.04248293594777888 + ArtUnc_70: 0.0015854931928314551 + ArtUnc_71: -0.009286362438022215 + ArtUnc_72: 0.005984455381454388 + ArtUnc_73: 0.0016273501516143546 + ArtUnc_74: -0.001251898970055017 + ArtUnc_75: -5.0258160043893535e-05 + ArtUnc_76: -5.509821488616488e-05 + ArtUnc_77: -0.0001441671182925708 + ArtUnc_78: -0.00010278516747378758 + ArtUnc_79: 0.0006061054586888791 + ArtUnc_80: -6.34313564224788e-05 + ArtUnc_81: 7.291486148520376e-05 + ArtUnc_82: 3.946880946781465e-07 + ArtUnc_83: 0.0001346940923443161 + ArtUnc_84: -0.00010207049142693918 + ArtUnc_85: -0.00010050144195659215 + ArtUnc_86: 0.0001167991316420489 + ArtUnc_87: 7.445854981989877e-05 + ArtUnc_88: -0.00020777512486746868 + ArtUnc_89: -0.00011443435620054819 + ArtUnc_90: 3.887377084194982e-05 + ArtUnc_91: 2.3285955195096784e-05 + ArtUnc_92: 4.009384033282361e-06 + ArtUnc_93: -0.0002676195551706283 + ArtUnc_94: 8.669785835343736e-05 + ArtUnc_95: 8.024371620577143e-06 + ArtUnc_96: -2.1333954408291494e-05 - stat: 0 Uncorr: 0.00944 RCES: 0.0085173442997216 @@ -4899,102 +4899,102 @@ bins: ModelRW_2: 0.02309580452982749 JES_1: 0.04136038534056471 JES_2: 0.04136038534056471 - ArtUnc_1: -2.817126819950767e-08 - ArtUnc_2: 4.4684049988513985e-07 - ArtUnc_3: 6.06566938162903e-07 - ArtUnc_4: 2.2074680006429258e-07 - ArtUnc_5: -2.7226297565523305e-08 - ArtUnc_6: -1.0502030775142442e-08 - ArtUnc_7: -6.247091275967356e-09 - ArtUnc_8: 1.3352960960346633e-05 - ArtUnc_9: 5.195880521860876e-08 - ArtUnc_10: 2.174311254461487e-05 - ArtUnc_11: 1.438428343348627e-05 - ArtUnc_12: -6.488154730194581e-06 - ArtUnc_13: -1.2077849621578791e-05 - ArtUnc_14: -9.851969940031306e-07 - ArtUnc_15: -5.508344773231738e-06 - ArtUnc_16: -8.576868897549714e-07 - ArtUnc_17: -1.7036429902542261e-06 - ArtUnc_18: -2.257652907611229e-07 - ArtUnc_19: -1.2942610814162311e-06 - ArtUnc_20: 5.002398679522411e-06 - ArtUnc_21: -3.825337628274403e-06 - ArtUnc_22: 1.7604760362986067e-06 - ArtUnc_23: -6.148453535389899e-07 - ArtUnc_24: 8.647766601743679e-08 - ArtUnc_25: -0.00021897760157160368 - ArtUnc_26: 0.0001041769653105037 - ArtUnc_27: 0.0012450843536182547 - ArtUnc_28: -0.00017348975365976 - ArtUnc_29: -0.00015219103957117347 - ArtUnc_30: -0.0007465051590979212 - ArtUnc_31: -2.0704047750258446e-05 - ArtUnc_32: 0.0004343764298589348 - ArtUnc_33: 0.00012404908013743279 - ArtUnc_34: -0.0002862893515867421 - ArtUnc_35: -0.0004963590614518438 - ArtUnc_36: 0.00020282456223151047 - ArtUnc_37: 3.7094347069720885e-05 - ArtUnc_38: 4.106182778419227e-05 - ArtUnc_39: -6.799893174138268e-06 - ArtUnc_40: -1.4954824069585455e-06 - ArtUnc_41: 0.0008081930040477415 - ArtUnc_42: 0.002108683928137042 - ArtUnc_43: 0.00035821304071891865 - ArtUnc_44: -0.0005399654934629002 - ArtUnc_45: 0.001316493409075432 - ArtUnc_46: 0.00020101437821280166 - ArtUnc_47: -0.0006350875907169873 - ArtUnc_48: -0.00047593825956509703 - ArtUnc_49: 0.000602376009215324 - ArtUnc_50: 0.0009495179427234354 - ArtUnc_51: 0.0009883270985556625 - ArtUnc_52: -0.00035012232252778645 - ArtUnc_53: -0.0002381219447796239 - ArtUnc_54: -4.1236601124929335e-06 - ArtUnc_55: -7.65822539999393e-05 - ArtUnc_56: 6.923725304543144e-05 - ArtUnc_57: 0.020661271954792452 - ArtUnc_58: -0.03012617915198426 - ArtUnc_59: -0.0463298301030496 - ArtUnc_60: -0.017025874165601154 - ArtUnc_61: 0.008563593972698479 - ArtUnc_62: 0.012710627449859669 - ArtUnc_63: -0.004931348879742483 - ArtUnc_64: -0.01951139053213328 - ArtUnc_65: -0.01837312552201215 - ArtUnc_66: 0.0069553190698154 - ArtUnc_67: -0.0018328306634743797 - ArtUnc_68: -0.0002602993112448357 - ArtUnc_69: 0.0005484249307853947 - ArtUnc_70: -0.0007404022609204061 - ArtUnc_71: -0.00026912314771388465 - ArtUnc_72: 0.0001401840323889083 - ArtUnc_73: 0.07358766616309499 - ArtUnc_74: 0.08935275262643164 - ArtUnc_75: 0.012055679340105329 - ArtUnc_76: -0.0027011264050325317 - ArtUnc_77: 0.021387610532925833 - ArtUnc_78: -0.013447794794431011 - ArtUnc_79: -0.043068065429579305 - ArtUnc_80: -0.00025035287636590564 - ArtUnc_81: -0.0004905800793988719 - ArtUnc_82: -2.4339488351599227e-06 - ArtUnc_83: 0.00034942425994390856 - ArtUnc_84: 0.0003703550434100738 - ArtUnc_85: -0.00018102905776393803 - ArtUnc_86: 0.002600428908484644 - ArtUnc_87: 0.0023811496247881157 - ArtUnc_88: -0.0006337108544292563 - ArtUnc_89: 0.004616274227591015 - ArtUnc_90: -0.0008602099782936526 - ArtUnc_91: 0.000764431035628665 - ArtUnc_92: 0.0001438932534886056 - ArtUnc_93: 0.00039986682117638847 - ArtUnc_94: -3.0413386783335254e-05 - ArtUnc_95: 0.00015991026827909247 - ArtUnc_96: -1.4366715556161222e-06 + ArtUnc_1: -2.8171268199507716e-08 + ArtUnc_2: 4.468404998851395e-07 + ArtUnc_3: 6.065669381628866e-07 + ArtUnc_4: 2.2074680006442324e-07 + ArtUnc_5: -2.7226297566834386e-08 + ArtUnc_6: 1.0502030776599082e-08 + ArtUnc_7: 6.247091281933477e-09 + ArtUnc_8: -1.3352960960347073e-05 + ArtUnc_9: -5.195880523141805e-08 + ArtUnc_10: 2.1743112544614577e-05 + ArtUnc_11: 1.4384283433486833e-05 + ArtUnc_12: -6.488154730178476e-06 + ArtUnc_13: -1.2077849621583853e-05 + ArtUnc_14: -9.85196993995112e-07 + ArtUnc_15: -5.508344773231818e-06 + ArtUnc_16: -8.576868897751414e-07 + ArtUnc_17: 1.703642990227518e-06 + ArtUnc_18: 2.2576529075168028e-07 + ArtUnc_19: 1.2942610814684423e-06 + ArtUnc_20: -5.002398679556529e-06 + ArtUnc_21: -3.8253376283432924e-06 + ArtUnc_22: 1.7604760363566307e-06 + ArtUnc_23: 6.148453534215448e-07 + ArtUnc_24: -8.64776660808692e-08 + ArtUnc_25: 0.00021897760157158004 + ArtUnc_26: -0.00010417696531048306 + ArtUnc_27: -0.0012450843536182764 + ArtUnc_28: 0.0001734897536596235 + ArtUnc_29: 0.00015219103957132238 + ArtUnc_30: -0.0007465051590978547 + ArtUnc_31: 2.0704047749812754e-05 + ArtUnc_32: 0.0004343764298588992 + ArtUnc_33: 0.0001240490801374033 + ArtUnc_34: 0.0002862893515864769 + ArtUnc_35: 0.000496359061452056 + ArtUnc_36: 0.00020282456223106611 + ArtUnc_37: 3.709434707071476e-05 + ArtUnc_38: -4.1061827783918016e-05 + ArtUnc_39: -6.799893174198059e-06 + ArtUnc_40: -1.495482406591319e-06 + ArtUnc_41: 0.0008081930040474229 + ArtUnc_42: 0.0021086839281373873 + ArtUnc_43: 0.00035821304071842616 + ArtUnc_44: -0.0005399654934635183 + ArtUnc_45: 0.001316493409075148 + ArtUnc_46: 0.0002010143782132027 + ArtUnc_47: 0.0006350875907164479 + ArtUnc_48: 0.0004759382595654312 + ArtUnc_49: -0.0006023760092153574 + ArtUnc_50: -0.0009495179427241272 + ArtUnc_51: 6.923725304565707e-05 + ArtUnc_52: -7.658225400022983e-05 + ArtUnc_53: -0.0009883270985561877 + ArtUnc_54: 0.00035012232252784885 + ArtUnc_55: 0.00023812194477975467 + ArtUnc_56: -4.123660112127637e-06 + ArtUnc_57: -0.02066127195479415 + ArtUnc_58: 0.030126179151983706 + ArtUnc_59: 0.046329830103050265 + ArtUnc_60: 0.01702587416560102 + ArtUnc_61: -0.008563593972697963 + ArtUnc_62: -0.012710627449860143 + ArtUnc_63: 0.004931348879743005 + ArtUnc_64: -0.019511390532134486 + ArtUnc_65: 0.01837312552201359 + ArtUnc_66: 0.006955319069816964 + ArtUnc_67: -0.001832830663475033 + ArtUnc_68: -0.00026029931124660403 + ArtUnc_69: 0.000548424930784027 + ArtUnc_70: -0.00014018403238890204 + ArtUnc_71: 0.0007404022609201388 + ArtUnc_72: -0.0002691231477139737 + ArtUnc_73: 0.07358766616309388 + ArtUnc_74: -0.0893527526264328 + ArtUnc_75: -0.012055679340105704 + ArtUnc_76: -0.0027011264050323686 + ArtUnc_77: 0.021387610532927363 + ArtUnc_78: 0.013447794794430668 + ArtUnc_79: -0.04306806542957896 + ArtUnc_80: 0.0002503528763656325 + ArtUnc_81: -0.0004905800793986709 + ArtUnc_82: -2.433948835170254e-06 + ArtUnc_83: 0.00034942425994394585 + ArtUnc_84: 0.0003703550434099853 + ArtUnc_85: -0.00018102905776399447 + ArtUnc_86: -0.00014389325348863863 + ArtUnc_87: -0.0003998668211764174 + ArtUnc_88: 0.00260042890848475 + ArtUnc_89: -0.0023811496247879713 + ArtUnc_90: -0.0006337108544291929 + ArtUnc_91: -0.000159910268279095 + ArtUnc_92: -3.0413386783324703e-05 + ArtUnc_93: 0.004616274227591099 + ArtUnc_94: 0.0008602099782936573 + ArtUnc_95: 0.0007644310356287082 + ArtUnc_96: -1.4366715556144155e-06 - stat: 0 Uncorr: 0.00109 RCES: 0.0018267421184994888 @@ -5010,102 +5010,102 @@ bins: ModelRW_2: 0.016262748860509407 JES_1: 0.006465537850016811 JES_2: 0.006465537850016811 - ArtUnc_1: 6.041525253143828e-10 - ArtUnc_2: -7.457087380483391e-10 - ArtUnc_3: -1.4082834307512728e-10 - ArtUnc_4: 5.259751980809698e-10 - ArtUnc_5: -6.923695139523178e-10 - ArtUnc_6: 3.3208895331698243e-10 - ArtUnc_7: 8.073137294780598e-12 - ArtUnc_8: -1.2230927873465858e-07 - ArtUnc_9: -5.113647669890167e-10 - ArtUnc_10: -2.2446935066345123e-07 - ArtUnc_11: -1.4326065212866686e-07 - ArtUnc_12: 1.153026085468027e-08 - ArtUnc_13: 1.1174732880309481e-07 - ArtUnc_14: 2.4558207141038358e-08 - ArtUnc_15: 8.883175741719856e-10 - ArtUnc_16: 3.6467441648207014e-08 - ArtUnc_17: 8.236732097262847e-08 - ArtUnc_18: -5.197226792070373e-08 - ArtUnc_19: 3.841247467637868e-08 - ArtUnc_20: -6.425356531140175e-08 - ArtUnc_21: 6.155293697788874e-08 - ArtUnc_22: -2.951676174829013e-08 - ArtUnc_23: 5.562899998071879e-09 - ArtUnc_24: -7.151556924463854e-10 - ArtUnc_25: 1.608931748776258e-06 - ArtUnc_26: -1.8646694530908165e-06 - ArtUnc_27: -1.1274858886782248e-05 - ArtUnc_28: 6.938518411524558e-07 - ArtUnc_29: 4.5559441224943266e-07 - ArtUnc_30: 1.961726405134673e-06 - ArtUnc_31: -2.1287085839396652e-08 - ArtUnc_32: 4.881844799100779e-07 - ArtUnc_33: 2.1793478494002968e-08 - ArtUnc_34: -7.364259583222377e-07 - ArtUnc_35: -1.4923928499632316e-06 - ArtUnc_36: 7.430948147792464e-07 - ArtUnc_37: 1.8178644101091007e-07 - ArtUnc_38: 2.3100931027139345e-07 - ArtUnc_39: -2.047416229184488e-07 - ArtUnc_40: -7.423803500036187e-08 - ArtUnc_41: 0.0005268887524988114 - ArtUnc_42: -0.0005714659827221061 - ArtUnc_43: -0.00027022218346637445 - ArtUnc_44: 1.639807218947462e-05 - ArtUnc_45: -0.00017043659189344178 - ArtUnc_46: -4.9978593562796565e-05 - ArtUnc_47: 3.940253779989799e-05 - ArtUnc_48: 3.0242333060471106e-05 - ArtUnc_49: -2.5495449976636212e-05 - ArtUnc_50: -6.6918278221475645e-06 - ArtUnc_51: 4.833166067699923e-05 - ArtUnc_52: -2.4613900281051554e-05 - ArtUnc_53: -5.019518747024589e-05 - ArtUnc_54: -7.534173203401729e-06 - ArtUnc_55: -2.9103029027200832e-05 - ArtUnc_56: 1.4789803073690994e-05 - ArtUnc_57: 0.0009724406566382068 - ArtUnc_58: -0.0025805819255820058 - ArtUnc_59: -0.0003722812543555839 - ArtUnc_60: -0.00024486307773781673 - ArtUnc_61: -0.000750290877691974 - ArtUnc_62: 0.0006032959090819328 - ArtUnc_63: 0.00021837644109062756 - ArtUnc_64: -0.0006049467434411304 - ArtUnc_65: -0.000469840672415627 - ArtUnc_66: -0.00016047606982258245 - ArtUnc_67: 5.597628896179762e-05 - ArtUnc_68: 0.00021823897883524966 - ArtUnc_69: 1.100866729218056e-05 - ArtUnc_70: -1.7410499464597899e-06 - ArtUnc_71: 1.5512309295244594e-05 - ArtUnc_72: -9.332428840907835e-05 - ArtUnc_73: 0.0011714027120292337 - ArtUnc_74: 0.00027863115780019164 - ArtUnc_75: -0.000287000157299122 - ArtUnc_76: 0.0072247650818527 - ArtUnc_77: -0.0013220955446080014 - ArtUnc_78: -0.01613476439515327 - ArtUnc_79: 0.00381306711786311 - ArtUnc_80: 0.005064477730472728 - ArtUnc_81: 0.0034362312205621515 - ArtUnc_82: 2.2412802282072182e-05 - ArtUnc_83: 0.022201540076900495 - ArtUnc_84: -0.004456629085650692 - ArtUnc_85: -0.017428639534710202 - ArtUnc_86: -0.011385699670263552 - ArtUnc_87: 0.00778080219253493 - ArtUnc_88: 0.0018988296326871237 - ArtUnc_89: -0.008045285761312297 - ArtUnc_90: -0.0034782788311635794 - ArtUnc_91: 0.00022653556448832082 - ArtUnc_92: -0.02149648344381187 - ArtUnc_93: -0.013607990667775922 - ArtUnc_94: 0.0005860095065114094 - ArtUnc_95: -0.00395969577280809 - ArtUnc_96: -0.004254928877904954 + ArtUnc_1: 6.041525253143837e-10 + ArtUnc_2: -7.457087380483398e-10 + ArtUnc_3: -1.4082834307497503e-10 + ArtUnc_4: 5.259751980797566e-10 + ArtUnc_5: -6.923695139325593e-10 + ArtUnc_6: -3.3208895333728377e-10 + ArtUnc_7: -8.073137240863234e-12 + ArtUnc_8: 1.2230927873466213e-07 + ArtUnc_9: 5.113647670230508e-10 + ArtUnc_10: -2.244693506634476e-07 + ArtUnc_11: -1.432606521286891e-07 + ArtUnc_12: 1.1530260854438604e-08 + ArtUnc_13: 1.117473288031136e-07 + ArtUnc_14: 2.455820714133376e-08 + ArtUnc_15: 8.883175739142325e-10 + ArtUnc_16: 3.64674416477968e-08 + ArtUnc_17: -8.23673209728863e-08 + ArtUnc_18: 5.197226792066097e-08 + ArtUnc_19: -3.841247467568004e-08 + ArtUnc_20: 6.425356531113657e-08 + ArtUnc_21: 6.155293697544512e-08 + ArtUnc_22: -2.9516761746782553e-08 + ArtUnc_23: -5.562900001094921e-09 + ArtUnc_24: 7.151556918564961e-10 + ArtUnc_25: -1.6089317487759996e-06 + ArtUnc_26: 1.8646694530904163e-06 + ArtUnc_27: 1.1274858886782353e-05 + ArtUnc_28: -6.938518411540835e-07 + ArtUnc_29: -4.555944122477703e-07 + ArtUnc_30: 1.9617264051350774e-06 + ArtUnc_31: 2.1287085831880707e-08 + ArtUnc_32: 4.881844799069134e-07 + ArtUnc_33: 2.179347849928199e-08 + ArtUnc_34: 7.364259583162062e-07 + ArtUnc_35: 1.4923928499667925e-06 + ArtUnc_36: 7.430948147728629e-07 + ArtUnc_37: 1.8178644102041127e-07 + ArtUnc_38: -2.3100931026616919e-07 + ArtUnc_39: -2.047416229297779e-07 + ArtUnc_40: -7.4238034992303e-08 + ArtUnc_41: 0.0005268887524987921 + ArtUnc_42: -0.0005714659827220986 + ArtUnc_43: -0.00027022218346638225 + ArtUnc_44: 1.6398072189473574e-05 + ArtUnc_45: -0.00017043659189344853 + ArtUnc_46: -4.997859356279252e-05 + ArtUnc_47: -3.9402537799913584e-05 + ArtUnc_48: -3.0242333060468175e-05 + ArtUnc_49: 2.5495449976636246e-05 + ArtUnc_50: 6.691827822136524e-06 + ArtUnc_51: 1.4789803073696317e-05 + ArtUnc_52: -2.910302902721402e-05 + ArtUnc_53: -4.8331660677013445e-05 + ArtUnc_54: 2.46139002810582e-05 + ArtUnc_55: 5.0195187470255184e-05 + ArtUnc_56: -7.534173203397271e-06 + ArtUnc_57: -0.0009724406566382886 + ArtUnc_58: 0.002580581925581996 + ArtUnc_59: 0.0003722812543556141 + ArtUnc_60: 0.00024486307773779494 + ArtUnc_61: 0.0007502908776919723 + ArtUnc_62: -0.000603295909081876 + ArtUnc_63: -0.00021837644109062352 + ArtUnc_64: -0.0006049467434411995 + ArtUnc_65: 0.0004698406724156381 + ArtUnc_66: -0.00016047606982258857 + ArtUnc_67: 5.597628896170966e-05 + ArtUnc_68: 0.0002182389788351802 + ArtUnc_69: 1.1008667292203844e-05 + ArtUnc_70: 9.332428840909884e-05 + ArtUnc_71: 1.7410499463531618e-06 + ArtUnc_72: 1.5512309295234166e-05 + ArtUnc_73: 0.001171402712029326 + ArtUnc_74: -0.0002786311578004168 + ArtUnc_75: 0.00028700015729913036 + ArtUnc_76: 0.007224765081852715 + ArtUnc_77: -0.0013220955446067943 + ArtUnc_78: 0.01613476439515324 + ArtUnc_79: 0.0038130671178633353 + ArtUnc_80: -0.005064477730472428 + ArtUnc_81: 0.003436231220562271 + ArtUnc_82: 2.2412802282053842e-05 + ArtUnc_83: 0.022201540076900436 + ArtUnc_84: -0.0044566290856507575 + ArtUnc_85: -0.01742863953471023 + ArtUnc_86: 0.021496483443812036 + ArtUnc_87: 0.013607990667775918 + ArtUnc_88: -0.011385699670263238 + ArtUnc_89: -0.007780802192535263 + ArtUnc_90: 0.001898829632687188 + ArtUnc_91: 0.003959695772808286 + ArtUnc_92: 0.0005860095065112893 + ArtUnc_93: -0.008045285761312283 + ArtUnc_94: 0.0034782788311635373 + ArtUnc_95: 0.00022653556448828135 + ArtUnc_96: -0.004254928877905018 - stat: 0 Uncorr: 0.7040000000000001 RCES: 3.8529965664142507 @@ -5122,101 +5122,101 @@ bins: JES_1: 0.9452068488960499 JES_2: 0.9452068488960499 ArtUnc_1: 0.862390513360958 - ArtUnc_2: -0.0585223341972758 - ArtUnc_3: -0.015617481349614281 - ArtUnc_4: -0.02865956582028331 - ArtUnc_5: 0.024560404389025382 - ArtUnc_6: 0.01369754229357918 - ArtUnc_7: -0.03126673580103048 - ArtUnc_8: 8.052766469309573 - ArtUnc_9: 0.0038695705497448643 - ArtUnc_10: -5.440340482204737 - ArtUnc_11: 0.5063656603501598 - ArtUnc_12: 0.13134908148401084 - ArtUnc_13: 1.5029665042315419 - ArtUnc_14: -0.028689992197552618 - ArtUnc_15: 0.18002815502716843 - ArtUnc_16: 0.014250407028977898 - ArtUnc_17: -0.04851242069981796 - ArtUnc_18: 0.29940436496149647 - ArtUnc_19: -0.07767460929124594 - ArtUnc_20: -0.2717761425707225 - ArtUnc_21: 0.04717710535467236 - ArtUnc_22: 0.03848277959299325 - ArtUnc_23: -0.014740246882677633 - ArtUnc_24: -0.002989650130971767 - ArtUnc_25: 0.04036369541606758 - ArtUnc_26: 0.09302467152124247 - ArtUnc_27: 0.014597160954111526 - ArtUnc_28: 0.03227102341406198 - ArtUnc_29: -0.011743211789941789 - ArtUnc_30: -0.020758408969679874 - ArtUnc_31: -0.011241230788636574 - ArtUnc_32: 0.007682375996861734 - ArtUnc_33: 0.006482760235230509 - ArtUnc_34: -0.008580794784232671 - ArtUnc_35: -0.004056435036263777 - ArtUnc_36: 0.0008921238755738536 - ArtUnc_37: -0.0021935306004609665 - ArtUnc_38: -0.0009761650792591071 - ArtUnc_39: -0.0005096127087808091 - ArtUnc_40: -0.0005619835756197858 - ArtUnc_41: -0.0031631785001944813 - ArtUnc_42: -0.002833615200537957 - ArtUnc_43: 0.0007371773212970561 - ArtUnc_44: 0.0013088878222306671 - ArtUnc_45: -0.0012901354777218276 - ArtUnc_46: 0.000796063416044034 - ArtUnc_47: 0.0016605377633478315 - ArtUnc_48: -0.0004132208519303545 - ArtUnc_49: -0.0007064806487292458 - ArtUnc_50: -0.0008218480678580298 - ArtUnc_51: -0.0007009699714016416 - ArtUnc_52: 0.00017757524658647763 - ArtUnc_53: -9.061136987680712e-06 - ArtUnc_54: -0.00013438631943932464 - ArtUnc_55: 7.824198600373515e-05 - ArtUnc_56: -0.0001362899566796528 - ArtUnc_57: -9.964845519297443e-06 - ArtUnc_58: 1.122877378876763e-05 - ArtUnc_59: 1.3513642131207025e-05 - ArtUnc_60: 4.997737295236754e-06 - ArtUnc_61: -1.0751982835758077e-05 - ArtUnc_62: -6.136271969468173e-06 - ArtUnc_63: 7.0241953046404945e-06 - ArtUnc_64: 1.104379494273857e-05 - ArtUnc_65: 6.8579771992259895e-06 - ArtUnc_66: 1.5782301702338166e-06 - ArtUnc_67: 1.8570889589515615e-07 - ArtUnc_68: 7.24148349806898e-06 - ArtUnc_69: 9.093223014310866e-06 - ArtUnc_70: -4.916213171292747e-07 - ArtUnc_71: -5.360034925647852e-07 - ArtUnc_72: 2.251432226795964e-07 - ArtUnc_73: 1.5427469524348637e-06 - ArtUnc_74: 2.3515148923935714e-06 - ArtUnc_75: 4.3175359448502795e-07 - ArtUnc_76: 1.127293496046763e-07 - ArtUnc_77: 7.517926745289768e-07 - ArtUnc_78: -5.095707024872688e-07 - ArtUnc_79: -7.866491425713704e-07 - ArtUnc_80: -9.43488938444306e-08 - ArtUnc_81: -1.1980382405504978e-08 - ArtUnc_82: -4.258541093895629e-10 - ArtUnc_83: -4.412159234028068e-08 - ArtUnc_84: -2.5736692776210896e-08 - ArtUnc_85: 4.2710197772579343e-08 - ArtUnc_86: 7.8015829568531e-09 - ArtUnc_87: 5.735037683417709e-10 - ArtUnc_88: -9.147156941503064e-08 - ArtUnc_89: -1.3073151315178207e-07 - ArtUnc_90: -8.733441907194588e-08 - ArtUnc_91: 2.3566459633314016e-08 - ArtUnc_92: -8.348804058711307e-09 - ArtUnc_93: -1.7661293696835112e-08 - ArtUnc_94: 4.852624460880265e-09 - ArtUnc_95: -2.0837586511281873e-08 - ArtUnc_96: -8.364543817190377e-09 + ArtUnc_2: -0.058522334197274935 + ArtUnc_3: -0.015617481349614557 + ArtUnc_4: -0.02865956582028775 + ArtUnc_5: 0.024560404389031128 + ArtUnc_6: -0.013697542293582938 + ArtUnc_7: 0.0312667358010939 + ArtUnc_8: -8.052766469309553 + ArtUnc_9: -0.003869570549781359 + ArtUnc_10: -5.440340482204765 + ArtUnc_11: 0.5063656603501565 + ArtUnc_12: 0.13134908148404048 + ArtUnc_13: 1.5029665042315448 + ArtUnc_14: -0.02868999219755132 + ArtUnc_15: 0.1800281550271725 + ArtUnc_16: 0.01425040702897497 + ArtUnc_17: 0.04851242069982236 + ArtUnc_18: -0.2994043649614981 + ArtUnc_19: 0.07767460929125639 + ArtUnc_20: 0.2717761425707195 + ArtUnc_21: 0.047177105354672885 + ArtUnc_22: 0.03848277959299294 + ArtUnc_23: 0.014740246882677685 + ArtUnc_24: 0.0029896501309716835 + ArtUnc_25: -0.04036369541606761 + ArtUnc_26: -0.09302467152124266 + ArtUnc_27: -0.014597160954110492 + ArtUnc_28: -0.032271023414061836 + ArtUnc_29: 0.011743211789942889 + ArtUnc_30: -0.02075840896967938 + ArtUnc_31: 0.011241230788636522 + ArtUnc_32: 0.007682375996866057 + ArtUnc_33: 0.006482760235225154 + ArtUnc_34: 0.008580794784233063 + ArtUnc_35: 0.004056435036263157 + ArtUnc_36: 0.0008921238755738741 + ArtUnc_37: -0.0021935306004609617 + ArtUnc_38: 0.0009761650792590337 + ArtUnc_39: -0.0005096127087808053 + ArtUnc_40: -0.0005619835756197868 + ArtUnc_41: -0.0031631785001945928 + ArtUnc_42: -0.002833615200537926 + ArtUnc_43: 0.000737177321297061 + ArtUnc_44: 0.001308887822230703 + ArtUnc_45: -0.0012901354777218469 + ArtUnc_46: 0.0007960634160440661 + ArtUnc_47: -0.0016605377633478362 + ArtUnc_48: 0.00041322085193029644 + ArtUnc_49: 0.0007064806487292607 + ArtUnc_50: 0.0008218480678580217 + ArtUnc_51: -0.00013628995667965135 + ArtUnc_52: 7.824198600373727e-05 + ArtUnc_53: 0.0007009699714016272 + ArtUnc_54: -0.00017757524658647804 + ArtUnc_55: 9.061136987685657e-06 + ArtUnc_56: -0.00013438631943932383 + ArtUnc_57: 9.964845519297726e-06 + ArtUnc_58: -1.1228773788767014e-05 + ArtUnc_59: -1.3513642131206547e-05 + ArtUnc_60: -4.997737295236594e-06 + ArtUnc_61: 1.0751982835757547e-05 + ArtUnc_62: 6.1362719694684646e-06 + ArtUnc_63: -7.024195304640522e-06 + ArtUnc_64: 1.104379494273848e-05 + ArtUnc_65: -6.857977199225964e-06 + ArtUnc_66: 1.578230170233843e-06 + ArtUnc_67: 1.8570889589523063e-07 + ArtUnc_68: 7.241483498069554e-06 + ArtUnc_69: 9.093223014310423e-06 + ArtUnc_70: -2.2514322267953912e-07 + ArtUnc_71: 4.916213171292535e-07 + ArtUnc_72: -5.360034925647657e-07 + ArtUnc_73: 1.5427469524348488e-06 + ArtUnc_74: -2.3515148923936133e-06 + ArtUnc_75: -4.317535944850396e-07 + ArtUnc_76: 1.1272934960468206e-07 + ArtUnc_77: 7.517926745290272e-07 + ArtUnc_78: 5.095707024872422e-07 + ArtUnc_79: -7.8664914257136e-07 + ArtUnc_80: 9.434889384442472e-08 + ArtUnc_81: -1.1980382405502867e-08 + ArtUnc_82: -4.258541093895767e-10 + ArtUnc_83: -4.4121592340278306e-08 + ArtUnc_84: -2.5736692776212392e-08 + ArtUnc_85: 4.2710197772578146e-08 + ArtUnc_86: 8.348804058710194e-09 + ArtUnc_87: 1.766129369683349e-08 + ArtUnc_88: 7.80158295685783e-09 + ArtUnc_89: -5.735037683417001e-10 + ArtUnc_90: -9.147156941503087e-08 + ArtUnc_91: 2.083758651128185e-08 + ArtUnc_92: 4.8526244608792894e-09 + ArtUnc_93: -1.3073151315177993e-07 + ArtUnc_94: 8.733441907194496e-08 + ArtUnc_95: 2.3566459633314595e-08 + ArtUnc_96: -8.364543817190556e-09 - stat: 0 Uncorr: 0.559 RCES: 1.6135334318429848 @@ -5232,102 +5232,102 @@ bins: ModelRW_2: 0.46642177500627036 JES_1: 0.7658402006619919 JES_2: 0.7658402006619919 - ArtUnc_1: 0.13203839691016306 - ArtUnc_2: -0.0018981155812128453 - ArtUnc_3: 0.030449734167063695 - ArtUnc_4: 0.016599559452784796 - ArtUnc_5: -0.007039446793514841 - ArtUnc_6: 0.001674499070408551 - ArtUnc_7: -0.00015496188070864445 - ArtUnc_8: -0.04741118864007381 - ArtUnc_9: -0.0007186835313007978 - ArtUnc_10: -0.43052640155181093 - ArtUnc_11: -0.3402840139397078 - ArtUnc_12: 0.39895212060858115 - ArtUnc_13: 0.09101270589019789 - ArtUnc_14: -0.04546627440151189 - ArtUnc_15: 0.009692340009631114 - ArtUnc_16: 0.033194936534638134 - ArtUnc_17: -0.05060998404362767 - ArtUnc_18: 0.06042621545255223 - ArtUnc_19: -0.0421258089941154 - ArtUnc_20: -0.015698438313400037 - ArtUnc_21: -0.02794838949429772 - ArtUnc_22: 0.037847574133300005 - ArtUnc_23: -0.021509993525688612 - ArtUnc_24: 0.0004039371438069027 - ArtUnc_25: -3.271928974855699 - ArtUnc_26: -1.3315714679588317 - ArtUnc_27: -0.38737893889621744 - ArtUnc_28: -0.6847540037957475 - ArtUnc_29: -0.02089315840519039 - ArtUnc_30: 0.24155149523280106 - ArtUnc_31: 0.05080766078860316 - ArtUnc_32: -0.08409477654657979 - ArtUnc_33: -0.056203225074044176 - ArtUnc_34: 0.0816718202411427 - ArtUnc_35: 0.08773620671065417 - ArtUnc_36: -0.03706189225462979 - ArtUnc_37: 0.0024416941282670228 - ArtUnc_38: -0.005311259237549454 - ArtUnc_39: 0.004140830387009792 - ArtUnc_40: 0.0023273358670159654 - ArtUnc_41: 0.016608369052247947 - ArtUnc_42: 0.017377037665656576 - ArtUnc_43: -0.00747387858271836 - ArtUnc_44: -0.011366997835019018 - ArtUnc_45: 0.012081466399688648 - ArtUnc_46: -0.006010521471543163 - ArtUnc_47: -0.014787560023833005 - ArtUnc_48: 0.00471112823989923 - ArtUnc_49: 0.007430677269866008 - ArtUnc_50: 0.0068079799094667255 - ArtUnc_51: 0.007292737341519148 - ArtUnc_52: -0.0021796124008489014 - ArtUnc_53: -0.0010621839197682802 - ArtUnc_54: 0.00038932020161367266 - ArtUnc_55: -0.00013504142134225413 - ArtUnc_56: 0.0006050043502575571 - ArtUnc_57: -2.8675619155665895e-06 - ArtUnc_58: 0.00011801018194305257 - ArtUnc_59: -0.00015106725253573102 - ArtUnc_60: -5.0107640597455927e-05 - ArtUnc_61: 9.86699971619997e-06 - ArtUnc_62: 5.093667125677953e-05 - ArtUnc_63: -1.3994054984177e-06 - ArtUnc_64: -7.893786420285647e-05 - ArtUnc_65: -6.916046599340792e-05 - ArtUnc_66: 4.153359855592597e-06 - ArtUnc_67: -3.774018839093155e-06 - ArtUnc_68: -4.220146094319829e-06 - ArtUnc_69: -5.492019682321761e-06 - ArtUnc_70: -6.1693509047642875e-06 - ArtUnc_71: -1.923963939951251e-06 - ArtUnc_72: 4.037667501783322e-06 - ArtUnc_73: -2.4791489574757286e-06 - ArtUnc_74: -1.4911766742090438e-05 - ArtUnc_75: -2.4181351515255923e-06 - ArtUnc_76: -4.5954891167815134e-07 - ArtUnc_77: -4.506827325797678e-06 - ArtUnc_78: 3.1715976843935505e-06 - ArtUnc_79: 7.267656447245819e-06 - ArtUnc_80: -8.869255228243919e-07 - ArtUnc_81: -3.4742103213119546e-07 - ArtUnc_82: -3.2867253404633533e-09 - ArtUnc_83: 4.799206644697365e-07 - ArtUnc_84: 4.956056692359648e-07 - ArtUnc_85: -3.057175107316412e-07 - ArtUnc_86: -3.941215089842415e-07 - ArtUnc_87: 4.0547287225579874e-07 - ArtUnc_88: -1.3450800291205406e-08 - ArtUnc_89: 3.038985099760333e-07 - ArtUnc_90: 2.603149510967373e-07 - ArtUnc_91: 2.5716364133559936e-07 - ArtUnc_92: 6.513106602556618e-08 - ArtUnc_93: 1.2852660797314178e-07 - ArtUnc_94: -1.941848074855664e-08 - ArtUnc_95: 7.577235197068728e-08 - ArtUnc_96: -1.791599555890439e-09 + ArtUnc_1: 0.1320383969101628 + ArtUnc_2: -0.0018981155812127922 + ArtUnc_3: 0.030449734167063938 + ArtUnc_4: 0.016599559452785167 + ArtUnc_5: -0.007039446793516058 + ArtUnc_6: -0.0016744990704085601 + ArtUnc_7: 0.00015496188070738973 + ArtUnc_8: 0.04741118864007513 + ArtUnc_9: 0.0007186835312962168 + ArtUnc_10: -0.4305264015518117 + ArtUnc_11: -0.3402840139397071 + ArtUnc_12: 0.3989521206085828 + ArtUnc_13: 0.09101270589019123 + ArtUnc_14: -0.0454662744015132 + ArtUnc_15: 0.009692340009628061 + ArtUnc_16: 0.03319493653463854 + ArtUnc_17: 0.05060998404362843 + ArtUnc_18: -0.06042621545255102 + ArtUnc_19: 0.04212580899411449 + ArtUnc_20: 0.015698438313396287 + ArtUnc_21: -0.027948389494300365 + ArtUnc_22: 0.03784757413331094 + ArtUnc_23: 0.021509993525674447 + ArtUnc_24: -0.0004039371438018868 + ArtUnc_25: 3.2719289748556997 + ArtUnc_26: 1.3315714679588329 + ArtUnc_27: 0.3873789388962019 + ArtUnc_28: 0.6847540037957462 + ArtUnc_29: 0.020893158405177158 + ArtUnc_30: 0.24155149523280334 + ArtUnc_31: -0.05080766078860241 + ArtUnc_32: -0.08409477654661683 + ArtUnc_33: -0.056203225073985175 + ArtUnc_34: -0.08167182024114937 + ArtUnc_35: -0.08773620671064794 + ArtUnc_36: -0.037061892254628304 + ArtUnc_37: 0.0024416941282667287 + ArtUnc_38: 0.005311259237549614 + ArtUnc_39: 0.004140830387009761 + ArtUnc_40: 0.0023273358670159597 + ArtUnc_41: 0.016608369052248613 + ArtUnc_42: 0.017377037665656427 + ArtUnc_43: -0.007473878582718413 + ArtUnc_44: -0.01136699783501941 + ArtUnc_45: 0.012081466399688854 + ArtUnc_46: -0.006010521471543492 + ArtUnc_47: 0.014787560023833185 + ArtUnc_48: -0.004711128239898752 + ArtUnc_49: -0.007430677269866188 + ArtUnc_50: -0.006807979909466713 + ArtUnc_51: 0.0006050043502575601 + ArtUnc_52: -0.0001350414213422827 + ArtUnc_53: -0.0072927373415190835 + ArtUnc_54: 0.0021796124008489058 + ArtUnc_55: 0.0010621839197683008 + ArtUnc_56: 0.00038932020161372015 + ArtUnc_57: 2.8675619155647794e-06 + ArtUnc_58: -0.00011801018194304885 + ArtUnc_59: 0.00015106725253573715 + ArtUnc_60: 5.010764059745741e-05 + ArtUnc_61: -9.866999716198439e-06 + ArtUnc_62: -5.093667125678123e-05 + ArtUnc_63: 1.3994054984194227e-06 + ArtUnc_64: -7.893786420285958e-05 + ArtUnc_65: 6.916046599341139e-05 + ArtUnc_66: 4.153359855595592e-06 + ArtUnc_67: -3.7740188390941575e-06 + ArtUnc_68: -4.220146094322869e-06 + ArtUnc_69: -5.492019682323398e-06 + ArtUnc_70: -4.037667501783616e-06 + ArtUnc_71: 6.169350904763874e-06 + ArtUnc_72: -1.9239639399510934e-06 + ArtUnc_73: -2.479148957476188e-06 + ArtUnc_74: 1.4911766742091386e-05 + ArtUnc_75: 2.4181351515257655e-06 + ArtUnc_76: -4.5954891167824075e-07 + ArtUnc_77: -4.5068273257981715e-06 + ArtUnc_78: -3.171597684393666e-06 + ArtUnc_79: 7.267656447246022e-06 + ArtUnc_80: 8.86925522824323e-07 + ArtUnc_81: -3.4742103213120816e-07 + ArtUnc_82: -3.2867253404634625e-09 + ArtUnc_83: 4.799206644697428e-07 + ArtUnc_84: 4.956056692359477e-07 + ArtUnc_85: -3.0571751073164814e-07 + ArtUnc_86: -6.513106602556879e-08 + ArtUnc_87: -1.285266079731519e-07 + ArtUnc_88: -3.941215089842248e-07 + ArtUnc_89: -4.054728722557868e-07 + ArtUnc_90: -1.3450800291205652e-08 + ArtUnc_91: -7.577235197069439e-08 + ArtUnc_92: -1.9418480748555077e-08 + ArtUnc_93: 3.038985099760247e-07 + ArtUnc_94: -2.603149510967458e-07 + ArtUnc_95: 2.5716364133558877e-07 + ArtUnc_96: -1.7915995558900218e-09 - stat: 0 Uncorr: 0.18100000000000002 RCES: 0.316972293426413 @@ -5343,102 +5343,102 @@ bins: ModelRW_2: 0.28924909991216907 JES_1: 0.4451215613037634 JES_2: 0.4451215613037634 - ArtUnc_1: 0.009828482441487735 - ArtUnc_2: -0.004608717000644577 - ArtUnc_3: -0.002367722967671028 - ArtUnc_4: -0.0002992603290157714 - ArtUnc_5: -0.00012690827336530388 - ArtUnc_6: 6.221066045210017e-06 - ArtUnc_7: 8.451570832514642e-05 - ArtUnc_8: -0.027510575217467394 - ArtUnc_9: -1.5723655122747197e-05 - ArtUnc_10: 0.01782520377434654 - ArtUnc_11: -0.006729346020043541 - ArtUnc_12: 0.015601139436508949 - ArtUnc_13: -0.007047244784116721 - ArtUnc_14: -0.00655217351819557 - ArtUnc_15: -0.005325434628899753 - ArtUnc_16: 0.006491767310628188 - ArtUnc_17: 0.003418023898827354 - ArtUnc_18: -0.0016271913888615047 - ArtUnc_19: 0.0010176831113117685 - ArtUnc_20: -0.0012412268220375559 - ArtUnc_21: 0.0013910730652472807 - ArtUnc_22: -0.0009017674683387694 - ArtUnc_23: -4.58580457396342e-05 - ArtUnc_24: 0.0001413221668143694 - ArtUnc_25: -0.048844340697329666 - ArtUnc_26: -0.04181590905251658 - ArtUnc_27: -0.3258966386876538 - ArtUnc_28: 0.046280711933588965 - ArtUnc_29: 0.0308197731950588 - ArtUnc_30: 0.14587854716562434 - ArtUnc_31: 0.001639621949476087 - ArtUnc_32: -0.06785451207482246 - ArtUnc_33: -0.02266181334052346 - ArtUnc_34: 0.04182033033426069 - ArtUnc_35: 0.0690577377189733 - ArtUnc_36: -0.026864389685193148 - ArtUnc_37: -0.004292649218078493 - ArtUnc_38: -0.005080290696072506 - ArtUnc_39: 0.0008362842858754024 - ArtUnc_40: 0.0003095012144621889 - ArtUnc_41: -0.7052015856250874 - ArtUnc_42: -0.6327097492563725 - ArtUnc_43: 0.12172801961898731 - ArtUnc_44: 0.22099531757297722 - ArtUnc_45: -0.23647012932139075 - ArtUnc_46: 0.08099032950666239 - ArtUnc_47: 0.20664841683345464 - ArtUnc_48: -0.03826598893292267 - ArtUnc_49: -0.09491404193287428 - ArtUnc_50: -0.09824741575171746 - ArtUnc_51: -0.09017523379420644 - ArtUnc_52: 0.02814318215868148 - ArtUnc_53: 0.01119679334780394 - ArtUnc_54: -0.003444288089995832 - ArtUnc_55: 0.0017742998422924019 - ArtUnc_56: -0.0046173282151575155 - ArtUnc_57: -0.0010036416826925368 - ArtUnc_58: 0.00282317313894363 - ArtUnc_59: -0.001204653199342814 - ArtUnc_60: -0.0003414476538073429 - ArtUnc_61: -2.5372229813729875e-05 - ArtUnc_62: 0.0003273466917351464 - ArtUnc_63: 0.0002863249146864457 - ArtUnc_64: -0.0006345923426677806 - ArtUnc_65: -0.000538610575124353 - ArtUnc_66: -0.0011505629179389683 - ArtUnc_67: 0.0004560945531370805 - ArtUnc_68: 0.0030148469490411567 - ArtUnc_69: 0.002073800466422449 - ArtUnc_70: -0.0004925221551272268 - ArtUnc_71: -0.00026471775867247964 - ArtUnc_72: 0.00037625735442798074 - ArtUnc_73: 0.00026934779133247223 - ArtUnc_74: 0.00026473689865877446 - ArtUnc_75: 3.59520305997644e-05 - ArtUnc_76: 1.2460882397125119e-06 - ArtUnc_77: 4.642367619192158e-05 - ArtUnc_78: -3.9134180863925706e-05 - ArtUnc_79: -6.51698698504492e-05 - ArtUnc_80: -4.185286658610534e-07 - ArtUnc_81: 1.3553201993634238e-06 - ArtUnc_82: -1.3444472389723267e-09 - ArtUnc_83: -1.3574624362066917e-06 - ArtUnc_84: -3.53029436685307e-06 - ArtUnc_85: 1.2092535550320447e-06 - ArtUnc_86: -7.154831036186798e-06 - ArtUnc_87: 4.0481952286339225e-06 - ArtUnc_88: 2.553863669683852e-06 - ArtUnc_89: -1.0256192208287806e-05 - ArtUnc_90: -3.0734211339617674e-06 - ArtUnc_91: -2.4789324434247186e-06 - ArtUnc_92: 2.3925801886004683e-06 - ArtUnc_93: 2.928764715175451e-06 - ArtUnc_94: -7.50380017785513e-08 - ArtUnc_95: 6.988055593526797e-07 - ArtUnc_96: -9.190338720973444e-08 + ArtUnc_1: 0.009828482441487745 + ArtUnc_2: -0.00460871700064456 + ArtUnc_3: -0.002367722967671026 + ArtUnc_4: -0.00029926032901598235 + ArtUnc_5: -0.00012690827336534974 + ArtUnc_6: -6.2210660451003455e-06 + ArtUnc_7: -8.451570832595379e-05 + ArtUnc_8: 0.02751057521746776 + ArtUnc_9: 1.5723655127338393e-05 + ArtUnc_10: 0.017825203774346893 + ArtUnc_11: -0.006729346020044204 + ArtUnc_12: 0.015601139436504471 + ArtUnc_13: -0.007047244784114975 + ArtUnc_14: -0.0065521735181942676 + ArtUnc_15: -0.005325434628903351 + ArtUnc_16: 0.0064917673106256015 + ArtUnc_17: -0.0034180238988290863 + ArtUnc_18: 0.0016271913888590524 + ArtUnc_19: -0.0010176831113118696 + ArtUnc_20: 0.0012412268220376775 + ArtUnc_21: 0.0013910730652472933 + ArtUnc_22: -0.0009017674683374423 + ArtUnc_23: 4.585804574036141e-05 + ArtUnc_24: -0.0001413221668135053 + ArtUnc_25: 0.048844340697331595 + ArtUnc_26: 0.04181590905252278 + ArtUnc_27: 0.32589663868765795 + ArtUnc_28: -0.046280711933589666 + ArtUnc_29: -0.030819773195066773 + ArtUnc_30: 0.14587854716562404 + ArtUnc_31: -0.0016396219494746182 + ArtUnc_32: -0.0678545120748393 + ArtUnc_33: -0.022661813340476022 + ArtUnc_34: -0.04182033033426591 + ArtUnc_35: -0.06905773771897107 + ArtUnc_36: -0.026864389685190497 + ArtUnc_37: -0.004292649218077433 + ArtUnc_38: 0.0050802906960727345 + ArtUnc_39: 0.0008362842858768569 + ArtUnc_40: 0.0003095012144619919 + ArtUnc_41: -0.7052015856251063 + ArtUnc_42: -0.6327097492563641 + ArtUnc_43: 0.12172801961898926 + ArtUnc_44: 0.22099531757298294 + ArtUnc_45: -0.23647012932139355 + ArtUnc_46: 0.08099032950666608 + ArtUnc_47: -0.20664841683345517 + ArtUnc_48: 0.038265988932915405 + ArtUnc_49: 0.09491404193287561 + ArtUnc_50: 0.09824741575171583 + ArtUnc_51: -0.004617328215157453 + ArtUnc_52: 0.0017742998422925309 + ArtUnc_53: 0.09017523379420407 + ArtUnc_54: -0.028143182158681345 + ArtUnc_55: -0.011196793347803947 + ArtUnc_56: -0.0034442880899961553 + ArtUnc_57: 0.0010036416826926242 + ArtUnc_58: -0.0028231731389436556 + ArtUnc_59: 0.0012046531993427795 + ArtUnc_60: 0.0003414476538073182 + ArtUnc_61: 2.537222981374834e-05 + ArtUnc_62: -0.00032734669173514557 + ArtUnc_63: -0.00028632491468644916 + ArtUnc_64: -0.0006345923426677774 + ArtUnc_65: 0.0005386105751243396 + ArtUnc_66: -0.0011505629179389587 + ArtUnc_67: 0.0004560945531371202 + ArtUnc_68: 0.003014846949041353 + ArtUnc_69: 0.0020738004664223268 + ArtUnc_70: -0.00037625735442800627 + ArtUnc_71: 0.0004925221551271979 + ArtUnc_72: -0.00026471775867246614 + ArtUnc_73: 0.0002693477913324866 + ArtUnc_74: -0.00026473689865880184 + ArtUnc_75: -3.595203059976877e-05 + ArtUnc_76: 1.2460882397148897e-06 + ArtUnc_77: 4.642367619193105e-05 + ArtUnc_78: 3.913418086393189e-05 + ArtUnc_79: -6.51698698504578e-05 + ArtUnc_80: 4.185286658640881e-07 + ArtUnc_81: 1.355320199362528e-06 + ArtUnc_82: -1.3444472389898236e-09 + ArtUnc_83: -1.3574624362073272e-06 + ArtUnc_84: -3.5302943668521003e-06 + ArtUnc_85: 1.2092535550324354e-06 + ArtUnc_86: -2.392580188600286e-06 + ArtUnc_87: -2.9287647151749426e-06 + ArtUnc_88: -7.154831036187616e-06 + ArtUnc_89: -4.048195228634956e-06 + ArtUnc_90: 2.553863669683389e-06 + ArtUnc_91: -6.988055593524728e-07 + ArtUnc_92: -7.503800177848302e-08 + ArtUnc_93: -1.0256192208288061e-05 + ArtUnc_94: 3.073421133961953e-06 + ArtUnc_95: -2.478932443424516e-06 + ArtUnc_96: -9.190338720973543e-08 - stat: 0 Uncorr: 0.034100000000000005 RCES: 0.042921322008996884 @@ -5454,102 +5454,102 @@ bins: ModelRW_2: 0.04689881363504838 JES_1: 0.14294388920307158 JES_2: 0.14294388920307158 - ArtUnc_1: -6.164644459496333e-08 + ArtUnc_1: -6.164644459496338e-08 ArtUnc_2: 3.922489697003599e-06 - ArtUnc_3: 3.676532891100394e-06 - ArtUnc_4: 5.56487344764471e-07 - ArtUnc_5: 6.597432172993162e-07 - ArtUnc_6: -4.992344983074685e-07 - ArtUnc_7: 1.1475159680928933e-07 - ArtUnc_8: 9.85268949055519e-05 - ArtUnc_9: 4.4079656946630887e-07 - ArtUnc_10: 0.00017923445289304494 - ArtUnc_11: 7.616657232720363e-05 - ArtUnc_12: -4.4728975211691914e-05 - ArtUnc_13: -4.079778614206482e-05 - ArtUnc_14: 1.1653214759906138e-05 - ArtUnc_15: 2.9468682734544436e-05 - ArtUnc_16: -4.060088063748322e-05 - ArtUnc_17: -4.898611122436428e-05 - ArtUnc_18: 2.5000894892529564e-05 - ArtUnc_19: -1.889207092898967e-05 - ArtUnc_20: 3.208941532949087e-05 - ArtUnc_21: -3.183327131448302e-05 - ArtUnc_22: 1.902572815062949e-05 - ArtUnc_23: -7.026400508550222e-06 - ArtUnc_24: 5.427374187195018e-07 - ArtUnc_25: -0.0018049794383780081 - ArtUnc_26: 0.0011801587967397737 - ArtUnc_27: 0.00957849418161535 - ArtUnc_28: -0.0008501682735662729 - ArtUnc_29: -0.00090065037085261 - ArtUnc_30: -0.004665811728323799 - ArtUnc_31: -0.00010043484313471119 - ArtUnc_32: 0.0020131234135996206 - ArtUnc_33: 0.0006497633601130008 - ArtUnc_34: -0.0008514052295296936 - ArtUnc_35: -0.0011510551850159917 - ArtUnc_36: -5.32719746779371e-05 - ArtUnc_37: -0.00018763487850364906 - ArtUnc_38: -0.00037460143753174647 - ArtUnc_39: 0.00020843676093660634 - ArtUnc_40: 3.0350509533323387e-05 - ArtUnc_41: 0.1026626014015879 - ArtUnc_42: -0.09840882032617751 - ArtUnc_43: -0.06871362568789526 - ArtUnc_44: -0.00931737469487431 - ArtUnc_45: -0.0351818352211152 - ArtUnc_46: -0.029312409153198712 - ArtUnc_47: -0.013643854055219985 - ArtUnc_48: 0.033826594367277786 - ArtUnc_49: -0.004633542472206927 - ArtUnc_50: -0.02025841501175573 - ArtUnc_51: -0.02252368836875011 - ArtUnc_52: 0.009567457581226341 - ArtUnc_53: 0.009843605589854273 - ArtUnc_54: 0.0015170613413585646 - ArtUnc_55: 0.004771693908959932 - ArtUnc_56: -0.002384075134639636 - ArtUnc_57: -0.06258888615097233 - ArtUnc_58: 0.26121858121934344 - ArtUnc_59: -0.10808008735278968 - ArtUnc_60: -0.023049073521630832 - ArtUnc_61: 0.14287717897481966 - ArtUnc_62: -0.04647436774649933 - ArtUnc_63: -0.05445480327220323 - ArtUnc_64: 0.020264268067554825 - ArtUnc_65: 0.00208377706928161 - ArtUnc_66: 0.06705184198137588 - ArtUnc_67: -0.021510300671448226 - ArtUnc_68: -0.0835583452065412 - ArtUnc_69: -0.042482935947782685 - ArtUnc_70: 0.009286362438022399 - ArtUnc_71: 0.005984455381454777 - ArtUnc_72: -0.0015854931928308486 - ArtUnc_73: 0.0016273501516147152 - ArtUnc_74: 0.001251898970055396 - ArtUnc_75: 5.0258160043944296e-05 - ArtUnc_76: -5.509821488613624e-05 - ArtUnc_77: -0.00014416711829247207 - ArtUnc_78: 0.00010278516747366994 - ArtUnc_79: 0.0006061054586887364 - ArtUnc_80: 6.343135642241622e-05 - ArtUnc_81: 7.291486148517893e-05 - ArtUnc_82: 3.946880946781509e-07 - ArtUnc_83: 0.00013469409234429693 - ArtUnc_84: -0.00010207049142692077 - ArtUnc_85: -0.00010050144195657886 - ArtUnc_86: -0.000207775124867491 - ArtUnc_87: 0.00011443435620056058 - ArtUnc_88: 3.8873770841941044e-05 - ArtUnc_89: -0.0002676195551706335 - ArtUnc_90: -8.669785835344134e-05 - ArtUnc_91: 8.024371620582725e-06 - ArtUnc_92: -0.00011679913164205565 - ArtUnc_93: -7.445854981991481e-05 - ArtUnc_94: 4.009384033284143e-06 - ArtUnc_95: -2.328595519510194e-05 - ArtUnc_96: -2.1333954408291226e-05 + ArtUnc_3: 3.676532891100279e-06 + ArtUnc_4: 5.564873447651579e-07 + ArtUnc_5: 6.59743217294973e-07 + ArtUnc_6: 4.992344983248174e-07 + ArtUnc_7: -1.1475159678064252e-07 + ArtUnc_8: -9.852689490555703e-05 + ArtUnc_9: -4.407965694973057e-07 + ArtUnc_10: 0.0001792344528930398 + ArtUnc_11: 7.616657232721964e-05 + ArtUnc_12: -4.4728975211666266e-05 + ArtUnc_13: -4.0797786142070816e-05 + ArtUnc_14: 1.1653214759857445e-05 + ArtUnc_15: 2.9468682734613832e-05 + ArtUnc_16: -4.060088063743114e-05 + ArtUnc_17: 4.8986111224387076e-05 + ArtUnc_18: -2.500089489249813e-05 + ArtUnc_19: 1.8892070928952376e-05 + ArtUnc_20: -3.2089415329472654e-05 + ArtUnc_21: -3.1833271314447314e-05 + ArtUnc_22: 1.9025728150568153e-05 + ArtUnc_23: 7.026400508713268e-06 + ArtUnc_24: -5.427374187542625e-07 + ArtUnc_25: 0.00180497943837816 + ArtUnc_26: -0.0011801587967399964 + ArtUnc_27: -0.009578494181615448 + ArtUnc_28: 0.0008501682735662387 + ArtUnc_29: 0.0009006503708527966 + ArtUnc_30: -0.004665811728323744 + ArtUnc_31: 0.00010043484313485591 + ArtUnc_32: 0.002013123413600144 + ArtUnc_33: 0.0006497633601117199 + ArtUnc_34: 0.0008514052295296975 + ArtUnc_35: 0.001151055185015836 + ArtUnc_36: -5.32719746780574e-05 + ArtUnc_37: -0.00018763487850387555 + ArtUnc_38: 0.000374601437531586 + ArtUnc_39: 0.00020843676093705043 + ArtUnc_40: 3.0350509533418895e-05 + ArtUnc_41: 0.10266260140158713 + ArtUnc_42: -0.09840882032617902 + ArtUnc_43: -0.0687136256878946 + ArtUnc_44: -0.009317374694874054 + ArtUnc_45: -0.03518183522111571 + ArtUnc_46: -0.029312409153198906 + ArtUnc_47: 0.013643854055219597 + ArtUnc_48: -0.03382659436727794 + ArtUnc_49: 0.004633542472207272 + ArtUnc_50: 0.02025841501175562 + ArtUnc_51: -0.0023840751346399375 + ArtUnc_52: 0.004771693908960994 + ArtUnc_53: 0.022523688368749763 + ArtUnc_54: -0.009567457581226015 + ArtUnc_55: -0.009843605589854792 + ArtUnc_56: 0.001517061341357972 + ArtUnc_57: 0.06258888615097814 + ArtUnc_58: -0.26121858121934405 + ArtUnc_59: 0.10808008735278782 + ArtUnc_60: 0.023049073521630416 + ArtUnc_61: -0.14287717897482147 + ArtUnc_62: 0.04647436774649283 + ArtUnc_63: 0.05445480327220324 + ArtUnc_64: 0.020264268067555387 + ArtUnc_65: -0.002083777069281772 + ArtUnc_66: 0.06705184198137516 + ArtUnc_67: -0.021510300671449198 + ArtUnc_68: -0.08355834520654506 + ArtUnc_69: -0.04248293594777888 + ArtUnc_70: 0.0015854931928314551 + ArtUnc_71: -0.009286362438022215 + ArtUnc_72: 0.005984455381454388 + ArtUnc_73: 0.0016273501516143546 + ArtUnc_74: -0.001251898970055017 + ArtUnc_75: -5.0258160043893535e-05 + ArtUnc_76: -5.509821488616488e-05 + ArtUnc_77: -0.0001441671182925708 + ArtUnc_78: -0.00010278516747378758 + ArtUnc_79: 0.0006061054586888791 + ArtUnc_80: -6.34313564224788e-05 + ArtUnc_81: 7.291486148520376e-05 + ArtUnc_82: 3.946880946781465e-07 + ArtUnc_83: 0.0001346940923443161 + ArtUnc_84: -0.00010207049142693918 + ArtUnc_85: -0.00010050144195659215 + ArtUnc_86: 0.0001167991316420489 + ArtUnc_87: 7.445854981989877e-05 + ArtUnc_88: -0.00020777512486746868 + ArtUnc_89: -0.00011443435620054819 + ArtUnc_90: 3.887377084194982e-05 + ArtUnc_91: 2.3285955195096784e-05 + ArtUnc_92: 4.009384033282361e-06 + ArtUnc_93: -0.0002676195551706283 + ArtUnc_94: 8.669785835343736e-05 + ArtUnc_95: 8.024371620577143e-06 + ArtUnc_96: -2.1333954408291494e-05 - stat: 0 Uncorr: 0.0046300000000000004 RCES: 0.00905126514527113 @@ -5565,102 +5565,102 @@ bins: ModelRW_2: 0.006073136778778327 JES_1: 0.024848281955373693 JES_2: 0.024848281955373693 - ArtUnc_1: -2.817126819950767e-08 - ArtUnc_2: 4.4684049988513985e-07 - ArtUnc_3: 6.06566938162903e-07 - ArtUnc_4: 2.2074680006429258e-07 - ArtUnc_5: -2.7226297565523305e-08 - ArtUnc_6: -1.0502030775142442e-08 - ArtUnc_7: -6.247091275967356e-09 - ArtUnc_8: 1.3352960960346633e-05 - ArtUnc_9: 5.195880521860876e-08 - ArtUnc_10: 2.174311254461487e-05 - ArtUnc_11: 1.438428343348627e-05 - ArtUnc_12: -6.488154730194581e-06 - ArtUnc_13: -1.2077849621578791e-05 - ArtUnc_14: -9.851969940031306e-07 - ArtUnc_15: -5.508344773231738e-06 - ArtUnc_16: -8.576868897549714e-07 - ArtUnc_17: -1.7036429902542261e-06 - ArtUnc_18: -2.257652907611229e-07 - ArtUnc_19: -1.2942610814162311e-06 - ArtUnc_20: 5.002398679522411e-06 - ArtUnc_21: -3.825337628274403e-06 - ArtUnc_22: 1.7604760362986067e-06 - ArtUnc_23: -6.148453535389899e-07 - ArtUnc_24: 8.647766601743679e-08 - ArtUnc_25: -0.00021897760157160368 - ArtUnc_26: 0.0001041769653105037 - ArtUnc_27: 0.0012450843536182547 - ArtUnc_28: -0.00017348975365976 - ArtUnc_29: -0.00015219103957117347 - ArtUnc_30: -0.0007465051590979212 - ArtUnc_31: -2.0704047750258446e-05 - ArtUnc_32: 0.0004343764298589348 - ArtUnc_33: 0.00012404908013743279 - ArtUnc_34: -0.0002862893515867421 - ArtUnc_35: -0.0004963590614518438 - ArtUnc_36: 0.00020282456223151047 - ArtUnc_37: 3.7094347069720885e-05 - ArtUnc_38: 4.106182778419227e-05 - ArtUnc_39: -6.799893174138268e-06 - ArtUnc_40: -1.4954824069585455e-06 - ArtUnc_41: 0.0008081930040477415 - ArtUnc_42: 0.002108683928137042 - ArtUnc_43: 0.00035821304071891865 - ArtUnc_44: -0.0005399654934629002 - ArtUnc_45: 0.001316493409075432 - ArtUnc_46: 0.00020101437821280166 - ArtUnc_47: -0.0006350875907169873 - ArtUnc_48: -0.00047593825956509703 - ArtUnc_49: 0.000602376009215324 - ArtUnc_50: 0.0009495179427234354 - ArtUnc_51: 0.0009883270985556625 - ArtUnc_52: -0.00035012232252778645 - ArtUnc_53: -0.0002381219447796239 - ArtUnc_54: -4.1236601124929335e-06 - ArtUnc_55: -7.65822539999393e-05 - ArtUnc_56: 6.923725304543144e-05 - ArtUnc_57: 0.020661271954792452 - ArtUnc_58: -0.03012617915198426 - ArtUnc_59: -0.0463298301030496 - ArtUnc_60: -0.017025874165601154 - ArtUnc_61: 0.008563593972698479 - ArtUnc_62: 0.012710627449859669 - ArtUnc_63: -0.004931348879742483 - ArtUnc_64: -0.01951139053213328 - ArtUnc_65: -0.01837312552201215 - ArtUnc_66: 0.0069553190698154 - ArtUnc_67: -0.0018328306634743797 - ArtUnc_68: -0.0002602993112448357 - ArtUnc_69: 0.0005484249307853947 - ArtUnc_70: -0.0007404022609204061 - ArtUnc_71: -0.00026912314771388465 - ArtUnc_72: 0.0001401840323889083 - ArtUnc_73: 0.07358766616309499 - ArtUnc_74: 0.08935275262643164 - ArtUnc_75: 0.012055679340105329 - ArtUnc_76: -0.0027011264050325317 - ArtUnc_77: 0.021387610532925833 - ArtUnc_78: -0.013447794794431011 - ArtUnc_79: -0.043068065429579305 - ArtUnc_80: -0.00025035287636590564 - ArtUnc_81: -0.0004905800793988719 - ArtUnc_82: -2.4339488351599227e-06 - ArtUnc_83: 0.00034942425994390856 - ArtUnc_84: 0.0003703550434100738 - ArtUnc_85: -0.00018102905776393803 - ArtUnc_86: 0.002600428908484644 - ArtUnc_87: 0.0023811496247881157 - ArtUnc_88: -0.0006337108544292563 - ArtUnc_89: 0.004616274227591015 - ArtUnc_90: -0.0008602099782936526 - ArtUnc_91: 0.000764431035628665 - ArtUnc_92: 0.0001438932534886056 - ArtUnc_93: 0.00039986682117638847 - ArtUnc_94: -3.0413386783335254e-05 - ArtUnc_95: 0.00015991026827909247 - ArtUnc_96: -1.4366715556161222e-06 + ArtUnc_1: -2.8171268199507716e-08 + ArtUnc_2: 4.468404998851395e-07 + ArtUnc_3: 6.065669381628866e-07 + ArtUnc_4: 2.2074680006442324e-07 + ArtUnc_5: -2.7226297566834386e-08 + ArtUnc_6: 1.0502030776599082e-08 + ArtUnc_7: 6.247091281933477e-09 + ArtUnc_8: -1.3352960960347073e-05 + ArtUnc_9: -5.195880523141805e-08 + ArtUnc_10: 2.1743112544614577e-05 + ArtUnc_11: 1.4384283433486833e-05 + ArtUnc_12: -6.488154730178476e-06 + ArtUnc_13: -1.2077849621583853e-05 + ArtUnc_14: -9.85196993995112e-07 + ArtUnc_15: -5.508344773231818e-06 + ArtUnc_16: -8.576868897751414e-07 + ArtUnc_17: 1.703642990227518e-06 + ArtUnc_18: 2.2576529075168028e-07 + ArtUnc_19: 1.2942610814684423e-06 + ArtUnc_20: -5.002398679556529e-06 + ArtUnc_21: -3.8253376283432924e-06 + ArtUnc_22: 1.7604760363566307e-06 + ArtUnc_23: 6.148453534215448e-07 + ArtUnc_24: -8.64776660808692e-08 + ArtUnc_25: 0.00021897760157158004 + ArtUnc_26: -0.00010417696531048306 + ArtUnc_27: -0.0012450843536182764 + ArtUnc_28: 0.0001734897536596235 + ArtUnc_29: 0.00015219103957132238 + ArtUnc_30: -0.0007465051590978547 + ArtUnc_31: 2.0704047749812754e-05 + ArtUnc_32: 0.0004343764298588992 + ArtUnc_33: 0.0001240490801374033 + ArtUnc_34: 0.0002862893515864769 + ArtUnc_35: 0.000496359061452056 + ArtUnc_36: 0.00020282456223106611 + ArtUnc_37: 3.709434707071476e-05 + ArtUnc_38: -4.1061827783918016e-05 + ArtUnc_39: -6.799893174198059e-06 + ArtUnc_40: -1.495482406591319e-06 + ArtUnc_41: 0.0008081930040474229 + ArtUnc_42: 0.0021086839281373873 + ArtUnc_43: 0.00035821304071842616 + ArtUnc_44: -0.0005399654934635183 + ArtUnc_45: 0.001316493409075148 + ArtUnc_46: 0.0002010143782132027 + ArtUnc_47: 0.0006350875907164479 + ArtUnc_48: 0.0004759382595654312 + ArtUnc_49: -0.0006023760092153574 + ArtUnc_50: -0.0009495179427241272 + ArtUnc_51: 6.923725304565707e-05 + ArtUnc_52: -7.658225400022983e-05 + ArtUnc_53: -0.0009883270985561877 + ArtUnc_54: 0.00035012232252784885 + ArtUnc_55: 0.00023812194477975467 + ArtUnc_56: -4.123660112127637e-06 + ArtUnc_57: -0.02066127195479415 + ArtUnc_58: 0.030126179151983706 + ArtUnc_59: 0.046329830103050265 + ArtUnc_60: 0.01702587416560102 + ArtUnc_61: -0.008563593972697963 + ArtUnc_62: -0.012710627449860143 + ArtUnc_63: 0.004931348879743005 + ArtUnc_64: -0.019511390532134486 + ArtUnc_65: 0.01837312552201359 + ArtUnc_66: 0.006955319069816964 + ArtUnc_67: -0.001832830663475033 + ArtUnc_68: -0.00026029931124660403 + ArtUnc_69: 0.000548424930784027 + ArtUnc_70: -0.00014018403238890204 + ArtUnc_71: 0.0007404022609201388 + ArtUnc_72: -0.0002691231477139737 + ArtUnc_73: 0.07358766616309388 + ArtUnc_74: -0.0893527526264328 + ArtUnc_75: -0.012055679340105704 + ArtUnc_76: -0.0027011264050323686 + ArtUnc_77: 0.021387610532927363 + ArtUnc_78: 0.013447794794430668 + ArtUnc_79: -0.04306806542957896 + ArtUnc_80: 0.0002503528763656325 + ArtUnc_81: -0.0004905800793986709 + ArtUnc_82: -2.433948835170254e-06 + ArtUnc_83: 0.00034942425994394585 + ArtUnc_84: 0.0003703550434099853 + ArtUnc_85: -0.00018102905776399447 + ArtUnc_86: -0.00014389325348863863 + ArtUnc_87: -0.0003998668211764174 + ArtUnc_88: 0.00260042890848475 + ArtUnc_89: -0.0023811496247879713 + ArtUnc_90: -0.0006337108544291929 + ArtUnc_91: -0.000159910268279095 + ArtUnc_92: -3.0413386783324703e-05 + ArtUnc_93: 0.004616274227591099 + ArtUnc_94: 0.0008602099782936573 + ArtUnc_95: 0.0007644310356287082 + ArtUnc_96: -1.4366715556144155e-06 - stat: 0 Uncorr: 0.000999 RCES: 0.0019387486212180784 @@ -5676,99 +5676,99 @@ bins: ModelRW_2: 0.011934623544357715 JES_1: 0.007133876941687284 JES_2: 0.007133876941687284 - ArtUnc_1: 6.041525253143828e-10 - ArtUnc_2: -7.457087380483391e-10 - ArtUnc_3: -1.4082834307512728e-10 - ArtUnc_4: 5.259751980809698e-10 - ArtUnc_5: -6.923695139523178e-10 - ArtUnc_6: 3.3208895331698243e-10 - ArtUnc_7: 8.073137294780598e-12 - ArtUnc_8: -1.2230927873465858e-07 - ArtUnc_9: -5.113647669890167e-10 - ArtUnc_10: -2.2446935066345123e-07 - ArtUnc_11: -1.4326065212866686e-07 - ArtUnc_12: 1.153026085468027e-08 - ArtUnc_13: 1.1174732880309481e-07 - ArtUnc_14: 2.4558207141038358e-08 - ArtUnc_15: 8.883175741719856e-10 - ArtUnc_16: 3.6467441648207014e-08 - ArtUnc_17: 8.236732097262847e-08 - ArtUnc_18: -5.197226792070373e-08 - ArtUnc_19: 3.841247467637868e-08 - ArtUnc_20: -6.425356531140175e-08 - ArtUnc_21: 6.155293697788874e-08 - ArtUnc_22: -2.951676174829013e-08 - ArtUnc_23: 5.562899998071879e-09 - ArtUnc_24: -7.151556924463854e-10 - ArtUnc_25: 1.608931748776258e-06 - ArtUnc_26: -1.8646694530908165e-06 - ArtUnc_27: -1.1274858886782248e-05 - ArtUnc_28: 6.938518411524558e-07 - ArtUnc_29: 4.5559441224943266e-07 - ArtUnc_30: 1.961726405134673e-06 - ArtUnc_31: -2.1287085839396652e-08 - ArtUnc_32: 4.881844799100779e-07 - ArtUnc_33: 2.1793478494002968e-08 - ArtUnc_34: -7.364259583222377e-07 - ArtUnc_35: -1.4923928499632316e-06 - ArtUnc_36: 7.430948147792464e-07 - ArtUnc_37: 1.8178644101091007e-07 - ArtUnc_38: 2.3100931027139345e-07 - ArtUnc_39: -2.047416229184488e-07 - ArtUnc_40: -7.423803500036187e-08 - ArtUnc_41: 0.0005268887524988114 - ArtUnc_42: -0.0005714659827221061 - ArtUnc_43: -0.00027022218346637445 - ArtUnc_44: 1.639807218947462e-05 - ArtUnc_45: -0.00017043659189344178 - ArtUnc_46: -4.9978593562796565e-05 - ArtUnc_47: 3.940253779989799e-05 - ArtUnc_48: 3.0242333060471106e-05 - ArtUnc_49: -2.5495449976636212e-05 - ArtUnc_50: -6.6918278221475645e-06 - ArtUnc_51: 4.833166067699923e-05 - ArtUnc_52: -2.4613900281051554e-05 - ArtUnc_53: -5.019518747024589e-05 - ArtUnc_54: -7.534173203401729e-06 - ArtUnc_55: -2.9103029027200832e-05 - ArtUnc_56: 1.4789803073690994e-05 - ArtUnc_57: 0.0009724406566382068 - ArtUnc_58: -0.0025805819255820058 - ArtUnc_59: -0.0003722812543555839 - ArtUnc_60: -0.00024486307773781673 - ArtUnc_61: -0.000750290877691974 - ArtUnc_62: 0.0006032959090819328 - ArtUnc_63: 0.00021837644109062756 - ArtUnc_64: -0.0006049467434411304 - ArtUnc_65: -0.000469840672415627 - ArtUnc_66: -0.00016047606982258245 - ArtUnc_67: 5.597628896179762e-05 - ArtUnc_68: 0.00021823897883524966 - ArtUnc_69: 1.100866729218056e-05 - ArtUnc_70: -1.7410499464597899e-06 - ArtUnc_71: 1.5512309295244594e-05 - ArtUnc_72: -9.332428840907835e-05 - ArtUnc_73: 0.0011714027120292337 - ArtUnc_74: 0.00027863115780019164 - ArtUnc_75: -0.000287000157299122 - ArtUnc_76: 0.0072247650818527 - ArtUnc_77: -0.0013220955446080014 - ArtUnc_78: -0.01613476439515327 - ArtUnc_79: 0.00381306711786311 - ArtUnc_80: 0.005064477730472728 - ArtUnc_81: 0.0034362312205621515 - ArtUnc_82: 2.2412802282072182e-05 - ArtUnc_83: 0.022201540076900495 - ArtUnc_84: -0.004456629085650692 - ArtUnc_85: -0.017428639534710202 - ArtUnc_86: -0.011385699670263552 - ArtUnc_87: 0.00778080219253493 - ArtUnc_88: 0.0018988296326871237 - ArtUnc_89: -0.008045285761312297 - ArtUnc_90: -0.0034782788311635794 - ArtUnc_91: 0.00022653556448832082 - ArtUnc_92: -0.02149648344381187 - ArtUnc_93: -0.013607990667775922 - ArtUnc_94: 0.0005860095065114094 - ArtUnc_95: -0.00395969577280809 - ArtUnc_96: -0.004254928877904954 + ArtUnc_1: 6.041525253143837e-10 + ArtUnc_2: -7.457087380483398e-10 + ArtUnc_3: -1.4082834307497503e-10 + ArtUnc_4: 5.259751980797566e-10 + ArtUnc_5: -6.923695139325593e-10 + ArtUnc_6: -3.3208895333728377e-10 + ArtUnc_7: -8.073137240863234e-12 + ArtUnc_8: 1.2230927873466213e-07 + ArtUnc_9: 5.113647670230508e-10 + ArtUnc_10: -2.244693506634476e-07 + ArtUnc_11: -1.432606521286891e-07 + ArtUnc_12: 1.1530260854438604e-08 + ArtUnc_13: 1.117473288031136e-07 + ArtUnc_14: 2.455820714133376e-08 + ArtUnc_15: 8.883175739142325e-10 + ArtUnc_16: 3.64674416477968e-08 + ArtUnc_17: -8.23673209728863e-08 + ArtUnc_18: 5.197226792066097e-08 + ArtUnc_19: -3.841247467568004e-08 + ArtUnc_20: 6.425356531113657e-08 + ArtUnc_21: 6.155293697544512e-08 + ArtUnc_22: -2.9516761746782553e-08 + ArtUnc_23: -5.562900001094921e-09 + ArtUnc_24: 7.151556918564961e-10 + ArtUnc_25: -1.6089317487759996e-06 + ArtUnc_26: 1.8646694530904163e-06 + ArtUnc_27: 1.1274858886782353e-05 + ArtUnc_28: -6.938518411540835e-07 + ArtUnc_29: -4.555944122477703e-07 + ArtUnc_30: 1.9617264051350774e-06 + ArtUnc_31: 2.1287085831880707e-08 + ArtUnc_32: 4.881844799069134e-07 + ArtUnc_33: 2.179347849928199e-08 + ArtUnc_34: 7.364259583162062e-07 + ArtUnc_35: 1.4923928499667925e-06 + ArtUnc_36: 7.430948147728629e-07 + ArtUnc_37: 1.8178644102041127e-07 + ArtUnc_38: -2.3100931026616919e-07 + ArtUnc_39: -2.047416229297779e-07 + ArtUnc_40: -7.4238034992303e-08 + ArtUnc_41: 0.0005268887524987921 + ArtUnc_42: -0.0005714659827220986 + ArtUnc_43: -0.00027022218346638225 + ArtUnc_44: 1.6398072189473574e-05 + ArtUnc_45: -0.00017043659189344853 + ArtUnc_46: -4.997859356279252e-05 + ArtUnc_47: -3.9402537799913584e-05 + ArtUnc_48: -3.0242333060468175e-05 + ArtUnc_49: 2.5495449976636246e-05 + ArtUnc_50: 6.691827822136524e-06 + ArtUnc_51: 1.4789803073696317e-05 + ArtUnc_52: -2.910302902721402e-05 + ArtUnc_53: -4.8331660677013445e-05 + ArtUnc_54: 2.46139002810582e-05 + ArtUnc_55: 5.0195187470255184e-05 + ArtUnc_56: -7.534173203397271e-06 + ArtUnc_57: -0.0009724406566382886 + ArtUnc_58: 0.002580581925581996 + ArtUnc_59: 0.0003722812543556141 + ArtUnc_60: 0.00024486307773779494 + ArtUnc_61: 0.0007502908776919723 + ArtUnc_62: -0.000603295909081876 + ArtUnc_63: -0.00021837644109062352 + ArtUnc_64: -0.0006049467434411995 + ArtUnc_65: 0.0004698406724156381 + ArtUnc_66: -0.00016047606982258857 + ArtUnc_67: 5.597628896170966e-05 + ArtUnc_68: 0.0002182389788351802 + ArtUnc_69: 1.1008667292203844e-05 + ArtUnc_70: 9.332428840909884e-05 + ArtUnc_71: 1.7410499463531618e-06 + ArtUnc_72: 1.5512309295234166e-05 + ArtUnc_73: 0.001171402712029326 + ArtUnc_74: -0.0002786311578004168 + ArtUnc_75: 0.00028700015729913036 + ArtUnc_76: 0.007224765081852715 + ArtUnc_77: -0.0013220955446067943 + ArtUnc_78: 0.01613476439515324 + ArtUnc_79: 0.0038130671178633353 + ArtUnc_80: -0.005064477730472428 + ArtUnc_81: 0.003436231220562271 + ArtUnc_82: 2.2412802282053842e-05 + ArtUnc_83: 0.022201540076900436 + ArtUnc_84: -0.0044566290856507575 + ArtUnc_85: -0.01742863953471023 + ArtUnc_86: 0.021496483443812036 + ArtUnc_87: 0.013607990667775918 + ArtUnc_88: -0.011385699670263238 + ArtUnc_89: -0.007780802192535263 + ArtUnc_90: 0.001898829632687188 + ArtUnc_91: 0.003959695772808286 + ArtUnc_92: 0.0005860095065112893 + ArtUnc_93: -0.008045285761312283 + ArtUnc_94: 0.0034782788311635373 + ArtUnc_95: 0.00022653556448828135 + ArtUnc_96: -0.004254928877905018 diff --git a/nnpdf_data/nnpdf_data/new_commondata/H1_2JET_319GEV_290PB-1_DIF/uncertainties_norm.yaml b/nnpdf_data/nnpdf_data/new_commondata/H1_2JET_319GEV_290PB-1_DIF/uncertainties_norm.yaml index d2f8286bb4..e3f5bc2d9d 100644 --- a/nnpdf_data/nnpdf_data/new_commondata/H1_2JET_319GEV_290PB-1_DIF/uncertainties_norm.yaml +++ b/nnpdf_data/nnpdf_data/new_commondata/H1_2JET_319GEV_290PB-1_DIF/uncertainties_norm.yaml @@ -459,102 +459,102 @@ bins: ModelRW_2: 0.0009454371217854735 JES_1: 0.000887414416908752 JES_2: 0.000887414416908752 - ArtUnc_1: -4.650512749510166e-09 - ArtUnc_2: 2.615040433829322e-07 - ArtUnc_3: 5.12557246908949e-07 - ArtUnc_4: 1.0849380135809137e-06 - ArtUnc_5: 7.030184434031912e-08 - ArtUnc_6: -6.666096450905855e-08 - ArtUnc_7: 8.926475091345058e-06 - ArtUnc_8: -3.752463903315616e-05 - ArtUnc_9: -4.525940513413942e-06 - ArtUnc_10: 3.1467905590806136e-05 - ArtUnc_11: -2.023314790240504e-05 - ArtUnc_12: -2.0219473189516724e-06 - ArtUnc_13: 4.0032878530944104e-05 - ArtUnc_14: 9.542902962029522e-06 - ArtUnc_15: -1.5817618089945143e-05 - ArtUnc_16: 5.069765305481629e-07 - ArtUnc_17: -1.08891559690467e-05 - ArtUnc_18: -7.854719394650325e-07 - ArtUnc_19: -2.3706046886005396e-05 - ArtUnc_20: -1.9083074205274192e-05 - ArtUnc_21: 4.747888848598477e-07 - ArtUnc_22: 0.0001673429516106384 - ArtUnc_23: 1.8956321121486008e-06 - ArtUnc_24: 0.00013912348563776817 - ArtUnc_25: 0.0001879940038701234 - ArtUnc_26: 3.117946243289524e-05 - ArtUnc_27: 0.00021123077073010452 - ArtUnc_28: -2.6931251017312914e-06 - ArtUnc_29: -0.0005732465940048247 - ArtUnc_30: 0.00012951670447790492 - ArtUnc_31: 5.3867864331504804e-05 - ArtUnc_32: -0.00022791727755530698 - ArtUnc_33: -2.3810441820842363e-07 - ArtUnc_34: -7.330782394984981e-06 - ArtUnc_35: 1.7685369090595978e-05 - ArtUnc_36: 2.472431294429736e-06 - ArtUnc_37: -1.4607163820264948e-05 - ArtUnc_38: -2.6176429082263394e-06 - ArtUnc_39: 6.607915967338179e-07 - ArtUnc_40: -5.1362874816019386e-08 - ArtUnc_41: 1.5135293048599682e-06 - ArtUnc_42: 3.930922079682163e-08 - ArtUnc_43: 1.304912887440288e-06 - ArtUnc_44: -7.960303951658007e-06 - ArtUnc_45: -5.351476142610959e-08 - ArtUnc_46: -3.500460120766551e-07 - ArtUnc_47: -2.6985309472054276e-07 - ArtUnc_48: -6.382660114581625e-09 - ArtUnc_49: -2.434139705635471e-06 - ArtUnc_50: -4.811695723307431e-07 - ArtUnc_51: -2.879156312046098e-08 - ArtUnc_52: -1.9332838629887088e-08 - ArtUnc_53: -5.698775424400125e-09 - ArtUnc_54: 1.2428319793268545e-08 - ArtUnc_55: 1.829936559843659e-08 - ArtUnc_56: -9.683602000647387e-10 - ArtUnc_57: -2.0089989751234485e-09 - ArtUnc_58: -4.093810632764918e-09 - ArtUnc_59: 7.913059982895017e-09 - ArtUnc_60: -6.358131181265117e-09 - ArtUnc_61: -3.316418941661967e-11 - ArtUnc_62: 4.826728173644871e-09 - ArtUnc_63: -5.171061553900622e-10 - ArtUnc_64: -3.349431848054753e-07 - ArtUnc_65: -1.1614407621022927e-08 - ArtUnc_66: 2.3340415670960243e-07 - ArtUnc_67: -4.714533807608359e-09 - ArtUnc_68: -5.125500757965474e-10 - ArtUnc_69: -2.568175920169571e-11 - ArtUnc_70: 4.617791891800068e-10 - ArtUnc_71: 1.7269565631121524e-11 - ArtUnc_72: 1.0426947546369062e-09 - ArtUnc_73: -1.3974946479046988e-10 - ArtUnc_74: 7.388353615943769e-11 - ArtUnc_75: 2.2023115713548736e-09 - ArtUnc_76: -3.2388756321363645e-11 - ArtUnc_77: 1.683694432077247e-10 - ArtUnc_78: -2.3319062783812886e-09 - ArtUnc_79: 6.984125752366835e-10 - ArtUnc_80: 2.421067285842708e-10 - ArtUnc_81: -1.064510427534945e-10 - ArtUnc_82: -9.551534802834587e-12 - ArtUnc_83: 4.2477216540959984e-11 - ArtUnc_84: -1.2581519448914072e-11 - ArtUnc_85: 2.8532031390087507e-13 - ArtUnc_86: -7.1550686481024196e-12 - ArtUnc_87: -8.385559175990136e-12 - ArtUnc_88: -6.684767466889214e-11 - ArtUnc_89: 9.054072666778e-12 - ArtUnc_90: -1.8249590088503793e-11 - ArtUnc_91: -1.376928279346296e-12 - ArtUnc_92: 2.0830196938468465e-10 - ArtUnc_93: 1.474440598941585e-11 - ArtUnc_94: 2.806228895777921e-12 - ArtUnc_95: -4.903718148236899e-11 - ArtUnc_96: 1.1351687655146475e-11 + ArtUnc_1: -4.650512749355942e-09 + ArtUnc_2: 2.6150404338355495e-07 + ArtUnc_3: 5.12557246908968e-07 + ArtUnc_4: 1.0849380135812087e-06 + ArtUnc_5: 7.030184433999337e-08 + ArtUnc_6: -6.666096450952222e-08 + ArtUnc_7: 8.926475091343498e-06 + ArtUnc_8: -3.752463903315676e-05 + ArtUnc_9: -4.525940513413666e-06 + ArtUnc_10: 3.1467905590806244e-05 + ArtUnc_11: -2.0233147902406997e-05 + ArtUnc_12: 2.021947318951445e-06 + ArtUnc_13: -4.003287853094295e-05 + ArtUnc_14: 9.54290296203011e-06 + ArtUnc_15: -1.5817618089945295e-05 + ArtUnc_16: 5.069765305450733e-07 + ArtUnc_17: -1.0889155969046879e-05 + ArtUnc_18: 7.854719394652192e-07 + ArtUnc_19: 2.3706046886005644e-05 + ArtUnc_20: -1.9083074205274243e-05 + ArtUnc_21: 4.747888848597217e-07 + ArtUnc_22: 0.00016734295161063723 + ArtUnc_23: 1.8956321121513973e-06 + ArtUnc_24: 0.0001391234856377672 + ArtUnc_25: 0.00018799400387012392 + ArtUnc_26: 3.117946243289525e-05 + ArtUnc_27: 0.00021123077073010498 + ArtUnc_28: 2.693125101744767e-06 + ArtUnc_29: 0.0005732465940048262 + ArtUnc_30: 0.00012951670447777832 + ArtUnc_31: -5.386786433193626e-05 + ArtUnc_32: -0.0002279172775553063 + ArtUnc_33: 2.3810441821111926e-07 + ArtUnc_34: -7.330782394982886e-06 + ArtUnc_35: -1.7685369090595917e-05 + ArtUnc_36: -2.4724312944298536e-06 + ArtUnc_37: -1.4607163820264878e-05 + ArtUnc_38: 2.6176429082255432e-06 + ArtUnc_39: -6.607915967338914e-07 + ArtUnc_40: -5.1362874816051534e-08 + ArtUnc_41: 1.5135293048599083e-06 + ArtUnc_42: -3.930922079681527e-08 + ArtUnc_43: 1.3049128874402319e-06 + ArtUnc_44: -7.96030395165809e-06 + ArtUnc_45: 5.351476142624853e-08 + ArtUnc_46: -3.500460120766658e-07 + ArtUnc_47: -2.698530947205398e-07 + ArtUnc_48: 6.382660114578908e-09 + ArtUnc_49: 2.4341397056357427e-06 + ArtUnc_50: 4.81169572330774e-07 + ArtUnc_51: 2.879156312045966e-08 + ArtUnc_52: 1.933283862988446e-08 + ArtUnc_53: 5.698775424400118e-09 + ArtUnc_54: -1.2428319793269074e-08 + ArtUnc_55: 1.8299365598447446e-08 + ArtUnc_56: -9.683602000634305e-10 + ArtUnc_57: -2.008998975123179e-09 + ArtUnc_58: -4.09381063276111e-09 + ArtUnc_59: 7.913059982895237e-09 + ArtUnc_60: 6.358131181272643e-09 + ArtUnc_61: 3.316418941539378e-11 + ArtUnc_62: 4.826728173643972e-09 + ArtUnc_63: -5.171061553907083e-10 + ArtUnc_64: 3.34943184805511e-07 + ArtUnc_65: -1.1614407621026812e-08 + ArtUnc_66: -2.3340415670957435e-07 + ArtUnc_67: -4.714533807607662e-09 + ArtUnc_68: -5.125500757971282e-10 + ArtUnc_69: 2.5681759201689222e-11 + ArtUnc_70: -4.617791891797858e-10 + ArtUnc_71: -1.726956563111836e-11 + ArtUnc_72: -1.0426947546361144e-09 + ArtUnc_73: 1.3974946479052858e-10 + ArtUnc_74: -7.388353615932547e-11 + ArtUnc_75: 2.2023115713533785e-09 + ArtUnc_76: -3.238875632136181e-11 + ArtUnc_77: 1.683694432077045e-10 + ArtUnc_78: -2.3319062783790383e-09 + ArtUnc_79: 6.984125752352948e-10 + ArtUnc_80: 2.4210672858428407e-10 + ArtUnc_81: -1.0645104275344316e-10 + ArtUnc_82: 9.551534802832154e-12 + ArtUnc_83: 4.247721654093233e-11 + ArtUnc_84: 1.2581519448969144e-11 + ArtUnc_85: -2.853203139020557e-13 + ArtUnc_86: -7.1550686480950606e-12 + ArtUnc_87: -8.385559175981213e-12 + ArtUnc_88: 9.054072666771776e-12 + ArtUnc_89: 6.684767466884986e-11 + ArtUnc_90: 1.8249590088465067e-11 + ArtUnc_91: -1.3769282793509156e-12 + ArtUnc_92: -2.0830196938451975e-10 + ArtUnc_93: 1.474440598941191e-11 + ArtUnc_94: 2.8062288957760026e-12 + ArtUnc_95: -4.9037181482300245e-11 + ArtUnc_96: 1.1351687655157902e-11 - stat: 0 Uncorr: 0.000136 RCES: 7.942912312244167e-05 @@ -570,102 +570,102 @@ bins: ModelRW_2: 0.0003635094540723803 JES_1: 0.00020002636626205054 JES_2: 0.00020002636626205054 - ArtUnc_1: 5.471569995891646e-10 - ArtUnc_2: -2.1548459534169628e-08 - ArtUnc_3: 1.6107173820232725e-09 - ArtUnc_4: 1.8790643118297607e-07 - ArtUnc_5: 1.050117042570297e-09 - ArtUnc_6: 1.4980021086587036e-08 - ArtUnc_7: 1.0716030983490844e-06 - ArtUnc_8: -5.852027745173473e-06 - ArtUnc_9: 7.491192402189114e-07 - ArtUnc_10: -8.052950538933017e-08 - ArtUnc_11: -5.7252344852199985e-06 - ArtUnc_12: 9.685501549657312e-07 - ArtUnc_13: 1.3424257850249387e-06 - ArtUnc_14: -9.956049613005863e-07 - ArtUnc_15: 5.297725506633483e-07 - ArtUnc_16: 1.673837768454332e-08 - ArtUnc_17: -3.582507838236449e-07 - ArtUnc_18: 1.2647274373508488e-08 - ArtUnc_19: -1.2336629966632117e-06 - ArtUnc_20: 8.403154663433771e-07 - ArtUnc_21: 6.791298681435195e-07 - ArtUnc_22: -1.776150220884706e-06 - ArtUnc_23: -4.784905450234038e-07 - ArtUnc_24: -5.1696968831452726e-06 - ArtUnc_25: 2.821350325782999e-05 - ArtUnc_26: -6.758352126525412e-06 - ArtUnc_27: -1.948245245698466e-05 - ArtUnc_28: 1.8615587928714592e-07 - ArtUnc_29: -4.9400028648362785e-06 - ArtUnc_30: 2.5959751638211684e-06 - ArtUnc_31: 1.0763248007906184e-06 - ArtUnc_32: -3.287425978178637e-05 - ArtUnc_33: 3.2994683073729474e-08 - ArtUnc_34: -1.234940266205477e-06 - ArtUnc_35: 6.191515490196092e-06 - ArtUnc_36: 2.7249485883068733e-06 - ArtUnc_37: -5.989822561698192e-05 - ArtUnc_38: -1.0403639627465775e-05 - ArtUnc_39: -7.720196274664049e-05 - ArtUnc_40: 1.5220534773968058e-06 - ArtUnc_41: 1.709379278867283e-05 - ArtUnc_42: -8.11450519569054e-07 - ArtUnc_43: -1.3715268834483381e-05 - ArtUnc_44: 0.0002462097444531081 - ArtUnc_45: 1.2730256982183371e-06 - ArtUnc_46: 1.1643913116449376e-05 - ArtUnc_47: 1.629978914010714e-06 - ArtUnc_48: 2.280929511647473e-07 - ArtUnc_49: 3.6345767126120526e-05 - ArtUnc_50: 2.4422571255477306e-06 - ArtUnc_51: 6.822122723980482e-08 - ArtUnc_52: -5.976234737191764e-08 - ArtUnc_53: 1.8446310222817315e-08 - ArtUnc_54: -2.4751852109218752e-08 - ArtUnc_55: 1.131003801326065e-06 - ArtUnc_56: 1.0759820264169869e-06 - ArtUnc_57: 3.0780950207663535e-07 - ArtUnc_58: 6.812023712735954e-07 - ArtUnc_59: -7.960672216214537e-09 - ArtUnc_60: 5.267916630689111e-07 - ArtUnc_61: 3.39970164677748e-10 - ArtUnc_62: -6.665603912810152e-09 - ArtUnc_63: 7.138800656329359e-10 - ArtUnc_64: 2.477585785184677e-06 - ArtUnc_65: 3.6242879105329454e-08 - ArtUnc_66: -1.838464013018305e-06 - ArtUnc_67: 2.718142424691705e-08 - ArtUnc_68: -2.8193276372483382e-08 - ArtUnc_69: 5.427607805245182e-10 - ArtUnc_70: -3.084661349746725e-09 - ArtUnc_71: 5.447159219783033e-11 - ArtUnc_72: 2.1302205731501905e-08 - ArtUnc_73: 8.47153107572282e-10 - ArtUnc_74: 1.1628840669622708e-08 - ArtUnc_75: 1.7170116614497963e-08 - ArtUnc_76: -2.3415368954742075e-10 - ArtUnc_77: -2.7783117168968716e-10 - ArtUnc_78: 3.2602119554402305e-08 - ArtUnc_79: 1.0463517159940953e-08 - ArtUnc_80: -3.450248147908858e-10 - ArtUnc_81: 7.482156465457027e-10 - ArtUnc_82: -3.8370527796877e-11 - ArtUnc_83: -3.2471216627324176e-11 - ArtUnc_84: 1.4283148435102442e-09 - ArtUnc_85: -2.316766223558353e-11 - ArtUnc_86: 6.903485286948077e-11 - ArtUnc_87: 6.463824938402307e-11 - ArtUnc_88: -3.636593406602767e-10 - ArtUnc_89: 6.413357358594171e-12 - ArtUnc_90: 2.5940032189819596e-10 - ArtUnc_91: 6.457000917867735e-11 - ArtUnc_92: -1.2350529808453373e-09 - ArtUnc_93: -1.151435439702523e-11 - ArtUnc_94: -3.215014335109707e-11 - ArtUnc_95: -9.74700949230058e-11 - ArtUnc_96: -6.133126016763498e-11 + ArtUnc_1: 5.471569996118318e-10 + ArtUnc_2: -2.1548459534153544e-08 + ArtUnc_3: 1.6107173820174696e-09 + ArtUnc_4: 1.879064311830434e-07 + ArtUnc_5: 1.050117042374516e-09 + ArtUnc_6: 1.4980021086434547e-08 + ArtUnc_7: 1.0716030983489342e-06 + ArtUnc_8: -5.8520277451735335e-06 + ArtUnc_9: 7.491192402186086e-07 + ArtUnc_10: -8.052950538988503e-08 + ArtUnc_11: -5.725234485220118e-06 + ArtUnc_12: -9.685501549661442e-07 + ArtUnc_13: -1.3424257850248628e-06 + ArtUnc_14: -9.956049613002278e-07 + ArtUnc_15: 5.29772550663397e-07 + ArtUnc_16: 1.6738377684272918e-08 + ArtUnc_17: -3.582507838237691e-07 + ArtUnc_18: -1.264727437334715e-08 + ArtUnc_19: 1.233662996663388e-06 + ArtUnc_20: 8.403154663435293e-07 + ArtUnc_21: 6.79129868143396e-07 + ArtUnc_22: -1.776150220884529e-06 + ArtUnc_23: -4.784905450229317e-07 + ArtUnc_24: -5.169696883145389e-06 + ArtUnc_25: 2.8213503257829692e-05 + ArtUnc_26: -6.758352126525302e-06 + ArtUnc_27: -1.9482452456984413e-05 + ArtUnc_28: -1.8615587928710915e-07 + ArtUnc_29: 4.94000286483612e-06 + ArtUnc_30: 2.595975163818299e-06 + ArtUnc_31: -1.076324800799102e-06 + ArtUnc_32: -3.2874259781786615e-05 + ArtUnc_33: -3.299468307382029e-08 + ArtUnc_34: -1.2349402662050923e-06 + ArtUnc_35: -6.191515490195612e-06 + ArtUnc_36: -2.7249485883079676e-06 + ArtUnc_37: -5.989822561698278e-05 + ArtUnc_38: 1.040363962746263e-05 + ArtUnc_39: 7.720196274664037e-05 + ArtUnc_40: 1.5220534773987657e-06 + ArtUnc_41: 1.70937927886724e-05 + ArtUnc_42: 8.114505195690131e-07 + ArtUnc_43: -1.371526883447847e-05 + ArtUnc_44: 0.00024620974445310794 + ArtUnc_45: -1.2730256982223254e-06 + ArtUnc_46: 1.1643913116449547e-05 + ArtUnc_47: 1.6299789140107506e-06 + ArtUnc_48: -2.2809295116473704e-07 + ArtUnc_49: -3.634576712612296e-05 + ArtUnc_50: -2.4422571255481782e-06 + ArtUnc_51: -6.822122723981085e-08 + ArtUnc_52: 5.976234737191589e-08 + ArtUnc_53: -1.8446310222813494e-08 + ArtUnc_54: 2.4751852109216145e-08 + ArtUnc_55: 1.1310038013260833e-06 + ArtUnc_56: 1.0759820264168969e-06 + ArtUnc_57: 3.0780950207694145e-07 + ArtUnc_58: 6.812023712735847e-07 + ArtUnc_59: -7.960672216219715e-09 + ArtUnc_60: -5.267916630689513e-07 + ArtUnc_61: -3.399701646687149e-10 + ArtUnc_62: -6.6656039128050465e-09 + ArtUnc_63: 7.138800656368192e-10 + ArtUnc_64: -2.4775857851850117e-06 + ArtUnc_65: 3.624287910535524e-08 + ArtUnc_66: 1.8384640130182134e-06 + ArtUnc_67: 2.7181424246913548e-08 + ArtUnc_68: -2.8193276372482016e-08 + ArtUnc_69: -5.42760780524532e-10 + ArtUnc_70: 3.0846613497465428e-09 + ArtUnc_71: -5.4471592197849197e-11 + ArtUnc_72: -2.1302205731503017e-08 + ArtUnc_73: -8.471531075724741e-10 + ArtUnc_74: -1.1628840669622942e-08 + ArtUnc_75: 1.7170116614500534e-08 + ArtUnc_76: -2.341536895472736e-10 + ArtUnc_77: -2.7783117168958113e-10 + ArtUnc_78: 3.260211955439682e-08 + ArtUnc_79: 1.046351715994512e-08 + ArtUnc_80: -3.450248147908177e-10 + ArtUnc_81: 7.482156465457119e-10 + ArtUnc_82: 3.8370527796884825e-11 + ArtUnc_83: -3.247121662728555e-11 + ArtUnc_84: -1.4283148435103424e-09 + ArtUnc_85: 2.3167662235587087e-11 + ArtUnc_86: 6.903485286946707e-11 + ArtUnc_87: 6.463824938400358e-11 + ArtUnc_88: 6.4133573585991416e-12 + ArtUnc_89: 3.6365934066034854e-10 + ArtUnc_90: -2.5940032189813645e-10 + ArtUnc_91: 6.457000917868311e-11 + ArtUnc_92: 1.2350529808450879e-09 + ArtUnc_93: -1.151435439701838e-11 + ArtUnc_94: -3.2150143351094645e-11 + ArtUnc_95: -9.747009492310879e-11 + ArtUnc_96: -6.133126016765184e-11 - stat: 0 Uncorr: 2.93e-05 RCES: 3.643935349316724e-05 @@ -681,102 +681,102 @@ bins: ModelRW_2: 6.546960265650005e-05 JES_1: 8.323024601895034e-05 JES_2: 8.323024601895034e-05 - ArtUnc_1: 3.725748441855142e-13 - ArtUnc_2: -5.576213415696871e-11 - ArtUnc_3: -1.8792997287418968e-10 - ArtUnc_4: -4.5867840932795444e-10 - ArtUnc_5: -1.4436446728744216e-11 - ArtUnc_6: 1.8673969063588274e-11 - ArtUnc_7: -2.304809777235498e-09 - ArtUnc_8: 7.845765890469632e-10 - ArtUnc_9: 1.977290840880951e-09 - ArtUnc_10: -1.1619921967808012e-08 - ArtUnc_11: -3.3435052190755636e-09 - ArtUnc_12: 1.8580739693610029e-09 - ArtUnc_13: -6.89347051218557e-08 - ArtUnc_14: -8.552736714386387e-09 - ArtUnc_15: 1.5846804640892226e-08 - ArtUnc_16: -4.681586314223856e-10 - ArtUnc_17: 2.5773570618027182e-08 - ArtUnc_18: 1.388346765828633e-09 - ArtUnc_19: 1.0772612664036784e-07 - ArtUnc_20: 9.127921594960896e-08 - ArtUnc_21: -6.69780382922057e-11 - ArtUnc_22: -1.1270512654928677e-07 - ArtUnc_23: -1.3323411868686961e-09 - ArtUnc_24: -1.5556328301045476e-06 - ArtUnc_25: 7.606353978765809e-07 - ArtUnc_26: -3.851083482718733e-07 - ArtUnc_27: -1.452548473409936e-06 - ArtUnc_28: 5.088505297563495e-08 - ArtUnc_29: 1.6117205402691302e-06 - ArtUnc_30: -4.113354807336254e-07 - ArtUnc_31: -1.6983994409327336e-07 - ArtUnc_32: 1.6892305922853991e-06 - ArtUnc_33: 1.457067663137859e-10 - ArtUnc_34: 8.989143287514196e-08 - ArtUnc_35: 8.88695551904404e-08 - ArtUnc_36: 7.181782097801695e-07 - ArtUnc_37: -2.077812503773524e-06 - ArtUnc_38: -3.6391782595324245e-07 - ArtUnc_39: -2.7286713820165273e-06 - ArtUnc_40: 5.455195979654707e-08 - ArtUnc_41: 7.549069678202049e-06 - ArtUnc_42: -7.453588459542621e-08 - ArtUnc_43: -1.1101608282611443e-05 - ArtUnc_44: 2.0012574636198835e-06 - ArtUnc_45: 2.7433672163776266e-08 - ArtUnc_46: -9.517229932449512e-07 - ArtUnc_47: 5.589666364913685e-07 - ArtUnc_48: 2.4944416287925542e-08 - ArtUnc_49: 2.347177907621526e-05 - ArtUnc_50: 1.4282041253315672e-06 - ArtUnc_51: -4.788002977744846e-07 - ArtUnc_52: -8.903094382817606e-07 - ArtUnc_53: 1.2459460515367121e-07 - ArtUnc_54: -8.14925320565125e-08 - ArtUnc_55: 1.2594223585420613e-05 - ArtUnc_56: 1.4274865327026748e-05 - ArtUnc_57: 4.174072422600962e-06 - ArtUnc_58: 2.2303548443451325e-05 - ArtUnc_59: -2.1908097420859265e-07 - ArtUnc_60: 1.891093455120236e-05 - ArtUnc_61: 1.094479673948385e-08 - ArtUnc_62: -6.893892056162117e-08 - ArtUnc_63: 5.823766977123618e-09 - ArtUnc_64: -5.6603262292214214e-05 - ArtUnc_65: -8.015406273532788e-07 - ArtUnc_66: 3.9683471410176716e-05 - ArtUnc_67: -5.263076671627705e-07 - ArtUnc_68: 3.5855468780186174e-07 - ArtUnc_69: -1.0173186218329567e-08 - ArtUnc_70: 1.229531766027621e-07 - ArtUnc_71: 2.479331417189453e-09 - ArtUnc_72: 6.571712548162449e-07 - ArtUnc_73: 4.7783870276873866e-08 - ArtUnc_74: 1.0059102231087426e-07 - ArtUnc_75: 8.417761885970783e-07 - ArtUnc_76: 8.396096597470064e-09 - ArtUnc_77: 7.42300544961137e-09 - ArtUnc_78: -1.1325365974717505e-07 - ArtUnc_79: -4.23188220554539e-08 - ArtUnc_80: 6.129071591428982e-09 - ArtUnc_81: -9.456587992687703e-09 - ArtUnc_82: 1.5188352334209478e-10 - ArtUnc_83: 5.014588526357882e-09 - ArtUnc_84: 1.1798190978593119e-08 - ArtUnc_85: 2.631729931569993e-10 - ArtUnc_86: 1.924573846872015e-11 - ArtUnc_87: 2.593975753501807e-10 - ArtUnc_88: -2.02771483831625e-08 - ArtUnc_89: 1.2062301518549229e-09 - ArtUnc_90: 3.017083083839918e-09 - ArtUnc_91: -1.0921148670095773e-09 - ArtUnc_92: 2.351887988494077e-08 - ArtUnc_93: 4.3944548208900017e-10 - ArtUnc_94: 3.733027150779105e-10 - ArtUnc_95: -3.2961109082648946e-09 - ArtUnc_96: 4.3659842526255104e-11 + ArtUnc_1: 3.72574843754151e-13 + ArtUnc_2: -5.5762134156865614e-11 + ArtUnc_3: -1.8792997287274888e-10 + ArtUnc_4: -4.5867840932993047e-10 + ArtUnc_5: -1.4436446732121365e-11 + ArtUnc_6: 1.867396902546295e-11 + ArtUnc_7: -2.3048097772345663e-09 + ArtUnc_8: 7.845765890473015e-10 + ArtUnc_9: 1.977290840908495e-09 + ArtUnc_10: -1.1619921967779412e-08 + ArtUnc_11: -3.343505219064145e-09 + ArtUnc_12: -1.858073969329258e-09 + ArtUnc_13: 6.893470512185661e-08 + ArtUnc_14: -8.552736714474256e-09 + ArtUnc_15: 1.584680464086288e-08 + ArtUnc_16: -4.681586319467342e-10 + ArtUnc_17: 2.577357061816638e-08 + ArtUnc_18: -1.3883467658975774e-09 + ArtUnc_19: -1.0772612664045383e-07 + ArtUnc_20: 9.127921594949682e-08 + ArtUnc_21: -6.69780382479327e-11 + ArtUnc_22: -1.1270512654920153e-07 + ArtUnc_23: -1.33234118677314e-09 + ArtUnc_24: -1.555632830104435e-06 + ArtUnc_25: 7.606353978765029e-07 + ArtUnc_26: -3.851083482718545e-07 + ArtUnc_27: -1.4525484734098774e-06 + ArtUnc_28: -5.0885052975844806e-08 + ArtUnc_29: -1.61172054026889e-06 + ArtUnc_30: -4.1133548073345233e-07 + ArtUnc_31: 1.6983994409471313e-07 + ArtUnc_32: 1.6892305922854216e-06 + ArtUnc_33: -1.457067664224312e-10 + ArtUnc_34: 8.989143287517297e-08 + ArtUnc_35: -8.88695551901891e-08 + ArtUnc_36: -7.18178209779854e-07 + ArtUnc_37: -2.0778125037738755e-06 + ArtUnc_38: 3.6391782595336935e-07 + ArtUnc_39: 2.7286713820166425e-06 + ArtUnc_40: 5.455195979650584e-08 + ArtUnc_41: 7.549069678202054e-06 + ArtUnc_42: 7.453588459557469e-08 + ArtUnc_43: -1.1101608282611014e-05 + ArtUnc_44: 2.001257463619583e-06 + ArtUnc_45: -2.7433672163892875e-08 + ArtUnc_46: -9.517229932447282e-07 + ArtUnc_47: 5.589666364914897e-07 + ArtUnc_48: -2.4944416287900184e-08 + ArtUnc_49: -2.347177907621313e-05 + ArtUnc_50: -1.4282041253317663e-06 + ArtUnc_51: 4.788002977745001e-07 + ArtUnc_52: 8.903094382816588e-07 + ArtUnc_53: -1.2459460515372746e-07 + ArtUnc_54: 8.14925320564319e-08 + ArtUnc_55: 1.2594223585421794e-05 + ArtUnc_56: 1.4274865327025676e-05 + ArtUnc_57: 4.174072422605024e-06 + ArtUnc_58: 2.230354844345179e-05 + ArtUnc_59: -2.190809742086046e-07 + ArtUnc_60: -1.8910934551201536e-05 + ArtUnc_61: -1.094479673965532e-08 + ArtUnc_62: -6.893892056174763e-08 + ArtUnc_63: 5.82376697707184e-09 + ArtUnc_64: 5.660326229221998e-05 + ArtUnc_65: -8.015406273538802e-07 + ArtUnc_66: -3.968347141017291e-05 + ArtUnc_67: -5.263076671626725e-07 + ArtUnc_68: 3.5855468780181044e-07 + ArtUnc_69: 1.0173186218331753e-08 + ArtUnc_70: -1.2295317660275172e-07 + ArtUnc_71: -2.4793314171900886e-09 + ArtUnc_72: -6.571712548162341e-07 + ArtUnc_73: -4.7783870276875176e-08 + ArtUnc_74: -1.005910223108769e-07 + ArtUnc_75: 8.417761885970648e-07 + ArtUnc_76: 8.396096597475887e-09 + ArtUnc_77: 7.423005449611018e-09 + ArtUnc_78: -1.1325365974715549e-07 + ArtUnc_79: -4.231882205546767e-08 + ArtUnc_80: 6.129071591428702e-09 + ArtUnc_81: -9.456587992687747e-09 + ArtUnc_82: -1.5188352334206963e-10 + ArtUnc_83: 5.014588526357662e-09 + ArtUnc_84: -1.1798190978592541e-08 + ArtUnc_85: -2.631729931570385e-10 + ArtUnc_86: 1.9245738468918398e-11 + ArtUnc_87: 2.5939757535041884e-10 + ArtUnc_88: 1.2062301518547448e-09 + ArtUnc_89: 2.027714838316177e-08 + ArtUnc_90: -3.0170830838406754e-09 + ArtUnc_91: -1.0921148670096631e-09 + ArtUnc_92: -2.351887988493733e-08 + ArtUnc_93: 4.3944548208894744e-10 + ArtUnc_94: 3.7330271507787496e-10 + ArtUnc_95: -3.296110908263646e-09 + ArtUnc_96: 4.3659842526486204e-11 - stat: 0 Uncorr: 4.9e-06 RCES: 4.610884378294472e-06 @@ -792,102 +792,102 @@ bins: ModelRW_2: 2.806506814529407e-06 JES_1: 1.7001058246473954e-05 JES_2: 1.7001058246473954e-05 - ArtUnc_1: -5.2414622595776756e-15 - ArtUnc_2: 8.207592964731506e-13 - ArtUnc_3: 3.847729041684691e-12 - ArtUnc_4: 1.3792222266566074e-11 - ArtUnc_5: 5.052176641875075e-13 - ArtUnc_6: 2.2494956915663803e-14 - ArtUnc_7: 6.265328750309182e-11 - ArtUnc_8: -2.3772774781838074e-10 - ArtUnc_9: -3.1675878965401614e-12 - ArtUnc_10: -9.980068575842941e-12 - ArtUnc_11: 8.486503372810134e-11 - ArtUnc_12: -1.4472528444016473e-11 - ArtUnc_13: -1.9485505226518077e-10 - ArtUnc_14: 1.3385041147094832e-11 - ArtUnc_15: 1.2777939883775687e-11 - ArtUnc_16: -1.4594415085541144e-12 - ArtUnc_17: -7.622530131599248e-12 - ArtUnc_18: 3.3382253915144836e-13 - ArtUnc_19: -4.174449188947476e-10 - ArtUnc_20: -1.458526363043474e-10 - ArtUnc_21: -1.218326399980731e-10 - ArtUnc_22: 2.9701427574704487e-09 - ArtUnc_23: 2.22998549042183e-10 - ArtUnc_24: 7.119878894201229e-10 - ArtUnc_25: -4.049074824714188e-09 - ArtUnc_26: 1.3627773034302058e-09 - ArtUnc_27: 7.095862095535974e-09 - ArtUnc_28: 5.718772664967846e-10 - ArtUnc_29: 3.751773345446773e-09 - ArtUnc_30: -2.9515041503971795e-09 - ArtUnc_31: -1.1378459994761584e-09 - ArtUnc_32: 2.1546215977208857e-08 - ArtUnc_33: 2.5580061046276632e-11 - ArtUnc_34: -7.500012142836068e-10 - ArtUnc_35: 8.728016111697142e-09 - ArtUnc_36: -1.4591722382617339e-08 - ArtUnc_37: -1.5180310001887535e-07 - ArtUnc_38: -2.9087276501936008e-08 - ArtUnc_39: -2.4003660755313586e-07 - ArtUnc_40: 3.6335764936337553e-09 - ArtUnc_41: -1.7897560141452676e-07 - ArtUnc_42: -3.862399379321751e-09 - ArtUnc_43: 3.891403788701698e-07 - ArtUnc_44: -3.012756355155686e-07 - ArtUnc_45: -2.2701893787055546e-10 - ArtUnc_46: 3.0437265445985966e-08 - ArtUnc_47: -6.821619111218156e-08 - ArtUnc_48: -5.213033624738738e-09 - ArtUnc_49: -7.909571133749282e-07 - ArtUnc_50: 4.000696485550032e-09 - ArtUnc_51: -1.224471599566261e-07 - ArtUnc_52: 2.3873887600907556e-08 - ArtUnc_53: 1.3473575118941014e-08 - ArtUnc_54: -2.9872328342732867e-08 - ArtUnc_55: -1.5813190610402345e-06 - ArtUnc_56: 1.933241606756727e-06 - ArtUnc_57: 4.6978450337945344e-07 - ArtUnc_58: -3.3089357511885516e-06 - ArtUnc_59: 1.8756063896370004e-07 - ArtUnc_60: 3.631987023923681e-06 - ArtUnc_61: -8.974999862879568e-09 - ArtUnc_62: -3.21002633898529e-07 - ArtUnc_63: 3.687766345572266e-08 - ArtUnc_64: 7.773053107357186e-06 - ArtUnc_65: 6.97788139850965e-07 - ArtUnc_66: 8.346360521631023e-06 - ArtUnc_67: -3.417827012533438e-07 - ArtUnc_68: -4.1262878647269415e-07 - ArtUnc_69: -3.535170070934319e-09 - ArtUnc_70: 4.836847420599936e-07 - ArtUnc_71: 2.5243277693487462e-08 - ArtUnc_72: 5.7731325918633595e-06 - ArtUnc_73: 4.6811126185050636e-07 - ArtUnc_74: 1.5770399135300984e-06 - ArtUnc_75: 9.869174798919056e-06 - ArtUnc_76: 7.128038724571136e-08 - ArtUnc_77: -3.145401141298582e-08 - ArtUnc_78: 1.889171597787733e-05 - ArtUnc_79: 1.3499821119504489e-05 - ArtUnc_80: -7.1259305525188e-08 - ArtUnc_81: 4.948333753718327e-07 - ArtUnc_82: -3.5235174352896035e-08 - ArtUnc_83: -5.926496319976261e-08 - ArtUnc_84: 1.4452008476414846e-07 - ArtUnc_85: -1.5083206448382862e-08 - ArtUnc_86: 4.377923905507403e-09 - ArtUnc_87: 5.063614671792069e-09 - ArtUnc_88: -2.873263317578972e-07 - ArtUnc_89: 6.74573155948979e-09 - ArtUnc_90: 9.439684959933751e-08 - ArtUnc_91: -2.3971753920996644e-08 - ArtUnc_92: 4.2682329227800776e-08 - ArtUnc_93: 1.5311556383350169e-09 - ArtUnc_94: -4.599464050392651e-10 - ArtUnc_95: -1.9906259590400175e-08 - ArtUnc_96: 2.3216321592755967e-09 + ArtUnc_1: -5.241462259945504e-15 + ArtUnc_2: 8.207592964730536e-13 + ArtUnc_3: 3.847729041683561e-12 + ArtUnc_4: 1.3792222266569431e-11 + ArtUnc_5: 5.052176641803228e-13 + ArtUnc_6: 2.249495667603643e-14 + ArtUnc_7: 6.265328750309011e-11 + ArtUnc_8: -2.377277478183806e-10 + ArtUnc_9: -3.167587896563486e-12 + ArtUnc_10: -9.980068575788724e-12 + ArtUnc_11: 8.486503372824655e-11 + ArtUnc_12: 1.4472528442572177e-11 + ArtUnc_13: 1.9485505226517446e-10 + ArtUnc_14: 1.3385041148049875e-11 + ArtUnc_15: 1.2777939886617276e-11 + ArtUnc_16: -1.4594414874811343e-12 + ArtUnc_17: -7.622530132064897e-12 + ArtUnc_18: -3.3382254149254044e-13 + ArtUnc_19: 4.1744491889578663e-10 + ArtUnc_20: -1.458526363026746e-10 + ArtUnc_21: -1.2183263999339942e-10 + ArtUnc_22: 2.970142757468545e-09 + ArtUnc_23: 2.2299854903822662e-10 + ArtUnc_24: 7.119878894173299e-10 + ArtUnc_25: -4.04907482471203e-09 + ArtUnc_26: 1.362777303429574e-09 + ArtUnc_27: 7.095862095533802e-09 + ArtUnc_28: -5.718772664874926e-10 + ArtUnc_29: -3.751773345438866e-09 + ArtUnc_30: -2.9515041503778913e-09 + ArtUnc_31: 1.1378459995070667e-09 + ArtUnc_32: 2.1546215977208804e-08 + ArtUnc_33: -2.5580061091301333e-11 + ArtUnc_34: -7.500012142866035e-10 + ArtUnc_35: -8.728016111705376e-09 + ArtUnc_36: 1.4591722382626946e-08 + ArtUnc_37: -1.5180310001887374e-07 + ArtUnc_38: 2.908727650187965e-08 + ArtUnc_39: 2.400366075531249e-07 + ArtUnc_40: 3.6335764936557314e-09 + ArtUnc_41: -1.7897560141455276e-07 + ArtUnc_42: 3.862399379342501e-09 + ArtUnc_43: 3.891403788701593e-07 + ArtUnc_44: -3.012756355155561e-07 + ArtUnc_45: 2.2701893778899755e-10 + ArtUnc_46: 3.043726544595362e-08 + ArtUnc_47: -6.82161911121795e-08 + ArtUnc_48: 5.213033624694447e-09 + ArtUnc_49: 7.909571133748741e-07 + ArtUnc_50: -4.000696485508816e-09 + ArtUnc_51: 1.2244715995664577e-07 + ArtUnc_52: -2.387388760086234e-08 + ArtUnc_53: -1.3473575118922905e-08 + ArtUnc_54: 2.9872328342697794e-08 + ArtUnc_55: -1.581319061040107e-06 + ArtUnc_56: 1.933241606756599e-06 + ArtUnc_57: 4.697845033799855e-07 + ArtUnc_58: -3.308935751188501e-06 + ArtUnc_59: 1.8756063896365827e-07 + ArtUnc_60: -3.6319870239236007e-06 + ArtUnc_61: 8.974999862891205e-09 + ArtUnc_62: -3.2100263389846357e-07 + ArtUnc_63: 3.687766345572873e-08 + ArtUnc_64: -7.773053107356384e-06 + ArtUnc_65: 6.977881398509863e-07 + ArtUnc_66: -8.346360521631696e-06 + ArtUnc_67: -3.417827012533332e-07 + ArtUnc_68: -4.126287864727083e-07 + ArtUnc_69: 3.5351700709203385e-09 + ArtUnc_70: -4.836847420599969e-07 + ArtUnc_71: -2.5243277693506292e-08 + ArtUnc_72: -5.773132591863485e-06 + ArtUnc_73: -4.681112618505477e-07 + ArtUnc_74: -1.577039913530142e-06 + ArtUnc_75: 9.86917479891918e-06 + ArtUnc_76: 7.128038724576999e-08 + ArtUnc_77: -3.1454011412941795e-08 + ArtUnc_78: 1.8891715977876717e-05 + ArtUnc_79: 1.349982111950535e-05 + ArtUnc_80: -7.125930552507109e-08 + ArtUnc_81: 4.94833375371924e-07 + ArtUnc_82: 3.523517435289861e-08 + ArtUnc_83: -5.926496319977509e-08 + ArtUnc_84: -1.4452008476412964e-07 + ArtUnc_85: 1.508320644838305e-08 + ArtUnc_86: 4.377923905507967e-09 + ArtUnc_87: 5.063614671791702e-09 + ArtUnc_88: 6.745731559486469e-09 + ArtUnc_89: 2.873263317578852e-07 + ArtUnc_90: -9.439684959935189e-08 + ArtUnc_91: -2.3971753920997772e-08 + ArtUnc_92: -4.26823292277409e-08 + ArtUnc_93: 1.5311556383332444e-09 + ArtUnc_94: -4.599464050398569e-10 + ArtUnc_95: -1.9906259590373583e-08 + ArtUnc_96: 2.321632159279879e-09 - stat: 0 Uncorr: 8.380000000000001e-07 RCES: 1.9450628076234456e-06 @@ -903,102 +903,102 @@ bins: ModelRW_2: 1.4280587131487277e-06 JES_1: 2.0161760161627757e-06 JES_2: 2.0161760161627757e-06 - ArtUnc_1: -1.901999100018548e-17 - ArtUnc_2: 1.0507157367213475e-14 - ArtUnc_3: 7.40593611506568e-14 - ArtUnc_4: 4.151678287759254e-13 - ArtUnc_5: 1.4607047974815595e-14 - ArtUnc_6: 3.987043341001862e-15 - ArtUnc_7: 2.9871234429879902e-12 - ArtUnc_8: -1.2890110141978409e-11 - ArtUnc_9: 1.9362487676758983e-13 - ArtUnc_10: -1.9130658820515975e-13 - ArtUnc_11: -3.400051044624664e-13 - ArtUnc_12: 3.652002954948537e-14 - ArtUnc_13: -7.1714396580676e-12 - ArtUnc_14: -1.2279063926269335e-13 - ArtUnc_15: 5.068030341871257e-14 - ArtUnc_16: 1.814632633271903e-15 - ArtUnc_17: -2.5823036771678652e-12 - ArtUnc_18: -7.732364378016276e-14 - ArtUnc_19: -1.0368599030456471e-11 - ArtUnc_20: 2.5377948411775244e-11 - ArtUnc_21: -1.835525458104688e-12 - ArtUnc_22: 3.2305271486619654e-10 - ArtUnc_23: 6.5716499618462496e-12 - ArtUnc_24: -1.3152564112477424e-10 - ArtUnc_25: -2.5802325607478847e-10 - ArtUnc_26: 5.448016000663151e-11 - ArtUnc_27: 9.181928486936754e-10 - ArtUnc_28: -4.2663113324387277e-11 - ArtUnc_29: -2.121381067982099e-10 - ArtUnc_30: 1.233692589427189e-10 - ArtUnc_31: 5.0572066257513994e-11 - ArtUnc_32: 1.98979108431419e-09 - ArtUnc_33: 5.964743403610258e-13 - ArtUnc_34: -4.229102206599528e-11 - ArtUnc_35: 6.37277150007288e-11 - ArtUnc_36: -8.992438540247284e-10 - ArtUnc_37: -2.8238691842799766e-09 - ArtUnc_38: -5.02980540834054e-10 - ArtUnc_39: -3.760335301555371e-09 - ArtUnc_40: -1.5225495777843334e-11 - ArtUnc_41: -1.5530794004637835e-08 - ArtUnc_42: -1.1200097110878717e-10 - ArtUnc_43: 3.320458370958875e-08 - ArtUnc_44: 1.612778691079054e-08 - ArtUnc_45: 1.9434751822814306e-10 - ArtUnc_46: 4.818719281876162e-09 - ArtUnc_47: -3.593683334232163e-10 - ArtUnc_48: 1.4452431641240683e-11 - ArtUnc_49: -1.1561914693040196e-07 - ArtUnc_50: -3.095265809794582e-09 - ArtUnc_51: 1.9902500579980663e-09 - ArtUnc_52: -1.0551540835725304e-09 - ArtUnc_53: -2.5839868436903215e-11 - ArtUnc_54: 2.735989615037522e-10 - ArtUnc_55: -1.7146668510367313e-08 - ArtUnc_56: -9.346685172218939e-09 - ArtUnc_57: -2.2964573279146082e-09 - ArtUnc_58: -2.5410501696593928e-08 - ArtUnc_59: 2.4527977930520205e-10 - ArtUnc_60: -4.2690864286483435e-08 - ArtUnc_61: -1.0006795074036811e-10 - ArtUnc_62: -1.5073637831944534e-09 - ArtUnc_63: 3.875254156561107e-11 - ArtUnc_64: 7.557892352678368e-08 - ArtUnc_65: -7.762771204768927e-09 - ArtUnc_66: -2.1676490443905314e-07 - ArtUnc_67: 3.088925173793289e-08 - ArtUnc_68: -3.777323449849427e-08 - ArtUnc_69: 9.873502259304843e-09 - ArtUnc_70: -2.373128831845292e-07 - ArtUnc_71: -2.8574018820259706e-09 - ArtUnc_72: 7.728916750925105e-08 - ArtUnc_73: 1.8004829794941364e-08 - ArtUnc_74: -1.1896352758006238e-06 - ArtUnc_75: 2.2098648925168953e-07 - ArtUnc_76: 2.786018071151877e-08 - ArtUnc_77: 7.187084774474957e-08 - ArtUnc_78: 2.2916415135349406e-06 - ArtUnc_79: -4.401578860181418e-06 - ArtUnc_80: 8.779094540537243e-08 - ArtUnc_81: -1.1345022521153709e-07 - ArtUnc_82: 1.138157692268845e-08 - ArtUnc_83: 3.163933993362653e-07 - ArtUnc_84: 1.3329149678621984e-06 - ArtUnc_85: 2.1353944709585353e-08 - ArtUnc_86: 5.5925988440237304e-08 - ArtUnc_87: 1.094170745951463e-07 - ArtUnc_88: -2.670456958818338e-06 - ArtUnc_89: 1.1376874495448061e-07 - ArtUnc_90: 4.823102494690155e-07 - ArtUnc_91: 1.4649026332981122e-07 - ArtUnc_92: 8.78447031792603e-06 - ArtUnc_93: 3.28059110009874e-08 - ArtUnc_94: 1.881002465380906e-07 - ArtUnc_95: -4.025966804622711e-07 - ArtUnc_96: -1.8317314419583592e-08 + ArtUnc_1: -1.9019991291243223e-17 + ArtUnc_2: 1.0507157366899366e-14 + ArtUnc_3: 7.405936115075455e-14 + ArtUnc_4: 4.1516782877622893e-13 + ArtUnc_5: 1.4607047978177815e-14 + ArtUnc_6: 3.987043331119774e-15 + ArtUnc_7: 2.9871234429873815e-12 + ArtUnc_8: -1.28901101419786e-11 + ArtUnc_9: 1.936248767826609e-13 + ArtUnc_10: -1.9130658824214493e-13 + ArtUnc_11: -3.400051045086563e-13 + ArtUnc_12: -3.6520029181094834e-14 + ArtUnc_13: 7.1714396580652244e-12 + ArtUnc_14: -1.2279063899775683e-13 + ArtUnc_15: 5.068030375999428e-14 + ArtUnc_16: 1.814635154565131e-15 + ArtUnc_17: -2.5823036770884942e-12 + ArtUnc_18: 7.732364342860023e-14 + ArtUnc_19: 1.0368599030336335e-11 + ArtUnc_20: 2.537794841164756e-11 + ArtUnc_21: -1.8355254578712134e-12 + ArtUnc_22: 3.23052714866025e-10 + ArtUnc_23: 6.571649960662051e-12 + ArtUnc_24: -1.315256411252612e-10 + ArtUnc_25: -2.5802325607447383e-10 + ArtUnc_26: 5.448016000703067e-11 + ArtUnc_27: 9.181928486933075e-10 + ArtUnc_28: 4.266311332429477e-11 + ArtUnc_29: 2.121381067959539e-10 + ArtUnc_30: 1.2336925894313725e-10 + ArtUnc_31: -5.0572066259762264e-11 + ArtUnc_32: 1.9897910843142253e-09 + ArtUnc_33: -5.964743379366253e-13 + ArtUnc_34: -4.2291022066909204e-11 + ArtUnc_35: -6.372771500145227e-11 + ArtUnc_36: 8.992438540225526e-10 + ArtUnc_37: -2.823869184278453e-09 + ArtUnc_38: 5.029805408362752e-10 + ArtUnc_39: 3.7603353015553514e-09 + ArtUnc_40: -1.522549579025299e-11 + ArtUnc_41: -1.553079400463468e-08 + ArtUnc_42: 1.1200097112152992e-10 + ArtUnc_43: 3.320458370959093e-08 + ArtUnc_44: 1.612778691079218e-08 + ArtUnc_45: -1.9434751816654295e-10 + ArtUnc_46: 4.818719281818341e-09 + ArtUnc_47: -3.5936833342592e-10 + ArtUnc_48: -1.4452431492510908e-11 + ArtUnc_49: 1.156191469303947e-07 + ArtUnc_50: 3.095265809797049e-09 + ArtUnc_51: -1.990250058016618e-09 + ArtUnc_52: 1.0551540835680762e-09 + ArtUnc_53: 2.583986842251015e-11 + ArtUnc_54: -2.7359896160844426e-10 + ArtUnc_55: -1.714666851039895e-08 + ArtUnc_56: -9.346685172236354e-09 + ArtUnc_57: -2.2964573279275797e-09 + ArtUnc_58: -2.541050169654537e-08 + ArtUnc_59: 2.4527977931268276e-10 + ArtUnc_60: 4.26908642864609e-08 + ArtUnc_61: 1.0006795078580084e-10 + ArtUnc_62: -1.5073637832204924e-09 + ArtUnc_63: 3.8752541563071965e-11 + ArtUnc_64: -7.557892352678078e-08 + ArtUnc_65: -7.762771204776205e-09 + ArtUnc_66: 2.1676490443910404e-07 + ArtUnc_67: 3.088925173796808e-08 + ArtUnc_68: -3.7773234498553116e-08 + ArtUnc_69: -9.873502259301812e-09 + ArtUnc_70: 2.373128831845414e-07 + ArtUnc_71: 2.8574018820224212e-09 + ArtUnc_72: -7.728916750927325e-08 + ArtUnc_73: -1.8004829794967403e-08 + ArtUnc_74: 1.1896352758006183e-06 + ArtUnc_75: 2.2098648925167571e-07 + ArtUnc_76: 2.7860180711512064e-08 + ArtUnc_77: 7.187084774475774e-08 + ArtUnc_78: 2.2916415135354548e-06 + ArtUnc_79: -4.401578860181456e-06 + ArtUnc_80: 8.779094540533577e-08 + ArtUnc_81: -1.1345022521150932e-07 + ArtUnc_82: -1.1381576922669683e-08 + ArtUnc_83: 3.163933993362474e-07 + ArtUnc_84: -1.3329149678621743e-06 + ArtUnc_85: -2.135394470958957e-08 + ArtUnc_86: 5.592598844023283e-08 + ArtUnc_87: 1.0941707459513449e-07 + ArtUnc_88: 1.1376874495446983e-07 + ArtUnc_89: 2.6704569588183046e-06 + ArtUnc_90: -4.823102494690392e-07 + ArtUnc_91: 1.4649026332982186e-07 + ArtUnc_92: -8.784470317925978e-06 + ArtUnc_93: 3.280591100098844e-08 + ArtUnc_94: 1.8810024653809077e-07 + ArtUnc_95: -4.025966804622898e-07 + ArtUnc_96: -1.8317314419579824e-08 - stat: 0 Uncorr: 1.58e-07 RCES: 2.6507649216782695e-07 @@ -1014,102 +1014,102 @@ bins: ModelRW_2: 1.197669181702527e-06 JES_1: 9.173012464834002e-07 JES_2: 9.173012464834002e-07 - ArtUnc_1: 2.3592717455278063e-20 - ArtUnc_2: -5.922629162227702e-18 - ArtUnc_3: -1.881943600015444e-17 - ArtUnc_4: 3.1581875786552915e-17 - ArtUnc_5: 1.5937575158089415e-18 - ArtUnc_6: 3.2893423568347272e-18 - ArtUnc_7: 1.2239723672629012e-15 - ArtUnc_8: -2.2074775992875465e-14 - ArtUnc_9: 6.704927997723987e-16 - ArtUnc_10: 2.769940885779498e-14 - ArtUnc_11: -5.873909050918547e-14 - ArtUnc_12: 4.6646760813590076e-15 - ArtUnc_13: 3.208249464110612e-14 - ArtUnc_14: -2.768336938859504e-15 - ArtUnc_15: 7.564761724867157e-15 - ArtUnc_16: -4.898938035446411e-16 - ArtUnc_17: -7.062103028399974e-15 - ArtUnc_18: -5.255133974819861e-16 - ArtUnc_19: -1.6363092567285706e-14 - ArtUnc_20: -2.3889846365697364e-13 - ArtUnc_21: 2.0807479149316982e-14 - ArtUnc_22: -5.297202828929652e-12 - ArtUnc_23: -1.9082778110477102e-13 - ArtUnc_24: 6.039201406219688e-12 - ArtUnc_25: 2.6715907554407336e-12 - ArtUnc_26: -2.796639331847442e-13 - ArtUnc_27: -1.9072862813521637e-11 - ArtUnc_28: 3.1805753313814845e-13 - ArtUnc_29: -2.342851279918988e-12 - ArtUnc_30: -2.1374606686935742e-13 - ArtUnc_31: -1.0815260613105309e-13 - ArtUnc_32: -1.96863975719e-11 - ArtUnc_33: 1.56368002495703e-14 - ArtUnc_34: 4.941397788678146e-12 - ArtUnc_35: -3.4343154224011755e-12 - ArtUnc_36: 4.797358782019336e-11 - ArtUnc_37: 5.773888609002955e-11 - ArtUnc_38: 9.251216849880243e-12 - ArtUnc_39: 6.909058451839528e-11 - ArtUnc_40: 1.692511740888848e-12 - ArtUnc_41: 3.7053698468621566e-10 - ArtUnc_42: -1.8553929057684222e-11 - ArtUnc_43: -4.846323282585256e-10 - ArtUnc_44: -3.327459492748151e-11 - ArtUnc_45: -7.597393140041539e-13 - ArtUnc_46: -6.897334913039593e-11 - ArtUnc_47: 1.5566079258685414e-10 - ArtUnc_48: 7.485089690148145e-12 - ArtUnc_49: 4.1862286539349234e-10 - ArtUnc_50: -6.302238876177875e-11 - ArtUnc_51: 9.65302787763233e-10 - ArtUnc_52: -5.721657990641889e-10 - ArtUnc_53: 2.4895736849703775e-11 - ArtUnc_54: 7.617696381166007e-11 - ArtUnc_55: -1.3478870594900175e-08 - ArtUnc_56: 1.2402321011990233e-08 - ArtUnc_57: 3.5571456105792596e-09 - ArtUnc_58: -2.5561509082484207e-08 - ArtUnc_59: -1.2383163719012923e-10 - ArtUnc_60: 3.2222219760102e-08 - ArtUnc_61: 5.225128803503071e-12 - ArtUnc_62: -8.974571982242052e-10 - ArtUnc_63: 9.44057460845764e-11 - ArtUnc_64: 2.4480318754976328e-08 - ArtUnc_65: 1.042472983640617e-09 - ArtUnc_66: 3.516679646392288e-08 - ArtUnc_67: 3.5298812203812566e-10 - ArtUnc_68: 1.9926689573872634e-09 - ArtUnc_69: 3.938321250106937e-10 - ArtUnc_70: -9.539111780809803e-09 - ArtUnc_71: -2.2666150732372423e-10 - ArtUnc_72: -4.3344959477670075e-08 - ArtUnc_73: -3.4399107786647648e-09 - ArtUnc_74: -3.766214542747313e-08 - ArtUnc_75: -8.85383302597457e-08 - ArtUnc_76: -5.078556975299819e-10 - ArtUnc_77: 2.6350754104581286e-09 - ArtUnc_78: -5.219583627352078e-08 - ArtUnc_79: -1.928632086792721e-07 - ArtUnc_80: 2.0279690969120902e-09 - ArtUnc_81: -7.292739062852815e-09 - ArtUnc_82: 5.17014190383794e-10 - ArtUnc_83: 2.2541666134291343e-08 - ArtUnc_84: 3.969306237175464e-08 - ArtUnc_85: -2.686872478207086e-06 - ArtUnc_86: 4.1414736198157015e-07 - ArtUnc_87: 7.862979078956051e-07 - ArtUnc_88: -4.4423448886376586e-08 - ArtUnc_89: 1.172101147051345e-08 - ArtUnc_90: -2.65116567570053e-07 - ArtUnc_91: -1.6784554078079344e-06 - ArtUnc_92: 1.550500835139886e-08 - ArtUnc_93: 1.9257018402597083e-08 - ArtUnc_94: 2.228125152342082e-08 - ArtUnc_95: -8.447286155149883e-07 - ArtUnc_96: -1.7506003847933813e-07 + ArtUnc_1: 2.35927203457836e-20 + ArtUnc_2: -5.922629161146333e-18 + ArtUnc_3: -1.8819435998532412e-17 + ArtUnc_4: 3.158187577786074e-17 + ArtUnc_5: 1.5937576017366522e-18 + ArtUnc_6: 3.289342185321362e-18 + ArtUnc_7: 1.2239723672715737e-15 + ArtUnc_8: -2.2074775992870183e-14 + ArtUnc_9: 6.704927999036726e-16 + ArtUnc_10: 2.7699408858070488e-14 + ArtUnc_11: -5.873909050903443e-14 + ArtUnc_12: -4.664676081797592e-15 + ArtUnc_13: -3.2082494641071664e-14 + ArtUnc_14: -2.7683369430503856e-15 + ArtUnc_15: 7.564761722243567e-15 + ArtUnc_16: -4.898938440266008e-16 + ArtUnc_17: -7.0621030270174545e-15 + ArtUnc_18: 5.255133824119982e-16 + ArtUnc_19: 1.636309256674278e-14 + ArtUnc_20: -2.388984636576834e-13 + ArtUnc_21: 2.0807479147216883e-14 + ArtUnc_22: -5.297202828927104e-12 + ArtUnc_23: -1.9082778121082117e-13 + ArtUnc_24: 6.039201406219987e-12 + ArtUnc_25: 2.6715907554250054e-12 + ArtUnc_26: -2.7966393291241113e-13 + ArtUnc_27: -1.9072862813516748e-11 + ArtUnc_28: -3.1805753329792926e-13 + ArtUnc_29: 2.342851279537203e-12 + ArtUnc_30: -2.1374606682004223e-13 + ArtUnc_31: 1.0815260616289436e-13 + ArtUnc_32: -1.9686397571900833e-11 + ArtUnc_33: -1.5636800167330968e-14 + ArtUnc_34: 4.9413977886084574e-12 + ArtUnc_35: 3.43431542246607e-12 + ArtUnc_36: -4.797358782039034e-11 + ArtUnc_37: 5.773888609003612e-11 + ArtUnc_38: -9.251216849801803e-12 + ArtUnc_39: -6.909058451839399e-11 + ArtUnc_40: 1.6925117406345058e-12 + ArtUnc_41: 3.7053698468647157e-10 + ArtUnc_42: 1.855392905824653e-11 + ArtUnc_43: -4.846323282584783e-10 + ArtUnc_44: -3.327459492762007e-11 + ArtUnc_45: 7.597393152306623e-13 + ArtUnc_46: -6.897334913058715e-11 + ArtUnc_47: 1.5566079258656675e-10 + ArtUnc_48: -7.485089687541113e-12 + ArtUnc_49: -4.1862286539354177e-10 + ArtUnc_50: 6.302238876174077e-11 + ArtUnc_51: -9.653027877636256e-10 + ArtUnc_52: 5.72165799063931e-10 + ArtUnc_53: -2.489573684983785e-11 + ArtUnc_54: -7.617696381330824e-11 + ArtUnc_55: -1.3478870594901272e-08 + ArtUnc_56: 1.2402321011988667e-08 + ArtUnc_57: 3.5571456105850805e-09 + ArtUnc_58: -2.556150908248414e-08 + ArtUnc_59: -1.2383163719166848e-10 + ArtUnc_60: -3.2222219760101495e-08 + ArtUnc_61: -5.2251288050979926e-12 + ArtUnc_62: -8.97457198223341e-10 + ArtUnc_63: 9.440574608420388e-11 + ArtUnc_64: -2.448031875497111e-08 + ArtUnc_65: 1.042472983643038e-09 + ArtUnc_66: -3.5166796463923804e-08 + ArtUnc_67: 3.52988122038554e-10 + ArtUnc_68: 1.992668957386929e-09 + ArtUnc_69: -3.938321250102191e-10 + ArtUnc_70: 9.539111780811317e-09 + ArtUnc_71: 2.266615073220808e-10 + ArtUnc_72: 4.3344959477670267e-08 + ArtUnc_73: 3.439910778665954e-09 + ArtUnc_74: 3.766214542747073e-08 + ArtUnc_75: -8.853833025974996e-08 + ArtUnc_76: -5.07855697525207e-10 + ArtUnc_77: 2.6350754104537003e-09 + ArtUnc_78: -5.219583627350703e-08 + ArtUnc_79: -1.9286320867927353e-07 + ArtUnc_80: 2.0279690969114773e-09 + ArtUnc_81: -7.292739062847744e-09 + ArtUnc_82: -5.170141903927744e-10 + ArtUnc_83: 2.2541666134281235e-08 + ArtUnc_84: -3.9693062371755816e-08 + ArtUnc_85: 2.686872478207075e-06 + ArtUnc_86: 4.141473619815568e-07 + ArtUnc_87: 7.862979078955503e-07 + ArtUnc_88: 1.1721011470516791e-08 + ArtUnc_89: 4.4423448886381265e-08 + ArtUnc_90: 2.651165675700547e-07 + ArtUnc_91: -1.6784554078079242e-06 + ArtUnc_92: -1.550500835139394e-08 + ArtUnc_93: 1.9257018402611466e-08 + ArtUnc_94: 2.2281251523428708e-08 + ArtUnc_95: -8.447286155149897e-07 + ArtUnc_96: -1.7506003847933434e-07 - stat: 0 Uncorr: 0.00029 RCES: 0.0018074021709348475 @@ -1125,102 +1125,102 @@ bins: ModelRW_2: 0.00022351645353306773 JES_1: 0.0008274832528516816 JES_2: 0.0008274832528516816 - ArtUnc_1: -4.650512749510166e-09 - ArtUnc_2: 2.615040433829322e-07 - ArtUnc_3: 5.12557246908949e-07 - ArtUnc_4: 1.0849380135809137e-06 - ArtUnc_5: 7.030184434031912e-08 - ArtUnc_6: -6.666096450905855e-08 - ArtUnc_7: 8.926475091345058e-06 - ArtUnc_8: -3.752463903315616e-05 - ArtUnc_9: -4.525940513413942e-06 - ArtUnc_10: 3.1467905590806136e-05 - ArtUnc_11: -2.023314790240504e-05 - ArtUnc_12: -2.0219473189516724e-06 - ArtUnc_13: 4.0032878530944104e-05 - ArtUnc_14: 9.542902962029522e-06 - ArtUnc_15: -1.5817618089945143e-05 - ArtUnc_16: 5.069765305481629e-07 - ArtUnc_17: -1.08891559690467e-05 - ArtUnc_18: -7.854719394650325e-07 - ArtUnc_19: -2.3706046886005396e-05 - ArtUnc_20: -1.9083074205274192e-05 - ArtUnc_21: 4.747888848598477e-07 - ArtUnc_22: 0.0001673429516106384 - ArtUnc_23: 1.8956321121486008e-06 - ArtUnc_24: 0.00013912348563776817 - ArtUnc_25: 0.0001879940038701234 - ArtUnc_26: 3.117946243289524e-05 - ArtUnc_27: 0.00021123077073010452 - ArtUnc_28: -2.6931251017312914e-06 - ArtUnc_29: -0.0005732465940048247 - ArtUnc_30: 0.00012951670447790492 - ArtUnc_31: 5.3867864331504804e-05 - ArtUnc_32: -0.00022791727755530698 - ArtUnc_33: -2.3810441820842363e-07 - ArtUnc_34: -7.330782394984981e-06 - ArtUnc_35: 1.7685369090595978e-05 - ArtUnc_36: 2.472431294429736e-06 - ArtUnc_37: -1.4607163820264948e-05 - ArtUnc_38: -2.6176429082263394e-06 - ArtUnc_39: 6.607915967338179e-07 - ArtUnc_40: -5.1362874816019386e-08 - ArtUnc_41: 1.5135293048599682e-06 - ArtUnc_42: 3.930922079682163e-08 - ArtUnc_43: 1.304912887440288e-06 - ArtUnc_44: -7.960303951658007e-06 - ArtUnc_45: -5.351476142610959e-08 - ArtUnc_46: -3.500460120766551e-07 - ArtUnc_47: -2.6985309472054276e-07 - ArtUnc_48: -6.382660114581625e-09 - ArtUnc_49: -2.434139705635471e-06 - ArtUnc_50: -4.811695723307431e-07 - ArtUnc_51: -2.879156312046098e-08 - ArtUnc_52: -1.9332838629887088e-08 - ArtUnc_53: -5.698775424400125e-09 - ArtUnc_54: 1.2428319793268545e-08 - ArtUnc_55: 1.829936559843659e-08 - ArtUnc_56: -9.683602000647387e-10 - ArtUnc_57: -2.0089989751234485e-09 - ArtUnc_58: -4.093810632764918e-09 - ArtUnc_59: 7.913059982895017e-09 - ArtUnc_60: -6.358131181265117e-09 - ArtUnc_61: -3.316418941661967e-11 - ArtUnc_62: 4.826728173644871e-09 - ArtUnc_63: -5.171061553900622e-10 - ArtUnc_64: -3.349431848054753e-07 - ArtUnc_65: -1.1614407621022927e-08 - ArtUnc_66: 2.3340415670960243e-07 - ArtUnc_67: -4.714533807608359e-09 - ArtUnc_68: -5.125500757965474e-10 - ArtUnc_69: -2.568175920169571e-11 - ArtUnc_70: 4.617791891800068e-10 - ArtUnc_71: 1.7269565631121524e-11 - ArtUnc_72: 1.0426947546369062e-09 - ArtUnc_73: -1.3974946479046988e-10 - ArtUnc_74: 7.388353615943769e-11 - ArtUnc_75: 2.2023115713548736e-09 - ArtUnc_76: -3.2388756321363645e-11 - ArtUnc_77: 1.683694432077247e-10 - ArtUnc_78: -2.3319062783812886e-09 - ArtUnc_79: 6.984125752366835e-10 - ArtUnc_80: 2.421067285842708e-10 - ArtUnc_81: -1.064510427534945e-10 - ArtUnc_82: -9.551534802834587e-12 - ArtUnc_83: 4.2477216540959984e-11 - ArtUnc_84: -1.2581519448914072e-11 - ArtUnc_85: 2.8532031390087507e-13 - ArtUnc_86: -7.1550686481024196e-12 - ArtUnc_87: -8.385559175990136e-12 - ArtUnc_88: -6.684767466889214e-11 - ArtUnc_89: 9.054072666778e-12 - ArtUnc_90: -1.8249590088503793e-11 - ArtUnc_91: -1.376928279346296e-12 - ArtUnc_92: 2.0830196938468465e-10 - ArtUnc_93: 1.474440598941585e-11 - ArtUnc_94: 2.806228895777921e-12 - ArtUnc_95: -4.903718148236899e-11 - ArtUnc_96: 1.1351687655146475e-11 + ArtUnc_1: -4.650512749355942e-09 + ArtUnc_2: 2.6150404338355495e-07 + ArtUnc_3: 5.12557246908968e-07 + ArtUnc_4: 1.0849380135812087e-06 + ArtUnc_5: 7.030184433999337e-08 + ArtUnc_6: -6.666096450952222e-08 + ArtUnc_7: 8.926475091343498e-06 + ArtUnc_8: -3.752463903315676e-05 + ArtUnc_9: -4.525940513413666e-06 + ArtUnc_10: 3.1467905590806244e-05 + ArtUnc_11: -2.0233147902406997e-05 + ArtUnc_12: 2.021947318951445e-06 + ArtUnc_13: -4.003287853094295e-05 + ArtUnc_14: 9.54290296203011e-06 + ArtUnc_15: -1.5817618089945295e-05 + ArtUnc_16: 5.069765305450733e-07 + ArtUnc_17: -1.0889155969046879e-05 + ArtUnc_18: 7.854719394652192e-07 + ArtUnc_19: 2.3706046886005644e-05 + ArtUnc_20: -1.9083074205274243e-05 + ArtUnc_21: 4.747888848597217e-07 + ArtUnc_22: 0.00016734295161063723 + ArtUnc_23: 1.8956321121513973e-06 + ArtUnc_24: 0.0001391234856377672 + ArtUnc_25: 0.00018799400387012392 + ArtUnc_26: 3.117946243289525e-05 + ArtUnc_27: 0.00021123077073010498 + ArtUnc_28: 2.693125101744767e-06 + ArtUnc_29: 0.0005732465940048262 + ArtUnc_30: 0.00012951670447777832 + ArtUnc_31: -5.386786433193626e-05 + ArtUnc_32: -0.0002279172775553063 + ArtUnc_33: 2.3810441821111926e-07 + ArtUnc_34: -7.330782394982886e-06 + ArtUnc_35: -1.7685369090595917e-05 + ArtUnc_36: -2.4724312944298536e-06 + ArtUnc_37: -1.4607163820264878e-05 + ArtUnc_38: 2.6176429082255432e-06 + ArtUnc_39: -6.607915967338914e-07 + ArtUnc_40: -5.1362874816051534e-08 + ArtUnc_41: 1.5135293048599083e-06 + ArtUnc_42: -3.930922079681527e-08 + ArtUnc_43: 1.3049128874402319e-06 + ArtUnc_44: -7.96030395165809e-06 + ArtUnc_45: 5.351476142624853e-08 + ArtUnc_46: -3.500460120766658e-07 + ArtUnc_47: -2.698530947205398e-07 + ArtUnc_48: 6.382660114578908e-09 + ArtUnc_49: 2.4341397056357427e-06 + ArtUnc_50: 4.81169572330774e-07 + ArtUnc_51: 2.879156312045966e-08 + ArtUnc_52: 1.933283862988446e-08 + ArtUnc_53: 5.698775424400118e-09 + ArtUnc_54: -1.2428319793269074e-08 + ArtUnc_55: 1.8299365598447446e-08 + ArtUnc_56: -9.683602000634305e-10 + ArtUnc_57: -2.008998975123179e-09 + ArtUnc_58: -4.09381063276111e-09 + ArtUnc_59: 7.913059982895237e-09 + ArtUnc_60: 6.358131181272643e-09 + ArtUnc_61: 3.316418941539378e-11 + ArtUnc_62: 4.826728173643972e-09 + ArtUnc_63: -5.171061553907083e-10 + ArtUnc_64: 3.34943184805511e-07 + ArtUnc_65: -1.1614407621026812e-08 + ArtUnc_66: -2.3340415670957435e-07 + ArtUnc_67: -4.714533807607662e-09 + ArtUnc_68: -5.125500757971282e-10 + ArtUnc_69: 2.5681759201689222e-11 + ArtUnc_70: -4.617791891797858e-10 + ArtUnc_71: -1.726956563111836e-11 + ArtUnc_72: -1.0426947546361144e-09 + ArtUnc_73: 1.3974946479052858e-10 + ArtUnc_74: -7.388353615932547e-11 + ArtUnc_75: 2.2023115713533785e-09 + ArtUnc_76: -3.238875632136181e-11 + ArtUnc_77: 1.683694432077045e-10 + ArtUnc_78: -2.3319062783790383e-09 + ArtUnc_79: 6.984125752352948e-10 + ArtUnc_80: 2.4210672858428407e-10 + ArtUnc_81: -1.0645104275344316e-10 + ArtUnc_82: 9.551534802832154e-12 + ArtUnc_83: 4.247721654093233e-11 + ArtUnc_84: 1.2581519448969144e-11 + ArtUnc_85: -2.853203139020557e-13 + ArtUnc_86: -7.1550686480950606e-12 + ArtUnc_87: -8.385559175981213e-12 + ArtUnc_88: 9.054072666771776e-12 + ArtUnc_89: 6.684767466884986e-11 + ArtUnc_90: 1.8249590088465067e-11 + ArtUnc_91: -1.3769282793509156e-12 + ArtUnc_92: -2.0830196938451975e-10 + ArtUnc_93: 1.474440598941191e-11 + ArtUnc_94: 2.8062288957760026e-12 + ArtUnc_95: -4.9037181482300245e-11 + ArtUnc_96: 1.1351687655157902e-11 - stat: 0 Uncorr: 0.000169 RCES: 0.00014482816853084897 @@ -1236,102 +1236,102 @@ bins: ModelRW_2: 6.931060669190537e-05 JES_1: 0.0002492305977403256 JES_2: 0.0002492305977403256 - ArtUnc_1: 5.471569995891646e-10 - ArtUnc_2: -2.1548459534169628e-08 - ArtUnc_3: 1.6107173820232725e-09 - ArtUnc_4: 1.8790643118297607e-07 - ArtUnc_5: 1.050117042570297e-09 - ArtUnc_6: 1.4980021086587036e-08 - ArtUnc_7: 1.0716030983490844e-06 - ArtUnc_8: -5.852027745173473e-06 - ArtUnc_9: 7.491192402189114e-07 - ArtUnc_10: -8.052950538933017e-08 - ArtUnc_11: -5.7252344852199985e-06 - ArtUnc_12: 9.685501549657312e-07 - ArtUnc_13: 1.3424257850249387e-06 - ArtUnc_14: -9.956049613005863e-07 - ArtUnc_15: 5.297725506633483e-07 - ArtUnc_16: 1.673837768454332e-08 - ArtUnc_17: -3.582507838236449e-07 - ArtUnc_18: 1.2647274373508488e-08 - ArtUnc_19: -1.2336629966632117e-06 - ArtUnc_20: 8.403154663433771e-07 - ArtUnc_21: 6.791298681435195e-07 - ArtUnc_22: -1.776150220884706e-06 - ArtUnc_23: -4.784905450234038e-07 - ArtUnc_24: -5.1696968831452726e-06 - ArtUnc_25: 2.821350325782999e-05 - ArtUnc_26: -6.758352126525412e-06 - ArtUnc_27: -1.948245245698466e-05 - ArtUnc_28: 1.8615587928714592e-07 - ArtUnc_29: -4.9400028648362785e-06 - ArtUnc_30: 2.5959751638211684e-06 - ArtUnc_31: 1.0763248007906184e-06 - ArtUnc_32: -3.287425978178637e-05 - ArtUnc_33: 3.2994683073729474e-08 - ArtUnc_34: -1.234940266205477e-06 - ArtUnc_35: 6.191515490196092e-06 - ArtUnc_36: 2.7249485883068733e-06 - ArtUnc_37: -5.989822561698192e-05 - ArtUnc_38: -1.0403639627465775e-05 - ArtUnc_39: -7.720196274664049e-05 - ArtUnc_40: 1.5220534773968058e-06 - ArtUnc_41: 1.709379278867283e-05 - ArtUnc_42: -8.11450519569054e-07 - ArtUnc_43: -1.3715268834483381e-05 - ArtUnc_44: 0.0002462097444531081 - ArtUnc_45: 1.2730256982183371e-06 - ArtUnc_46: 1.1643913116449376e-05 - ArtUnc_47: 1.629978914010714e-06 - ArtUnc_48: 2.280929511647473e-07 - ArtUnc_49: 3.6345767126120526e-05 - ArtUnc_50: 2.4422571255477306e-06 - ArtUnc_51: 6.822122723980482e-08 - ArtUnc_52: -5.976234737191764e-08 - ArtUnc_53: 1.8446310222817315e-08 - ArtUnc_54: -2.4751852109218752e-08 - ArtUnc_55: 1.131003801326065e-06 - ArtUnc_56: 1.0759820264169869e-06 - ArtUnc_57: 3.0780950207663535e-07 - ArtUnc_58: 6.812023712735954e-07 - ArtUnc_59: -7.960672216214537e-09 - ArtUnc_60: 5.267916630689111e-07 - ArtUnc_61: 3.39970164677748e-10 - ArtUnc_62: -6.665603912810152e-09 - ArtUnc_63: 7.138800656329359e-10 - ArtUnc_64: 2.477585785184677e-06 - ArtUnc_65: 3.6242879105329454e-08 - ArtUnc_66: -1.838464013018305e-06 - ArtUnc_67: 2.718142424691705e-08 - ArtUnc_68: -2.8193276372483382e-08 - ArtUnc_69: 5.427607805245182e-10 - ArtUnc_70: -3.084661349746725e-09 - ArtUnc_71: 5.447159219783033e-11 - ArtUnc_72: 2.1302205731501905e-08 - ArtUnc_73: 8.47153107572282e-10 - ArtUnc_74: 1.1628840669622708e-08 - ArtUnc_75: 1.7170116614497963e-08 - ArtUnc_76: -2.3415368954742075e-10 - ArtUnc_77: -2.7783117168968716e-10 - ArtUnc_78: 3.2602119554402305e-08 - ArtUnc_79: 1.0463517159940953e-08 - ArtUnc_80: -3.450248147908858e-10 - ArtUnc_81: 7.482156465457027e-10 - ArtUnc_82: -3.8370527796877e-11 - ArtUnc_83: -3.2471216627324176e-11 - ArtUnc_84: 1.4283148435102442e-09 - ArtUnc_85: -2.316766223558353e-11 - ArtUnc_86: 6.903485286948077e-11 - ArtUnc_87: 6.463824938402307e-11 - ArtUnc_88: -3.636593406602767e-10 - ArtUnc_89: 6.413357358594171e-12 - ArtUnc_90: 2.5940032189819596e-10 - ArtUnc_91: 6.457000917867735e-11 - ArtUnc_92: -1.2350529808453373e-09 - ArtUnc_93: -1.151435439702523e-11 - ArtUnc_94: -3.215014335109707e-11 - ArtUnc_95: -9.74700949230058e-11 - ArtUnc_96: -6.133126016763498e-11 + ArtUnc_1: 5.471569996118318e-10 + ArtUnc_2: -2.1548459534153544e-08 + ArtUnc_3: 1.6107173820174696e-09 + ArtUnc_4: 1.879064311830434e-07 + ArtUnc_5: 1.050117042374516e-09 + ArtUnc_6: 1.4980021086434547e-08 + ArtUnc_7: 1.0716030983489342e-06 + ArtUnc_8: -5.8520277451735335e-06 + ArtUnc_9: 7.491192402186086e-07 + ArtUnc_10: -8.052950538988503e-08 + ArtUnc_11: -5.725234485220118e-06 + ArtUnc_12: -9.685501549661442e-07 + ArtUnc_13: -1.3424257850248628e-06 + ArtUnc_14: -9.956049613002278e-07 + ArtUnc_15: 5.29772550663397e-07 + ArtUnc_16: 1.6738377684272918e-08 + ArtUnc_17: -3.582507838237691e-07 + ArtUnc_18: -1.264727437334715e-08 + ArtUnc_19: 1.233662996663388e-06 + ArtUnc_20: 8.403154663435293e-07 + ArtUnc_21: 6.79129868143396e-07 + ArtUnc_22: -1.776150220884529e-06 + ArtUnc_23: -4.784905450229317e-07 + ArtUnc_24: -5.169696883145389e-06 + ArtUnc_25: 2.8213503257829692e-05 + ArtUnc_26: -6.758352126525302e-06 + ArtUnc_27: -1.9482452456984413e-05 + ArtUnc_28: -1.8615587928710915e-07 + ArtUnc_29: 4.94000286483612e-06 + ArtUnc_30: 2.595975163818299e-06 + ArtUnc_31: -1.076324800799102e-06 + ArtUnc_32: -3.2874259781786615e-05 + ArtUnc_33: -3.299468307382029e-08 + ArtUnc_34: -1.2349402662050923e-06 + ArtUnc_35: -6.191515490195612e-06 + ArtUnc_36: -2.7249485883079676e-06 + ArtUnc_37: -5.989822561698278e-05 + ArtUnc_38: 1.040363962746263e-05 + ArtUnc_39: 7.720196274664037e-05 + ArtUnc_40: 1.5220534773987657e-06 + ArtUnc_41: 1.70937927886724e-05 + ArtUnc_42: 8.114505195690131e-07 + ArtUnc_43: -1.371526883447847e-05 + ArtUnc_44: 0.00024620974445310794 + ArtUnc_45: -1.2730256982223254e-06 + ArtUnc_46: 1.1643913116449547e-05 + ArtUnc_47: 1.6299789140107506e-06 + ArtUnc_48: -2.2809295116473704e-07 + ArtUnc_49: -3.634576712612296e-05 + ArtUnc_50: -2.4422571255481782e-06 + ArtUnc_51: -6.822122723981085e-08 + ArtUnc_52: 5.976234737191589e-08 + ArtUnc_53: -1.8446310222813494e-08 + ArtUnc_54: 2.4751852109216145e-08 + ArtUnc_55: 1.1310038013260833e-06 + ArtUnc_56: 1.0759820264168969e-06 + ArtUnc_57: 3.0780950207694145e-07 + ArtUnc_58: 6.812023712735847e-07 + ArtUnc_59: -7.960672216219715e-09 + ArtUnc_60: -5.267916630689513e-07 + ArtUnc_61: -3.399701646687149e-10 + ArtUnc_62: -6.6656039128050465e-09 + ArtUnc_63: 7.138800656368192e-10 + ArtUnc_64: -2.4775857851850117e-06 + ArtUnc_65: 3.624287910535524e-08 + ArtUnc_66: 1.8384640130182134e-06 + ArtUnc_67: 2.7181424246913548e-08 + ArtUnc_68: -2.8193276372482016e-08 + ArtUnc_69: -5.42760780524532e-10 + ArtUnc_70: 3.0846613497465428e-09 + ArtUnc_71: -5.4471592197849197e-11 + ArtUnc_72: -2.1302205731503017e-08 + ArtUnc_73: -8.471531075724741e-10 + ArtUnc_74: -1.1628840669622942e-08 + ArtUnc_75: 1.7170116614500534e-08 + ArtUnc_76: -2.341536895472736e-10 + ArtUnc_77: -2.7783117168958113e-10 + ArtUnc_78: 3.260211955439682e-08 + ArtUnc_79: 1.046351715994512e-08 + ArtUnc_80: -3.450248147908177e-10 + ArtUnc_81: 7.482156465457119e-10 + ArtUnc_82: 3.8370527796884825e-11 + ArtUnc_83: -3.247121662728555e-11 + ArtUnc_84: -1.4283148435103424e-09 + ArtUnc_85: 2.3167662235587087e-11 + ArtUnc_86: 6.903485286946707e-11 + ArtUnc_87: 6.463824938400358e-11 + ArtUnc_88: 6.4133573585991416e-12 + ArtUnc_89: 3.6365934066034854e-10 + ArtUnc_90: -2.5940032189813645e-10 + ArtUnc_91: 6.457000917868311e-11 + ArtUnc_92: 1.2350529808450879e-09 + ArtUnc_93: -1.151435439701838e-11 + ArtUnc_94: -3.2150143351094645e-11 + ArtUnc_95: -9.747009492310879e-11 + ArtUnc_96: -6.133126016765184e-11 - stat: 0 Uncorr: 3.6400000000000004e-05 RCES: 3.46813882075098e-05 @@ -1347,102 +1347,102 @@ bins: ModelRW_2: 0.00011299283520648553 JES_1: 0.00010517797163855176 JES_2: 0.00010517797163855176 - ArtUnc_1: 3.725748441855142e-13 - ArtUnc_2: -5.576213415696871e-11 - ArtUnc_3: -1.8792997287418968e-10 - ArtUnc_4: -4.5867840932795444e-10 - ArtUnc_5: -1.4436446728744216e-11 - ArtUnc_6: 1.8673969063588274e-11 - ArtUnc_7: -2.304809777235498e-09 - ArtUnc_8: 7.845765890469632e-10 - ArtUnc_9: 1.977290840880951e-09 - ArtUnc_10: -1.1619921967808012e-08 - ArtUnc_11: -3.3435052190755636e-09 - ArtUnc_12: 1.8580739693610029e-09 - ArtUnc_13: -6.89347051218557e-08 - ArtUnc_14: -8.552736714386387e-09 - ArtUnc_15: 1.5846804640892226e-08 - ArtUnc_16: -4.681586314223856e-10 - ArtUnc_17: 2.5773570618027182e-08 - ArtUnc_18: 1.388346765828633e-09 - ArtUnc_19: 1.0772612664036784e-07 - ArtUnc_20: 9.127921594960896e-08 - ArtUnc_21: -6.69780382922057e-11 - ArtUnc_22: -1.1270512654928677e-07 - ArtUnc_23: -1.3323411868686961e-09 - ArtUnc_24: -1.5556328301045476e-06 - ArtUnc_25: 7.606353978765809e-07 - ArtUnc_26: -3.851083482718733e-07 - ArtUnc_27: -1.452548473409936e-06 - ArtUnc_28: 5.088505297563495e-08 - ArtUnc_29: 1.6117205402691302e-06 - ArtUnc_30: -4.113354807336254e-07 - ArtUnc_31: -1.6983994409327336e-07 - ArtUnc_32: 1.6892305922853991e-06 - ArtUnc_33: 1.457067663137859e-10 - ArtUnc_34: 8.989143287514196e-08 - ArtUnc_35: 8.88695551904404e-08 - ArtUnc_36: 7.181782097801695e-07 - ArtUnc_37: -2.077812503773524e-06 - ArtUnc_38: -3.6391782595324245e-07 - ArtUnc_39: -2.7286713820165273e-06 - ArtUnc_40: 5.455195979654707e-08 - ArtUnc_41: 7.549069678202049e-06 - ArtUnc_42: -7.453588459542621e-08 - ArtUnc_43: -1.1101608282611443e-05 - ArtUnc_44: 2.0012574636198835e-06 - ArtUnc_45: 2.7433672163776266e-08 - ArtUnc_46: -9.517229932449512e-07 - ArtUnc_47: 5.589666364913685e-07 - ArtUnc_48: 2.4944416287925542e-08 - ArtUnc_49: 2.347177907621526e-05 - ArtUnc_50: 1.4282041253315672e-06 - ArtUnc_51: -4.788002977744846e-07 - ArtUnc_52: -8.903094382817606e-07 - ArtUnc_53: 1.2459460515367121e-07 - ArtUnc_54: -8.14925320565125e-08 - ArtUnc_55: 1.2594223585420613e-05 - ArtUnc_56: 1.4274865327026748e-05 - ArtUnc_57: 4.174072422600962e-06 - ArtUnc_58: 2.2303548443451325e-05 - ArtUnc_59: -2.1908097420859265e-07 - ArtUnc_60: 1.891093455120236e-05 - ArtUnc_61: 1.094479673948385e-08 - ArtUnc_62: -6.893892056162117e-08 - ArtUnc_63: 5.823766977123618e-09 - ArtUnc_64: -5.6603262292214214e-05 - ArtUnc_65: -8.015406273532788e-07 - ArtUnc_66: 3.9683471410176716e-05 - ArtUnc_67: -5.263076671627705e-07 - ArtUnc_68: 3.5855468780186174e-07 - ArtUnc_69: -1.0173186218329567e-08 - ArtUnc_70: 1.229531766027621e-07 - ArtUnc_71: 2.479331417189453e-09 - ArtUnc_72: 6.571712548162449e-07 - ArtUnc_73: 4.7783870276873866e-08 - ArtUnc_74: 1.0059102231087426e-07 - ArtUnc_75: 8.417761885970783e-07 - ArtUnc_76: 8.396096597470064e-09 - ArtUnc_77: 7.42300544961137e-09 - ArtUnc_78: -1.1325365974717505e-07 - ArtUnc_79: -4.23188220554539e-08 - ArtUnc_80: 6.129071591428982e-09 - ArtUnc_81: -9.456587992687703e-09 - ArtUnc_82: 1.5188352334209478e-10 - ArtUnc_83: 5.014588526357882e-09 - ArtUnc_84: 1.1798190978593119e-08 - ArtUnc_85: 2.631729931569993e-10 - ArtUnc_86: 1.924573846872015e-11 - ArtUnc_87: 2.593975753501807e-10 - ArtUnc_88: -2.02771483831625e-08 - ArtUnc_89: 1.2062301518549229e-09 - ArtUnc_90: 3.017083083839918e-09 - ArtUnc_91: -1.0921148670095773e-09 - ArtUnc_92: 2.351887988494077e-08 - ArtUnc_93: 4.3944548208900017e-10 - ArtUnc_94: 3.733027150779105e-10 - ArtUnc_95: -3.2961109082648946e-09 - ArtUnc_96: 4.3659842526255104e-11 + ArtUnc_1: 3.72574843754151e-13 + ArtUnc_2: -5.5762134156865614e-11 + ArtUnc_3: -1.8792997287274888e-10 + ArtUnc_4: -4.5867840932993047e-10 + ArtUnc_5: -1.4436446732121365e-11 + ArtUnc_6: 1.867396902546295e-11 + ArtUnc_7: -2.3048097772345663e-09 + ArtUnc_8: 7.845765890473015e-10 + ArtUnc_9: 1.977290840908495e-09 + ArtUnc_10: -1.1619921967779412e-08 + ArtUnc_11: -3.343505219064145e-09 + ArtUnc_12: -1.858073969329258e-09 + ArtUnc_13: 6.893470512185661e-08 + ArtUnc_14: -8.552736714474256e-09 + ArtUnc_15: 1.584680464086288e-08 + ArtUnc_16: -4.681586319467342e-10 + ArtUnc_17: 2.577357061816638e-08 + ArtUnc_18: -1.3883467658975774e-09 + ArtUnc_19: -1.0772612664045383e-07 + ArtUnc_20: 9.127921594949682e-08 + ArtUnc_21: -6.69780382479327e-11 + ArtUnc_22: -1.1270512654920153e-07 + ArtUnc_23: -1.33234118677314e-09 + ArtUnc_24: -1.555632830104435e-06 + ArtUnc_25: 7.606353978765029e-07 + ArtUnc_26: -3.851083482718545e-07 + ArtUnc_27: -1.4525484734098774e-06 + ArtUnc_28: -5.0885052975844806e-08 + ArtUnc_29: -1.61172054026889e-06 + ArtUnc_30: -4.1133548073345233e-07 + ArtUnc_31: 1.6983994409471313e-07 + ArtUnc_32: 1.6892305922854216e-06 + ArtUnc_33: -1.457067664224312e-10 + ArtUnc_34: 8.989143287517297e-08 + ArtUnc_35: -8.88695551901891e-08 + ArtUnc_36: -7.18178209779854e-07 + ArtUnc_37: -2.0778125037738755e-06 + ArtUnc_38: 3.6391782595336935e-07 + ArtUnc_39: 2.7286713820166425e-06 + ArtUnc_40: 5.455195979650584e-08 + ArtUnc_41: 7.549069678202054e-06 + ArtUnc_42: 7.453588459557469e-08 + ArtUnc_43: -1.1101608282611014e-05 + ArtUnc_44: 2.001257463619583e-06 + ArtUnc_45: -2.7433672163892875e-08 + ArtUnc_46: -9.517229932447282e-07 + ArtUnc_47: 5.589666364914897e-07 + ArtUnc_48: -2.4944416287900184e-08 + ArtUnc_49: -2.347177907621313e-05 + ArtUnc_50: -1.4282041253317663e-06 + ArtUnc_51: 4.788002977745001e-07 + ArtUnc_52: 8.903094382816588e-07 + ArtUnc_53: -1.2459460515372746e-07 + ArtUnc_54: 8.14925320564319e-08 + ArtUnc_55: 1.2594223585421794e-05 + ArtUnc_56: 1.4274865327025676e-05 + ArtUnc_57: 4.174072422605024e-06 + ArtUnc_58: 2.230354844345179e-05 + ArtUnc_59: -2.190809742086046e-07 + ArtUnc_60: -1.8910934551201536e-05 + ArtUnc_61: -1.094479673965532e-08 + ArtUnc_62: -6.893892056174763e-08 + ArtUnc_63: 5.82376697707184e-09 + ArtUnc_64: 5.660326229221998e-05 + ArtUnc_65: -8.015406273538802e-07 + ArtUnc_66: -3.968347141017291e-05 + ArtUnc_67: -5.263076671626725e-07 + ArtUnc_68: 3.5855468780181044e-07 + ArtUnc_69: 1.0173186218331753e-08 + ArtUnc_70: -1.2295317660275172e-07 + ArtUnc_71: -2.4793314171900886e-09 + ArtUnc_72: -6.571712548162341e-07 + ArtUnc_73: -4.7783870276875176e-08 + ArtUnc_74: -1.005910223108769e-07 + ArtUnc_75: 8.417761885970648e-07 + ArtUnc_76: 8.396096597475887e-09 + ArtUnc_77: 7.423005449611018e-09 + ArtUnc_78: -1.1325365974715549e-07 + ArtUnc_79: -4.231882205546767e-08 + ArtUnc_80: 6.129071591428702e-09 + ArtUnc_81: -9.456587992687747e-09 + ArtUnc_82: -1.5188352334206963e-10 + ArtUnc_83: 5.014588526357662e-09 + ArtUnc_84: -1.1798190978592541e-08 + ArtUnc_85: -2.631729931570385e-10 + ArtUnc_86: 1.9245738468918398e-11 + ArtUnc_87: 2.5939757535041884e-10 + ArtUnc_88: 1.2062301518547448e-09 + ArtUnc_89: 2.027714838316177e-08 + ArtUnc_90: -3.0170830838406754e-09 + ArtUnc_91: -1.0921148670096631e-09 + ArtUnc_92: -2.351887988493733e-08 + ArtUnc_93: 4.3944548208894744e-10 + ArtUnc_94: 3.7330271507787496e-10 + ArtUnc_95: -3.296110908263646e-09 + ArtUnc_96: 4.3659842526486204e-11 - stat: 0 Uncorr: 5.730000000000001e-06 RCES: 1.1443478528292873e-05 @@ -1458,102 +1458,102 @@ bins: ModelRW_2: 1.1547407290166914e-05 JES_1: 1.767669013004839e-05 JES_2: 1.767669013004839e-05 - ArtUnc_1: -5.2414622595776756e-15 - ArtUnc_2: 8.207592964731506e-13 - ArtUnc_3: 3.847729041684691e-12 - ArtUnc_4: 1.3792222266566074e-11 - ArtUnc_5: 5.052176641875075e-13 - ArtUnc_6: 2.2494956915663803e-14 - ArtUnc_7: 6.265328750309182e-11 - ArtUnc_8: -2.3772774781838074e-10 - ArtUnc_9: -3.1675878965401614e-12 - ArtUnc_10: -9.980068575842941e-12 - ArtUnc_11: 8.486503372810134e-11 - ArtUnc_12: -1.4472528444016473e-11 - ArtUnc_13: -1.9485505226518077e-10 - ArtUnc_14: 1.3385041147094832e-11 - ArtUnc_15: 1.2777939883775687e-11 - ArtUnc_16: -1.4594415085541144e-12 - ArtUnc_17: -7.622530131599248e-12 - ArtUnc_18: 3.3382253915144836e-13 - ArtUnc_19: -4.174449188947476e-10 - ArtUnc_20: -1.458526363043474e-10 - ArtUnc_21: -1.218326399980731e-10 - ArtUnc_22: 2.9701427574704487e-09 - ArtUnc_23: 2.22998549042183e-10 - ArtUnc_24: 7.119878894201229e-10 - ArtUnc_25: -4.049074824714188e-09 - ArtUnc_26: 1.3627773034302058e-09 - ArtUnc_27: 7.095862095535974e-09 - ArtUnc_28: 5.718772664967846e-10 - ArtUnc_29: 3.751773345446773e-09 - ArtUnc_30: -2.9515041503971795e-09 - ArtUnc_31: -1.1378459994761584e-09 - ArtUnc_32: 2.1546215977208857e-08 - ArtUnc_33: 2.5580061046276632e-11 - ArtUnc_34: -7.500012142836068e-10 - ArtUnc_35: 8.728016111697142e-09 - ArtUnc_36: -1.4591722382617339e-08 - ArtUnc_37: -1.5180310001887535e-07 - ArtUnc_38: -2.9087276501936008e-08 - ArtUnc_39: -2.4003660755313586e-07 - ArtUnc_40: 3.6335764936337553e-09 - ArtUnc_41: -1.7897560141452676e-07 - ArtUnc_42: -3.862399379321751e-09 - ArtUnc_43: 3.891403788701698e-07 - ArtUnc_44: -3.012756355155686e-07 - ArtUnc_45: -2.2701893787055546e-10 - ArtUnc_46: 3.0437265445985966e-08 - ArtUnc_47: -6.821619111218156e-08 - ArtUnc_48: -5.213033624738738e-09 - ArtUnc_49: -7.909571133749282e-07 - ArtUnc_50: 4.000696485550032e-09 - ArtUnc_51: -1.224471599566261e-07 - ArtUnc_52: 2.3873887600907556e-08 - ArtUnc_53: 1.3473575118941014e-08 - ArtUnc_54: -2.9872328342732867e-08 - ArtUnc_55: -1.5813190610402345e-06 - ArtUnc_56: 1.933241606756727e-06 - ArtUnc_57: 4.6978450337945344e-07 - ArtUnc_58: -3.3089357511885516e-06 - ArtUnc_59: 1.8756063896370004e-07 - ArtUnc_60: 3.631987023923681e-06 - ArtUnc_61: -8.974999862879568e-09 - ArtUnc_62: -3.21002633898529e-07 - ArtUnc_63: 3.687766345572266e-08 - ArtUnc_64: 7.773053107357186e-06 - ArtUnc_65: 6.97788139850965e-07 - ArtUnc_66: 8.346360521631023e-06 - ArtUnc_67: -3.417827012533438e-07 - ArtUnc_68: -4.1262878647269415e-07 - ArtUnc_69: -3.535170070934319e-09 - ArtUnc_70: 4.836847420599936e-07 - ArtUnc_71: 2.5243277693487462e-08 - ArtUnc_72: 5.7731325918633595e-06 - ArtUnc_73: 4.6811126185050636e-07 - ArtUnc_74: 1.5770399135300984e-06 - ArtUnc_75: 9.869174798919056e-06 - ArtUnc_76: 7.128038724571136e-08 - ArtUnc_77: -3.145401141298582e-08 - ArtUnc_78: 1.889171597787733e-05 - ArtUnc_79: 1.3499821119504489e-05 - ArtUnc_80: -7.1259305525188e-08 - ArtUnc_81: 4.948333753718327e-07 - ArtUnc_82: -3.5235174352896035e-08 - ArtUnc_83: -5.926496319976261e-08 - ArtUnc_84: 1.4452008476414846e-07 - ArtUnc_85: -1.5083206448382862e-08 - ArtUnc_86: 4.377923905507403e-09 - ArtUnc_87: 5.063614671792069e-09 - ArtUnc_88: -2.873263317578972e-07 - ArtUnc_89: 6.74573155948979e-09 - ArtUnc_90: 9.439684959933751e-08 - ArtUnc_91: -2.3971753920996644e-08 - ArtUnc_92: 4.2682329227800776e-08 - ArtUnc_93: 1.5311556383350169e-09 - ArtUnc_94: -4.599464050392651e-10 - ArtUnc_95: -1.9906259590400175e-08 - ArtUnc_96: 2.3216321592755967e-09 + ArtUnc_1: -5.241462259945504e-15 + ArtUnc_2: 8.207592964730536e-13 + ArtUnc_3: 3.847729041683561e-12 + ArtUnc_4: 1.3792222266569431e-11 + ArtUnc_5: 5.052176641803228e-13 + ArtUnc_6: 2.249495667603643e-14 + ArtUnc_7: 6.265328750309011e-11 + ArtUnc_8: -2.377277478183806e-10 + ArtUnc_9: -3.167587896563486e-12 + ArtUnc_10: -9.980068575788724e-12 + ArtUnc_11: 8.486503372824655e-11 + ArtUnc_12: 1.4472528442572177e-11 + ArtUnc_13: 1.9485505226517446e-10 + ArtUnc_14: 1.3385041148049875e-11 + ArtUnc_15: 1.2777939886617276e-11 + ArtUnc_16: -1.4594414874811343e-12 + ArtUnc_17: -7.622530132064897e-12 + ArtUnc_18: -3.3382254149254044e-13 + ArtUnc_19: 4.1744491889578663e-10 + ArtUnc_20: -1.458526363026746e-10 + ArtUnc_21: -1.2183263999339942e-10 + ArtUnc_22: 2.970142757468545e-09 + ArtUnc_23: 2.2299854903822662e-10 + ArtUnc_24: 7.119878894173299e-10 + ArtUnc_25: -4.04907482471203e-09 + ArtUnc_26: 1.362777303429574e-09 + ArtUnc_27: 7.095862095533802e-09 + ArtUnc_28: -5.718772664874926e-10 + ArtUnc_29: -3.751773345438866e-09 + ArtUnc_30: -2.9515041503778913e-09 + ArtUnc_31: 1.1378459995070667e-09 + ArtUnc_32: 2.1546215977208804e-08 + ArtUnc_33: -2.5580061091301333e-11 + ArtUnc_34: -7.500012142866035e-10 + ArtUnc_35: -8.728016111705376e-09 + ArtUnc_36: 1.4591722382626946e-08 + ArtUnc_37: -1.5180310001887374e-07 + ArtUnc_38: 2.908727650187965e-08 + ArtUnc_39: 2.400366075531249e-07 + ArtUnc_40: 3.6335764936557314e-09 + ArtUnc_41: -1.7897560141455276e-07 + ArtUnc_42: 3.862399379342501e-09 + ArtUnc_43: 3.891403788701593e-07 + ArtUnc_44: -3.012756355155561e-07 + ArtUnc_45: 2.2701893778899755e-10 + ArtUnc_46: 3.043726544595362e-08 + ArtUnc_47: -6.82161911121795e-08 + ArtUnc_48: 5.213033624694447e-09 + ArtUnc_49: 7.909571133748741e-07 + ArtUnc_50: -4.000696485508816e-09 + ArtUnc_51: 1.2244715995664577e-07 + ArtUnc_52: -2.387388760086234e-08 + ArtUnc_53: -1.3473575118922905e-08 + ArtUnc_54: 2.9872328342697794e-08 + ArtUnc_55: -1.581319061040107e-06 + ArtUnc_56: 1.933241606756599e-06 + ArtUnc_57: 4.697845033799855e-07 + ArtUnc_58: -3.308935751188501e-06 + ArtUnc_59: 1.8756063896365827e-07 + ArtUnc_60: -3.6319870239236007e-06 + ArtUnc_61: 8.974999862891205e-09 + ArtUnc_62: -3.2100263389846357e-07 + ArtUnc_63: 3.687766345572873e-08 + ArtUnc_64: -7.773053107356384e-06 + ArtUnc_65: 6.977881398509863e-07 + ArtUnc_66: -8.346360521631696e-06 + ArtUnc_67: -3.417827012533332e-07 + ArtUnc_68: -4.126287864727083e-07 + ArtUnc_69: 3.5351700709203385e-09 + ArtUnc_70: -4.836847420599969e-07 + ArtUnc_71: -2.5243277693506292e-08 + ArtUnc_72: -5.773132591863485e-06 + ArtUnc_73: -4.681112618505477e-07 + ArtUnc_74: -1.577039913530142e-06 + ArtUnc_75: 9.86917479891918e-06 + ArtUnc_76: 7.128038724576999e-08 + ArtUnc_77: -3.1454011412941795e-08 + ArtUnc_78: 1.8891715977876717e-05 + ArtUnc_79: 1.349982111950535e-05 + ArtUnc_80: -7.125930552507109e-08 + ArtUnc_81: 4.94833375371924e-07 + ArtUnc_82: 3.523517435289861e-08 + ArtUnc_83: -5.926496319977509e-08 + ArtUnc_84: -1.4452008476412964e-07 + ArtUnc_85: 1.508320644838305e-08 + ArtUnc_86: 4.377923905507967e-09 + ArtUnc_87: 5.063614671791702e-09 + ArtUnc_88: 6.745731559486469e-09 + ArtUnc_89: 2.873263317578852e-07 + ArtUnc_90: -9.439684959935189e-08 + ArtUnc_91: -2.3971753920997772e-08 + ArtUnc_92: -4.26823292277409e-08 + ArtUnc_93: 1.5311556383332444e-09 + ArtUnc_94: -4.599464050398569e-10 + ArtUnc_95: -1.9906259590373583e-08 + ArtUnc_96: 2.321632159279879e-09 - stat: 0 Uncorr: 1.02e-06 RCES: 1.94571516928866e-06 @@ -1569,102 +1569,102 @@ bins: ModelRW_2: 9.73686037693876e-07 JES_1: 3.354394880600672e-06 JES_2: 3.354394880600672e-06 - ArtUnc_1: -1.901999100018548e-17 - ArtUnc_2: 1.0507157367213475e-14 - ArtUnc_3: 7.40593611506568e-14 - ArtUnc_4: 4.151678287759254e-13 - ArtUnc_5: 1.4607047974815595e-14 - ArtUnc_6: 3.987043341001862e-15 - ArtUnc_7: 2.9871234429879902e-12 - ArtUnc_8: -1.2890110141978409e-11 - ArtUnc_9: 1.9362487676758983e-13 - ArtUnc_10: -1.9130658820515975e-13 - ArtUnc_11: -3.400051044624664e-13 - ArtUnc_12: 3.652002954948537e-14 - ArtUnc_13: -7.1714396580676e-12 - ArtUnc_14: -1.2279063926269335e-13 - ArtUnc_15: 5.068030341871257e-14 - ArtUnc_16: 1.814632633271903e-15 - ArtUnc_17: -2.5823036771678652e-12 - ArtUnc_18: -7.732364378016276e-14 - ArtUnc_19: -1.0368599030456471e-11 - ArtUnc_20: 2.5377948411775244e-11 - ArtUnc_21: -1.835525458104688e-12 - ArtUnc_22: 3.2305271486619654e-10 - ArtUnc_23: 6.5716499618462496e-12 - ArtUnc_24: -1.3152564112477424e-10 - ArtUnc_25: -2.5802325607478847e-10 - ArtUnc_26: 5.448016000663151e-11 - ArtUnc_27: 9.181928486936754e-10 - ArtUnc_28: -4.2663113324387277e-11 - ArtUnc_29: -2.121381067982099e-10 - ArtUnc_30: 1.233692589427189e-10 - ArtUnc_31: 5.0572066257513994e-11 - ArtUnc_32: 1.98979108431419e-09 - ArtUnc_33: 5.964743403610258e-13 - ArtUnc_34: -4.229102206599528e-11 - ArtUnc_35: 6.37277150007288e-11 - ArtUnc_36: -8.992438540247284e-10 - ArtUnc_37: -2.8238691842799766e-09 - ArtUnc_38: -5.02980540834054e-10 - ArtUnc_39: -3.760335301555371e-09 - ArtUnc_40: -1.5225495777843334e-11 - ArtUnc_41: -1.5530794004637835e-08 - ArtUnc_42: -1.1200097110878717e-10 - ArtUnc_43: 3.320458370958875e-08 - ArtUnc_44: 1.612778691079054e-08 - ArtUnc_45: 1.9434751822814306e-10 - ArtUnc_46: 4.818719281876162e-09 - ArtUnc_47: -3.593683334232163e-10 - ArtUnc_48: 1.4452431641240683e-11 - ArtUnc_49: -1.1561914693040196e-07 - ArtUnc_50: -3.095265809794582e-09 - ArtUnc_51: 1.9902500579980663e-09 - ArtUnc_52: -1.0551540835725304e-09 - ArtUnc_53: -2.5839868436903215e-11 - ArtUnc_54: 2.735989615037522e-10 - ArtUnc_55: -1.7146668510367313e-08 - ArtUnc_56: -9.346685172218939e-09 - ArtUnc_57: -2.2964573279146082e-09 - ArtUnc_58: -2.5410501696593928e-08 - ArtUnc_59: 2.4527977930520205e-10 - ArtUnc_60: -4.2690864286483435e-08 - ArtUnc_61: -1.0006795074036811e-10 - ArtUnc_62: -1.5073637831944534e-09 - ArtUnc_63: 3.875254156561107e-11 - ArtUnc_64: 7.557892352678368e-08 - ArtUnc_65: -7.762771204768927e-09 - ArtUnc_66: -2.1676490443905314e-07 - ArtUnc_67: 3.088925173793289e-08 - ArtUnc_68: -3.777323449849427e-08 - ArtUnc_69: 9.873502259304843e-09 - ArtUnc_70: -2.373128831845292e-07 - ArtUnc_71: -2.8574018820259706e-09 - ArtUnc_72: 7.728916750925105e-08 - ArtUnc_73: 1.8004829794941364e-08 - ArtUnc_74: -1.1896352758006238e-06 - ArtUnc_75: 2.2098648925168953e-07 - ArtUnc_76: 2.786018071151877e-08 - ArtUnc_77: 7.187084774474957e-08 - ArtUnc_78: 2.2916415135349406e-06 - ArtUnc_79: -4.401578860181418e-06 - ArtUnc_80: 8.779094540537243e-08 - ArtUnc_81: -1.1345022521153709e-07 - ArtUnc_82: 1.138157692268845e-08 - ArtUnc_83: 3.163933993362653e-07 - ArtUnc_84: 1.3329149678621984e-06 - ArtUnc_85: 2.1353944709585353e-08 - ArtUnc_86: 5.5925988440237304e-08 - ArtUnc_87: 1.094170745951463e-07 - ArtUnc_88: -2.670456958818338e-06 - ArtUnc_89: 1.1376874495448061e-07 - ArtUnc_90: 4.823102494690155e-07 - ArtUnc_91: 1.4649026332981122e-07 - ArtUnc_92: 8.78447031792603e-06 - ArtUnc_93: 3.28059110009874e-08 - ArtUnc_94: 1.881002465380906e-07 - ArtUnc_95: -4.025966804622711e-07 - ArtUnc_96: -1.8317314419583592e-08 + ArtUnc_1: -1.9019991291243223e-17 + ArtUnc_2: 1.0507157366899366e-14 + ArtUnc_3: 7.405936115075455e-14 + ArtUnc_4: 4.1516782877622893e-13 + ArtUnc_5: 1.4607047978177815e-14 + ArtUnc_6: 3.987043331119774e-15 + ArtUnc_7: 2.9871234429873815e-12 + ArtUnc_8: -1.28901101419786e-11 + ArtUnc_9: 1.936248767826609e-13 + ArtUnc_10: -1.9130658824214493e-13 + ArtUnc_11: -3.400051045086563e-13 + ArtUnc_12: -3.6520029181094834e-14 + ArtUnc_13: 7.1714396580652244e-12 + ArtUnc_14: -1.2279063899775683e-13 + ArtUnc_15: 5.068030375999428e-14 + ArtUnc_16: 1.814635154565131e-15 + ArtUnc_17: -2.5823036770884942e-12 + ArtUnc_18: 7.732364342860023e-14 + ArtUnc_19: 1.0368599030336335e-11 + ArtUnc_20: 2.537794841164756e-11 + ArtUnc_21: -1.8355254578712134e-12 + ArtUnc_22: 3.23052714866025e-10 + ArtUnc_23: 6.571649960662051e-12 + ArtUnc_24: -1.315256411252612e-10 + ArtUnc_25: -2.5802325607447383e-10 + ArtUnc_26: 5.448016000703067e-11 + ArtUnc_27: 9.181928486933075e-10 + ArtUnc_28: 4.266311332429477e-11 + ArtUnc_29: 2.121381067959539e-10 + ArtUnc_30: 1.2336925894313725e-10 + ArtUnc_31: -5.0572066259762264e-11 + ArtUnc_32: 1.9897910843142253e-09 + ArtUnc_33: -5.964743379366253e-13 + ArtUnc_34: -4.2291022066909204e-11 + ArtUnc_35: -6.372771500145227e-11 + ArtUnc_36: 8.992438540225526e-10 + ArtUnc_37: -2.823869184278453e-09 + ArtUnc_38: 5.029805408362752e-10 + ArtUnc_39: 3.7603353015553514e-09 + ArtUnc_40: -1.522549579025299e-11 + ArtUnc_41: -1.553079400463468e-08 + ArtUnc_42: 1.1200097112152992e-10 + ArtUnc_43: 3.320458370959093e-08 + ArtUnc_44: 1.612778691079218e-08 + ArtUnc_45: -1.9434751816654295e-10 + ArtUnc_46: 4.818719281818341e-09 + ArtUnc_47: -3.5936833342592e-10 + ArtUnc_48: -1.4452431492510908e-11 + ArtUnc_49: 1.156191469303947e-07 + ArtUnc_50: 3.095265809797049e-09 + ArtUnc_51: -1.990250058016618e-09 + ArtUnc_52: 1.0551540835680762e-09 + ArtUnc_53: 2.583986842251015e-11 + ArtUnc_54: -2.7359896160844426e-10 + ArtUnc_55: -1.714666851039895e-08 + ArtUnc_56: -9.346685172236354e-09 + ArtUnc_57: -2.2964573279275797e-09 + ArtUnc_58: -2.541050169654537e-08 + ArtUnc_59: 2.4527977931268276e-10 + ArtUnc_60: 4.26908642864609e-08 + ArtUnc_61: 1.0006795078580084e-10 + ArtUnc_62: -1.5073637832204924e-09 + ArtUnc_63: 3.8752541563071965e-11 + ArtUnc_64: -7.557892352678078e-08 + ArtUnc_65: -7.762771204776205e-09 + ArtUnc_66: 2.1676490443910404e-07 + ArtUnc_67: 3.088925173796808e-08 + ArtUnc_68: -3.7773234498553116e-08 + ArtUnc_69: -9.873502259301812e-09 + ArtUnc_70: 2.373128831845414e-07 + ArtUnc_71: 2.8574018820224212e-09 + ArtUnc_72: -7.728916750927325e-08 + ArtUnc_73: -1.8004829794967403e-08 + ArtUnc_74: 1.1896352758006183e-06 + ArtUnc_75: 2.2098648925167571e-07 + ArtUnc_76: 2.7860180711512064e-08 + ArtUnc_77: 7.187084774475774e-08 + ArtUnc_78: 2.2916415135354548e-06 + ArtUnc_79: -4.401578860181456e-06 + ArtUnc_80: 8.779094540533577e-08 + ArtUnc_81: -1.1345022521150932e-07 + ArtUnc_82: -1.1381576922669683e-08 + ArtUnc_83: 3.163933993362474e-07 + ArtUnc_84: -1.3329149678621743e-06 + ArtUnc_85: -2.135394470958957e-08 + ArtUnc_86: 5.592598844023283e-08 + ArtUnc_87: 1.0941707459513449e-07 + ArtUnc_88: 1.1376874495446983e-07 + ArtUnc_89: 2.6704569588183046e-06 + ArtUnc_90: -4.823102494690392e-07 + ArtUnc_91: 1.4649026332982186e-07 + ArtUnc_92: -8.784470317925978e-06 + ArtUnc_93: 3.280591100098844e-08 + ArtUnc_94: 1.8810024653809077e-07 + ArtUnc_95: -4.025966804622898e-07 + ArtUnc_96: -1.8317314419579824e-08 - stat: 0 Uncorr: 7.31e-08 RCES: 3.892182024764515e-07 @@ -1680,102 +1680,102 @@ bins: ModelRW_2: 1.1325170699907792e-06 JES_1: 7.558372094363309e-07 JES_2: 7.558372094363309e-07 - ArtUnc_1: 2.3592717455278063e-20 - ArtUnc_2: -5.922629162227702e-18 - ArtUnc_3: -1.881943600015444e-17 - ArtUnc_4: 3.1581875786552915e-17 - ArtUnc_5: 1.5937575158089415e-18 - ArtUnc_6: 3.2893423568347272e-18 - ArtUnc_7: 1.2239723672629012e-15 - ArtUnc_8: -2.2074775992875465e-14 - ArtUnc_9: 6.704927997723987e-16 - ArtUnc_10: 2.769940885779498e-14 - ArtUnc_11: -5.873909050918547e-14 - ArtUnc_12: 4.6646760813590076e-15 - ArtUnc_13: 3.208249464110612e-14 - ArtUnc_14: -2.768336938859504e-15 - ArtUnc_15: 7.564761724867157e-15 - ArtUnc_16: -4.898938035446411e-16 - ArtUnc_17: -7.062103028399974e-15 - ArtUnc_18: -5.255133974819861e-16 - ArtUnc_19: -1.6363092567285706e-14 - ArtUnc_20: -2.3889846365697364e-13 - ArtUnc_21: 2.0807479149316982e-14 - ArtUnc_22: -5.297202828929652e-12 - ArtUnc_23: -1.9082778110477102e-13 - ArtUnc_24: 6.039201406219688e-12 - ArtUnc_25: 2.6715907554407336e-12 - ArtUnc_26: -2.796639331847442e-13 - ArtUnc_27: -1.9072862813521637e-11 - ArtUnc_28: 3.1805753313814845e-13 - ArtUnc_29: -2.342851279918988e-12 - ArtUnc_30: -2.1374606686935742e-13 - ArtUnc_31: -1.0815260613105309e-13 - ArtUnc_32: -1.96863975719e-11 - ArtUnc_33: 1.56368002495703e-14 - ArtUnc_34: 4.941397788678146e-12 - ArtUnc_35: -3.4343154224011755e-12 - ArtUnc_36: 4.797358782019336e-11 - ArtUnc_37: 5.773888609002955e-11 - ArtUnc_38: 9.251216849880243e-12 - ArtUnc_39: 6.909058451839528e-11 - ArtUnc_40: 1.692511740888848e-12 - ArtUnc_41: 3.7053698468621566e-10 - ArtUnc_42: -1.8553929057684222e-11 - ArtUnc_43: -4.846323282585256e-10 - ArtUnc_44: -3.327459492748151e-11 - ArtUnc_45: -7.597393140041539e-13 - ArtUnc_46: -6.897334913039593e-11 - ArtUnc_47: 1.5566079258685414e-10 - ArtUnc_48: 7.485089690148145e-12 - ArtUnc_49: 4.1862286539349234e-10 - ArtUnc_50: -6.302238876177875e-11 - ArtUnc_51: 9.65302787763233e-10 - ArtUnc_52: -5.721657990641889e-10 - ArtUnc_53: 2.4895736849703775e-11 - ArtUnc_54: 7.617696381166007e-11 - ArtUnc_55: -1.3478870594900175e-08 - ArtUnc_56: 1.2402321011990233e-08 - ArtUnc_57: 3.5571456105792596e-09 - ArtUnc_58: -2.5561509082484207e-08 - ArtUnc_59: -1.2383163719012923e-10 - ArtUnc_60: 3.2222219760102e-08 - ArtUnc_61: 5.225128803503071e-12 - ArtUnc_62: -8.974571982242052e-10 - ArtUnc_63: 9.44057460845764e-11 - ArtUnc_64: 2.4480318754976328e-08 - ArtUnc_65: 1.042472983640617e-09 - ArtUnc_66: 3.516679646392288e-08 - ArtUnc_67: 3.5298812203812566e-10 - ArtUnc_68: 1.9926689573872634e-09 - ArtUnc_69: 3.938321250106937e-10 - ArtUnc_70: -9.539111780809803e-09 - ArtUnc_71: -2.2666150732372423e-10 - ArtUnc_72: -4.3344959477670075e-08 - ArtUnc_73: -3.4399107786647648e-09 - ArtUnc_74: -3.766214542747313e-08 - ArtUnc_75: -8.85383302597457e-08 - ArtUnc_76: -5.078556975299819e-10 - ArtUnc_77: 2.6350754104581286e-09 - ArtUnc_78: -5.219583627352078e-08 - ArtUnc_79: -1.928632086792721e-07 - ArtUnc_80: 2.0279690969120902e-09 - ArtUnc_81: -7.292739062852815e-09 - ArtUnc_82: 5.17014190383794e-10 - ArtUnc_83: 2.2541666134291343e-08 - ArtUnc_84: 3.969306237175464e-08 - ArtUnc_85: -2.686872478207086e-06 - ArtUnc_86: 4.1414736198157015e-07 - ArtUnc_87: 7.862979078956051e-07 - ArtUnc_88: -4.4423448886376586e-08 - ArtUnc_89: 1.172101147051345e-08 - ArtUnc_90: -2.65116567570053e-07 - ArtUnc_91: -1.6784554078079344e-06 - ArtUnc_92: 1.550500835139886e-08 - ArtUnc_93: 1.9257018402597083e-08 - ArtUnc_94: 2.228125152342082e-08 - ArtUnc_95: -8.447286155149883e-07 - ArtUnc_96: -1.7506003847933813e-07 + ArtUnc_1: 2.35927203457836e-20 + ArtUnc_2: -5.922629161146333e-18 + ArtUnc_3: -1.8819435998532412e-17 + ArtUnc_4: 3.158187577786074e-17 + ArtUnc_5: 1.5937576017366522e-18 + ArtUnc_6: 3.289342185321362e-18 + ArtUnc_7: 1.2239723672715737e-15 + ArtUnc_8: -2.2074775992870183e-14 + ArtUnc_9: 6.704927999036726e-16 + ArtUnc_10: 2.7699408858070488e-14 + ArtUnc_11: -5.873909050903443e-14 + ArtUnc_12: -4.664676081797592e-15 + ArtUnc_13: -3.2082494641071664e-14 + ArtUnc_14: -2.7683369430503856e-15 + ArtUnc_15: 7.564761722243567e-15 + ArtUnc_16: -4.898938440266008e-16 + ArtUnc_17: -7.0621030270174545e-15 + ArtUnc_18: 5.255133824119982e-16 + ArtUnc_19: 1.636309256674278e-14 + ArtUnc_20: -2.388984636576834e-13 + ArtUnc_21: 2.0807479147216883e-14 + ArtUnc_22: -5.297202828927104e-12 + ArtUnc_23: -1.9082778121082117e-13 + ArtUnc_24: 6.039201406219987e-12 + ArtUnc_25: 2.6715907554250054e-12 + ArtUnc_26: -2.7966393291241113e-13 + ArtUnc_27: -1.9072862813516748e-11 + ArtUnc_28: -3.1805753329792926e-13 + ArtUnc_29: 2.342851279537203e-12 + ArtUnc_30: -2.1374606682004223e-13 + ArtUnc_31: 1.0815260616289436e-13 + ArtUnc_32: -1.9686397571900833e-11 + ArtUnc_33: -1.5636800167330968e-14 + ArtUnc_34: 4.9413977886084574e-12 + ArtUnc_35: 3.43431542246607e-12 + ArtUnc_36: -4.797358782039034e-11 + ArtUnc_37: 5.773888609003612e-11 + ArtUnc_38: -9.251216849801803e-12 + ArtUnc_39: -6.909058451839399e-11 + ArtUnc_40: 1.6925117406345058e-12 + ArtUnc_41: 3.7053698468647157e-10 + ArtUnc_42: 1.855392905824653e-11 + ArtUnc_43: -4.846323282584783e-10 + ArtUnc_44: -3.327459492762007e-11 + ArtUnc_45: 7.597393152306623e-13 + ArtUnc_46: -6.897334913058715e-11 + ArtUnc_47: 1.5566079258656675e-10 + ArtUnc_48: -7.485089687541113e-12 + ArtUnc_49: -4.1862286539354177e-10 + ArtUnc_50: 6.302238876174077e-11 + ArtUnc_51: -9.653027877636256e-10 + ArtUnc_52: 5.72165799063931e-10 + ArtUnc_53: -2.489573684983785e-11 + ArtUnc_54: -7.617696381330824e-11 + ArtUnc_55: -1.3478870594901272e-08 + ArtUnc_56: 1.2402321011988667e-08 + ArtUnc_57: 3.5571456105850805e-09 + ArtUnc_58: -2.556150908248414e-08 + ArtUnc_59: -1.2383163719166848e-10 + ArtUnc_60: -3.2222219760101495e-08 + ArtUnc_61: -5.2251288050979926e-12 + ArtUnc_62: -8.97457198223341e-10 + ArtUnc_63: 9.440574608420388e-11 + ArtUnc_64: -2.448031875497111e-08 + ArtUnc_65: 1.042472983643038e-09 + ArtUnc_66: -3.5166796463923804e-08 + ArtUnc_67: 3.52988122038554e-10 + ArtUnc_68: 1.992668957386929e-09 + ArtUnc_69: -3.938321250102191e-10 + ArtUnc_70: 9.539111780811317e-09 + ArtUnc_71: 2.266615073220808e-10 + ArtUnc_72: 4.3344959477670267e-08 + ArtUnc_73: 3.439910778665954e-09 + ArtUnc_74: 3.766214542747073e-08 + ArtUnc_75: -8.853833025974996e-08 + ArtUnc_76: -5.07855697525207e-10 + ArtUnc_77: 2.6350754104537003e-09 + ArtUnc_78: -5.219583627350703e-08 + ArtUnc_79: -1.9286320867927353e-07 + ArtUnc_80: 2.0279690969114773e-09 + ArtUnc_81: -7.292739062847744e-09 + ArtUnc_82: -5.170141903927744e-10 + ArtUnc_83: 2.2541666134281235e-08 + ArtUnc_84: -3.9693062371755816e-08 + ArtUnc_85: 2.686872478207075e-06 + ArtUnc_86: 4.141473619815568e-07 + ArtUnc_87: 7.862979078955503e-07 + ArtUnc_88: 1.1721011470516791e-08 + ArtUnc_89: 4.4423448886381265e-08 + ArtUnc_90: 2.651165675700547e-07 + ArtUnc_91: -1.6784554078079242e-06 + ArtUnc_92: -1.550500835139394e-08 + ArtUnc_93: 1.9257018402611466e-08 + ArtUnc_94: 2.2281251523428708e-08 + ArtUnc_95: -8.447286155149897e-07 + ArtUnc_96: -1.7506003847933434e-07 - stat: 0 Uncorr: 0.000304 RCES: 0.0016778342211315157 @@ -1791,102 +1791,102 @@ bins: ModelRW_2: 0.000722267150575187 JES_1: 0.0008199741400800394 JES_2: 0.0008199741400800394 - ArtUnc_1: -4.650512749510166e-09 - ArtUnc_2: 2.615040433829322e-07 - ArtUnc_3: 5.12557246908949e-07 - ArtUnc_4: 1.0849380135809137e-06 - ArtUnc_5: 7.030184434031912e-08 - ArtUnc_6: -6.666096450905855e-08 - ArtUnc_7: 8.926475091345058e-06 - ArtUnc_8: -3.752463903315616e-05 - ArtUnc_9: -4.525940513413942e-06 - ArtUnc_10: 3.1467905590806136e-05 - ArtUnc_11: -2.023314790240504e-05 - ArtUnc_12: -2.0219473189516724e-06 - ArtUnc_13: 4.0032878530944104e-05 - ArtUnc_14: 9.542902962029522e-06 - ArtUnc_15: -1.5817618089945143e-05 - ArtUnc_16: 5.069765305481629e-07 - ArtUnc_17: -1.08891559690467e-05 - ArtUnc_18: -7.854719394650325e-07 - ArtUnc_19: -2.3706046886005396e-05 - ArtUnc_20: -1.9083074205274192e-05 - ArtUnc_21: 4.747888848598477e-07 - ArtUnc_22: 0.0001673429516106384 - ArtUnc_23: 1.8956321121486008e-06 - ArtUnc_24: 0.00013912348563776817 - ArtUnc_25: 0.0001879940038701234 - ArtUnc_26: 3.117946243289524e-05 - ArtUnc_27: 0.00021123077073010452 - ArtUnc_28: -2.6931251017312914e-06 - ArtUnc_29: -0.0005732465940048247 - ArtUnc_30: 0.00012951670447790492 - ArtUnc_31: 5.3867864331504804e-05 - ArtUnc_32: -0.00022791727755530698 - ArtUnc_33: -2.3810441820842363e-07 - ArtUnc_34: -7.330782394984981e-06 - ArtUnc_35: 1.7685369090595978e-05 - ArtUnc_36: 2.472431294429736e-06 - ArtUnc_37: -1.4607163820264948e-05 - ArtUnc_38: -2.6176429082263394e-06 - ArtUnc_39: 6.607915967338179e-07 - ArtUnc_40: -5.1362874816019386e-08 - ArtUnc_41: 1.5135293048599682e-06 - ArtUnc_42: 3.930922079682163e-08 - ArtUnc_43: 1.304912887440288e-06 - ArtUnc_44: -7.960303951658007e-06 - ArtUnc_45: -5.351476142610959e-08 - ArtUnc_46: -3.500460120766551e-07 - ArtUnc_47: -2.6985309472054276e-07 - ArtUnc_48: -6.382660114581625e-09 - ArtUnc_49: -2.434139705635471e-06 - ArtUnc_50: -4.811695723307431e-07 - ArtUnc_51: -2.879156312046098e-08 - ArtUnc_52: -1.9332838629887088e-08 - ArtUnc_53: -5.698775424400125e-09 - ArtUnc_54: 1.2428319793268545e-08 - ArtUnc_55: 1.829936559843659e-08 - ArtUnc_56: -9.683602000647387e-10 - ArtUnc_57: -2.0089989751234485e-09 - ArtUnc_58: -4.093810632764918e-09 - ArtUnc_59: 7.913059982895017e-09 - ArtUnc_60: -6.358131181265117e-09 - ArtUnc_61: -3.316418941661967e-11 - ArtUnc_62: 4.826728173644871e-09 - ArtUnc_63: -5.171061553900622e-10 - ArtUnc_64: -3.349431848054753e-07 - ArtUnc_65: -1.1614407621022927e-08 - ArtUnc_66: 2.3340415670960243e-07 - ArtUnc_67: -4.714533807608359e-09 - ArtUnc_68: -5.125500757965474e-10 - ArtUnc_69: -2.568175920169571e-11 - ArtUnc_70: 4.617791891800068e-10 - ArtUnc_71: 1.7269565631121524e-11 - ArtUnc_72: 1.0426947546369062e-09 - ArtUnc_73: -1.3974946479046988e-10 - ArtUnc_74: 7.388353615943769e-11 - ArtUnc_75: 2.2023115713548736e-09 - ArtUnc_76: -3.2388756321363645e-11 - ArtUnc_77: 1.683694432077247e-10 - ArtUnc_78: -2.3319062783812886e-09 - ArtUnc_79: 6.984125752366835e-10 - ArtUnc_80: 2.421067285842708e-10 - ArtUnc_81: -1.064510427534945e-10 - ArtUnc_82: -9.551534802834587e-12 - ArtUnc_83: 4.2477216540959984e-11 - ArtUnc_84: -1.2581519448914072e-11 - ArtUnc_85: 2.8532031390087507e-13 - ArtUnc_86: -7.1550686481024196e-12 - ArtUnc_87: -8.385559175990136e-12 - ArtUnc_88: -6.684767466889214e-11 - ArtUnc_89: 9.054072666778e-12 - ArtUnc_90: -1.8249590088503793e-11 - ArtUnc_91: -1.376928279346296e-12 - ArtUnc_92: 2.0830196938468465e-10 - ArtUnc_93: 1.474440598941585e-11 - ArtUnc_94: 2.806228895777921e-12 - ArtUnc_95: -4.903718148236899e-11 - ArtUnc_96: 1.1351687655146475e-11 + ArtUnc_1: -4.650512749355942e-09 + ArtUnc_2: 2.6150404338355495e-07 + ArtUnc_3: 5.12557246908968e-07 + ArtUnc_4: 1.0849380135812087e-06 + ArtUnc_5: 7.030184433999337e-08 + ArtUnc_6: -6.666096450952222e-08 + ArtUnc_7: 8.926475091343498e-06 + ArtUnc_8: -3.752463903315676e-05 + ArtUnc_9: -4.525940513413666e-06 + ArtUnc_10: 3.1467905590806244e-05 + ArtUnc_11: -2.0233147902406997e-05 + ArtUnc_12: 2.021947318951445e-06 + ArtUnc_13: -4.003287853094295e-05 + ArtUnc_14: 9.54290296203011e-06 + ArtUnc_15: -1.5817618089945295e-05 + ArtUnc_16: 5.069765305450733e-07 + ArtUnc_17: -1.0889155969046879e-05 + ArtUnc_18: 7.854719394652192e-07 + ArtUnc_19: 2.3706046886005644e-05 + ArtUnc_20: -1.9083074205274243e-05 + ArtUnc_21: 4.747888848597217e-07 + ArtUnc_22: 0.00016734295161063723 + ArtUnc_23: 1.8956321121513973e-06 + ArtUnc_24: 0.0001391234856377672 + ArtUnc_25: 0.00018799400387012392 + ArtUnc_26: 3.117946243289525e-05 + ArtUnc_27: 0.00021123077073010498 + ArtUnc_28: 2.693125101744767e-06 + ArtUnc_29: 0.0005732465940048262 + ArtUnc_30: 0.00012951670447777832 + ArtUnc_31: -5.386786433193626e-05 + ArtUnc_32: -0.0002279172775553063 + ArtUnc_33: 2.3810441821111926e-07 + ArtUnc_34: -7.330782394982886e-06 + ArtUnc_35: -1.7685369090595917e-05 + ArtUnc_36: -2.4724312944298536e-06 + ArtUnc_37: -1.4607163820264878e-05 + ArtUnc_38: 2.6176429082255432e-06 + ArtUnc_39: -6.607915967338914e-07 + ArtUnc_40: -5.1362874816051534e-08 + ArtUnc_41: 1.5135293048599083e-06 + ArtUnc_42: -3.930922079681527e-08 + ArtUnc_43: 1.3049128874402319e-06 + ArtUnc_44: -7.96030395165809e-06 + ArtUnc_45: 5.351476142624853e-08 + ArtUnc_46: -3.500460120766658e-07 + ArtUnc_47: -2.698530947205398e-07 + ArtUnc_48: 6.382660114578908e-09 + ArtUnc_49: 2.4341397056357427e-06 + ArtUnc_50: 4.81169572330774e-07 + ArtUnc_51: 2.879156312045966e-08 + ArtUnc_52: 1.933283862988446e-08 + ArtUnc_53: 5.698775424400118e-09 + ArtUnc_54: -1.2428319793269074e-08 + ArtUnc_55: 1.8299365598447446e-08 + ArtUnc_56: -9.683602000634305e-10 + ArtUnc_57: -2.008998975123179e-09 + ArtUnc_58: -4.09381063276111e-09 + ArtUnc_59: 7.913059982895237e-09 + ArtUnc_60: 6.358131181272643e-09 + ArtUnc_61: 3.316418941539378e-11 + ArtUnc_62: 4.826728173643972e-09 + ArtUnc_63: -5.171061553907083e-10 + ArtUnc_64: 3.34943184805511e-07 + ArtUnc_65: -1.1614407621026812e-08 + ArtUnc_66: -2.3340415670957435e-07 + ArtUnc_67: -4.714533807607662e-09 + ArtUnc_68: -5.125500757971282e-10 + ArtUnc_69: 2.5681759201689222e-11 + ArtUnc_70: -4.617791891797858e-10 + ArtUnc_71: -1.726956563111836e-11 + ArtUnc_72: -1.0426947546361144e-09 + ArtUnc_73: 1.3974946479052858e-10 + ArtUnc_74: -7.388353615932547e-11 + ArtUnc_75: 2.2023115713533785e-09 + ArtUnc_76: -3.238875632136181e-11 + ArtUnc_77: 1.683694432077045e-10 + ArtUnc_78: -2.3319062783790383e-09 + ArtUnc_79: 6.984125752352948e-10 + ArtUnc_80: 2.4210672858428407e-10 + ArtUnc_81: -1.0645104275344316e-10 + ArtUnc_82: 9.551534802832154e-12 + ArtUnc_83: 4.247721654093233e-11 + ArtUnc_84: 1.2581519448969144e-11 + ArtUnc_85: -2.853203139020557e-13 + ArtUnc_86: -7.1550686480950606e-12 + ArtUnc_87: -8.385559175981213e-12 + ArtUnc_88: 9.054072666771776e-12 + ArtUnc_89: 6.684767466884986e-11 + ArtUnc_90: 1.8249590088465067e-11 + ArtUnc_91: -1.3769282793509156e-12 + ArtUnc_92: -2.0830196938451975e-10 + ArtUnc_93: 1.474440598941191e-11 + ArtUnc_94: 2.8062288957760026e-12 + ArtUnc_95: -4.9037181482300245e-11 + ArtUnc_96: 1.1351687655157902e-11 - stat: 0 Uncorr: 0.000189 RCES: 8.002984005981769e-05 @@ -1902,102 +1902,102 @@ bins: ModelRW_2: 0.00012027886347983173 JES_1: 0.00029801755290167055 JES_2: 0.00029801755290167055 - ArtUnc_1: 5.471569995891646e-10 - ArtUnc_2: -2.1548459534169628e-08 - ArtUnc_3: 1.6107173820232725e-09 - ArtUnc_4: 1.8790643118297607e-07 - ArtUnc_5: 1.050117042570297e-09 - ArtUnc_6: 1.4980021086587036e-08 - ArtUnc_7: 1.0716030983490844e-06 - ArtUnc_8: -5.852027745173473e-06 - ArtUnc_9: 7.491192402189114e-07 - ArtUnc_10: -8.052950538933017e-08 - ArtUnc_11: -5.7252344852199985e-06 - ArtUnc_12: 9.685501549657312e-07 - ArtUnc_13: 1.3424257850249387e-06 - ArtUnc_14: -9.956049613005863e-07 - ArtUnc_15: 5.297725506633483e-07 - ArtUnc_16: 1.673837768454332e-08 - ArtUnc_17: -3.582507838236449e-07 - ArtUnc_18: 1.2647274373508488e-08 - ArtUnc_19: -1.2336629966632117e-06 - ArtUnc_20: 8.403154663433771e-07 - ArtUnc_21: 6.791298681435195e-07 - ArtUnc_22: -1.776150220884706e-06 - ArtUnc_23: -4.784905450234038e-07 - ArtUnc_24: -5.1696968831452726e-06 - ArtUnc_25: 2.821350325782999e-05 - ArtUnc_26: -6.758352126525412e-06 - ArtUnc_27: -1.948245245698466e-05 - ArtUnc_28: 1.8615587928714592e-07 - ArtUnc_29: -4.9400028648362785e-06 - ArtUnc_30: 2.5959751638211684e-06 - ArtUnc_31: 1.0763248007906184e-06 - ArtUnc_32: -3.287425978178637e-05 - ArtUnc_33: 3.2994683073729474e-08 - ArtUnc_34: -1.234940266205477e-06 - ArtUnc_35: 6.191515490196092e-06 - ArtUnc_36: 2.7249485883068733e-06 - ArtUnc_37: -5.989822561698192e-05 - ArtUnc_38: -1.0403639627465775e-05 - ArtUnc_39: -7.720196274664049e-05 - ArtUnc_40: 1.5220534773968058e-06 - ArtUnc_41: 1.709379278867283e-05 - ArtUnc_42: -8.11450519569054e-07 - ArtUnc_43: -1.3715268834483381e-05 - ArtUnc_44: 0.0002462097444531081 - ArtUnc_45: 1.2730256982183371e-06 - ArtUnc_46: 1.1643913116449376e-05 - ArtUnc_47: 1.629978914010714e-06 - ArtUnc_48: 2.280929511647473e-07 - ArtUnc_49: 3.6345767126120526e-05 - ArtUnc_50: 2.4422571255477306e-06 - ArtUnc_51: 6.822122723980482e-08 - ArtUnc_52: -5.976234737191764e-08 - ArtUnc_53: 1.8446310222817315e-08 - ArtUnc_54: -2.4751852109218752e-08 - ArtUnc_55: 1.131003801326065e-06 - ArtUnc_56: 1.0759820264169869e-06 - ArtUnc_57: 3.0780950207663535e-07 - ArtUnc_58: 6.812023712735954e-07 - ArtUnc_59: -7.960672216214537e-09 - ArtUnc_60: 5.267916630689111e-07 - ArtUnc_61: 3.39970164677748e-10 - ArtUnc_62: -6.665603912810152e-09 - ArtUnc_63: 7.138800656329359e-10 - ArtUnc_64: 2.477585785184677e-06 - ArtUnc_65: 3.6242879105329454e-08 - ArtUnc_66: -1.838464013018305e-06 - ArtUnc_67: 2.718142424691705e-08 - ArtUnc_68: -2.8193276372483382e-08 - ArtUnc_69: 5.427607805245182e-10 - ArtUnc_70: -3.084661349746725e-09 - ArtUnc_71: 5.447159219783033e-11 - ArtUnc_72: 2.1302205731501905e-08 - ArtUnc_73: 8.47153107572282e-10 - ArtUnc_74: 1.1628840669622708e-08 - ArtUnc_75: 1.7170116614497963e-08 - ArtUnc_76: -2.3415368954742075e-10 - ArtUnc_77: -2.7783117168968716e-10 - ArtUnc_78: 3.2602119554402305e-08 - ArtUnc_79: 1.0463517159940953e-08 - ArtUnc_80: -3.450248147908858e-10 - ArtUnc_81: 7.482156465457027e-10 - ArtUnc_82: -3.8370527796877e-11 - ArtUnc_83: -3.2471216627324176e-11 - ArtUnc_84: 1.4283148435102442e-09 - ArtUnc_85: -2.316766223558353e-11 - ArtUnc_86: 6.903485286948077e-11 - ArtUnc_87: 6.463824938402307e-11 - ArtUnc_88: -3.636593406602767e-10 - ArtUnc_89: 6.413357358594171e-12 - ArtUnc_90: 2.5940032189819596e-10 - ArtUnc_91: 6.457000917867735e-11 - ArtUnc_92: -1.2350529808453373e-09 - ArtUnc_93: -1.151435439702523e-11 - ArtUnc_94: -3.215014335109707e-11 - ArtUnc_95: -9.74700949230058e-11 - ArtUnc_96: -6.133126016763498e-11 + ArtUnc_1: 5.471569996118318e-10 + ArtUnc_2: -2.1548459534153544e-08 + ArtUnc_3: 1.6107173820174696e-09 + ArtUnc_4: 1.879064311830434e-07 + ArtUnc_5: 1.050117042374516e-09 + ArtUnc_6: 1.4980021086434547e-08 + ArtUnc_7: 1.0716030983489342e-06 + ArtUnc_8: -5.8520277451735335e-06 + ArtUnc_9: 7.491192402186086e-07 + ArtUnc_10: -8.052950538988503e-08 + ArtUnc_11: -5.725234485220118e-06 + ArtUnc_12: -9.685501549661442e-07 + ArtUnc_13: -1.3424257850248628e-06 + ArtUnc_14: -9.956049613002278e-07 + ArtUnc_15: 5.29772550663397e-07 + ArtUnc_16: 1.6738377684272918e-08 + ArtUnc_17: -3.582507838237691e-07 + ArtUnc_18: -1.264727437334715e-08 + ArtUnc_19: 1.233662996663388e-06 + ArtUnc_20: 8.403154663435293e-07 + ArtUnc_21: 6.79129868143396e-07 + ArtUnc_22: -1.776150220884529e-06 + ArtUnc_23: -4.784905450229317e-07 + ArtUnc_24: -5.169696883145389e-06 + ArtUnc_25: 2.8213503257829692e-05 + ArtUnc_26: -6.758352126525302e-06 + ArtUnc_27: -1.9482452456984413e-05 + ArtUnc_28: -1.8615587928710915e-07 + ArtUnc_29: 4.94000286483612e-06 + ArtUnc_30: 2.595975163818299e-06 + ArtUnc_31: -1.076324800799102e-06 + ArtUnc_32: -3.2874259781786615e-05 + ArtUnc_33: -3.299468307382029e-08 + ArtUnc_34: -1.2349402662050923e-06 + ArtUnc_35: -6.191515490195612e-06 + ArtUnc_36: -2.7249485883079676e-06 + ArtUnc_37: -5.989822561698278e-05 + ArtUnc_38: 1.040363962746263e-05 + ArtUnc_39: 7.720196274664037e-05 + ArtUnc_40: 1.5220534773987657e-06 + ArtUnc_41: 1.70937927886724e-05 + ArtUnc_42: 8.114505195690131e-07 + ArtUnc_43: -1.371526883447847e-05 + ArtUnc_44: 0.00024620974445310794 + ArtUnc_45: -1.2730256982223254e-06 + ArtUnc_46: 1.1643913116449547e-05 + ArtUnc_47: 1.6299789140107506e-06 + ArtUnc_48: -2.2809295116473704e-07 + ArtUnc_49: -3.634576712612296e-05 + ArtUnc_50: -2.4422571255481782e-06 + ArtUnc_51: -6.822122723981085e-08 + ArtUnc_52: 5.976234737191589e-08 + ArtUnc_53: -1.8446310222813494e-08 + ArtUnc_54: 2.4751852109216145e-08 + ArtUnc_55: 1.1310038013260833e-06 + ArtUnc_56: 1.0759820264168969e-06 + ArtUnc_57: 3.0780950207694145e-07 + ArtUnc_58: 6.812023712735847e-07 + ArtUnc_59: -7.960672216219715e-09 + ArtUnc_60: -5.267916630689513e-07 + ArtUnc_61: -3.399701646687149e-10 + ArtUnc_62: -6.6656039128050465e-09 + ArtUnc_63: 7.138800656368192e-10 + ArtUnc_64: -2.4775857851850117e-06 + ArtUnc_65: 3.624287910535524e-08 + ArtUnc_66: 1.8384640130182134e-06 + ArtUnc_67: 2.7181424246913548e-08 + ArtUnc_68: -2.8193276372482016e-08 + ArtUnc_69: -5.42760780524532e-10 + ArtUnc_70: 3.0846613497465428e-09 + ArtUnc_71: -5.4471592197849197e-11 + ArtUnc_72: -2.1302205731503017e-08 + ArtUnc_73: -8.471531075724741e-10 + ArtUnc_74: -1.1628840669622942e-08 + ArtUnc_75: 1.7170116614500534e-08 + ArtUnc_76: -2.341536895472736e-10 + ArtUnc_77: -2.7783117168958113e-10 + ArtUnc_78: 3.260211955439682e-08 + ArtUnc_79: 1.046351715994512e-08 + ArtUnc_80: -3.450248147908177e-10 + ArtUnc_81: 7.482156465457119e-10 + ArtUnc_82: 3.8370527796884825e-11 + ArtUnc_83: -3.247121662728555e-11 + ArtUnc_84: -1.4283148435103424e-09 + ArtUnc_85: 2.3167662235587087e-11 + ArtUnc_86: 6.903485286946707e-11 + ArtUnc_87: 6.463824938400358e-11 + ArtUnc_88: 6.4133573585991416e-12 + ArtUnc_89: 3.6365934066034854e-10 + ArtUnc_90: -2.5940032189813645e-10 + ArtUnc_91: 6.457000917868311e-11 + ArtUnc_92: 1.2350529808450879e-09 + ArtUnc_93: -1.151435439701838e-11 + ArtUnc_94: -3.2150143351094645e-11 + ArtUnc_95: -9.747009492310879e-11 + ArtUnc_96: -6.133126016765184e-11 - stat: 0 Uncorr: 4.64e-05 RCES: 2.4273675617837527e-05 @@ -2013,102 +2013,102 @@ bins: ModelRW_2: 0.00011483414126469533 JES_1: 0.0001271343065580648 JES_2: 0.0001271343065580648 - ArtUnc_1: 3.725748441855142e-13 - ArtUnc_2: -5.576213415696871e-11 - ArtUnc_3: -1.8792997287418968e-10 - ArtUnc_4: -4.5867840932795444e-10 - ArtUnc_5: -1.4436446728744216e-11 - ArtUnc_6: 1.8673969063588274e-11 - ArtUnc_7: -2.304809777235498e-09 - ArtUnc_8: 7.845765890469632e-10 - ArtUnc_9: 1.977290840880951e-09 - ArtUnc_10: -1.1619921967808012e-08 - ArtUnc_11: -3.3435052190755636e-09 - ArtUnc_12: 1.8580739693610029e-09 - ArtUnc_13: -6.89347051218557e-08 - ArtUnc_14: -8.552736714386387e-09 - ArtUnc_15: 1.5846804640892226e-08 - ArtUnc_16: -4.681586314223856e-10 - ArtUnc_17: 2.5773570618027182e-08 - ArtUnc_18: 1.388346765828633e-09 - ArtUnc_19: 1.0772612664036784e-07 - ArtUnc_20: 9.127921594960896e-08 - ArtUnc_21: -6.69780382922057e-11 - ArtUnc_22: -1.1270512654928677e-07 - ArtUnc_23: -1.3323411868686961e-09 - ArtUnc_24: -1.5556328301045476e-06 - ArtUnc_25: 7.606353978765809e-07 - ArtUnc_26: -3.851083482718733e-07 - ArtUnc_27: -1.452548473409936e-06 - ArtUnc_28: 5.088505297563495e-08 - ArtUnc_29: 1.6117205402691302e-06 - ArtUnc_30: -4.113354807336254e-07 - ArtUnc_31: -1.6983994409327336e-07 - ArtUnc_32: 1.6892305922853991e-06 - ArtUnc_33: 1.457067663137859e-10 - ArtUnc_34: 8.989143287514196e-08 - ArtUnc_35: 8.88695551904404e-08 - ArtUnc_36: 7.181782097801695e-07 - ArtUnc_37: -2.077812503773524e-06 - ArtUnc_38: -3.6391782595324245e-07 - ArtUnc_39: -2.7286713820165273e-06 - ArtUnc_40: 5.455195979654707e-08 - ArtUnc_41: 7.549069678202049e-06 - ArtUnc_42: -7.453588459542621e-08 - ArtUnc_43: -1.1101608282611443e-05 - ArtUnc_44: 2.0012574636198835e-06 - ArtUnc_45: 2.7433672163776266e-08 - ArtUnc_46: -9.517229932449512e-07 - ArtUnc_47: 5.589666364913685e-07 - ArtUnc_48: 2.4944416287925542e-08 - ArtUnc_49: 2.347177907621526e-05 - ArtUnc_50: 1.4282041253315672e-06 - ArtUnc_51: -4.788002977744846e-07 - ArtUnc_52: -8.903094382817606e-07 - ArtUnc_53: 1.2459460515367121e-07 - ArtUnc_54: -8.14925320565125e-08 - ArtUnc_55: 1.2594223585420613e-05 - ArtUnc_56: 1.4274865327026748e-05 - ArtUnc_57: 4.174072422600962e-06 - ArtUnc_58: 2.2303548443451325e-05 - ArtUnc_59: -2.1908097420859265e-07 - ArtUnc_60: 1.891093455120236e-05 - ArtUnc_61: 1.094479673948385e-08 - ArtUnc_62: -6.893892056162117e-08 - ArtUnc_63: 5.823766977123618e-09 - ArtUnc_64: -5.6603262292214214e-05 - ArtUnc_65: -8.015406273532788e-07 - ArtUnc_66: 3.9683471410176716e-05 - ArtUnc_67: -5.263076671627705e-07 - ArtUnc_68: 3.5855468780186174e-07 - ArtUnc_69: -1.0173186218329567e-08 - ArtUnc_70: 1.229531766027621e-07 - ArtUnc_71: 2.479331417189453e-09 - ArtUnc_72: 6.571712548162449e-07 - ArtUnc_73: 4.7783870276873866e-08 - ArtUnc_74: 1.0059102231087426e-07 - ArtUnc_75: 8.417761885970783e-07 - ArtUnc_76: 8.396096597470064e-09 - ArtUnc_77: 7.42300544961137e-09 - ArtUnc_78: -1.1325365974717505e-07 - ArtUnc_79: -4.23188220554539e-08 - ArtUnc_80: 6.129071591428982e-09 - ArtUnc_81: -9.456587992687703e-09 - ArtUnc_82: 1.5188352334209478e-10 - ArtUnc_83: 5.014588526357882e-09 - ArtUnc_84: 1.1798190978593119e-08 - ArtUnc_85: 2.631729931569993e-10 - ArtUnc_86: 1.924573846872015e-11 - ArtUnc_87: 2.593975753501807e-10 - ArtUnc_88: -2.02771483831625e-08 - ArtUnc_89: 1.2062301518549229e-09 - ArtUnc_90: 3.017083083839918e-09 - ArtUnc_91: -1.0921148670095773e-09 - ArtUnc_92: 2.351887988494077e-08 - ArtUnc_93: 4.3944548208900017e-10 - ArtUnc_94: 3.733027150779105e-10 - ArtUnc_95: -3.2961109082648946e-09 - ArtUnc_96: 4.3659842526255104e-11 + ArtUnc_1: 3.72574843754151e-13 + ArtUnc_2: -5.5762134156865614e-11 + ArtUnc_3: -1.8792997287274888e-10 + ArtUnc_4: -4.5867840932993047e-10 + ArtUnc_5: -1.4436446732121365e-11 + ArtUnc_6: 1.867396902546295e-11 + ArtUnc_7: -2.3048097772345663e-09 + ArtUnc_8: 7.845765890473015e-10 + ArtUnc_9: 1.977290840908495e-09 + ArtUnc_10: -1.1619921967779412e-08 + ArtUnc_11: -3.343505219064145e-09 + ArtUnc_12: -1.858073969329258e-09 + ArtUnc_13: 6.893470512185661e-08 + ArtUnc_14: -8.552736714474256e-09 + ArtUnc_15: 1.584680464086288e-08 + ArtUnc_16: -4.681586319467342e-10 + ArtUnc_17: 2.577357061816638e-08 + ArtUnc_18: -1.3883467658975774e-09 + ArtUnc_19: -1.0772612664045383e-07 + ArtUnc_20: 9.127921594949682e-08 + ArtUnc_21: -6.69780382479327e-11 + ArtUnc_22: -1.1270512654920153e-07 + ArtUnc_23: -1.33234118677314e-09 + ArtUnc_24: -1.555632830104435e-06 + ArtUnc_25: 7.606353978765029e-07 + ArtUnc_26: -3.851083482718545e-07 + ArtUnc_27: -1.4525484734098774e-06 + ArtUnc_28: -5.0885052975844806e-08 + ArtUnc_29: -1.61172054026889e-06 + ArtUnc_30: -4.1133548073345233e-07 + ArtUnc_31: 1.6983994409471313e-07 + ArtUnc_32: 1.6892305922854216e-06 + ArtUnc_33: -1.457067664224312e-10 + ArtUnc_34: 8.989143287517297e-08 + ArtUnc_35: -8.88695551901891e-08 + ArtUnc_36: -7.18178209779854e-07 + ArtUnc_37: -2.0778125037738755e-06 + ArtUnc_38: 3.6391782595336935e-07 + ArtUnc_39: 2.7286713820166425e-06 + ArtUnc_40: 5.455195979650584e-08 + ArtUnc_41: 7.549069678202054e-06 + ArtUnc_42: 7.453588459557469e-08 + ArtUnc_43: -1.1101608282611014e-05 + ArtUnc_44: 2.001257463619583e-06 + ArtUnc_45: -2.7433672163892875e-08 + ArtUnc_46: -9.517229932447282e-07 + ArtUnc_47: 5.589666364914897e-07 + ArtUnc_48: -2.4944416287900184e-08 + ArtUnc_49: -2.347177907621313e-05 + ArtUnc_50: -1.4282041253317663e-06 + ArtUnc_51: 4.788002977745001e-07 + ArtUnc_52: 8.903094382816588e-07 + ArtUnc_53: -1.2459460515372746e-07 + ArtUnc_54: 8.14925320564319e-08 + ArtUnc_55: 1.2594223585421794e-05 + ArtUnc_56: 1.4274865327025676e-05 + ArtUnc_57: 4.174072422605024e-06 + ArtUnc_58: 2.230354844345179e-05 + ArtUnc_59: -2.190809742086046e-07 + ArtUnc_60: -1.8910934551201536e-05 + ArtUnc_61: -1.094479673965532e-08 + ArtUnc_62: -6.893892056174763e-08 + ArtUnc_63: 5.82376697707184e-09 + ArtUnc_64: 5.660326229221998e-05 + ArtUnc_65: -8.015406273538802e-07 + ArtUnc_66: -3.968347141017291e-05 + ArtUnc_67: -5.263076671626725e-07 + ArtUnc_68: 3.5855468780181044e-07 + ArtUnc_69: 1.0173186218331753e-08 + ArtUnc_70: -1.2295317660275172e-07 + ArtUnc_71: -2.4793314171900886e-09 + ArtUnc_72: -6.571712548162341e-07 + ArtUnc_73: -4.7783870276875176e-08 + ArtUnc_74: -1.005910223108769e-07 + ArtUnc_75: 8.417761885970648e-07 + ArtUnc_76: 8.396096597475887e-09 + ArtUnc_77: 7.423005449611018e-09 + ArtUnc_78: -1.1325365974715549e-07 + ArtUnc_79: -4.231882205546767e-08 + ArtUnc_80: 6.129071591428702e-09 + ArtUnc_81: -9.456587992687747e-09 + ArtUnc_82: -1.5188352334206963e-10 + ArtUnc_83: 5.014588526357662e-09 + ArtUnc_84: -1.1798190978592541e-08 + ArtUnc_85: -2.631729931570385e-10 + ArtUnc_86: 1.9245738468918398e-11 + ArtUnc_87: 2.5939757535041884e-10 + ArtUnc_88: 1.2062301518547448e-09 + ArtUnc_89: 2.027714838316177e-08 + ArtUnc_90: -3.0170830838406754e-09 + ArtUnc_91: -1.0921148670096631e-09 + ArtUnc_92: -2.351887988493733e-08 + ArtUnc_93: 4.3944548208894744e-10 + ArtUnc_94: 3.7330271507787496e-10 + ArtUnc_95: -3.296110908263646e-09 + ArtUnc_96: 4.3659842526486204e-11 - stat: 0 Uncorr: 8.750000000000001e-06 RCES: 9.687637095804117e-06 @@ -2124,102 +2124,102 @@ bins: ModelRW_2: 5.630337745197885e-06 JES_1: 2.5584343891211088e-05 JES_2: 2.5584343891211088e-05 - ArtUnc_1: -5.2414622595776756e-15 - ArtUnc_2: 8.207592964731506e-13 - ArtUnc_3: 3.847729041684691e-12 - ArtUnc_4: 1.3792222266566074e-11 - ArtUnc_5: 5.052176641875075e-13 - ArtUnc_6: 2.2494956915663803e-14 - ArtUnc_7: 6.265328750309182e-11 - ArtUnc_8: -2.3772774781838074e-10 - ArtUnc_9: -3.1675878965401614e-12 - ArtUnc_10: -9.980068575842941e-12 - ArtUnc_11: 8.486503372810134e-11 - ArtUnc_12: -1.4472528444016473e-11 - ArtUnc_13: -1.9485505226518077e-10 - ArtUnc_14: 1.3385041147094832e-11 - ArtUnc_15: 1.2777939883775687e-11 - ArtUnc_16: -1.4594415085541144e-12 - ArtUnc_17: -7.622530131599248e-12 - ArtUnc_18: 3.3382253915144836e-13 - ArtUnc_19: -4.174449188947476e-10 - ArtUnc_20: -1.458526363043474e-10 - ArtUnc_21: -1.218326399980731e-10 - ArtUnc_22: 2.9701427574704487e-09 - ArtUnc_23: 2.22998549042183e-10 - ArtUnc_24: 7.119878894201229e-10 - ArtUnc_25: -4.049074824714188e-09 - ArtUnc_26: 1.3627773034302058e-09 - ArtUnc_27: 7.095862095535974e-09 - ArtUnc_28: 5.718772664967846e-10 - ArtUnc_29: 3.751773345446773e-09 - ArtUnc_30: -2.9515041503971795e-09 - ArtUnc_31: -1.1378459994761584e-09 - ArtUnc_32: 2.1546215977208857e-08 - ArtUnc_33: 2.5580061046276632e-11 - ArtUnc_34: -7.500012142836068e-10 - ArtUnc_35: 8.728016111697142e-09 - ArtUnc_36: -1.4591722382617339e-08 - ArtUnc_37: -1.5180310001887535e-07 - ArtUnc_38: -2.9087276501936008e-08 - ArtUnc_39: -2.4003660755313586e-07 - ArtUnc_40: 3.6335764936337553e-09 - ArtUnc_41: -1.7897560141452676e-07 - ArtUnc_42: -3.862399379321751e-09 - ArtUnc_43: 3.891403788701698e-07 - ArtUnc_44: -3.012756355155686e-07 - ArtUnc_45: -2.2701893787055546e-10 - ArtUnc_46: 3.0437265445985966e-08 - ArtUnc_47: -6.821619111218156e-08 - ArtUnc_48: -5.213033624738738e-09 - ArtUnc_49: -7.909571133749282e-07 - ArtUnc_50: 4.000696485550032e-09 - ArtUnc_51: -1.224471599566261e-07 - ArtUnc_52: 2.3873887600907556e-08 - ArtUnc_53: 1.3473575118941014e-08 - ArtUnc_54: -2.9872328342732867e-08 - ArtUnc_55: -1.5813190610402345e-06 - ArtUnc_56: 1.933241606756727e-06 - ArtUnc_57: 4.6978450337945344e-07 - ArtUnc_58: -3.3089357511885516e-06 - ArtUnc_59: 1.8756063896370004e-07 - ArtUnc_60: 3.631987023923681e-06 - ArtUnc_61: -8.974999862879568e-09 - ArtUnc_62: -3.21002633898529e-07 - ArtUnc_63: 3.687766345572266e-08 - ArtUnc_64: 7.773053107357186e-06 - ArtUnc_65: 6.97788139850965e-07 - ArtUnc_66: 8.346360521631023e-06 - ArtUnc_67: -3.417827012533438e-07 - ArtUnc_68: -4.1262878647269415e-07 - ArtUnc_69: -3.535170070934319e-09 - ArtUnc_70: 4.836847420599936e-07 - ArtUnc_71: 2.5243277693487462e-08 - ArtUnc_72: 5.7731325918633595e-06 - ArtUnc_73: 4.6811126185050636e-07 - ArtUnc_74: 1.5770399135300984e-06 - ArtUnc_75: 9.869174798919056e-06 - ArtUnc_76: 7.128038724571136e-08 - ArtUnc_77: -3.145401141298582e-08 - ArtUnc_78: 1.889171597787733e-05 - ArtUnc_79: 1.3499821119504489e-05 - ArtUnc_80: -7.1259305525188e-08 - ArtUnc_81: 4.948333753718327e-07 - ArtUnc_82: -3.5235174352896035e-08 - ArtUnc_83: -5.926496319976261e-08 - ArtUnc_84: 1.4452008476414846e-07 - ArtUnc_85: -1.5083206448382862e-08 - ArtUnc_86: 4.377923905507403e-09 - ArtUnc_87: 5.063614671792069e-09 - ArtUnc_88: -2.873263317578972e-07 - ArtUnc_89: 6.74573155948979e-09 - ArtUnc_90: 9.439684959933751e-08 - ArtUnc_91: -2.3971753920996644e-08 - ArtUnc_92: 4.2682329227800776e-08 - ArtUnc_93: 1.5311556383350169e-09 - ArtUnc_94: -4.599464050392651e-10 - ArtUnc_95: -1.9906259590400175e-08 - ArtUnc_96: 2.3216321592755967e-09 + ArtUnc_1: -5.241462259945504e-15 + ArtUnc_2: 8.207592964730536e-13 + ArtUnc_3: 3.847729041683561e-12 + ArtUnc_4: 1.3792222266569431e-11 + ArtUnc_5: 5.052176641803228e-13 + ArtUnc_6: 2.249495667603643e-14 + ArtUnc_7: 6.265328750309011e-11 + ArtUnc_8: -2.377277478183806e-10 + ArtUnc_9: -3.167587896563486e-12 + ArtUnc_10: -9.980068575788724e-12 + ArtUnc_11: 8.486503372824655e-11 + ArtUnc_12: 1.4472528442572177e-11 + ArtUnc_13: 1.9485505226517446e-10 + ArtUnc_14: 1.3385041148049875e-11 + ArtUnc_15: 1.2777939886617276e-11 + ArtUnc_16: -1.4594414874811343e-12 + ArtUnc_17: -7.622530132064897e-12 + ArtUnc_18: -3.3382254149254044e-13 + ArtUnc_19: 4.1744491889578663e-10 + ArtUnc_20: -1.458526363026746e-10 + ArtUnc_21: -1.2183263999339942e-10 + ArtUnc_22: 2.970142757468545e-09 + ArtUnc_23: 2.2299854903822662e-10 + ArtUnc_24: 7.119878894173299e-10 + ArtUnc_25: -4.04907482471203e-09 + ArtUnc_26: 1.362777303429574e-09 + ArtUnc_27: 7.095862095533802e-09 + ArtUnc_28: -5.718772664874926e-10 + ArtUnc_29: -3.751773345438866e-09 + ArtUnc_30: -2.9515041503778913e-09 + ArtUnc_31: 1.1378459995070667e-09 + ArtUnc_32: 2.1546215977208804e-08 + ArtUnc_33: -2.5580061091301333e-11 + ArtUnc_34: -7.500012142866035e-10 + ArtUnc_35: -8.728016111705376e-09 + ArtUnc_36: 1.4591722382626946e-08 + ArtUnc_37: -1.5180310001887374e-07 + ArtUnc_38: 2.908727650187965e-08 + ArtUnc_39: 2.400366075531249e-07 + ArtUnc_40: 3.6335764936557314e-09 + ArtUnc_41: -1.7897560141455276e-07 + ArtUnc_42: 3.862399379342501e-09 + ArtUnc_43: 3.891403788701593e-07 + ArtUnc_44: -3.012756355155561e-07 + ArtUnc_45: 2.2701893778899755e-10 + ArtUnc_46: 3.043726544595362e-08 + ArtUnc_47: -6.82161911121795e-08 + ArtUnc_48: 5.213033624694447e-09 + ArtUnc_49: 7.909571133748741e-07 + ArtUnc_50: -4.000696485508816e-09 + ArtUnc_51: 1.2244715995664577e-07 + ArtUnc_52: -2.387388760086234e-08 + ArtUnc_53: -1.3473575118922905e-08 + ArtUnc_54: 2.9872328342697794e-08 + ArtUnc_55: -1.581319061040107e-06 + ArtUnc_56: 1.933241606756599e-06 + ArtUnc_57: 4.697845033799855e-07 + ArtUnc_58: -3.308935751188501e-06 + ArtUnc_59: 1.8756063896365827e-07 + ArtUnc_60: -3.6319870239236007e-06 + ArtUnc_61: 8.974999862891205e-09 + ArtUnc_62: -3.2100263389846357e-07 + ArtUnc_63: 3.687766345572873e-08 + ArtUnc_64: -7.773053107356384e-06 + ArtUnc_65: 6.977881398509863e-07 + ArtUnc_66: -8.346360521631696e-06 + ArtUnc_67: -3.417827012533332e-07 + ArtUnc_68: -4.126287864727083e-07 + ArtUnc_69: 3.5351700709203385e-09 + ArtUnc_70: -4.836847420599969e-07 + ArtUnc_71: -2.5243277693506292e-08 + ArtUnc_72: -5.773132591863485e-06 + ArtUnc_73: -4.681112618505477e-07 + ArtUnc_74: -1.577039913530142e-06 + ArtUnc_75: 9.86917479891918e-06 + ArtUnc_76: 7.128038724576999e-08 + ArtUnc_77: -3.1454011412941795e-08 + ArtUnc_78: 1.8891715977876717e-05 + ArtUnc_79: 1.349982111950535e-05 + ArtUnc_80: -7.125930552507109e-08 + ArtUnc_81: 4.94833375371924e-07 + ArtUnc_82: 3.523517435289861e-08 + ArtUnc_83: -5.926496319977509e-08 + ArtUnc_84: -1.4452008476412964e-07 + ArtUnc_85: 1.508320644838305e-08 + ArtUnc_86: 4.377923905507967e-09 + ArtUnc_87: 5.063614671791702e-09 + ArtUnc_88: 6.745731559486469e-09 + ArtUnc_89: 2.873263317578852e-07 + ArtUnc_90: -9.439684959935189e-08 + ArtUnc_91: -2.3971753920997772e-08 + ArtUnc_92: -4.26823292277409e-08 + ArtUnc_93: 1.5311556383332444e-09 + ArtUnc_94: -4.599464050398569e-10 + ArtUnc_95: -1.9906259590373583e-08 + ArtUnc_96: 2.321632159279879e-09 - stat: 0 Uncorr: 1.37e-06 RCES: 2.8988614053624572e-06 @@ -2235,102 +2235,102 @@ bins: ModelRW_2: 1.007485741834593e-06 JES_1: 4.112587914409855e-06 JES_2: 4.112587914409855e-06 - ArtUnc_1: -1.901999100018548e-17 - ArtUnc_2: 1.0507157367213475e-14 - ArtUnc_3: 7.40593611506568e-14 - ArtUnc_4: 4.151678287759254e-13 - ArtUnc_5: 1.4607047974815595e-14 - ArtUnc_6: 3.987043341001862e-15 - ArtUnc_7: 2.9871234429879902e-12 - ArtUnc_8: -1.2890110141978409e-11 - ArtUnc_9: 1.9362487676758983e-13 - ArtUnc_10: -1.9130658820515975e-13 - ArtUnc_11: -3.400051044624664e-13 - ArtUnc_12: 3.652002954948537e-14 - ArtUnc_13: -7.1714396580676e-12 - ArtUnc_14: -1.2279063926269335e-13 - ArtUnc_15: 5.068030341871257e-14 - ArtUnc_16: 1.814632633271903e-15 - ArtUnc_17: -2.5823036771678652e-12 - ArtUnc_18: -7.732364378016276e-14 - ArtUnc_19: -1.0368599030456471e-11 - ArtUnc_20: 2.5377948411775244e-11 - ArtUnc_21: -1.835525458104688e-12 - ArtUnc_22: 3.2305271486619654e-10 - ArtUnc_23: 6.5716499618462496e-12 - ArtUnc_24: -1.3152564112477424e-10 - ArtUnc_25: -2.5802325607478847e-10 - ArtUnc_26: 5.448016000663151e-11 - ArtUnc_27: 9.181928486936754e-10 - ArtUnc_28: -4.2663113324387277e-11 - ArtUnc_29: -2.121381067982099e-10 - ArtUnc_30: 1.233692589427189e-10 - ArtUnc_31: 5.0572066257513994e-11 - ArtUnc_32: 1.98979108431419e-09 - ArtUnc_33: 5.964743403610258e-13 - ArtUnc_34: -4.229102206599528e-11 - ArtUnc_35: 6.37277150007288e-11 - ArtUnc_36: -8.992438540247284e-10 - ArtUnc_37: -2.8238691842799766e-09 - ArtUnc_38: -5.02980540834054e-10 - ArtUnc_39: -3.760335301555371e-09 - ArtUnc_40: -1.5225495777843334e-11 - ArtUnc_41: -1.5530794004637835e-08 - ArtUnc_42: -1.1200097110878717e-10 - ArtUnc_43: 3.320458370958875e-08 - ArtUnc_44: 1.612778691079054e-08 - ArtUnc_45: 1.9434751822814306e-10 - ArtUnc_46: 4.818719281876162e-09 - ArtUnc_47: -3.593683334232163e-10 - ArtUnc_48: 1.4452431641240683e-11 - ArtUnc_49: -1.1561914693040196e-07 - ArtUnc_50: -3.095265809794582e-09 - ArtUnc_51: 1.9902500579980663e-09 - ArtUnc_52: -1.0551540835725304e-09 - ArtUnc_53: -2.5839868436903215e-11 - ArtUnc_54: 2.735989615037522e-10 - ArtUnc_55: -1.7146668510367313e-08 - ArtUnc_56: -9.346685172218939e-09 - ArtUnc_57: -2.2964573279146082e-09 - ArtUnc_58: -2.5410501696593928e-08 - ArtUnc_59: 2.4527977930520205e-10 - ArtUnc_60: -4.2690864286483435e-08 - ArtUnc_61: -1.0006795074036811e-10 - ArtUnc_62: -1.5073637831944534e-09 - ArtUnc_63: 3.875254156561107e-11 - ArtUnc_64: 7.557892352678368e-08 - ArtUnc_65: -7.762771204768927e-09 - ArtUnc_66: -2.1676490443905314e-07 - ArtUnc_67: 3.088925173793289e-08 - ArtUnc_68: -3.777323449849427e-08 - ArtUnc_69: 9.873502259304843e-09 - ArtUnc_70: -2.373128831845292e-07 - ArtUnc_71: -2.8574018820259706e-09 - ArtUnc_72: 7.728916750925105e-08 - ArtUnc_73: 1.8004829794941364e-08 - ArtUnc_74: -1.1896352758006238e-06 - ArtUnc_75: 2.2098648925168953e-07 - ArtUnc_76: 2.786018071151877e-08 - ArtUnc_77: 7.187084774474957e-08 - ArtUnc_78: 2.2916415135349406e-06 - ArtUnc_79: -4.401578860181418e-06 - ArtUnc_80: 8.779094540537243e-08 - ArtUnc_81: -1.1345022521153709e-07 - ArtUnc_82: 1.138157692268845e-08 - ArtUnc_83: 3.163933993362653e-07 - ArtUnc_84: 1.3329149678621984e-06 - ArtUnc_85: 2.1353944709585353e-08 - ArtUnc_86: 5.5925988440237304e-08 - ArtUnc_87: 1.094170745951463e-07 - ArtUnc_88: -2.670456958818338e-06 - ArtUnc_89: 1.1376874495448061e-07 - ArtUnc_90: 4.823102494690155e-07 - ArtUnc_91: 1.4649026332981122e-07 - ArtUnc_92: 8.78447031792603e-06 - ArtUnc_93: 3.28059110009874e-08 - ArtUnc_94: 1.881002465380906e-07 - ArtUnc_95: -4.025966804622711e-07 - ArtUnc_96: -1.8317314419583592e-08 + ArtUnc_1: -1.9019991291243223e-17 + ArtUnc_2: 1.0507157366899366e-14 + ArtUnc_3: 7.405936115075455e-14 + ArtUnc_4: 4.1516782877622893e-13 + ArtUnc_5: 1.4607047978177815e-14 + ArtUnc_6: 3.987043331119774e-15 + ArtUnc_7: 2.9871234429873815e-12 + ArtUnc_8: -1.28901101419786e-11 + ArtUnc_9: 1.936248767826609e-13 + ArtUnc_10: -1.9130658824214493e-13 + ArtUnc_11: -3.400051045086563e-13 + ArtUnc_12: -3.6520029181094834e-14 + ArtUnc_13: 7.1714396580652244e-12 + ArtUnc_14: -1.2279063899775683e-13 + ArtUnc_15: 5.068030375999428e-14 + ArtUnc_16: 1.814635154565131e-15 + ArtUnc_17: -2.5823036770884942e-12 + ArtUnc_18: 7.732364342860023e-14 + ArtUnc_19: 1.0368599030336335e-11 + ArtUnc_20: 2.537794841164756e-11 + ArtUnc_21: -1.8355254578712134e-12 + ArtUnc_22: 3.23052714866025e-10 + ArtUnc_23: 6.571649960662051e-12 + ArtUnc_24: -1.315256411252612e-10 + ArtUnc_25: -2.5802325607447383e-10 + ArtUnc_26: 5.448016000703067e-11 + ArtUnc_27: 9.181928486933075e-10 + ArtUnc_28: 4.266311332429477e-11 + ArtUnc_29: 2.121381067959539e-10 + ArtUnc_30: 1.2336925894313725e-10 + ArtUnc_31: -5.0572066259762264e-11 + ArtUnc_32: 1.9897910843142253e-09 + ArtUnc_33: -5.964743379366253e-13 + ArtUnc_34: -4.2291022066909204e-11 + ArtUnc_35: -6.372771500145227e-11 + ArtUnc_36: 8.992438540225526e-10 + ArtUnc_37: -2.823869184278453e-09 + ArtUnc_38: 5.029805408362752e-10 + ArtUnc_39: 3.7603353015553514e-09 + ArtUnc_40: -1.522549579025299e-11 + ArtUnc_41: -1.553079400463468e-08 + ArtUnc_42: 1.1200097112152992e-10 + ArtUnc_43: 3.320458370959093e-08 + ArtUnc_44: 1.612778691079218e-08 + ArtUnc_45: -1.9434751816654295e-10 + ArtUnc_46: 4.818719281818341e-09 + ArtUnc_47: -3.5936833342592e-10 + ArtUnc_48: -1.4452431492510908e-11 + ArtUnc_49: 1.156191469303947e-07 + ArtUnc_50: 3.095265809797049e-09 + ArtUnc_51: -1.990250058016618e-09 + ArtUnc_52: 1.0551540835680762e-09 + ArtUnc_53: 2.583986842251015e-11 + ArtUnc_54: -2.7359896160844426e-10 + ArtUnc_55: -1.714666851039895e-08 + ArtUnc_56: -9.346685172236354e-09 + ArtUnc_57: -2.2964573279275797e-09 + ArtUnc_58: -2.541050169654537e-08 + ArtUnc_59: 2.4527977931268276e-10 + ArtUnc_60: 4.26908642864609e-08 + ArtUnc_61: 1.0006795078580084e-10 + ArtUnc_62: -1.5073637832204924e-09 + ArtUnc_63: 3.8752541563071965e-11 + ArtUnc_64: -7.557892352678078e-08 + ArtUnc_65: -7.762771204776205e-09 + ArtUnc_66: 2.1676490443910404e-07 + ArtUnc_67: 3.088925173796808e-08 + ArtUnc_68: -3.7773234498553116e-08 + ArtUnc_69: -9.873502259301812e-09 + ArtUnc_70: 2.373128831845414e-07 + ArtUnc_71: 2.8574018820224212e-09 + ArtUnc_72: -7.728916750927325e-08 + ArtUnc_73: -1.8004829794967403e-08 + ArtUnc_74: 1.1896352758006183e-06 + ArtUnc_75: 2.2098648925167571e-07 + ArtUnc_76: 2.7860180711512064e-08 + ArtUnc_77: 7.187084774475774e-08 + ArtUnc_78: 2.2916415135354548e-06 + ArtUnc_79: -4.401578860181456e-06 + ArtUnc_80: 8.779094540533577e-08 + ArtUnc_81: -1.1345022521150932e-07 + ArtUnc_82: -1.1381576922669683e-08 + ArtUnc_83: 3.163933993362474e-07 + ArtUnc_84: -1.3329149678621743e-06 + ArtUnc_85: -2.135394470958957e-08 + ArtUnc_86: 5.592598844023283e-08 + ArtUnc_87: 1.0941707459513449e-07 + ArtUnc_88: 1.1376874495446983e-07 + ArtUnc_89: 2.6704569588183046e-06 + ArtUnc_90: -4.823102494690392e-07 + ArtUnc_91: 1.4649026332982186e-07 + ArtUnc_92: -8.784470317925978e-06 + ArtUnc_93: 3.280591100098844e-08 + ArtUnc_94: 1.8810024653809077e-07 + ArtUnc_95: -4.025966804622898e-07 + ArtUnc_96: -1.8317314419579824e-08 - stat: 0 Uncorr: 1.58e-07 RCES: 2.4232791254826587e-07 @@ -2346,102 +2346,102 @@ bins: ModelRW_2: 1.039022704275513e-06 JES_1: 1.1201078734434465e-06 JES_2: 1.1201078734434465e-06 - ArtUnc_1: 2.3592717455278063e-20 - ArtUnc_2: -5.922629162227702e-18 - ArtUnc_3: -1.881943600015444e-17 - ArtUnc_4: 3.1581875786552915e-17 - ArtUnc_5: 1.5937575158089415e-18 - ArtUnc_6: 3.2893423568347272e-18 - ArtUnc_7: 1.2239723672629012e-15 - ArtUnc_8: -2.2074775992875465e-14 - ArtUnc_9: 6.704927997723987e-16 - ArtUnc_10: 2.769940885779498e-14 - ArtUnc_11: -5.873909050918547e-14 - ArtUnc_12: 4.6646760813590076e-15 - ArtUnc_13: 3.208249464110612e-14 - ArtUnc_14: -2.768336938859504e-15 - ArtUnc_15: 7.564761724867157e-15 - ArtUnc_16: -4.898938035446411e-16 - ArtUnc_17: -7.062103028399974e-15 - ArtUnc_18: -5.255133974819861e-16 - ArtUnc_19: -1.6363092567285706e-14 - ArtUnc_20: -2.3889846365697364e-13 - ArtUnc_21: 2.0807479149316982e-14 - ArtUnc_22: -5.297202828929652e-12 - ArtUnc_23: -1.9082778110477102e-13 - ArtUnc_24: 6.039201406219688e-12 - ArtUnc_25: 2.6715907554407336e-12 - ArtUnc_26: -2.796639331847442e-13 - ArtUnc_27: -1.9072862813521637e-11 - ArtUnc_28: 3.1805753313814845e-13 - ArtUnc_29: -2.342851279918988e-12 - ArtUnc_30: -2.1374606686935742e-13 - ArtUnc_31: -1.0815260613105309e-13 - ArtUnc_32: -1.96863975719e-11 - ArtUnc_33: 1.56368002495703e-14 - ArtUnc_34: 4.941397788678146e-12 - ArtUnc_35: -3.4343154224011755e-12 - ArtUnc_36: 4.797358782019336e-11 - ArtUnc_37: 5.773888609002955e-11 - ArtUnc_38: 9.251216849880243e-12 - ArtUnc_39: 6.909058451839528e-11 - ArtUnc_40: 1.692511740888848e-12 - ArtUnc_41: 3.7053698468621566e-10 - ArtUnc_42: -1.8553929057684222e-11 - ArtUnc_43: -4.846323282585256e-10 - ArtUnc_44: -3.327459492748151e-11 - ArtUnc_45: -7.597393140041539e-13 - ArtUnc_46: -6.897334913039593e-11 - ArtUnc_47: 1.5566079258685414e-10 - ArtUnc_48: 7.485089690148145e-12 - ArtUnc_49: 4.1862286539349234e-10 - ArtUnc_50: -6.302238876177875e-11 - ArtUnc_51: 9.65302787763233e-10 - ArtUnc_52: -5.721657990641889e-10 - ArtUnc_53: 2.4895736849703775e-11 - ArtUnc_54: 7.617696381166007e-11 - ArtUnc_55: -1.3478870594900175e-08 - ArtUnc_56: 1.2402321011990233e-08 - ArtUnc_57: 3.5571456105792596e-09 - ArtUnc_58: -2.5561509082484207e-08 - ArtUnc_59: -1.2383163719012923e-10 - ArtUnc_60: 3.2222219760102e-08 - ArtUnc_61: 5.225128803503071e-12 - ArtUnc_62: -8.974571982242052e-10 - ArtUnc_63: 9.44057460845764e-11 - ArtUnc_64: 2.4480318754976328e-08 - ArtUnc_65: 1.042472983640617e-09 - ArtUnc_66: 3.516679646392288e-08 - ArtUnc_67: 3.5298812203812566e-10 - ArtUnc_68: 1.9926689573872634e-09 - ArtUnc_69: 3.938321250106937e-10 - ArtUnc_70: -9.539111780809803e-09 - ArtUnc_71: -2.2666150732372423e-10 - ArtUnc_72: -4.3344959477670075e-08 - ArtUnc_73: -3.4399107786647648e-09 - ArtUnc_74: -3.766214542747313e-08 - ArtUnc_75: -8.85383302597457e-08 - ArtUnc_76: -5.078556975299819e-10 - ArtUnc_77: 2.6350754104581286e-09 - ArtUnc_78: -5.219583627352078e-08 - ArtUnc_79: -1.928632086792721e-07 - ArtUnc_80: 2.0279690969120902e-09 - ArtUnc_81: -7.292739062852815e-09 - ArtUnc_82: 5.17014190383794e-10 - ArtUnc_83: 2.2541666134291343e-08 - ArtUnc_84: 3.969306237175464e-08 - ArtUnc_85: -2.686872478207086e-06 - ArtUnc_86: 4.1414736198157015e-07 - ArtUnc_87: 7.862979078956051e-07 - ArtUnc_88: -4.4423448886376586e-08 - ArtUnc_89: 1.172101147051345e-08 - ArtUnc_90: -2.65116567570053e-07 - ArtUnc_91: -1.6784554078079344e-06 - ArtUnc_92: 1.550500835139886e-08 - ArtUnc_93: 1.9257018402597083e-08 - ArtUnc_94: 2.228125152342082e-08 - ArtUnc_95: -8.447286155149883e-07 - ArtUnc_96: -1.7506003847933813e-07 + ArtUnc_1: 2.35927203457836e-20 + ArtUnc_2: -5.922629161146333e-18 + ArtUnc_3: -1.8819435998532412e-17 + ArtUnc_4: 3.158187577786074e-17 + ArtUnc_5: 1.5937576017366522e-18 + ArtUnc_6: 3.289342185321362e-18 + ArtUnc_7: 1.2239723672715737e-15 + ArtUnc_8: -2.2074775992870183e-14 + ArtUnc_9: 6.704927999036726e-16 + ArtUnc_10: 2.7699408858070488e-14 + ArtUnc_11: -5.873909050903443e-14 + ArtUnc_12: -4.664676081797592e-15 + ArtUnc_13: -3.2082494641071664e-14 + ArtUnc_14: -2.7683369430503856e-15 + ArtUnc_15: 7.564761722243567e-15 + ArtUnc_16: -4.898938440266008e-16 + ArtUnc_17: -7.0621030270174545e-15 + ArtUnc_18: 5.255133824119982e-16 + ArtUnc_19: 1.636309256674278e-14 + ArtUnc_20: -2.388984636576834e-13 + ArtUnc_21: 2.0807479147216883e-14 + ArtUnc_22: -5.297202828927104e-12 + ArtUnc_23: -1.9082778121082117e-13 + ArtUnc_24: 6.039201406219987e-12 + ArtUnc_25: 2.6715907554250054e-12 + ArtUnc_26: -2.7966393291241113e-13 + ArtUnc_27: -1.9072862813516748e-11 + ArtUnc_28: -3.1805753329792926e-13 + ArtUnc_29: 2.342851279537203e-12 + ArtUnc_30: -2.1374606682004223e-13 + ArtUnc_31: 1.0815260616289436e-13 + ArtUnc_32: -1.9686397571900833e-11 + ArtUnc_33: -1.5636800167330968e-14 + ArtUnc_34: 4.9413977886084574e-12 + ArtUnc_35: 3.43431542246607e-12 + ArtUnc_36: -4.797358782039034e-11 + ArtUnc_37: 5.773888609003612e-11 + ArtUnc_38: -9.251216849801803e-12 + ArtUnc_39: -6.909058451839399e-11 + ArtUnc_40: 1.6925117406345058e-12 + ArtUnc_41: 3.7053698468647157e-10 + ArtUnc_42: 1.855392905824653e-11 + ArtUnc_43: -4.846323282584783e-10 + ArtUnc_44: -3.327459492762007e-11 + ArtUnc_45: 7.597393152306623e-13 + ArtUnc_46: -6.897334913058715e-11 + ArtUnc_47: 1.5566079258656675e-10 + ArtUnc_48: -7.485089687541113e-12 + ArtUnc_49: -4.1862286539354177e-10 + ArtUnc_50: 6.302238876174077e-11 + ArtUnc_51: -9.653027877636256e-10 + ArtUnc_52: 5.72165799063931e-10 + ArtUnc_53: -2.489573684983785e-11 + ArtUnc_54: -7.617696381330824e-11 + ArtUnc_55: -1.3478870594901272e-08 + ArtUnc_56: 1.2402321011988667e-08 + ArtUnc_57: 3.5571456105850805e-09 + ArtUnc_58: -2.556150908248414e-08 + ArtUnc_59: -1.2383163719166848e-10 + ArtUnc_60: -3.2222219760101495e-08 + ArtUnc_61: -5.2251288050979926e-12 + ArtUnc_62: -8.97457198223341e-10 + ArtUnc_63: 9.440574608420388e-11 + ArtUnc_64: -2.448031875497111e-08 + ArtUnc_65: 1.042472983643038e-09 + ArtUnc_66: -3.5166796463923804e-08 + ArtUnc_67: 3.52988122038554e-10 + ArtUnc_68: 1.992668957386929e-09 + ArtUnc_69: -3.938321250102191e-10 + ArtUnc_70: 9.539111780811317e-09 + ArtUnc_71: 2.266615073220808e-10 + ArtUnc_72: 4.3344959477670267e-08 + ArtUnc_73: 3.439910778665954e-09 + ArtUnc_74: 3.766214542747073e-08 + ArtUnc_75: -8.853833025974996e-08 + ArtUnc_76: -5.07855697525207e-10 + ArtUnc_77: 2.6350754104537003e-09 + ArtUnc_78: -5.219583627350703e-08 + ArtUnc_79: -1.9286320867927353e-07 + ArtUnc_80: 2.0279690969114773e-09 + ArtUnc_81: -7.292739062847744e-09 + ArtUnc_82: -5.170141903927744e-10 + ArtUnc_83: 2.2541666134281235e-08 + ArtUnc_84: -3.9693062371755816e-08 + ArtUnc_85: 2.686872478207075e-06 + ArtUnc_86: 4.141473619815568e-07 + ArtUnc_87: 7.862979078955503e-07 + ArtUnc_88: 1.1721011470516791e-08 + ArtUnc_89: 4.4423448886381265e-08 + ArtUnc_90: 2.651165675700547e-07 + ArtUnc_91: -1.6784554078079242e-06 + ArtUnc_92: -1.550500835139394e-08 + ArtUnc_93: 1.9257018402611466e-08 + ArtUnc_94: 2.2281251523428708e-08 + ArtUnc_95: -8.447286155149897e-07 + ArtUnc_96: -1.7506003847933434e-07 - stat: 0 Uncorr: 0.00035000000000000005 RCES: 0.002311178960509117 @@ -2457,102 +2457,102 @@ bins: ModelRW_2: 0.0005568465901844062 JES_1: 0.0010978924554572729 JES_2: 0.0010978924554572729 - ArtUnc_1: -4.650512749510166e-09 - ArtUnc_2: 2.615040433829322e-07 - ArtUnc_3: 5.12557246908949e-07 - ArtUnc_4: 1.0849380135809137e-06 - ArtUnc_5: 7.030184434031912e-08 - ArtUnc_6: -6.666096450905855e-08 - ArtUnc_7: 8.926475091345058e-06 - ArtUnc_8: -3.752463903315616e-05 - ArtUnc_9: -4.525940513413942e-06 - ArtUnc_10: 3.1467905590806136e-05 - ArtUnc_11: -2.023314790240504e-05 - ArtUnc_12: -2.0219473189516724e-06 - ArtUnc_13: 4.0032878530944104e-05 - ArtUnc_14: 9.542902962029522e-06 - ArtUnc_15: -1.5817618089945143e-05 - ArtUnc_16: 5.069765305481629e-07 - ArtUnc_17: -1.08891559690467e-05 - ArtUnc_18: -7.854719394650325e-07 - ArtUnc_19: -2.3706046886005396e-05 - ArtUnc_20: -1.9083074205274192e-05 - ArtUnc_21: 4.747888848598477e-07 - ArtUnc_22: 0.0001673429516106384 - ArtUnc_23: 1.8956321121486008e-06 - ArtUnc_24: 0.00013912348563776817 - ArtUnc_25: 0.0001879940038701234 - ArtUnc_26: 3.117946243289524e-05 - ArtUnc_27: 0.00021123077073010452 - ArtUnc_28: -2.6931251017312914e-06 - ArtUnc_29: -0.0005732465940048247 - ArtUnc_30: 0.00012951670447790492 - ArtUnc_31: 5.3867864331504804e-05 - ArtUnc_32: -0.00022791727755530698 - ArtUnc_33: -2.3810441820842363e-07 - ArtUnc_34: -7.330782394984981e-06 - ArtUnc_35: 1.7685369090595978e-05 - ArtUnc_36: 2.472431294429736e-06 - ArtUnc_37: -1.4607163820264948e-05 - ArtUnc_38: -2.6176429082263394e-06 - ArtUnc_39: 6.607915967338179e-07 - ArtUnc_40: -5.1362874816019386e-08 - ArtUnc_41: 1.5135293048599682e-06 - ArtUnc_42: 3.930922079682163e-08 - ArtUnc_43: 1.304912887440288e-06 - ArtUnc_44: -7.960303951658007e-06 - ArtUnc_45: -5.351476142610959e-08 - ArtUnc_46: -3.500460120766551e-07 - ArtUnc_47: -2.6985309472054276e-07 - ArtUnc_48: -6.382660114581625e-09 - ArtUnc_49: -2.434139705635471e-06 - ArtUnc_50: -4.811695723307431e-07 - ArtUnc_51: -2.879156312046098e-08 - ArtUnc_52: -1.9332838629887088e-08 - ArtUnc_53: -5.698775424400125e-09 - ArtUnc_54: 1.2428319793268545e-08 - ArtUnc_55: 1.829936559843659e-08 - ArtUnc_56: -9.683602000647387e-10 - ArtUnc_57: -2.0089989751234485e-09 - ArtUnc_58: -4.093810632764918e-09 - ArtUnc_59: 7.913059982895017e-09 - ArtUnc_60: -6.358131181265117e-09 - ArtUnc_61: -3.316418941661967e-11 - ArtUnc_62: 4.826728173644871e-09 - ArtUnc_63: -5.171061553900622e-10 - ArtUnc_64: -3.349431848054753e-07 - ArtUnc_65: -1.1614407621022927e-08 - ArtUnc_66: 2.3340415670960243e-07 - ArtUnc_67: -4.714533807608359e-09 - ArtUnc_68: -5.125500757965474e-10 - ArtUnc_69: -2.568175920169571e-11 - ArtUnc_70: 4.617791891800068e-10 - ArtUnc_71: 1.7269565631121524e-11 - ArtUnc_72: 1.0426947546369062e-09 - ArtUnc_73: -1.3974946479046988e-10 - ArtUnc_74: 7.388353615943769e-11 - ArtUnc_75: 2.2023115713548736e-09 - ArtUnc_76: -3.2388756321363645e-11 - ArtUnc_77: 1.683694432077247e-10 - ArtUnc_78: -2.3319062783812886e-09 - ArtUnc_79: 6.984125752366835e-10 - ArtUnc_80: 2.421067285842708e-10 - ArtUnc_81: -1.064510427534945e-10 - ArtUnc_82: -9.551534802834587e-12 - ArtUnc_83: 4.2477216540959984e-11 - ArtUnc_84: -1.2581519448914072e-11 - ArtUnc_85: 2.8532031390087507e-13 - ArtUnc_86: -7.1550686481024196e-12 - ArtUnc_87: -8.385559175990136e-12 - ArtUnc_88: -6.684767466889214e-11 - ArtUnc_89: 9.054072666778e-12 - ArtUnc_90: -1.8249590088503793e-11 - ArtUnc_91: -1.376928279346296e-12 - ArtUnc_92: 2.0830196938468465e-10 - ArtUnc_93: 1.474440598941585e-11 - ArtUnc_94: 2.806228895777921e-12 - ArtUnc_95: -4.903718148236899e-11 - ArtUnc_96: 1.1351687655146475e-11 + ArtUnc_1: -4.650512749355942e-09 + ArtUnc_2: 2.6150404338355495e-07 + ArtUnc_3: 5.12557246908968e-07 + ArtUnc_4: 1.0849380135812087e-06 + ArtUnc_5: 7.030184433999337e-08 + ArtUnc_6: -6.666096450952222e-08 + ArtUnc_7: 8.926475091343498e-06 + ArtUnc_8: -3.752463903315676e-05 + ArtUnc_9: -4.525940513413666e-06 + ArtUnc_10: 3.1467905590806244e-05 + ArtUnc_11: -2.0233147902406997e-05 + ArtUnc_12: 2.021947318951445e-06 + ArtUnc_13: -4.003287853094295e-05 + ArtUnc_14: 9.54290296203011e-06 + ArtUnc_15: -1.5817618089945295e-05 + ArtUnc_16: 5.069765305450733e-07 + ArtUnc_17: -1.0889155969046879e-05 + ArtUnc_18: 7.854719394652192e-07 + ArtUnc_19: 2.3706046886005644e-05 + ArtUnc_20: -1.9083074205274243e-05 + ArtUnc_21: 4.747888848597217e-07 + ArtUnc_22: 0.00016734295161063723 + ArtUnc_23: 1.8956321121513973e-06 + ArtUnc_24: 0.0001391234856377672 + ArtUnc_25: 0.00018799400387012392 + ArtUnc_26: 3.117946243289525e-05 + ArtUnc_27: 0.00021123077073010498 + ArtUnc_28: 2.693125101744767e-06 + ArtUnc_29: 0.0005732465940048262 + ArtUnc_30: 0.00012951670447777832 + ArtUnc_31: -5.386786433193626e-05 + ArtUnc_32: -0.0002279172775553063 + ArtUnc_33: 2.3810441821111926e-07 + ArtUnc_34: -7.330782394982886e-06 + ArtUnc_35: -1.7685369090595917e-05 + ArtUnc_36: -2.4724312944298536e-06 + ArtUnc_37: -1.4607163820264878e-05 + ArtUnc_38: 2.6176429082255432e-06 + ArtUnc_39: -6.607915967338914e-07 + ArtUnc_40: -5.1362874816051534e-08 + ArtUnc_41: 1.5135293048599083e-06 + ArtUnc_42: -3.930922079681527e-08 + ArtUnc_43: 1.3049128874402319e-06 + ArtUnc_44: -7.96030395165809e-06 + ArtUnc_45: 5.351476142624853e-08 + ArtUnc_46: -3.500460120766658e-07 + ArtUnc_47: -2.698530947205398e-07 + ArtUnc_48: 6.382660114578908e-09 + ArtUnc_49: 2.4341397056357427e-06 + ArtUnc_50: 4.81169572330774e-07 + ArtUnc_51: 2.879156312045966e-08 + ArtUnc_52: 1.933283862988446e-08 + ArtUnc_53: 5.698775424400118e-09 + ArtUnc_54: -1.2428319793269074e-08 + ArtUnc_55: 1.8299365598447446e-08 + ArtUnc_56: -9.683602000634305e-10 + ArtUnc_57: -2.008998975123179e-09 + ArtUnc_58: -4.09381063276111e-09 + ArtUnc_59: 7.913059982895237e-09 + ArtUnc_60: 6.358131181272643e-09 + ArtUnc_61: 3.316418941539378e-11 + ArtUnc_62: 4.826728173643972e-09 + ArtUnc_63: -5.171061553907083e-10 + ArtUnc_64: 3.34943184805511e-07 + ArtUnc_65: -1.1614407621026812e-08 + ArtUnc_66: -2.3340415670957435e-07 + ArtUnc_67: -4.714533807607662e-09 + ArtUnc_68: -5.125500757971282e-10 + ArtUnc_69: 2.5681759201689222e-11 + ArtUnc_70: -4.617791891797858e-10 + ArtUnc_71: -1.726956563111836e-11 + ArtUnc_72: -1.0426947546361144e-09 + ArtUnc_73: 1.3974946479052858e-10 + ArtUnc_74: -7.388353615932547e-11 + ArtUnc_75: 2.2023115713533785e-09 + ArtUnc_76: -3.238875632136181e-11 + ArtUnc_77: 1.683694432077045e-10 + ArtUnc_78: -2.3319062783790383e-09 + ArtUnc_79: 6.984125752352948e-10 + ArtUnc_80: 2.4210672858428407e-10 + ArtUnc_81: -1.0645104275344316e-10 + ArtUnc_82: 9.551534802832154e-12 + ArtUnc_83: 4.247721654093233e-11 + ArtUnc_84: 1.2581519448969144e-11 + ArtUnc_85: -2.853203139020557e-13 + ArtUnc_86: -7.1550686480950606e-12 + ArtUnc_87: -8.385559175981213e-12 + ArtUnc_88: 9.054072666771776e-12 + ArtUnc_89: 6.684767466884986e-11 + ArtUnc_90: 1.8249590088465067e-11 + ArtUnc_91: -1.3769282793509156e-12 + ArtUnc_92: -2.0830196938451975e-10 + ArtUnc_93: 1.474440598941191e-11 + ArtUnc_94: 2.8062288957760026e-12 + ArtUnc_95: -4.9037181482300245e-11 + ArtUnc_96: 1.1351687655157902e-11 - stat: 0 Uncorr: 0.000236 RCES: 0.00022209092192163098 @@ -2568,102 +2568,102 @@ bins: ModelRW_2: 0.0005807326572528877 JES_1: 0.0002470233543614854 JES_2: 0.0002470233543614854 - ArtUnc_1: 5.471569995891646e-10 - ArtUnc_2: -2.1548459534169628e-08 - ArtUnc_3: 1.6107173820232725e-09 - ArtUnc_4: 1.8790643118297607e-07 - ArtUnc_5: 1.050117042570297e-09 - ArtUnc_6: 1.4980021086587036e-08 - ArtUnc_7: 1.0716030983490844e-06 - ArtUnc_8: -5.852027745173473e-06 - ArtUnc_9: 7.491192402189114e-07 - ArtUnc_10: -8.052950538933017e-08 - ArtUnc_11: -5.7252344852199985e-06 - ArtUnc_12: 9.685501549657312e-07 - ArtUnc_13: 1.3424257850249387e-06 - ArtUnc_14: -9.956049613005863e-07 - ArtUnc_15: 5.297725506633483e-07 - ArtUnc_16: 1.673837768454332e-08 - ArtUnc_17: -3.582507838236449e-07 - ArtUnc_18: 1.2647274373508488e-08 - ArtUnc_19: -1.2336629966632117e-06 - ArtUnc_20: 8.403154663433771e-07 - ArtUnc_21: 6.791298681435195e-07 - ArtUnc_22: -1.776150220884706e-06 - ArtUnc_23: -4.784905450234038e-07 - ArtUnc_24: -5.1696968831452726e-06 - ArtUnc_25: 2.821350325782999e-05 - ArtUnc_26: -6.758352126525412e-06 - ArtUnc_27: -1.948245245698466e-05 - ArtUnc_28: 1.8615587928714592e-07 - ArtUnc_29: -4.9400028648362785e-06 - ArtUnc_30: 2.5959751638211684e-06 - ArtUnc_31: 1.0763248007906184e-06 - ArtUnc_32: -3.287425978178637e-05 - ArtUnc_33: 3.2994683073729474e-08 - ArtUnc_34: -1.234940266205477e-06 - ArtUnc_35: 6.191515490196092e-06 - ArtUnc_36: 2.7249485883068733e-06 - ArtUnc_37: -5.989822561698192e-05 - ArtUnc_38: -1.0403639627465775e-05 - ArtUnc_39: -7.720196274664049e-05 - ArtUnc_40: 1.5220534773968058e-06 - ArtUnc_41: 1.709379278867283e-05 - ArtUnc_42: -8.11450519569054e-07 - ArtUnc_43: -1.3715268834483381e-05 - ArtUnc_44: 0.0002462097444531081 - ArtUnc_45: 1.2730256982183371e-06 - ArtUnc_46: 1.1643913116449376e-05 - ArtUnc_47: 1.629978914010714e-06 - ArtUnc_48: 2.280929511647473e-07 - ArtUnc_49: 3.6345767126120526e-05 - ArtUnc_50: 2.4422571255477306e-06 - ArtUnc_51: 6.822122723980482e-08 - ArtUnc_52: -5.976234737191764e-08 - ArtUnc_53: 1.8446310222817315e-08 - ArtUnc_54: -2.4751852109218752e-08 - ArtUnc_55: 1.131003801326065e-06 - ArtUnc_56: 1.0759820264169869e-06 - ArtUnc_57: 3.0780950207663535e-07 - ArtUnc_58: 6.812023712735954e-07 - ArtUnc_59: -7.960672216214537e-09 - ArtUnc_60: 5.267916630689111e-07 - ArtUnc_61: 3.39970164677748e-10 - ArtUnc_62: -6.665603912810152e-09 - ArtUnc_63: 7.138800656329359e-10 - ArtUnc_64: 2.477585785184677e-06 - ArtUnc_65: 3.6242879105329454e-08 - ArtUnc_66: -1.838464013018305e-06 - ArtUnc_67: 2.718142424691705e-08 - ArtUnc_68: -2.8193276372483382e-08 - ArtUnc_69: 5.427607805245182e-10 - ArtUnc_70: -3.084661349746725e-09 - ArtUnc_71: 5.447159219783033e-11 - ArtUnc_72: 2.1302205731501905e-08 - ArtUnc_73: 8.47153107572282e-10 - ArtUnc_74: 1.1628840669622708e-08 - ArtUnc_75: 1.7170116614497963e-08 - ArtUnc_76: -2.3415368954742075e-10 - ArtUnc_77: -2.7783117168968716e-10 - ArtUnc_78: 3.2602119554402305e-08 - ArtUnc_79: 1.0463517159940953e-08 - ArtUnc_80: -3.450248147908858e-10 - ArtUnc_81: 7.482156465457027e-10 - ArtUnc_82: -3.8370527796877e-11 - ArtUnc_83: -3.2471216627324176e-11 - ArtUnc_84: 1.4283148435102442e-09 - ArtUnc_85: -2.316766223558353e-11 - ArtUnc_86: 6.903485286948077e-11 - ArtUnc_87: 6.463824938402307e-11 - ArtUnc_88: -3.636593406602767e-10 - ArtUnc_89: 6.413357358594171e-12 - ArtUnc_90: 2.5940032189819596e-10 - ArtUnc_91: 6.457000917867735e-11 - ArtUnc_92: -1.2350529808453373e-09 - ArtUnc_93: -1.151435439702523e-11 - ArtUnc_94: -3.215014335109707e-11 - ArtUnc_95: -9.74700949230058e-11 - ArtUnc_96: -6.133126016763498e-11 + ArtUnc_1: 5.471569996118318e-10 + ArtUnc_2: -2.1548459534153544e-08 + ArtUnc_3: 1.6107173820174696e-09 + ArtUnc_4: 1.879064311830434e-07 + ArtUnc_5: 1.050117042374516e-09 + ArtUnc_6: 1.4980021086434547e-08 + ArtUnc_7: 1.0716030983489342e-06 + ArtUnc_8: -5.8520277451735335e-06 + ArtUnc_9: 7.491192402186086e-07 + ArtUnc_10: -8.052950538988503e-08 + ArtUnc_11: -5.725234485220118e-06 + ArtUnc_12: -9.685501549661442e-07 + ArtUnc_13: -1.3424257850248628e-06 + ArtUnc_14: -9.956049613002278e-07 + ArtUnc_15: 5.29772550663397e-07 + ArtUnc_16: 1.6738377684272918e-08 + ArtUnc_17: -3.582507838237691e-07 + ArtUnc_18: -1.264727437334715e-08 + ArtUnc_19: 1.233662996663388e-06 + ArtUnc_20: 8.403154663435293e-07 + ArtUnc_21: 6.79129868143396e-07 + ArtUnc_22: -1.776150220884529e-06 + ArtUnc_23: -4.784905450229317e-07 + ArtUnc_24: -5.169696883145389e-06 + ArtUnc_25: 2.8213503257829692e-05 + ArtUnc_26: -6.758352126525302e-06 + ArtUnc_27: -1.9482452456984413e-05 + ArtUnc_28: -1.8615587928710915e-07 + ArtUnc_29: 4.94000286483612e-06 + ArtUnc_30: 2.595975163818299e-06 + ArtUnc_31: -1.076324800799102e-06 + ArtUnc_32: -3.2874259781786615e-05 + ArtUnc_33: -3.299468307382029e-08 + ArtUnc_34: -1.2349402662050923e-06 + ArtUnc_35: -6.191515490195612e-06 + ArtUnc_36: -2.7249485883079676e-06 + ArtUnc_37: -5.989822561698278e-05 + ArtUnc_38: 1.040363962746263e-05 + ArtUnc_39: 7.720196274664037e-05 + ArtUnc_40: 1.5220534773987657e-06 + ArtUnc_41: 1.70937927886724e-05 + ArtUnc_42: 8.114505195690131e-07 + ArtUnc_43: -1.371526883447847e-05 + ArtUnc_44: 0.00024620974445310794 + ArtUnc_45: -1.2730256982223254e-06 + ArtUnc_46: 1.1643913116449547e-05 + ArtUnc_47: 1.6299789140107506e-06 + ArtUnc_48: -2.2809295116473704e-07 + ArtUnc_49: -3.634576712612296e-05 + ArtUnc_50: -2.4422571255481782e-06 + ArtUnc_51: -6.822122723981085e-08 + ArtUnc_52: 5.976234737191589e-08 + ArtUnc_53: -1.8446310222813494e-08 + ArtUnc_54: 2.4751852109216145e-08 + ArtUnc_55: 1.1310038013260833e-06 + ArtUnc_56: 1.0759820264168969e-06 + ArtUnc_57: 3.0780950207694145e-07 + ArtUnc_58: 6.812023712735847e-07 + ArtUnc_59: -7.960672216219715e-09 + ArtUnc_60: -5.267916630689513e-07 + ArtUnc_61: -3.399701646687149e-10 + ArtUnc_62: -6.6656039128050465e-09 + ArtUnc_63: 7.138800656368192e-10 + ArtUnc_64: -2.4775857851850117e-06 + ArtUnc_65: 3.624287910535524e-08 + ArtUnc_66: 1.8384640130182134e-06 + ArtUnc_67: 2.7181424246913548e-08 + ArtUnc_68: -2.8193276372482016e-08 + ArtUnc_69: -5.42760780524532e-10 + ArtUnc_70: 3.0846613497465428e-09 + ArtUnc_71: -5.4471592197849197e-11 + ArtUnc_72: -2.1302205731503017e-08 + ArtUnc_73: -8.471531075724741e-10 + ArtUnc_74: -1.1628840669622942e-08 + ArtUnc_75: 1.7170116614500534e-08 + ArtUnc_76: -2.341536895472736e-10 + ArtUnc_77: -2.7783117168958113e-10 + ArtUnc_78: 3.260211955439682e-08 + ArtUnc_79: 1.046351715994512e-08 + ArtUnc_80: -3.450248147908177e-10 + ArtUnc_81: 7.482156465457119e-10 + ArtUnc_82: 3.8370527796884825e-11 + ArtUnc_83: -3.247121662728555e-11 + ArtUnc_84: -1.4283148435103424e-09 + ArtUnc_85: 2.3167662235587087e-11 + ArtUnc_86: 6.903485286946707e-11 + ArtUnc_87: 6.463824938400358e-11 + ArtUnc_88: 6.4133573585991416e-12 + ArtUnc_89: 3.6365934066034854e-10 + ArtUnc_90: -2.5940032189813645e-10 + ArtUnc_91: 6.457000917868311e-11 + ArtUnc_92: 1.2350529808450879e-09 + ArtUnc_93: -1.151435439701838e-11 + ArtUnc_94: -3.2150143351094645e-11 + ArtUnc_95: -9.747009492310879e-11 + ArtUnc_96: -6.133126016765184e-11 - stat: 0 Uncorr: 5.64e-05 RCES: 5.7574290199706335e-05 @@ -2679,102 +2679,102 @@ bins: ModelRW_2: 0.00023529685250763555 JES_1: 0.00014883349824552266 JES_2: 0.00014883349824552266 - ArtUnc_1: 3.725748441855142e-13 - ArtUnc_2: -5.576213415696871e-11 - ArtUnc_3: -1.8792997287418968e-10 - ArtUnc_4: -4.5867840932795444e-10 - ArtUnc_5: -1.4436446728744216e-11 - ArtUnc_6: 1.8673969063588274e-11 - ArtUnc_7: -2.304809777235498e-09 - ArtUnc_8: 7.845765890469632e-10 - ArtUnc_9: 1.977290840880951e-09 - ArtUnc_10: -1.1619921967808012e-08 - ArtUnc_11: -3.3435052190755636e-09 - ArtUnc_12: 1.8580739693610029e-09 - ArtUnc_13: -6.89347051218557e-08 - ArtUnc_14: -8.552736714386387e-09 - ArtUnc_15: 1.5846804640892226e-08 - ArtUnc_16: -4.681586314223856e-10 - ArtUnc_17: 2.5773570618027182e-08 - ArtUnc_18: 1.388346765828633e-09 - ArtUnc_19: 1.0772612664036784e-07 - ArtUnc_20: 9.127921594960896e-08 - ArtUnc_21: -6.69780382922057e-11 - ArtUnc_22: -1.1270512654928677e-07 - ArtUnc_23: -1.3323411868686961e-09 - ArtUnc_24: -1.5556328301045476e-06 - ArtUnc_25: 7.606353978765809e-07 - ArtUnc_26: -3.851083482718733e-07 - ArtUnc_27: -1.452548473409936e-06 - ArtUnc_28: 5.088505297563495e-08 - ArtUnc_29: 1.6117205402691302e-06 - ArtUnc_30: -4.113354807336254e-07 - ArtUnc_31: -1.6983994409327336e-07 - ArtUnc_32: 1.6892305922853991e-06 - ArtUnc_33: 1.457067663137859e-10 - ArtUnc_34: 8.989143287514196e-08 - ArtUnc_35: 8.88695551904404e-08 - ArtUnc_36: 7.181782097801695e-07 - ArtUnc_37: -2.077812503773524e-06 - ArtUnc_38: -3.6391782595324245e-07 - ArtUnc_39: -2.7286713820165273e-06 - ArtUnc_40: 5.455195979654707e-08 - ArtUnc_41: 7.549069678202049e-06 - ArtUnc_42: -7.453588459542621e-08 - ArtUnc_43: -1.1101608282611443e-05 - ArtUnc_44: 2.0012574636198835e-06 - ArtUnc_45: 2.7433672163776266e-08 - ArtUnc_46: -9.517229932449512e-07 - ArtUnc_47: 5.589666364913685e-07 - ArtUnc_48: 2.4944416287925542e-08 - ArtUnc_49: 2.347177907621526e-05 - ArtUnc_50: 1.4282041253315672e-06 - ArtUnc_51: -4.788002977744846e-07 - ArtUnc_52: -8.903094382817606e-07 - ArtUnc_53: 1.2459460515367121e-07 - ArtUnc_54: -8.14925320565125e-08 - ArtUnc_55: 1.2594223585420613e-05 - ArtUnc_56: 1.4274865327026748e-05 - ArtUnc_57: 4.174072422600962e-06 - ArtUnc_58: 2.2303548443451325e-05 - ArtUnc_59: -2.1908097420859265e-07 - ArtUnc_60: 1.891093455120236e-05 - ArtUnc_61: 1.094479673948385e-08 - ArtUnc_62: -6.893892056162117e-08 - ArtUnc_63: 5.823766977123618e-09 - ArtUnc_64: -5.6603262292214214e-05 - ArtUnc_65: -8.015406273532788e-07 - ArtUnc_66: 3.9683471410176716e-05 - ArtUnc_67: -5.263076671627705e-07 - ArtUnc_68: 3.5855468780186174e-07 - ArtUnc_69: -1.0173186218329567e-08 - ArtUnc_70: 1.229531766027621e-07 - ArtUnc_71: 2.479331417189453e-09 - ArtUnc_72: 6.571712548162449e-07 - ArtUnc_73: 4.7783870276873866e-08 - ArtUnc_74: 1.0059102231087426e-07 - ArtUnc_75: 8.417761885970783e-07 - ArtUnc_76: 8.396096597470064e-09 - ArtUnc_77: 7.42300544961137e-09 - ArtUnc_78: -1.1325365974717505e-07 - ArtUnc_79: -4.23188220554539e-08 - ArtUnc_80: 6.129071591428982e-09 - ArtUnc_81: -9.456587992687703e-09 - ArtUnc_82: 1.5188352334209478e-10 - ArtUnc_83: 5.014588526357882e-09 - ArtUnc_84: 1.1798190978593119e-08 - ArtUnc_85: 2.631729931569993e-10 - ArtUnc_86: 1.924573846872015e-11 - ArtUnc_87: 2.593975753501807e-10 - ArtUnc_88: -2.02771483831625e-08 - ArtUnc_89: 1.2062301518549229e-09 - ArtUnc_90: 3.017083083839918e-09 - ArtUnc_91: -1.0921148670095773e-09 - ArtUnc_92: 2.351887988494077e-08 - ArtUnc_93: 4.3944548208900017e-10 - ArtUnc_94: 3.733027150779105e-10 - ArtUnc_95: -3.2961109082648946e-09 - ArtUnc_96: 4.3659842526255104e-11 + ArtUnc_1: 3.72574843754151e-13 + ArtUnc_2: -5.5762134156865614e-11 + ArtUnc_3: -1.8792997287274888e-10 + ArtUnc_4: -4.5867840932993047e-10 + ArtUnc_5: -1.4436446732121365e-11 + ArtUnc_6: 1.867396902546295e-11 + ArtUnc_7: -2.3048097772345663e-09 + ArtUnc_8: 7.845765890473015e-10 + ArtUnc_9: 1.977290840908495e-09 + ArtUnc_10: -1.1619921967779412e-08 + ArtUnc_11: -3.343505219064145e-09 + ArtUnc_12: -1.858073969329258e-09 + ArtUnc_13: 6.893470512185661e-08 + ArtUnc_14: -8.552736714474256e-09 + ArtUnc_15: 1.584680464086288e-08 + ArtUnc_16: -4.681586319467342e-10 + ArtUnc_17: 2.577357061816638e-08 + ArtUnc_18: -1.3883467658975774e-09 + ArtUnc_19: -1.0772612664045383e-07 + ArtUnc_20: 9.127921594949682e-08 + ArtUnc_21: -6.69780382479327e-11 + ArtUnc_22: -1.1270512654920153e-07 + ArtUnc_23: -1.33234118677314e-09 + ArtUnc_24: -1.555632830104435e-06 + ArtUnc_25: 7.606353978765029e-07 + ArtUnc_26: -3.851083482718545e-07 + ArtUnc_27: -1.4525484734098774e-06 + ArtUnc_28: -5.0885052975844806e-08 + ArtUnc_29: -1.61172054026889e-06 + ArtUnc_30: -4.1133548073345233e-07 + ArtUnc_31: 1.6983994409471313e-07 + ArtUnc_32: 1.6892305922854216e-06 + ArtUnc_33: -1.457067664224312e-10 + ArtUnc_34: 8.989143287517297e-08 + ArtUnc_35: -8.88695551901891e-08 + ArtUnc_36: -7.18178209779854e-07 + ArtUnc_37: -2.0778125037738755e-06 + ArtUnc_38: 3.6391782595336935e-07 + ArtUnc_39: 2.7286713820166425e-06 + ArtUnc_40: 5.455195979650584e-08 + ArtUnc_41: 7.549069678202054e-06 + ArtUnc_42: 7.453588459557469e-08 + ArtUnc_43: -1.1101608282611014e-05 + ArtUnc_44: 2.001257463619583e-06 + ArtUnc_45: -2.7433672163892875e-08 + ArtUnc_46: -9.517229932447282e-07 + ArtUnc_47: 5.589666364914897e-07 + ArtUnc_48: -2.4944416287900184e-08 + ArtUnc_49: -2.347177907621313e-05 + ArtUnc_50: -1.4282041253317663e-06 + ArtUnc_51: 4.788002977745001e-07 + ArtUnc_52: 8.903094382816588e-07 + ArtUnc_53: -1.2459460515372746e-07 + ArtUnc_54: 8.14925320564319e-08 + ArtUnc_55: 1.2594223585421794e-05 + ArtUnc_56: 1.4274865327025676e-05 + ArtUnc_57: 4.174072422605024e-06 + ArtUnc_58: 2.230354844345179e-05 + ArtUnc_59: -2.190809742086046e-07 + ArtUnc_60: -1.8910934551201536e-05 + ArtUnc_61: -1.094479673965532e-08 + ArtUnc_62: -6.893892056174763e-08 + ArtUnc_63: 5.82376697707184e-09 + ArtUnc_64: 5.660326229221998e-05 + ArtUnc_65: -8.015406273538802e-07 + ArtUnc_66: -3.968347141017291e-05 + ArtUnc_67: -5.263076671626725e-07 + ArtUnc_68: 3.5855468780181044e-07 + ArtUnc_69: 1.0173186218331753e-08 + ArtUnc_70: -1.2295317660275172e-07 + ArtUnc_71: -2.4793314171900886e-09 + ArtUnc_72: -6.571712548162341e-07 + ArtUnc_73: -4.7783870276875176e-08 + ArtUnc_74: -1.005910223108769e-07 + ArtUnc_75: 8.417761885970648e-07 + ArtUnc_76: 8.396096597475887e-09 + ArtUnc_77: 7.423005449611018e-09 + ArtUnc_78: -1.1325365974715549e-07 + ArtUnc_79: -4.231882205546767e-08 + ArtUnc_80: 6.129071591428702e-09 + ArtUnc_81: -9.456587992687747e-09 + ArtUnc_82: -1.5188352334206963e-10 + ArtUnc_83: 5.014588526357662e-09 + ArtUnc_84: -1.1798190978592541e-08 + ArtUnc_85: -2.631729931570385e-10 + ArtUnc_86: 1.9245738468918398e-11 + ArtUnc_87: 2.5939757535041884e-10 + ArtUnc_88: 1.2062301518547448e-09 + ArtUnc_89: 2.027714838316177e-08 + ArtUnc_90: -3.0170830838406754e-09 + ArtUnc_91: -1.0921148670096631e-09 + ArtUnc_92: -2.351887988493733e-08 + ArtUnc_93: 4.3944548208894744e-10 + ArtUnc_94: 3.7330271507787496e-10 + ArtUnc_95: -3.296110908263646e-09 + ArtUnc_96: 4.3659842526486204e-11 - stat: 0 Uncorr: 1.0e-05 RCES: 1.1053958566956909e-05 @@ -2790,102 +2790,102 @@ bins: ModelRW_2: 4.511341263970173e-05 JES_1: 2.696523224450329e-05 JES_2: 2.696523224450329e-05 - ArtUnc_1: -5.2414622595776756e-15 - ArtUnc_2: 8.207592964731506e-13 - ArtUnc_3: 3.847729041684691e-12 - ArtUnc_4: 1.3792222266566074e-11 - ArtUnc_5: 5.052176641875075e-13 - ArtUnc_6: 2.2494956915663803e-14 - ArtUnc_7: 6.265328750309182e-11 - ArtUnc_8: -2.3772774781838074e-10 - ArtUnc_9: -3.1675878965401614e-12 - ArtUnc_10: -9.980068575842941e-12 - ArtUnc_11: 8.486503372810134e-11 - ArtUnc_12: -1.4472528444016473e-11 - ArtUnc_13: -1.9485505226518077e-10 - ArtUnc_14: 1.3385041147094832e-11 - ArtUnc_15: 1.2777939883775687e-11 - ArtUnc_16: -1.4594415085541144e-12 - ArtUnc_17: -7.622530131599248e-12 - ArtUnc_18: 3.3382253915144836e-13 - ArtUnc_19: -4.174449188947476e-10 - ArtUnc_20: -1.458526363043474e-10 - ArtUnc_21: -1.218326399980731e-10 - ArtUnc_22: 2.9701427574704487e-09 - ArtUnc_23: 2.22998549042183e-10 - ArtUnc_24: 7.119878894201229e-10 - ArtUnc_25: -4.049074824714188e-09 - ArtUnc_26: 1.3627773034302058e-09 - ArtUnc_27: 7.095862095535974e-09 - ArtUnc_28: 5.718772664967846e-10 - ArtUnc_29: 3.751773345446773e-09 - ArtUnc_30: -2.9515041503971795e-09 - ArtUnc_31: -1.1378459994761584e-09 - ArtUnc_32: 2.1546215977208857e-08 - ArtUnc_33: 2.5580061046276632e-11 - ArtUnc_34: -7.500012142836068e-10 - ArtUnc_35: 8.728016111697142e-09 - ArtUnc_36: -1.4591722382617339e-08 - ArtUnc_37: -1.5180310001887535e-07 - ArtUnc_38: -2.9087276501936008e-08 - ArtUnc_39: -2.4003660755313586e-07 - ArtUnc_40: 3.6335764936337553e-09 - ArtUnc_41: -1.7897560141452676e-07 - ArtUnc_42: -3.862399379321751e-09 - ArtUnc_43: 3.891403788701698e-07 - ArtUnc_44: -3.012756355155686e-07 - ArtUnc_45: -2.2701893787055546e-10 - ArtUnc_46: 3.0437265445985966e-08 - ArtUnc_47: -6.821619111218156e-08 - ArtUnc_48: -5.213033624738738e-09 - ArtUnc_49: -7.909571133749282e-07 - ArtUnc_50: 4.000696485550032e-09 - ArtUnc_51: -1.224471599566261e-07 - ArtUnc_52: 2.3873887600907556e-08 - ArtUnc_53: 1.3473575118941014e-08 - ArtUnc_54: -2.9872328342732867e-08 - ArtUnc_55: -1.5813190610402345e-06 - ArtUnc_56: 1.933241606756727e-06 - ArtUnc_57: 4.6978450337945344e-07 - ArtUnc_58: -3.3089357511885516e-06 - ArtUnc_59: 1.8756063896370004e-07 - ArtUnc_60: 3.631987023923681e-06 - ArtUnc_61: -8.974999862879568e-09 - ArtUnc_62: -3.21002633898529e-07 - ArtUnc_63: 3.687766345572266e-08 - ArtUnc_64: 7.773053107357186e-06 - ArtUnc_65: 6.97788139850965e-07 - ArtUnc_66: 8.346360521631023e-06 - ArtUnc_67: -3.417827012533438e-07 - ArtUnc_68: -4.1262878647269415e-07 - ArtUnc_69: -3.535170070934319e-09 - ArtUnc_70: 4.836847420599936e-07 - ArtUnc_71: 2.5243277693487462e-08 - ArtUnc_72: 5.7731325918633595e-06 - ArtUnc_73: 4.6811126185050636e-07 - ArtUnc_74: 1.5770399135300984e-06 - ArtUnc_75: 9.869174798919056e-06 - ArtUnc_76: 7.128038724571136e-08 - ArtUnc_77: -3.145401141298582e-08 - ArtUnc_78: 1.889171597787733e-05 - ArtUnc_79: 1.3499821119504489e-05 - ArtUnc_80: -7.1259305525188e-08 - ArtUnc_81: 4.948333753718327e-07 - ArtUnc_82: -3.5235174352896035e-08 - ArtUnc_83: -5.926496319976261e-08 - ArtUnc_84: 1.4452008476414846e-07 - ArtUnc_85: -1.5083206448382862e-08 - ArtUnc_86: 4.377923905507403e-09 - ArtUnc_87: 5.063614671792069e-09 - ArtUnc_88: -2.873263317578972e-07 - ArtUnc_89: 6.74573155948979e-09 - ArtUnc_90: 9.439684959933751e-08 - ArtUnc_91: -2.3971753920996644e-08 - ArtUnc_92: 4.2682329227800776e-08 - ArtUnc_93: 1.5311556383350169e-09 - ArtUnc_94: -4.599464050392651e-10 - ArtUnc_95: -1.9906259590400175e-08 - ArtUnc_96: 2.3216321592755967e-09 + ArtUnc_1: -5.241462259945504e-15 + ArtUnc_2: 8.207592964730536e-13 + ArtUnc_3: 3.847729041683561e-12 + ArtUnc_4: 1.3792222266569431e-11 + ArtUnc_5: 5.052176641803228e-13 + ArtUnc_6: 2.249495667603643e-14 + ArtUnc_7: 6.265328750309011e-11 + ArtUnc_8: -2.377277478183806e-10 + ArtUnc_9: -3.167587896563486e-12 + ArtUnc_10: -9.980068575788724e-12 + ArtUnc_11: 8.486503372824655e-11 + ArtUnc_12: 1.4472528442572177e-11 + ArtUnc_13: 1.9485505226517446e-10 + ArtUnc_14: 1.3385041148049875e-11 + ArtUnc_15: 1.2777939886617276e-11 + ArtUnc_16: -1.4594414874811343e-12 + ArtUnc_17: -7.622530132064897e-12 + ArtUnc_18: -3.3382254149254044e-13 + ArtUnc_19: 4.1744491889578663e-10 + ArtUnc_20: -1.458526363026746e-10 + ArtUnc_21: -1.2183263999339942e-10 + ArtUnc_22: 2.970142757468545e-09 + ArtUnc_23: 2.2299854903822662e-10 + ArtUnc_24: 7.119878894173299e-10 + ArtUnc_25: -4.04907482471203e-09 + ArtUnc_26: 1.362777303429574e-09 + ArtUnc_27: 7.095862095533802e-09 + ArtUnc_28: -5.718772664874926e-10 + ArtUnc_29: -3.751773345438866e-09 + ArtUnc_30: -2.9515041503778913e-09 + ArtUnc_31: 1.1378459995070667e-09 + ArtUnc_32: 2.1546215977208804e-08 + ArtUnc_33: -2.5580061091301333e-11 + ArtUnc_34: -7.500012142866035e-10 + ArtUnc_35: -8.728016111705376e-09 + ArtUnc_36: 1.4591722382626946e-08 + ArtUnc_37: -1.5180310001887374e-07 + ArtUnc_38: 2.908727650187965e-08 + ArtUnc_39: 2.400366075531249e-07 + ArtUnc_40: 3.6335764936557314e-09 + ArtUnc_41: -1.7897560141455276e-07 + ArtUnc_42: 3.862399379342501e-09 + ArtUnc_43: 3.891403788701593e-07 + ArtUnc_44: -3.012756355155561e-07 + ArtUnc_45: 2.2701893778899755e-10 + ArtUnc_46: 3.043726544595362e-08 + ArtUnc_47: -6.82161911121795e-08 + ArtUnc_48: 5.213033624694447e-09 + ArtUnc_49: 7.909571133748741e-07 + ArtUnc_50: -4.000696485508816e-09 + ArtUnc_51: 1.2244715995664577e-07 + ArtUnc_52: -2.387388760086234e-08 + ArtUnc_53: -1.3473575118922905e-08 + ArtUnc_54: 2.9872328342697794e-08 + ArtUnc_55: -1.581319061040107e-06 + ArtUnc_56: 1.933241606756599e-06 + ArtUnc_57: 4.697845033799855e-07 + ArtUnc_58: -3.308935751188501e-06 + ArtUnc_59: 1.8756063896365827e-07 + ArtUnc_60: -3.6319870239236007e-06 + ArtUnc_61: 8.974999862891205e-09 + ArtUnc_62: -3.2100263389846357e-07 + ArtUnc_63: 3.687766345572873e-08 + ArtUnc_64: -7.773053107356384e-06 + ArtUnc_65: 6.977881398509863e-07 + ArtUnc_66: -8.346360521631696e-06 + ArtUnc_67: -3.417827012533332e-07 + ArtUnc_68: -4.126287864727083e-07 + ArtUnc_69: 3.5351700709203385e-09 + ArtUnc_70: -4.836847420599969e-07 + ArtUnc_71: -2.5243277693506292e-08 + ArtUnc_72: -5.773132591863485e-06 + ArtUnc_73: -4.681112618505477e-07 + ArtUnc_74: -1.577039913530142e-06 + ArtUnc_75: 9.86917479891918e-06 + ArtUnc_76: 7.128038724576999e-08 + ArtUnc_77: -3.1454011412941795e-08 + ArtUnc_78: 1.8891715977876717e-05 + ArtUnc_79: 1.349982111950535e-05 + ArtUnc_80: -7.125930552507109e-08 + ArtUnc_81: 4.94833375371924e-07 + ArtUnc_82: 3.523517435289861e-08 + ArtUnc_83: -5.926496319977509e-08 + ArtUnc_84: -1.4452008476412964e-07 + ArtUnc_85: 1.508320644838305e-08 + ArtUnc_86: 4.377923905507967e-09 + ArtUnc_87: 5.063614671791702e-09 + ArtUnc_88: 6.745731559486469e-09 + ArtUnc_89: 2.873263317578852e-07 + ArtUnc_90: -9.439684959935189e-08 + ArtUnc_91: -2.3971753920997772e-08 + ArtUnc_92: -4.26823292277409e-08 + ArtUnc_93: 1.5311556383332444e-09 + ArtUnc_94: -4.599464050398569e-10 + ArtUnc_95: -1.9906259590373583e-08 + ArtUnc_96: 2.321632159279879e-09 - stat: 0 Uncorr: 1.63e-06 RCES: 1.1487453188152717e-06 @@ -2901,102 +2901,102 @@ bins: ModelRW_2: 6.281583090670695e-06 JES_1: 6.898078345452451e-06 JES_2: 6.898078345452451e-06 - ArtUnc_1: -1.901999100018548e-17 - ArtUnc_2: 1.0507157367213475e-14 - ArtUnc_3: 7.40593611506568e-14 - ArtUnc_4: 4.151678287759254e-13 - ArtUnc_5: 1.4607047974815595e-14 - ArtUnc_6: 3.987043341001862e-15 - ArtUnc_7: 2.9871234429879902e-12 - ArtUnc_8: -1.2890110141978409e-11 - ArtUnc_9: 1.9362487676758983e-13 - ArtUnc_10: -1.9130658820515975e-13 - ArtUnc_11: -3.400051044624664e-13 - ArtUnc_12: 3.652002954948537e-14 - ArtUnc_13: -7.1714396580676e-12 - ArtUnc_14: -1.2279063926269335e-13 - ArtUnc_15: 5.068030341871257e-14 - ArtUnc_16: 1.814632633271903e-15 - ArtUnc_17: -2.5823036771678652e-12 - ArtUnc_18: -7.732364378016276e-14 - ArtUnc_19: -1.0368599030456471e-11 - ArtUnc_20: 2.5377948411775244e-11 - ArtUnc_21: -1.835525458104688e-12 - ArtUnc_22: 3.2305271486619654e-10 - ArtUnc_23: 6.5716499618462496e-12 - ArtUnc_24: -1.3152564112477424e-10 - ArtUnc_25: -2.5802325607478847e-10 - ArtUnc_26: 5.448016000663151e-11 - ArtUnc_27: 9.181928486936754e-10 - ArtUnc_28: -4.2663113324387277e-11 - ArtUnc_29: -2.121381067982099e-10 - ArtUnc_30: 1.233692589427189e-10 - ArtUnc_31: 5.0572066257513994e-11 - ArtUnc_32: 1.98979108431419e-09 - ArtUnc_33: 5.964743403610258e-13 - ArtUnc_34: -4.229102206599528e-11 - ArtUnc_35: 6.37277150007288e-11 - ArtUnc_36: -8.992438540247284e-10 - ArtUnc_37: -2.8238691842799766e-09 - ArtUnc_38: -5.02980540834054e-10 - ArtUnc_39: -3.760335301555371e-09 - ArtUnc_40: -1.5225495777843334e-11 - ArtUnc_41: -1.5530794004637835e-08 - ArtUnc_42: -1.1200097110878717e-10 - ArtUnc_43: 3.320458370958875e-08 - ArtUnc_44: 1.612778691079054e-08 - ArtUnc_45: 1.9434751822814306e-10 - ArtUnc_46: 4.818719281876162e-09 - ArtUnc_47: -3.593683334232163e-10 - ArtUnc_48: 1.4452431641240683e-11 - ArtUnc_49: -1.1561914693040196e-07 - ArtUnc_50: -3.095265809794582e-09 - ArtUnc_51: 1.9902500579980663e-09 - ArtUnc_52: -1.0551540835725304e-09 - ArtUnc_53: -2.5839868436903215e-11 - ArtUnc_54: 2.735989615037522e-10 - ArtUnc_55: -1.7146668510367313e-08 - ArtUnc_56: -9.346685172218939e-09 - ArtUnc_57: -2.2964573279146082e-09 - ArtUnc_58: -2.5410501696593928e-08 - ArtUnc_59: 2.4527977930520205e-10 - ArtUnc_60: -4.2690864286483435e-08 - ArtUnc_61: -1.0006795074036811e-10 - ArtUnc_62: -1.5073637831944534e-09 - ArtUnc_63: 3.875254156561107e-11 - ArtUnc_64: 7.557892352678368e-08 - ArtUnc_65: -7.762771204768927e-09 - ArtUnc_66: -2.1676490443905314e-07 - ArtUnc_67: 3.088925173793289e-08 - ArtUnc_68: -3.777323449849427e-08 - ArtUnc_69: 9.873502259304843e-09 - ArtUnc_70: -2.373128831845292e-07 - ArtUnc_71: -2.8574018820259706e-09 - ArtUnc_72: 7.728916750925105e-08 - ArtUnc_73: 1.8004829794941364e-08 - ArtUnc_74: -1.1896352758006238e-06 - ArtUnc_75: 2.2098648925168953e-07 - ArtUnc_76: 2.786018071151877e-08 - ArtUnc_77: 7.187084774474957e-08 - ArtUnc_78: 2.2916415135349406e-06 - ArtUnc_79: -4.401578860181418e-06 - ArtUnc_80: 8.779094540537243e-08 - ArtUnc_81: -1.1345022521153709e-07 - ArtUnc_82: 1.138157692268845e-08 - ArtUnc_83: 3.163933993362653e-07 - ArtUnc_84: 1.3329149678621984e-06 - ArtUnc_85: 2.1353944709585353e-08 - ArtUnc_86: 5.5925988440237304e-08 - ArtUnc_87: 1.094170745951463e-07 - ArtUnc_88: -2.670456958818338e-06 - ArtUnc_89: 1.1376874495448061e-07 - ArtUnc_90: 4.823102494690155e-07 - ArtUnc_91: 1.4649026332981122e-07 - ArtUnc_92: 8.78447031792603e-06 - ArtUnc_93: 3.28059110009874e-08 - ArtUnc_94: 1.881002465380906e-07 - ArtUnc_95: -4.025966804622711e-07 - ArtUnc_96: -1.8317314419583592e-08 + ArtUnc_1: -1.9019991291243223e-17 + ArtUnc_2: 1.0507157366899366e-14 + ArtUnc_3: 7.405936115075455e-14 + ArtUnc_4: 4.1516782877622893e-13 + ArtUnc_5: 1.4607047978177815e-14 + ArtUnc_6: 3.987043331119774e-15 + ArtUnc_7: 2.9871234429873815e-12 + ArtUnc_8: -1.28901101419786e-11 + ArtUnc_9: 1.936248767826609e-13 + ArtUnc_10: -1.9130658824214493e-13 + ArtUnc_11: -3.400051045086563e-13 + ArtUnc_12: -3.6520029181094834e-14 + ArtUnc_13: 7.1714396580652244e-12 + ArtUnc_14: -1.2279063899775683e-13 + ArtUnc_15: 5.068030375999428e-14 + ArtUnc_16: 1.814635154565131e-15 + ArtUnc_17: -2.5823036770884942e-12 + ArtUnc_18: 7.732364342860023e-14 + ArtUnc_19: 1.0368599030336335e-11 + ArtUnc_20: 2.537794841164756e-11 + ArtUnc_21: -1.8355254578712134e-12 + ArtUnc_22: 3.23052714866025e-10 + ArtUnc_23: 6.571649960662051e-12 + ArtUnc_24: -1.315256411252612e-10 + ArtUnc_25: -2.5802325607447383e-10 + ArtUnc_26: 5.448016000703067e-11 + ArtUnc_27: 9.181928486933075e-10 + ArtUnc_28: 4.266311332429477e-11 + ArtUnc_29: 2.121381067959539e-10 + ArtUnc_30: 1.2336925894313725e-10 + ArtUnc_31: -5.0572066259762264e-11 + ArtUnc_32: 1.9897910843142253e-09 + ArtUnc_33: -5.964743379366253e-13 + ArtUnc_34: -4.2291022066909204e-11 + ArtUnc_35: -6.372771500145227e-11 + ArtUnc_36: 8.992438540225526e-10 + ArtUnc_37: -2.823869184278453e-09 + ArtUnc_38: 5.029805408362752e-10 + ArtUnc_39: 3.7603353015553514e-09 + ArtUnc_40: -1.522549579025299e-11 + ArtUnc_41: -1.553079400463468e-08 + ArtUnc_42: 1.1200097112152992e-10 + ArtUnc_43: 3.320458370959093e-08 + ArtUnc_44: 1.612778691079218e-08 + ArtUnc_45: -1.9434751816654295e-10 + ArtUnc_46: 4.818719281818341e-09 + ArtUnc_47: -3.5936833342592e-10 + ArtUnc_48: -1.4452431492510908e-11 + ArtUnc_49: 1.156191469303947e-07 + ArtUnc_50: 3.095265809797049e-09 + ArtUnc_51: -1.990250058016618e-09 + ArtUnc_52: 1.0551540835680762e-09 + ArtUnc_53: 2.583986842251015e-11 + ArtUnc_54: -2.7359896160844426e-10 + ArtUnc_55: -1.714666851039895e-08 + ArtUnc_56: -9.346685172236354e-09 + ArtUnc_57: -2.2964573279275797e-09 + ArtUnc_58: -2.541050169654537e-08 + ArtUnc_59: 2.4527977931268276e-10 + ArtUnc_60: 4.26908642864609e-08 + ArtUnc_61: 1.0006795078580084e-10 + ArtUnc_62: -1.5073637832204924e-09 + ArtUnc_63: 3.8752541563071965e-11 + ArtUnc_64: -7.557892352678078e-08 + ArtUnc_65: -7.762771204776205e-09 + ArtUnc_66: 2.1676490443910404e-07 + ArtUnc_67: 3.088925173796808e-08 + ArtUnc_68: -3.7773234498553116e-08 + ArtUnc_69: -9.873502259301812e-09 + ArtUnc_70: 2.373128831845414e-07 + ArtUnc_71: 2.8574018820224212e-09 + ArtUnc_72: -7.728916750927325e-08 + ArtUnc_73: -1.8004829794967403e-08 + ArtUnc_74: 1.1896352758006183e-06 + ArtUnc_75: 2.2098648925167571e-07 + ArtUnc_76: 2.7860180711512064e-08 + ArtUnc_77: 7.187084774475774e-08 + ArtUnc_78: 2.2916415135354548e-06 + ArtUnc_79: -4.401578860181456e-06 + ArtUnc_80: 8.779094540533577e-08 + ArtUnc_81: -1.1345022521150932e-07 + ArtUnc_82: -1.1381576922669683e-08 + ArtUnc_83: 3.163933993362474e-07 + ArtUnc_84: -1.3329149678621743e-06 + ArtUnc_85: -2.135394470958957e-08 + ArtUnc_86: 5.592598844023283e-08 + ArtUnc_87: 1.0941707459513449e-07 + ArtUnc_88: 1.1376874495446983e-07 + ArtUnc_89: 2.6704569588183046e-06 + ArtUnc_90: -4.823102494690392e-07 + ArtUnc_91: 1.4649026332982186e-07 + ArtUnc_92: -8.784470317925978e-06 + ArtUnc_93: 3.280591100098844e-08 + ArtUnc_94: 1.8810024653809077e-07 + ArtUnc_95: -4.025966804622898e-07 + ArtUnc_96: -1.8317314419579824e-08 - stat: 0 Uncorr: 2.56e-07 RCES: 4.989882627878135e-07 @@ -3012,102 +3012,102 @@ bins: ModelRW_2: 2.735202166714555e-06 JES_1: 1.0283790367369417e-06 JES_2: 1.0283790367369417e-06 - ArtUnc_1: 2.3592717455278063e-20 - ArtUnc_2: -5.922629162227702e-18 - ArtUnc_3: -1.881943600015444e-17 - ArtUnc_4: 3.1581875786552915e-17 - ArtUnc_5: 1.5937575158089415e-18 - ArtUnc_6: 3.2893423568347272e-18 - ArtUnc_7: 1.2239723672629012e-15 - ArtUnc_8: -2.2074775992875465e-14 - ArtUnc_9: 6.704927997723987e-16 - ArtUnc_10: 2.769940885779498e-14 - ArtUnc_11: -5.873909050918547e-14 - ArtUnc_12: 4.6646760813590076e-15 - ArtUnc_13: 3.208249464110612e-14 - ArtUnc_14: -2.768336938859504e-15 - ArtUnc_15: 7.564761724867157e-15 - ArtUnc_16: -4.898938035446411e-16 - ArtUnc_17: -7.062103028399974e-15 - ArtUnc_18: -5.255133974819861e-16 - ArtUnc_19: -1.6363092567285706e-14 - ArtUnc_20: -2.3889846365697364e-13 - ArtUnc_21: 2.0807479149316982e-14 - ArtUnc_22: -5.297202828929652e-12 - ArtUnc_23: -1.9082778110477102e-13 - ArtUnc_24: 6.039201406219688e-12 - ArtUnc_25: 2.6715907554407336e-12 - ArtUnc_26: -2.796639331847442e-13 - ArtUnc_27: -1.9072862813521637e-11 - ArtUnc_28: 3.1805753313814845e-13 - ArtUnc_29: -2.342851279918988e-12 - ArtUnc_30: -2.1374606686935742e-13 - ArtUnc_31: -1.0815260613105309e-13 - ArtUnc_32: -1.96863975719e-11 - ArtUnc_33: 1.56368002495703e-14 - ArtUnc_34: 4.941397788678146e-12 - ArtUnc_35: -3.4343154224011755e-12 - ArtUnc_36: 4.797358782019336e-11 - ArtUnc_37: 5.773888609002955e-11 - ArtUnc_38: 9.251216849880243e-12 - ArtUnc_39: 6.909058451839528e-11 - ArtUnc_40: 1.692511740888848e-12 - ArtUnc_41: 3.7053698468621566e-10 - ArtUnc_42: -1.8553929057684222e-11 - ArtUnc_43: -4.846323282585256e-10 - ArtUnc_44: -3.327459492748151e-11 - ArtUnc_45: -7.597393140041539e-13 - ArtUnc_46: -6.897334913039593e-11 - ArtUnc_47: 1.5566079258685414e-10 - ArtUnc_48: 7.485089690148145e-12 - ArtUnc_49: 4.1862286539349234e-10 - ArtUnc_50: -6.302238876177875e-11 - ArtUnc_51: 9.65302787763233e-10 - ArtUnc_52: -5.721657990641889e-10 - ArtUnc_53: 2.4895736849703775e-11 - ArtUnc_54: 7.617696381166007e-11 - ArtUnc_55: -1.3478870594900175e-08 - ArtUnc_56: 1.2402321011990233e-08 - ArtUnc_57: 3.5571456105792596e-09 - ArtUnc_58: -2.5561509082484207e-08 - ArtUnc_59: -1.2383163719012923e-10 - ArtUnc_60: 3.2222219760102e-08 - ArtUnc_61: 5.225128803503071e-12 - ArtUnc_62: -8.974571982242052e-10 - ArtUnc_63: 9.44057460845764e-11 - ArtUnc_64: 2.4480318754976328e-08 - ArtUnc_65: 1.042472983640617e-09 - ArtUnc_66: 3.516679646392288e-08 - ArtUnc_67: 3.5298812203812566e-10 - ArtUnc_68: 1.9926689573872634e-09 - ArtUnc_69: 3.938321250106937e-10 - ArtUnc_70: -9.539111780809803e-09 - ArtUnc_71: -2.2666150732372423e-10 - ArtUnc_72: -4.3344959477670075e-08 - ArtUnc_73: -3.4399107786647648e-09 - ArtUnc_74: -3.766214542747313e-08 - ArtUnc_75: -8.85383302597457e-08 - ArtUnc_76: -5.078556975299819e-10 - ArtUnc_77: 2.6350754104581286e-09 - ArtUnc_78: -5.219583627352078e-08 - ArtUnc_79: -1.928632086792721e-07 - ArtUnc_80: 2.0279690969120902e-09 - ArtUnc_81: -7.292739062852815e-09 - ArtUnc_82: 5.17014190383794e-10 - ArtUnc_83: 2.2541666134291343e-08 - ArtUnc_84: 3.969306237175464e-08 - ArtUnc_85: -2.686872478207086e-06 - ArtUnc_86: 4.1414736198157015e-07 - ArtUnc_87: 7.862979078956051e-07 - ArtUnc_88: -4.4423448886376586e-08 - ArtUnc_89: 1.172101147051345e-08 - ArtUnc_90: -2.65116567570053e-07 - ArtUnc_91: -1.6784554078079344e-06 - ArtUnc_92: 1.550500835139886e-08 - ArtUnc_93: 1.9257018402597083e-08 - ArtUnc_94: 2.228125152342082e-08 - ArtUnc_95: -8.447286155149883e-07 - ArtUnc_96: -1.7506003847933813e-07 + ArtUnc_1: 2.35927203457836e-20 + ArtUnc_2: -5.922629161146333e-18 + ArtUnc_3: -1.8819435998532412e-17 + ArtUnc_4: 3.158187577786074e-17 + ArtUnc_5: 1.5937576017366522e-18 + ArtUnc_6: 3.289342185321362e-18 + ArtUnc_7: 1.2239723672715737e-15 + ArtUnc_8: -2.2074775992870183e-14 + ArtUnc_9: 6.704927999036726e-16 + ArtUnc_10: 2.7699408858070488e-14 + ArtUnc_11: -5.873909050903443e-14 + ArtUnc_12: -4.664676081797592e-15 + ArtUnc_13: -3.2082494641071664e-14 + ArtUnc_14: -2.7683369430503856e-15 + ArtUnc_15: 7.564761722243567e-15 + ArtUnc_16: -4.898938440266008e-16 + ArtUnc_17: -7.0621030270174545e-15 + ArtUnc_18: 5.255133824119982e-16 + ArtUnc_19: 1.636309256674278e-14 + ArtUnc_20: -2.388984636576834e-13 + ArtUnc_21: 2.0807479147216883e-14 + ArtUnc_22: -5.297202828927104e-12 + ArtUnc_23: -1.9082778121082117e-13 + ArtUnc_24: 6.039201406219987e-12 + ArtUnc_25: 2.6715907554250054e-12 + ArtUnc_26: -2.7966393291241113e-13 + ArtUnc_27: -1.9072862813516748e-11 + ArtUnc_28: -3.1805753329792926e-13 + ArtUnc_29: 2.342851279537203e-12 + ArtUnc_30: -2.1374606682004223e-13 + ArtUnc_31: 1.0815260616289436e-13 + ArtUnc_32: -1.9686397571900833e-11 + ArtUnc_33: -1.5636800167330968e-14 + ArtUnc_34: 4.9413977886084574e-12 + ArtUnc_35: 3.43431542246607e-12 + ArtUnc_36: -4.797358782039034e-11 + ArtUnc_37: 5.773888609003612e-11 + ArtUnc_38: -9.251216849801803e-12 + ArtUnc_39: -6.909058451839399e-11 + ArtUnc_40: 1.6925117406345058e-12 + ArtUnc_41: 3.7053698468647157e-10 + ArtUnc_42: 1.855392905824653e-11 + ArtUnc_43: -4.846323282584783e-10 + ArtUnc_44: -3.327459492762007e-11 + ArtUnc_45: 7.597393152306623e-13 + ArtUnc_46: -6.897334913058715e-11 + ArtUnc_47: 1.5566079258656675e-10 + ArtUnc_48: -7.485089687541113e-12 + ArtUnc_49: -4.1862286539354177e-10 + ArtUnc_50: 6.302238876174077e-11 + ArtUnc_51: -9.653027877636256e-10 + ArtUnc_52: 5.72165799063931e-10 + ArtUnc_53: -2.489573684983785e-11 + ArtUnc_54: -7.617696381330824e-11 + ArtUnc_55: -1.3478870594901272e-08 + ArtUnc_56: 1.2402321011988667e-08 + ArtUnc_57: 3.5571456105850805e-09 + ArtUnc_58: -2.556150908248414e-08 + ArtUnc_59: -1.2383163719166848e-10 + ArtUnc_60: -3.2222219760101495e-08 + ArtUnc_61: -5.2251288050979926e-12 + ArtUnc_62: -8.97457198223341e-10 + ArtUnc_63: 9.440574608420388e-11 + ArtUnc_64: -2.448031875497111e-08 + ArtUnc_65: 1.042472983643038e-09 + ArtUnc_66: -3.5166796463923804e-08 + ArtUnc_67: 3.52988122038554e-10 + ArtUnc_68: 1.992668957386929e-09 + ArtUnc_69: -3.938321250102191e-10 + ArtUnc_70: 9.539111780811317e-09 + ArtUnc_71: 2.266615073220808e-10 + ArtUnc_72: 4.3344959477670267e-08 + ArtUnc_73: 3.439910778665954e-09 + ArtUnc_74: 3.766214542747073e-08 + ArtUnc_75: -8.853833025974996e-08 + ArtUnc_76: -5.07855697525207e-10 + ArtUnc_77: 2.6350754104537003e-09 + ArtUnc_78: -5.219583627350703e-08 + ArtUnc_79: -1.9286320867927353e-07 + ArtUnc_80: 2.0279690969114773e-09 + ArtUnc_81: -7.292739062847744e-09 + ArtUnc_82: -5.170141903927744e-10 + ArtUnc_83: 2.2541666134281235e-08 + ArtUnc_84: -3.9693062371755816e-08 + ArtUnc_85: 2.686872478207075e-06 + ArtUnc_86: 4.141473619815568e-07 + ArtUnc_87: 7.862979078955503e-07 + ArtUnc_88: 1.1721011470516791e-08 + ArtUnc_89: 4.4423448886381265e-08 + ArtUnc_90: 2.651165675700547e-07 + ArtUnc_91: -1.6784554078079242e-06 + ArtUnc_92: -1.550500835139394e-08 + ArtUnc_93: 1.9257018402611466e-08 + ArtUnc_94: 2.2281251523428708e-08 + ArtUnc_95: -8.447286155149897e-07 + ArtUnc_96: -1.7506003847933434e-07 - stat: 0 Uncorr: 0.00041300000000000006 RCES: 0.0022392218629693665 @@ -3123,102 +3123,102 @@ bins: ModelRW_2: 0.0002131856234599322 JES_1: 0.001157803164332133 JES_2: 0.001157803164332133 - ArtUnc_1: -4.650512749510166e-09 - ArtUnc_2: 2.615040433829322e-07 - ArtUnc_3: 5.12557246908949e-07 - ArtUnc_4: 1.0849380135809137e-06 - ArtUnc_5: 7.030184434031912e-08 - ArtUnc_6: -6.666096450905855e-08 - ArtUnc_7: 8.926475091345058e-06 - ArtUnc_8: -3.752463903315616e-05 - ArtUnc_9: -4.525940513413942e-06 - ArtUnc_10: 3.1467905590806136e-05 - ArtUnc_11: -2.023314790240504e-05 - ArtUnc_12: -2.0219473189516724e-06 - ArtUnc_13: 4.0032878530944104e-05 - ArtUnc_14: 9.542902962029522e-06 - ArtUnc_15: -1.5817618089945143e-05 - ArtUnc_16: 5.069765305481629e-07 - ArtUnc_17: -1.08891559690467e-05 - ArtUnc_18: -7.854719394650325e-07 - ArtUnc_19: -2.3706046886005396e-05 - ArtUnc_20: -1.9083074205274192e-05 - ArtUnc_21: 4.747888848598477e-07 - ArtUnc_22: 0.0001673429516106384 - ArtUnc_23: 1.8956321121486008e-06 - ArtUnc_24: 0.00013912348563776817 - ArtUnc_25: 0.0001879940038701234 - ArtUnc_26: 3.117946243289524e-05 - ArtUnc_27: 0.00021123077073010452 - ArtUnc_28: -2.6931251017312914e-06 - ArtUnc_29: -0.0005732465940048247 - ArtUnc_30: 0.00012951670447790492 - ArtUnc_31: 5.3867864331504804e-05 - ArtUnc_32: -0.00022791727755530698 - ArtUnc_33: -2.3810441820842363e-07 - ArtUnc_34: -7.330782394984981e-06 - ArtUnc_35: 1.7685369090595978e-05 - ArtUnc_36: 2.472431294429736e-06 - ArtUnc_37: -1.4607163820264948e-05 - ArtUnc_38: -2.6176429082263394e-06 - ArtUnc_39: 6.607915967338179e-07 - ArtUnc_40: -5.1362874816019386e-08 - ArtUnc_41: 1.5135293048599682e-06 - ArtUnc_42: 3.930922079682163e-08 - ArtUnc_43: 1.304912887440288e-06 - ArtUnc_44: -7.960303951658007e-06 - ArtUnc_45: -5.351476142610959e-08 - ArtUnc_46: -3.500460120766551e-07 - ArtUnc_47: -2.6985309472054276e-07 - ArtUnc_48: -6.382660114581625e-09 - ArtUnc_49: -2.434139705635471e-06 - ArtUnc_50: -4.811695723307431e-07 - ArtUnc_51: -2.879156312046098e-08 - ArtUnc_52: -1.9332838629887088e-08 - ArtUnc_53: -5.698775424400125e-09 - ArtUnc_54: 1.2428319793268545e-08 - ArtUnc_55: 1.829936559843659e-08 - ArtUnc_56: -9.683602000647387e-10 - ArtUnc_57: -2.0089989751234485e-09 - ArtUnc_58: -4.093810632764918e-09 - ArtUnc_59: 7.913059982895017e-09 - ArtUnc_60: -6.358131181265117e-09 - ArtUnc_61: -3.316418941661967e-11 - ArtUnc_62: 4.826728173644871e-09 - ArtUnc_63: -5.171061553900622e-10 - ArtUnc_64: -3.349431848054753e-07 - ArtUnc_65: -1.1614407621022927e-08 - ArtUnc_66: 2.3340415670960243e-07 - ArtUnc_67: -4.714533807608359e-09 - ArtUnc_68: -5.125500757965474e-10 - ArtUnc_69: -2.568175920169571e-11 - ArtUnc_70: 4.617791891800068e-10 - ArtUnc_71: 1.7269565631121524e-11 - ArtUnc_72: 1.0426947546369062e-09 - ArtUnc_73: -1.3974946479046988e-10 - ArtUnc_74: 7.388353615943769e-11 - ArtUnc_75: 2.2023115713548736e-09 - ArtUnc_76: -3.2388756321363645e-11 - ArtUnc_77: 1.683694432077247e-10 - ArtUnc_78: -2.3319062783812886e-09 - ArtUnc_79: 6.984125752366835e-10 - ArtUnc_80: 2.421067285842708e-10 - ArtUnc_81: -1.064510427534945e-10 - ArtUnc_82: -9.551534802834587e-12 - ArtUnc_83: 4.2477216540959984e-11 - ArtUnc_84: -1.2581519448914072e-11 - ArtUnc_85: 2.8532031390087507e-13 - ArtUnc_86: -7.1550686481024196e-12 - ArtUnc_87: -8.385559175990136e-12 - ArtUnc_88: -6.684767466889214e-11 - ArtUnc_89: 9.054072666778e-12 - ArtUnc_90: -1.8249590088503793e-11 - ArtUnc_91: -1.376928279346296e-12 - ArtUnc_92: 2.0830196938468465e-10 - ArtUnc_93: 1.474440598941585e-11 - ArtUnc_94: 2.806228895777921e-12 - ArtUnc_95: -4.903718148236899e-11 - ArtUnc_96: 1.1351687655146475e-11 + ArtUnc_1: -4.650512749355942e-09 + ArtUnc_2: 2.6150404338355495e-07 + ArtUnc_3: 5.12557246908968e-07 + ArtUnc_4: 1.0849380135812087e-06 + ArtUnc_5: 7.030184433999337e-08 + ArtUnc_6: -6.666096450952222e-08 + ArtUnc_7: 8.926475091343498e-06 + ArtUnc_8: -3.752463903315676e-05 + ArtUnc_9: -4.525940513413666e-06 + ArtUnc_10: 3.1467905590806244e-05 + ArtUnc_11: -2.0233147902406997e-05 + ArtUnc_12: 2.021947318951445e-06 + ArtUnc_13: -4.003287853094295e-05 + ArtUnc_14: 9.54290296203011e-06 + ArtUnc_15: -1.5817618089945295e-05 + ArtUnc_16: 5.069765305450733e-07 + ArtUnc_17: -1.0889155969046879e-05 + ArtUnc_18: 7.854719394652192e-07 + ArtUnc_19: 2.3706046886005644e-05 + ArtUnc_20: -1.9083074205274243e-05 + ArtUnc_21: 4.747888848597217e-07 + ArtUnc_22: 0.00016734295161063723 + ArtUnc_23: 1.8956321121513973e-06 + ArtUnc_24: 0.0001391234856377672 + ArtUnc_25: 0.00018799400387012392 + ArtUnc_26: 3.117946243289525e-05 + ArtUnc_27: 0.00021123077073010498 + ArtUnc_28: 2.693125101744767e-06 + ArtUnc_29: 0.0005732465940048262 + ArtUnc_30: 0.00012951670447777832 + ArtUnc_31: -5.386786433193626e-05 + ArtUnc_32: -0.0002279172775553063 + ArtUnc_33: 2.3810441821111926e-07 + ArtUnc_34: -7.330782394982886e-06 + ArtUnc_35: -1.7685369090595917e-05 + ArtUnc_36: -2.4724312944298536e-06 + ArtUnc_37: -1.4607163820264878e-05 + ArtUnc_38: 2.6176429082255432e-06 + ArtUnc_39: -6.607915967338914e-07 + ArtUnc_40: -5.1362874816051534e-08 + ArtUnc_41: 1.5135293048599083e-06 + ArtUnc_42: -3.930922079681527e-08 + ArtUnc_43: 1.3049128874402319e-06 + ArtUnc_44: -7.96030395165809e-06 + ArtUnc_45: 5.351476142624853e-08 + ArtUnc_46: -3.500460120766658e-07 + ArtUnc_47: -2.698530947205398e-07 + ArtUnc_48: 6.382660114578908e-09 + ArtUnc_49: 2.4341397056357427e-06 + ArtUnc_50: 4.81169572330774e-07 + ArtUnc_51: 2.879156312045966e-08 + ArtUnc_52: 1.933283862988446e-08 + ArtUnc_53: 5.698775424400118e-09 + ArtUnc_54: -1.2428319793269074e-08 + ArtUnc_55: 1.8299365598447446e-08 + ArtUnc_56: -9.683602000634305e-10 + ArtUnc_57: -2.008998975123179e-09 + ArtUnc_58: -4.09381063276111e-09 + ArtUnc_59: 7.913059982895237e-09 + ArtUnc_60: 6.358131181272643e-09 + ArtUnc_61: 3.316418941539378e-11 + ArtUnc_62: 4.826728173643972e-09 + ArtUnc_63: -5.171061553907083e-10 + ArtUnc_64: 3.34943184805511e-07 + ArtUnc_65: -1.1614407621026812e-08 + ArtUnc_66: -2.3340415670957435e-07 + ArtUnc_67: -4.714533807607662e-09 + ArtUnc_68: -5.125500757971282e-10 + ArtUnc_69: 2.5681759201689222e-11 + ArtUnc_70: -4.617791891797858e-10 + ArtUnc_71: -1.726956563111836e-11 + ArtUnc_72: -1.0426947546361144e-09 + ArtUnc_73: 1.3974946479052858e-10 + ArtUnc_74: -7.388353615932547e-11 + ArtUnc_75: 2.2023115713533785e-09 + ArtUnc_76: -3.238875632136181e-11 + ArtUnc_77: 1.683694432077045e-10 + ArtUnc_78: -2.3319062783790383e-09 + ArtUnc_79: 6.984125752352948e-10 + ArtUnc_80: 2.4210672858428407e-10 + ArtUnc_81: -1.0645104275344316e-10 + ArtUnc_82: 9.551534802832154e-12 + ArtUnc_83: 4.247721654093233e-11 + ArtUnc_84: 1.2581519448969144e-11 + ArtUnc_85: -2.853203139020557e-13 + ArtUnc_86: -7.1550686480950606e-12 + ArtUnc_87: -8.385559175981213e-12 + ArtUnc_88: 9.054072666771776e-12 + ArtUnc_89: 6.684767466884986e-11 + ArtUnc_90: 1.8249590088465067e-11 + ArtUnc_91: -1.3769282793509156e-12 + ArtUnc_92: -2.0830196938451975e-10 + ArtUnc_93: 1.474440598941191e-11 + ArtUnc_94: 2.8062288957760026e-12 + ArtUnc_95: -4.9037181482300245e-11 + ArtUnc_96: 1.1351687655157902e-11 - stat: 0 Uncorr: 0.000299 RCES: 0.0002832581198747884 @@ -3234,102 +3234,102 @@ bins: ModelRW_2: 0.0003974788638405821 JES_1: 0.00027576773403989815 JES_2: 0.00027576773403989815 - ArtUnc_1: 5.471569995891646e-10 - ArtUnc_2: -2.1548459534169628e-08 - ArtUnc_3: 1.6107173820232725e-09 - ArtUnc_4: 1.8790643118297607e-07 - ArtUnc_5: 1.050117042570297e-09 - ArtUnc_6: 1.4980021086587036e-08 - ArtUnc_7: 1.0716030983490844e-06 - ArtUnc_8: -5.852027745173473e-06 - ArtUnc_9: 7.491192402189114e-07 - ArtUnc_10: -8.052950538933017e-08 - ArtUnc_11: -5.7252344852199985e-06 - ArtUnc_12: 9.685501549657312e-07 - ArtUnc_13: 1.3424257850249387e-06 - ArtUnc_14: -9.956049613005863e-07 - ArtUnc_15: 5.297725506633483e-07 - ArtUnc_16: 1.673837768454332e-08 - ArtUnc_17: -3.582507838236449e-07 - ArtUnc_18: 1.2647274373508488e-08 - ArtUnc_19: -1.2336629966632117e-06 - ArtUnc_20: 8.403154663433771e-07 - ArtUnc_21: 6.791298681435195e-07 - ArtUnc_22: -1.776150220884706e-06 - ArtUnc_23: -4.784905450234038e-07 - ArtUnc_24: -5.1696968831452726e-06 - ArtUnc_25: 2.821350325782999e-05 - ArtUnc_26: -6.758352126525412e-06 - ArtUnc_27: -1.948245245698466e-05 - ArtUnc_28: 1.8615587928714592e-07 - ArtUnc_29: -4.9400028648362785e-06 - ArtUnc_30: 2.5959751638211684e-06 - ArtUnc_31: 1.0763248007906184e-06 - ArtUnc_32: -3.287425978178637e-05 - ArtUnc_33: 3.2994683073729474e-08 - ArtUnc_34: -1.234940266205477e-06 - ArtUnc_35: 6.191515490196092e-06 - ArtUnc_36: 2.7249485883068733e-06 - ArtUnc_37: -5.989822561698192e-05 - ArtUnc_38: -1.0403639627465775e-05 - ArtUnc_39: -7.720196274664049e-05 - ArtUnc_40: 1.5220534773968058e-06 - ArtUnc_41: 1.709379278867283e-05 - ArtUnc_42: -8.11450519569054e-07 - ArtUnc_43: -1.3715268834483381e-05 - ArtUnc_44: 0.0002462097444531081 - ArtUnc_45: 1.2730256982183371e-06 - ArtUnc_46: 1.1643913116449376e-05 - ArtUnc_47: 1.629978914010714e-06 - ArtUnc_48: 2.280929511647473e-07 - ArtUnc_49: 3.6345767126120526e-05 - ArtUnc_50: 2.4422571255477306e-06 - ArtUnc_51: 6.822122723980482e-08 - ArtUnc_52: -5.976234737191764e-08 - ArtUnc_53: 1.8446310222817315e-08 - ArtUnc_54: -2.4751852109218752e-08 - ArtUnc_55: 1.131003801326065e-06 - ArtUnc_56: 1.0759820264169869e-06 - ArtUnc_57: 3.0780950207663535e-07 - ArtUnc_58: 6.812023712735954e-07 - ArtUnc_59: -7.960672216214537e-09 - ArtUnc_60: 5.267916630689111e-07 - ArtUnc_61: 3.39970164677748e-10 - ArtUnc_62: -6.665603912810152e-09 - ArtUnc_63: 7.138800656329359e-10 - ArtUnc_64: 2.477585785184677e-06 - ArtUnc_65: 3.6242879105329454e-08 - ArtUnc_66: -1.838464013018305e-06 - ArtUnc_67: 2.718142424691705e-08 - ArtUnc_68: -2.8193276372483382e-08 - ArtUnc_69: 5.427607805245182e-10 - ArtUnc_70: -3.084661349746725e-09 - ArtUnc_71: 5.447159219783033e-11 - ArtUnc_72: 2.1302205731501905e-08 - ArtUnc_73: 8.47153107572282e-10 - ArtUnc_74: 1.1628840669622708e-08 - ArtUnc_75: 1.7170116614497963e-08 - ArtUnc_76: -2.3415368954742075e-10 - ArtUnc_77: -2.7783117168968716e-10 - ArtUnc_78: 3.2602119554402305e-08 - ArtUnc_79: 1.0463517159940953e-08 - ArtUnc_80: -3.450248147908858e-10 - ArtUnc_81: 7.482156465457027e-10 - ArtUnc_82: -3.8370527796877e-11 - ArtUnc_83: -3.2471216627324176e-11 - ArtUnc_84: 1.4283148435102442e-09 - ArtUnc_85: -2.316766223558353e-11 - ArtUnc_86: 6.903485286948077e-11 - ArtUnc_87: 6.463824938402307e-11 - ArtUnc_88: -3.636593406602767e-10 - ArtUnc_89: 6.413357358594171e-12 - ArtUnc_90: 2.5940032189819596e-10 - ArtUnc_91: 6.457000917867735e-11 - ArtUnc_92: -1.2350529808453373e-09 - ArtUnc_93: -1.151435439702523e-11 - ArtUnc_94: -3.215014335109707e-11 - ArtUnc_95: -9.74700949230058e-11 - ArtUnc_96: -6.133126016763498e-11 + ArtUnc_1: 5.471569996118318e-10 + ArtUnc_2: -2.1548459534153544e-08 + ArtUnc_3: 1.6107173820174696e-09 + ArtUnc_4: 1.879064311830434e-07 + ArtUnc_5: 1.050117042374516e-09 + ArtUnc_6: 1.4980021086434547e-08 + ArtUnc_7: 1.0716030983489342e-06 + ArtUnc_8: -5.8520277451735335e-06 + ArtUnc_9: 7.491192402186086e-07 + ArtUnc_10: -8.052950538988503e-08 + ArtUnc_11: -5.725234485220118e-06 + ArtUnc_12: -9.685501549661442e-07 + ArtUnc_13: -1.3424257850248628e-06 + ArtUnc_14: -9.956049613002278e-07 + ArtUnc_15: 5.29772550663397e-07 + ArtUnc_16: 1.6738377684272918e-08 + ArtUnc_17: -3.582507838237691e-07 + ArtUnc_18: -1.264727437334715e-08 + ArtUnc_19: 1.233662996663388e-06 + ArtUnc_20: 8.403154663435293e-07 + ArtUnc_21: 6.79129868143396e-07 + ArtUnc_22: -1.776150220884529e-06 + ArtUnc_23: -4.784905450229317e-07 + ArtUnc_24: -5.169696883145389e-06 + ArtUnc_25: 2.8213503257829692e-05 + ArtUnc_26: -6.758352126525302e-06 + ArtUnc_27: -1.9482452456984413e-05 + ArtUnc_28: -1.8615587928710915e-07 + ArtUnc_29: 4.94000286483612e-06 + ArtUnc_30: 2.595975163818299e-06 + ArtUnc_31: -1.076324800799102e-06 + ArtUnc_32: -3.2874259781786615e-05 + ArtUnc_33: -3.299468307382029e-08 + ArtUnc_34: -1.2349402662050923e-06 + ArtUnc_35: -6.191515490195612e-06 + ArtUnc_36: -2.7249485883079676e-06 + ArtUnc_37: -5.989822561698278e-05 + ArtUnc_38: 1.040363962746263e-05 + ArtUnc_39: 7.720196274664037e-05 + ArtUnc_40: 1.5220534773987657e-06 + ArtUnc_41: 1.70937927886724e-05 + ArtUnc_42: 8.114505195690131e-07 + ArtUnc_43: -1.371526883447847e-05 + ArtUnc_44: 0.00024620974445310794 + ArtUnc_45: -1.2730256982223254e-06 + ArtUnc_46: 1.1643913116449547e-05 + ArtUnc_47: 1.6299789140107506e-06 + ArtUnc_48: -2.2809295116473704e-07 + ArtUnc_49: -3.634576712612296e-05 + ArtUnc_50: -2.4422571255481782e-06 + ArtUnc_51: -6.822122723981085e-08 + ArtUnc_52: 5.976234737191589e-08 + ArtUnc_53: -1.8446310222813494e-08 + ArtUnc_54: 2.4751852109216145e-08 + ArtUnc_55: 1.1310038013260833e-06 + ArtUnc_56: 1.0759820264168969e-06 + ArtUnc_57: 3.0780950207694145e-07 + ArtUnc_58: 6.812023712735847e-07 + ArtUnc_59: -7.960672216219715e-09 + ArtUnc_60: -5.267916630689513e-07 + ArtUnc_61: -3.399701646687149e-10 + ArtUnc_62: -6.6656039128050465e-09 + ArtUnc_63: 7.138800656368192e-10 + ArtUnc_64: -2.4775857851850117e-06 + ArtUnc_65: 3.624287910535524e-08 + ArtUnc_66: 1.8384640130182134e-06 + ArtUnc_67: 2.7181424246913548e-08 + ArtUnc_68: -2.8193276372482016e-08 + ArtUnc_69: -5.42760780524532e-10 + ArtUnc_70: 3.0846613497465428e-09 + ArtUnc_71: -5.4471592197849197e-11 + ArtUnc_72: -2.1302205731503017e-08 + ArtUnc_73: -8.471531075724741e-10 + ArtUnc_74: -1.1628840669622942e-08 + ArtUnc_75: 1.7170116614500534e-08 + ArtUnc_76: -2.341536895472736e-10 + ArtUnc_77: -2.7783117168958113e-10 + ArtUnc_78: 3.260211955439682e-08 + ArtUnc_79: 1.046351715994512e-08 + ArtUnc_80: -3.450248147908177e-10 + ArtUnc_81: 7.482156465457119e-10 + ArtUnc_82: 3.8370527796884825e-11 + ArtUnc_83: -3.247121662728555e-11 + ArtUnc_84: -1.4283148435103424e-09 + ArtUnc_85: 2.3167662235587087e-11 + ArtUnc_86: 6.903485286946707e-11 + ArtUnc_87: 6.463824938400358e-11 + ArtUnc_88: 6.4133573585991416e-12 + ArtUnc_89: 3.6365934066034854e-10 + ArtUnc_90: -2.5940032189813645e-10 + ArtUnc_91: 6.457000917868311e-11 + ArtUnc_92: 1.2350529808450879e-09 + ArtUnc_93: -1.151435439701838e-11 + ArtUnc_94: -3.2150143351094645e-11 + ArtUnc_95: -9.747009492310879e-11 + ArtUnc_96: -6.133126016765184e-11 - stat: 0 Uncorr: 7.62e-05 RCES: 4.153424278833069e-05 @@ -3345,102 +3345,102 @@ bins: ModelRW_2: 0.00023222942329084828 JES_1: 0.00017940913365127205 JES_2: 0.00017940913365127205 - ArtUnc_1: 3.725748441855142e-13 - ArtUnc_2: -5.576213415696871e-11 - ArtUnc_3: -1.8792997287418968e-10 - ArtUnc_4: -4.5867840932795444e-10 - ArtUnc_5: -1.4436446728744216e-11 - ArtUnc_6: 1.8673969063588274e-11 - ArtUnc_7: -2.304809777235498e-09 - ArtUnc_8: 7.845765890469632e-10 - ArtUnc_9: 1.977290840880951e-09 - ArtUnc_10: -1.1619921967808012e-08 - ArtUnc_11: -3.3435052190755636e-09 - ArtUnc_12: 1.8580739693610029e-09 - ArtUnc_13: -6.89347051218557e-08 - ArtUnc_14: -8.552736714386387e-09 - ArtUnc_15: 1.5846804640892226e-08 - ArtUnc_16: -4.681586314223856e-10 - ArtUnc_17: 2.5773570618027182e-08 - ArtUnc_18: 1.388346765828633e-09 - ArtUnc_19: 1.0772612664036784e-07 - ArtUnc_20: 9.127921594960896e-08 - ArtUnc_21: -6.69780382922057e-11 - ArtUnc_22: -1.1270512654928677e-07 - ArtUnc_23: -1.3323411868686961e-09 - ArtUnc_24: -1.5556328301045476e-06 - ArtUnc_25: 7.606353978765809e-07 - ArtUnc_26: -3.851083482718733e-07 - ArtUnc_27: -1.452548473409936e-06 - ArtUnc_28: 5.088505297563495e-08 - ArtUnc_29: 1.6117205402691302e-06 - ArtUnc_30: -4.113354807336254e-07 - ArtUnc_31: -1.6983994409327336e-07 - ArtUnc_32: 1.6892305922853991e-06 - ArtUnc_33: 1.457067663137859e-10 - ArtUnc_34: 8.989143287514196e-08 - ArtUnc_35: 8.88695551904404e-08 - ArtUnc_36: 7.181782097801695e-07 - ArtUnc_37: -2.077812503773524e-06 - ArtUnc_38: -3.6391782595324245e-07 - ArtUnc_39: -2.7286713820165273e-06 - ArtUnc_40: 5.455195979654707e-08 - ArtUnc_41: 7.549069678202049e-06 - ArtUnc_42: -7.453588459542621e-08 - ArtUnc_43: -1.1101608282611443e-05 - ArtUnc_44: 2.0012574636198835e-06 - ArtUnc_45: 2.7433672163776266e-08 - ArtUnc_46: -9.517229932449512e-07 - ArtUnc_47: 5.589666364913685e-07 - ArtUnc_48: 2.4944416287925542e-08 - ArtUnc_49: 2.347177907621526e-05 - ArtUnc_50: 1.4282041253315672e-06 - ArtUnc_51: -4.788002977744846e-07 - ArtUnc_52: -8.903094382817606e-07 - ArtUnc_53: 1.2459460515367121e-07 - ArtUnc_54: -8.14925320565125e-08 - ArtUnc_55: 1.2594223585420613e-05 - ArtUnc_56: 1.4274865327026748e-05 - ArtUnc_57: 4.174072422600962e-06 - ArtUnc_58: 2.2303548443451325e-05 - ArtUnc_59: -2.1908097420859265e-07 - ArtUnc_60: 1.891093455120236e-05 - ArtUnc_61: 1.094479673948385e-08 - ArtUnc_62: -6.893892056162117e-08 - ArtUnc_63: 5.823766977123618e-09 - ArtUnc_64: -5.6603262292214214e-05 - ArtUnc_65: -8.015406273532788e-07 - ArtUnc_66: 3.9683471410176716e-05 - ArtUnc_67: -5.263076671627705e-07 - ArtUnc_68: 3.5855468780186174e-07 - ArtUnc_69: -1.0173186218329567e-08 - ArtUnc_70: 1.229531766027621e-07 - ArtUnc_71: 2.479331417189453e-09 - ArtUnc_72: 6.571712548162449e-07 - ArtUnc_73: 4.7783870276873866e-08 - ArtUnc_74: 1.0059102231087426e-07 - ArtUnc_75: 8.417761885970783e-07 - ArtUnc_76: 8.396096597470064e-09 - ArtUnc_77: 7.42300544961137e-09 - ArtUnc_78: -1.1325365974717505e-07 - ArtUnc_79: -4.23188220554539e-08 - ArtUnc_80: 6.129071591428982e-09 - ArtUnc_81: -9.456587992687703e-09 - ArtUnc_82: 1.5188352334209478e-10 - ArtUnc_83: 5.014588526357882e-09 - ArtUnc_84: 1.1798190978593119e-08 - ArtUnc_85: 2.631729931569993e-10 - ArtUnc_86: 1.924573846872015e-11 - ArtUnc_87: 2.593975753501807e-10 - ArtUnc_88: -2.02771483831625e-08 - ArtUnc_89: 1.2062301518549229e-09 - ArtUnc_90: 3.017083083839918e-09 - ArtUnc_91: -1.0921148670095773e-09 - ArtUnc_92: 2.351887988494077e-08 - ArtUnc_93: 4.3944548208900017e-10 - ArtUnc_94: 3.733027150779105e-10 - ArtUnc_95: -3.2961109082648946e-09 - ArtUnc_96: 4.3659842526255104e-11 + ArtUnc_1: 3.72574843754151e-13 + ArtUnc_2: -5.5762134156865614e-11 + ArtUnc_3: -1.8792997287274888e-10 + ArtUnc_4: -4.5867840932993047e-10 + ArtUnc_5: -1.4436446732121365e-11 + ArtUnc_6: 1.867396902546295e-11 + ArtUnc_7: -2.3048097772345663e-09 + ArtUnc_8: 7.845765890473015e-10 + ArtUnc_9: 1.977290840908495e-09 + ArtUnc_10: -1.1619921967779412e-08 + ArtUnc_11: -3.343505219064145e-09 + ArtUnc_12: -1.858073969329258e-09 + ArtUnc_13: 6.893470512185661e-08 + ArtUnc_14: -8.552736714474256e-09 + ArtUnc_15: 1.584680464086288e-08 + ArtUnc_16: -4.681586319467342e-10 + ArtUnc_17: 2.577357061816638e-08 + ArtUnc_18: -1.3883467658975774e-09 + ArtUnc_19: -1.0772612664045383e-07 + ArtUnc_20: 9.127921594949682e-08 + ArtUnc_21: -6.69780382479327e-11 + ArtUnc_22: -1.1270512654920153e-07 + ArtUnc_23: -1.33234118677314e-09 + ArtUnc_24: -1.555632830104435e-06 + ArtUnc_25: 7.606353978765029e-07 + ArtUnc_26: -3.851083482718545e-07 + ArtUnc_27: -1.4525484734098774e-06 + ArtUnc_28: -5.0885052975844806e-08 + ArtUnc_29: -1.61172054026889e-06 + ArtUnc_30: -4.1133548073345233e-07 + ArtUnc_31: 1.6983994409471313e-07 + ArtUnc_32: 1.6892305922854216e-06 + ArtUnc_33: -1.457067664224312e-10 + ArtUnc_34: 8.989143287517297e-08 + ArtUnc_35: -8.88695551901891e-08 + ArtUnc_36: -7.18178209779854e-07 + ArtUnc_37: -2.0778125037738755e-06 + ArtUnc_38: 3.6391782595336935e-07 + ArtUnc_39: 2.7286713820166425e-06 + ArtUnc_40: 5.455195979650584e-08 + ArtUnc_41: 7.549069678202054e-06 + ArtUnc_42: 7.453588459557469e-08 + ArtUnc_43: -1.1101608282611014e-05 + ArtUnc_44: 2.001257463619583e-06 + ArtUnc_45: -2.7433672163892875e-08 + ArtUnc_46: -9.517229932447282e-07 + ArtUnc_47: 5.589666364914897e-07 + ArtUnc_48: -2.4944416287900184e-08 + ArtUnc_49: -2.347177907621313e-05 + ArtUnc_50: -1.4282041253317663e-06 + ArtUnc_51: 4.788002977745001e-07 + ArtUnc_52: 8.903094382816588e-07 + ArtUnc_53: -1.2459460515372746e-07 + ArtUnc_54: 8.14925320564319e-08 + ArtUnc_55: 1.2594223585421794e-05 + ArtUnc_56: 1.4274865327025676e-05 + ArtUnc_57: 4.174072422605024e-06 + ArtUnc_58: 2.230354844345179e-05 + ArtUnc_59: -2.190809742086046e-07 + ArtUnc_60: -1.8910934551201536e-05 + ArtUnc_61: -1.094479673965532e-08 + ArtUnc_62: -6.893892056174763e-08 + ArtUnc_63: 5.82376697707184e-09 + ArtUnc_64: 5.660326229221998e-05 + ArtUnc_65: -8.015406273538802e-07 + ArtUnc_66: -3.968347141017291e-05 + ArtUnc_67: -5.263076671626725e-07 + ArtUnc_68: 3.5855468780181044e-07 + ArtUnc_69: 1.0173186218331753e-08 + ArtUnc_70: -1.2295317660275172e-07 + ArtUnc_71: -2.4793314171900886e-09 + ArtUnc_72: -6.571712548162341e-07 + ArtUnc_73: -4.7783870276875176e-08 + ArtUnc_74: -1.005910223108769e-07 + ArtUnc_75: 8.417761885970648e-07 + ArtUnc_76: 8.396096597475887e-09 + ArtUnc_77: 7.423005449611018e-09 + ArtUnc_78: -1.1325365974715549e-07 + ArtUnc_79: -4.231882205546767e-08 + ArtUnc_80: 6.129071591428702e-09 + ArtUnc_81: -9.456587992687747e-09 + ArtUnc_82: -1.5188352334206963e-10 + ArtUnc_83: 5.014588526357662e-09 + ArtUnc_84: -1.1798190978592541e-08 + ArtUnc_85: -2.631729931570385e-10 + ArtUnc_86: 1.9245738468918398e-11 + ArtUnc_87: 2.5939757535041884e-10 + ArtUnc_88: 1.2062301518547448e-09 + ArtUnc_89: 2.027714838316177e-08 + ArtUnc_90: -3.0170830838406754e-09 + ArtUnc_91: -1.0921148670096631e-09 + ArtUnc_92: -2.351887988493733e-08 + ArtUnc_93: 4.3944548208894744e-10 + ArtUnc_94: 3.7330271507787496e-10 + ArtUnc_95: -3.296110908263646e-09 + ArtUnc_96: 4.3659842526486204e-11 - stat: 0 Uncorr: 1.3899999999999999e-05 RCES: 1.4178e-05 @@ -3456,102 +3456,102 @@ bins: ModelRW_2: 3.371273000663102e-05 JES_1: 4.926574550841588e-05 JES_2: 4.926574550841588e-05 - ArtUnc_1: -5.2414622595776756e-15 - ArtUnc_2: 8.207592964731506e-13 - ArtUnc_3: 3.847729041684691e-12 - ArtUnc_4: 1.3792222266566074e-11 - ArtUnc_5: 5.052176641875075e-13 - ArtUnc_6: 2.2494956915663803e-14 - ArtUnc_7: 6.265328750309182e-11 - ArtUnc_8: -2.3772774781838074e-10 - ArtUnc_9: -3.1675878965401614e-12 - ArtUnc_10: -9.980068575842941e-12 - ArtUnc_11: 8.486503372810134e-11 - ArtUnc_12: -1.4472528444016473e-11 - ArtUnc_13: -1.9485505226518077e-10 - ArtUnc_14: 1.3385041147094832e-11 - ArtUnc_15: 1.2777939883775687e-11 - ArtUnc_16: -1.4594415085541144e-12 - ArtUnc_17: -7.622530131599248e-12 - ArtUnc_18: 3.3382253915144836e-13 - ArtUnc_19: -4.174449188947476e-10 - ArtUnc_20: -1.458526363043474e-10 - ArtUnc_21: -1.218326399980731e-10 - ArtUnc_22: 2.9701427574704487e-09 - ArtUnc_23: 2.22998549042183e-10 - ArtUnc_24: 7.119878894201229e-10 - ArtUnc_25: -4.049074824714188e-09 - ArtUnc_26: 1.3627773034302058e-09 - ArtUnc_27: 7.095862095535974e-09 - ArtUnc_28: 5.718772664967846e-10 - ArtUnc_29: 3.751773345446773e-09 - ArtUnc_30: -2.9515041503971795e-09 - ArtUnc_31: -1.1378459994761584e-09 - ArtUnc_32: 2.1546215977208857e-08 - ArtUnc_33: 2.5580061046276632e-11 - ArtUnc_34: -7.500012142836068e-10 - ArtUnc_35: 8.728016111697142e-09 - ArtUnc_36: -1.4591722382617339e-08 - ArtUnc_37: -1.5180310001887535e-07 - ArtUnc_38: -2.9087276501936008e-08 - ArtUnc_39: -2.4003660755313586e-07 - ArtUnc_40: 3.6335764936337553e-09 - ArtUnc_41: -1.7897560141452676e-07 - ArtUnc_42: -3.862399379321751e-09 - ArtUnc_43: 3.891403788701698e-07 - ArtUnc_44: -3.012756355155686e-07 - ArtUnc_45: -2.2701893787055546e-10 - ArtUnc_46: 3.0437265445985966e-08 - ArtUnc_47: -6.821619111218156e-08 - ArtUnc_48: -5.213033624738738e-09 - ArtUnc_49: -7.909571133749282e-07 - ArtUnc_50: 4.000696485550032e-09 - ArtUnc_51: -1.224471599566261e-07 - ArtUnc_52: 2.3873887600907556e-08 - ArtUnc_53: 1.3473575118941014e-08 - ArtUnc_54: -2.9872328342732867e-08 - ArtUnc_55: -1.5813190610402345e-06 - ArtUnc_56: 1.933241606756727e-06 - ArtUnc_57: 4.6978450337945344e-07 - ArtUnc_58: -3.3089357511885516e-06 - ArtUnc_59: 1.8756063896370004e-07 - ArtUnc_60: 3.631987023923681e-06 - ArtUnc_61: -8.974999862879568e-09 - ArtUnc_62: -3.21002633898529e-07 - ArtUnc_63: 3.687766345572266e-08 - ArtUnc_64: 7.773053107357186e-06 - ArtUnc_65: 6.97788139850965e-07 - ArtUnc_66: 8.346360521631023e-06 - ArtUnc_67: -3.417827012533438e-07 - ArtUnc_68: -4.1262878647269415e-07 - ArtUnc_69: -3.535170070934319e-09 - ArtUnc_70: 4.836847420599936e-07 - ArtUnc_71: 2.5243277693487462e-08 - ArtUnc_72: 5.7731325918633595e-06 - ArtUnc_73: 4.6811126185050636e-07 - ArtUnc_74: 1.5770399135300984e-06 - ArtUnc_75: 9.869174798919056e-06 - ArtUnc_76: 7.128038724571136e-08 - ArtUnc_77: -3.145401141298582e-08 - ArtUnc_78: 1.889171597787733e-05 - ArtUnc_79: 1.3499821119504489e-05 - ArtUnc_80: -7.1259305525188e-08 - ArtUnc_81: 4.948333753718327e-07 - ArtUnc_82: -3.5235174352896035e-08 - ArtUnc_83: -5.926496319976261e-08 - ArtUnc_84: 1.4452008476414846e-07 - ArtUnc_85: -1.5083206448382862e-08 - ArtUnc_86: 4.377923905507403e-09 - ArtUnc_87: 5.063614671792069e-09 - ArtUnc_88: -2.873263317578972e-07 - ArtUnc_89: 6.74573155948979e-09 - ArtUnc_90: 9.439684959933751e-08 - ArtUnc_91: -2.3971753920996644e-08 - ArtUnc_92: 4.2682329227800776e-08 - ArtUnc_93: 1.5311556383350169e-09 - ArtUnc_94: -4.599464050392651e-10 - ArtUnc_95: -1.9906259590400175e-08 - ArtUnc_96: 2.3216321592755967e-09 + ArtUnc_1: -5.241462259945504e-15 + ArtUnc_2: 8.207592964730536e-13 + ArtUnc_3: 3.847729041683561e-12 + ArtUnc_4: 1.3792222266569431e-11 + ArtUnc_5: 5.052176641803228e-13 + ArtUnc_6: 2.249495667603643e-14 + ArtUnc_7: 6.265328750309011e-11 + ArtUnc_8: -2.377277478183806e-10 + ArtUnc_9: -3.167587896563486e-12 + ArtUnc_10: -9.980068575788724e-12 + ArtUnc_11: 8.486503372824655e-11 + ArtUnc_12: 1.4472528442572177e-11 + ArtUnc_13: 1.9485505226517446e-10 + ArtUnc_14: 1.3385041148049875e-11 + ArtUnc_15: 1.2777939886617276e-11 + ArtUnc_16: -1.4594414874811343e-12 + ArtUnc_17: -7.622530132064897e-12 + ArtUnc_18: -3.3382254149254044e-13 + ArtUnc_19: 4.1744491889578663e-10 + ArtUnc_20: -1.458526363026746e-10 + ArtUnc_21: -1.2183263999339942e-10 + ArtUnc_22: 2.970142757468545e-09 + ArtUnc_23: 2.2299854903822662e-10 + ArtUnc_24: 7.119878894173299e-10 + ArtUnc_25: -4.04907482471203e-09 + ArtUnc_26: 1.362777303429574e-09 + ArtUnc_27: 7.095862095533802e-09 + ArtUnc_28: -5.718772664874926e-10 + ArtUnc_29: -3.751773345438866e-09 + ArtUnc_30: -2.9515041503778913e-09 + ArtUnc_31: 1.1378459995070667e-09 + ArtUnc_32: 2.1546215977208804e-08 + ArtUnc_33: -2.5580061091301333e-11 + ArtUnc_34: -7.500012142866035e-10 + ArtUnc_35: -8.728016111705376e-09 + ArtUnc_36: 1.4591722382626946e-08 + ArtUnc_37: -1.5180310001887374e-07 + ArtUnc_38: 2.908727650187965e-08 + ArtUnc_39: 2.400366075531249e-07 + ArtUnc_40: 3.6335764936557314e-09 + ArtUnc_41: -1.7897560141455276e-07 + ArtUnc_42: 3.862399379342501e-09 + ArtUnc_43: 3.891403788701593e-07 + ArtUnc_44: -3.012756355155561e-07 + ArtUnc_45: 2.2701893778899755e-10 + ArtUnc_46: 3.043726544595362e-08 + ArtUnc_47: -6.82161911121795e-08 + ArtUnc_48: 5.213033624694447e-09 + ArtUnc_49: 7.909571133748741e-07 + ArtUnc_50: -4.000696485508816e-09 + ArtUnc_51: 1.2244715995664577e-07 + ArtUnc_52: -2.387388760086234e-08 + ArtUnc_53: -1.3473575118922905e-08 + ArtUnc_54: 2.9872328342697794e-08 + ArtUnc_55: -1.581319061040107e-06 + ArtUnc_56: 1.933241606756599e-06 + ArtUnc_57: 4.697845033799855e-07 + ArtUnc_58: -3.308935751188501e-06 + ArtUnc_59: 1.8756063896365827e-07 + ArtUnc_60: -3.6319870239236007e-06 + ArtUnc_61: 8.974999862891205e-09 + ArtUnc_62: -3.2100263389846357e-07 + ArtUnc_63: 3.687766345572873e-08 + ArtUnc_64: -7.773053107356384e-06 + ArtUnc_65: 6.977881398509863e-07 + ArtUnc_66: -8.346360521631696e-06 + ArtUnc_67: -3.417827012533332e-07 + ArtUnc_68: -4.126287864727083e-07 + ArtUnc_69: 3.5351700709203385e-09 + ArtUnc_70: -4.836847420599969e-07 + ArtUnc_71: -2.5243277693506292e-08 + ArtUnc_72: -5.773132591863485e-06 + ArtUnc_73: -4.681112618505477e-07 + ArtUnc_74: -1.577039913530142e-06 + ArtUnc_75: 9.86917479891918e-06 + ArtUnc_76: 7.128038724576999e-08 + ArtUnc_77: -3.1454011412941795e-08 + ArtUnc_78: 1.8891715977876717e-05 + ArtUnc_79: 1.349982111950535e-05 + ArtUnc_80: -7.125930552507109e-08 + ArtUnc_81: 4.94833375371924e-07 + ArtUnc_82: 3.523517435289861e-08 + ArtUnc_83: -5.926496319977509e-08 + ArtUnc_84: -1.4452008476412964e-07 + ArtUnc_85: 1.508320644838305e-08 + ArtUnc_86: 4.377923905507967e-09 + ArtUnc_87: 5.063614671791702e-09 + ArtUnc_88: 6.745731559486469e-09 + ArtUnc_89: 2.873263317578852e-07 + ArtUnc_90: -9.439684959935189e-08 + ArtUnc_91: -2.3971753920997772e-08 + ArtUnc_92: -4.26823292277409e-08 + ArtUnc_93: 1.5311556383332444e-09 + ArtUnc_94: -4.599464050398569e-10 + ArtUnc_95: -1.9906259590373583e-08 + ArtUnc_96: 2.321632159279879e-09 - stat: 0 Uncorr: 2.4100000000000002e-06 RCES: 3.5034429533674446e-06 @@ -3567,102 +3567,102 @@ bins: ModelRW_2: 1.0804167352461735e-05 JES_1: 7.79262888399993e-06 JES_2: 7.79262888399993e-06 - ArtUnc_1: -1.901999100018548e-17 - ArtUnc_2: 1.0507157367213475e-14 - ArtUnc_3: 7.40593611506568e-14 - ArtUnc_4: 4.151678287759254e-13 - ArtUnc_5: 1.4607047974815595e-14 - ArtUnc_6: 3.987043341001862e-15 - ArtUnc_7: 2.9871234429879902e-12 - ArtUnc_8: -1.2890110141978409e-11 - ArtUnc_9: 1.9362487676758983e-13 - ArtUnc_10: -1.9130658820515975e-13 - ArtUnc_11: -3.400051044624664e-13 - ArtUnc_12: 3.652002954948537e-14 - ArtUnc_13: -7.1714396580676e-12 - ArtUnc_14: -1.2279063926269335e-13 - ArtUnc_15: 5.068030341871257e-14 - ArtUnc_16: 1.814632633271903e-15 - ArtUnc_17: -2.5823036771678652e-12 - ArtUnc_18: -7.732364378016276e-14 - ArtUnc_19: -1.0368599030456471e-11 - ArtUnc_20: 2.5377948411775244e-11 - ArtUnc_21: -1.835525458104688e-12 - ArtUnc_22: 3.2305271486619654e-10 - ArtUnc_23: 6.5716499618462496e-12 - ArtUnc_24: -1.3152564112477424e-10 - ArtUnc_25: -2.5802325607478847e-10 - ArtUnc_26: 5.448016000663151e-11 - ArtUnc_27: 9.181928486936754e-10 - ArtUnc_28: -4.2663113324387277e-11 - ArtUnc_29: -2.121381067982099e-10 - ArtUnc_30: 1.233692589427189e-10 - ArtUnc_31: 5.0572066257513994e-11 - ArtUnc_32: 1.98979108431419e-09 - ArtUnc_33: 5.964743403610258e-13 - ArtUnc_34: -4.229102206599528e-11 - ArtUnc_35: 6.37277150007288e-11 - ArtUnc_36: -8.992438540247284e-10 - ArtUnc_37: -2.8238691842799766e-09 - ArtUnc_38: -5.02980540834054e-10 - ArtUnc_39: -3.760335301555371e-09 - ArtUnc_40: -1.5225495777843334e-11 - ArtUnc_41: -1.5530794004637835e-08 - ArtUnc_42: -1.1200097110878717e-10 - ArtUnc_43: 3.320458370958875e-08 - ArtUnc_44: 1.612778691079054e-08 - ArtUnc_45: 1.9434751822814306e-10 - ArtUnc_46: 4.818719281876162e-09 - ArtUnc_47: -3.593683334232163e-10 - ArtUnc_48: 1.4452431641240683e-11 - ArtUnc_49: -1.1561914693040196e-07 - ArtUnc_50: -3.095265809794582e-09 - ArtUnc_51: 1.9902500579980663e-09 - ArtUnc_52: -1.0551540835725304e-09 - ArtUnc_53: -2.5839868436903215e-11 - ArtUnc_54: 2.735989615037522e-10 - ArtUnc_55: -1.7146668510367313e-08 - ArtUnc_56: -9.346685172218939e-09 - ArtUnc_57: -2.2964573279146082e-09 - ArtUnc_58: -2.5410501696593928e-08 - ArtUnc_59: 2.4527977930520205e-10 - ArtUnc_60: -4.2690864286483435e-08 - ArtUnc_61: -1.0006795074036811e-10 - ArtUnc_62: -1.5073637831944534e-09 - ArtUnc_63: 3.875254156561107e-11 - ArtUnc_64: 7.557892352678368e-08 - ArtUnc_65: -7.762771204768927e-09 - ArtUnc_66: -2.1676490443905314e-07 - ArtUnc_67: 3.088925173793289e-08 - ArtUnc_68: -3.777323449849427e-08 - ArtUnc_69: 9.873502259304843e-09 - ArtUnc_70: -2.373128831845292e-07 - ArtUnc_71: -2.8574018820259706e-09 - ArtUnc_72: 7.728916750925105e-08 - ArtUnc_73: 1.8004829794941364e-08 - ArtUnc_74: -1.1896352758006238e-06 - ArtUnc_75: 2.2098648925168953e-07 - ArtUnc_76: 2.786018071151877e-08 - ArtUnc_77: 7.187084774474957e-08 - ArtUnc_78: 2.2916415135349406e-06 - ArtUnc_79: -4.401578860181418e-06 - ArtUnc_80: 8.779094540537243e-08 - ArtUnc_81: -1.1345022521153709e-07 - ArtUnc_82: 1.138157692268845e-08 - ArtUnc_83: 3.163933993362653e-07 - ArtUnc_84: 1.3329149678621984e-06 - ArtUnc_85: 2.1353944709585353e-08 - ArtUnc_86: 5.5925988440237304e-08 - ArtUnc_87: 1.094170745951463e-07 - ArtUnc_88: -2.670456958818338e-06 - ArtUnc_89: 1.1376874495448061e-07 - ArtUnc_90: 4.823102494690155e-07 - ArtUnc_91: 1.4649026332981122e-07 - ArtUnc_92: 8.78447031792603e-06 - ArtUnc_93: 3.28059110009874e-08 - ArtUnc_94: 1.881002465380906e-07 - ArtUnc_95: -4.025966804622711e-07 - ArtUnc_96: -1.8317314419583592e-08 + ArtUnc_1: -1.9019991291243223e-17 + ArtUnc_2: 1.0507157366899366e-14 + ArtUnc_3: 7.405936115075455e-14 + ArtUnc_4: 4.1516782877622893e-13 + ArtUnc_5: 1.4607047978177815e-14 + ArtUnc_6: 3.987043331119774e-15 + ArtUnc_7: 2.9871234429873815e-12 + ArtUnc_8: -1.28901101419786e-11 + ArtUnc_9: 1.936248767826609e-13 + ArtUnc_10: -1.9130658824214493e-13 + ArtUnc_11: -3.400051045086563e-13 + ArtUnc_12: -3.6520029181094834e-14 + ArtUnc_13: 7.1714396580652244e-12 + ArtUnc_14: -1.2279063899775683e-13 + ArtUnc_15: 5.068030375999428e-14 + ArtUnc_16: 1.814635154565131e-15 + ArtUnc_17: -2.5823036770884942e-12 + ArtUnc_18: 7.732364342860023e-14 + ArtUnc_19: 1.0368599030336335e-11 + ArtUnc_20: 2.537794841164756e-11 + ArtUnc_21: -1.8355254578712134e-12 + ArtUnc_22: 3.23052714866025e-10 + ArtUnc_23: 6.571649960662051e-12 + ArtUnc_24: -1.315256411252612e-10 + ArtUnc_25: -2.5802325607447383e-10 + ArtUnc_26: 5.448016000703067e-11 + ArtUnc_27: 9.181928486933075e-10 + ArtUnc_28: 4.266311332429477e-11 + ArtUnc_29: 2.121381067959539e-10 + ArtUnc_30: 1.2336925894313725e-10 + ArtUnc_31: -5.0572066259762264e-11 + ArtUnc_32: 1.9897910843142253e-09 + ArtUnc_33: -5.964743379366253e-13 + ArtUnc_34: -4.2291022066909204e-11 + ArtUnc_35: -6.372771500145227e-11 + ArtUnc_36: 8.992438540225526e-10 + ArtUnc_37: -2.823869184278453e-09 + ArtUnc_38: 5.029805408362752e-10 + ArtUnc_39: 3.7603353015553514e-09 + ArtUnc_40: -1.522549579025299e-11 + ArtUnc_41: -1.553079400463468e-08 + ArtUnc_42: 1.1200097112152992e-10 + ArtUnc_43: 3.320458370959093e-08 + ArtUnc_44: 1.612778691079218e-08 + ArtUnc_45: -1.9434751816654295e-10 + ArtUnc_46: 4.818719281818341e-09 + ArtUnc_47: -3.5936833342592e-10 + ArtUnc_48: -1.4452431492510908e-11 + ArtUnc_49: 1.156191469303947e-07 + ArtUnc_50: 3.095265809797049e-09 + ArtUnc_51: -1.990250058016618e-09 + ArtUnc_52: 1.0551540835680762e-09 + ArtUnc_53: 2.583986842251015e-11 + ArtUnc_54: -2.7359896160844426e-10 + ArtUnc_55: -1.714666851039895e-08 + ArtUnc_56: -9.346685172236354e-09 + ArtUnc_57: -2.2964573279275797e-09 + ArtUnc_58: -2.541050169654537e-08 + ArtUnc_59: 2.4527977931268276e-10 + ArtUnc_60: 4.26908642864609e-08 + ArtUnc_61: 1.0006795078580084e-10 + ArtUnc_62: -1.5073637832204924e-09 + ArtUnc_63: 3.8752541563071965e-11 + ArtUnc_64: -7.557892352678078e-08 + ArtUnc_65: -7.762771204776205e-09 + ArtUnc_66: 2.1676490443910404e-07 + ArtUnc_67: 3.088925173796808e-08 + ArtUnc_68: -3.7773234498553116e-08 + ArtUnc_69: -9.873502259301812e-09 + ArtUnc_70: 2.373128831845414e-07 + ArtUnc_71: 2.8574018820224212e-09 + ArtUnc_72: -7.728916750927325e-08 + ArtUnc_73: -1.8004829794967403e-08 + ArtUnc_74: 1.1896352758006183e-06 + ArtUnc_75: 2.2098648925167571e-07 + ArtUnc_76: 2.7860180711512064e-08 + ArtUnc_77: 7.187084774475774e-08 + ArtUnc_78: 2.2916415135354548e-06 + ArtUnc_79: -4.401578860181456e-06 + ArtUnc_80: 8.779094540533577e-08 + ArtUnc_81: -1.1345022521150932e-07 + ArtUnc_82: -1.1381576922669683e-08 + ArtUnc_83: 3.163933993362474e-07 + ArtUnc_84: -1.3329149678621743e-06 + ArtUnc_85: -2.135394470958957e-08 + ArtUnc_86: 5.592598844023283e-08 + ArtUnc_87: 1.0941707459513449e-07 + ArtUnc_88: 1.1376874495446983e-07 + ArtUnc_89: 2.6704569588183046e-06 + ArtUnc_90: -4.823102494690392e-07 + ArtUnc_91: 1.4649026332982186e-07 + ArtUnc_92: -8.784470317925978e-06 + ArtUnc_93: 3.280591100098844e-08 + ArtUnc_94: 1.8810024653809077e-07 + ArtUnc_95: -4.025966804622898e-07 + ArtUnc_96: -1.8317314419579824e-08 - stat: 0 Uncorr: 4.73e-07 RCES: 1.1361456061614636e-06 @@ -3678,102 +3678,102 @@ bins: ModelRW_2: 2.7358951313601183e-06 JES_1: 2.495779356741597e-06 JES_2: 2.495779356741597e-06 - ArtUnc_1: 2.3592717455278063e-20 - ArtUnc_2: -5.922629162227702e-18 - ArtUnc_3: -1.881943600015444e-17 - ArtUnc_4: 3.1581875786552915e-17 - ArtUnc_5: 1.5937575158089415e-18 - ArtUnc_6: 3.2893423568347272e-18 - ArtUnc_7: 1.2239723672629012e-15 - ArtUnc_8: -2.2074775992875465e-14 - ArtUnc_9: 6.704927997723987e-16 - ArtUnc_10: 2.769940885779498e-14 - ArtUnc_11: -5.873909050918547e-14 - ArtUnc_12: 4.6646760813590076e-15 - ArtUnc_13: 3.208249464110612e-14 - ArtUnc_14: -2.768336938859504e-15 - ArtUnc_15: 7.564761724867157e-15 - ArtUnc_16: -4.898938035446411e-16 - ArtUnc_17: -7.062103028399974e-15 - ArtUnc_18: -5.255133974819861e-16 - ArtUnc_19: -1.6363092567285706e-14 - ArtUnc_20: -2.3889846365697364e-13 - ArtUnc_21: 2.0807479149316982e-14 - ArtUnc_22: -5.297202828929652e-12 - ArtUnc_23: -1.9082778110477102e-13 - ArtUnc_24: 6.039201406219688e-12 - ArtUnc_25: 2.6715907554407336e-12 - ArtUnc_26: -2.796639331847442e-13 - ArtUnc_27: -1.9072862813521637e-11 - ArtUnc_28: 3.1805753313814845e-13 - ArtUnc_29: -2.342851279918988e-12 - ArtUnc_30: -2.1374606686935742e-13 - ArtUnc_31: -1.0815260613105309e-13 - ArtUnc_32: -1.96863975719e-11 - ArtUnc_33: 1.56368002495703e-14 - ArtUnc_34: 4.941397788678146e-12 - ArtUnc_35: -3.4343154224011755e-12 - ArtUnc_36: 4.797358782019336e-11 - ArtUnc_37: 5.773888609002955e-11 - ArtUnc_38: 9.251216849880243e-12 - ArtUnc_39: 6.909058451839528e-11 - ArtUnc_40: 1.692511740888848e-12 - ArtUnc_41: 3.7053698468621566e-10 - ArtUnc_42: -1.8553929057684222e-11 - ArtUnc_43: -4.846323282585256e-10 - ArtUnc_44: -3.327459492748151e-11 - ArtUnc_45: -7.597393140041539e-13 - ArtUnc_46: -6.897334913039593e-11 - ArtUnc_47: 1.5566079258685414e-10 - ArtUnc_48: 7.485089690148145e-12 - ArtUnc_49: 4.1862286539349234e-10 - ArtUnc_50: -6.302238876177875e-11 - ArtUnc_51: 9.65302787763233e-10 - ArtUnc_52: -5.721657990641889e-10 - ArtUnc_53: 2.4895736849703775e-11 - ArtUnc_54: 7.617696381166007e-11 - ArtUnc_55: -1.3478870594900175e-08 - ArtUnc_56: 1.2402321011990233e-08 - ArtUnc_57: 3.5571456105792596e-09 - ArtUnc_58: -2.5561509082484207e-08 - ArtUnc_59: -1.2383163719012923e-10 - ArtUnc_60: 3.2222219760102e-08 - ArtUnc_61: 5.225128803503071e-12 - ArtUnc_62: -8.974571982242052e-10 - ArtUnc_63: 9.44057460845764e-11 - ArtUnc_64: 2.4480318754976328e-08 - ArtUnc_65: 1.042472983640617e-09 - ArtUnc_66: 3.516679646392288e-08 - ArtUnc_67: 3.5298812203812566e-10 - ArtUnc_68: 1.9926689573872634e-09 - ArtUnc_69: 3.938321250106937e-10 - ArtUnc_70: -9.539111780809803e-09 - ArtUnc_71: -2.2666150732372423e-10 - ArtUnc_72: -4.3344959477670075e-08 - ArtUnc_73: -3.4399107786647648e-09 - ArtUnc_74: -3.766214542747313e-08 - ArtUnc_75: -8.85383302597457e-08 - ArtUnc_76: -5.078556975299819e-10 - ArtUnc_77: 2.6350754104581286e-09 - ArtUnc_78: -5.219583627352078e-08 - ArtUnc_79: -1.928632086792721e-07 - ArtUnc_80: 2.0279690969120902e-09 - ArtUnc_81: -7.292739062852815e-09 - ArtUnc_82: 5.17014190383794e-10 - ArtUnc_83: 2.2541666134291343e-08 - ArtUnc_84: 3.969306237175464e-08 - ArtUnc_85: -2.686872478207086e-06 - ArtUnc_86: 4.1414736198157015e-07 - ArtUnc_87: 7.862979078956051e-07 - ArtUnc_88: -4.4423448886376586e-08 - ArtUnc_89: 1.172101147051345e-08 - ArtUnc_90: -2.65116567570053e-07 - ArtUnc_91: -1.6784554078079344e-06 - ArtUnc_92: 1.550500835139886e-08 - ArtUnc_93: 1.9257018402597083e-08 - ArtUnc_94: 2.228125152342082e-08 - ArtUnc_95: -8.447286155149883e-07 - ArtUnc_96: -1.7506003847933813e-07 + ArtUnc_1: 2.35927203457836e-20 + ArtUnc_2: -5.922629161146333e-18 + ArtUnc_3: -1.8819435998532412e-17 + ArtUnc_4: 3.158187577786074e-17 + ArtUnc_5: 1.5937576017366522e-18 + ArtUnc_6: 3.289342185321362e-18 + ArtUnc_7: 1.2239723672715737e-15 + ArtUnc_8: -2.2074775992870183e-14 + ArtUnc_9: 6.704927999036726e-16 + ArtUnc_10: 2.7699408858070488e-14 + ArtUnc_11: -5.873909050903443e-14 + ArtUnc_12: -4.664676081797592e-15 + ArtUnc_13: -3.2082494641071664e-14 + ArtUnc_14: -2.7683369430503856e-15 + ArtUnc_15: 7.564761722243567e-15 + ArtUnc_16: -4.898938440266008e-16 + ArtUnc_17: -7.0621030270174545e-15 + ArtUnc_18: 5.255133824119982e-16 + ArtUnc_19: 1.636309256674278e-14 + ArtUnc_20: -2.388984636576834e-13 + ArtUnc_21: 2.0807479147216883e-14 + ArtUnc_22: -5.297202828927104e-12 + ArtUnc_23: -1.9082778121082117e-13 + ArtUnc_24: 6.039201406219987e-12 + ArtUnc_25: 2.6715907554250054e-12 + ArtUnc_26: -2.7966393291241113e-13 + ArtUnc_27: -1.9072862813516748e-11 + ArtUnc_28: -3.1805753329792926e-13 + ArtUnc_29: 2.342851279537203e-12 + ArtUnc_30: -2.1374606682004223e-13 + ArtUnc_31: 1.0815260616289436e-13 + ArtUnc_32: -1.9686397571900833e-11 + ArtUnc_33: -1.5636800167330968e-14 + ArtUnc_34: 4.9413977886084574e-12 + ArtUnc_35: 3.43431542246607e-12 + ArtUnc_36: -4.797358782039034e-11 + ArtUnc_37: 5.773888609003612e-11 + ArtUnc_38: -9.251216849801803e-12 + ArtUnc_39: -6.909058451839399e-11 + ArtUnc_40: 1.6925117406345058e-12 + ArtUnc_41: 3.7053698468647157e-10 + ArtUnc_42: 1.855392905824653e-11 + ArtUnc_43: -4.846323282584783e-10 + ArtUnc_44: -3.327459492762007e-11 + ArtUnc_45: 7.597393152306623e-13 + ArtUnc_46: -6.897334913058715e-11 + ArtUnc_47: 1.5566079258656675e-10 + ArtUnc_48: -7.485089687541113e-12 + ArtUnc_49: -4.1862286539354177e-10 + ArtUnc_50: 6.302238876174077e-11 + ArtUnc_51: -9.653027877636256e-10 + ArtUnc_52: 5.72165799063931e-10 + ArtUnc_53: -2.489573684983785e-11 + ArtUnc_54: -7.617696381330824e-11 + ArtUnc_55: -1.3478870594901272e-08 + ArtUnc_56: 1.2402321011988667e-08 + ArtUnc_57: 3.5571456105850805e-09 + ArtUnc_58: -2.556150908248414e-08 + ArtUnc_59: -1.2383163719166848e-10 + ArtUnc_60: -3.2222219760101495e-08 + ArtUnc_61: -5.2251288050979926e-12 + ArtUnc_62: -8.97457198223341e-10 + ArtUnc_63: 9.440574608420388e-11 + ArtUnc_64: -2.448031875497111e-08 + ArtUnc_65: 1.042472983643038e-09 + ArtUnc_66: -3.5166796463923804e-08 + ArtUnc_67: 3.52988122038554e-10 + ArtUnc_68: 1.992668957386929e-09 + ArtUnc_69: -3.938321250102191e-10 + ArtUnc_70: 9.539111780811317e-09 + ArtUnc_71: 2.266615073220808e-10 + ArtUnc_72: 4.3344959477670267e-08 + ArtUnc_73: 3.439910778665954e-09 + ArtUnc_74: 3.766214542747073e-08 + ArtUnc_75: -8.853833025974996e-08 + ArtUnc_76: -5.07855697525207e-10 + ArtUnc_77: 2.6350754104537003e-09 + ArtUnc_78: -5.219583627350703e-08 + ArtUnc_79: -1.9286320867927353e-07 + ArtUnc_80: 2.0279690969114773e-09 + ArtUnc_81: -7.292739062847744e-09 + ArtUnc_82: -5.170141903927744e-10 + ArtUnc_83: 2.2541666134281235e-08 + ArtUnc_84: -3.9693062371755816e-08 + ArtUnc_85: 2.686872478207075e-06 + ArtUnc_86: 4.141473619815568e-07 + ArtUnc_87: 7.862979078955503e-07 + ArtUnc_88: 1.1721011470516791e-08 + ArtUnc_89: 4.4423448886381265e-08 + ArtUnc_90: 2.651165675700547e-07 + ArtUnc_91: -1.6784554078079242e-06 + ArtUnc_92: -1.550500835139394e-08 + ArtUnc_93: 1.9257018402611466e-08 + ArtUnc_94: 2.2281251523428708e-08 + ArtUnc_95: -8.447286155149897e-07 + ArtUnc_96: -1.7506003847933434e-07 - stat: 0 Uncorr: 0.000419 RCES: 0.0026473771535616155 @@ -3789,102 +3789,102 @@ bins: ModelRW_2: 0.0003199799606225365 JES_1: 0.0011273387523444316 JES_2: 0.0011273387523444316 - ArtUnc_1: -4.650512749510166e-09 - ArtUnc_2: 2.615040433829322e-07 - ArtUnc_3: 5.12557246908949e-07 - ArtUnc_4: 1.0849380135809137e-06 - ArtUnc_5: 7.030184434031912e-08 - ArtUnc_6: -6.666096450905855e-08 - ArtUnc_7: 8.926475091345058e-06 - ArtUnc_8: -3.752463903315616e-05 - ArtUnc_9: -4.525940513413942e-06 - ArtUnc_10: 3.1467905590806136e-05 - ArtUnc_11: -2.023314790240504e-05 - ArtUnc_12: -2.0219473189516724e-06 - ArtUnc_13: 4.0032878530944104e-05 - ArtUnc_14: 9.542902962029522e-06 - ArtUnc_15: -1.5817618089945143e-05 - ArtUnc_16: 5.069765305481629e-07 - ArtUnc_17: -1.08891559690467e-05 - ArtUnc_18: -7.854719394650325e-07 - ArtUnc_19: -2.3706046886005396e-05 - ArtUnc_20: -1.9083074205274192e-05 - ArtUnc_21: 4.747888848598477e-07 - ArtUnc_22: 0.0001673429516106384 - ArtUnc_23: 1.8956321121486008e-06 - ArtUnc_24: 0.00013912348563776817 - ArtUnc_25: 0.0001879940038701234 - ArtUnc_26: 3.117946243289524e-05 - ArtUnc_27: 0.00021123077073010452 - ArtUnc_28: -2.6931251017312914e-06 - ArtUnc_29: -0.0005732465940048247 - ArtUnc_30: 0.00012951670447790492 - ArtUnc_31: 5.3867864331504804e-05 - ArtUnc_32: -0.00022791727755530698 - ArtUnc_33: -2.3810441820842363e-07 - ArtUnc_34: -7.330782394984981e-06 - ArtUnc_35: 1.7685369090595978e-05 - ArtUnc_36: 2.472431294429736e-06 - ArtUnc_37: -1.4607163820264948e-05 - ArtUnc_38: -2.6176429082263394e-06 - ArtUnc_39: 6.607915967338179e-07 - ArtUnc_40: -5.1362874816019386e-08 - ArtUnc_41: 1.5135293048599682e-06 - ArtUnc_42: 3.930922079682163e-08 - ArtUnc_43: 1.304912887440288e-06 - ArtUnc_44: -7.960303951658007e-06 - ArtUnc_45: -5.351476142610959e-08 - ArtUnc_46: -3.500460120766551e-07 - ArtUnc_47: -2.6985309472054276e-07 - ArtUnc_48: -6.382660114581625e-09 - ArtUnc_49: -2.434139705635471e-06 - ArtUnc_50: -4.811695723307431e-07 - ArtUnc_51: -2.879156312046098e-08 - ArtUnc_52: -1.9332838629887088e-08 - ArtUnc_53: -5.698775424400125e-09 - ArtUnc_54: 1.2428319793268545e-08 - ArtUnc_55: 1.829936559843659e-08 - ArtUnc_56: -9.683602000647387e-10 - ArtUnc_57: -2.0089989751234485e-09 - ArtUnc_58: -4.093810632764918e-09 - ArtUnc_59: 7.913059982895017e-09 - ArtUnc_60: -6.358131181265117e-09 - ArtUnc_61: -3.316418941661967e-11 - ArtUnc_62: 4.826728173644871e-09 - ArtUnc_63: -5.171061553900622e-10 - ArtUnc_64: -3.349431848054753e-07 - ArtUnc_65: -1.1614407621022927e-08 - ArtUnc_66: 2.3340415670960243e-07 - ArtUnc_67: -4.714533807608359e-09 - ArtUnc_68: -5.125500757965474e-10 - ArtUnc_69: -2.568175920169571e-11 - ArtUnc_70: 4.617791891800068e-10 - ArtUnc_71: 1.7269565631121524e-11 - ArtUnc_72: 1.0426947546369062e-09 - ArtUnc_73: -1.3974946479046988e-10 - ArtUnc_74: 7.388353615943769e-11 - ArtUnc_75: 2.2023115713548736e-09 - ArtUnc_76: -3.2388756321363645e-11 - ArtUnc_77: 1.683694432077247e-10 - ArtUnc_78: -2.3319062783812886e-09 - ArtUnc_79: 6.984125752366835e-10 - ArtUnc_80: 2.421067285842708e-10 - ArtUnc_81: -1.064510427534945e-10 - ArtUnc_82: -9.551534802834587e-12 - ArtUnc_83: 4.2477216540959984e-11 - ArtUnc_84: -1.2581519448914072e-11 - ArtUnc_85: 2.8532031390087507e-13 - ArtUnc_86: -7.1550686481024196e-12 - ArtUnc_87: -8.385559175990136e-12 - ArtUnc_88: -6.684767466889214e-11 - ArtUnc_89: 9.054072666778e-12 - ArtUnc_90: -1.8249590088503793e-11 - ArtUnc_91: -1.376928279346296e-12 - ArtUnc_92: 2.0830196938468465e-10 - ArtUnc_93: 1.474440598941585e-11 - ArtUnc_94: 2.806228895777921e-12 - ArtUnc_95: -4.903718148236899e-11 - ArtUnc_96: 1.1351687655146475e-11 + ArtUnc_1: -4.650512749355942e-09 + ArtUnc_2: 2.6150404338355495e-07 + ArtUnc_3: 5.12557246908968e-07 + ArtUnc_4: 1.0849380135812087e-06 + ArtUnc_5: 7.030184433999337e-08 + ArtUnc_6: -6.666096450952222e-08 + ArtUnc_7: 8.926475091343498e-06 + ArtUnc_8: -3.752463903315676e-05 + ArtUnc_9: -4.525940513413666e-06 + ArtUnc_10: 3.1467905590806244e-05 + ArtUnc_11: -2.0233147902406997e-05 + ArtUnc_12: 2.021947318951445e-06 + ArtUnc_13: -4.003287853094295e-05 + ArtUnc_14: 9.54290296203011e-06 + ArtUnc_15: -1.5817618089945295e-05 + ArtUnc_16: 5.069765305450733e-07 + ArtUnc_17: -1.0889155969046879e-05 + ArtUnc_18: 7.854719394652192e-07 + ArtUnc_19: 2.3706046886005644e-05 + ArtUnc_20: -1.9083074205274243e-05 + ArtUnc_21: 4.747888848597217e-07 + ArtUnc_22: 0.00016734295161063723 + ArtUnc_23: 1.8956321121513973e-06 + ArtUnc_24: 0.0001391234856377672 + ArtUnc_25: 0.00018799400387012392 + ArtUnc_26: 3.117946243289525e-05 + ArtUnc_27: 0.00021123077073010498 + ArtUnc_28: 2.693125101744767e-06 + ArtUnc_29: 0.0005732465940048262 + ArtUnc_30: 0.00012951670447777832 + ArtUnc_31: -5.386786433193626e-05 + ArtUnc_32: -0.0002279172775553063 + ArtUnc_33: 2.3810441821111926e-07 + ArtUnc_34: -7.330782394982886e-06 + ArtUnc_35: -1.7685369090595917e-05 + ArtUnc_36: -2.4724312944298536e-06 + ArtUnc_37: -1.4607163820264878e-05 + ArtUnc_38: 2.6176429082255432e-06 + ArtUnc_39: -6.607915967338914e-07 + ArtUnc_40: -5.1362874816051534e-08 + ArtUnc_41: 1.5135293048599083e-06 + ArtUnc_42: -3.930922079681527e-08 + ArtUnc_43: 1.3049128874402319e-06 + ArtUnc_44: -7.96030395165809e-06 + ArtUnc_45: 5.351476142624853e-08 + ArtUnc_46: -3.500460120766658e-07 + ArtUnc_47: -2.698530947205398e-07 + ArtUnc_48: 6.382660114578908e-09 + ArtUnc_49: 2.4341397056357427e-06 + ArtUnc_50: 4.81169572330774e-07 + ArtUnc_51: 2.879156312045966e-08 + ArtUnc_52: 1.933283862988446e-08 + ArtUnc_53: 5.698775424400118e-09 + ArtUnc_54: -1.2428319793269074e-08 + ArtUnc_55: 1.8299365598447446e-08 + ArtUnc_56: -9.683602000634305e-10 + ArtUnc_57: -2.008998975123179e-09 + ArtUnc_58: -4.09381063276111e-09 + ArtUnc_59: 7.913059982895237e-09 + ArtUnc_60: 6.358131181272643e-09 + ArtUnc_61: 3.316418941539378e-11 + ArtUnc_62: 4.826728173643972e-09 + ArtUnc_63: -5.171061553907083e-10 + ArtUnc_64: 3.34943184805511e-07 + ArtUnc_65: -1.1614407621026812e-08 + ArtUnc_66: -2.3340415670957435e-07 + ArtUnc_67: -4.714533807607662e-09 + ArtUnc_68: -5.125500757971282e-10 + ArtUnc_69: 2.5681759201689222e-11 + ArtUnc_70: -4.617791891797858e-10 + ArtUnc_71: -1.726956563111836e-11 + ArtUnc_72: -1.0426947546361144e-09 + ArtUnc_73: 1.3974946479052858e-10 + ArtUnc_74: -7.388353615932547e-11 + ArtUnc_75: 2.2023115713533785e-09 + ArtUnc_76: -3.238875632136181e-11 + ArtUnc_77: 1.683694432077045e-10 + ArtUnc_78: -2.3319062783790383e-09 + ArtUnc_79: 6.984125752352948e-10 + ArtUnc_80: 2.4210672858428407e-10 + ArtUnc_81: -1.0645104275344316e-10 + ArtUnc_82: 9.551534802832154e-12 + ArtUnc_83: 4.247721654093233e-11 + ArtUnc_84: 1.2581519448969144e-11 + ArtUnc_85: -2.853203139020557e-13 + ArtUnc_86: -7.1550686480950606e-12 + ArtUnc_87: -8.385559175981213e-12 + ArtUnc_88: 9.054072666771776e-12 + ArtUnc_89: 6.684767466884986e-11 + ArtUnc_90: 1.8249590088465067e-11 + ArtUnc_91: -1.3769282793509156e-12 + ArtUnc_92: -2.0830196938451975e-10 + ArtUnc_93: 1.474440598941191e-11 + ArtUnc_94: 2.8062288957760026e-12 + ArtUnc_95: -4.9037181482300245e-11 + ArtUnc_96: 1.1351687655157902e-11 - stat: 0 Uncorr: 0.000338 RCES: 0.00033580857091503784 @@ -3900,102 +3900,102 @@ bins: ModelRW_2: 0.0009368882008009278 JES_1: 0.00023420985589850822 JES_2: 0.00023420985589850822 - ArtUnc_1: 5.471569995891646e-10 - ArtUnc_2: -2.1548459534169628e-08 - ArtUnc_3: 1.6107173820232725e-09 - ArtUnc_4: 1.8790643118297607e-07 - ArtUnc_5: 1.050117042570297e-09 - ArtUnc_6: 1.4980021086587036e-08 - ArtUnc_7: 1.0716030983490844e-06 - ArtUnc_8: -5.852027745173473e-06 - ArtUnc_9: 7.491192402189114e-07 - ArtUnc_10: -8.052950538933017e-08 - ArtUnc_11: -5.7252344852199985e-06 - ArtUnc_12: 9.685501549657312e-07 - ArtUnc_13: 1.3424257850249387e-06 - ArtUnc_14: -9.956049613005863e-07 - ArtUnc_15: 5.297725506633483e-07 - ArtUnc_16: 1.673837768454332e-08 - ArtUnc_17: -3.582507838236449e-07 - ArtUnc_18: 1.2647274373508488e-08 - ArtUnc_19: -1.2336629966632117e-06 - ArtUnc_20: 8.403154663433771e-07 - ArtUnc_21: 6.791298681435195e-07 - ArtUnc_22: -1.776150220884706e-06 - ArtUnc_23: -4.784905450234038e-07 - ArtUnc_24: -5.1696968831452726e-06 - ArtUnc_25: 2.821350325782999e-05 - ArtUnc_26: -6.758352126525412e-06 - ArtUnc_27: -1.948245245698466e-05 - ArtUnc_28: 1.8615587928714592e-07 - ArtUnc_29: -4.9400028648362785e-06 - ArtUnc_30: 2.5959751638211684e-06 - ArtUnc_31: 1.0763248007906184e-06 - ArtUnc_32: -3.287425978178637e-05 - ArtUnc_33: 3.2994683073729474e-08 - ArtUnc_34: -1.234940266205477e-06 - ArtUnc_35: 6.191515490196092e-06 - ArtUnc_36: 2.7249485883068733e-06 - ArtUnc_37: -5.989822561698192e-05 - ArtUnc_38: -1.0403639627465775e-05 - ArtUnc_39: -7.720196274664049e-05 - ArtUnc_40: 1.5220534773968058e-06 - ArtUnc_41: 1.709379278867283e-05 - ArtUnc_42: -8.11450519569054e-07 - ArtUnc_43: -1.3715268834483381e-05 - ArtUnc_44: 0.0002462097444531081 - ArtUnc_45: 1.2730256982183371e-06 - ArtUnc_46: 1.1643913116449376e-05 - ArtUnc_47: 1.629978914010714e-06 - ArtUnc_48: 2.280929511647473e-07 - ArtUnc_49: 3.6345767126120526e-05 - ArtUnc_50: 2.4422571255477306e-06 - ArtUnc_51: 6.822122723980482e-08 - ArtUnc_52: -5.976234737191764e-08 - ArtUnc_53: 1.8446310222817315e-08 - ArtUnc_54: -2.4751852109218752e-08 - ArtUnc_55: 1.131003801326065e-06 - ArtUnc_56: 1.0759820264169869e-06 - ArtUnc_57: 3.0780950207663535e-07 - ArtUnc_58: 6.812023712735954e-07 - ArtUnc_59: -7.960672216214537e-09 - ArtUnc_60: 5.267916630689111e-07 - ArtUnc_61: 3.39970164677748e-10 - ArtUnc_62: -6.665603912810152e-09 - ArtUnc_63: 7.138800656329359e-10 - ArtUnc_64: 2.477585785184677e-06 - ArtUnc_65: 3.6242879105329454e-08 - ArtUnc_66: -1.838464013018305e-06 - ArtUnc_67: 2.718142424691705e-08 - ArtUnc_68: -2.8193276372483382e-08 - ArtUnc_69: 5.427607805245182e-10 - ArtUnc_70: -3.084661349746725e-09 - ArtUnc_71: 5.447159219783033e-11 - ArtUnc_72: 2.1302205731501905e-08 - ArtUnc_73: 8.47153107572282e-10 - ArtUnc_74: 1.1628840669622708e-08 - ArtUnc_75: 1.7170116614497963e-08 - ArtUnc_76: -2.3415368954742075e-10 - ArtUnc_77: -2.7783117168968716e-10 - ArtUnc_78: 3.2602119554402305e-08 - ArtUnc_79: 1.0463517159940953e-08 - ArtUnc_80: -3.450248147908858e-10 - ArtUnc_81: 7.482156465457027e-10 - ArtUnc_82: -3.8370527796877e-11 - ArtUnc_83: -3.2471216627324176e-11 - ArtUnc_84: 1.4283148435102442e-09 - ArtUnc_85: -2.316766223558353e-11 - ArtUnc_86: 6.903485286948077e-11 - ArtUnc_87: 6.463824938402307e-11 - ArtUnc_88: -3.636593406602767e-10 - ArtUnc_89: 6.413357358594171e-12 - ArtUnc_90: 2.5940032189819596e-10 - ArtUnc_91: 6.457000917867735e-11 - ArtUnc_92: -1.2350529808453373e-09 - ArtUnc_93: -1.151435439702523e-11 - ArtUnc_94: -3.215014335109707e-11 - ArtUnc_95: -9.74700949230058e-11 - ArtUnc_96: -6.133126016763498e-11 + ArtUnc_1: 5.471569996118318e-10 + ArtUnc_2: -2.1548459534153544e-08 + ArtUnc_3: 1.6107173820174696e-09 + ArtUnc_4: 1.879064311830434e-07 + ArtUnc_5: 1.050117042374516e-09 + ArtUnc_6: 1.4980021086434547e-08 + ArtUnc_7: 1.0716030983489342e-06 + ArtUnc_8: -5.8520277451735335e-06 + ArtUnc_9: 7.491192402186086e-07 + ArtUnc_10: -8.052950538988503e-08 + ArtUnc_11: -5.725234485220118e-06 + ArtUnc_12: -9.685501549661442e-07 + ArtUnc_13: -1.3424257850248628e-06 + ArtUnc_14: -9.956049613002278e-07 + ArtUnc_15: 5.29772550663397e-07 + ArtUnc_16: 1.6738377684272918e-08 + ArtUnc_17: -3.582507838237691e-07 + ArtUnc_18: -1.264727437334715e-08 + ArtUnc_19: 1.233662996663388e-06 + ArtUnc_20: 8.403154663435293e-07 + ArtUnc_21: 6.79129868143396e-07 + ArtUnc_22: -1.776150220884529e-06 + ArtUnc_23: -4.784905450229317e-07 + ArtUnc_24: -5.169696883145389e-06 + ArtUnc_25: 2.8213503257829692e-05 + ArtUnc_26: -6.758352126525302e-06 + ArtUnc_27: -1.9482452456984413e-05 + ArtUnc_28: -1.8615587928710915e-07 + ArtUnc_29: 4.94000286483612e-06 + ArtUnc_30: 2.595975163818299e-06 + ArtUnc_31: -1.076324800799102e-06 + ArtUnc_32: -3.2874259781786615e-05 + ArtUnc_33: -3.299468307382029e-08 + ArtUnc_34: -1.2349402662050923e-06 + ArtUnc_35: -6.191515490195612e-06 + ArtUnc_36: -2.7249485883079676e-06 + ArtUnc_37: -5.989822561698278e-05 + ArtUnc_38: 1.040363962746263e-05 + ArtUnc_39: 7.720196274664037e-05 + ArtUnc_40: 1.5220534773987657e-06 + ArtUnc_41: 1.70937927886724e-05 + ArtUnc_42: 8.114505195690131e-07 + ArtUnc_43: -1.371526883447847e-05 + ArtUnc_44: 0.00024620974445310794 + ArtUnc_45: -1.2730256982223254e-06 + ArtUnc_46: 1.1643913116449547e-05 + ArtUnc_47: 1.6299789140107506e-06 + ArtUnc_48: -2.2809295116473704e-07 + ArtUnc_49: -3.634576712612296e-05 + ArtUnc_50: -2.4422571255481782e-06 + ArtUnc_51: -6.822122723981085e-08 + ArtUnc_52: 5.976234737191589e-08 + ArtUnc_53: -1.8446310222813494e-08 + ArtUnc_54: 2.4751852109216145e-08 + ArtUnc_55: 1.1310038013260833e-06 + ArtUnc_56: 1.0759820264168969e-06 + ArtUnc_57: 3.0780950207694145e-07 + ArtUnc_58: 6.812023712735847e-07 + ArtUnc_59: -7.960672216219715e-09 + ArtUnc_60: -5.267916630689513e-07 + ArtUnc_61: -3.399701646687149e-10 + ArtUnc_62: -6.6656039128050465e-09 + ArtUnc_63: 7.138800656368192e-10 + ArtUnc_64: -2.4775857851850117e-06 + ArtUnc_65: 3.624287910535524e-08 + ArtUnc_66: 1.8384640130182134e-06 + ArtUnc_67: 2.7181424246913548e-08 + ArtUnc_68: -2.8193276372482016e-08 + ArtUnc_69: -5.42760780524532e-10 + ArtUnc_70: 3.0846613497465428e-09 + ArtUnc_71: -5.4471592197849197e-11 + ArtUnc_72: -2.1302205731503017e-08 + ArtUnc_73: -8.471531075724741e-10 + ArtUnc_74: -1.1628840669622942e-08 + ArtUnc_75: 1.7170116614500534e-08 + ArtUnc_76: -2.341536895472736e-10 + ArtUnc_77: -2.7783117168958113e-10 + ArtUnc_78: 3.260211955439682e-08 + ArtUnc_79: 1.046351715994512e-08 + ArtUnc_80: -3.450248147908177e-10 + ArtUnc_81: 7.482156465457119e-10 + ArtUnc_82: 3.8370527796884825e-11 + ArtUnc_83: -3.247121662728555e-11 + ArtUnc_84: -1.4283148435103424e-09 + ArtUnc_85: 2.3167662235587087e-11 + ArtUnc_86: 6.903485286946707e-11 + ArtUnc_87: 6.463824938400358e-11 + ArtUnc_88: 6.4133573585991416e-12 + ArtUnc_89: 3.6365934066034854e-10 + ArtUnc_90: -2.5940032189813645e-10 + ArtUnc_91: 6.457000917868311e-11 + ArtUnc_92: 1.2350529808450879e-09 + ArtUnc_93: -1.151435439701838e-11 + ArtUnc_94: -3.2150143351094645e-11 + ArtUnc_95: -9.747009492310879e-11 + ArtUnc_96: -6.133126016765184e-11 - stat: 0 Uncorr: 9.620000000000001e-05 RCES: 3.858807323513316e-05 @@ -4011,102 +4011,102 @@ bins: ModelRW_2: 0.0003142693662576739 JES_1: 0.0002116123953588258 JES_2: 0.0002116123953588258 - ArtUnc_1: 3.725748441855142e-13 - ArtUnc_2: -5.576213415696871e-11 - ArtUnc_3: -1.8792997287418968e-10 - ArtUnc_4: -4.5867840932795444e-10 - ArtUnc_5: -1.4436446728744216e-11 - ArtUnc_6: 1.8673969063588274e-11 - ArtUnc_7: -2.304809777235498e-09 - ArtUnc_8: 7.845765890469632e-10 - ArtUnc_9: 1.977290840880951e-09 - ArtUnc_10: -1.1619921967808012e-08 - ArtUnc_11: -3.3435052190755636e-09 - ArtUnc_12: 1.8580739693610029e-09 - ArtUnc_13: -6.89347051218557e-08 - ArtUnc_14: -8.552736714386387e-09 - ArtUnc_15: 1.5846804640892226e-08 - ArtUnc_16: -4.681586314223856e-10 - ArtUnc_17: 2.5773570618027182e-08 - ArtUnc_18: 1.388346765828633e-09 - ArtUnc_19: 1.0772612664036784e-07 - ArtUnc_20: 9.127921594960896e-08 - ArtUnc_21: -6.69780382922057e-11 - ArtUnc_22: -1.1270512654928677e-07 - ArtUnc_23: -1.3323411868686961e-09 - ArtUnc_24: -1.5556328301045476e-06 - ArtUnc_25: 7.606353978765809e-07 - ArtUnc_26: -3.851083482718733e-07 - ArtUnc_27: -1.452548473409936e-06 - ArtUnc_28: 5.088505297563495e-08 - ArtUnc_29: 1.6117205402691302e-06 - ArtUnc_30: -4.113354807336254e-07 - ArtUnc_31: -1.6983994409327336e-07 - ArtUnc_32: 1.6892305922853991e-06 - ArtUnc_33: 1.457067663137859e-10 - ArtUnc_34: 8.989143287514196e-08 - ArtUnc_35: 8.88695551904404e-08 - ArtUnc_36: 7.181782097801695e-07 - ArtUnc_37: -2.077812503773524e-06 - ArtUnc_38: -3.6391782595324245e-07 - ArtUnc_39: -2.7286713820165273e-06 - ArtUnc_40: 5.455195979654707e-08 - ArtUnc_41: 7.549069678202049e-06 - ArtUnc_42: -7.453588459542621e-08 - ArtUnc_43: -1.1101608282611443e-05 - ArtUnc_44: 2.0012574636198835e-06 - ArtUnc_45: 2.7433672163776266e-08 - ArtUnc_46: -9.517229932449512e-07 - ArtUnc_47: 5.589666364913685e-07 - ArtUnc_48: 2.4944416287925542e-08 - ArtUnc_49: 2.347177907621526e-05 - ArtUnc_50: 1.4282041253315672e-06 - ArtUnc_51: -4.788002977744846e-07 - ArtUnc_52: -8.903094382817606e-07 - ArtUnc_53: 1.2459460515367121e-07 - ArtUnc_54: -8.14925320565125e-08 - ArtUnc_55: 1.2594223585420613e-05 - ArtUnc_56: 1.4274865327026748e-05 - ArtUnc_57: 4.174072422600962e-06 - ArtUnc_58: 2.2303548443451325e-05 - ArtUnc_59: -2.1908097420859265e-07 - ArtUnc_60: 1.891093455120236e-05 - ArtUnc_61: 1.094479673948385e-08 - ArtUnc_62: -6.893892056162117e-08 - ArtUnc_63: 5.823766977123618e-09 - ArtUnc_64: -5.6603262292214214e-05 - ArtUnc_65: -8.015406273532788e-07 - ArtUnc_66: 3.9683471410176716e-05 - ArtUnc_67: -5.263076671627705e-07 - ArtUnc_68: 3.5855468780186174e-07 - ArtUnc_69: -1.0173186218329567e-08 - ArtUnc_70: 1.229531766027621e-07 - ArtUnc_71: 2.479331417189453e-09 - ArtUnc_72: 6.571712548162449e-07 - ArtUnc_73: 4.7783870276873866e-08 - ArtUnc_74: 1.0059102231087426e-07 - ArtUnc_75: 8.417761885970783e-07 - ArtUnc_76: 8.396096597470064e-09 - ArtUnc_77: 7.42300544961137e-09 - ArtUnc_78: -1.1325365974717505e-07 - ArtUnc_79: -4.23188220554539e-08 - ArtUnc_80: 6.129071591428982e-09 - ArtUnc_81: -9.456587992687703e-09 - ArtUnc_82: 1.5188352334209478e-10 - ArtUnc_83: 5.014588526357882e-09 - ArtUnc_84: 1.1798190978593119e-08 - ArtUnc_85: 2.631729931569993e-10 - ArtUnc_86: 1.924573846872015e-11 - ArtUnc_87: 2.593975753501807e-10 - ArtUnc_88: -2.02771483831625e-08 - ArtUnc_89: 1.2062301518549229e-09 - ArtUnc_90: 3.017083083839918e-09 - ArtUnc_91: -1.0921148670095773e-09 - ArtUnc_92: 2.351887988494077e-08 - ArtUnc_93: 4.3944548208900017e-10 - ArtUnc_94: 3.733027150779105e-10 - ArtUnc_95: -3.2961109082648946e-09 - ArtUnc_96: 4.3659842526255104e-11 + ArtUnc_1: 3.72574843754151e-13 + ArtUnc_2: -5.5762134156865614e-11 + ArtUnc_3: -1.8792997287274888e-10 + ArtUnc_4: -4.5867840932993047e-10 + ArtUnc_5: -1.4436446732121365e-11 + ArtUnc_6: 1.867396902546295e-11 + ArtUnc_7: -2.3048097772345663e-09 + ArtUnc_8: 7.845765890473015e-10 + ArtUnc_9: 1.977290840908495e-09 + ArtUnc_10: -1.1619921967779412e-08 + ArtUnc_11: -3.343505219064145e-09 + ArtUnc_12: -1.858073969329258e-09 + ArtUnc_13: 6.893470512185661e-08 + ArtUnc_14: -8.552736714474256e-09 + ArtUnc_15: 1.584680464086288e-08 + ArtUnc_16: -4.681586319467342e-10 + ArtUnc_17: 2.577357061816638e-08 + ArtUnc_18: -1.3883467658975774e-09 + ArtUnc_19: -1.0772612664045383e-07 + ArtUnc_20: 9.127921594949682e-08 + ArtUnc_21: -6.69780382479327e-11 + ArtUnc_22: -1.1270512654920153e-07 + ArtUnc_23: -1.33234118677314e-09 + ArtUnc_24: -1.555632830104435e-06 + ArtUnc_25: 7.606353978765029e-07 + ArtUnc_26: -3.851083482718545e-07 + ArtUnc_27: -1.4525484734098774e-06 + ArtUnc_28: -5.0885052975844806e-08 + ArtUnc_29: -1.61172054026889e-06 + ArtUnc_30: -4.1133548073345233e-07 + ArtUnc_31: 1.6983994409471313e-07 + ArtUnc_32: 1.6892305922854216e-06 + ArtUnc_33: -1.457067664224312e-10 + ArtUnc_34: 8.989143287517297e-08 + ArtUnc_35: -8.88695551901891e-08 + ArtUnc_36: -7.18178209779854e-07 + ArtUnc_37: -2.0778125037738755e-06 + ArtUnc_38: 3.6391782595336935e-07 + ArtUnc_39: 2.7286713820166425e-06 + ArtUnc_40: 5.455195979650584e-08 + ArtUnc_41: 7.549069678202054e-06 + ArtUnc_42: 7.453588459557469e-08 + ArtUnc_43: -1.1101608282611014e-05 + ArtUnc_44: 2.001257463619583e-06 + ArtUnc_45: -2.7433672163892875e-08 + ArtUnc_46: -9.517229932447282e-07 + ArtUnc_47: 5.589666364914897e-07 + ArtUnc_48: -2.4944416287900184e-08 + ArtUnc_49: -2.347177907621313e-05 + ArtUnc_50: -1.4282041253317663e-06 + ArtUnc_51: 4.788002977745001e-07 + ArtUnc_52: 8.903094382816588e-07 + ArtUnc_53: -1.2459460515372746e-07 + ArtUnc_54: 8.14925320564319e-08 + ArtUnc_55: 1.2594223585421794e-05 + ArtUnc_56: 1.4274865327025676e-05 + ArtUnc_57: 4.174072422605024e-06 + ArtUnc_58: 2.230354844345179e-05 + ArtUnc_59: -2.190809742086046e-07 + ArtUnc_60: -1.8910934551201536e-05 + ArtUnc_61: -1.094479673965532e-08 + ArtUnc_62: -6.893892056174763e-08 + ArtUnc_63: 5.82376697707184e-09 + ArtUnc_64: 5.660326229221998e-05 + ArtUnc_65: -8.015406273538802e-07 + ArtUnc_66: -3.968347141017291e-05 + ArtUnc_67: -5.263076671626725e-07 + ArtUnc_68: 3.5855468780181044e-07 + ArtUnc_69: 1.0173186218331753e-08 + ArtUnc_70: -1.2295317660275172e-07 + ArtUnc_71: -2.4793314171900886e-09 + ArtUnc_72: -6.571712548162341e-07 + ArtUnc_73: -4.7783870276875176e-08 + ArtUnc_74: -1.005910223108769e-07 + ArtUnc_75: 8.417761885970648e-07 + ArtUnc_76: 8.396096597475887e-09 + ArtUnc_77: 7.423005449611018e-09 + ArtUnc_78: -1.1325365974715549e-07 + ArtUnc_79: -4.231882205546767e-08 + ArtUnc_80: 6.129071591428702e-09 + ArtUnc_81: -9.456587992687747e-09 + ArtUnc_82: -1.5188352334206963e-10 + ArtUnc_83: 5.014588526357662e-09 + ArtUnc_84: -1.1798190978592541e-08 + ArtUnc_85: -2.631729931570385e-10 + ArtUnc_86: 1.9245738468918398e-11 + ArtUnc_87: 2.5939757535041884e-10 + ArtUnc_88: 1.2062301518547448e-09 + ArtUnc_89: 2.027714838316177e-08 + ArtUnc_90: -3.0170830838406754e-09 + ArtUnc_91: -1.0921148670096631e-09 + ArtUnc_92: -2.351887988493733e-08 + ArtUnc_93: 4.3944548208894744e-10 + ArtUnc_94: 3.7330271507787496e-10 + ArtUnc_95: -3.296110908263646e-09 + ArtUnc_96: 4.3659842526486204e-11 - stat: 0 Uncorr: 1.84e-05 RCES: 1.8747017682820914e-05 @@ -4122,102 +4122,102 @@ bins: ModelRW_2: 8.105706454097633e-05 JES_1: 4.947513314787542e-05 JES_2: 4.947513314787542e-05 - ArtUnc_1: -5.2414622595776756e-15 - ArtUnc_2: 8.207592964731506e-13 - ArtUnc_3: 3.847729041684691e-12 - ArtUnc_4: 1.3792222266566074e-11 - ArtUnc_5: 5.052176641875075e-13 - ArtUnc_6: 2.2494956915663803e-14 - ArtUnc_7: 6.265328750309182e-11 - ArtUnc_8: -2.3772774781838074e-10 - ArtUnc_9: -3.1675878965401614e-12 - ArtUnc_10: -9.980068575842941e-12 - ArtUnc_11: 8.486503372810134e-11 - ArtUnc_12: -1.4472528444016473e-11 - ArtUnc_13: -1.9485505226518077e-10 - ArtUnc_14: 1.3385041147094832e-11 - ArtUnc_15: 1.2777939883775687e-11 - ArtUnc_16: -1.4594415085541144e-12 - ArtUnc_17: -7.622530131599248e-12 - ArtUnc_18: 3.3382253915144836e-13 - ArtUnc_19: -4.174449188947476e-10 - ArtUnc_20: -1.458526363043474e-10 - ArtUnc_21: -1.218326399980731e-10 - ArtUnc_22: 2.9701427574704487e-09 - ArtUnc_23: 2.22998549042183e-10 - ArtUnc_24: 7.119878894201229e-10 - ArtUnc_25: -4.049074824714188e-09 - ArtUnc_26: 1.3627773034302058e-09 - ArtUnc_27: 7.095862095535974e-09 - ArtUnc_28: 5.718772664967846e-10 - ArtUnc_29: 3.751773345446773e-09 - ArtUnc_30: -2.9515041503971795e-09 - ArtUnc_31: -1.1378459994761584e-09 - ArtUnc_32: 2.1546215977208857e-08 - ArtUnc_33: 2.5580061046276632e-11 - ArtUnc_34: -7.500012142836068e-10 - ArtUnc_35: 8.728016111697142e-09 - ArtUnc_36: -1.4591722382617339e-08 - ArtUnc_37: -1.5180310001887535e-07 - ArtUnc_38: -2.9087276501936008e-08 - ArtUnc_39: -2.4003660755313586e-07 - ArtUnc_40: 3.6335764936337553e-09 - ArtUnc_41: -1.7897560141452676e-07 - ArtUnc_42: -3.862399379321751e-09 - ArtUnc_43: 3.891403788701698e-07 - ArtUnc_44: -3.012756355155686e-07 - ArtUnc_45: -2.2701893787055546e-10 - ArtUnc_46: 3.0437265445985966e-08 - ArtUnc_47: -6.821619111218156e-08 - ArtUnc_48: -5.213033624738738e-09 - ArtUnc_49: -7.909571133749282e-07 - ArtUnc_50: 4.000696485550032e-09 - ArtUnc_51: -1.224471599566261e-07 - ArtUnc_52: 2.3873887600907556e-08 - ArtUnc_53: 1.3473575118941014e-08 - ArtUnc_54: -2.9872328342732867e-08 - ArtUnc_55: -1.5813190610402345e-06 - ArtUnc_56: 1.933241606756727e-06 - ArtUnc_57: 4.6978450337945344e-07 - ArtUnc_58: -3.3089357511885516e-06 - ArtUnc_59: 1.8756063896370004e-07 - ArtUnc_60: 3.631987023923681e-06 - ArtUnc_61: -8.974999862879568e-09 - ArtUnc_62: -3.21002633898529e-07 - ArtUnc_63: 3.687766345572266e-08 - ArtUnc_64: 7.773053107357186e-06 - ArtUnc_65: 6.97788139850965e-07 - ArtUnc_66: 8.346360521631023e-06 - ArtUnc_67: -3.417827012533438e-07 - ArtUnc_68: -4.1262878647269415e-07 - ArtUnc_69: -3.535170070934319e-09 - ArtUnc_70: 4.836847420599936e-07 - ArtUnc_71: 2.5243277693487462e-08 - ArtUnc_72: 5.7731325918633595e-06 - ArtUnc_73: 4.6811126185050636e-07 - ArtUnc_74: 1.5770399135300984e-06 - ArtUnc_75: 9.869174798919056e-06 - ArtUnc_76: 7.128038724571136e-08 - ArtUnc_77: -3.145401141298582e-08 - ArtUnc_78: 1.889171597787733e-05 - ArtUnc_79: 1.3499821119504489e-05 - ArtUnc_80: -7.1259305525188e-08 - ArtUnc_81: 4.948333753718327e-07 - ArtUnc_82: -3.5235174352896035e-08 - ArtUnc_83: -5.926496319976261e-08 - ArtUnc_84: 1.4452008476414846e-07 - ArtUnc_85: -1.5083206448382862e-08 - ArtUnc_86: 4.377923905507403e-09 - ArtUnc_87: 5.063614671792069e-09 - ArtUnc_88: -2.873263317578972e-07 - ArtUnc_89: 6.74573155948979e-09 - ArtUnc_90: 9.439684959933751e-08 - ArtUnc_91: -2.3971753920996644e-08 - ArtUnc_92: 4.2682329227800776e-08 - ArtUnc_93: 1.5311556383350169e-09 - ArtUnc_94: -4.599464050392651e-10 - ArtUnc_95: -1.9906259590400175e-08 - ArtUnc_96: 2.3216321592755967e-09 + ArtUnc_1: -5.241462259945504e-15 + ArtUnc_2: 8.207592964730536e-13 + ArtUnc_3: 3.847729041683561e-12 + ArtUnc_4: 1.3792222266569431e-11 + ArtUnc_5: 5.052176641803228e-13 + ArtUnc_6: 2.249495667603643e-14 + ArtUnc_7: 6.265328750309011e-11 + ArtUnc_8: -2.377277478183806e-10 + ArtUnc_9: -3.167587896563486e-12 + ArtUnc_10: -9.980068575788724e-12 + ArtUnc_11: 8.486503372824655e-11 + ArtUnc_12: 1.4472528442572177e-11 + ArtUnc_13: 1.9485505226517446e-10 + ArtUnc_14: 1.3385041148049875e-11 + ArtUnc_15: 1.2777939886617276e-11 + ArtUnc_16: -1.4594414874811343e-12 + ArtUnc_17: -7.622530132064897e-12 + ArtUnc_18: -3.3382254149254044e-13 + ArtUnc_19: 4.1744491889578663e-10 + ArtUnc_20: -1.458526363026746e-10 + ArtUnc_21: -1.2183263999339942e-10 + ArtUnc_22: 2.970142757468545e-09 + ArtUnc_23: 2.2299854903822662e-10 + ArtUnc_24: 7.119878894173299e-10 + ArtUnc_25: -4.04907482471203e-09 + ArtUnc_26: 1.362777303429574e-09 + ArtUnc_27: 7.095862095533802e-09 + ArtUnc_28: -5.718772664874926e-10 + ArtUnc_29: -3.751773345438866e-09 + ArtUnc_30: -2.9515041503778913e-09 + ArtUnc_31: 1.1378459995070667e-09 + ArtUnc_32: 2.1546215977208804e-08 + ArtUnc_33: -2.5580061091301333e-11 + ArtUnc_34: -7.500012142866035e-10 + ArtUnc_35: -8.728016111705376e-09 + ArtUnc_36: 1.4591722382626946e-08 + ArtUnc_37: -1.5180310001887374e-07 + ArtUnc_38: 2.908727650187965e-08 + ArtUnc_39: 2.400366075531249e-07 + ArtUnc_40: 3.6335764936557314e-09 + ArtUnc_41: -1.7897560141455276e-07 + ArtUnc_42: 3.862399379342501e-09 + ArtUnc_43: 3.891403788701593e-07 + ArtUnc_44: -3.012756355155561e-07 + ArtUnc_45: 2.2701893778899755e-10 + ArtUnc_46: 3.043726544595362e-08 + ArtUnc_47: -6.82161911121795e-08 + ArtUnc_48: 5.213033624694447e-09 + ArtUnc_49: 7.909571133748741e-07 + ArtUnc_50: -4.000696485508816e-09 + ArtUnc_51: 1.2244715995664577e-07 + ArtUnc_52: -2.387388760086234e-08 + ArtUnc_53: -1.3473575118922905e-08 + ArtUnc_54: 2.9872328342697794e-08 + ArtUnc_55: -1.581319061040107e-06 + ArtUnc_56: 1.933241606756599e-06 + ArtUnc_57: 4.697845033799855e-07 + ArtUnc_58: -3.308935751188501e-06 + ArtUnc_59: 1.8756063896365827e-07 + ArtUnc_60: -3.6319870239236007e-06 + ArtUnc_61: 8.974999862891205e-09 + ArtUnc_62: -3.2100263389846357e-07 + ArtUnc_63: 3.687766345572873e-08 + ArtUnc_64: -7.773053107356384e-06 + ArtUnc_65: 6.977881398509863e-07 + ArtUnc_66: -8.346360521631696e-06 + ArtUnc_67: -3.417827012533332e-07 + ArtUnc_68: -4.126287864727083e-07 + ArtUnc_69: 3.5351700709203385e-09 + ArtUnc_70: -4.836847420599969e-07 + ArtUnc_71: -2.5243277693506292e-08 + ArtUnc_72: -5.773132591863485e-06 + ArtUnc_73: -4.681112618505477e-07 + ArtUnc_74: -1.577039913530142e-06 + ArtUnc_75: 9.86917479891918e-06 + ArtUnc_76: 7.128038724576999e-08 + ArtUnc_77: -3.1454011412941795e-08 + ArtUnc_78: 1.8891715977876717e-05 + ArtUnc_79: 1.349982111950535e-05 + ArtUnc_80: -7.125930552507109e-08 + ArtUnc_81: 4.94833375371924e-07 + ArtUnc_82: 3.523517435289861e-08 + ArtUnc_83: -5.926496319977509e-08 + ArtUnc_84: -1.4452008476412964e-07 + ArtUnc_85: 1.508320644838305e-08 + ArtUnc_86: 4.377923905507967e-09 + ArtUnc_87: 5.063614671791702e-09 + ArtUnc_88: 6.745731559486469e-09 + ArtUnc_89: 2.873263317578852e-07 + ArtUnc_90: -9.439684959935189e-08 + ArtUnc_91: -2.3971753920997772e-08 + ArtUnc_92: -4.26823292277409e-08 + ArtUnc_93: 1.5311556383332444e-09 + ArtUnc_94: -4.599464050398569e-10 + ArtUnc_95: -1.9906259590373583e-08 + ArtUnc_96: 2.321632159279879e-09 - stat: 0 Uncorr: 3.01e-06 RCES: 3.375061070188212e-06 @@ -4233,102 +4233,102 @@ bins: ModelRW_2: 1.6814292149834914e-06 JES_1: 1.4545258570192214e-05 JES_2: 1.4545258570192214e-05 - ArtUnc_1: -1.901999100018548e-17 - ArtUnc_2: 1.0507157367213475e-14 - ArtUnc_3: 7.40593611506568e-14 - ArtUnc_4: 4.151678287759254e-13 - ArtUnc_5: 1.4607047974815595e-14 - ArtUnc_6: 3.987043341001862e-15 - ArtUnc_7: 2.9871234429879902e-12 - ArtUnc_8: -1.2890110141978409e-11 - ArtUnc_9: 1.9362487676758983e-13 - ArtUnc_10: -1.9130658820515975e-13 - ArtUnc_11: -3.400051044624664e-13 - ArtUnc_12: 3.652002954948537e-14 - ArtUnc_13: -7.1714396580676e-12 - ArtUnc_14: -1.2279063926269335e-13 - ArtUnc_15: 5.068030341871257e-14 - ArtUnc_16: 1.814632633271903e-15 - ArtUnc_17: -2.5823036771678652e-12 - ArtUnc_18: -7.732364378016276e-14 - ArtUnc_19: -1.0368599030456471e-11 - ArtUnc_20: 2.5377948411775244e-11 - ArtUnc_21: -1.835525458104688e-12 - ArtUnc_22: 3.2305271486619654e-10 - ArtUnc_23: 6.5716499618462496e-12 - ArtUnc_24: -1.3152564112477424e-10 - ArtUnc_25: -2.5802325607478847e-10 - ArtUnc_26: 5.448016000663151e-11 - ArtUnc_27: 9.181928486936754e-10 - ArtUnc_28: -4.2663113324387277e-11 - ArtUnc_29: -2.121381067982099e-10 - ArtUnc_30: 1.233692589427189e-10 - ArtUnc_31: 5.0572066257513994e-11 - ArtUnc_32: 1.98979108431419e-09 - ArtUnc_33: 5.964743403610258e-13 - ArtUnc_34: -4.229102206599528e-11 - ArtUnc_35: 6.37277150007288e-11 - ArtUnc_36: -8.992438540247284e-10 - ArtUnc_37: -2.8238691842799766e-09 - ArtUnc_38: -5.02980540834054e-10 - ArtUnc_39: -3.760335301555371e-09 - ArtUnc_40: -1.5225495777843334e-11 - ArtUnc_41: -1.5530794004637835e-08 - ArtUnc_42: -1.1200097110878717e-10 - ArtUnc_43: 3.320458370958875e-08 - ArtUnc_44: 1.612778691079054e-08 - ArtUnc_45: 1.9434751822814306e-10 - ArtUnc_46: 4.818719281876162e-09 - ArtUnc_47: -3.593683334232163e-10 - ArtUnc_48: 1.4452431641240683e-11 - ArtUnc_49: -1.1561914693040196e-07 - ArtUnc_50: -3.095265809794582e-09 - ArtUnc_51: 1.9902500579980663e-09 - ArtUnc_52: -1.0551540835725304e-09 - ArtUnc_53: -2.5839868436903215e-11 - ArtUnc_54: 2.735989615037522e-10 - ArtUnc_55: -1.7146668510367313e-08 - ArtUnc_56: -9.346685172218939e-09 - ArtUnc_57: -2.2964573279146082e-09 - ArtUnc_58: -2.5410501696593928e-08 - ArtUnc_59: 2.4527977930520205e-10 - ArtUnc_60: -4.2690864286483435e-08 - ArtUnc_61: -1.0006795074036811e-10 - ArtUnc_62: -1.5073637831944534e-09 - ArtUnc_63: 3.875254156561107e-11 - ArtUnc_64: 7.557892352678368e-08 - ArtUnc_65: -7.762771204768927e-09 - ArtUnc_66: -2.1676490443905314e-07 - ArtUnc_67: 3.088925173793289e-08 - ArtUnc_68: -3.777323449849427e-08 - ArtUnc_69: 9.873502259304843e-09 - ArtUnc_70: -2.373128831845292e-07 - ArtUnc_71: -2.8574018820259706e-09 - ArtUnc_72: 7.728916750925105e-08 - ArtUnc_73: 1.8004829794941364e-08 - ArtUnc_74: -1.1896352758006238e-06 - ArtUnc_75: 2.2098648925168953e-07 - ArtUnc_76: 2.786018071151877e-08 - ArtUnc_77: 7.187084774474957e-08 - ArtUnc_78: 2.2916415135349406e-06 - ArtUnc_79: -4.401578860181418e-06 - ArtUnc_80: 8.779094540537243e-08 - ArtUnc_81: -1.1345022521153709e-07 - ArtUnc_82: 1.138157692268845e-08 - ArtUnc_83: 3.163933993362653e-07 - ArtUnc_84: 1.3329149678621984e-06 - ArtUnc_85: 2.1353944709585353e-08 - ArtUnc_86: 5.5925988440237304e-08 - ArtUnc_87: 1.094170745951463e-07 - ArtUnc_88: -2.670456958818338e-06 - ArtUnc_89: 1.1376874495448061e-07 - ArtUnc_90: 4.823102494690155e-07 - ArtUnc_91: 1.4649026332981122e-07 - ArtUnc_92: 8.78447031792603e-06 - ArtUnc_93: 3.28059110009874e-08 - ArtUnc_94: 1.881002465380906e-07 - ArtUnc_95: -4.025966804622711e-07 - ArtUnc_96: -1.8317314419583592e-08 + ArtUnc_1: -1.9019991291243223e-17 + ArtUnc_2: 1.0507157366899366e-14 + ArtUnc_3: 7.405936115075455e-14 + ArtUnc_4: 4.1516782877622893e-13 + ArtUnc_5: 1.4607047978177815e-14 + ArtUnc_6: 3.987043331119774e-15 + ArtUnc_7: 2.9871234429873815e-12 + ArtUnc_8: -1.28901101419786e-11 + ArtUnc_9: 1.936248767826609e-13 + ArtUnc_10: -1.9130658824214493e-13 + ArtUnc_11: -3.400051045086563e-13 + ArtUnc_12: -3.6520029181094834e-14 + ArtUnc_13: 7.1714396580652244e-12 + ArtUnc_14: -1.2279063899775683e-13 + ArtUnc_15: 5.068030375999428e-14 + ArtUnc_16: 1.814635154565131e-15 + ArtUnc_17: -2.5823036770884942e-12 + ArtUnc_18: 7.732364342860023e-14 + ArtUnc_19: 1.0368599030336335e-11 + ArtUnc_20: 2.537794841164756e-11 + ArtUnc_21: -1.8355254578712134e-12 + ArtUnc_22: 3.23052714866025e-10 + ArtUnc_23: 6.571649960662051e-12 + ArtUnc_24: -1.315256411252612e-10 + ArtUnc_25: -2.5802325607447383e-10 + ArtUnc_26: 5.448016000703067e-11 + ArtUnc_27: 9.181928486933075e-10 + ArtUnc_28: 4.266311332429477e-11 + ArtUnc_29: 2.121381067959539e-10 + ArtUnc_30: 1.2336925894313725e-10 + ArtUnc_31: -5.0572066259762264e-11 + ArtUnc_32: 1.9897910843142253e-09 + ArtUnc_33: -5.964743379366253e-13 + ArtUnc_34: -4.2291022066909204e-11 + ArtUnc_35: -6.372771500145227e-11 + ArtUnc_36: 8.992438540225526e-10 + ArtUnc_37: -2.823869184278453e-09 + ArtUnc_38: 5.029805408362752e-10 + ArtUnc_39: 3.7603353015553514e-09 + ArtUnc_40: -1.522549579025299e-11 + ArtUnc_41: -1.553079400463468e-08 + ArtUnc_42: 1.1200097112152992e-10 + ArtUnc_43: 3.320458370959093e-08 + ArtUnc_44: 1.612778691079218e-08 + ArtUnc_45: -1.9434751816654295e-10 + ArtUnc_46: 4.818719281818341e-09 + ArtUnc_47: -3.5936833342592e-10 + ArtUnc_48: -1.4452431492510908e-11 + ArtUnc_49: 1.156191469303947e-07 + ArtUnc_50: 3.095265809797049e-09 + ArtUnc_51: -1.990250058016618e-09 + ArtUnc_52: 1.0551540835680762e-09 + ArtUnc_53: 2.583986842251015e-11 + ArtUnc_54: -2.7359896160844426e-10 + ArtUnc_55: -1.714666851039895e-08 + ArtUnc_56: -9.346685172236354e-09 + ArtUnc_57: -2.2964573279275797e-09 + ArtUnc_58: -2.541050169654537e-08 + ArtUnc_59: 2.4527977931268276e-10 + ArtUnc_60: 4.26908642864609e-08 + ArtUnc_61: 1.0006795078580084e-10 + ArtUnc_62: -1.5073637832204924e-09 + ArtUnc_63: 3.8752541563071965e-11 + ArtUnc_64: -7.557892352678078e-08 + ArtUnc_65: -7.762771204776205e-09 + ArtUnc_66: 2.1676490443910404e-07 + ArtUnc_67: 3.088925173796808e-08 + ArtUnc_68: -3.7773234498553116e-08 + ArtUnc_69: -9.873502259301812e-09 + ArtUnc_70: 2.373128831845414e-07 + ArtUnc_71: 2.8574018820224212e-09 + ArtUnc_72: -7.728916750927325e-08 + ArtUnc_73: -1.8004829794967403e-08 + ArtUnc_74: 1.1896352758006183e-06 + ArtUnc_75: 2.2098648925167571e-07 + ArtUnc_76: 2.7860180711512064e-08 + ArtUnc_77: 7.187084774475774e-08 + ArtUnc_78: 2.2916415135354548e-06 + ArtUnc_79: -4.401578860181456e-06 + ArtUnc_80: 8.779094540533577e-08 + ArtUnc_81: -1.1345022521150932e-07 + ArtUnc_82: -1.1381576922669683e-08 + ArtUnc_83: 3.163933993362474e-07 + ArtUnc_84: -1.3329149678621743e-06 + ArtUnc_85: -2.135394470958957e-08 + ArtUnc_86: 5.592598844023283e-08 + ArtUnc_87: 1.0941707459513449e-07 + ArtUnc_88: 1.1376874495446983e-07 + ArtUnc_89: 2.6704569588183046e-06 + ArtUnc_90: -4.823102494690392e-07 + ArtUnc_91: 1.4649026332982186e-07 + ArtUnc_92: -8.784470317925978e-06 + ArtUnc_93: 3.280591100098844e-08 + ArtUnc_94: 1.8810024653809077e-07 + ArtUnc_95: -4.025966804622898e-07 + ArtUnc_96: -1.8317314419579824e-08 - stat: 0 Uncorr: 4.54e-07 RCES: 1.5528923831354185e-06 @@ -4344,102 +4344,102 @@ bins: ModelRW_2: 6.33706268872259e-06 JES_1: 1.4205802554414165e-06 JES_2: 1.4205802554414165e-06 - ArtUnc_1: 2.3592717455278063e-20 - ArtUnc_2: -5.922629162227702e-18 - ArtUnc_3: -1.881943600015444e-17 - ArtUnc_4: 3.1581875786552915e-17 - ArtUnc_5: 1.5937575158089415e-18 - ArtUnc_6: 3.2893423568347272e-18 - ArtUnc_7: 1.2239723672629012e-15 - ArtUnc_8: -2.2074775992875465e-14 - ArtUnc_9: 6.704927997723987e-16 - ArtUnc_10: 2.769940885779498e-14 - ArtUnc_11: -5.873909050918547e-14 - ArtUnc_12: 4.6646760813590076e-15 - ArtUnc_13: 3.208249464110612e-14 - ArtUnc_14: -2.768336938859504e-15 - ArtUnc_15: 7.564761724867157e-15 - ArtUnc_16: -4.898938035446411e-16 - ArtUnc_17: -7.062103028399974e-15 - ArtUnc_18: -5.255133974819861e-16 - ArtUnc_19: -1.6363092567285706e-14 - ArtUnc_20: -2.3889846365697364e-13 - ArtUnc_21: 2.0807479149316982e-14 - ArtUnc_22: -5.297202828929652e-12 - ArtUnc_23: -1.9082778110477102e-13 - ArtUnc_24: 6.039201406219688e-12 - ArtUnc_25: 2.6715907554407336e-12 - ArtUnc_26: -2.796639331847442e-13 - ArtUnc_27: -1.9072862813521637e-11 - ArtUnc_28: 3.1805753313814845e-13 - ArtUnc_29: -2.342851279918988e-12 - ArtUnc_30: -2.1374606686935742e-13 - ArtUnc_31: -1.0815260613105309e-13 - ArtUnc_32: -1.96863975719e-11 - ArtUnc_33: 1.56368002495703e-14 - ArtUnc_34: 4.941397788678146e-12 - ArtUnc_35: -3.4343154224011755e-12 - ArtUnc_36: 4.797358782019336e-11 - ArtUnc_37: 5.773888609002955e-11 - ArtUnc_38: 9.251216849880243e-12 - ArtUnc_39: 6.909058451839528e-11 - ArtUnc_40: 1.692511740888848e-12 - ArtUnc_41: 3.7053698468621566e-10 - ArtUnc_42: -1.8553929057684222e-11 - ArtUnc_43: -4.846323282585256e-10 - ArtUnc_44: -3.327459492748151e-11 - ArtUnc_45: -7.597393140041539e-13 - ArtUnc_46: -6.897334913039593e-11 - ArtUnc_47: 1.5566079258685414e-10 - ArtUnc_48: 7.485089690148145e-12 - ArtUnc_49: 4.1862286539349234e-10 - ArtUnc_50: -6.302238876177875e-11 - ArtUnc_51: 9.65302787763233e-10 - ArtUnc_52: -5.721657990641889e-10 - ArtUnc_53: 2.4895736849703775e-11 - ArtUnc_54: 7.617696381166007e-11 - ArtUnc_55: -1.3478870594900175e-08 - ArtUnc_56: 1.2402321011990233e-08 - ArtUnc_57: 3.5571456105792596e-09 - ArtUnc_58: -2.5561509082484207e-08 - ArtUnc_59: -1.2383163719012923e-10 - ArtUnc_60: 3.2222219760102e-08 - ArtUnc_61: 5.225128803503071e-12 - ArtUnc_62: -8.974571982242052e-10 - ArtUnc_63: 9.44057460845764e-11 - ArtUnc_64: 2.4480318754976328e-08 - ArtUnc_65: 1.042472983640617e-09 - ArtUnc_66: 3.516679646392288e-08 - ArtUnc_67: 3.5298812203812566e-10 - ArtUnc_68: 1.9926689573872634e-09 - ArtUnc_69: 3.938321250106937e-10 - ArtUnc_70: -9.539111780809803e-09 - ArtUnc_71: -2.2666150732372423e-10 - ArtUnc_72: -4.3344959477670075e-08 - ArtUnc_73: -3.4399107786647648e-09 - ArtUnc_74: -3.766214542747313e-08 - ArtUnc_75: -8.85383302597457e-08 - ArtUnc_76: -5.078556975299819e-10 - ArtUnc_77: 2.6350754104581286e-09 - ArtUnc_78: -5.219583627352078e-08 - ArtUnc_79: -1.928632086792721e-07 - ArtUnc_80: 2.0279690969120902e-09 - ArtUnc_81: -7.292739062852815e-09 - ArtUnc_82: 5.17014190383794e-10 - ArtUnc_83: 2.2541666134291343e-08 - ArtUnc_84: 3.969306237175464e-08 - ArtUnc_85: -2.686872478207086e-06 - ArtUnc_86: 4.1414736198157015e-07 - ArtUnc_87: 7.862979078956051e-07 - ArtUnc_88: -4.4423448886376586e-08 - ArtUnc_89: 1.172101147051345e-08 - ArtUnc_90: -2.65116567570053e-07 - ArtUnc_91: -1.6784554078079344e-06 - ArtUnc_92: 1.550500835139886e-08 - ArtUnc_93: 1.9257018402597083e-08 - ArtUnc_94: 2.228125152342082e-08 - ArtUnc_95: -8.447286155149883e-07 - ArtUnc_96: -1.7506003847933813e-07 + ArtUnc_1: 2.35927203457836e-20 + ArtUnc_2: -5.922629161146333e-18 + ArtUnc_3: -1.8819435998532412e-17 + ArtUnc_4: 3.158187577786074e-17 + ArtUnc_5: 1.5937576017366522e-18 + ArtUnc_6: 3.289342185321362e-18 + ArtUnc_7: 1.2239723672715737e-15 + ArtUnc_8: -2.2074775992870183e-14 + ArtUnc_9: 6.704927999036726e-16 + ArtUnc_10: 2.7699408858070488e-14 + ArtUnc_11: -5.873909050903443e-14 + ArtUnc_12: -4.664676081797592e-15 + ArtUnc_13: -3.2082494641071664e-14 + ArtUnc_14: -2.7683369430503856e-15 + ArtUnc_15: 7.564761722243567e-15 + ArtUnc_16: -4.898938440266008e-16 + ArtUnc_17: -7.0621030270174545e-15 + ArtUnc_18: 5.255133824119982e-16 + ArtUnc_19: 1.636309256674278e-14 + ArtUnc_20: -2.388984636576834e-13 + ArtUnc_21: 2.0807479147216883e-14 + ArtUnc_22: -5.297202828927104e-12 + ArtUnc_23: -1.9082778121082117e-13 + ArtUnc_24: 6.039201406219987e-12 + ArtUnc_25: 2.6715907554250054e-12 + ArtUnc_26: -2.7966393291241113e-13 + ArtUnc_27: -1.9072862813516748e-11 + ArtUnc_28: -3.1805753329792926e-13 + ArtUnc_29: 2.342851279537203e-12 + ArtUnc_30: -2.1374606682004223e-13 + ArtUnc_31: 1.0815260616289436e-13 + ArtUnc_32: -1.9686397571900833e-11 + ArtUnc_33: -1.5636800167330968e-14 + ArtUnc_34: 4.9413977886084574e-12 + ArtUnc_35: 3.43431542246607e-12 + ArtUnc_36: -4.797358782039034e-11 + ArtUnc_37: 5.773888609003612e-11 + ArtUnc_38: -9.251216849801803e-12 + ArtUnc_39: -6.909058451839399e-11 + ArtUnc_40: 1.6925117406345058e-12 + ArtUnc_41: 3.7053698468647157e-10 + ArtUnc_42: 1.855392905824653e-11 + ArtUnc_43: -4.846323282584783e-10 + ArtUnc_44: -3.327459492762007e-11 + ArtUnc_45: 7.597393152306623e-13 + ArtUnc_46: -6.897334913058715e-11 + ArtUnc_47: 1.5566079258656675e-10 + ArtUnc_48: -7.485089687541113e-12 + ArtUnc_49: -4.1862286539354177e-10 + ArtUnc_50: 6.302238876174077e-11 + ArtUnc_51: -9.653027877636256e-10 + ArtUnc_52: 5.72165799063931e-10 + ArtUnc_53: -2.489573684983785e-11 + ArtUnc_54: -7.617696381330824e-11 + ArtUnc_55: -1.3478870594901272e-08 + ArtUnc_56: 1.2402321011988667e-08 + ArtUnc_57: 3.5571456105850805e-09 + ArtUnc_58: -2.556150908248414e-08 + ArtUnc_59: -1.2383163719166848e-10 + ArtUnc_60: -3.2222219760101495e-08 + ArtUnc_61: -5.2251288050979926e-12 + ArtUnc_62: -8.97457198223341e-10 + ArtUnc_63: 9.440574608420388e-11 + ArtUnc_64: -2.448031875497111e-08 + ArtUnc_65: 1.042472983643038e-09 + ArtUnc_66: -3.5166796463923804e-08 + ArtUnc_67: 3.52988122038554e-10 + ArtUnc_68: 1.992668957386929e-09 + ArtUnc_69: -3.938321250102191e-10 + ArtUnc_70: 9.539111780811317e-09 + ArtUnc_71: 2.266615073220808e-10 + ArtUnc_72: 4.3344959477670267e-08 + ArtUnc_73: 3.439910778665954e-09 + ArtUnc_74: 3.766214542747073e-08 + ArtUnc_75: -8.853833025974996e-08 + ArtUnc_76: -5.07855697525207e-10 + ArtUnc_77: 2.6350754104537003e-09 + ArtUnc_78: -5.219583627350703e-08 + ArtUnc_79: -1.9286320867927353e-07 + ArtUnc_80: 2.0279690969114773e-09 + ArtUnc_81: -7.292739062847744e-09 + ArtUnc_82: -5.170141903927744e-10 + ArtUnc_83: 2.2541666134281235e-08 + ArtUnc_84: -3.9693062371755816e-08 + ArtUnc_85: 2.686872478207075e-06 + ArtUnc_86: 4.141473619815568e-07 + ArtUnc_87: 7.862979078955503e-07 + ArtUnc_88: 1.1721011470516791e-08 + ArtUnc_89: 4.4423448886381265e-08 + ArtUnc_90: 2.651165675700547e-07 + ArtUnc_91: -1.6784554078079242e-06 + ArtUnc_92: -1.550500835139394e-08 + ArtUnc_93: 1.9257018402611466e-08 + ArtUnc_94: 2.2281251523428708e-08 + ArtUnc_95: -8.447286155149897e-07 + ArtUnc_96: -1.7506003847933434e-07 - stat: 0 Uncorr: 0.0005020000000000001 RCES: 0.0022636470868048317 @@ -4455,102 +4455,102 @@ bins: ModelRW_2: 2.4847732290895282e-05 JES_1: 0.0011003995728825053 JES_2: 0.0011003995728825053 - ArtUnc_1: -4.650512749510166e-09 - ArtUnc_2: 2.615040433829322e-07 - ArtUnc_3: 5.12557246908949e-07 - ArtUnc_4: 1.0849380135809137e-06 - ArtUnc_5: 7.030184434031912e-08 - ArtUnc_6: -6.666096450905855e-08 - ArtUnc_7: 8.926475091345058e-06 - ArtUnc_8: -3.752463903315616e-05 - ArtUnc_9: -4.525940513413942e-06 - ArtUnc_10: 3.1467905590806136e-05 - ArtUnc_11: -2.023314790240504e-05 - ArtUnc_12: -2.0219473189516724e-06 - ArtUnc_13: 4.0032878530944104e-05 - ArtUnc_14: 9.542902962029522e-06 - ArtUnc_15: -1.5817618089945143e-05 - ArtUnc_16: 5.069765305481629e-07 - ArtUnc_17: -1.08891559690467e-05 - ArtUnc_18: -7.854719394650325e-07 - ArtUnc_19: -2.3706046886005396e-05 - ArtUnc_20: -1.9083074205274192e-05 - ArtUnc_21: 4.747888848598477e-07 - ArtUnc_22: 0.0001673429516106384 - ArtUnc_23: 1.8956321121486008e-06 - ArtUnc_24: 0.00013912348563776817 - ArtUnc_25: 0.0001879940038701234 - ArtUnc_26: 3.117946243289524e-05 - ArtUnc_27: 0.00021123077073010452 - ArtUnc_28: -2.6931251017312914e-06 - ArtUnc_29: -0.0005732465940048247 - ArtUnc_30: 0.00012951670447790492 - ArtUnc_31: 5.3867864331504804e-05 - ArtUnc_32: -0.00022791727755530698 - ArtUnc_33: -2.3810441820842363e-07 - ArtUnc_34: -7.330782394984981e-06 - ArtUnc_35: 1.7685369090595978e-05 - ArtUnc_36: 2.472431294429736e-06 - ArtUnc_37: -1.4607163820264948e-05 - ArtUnc_38: -2.6176429082263394e-06 - ArtUnc_39: 6.607915967338179e-07 - ArtUnc_40: -5.1362874816019386e-08 - ArtUnc_41: 1.5135293048599682e-06 - ArtUnc_42: 3.930922079682163e-08 - ArtUnc_43: 1.304912887440288e-06 - ArtUnc_44: -7.960303951658007e-06 - ArtUnc_45: -5.351476142610959e-08 - ArtUnc_46: -3.500460120766551e-07 - ArtUnc_47: -2.6985309472054276e-07 - ArtUnc_48: -6.382660114581625e-09 - ArtUnc_49: -2.434139705635471e-06 - ArtUnc_50: -4.811695723307431e-07 - ArtUnc_51: -2.879156312046098e-08 - ArtUnc_52: -1.9332838629887088e-08 - ArtUnc_53: -5.698775424400125e-09 - ArtUnc_54: 1.2428319793268545e-08 - ArtUnc_55: 1.829936559843659e-08 - ArtUnc_56: -9.683602000647387e-10 - ArtUnc_57: -2.0089989751234485e-09 - ArtUnc_58: -4.093810632764918e-09 - ArtUnc_59: 7.913059982895017e-09 - ArtUnc_60: -6.358131181265117e-09 - ArtUnc_61: -3.316418941661967e-11 - ArtUnc_62: 4.826728173644871e-09 - ArtUnc_63: -5.171061553900622e-10 - ArtUnc_64: -3.349431848054753e-07 - ArtUnc_65: -1.1614407621022927e-08 - ArtUnc_66: 2.3340415670960243e-07 - ArtUnc_67: -4.714533807608359e-09 - ArtUnc_68: -5.125500757965474e-10 - ArtUnc_69: -2.568175920169571e-11 - ArtUnc_70: 4.617791891800068e-10 - ArtUnc_71: 1.7269565631121524e-11 - ArtUnc_72: 1.0426947546369062e-09 - ArtUnc_73: -1.3974946479046988e-10 - ArtUnc_74: 7.388353615943769e-11 - ArtUnc_75: 2.2023115713548736e-09 - ArtUnc_76: -3.2388756321363645e-11 - ArtUnc_77: 1.683694432077247e-10 - ArtUnc_78: -2.3319062783812886e-09 - ArtUnc_79: 6.984125752366835e-10 - ArtUnc_80: 2.421067285842708e-10 - ArtUnc_81: -1.064510427534945e-10 - ArtUnc_82: -9.551534802834587e-12 - ArtUnc_83: 4.2477216540959984e-11 - ArtUnc_84: -1.2581519448914072e-11 - ArtUnc_85: 2.8532031390087507e-13 - ArtUnc_86: -7.1550686481024196e-12 - ArtUnc_87: -8.385559175990136e-12 - ArtUnc_88: -6.684767466889214e-11 - ArtUnc_89: 9.054072666778e-12 - ArtUnc_90: -1.8249590088503793e-11 - ArtUnc_91: -1.376928279346296e-12 - ArtUnc_92: 2.0830196938468465e-10 - ArtUnc_93: 1.474440598941585e-11 - ArtUnc_94: 2.806228895777921e-12 - ArtUnc_95: -4.903718148236899e-11 - ArtUnc_96: 1.1351687655146475e-11 + ArtUnc_1: -4.650512749355942e-09 + ArtUnc_2: 2.6150404338355495e-07 + ArtUnc_3: 5.12557246908968e-07 + ArtUnc_4: 1.0849380135812087e-06 + ArtUnc_5: 7.030184433999337e-08 + ArtUnc_6: -6.666096450952222e-08 + ArtUnc_7: 8.926475091343498e-06 + ArtUnc_8: -3.752463903315676e-05 + ArtUnc_9: -4.525940513413666e-06 + ArtUnc_10: 3.1467905590806244e-05 + ArtUnc_11: -2.0233147902406997e-05 + ArtUnc_12: 2.021947318951445e-06 + ArtUnc_13: -4.003287853094295e-05 + ArtUnc_14: 9.54290296203011e-06 + ArtUnc_15: -1.5817618089945295e-05 + ArtUnc_16: 5.069765305450733e-07 + ArtUnc_17: -1.0889155969046879e-05 + ArtUnc_18: 7.854719394652192e-07 + ArtUnc_19: 2.3706046886005644e-05 + ArtUnc_20: -1.9083074205274243e-05 + ArtUnc_21: 4.747888848597217e-07 + ArtUnc_22: 0.00016734295161063723 + ArtUnc_23: 1.8956321121513973e-06 + ArtUnc_24: 0.0001391234856377672 + ArtUnc_25: 0.00018799400387012392 + ArtUnc_26: 3.117946243289525e-05 + ArtUnc_27: 0.00021123077073010498 + ArtUnc_28: 2.693125101744767e-06 + ArtUnc_29: 0.0005732465940048262 + ArtUnc_30: 0.00012951670447777832 + ArtUnc_31: -5.386786433193626e-05 + ArtUnc_32: -0.0002279172775553063 + ArtUnc_33: 2.3810441821111926e-07 + ArtUnc_34: -7.330782394982886e-06 + ArtUnc_35: -1.7685369090595917e-05 + ArtUnc_36: -2.4724312944298536e-06 + ArtUnc_37: -1.4607163820264878e-05 + ArtUnc_38: 2.6176429082255432e-06 + ArtUnc_39: -6.607915967338914e-07 + ArtUnc_40: -5.1362874816051534e-08 + ArtUnc_41: 1.5135293048599083e-06 + ArtUnc_42: -3.930922079681527e-08 + ArtUnc_43: 1.3049128874402319e-06 + ArtUnc_44: -7.96030395165809e-06 + ArtUnc_45: 5.351476142624853e-08 + ArtUnc_46: -3.500460120766658e-07 + ArtUnc_47: -2.698530947205398e-07 + ArtUnc_48: 6.382660114578908e-09 + ArtUnc_49: 2.4341397056357427e-06 + ArtUnc_50: 4.81169572330774e-07 + ArtUnc_51: 2.879156312045966e-08 + ArtUnc_52: 1.933283862988446e-08 + ArtUnc_53: 5.698775424400118e-09 + ArtUnc_54: -1.2428319793269074e-08 + ArtUnc_55: 1.8299365598447446e-08 + ArtUnc_56: -9.683602000634305e-10 + ArtUnc_57: -2.008998975123179e-09 + ArtUnc_58: -4.09381063276111e-09 + ArtUnc_59: 7.913059982895237e-09 + ArtUnc_60: 6.358131181272643e-09 + ArtUnc_61: 3.316418941539378e-11 + ArtUnc_62: 4.826728173643972e-09 + ArtUnc_63: -5.171061553907083e-10 + ArtUnc_64: 3.34943184805511e-07 + ArtUnc_65: -1.1614407621026812e-08 + ArtUnc_66: -2.3340415670957435e-07 + ArtUnc_67: -4.714533807607662e-09 + ArtUnc_68: -5.125500757971282e-10 + ArtUnc_69: 2.5681759201689222e-11 + ArtUnc_70: -4.617791891797858e-10 + ArtUnc_71: -1.726956563111836e-11 + ArtUnc_72: -1.0426947546361144e-09 + ArtUnc_73: 1.3974946479052858e-10 + ArtUnc_74: -7.388353615932547e-11 + ArtUnc_75: 2.2023115713533785e-09 + ArtUnc_76: -3.238875632136181e-11 + ArtUnc_77: 1.683694432077045e-10 + ArtUnc_78: -2.3319062783790383e-09 + ArtUnc_79: 6.984125752352948e-10 + ArtUnc_80: 2.4210672858428407e-10 + ArtUnc_81: -1.0645104275344316e-10 + ArtUnc_82: 9.551534802832154e-12 + ArtUnc_83: 4.247721654093233e-11 + ArtUnc_84: 1.2581519448969144e-11 + ArtUnc_85: -2.853203139020557e-13 + ArtUnc_86: -7.1550686480950606e-12 + ArtUnc_87: -8.385559175981213e-12 + ArtUnc_88: 9.054072666771776e-12 + ArtUnc_89: 6.684767466884986e-11 + ArtUnc_90: 1.8249590088465067e-11 + ArtUnc_91: -1.3769282793509156e-12 + ArtUnc_92: -2.0830196938451975e-10 + ArtUnc_93: 1.474440598941191e-11 + ArtUnc_94: 2.8062288957760026e-12 + ArtUnc_95: -4.9037181482300245e-11 + ArtUnc_96: 1.1351687655157902e-11 - stat: 0 Uncorr: 0.000424 RCES: 0.00015014629665762656 @@ -4566,102 +4566,102 @@ bins: ModelRW_2: 0.0008454734361291311 JES_1: 0.0004163628187050328 JES_2: 0.0004163628187050328 - ArtUnc_1: 5.471569995891646e-10 - ArtUnc_2: -2.1548459534169628e-08 - ArtUnc_3: 1.6107173820232725e-09 - ArtUnc_4: 1.8790643118297607e-07 - ArtUnc_5: 1.050117042570297e-09 - ArtUnc_6: 1.4980021086587036e-08 - ArtUnc_7: 1.0716030983490844e-06 - ArtUnc_8: -5.852027745173473e-06 - ArtUnc_9: 7.491192402189114e-07 - ArtUnc_10: -8.052950538933017e-08 - ArtUnc_11: -5.7252344852199985e-06 - ArtUnc_12: 9.685501549657312e-07 - ArtUnc_13: 1.3424257850249387e-06 - ArtUnc_14: -9.956049613005863e-07 - ArtUnc_15: 5.297725506633483e-07 - ArtUnc_16: 1.673837768454332e-08 - ArtUnc_17: -3.582507838236449e-07 - ArtUnc_18: 1.2647274373508488e-08 - ArtUnc_19: -1.2336629966632117e-06 - ArtUnc_20: 8.403154663433771e-07 - ArtUnc_21: 6.791298681435195e-07 - ArtUnc_22: -1.776150220884706e-06 - ArtUnc_23: -4.784905450234038e-07 - ArtUnc_24: -5.1696968831452726e-06 - ArtUnc_25: 2.821350325782999e-05 - ArtUnc_26: -6.758352126525412e-06 - ArtUnc_27: -1.948245245698466e-05 - ArtUnc_28: 1.8615587928714592e-07 - ArtUnc_29: -4.9400028648362785e-06 - ArtUnc_30: 2.5959751638211684e-06 - ArtUnc_31: 1.0763248007906184e-06 - ArtUnc_32: -3.287425978178637e-05 - ArtUnc_33: 3.2994683073729474e-08 - ArtUnc_34: -1.234940266205477e-06 - ArtUnc_35: 6.191515490196092e-06 - ArtUnc_36: 2.7249485883068733e-06 - ArtUnc_37: -5.989822561698192e-05 - ArtUnc_38: -1.0403639627465775e-05 - ArtUnc_39: -7.720196274664049e-05 - ArtUnc_40: 1.5220534773968058e-06 - ArtUnc_41: 1.709379278867283e-05 - ArtUnc_42: -8.11450519569054e-07 - ArtUnc_43: -1.3715268834483381e-05 - ArtUnc_44: 0.0002462097444531081 - ArtUnc_45: 1.2730256982183371e-06 - ArtUnc_46: 1.1643913116449376e-05 - ArtUnc_47: 1.629978914010714e-06 - ArtUnc_48: 2.280929511647473e-07 - ArtUnc_49: 3.6345767126120526e-05 - ArtUnc_50: 2.4422571255477306e-06 - ArtUnc_51: 6.822122723980482e-08 - ArtUnc_52: -5.976234737191764e-08 - ArtUnc_53: 1.8446310222817315e-08 - ArtUnc_54: -2.4751852109218752e-08 - ArtUnc_55: 1.131003801326065e-06 - ArtUnc_56: 1.0759820264169869e-06 - ArtUnc_57: 3.0780950207663535e-07 - ArtUnc_58: 6.812023712735954e-07 - ArtUnc_59: -7.960672216214537e-09 - ArtUnc_60: 5.267916630689111e-07 - ArtUnc_61: 3.39970164677748e-10 - ArtUnc_62: -6.665603912810152e-09 - ArtUnc_63: 7.138800656329359e-10 - ArtUnc_64: 2.477585785184677e-06 - ArtUnc_65: 3.6242879105329454e-08 - ArtUnc_66: -1.838464013018305e-06 - ArtUnc_67: 2.718142424691705e-08 - ArtUnc_68: -2.8193276372483382e-08 - ArtUnc_69: 5.427607805245182e-10 - ArtUnc_70: -3.084661349746725e-09 - ArtUnc_71: 5.447159219783033e-11 - ArtUnc_72: 2.1302205731501905e-08 - ArtUnc_73: 8.47153107572282e-10 - ArtUnc_74: 1.1628840669622708e-08 - ArtUnc_75: 1.7170116614497963e-08 - ArtUnc_76: -2.3415368954742075e-10 - ArtUnc_77: -2.7783117168968716e-10 - ArtUnc_78: 3.2602119554402305e-08 - ArtUnc_79: 1.0463517159940953e-08 - ArtUnc_80: -3.450248147908858e-10 - ArtUnc_81: 7.482156465457027e-10 - ArtUnc_82: -3.8370527796877e-11 - ArtUnc_83: -3.2471216627324176e-11 - ArtUnc_84: 1.4283148435102442e-09 - ArtUnc_85: -2.316766223558353e-11 - ArtUnc_86: 6.903485286948077e-11 - ArtUnc_87: 6.463824938402307e-11 - ArtUnc_88: -3.636593406602767e-10 - ArtUnc_89: 6.413357358594171e-12 - ArtUnc_90: 2.5940032189819596e-10 - ArtUnc_91: 6.457000917867735e-11 - ArtUnc_92: -1.2350529808453373e-09 - ArtUnc_93: -1.151435439702523e-11 - ArtUnc_94: -3.215014335109707e-11 - ArtUnc_95: -9.74700949230058e-11 - ArtUnc_96: -6.133126016763498e-11 + ArtUnc_1: 5.471569996118318e-10 + ArtUnc_2: -2.1548459534153544e-08 + ArtUnc_3: 1.6107173820174696e-09 + ArtUnc_4: 1.879064311830434e-07 + ArtUnc_5: 1.050117042374516e-09 + ArtUnc_6: 1.4980021086434547e-08 + ArtUnc_7: 1.0716030983489342e-06 + ArtUnc_8: -5.8520277451735335e-06 + ArtUnc_9: 7.491192402186086e-07 + ArtUnc_10: -8.052950538988503e-08 + ArtUnc_11: -5.725234485220118e-06 + ArtUnc_12: -9.685501549661442e-07 + ArtUnc_13: -1.3424257850248628e-06 + ArtUnc_14: -9.956049613002278e-07 + ArtUnc_15: 5.29772550663397e-07 + ArtUnc_16: 1.6738377684272918e-08 + ArtUnc_17: -3.582507838237691e-07 + ArtUnc_18: -1.264727437334715e-08 + ArtUnc_19: 1.233662996663388e-06 + ArtUnc_20: 8.403154663435293e-07 + ArtUnc_21: 6.79129868143396e-07 + ArtUnc_22: -1.776150220884529e-06 + ArtUnc_23: -4.784905450229317e-07 + ArtUnc_24: -5.169696883145389e-06 + ArtUnc_25: 2.8213503257829692e-05 + ArtUnc_26: -6.758352126525302e-06 + ArtUnc_27: -1.9482452456984413e-05 + ArtUnc_28: -1.8615587928710915e-07 + ArtUnc_29: 4.94000286483612e-06 + ArtUnc_30: 2.595975163818299e-06 + ArtUnc_31: -1.076324800799102e-06 + ArtUnc_32: -3.2874259781786615e-05 + ArtUnc_33: -3.299468307382029e-08 + ArtUnc_34: -1.2349402662050923e-06 + ArtUnc_35: -6.191515490195612e-06 + ArtUnc_36: -2.7249485883079676e-06 + ArtUnc_37: -5.989822561698278e-05 + ArtUnc_38: 1.040363962746263e-05 + ArtUnc_39: 7.720196274664037e-05 + ArtUnc_40: 1.5220534773987657e-06 + ArtUnc_41: 1.70937927886724e-05 + ArtUnc_42: 8.114505195690131e-07 + ArtUnc_43: -1.371526883447847e-05 + ArtUnc_44: 0.00024620974445310794 + ArtUnc_45: -1.2730256982223254e-06 + ArtUnc_46: 1.1643913116449547e-05 + ArtUnc_47: 1.6299789140107506e-06 + ArtUnc_48: -2.2809295116473704e-07 + ArtUnc_49: -3.634576712612296e-05 + ArtUnc_50: -2.4422571255481782e-06 + ArtUnc_51: -6.822122723981085e-08 + ArtUnc_52: 5.976234737191589e-08 + ArtUnc_53: -1.8446310222813494e-08 + ArtUnc_54: 2.4751852109216145e-08 + ArtUnc_55: 1.1310038013260833e-06 + ArtUnc_56: 1.0759820264168969e-06 + ArtUnc_57: 3.0780950207694145e-07 + ArtUnc_58: 6.812023712735847e-07 + ArtUnc_59: -7.960672216219715e-09 + ArtUnc_60: -5.267916630689513e-07 + ArtUnc_61: -3.399701646687149e-10 + ArtUnc_62: -6.6656039128050465e-09 + ArtUnc_63: 7.138800656368192e-10 + ArtUnc_64: -2.4775857851850117e-06 + ArtUnc_65: 3.624287910535524e-08 + ArtUnc_66: 1.8384640130182134e-06 + ArtUnc_67: 2.7181424246913548e-08 + ArtUnc_68: -2.8193276372482016e-08 + ArtUnc_69: -5.42760780524532e-10 + ArtUnc_70: 3.0846613497465428e-09 + ArtUnc_71: -5.4471592197849197e-11 + ArtUnc_72: -2.1302205731503017e-08 + ArtUnc_73: -8.471531075724741e-10 + ArtUnc_74: -1.1628840669622942e-08 + ArtUnc_75: 1.7170116614500534e-08 + ArtUnc_76: -2.341536895472736e-10 + ArtUnc_77: -2.7783117168958113e-10 + ArtUnc_78: 3.260211955439682e-08 + ArtUnc_79: 1.046351715994512e-08 + ArtUnc_80: -3.450248147908177e-10 + ArtUnc_81: 7.482156465457119e-10 + ArtUnc_82: 3.8370527796884825e-11 + ArtUnc_83: -3.247121662728555e-11 + ArtUnc_84: -1.4283148435103424e-09 + ArtUnc_85: 2.3167662235587087e-11 + ArtUnc_86: 6.903485286946707e-11 + ArtUnc_87: 6.463824938400358e-11 + ArtUnc_88: 6.4133573585991416e-12 + ArtUnc_89: 3.6365934066034854e-10 + ArtUnc_90: -2.5940032189813645e-10 + ArtUnc_91: 6.457000917868311e-11 + ArtUnc_92: 1.2350529808450879e-09 + ArtUnc_93: -1.151435439701838e-11 + ArtUnc_94: -3.2150143351094645e-11 + ArtUnc_95: -9.747009492310879e-11 + ArtUnc_96: -6.133126016765184e-11 - stat: 0 Uncorr: 0.000121 RCES: 0.00010638886725123075 @@ -4677,102 +4677,102 @@ bins: ModelRW_2: 0.0003080157138848601 JES_1: 0.000297013719127585 JES_2: 0.000297013719127585 - ArtUnc_1: 3.725748441855142e-13 - ArtUnc_2: -5.576213415696871e-11 - ArtUnc_3: -1.8792997287418968e-10 - ArtUnc_4: -4.5867840932795444e-10 - ArtUnc_5: -1.4436446728744216e-11 - ArtUnc_6: 1.8673969063588274e-11 - ArtUnc_7: -2.304809777235498e-09 - ArtUnc_8: 7.845765890469632e-10 - ArtUnc_9: 1.977290840880951e-09 - ArtUnc_10: -1.1619921967808012e-08 - ArtUnc_11: -3.3435052190755636e-09 - ArtUnc_12: 1.8580739693610029e-09 - ArtUnc_13: -6.89347051218557e-08 - ArtUnc_14: -8.552736714386387e-09 - ArtUnc_15: 1.5846804640892226e-08 - ArtUnc_16: -4.681586314223856e-10 - ArtUnc_17: 2.5773570618027182e-08 - ArtUnc_18: 1.388346765828633e-09 - ArtUnc_19: 1.0772612664036784e-07 - ArtUnc_20: 9.127921594960896e-08 - ArtUnc_21: -6.69780382922057e-11 - ArtUnc_22: -1.1270512654928677e-07 - ArtUnc_23: -1.3323411868686961e-09 - ArtUnc_24: -1.5556328301045476e-06 - ArtUnc_25: 7.606353978765809e-07 - ArtUnc_26: -3.851083482718733e-07 - ArtUnc_27: -1.452548473409936e-06 - ArtUnc_28: 5.088505297563495e-08 - ArtUnc_29: 1.6117205402691302e-06 - ArtUnc_30: -4.113354807336254e-07 - ArtUnc_31: -1.6983994409327336e-07 - ArtUnc_32: 1.6892305922853991e-06 - ArtUnc_33: 1.457067663137859e-10 - ArtUnc_34: 8.989143287514196e-08 - ArtUnc_35: 8.88695551904404e-08 - ArtUnc_36: 7.181782097801695e-07 - ArtUnc_37: -2.077812503773524e-06 - ArtUnc_38: -3.6391782595324245e-07 - ArtUnc_39: -2.7286713820165273e-06 - ArtUnc_40: 5.455195979654707e-08 - ArtUnc_41: 7.549069678202049e-06 - ArtUnc_42: -7.453588459542621e-08 - ArtUnc_43: -1.1101608282611443e-05 - ArtUnc_44: 2.0012574636198835e-06 - ArtUnc_45: 2.7433672163776266e-08 - ArtUnc_46: -9.517229932449512e-07 - ArtUnc_47: 5.589666364913685e-07 - ArtUnc_48: 2.4944416287925542e-08 - ArtUnc_49: 2.347177907621526e-05 - ArtUnc_50: 1.4282041253315672e-06 - ArtUnc_51: -4.788002977744846e-07 - ArtUnc_52: -8.903094382817606e-07 - ArtUnc_53: 1.2459460515367121e-07 - ArtUnc_54: -8.14925320565125e-08 - ArtUnc_55: 1.2594223585420613e-05 - ArtUnc_56: 1.4274865327026748e-05 - ArtUnc_57: 4.174072422600962e-06 - ArtUnc_58: 2.2303548443451325e-05 - ArtUnc_59: -2.1908097420859265e-07 - ArtUnc_60: 1.891093455120236e-05 - ArtUnc_61: 1.094479673948385e-08 - ArtUnc_62: -6.893892056162117e-08 - ArtUnc_63: 5.823766977123618e-09 - ArtUnc_64: -5.6603262292214214e-05 - ArtUnc_65: -8.015406273532788e-07 - ArtUnc_66: 3.9683471410176716e-05 - ArtUnc_67: -5.263076671627705e-07 - ArtUnc_68: 3.5855468780186174e-07 - ArtUnc_69: -1.0173186218329567e-08 - ArtUnc_70: 1.229531766027621e-07 - ArtUnc_71: 2.479331417189453e-09 - ArtUnc_72: 6.571712548162449e-07 - ArtUnc_73: 4.7783870276873866e-08 - ArtUnc_74: 1.0059102231087426e-07 - ArtUnc_75: 8.417761885970783e-07 - ArtUnc_76: 8.396096597470064e-09 - ArtUnc_77: 7.42300544961137e-09 - ArtUnc_78: -1.1325365974717505e-07 - ArtUnc_79: -4.23188220554539e-08 - ArtUnc_80: 6.129071591428982e-09 - ArtUnc_81: -9.456587992687703e-09 - ArtUnc_82: 1.5188352334209478e-10 - ArtUnc_83: 5.014588526357882e-09 - ArtUnc_84: 1.1798190978593119e-08 - ArtUnc_85: 2.631729931569993e-10 - ArtUnc_86: 1.924573846872015e-11 - ArtUnc_87: 2.593975753501807e-10 - ArtUnc_88: -2.02771483831625e-08 - ArtUnc_89: 1.2062301518549229e-09 - ArtUnc_90: 3.017083083839918e-09 - ArtUnc_91: -1.0921148670095773e-09 - ArtUnc_92: 2.351887988494077e-08 - ArtUnc_93: 4.3944548208900017e-10 - ArtUnc_94: 3.733027150779105e-10 - ArtUnc_95: -3.2961109082648946e-09 - ArtUnc_96: 4.3659842526255104e-11 + ArtUnc_1: 3.72574843754151e-13 + ArtUnc_2: -5.5762134156865614e-11 + ArtUnc_3: -1.8792997287274888e-10 + ArtUnc_4: -4.5867840932993047e-10 + ArtUnc_5: -1.4436446732121365e-11 + ArtUnc_6: 1.867396902546295e-11 + ArtUnc_7: -2.3048097772345663e-09 + ArtUnc_8: 7.845765890473015e-10 + ArtUnc_9: 1.977290840908495e-09 + ArtUnc_10: -1.1619921967779412e-08 + ArtUnc_11: -3.343505219064145e-09 + ArtUnc_12: -1.858073969329258e-09 + ArtUnc_13: 6.893470512185661e-08 + ArtUnc_14: -8.552736714474256e-09 + ArtUnc_15: 1.584680464086288e-08 + ArtUnc_16: -4.681586319467342e-10 + ArtUnc_17: 2.577357061816638e-08 + ArtUnc_18: -1.3883467658975774e-09 + ArtUnc_19: -1.0772612664045383e-07 + ArtUnc_20: 9.127921594949682e-08 + ArtUnc_21: -6.69780382479327e-11 + ArtUnc_22: -1.1270512654920153e-07 + ArtUnc_23: -1.33234118677314e-09 + ArtUnc_24: -1.555632830104435e-06 + ArtUnc_25: 7.606353978765029e-07 + ArtUnc_26: -3.851083482718545e-07 + ArtUnc_27: -1.4525484734098774e-06 + ArtUnc_28: -5.0885052975844806e-08 + ArtUnc_29: -1.61172054026889e-06 + ArtUnc_30: -4.1133548073345233e-07 + ArtUnc_31: 1.6983994409471313e-07 + ArtUnc_32: 1.6892305922854216e-06 + ArtUnc_33: -1.457067664224312e-10 + ArtUnc_34: 8.989143287517297e-08 + ArtUnc_35: -8.88695551901891e-08 + ArtUnc_36: -7.18178209779854e-07 + ArtUnc_37: -2.0778125037738755e-06 + ArtUnc_38: 3.6391782595336935e-07 + ArtUnc_39: 2.7286713820166425e-06 + ArtUnc_40: 5.455195979650584e-08 + ArtUnc_41: 7.549069678202054e-06 + ArtUnc_42: 7.453588459557469e-08 + ArtUnc_43: -1.1101608282611014e-05 + ArtUnc_44: 2.001257463619583e-06 + ArtUnc_45: -2.7433672163892875e-08 + ArtUnc_46: -9.517229932447282e-07 + ArtUnc_47: 5.589666364914897e-07 + ArtUnc_48: -2.4944416287900184e-08 + ArtUnc_49: -2.347177907621313e-05 + ArtUnc_50: -1.4282041253317663e-06 + ArtUnc_51: 4.788002977745001e-07 + ArtUnc_52: 8.903094382816588e-07 + ArtUnc_53: -1.2459460515372746e-07 + ArtUnc_54: 8.14925320564319e-08 + ArtUnc_55: 1.2594223585421794e-05 + ArtUnc_56: 1.4274865327025676e-05 + ArtUnc_57: 4.174072422605024e-06 + ArtUnc_58: 2.230354844345179e-05 + ArtUnc_59: -2.190809742086046e-07 + ArtUnc_60: -1.8910934551201536e-05 + ArtUnc_61: -1.094479673965532e-08 + ArtUnc_62: -6.893892056174763e-08 + ArtUnc_63: 5.82376697707184e-09 + ArtUnc_64: 5.660326229221998e-05 + ArtUnc_65: -8.015406273538802e-07 + ArtUnc_66: -3.968347141017291e-05 + ArtUnc_67: -5.263076671626725e-07 + ArtUnc_68: 3.5855468780181044e-07 + ArtUnc_69: 1.0173186218331753e-08 + ArtUnc_70: -1.2295317660275172e-07 + ArtUnc_71: -2.4793314171900886e-09 + ArtUnc_72: -6.571712548162341e-07 + ArtUnc_73: -4.7783870276875176e-08 + ArtUnc_74: -1.005910223108769e-07 + ArtUnc_75: 8.417761885970648e-07 + ArtUnc_76: 8.396096597475887e-09 + ArtUnc_77: 7.423005449611018e-09 + ArtUnc_78: -1.1325365974715549e-07 + ArtUnc_79: -4.231882205546767e-08 + ArtUnc_80: 6.129071591428702e-09 + ArtUnc_81: -9.456587992687747e-09 + ArtUnc_82: -1.5188352334206963e-10 + ArtUnc_83: 5.014588526357662e-09 + ArtUnc_84: -1.1798190978592541e-08 + ArtUnc_85: -2.631729931570385e-10 + ArtUnc_86: 1.9245738468918398e-11 + ArtUnc_87: 2.5939757535041884e-10 + ArtUnc_88: 1.2062301518547448e-09 + ArtUnc_89: 2.027714838316177e-08 + ArtUnc_90: -3.0170830838406754e-09 + ArtUnc_91: -1.0921148670096631e-09 + ArtUnc_92: -2.351887988493733e-08 + ArtUnc_93: 4.3944548208894744e-10 + ArtUnc_94: 3.7330271507787496e-10 + ArtUnc_95: -3.296110908263646e-09 + ArtUnc_96: 4.3659842526486204e-11 - stat: 0 Uncorr: 2.47e-05 RCES: 3.4310780579870227e-05 @@ -4788,102 +4788,102 @@ bins: ModelRW_2: 0.00015195017620917717 JES_1: 8.317424725463404e-05 JES_2: 8.317424725463404e-05 - ArtUnc_1: -5.2414622595776756e-15 - ArtUnc_2: 8.207592964731506e-13 - ArtUnc_3: 3.847729041684691e-12 - ArtUnc_4: 1.3792222266566074e-11 - ArtUnc_5: 5.052176641875075e-13 - ArtUnc_6: 2.2494956915663803e-14 - ArtUnc_7: 6.265328750309182e-11 - ArtUnc_8: -2.3772774781838074e-10 - ArtUnc_9: -3.1675878965401614e-12 - ArtUnc_10: -9.980068575842941e-12 - ArtUnc_11: 8.486503372810134e-11 - ArtUnc_12: -1.4472528444016473e-11 - ArtUnc_13: -1.9485505226518077e-10 - ArtUnc_14: 1.3385041147094832e-11 - ArtUnc_15: 1.2777939883775687e-11 - ArtUnc_16: -1.4594415085541144e-12 - ArtUnc_17: -7.622530131599248e-12 - ArtUnc_18: 3.3382253915144836e-13 - ArtUnc_19: -4.174449188947476e-10 - ArtUnc_20: -1.458526363043474e-10 - ArtUnc_21: -1.218326399980731e-10 - ArtUnc_22: 2.9701427574704487e-09 - ArtUnc_23: 2.22998549042183e-10 - ArtUnc_24: 7.119878894201229e-10 - ArtUnc_25: -4.049074824714188e-09 - ArtUnc_26: 1.3627773034302058e-09 - ArtUnc_27: 7.095862095535974e-09 - ArtUnc_28: 5.718772664967846e-10 - ArtUnc_29: 3.751773345446773e-09 - ArtUnc_30: -2.9515041503971795e-09 - ArtUnc_31: -1.1378459994761584e-09 - ArtUnc_32: 2.1546215977208857e-08 - ArtUnc_33: 2.5580061046276632e-11 - ArtUnc_34: -7.500012142836068e-10 - ArtUnc_35: 8.728016111697142e-09 - ArtUnc_36: -1.4591722382617339e-08 - ArtUnc_37: -1.5180310001887535e-07 - ArtUnc_38: -2.9087276501936008e-08 - ArtUnc_39: -2.4003660755313586e-07 - ArtUnc_40: 3.6335764936337553e-09 - ArtUnc_41: -1.7897560141452676e-07 - ArtUnc_42: -3.862399379321751e-09 - ArtUnc_43: 3.891403788701698e-07 - ArtUnc_44: -3.012756355155686e-07 - ArtUnc_45: -2.2701893787055546e-10 - ArtUnc_46: 3.0437265445985966e-08 - ArtUnc_47: -6.821619111218156e-08 - ArtUnc_48: -5.213033624738738e-09 - ArtUnc_49: -7.909571133749282e-07 - ArtUnc_50: 4.000696485550032e-09 - ArtUnc_51: -1.224471599566261e-07 - ArtUnc_52: 2.3873887600907556e-08 - ArtUnc_53: 1.3473575118941014e-08 - ArtUnc_54: -2.9872328342732867e-08 - ArtUnc_55: -1.5813190610402345e-06 - ArtUnc_56: 1.933241606756727e-06 - ArtUnc_57: 4.6978450337945344e-07 - ArtUnc_58: -3.3089357511885516e-06 - ArtUnc_59: 1.8756063896370004e-07 - ArtUnc_60: 3.631987023923681e-06 - ArtUnc_61: -8.974999862879568e-09 - ArtUnc_62: -3.21002633898529e-07 - ArtUnc_63: 3.687766345572266e-08 - ArtUnc_64: 7.773053107357186e-06 - ArtUnc_65: 6.97788139850965e-07 - ArtUnc_66: 8.346360521631023e-06 - ArtUnc_67: -3.417827012533438e-07 - ArtUnc_68: -4.1262878647269415e-07 - ArtUnc_69: -3.535170070934319e-09 - ArtUnc_70: 4.836847420599936e-07 - ArtUnc_71: 2.5243277693487462e-08 - ArtUnc_72: 5.7731325918633595e-06 - ArtUnc_73: 4.6811126185050636e-07 - ArtUnc_74: 1.5770399135300984e-06 - ArtUnc_75: 9.869174798919056e-06 - ArtUnc_76: 7.128038724571136e-08 - ArtUnc_77: -3.145401141298582e-08 - ArtUnc_78: 1.889171597787733e-05 - ArtUnc_79: 1.3499821119504489e-05 - ArtUnc_80: -7.1259305525188e-08 - ArtUnc_81: 4.948333753718327e-07 - ArtUnc_82: -3.5235174352896035e-08 - ArtUnc_83: -5.926496319976261e-08 - ArtUnc_84: 1.4452008476414846e-07 - ArtUnc_85: -1.5083206448382862e-08 - ArtUnc_86: 4.377923905507403e-09 - ArtUnc_87: 5.063614671792069e-09 - ArtUnc_88: -2.873263317578972e-07 - ArtUnc_89: 6.74573155948979e-09 - ArtUnc_90: 9.439684959933751e-08 - ArtUnc_91: -2.3971753920996644e-08 - ArtUnc_92: 4.2682329227800776e-08 - ArtUnc_93: 1.5311556383350169e-09 - ArtUnc_94: -4.599464050392651e-10 - ArtUnc_95: -1.9906259590400175e-08 - ArtUnc_96: 2.3216321592755967e-09 + ArtUnc_1: -5.241462259945504e-15 + ArtUnc_2: 8.207592964730536e-13 + ArtUnc_3: 3.847729041683561e-12 + ArtUnc_4: 1.3792222266569431e-11 + ArtUnc_5: 5.052176641803228e-13 + ArtUnc_6: 2.249495667603643e-14 + ArtUnc_7: 6.265328750309011e-11 + ArtUnc_8: -2.377277478183806e-10 + ArtUnc_9: -3.167587896563486e-12 + ArtUnc_10: -9.980068575788724e-12 + ArtUnc_11: 8.486503372824655e-11 + ArtUnc_12: 1.4472528442572177e-11 + ArtUnc_13: 1.9485505226517446e-10 + ArtUnc_14: 1.3385041148049875e-11 + ArtUnc_15: 1.2777939886617276e-11 + ArtUnc_16: -1.4594414874811343e-12 + ArtUnc_17: -7.622530132064897e-12 + ArtUnc_18: -3.3382254149254044e-13 + ArtUnc_19: 4.1744491889578663e-10 + ArtUnc_20: -1.458526363026746e-10 + ArtUnc_21: -1.2183263999339942e-10 + ArtUnc_22: 2.970142757468545e-09 + ArtUnc_23: 2.2299854903822662e-10 + ArtUnc_24: 7.119878894173299e-10 + ArtUnc_25: -4.04907482471203e-09 + ArtUnc_26: 1.362777303429574e-09 + ArtUnc_27: 7.095862095533802e-09 + ArtUnc_28: -5.718772664874926e-10 + ArtUnc_29: -3.751773345438866e-09 + ArtUnc_30: -2.9515041503778913e-09 + ArtUnc_31: 1.1378459995070667e-09 + ArtUnc_32: 2.1546215977208804e-08 + ArtUnc_33: -2.5580061091301333e-11 + ArtUnc_34: -7.500012142866035e-10 + ArtUnc_35: -8.728016111705376e-09 + ArtUnc_36: 1.4591722382626946e-08 + ArtUnc_37: -1.5180310001887374e-07 + ArtUnc_38: 2.908727650187965e-08 + ArtUnc_39: 2.400366075531249e-07 + ArtUnc_40: 3.6335764936557314e-09 + ArtUnc_41: -1.7897560141455276e-07 + ArtUnc_42: 3.862399379342501e-09 + ArtUnc_43: 3.891403788701593e-07 + ArtUnc_44: -3.012756355155561e-07 + ArtUnc_45: 2.2701893778899755e-10 + ArtUnc_46: 3.043726544595362e-08 + ArtUnc_47: -6.82161911121795e-08 + ArtUnc_48: 5.213033624694447e-09 + ArtUnc_49: 7.909571133748741e-07 + ArtUnc_50: -4.000696485508816e-09 + ArtUnc_51: 1.2244715995664577e-07 + ArtUnc_52: -2.387388760086234e-08 + ArtUnc_53: -1.3473575118922905e-08 + ArtUnc_54: 2.9872328342697794e-08 + ArtUnc_55: -1.581319061040107e-06 + ArtUnc_56: 1.933241606756599e-06 + ArtUnc_57: 4.697845033799855e-07 + ArtUnc_58: -3.308935751188501e-06 + ArtUnc_59: 1.8756063896365827e-07 + ArtUnc_60: -3.6319870239236007e-06 + ArtUnc_61: 8.974999862891205e-09 + ArtUnc_62: -3.2100263389846357e-07 + ArtUnc_63: 3.687766345572873e-08 + ArtUnc_64: -7.773053107356384e-06 + ArtUnc_65: 6.977881398509863e-07 + ArtUnc_66: -8.346360521631696e-06 + ArtUnc_67: -3.417827012533332e-07 + ArtUnc_68: -4.126287864727083e-07 + ArtUnc_69: 3.5351700709203385e-09 + ArtUnc_70: -4.836847420599969e-07 + ArtUnc_71: -2.5243277693506292e-08 + ArtUnc_72: -5.773132591863485e-06 + ArtUnc_73: -4.681112618505477e-07 + ArtUnc_74: -1.577039913530142e-06 + ArtUnc_75: 9.86917479891918e-06 + ArtUnc_76: 7.128038724576999e-08 + ArtUnc_77: -3.1454011412941795e-08 + ArtUnc_78: 1.8891715977876717e-05 + ArtUnc_79: 1.349982111950535e-05 + ArtUnc_80: -7.125930552507109e-08 + ArtUnc_81: 4.94833375371924e-07 + ArtUnc_82: 3.523517435289861e-08 + ArtUnc_83: -5.926496319977509e-08 + ArtUnc_84: -1.4452008476412964e-07 + ArtUnc_85: 1.508320644838305e-08 + ArtUnc_86: 4.377923905507967e-09 + ArtUnc_87: 5.063614671791702e-09 + ArtUnc_88: 6.745731559486469e-09 + ArtUnc_89: 2.873263317578852e-07 + ArtUnc_90: -9.439684959935189e-08 + ArtUnc_91: -2.3971753920997772e-08 + ArtUnc_92: -4.26823292277409e-08 + ArtUnc_93: 1.5311556383332444e-09 + ArtUnc_94: -4.599464050398569e-10 + ArtUnc_95: -1.9906259590373583e-08 + ArtUnc_96: 2.321632159279879e-09 - stat: 0 Uncorr: 4.57e-06 RCES: 7.124034907796283e-06 @@ -4899,102 +4899,102 @@ bins: ModelRW_2: 1.2748201148936661e-05 JES_1: 1.9913371876298348e-05 JES_2: 1.9913371876298348e-05 - ArtUnc_1: -1.901999100018548e-17 - ArtUnc_2: 1.0507157367213475e-14 - ArtUnc_3: 7.40593611506568e-14 - ArtUnc_4: 4.151678287759254e-13 - ArtUnc_5: 1.4607047974815595e-14 - ArtUnc_6: 3.987043341001862e-15 - ArtUnc_7: 2.9871234429879902e-12 - ArtUnc_8: -1.2890110141978409e-11 - ArtUnc_9: 1.9362487676758983e-13 - ArtUnc_10: -1.9130658820515975e-13 - ArtUnc_11: -3.400051044624664e-13 - ArtUnc_12: 3.652002954948537e-14 - ArtUnc_13: -7.1714396580676e-12 - ArtUnc_14: -1.2279063926269335e-13 - ArtUnc_15: 5.068030341871257e-14 - ArtUnc_16: 1.814632633271903e-15 - ArtUnc_17: -2.5823036771678652e-12 - ArtUnc_18: -7.732364378016276e-14 - ArtUnc_19: -1.0368599030456471e-11 - ArtUnc_20: 2.5377948411775244e-11 - ArtUnc_21: -1.835525458104688e-12 - ArtUnc_22: 3.2305271486619654e-10 - ArtUnc_23: 6.5716499618462496e-12 - ArtUnc_24: -1.3152564112477424e-10 - ArtUnc_25: -2.5802325607478847e-10 - ArtUnc_26: 5.448016000663151e-11 - ArtUnc_27: 9.181928486936754e-10 - ArtUnc_28: -4.2663113324387277e-11 - ArtUnc_29: -2.121381067982099e-10 - ArtUnc_30: 1.233692589427189e-10 - ArtUnc_31: 5.0572066257513994e-11 - ArtUnc_32: 1.98979108431419e-09 - ArtUnc_33: 5.964743403610258e-13 - ArtUnc_34: -4.229102206599528e-11 - ArtUnc_35: 6.37277150007288e-11 - ArtUnc_36: -8.992438540247284e-10 - ArtUnc_37: -2.8238691842799766e-09 - ArtUnc_38: -5.02980540834054e-10 - ArtUnc_39: -3.760335301555371e-09 - ArtUnc_40: -1.5225495777843334e-11 - ArtUnc_41: -1.5530794004637835e-08 - ArtUnc_42: -1.1200097110878717e-10 - ArtUnc_43: 3.320458370958875e-08 - ArtUnc_44: 1.612778691079054e-08 - ArtUnc_45: 1.9434751822814306e-10 - ArtUnc_46: 4.818719281876162e-09 - ArtUnc_47: -3.593683334232163e-10 - ArtUnc_48: 1.4452431641240683e-11 - ArtUnc_49: -1.1561914693040196e-07 - ArtUnc_50: -3.095265809794582e-09 - ArtUnc_51: 1.9902500579980663e-09 - ArtUnc_52: -1.0551540835725304e-09 - ArtUnc_53: -2.5839868436903215e-11 - ArtUnc_54: 2.735989615037522e-10 - ArtUnc_55: -1.7146668510367313e-08 - ArtUnc_56: -9.346685172218939e-09 - ArtUnc_57: -2.2964573279146082e-09 - ArtUnc_58: -2.5410501696593928e-08 - ArtUnc_59: 2.4527977930520205e-10 - ArtUnc_60: -4.2690864286483435e-08 - ArtUnc_61: -1.0006795074036811e-10 - ArtUnc_62: -1.5073637831944534e-09 - ArtUnc_63: 3.875254156561107e-11 - ArtUnc_64: 7.557892352678368e-08 - ArtUnc_65: -7.762771204768927e-09 - ArtUnc_66: -2.1676490443905314e-07 - ArtUnc_67: 3.088925173793289e-08 - ArtUnc_68: -3.777323449849427e-08 - ArtUnc_69: 9.873502259304843e-09 - ArtUnc_70: -2.373128831845292e-07 - ArtUnc_71: -2.8574018820259706e-09 - ArtUnc_72: 7.728916750925105e-08 - ArtUnc_73: 1.8004829794941364e-08 - ArtUnc_74: -1.1896352758006238e-06 - ArtUnc_75: 2.2098648925168953e-07 - ArtUnc_76: 2.786018071151877e-08 - ArtUnc_77: 7.187084774474957e-08 - ArtUnc_78: 2.2916415135349406e-06 - ArtUnc_79: -4.401578860181418e-06 - ArtUnc_80: 8.779094540537243e-08 - ArtUnc_81: -1.1345022521153709e-07 - ArtUnc_82: 1.138157692268845e-08 - ArtUnc_83: 3.163933993362653e-07 - ArtUnc_84: 1.3329149678621984e-06 - ArtUnc_85: 2.1353944709585353e-08 - ArtUnc_86: 5.5925988440237304e-08 - ArtUnc_87: 1.094170745951463e-07 - ArtUnc_88: -2.670456958818338e-06 - ArtUnc_89: 1.1376874495448061e-07 - ArtUnc_90: 4.823102494690155e-07 - ArtUnc_91: 1.4649026332981122e-07 - ArtUnc_92: 8.78447031792603e-06 - ArtUnc_93: 3.28059110009874e-08 - ArtUnc_94: 1.881002465380906e-07 - ArtUnc_95: -4.025966804622711e-07 - ArtUnc_96: -1.8317314419583592e-08 + ArtUnc_1: -1.9019991291243223e-17 + ArtUnc_2: 1.0507157366899366e-14 + ArtUnc_3: 7.405936115075455e-14 + ArtUnc_4: 4.1516782877622893e-13 + ArtUnc_5: 1.4607047978177815e-14 + ArtUnc_6: 3.987043331119774e-15 + ArtUnc_7: 2.9871234429873815e-12 + ArtUnc_8: -1.28901101419786e-11 + ArtUnc_9: 1.936248767826609e-13 + ArtUnc_10: -1.9130658824214493e-13 + ArtUnc_11: -3.400051045086563e-13 + ArtUnc_12: -3.6520029181094834e-14 + ArtUnc_13: 7.1714396580652244e-12 + ArtUnc_14: -1.2279063899775683e-13 + ArtUnc_15: 5.068030375999428e-14 + ArtUnc_16: 1.814635154565131e-15 + ArtUnc_17: -2.5823036770884942e-12 + ArtUnc_18: 7.732364342860023e-14 + ArtUnc_19: 1.0368599030336335e-11 + ArtUnc_20: 2.537794841164756e-11 + ArtUnc_21: -1.8355254578712134e-12 + ArtUnc_22: 3.23052714866025e-10 + ArtUnc_23: 6.571649960662051e-12 + ArtUnc_24: -1.315256411252612e-10 + ArtUnc_25: -2.5802325607447383e-10 + ArtUnc_26: 5.448016000703067e-11 + ArtUnc_27: 9.181928486933075e-10 + ArtUnc_28: 4.266311332429477e-11 + ArtUnc_29: 2.121381067959539e-10 + ArtUnc_30: 1.2336925894313725e-10 + ArtUnc_31: -5.0572066259762264e-11 + ArtUnc_32: 1.9897910843142253e-09 + ArtUnc_33: -5.964743379366253e-13 + ArtUnc_34: -4.2291022066909204e-11 + ArtUnc_35: -6.372771500145227e-11 + ArtUnc_36: 8.992438540225526e-10 + ArtUnc_37: -2.823869184278453e-09 + ArtUnc_38: 5.029805408362752e-10 + ArtUnc_39: 3.7603353015553514e-09 + ArtUnc_40: -1.522549579025299e-11 + ArtUnc_41: -1.553079400463468e-08 + ArtUnc_42: 1.1200097112152992e-10 + ArtUnc_43: 3.320458370959093e-08 + ArtUnc_44: 1.612778691079218e-08 + ArtUnc_45: -1.9434751816654295e-10 + ArtUnc_46: 4.818719281818341e-09 + ArtUnc_47: -3.5936833342592e-10 + ArtUnc_48: -1.4452431492510908e-11 + ArtUnc_49: 1.156191469303947e-07 + ArtUnc_50: 3.095265809797049e-09 + ArtUnc_51: -1.990250058016618e-09 + ArtUnc_52: 1.0551540835680762e-09 + ArtUnc_53: 2.583986842251015e-11 + ArtUnc_54: -2.7359896160844426e-10 + ArtUnc_55: -1.714666851039895e-08 + ArtUnc_56: -9.346685172236354e-09 + ArtUnc_57: -2.2964573279275797e-09 + ArtUnc_58: -2.541050169654537e-08 + ArtUnc_59: 2.4527977931268276e-10 + ArtUnc_60: 4.26908642864609e-08 + ArtUnc_61: 1.0006795078580084e-10 + ArtUnc_62: -1.5073637832204924e-09 + ArtUnc_63: 3.8752541563071965e-11 + ArtUnc_64: -7.557892352678078e-08 + ArtUnc_65: -7.762771204776205e-09 + ArtUnc_66: 2.1676490443910404e-07 + ArtUnc_67: 3.088925173796808e-08 + ArtUnc_68: -3.7773234498553116e-08 + ArtUnc_69: -9.873502259301812e-09 + ArtUnc_70: 2.373128831845414e-07 + ArtUnc_71: 2.8574018820224212e-09 + ArtUnc_72: -7.728916750927325e-08 + ArtUnc_73: -1.8004829794967403e-08 + ArtUnc_74: 1.1896352758006183e-06 + ArtUnc_75: 2.2098648925167571e-07 + ArtUnc_76: 2.7860180711512064e-08 + ArtUnc_77: 7.187084774475774e-08 + ArtUnc_78: 2.2916415135354548e-06 + ArtUnc_79: -4.401578860181456e-06 + ArtUnc_80: 8.779094540533577e-08 + ArtUnc_81: -1.1345022521150932e-07 + ArtUnc_82: -1.1381576922669683e-08 + ArtUnc_83: 3.163933993362474e-07 + ArtUnc_84: -1.3329149678621743e-06 + ArtUnc_85: -2.135394470958957e-08 + ArtUnc_86: 5.592598844023283e-08 + ArtUnc_87: 1.0941707459513449e-07 + ArtUnc_88: 1.1376874495446983e-07 + ArtUnc_89: 2.6704569588183046e-06 + ArtUnc_90: -4.823102494690392e-07 + ArtUnc_91: 1.4649026332982186e-07 + ArtUnc_92: -8.784470317925978e-06 + ArtUnc_93: 3.280591100098844e-08 + ArtUnc_94: 1.8810024653809077e-07 + ArtUnc_95: -4.025966804622898e-07 + ArtUnc_96: -1.8317314419579824e-08 - stat: 0 Uncorr: 5.27e-07 RCES: 1.114801206134977e-06 @@ -5010,102 +5010,102 @@ bins: ModelRW_2: 8.187016662866274e-06 JES_1: 3.1057938080847384e-06 JES_2: 3.1057938080847384e-06 - ArtUnc_1: 2.3592717455278063e-20 - ArtUnc_2: -5.922629162227702e-18 - ArtUnc_3: -1.881943600015444e-17 - ArtUnc_4: 3.1581875786552915e-17 - ArtUnc_5: 1.5937575158089415e-18 - ArtUnc_6: 3.2893423568347272e-18 - ArtUnc_7: 1.2239723672629012e-15 - ArtUnc_8: -2.2074775992875465e-14 - ArtUnc_9: 6.704927997723987e-16 - ArtUnc_10: 2.769940885779498e-14 - ArtUnc_11: -5.873909050918547e-14 - ArtUnc_12: 4.6646760813590076e-15 - ArtUnc_13: 3.208249464110612e-14 - ArtUnc_14: -2.768336938859504e-15 - ArtUnc_15: 7.564761724867157e-15 - ArtUnc_16: -4.898938035446411e-16 - ArtUnc_17: -7.062103028399974e-15 - ArtUnc_18: -5.255133974819861e-16 - ArtUnc_19: -1.6363092567285706e-14 - ArtUnc_20: -2.3889846365697364e-13 - ArtUnc_21: 2.0807479149316982e-14 - ArtUnc_22: -5.297202828929652e-12 - ArtUnc_23: -1.9082778110477102e-13 - ArtUnc_24: 6.039201406219688e-12 - ArtUnc_25: 2.6715907554407336e-12 - ArtUnc_26: -2.796639331847442e-13 - ArtUnc_27: -1.9072862813521637e-11 - ArtUnc_28: 3.1805753313814845e-13 - ArtUnc_29: -2.342851279918988e-12 - ArtUnc_30: -2.1374606686935742e-13 - ArtUnc_31: -1.0815260613105309e-13 - ArtUnc_32: -1.96863975719e-11 - ArtUnc_33: 1.56368002495703e-14 - ArtUnc_34: 4.941397788678146e-12 - ArtUnc_35: -3.4343154224011755e-12 - ArtUnc_36: 4.797358782019336e-11 - ArtUnc_37: 5.773888609002955e-11 - ArtUnc_38: 9.251216849880243e-12 - ArtUnc_39: 6.909058451839528e-11 - ArtUnc_40: 1.692511740888848e-12 - ArtUnc_41: 3.7053698468621566e-10 - ArtUnc_42: -1.8553929057684222e-11 - ArtUnc_43: -4.846323282585256e-10 - ArtUnc_44: -3.327459492748151e-11 - ArtUnc_45: -7.597393140041539e-13 - ArtUnc_46: -6.897334913039593e-11 - ArtUnc_47: 1.5566079258685414e-10 - ArtUnc_48: 7.485089690148145e-12 - ArtUnc_49: 4.1862286539349234e-10 - ArtUnc_50: -6.302238876177875e-11 - ArtUnc_51: 9.65302787763233e-10 - ArtUnc_52: -5.721657990641889e-10 - ArtUnc_53: 2.4895736849703775e-11 - ArtUnc_54: 7.617696381166007e-11 - ArtUnc_55: -1.3478870594900175e-08 - ArtUnc_56: 1.2402321011990233e-08 - ArtUnc_57: 3.5571456105792596e-09 - ArtUnc_58: -2.5561509082484207e-08 - ArtUnc_59: -1.2383163719012923e-10 - ArtUnc_60: 3.2222219760102e-08 - ArtUnc_61: 5.225128803503071e-12 - ArtUnc_62: -8.974571982242052e-10 - ArtUnc_63: 9.44057460845764e-11 - ArtUnc_64: 2.4480318754976328e-08 - ArtUnc_65: 1.042472983640617e-09 - ArtUnc_66: 3.516679646392288e-08 - ArtUnc_67: 3.5298812203812566e-10 - ArtUnc_68: 1.9926689573872634e-09 - ArtUnc_69: 3.938321250106937e-10 - ArtUnc_70: -9.539111780809803e-09 - ArtUnc_71: -2.2666150732372423e-10 - ArtUnc_72: -4.3344959477670075e-08 - ArtUnc_73: -3.4399107786647648e-09 - ArtUnc_74: -3.766214542747313e-08 - ArtUnc_75: -8.85383302597457e-08 - ArtUnc_76: -5.078556975299819e-10 - ArtUnc_77: 2.6350754104581286e-09 - ArtUnc_78: -5.219583627352078e-08 - ArtUnc_79: -1.928632086792721e-07 - ArtUnc_80: 2.0279690969120902e-09 - ArtUnc_81: -7.292739062852815e-09 - ArtUnc_82: 5.17014190383794e-10 - ArtUnc_83: 2.2541666134291343e-08 - ArtUnc_84: 3.969306237175464e-08 - ArtUnc_85: -2.686872478207086e-06 - ArtUnc_86: 4.1414736198157015e-07 - ArtUnc_87: 7.862979078956051e-07 - ArtUnc_88: -4.4423448886376586e-08 - ArtUnc_89: 1.172101147051345e-08 - ArtUnc_90: -2.65116567570053e-07 - ArtUnc_91: -1.6784554078079344e-06 - ArtUnc_92: 1.550500835139886e-08 - ArtUnc_93: 1.9257018402597083e-08 - ArtUnc_94: 2.228125152342082e-08 - ArtUnc_95: -8.447286155149883e-07 - ArtUnc_96: -1.7506003847933813e-07 + ArtUnc_1: 2.35927203457836e-20 + ArtUnc_2: -5.922629161146333e-18 + ArtUnc_3: -1.8819435998532412e-17 + ArtUnc_4: 3.158187577786074e-17 + ArtUnc_5: 1.5937576017366522e-18 + ArtUnc_6: 3.289342185321362e-18 + ArtUnc_7: 1.2239723672715737e-15 + ArtUnc_8: -2.2074775992870183e-14 + ArtUnc_9: 6.704927999036726e-16 + ArtUnc_10: 2.7699408858070488e-14 + ArtUnc_11: -5.873909050903443e-14 + ArtUnc_12: -4.664676081797592e-15 + ArtUnc_13: -3.2082494641071664e-14 + ArtUnc_14: -2.7683369430503856e-15 + ArtUnc_15: 7.564761722243567e-15 + ArtUnc_16: -4.898938440266008e-16 + ArtUnc_17: -7.0621030270174545e-15 + ArtUnc_18: 5.255133824119982e-16 + ArtUnc_19: 1.636309256674278e-14 + ArtUnc_20: -2.388984636576834e-13 + ArtUnc_21: 2.0807479147216883e-14 + ArtUnc_22: -5.297202828927104e-12 + ArtUnc_23: -1.9082778121082117e-13 + ArtUnc_24: 6.039201406219987e-12 + ArtUnc_25: 2.6715907554250054e-12 + ArtUnc_26: -2.7966393291241113e-13 + ArtUnc_27: -1.9072862813516748e-11 + ArtUnc_28: -3.1805753329792926e-13 + ArtUnc_29: 2.342851279537203e-12 + ArtUnc_30: -2.1374606682004223e-13 + ArtUnc_31: 1.0815260616289436e-13 + ArtUnc_32: -1.9686397571900833e-11 + ArtUnc_33: -1.5636800167330968e-14 + ArtUnc_34: 4.9413977886084574e-12 + ArtUnc_35: 3.43431542246607e-12 + ArtUnc_36: -4.797358782039034e-11 + ArtUnc_37: 5.773888609003612e-11 + ArtUnc_38: -9.251216849801803e-12 + ArtUnc_39: -6.909058451839399e-11 + ArtUnc_40: 1.6925117406345058e-12 + ArtUnc_41: 3.7053698468647157e-10 + ArtUnc_42: 1.855392905824653e-11 + ArtUnc_43: -4.846323282584783e-10 + ArtUnc_44: -3.327459492762007e-11 + ArtUnc_45: 7.597393152306623e-13 + ArtUnc_46: -6.897334913058715e-11 + ArtUnc_47: 1.5566079258656675e-10 + ArtUnc_48: -7.485089687541113e-12 + ArtUnc_49: -4.1862286539354177e-10 + ArtUnc_50: 6.302238876174077e-11 + ArtUnc_51: -9.653027877636256e-10 + ArtUnc_52: 5.72165799063931e-10 + ArtUnc_53: -2.489573684983785e-11 + ArtUnc_54: -7.617696381330824e-11 + ArtUnc_55: -1.3478870594901272e-08 + ArtUnc_56: 1.2402321011988667e-08 + ArtUnc_57: 3.5571456105850805e-09 + ArtUnc_58: -2.556150908248414e-08 + ArtUnc_59: -1.2383163719166848e-10 + ArtUnc_60: -3.2222219760101495e-08 + ArtUnc_61: -5.2251288050979926e-12 + ArtUnc_62: -8.97457198223341e-10 + ArtUnc_63: 9.440574608420388e-11 + ArtUnc_64: -2.448031875497111e-08 + ArtUnc_65: 1.042472983643038e-09 + ArtUnc_66: -3.5166796463923804e-08 + ArtUnc_67: 3.52988122038554e-10 + ArtUnc_68: 1.992668957386929e-09 + ArtUnc_69: -3.938321250102191e-10 + ArtUnc_70: 9.539111780811317e-09 + ArtUnc_71: 2.266615073220808e-10 + ArtUnc_72: 4.3344959477670267e-08 + ArtUnc_73: 3.439910778665954e-09 + ArtUnc_74: 3.766214542747073e-08 + ArtUnc_75: -8.853833025974996e-08 + ArtUnc_76: -5.07855697525207e-10 + ArtUnc_77: 2.6350754104537003e-09 + ArtUnc_78: -5.219583627350703e-08 + ArtUnc_79: -1.9286320867927353e-07 + ArtUnc_80: 2.0279690969114773e-09 + ArtUnc_81: -7.292739062847744e-09 + ArtUnc_82: -5.170141903927744e-10 + ArtUnc_83: 2.2541666134281235e-08 + ArtUnc_84: -3.9693062371755816e-08 + ArtUnc_85: 2.686872478207075e-06 + ArtUnc_86: 4.141473619815568e-07 + ArtUnc_87: 7.862979078955503e-07 + ArtUnc_88: 1.1721011470516791e-08 + ArtUnc_89: 4.4423448886381265e-08 + ArtUnc_90: 2.651165675700547e-07 + ArtUnc_91: -1.6784554078079242e-06 + ArtUnc_92: -1.550500835139394e-08 + ArtUnc_93: 1.9257018402611466e-08 + ArtUnc_94: 2.2281251523428708e-08 + ArtUnc_95: -8.447286155149897e-07 + ArtUnc_96: -1.7506003847933434e-07 - stat: 0 Uncorr: 0.0006 RCES: 0.0023087762992546504 @@ -5121,102 +5121,102 @@ bins: ModelRW_2: 0.0010097484835343896 JES_1: 0.0009938719736465053 JES_2: 0.0009938719736465053 - ArtUnc_1: -4.650512749510166e-09 - ArtUnc_2: 2.615040433829322e-07 - ArtUnc_3: 5.12557246908949e-07 - ArtUnc_4: 1.0849380135809137e-06 - ArtUnc_5: 7.030184434031912e-08 - ArtUnc_6: -6.666096450905855e-08 - ArtUnc_7: 8.926475091345058e-06 - ArtUnc_8: -3.752463903315616e-05 - ArtUnc_9: -4.525940513413942e-06 - ArtUnc_10: 3.1467905590806136e-05 - ArtUnc_11: -2.023314790240504e-05 - ArtUnc_12: -2.0219473189516724e-06 - ArtUnc_13: 4.0032878530944104e-05 - ArtUnc_14: 9.542902962029522e-06 - ArtUnc_15: -1.5817618089945143e-05 - ArtUnc_16: 5.069765305481629e-07 - ArtUnc_17: -1.08891559690467e-05 - ArtUnc_18: -7.854719394650325e-07 - ArtUnc_19: -2.3706046886005396e-05 - ArtUnc_20: -1.9083074205274192e-05 - ArtUnc_21: 4.747888848598477e-07 - ArtUnc_22: 0.0001673429516106384 - ArtUnc_23: 1.8956321121486008e-06 - ArtUnc_24: 0.00013912348563776817 - ArtUnc_25: 0.0001879940038701234 - ArtUnc_26: 3.117946243289524e-05 - ArtUnc_27: 0.00021123077073010452 - ArtUnc_28: -2.6931251017312914e-06 - ArtUnc_29: -0.0005732465940048247 - ArtUnc_30: 0.00012951670447790492 - ArtUnc_31: 5.3867864331504804e-05 - ArtUnc_32: -0.00022791727755530698 - ArtUnc_33: -2.3810441820842363e-07 - ArtUnc_34: -7.330782394984981e-06 - ArtUnc_35: 1.7685369090595978e-05 - ArtUnc_36: 2.472431294429736e-06 - ArtUnc_37: -1.4607163820264948e-05 - ArtUnc_38: -2.6176429082263394e-06 - ArtUnc_39: 6.607915967338179e-07 - ArtUnc_40: -5.1362874816019386e-08 - ArtUnc_41: 1.5135293048599682e-06 - ArtUnc_42: 3.930922079682163e-08 - ArtUnc_43: 1.304912887440288e-06 - ArtUnc_44: -7.960303951658007e-06 - ArtUnc_45: -5.351476142610959e-08 - ArtUnc_46: -3.500460120766551e-07 - ArtUnc_47: -2.6985309472054276e-07 - ArtUnc_48: -6.382660114581625e-09 - ArtUnc_49: -2.434139705635471e-06 - ArtUnc_50: -4.811695723307431e-07 - ArtUnc_51: -2.879156312046098e-08 - ArtUnc_52: -1.9332838629887088e-08 - ArtUnc_53: -5.698775424400125e-09 - ArtUnc_54: 1.2428319793268545e-08 - ArtUnc_55: 1.829936559843659e-08 - ArtUnc_56: -9.683602000647387e-10 - ArtUnc_57: -2.0089989751234485e-09 - ArtUnc_58: -4.093810632764918e-09 - ArtUnc_59: 7.913059982895017e-09 - ArtUnc_60: -6.358131181265117e-09 - ArtUnc_61: -3.316418941661967e-11 - ArtUnc_62: 4.826728173644871e-09 - ArtUnc_63: -5.171061553900622e-10 - ArtUnc_64: -3.349431848054753e-07 - ArtUnc_65: -1.1614407621022927e-08 - ArtUnc_66: 2.3340415670960243e-07 - ArtUnc_67: -4.714533807608359e-09 - ArtUnc_68: -5.125500757965474e-10 - ArtUnc_69: -2.568175920169571e-11 - ArtUnc_70: 4.617791891800068e-10 - ArtUnc_71: 1.7269565631121524e-11 - ArtUnc_72: 1.0426947546369062e-09 - ArtUnc_73: -1.3974946479046988e-10 - ArtUnc_74: 7.388353615943769e-11 - ArtUnc_75: 2.2023115713548736e-09 - ArtUnc_76: -3.2388756321363645e-11 - ArtUnc_77: 1.683694432077247e-10 - ArtUnc_78: -2.3319062783812886e-09 - ArtUnc_79: 6.984125752366835e-10 - ArtUnc_80: 2.421067285842708e-10 - ArtUnc_81: -1.064510427534945e-10 - ArtUnc_82: -9.551534802834587e-12 - ArtUnc_83: 4.2477216540959984e-11 - ArtUnc_84: -1.2581519448914072e-11 - ArtUnc_85: 2.8532031390087507e-13 - ArtUnc_86: -7.1550686481024196e-12 - ArtUnc_87: -8.385559175990136e-12 - ArtUnc_88: -6.684767466889214e-11 - ArtUnc_89: 9.054072666778e-12 - ArtUnc_90: -1.8249590088503793e-11 - ArtUnc_91: -1.376928279346296e-12 - ArtUnc_92: 2.0830196938468465e-10 - ArtUnc_93: 1.474440598941585e-11 - ArtUnc_94: 2.806228895777921e-12 - ArtUnc_95: -4.903718148236899e-11 - ArtUnc_96: 1.1351687655146475e-11 + ArtUnc_1: -4.650512749355942e-09 + ArtUnc_2: 2.6150404338355495e-07 + ArtUnc_3: 5.12557246908968e-07 + ArtUnc_4: 1.0849380135812087e-06 + ArtUnc_5: 7.030184433999337e-08 + ArtUnc_6: -6.666096450952222e-08 + ArtUnc_7: 8.926475091343498e-06 + ArtUnc_8: -3.752463903315676e-05 + ArtUnc_9: -4.525940513413666e-06 + ArtUnc_10: 3.1467905590806244e-05 + ArtUnc_11: -2.0233147902406997e-05 + ArtUnc_12: 2.021947318951445e-06 + ArtUnc_13: -4.003287853094295e-05 + ArtUnc_14: 9.54290296203011e-06 + ArtUnc_15: -1.5817618089945295e-05 + ArtUnc_16: 5.069765305450733e-07 + ArtUnc_17: -1.0889155969046879e-05 + ArtUnc_18: 7.854719394652192e-07 + ArtUnc_19: 2.3706046886005644e-05 + ArtUnc_20: -1.9083074205274243e-05 + ArtUnc_21: 4.747888848597217e-07 + ArtUnc_22: 0.00016734295161063723 + ArtUnc_23: 1.8956321121513973e-06 + ArtUnc_24: 0.0001391234856377672 + ArtUnc_25: 0.00018799400387012392 + ArtUnc_26: 3.117946243289525e-05 + ArtUnc_27: 0.00021123077073010498 + ArtUnc_28: 2.693125101744767e-06 + ArtUnc_29: 0.0005732465940048262 + ArtUnc_30: 0.00012951670447777832 + ArtUnc_31: -5.386786433193626e-05 + ArtUnc_32: -0.0002279172775553063 + ArtUnc_33: 2.3810441821111926e-07 + ArtUnc_34: -7.330782394982886e-06 + ArtUnc_35: -1.7685369090595917e-05 + ArtUnc_36: -2.4724312944298536e-06 + ArtUnc_37: -1.4607163820264878e-05 + ArtUnc_38: 2.6176429082255432e-06 + ArtUnc_39: -6.607915967338914e-07 + ArtUnc_40: -5.1362874816051534e-08 + ArtUnc_41: 1.5135293048599083e-06 + ArtUnc_42: -3.930922079681527e-08 + ArtUnc_43: 1.3049128874402319e-06 + ArtUnc_44: -7.96030395165809e-06 + ArtUnc_45: 5.351476142624853e-08 + ArtUnc_46: -3.500460120766658e-07 + ArtUnc_47: -2.698530947205398e-07 + ArtUnc_48: 6.382660114578908e-09 + ArtUnc_49: 2.4341397056357427e-06 + ArtUnc_50: 4.81169572330774e-07 + ArtUnc_51: 2.879156312045966e-08 + ArtUnc_52: 1.933283862988446e-08 + ArtUnc_53: 5.698775424400118e-09 + ArtUnc_54: -1.2428319793269074e-08 + ArtUnc_55: 1.8299365598447446e-08 + ArtUnc_56: -9.683602000634305e-10 + ArtUnc_57: -2.008998975123179e-09 + ArtUnc_58: -4.09381063276111e-09 + ArtUnc_59: 7.913059982895237e-09 + ArtUnc_60: 6.358131181272643e-09 + ArtUnc_61: 3.316418941539378e-11 + ArtUnc_62: 4.826728173643972e-09 + ArtUnc_63: -5.171061553907083e-10 + ArtUnc_64: 3.34943184805511e-07 + ArtUnc_65: -1.1614407621026812e-08 + ArtUnc_66: -2.3340415670957435e-07 + ArtUnc_67: -4.714533807607662e-09 + ArtUnc_68: -5.125500757971282e-10 + ArtUnc_69: 2.5681759201689222e-11 + ArtUnc_70: -4.617791891797858e-10 + ArtUnc_71: -1.726956563111836e-11 + ArtUnc_72: -1.0426947546361144e-09 + ArtUnc_73: 1.3974946479052858e-10 + ArtUnc_74: -7.388353615932547e-11 + ArtUnc_75: 2.2023115713533785e-09 + ArtUnc_76: -3.238875632136181e-11 + ArtUnc_77: 1.683694432077045e-10 + ArtUnc_78: -2.3319062783790383e-09 + ArtUnc_79: 6.984125752352948e-10 + ArtUnc_80: 2.4210672858428407e-10 + ArtUnc_81: -1.0645104275344316e-10 + ArtUnc_82: 9.551534802832154e-12 + ArtUnc_83: 4.247721654093233e-11 + ArtUnc_84: 1.2581519448969144e-11 + ArtUnc_85: -2.853203139020557e-13 + ArtUnc_86: -7.1550686480950606e-12 + ArtUnc_87: -8.385559175981213e-12 + ArtUnc_88: 9.054072666771776e-12 + ArtUnc_89: 6.684767466884986e-11 + ArtUnc_90: 1.8249590088465067e-11 + ArtUnc_91: -1.3769282793509156e-12 + ArtUnc_92: -2.0830196938451975e-10 + ArtUnc_93: 1.474440598941191e-11 + ArtUnc_94: 2.8062288957760026e-12 + ArtUnc_95: -4.9037181482300245e-11 + ArtUnc_96: 1.1351687655157902e-11 - stat: 0 Uncorr: 0.000477 RCES: 0.0005078202128706576 @@ -5232,102 +5232,102 @@ bins: ModelRW_2: 0.0008533435346037373 JES_1: 0.0005263668523947913 JES_2: 0.0005263668523947913 - ArtUnc_1: 5.471569995891646e-10 - ArtUnc_2: -2.1548459534169628e-08 - ArtUnc_3: 1.6107173820232725e-09 - ArtUnc_4: 1.8790643118297607e-07 - ArtUnc_5: 1.050117042570297e-09 - ArtUnc_6: 1.4980021086587036e-08 - ArtUnc_7: 1.0716030983490844e-06 - ArtUnc_8: -5.852027745173473e-06 - ArtUnc_9: 7.491192402189114e-07 - ArtUnc_10: -8.052950538933017e-08 - ArtUnc_11: -5.7252344852199985e-06 - ArtUnc_12: 9.685501549657312e-07 - ArtUnc_13: 1.3424257850249387e-06 - ArtUnc_14: -9.956049613005863e-07 - ArtUnc_15: 5.297725506633483e-07 - ArtUnc_16: 1.673837768454332e-08 - ArtUnc_17: -3.582507838236449e-07 - ArtUnc_18: 1.2647274373508488e-08 - ArtUnc_19: -1.2336629966632117e-06 - ArtUnc_20: 8.403154663433771e-07 - ArtUnc_21: 6.791298681435195e-07 - ArtUnc_22: -1.776150220884706e-06 - ArtUnc_23: -4.784905450234038e-07 - ArtUnc_24: -5.1696968831452726e-06 - ArtUnc_25: 2.821350325782999e-05 - ArtUnc_26: -6.758352126525412e-06 - ArtUnc_27: -1.948245245698466e-05 - ArtUnc_28: 1.8615587928714592e-07 - ArtUnc_29: -4.9400028648362785e-06 - ArtUnc_30: 2.5959751638211684e-06 - ArtUnc_31: 1.0763248007906184e-06 - ArtUnc_32: -3.287425978178637e-05 - ArtUnc_33: 3.2994683073729474e-08 - ArtUnc_34: -1.234940266205477e-06 - ArtUnc_35: 6.191515490196092e-06 - ArtUnc_36: 2.7249485883068733e-06 - ArtUnc_37: -5.989822561698192e-05 - ArtUnc_38: -1.0403639627465775e-05 - ArtUnc_39: -7.720196274664049e-05 - ArtUnc_40: 1.5220534773968058e-06 - ArtUnc_41: 1.709379278867283e-05 - ArtUnc_42: -8.11450519569054e-07 - ArtUnc_43: -1.3715268834483381e-05 - ArtUnc_44: 0.0002462097444531081 - ArtUnc_45: 1.2730256982183371e-06 - ArtUnc_46: 1.1643913116449376e-05 - ArtUnc_47: 1.629978914010714e-06 - ArtUnc_48: 2.280929511647473e-07 - ArtUnc_49: 3.6345767126120526e-05 - ArtUnc_50: 2.4422571255477306e-06 - ArtUnc_51: 6.822122723980482e-08 - ArtUnc_52: -5.976234737191764e-08 - ArtUnc_53: 1.8446310222817315e-08 - ArtUnc_54: -2.4751852109218752e-08 - ArtUnc_55: 1.131003801326065e-06 - ArtUnc_56: 1.0759820264169869e-06 - ArtUnc_57: 3.0780950207663535e-07 - ArtUnc_58: 6.812023712735954e-07 - ArtUnc_59: -7.960672216214537e-09 - ArtUnc_60: 5.267916630689111e-07 - ArtUnc_61: 3.39970164677748e-10 - ArtUnc_62: -6.665603912810152e-09 - ArtUnc_63: 7.138800656329359e-10 - ArtUnc_64: 2.477585785184677e-06 - ArtUnc_65: 3.6242879105329454e-08 - ArtUnc_66: -1.838464013018305e-06 - ArtUnc_67: 2.718142424691705e-08 - ArtUnc_68: -2.8193276372483382e-08 - ArtUnc_69: 5.427607805245182e-10 - ArtUnc_70: -3.084661349746725e-09 - ArtUnc_71: 5.447159219783033e-11 - ArtUnc_72: 2.1302205731501905e-08 - ArtUnc_73: 8.47153107572282e-10 - ArtUnc_74: 1.1628840669622708e-08 - ArtUnc_75: 1.7170116614497963e-08 - ArtUnc_76: -2.3415368954742075e-10 - ArtUnc_77: -2.7783117168968716e-10 - ArtUnc_78: 3.2602119554402305e-08 - ArtUnc_79: 1.0463517159940953e-08 - ArtUnc_80: -3.450248147908858e-10 - ArtUnc_81: 7.482156465457027e-10 - ArtUnc_82: -3.8370527796877e-11 - ArtUnc_83: -3.2471216627324176e-11 - ArtUnc_84: 1.4283148435102442e-09 - ArtUnc_85: -2.316766223558353e-11 - ArtUnc_86: 6.903485286948077e-11 - ArtUnc_87: 6.463824938402307e-11 - ArtUnc_88: -3.636593406602767e-10 - ArtUnc_89: 6.413357358594171e-12 - ArtUnc_90: 2.5940032189819596e-10 - ArtUnc_91: 6.457000917867735e-11 - ArtUnc_92: -1.2350529808453373e-09 - ArtUnc_93: -1.151435439702523e-11 - ArtUnc_94: -3.215014335109707e-11 - ArtUnc_95: -9.74700949230058e-11 - ArtUnc_96: -6.133126016763498e-11 + ArtUnc_1: 5.471569996118318e-10 + ArtUnc_2: -2.1548459534153544e-08 + ArtUnc_3: 1.6107173820174696e-09 + ArtUnc_4: 1.879064311830434e-07 + ArtUnc_5: 1.050117042374516e-09 + ArtUnc_6: 1.4980021086434547e-08 + ArtUnc_7: 1.0716030983489342e-06 + ArtUnc_8: -5.8520277451735335e-06 + ArtUnc_9: 7.491192402186086e-07 + ArtUnc_10: -8.052950538988503e-08 + ArtUnc_11: -5.725234485220118e-06 + ArtUnc_12: -9.685501549661442e-07 + ArtUnc_13: -1.3424257850248628e-06 + ArtUnc_14: -9.956049613002278e-07 + ArtUnc_15: 5.29772550663397e-07 + ArtUnc_16: 1.6738377684272918e-08 + ArtUnc_17: -3.582507838237691e-07 + ArtUnc_18: -1.264727437334715e-08 + ArtUnc_19: 1.233662996663388e-06 + ArtUnc_20: 8.403154663435293e-07 + ArtUnc_21: 6.79129868143396e-07 + ArtUnc_22: -1.776150220884529e-06 + ArtUnc_23: -4.784905450229317e-07 + ArtUnc_24: -5.169696883145389e-06 + ArtUnc_25: 2.8213503257829692e-05 + ArtUnc_26: -6.758352126525302e-06 + ArtUnc_27: -1.9482452456984413e-05 + ArtUnc_28: -1.8615587928710915e-07 + ArtUnc_29: 4.94000286483612e-06 + ArtUnc_30: 2.595975163818299e-06 + ArtUnc_31: -1.076324800799102e-06 + ArtUnc_32: -3.2874259781786615e-05 + ArtUnc_33: -3.299468307382029e-08 + ArtUnc_34: -1.2349402662050923e-06 + ArtUnc_35: -6.191515490195612e-06 + ArtUnc_36: -2.7249485883079676e-06 + ArtUnc_37: -5.989822561698278e-05 + ArtUnc_38: 1.040363962746263e-05 + ArtUnc_39: 7.720196274664037e-05 + ArtUnc_40: 1.5220534773987657e-06 + ArtUnc_41: 1.70937927886724e-05 + ArtUnc_42: 8.114505195690131e-07 + ArtUnc_43: -1.371526883447847e-05 + ArtUnc_44: 0.00024620974445310794 + ArtUnc_45: -1.2730256982223254e-06 + ArtUnc_46: 1.1643913116449547e-05 + ArtUnc_47: 1.6299789140107506e-06 + ArtUnc_48: -2.2809295116473704e-07 + ArtUnc_49: -3.634576712612296e-05 + ArtUnc_50: -2.4422571255481782e-06 + ArtUnc_51: -6.822122723981085e-08 + ArtUnc_52: 5.976234737191589e-08 + ArtUnc_53: -1.8446310222813494e-08 + ArtUnc_54: 2.4751852109216145e-08 + ArtUnc_55: 1.1310038013260833e-06 + ArtUnc_56: 1.0759820264168969e-06 + ArtUnc_57: 3.0780950207694145e-07 + ArtUnc_58: 6.812023712735847e-07 + ArtUnc_59: -7.960672216219715e-09 + ArtUnc_60: -5.267916630689513e-07 + ArtUnc_61: -3.399701646687149e-10 + ArtUnc_62: -6.6656039128050465e-09 + ArtUnc_63: 7.138800656368192e-10 + ArtUnc_64: -2.4775857851850117e-06 + ArtUnc_65: 3.624287910535524e-08 + ArtUnc_66: 1.8384640130182134e-06 + ArtUnc_67: 2.7181424246913548e-08 + ArtUnc_68: -2.8193276372482016e-08 + ArtUnc_69: -5.42760780524532e-10 + ArtUnc_70: 3.0846613497465428e-09 + ArtUnc_71: -5.4471592197849197e-11 + ArtUnc_72: -2.1302205731503017e-08 + ArtUnc_73: -8.471531075724741e-10 + ArtUnc_74: -1.1628840669622942e-08 + ArtUnc_75: 1.7170116614500534e-08 + ArtUnc_76: -2.341536895472736e-10 + ArtUnc_77: -2.7783117168958113e-10 + ArtUnc_78: 3.260211955439682e-08 + ArtUnc_79: 1.046351715994512e-08 + ArtUnc_80: -3.450248147908177e-10 + ArtUnc_81: 7.482156465457119e-10 + ArtUnc_82: 3.8370527796884825e-11 + ArtUnc_83: -3.247121662728555e-11 + ArtUnc_84: -1.4283148435103424e-09 + ArtUnc_85: 2.3167662235587087e-11 + ArtUnc_86: 6.903485286946707e-11 + ArtUnc_87: 6.463824938400358e-11 + ArtUnc_88: 6.4133573585991416e-12 + ArtUnc_89: 3.6365934066034854e-10 + ArtUnc_90: -2.5940032189813645e-10 + ArtUnc_91: 6.457000917868311e-11 + ArtUnc_92: 1.2350529808450879e-09 + ArtUnc_93: -1.151435439701838e-11 + ArtUnc_94: -3.2150143351094645e-11 + ArtUnc_95: -9.747009492310879e-11 + ArtUnc_96: -6.133126016765184e-11 - stat: 0 Uncorr: 0.000155 RCES: 0.00021895498823959234 @@ -5343,102 +5343,102 @@ bins: ModelRW_2: 0.00040114167696712845 JES_1: 0.0003417438052657282 JES_2: 0.0003417438052657282 - ArtUnc_1: 3.725748441855142e-13 - ArtUnc_2: -5.576213415696871e-11 - ArtUnc_3: -1.8792997287418968e-10 - ArtUnc_4: -4.5867840932795444e-10 - ArtUnc_5: -1.4436446728744216e-11 - ArtUnc_6: 1.8673969063588274e-11 - ArtUnc_7: -2.304809777235498e-09 - ArtUnc_8: 7.845765890469632e-10 - ArtUnc_9: 1.977290840880951e-09 - ArtUnc_10: -1.1619921967808012e-08 - ArtUnc_11: -3.3435052190755636e-09 - ArtUnc_12: 1.8580739693610029e-09 - ArtUnc_13: -6.89347051218557e-08 - ArtUnc_14: -8.552736714386387e-09 - ArtUnc_15: 1.5846804640892226e-08 - ArtUnc_16: -4.681586314223856e-10 - ArtUnc_17: 2.5773570618027182e-08 - ArtUnc_18: 1.388346765828633e-09 - ArtUnc_19: 1.0772612664036784e-07 - ArtUnc_20: 9.127921594960896e-08 - ArtUnc_21: -6.69780382922057e-11 - ArtUnc_22: -1.1270512654928677e-07 - ArtUnc_23: -1.3323411868686961e-09 - ArtUnc_24: -1.5556328301045476e-06 - ArtUnc_25: 7.606353978765809e-07 - ArtUnc_26: -3.851083482718733e-07 - ArtUnc_27: -1.452548473409936e-06 - ArtUnc_28: 5.088505297563495e-08 - ArtUnc_29: 1.6117205402691302e-06 - ArtUnc_30: -4.113354807336254e-07 - ArtUnc_31: -1.6983994409327336e-07 - ArtUnc_32: 1.6892305922853991e-06 - ArtUnc_33: 1.457067663137859e-10 - ArtUnc_34: 8.989143287514196e-08 - ArtUnc_35: 8.88695551904404e-08 - ArtUnc_36: 7.181782097801695e-07 - ArtUnc_37: -2.077812503773524e-06 - ArtUnc_38: -3.6391782595324245e-07 - ArtUnc_39: -2.7286713820165273e-06 - ArtUnc_40: 5.455195979654707e-08 - ArtUnc_41: 7.549069678202049e-06 - ArtUnc_42: -7.453588459542621e-08 - ArtUnc_43: -1.1101608282611443e-05 - ArtUnc_44: 2.0012574636198835e-06 - ArtUnc_45: 2.7433672163776266e-08 - ArtUnc_46: -9.517229932449512e-07 - ArtUnc_47: 5.589666364913685e-07 - ArtUnc_48: 2.4944416287925542e-08 - ArtUnc_49: 2.347177907621526e-05 - ArtUnc_50: 1.4282041253315672e-06 - ArtUnc_51: -4.788002977744846e-07 - ArtUnc_52: -8.903094382817606e-07 - ArtUnc_53: 1.2459460515367121e-07 - ArtUnc_54: -8.14925320565125e-08 - ArtUnc_55: 1.2594223585420613e-05 - ArtUnc_56: 1.4274865327026748e-05 - ArtUnc_57: 4.174072422600962e-06 - ArtUnc_58: 2.2303548443451325e-05 - ArtUnc_59: -2.1908097420859265e-07 - ArtUnc_60: 1.891093455120236e-05 - ArtUnc_61: 1.094479673948385e-08 - ArtUnc_62: -6.893892056162117e-08 - ArtUnc_63: 5.823766977123618e-09 - ArtUnc_64: -5.6603262292214214e-05 - ArtUnc_65: -8.015406273532788e-07 - ArtUnc_66: 3.9683471410176716e-05 - ArtUnc_67: -5.263076671627705e-07 - ArtUnc_68: 3.5855468780186174e-07 - ArtUnc_69: -1.0173186218329567e-08 - ArtUnc_70: 1.229531766027621e-07 - ArtUnc_71: 2.479331417189453e-09 - ArtUnc_72: 6.571712548162449e-07 - ArtUnc_73: 4.7783870276873866e-08 - ArtUnc_74: 1.0059102231087426e-07 - ArtUnc_75: 8.417761885970783e-07 - ArtUnc_76: 8.396096597470064e-09 - ArtUnc_77: 7.42300544961137e-09 - ArtUnc_78: -1.1325365974717505e-07 - ArtUnc_79: -4.23188220554539e-08 - ArtUnc_80: 6.129071591428982e-09 - ArtUnc_81: -9.456587992687703e-09 - ArtUnc_82: 1.5188352334209478e-10 - ArtUnc_83: 5.014588526357882e-09 - ArtUnc_84: 1.1798190978593119e-08 - ArtUnc_85: 2.631729931569993e-10 - ArtUnc_86: 1.924573846872015e-11 - ArtUnc_87: 2.593975753501807e-10 - ArtUnc_88: -2.02771483831625e-08 - ArtUnc_89: 1.2062301518549229e-09 - ArtUnc_90: 3.017083083839918e-09 - ArtUnc_91: -1.0921148670095773e-09 - ArtUnc_92: 2.351887988494077e-08 - ArtUnc_93: 4.3944548208900017e-10 - ArtUnc_94: 3.733027150779105e-10 - ArtUnc_95: -3.2961109082648946e-09 - ArtUnc_96: 4.3659842526255104e-11 + ArtUnc_1: 3.72574843754151e-13 + ArtUnc_2: -5.5762134156865614e-11 + ArtUnc_3: -1.8792997287274888e-10 + ArtUnc_4: -4.5867840932993047e-10 + ArtUnc_5: -1.4436446732121365e-11 + ArtUnc_6: 1.867396902546295e-11 + ArtUnc_7: -2.3048097772345663e-09 + ArtUnc_8: 7.845765890473015e-10 + ArtUnc_9: 1.977290840908495e-09 + ArtUnc_10: -1.1619921967779412e-08 + ArtUnc_11: -3.343505219064145e-09 + ArtUnc_12: -1.858073969329258e-09 + ArtUnc_13: 6.893470512185661e-08 + ArtUnc_14: -8.552736714474256e-09 + ArtUnc_15: 1.584680464086288e-08 + ArtUnc_16: -4.681586319467342e-10 + ArtUnc_17: 2.577357061816638e-08 + ArtUnc_18: -1.3883467658975774e-09 + ArtUnc_19: -1.0772612664045383e-07 + ArtUnc_20: 9.127921594949682e-08 + ArtUnc_21: -6.69780382479327e-11 + ArtUnc_22: -1.1270512654920153e-07 + ArtUnc_23: -1.33234118677314e-09 + ArtUnc_24: -1.555632830104435e-06 + ArtUnc_25: 7.606353978765029e-07 + ArtUnc_26: -3.851083482718545e-07 + ArtUnc_27: -1.4525484734098774e-06 + ArtUnc_28: -5.0885052975844806e-08 + ArtUnc_29: -1.61172054026889e-06 + ArtUnc_30: -4.1133548073345233e-07 + ArtUnc_31: 1.6983994409471313e-07 + ArtUnc_32: 1.6892305922854216e-06 + ArtUnc_33: -1.457067664224312e-10 + ArtUnc_34: 8.989143287517297e-08 + ArtUnc_35: -8.88695551901891e-08 + ArtUnc_36: -7.18178209779854e-07 + ArtUnc_37: -2.0778125037738755e-06 + ArtUnc_38: 3.6391782595336935e-07 + ArtUnc_39: 2.7286713820166425e-06 + ArtUnc_40: 5.455195979650584e-08 + ArtUnc_41: 7.549069678202054e-06 + ArtUnc_42: 7.453588459557469e-08 + ArtUnc_43: -1.1101608282611014e-05 + ArtUnc_44: 2.001257463619583e-06 + ArtUnc_45: -2.7433672163892875e-08 + ArtUnc_46: -9.517229932447282e-07 + ArtUnc_47: 5.589666364914897e-07 + ArtUnc_48: -2.4944416287900184e-08 + ArtUnc_49: -2.347177907621313e-05 + ArtUnc_50: -1.4282041253317663e-06 + ArtUnc_51: 4.788002977745001e-07 + ArtUnc_52: 8.903094382816588e-07 + ArtUnc_53: -1.2459460515372746e-07 + ArtUnc_54: 8.14925320564319e-08 + ArtUnc_55: 1.2594223585421794e-05 + ArtUnc_56: 1.4274865327025676e-05 + ArtUnc_57: 4.174072422605024e-06 + ArtUnc_58: 2.230354844345179e-05 + ArtUnc_59: -2.190809742086046e-07 + ArtUnc_60: -1.8910934551201536e-05 + ArtUnc_61: -1.094479673965532e-08 + ArtUnc_62: -6.893892056174763e-08 + ArtUnc_63: 5.82376697707184e-09 + ArtUnc_64: 5.660326229221998e-05 + ArtUnc_65: -8.015406273538802e-07 + ArtUnc_66: -3.968347141017291e-05 + ArtUnc_67: -5.263076671626725e-07 + ArtUnc_68: 3.5855468780181044e-07 + ArtUnc_69: 1.0173186218331753e-08 + ArtUnc_70: -1.2295317660275172e-07 + ArtUnc_71: -2.4793314171900886e-09 + ArtUnc_72: -6.571712548162341e-07 + ArtUnc_73: -4.7783870276875176e-08 + ArtUnc_74: -1.005910223108769e-07 + ArtUnc_75: 8.417761885970648e-07 + ArtUnc_76: 8.396096597475887e-09 + ArtUnc_77: 7.423005449611018e-09 + ArtUnc_78: -1.1325365974715549e-07 + ArtUnc_79: -4.231882205546767e-08 + ArtUnc_80: 6.129071591428702e-09 + ArtUnc_81: -9.456587992687747e-09 + ArtUnc_82: -1.5188352334206963e-10 + ArtUnc_83: 5.014588526357662e-09 + ArtUnc_84: -1.1798190978592541e-08 + ArtUnc_85: -2.631729931570385e-10 + ArtUnc_86: 1.9245738468918398e-11 + ArtUnc_87: 2.5939757535041884e-10 + ArtUnc_88: 1.2062301518547448e-09 + ArtUnc_89: 2.027714838316177e-08 + ArtUnc_90: -3.0170830838406754e-09 + ArtUnc_91: -1.0921148670096631e-09 + ArtUnc_92: -2.351887988493733e-08 + ArtUnc_93: 4.3944548208894744e-10 + ArtUnc_94: 3.7330271507787496e-10 + ArtUnc_95: -3.296110908263646e-09 + ArtUnc_96: 4.3659842526486204e-11 - stat: 0 Uncorr: 2.91e-05 RCES: 3.286464642666949e-05 @@ -5454,102 +5454,102 @@ bins: ModelRW_2: 7.345920217712685e-05 JES_1: 0.00011410169001377672 JES_2: 0.00011410169001377672 - ArtUnc_1: -5.2414622595776756e-15 - ArtUnc_2: 8.207592964731506e-13 - ArtUnc_3: 3.847729041684691e-12 - ArtUnc_4: 1.3792222266566074e-11 - ArtUnc_5: 5.052176641875075e-13 - ArtUnc_6: 2.2494956915663803e-14 - ArtUnc_7: 6.265328750309182e-11 - ArtUnc_8: -2.3772774781838074e-10 - ArtUnc_9: -3.1675878965401614e-12 - ArtUnc_10: -9.980068575842941e-12 - ArtUnc_11: 8.486503372810134e-11 - ArtUnc_12: -1.4472528444016473e-11 - ArtUnc_13: -1.9485505226518077e-10 - ArtUnc_14: 1.3385041147094832e-11 - ArtUnc_15: 1.2777939883775687e-11 - ArtUnc_16: -1.4594415085541144e-12 - ArtUnc_17: -7.622530131599248e-12 - ArtUnc_18: 3.3382253915144836e-13 - ArtUnc_19: -4.174449188947476e-10 - ArtUnc_20: -1.458526363043474e-10 - ArtUnc_21: -1.218326399980731e-10 - ArtUnc_22: 2.9701427574704487e-09 - ArtUnc_23: 2.22998549042183e-10 - ArtUnc_24: 7.119878894201229e-10 - ArtUnc_25: -4.049074824714188e-09 - ArtUnc_26: 1.3627773034302058e-09 - ArtUnc_27: 7.095862095535974e-09 - ArtUnc_28: 5.718772664967846e-10 - ArtUnc_29: 3.751773345446773e-09 - ArtUnc_30: -2.9515041503971795e-09 - ArtUnc_31: -1.1378459994761584e-09 - ArtUnc_32: 2.1546215977208857e-08 - ArtUnc_33: 2.5580061046276632e-11 - ArtUnc_34: -7.500012142836068e-10 - ArtUnc_35: 8.728016111697142e-09 - ArtUnc_36: -1.4591722382617339e-08 - ArtUnc_37: -1.5180310001887535e-07 - ArtUnc_38: -2.9087276501936008e-08 - ArtUnc_39: -2.4003660755313586e-07 - ArtUnc_40: 3.6335764936337553e-09 - ArtUnc_41: -1.7897560141452676e-07 - ArtUnc_42: -3.862399379321751e-09 - ArtUnc_43: 3.891403788701698e-07 - ArtUnc_44: -3.012756355155686e-07 - ArtUnc_45: -2.2701893787055546e-10 - ArtUnc_46: 3.0437265445985966e-08 - ArtUnc_47: -6.821619111218156e-08 - ArtUnc_48: -5.213033624738738e-09 - ArtUnc_49: -7.909571133749282e-07 - ArtUnc_50: 4.000696485550032e-09 - ArtUnc_51: -1.224471599566261e-07 - ArtUnc_52: 2.3873887600907556e-08 - ArtUnc_53: 1.3473575118941014e-08 - ArtUnc_54: -2.9872328342732867e-08 - ArtUnc_55: -1.5813190610402345e-06 - ArtUnc_56: 1.933241606756727e-06 - ArtUnc_57: 4.6978450337945344e-07 - ArtUnc_58: -3.3089357511885516e-06 - ArtUnc_59: 1.8756063896370004e-07 - ArtUnc_60: 3.631987023923681e-06 - ArtUnc_61: -8.974999862879568e-09 - ArtUnc_62: -3.21002633898529e-07 - ArtUnc_63: 3.687766345572266e-08 - ArtUnc_64: 7.773053107357186e-06 - ArtUnc_65: 6.97788139850965e-07 - ArtUnc_66: 8.346360521631023e-06 - ArtUnc_67: -3.417827012533438e-07 - ArtUnc_68: -4.1262878647269415e-07 - ArtUnc_69: -3.535170070934319e-09 - ArtUnc_70: 4.836847420599936e-07 - ArtUnc_71: 2.5243277693487462e-08 - ArtUnc_72: 5.7731325918633595e-06 - ArtUnc_73: 4.6811126185050636e-07 - ArtUnc_74: 1.5770399135300984e-06 - ArtUnc_75: 9.869174798919056e-06 - ArtUnc_76: 7.128038724571136e-08 - ArtUnc_77: -3.145401141298582e-08 - ArtUnc_78: 1.889171597787733e-05 - ArtUnc_79: 1.3499821119504489e-05 - ArtUnc_80: -7.1259305525188e-08 - ArtUnc_81: 4.948333753718327e-07 - ArtUnc_82: -3.5235174352896035e-08 - ArtUnc_83: -5.926496319976261e-08 - ArtUnc_84: 1.4452008476414846e-07 - ArtUnc_85: -1.5083206448382862e-08 - ArtUnc_86: 4.377923905507403e-09 - ArtUnc_87: 5.063614671792069e-09 - ArtUnc_88: -2.873263317578972e-07 - ArtUnc_89: 6.74573155948979e-09 - ArtUnc_90: 9.439684959933751e-08 - ArtUnc_91: -2.3971753920996644e-08 - ArtUnc_92: 4.2682329227800776e-08 - ArtUnc_93: 1.5311556383350169e-09 - ArtUnc_94: -4.599464050392651e-10 - ArtUnc_95: -1.9906259590400175e-08 - ArtUnc_96: 2.3216321592755967e-09 + ArtUnc_1: -5.241462259945504e-15 + ArtUnc_2: 8.207592964730536e-13 + ArtUnc_3: 3.847729041683561e-12 + ArtUnc_4: 1.3792222266569431e-11 + ArtUnc_5: 5.052176641803228e-13 + ArtUnc_6: 2.249495667603643e-14 + ArtUnc_7: 6.265328750309011e-11 + ArtUnc_8: -2.377277478183806e-10 + ArtUnc_9: -3.167587896563486e-12 + ArtUnc_10: -9.980068575788724e-12 + ArtUnc_11: 8.486503372824655e-11 + ArtUnc_12: 1.4472528442572177e-11 + ArtUnc_13: 1.9485505226517446e-10 + ArtUnc_14: 1.3385041148049875e-11 + ArtUnc_15: 1.2777939886617276e-11 + ArtUnc_16: -1.4594414874811343e-12 + ArtUnc_17: -7.622530132064897e-12 + ArtUnc_18: -3.3382254149254044e-13 + ArtUnc_19: 4.1744491889578663e-10 + ArtUnc_20: -1.458526363026746e-10 + ArtUnc_21: -1.2183263999339942e-10 + ArtUnc_22: 2.970142757468545e-09 + ArtUnc_23: 2.2299854903822662e-10 + ArtUnc_24: 7.119878894173299e-10 + ArtUnc_25: -4.04907482471203e-09 + ArtUnc_26: 1.362777303429574e-09 + ArtUnc_27: 7.095862095533802e-09 + ArtUnc_28: -5.718772664874926e-10 + ArtUnc_29: -3.751773345438866e-09 + ArtUnc_30: -2.9515041503778913e-09 + ArtUnc_31: 1.1378459995070667e-09 + ArtUnc_32: 2.1546215977208804e-08 + ArtUnc_33: -2.5580061091301333e-11 + ArtUnc_34: -7.500012142866035e-10 + ArtUnc_35: -8.728016111705376e-09 + ArtUnc_36: 1.4591722382626946e-08 + ArtUnc_37: -1.5180310001887374e-07 + ArtUnc_38: 2.908727650187965e-08 + ArtUnc_39: 2.400366075531249e-07 + ArtUnc_40: 3.6335764936557314e-09 + ArtUnc_41: -1.7897560141455276e-07 + ArtUnc_42: 3.862399379342501e-09 + ArtUnc_43: 3.891403788701593e-07 + ArtUnc_44: -3.012756355155561e-07 + ArtUnc_45: 2.2701893778899755e-10 + ArtUnc_46: 3.043726544595362e-08 + ArtUnc_47: -6.82161911121795e-08 + ArtUnc_48: 5.213033624694447e-09 + ArtUnc_49: 7.909571133748741e-07 + ArtUnc_50: -4.000696485508816e-09 + ArtUnc_51: 1.2244715995664577e-07 + ArtUnc_52: -2.387388760086234e-08 + ArtUnc_53: -1.3473575118922905e-08 + ArtUnc_54: 2.9872328342697794e-08 + ArtUnc_55: -1.581319061040107e-06 + ArtUnc_56: 1.933241606756599e-06 + ArtUnc_57: 4.697845033799855e-07 + ArtUnc_58: -3.308935751188501e-06 + ArtUnc_59: 1.8756063896365827e-07 + ArtUnc_60: -3.6319870239236007e-06 + ArtUnc_61: 8.974999862891205e-09 + ArtUnc_62: -3.2100263389846357e-07 + ArtUnc_63: 3.687766345572873e-08 + ArtUnc_64: -7.773053107356384e-06 + ArtUnc_65: 6.977881398509863e-07 + ArtUnc_66: -8.346360521631696e-06 + ArtUnc_67: -3.417827012533332e-07 + ArtUnc_68: -4.126287864727083e-07 + ArtUnc_69: 3.5351700709203385e-09 + ArtUnc_70: -4.836847420599969e-07 + ArtUnc_71: -2.5243277693506292e-08 + ArtUnc_72: -5.773132591863485e-06 + ArtUnc_73: -4.681112618505477e-07 + ArtUnc_74: -1.577039913530142e-06 + ArtUnc_75: 9.86917479891918e-06 + ArtUnc_76: 7.128038724576999e-08 + ArtUnc_77: -3.1454011412941795e-08 + ArtUnc_78: 1.8891715977876717e-05 + ArtUnc_79: 1.349982111950535e-05 + ArtUnc_80: -7.125930552507109e-08 + ArtUnc_81: 4.94833375371924e-07 + ArtUnc_82: 3.523517435289861e-08 + ArtUnc_83: -5.926496319977509e-08 + ArtUnc_84: -1.4452008476412964e-07 + ArtUnc_85: 1.508320644838305e-08 + ArtUnc_86: 4.377923905507967e-09 + ArtUnc_87: 5.063614671791702e-09 + ArtUnc_88: 6.745731559486469e-09 + ArtUnc_89: 2.873263317578852e-07 + ArtUnc_90: -9.439684959935189e-08 + ArtUnc_91: -2.3971753920997772e-08 + ArtUnc_92: -4.26823292277409e-08 + ArtUnc_93: 1.5311556383332444e-09 + ArtUnc_94: -4.599464050398569e-10 + ArtUnc_95: -1.9906259590373583e-08 + ArtUnc_96: 2.321632159279879e-09 - stat: 0 Uncorr: 3.95e-06 RCES: 1.5008128830737027e-05 @@ -5565,102 +5565,102 @@ bins: ModelRW_2: 3.4969214139010906e-07 JES_1: 2.009286126572694e-05 JES_2: 2.009286126572694e-05 - ArtUnc_1: -1.901999100018548e-17 - ArtUnc_2: 1.0507157367213475e-14 - ArtUnc_3: 7.40593611506568e-14 - ArtUnc_4: 4.151678287759254e-13 - ArtUnc_5: 1.4607047974815595e-14 - ArtUnc_6: 3.987043341001862e-15 - ArtUnc_7: 2.9871234429879902e-12 - ArtUnc_8: -1.2890110141978409e-11 - ArtUnc_9: 1.9362487676758983e-13 - ArtUnc_10: -1.9130658820515975e-13 - ArtUnc_11: -3.400051044624664e-13 - ArtUnc_12: 3.652002954948537e-14 - ArtUnc_13: -7.1714396580676e-12 - ArtUnc_14: -1.2279063926269335e-13 - ArtUnc_15: 5.068030341871257e-14 - ArtUnc_16: 1.814632633271903e-15 - ArtUnc_17: -2.5823036771678652e-12 - ArtUnc_18: -7.732364378016276e-14 - ArtUnc_19: -1.0368599030456471e-11 - ArtUnc_20: 2.5377948411775244e-11 - ArtUnc_21: -1.835525458104688e-12 - ArtUnc_22: 3.2305271486619654e-10 - ArtUnc_23: 6.5716499618462496e-12 - ArtUnc_24: -1.3152564112477424e-10 - ArtUnc_25: -2.5802325607478847e-10 - ArtUnc_26: 5.448016000663151e-11 - ArtUnc_27: 9.181928486936754e-10 - ArtUnc_28: -4.2663113324387277e-11 - ArtUnc_29: -2.121381067982099e-10 - ArtUnc_30: 1.233692589427189e-10 - ArtUnc_31: 5.0572066257513994e-11 - ArtUnc_32: 1.98979108431419e-09 - ArtUnc_33: 5.964743403610258e-13 - ArtUnc_34: -4.229102206599528e-11 - ArtUnc_35: 6.37277150007288e-11 - ArtUnc_36: -8.992438540247284e-10 - ArtUnc_37: -2.8238691842799766e-09 - ArtUnc_38: -5.02980540834054e-10 - ArtUnc_39: -3.760335301555371e-09 - ArtUnc_40: -1.5225495777843334e-11 - ArtUnc_41: -1.5530794004637835e-08 - ArtUnc_42: -1.1200097110878717e-10 - ArtUnc_43: 3.320458370958875e-08 - ArtUnc_44: 1.612778691079054e-08 - ArtUnc_45: 1.9434751822814306e-10 - ArtUnc_46: 4.818719281876162e-09 - ArtUnc_47: -3.593683334232163e-10 - ArtUnc_48: 1.4452431641240683e-11 - ArtUnc_49: -1.1561914693040196e-07 - ArtUnc_50: -3.095265809794582e-09 - ArtUnc_51: 1.9902500579980663e-09 - ArtUnc_52: -1.0551540835725304e-09 - ArtUnc_53: -2.5839868436903215e-11 - ArtUnc_54: 2.735989615037522e-10 - ArtUnc_55: -1.7146668510367313e-08 - ArtUnc_56: -9.346685172218939e-09 - ArtUnc_57: -2.2964573279146082e-09 - ArtUnc_58: -2.5410501696593928e-08 - ArtUnc_59: 2.4527977930520205e-10 - ArtUnc_60: -4.2690864286483435e-08 - ArtUnc_61: -1.0006795074036811e-10 - ArtUnc_62: -1.5073637831944534e-09 - ArtUnc_63: 3.875254156561107e-11 - ArtUnc_64: 7.557892352678368e-08 - ArtUnc_65: -7.762771204768927e-09 - ArtUnc_66: -2.1676490443905314e-07 - ArtUnc_67: 3.088925173793289e-08 - ArtUnc_68: -3.777323449849427e-08 - ArtUnc_69: 9.873502259304843e-09 - ArtUnc_70: -2.373128831845292e-07 - ArtUnc_71: -2.8574018820259706e-09 - ArtUnc_72: 7.728916750925105e-08 - ArtUnc_73: 1.8004829794941364e-08 - ArtUnc_74: -1.1896352758006238e-06 - ArtUnc_75: 2.2098648925168953e-07 - ArtUnc_76: 2.786018071151877e-08 - ArtUnc_77: 7.187084774474957e-08 - ArtUnc_78: 2.2916415135349406e-06 - ArtUnc_79: -4.401578860181418e-06 - ArtUnc_80: 8.779094540537243e-08 - ArtUnc_81: -1.1345022521153709e-07 - ArtUnc_82: 1.138157692268845e-08 - ArtUnc_83: 3.163933993362653e-07 - ArtUnc_84: 1.3329149678621984e-06 - ArtUnc_85: 2.1353944709585353e-08 - ArtUnc_86: 5.5925988440237304e-08 - ArtUnc_87: 1.094170745951463e-07 - ArtUnc_88: -2.670456958818338e-06 - ArtUnc_89: 1.1376874495448061e-07 - ArtUnc_90: 4.823102494690155e-07 - ArtUnc_91: 1.4649026332981122e-07 - ArtUnc_92: 8.78447031792603e-06 - ArtUnc_93: 3.28059110009874e-08 - ArtUnc_94: 1.881002465380906e-07 - ArtUnc_95: -4.025966804622711e-07 - ArtUnc_96: -1.8317314419583592e-08 + ArtUnc_1: -1.9019991291243223e-17 + ArtUnc_2: 1.0507157366899366e-14 + ArtUnc_3: 7.405936115075455e-14 + ArtUnc_4: 4.1516782877622893e-13 + ArtUnc_5: 1.4607047978177815e-14 + ArtUnc_6: 3.987043331119774e-15 + ArtUnc_7: 2.9871234429873815e-12 + ArtUnc_8: -1.28901101419786e-11 + ArtUnc_9: 1.936248767826609e-13 + ArtUnc_10: -1.9130658824214493e-13 + ArtUnc_11: -3.400051045086563e-13 + ArtUnc_12: -3.6520029181094834e-14 + ArtUnc_13: 7.1714396580652244e-12 + ArtUnc_14: -1.2279063899775683e-13 + ArtUnc_15: 5.068030375999428e-14 + ArtUnc_16: 1.814635154565131e-15 + ArtUnc_17: -2.5823036770884942e-12 + ArtUnc_18: 7.732364342860023e-14 + ArtUnc_19: 1.0368599030336335e-11 + ArtUnc_20: 2.537794841164756e-11 + ArtUnc_21: -1.8355254578712134e-12 + ArtUnc_22: 3.23052714866025e-10 + ArtUnc_23: 6.571649960662051e-12 + ArtUnc_24: -1.315256411252612e-10 + ArtUnc_25: -2.5802325607447383e-10 + ArtUnc_26: 5.448016000703067e-11 + ArtUnc_27: 9.181928486933075e-10 + ArtUnc_28: 4.266311332429477e-11 + ArtUnc_29: 2.121381067959539e-10 + ArtUnc_30: 1.2336925894313725e-10 + ArtUnc_31: -5.0572066259762264e-11 + ArtUnc_32: 1.9897910843142253e-09 + ArtUnc_33: -5.964743379366253e-13 + ArtUnc_34: -4.2291022066909204e-11 + ArtUnc_35: -6.372771500145227e-11 + ArtUnc_36: 8.992438540225526e-10 + ArtUnc_37: -2.823869184278453e-09 + ArtUnc_38: 5.029805408362752e-10 + ArtUnc_39: 3.7603353015553514e-09 + ArtUnc_40: -1.522549579025299e-11 + ArtUnc_41: -1.553079400463468e-08 + ArtUnc_42: 1.1200097112152992e-10 + ArtUnc_43: 3.320458370959093e-08 + ArtUnc_44: 1.612778691079218e-08 + ArtUnc_45: -1.9434751816654295e-10 + ArtUnc_46: 4.818719281818341e-09 + ArtUnc_47: -3.5936833342592e-10 + ArtUnc_48: -1.4452431492510908e-11 + ArtUnc_49: 1.156191469303947e-07 + ArtUnc_50: 3.095265809797049e-09 + ArtUnc_51: -1.990250058016618e-09 + ArtUnc_52: 1.0551540835680762e-09 + ArtUnc_53: 2.583986842251015e-11 + ArtUnc_54: -2.7359896160844426e-10 + ArtUnc_55: -1.714666851039895e-08 + ArtUnc_56: -9.346685172236354e-09 + ArtUnc_57: -2.2964573279275797e-09 + ArtUnc_58: -2.541050169654537e-08 + ArtUnc_59: 2.4527977931268276e-10 + ArtUnc_60: 4.26908642864609e-08 + ArtUnc_61: 1.0006795078580084e-10 + ArtUnc_62: -1.5073637832204924e-09 + ArtUnc_63: 3.8752541563071965e-11 + ArtUnc_64: -7.557892352678078e-08 + ArtUnc_65: -7.762771204776205e-09 + ArtUnc_66: 2.1676490443910404e-07 + ArtUnc_67: 3.088925173796808e-08 + ArtUnc_68: -3.7773234498553116e-08 + ArtUnc_69: -9.873502259301812e-09 + ArtUnc_70: 2.373128831845414e-07 + ArtUnc_71: 2.8574018820224212e-09 + ArtUnc_72: -7.728916750927325e-08 + ArtUnc_73: -1.8004829794967403e-08 + ArtUnc_74: 1.1896352758006183e-06 + ArtUnc_75: 2.2098648925167571e-07 + ArtUnc_76: 2.7860180711512064e-08 + ArtUnc_77: 7.187084774475774e-08 + ArtUnc_78: 2.2916415135354548e-06 + ArtUnc_79: -4.401578860181456e-06 + ArtUnc_80: 8.779094540533577e-08 + ArtUnc_81: -1.1345022521150932e-07 + ArtUnc_82: -1.1381576922669683e-08 + ArtUnc_83: 3.163933993362474e-07 + ArtUnc_84: -1.3329149678621743e-06 + ArtUnc_85: -2.135394470958957e-08 + ArtUnc_86: 5.592598844023283e-08 + ArtUnc_87: 1.0941707459513449e-07 + ArtUnc_88: 1.1376874495446983e-07 + ArtUnc_89: 2.6704569588183046e-06 + ArtUnc_90: -4.823102494690392e-07 + ArtUnc_91: 1.4649026332982186e-07 + ArtUnc_92: -8.784470317925978e-06 + ArtUnc_93: 3.280591100098844e-08 + ArtUnc_94: 1.8810024653809077e-07 + ArtUnc_95: -4.025966804622898e-07 + ArtUnc_96: -1.8317314419579824e-08 - stat: 0 Uncorr: 8.53e-07 RCES: 2.9690374075573715e-06 @@ -5676,99 +5676,99 @@ bins: ModelRW_2: 1.142388987762925e-05 JES_1: 5.903502630307705e-06 JES_2: 5.903502630307705e-06 - ArtUnc_1: 2.3592717455278063e-20 - ArtUnc_2: -5.922629162227702e-18 - ArtUnc_3: -1.881943600015444e-17 - ArtUnc_4: 3.1581875786552915e-17 - ArtUnc_5: 1.5937575158089415e-18 - ArtUnc_6: 3.2893423568347272e-18 - ArtUnc_7: 1.2239723672629012e-15 - ArtUnc_8: -2.2074775992875465e-14 - ArtUnc_9: 6.704927997723987e-16 - ArtUnc_10: 2.769940885779498e-14 - ArtUnc_11: -5.873909050918547e-14 - ArtUnc_12: 4.6646760813590076e-15 - ArtUnc_13: 3.208249464110612e-14 - ArtUnc_14: -2.768336938859504e-15 - ArtUnc_15: 7.564761724867157e-15 - ArtUnc_16: -4.898938035446411e-16 - ArtUnc_17: -7.062103028399974e-15 - ArtUnc_18: -5.255133974819861e-16 - ArtUnc_19: -1.6363092567285706e-14 - ArtUnc_20: -2.3889846365697364e-13 - ArtUnc_21: 2.0807479149316982e-14 - ArtUnc_22: -5.297202828929652e-12 - ArtUnc_23: -1.9082778110477102e-13 - ArtUnc_24: 6.039201406219688e-12 - ArtUnc_25: 2.6715907554407336e-12 - ArtUnc_26: -2.796639331847442e-13 - ArtUnc_27: -1.9072862813521637e-11 - ArtUnc_28: 3.1805753313814845e-13 - ArtUnc_29: -2.342851279918988e-12 - ArtUnc_30: -2.1374606686935742e-13 - ArtUnc_31: -1.0815260613105309e-13 - ArtUnc_32: -1.96863975719e-11 - ArtUnc_33: 1.56368002495703e-14 - ArtUnc_34: 4.941397788678146e-12 - ArtUnc_35: -3.4343154224011755e-12 - ArtUnc_36: 4.797358782019336e-11 - ArtUnc_37: 5.773888609002955e-11 - ArtUnc_38: 9.251216849880243e-12 - ArtUnc_39: 6.909058451839528e-11 - ArtUnc_40: 1.692511740888848e-12 - ArtUnc_41: 3.7053698468621566e-10 - ArtUnc_42: -1.8553929057684222e-11 - ArtUnc_43: -4.846323282585256e-10 - ArtUnc_44: -3.327459492748151e-11 - ArtUnc_45: -7.597393140041539e-13 - ArtUnc_46: -6.897334913039593e-11 - ArtUnc_47: 1.5566079258685414e-10 - ArtUnc_48: 7.485089690148145e-12 - ArtUnc_49: 4.1862286539349234e-10 - ArtUnc_50: -6.302238876177875e-11 - ArtUnc_51: 9.65302787763233e-10 - ArtUnc_52: -5.721657990641889e-10 - ArtUnc_53: 2.4895736849703775e-11 - ArtUnc_54: 7.617696381166007e-11 - ArtUnc_55: -1.3478870594900175e-08 - ArtUnc_56: 1.2402321011990233e-08 - ArtUnc_57: 3.5571456105792596e-09 - ArtUnc_58: -2.5561509082484207e-08 - ArtUnc_59: -1.2383163719012923e-10 - ArtUnc_60: 3.2222219760102e-08 - ArtUnc_61: 5.225128803503071e-12 - ArtUnc_62: -8.974571982242052e-10 - ArtUnc_63: 9.44057460845764e-11 - ArtUnc_64: 2.4480318754976328e-08 - ArtUnc_65: 1.042472983640617e-09 - ArtUnc_66: 3.516679646392288e-08 - ArtUnc_67: 3.5298812203812566e-10 - ArtUnc_68: 1.9926689573872634e-09 - ArtUnc_69: 3.938321250106937e-10 - ArtUnc_70: -9.539111780809803e-09 - ArtUnc_71: -2.2666150732372423e-10 - ArtUnc_72: -4.3344959477670075e-08 - ArtUnc_73: -3.4399107786647648e-09 - ArtUnc_74: -3.766214542747313e-08 - ArtUnc_75: -8.85383302597457e-08 - ArtUnc_76: -5.078556975299819e-10 - ArtUnc_77: 2.6350754104581286e-09 - ArtUnc_78: -5.219583627352078e-08 - ArtUnc_79: -1.928632086792721e-07 - ArtUnc_80: 2.0279690969120902e-09 - ArtUnc_81: -7.292739062852815e-09 - ArtUnc_82: 5.17014190383794e-10 - ArtUnc_83: 2.2541666134291343e-08 - ArtUnc_84: 3.969306237175464e-08 - ArtUnc_85: -2.686872478207086e-06 - ArtUnc_86: 4.1414736198157015e-07 - ArtUnc_87: 7.862979078956051e-07 - ArtUnc_88: -4.4423448886376586e-08 - ArtUnc_89: 1.172101147051345e-08 - ArtUnc_90: -2.65116567570053e-07 - ArtUnc_91: -1.6784554078079344e-06 - ArtUnc_92: 1.550500835139886e-08 - ArtUnc_93: 1.9257018402597083e-08 - ArtUnc_94: 2.228125152342082e-08 - ArtUnc_95: -8.447286155149883e-07 - ArtUnc_96: -1.7506003847933813e-07 + ArtUnc_1: 2.35927203457836e-20 + ArtUnc_2: -5.922629161146333e-18 + ArtUnc_3: -1.8819435998532412e-17 + ArtUnc_4: 3.158187577786074e-17 + ArtUnc_5: 1.5937576017366522e-18 + ArtUnc_6: 3.289342185321362e-18 + ArtUnc_7: 1.2239723672715737e-15 + ArtUnc_8: -2.2074775992870183e-14 + ArtUnc_9: 6.704927999036726e-16 + ArtUnc_10: 2.7699408858070488e-14 + ArtUnc_11: -5.873909050903443e-14 + ArtUnc_12: -4.664676081797592e-15 + ArtUnc_13: -3.2082494641071664e-14 + ArtUnc_14: -2.7683369430503856e-15 + ArtUnc_15: 7.564761722243567e-15 + ArtUnc_16: -4.898938440266008e-16 + ArtUnc_17: -7.0621030270174545e-15 + ArtUnc_18: 5.255133824119982e-16 + ArtUnc_19: 1.636309256674278e-14 + ArtUnc_20: -2.388984636576834e-13 + ArtUnc_21: 2.0807479147216883e-14 + ArtUnc_22: -5.297202828927104e-12 + ArtUnc_23: -1.9082778121082117e-13 + ArtUnc_24: 6.039201406219987e-12 + ArtUnc_25: 2.6715907554250054e-12 + ArtUnc_26: -2.7966393291241113e-13 + ArtUnc_27: -1.9072862813516748e-11 + ArtUnc_28: -3.1805753329792926e-13 + ArtUnc_29: 2.342851279537203e-12 + ArtUnc_30: -2.1374606682004223e-13 + ArtUnc_31: 1.0815260616289436e-13 + ArtUnc_32: -1.9686397571900833e-11 + ArtUnc_33: -1.5636800167330968e-14 + ArtUnc_34: 4.9413977886084574e-12 + ArtUnc_35: 3.43431542246607e-12 + ArtUnc_36: -4.797358782039034e-11 + ArtUnc_37: 5.773888609003612e-11 + ArtUnc_38: -9.251216849801803e-12 + ArtUnc_39: -6.909058451839399e-11 + ArtUnc_40: 1.6925117406345058e-12 + ArtUnc_41: 3.7053698468647157e-10 + ArtUnc_42: 1.855392905824653e-11 + ArtUnc_43: -4.846323282584783e-10 + ArtUnc_44: -3.327459492762007e-11 + ArtUnc_45: 7.597393152306623e-13 + ArtUnc_46: -6.897334913058715e-11 + ArtUnc_47: 1.5566079258656675e-10 + ArtUnc_48: -7.485089687541113e-12 + ArtUnc_49: -4.1862286539354177e-10 + ArtUnc_50: 6.302238876174077e-11 + ArtUnc_51: -9.653027877636256e-10 + ArtUnc_52: 5.72165799063931e-10 + ArtUnc_53: -2.489573684983785e-11 + ArtUnc_54: -7.617696381330824e-11 + ArtUnc_55: -1.3478870594901272e-08 + ArtUnc_56: 1.2402321011988667e-08 + ArtUnc_57: 3.5571456105850805e-09 + ArtUnc_58: -2.556150908248414e-08 + ArtUnc_59: -1.2383163719166848e-10 + ArtUnc_60: -3.2222219760101495e-08 + ArtUnc_61: -5.2251288050979926e-12 + ArtUnc_62: -8.97457198223341e-10 + ArtUnc_63: 9.440574608420388e-11 + ArtUnc_64: -2.448031875497111e-08 + ArtUnc_65: 1.042472983643038e-09 + ArtUnc_66: -3.5166796463923804e-08 + ArtUnc_67: 3.52988122038554e-10 + ArtUnc_68: 1.992668957386929e-09 + ArtUnc_69: -3.938321250102191e-10 + ArtUnc_70: 9.539111780811317e-09 + ArtUnc_71: 2.266615073220808e-10 + ArtUnc_72: 4.3344959477670267e-08 + ArtUnc_73: 3.439910778665954e-09 + ArtUnc_74: 3.766214542747073e-08 + ArtUnc_75: -8.853833025974996e-08 + ArtUnc_76: -5.07855697525207e-10 + ArtUnc_77: 2.6350754104537003e-09 + ArtUnc_78: -5.219583627350703e-08 + ArtUnc_79: -1.9286320867927353e-07 + ArtUnc_80: 2.0279690969114773e-09 + ArtUnc_81: -7.292739062847744e-09 + ArtUnc_82: -5.170141903927744e-10 + ArtUnc_83: 2.2541666134281235e-08 + ArtUnc_84: -3.9693062371755816e-08 + ArtUnc_85: 2.686872478207075e-06 + ArtUnc_86: 4.141473619815568e-07 + ArtUnc_87: 7.862979078955503e-07 + ArtUnc_88: 1.1721011470516791e-08 + ArtUnc_89: 4.4423448886381265e-08 + ArtUnc_90: 2.651165675700547e-07 + ArtUnc_91: -1.6784554078079242e-06 + ArtUnc_92: -1.550500835139394e-08 + ArtUnc_93: 1.9257018402611466e-08 + ArtUnc_94: 2.2281251523428708e-08 + ArtUnc_95: -8.447286155149897e-07 + ArtUnc_96: -1.7506003847933434e-07 diff --git a/nnpdf_data/nnpdf_data/new_commondata/HERMES_NC_7GEV_ED/uncertainties.yaml b/nnpdf_data/nnpdf_data/new_commondata/HERMES_NC_7GEV_ED/uncertainties.yaml index 3fffcb9fc6..373f45d8c1 100644 --- a/nnpdf_data/nnpdf_data/new_commondata/HERMES_NC_7GEV_ED/uncertainties.yaml +++ b/nnpdf_data/nnpdf_data/new_commondata/HERMES_NC_7GEV_ED/uncertainties.yaml @@ -106,10 +106,10 @@ bins: sys_8: -1.4051240312857084e-05 sys_9: -8.1875819160233e-06 sys_10: -4.642410944502753e-06 - sys_11: 8.266224668507022e-07 - sys_12: -8.420202673187059e-07 - sys_13: 4.399180366880371e-07 - sys_14: -5.4681026948675836e-08 + sys_11: 8.266224668507026e-07 + sys_12: -8.420202673187063e-07 + sys_13: 4.3991803668803725e-07 + sys_14: -5.468102694867589e-08 stat: 0 exp: 0.0018 param: 0.0012 @@ -123,12 +123,12 @@ bins: sys_6: -0.00022548480200835317 sys_7: 9.096916820663683e-05 sys_8: -3.788351953210189e-05 - sys_9: -1.729130530096579e-05 - sys_10: -9.331086953532608e-06 - sys_11: 8.671363996851872e-07 + sys_9: -1.7291305300965797e-05 + sys_10: -9.33108695353261e-06 + sys_11: 8.671363996851869e-07 sys_12: -2.446507215609447e-06 sys_13: 8.679821907795075e-07 - sys_14: -2.910696336206102e-09 + sys_14: -2.9106963362061867e-09 stat: 0 exp: 0.003 param: 0.0004 @@ -144,10 +144,10 @@ bins: sys_8: -0.00014665822855118102 sys_9: -5.466329253507699e-05 sys_10: -2.3902691860081747e-05 - sys_11: 3.867164347066653e-06 - sys_12: -5.13506921675042e-06 - sys_13: 1.400604478024716e-06 - sys_14: 2.194951819558077e-08 + sys_11: 3.8671643470666526e-06 + sys_12: -5.135069216750417e-06 + sys_13: 1.4006044780247161e-06 + sys_14: 2.1949518195579815e-08 stat: 0 exp: 0.0043 param: 0.0014 @@ -163,10 +163,10 @@ bins: sys_8: -0.0005174957662074524 sys_9: -0.00016554818147995032 sys_10: -6.165935374119473e-05 - sys_11: 1.0427786598368127e-05 - sys_12: -1.0561699661639437e-05 - sys_13: 2.5459860377323027e-06 - sys_14: 2.2474369476757972e-08 + sys_11: 1.0427786598368122e-05 + sys_12: -1.056169966163944e-05 + sys_13: 2.5459860377322976e-06 + sys_14: 2.2474369476755828e-08 stat: 0 exp: 0.0036 param: 0.0012 @@ -180,12 +180,12 @@ bins: sys_6: -0.008255234208290047 sys_7: 0.004451015487051922 sys_8: -0.0016728188147570747 - sys_9: -0.0004864015680994049 + sys_9: -0.0004864015680994047 sys_10: -0.00015049173504553162 - sys_11: 9.992696606102753e-06 - sys_12: -2.010904166676311e-05 - sys_13: 7.671581557369539e-06 - sys_14: -1.0130522339860045e-07 + sys_11: 9.992696606102775e-06 + sys_12: -2.010904166676312e-05 + sys_13: 7.671581557369534e-06 + sys_14: -1.0130522339859684e-07 stat: 0 exp: 0.0049 param: 0.0024 @@ -199,12 +199,12 @@ bins: sys_6: -0.0032350094917426284 sys_7: 0.007112917925878673 sys_8: -0.004245427501501117 - sys_9: -0.0014787264102117 - sys_10: -0.00043151718923239773 + sys_9: -0.0014787264102117002 + sys_10: -0.0004315171892323976 sys_11: 3.9191614691743074e-05 - sys_12: -3.926823711528206e-05 - sys_13: 1.302478582948894e-05 - sys_14: 4.962256494267587e-08 + sys_12: -3.926823711528203e-05 + sys_13: 1.3024785829488937e-05 + sys_14: 4.962256494268016e-08 stat: 0 exp: 0.0033 param: 0.0015 @@ -220,10 +220,10 @@ bins: sys_8: -0.0062550940615167345 sys_9: -0.0036685570864544675 sys_10: -0.0012588953892339401 - sys_11: 0.0001926434384483425 - sys_12: -7.640457882346206e-05 - sys_13: 1.4460780914377682e-05 - sys_14: 6.868640208619083e-07 + sys_11: 0.00019264343844834243 + sys_12: -7.640457882346203e-05 + sys_13: 1.446078091437766e-05 + sys_14: 6.868640208618877e-07 stat: 0 exp: 0.0041 param: 0.0021 @@ -240,9 +240,9 @@ bins: sys_9: -0.005426154179477903 sys_10: -0.0030248458698549662 sys_11: 0.0007250201925803096 - sys_12: -0.00016607740342052836 - sys_13: 7.55709035733752e-06 - sys_14: 8.226938890902713e-07 + sys_12: -0.0001660774034205282 + sys_13: 7.557090357337512e-06 + sys_14: 8.226938890902983e-07 stat: 0 exp: 0.0044 param: 0.0022 @@ -260,8 +260,8 @@ bins: sys_10: -0.004777767810347148 sys_11: 0.0020710195144735704 sys_12: -0.0004270587168955443 - sys_13: -2.0293987608386683e-05 - sys_14: 3.368414470269438e-06 + sys_13: -2.0293987608386842e-05 + sys_14: 3.3684144702694924e-06 stat: 0 exp: 0.0041 param: 0.0016 diff --git a/nnpdf_data/nnpdf_data/new_commondata/HERMES_NC_7GEV_EP/uncertainties.yaml b/nnpdf_data/nnpdf_data/new_commondata/HERMES_NC_7GEV_EP/uncertainties.yaml index 7f11cbe908..8047fa3596 100644 --- a/nnpdf_data/nnpdf_data/new_commondata/HERMES_NC_7GEV_EP/uncertainties.yaml +++ b/nnpdf_data/nnpdf_data/new_commondata/HERMES_NC_7GEV_EP/uncertainties.yaml @@ -82,15 +82,15 @@ bins: sys_3: 0.00026703886811330806 sys_4: -0.00010728448830934065 sys_5: 5.0127103049397835e-05 - sys_6: -3.109534470689788e-05 - sys_7: 1.9500803958904756e-05 - sys_8: -1.1293508173724878e-05 - sys_9: 6.881141517096578e-06 - sys_10: -4.294473966139754e-06 - sys_11: -2.7290046090083866e-06 - sys_12: 1.667497004948293e-06 - sys_13: 2.281525299666132e-08 - sys_14: -1.7825310399617606e-08 + sys_6: -3.1095344706897886e-05 + sys_7: 1.9500803958904745e-05 + sys_8: -1.129350817372487e-05 + sys_9: 6.881141517096555e-06 + sys_10: -4.294473966139775e-06 + sys_11: -2.7290046090083964e-06 + sys_12: 1.6674970049482922e-06 + sys_13: 2.2815252996661298e-08 + sys_14: -1.782531039961803e-08 stat: 0 exp: 0.0375 param: 0.0182 @@ -102,14 +102,14 @@ bins: sys_4: -0.0007036581567052546 sys_5: 0.0002635639954536441 sys_6: -0.00012765444497913554 - sys_7: 7.160464976643787e-05 - sys_8: -3.820305055610086e-05 - sys_9: 2.1402477434341142e-05 - sys_10: -1.2938891838784508e-05 - sys_11: -1.7935512164955267e-06 - sys_12: 3.96325679035293e-06 - sys_13: 7.101240674635247e-08 - sys_14: 1.198989994107594e-06 + sys_7: 7.160464976643793e-05 + sys_8: -3.820305055610082e-05 + sys_9: 2.140247743434106e-05 + sys_10: -1.293889183878457e-05 + sys_11: -1.7935512164955462e-06 + sys_12: 3.963256790352924e-06 + sys_13: 7.10124067463535e-08 + sys_14: 1.1989899941075933e-06 stat: 0 exp: 0.0273 param: 0.0109 @@ -122,13 +122,13 @@ bins: sys_5: 0.0011561707511608052 sys_6: -0.0004523346197566131 sys_7: 0.00020018244601443887 - sys_8: -9.52088630970276e-05 - sys_9: 4.836794432461048e-05 - sys_10: -2.731750685835154e-05 - sys_11: -4.081084906125833e-06 - sys_12: 6.869463751011901e-06 - sys_13: 1.2064614600763304e-07 - sys_14: 2.067217731474124e-06 + sys_8: -9.520886309702744e-05 + sys_9: 4.8367944324610356e-05 + sys_10: -2.7317506858351696e-05 + sys_11: -4.08108490612589e-06 + sys_12: 6.869463751011883e-06 + sys_13: 1.2064614600763649e-07 + sys_14: 2.0672177314741245e-06 stat: 0 exp: 0.0215 param: 0.0079 @@ -139,15 +139,15 @@ bins: sys_3: 0.04112861839189798 sys_4: -0.01679224733970124 sys_5: 0.005618176661728982 - sys_6: -0.0020250189110540824 - sys_7: 0.0008035581999467751 - sys_8: -0.0003329455940758652 - sys_9: 0.00013652367731897296 - sys_10: -7.085095069106132e-05 - sys_11: -1.6207536063119847e-05 - sys_12: 1.4722343596062708e-05 - sys_13: 2.341473957559073e-07 - sys_14: 3.3307898769869387e-06 + sys_6: -0.002025018911054082 + sys_7: 0.0008035581999467754 + sys_8: -0.0003329455940758648 + sys_9: 0.0001365236773189726 + sys_10: -7.085095069106168e-05 + sys_11: -1.6207536063120003e-05 + sys_12: 1.4722343596062664e-05 + sys_13: 2.3414739575592192e-07 + sys_14: 3.330789876986954e-06 stat: 0 exp: 0.022 param: 0.0078 @@ -159,14 +159,14 @@ bins: sys_4: -0.026895645248924033 sys_5: 0.016635529730532197 sys_6: -0.007184878694162727 - sys_7: 0.0028174571970590975 - sys_8: -0.0010955401513625157 - sys_9: 0.0004026787874144023 - sys_10: -0.00017568788167652877 - sys_11: -4.0502530624326094e-05 - sys_12: 3.1562778763473034e-05 - sys_13: 4.794435428109644e-07 - sys_14: 6.017893936548821e-06 + sys_7: 0.002817457197059097 + sys_8: -0.001095540151362515 + sys_9: 0.00040267878741440165 + sys_10: -0.00017568788167652983 + sys_11: -4.050253062432646e-05 + sys_12: 3.1562778763472946e-05 + sys_13: 4.794435428109581e-07 + sys_14: 6.017893936548867e-06 stat: 0 exp: 0.0165 param: 0.0061 @@ -177,15 +177,15 @@ bins: sys_3: 0.0057370432472529445 sys_4: 0.021977115068417822 sys_5: 0.016211167930800633 - sys_6: -0.015889083161846687 - sys_7: 0.00806819010837564 - sys_8: -0.0032520805350135184 - sys_9: 0.0010993766764232108 - sys_10: -0.0004176119532935792 - sys_11: -6.0752248770009784e-05 - sys_12: 6.402845097447538e-05 - sys_13: 1.0830506069251656e-06 - sys_14: 1.8615743809551874e-05 + sys_6: -0.01588908316184668 + sys_7: 0.008068190108375638 + sys_8: -0.003252080535013516 + sys_9: 0.0010993766764232095 + sys_10: -0.00041761195329358206 + sys_11: -6.0752248770010726e-05 + sys_12: 6.402845097447566e-05 + sys_13: 1.0830506069250163e-06 + sys_14: 1.8615743809551773e-05 stat: 0 exp: 0.0205 param: 0.0098 @@ -197,14 +197,14 @@ bins: sys_4: -0.00786169927131715 sys_5: -0.020710650409469282 sys_6: -0.008588718645270796 - sys_7: 0.01391029793302619 - sys_8: -0.008037063826551716 - sys_9: 0.0030256260386312397 - sys_10: -0.001036633833165491 - sys_11: -0.00016576215671636893 - sys_12: 0.00011975854399197285 - sys_13: 2.317228803804569e-06 - sys_14: 3.1300583737909364e-05 + sys_7: 0.0139102979330262 + sys_8: -0.008037063826551708 + sys_9: 0.0030256260386312345 + sys_10: -0.0010366338331655018 + sys_11: -0.0001657621567163712 + sys_12: 0.00011975854399197262 + sys_13: 2.3172288038047787e-06 + sys_14: 3.130058373790941e-05 stat: 0 exp: 0.017 param: 0.0085 @@ -215,15 +215,15 @@ bins: sys_3: 0.00027314318002917163 sys_4: 0.0025779120300043184 sys_5: 0.009624357551548772 - sys_6: 0.017707480952585543 - sys_7: 0.004226928439368384 - sys_8: -0.012279857014018474 - sys_9: 0.007118467781755285 - sys_10: -0.002735729315467204 - sys_11: -0.0005499395953894289 - sys_12: 0.00023810171712047084 - sys_13: 4.588528150647145e-06 - sys_14: 3.351787132469326e-05 + sys_6: 0.01770748095258555 + sys_7: 0.004226928439368404 + sys_8: -0.01227985701401847 + sys_9: 0.0071184677817552776 + sys_10: -0.0027357293154672254 + sys_11: -0.0005499395953894364 + sys_12: 0.00023810171712047016 + sys_13: 4.588528150647297e-06 + sys_14: 3.3517871324693337e-05 stat: 0 exp: 0.0174 param: 0.0091 @@ -234,15 +234,15 @@ bins: sys_3: -9.79551554704103e-05 sys_4: -0.0006033790305353777 sys_5: -0.003600644270400427 - sys_6: -0.010026459122634402 - sys_7: -0.014950511863847118 - sys_8: -0.002443709341712829 - sys_9: 0.010614491887085404 - sys_10: -0.006172910862643291 - sys_11: -0.001711313761113182 - sys_12: 0.00047812261781757524 - sys_13: 8.155159843079688e-06 - sys_14: 1.0716969482151404e-05 + sys_6: -0.010026459122634392 + sys_7: -0.014950511863847106 + sys_8: -0.00244370934171283 + sys_9: 0.010614491887085378 + sys_10: -0.006172910862643326 + sys_11: -0.0017113137611131956 + sys_12: 0.0004781226178175735 + sys_13: 8.155159843079606e-06 + sys_14: 1.0716969482151719e-05 stat: 0 exp: 0.0166 param: 0.0078 @@ -251,17 +251,17 @@ bins: sys_1: 2.0049704588163863e-05 sys_2: 2.141984097473323e-05 sys_3: -1.4807753690014335e-05 - sys_4: 0.00021719920357395953 - sys_5: 0.0010141591397612273 - sys_6: 0.004128756007240025 - sys_7: 0.009602412348397493 - sys_8: 0.012753919902300388 - sys_9: 0.002630164848838576 - sys_10: -0.009388901424894827 - sys_11: -0.004339508870560458 - sys_12: 0.0010916452192683563 - sys_13: 1.4865043774969461e-05 - sys_14: -7.08193921207635e-05 + sys_4: 0.00021719920357395956 + sys_5: 0.0010141591397612275 + sys_6: 0.004128756007240026 + sys_7: 0.009602412348397479 + sys_8: 0.012753919902300386 + sys_9: 0.0026301648488385294 + sys_10: -0.009388901424894826 + sys_11: -0.00433950887056047 + sys_12: 0.0010916452192683535 + sys_13: 1.4865043774969478e-05 + sys_14: -7.081939212076414e-05 stat: 0 exp: 0.0129 param: 0.0049 @@ -270,17 +270,17 @@ bins: sys_1: 4.508859489406851e-06 sys_2: -2.2819005228009845e-06 sys_3: -6.742548480717765e-06 - sys_4: -2.0896790635698636e-05 - sys_5: -0.0003348871961640395 - sys_6: -0.001247768461955411 - sys_7: -0.0038410044781410106 - sys_8: -0.007923634099749216 - sys_9: -0.01099019111104563 - sys_10: -0.003848701515325421 - sys_11: -0.008152189498249541 - sys_12: 0.0027632018651017314 - sys_13: 2.375047926033171e-05 - sys_14: -0.0003193730113753291 + sys_4: -2.0896790635698663e-05 + sys_5: -0.0003348871961640396 + sys_6: -0.00124776846195541 + sys_7: -0.0038410044781410015 + sys_8: -0.007923634099749213 + sys_9: -0.010990191111045627 + sys_10: -0.003848701515325362 + sys_11: -0.008152189498249543 + sys_12: 0.0027632018651017293 + sys_13: 2.3750479260330404e-05 + sys_14: -0.0003193730113753285 stat: 0 exp: 0.0112 param: 0.0037 @@ -291,15 +291,15 @@ bins: sys_3: 7.978017858979697e-06 sys_4: 2.907805450669734e-05 sys_5: 8.329040361273596e-05 - sys_6: 0.00035367320881832254 - sys_7: 0.0012091721205762392 - sys_8: 0.002973184816426101 - sys_9: 0.0065063367720247095 - sys_10: 0.009279869514809273 - sys_11: -0.005500804457210913 - sys_12: 0.0060470145159647794 + sys_6: 0.0003536732088183229 + sys_7: 0.0012091721205762405 + sys_8: 0.002973184816426108 + sys_9: 0.006506336772024732 + sys_10: 0.009279869514809266 + sys_11: -0.005500804457210893 + sys_12: 0.006047014515964768 sys_13: 7.437671836125878e-05 - sys_14: -0.0012828738089551834 + sys_14: -0.0012828738089551881 stat: 0 exp: 0.009 param: 0.0031 @@ -307,18 +307,18 @@ bins: - sys_0: 1.180360815742284e-06 sys_1: 8.445803977913952e-06 sys_2: 1.3473552423690721e-05 - sys_3: -1.580143991353843e-05 - sys_4: -4.601954042654505e-06 - sys_5: -4.689947362553793e-05 - sys_6: -7.163649558668572e-05 - sys_7: -0.00038833890955768384 - sys_8: -0.0007368878515197956 - sys_9: -0.0023979665092958373 - sys_10: -0.004169368280423864 - sys_11: 0.007349044779475193 - sys_12: 0.006396799788554814 - sys_13: 0.00022511472643368445 - sys_14: -0.003968157523255742 + sys_3: -1.5801439913538438e-05 + sys_4: -4.6019540426545524e-06 + sys_5: -4.6899473625538514e-05 + sys_6: -7.163649558668741e-05 + sys_7: -0.00038833890955768504 + sys_8: -0.0007368878515197976 + sys_9: -0.002397966509295846 + sys_10: -0.0041693682804238704 + sys_11: 0.0073490447794752 + sys_12: 0.006396799788554807 + sys_13: 0.00022511472643368466 + sys_14: -0.003968157523255746 stat: 0 exp: 0.0059 param: 0.0025 @@ -327,17 +327,17 @@ bins: sys_1: -1.2729698082746793e-05 sys_2: -2.015238982176739e-05 sys_3: 2.2302996683875373e-05 - sys_4: -1.5303946408023215e-06 - sys_5: 2.4943177776520676e-05 - sys_6: -2.752720567246587e-05 - sys_7: 0.00016055236365416218 - sys_8: -2.1987304600684922e-07 - sys_9: 0.0007170729896800936 - sys_10: 0.0009378932951645782 - sys_11: -0.0028044601859866128 - sys_12: -0.004985048196246031 - sys_13: 0.0012218162548784074 - sys_14: -0.006466018642889554 + sys_4: -1.5303946408023103e-06 + sys_5: 2.494317777652084e-05 + sys_6: -2.7527205672465376e-05 + sys_7: 0.00016055236365416242 + sys_8: -2.1987304600789417e-07 + sys_9: 0.0007170729896800916 + sys_10: 0.0009378932951645715 + sys_11: -0.0028044601859866106 + sys_12: -0.004985048196246033 + sys_13: 0.0012218162548784024 + sys_14: -0.0064660186428895546 stat: 0 exp: 0.0025 param: 0.0015 @@ -346,17 +346,17 @@ bins: sys_1: 3.6058217617573532e-06 sys_2: 5.695997656828331e-06 sys_3: -6.239536891618332e-06 - sys_4: 6.408188538051166e-07 - sys_5: -6.07985623787633e-06 - sys_6: 7.490514926897145e-06 - sys_7: -4.2752022349974546e-05 - sys_8: 9.588279523256433e-06 - sys_9: -0.0001631745268888015 - sys_10: -0.00013502355422935193 - sys_11: 0.0005521121271689778 - sys_12: 0.0009246560548261825 - sys_13: 0.004449036978267344 - sys_14: 0.0019998245625820386 + sys_4: 6.408188538050941e-07 + sys_5: -6.079856237876523e-06 + sys_6: 7.490514926896727e-06 + sys_7: -4.275202234997435e-05 + sys_8: 9.588279523258176e-06 + sys_9: -0.00016317452688880007 + sys_10: -0.00013502355422935264 + sys_11: 0.0005521121271689823 + sys_12: 0.0009246560548261771 + sys_13: 0.00444903697826734 + sys_14: 0.0019998245625820346 stat: 0 exp: 0.0011 param: 0.0008 diff --git a/nnpdf_data/nnpdf_data/new_commondata/LHCB_DY_7TEV_MUON/uncertainties.yaml b/nnpdf_data/nnpdf_data/new_commondata/LHCB_DY_7TEV_MUON/uncertainties.yaml index a111a36653..73c3f45cf6 100644 --- a/nnpdf_data/nnpdf_data/new_commondata/LHCB_DY_7TEV_MUON/uncertainties.yaml +++ b/nnpdf_data/nnpdf_data/new_commondata/LHCB_DY_7TEV_MUON/uncertainties.yaml @@ -144,1191 +144,1191 @@ definitions: treatment: MULT type: LHCBLUMI7TEV bins: -- sys_corr_1: -5.144425552737296 - sys_corr_2: 6.572983562411262 - sys_corr_3: 1.9012314660278569 - sys_corr_4: -0.45189216664942083 - sys_corr_5: 0.05594228802177979 - sys_corr_6: -0.36043044211116054 - sys_corr_7: 0.28435870092215787 - sys_corr_8: -0.21589699461490744 - sys_corr_9: 0.394039608945261 - sys_corr_10: -0.9963074820237201 - sys_corr_11: -0.27291847084266024 - sys_corr_12: 0.17250031216800482 - sys_corr_13: 0.24120677404580163 - sys_corr_14: -0.16560168888307492 - sys_corr_15: 0.11049364107536074 - sys_corr_16: -0.07783131982621086 - sys_corr_17: -5.5519975339658405 - sys_corr_18: -0.11169848098737406 - sys_corr_19: 0.0039045714346245346 - sys_corr_20: 0.016588103163134835 - sys_corr_21: 0.0028952580070190485 - sys_corr_22: 0.06694374851721896 - sys_corr_23: 30.00232601650877 - sys_corr_24: -1.8654453464465108 - sys_corr_25: 0.37311194182794966 - sys_corr_26: -0.5424011750465152 - sys_corr_27: -0.47326824146626384 - sys_corr_28: -0.2268287138692792 - sys_corr_29: 3.3783196023765205 - sys_corr_30: -0.15275781589681245 - sys_corr_31: 0.515144394929163 - sys_corr_32: 1.411560590878453 - sys_corr_33: 0.1757247150534982 +- sys_corr_1: -5.144425552740034 + sys_corr_2: 6.572983562410863 + sys_corr_3: 1.901231466027203 + sys_corr_4: -0.45189216664871834 + sys_corr_5: 0.055942288021601796 + sys_corr_6: -0.36043044211198694 + sys_corr_7: 0.2843587009221314 + sys_corr_8: -0.21589699461491837 + sys_corr_9: 0.3940396089453557 + sys_corr_10: -0.9963074820242709 + sys_corr_11: -0.27291847084313714 + sys_corr_12: 0.17250031216802095 + sys_corr_13: 0.2412067740456695 + sys_corr_14: -0.16560168888289095 + sys_corr_15: 0.11049364107469214 + sys_corr_16: -0.07783131982592827 + sys_corr_17: -5.551997533965656 + sys_corr_18: -0.11169848098738341 + sys_corr_19: 0.0039045714346296456 + sys_corr_20: 0.016588103163121905 + sys_corr_21: 0.0028952580070134037 + sys_corr_22: 0.06694374851714423 + sys_corr_23: 30.002326016514075 + sys_corr_24: -1.8654453464376475 + sys_corr_25: 0.3731119418282494 + sys_corr_26: -0.5424011750465533 + sys_corr_27: -0.47326824146637403 + sys_corr_28: -0.22682871386901252 + sys_corr_29: 3.378319602378212 + sys_corr_30: -0.1527578158969609 + sys_corr_31: 0.515144394929459 + sys_corr_32: 1.4115605908788966 + sys_corr_33: 0.1757247150533275 stat: 39.0 sys_beam: 12.0 sys_luminosity: 17.0 -- sys_corr_1: -7.2979115724601336 - sys_corr_2: 13.000869127021266 - sys_corr_3: -1.0422124403234094 - sys_corr_4: -1.735444785863847 - sys_corr_5: 0.47462677573177564 - sys_corr_6: 0.009573237207789752 - sys_corr_7: -0.12218007038473112 - sys_corr_8: 0.025430645713649083 - sys_corr_9: 0.5399448945841515 - sys_corr_10: -2.1368483434802883 - sys_corr_11: -0.000894332477966361 - sys_corr_12: 0.5360948474571028 - sys_corr_13: -0.4443972829322707 - sys_corr_14: 0.30958943482857076 - sys_corr_15: -0.10817824102424793 - sys_corr_16: 0.24206850144901626 - sys_corr_17: -14.241528770784848 - sys_corr_18: -0.2174093835890052 - sys_corr_19: 0.00129278712222342 - sys_corr_20: 0.005916154160590078 - sys_corr_21: -0.03415644742593111 - sys_corr_22: 0.09648547898534147 - sys_corr_23: -2.6074049432177433 - sys_corr_24: -0.04122313900507093 - sys_corr_25: -0.39982871944562265 - sys_corr_26: -1.6516389153749826 - sys_corr_27: -1.9634020415997646 - sys_corr_28: -1.5399761229716424 - sys_corr_29: 44.8093647207505 - sys_corr_30: -1.1842740381845818 - sys_corr_31: 1.487023835479344 - sys_corr_32: 6.129738977415158 - sys_corr_33: 0.10119973561221914 +- sys_corr_1: -7.297911572460107 + sys_corr_2: 13.000869127021309 + sys_corr_3: -1.0422124403234008 + sys_corr_4: -1.7354447858638322 + sys_corr_5: 0.4746267757317964 + sys_corr_6: 0.009573237207884 + sys_corr_7: -0.12218007038465588 + sys_corr_8: 0.025430645713995417 + sys_corr_9: 0.5399448945842477 + sys_corr_10: -2.1368483434801204 + sys_corr_11: -0.0008943324781260716 + sys_corr_12: 0.5360948474571062 + sys_corr_13: -0.44439728293227915 + sys_corr_14: 0.3095894348287661 + sys_corr_15: -0.1081782410243901 + sys_corr_16: 0.24206850144893818 + sys_corr_17: -14.241528770783685 + sys_corr_18: -0.217409383588994 + sys_corr_19: 0.0012927871221434435 + sys_corr_20: 0.0059161541606441 + sys_corr_21: -0.034156447425967996 + sys_corr_22: 0.09648547898561297 + sys_corr_23: -2.607404943220818 + sys_corr_24: -0.041223139005774956 + sys_corr_25: -0.3998287194458143 + sys_corr_26: -1.6516389153749202 + sys_corr_27: -1.9634020416001159 + sys_corr_28: -1.539976122969781 + sys_corr_29: 44.80936472075005 + sys_corr_30: -1.184274038184911 + sys_corr_31: 1.4870238354788787 + sys_corr_32: 6.129738977414608 + sys_corr_33: 0.10119973561078824 stat: 63.0 sys_beam: 36.0 sys_luminosity: 49.0 -- sys_corr_1: -7.699157805059063 - sys_corr_2: 17.714741868443706 - sys_corr_3: -5.6356926803538725 - sys_corr_4: -0.5396681593613241 - sys_corr_5: 1.1984639112900106 - sys_corr_6: 0.7177770158018619 - sys_corr_7: -0.42479108202438015 - sys_corr_8: 0.30912149243018555 - sys_corr_9: 0.46987104084711734 - sys_corr_10: -2.605356064191485 - sys_corr_11: -0.4066246734903094 - sys_corr_12: -0.6905443288026683 - sys_corr_13: 1.0655867897808564 - sys_corr_14: 0.4122883510643879 - sys_corr_15: 0.0022229188684035556 - sys_corr_16: 0.2111637371374708 - sys_corr_17: -45.26100377539002 - sys_corr_18: 59.588713813559316 - sys_corr_19: 0.001014292746358461 - sys_corr_20: 0.005003254483960289 - sys_corr_21: 0.006825287451739537 - sys_corr_22: -0.027693923239052565 - sys_corr_23: -0.6852271010200881 - sys_corr_24: -0.04406223106423634 - sys_corr_25: -0.0999605848937722 - sys_corr_26: 4.316724639375872 - sys_corr_27: 3.1011311797822194 - sys_corr_28: 0.4029424218997993 - sys_corr_29: -3.23138151404509 - sys_corr_30: 0.049299069559472136 - sys_corr_31: -2.52022645301033 - sys_corr_32: -4.750051696187654 - sys_corr_33: 0.0481916067107621 +- sys_corr_1: -7.699157805059007 + sys_corr_2: 17.71474186844379 + sys_corr_3: -5.635692680353923 + sys_corr_4: -0.5396681593612414 + sys_corr_5: 1.1984639112899278 + sys_corr_6: 0.7177770158019381 + sys_corr_7: -0.4247910820244533 + sys_corr_8: 0.30912149243054166 + sys_corr_9: 0.4698710408470783 + sys_corr_10: -2.605356064191482 + sys_corr_11: -0.40662467349036446 + sys_corr_12: -0.6905443288027894 + sys_corr_13: 1.0655867897808229 + sys_corr_14: 0.41228835106456924 + sys_corr_15: 0.0022229188682831675 + sys_corr_16: 0.21116373713766826 + sys_corr_17: -45.2610037753907 + sys_corr_18: 59.588713813559345 + sys_corr_19: 0.00101429274636337 + sys_corr_20: 0.0050032544839424325 + sys_corr_21: 0.006825287451736368 + sys_corr_22: -0.027693923239105418 + sys_corr_23: -0.6852271010202735 + sys_corr_24: -0.04406223106420677 + sys_corr_25: -0.09996058489381261 + sys_corr_26: 4.3167246393749155 + sys_corr_27: 3.101131179781679 + sys_corr_28: 0.40294242189699037 + sys_corr_29: -3.2313815140449718 + sys_corr_30: 0.04929906955860508 + sys_corr_31: -2.5202264530105762 + sys_corr_32: -4.750051696188027 + sys_corr_33: 0.04819160671261607 stat: 77.0 sys_beam: 55.0 sys_luminosity: 76.0 -- sys_corr_1: -5.838278576612335 - sys_corr_2: 14.39097310940154 - sys_corr_3: -5.5660359040882295 - sys_corr_4: 2.391986214650788 - sys_corr_5: -0.35519219284682624 - sys_corr_6: 0.01737443068743538 - sys_corr_7: -0.3296774884858184 - sys_corr_8: 0.4550736904525835 - sys_corr_9: 0.6014060984869024 - sys_corr_10: -2.095698384753005 - sys_corr_11: -0.8035075574422367 - sys_corr_12: -1.0054240511389803 - sys_corr_13: 0.740831409139714 - sys_corr_14: 0.5331301450045302 - sys_corr_15: 0.14439003041032022 - sys_corr_16: 0.4857155411277963 - sys_corr_17: -22.53807456374846 - sys_corr_18: -4.141360551493612 - sys_corr_19: -0.00031413186283882534 - sys_corr_20: 0.0025633923269077767 - sys_corr_21: -0.010384538709837542 - sys_corr_22: -0.017915032641181453 - sys_corr_23: -0.9487168334089818 - sys_corr_24: -0.03297155395447347 - sys_corr_25: -0.5617137822940823 - sys_corr_26: -3.6776216478585764 - sys_corr_27: -3.46628878798578 - sys_corr_28: 0.057611600055909075 - sys_corr_29: -7.426141561175923 - sys_corr_30: -2.7393252363503846 - sys_corr_31: 10.219720900340917 - sys_corr_32: 50.74646898190347 - sys_corr_33: 4.471619432732395 +- sys_corr_1: -5.838278576612298 + sys_corr_2: 14.39097310940158 + sys_corr_3: -5.566035904088241 + sys_corr_4: 2.391986214650795 + sys_corr_5: -0.35519219284686376 + sys_corr_6: 0.01737443068755354 + sys_corr_7: -0.32967748848589723 + sys_corr_8: 0.45507369045289436 + sys_corr_9: 0.6014060984871122 + sys_corr_10: -2.095698384752894 + sys_corr_11: -0.8035075574421994 + sys_corr_12: -1.0054240511389962 + sys_corr_13: 0.7408314091397591 + sys_corr_14: 0.5331301450047038 + sys_corr_15: 0.14439003041028053 + sys_corr_16: 0.4857155411279266 + sys_corr_17: -22.53807456374804 + sys_corr_18: -4.141360551493549 + sys_corr_19: -0.00031413186285801637 + sys_corr_20: 0.002563392326889276 + sys_corr_21: -0.010384538709856669 + sys_corr_22: -0.017915032641110377 + sys_corr_23: -0.9487168334097262 + sys_corr_24: -0.03297155395518106 + sys_corr_25: -0.5617137822932491 + sys_corr_26: -3.6776216478564394 + sys_corr_27: -3.4662887879851327 + sys_corr_28: 0.057611600058810546 + sys_corr_29: -7.426141561175894 + sys_corr_30: -2.739325236350733 + sys_corr_31: 10.21972090034545 + sys_corr_32: 50.746468981903575 + sys_corr_33: 4.471619432722373 stat: 88.0 sys_beam: 73.0 sys_luminosity: 100.0 -- sys_corr_1: -5.996893917218779 - sys_corr_2: 14.843014977290123 - sys_corr_3: -5.269489895299516 - sys_corr_4: 3.594970337236043 - sys_corr_5: -2.741187219997007 - sys_corr_6: -1.2469937258110568 - sys_corr_7: -0.48924991062812717 - sys_corr_8: 0.5005765425754801 - sys_corr_9: 0.7965903106528028 - sys_corr_10: -2.5859179064659767 - sys_corr_11: -0.17960228334737469 - sys_corr_12: -0.8595719321259883 - sys_corr_13: 0.5897927826986792 - sys_corr_14: -0.1133989273312675 - sys_corr_15: 0.12497901923291703 - sys_corr_16: 0.5870502811288675 - sys_corr_17: -31.164409701336353 - sys_corr_18: -12.455484431906113 - sys_corr_19: -0.0006272593525295703 - sys_corr_20: 0.0013584144003571282 - sys_corr_21: -0.0009692372148611307 - sys_corr_22: 0.05617481071977181 - sys_corr_23: -0.6423520184268899 - sys_corr_24: -0.18306750525284735 - sys_corr_25: -0.7933777125671716 - sys_corr_26: -21.96384251377866 - sys_corr_27: -44.51969291627724 - sys_corr_28: -22.46957677466686 - sys_corr_29: -3.7526312981591343 - sys_corr_30: -1.0813662404346251 - sys_corr_31: -11.253680668329714 - sys_corr_32: -8.368031529328741 - sys_corr_33: -0.06105904366936167 +- sys_corr_1: -5.996893917218735 + sys_corr_2: 14.843014977290178 + sys_corr_3: -5.26948989529952 + sys_corr_4: 3.5949703372359587 + sys_corr_5: -2.7411872199969576 + sys_corr_6: -1.2469937258108765 + sys_corr_7: -0.4892499106281845 + sys_corr_8: 0.5005765425756845 + sys_corr_9: 0.7965903106529305 + sys_corr_10: -2.5859179064658893 + sys_corr_11: -0.17960228334736852 + sys_corr_12: -0.8595719321260656 + sys_corr_13: 0.5897927826987377 + sys_corr_14: -0.11339892733102595 + sys_corr_15: 0.1249790192329557 + sys_corr_16: 0.5870502811290336 + sys_corr_17: -31.16440970133634 + sys_corr_18: -12.455484431906589 + sys_corr_19: -0.0006272593525352574 + sys_corr_20: 0.001358414400353384 + sys_corr_21: -0.0009692372148536777 + sys_corr_22: 0.05617481071978107 + sys_corr_23: -0.6423520184271446 + sys_corr_24: -0.18306750525331847 + sys_corr_25: -0.7933777125670846 + sys_corr_26: -21.96384251377368 + sys_corr_27: -44.51969291627447 + sys_corr_28: -22.46957677464849 + sys_corr_29: -3.752631298159274 + sys_corr_30: -1.0813662404328324 + sys_corr_31: -11.253680668330848 + sys_corr_32: -8.368031529327054 + sys_corr_33: -0.0610590436712085 stat: 95.0 sys_beam: 86.0 sys_luminosity: 118.0 -- sys_corr_1: -5.949907003474893 - sys_corr_2: 14.137082558143812 - sys_corr_3: -5.277680065464697 - sys_corr_4: 4.324795651634657 - sys_corr_5: -3.8817624195466083 - sys_corr_6: -3.050024424577193 - sys_corr_7: -0.36016906635447266 - sys_corr_8: -0.10590922722408913 - sys_corr_9: 1.3654373696739226 - sys_corr_10: -2.0298119047864565 - sys_corr_11: -0.509653317695316 - sys_corr_12: -0.24718679746573982 - sys_corr_13: 0.4315757865304684 - sys_corr_14: 0.2819219297348295 - sys_corr_15: 0.2760050884900921 - sys_corr_16: 0.6540969041572919 - sys_corr_17: -32.860485308268345 - sys_corr_18: -17.6982285482807 - sys_corr_19: -0.001263697281201173 - sys_corr_20: 1.256896517817219e-05 - sys_corr_21: -0.028347299802743316 - sys_corr_22: 0.12649311170159064 - sys_corr_23: -0.5245922592700833 - sys_corr_24: -0.3328874883910357 - sys_corr_25: -0.5689330600897775 - sys_corr_26: -29.221006003633807 - sys_corr_27: 42.386548398330426 - sys_corr_28: -17.0961753408547 - sys_corr_29: -2.252150437961893 - sys_corr_30: -1.6023600848258366 - sys_corr_31: -8.8840468290432 - sys_corr_32: -4.695198903528693 - sys_corr_33: -1.5667836238057036 +- sys_corr_1: -5.949907003474861 + sys_corr_2: 14.137082558143842 + sys_corr_3: -5.277680065464681 + sys_corr_4: 4.3247956516346715 + sys_corr_5: -3.8817624195466136 + sys_corr_6: -3.0500244245771233 + sys_corr_7: -0.3601690663546049 + sys_corr_8: -0.10590922722384427 + sys_corr_9: 1.365437369674065 + sys_corr_10: -2.0298119047863707 + sys_corr_11: -0.509653317695348 + sys_corr_12: -0.24718679746580352 + sys_corr_13: 0.43157578653055706 + sys_corr_14: 0.2819219297350938 + sys_corr_15: 0.27600508849006183 + sys_corr_16: 0.654096904157463 + sys_corr_17: -32.860485308268515 + sys_corr_18: -17.698228548281413 + sys_corr_19: -0.0012636972811759975 + sys_corr_20: 1.256896515653254e-05 + sys_corr_21: -0.028347299802825965 + sys_corr_22: 0.12649311170157104 + sys_corr_23: -0.5245922592701399 + sys_corr_24: -0.3328874883910953 + sys_corr_25: -0.5689330600897631 + sys_corr_26: -29.22100600363928 + sys_corr_27: 42.386548398332565 + sys_corr_28: -17.09617534086349 + sys_corr_29: -2.2521504379625417 + sys_corr_30: -1.6023600848258446 + sys_corr_31: -8.884046829042811 + sys_corr_32: -4.6951989035270385 + sys_corr_33: -1.5667836238063806 stat: 100.0 sys_beam: 96.0 sys_luminosity: 132.0 -- sys_corr_1: -5.835444039374041 - sys_corr_2: 13.088285526624254 - sys_corr_3: -5.492704668224821 - sys_corr_4: 4.021133143361606 - sys_corr_5: -3.912196688307005 - sys_corr_6: -3.4866600736969366 - sys_corr_7: 0.21179248317851473 - sys_corr_8: -0.8777885622213787 - sys_corr_9: 1.8786360127719697 - sys_corr_10: -0.9027896072398113 - sys_corr_11: 1.1830857070798262 - sys_corr_12: -1.1401979030346663 - sys_corr_13: 0.4738053765140951 - sys_corr_14: 0.3155168234499182 - sys_corr_15: 0.6446447044378301 - sys_corr_16: 0.5576028659722555 - sys_corr_17: -34.36525962411806 - sys_corr_18: -22.886667929539072 - sys_corr_19: -0.0013478159665866792 - sys_corr_20: -0.0004724214571688776 - sys_corr_21: -0.025375022376361522 - sys_corr_22: 0.11239189427047779 - sys_corr_23: -0.4070390546193578 - sys_corr_24: -0.285376123243273 - sys_corr_25: -0.9633357122392353 - sys_corr_26: 50.803816344140344 - sys_corr_27: 4.12014680369151 - sys_corr_28: -14.1275018024426 - sys_corr_29: -1.84517833184862 - sys_corr_30: -1.495579517239852 - sys_corr_31: -9.740693365024615 - sys_corr_32: -2.787873471680124 - sys_corr_33: 0.2992023172918279 +- sys_corr_1: -5.835444039374021 + sys_corr_2: 13.088285526624283 + sys_corr_3: -5.492704668224828 + sys_corr_4: 4.021133143361567 + sys_corr_5: -3.9121966883069956 + sys_corr_6: -3.4866600736968314 + sys_corr_7: 0.21179248317837016 + sys_corr_8: -0.8777885622212179 + sys_corr_9: 1.8786360127721018 + sys_corr_10: -0.9027896072397511 + sys_corr_11: 1.1830857070798344 + sys_corr_12: -1.1401979030347482 + sys_corr_13: 0.47380537651409055 + sys_corr_14: 0.3155168234500565 + sys_corr_15: 0.644644704437577 + sys_corr_16: 0.5576028659723105 + sys_corr_17: -34.36525962411903 + sys_corr_18: -22.88666792953804 + sys_corr_19: -0.0013478159665670224 + sys_corr_20: -0.0004724214571829234 + sys_corr_21: -0.02537502237640039 + sys_corr_22: 0.11239189427054516 + sys_corr_23: -0.4070390546193248 + sys_corr_24: -0.2853761232434217 + sys_corr_25: -0.9633357122385968 + sys_corr_26: 50.80381634414013 + sys_corr_27: 4.120146803693921 + sys_corr_28: -14.127501802452725 + sys_corr_29: -1.8451783318486372 + sys_corr_30: -1.495579517239746 + sys_corr_31: -9.740693365029998 + sys_corr_32: -2.787873471681524 + sys_corr_33: 0.29920231729136826 stat: 104.0 sys_beam: 104.0 sys_luminosity: 143.0 -- sys_corr_1: -4.578463173209268 - sys_corr_2: 11.492975402798796 - sys_corr_3: -5.3427273687657495 - sys_corr_4: 4.126356809328624 - sys_corr_5: -3.992260887375213 - sys_corr_6: -3.6598352973931885 - sys_corr_7: 1.2417807646456793 - sys_corr_8: -2.2074178309052495 - sys_corr_9: 1.5545920211934858 - sys_corr_10: -0.6499439295903825 - sys_corr_11: 0.20241455697884694 - sys_corr_12: -0.734634489123797 - sys_corr_13: 0.15016606264162435 - sys_corr_14: 0.18719010221802768 - sys_corr_15: 0.950295312530032 - sys_corr_16: 0.6382116555836227 - sys_corr_17: -28.022841740406605 - sys_corr_18: -15.360370639625264 - sys_corr_19: 0.00426215893645842 - sys_corr_20: 0.010104978715939099 - sys_corr_21: -0.058498624981505855 - sys_corr_22: 0.21426492515908183 - sys_corr_23: -0.40659276863566535 - sys_corr_24: -0.5178959102666051 - sys_corr_25: -1.0548333315490024 - sys_corr_26: -5.178392681781018 - sys_corr_27: -3.829689715013682 - sys_corr_28: 51.20257865707845 - sys_corr_29: -1.0981054409249755 - sys_corr_30: -3.038890187922179 - sys_corr_31: -20.301079361138328 - sys_corr_32: -2.8393245839428345 - sys_corr_33: 0.4512831009163918 +- sys_corr_1: -4.578463173209245 + sys_corr_2: 11.492975402798844 + sys_corr_3: -5.342727368765783 + sys_corr_4: 4.126356809328613 + sys_corr_5: -3.9922608873752963 + sys_corr_6: -3.659835297393161 + sys_corr_7: 1.2417807646456467 + sys_corr_8: -2.207417830905172 + sys_corr_9: 1.5545920211934137 + sys_corr_10: -0.6499439295902983 + sys_corr_11: 0.2024145569787807 + sys_corr_12: -0.7346344891238589 + sys_corr_13: 0.15016606264172364 + sys_corr_14: 0.1871901022181721 + sys_corr_15: 0.9502953125299415 + sys_corr_16: 0.6382116555836846 + sys_corr_17: -28.022841740406594 + sys_corr_18: -15.360370639625762 + sys_corr_19: 0.004262158936466547 + sys_corr_20: 0.010104978715944603 + sys_corr_21: -0.05849862498136131 + sys_corr_22: 0.21426492515897955 + sys_corr_23: -0.40659276863563015 + sys_corr_24: -0.5178959102669797 + sys_corr_25: -1.0548333315489675 + sys_corr_26: -5.178392681782824 + sys_corr_27: -3.8296897150192692 + sys_corr_28: 51.202578657080586 + sys_corr_29: -1.0981054409265378 + sys_corr_30: -3.0388901879220116 + sys_corr_31: -20.301079361133443 + sys_corr_32: -2.839324583945193 + sys_corr_33: 0.4512831009149138 stat: 103.0 sys_beam: 103.0 sys_luminosity: 142.0 -- sys_corr_1: -3.9460858939787267 - sys_corr_2: 9.33174768282577 - sys_corr_3: -4.502646795676525 - sys_corr_4: 3.5266199921711525 - sys_corr_5: -3.63902966660707 - sys_corr_6: -3.2259843865340474 - sys_corr_7: 2.158848236181536 - sys_corr_8: -2.2365351993275393 - sys_corr_9: 1.2136482542488523 - sys_corr_10: -0.29676784913591625 - sys_corr_11: -0.8236260631450238 - sys_corr_12: -0.34840942771363415 - sys_corr_13: 0.08854711601851223 - sys_corr_14: 0.934447885582395 - sys_corr_15: 1.0533652355015866 - sys_corr_16: -0.08875471213319627 - sys_corr_17: -20.059679842882847 - sys_corr_18: -8.695726652370375 - sys_corr_19: 0.004045355376689486 - sys_corr_20: 0.010423774641000881 - sys_corr_21: -0.06267162582061346 - sys_corr_22: 0.23812793222027165 - sys_corr_23: -0.3754999968965326 - sys_corr_24: -0.6042913104883304 - sys_corr_25: -2.1895278286540565 - sys_corr_26: -0.32629075771831767 - sys_corr_27: -2.6650933964938828 - sys_corr_28: 7.492399150300703 - sys_corr_29: -1.8453471794694891 - sys_corr_30: -6.137185313168774 - sys_corr_31: 34.404052262881606 - sys_corr_32: -8.058504971015362 - sys_corr_33: -38.3614814935855 +- sys_corr_1: -3.9460858939786965 + sys_corr_2: 9.331747682825814 + sys_corr_3: -4.502646795676548 + sys_corr_4: 3.52661999217111 + sys_corr_5: -3.639029666607165 + sys_corr_6: -3.22598438653398 + sys_corr_7: 2.1588482361814205 + sys_corr_8: -2.2365351993274634 + sys_corr_9: 1.2136482542488536 + sys_corr_10: -0.2967678491358917 + sys_corr_11: -0.8236260631451637 + sys_corr_12: -0.34840942771361777 + sys_corr_13: 0.08854711601867193 + sys_corr_14: 0.9344478855823343 + sys_corr_15: 1.0533652355015524 + sys_corr_16: -0.08875471213305143 + sys_corr_17: -20.059679842882176 + sys_corr_18: -8.695726652369748 + sys_corr_19: 0.004045355376697582 + sys_corr_20: 0.010423774641023337 + sys_corr_21: -0.06267162582035803 + sys_corr_22: 0.23812793222046488 + sys_corr_23: -0.37549999689656005 + sys_corr_24: -0.6042913104889222 + sys_corr_25: -2.1895278286529707 + sys_corr_26: -0.3262907577161122 + sys_corr_27: -2.6650933964974572 + sys_corr_28: 7.492399150300942 + sys_corr_29: -1.8453471794724177 + sys_corr_30: -6.137185313165999 + sys_corr_31: 34.40405226287594 + sys_corr_32: -8.058504971006268 + sys_corr_33: -38.36148149357813 stat: 99.0 sys_beam: 97.0 sys_luminosity: 134.0 -- sys_corr_1: -3.3296479921920366 - sys_corr_2: 7.5883943004564705 - sys_corr_3: -3.7145504527234507 - sys_corr_4: 3.35503548393236 - sys_corr_5: -3.6210240893796355 - sys_corr_6: -3.3033447678556995 - sys_corr_7: 2.7787312340337977 - sys_corr_8: -1.7908745803437651 - sys_corr_9: 0.6991734741609078 - sys_corr_10: -0.21168570613123566 - sys_corr_11: 0.419325432969654 - sys_corr_12: -1.034664667892168 - sys_corr_13: 0.9249825327151924 - sys_corr_14: 1.151342889063028 - sys_corr_15: 0.31758877794624407 - sys_corr_16: -0.8103817316898138 - sys_corr_17: -17.65115184322879 - sys_corr_18: -8.468050345061869 - sys_corr_19: 0.0034605281259789174 - sys_corr_20: 0.022841009935102966 - sys_corr_21: -0.10335762538889462 - sys_corr_22: 0.3639258931234307 - sys_corr_23: -0.4209886404783125 - sys_corr_24: -0.9238706063642763 - sys_corr_25: -2.541392203981611 - sys_corr_26: -1.43946139469366 - sys_corr_27: -0.5679517012131978 - sys_corr_28: 6.136048179732914 - sys_corr_29: -1.193661271400796 - sys_corr_30: -7.949020796072216 - sys_corr_31: 33.06818546504779 - sys_corr_32: -14.2341083025639 - sys_corr_33: 37.9332040653467 +- sys_corr_1: -3.3296479921920215 + sys_corr_2: 7.5883943004564935 + sys_corr_3: -3.714550452723452 + sys_corr_4: 3.3550354839323324 + sys_corr_5: -3.6210240893797 + sys_corr_6: -3.3033447678556613 + sys_corr_7: 2.7787312340336414 + sys_corr_8: -1.790874580343591 + sys_corr_9: 0.699173474160956 + sys_corr_10: -0.21168570613123214 + sys_corr_11: 0.4193254329696789 + sys_corr_12: -1.0346646678921523 + sys_corr_13: 0.9249825327151258 + sys_corr_14: 1.1513428890631658 + sys_corr_15: 0.317588777946141 + sys_corr_16: -0.8103817316898109 + sys_corr_17: -17.65115184322894 + sys_corr_18: -8.468050345062014 + sys_corr_19: 0.00346052812594454 + sys_corr_20: 0.02284100993511031 + sys_corr_21: -0.10335762538907334 + sys_corr_22: 0.3639258931234757 + sys_corr_23: -0.42098864047826307 + sys_corr_24: -0.9238706063642331 + sys_corr_25: -2.5413922039810912 + sys_corr_26: -1.4394613946934833 + sys_corr_27: -0.5679517012134454 + sys_corr_28: 6.136048179733384 + sys_corr_29: -1.1936612714029022 + sys_corr_30: -7.9490207960766295 + sys_corr_31: 33.068185465052935 + sys_corr_32: -14.234108302570368 + sys_corr_33: 37.93320406535584 stat: 96.0 sys_beam: 89.0 sys_luminosity: 122.0 -- sys_corr_1: -2.26449704480243 - sys_corr_2: 5.303611386017833 - sys_corr_3: -2.9965580164847374 - sys_corr_4: 2.9808073705544427 - sys_corr_5: -2.6717187965631704 - sys_corr_6: -2.8203798685914854 - sys_corr_7: 3.075916761243952 - sys_corr_8: -0.600206892842883 - sys_corr_9: 0.5652411860654452 - sys_corr_10: 0.1566211518695078 - sys_corr_11: 0.5227061713302058 - sys_corr_12: -0.2012909067866045 - sys_corr_13: -0.005896119165352256 - sys_corr_14: 0.7277698680111261 - sys_corr_15: 0.8209984498229408 - sys_corr_16: -1.141179059817319 - sys_corr_17: -11.310138887380388 - sys_corr_18: -5.191444509724453 - sys_corr_19: 0.012243378984876884 - sys_corr_20: 0.02707280314157412 - sys_corr_21: -0.1243196398117798 - sys_corr_22: 0.6384437220311394 - sys_corr_23: -0.23664523396155254 - sys_corr_24: -1.4184442725785145 - sys_corr_25: -6.182965470300769 - sys_corr_26: -0.7831071066196135 - sys_corr_27: -0.33676363861386627 - sys_corr_28: 3.607855843979147 - sys_corr_29: -0.025855777651026077 - sys_corr_30: 45.18748682643031 - sys_corr_31: 8.204394050536777 - sys_corr_32: -0.810980554988402 - sys_corr_33: 1.6084906420061331 +- sys_corr_1: -2.2644970448024164 + sys_corr_2: 5.303611386017853 + sys_corr_3: -2.9965580164847476 + sys_corr_4: 2.9808073705544844 + sys_corr_5: -2.671718796563147 + sys_corr_6: -2.8203798685914223 + sys_corr_7: 3.0759167612439726 + sys_corr_8: -0.6002068928428987 + sys_corr_9: 0.5652411860655118 + sys_corr_10: 0.1566211518695707 + sys_corr_11: 0.5227061713301702 + sys_corr_12: -0.2012909067865169 + sys_corr_13: -0.005896119165318261 + sys_corr_14: 0.7277698680111875 + sys_corr_15: 0.8209984498228907 + sys_corr_16: -1.1411790598173943 + sys_corr_17: -11.310138887380525 + sys_corr_18: -5.1914445097241035 + sys_corr_19: 0.012243378984850612 + sys_corr_20: 0.027072803141586887 + sys_corr_21: -0.12431963981218651 + sys_corr_22: 0.6384437220312449 + sys_corr_23: -0.23664523396117837 + sys_corr_24: -1.418444272577331 + sys_corr_25: -6.182965470305888 + sys_corr_26: -0.7831071066187173 + sys_corr_27: -0.3367636386135794 + sys_corr_28: 3.6078558439812403 + sys_corr_29: -0.025855777636017364 + sys_corr_30: 45.18748682643025 + sys_corr_31: 8.204394050539062 + sys_corr_32: -0.8109805549897795 + sys_corr_33: 1.6084906420068876 stat: 87.0 sys_beam: 74.0 sys_luminosity: 101.0 -- sys_corr_1: -1.5135155822276043 - sys_corr_2: 3.2044538268193117 - sys_corr_3: -1.7995590028307766 - sys_corr_4: 2.038005776686651 - sys_corr_5: -2.137992517157903 - sys_corr_6: -2.2561806411081524 - sys_corr_7: 2.632218317868729 - sys_corr_8: -0.256930003679635 - sys_corr_9: 0.3290430192703795 - sys_corr_10: 0.4158887653751436 - sys_corr_11: 0.1247072403048845 - sys_corr_12: -0.33814436203048215 - sys_corr_13: 0.3436493649735261 - sys_corr_14: 1.1984378152098496 - sys_corr_15: 0.5030735536072276 - sys_corr_16: -1.1517709087619579 - sys_corr_17: -6.947361726463262 - sys_corr_18: -3.1004020768359153 - sys_corr_19: 0.015269844074433592 - sys_corr_20: 0.03595434514355599 - sys_corr_21: -0.17357495277885113 - sys_corr_22: 0.7430732660383614 - sys_corr_23: -0.6040761669977323 - sys_corr_24: -2.6663942714178237 - sys_corr_25: 38.96666071835718 - sys_corr_26: -0.030343453690309857 - sys_corr_27: -0.588581390331981 - sys_corr_28: 1.6036788794271517 - sys_corr_29: -0.07008919590382523 - sys_corr_30: 5.872159828056926 - sys_corr_31: 4.203612781034689 - sys_corr_32: -1.0476413774165536 - sys_corr_33: 0.5798344606413427 +- sys_corr_1: -1.513515582227595 + sys_corr_2: 3.2044538268193246 + sys_corr_3: -1.799559002830778 + sys_corr_4: 2.038005776686647 + sys_corr_5: -2.137992517157925 + sys_corr_6: -2.256180641108121 + sys_corr_7: 2.6322183178687544 + sys_corr_8: -0.25693000367961655 + sys_corr_9: 0.32904301927027957 + sys_corr_10: 0.4158887653751109 + sys_corr_11: 0.12470724030488785 + sys_corr_12: -0.33814436203047815 + sys_corr_13: 0.3436493649734144 + sys_corr_14: 1.1984378152097308 + sys_corr_15: 0.5030735536072816 + sys_corr_16: -1.151770908762081 + sys_corr_17: -6.947361726463086 + sys_corr_18: -3.100402076835983 + sys_corr_19: 0.015269844074423085 + sys_corr_20: 0.035954345143622696 + sys_corr_21: -0.17357495277799437 + sys_corr_22: 0.7430732660388921 + sys_corr_23: -0.6040761669974669 + sys_corr_24: -2.6663942714164306 + sys_corr_25: 38.966660718356344 + sys_corr_26: -0.030343453690602797 + sys_corr_27: -0.588581390332667 + sys_corr_28: 1.6036788794271175 + sys_corr_29: -0.0700891959002945 + sys_corr_30: 5.872159828056449 + sys_corr_31: 4.2036127810351465 + sys_corr_32: -1.0476413774171527 + sys_corr_33: 0.5798344606427199 stat: 73.0 sys_beam: 52.0 sys_luminosity: 72.0 -- sys_corr_1: -0.9599677202731467 - sys_corr_2: 1.8901057609022751 - sys_corr_3: -1.037815979113756 - sys_corr_4: 1.2741208103014943 - sys_corr_5: -1.475782148750018 - sys_corr_6: -1.4710731576800267 - sys_corr_7: 2.1111106563037167 - sys_corr_8: -0.270213997061347 - sys_corr_9: 0.18836855327539567 - sys_corr_10: 0.4503325027711909 - sys_corr_11: 0.2300516023218829 - sys_corr_12: -0.4381571310579039 - sys_corr_13: 0.10449329455984135 - sys_corr_14: 0.3979064815391003 - sys_corr_15: 0.482003990859978 - sys_corr_16: -1.2052195926049707 - sys_corr_17: -3.879639564559728 - sys_corr_18: -1.6008710971999616 - sys_corr_19: 0.021744932392467536 - sys_corr_20: 0.052588206322506194 - sys_corr_21: -0.2841202770307984 - sys_corr_22: 1.9382119201107793 - sys_corr_23: 1.8023127730121085 - sys_corr_24: 28.942691039114482 - sys_corr_25: 3.028573834330488 - sys_corr_26: -0.187788861163144 - sys_corr_27: -0.0023176267272919057 - sys_corr_28: 1.0370069734245122 - sys_corr_29: 0.08391998313750906 - sys_corr_30: 2.140868155812344 - sys_corr_31: 1.8730470949491476 - sys_corr_32: -0.7474623468945075 - sys_corr_33: 0.5228886016713065 +- sys_corr_1: -0.9599677202731437 + sys_corr_2: 1.8901057609022804 + sys_corr_3: -1.0378159791137573 + sys_corr_4: 1.2741208103015023 + sys_corr_5: -1.4757821487500415 + sys_corr_6: -1.4710731576800156 + sys_corr_7: 2.111110656303758 + sys_corr_8: -0.27021399706120286 + sys_corr_9: 0.18836855327544447 + sys_corr_10: 0.4503325027712125 + sys_corr_11: 0.23005160232186697 + sys_corr_12: -0.4381571310578679 + sys_corr_13: 0.10449329455985254 + sys_corr_14: 0.39790648153921765 + sys_corr_15: 0.4820039908599063 + sys_corr_16: -1.2052195926051017 + sys_corr_17: -3.8796395645597612 + sys_corr_18: -1.6008710972005198 + sys_corr_19: 0.021744932392499822 + sys_corr_20: 0.052588206322650835 + sys_corr_21: -0.2841202770322658 + sys_corr_22: 1.9382119201075017 + sys_corr_23: 1.8023127730053656 + sys_corr_24: 28.942691039116013 + sys_corr_25: 3.0285738343293445 + sys_corr_26: -0.1877888611626913 + sys_corr_27: -0.002317626727620177 + sys_corr_28: 1.0370069734244094 + sys_corr_29: 0.08391998313771162 + sys_corr_30: 2.1408681558118405 + sys_corr_31: 1.8730470949490958 + sys_corr_32: -0.7474623468948263 + sys_corr_33: 0.5228886016718449 stat: 61.0 sys_beam: 36.0 sys_luminosity: 50.0 -- sys_corr_1: -0.6016101755163262 - sys_corr_2: 1.1597183126555852 - sys_corr_3: -0.43963847622759966 - sys_corr_4: 0.6948774891507522 - sys_corr_5: -0.9415241508082576 - sys_corr_6: -0.9991327629540212 - sys_corr_7: 1.5174553736573133 - sys_corr_8: 0.12754784527217214 - sys_corr_9: 0.13648182638961148 - sys_corr_10: 0.049695277717664854 - sys_corr_11: 0.2737254510373026 - sys_corr_12: 0.09215309773613535 - sys_corr_13: 0.01935480716384548 - sys_corr_14: 0.21777740221848438 - sys_corr_15: 0.2160632741754019 - sys_corr_16: -0.9735042680171326 - sys_corr_17: -2.0578009542705864 - sys_corr_18: -1.0644875221622025 - sys_corr_19: 0.031740270008793 - sys_corr_20: 0.08033514707290808 - sys_corr_21: -0.5208458815910265 - sys_corr_22: -22.464238022673584 - sys_corr_23: 0.18610800121312052 - sys_corr_24: 2.308734684642382 - sys_corr_25: 1.2699565268665773 - sys_corr_26: -0.09091516552321673 - sys_corr_27: 0.03267479133816744 - sys_corr_28: 0.6681291423825677 - sys_corr_29: 0.132805085087141 - sys_corr_30: 1.3989101918129927 - sys_corr_31: 1.0965066547411952 - sys_corr_32: -0.5238493042781469 - sys_corr_33: 0.3056880593228835 +- sys_corr_1: -0.6016101755163246 + sys_corr_2: 1.1597183126555877 + sys_corr_3: -0.43963847622759905 + sys_corr_4: 0.6948774891507552 + sys_corr_5: -0.9415241508082652 + sys_corr_6: -0.9991327629540143 + sys_corr_7: 1.5174553736573035 + sys_corr_8: 0.12754784527214505 + sys_corr_9: 0.13648182638956124 + sys_corr_10: 0.04969527771764928 + sys_corr_11: 0.2737254510373512 + sys_corr_12: 0.09215309773617389 + sys_corr_13: 0.019354807163847104 + sys_corr_14: 0.21777740221843647 + sys_corr_15: 0.21606327417540777 + sys_corr_16: -0.973504268016993 + sys_corr_17: -2.0578009542705265 + sys_corr_18: -1.0644875221619896 + sys_corr_19: 0.031740270008775204 + sys_corr_20: 0.08033514707308048 + sys_corr_21: -0.5208458815894645 + sys_corr_22: -22.46423802267437 + sys_corr_23: 0.18610800121244955 + sys_corr_24: 2.308734684641413 + sys_corr_25: 1.2699565268666466 + sys_corr_26: -0.09091516552335618 + sys_corr_27: 0.032674791337999366 + sys_corr_28: 0.6681291423828061 + sys_corr_29: 0.13280508508763325 + sys_corr_30: 1.3989101918131466 + sys_corr_31: 1.09650665474171 + sys_corr_32: -0.5238493042777358 + sys_corr_33: 0.3056880593229055 stat: 47.0 sys_beam: 22.0 sys_luminosity: 30.0 -- sys_corr_1: -0.30363528921299776 - sys_corr_2: 0.46487609211710273 - sys_corr_3: -0.1247745665660524 - sys_corr_4: 0.29905839114569505 - sys_corr_5: -0.2470346698834699 - sys_corr_6: -0.3700600797043061 - sys_corr_7: 0.7531431717298234 - sys_corr_8: -0.04223931399247174 - sys_corr_9: 0.13719711300660098 - sys_corr_10: 0.05124500846428704 - sys_corr_11: -0.036834311757478234 - sys_corr_12: 0.059475816300823645 - sys_corr_13: 0.16421221076050618 - sys_corr_14: 0.005626317963538678 - sys_corr_15: 0.14988122184911587 - sys_corr_16: -0.4003126761958511 - sys_corr_17: -0.8420927175202612 - sys_corr_18: -0.43628867841155355 - sys_corr_19: 0.03590177446561639 - sys_corr_20: 0.1268571768672835 - sys_corr_21: 13.84914420416772 - sys_corr_22: -0.7806083967790649 - sys_corr_23: 0.011581050126568642 - sys_corr_24: 0.6179383606692477 - sys_corr_25: 0.5014764801047217 - sys_corr_26: -0.02547230563101607 - sys_corr_27: 0.04103092350034633 - sys_corr_28: 0.32604980294041536 - sys_corr_29: 0.08077100472405872 - sys_corr_30: 0.4611880391113888 - sys_corr_31: 0.4947110792665851 - sys_corr_32: -0.16911931481799336 - sys_corr_33: 0.15492632999988518 +- sys_corr_1: -0.30363528921299726 + sys_corr_2: 0.4648760921171039 + sys_corr_3: -0.12477456656605275 + sys_corr_4: 0.2990583911456929 + sys_corr_5: -0.2470346698834696 + sys_corr_6: -0.3700600797043043 + sys_corr_7: 0.7531431717298209 + sys_corr_8: -0.04223931399245429 + sys_corr_9: 0.1371971130066231 + sys_corr_10: 0.051245008464293945 + sys_corr_11: -0.03683431175751741 + sys_corr_12: 0.059475816300766295 + sys_corr_13: 0.1642122107605053 + sys_corr_14: 0.005626317963480155 + sys_corr_15: 0.14988122184898237 + sys_corr_16: -0.4003126761959416 + sys_corr_17: -0.8420927175202827 + sys_corr_18: -0.43628867841145047 + sys_corr_19: 0.03590177446568252 + sys_corr_20: 0.12685717686608483 + sys_corr_21: 13.849144204168123 + sys_corr_22: -0.7806083967775885 + sys_corr_23: 0.011581050126402247 + sys_corr_24: 0.6179383606688502 + sys_corr_25: 0.5014764801040614 + sys_corr_26: -0.025472305630988738 + sys_corr_27: 0.041030923500010766 + sys_corr_28: 0.3260498029402512 + sys_corr_29: 0.08077100472413296 + sys_corr_30: 0.4611880391118003 + sys_corr_31: 0.494711079266706 + sys_corr_32: -0.1691193148183409 + sys_corr_33: 0.15492633000031986 stat: 32.0 sys_beam: 10.0 sys_luminosity: 14.0 -- sys_corr_1: -0.10547439465572662 - sys_corr_2: 0.18904847960759322 - sys_corr_3: -0.06667300003302963 - sys_corr_4: 0.06995541406089997 - sys_corr_5: -0.07973775749772742 - sys_corr_6: -0.08186155470482691 - sys_corr_7: 0.36041891542631405 - sys_corr_8: -0.007937458417970698 - sys_corr_9: 0.010425630003523773 - sys_corr_10: 0.008489985408112077 - sys_corr_11: 0.014469848807811202 - sys_corr_12: -0.028723535556029876 - sys_corr_13: -0.010975318861599307 - sys_corr_14: 0.00903011441822586 - sys_corr_15: 0.0701482056799405 - sys_corr_16: -0.17204888458446005 - sys_corr_17: -0.300461541373921 - sys_corr_18: -0.07927931968950211 - sys_corr_19: 0.14502031603278479 - sys_corr_20: -7.96150465089546 - sys_corr_21: 0.20984559058549018 - sys_corr_22: -0.2160960617220796 - sys_corr_23: 0.06734604526818005 - sys_corr_24: 0.19660344959978993 - sys_corr_25: 0.1817441829281845 - sys_corr_26: -0.023877524299082416 - sys_corr_27: -0.021898473104930007 - sys_corr_28: 0.12441629601171962 - sys_corr_29: 0.030633057336414405 - sys_corr_30: 0.17597808154967007 - sys_corr_31: 0.1928278224847564 - sys_corr_32: -0.05513058728099465 - sys_corr_33: 0.07793893164756557 +- sys_corr_1: -0.10547439465572588 + sys_corr_2: 0.18904847960759424 + sys_corr_3: -0.06667300003302946 + sys_corr_4: 0.06995541406089893 + sys_corr_5: -0.07973775749772975 + sys_corr_6: -0.08186155470482534 + sys_corr_7: 0.3604189154263184 + sys_corr_8: -0.00793745841794225 + sys_corr_9: 0.010425630003556688 + sys_corr_10: 0.008489985408124125 + sys_corr_11: 0.014469848807811856 + sys_corr_12: -0.028723535555937235 + sys_corr_13: -0.010975318861684086 + sys_corr_14: 0.009030114418278641 + sys_corr_15: 0.07014820568014873 + sys_corr_16: -0.17204888458433032 + sys_corr_17: -0.3004615413738437 + sys_corr_18: -0.07927931968931957 + sys_corr_19: 0.14502031603626284 + sys_corr_20: -7.961504650895671 + sys_corr_21: 0.20984559058474292 + sys_corr_22: -0.21609606172248594 + sys_corr_23: 0.06734604526810684 + sys_corr_24: 0.19660344960008216 + sys_corr_25: 0.1817441829283297 + sys_corr_26: -0.02387752429915648 + sys_corr_27: -0.021898473105198275 + sys_corr_28: 0.12441629601170437 + sys_corr_29: 0.030633057336847454 + sys_corr_30: 0.17597808154973107 + sys_corr_31: 0.1928278224849192 + sys_corr_32: -0.055130587280906834 + sys_corr_33: 0.07793893164754231 stat: 20.0 sys_beam: 4.0 sys_luminosity: 6.0 -- sys_corr_1: -0.024314294821134536 - sys_corr_2: 0.09692113929867915 - sys_corr_3: -0.03333161308882757 - sys_corr_4: 0.06107345051605306 - sys_corr_5: -0.06352349208669832 - sys_corr_6: -0.06298347307032294 - sys_corr_7: 0.18466559329976434 - sys_corr_8: 0.01854758747130262 - sys_corr_9: -0.028717692598100253 - sys_corr_10: 0.05370278836507441 - sys_corr_11: -0.05287405830181792 - sys_corr_12: -0.022456875402690965 - sys_corr_13: -0.03088389927420965 - sys_corr_14: 0.06185834377468288 - sys_corr_15: 0.009215479111549924 - sys_corr_16: -0.13719520827949316 - sys_corr_17: -0.11723684260541707 - sys_corr_18: -0.03585346561820866 - sys_corr_19: -5.982138587278388 - sys_corr_20: -0.19143727469493227 - sys_corr_21: 0.08356906426316986 - sys_corr_22: -0.11832245399399048 - sys_corr_23: 0.025647167839311445 - sys_corr_24: 0.11379847822740655 - sys_corr_25: 0.10881194615883996 - sys_corr_26: -0.011078459290446497 - sys_corr_27: -0.01241181587595177 - sys_corr_28: 0.07756686666272442 - sys_corr_29: 0.012305765288925435 - sys_corr_30: 0.11931735302945207 - sys_corr_31: 0.08057415546946586 - sys_corr_32: -0.02658392835422278 - sys_corr_33: 0.007594828848027523 +- sys_corr_1: -0.02431429482113436 + sys_corr_2: 0.09692113929867942 + sys_corr_3: -0.03333161308882767 + sys_corr_4: 0.06107345051605339 + sys_corr_5: -0.0635234920866984 + sys_corr_6: -0.06298347307032187 + sys_corr_7: 0.18466559329976315 + sys_corr_8: 0.018547587471302415 + sys_corr_9: -0.02871769259809767 + sys_corr_10: 0.05370278836507606 + sys_corr_11: -0.05287405830178798 + sys_corr_12: -0.02245687540262259 + sys_corr_13: -0.03088389927423268 + sys_corr_14: 0.061858343774689926 + sys_corr_15: 0.009215479111591185 + sys_corr_16: -0.13719520827944265 + sys_corr_17: -0.11723684260544923 + sys_corr_18: -0.03585346561818685 + sys_corr_19: -5.9821385872786745 + sys_corr_20: -0.19143727469509828 + sys_corr_21: 0.08356906426353942 + sys_corr_22: -0.1183224539940978 + sys_corr_23: 0.025647167839376116 + sys_corr_24: 0.11379847822740553 + sys_corr_25: 0.10881194615859863 + sys_corr_26: -0.011078459290351764 + sys_corr_27: -0.012411815875944492 + sys_corr_28: 0.07756686666277557 + sys_corr_29: 0.012305765288642322 + sys_corr_30: 0.11931735302945229 + sys_corr_31: 0.0805741554695368 + sys_corr_32: -0.026583928354131748 + sys_corr_33: 0.007594828848036096 stat: 13.0 sys_beam: 1.0 sys_luminosity: 2.0 -- sys_corr_1: -2989.058480119807 - sys_corr_2: 1741.2352734197561 - sys_corr_3: 250.25092532668643 - sys_corr_4: -192.3129135381234 - sys_corr_5: 109.1852381187949 - sys_corr_6: 102.56608902789063 - sys_corr_7: -110.44616534215697 - sys_corr_8: 90.69732310440781 - sys_corr_9: -130.2139122911389 - sys_corr_10: 344.38027920484757 - sys_corr_11: 52.22339273467959 - sys_corr_12: -53.06781238153775 - sys_corr_13: 1.4345565335485402 - sys_corr_14: 6.8018941975027944 - sys_corr_15: -2.4411069949310007 - sys_corr_16: 1.5246755785071675 - sys_corr_17: 0.4789441759397724 - sys_corr_18: -0.03726763257395286 - sys_corr_19: 5.1447525234714585e-05 - sys_corr_20: -6.20763161342488e-05 - sys_corr_21: 0.0004978535045618092 - sys_corr_22: -0.0013325438576274012 - sys_corr_23: -0.031539125057005866 - sys_corr_24: 0.0010900115764557424 - sys_corr_25: 0.0005255700735485576 - sys_corr_26: 0.0008821259852684616 - sys_corr_27: 0.019560124807926627 - sys_corr_28: 0.02273515254319236 - sys_corr_29: -0.07187191336322335 - sys_corr_30: 0.007576816752286737 - sys_corr_31: -0.0011467786332892524 - sys_corr_32: -0.05970827174257557 - sys_corr_33: -0.006654182936865293 +- sys_corr_1: -2989.0584801198097 + sys_corr_2: 1741.235273419759 + sys_corr_3: 250.25092532668617 + sys_corr_4: -192.3129135381235 + sys_corr_5: 109.18523811879507 + sys_corr_6: 102.5660890278907 + sys_corr_7: -110.44616534215558 + sys_corr_8: 90.69732310440682 + sys_corr_9: -130.2139122911393 + sys_corr_10: 344.3802792048472 + sys_corr_11: 52.223392734681866 + sys_corr_12: -53.06781238153589 + sys_corr_13: 1.4345565335488928 + sys_corr_14: 6.801894197502721 + sys_corr_15: -2.4411069949309856 + sys_corr_16: 1.5246755785071902 + sys_corr_17: 0.4789441759397834 + sys_corr_18: -0.03726763257395264 + sys_corr_19: 5.144752523465234e-05 + sys_corr_20: -6.207631613456992e-05 + sys_corr_21: 0.0004978535045622172 + sys_corr_22: -0.0013325438576271464 + sys_corr_23: -0.03153912505699979 + sys_corr_24: 0.0010900115764458024 + sys_corr_25: 0.0005255700735465567 + sys_corr_26: 0.000882125985270972 + sys_corr_27: 0.019560124807931616 + sys_corr_28: 0.02273515254318484 + sys_corr_29: -0.07187191336322789 + sys_corr_30: 0.007576816752288809 + sys_corr_31: -0.0011467786332942042 + sys_corr_32: -0.059708271742577396 + sys_corr_33: -0.006654182936852872 stat: 1200.0 sys_beam: 2000.0 sys_luminosity: 3300.0 -- sys_corr_1: 1771.220332867379 - sys_corr_2: 2177.6145552461853 - sys_corr_3: -1184.9827692072558 - sys_corr_4: -461.5478923377516 +- sys_corr_1: 1771.2203328673806 + sys_corr_2: 2177.614555246184 + sys_corr_3: -1184.9827692072565 + sys_corr_4: -461.54789233775153 sys_corr_5: 133.76585875962257 - sys_corr_6: 22.71367328176275 - sys_corr_7: -20.897665173395517 - sys_corr_8: 7.501098488921938 - sys_corr_9: 13.044557570048621 - sys_corr_10: 223.36135844801754 - sys_corr_11: -195.90794289522734 - sys_corr_12: 34.82826694483274 - sys_corr_13: -63.49481139806769 - sys_corr_14: -28.14939334330933 - sys_corr_15: -11.796227250772377 - sys_corr_16: 6.619959021198485 - sys_corr_17: 0.4660844529207953 - sys_corr_18: -0.024527776226358395 - sys_corr_19: 0.00015326127967460704 - sys_corr_20: -6.435082313963453e-05 - sys_corr_21: 0.0004990479802600822 - sys_corr_22: -0.003561554370896553 - sys_corr_23: 0.009260786790764237 - sys_corr_24: 0.0037262370005344695 - sys_corr_25: 0.007849551180116394 - sys_corr_26: 0.0365288169762594 - sys_corr_27: 0.011769594845575238 - sys_corr_28: -0.004908830761464272 - sys_corr_29: -0.02144099412836064 - sys_corr_30: 0.011494075680688751 - sys_corr_31: -0.013169351521870857 - sys_corr_32: -0.06059498306492351 - sys_corr_33: 0.027723060471513898 + sys_corr_6: 22.713673281762514 + sys_corr_7: -20.89766517339527 + sys_corr_8: 7.501098488921535 + sys_corr_9: 13.044557570048697 + sys_corr_10: 223.36135844801788 + sys_corr_11: -195.90794289522867 + sys_corr_12: 34.82826694482505 + sys_corr_13: -63.49481139806836 + sys_corr_14: -28.149393343309068 + sys_corr_15: -11.796227250772441 + sys_corr_16: 6.619959021198546 + sys_corr_17: 0.46608445292079786 + sys_corr_18: -0.024527776226352684 + sys_corr_19: 0.00015326127967473942 + sys_corr_20: -6.435082313992516e-05 + sys_corr_21: 0.0004990479802600205 + sys_corr_22: -0.0035615543708970338 + sys_corr_23: 0.009260786790764008 + sys_corr_24: 0.0037262370005415046 + sys_corr_25: 0.007849551180115894 + sys_corr_26: 0.03652881697625291 + sys_corr_27: 0.011769594845575583 + sys_corr_28: -0.004908830761473975 + sys_corr_29: -0.02144099412836221 + sys_corr_30: 0.0114940756806874 + sys_corr_31: -0.01316935152187323 + sys_corr_32: -0.0605949830649322 + sys_corr_33: 0.027723060471524077 stat: 900.0 sys_beam: 1900.0 sys_luminosity: 3100.0 -- sys_corr_1: 457.6423183868372 - sys_corr_2: 810.2620334429145 - sys_corr_3: 11.55296667958053 +- sys_corr_1: 457.6423183868378 + sys_corr_2: 810.2620334429141 + sys_corr_3: 11.552966679580127 sys_corr_4: 1818.5878043088792 - sys_corr_5: 351.0991721698314 - sys_corr_6: 109.57413100162576 - sys_corr_7: -59.488702071522866 - sys_corr_8: 39.958569939783665 - sys_corr_9: -30.928425638748738 - sys_corr_10: 56.421922770266036 - sys_corr_11: 209.84239016835662 - sys_corr_12: 197.1176054833613 - sys_corr_13: -87.66815367247078 - sys_corr_14: -34.955026589442326 - sys_corr_15: -13.640980398486386 - sys_corr_16: 10.406309350592801 - sys_corr_17: 0.2102782614228367 - sys_corr_18: 0.09349020488842694 - sys_corr_19: -0.0001512604916088195 - sys_corr_20: -0.00015695497799325707 - sys_corr_21: 0.00044888716312635235 - sys_corr_22: 0.0015404682822178902 - sys_corr_23: 0.0061426344544344876 - sys_corr_24: 0.002520891253960471 - sys_corr_25: 0.006458823244357609 - sys_corr_26: 0.00529225139507421 - sys_corr_27: 0.001655491247235452 - sys_corr_28: 0.0038917464995341664 - sys_corr_29: 0.011598834517023981 - sys_corr_30: -0.018356688839980425 - sys_corr_31: 0.021119036051366544 - sys_corr_32: -0.004574055894171316 - sys_corr_33: 0.002447135548573389 + sys_corr_5: 351.09917216983143 + sys_corr_6: 109.57413100162573 + sys_corr_7: -59.48870207152214 + sys_corr_8: 39.958569939783814 + sys_corr_9: -30.92842563874906 + sys_corr_10: 56.42192277026579 + sys_corr_11: 209.8423901683495 + sys_corr_12: 197.11760548336903 + sys_corr_13: -87.66815367247125 + sys_corr_14: -34.955026589442184 + sys_corr_15: -13.640980398486377 + sys_corr_16: 10.40630935059273 + sys_corr_17: 0.21027826142284176 + sys_corr_18: 0.09349020488842748 + sys_corr_19: -0.00015126049160894448 + sys_corr_20: -0.00015695497799352875 + sys_corr_21: 0.00044888716312601235 + sys_corr_22: 0.0015404682822134533 + sys_corr_23: 0.006142634454438563 + sys_corr_24: 0.0025208912539652468 + sys_corr_25: 0.006458823244358853 + sys_corr_26: 0.005292251395075366 + sys_corr_27: 0.0016554912472323481 + sys_corr_28: 0.0038917464995262257 + sys_corr_29: 0.011598834517018252 + sys_corr_30: -0.0183566888399841 + sys_corr_31: 0.0211190360513657 + sys_corr_32: -0.00457405589417182 + sys_corr_33: 0.0024471355485791864 stat: 800.0 sys_beam: 1600.0 sys_luminosity: 2600.0 -- sys_corr_1: -439.436691573891 - sys_corr_2: 47.626493456246585 - sys_corr_3: -395.14703436491186 - sys_corr_4: 320.16657557659323 - sys_corr_5: -1354.6482786393992 - sys_corr_6: 332.298715261713 - sys_corr_7: -117.78910742798735 - sys_corr_8: 83.24115448245642 - sys_corr_9: -74.73780927882152 - sys_corr_10: -24.116260082799144 - sys_corr_11: -167.96517429340594 - sys_corr_12: 300.4888602396409 - sys_corr_13: 106.78707589636038 - sys_corr_14: 58.71616154917705 - sys_corr_15: -12.516598173843196 - sys_corr_16: 0.7086159625744486 - sys_corr_17: 0.306273733436595 - sys_corr_18: 0.11964665260935833 - sys_corr_19: 6.937506320270905e-05 - sys_corr_20: -0.00029798686433461216 - sys_corr_21: -0.0004997181998814618 - sys_corr_22: 0.0026109894088653858 - sys_corr_23: 0.003638286984324157 - sys_corr_24: 0.001370512003664026 - sys_corr_25: -0.011999409793160297 - sys_corr_26: 0.059999964477266056 - sys_corr_27: -0.014660679850358285 - sys_corr_28: 0.0026763072096645047 - sys_corr_29: 0.014886322049509031 - sys_corr_30: -0.006579970173737585 - sys_corr_31: -0.03430374709979555 - sys_corr_32: 0.013915032423837096 - sys_corr_33: 0.019184615810709182 +- sys_corr_1: -439.43669157389195 + sys_corr_2: 47.62649345624625 + sys_corr_3: -395.1470343649117 + sys_corr_4: 320.166575576593 + sys_corr_5: -1354.648278639396 + sys_corr_6: 332.29871526171416 + sys_corr_7: -117.78910742798519 + sys_corr_8: 83.24115448245679 + sys_corr_9: -74.73780927882216 + sys_corr_10: -24.11626008279868 + sys_corr_11: -167.96517429341804 + sys_corr_12: 300.48886023963513 + sys_corr_13: 106.78707589635839 + sys_corr_14: 58.71616154917696 + sys_corr_15: -12.516598173843375 + sys_corr_16: 0.7086159625744609 + sys_corr_17: 0.3062737334365825 + sys_corr_18: 0.1196466526093551 + sys_corr_19: 6.937506320301623e-05 + sys_corr_20: -0.00029798686433557856 + sys_corr_21: -0.0004997181998818448 + sys_corr_22: 0.0026109894088647517 + sys_corr_23: 0.003638286984321585 + sys_corr_24: 0.0013705120036662285 + sys_corr_25: -0.01199940979315695 + sys_corr_26: 0.05999996447726511 + sys_corr_27: -0.01466067985036193 + sys_corr_28: 0.0026763072096605274 + sys_corr_29: 0.014886322049513578 + sys_corr_30: -0.006579970173738046 + sys_corr_31: -0.0343037470997968 + sys_corr_32: 0.01391503242383377 + sys_corr_33: 0.019184615810700814 stat: 700.0 sys_beam: 1300.0 sys_luminosity: 2100.0 -- sys_corr_1: 248.0143699037267 +- sys_corr_1: 248.01436990372713 sys_corr_2: 404.4526266706796 - sys_corr_3: 32.51636827425121 - sys_corr_4: 167.38742323975615 - sys_corr_5: -256.58238856332895 - sys_corr_6: -1079.538553819482 - sys_corr_7: -167.6189474192061 - sys_corr_8: 61.30136217663614 - sys_corr_9: -44.28445403690739 - sys_corr_10: 82.48578437701754 - sys_corr_11: 94.7405208683309 - sys_corr_12: -9.929809238619493 - sys_corr_13: 371.484657403486 - sys_corr_14: -129.98002394333352 - sys_corr_15: -1.8103718373838549 - sys_corr_16: 0.7471091210113745 - sys_corr_17: 0.4214025328085921 - sys_corr_18: 0.1864689192428191 - sys_corr_19: -0.000268662675479856 - sys_corr_20: -0.0002585137555152672 - sys_corr_21: -0.0022822326953982177 - sys_corr_22: 0.004871900744122065 - sys_corr_23: -0.006226501355936368 - sys_corr_24: -0.010383149004559408 - sys_corr_25: -0.018078414343273053 - sys_corr_26: -0.02014717840698953 - sys_corr_27: -0.020796391752400795 - sys_corr_28: -0.03580261145077902 - sys_corr_29: 0.05079231305699657 - sys_corr_30: -0.02245470721021716 - sys_corr_31: -0.030345415729666533 - sys_corr_32: 0.06074075639357172 - sys_corr_33: -0.03312993954188243 + sys_corr_3: 32.51636827425098 + sys_corr_4: 167.3874232397563 + sys_corr_5: -256.582388563332 + sys_corr_6: -1079.5385538194814 + sys_corr_7: -167.6189474192057 + sys_corr_8: 61.30136217663764 + sys_corr_9: -44.28445403690839 + sys_corr_10: 82.48578437701785 + sys_corr_11: 94.74052086833053 + sys_corr_12: -9.929809238614075 + sys_corr_13: 371.48465740348615 + sys_corr_14: -129.98002394333437 + sys_corr_15: -1.8103718373829414 + sys_corr_16: 0.7471091210113149 + sys_corr_17: 0.42140253280857687 + sys_corr_18: 0.1864689192428194 + sys_corr_19: -0.0002686626754803754 + sys_corr_20: -0.0002585137555145964 + sys_corr_21: -0.0022822326953976907 + sys_corr_22: 0.0048719007441241895 + sys_corr_23: -0.006226501355924812 + sys_corr_24: -0.010383149004565943 + sys_corr_25: -0.01807841434326925 + sys_corr_26: -0.020147178406987584 + sys_corr_27: -0.020796391752394415 + sys_corr_28: -0.03580261145078157 + sys_corr_29: 0.050792313056989495 + sys_corr_30: -0.022454707210208622 + sys_corr_31: -0.03034541572967167 + sys_corr_32: 0.06074075639357655 + sys_corr_33: -0.033129939541903256 stat: 600.0 sys_beam: 1000.0 sys_luminosity: 1600.0 -- sys_corr_1: 294.94564611768664 - sys_corr_2: 295.5199869993109 - sys_corr_3: 102.59708835094253 - sys_corr_4: 54.26177319059393 - sys_corr_5: -96.47469105130163 - sys_corr_6: -71.28275501730451 - sys_corr_7: 79.38038167913638 - sys_corr_8: -135.3508088116309 - sys_corr_9: 553.9962584105299 - sys_corr_10: 205.37799057575683 - sys_corr_11: 156.0822901884267 - sys_corr_12: -49.51882509019517 - sys_corr_13: 117.67735818203333 - sys_corr_14: 430.54611368254984 - sys_corr_15: -89.82562355331319 - sys_corr_16: 1.5321781564613384 - sys_corr_17: 0.30703527338295816 - sys_corr_18: 0.11402215445244224 - sys_corr_19: 0.0002739372589340107 - sys_corr_20: -0.00010407658346781514 - sys_corr_21: -0.00018597975504337306 - sys_corr_22: 0.004813306838651901 - sys_corr_23: 0.009659092259339728 - sys_corr_24: -0.014744312027178333 - sys_corr_25: -0.05971694635339425 - sys_corr_26: -0.05667357161740262 - sys_corr_27: -0.0275689129047225 - sys_corr_28: -0.06756965202420033 - sys_corr_29: 0.012434214728932108 - sys_corr_30: -0.042584589004102086 - sys_corr_31: -0.12867118539479008 - sys_corr_32: 0.04053603386903326 - sys_corr_33: -0.038865165003536414 +- sys_corr_1: 294.94564611768726 + sys_corr_2: 295.5199869993111 + sys_corr_3: 102.59708835094234 + sys_corr_4: 54.261773190593956 + sys_corr_5: -96.47469105130197 + sys_corr_6: -71.2827550173046 + sys_corr_7: 79.3803816791339 + sys_corr_8: -135.3508088116261 + sys_corr_9: 553.9962584105317 + sys_corr_10: 205.37799057575677 + sys_corr_11: 156.08229018842874 + sys_corr_12: -49.518825090189395 + sys_corr_13: 117.6773581820354 + sys_corr_14: 430.5461136825491 + sys_corr_15: -89.82562355331439 + sys_corr_16: 1.5321781564615862 + sys_corr_17: 0.30703527338299896 + sys_corr_18: 0.11402215445245244 + sys_corr_19: 0.00027393725893373717 + sys_corr_20: -0.00010407658346802549 + sys_corr_21: -0.00018597975504394375 + sys_corr_22: 0.004813306838652591 + sys_corr_23: 0.009659092259324473 + sys_corr_24: -0.014744312027180382 + sys_corr_25: -0.05971694635338373 + sys_corr_26: -0.056673571617402926 + sys_corr_27: -0.02756891290470931 + sys_corr_28: -0.06756965202418326 + sys_corr_29: 0.012434214728920596 + sys_corr_30: -0.04258458900410053 + sys_corr_31: -0.12867118539479772 + sys_corr_32: 0.040536033869043114 + sys_corr_33: -0.038865165003563025 stat: 500.0 sys_beam: 700.0 sys_luminosity: 1100.0 -- sys_corr_1: 52.15832457245841 - sys_corr_2: 145.17421178000177 - sys_corr_3: -25.069090952145366 - sys_corr_4: 72.41121212245443 - sys_corr_5: -72.03684627810892 - sys_corr_6: -74.37215030876999 - sys_corr_7: 253.37563413239528 - sys_corr_8: -351.03140380804496 - sys_corr_9: -123.72085839374525 - sys_corr_10: 93.59255615563387 - sys_corr_11: 29.391753093194705 - sys_corr_12: 33.203338971789 - sys_corr_13: 20.104701755272515 - sys_corr_14: 96.92472202516164 - sys_corr_15: 475.75956048926963 - sys_corr_16: -3.262631985571773 - sys_corr_17: 0.2864055062154854 - sys_corr_18: 0.16664531276687533 - sys_corr_19: 0.00023929346533660073 - sys_corr_20: 0.0011273440207949829 - sys_corr_21: -0.00392897818155604 - sys_corr_22: 0.009329597580320018 - sys_corr_23: -0.0031750924114799755 - sys_corr_24: -0.0314869522727434 - sys_corr_25: -0.04929865689623962 - sys_corr_26: -0.04485024408882434 - sys_corr_27: -0.011980410173932046 - sys_corr_28: -0.15470816751854474 - sys_corr_29: 0.026942355019289144 - sys_corr_30: -0.08426679128534605 - sys_corr_31: -0.13948037884473952 - sys_corr_32: 0.07062926208548988 - sys_corr_33: 0.03443581374867994 +- sys_corr_1: 52.15832457245852 + sys_corr_2: 145.1742117800018 + sys_corr_3: -25.06909095214543 + sys_corr_4: 72.41121212245444 + sys_corr_5: -72.03684627810904 + sys_corr_6: -74.37215030877009 + sys_corr_7: 253.37563413238982 + sys_corr_8: -351.03140380804916 + sys_corr_9: -123.72085839374321 + sys_corr_10: 93.59255615563374 + sys_corr_11: 29.391753093193625 + sys_corr_12: 33.203338971790274 + sys_corr_13: 20.104701755271293 + sys_corr_14: 96.92472202516308 + sys_corr_15: 475.75956048926946 + sys_corr_16: -3.262631985572548 + sys_corr_17: 0.28640550621547634 + sys_corr_18: 0.16664531276688135 + sys_corr_19: 0.00023929346533521197 + sys_corr_20: 0.0011273440207940249 + sys_corr_21: -0.003928978181555879 + sys_corr_22: 0.009329597580323909 + sys_corr_23: -0.0031750924114659074 + sys_corr_24: -0.031486952272748406 + sys_corr_25: -0.0492986568962272 + sys_corr_26: -0.04485024408881918 + sys_corr_27: -0.011980410173908633 + sys_corr_28: -0.1547081675185396 + sys_corr_29: 0.026942355019256594 + sys_corr_30: -0.08426679128534494 + sys_corr_31: -0.13948037884475523 + sys_corr_32: 0.07062926208548446 + sys_corr_33: 0.034435813748631756 stat: 500.0 sys_beam: 600.0 sys_luminosity: 1000.0 -- sys_corr_1: 44.7291119927517 - sys_corr_2: 70.35727027289347 - sys_corr_3: 8.05361918795043 - sys_corr_4: 24.099007302993 - sys_corr_5: -11.34947405395106 - sys_corr_6: -19.41148834439991 - sys_corr_7: 52.22811490580616 - sys_corr_8: 9.673620787604367 - sys_corr_9: -8.719120366096565 - sys_corr_10: 22.566591334219986 - sys_corr_11: 11.139339972208107 - sys_corr_12: 18.125669594167018 - sys_corr_13: -15.011572915542072 - sys_corr_14: -2.8255735370026533 - sys_corr_15: -12.163978833083446 - sys_corr_16: -384.2619544657682 - sys_corr_17: -0.14392788705818957 - sys_corr_18: -0.01913452738449493 - sys_corr_19: 0.0018253111370988213 - sys_corr_20: 0.0029748356753397744 - sys_corr_21: -0.011593881070075973 - sys_corr_22: 0.04869941879567023 - sys_corr_23: -0.015070431271914339 - sys_corr_24: -0.0863219318821036 - sys_corr_25: -0.11472784064265686 - sys_corr_26: -0.01600804922785934 - sys_corr_27: 0.0031548240906768697 - sys_corr_28: -0.039440913934889875 - sys_corr_29: 0.0033315825310361855 - sys_corr_30: -0.16546794772041343 - sys_corr_31: -0.19603288039268849 - sys_corr_32: 0.081611260805218 - sys_corr_33: -0.07681146337350113 +- sys_corr_1: 44.729111992751754 + sys_corr_2: 70.35727027289343 + sys_corr_3: 8.053619187950396 + sys_corr_4: 24.099007302993012 + sys_corr_5: -11.349474053951214 + sys_corr_6: -19.41148834439992 + sys_corr_7: 52.22811490580611 + sys_corr_8: 9.673620787603435 + sys_corr_9: -8.719120366096995 + sys_corr_10: 22.566591334219922 + sys_corr_11: 11.13933997220724 + sys_corr_12: 18.12566959416703 + sys_corr_13: -15.01157291554252 + sys_corr_14: -2.8255735370027155 + sys_corr_15: -12.163978833083902 + sys_corr_16: -384.2619544657681 + sys_corr_17: -0.1439278870581393 + sys_corr_18: -0.019134527384502834 + sys_corr_19: 0.0018253111370977674 + sys_corr_20: 0.002974835675340927 + sys_corr_21: -0.011593881070074764 + sys_corr_22: 0.04869941879567346 + sys_corr_23: -0.0150704312718522 + sys_corr_24: -0.08632193188212087 + sys_corr_25: -0.11472784064263443 + sys_corr_26: -0.016008049227861393 + sys_corr_27: 0.0031548240906940734 + sys_corr_28: -0.03944091393488826 + sys_corr_29: 0.0033315825309693527 + sys_corr_30: -0.16546794772039938 + sys_corr_31: -0.19603288039270877 + sys_corr_32: 0.08161126080522786 + sys_corr_33: -0.07681146337355649 stat: 400.0 sys_beam: 200.0 sys_luminosity: 200.0 -- sys_corr_1: -169.7271027136386 - sys_corr_2: 1695.620741810496 - sys_corr_3: 922.6299247770112 - sys_corr_4: -114.70160705048272 - sys_corr_5: -23.638141751803243 - sys_corr_6: -104.62145709849896 - sys_corr_7: 176.45586570929584 - sys_corr_8: -161.52505503573008 - sys_corr_9: 246.03182897670354 - sys_corr_10: -699.2073391140224 - sys_corr_11: -106.95222642368735 - sys_corr_12: 108.5553578187769 - sys_corr_13: -3.192076522213327 - sys_corr_14: -16.4315751604225 - sys_corr_15: 1.7020942175967384 - sys_corr_16: 0.13604655775890478 - sys_corr_17: 0.6432655935964728 - sys_corr_18: 0.0038460190762336574 - sys_corr_19: -0.00011979067517513802 - sys_corr_20: 0.00019812214804594574 - sys_corr_21: -0.0014985622213196203 - sys_corr_22: 0.002948478342616825 - sys_corr_23: -0.04609159724684811 - sys_corr_24: 0.009436141795393801 - sys_corr_25: 0.010857599533762882 - sys_corr_26: 0.07395233429918127 - sys_corr_27: 0.019120017221016878 - sys_corr_28: 0.025051570048514132 - sys_corr_29: -0.10238453445358212 - sys_corr_30: 0.015082546341677576 - sys_corr_31: -0.012392222013041944 - sys_corr_32: -0.055371843980197455 - sys_corr_33: 0.015415679646097406 +- sys_corr_1: -169.72710271363786 + sys_corr_2: 1695.620741810498 + sys_corr_3: 922.6299247770106 + sys_corr_4: -114.7016070504826 + sys_corr_5: -23.638141751803644 + sys_corr_6: -104.62145709849894 + sys_corr_7: 176.45586570929387 + sys_corr_8: -161.52505503572834 + sys_corr_9: 246.03182897670524 + sys_corr_10: -699.2073391140215 + sys_corr_11: -106.95222642369221 + sys_corr_12: 108.55535781877316 + sys_corr_13: -3.192076522214065 + sys_corr_14: -16.431575160422422 + sys_corr_15: 1.7020942175967777 + sys_corr_16: 0.13604655775887814 + sys_corr_17: 0.6432655935964461 + sys_corr_18: 0.0038460190762376113 + sys_corr_19: -0.00011979067517468498 + sys_corr_20: 0.00019812214804628144 + sys_corr_21: -0.0014985622213203997 + sys_corr_22: 0.002948478342615188 + sys_corr_23: -0.046091597246848276 + sys_corr_24: 0.009436141795381903 + sys_corr_25: 0.010857599533762701 + sys_corr_26: 0.07395233429917779 + sys_corr_27: 0.019120017221011233 + sys_corr_28: 0.025051570048494114 + sys_corr_29: -0.10238453445357977 + sys_corr_30: 0.015082546341676818 + sys_corr_31: -0.012392222013045837 + sys_corr_32: -0.055371843980206954 + sys_corr_33: 0.015415679646107011 stat: 900.0 sys_beam: 1000.0 sys_luminosity: 1900.0 -- sys_corr_1: -785.9388900903004 - sys_corr_2: 64.1027069165794 +- sys_corr_1: -785.9388900903019 + sys_corr_2: 64.10270691657861 sys_corr_3: -1587.1798846605675 - sys_corr_4: -157.6056600650722 - sys_corr_5: 131.83155572448254 - sys_corr_6: 150.46702159195107 - sys_corr_7: -50.44303927175269 - sys_corr_8: 46.43372583238201 - sys_corr_9: -63.79158166122867 - sys_corr_10: -491.89383625420413 - sys_corr_11: 363.86601471896967 - sys_corr_12: -58.21559685769558 - sys_corr_13: 122.72990650142101 - sys_corr_14: 46.98972934192286 - sys_corr_15: 18.741360467464396 - sys_corr_16: -7.225898905328154 - sys_corr_17: 0.5732509271069351 - sys_corr_18: -0.021462984399519935 - sys_corr_19: -0.00035315777013912364 - sys_corr_20: -1.7392611957217002e-05 - sys_corr_21: 0.0009468255952668315 - sys_corr_22: 0.001525177942052283 - sys_corr_23: 0.011861733684431778 - sys_corr_24: 0.001626134699462851 - sys_corr_25: 0.004215037804218662 - sys_corr_26: -0.004927944902706523 - sys_corr_27: 0.03880160271165186 - sys_corr_28: 0.038597904464499073 - sys_corr_29: -0.019202433880529304 - sys_corr_30: -0.002069854246519964 - sys_corr_31: 0.008729177514358935 - sys_corr_32: -0.05524560508135324 - sys_corr_33: -0.0432756056542646 + sys_corr_4: -157.60566006507256 + sys_corr_5: 131.8315557244829 + sys_corr_6: 150.4670215919507 + sys_corr_7: -50.44303927175175 + sys_corr_8: 46.43372583238341 + sys_corr_9: -63.79158166122921 + sys_corr_10: -491.8938362542042 + sys_corr_11: 363.8660147189718 + sys_corr_12: -58.21559685768121 + sys_corr_13: 122.72990650142232 + sys_corr_14: 46.989729341922235 + sys_corr_15: 18.741360467464496 + sys_corr_16: -7.225898905328291 + sys_corr_17: 0.5732509271069249 + sys_corr_18: -0.02146298439952427 + sys_corr_19: -0.0003531577701391732 + sys_corr_20: -1.7392611957609497e-05 + sys_corr_21: 0.0009468255952662956 + sys_corr_22: 0.00152517794205182 + sys_corr_23: 0.011861733684442115 + sys_corr_24: 0.0016261346994657206 + sys_corr_25: 0.004215037804217813 + sys_corr_26: -0.004927944902705688 + sys_corr_27: 0.03880160271164232 + sys_corr_28: 0.038597904464484224 + sys_corr_29: -0.01920243388053101 + sys_corr_30: -0.002069854246516468 + sys_corr_31: 0.008729177514350926 + sys_corr_32: -0.055245605081351526 + sys_corr_33: -0.04327560565425 stat: 700.0 sys_beam: 1000.0 sys_luminosity: 1800.0 -- sys_corr_1: -487.5566420614927 - sys_corr_2: -42.85034855953002 - sys_corr_3: -399.1369918377913 - sys_corr_4: 905.4930951965188 - sys_corr_5: 173.89700511554636 +- sys_corr_1: -487.5566420614936 + sys_corr_2: -42.850348559530325 + sys_corr_3: -399.1369918377916 + sys_corr_4: 905.4930951965185 + sys_corr_5: 173.8970051155466 sys_corr_6: 95.96826218655993 - sys_corr_7: -39.3889117942155 - sys_corr_8: 6.935016743258646 - sys_corr_9: 13.278444859228848 - sys_corr_10: -139.38219821846633 - sys_corr_11: -449.4003266505279 - sys_corr_12: -415.4741876345963 - sys_corr_13: 175.2099455416062 - sys_corr_14: 68.0643154908087 - sys_corr_15: 22.25087405500932 - sys_corr_16: -12.839198188644692 - sys_corr_17: 0.4672442791008053 - sys_corr_18: 0.03037271744148199 - sys_corr_19: 0.00034764237885265465 - sys_corr_20: 7.736856753268114e-05 - sys_corr_21: -0.0007820826451248122 - sys_corr_22: -0.005769072633444306 - sys_corr_23: 0.002413902476936384 - sys_corr_24: -0.005293925095372523 - sys_corr_25: -0.0162186159112175 - sys_corr_26: 0.06016930657783288 - sys_corr_27: 0.02616854501689163 - sys_corr_28: 0.0003533295594547545 - sys_corr_29: 0.06470390123484536 - sys_corr_30: 0.016561886732121115 - sys_corr_31: -0.07049892336853758 - sys_corr_32: -0.06240251334822028 - sys_corr_33: -0.0037129126073822054 + sys_corr_7: -39.38891179421488 + sys_corr_8: 6.935016743259113 + sys_corr_9: 13.278444859228738 + sys_corr_10: -139.3821982184661 + sys_corr_11: -449.40032665051325 + sys_corr_12: -415.4741876346124 + sys_corr_13: 175.20994554160765 + sys_corr_14: 68.06431549080844 + sys_corr_15: 22.250874055009252 + sys_corr_16: -12.83919818864458 + sys_corr_17: 0.4672442791007765 + sys_corr_18: 0.030372717441489765 + sys_corr_19: 0.00034764237885214665 + sys_corr_20: 7.736856753305078e-05 + sys_corr_21: -0.000782082645125014 + sys_corr_22: -0.005769072633441289 + sys_corr_23: 0.002413902476935196 + sys_corr_24: -0.005293925095374795 + sys_corr_25: -0.01621861591121672 + sys_corr_26: 0.06016930657782527 + sys_corr_27: 0.026168545016893724 + sys_corr_28: 0.00035332955943481476 + sys_corr_29: 0.0647039012348534 + sys_corr_30: 0.016561886732121608 + sys_corr_31: -0.0704989233685572 + sys_corr_32: -0.062402513348226475 + sys_corr_33: -0.0037129126073784627 stat: 700.0 sys_beam: 900.0 sys_luminosity: 1600.0 -- sys_corr_1: 725.5903980378123 - sys_corr_2: 674.1142052359095 - sys_corr_3: 313.4170975630907 - sys_corr_4: 158.21765674195936 - sys_corr_5: -890.7824338260255 - sys_corr_6: 117.79266613944557 - sys_corr_7: -5.098346380044857 - sys_corr_8: -7.0797233824425865 - sys_corr_9: 22.141846133643796 - sys_corr_10: -0.38085835413124214 - sys_corr_11: 262.65969969263824 - sys_corr_12: -473.17486782061377 - sys_corr_13: -182.93590246368268 - sys_corr_14: -106.29544453845942 - sys_corr_15: 15.430470857099634 - sys_corr_16: 1.8629518449619975 - sys_corr_17: 0.2909265822636516 - sys_corr_18: 0.16812887875549018 - sys_corr_19: -2.342448928878782e-05 - sys_corr_20: 0.0003056380741288143 - sys_corr_21: 0.0018100186240536744 - sys_corr_22: 0.0010914750324510058 - sys_corr_23: 0.007331286561958799 - sys_corr_24: -0.015092748776593216 - sys_corr_25: -0.0013976210598957023 - sys_corr_26: -0.0472584587699256 - sys_corr_27: 0.026023882548643573 - sys_corr_28: -0.029231585241469637 - sys_corr_29: 0.03355601867928706 - sys_corr_30: -0.018473337768598556 - sys_corr_31: 0.0014583921485307814 - sys_corr_32: 0.037699246786491905 - sys_corr_33: -0.02835194288649323 +- sys_corr_1: 725.5903980378135 + sys_corr_2: 674.1142052359097 + sys_corr_3: 313.41709756309024 + sys_corr_4: 158.2176567419597 + sys_corr_5: -890.7824338260235 + sys_corr_6: 117.79266613944671 + sys_corr_7: -5.098346380045623 + sys_corr_8: -7.079723382442154 + sys_corr_9: 22.141846133643362 + sys_corr_10: -0.3808583541323047 + sys_corr_11: 262.6596996926576 + sys_corr_12: -473.17486782060524 + sys_corr_13: -182.93590246367955 + sys_corr_14: -106.29544453845948 + sys_corr_15: 15.430470857099829 + sys_corr_16: 1.8629518449620301 + sys_corr_17: 0.2909265822636571 + sys_corr_18: 0.1681288787554962 + sys_corr_19: -2.3424489289203566e-05 + sys_corr_20: 0.0003056380741288857 + sys_corr_21: 0.0018100186240553968 + sys_corr_22: 0.0010914750324549903 + sys_corr_23: 0.007331286561970521 + sys_corr_24: -0.015092748776591135 + sys_corr_25: -0.0013976210598954399 + sys_corr_26: -0.04725845876992478 + sys_corr_27: 0.026023882548644694 + sys_corr_28: -0.029231585241470754 + sys_corr_29: 0.03355601867927536 + sys_corr_30: -0.01847333776859319 + sys_corr_31: 0.0014583921485359173 + sys_corr_32: 0.03769924678648697 + sys_corr_33: -0.02835194288649977 stat: 700.0 sys_beam: 800.0 sys_luminosity: 1500.0 -- sys_corr_1: -758.1798133409609 - sys_corr_2: -261.1823656852525 - sys_corr_3: -527.223630598359 - sys_corr_4: 174.84396662859567 - sys_corr_5: -177.36628414604132 - sys_corr_6: -837.8081595822232 - sys_corr_7: -138.5014661035454 - sys_corr_8: 66.69263216257637 - sys_corr_9: -42.59250149666709 - sys_corr_10: -122.87358571625316 - sys_corr_11: -111.06379545992978 - sys_corr_12: 15.466935956002406 - sys_corr_13: -444.3253250738043 - sys_corr_14: 156.41225205949436 - sys_corr_15: -3.0084325433815766 - sys_corr_16: 3.8324441242876097 - sys_corr_17: 0.31263630253337954 - sys_corr_18: 0.18021986252231495 - sys_corr_19: 0.0003782102293855456 - sys_corr_20: -5.3359509854939343e-05 - sys_corr_21: 0.002000780693370736 - sys_corr_22: 0.0037514166819015726 - sys_corr_23: 0.010808127867571194 - sys_corr_24: -0.006723009037407357 - sys_corr_25: -0.021392515650419316 - sys_corr_26: 0.016850590392518437 - sys_corr_27: -0.03237234334803726 - sys_corr_28: -0.04935692375712243 - sys_corr_29: -0.018981587345030897 - sys_corr_30: -0.03767798406516821 - sys_corr_31: -0.051572802034795744 - sys_corr_32: 0.03183112541267519 - sys_corr_33: 0.036976375504555285 +- sys_corr_1: -758.1798133409618 + sys_corr_2: -261.182365685253 + sys_corr_3: -527.2236305983593 + sys_corr_4: 174.8439666285955 + sys_corr_5: -177.3662841460436 + sys_corr_6: -837.8081595822224 + sys_corr_7: -138.501466103545 + sys_corr_8: 66.69263216257815 + sys_corr_9: -42.59250149666806 + sys_corr_10: -122.87358571625315 + sys_corr_11: -111.06379545992968 + sys_corr_12: 15.46693595599618 + sys_corr_13: -444.32532507380427 + sys_corr_14: 156.4122520594954 + sys_corr_15: -3.0084325433826606 + sys_corr_16: 3.83244412428771 + sys_corr_17: 0.31263630253339425 + sys_corr_18: 0.1802198625223089 + sys_corr_19: 0.0003782102293857104 + sys_corr_20: -5.3359509855555834e-05 + sys_corr_21: 0.002000780693370387 + sys_corr_22: 0.0037514166819011766 + sys_corr_23: 0.01080812786756856 + sys_corr_24: -0.0067230090374034955 + sys_corr_25: -0.0213925156504139 + sys_corr_26: 0.01685059039251904 + sys_corr_27: -0.032372343348025426 + sys_corr_28: -0.04935692375711563 + sys_corr_29: -0.01898158734504721 + sys_corr_30: -0.03767798406517066 + sys_corr_31: -0.05157280203479819 + sys_corr_32: 0.03183112541266892 + sys_corr_33: 0.036976375504542976 stat: 600.0 sys_beam: 700.0 sys_luminosity: 1400.0 -- sys_corr_1: -932.6502014909852 - sys_corr_2: -444.40058864059154 +- sys_corr_1: -932.6502014909869 + sys_corr_2: -444.4005886405916 sys_corr_3: -614.1380061286845 - sys_corr_4: 131.0228683014293 - sys_corr_5: -72.57197028127071 - sys_corr_6: -21.501091829396703 - sys_corr_7: 102.26507466489899 - sys_corr_8: -169.08267855711648 - sys_corr_9: 798.7202483880523 - sys_corr_10: 129.91093924380985 - sys_corr_11: -38.0077218044285 - sys_corr_12: 45.486278830162206 - sys_corr_13: -60.107451322867554 - sys_corr_14: -280.05517738256793 - sys_corr_15: 56.33331797815776 - sys_corr_16: -1.1671578630489345 - sys_corr_17: 0.19488848045452334 - sys_corr_18: 0.1265316707683699 - sys_corr_19: -0.00027951148728276587 - sys_corr_20: 0.0002988588455627578 - sys_corr_21: -0.002377810315071191 - sys_corr_22: 0.0013423620174318105 - sys_corr_23: -0.004404106214028996 - sys_corr_24: -0.0042754785684174165 - sys_corr_25: 0.017711935602926738 - sys_corr_26: -0.024446137141600138 - sys_corr_27: -0.01219593907564541 - sys_corr_28: -0.058239418758355865 - sys_corr_29: 0.014340068816684466 - sys_corr_30: -0.008587811147066802 - sys_corr_31: 0.012902487606023704 - sys_corr_32: 0.03469714922786307 - sys_corr_33: 0.037250891623105006 + sys_corr_4: 131.02286830142927 + sys_corr_5: -72.57197028127092 + sys_corr_6: -21.501091829397154 + sys_corr_7: 102.26507466489535 + sys_corr_8: -169.0826785571101 + sys_corr_9: 798.7202483880533 + sys_corr_10: 129.91093924380942 + sys_corr_11: -38.00772180443008 + sys_corr_12: 45.486278830160884 + sys_corr_13: -60.10745132286854 + sys_corr_14: -280.05517738256725 + sys_corr_15: 56.333317978158426 + sys_corr_16: -1.1671578630490325 + sys_corr_17: 0.194888480454483 + sys_corr_18: 0.12653167076835922 + sys_corr_19: -0.00027951148728316984 + sys_corr_20: 0.0002988588455627341 + sys_corr_21: -0.0023778103150700145 + sys_corr_22: 0.0013423620174323222 + sys_corr_23: -0.004404106214015386 + sys_corr_24: -0.004275478568417685 + sys_corr_25: 0.01771193560292471 + sys_corr_26: -0.024446137141605616 + sys_corr_27: -0.012195939075642767 + sys_corr_28: -0.05823941875834722 + sys_corr_29: 0.01434006881668178 + sys_corr_30: -0.008587811147067411 + sys_corr_31: 0.012902487606038597 + sys_corr_32: 0.03469714922785824 + sys_corr_33: 0.03725089162309449 stat: 600.0 sys_beam: 600.0 sys_luminosity: 1200.0 -- sys_corr_1: -396.8000721375114 - sys_corr_2: -53.516583543066055 - sys_corr_3: -331.45585111174364 - sys_corr_4: 157.70625251295735 - sys_corr_5: -125.17387665020507 - sys_corr_6: -123.01278513050893 - sys_corr_7: 599.5143389945957 - sys_corr_8: -784.3730567738431 - sys_corr_9: -297.93141905886864 - sys_corr_10: 77.12695782982033 - sys_corr_11: -0.18887544665811482 - sys_corr_12: -7.916586562810875 - sys_corr_13: 2.3162700094486874 - sys_corr_14: -37.188667884037535 - sys_corr_15: -207.8504538556462 - sys_corr_16: 11.296617925420051 - sys_corr_17: 0.13205229496737558 - sys_corr_18: 0.10229739733727478 - sys_corr_19: 0.0002734327577673722 - sys_corr_20: 0.0005654626102172385 - sys_corr_21: -0.001798648722034437 - sys_corr_22: 0.004752701240114667 - sys_corr_23: 0.0007255705247019528 - sys_corr_24: -0.015503150941420242 - sys_corr_25: -0.023114142944216164 - sys_corr_26: -0.014361186547394924 - sys_corr_27: -0.003795445403383109 - sys_corr_28: -0.11305009889796196 - sys_corr_29: 0.013517615134364181 - sys_corr_30: -0.03340450560303659 - sys_corr_31: -0.1163811640520996 - sys_corr_32: 0.07161470115147368 - sys_corr_33: -0.022700279972537252 +- sys_corr_1: -396.8000721375124 + sys_corr_2: -53.51658354306625 + sys_corr_3: -331.4558511117436 + sys_corr_4: 157.70625251295743 + sys_corr_5: -125.17387665020541 + sys_corr_6: -123.01278513050946 + sys_corr_7: 599.5143389945843 + sys_corr_8: -784.3730567738521 + sys_corr_9: -297.931419058863 + sys_corr_10: 77.12695782982071 + sys_corr_11: -0.18887544665769102 + sys_corr_12: -7.916586562810996 + sys_corr_13: 2.316270009449108 + sys_corr_14: -37.18866788403798 + sys_corr_15: -207.85045385564615 + sys_corr_16: 11.296617925420305 + sys_corr_17: 0.13205229496737506 + sys_corr_18: 0.10229739733726523 + sys_corr_19: 0.000273432757767366 + sys_corr_20: 0.0005654626102175798 + sys_corr_21: -0.0017986487220349099 + sys_corr_22: 0.0047527012401154325 + sys_corr_23: 0.0007255705247030492 + sys_corr_24: -0.01550315094142333 + sys_corr_25: -0.02311414294421352 + sys_corr_26: -0.014361186547398423 + sys_corr_27: -0.0037954454033624105 + sys_corr_28: -0.1130500988979579 + sys_corr_29: 0.013517615134348267 + sys_corr_30: -0.033404505603036726 + sys_corr_31: -0.1163811640521026 + sys_corr_32: 0.0716147011514738 + sys_corr_33: -0.022700279972572655 stat: 700.0 sys_beam: 900.0 sys_luminosity: 1600.0 -- sys_corr_1: -118.04039108905667 - sys_corr_2: 44.89255154510427 - sys_corr_3: -114.07686731035001 - sys_corr_4: 88.72082538814065 - sys_corr_5: -73.01875251111045 - sys_corr_6: -113.43459009004276 - sys_corr_7: 948.493540541292 - sys_corr_8: 695.5046935340748 - sys_corr_9: 0.7178292123375898 - sys_corr_10: 34.135900985543195 - sys_corr_11: -0.7243064790252441 - sys_corr_12: -3.9353206661920943 - sys_corr_13: 11.332993147701384 - sys_corr_14: 4.871279725857487 - sys_corr_15: 4.3612825182958606 - sys_corr_16: 15.725011826023824 - sys_corr_17: 0.12400263943951788 - sys_corr_18: 0.05713029250382234 - sys_corr_19: 0.0005777315326645402 - sys_corr_20: 0.001436770291158519 - sys_corr_21: -0.004904587524082753 - sys_corr_22: 0.018524381155859224 - sys_corr_23: -0.0016141267190406304 - sys_corr_24: -0.031165855430218763 - sys_corr_25: -0.05681395516433058 - sys_corr_26: 0.0069273730763234915 - sys_corr_27: 0.008883483901872276 - sys_corr_28: -0.023050380820495174 - sys_corr_29: 0.009608860268989326 - sys_corr_30: -0.0863351653593671 - sys_corr_31: -0.08323499885856817 - sys_corr_32: 0.02010964580188238 - sys_corr_33: -0.02714092597288546 +- sys_corr_1: -118.04039108905685 + sys_corr_2: 44.89255154510424 + sys_corr_3: -114.07686731035 + sys_corr_4: 88.72082538814078 + sys_corr_5: -73.01875251111075 + sys_corr_6: -113.4345900900432 + sys_corr_7: 948.4935405412984 + sys_corr_8: 695.5046935340648 + sys_corr_9: 0.7178292123331454 + sys_corr_10: 34.13590098554409 + sys_corr_11: -0.7243064790247403 + sys_corr_12: -3.9353206661922835 + sys_corr_13: 11.332993147701298 + sys_corr_14: 4.871279725857381 + sys_corr_15: 4.36128251829597 + sys_corr_16: 15.72501182602384 + sys_corr_17: 0.12400263943951592 + sys_corr_18: 0.05713029250382443 + sys_corr_19: 0.0005777315326635869 + sys_corr_20: 0.001436770291158338 + sys_corr_21: -0.004904587524082127 + sys_corr_22: 0.018524381155862454 + sys_corr_23: -0.0016141267190325685 + sys_corr_24: -0.03116585543022407 + sys_corr_25: -0.05681395516432056 + sys_corr_26: 0.006927373076319159 + sys_corr_27: 0.008883483901875471 + sys_corr_28: -0.02305038082050592 + sys_corr_29: 0.00960886026895908 + sys_corr_30: -0.08633516535935533 + sys_corr_31: -0.08323499885858136 + sys_corr_32: 0.020109645801892756 + sys_corr_33: -0.027140925972899844 stat: 800.0 sys_beam: 400.0 sys_luminosity: 700.0 diff --git a/nnpdf_data/nnpdf_data/new_commondata/LHCB_DY_8TEV_MUON/uncertainties.yaml b/nnpdf_data/nnpdf_data/new_commondata/LHCB_DY_8TEV_MUON/uncertainties.yaml index c9d3555ab0..37d1ad3e65 100644 --- a/nnpdf_data/nnpdf_data/new_commondata/LHCB_DY_8TEV_MUON/uncertainties.yaml +++ b/nnpdf_data/nnpdf_data/new_commondata/LHCB_DY_8TEV_MUON/uncertainties.yaml @@ -149,1260 +149,1260 @@ definitions: type: LHCBLUMI8TEV bins: - sys_corr_1: -13.129371357446566 - sys_corr_2: 0.6853465481125789 - sys_corr_3: -1.8136153124139376 - sys_corr_4: -1.6378919565265173 - sys_corr_5: 1.0056447881503754 - sys_corr_6: 0.9250488794408771 - sys_corr_7: -0.6130610634103019 - sys_corr_8: -1.033777871097276 - sys_corr_9: 0.9022978319043655 - sys_corr_10: 0.5049756150293241 - sys_corr_11: -0.8765726686084679 - sys_corr_12: 0.5378206330642871 - sys_corr_13: -0.10895523093285057 - sys_corr_14: -0.4881555518108563 - sys_corr_15: -0.265568053839214 - sys_corr_16: 0.03401879609850996 - sys_corr_17: -11.515944076984733 - sys_corr_18: -9.94493656819381e-05 - sys_corr_19: -0.007574441556960995 - sys_corr_20: 0.0036078709274008384 - sys_corr_21: 0.054497988233331206 - sys_corr_22: -0.08061168467584123 - sys_corr_23: 0.2232461165909764 - sys_corr_24: 5.565016708385234 - sys_corr_25: 0.2609714050586262 - sys_corr_26: -39.974071914597864 - sys_corr_27: -27.943155261002897 - sys_corr_28: -16.32894214901613 - sys_corr_29: -4.436995222440807 - sys_corr_30: -0.8115865284675327 - sys_corr_31: -0.3755659425689436 - sys_corr_32: 1.9696013567201123 - sys_corr_33: -2.6324056596660883 - sys_corr_34: -0.1664720974747847 + sys_corr_2: 0.6853465481127958 + sys_corr_3: -1.8136153124140044 + sys_corr_4: -1.6378919565260077 + sys_corr_5: 1.0056447881502208 + sys_corr_6: 0.9250488794404468 + sys_corr_7: -0.6130610634103546 + sys_corr_8: -1.0337778710980714 + sys_corr_9: 0.9022978319046373 + sys_corr_10: 0.5049756150293242 + sys_corr_11: -0.8765726686085896 + sys_corr_12: 0.5378206330645783 + sys_corr_13: -0.10895523093283618 + sys_corr_14: -0.48815555181063336 + sys_corr_15: -0.26556805383949933 + sys_corr_16: 0.03401879609859952 + sys_corr_17: -11.515944076989122 + sys_corr_18: -9.944936568212495e-05 + sys_corr_19: -0.007574441556954944 + sys_corr_20: 0.0036078709273934776 + sys_corr_21: 0.05449798823331223 + sys_corr_22: -0.08061168467580225 + sys_corr_23: 0.2232461165908627 + sys_corr_24: 5.565016708385976 + sys_corr_25: 0.2609714050579445 + sys_corr_26: -39.97407191458968 + sys_corr_27: -27.943155261017633 + sys_corr_28: -16.32894214901788 + sys_corr_29: -4.436995222441291 + sys_corr_30: -0.8115865284667331 + sys_corr_31: -0.37556594257327414 + sys_corr_32: 1.9696013567173964 + sys_corr_33: -2.632405659665658 + sys_corr_34: -0.16647209735490842 stat: 33.0 sys_beam: 14.0 sys_luminosity: 14.0 -- sys_corr_1: -19.84410989915685 - sys_corr_2: -0.33428052767614547 - sys_corr_3: 2.6709227371602084 - sys_corr_4: -1.122291532865575 - sys_corr_5: 2.2445396406954448 - sys_corr_6: 1.2318412040028195 - sys_corr_7: -0.9643207591596343 - sys_corr_8: -2.2908607279681825 - sys_corr_9: 1.134280089906541 - sys_corr_10: -0.8548057471102127 - sys_corr_11: -1.796249557177666 - sys_corr_12: -0.07911083910570488 - sys_corr_13: -0.472951502025977 - sys_corr_14: 0.2558186095238292 - sys_corr_15: -0.3882769649810862 - sys_corr_16: -0.06521893670249582 - sys_corr_17: -20.03065356651147 - sys_corr_18: -5.938906840067905e-05 - sys_corr_19: -0.005317597654044067 - sys_corr_20: -0.012280961378499562 - sys_corr_21: 0.04723338963268214 - sys_corr_22: 0.08725074045417443 - sys_corr_23: -0.2200826518235283 - sys_corr_24: 10.334303066975695 - sys_corr_25: -1.8910305617977035 - sys_corr_26: 31.412187227642292 - sys_corr_27: -31.612351485478605 - sys_corr_28: -24.0763415362685 - sys_corr_29: -7.556695045723271 - sys_corr_30: 1.0636142561345379 - sys_corr_31: 1.678562392078886 - sys_corr_32: 3.831782907879968 - sys_corr_33: -4.904694970016218 - sys_corr_34: -1.4462770772783355 +- sys_corr_1: -19.84410989915686 + sys_corr_2: -0.33428052767624017 + sys_corr_3: 2.670922737160205 + sys_corr_4: -1.1222915328655707 + sys_corr_5: 2.2445396406956237 + sys_corr_6: 1.2318412040026738 + sys_corr_7: -0.9643207591596933 + sys_corr_8: -2.290860727968255 + sys_corr_9: 1.1342800899064787 + sys_corr_10: -0.8548057471102758 + sys_corr_11: -1.7962495571776689 + sys_corr_12: -0.07911083910584618 + sys_corr_13: -0.4729515020260823 + sys_corr_14: 0.2558186095239544 + sys_corr_15: -0.3882769649812642 + sys_corr_16: -0.0652189367024966 + sys_corr_17: -20.03065356651135 + sys_corr_18: -5.9389068400393175e-05 + sys_corr_19: -0.005317597654028506 + sys_corr_20: -0.012280961378434697 + sys_corr_21: 0.04723338963266031 + sys_corr_22: 0.08725074045398798 + sys_corr_23: -0.22008265182366893 + sys_corr_24: 10.334303066977842 + sys_corr_25: -1.8910305617960286 + sys_corr_26: 31.412187227654297 + sys_corr_27: -31.612351485476285 + sys_corr_28: -24.076341536265016 + sys_corr_29: -7.556695045725688 + sys_corr_30: 1.0636142561363102 + sys_corr_31: 1.6785623920713753 + sys_corr_32: 3.8317829078782055 + sys_corr_33: -4.904694970048211 + sys_corr_34: -1.4462770770535842 stat: 51.0 sys_beam: 38.0 sys_luminosity: 38.0 - sys_corr_1: -21.06803631144305 - sys_corr_2: -2.8187263609581716 - sys_corr_3: 7.429751053129648 - sys_corr_4: -1.2363854092311348 - sys_corr_5: 0.440020299276015 - sys_corr_6: 0.8285805636548081 - sys_corr_7: -0.1833307684413444 - sys_corr_8: -1.8866832461202852 - sys_corr_9: 1.0748601041255013 - sys_corr_10: -0.9841457536126791 - sys_corr_11: -2.2265738633784835 - sys_corr_12: -0.5655169182098072 - sys_corr_13: -0.4881568704060051 - sys_corr_14: -0.782035779352363 - sys_corr_15: -0.05919509595153284 - sys_corr_16: -1.1097250976141622 - sys_corr_17: -24.699858197476445 - sys_corr_18: -3.105265932964177e-05 - sys_corr_19: 0.0027633726426610577 - sys_corr_20: -0.01714976905989588 - sys_corr_21: 0.03260600131367636 - sys_corr_22: -0.02846572509875826 - sys_corr_23: -0.1467691264227021 - sys_corr_24: 12.565805182397174 - sys_corr_25: 0.625615759576152 - sys_corr_26: -3.5879461032450957 - sys_corr_27: 31.925361874882043 - sys_corr_28: -40.75747797840909 - sys_corr_29: -8.403699350561684 - sys_corr_30: -2.1525840708834774 - sys_corr_31: 1.1118986638848498 - sys_corr_32: 3.4014199295399585 - sys_corr_33: -4.750919333226475 - sys_corr_34: -1.0948035576743735 + sys_corr_2: -2.8187263609581037 + sys_corr_3: 7.429751053129757 + sys_corr_4: -1.236385409231223 + sys_corr_5: 0.4400202992760449 + sys_corr_6: 0.8285805636546832 + sys_corr_7: -0.18333076844149918 + sys_corr_8: -1.8866832461204062 + sys_corr_9: 1.0748601041254102 + sys_corr_10: -0.9841457536126821 + sys_corr_11: -2.2265738633786056 + sys_corr_12: -0.5655169182096085 + sys_corr_13: -0.4881568704060237 + sys_corr_14: -0.7820357793522866 + sys_corr_15: -0.0591950959516241 + sys_corr_16: -1.1097250976141682 + sys_corr_17: -24.699858197477425 + sys_corr_18: -3.105265933150413e-05 + sys_corr_19: 0.0027633726426110903 + sys_corr_20: -0.01714976905984696 + sys_corr_21: 0.03260600131360796 + sys_corr_22: -0.02846572509880877 + sys_corr_23: -0.14676912642260082 + sys_corr_24: 12.565805182401665 + sys_corr_25: 0.6256157595772878 + sys_corr_26: -3.587946103250402 + sys_corr_27: 31.925361874872813 + sys_corr_28: -40.75747797841242 + sys_corr_29: -8.403699350568834 + sys_corr_30: -2.1525840708785995 + sys_corr_31: 1.1118986638849773 + sys_corr_32: 3.4014199295339713 + sys_corr_33: -4.750919333246441 + sys_corr_34: -1.0948035574690989 stat: 62.0 sys_beam: 57.0 sys_luminosity: 58.0 -- sys_corr_1: -23.338793935211896 - sys_corr_2: -5.015020292076225 - sys_corr_3: 8.195207361706466 - sys_corr_4: -3.6167946329492535 - sys_corr_5: -1.5375896951455132 - sys_corr_6: -0.5055645332316372 - sys_corr_7: -0.1656605444022098 - sys_corr_8: -1.3674236995197913 - sys_corr_9: 0.9863174769320691 - sys_corr_10: -0.11689147629752011 - sys_corr_11: -2.76279796378281 - sys_corr_12: -0.7334770006813159 - sys_corr_13: -0.39710202721088006 - sys_corr_14: -0.9513343420516247 - sys_corr_15: -0.5236614050232143 - sys_corr_16: 0.14328103033362025 - sys_corr_17: -33.108074461181786 - sys_corr_18: -1.1676986084828315e-05 - sys_corr_19: -0.005199428393585041 - sys_corr_20: 0.0030204570342489963 - sys_corr_21: 0.04012076569205404 - sys_corr_22: 0.003803307862097004 - sys_corr_23: 0.13823101139063843 - sys_corr_24: 20.18490057862894 - sys_corr_25: 0.783534475773199 - sys_corr_26: -1.5428612589110309 - sys_corr_27: 2.9113392297877394 - sys_corr_28: 19.877343744892453 - sys_corr_29: -18.817522495155952 - sys_corr_30: 5.171011463669989 - sys_corr_31: 3.266548144634222 - sys_corr_32: 45.33543603498649 - sys_corr_33: -6.762197324713448 - sys_corr_34: -10.777895659545207 +- sys_corr_1: -23.3387939352119 + sys_corr_2: -5.015020292076104 + sys_corr_3: 8.195207361706753 + sys_corr_4: -3.6167946329495297 + sys_corr_5: -1.5375896951453918 + sys_corr_6: -0.5055645332316405 + sys_corr_7: -0.16566054440242206 + sys_corr_8: -1.3674236995198723 + sys_corr_9: 0.9863174769321807 + sys_corr_10: -0.1168914762976303 + sys_corr_11: -2.7627979637828908 + sys_corr_12: -0.7334770006814376 + sys_corr_13: -0.3971020272104272 + sys_corr_14: -0.95133434205179 + sys_corr_15: -0.5236614050232826 + sys_corr_16: 0.14328103033375855 + sys_corr_17: -33.10807446118345 + sys_corr_18: -1.1676986085192038e-05 + sys_corr_19: -0.005199428393547465 + sys_corr_20: 0.0030204570342204614 + sys_corr_21: 0.04012076569198424 + sys_corr_22: 0.0038033078620872446 + sys_corr_23: 0.13823101139046734 + sys_corr_24: 20.184900578635258 + sys_corr_25: 0.7835344757729851 + sys_corr_26: -1.5428612589179613 + sys_corr_27: 2.9113392297959284 + sys_corr_28: 19.877343744885955 + sys_corr_29: -18.81752249516219 + sys_corr_30: 5.17101146368958 + sys_corr_31: 3.2665481446177567 + sys_corr_32: 45.33543603498056 + sys_corr_33: -6.7621973249488265 + sys_corr_34: -10.777895659172056 stat: 70.0 sys_beam: 77.0 sys_luminosity: 78.0 - sys_corr_1: -23.62879238801978 - sys_corr_2: -6.871934369335336 - sys_corr_3: 8.838236802397901 - sys_corr_4: -5.75372720918565 - sys_corr_5: -1.5402984336354577 - sys_corr_6: -0.3451192706498088 - sys_corr_7: 0.413105816684792 - sys_corr_8: 0.5073510714926635 - sys_corr_9: 1.5788941118756248 - sys_corr_10: 0.7607246969863836 - sys_corr_11: -2.673007365634146 - sys_corr_12: -1.2417474817490068 - sys_corr_13: -0.7432869137172015 - sys_corr_14: -0.598997451623972 - sys_corr_15: -0.06637383592033852 - sys_corr_16: 0.741162658809314 - sys_corr_17: -36.499510974556024 - sys_corr_18: 5.846611289286119e-06 - sys_corr_19: -0.0001752413952545087 - sys_corr_20: -0.008085268741514851 - sys_corr_21: 0.05044391052283411 - sys_corr_22: -0.15328563391070796 - sys_corr_23: 0.49110134937679384 - sys_corr_24: 17.63914440713869 - sys_corr_25: 1.5555770256950772 - sys_corr_26: -0.29419626869461024 - sys_corr_27: 1.4513100444746851 - sys_corr_28: 12.997331532175536 - sys_corr_29: -22.22192546156861 - sys_corr_30: 7.42411526077336 - sys_corr_31: -10.124571665104387 - sys_corr_32: -22.849337902782768 - sys_corr_33: -10.788104366418192 - sys_corr_34: 40.447688777367155 + sys_corr_2: -6.87193436933576 + sys_corr_3: 8.83823680239778 + sys_corr_4: -5.7537272091857865 + sys_corr_5: -1.5402984336350092 + sys_corr_6: -0.34511927064998793 + sys_corr_7: 0.41310581668467056 + sys_corr_8: 0.5073510714925774 + sys_corr_9: 1.5788941118756097 + sys_corr_10: 0.7607246969862658 + sys_corr_11: -2.673007365634023 + sys_corr_12: -1.2417474817491765 + sys_corr_13: -0.7432869137170354 + sys_corr_14: -0.5989974516236286 + sys_corr_15: -0.06637383592029723 + sys_corr_16: 0.7411626588091698 + sys_corr_17: -36.49951097455011 + sys_corr_18: 5.846611291372814e-06 + sys_corr_19: -0.00017524139523300978 + sys_corr_20: -0.00808526874152184 + sys_corr_21: 0.05044391052297366 + sys_corr_22: -0.15328563391067396 + sys_corr_23: 0.49110134937745753 + sys_corr_24: 17.639144407135866 + sys_corr_25: 1.555577025693582 + sys_corr_26: -0.2941962686942436 + sys_corr_27: 1.4513100444743 + sys_corr_28: 12.997331532179793 + sys_corr_29: -22.221925461567245 + sys_corr_30: 7.42411526075697 + sys_corr_31: -10.124571665101879 + sys_corr_32: -22.849337902785333 + sys_corr_33: -10.788104365353474 + sys_corr_34: 40.44768877782353 stat: 76.0 sys_beam: 93.0 sys_luminosity: 94.0 - sys_corr_1: -23.305638822180896 - sys_corr_2: -7.8937366993396365 - sys_corr_3: 9.253795984805592 - sys_corr_4: -7.241905559104537 + sys_corr_2: -7.893736699339743 + sys_corr_3: 9.253795984805567 + sys_corr_4: -7.241905559104666 sys_corr_5: -1.9123722247234651 - sys_corr_6: 0.5912138549587218 - sys_corr_7: 0.0465224938402271 - sys_corr_8: 0.7199048005800637 - sys_corr_9: 1.828692488405049 - sys_corr_10: 2.1832257020458705 - sys_corr_11: -2.015036523294676 - sys_corr_12: -1.8353749829104327 - sys_corr_13: 0.0015187347231060773 - sys_corr_14: -0.48209896219515624 - sys_corr_15: 1.213798569671312 - sys_corr_16: 1.1211154805244627 - sys_corr_17: -36.92425033443672 - sys_corr_18: 1.4188601727116922e-05 - sys_corr_19: -0.008850403418020465 - sys_corr_20: -0.02487825307330309 - sys_corr_21: 0.09023808536309276 - sys_corr_22: -0.21273521070752027 - sys_corr_23: 0.568346566723835 - sys_corr_24: 9.560426327356453 - sys_corr_25: 1.6835388239353692 - sys_corr_26: -0.6834505876496619 - sys_corr_27: 0.6825047572018638 - sys_corr_28: 7.890847045554724 - sys_corr_29: -14.45530599394527 - sys_corr_30: 10.42790997030499 - sys_corr_31: -2.6562075756183785 - sys_corr_32: -29.80150469584712 - sys_corr_33: 18.833535008874055 - sys_corr_34: -40.257082690578 + sys_corr_6: 0.5912138549585202 + sys_corr_7: 0.046522493839806764 + sys_corr_8: 0.7199048005799586 + sys_corr_9: 1.828692488405099 + sys_corr_10: 2.1832257020459434 + sys_corr_11: -2.0150365232945977 + sys_corr_12: -1.8353749829105612 + sys_corr_13: 0.001518734723146232 + sys_corr_14: -0.4820989621950967 + sys_corr_15: 1.213798569671235 + sys_corr_16: 1.121115480524444 + sys_corr_17: -36.92425033443776 + sys_corr_18: 1.4188601726670624e-05 + sys_corr_19: -0.008850403418067134 + sys_corr_20: -0.024878253073439608 + sys_corr_21: 0.09023808536291997 + sys_corr_22: -0.21273521070741153 + sys_corr_23: 0.5683465667238542 + sys_corr_24: 9.560426327355785 + sys_corr_25: 1.6835388239352824 + sys_corr_26: -0.6834505876518351 + sys_corr_27: 0.6825047572020109 + sys_corr_28: 7.890847045559323 + sys_corr_29: -14.455305993927523 + sys_corr_30: 10.42790997028791 + sys_corr_31: -2.6562075756908268 + sys_corr_32: -29.801504695845157 + sys_corr_33: 18.833535007792904 + sys_corr_34: -40.25708269143495 stat: 79.0 sys_beam: 103.0 sys_luminosity: 105.0 -- sys_corr_1: -23.122870553655478 - sys_corr_2: -8.472992295351233 - sys_corr_3: 9.978884071326496 - sys_corr_4: -8.191892596977262 - sys_corr_5: -2.170985058688932 - sys_corr_6: 1.1927202283582423 - sys_corr_7: 1.027768527951832 - sys_corr_8: 1.3222563308413176 - sys_corr_9: 0.3390668514570481 - sys_corr_10: 2.5599804325753284 - sys_corr_11: -1.6074832724593935 - sys_corr_12: -1.6149874429471374 - sys_corr_13: -0.18163026461144396 - sys_corr_14: -1.317510032846632 - sys_corr_15: 1.2937203505127906 - sys_corr_16: 0.4372359769181125 - sys_corr_17: -39.002034940744274 - sys_corr_18: 1.5486962831135256e-05 - sys_corr_19: -0.006718922393629441 - sys_corr_20: -0.018187853006976003 - sys_corr_21: 0.059586532298960715 - sys_corr_22: -0.29423833975817293 - sys_corr_23: 0.8058671737702604 - sys_corr_24: 7.740143059284684 - sys_corr_25: 2.274379055527933 - sys_corr_26: -0.94388224336938 - sys_corr_27: 0.23546915242985275 - sys_corr_28: 4.67316228570499 - sys_corr_29: 31.63416661772606 - sys_corr_30: 4.348764566808575 - sys_corr_31: 47.20725640418786 - sys_corr_32: -6.675227803548107 - sys_corr_33: -7.705400923277242 - sys_corr_34: 4.070133302521287 +- sys_corr_1: -23.122870553655485 + sys_corr_2: -8.47299229535122 + sys_corr_3: 9.978884071326535 + sys_corr_4: -8.191892596977446 + sys_corr_5: -2.170985058688854 + sys_corr_6: 1.1927202283582248 + sys_corr_7: 1.027768527951745 + sys_corr_8: 1.3222563308413293 + sys_corr_9: 0.33906685145682963 + sys_corr_10: 2.5599804325752222 + sys_corr_11: -1.6074832724595463 + sys_corr_12: -1.6149874429471522 + sys_corr_13: -0.1816302646114862 + sys_corr_14: -1.3175100328466482 + sys_corr_15: 1.2937203505127026 + sys_corr_16: 0.43723597691800703 + sys_corr_17: -39.00203494074587 + sys_corr_18: 1.5486962829685152e-05 + sys_corr_19: -0.006718922393631411 + sys_corr_20: -0.01818785300696696 + sys_corr_21: 0.05958653229899917 + sys_corr_22: -0.29423833975824465 + sys_corr_23: 0.8058671737702581 + sys_corr_24: 7.740143059282549 + sys_corr_25: 2.2743790555258894 + sys_corr_26: -0.9438822433707657 + sys_corr_27: 0.23546915242928015 + sys_corr_28: 4.6731622857077495 + sys_corr_29: 31.634166617711443 + sys_corr_30: 4.348764566820343 + sys_corr_31: 47.20725640422164 + sys_corr_32: -6.675227803551185 + sys_corr_33: -7.705400923214566 + sys_corr_34: 4.070133302804576 stat: 81.0 sys_beam: 110.0 sys_luminosity: 112.0 - sys_corr_1: -20.85999640061773 - sys_corr_2: -8.242540680871082 - sys_corr_3: 8.961204056550143 - sys_corr_4: -8.614385898951557 - sys_corr_5: -2.306048360098447 - sys_corr_6: 1.3799189252318764 - sys_corr_7: 1.763104057565564 - sys_corr_8: 1.2044387625997617 - sys_corr_9: -0.029223529687805137 - sys_corr_10: 3.0215802371301006 - sys_corr_11: -1.4142992542156707 - sys_corr_12: -1.1889723630536118 - sys_corr_13: 0.9257611979897812 - sys_corr_14: -0.6372331880602672 - sys_corr_15: 0.3263646033902244 - sys_corr_16: 0.8296699988914757 - sys_corr_17: -34.31148751935087 - sys_corr_18: 2.223371222085629e-05 - sys_corr_19: -0.004079579657142941 - sys_corr_20: -0.04109755671287726 - sys_corr_21: 0.12179926772253029 - sys_corr_22: -0.4318081034916117 - sys_corr_23: 1.2383669027745627 - sys_corr_24: -0.555349911332747 - sys_corr_25: 3.847663593630981 - sys_corr_26: 1.214500716621149 - sys_corr_27: -1.0896588789845654 - sys_corr_28: 5.220822383009355 - sys_corr_29: 4.056607732576169 - sys_corr_30: -53.73393248419216 - sys_corr_31: -5.961938629073214 - sys_corr_32: 0.1723904768898964 - sys_corr_33: 13.699964798406059 - sys_corr_34: 2.433988171680721 + sys_corr_2: -8.242540680871144 + sys_corr_3: 8.96120405655017 + sys_corr_4: -8.61438589895173 + sys_corr_5: -2.3060483600982833 + sys_corr_6: 1.3799189252317385 + sys_corr_7: 1.7631040575653907 + sys_corr_8: 1.2044387625997117 + sys_corr_9: -0.029223529687890985 + sys_corr_10: 3.021580237130118 + sys_corr_11: -1.4142992542157862 + sys_corr_12: -1.1889723630536422 + sys_corr_13: 0.9257611979898691 + sys_corr_14: -0.6372331880602367 + sys_corr_15: 0.32636460339014195 + sys_corr_16: 0.8296699988914852 + sys_corr_17: -34.31148751935037 + sys_corr_18: 2.223371222016921e-05 + sys_corr_19: -0.00407957965719388 + sys_corr_20: -0.04109755671291763 + sys_corr_21: 0.12179926772246472 + sys_corr_22: -0.4318081034915585 + sys_corr_23: 1.238366902774607 + sys_corr_24: -0.5553499113329405 + sys_corr_25: 3.8476635936335404 + sys_corr_26: 1.2145007166214323 + sys_corr_27: -1.0896588789833546 + sys_corr_28: 5.220822383001981 + sys_corr_29: 4.056607732583745 + sys_corr_30: -53.73393248419466 + sys_corr_31: -5.961938629063152 + sys_corr_32: 0.17239047689188644 + sys_corr_33: 13.699964798469713 + sys_corr_34: 2.4339881710835924 stat: 82.0 sys_beam: 113.0 sys_luminosity: 115.0 - sys_corr_1: -20.223983250604604 - sys_corr_2: -8.154175836436359 - sys_corr_3: 9.26327356637858 - sys_corr_4: -9.718752686919935 - sys_corr_5: -2.815203846765515 - sys_corr_6: 1.8702305366091985 - sys_corr_7: 1.6422084351635182 - sys_corr_8: -0.16224786719614528 - sys_corr_9: -0.22452711746931522 - sys_corr_10: 3.572768532873175 - sys_corr_11: -1.807628621364004 - sys_corr_12: -0.9629409377418384 - sys_corr_13: 0.5171356641657681 - sys_corr_14: -0.6176549011257892 - sys_corr_15: 0.29396865202369565 - sys_corr_16: 0.19228110231051582 - sys_corr_17: -35.97332885136173 - sys_corr_18: 2.1030318953479127e-05 - sys_corr_19: -0.01573421063351599 - sys_corr_20: -0.03959349841824993 - sys_corr_21: 0.20298279711011666 - sys_corr_22: -0.43673348436197756 - sys_corr_23: 1.222881890842337 - sys_corr_24: -8.050128059309468 - sys_corr_25: 3.706780158719833 - sys_corr_26: 0.2856448791722523 - sys_corr_27: 0.3134908927527956 - sys_corr_28: 1.8316820476472904 - sys_corr_29: 32.11772042509791 - sys_corr_30: 6.0053293548508035 - sys_corr_31: -35.91989545508118 - sys_corr_32: -0.02011206044083529 - sys_corr_33: -30.62631510390598 - sys_corr_34: -10.705014255279856 + sys_corr_2: -8.154175836436291 + sys_corr_3: 9.263273566378606 + sys_corr_4: -9.71875268691994 + sys_corr_5: -2.815203846765317 + sys_corr_6: 1.8702305366092413 + sys_corr_7: 1.642208435163437 + sys_corr_8: -0.16224786719629844 + sys_corr_9: -0.22452711746936563 + sys_corr_10: 3.5727685328730914 + sys_corr_11: -1.807628621364124 + sys_corr_12: -0.9629409377418926 + sys_corr_13: 0.517135664165866 + sys_corr_14: -0.6176549011257119 + sys_corr_15: 0.29396865202352723 + sys_corr_16: 0.19228110231040307 + sys_corr_17: -35.973328851362034 + sys_corr_18: 2.1030318953412103e-05 + sys_corr_19: -0.01573421063352595 + sys_corr_20: -0.039593498418252014 + sys_corr_21: 0.20298279711025685 + sys_corr_22: -0.43673348436206993 + sys_corr_23: 1.2228818908422694 + sys_corr_24: -8.050128059316727 + sys_corr_25: 3.7067801587189875 + sys_corr_26: 0.28564487917183234 + sys_corr_27: 0.31349089275246217 + sys_corr_28: 1.831682047649197 + sys_corr_29: 32.11772042510084 + sys_corr_30: 6.005329354848032 + sys_corr_31: -35.91989545505611 + sys_corr_32: -0.020112060445741164 + sys_corr_33: -30.626315104189313 + sys_corr_34: -10.705014253933214 stat: 81.0 sys_beam: 112.0 sys_luminosity: 114.0 - sys_corr_1: -17.04123512385607 - sys_corr_2: -7.918393116785677 + sys_corr_2: -7.918393116785631 sys_corr_3: 8.440143768234751 - sys_corr_4: -10.024020107965285 - sys_corr_5: -2.6847034507320844 - sys_corr_6: 2.0671669249445555 - sys_corr_7: 1.837279687306533 - sys_corr_8: 0.3650568659958519 - sys_corr_9: -0.4904354192346455 - sys_corr_10: 3.0568684568954443 - sys_corr_11: -1.0638801573487726 - sys_corr_12: -1.3582456192662984 - sys_corr_13: 0.07169286786156893 - sys_corr_14: -0.2199043557753311 - sys_corr_15: 1.5744304454334228 - sys_corr_16: -0.0013292406672338916 - sys_corr_17: -32.11721511436332 - sys_corr_18: 1.563925464777089e-05 - sys_corr_19: -0.01602557329814359 - sys_corr_20: -0.06980990577079062 - sys_corr_21: 0.2132859532473274 - sys_corr_22: -0.6435224332446 - sys_corr_23: 1.9689443448390334 - sys_corr_24: -12.899652788631762 - sys_corr_25: 5.004417879944764 - sys_corr_26: 0.4905581183348719 - sys_corr_27: -0.6767901157597395 - sys_corr_28: -5.192725175071233 - sys_corr_29: 15.90697875227382 - sys_corr_30: 20.16293066600603 - sys_corr_31: -11.987331589786724 - sys_corr_32: 14.255145302365655 - sys_corr_33: 43.78533937999355 - sys_corr_34: 17.535461370942752 + sys_corr_4: -10.02402010796554 + sys_corr_5: -2.6847034507324383 + sys_corr_6: 2.0671669249447975 + sys_corr_7: 1.8372796873063746 + sys_corr_8: 0.3650568659958692 + sys_corr_9: -0.4904354192348276 + sys_corr_10: 3.05686845689522 + sys_corr_11: -1.0638801573489338 + sys_corr_12: -1.3582456192661916 + sys_corr_13: 0.07169286786152647 + sys_corr_14: -0.21990435577551373 + sys_corr_15: 1.5744304454331313 + sys_corr_16: -0.0013292406671437558 + sys_corr_17: -32.11721511436324 + sys_corr_18: 1.5639254649312342e-05 + sys_corr_19: -0.016025573298138807 + sys_corr_20: -0.06980990577079971 + sys_corr_21: 0.21328595324743183 + sys_corr_22: -0.643522433244859 + sys_corr_23: 1.968944344838717 + sys_corr_24: -12.899652788634423 + sys_corr_25: 5.004417879945517 + sys_corr_26: 0.4905581183344178 + sys_corr_27: -0.6767901157589093 + sys_corr_28: -5.192725175070102 + sys_corr_29: 15.906978752284262 + sys_corr_30: 20.162930666008716 + sys_corr_31: -11.987331589746674 + sys_corr_32: 14.255145302388717 + sys_corr_33: 43.78533938046681 + sys_corr_34: 17.535461369051525 stat: 78.0 sys_beam: 104.0 sys_luminosity: 105.0 - sys_corr_1: -14.949658691661552 - sys_corr_2: -7.165496747473827 - sys_corr_3: 7.808477726717307 - sys_corr_4: -9.56305409326678 - sys_corr_5: -2.670729336856583 - sys_corr_6: 1.870910013082464 - sys_corr_7: 1.1343784857727517 - sys_corr_8: 0.5731050576349122 - sys_corr_9: -0.8237338552005756 - sys_corr_10: 3.4751925833597936 - sys_corr_11: -0.13851422837746447 - sys_corr_12: -0.10023616022750506 - sys_corr_13: -0.297566757573512 - sys_corr_14: -0.01650093308831284 - sys_corr_15: 0.6964491524517722 - sys_corr_16: 0.020654173191060936 - sys_corr_17: -29.914143247343116 - sys_corr_18: -2.595663656276923e-06 - sys_corr_19: -0.020768693638988766 - sys_corr_20: -0.05834119476442283 - sys_corr_21: 0.19884628619594974 - sys_corr_22: -0.6436033819979039 - sys_corr_23: 1.6165938253859384 - sys_corr_24: -56.831154776699634 - sys_corr_25: 4.207755805618636 - sys_corr_26: 0.13546165938685006 - sys_corr_27: 0.16794567880689754 - sys_corr_28: -1.254823525202448 - sys_corr_29: -23.915653026107577 - sys_corr_30: 1.316650496021619 - sys_corr_31: 12.59376213706475 - sys_corr_32: 1.475379610059091 - sys_corr_33: -11.882612801600084 - sys_corr_34: -0.6558219368176063 + sys_corr_2: -7.165496747473771 + sys_corr_3: 7.808477726717344 + sys_corr_4: -9.563054093266855 + sys_corr_5: -2.670729336856341 + sys_corr_6: 1.8709100130824086 + sys_corr_7: 1.1343784857725923 + sys_corr_8: 0.5731050576348673 + sys_corr_9: -0.8237338552006473 + sys_corr_10: 3.4751925833597106 + sys_corr_11: -0.13851422837760224 + sys_corr_12: -0.1002361602275918 + sys_corr_13: -0.29756675757365736 + sys_corr_14: -0.016500933088201893 + sys_corr_15: 0.6964491524516614 + sys_corr_16: 0.020654173191049223 + sys_corr_17: -29.91414324734268 + sys_corr_18: -2.595663657424141e-06 + sys_corr_19: -0.020768693638998827 + sys_corr_20: -0.05834119476429439 + sys_corr_21: 0.1988462861961116 + sys_corr_22: -0.6436033819980002 + sys_corr_23: 1.6165938253859975 + sys_corr_24: -56.83115477669559 + sys_corr_25: 4.207755805619209 + sys_corr_26: 0.13546165938649402 + sys_corr_27: 0.16794567880708108 + sys_corr_28: -1.2548235252022757 + sys_corr_29: -23.91565302611887 + sys_corr_30: 1.316650496023731 + sys_corr_31: 12.59376213704475 + sys_corr_32: 1.4753796100520011 + sys_corr_33: -11.882612801608257 + sys_corr_34: -0.6558219362974327 stat: 72.0 sys_beam: 89.0 sys_luminosity: 90.0 - sys_corr_1: -9.14904976731458 - sys_corr_2: -4.972284733299394 - sys_corr_3: 4.934501253783746 - sys_corr_4: -7.146715955712768 - sys_corr_5: -2.4806832426488516 - sys_corr_6: 1.6716036517481274 - sys_corr_7: 0.3731925008926304 - sys_corr_8: 0.46906925363558766 - sys_corr_9: -1.0870814502316777 - sys_corr_10: 2.1864260496234604 - sys_corr_11: -0.08527632330590701 - sys_corr_12: -0.012526363709937075 - sys_corr_13: 0.424383407931963 - sys_corr_14: -0.13456579621486817 - sys_corr_15: 0.479004540879783 - sys_corr_16: -0.15340419169042 - sys_corr_17: -14.879810632978513 - sys_corr_18: -0.00024564680501881395 - sys_corr_19: -0.0454435934292143 - sys_corr_20: -0.12517695573643947 - sys_corr_21: 0.4495879379661885 - sys_corr_22: -1.2047889254655135 - sys_corr_23: 6.991666808010768 - sys_corr_24: -5.151973939331355 - sys_corr_25: -45.641593280488614 - sys_corr_26: -1.3784434779206556 - sys_corr_27: 1.565294265899055 - sys_corr_28: 1.4093209031809397 - sys_corr_29: 2.3280091228437603 - sys_corr_30: -0.7987670255568619 - sys_corr_31: -1.492549105845241 - sys_corr_32: 0.1634737023690217 - sys_corr_33: 2.02289736511137 - sys_corr_34: 1.008066369978752 + sys_corr_2: -4.972284733299384 + sys_corr_3: 4.934501253783764 + sys_corr_4: -7.1467159557128515 + sys_corr_5: -2.4806832426487455 + sys_corr_6: 1.671603651748121 + sys_corr_7: 0.37319250089257 + sys_corr_8: 0.46906925363561475 + sys_corr_9: -1.087081450231521 + sys_corr_10: 2.1864260496234404 + sys_corr_11: -0.08527632330582598 + sys_corr_12: -0.012526363709998182 + sys_corr_13: 0.4243834079319793 + sys_corr_14: -0.13456579621495254 + sys_corr_15: 0.4790045408796148 + sys_corr_16: -0.15340419169045127 + sys_corr_17: -14.879810632978376 + sys_corr_18: -0.0002456468050200248 + sys_corr_19: -0.0454435934292203 + sys_corr_20: -0.12517695573626986 + sys_corr_21: 0.44958793796615887 + sys_corr_22: -1.204788925464909 + sys_corr_23: 6.991666808010446 + sys_corr_24: -5.151973939331509 + sys_corr_25: -45.64159328048806 + sys_corr_26: -1.3784434779208112 + sys_corr_27: 1.5652942658997 + sys_corr_28: 1.409320903180425 + sys_corr_29: 2.3280091228430235 + sys_corr_30: -0.7987670255571896 + sys_corr_31: -1.4925491058413183 + sys_corr_32: 0.16347370237198558 + sys_corr_33: 2.0228973651373496 + sys_corr_34: 1.0080663698904977 stat: 63.0 sys_beam: 70.0 sys_luminosity: 71.0 - sys_corr_1: -6.326085258885516 - sys_corr_2: -3.439415506883048 - sys_corr_3: 3.3413277376739843 - sys_corr_4: -5.541898966162248 - sys_corr_5: -1.666176480784771 - sys_corr_6: 0.979375217874185 - sys_corr_7: 0.0002485455875154854 - sys_corr_8: -0.08187806243705073 - sys_corr_9: -0.43331484389360025 - sys_corr_10: 1.7688356519672581 - sys_corr_11: 0.16738920479722036 - sys_corr_12: 0.11055325680962605 - sys_corr_13: 0.4269058132515623 - sys_corr_14: -0.1138800538385906 - sys_corr_15: 0.9613977606946876 - sys_corr_16: -0.013820528956704024 - sys_corr_17: -9.506358516911547 - sys_corr_18: -0.000322491958865001 - sys_corr_19: -0.04499426072423848 - sys_corr_20: -0.13755544896289332 - sys_corr_21: 0.5827172665108897 - sys_corr_22: -1.9470722746536389 - sys_corr_23: -37.513389438295306 - sys_corr_24: -3.666147114225558 - sys_corr_25: -7.529167532066956 - sys_corr_26: -0.6017477237226491 - sys_corr_27: 0.16993176961810133 - sys_corr_28: 0.8185166967637814 - sys_corr_29: 1.5139539639474104 - sys_corr_30: -0.23812496924184945 - sys_corr_31: -0.8615737285431316 - sys_corr_32: 0.09807293782358924 - sys_corr_33: 1.5488833831456272 - sys_corr_34: 0.7674261133314435 + sys_corr_2: -3.4394155068830274 + sys_corr_3: 3.3413277376739994 + sys_corr_4: -5.541898966162299 + sys_corr_5: -1.6661764807846726 + sys_corr_6: 0.9793752178741615 + sys_corr_7: 0.0002485455875605596 + sys_corr_8: -0.08187806243712223 + sys_corr_9: -0.43331484389358593 + sys_corr_10: 1.7688356519671558 + sys_corr_11: 0.1673892047971942 + sys_corr_12: 0.11055325680962538 + sys_corr_13: 0.42690581325142396 + sys_corr_14: -0.11388005383860242 + sys_corr_15: 0.9613977606947433 + sys_corr_16: -0.013820528956824979 + sys_corr_17: -9.506358516911606 + sys_corr_18: -0.0003224919588661582 + sys_corr_19: -0.04499426072419495 + sys_corr_20: -0.13755544896320748 + sys_corr_21: 0.5827172665111978 + sys_corr_22: -1.947072274653343 + sys_corr_23: -37.513389438295356 + sys_corr_24: -3.6661471142260784 + sys_corr_25: -7.529167532068023 + sys_corr_26: -0.6017477237229026 + sys_corr_27: 0.16993176961815415 + sys_corr_28: 0.8185166967640874 + sys_corr_29: 1.5139539639483393 + sys_corr_30: -0.23812496924273005 + sys_corr_31: -0.8615737285403586 + sys_corr_32: 0.09807293782506868 + sys_corr_33: 1.5488833831657787 + sys_corr_34: 0.7674261132628126 stat: 54.0 sys_beam: 50.0 sys_luminosity: 51.0 - sys_corr_1: -3.581622334817089 - sys_corr_2: -1.5952014747683092 - sys_corr_3: 1.696419758223885 - sys_corr_4: -3.146991276459658 - sys_corr_5: -0.8213111707130737 - sys_corr_6: 0.8751706472028377 - sys_corr_7: 0.2206946879339562 - sys_corr_8: -0.10396281407173584 - sys_corr_9: -0.6365967085276881 - sys_corr_10: 0.9100948097624815 - sys_corr_11: 0.13025444043125295 - sys_corr_12: 0.34852058051345974 - sys_corr_13: 0.000963419400960771 - sys_corr_14: -0.024415407833905774 - sys_corr_15: 0.23683126623679324 - sys_corr_16: -0.213123518257198 - sys_corr_17: -4.887880950067507 - sys_corr_18: -9.666121427649194e-05 - sys_corr_19: -0.08679639349439726 - sys_corr_20: -0.21795914219962417 - sys_corr_21: 1.5906032250675446 - sys_corr_22: 25.605815007759354 - sys_corr_23: -2.2802107816509967 - sys_corr_24: -2.064997634263775 - sys_corr_25: -2.1904506948921627 - sys_corr_26: -0.31575888365863575 - sys_corr_27: 0.13593361557791478 - sys_corr_28: 0.2645398552247651 - sys_corr_29: 0.7254250538696598 - sys_corr_30: -0.14873611967742692 - sys_corr_31: -0.34721727099001154 - sys_corr_32: -0.06366415037975065 - sys_corr_33: 0.7056752901669989 - sys_corr_34: 0.34189479965746694 + sys_corr_2: -1.5952014747683114 + sys_corr_3: 1.6964197582238907 + sys_corr_4: -3.14699127645968 + sys_corr_5: -0.8213111707130163 + sys_corr_6: 0.8751706472028297 + sys_corr_7: 0.2206946879338174 + sys_corr_8: -0.1039628140716845 + sys_corr_9: -0.6365967085277067 + sys_corr_10: 0.9100948097625553 + sys_corr_11: 0.13025444043124915 + sys_corr_12: 0.34852058051337664 + sys_corr_13: 0.0009634194008526173 + sys_corr_14: -0.02441540783396363 + sys_corr_15: 0.23683126623681228 + sys_corr_16: -0.21312351825723796 + sys_corr_17: -4.887880950067251 + sys_corr_18: -9.666121426579344e-05 + sys_corr_19: -0.08679639349439601 + sys_corr_20: -0.21795914219999304 + sys_corr_21: 1.590603225066448 + sys_corr_22: 25.605815007759382 + sys_corr_23: -2.280210781651742 + sys_corr_24: -2.064997634263456 + sys_corr_25: -2.190450694893062 + sys_corr_26: -0.31575888365835214 + sys_corr_27: 0.1359336155779555 + sys_corr_28: 0.26453985522407586 + sys_corr_29: 0.7254250538695481 + sys_corr_30: -0.14873611967709635 + sys_corr_31: -0.3472172709889853 + sys_corr_32: -0.06366415037841579 + sys_corr_33: 0.7056752901753416 + sys_corr_34: 0.3418947996262172 stat: 42.0 sys_beam: 31.0 sys_luminosity: 32.0 - sys_corr_1: -1.92704439512093 - sys_corr_2: -0.8906975447977756 - sys_corr_3: 0.9859044565822679 - sys_corr_4: -1.900006590186975 - sys_corr_5: -0.500061597538644 - sys_corr_6: 0.46968476717803787 - sys_corr_7: 0.026567509007107172 - sys_corr_8: -0.24644151318871022 - sys_corr_9: -0.25414422874330955 - sys_corr_10: 0.5977450748892065 - sys_corr_11: 0.12461147105302377 - sys_corr_12: 0.22106489547048022 - sys_corr_13: 0.002600996773599335 - sys_corr_14: 0.18567315840954113 - sys_corr_15: 0.11880756529326222 - sys_corr_16: -0.18567999103818122 - sys_corr_17: -2.8272588693821663 - sys_corr_18: -0.00019905744405662599 - sys_corr_19: -0.11219010309646388 - sys_corr_20: -0.36203400976763017 - sys_corr_21: -19.33064816976645 - sys_corr_22: 1.9792982895260696 - sys_corr_23: -1.076070580397553 - sys_corr_24: -0.9794399369760031 - sys_corr_25: -1.2690397198581644 - sys_corr_26: -0.11077568336747423 - sys_corr_27: -0.0455017730958743 - sys_corr_28: 0.014709472995496412 - sys_corr_29: 0.3343664195538066 - sys_corr_30: 0.011541248946823261 - sys_corr_31: -0.3839086612900922 - sys_corr_32: 0.06978441016448338 - sys_corr_33: 0.26523110211595075 - sys_corr_34: 0.06515123861157356 + sys_corr_2: -0.8906975447977779 + sys_corr_3: 0.9859044565822684 + sys_corr_4: -1.9000065901869836 + sys_corr_5: -0.5000615975386107 + sys_corr_6: 0.46968476717803226 + sys_corr_7: 0.026567509006969116 + sys_corr_8: -0.24644151318863616 + sys_corr_9: -0.25414422874331366 + sys_corr_10: 0.5977450748892512 + sys_corr_11: 0.12461147105305874 + sys_corr_12: 0.22106489547049357 + sys_corr_13: 0.002600996773642191 + sys_corr_14: 0.18567315840945614 + sys_corr_15: 0.11880756529337104 + sys_corr_16: -0.18567999103821872 + sys_corr_17: -2.827258869382252 + sys_corr_18: -0.000199057444015986 + sys_corr_19: -0.11219010309612268 + sys_corr_20: -0.36203400976645245 + sys_corr_21: -19.330648169767073 + sys_corr_22: 1.9792982895274414 + sys_corr_23: -1.0760705803977701 + sys_corr_24: -0.9794399369764406 + sys_corr_25: -1.2690397198592585 + sys_corr_26: -0.11077568336772363 + sys_corr_27: -0.04550177309583325 + sys_corr_28: 0.014709472995865877 + sys_corr_29: 0.33436641955386703 + sys_corr_30: 0.01154124894717594 + sys_corr_31: -0.38390866128957885 + sys_corr_32: 0.06978441016484936 + sys_corr_33: 0.26523110211773226 + sys_corr_34: 0.06515123860033878 stat: 32.0 sys_beam: 18.0 sys_luminosity: 19.0 - sys_corr_1: -0.8296601388639502 - sys_corr_2: -0.3805251722782747 - sys_corr_3: 0.4256454984305268 - sys_corr_4: -0.8640659174103269 - sys_corr_5: -0.3029421108714545 - sys_corr_6: 0.2176950458024982 - sys_corr_7: -0.0513015110495244 - sys_corr_8: -0.12919103018667238 - sys_corr_9: -0.10721047160309029 - sys_corr_10: 0.1529847335090339 - sys_corr_11: 0.17487604901206083 - sys_corr_12: -0.01248019049416586 - sys_corr_13: 0.04226511417819689 - sys_corr_14: 0.07817088485442444 - sys_corr_15: 0.0736083183745245 - sys_corr_16: -0.10963219724155511 - sys_corr_17: -1.2120042253538708 - sys_corr_18: -0.00046489040093820644 - sys_corr_19: -0.25803633958738176 - sys_corr_20: 11.795834334234783 - sys_corr_21: -0.5401002869203217 - sys_corr_22: 0.47787211458447243 - sys_corr_23: -0.4012872851787313 - sys_corr_24: -0.4773980799989664 - sys_corr_25: -0.5578977015713101 - sys_corr_26: 0.015910316662032797 - sys_corr_27: 0.039315340097579664 - sys_corr_28: -0.034916993021117164 - sys_corr_29: 0.15079334377683432 - sys_corr_30: -0.025448127463030965 - sys_corr_31: -0.12947869114049182 - sys_corr_32: 0.003045495350807366 - sys_corr_33: 0.21539792088791174 - sys_corr_34: 0.050432772372592215 + sys_corr_2: -0.38052517227827426 + sys_corr_3: 0.4256454984305276 + sys_corr_4: -0.8640659174103346 + sys_corr_5: -0.3029421108714407 + sys_corr_6: 0.21769504580249685 + sys_corr_7: -0.0513015110494587 + sys_corr_8: -0.1291910301867218 + sys_corr_9: -0.10721047160311574 + sys_corr_10: 0.15298473350908032 + sys_corr_11: 0.17487604901205464 + sys_corr_12: -0.012480190494210718 + sys_corr_13: 0.04226511417816975 + sys_corr_14: 0.0781708848543922 + sys_corr_15: 0.07360831837453956 + sys_corr_16: -0.10963219724160662 + sys_corr_17: -1.2120042253538605 + sys_corr_18: -0.000464890400867854 + sys_corr_19: -0.25803633958642397 + sys_corr_20: 11.79583433423467 + sys_corr_21: -0.5401002869199265 + sys_corr_22: 0.4778721145841973 + sys_corr_23: -0.40128728517884116 + sys_corr_24: -0.4773980799987802 + sys_corr_25: -0.5578977015713456 + sys_corr_26: 0.015910316661923305 + sys_corr_27: 0.0393153400977026 + sys_corr_28: -0.03491699302104453 + sys_corr_29: 0.15079334377679599 + sys_corr_30: -0.025448127463074663 + sys_corr_31: -0.12947869114023533 + sys_corr_32: 0.0030454953508836304 + sys_corr_33: 0.21539792088917062 + sys_corr_34: 0.050432772363266945 stat: 22.0 sys_beam: 9.0 sys_luminosity: 9.0 - sys_corr_1: -0.42393728550091253 - sys_corr_2: -0.14894396859548853 - sys_corr_3: 0.1981748571052791 - sys_corr_4: -0.39930231793851473 - sys_corr_5: -0.11765515578109007 - sys_corr_6: 0.10694488123136513 - sys_corr_7: -0.0737090810991067 - sys_corr_8: -0.13441755182880608 - sys_corr_9: -0.11536049109165246 - sys_corr_10: 0.04875973725724547 - sys_corr_11: 0.04521689153192965 - sys_corr_12: 0.10130389568753956 - sys_corr_13: 0.04322115716786899 - sys_corr_14: 0.028136185353375684 - sys_corr_15: 0.004731362627832487 - sys_corr_16: -0.11516055102024063 - sys_corr_17: -0.6185243817055507 - sys_corr_18: -0.0008188847906671834 - sys_corr_19: 7.911038971966661 - sys_corr_20: 0.37528005595773883 - sys_corr_21: -0.26672538386835976 - sys_corr_22: 0.3020038060076616 - sys_corr_23: -0.21369897814298744 - sys_corr_24: -0.2553303274366322 - sys_corr_25: -0.33152188617632095 - sys_corr_26: -0.03180232046108036 - sys_corr_27: -0.045026544656933135 - sys_corr_28: 0.015861015519060512 - sys_corr_29: 0.06645220360768585 - sys_corr_30: 0.039901597979006935 - sys_corr_31: -0.053250101359537255 - sys_corr_32: 0.028197119479147756 - sys_corr_33: 0.04831256818640388 - sys_corr_34: -0.01828330836598994 + sys_corr_2: -0.1489439685954901 + sys_corr_3: 0.1981748571052783 + sys_corr_4: -0.39930231793851795 + sys_corr_5: -0.11765515578108467 + sys_corr_6: 0.10694488123136295 + sys_corr_7: -0.07370908109912086 + sys_corr_8: -0.13441755182880186 + sys_corr_9: -0.11536049109164451 + sys_corr_10: 0.048759737257209806 + sys_corr_11: 0.045216891531896765 + sys_corr_12: 0.10130389568750048 + sys_corr_13: 0.043221157167921076 + sys_corr_14: 0.02813618535335268 + sys_corr_15: 0.004731362627850262 + sys_corr_16: -0.11516055102018913 + sys_corr_17: -0.6185243817055616 + sys_corr_18: -0.0008188847909314705 + sys_corr_19: 7.911038971966892 + sys_corr_20: 0.3752800559584975 + sys_corr_21: -0.2667253838683477 + sys_corr_22: 0.3020038060076856 + sys_corr_23: -0.2136989781429229 + sys_corr_24: -0.25533032743675527 + sys_corr_25: -0.33152188617643563 + sys_corr_26: -0.031802320460943584 + sys_corr_27: -0.0450265446571122 + sys_corr_28: 0.015861015519048217 + sys_corr_29: 0.06645220360780067 + sys_corr_30: 0.0399015979789204 + sys_corr_31: -0.05325010135931567 + sys_corr_32: 0.028197119479108523 + sys_corr_33: 0.048312568185798266 + sys_corr_34: -0.018283308368153953 stat: 16.0 sys_beam: 4.0 sys_luminosity: 4.0 -- sys_corr_1: -0.013414184810947182 - sys_corr_2: -0.0037960802643431835 - sys_corr_3: 0.007050325110555244 - sys_corr_4: -0.012793678842011953 - sys_corr_5: -0.006988237873416711 - sys_corr_6: -0.0011527303922321177 - sys_corr_7: -0.0038282744129991384 - sys_corr_8: 0.00580351666510989 - sys_corr_9: 0.010110892923237483 - sys_corr_10: 0.006099701507322768 - sys_corr_11: -0.002713842573751903 - sys_corr_12: 0.0038844748413824986 - sys_corr_13: -0.00021929479123481416 - sys_corr_14: -5.673249487341189e-05 - sys_corr_15: -0.005283439658346962 - sys_corr_16: -0.010413435144737736 - sys_corr_17: -0.009022711855041334 - sys_corr_18: 0.9993144938282417 - sys_corr_19: 0.006305972548180469 - sys_corr_20: 0.005629159396434368 - sys_corr_21: -0.003870372244719926 - sys_corr_22: 0.0024480503883864435 - sys_corr_23: -0.011281196460354895 - sys_corr_24: -0.0016038955252630446 - sys_corr_25: -0.015001223022070295 - sys_corr_26: -0.0028588158298082783 - sys_corr_27: -0.0032024298307163834 - sys_corr_28: -0.00378958229068439 - sys_corr_29: -0.0012810170230193785 - sys_corr_30: 0.00020952138697761106 - sys_corr_31: -0.0002487670121694488 - sys_corr_32: 0.0015993114173559364 - sys_corr_33: 1.83609916547212e-05 - sys_corr_34: 0.00045379693968826006 +- sys_corr_1: -0.013414184810947185 + sys_corr_2: -0.0037960802643432707 + sys_corr_3: 0.007050325110555283 + sys_corr_4: -0.012793678842012284 + sys_corr_5: -0.006988237873416502 + sys_corr_6: -0.0011527303922321958 + sys_corr_7: -0.003828274413000623 + sys_corr_8: 0.005803516665110609 + sys_corr_9: 0.010110892923238884 + sys_corr_10: 0.00609970150731563 + sys_corr_11: -0.0027138425737638357 + sys_corr_12: 0.0038844748413529888 + sys_corr_13: -0.0002192947913103354 + sys_corr_14: -5.673249487655088e-05 + sys_corr_15: -0.005283439658330253 + sys_corr_16: -0.01041343514466209 + sys_corr_17: -0.009022711855039067 + sys_corr_18: 0.9993144938300689 + sys_corr_19: 0.006305972548117419 + sys_corr_20: 0.005629159396297987 + sys_corr_21: -0.003870372244989194 + sys_corr_22: 0.002448050388358444 + sys_corr_23: -0.011281196460244286 + sys_corr_24: -0.0016038955252109263 + sys_corr_25: -0.01500122302213559 + sys_corr_26: -0.0028588158298623084 + sys_corr_27: -0.0032024298305996894 + sys_corr_28: -0.0037895822907567595 + sys_corr_29: -0.0012810170229462568 + sys_corr_30: 0.00020952138699364335 + sys_corr_31: -0.0002487670121753776 + sys_corr_32: 0.0015993114173329787 + sys_corr_33: 1.836099161191098e-05 + sys_corr_34: 0.00045379693947543193 stat: 3.0 sys_beam: 0.0 sys_luminosity: 0.0 - sys_corr_1: -3038.5793019795487 - sys_corr_2: 768.151619729029 - sys_corr_3: -485.10950751290466 - sys_corr_4: 53.08972426745508 - sys_corr_5: 7.850087868619188 - sys_corr_6: -88.07520308797234 - sys_corr_7: 137.25556071652076 - sys_corr_8: 283.50818110253323 - sys_corr_9: -239.42618180677908 - sys_corr_10: -114.9282210891482 - sys_corr_11: 8.42245032181839 - sys_corr_12: 31.98627693875795 - sys_corr_13: 1.50717484391528 - sys_corr_14: 6.896281410681029 - sys_corr_15: -7.595533001147195 - sys_corr_16: -7.633120097776864 - sys_corr_17: 1.0195549272803348 - sys_corr_18: 7.284609808103727e-07 - sys_corr_19: -1.6778355582638205e-05 - sys_corr_20: 0.00025537746071577504 - sys_corr_21: -0.0011339103675613135 - sys_corr_22: -0.003415602574189624 - sys_corr_23: -0.005932843196956676 - sys_corr_24: -0.1280796093801708 - sys_corr_25: -7.564443428452589e-06 - sys_corr_26: 0.016222470669920764 - sys_corr_27: 0.06514473289220417 - sys_corr_28: 0.10371048272556845 - sys_corr_29: 0.06929157468645339 - sys_corr_30: 0.018776298638962904 - sys_corr_31: -0.021881712529226115 - sys_corr_32: -0.036065189677757854 - sys_corr_33: 0.03731793154064317 - sys_corr_34: -0.006212574243613175 + sys_corr_2: 768.1516197290289 + sys_corr_3: -485.10950751290517 + sys_corr_4: 53.08972426745481 + sys_corr_5: 7.850087868617356 + sys_corr_6: -88.0752030879723 + sys_corr_7: 137.255560716515 + sys_corr_8: 283.5081811025355 + sys_corr_9: -239.42618180677874 + sys_corr_10: -114.92822108914821 + sys_corr_11: 8.422450321818669 + sys_corr_12: 31.986276938757808 + sys_corr_13: 1.5071748439153685 + sys_corr_14: 6.896281410681093 + sys_corr_15: -7.595533001147252 + sys_corr_16: -7.633120097776844 + sys_corr_17: 1.019554927280346 + sys_corr_18: 7.284609808011454e-07 + sys_corr_19: -1.677835558256328e-05 + sys_corr_20: 0.0002553774607160113 + sys_corr_21: -0.0011339103675605186 + sys_corr_22: -0.0034156025741886443 + sys_corr_23: -0.005932843196957185 + sys_corr_24: -0.12807960938018645 + sys_corr_25: -7.564443431047872e-06 + sys_corr_26: 0.016222470669908985 + sys_corr_27: 0.06514473289223874 + sys_corr_28: 0.10371048272557544 + sys_corr_29: 0.06929157468647058 + sys_corr_30: 0.018776298638944915 + sys_corr_31: -0.021881712529177977 + sys_corr_32: -0.03606518967772038 + sys_corr_33: 0.03731793154041575 + sys_corr_34: -0.006212574245309134 stat: 1200.0 sys_beam: 2400.0 sys_luminosity: 2700.0 - sys_corr_1: -757.4168560908336 - sys_corr_2: 75.90309841401225 - sys_corr_3: 1987.0588271704808 - sys_corr_4: 380.50217714972797 - sys_corr_5: 186.6540628119187 - sys_corr_6: -98.92177817595513 - sys_corr_7: 19.386151565620303 - sys_corr_8: 90.24316654080108 - sys_corr_9: 97.86762228902114 - sys_corr_10: 257.88630047369355 - sys_corr_11: 27.80542496923231 - sys_corr_12: 182.1786676656212 - sys_corr_13: -40.1069768929091 - sys_corr_14: 11.34420533632285 - sys_corr_15: -37.39982404709859 - sys_corr_16: -32.34179686209255 - sys_corr_17: 1.0943227332297263 - sys_corr_18: -6.383721004848815e-06 - sys_corr_19: -3.428582414792927e-05 - sys_corr_20: 0.00046593140222169854 - sys_corr_21: 0.0016542604394633518 - sys_corr_22: -0.0033912447442104652 - sys_corr_23: 0.004148891256763143 - sys_corr_24: -0.009165474667733913 - sys_corr_25: 0.008144508683747427 - sys_corr_26: -0.026150151611025615 - sys_corr_27: -0.061315511041762666 - sys_corr_28: 0.012687205157747163 - sys_corr_29: 0.018693498085528087 - sys_corr_30: 0.01425778424606732 - sys_corr_31: -0.006241271517890433 - sys_corr_32: -0.006706266150301394 - sys_corr_33: 0.025389499587724858 - sys_corr_34: 0.00543093342266935 + sys_corr_2: 75.90309841401579 + sys_corr_3: 1987.0588271704805 + sys_corr_4: 380.5021771497316 + sys_corr_5: 186.65406281191193 + sys_corr_6: -98.9217781759554 + sys_corr_7: 19.38615156561904 + sys_corr_8: 90.24316654080147 + sys_corr_9: 97.8676222890205 + sys_corr_10: 257.88630047369344 + sys_corr_11: 27.805424969230906 + sys_corr_12: 182.17866766562153 + sys_corr_13: -40.106976892909024 + sys_corr_14: 11.344205336323334 + sys_corr_15: -37.39982404709869 + sys_corr_16: -32.34179686209249 + sys_corr_17: 1.0943227332297176 + sys_corr_18: -6.383721004830009e-06 + sys_corr_19: -3.428582414810528e-05 + sys_corr_20: 0.00046593140222122626 + sys_corr_21: 0.001654260439463211 + sys_corr_22: -0.003391244744211278 + sys_corr_23: 0.004148891256764481 + sys_corr_24: -0.009165474667735025 + sys_corr_25: 0.008144508683749125 + sys_corr_26: -0.02615015161099173 + sys_corr_27: -0.06131551104176138 + sys_corr_28: 0.012687205157749074 + sys_corr_29: 0.018693498085537576 + sys_corr_30: 0.014257784246066602 + sys_corr_31: -0.006241271517885556 + sys_corr_32: -0.006706266150284497 + sys_corr_33: 0.025389499587853755 + sys_corr_34: 0.005430933421555999 stat: 900.0 sys_beam: 2100.0 sys_luminosity: 2400.0 - sys_corr_1: -539.1116598566842 - sys_corr_2: -1082.196953898048 - sys_corr_3: 139.26538263419215 - sys_corr_4: 259.0007882801631 - sys_corr_5: -1235.3638860478686 - sys_corr_6: -147.8992484251472 - sys_corr_7: -30.971965139079433 - sys_corr_8: 66.12783421119019 - sys_corr_9: 79.27645225016443 - sys_corr_10: 6.1083395365405675 - sys_corr_11: 298.8256052265815 - sys_corr_12: -160.33052814602755 - sys_corr_13: 123.74448329511169 + sys_corr_2: -1082.1969538980472 + sys_corr_3: 139.265382634192 + sys_corr_4: 259.0007882801366 + sys_corr_5: -1235.363886047874 + sys_corr_6: -147.89924842514617 + sys_corr_7: -30.971965139081274 + sys_corr_8: 66.12783421118901 + sys_corr_9: 79.27645225016423 + sys_corr_10: 6.108339536541749 + sys_corr_11: 298.8256052265816 + sys_corr_12: -160.330528146026 + sys_corr_13: 123.74448329511154 sys_corr_14: -32.43971184140428 - sys_corr_15: -11.811037446007145 - sys_corr_16: -23.921899411063976 - sys_corr_17: 0.5767811158596198 - sys_corr_18: -2.8777510060249715e-06 - sys_corr_19: -1.7746259062853234e-05 - sys_corr_20: -0.0015668674597882877 - sys_corr_21: 0.00047893537625031795 - sys_corr_22: 0.00013796288062932144 - sys_corr_23: 0.015193558356304633 - sys_corr_24: 0.08368951181574025 - sys_corr_25: 0.03252795209784002 - sys_corr_26: 0.012074739801121198 - sys_corr_27: -0.07568283304928537 - sys_corr_28: -0.10839682755241084 - sys_corr_29: -0.06354115477152299 - sys_corr_30: 0.022137948768943465 - sys_corr_31: -0.00040771647319118586 - sys_corr_32: 0.029190918104867233 - sys_corr_33: -0.045338286183720544 - sys_corr_34: 0.009281120599104669 + sys_corr_15: -11.811037446006932 + sys_corr_16: -23.921899411063883 + sys_corr_17: 0.5767811158596139 + sys_corr_18: -2.877751006037364e-06 + sys_corr_19: -1.7746259062945662e-05 + sys_corr_20: -0.001566867459788378 + sys_corr_21: 0.00047893537624898395 + sys_corr_22: 0.00013796288062966074 + sys_corr_23: 0.015193558356306796 + sys_corr_24: 0.08368951181576086 + sys_corr_25: 0.03252795209784276 + sys_corr_26: 0.012074739801167354 + sys_corr_27: -0.07568283304930938 + sys_corr_28: -0.1083968275524111 + sys_corr_29: -0.0635411547715441 + sys_corr_30: 0.022137948768953673 + sys_corr_31: -0.00040771647322797186 + sys_corr_32: 0.02919091810484506 + sys_corr_33: -0.0453382861834167 + sys_corr_34: 0.009281120601165673 stat: 800.0 sys_beam: 1800.0 sys_luminosity: 2100.0 - sys_corr_1: -346.6272090627615 - sys_corr_2: -1030.181994954958 - sys_corr_3: 2.3905943298608827 - sys_corr_4: -672.7845398398682 - sys_corr_5: 431.24137151214705 - sys_corr_6: -736.2297158517016 - sys_corr_7: -0.9211964079113855 - sys_corr_8: 167.18955777019715 - sys_corr_9: 125.27532107231038 - sys_corr_10: 0.6952330910211038 - sys_corr_11: 153.6669942345208 - sys_corr_12: -132.51248962046776 - sys_corr_13: -319.0057886061013 - sys_corr_14: 92.20109904875524 - sys_corr_15: 52.134955258314406 - sys_corr_16: 11.019143373701814 - sys_corr_17: 0.8035534599422568 - sys_corr_18: -1.9494090664902555e-06 - sys_corr_19: 0.0004555292374753845 - sys_corr_20: -0.0005602017511280195 - sys_corr_21: 0.0017116083298735739 - sys_corr_22: -0.0012111825214759626 - sys_corr_23: 0.013093740239201866 - sys_corr_24: 0.0663328708802538 - sys_corr_25: 0.005741342860060582 - sys_corr_26: -0.005243893280854078 - sys_corr_27: -0.014898575132749711 - sys_corr_28: -0.07832385774732964 - sys_corr_29: -0.008103685999407343 - sys_corr_30: -0.028478571390293136 - sys_corr_31: -0.02209874007861173 - sys_corr_32: 0.06915915493569391 - sys_corr_33: -0.05225712733244364 - sys_corr_34: -0.021446400930781855 + sys_corr_2: -1030.1819949549576 + sys_corr_3: 2.390594329861351 + sys_corr_4: -672.78453983986 + sys_corr_5: 431.24137151215854 + sys_corr_6: -736.2297158517026 + sys_corr_7: -0.9211964079143099 + sys_corr_8: 167.18955777019752 + sys_corr_9: 125.27532107231018 + sys_corr_10: 0.6952330910216087 + sys_corr_11: 153.66699423452076 + sys_corr_12: -132.51248962046958 + sys_corr_13: -319.00578860610113 + sys_corr_14: 92.20109904875525 + sys_corr_15: 52.134955258314186 + sys_corr_16: 11.019143373701738 + sys_corr_17: 0.8035534599422479 + sys_corr_18: -1.9494090665221805e-06 + sys_corr_19: 0.00045552923747546543 + sys_corr_20: -0.0005602017511281828 + sys_corr_21: 0.0017116083298726627 + sys_corr_22: -0.001211182521477481 + sys_corr_23: 0.013093740239202718 + sys_corr_24: 0.06633287088027 + sys_corr_25: 0.005741342860065388 + sys_corr_26: -0.005243893280841081 + sys_corr_27: -0.01489857513276601 + sys_corr_28: -0.0783238577473448 + sys_corr_29: -0.008103685999428574 + sys_corr_30: -0.028478571390254122 + sys_corr_31: -0.022098740078604417 + sys_corr_32: 0.06915915493567557 + sys_corr_33: -0.05225712733292187 + sys_corr_34: -0.021446400928380138 stat: 700.0 sys_beam: 1500.0 sys_luminosity: 1800.0 - sys_corr_1: -274.8755548245817 - sys_corr_2: -712.8587225878063 - sys_corr_3: 9.424364874672388 - sys_corr_4: -310.81026743552223 - sys_corr_5: 162.63611732393898 - sys_corr_6: 728.7752580649696 - sys_corr_7: -76.45444548329307 - sys_corr_8: 508.0244085137416 - sys_corr_9: 158.27207582811076 - sys_corr_10: 47.22082110864786 - sys_corr_11: 34.177741491179496 - sys_corr_12: 13.152729580561742 - sys_corr_13: -117.7021162614959 + sys_corr_2: -712.8587225878059 + sys_corr_3: 9.424364874672593 + sys_corr_4: -310.8102674355179 + sys_corr_5: 162.63611732394463 + sys_corr_6: 728.7752580649699 + sys_corr_7: -76.45444548330305 + sys_corr_8: 508.02440851374087 + sys_corr_9: 158.27207582811056 + sys_corr_10: 47.22082110864825 + sys_corr_11: 34.177741491180264 + sys_corr_12: 13.152729580562465 + sys_corr_13: -117.70211626149496 sys_corr_14: -377.1740405636019 - sys_corr_15: 48.51723655535921 - sys_corr_16: 31.56153128981498 - sys_corr_17: 0.9822152491275007 - sys_corr_18: -2.4619998369348916e-06 - sys_corr_19: 0.0005612970734051026 - sys_corr_20: 0.0005386362464870477 - sys_corr_21: -0.001815465250724656 - sys_corr_22: -0.006347847483481793 - sys_corr_23: 0.017227109060982387 - sys_corr_24: 0.09711895842625598 - sys_corr_25: 0.03514572275551089 - sys_corr_26: 0.04299205294753696 - sys_corr_27: -0.011167609711057146 - sys_corr_28: -0.04891378723110805 - sys_corr_29: -0.09846940785881475 - sys_corr_30: 0.02063997187136929 - sys_corr_31: -0.03877240980632347 - sys_corr_32: 0.06848351774573039 - sys_corr_33: -0.04952056140314971 - sys_corr_34: -0.003110697817064795 + sys_corr_15: 48.51723655536072 + sys_corr_16: 31.561531289814745 + sys_corr_17: 0.9822152491275199 + sys_corr_18: -2.4619998369937883e-06 + sys_corr_19: 0.0005612970734057122 + sys_corr_20: 0.0005386362464866584 + sys_corr_21: -0.0018154652507260658 + sys_corr_22: -0.006347847483479866 + sys_corr_23: 0.01722710906098292 + sys_corr_24: 0.0971189584262743 + sys_corr_25: 0.03514572275551389 + sys_corr_26: 0.04299205294754353 + sys_corr_27: -0.011167609711055196 + sys_corr_28: -0.0489137872311218 + sys_corr_29: -0.09846940785882753 + sys_corr_30: 0.020639971871378508 + sys_corr_31: -0.03877240980640265 + sys_corr_32: 0.0684835177457142 + sys_corr_33: -0.04952056140310505 + sys_corr_34: -0.003110697814741439 stat: 600.0 sys_beam: 1200.0 sys_luminosity: 1400.0 - sys_corr_1: -167.11074525470343 - sys_corr_2: -569.573314600226 - sys_corr_3: -47.732461471837524 - sys_corr_4: -61.80663852923446 - sys_corr_5: 100.02781413206776 - sys_corr_6: 138.327542900984 - sys_corr_7: -68.1364178650373 - sys_corr_8: -175.18878405870703 - sys_corr_9: -517.694932637838 - sys_corr_10: 375.78574105417636 - sys_corr_11: -22.358913549372588 - sys_corr_12: -171.54256789293123 - sys_corr_13: -77.7987263976552 - sys_corr_14: -20.62483812309415 - sys_corr_15: -333.83570107460514 - sys_corr_16: 141.46991248825637 - sys_corr_17: 0.48158322751296384 - sys_corr_18: 4.342515998397655e-06 - sys_corr_19: 0.00012465687701839452 - sys_corr_20: 0.0002705298702991312 - sys_corr_21: 0.0015800747762540462 - sys_corr_22: -0.006142676190768974 - sys_corr_23: -0.010540544502378445 - sys_corr_24: 0.09906325673279748 - sys_corr_25: 0.02814902488221871 - sys_corr_26: 0.004982507679248855 - sys_corr_27: 0.029057225727090522 - sys_corr_28: -0.06471540581684256 - sys_corr_29: -0.04520273973785426 - sys_corr_30: 0.05994446708871603 - sys_corr_31: 0.05655868692291631 - sys_corr_32: -0.01759802246321701 - sys_corr_33: 0.034334691922246696 - sys_corr_34: -0.009203113866061742 + sys_corr_2: -569.5733146002262 + sys_corr_3: -47.73246147183727 + sys_corr_4: -61.806638529232345 + sys_corr_5: 100.02781413206905 + sys_corr_6: 138.32754290098384 + sys_corr_7: -68.13641786503455 + sys_corr_8: -175.18878405870794 + sys_corr_9: -517.694932637839 + sys_corr_10: 375.78574105417664 + sys_corr_11: -22.35891354937338 + sys_corr_12: -171.54256789293112 + sys_corr_13: -77.79872639765557 + sys_corr_14: -20.624838123095753 + sys_corr_15: -333.835701074605 + sys_corr_16: 141.4699124882562 + sys_corr_17: 0.48158322751301486 + sys_corr_18: 4.34251599837717e-06 + sys_corr_19: 0.00012465687701771315 + sys_corr_20: 0.00027052987029853483 + sys_corr_21: 0.0015800747762538781 + sys_corr_22: -0.006142676190772772 + sys_corr_23: -0.010540544502370729 + sys_corr_24: 0.0990632567328151 + sys_corr_25: 0.028149024882223508 + sys_corr_26: 0.004982507679249789 + sys_corr_27: 0.02905722572707052 + sys_corr_28: -0.06471540581683867 + sys_corr_29: -0.04520273973785938 + sys_corr_30: 0.05994446708872569 + sys_corr_31: 0.05655868692284677 + sys_corr_32: -0.017598022463204896 + sys_corr_33: 0.03433469192197419 + sys_corr_34: -0.00920311386761883 stat: 500.0 sys_beam: 800.0 sys_luminosity: 1000.0 - sys_corr_1: -188.20228910192097 - sys_corr_2: -777.7968807961512 - sys_corr_3: -83.523149571827 - sys_corr_4: -219.69021728485177 - sys_corr_5: 118.43402492877796 - sys_corr_6: 252.7137844343597 - sys_corr_7: 294.355545808125 - sys_corr_8: -370.94543280886097 - sys_corr_9: -209.10455100615636 - sys_corr_10: -130.42393782916918 - sys_corr_11: 365.6282260301084 - sys_corr_12: 480.6203850587949 - sys_corr_13: 20.079947758739483 - sys_corr_14: 67.06685990860872 - sys_corr_15: 65.32932344673472 - sys_corr_16: 87.47120757016614 - sys_corr_17: -0.09826105456667454 - sys_corr_18: 8.386171914222564e-06 - sys_corr_19: -0.0010224700247338724 - sys_corr_20: -0.0019943997996906787 - sys_corr_21: 0.0084136973091293 - sys_corr_22: -0.02061594320152601 - sys_corr_23: 0.03529448123666306 - sys_corr_24: 0.18401404863525153 - sys_corr_25: 0.059450908402464545 - sys_corr_26: 0.005920112777482507 - sys_corr_27: 0.038432895713877376 - sys_corr_28: 0.01778891141365446 - sys_corr_29: -0.04235602286263034 - sys_corr_30: 0.019926253823197022 - sys_corr_31: 0.017823211055328757 - sys_corr_32: -0.028407360893841153 - sys_corr_33: -0.015168614203903776 - sys_corr_34: -0.00999576404121969 + sys_corr_2: -777.7968807961518 + sys_corr_3: -83.52314957182645 + sys_corr_4: -219.69021728484898 + sys_corr_5: 118.43402492878249 + sys_corr_6: 252.71378443435947 + sys_corr_7: 294.35554580813175 + sys_corr_8: -370.94543280885694 + sys_corr_9: -209.10455100615619 + sys_corr_10: -130.4239378291688 + sys_corr_11: 365.62822603010704 + sys_corr_12: 480.6203850587957 + sys_corr_13: 20.07994775873992 + sys_corr_14: 67.0668599086105 + sys_corr_15: 65.32932344673436 + sys_corr_16: 87.47120757016629 + sys_corr_17: -0.09826105456671294 + sys_corr_18: 8.386171914254327e-06 + sys_corr_19: -0.0010224700247347138 + sys_corr_20: -0.001994399799692106 + sys_corr_21: 0.008413697309132728 + sys_corr_22: -0.020615943201529086 + sys_corr_23: 0.03529448123666261 + sys_corr_24: 0.1840140486352533 + sys_corr_25: 0.05945090840246413 + sys_corr_26: 0.005920112777465722 + sys_corr_27: 0.03843289571388579 + sys_corr_28: 0.017788911413655146 + sys_corr_29: -0.042356022862622106 + sys_corr_30: 0.019926253823183634 + sys_corr_31: 0.017823211055244922 + sys_corr_32: -0.028407360893866834 + sys_corr_33: -0.015168614204167777 + sys_corr_34: -0.009995764040586337 stat: 500.0 sys_beam: 900.0 sys_luminosity: 1000.0 - sys_corr_1: -20.418282214869066 - sys_corr_2: -294.128388854442 - sys_corr_3: -58.60919723330269 - sys_corr_4: -198.41896719160766 - sys_corr_5: 53.836537785331174 - sys_corr_6: 94.56972392250604 - sys_corr_7: -235.80701606356234 - sys_corr_8: -98.75510182567812 - sys_corr_9: -143.68649816865596 - sys_corr_10: -129.97796340553987 - sys_corr_11: 34.287470713688585 - sys_corr_12: 106.63233272961433 - sys_corr_13: -66.03659873895782 - sys_corr_14: -27.168441642658422 - sys_corr_15: -173.44340111205508 - sys_corr_16: -444.7463117440774 - sys_corr_17: -0.24157992028818057 - sys_corr_18: -1.9035352315276237e-05 - sys_corr_19: -0.0020680211971272366 - sys_corr_20: -0.002768681927241517 - sys_corr_21: 0.008251447625955019 - sys_corr_22: -0.017362115654713663 - sys_corr_23: 0.0005594231669970876 - sys_corr_24: 0.00048017663069296006 - sys_corr_25: 0.041775962924260265 - sys_corr_26: -0.0019150653015100835 - sys_corr_27: -0.03489947235145362 - sys_corr_28: 0.16155295845034465 - sys_corr_29: 0.045016400588073914 - sys_corr_30: -0.031051031050705183 - sys_corr_31: 0.007999837636393914 - sys_corr_32: -0.1345409740234758 - sys_corr_33: 0.08854643213947719 - sys_corr_34: -0.03573913245167926 + sys_corr_2: -294.1283888544421 + sys_corr_3: -58.60919723330274 + sys_corr_4: -198.4189671916063 + sys_corr_5: 53.83653778533482 + sys_corr_6: 94.56972392250577 + sys_corr_7: -235.80701606356038 + sys_corr_8: -98.75510182568121 + sys_corr_9: -143.68649816865553 + sys_corr_10: -129.97796340553992 + sys_corr_11: 34.28747071368873 + sys_corr_12: 106.6323327296142 + sys_corr_13: -66.03659873895785 + sys_corr_14: -27.168441642658404 + sys_corr_15: -173.4434011120551 + sys_corr_16: -444.74631174407733 + sys_corr_17: -0.24157992028810552 + sys_corr_18: -1.9035352315173746e-05 + sys_corr_19: -0.0020680211971279166 + sys_corr_20: -0.0027686819272412073 + sys_corr_21: 0.008251447625954055 + sys_corr_22: -0.01736211565471414 + sys_corr_23: 0.0005594231670010069 + sys_corr_24: 0.0004801766306475359 + sys_corr_25: 0.04177596292425628 + sys_corr_26: -0.0019150653015336523 + sys_corr_27: -0.0348994723514428 + sys_corr_28: 0.16155295845037193 + sys_corr_29: 0.045016400588150714 + sys_corr_30: -0.03105103105077219 + sys_corr_31: 0.007999837636309516 + sys_corr_32: -0.13454097402344453 + sys_corr_33: 0.08854643213837997 + sys_corr_34: -0.035739132455740404 stat: 400.0 sys_beam: 200.0 sys_luminosity: 300.0 - sys_corr_1: -1418.5660286961804 - sys_corr_2: -300.83618976028646 + sys_corr_2: -300.8361897602871 sys_corr_3: -372.17857782986243 - sys_corr_4: 110.85229077349138 - sys_corr_5: 213.07294567190755 - sys_corr_6: 192.03560835810046 - sys_corr_7: -315.0880721533769 - sys_corr_8: -688.389231807664 - sys_corr_9: 537.9263076607414 - sys_corr_10: 188.2713964977463 - sys_corr_11: -46.3728491490399 - sys_corr_12: -58.69340052788875 - sys_corr_13: -14.504876419343034 - sys_corr_14: -14.744707792059215 - sys_corr_15: 3.8807055752414743 - sys_corr_16: 8.66452881632407 - sys_corr_17: 0.8337970308503326 - sys_corr_18: -3.098814478249894e-06 - sys_corr_19: -8.957681649067556e-05 - sys_corr_20: -0.0002853717212049436 - sys_corr_21: 0.0010659257978352338 - sys_corr_22: 0.0037092495827079847 - sys_corr_23: 0.006878015330544949 - sys_corr_24: -0.19054727226453752 - sys_corr_25: -0.024486657565609662 - sys_corr_26: 0.0053534274545727146 - sys_corr_27: 0.08616988285704642 - sys_corr_28: 0.14996497858208171 - sys_corr_29: 0.11390900690940575 - sys_corr_30: -0.03560935114680982 - sys_corr_31: 0.012681825895916057 - sys_corr_32: -0.03089693251724615 - sys_corr_33: 0.05081019719485488 - sys_corr_34: 0.052787600581333 + sys_corr_4: 110.85229077349663 + sys_corr_5: 213.07294567190775 + sys_corr_6: 192.03560835809975 + sys_corr_7: -315.0880721533624 + sys_corr_8: -688.3892318076679 + sys_corr_9: 537.9263076607407 + sys_corr_10: 188.27139649774628 + sys_corr_11: -46.37284914904026 + sys_corr_12: -58.693400527888706 + sys_corr_13: -14.504876419343022 + sys_corr_14: -14.744707792059414 + sys_corr_15: 3.8807055752414983 + sys_corr_16: 8.664528816324074 + sys_corr_17: 0.8337970308503269 + sys_corr_18: -3.098814478224953e-06 + sys_corr_19: -8.957681649048914e-05 + sys_corr_20: -0.00028537172120501696 + sys_corr_21: 0.0010659257978354304 + sys_corr_22: 0.003709249582708049 + sys_corr_23: 0.006878015330545861 + sys_corr_24: -0.19054727226455634 + sys_corr_25: -0.0244866575656111 + sys_corr_26: 0.005353427454552598 + sys_corr_27: 0.08616988285708459 + sys_corr_28: 0.14996497858208055 + sys_corr_29: 0.11390900690941448 + sys_corr_30: -0.03560935114682134 + sys_corr_31: 0.012681825896083541 + sys_corr_32: -0.030896932517204923 + sys_corr_33: 0.05081019719614959 + sys_corr_34: 0.052787600579011086 stat: 900.0 sys_beam: 1200.0 sys_luminosity: 1600.0 - sys_corr_1: -379.7758627502127 - sys_corr_2: -614.702742631885 - sys_corr_3: 806.9723200388605 - sys_corr_4: 129.34897826869812 - sys_corr_5: 329.5697346931343 - sys_corr_6: 180.1001765648686 - sys_corr_7: -83.25772608032091 - sys_corr_8: -249.97342476735562 - sys_corr_9: -217.19952916877614 - sys_corr_10: -625.126074096715 - sys_corr_11: -89.05430339410013 - sys_corr_12: -320.1639682551919 - sys_corr_13: 70.13671643344883 - sys_corr_14: -28.02170633911008 - sys_corr_15: 56.046822735985636 - sys_corr_16: 47.589118060404786 - sys_corr_17: 0.4556251546296614 - sys_corr_18: 1.1495839610964414e-05 - sys_corr_19: 0.00013258230364422347 - sys_corr_20: 0.0001381739901380239 - sys_corr_21: -0.005874689172628592 - sys_corr_22: 0.010501500264532582 - sys_corr_23: -0.01794623114827708 - sys_corr_24: -0.21644468180010468 - sys_corr_25: -0.03488192226887612 - sys_corr_26: -0.06857859750272072 - sys_corr_27: -0.049221237602540484 - sys_corr_28: 0.07731091052149563 - sys_corr_29: 0.07604399926457621 - sys_corr_30: -0.025643183602270476 - sys_corr_31: -0.027707930572605736 - sys_corr_32: -0.039392965654304765 - sys_corr_33: 0.008744923900361117 - sys_corr_34: 0.005484652230440729 + sys_corr_2: -614.7027426318841 + sys_corr_3: 806.9723200388609 + sys_corr_4: 129.3489782687054 + sys_corr_5: 329.5697346931325 + sys_corr_6: 180.10017656486775 + sys_corr_7: -83.25772608031659 + sys_corr_8: -249.97342476735633 + sys_corr_9: -217.19952916877463 + sys_corr_10: -625.1260740967149 + sys_corr_11: -89.05430339409723 + sys_corr_12: -320.1639682551923 + sys_corr_13: 70.13671643344865 + sys_corr_14: -28.02170633911111 + sys_corr_15: 56.04682273598595 + sys_corr_16: 47.58911806040465 + sys_corr_17: 0.45562515462967046 + sys_corr_18: 1.149583961098205e-05 + sys_corr_19: 0.00013258230364433942 + sys_corr_20: 0.00013817399013878702 + sys_corr_21: -0.005874689172630374 + sys_corr_22: 0.0105015002645333 + sys_corr_23: -0.017946231148278636 + sys_corr_24: -0.21644468180012844 + sys_corr_25: -0.03488192226888277 + sys_corr_26: -0.06857859750270756 + sys_corr_27: -0.04922123760254109 + sys_corr_28: 0.07731091052149813 + sys_corr_29: 0.0760439992645911 + sys_corr_30: -0.025643183602308793 + sys_corr_31: -0.027707930572531004 + sys_corr_32: -0.039392965654265095 + sys_corr_33: 0.008744923900430737 + sys_corr_34: 0.005484652229986684 stat: 700.0 sys_beam: 1000.0 sys_luminosity: 1400.0 - sys_corr_1: -239.61349262110903 sys_corr_2: -678.8206626587207 - sys_corr_3: 43.04893366922258 - sys_corr_4: -55.83800780748894 - sys_corr_5: -634.499154269975 - sys_corr_6: -25.947554268123866 - sys_corr_7: 41.427904422469275 - sys_corr_8: -54.053308811602285 - sys_corr_9: -16.362379243606593 - sys_corr_10: -129.38273499463483 - sys_corr_11: -592.7873743872755 - sys_corr_12: 256.3760680903285 - sys_corr_13: -265.5698980460149 - sys_corr_14: 43.29483884631226 - sys_corr_15: -1.6211538751018917 - sys_corr_16: 48.76481505905378 - sys_corr_17: 0.809829264135287 - sys_corr_18: -2.8081644487259427e-06 - sys_corr_19: 0.00010808868172066936 - sys_corr_20: 0.001635589344699784 - sys_corr_21: -0.00017695688461365108 - sys_corr_22: -0.0018627281863186546 - sys_corr_23: -0.007389095578738441 - sys_corr_24: -0.09727117032053585 - sys_corr_25: -0.004215152100620265 - sys_corr_26: -0.00531890952950511 - sys_corr_27: -0.013228979704683317 - sys_corr_28: 0.002784867494607145 - sys_corr_29: 0.07434987123378306 - sys_corr_30: -0.033407111180509784 - sys_corr_31: 0.020745837975215568 - sys_corr_32: -0.03494504746873362 - sys_corr_33: 0.04376355950975352 - sys_corr_34: -0.02172061471681362 + sys_corr_3: 43.04893366922303 + sys_corr_4: -55.83800780750276 + sys_corr_5: -634.4991542699746 + sys_corr_6: -25.947554268122953 + sys_corr_7: 41.427904422470746 + sys_corr_8: -54.053308811601546 + sys_corr_9: -16.362379243605634 + sys_corr_10: -129.3827349946374 + sys_corr_11: -592.7873743872756 + sys_corr_12: 256.376068090325 + sys_corr_13: -265.5698980460146 + sys_corr_14: 43.29483884631206 + sys_corr_15: -1.6211538751021453 + sys_corr_16: 48.76481505905352 + sys_corr_17: 0.8098292641352782 + sys_corr_18: -2.8081644488668546e-06 + sys_corr_19: 0.00010808868172042699 + sys_corr_20: 0.0016355893447000552 + sys_corr_21: -0.00017695688461455728 + sys_corr_22: -0.0018627281863201567 + sys_corr_23: -0.007389095578738002 + sys_corr_24: -0.09727117032053997 + sys_corr_25: -0.0042151521006173415 + sys_corr_26: -0.005318909529497028 + sys_corr_27: -0.01322897970468228 + sys_corr_28: 0.0027848674946107585 + sys_corr_29: 0.07434987123379137 + sys_corr_30: -0.033407111180520054 + sys_corr_31: 0.020745837975269153 + sys_corr_32: -0.03494504746870314 + sys_corr_33: 0.04376355950908848 + sys_corr_34: -0.021720614718830137 stat: 600.0 sys_beam: 1000.0 sys_luminosity: 1300.0 - sys_corr_1: -222.80016800556484 sys_corr_2: -742.5368422506577 - sys_corr_3: -36.8272748602642 - sys_corr_4: -408.192048198211 - sys_corr_5: 263.337600274069 - sys_corr_6: -456.734990608118 - sys_corr_7: -7.855868883315059 - sys_corr_8: 78.7247284309053 - sys_corr_9: 44.68970834520459 - sys_corr_10: 42.11339132489611 - sys_corr_11: -238.17127568567935 - sys_corr_12: 147.6273626390351 + sys_corr_3: -36.82727486026367 + sys_corr_4: -408.1920481982058 + sys_corr_5: 263.33760027407544 + sys_corr_6: -456.73499060811815 + sys_corr_7: -7.855868883316092 + sys_corr_8: 78.72472843090611 + sys_corr_9: 44.689708345204586 + sys_corr_10: 42.113391324895055 + sys_corr_11: -238.17127568567926 + sys_corr_12: 147.62736263903827 sys_corr_13: 522.6255945867229 - sys_corr_14: -164.03665899925022 - sys_corr_15: -66.06062046337215 - sys_corr_16: 10.446280909012556 - sys_corr_17: 0.7081767021411348 - sys_corr_18: -4.695676677119722e-06 - sys_corr_19: -0.0001868136902926309 - sys_corr_20: 0.000835749485750196 - sys_corr_21: -0.0014647779094920056 - sys_corr_22: 0.0005052468688517873 - sys_corr_23: 0.01511537237976092 - sys_corr_24: -0.004813289205308594 - sys_corr_25: 0.024600067592098613 - sys_corr_26: 0.02837806872979211 - sys_corr_27: -0.002254224212950835 - sys_corr_28: -0.053259457136311486 - sys_corr_29: -0.04791596442701525 - sys_corr_30: 0.0681923382744364 - sys_corr_31: 0.04485150499439751 - sys_corr_32: 2.8937518308521544e-05 - sys_corr_33: 0.00247769781776522 - sys_corr_34: 0.01624354351478134 + sys_corr_14: -164.03665899925042 + sys_corr_15: -66.0606204633717 + sys_corr_16: 10.446280909012897 + sys_corr_17: 0.7081767021411463 + sys_corr_18: -4.695676677081322e-06 + sys_corr_19: -0.0001868136902926952 + sys_corr_20: 0.0008357494857507038 + sys_corr_21: -0.0014647779094907588 + sys_corr_22: 0.0005052468688521042 + sys_corr_23: 0.015115372379762826 + sys_corr_24: -0.00481328920528963 + sys_corr_25: 0.02460006759209741 + sys_corr_26: 0.028378068729793777 + sys_corr_27: -0.0022542242129545463 + sys_corr_28: -0.05325945713631112 + sys_corr_29: -0.04791596442704287 + sys_corr_30: 0.06819233827443441 + sys_corr_31: 0.044851504994359914 + sys_corr_32: 2.8937518309524204e-05 + sys_corr_33: 0.0024776978181886775 + sys_corr_34: 0.016243543514662586 stat: 600.0 sys_beam: 900.0 sys_luminosity: 1200.0 - sys_corr_1: -221.03406480331822 sys_corr_2: -598.7026972313603 - sys_corr_3: 7.879832997776385 - sys_corr_4: -218.47633151977615 - sys_corr_5: 119.79805532288195 - sys_corr_6: 540.0535716310895 - sys_corr_7: -14.335697968361968 - sys_corr_8: 370.33754643475316 - sys_corr_9: 156.56323982872624 - sys_corr_10: 48.85089017217374 - sys_corr_11: -72.25805431862382 - sys_corr_12: -60.236085152793216 - sys_corr_13: 166.24096100027964 - sys_corr_14: 496.04191921051756 - sys_corr_15: -42.90701380970265 - sys_corr_16: -16.03726295711185 - sys_corr_17: 0.4785205369484593 - sys_corr_18: -4.710614020048994e-06 - sys_corr_19: -9.20596815872463e-05 - sys_corr_20: -0.0012894448180824792 - sys_corr_21: 0.005305379878287117 - sys_corr_22: -0.004502053808523869 - sys_corr_23: 0.009383386501251282 - sys_corr_24: 0.1241067869378707 - sys_corr_25: 0.03652483327628769 - sys_corr_26: -0.026124954404075508 - sys_corr_27: 0.027004757545574683 - sys_corr_28: -0.022177739726991944 - sys_corr_29: -0.04456292446841822 - sys_corr_30: 0.02875750635448535 - sys_corr_31: 0.05203761053449261 - sys_corr_32: 0.0586078660639764 - sys_corr_33: -0.05914759281192592 - sys_corr_34: 0.0033480429937501 + sys_corr_3: 7.879832997776759 + sys_corr_4: -218.47633151977286 + sys_corr_5: 119.79805532288626 + sys_corr_6: 540.0535716310892 + sys_corr_7: -14.335697968369436 + sys_corr_8: 370.33754643475294 + sys_corr_9: 156.56323982872613 + sys_corr_10: 48.8508901721728 + sys_corr_11: -72.25805431862459 + sys_corr_12: -60.236085152794395 + sys_corr_13: 166.2409610002786 + sys_corr_14: 496.0419192105175 + sys_corr_15: -42.90701380970428 + sys_corr_16: -16.037262957111544 + sys_corr_17: 0.47852053694841873 + sys_corr_18: -4.710614020133946e-06 + sys_corr_19: -9.20596815878394e-05 + sys_corr_20: -0.0012894448180819224 + sys_corr_21: 0.005305379878285471 + sys_corr_22: -0.004502053808524988 + sys_corr_23: 0.00938338650125305 + sys_corr_24: 0.1241067869379027 + sys_corr_25: 0.036524833276287104 + sys_corr_26: -0.026124954404063743 + sys_corr_27: 0.02700475754557667 + sys_corr_28: -0.022177739727000635 + sys_corr_29: -0.04456292446846311 + sys_corr_30: 0.028757506354543067 + sys_corr_31: 0.05203761053446031 + sys_corr_32: 0.05860786606393608 + sys_corr_33: -0.05914759281178291 + sys_corr_34: 0.0033480429964207943 stat: 600.0 sys_beam: 800.0 sys_luminosity: 1100.0 - sys_corr_1: -175.95234830648135 - sys_corr_2: -458.29719201587636 - sys_corr_3: -25.221580090315847 - sys_corr_4: 34.36989661893009 - sys_corr_5: 36.823678063795654 - sys_corr_6: 68.23139353147354 - sys_corr_7: -45.66847954320662 - sys_corr_8: -111.32792227020646 - sys_corr_9: -424.8650642158514 - sys_corr_10: 408.5006539031898 - sys_corr_11: -128.01638358132988 - sys_corr_12: -105.17863116654347 - sys_corr_13: 49.58952197883063 - sys_corr_14: 17.210940422189474 - sys_corr_15: 392.3340808181992 - sys_corr_16: -123.20759730685347 - sys_corr_17: 0.7580998432848071 - sys_corr_18: 5.007363639324624e-06 - sys_corr_19: -0.00036884888231146186 - sys_corr_20: -0.0012978386362287946 - sys_corr_21: 0.005410694702775865 - sys_corr_22: -0.013313942732979372 - sys_corr_23: 0.05115695988736416 - sys_corr_24: 0.23458858072676236 - sys_corr_25: 0.06360147645469767 - sys_corr_26: 0.013309433725921567 - sys_corr_27: -0.04071310626280849 - sys_corr_28: -0.028177852122879966 - sys_corr_29: -0.1799505617141715 - sys_corr_30: -0.02169242324782223 - sys_corr_31: -0.007009667327721166 - sys_corr_32: 0.03717354123857821 - sys_corr_33: -0.12043966335792472 - sys_corr_34: 0.01543371410455415 + sys_corr_2: -458.2971920158765 + sys_corr_3: -25.221580090315616 + sys_corr_4: 34.36989661893115 + sys_corr_5: 36.82367806379523 + sys_corr_6: 68.2313935314736 + sys_corr_7: -45.66847954320388 + sys_corr_8: -111.32792227020762 + sys_corr_9: -424.8650642158528 + sys_corr_10: 408.5006539031902 + sys_corr_11: -128.01638358133124 + sys_corr_12: -105.17863116654289 + sys_corr_13: 49.58952197883074 + sys_corr_14: 17.210940422190852 + sys_corr_15: 392.3340808181993 + sys_corr_16: -123.20759730685332 + sys_corr_17: 0.758099843284734 + sys_corr_18: 5.007363639458017e-06 + sys_corr_19: -0.00036884888231158573 + sys_corr_20: -0.0012978386362298496 + sys_corr_21: 0.0054106947027759795 + sys_corr_22: -0.013313942732976982 + sys_corr_23: 0.051156959887365086 + sys_corr_24: 0.23458858072680083 + sys_corr_25: 0.06360147645469062 + sys_corr_26: 0.013309433725949454 + sys_corr_27: -0.04071310626281232 + sys_corr_28: -0.02817785212289181 + sys_corr_29: -0.17995056171421395 + sys_corr_30: -0.021692423247824093 + sys_corr_31: -0.00700966732790282 + sys_corr_32: 0.037173541238498344 + sys_corr_33: -0.12043966335736828 + sys_corr_34: 0.015433714109959955 stat: 500.0 sys_beam: 700.0 sys_luminosity: 900.0 - sys_corr_1: -183.14713236431768 - sys_corr_2: 567.3613770804149 - sys_corr_3: 468.56312146099094 - sys_corr_4: -942.5696139985873 - sys_corr_5: -309.77329328945194 - sys_corr_6: 193.68459039286637 - sys_corr_7: 711.2139889472766 - sys_corr_8: -281.5128856875479 - sys_corr_9: 108.21391439053171 - sys_corr_10: 77.90499127010314 - sys_corr_11: -58.041274291234444 - sys_corr_12: -198.5639555860381 - sys_corr_13: 23.54786254952854 - sys_corr_14: -43.82890699205783 - sys_corr_15: -20.50657414285486 - sys_corr_16: -67.43375805284023 - sys_corr_17: 1.4190064875049369 - sys_corr_18: -3.892991343602838e-06 - sys_corr_19: -0.00017797671767751046 - sys_corr_20: -0.0017744229331906653 - sys_corr_21: 0.005908187636415936 - sys_corr_22: -0.014350998864706447 - sys_corr_23: 0.02762243269222977 - sys_corr_24: 0.18750360514629275 - sys_corr_25: 0.05462605794528981 - sys_corr_26: 0.010284578419506411 - sys_corr_27: -0.040815268044172244 - sys_corr_28: -0.0392171074296804 - sys_corr_29: -0.1371256172369289 - sys_corr_30: 0.017759500556972105 - sys_corr_31: 0.06695235138005146 - sys_corr_32: -0.00374669242826696 - sys_corr_33: -0.061967289524856445 - sys_corr_34: -0.019287334663180073 + sys_corr_2: 567.3613770804153 + sys_corr_3: 468.5631214609907 + sys_corr_4: -942.5696139985935 + sys_corr_5: -309.77329328943574 + sys_corr_6: 193.68459039286734 + sys_corr_7: 711.2139889472825 + sys_corr_8: -281.51288568753813 + sys_corr_9: 108.21391439053173 + sys_corr_10: 77.90499127010344 + sys_corr_11: -58.04127429123355 + sys_corr_12: -198.56395558603836 + sys_corr_13: 23.547862549528542 + sys_corr_14: -43.82890699205807 + sys_corr_15: -20.506574142854802 + sys_corr_16: -67.4337580528403 + sys_corr_17: 1.4190064875049482 + sys_corr_18: -3.892991343558439e-06 + sys_corr_19: -0.0001779767176778534 + sys_corr_20: -0.0017744229331917573 + sys_corr_21: 0.005908187636416397 + sys_corr_22: -0.014350998864710219 + sys_corr_23: 0.027622432692232517 + sys_corr_24: 0.18750360514632944 + sys_corr_25: 0.054626057945292544 + sys_corr_26: 0.01028457841953876 + sys_corr_27: -0.04081526804418747 + sys_corr_28: -0.0392171074296807 + sys_corr_29: -0.1371256172369678 + sys_corr_30: 0.01775950055697494 + sys_corr_31: 0.06695235137986345 + sys_corr_32: -0.0037466924283145976 + sys_corr_33: -0.06196728952533849 + sys_corr_34: -0.019287334660444688 stat: 600.0 sys_beam: 1000.0 sys_luminosity: 1400.0 - sys_corr_1: -108.57118702106705 - sys_corr_2: 839.8291501072293 - sys_corr_3: 459.8390870183657 - sys_corr_4: -925.6968612905044 - sys_corr_5: -400.4040360456309 - sys_corr_6: 42.68917936257094 - sys_corr_7: -752.2174879814365 - sys_corr_8: -53.07108189474481 - sys_corr_9: -128.09208022343634 - sys_corr_10: -32.98357281980944 - sys_corr_11: 74.02432402617801 - sys_corr_12: 78.5267575038786 - sys_corr_13: 36.42357651871526 - sys_corr_14: 39.17038903485109 - sys_corr_15: 53.70701716655165 - sys_corr_16: 94.08338628291777 - sys_corr_17: 0.6888256080273181 - sys_corr_18: 4.136991764242596e-07 - sys_corr_19: -0.000857665038759362 - sys_corr_20: -0.0026926244135948014 - sys_corr_21: 0.0075394244035477806 - sys_corr_22: -0.01576189784794336 - sys_corr_23: 0.04972357343844988 - sys_corr_24: 0.14135531791323716 - sys_corr_25: 0.08199691279107951 - sys_corr_26: 0.010188403737656443 - sys_corr_27: 0.02352486740748513 - sys_corr_28: -0.04847116685701623 - sys_corr_29: -0.03684786732394954 - sys_corr_30: -0.0070126705255896095 - sys_corr_31: 0.01275766566589463 - sys_corr_32: 0.022736517156611544 - sys_corr_33: -0.04112496966862067 - sys_corr_34: 0.018462409568420584 + sys_corr_2: 839.8291501072298 + sys_corr_3: 459.83908701836526 + sys_corr_4: -925.6968612905123 + sys_corr_5: -400.4040360456139 + sys_corr_6: 42.689179362571416 + sys_corr_7: -752.2174879814357 + sys_corr_8: -53.071081894755764 + sys_corr_9: -128.09208022343665 + sys_corr_10: -32.983572819809304 + sys_corr_11: 74.02432402617757 + sys_corr_12: 78.5267575038791 + sys_corr_13: 36.423576518715215 + sys_corr_14: 39.17038903485127 + sys_corr_15: 53.70701716655172 + sys_corr_16: 94.08338628291769 + sys_corr_17: 0.6888256080273318 + sys_corr_18: 4.136991763901693e-07 + sys_corr_19: -0.0008576650387597874 + sys_corr_20: -0.002692624413594671 + sys_corr_21: 0.00753942440354821 + sys_corr_22: -0.01576189784794326 + sys_corr_23: 0.04972357343845047 + sys_corr_24: 0.14135531791325082 + sys_corr_25: 0.08199691279107578 + sys_corr_26: 0.010188403737671355 + sys_corr_27: 0.023524867407479545 + sys_corr_28: -0.04847116685703295 + sys_corr_29: -0.03684786732397083 + sys_corr_30: -0.007012670525575931 + sys_corr_31: 0.012757665665888493 + sys_corr_32: 0.02273651715658992 + sys_corr_33: -0.041124969668091094 + sys_corr_34: 0.018462409570258135 stat: 700.0 sys_beam: 500.0 sys_luminosity: 700.0 diff --git a/nnpdf_data/nnpdf_data/new_commondata/LHCB_WPWM_7TEV_MUON/uncertainties.yaml b/nnpdf_data/nnpdf_data/new_commondata/LHCB_WPWM_7TEV_MUON/uncertainties.yaml index 57901279bf..974212ee0a 100644 --- a/nnpdf_data/nnpdf_data/new_commondata/LHCB_WPWM_7TEV_MUON/uncertainties.yaml +++ b/nnpdf_data/nnpdf_data/new_commondata/LHCB_WPWM_7TEV_MUON/uncertainties.yaml @@ -144,579 +144,579 @@ definitions: treatment: MULT type: LHCBLUMI7TEV bins: -- sys_corr_1: -2989.058480119807 - sys_corr_2: 1741.2352734197561 - sys_corr_3: 250.25092532668643 - sys_corr_4: -192.3129135381234 - sys_corr_5: 109.1852381187949 - sys_corr_6: 102.56608902789063 - sys_corr_7: -110.44616534215697 - sys_corr_8: 90.69732310440781 - sys_corr_9: -130.2139122911389 - sys_corr_10: 344.38027920484757 - sys_corr_11: 52.22339273467959 - sys_corr_12: -53.06781238153775 - sys_corr_13: 1.4345565335485402 - sys_corr_14: 6.8018941975027944 - sys_corr_15: -2.4411069949310007 - sys_corr_16: 1.5246755785071675 - sys_corr_17: 0.4789441759397724 - sys_corr_18: -0.03726763257395286 - sys_corr_19: 5.1447525234714585e-05 - sys_corr_20: -6.20763161342488e-05 - sys_corr_21: 0.0004978535045618092 - sys_corr_22: -0.0013325438576274012 - sys_corr_23: -0.031539125057005866 - sys_corr_24: 0.0010900115764557424 - sys_corr_25: 0.0005255700735485576 - sys_corr_26: 0.0008821259852684616 - sys_corr_27: 0.019560124807926627 - sys_corr_28: 0.02273515254319236 - sys_corr_29: -0.07187191336322335 - sys_corr_30: 0.007576816752286737 - sys_corr_31: -0.0011467786332892524 - sys_corr_32: -0.05970827174257557 - sys_corr_33: -0.006654182936865293 +- sys_corr_1: -2989.0584801198097 + sys_corr_2: 1741.235273419759 + sys_corr_3: 250.25092532668617 + sys_corr_4: -192.3129135381235 + sys_corr_5: 109.18523811879507 + sys_corr_6: 102.5660890278907 + sys_corr_7: -110.44616534215558 + sys_corr_8: 90.69732310440682 + sys_corr_9: -130.2139122911393 + sys_corr_10: 344.3802792048472 + sys_corr_11: 52.223392734681866 + sys_corr_12: -53.06781238153589 + sys_corr_13: 1.4345565335488928 + sys_corr_14: 6.801894197502721 + sys_corr_15: -2.4411069949309856 + sys_corr_16: 1.5246755785071902 + sys_corr_17: 0.4789441759397834 + sys_corr_18: -0.03726763257395264 + sys_corr_19: 5.144752523465234e-05 + sys_corr_20: -6.207631613456992e-05 + sys_corr_21: 0.0004978535045622172 + sys_corr_22: -0.0013325438576271464 + sys_corr_23: -0.03153912505699979 + sys_corr_24: 0.0010900115764458024 + sys_corr_25: 0.0005255700735465567 + sys_corr_26: 0.000882125985270972 + sys_corr_27: 0.019560124807931616 + sys_corr_28: 0.02273515254318484 + sys_corr_29: -0.07187191336322789 + sys_corr_30: 0.007576816752288809 + sys_corr_31: -0.0011467786332942042 + sys_corr_32: -0.059708271742577396 + sys_corr_33: -0.006654182936852872 stat: 1200.0 sys_beam: 2000.0 sys_luminosity: 3300.0 -- sys_corr_1: 1771.220332867379 - sys_corr_2: 2177.6145552461853 - sys_corr_3: -1184.9827692072558 - sys_corr_4: -461.5478923377516 +- sys_corr_1: 1771.2203328673806 + sys_corr_2: 2177.614555246184 + sys_corr_3: -1184.9827692072565 + sys_corr_4: -461.54789233775153 sys_corr_5: 133.76585875962257 - sys_corr_6: 22.71367328176275 - sys_corr_7: -20.897665173395517 - sys_corr_8: 7.501098488921938 - sys_corr_9: 13.044557570048621 - sys_corr_10: 223.36135844801754 - sys_corr_11: -195.90794289522734 - sys_corr_12: 34.82826694483274 - sys_corr_13: -63.49481139806769 - sys_corr_14: -28.14939334330933 - sys_corr_15: -11.796227250772377 - sys_corr_16: 6.619959021198485 - sys_corr_17: 0.4660844529207953 - sys_corr_18: -0.024527776226358395 - sys_corr_19: 0.00015326127967460704 - sys_corr_20: -6.435082313963453e-05 - sys_corr_21: 0.0004990479802600822 - sys_corr_22: -0.003561554370896553 - sys_corr_23: 0.009260786790764237 - sys_corr_24: 0.0037262370005344695 - sys_corr_25: 0.007849551180116394 - sys_corr_26: 0.0365288169762594 - sys_corr_27: 0.011769594845575238 - sys_corr_28: -0.004908830761464272 - sys_corr_29: -0.02144099412836064 - sys_corr_30: 0.011494075680688751 - sys_corr_31: -0.013169351521870857 - sys_corr_32: -0.06059498306492351 - sys_corr_33: 0.027723060471513898 + sys_corr_6: 22.713673281762514 + sys_corr_7: -20.89766517339527 + sys_corr_8: 7.501098488921535 + sys_corr_9: 13.044557570048697 + sys_corr_10: 223.36135844801788 + sys_corr_11: -195.90794289522867 + sys_corr_12: 34.82826694482505 + sys_corr_13: -63.49481139806836 + sys_corr_14: -28.149393343309068 + sys_corr_15: -11.796227250772441 + sys_corr_16: 6.619959021198546 + sys_corr_17: 0.46608445292079786 + sys_corr_18: -0.024527776226352684 + sys_corr_19: 0.00015326127967473942 + sys_corr_20: -6.435082313992516e-05 + sys_corr_21: 0.0004990479802600205 + sys_corr_22: -0.0035615543708970338 + sys_corr_23: 0.009260786790764008 + sys_corr_24: 0.0037262370005415046 + sys_corr_25: 0.007849551180115894 + sys_corr_26: 0.03652881697625291 + sys_corr_27: 0.011769594845575583 + sys_corr_28: -0.004908830761473975 + sys_corr_29: -0.02144099412836221 + sys_corr_30: 0.0114940756806874 + sys_corr_31: -0.01316935152187323 + sys_corr_32: -0.0605949830649322 + sys_corr_33: 0.027723060471524077 stat: 900.0 sys_beam: 1900.0 sys_luminosity: 3100.0 -- sys_corr_1: 457.6423183868372 - sys_corr_2: 810.2620334429145 - sys_corr_3: 11.55296667958053 +- sys_corr_1: 457.6423183868378 + sys_corr_2: 810.2620334429141 + sys_corr_3: 11.552966679580127 sys_corr_4: 1818.5878043088792 - sys_corr_5: 351.0991721698314 - sys_corr_6: 109.57413100162576 - sys_corr_7: -59.488702071522866 - sys_corr_8: 39.958569939783665 - sys_corr_9: -30.928425638748738 - sys_corr_10: 56.421922770266036 - sys_corr_11: 209.84239016835662 - sys_corr_12: 197.1176054833613 - sys_corr_13: -87.66815367247078 - sys_corr_14: -34.955026589442326 - sys_corr_15: -13.640980398486386 - sys_corr_16: 10.406309350592801 - sys_corr_17: 0.2102782614228367 - sys_corr_18: 0.09349020488842694 - sys_corr_19: -0.0001512604916088195 - sys_corr_20: -0.00015695497799325707 - sys_corr_21: 0.00044888716312635235 - sys_corr_22: 0.0015404682822178902 - sys_corr_23: 0.0061426344544344876 - sys_corr_24: 0.002520891253960471 - sys_corr_25: 0.006458823244357609 - sys_corr_26: 0.00529225139507421 - sys_corr_27: 0.001655491247235452 - sys_corr_28: 0.0038917464995341664 - sys_corr_29: 0.011598834517023981 - sys_corr_30: -0.018356688839980425 - sys_corr_31: 0.021119036051366544 - sys_corr_32: -0.004574055894171316 - sys_corr_33: 0.002447135548573389 + sys_corr_5: 351.09917216983143 + sys_corr_6: 109.57413100162573 + sys_corr_7: -59.48870207152214 + sys_corr_8: 39.958569939783814 + sys_corr_9: -30.92842563874906 + sys_corr_10: 56.42192277026579 + sys_corr_11: 209.8423901683495 + sys_corr_12: 197.11760548336903 + sys_corr_13: -87.66815367247125 + sys_corr_14: -34.955026589442184 + sys_corr_15: -13.640980398486377 + sys_corr_16: 10.40630935059273 + sys_corr_17: 0.21027826142284176 + sys_corr_18: 0.09349020488842748 + sys_corr_19: -0.00015126049160894448 + sys_corr_20: -0.00015695497799352875 + sys_corr_21: 0.00044888716312601235 + sys_corr_22: 0.0015404682822134533 + sys_corr_23: 0.006142634454438563 + sys_corr_24: 0.0025208912539652468 + sys_corr_25: 0.006458823244358853 + sys_corr_26: 0.005292251395075366 + sys_corr_27: 0.0016554912472323481 + sys_corr_28: 0.0038917464995262257 + sys_corr_29: 0.011598834517018252 + sys_corr_30: -0.0183566888399841 + sys_corr_31: 0.0211190360513657 + sys_corr_32: -0.00457405589417182 + sys_corr_33: 0.0024471355485791864 stat: 800.0 sys_beam: 1600.0 sys_luminosity: 2600.0 -- sys_corr_1: -439.436691573891 - sys_corr_2: 47.626493456246585 - sys_corr_3: -395.14703436491186 - sys_corr_4: 320.16657557659323 - sys_corr_5: -1354.6482786393992 - sys_corr_6: 332.298715261713 - sys_corr_7: -117.78910742798735 - sys_corr_8: 83.24115448245642 - sys_corr_9: -74.73780927882152 - sys_corr_10: -24.116260082799144 - sys_corr_11: -167.96517429340594 - sys_corr_12: 300.4888602396409 - sys_corr_13: 106.78707589636038 - sys_corr_14: 58.71616154917705 - sys_corr_15: -12.516598173843196 - sys_corr_16: 0.7086159625744486 - sys_corr_17: 0.306273733436595 - sys_corr_18: 0.11964665260935833 - sys_corr_19: 6.937506320270905e-05 - sys_corr_20: -0.00029798686433461216 - sys_corr_21: -0.0004997181998814618 - sys_corr_22: 0.0026109894088653858 - sys_corr_23: 0.003638286984324157 - sys_corr_24: 0.001370512003664026 - sys_corr_25: -0.011999409793160297 - sys_corr_26: 0.059999964477266056 - sys_corr_27: -0.014660679850358285 - sys_corr_28: 0.0026763072096645047 - sys_corr_29: 0.014886322049509031 - sys_corr_30: -0.006579970173737585 - sys_corr_31: -0.03430374709979555 - sys_corr_32: 0.013915032423837096 - sys_corr_33: 0.019184615810709182 +- sys_corr_1: -439.43669157389195 + sys_corr_2: 47.62649345624625 + sys_corr_3: -395.1470343649117 + sys_corr_4: 320.166575576593 + sys_corr_5: -1354.648278639396 + sys_corr_6: 332.29871526171416 + sys_corr_7: -117.78910742798519 + sys_corr_8: 83.24115448245679 + sys_corr_9: -74.73780927882216 + sys_corr_10: -24.11626008279868 + sys_corr_11: -167.96517429341804 + sys_corr_12: 300.48886023963513 + sys_corr_13: 106.78707589635839 + sys_corr_14: 58.71616154917696 + sys_corr_15: -12.516598173843375 + sys_corr_16: 0.7086159625744609 + sys_corr_17: 0.3062737334365825 + sys_corr_18: 0.1196466526093551 + sys_corr_19: 6.937506320301623e-05 + sys_corr_20: -0.00029798686433557856 + sys_corr_21: -0.0004997181998818448 + sys_corr_22: 0.0026109894088647517 + sys_corr_23: 0.003638286984321585 + sys_corr_24: 0.0013705120036662285 + sys_corr_25: -0.01199940979315695 + sys_corr_26: 0.05999996447726511 + sys_corr_27: -0.01466067985036193 + sys_corr_28: 0.0026763072096605274 + sys_corr_29: 0.014886322049513578 + sys_corr_30: -0.006579970173738046 + sys_corr_31: -0.0343037470997968 + sys_corr_32: 0.01391503242383377 + sys_corr_33: 0.019184615810700814 stat: 700.0 sys_beam: 1300.0 sys_luminosity: 2100.0 -- sys_corr_1: 248.0143699037267 +- sys_corr_1: 248.01436990372713 sys_corr_2: 404.4526266706796 - sys_corr_3: 32.51636827425121 - sys_corr_4: 167.38742323975615 - sys_corr_5: -256.58238856332895 - sys_corr_6: -1079.538553819482 - sys_corr_7: -167.6189474192061 - sys_corr_8: 61.30136217663614 - sys_corr_9: -44.28445403690739 - sys_corr_10: 82.48578437701754 - sys_corr_11: 94.7405208683309 - sys_corr_12: -9.929809238619493 - sys_corr_13: 371.484657403486 - sys_corr_14: -129.98002394333352 - sys_corr_15: -1.8103718373838549 - sys_corr_16: 0.7471091210113745 - sys_corr_17: 0.4214025328085921 - sys_corr_18: 0.1864689192428191 - sys_corr_19: -0.000268662675479856 - sys_corr_20: -0.0002585137555152672 - sys_corr_21: -0.0022822326953982177 - sys_corr_22: 0.004871900744122065 - sys_corr_23: -0.006226501355936368 - sys_corr_24: -0.010383149004559408 - sys_corr_25: -0.018078414343273053 - sys_corr_26: -0.02014717840698953 - sys_corr_27: -0.020796391752400795 - sys_corr_28: -0.03580261145077902 - sys_corr_29: 0.05079231305699657 - sys_corr_30: -0.02245470721021716 - sys_corr_31: -0.030345415729666533 - sys_corr_32: 0.06074075639357172 - sys_corr_33: -0.03312993954188243 + sys_corr_3: 32.51636827425098 + sys_corr_4: 167.3874232397563 + sys_corr_5: -256.582388563332 + sys_corr_6: -1079.5385538194814 + sys_corr_7: -167.6189474192057 + sys_corr_8: 61.30136217663764 + sys_corr_9: -44.28445403690839 + sys_corr_10: 82.48578437701785 + sys_corr_11: 94.74052086833053 + sys_corr_12: -9.929809238614075 + sys_corr_13: 371.48465740348615 + sys_corr_14: -129.98002394333437 + sys_corr_15: -1.8103718373829414 + sys_corr_16: 0.7471091210113149 + sys_corr_17: 0.42140253280857687 + sys_corr_18: 0.1864689192428194 + sys_corr_19: -0.0002686626754803754 + sys_corr_20: -0.0002585137555145964 + sys_corr_21: -0.0022822326953976907 + sys_corr_22: 0.0048719007441241895 + sys_corr_23: -0.006226501355924812 + sys_corr_24: -0.010383149004565943 + sys_corr_25: -0.01807841434326925 + sys_corr_26: -0.020147178406987584 + sys_corr_27: -0.020796391752394415 + sys_corr_28: -0.03580261145078157 + sys_corr_29: 0.050792313056989495 + sys_corr_30: -0.022454707210208622 + sys_corr_31: -0.03034541572967167 + sys_corr_32: 0.06074075639357655 + sys_corr_33: -0.033129939541903256 stat: 600.0 sys_beam: 1000.0 sys_luminosity: 1600.0 -- sys_corr_1: 294.94564611768664 - sys_corr_2: 295.5199869993109 - sys_corr_3: 102.59708835094253 - sys_corr_4: 54.26177319059393 - sys_corr_5: -96.47469105130163 - sys_corr_6: -71.28275501730451 - sys_corr_7: 79.38038167913638 - sys_corr_8: -135.3508088116309 - sys_corr_9: 553.9962584105299 - sys_corr_10: 205.37799057575683 - sys_corr_11: 156.0822901884267 - sys_corr_12: -49.51882509019517 - sys_corr_13: 117.67735818203333 - sys_corr_14: 430.54611368254984 - sys_corr_15: -89.82562355331319 - sys_corr_16: 1.5321781564613384 - sys_corr_17: 0.30703527338295816 - sys_corr_18: 0.11402215445244224 - sys_corr_19: 0.0002739372589340107 - sys_corr_20: -0.00010407658346781514 - sys_corr_21: -0.00018597975504337306 - sys_corr_22: 0.004813306838651901 - sys_corr_23: 0.009659092259339728 - sys_corr_24: -0.014744312027178333 - sys_corr_25: -0.05971694635339425 - sys_corr_26: -0.05667357161740262 - sys_corr_27: -0.0275689129047225 - sys_corr_28: -0.06756965202420033 - sys_corr_29: 0.012434214728932108 - sys_corr_30: -0.042584589004102086 - sys_corr_31: -0.12867118539479008 - sys_corr_32: 0.04053603386903326 - sys_corr_33: -0.038865165003536414 +- sys_corr_1: 294.94564611768726 + sys_corr_2: 295.5199869993111 + sys_corr_3: 102.59708835094234 + sys_corr_4: 54.261773190593956 + sys_corr_5: -96.47469105130197 + sys_corr_6: -71.2827550173046 + sys_corr_7: 79.3803816791339 + sys_corr_8: -135.3508088116261 + sys_corr_9: 553.9962584105317 + sys_corr_10: 205.37799057575677 + sys_corr_11: 156.08229018842874 + sys_corr_12: -49.518825090189395 + sys_corr_13: 117.6773581820354 + sys_corr_14: 430.5461136825491 + sys_corr_15: -89.82562355331439 + sys_corr_16: 1.5321781564615862 + sys_corr_17: 0.30703527338299896 + sys_corr_18: 0.11402215445245244 + sys_corr_19: 0.00027393725893373717 + sys_corr_20: -0.00010407658346802549 + sys_corr_21: -0.00018597975504394375 + sys_corr_22: 0.004813306838652591 + sys_corr_23: 0.009659092259324473 + sys_corr_24: -0.014744312027180382 + sys_corr_25: -0.05971694635338373 + sys_corr_26: -0.056673571617402926 + sys_corr_27: -0.02756891290470931 + sys_corr_28: -0.06756965202418326 + sys_corr_29: 0.012434214728920596 + sys_corr_30: -0.04258458900410053 + sys_corr_31: -0.12867118539479772 + sys_corr_32: 0.040536033869043114 + sys_corr_33: -0.038865165003563025 stat: 500.0 sys_beam: 700.0 sys_luminosity: 1100.0 -- sys_corr_1: 52.15832457245841 - sys_corr_2: 145.17421178000177 - sys_corr_3: -25.069090952145366 - sys_corr_4: 72.41121212245443 - sys_corr_5: -72.03684627810892 - sys_corr_6: -74.37215030876999 - sys_corr_7: 253.37563413239528 - sys_corr_8: -351.03140380804496 - sys_corr_9: -123.72085839374525 - sys_corr_10: 93.59255615563387 - sys_corr_11: 29.391753093194705 - sys_corr_12: 33.203338971789 - sys_corr_13: 20.104701755272515 - sys_corr_14: 96.92472202516164 - sys_corr_15: 475.75956048926963 - sys_corr_16: -3.262631985571773 - sys_corr_17: 0.2864055062154854 - sys_corr_18: 0.16664531276687533 - sys_corr_19: 0.00023929346533660073 - sys_corr_20: 0.0011273440207949829 - sys_corr_21: -0.00392897818155604 - sys_corr_22: 0.009329597580320018 - sys_corr_23: -0.0031750924114799755 - sys_corr_24: -0.0314869522727434 - sys_corr_25: -0.04929865689623962 - sys_corr_26: -0.04485024408882434 - sys_corr_27: -0.011980410173932046 - sys_corr_28: -0.15470816751854474 - sys_corr_29: 0.026942355019289144 - sys_corr_30: -0.08426679128534605 - sys_corr_31: -0.13948037884473952 - sys_corr_32: 0.07062926208548988 - sys_corr_33: 0.03443581374867994 +- sys_corr_1: 52.15832457245852 + sys_corr_2: 145.1742117800018 + sys_corr_3: -25.06909095214543 + sys_corr_4: 72.41121212245444 + sys_corr_5: -72.03684627810904 + sys_corr_6: -74.37215030877009 + sys_corr_7: 253.37563413238982 + sys_corr_8: -351.03140380804916 + sys_corr_9: -123.72085839374321 + sys_corr_10: 93.59255615563374 + sys_corr_11: 29.391753093193625 + sys_corr_12: 33.203338971790274 + sys_corr_13: 20.104701755271293 + sys_corr_14: 96.92472202516308 + sys_corr_15: 475.75956048926946 + sys_corr_16: -3.262631985572548 + sys_corr_17: 0.28640550621547634 + sys_corr_18: 0.16664531276688135 + sys_corr_19: 0.00023929346533521197 + sys_corr_20: 0.0011273440207940249 + sys_corr_21: -0.003928978181555879 + sys_corr_22: 0.009329597580323909 + sys_corr_23: -0.0031750924114659074 + sys_corr_24: -0.031486952272748406 + sys_corr_25: -0.0492986568962272 + sys_corr_26: -0.04485024408881918 + sys_corr_27: -0.011980410173908633 + sys_corr_28: -0.1547081675185396 + sys_corr_29: 0.026942355019256594 + sys_corr_30: -0.08426679128534494 + sys_corr_31: -0.13948037884475523 + sys_corr_32: 0.07062926208548446 + sys_corr_33: 0.034435813748631756 stat: 500.0 sys_beam: 600.0 sys_luminosity: 1000.0 -- sys_corr_1: 44.7291119927517 - sys_corr_2: 70.35727027289347 - sys_corr_3: 8.05361918795043 - sys_corr_4: 24.099007302993 - sys_corr_5: -11.34947405395106 - sys_corr_6: -19.41148834439991 - sys_corr_7: 52.22811490580616 - sys_corr_8: 9.673620787604367 - sys_corr_9: -8.719120366096565 - sys_corr_10: 22.566591334219986 - sys_corr_11: 11.139339972208107 - sys_corr_12: 18.125669594167018 - sys_corr_13: -15.011572915542072 - sys_corr_14: -2.8255735370026533 - sys_corr_15: -12.163978833083446 - sys_corr_16: -384.2619544657682 - sys_corr_17: -0.14392788705818957 - sys_corr_18: -0.01913452738449493 - sys_corr_19: 0.0018253111370988213 - sys_corr_20: 0.0029748356753397744 - sys_corr_21: -0.011593881070075973 - sys_corr_22: 0.04869941879567023 - sys_corr_23: -0.015070431271914339 - sys_corr_24: -0.0863219318821036 - sys_corr_25: -0.11472784064265686 - sys_corr_26: -0.01600804922785934 - sys_corr_27: 0.0031548240906768697 - sys_corr_28: -0.039440913934889875 - sys_corr_29: 0.0033315825310361855 - sys_corr_30: -0.16546794772041343 - sys_corr_31: -0.19603288039268849 - sys_corr_32: 0.081611260805218 - sys_corr_33: -0.07681146337350113 +- sys_corr_1: 44.729111992751754 + sys_corr_2: 70.35727027289343 + sys_corr_3: 8.053619187950396 + sys_corr_4: 24.099007302993012 + sys_corr_5: -11.349474053951214 + sys_corr_6: -19.41148834439992 + sys_corr_7: 52.22811490580611 + sys_corr_8: 9.673620787603435 + sys_corr_9: -8.719120366096995 + sys_corr_10: 22.566591334219922 + sys_corr_11: 11.13933997220724 + sys_corr_12: 18.12566959416703 + sys_corr_13: -15.01157291554252 + sys_corr_14: -2.8255735370027155 + sys_corr_15: -12.163978833083902 + sys_corr_16: -384.2619544657681 + sys_corr_17: -0.1439278870581393 + sys_corr_18: -0.019134527384502834 + sys_corr_19: 0.0018253111370977674 + sys_corr_20: 0.002974835675340927 + sys_corr_21: -0.011593881070074764 + sys_corr_22: 0.04869941879567346 + sys_corr_23: -0.0150704312718522 + sys_corr_24: -0.08632193188212087 + sys_corr_25: -0.11472784064263443 + sys_corr_26: -0.016008049227861393 + sys_corr_27: 0.0031548240906940734 + sys_corr_28: -0.03944091393488826 + sys_corr_29: 0.0033315825309693527 + sys_corr_30: -0.16546794772039938 + sys_corr_31: -0.19603288039270877 + sys_corr_32: 0.08161126080522786 + sys_corr_33: -0.07681146337355649 stat: 400.0 sys_beam: 200.0 sys_luminosity: 200.0 -- sys_corr_1: -169.7271027136386 - sys_corr_2: 1695.620741810496 - sys_corr_3: 922.6299247770112 - sys_corr_4: -114.70160705048272 - sys_corr_5: -23.638141751803243 - sys_corr_6: -104.62145709849896 - sys_corr_7: 176.45586570929584 - sys_corr_8: -161.52505503573008 - sys_corr_9: 246.03182897670354 - sys_corr_10: -699.2073391140224 - sys_corr_11: -106.95222642368735 - sys_corr_12: 108.5553578187769 - sys_corr_13: -3.192076522213327 - sys_corr_14: -16.4315751604225 - sys_corr_15: 1.7020942175967384 - sys_corr_16: 0.13604655775890478 - sys_corr_17: 0.6432655935964728 - sys_corr_18: 0.0038460190762336574 - sys_corr_19: -0.00011979067517513802 - sys_corr_20: 0.00019812214804594574 - sys_corr_21: -0.0014985622213196203 - sys_corr_22: 0.002948478342616825 - sys_corr_23: -0.04609159724684811 - sys_corr_24: 0.009436141795393801 - sys_corr_25: 0.010857599533762882 - sys_corr_26: 0.07395233429918127 - sys_corr_27: 0.019120017221016878 - sys_corr_28: 0.025051570048514132 - sys_corr_29: -0.10238453445358212 - sys_corr_30: 0.015082546341677576 - sys_corr_31: -0.012392222013041944 - sys_corr_32: -0.055371843980197455 - sys_corr_33: 0.015415679646097406 +- sys_corr_1: -169.72710271363786 + sys_corr_2: 1695.620741810498 + sys_corr_3: 922.6299247770106 + sys_corr_4: -114.7016070504826 + sys_corr_5: -23.638141751803644 + sys_corr_6: -104.62145709849894 + sys_corr_7: 176.45586570929387 + sys_corr_8: -161.52505503572834 + sys_corr_9: 246.03182897670524 + sys_corr_10: -699.2073391140215 + sys_corr_11: -106.95222642369221 + sys_corr_12: 108.55535781877316 + sys_corr_13: -3.192076522214065 + sys_corr_14: -16.431575160422422 + sys_corr_15: 1.7020942175967777 + sys_corr_16: 0.13604655775887814 + sys_corr_17: 0.6432655935964461 + sys_corr_18: 0.0038460190762376113 + sys_corr_19: -0.00011979067517468498 + sys_corr_20: 0.00019812214804628144 + sys_corr_21: -0.0014985622213203997 + sys_corr_22: 0.002948478342615188 + sys_corr_23: -0.046091597246848276 + sys_corr_24: 0.009436141795381903 + sys_corr_25: 0.010857599533762701 + sys_corr_26: 0.07395233429917779 + sys_corr_27: 0.019120017221011233 + sys_corr_28: 0.025051570048494114 + sys_corr_29: -0.10238453445357977 + sys_corr_30: 0.015082546341676818 + sys_corr_31: -0.012392222013045837 + sys_corr_32: -0.055371843980206954 + sys_corr_33: 0.015415679646107011 stat: 900.0 sys_beam: 1000.0 sys_luminosity: 1900.0 -- sys_corr_1: -785.9388900903004 - sys_corr_2: 64.1027069165794 +- sys_corr_1: -785.9388900903019 + sys_corr_2: 64.10270691657861 sys_corr_3: -1587.1798846605675 - sys_corr_4: -157.6056600650722 - sys_corr_5: 131.83155572448254 - sys_corr_6: 150.46702159195107 - sys_corr_7: -50.44303927175269 - sys_corr_8: 46.43372583238201 - sys_corr_9: -63.79158166122867 - sys_corr_10: -491.89383625420413 - sys_corr_11: 363.86601471896967 - sys_corr_12: -58.21559685769558 - sys_corr_13: 122.72990650142101 - sys_corr_14: 46.98972934192286 - sys_corr_15: 18.741360467464396 - sys_corr_16: -7.225898905328154 - sys_corr_17: 0.5732509271069351 - sys_corr_18: -0.021462984399519935 - sys_corr_19: -0.00035315777013912364 - sys_corr_20: -1.7392611957217002e-05 - sys_corr_21: 0.0009468255952668315 - sys_corr_22: 0.001525177942052283 - sys_corr_23: 0.011861733684431778 - sys_corr_24: 0.001626134699462851 - sys_corr_25: 0.004215037804218662 - sys_corr_26: -0.004927944902706523 - sys_corr_27: 0.03880160271165186 - sys_corr_28: 0.038597904464499073 - sys_corr_29: -0.019202433880529304 - sys_corr_30: -0.002069854246519964 - sys_corr_31: 0.008729177514358935 - sys_corr_32: -0.05524560508135324 - sys_corr_33: -0.0432756056542646 + sys_corr_4: -157.60566006507256 + sys_corr_5: 131.8315557244829 + sys_corr_6: 150.4670215919507 + sys_corr_7: -50.44303927175175 + sys_corr_8: 46.43372583238341 + sys_corr_9: -63.79158166122921 + sys_corr_10: -491.8938362542042 + sys_corr_11: 363.8660147189718 + sys_corr_12: -58.21559685768121 + sys_corr_13: 122.72990650142232 + sys_corr_14: 46.989729341922235 + sys_corr_15: 18.741360467464496 + sys_corr_16: -7.225898905328291 + sys_corr_17: 0.5732509271069249 + sys_corr_18: -0.02146298439952427 + sys_corr_19: -0.0003531577701391732 + sys_corr_20: -1.7392611957609497e-05 + sys_corr_21: 0.0009468255952662956 + sys_corr_22: 0.00152517794205182 + sys_corr_23: 0.011861733684442115 + sys_corr_24: 0.0016261346994657206 + sys_corr_25: 0.004215037804217813 + sys_corr_26: -0.004927944902705688 + sys_corr_27: 0.03880160271164232 + sys_corr_28: 0.038597904464484224 + sys_corr_29: -0.01920243388053101 + sys_corr_30: -0.002069854246516468 + sys_corr_31: 0.008729177514350926 + sys_corr_32: -0.055245605081351526 + sys_corr_33: -0.04327560565425 stat: 700.0 sys_beam: 1000.0 sys_luminosity: 1800.0 -- sys_corr_1: -487.5566420614927 - sys_corr_2: -42.85034855953002 - sys_corr_3: -399.1369918377913 - sys_corr_4: 905.4930951965188 - sys_corr_5: 173.89700511554636 +- sys_corr_1: -487.5566420614936 + sys_corr_2: -42.850348559530325 + sys_corr_3: -399.1369918377916 + sys_corr_4: 905.4930951965185 + sys_corr_5: 173.8970051155466 sys_corr_6: 95.96826218655993 - sys_corr_7: -39.3889117942155 - sys_corr_8: 6.935016743258646 - sys_corr_9: 13.278444859228848 - sys_corr_10: -139.38219821846633 - sys_corr_11: -449.4003266505279 - sys_corr_12: -415.4741876345963 - sys_corr_13: 175.2099455416062 - sys_corr_14: 68.0643154908087 - sys_corr_15: 22.25087405500932 - sys_corr_16: -12.839198188644692 - sys_corr_17: 0.4672442791008053 - sys_corr_18: 0.03037271744148199 - sys_corr_19: 0.00034764237885265465 - sys_corr_20: 7.736856753268114e-05 - sys_corr_21: -0.0007820826451248122 - sys_corr_22: -0.005769072633444306 - sys_corr_23: 0.002413902476936384 - sys_corr_24: -0.005293925095372523 - sys_corr_25: -0.0162186159112175 - sys_corr_26: 0.06016930657783288 - sys_corr_27: 0.02616854501689163 - sys_corr_28: 0.0003533295594547545 - sys_corr_29: 0.06470390123484536 - sys_corr_30: 0.016561886732121115 - sys_corr_31: -0.07049892336853758 - sys_corr_32: -0.06240251334822028 - sys_corr_33: -0.0037129126073822054 + sys_corr_7: -39.38891179421488 + sys_corr_8: 6.935016743259113 + sys_corr_9: 13.278444859228738 + sys_corr_10: -139.3821982184661 + sys_corr_11: -449.40032665051325 + sys_corr_12: -415.4741876346124 + sys_corr_13: 175.20994554160765 + sys_corr_14: 68.06431549080844 + sys_corr_15: 22.250874055009252 + sys_corr_16: -12.83919818864458 + sys_corr_17: 0.4672442791007765 + sys_corr_18: 0.030372717441489765 + sys_corr_19: 0.00034764237885214665 + sys_corr_20: 7.736856753305078e-05 + sys_corr_21: -0.000782082645125014 + sys_corr_22: -0.005769072633441289 + sys_corr_23: 0.002413902476935196 + sys_corr_24: -0.005293925095374795 + sys_corr_25: -0.01621861591121672 + sys_corr_26: 0.06016930657782527 + sys_corr_27: 0.026168545016893724 + sys_corr_28: 0.00035332955943481476 + sys_corr_29: 0.0647039012348534 + sys_corr_30: 0.016561886732121608 + sys_corr_31: -0.0704989233685572 + sys_corr_32: -0.062402513348226475 + sys_corr_33: -0.0037129126073784627 stat: 700.0 sys_beam: 900.0 sys_luminosity: 1600.0 -- sys_corr_1: 725.5903980378123 - sys_corr_2: 674.1142052359095 - sys_corr_3: 313.4170975630907 - sys_corr_4: 158.21765674195936 - sys_corr_5: -890.7824338260255 - sys_corr_6: 117.79266613944557 - sys_corr_7: -5.098346380044857 - sys_corr_8: -7.0797233824425865 - sys_corr_9: 22.141846133643796 - sys_corr_10: -0.38085835413124214 - sys_corr_11: 262.65969969263824 - sys_corr_12: -473.17486782061377 - sys_corr_13: -182.93590246368268 - sys_corr_14: -106.29544453845942 - sys_corr_15: 15.430470857099634 - sys_corr_16: 1.8629518449619975 - sys_corr_17: 0.2909265822636516 - sys_corr_18: 0.16812887875549018 - sys_corr_19: -2.342448928878782e-05 - sys_corr_20: 0.0003056380741288143 - sys_corr_21: 0.0018100186240536744 - sys_corr_22: 0.0010914750324510058 - sys_corr_23: 0.007331286561958799 - sys_corr_24: -0.015092748776593216 - sys_corr_25: -0.0013976210598957023 - sys_corr_26: -0.0472584587699256 - sys_corr_27: 0.026023882548643573 - sys_corr_28: -0.029231585241469637 - sys_corr_29: 0.03355601867928706 - sys_corr_30: -0.018473337768598556 - sys_corr_31: 0.0014583921485307814 - sys_corr_32: 0.037699246786491905 - sys_corr_33: -0.02835194288649323 +- sys_corr_1: 725.5903980378135 + sys_corr_2: 674.1142052359097 + sys_corr_3: 313.41709756309024 + sys_corr_4: 158.2176567419597 + sys_corr_5: -890.7824338260235 + sys_corr_6: 117.79266613944671 + sys_corr_7: -5.098346380045623 + sys_corr_8: -7.079723382442154 + sys_corr_9: 22.141846133643362 + sys_corr_10: -0.3808583541323047 + sys_corr_11: 262.6596996926576 + sys_corr_12: -473.17486782060524 + sys_corr_13: -182.93590246367955 + sys_corr_14: -106.29544453845948 + sys_corr_15: 15.430470857099829 + sys_corr_16: 1.8629518449620301 + sys_corr_17: 0.2909265822636571 + sys_corr_18: 0.1681288787554962 + sys_corr_19: -2.3424489289203566e-05 + sys_corr_20: 0.0003056380741288857 + sys_corr_21: 0.0018100186240553968 + sys_corr_22: 0.0010914750324549903 + sys_corr_23: 0.007331286561970521 + sys_corr_24: -0.015092748776591135 + sys_corr_25: -0.0013976210598954399 + sys_corr_26: -0.04725845876992478 + sys_corr_27: 0.026023882548644694 + sys_corr_28: -0.029231585241470754 + sys_corr_29: 0.03355601867927536 + sys_corr_30: -0.01847333776859319 + sys_corr_31: 0.0014583921485359173 + sys_corr_32: 0.03769924678648697 + sys_corr_33: -0.02835194288649977 stat: 700.0 sys_beam: 800.0 sys_luminosity: 1500.0 -- sys_corr_1: -758.1798133409609 - sys_corr_2: -261.1823656852525 - sys_corr_3: -527.223630598359 - sys_corr_4: 174.84396662859567 - sys_corr_5: -177.36628414604132 - sys_corr_6: -837.8081595822232 - sys_corr_7: -138.5014661035454 - sys_corr_8: 66.69263216257637 - sys_corr_9: -42.59250149666709 - sys_corr_10: -122.87358571625316 - sys_corr_11: -111.06379545992978 - sys_corr_12: 15.466935956002406 - sys_corr_13: -444.3253250738043 - sys_corr_14: 156.41225205949436 - sys_corr_15: -3.0084325433815766 - sys_corr_16: 3.8324441242876097 - sys_corr_17: 0.31263630253337954 - sys_corr_18: 0.18021986252231495 - sys_corr_19: 0.0003782102293855456 - sys_corr_20: -5.3359509854939343e-05 - sys_corr_21: 0.002000780693370736 - sys_corr_22: 0.0037514166819015726 - sys_corr_23: 0.010808127867571194 - sys_corr_24: -0.006723009037407357 - sys_corr_25: -0.021392515650419316 - sys_corr_26: 0.016850590392518437 - sys_corr_27: -0.03237234334803726 - sys_corr_28: -0.04935692375712243 - sys_corr_29: -0.018981587345030897 - sys_corr_30: -0.03767798406516821 - sys_corr_31: -0.051572802034795744 - sys_corr_32: 0.03183112541267519 - sys_corr_33: 0.036976375504555285 +- sys_corr_1: -758.1798133409618 + sys_corr_2: -261.182365685253 + sys_corr_3: -527.2236305983593 + sys_corr_4: 174.8439666285955 + sys_corr_5: -177.3662841460436 + sys_corr_6: -837.8081595822224 + sys_corr_7: -138.501466103545 + sys_corr_8: 66.69263216257815 + sys_corr_9: -42.59250149666806 + sys_corr_10: -122.87358571625315 + sys_corr_11: -111.06379545992968 + sys_corr_12: 15.46693595599618 + sys_corr_13: -444.32532507380427 + sys_corr_14: 156.4122520594954 + sys_corr_15: -3.0084325433826606 + sys_corr_16: 3.83244412428771 + sys_corr_17: 0.31263630253339425 + sys_corr_18: 0.1802198625223089 + sys_corr_19: 0.0003782102293857104 + sys_corr_20: -5.3359509855555834e-05 + sys_corr_21: 0.002000780693370387 + sys_corr_22: 0.0037514166819011766 + sys_corr_23: 0.01080812786756856 + sys_corr_24: -0.0067230090374034955 + sys_corr_25: -0.0213925156504139 + sys_corr_26: 0.01685059039251904 + sys_corr_27: -0.032372343348025426 + sys_corr_28: -0.04935692375711563 + sys_corr_29: -0.01898158734504721 + sys_corr_30: -0.03767798406517066 + sys_corr_31: -0.05157280203479819 + sys_corr_32: 0.03183112541266892 + sys_corr_33: 0.036976375504542976 stat: 600.0 sys_beam: 700.0 sys_luminosity: 1400.0 -- sys_corr_1: -932.6502014909852 - sys_corr_2: -444.40058864059154 +- sys_corr_1: -932.6502014909869 + sys_corr_2: -444.4005886405916 sys_corr_3: -614.1380061286845 - sys_corr_4: 131.0228683014293 - sys_corr_5: -72.57197028127071 - sys_corr_6: -21.501091829396703 - sys_corr_7: 102.26507466489899 - sys_corr_8: -169.08267855711648 - sys_corr_9: 798.7202483880523 - sys_corr_10: 129.91093924380985 - sys_corr_11: -38.0077218044285 - sys_corr_12: 45.486278830162206 - sys_corr_13: -60.107451322867554 - sys_corr_14: -280.05517738256793 - sys_corr_15: 56.33331797815776 - sys_corr_16: -1.1671578630489345 - sys_corr_17: 0.19488848045452334 - sys_corr_18: 0.1265316707683699 - sys_corr_19: -0.00027951148728276587 - sys_corr_20: 0.0002988588455627578 - sys_corr_21: -0.002377810315071191 - sys_corr_22: 0.0013423620174318105 - sys_corr_23: -0.004404106214028996 - sys_corr_24: -0.0042754785684174165 - sys_corr_25: 0.017711935602926738 - sys_corr_26: -0.024446137141600138 - sys_corr_27: -0.01219593907564541 - sys_corr_28: -0.058239418758355865 - sys_corr_29: 0.014340068816684466 - sys_corr_30: -0.008587811147066802 - sys_corr_31: 0.012902487606023704 - sys_corr_32: 0.03469714922786307 - sys_corr_33: 0.037250891623105006 + sys_corr_4: 131.02286830142927 + sys_corr_5: -72.57197028127092 + sys_corr_6: -21.501091829397154 + sys_corr_7: 102.26507466489535 + sys_corr_8: -169.0826785571101 + sys_corr_9: 798.7202483880533 + sys_corr_10: 129.91093924380942 + sys_corr_11: -38.00772180443008 + sys_corr_12: 45.486278830160884 + sys_corr_13: -60.10745132286854 + sys_corr_14: -280.05517738256725 + sys_corr_15: 56.333317978158426 + sys_corr_16: -1.1671578630490325 + sys_corr_17: 0.194888480454483 + sys_corr_18: 0.12653167076835922 + sys_corr_19: -0.00027951148728316984 + sys_corr_20: 0.0002988588455627341 + sys_corr_21: -0.0023778103150700145 + sys_corr_22: 0.0013423620174323222 + sys_corr_23: -0.004404106214015386 + sys_corr_24: -0.004275478568417685 + sys_corr_25: 0.01771193560292471 + sys_corr_26: -0.024446137141605616 + sys_corr_27: -0.012195939075642767 + sys_corr_28: -0.05823941875834722 + sys_corr_29: 0.01434006881668178 + sys_corr_30: -0.008587811147067411 + sys_corr_31: 0.012902487606038597 + sys_corr_32: 0.03469714922785824 + sys_corr_33: 0.03725089162309449 stat: 600.0 sys_beam: 600.0 sys_luminosity: 1200.0 -- sys_corr_1: -396.8000721375114 - sys_corr_2: -53.516583543066055 - sys_corr_3: -331.45585111174364 - sys_corr_4: 157.70625251295735 - sys_corr_5: -125.17387665020507 - sys_corr_6: -123.01278513050893 - sys_corr_7: 599.5143389945957 - sys_corr_8: -784.3730567738431 - sys_corr_9: -297.93141905886864 - sys_corr_10: 77.12695782982033 - sys_corr_11: -0.18887544665811482 - sys_corr_12: -7.916586562810875 - sys_corr_13: 2.3162700094486874 - sys_corr_14: -37.188667884037535 - sys_corr_15: -207.8504538556462 - sys_corr_16: 11.296617925420051 - sys_corr_17: 0.13205229496737558 - sys_corr_18: 0.10229739733727478 - sys_corr_19: 0.0002734327577673722 - sys_corr_20: 0.0005654626102172385 - sys_corr_21: -0.001798648722034437 - sys_corr_22: 0.004752701240114667 - sys_corr_23: 0.0007255705247019528 - sys_corr_24: -0.015503150941420242 - sys_corr_25: -0.023114142944216164 - sys_corr_26: -0.014361186547394924 - sys_corr_27: -0.003795445403383109 - sys_corr_28: -0.11305009889796196 - sys_corr_29: 0.013517615134364181 - sys_corr_30: -0.03340450560303659 - sys_corr_31: -0.1163811640520996 - sys_corr_32: 0.07161470115147368 - sys_corr_33: -0.022700279972537252 +- sys_corr_1: -396.8000721375124 + sys_corr_2: -53.51658354306625 + sys_corr_3: -331.4558511117436 + sys_corr_4: 157.70625251295743 + sys_corr_5: -125.17387665020541 + sys_corr_6: -123.01278513050946 + sys_corr_7: 599.5143389945843 + sys_corr_8: -784.3730567738521 + sys_corr_9: -297.931419058863 + sys_corr_10: 77.12695782982071 + sys_corr_11: -0.18887544665769102 + sys_corr_12: -7.916586562810996 + sys_corr_13: 2.316270009449108 + sys_corr_14: -37.18866788403798 + sys_corr_15: -207.85045385564615 + sys_corr_16: 11.296617925420305 + sys_corr_17: 0.13205229496737506 + sys_corr_18: 0.10229739733726523 + sys_corr_19: 0.000273432757767366 + sys_corr_20: 0.0005654626102175798 + sys_corr_21: -0.0017986487220349099 + sys_corr_22: 0.0047527012401154325 + sys_corr_23: 0.0007255705247030492 + sys_corr_24: -0.01550315094142333 + sys_corr_25: -0.02311414294421352 + sys_corr_26: -0.014361186547398423 + sys_corr_27: -0.0037954454033624105 + sys_corr_28: -0.1130500988979579 + sys_corr_29: 0.013517615134348267 + sys_corr_30: -0.033404505603036726 + sys_corr_31: -0.1163811640521026 + sys_corr_32: 0.0716147011514738 + sys_corr_33: -0.022700279972572655 stat: 700.0 sys_beam: 900.0 sys_luminosity: 1600.0 -- sys_corr_1: -118.04039108905667 - sys_corr_2: 44.89255154510427 - sys_corr_3: -114.07686731035001 - sys_corr_4: 88.72082538814065 - sys_corr_5: -73.01875251111045 - sys_corr_6: -113.43459009004276 - sys_corr_7: 948.493540541292 - sys_corr_8: 695.5046935340748 - sys_corr_9: 0.7178292123375898 - sys_corr_10: 34.135900985543195 - sys_corr_11: -0.7243064790252441 - sys_corr_12: -3.9353206661920943 - sys_corr_13: 11.332993147701384 - sys_corr_14: 4.871279725857487 - sys_corr_15: 4.3612825182958606 - sys_corr_16: 15.725011826023824 - sys_corr_17: 0.12400263943951788 - sys_corr_18: 0.05713029250382234 - sys_corr_19: 0.0005777315326645402 - sys_corr_20: 0.001436770291158519 - sys_corr_21: -0.004904587524082753 - sys_corr_22: 0.018524381155859224 - sys_corr_23: -0.0016141267190406304 - sys_corr_24: -0.031165855430218763 - sys_corr_25: -0.05681395516433058 - sys_corr_26: 0.0069273730763234915 - sys_corr_27: 0.008883483901872276 - sys_corr_28: -0.023050380820495174 - sys_corr_29: 0.009608860268989326 - sys_corr_30: -0.0863351653593671 - sys_corr_31: -0.08323499885856817 - sys_corr_32: 0.02010964580188238 - sys_corr_33: -0.02714092597288546 +- sys_corr_1: -118.04039108905685 + sys_corr_2: 44.89255154510424 + sys_corr_3: -114.07686731035 + sys_corr_4: 88.72082538814078 + sys_corr_5: -73.01875251111075 + sys_corr_6: -113.4345900900432 + sys_corr_7: 948.4935405412984 + sys_corr_8: 695.5046935340648 + sys_corr_9: 0.7178292123331454 + sys_corr_10: 34.13590098554409 + sys_corr_11: -0.7243064790247403 + sys_corr_12: -3.9353206661922835 + sys_corr_13: 11.332993147701298 + sys_corr_14: 4.871279725857381 + sys_corr_15: 4.36128251829597 + sys_corr_16: 15.72501182602384 + sys_corr_17: 0.12400263943951592 + sys_corr_18: 0.05713029250382443 + sys_corr_19: 0.0005777315326635869 + sys_corr_20: 0.001436770291158338 + sys_corr_21: -0.004904587524082127 + sys_corr_22: 0.018524381155862454 + sys_corr_23: -0.0016141267190325685 + sys_corr_24: -0.03116585543022407 + sys_corr_25: -0.05681395516432056 + sys_corr_26: 0.006927373076319159 + sys_corr_27: 0.008883483901875471 + sys_corr_28: -0.02305038082050592 + sys_corr_29: 0.00960886026895908 + sys_corr_30: -0.08633516535935533 + sys_corr_31: -0.08323499885858136 + sys_corr_32: 0.020109645801892756 + sys_corr_33: -0.027140925972899844 stat: 800.0 sys_beam: 400.0 sys_luminosity: 700.0 diff --git a/nnpdf_data/nnpdf_data/new_commondata/LHCB_WPWM_8TEV_MUON/uncertainties.yaml b/nnpdf_data/nnpdf_data/new_commondata/LHCB_WPWM_8TEV_MUON/uncertainties.yaml index 03af2405c5..b5b6240faf 100644 --- a/nnpdf_data/nnpdf_data/new_commondata/LHCB_WPWM_8TEV_MUON/uncertainties.yaml +++ b/nnpdf_data/nnpdf_data/new_commondata/LHCB_WPWM_8TEV_MUON/uncertainties.yaml @@ -149,594 +149,594 @@ definitions: type: LHCBLUMI8TEV bins: - sys_corr_1: -3038.5793019795487 - sys_corr_2: 768.151619729029 - sys_corr_3: -485.10950751290466 - sys_corr_4: 53.08972426745508 - sys_corr_5: 7.850087868619188 - sys_corr_6: -88.07520308797234 - sys_corr_7: 137.25556071652076 - sys_corr_8: 283.50818110253323 - sys_corr_9: -239.42618180677908 - sys_corr_10: -114.9282210891482 - sys_corr_11: 8.42245032181839 - sys_corr_12: 31.98627693875795 - sys_corr_13: 1.50717484391528 - sys_corr_14: 6.896281410681029 - sys_corr_15: -7.595533001147195 - sys_corr_16: -7.633120097776864 - sys_corr_17: 1.0195549272803348 - sys_corr_18: 7.284609808103727e-07 - sys_corr_19: -1.6778355582638205e-05 - sys_corr_20: 0.00025537746071577504 - sys_corr_21: -0.0011339103675613135 - sys_corr_22: -0.003415602574189624 - sys_corr_23: -0.005932843196956676 - sys_corr_24: -0.1280796093801708 - sys_corr_25: -7.564443428452589e-06 - sys_corr_26: 0.016222470669920764 - sys_corr_27: 0.06514473289220417 - sys_corr_28: 0.10371048272556845 - sys_corr_29: 0.06929157468645339 - sys_corr_30: 0.018776298638962904 - sys_corr_31: -0.021881712529226115 - sys_corr_32: -0.036065189677757854 - sys_corr_33: 0.03731793154064317 - sys_corr_34: -0.006212574243613175 + sys_corr_2: 768.1516197290289 + sys_corr_3: -485.10950751290517 + sys_corr_4: 53.08972426745481 + sys_corr_5: 7.850087868617356 + sys_corr_6: -88.0752030879723 + sys_corr_7: 137.255560716515 + sys_corr_8: 283.5081811025355 + sys_corr_9: -239.42618180677874 + sys_corr_10: -114.92822108914821 + sys_corr_11: 8.422450321818669 + sys_corr_12: 31.986276938757808 + sys_corr_13: 1.5071748439153685 + sys_corr_14: 6.896281410681093 + sys_corr_15: -7.595533001147252 + sys_corr_16: -7.633120097776844 + sys_corr_17: 1.019554927280346 + sys_corr_18: 7.284609808011454e-07 + sys_corr_19: -1.677835558256328e-05 + sys_corr_20: 0.0002553774607160113 + sys_corr_21: -0.0011339103675605186 + sys_corr_22: -0.0034156025741886443 + sys_corr_23: -0.005932843196957185 + sys_corr_24: -0.12807960938018645 + sys_corr_25: -7.564443431047872e-06 + sys_corr_26: 0.016222470669908985 + sys_corr_27: 0.06514473289223874 + sys_corr_28: 0.10371048272557544 + sys_corr_29: 0.06929157468647058 + sys_corr_30: 0.018776298638944915 + sys_corr_31: -0.021881712529177977 + sys_corr_32: -0.03606518967772038 + sys_corr_33: 0.03731793154041575 + sys_corr_34: -0.006212574245309134 stat: 1200.0 sys_beam: 2400.0 sys_luminosity: 2700.0 - sys_corr_1: -757.4168560908336 - sys_corr_2: 75.90309841401225 - sys_corr_3: 1987.0588271704808 - sys_corr_4: 380.50217714972797 - sys_corr_5: 186.6540628119187 - sys_corr_6: -98.92177817595513 - sys_corr_7: 19.386151565620303 - sys_corr_8: 90.24316654080108 - sys_corr_9: 97.86762228902114 - sys_corr_10: 257.88630047369355 - sys_corr_11: 27.80542496923231 - sys_corr_12: 182.1786676656212 - sys_corr_13: -40.1069768929091 - sys_corr_14: 11.34420533632285 - sys_corr_15: -37.39982404709859 - sys_corr_16: -32.34179686209255 - sys_corr_17: 1.0943227332297263 - sys_corr_18: -6.383721004848815e-06 - sys_corr_19: -3.428582414792927e-05 - sys_corr_20: 0.00046593140222169854 - sys_corr_21: 0.0016542604394633518 - sys_corr_22: -0.0033912447442104652 - sys_corr_23: 0.004148891256763143 - sys_corr_24: -0.009165474667733913 - sys_corr_25: 0.008144508683747427 - sys_corr_26: -0.026150151611025615 - sys_corr_27: -0.061315511041762666 - sys_corr_28: 0.012687205157747163 - sys_corr_29: 0.018693498085528087 - sys_corr_30: 0.01425778424606732 - sys_corr_31: -0.006241271517890433 - sys_corr_32: -0.006706266150301394 - sys_corr_33: 0.025389499587724858 - sys_corr_34: 0.00543093342266935 + sys_corr_2: 75.90309841401579 + sys_corr_3: 1987.0588271704805 + sys_corr_4: 380.5021771497316 + sys_corr_5: 186.65406281191193 + sys_corr_6: -98.9217781759554 + sys_corr_7: 19.38615156561904 + sys_corr_8: 90.24316654080147 + sys_corr_9: 97.8676222890205 + sys_corr_10: 257.88630047369344 + sys_corr_11: 27.805424969230906 + sys_corr_12: 182.17866766562153 + sys_corr_13: -40.106976892909024 + sys_corr_14: 11.344205336323334 + sys_corr_15: -37.39982404709869 + sys_corr_16: -32.34179686209249 + sys_corr_17: 1.0943227332297176 + sys_corr_18: -6.383721004830009e-06 + sys_corr_19: -3.428582414810528e-05 + sys_corr_20: 0.00046593140222122626 + sys_corr_21: 0.001654260439463211 + sys_corr_22: -0.003391244744211278 + sys_corr_23: 0.004148891256764481 + sys_corr_24: -0.009165474667735025 + sys_corr_25: 0.008144508683749125 + sys_corr_26: -0.02615015161099173 + sys_corr_27: -0.06131551104176138 + sys_corr_28: 0.012687205157749074 + sys_corr_29: 0.018693498085537576 + sys_corr_30: 0.014257784246066602 + sys_corr_31: -0.006241271517885556 + sys_corr_32: -0.006706266150284497 + sys_corr_33: 0.025389499587853755 + sys_corr_34: 0.005430933421555999 stat: 900.0 sys_beam: 2100.0 sys_luminosity: 2400.0 - sys_corr_1: -539.1116598566842 - sys_corr_2: -1082.196953898048 - sys_corr_3: 139.26538263419215 - sys_corr_4: 259.0007882801631 - sys_corr_5: -1235.3638860478686 - sys_corr_6: -147.8992484251472 - sys_corr_7: -30.971965139079433 - sys_corr_8: 66.12783421119019 - sys_corr_9: 79.27645225016443 - sys_corr_10: 6.1083395365405675 - sys_corr_11: 298.8256052265815 - sys_corr_12: -160.33052814602755 - sys_corr_13: 123.74448329511169 + sys_corr_2: -1082.1969538980472 + sys_corr_3: 139.265382634192 + sys_corr_4: 259.0007882801366 + sys_corr_5: -1235.363886047874 + sys_corr_6: -147.89924842514617 + sys_corr_7: -30.971965139081274 + sys_corr_8: 66.12783421118901 + sys_corr_9: 79.27645225016423 + sys_corr_10: 6.108339536541749 + sys_corr_11: 298.8256052265816 + sys_corr_12: -160.330528146026 + sys_corr_13: 123.74448329511154 sys_corr_14: -32.43971184140428 - sys_corr_15: -11.811037446007145 - sys_corr_16: -23.921899411063976 - sys_corr_17: 0.5767811158596198 - sys_corr_18: -2.8777510060249715e-06 - sys_corr_19: -1.7746259062853234e-05 - sys_corr_20: -0.0015668674597882877 - sys_corr_21: 0.00047893537625031795 - sys_corr_22: 0.00013796288062932144 - sys_corr_23: 0.015193558356304633 - sys_corr_24: 0.08368951181574025 - sys_corr_25: 0.03252795209784002 - sys_corr_26: 0.012074739801121198 - sys_corr_27: -0.07568283304928537 - sys_corr_28: -0.10839682755241084 - sys_corr_29: -0.06354115477152299 - sys_corr_30: 0.022137948768943465 - sys_corr_31: -0.00040771647319118586 - sys_corr_32: 0.029190918104867233 - sys_corr_33: -0.045338286183720544 - sys_corr_34: 0.009281120599104669 + sys_corr_15: -11.811037446006932 + sys_corr_16: -23.921899411063883 + sys_corr_17: 0.5767811158596139 + sys_corr_18: -2.877751006037364e-06 + sys_corr_19: -1.7746259062945662e-05 + sys_corr_20: -0.001566867459788378 + sys_corr_21: 0.00047893537624898395 + sys_corr_22: 0.00013796288062966074 + sys_corr_23: 0.015193558356306796 + sys_corr_24: 0.08368951181576086 + sys_corr_25: 0.03252795209784276 + sys_corr_26: 0.012074739801167354 + sys_corr_27: -0.07568283304930938 + sys_corr_28: -0.1083968275524111 + sys_corr_29: -0.0635411547715441 + sys_corr_30: 0.022137948768953673 + sys_corr_31: -0.00040771647322797186 + sys_corr_32: 0.02919091810484506 + sys_corr_33: -0.0453382861834167 + sys_corr_34: 0.009281120601165673 stat: 800.0 sys_beam: 1800.0 sys_luminosity: 2100.0 - sys_corr_1: -346.6272090627615 - sys_corr_2: -1030.181994954958 - sys_corr_3: 2.3905943298608827 - sys_corr_4: -672.7845398398682 - sys_corr_5: 431.24137151214705 - sys_corr_6: -736.2297158517016 - sys_corr_7: -0.9211964079113855 - sys_corr_8: 167.18955777019715 - sys_corr_9: 125.27532107231038 - sys_corr_10: 0.6952330910211038 - sys_corr_11: 153.6669942345208 - sys_corr_12: -132.51248962046776 - sys_corr_13: -319.0057886061013 - sys_corr_14: 92.20109904875524 - sys_corr_15: 52.134955258314406 - sys_corr_16: 11.019143373701814 - sys_corr_17: 0.8035534599422568 - sys_corr_18: -1.9494090664902555e-06 - sys_corr_19: 0.0004555292374753845 - sys_corr_20: -0.0005602017511280195 - sys_corr_21: 0.0017116083298735739 - sys_corr_22: -0.0012111825214759626 - sys_corr_23: 0.013093740239201866 - sys_corr_24: 0.0663328708802538 - sys_corr_25: 0.005741342860060582 - sys_corr_26: -0.005243893280854078 - sys_corr_27: -0.014898575132749711 - sys_corr_28: -0.07832385774732964 - sys_corr_29: -0.008103685999407343 - sys_corr_30: -0.028478571390293136 - sys_corr_31: -0.02209874007861173 - sys_corr_32: 0.06915915493569391 - sys_corr_33: -0.05225712733244364 - sys_corr_34: -0.021446400930781855 + sys_corr_2: -1030.1819949549576 + sys_corr_3: 2.390594329861351 + sys_corr_4: -672.78453983986 + sys_corr_5: 431.24137151215854 + sys_corr_6: -736.2297158517026 + sys_corr_7: -0.9211964079143099 + sys_corr_8: 167.18955777019752 + sys_corr_9: 125.27532107231018 + sys_corr_10: 0.6952330910216087 + sys_corr_11: 153.66699423452076 + sys_corr_12: -132.51248962046958 + sys_corr_13: -319.00578860610113 + sys_corr_14: 92.20109904875525 + sys_corr_15: 52.134955258314186 + sys_corr_16: 11.019143373701738 + sys_corr_17: 0.8035534599422479 + sys_corr_18: -1.9494090665221805e-06 + sys_corr_19: 0.00045552923747546543 + sys_corr_20: -0.0005602017511281828 + sys_corr_21: 0.0017116083298726627 + sys_corr_22: -0.001211182521477481 + sys_corr_23: 0.013093740239202718 + sys_corr_24: 0.06633287088027 + sys_corr_25: 0.005741342860065388 + sys_corr_26: -0.005243893280841081 + sys_corr_27: -0.01489857513276601 + sys_corr_28: -0.0783238577473448 + sys_corr_29: -0.008103685999428574 + sys_corr_30: -0.028478571390254122 + sys_corr_31: -0.022098740078604417 + sys_corr_32: 0.06915915493567557 + sys_corr_33: -0.05225712733292187 + sys_corr_34: -0.021446400928380138 stat: 700.0 sys_beam: 1500.0 sys_luminosity: 1800.0 - sys_corr_1: -274.8755548245817 - sys_corr_2: -712.8587225878063 - sys_corr_3: 9.424364874672388 - sys_corr_4: -310.81026743552223 - sys_corr_5: 162.63611732393898 - sys_corr_6: 728.7752580649696 - sys_corr_7: -76.45444548329307 - sys_corr_8: 508.0244085137416 - sys_corr_9: 158.27207582811076 - sys_corr_10: 47.22082110864786 - sys_corr_11: 34.177741491179496 - sys_corr_12: 13.152729580561742 - sys_corr_13: -117.7021162614959 + sys_corr_2: -712.8587225878059 + sys_corr_3: 9.424364874672593 + sys_corr_4: -310.8102674355179 + sys_corr_5: 162.63611732394463 + sys_corr_6: 728.7752580649699 + sys_corr_7: -76.45444548330305 + sys_corr_8: 508.02440851374087 + sys_corr_9: 158.27207582811056 + sys_corr_10: 47.22082110864825 + sys_corr_11: 34.177741491180264 + sys_corr_12: 13.152729580562465 + sys_corr_13: -117.70211626149496 sys_corr_14: -377.1740405636019 - sys_corr_15: 48.51723655535921 - sys_corr_16: 31.56153128981498 - sys_corr_17: 0.9822152491275007 - sys_corr_18: -2.4619998369348916e-06 - sys_corr_19: 0.0005612970734051026 - sys_corr_20: 0.0005386362464870477 - sys_corr_21: -0.001815465250724656 - sys_corr_22: -0.006347847483481793 - sys_corr_23: 0.017227109060982387 - sys_corr_24: 0.09711895842625598 - sys_corr_25: 0.03514572275551089 - sys_corr_26: 0.04299205294753696 - sys_corr_27: -0.011167609711057146 - sys_corr_28: -0.04891378723110805 - sys_corr_29: -0.09846940785881475 - sys_corr_30: 0.02063997187136929 - sys_corr_31: -0.03877240980632347 - sys_corr_32: 0.06848351774573039 - sys_corr_33: -0.04952056140314971 - sys_corr_34: -0.003110697817064795 + sys_corr_15: 48.51723655536072 + sys_corr_16: 31.561531289814745 + sys_corr_17: 0.9822152491275199 + sys_corr_18: -2.4619998369937883e-06 + sys_corr_19: 0.0005612970734057122 + sys_corr_20: 0.0005386362464866584 + sys_corr_21: -0.0018154652507260658 + sys_corr_22: -0.006347847483479866 + sys_corr_23: 0.01722710906098292 + sys_corr_24: 0.0971189584262743 + sys_corr_25: 0.03514572275551389 + sys_corr_26: 0.04299205294754353 + sys_corr_27: -0.011167609711055196 + sys_corr_28: -0.0489137872311218 + sys_corr_29: -0.09846940785882753 + sys_corr_30: 0.020639971871378508 + sys_corr_31: -0.03877240980640265 + sys_corr_32: 0.0684835177457142 + sys_corr_33: -0.04952056140310505 + sys_corr_34: -0.003110697814741439 stat: 600.0 sys_beam: 1200.0 sys_luminosity: 1400.0 - sys_corr_1: -167.11074525470343 - sys_corr_2: -569.573314600226 - sys_corr_3: -47.732461471837524 - sys_corr_4: -61.80663852923446 - sys_corr_5: 100.02781413206776 - sys_corr_6: 138.327542900984 - sys_corr_7: -68.1364178650373 - sys_corr_8: -175.18878405870703 - sys_corr_9: -517.694932637838 - sys_corr_10: 375.78574105417636 - sys_corr_11: -22.358913549372588 - sys_corr_12: -171.54256789293123 - sys_corr_13: -77.7987263976552 - sys_corr_14: -20.62483812309415 - sys_corr_15: -333.83570107460514 - sys_corr_16: 141.46991248825637 - sys_corr_17: 0.48158322751296384 - sys_corr_18: 4.342515998397655e-06 - sys_corr_19: 0.00012465687701839452 - sys_corr_20: 0.0002705298702991312 - sys_corr_21: 0.0015800747762540462 - sys_corr_22: -0.006142676190768974 - sys_corr_23: -0.010540544502378445 - sys_corr_24: 0.09906325673279748 - sys_corr_25: 0.02814902488221871 - sys_corr_26: 0.004982507679248855 - sys_corr_27: 0.029057225727090522 - sys_corr_28: -0.06471540581684256 - sys_corr_29: -0.04520273973785426 - sys_corr_30: 0.05994446708871603 - sys_corr_31: 0.05655868692291631 - sys_corr_32: -0.01759802246321701 - sys_corr_33: 0.034334691922246696 - sys_corr_34: -0.009203113866061742 + sys_corr_2: -569.5733146002262 + sys_corr_3: -47.73246147183727 + sys_corr_4: -61.806638529232345 + sys_corr_5: 100.02781413206905 + sys_corr_6: 138.32754290098384 + sys_corr_7: -68.13641786503455 + sys_corr_8: -175.18878405870794 + sys_corr_9: -517.694932637839 + sys_corr_10: 375.78574105417664 + sys_corr_11: -22.35891354937338 + sys_corr_12: -171.54256789293112 + sys_corr_13: -77.79872639765557 + sys_corr_14: -20.624838123095753 + sys_corr_15: -333.835701074605 + sys_corr_16: 141.4699124882562 + sys_corr_17: 0.48158322751301486 + sys_corr_18: 4.34251599837717e-06 + sys_corr_19: 0.00012465687701771315 + sys_corr_20: 0.00027052987029853483 + sys_corr_21: 0.0015800747762538781 + sys_corr_22: -0.006142676190772772 + sys_corr_23: -0.010540544502370729 + sys_corr_24: 0.0990632567328151 + sys_corr_25: 0.028149024882223508 + sys_corr_26: 0.004982507679249789 + sys_corr_27: 0.02905722572707052 + sys_corr_28: -0.06471540581683867 + sys_corr_29: -0.04520273973785938 + sys_corr_30: 0.05994446708872569 + sys_corr_31: 0.05655868692284677 + sys_corr_32: -0.017598022463204896 + sys_corr_33: 0.03433469192197419 + sys_corr_34: -0.00920311386761883 stat: 500.0 sys_beam: 800.0 sys_luminosity: 1000.0 - sys_corr_1: -188.20228910192097 - sys_corr_2: -777.7968807961512 - sys_corr_3: -83.523149571827 - sys_corr_4: -219.69021728485177 - sys_corr_5: 118.43402492877796 - sys_corr_6: 252.7137844343597 - sys_corr_7: 294.355545808125 - sys_corr_8: -370.94543280886097 - sys_corr_9: -209.10455100615636 - sys_corr_10: -130.42393782916918 - sys_corr_11: 365.6282260301084 - sys_corr_12: 480.6203850587949 - sys_corr_13: 20.079947758739483 - sys_corr_14: 67.06685990860872 - sys_corr_15: 65.32932344673472 - sys_corr_16: 87.47120757016614 - sys_corr_17: -0.09826105456667454 - sys_corr_18: 8.386171914222564e-06 - sys_corr_19: -0.0010224700247338724 - sys_corr_20: -0.0019943997996906787 - sys_corr_21: 0.0084136973091293 - sys_corr_22: -0.02061594320152601 - sys_corr_23: 0.03529448123666306 - sys_corr_24: 0.18401404863525153 - sys_corr_25: 0.059450908402464545 - sys_corr_26: 0.005920112777482507 - sys_corr_27: 0.038432895713877376 - sys_corr_28: 0.01778891141365446 - sys_corr_29: -0.04235602286263034 - sys_corr_30: 0.019926253823197022 - sys_corr_31: 0.017823211055328757 - sys_corr_32: -0.028407360893841153 - sys_corr_33: -0.015168614203903776 - sys_corr_34: -0.00999576404121969 + sys_corr_2: -777.7968807961518 + sys_corr_3: -83.52314957182645 + sys_corr_4: -219.69021728484898 + sys_corr_5: 118.43402492878249 + sys_corr_6: 252.71378443435947 + sys_corr_7: 294.35554580813175 + sys_corr_8: -370.94543280885694 + sys_corr_9: -209.10455100615619 + sys_corr_10: -130.4239378291688 + sys_corr_11: 365.62822603010704 + sys_corr_12: 480.6203850587957 + sys_corr_13: 20.07994775873992 + sys_corr_14: 67.0668599086105 + sys_corr_15: 65.32932344673436 + sys_corr_16: 87.47120757016629 + sys_corr_17: -0.09826105456671294 + sys_corr_18: 8.386171914254327e-06 + sys_corr_19: -0.0010224700247347138 + sys_corr_20: -0.001994399799692106 + sys_corr_21: 0.008413697309132728 + sys_corr_22: -0.020615943201529086 + sys_corr_23: 0.03529448123666261 + sys_corr_24: 0.1840140486352533 + sys_corr_25: 0.05945090840246413 + sys_corr_26: 0.005920112777465722 + sys_corr_27: 0.03843289571388579 + sys_corr_28: 0.017788911413655146 + sys_corr_29: -0.042356022862622106 + sys_corr_30: 0.019926253823183634 + sys_corr_31: 0.017823211055244922 + sys_corr_32: -0.028407360893866834 + sys_corr_33: -0.015168614204167777 + sys_corr_34: -0.009995764040586337 stat: 500.0 sys_beam: 900.0 sys_luminosity: 1000.0 - sys_corr_1: -20.418282214869066 - sys_corr_2: -294.128388854442 - sys_corr_3: -58.60919723330269 - sys_corr_4: -198.41896719160766 - sys_corr_5: 53.836537785331174 - sys_corr_6: 94.56972392250604 - sys_corr_7: -235.80701606356234 - sys_corr_8: -98.75510182567812 - sys_corr_9: -143.68649816865596 - sys_corr_10: -129.97796340553987 - sys_corr_11: 34.287470713688585 - sys_corr_12: 106.63233272961433 - sys_corr_13: -66.03659873895782 - sys_corr_14: -27.168441642658422 - sys_corr_15: -173.44340111205508 - sys_corr_16: -444.7463117440774 - sys_corr_17: -0.24157992028818057 - sys_corr_18: -1.9035352315276237e-05 - sys_corr_19: -0.0020680211971272366 - sys_corr_20: -0.002768681927241517 - sys_corr_21: 0.008251447625955019 - sys_corr_22: -0.017362115654713663 - sys_corr_23: 0.0005594231669970876 - sys_corr_24: 0.00048017663069296006 - sys_corr_25: 0.041775962924260265 - sys_corr_26: -0.0019150653015100835 - sys_corr_27: -0.03489947235145362 - sys_corr_28: 0.16155295845034465 - sys_corr_29: 0.045016400588073914 - sys_corr_30: -0.031051031050705183 - sys_corr_31: 0.007999837636393914 - sys_corr_32: -0.1345409740234758 - sys_corr_33: 0.08854643213947719 - sys_corr_34: -0.03573913245167926 + sys_corr_2: -294.1283888544421 + sys_corr_3: -58.60919723330274 + sys_corr_4: -198.4189671916063 + sys_corr_5: 53.83653778533482 + sys_corr_6: 94.56972392250577 + sys_corr_7: -235.80701606356038 + sys_corr_8: -98.75510182568121 + sys_corr_9: -143.68649816865553 + sys_corr_10: -129.97796340553992 + sys_corr_11: 34.28747071368873 + sys_corr_12: 106.6323327296142 + sys_corr_13: -66.03659873895785 + sys_corr_14: -27.168441642658404 + sys_corr_15: -173.4434011120551 + sys_corr_16: -444.74631174407733 + sys_corr_17: -0.24157992028810552 + sys_corr_18: -1.9035352315173746e-05 + sys_corr_19: -0.0020680211971279166 + sys_corr_20: -0.0027686819272412073 + sys_corr_21: 0.008251447625954055 + sys_corr_22: -0.01736211565471414 + sys_corr_23: 0.0005594231670010069 + sys_corr_24: 0.0004801766306475359 + sys_corr_25: 0.04177596292425628 + sys_corr_26: -0.0019150653015336523 + sys_corr_27: -0.0348994723514428 + sys_corr_28: 0.16155295845037193 + sys_corr_29: 0.045016400588150714 + sys_corr_30: -0.03105103105077219 + sys_corr_31: 0.007999837636309516 + sys_corr_32: -0.13454097402344453 + sys_corr_33: 0.08854643213837997 + sys_corr_34: -0.035739132455740404 stat: 400.0 sys_beam: 200.0 sys_luminosity: 300.0 - sys_corr_1: -1418.5660286961804 - sys_corr_2: -300.83618976028646 + sys_corr_2: -300.8361897602871 sys_corr_3: -372.17857782986243 - sys_corr_4: 110.85229077349138 - sys_corr_5: 213.07294567190755 - sys_corr_6: 192.03560835810046 - sys_corr_7: -315.0880721533769 - sys_corr_8: -688.389231807664 - sys_corr_9: 537.9263076607414 - sys_corr_10: 188.2713964977463 - sys_corr_11: -46.3728491490399 - sys_corr_12: -58.69340052788875 - sys_corr_13: -14.504876419343034 - sys_corr_14: -14.744707792059215 - sys_corr_15: 3.8807055752414743 - sys_corr_16: 8.66452881632407 - sys_corr_17: 0.8337970308503326 - sys_corr_18: -3.098814478249894e-06 - sys_corr_19: -8.957681649067556e-05 - sys_corr_20: -0.0002853717212049436 - sys_corr_21: 0.0010659257978352338 - sys_corr_22: 0.0037092495827079847 - sys_corr_23: 0.006878015330544949 - sys_corr_24: -0.19054727226453752 - sys_corr_25: -0.024486657565609662 - sys_corr_26: 0.0053534274545727146 - sys_corr_27: 0.08616988285704642 - sys_corr_28: 0.14996497858208171 - sys_corr_29: 0.11390900690940575 - sys_corr_30: -0.03560935114680982 - sys_corr_31: 0.012681825895916057 - sys_corr_32: -0.03089693251724615 - sys_corr_33: 0.05081019719485488 - sys_corr_34: 0.052787600581333 + sys_corr_4: 110.85229077349663 + sys_corr_5: 213.07294567190775 + sys_corr_6: 192.03560835809975 + sys_corr_7: -315.0880721533624 + sys_corr_8: -688.3892318076679 + sys_corr_9: 537.9263076607407 + sys_corr_10: 188.27139649774628 + sys_corr_11: -46.37284914904026 + sys_corr_12: -58.693400527888706 + sys_corr_13: -14.504876419343022 + sys_corr_14: -14.744707792059414 + sys_corr_15: 3.8807055752414983 + sys_corr_16: 8.664528816324074 + sys_corr_17: 0.8337970308503269 + sys_corr_18: -3.098814478224953e-06 + sys_corr_19: -8.957681649048914e-05 + sys_corr_20: -0.00028537172120501696 + sys_corr_21: 0.0010659257978354304 + sys_corr_22: 0.003709249582708049 + sys_corr_23: 0.006878015330545861 + sys_corr_24: -0.19054727226455634 + sys_corr_25: -0.0244866575656111 + sys_corr_26: 0.005353427454552598 + sys_corr_27: 0.08616988285708459 + sys_corr_28: 0.14996497858208055 + sys_corr_29: 0.11390900690941448 + sys_corr_30: -0.03560935114682134 + sys_corr_31: 0.012681825896083541 + sys_corr_32: -0.030896932517204923 + sys_corr_33: 0.05081019719614959 + sys_corr_34: 0.052787600579011086 stat: 900.0 sys_beam: 1200.0 sys_luminosity: 1600.0 - sys_corr_1: -379.7758627502127 - sys_corr_2: -614.702742631885 - sys_corr_3: 806.9723200388605 - sys_corr_4: 129.34897826869812 - sys_corr_5: 329.5697346931343 - sys_corr_6: 180.1001765648686 - sys_corr_7: -83.25772608032091 - sys_corr_8: -249.97342476735562 - sys_corr_9: -217.19952916877614 - sys_corr_10: -625.126074096715 - sys_corr_11: -89.05430339410013 - sys_corr_12: -320.1639682551919 - sys_corr_13: 70.13671643344883 - sys_corr_14: -28.02170633911008 - sys_corr_15: 56.046822735985636 - sys_corr_16: 47.589118060404786 - sys_corr_17: 0.4556251546296614 - sys_corr_18: 1.1495839610964414e-05 - sys_corr_19: 0.00013258230364422347 - sys_corr_20: 0.0001381739901380239 - sys_corr_21: -0.005874689172628592 - sys_corr_22: 0.010501500264532582 - sys_corr_23: -0.01794623114827708 - sys_corr_24: -0.21644468180010468 - sys_corr_25: -0.03488192226887612 - sys_corr_26: -0.06857859750272072 - sys_corr_27: -0.049221237602540484 - sys_corr_28: 0.07731091052149563 - sys_corr_29: 0.07604399926457621 - sys_corr_30: -0.025643183602270476 - sys_corr_31: -0.027707930572605736 - sys_corr_32: -0.039392965654304765 - sys_corr_33: 0.008744923900361117 - sys_corr_34: 0.005484652230440729 + sys_corr_2: -614.7027426318841 + sys_corr_3: 806.9723200388609 + sys_corr_4: 129.3489782687054 + sys_corr_5: 329.5697346931325 + sys_corr_6: 180.10017656486775 + sys_corr_7: -83.25772608031659 + sys_corr_8: -249.97342476735633 + sys_corr_9: -217.19952916877463 + sys_corr_10: -625.1260740967149 + sys_corr_11: -89.05430339409723 + sys_corr_12: -320.1639682551923 + sys_corr_13: 70.13671643344865 + sys_corr_14: -28.02170633911111 + sys_corr_15: 56.04682273598595 + sys_corr_16: 47.58911806040465 + sys_corr_17: 0.45562515462967046 + sys_corr_18: 1.149583961098205e-05 + sys_corr_19: 0.00013258230364433942 + sys_corr_20: 0.00013817399013878702 + sys_corr_21: -0.005874689172630374 + sys_corr_22: 0.0105015002645333 + sys_corr_23: -0.017946231148278636 + sys_corr_24: -0.21644468180012844 + sys_corr_25: -0.03488192226888277 + sys_corr_26: -0.06857859750270756 + sys_corr_27: -0.04922123760254109 + sys_corr_28: 0.07731091052149813 + sys_corr_29: 0.0760439992645911 + sys_corr_30: -0.025643183602308793 + sys_corr_31: -0.027707930572531004 + sys_corr_32: -0.039392965654265095 + sys_corr_33: 0.008744923900430737 + sys_corr_34: 0.005484652229986684 stat: 700.0 sys_beam: 1000.0 sys_luminosity: 1400.0 - sys_corr_1: -239.61349262110903 sys_corr_2: -678.8206626587207 - sys_corr_3: 43.04893366922258 - sys_corr_4: -55.83800780748894 - sys_corr_5: -634.499154269975 - sys_corr_6: -25.947554268123866 - sys_corr_7: 41.427904422469275 - sys_corr_8: -54.053308811602285 - sys_corr_9: -16.362379243606593 - sys_corr_10: -129.38273499463483 - sys_corr_11: -592.7873743872755 - sys_corr_12: 256.3760680903285 - sys_corr_13: -265.5698980460149 - sys_corr_14: 43.29483884631226 - sys_corr_15: -1.6211538751018917 - sys_corr_16: 48.76481505905378 - sys_corr_17: 0.809829264135287 - sys_corr_18: -2.8081644487259427e-06 - sys_corr_19: 0.00010808868172066936 - sys_corr_20: 0.001635589344699784 - sys_corr_21: -0.00017695688461365108 - sys_corr_22: -0.0018627281863186546 - sys_corr_23: -0.007389095578738441 - sys_corr_24: -0.09727117032053585 - sys_corr_25: -0.004215152100620265 - sys_corr_26: -0.00531890952950511 - sys_corr_27: -0.013228979704683317 - sys_corr_28: 0.002784867494607145 - sys_corr_29: 0.07434987123378306 - sys_corr_30: -0.033407111180509784 - sys_corr_31: 0.020745837975215568 - sys_corr_32: -0.03494504746873362 - sys_corr_33: 0.04376355950975352 - sys_corr_34: -0.02172061471681362 + sys_corr_3: 43.04893366922303 + sys_corr_4: -55.83800780750276 + sys_corr_5: -634.4991542699746 + sys_corr_6: -25.947554268122953 + sys_corr_7: 41.427904422470746 + sys_corr_8: -54.053308811601546 + sys_corr_9: -16.362379243605634 + sys_corr_10: -129.3827349946374 + sys_corr_11: -592.7873743872756 + sys_corr_12: 256.376068090325 + sys_corr_13: -265.5698980460146 + sys_corr_14: 43.29483884631206 + sys_corr_15: -1.6211538751021453 + sys_corr_16: 48.76481505905352 + sys_corr_17: 0.8098292641352782 + sys_corr_18: -2.8081644488668546e-06 + sys_corr_19: 0.00010808868172042699 + sys_corr_20: 0.0016355893447000552 + sys_corr_21: -0.00017695688461455728 + sys_corr_22: -0.0018627281863201567 + sys_corr_23: -0.007389095578738002 + sys_corr_24: -0.09727117032053997 + sys_corr_25: -0.0042151521006173415 + sys_corr_26: -0.005318909529497028 + sys_corr_27: -0.01322897970468228 + sys_corr_28: 0.0027848674946107585 + sys_corr_29: 0.07434987123379137 + sys_corr_30: -0.033407111180520054 + sys_corr_31: 0.020745837975269153 + sys_corr_32: -0.03494504746870314 + sys_corr_33: 0.04376355950908848 + sys_corr_34: -0.021720614718830137 stat: 600.0 sys_beam: 1000.0 sys_luminosity: 1300.0 - sys_corr_1: -222.80016800556484 sys_corr_2: -742.5368422506577 - sys_corr_3: -36.8272748602642 - sys_corr_4: -408.192048198211 - sys_corr_5: 263.337600274069 - sys_corr_6: -456.734990608118 - sys_corr_7: -7.855868883315059 - sys_corr_8: 78.7247284309053 - sys_corr_9: 44.68970834520459 - sys_corr_10: 42.11339132489611 - sys_corr_11: -238.17127568567935 - sys_corr_12: 147.6273626390351 + sys_corr_3: -36.82727486026367 + sys_corr_4: -408.1920481982058 + sys_corr_5: 263.33760027407544 + sys_corr_6: -456.73499060811815 + sys_corr_7: -7.855868883316092 + sys_corr_8: 78.72472843090611 + sys_corr_9: 44.689708345204586 + sys_corr_10: 42.113391324895055 + sys_corr_11: -238.17127568567926 + sys_corr_12: 147.62736263903827 sys_corr_13: 522.6255945867229 - sys_corr_14: -164.03665899925022 - sys_corr_15: -66.06062046337215 - sys_corr_16: 10.446280909012556 - sys_corr_17: 0.7081767021411348 - sys_corr_18: -4.695676677119722e-06 - sys_corr_19: -0.0001868136902926309 - sys_corr_20: 0.000835749485750196 - sys_corr_21: -0.0014647779094920056 - sys_corr_22: 0.0005052468688517873 - sys_corr_23: 0.01511537237976092 - sys_corr_24: -0.004813289205308594 - sys_corr_25: 0.024600067592098613 - sys_corr_26: 0.02837806872979211 - sys_corr_27: -0.002254224212950835 - sys_corr_28: -0.053259457136311486 - sys_corr_29: -0.04791596442701525 - sys_corr_30: 0.0681923382744364 - sys_corr_31: 0.04485150499439751 - sys_corr_32: 2.8937518308521544e-05 - sys_corr_33: 0.00247769781776522 - sys_corr_34: 0.01624354351478134 + sys_corr_14: -164.03665899925042 + sys_corr_15: -66.0606204633717 + sys_corr_16: 10.446280909012897 + sys_corr_17: 0.7081767021411463 + sys_corr_18: -4.695676677081322e-06 + sys_corr_19: -0.0001868136902926952 + sys_corr_20: 0.0008357494857507038 + sys_corr_21: -0.0014647779094907588 + sys_corr_22: 0.0005052468688521042 + sys_corr_23: 0.015115372379762826 + sys_corr_24: -0.00481328920528963 + sys_corr_25: 0.02460006759209741 + sys_corr_26: 0.028378068729793777 + sys_corr_27: -0.0022542242129545463 + sys_corr_28: -0.05325945713631112 + sys_corr_29: -0.04791596442704287 + sys_corr_30: 0.06819233827443441 + sys_corr_31: 0.044851504994359914 + sys_corr_32: 2.8937518309524204e-05 + sys_corr_33: 0.0024776978181886775 + sys_corr_34: 0.016243543514662586 stat: 600.0 sys_beam: 900.0 sys_luminosity: 1200.0 - sys_corr_1: -221.03406480331822 sys_corr_2: -598.7026972313603 - sys_corr_3: 7.879832997776385 - sys_corr_4: -218.47633151977615 - sys_corr_5: 119.79805532288195 - sys_corr_6: 540.0535716310895 - sys_corr_7: -14.335697968361968 - sys_corr_8: 370.33754643475316 - sys_corr_9: 156.56323982872624 - sys_corr_10: 48.85089017217374 - sys_corr_11: -72.25805431862382 - sys_corr_12: -60.236085152793216 - sys_corr_13: 166.24096100027964 - sys_corr_14: 496.04191921051756 - sys_corr_15: -42.90701380970265 - sys_corr_16: -16.03726295711185 - sys_corr_17: 0.4785205369484593 - sys_corr_18: -4.710614020048994e-06 - sys_corr_19: -9.20596815872463e-05 - sys_corr_20: -0.0012894448180824792 - sys_corr_21: 0.005305379878287117 - sys_corr_22: -0.004502053808523869 - sys_corr_23: 0.009383386501251282 - sys_corr_24: 0.1241067869378707 - sys_corr_25: 0.03652483327628769 - sys_corr_26: -0.026124954404075508 - sys_corr_27: 0.027004757545574683 - sys_corr_28: -0.022177739726991944 - sys_corr_29: -0.04456292446841822 - sys_corr_30: 0.02875750635448535 - sys_corr_31: 0.05203761053449261 - sys_corr_32: 0.0586078660639764 - sys_corr_33: -0.05914759281192592 - sys_corr_34: 0.0033480429937501 + sys_corr_3: 7.879832997776759 + sys_corr_4: -218.47633151977286 + sys_corr_5: 119.79805532288626 + sys_corr_6: 540.0535716310892 + sys_corr_7: -14.335697968369436 + sys_corr_8: 370.33754643475294 + sys_corr_9: 156.56323982872613 + sys_corr_10: 48.8508901721728 + sys_corr_11: -72.25805431862459 + sys_corr_12: -60.236085152794395 + sys_corr_13: 166.2409610002786 + sys_corr_14: 496.0419192105175 + sys_corr_15: -42.90701380970428 + sys_corr_16: -16.037262957111544 + sys_corr_17: 0.47852053694841873 + sys_corr_18: -4.710614020133946e-06 + sys_corr_19: -9.20596815878394e-05 + sys_corr_20: -0.0012894448180819224 + sys_corr_21: 0.005305379878285471 + sys_corr_22: -0.004502053808524988 + sys_corr_23: 0.00938338650125305 + sys_corr_24: 0.1241067869379027 + sys_corr_25: 0.036524833276287104 + sys_corr_26: -0.026124954404063743 + sys_corr_27: 0.02700475754557667 + sys_corr_28: -0.022177739727000635 + sys_corr_29: -0.04456292446846311 + sys_corr_30: 0.028757506354543067 + sys_corr_31: 0.05203761053446031 + sys_corr_32: 0.05860786606393608 + sys_corr_33: -0.05914759281178291 + sys_corr_34: 0.0033480429964207943 stat: 600.0 sys_beam: 800.0 sys_luminosity: 1100.0 - sys_corr_1: -175.95234830648135 - sys_corr_2: -458.29719201587636 - sys_corr_3: -25.221580090315847 - sys_corr_4: 34.36989661893009 - sys_corr_5: 36.823678063795654 - sys_corr_6: 68.23139353147354 - sys_corr_7: -45.66847954320662 - sys_corr_8: -111.32792227020646 - sys_corr_9: -424.8650642158514 - sys_corr_10: 408.5006539031898 - sys_corr_11: -128.01638358132988 - sys_corr_12: -105.17863116654347 - sys_corr_13: 49.58952197883063 - sys_corr_14: 17.210940422189474 - sys_corr_15: 392.3340808181992 - sys_corr_16: -123.20759730685347 - sys_corr_17: 0.7580998432848071 - sys_corr_18: 5.007363639324624e-06 - sys_corr_19: -0.00036884888231146186 - sys_corr_20: -0.0012978386362287946 - sys_corr_21: 0.005410694702775865 - sys_corr_22: -0.013313942732979372 - sys_corr_23: 0.05115695988736416 - sys_corr_24: 0.23458858072676236 - sys_corr_25: 0.06360147645469767 - sys_corr_26: 0.013309433725921567 - sys_corr_27: -0.04071310626280849 - sys_corr_28: -0.028177852122879966 - sys_corr_29: -0.1799505617141715 - sys_corr_30: -0.02169242324782223 - sys_corr_31: -0.007009667327721166 - sys_corr_32: 0.03717354123857821 - sys_corr_33: -0.12043966335792472 - sys_corr_34: 0.01543371410455415 + sys_corr_2: -458.2971920158765 + sys_corr_3: -25.221580090315616 + sys_corr_4: 34.36989661893115 + sys_corr_5: 36.82367806379523 + sys_corr_6: 68.2313935314736 + sys_corr_7: -45.66847954320388 + sys_corr_8: -111.32792227020762 + sys_corr_9: -424.8650642158528 + sys_corr_10: 408.5006539031902 + sys_corr_11: -128.01638358133124 + sys_corr_12: -105.17863116654289 + sys_corr_13: 49.58952197883074 + sys_corr_14: 17.210940422190852 + sys_corr_15: 392.3340808181993 + sys_corr_16: -123.20759730685332 + sys_corr_17: 0.758099843284734 + sys_corr_18: 5.007363639458017e-06 + sys_corr_19: -0.00036884888231158573 + sys_corr_20: -0.0012978386362298496 + sys_corr_21: 0.0054106947027759795 + sys_corr_22: -0.013313942732976982 + sys_corr_23: 0.051156959887365086 + sys_corr_24: 0.23458858072680083 + sys_corr_25: 0.06360147645469062 + sys_corr_26: 0.013309433725949454 + sys_corr_27: -0.04071310626281232 + sys_corr_28: -0.02817785212289181 + sys_corr_29: -0.17995056171421395 + sys_corr_30: -0.021692423247824093 + sys_corr_31: -0.00700966732790282 + sys_corr_32: 0.037173541238498344 + sys_corr_33: -0.12043966335736828 + sys_corr_34: 0.015433714109959955 stat: 500.0 sys_beam: 700.0 sys_luminosity: 900.0 - sys_corr_1: -183.14713236431768 - sys_corr_2: 567.3613770804149 - sys_corr_3: 468.56312146099094 - sys_corr_4: -942.5696139985873 - sys_corr_5: -309.77329328945194 - sys_corr_6: 193.68459039286637 - sys_corr_7: 711.2139889472766 - sys_corr_8: -281.5128856875479 - sys_corr_9: 108.21391439053171 - sys_corr_10: 77.90499127010314 - sys_corr_11: -58.041274291234444 - sys_corr_12: -198.5639555860381 - sys_corr_13: 23.54786254952854 - sys_corr_14: -43.82890699205783 - sys_corr_15: -20.50657414285486 - sys_corr_16: -67.43375805284023 - sys_corr_17: 1.4190064875049369 - sys_corr_18: -3.892991343602838e-06 - sys_corr_19: -0.00017797671767751046 - sys_corr_20: -0.0017744229331906653 - sys_corr_21: 0.005908187636415936 - sys_corr_22: -0.014350998864706447 - sys_corr_23: 0.02762243269222977 - sys_corr_24: 0.18750360514629275 - sys_corr_25: 0.05462605794528981 - sys_corr_26: 0.010284578419506411 - sys_corr_27: -0.040815268044172244 - sys_corr_28: -0.0392171074296804 - sys_corr_29: -0.1371256172369289 - sys_corr_30: 0.017759500556972105 - sys_corr_31: 0.06695235138005146 - sys_corr_32: -0.00374669242826696 - sys_corr_33: -0.061967289524856445 - sys_corr_34: -0.019287334663180073 + sys_corr_2: 567.3613770804153 + sys_corr_3: 468.5631214609907 + sys_corr_4: -942.5696139985935 + sys_corr_5: -309.77329328943574 + sys_corr_6: 193.68459039286734 + sys_corr_7: 711.2139889472825 + sys_corr_8: -281.51288568753813 + sys_corr_9: 108.21391439053173 + sys_corr_10: 77.90499127010344 + sys_corr_11: -58.04127429123355 + sys_corr_12: -198.56395558603836 + sys_corr_13: 23.547862549528542 + sys_corr_14: -43.82890699205807 + sys_corr_15: -20.506574142854802 + sys_corr_16: -67.4337580528403 + sys_corr_17: 1.4190064875049482 + sys_corr_18: -3.892991343558439e-06 + sys_corr_19: -0.0001779767176778534 + sys_corr_20: -0.0017744229331917573 + sys_corr_21: 0.005908187636416397 + sys_corr_22: -0.014350998864710219 + sys_corr_23: 0.027622432692232517 + sys_corr_24: 0.18750360514632944 + sys_corr_25: 0.054626057945292544 + sys_corr_26: 0.01028457841953876 + sys_corr_27: -0.04081526804418747 + sys_corr_28: -0.0392171074296807 + sys_corr_29: -0.1371256172369678 + sys_corr_30: 0.01775950055697494 + sys_corr_31: 0.06695235137986345 + sys_corr_32: -0.0037466924283145976 + sys_corr_33: -0.06196728952533849 + sys_corr_34: -0.019287334660444688 stat: 600.0 sys_beam: 1000.0 sys_luminosity: 1400.0 - sys_corr_1: -108.57118702106705 - sys_corr_2: 839.8291501072293 - sys_corr_3: 459.8390870183657 - sys_corr_4: -925.6968612905044 - sys_corr_5: -400.4040360456309 - sys_corr_6: 42.68917936257094 - sys_corr_7: -752.2174879814365 - sys_corr_8: -53.07108189474481 - sys_corr_9: -128.09208022343634 - sys_corr_10: -32.98357281980944 - sys_corr_11: 74.02432402617801 - sys_corr_12: 78.5267575038786 - sys_corr_13: 36.42357651871526 - sys_corr_14: 39.17038903485109 - sys_corr_15: 53.70701716655165 - sys_corr_16: 94.08338628291777 - sys_corr_17: 0.6888256080273181 - sys_corr_18: 4.136991764242596e-07 - sys_corr_19: -0.000857665038759362 - sys_corr_20: -0.0026926244135948014 - sys_corr_21: 0.0075394244035477806 - sys_corr_22: -0.01576189784794336 - sys_corr_23: 0.04972357343844988 - sys_corr_24: 0.14135531791323716 - sys_corr_25: 0.08199691279107951 - sys_corr_26: 0.010188403737656443 - sys_corr_27: 0.02352486740748513 - sys_corr_28: -0.04847116685701623 - sys_corr_29: -0.03684786732394954 - sys_corr_30: -0.0070126705255896095 - sys_corr_31: 0.01275766566589463 - sys_corr_32: 0.022736517156611544 - sys_corr_33: -0.04112496966862067 - sys_corr_34: 0.018462409568420584 + sys_corr_2: 839.8291501072298 + sys_corr_3: 459.83908701836526 + sys_corr_4: -925.6968612905123 + sys_corr_5: -400.4040360456139 + sys_corr_6: 42.689179362571416 + sys_corr_7: -752.2174879814357 + sys_corr_8: -53.071081894755764 + sys_corr_9: -128.09208022343665 + sys_corr_10: -32.983572819809304 + sys_corr_11: 74.02432402617757 + sys_corr_12: 78.5267575038791 + sys_corr_13: 36.423576518715215 + sys_corr_14: 39.17038903485127 + sys_corr_15: 53.70701716655172 + sys_corr_16: 94.08338628291769 + sys_corr_17: 0.6888256080273318 + sys_corr_18: 4.136991763901693e-07 + sys_corr_19: -0.0008576650387597874 + sys_corr_20: -0.002692624413594671 + sys_corr_21: 0.00753942440354821 + sys_corr_22: -0.01576189784794326 + sys_corr_23: 0.04972357343845047 + sys_corr_24: 0.14135531791325082 + sys_corr_25: 0.08199691279107578 + sys_corr_26: 0.010188403737671355 + sys_corr_27: 0.023524867407479545 + sys_corr_28: -0.04847116685703295 + sys_corr_29: -0.03684786732397083 + sys_corr_30: -0.007012670525575931 + sys_corr_31: 0.012757665665888493 + sys_corr_32: 0.02273651715658992 + sys_corr_33: -0.041124969668091094 + sys_corr_34: 0.018462409570258135 stat: 700.0 sys_beam: 500.0 sys_luminosity: 700.0 diff --git a/nnpdf_data/nnpdf_data/new_commondata/LHCB_Z0J_13TEV_2022/uncertainties_dimuon_pT.yaml b/nnpdf_data/nnpdf_data/new_commondata/LHCB_Z0J_13TEV_2022/uncertainties_dimuon_pT.yaml index a3c816458a..6e2fc7415d 100644 --- a/nnpdf_data/nnpdf_data/new_commondata/LHCB_Z0J_13TEV_2022/uncertainties_dimuon_pT.yaml +++ b/nnpdf_data/nnpdf_data/new_commondata/LHCB_Z0J_13TEV_2022/uncertainties_dimuon_pT.yaml @@ -171,34 +171,34 @@ definitions: treatment: ADD type: LHCB_LUM bins: -- Stat_corr_1: 0.004558592429386197 - Stat_corr_2: 0.00635279736864509 - Stat_corr_3: 0.005185330094156103 - Stat_corr_4: 0.004725777479015956 - Stat_corr_5: 0.0011999059207537452 - Stat_corr_6: 0.0002037747738021259 - Stat_corr_7: -0.028074119885969542 - Stat_corr_8: -5.54374020094387e-05 - Stat_corr_9: 1.929407697776092e-07 - Stat_corr_10: 7.723501989124826e-07 - Stat_corr_11: -3.091715609481012e-08 - Stat_corr_12: -2.5384840014483115e-09 - Stat_corr_13: -4.347024666130148e-12 - Stat_corr_14: -3.0155542744493154e-16 - Sys_corr_eff_1: -0.04614344502479589 - Sys_corr_eff_2: -2.7430801030086313e-05 - Sys_corr_eff_3: 0.00041723274255471777 - Sys_corr_eff_4: -0.0011237914658220483 - Sys_corr_eff_5: 0.0006103289859019632 - Sys_corr_eff_6: 0.0007913324134871687 - Sys_corr_eff_7: 7.123695668546446e-05 - Sys_corr_eff_8: -1.7999309563731516e-05 - Sys_corr_eff_9: 6.912989591841428e-05 - Sys_corr_eff_10: 3.7994866555543585e-05 - Sys_corr_eff_11: 5.304636675617515e-05 - Sys_corr_eff_12: 2.1762552894482404e-05 - Sys_corr_eff_13: 4.59965452008706e-06 - Sys_corr_eff_14: -3.025522299981668e-08 +- Stat_corr_1: 0.0045585924293861995 + Stat_corr_2: 0.00635279736864511 + Stat_corr_3: 0.005185330094156083 + Stat_corr_4: 0.004725777479015948 + Stat_corr_5: 0.0011999059207537018 + Stat_corr_6: 0.00020377477380211396 + Stat_corr_7: -0.028074119885969553 + Stat_corr_8: -5.5437402009438926e-05 + Stat_corr_9: 1.9294076977760893e-07 + Stat_corr_10: 7.723501989124924e-07 + Stat_corr_11: -3.091715609481062e-08 + Stat_corr_12: -2.538484001448374e-09 + Stat_corr_13: -4.347024666130285e-12 + Stat_corr_14: -3.015554274449413e-16 + Sys_corr_eff_1: -0.04614344502479586 + Sys_corr_eff_2: -2.7430801029875748e-05 + Sys_corr_eff_3: 0.0004172327425557539 + Sys_corr_eff_4: -0.001123791465821106 + Sys_corr_eff_5: 0.0006103289859037536 + Sys_corr_eff_6: 0.0007913324134868637 + Sys_corr_eff_7: 7.123695668525502e-05 + Sys_corr_eff_8: -1.7999309563995923e-05 + Sys_corr_eff_9: 6.912989591853537e-05 + Sys_corr_eff_10: 3.799486655458465e-05 + Sys_corr_eff_11: 5.304636675674716e-05 + Sys_corr_eff_12: 2.176255289457695e-05 + Sys_corr_eff_13: 4.599654520126996e-06 + Sys_corr_eff_14: -3.0255222999868614e-08 Sys_back_corr: 0.0020152543263816606 Sys_back_unc: 0.0020152543263816606 Sys_fsr_corr: 0.009673220766631971 @@ -209,34 +209,34 @@ bins: Sys_align_unc: 0.044335595180396536 Sys_unfold: 0.011970000000000001 Luminosity: 0.11 -- Stat_corr_1: 0.02964107288116631 - Stat_corr_2: 0.03265911299341553 - Stat_corr_3: 0.018116517161291784 - Stat_corr_4: 0.013623238309892465 - Stat_corr_5: 0.0016999020868603764 - Stat_corr_6: 9.574996118154905e-05 +- Stat_corr_1: 0.029641072881166217 + Stat_corr_2: 0.032659112993415666 + Stat_corr_3: 0.018116517161291788 + Stat_corr_4: 0.01362323830989247 + Stat_corr_5: 0.0016999020868603925 + Stat_corr_6: 9.574996118155262e-05 Stat_corr_7: 0.0061715550925234754 - Stat_corr_8: 3.731421378936821e-05 - Stat_corr_9: 1.0277105412093933e-06 - Stat_corr_10: -4.524239206038606e-09 - Stat_corr_11: 7.953530005405848e-08 - Stat_corr_12: 9.115315672553139e-09 - Stat_corr_13: 1.6815574722472447e-11 - Stat_corr_14: 1.1703155103603129e-15 - Sys_corr_eff_1: -0.09186007647768285 - Sys_corr_eff_2: -0.0013457929212684018 - Sys_corr_eff_3: -0.0003281178737606029 - Sys_corr_eff_4: 0.0010863044235391562 - Sys_corr_eff_5: 0.0008252840982908497 - Sys_corr_eff_6: 3.98424001101936e-06 - Sys_corr_eff_7: 0.00011746784858825551 - Sys_corr_eff_8: -0.00016431223613953133 - Sys_corr_eff_9: 9.170336533388895e-05 - Sys_corr_eff_10: -7.993886979090261e-05 - Sys_corr_eff_11: 9.434166404794749e-05 - Sys_corr_eff_12: -1.6450547747660373e-06 - Sys_corr_eff_13: -4.855062941633227e-06 - Sys_corr_eff_14: 8.151561152530029e-08 + Stat_corr_8: 3.7314213789368345e-05 + Stat_corr_9: 1.0277105412093954e-06 + Stat_corr_10: -4.524239206047869e-09 + Stat_corr_11: 7.953530005405958e-08 + Stat_corr_12: 9.115315672553264e-09 + Stat_corr_13: 1.681557472247306e-11 + Stat_corr_14: 1.1703155103603592e-15 + Sys_corr_eff_1: -0.09186007647768286 + Sys_corr_eff_2: -0.001345792921269077 + Sys_corr_eff_3: -0.00032811787376207794 + Sys_corr_eff_4: 0.0010863044235414677 + Sys_corr_eff_5: 0.0008252840982902941 + Sys_corr_eff_6: 3.984240010767381e-06 + Sys_corr_eff_7: 0.0001174678485882731 + Sys_corr_eff_8: -0.00016431223613961446 + Sys_corr_eff_9: 9.170336533396939e-05 + Sys_corr_eff_10: -7.993886979286832e-05 + Sys_corr_eff_11: 9.434166404683691e-05 + Sys_corr_eff_12: -1.6450547743483776e-06 + Sys_corr_eff_13: -4.855062941542905e-06 + Sys_corr_eff_14: 8.151561152409017e-08 Sys_back_corr: 0.006262137654188066 Sys_back_unc: 0.006262137654188066 Sys_fsr_corr: 0.052445402853825054 @@ -247,34 +247,34 @@ bins: Sys_align_unc: 0.06418691095542767 Sys_unfold: 0.036531 Luminosity: 0.22 -- Stat_corr_1: 0.038899573769465415 - Stat_corr_2: 0.004789804644830368 - Stat_corr_3: -0.020867658080595538 - Stat_corr_4: -0.022373239724438724 - Stat_corr_5: -0.0049481982936888545 - Stat_corr_6: -0.0004302961293107833 - Stat_corr_7: -0.0017830284089124452 - Stat_corr_8: -0.00010444860655919565 - Stat_corr_9: -1.050875838479406e-06 - Stat_corr_10: -6.683204914786497e-07 - Stat_corr_11: -2.6649791418981557e-09 - Stat_corr_12: -2.1527942599184096e-08 - Stat_corr_13: -5.106952387920368e-11 - Stat_corr_14: -3.606363500266666e-15 - Sys_corr_eff_1: -0.0880738091317582 - Sys_corr_eff_2: -0.0009467625823367391 - Sys_corr_eff_3: 0.001078633182342959 - Sys_corr_eff_4: 0.00029519234469522554 - Sys_corr_eff_5: 0.00020723986972730958 - Sys_corr_eff_6: -0.00010248366532324782 - Sys_corr_eff_7: -0.00041596864042311305 - Sys_corr_eff_8: 0.00030878546499925514 - Sys_corr_eff_9: -8.018700295724375e-05 - Sys_corr_eff_10: 0.00010671583127787543 - Sys_corr_eff_11: -0.00011473675345021775 - Sys_corr_eff_12: 6.090381264913043e-06 - Sys_corr_eff_13: 9.596152854066038e-06 - Sys_corr_eff_14: 9.407785504690399e-08 +- Stat_corr_1: 0.0388995737694654 + Stat_corr_2: 0.00478980464483044 + Stat_corr_3: -0.020867658080595552 + Stat_corr_4: -0.022373239724438734 + Stat_corr_5: -0.004948198293688879 + Stat_corr_6: -0.00043029612931078326 + Stat_corr_7: -0.0017830284089124424 + Stat_corr_8: -0.00010444860655919581 + Stat_corr_9: -1.0508758384794105e-06 + Stat_corr_10: -6.683204914786287e-07 + Stat_corr_11: -2.664979141901447e-09 + Stat_corr_12: -2.1527942599184973e-08 + Stat_corr_13: -5.1069523879208063e-11 + Stat_corr_14: -3.6063635002669985e-15 + Sys_corr_eff_1: -0.08807380913175814 + Sys_corr_eff_2: -0.0009467625823364269 + Sys_corr_eff_3: 0.0010786331823431253 + Sys_corr_eff_4: 0.0002951923446954836 + Sys_corr_eff_5: 0.00020723986972614807 + Sys_corr_eff_6: -0.00010248366532219746 + Sys_corr_eff_7: -0.0004159686404232959 + Sys_corr_eff_8: 0.000308785464999088 + Sys_corr_eff_9: -8.018700295722105e-05 + Sys_corr_eff_10: 0.00010671583128035716 + Sys_corr_eff_11: -0.00011473675344882692 + Sys_corr_eff_12: 6.090381264411863e-06 + Sys_corr_eff_13: 9.5961528539751e-06 + Sys_corr_eff_14: 9.407785504868653e-08 Sys_back_corr: 0.005662511103741874 Sys_back_unc: 0.005662511103741874 Sys_fsr_corr: 0.04125543804154792 @@ -285,34 +285,34 @@ bins: Sys_align_unc: 0.062287622141160605 Sys_unfold: 0.05834399999999999 Luminosity: 0.23 -- Stat_corr_1: 0.030264620533085308 - Stat_corr_2: -0.033723092086143026 - Stat_corr_3: -1.5349252494360467e-05 - Stat_corr_4: 0.017874013797384822 - Stat_corr_5: 0.011180162893410967 - Stat_corr_6: 0.0013688363281481619 - Stat_corr_7: 0.0005453229305813198 - Stat_corr_8: 0.0003975489219441154 - Stat_corr_9: 4.354092394927673e-06 - Stat_corr_10: 1.6986689136318899e-06 - Stat_corr_11: 7.169567228916004e-08 - Stat_corr_12: 7.347003020866708e-09 - Stat_corr_13: 3.275077618511302e-12 - Stat_corr_14: 1.6262049793002531e-16 - Sys_corr_eff_1: -0.09021803676200947 - Sys_corr_eff_2: -0.0011103593171682706 - Sys_corr_eff_3: -0.0012950506582567827 - Sys_corr_eff_4: -0.00010264888928228697 - Sys_corr_eff_5: -0.0009683176635503112 - Sys_corr_eff_6: 0.00021649531508482437 - Sys_corr_eff_7: 0.0001081794518431244 - Sys_corr_eff_8: 0.0001431168966126952 - Sys_corr_eff_9: 0.00014480958324777926 - Sys_corr_eff_10: 6.364975179470485e-05 - Sys_corr_eff_11: -3.274244826426887e-05 - Sys_corr_eff_12: 3.503322547602206e-06 - Sys_corr_eff_13: 7.209917461577225e-06 - Sys_corr_eff_14: -6.527334977738209e-08 +- Stat_corr_1: 0.030264620533085464 + Stat_corr_2: -0.03372309208614301 + Stat_corr_3: -1.5349252494315476e-05 + Stat_corr_4: 0.017874013797384795 + Stat_corr_5: 0.011180162893411002 + Stat_corr_6: 0.001368836328148159 + Stat_corr_7: 0.000545322930581325 + Stat_corr_8: 0.00039754892194411546 + Stat_corr_9: 4.354092394927685e-06 + Stat_corr_10: 1.6986689136318007e-06 + Stat_corr_11: 7.169567228917708e-08 + Stat_corr_12: 7.347003020870328e-09 + Stat_corr_13: 3.27507761852775e-12 + Stat_corr_14: 1.6262049793125537e-16 + Sys_corr_eff_1: -0.09021803676200943 + Sys_corr_eff_2: -0.0011103593171681463 + Sys_corr_eff_3: -0.0012950506582564373 + Sys_corr_eff_4: -0.00010264888928571794 + Sys_corr_eff_5: -0.0009683176635505432 + Sys_corr_eff_6: 0.0002164953150848625 + Sys_corr_eff_7: 0.0001081794518431224 + Sys_corr_eff_8: 0.00014311689661254359 + Sys_corr_eff_9: 0.00014480958324780894 + Sys_corr_eff_10: 6.364975179583113e-05 + Sys_corr_eff_11: -3.274244826360132e-05 + Sys_corr_eff_12: 3.503322547410509e-06 + Sys_corr_eff_13: 7.209917461577588e-06 + Sys_corr_eff_14: -6.527334977679331e-08 Sys_back_corr: 0.006380931593427405 Sys_back_unc: 0.006380931593427405 Sys_fsr_corr: 0.014357096085211662 @@ -323,34 +323,34 @@ bins: Sys_align_unc: 0.0685950146293446 Sys_unfold: 0.051888 Luminosity: 0.23 -- Stat_corr_1: 0.008905614930091343 - Stat_corr_2: -0.01660441321811774 - Stat_corr_3: 0.021743616627007446 - Stat_corr_4: -0.00430860831544183 - Stat_corr_5: -0.0269960915255488 - Stat_corr_6: -0.004647089877103755 - Stat_corr_7: -0.0002569058896180564 - Stat_corr_8: -0.0017842446202120741 - Stat_corr_9: -2.154025563206819e-05 - Stat_corr_10: -1.0922248605281799e-05 - Stat_corr_11: -1.4806373858279857e-09 - Stat_corr_12: 8.289451404040114e-09 - Stat_corr_13: 9.29325787769696e-11 - Stat_corr_14: 6.967512933720243e-15 - Sys_corr_eff_1: -0.0775107174336735 - Sys_corr_eff_2: 0.00039035698931729114 - Sys_corr_eff_3: 0.001482801874501029 - Sys_corr_eff_4: -1.070432753473139e-05 - Sys_corr_eff_5: -0.0009052405223405919 - Sys_corr_eff_6: -7.522486727183789e-05 - Sys_corr_eff_7: 0.00029293839810822886 - Sys_corr_eff_8: -0.00015118397943724365 - Sys_corr_eff_9: 4.1159573302332274e-05 - Sys_corr_eff_10: -9.484886369153891e-05 - Sys_corr_eff_11: 6.306264486090327e-05 - Sys_corr_eff_12: -5.642712988405195e-06 - Sys_corr_eff_13: -4.951395523020661e-06 - Sys_corr_eff_14: 2.5919745633047664e-08 +- Stat_corr_1: 0.008905614930091385 + Stat_corr_2: -0.016604413218117668 + Stat_corr_3: 0.02174361662700741 + Stat_corr_4: -0.00430860831544181 + Stat_corr_5: -0.026996091525548844 + Stat_corr_6: -0.004647089877103741 + Stat_corr_7: -0.0002569058896180513 + Stat_corr_8: -0.0017842446202120722 + Stat_corr_9: -2.1540255632068272e-05 + Stat_corr_10: -1.0922248605281535e-05 + Stat_corr_11: -1.4806373859055793e-09 + Stat_corr_12: 8.289451404019794e-09 + Stat_corr_13: 9.293257877686779e-11 + Stat_corr_14: 6.967512933712583e-15 + Sys_corr_eff_1: -0.07751071743367348 + Sys_corr_eff_2: 0.000390356989317421 + Sys_corr_eff_3: 0.0014828018745010744 + Sys_corr_eff_4: -1.0704327533779854e-05 + Sys_corr_eff_5: -0.0009052405223394692 + Sys_corr_eff_6: -7.522486727265797e-05 + Sys_corr_eff_7: 0.00029293839810846944 + Sys_corr_eff_8: -0.00015118397943722996 + Sys_corr_eff_9: 4.11595733023987e-05 + Sys_corr_eff_10: -9.484886369303563e-05 + Sys_corr_eff_11: 6.3062644859658e-05 + Sys_corr_eff_12: -5.642712988066268e-06 + Sys_corr_eff_13: -4.9513955229560006e-06 + Sys_corr_eff_14: 2.5919745632068447e-08 Sys_back_corr: 0.004920048983495999 Sys_back_unc: 0.004920048983495999 Sys_fsr_corr: 0.01686873937198628 @@ -361,34 +361,34 @@ bins: Sys_align_unc: 0.04287471257046512 Sys_unfold: 0.01988 Luminosity: 0.2 -- Stat_corr_1: 0.002270367971421995 - Stat_corr_2: -0.006394469646095323 - Stat_corr_3: 0.024725390696247587 - Stat_corr_4: -0.024419552106714815 - Stat_corr_5: 0.015580589433314751 - Stat_corr_6: 0.008488342948238472 - Stat_corr_7: 7.782004082437915e-05 - Stat_corr_8: 0.005609680902491921 - Stat_corr_9: 0.00010787529534482454 - Stat_corr_10: 6.140897318551474e-05 - Stat_corr_11: 1.3891228613342958e-07 - Stat_corr_12: -3.5558751048246505e-08 - Stat_corr_13: -7.356623516854245e-10 - Stat_corr_14: -5.5759984349431545e-14 - Sys_corr_eff_1: -0.06909335511792722 - Sys_corr_eff_2: -1.963491654499471e-05 - Sys_corr_eff_3: -0.00040141487060890924 - Sys_corr_eff_4: -0.0011127681578890422 - Sys_corr_eff_5: 0.00017617625918508575 - Sys_corr_eff_6: -0.0005641476227995174 - Sys_corr_eff_7: -0.0004031121429071332 - Sys_corr_eff_8: -0.0003186604846546003 - Sys_corr_eff_9: 8.107760827625704e-05 - Sys_corr_eff_10: -6.256032742601775e-05 - Sys_corr_eff_11: -1.613097358955731e-05 - Sys_corr_eff_12: 4.470857778608724e-06 - Sys_corr_eff_13: -7.6193837600341005e-06 - Sys_corr_eff_14: -5.1260035901597e-08 +- Stat_corr_1: 0.002270367971422007 + Stat_corr_2: -0.006394469646095287 + Stat_corr_3: 0.024725390696247636 + Stat_corr_4: -0.024419552106714832 + Stat_corr_5: 0.015580589433314748 + Stat_corr_6: 0.008488342948238447 + Stat_corr_7: 7.782004082439804e-05 + Stat_corr_8: 0.005609680902491923 + Stat_corr_9: 0.00010787529534482529 + Stat_corr_10: 6.140897318551527e-05 + Stat_corr_11: 1.389122861336519e-07 + Stat_corr_12: -3.555875104817312e-08 + Stat_corr_13: -7.356623516850208e-10 + Stat_corr_14: -5.5759984349401064e-14 + Sys_corr_eff_1: -0.06909335511792715 + Sys_corr_eff_2: -1.9634916544842713e-05 + Sys_corr_eff_3: -0.00040141487060788543 + Sys_corr_eff_4: -0.001112768157889655 + Sys_corr_eff_5: 0.00017617625918556933 + Sys_corr_eff_6: -0.0005641476227991661 + Sys_corr_eff_7: -0.00040311214290693836 + Sys_corr_eff_8: -0.0003186604846557653 + Sys_corr_eff_9: 8.107760827624317e-05 + Sys_corr_eff_10: -6.256032742579629e-05 + Sys_corr_eff_11: -1.6130973590557115e-05 + Sys_corr_eff_12: 4.4708577786510505e-06 + Sys_corr_eff_13: -7.6193837600553e-06 + Sys_corr_eff_14: -5.1260035901966824e-08 Sys_back_corr: 0.006264966081312811 Sys_back_unc: 0.006264966081312811 Sys_fsr_corr: 0.04134877613666456 @@ -399,34 +399,34 @@ bins: Sys_align_unc: 0.04573425239358352 Sys_unfold: 0.023922 Luminosity: 0.18 -- Stat_corr_1: 0.0003078939245752913 - Stat_corr_2: -0.0010337735254794124 - Stat_corr_3: 0.005686152581225383 - Stat_corr_4: -0.006845046994997609 - Stat_corr_5: 0.010056735476270498 - Stat_corr_6: -0.01668336017546027 - Stat_corr_7: 6.042457257921499e-05 - Stat_corr_8: -0.02096723924862787 - Stat_corr_9: -0.0006208763143701142 - Stat_corr_10: -0.00040350740880373636 - Stat_corr_11: -6.575868985152716e-07 - Stat_corr_12: -8.599524785082738e-08 - Stat_corr_13: 4.4894884267546224e-09 - Stat_corr_14: 3.4548949255323226e-13 - Sys_corr_eff_1: -0.061204766977272805 - Sys_corr_eff_2: 0.0011293802746079821 - Sys_corr_eff_3: -0.000315208275299883 - Sys_corr_eff_4: -0.0004442099754509836 - Sys_corr_eff_5: 0.00046428618910486643 - Sys_corr_eff_6: -0.0004360446049937497 - Sys_corr_eff_7: 0.0005659201106049222 - Sys_corr_eff_8: 0.000391422334967722 - Sys_corr_eff_9: -0.00015898166441274933 - Sys_corr_eff_10: 8.599880545552192e-06 - Sys_corr_eff_11: 1.3430277399813852e-05 - Sys_corr_eff_12: -1.4524422390953652e-05 - Sys_corr_eff_13: 5.62637668968081e-06 - Sys_corr_eff_14: -1.5456758441434655e-08 +- Stat_corr_1: 0.00030789392457529317 + Stat_corr_2: -0.001033773525479406 + Stat_corr_3: 0.005686152581225388 + Stat_corr_4: -0.0068450469949976125 + Stat_corr_5: 0.010056735476270472 + Stat_corr_6: -0.016683360175460297 + Stat_corr_7: 6.0424572579190566e-05 + Stat_corr_8: -0.02096723924862789 + Stat_corr_9: -0.0006208763143701181 + Stat_corr_10: -0.0004035074088037352 + Stat_corr_11: -6.575868985164359e-07 + Stat_corr_12: -8.599524785111735e-08 + Stat_corr_13: 4.489488426753007e-09 + Stat_corr_14: 3.4548949255311003e-13 + Sys_corr_eff_1: -0.06120476697727278 + Sys_corr_eff_2: 0.0011293802746078151 + Sys_corr_eff_3: -0.00031520827530008745 + Sys_corr_eff_4: -0.00044420997544968575 + Sys_corr_eff_5: 0.0004642861891059813 + Sys_corr_eff_6: -0.00043604460499502463 + Sys_corr_eff_7: 0.0005659201106051737 + Sys_corr_eff_8: 0.0003914223349694958 + Sys_corr_eff_9: -0.00015898166441279243 + Sys_corr_eff_10: 8.599880545160502e-06 + Sys_corr_eff_11: 1.3430277400077e-05 + Sys_corr_eff_12: -1.4524422390908785e-05 + Sys_corr_eff_13: 5.626376689712408e-06 + Sys_corr_eff_14: -1.545675844138686e-08 Sys_back_corr: 0.004932069798776169 Sys_back_unc: 0.004932069798776169 Sys_fsr_corr: 0.027948395526398297 @@ -437,34 +437,34 @@ bins: Sys_align_unc: 0.032332457569754884 Sys_unfold: 0.0248 Luminosity: 0.15 -- Stat_corr_1: 4.818184651701829e-05 - Stat_corr_2: -0.00014720284398588926 +- Stat_corr_1: 4.8181846517018556e-05 + Stat_corr_2: -0.0001472028439858881 Stat_corr_3: 0.0010310135458158332 - Stat_corr_4: -0.0014708913400625664 - Stat_corr_5: 0.004308098947984354 - Stat_corr_6: -0.02474827731463312 - Stat_corr_7: -0.00010976918070739071 - Stat_corr_8: 0.016041076259098 - Stat_corr_9: 0.002262965419339299 - Stat_corr_10: 0.0018064696261709157 - Stat_corr_11: 5.581062693959797e-06 - Stat_corr_12: 8.919749836192827e-08 - Stat_corr_13: 1.164918360229593e-09 - Stat_corr_14: 8.922814344641149e-14 - Sys_corr_eff_1: -0.04957550067830063 - Sys_corr_eff_2: 0.0006952177261756243 - Sys_corr_eff_3: -0.0004751113215800158 - Sys_corr_eff_4: 0.00012812719909934092 - Sys_corr_eff_5: -0.0002526333493491653 - Sys_corr_eff_6: 0.00030832043222870856 - Sys_corr_eff_7: -0.0002963571179882963 - Sys_corr_eff_8: -4.1269052962168635e-05 - Sys_corr_eff_9: -0.0005083312208409297 - Sys_corr_eff_10: -6.394523697618654e-05 - Sys_corr_eff_11: 5.069499444950246e-05 - Sys_corr_eff_12: -1.933679702961239e-05 - Sys_corr_eff_13: -1.2335661028173747e-05 - Sys_corr_eff_14: -4.009270327425306e-08 + Stat_corr_4: -0.001470891340062564 + Stat_corr_5: 0.004308098947984335 + Stat_corr_6: -0.024748277314633135 + Stat_corr_7: -0.00010976918070741982 + Stat_corr_8: 0.01604107625909798 + Stat_corr_9: 0.002262965419339303 + Stat_corr_10: 0.0018064696261709168 + Stat_corr_11: 5.581062693958889e-06 + Stat_corr_12: 8.919749836203809e-08 + Stat_corr_13: 1.1649183602316994e-09 + Stat_corr_14: 8.922814344657695e-14 + Sys_corr_eff_1: -0.049575500678300605 + Sys_corr_eff_2: 0.0006952177261757742 + Sys_corr_eff_3: -0.00047511132157984767 + Sys_corr_eff_4: 0.00012812719909764892 + Sys_corr_eff_5: -0.000252633349350327 + Sys_corr_eff_6: 0.0003083204322295681 + Sys_corr_eff_7: -0.0002963571179885796 + Sys_corr_eff_8: -4.126905296151958e-05 + Sys_corr_eff_9: -0.0005083312208407182 + Sys_corr_eff_10: -6.394523697847696e-05 + Sys_corr_eff_11: 5.069499444954099e-05 + Sys_corr_eff_12: -1.9336797029412914e-05 + Sys_corr_eff_13: -1.233566102822977e-05 + Sys_corr_eff_14: -4.0092703274957875e-08 Sys_back_corr: 0.004553767670841367 Sys_back_unc: 0.004553767670841367 Sys_fsr_corr: 0.019581200984617877 @@ -475,34 +475,34 @@ bins: Sys_align_unc: 0.01775969391628133 Sys_unfold: 0.01932 Luminosity: 0.13 -- Stat_corr_1: 4.347863216946676e-06 - Stat_corr_2: -9.168014172277141e-06 - Stat_corr_3: 6.834489177212645e-05 - Stat_corr_4: -0.00010050529074668107 - Stat_corr_5: 0.0003879875491634156 - Stat_corr_6: -0.0029364823328892993 - Stat_corr_7: -1.8002643380471157e-05 - Stat_corr_8: 0.003123684659292949 - Stat_corr_9: -0.013673099037840518 - Stat_corr_10: -0.013946171374678578 - Stat_corr_11: -6.777187296399875e-05 - Stat_corr_12: -2.364971255145856e-06 - Stat_corr_13: -2.559751472692302e-10 - Stat_corr_14: 4.256769942551788e-15 - Sys_corr_eff_1: -0.03969467424133465 - Sys_corr_eff_2: 0.0015687031748933171 - Sys_corr_eff_3: -9.250790255276914e-05 - Sys_corr_eff_4: 0.0004010546091228449 - Sys_corr_eff_5: 7.598050254472606e-05 - Sys_corr_eff_6: -8.226876884771431e-06 - Sys_corr_eff_7: 0.00018034953804646877 - Sys_corr_eff_8: -0.0004947801110524845 - Sys_corr_eff_9: -6.12581487282957e-05 - Sys_corr_eff_10: 0.00020606746744895383 - Sys_corr_eff_11: -6.047715054331597e-05 - Sys_corr_eff_12: 3.443383461514453e-05 - Sys_corr_eff_13: 1.3969345553833555e-05 - Sys_corr_eff_14: 1.3715488564818623e-08 +- Stat_corr_1: 4.347863216946705e-06 + Stat_corr_2: -9.168014172277114e-06 + Stat_corr_3: 6.834489177212687e-05 + Stat_corr_4: -0.00010050529074668144 + Stat_corr_5: 0.0003879875491634151 + Stat_corr_6: -0.0029364823328893066 + Stat_corr_7: -1.800264338047443e-05 + Stat_corr_8: 0.00312368465929296 + Stat_corr_9: -0.01367309903784049 + Stat_corr_10: -0.0139461713746786 + Stat_corr_11: -6.77718729639997e-05 + Stat_corr_12: -2.3649712551455493e-06 + Stat_corr_13: -2.5597514726936677e-10 + Stat_corr_14: 4.256769942537227e-15 + Sys_corr_eff_1: -0.039694674241334646 + Sys_corr_eff_2: 0.0015687031748932495 + Sys_corr_eff_3: -9.250790255304355e-05 + Sys_corr_eff_4: 0.00040105460912301985 + Sys_corr_eff_5: 7.598050254430054e-05 + Sys_corr_eff_6: -8.226876884747433e-06 + Sys_corr_eff_7: 0.0001803495380462755 + Sys_corr_eff_8: -0.0004947801110515556 + Sys_corr_eff_9: -6.125814872939547e-05 + Sys_corr_eff_10: 0.00020606746745102655 + Sys_corr_eff_11: -6.047715054073005e-05 + Sys_corr_eff_12: 3.443383461470049e-05 + Sys_corr_eff_13: 1.3969345553784259e-05 + Sys_corr_eff_14: 1.3715488566340159e-08 Sys_back_corr: 0.004013538090014843 Sys_back_unc: 0.004013538090014843 Sys_fsr_corr: 0.013135215567321307 @@ -513,34 +513,34 @@ bins: Sys_align_unc: 0.015689285260967117 Sys_unfold: 0.010320000000000001 Luminosity: 0.1 -- Stat_corr_1: 2.13148697190124e-06 - Stat_corr_2: -9.62759934727998e-07 - Stat_corr_3: 6.915318673303332e-06 - Stat_corr_4: -8.272760685588971e-06 - Stat_corr_5: 3.305711072900163e-05 - Stat_corr_6: -0.0002854369268947398 - Stat_corr_7: -1.326173475114932e-06 - Stat_corr_8: 0.0004628109293477399 - Stat_corr_9: -0.015653110267106536 - Stat_corr_10: 0.0124267865292239 - Stat_corr_11: 0.0005077980345141581 - Stat_corr_12: 1.9293030560096476e-05 - Stat_corr_13: 2.8441464379354166e-08 - Stat_corr_14: 1.9769425810006736e-12 - Sys_corr_eff_1: -0.03098186138327745 - Sys_corr_eff_2: 0.0016521401538841097 - Sys_corr_eff_3: -0.0001584392750549117 - Sys_corr_eff_4: 0.00028187423383698644 - Sys_corr_eff_5: 0.00018197453188016025 - Sys_corr_eff_6: 0.0002957130110750833 - Sys_corr_eff_7: 3.7496253465201086e-05 - Sys_corr_eff_8: 3.348025381622021e-05 - Sys_corr_eff_9: 0.00013738139172184312 - Sys_corr_eff_10: -0.00016946313195564938 - Sys_corr_eff_11: -0.0002053594604481725 - Sys_corr_eff_12: -8.998468524843467e-06 - Sys_corr_eff_13: -1.3052135011571945e-05 - Sys_corr_eff_14: -3.988128994322864e-08 +- Stat_corr_1: 2.1314869719012436e-06 + Stat_corr_2: -9.627599347279846e-07 + Stat_corr_3: 6.9153186733033115e-06 + Stat_corr_4: -8.272760685588917e-06 + Stat_corr_5: 3.305711072900135e-05 + Stat_corr_6: -0.000285436926894738 + Stat_corr_7: -1.3261734751151776e-06 + Stat_corr_8: 0.00046281092934772884 + Stat_corr_9: -0.015653110267106574 + Stat_corr_10: 0.012426786529223896 + Stat_corr_11: 0.0005077980345141598 + Stat_corr_12: 1.9293030560098692e-05 + Stat_corr_13: 2.844146437936057e-08 + Stat_corr_14: 1.9769425810011365e-12 + Sys_corr_eff_1: -0.030981861383277437 + Sys_corr_eff_2: 0.001652140153884083 + Sys_corr_eff_3: -0.00015843927505520378 + Sys_corr_eff_4: 0.0002818742338370798 + Sys_corr_eff_5: 0.00018197453187991885 + Sys_corr_eff_6: 0.0002957130110749252 + Sys_corr_eff_7: 3.7496253465089664e-05 + Sys_corr_eff_8: 3.348025381602195e-05 + Sys_corr_eff_9: 0.000137381391721544 + Sys_corr_eff_10: -0.00016946313195138045 + Sys_corr_eff_11: -0.0002053594604515409 + Sys_corr_eff_12: -8.998468525223063e-06 + Sys_corr_eff_13: -1.3052135011684344e-05 + Sys_corr_eff_14: -3.9881289942945e-08 Sys_back_corr: 0.003419568393818144 Sys_back_unc: 0.003419568393818144 Sys_fsr_corr: 0.014818129706545292 @@ -551,34 +551,34 @@ bins: Sys_align_unc: 0.010258705181454433 Sys_unfold: 0.003627 Luminosity: 0.08 -- Stat_corr_1: 5.414920353606815e-07 - Stat_corr_2: -8.945318774112891e-08 - Stat_corr_3: 5.592371853469523e-07 - Stat_corr_4: -2.0081258809837523e-07 - Stat_corr_5: 1.0931346761839279e-06 - Stat_corr_6: -7.189443991670398e-06 - Stat_corr_7: 1.326508824417429e-07 - Stat_corr_8: 1.2811321346061685e-05 - Stat_corr_9: -0.0007047366210342642 - Stat_corr_10: 0.0007305064856784008 +- Stat_corr_1: 5.414920353606797e-07 + Stat_corr_2: -8.945318774111936e-08 + Stat_corr_3: 5.592371853468869e-07 + Stat_corr_4: -2.0081258809828295e-07 + Stat_corr_5: 1.0931346761837127e-06 + Stat_corr_6: -7.189443991668774e-06 + Stat_corr_7: 1.3265088244175443e-07 + Stat_corr_8: 1.2811321346057592e-05 + Stat_corr_9: -0.0007047366210342542 + Stat_corr_10: 0.000730506485678399 Stat_corr_11: -0.009937409896442907 - Stat_corr_12: -0.0004662328892148904 - Stat_corr_13: -5.723297468401714e-07 - Stat_corr_14: -3.869156980163218e-11 - Sys_corr_eff_1: -0.022105172632751392 - Sys_corr_eff_2: 0.001703986759120954 - Sys_corr_eff_3: -4.003674597760038e-05 - Sys_corr_eff_4: 0.0002222676773499269 - Sys_corr_eff_5: -4.445188596851644e-06 - Sys_corr_eff_6: 2.1398837959803614e-05 - Sys_corr_eff_7: -0.0002675046501047926 - Sys_corr_eff_8: 0.0001438488467607917 - Sys_corr_eff_9: 0.00021650934875741667 - Sys_corr_eff_10: 0.00010669582972387943 - Sys_corr_eff_11: 9.60931816336821e-05 - Sys_corr_eff_12: -0.00014489499563522825 - Sys_corr_eff_13: -2.2901535545942143e-05 - Sys_corr_eff_14: -5.692380412945872e-08 + Stat_corr_12: -0.0004662328892148967 + Stat_corr_13: -5.723297468401877e-07 + Stat_corr_14: -3.869156980163337e-11 + Sys_corr_eff_1: -0.022105172632751382 + Sys_corr_eff_2: 0.0017039867591209256 + Sys_corr_eff_3: -4.0036745977805245e-05 + Sys_corr_eff_4: 0.00022226767734991675 + Sys_corr_eff_5: -4.445188597162309e-06 + Sys_corr_eff_6: 2.1398837960313897e-05 + Sys_corr_eff_7: -0.0002675046501047531 + Sys_corr_eff_8: 0.00014384884675952363 + Sys_corr_eff_9: 0.00021650934875797853 + Sys_corr_eff_10: 0.00010669582972192327 + Sys_corr_eff_11: 9.609318163629128e-05 + Sys_corr_eff_12: -0.00014489499563523497 + Sys_corr_eff_13: -2.2901535546022798e-05 + Sys_corr_eff_14: -5.692380413103813e-08 Sys_back_corr: 0.0022401142827989827 Sys_back_unc: 0.0022401142827989827 Sys_fsr_corr: 0.012626098684866992 @@ -589,34 +589,34 @@ bins: Sys_align_unc: 0.006516696095415222 Sys_unfold: 0.00432 Luminosity: 0.06 -- Stat_corr_1: 8.713238524819304e-08 - Stat_corr_2: -2.0229110227037713e-08 - Stat_corr_3: 1.1242820575981207e-07 - Stat_corr_4: -3.137620774514778e-07 - Stat_corr_5: 2.6484386686376966e-07 - Stat_corr_6: -5.299164090750685e-07 - Stat_corr_7: -1.5093268612664695e-08 - Stat_corr_8: 2.0210431687649932e-07 - Stat_corr_9: -8.489689913711453e-06 - Stat_corr_10: 9.709379135195977e-06 - Stat_corr_11: -0.0006663047459636596 - Stat_corr_12: 0.0069681831921653056 - Stat_corr_13: 1.7150158486020874e-05 - Stat_corr_14: 1.2142866502723713e-09 - Sys_corr_eff_1: -0.013567570244321243 - Sys_corr_eff_2: 0.0014978559156206752 - Sys_corr_eff_3: -0.00012293999351069819 - Sys_corr_eff_4: 0.00027178541720861626 - Sys_corr_eff_5: -8.676044645995444e-05 - Sys_corr_eff_6: -4.417634555289382e-05 - Sys_corr_eff_7: -0.00024653187820062716 - Sys_corr_eff_8: 0.00021894145631456776 - Sys_corr_eff_9: 0.00012161808234770239 - Sys_corr_eff_10: -3.4775968774958145e-06 - Sys_corr_eff_11: 9.167163911822279e-05 - Sys_corr_eff_12: 0.00019284409308059476 - Sys_corr_eff_13: -5.6495828544329405e-06 - Sys_corr_eff_14: -2.2477612803278061e-07 +- Stat_corr_1: 8.713238524819309e-08 + Stat_corr_2: -2.022911022703741e-08 + Stat_corr_3: 1.1242820575981289e-07 + Stat_corr_4: -3.1376207745147956e-07 + Stat_corr_5: 2.648438668637801e-07 + Stat_corr_6: -5.299164090752028e-07 + Stat_corr_7: -1.509326861266659e-08 + Stat_corr_8: 2.021043168768005e-07 + Stat_corr_9: -8.489689913710789e-06 + Stat_corr_10: 9.709379135195864e-06 + Stat_corr_11: -0.000666304745963655 + Stat_corr_12: 0.006968183192165303 + Stat_corr_13: 1.715015848602091e-05 + Stat_corr_14: 1.214286650272374e-09 + Sys_corr_eff_1: -0.013567570244321233 + Sys_corr_eff_2: 0.001497855915620681 + Sys_corr_eff_3: -0.00012293999351091869 + Sys_corr_eff_4: 0.00027178541720825435 + Sys_corr_eff_5: -8.676044646045181e-05 + Sys_corr_eff_6: -4.417634555240872e-05 + Sys_corr_eff_7: -0.0002465318782005693 + Sys_corr_eff_8: 0.0002189414563136914 + Sys_corr_eff_9: 0.00012161808234834849 + Sys_corr_eff_10: -3.477596879228413e-06 + Sys_corr_eff_11: 9.167163911759874e-05 + Sys_corr_eff_12: 0.0001928440930808665 + Sys_corr_eff_13: -5.649582854426917e-06 + Sys_corr_eff_14: -2.2477612803332706e-07 Sys_back_corr: 0.0010035259438599484 Sys_back_unc: 0.0010035259438599484 Sys_fsr_corr: 0.0017561704017549098 @@ -627,34 +627,34 @@ bins: Sys_align_unc: 0.0030105778315798444 Sys_unfold: 0.001774 Luminosity: 0.035 -- Stat_corr_1: 2.1554454052849838e-10 - Stat_corr_2: -9.032953208983173e-10 +- Stat_corr_1: 2.1554454052849993e-10 + Stat_corr_2: -9.032953208983102e-10 Stat_corr_3: 6.850654023218481e-09 - Stat_corr_4: -9.477325430043306e-09 - Stat_corr_5: 2.064296421421314e-08 + Stat_corr_4: -9.477325430043281e-09 + Stat_corr_5: 2.0642964214213034e-08 Stat_corr_6: -6.138696799886423e-08 - Stat_corr_7: 6.5322020738734006e-12 - Stat_corr_8: -3.5632788148457345e-08 - Stat_corr_9: -9.213530722020195e-08 - Stat_corr_10: 5.286346507565539e-08 - Stat_corr_11: -2.8639349179486034e-06 - Stat_corr_12: 5.991336518539957e-05 - Stat_corr_13: -0.0019991003341345874 - Stat_corr_14: -1.5403463262605058e-07 - Sys_corr_eff_1: -0.00503498105016 - Sys_corr_eff_2: 0.0008925685507157204 - Sys_corr_eff_3: -9.647716617365178e-05 - Sys_corr_eff_4: 0.0001247434266589292 - Sys_corr_eff_5: -2.7974994909944357e-05 - Sys_corr_eff_6: 2.3108969485394518e-05 - Sys_corr_eff_7: -0.00021035741407024992 - Sys_corr_eff_8: 1.841556395276466e-05 - Sys_corr_eff_9: 5.186302752467959e-05 - Sys_corr_eff_10: -9.393851507274445e-05 - Sys_corr_eff_11: 4.5843090195716565e-05 - Sys_corr_eff_12: -4.593146956692394e-05 - Sys_corr_eff_13: 6.905394992884063e-05 - Sys_corr_eff_14: -4.961856818223782e-07 + Stat_corr_7: 6.53220207378257e-12 + Stat_corr_8: -3.563278814845791e-08 + Stat_corr_9: -9.213530722022405e-08 + Stat_corr_10: 5.286346507565815e-08 + Stat_corr_11: -2.8639349179485784e-06 + Stat_corr_12: 5.991336518539956e-05 + Stat_corr_13: -0.001999100334134586 + Stat_corr_14: -1.5403463262605055e-07 + Sys_corr_eff_1: -0.005034981050159996 + Sys_corr_eff_2: 0.0008925685507157025 + Sys_corr_eff_3: -9.647716617375804e-05 + Sys_corr_eff_4: 0.00012474342665877734 + Sys_corr_eff_5: -2.797499491017326e-05 + Sys_corr_eff_6: 2.310896948580479e-05 + Sys_corr_eff_7: -0.00021035741407018284 + Sys_corr_eff_8: 1.8415563952001352e-05 + Sys_corr_eff_9: 5.186302752507903e-05 + Sys_corr_eff_10: -9.393851507371589e-05 + Sys_corr_eff_11: 4.584309019432953e-05 + Sys_corr_eff_12: -4.593146956638414e-05 + Sys_corr_eff_13: 6.905394992929354e-05 + Sys_corr_eff_14: -4.961856818210195e-07 Sys_back_corr: 0.0003336129793638132 Sys_back_unc: 0.0003336129793638132 Sys_fsr_corr: 0.0006195669616756531 @@ -665,34 +665,34 @@ bins: Sys_align_unc: 0.0006672259587276264 Sys_unfold: 0.0002022 Luminosity: 0.013 -- Stat_corr_1: 1.9246948768867745e-16 - Stat_corr_2: -1.0650368093204378e-15 - Stat_corr_3: 1.094226098022571e-14 - Stat_corr_4: -1.7072279102424965e-14 - Stat_corr_5: 5.052536573494471e-14 - Stat_corr_6: -1.8798145636020902e-13 - Stat_corr_7: 2.399198033459067e-17 - Stat_corr_8: -1.4641517149154843e-13 - Stat_corr_9: -6.411599211105211e-13 - Stat_corr_10: 4.566000359844371e-13 - Stat_corr_11: -8.779288102814806e-11 - Stat_corr_12: 3.746530914452781e-09 - Stat_corr_13: -1.5398033015644414e-06 +- Stat_corr_1: 1.9246948768867903e-16 + Stat_corr_2: -1.0650368093204293e-15 + Stat_corr_3: 1.0942260980225726e-14 + Stat_corr_4: -1.7072279102424955e-14 + Stat_corr_5: 5.0525365734944624e-14 + Stat_corr_6: -1.8798145636021036e-13 + Stat_corr_7: 2.399198033435057e-17 + Stat_corr_8: -1.4641517149154278e-13 + Stat_corr_9: -6.41159921110025e-13 + Stat_corr_10: 4.566000359843675e-13 + Stat_corr_11: -8.779288102814776e-11 + Stat_corr_12: 3.746530914452776e-09 + Stat_corr_13: -1.5398033015644419e-06 Stat_corr_14: 0.00019999407239152937 - Sys_corr_eff_1: -0.00026351326083078524 - Sys_corr_eff_2: 8.194753299180516e-05 - Sys_corr_eff_3: -2.3690989111190097e-05 - Sys_corr_eff_4: -5.622009418434401e-06 - Sys_corr_eff_5: -9.812138183145602e-06 - Sys_corr_eff_6: 3.08678652478514e-06 - Sys_corr_eff_7: -1.2786735141584432e-05 - Sys_corr_eff_8: 4.5334928975283544e-06 - Sys_corr_eff_9: 4.821431518745622e-06 - Sys_corr_eff_10: -3.966330396945277e-06 - Sys_corr_eff_11: 3.322477494101122e-06 - Sys_corr_eff_12: 8.570095865416281e-07 - Sys_corr_eff_13: 2.306203030818874e-06 - Sys_corr_eff_14: 1.318653913848117e-05 + Sys_corr_eff_1: -0.00026351326083078513 + Sys_corr_eff_2: 8.194753299180415e-05 + Sys_corr_eff_3: -2.369098911118662e-05 + Sys_corr_eff_4: -5.622009418469893e-06 + Sys_corr_eff_5: -9.812138183145904e-06 + Sys_corr_eff_6: 3.0867865248036336e-06 + Sys_corr_eff_7: -1.2786735141576714e-05 + Sys_corr_eff_8: 4.53349289746852e-06 + Sys_corr_eff_9: 4.821431518785774e-06 + Sys_corr_eff_10: -3.966330397040439e-06 + Sys_corr_eff_11: 3.3224774940697123e-06 + Sys_corr_eff_12: 8.570095865550736e-07 + Sys_corr_eff_13: 2.306203030791135e-06 + Sys_corr_eff_14: 1.3186539138493329e-05 Sys_back_corr: 2.8079210280917804e-05 Sys_back_unc: 2.8079210280917804e-05 Sys_fsr_corr: 9.444825276308714e-05 diff --git a/nnpdf_data/nnpdf_data/new_commondata/LHCB_Z0_13TEV/uncertainties_dielectron.yaml b/nnpdf_data/nnpdf_data/new_commondata/LHCB_Z0_13TEV/uncertainties_dielectron.yaml index a22a881cb6..226d2d949f 100644 --- a/nnpdf_data/nnpdf_data/new_commondata/LHCB_Z0_13TEV/uncertainties_dielectron.yaml +++ b/nnpdf_data/nnpdf_data/new_commondata/LHCB_Z0_13TEV/uncertainties_dielectron.yaml @@ -74,328 +74,328 @@ definitions: sys_luminosity: description: Systematic Luminosity uncertainties treatment: MULT - type: LHCBLUMI13TEV + type: LHCBLUMI8TEV bins: -- sys_corr_1: -123.14136770222092 - sys_corr_2: -688.8344088726467 - sys_corr_3: 5.111607941358856 - sys_corr_4: -0.9917238919939988 - sys_corr_5: 0.6828564069433002 - sys_corr_6: 4.327919577318653 - sys_corr_7: -1.7079461940567926 - sys_corr_8: 8.699264406418683 - sys_corr_9: -4.090056687025647 - sys_corr_10: 3.462852718563401 - sys_corr_11: -4.113238870146605 - sys_corr_12: 2.250089770502412 - sys_corr_13: 3.844657295653093 - sys_corr_14: -3.560931491608996 - sys_corr_15: 11.24106099946044 - sys_corr_16: -3.7313889317722606 - sys_corr_17: 0.09648896732107495 +- sys_corr_1: -123.1413677022211 + sys_corr_2: -688.8344088726482 + sys_corr_3: 5.111607941355207 + sys_corr_4: -0.9917238919943479 + sys_corr_5: 0.6828564069433655 + sys_corr_6: 4.327919577318828 + sys_corr_7: -1.7079461940568148 + sys_corr_8: 8.699264406418852 + sys_corr_9: -4.090056687025756 + sys_corr_10: 3.462852718563453 + sys_corr_11: -4.113238870146705 + sys_corr_12: 2.2500897705025498 + sys_corr_13: 3.8446572956531444 + sys_corr_14: -3.560931491609052 + sys_corr_15: 11.241060999460657 + sys_corr_16: -3.731388931772334 + sys_corr_17: 0.09648896732108776 stat: 1300.0 sys_luminosity: 500.0 - sys_corr_1: -586.8119629487796 - sys_corr_2: 3.1649773132975736 - sys_corr_3: 34.11310532421367 - sys_corr_4: -2.5602985294418077 - sys_corr_5: -16.700422023929942 - sys_corr_6: 22.65141228282047 - sys_corr_7: 11.788653705287803 - sys_corr_8: 41.118405822327695 - sys_corr_9: -1478.9110371182271 - sys_corr_10: 101.03568365642295 - sys_corr_11: -17.425100510186756 - sys_corr_12: 59.20352896251431 - sys_corr_13: 73.17069348425578 - sys_corr_14: -32.44254570439759 - sys_corr_15: 53.70831844758256 - sys_corr_16: -30.006040765392036 - sys_corr_17: 21.531037749879513 + sys_corr_2: 3.1649773132975656 + sys_corr_3: 34.11310532421358 + sys_corr_4: -2.5602985294441667 + sys_corr_5: -16.70042202393104 + sys_corr_6: 22.651412282823895 + sys_corr_7: 11.788653705289713 + sys_corr_8: 41.11840582232482 + sys_corr_9: -1478.9110371182273 + sys_corr_10: 101.0356836564156 + sys_corr_11: -17.425100510187132 + sys_corr_12: 59.20352896251538 + sys_corr_13: 73.17069348425406 + sys_corr_14: -32.44254570439827 + sys_corr_15: 53.70831844758137 + sys_corr_16: -30.00604076539202 + sys_corr_17: 21.531037749880042 stat: 2200.0 sys_luminosity: 1600.0 -- sys_corr_1: -1005.0252359592839 - sys_corr_2: 3.4527567896229576 - sys_corr_3: 51.37601860266712 - sys_corr_4: 3.6939128709420364 - sys_corr_5: -11.901658348565025 - sys_corr_6: 40.33613398130461 - sys_corr_7: -12.81760667019554 - sys_corr_8: 62.513884132643625 - sys_corr_9: 95.17593515551559 - sys_corr_10: -24.266468398929838 - sys_corr_11: -50.63497013887387 - sys_corr_12: 1256.5958746122906 - sys_corr_13: 1324.5856398854037 - sys_corr_14: -149.4461167405027 - sys_corr_15: 144.317302550145 - sys_corr_16: -30.50705686695758 - sys_corr_17: 39.42648096530343 +- sys_corr_1: -1005.0252359592832 + sys_corr_2: 3.4527567896229385 + sys_corr_3: 51.37601860266696 + sys_corr_4: 3.693912870942832 + sys_corr_5: -11.901658348563668 + sys_corr_6: 40.336133981306844 + sys_corr_7: -12.817606670193243 + sys_corr_8: 62.5138841326434 + sys_corr_9: 95.17593515551508 + sys_corr_10: -24.266468398928577 + sys_corr_11: -50.63497013887663 + sys_corr_12: 1256.5958746123226 + sys_corr_13: 1324.58563988538 + sys_corr_14: -149.44611674050495 + sys_corr_15: 144.3173025501442 + sys_corr_16: -30.5070568669571 + sys_corr_17: 39.426480965301295 stat: 2500.0 sys_luminosity: 2600.0 -- sys_corr_1: -1203.431452505518 - sys_corr_2: 3.968248949992018 - sys_corr_3: 141.72874333583982 - sys_corr_4: 20.831405197536764 - sys_corr_5: -24.957047619604328 - sys_corr_6: 82.91821992206974 - sys_corr_7: -46.81149635262537 - sys_corr_8: 165.9021262476388 - sys_corr_9: 26.035596821371797 - sys_corr_10: -18.669059220513837 - sys_corr_11: -245.268590422567 - sys_corr_12: -33.89027809310623 - sys_corr_13: -95.01324134946887 - sys_corr_14: 151.12072109857786 - sys_corr_15: 1520.0412360823468 - sys_corr_16: 271.12773463279484 - sys_corr_17: -1666.0644273735104 +- sys_corr_1: -1203.4314525055174 + sys_corr_2: 3.968248949992002 + sys_corr_3: 141.72874333583914 + sys_corr_4: 20.83140519753868 + sys_corr_5: -24.957047619600004 + sys_corr_6: 82.9182199220711 + sys_corr_7: -46.811496352623415 + sys_corr_8: 165.90212624763683 + sys_corr_9: 26.035596821371342 + sys_corr_10: -18.66905922051422 + sys_corr_11: -245.26859042257075 + sys_corr_12: -33.89027809310805 + sys_corr_13: -95.0132413494696 + sys_corr_14: 151.12072109857837 + sys_corr_15: 1520.0412360823464 + sys_corr_16: 271.1277346327914 + sys_corr_17: -1666.0644273735145 stat: 2900.0 sys_luminosity: 3400.0 -- sys_corr_1: -1636.4458778810156 - sys_corr_2: 4.472390301240921 - sys_corr_3: 149.5461408516789 - sys_corr_4: 26.747926028242514 - sys_corr_5: 10.931195798359214 - sys_corr_6: 84.39369132568225 - sys_corr_7: 25.07086994732473 - sys_corr_8: 156.0744450116016 - sys_corr_9: 47.822291676268264 - sys_corr_10: -31.346137405495565 - sys_corr_11: -193.77228116374812 - sys_corr_12: -46.00471019679871 - sys_corr_13: -164.68273731683993 - sys_corr_14: 177.3204686989474 - sys_corr_15: 1517.291832406018 - sys_corr_16: 426.9010272825278 - sys_corr_17: 1587.7028037476782 +- sys_corr_1: -1636.4458778810144 + sys_corr_2: 4.472390301240911 + sys_corr_3: 149.5461408516788 + sys_corr_4: 26.747926028244915 + sys_corr_5: 10.931195798358168 + sys_corr_6: 84.3936913256809 + sys_corr_7: 25.070869947323356 + sys_corr_8: 156.07444501160094 + sys_corr_9: 47.822291676269 + sys_corr_10: -31.3461374054956 + sys_corr_11: -193.77228116374653 + sys_corr_12: -46.00471019680165 + sys_corr_13: -164.68273731683632 + sys_corr_14: 177.32046869895086 + sys_corr_15: 1517.2918324060186 + sys_corr_16: 426.9010272825293 + sys_corr_17: 1587.7028037476753 stat: 3000.0 sys_luminosity: 3700.0 -- sys_corr_1: -2223.961963824825 - sys_corr_2: 4.6125406594346865 - sys_corr_3: 246.3851139686895 - sys_corr_4: 71.42938980140228 - sys_corr_5: -178.0031146393711 - sys_corr_6: 303.3149416145995 - sys_corr_7: -39.083495238057154 - sys_corr_8: 2421.0957212925873 - sys_corr_9: 44.88209846289451 - sys_corr_10: -12.241779160897474 - sys_corr_11: 588.8597264405491 - sys_corr_12: -49.13652836602752 - sys_corr_13: -78.37366157407855 - sys_corr_14: 102.48490607012951 - sys_corr_15: -426.0441803535479 - sys_corr_16: 100.40883407480985 - sys_corr_17: -40.88334367410059 +- sys_corr_1: -2223.9619638248246 + sys_corr_2: 4.612540659434663 + sys_corr_3: 246.38511396869023 + sys_corr_4: 71.42938980141373 + sys_corr_5: -178.00311463937746 + sys_corr_6: 303.3149416146093 + sys_corr_7: -39.08349523805766 + sys_corr_8: 2421.0957212925814 + sys_corr_9: 44.882098462895414 + sys_corr_10: -12.241779160897158 + sys_corr_11: 588.8597264405457 + sys_corr_12: -49.1365283660289 + sys_corr_13: -78.37366157407762 + sys_corr_14: 102.4849060701289 + sys_corr_15: -426.04418035354627 + sys_corr_16: 100.40883407480958 + sys_corr_17: -40.88334367410187 stat: 3300.0 sys_luminosity: 4600.0 - sys_corr_1: -2543.356806063921 - sys_corr_2: 3.7214814058440955 - sys_corr_3: 429.4445968915431 - sys_corr_4: 128.832151491053 - sys_corr_5: -512.4115582385613 - sys_corr_6: 1672.6746364045664 - sys_corr_7: -1794.945284572461 - sys_corr_8: -756.1308547865221 - sys_corr_9: 31.205848409558776 - sys_corr_10: -23.06835522347826 - sys_corr_11: 260.6432212788887 - sys_corr_12: -34.41267342212623 - sys_corr_13: -86.10610746631714 - sys_corr_14: 60.02888554243316 - sys_corr_15: -288.4952251415772 - sys_corr_16: 34.0382245725672 - sys_corr_17: -17.393525467787054 + sys_corr_2: 3.7214814058441315 + sys_corr_3: 429.4445968915442 + sys_corr_4: 128.83215149108852 + sys_corr_5: -512.4115582385482 + sys_corr_6: 1672.6746364045919 + sys_corr_7: -1794.9452845724443 + sys_corr_8: -756.1308547865265 + sys_corr_9: 31.20584840955891 + sys_corr_10: -23.06835522347917 + sys_corr_11: 260.643221278892 + sys_corr_12: -34.41267342212853 + sys_corr_13: -86.10610746631694 + sys_corr_14: 60.0288855424334 + sys_corr_15: -288.49522514157604 + sys_corr_16: 34.03822457256738 + sys_corr_17: -17.393525467788095 stat: 3600.0 sys_luminosity: 5200.0 -- sys_corr_1: -2744.266095296388 - sys_corr_2: 3.3936442582289854 - sys_corr_3: 849.5316126330155 - sys_corr_4: 1668.0625000519344 - sys_corr_5: 1805.8947479601725 - sys_corr_6: -784.4738633566756 - sys_corr_7: -0.4949999164733375 - sys_corr_8: -397.0808492137419 - sys_corr_9: 26.892495179662596 - sys_corr_10: -19.944347740572873 - sys_corr_11: 190.61580891488148 - sys_corr_12: -28.175182879555752 - sys_corr_13: -68.67536497392308 - sys_corr_14: 80.62256536182599 - sys_corr_15: -287.40277564011916 - sys_corr_16: 67.93052674215383 - sys_corr_17: -62.02145640431419 +- sys_corr_1: -2744.2660952963865 + sys_corr_2: 3.393644258229046 + sys_corr_3: 849.5316126330138 + sys_corr_4: 1668.0625000519335 + sys_corr_5: 1805.8947479601643 + sys_corr_6: -784.4738633567241 + sys_corr_7: -0.4949999164715196 + sys_corr_8: -397.0808492137403 + sys_corr_9: 26.892495179662152 + sys_corr_10: -19.944347740572454 + sys_corr_11: 190.61580891487816 + sys_corr_12: -28.175182879557294 + sys_corr_13: -68.675364973923 + sys_corr_14: 80.62256536182537 + sys_corr_15: -287.40277564012104 + sys_corr_16: 67.93052674215386 + sys_corr_17: -62.02145640431197 stat: 3700.0 sys_luminosity: 5500.0 - sys_corr_1: -3045.818488278737 - sys_corr_2: 3.2768983496936905 - sys_corr_3: -2853.7964128406584 - sys_corr_4: -104.84605592793345 - sys_corr_5: 243.53188384067818 - sys_corr_6: -244.85278490030308 - sys_corr_7: 0.3255146962931658 - sys_corr_8: -214.1533771228568 - sys_corr_9: 25.725684897722186 - sys_corr_10: -18.755194938633405 - sys_corr_11: 112.29853779704777 - sys_corr_12: -26.683567285319526 - sys_corr_13: -66.52395824477411 - sys_corr_14: 45.33217445247245 - sys_corr_15: -138.12276573105396 - sys_corr_16: 27.39762086885738 - sys_corr_17: -45.43548985912793 + sys_corr_2: 3.2768983496933672 + sys_corr_3: -2853.7964128406575 + sys_corr_4: -104.8460559279366 + sys_corr_5: 243.53188384067732 + sys_corr_6: -244.85278490030265 + sys_corr_7: 0.32551469629009794 + sys_corr_8: -214.15337712285512 + sys_corr_9: 25.72568489772223 + sys_corr_10: -18.755194938633252 + sys_corr_11: 112.29853779704811 + sys_corr_12: -26.68356728532114 + sys_corr_13: -66.52395824477391 + sys_corr_14: 45.33217445247213 + sys_corr_15: -138.12276573105405 + sys_corr_16: 27.397620868857263 + sys_corr_17: -45.435489859127735 stat: 4000.0 sys_luminosity: 5900.0 -- sys_corr_1: -2440.8803499833034 - sys_corr_2: 2.501518541056618 - sys_corr_3: 527.0173810209056 - sys_corr_4: 414.33359574064116 - sys_corr_5: -2137.0884888885225 - sys_corr_6: -1544.5305914400742 - sys_corr_7: 148.6309003846287 - sys_corr_8: -447.5385705702471 - sys_corr_9: 31.30460210825461 - sys_corr_10: -13.134521986063074 - sys_corr_11: 247.3037655831565 - sys_corr_12: -26.8139444837595 - sys_corr_13: -61.07497384993467 - sys_corr_14: 56.39272592206785 - sys_corr_15: -187.57803023646508 - sys_corr_16: 38.56854548134853 - sys_corr_17: -30.973555086745307 +- sys_corr_1: -2440.880349983303 + sys_corr_2: 2.5015185410566905 + sys_corr_3: 527.017381020904 + sys_corr_4: 414.3335957405886 + sys_corr_5: -2137.0884888885357 + sys_corr_6: -1544.5305914400665 + sys_corr_7: 148.6309003846202 + sys_corr_8: -447.5385705702457 + sys_corr_9: 31.304602108254702 + sys_corr_10: -13.134521986062706 + sys_corr_11: 247.30376558316024 + sys_corr_12: -26.81394448376033 + sys_corr_13: -61.07497384993346 + sys_corr_14: 56.39272592206775 + sys_corr_15: -187.57803023646386 + sys_corr_16: 38.56854548134826 + sys_corr_17: -30.973555086747904 stat: 3900.0 sys_luminosity: 5200.0 - sys_corr_1: -2347.4165064493873 - sys_corr_2: 3.3029931513003477 - sys_corr_3: 806.6073516026678 - sys_corr_4: -2493.8863207482373 - sys_corr_5: 812.6026620969017 - sys_corr_6: -693.7722807304336 - sys_corr_7: -102.85578038578005 - sys_corr_8: -281.6358679576142 - sys_corr_9: 28.126176469418642 - sys_corr_10: -17.498168572225826 - sys_corr_11: 147.65901869781473 - sys_corr_12: -20.185865336428375 - sys_corr_13: -69.09696746090748 - sys_corr_14: 50.95087083912697 - sys_corr_15: -211.8641479471654 - sys_corr_16: 27.358161031663677 - sys_corr_17: -41.06222588170736 + sys_corr_2: 3.302993151300315 + sys_corr_3: 806.6073516026664 + sys_corr_4: -2493.8863207482427 + sys_corr_5: 812.6026620969034 + sys_corr_6: -693.7722807304016 + sys_corr_7: -102.85578038579523 + sys_corr_8: -281.6358679576072 + sys_corr_9: 28.126176469419526 + sys_corr_10: -17.49816857222559 + sys_corr_11: 147.6590186978172 + sys_corr_12: -20.185865336430293 + sys_corr_13: -69.0969674609077 + sys_corr_14: 50.950870839126516 + sys_corr_15: -211.8641479471639 + sys_corr_16: 27.358161031663126 + sys_corr_17: -41.06222588170616 stat: 4100.0 sys_luminosity: 5100.0 - sys_corr_1: -1988.8104772942393 - sys_corr_2: 2.4546328444825134 - sys_corr_3: 348.9585151235797 - sys_corr_4: -38.85404038817852 - sys_corr_5: -232.1161639721551 - sys_corr_6: 1421.8917679551053 - sys_corr_7: 2225.3683116795282 - sys_corr_8: -559.5009169196529 - sys_corr_9: 32.73130079735347 - sys_corr_10: -10.820766351391994 - sys_corr_11: 284.03408066562 - sys_corr_12: -18.092005287834578 - sys_corr_13: -59.98509925600345 - sys_corr_14: 61.94928159371396 - sys_corr_15: -210.3074333193959 - sys_corr_16: 43.23229732255288 - sys_corr_17: -68.2670205768263 + sys_corr_2: 2.4546328444825316 + sys_corr_3: 348.9585151235798 + sys_corr_4: -38.85404038816691 + sys_corr_5: -232.1161639721344 + sys_corr_6: 1421.8917679550768 + sys_corr_7: 2225.368311679541 + sys_corr_8: -559.5009169196568 + sys_corr_9: 32.73130079735489 + sys_corr_10: -10.82076635139238 + sys_corr_11: 284.03408066561883 + sys_corr_12: -18.09200528783644 + sys_corr_13: -59.98509925600467 + sys_corr_14: 61.949281593713245 + sys_corr_15: -210.30743331939564 + sys_corr_16: 43.232297322552554 + sys_corr_17: -68.26702057682597 stat: 4000.0 sys_luminosity: 4500.0 -- sys_corr_1: -1445.3875081617439 - sys_corr_2: 2.748604404198104 +- sys_corr_1: -1445.3875081617427 + sys_corr_2: 2.7486044041981006 sys_corr_3: 150.07813010802124 - sys_corr_4: 36.179298321724694 - sys_corr_5: -139.10386174678098 - sys_corr_6: 128.3618984626837 - sys_corr_7: 68.62524025969898 - sys_corr_8: 297.66200546715265 - sys_corr_9: 25.27743662595793 - sys_corr_10: -9.486868303807718 - sys_corr_11: -2422.5760753433615 - sys_corr_12: -34.9672833661616 - sys_corr_13: -54.887191177532806 - sys_corr_14: 97.08810707187844 - sys_corr_15: -525.4197829004494 - sys_corr_16: 92.38241356900683 - sys_corr_17: 3.254402556421631 + sys_corr_4: 36.17929832172358 + sys_corr_5: -139.10386174678325 + sys_corr_6: 128.36189846268232 + sys_corr_7: 68.62524025969299 + sys_corr_8: 297.66200546715214 + sys_corr_9: 25.27743662595818 + sys_corr_10: -9.486868303807183 + sys_corr_11: -2422.5760753433624 + sys_corr_12: -34.96728336616289 + sys_corr_13: -54.88719117753325 + sys_corr_14: 97.08810707187888 + sys_corr_15: -525.4197829004531 + sys_corr_16: 92.3824135690083 + sys_corr_17: 3.2544025564215695 stat: 3800.0 sys_luminosity: 3600.0 -- sys_corr_1: -810.8945687052404 - sys_corr_2: 2.635155204831498 - sys_corr_3: 71.83061173087901 - sys_corr_4: 27.212683851245288 - sys_corr_5: 0.6606445897353044 - sys_corr_6: 29.245174125210347 - sys_corr_7: 18.366937170765702 - sys_corr_8: 85.39297705214082 - sys_corr_9: 31.852682398005342 - sys_corr_10: -32.32151789103827 - sys_corr_11: -87.30121323357855 - sys_corr_12: -76.22514120860916 - sys_corr_13: -177.0953318410655 - sys_corr_14: -2022.1885110742378 - sys_corr_15: 170.23504064484263 - sys_corr_16: -54.19200729376715 - sys_corr_17: 6.398781770210373 +- sys_corr_1: -810.8945687052399 + sys_corr_2: 2.6351552048315114 + sys_corr_3: 71.83061173087918 + sys_corr_4: 27.212683851246915 + sys_corr_5: 0.6606445897340998 + sys_corr_6: 29.24517412521008 + sys_corr_7: 18.36693717076477 + sys_corr_8: 85.39297705214092 + sys_corr_9: 31.852682398006017 + sys_corr_10: -32.32151789103721 + sys_corr_11: -87.30121323357682 + sys_corr_12: -76.22514120861656 + sys_corr_13: -177.09533184105985 + sys_corr_14: -2022.188511074237 + sys_corr_15: 170.23504064484464 + sys_corr_16: -54.1920072937645 + sys_corr_17: 6.3987817702113565 stat: 3700.0 sys_luminosity: 2500.0 -- sys_corr_1: -859.6114632749405 - sys_corr_2: 3.0407378404426852 - sys_corr_3: 84.77213564256365 - sys_corr_4: 39.914620034860945 - sys_corr_5: 4.416700926309999 - sys_corr_6: 35.076430177626456 - sys_corr_7: 17.07870259213663 - sys_corr_8: 121.94680733622215 - sys_corr_9: 37.2332256945063 - sys_corr_10: -6.011200958492975 - sys_corr_11: -117.10273537115071 - sys_corr_12: -18.01389137285987 - sys_corr_13: -89.60534902881048 - sys_corr_14: 122.27885877211178 - sys_corr_15: 409.6414138268037 - sys_corr_16: -2186.4527422056653 - sys_corr_17: 95.09945793067861 +- sys_corr_1: -859.6114632749402 + sys_corr_2: 3.0407378404426755 + sys_corr_3: 84.77213564256351 + sys_corr_4: 39.914620034862615 + sys_corr_5: 4.416700926309944 + sys_corr_6: 35.07643017762631 + sys_corr_7: 17.07870259213706 + sys_corr_8: 121.94680733622188 + sys_corr_9: 37.23322569450627 + sys_corr_10: -6.011200958492463 + sys_corr_11: -117.1027353711504 + sys_corr_12: -18.013891372861977 + sys_corr_13: -89.60534902880917 + sys_corr_14: 122.27885877211132 + sys_corr_15: 409.6414138267974 + sys_corr_16: -2186.452742205665 + sys_corr_17: 95.09945793069355 stat: 3700.0 sys_luminosity: 2300.0 -- sys_corr_1: -411.37977346235846 - sys_corr_2: 1.1835125096824597 - sys_corr_3: 23.327747711190803 - sys_corr_4: -10.212660184504708 - sys_corr_5: 2.4650387793424224 - sys_corr_6: 17.819003658384485 - sys_corr_7: 1.7142382138998868 - sys_corr_8: 0.6109393486363225 - sys_corr_9: 14.468904263589096 - sys_corr_10: 1.9002688832384498 - sys_corr_11: -11.205462268282847 - sys_corr_12: -1343.3615056641186 - sys_corr_13: 1273.8811302825839 - sys_corr_14: -51.410754040206896 - sys_corr_15: 87.37184505552224 - sys_corr_16: -29.544243347886383 - sys_corr_17: 30.13859708328748 +- sys_corr_1: -411.37977346235834 + sys_corr_2: 1.1835125096824584 + sys_corr_3: 23.32774771119084 + sys_corr_4: -10.212660184504148 + sys_corr_5: 2.465038779342634 + sys_corr_6: 17.819003658384716 + sys_corr_7: 1.7142382139003414 + sys_corr_8: 0.6109393486364607 + sys_corr_9: 14.468904263589094 + sys_corr_10: 1.9002688832385681 + sys_corr_11: -11.205462268283995 + sys_corr_12: -1343.3615056640872 + sys_corr_13: 1273.8811302826089 + sys_corr_14: -51.41075404020019 + sys_corr_15: 87.37184505552138 + sys_corr_16: -29.54424334788564 + sys_corr_17: 30.13859708328586 stat: 4000.0 sys_luminosity: 1400.0 -- sys_corr_1: -237.6981196100086 - sys_corr_2: 1.8245026924638574 - sys_corr_3: 6.6411750909459695 - sys_corr_4: -0.25800016045022967 - sys_corr_5: 6.4751147477636435 - sys_corr_6: 6.481172256204443 - sys_corr_7: -11.339100023110563 - sys_corr_8: -3.1445247790755904 - sys_corr_9: 100.58005239792827 - sys_corr_10: 1578.2746254708898 - sys_corr_11: -5.423165655608169 - sys_corr_12: 11.860424849625359 - sys_corr_13: 0.23656553033526495 - sys_corr_14: -30.51625607127678 - sys_corr_15: 30.50789764040496 - sys_corr_16: 7.680322873167608 - sys_corr_17: 8.453972330999733 +- sys_corr_1: -237.6981196100084 + sys_corr_2: 1.8245026924638557 + sys_corr_3: 6.641175090945971 + sys_corr_4: -0.2580001604509204 + sys_corr_5: 6.475114747761547 + sys_corr_6: 6.481172256205805 + sys_corr_7: -11.339100023112435 + sys_corr_8: -3.144524779073437 + sys_corr_9: 100.58005239791778 + sys_corr_10: 1578.2746254708893 + sys_corr_11: -5.4231656556076295 + sys_corr_12: 11.860424849627114 + sys_corr_13: 0.23656553033638555 + sys_corr_14: -30.516256071274192 + sys_corr_15: 30.507897640406384 + sys_corr_16: 7.680322873168182 + sys_corr_17: 8.453972330998774 stat: 3200.0 sys_luminosity: 700.0 diff --git a/nnpdf_data/nnpdf_data/new_commondata/LHCB_Z0_13TEV/uncertainties_dimuon.yaml b/nnpdf_data/nnpdf_data/new_commondata/LHCB_Z0_13TEV/uncertainties_dimuon.yaml index 5f0904e5d1..181f179280 100644 --- a/nnpdf_data/nnpdf_data/new_commondata/LHCB_Z0_13TEV/uncertainties_dimuon.yaml +++ b/nnpdf_data/nnpdf_data/new_commondata/LHCB_Z0_13TEV/uncertainties_dimuon.yaml @@ -78,365 +78,365 @@ definitions: sys_luminosity: description: Systematic Luminosity uncertainties treatment: MULT - type: LHCBLUMI13TEV + type: LHCBLUMI8TEV bins: -- sys_corr_1: -198.1316756217683 - sys_corr_2: 1.7764096377022027 - sys_corr_3: -443.3954812760771 - sys_corr_4: 15.349906454202642 - sys_corr_5: -43.061045197563935 - sys_corr_6: -77.71919694381789 - sys_corr_7: 6.596413166603892 - sys_corr_8: 0.7953188239955377 - sys_corr_9: -33.099903463865104 - sys_corr_10: -25.510294096056143 - sys_corr_11: 35.142714340669556 - sys_corr_12: -32.36579531370637 - sys_corr_13: -6.552247511484591 - sys_corr_14: 29.57617522816481 - sys_corr_15: -27.38647815325576 - sys_corr_16: 9.628689002584403 - sys_corr_17: -12.528247608395676 - sys_corr_18: 4.531550303410093 +- sys_corr_1: -198.1316756217639 + sys_corr_2: 1.7764096377023284 + sys_corr_3: -443.39548127607674 + sys_corr_4: 15.349906454202694 + sys_corr_5: -43.06104519756403 + sys_corr_6: -77.71919694381799 + sys_corr_7: 6.596413166603836 + sys_corr_8: 0.7953188239955153 + sys_corr_9: -33.09990346386511 + sys_corr_10: -25.510294096056157 + sys_corr_11: 35.14271434066941 + sys_corr_12: -32.36579531370638 + sys_corr_13: -6.552247511484482 + sys_corr_14: 29.576175228164935 + sys_corr_15: -27.386478153255812 + sys_corr_16: 9.628689002584903 + sys_corr_17: -12.528247608395764 + sys_corr_18: 4.531550303410254 stat: 700.0 sys_luminosity: 600.0 -- sys_corr_1: -701.3388976363791 - sys_corr_2: -0.2192079235084073 - sys_corr_3: 42.28628624368921 - sys_corr_4: -0.7257118083184546 - sys_corr_5: -156.97003998493653 - sys_corr_6: -903.2766999846318 - sys_corr_7: 46.29216096532819 - sys_corr_8: -0.8798902746318157 - sys_corr_9: -155.12216500222323 - sys_corr_10: -120.50547885344378 - sys_corr_11: 145.5716757232424 +- sys_corr_1: -701.3388976363788 + sys_corr_2: -0.21920792350833887 + sys_corr_3: 42.28628624368924 + sys_corr_4: -0.7257118083186013 + sys_corr_5: -156.97003998493744 + sys_corr_6: -903.2766999846311 + sys_corr_7: 46.29216096532744 + sys_corr_8: -0.8798902746319858 + sys_corr_9: -155.12216500222266 + sys_corr_10: -120.50547885344324 + sys_corr_11: 145.57167572324204 sys_corr_12: -147.66091449615075 - sys_corr_13: -41.388689741684686 - sys_corr_14: 96.33685439530709 - sys_corr_15: -95.94082237231311 - sys_corr_16: 27.80787653467551 - sys_corr_17: -26.041461772520503 - sys_corr_18: 20.339915330048527 + sys_corr_13: -41.38868974168419 + sys_corr_14: 96.33685439530743 + sys_corr_15: -95.9408223723134 + sys_corr_16: 27.80787653467673 + sys_corr_17: -26.04146177252069 + sys_corr_18: 20.339915330048928 stat: 1200.0 sys_luminosity: 1600.0 -- sys_corr_1: -1225.6907755270124 - sys_corr_2: -0.02423620961255558 - sys_corr_3: 12.957165519087857 - sys_corr_4: 0.21464851504778254 - sys_corr_5: -335.3762942154478 - sys_corr_6: 202.26146452098115 - sys_corr_7: -14.569504424978655 - sys_corr_8: -38.041510581572496 - sys_corr_9: -877.8536817599957 - sys_corr_10: -748.3678967598419 - sys_corr_11: 198.23912927052103 - sys_corr_12: -327.55940542577207 - sys_corr_13: -135.50589435619986 - sys_corr_14: 208.97764692699724 - sys_corr_15: -188.7503930577687 - sys_corr_16: 39.816299076075005 - sys_corr_17: -77.10548989466547 - sys_corr_18: -1.2169095769569502 +- sys_corr_1: -1225.6907755270117 + sys_corr_2: -0.024236209612398803 + sys_corr_3: 12.957165519087859 + sys_corr_4: 0.21464851504790258 + sys_corr_5: -335.3762942154493 + sys_corr_6: 202.26146452098084 + sys_corr_7: -14.569504424978508 + sys_corr_8: -38.0415105815732 + sys_corr_9: -877.8536817599955 + sys_corr_10: -748.3678967598411 + sys_corr_11: 198.23912927052066 + sys_corr_12: -327.5594054257728 + sys_corr_13: -135.50589435619867 + sys_corr_14: 208.97764692699764 + sys_corr_15: -188.7503930577691 + sys_corr_16: 39.816299076077776 + sys_corr_17: -77.10548989466663 + sys_corr_18: -1.2169095769556142 stat: 1500.0 sys_luminosity: 2500.0 -- sys_corr_1: -1743.8506348463966 - sys_corr_2: -0.35743918520670226 - sys_corr_3: 7.086516489550832 - sys_corr_4: -0.2617500545571022 - sys_corr_5: -249.19144158205413 - sys_corr_6: 89.69901872123151 - sys_corr_7: -3.8548638598595226 - sys_corr_8: 31.4860558721439 - sys_corr_9: 336.6882885766389 - sys_corr_10: 316.6641488350713 - sys_corr_11: 368.765757428534 - sys_corr_12: -1215.1780807815999 - sys_corr_13: -291.6892330796153 - sys_corr_14: 406.1970459620427 - sys_corr_15: -284.2433768722958 - sys_corr_16: 111.01068420505709 - sys_corr_17: -9.56720054989568 - sys_corr_18: 90.64789014798558 +- sys_corr_1: -1743.8506348463961 + sys_corr_2: -0.3574391852067303 + sys_corr_3: 7.086516489550815 + sys_corr_4: -0.26175005455710715 + sys_corr_5: -249.1914415820547 + sys_corr_6: 89.69901872123148 + sys_corr_7: -3.854863859859779 + sys_corr_8: 31.48605587214432 + sys_corr_9: 336.6882885766404 + sys_corr_10: 316.66414883507076 + sys_corr_11: 368.76575742853026 + sys_corr_12: -1215.178080781601 + sys_corr_13: -291.6892330796121 + sys_corr_14: 406.19704596204605 + sys_corr_15: -284.24337687229684 + sys_corr_16: 111.01068420505946 + sys_corr_17: -9.56720054989609 + sys_corr_18: 90.64789014798508 stat: 1800.0 sys_luminosity: 3600.0 -- sys_corr_1: -2139.82724878605 - sys_corr_2: 0.21831288745283975 - sys_corr_3: 5.901771040965151 - sys_corr_4: -0.9627985855645 - sys_corr_5: -251.56856313658676 - sys_corr_6: 42.450340412353334 - sys_corr_7: -6.697168331030553 - sys_corr_8: 6.253820024400349 - sys_corr_9: 138.23078867656653 - sys_corr_10: 70.28226492712355 - sys_corr_11: 523.5456379586715 - sys_corr_12: 678.6065660255264 - sys_corr_13: 228.30213577891274 +- sys_corr_1: -2139.8272487860495 + sys_corr_2: 0.21831288745273755 + sys_corr_3: 5.90177104096512 + sys_corr_4: -0.9627985855644728 + sys_corr_5: -251.56856313658733 + sys_corr_6: 42.450340412353555 + sys_corr_7: -6.697168331030207 + sys_corr_8: 6.253820024400852 + sys_corr_9: 138.23078867656676 + sys_corr_10: 70.28226492712322 + sys_corr_11: 523.5456379586727 + sys_corr_12: 678.6065660255275 + sys_corr_13: 228.3021357789108 sys_corr_14: 1199.8472764997528 - sys_corr_15: -590.8070096056722 - sys_corr_16: 153.82026458824083 - sys_corr_17: -125.02336784844512 - sys_corr_18: 84.71575361760533 + sys_corr_15: -590.8070096056733 + sys_corr_16: 153.82026458824774 + sys_corr_17: -125.02336784844803 + sys_corr_18: 84.71575361760708 stat: 2000.0 sys_luminosity: 4200.0 -- sys_corr_1: -2465.7457325268642 - sys_corr_2: 0.42441200623557657 +- sys_corr_1: -2465.7457325268647 + sys_corr_2: 0.42441200623554676 sys_corr_3: 2.744312660614499 - sys_corr_4: -0.8586284175887904 - sys_corr_5: -408.738948210598 - sys_corr_6: 31.956062621592917 - sys_corr_7: 6.57129968658671 - sys_corr_8: -9.120206644285293 - sys_corr_9: 54.15148697262567 - sys_corr_10: 72.64357706331464 - sys_corr_11: 554.0009879521117 - sys_corr_12: 198.92821851185528 - sys_corr_13: 61.2185766060657 - sys_corr_14: -1092.675971171719 - sys_corr_15: -1080.6857132813266 - sys_corr_16: 120.44010295176243 - sys_corr_17: 36.54833728158317 + sys_corr_4: -0.8586284175887835 + sys_corr_5: -408.73894821059815 + sys_corr_6: 31.956062621592952 + sys_corr_7: 6.571299686586631 + sys_corr_8: -9.120206644285634 + sys_corr_9: 54.1514869726253 + sys_corr_10: 72.64357706331515 + sys_corr_11: 554.0009879521115 + sys_corr_12: 198.92821851185485 + sys_corr_13: 61.21857660606679 + sys_corr_14: -1092.675971171717 + sys_corr_15: -1080.6857132813238 + sys_corr_16: 120.44010295176737 + sys_corr_17: 36.54833728157899 sys_corr_18: 125.55377368514836 stat: 2100.0 sys_luminosity: 4700.0 - sys_corr_1: -2790.2606687975026 - sys_corr_2: -0.03598691347356336 - sys_corr_3: 2.138131356854643 - sys_corr_4: 0.7024269100943523 - sys_corr_5: -264.983682645896 - sys_corr_6: 23.385194534480878 - sys_corr_7: 3.23303209769345 - sys_corr_8: -13.336537336643826 - sys_corr_9: 60.00416895825427 - sys_corr_10: -0.5547166230556425 - sys_corr_11: 907.5710723114428 - sys_corr_12: 141.82409505053525 - sys_corr_13: -20.22704106814647 - sys_corr_14: -261.0780017814831 - sys_corr_15: 1171.9191685807434 - sys_corr_16: 518.7716377954094 - sys_corr_17: -562.3914070082238 - sys_corr_18: 398.3907187111543 + sys_corr_2: -0.03598691347358345 + sys_corr_3: 2.1381313568546103 + sys_corr_4: 0.7024269100943327 + sys_corr_5: -264.98368264589664 + sys_corr_6: 23.385194534480952 + sys_corr_7: 3.2330320976934757 + sys_corr_8: -13.336537336643314 + sys_corr_9: 60.004168958254134 + sys_corr_10: -0.5547166230552949 + sys_corr_11: 907.5710723114452 + sys_corr_12: 141.82409505053374 + sys_corr_13: -20.227041068148182 + sys_corr_14: -261.0780017814865 + sys_corr_15: 1171.9191685807489 + sys_corr_16: 518.7716377954223 + sys_corr_17: -562.391407008206 + sys_corr_18: 398.39071871115533 stat: 2200.0 sys_luminosity: 5300.0 -- sys_corr_1: -2889.3315333449964 - sys_corr_2: -0.11865249637159285 - sys_corr_3: 0.557957979377561 - sys_corr_4: 0.4180897883496238 - sys_corr_5: -631.5666941430807 +- sys_corr_1: -2889.331533344995 + sys_corr_2: -0.1186524963715447 + sys_corr_3: 0.5579579793775341 + sys_corr_4: 0.4180897883495383 + sys_corr_5: -631.5666941430794 sys_corr_6: 12.24676479342741 - sys_corr_7: -0.023955238211516548 - sys_corr_8: 5.734527709089284 - sys_corr_9: 42.33831146950303 - sys_corr_10: 27.223246732144283 - sys_corr_11: -0.7921801496230804 - sys_corr_12: 91.69755648808062 - sys_corr_13: -33.300914324270515 - sys_corr_14: 2.743530601771699 - sys_corr_15: 396.93635825373315 - sys_corr_16: -1482.1304879191246 - sys_corr_17: 653.0268202115445 - sys_corr_18: 141.17706525246442 + sys_corr_7: -0.023955238211115733 + sys_corr_8: 5.734527709089779 + sys_corr_9: 42.33831146950339 + sys_corr_10: 27.22324673214423 + sys_corr_11: -0.792180149620354 + sys_corr_12: 91.69755648808031 + sys_corr_13: -33.30091432427267 + sys_corr_14: 2.7435306017701344 + sys_corr_15: 396.93635825372536 + sys_corr_16: -1482.1304879191414 + sys_corr_17: 653.0268202115295 + sys_corr_18: 141.17706525246888 stat: 2200.0 sys_luminosity: 5500.0 -- sys_corr_1: -2956.1740789371415 - sys_corr_2: 0.5826072537983265 - sys_corr_3: 1.4234530016221414 - sys_corr_4: -1.399903742857543 - sys_corr_5: -1017.1489236383131 - sys_corr_6: 4.855797343209277 - sys_corr_7: 18.284614076809238 - sys_corr_8: -21.966081175920483 - sys_corr_9: 62.45876189160638 - sys_corr_10: 31.84132052888346 - sys_corr_11: -1268.1533916503158 - sys_corr_12: 70.17905613428796 - sys_corr_13: 2.9706376514941275 - sys_corr_14: 2.342421152246203 - sys_corr_15: 162.50016729101299 - sys_corr_16: 828.3223515153884 - sys_corr_17: 319.76560924209235 - sys_corr_18: -206.77638164644895 +- sys_corr_1: -2956.1740789371406 + sys_corr_2: 0.5826072537983766 + sys_corr_3: 1.423453001622124 + sys_corr_4: -1.3999037428575567 + sys_corr_5: -1017.1489236383123 + sys_corr_6: 4.8557973432093045 + sys_corr_7: 18.284614076809657 + sys_corr_8: -21.966081175920635 + sys_corr_9: 62.45876189160606 + sys_corr_10: 31.841320528883497 + sys_corr_11: -1268.153391650317 + sys_corr_12: 70.17905613428861 + sys_corr_13: 2.9706376514945023 + sys_corr_14: 2.342421152246085 + sys_corr_15: 162.50016729101597 + sys_corr_16: 828.3223515153772 + sys_corr_17: 319.7656092421028 + sys_corr_18: -206.776381646463 stat: 2300.0 sys_luminosity: 5700.0 -- sys_corr_1: -2900.53423868805 - sys_corr_2: -0.08998743149531487 - sys_corr_3: 0.1285341469767529 - sys_corr_4: -6.093480990284922 - sys_corr_5: 576.2798307198763 - sys_corr_6: -0.14259421734755606 - sys_corr_7: 10.623794080459554 - sys_corr_8: 41.437965137177606 - sys_corr_9: 64.98982845439271 - sys_corr_10: -43.22821117214862 - sys_corr_11: 135.7971981462615 - sys_corr_12: 55.3200562630862 - sys_corr_13: -242.87939572939055 - sys_corr_14: -59.42828796372566 - sys_corr_15: 84.55092786032195 - sys_corr_16: -134.49198947749412 - sys_corr_17: -267.464473413603 - sys_corr_18: -1620.50784519506 +- sys_corr_1: -2900.5342386880507 + sys_corr_2: -0.08998743149531278 + sys_corr_3: 0.12853414697675147 + sys_corr_4: -6.093480990284904 + sys_corr_5: 576.2798307198766 + sys_corr_6: -0.14259421734760724 + sys_corr_7: 10.623794080459348 + sys_corr_8: 41.43796513717791 + sys_corr_9: 64.98982845439289 + sys_corr_10: -43.22821117214888 + sys_corr_11: 135.79719814626185 + sys_corr_12: 55.320056263085306 + sys_corr_13: -242.87939572939075 + sys_corr_14: -59.42828796372623 + sys_corr_15: 84.55092786032104 + sys_corr_16: -134.4919894775032 + sys_corr_17: -267.4644734136168 + sys_corr_18: -1620.5078451950535 stat: 2300.0 sys_luminosity: 5600.0 -- sys_corr_1: -2764.63763068716 - sys_corr_2: -0.16249562858785754 - sys_corr_3: 0.2775075799091478 - sys_corr_4: -7.340982046283769 - sys_corr_5: 604.1439690439447 - sys_corr_6: -6.714695844152645 - sys_corr_7: -0.9277386987866036 - sys_corr_8: 31.640567457438348 - sys_corr_9: 70.75233659901282 - sys_corr_10: -78.1467597499975 - sys_corr_11: -866.8408635407237 - sys_corr_12: 21.89528546910674 - sys_corr_13: -252.5295187975656 - sys_corr_14: -16.72326085821347 - sys_corr_15: -238.30466814428507 - sys_corr_16: -450.9841281666155 - sys_corr_17: -1173.0752845878892 - sys_corr_18: 646.0264902505156 +- sys_corr_1: -2764.637630687159 + sys_corr_2: -0.16249562858787706 + sys_corr_3: 0.2775075799091809 + sys_corr_4: -7.340982046283694 + sys_corr_5: 604.1439690439453 + sys_corr_6: -6.71469584415275 + sys_corr_7: -0.9277386987865739 + sys_corr_8: 31.64056745743763 + sys_corr_9: 70.75233659901255 + sys_corr_10: -78.14675974999724 + sys_corr_11: -866.8408635407267 + sys_corr_12: 21.895285469106703 + sys_corr_13: -252.5295187975642 + sys_corr_14: -16.723260858212882 + sys_corr_15: -238.3046681442805 + sys_corr_16: -450.9841281665797 + sys_corr_17: -1173.0752845878906 + sys_corr_18: 646.0264902505387 stat: 2200.0 sys_luminosity: 5300.0 -- sys_corr_1: -2383.568796151871 - sys_corr_2: -0.7021589850967389 - sys_corr_3: -2.0173566808345944 - sys_corr_4: -10.992098437683618 +- sys_corr_1: -2383.56879615187 + sys_corr_2: -0.7021589850968055 + sys_corr_3: -2.0173566808346086 + sys_corr_4: -10.992098437683515 sys_corr_5: 1169.5946717116537 - sys_corr_6: -8.057979476136095 - sys_corr_7: -12.897289938504642 - sys_corr_8: 75.07165809476908 - sys_corr_9: 69.03793275113435 - sys_corr_10: -197.36193276615762 - sys_corr_11: 31.074451850088973 - sys_corr_12: 139.5551877274081 - sys_corr_13: -599.2936856243623 - sys_corr_14: 32.97372579205894 - sys_corr_15: 18.509108075434977 - sys_corr_16: 417.12860240067783 - sys_corr_17: 1051.7687086160627 - sys_corr_18: 489.5916468344606 + sys_corr_6: -8.057979476136333 + sys_corr_7: -12.897289938504631 + sys_corr_8: 75.07165809476872 + sys_corr_9: 69.03793275113436 + sys_corr_10: -197.36193276615793 + sys_corr_11: 31.074451850089353 + sys_corr_12: 139.55518772740623 + sys_corr_13: -599.2936856243632 + sys_corr_14: 32.973725792057635 + sys_corr_15: 18.50910807543177 + sys_corr_16: 417.1286024006565 + sys_corr_17: 1051.7687086160704 + sys_corr_18: 489.5916468344398 stat: 2100.0 sys_luminosity: 4800.0 -- sys_corr_1: -1835.1865490726566 - sys_corr_2: -1.1029444833980568 - sys_corr_3: -0.13984444148153993 - sys_corr_4: -12.58256634302302 - sys_corr_5: 562.5944975130017 - sys_corr_6: -2.599054640030683 - sys_corr_7: -15.665162262300727 - sys_corr_8: 122.04383334459854 - sys_corr_9: 224.845768860505 - sys_corr_10: -389.5492356655222 - sys_corr_11: -95.60997620901354 - sys_corr_12: -338.7841773361957 - sys_corr_13: 1299.8575460500747 - sys_corr_14: -53.01225847469737 - sys_corr_15: 58.082138036413035 - sys_corr_16: 31.505712552076645 - sys_corr_17: 188.47744364453004 - sys_corr_18: 41.48868083992263 +- sys_corr_1: -1835.1865490726564 + sys_corr_2: -1.1029444833980808 + sys_corr_3: -0.13984444148153508 + sys_corr_4: -12.582566343023004 + sys_corr_5: 562.5944975130018 + sys_corr_6: -2.5990546400307597 + sys_corr_7: -15.665162262301113 + sys_corr_8: 122.04383334459763 + sys_corr_9: 224.84576886050445 + sys_corr_10: -389.5492356655221 + sys_corr_11: -95.60997620901263 + sys_corr_12: -338.7841773361912 + sys_corr_13: 1299.8575460500774 + sys_corr_14: -53.01225847469744 + sys_corr_15: 58.08213803641245 + sys_corr_16: 31.505712552072506 + sys_corr_17: 188.4774436445314 + sys_corr_18: 41.48868083991889 stat: 1900.0 sys_luminosity: 3900.0 -- sys_corr_1: -1265.1098220797442 - sys_corr_2: -2.024982187957206 - sys_corr_3: 0.10684211754564749 - sys_corr_4: -17.25118767036277 - sys_corr_5: 332.19892108678994 - sys_corr_6: 3.472180037477035 - sys_corr_7: -57.56869149440764 - sys_corr_8: 517.5819133402239 - sys_corr_9: -716.8798358876861 - sys_corr_10: 801.4645046520707 - sys_corr_11: -73.67194406189167 - sys_corr_12: -24.505763562535844 +- sys_corr_1: -1265.1098220797437 + sys_corr_2: -2.024982187957199 + sys_corr_3: 0.1068421175456384 + sys_corr_4: -17.251187670362683 + sys_corr_5: 332.1989210867903 + sys_corr_6: 3.4721800374769725 + sys_corr_7: -57.56869149440821 + sys_corr_8: 517.5819133402248 + sys_corr_9: -716.8798358876844 + sys_corr_10: 801.4645046520704 + sys_corr_11: -73.67194406189249 + sys_corr_12: -24.505763562536007 sys_corr_13: 284.93046637178225 - sys_corr_14: 8.839492908604166 - sys_corr_15: 55.46565559801886 - sys_corr_16: 52.87845505952488 - sys_corr_17: 72.98136802591743 - sys_corr_18: 53.568234245957164 + sys_corr_14: 8.839492908606 + sys_corr_15: 55.46565559801999 + sys_corr_16: 52.87845505952278 + sys_corr_17: 72.98136802591983 + sys_corr_18: 53.56823424595481 stat: 1700.0 sys_luminosity: 2900.0 -- sys_corr_1: -959.5523036649836 - sys_corr_2: -2.7551979609541672 - sys_corr_3: -1.7265105735640363 - sys_corr_4: -26.181618809259707 - sys_corr_5: 301.69596895393 - sys_corr_6: -26.30775041240446 - sys_corr_7: -580.8110583645614 +- sys_corr_1: -959.5523036649834 + sys_corr_2: -2.755197960954223 + sys_corr_3: -1.7265105735640398 + sys_corr_4: -26.18161880925965 + sys_corr_5: 301.69596895392993 + sys_corr_6: -26.3077504124041 + sys_corr_7: -580.8110583645623 sys_corr_8: -844.9100140091189 - sys_corr_9: -220.59884447411287 - sys_corr_10: 304.3787056105813 - sys_corr_11: -47.14664962473696 - sys_corr_12: -52.26075034572333 - sys_corr_13: 183.32392115396163 - sys_corr_14: 10.992326055832129 - sys_corr_15: 17.113347182992545 - sys_corr_16: 12.429260499826405 - sys_corr_17: 71.83870391127329 - sys_corr_18: 5.955808046521905 + sys_corr_9: -220.59884447411392 + sys_corr_10: 304.3787056105809 + sys_corr_11: -47.14664962473652 + sys_corr_12: -52.26075034572314 + sys_corr_13: 183.3239211539608 + sys_corr_14: 10.9923260558336 + sys_corr_15: 17.113347182993323 + sys_corr_16: 12.42926049982413 + sys_corr_17: 71.8387039112742 + sys_corr_18: 5.955808046520381 stat: 1500.0 sys_luminosity: 2300.0 -- sys_corr_1: -671.8654202371796 - sys_corr_2: -2.209890563332314 - sys_corr_3: 0.029933955854845328 - sys_corr_4: -24.05166694511674 - sys_corr_5: 268.92255546395694 - sys_corr_6: 34.81023884950142 - sys_corr_7: 870.1548890877599 - sys_corr_8: -526.2414351564987 - sys_corr_9: -195.54781254450293 - sys_corr_10: 241.08505355639537 - sys_corr_11: -19.898109299193912 - sys_corr_12: -42.147115898990116 - sys_corr_13: 158.0154388710818 - sys_corr_14: 26.51232789942064 - sys_corr_15: 11.883585389958087 - sys_corr_16: 0.13962299635332615 - sys_corr_17: 67.887499551824 - sys_corr_18: 37.78649142120614 +- sys_corr_1: -671.8654202371795 + sys_corr_2: -2.209890563332366 + sys_corr_3: 0.02993395585484563 + sys_corr_4: -24.051666945116676 + sys_corr_5: 268.92255546395836 + sys_corr_6: 34.81023884950086 + sys_corr_7: 870.1548890877593 + sys_corr_8: -526.241435156497 + sys_corr_9: -195.5478125445036 + sys_corr_10: 241.08505355639755 + sys_corr_11: -19.89810929919263 + sys_corr_12: -42.14711589898891 + sys_corr_13: 158.0154388710812 + sys_corr_14: 26.51232789942191 + sys_corr_15: 11.883585389959068 + sys_corr_16: 0.1396229963515076 + sys_corr_17: 67.88749955182475 + sys_corr_18: 37.78649142120483 stat: 1200.0 sys_luminosity: 1600.0 -- sys_corr_1: -303.15559477999926 - sys_corr_2: -14.837753484575202 - sys_corr_3: 13.352234894316108 - sys_corr_4: 501.6190098019199 - sys_corr_5: 92.6721251075261 - sys_corr_6: 1.2165098238343142 - sys_corr_7: 8.732431249380127 - sys_corr_8: -45.42000547676696 - sys_corr_9: -34.37283252899483 - sys_corr_10: 40.15296467794791 - sys_corr_11: -22.259205173590793 - sys_corr_12: -7.967729894849282 - sys_corr_13: 39.96036265214342 - sys_corr_14: 0.6705094554276854 - sys_corr_15: -1.2173821573895087 - sys_corr_16: 7.31332579200524 - sys_corr_17: 17.974055326727576 - sys_corr_18: 4.444730020587948 +- sys_corr_1: -303.1555947799991 + sys_corr_2: -14.837753484574094 + sys_corr_3: 13.352234894316188 + sys_corr_4: 501.6190098019197 + sys_corr_5: 92.67212510752537 + sys_corr_6: 1.216509823833827 + sys_corr_7: 8.732431249380516 + sys_corr_8: -45.42000547676677 + sys_corr_9: -34.37283252899498 + sys_corr_10: 40.152964677948155 + sys_corr_11: -22.259205173591276 + sys_corr_12: -7.967729894849778 + sys_corr_13: 39.96036265214321 + sys_corr_14: 0.6705094554280392 + sys_corr_15: -1.2173821573897217 + sys_corr_16: 7.313325792004881 + sys_corr_17: 17.974055326727598 + sys_corr_18: 4.444730020587761 stat: 600.0 sys_luminosity: 700.0 - sys_corr_1: -45.071312905700744 - sys_corr_2: 294.1692484849769 - sys_corr_3: 3.3611872196627375 - sys_corr_4: 24.588876780038476 - sys_corr_5: 19.53450594456641 - sys_corr_6: -0.08990753459126256 - sys_corr_7: 1.0028098052530776 - sys_corr_8: -9.845511334893903 - sys_corr_9: -8.99586024196346 - sys_corr_10: 10.394504420300839 - sys_corr_11: -1.1473801066276712 - sys_corr_12: -4.578160160585822 - sys_corr_13: 9.474002705577885 - sys_corr_14: 1.303821119813254 - sys_corr_15: 2.438348474781579 - sys_corr_16: -0.6881701963940388 - sys_corr_17: 4.718790726230466 - sys_corr_18: 2.4869241433563714 + sys_corr_2: 294.1692484849759 + sys_corr_3: 3.3611872196625256 + sys_corr_4: 24.588876780037403 + sys_corr_5: 19.53450594456611 + sys_corr_6: -0.08990753459072345 + sys_corr_7: 1.0028098052534022 + sys_corr_8: -9.845511334893803 + sys_corr_9: -8.995860241962543 + sys_corr_10: 10.394504420301955 + sys_corr_11: -1.147380106628713 + sys_corr_12: -4.578160160584672 + sys_corr_13: 9.474002705577956 + sys_corr_14: 1.3038211198135494 + sys_corr_15: 2.4383484747813036 + sys_corr_16: -0.6881701963942123 + sys_corr_17: 4.718790726230366 + sys_corr_18: 2.4869241433564557 stat: 200.0 sys_luminosity: 100.0 diff --git a/nnpdf_data/nnpdf_data/new_commondata/LHCB_Z0_13TEV_2022/uncertainties_dimuon_y.yaml b/nnpdf_data/nnpdf_data/new_commondata/LHCB_Z0_13TEV_2022/uncertainties_dimuon_y.yaml index 7bdf87af44..023e47f023 100644 --- a/nnpdf_data/nnpdf_data/new_commondata/LHCB_Z0_13TEV_2022/uncertainties_dimuon_y.yaml +++ b/nnpdf_data/nnpdf_data/new_commondata/LHCB_Z0_13TEV_2022/uncertainties_dimuon_y.yaml @@ -202,42 +202,42 @@ definitions: treatment: ADD type: LHCB_LUM bins: -- Stat_corr_1: 0.19999594778191546 - Stat_corr_2: -0.001273129080240051 - Stat_corr_3: -2.5395876142546054e-06 - Stat_corr_4: -2.590158723546052e-06 - Stat_corr_5: -6.653880888613431e-13 - Stat_corr_6: 9.656825356558707e-12 - Stat_corr_7: 3.916977238650002e-11 - Stat_corr_8: -7.254013402544316e-11 - Stat_corr_9: -1.1483292227156571e-12 - Stat_corr_10: -7.732485703837392e-11 - Stat_corr_11: 4.7886818251285696e-11 - Stat_corr_12: -1.3742815168472698e-11 - Stat_corr_13: 1.4559711202741316e-18 - Stat_corr_14: -8.907798555761041e-19 - Stat_corr_15: -3.2263789929978034e-24 - Stat_corr_16: 2.3418241532022697e-24 - Stat_corr_17: 5.792749393711933e-33 - Stat_corr_18: 5.5614559029020964e-33 - Sys_corr_eff_1: -0.02480075323991643 - Sys_corr_eff_2: -0.03965825795494192 - Sys_corr_eff_3: -0.040099358202316124 - Sys_corr_eff_4: -0.02269862744966421 - Sys_corr_eff_5: -0.035468723409268196 - Sys_corr_eff_6: -0.03149305370715955 - Sys_corr_eff_7: 0.02498120010174967 - Sys_corr_eff_8: 0.017280802473535525 - Sys_corr_eff_9: -0.022921373362874135 - Sys_corr_eff_10: 0.004282652955971507 - Sys_corr_eff_11: 0.00012305385321152474 - Sys_corr_eff_12: 7.70970614753385e-05 - Sys_corr_eff_13: -0.0005475739049801096 - Sys_corr_eff_14: 0.00046355083755450434 - Sys_corr_eff_15: -0.0005304149918252735 - Sys_corr_eff_16: -0.00020037516218429234 - Sys_corr_eff_17: 4.1969908957394965e-05 - Sys_corr_eff_18: -1.4350793929534936e-05 +- Stat_corr_1: 0.19999594778191543 + Stat_corr_2: -0.001273129080240069 + Stat_corr_3: -2.539587614242732e-06 + Stat_corr_4: -2.5901587235359432e-06 + Stat_corr_5: -6.653871605786796e-13 + Stat_corr_6: 9.656824420310091e-12 + Stat_corr_7: 3.9169774285916657e-11 + Stat_corr_8: -7.254013377817582e-11 + Stat_corr_9: -1.148329505276774e-12 + Stat_corr_10: -7.732485438195784e-11 + Stat_corr_11: 4.7886819048003586e-11 + Stat_corr_12: -1.3742816912601677e-11 + Stat_corr_13: 1.4559711013416399e-18 + Stat_corr_14: -8.907798388159137e-19 + Stat_corr_15: -3.226378992410207e-24 + Stat_corr_16: 2.3418241531641683e-24 + Stat_corr_17: 5.7927493937142886e-33 + Stat_corr_18: 5.561455902901476e-33 + Sys_corr_eff_1: -0.024800753239917272 + Sys_corr_eff_2: -0.039658257954941496 + Sys_corr_eff_3: -0.04009935820231585 + Sys_corr_eff_4: -0.02269862744966399 + Sys_corr_eff_5: -0.03546872340926772 + Sys_corr_eff_6: -0.03149305370715921 + Sys_corr_eff_7: 0.024981200101752102 + Sys_corr_eff_8: 0.017280802473531563 + Sys_corr_eff_9: -0.02292137336287788 + Sys_corr_eff_10: 0.004282652955974322 + Sys_corr_eff_11: 0.00012305385321144152 + Sys_corr_eff_12: 7.709706147450375e-05 + Sys_corr_eff_13: -0.0005475739049808745 + Sys_corr_eff_14: 0.0004635508375555374 + Sys_corr_eff_15: -0.0005304149918318098 + Sys_corr_eff_16: -0.00020037516218300068 + Sys_corr_eff_17: 4.196990895780346e-05 + Sys_corr_eff_18: -1.4350793929402428e-05 Sys_back_corr: 0.03258348047707611 Sys_back_unc: 0.03258348047707611 Sys_fsr_corr: 0.010861160159025371 @@ -247,42 +247,42 @@ bins: Sys_align_corr: 0.024437610357807088 Sys_align_unc: 0.024437610357807088 Luminosity: 0.3 -- Stat_corr_1: -0.0008487457398503269 - Stat_corr_2: -0.29999178750612515 - Stat_corr_3: -0.0014454127773040877 - Stat_corr_4: -0.0014552805356156887 - Stat_corr_5: -6.838721495070693e-10 - Stat_corr_6: 9.793269295880828e-09 - Stat_corr_7: 3.9334779239297985e-08 - Stat_corr_8: -7.213733118662903e-08 - Stat_corr_9: -1.0930377325357863e-09 - Stat_corr_10: -7.617826921962011e-08 - Stat_corr_11: 4.670633167637884e-08 - Stat_corr_12: -1.3268276053899751e-08 - Stat_corr_13: 8.456591962958884e-16 - Stat_corr_14: -4.896587704656823e-16 - Stat_corr_15: -7.839554825479649e-22 - Stat_corr_16: 5.337911066300046e-22 - Stat_corr_17: -8.196968875514958e-31 - Stat_corr_18: -7.856833613024796e-31 - Sys_corr_eff_1: -0.11626243348280021 - Sys_corr_eff_2: -0.16496669150110135 - Sys_corr_eff_3: -0.1446920840484521 - Sys_corr_eff_4: -0.07908389754678632 - Sys_corr_eff_5: -0.0739221446221307 - Sys_corr_eff_6: -0.04255051847825764 - Sys_corr_eff_7: -0.00046910038458941925 - Sys_corr_eff_8: -0.00237556638933384 - Sys_corr_eff_9: 0.015765653873948116 - Sys_corr_eff_10: 0.0008692879263519457 - Sys_corr_eff_11: -0.0009916377217544974 - Sys_corr_eff_12: 0.004312124844300791 - Sys_corr_eff_13: -0.0001052566385999987 - Sys_corr_eff_14: 0.0003448454966772578 - Sys_corr_eff_15: 0.00031422591888848424 - Sys_corr_eff_16: 0.00019087079691499606 - Sys_corr_eff_17: 6.657386300824787e-05 - Sys_corr_eff_18: 3.592432620084504e-05 +- Stat_corr_1: -0.0008487457398503512 + Stat_corr_2: -0.2999917875061251 + Stat_corr_3: -0.0014454127773033231 + Stat_corr_4: -0.0014552805356155506 + Stat_corr_5: -6.838718664268844e-10 + Stat_corr_6: 9.793268874575423e-09 + Stat_corr_7: 3.933477942980346e-08 + Stat_corr_8: -7.213733107822695e-08 + Stat_corr_9: -1.0930377694182118e-09 + Stat_corr_10: -7.617826865785778e-08 + Stat_corr_11: 4.670633177251585e-08 + Stat_corr_12: -1.3268276336345878e-08 + Stat_corr_13: 8.456592028097331e-16 + Stat_corr_14: -4.896587721225593e-16 + Stat_corr_15: -7.839554824106457e-22 + Stat_corr_16: 5.337911066209877e-22 + Stat_corr_17: -8.196968875512078e-31 + Stat_corr_18: -7.8568336130261295e-31 + Sys_corr_eff_1: -0.11626243348280045 + Sys_corr_eff_2: -0.1649666915011018 + Sys_corr_eff_3: -0.1446920840484529 + Sys_corr_eff_4: -0.07908389754678626 + Sys_corr_eff_5: -0.07392214462213005 + Sys_corr_eff_6: -0.04255051847825698 + Sys_corr_eff_7: -0.00046910038458965935 + Sys_corr_eff_8: -0.002375566389330638 + Sys_corr_eff_9: 0.015765653873947245 + Sys_corr_eff_10: 0.0008692879263504364 + Sys_corr_eff_11: -0.000991637721745068 + Sys_corr_eff_12: 0.004312124844309284 + Sys_corr_eff_13: -0.00010525663860034778 + Sys_corr_eff_14: 0.00034484549667570565 + Sys_corr_eff_15: 0.00031422591888553315 + Sys_corr_eff_16: 0.00019087079691422438 + Sys_corr_eff_17: 6.657386300751079e-05 + Sys_corr_eff_18: 3.5924326200962425e-05 Sys_back_corr: 0.07998791908782227 Sys_back_unc: 0.07998791908782227 Sys_fsr_corr: 0.05713422791987304 @@ -292,42 +292,42 @@ bins: Sys_align_corr: 0.06284765071186035 Sys_align_unc: 0.06284765071186035 Luminosity: 0.8 -- Stat_corr_1: 2.538600418671792e-06 - Stat_corr_2: 0.0015383028619794382 - Stat_corr_3: -0.2850009669305086 - Stat_corr_4: -0.2806636411964275 - Stat_corr_5: -3.2027225489130717e-07 - Stat_corr_6: 4.507365205726829e-06 - Stat_corr_7: 1.7873270065376105e-05 - Stat_corr_8: -3.236189283061974e-05 - Stat_corr_9: -4.628265752675085e-07 - Stat_corr_10: -3.375698049331417e-05 - Stat_corr_11: 2.0425783695849262e-05 - Stat_corr_12: -5.725041474337555e-06 - Stat_corr_13: 1.7257784783844479e-13 - Stat_corr_14: -9.091673528123084e-14 - Stat_corr_15: -3.402463514466923e-21 - Stat_corr_16: -2.431277437694717e-21 - Stat_corr_17: 1.8276440211866912e-28 - Stat_corr_18: 1.7507325132706268e-28 - Sys_corr_eff_1: -0.23138641125014014 - Sys_corr_eff_2: -0.2857367478401061 - Sys_corr_eff_3: -0.20541172036469724 - Sys_corr_eff_4: -0.07762132284081252 - Sys_corr_eff_5: -0.005113403117149597 - Sys_corr_eff_6: 0.02627352404747335 - Sys_corr_eff_7: -0.027632285351042035 - Sys_corr_eff_8: -0.008421880374736795 - Sys_corr_eff_9: -0.014334999872474462 - Sys_corr_eff_10: 0.001232246809826998 - Sys_corr_eff_11: -0.0011664305925938034 - Sys_corr_eff_12: -0.0033159679058523735 - Sys_corr_eff_13: 0.0002071809470335822 - Sys_corr_eff_14: 0.0005618852625709065 - Sys_corr_eff_15: 0.0006600489294296891 - Sys_corr_eff_16: 0.0001221664627988106 - Sys_corr_eff_17: 7.137332997598562e-05 - Sys_corr_eff_18: -5.609919439190612e-07 +- Stat_corr_1: 2.5386004186743388e-06 + Stat_corr_2: 0.0015383028619790648 + Stat_corr_3: -0.2850009669304523 + Stat_corr_4: -0.2806636411964914 + Stat_corr_5: -3.202722544614654e-07 + Stat_corr_6: 4.5073652058930515e-06 + Stat_corr_7: 1.787327006559206e-05 + Stat_corr_8: -3.2361892830241126e-05 + Stat_corr_9: -4.6282657553592223e-07 + Stat_corr_10: -3.3756980493838485e-05 + Stat_corr_11: 2.0425783695862002e-05 + Stat_corr_12: -5.725041474256148e-06 + Stat_corr_13: 1.7257784784145117e-13 + Stat_corr_14: -9.091673528106513e-14 + Stat_corr_15: -3.402463514467557e-21 + Stat_corr_16: -2.431277437694646e-21 + Stat_corr_17: 1.8276440211867123e-28 + Stat_corr_18: 1.7507325132706144e-28 + Sys_corr_eff_1: -0.23138641125013987 + Sys_corr_eff_2: -0.2857367478401078 + Sys_corr_eff_3: -0.20541172036469835 + Sys_corr_eff_4: -0.07762132284081279 + Sys_corr_eff_5: -0.005113403117149851 + Sys_corr_eff_6: 0.026273524047473937 + Sys_corr_eff_7: -0.027632285351042025 + Sys_corr_eff_8: -0.008421880374739888 + Sys_corr_eff_9: -0.014334999872472842 + Sys_corr_eff_10: 0.0012322468098282368 + Sys_corr_eff_11: -0.0011664305926004416 + Sys_corr_eff_12: -0.003315967905844102 + Sys_corr_eff_13: 0.0002071809470313218 + Sys_corr_eff_14: 0.0005618852625699393 + Sys_corr_eff_15: 0.0006600489294250309 + Sys_corr_eff_16: 0.00012216646279598296 + Sys_corr_eff_17: 7.137332997556934e-05 + Sys_corr_eff_18: -5.609919437375062e-07 Sys_back_corr: 0.12908941397341614 Sys_back_unc: 0.12908941397341614 Sys_fsr_corr: 0.013831008640008871 @@ -337,42 +337,42 @@ bins: Sys_align_corr: 0.06454470698670807 Sys_align_unc: 0.06454470698670807 Luminosity: 1.3 -- Stat_corr_1: -1.6391617599817593e-08 - Stat_corr_2: -1.7028559242597893e-05 - Stat_corr_3: -0.2820068524420245 - Stat_corr_4: 0.2836054730709751 - Stat_corr_5: -4.054409178607728e-05 - Stat_corr_6: 0.0005537480471341124 - Stat_corr_7: 0.00214726245433373 - Stat_corr_8: -0.003801350636266479 - Stat_corr_9: -4.896614363402683e-05 - Stat_corr_10: -0.0038794734306660376 - Stat_corr_11: 0.002292452953260732 - Stat_corr_12: -0.0006270519911467302 - Stat_corr_13: 7.222819691565353e-13 - Stat_corr_14: 3.94479340473258e-13 - Stat_corr_15: 3.009174086285238e-19 - Stat_corr_16: 2.2453544176251247e-19 - Stat_corr_17: -3.538857405420452e-26 - Stat_corr_18: -3.388826575517962e-26 - Sys_corr_eff_1: -0.37400145403169077 - Sys_corr_eff_2: -0.37886542172983023 - Sys_corr_eff_3: -0.18577343984509237 - Sys_corr_eff_4: 0.004106651788688557 - Sys_corr_eff_5: 0.06701295041408338 - Sys_corr_eff_6: 0.01771604826510075 - Sys_corr_eff_7: 0.015786097454892477 - Sys_corr_eff_8: 0.019595372707455434 - Sys_corr_eff_9: 0.008428596443247442 - Sys_corr_eff_10: -0.0027160344772350757 - Sys_corr_eff_11: 0.0036290906372763434 - Sys_corr_eff_12: 0.001273006332190199 - Sys_corr_eff_13: 0.0006860811630227711 - Sys_corr_eff_14: -0.0002744005887712512 - Sys_corr_eff_15: 0.0004968759951458026 - Sys_corr_eff_16: -0.00023426482509162144 - Sys_corr_eff_17: -3.786000553985585e-05 - Sys_corr_eff_18: -6.139029007968454e-06 +- Stat_corr_1: -1.6391617599556978e-08 + Stat_corr_2: -1.7028559242612858e-05 + Stat_corr_3: -0.282006852442081 + Stat_corr_4: 0.2836054730709123 + Stat_corr_5: -4.0544091786800996e-05 + Stat_corr_6: 0.0005537480471352746 + Stat_corr_7: 0.002147262454334175 + Stat_corr_8: -0.0038013506362665557 + Stat_corr_9: -4.896614363380362e-05 + Stat_corr_10: -0.0038794734306653394 + Stat_corr_11: 0.0022924529532614654 + Stat_corr_12: -0.0006270519911477152 + Stat_corr_13: 7.222819691545724e-13 + Stat_corr_14: 3.9447934047295157e-13 + Stat_corr_15: 3.0091740862852054e-19 + Stat_corr_16: 2.2453544176251242e-19 + Stat_corr_17: -3.538857405420494e-26 + Stat_corr_18: -3.388826575517908e-26 + Sys_corr_eff_1: -0.3740014540316908 + Sys_corr_eff_2: -0.3788654217298305 + Sys_corr_eff_3: -0.18577343984509193 + Sys_corr_eff_4: 0.0041066517886888376 + Sys_corr_eff_5: 0.06701295041408306 + Sys_corr_eff_6: 0.017716048265099194 + Sys_corr_eff_7: 0.01578609745489282 + Sys_corr_eff_8: 0.019595372707456548 + Sys_corr_eff_9: 0.008428596443246962 + Sys_corr_eff_10: -0.0027160344772351385 + Sys_corr_eff_11: 0.003629090637279404 + Sys_corr_eff_12: 0.0012730063321609246 + Sys_corr_eff_13: 0.0006860811630233643 + Sys_corr_eff_14: -0.000274400588770175 + Sys_corr_eff_15: 0.0004968759951501105 + Sys_corr_eff_16: -0.0002342648250938475 + Sys_corr_eff_17: -3.7860005540243814e-05 + Sys_corr_eff_18: -6.139029007834397e-06 Sys_back_corr: 0.16705397705532185 Sys_back_unc: 0.16705397705532185 Sys_fsr_corr: 0.04949747468305833 @@ -382,42 +382,42 @@ bins: Sys_align_corr: 0.04331029034767604 Sys_align_unc: 0.04331029034767604 Luminosity: 1.7 -- Stat_corr_1: 8.89132204018698e-11 - Stat_corr_2: 1.2123998591000417e-07 - Stat_corr_3: 0.0036013311722204967 - Stat_corr_4: -0.003559873747915726 - Stat_corr_5: -0.003491165118968214 - Stat_corr_6: 0.04627375174796229 - Stat_corr_7: 0.17546807020627123 - Stat_corr_8: -0.30371941122954693 - Stat_corr_9: -0.0035236881672463046 - Stat_corr_10: -0.30325732508699543 - Stat_corr_11: 0.17500482261033473 - Stat_corr_12: -0.046714830881902654 - Stat_corr_13: 1.9400232893032375e-12 - Stat_corr_14: -1.1017806912265833e-12 - Stat_corr_15: -1.8079207600218994e-17 - Stat_corr_16: -1.4119544184323972e-17 - Stat_corr_17: 4.661072470269238e-24 - Stat_corr_18: 4.462006785571161e-24 - Sys_corr_eff_1: -0.5363109220497041 - Sys_corr_eff_2: -0.4141084508480419 - Sys_corr_eff_3: -0.07727633754155865 - Sys_corr_eff_4: 0.09741574961680254 - Sys_corr_eff_5: 0.03865899010226147 - Sys_corr_eff_6: -0.028070201058779852 - Sys_corr_eff_7: 0.01368008705974288 - Sys_corr_eff_8: -0.01728770573024729 - Sys_corr_eff_9: -0.003916402920352081 - Sys_corr_eff_10: 0.006236999917092202 - Sys_corr_eff_11: -0.003184097018072232 - Sys_corr_eff_12: 0.00014574414680697384 - Sys_corr_eff_13: 0.001145411363362215 - Sys_corr_eff_14: -0.000945364262204032 - Sys_corr_eff_15: -0.0002928344454969907 - Sys_corr_eff_16: 0.00026694453394226765 - Sys_corr_eff_17: -4.021266441770476e-05 - Sys_corr_eff_18: 4.5281275321985055e-05 +- Stat_corr_1: 8.891322051221159e-11 + Stat_corr_2: 1.2123998591500397e-07 + Stat_corr_3: 0.0036013311722216143 + Stat_corr_4: -0.003559873747915276 + Stat_corr_5: -0.0034911651189673356 + Stat_corr_6: 0.046273751747969945 + Stat_corr_7: 0.1754680702062751 + Stat_corr_8: -0.3037194112294961 + Stat_corr_9: -0.00352368816724527 + Stat_corr_10: -0.3032573250870082 + Stat_corr_11: 0.1750048226103612 + Stat_corr_12: -0.04671483088190543 + Stat_corr_13: 1.9400232893033025e-12 + Stat_corr_14: -1.1017806912265502e-12 + Stat_corr_15: -1.8079207600218908e-17 + Stat_corr_16: -1.411954418432405e-17 + Stat_corr_17: 4.66107247026928e-24 + Stat_corr_18: 4.462006785571077e-24 + Sys_corr_eff_1: -0.5363109220497043 + Sys_corr_eff_2: -0.414108450848042 + Sys_corr_eff_3: -0.07727633754155766 + Sys_corr_eff_4: 0.09741574961680317 + Sys_corr_eff_5: 0.03865899010226215 + Sys_corr_eff_6: -0.028070201058778842 + Sys_corr_eff_7: 0.01368008705974208 + Sys_corr_eff_8: -0.01728770573024727 + Sys_corr_eff_9: -0.003916402920353671 + Sys_corr_eff_10: 0.0062369999170919736 + Sys_corr_eff_11: -0.003184097018072542 + Sys_corr_eff_12: 0.00014574414683200156 + Sys_corr_eff_13: 0.0011454113633640184 + Sys_corr_eff_14: -0.0009453642622049191 + Sys_corr_eff_15: -0.00029283444548695934 + Sys_corr_eff_16: 0.0002669445339456612 + Sys_corr_eff_17: -4.021266441783986e-05 + Sys_corr_eff_18: 4.5281275321759114e-05 Sys_back_corr: 0.165363991848286 Sys_back_unc: 0.165363991848286 Sys_fsr_corr: 0.07516545084013002 @@ -427,42 +427,42 @@ bins: Sys_align_corr: 0.045099270504078 Sys_align_unc: 0.045099270504078 Luminosity: 2.1 -- Stat_corr_1: -7.90626813830974e-13 - Stat_corr_2: -1.415130312251977e-09 - Stat_corr_3: -7.54162143164949e-05 - Stat_corr_4: 7.327353780614218e-05 - Stat_corr_5: -0.015092504990450699 - Stat_corr_6: 0.1282443565300169 - Stat_corr_7: 0.2885123290384681 - Stat_corr_8: -0.1622629095169176 - Stat_corr_9: 0.015178730415911168 - Stat_corr_10: 0.1577073910807855 - Stat_corr_11: -0.2864213179565882 - Stat_corr_12: 0.12890999962790808 - Stat_corr_13: -9.058575475826639e-11 - Stat_corr_14: 5.4851981483401736e-11 - Stat_corr_15: 1.5340318974679914e-15 - Stat_corr_16: 1.2222004113875069e-15 - Stat_corr_17: -5.991923068982787e-22 - Stat_corr_18: -5.73484787871383e-22 - Sys_corr_eff_1: -0.6836619249712566 - Sys_corr_eff_2: -0.39223350122721384 - Sys_corr_eff_3: 0.03296237857495701 - Sys_corr_eff_4: 0.1017810876231135 - Sys_corr_eff_5: -0.05138924357372193 - Sys_corr_eff_6: -0.012277765277438252 - Sys_corr_eff_7: -0.020358525812507768 - Sys_corr_eff_8: 0.006298797086813181 - Sys_corr_eff_9: -0.0010784302774155899 - Sys_corr_eff_10: -0.011828962478375985 - Sys_corr_eff_11: 0.002028423429688808 - Sys_corr_eff_12: -0.0020809382193099344 - Sys_corr_eff_13: -0.001972594764716398 - Sys_corr_eff_14: 0.00029370498383775984 - Sys_corr_eff_15: -0.00027179395996645224 - Sys_corr_eff_16: 0.00013270513909346743 - Sys_corr_eff_17: 3.675001193373581e-06 - Sys_corr_eff_18: 6.170727240082805e-05 +- Stat_corr_1: -7.906267975832574e-13 + Stat_corr_2: -1.4151301444502673e-09 + Stat_corr_3: -7.541621431679993e-05 + Stat_corr_4: 7.32735378060987e-05 + Stat_corr_5: -0.015092504990458023 + Stat_corr_6: 0.12824435653001934 + Stat_corr_7: 0.2885123290384547 + Stat_corr_8: -0.16226290951693081 + Stat_corr_9: 0.015178730415907175 + Stat_corr_10: 0.15770739108074142 + Stat_corr_11: -0.2864213179566168 + Stat_corr_12: 0.12890999962790922 + Stat_corr_13: -9.058575475826847e-11 + Stat_corr_14: 5.485198148340034e-11 + Stat_corr_15: 1.5340318974679847e-15 + Stat_corr_16: 1.2222004113875144e-15 + Stat_corr_17: -5.991923068982838e-22 + Stat_corr_18: -5.734847878713722e-22 + Sys_corr_eff_1: -0.6836619249712568 + Sys_corr_eff_2: -0.392233501227214 + Sys_corr_eff_3: 0.03296237857495699 + Sys_corr_eff_4: 0.10178108762311289 + Sys_corr_eff_5: -0.05138924357372295 + Sys_corr_eff_6: -0.012277765277439392 + Sys_corr_eff_7: -0.020358525812506963 + Sys_corr_eff_8: 0.00629879708681207 + Sys_corr_eff_9: -0.0010784302774110243 + Sys_corr_eff_10: -0.011828962478375915 + Sys_corr_eff_11: 0.002028423429685749 + Sys_corr_eff_12: -0.002080938219324983 + Sys_corr_eff_13: -0.0019725947647171783 + Sys_corr_eff_14: 0.00029370498383602566 + Sys_corr_eff_15: -0.0002717939599717559 + Sys_corr_eff_16: 0.00013270513909386416 + Sys_corr_eff_17: 3.6750011923893616e-06 + Sys_corr_eff_18: 6.170727240084905e-05 Sys_back_corr: 0.16484780389801987 Sys_back_unc: 0.16484780389801987 Sys_fsr_corr: 0.00867620020515894 @@ -472,42 +472,42 @@ bins: Sys_align_corr: 0.06940960164127152 Sys_align_unc: 0.06940960164127152 Luminosity: 2.5 -- Stat_corr_1: 9.642692557027145e-15 - Stat_corr_2: 2.2655738696189675e-11 - Stat_corr_3: 2.166644766308759e-06 - Stat_corr_4: -2.0690776108590804e-06 - Stat_corr_5: -0.04496358259425511 - Stat_corr_6: 0.22572035942135427 - Stat_corr_7: 0.21954077048827675 - Stat_corr_8: 0.15708710988313032 - Stat_corr_9: -0.04514989344459069 - Stat_corr_10: 0.16245007360340505 - Stat_corr_11: 0.21248161441670446 - Stat_corr_12: -0.224893552195375 - Stat_corr_13: 3.1901706706653512e-09 - Stat_corr_14: -2.085429712640746e-09 - Stat_corr_15: -1.0222932328043933e-13 - Stat_corr_16: -8.322557857422486e-14 - Stat_corr_17: 6.318439218977008e-20 - Stat_corr_18: 6.045955145065694e-20 - Sys_corr_eff_1: -0.8105627536286744 - Sys_corr_eff_2: -0.3012012059601721 - Sys_corr_eff_3: 0.09984497290974234 - Sys_corr_eff_4: 0.013964842422409474 - Sys_corr_eff_5: -0.06858045306704208 - Sys_corr_eff_6: 0.038466514569741525 - Sys_corr_eff_7: 0.0035576846012132833 - Sys_corr_eff_8: 0.003523585656847662 - Sys_corr_eff_9: 0.00673115504460186 - Sys_corr_eff_10: 0.012604894842800658 - Sys_corr_eff_11: -0.0011049394599316094 - Sys_corr_eff_12: -0.0006153457323951321 - Sys_corr_eff_13: 0.0007996812669985368 - Sys_corr_eff_14: 0.0002946538169747114 - Sys_corr_eff_15: -0.00027827122446408677 - Sys_corr_eff_16: -0.0005080493782531647 - Sys_corr_eff_17: -6.921056037294788e-05 - Sys_corr_eff_18: -3.071187975287345e-05 +- Stat_corr_1: 9.642694375638249e-15 + Stat_corr_2: 2.2656067627495426e-11 + Stat_corr_3: 2.1666447669931026e-06 + Stat_corr_4: -2.0690776111672352e-06 + Stat_corr_5: -0.04496358259426575 + Stat_corr_6: 0.22572035942135704 + Stat_corr_7: 0.21954077048825424 + Stat_corr_8: 0.1570871098830905 + Stat_corr_9: -0.0451498934445848 + Stat_corr_10: 0.16245007360346717 + Stat_corr_11: 0.2124816144167037 + Stat_corr_12: -0.22489355219536425 + Stat_corr_13: 3.1901706706654253e-09 + Stat_corr_14: -2.085429712640692e-09 + Stat_corr_15: -1.0222932328043865e-13 + Stat_corr_16: -8.32255785742252e-14 + Stat_corr_17: 6.318439218977049e-20 + Stat_corr_18: 6.045955145065565e-20 + Sys_corr_eff_1: -0.8105627536286749 + Sys_corr_eff_2: -0.30120120596017197 + Sys_corr_eff_3: 0.09984497290974238 + Sys_corr_eff_4: 0.013964842422409435 + Sys_corr_eff_5: -0.06858045306704184 + Sys_corr_eff_6: 0.03846651456974278 + Sys_corr_eff_7: 0.0035576846012133376 + Sys_corr_eff_8: 0.0035235856568501017 + Sys_corr_eff_9: 0.006731155044596309 + Sys_corr_eff_10: 0.012604894842799785 + Sys_corr_eff_11: -0.0011049394599350788 + Sys_corr_eff_12: -0.0006153457323867975 + Sys_corr_eff_13: 0.000799681266998574 + Sys_corr_eff_14: 0.0002946538169780549 + Sys_corr_eff_15: -0.00027827122446817296 + Sys_corr_eff_16: -0.0005080493782541128 + Sys_corr_eff_17: -6.921056037265543e-05 + Sys_corr_eff_18: -3.07118797526547e-05 Sys_back_corr: 0.17119055172526318 Sys_back_unc: 0.17119055172526318 Sys_fsr_corr: 0.14265879310438598 @@ -517,42 +517,42 @@ bins: Sys_align_corr: 0.12363762069046785 Sys_align_unc: 0.12363762069046785 Luminosity: 2.7 -- Stat_corr_1: -1.2540955522465002e-16 - Stat_corr_2: -3.959851271494951e-13 - Stat_corr_3: -7.023226965367306e-08 - Stat_corr_4: 6.587489326526816e-08 - Stat_corr_5: -0.10796348196620979 - Stat_corr_6: 0.2803478794082685 - Stat_corr_7: -0.02037124039854507 - Stat_corr_8: 0.19133445176914124 - Stat_corr_9: 0.10791960532039907 - Stat_corr_10: -0.18610365879550986 - Stat_corr_11: 0.0292742916330603 - Stat_corr_12: 0.27493071131399593 - Stat_corr_13: -9.428465484115234e-08 - Stat_corr_14: 6.64560008923626e-08 - Stat_corr_15: 5.633355855138555e-12 - Stat_corr_16: 4.682838849105586e-12 - Stat_corr_17: -5.400155768844546e-18 - Stat_corr_18: -5.166144105511949e-18 - Sys_corr_eff_1: -0.8835275841915563 - Sys_corr_eff_2: -0.14765782779869038 - Sys_corr_eff_3: 0.11097921641661905 - Sys_corr_eff_4: -0.07800150401540124 - Sys_corr_eff_5: -0.007238527155876915 - Sys_corr_eff_6: 0.02279905417772945 - Sys_corr_eff_7: 0.026727496653902987 - Sys_corr_eff_8: -0.012773170634548922 - Sys_corr_eff_9: -0.0072158481618930966 - Sys_corr_eff_10: -0.008948624504016766 - Sys_corr_eff_11: 0.0022091021418200996 - Sys_corr_eff_12: 0.004460676238374605 - Sys_corr_eff_13: -0.00032340902630458355 - Sys_corr_eff_14: -0.00020305627717669781 - Sys_corr_eff_15: 6.845467075183357e-05 - Sys_corr_eff_16: 0.0003244053828860683 - Sys_corr_eff_17: -2.4402957110478903e-05 - Sys_corr_eff_18: -2.4278153280412672e-05 +- Stat_corr_1: -1.2540950465459448e-16 + Stat_corr_2: -3.961486760939902e-13 + Stat_corr_3: -7.02322695606985e-08 + Stat_corr_4: 6.58748932109689e-08 + Stat_corr_5: -0.10796348196622813 + Stat_corr_6: 0.28034787940827705 + Stat_corr_7: -0.02037124039856631 + Stat_corr_8: 0.19133445176916936 + Stat_corr_9: 0.10791960532039237 + Stat_corr_10: -0.18610365879549381 + Stat_corr_11: 0.029274291633067415 + Stat_corr_12: 0.2749307113139788 + Stat_corr_13: -9.428465484115461e-08 + Stat_corr_14: 6.645600089236095e-08 + Stat_corr_15: 5.6333558551385245e-12 + Stat_corr_16: 4.6828388491056085e-12 + Stat_corr_17: -5.4001557688445924e-18 + Stat_corr_18: -5.166144105511849e-18 + Sys_corr_eff_1: -0.8835275841915565 + Sys_corr_eff_2: -0.14765782779869052 + Sys_corr_eff_3: 0.1109792164166185 + Sys_corr_eff_4: -0.07800150401540201 + Sys_corr_eff_5: -0.0072385271558775485 + Sys_corr_eff_6: 0.022799054177728484 + Sys_corr_eff_7: 0.026727496653901995 + Sys_corr_eff_8: -0.012773170634551008 + Sys_corr_eff_9: -0.007215848161888245 + Sys_corr_eff_10: -0.008948624504015385 + Sys_corr_eff_11: 0.002209102141831233 + Sys_corr_eff_12: 0.004460676238357655 + Sys_corr_eff_13: -0.00032340902630405445 + Sys_corr_eff_14: -0.0002030562771783426 + Sys_corr_eff_15: 6.84546707548104e-05 + Sys_corr_eff_16: 0.00032440538288633244 + Sys_corr_eff_17: -2.440295710987376e-05 + Sys_corr_eff_18: -2.4278153280834863e-05 Sys_back_corr: 0.1402758432517873 Sys_back_unc: 0.1402758432517873 Sys_fsr_corr: 0.030059109268240132 @@ -562,42 +562,42 @@ bins: Sys_align_corr: 0.10019703089413379 Sys_align_unc: 0.10019703089413379 Luminosity: 2.8 -- Stat_corr_1: 2.0802058108818297e-18 - Stat_corr_2: 8.862096626563914e-15 - Stat_corr_3: 2.8561793987442643e-09 - Stat_corr_4: -2.6318119263505932e-09 - Stat_corr_5: -0.19865469386592335 - Stat_corr_6: 0.2089782108594446 - Stat_corr_7: -0.19472873307895125 - Stat_corr_8: -0.07477316753991664 - Stat_corr_9: -0.1967540750350952 - Stat_corr_10: -0.0835963976417209 - Stat_corr_11: -0.19555772763646476 - Stat_corr_12: -0.1985214480427322 - Stat_corr_13: 2.199968139127493e-06 - Stat_corr_14: -1.66894892162854e-06 - Stat_corr_15: -2.4025577115593484e-10 - Stat_corr_16: -2.0374421404232647e-10 - Stat_corr_17: 3.4896977844082694e-16 - Stat_corr_18: 3.337792471254158e-16 - Sys_corr_eff_1: -0.935128111202657 - Sys_corr_eff_2: 0.012544207251757842 - Sys_corr_eff_3: 0.08453633681068624 - Sys_corr_eff_4: -0.0848321093664684 - Sys_corr_eff_5: 0.03628698462464959 - Sys_corr_eff_6: -0.02646081420647019 - Sys_corr_eff_7: 0.0027319878037049615 - Sys_corr_eff_8: 0.004802838905869583 - Sys_corr_eff_9: 0.006149478877561655 - Sys_corr_eff_10: -0.003793642107831563 - Sys_corr_eff_11: -0.00524758128028945 - Sys_corr_eff_12: -0.006619309987478672 - Sys_corr_eff_13: -3.954556397842944e-05 - Sys_corr_eff_14: -0.00031734477443148476 - Sys_corr_eff_15: -1.2713146355234748e-05 - Sys_corr_eff_16: -0.0001913633453607442 - Sys_corr_eff_17: -3.376050939428431e-06 - Sys_corr_eff_18: -0.00017109086934329474 +- Stat_corr_1: 2.0802072592773145e-18 + Stat_corr_2: 8.765054404939595e-15 + Stat_corr_3: 2.8561798663857088e-09 + Stat_corr_4: -2.631811916462984e-09 + Stat_corr_5: -0.19865469386591697 + Stat_corr_6: 0.2089782108594244 + Stat_corr_7: -0.19472873307896107 + Stat_corr_8: -0.07477316753991087 + Stat_corr_9: -0.1967540750351015 + Stat_corr_10: -0.08359639764174102 + Stat_corr_11: -0.19555772763644916 + Stat_corr_12: -0.198521448042755 + Stat_corr_13: 2.199968139127548e-06 + Stat_corr_14: -1.6689489216285003e-06 + Stat_corr_15: -2.4025577115593355e-10 + Stat_corr_16: -2.0374421404232745e-10 + Stat_corr_17: 3.4896977844083e-16 + Stat_corr_18: 3.337792471254096e-16 + Sys_corr_eff_1: -0.9351281112026583 + Sys_corr_eff_2: 0.012544207251757988 + Sys_corr_eff_3: 0.08453633681068617 + Sys_corr_eff_4: -0.08483210936646808 + Sys_corr_eff_5: 0.03628698462465042 + Sys_corr_eff_6: -0.026460814206469837 + Sys_corr_eff_7: 0.0027319878037050066 + Sys_corr_eff_8: 0.004802838905870498 + Sys_corr_eff_9: 0.006149478877560107 + Sys_corr_eff_10: -0.0037936421078335948 + Sys_corr_eff_11: -0.0052475812803048595 + Sys_corr_eff_12: -0.006619309987439169 + Sys_corr_eff_13: -3.954556397768321e-05 + Sys_corr_eff_14: -0.00031734477442854424 + Sys_corr_eff_15: -1.2713146349907807e-05 + Sys_corr_eff_16: -0.00019136334536043814 + Sys_corr_eff_17: -3.376050936401268e-06 + Sys_corr_eff_18: -0.00017109086934355853 Sys_back_corr: 0.15644737533752365 Sys_back_unc: 0.15644737533752365 Sys_fsr_corr: 0.03128947506750473 @@ -607,42 +607,42 @@ bins: Sys_align_corr: 0.06257895013500946 Sys_align_unc: 0.06257895013500946 Luminosity: 2.9 -- Stat_corr_1: -4.196200797045483e-20 - Stat_corr_2: -2.453344461451626e-16 - Stat_corr_3: -1.372133836490318e-10 - Stat_corr_4: 1.2426401040952603e-10 - Stat_corr_5: -0.28172291589075543 - Stat_corr_6: 0.010027343119969417 - Stat_corr_7: -0.12301304507664894 - Stat_corr_8: -0.18407243150897348 - Stat_corr_9: 0.27594420546525067 - Stat_corr_10: 0.18026450794272528 - Stat_corr_11: 0.11347343840272332 - Stat_corr_12: -0.0002445040562699809 - Stat_corr_13: -4.509805218548944e-05 - Stat_corr_14: 3.685948361687351e-05 - Stat_corr_15: 9.095422989946783e-09 - Stat_corr_16: 7.872243112016655e-09 - Stat_corr_17: -2.024772260693045e-14 - Stat_corr_18: -1.9362257634736644e-14 - Sys_corr_eff_1: -0.9260001746582132 - Sys_corr_eff_2: 0.17262509094290715 - Sys_corr_eff_3: 0.035059324934049 - Sys_corr_eff_4: -0.03889319580079235 - Sys_corr_eff_5: 0.04434794571310464 - Sys_corr_eff_6: -0.021535770489549428 - Sys_corr_eff_7: -0.025029209692993732 - Sys_corr_eff_8: -0.0015030998812099162 - Sys_corr_eff_9: -0.0006860045695698532 - Sys_corr_eff_10: 0.008493600997023572 - Sys_corr_eff_11: 0.007821468277461673 - Sys_corr_eff_12: 0.0014399826775312796 - Sys_corr_eff_13: -0.0007581661192828965 - Sys_corr_eff_14: -0.00014096470048215108 - Sys_corr_eff_15: -0.000846026608360589 - Sys_corr_eff_16: -1.1699050792974038e-05 - Sys_corr_eff_17: 6.488707675307542e-05 - Sys_corr_eff_18: 4.058812253267295e-05 +- Stat_corr_1: -4.1961895380279253e-20 + Stat_corr_2: -1.623067732925441e-16 + Stat_corr_3: -1.372130998941399e-10 + Stat_corr_4: 1.2426332397919318e-10 + Stat_corr_5: -0.2817229158907531 + Stat_corr_6: 0.010027343119953996 + Stat_corr_7: -0.12301304507666243 + Stat_corr_8: -0.18407243150901625 + Stat_corr_9: 0.27594420546525356 + Stat_corr_10: 0.1802645079427044 + Stat_corr_11: 0.11347343840268735 + Stat_corr_12: -0.000244504056260413 + Stat_corr_13: -4.5098052185490576e-05 + Stat_corr_14: 3.685948361687264e-05 + Stat_corr_15: 9.095422989946742e-09 + Stat_corr_16: 7.872243112016702e-09 + Stat_corr_17: -2.0247722606930666e-14 + Stat_corr_18: -1.936225763473631e-14 + Sys_corr_eff_1: -0.926000174658213 + Sys_corr_eff_2: 0.17262509094290743 + Sys_corr_eff_3: 0.03505932493404931 + Sys_corr_eff_4: -0.03889319580079183 + Sys_corr_eff_5: 0.044347945713104804 + Sys_corr_eff_6: -0.021535770489549983 + Sys_corr_eff_7: -0.025029209692992976 + Sys_corr_eff_8: -0.001503099881209495 + Sys_corr_eff_9: -0.0006860045695676303 + Sys_corr_eff_10: 0.008493600997024333 + Sys_corr_eff_11: 0.007821468277464588 + Sys_corr_eff_12: 0.0014399826774738915 + Sys_corr_eff_13: -0.0007581661192825266 + Sys_corr_eff_14: -0.00014096470048326892 + Sys_corr_eff_15: -0.0008460266083619346 + Sys_corr_eff_16: -1.1699050788888892e-05 + Sys_corr_eff_17: 6.488707675290369e-05 + Sys_corr_eff_18: 4.058812253265245e-05 Sys_back_corr: 0.11309465858297643 Sys_back_unc: 0.11309465858297643 Sys_fsr_corr: 0.04112533039380961 @@ -652,42 +652,42 @@ bins: Sys_align_corr: 0.07196932818916682 Sys_align_unc: 0.07196932818916682 Luminosity: 2.9 -- Stat_corr_1: 1.2863665057063279e-21 - Stat_corr_2: -2.3040302495685548e-18 - Stat_corr_3: 7.378785966003638e-12 - Stat_corr_4: -6.56562416590135e-12 - Stat_corr_5: -0.29515395918266263 - Stat_corr_6: -0.17380213256852317 - Stat_corr_7: 0.09358752047630677 - Stat_corr_8: 0.027554690784835925 - Stat_corr_9: -0.2838805391184421 - Stat_corr_10: 0.03820422699797501 - Stat_corr_11: 0.1014069873062834 - Stat_corr_12: 0.17557568128244488 - Stat_corr_13: 0.0008064258631360716 - Stat_corr_14: -0.0007095170374011939 - Stat_corr_15: -2.975340571329816e-07 - Stat_corr_16: -2.627168835745581e-07 - Stat_corr_17: 1.003818729816987e-12 - Stat_corr_18: 9.597240155317734e-13 - Sys_corr_eff_1: -0.8203654348341425 - Sys_corr_eff_2: 0.3039857352787894 - Sys_corr_eff_3: -0.012456654932675 - Sys_corr_eff_4: 0.028182708008579263 - Sys_corr_eff_5: 0.029227370361782547 - Sys_corr_eff_6: 0.005933230770092038 - Sys_corr_eff_7: -0.01723786752996654 - Sys_corr_eff_8: 0.007975511702724728 - Sys_corr_eff_9: -0.003998736607540246 - Sys_corr_eff_10: -0.0025391851149016453 - Sys_corr_eff_11: -0.00722107853138368 - Sys_corr_eff_12: 0.00661414821144358 - Sys_corr_eff_13: 0.0009078912575405331 - Sys_corr_eff_14: 0.0009112782939612366 - Sys_corr_eff_15: -0.00011888867801687092 - Sys_corr_eff_16: -0.0001593671856888379 - Sys_corr_eff_17: 2.3447048286774455e-05 - Sys_corr_eff_18: 0.00012024968824975288 +- Stat_corr_1: 1.2863655482538039e-21 + Stat_corr_2: 1.7565892452605762e-17 + Stat_corr_3: 7.378713134401054e-12 + Stat_corr_4: -6.565423988708316e-12 + Stat_corr_5: -0.29515395918265686 + Stat_corr_6: -0.1738021325685226 + Stat_corr_7: 0.09358752047630631 + Stat_corr_8: 0.02755469078482307 + Stat_corr_9: -0.28388053911844635 + Stat_corr_10: 0.038204226997987714 + Stat_corr_11: 0.1014069873062852 + Stat_corr_12: 0.17557568128245152 + Stat_corr_13: 0.0008064258631360913 + Stat_corr_14: -0.0007095170374011771 + Stat_corr_15: -2.975340571329803e-07 + Stat_corr_16: -2.627168835745595e-07 + Stat_corr_17: 1.0038187298169968e-12 + Stat_corr_18: 9.597240155317563e-13 + Sys_corr_eff_1: -0.820365434834143 + Sys_corr_eff_2: 0.3039857352787898 + Sys_corr_eff_3: -0.012456654932674371 + Sys_corr_eff_4: 0.028182708008579985 + Sys_corr_eff_5: 0.02922737036178337 + Sys_corr_eff_6: 0.005933230770093958 + Sys_corr_eff_7: -0.017237867529966554 + Sys_corr_eff_8: 0.00797551170272473 + Sys_corr_eff_9: -0.003998736607546544 + Sys_corr_eff_10: -0.002539185114900618 + Sys_corr_eff_11: -0.007221078531369528 + Sys_corr_eff_12: 0.0066141482114967995 + Sys_corr_eff_13: 0.0009078912575396411 + Sys_corr_eff_14: 0.0009112782939617954 + Sys_corr_eff_15: -0.00011888867802792844 + Sys_corr_eff_16: -0.00015936718568957062 + Sys_corr_eff_17: 2.3447048284567955e-05 + Sys_corr_eff_18: 0.00012024968825035571 Sys_back_corr: 0.10484979351434129 Sys_back_unc: 0.10484979351434129 Sys_fsr_corr: 0.07625439528315729 @@ -697,42 +697,42 @@ bins: Sys_align_corr: 0.09531799410394663 Sys_align_unc: 0.09531799410394663 Luminosity: 2.7 -- Stat_corr_1: 1.7421092381308336e-22 - Stat_corr_2: -8.709328312811946e-19 - Stat_corr_3: -4.3838566133987604e-13 - Stat_corr_4: 3.725462874526572e-13 - Stat_corr_5: -0.1953214580129385 - Stat_corr_6: -0.1816927237365831 - Stat_corr_7: 0.16902724313164932 - Stat_corr_8: 0.17561207691230046 - Stat_corr_9: 0.1803207421291799 - Stat_corr_10: -0.17366046391204673 - Stat_corr_11: -0.1637697722034385 - Stat_corr_12: -0.17201610407567053 - Stat_corr_13: -0.01345807258952358 - Stat_corr_14: 0.01275722209896549 - Stat_corr_15: 9.162709517072534e-06 - Stat_corr_16: 8.256823324308426e-06 - Stat_corr_17: -4.729621565446645e-11 - Stat_corr_18: -4.520914000382147e-11 - Sys_corr_eff_1: -0.6664136569372203 - Sys_corr_eff_2: 0.3816663143478893 - Sys_corr_eff_3: -0.023046020247098405 - Sys_corr_eff_4: 0.05170916708345155 - Sys_corr_eff_5: -0.001233702859246696 - Sys_corr_eff_6: 0.0037936940839150887 - Sys_corr_eff_7: 0.015322377037974379 - Sys_corr_eff_8: 0.0015017003968972845 - Sys_corr_eff_9: 0.0019931234142538897 - Sys_corr_eff_10: 0.0057674870716995785 - Sys_corr_eff_11: 0.0005036680547019098 - Sys_corr_eff_12: -0.0018775420119121033 - Sys_corr_eff_13: -0.0023026012237213384 - Sys_corr_eff_14: 0.000884587470081863 - Sys_corr_eff_15: 0.0017797865322931902 - Sys_corr_eff_16: 0.0007186868320437107 - Sys_corr_eff_17: 0.00019816222336401494 - Sys_corr_eff_18: -1.304383852810384e-05 +- Stat_corr_1: 1.742107958067651e-22 + Stat_corr_2: 4.851577442331139e-18 + Stat_corr_3: -4.384678771377062e-13 + Stat_corr_4: 3.7282449409790633e-13 + Stat_corr_5: -0.1953214580129439 + Stat_corr_6: -0.18169272373658873 + Stat_corr_7: 0.16902724313167253 + Stat_corr_8: 0.1756120769123402 + Stat_corr_9: 0.18032074212916852 + Stat_corr_10: -0.17366046391203335 + Stat_corr_11: -0.16376977220340205 + Stat_corr_12: -0.17201610407567794 + Stat_corr_13: -0.013458072589523936 + Stat_corr_14: 0.0127572220989652 + Stat_corr_15: 9.162709517072488e-06 + Stat_corr_16: 8.25682332430847e-06 + Stat_corr_17: -4.7296215654466916e-11 + Stat_corr_18: -4.5209140003820656e-11 + Sys_corr_eff_1: -0.6664136569372208 + Sys_corr_eff_2: 0.38166631434788895 + Sys_corr_eff_3: -0.023046020247098835 + Sys_corr_eff_4: 0.05170916708345095 + Sys_corr_eff_5: -0.0012337028592474722 + Sys_corr_eff_6: 0.003793694083914065 + Sys_corr_eff_7: 0.015322377037974198 + Sys_corr_eff_8: 0.0015017003968971255 + Sys_corr_eff_9: 0.0019931234142560035 + Sys_corr_eff_10: 0.005767487071699514 + Sys_corr_eff_11: 0.0005036680546995866 + Sys_corr_eff_12: -0.0018775420119125908 + Sys_corr_eff_13: -0.0023026012237248846 + Sys_corr_eff_14: 0.0008845874700766416 + Sys_corr_eff_15: 0.0017797865322882085 + Sys_corr_eff_16: 0.0007186868320378038 + Sys_corr_eff_17: 0.00019816222336338916 + Sys_corr_eff_18: -1.3043838528065851e-05 Sys_back_corr: 0.05865450749942412 Sys_back_unc: 0.05865450749942412 Sys_fsr_corr: 0.13406744571296944 @@ -742,42 +742,42 @@ bins: Sys_align_corr: 0.07541293821354529 Sys_align_unc: 0.07541293821354529 Luminosity: 2.4 -- Stat_corr_1: 9.128759710420318e-24 - Stat_corr_2: -5.0683332568739983e-20 - Stat_corr_3: 1.20282346727695e-13 - Stat_corr_4: 1.286979184051665e-13 - Stat_corr_5: -0.00830599522465288 - Stat_corr_6: -0.007959526273074937 - Stat_corr_7: 0.0075706991856797886 - Stat_corr_8: 0.008043310171964057 - Stat_corr_9: 0.009163135830581162 - Stat_corr_10: -0.008128411938796648 - Stat_corr_11: -0.007847894916884134 - Stat_corr_12: -0.008445284218161512 - Stat_corr_13: 0.2794748203022542 - Stat_corr_14: -0.28523025874528074 - Stat_corr_15: -0.0003483870002050464 - Stat_corr_16: -0.000320282259632498 - Stat_corr_17: 2.725953808707951e-09 - Stat_corr_18: 2.6051310377486135e-09 - Sys_corr_eff_1: -0.5065437925488023 - Sys_corr_eff_2: 0.390068534111326 - Sys_corr_eff_3: -0.05109729970014289 - Sys_corr_eff_4: 0.03333212967618764 - Sys_corr_eff_5: -0.03643494498425634 - Sys_corr_eff_6: -0.01338936481370616 - Sys_corr_eff_7: 0.004325061734697988 - Sys_corr_eff_8: -0.005726375341639083 - Sys_corr_eff_9: -0.0021505466316626806 - Sys_corr_eff_10: -0.004839955983489253 - Sys_corr_eff_11: 0.003997001040949778 - Sys_corr_eff_12: -0.0022261400083364116 - Sys_corr_eff_13: 0.004701658123975716 - Sys_corr_eff_14: 0.000292324699322794 - Sys_corr_eff_15: 0.0007169076386029687 - Sys_corr_eff_16: -0.0004872161401940302 - Sys_corr_eff_17: -8.880271335718223e-05 - Sys_corr_eff_18: 1.3234307480492342e-05 +- Stat_corr_1: 9.128755327404784e-24 + Stat_corr_2: 1.7874039849354458e-19 + Stat_corr_3: 1.2027939401149128e-13 + Stat_corr_4: 1.2870738413582852e-13 + Stat_corr_5: -0.00830599522465316 + Stat_corr_6: -0.007959526273075206 + Stat_corr_7: 0.007570699185680874 + Stat_corr_8: 0.00804331017196593 + Stat_corr_9: 0.009163135830580656 + Stat_corr_10: -0.008128411938796072 + Stat_corr_11: -0.007847894916882465 + Stat_corr_12: -0.008445284218161878 + Stat_corr_13: 0.2794748203022618 + Stat_corr_14: -0.28523025874527447 + Stat_corr_15: -0.0003483870002050452 + Stat_corr_16: -0.0003202822596324999 + Stat_corr_17: 2.725953808707979e-09 + Stat_corr_18: 2.605131037748569e-09 + Sys_corr_eff_1: -0.5065437925488029 + Sys_corr_eff_2: 0.3900685341113259 + Sys_corr_eff_3: -0.05109729970014348 + Sys_corr_eff_4: 0.033332129676187185 + Sys_corr_eff_5: -0.03643494498425705 + Sys_corr_eff_6: -0.01338936481370671 + Sys_corr_eff_7: 0.004325061734697713 + Sys_corr_eff_8: -0.005726375341641193 + Sys_corr_eff_9: -0.002150546631660021 + Sys_corr_eff_10: -0.00483995598348906 + Sys_corr_eff_11: 0.003997001040944814 + Sys_corr_eff_12: -0.0022261400083735633 + Sys_corr_eff_13: 0.004701658123974357 + Sys_corr_eff_14: 0.00029232469932541334 + Sys_corr_eff_15: 0.0007169076386007492 + Sys_corr_eff_16: -0.00048721614019907024 + Sys_corr_eff_17: -8.880271335833906e-05 + Sys_corr_eff_18: 1.3234307480893514e-05 Sys_back_corr: 0.049002499936227746 Sys_back_unc: 0.049002499936227746 Sys_fsr_corr: 0.0350017856687341 @@ -787,42 +787,42 @@ bins: Sys_align_corr: 0.0700035713374682 Sys_align_unc: 0.0700035713374682 Luminosity: 2.0 -- Stat_corr_1: 2.553481142583765e-25 - Stat_corr_2: 2.7781095686610386e-21 - Stat_corr_3: 5.746459331425827e-13 - Stat_corr_4: -4.948429748817661e-13 - Stat_corr_5: -0.0002799487855000867 - Stat_corr_6: -0.000276439247533503 - Stat_corr_7: 0.00026888220453708125 - Stat_corr_8: 0.0002921752557062247 - Stat_corr_9: 0.00036957862006539315 - Stat_corr_10: -0.0003017967837152693 - Stat_corr_11: -0.00029837035752764476 - Stat_corr_12: -0.00032901830467328843 - Stat_corr_13: 0.2913255398151566 - Stat_corr_14: 0.27391376563384917 - Stat_corr_15: 0.007203450023561356 - Stat_corr_16: 0.0069319372365690005 - Stat_corr_17: -1.2368866961791605e-07 - Stat_corr_18: -1.1816775529940136e-07 - Sys_corr_eff_1: -0.35786979024082094 - Sys_corr_eff_2: 0.3504422946140813 - Sys_corr_eff_3: -0.09670812885188379 - Sys_corr_eff_4: 0.0014319670810077768 - Sys_corr_eff_5: -0.043183485688903046 - Sys_corr_eff_6: 0.011228285091139645 - Sys_corr_eff_7: -0.005926406051875493 - Sys_corr_eff_8: 0.0050213933438465015 - Sys_corr_eff_9: -0.0029176381282594137 - Sys_corr_eff_10: 2.5370248912670633e-05 - Sys_corr_eff_11: -0.0011147672937460332 - Sys_corr_eff_12: 0.0006320317622020349 - Sys_corr_eff_13: -0.0012443980648972983 - Sys_corr_eff_14: -0.0031253464843944974 - Sys_corr_eff_15: 0.00019137290083237748 - Sys_corr_eff_16: -7.958871527613455e-06 - Sys_corr_eff_17: -0.00017682085765375471 - Sys_corr_eff_18: -8.050781231331173e-06 +- Stat_corr_1: 2.553480633307866e-25 + Stat_corr_2: 3.156730172720299e-21 + Stat_corr_3: 5.746458019397644e-13 + Stat_corr_4: -4.948425732501273e-13 + Stat_corr_5: -0.0002799487855000972 + Stat_corr_6: -0.0002764392475335128 + Stat_corr_7: 0.0002688822045371208 + Stat_corr_8: 0.0002921752557062947 + Stat_corr_9: 0.0003695786200653746 + Stat_corr_10: -0.00030179678371524966 + Stat_corr_11: -0.0002983703575275834 + Stat_corr_12: -0.0003290183046733025 + Stat_corr_13: 0.29132553981514936 + Stat_corr_14: 0.2739137656338557 + Stat_corr_15: 0.007203450023561326 + Stat_corr_16: 0.006931937236569042 + Stat_corr_17: -1.2368866961791724e-07 + Stat_corr_18: -1.1816775529939928e-07 + Sys_corr_eff_1: -0.3578697902408213 + Sys_corr_eff_2: 0.35044229461408133 + Sys_corr_eff_3: -0.09670812885188398 + Sys_corr_eff_4: 0.001431967081007703 + Sys_corr_eff_5: -0.04318348568890288 + Sys_corr_eff_6: 0.011228285091139812 + Sys_corr_eff_7: -0.005926406051874989 + Sys_corr_eff_8: 0.005021393343846836 + Sys_corr_eff_9: -0.0029176381282607286 + Sys_corr_eff_10: 2.5370248912964434e-05 + Sys_corr_eff_11: -0.0011147672937447323 + Sys_corr_eff_12: 0.0006320317622124949 + Sys_corr_eff_13: -0.0012443980648907224 + Sys_corr_eff_14: -0.0031253464843930506 + Sys_corr_eff_15: 0.00019137290086906967 + Sys_corr_eff_16: -7.958871523727583e-06 + Sys_corr_eff_17: -0.00017682085765310945 + Sys_corr_eff_18: -8.050781231791048e-06 Sys_back_corr: 0.05487148622007609 Sys_back_unc: 0.05487148622007609 Sys_fsr_corr: 0.09876867519613694 @@ -832,42 +832,42 @@ bins: Sys_align_corr: 0.09328152657412936 Sys_align_unc: 0.09328152657412936 Luminosity: 1.6 -- Stat_corr_1: 4.849912292981685e-27 - Stat_corr_2: 1.8699032784186476e-23 - Stat_corr_3: 1.8925855201333446e-14 - Stat_corr_4: -1.666278197614619e-14 - Stat_corr_5: -3.880283834203188e-06 - Stat_corr_6: -3.898840193999211e-06 - Stat_corr_7: 3.841197090143899e-06 - Stat_corr_8: 4.227683627615631e-06 - Stat_corr_9: 5.665806803764561e-06 - Stat_corr_10: -4.420954611170439e-06 - Stat_corr_11: -4.428817716300194e-06 - Stat_corr_12: -4.949852258644558e-06 - Stat_corr_13: 0.009270088870492582 - Stat_corr_14: 0.00958078684364667 - Stat_corr_15: -0.211139876889979 - Stat_corr_16: -0.2127022004653859 - Stat_corr_17: 7.961792451451544e-06 - Stat_corr_18: 7.603925962849375e-06 - Sys_corr_eff_1: -0.22983922812961582 - Sys_corr_eff_2: 0.2817303339404753 +- Stat_corr_1: 4.849911686302307e-27 + Stat_corr_2: 3.4764689635858045e-23 + Stat_corr_3: 1.8925854289926252e-14 + Stat_corr_4: -1.666277882556152e-14 + Stat_corr_5: -3.880283834203343e-06 + Stat_corr_6: -3.898840193999351e-06 + Stat_corr_7: 3.841197090144474e-06 + Stat_corr_8: 4.22768362761665e-06 + Stat_corr_9: 5.665806803764298e-06 + Stat_corr_10: -4.420954611170157e-06 + Stat_corr_11: -4.428817716299303e-06 + Stat_corr_12: -4.949852258644762e-06 + Stat_corr_13: 0.00927008887049233 + Stat_corr_14: 0.009580786843646886 + Stat_corr_15: -0.2111398768899782 + Stat_corr_16: -0.2127022004653871 + Stat_corr_17: 7.96179245145162e-06 + Stat_corr_18: 7.603925962849241e-06 + Sys_corr_eff_1: -0.2298392281296158 + Sys_corr_eff_2: 0.2817303339404751 Sys_corr_eff_3: -0.13199714626734094 - Sys_corr_eff_4: -0.006398224468824056 - Sys_corr_eff_5: -0.013344765329849137 - Sys_corr_eff_6: 0.020611496526354713 - Sys_corr_eff_7: 0.013050089088444664 - Sys_corr_eff_8: 0.0012651159585633288 - Sys_corr_eff_9: 0.005698779412560651 - Sys_corr_eff_10: -0.001706606575618153 - Sys_corr_eff_11: -0.00036446964090997247 - Sys_corr_eff_12: -0.003327721793886299 - Sys_corr_eff_13: 0.0007275461949024436 - Sys_corr_eff_14: 0.00048780524205863524 - Sys_corr_eff_15: -0.002166872622667174 - Sys_corr_eff_16: 0.0007427991119064161 - Sys_corr_eff_17: 2.2922955990605138e-05 - Sys_corr_eff_18: 0.00013116214004054135 + Sys_corr_eff_4: -0.006398224468823808 + Sys_corr_eff_5: -0.013344765329848985 + Sys_corr_eff_6: 0.0206114965263546 + Sys_corr_eff_7: 0.013050089088445037 + Sys_corr_eff_8: 0.0012651159585653203 + Sys_corr_eff_9: 0.005698779412560327 + Sys_corr_eff_10: -0.0017066065756194296 + Sys_corr_eff_11: -0.00036446964091697696 + Sys_corr_eff_12: -0.0033277217938821853 + Sys_corr_eff_13: 0.0007275461949015636 + Sys_corr_eff_14: 0.00048780524205380534 + Sys_corr_eff_15: -0.002166872622680249 + Sys_corr_eff_16: 0.0007427991119152884 + Sys_corr_eff_17: 2.2922955990151e-05 + Sys_corr_eff_18: 0.00013116214004003172 Sys_back_corr: 0.03684733436763099 Sys_back_unc: 0.03684733436763099 Sys_fsr_corr: 0.13510689268131365 @@ -877,42 +877,42 @@ bins: Sys_align_corr: 0.053223927419911436 Sys_align_unc: 0.053223927419911436 Luminosity: 1.2 -- Stat_corr_1: 3.057082410827335e-30 - Stat_corr_2: 9.178058960657213e-22 - Stat_corr_3: 4.269919670795368e-16 - Stat_corr_4: -3.843500162268118e-16 - Stat_corr_5: -3.685814415706281e-08 - Stat_corr_6: -3.768381853130384e-08 - Stat_corr_7: 3.76057149821376e-08 - Stat_corr_8: 4.192211866108945e-08 - Stat_corr_9: 5.9524172600674976e-08 - Stat_corr_10: -4.438111227130656e-08 - Stat_corr_11: -4.505048728650137e-08 - Stat_corr_12: -5.103202421890207e-08 - Stat_corr_13: 0.00020207499311419822 - Stat_corr_14: 0.0002295461429928117 - Stat_corr_15: -0.21662213034340685 - Stat_corr_16: 0.20754386298000324 - Stat_corr_17: -0.00039888516140214883 - Stat_corr_18: -0.0003807226011399234 - Sys_corr_eff_1: -0.13415575201041444 - Sys_corr_eff_2: 0.19414676823466331 - Sys_corr_eff_3: -0.12570009052713485 - Sys_corr_eff_4: 0.01387228578729085 - Sys_corr_eff_5: 0.008463053890364997 - Sys_corr_eff_6: 0.0022265738276946276 - Sys_corr_eff_7: 0.012825953925441065 - Sys_corr_eff_8: -0.014007056721950574 - Sys_corr_eff_9: 0.0024410905989727563 - Sys_corr_eff_10: -0.0018801906899045934 - Sys_corr_eff_11: -0.00012908056547190016 - Sys_corr_eff_12: -0.0005201015247190945 - Sys_corr_eff_13: -0.003630932164626689 - Sys_corr_eff_14: 0.0007565082760917134 - Sys_corr_eff_15: -0.00039091649437473787 - Sys_corr_eff_16: -0.001124796874083655 - Sys_corr_eff_17: -0.00018278038699778135 - Sys_corr_eff_18: 3.602111254576968e-05 +- Stat_corr_1: 3.057079295890237e-30 + Stat_corr_2: 9.183334634434956e-22 + Stat_corr_3: 4.269919579824388e-16 + Stat_corr_4: -3.84349989125983e-16 + Stat_corr_5: -3.6858144157064325e-08 + Stat_corr_6: -3.7683818531305225e-08 + Stat_corr_7: 3.76057149821433e-08 + Stat_corr_8: 4.192211866109966e-08 + Stat_corr_9: 5.9524172600672216e-08 + Stat_corr_10: -4.438111227130377e-08 + Stat_corr_11: -4.5050487286492426e-08 + Stat_corr_12: -5.103202421890407e-08 + Stat_corr_13: 0.00020207499311419256 + Stat_corr_14: 0.00022954614299281677 + Stat_corr_15: -0.21662213034340763 + Stat_corr_16: 0.20754386298000202 + Stat_corr_17: -0.00039888516140215274 + Stat_corr_18: -0.00038072260113991644 + Sys_corr_eff_1: -0.13415575201041452 + Sys_corr_eff_2: 0.1941467682346632 + Sys_corr_eff_3: -0.12570009052713516 + Sys_corr_eff_4: 0.013872285787290774 + Sys_corr_eff_5: 0.008463053890364943 + Sys_corr_eff_6: 0.0022265738276946788 + Sys_corr_eff_7: 0.012825953925439925 + Sys_corr_eff_8: -0.014007056721950621 + Sys_corr_eff_9: 0.002441090598974292 + Sys_corr_eff_10: -0.0018801906899054309 + Sys_corr_eff_11: -0.00012908056547432587 + Sys_corr_eff_12: -0.0005201015247175131 + Sys_corr_eff_13: -0.0036309321646268156 + Sys_corr_eff_14: 0.0007565082760974222 + Sys_corr_eff_15: -0.00039091649438614145 + Sys_corr_eff_16: -0.001124796874087644 + Sys_corr_eff_17: -0.00018278038699935445 + Sys_corr_eff_18: 3.6021112546485186e-05 Sys_back_corr: 0.025137646071181765 Sys_back_unc: 0.025137646071181765 Sys_fsr_corr: 0.011172287142747452 @@ -922,42 +922,42 @@ bins: Sys_align_corr: 0.03630993321392922 Sys_align_unc: 0.03630993321392922 Luminosity: 0.8 -- Stat_corr_1: -4.2049300959435694e-31 - Stat_corr_2: 5.0584230144662365e-24 - Stat_corr_3: 1.2490427246724493e-18 - Stat_corr_4: -1.1359810887512998e-18 - Stat_corr_5: -6.55241840335504e-11 - Stat_corr_6: -6.778344901879182e-11 - Stat_corr_7: 6.822850464065708e-11 - Stat_corr_8: 7.671373908788493e-11 - Stat_corr_9: 1.1316802894234724e-10 - Stat_corr_10: -8.18821397209034e-11 - Stat_corr_11: -8.384826866721578e-11 - Stat_corr_12: -9.582882936072947e-11 - Stat_corr_13: 5.815617570478596e-07 - Stat_corr_14: 6.903753182192262e-07 - Stat_corr_15: -0.0011713895555181028 - Stat_corr_16: 0.0011680173217524274 - Stat_corr_17: 0.07234963883394303 - Stat_corr_18: 0.06901299400713286 - Sys_corr_eff_1: -0.04542081206058563 - Sys_corr_eff_2: 0.08108055377630122 - Sys_corr_eff_3: -0.07598382501593592 - Sys_corr_eff_4: 0.04152360483923823 - Sys_corr_eff_5: -0.006862316052407083 - Sys_corr_eff_6: 0.0031535528069790175 - Sys_corr_eff_7: -0.005351821008075128 - Sys_corr_eff_8: -0.001737236168312107 - Sys_corr_eff_9: -0.00027923042916759837 - Sys_corr_eff_10: -0.0006423377300324559 - Sys_corr_eff_11: 0.0004065212343233978 - Sys_corr_eff_12: 0.002372083371131094 - Sys_corr_eff_13: 0.00010874177081710663 - Sys_corr_eff_14: 0.00038598226720422776 - Sys_corr_eff_15: -0.0006030005673399694 - Sys_corr_eff_16: 0.00014377448242115765 - Sys_corr_eff_17: 2.3335498675689107e-05 - Sys_corr_eff_18: -0.0006145850883838091 +- Stat_corr_1: -4.20493010785787e-31 + Stat_corr_2: 5.059554613800844e-24 + Stat_corr_3: 1.2490427027398749e-18 + Stat_corr_4: -1.1359810231648024e-18 + Stat_corr_5: -6.552418403355323e-11 + Stat_corr_6: -6.778344901879436e-11 + Stat_corr_7: 6.822850464066743e-11 + Stat_corr_8: 7.671373908790388e-11 + Stat_corr_9: 1.1316802894234224e-10 + Stat_corr_10: -8.188213972089839e-11 + Stat_corr_11: -8.384826866719928e-11 + Stat_corr_12: -9.582882936073319e-11 + Stat_corr_13: 5.815617570478429e-07 + Stat_corr_14: 6.903753182192412e-07 + Stat_corr_15: -0.0011713895555181075 + Stat_corr_16: 0.0011680173217524215 + Stat_corr_17: 0.0723496388339437 + Stat_corr_18: 0.0690129940071316 + Sys_corr_eff_1: -0.04542081206058568 + Sys_corr_eff_2: 0.0810805537763011 + Sys_corr_eff_3: -0.0759838250159359 + Sys_corr_eff_4: 0.041523604839238226 + Sys_corr_eff_5: -0.006862316052407366 + Sys_corr_eff_6: 0.0031535528069786805 + Sys_corr_eff_7: -0.005351821008075232 + Sys_corr_eff_8: -0.0017372361683118149 + Sys_corr_eff_9: -0.00027923042916621504 + Sys_corr_eff_10: -0.0006423377300321236 + Sys_corr_eff_11: 0.00040652123432699695 + Sys_corr_eff_12: 0.0023720833711295087 + Sys_corr_eff_13: 0.00010874177081793587 + Sys_corr_eff_14: 0.0003859822672084123 + Sys_corr_eff_15: -0.0006030005673390368 + Sys_corr_eff_16: 0.00014377448242252854 + Sys_corr_eff_17: 2.3335498686995818e-05 + Sys_corr_eff_18: -0.0006145850883856888 Sys_back_corr: 0.011582409075835649 Sys_back_unc: 0.011582409075835649 Sys_fsr_corr: 0.01801708078463323 @@ -967,42 +967,42 @@ bins: Sys_align_corr: 0.009008540392316616 Sys_align_unc: 0.009008540392316616 Luminosity: 0.4 -- Stat_corr_1: -3.88727200064197e-34 - Stat_corr_2: 1.5476641475404715e-27 - Stat_corr_3: 2.0277162652177495e-22 - Stat_corr_4: -1.8633206832201114e-22 - Stat_corr_5: -6.464606380759854e-15 - Stat_corr_6: -6.766510040561896e-15 - Stat_corr_7: 6.8698960171117655e-15 - Stat_corr_8: 7.790680374189694e-15 - Stat_corr_9: 1.194060807167572e-14 - Stat_corr_10: -8.384023586298857e-15 - Stat_corr_11: -8.660859907879246e-15 - Stat_corr_12: -9.98669710465405e-15 - Stat_corr_13: 9.288624540879822e-11 - Stat_corr_14: 1.1523192396247392e-10 - Stat_corr_15: -3.5153789299081876e-07 - Stat_corr_16: 3.648051332885016e-07 - Stat_corr_17: -0.06884510619364362 - Stat_corr_18: 0.07252827967716594 - Sys_corr_eff_1: -0.003816487184107115 - Sys_corr_eff_2: 0.00887309321023693 - Sys_corr_eff_3: -0.011630070348509753 - Sys_corr_eff_4: 0.010792706767630982 - Sys_corr_eff_5: -0.005931383031274085 - Sys_corr_eff_6: 0.006169244241757408 - Sys_corr_eff_7: 0.003589107607929938 - Sys_corr_eff_8: -0.0025544979479179995 - Sys_corr_eff_9: 0.0007714088043238296 - Sys_corr_eff_10: -0.0018451789522382492 - Sys_corr_eff_11: -0.00019949206715749507 - Sys_corr_eff_12: 1.5479609251721998e-05 - Sys_corr_eff_13: 0.00014083245194751375 - Sys_corr_eff_14: -0.0007148585518032758 - Sys_corr_eff_15: -0.00026098766553175597 - Sys_corr_eff_16: -0.0004488087893577122 - Sys_corr_eff_17: 0.0009984169215514268 - Sys_corr_eff_18: 1.1136702599782919e-05 +- Stat_corr_1: -3.8872720017915496e-34 + Stat_corr_2: 1.5476425563827907e-27 + Stat_corr_3: 2.0277162430705564e-22 + Stat_corr_4: -1.863320599454566e-22 + Stat_corr_5: -6.464606380760136e-15 + Stat_corr_6: -6.7665100405621395e-15 + Stat_corr_7: 6.869896017112816e-15 + Stat_corr_8: 7.790680374191612e-15 + Stat_corr_9: 1.1940608071675173e-14 + Stat_corr_10: -8.384023586298352e-15 + Stat_corr_11: -8.660859907877545e-15 + Stat_corr_12: -9.986697104654409e-15 + Stat_corr_13: 9.28862454087955e-11 + Stat_corr_14: 1.152319239624764e-10 + Stat_corr_15: -3.5153789299082003e-07 + Stat_corr_16: 3.648051332884997e-07 + Stat_corr_17: -0.06884510619364285 + Stat_corr_18: 0.07252827967716714 + Sys_corr_eff_1: -0.003816487184107117 + Sys_corr_eff_2: 0.008873093210236925 + Sys_corr_eff_3: -0.011630070348509748 + Sys_corr_eff_4: 0.010792706767630968 + Sys_corr_eff_5: -0.005931383031274172 + Sys_corr_eff_6: 0.006169244241757349 + Sys_corr_eff_7: 0.0035891076079298608 + Sys_corr_eff_8: -0.002554497947917775 + Sys_corr_eff_9: 0.0007714088043244637 + Sys_corr_eff_10: -0.0018451789522384737 + Sys_corr_eff_11: -0.00019949206715704388 + Sys_corr_eff_12: 1.5479609252780098e-05 + Sys_corr_eff_13: 0.00014083245194798617 + Sys_corr_eff_14: -0.0007148585518036009 + Sys_corr_eff_15: -0.00026098766552087394 + Sys_corr_eff_16: -0.00044880878934384216 + Sys_corr_eff_17: 0.0009984169215522189 + Sys_corr_eff_18: 1.1136702601620011e-05 Sys_back_corr: 0.004772970773009197 Sys_back_unc: 0.004772970773009197 Sys_fsr_corr: 0.0053457272657703005 diff --git a/nnpdf_data/nnpdf_data/new_commondata/LHCB_Z0_7TEV_DIELECTRON/uncertainties.yaml b/nnpdf_data/nnpdf_data/new_commondata/LHCB_Z0_7TEV_DIELECTRON/uncertainties.yaml index 9c71f3c956..80c4833eae 100644 --- a/nnpdf_data/nnpdf_data/new_commondata/LHCB_Z0_7TEV_DIELECTRON/uncertainties.yaml +++ b/nnpdf_data/nnpdf_data/new_commondata/LHCB_Z0_7TEV_DIELECTRON/uncertainties.yaml @@ -91,8 +91,8 @@ bins: sys_corr_5: -8.227775516203549 sys_corr_6: 5.194558891602389 sys_corr_7: -71.18343302601451 - sys_corr_8: 2.9898193012459666 - sys_corr_9: -0.031004558695456506 + sys_corr_8: 2.989819301245978 + sys_corr_9: -0.031004558695455833 stat: 1300.0 sys_uncorr: 800.0 sys_luminosity: 2212.0 @@ -103,8 +103,8 @@ bins: sys_corr_5: -6.175566772578514 sys_corr_6: 5.27408226293231 sys_corr_7: -49.641550207339215 - sys_corr_8: 4.519833649212326 - sys_corr_9: -0.031785528351938035 + sys_corr_8: 4.519833649212316 + sys_corr_9: -0.03178552835193873 stat: 1400.0 sys_uncorr: 800.0 sys_luminosity: 2096.5 @@ -139,8 +139,8 @@ bins: sys_corr_5: -19.88887726105572 sys_corr_6: -298.0019071880905 sys_corr_7: 9.366499108977349 - sys_corr_8: -0.8454294608276799 - sys_corr_9: -0.0099135546760581 + sys_corr_8: -0.8454294608277066 + sys_corr_9: -0.009913554676058254 stat: 800.0 sys_uncorr: 500.0 sys_luminosity: 206.5 diff --git a/nnpdf_data/nnpdf_data/new_commondata/LHCB_Z0_7TEV_MUON/uncertainties.yaml b/nnpdf_data/nnpdf_data/new_commondata/LHCB_Z0_7TEV_MUON/uncertainties.yaml index 327bbd6f51..540a82691f 100644 --- a/nnpdf_data/nnpdf_data/new_commondata/LHCB_Z0_7TEV_MUON/uncertainties.yaml +++ b/nnpdf_data/nnpdf_data/new_commondata/LHCB_Z0_7TEV_MUON/uncertainties.yaml @@ -144,615 +144,615 @@ definitions: treatment: MULT type: LHCBLUMI7TEV bins: -- sys_corr_1: -5.144425552737296 - sys_corr_2: 6.572983562411262 - sys_corr_3: 1.9012314660278569 - sys_corr_4: -0.45189216664942083 - sys_corr_5: 0.05594228802177979 - sys_corr_6: -0.36043044211116054 - sys_corr_7: 0.28435870092215787 - sys_corr_8: -0.21589699461490744 - sys_corr_9: 0.394039608945261 - sys_corr_10: -0.9963074820237201 - sys_corr_11: -0.27291847084266024 - sys_corr_12: 0.17250031216800482 - sys_corr_13: 0.24120677404580163 - sys_corr_14: -0.16560168888307492 - sys_corr_15: 0.11049364107536074 - sys_corr_16: -0.07783131982621086 - sys_corr_17: -5.5519975339658405 - sys_corr_18: -0.11169848098737406 - sys_corr_19: 0.0039045714346245346 - sys_corr_20: 0.016588103163134835 - sys_corr_21: 0.0028952580070190485 - sys_corr_22: 0.06694374851721896 - sys_corr_23: 30.00232601650877 - sys_corr_24: -1.8654453464465108 - sys_corr_25: 0.37311194182794966 - sys_corr_26: -0.5424011750465152 - sys_corr_27: -0.47326824146626384 - sys_corr_28: -0.2268287138692792 - sys_corr_29: 3.3783196023765205 - sys_corr_30: -0.15275781589681245 - sys_corr_31: 0.515144394929163 - sys_corr_32: 1.411560590878453 - sys_corr_33: 0.1757247150534982 +- sys_corr_1: -5.144425552740034 + sys_corr_2: 6.572983562410863 + sys_corr_3: 1.901231466027203 + sys_corr_4: -0.45189216664871834 + sys_corr_5: 0.055942288021601796 + sys_corr_6: -0.36043044211198694 + sys_corr_7: 0.2843587009221314 + sys_corr_8: -0.21589699461491837 + sys_corr_9: 0.3940396089453557 + sys_corr_10: -0.9963074820242709 + sys_corr_11: -0.27291847084313714 + sys_corr_12: 0.17250031216802095 + sys_corr_13: 0.2412067740456695 + sys_corr_14: -0.16560168888289095 + sys_corr_15: 0.11049364107469214 + sys_corr_16: -0.07783131982592827 + sys_corr_17: -5.551997533965656 + sys_corr_18: -0.11169848098738341 + sys_corr_19: 0.0039045714346296456 + sys_corr_20: 0.016588103163121905 + sys_corr_21: 0.0028952580070134037 + sys_corr_22: 0.06694374851714423 + sys_corr_23: 30.002326016514075 + sys_corr_24: -1.8654453464376475 + sys_corr_25: 0.3731119418282494 + sys_corr_26: -0.5424011750465533 + sys_corr_27: -0.47326824146637403 + sys_corr_28: -0.22682871386901252 + sys_corr_29: 3.378319602378212 + sys_corr_30: -0.1527578158969609 + sys_corr_31: 0.515144394929459 + sys_corr_32: 1.4115605908788966 + sys_corr_33: 0.1757247150533275 stat: 39.0 sys_beam: 12.0 sys_luminosity: 17.0 -- sys_corr_1: -7.2979115724601336 - sys_corr_2: 13.000869127021266 - sys_corr_3: -1.0422124403234094 - sys_corr_4: -1.735444785863847 - sys_corr_5: 0.47462677573177564 - sys_corr_6: 0.009573237207789752 - sys_corr_7: -0.12218007038473112 - sys_corr_8: 0.025430645713649083 - sys_corr_9: 0.5399448945841515 - sys_corr_10: -2.1368483434802883 - sys_corr_11: -0.000894332477966361 - sys_corr_12: 0.5360948474571028 - sys_corr_13: -0.4443972829322707 - sys_corr_14: 0.30958943482857076 - sys_corr_15: -0.10817824102424793 - sys_corr_16: 0.24206850144901626 - sys_corr_17: -14.241528770784848 - sys_corr_18: -0.2174093835890052 - sys_corr_19: 0.00129278712222342 - sys_corr_20: 0.005916154160590078 - sys_corr_21: -0.03415644742593111 - sys_corr_22: 0.09648547898534147 - sys_corr_23: -2.6074049432177433 - sys_corr_24: -0.04122313900507093 - sys_corr_25: -0.39982871944562265 - sys_corr_26: -1.6516389153749826 - sys_corr_27: -1.9634020415997646 - sys_corr_28: -1.5399761229716424 - sys_corr_29: 44.8093647207505 - sys_corr_30: -1.1842740381845818 - sys_corr_31: 1.487023835479344 - sys_corr_32: 6.129738977415158 - sys_corr_33: 0.10119973561221914 +- sys_corr_1: -7.297911572460107 + sys_corr_2: 13.000869127021309 + sys_corr_3: -1.0422124403234008 + sys_corr_4: -1.7354447858638322 + sys_corr_5: 0.4746267757317964 + sys_corr_6: 0.009573237207884 + sys_corr_7: -0.12218007038465588 + sys_corr_8: 0.025430645713995417 + sys_corr_9: 0.5399448945842477 + sys_corr_10: -2.1368483434801204 + sys_corr_11: -0.0008943324781260716 + sys_corr_12: 0.5360948474571062 + sys_corr_13: -0.44439728293227915 + sys_corr_14: 0.3095894348287661 + sys_corr_15: -0.1081782410243901 + sys_corr_16: 0.24206850144893818 + sys_corr_17: -14.241528770783685 + sys_corr_18: -0.217409383588994 + sys_corr_19: 0.0012927871221434435 + sys_corr_20: 0.0059161541606441 + sys_corr_21: -0.034156447425967996 + sys_corr_22: 0.09648547898561297 + sys_corr_23: -2.607404943220818 + sys_corr_24: -0.041223139005774956 + sys_corr_25: -0.3998287194458143 + sys_corr_26: -1.6516389153749202 + sys_corr_27: -1.9634020416001159 + sys_corr_28: -1.539976122969781 + sys_corr_29: 44.80936472075005 + sys_corr_30: -1.184274038184911 + sys_corr_31: 1.4870238354788787 + sys_corr_32: 6.129738977414608 + sys_corr_33: 0.10119973561078824 stat: 63.0 sys_beam: 36.0 sys_luminosity: 49.0 -- sys_corr_1: -7.699157805059063 - sys_corr_2: 17.714741868443706 - sys_corr_3: -5.6356926803538725 - sys_corr_4: -0.5396681593613241 - sys_corr_5: 1.1984639112900106 - sys_corr_6: 0.7177770158018619 - sys_corr_7: -0.42479108202438015 - sys_corr_8: 0.30912149243018555 - sys_corr_9: 0.46987104084711734 - sys_corr_10: -2.605356064191485 - sys_corr_11: -0.4066246734903094 - sys_corr_12: -0.6905443288026683 - sys_corr_13: 1.0655867897808564 - sys_corr_14: 0.4122883510643879 - sys_corr_15: 0.0022229188684035556 - sys_corr_16: 0.2111637371374708 - sys_corr_17: -45.26100377539002 - sys_corr_18: 59.588713813559316 - sys_corr_19: 0.001014292746358461 - sys_corr_20: 0.005003254483960289 - sys_corr_21: 0.006825287451739537 - sys_corr_22: -0.027693923239052565 - sys_corr_23: -0.6852271010200881 - sys_corr_24: -0.04406223106423634 - sys_corr_25: -0.0999605848937722 - sys_corr_26: 4.316724639375872 - sys_corr_27: 3.1011311797822194 - sys_corr_28: 0.4029424218997993 - sys_corr_29: -3.23138151404509 - sys_corr_30: 0.049299069559472136 - sys_corr_31: -2.52022645301033 - sys_corr_32: -4.750051696187654 - sys_corr_33: 0.0481916067107621 +- sys_corr_1: -7.699157805059007 + sys_corr_2: 17.71474186844379 + sys_corr_3: -5.635692680353923 + sys_corr_4: -0.5396681593612414 + sys_corr_5: 1.1984639112899278 + sys_corr_6: 0.7177770158019381 + sys_corr_7: -0.4247910820244533 + sys_corr_8: 0.30912149243054166 + sys_corr_9: 0.4698710408470783 + sys_corr_10: -2.605356064191482 + sys_corr_11: -0.40662467349036446 + sys_corr_12: -0.6905443288027894 + sys_corr_13: 1.0655867897808229 + sys_corr_14: 0.41228835106456924 + sys_corr_15: 0.0022229188682831675 + sys_corr_16: 0.21116373713766826 + sys_corr_17: -45.2610037753907 + sys_corr_18: 59.588713813559345 + sys_corr_19: 0.00101429274636337 + sys_corr_20: 0.0050032544839424325 + sys_corr_21: 0.006825287451736368 + sys_corr_22: -0.027693923239105418 + sys_corr_23: -0.6852271010202735 + sys_corr_24: -0.04406223106420677 + sys_corr_25: -0.09996058489381261 + sys_corr_26: 4.3167246393749155 + sys_corr_27: 3.101131179781679 + sys_corr_28: 0.40294242189699037 + sys_corr_29: -3.2313815140449718 + sys_corr_30: 0.04929906955860508 + sys_corr_31: -2.5202264530105762 + sys_corr_32: -4.750051696188027 + sys_corr_33: 0.04819160671261607 stat: 77.0 sys_beam: 55.0 sys_luminosity: 76.0 -- sys_corr_1: -5.838278576612335 - sys_corr_2: 14.39097310940154 - sys_corr_3: -5.5660359040882295 - sys_corr_4: 2.391986214650788 - sys_corr_5: -0.35519219284682624 - sys_corr_6: 0.01737443068743538 - sys_corr_7: -0.3296774884858184 - sys_corr_8: 0.4550736904525835 - sys_corr_9: 0.6014060984869024 - sys_corr_10: -2.095698384753005 - sys_corr_11: -0.8035075574422367 - sys_corr_12: -1.0054240511389803 - sys_corr_13: 0.740831409139714 - sys_corr_14: 0.5331301450045302 - sys_corr_15: 0.14439003041032022 - sys_corr_16: 0.4857155411277963 - sys_corr_17: -22.53807456374846 - sys_corr_18: -4.141360551493612 - sys_corr_19: -0.00031413186283882534 - sys_corr_20: 0.0025633923269077767 - sys_corr_21: -0.010384538709837542 - sys_corr_22: -0.017915032641181453 - sys_corr_23: -0.9487168334089818 - sys_corr_24: -0.03297155395447347 - sys_corr_25: -0.5617137822940823 - sys_corr_26: -3.6776216478585764 - sys_corr_27: -3.46628878798578 - sys_corr_28: 0.057611600055909075 - sys_corr_29: -7.426141561175923 - sys_corr_30: -2.7393252363503846 - sys_corr_31: 10.219720900340917 - sys_corr_32: 50.74646898190347 - sys_corr_33: 4.471619432732395 +- sys_corr_1: -5.838278576612298 + sys_corr_2: 14.39097310940158 + sys_corr_3: -5.566035904088241 + sys_corr_4: 2.391986214650795 + sys_corr_5: -0.35519219284686376 + sys_corr_6: 0.01737443068755354 + sys_corr_7: -0.32967748848589723 + sys_corr_8: 0.45507369045289436 + sys_corr_9: 0.6014060984871122 + sys_corr_10: -2.095698384752894 + sys_corr_11: -0.8035075574421994 + sys_corr_12: -1.0054240511389962 + sys_corr_13: 0.7408314091397591 + sys_corr_14: 0.5331301450047038 + sys_corr_15: 0.14439003041028053 + sys_corr_16: 0.4857155411279266 + sys_corr_17: -22.53807456374804 + sys_corr_18: -4.141360551493549 + sys_corr_19: -0.00031413186285801637 + sys_corr_20: 0.002563392326889276 + sys_corr_21: -0.010384538709856669 + sys_corr_22: -0.017915032641110377 + sys_corr_23: -0.9487168334097262 + sys_corr_24: -0.03297155395518106 + sys_corr_25: -0.5617137822932491 + sys_corr_26: -3.6776216478564394 + sys_corr_27: -3.4662887879851327 + sys_corr_28: 0.057611600058810546 + sys_corr_29: -7.426141561175894 + sys_corr_30: -2.739325236350733 + sys_corr_31: 10.21972090034545 + sys_corr_32: 50.746468981903575 + sys_corr_33: 4.471619432722373 stat: 88.0 sys_beam: 73.0 sys_luminosity: 100.0 -- sys_corr_1: -5.996893917218779 - sys_corr_2: 14.843014977290123 - sys_corr_3: -5.269489895299516 - sys_corr_4: 3.594970337236043 - sys_corr_5: -2.741187219997007 - sys_corr_6: -1.2469937258110568 - sys_corr_7: -0.48924991062812717 - sys_corr_8: 0.5005765425754801 - sys_corr_9: 0.7965903106528028 - sys_corr_10: -2.5859179064659767 - sys_corr_11: -0.17960228334737469 - sys_corr_12: -0.8595719321259883 - sys_corr_13: 0.5897927826986792 - sys_corr_14: -0.1133989273312675 - sys_corr_15: 0.12497901923291703 - sys_corr_16: 0.5870502811288675 - sys_corr_17: -31.164409701336353 - sys_corr_18: -12.455484431906113 - sys_corr_19: -0.0006272593525295703 - sys_corr_20: 0.0013584144003571282 - sys_corr_21: -0.0009692372148611307 - sys_corr_22: 0.05617481071977181 - sys_corr_23: -0.6423520184268899 - sys_corr_24: -0.18306750525284735 - sys_corr_25: -0.7933777125671716 - sys_corr_26: -21.96384251377866 - sys_corr_27: -44.51969291627724 - sys_corr_28: -22.46957677466686 - sys_corr_29: -3.7526312981591343 - sys_corr_30: -1.0813662404346251 - sys_corr_31: -11.253680668329714 - sys_corr_32: -8.368031529328741 - sys_corr_33: -0.06105904366936167 +- sys_corr_1: -5.996893917218735 + sys_corr_2: 14.843014977290178 + sys_corr_3: -5.26948989529952 + sys_corr_4: 3.5949703372359587 + sys_corr_5: -2.7411872199969576 + sys_corr_6: -1.2469937258108765 + sys_corr_7: -0.4892499106281845 + sys_corr_8: 0.5005765425756845 + sys_corr_9: 0.7965903106529305 + sys_corr_10: -2.5859179064658893 + sys_corr_11: -0.17960228334736852 + sys_corr_12: -0.8595719321260656 + sys_corr_13: 0.5897927826987377 + sys_corr_14: -0.11339892733102595 + sys_corr_15: 0.1249790192329557 + sys_corr_16: 0.5870502811290336 + sys_corr_17: -31.16440970133634 + sys_corr_18: -12.455484431906589 + sys_corr_19: -0.0006272593525352574 + sys_corr_20: 0.001358414400353384 + sys_corr_21: -0.0009692372148536777 + sys_corr_22: 0.05617481071978107 + sys_corr_23: -0.6423520184271446 + sys_corr_24: -0.18306750525331847 + sys_corr_25: -0.7933777125670846 + sys_corr_26: -21.96384251377368 + sys_corr_27: -44.51969291627447 + sys_corr_28: -22.46957677464849 + sys_corr_29: -3.752631298159274 + sys_corr_30: -1.0813662404328324 + sys_corr_31: -11.253680668330848 + sys_corr_32: -8.368031529327054 + sys_corr_33: -0.0610590436712085 stat: 95.0 sys_beam: 86.0 sys_luminosity: 118.0 -- sys_corr_1: -5.949907003474893 - sys_corr_2: 14.137082558143812 - sys_corr_3: -5.277680065464697 - sys_corr_4: 4.324795651634657 - sys_corr_5: -3.8817624195466083 - sys_corr_6: -3.050024424577193 - sys_corr_7: -0.36016906635447266 - sys_corr_8: -0.10590922722408913 - sys_corr_9: 1.3654373696739226 - sys_corr_10: -2.0298119047864565 - sys_corr_11: -0.509653317695316 - sys_corr_12: -0.24718679746573982 - sys_corr_13: 0.4315757865304684 - sys_corr_14: 0.2819219297348295 - sys_corr_15: 0.2760050884900921 - sys_corr_16: 0.6540969041572919 - sys_corr_17: -32.860485308268345 - sys_corr_18: -17.6982285482807 - sys_corr_19: -0.001263697281201173 - sys_corr_20: 1.256896517817219e-05 - sys_corr_21: -0.028347299802743316 - sys_corr_22: 0.12649311170159064 - sys_corr_23: -0.5245922592700833 - sys_corr_24: -0.3328874883910357 - sys_corr_25: -0.5689330600897775 - sys_corr_26: -29.221006003633807 - sys_corr_27: 42.386548398330426 - sys_corr_28: -17.0961753408547 - sys_corr_29: -2.252150437961893 - sys_corr_30: -1.6023600848258366 - sys_corr_31: -8.8840468290432 - sys_corr_32: -4.695198903528693 - sys_corr_33: -1.5667836238057036 +- sys_corr_1: -5.949907003474861 + sys_corr_2: 14.137082558143842 + sys_corr_3: -5.277680065464681 + sys_corr_4: 4.3247956516346715 + sys_corr_5: -3.8817624195466136 + sys_corr_6: -3.0500244245771233 + sys_corr_7: -0.3601690663546049 + sys_corr_8: -0.10590922722384427 + sys_corr_9: 1.365437369674065 + sys_corr_10: -2.0298119047863707 + sys_corr_11: -0.509653317695348 + sys_corr_12: -0.24718679746580352 + sys_corr_13: 0.43157578653055706 + sys_corr_14: 0.2819219297350938 + sys_corr_15: 0.27600508849006183 + sys_corr_16: 0.654096904157463 + sys_corr_17: -32.860485308268515 + sys_corr_18: -17.698228548281413 + sys_corr_19: -0.0012636972811759975 + sys_corr_20: 1.256896515653254e-05 + sys_corr_21: -0.028347299802825965 + sys_corr_22: 0.12649311170157104 + sys_corr_23: -0.5245922592701399 + sys_corr_24: -0.3328874883910953 + sys_corr_25: -0.5689330600897631 + sys_corr_26: -29.22100600363928 + sys_corr_27: 42.386548398332565 + sys_corr_28: -17.09617534086349 + sys_corr_29: -2.2521504379625417 + sys_corr_30: -1.6023600848258446 + sys_corr_31: -8.884046829042811 + sys_corr_32: -4.6951989035270385 + sys_corr_33: -1.5667836238063806 stat: 100.0 sys_beam: 96.0 sys_luminosity: 132.0 -- sys_corr_1: -5.835444039374041 - sys_corr_2: 13.088285526624254 - sys_corr_3: -5.492704668224821 - sys_corr_4: 4.021133143361606 - sys_corr_5: -3.912196688307005 - sys_corr_6: -3.4866600736969366 - sys_corr_7: 0.21179248317851473 - sys_corr_8: -0.8777885622213787 - sys_corr_9: 1.8786360127719697 - sys_corr_10: -0.9027896072398113 - sys_corr_11: 1.1830857070798262 - sys_corr_12: -1.1401979030346663 - sys_corr_13: 0.4738053765140951 - sys_corr_14: 0.3155168234499182 - sys_corr_15: 0.6446447044378301 - sys_corr_16: 0.5576028659722555 - sys_corr_17: -34.36525962411806 - sys_corr_18: -22.886667929539072 - sys_corr_19: -0.0013478159665866792 - sys_corr_20: -0.0004724214571688776 - sys_corr_21: -0.025375022376361522 - sys_corr_22: 0.11239189427047779 - sys_corr_23: -0.4070390546193578 - sys_corr_24: -0.285376123243273 - sys_corr_25: -0.9633357122392353 - sys_corr_26: 50.803816344140344 - sys_corr_27: 4.12014680369151 - sys_corr_28: -14.1275018024426 - sys_corr_29: -1.84517833184862 - sys_corr_30: -1.495579517239852 - sys_corr_31: -9.740693365024615 - sys_corr_32: -2.787873471680124 - sys_corr_33: 0.2992023172918279 +- sys_corr_1: -5.835444039374021 + sys_corr_2: 13.088285526624283 + sys_corr_3: -5.492704668224828 + sys_corr_4: 4.021133143361567 + sys_corr_5: -3.9121966883069956 + sys_corr_6: -3.4866600736968314 + sys_corr_7: 0.21179248317837016 + sys_corr_8: -0.8777885622212179 + sys_corr_9: 1.8786360127721018 + sys_corr_10: -0.9027896072397511 + sys_corr_11: 1.1830857070798344 + sys_corr_12: -1.1401979030347482 + sys_corr_13: 0.47380537651409055 + sys_corr_14: 0.3155168234500565 + sys_corr_15: 0.644644704437577 + sys_corr_16: 0.5576028659723105 + sys_corr_17: -34.36525962411903 + sys_corr_18: -22.88666792953804 + sys_corr_19: -0.0013478159665670224 + sys_corr_20: -0.0004724214571829234 + sys_corr_21: -0.02537502237640039 + sys_corr_22: 0.11239189427054516 + sys_corr_23: -0.4070390546193248 + sys_corr_24: -0.2853761232434217 + sys_corr_25: -0.9633357122385968 + sys_corr_26: 50.80381634414013 + sys_corr_27: 4.120146803693921 + sys_corr_28: -14.127501802452725 + sys_corr_29: -1.8451783318486372 + sys_corr_30: -1.495579517239746 + sys_corr_31: -9.740693365029998 + sys_corr_32: -2.787873471681524 + sys_corr_33: 0.29920231729136826 stat: 104.0 sys_beam: 104.0 sys_luminosity: 143.0 -- sys_corr_1: -4.578463173209268 - sys_corr_2: 11.492975402798796 - sys_corr_3: -5.3427273687657495 - sys_corr_4: 4.126356809328624 - sys_corr_5: -3.992260887375213 - sys_corr_6: -3.6598352973931885 - sys_corr_7: 1.2417807646456793 - sys_corr_8: -2.2074178309052495 - sys_corr_9: 1.5545920211934858 - sys_corr_10: -0.6499439295903825 - sys_corr_11: 0.20241455697884694 - sys_corr_12: -0.734634489123797 - sys_corr_13: 0.15016606264162435 - sys_corr_14: 0.18719010221802768 - sys_corr_15: 0.950295312530032 - sys_corr_16: 0.6382116555836227 - sys_corr_17: -28.022841740406605 - sys_corr_18: -15.360370639625264 - sys_corr_19: 0.00426215893645842 - sys_corr_20: 0.010104978715939099 - sys_corr_21: -0.058498624981505855 - sys_corr_22: 0.21426492515908183 - sys_corr_23: -0.40659276863566535 - sys_corr_24: -0.5178959102666051 - sys_corr_25: -1.0548333315490024 - sys_corr_26: -5.178392681781018 - sys_corr_27: -3.829689715013682 - sys_corr_28: 51.20257865707845 - sys_corr_29: -1.0981054409249755 - sys_corr_30: -3.038890187922179 - sys_corr_31: -20.301079361138328 - sys_corr_32: -2.8393245839428345 - sys_corr_33: 0.4512831009163918 +- sys_corr_1: -4.578463173209245 + sys_corr_2: 11.492975402798844 + sys_corr_3: -5.342727368765783 + sys_corr_4: 4.126356809328613 + sys_corr_5: -3.9922608873752963 + sys_corr_6: -3.659835297393161 + sys_corr_7: 1.2417807646456467 + sys_corr_8: -2.207417830905172 + sys_corr_9: 1.5545920211934137 + sys_corr_10: -0.6499439295902983 + sys_corr_11: 0.2024145569787807 + sys_corr_12: -0.7346344891238589 + sys_corr_13: 0.15016606264172364 + sys_corr_14: 0.1871901022181721 + sys_corr_15: 0.9502953125299415 + sys_corr_16: 0.6382116555836846 + sys_corr_17: -28.022841740406594 + sys_corr_18: -15.360370639625762 + sys_corr_19: 0.004262158936466547 + sys_corr_20: 0.010104978715944603 + sys_corr_21: -0.05849862498136131 + sys_corr_22: 0.21426492515897955 + sys_corr_23: -0.40659276863563015 + sys_corr_24: -0.5178959102669797 + sys_corr_25: -1.0548333315489675 + sys_corr_26: -5.178392681782824 + sys_corr_27: -3.8296897150192692 + sys_corr_28: 51.202578657080586 + sys_corr_29: -1.0981054409265378 + sys_corr_30: -3.0388901879220116 + sys_corr_31: -20.301079361133443 + sys_corr_32: -2.839324583945193 + sys_corr_33: 0.4512831009149138 stat: 103.0 sys_beam: 103.0 sys_luminosity: 142.0 -- sys_corr_1: -3.9460858939787267 - sys_corr_2: 9.33174768282577 - sys_corr_3: -4.502646795676525 - sys_corr_4: 3.5266199921711525 - sys_corr_5: -3.63902966660707 - sys_corr_6: -3.2259843865340474 - sys_corr_7: 2.158848236181536 - sys_corr_8: -2.2365351993275393 - sys_corr_9: 1.2136482542488523 - sys_corr_10: -0.29676784913591625 - sys_corr_11: -0.8236260631450238 - sys_corr_12: -0.34840942771363415 - sys_corr_13: 0.08854711601851223 - sys_corr_14: 0.934447885582395 - sys_corr_15: 1.0533652355015866 - sys_corr_16: -0.08875471213319627 - sys_corr_17: -20.059679842882847 - sys_corr_18: -8.695726652370375 - sys_corr_19: 0.004045355376689486 - sys_corr_20: 0.010423774641000881 - sys_corr_21: -0.06267162582061346 - sys_corr_22: 0.23812793222027165 - sys_corr_23: -0.3754999968965326 - sys_corr_24: -0.6042913104883304 - sys_corr_25: -2.1895278286540565 - sys_corr_26: -0.32629075771831767 - sys_corr_27: -2.6650933964938828 - sys_corr_28: 7.492399150300703 - sys_corr_29: -1.8453471794694891 - sys_corr_30: -6.137185313168774 - sys_corr_31: 34.404052262881606 - sys_corr_32: -8.058504971015362 - sys_corr_33: -38.3614814935855 +- sys_corr_1: -3.9460858939786965 + sys_corr_2: 9.331747682825814 + sys_corr_3: -4.502646795676548 + sys_corr_4: 3.52661999217111 + sys_corr_5: -3.639029666607165 + sys_corr_6: -3.22598438653398 + sys_corr_7: 2.1588482361814205 + sys_corr_8: -2.2365351993274634 + sys_corr_9: 1.2136482542488536 + sys_corr_10: -0.2967678491358917 + sys_corr_11: -0.8236260631451637 + sys_corr_12: -0.34840942771361777 + sys_corr_13: 0.08854711601867193 + sys_corr_14: 0.9344478855823343 + sys_corr_15: 1.0533652355015524 + sys_corr_16: -0.08875471213305143 + sys_corr_17: -20.059679842882176 + sys_corr_18: -8.695726652369748 + sys_corr_19: 0.004045355376697582 + sys_corr_20: 0.010423774641023337 + sys_corr_21: -0.06267162582035803 + sys_corr_22: 0.23812793222046488 + sys_corr_23: -0.37549999689656005 + sys_corr_24: -0.6042913104889222 + sys_corr_25: -2.1895278286529707 + sys_corr_26: -0.3262907577161122 + sys_corr_27: -2.6650933964974572 + sys_corr_28: 7.492399150300942 + sys_corr_29: -1.8453471794724177 + sys_corr_30: -6.137185313165999 + sys_corr_31: 34.40405226287594 + sys_corr_32: -8.058504971006268 + sys_corr_33: -38.36148149357813 stat: 99.0 sys_beam: 97.0 sys_luminosity: 134.0 -- sys_corr_1: -3.3296479921920366 - sys_corr_2: 7.5883943004564705 - sys_corr_3: -3.7145504527234507 - sys_corr_4: 3.35503548393236 - sys_corr_5: -3.6210240893796355 - sys_corr_6: -3.3033447678556995 - sys_corr_7: 2.7787312340337977 - sys_corr_8: -1.7908745803437651 - sys_corr_9: 0.6991734741609078 - sys_corr_10: -0.21168570613123566 - sys_corr_11: 0.419325432969654 - sys_corr_12: -1.034664667892168 - sys_corr_13: 0.9249825327151924 - sys_corr_14: 1.151342889063028 - sys_corr_15: 0.31758877794624407 - sys_corr_16: -0.8103817316898138 - sys_corr_17: -17.65115184322879 - sys_corr_18: -8.468050345061869 - sys_corr_19: 0.0034605281259789174 - sys_corr_20: 0.022841009935102966 - sys_corr_21: -0.10335762538889462 - sys_corr_22: 0.3639258931234307 - sys_corr_23: -0.4209886404783125 - sys_corr_24: -0.9238706063642763 - sys_corr_25: -2.541392203981611 - sys_corr_26: -1.43946139469366 - sys_corr_27: -0.5679517012131978 - sys_corr_28: 6.136048179732914 - sys_corr_29: -1.193661271400796 - sys_corr_30: -7.949020796072216 - sys_corr_31: 33.06818546504779 - sys_corr_32: -14.2341083025639 - sys_corr_33: 37.9332040653467 +- sys_corr_1: -3.3296479921920215 + sys_corr_2: 7.5883943004564935 + sys_corr_3: -3.714550452723452 + sys_corr_4: 3.3550354839323324 + sys_corr_5: -3.6210240893797 + sys_corr_6: -3.3033447678556613 + sys_corr_7: 2.7787312340336414 + sys_corr_8: -1.790874580343591 + sys_corr_9: 0.699173474160956 + sys_corr_10: -0.21168570613123214 + sys_corr_11: 0.4193254329696789 + sys_corr_12: -1.0346646678921523 + sys_corr_13: 0.9249825327151258 + sys_corr_14: 1.1513428890631658 + sys_corr_15: 0.317588777946141 + sys_corr_16: -0.8103817316898109 + sys_corr_17: -17.65115184322894 + sys_corr_18: -8.468050345062014 + sys_corr_19: 0.00346052812594454 + sys_corr_20: 0.02284100993511031 + sys_corr_21: -0.10335762538907334 + sys_corr_22: 0.3639258931234757 + sys_corr_23: -0.42098864047826307 + sys_corr_24: -0.9238706063642331 + sys_corr_25: -2.5413922039810912 + sys_corr_26: -1.4394613946934833 + sys_corr_27: -0.5679517012134454 + sys_corr_28: 6.136048179733384 + sys_corr_29: -1.1936612714029022 + sys_corr_30: -7.9490207960766295 + sys_corr_31: 33.068185465052935 + sys_corr_32: -14.234108302570368 + sys_corr_33: 37.93320406535584 stat: 96.0 sys_beam: 89.0 sys_luminosity: 122.0 -- sys_corr_1: -2.26449704480243 - sys_corr_2: 5.303611386017833 - sys_corr_3: -2.9965580164847374 - sys_corr_4: 2.9808073705544427 - sys_corr_5: -2.6717187965631704 - sys_corr_6: -2.8203798685914854 - sys_corr_7: 3.075916761243952 - sys_corr_8: -0.600206892842883 - sys_corr_9: 0.5652411860654452 - sys_corr_10: 0.1566211518695078 - sys_corr_11: 0.5227061713302058 - sys_corr_12: -0.2012909067866045 - sys_corr_13: -0.005896119165352256 - sys_corr_14: 0.7277698680111261 - sys_corr_15: 0.8209984498229408 - sys_corr_16: -1.141179059817319 - sys_corr_17: -11.310138887380388 - sys_corr_18: -5.191444509724453 - sys_corr_19: 0.012243378984876884 - sys_corr_20: 0.02707280314157412 - sys_corr_21: -0.1243196398117798 - sys_corr_22: 0.6384437220311394 - sys_corr_23: -0.23664523396155254 - sys_corr_24: -1.4184442725785145 - sys_corr_25: -6.182965470300769 - sys_corr_26: -0.7831071066196135 - sys_corr_27: -0.33676363861386627 - sys_corr_28: 3.607855843979147 - sys_corr_29: -0.025855777651026077 - sys_corr_30: 45.18748682643031 - sys_corr_31: 8.204394050536777 - sys_corr_32: -0.810980554988402 - sys_corr_33: 1.6084906420061331 +- sys_corr_1: -2.2644970448024164 + sys_corr_2: 5.303611386017853 + sys_corr_3: -2.9965580164847476 + sys_corr_4: 2.9808073705544844 + sys_corr_5: -2.671718796563147 + sys_corr_6: -2.8203798685914223 + sys_corr_7: 3.0759167612439726 + sys_corr_8: -0.6002068928428987 + sys_corr_9: 0.5652411860655118 + sys_corr_10: 0.1566211518695707 + sys_corr_11: 0.5227061713301702 + sys_corr_12: -0.2012909067865169 + sys_corr_13: -0.005896119165318261 + sys_corr_14: 0.7277698680111875 + sys_corr_15: 0.8209984498228907 + sys_corr_16: -1.1411790598173943 + sys_corr_17: -11.310138887380525 + sys_corr_18: -5.1914445097241035 + sys_corr_19: 0.012243378984850612 + sys_corr_20: 0.027072803141586887 + sys_corr_21: -0.12431963981218651 + sys_corr_22: 0.6384437220312449 + sys_corr_23: -0.23664523396117837 + sys_corr_24: -1.418444272577331 + sys_corr_25: -6.182965470305888 + sys_corr_26: -0.7831071066187173 + sys_corr_27: -0.3367636386135794 + sys_corr_28: 3.6078558439812403 + sys_corr_29: -0.025855777636017364 + sys_corr_30: 45.18748682643025 + sys_corr_31: 8.204394050539062 + sys_corr_32: -0.8109805549897795 + sys_corr_33: 1.6084906420068876 stat: 87.0 sys_beam: 74.0 sys_luminosity: 101.0 -- sys_corr_1: -1.5135155822276043 - sys_corr_2: 3.2044538268193117 - sys_corr_3: -1.7995590028307766 - sys_corr_4: 2.038005776686651 - sys_corr_5: -2.137992517157903 - sys_corr_6: -2.2561806411081524 - sys_corr_7: 2.632218317868729 - sys_corr_8: -0.256930003679635 - sys_corr_9: 0.3290430192703795 - sys_corr_10: 0.4158887653751436 - sys_corr_11: 0.1247072403048845 - sys_corr_12: -0.33814436203048215 - sys_corr_13: 0.3436493649735261 - sys_corr_14: 1.1984378152098496 - sys_corr_15: 0.5030735536072276 - sys_corr_16: -1.1517709087619579 - sys_corr_17: -6.947361726463262 - sys_corr_18: -3.1004020768359153 - sys_corr_19: 0.015269844074433592 - sys_corr_20: 0.03595434514355599 - sys_corr_21: -0.17357495277885113 - sys_corr_22: 0.7430732660383614 - sys_corr_23: -0.6040761669977323 - sys_corr_24: -2.6663942714178237 - sys_corr_25: 38.96666071835718 - sys_corr_26: -0.030343453690309857 - sys_corr_27: -0.588581390331981 - sys_corr_28: 1.6036788794271517 - sys_corr_29: -0.07008919590382523 - sys_corr_30: 5.872159828056926 - sys_corr_31: 4.203612781034689 - sys_corr_32: -1.0476413774165536 - sys_corr_33: 0.5798344606413427 +- sys_corr_1: -1.513515582227595 + sys_corr_2: 3.2044538268193246 + sys_corr_3: -1.799559002830778 + sys_corr_4: 2.038005776686647 + sys_corr_5: -2.137992517157925 + sys_corr_6: -2.256180641108121 + sys_corr_7: 2.6322183178687544 + sys_corr_8: -0.25693000367961655 + sys_corr_9: 0.32904301927027957 + sys_corr_10: 0.4158887653751109 + sys_corr_11: 0.12470724030488785 + sys_corr_12: -0.33814436203047815 + sys_corr_13: 0.3436493649734144 + sys_corr_14: 1.1984378152097308 + sys_corr_15: 0.5030735536072816 + sys_corr_16: -1.151770908762081 + sys_corr_17: -6.947361726463086 + sys_corr_18: -3.100402076835983 + sys_corr_19: 0.015269844074423085 + sys_corr_20: 0.035954345143622696 + sys_corr_21: -0.17357495277799437 + sys_corr_22: 0.7430732660388921 + sys_corr_23: -0.6040761669974669 + sys_corr_24: -2.6663942714164306 + sys_corr_25: 38.966660718356344 + sys_corr_26: -0.030343453690602797 + sys_corr_27: -0.588581390332667 + sys_corr_28: 1.6036788794271175 + sys_corr_29: -0.0700891959002945 + sys_corr_30: 5.872159828056449 + sys_corr_31: 4.2036127810351465 + sys_corr_32: -1.0476413774171527 + sys_corr_33: 0.5798344606427199 stat: 73.0 sys_beam: 52.0 sys_luminosity: 72.0 -- sys_corr_1: -0.9599677202731467 - sys_corr_2: 1.8901057609022751 - sys_corr_3: -1.037815979113756 - sys_corr_4: 1.2741208103014943 - sys_corr_5: -1.475782148750018 - sys_corr_6: -1.4710731576800267 - sys_corr_7: 2.1111106563037167 - sys_corr_8: -0.270213997061347 - sys_corr_9: 0.18836855327539567 - sys_corr_10: 0.4503325027711909 - sys_corr_11: 0.2300516023218829 - sys_corr_12: -0.4381571310579039 - sys_corr_13: 0.10449329455984135 - sys_corr_14: 0.3979064815391003 - sys_corr_15: 0.482003990859978 - sys_corr_16: -1.2052195926049707 - sys_corr_17: -3.879639564559728 - sys_corr_18: -1.6008710971999616 - sys_corr_19: 0.021744932392467536 - sys_corr_20: 0.052588206322506194 - sys_corr_21: -0.2841202770307984 - sys_corr_22: 1.9382119201107793 - sys_corr_23: 1.8023127730121085 - sys_corr_24: 28.942691039114482 - sys_corr_25: 3.028573834330488 - sys_corr_26: -0.187788861163144 - sys_corr_27: -0.0023176267272919057 - sys_corr_28: 1.0370069734245122 - sys_corr_29: 0.08391998313750906 - sys_corr_30: 2.140868155812344 - sys_corr_31: 1.8730470949491476 - sys_corr_32: -0.7474623468945075 - sys_corr_33: 0.5228886016713065 +- sys_corr_1: -0.9599677202731437 + sys_corr_2: 1.8901057609022804 + sys_corr_3: -1.0378159791137573 + sys_corr_4: 1.2741208103015023 + sys_corr_5: -1.4757821487500415 + sys_corr_6: -1.4710731576800156 + sys_corr_7: 2.111110656303758 + sys_corr_8: -0.27021399706120286 + sys_corr_9: 0.18836855327544447 + sys_corr_10: 0.4503325027712125 + sys_corr_11: 0.23005160232186697 + sys_corr_12: -0.4381571310578679 + sys_corr_13: 0.10449329455985254 + sys_corr_14: 0.39790648153921765 + sys_corr_15: 0.4820039908599063 + sys_corr_16: -1.2052195926051017 + sys_corr_17: -3.8796395645597612 + sys_corr_18: -1.6008710972005198 + sys_corr_19: 0.021744932392499822 + sys_corr_20: 0.052588206322650835 + sys_corr_21: -0.2841202770322658 + sys_corr_22: 1.9382119201075017 + sys_corr_23: 1.8023127730053656 + sys_corr_24: 28.942691039116013 + sys_corr_25: 3.0285738343293445 + sys_corr_26: -0.1877888611626913 + sys_corr_27: -0.002317626727620177 + sys_corr_28: 1.0370069734244094 + sys_corr_29: 0.08391998313771162 + sys_corr_30: 2.1408681558118405 + sys_corr_31: 1.8730470949490958 + sys_corr_32: -0.7474623468948263 + sys_corr_33: 0.5228886016718449 stat: 61.0 sys_beam: 36.0 sys_luminosity: 50.0 -- sys_corr_1: -0.6016101755163262 - sys_corr_2: 1.1597183126555852 - sys_corr_3: -0.43963847622759966 - sys_corr_4: 0.6948774891507522 - sys_corr_5: -0.9415241508082576 - sys_corr_6: -0.9991327629540212 - sys_corr_7: 1.5174553736573133 - sys_corr_8: 0.12754784527217214 - sys_corr_9: 0.13648182638961148 - sys_corr_10: 0.049695277717664854 - sys_corr_11: 0.2737254510373026 - sys_corr_12: 0.09215309773613535 - sys_corr_13: 0.01935480716384548 - sys_corr_14: 0.21777740221848438 - sys_corr_15: 0.2160632741754019 - sys_corr_16: -0.9735042680171326 - sys_corr_17: -2.0578009542705864 - sys_corr_18: -1.0644875221622025 - sys_corr_19: 0.031740270008793 - sys_corr_20: 0.08033514707290808 - sys_corr_21: -0.5208458815910265 - sys_corr_22: -22.464238022673584 - sys_corr_23: 0.18610800121312052 - sys_corr_24: 2.308734684642382 - sys_corr_25: 1.2699565268665773 - sys_corr_26: -0.09091516552321673 - sys_corr_27: 0.03267479133816744 - sys_corr_28: 0.6681291423825677 - sys_corr_29: 0.132805085087141 - sys_corr_30: 1.3989101918129927 - sys_corr_31: 1.0965066547411952 - sys_corr_32: -0.5238493042781469 - sys_corr_33: 0.3056880593228835 +- sys_corr_1: -0.6016101755163246 + sys_corr_2: 1.1597183126555877 + sys_corr_3: -0.43963847622759905 + sys_corr_4: 0.6948774891507552 + sys_corr_5: -0.9415241508082652 + sys_corr_6: -0.9991327629540143 + sys_corr_7: 1.5174553736573035 + sys_corr_8: 0.12754784527214505 + sys_corr_9: 0.13648182638956124 + sys_corr_10: 0.04969527771764928 + sys_corr_11: 0.2737254510373512 + sys_corr_12: 0.09215309773617389 + sys_corr_13: 0.019354807163847104 + sys_corr_14: 0.21777740221843647 + sys_corr_15: 0.21606327417540777 + sys_corr_16: -0.973504268016993 + sys_corr_17: -2.0578009542705265 + sys_corr_18: -1.0644875221619896 + sys_corr_19: 0.031740270008775204 + sys_corr_20: 0.08033514707308048 + sys_corr_21: -0.5208458815894645 + sys_corr_22: -22.46423802267437 + sys_corr_23: 0.18610800121244955 + sys_corr_24: 2.308734684641413 + sys_corr_25: 1.2699565268666466 + sys_corr_26: -0.09091516552335618 + sys_corr_27: 0.032674791337999366 + sys_corr_28: 0.6681291423828061 + sys_corr_29: 0.13280508508763325 + sys_corr_30: 1.3989101918131466 + sys_corr_31: 1.09650665474171 + sys_corr_32: -0.5238493042777358 + sys_corr_33: 0.3056880593229055 stat: 47.0 sys_beam: 22.0 sys_luminosity: 30.0 -- sys_corr_1: -0.30363528921299776 - sys_corr_2: 0.46487609211710273 - sys_corr_3: -0.1247745665660524 - sys_corr_4: 0.29905839114569505 - sys_corr_5: -0.2470346698834699 - sys_corr_6: -0.3700600797043061 - sys_corr_7: 0.7531431717298234 - sys_corr_8: -0.04223931399247174 - sys_corr_9: 0.13719711300660098 - sys_corr_10: 0.05124500846428704 - sys_corr_11: -0.036834311757478234 - sys_corr_12: 0.059475816300823645 - sys_corr_13: 0.16421221076050618 - sys_corr_14: 0.005626317963538678 - sys_corr_15: 0.14988122184911587 - sys_corr_16: -0.4003126761958511 - sys_corr_17: -0.8420927175202612 - sys_corr_18: -0.43628867841155355 - sys_corr_19: 0.03590177446561639 - sys_corr_20: 0.1268571768672835 - sys_corr_21: 13.84914420416772 - sys_corr_22: -0.7806083967790649 - sys_corr_23: 0.011581050126568642 - sys_corr_24: 0.6179383606692477 - sys_corr_25: 0.5014764801047217 - sys_corr_26: -0.02547230563101607 - sys_corr_27: 0.04103092350034633 - sys_corr_28: 0.32604980294041536 - sys_corr_29: 0.08077100472405872 - sys_corr_30: 0.4611880391113888 - sys_corr_31: 0.4947110792665851 - sys_corr_32: -0.16911931481799336 - sys_corr_33: 0.15492632999988518 +- sys_corr_1: -0.30363528921299726 + sys_corr_2: 0.4648760921171039 + sys_corr_3: -0.12477456656605275 + sys_corr_4: 0.2990583911456929 + sys_corr_5: -0.2470346698834696 + sys_corr_6: -0.3700600797043043 + sys_corr_7: 0.7531431717298209 + sys_corr_8: -0.04223931399245429 + sys_corr_9: 0.1371971130066231 + sys_corr_10: 0.051245008464293945 + sys_corr_11: -0.03683431175751741 + sys_corr_12: 0.059475816300766295 + sys_corr_13: 0.1642122107605053 + sys_corr_14: 0.005626317963480155 + sys_corr_15: 0.14988122184898237 + sys_corr_16: -0.4003126761959416 + sys_corr_17: -0.8420927175202827 + sys_corr_18: -0.43628867841145047 + sys_corr_19: 0.03590177446568252 + sys_corr_20: 0.12685717686608483 + sys_corr_21: 13.849144204168123 + sys_corr_22: -0.7806083967775885 + sys_corr_23: 0.011581050126402247 + sys_corr_24: 0.6179383606688502 + sys_corr_25: 0.5014764801040614 + sys_corr_26: -0.025472305630988738 + sys_corr_27: 0.041030923500010766 + sys_corr_28: 0.3260498029402512 + sys_corr_29: 0.08077100472413296 + sys_corr_30: 0.4611880391118003 + sys_corr_31: 0.494711079266706 + sys_corr_32: -0.1691193148183409 + sys_corr_33: 0.15492633000031986 stat: 32.0 sys_beam: 10.0 sys_luminosity: 14.0 -- sys_corr_1: -0.10547439465572662 - sys_corr_2: 0.18904847960759322 - sys_corr_3: -0.06667300003302963 - sys_corr_4: 0.06995541406089997 - sys_corr_5: -0.07973775749772742 - sys_corr_6: -0.08186155470482691 - sys_corr_7: 0.36041891542631405 - sys_corr_8: -0.007937458417970698 - sys_corr_9: 0.010425630003523773 - sys_corr_10: 0.008489985408112077 - sys_corr_11: 0.014469848807811202 - sys_corr_12: -0.028723535556029876 - sys_corr_13: -0.010975318861599307 - sys_corr_14: 0.00903011441822586 - sys_corr_15: 0.0701482056799405 - sys_corr_16: -0.17204888458446005 - sys_corr_17: -0.300461541373921 - sys_corr_18: -0.07927931968950211 - sys_corr_19: 0.14502031603278479 - sys_corr_20: -7.96150465089546 - sys_corr_21: 0.20984559058549018 - sys_corr_22: -0.2160960617220796 - sys_corr_23: 0.06734604526818005 - sys_corr_24: 0.19660344959978993 - sys_corr_25: 0.1817441829281845 - sys_corr_26: -0.023877524299082416 - sys_corr_27: -0.021898473104930007 - sys_corr_28: 0.12441629601171962 - sys_corr_29: 0.030633057336414405 - sys_corr_30: 0.17597808154967007 - sys_corr_31: 0.1928278224847564 - sys_corr_32: -0.05513058728099465 - sys_corr_33: 0.07793893164756557 +- sys_corr_1: -0.10547439465572588 + sys_corr_2: 0.18904847960759424 + sys_corr_3: -0.06667300003302946 + sys_corr_4: 0.06995541406089893 + sys_corr_5: -0.07973775749772975 + sys_corr_6: -0.08186155470482534 + sys_corr_7: 0.3604189154263184 + sys_corr_8: -0.00793745841794225 + sys_corr_9: 0.010425630003556688 + sys_corr_10: 0.008489985408124125 + sys_corr_11: 0.014469848807811856 + sys_corr_12: -0.028723535555937235 + sys_corr_13: -0.010975318861684086 + sys_corr_14: 0.009030114418278641 + sys_corr_15: 0.07014820568014873 + sys_corr_16: -0.17204888458433032 + sys_corr_17: -0.3004615413738437 + sys_corr_18: -0.07927931968931957 + sys_corr_19: 0.14502031603626284 + sys_corr_20: -7.961504650895671 + sys_corr_21: 0.20984559058474292 + sys_corr_22: -0.21609606172248594 + sys_corr_23: 0.06734604526810684 + sys_corr_24: 0.19660344960008216 + sys_corr_25: 0.1817441829283297 + sys_corr_26: -0.02387752429915648 + sys_corr_27: -0.021898473105198275 + sys_corr_28: 0.12441629601170437 + sys_corr_29: 0.030633057336847454 + sys_corr_30: 0.17597808154973107 + sys_corr_31: 0.1928278224849192 + sys_corr_32: -0.055130587280906834 + sys_corr_33: 0.07793893164754231 stat: 20.0 sys_beam: 4.0 sys_luminosity: 6.0 -- sys_corr_1: -0.024314294821134536 - sys_corr_2: 0.09692113929867915 - sys_corr_3: -0.03333161308882757 - sys_corr_4: 0.06107345051605306 - sys_corr_5: -0.06352349208669832 - sys_corr_6: -0.06298347307032294 - sys_corr_7: 0.18466559329976434 - sys_corr_8: 0.01854758747130262 - sys_corr_9: -0.028717692598100253 - sys_corr_10: 0.05370278836507441 - sys_corr_11: -0.05287405830181792 - sys_corr_12: -0.022456875402690965 - sys_corr_13: -0.03088389927420965 - sys_corr_14: 0.06185834377468288 - sys_corr_15: 0.009215479111549924 - sys_corr_16: -0.13719520827949316 - sys_corr_17: -0.11723684260541707 - sys_corr_18: -0.03585346561820866 - sys_corr_19: -5.982138587278388 - sys_corr_20: -0.19143727469493227 - sys_corr_21: 0.08356906426316986 - sys_corr_22: -0.11832245399399048 - sys_corr_23: 0.025647167839311445 - sys_corr_24: 0.11379847822740655 - sys_corr_25: 0.10881194615883996 - sys_corr_26: -0.011078459290446497 - sys_corr_27: -0.01241181587595177 - sys_corr_28: 0.07756686666272442 - sys_corr_29: 0.012305765288925435 - sys_corr_30: 0.11931735302945207 - sys_corr_31: 0.08057415546946586 - sys_corr_32: -0.02658392835422278 - sys_corr_33: 0.007594828848027523 +- sys_corr_1: -0.02431429482113436 + sys_corr_2: 0.09692113929867942 + sys_corr_3: -0.03333161308882767 + sys_corr_4: 0.06107345051605339 + sys_corr_5: -0.0635234920866984 + sys_corr_6: -0.06298347307032187 + sys_corr_7: 0.18466559329976315 + sys_corr_8: 0.018547587471302415 + sys_corr_9: -0.02871769259809767 + sys_corr_10: 0.05370278836507606 + sys_corr_11: -0.05287405830178798 + sys_corr_12: -0.02245687540262259 + sys_corr_13: -0.03088389927423268 + sys_corr_14: 0.061858343774689926 + sys_corr_15: 0.009215479111591185 + sys_corr_16: -0.13719520827944265 + sys_corr_17: -0.11723684260544923 + sys_corr_18: -0.03585346561818685 + sys_corr_19: -5.9821385872786745 + sys_corr_20: -0.19143727469509828 + sys_corr_21: 0.08356906426353942 + sys_corr_22: -0.1183224539940978 + sys_corr_23: 0.025647167839376116 + sys_corr_24: 0.11379847822740553 + sys_corr_25: 0.10881194615859863 + sys_corr_26: -0.011078459290351764 + sys_corr_27: -0.012411815875944492 + sys_corr_28: 0.07756686666277557 + sys_corr_29: 0.012305765288642322 + sys_corr_30: 0.11931735302945229 + sys_corr_31: 0.0805741554695368 + sys_corr_32: -0.026583928354131748 + sys_corr_33: 0.007594828848036096 stat: 13.0 sys_beam: 1.0 sys_luminosity: 2.0 diff --git a/nnpdf_data/nnpdf_data/new_commondata/LHCB_Z0_8TEV_DIELECTRON/uncertainties.yaml b/nnpdf_data/nnpdf_data/new_commondata/LHCB_Z0_8TEV_DIELECTRON/uncertainties.yaml index ae9bd3d111..02e9952730 100644 --- a/nnpdf_data/nnpdf_data/new_commondata/LHCB_Z0_8TEV_DIELECTRON/uncertainties.yaml +++ b/nnpdf_data/nnpdf_data/new_commondata/LHCB_Z0_8TEV_DIELECTRON/uncertainties.yaml @@ -81,342 +81,342 @@ definitions: type: LHCBLUMI8TEV bins: - sys_corr_1: 50.496507932630884 - sys_corr_2: 0.04049132840833315 - sys_corr_3: -129.13634405459155 - sys_corr_4: -18.70787004991063 - sys_corr_5: 0.8075267431961508 - sys_corr_6: -1.2147983290631525 - sys_corr_7: 2.304864357653479 - sys_corr_8: -1.2624961788201643 - sys_corr_9: 2.3658672522755264 - sys_corr_10: 1.8813609680452068 - sys_corr_11: 0.43387790125876724 - sys_corr_12: 1.7161127468308093 - sys_corr_13: -0.33875234788309955 - sys_corr_14: -0.5082787239277681 - sys_corr_15: -1.2990907515002452 - sys_corr_16: -0.7195345289257682 - sys_corr_17: 0.19634578620618798 + sys_corr_2: 0.04049132840833168 + sys_corr_3: -129.13634405459158 + sys_corr_4: -18.707870049910817 + sys_corr_5: 0.807526743196145 + sys_corr_6: -1.2147983290631617 + sys_corr_7: 2.3048643576534733 + sys_corr_8: -1.2624961788201694 + sys_corr_9: 2.365867252275522 + sys_corr_10: 1.881360968045207 + sys_corr_11: 0.4338779012587676 + sys_corr_12: 1.7161127468308068 + sys_corr_13: -0.33875234788310826 + sys_corr_14: -0.5082787239277523 + sys_corr_15: -1.299090751500243 + sys_corr_16: -0.7195345289257734 + sys_corr_17: 0.19634578620619214 stat: 370.0 sys_uncorr: 210.0 sys_luminosity: 100.0 - sys_corr_1: 260.8201313481468 - sys_corr_2: 0.004649644494032127 - sys_corr_3: 1.1312004587193232 - sys_corr_4: -0.17466041305074792 - sys_corr_5: -11.47669319671855 - sys_corr_6: 45.119586232607446 - sys_corr_7: 337.3660298581226 - sys_corr_8: -10.42498739630905 - sys_corr_9: 23.39038578987484 - sys_corr_10: 11.10248040559423 - sys_corr_11: -4.966504407390156 - sys_corr_12: 4.159894241068065 - sys_corr_13: 2.169728967923122 - sys_corr_14: -2.4438544219748404 - sys_corr_15: -5.96788470098558 - sys_corr_16: -3.7347857857640863 - sys_corr_17: -2.6359822874160934 + sys_corr_2: 0.004649644494034206 + sys_corr_3: 1.1312004587193225 + sys_corr_4: -0.1746604130507449 + sys_corr_5: -11.47669319671893 + sys_corr_6: 45.11958623260617 + sys_corr_7: 337.3660298581228 + sys_corr_8: -10.42498739630881 + sys_corr_9: 23.390385789874557 + sys_corr_10: 11.102480405594157 + sys_corr_11: -4.966504407390147 + sys_corr_12: 4.159894241068048 + sys_corr_13: 2.1697289679231897 + sys_corr_14: -2.4438544219750074 + sys_corr_15: -5.967884700985522 + sys_corr_16: -3.7347857857640077 + sys_corr_17: -2.635982287415979 stat: 610.0 sys_uncorr: 320.0 sys_luminosity: 320.0 - sys_corr_1: 433.3301594179667 - sys_corr_2: 0.002152921624912993 - sys_corr_3: 0.932588754694471 - sys_corr_4: -0.21918029852751125 - sys_corr_5: -5.1376818212988375 - sys_corr_6: 10.329701191708901 - sys_corr_7: -22.405899151563176 - sys_corr_8: 138.7810932586146 - sys_corr_9: 419.6656552384302 - sys_corr_10: 17.01064523843747 - sys_corr_11: -7.428287673499428 - sys_corr_12: 15.165580455354378 - sys_corr_13: 3.468139185168826 - sys_corr_14: -1.9582341135731003 - sys_corr_15: 0.9287610446914134 - sys_corr_16: 1.2163727425458761 - sys_corr_17: 4.091106440480885 + sys_corr_2: 0.002152921624907857 + sys_corr_3: 0.9325887546944714 + sys_corr_4: -0.21918029852751442 + sys_corr_5: -5.137681821298785 + sys_corr_6: 10.32970119170905 + sys_corr_7: -22.40589915156305 + sys_corr_8: 138.78109325861305 + sys_corr_9: 419.6656552384307 + sys_corr_10: 17.01064523843662 + sys_corr_11: -7.428287673499487 + sys_corr_12: 15.165580455354759 + sys_corr_13: 3.4681391851686008 + sys_corr_14: -1.9582341135734034 + sys_corr_15: 0.9287610446913239 + sys_corr_16: 1.2163727425459774 + sys_corr_17: 4.091106440480844 stat: 720.0 sys_uncorr: 360.0 sys_luminosity: 490.0 - sys_corr_1: 490.56773579227905 - sys_corr_2: -0.008587697630624764 - sys_corr_3: 0.5730792827760891 - sys_corr_4: -0.29672223619663085 - sys_corr_5: -1.6613963901027364 - sys_corr_6: 2.0922807617855614 - sys_corr_7: -6.249880176092608 - sys_corr_8: 3.36733005505856 - sys_corr_9: -17.357098574855435 - sys_corr_10: -24.514471514853344 - sys_corr_11: 5.219763466857088 - sys_corr_12: -91.73895406632151 - sys_corr_13: 33.383752085221744 - sys_corr_14: 76.52852896944506 - sys_corr_15: -275.1913223404094 - sys_corr_16: -129.80600353688246 - sys_corr_17: 553.614377854888 + sys_corr_2: -0.008587697630627568 + sys_corr_3: 0.573079282776089 + sys_corr_4: -0.29672223619663274 + sys_corr_5: -1.6613963901027071 + sys_corr_6: 2.09228076178561 + sys_corr_7: -6.249880176092601 + sys_corr_8: 3.3673300550585252 + sys_corr_9: -17.357098574855492 + sys_corr_10: -24.514471514853284 + sys_corr_11: 5.219763466857157 + sys_corr_12: -91.73895406632174 + sys_corr_13: 33.38375208522176 + sys_corr_14: 76.52852896944707 + sys_corr_15: -275.1913223404067 + sys_corr_16: -129.80600353687885 + sys_corr_17: 553.6143778548885 stat: 800.0 sys_uncorr: 390.0 sys_luminosity: 640.0 - sys_corr_1: 827.5691427618733 - sys_corr_2: -0.03578683578818939 - sys_corr_3: 1.1030447176231102 - sys_corr_4: -0.5361180799245235 - sys_corr_5: -3.9177527564986008 - sys_corr_6: 7.744389168459831 - sys_corr_7: -12.582679853316804 - sys_corr_8: 15.29817670741462 - sys_corr_9: -43.68357456169185 - sys_corr_10: -62.74473986270626 - sys_corr_11: -19.061816614833546 - sys_corr_12: 569.6143369188584 - sys_corr_13: -1.0894054255722412 - sys_corr_14: -37.17005941454428 - sys_corr_15: -23.9667981188669 - sys_corr_16: -25.136563059868244 - sys_corr_17: 38.756535779535774 + sys_corr_2: -0.03578683578818994 + sys_corr_3: 1.1030447176231104 + sys_corr_4: -0.5361180799245236 + sys_corr_5: -3.9177527564985724 + sys_corr_6: 7.744389168459887 + sys_corr_7: -12.582679853316773 + sys_corr_8: 15.2981767074147 + sys_corr_9: -43.68357456169184 + sys_corr_10: -62.74473986270624 + sys_corr_11: -19.06181661483347 + sys_corr_12: 569.6143369188591 + sys_corr_13: -1.0894054255734429 + sys_corr_14: -37.170059414544184 + sys_corr_15: -23.96679811886704 + sys_corr_16: -25.136563059868262 + sys_corr_17: 38.756535779535945 stat: 860.0 sys_uncorr: 400.0 sys_luminosity: 770.0 - sys_corr_1: 914.4761392261046 - sys_corr_2: -0.032144304436539844 - sys_corr_3: 0.9614485833874237 - sys_corr_4: -0.4688078319541208 - sys_corr_5: -3.1414063906445313 - sys_corr_6: 5.817644399212635 - sys_corr_7: -15.133127706642659 - sys_corr_8: 11.43115047280599 - sys_corr_9: -31.202175294147803 - sys_corr_10: -31.12362382745291 - sys_corr_11: -71.67273392042625 - sys_corr_12: -93.29036343105278 - sys_corr_13: 91.80887219546479 - sys_corr_14: 61.84369946193639 - sys_corr_15: -262.93229900215016 - sys_corr_16: -420.80915523079284 - sys_corr_17: -314.76859730824316 + sys_corr_2: -0.0321443044365375 + sys_corr_3: 0.961448583387423 + sys_corr_4: -0.46880783195411896 + sys_corr_5: -3.1414063906445207 + sys_corr_6: 5.817644399212647 + sys_corr_7: -15.133127706642657 + sys_corr_8: 11.431150472806019 + sys_corr_9: -31.202175294147818 + sys_corr_10: -31.123623827452885 + sys_corr_11: -71.67273392042614 + sys_corr_12: -93.29036343105291 + sys_corr_13: 91.80887219546433 + sys_corr_14: 61.843699461938655 + sys_corr_15: -262.93229900214897 + sys_corr_16: -420.8091552307967 + sys_corr_17: -314.768597308241 stat: 930.0 sys_uncorr: 450.0 sys_luminosity: 880.0 - sys_corr_1: 976.8781165825811 - sys_corr_2: -0.028424685621888386 - sys_corr_3: 0.8223490099417156 - sys_corr_4: -0.42221193284708775 - sys_corr_5: -2.5658106565164154 - sys_corr_6: 4.570169630051678 - sys_corr_7: -12.249747900222768 - sys_corr_8: 4.837121538875696 - sys_corr_9: -33.7050249186721 - sys_corr_10: -42.19375967322496 - sys_corr_11: 41.12325077598075 - sys_corr_12: -113.30571068652391 - sys_corr_13: 336.42391729459547 - sys_corr_14: -467.30121701563013 - sys_corr_15: 196.8094620970561 - sys_corr_16: 16.362955359011682 - sys_corr_17: 55.75417464449205 + sys_corr_2: -0.02842468562189049 + sys_corr_3: 0.8223490099417157 + sys_corr_4: -0.4222119328470888 + sys_corr_5: -2.5658106565163625 + sys_corr_6: 4.570169630051814 + sys_corr_7: -12.249747900222717 + sys_corr_8: 4.837121538875827 + sys_corr_9: -33.70502491867205 + sys_corr_10: -42.193759673224925 + sys_corr_11: 41.123250775981 + sys_corr_12: -113.30571068652375 + sys_corr_13: 336.42391729459365 + sys_corr_14: -467.3012170156349 + sys_corr_15: 196.80946209705266 + sys_corr_16: 16.3629553590119 + sys_corr_17: 55.754174644492785 stat: 980.0 sys_uncorr: 470.0 sys_luminosity: 930.0 - sys_corr_1: 994.1417167069432 - sys_corr_2: -0.028843892387781636 + sys_corr_2: -0.02884389238778375 sys_corr_3: 0.8338868082121943 - sys_corr_4: -0.41662657492414545 - sys_corr_5: -2.615859124221419 - sys_corr_6: 4.674687216554818 - sys_corr_7: -12.285297984189057 - sys_corr_8: 5.138119252550225 - sys_corr_9: -33.75534325766903 - sys_corr_10: -41.50062991845175 - sys_corr_11: -376.6122546152219 - sys_corr_12: -106.79905944412623 - sys_corr_13: -464.47101862600755 - sys_corr_14: -94.05577642308573 - sys_corr_15: 147.78419202283868 - sys_corr_16: 18.09629217360072 - sys_corr_17: 31.98966645114863 + sys_corr_4: -0.416626574924146 + sys_corr_5: -2.6158591242214024 + sys_corr_6: 4.674687216554839 + sys_corr_7: -12.28529798418905 + sys_corr_8: 5.138119252550279 + sys_corr_9: -33.75534325766906 + sys_corr_10: -41.50062991845168 + sys_corr_11: -376.6122546152226 + sys_corr_12: -106.79905944412688 + sys_corr_13: -464.47101862600823 + sys_corr_14: -94.0557764230837 + sys_corr_15: 147.78419202283987 + sys_corr_16: 18.096292173602077 + sys_corr_17: 31.98966645114852 stat: 990.0 sys_uncorr: 480.0 sys_luminosity: 950.0 - sys_corr_1: 986.0194075220559 - sys_corr_2: -0.031542366655046734 - sys_corr_3: 0.8948920924855847 - sys_corr_4: -0.06976746073872998 - sys_corr_5: -3.246370954100536 - sys_corr_6: 6.183854823233561 - sys_corr_7: -10.001549021449486 - sys_corr_8: 10.486322295070128 - sys_corr_9: -29.557318426414557 - sys_corr_10: -30.08507163591287 - sys_corr_11: 580.4244051069354 - sys_corr_12: -69.04003106402473 - sys_corr_13: -251.03426859840795 - sys_corr_14: 77.86250360948715 - sys_corr_15: 74.4444000703953 - sys_corr_16: 26.010070956233804 - sys_corr_17: -34.192394762608146 + sys_corr_2: -0.031542366655043445 + sys_corr_3: 0.8948920924855841 + sys_corr_4: -0.06976746073872711 + sys_corr_5: -3.2463709541005064 + sys_corr_6: 6.183854823233658 + sys_corr_7: -10.001549021449424 + sys_corr_8: 10.486322295070208 + sys_corr_9: -29.557318426414582 + sys_corr_10: -30.08507163591276 + sys_corr_11: 580.4244051069346 + sys_corr_12: -69.04003106402526 + sys_corr_13: -251.03426859840712 + sys_corr_14: 77.86250360948833 + sys_corr_15: 74.44440007039634 + sys_corr_16: 26.0100709562343 + sys_corr_17: -34.19239476260853 stat: 1030.0 sys_uncorr: 510.0 sys_luminosity: 950.0 - sys_corr_1: 845.5426738945688 - sys_corr_2: -0.007377130909013836 - sys_corr_3: 0.5336197581181954 - sys_corr_4: -0.384699455686507 - sys_corr_5: -3.6844637080639266 - sys_corr_6: 4.442035600106057 - sys_corr_7: -8.94792296677726 - sys_corr_8: 8.385482151121781 - sys_corr_9: -31.033475353537558 - sys_corr_10: -34.031255963872006 - sys_corr_11: -121.22895502888815 - sys_corr_12: -47.50530719547843 - sys_corr_13: 263.1985414193461 - sys_corr_14: 468.14606326722617 - sys_corr_15: 309.0652746310658 - sys_corr_16: 68.14207040088085 - sys_corr_17: 28.286993696246217 + sys_corr_2: -0.007377130909015639 + sys_corr_3: 0.5336197581181955 + sys_corr_4: -0.3846994556865095 + sys_corr_5: -3.6844637080638813 + sys_corr_6: 4.442035600106146 + sys_corr_7: -8.94792296677722 + sys_corr_8: 8.38548215112189 + sys_corr_9: -31.033475353537547 + sys_corr_10: -34.03125596387206 + sys_corr_11: -121.22895502888754 + sys_corr_12: -47.505307195477265 + sys_corr_13: 263.1985414193501 + sys_corr_14: 468.14606326722105 + sys_corr_15: 309.06527463106704 + sys_corr_16: 68.14207040088311 + sys_corr_17: 28.28699369624538 stat: 1020.0 sys_uncorr: 500.0 sys_luminosity: 850.0 - sys_corr_1: 725.0137462279205 - sys_corr_2: -0.022390578393464575 - sys_corr_3: 0.6346749697558467 - sys_corr_4: -0.2896888556204057 + sys_corr_2: -0.022390578393457657 + sys_corr_3: 0.6346749697558464 + sys_corr_4: -0.2896888556204003 sys_corr_5: -2.5907724650764985 - sys_corr_6: 3.3584724559683345 - sys_corr_7: -9.550348758889754 - sys_corr_8: 10.811331636027852 - sys_corr_9: -26.30791689743453 - sys_corr_10: -47.509790241306085 - sys_corr_11: -64.1921842076918 - sys_corr_12: -60.16675436617214 - sys_corr_13: 72.38375606366877 - sys_corr_14: 22.193488161239184 - sys_corr_15: -370.42439502143384 - sys_corr_16: 474.17305929131174 - sys_corr_17: -131.3478279493442 + sys_corr_6: 3.3584724559683363 + sys_corr_7: -9.550348758889768 + sys_corr_8: 10.81133163602782 + sys_corr_9: -26.307916897434552 + sys_corr_10: -47.50979024130608 + sys_corr_11: -64.19218420769158 + sys_corr_12: -60.1667543661723 + sys_corr_13: 72.38375606366824 + sys_corr_14: 22.19348816124246 + sys_corr_15: -370.4243950214366 + sys_corr_16: 474.1730592913089 + sys_corr_17: -131.34782794934677 stat: 1010.0 sys_uncorr: 510.0 sys_luminosity: 760.0 - sys_corr_1: 476.93251837265854 - sys_corr_2: -0.015125989165062496 - sys_corr_3: 0.8429306029109886 - sys_corr_4: -0.06761987763605268 - sys_corr_5: -2.2093000275460577 - sys_corr_6: 4.746611000585464 - sys_corr_7: -12.827336957802524 - sys_corr_8: 19.242004983382984 - sys_corr_9: -39.69649438166143 - sys_corr_10: 522.5122210972368 - sys_corr_11: -12.918281440183991 - sys_corr_12: 26.93293107584338 - sys_corr_13: 6.1447921226999895 - sys_corr_14: -5.547441486203914 - sys_corr_15: -12.615032525985443 - sys_corr_16: 17.586586635087688 - sys_corr_17: 6.956554277314376 + sys_corr_2: -0.015125989165059561 + sys_corr_3: 0.8429306029109884 + sys_corr_4: -0.06761987763604935 + sys_corr_5: -2.2093000275460346 + sys_corr_6: 4.746611000585601 + sys_corr_7: -12.827336957802414 + sys_corr_8: 19.242004983384003 + sys_corr_9: -39.69649438166075 + sys_corr_10: 522.512221097237 + sys_corr_11: -12.918281440183721 + sys_corr_12: 26.932931075842962 + sys_corr_13: 6.144792122699993 + sys_corr_14: -5.547441486203744 + sys_corr_15: -12.615032525985512 + sys_corr_16: 17.5865866350877 + sys_corr_17: 6.956554277314321 stat: 920.0 sys_uncorr: 460.0 sys_luminosity: 560.0 - sys_corr_1: 308.47890119046457 - sys_corr_2: -0.013363349993858067 - sys_corr_3: 0.8476795120862932 - sys_corr_4: 0.030967772477899256 - sys_corr_5: -3.3263885828082045 - sys_corr_6: 5.352021292607922 - sys_corr_7: -19.14271502500167 - sys_corr_8: -407.7401435007115 - sys_corr_9: 134.6572692794252 - sys_corr_10: 22.931060737663202 - sys_corr_11: 0.7727457890023822 - sys_corr_12: 17.22068294162794 - sys_corr_13: 3.231973295392651 - sys_corr_14: 5.579593535141512 - sys_corr_15: -8.00813926909354 - sys_corr_16: 2.6075118165467517 - sys_corr_17: -3.714965350296213 + sys_corr_2: -0.013363349993863224 + sys_corr_3: 0.8476795120862936 + sys_corr_4: 0.03096777247789691 + sys_corr_5: -3.3263885828081587 + sys_corr_6: 5.352021292608165 + sys_corr_7: -19.14271502500144 + sys_corr_8: -407.74014350071195 + sys_corr_9: 134.6572692794239 + sys_corr_10: 22.931060737663742 + sys_corr_11: 0.7727457890024667 + sys_corr_12: 17.220682941627658 + sys_corr_13: 3.2319732953927702 + sys_corr_14: 5.579593535141808 + sys_corr_15: -8.008139269093487 + sys_corr_16: 2.6075118165466424 + sys_corr_17: -3.7149653502962736 stat: 840.0 sys_uncorr: 410.0 sys_luminosity: 410.0 - sys_corr_1: 170.9841901664493 - sys_corr_2: -0.026103848890129833 - sys_corr_3: 0.8388935877727236 - sys_corr_4: -0.1585424569193971 - sys_corr_5: -7.686088601496055 - sys_corr_6: -312.89464528153286 - sys_corr_7: 45.64403119417231 - sys_corr_8: -2.353569361878126 - sys_corr_9: 14.661513900337011 - sys_corr_10: 5.310635571265402 - sys_corr_11: 1.1226938376382525 - sys_corr_12: 7.531732836038668 - sys_corr_13: -0.026383763879556692 - sys_corr_14: 0.46989097711180194 - sys_corr_15: -1.4929680267536425 - sys_corr_16: -2.418104184276685 - sys_corr_17: -1.782504225198852 + sys_corr_2: -0.026103848890141945 + sys_corr_3: 0.8388935877727252 + sys_corr_4: -0.1585424569194083 + sys_corr_5: -7.686088601496642 + sys_corr_6: -312.8946452815332 + sys_corr_7: 45.64403119417047 + sys_corr_8: -2.353569361878287 + sys_corr_9: 14.661513900337168 + sys_corr_10: 5.310635571265545 + sys_corr_11: 1.122693837638245 + sys_corr_12: 7.53173283603874 + sys_corr_13: -0.026383763879400342 + sys_corr_14: 0.4698909771119435 + sys_corr_15: -1.4929680267537562 + sys_corr_16: -2.4181041842768862 + sys_corr_17: -1.782504225198774 stat: 740.0 sys_uncorr: 370.0 sys_luminosity: 280.0 - sys_corr_1: 112.4445876097833 - sys_corr_2: -0.02001081207923981 - sys_corr_3: 0.7233944146206878 - sys_corr_4: -0.8221642663149805 - sys_corr_5: 255.71915486622981 - sys_corr_6: -6.580827749250083 - sys_corr_7: 14.670751862203666 - sys_corr_8: -2.024967251158449 - sys_corr_9: 8.382890165073439 - sys_corr_10: 2.1041028170697755 - sys_corr_11: -0.037684827375930874 - sys_corr_12: 3.7462311416642438 - sys_corr_13: 1.5481265721675743 - sys_corr_14: 2.887613221683238 - sys_corr_15: -0.752006242243227 - sys_corr_16: 0.04405391775208911 - sys_corr_17: -0.2278751926594693 + sys_corr_2: -0.020010812079248222 + sys_corr_3: 0.7233944146206855 + sys_corr_4: -0.8221642663149691 + sys_corr_5: 255.7191548662301 + sys_corr_6: -6.580827749250669 + sys_corr_7: 14.670751862204295 + sys_corr_8: -2.0249672511585564 + sys_corr_9: 8.382890165073489 + sys_corr_10: 2.1041028170697427 + sys_corr_11: -0.03768482737589176 + sys_corr_12: 3.7462311416642775 + sys_corr_13: 1.5481265721675506 + sys_corr_14: 2.8876132216832797 + sys_corr_15: -0.7520062422430991 + sys_corr_16: 0.04405391775219709 + sys_corr_17: -0.2278751926595178 stat: 640.0 sys_uncorr: 330.0 sys_luminosity: 170.0 - sys_corr_1: 29.373965827027657 - sys_corr_2: -0.04651578392999098 - sys_corr_3: -19.27984702541741 - sys_corr_4: 125.12370280021693 - sys_corr_5: 1.6967459971617307 - sys_corr_6: -0.42296928714318716 - sys_corr_7: 0.6655507728608699 - sys_corr_8: 0.34138605823747215 - sys_corr_9: 0.3964121982427 - sys_corr_10: -0.3317115188276328 - sys_corr_11: -1.6119645040254753 - sys_corr_12: 1.1449137792355535 - sys_corr_13: 0.8152428610292901 - sys_corr_14: -0.16932690079867316 - sys_corr_15: -0.6625284603442267 - sys_corr_16: -0.6594052342456855 - sys_corr_17: 0.39195384025849966 + sys_corr_2: -0.046515783930044276 + sys_corr_3: -19.279847025417364 + sys_corr_4: 125.12370280021695 + sys_corr_5: 1.6967459971616417 + sys_corr_6: -0.4229692871432171 + sys_corr_7: 0.6655507728609588 + sys_corr_8: 0.34138605823748375 + sys_corr_9: 0.39641219824271445 + sys_corr_10: -0.33171151882763444 + sys_corr_11: -1.6119645040254365 + sys_corr_12: 1.1449137792355444 + sys_corr_13: 0.8152428610292696 + sys_corr_14: -0.16932690079863721 + sys_corr_15: -0.6625284603442823 + sys_corr_16: -0.6594052342456883 + sys_corr_17: 0.39195384025846214 stat: 570.0 sys_uncorr: 280.0 sys_luminosity: 80.0 - sys_corr_1: 4.745524463989869 - sys_corr_2: 39.714243873087675 - sys_corr_3: 0.11467856265029407 - sys_corr_4: 0.16330339810470146 - sys_corr_5: 0.10973069162761893 - sys_corr_6: -0.18403364637516267 - sys_corr_7: -0.07140567568376409 - sys_corr_8: -0.09011276053275291 - sys_corr_9: -0.14446807093539132 - sys_corr_10: 0.002373457741132515 - sys_corr_11: 0.0788406078783652 - sys_corr_12: 0.18286863484359428 - sys_corr_13: -0.12063463840262045 - sys_corr_14: -0.20610854945213072 - sys_corr_15: -0.14569029972411918 - sys_corr_16: -0.059471901490271845 - sys_corr_17: -0.13249239099775542 + sys_corr_2: 39.7142438730885 + sys_corr_3: 0.11467856265026884 + sys_corr_4: 0.16330339810484787 + sys_corr_5: 0.1097306916273498 + sys_corr_6: -0.1840336463752876 + sys_corr_7: -0.0714056756833497 + sys_corr_8: -0.09011276053279414 + sys_corr_9: -0.14446807093539382 + sys_corr_10: 0.002373457741091191 + sys_corr_11: 0.07884060787827346 + sys_corr_12: 0.18286863484352212 + sys_corr_13: -0.12063463840253372 + sys_corr_14: -0.20610854945214868 + sys_corr_15: -0.14569029972433156 + sys_corr_16: -0.059471901490252665 + sys_corr_17: -0.13249239099771737 stat: 330.0 sys_uncorr: 160.0 sys_luminosity: 20.0 diff --git a/nnpdf_data/nnpdf_data/new_commondata/LHCB_Z0_8TEV_MUON/uncertainties.yaml b/nnpdf_data/nnpdf_data/new_commondata/LHCB_Z0_8TEV_MUON/uncertainties.yaml index 40f6848e0f..442a5e3f8d 100644 --- a/nnpdf_data/nnpdf_data/new_commondata/LHCB_Z0_8TEV_MUON/uncertainties.yaml +++ b/nnpdf_data/nnpdf_data/new_commondata/LHCB_Z0_8TEV_MUON/uncertainties.yaml @@ -149,668 +149,668 @@ definitions: type: LHCBLUMI8TEV bins: - sys_corr_1: -13.129371357446566 - sys_corr_2: 0.6853465481125789 - sys_corr_3: -1.8136153124139376 - sys_corr_4: -1.6378919565265173 - sys_corr_5: 1.0056447881503754 - sys_corr_6: 0.9250488794408771 - sys_corr_7: -0.6130610634103019 - sys_corr_8: -1.033777871097276 - sys_corr_9: 0.9022978319043655 - sys_corr_10: 0.5049756150293241 - sys_corr_11: -0.8765726686084679 - sys_corr_12: 0.5378206330642871 - sys_corr_13: -0.10895523093285057 - sys_corr_14: -0.4881555518108563 - sys_corr_15: -0.265568053839214 - sys_corr_16: 0.03401879609850996 - sys_corr_17: -11.515944076984733 - sys_corr_18: -9.94493656819381e-05 - sys_corr_19: -0.007574441556960995 - sys_corr_20: 0.0036078709274008384 - sys_corr_21: 0.054497988233331206 - sys_corr_22: -0.08061168467584123 - sys_corr_23: 0.2232461165909764 - sys_corr_24: 5.565016708385234 - sys_corr_25: 0.2609714050586262 - sys_corr_26: -39.974071914597864 - sys_corr_27: -27.943155261002897 - sys_corr_28: -16.32894214901613 - sys_corr_29: -4.436995222440807 - sys_corr_30: -0.8115865284675327 - sys_corr_31: -0.3755659425689436 - sys_corr_32: 1.9696013567201123 - sys_corr_33: -2.6324056596660883 - sys_corr_34: -0.1664720974747847 + sys_corr_2: 0.6853465481127958 + sys_corr_3: -1.8136153124140044 + sys_corr_4: -1.6378919565260077 + sys_corr_5: 1.0056447881502208 + sys_corr_6: 0.9250488794404468 + sys_corr_7: -0.6130610634103546 + sys_corr_8: -1.0337778710980714 + sys_corr_9: 0.9022978319046373 + sys_corr_10: 0.5049756150293242 + sys_corr_11: -0.8765726686085896 + sys_corr_12: 0.5378206330645783 + sys_corr_13: -0.10895523093283618 + sys_corr_14: -0.48815555181063336 + sys_corr_15: -0.26556805383949933 + sys_corr_16: 0.03401879609859952 + sys_corr_17: -11.515944076989122 + sys_corr_18: -9.944936568212495e-05 + sys_corr_19: -0.007574441556954944 + sys_corr_20: 0.0036078709273934776 + sys_corr_21: 0.05449798823331223 + sys_corr_22: -0.08061168467580225 + sys_corr_23: 0.2232461165908627 + sys_corr_24: 5.565016708385976 + sys_corr_25: 0.2609714050579445 + sys_corr_26: -39.97407191458968 + sys_corr_27: -27.943155261017633 + sys_corr_28: -16.32894214901788 + sys_corr_29: -4.436995222441291 + sys_corr_30: -0.8115865284667331 + sys_corr_31: -0.37556594257327414 + sys_corr_32: 1.9696013567173964 + sys_corr_33: -2.632405659665658 + sys_corr_34: -0.16647209735490842 stat: 33.0 sys_beam: 14.0 sys_luminosity: 14.0 -- sys_corr_1: -19.84410989915685 - sys_corr_2: -0.33428052767614547 - sys_corr_3: 2.6709227371602084 - sys_corr_4: -1.122291532865575 - sys_corr_5: 2.2445396406954448 - sys_corr_6: 1.2318412040028195 - sys_corr_7: -0.9643207591596343 - sys_corr_8: -2.2908607279681825 - sys_corr_9: 1.134280089906541 - sys_corr_10: -0.8548057471102127 - sys_corr_11: -1.796249557177666 - sys_corr_12: -0.07911083910570488 - sys_corr_13: -0.472951502025977 - sys_corr_14: 0.2558186095238292 - sys_corr_15: -0.3882769649810862 - sys_corr_16: -0.06521893670249582 - sys_corr_17: -20.03065356651147 - sys_corr_18: -5.938906840067905e-05 - sys_corr_19: -0.005317597654044067 - sys_corr_20: -0.012280961378499562 - sys_corr_21: 0.04723338963268214 - sys_corr_22: 0.08725074045417443 - sys_corr_23: -0.2200826518235283 - sys_corr_24: 10.334303066975695 - sys_corr_25: -1.8910305617977035 - sys_corr_26: 31.412187227642292 - sys_corr_27: -31.612351485478605 - sys_corr_28: -24.0763415362685 - sys_corr_29: -7.556695045723271 - sys_corr_30: 1.0636142561345379 - sys_corr_31: 1.678562392078886 - sys_corr_32: 3.831782907879968 - sys_corr_33: -4.904694970016218 - sys_corr_34: -1.4462770772783355 +- sys_corr_1: -19.84410989915686 + sys_corr_2: -0.33428052767624017 + sys_corr_3: 2.670922737160205 + sys_corr_4: -1.1222915328655707 + sys_corr_5: 2.2445396406956237 + sys_corr_6: 1.2318412040026738 + sys_corr_7: -0.9643207591596933 + sys_corr_8: -2.290860727968255 + sys_corr_9: 1.1342800899064787 + sys_corr_10: -0.8548057471102758 + sys_corr_11: -1.7962495571776689 + sys_corr_12: -0.07911083910584618 + sys_corr_13: -0.4729515020260823 + sys_corr_14: 0.2558186095239544 + sys_corr_15: -0.3882769649812642 + sys_corr_16: -0.0652189367024966 + sys_corr_17: -20.03065356651135 + sys_corr_18: -5.9389068400393175e-05 + sys_corr_19: -0.005317597654028506 + sys_corr_20: -0.012280961378434697 + sys_corr_21: 0.04723338963266031 + sys_corr_22: 0.08725074045398798 + sys_corr_23: -0.22008265182366893 + sys_corr_24: 10.334303066977842 + sys_corr_25: -1.8910305617960286 + sys_corr_26: 31.412187227654297 + sys_corr_27: -31.612351485476285 + sys_corr_28: -24.076341536265016 + sys_corr_29: -7.556695045725688 + sys_corr_30: 1.0636142561363102 + sys_corr_31: 1.6785623920713753 + sys_corr_32: 3.8317829078782055 + sys_corr_33: -4.904694970048211 + sys_corr_34: -1.4462770770535842 stat: 51.0 sys_beam: 38.0 sys_luminosity: 38.0 - sys_corr_1: -21.06803631144305 - sys_corr_2: -2.8187263609581716 - sys_corr_3: 7.429751053129648 - sys_corr_4: -1.2363854092311348 - sys_corr_5: 0.440020299276015 - sys_corr_6: 0.8285805636548081 - sys_corr_7: -0.1833307684413444 - sys_corr_8: -1.8866832461202852 - sys_corr_9: 1.0748601041255013 - sys_corr_10: -0.9841457536126791 - sys_corr_11: -2.2265738633784835 - sys_corr_12: -0.5655169182098072 - sys_corr_13: -0.4881568704060051 - sys_corr_14: -0.782035779352363 - sys_corr_15: -0.05919509595153284 - sys_corr_16: -1.1097250976141622 - sys_corr_17: -24.699858197476445 - sys_corr_18: -3.105265932964177e-05 - sys_corr_19: 0.0027633726426610577 - sys_corr_20: -0.01714976905989588 - sys_corr_21: 0.03260600131367636 - sys_corr_22: -0.02846572509875826 - sys_corr_23: -0.1467691264227021 - sys_corr_24: 12.565805182397174 - sys_corr_25: 0.625615759576152 - sys_corr_26: -3.5879461032450957 - sys_corr_27: 31.925361874882043 - sys_corr_28: -40.75747797840909 - sys_corr_29: -8.403699350561684 - sys_corr_30: -2.1525840708834774 - sys_corr_31: 1.1118986638848498 - sys_corr_32: 3.4014199295399585 - sys_corr_33: -4.750919333226475 - sys_corr_34: -1.0948035576743735 + sys_corr_2: -2.8187263609581037 + sys_corr_3: 7.429751053129757 + sys_corr_4: -1.236385409231223 + sys_corr_5: 0.4400202992760449 + sys_corr_6: 0.8285805636546832 + sys_corr_7: -0.18333076844149918 + sys_corr_8: -1.8866832461204062 + sys_corr_9: 1.0748601041254102 + sys_corr_10: -0.9841457536126821 + sys_corr_11: -2.2265738633786056 + sys_corr_12: -0.5655169182096085 + sys_corr_13: -0.4881568704060237 + sys_corr_14: -0.7820357793522866 + sys_corr_15: -0.0591950959516241 + sys_corr_16: -1.1097250976141682 + sys_corr_17: -24.699858197477425 + sys_corr_18: -3.105265933150413e-05 + sys_corr_19: 0.0027633726426110903 + sys_corr_20: -0.01714976905984696 + sys_corr_21: 0.03260600131360796 + sys_corr_22: -0.02846572509880877 + sys_corr_23: -0.14676912642260082 + sys_corr_24: 12.565805182401665 + sys_corr_25: 0.6256157595772878 + sys_corr_26: -3.587946103250402 + sys_corr_27: 31.925361874872813 + sys_corr_28: -40.75747797841242 + sys_corr_29: -8.403699350568834 + sys_corr_30: -2.1525840708785995 + sys_corr_31: 1.1118986638849773 + sys_corr_32: 3.4014199295339713 + sys_corr_33: -4.750919333246441 + sys_corr_34: -1.0948035574690989 stat: 62.0 sys_beam: 57.0 sys_luminosity: 58.0 -- sys_corr_1: -23.338793935211896 - sys_corr_2: -5.015020292076225 - sys_corr_3: 8.195207361706466 - sys_corr_4: -3.6167946329492535 - sys_corr_5: -1.5375896951455132 - sys_corr_6: -0.5055645332316372 - sys_corr_7: -0.1656605444022098 - sys_corr_8: -1.3674236995197913 - sys_corr_9: 0.9863174769320691 - sys_corr_10: -0.11689147629752011 - sys_corr_11: -2.76279796378281 - sys_corr_12: -0.7334770006813159 - sys_corr_13: -0.39710202721088006 - sys_corr_14: -0.9513343420516247 - sys_corr_15: -0.5236614050232143 - sys_corr_16: 0.14328103033362025 - sys_corr_17: -33.108074461181786 - sys_corr_18: -1.1676986084828315e-05 - sys_corr_19: -0.005199428393585041 - sys_corr_20: 0.0030204570342489963 - sys_corr_21: 0.04012076569205404 - sys_corr_22: 0.003803307862097004 - sys_corr_23: 0.13823101139063843 - sys_corr_24: 20.18490057862894 - sys_corr_25: 0.783534475773199 - sys_corr_26: -1.5428612589110309 - sys_corr_27: 2.9113392297877394 - sys_corr_28: 19.877343744892453 - sys_corr_29: -18.817522495155952 - sys_corr_30: 5.171011463669989 - sys_corr_31: 3.266548144634222 - sys_corr_32: 45.33543603498649 - sys_corr_33: -6.762197324713448 - sys_corr_34: -10.777895659545207 +- sys_corr_1: -23.3387939352119 + sys_corr_2: -5.015020292076104 + sys_corr_3: 8.195207361706753 + sys_corr_4: -3.6167946329495297 + sys_corr_5: -1.5375896951453918 + sys_corr_6: -0.5055645332316405 + sys_corr_7: -0.16566054440242206 + sys_corr_8: -1.3674236995198723 + sys_corr_9: 0.9863174769321807 + sys_corr_10: -0.1168914762976303 + sys_corr_11: -2.7627979637828908 + sys_corr_12: -0.7334770006814376 + sys_corr_13: -0.3971020272104272 + sys_corr_14: -0.95133434205179 + sys_corr_15: -0.5236614050232826 + sys_corr_16: 0.14328103033375855 + sys_corr_17: -33.10807446118345 + sys_corr_18: -1.1676986085192038e-05 + sys_corr_19: -0.005199428393547465 + sys_corr_20: 0.0030204570342204614 + sys_corr_21: 0.04012076569198424 + sys_corr_22: 0.0038033078620872446 + sys_corr_23: 0.13823101139046734 + sys_corr_24: 20.184900578635258 + sys_corr_25: 0.7835344757729851 + sys_corr_26: -1.5428612589179613 + sys_corr_27: 2.9113392297959284 + sys_corr_28: 19.877343744885955 + sys_corr_29: -18.81752249516219 + sys_corr_30: 5.17101146368958 + sys_corr_31: 3.2665481446177567 + sys_corr_32: 45.33543603498056 + sys_corr_33: -6.7621973249488265 + sys_corr_34: -10.777895659172056 stat: 70.0 sys_beam: 77.0 sys_luminosity: 78.0 - sys_corr_1: -23.62879238801978 - sys_corr_2: -6.871934369335336 - sys_corr_3: 8.838236802397901 - sys_corr_4: -5.75372720918565 - sys_corr_5: -1.5402984336354577 - sys_corr_6: -0.3451192706498088 - sys_corr_7: 0.413105816684792 - sys_corr_8: 0.5073510714926635 - sys_corr_9: 1.5788941118756248 - sys_corr_10: 0.7607246969863836 - sys_corr_11: -2.673007365634146 - sys_corr_12: -1.2417474817490068 - sys_corr_13: -0.7432869137172015 - sys_corr_14: -0.598997451623972 - sys_corr_15: -0.06637383592033852 - sys_corr_16: 0.741162658809314 - sys_corr_17: -36.499510974556024 - sys_corr_18: 5.846611289286119e-06 - sys_corr_19: -0.0001752413952545087 - sys_corr_20: -0.008085268741514851 - sys_corr_21: 0.05044391052283411 - sys_corr_22: -0.15328563391070796 - sys_corr_23: 0.49110134937679384 - sys_corr_24: 17.63914440713869 - sys_corr_25: 1.5555770256950772 - sys_corr_26: -0.29419626869461024 - sys_corr_27: 1.4513100444746851 - sys_corr_28: 12.997331532175536 - sys_corr_29: -22.22192546156861 - sys_corr_30: 7.42411526077336 - sys_corr_31: -10.124571665104387 - sys_corr_32: -22.849337902782768 - sys_corr_33: -10.788104366418192 - sys_corr_34: 40.447688777367155 + sys_corr_2: -6.87193436933576 + sys_corr_3: 8.83823680239778 + sys_corr_4: -5.7537272091857865 + sys_corr_5: -1.5402984336350092 + sys_corr_6: -0.34511927064998793 + sys_corr_7: 0.41310581668467056 + sys_corr_8: 0.5073510714925774 + sys_corr_9: 1.5788941118756097 + sys_corr_10: 0.7607246969862658 + sys_corr_11: -2.673007365634023 + sys_corr_12: -1.2417474817491765 + sys_corr_13: -0.7432869137170354 + sys_corr_14: -0.5989974516236286 + sys_corr_15: -0.06637383592029723 + sys_corr_16: 0.7411626588091698 + sys_corr_17: -36.49951097455011 + sys_corr_18: 5.846611291372814e-06 + sys_corr_19: -0.00017524139523300978 + sys_corr_20: -0.00808526874152184 + sys_corr_21: 0.05044391052297366 + sys_corr_22: -0.15328563391067396 + sys_corr_23: 0.49110134937745753 + sys_corr_24: 17.639144407135866 + sys_corr_25: 1.555577025693582 + sys_corr_26: -0.2941962686942436 + sys_corr_27: 1.4513100444743 + sys_corr_28: 12.997331532179793 + sys_corr_29: -22.221925461567245 + sys_corr_30: 7.42411526075697 + sys_corr_31: -10.124571665101879 + sys_corr_32: -22.849337902785333 + sys_corr_33: -10.788104365353474 + sys_corr_34: 40.44768877782353 stat: 76.0 sys_beam: 93.0 sys_luminosity: 94.0 - sys_corr_1: -23.305638822180896 - sys_corr_2: -7.8937366993396365 - sys_corr_3: 9.253795984805592 - sys_corr_4: -7.241905559104537 + sys_corr_2: -7.893736699339743 + sys_corr_3: 9.253795984805567 + sys_corr_4: -7.241905559104666 sys_corr_5: -1.9123722247234651 - sys_corr_6: 0.5912138549587218 - sys_corr_7: 0.0465224938402271 - sys_corr_8: 0.7199048005800637 - sys_corr_9: 1.828692488405049 - sys_corr_10: 2.1832257020458705 - sys_corr_11: -2.015036523294676 - sys_corr_12: -1.8353749829104327 - sys_corr_13: 0.0015187347231060773 - sys_corr_14: -0.48209896219515624 - sys_corr_15: 1.213798569671312 - sys_corr_16: 1.1211154805244627 - sys_corr_17: -36.92425033443672 - sys_corr_18: 1.4188601727116922e-05 - sys_corr_19: -0.008850403418020465 - sys_corr_20: -0.02487825307330309 - sys_corr_21: 0.09023808536309276 - sys_corr_22: -0.21273521070752027 - sys_corr_23: 0.568346566723835 - sys_corr_24: 9.560426327356453 - sys_corr_25: 1.6835388239353692 - sys_corr_26: -0.6834505876496619 - sys_corr_27: 0.6825047572018638 - sys_corr_28: 7.890847045554724 - sys_corr_29: -14.45530599394527 - sys_corr_30: 10.42790997030499 - sys_corr_31: -2.6562075756183785 - sys_corr_32: -29.80150469584712 - sys_corr_33: 18.833535008874055 - sys_corr_34: -40.257082690578 + sys_corr_6: 0.5912138549585202 + sys_corr_7: 0.046522493839806764 + sys_corr_8: 0.7199048005799586 + sys_corr_9: 1.828692488405099 + sys_corr_10: 2.1832257020459434 + sys_corr_11: -2.0150365232945977 + sys_corr_12: -1.8353749829105612 + sys_corr_13: 0.001518734723146232 + sys_corr_14: -0.4820989621950967 + sys_corr_15: 1.213798569671235 + sys_corr_16: 1.121115480524444 + sys_corr_17: -36.92425033443776 + sys_corr_18: 1.4188601726670624e-05 + sys_corr_19: -0.008850403418067134 + sys_corr_20: -0.024878253073439608 + sys_corr_21: 0.09023808536291997 + sys_corr_22: -0.21273521070741153 + sys_corr_23: 0.5683465667238542 + sys_corr_24: 9.560426327355785 + sys_corr_25: 1.6835388239352824 + sys_corr_26: -0.6834505876518351 + sys_corr_27: 0.6825047572020109 + sys_corr_28: 7.890847045559323 + sys_corr_29: -14.455305993927523 + sys_corr_30: 10.42790997028791 + sys_corr_31: -2.6562075756908268 + sys_corr_32: -29.801504695845157 + sys_corr_33: 18.833535007792904 + sys_corr_34: -40.25708269143495 stat: 79.0 sys_beam: 103.0 sys_luminosity: 105.0 -- sys_corr_1: -23.122870553655478 - sys_corr_2: -8.472992295351233 - sys_corr_3: 9.978884071326496 - sys_corr_4: -8.191892596977262 - sys_corr_5: -2.170985058688932 - sys_corr_6: 1.1927202283582423 - sys_corr_7: 1.027768527951832 - sys_corr_8: 1.3222563308413176 - sys_corr_9: 0.3390668514570481 - sys_corr_10: 2.5599804325753284 - sys_corr_11: -1.6074832724593935 - sys_corr_12: -1.6149874429471374 - sys_corr_13: -0.18163026461144396 - sys_corr_14: -1.317510032846632 - sys_corr_15: 1.2937203505127906 - sys_corr_16: 0.4372359769181125 - sys_corr_17: -39.002034940744274 - sys_corr_18: 1.5486962831135256e-05 - sys_corr_19: -0.006718922393629441 - sys_corr_20: -0.018187853006976003 - sys_corr_21: 0.059586532298960715 - sys_corr_22: -0.29423833975817293 - sys_corr_23: 0.8058671737702604 - sys_corr_24: 7.740143059284684 - sys_corr_25: 2.274379055527933 - sys_corr_26: -0.94388224336938 - sys_corr_27: 0.23546915242985275 - sys_corr_28: 4.67316228570499 - sys_corr_29: 31.63416661772606 - sys_corr_30: 4.348764566808575 - sys_corr_31: 47.20725640418786 - sys_corr_32: -6.675227803548107 - sys_corr_33: -7.705400923277242 - sys_corr_34: 4.070133302521287 +- sys_corr_1: -23.122870553655485 + sys_corr_2: -8.47299229535122 + sys_corr_3: 9.978884071326535 + sys_corr_4: -8.191892596977446 + sys_corr_5: -2.170985058688854 + sys_corr_6: 1.1927202283582248 + sys_corr_7: 1.027768527951745 + sys_corr_8: 1.3222563308413293 + sys_corr_9: 0.33906685145682963 + sys_corr_10: 2.5599804325752222 + sys_corr_11: -1.6074832724595463 + sys_corr_12: -1.6149874429471522 + sys_corr_13: -0.1816302646114862 + sys_corr_14: -1.3175100328466482 + sys_corr_15: 1.2937203505127026 + sys_corr_16: 0.43723597691800703 + sys_corr_17: -39.00203494074587 + sys_corr_18: 1.5486962829685152e-05 + sys_corr_19: -0.006718922393631411 + sys_corr_20: -0.01818785300696696 + sys_corr_21: 0.05958653229899917 + sys_corr_22: -0.29423833975824465 + sys_corr_23: 0.8058671737702581 + sys_corr_24: 7.740143059282549 + sys_corr_25: 2.2743790555258894 + sys_corr_26: -0.9438822433707657 + sys_corr_27: 0.23546915242928015 + sys_corr_28: 4.6731622857077495 + sys_corr_29: 31.634166617711443 + sys_corr_30: 4.348764566820343 + sys_corr_31: 47.20725640422164 + sys_corr_32: -6.675227803551185 + sys_corr_33: -7.705400923214566 + sys_corr_34: 4.070133302804576 stat: 81.0 sys_beam: 110.0 sys_luminosity: 112.0 - sys_corr_1: -20.85999640061773 - sys_corr_2: -8.242540680871082 - sys_corr_3: 8.961204056550143 - sys_corr_4: -8.614385898951557 - sys_corr_5: -2.306048360098447 - sys_corr_6: 1.3799189252318764 - sys_corr_7: 1.763104057565564 - sys_corr_8: 1.2044387625997617 - sys_corr_9: -0.029223529687805137 - sys_corr_10: 3.0215802371301006 - sys_corr_11: -1.4142992542156707 - sys_corr_12: -1.1889723630536118 - sys_corr_13: 0.9257611979897812 - sys_corr_14: -0.6372331880602672 - sys_corr_15: 0.3263646033902244 - sys_corr_16: 0.8296699988914757 - sys_corr_17: -34.31148751935087 - sys_corr_18: 2.223371222085629e-05 - sys_corr_19: -0.004079579657142941 - sys_corr_20: -0.04109755671287726 - sys_corr_21: 0.12179926772253029 - sys_corr_22: -0.4318081034916117 - sys_corr_23: 1.2383669027745627 - sys_corr_24: -0.555349911332747 - sys_corr_25: 3.847663593630981 - sys_corr_26: 1.214500716621149 - sys_corr_27: -1.0896588789845654 - sys_corr_28: 5.220822383009355 - sys_corr_29: 4.056607732576169 - sys_corr_30: -53.73393248419216 - sys_corr_31: -5.961938629073214 - sys_corr_32: 0.1723904768898964 - sys_corr_33: 13.699964798406059 - sys_corr_34: 2.433988171680721 + sys_corr_2: -8.242540680871144 + sys_corr_3: 8.96120405655017 + sys_corr_4: -8.61438589895173 + sys_corr_5: -2.3060483600982833 + sys_corr_6: 1.3799189252317385 + sys_corr_7: 1.7631040575653907 + sys_corr_8: 1.2044387625997117 + sys_corr_9: -0.029223529687890985 + sys_corr_10: 3.021580237130118 + sys_corr_11: -1.4142992542157862 + sys_corr_12: -1.1889723630536422 + sys_corr_13: 0.9257611979898691 + sys_corr_14: -0.6372331880602367 + sys_corr_15: 0.32636460339014195 + sys_corr_16: 0.8296699988914852 + sys_corr_17: -34.31148751935037 + sys_corr_18: 2.223371222016921e-05 + sys_corr_19: -0.00407957965719388 + sys_corr_20: -0.04109755671291763 + sys_corr_21: 0.12179926772246472 + sys_corr_22: -0.4318081034915585 + sys_corr_23: 1.238366902774607 + sys_corr_24: -0.5553499113329405 + sys_corr_25: 3.8476635936335404 + sys_corr_26: 1.2145007166214323 + sys_corr_27: -1.0896588789833546 + sys_corr_28: 5.220822383001981 + sys_corr_29: 4.056607732583745 + sys_corr_30: -53.73393248419466 + sys_corr_31: -5.961938629063152 + sys_corr_32: 0.17239047689188644 + sys_corr_33: 13.699964798469713 + sys_corr_34: 2.4339881710835924 stat: 82.0 sys_beam: 113.0 sys_luminosity: 115.0 - sys_corr_1: -20.223983250604604 - sys_corr_2: -8.154175836436359 - sys_corr_3: 9.26327356637858 - sys_corr_4: -9.718752686919935 - sys_corr_5: -2.815203846765515 - sys_corr_6: 1.8702305366091985 - sys_corr_7: 1.6422084351635182 - sys_corr_8: -0.16224786719614528 - sys_corr_9: -0.22452711746931522 - sys_corr_10: 3.572768532873175 - sys_corr_11: -1.807628621364004 - sys_corr_12: -0.9629409377418384 - sys_corr_13: 0.5171356641657681 - sys_corr_14: -0.6176549011257892 - sys_corr_15: 0.29396865202369565 - sys_corr_16: 0.19228110231051582 - sys_corr_17: -35.97332885136173 - sys_corr_18: 2.1030318953479127e-05 - sys_corr_19: -0.01573421063351599 - sys_corr_20: -0.03959349841824993 - sys_corr_21: 0.20298279711011666 - sys_corr_22: -0.43673348436197756 - sys_corr_23: 1.222881890842337 - sys_corr_24: -8.050128059309468 - sys_corr_25: 3.706780158719833 - sys_corr_26: 0.2856448791722523 - sys_corr_27: 0.3134908927527956 - sys_corr_28: 1.8316820476472904 - sys_corr_29: 32.11772042509791 - sys_corr_30: 6.0053293548508035 - sys_corr_31: -35.91989545508118 - sys_corr_32: -0.02011206044083529 - sys_corr_33: -30.62631510390598 - sys_corr_34: -10.705014255279856 + sys_corr_2: -8.154175836436291 + sys_corr_3: 9.263273566378606 + sys_corr_4: -9.71875268691994 + sys_corr_5: -2.815203846765317 + sys_corr_6: 1.8702305366092413 + sys_corr_7: 1.642208435163437 + sys_corr_8: -0.16224786719629844 + sys_corr_9: -0.22452711746936563 + sys_corr_10: 3.5727685328730914 + sys_corr_11: -1.807628621364124 + sys_corr_12: -0.9629409377418926 + sys_corr_13: 0.517135664165866 + sys_corr_14: -0.6176549011257119 + sys_corr_15: 0.29396865202352723 + sys_corr_16: 0.19228110231040307 + sys_corr_17: -35.973328851362034 + sys_corr_18: 2.1030318953412103e-05 + sys_corr_19: -0.01573421063352595 + sys_corr_20: -0.039593498418252014 + sys_corr_21: 0.20298279711025685 + sys_corr_22: -0.43673348436206993 + sys_corr_23: 1.2228818908422694 + sys_corr_24: -8.050128059316727 + sys_corr_25: 3.7067801587189875 + sys_corr_26: 0.28564487917183234 + sys_corr_27: 0.31349089275246217 + sys_corr_28: 1.831682047649197 + sys_corr_29: 32.11772042510084 + sys_corr_30: 6.005329354848032 + sys_corr_31: -35.91989545505611 + sys_corr_32: -0.020112060445741164 + sys_corr_33: -30.626315104189313 + sys_corr_34: -10.705014253933214 stat: 81.0 sys_beam: 112.0 sys_luminosity: 114.0 - sys_corr_1: -17.04123512385607 - sys_corr_2: -7.918393116785677 + sys_corr_2: -7.918393116785631 sys_corr_3: 8.440143768234751 - sys_corr_4: -10.024020107965285 - sys_corr_5: -2.6847034507320844 - sys_corr_6: 2.0671669249445555 - sys_corr_7: 1.837279687306533 - sys_corr_8: 0.3650568659958519 - sys_corr_9: -0.4904354192346455 - sys_corr_10: 3.0568684568954443 - sys_corr_11: -1.0638801573487726 - sys_corr_12: -1.3582456192662984 - sys_corr_13: 0.07169286786156893 - sys_corr_14: -0.2199043557753311 - sys_corr_15: 1.5744304454334228 - sys_corr_16: -0.0013292406672338916 - sys_corr_17: -32.11721511436332 - sys_corr_18: 1.563925464777089e-05 - sys_corr_19: -0.01602557329814359 - sys_corr_20: -0.06980990577079062 - sys_corr_21: 0.2132859532473274 - sys_corr_22: -0.6435224332446 - sys_corr_23: 1.9689443448390334 - sys_corr_24: -12.899652788631762 - sys_corr_25: 5.004417879944764 - sys_corr_26: 0.4905581183348719 - sys_corr_27: -0.6767901157597395 - sys_corr_28: -5.192725175071233 - sys_corr_29: 15.90697875227382 - sys_corr_30: 20.16293066600603 - sys_corr_31: -11.987331589786724 - sys_corr_32: 14.255145302365655 - sys_corr_33: 43.78533937999355 - sys_corr_34: 17.535461370942752 + sys_corr_4: -10.02402010796554 + sys_corr_5: -2.6847034507324383 + sys_corr_6: 2.0671669249447975 + sys_corr_7: 1.8372796873063746 + sys_corr_8: 0.3650568659958692 + sys_corr_9: -0.4904354192348276 + sys_corr_10: 3.05686845689522 + sys_corr_11: -1.0638801573489338 + sys_corr_12: -1.3582456192661916 + sys_corr_13: 0.07169286786152647 + sys_corr_14: -0.21990435577551373 + sys_corr_15: 1.5744304454331313 + sys_corr_16: -0.0013292406671437558 + sys_corr_17: -32.11721511436324 + sys_corr_18: 1.5639254649312342e-05 + sys_corr_19: -0.016025573298138807 + sys_corr_20: -0.06980990577079971 + sys_corr_21: 0.21328595324743183 + sys_corr_22: -0.643522433244859 + sys_corr_23: 1.968944344838717 + sys_corr_24: -12.899652788634423 + sys_corr_25: 5.004417879945517 + sys_corr_26: 0.4905581183344178 + sys_corr_27: -0.6767901157589093 + sys_corr_28: -5.192725175070102 + sys_corr_29: 15.906978752284262 + sys_corr_30: 20.162930666008716 + sys_corr_31: -11.987331589746674 + sys_corr_32: 14.255145302388717 + sys_corr_33: 43.78533938046681 + sys_corr_34: 17.535461369051525 stat: 78.0 sys_beam: 104.0 sys_luminosity: 105.0 - sys_corr_1: -14.949658691661552 - sys_corr_2: -7.165496747473827 - sys_corr_3: 7.808477726717307 - sys_corr_4: -9.56305409326678 - sys_corr_5: -2.670729336856583 - sys_corr_6: 1.870910013082464 - sys_corr_7: 1.1343784857727517 - sys_corr_8: 0.5731050576349122 - sys_corr_9: -0.8237338552005756 - sys_corr_10: 3.4751925833597936 - sys_corr_11: -0.13851422837746447 - sys_corr_12: -0.10023616022750506 - sys_corr_13: -0.297566757573512 - sys_corr_14: -0.01650093308831284 - sys_corr_15: 0.6964491524517722 - sys_corr_16: 0.020654173191060936 - sys_corr_17: -29.914143247343116 - sys_corr_18: -2.595663656276923e-06 - sys_corr_19: -0.020768693638988766 - sys_corr_20: -0.05834119476442283 - sys_corr_21: 0.19884628619594974 - sys_corr_22: -0.6436033819979039 - sys_corr_23: 1.6165938253859384 - sys_corr_24: -56.831154776699634 - sys_corr_25: 4.207755805618636 - sys_corr_26: 0.13546165938685006 - sys_corr_27: 0.16794567880689754 - sys_corr_28: -1.254823525202448 - sys_corr_29: -23.915653026107577 - sys_corr_30: 1.316650496021619 - sys_corr_31: 12.59376213706475 - sys_corr_32: 1.475379610059091 - sys_corr_33: -11.882612801600084 - sys_corr_34: -0.6558219368176063 + sys_corr_2: -7.165496747473771 + sys_corr_3: 7.808477726717344 + sys_corr_4: -9.563054093266855 + sys_corr_5: -2.670729336856341 + sys_corr_6: 1.8709100130824086 + sys_corr_7: 1.1343784857725923 + sys_corr_8: 0.5731050576348673 + sys_corr_9: -0.8237338552006473 + sys_corr_10: 3.4751925833597106 + sys_corr_11: -0.13851422837760224 + sys_corr_12: -0.1002361602275918 + sys_corr_13: -0.29756675757365736 + sys_corr_14: -0.016500933088201893 + sys_corr_15: 0.6964491524516614 + sys_corr_16: 0.020654173191049223 + sys_corr_17: -29.91414324734268 + sys_corr_18: -2.595663657424141e-06 + sys_corr_19: -0.020768693638998827 + sys_corr_20: -0.05834119476429439 + sys_corr_21: 0.1988462861961116 + sys_corr_22: -0.6436033819980002 + sys_corr_23: 1.6165938253859975 + sys_corr_24: -56.83115477669559 + sys_corr_25: 4.207755805619209 + sys_corr_26: 0.13546165938649402 + sys_corr_27: 0.16794567880708108 + sys_corr_28: -1.2548235252022757 + sys_corr_29: -23.91565302611887 + sys_corr_30: 1.316650496023731 + sys_corr_31: 12.59376213704475 + sys_corr_32: 1.4753796100520011 + sys_corr_33: -11.882612801608257 + sys_corr_34: -0.6558219362974327 stat: 72.0 sys_beam: 89.0 sys_luminosity: 90.0 - sys_corr_1: -9.14904976731458 - sys_corr_2: -4.972284733299394 - sys_corr_3: 4.934501253783746 - sys_corr_4: -7.146715955712768 - sys_corr_5: -2.4806832426488516 - sys_corr_6: 1.6716036517481274 - sys_corr_7: 0.3731925008926304 - sys_corr_8: 0.46906925363558766 - sys_corr_9: -1.0870814502316777 - sys_corr_10: 2.1864260496234604 - sys_corr_11: -0.08527632330590701 - sys_corr_12: -0.012526363709937075 - sys_corr_13: 0.424383407931963 - sys_corr_14: -0.13456579621486817 - sys_corr_15: 0.479004540879783 - sys_corr_16: -0.15340419169042 - sys_corr_17: -14.879810632978513 - sys_corr_18: -0.00024564680501881395 - sys_corr_19: -0.0454435934292143 - sys_corr_20: -0.12517695573643947 - sys_corr_21: 0.4495879379661885 - sys_corr_22: -1.2047889254655135 - sys_corr_23: 6.991666808010768 - sys_corr_24: -5.151973939331355 - sys_corr_25: -45.641593280488614 - sys_corr_26: -1.3784434779206556 - sys_corr_27: 1.565294265899055 - sys_corr_28: 1.4093209031809397 - sys_corr_29: 2.3280091228437603 - sys_corr_30: -0.7987670255568619 - sys_corr_31: -1.492549105845241 - sys_corr_32: 0.1634737023690217 - sys_corr_33: 2.02289736511137 - sys_corr_34: 1.008066369978752 + sys_corr_2: -4.972284733299384 + sys_corr_3: 4.934501253783764 + sys_corr_4: -7.1467159557128515 + sys_corr_5: -2.4806832426487455 + sys_corr_6: 1.671603651748121 + sys_corr_7: 0.37319250089257 + sys_corr_8: 0.46906925363561475 + sys_corr_9: -1.087081450231521 + sys_corr_10: 2.1864260496234404 + sys_corr_11: -0.08527632330582598 + sys_corr_12: -0.012526363709998182 + sys_corr_13: 0.4243834079319793 + sys_corr_14: -0.13456579621495254 + sys_corr_15: 0.4790045408796148 + sys_corr_16: -0.15340419169045127 + sys_corr_17: -14.879810632978376 + sys_corr_18: -0.0002456468050200248 + sys_corr_19: -0.0454435934292203 + sys_corr_20: -0.12517695573626986 + sys_corr_21: 0.44958793796615887 + sys_corr_22: -1.204788925464909 + sys_corr_23: 6.991666808010446 + sys_corr_24: -5.151973939331509 + sys_corr_25: -45.64159328048806 + sys_corr_26: -1.3784434779208112 + sys_corr_27: 1.5652942658997 + sys_corr_28: 1.409320903180425 + sys_corr_29: 2.3280091228430235 + sys_corr_30: -0.7987670255571896 + sys_corr_31: -1.4925491058413183 + sys_corr_32: 0.16347370237198558 + sys_corr_33: 2.0228973651373496 + sys_corr_34: 1.0080663698904977 stat: 63.0 sys_beam: 70.0 sys_luminosity: 71.0 - sys_corr_1: -6.326085258885516 - sys_corr_2: -3.439415506883048 - sys_corr_3: 3.3413277376739843 - sys_corr_4: -5.541898966162248 - sys_corr_5: -1.666176480784771 - sys_corr_6: 0.979375217874185 - sys_corr_7: 0.0002485455875154854 - sys_corr_8: -0.08187806243705073 - sys_corr_9: -0.43331484389360025 - sys_corr_10: 1.7688356519672581 - sys_corr_11: 0.16738920479722036 - sys_corr_12: 0.11055325680962605 - sys_corr_13: 0.4269058132515623 - sys_corr_14: -0.1138800538385906 - sys_corr_15: 0.9613977606946876 - sys_corr_16: -0.013820528956704024 - sys_corr_17: -9.506358516911547 - sys_corr_18: -0.000322491958865001 - sys_corr_19: -0.04499426072423848 - sys_corr_20: -0.13755544896289332 - sys_corr_21: 0.5827172665108897 - sys_corr_22: -1.9470722746536389 - sys_corr_23: -37.513389438295306 - sys_corr_24: -3.666147114225558 - sys_corr_25: -7.529167532066956 - sys_corr_26: -0.6017477237226491 - sys_corr_27: 0.16993176961810133 - sys_corr_28: 0.8185166967637814 - sys_corr_29: 1.5139539639474104 - sys_corr_30: -0.23812496924184945 - sys_corr_31: -0.8615737285431316 - sys_corr_32: 0.09807293782358924 - sys_corr_33: 1.5488833831456272 - sys_corr_34: 0.7674261133314435 + sys_corr_2: -3.4394155068830274 + sys_corr_3: 3.3413277376739994 + sys_corr_4: -5.541898966162299 + sys_corr_5: -1.6661764807846726 + sys_corr_6: 0.9793752178741615 + sys_corr_7: 0.0002485455875605596 + sys_corr_8: -0.08187806243712223 + sys_corr_9: -0.43331484389358593 + sys_corr_10: 1.7688356519671558 + sys_corr_11: 0.1673892047971942 + sys_corr_12: 0.11055325680962538 + sys_corr_13: 0.42690581325142396 + sys_corr_14: -0.11388005383860242 + sys_corr_15: 0.9613977606947433 + sys_corr_16: -0.013820528956824979 + sys_corr_17: -9.506358516911606 + sys_corr_18: -0.0003224919588661582 + sys_corr_19: -0.04499426072419495 + sys_corr_20: -0.13755544896320748 + sys_corr_21: 0.5827172665111978 + sys_corr_22: -1.947072274653343 + sys_corr_23: -37.513389438295356 + sys_corr_24: -3.6661471142260784 + sys_corr_25: -7.529167532068023 + sys_corr_26: -0.6017477237229026 + sys_corr_27: 0.16993176961815415 + sys_corr_28: 0.8185166967640874 + sys_corr_29: 1.5139539639483393 + sys_corr_30: -0.23812496924273005 + sys_corr_31: -0.8615737285403586 + sys_corr_32: 0.09807293782506868 + sys_corr_33: 1.5488833831657787 + sys_corr_34: 0.7674261132628126 stat: 54.0 sys_beam: 50.0 sys_luminosity: 51.0 - sys_corr_1: -3.581622334817089 - sys_corr_2: -1.5952014747683092 - sys_corr_3: 1.696419758223885 - sys_corr_4: -3.146991276459658 - sys_corr_5: -0.8213111707130737 - sys_corr_6: 0.8751706472028377 - sys_corr_7: 0.2206946879339562 - sys_corr_8: -0.10396281407173584 - sys_corr_9: -0.6365967085276881 - sys_corr_10: 0.9100948097624815 - sys_corr_11: 0.13025444043125295 - sys_corr_12: 0.34852058051345974 - sys_corr_13: 0.000963419400960771 - sys_corr_14: -0.024415407833905774 - sys_corr_15: 0.23683126623679324 - sys_corr_16: -0.213123518257198 - sys_corr_17: -4.887880950067507 - sys_corr_18: -9.666121427649194e-05 - sys_corr_19: -0.08679639349439726 - sys_corr_20: -0.21795914219962417 - sys_corr_21: 1.5906032250675446 - sys_corr_22: 25.605815007759354 - sys_corr_23: -2.2802107816509967 - sys_corr_24: -2.064997634263775 - sys_corr_25: -2.1904506948921627 - sys_corr_26: -0.31575888365863575 - sys_corr_27: 0.13593361557791478 - sys_corr_28: 0.2645398552247651 - sys_corr_29: 0.7254250538696598 - sys_corr_30: -0.14873611967742692 - sys_corr_31: -0.34721727099001154 - sys_corr_32: -0.06366415037975065 - sys_corr_33: 0.7056752901669989 - sys_corr_34: 0.34189479965746694 + sys_corr_2: -1.5952014747683114 + sys_corr_3: 1.6964197582238907 + sys_corr_4: -3.14699127645968 + sys_corr_5: -0.8213111707130163 + sys_corr_6: 0.8751706472028297 + sys_corr_7: 0.2206946879338174 + sys_corr_8: -0.1039628140716845 + sys_corr_9: -0.6365967085277067 + sys_corr_10: 0.9100948097625553 + sys_corr_11: 0.13025444043124915 + sys_corr_12: 0.34852058051337664 + sys_corr_13: 0.0009634194008526173 + sys_corr_14: -0.02441540783396363 + sys_corr_15: 0.23683126623681228 + sys_corr_16: -0.21312351825723796 + sys_corr_17: -4.887880950067251 + sys_corr_18: -9.666121426579344e-05 + sys_corr_19: -0.08679639349439601 + sys_corr_20: -0.21795914219999304 + sys_corr_21: 1.590603225066448 + sys_corr_22: 25.605815007759382 + sys_corr_23: -2.280210781651742 + sys_corr_24: -2.064997634263456 + sys_corr_25: -2.190450694893062 + sys_corr_26: -0.31575888365835214 + sys_corr_27: 0.1359336155779555 + sys_corr_28: 0.26453985522407586 + sys_corr_29: 0.7254250538695481 + sys_corr_30: -0.14873611967709635 + sys_corr_31: -0.3472172709889853 + sys_corr_32: -0.06366415037841579 + sys_corr_33: 0.7056752901753416 + sys_corr_34: 0.3418947996262172 stat: 42.0 sys_beam: 31.0 sys_luminosity: 32.0 - sys_corr_1: -1.92704439512093 - sys_corr_2: -0.8906975447977756 - sys_corr_3: 0.9859044565822679 - sys_corr_4: -1.900006590186975 - sys_corr_5: -0.500061597538644 - sys_corr_6: 0.46968476717803787 - sys_corr_7: 0.026567509007107172 - sys_corr_8: -0.24644151318871022 - sys_corr_9: -0.25414422874330955 - sys_corr_10: 0.5977450748892065 - sys_corr_11: 0.12461147105302377 - sys_corr_12: 0.22106489547048022 - sys_corr_13: 0.002600996773599335 - sys_corr_14: 0.18567315840954113 - sys_corr_15: 0.11880756529326222 - sys_corr_16: -0.18567999103818122 - sys_corr_17: -2.8272588693821663 - sys_corr_18: -0.00019905744405662599 - sys_corr_19: -0.11219010309646388 - sys_corr_20: -0.36203400976763017 - sys_corr_21: -19.33064816976645 - sys_corr_22: 1.9792982895260696 - sys_corr_23: -1.076070580397553 - sys_corr_24: -0.9794399369760031 - sys_corr_25: -1.2690397198581644 - sys_corr_26: -0.11077568336747423 - sys_corr_27: -0.0455017730958743 - sys_corr_28: 0.014709472995496412 - sys_corr_29: 0.3343664195538066 - sys_corr_30: 0.011541248946823261 - sys_corr_31: -0.3839086612900922 - sys_corr_32: 0.06978441016448338 - sys_corr_33: 0.26523110211595075 - sys_corr_34: 0.06515123861157356 + sys_corr_2: -0.8906975447977779 + sys_corr_3: 0.9859044565822684 + sys_corr_4: -1.9000065901869836 + sys_corr_5: -0.5000615975386107 + sys_corr_6: 0.46968476717803226 + sys_corr_7: 0.026567509006969116 + sys_corr_8: -0.24644151318863616 + sys_corr_9: -0.25414422874331366 + sys_corr_10: 0.5977450748892512 + sys_corr_11: 0.12461147105305874 + sys_corr_12: 0.22106489547049357 + sys_corr_13: 0.002600996773642191 + sys_corr_14: 0.18567315840945614 + sys_corr_15: 0.11880756529337104 + sys_corr_16: -0.18567999103821872 + sys_corr_17: -2.827258869382252 + sys_corr_18: -0.000199057444015986 + sys_corr_19: -0.11219010309612268 + sys_corr_20: -0.36203400976645245 + sys_corr_21: -19.330648169767073 + sys_corr_22: 1.9792982895274414 + sys_corr_23: -1.0760705803977701 + sys_corr_24: -0.9794399369764406 + sys_corr_25: -1.2690397198592585 + sys_corr_26: -0.11077568336772363 + sys_corr_27: -0.04550177309583325 + sys_corr_28: 0.014709472995865877 + sys_corr_29: 0.33436641955386703 + sys_corr_30: 0.01154124894717594 + sys_corr_31: -0.38390866128957885 + sys_corr_32: 0.06978441016484936 + sys_corr_33: 0.26523110211773226 + sys_corr_34: 0.06515123860033878 stat: 32.0 sys_beam: 18.0 sys_luminosity: 19.0 - sys_corr_1: -0.8296601388639502 - sys_corr_2: -0.3805251722782747 - sys_corr_3: 0.4256454984305268 - sys_corr_4: -0.8640659174103269 - sys_corr_5: -0.3029421108714545 - sys_corr_6: 0.2176950458024982 - sys_corr_7: -0.0513015110495244 - sys_corr_8: -0.12919103018667238 - sys_corr_9: -0.10721047160309029 - sys_corr_10: 0.1529847335090339 - sys_corr_11: 0.17487604901206083 - sys_corr_12: -0.01248019049416586 - sys_corr_13: 0.04226511417819689 - sys_corr_14: 0.07817088485442444 - sys_corr_15: 0.0736083183745245 - sys_corr_16: -0.10963219724155511 - sys_corr_17: -1.2120042253538708 - sys_corr_18: -0.00046489040093820644 - sys_corr_19: -0.25803633958738176 - sys_corr_20: 11.795834334234783 - sys_corr_21: -0.5401002869203217 - sys_corr_22: 0.47787211458447243 - sys_corr_23: -0.4012872851787313 - sys_corr_24: -0.4773980799989664 - sys_corr_25: -0.5578977015713101 - sys_corr_26: 0.015910316662032797 - sys_corr_27: 0.039315340097579664 - sys_corr_28: -0.034916993021117164 - sys_corr_29: 0.15079334377683432 - sys_corr_30: -0.025448127463030965 - sys_corr_31: -0.12947869114049182 - sys_corr_32: 0.003045495350807366 - sys_corr_33: 0.21539792088791174 - sys_corr_34: 0.050432772372592215 + sys_corr_2: -0.38052517227827426 + sys_corr_3: 0.4256454984305276 + sys_corr_4: -0.8640659174103346 + sys_corr_5: -0.3029421108714407 + sys_corr_6: 0.21769504580249685 + sys_corr_7: -0.0513015110494587 + sys_corr_8: -0.1291910301867218 + sys_corr_9: -0.10721047160311574 + sys_corr_10: 0.15298473350908032 + sys_corr_11: 0.17487604901205464 + sys_corr_12: -0.012480190494210718 + sys_corr_13: 0.04226511417816975 + sys_corr_14: 0.0781708848543922 + sys_corr_15: 0.07360831837453956 + sys_corr_16: -0.10963219724160662 + sys_corr_17: -1.2120042253538605 + sys_corr_18: -0.000464890400867854 + sys_corr_19: -0.25803633958642397 + sys_corr_20: 11.79583433423467 + sys_corr_21: -0.5401002869199265 + sys_corr_22: 0.4778721145841973 + sys_corr_23: -0.40128728517884116 + sys_corr_24: -0.4773980799987802 + sys_corr_25: -0.5578977015713456 + sys_corr_26: 0.015910316661923305 + sys_corr_27: 0.0393153400977026 + sys_corr_28: -0.03491699302104453 + sys_corr_29: 0.15079334377679599 + sys_corr_30: -0.025448127463074663 + sys_corr_31: -0.12947869114023533 + sys_corr_32: 0.0030454953508836304 + sys_corr_33: 0.21539792088917062 + sys_corr_34: 0.050432772363266945 stat: 22.0 sys_beam: 9.0 sys_luminosity: 9.0 - sys_corr_1: -0.42393728550091253 - sys_corr_2: -0.14894396859548853 - sys_corr_3: 0.1981748571052791 - sys_corr_4: -0.39930231793851473 - sys_corr_5: -0.11765515578109007 - sys_corr_6: 0.10694488123136513 - sys_corr_7: -0.0737090810991067 - sys_corr_8: -0.13441755182880608 - sys_corr_9: -0.11536049109165246 - sys_corr_10: 0.04875973725724547 - sys_corr_11: 0.04521689153192965 - sys_corr_12: 0.10130389568753956 - sys_corr_13: 0.04322115716786899 - sys_corr_14: 0.028136185353375684 - sys_corr_15: 0.004731362627832487 - sys_corr_16: -0.11516055102024063 - sys_corr_17: -0.6185243817055507 - sys_corr_18: -0.0008188847906671834 - sys_corr_19: 7.911038971966661 - sys_corr_20: 0.37528005595773883 - sys_corr_21: -0.26672538386835976 - sys_corr_22: 0.3020038060076616 - sys_corr_23: -0.21369897814298744 - sys_corr_24: -0.2553303274366322 - sys_corr_25: -0.33152188617632095 - sys_corr_26: -0.03180232046108036 - sys_corr_27: -0.045026544656933135 - sys_corr_28: 0.015861015519060512 - sys_corr_29: 0.06645220360768585 - sys_corr_30: 0.039901597979006935 - sys_corr_31: -0.053250101359537255 - sys_corr_32: 0.028197119479147756 - sys_corr_33: 0.04831256818640388 - sys_corr_34: -0.01828330836598994 + sys_corr_2: -0.1489439685954901 + sys_corr_3: 0.1981748571052783 + sys_corr_4: -0.39930231793851795 + sys_corr_5: -0.11765515578108467 + sys_corr_6: 0.10694488123136295 + sys_corr_7: -0.07370908109912086 + sys_corr_8: -0.13441755182880186 + sys_corr_9: -0.11536049109164451 + sys_corr_10: 0.048759737257209806 + sys_corr_11: 0.045216891531896765 + sys_corr_12: 0.10130389568750048 + sys_corr_13: 0.043221157167921076 + sys_corr_14: 0.02813618535335268 + sys_corr_15: 0.004731362627850262 + sys_corr_16: -0.11516055102018913 + sys_corr_17: -0.6185243817055616 + sys_corr_18: -0.0008188847909314705 + sys_corr_19: 7.911038971966892 + sys_corr_20: 0.3752800559584975 + sys_corr_21: -0.2667253838683477 + sys_corr_22: 0.3020038060076856 + sys_corr_23: -0.2136989781429229 + sys_corr_24: -0.25533032743675527 + sys_corr_25: -0.33152188617643563 + sys_corr_26: -0.031802320460943584 + sys_corr_27: -0.0450265446571122 + sys_corr_28: 0.015861015519048217 + sys_corr_29: 0.06645220360780067 + sys_corr_30: 0.0399015979789204 + sys_corr_31: -0.05325010135931567 + sys_corr_32: 0.028197119479108523 + sys_corr_33: 0.048312568185798266 + sys_corr_34: -0.018283308368153953 stat: 16.0 sys_beam: 4.0 sys_luminosity: 4.0 -- sys_corr_1: -0.013414184810947182 - sys_corr_2: -0.0037960802643431835 - sys_corr_3: 0.007050325110555244 - sys_corr_4: -0.012793678842011953 - sys_corr_5: -0.006988237873416711 - sys_corr_6: -0.0011527303922321177 - sys_corr_7: -0.0038282744129991384 - sys_corr_8: 0.00580351666510989 - sys_corr_9: 0.010110892923237483 - sys_corr_10: 0.006099701507322768 - sys_corr_11: -0.002713842573751903 - sys_corr_12: 0.0038844748413824986 - sys_corr_13: -0.00021929479123481416 - sys_corr_14: -5.673249487341189e-05 - sys_corr_15: -0.005283439658346962 - sys_corr_16: -0.010413435144737736 - sys_corr_17: -0.009022711855041334 - sys_corr_18: 0.9993144938282417 - sys_corr_19: 0.006305972548180469 - sys_corr_20: 0.005629159396434368 - sys_corr_21: -0.003870372244719926 - sys_corr_22: 0.0024480503883864435 - sys_corr_23: -0.011281196460354895 - sys_corr_24: -0.0016038955252630446 - sys_corr_25: -0.015001223022070295 - sys_corr_26: -0.0028588158298082783 - sys_corr_27: -0.0032024298307163834 - sys_corr_28: -0.00378958229068439 - sys_corr_29: -0.0012810170230193785 - sys_corr_30: 0.00020952138697761106 - sys_corr_31: -0.0002487670121694488 - sys_corr_32: 0.0015993114173559364 - sys_corr_33: 1.83609916547212e-05 - sys_corr_34: 0.00045379693968826006 +- sys_corr_1: -0.013414184810947185 + sys_corr_2: -0.0037960802643432707 + sys_corr_3: 0.007050325110555283 + sys_corr_4: -0.012793678842012284 + sys_corr_5: -0.006988237873416502 + sys_corr_6: -0.0011527303922321958 + sys_corr_7: -0.003828274413000623 + sys_corr_8: 0.005803516665110609 + sys_corr_9: 0.010110892923238884 + sys_corr_10: 0.00609970150731563 + sys_corr_11: -0.0027138425737638357 + sys_corr_12: 0.0038844748413529888 + sys_corr_13: -0.0002192947913103354 + sys_corr_14: -5.673249487655088e-05 + sys_corr_15: -0.005283439658330253 + sys_corr_16: -0.01041343514466209 + sys_corr_17: -0.009022711855039067 + sys_corr_18: 0.9993144938300689 + sys_corr_19: 0.006305972548117419 + sys_corr_20: 0.005629159396297987 + sys_corr_21: -0.003870372244989194 + sys_corr_22: 0.002448050388358444 + sys_corr_23: -0.011281196460244286 + sys_corr_24: -0.0016038955252109263 + sys_corr_25: -0.01500122302213559 + sys_corr_26: -0.0028588158298623084 + sys_corr_27: -0.0032024298305996894 + sys_corr_28: -0.0037895822907567595 + sys_corr_29: -0.0012810170229462568 + sys_corr_30: 0.00020952138699364335 + sys_corr_31: -0.0002487670121753776 + sys_corr_32: 0.0015993114173329787 + sys_corr_33: 1.836099161191098e-05 + sys_corr_34: 0.00045379693947543193 stat: 3.0 sys_beam: 0.0 sys_luminosity: 0.0 diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_1JET_200GEV/uncertainties_CC.yaml b/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_1JET_200GEV/uncertainties_CC.yaml index 87e5ac31d1..ca1dfe3eb6 100644 --- a/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_1JET_200GEV/uncertainties_CC.yaml +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_1JET_200GEV/uncertainties_CC.yaml @@ -230,628 +230,628 @@ definitions: bins: - pol: 0.00013000000000000002 lumi: 0.0005 - sys_0: -4.560096602031162e-09 - sys_1: 2.4428412644459394e-08 - sys_2: 1.2684603265892943e-06 - sys_3: -1.1014521684599978e-06 - sys_4: -1.0171497575545482e-06 - sys_5: 9.249472202387696e-08 - sys_6: 2.391811035150065e-06 - sys_7: -3.626369300298676e-06 - sys_8: 1.071574964078692e-07 - sys_9: 3.1003545034459826e-06 - sys_10: 6.041925652886287e-07 - sys_11: 4.821952423431673e-07 - sys_12: 1.713736767236041e-06 - sys_13: -6.888111760621015e-07 - sys_14: 2.478850606828578e-07 - sys_15: -1.1829305159172325e-06 - sys_16: -1.3392613329049035e-06 - sys_17: 2.6767427116823496e-06 - sys_18: -3.7251439923508458e-06 - sys_19: 4.753305868980056e-08 - sys_20: -1.3637527784899613e-06 - sys_21: -9.041404089633108e-06 - sys_22: -6.864649078147824e-06 - sys_23: -2.8837299626865834e-06 - sys_24: 7.822546002887329e-08 - sys_25: -6.281404138602108e-07 - sys_26: 5.195814354069839e-06 - sys_27: 4.147300398148459e-06 - sys_28: 4.062628064804723e-06 - sys_29: 6.36452015592485e-07 - sys_30: -2.637819580469962e-06 - sys_31: -7.86840734272504e-06 - sys_32: -9.864676449518559e-06 - sys_33: 3.477716997795256e-06 - sys_34: -3.4234806730539725e-06 - sys_35: -8.633810077765413e-06 - sys_36: 7.031900031116394e-06 - sys_37: 3.4908448489498704e-05 - sys_38: 3.411383454025279e-06 - sys_39: 1.0845248742572464e-05 - sys_40: -2.7356807914590067e-05 - sys_41: 7.3679285270873105e-06 - sys_42: 6.426444846710027e-06 - sys_43: -1.6234555331377497e-06 - sys_44: -1.6953711975125955e-05 - sys_45: 1.8087075350102373e-05 - sys_46: -2.8027152144609412e-05 - sys_47: -3.6049757245086026e-05 - sys_48: 5.32027352444264e-05 - sys_49: 2.460992740656608e-05 - sys_50: -0.001468579266585301 - sys_51: -4.7677947095593646e-05 - sys_52: -0.0004004891142593906 - sys_53: -0.00010407535221523833 - sys_54: 2.954663880218572e-05 + sys_0: -4.560096605317404e-09 + sys_1: 2.4428412633790994e-08 + sys_2: 1.268460326573468e-06 + sys_3: -1.1014521684598827e-06 + sys_4: -1.0171497575511387e-06 + sys_5: 9.249472202348925e-08 + sys_6: 2.3918110351369195e-06 + sys_7: -3.6263693002988605e-06 + sys_8: 1.0715749640942564e-07 + sys_9: 3.1003545034507687e-06 + sys_10: 6.041925652904772e-07 + sys_11: -4.821952423434104e-07 + sys_12: -1.7137367672335379e-06 + sys_13: 6.888111760595504e-07 + sys_14: -2.4788506067726944e-07 + sys_15: 1.182930515908203e-06 + sys_16: 1.3392613328980006e-06 + sys_17: -2.6767427116744544e-06 + sys_18: 3.7251439923462976e-06 + sys_19: -4.753305868932915e-08 + sys_20: 1.3637527784880648e-06 + sys_21: 9.04140408961788e-06 + sys_22: 6.864649078138722e-06 + sys_23: -2.8837299626801248e-06 + sys_24: -7.82254600305017e-08 + sys_25: 6.2814041386026e-07 + sys_26: -5.1958143540667645e-06 + sys_27: -4.147300398148338e-06 + sys_28: -4.062628064805128e-06 + sys_29: -6.36452015591204e-07 + sys_30: -2.6378195804707558e-06 + sys_31: 7.868407342722966e-06 + sys_32: 9.864676449519128e-06 + sys_33: -3.4777169977951796e-06 + sys_34: 3.4234806730536096e-06 + sys_35: 8.63381007777326e-06 + sys_36: -7.0319000311094224e-06 + sys_37: -3.4908448489503095e-05 + sys_38: -3.411383454024576e-06 + sys_39: 1.0845248742574649e-05 + sys_40: 2.735680791459674e-05 + sys_41: -7.367928527089035e-06 + sys_42: -6.426444846715956e-06 + sys_43: -1.6234555331387914e-06 + sys_44: -1.6953711975131542e-05 + sys_45: 1.8087075350102017e-05 + sys_46: -2.8027152144611764e-05 + sys_47: -3.6049757245097315e-05 + sys_48: 5.32027352444477e-05 + sys_49: 2.460992740657794e-05 + sys_50: -0.0014685792665853356 + sys_51: -4.7677947095669554e-05 + sys_52: -0.0004004891142595236 + sys_53: -0.00010407535221525721 + sys_54: 2.95466388021444e-05 - pol: 0.000364 lumi: 0.0005 - sys_0: -1.4350515100821238e-08 - sys_1: 6.98388401614333e-08 - sys_2: 2.4812901550233576e-06 - sys_3: -2.4875088413795213e-06 - sys_4: -1.611097141836905e-06 - sys_5: 2.6063737605276263e-07 - sys_6: 3.5330583079319117e-06 - sys_7: -7.542239919877716e-06 - sys_8: 1.9714838426268054e-06 - sys_9: 6.609398167675757e-06 - sys_10: 1.3301996165753286e-06 - sys_11: 3.953981070875216e-07 - sys_12: 4.8429488457332475e-06 - sys_13: -3.254617777457859e-07 - sys_14: 1.4934978414340295e-06 - sys_15: -6.737235363180509e-06 - sys_16: -8.328073531005629e-06 - sys_17: 5.07416872423304e-06 - sys_18: -6.927958484511265e-06 - sys_19: -3.0492399451891985e-07 - sys_20: -2.735913753109002e-06 - sys_21: -2.885339301949838e-05 - sys_22: -1.8856658535124737e-05 - sys_23: -6.492905533665343e-06 - sys_24: 1.1138153197792638e-06 - sys_25: -2.2530424338070114e-06 - sys_26: 1.0246798772062311e-05 - sys_27: 8.00125964433146e-06 - sys_28: 8.600010351142834e-06 - sys_29: 1.2016967377275594e-06 - sys_30: -4.967429143549827e-06 - sys_31: -1.4995987528439933e-05 - sys_32: -3.2201809694915586e-05 - sys_33: 9.567812619543143e-06 - sys_34: -1.2765784125598125e-05 - sys_35: -2.269971614261191e-05 - sys_36: 1.564236376705338e-05 - sys_37: 7.941486553433716e-05 - sys_38: 7.308212275450037e-06 - sys_39: 1.729845707140729e-05 - sys_40: -7.48765624835082e-05 - sys_41: 3.229061945804663e-05 - sys_42: 1.2373521384920144e-05 - sys_43: 2.3389670344830197e-06 - sys_44: -3.6909598141926e-05 - sys_45: 2.9031619058603916e-05 - sys_46: -6.66439815866901e-05 - sys_47: -8.28128986996252e-05 - sys_48: 0.0003236228288981583 - sys_49: -5.873601484410936e-06 - sys_50: 6.391820997545912e-05 - sys_51: 4.980949144870765e-05 - sys_52: -0.0005412019082520859 - sys_53: 0.0007591695470461349 - sys_54: -0.0013070271436651112 + sys_0: -1.4350515100639531e-08 + sys_1: 6.98388401586883e-08 + sys_2: 2.4812901550253392e-06 + sys_3: -2.4875088413785044e-06 + sys_4: -1.6110971418343143e-06 + sys_5: 2.6063737605456294e-07 + sys_6: 3.533058307933471e-06 + sys_7: -7.542239919875341e-06 + sys_8: 1.9714838426259067e-06 + sys_9: 6.609398167680517e-06 + sys_10: 1.330199616577454e-06 + sys_11: -3.9539810708835064e-07 + sys_12: -4.842948845730754e-06 + sys_13: 3.254617777453274e-07 + sys_14: -1.4934978414371218e-06 + sys_15: 6.737235363180783e-06 + sys_16: 8.328073531006878e-06 + sys_17: -5.074168724230306e-06 + sys_18: 6.927958484506546e-06 + sys_19: 3.0492399451893975e-07 + sys_20: 2.735913753110764e-06 + sys_21: 2.8853393019499008e-05 + sys_22: 1.885665853512117e-05 + sys_23: -6.492905533663924e-06 + sys_24: -1.1138153197801764e-06 + sys_25: 2.2530424338065384e-06 + sys_26: -1.024679877206268e-05 + sys_27: -8.001259644335058e-06 + sys_28: -8.600010351141811e-06 + sys_29: -1.2016967377271363e-06 + sys_30: -4.96742914355443e-06 + sys_31: 1.4995987528441434e-05 + sys_32: 3.22018096949185e-05 + sys_33: -9.56781261954574e-06 + sys_34: 1.2765784125598483e-05 + sys_35: 2.2699716142627395e-05 + sys_36: -1.56423637670359e-05 + sys_37: -7.941486553433978e-05 + sys_38: -7.308212275449042e-06 + sys_39: 1.729845707140665e-05 + sys_40: 7.487656248350527e-05 + sys_41: -3.229061945804604e-05 + sys_42: -1.237352138491847e-05 + sys_43: 2.33896703448458e-06 + sys_44: -3.690959814193032e-05 + sys_45: 2.903161905859546e-05 + sys_46: -6.66439815866999e-05 + sys_47: -8.281289869960347e-05 + sys_48: 0.00032362282889817224 + sys_49: -5.873601484384279e-06 + sys_50: 6.391820997540754e-05 + sys_51: 4.980949144876201e-05 + sys_52: -0.0005412019082525009 + sys_53: 0.0007591695470459624 + sys_54: -0.0013070271436649839 - pol: 8.45e-05 lumi: 0.0005 - sys_0: -4.8949168836575834e-08 - sys_1: 1.635009414589803e-06 - sys_2: 1.2466414086275518e-06 - sys_3: -1.0417493811180143e-06 - sys_4: -1.0519039018460297e-06 - sys_5: 4.982741172113026e-07 - sys_6: 2.148079212052723e-06 - sys_7: -3.451233811238195e-06 - sys_8: 1.3866507194651015e-05 - sys_9: 4.379868907485749e-06 - sys_10: 1.4459921130399144e-06 - sys_11: 1.3467020051862516e-08 - sys_12: 3.116798922367844e-06 - sys_13: -2.4714727536502207e-06 - sys_14: 3.4638030466580756e-06 - sys_15: -2.8901830077936217e-05 - sys_16: -3.724879285646485e-05 - sys_17: 4.01649332293061e-06 - sys_18: -5.391890693241455e-06 - sys_19: -4.210454381787708e-06 - sys_20: -2.296943704316622e-06 - sys_21: -7.11100605735854e-05 - sys_22: -2.8513298064913916e-05 - sys_23: -6.375634947844978e-06 - sys_24: 1.9309292419168992e-05 - sys_25: -1.3138195740667434e-05 - sys_26: 1.2000818188139e-05 - sys_27: 3.3885173049508478e-06 - sys_28: 1.7012349886561553e-05 - sys_29: -1.8651717902407688e-06 - sys_30: 3.6317430569236355e-07 - sys_31: -5.359405085463944e-06 - sys_32: -6.755963744010035e-05 - sys_33: 1.2358249167326299e-05 - sys_34: -4.725875189807159e-05 - sys_35: -6.047347821485889e-05 - sys_36: 3.9155211988379244e-05 - sys_37: 0.0001919653291310243 - sys_38: 2.1353137806799524e-05 - sys_39: -8.162607426295082e-06 - sys_40: -0.00017969791105140474 - sys_41: 0.00010095691577827111 - sys_42: -6.600048383401051e-06 - sys_43: 1.4894395627376434e-05 - sys_44: -9.033167684037203e-06 - sys_45: -2.6395082039649414e-05 - sys_46: 2.1304549563711377e-05 - sys_47: 9.197785885254403e-05 - sys_48: 2.3660777626871353e-05 - sys_49: -0.00138402763791214 - sys_50: -2.703209786900935e-05 - sys_51: 0.00022517601119598517 - sys_52: -5.5598169300623825e-05 - sys_53: 0.00014708267515579394 - sys_54: 0.00012768957782458365 + sys_0: -4.894916883679728e-08 + sys_1: 1.635009414588177e-06 + sys_2: 1.2466414086277883e-06 + sys_3: -1.0417493811184328e-06 + sys_4: -1.0519039018451855e-06 + sys_5: 4.98274117212887e-07 + sys_6: 2.148079212051982e-06 + sys_7: -3.451233811238411e-06 + sys_8: 1.3866507194652238e-05 + sys_9: 4.379868907485376e-06 + sys_10: 1.4459921130404472e-06 + sys_11: -1.3467020050288876e-08 + sys_12: -3.1167989223665383e-06 + sys_13: 2.4714727536508403e-06 + sys_14: -3.463803046655693e-06 + sys_15: 2.8901830077938114e-05 + sys_16: 3.724879285646521e-05 + sys_17: -4.016493322931468e-06 + sys_18: 5.391890693245309e-06 + sys_19: 4.2104543817846974e-06 + sys_20: 2.296943704316016e-06 + sys_21: 7.111006057359234e-05 + sys_22: 2.8513298064911328e-05 + sys_23: -6.375634947847607e-06 + sys_24: -1.9309292419168484e-05 + sys_25: 1.3138195740670743e-05 + sys_26: -1.2000818188140862e-05 + sys_27: -3.3885173049548873e-06 + sys_28: -1.7012349886561543e-05 + sys_29: 1.865171790241271e-06 + sys_30: 3.631743056895837e-07 + sys_31: 5.359405085463162e-06 + sys_32: 6.755963744010326e-05 + sys_33: -1.2358249167332467e-05 + sys_34: 4.725875189806998e-05 + sys_35: 6.047347821489727e-05 + sys_36: -3.915521198833676e-05 + sys_37: -0.00019196532913102874 + sys_38: -2.1353137806799894e-05 + sys_39: -8.16260742628535e-06 + sys_40: 0.00017969791105139967 + sys_41: -0.00010095691577827011 + sys_42: 6.600048383399644e-06 + sys_43: 1.4894395627376349e-05 + sys_44: -9.033167684030869e-06 + sys_45: -2.639508203965404e-05 + sys_46: 2.130454956371233e-05 + sys_47: 9.197785885255413e-05 + sys_48: 2.3660777626868528e-05 + sys_49: -0.0013840276379121425 + sys_50: -2.7032097869046795e-05 + sys_51: 0.00022517601119595177 + sys_52: -5.5598169300563666e-05 + sys_53: 0.00014708267515582948 + sys_54: 0.0001276895778245882 - pol: 0.00032500000000000004 lumi: 0.0005 - sys_0: -1.8205210440309951e-07 - sys_1: 1.0385015502342131e-05 - sys_2: 1.4468870699877788e-06 - sys_3: -1.1790260617547365e-06 - sys_4: -1.3275342435102785e-06 - sys_5: 2.662402100407055e-06 - sys_6: 2.146789812207663e-06 - sys_7: -5.538668911703668e-06 - sys_8: 5.3775151748429556e-05 - sys_9: 4.356187414387071e-06 - sys_10: 5.292285421841136e-06 - sys_11: -1.1761079012548502e-06 - sys_12: 5.05715549755688e-06 - sys_13: -3.7718923475312575e-06 - sys_14: 4.856186564514883e-06 - sys_15: -5.231639973889442e-05 - sys_16: -6.98731392437344e-05 - sys_17: 8.953556731511881e-06 - sys_18: -1.1625633031459533e-05 - sys_19: -1.9994338794500726e-05 - sys_20: -8.915563500499414e-06 - sys_21: -6.640855229956514e-05 - sys_22: -7.390171717001009e-06 - sys_23: -7.764721494265769e-06 - sys_24: 6.200736609571238e-05 - sys_25: -3.585017273477217e-05 - sys_26: 4.062403605703637e-05 - sys_27: -1.5376857717215646e-07 - sys_28: 5.3389423501832087e-05 - sys_29: -6.7788087546181346e-06 - sys_30: -3.8887584494273963e-08 - sys_31: -4.223759107147952e-06 - sys_32: -5.9160242599703675e-05 - sys_33: 4.869134463071268e-06 - sys_34: -8.269924759179364e-05 - sys_35: -0.00014755987760509443 - sys_36: 9.522514072611805e-05 - sys_37: 0.00015761091676766667 - sys_38: 8.24766139298381e-05 - sys_39: -7.78587256543229e-05 - sys_40: -0.00020753603239468473 - sys_41: 0.00022134073316761507 - sys_42: -6.307021775684278e-05 - sys_43: 3.4539777323264196e-05 - sys_44: 4.853309488184174e-05 - sys_45: -0.00012385747740057733 - sys_46: 0.0002378079624416948 - sys_47: 0.00017104749809174807 - sys_48: 5.969430850046424e-05 - sys_49: -0.00022548486205091128 - sys_50: 5.129567479945272e-05 - sys_51: -0.0014219206695253485 - sys_52: 2.918771071828348e-05 - sys_53: -0.00047100870868830105 - sys_54: -0.00033624383806188927 + sys_0: -1.8205210440251485e-07 + sys_1: 1.0385015502344598e-05 + sys_2: 1.4468870699885057e-06 + sys_3: -1.1790260617541192e-06 + sys_4: -1.3275342435095335e-06 + sys_5: 2.6624021004101123e-06 + sys_6: 2.146789812209034e-06 + sys_7: -5.538668911703043e-06 + sys_8: 5.377515174843026e-05 + sys_9: 4.356187414382516e-06 + sys_10: 5.292285421841462e-06 + sys_11: 1.176107901256218e-06 + sys_12: -5.057155497555738e-06 + sys_13: 3.7718923475319063e-06 + sys_14: -4.856186564512195e-06 + sys_15: 5.231639973889563e-05 + sys_16: 6.987313924373564e-05 + sys_17: -8.953556731513257e-06 + sys_18: 1.1625633031466262e-05 + sys_19: 1.9994338794498e-05 + sys_20: 8.915563500498892e-06 + sys_21: 6.6408552299569e-05 + sys_22: 7.3901717170000176e-06 + sys_23: -7.764721494269455e-06 + sys_24: -6.200736609570822e-05 + sys_25: 3.585017273477727e-05 + sys_26: -4.062403605703911e-05 + sys_27: 1.5376857717589458e-07 + sys_28: -5.3389423501835475e-05 + sys_29: 6.778808754619891e-06 + sys_30: -3.888758449170634e-08 + sys_31: 4.223759107147009e-06 + sys_32: 5.9160242599705904e-05 + sys_33: -4.869134463077519e-06 + sys_34: 8.269924759179527e-05 + sys_35: 0.00014755987760517914 + sys_36: -9.522514072600372e-05 + sys_37: -0.00015761091676766474 + sys_38: -8.247661392983655e-05 + sys_39: -7.785872565431817e-05 + sys_40: 0.0002075360323946853 + sys_41: -0.0002213407331676131 + sys_42: 6.307021775684483e-05 + sys_43: 3.453977732326453e-05 + sys_44: 4.853309488181672e-05 + sys_45: -0.00012385747740056125 + sys_46: 0.00023780796244168118 + sys_47: 0.00017104749809175484 + sys_48: 5.969430850044747e-05 + sys_49: -0.0002254848620509047 + sys_50: 5.129567479947445e-05 + sys_51: -0.0014219206695253504 + sys_52: 2.9187710718529863e-05 + sys_53: -0.0004710087086883188 + sys_54: -0.0003362438380619445 - pol: 0.000351 lumi: 0.0005 - sys_0: -7.524403284754603e-07 - sys_1: 6.110429619211667e-05 - sys_2: 3.2316976046405205e-06 - sys_3: -3.118545211370617e-06 - sys_4: -2.4800044652928193e-06 - sys_5: 1.868510361201009e-05 - sys_6: 3.831010676910377e-06 - sys_7: -1.153850327158968e-05 - sys_8: 0.00011922350405679808 - sys_9: 1.2276678036466795e-05 - sys_10: 1.5302344697194968e-05 - sys_11: -6.708791630649695e-06 - sys_12: 1.495551667825199e-05 - sys_13: -1.0391094160617687e-05 - sys_14: 8.84607638676495e-06 - sys_15: -5.354603855918497e-05 - sys_16: -7.515231705422742e-05 - sys_17: 4.022032578357062e-05 - sys_18: -3.771609461981962e-05 - sys_19: -8.631417440382291e-05 - sys_20: -4.252836910910164e-05 - sys_21: -2.6775617254678702e-05 - sys_22: 6.058255059881807e-06 - sys_23: -1.1388174974746604e-05 - sys_24: 0.00010383198555827178 - sys_25: -6.355405407056147e-05 - sys_26: 0.00016765793977535298 - sys_27: -2.138457768507903e-05 - sys_28: 0.00017187799339848768 - sys_29: -2.865188788787562e-05 - sys_30: 1.9434522466218707e-06 - sys_31: 2.0163416396939003e-05 - sys_32: -2.9086197927227284e-05 - sys_33: 1.7110605559605936e-06 - sys_34: -8.818609505120338e-05 - sys_35: -0.0002923806318247833 - sys_36: 0.00019419898299386269 - sys_37: 4.7635889032121494e-05 - sys_38: 0.00015122701052680586 - sys_39: -0.00023706779060027398 - sys_40: -0.00011389683087034587 - sys_41: 0.0002923805776734542 - sys_42: -0.00020179499989953813 - sys_43: 5.7044914152072174e-05 - sys_44: 0.0003083138590418168 - sys_45: -0.0003528557600016581 - sys_46: -0.0017016876472354316 - sys_47: -0.000755830620738397 - sys_48: -0.00022999855639250274 - sys_49: -5.9319537873931496e-05 - sys_50: 1.8805482142969606e-05 - sys_51: -0.00017773334686711504 - sys_52: 4.946311995687257e-05 - sys_53: -4.278752088731884e-05 - sys_54: -2.7912834314105446e-06 + sys_0: -7.524403284734668e-07 + sys_1: 6.110429619211831e-05 + sys_2: 3.231697604644064e-06 + sys_3: -3.1185452113675476e-06 + sys_4: -2.480004465288524e-06 + sys_5: 1.868510361201049e-05 + sys_6: 3.831010676911596e-06 + sys_7: -1.1538503271591287e-05 + sys_8: 0.00011922350405679826 + sys_9: 1.227667803646994e-05 + sys_10: 1.5302344697198844e-05 + sys_11: 6.708791630644308e-06 + sys_12: -1.4955516678253635e-05 + sys_13: 1.0391094160616002e-05 + sys_14: -8.846076386765641e-06 + sys_15: 5.3546038559185743e-05 + sys_16: 7.515231705423001e-05 + sys_17: -4.022032578357402e-05 + sys_18: 3.771609461982632e-05 + sys_19: 8.631417440381654e-05 + sys_20: 4.252836910910091e-05 + sys_21: 2.6775617254680904e-05 + sys_22: -6.058255059883739e-06 + sys_23: -1.1388174974747861e-05 + sys_24: -0.0001038319855582612 + sys_25: 6.355405407056844e-05 + sys_26: -0.00016765793977535336 + sys_27: 2.138457768508403e-05 + sys_28: -0.00017187799339848792 + sys_29: 2.865188788787487e-05 + sys_30: 1.943452246626721e-06 + sys_31: -2.0163416396937408e-05 + sys_32: 2.9086197927229134e-05 + sys_33: -1.7110605559728237e-06 + sys_34: 8.818609505121076e-05 + sys_35: 0.0002923806318249369 + sys_36: -0.00019419898299362164 + sys_37: -4.7635889032106905e-05 + sys_38: -0.00015122701052680204 + sys_39: -0.00023706779060026355 + sys_40: 0.00011389683087035301 + sys_41: -0.0002923805776734528 + sys_42: 0.0002017949998995244 + sys_43: 5.704491415207515e-05 + sys_44: 0.000308313859041939 + sys_45: -0.0003528557600017023 + sys_46: -0.0017016876472354169 + sys_47: -0.0007558306207384706 + sys_48: -0.0002299985563924863 + sys_49: -5.9319537873916494e-05 + sys_50: 1.8805482142971063e-05 + sys_51: -0.00017773334686709558 + sys_52: 4.9463119956868356e-05 + sys_53: -4.278752088731618e-05 + sys_54: -2.7912834314212515e-06 - pol: 0.000741 lumi: 0.0005 - sys_0: -1.9604555064431743e-06 - sys_1: 0.00017160773766128194 - sys_2: 6.1683502786157975e-06 - sys_3: -6.299775246143367e-06 - sys_4: -4.704880655872315e-06 - sys_5: 0.00010267586593322797 - sys_6: 6.584792131367915e-06 - sys_7: -2.4596942232009612e-05 + sys_0: -1.960455506442849e-06 + sys_1: 0.00017160773766128622 + sys_2: 6.1683502786197845e-06 + sys_3: -6.299775246142317e-06 + sys_4: -4.70488065587176e-06 + sys_5: 0.00010267586593322884 + sys_6: 6.584792131368732e-06 + sys_7: -2.4596942232008585e-05 sys_8: 0.00012387129200254593 - sys_9: 3.598925194661992e-05 - sys_10: 2.6782795407950756e-05 - sys_11: -2.9457713903028642e-05 - sys_12: 4.421708007527708e-05 - sys_13: -6.305685280289203e-05 - sys_14: 2.846080623158932e-05 - sys_15: -1.9776231753112484e-05 - sys_16: -4.2775259680793554e-05 - sys_17: 0.00018671818176553185 - sys_18: -4.784716081550442e-05 - sys_19: -0.0001826758114335547 - sys_20: -0.00019635095578864138 - sys_21: 7.5216552251806366e-06 - sys_22: 7.756485434297345e-06 - sys_23: 3.846319173022284e-05 - sys_24: 8.705890763075384e-05 - sys_25: -6.927986245733106e-05 - sys_26: 0.00043892605417136153 - sys_27: -0.0001322453499691359 - sys_28: 0.00037000682588054747 - sys_29: -8.276552995005455e-05 - sys_30: 6.892735336197996e-05 - sys_31: 0.00016422034065490023 - sys_32: 9.244018573004296e-06 - sys_33: 3.4228759020746574e-06 - sys_34: -4.642061467302348e-05 - sys_35: -0.0003437696206291846 - sys_36: 0.00023233118614142826 - sys_37: -1.5131125263042321e-05 - sys_38: 0.00011264049448128512 - sys_39: -0.000627669759616302 - sys_40: 2.2985894239690764e-05 - sys_41: 0.00015942763101099586 - sys_42: -0.0005069869207118745 - sys_43: 8.691990828817637e-05 - sys_44: -0.002212327456653561 - sys_45: 0.0008457649840796313 - sys_46: -0.00018485462107000082 - sys_47: -0.00012693660160142375 - sys_48: -7.999695234448494e-05 - sys_49: -1.2497023167811368e-05 - sys_50: 1.0176314762857157e-05 - sys_51: -5.216822609530119e-05 - sys_52: 3.471352678465345e-05 - sys_53: -3.135352700130002e-05 - sys_54: -2.0264809930116e-06 + sys_9: 3.598925194661181e-05 + sys_10: 2.6782795407959745e-05 + sys_11: 2.9457713903031613e-05 + sys_12: -4.421708007527508e-05 + sys_13: 6.305685280289329e-05 + sys_14: -2.8460806231585872e-05 + sys_15: 1.9776231753111837e-05 + sys_16: 4.277525968079596e-05 + sys_17: -0.00018671818176553074 + sys_18: 4.7847160815514054e-05 + sys_19: 0.00018267581143355187 + sys_20: 0.00019635095578864165 + sys_21: -7.521655225180994e-06 + sys_22: -7.756485434296091e-06 + sys_23: 3.84631917302205e-05 + sys_24: -8.705890763073852e-05 + sys_25: 6.927986245733682e-05 + sys_26: -0.0004389260541713616 + sys_27: 0.00013224534996914526 + sys_28: -0.00037000682588054953 + sys_29: 8.276552995005676e-05 + sys_30: 6.892735336198686e-05 + sys_31: -0.00016422034065490502 + sys_32: -9.244018573004337e-06 + sys_33: -3.4228759020829918e-06 + sys_34: 4.642061467302927e-05 + sys_35: 0.00034376962062937613 + sys_36: -0.00023233118614114125 + sys_37: 1.5131125263055065e-05 + sys_38: -0.00011264049448128318 + sys_39: -0.0006276697596163062 + sys_40: -2.2985894239678425e-05 + sys_41: -0.0001594276310110097 + sys_42: 0.0005069869207118626 + sys_43: 8.691990828817948e-05 + sys_44: -0.0022123274566535987 + sys_45: 0.0008457649840795892 + sys_46: -0.00018485462106998605 + sys_47: -0.000126936601601428 + sys_48: -7.999695234448012e-05 + sys_49: -1.2497023167817581e-05 + sys_50: 1.0176314762854823e-05 + sys_51: -5.216822609528978e-05 + sys_52: 3.471352678465846e-05 + sys_53: -3.135352700130149e-05 + sys_54: -2.026480993011761e-06 - pol: 0.0007475 lumi: 0.0005 - sys_0: -2.9254947869311066e-06 - sys_1: 0.0002317010479031277 - sys_2: 1.5794472301482664e-05 - sys_3: -1.7206007112067514e-05 - sys_4: -1.4286012281926876e-05 - sys_5: 0.00029286261450279903 - sys_6: 1.68696072876921e-05 - sys_7: -6.401794987400602e-05 - sys_8: 5.5754714357431256e-05 - sys_9: 0.00016116409357210383 - sys_10: 5.39381530140466e-05 - sys_11: -0.00019000810976038522 - sys_12: 0.00011935996680818521 - sys_13: -0.0003446093496851203 - sys_14: 6.851670014487451e-05 - sys_15: 3.566152603670388e-05 - sys_16: -1.3727549952986504e-05 - sys_17: 0.0006531419564800202 - sys_18: 0.00017753990530306648 - sys_19: -0.00023530132606138765 - sys_20: -0.00063571785078859 - sys_21: 8.025232264742943e-06 - sys_22: 3.7083257159444146e-06 - sys_23: 0.00033387886140126175 - sys_24: 4.455116756450709e-05 - sys_25: -5.9914321774195955e-05 - sys_26: 0.0007246118183336508 - sys_27: -0.0005435646600755206 - sys_28: 0.0006415186689724327 - sys_29: -0.00018757390439597317 - sys_30: 0.0007586311027336389 - sys_31: 0.0009452765196464993 - sys_32: 0.00020869561713017493 - sys_33: -8.902892302992497e-05 - sys_34: 9.110004761075139e-05 - sys_35: -0.0010964735357806177 - sys_36: 0.0006438353478154349 - sys_37: -0.0003238767523782583 - sys_38: 0.0007333017965956237 - sys_39: 0.0030255987960204596 - sys_40: -0.00014525397357050365 - sys_41: 0.0002229044147326953 - sys_42: 0.0004459508178381007 - sys_43: -0.00012894487134254177 - sys_44: -0.00019397342096312708 - sys_45: 0.00012389625684547874 - sys_46: -4.943658287455294e-05 - sys_47: -2.7101245158562847e-05 - sys_48: -2.6950037879127424e-05 - sys_49: 9.664388189555986e-07 - sys_50: 4.319503349591252e-06 - sys_51: -8.453160919563809e-06 - sys_52: 1.4944221889224057e-05 - sys_53: -1.3053544706310127e-05 - sys_54: -2.4143028225874583e-07 + sys_0: -2.92549478692864e-06 + sys_1: 0.0002317010479031325 + sys_2: 1.5794472301486974e-05 + sys_3: -1.7206007112067185e-05 + sys_4: -1.4286012281923744e-05 + sys_5: 0.0002928626145028016 + sys_6: 1.68696072876952e-05 + sys_7: -6.401794987400566e-05 + sys_8: 5.575471435743061e-05 + sys_9: 0.00016116409357209402 + sys_10: 5.3938153014081987e-05 + sys_11: 0.0001900081097603855 + sys_12: -0.00011935996680818614 + sys_13: 0.00034460934968512375 + sys_14: -6.85167001448707e-05 + sys_15: -3.566152603670358e-05 + sys_16: 1.3727549952989072e-05 + sys_17: -0.0006531419564800223 + sys_18: -0.0001775399053030592 + sys_19: 0.00023530132606138255 + sys_20: 0.0006357178507885945 + sys_21: -8.025232264749323e-06 + sys_22: -3.7083257159348444e-06 + sys_23: 0.0003338788614012622 + sys_24: -4.455116756448711e-05 + sys_25: 5.991432177419906e-05 + sys_26: -0.0007246118183336491 + sys_27: 0.0005435646600755391 + sys_28: -0.000641518668972409 + sys_29: 0.00018757390439596582 + sys_30: 0.0007586311027336596 + sys_31: -0.0009452765196465023 + sys_32: -0.0002086956171301864 + sys_33: 8.902892302993092e-05 + sys_34: -9.110004761072925e-05 + sys_35: 0.001096473535781146 + sys_36: -0.0006438353478145178 + sys_37: 0.0003238767523782688 + sys_38: -0.0007333017965956018 + sys_39: 0.003025598796020456 + sys_40: 0.00014525397357044952 + sys_41: -0.0002229044147326883 + sys_42: -0.0004459508178380915 + sys_43: -0.00012894487134253976 + sys_44: -0.00019397342096312933 + sys_45: 0.00012389625684547254 + sys_46: -4.943658287455192e-05 + sys_47: -2.7101245158566008e-05 + sys_48: -2.6950037879127177e-05 + sys_49: 9.664388189560458e-07 + sys_50: 4.3195033495901245e-06 + sys_51: -8.453160919562598e-06 + sys_52: 1.4944221889225621e-05 + sys_53: -1.3053544706312316e-05 + sys_54: -2.4143028225900555e-07 - pol: 0.000858 lumi: 0.0005 - sys_0: -2.023613764933343e-06 - sys_1: 0.00012288063657802615 - sys_2: 6.145814340100246e-05 - sys_3: -3.997775893783456e-05 - sys_4: -6.598373410876714e-05 - sys_5: 0.00028498681921190115 - sys_6: 3.8463096026470854e-05 - sys_7: -0.00020262417942494508 - sys_8: 7.935916061301043e-06 - sys_9: 0.0006497187406231657 - sys_10: 0.00014812835472705673 - sys_11: -0.0008740692497390651 - sys_12: 0.00011396906177454316 - sys_13: -0.001130378669512184 - sys_14: -0.00018603910629203798 - sys_15: 6.444703619354445e-05 - sys_16: -2.4441684683146103e-06 - sys_17: 0.0009084892447243422 - sys_18: 0.0012476101016886685 - sys_19: -0.0004277488575734429 - sys_20: -0.0012256146803807735 - sys_21: -3.201156452375464e-05 - sys_22: -1.7292903941638796e-05 - sys_23: 0.0010409531005511317 - sys_24: 7.065959064866499e-05 - sys_25: 3.1209354723915587e-06 - sys_26: 0.001822584054764026 - sys_27: 0.0038007237347611007 - sys_28: -0.00027959462285844937 - sys_29: 0.00027886527901149576 - sys_30: -0.00243915654123967 - sys_31: -0.0009061962001091868 - sys_32: -0.00012163400965698404 - sys_33: 7.566945122117982e-05 - sys_34: -6.922915055588664e-05 - sys_35: -4.5253624852202154e-05 - sys_36: 6.799903735286373e-05 - sys_37: -5.366489786171758e-06 - sys_38: 0.00012309092777058786 - sys_39: 0.0004476132759296302 - sys_40: -2.9949031725285892e-05 - sys_41: 7.347454686881526e-05 - sys_42: 0.00011221939465734653 - sys_43: -3.2530748138902996e-05 - sys_44: -6.26733818893808e-05 - sys_45: 3.38432037625807e-05 - sys_46: -1.0646597632365682e-05 - sys_47: -1.3849599588938712e-06 - sys_48: -1.1734257454425227e-05 - sys_49: 3.400146945165957e-06 - sys_50: 2.039562258964101e-06 - sys_51: 2.5441528738711875e-06 - sys_52: 8.405840861895127e-06 - sys_53: -7.116808896693639e-06 - sys_54: 4.399363244587302e-07 + sys_0: -2.0236137649326277e-06 + sys_1: 0.00012288063657801983 + sys_2: 6.145814340100531e-05 + sys_3: -3.9977758937834636e-05 + sys_4: -6.598373410876559e-05 + sys_5: 0.00028498681921190056 + sys_6: 3.846309602647122e-05 + sys_7: -0.0002026241794249424 + sys_8: 7.93591606130369e-06 + sys_9: 0.0006497187406231443 + sys_10: 0.00014812835472718952 + sys_11: 0.0008740692497390611 + sys_12: -0.00011396906177455083 + sys_13: 0.0011303786695121935 + sys_14: 0.0001860391062920528 + sys_15: -6.444703619354252e-05 + sys_16: 2.4441684683204684e-06 + sys_17: -0.0009084892447243394 + sys_18: -0.001247610101688661 + sys_19: 0.0004277488575734601 + sys_20: 0.0012256146803807837 + sys_21: 3.201156452374214e-05 + sys_22: 1.7292903941676116e-05 + sys_23: 0.001040953100551125 + sys_24: -7.065959064865195e-05 + sys_25: -3.120935472393055e-06 + sys_26: -0.0018225840547640324 + sys_27: -0.0038007237347611224 + sys_28: 0.00027959462285835114 + sys_29: -0.0002788652790114636 + sys_30: -0.0024391565412396816 + sys_31: 0.0009061962001091709 + sys_32: 0.00012163400965698659 + sys_33: -7.566945122118249e-05 + sys_34: 6.922915055588197e-05 + sys_35: 4.5253624852263276e-05 + sys_36: -6.799903735282776e-05 + sys_37: 5.366489786171116e-06 + sys_38: -0.0001230909277705915 + sys_39: 0.00044761327592963897 + sys_40: 2.994903172528008e-05 + sys_41: -7.3474546868815e-05 + sys_42: -0.00011221939465734769 + sys_43: -3.2530748138904155e-05 + sys_44: -6.26733818893853e-05 + sys_45: 3.38432037625801e-05 + sys_46: -1.0646597632366186e-05 + sys_47: -1.3849599588955377e-06 + sys_48: -1.1734257454425622e-05 + sys_49: 3.4001469451659907e-06 + sys_50: 2.03956225896235e-06 + sys_51: 2.5441528738712617e-06 + sys_52: 8.405840861896693e-06 + sys_53: -7.1168088966947545e-06 + sys_54: 4.399363244585337e-07 - pol: 0.0013455000000000001 lumi: 0.0005 - sys_0: -1.0507706816021392e-06 - sys_1: 3.374785867190488e-05 - sys_2: 0.00044447949958207906 - sys_3: -5.977339354934236e-05 - sys_4: -0.0005307404517739844 - sys_5: 0.00011222941474132726 - sys_6: -0.0001932223650361499 - sys_7: -0.00039538252223308274 - sys_8: 6.414019979796901e-06 - sys_9: 0.0018200920475480587 - sys_10: 0.0003905279591486095 - sys_11: -0.0032716966123211137 - sys_12: -0.00022077062659552865 - sys_13: -0.004125352917833185 - sys_14: -0.0023086648250417027 - sys_15: -2.984417228600345e-05 - sys_16: 1.3067931342768387e-06 - sys_17: 0.0021454799995885387 - sys_18: -0.00640864914360429 - sys_19: 0.002009349093768423 - sys_20: 0.0011454495073973865 - sys_21: 7.141138031008925e-05 - sys_22: 3.391663496083169e-05 - sys_23: -0.0009005697673310205 - sys_24: -4.7074229862855635e-05 - sys_25: -2.7478994595321822e-05 - sys_26: 5.566348093992993e-05 - sys_27: 0.00011049167415091196 - sys_28: 0.00010960067919343836 - sys_29: 0.0001840550093664683 - sys_30: -0.0005046067802955028 - sys_31: -0.00019240838454189066 - sys_32: -3.4115854650070855e-05 - sys_33: 6.476981775574654e-05 - sys_34: -3.679607697926645e-05 - sys_35: -1.640644497666166e-05 - sys_36: 3.081253735232797e-05 - sys_37: -7.280202602349878e-07 - sys_38: 3.940191351198442e-05 - sys_39: 0.0001220759660594485 - sys_40: -7.671794322031015e-06 - sys_41: 1.9269815799874348e-05 - sys_42: 2.7551506787972574e-05 - sys_43: -6.624005062344384e-06 - sys_44: -1.3823264594973159e-05 - sys_45: 5.785919398057196e-06 - sys_46: -2.6753452234788226e-07 - sys_47: 2.6343072772339526e-06 - sys_48: -4.0300721262836795e-06 - sys_49: 1.895468633747861e-06 - sys_50: 6.391550941324944e-07 - sys_51: 2.558765519259094e-06 - sys_52: 3.246940048976359e-06 - sys_53: -2.422037202090638e-06 - sys_54: 4.927865179263534e-08 + sys_0: -1.0507706815999367e-06 + sys_1: 3.374785867189366e-05 + sys_2: 0.0004444794995820797 + sys_3: -5.977339354934646e-05 + sys_4: -0.0005307404517739781 + sys_5: 0.00011222941474132937 + sys_6: -0.00019322236503615625 + sys_7: -0.0003953825222330837 + sys_8: 6.414019979797795e-06 + sys_9: 0.001820092047547991 + sys_10: 0.0003905279591489881 + sys_11: 0.003271696612321087 + sys_12: 0.0002207706265955077 + sys_13: 0.004125352917833187 + sys_14: 0.0023086648250417213 + sys_15: 2.9844172286021273e-05 + sys_16: -1.3067931342880856e-06 + sys_17: -0.0021454799995885305 + sys_18: 0.006408649143604257 + sys_19: -0.002009349093768543 + sys_20: -0.0011454495073974205 + sys_21: -7.141138031008427e-05 + sys_22: -3.391663496084953e-05 + sys_23: -0.000900569767331024 + sys_24: 4.707422986286111e-05 + sys_25: 2.747899459531926e-05 + sys_26: -5.5663480939939185e-05 + sys_27: -0.00011049167415091876 + sys_28: -0.00010960067919344939 + sys_29: -0.00018405500936646022 + sys_30: -0.0005046067802955094 + sys_31: 0.00019240838454189093 + sys_32: 3.411585465007484e-05 + sys_33: -6.476981775574936e-05 + sys_34: 3.6796076979263565e-05 + sys_35: 1.640644497668697e-05 + sys_36: -3.08125373523139e-05 + sys_37: 7.280202602333375e-07 + sys_38: -3.940191351198358e-05 + sys_39: 0.00012207596605944652 + sys_40: 7.671794322028229e-06 + sys_41: -1.926981579987347e-05 + sys_42: -2.7551506787971846e-05 + sys_43: -6.6240050623443e-06 + sys_44: -1.3823264594972212e-05 + sys_45: 5.785919398055734e-06 + sys_46: -2.6753452234753334e-07 + sys_47: 2.6343072772341275e-06 + sys_48: -4.030072126283909e-06 + sys_49: 1.8954686337478434e-06 + sys_50: 6.39155094130193e-07 + sys_51: 2.558765519258908e-06 + sys_52: 3.2469400489776135e-06 + sys_53: -2.4220372020906036e-06 + sys_54: 4.927865179189262e-08 - pol: 0.002119 lumi: 0.0005 - sys_0: -1.004827314675371e-06 - sys_1: 6.377656067478237e-06 - sys_2: 0.003198306649639695 - sys_3: 0.0006509136909840617 - sys_4: -0.002968466930536025 - sys_5: 2.915717435666434e-05 - sys_6: -0.0030864040453760246 - sys_7: 0.0003617178026052363 - sys_8: 2.6612428640752384e-05 - sys_9: 0.013909659447481348 - sys_10: 0.0031090399799236813 - sys_11: 0.005884189648466795 - sys_12: 0.0008298422943182119 - sys_13: 0.0014709067609793903 - sys_14: 0.000975049498871915 - sys_15: 4.30304419585386e-05 - sys_16: -1.666375291435974e-06 - sys_17: 0.00023116812446309022 - sys_18: -0.0005877744170731033 - sys_19: 0.00018327316887117162 - sys_20: 7.256973071946152e-05 - sys_21: 1.5081936553866105e-05 - sys_22: 7.4985726966697826e-06 - sys_23: -0.00015014074229981002 - sys_24: -1.8219180443196077e-05 - sys_25: -1.0804830595240094e-05 - sys_26: 2.3125016377372087e-05 - sys_27: 1.306134027651173e-05 - sys_28: 5.8096793620545035e-05 - sys_29: 0.00013835181281429093 - sys_30: -0.0001340201876535594 - sys_31: -4.8479894973141354e-05 - sys_32: 4.806973415946291e-06 - sys_33: 8.43996375299518e-05 - sys_34: -2.8329752372915186e-05 - sys_35: -1.086342901293884e-06 - sys_36: 1.1878320598052311e-05 - sys_37: 6.590382948679997e-07 - sys_38: 1.0813633576272636e-05 - sys_39: 3.05389273009438e-05 - sys_40: -1.8616094220752968e-06 - sys_41: 4.567934235123472e-06 - sys_42: 5.878949296634559e-06 - sys_43: -6.629690320819433e-07 - sys_44: -1.8237499841949237e-06 - sys_45: -3.2874341182112825e-07 - sys_46: 1.0533015807114109e-06 - sys_47: 1.7625883474284797e-06 - sys_48: -1.2494581914768121e-06 - sys_49: 9.232072347539184e-07 - sys_50: 2.1043974446938029e-07 - sys_51: 1.376747469501415e-06 - sys_52: 1.2414675007267248e-06 - sys_53: -9.34920974695067e-07 - sys_54: 1.3023832928227276e-07 + sys_0: -1.0048273146711087e-06 + sys_1: 6.377656067413857e-06 + sys_2: 0.0031983066496396933 + sys_3: 0.0006509136909840488 + sys_4: -0.0029684669305360236 + sys_5: 2.9157174356661747e-05 + sys_6: -0.003086404045376029 + sys_7: 0.000361717802605242 + sys_8: 2.6612428640773394e-05 + sys_9: 0.013909659447480707 + sys_10: 0.003109039979926491 + sys_11: -0.005884189648466794 + sys_12: -0.0008298422943181943 + sys_13: -0.0014709067609793912 + sys_14: -0.0009750494988719224 + sys_15: -4.303044195854392e-05 + sys_16: 1.6663752914306206e-06 + sys_17: -0.00023116812446308648 + sys_18: 0.0005877744170730986 + sys_19: -0.00018327316887118263 + sys_20: -7.256973071946823e-05 + sys_21: -1.508193655387423e-05 + sys_22: -7.498572696681626e-06 + sys_23: -0.00015014074229980926 + sys_24: 1.8219180443198303e-05 + sys_25: 1.0804830595238516e-05 + sys_26: -2.312501637737006e-05 + sys_27: -1.306134027650861e-05 + sys_28: -5.809679362054758e-05 + sys_29: -0.00013835181281428825 + sys_30: -0.00013402018765356063 + sys_31: 4.847989497314026e-05 + sys_32: -4.806973415945683e-06 + sys_33: -8.439963752995349e-05 + sys_34: 2.8329752372910317e-05 + sys_35: 1.0863429013029913e-06 + sys_36: -1.1878320598050664e-05 + sys_37: -6.590382948665042e-07 + sys_38: -1.0813633576272623e-05 + sys_39: 3.05389273009439e-05 + sys_40: 1.8616094220745327e-06 + sys_41: -4.567934235123435e-06 + sys_42: -5.878949296634655e-06 + sys_43: -6.629690320817947e-07 + sys_44: -1.8237499841953693e-06 + sys_45: -3.28743411820747e-07 + sys_46: 1.0533015807108984e-06 + sys_47: 1.7625883474283573e-06 + sys_48: -1.2494581914769496e-06 + sys_49: 9.232072347537593e-07 + sys_50: 2.1043974446906352e-07 + sys_51: 1.3767474695012796e-06 + sys_52: 1.2414675007260361e-06 + sys_53: -9.349209746956092e-07 + sys_54: 1.302383292823807e-07 - pol: 0.002158 lumi: 0.0005 - sys_0: -1.4333169523510956e-06 - sys_1: 1.6059377043692603e-05 - sys_2: 0.012170805056056035 - sys_3: 0.0041134595604770535 - sys_4: -0.014964171468280125 - sys_5: -9.074110994408382e-05 - sys_6: 0.02255102024166746 - sys_7: -0.0026150637720448763 - sys_8: -5.1753467016180005e-06 - sys_9: 0.0003759410852683396 - sys_10: 8.987244107400239e-05 - sys_11: 0.0006777942656984108 - sys_12: 0.0001896594826524572 - sys_13: 0.0002414601209482615 - sys_14: 0.00016526289369439798 - sys_15: 9.317445510364129e-06 - sys_16: -3.6921051141237556e-07 - sys_17: 5.068696716773351e-05 - sys_18: -0.00013120530325459438 - sys_19: 4.2212830185518144e-05 - sys_20: 1.4527058561194454e-05 - sys_21: 3.8139919698264083e-06 - sys_22: 1.9231954806285427e-06 - sys_23: -3.454389132679438e-05 - sys_24: -5.2519095532407106e-06 - sys_25: -3.015389268957236e-06 - sys_26: 5.29116237169242e-06 - sys_27: -3.4526908388442805e-07 - sys_28: 1.7821415362070935e-05 - sys_29: 4.2945398740740977e-05 - sys_30: -2.954440289411213e-05 - sys_31: -9.213124824306608e-06 - sys_32: 7.769480946130331e-06 - sys_33: 4.463099732671652e-05 - sys_34: -1.2783907732403276e-05 - sys_35: 1.0499617759029776e-06 - sys_36: 3.4933874496318827e-06 - sys_37: 5.767766095679024e-07 - sys_38: 2.257710734115617e-06 - sys_39: 5.994707260913041e-06 - sys_40: -4.3996874418396135e-07 - sys_41: 1.0173107051718301e-06 - sys_42: 7.247079738921621e-07 - sys_43: 2.758031745080538e-07 - sys_44: 3.4382180594730176e-08 - sys_45: -6.657477954840431e-07 - sys_46: 5.556464230758889e-07 - sys_47: 7.374834382578528e-07 - sys_48: -5.361082830551065e-07 - sys_49: 3.50757211756471e-07 - sys_50: 1.282480744485961e-07 - sys_51: 5.788206232275623e-07 - sys_52: 4.2799381896690266e-07 - sys_53: -3.531191147765054e-07 - sys_54: 5.71579373781375e-08 + sys_0: -1.4333169523571171e-06 + sys_1: 1.6059377043424565e-05 + sys_2: 0.012170805056056005 + sys_3: 0.004113459560476994 + sys_4: -0.014964171468280128 + sys_5: -9.074110994409989e-05 + sys_6: 0.022551020241667427 + sys_7: -0.0026150637720448702 + sys_8: -5.175346701616564e-06 + sys_9: 0.0003759410852683241 + sys_10: 8.98724410740772e-05 + sys_11: -0.0006777942656984104 + sys_12: -0.0001896594826524578 + sys_13: -0.00024146012094826107 + sys_14: -0.00016526289369439857 + sys_15: -9.317445510363507e-06 + sys_16: 3.692105114130771e-07 + sys_17: -5.068696716773491e-05 + sys_18: 0.00013120530325459506 + sys_19: -4.221283018552084e-05 + sys_20: -1.4527058561194829e-05 + sys_21: -3.8139919698245106e-06 + sys_22: -1.9231954806282454e-06 + sys_23: -3.4543891326794705e-05 + sys_24: 5.251909553241262e-06 + sys_25: 3.015389268956318e-06 + sys_26: -5.2911623716932366e-06 + sys_27: 3.45269083884025e-07 + sys_28: -1.7821415362071612e-05 + sys_29: -4.2945398740740096e-05 + sys_30: -2.954440289411319e-05 + sys_31: 9.21312482430691e-06 + sys_32: -7.769480946129696e-06 + sys_33: -4.463099732671751e-05 + sys_34: 1.2783907732400969e-05 + sys_35: -1.0499617759001113e-06 + sys_36: -3.4933874496325388e-06 + sys_37: -5.767766095681412e-07 + sys_38: -2.2577107341157887e-06 + sys_39: 5.9947072609132074e-06 + sys_40: 4.3996874418399476e-07 + sys_41: -1.0173107051718814e-06 + sys_42: -7.247079738921074e-07 + sys_43: 2.7580317450809917e-07 + sys_44: 3.438218059472489e-08 + sys_45: -6.657477954840073e-07 + sys_46: 5.556464230759736e-07 + sys_47: 7.374834382578643e-07 + sys_48: -5.361082830552594e-07 + sys_49: 3.5075721175647734e-07 + sys_50: 1.2824807444841421e-07 + sys_51: 5.788206232273974e-07 + sys_52: 4.279938189670145e-07 + sys_53: -3.5311911477644656e-07 + sys_54: 5.715793737823422e-08 diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_1JET_200GEV/uncertainties_CF.yaml b/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_1JET_200GEV/uncertainties_CF.yaml index 76e8bcfbd3..e55f36f378 100644 --- a/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_1JET_200GEV/uncertainties_CF.yaml +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_1JET_200GEV/uncertainties_CF.yaml @@ -230,628 +230,628 @@ definitions: bins: - pol: 0.000117 lumi: 0.0005 - sys_0: -5.506821027750456e-09 - sys_1: 2.739252211864794e-08 - sys_2: 1.1137868577419495e-06 - sys_3: -1.2992980376070698e-06 - sys_4: -5.087499552713517e-07 - sys_5: 1.058952572342688e-07 - sys_6: 9.605686614058354e-07 - sys_7: -3.6379546498137694e-06 - sys_8: 1.3791167703116183e-07 - sys_9: 3.253049442198996e-06 - sys_10: 6.006400597813714e-07 - sys_11: 3.953712520603916e-07 - sys_12: 1.7681045060450807e-06 - sys_13: -7.639940358036286e-07 - sys_14: 3.4331642908065405e-07 - sys_15: -2.3258421629724617e-06 - sys_16: -2.7971493763970495e-06 - sys_17: 2.65588964002764e-06 - sys_18: -4.157757531814495e-06 - sys_19: 1.7493997308158419e-07 - sys_20: -1.1213394043393006e-06 - sys_21: -9.63882945264967e-06 - sys_22: -5.755520798266188e-06 - sys_23: -3.390650190918901e-06 - sys_24: 8.440681953506727e-07 - sys_25: 1.0938902531043213e-06 - sys_26: 4.623811527778041e-06 - sys_27: 3.722796766152232e-06 - sys_28: 3.4930777311396345e-06 - sys_29: 4.742985147702295e-07 - sys_30: -2.1809632310722423e-06 - sys_31: -6.235986392968818e-06 - sys_32: -1.7686237078010353e-05 - sys_33: 5.726486843199723e-06 - sys_34: -2.056539461722482e-06 - sys_35: -3.2256908598487226e-06 - sys_36: 1.060142703231449e-05 - sys_37: 1.9923449041793833e-05 - sys_38: 3.130718482924489e-06 - sys_39: 9.800093598912354e-06 - sys_40: -2.096099532405574e-05 - sys_41: 9.373740811821575e-06 - sys_42: 7.256731353875657e-06 - sys_43: 2.543380412717439e-07 - sys_44: -2.1714459422880685e-05 - sys_45: 1.6087047736703096e-05 - sys_46: -3.89548504047662e-05 - sys_47: -5.431434246191443e-05 - sys_48: 6.932791109463223e-05 - sys_49: 1.5474831855534645e-05 - sys_50: 0.00037113542494003274 - sys_51: 0.00013359733801602053 - sys_52: -0.001431996473686652 - sys_53: -0.0006691412348854212 - sys_54: 0.00023226151201889545 + sys_0: -5.5068210227737366e-09 + sys_1: 2.739252212311623e-08 + sys_2: 1.1137868577459414e-06 + sys_3: -1.2992980376022709e-06 + sys_4: -5.087499552638387e-07 + sys_5: 1.0589525722935463e-07 + sys_6: 9.605686614129738e-07 + sys_7: -3.6379546498117437e-06 + sys_8: 1.3791167702728454e-07 + sys_9: 3.2530494421965074e-06 + sys_10: 6.006400597790555e-07 + sys_11: -3.953712520580469e-07 + sys_12: -1.768104506041108e-06 + sys_13: 7.63994035807679e-07 + sys_14: -3.433164290810318e-07 + sys_15: 2.3258421629776675e-06 + sys_16: 2.7971493764047253e-06 + sys_17: -2.6558896400391096e-06 + sys_18: 4.1577575318210735e-06 + sys_19: -1.7493997308077395e-07 + sys_20: 1.121339404342589e-06 + sys_21: 9.63882945266009e-06 + sys_22: 5.755520798272959e-06 + sys_23: -3.3906501909214435e-06 + sys_24: -8.440681953529427e-07 + sys_25: -1.0938902531035669e-06 + sys_26: -4.623811527781791e-06 + sys_27: -3.722796766162645e-06 + sys_28: -3.4930777311405853e-06 + sys_29: -4.74298514768449e-07 + sys_30: -2.180963231076523e-06 + sys_31: 6.235986392973982e-06 + sys_32: 1.768623707801043e-05 + sys_33: -5.726486843199141e-06 + sys_34: 2.0565394617255574e-06 + sys_35: 3.22569085985605e-06 + sys_36: -1.0601427032312232e-05 + sys_37: -1.9923449041798173e-05 + sys_38: -3.1307184829211135e-06 + sys_39: 9.8000935989021e-06 + sys_40: 2.096099532405093e-05 + sys_41: -9.373740811813869e-06 + sys_42: -7.256731353872264e-06 + sys_43: 2.5433804127131156e-07 + sys_44: -2.171445942285181e-05 + sys_45: 1.608704773668897e-05 + sys_46: -3.895485040473507e-05 + sys_47: -5.4314342461898014e-05 + sys_48: 6.932791109461219e-05 + sys_49: 1.5474831855502068e-05 + sys_50: 0.00037113542493986344 + sys_51: 0.00013359733801590842 + sys_52: -0.0014319964736864798 + sys_53: -0.0006691412348853373 + sys_54: 0.00023226151201865983 - pol: 0.00026000000000000003 lumi: 0.0005 - sys_0: -1.6713648631843347e-08 - sys_1: 8.507211557487013e-08 - sys_2: 1.9034110932635708e-06 - sys_3: -1.1910558281776848e-06 - sys_4: -2.1058523653469666e-06 - sys_5: 2.9864674166434496e-07 - sys_6: 4.226884208954114e-06 - sys_7: -6.544450063481272e-06 - sys_8: 4.074250963919467e-06 - sys_9: 5.707076639490448e-06 - sys_10: 1.2813744110015189e-06 - sys_11: 2.5559729003532106e-07 - sys_12: 3.7830117987222475e-06 - sys_13: -1.4372090803130597e-06 - sys_14: 1.1976095739202343e-06 - sys_15: -8.649686031399713e-06 - sys_16: -1.087470099546647e-05 - sys_17: 5.074088039905319e-06 - sys_18: -7.961320292181775e-06 - sys_19: 1.890517327436923e-07 - sys_20: -2.1009540827966806e-06 - sys_21: -2.6038125974001887e-05 - sys_22: -1.4481862054348523e-05 - sys_23: -5.720284402087226e-06 - sys_24: 4.289922931660878e-06 - sys_25: 3.5033359259920206e-06 - sys_26: 9.530666773555164e-06 - sys_27: 7.2030923186474694e-06 - sys_28: 7.425554777468945e-06 - sys_29: 3.050579694664354e-07 - sys_30: -2.572204371456083e-06 - sys_31: -1.3321261063110006e-05 - sys_32: -5.32542309620597e-05 - sys_33: 1.5330571680739146e-05 - sys_34: -1.0519058295030789e-05 - sys_35: -8.759016948095886e-06 - sys_36: 2.499441513020369e-05 - sys_37: 3.992095199103468e-05 - sys_38: 1.2844149140967452e-05 - sys_39: 1.8730208964982052e-05 - sys_40: -5.822611659064576e-05 - sys_41: 2.9278247161608315e-05 - sys_42: 1.0723165962028554e-05 - sys_43: 5.481015891147782e-06 - sys_44: -4.895761555351499e-05 - sys_45: 3.465089084961219e-05 - sys_46: -0.00014218771934916492 - sys_47: -0.00027194474632430415 - sys_48: 0.0017848888213523267 - sys_49: 8.249064762344913e-06 - sys_50: 1.7663707667548472e-05 - sys_51: 2.6307349222720505e-05 - sys_52: 0.0001983428360535271 - sys_53: -0.00015667196741128093 - sys_54: 0.000198245003893842 + sys_0: -1.671364863114019e-08 + sys_1: 8.507211557666997e-08 + sys_2: 1.9034110932647554e-06 + sys_3: -1.1910558281769236e-06 + sys_4: -2.1058523653446805e-06 + sys_5: 2.9864674166548766e-07 + sys_6: 4.22688420895556e-06 + sys_7: -6.544450063480887e-06 + sys_8: 4.074250963918551e-06 + sys_9: 5.707076639491194e-06 + sys_10: 1.2813744110025008e-06 + sys_11: -2.5559729003320634e-07 + sys_12: -3.783011798718431e-06 + sys_13: 1.437209080312844e-06 + sys_14: -1.1976095739210294e-06 + sys_15: 8.649686031397404e-06 + sys_16: 1.0874700995467436e-05 + sys_17: -5.074088039904608e-06 + sys_18: 7.961320292184038e-06 + sys_19: -1.8905173274743137e-07 + sys_20: 2.1009540827933823e-06 + sys_21: 2.6038125974004828e-05 + sys_22: 1.4481862054347826e-05 + sys_23: -5.7202844020879865e-06 + sys_24: -4.289922931662532e-06 + sys_25: -3.503335925992055e-06 + sys_26: -9.530666773556805e-06 + sys_27: -7.203092318648162e-06 + sys_28: -7.425554777469874e-06 + sys_29: -3.0505796946817687e-07 + sys_30: -2.5722043714576167e-06 + sys_31: 1.3321261063111514e-05 + sys_32: 5.3254230962067344e-05 + sys_33: -1.533057168074273e-05 + sys_34: 1.0519058295031925e-05 + sys_35: 8.759016948120489e-06 + sys_36: -2.4994415130197292e-05 + sys_37: -3.992095199104201e-05 + sys_38: -1.2844149140970216e-05 + sys_39: 1.8730208964985545e-05 + sys_40: 5.8226116590649e-05 + sys_41: -2.92782471616029e-05 + sys_42: -1.0723165962030647e-05 + sys_43: 5.481015891148346e-06 + sys_44: -4.895761555350707e-05 + sys_45: 3.4650890849619166e-05 + sys_46: -0.00014218771934914804 + sys_47: -0.0002719447463241775 + sys_48: 0.0017848888213523224 + sys_49: 8.249064762351028e-06 + sys_50: 1.7663707667552833e-05 + sys_51: 2.6307349222720177e-05 + sys_52: 0.00019834283605354032 + sys_53: -0.00015667196741126808 + sys_54: 0.00019824500389384323 - pol: 0.0003835 lumi: 0.0005 - sys_0: -1.0220742150566305e-07 - sys_1: 5.245833161303965e-06 - sys_2: 2.482701320279961e-06 - sys_3: -2.4906626639965587e-06 - sys_4: -1.6341639050774432e-06 - sys_5: 2.2778402665689073e-06 - sys_6: 3.5291193941398643e-06 - sys_7: -7.519784471273873e-06 - sys_8: 2.229366729988681e-05 - sys_9: 6.571400895634383e-06 - sys_10: 2.66290568712464e-06 - sys_11: -7.666946773618737e-07 - sys_12: 6.140639749270558e-06 - sys_13: -1.9637233448317e-06 - sys_14: 4.625236898003928e-06 - sys_15: -3.6336695208200157e-05 - sys_16: -3.3180544170339334e-05 - sys_17: 5.984213557227238e-06 - sys_18: -9.109220336764415e-06 - sys_19: -3.4965045332011883e-06 - sys_20: -2.811492869009659e-06 - sys_21: -6.0866863200135444e-05 - sys_22: -3.0580017474865036e-05 - sys_23: -8.408329117542404e-06 - sys_24: 3.125570197744028e-05 - sys_25: 1.54034555688977e-05 - sys_26: 1.3950401734360129e-05 - sys_27: 8.108708465422818e-06 - sys_28: 1.7537963646322367e-05 - sys_29: -1.293934253847924e-06 - sys_30: -1.7353977835793513e-06 - sys_31: -7.685742914905494e-06 - sys_32: -0.00012132797681576696 - sys_33: 2.7019119695541595e-05 - sys_34: -5.1439360079425735e-05 - sys_35: -2.909882383958611e-05 - sys_36: 5.286882001812904e-05 - sys_37: 9.430068016414139e-05 - sys_38: 3.3008286402863915e-05 - sys_39: 4.8177735622847465e-06 - sys_40: -0.0001409644345823095 - sys_41: 8.301405550411476e-05 - sys_42: -1.9887152331947547e-06 - sys_43: 1.2855954184188334e-05 - sys_44: -3.227446038817147e-05 - sys_45: -1.0584001633689927e-05 - sys_46: -1.4535743200222368e-05 - sys_47: 7.265573504438368e-05 - sys_48: 8.63082689083722e-05 - sys_49: 0.00010263349387993995 - sys_50: 6.751309807748266e-05 - sys_51: -0.0005589358672759232 - sys_52: -0.00045104260152289196 - sys_53: 0.0011732981269151682 - sys_54: 0.0008542942163520528 + sys_0: -1.0220742150625029e-07 + sys_1: 5.245833161305744e-06 + sys_2: 2.4827013202811917e-06 + sys_3: -2.4906626639954906e-06 + sys_4: -1.6341639050756877e-06 + sys_5: 2.277840266569245e-06 + sys_6: 3.5291193941408417e-06 + sys_7: -7.519784471273229e-06 + sys_8: 2.2293667299888054e-05 + sys_9: 6.571400895634112e-06 + sys_10: 2.6629056871251533e-06 + sys_11: 7.666946773599828e-07 + sys_12: -6.140639749272081e-06 + sys_13: 1.9637233448327388e-06 + sys_14: -4.625236898002353e-06 + sys_15: 3.633669520820309e-05 + sys_16: 3.318054417033743e-05 + sys_17: -5.984213557225449e-06 + sys_18: 9.109220336762655e-06 + sys_19: 3.496504533200007e-06 + sys_20: 2.811492869009652e-06 + sys_21: 6.0866863200140425e-05 + sys_22: 3.0580017474862955e-05 + sys_23: -8.408329117541739e-06 + sys_24: -3.12557019774423e-05 + sys_25: -1.5403455568895343e-05 + sys_26: -1.3950401734361291e-05 + sys_27: -8.108708465424516e-06 + sys_28: -1.7537963646322333e-05 + sys_29: 1.2939342538477447e-06 + sys_30: -1.7353977835784655e-06 + sys_31: 7.685742914905643e-06 + sys_32: 0.00012132797681576782 + sys_33: -2.7019119695544847e-05 + sys_34: 5.143936007942572e-05 + sys_35: 2.909882383963309e-05 + sys_36: -5.2868820018106304e-05 + sys_37: -9.43006801641451e-05 + sys_38: -3.300828640286397e-05 + sys_39: 4.817773562290018e-06 + sys_40: 0.00014096443458231102 + sys_41: -8.301405550411339e-05 + sys_42: 1.9887152331887755e-06 + sys_43: 1.2855954184187937e-05 + sys_44: -3.227446038817525e-05 + sys_45: -1.0584001633713763e-05 + sys_46: -1.453574320022253e-05 + sys_47: 7.265573504437635e-05 + sys_48: 8.630826890836747e-05 + sys_49: 0.00010263349387992378 + sys_50: 6.751309807748284e-05 + sys_51: -0.0005589358672759594 + sys_52: -0.000451042601522821 + sys_53: 0.0011732981269153206 + sys_54: 0.0008542942163522897 - pol: 0.0001755 lumi: 0.0005 - sys_0: -3.306559247974167e-07 - sys_1: 2.3963771038924308e-05 - sys_2: 1.3380565868564755e-06 - sys_3: -1.5306657536456862e-06 - sys_4: -7.616651461963939e-07 - sys_5: 4.580367369537355e-06 - sys_6: 8.070289328571305e-07 - sys_7: -6.166209846946845e-06 - sys_8: 6.359328211436958e-05 - sys_9: 4.262908233499366e-06 - sys_10: 1.0834986645638136e-07 - sys_11: -1.1564419849840946e-06 - sys_12: 4.404777773631566e-06 - sys_13: -6.840463722257582e-06 - sys_14: 9.760697658898952e-06 - sys_15: -6.970339964636184e-05 - sys_16: -4.0697205804903156e-05 - sys_17: 8.08151389337509e-06 - sys_18: -1.010497991972664e-05 - sys_19: -1.5067914575676083e-05 - sys_20: -8.507409343408245e-06 - sys_21: -5.885803060339501e-05 - sys_22: -1.4741402143984045e-05 - sys_23: -6.030363102713063e-06 - sys_24: 8.904584165809768e-05 - sys_25: 9.066841757882706e-06 - sys_26: 2.8912102495721512e-05 - sys_27: 1.6907285240349474e-06 - sys_28: 4.8192180504714964e-05 - sys_29: -4.945225582292102e-06 - sys_30: 2.17157295198101e-06 - sys_31: 3.074643054880254e-06 - sys_32: -0.00013018298326901475 - sys_33: 1.711874161639387e-05 - sys_34: -0.00011679981375860605 - sys_35: -9.127042092134025e-05 - sys_36: 8.328622085926798e-05 - sys_37: 5.191616757786581e-05 - sys_38: 7.988758311397349e-05 - sys_39: -5.7471926642166366e-05 - sys_40: -0.00016694539728376396 - sys_41: 0.0001662684257525695 - sys_42: -6.278477784928502e-05 - sys_43: 1.0000715315446381e-05 - sys_44: 3.457182568324471e-05 - sys_45: -0.00015139392983054938 - sys_46: 0.0008941331707266404 - sys_47: -0.0016620260625612227 - sys_48: -0.00018015099974277488 - sys_49: -4.5170209116394797e-05 - sys_50: 8.406940708987477e-06 - sys_51: -3.612745226256384e-05 - sys_52: 7.569621418054519e-06 - sys_53: 4.4219488111829463e-05 - sys_54: 3.652372167785963e-05 + sys_0: -3.3065592479679845e-07 + sys_1: 2.396377103892457e-05 + sys_2: 1.3380565868577494e-06 + sys_3: -1.5306657536449497e-06 + sys_4: -7.616651461955015e-07 + sys_5: 4.580367369537146e-06 + sys_6: 8.070289328577026e-07 + sys_7: -6.166209846946555e-06 + sys_8: 6.359328211436801e-05 + sys_9: 4.262908233500091e-06 + sys_10: 1.0834986645776598e-07 + sys_11: 1.1564419849833615e-06 + sys_12: -4.404777773632005e-06 + sys_13: 6.840463722257636e-06 + sys_14: -9.76069765889863e-06 + sys_15: 6.970339964636058e-05 + sys_16: 4.069720580490159e-05 + sys_17: -8.081513893371897e-06 + sys_18: 1.0104979919726966e-05 + sys_19: 1.5067914575674133e-05 + sys_20: 8.507409343407888e-06 + sys_21: 5.8858030603399844e-05 + sys_22: 1.4741402143982799e-05 + sys_23: -6.030363102713861e-06 + sys_24: -8.904584165809853e-05 + sys_25: -9.066841757875989e-06 + sys_26: -2.891210249572574e-05 + sys_27: -1.6907285240351918e-06 + sys_28: -4.819218050471454e-05 + sys_29: 4.945225582290772e-06 + sys_30: 2.1715729519806697e-06 + sys_31: -3.0746430548795483e-06 + sys_32: 0.00013018298326901683 + sys_33: -1.7118741616402055e-05 + sys_34: 0.00011679981375860463 + sys_35: 9.127042092140843e-05 + sys_36: -8.328622085919037e-05 + sys_37: -5.191616757785829e-05 + sys_38: -7.988758311397353e-05 + sys_39: -5.7471926642160653e-05 + sys_40: 0.00016694539728375634 + sys_41: -0.00016626842575256478 + sys_42: 6.278477784928185e-05 + sys_43: 1.0000715315454323e-05 + sys_44: 3.4571825683229327e-05 + sys_45: -0.00015139392983058272 + sys_46: 0.0008941331707266641 + sys_47: -0.0016620260625612026 + sys_48: -0.0001801509997427845 + sys_49: -4.517020911638868e-05 + sys_50: 8.406940708978764e-06 + sys_51: -3.612745226256415e-05 + sys_52: 7.569621418096348e-06 + sys_53: 4.4219488111842596e-05 + sys_54: 3.652372167786713e-05 - pol: 0.0004485 lumi: 0.0005 - sys_0: -3.445054598318295e-06 - sys_1: 8.715067735216908e-05 - sys_2: 3.078977181126551e-06 - sys_3: -3.915549273411908e-06 - sys_4: -1.1582390678906375e-06 - sys_5: 1.3584688173704005e-05 - sys_6: 4.005825250141189e-06 - sys_7: -5.952362822772893e-06 - sys_8: 0.00010757305677835142 - sys_9: 1.3898547256001118e-05 - sys_10: -1.695673332817857e-05 - sys_11: -4.928219106220575e-06 - sys_12: 1.4276730678549667e-05 - sys_13: -2.0771466916085787e-05 - sys_14: 2.4248710471272084e-05 - sys_15: -9.730412093595128e-05 - sys_16: -2.0774368536169926e-05 - sys_17: 2.56149350734144e-05 - sys_18: -2.727555109713215e-05 - sys_19: -6.61248759943897e-05 - sys_20: -4.3457619441903405e-05 - sys_21: -3.678672232456824e-05 - sys_22: 2.9795018814194244e-06 - sys_23: -3.182125088360519e-06 - sys_24: 0.00017123868630870013 - sys_25: -2.5867973214167466e-05 - sys_26: 0.0001134191757108326 - sys_27: -1.894348654007404e-05 - sys_28: 0.00014942605279869253 - sys_29: -1.7841970357197793e-05 - sys_30: 3.2881241299791685e-06 - sys_31: 3.272818659055348e-05 - sys_32: -8.564899372004523e-05 - sys_33: 3.2834098589901165e-06 - sys_34: -0.0001575507953304718 - sys_35: -0.00021349838044825147 - sys_36: 0.00014387320408088968 - sys_37: -3.82422589119752e-06 - sys_38: 0.00010443811943392616 - sys_39: -0.00019517624606405794 - sys_40: -9.246888639923556e-05 - sys_41: 0.00022420174286191938 - sys_42: -0.00024048345914626882 - sys_43: -1.637317476187498e-05 - sys_44: 0.0010436167252547515 - sys_45: 0.002128188083228883 - sys_46: -6.16814422778658e-05 - sys_47: -0.00010852506080969159 - sys_48: -3.372398099014073e-05 - sys_49: -2.051320634753333e-05 - sys_50: 7.999391117825363e-06 - sys_51: -5.3568325628144064e-05 - sys_52: 9.709891318091707e-06 - sys_53: -8.489135480679004e-06 - sys_54: 3.2947994033049656e-06 + sys_0: -3.4450545983169497e-06 + sys_1: 8.71506773521692e-05 + sys_2: 3.078977181129096e-06 + sys_3: -3.915549273410983e-06 + sys_4: -1.1582390678892246e-06 + sys_5: 1.3584688173704034e-05 + sys_6: 4.005825250142119e-06 + sys_7: -5.952362822772444e-06 + sys_8: 0.00010757305677835099 + sys_9: 1.3898547256004757e-05 + sys_10: -1.6956733328173845e-05 + sys_11: 4.928219106221356e-06 + sys_12: -1.4276730678549822e-05 + sys_13: 2.077146691608659e-05 + sys_14: -2.4248710471271217e-05 + sys_15: 9.73041209359522e-05 + sys_16: 2.0774368536168418e-05 + sys_17: -2.5614935073415778e-05 + sys_18: 2.7275551097134255e-05 + sys_19: 6.612487599438832e-05 + sys_20: 4.345761944190064e-05 + sys_21: 3.678672232457071e-05 + sys_22: -2.979501881423231e-06 + sys_23: -3.182125088361433e-06 + sys_24: -0.0001712386863086968 + sys_25: 2.586797321418017e-05 + sys_26: -0.0001134191757108351 + sys_27: 1.8943486540077136e-05 + sys_28: -0.00014942605279869494 + sys_29: 1.7841970357197545e-05 + sys_30: 3.288124129979031e-06 + sys_31: -3.272818659055411e-05 + sys_32: 8.564899372004614e-05 + sys_33: -3.2834098590045753e-06 + sys_34: 0.00015755079533047634 + sys_35: 0.00021349838044836515 + sys_36: -0.00014387320408071403 + sys_37: 3.824225891206884e-06 + sys_38: -0.00010443811943392646 + sys_39: -0.0001951762460640621 + sys_40: 9.246888639923771e-05 + sys_41: -0.00022420174286192352 + sys_42: 0.00024048345914627262 + sys_43: -1.6373174761865255e-05 + sys_44: 0.001043616725254663 + sys_45: 0.0021281880832288978 + sys_46: -6.168144227785854e-05 + sys_47: -0.00010852506080968965 + sys_48: -3.3723980990140915e-05 + sys_49: -2.0513206347530766e-05 + sys_50: 7.999391117821867e-06 + sys_51: -5.356832562814267e-05 + sys_52: 9.709891318098457e-06 + sys_53: -8.489135480674867e-06 + sys_54: 3.2947994033064322e-06 - pol: 0.0005655 lumi: 0.0005 - sys_0: -3.1177566337896694e-05 - sys_1: 0.00016190513702466595 - sys_2: 2.9871546705156885e-06 - sys_3: -2.4403801133114067e-06 - sys_4: -3.336149073487851e-06 - sys_5: 6.155991880182924e-05 - sys_6: 4.099503310835715e-06 - sys_7: -1.586452201820984e-05 - sys_8: 0.00011083125398813991 - sys_9: 4.389658190589926e-05 - sys_10: -6.714477535162125e-05 - sys_11: -2.6894072514311257e-05 - sys_12: 4.529853195915236e-05 - sys_13: -9.980701969987461e-05 - sys_14: 8.563444542006823e-05 - sys_15: -8.64892600867386e-05 - sys_16: 7.138851026974831e-06 - sys_17: 0.0001239675062645892 - sys_18: -5.355714146199688e-05 - sys_19: -0.00020177960353825664 - sys_20: -0.00017093770792937638 - sys_21: -3.15049291353163e-06 - sys_22: 1.0944314765156176e-05 - sys_23: 5.543271051337811e-05 - sys_24: 0.00020084459865318366 - sys_25: -7.200259473394065e-05 - sys_26: 0.0003235355039072506 - sys_27: -0.00013276257475588698 - sys_28: 0.00028712631197225615 - sys_29: -4.954048713617774e-05 - sys_30: 5.482959071557022e-05 - sys_31: 0.00019131275247965954 - sys_32: -1.4048159449728757e-05 - sys_33: -4.374271709703631e-06 - sys_34: -0.00015447079679663418 - sys_35: -0.00036784856803077735 - sys_36: 0.00022127706035147572 - sys_37: -3.732958106840142e-05 - sys_38: 2.5674758807247903e-05 - sys_39: -0.0009575843156984673 - sys_40: 0.00010694549767644899 - sys_41: 0.00034649877199208375 - sys_42: 0.0027884993674921997 - sys_43: -0.0010282225292048426 - sys_44: -0.00014291286027106375 - sys_45: 0.00014170081918189075 - sys_46: -5.677794297337527e-05 - sys_47: -4.5800721258050445e-05 - sys_48: -2.0337272043228966e-05 - sys_49: -5.009789717876033e-06 - sys_50: 3.3159712072074815e-06 - sys_51: -2.0850883443268842e-05 - sys_52: 9.374338576575043e-06 - sys_53: -8.352098432696673e-06 - sys_54: 4.137255227625898e-07 + sys_0: -3.1177566337896396e-05 + sys_1: 0.0001619051370246658 + sys_2: 2.9871546705192626e-06 + sys_3: -2.440380113310764e-06 + sys_4: -3.3361490734872262e-06 + sys_5: 6.155991880182917e-05 + sys_6: 4.0995033108363136e-06 + sys_7: -1.586452201820974e-05 + sys_8: 0.0001108312539881392 + sys_9: 4.3896581905912874e-05 + sys_10: -6.714477535161308e-05 + sys_11: 2.6894072514314625e-05 + sys_12: -4.5298531959153206e-05 + sys_13: 9.980701969987697e-05 + sys_14: -8.563444542006818e-05 + sys_15: 8.648926008673865e-05 + sys_16: -7.138851026972731e-06 + sys_17: -0.0001239675062645879 + sys_18: 5.355714146199966e-05 + sys_19: 0.00020177960353825135 + sys_20: 0.00017093770792937925 + sys_21: 3.1504929135284954e-06 + sys_22: -1.0944314765150888e-05 + sys_23: 5.543271051337728e-05 + sys_24: -0.00020084459865316997 + sys_25: 7.200259473395435e-05 + sys_26: -0.0003235355039072538 + sys_27: 0.00013276257475589037 + sys_28: -0.00028712631197224786 + sys_29: 4.954048713617621e-05 + sys_30: 5.482959071557191e-05 + sys_31: -0.00019131275247965618 + sys_32: 1.4048159449728687e-05 + sys_33: 4.374271709687488e-06 + sys_34: 0.0001544707967966351 + sys_35: 0.00036784856803094974 + sys_36: -0.0002212770603511594 + sys_37: 3.732958106842321e-05 + sys_38: -2.5674758807243407e-05 + sys_39: -0.000957584315698473 + sys_40: -0.00010694549767640635 + sys_41: -0.0003464987719920674 + sys_42: -0.002788499367492192 + sys_43: -0.001028222529204872 + sys_44: -0.00014291286027106522 + sys_45: 0.00014170081918188495 + sys_46: -5.677794297337344e-05 + sys_47: -4.5800721258054124e-05 + sys_48: -2.033727204322743e-05 + sys_49: -5.009789717874758e-06 + sys_50: 3.3159712072064655e-06 + sys_51: -2.085088344326663e-05 + sys_52: 9.374338576579137e-06 + sys_53: -8.352098432698858e-06 + sys_54: 4.1372552276093813e-07 - pol: 0.000975 lumi: 0.0005 - sys_0: -0.00011624681538156114 - sys_1: 0.00017494457506970134 - sys_2: 1.1759937829339071e-05 - sys_3: -1.2358971115159456e-05 - sys_4: -1.2776712629348762e-05 - sys_5: 0.00024644770575401443 - sys_6: 1.2824434862720983e-05 - sys_7: -4.7562926296495666e-05 - sys_8: 7.482616506567033e-05 - sys_9: 0.00015024039271191924 - sys_10: -9.8789944446949e-05 - sys_11: -0.00013435447755523827 - sys_12: 0.0001458643088745315 - sys_13: -0.00039061134517290693 - sys_14: 0.00015553424957055035 - sys_15: -3.0129084176605464e-05 - sys_16: 1.964705497954716e-05 - sys_17: 0.0004304413055506528 - sys_18: 9.4050881486392e-05 - sys_19: -0.00037954093670543554 - sys_20: -0.00046674579447836777 - sys_21: 2.3452696588559558e-05 - sys_22: 1.566338523977522e-05 - sys_23: 0.00031560734846120746 - sys_24: 0.00018548188993241512 - sys_25: -0.00012344465577655543 - sys_26: 0.0007172534651135219 - sys_27: -0.000740510219005201 - sys_28: 0.0007895579016721331 - sys_29: -0.00029640620547229313 - sys_30: 0.0015314511239551546 - sys_31: -0.004110566021820337 - sys_32: -0.0002208257424087715 - sys_33: 6.33666033878648e-05 - sys_34: 2.036282784052194e-05 - sys_35: 0.00024101168001640247 - sys_36: -9.560020901077079e-05 - sys_37: 2.815695187693195e-05 - sys_38: 9.553677303684737e-05 - sys_39: 0.00035840301416626986 - sys_40: -2.534299071169617e-05 - sys_41: 5.338899022757845e-05 - sys_42: 0.00012808025717778965 - sys_43: -2.1169713519570132e-05 - sys_44: -5.762617222583528e-05 - sys_45: 4.056279113613857e-05 - sys_46: -1.585462753718355e-05 - sys_47: -6.995875523304517e-06 - sys_48: -1.3346745000783663e-05 - sys_49: 2.160672031126353e-06 - sys_50: 2.237071287429767e-06 - sys_51: -1.064425439155315e-06 - sys_52: 8.100652819121784e-06 - sys_53: -6.9839676618968e-06 - sys_54: 3.7979550596807263e-07 + sys_0: -0.00011624681538156069 + sys_1: 0.0001749445750697014 + sys_2: 1.175993782934249e-05 + sys_3: -1.2358971115159881e-05 + sys_4: -1.2776712629346073e-05 + sys_5: 0.0002464477057540151 + sys_6: 1.2824434862721912e-05 + sys_7: -4.756292629649519e-05 + sys_8: 7.482616506567217e-05 + sys_9: 0.00015024039271194234 + sys_10: -9.87899444469216e-05 + sys_11: 0.00013435447755523613 + sys_12: -0.0001458643088745315 + sys_13: 0.0003906113451729145 + sys_14: -0.00015553424957054582 + sys_15: 3.0129084176608425e-05 + sys_16: -1.9647054979547407e-05 + sys_17: -0.000430441305550648 + sys_18: -9.405088148638862e-05 + sys_19: 0.00037954093670543326 + sys_20: 0.0004667457944783695 + sys_21: -2.3452696588562655e-05 + sys_22: -1.5663385239762934e-05 + sys_23: 0.00031560734846120003 + sys_24: -0.00018548188993239086 + sys_25: 0.00012344465577657256 + sys_26: -0.0007172534651135145 + sys_27: 0.0007405102190052179 + sys_28: -0.0007895579016721117 + sys_29: 0.00029640620547229037 + sys_30: 0.0015314511239551461 + sys_31: 0.004110566021820336 + sys_32: 0.00022082574240880524 + sys_33: -6.336660338786504e-05 + sys_34: -2.036282784052582e-05 + sys_35: -0.0002410116800164715 + sys_36: 9.56002090105684e-05 + sys_37: -2.8156951876960082e-05 + sys_38: -9.553677303684977e-05 + sys_39: 0.00035840301416627024 + sys_40: 2.5342990711688575e-05 + sys_41: -5.338899022757339e-05 + sys_42: -0.0001280802571777871 + sys_43: -2.1169713519571318e-05 + sys_44: -5.7626172225835386e-05 + sys_45: 4.0562791136135155e-05 + sys_46: -1.5854627537182423e-05 + sys_47: -6.995875523305257e-06 + sys_48: -1.3346745000783275e-05 + sys_49: 2.160672031126361e-06 + sys_50: 2.2370712874279675e-06 + sys_51: -1.0644254391545346e-06 + sys_52: 8.100652819121915e-06 + sys_53: -6.983967661897691e-06 + sys_54: 3.7979550596756256e-07 - pol: 0.0012675 lumi: 0.0005 - sys_0: -0.00020697677037853602 - sys_1: 0.0001303266509736854 - sys_2: 4.144395721713278e-05 - sys_3: -3.6170611177530576e-05 - sys_4: -7.115973289439701e-05 - sys_5: 0.00044911995003678925 - sys_6: 3.4224140848569673e-06 - sys_7: -0.00013123827385293124 - sys_8: 3.40489648324984e-05 - sys_9: 0.0005098932735313479 - sys_10: -6.7749378986402165e-06 - sys_11: -0.0006473314042077218 - sys_12: 0.00022757438903579322 - sys_13: -0.001218429100656619 - sys_14: -2.9866522401058875e-05 - sys_15: 4.2501845089499964e-05 - sys_16: 1.7188648497985847e-05 - sys_17: 0.0009566381356044701 - sys_18: 0.0016573617228592056 - sys_19: -0.0009606723743130947 - sys_20: -0.0018190564862724128 - sys_21: 9.40469047011792e-05 - sys_22: 6.631771576900178e-05 - sys_23: -0.006472543534827582 - sys_24: -0.0001366986543882536 - sys_25: 5.721214097838624e-05 - sys_26: -0.0003124102352018091 - sys_27: 4.2573376585969664e-05 - sys_28: 6.896955049194162e-05 - sys_29: 0.00018368954404154986 - sys_30: -0.0003637874626566536 - sys_31: -0.00019092995134210226 - sys_32: -4.761455636178189e-05 - sys_33: 2.954860815052817e-05 - sys_34: -2.7530568471066124e-05 - sys_35: -6.251945936630198e-07 - sys_36: 2.0982798601597276e-05 - sys_37: -3.788773136820385e-07 - sys_38: 4.292871500287814e-05 - sys_39: 0.00012349940457800551 - sys_40: -8.043651793062205e-06 - sys_41: 2.1886077821140174e-05 - sys_42: 3.683924517409799e-05 - sys_43: -9.769791142635403e-06 - sys_44: -1.9694438206211038e-05 - sys_45: 1.0092791952778092e-05 - sys_46: -2.909636410031517e-06 - sys_47: 2.9429183845575976e-07 - sys_48: -3.7843055471097545e-06 - sys_49: 1.5563970525559356e-06 - sys_50: 5.577191428665169e-07 - sys_51: 1.3018557417355076e-06 - sys_52: 2.975875674352566e-06 - sys_53: -2.550626656575773e-06 - sys_54: -7.89802795286419e-09 + sys_0: -0.00020697677037853616 + sys_1: 0.00013032665097368262 + sys_2: 4.144395721713675e-05 + sys_3: -3.617061117753066e-05 + sys_4: -7.115973289439512e-05 + sys_5: 0.00044911995003678936 + sys_6: 3.422414084855491e-06 + sys_7: -0.0001312382738529295 + sys_8: 3.404896483250197e-05 + sys_9: 0.0005098932735313515 + sys_10: -6.774937898535542e-06 + sys_11: 0.0006473314042077154 + sys_12: -0.00022757438903579886 + sys_13: 0.0012184291006566244 + sys_14: 2.9866522401070683e-05 + sys_15: -4.250184508949183e-05 + sys_16: -1.7188648497987652e-05 + sys_17: -0.0009566381356044709 + sys_18: -0.0016573617228591879 + sys_19: 0.0009606723743131269 + sys_20: 0.0018190564862724113 + sys_21: -9.404690470107863e-05 + sys_22: -6.631771576925387e-05 + sys_23: -0.006472543534827577 + sys_24: 0.00013669865438824464 + sys_25: -5.7212140978394994e-05 + sys_26: 0.00031241023520181126 + sys_27: -4.2573376585961905e-05 + sys_28: -6.896955049194631e-05 + sys_29: -0.00018368954404154238 + sys_30: -0.0003637874626566548 + sys_31: 0.00019092995134209766 + sys_32: 4.761455636178206e-05 + sys_33: -2.9548608150528873e-05 + sys_34: 2.753056847106391e-05 + sys_35: 6.251945936808891e-07 + sys_36: -2.0982798601596616e-05 + sys_37: 3.7887731368040077e-07 + sys_38: -4.292871500287734e-05 + sys_39: 0.00012349940457800584 + sys_40: 8.043651793060128e-06 + sys_41: -2.1886077821140215e-05 + sys_42: -3.683924517409783e-05 + sys_43: -9.769791142635747e-06 + sys_44: -1.969443820621115e-05 + sys_45: 1.0092791952777675e-05 + sys_46: -2.909636410031567e-06 + sys_47: 2.942918384556667e-07 + sys_48: -3.784305547109871e-06 + sys_49: 1.5563970525558947e-06 + sys_50: 5.577191428653767e-07 + sys_51: 1.3018557417357155e-06 + sys_52: 2.975875674352789e-06 + sys_53: -2.550626656575861e-06 + sys_54: -7.898027953530943e-09 - pol: 0.0021645 lumi: 0.0005 - sys_0: -0.00019226826959182054 - sys_1: 8.248379338950807e-05 - sys_2: 0.00027391038713103923 - sys_3: -0.0001143184282684871 - sys_4: -0.0006660182786875622 - sys_5: 0.00035611535568171325 - sys_6: -0.0003375613341109298 - sys_7: -0.00021596235640522666 - sys_8: 3.1252714233162446e-05 - sys_9: 0.0018603021236224524 - sys_10: 0.00027754316852016196 - sys_11: -0.007054694139206729 - sys_12: 0.0085353352498143 - sys_13: 0.005049705544476256 - sys_14: 0.0014396878953105133 - sys_15: -2.1486057707783678e-05 - sys_16: -1.4310135745556155e-05 - sys_17: -0.00010923159274764999 - sys_18: -0.0005548352301624606 - sys_19: 0.00021621118188303653 - sys_20: 0.00011740579183420667 - sys_21: 1.20081827781675e-05 - sys_22: 6.141698742651994e-06 - sys_23: -0.00017082864831847544 - sys_24: -2.392577751623796e-05 - sys_25: -1.0589689068815441e-05 - sys_26: -1.5539930182591537e-06 - sys_27: -4.6545982612664605e-05 - sys_28: 8.287208541220436e-05 - sys_29: 0.00015049120801443951 - sys_30: -0.00020976847756331234 - sys_31: -6.885039895191138e-05 - sys_32: -2.2608683432405345e-05 - sys_33: 3.0247541600462747e-05 - sys_34: -2.085118554443842e-05 - sys_35: -4.7135817897337285e-07 - sys_36: 1.2874591410517985e-05 - sys_37: -5.346321542997382e-07 - sys_38: 1.4300255360083174e-05 - sys_39: 4.131148047332628e-05 - sys_40: -2.1539718824862692e-06 - sys_41: 5.724904661585658e-06 - sys_42: 8.912710280591665e-06 - sys_43: -1.913862023203634e-06 - sys_44: -3.952857675054004e-06 - sys_45: 6.959301525076316e-07 - sys_46: 6.493784466529273e-07 - sys_47: 1.5404502800721786e-06 - sys_48: -1.2242577211467465e-06 - sys_49: 8.123210815364671e-07 - sys_50: 1.2236700414675673e-07 - sys_51: 1.3759105106236719e-06 - sys_52: 1.1663722121304543e-06 - sys_53: -1.1552386626513135e-06 - sys_54: 1.1214667092579576e-08 + sys_0: -0.0001922682695918198 + sys_1: 8.248379338949827e-05 + sys_2: 0.00027391038713103967 + sys_3: -0.00011431842826849085 + sys_4: -0.0006660182786875591 + sys_5: 0.0003561153556817166 + sys_6: -0.000337561334110933 + sys_7: -0.00021596235640522463 + sys_8: 3.125271423316821e-05 + sys_9: 0.0018603021236223978 + sys_10: 0.0002775431685205406 + sys_11: 0.0070546941392067245 + sys_12: -0.008535335249814303 + sys_13: -0.00504970554447627 + sys_14: -0.0014396878953105508 + sys_15: 2.1486057707781425e-05 + sys_16: 1.4310135745558772e-05 + sys_17: 0.0001092315927476495 + sys_18: 0.0005548352301624554 + sys_19: -0.0002162111818830477 + sys_20: -0.00011740579183421243 + sys_21: -1.2008182778173426e-05 + sys_22: -6.141698742662588e-06 + sys_23: -0.00017082864831847395 + sys_24: 2.3925777516240453e-05 + sys_25: 1.0589689068813695e-05 + sys_26: 1.5539930182588289e-06 + sys_27: 4.654598261266596e-05 + sys_28: -8.287208541220833e-05 + sys_29: -0.00015049120801443518 + sys_30: -0.00020976847756331383 + sys_31: 6.885039895191192e-05 + sys_32: 2.260868343240635e-05 + sys_33: -3.024754160046387e-05 + sys_34: 2.0851185544436817e-05 + sys_35: 4.713581789838866e-07 + sys_36: -1.287459141051737e-05 + sys_37: 5.346321542997796e-07 + sys_38: -1.4300255360083402e-05 + sys_39: 4.1311480473326874e-05 + sys_40: 2.1539718824859296e-06 + sys_41: -5.72490466158545e-06 + sys_42: -8.912710280591576e-06 + sys_43: -1.913862023203563e-06 + sys_44: -3.952857675054201e-06 + sys_45: 6.959301525075621e-07 + sys_46: 6.493784466529925e-07 + sys_47: 1.5404502800721307e-06 + sys_48: -1.2242577211470571e-06 + sys_49: 8.123210815363746e-07 + sys_50: 1.2236700414621582e-07 + sys_51: 1.3759105106235787e-06 + sys_52: 1.166372212130406e-06 + sys_53: -1.1552386626513982e-06 + sys_54: 1.1214667092270596e-08 - pol: 0.0028405 lumi: 0.0005 - sys_0: -0.00012098225450670907 - sys_1: 6.0789693236933004e-05 - sys_2: 0.0022375170909480907 - sys_3: 0.00023739815901494 - sys_4: -0.0036887843920609185 - sys_5: 0.0003250303881546486 - sys_6: -0.005344332316351566 - sys_7: -0.02129126984565335 - sys_8: -8.827904845589508e-06 - sys_9: -0.0010693427313493659 - sys_10: -0.00019717534413783664 - sys_11: 0.0008914672490030538 - sys_12: 0.0001716461647427735 - sys_13: 0.00033585386710022734 - sys_14: 0.00015012419382282038 - sys_15: 4.4127091315889635e-06 - sys_16: -1.566006508273607e-07 - sys_17: 3.5566125083870905e-05 - sys_18: -0.00012580014177032033 - sys_19: 4.47014745068638e-05 - sys_20: 1.502862116186592e-05 - sys_21: 5.092215736576258e-06 - sys_22: 2.493995847713682e-06 - sys_23: -2.814856923149159e-05 - sys_24: -9.687603845898797e-06 - sys_25: -5.711515691392399e-06 - sys_26: -1.231224797385536e-06 - sys_27: -3.148990103265279e-05 - sys_28: 3.6129528848914096e-05 - sys_29: 7.645482870197614e-05 - sys_30: -6.586396964070428e-05 - sys_31: -1.5711982989908898e-05 - sys_32: -3.3584386828978814e-06 - sys_33: 2.7599942271847843e-05 - sys_34: -1.1581200810959032e-05 - sys_35: 2.1807710616622894e-06 - sys_36: 4.144659605302365e-06 - sys_37: 1.5591175236310132e-07 - sys_38: 2.9538550688622485e-06 - sys_39: 8.558108846044575e-06 - sys_40: -2.8192985483199423e-07 - sys_41: 8.055161363054198e-07 - sys_42: 8.537414357400066e-07 - sys_43: 2.0702845050676031e-07 - sys_44: 5.18700129868322e-07 - sys_45: -8.294386814415483e-07 - sys_46: 7.175736016930708e-07 - sys_47: 1.2673806876240145e-06 - sys_48: -5.75965879768399e-07 - sys_49: 4.193036372994683e-07 - sys_50: 9.83798369009177e-08 - sys_51: 8.260516473911181e-07 - sys_52: 6.452305132476701e-07 - sys_53: -4.7024574113328823e-07 - sys_54: 8.287956405008234e-08 + sys_0: -0.0001209822545067098 + sys_1: 6.078969323686765e-05 + sys_2: 0.0022375170909480794 + sys_3: 0.00023739815901491456 + sys_4: -0.0036887843920609003 + sys_5: 0.00032503038815467016 + sys_6: -0.005344332316351606 + sys_7: -0.02129126984565332 + sys_8: -8.827904845591173e-06 + sys_9: -0.0010693427313493381 + sys_10: -0.000197175344138057 + sys_11: -0.0008914672490030538 + sys_12: -0.00017164616474276835 + sys_13: -0.00033585386710022967 + sys_14: -0.00015012419382282212 + sys_15: -4.4127091315908075e-06 + sys_16: 1.5660065082575968e-07 + sys_17: -3.556612508386909e-05 + sys_18: 0.00012580014177031922 + sys_19: -4.47014745068659e-05 + sys_20: -1.5028621161867484e-05 + sys_21: -5.0922157365785324e-06 + sys_22: -2.49399584771638e-06 + sys_23: -2.8148569231490962e-05 + sys_24: 9.68760384590002e-06 + sys_25: 5.7115156913920625e-06 + sys_26: 1.2312247973859156e-06 + sys_27: 3.1489901032654646e-05 + sys_28: -3.612952884891553e-05 + sys_29: -7.645482870197481e-05 + sys_30: -6.586396964070489e-05 + sys_31: 1.571198298990849e-05 + sys_32: 3.3584386828980966e-06 + sys_33: -2.759994227184871e-05 + sys_34: 1.1581200810957342e-05 + sys_35: -2.1807710616589873e-06 + sys_36: -4.1446596053040435e-06 + sys_37: -1.5591175236329233e-07 + sys_38: -2.9538550688623366e-06 + sys_39: 8.558108846045e-06 + sys_40: 2.8192985483184653e-07 + sys_41: -8.055161363054991e-07 + sys_42: -8.537414357402123e-07 + sys_43: 2.0702845050681153e-07 + sys_44: 5.187001298680236e-07 + sys_45: -8.29438681441218e-07 + sys_46: 7.175736016931112e-07 + sys_47: 1.2673806876239821e-06 + sys_48: -5.75965879768336e-07 + sys_49: 4.1930363729952066e-07 + sys_50: 9.837983690060901e-08 + sys_51: 8.260516473912242e-07 + sys_52: 6.452305132475802e-07 + sys_53: -4.702457411333261e-07 + sys_54: 8.287956405000737e-08 - pol: 0.0003575 lumi: 0.0005 - sys_0: -5.851303888694402e-05 - sys_1: 2.7996178433072823e-05 - sys_2: 0.023224629640945512 - sys_3: -0.036237034818124646 - sys_4: 0.008003515837841282 - sys_5: -3.813740102301659e-05 - sys_6: 0.0016701056177554957 - sys_7: -0.00040765834137889074 - sys_8: -1.7737129262864104e-06 - sys_9: 2.0394080809534508e-05 - sys_10: 6.787560104914701e-06 - sys_11: 0.0001641059785509825 - sys_12: 4.708863366410807e-05 - sys_13: 6.224118370277068e-05 - sys_14: 3.08313575523923e-05 - sys_15: 1.8950480174166717e-06 - sys_16: -6.133377871660353e-08 - sys_17: 7.329579428766248e-06 - sys_18: -2.5443810548522317e-05 - sys_19: 9.118589876708405e-06 - sys_20: 4.2020390144850865e-06 - sys_21: 1.359261726746838e-06 - sys_22: 6.758100137681983e-07 - sys_23: -4.793114976627494e-06 - sys_24: -2.54766859105655e-06 - sys_25: -1.5271941226344646e-06 - sys_26: 1.0671919342521099e-08 - sys_27: -7.685967437978598e-06 - sys_28: 9.222131903998067e-06 - sys_29: 2.0422148006293946e-05 - sys_30: -1.3027245771655229e-05 - sys_31: -2.598688762849034e-06 - sys_32: 3.5439631001725985e-06 - sys_33: 2.1177186337386202e-05 - sys_34: -6.166277657691816e-06 - sys_35: 1.0765348093199076e-06 - sys_36: 1.3504894489862046e-06 - sys_37: 1.286873073837209e-07 - sys_38: 4.939571900975254e-07 - sys_39: 1.3572335039632471e-06 - sys_40: -4.508836659606546e-08 - sys_41: 1.4209188941054532e-07 - sys_42: 9.782771840926777e-08 - sys_43: 1.297144033846644e-07 - sys_44: 1.551932706389958e-07 - sys_45: -4.5351409065237435e-07 - sys_46: 2.3119338958952692e-07 - sys_47: 3.2643631158624316e-07 - sys_48: -1.0783881035789849e-07 - sys_49: 1.1462039465248088e-07 - sys_50: 2.5871992270863685e-08 - sys_51: 2.1207512424022603e-07 - sys_52: 1.7347859435983505e-07 - sys_53: -1.3260584191249427e-07 - sys_54: 2.1561410876753635e-08 + sys_0: -5.8513038886961854e-05 + sys_1: 2.799617843269618e-05 + sys_2: 0.023224629640945342 + sys_3: -0.036237034818124673 + sys_4: 0.008003515837841296 + sys_5: -3.8137401023015235e-05 + sys_6: 0.0016701056177554894 + sys_7: -0.0004076583413788822 + sys_8: -1.773712926286461e-06 + sys_9: 2.039408080953129e-05 + sys_10: 6.787560104918311e-06 + sys_11: -0.0001641059785509819 + sys_12: -4.7088633664107894e-05 + sys_13: -6.224118370277064e-05 + sys_14: -3.08313575523925e-05 + sys_15: -1.8950480174165677e-06 + sys_16: 6.133377871696733e-08 + sys_17: -7.329579428766403e-06 + sys_18: 2.5443810548522056e-05 + sys_19: -9.118589876708825e-06 + sys_20: -4.202039014485079e-06 + sys_21: -1.3592617267465237e-06 + sys_22: -6.758100137683505e-07 + sys_23: -4.793114976627995e-06 + sys_24: 2.5476685910568417e-06 + sys_25: 1.5271941226342892e-06 + sys_26: -1.0671919342240164e-08 + sys_27: 7.6859674379787e-06 + sys_28: -9.222131903998184e-06 + sys_29: -2.0422148006293756e-05 + sys_30: -1.3027245771655708e-05 + sys_31: 2.5986887628489908e-06 + sys_32: -3.5439631001723685e-06 + sys_33: -2.117718633738664e-05 + sys_34: 6.166277657690618e-06 + sys_35: -1.0765348093191296e-06 + sys_36: -1.3504894489868775e-06 + sys_37: -1.2868730738361756e-07 + sys_38: -4.939571900975953e-07 + sys_39: 1.3572335039632588e-06 + sys_40: 4.508836659601512e-08 + sys_41: -1.4209188941056427e-07 + sys_42: -9.782771840937847e-08 + sys_43: 1.2971440338465198e-07 + sys_44: 1.5519327063925116e-07 + sys_45: -4.535140906522522e-07 + sys_46: 2.3119338958953168e-07 + sys_47: 3.2643631158630256e-07 + sys_48: -1.0783881035796993e-07 + sys_49: 1.1462039465247357e-07 + sys_50: 2.587199227068809e-08 + sys_51: 2.120751242402796e-07 + sys_52: 1.7347859435981086e-07 + sys_53: -1.3260584191250557e-07 + sys_54: 2.156141087660562e-08 diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_2JET_200GEV/uncertainties_A.yaml b/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_2JET_200GEV/uncertainties_A.yaml index b06ec55b25..004e18d932 100644 --- a/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_2JET_200GEV/uncertainties_A.yaml +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_2JET_200GEV/uncertainties_A.yaml @@ -230,286 +230,286 @@ definitions: bins: - pol: 0.0001235 lumi: 0.0005 - sys_0: -4.487764521003347e-05 - sys_1: 6.776294327346385e-05 - sys_2: -4.475375173210361e-08 - sys_3: -7.288127908631825e-08 - sys_4: -1.0323936913318263e-07 - sys_5: 6.772707946976846e-05 - sys_6: 5.007464996784911e-07 - sys_7: 5.929374500752339e-07 - sys_8: 8.472419299650328e-05 - sys_9: 1.6447911154932662e-05 - sys_10: -6.839795439960895e-05 - sys_11: -1.2072006852373766e-06 - sys_12: 7.021870471994489e-06 - sys_13: -4.6537346925967824e-05 - sys_14: 8.224920326433771e-05 - sys_15: -0.00012536530768975928 - sys_16: -4.339701951119786e-07 - sys_17: -7.141506342442378e-06 - sys_18: -8.083269445668926e-05 - sys_19: -0.0001951233060699699 - sys_20: 6.338734683925385e-05 - sys_21: -0.0009768590346119592 - sys_22: -0.007204696849904446 - sys_23: -7.494840214607478e-05 - sys_24: -0.00014963393881897594 - sys_25: -6.448416482614003e-05 - sys_26: 7.134181533413e-06 - sys_27: -4.468400469827907e-05 - sys_28: 3.0860938166506564e-05 - sys_29: 4.066112316128444e-05 - sys_30: -4.5776867343968135e-05 - sys_31: -2.0911022416779835e-05 - sys_32: 3.569768622622148e-05 - sys_33: 7.407826135554369e-06 - sys_34: 1.2205305139498532e-05 - sys_35: -9.967646610683369e-06 - sys_36: -1.0804594799401085e-05 - sys_37: -7.805715662876204e-06 - sys_38: 1.7842256334993373e-06 - sys_39: 4.3153341823622435e-06 - sys_40: 6.438121316427456e-06 - sys_41: 3.60545328247151e-07 - sys_42: 4.4392127489967315e-06 - sys_43: -1.7296876522684008e-06 - sys_44: -1.8241776447359484e-06 - sys_45: 1.9024629962920555e-06 - sys_46: -2.8868156846663017e-06 - sys_47: 3.641971953253595e-06 - sys_48: -5.646766855556967e-06 - sys_49: 6.813857622443723e-06 - sys_50: 7.177985209728573e-07 - sys_51: 4.1107074359027654e-06 - sys_52: 5.412699908747443e-06 - sys_53: -6.900525625017889e-06 - sys_54: -9.746578040396577e-07 + sys_0: -4.48776452100338e-05 + sys_1: 6.776294327345534e-05 + sys_2: -4.4753751730001365e-08 + sys_3: -7.288127908652446e-08 + sys_4: -1.0323936912961599e-07 + sys_5: 6.772707946976806e-05 + sys_6: 5.007464996775399e-07 + sys_7: 5.929374500772997e-07 + sys_8: 8.472419299650938e-05 + sys_9: 1.6447911154954665e-05 + sys_10: -6.839795439959998e-05 + sys_11: 1.207200685233991e-06 + sys_12: -7.021870472004515e-06 + sys_13: 4.653734692596229e-05 + sys_14: -8.224920326433965e-05 + sys_15: 0.00012536530768976636 + sys_16: 4.3397019510578037e-07 + sys_17: 7.141506342451758e-06 + sys_18: 8.083269445673086e-05 + sys_19: 0.00019512330606996176 + sys_20: -6.338734683925493e-05 + sys_21: 0.0009768590346124453 + sys_22: 0.007204696849904387 + sys_23: -7.494840214629504e-05 + sys_24: 0.00014963393881898393 + sys_25: 6.448416482612821e-05 + sys_26: -7.134181533410133e-06 + sys_27: 4.4684004698275434e-05 + sys_28: -3.086093816650538e-05 + sys_29: -4.066112316128462e-05 + sys_30: -4.577686734397059e-05 + sys_31: 2.091102241678141e-05 + sys_32: -3.5697686226221864e-05 + sys_33: -7.407826135553521e-06 + sys_34: -1.2205305139498918e-05 + sys_35: 9.967646610673101e-06 + sys_36: 1.0804594799410665e-05 + sys_37: 7.805715662876112e-06 + sys_38: -1.7842256334988786e-06 + sys_39: 4.315334182360741e-06 + sys_40: -6.438121316428119e-06 + sys_41: -3.605453282470376e-07 + sys_42: -4.439212748996624e-06 + sys_43: -1.7296876522685965e-06 + sys_44: -1.8241776447345644e-06 + sys_45: 1.9024629962913101e-06 + sys_46: -2.886815684665996e-06 + sys_47: 3.6419719532534782e-06 + sys_48: -5.646766855556793e-06 + sys_49: 6.813857622443639e-06 + sys_50: 7.177985209715245e-07 + sys_51: 4.110707435903107e-06 + sys_52: 5.41269990874739e-06 + sys_53: -6.900525625018093e-06 + sys_54: -9.746578040412145e-07 - pol: 0.0004485 lumi: 0.0005 - sys_0: -7.591357043922539e-05 - sys_1: 0.00010691588019715641 - sys_2: -8.001784119929725e-08 - sys_3: -9.802442709029202e-08 - sys_4: -1.5082926966769532e-07 - sys_5: 9.923874518601764e-05 - sys_6: 7.496399690236311e-07 - sys_7: 8.76612587812162e-07 - sys_8: 0.0001302568722127064 - sys_9: 2.6246554797873474e-05 - sys_10: -0.00010948465980482622 - sys_11: -1.6202126563722838e-06 - sys_12: 1.0439064079969871e-05 - sys_13: -6.962278212613307e-05 - sys_14: 0.00012294481970626477 - sys_15: -0.0001992703954252917 - sys_16: -1.64452595951945e-06 - sys_17: -9.03418159640951e-06 - sys_18: -0.0001340913304423088 - sys_19: -0.0003166435824641524 - sys_20: 0.00010368147250168464 - sys_21: -0.007310296096863622 - sys_22: 0.0009841167563202282 - sys_23: -7.781681763856134e-05 - sys_24: -0.0002423047784970487 - sys_25: -0.00014200396903434864 - sys_26: 4.922426172234378e-07 - sys_27: -6.348188421475927e-05 - sys_28: 3.837368180823679e-05 - sys_29: 6.106377102479592e-05 - sys_30: -7.06917305261564e-05 - sys_31: -2.685755638965519e-05 - sys_32: 4.7323477348822444e-05 - sys_33: 1.2676361298561961e-05 - sys_34: 4.003690356885349e-05 - sys_35: -4.660859596762982e-06 - sys_36: -1.2509717361004361e-05 - sys_37: -5.322117332404485e-06 - sys_38: -1.5076897108891833e-06 - sys_39: 1.3816767797450745e-05 - sys_40: 9.260946565966899e-06 - sys_41: -2.0724265625839358e-05 - sys_42: 4.131185927922603e-06 - sys_43: -1.3981520758021911e-06 - sys_44: -7.35925214434717e-06 - sys_45: -3.7465321520227257e-06 - sys_46: -1.6014439878353352e-06 - sys_47: 1.1905280127134495e-05 - sys_48: -6.04982725487401e-06 - sys_49: 1.3480537489503307e-05 - sys_50: 1.0161650639645577e-07 - sys_51: 1.3996075187030057e-05 - sys_52: 6.489943201972611e-06 - sys_53: -6.990601289143394e-06 - sys_54: -9.524187785711739e-07 + sys_0: -7.591357043922353e-05 + sys_1: 0.00010691588019715926 + sys_2: -8.001784119586716e-08 + sys_3: -9.802442708826083e-08 + sys_4: -1.5082926966687727e-07 + sys_5: 9.923874518602622e-05 + sys_6: 7.496399690221399e-07 + sys_7: 8.766125878160682e-07 + sys_8: 0.00013025687221271276 + sys_9: 2.624655479790422e-05 + sys_10: -0.00010948465980481573 + sys_11: 1.6202126563578847e-06 + sys_12: -1.0439064079982229e-05 + sys_13: 6.962278212612749e-05 + sys_14: -0.00012294481970626865 + sys_15: 0.000199270395425293 + sys_16: 1.6445259595222887e-06 + sys_17: 9.034181596423737e-06 + sys_18: 0.00013409133044236875 + sys_19: 0.00031664358246412454 + sys_20: -0.00010368147250169353 + sys_21: 0.007310296096863575 + sys_22: -0.0009841167563206714 + sys_23: -7.781681763841958e-05 + sys_24: 0.00024230477849706566 + sys_25: 0.0001420039690343302 + sys_26: -4.922426172288268e-07 + sys_27: 6.348188421475412e-05 + sys_28: -3.837368180823426e-05 + sys_29: -6.106377102479423e-05 + sys_30: -7.069173052615929e-05 + sys_31: 2.6857556389655035e-05 + sys_32: -4.732347734882252e-05 + sys_33: -1.2676361298559677e-05 + sys_34: -4.00369035688541e-05 + sys_35: 4.6608595967517715e-06 + sys_36: 1.250971736100914e-05 + sys_37: 5.322117332404347e-06 + sys_38: 1.5076897108900143e-06 + sys_39: 1.381676779744839e-05 + sys_40: -9.260946565967462e-06 + sys_41: 2.072426562583976e-05 + sys_42: -4.131185927921779e-06 + sys_43: -1.3981520758022036e-06 + sys_44: -7.359252144345648e-06 + sys_45: -3.7465321520229866e-06 + sys_46: -1.6014439878351542e-06 + sys_47: 1.1905280127134358e-05 + sys_48: -6.0498272548736095e-06 + sys_49: 1.3480537489503214e-05 + sys_50: 1.01616506394723e-07 + sys_51: 1.3996075187030834e-05 + sys_52: 6.4899432019709825e-06 + sys_53: -6.990601289143831e-06 + sys_54: -9.524187785732324e-07 - pol: 0.001378 lumi: 0.0005 - sys_0: -0.00012545248655006293 - sys_1: 0.00018134197418026677 - sys_2: -1.246452624123066e-07 - sys_3: -1.8349307540531249e-07 - sys_4: -2.8235488347490455e-07 - sys_5: 0.00017702230712274546 - sys_6: 1.3953672180265016e-06 - sys_7: 1.5250474659787819e-06 - sys_8: 0.00026380826253549565 - sys_9: 5.631703691358546e-05 - sys_10: -0.00023159800959980474 - sys_11: -6.032662154555042e-06 - sys_12: 3.6113575655598105e-05 - sys_13: -0.0003575772872949042 - sys_14: 0.0007156154026702314 - sys_15: -0.006096597817930245 - sys_16: -0.008024871606708176 - sys_17: -1.3679021737600494e-06 - sys_18: 0.00010768135812623616 - sys_19: 0.00031236145334555 - sys_20: -1.9997551760704497e-05 - sys_21: 0.00010227767393602877 - sys_22: 4.524653902676136e-05 - sys_23: 3.0188742242186744e-06 - sys_24: -0.00011950035602711568 - sys_25: -2.2847270355240728e-05 - sys_26: -7.772817495160407e-06 - sys_27: -3.0198664357243895e-05 - sys_28: 1.4184673107476048e-05 - sys_29: 4.122918393832987e-05 - sys_30: -4.764147798758603e-05 - sys_31: -7.848383185864193e-06 - sys_32: 3.0204867746304297e-05 - sys_33: 9.113907677094225e-06 - sys_34: 1.7637206349010965e-05 - sys_35: 1.2205823087214099e-05 - sys_36: -2.1803062009182082e-05 - sys_37: -1.4126396673860882e-06 - sys_38: -7.902542100944219e-06 - sys_39: 1.7468158430680826e-05 - sys_40: 4.30518329877271e-06 - sys_41: -7.566946606554212e-06 - sys_42: -2.797489264171231e-06 - sys_43: 2.1330087370707247e-06 - sys_44: -1.550305836336294e-06 - sys_45: -1.1733898984347631e-05 - sys_46: 7.390542357755991e-06 - sys_47: 1.6660789448449974e-05 - sys_48: 1.2169146756397495e-07 - sys_49: 8.288850787467816e-06 - sys_50: -8.692005600753583e-07 - sys_51: 1.4984382648851167e-05 - sys_52: 2.0712710300747106e-06 - sys_53: -1.978107433297965e-06 - sys_54: -8.375813076711462e-07 + sys_0: -0.00012545248655006203 + sys_1: 0.00018134197418026378 + sys_2: -1.2464526240823842e-07 + sys_3: -1.8349307540557562e-07 + sys_4: -2.823548834746847e-07 + sys_5: 0.00017702230712274535 + sys_6: 1.39536721802433e-06 + sys_7: 1.5250474659799815e-06 + sys_8: 0.00026380826253549294 + sys_9: 5.631703691362923e-05 + sys_10: -0.00023159800959978913 + sys_11: 6.032662154551648e-06 + sys_12: -3.6113575655608134e-05 + sys_13: 0.00035757728729490134 + sys_14: -0.0007156154026702502 + sys_15: 0.0060965978179303125 + sys_16: 0.008024871606708249 + sys_17: 1.367902173797432e-06 + sys_18: -0.00010768135812625725 + sys_19: -0.00031236145334554664 + sys_20: 1.9997551760697748e-05 + sys_21: -0.00010227767393603962 + sys_22: -4.5246539026759446e-05 + sys_23: 3.0188742242180865e-06 + sys_24: 0.00011950035602711875 + sys_25: 2.2847270355230814e-05 + sys_26: 7.772817495163353e-06 + sys_27: 3.0198664357245047e-05 + sys_28: -1.418467310747641e-05 + sys_29: -4.122918393832882e-05 + sys_30: -4.764147798758627e-05 + sys_31: 7.848383185863424e-06 + sys_32: -3.0204867746304615e-05 + sys_33: -9.113907677093164e-06 + sys_34: -1.7637206349011646e-05 + sys_35: -1.220582308723125e-05 + sys_36: 2.1803062009171792e-05 + sys_37: 1.4126396673841553e-06 + sys_38: 7.902542100943938e-06 + sys_39: 1.7468158430681097e-05 + sys_40: -4.30518329877157e-06 + sys_41: 7.566946606553799e-06 + sys_42: 2.7974892641710527e-06 + sys_43: 2.133008737070582e-06 + sys_44: -1.5503058363360472e-06 + sys_45: -1.1733898984346618e-05 + sys_46: 7.39054235775587e-06 + sys_47: 1.6660789448449954e-05 + sys_48: 1.2169146756403318e-07 + sys_49: 8.288850787467652e-06 + sys_50: -8.692005600756834e-07 + sys_51: 1.4984382648851165e-05 + sys_52: 2.0712710300726616e-06 + sys_53: -1.9781074332984837e-06 + sys_54: -8.3758130767185e-07 - pol: 0.0027949999999999997 lumi: 0.0005 - sys_0: -0.00044095452565256745 - sys_1: 0.0006989788713221395 - sys_2: -3.7879310630748673e-07 - sys_3: -8.408468149694218e-07 - sys_4: -1.7328916050368507e-06 - sys_5: 0.0009185336314958029 - sys_6: 8.505417935230395e-06 - sys_7: 1.55209665463206e-05 - sys_8: 0.01955412162813597 - sys_9: -0.0003539770030494964 - sys_10: 0.0013627337992099188 - sys_11: 3.1940449592001096e-05 - sys_12: -4.854458369967025e-05 - sys_13: 0.00011736075128381499 - sys_14: -0.00019147253066689174 - sys_15: 0.0002106553041478497 - sys_16: -1.9024055149846018e-06 - sys_17: -6.104777361871435e-06 - sys_18: 3.95476521095463e-05 - sys_19: 0.00012617936578061806 - sys_20: -3.128774902977689e-06 - sys_21: 4.560472311492932e-05 - sys_22: 2.0975861525278253e-05 - sys_23: 5.279313106886975e-06 - sys_24: -5.54687007847775e-05 - sys_25: -2.6306944287202693e-05 - sys_26: -1.846112519360696e-05 - sys_27: -2.1612335576890022e-05 - sys_28: 4.74814525319912e-06 - sys_29: 3.2143642342008834e-05 - sys_30: -3.960207658872762e-05 - sys_31: -5.515390056982402e-06 - sys_32: 2.3168914648166717e-05 - sys_33: 7.102182370731013e-06 - sys_34: 1.2079910384132948e-05 - sys_35: 2.329349616004872e-06 - sys_36: -1.175335413882643e-05 - sys_37: 1.3862675193959248e-06 - sys_38: -3.6721008183554177e-06 - sys_39: 3.985338257298774e-06 - sys_40: 1.4417798171307114e-06 - sys_41: -6.153721810382333e-06 - sys_42: -7.319846866995983e-06 - sys_43: 3.7792323954839316e-06 - sys_44: 7.380452317549037e-06 - sys_45: -1.3042609630305765e-05 - sys_46: 8.513084629186378e-06 - sys_47: 9.78398485850043e-06 - sys_48: 2.1992998402506355e-06 - sys_49: 1.784053782314967e-06 - sys_50: -4.2920443781682114e-07 - sys_51: 5.564140241751639e-06 - sys_52: -3.790580914859849e-07 - sys_53: 5.53454487523612e-07 - sys_54: 2.9749636295482442e-08 + sys_0: -0.00044095452565256756 + sys_1: 0.0006989788713221399 + sys_2: -3.78793106293382e-07 + sys_3: -8.408468149688058e-07 + sys_4: -1.7328916050375832e-06 + sys_5: 0.0009185336314958047 + sys_6: 8.505417935230232e-06 + sys_7: 1.552096654632218e-05 + sys_8: 0.019554121628135957 + sys_9: -0.0003539770030497678 + sys_10: 0.0013627337992098412 + sys_11: -3.194044959199856e-05 + sys_12: 4.85445836996727e-05 + sys_13: -0.00011736075128381648 + sys_14: 0.00019147253066689144 + sys_15: -0.000210655304147849 + sys_16: 1.9024055149839983e-06 + sys_17: 6.104777361870734e-06 + sys_18: -3.9547652109548997e-05 + sys_19: -0.00012617936578061681 + sys_20: 3.128774902976084e-06 + sys_21: -4.5604723114932054e-05 + sys_22: -2.097586152527611e-05 + sys_23: 5.279313106887194e-06 + sys_24: 5.546870078478045e-05 + sys_25: 2.630694428719853e-05 + sys_26: 1.846112519360803e-05 + sys_27: 2.161233557688992e-05 + sys_28: -4.7481452531992535e-06 + sys_29: -3.214364234200822e-05 + sys_30: -3.9602076588727776e-05 + sys_31: 5.515390056982518e-06 + sys_32: -2.31689146481671e-05 + sys_33: -7.1021823707305945e-06 + sys_34: -1.2079910384133321e-05 + sys_35: -2.3293496160145028e-06 + sys_36: 1.1753354138824639e-05 + sys_37: -1.3862675193960321e-06 + sys_38: 3.6721008183554897e-06 + sys_39: 3.985338257298709e-06 + sys_40: -1.4417798171308654e-06 + sys_41: 6.153721810382526e-06 + sys_42: 7.319846866996024e-06 + sys_43: 3.7792323954840434e-06 + sys_44: 7.380452317548921e-06 + sys_45: -1.3042609630305448e-05 + sys_46: 8.513084629186071e-06 + sys_47: 9.783984858500651e-06 + sys_48: 2.199299840250533e-06 + sys_49: 1.7840537823148113e-06 + sys_50: -4.292044378167603e-07 + sys_51: 5.56414024175159e-06 + sys_52: -3.790580914870544e-07 + sys_53: 5.534544875234064e-07 + sys_54: 2.974963629551774e-08 - pol: 0.00507 lumi: 0.0005 - sys_0: -0.0014082583078339084 - sys_1: 0.05045716889736562 - sys_2: -6.126762673481862e-05 - sys_3: 5.935319745720406e-06 - sys_4: 1.3191776067469619e-05 - sys_5: -0.000988323843134992 - sys_6: 3.055488643276154e-06 - sys_7: 2.3100785068747596e-05 - sys_8: -0.0002793402499156884 - sys_9: -4.2236493676857715e-05 - sys_10: 0.0001382699180752268 - sys_11: 1.9939305161420727e-05 - sys_12: -2.268261706791066e-05 - sys_13: 3.278354669420865e-05 - sys_14: -4.746950591695168e-05 - sys_15: 5.329612593773731e-05 - sys_16: -2.870027942953833e-07 - sys_17: -2.2193217919779843e-05 - sys_18: 7.247115755849143e-06 - sys_19: 3.574670902232163e-05 - sys_20: 1.543414111049113e-05 - sys_21: 1.4285822104275983e-05 - sys_22: 6.256602353603413e-06 - sys_23: 6.189764710996463e-06 - sys_24: -1.7548483968759022e-05 - sys_25: -7.666085241544518e-06 - sys_26: -9.645573167725121e-06 - sys_27: -1.0121148599565656e-05 - sys_28: -7.170868749487328e-07 - sys_29: 1.027122310286569e-05 - sys_30: -1.3211023100717597e-05 - sys_31: 5.409832615316132e-06 - sys_32: 7.504694316471003e-06 - sys_33: 2.4718142042344728e-06 - sys_34: 4.113854951258778e-06 - sys_35: 4.198013458080313e-06 - sys_36: -6.1833332751959605e-06 - sys_37: 1.7596638424681377e-06 - sys_38: -3.922907472689833e-06 - sys_39: -8.391207346508186e-06 - sys_40: 4.2761586940372117e-07 - sys_41: -3.0459436294284717e-06 - sys_42: -7.829763716125667e-06 - sys_43: 3.142947333768757e-06 - sys_44: 6.399062251349847e-06 - sys_45: -6.25972853066732e-06 - sys_46: 2.5296529562217686e-06 - sys_47: 1.9737722714827948e-06 - sys_48: 8.692811553166529e-07 - sys_49: 9.728632830895424e-08 - sys_50: -1.0511367959263173e-07 - sys_51: 6.263765489983346e-07 - sys_52: -3.3364707588337093e-07 - sys_53: 3.210077607322483e-07 - sys_54: 2.6116808349928885e-08 + sys_0: -0.0014082583078339087 + sys_1: 0.0504571688973656 + sys_2: -6.126762673379352e-05 + sys_3: 5.935319745793472e-06 + sys_4: 1.3191776067428907e-05 + sys_5: -0.0009883238431349917 + sys_6: 3.055488643282361e-06 + sys_7: 2.3100785068742714e-05 + sys_8: -0.0002793402499156874 + sys_9: -4.223649367688651e-05 + sys_10: 0.00013826991807521814 + sys_11: -1.9939305161420073e-05 + sys_12: 2.2682617067911085e-05 + sys_13: -3.2783546694208317e-05 + sys_14: 4.746950591695253e-05 + sys_15: -5.3296125937737404e-05 + sys_16: 2.8700279429511924e-07 + sys_17: 2.219321791977907e-05 + sys_18: -7.247115755848837e-06 + sys_19: -3.574670902232149e-05 + sys_20: -1.5434141110491413e-05 + sys_21: -1.4285822104275688e-05 + sys_22: -6.2566023536020455e-06 + sys_23: 6.189764710996172e-06 + sys_24: 1.754848396875966e-05 + sys_25: 7.666085241543005e-06 + sys_26: 9.645573167725028e-06 + sys_27: 1.012114859956529e-05 + sys_28: 7.170868749484311e-07 + sys_29: -1.0271223102865592e-05 + sys_30: -1.3211023100717946e-05 + sys_31: -5.409832615315785e-06 + sys_32: -7.504694316470879e-06 + sys_33: -2.471814204234222e-06 + sys_34: -4.113854951258935e-06 + sys_35: -4.198013458085272e-06 + sys_36: 6.18333327519241e-06 + sys_37: -1.7596638424686233e-06 + sys_38: 3.922907472689768e-06 + sys_39: -8.39120734650822e-06 + sys_40: -4.276158694033431e-07 + sys_41: 3.0459436294284387e-06 + sys_42: 7.82976371612579e-06 + sys_43: 3.142947333768832e-06 + sys_44: 6.399062251349906e-06 + sys_45: -6.259728530667122e-06 + sys_46: 2.529652956221653e-06 + sys_47: 1.9737722714828587e-06 + sys_48: 8.69281155316712e-07 + sys_49: 9.728632830886143e-08 + sys_50: -1.051136795924762e-07 + sys_51: 6.263765489982744e-07 + sys_52: -3.336470758834418e-07 + sys_53: 3.210077607322744e-07 + sys_54: 2.611680834994292e-08 diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_2JET_200GEV/uncertainties_B.yaml b/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_2JET_200GEV/uncertainties_B.yaml index bfcea5c5f4..18d451aa22 100644 --- a/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_2JET_200GEV/uncertainties_B.yaml +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_2JET_200GEV/uncertainties_B.yaml @@ -230,400 +230,400 @@ definitions: bins: - pol: 0.001157 lumi: 0.0005 - sys_0: -0.00016038738055355545 - sys_1: 0.00023582929389157333 - sys_2: 3.2266179588260196e-05 - sys_3: -3.98309883515136e-05 - sys_4: -1.9558011225979396e-05 - sys_5: 0.0002449237528926223 - sys_6: -1.0668647767120556e-05 - sys_7: -0.00023796394432372157 - sys_8: 0.0003574369649507943 - sys_9: 0.0005620296029499112 - sys_10: -0.00021701917146980902 - sys_11: -0.0010618229981677171 - sys_12: 0.0015206569354742152 - sys_13: -0.005854228817839665 - sys_14: 0.009009031101046462 - sys_15: 0.0013130780394518871 - sys_16: -4.077595042711742e-05 - sys_17: -0.00047990227332937496 - sys_18: 0.00029738266882304757 - sys_19: 0.0002576937573593926 - sys_20: 0.0001967878536799501 - sys_21: 7.400032007231744e-05 - sys_22: 3.479882967762771e-05 - sys_23: 0.0004005670081578373 - sys_24: -8.576811092304024e-05 - sys_25: -3.8349644937056635e-05 - sys_26: -0.0001423132627343489 - sys_27: -0.00021490972815025553 - sys_28: -1.898955401774948e-05 - sys_29: 1.500537587898302e-06 - sys_30: 3.3556067110908954e-05 - sys_31: 0.00015175282913345534 - sys_32: 3.936314119504192e-05 - sys_33: -7.103578227617909e-07 - sys_34: 1.885073525163685e-05 - sys_35: 1.9177057955864815e-05 - sys_36: -2.9278374872848197e-05 - sys_37: 9.791266984035379e-06 - sys_38: -2.9514215846685803e-05 - sys_39: -9.8863686504995e-05 - sys_40: 3.987588708293631e-06 - sys_41: -1.4919230917064818e-05 - sys_42: -4.5700872020765993e-05 - sys_43: 1.530475125653345e-05 - sys_44: 2.024820312802068e-05 - sys_45: -1.3234869009212376e-05 - sys_46: 4.020900599975891e-06 - sys_47: 1.3191356681955143e-06 - sys_48: 2.631652114716864e-06 - sys_49: -6.433941439693681e-07 - sys_50: -3.298663800669299e-07 - sys_51: -3.498375695125247e-07 - sys_52: -1.6827616689749973e-06 - sys_53: 1.5805071146354104e-06 - sys_54: 1.8039348618998293e-07 + sys_0: -0.0001603873805535555 + sys_1: 0.0002358292938915719 + sys_2: 3.226617958826444e-05 + sys_3: -3.983098835151419e-05 + sys_4: -1.9558011225979244e-05 + sys_5: 0.00024492375289262235 + sys_6: -1.066864776712192e-05 + sys_7: -0.00023796394432372037 + sys_8: 0.0003574369649507967 + sys_9: 0.0005620296029499517 + sys_10: -0.00021701917146969285 + sys_11: 0.0010618229981676948 + sys_12: -0.0015206569354742235 + sys_13: 0.005854228817839737 + sys_14: -0.009009031101046432 + sys_15: -0.0013130780394519166 + sys_16: 4.077595042710603e-05 + sys_17: 0.00047990227332937025 + sys_18: -0.00029738266882305847 + sys_19: -0.00025769375735938525 + sys_20: -0.00019678785367995049 + sys_21: -7.400032007232132e-05 + sys_22: -3.479882967760309e-05 + sys_23: 0.0004005670081578329 + sys_24: 8.576811092304322e-05 + sys_25: 3.834964493704987e-05 + sys_26: 0.00014231326273434896 + sys_27: 0.0002149097281502547 + sys_28: 1.8989554017752373e-05 + sys_29: -1.5005375878995074e-06 + sys_30: 3.3556067110908914e-05 + sys_31: -0.0001517528291334545 + sys_32: -3.9363141195042416e-05 + sys_33: 7.103578227626992e-07 + sys_34: -1.8850735251636803e-05 + sys_35: -1.917705795588818e-05 + sys_36: 2.9278374872831615e-05 + sys_37: -9.791266984036231e-06 + sys_38: 2.9514215846685505e-05 + sys_39: -9.886368650499442e-05 + sys_40: -3.987588708290928e-06 + sys_41: 1.4919230917064062e-05 + sys_42: 4.570087202076587e-05 + sys_43: 1.5304751256533736e-05 + sys_44: 2.0248203128020704e-05 + sys_45: -1.323486900921176e-05 + sys_46: 4.020900599975707e-06 + sys_47: 1.3191356681958554e-06 + sys_48: 2.631652114716825e-06 + sys_49: -6.43394143969515e-07 + sys_50: -3.2986638006694104e-07 + sys_51: -3.4983756951287785e-07 + sys_52: -1.682761668974912e-06 + sys_53: 1.5805071146358517e-06 + sys_54: 1.803934861902878e-07 - pol: 0.000377 lumi: 0.0005 - sys_0: -0.0001231648493603605 - sys_1: 0.00017665580924533435 - sys_2: 0.00015045222696400456 - sys_3: -0.00014778839578276183 - sys_4: -8.219970896926539e-05 - sys_5: 0.0001726120508701715 - sys_6: 9.256199740513488e-05 - sys_7: -0.0004287252222768085 - sys_8: 0.0002084430787261461 - sys_9: 0.0004082992475814004 - sys_10: -7.859887026403528e-05 - sys_11: 2.0694318761751067e-05 - sys_12: 0.000415889007636151 - sys_13: 0.00018302815935867226 - sys_14: 0.00024667999530149056 - sys_15: -0.0002073722717015833 - sys_16: 4.103620387351944e-06 - sys_17: 0.00013199667705843647 - sys_18: -0.0005735512923050126 - sys_19: -5.7934550427121076e-05 - sys_20: 8.172744872671206e-05 - sys_21: -0.00013513510784499431 - sys_22: -6.415062405389798e-05 - sys_23: -0.000499691145448889 - sys_24: 0.0003339530740301337 - sys_25: 0.00021483816276339336 - sys_26: 2.607490803486726e-05 - sys_27: 0.0011631798325828083 - sys_28: -0.0014478571250442999 - sys_29: -0.004609492920863499 - sys_30: 0.0008567656362081706 - sys_31: 0.00013389933141344209 - sys_32: 0.00033003258504533137 - sys_33: -7.38579093132164e-05 - sys_34: 0.00018532269124980303 - sys_35: -9.017665354704687e-05 - sys_36: -7.870067229747748e-05 - sys_37: 1.1120363431983943e-05 - sys_38: -1.2245961340530263e-05 - sys_39: -6.160460877861431e-05 - sys_40: -3.4812051365457393e-06 - sys_41: 4.7409377267261584e-06 - sys_42: 7.507383679955734e-06 - sys_43: -6.176934731487974e-06 - sys_44: -1.938289118541504e-06 - sys_45: 1.3490333470933013e-05 - sys_46: -4.117501878343268e-06 - sys_47: -9.985270630214592e-06 - sys_48: 1.0427928861097797e-06 - sys_49: -2.8609977317627707e-06 - sys_50: 8.713692087663013e-08 - sys_51: -5.583887327622026e-06 - sys_52: -2.045762992028327e-06 - sys_53: 2.256765094602434e-06 - sys_54: 7.595227493370356e-07 + sys_0: -0.0001231648493603606 + sys_1: 0.00017665580924533031 + sys_2: 0.00015045222696400678 + sys_3: -0.00014778839578276245 + sys_4: -8.219970896926607e-05 + sys_5: 0.00017261205087017243 + sys_6: 9.25619974051332e-05 + sys_7: -0.00042872522227680777 + sys_8: 0.00020844307872614656 + sys_9: 0.00040829924758141467 + sys_10: -7.859887026395225e-05 + sys_11: -2.0694318761752964e-05 + sys_12: -0.0004158890076361518 + sys_13: -0.00018302815935867183 + sys_14: -0.0002466799953014947 + sys_15: 0.00020737227170158237 + sys_16: -4.103620387351486e-06 + sys_17: -0.0001319966770584366 + sys_18: 0.0005735512923050157 + sys_19: 5.7934550427111094e-05 + sys_20: -8.172744872671191e-05 + sys_21: 0.0001351351078450038 + sys_22: 6.41506240538755e-05 + sys_23: -0.0004996911454488815 + sys_24: -0.0003339530740301703 + sys_25: -0.0002148381627633686 + sys_26: -2.607490803487111e-05 + sys_27: -0.0011631798325828448 + sys_28: 0.0014478571250443322 + sys_29: 0.004609492920863482 + sys_30: 0.0008567656362082457 + sys_31: -0.00013389933141344203 + sys_32: -0.0003300325850453368 + sys_33: 7.385790931322742e-05 + sys_34: -0.00018532269124979728 + sys_35: 9.017665354698782e-05 + sys_36: 7.870067229754915e-05 + sys_37: -1.1120363431983029e-05 + sys_38: 1.2245961340532806e-05 + sys_39: -6.160460877861635e-05 + sys_40: 3.481205136546001e-06 + sys_41: -4.740937726724771e-06 + sys_42: -7.507383679955129e-06 + sys_43: -6.176934731487685e-06 + sys_44: -1.9382891185413238e-06 + sys_45: 1.3490333470932838e-05 + sys_46: -4.11750187834287e-06 + sys_47: -9.985270630215019e-06 + sys_48: 1.0427928861105063e-06 + sys_49: -2.86099773176245e-06 + sys_50: 8.713692087713267e-08 + sys_51: -5.5838873276221325e-06 + sys_52: -2.045762992028123e-06 + sys_53: 2.256765094602927e-06 + sys_54: 7.595227493373981e-07 - pol: 0.000312 lumi: 0.0005 - sys_0: -6.602015465560188e-05 - sys_1: 9.217982467710483e-05 - sys_2: -6.533264459857353e-08 - sys_3: -9.197846139229596e-08 - sys_4: -1.3694570309817204e-07 - sys_5: 8.998643060703919e-05 - sys_6: 6.53066695148006e-07 - sys_7: 7.905770936780601e-07 - sys_8: 0.00010886495850475943 - sys_9: 1.9459244919582087e-05 - sys_10: -8.104472343657457e-05 - sys_11: -1.1973366093550136e-06 - sys_12: 6.905899930253025e-06 - sys_13: -4.238431298155302e-05 - sys_14: 7.302193311799889e-05 - sys_15: -9.803641233532297e-05 - sys_16: 1.7417157941525935e-06 - sys_17: -4.489645131752122e-06 - sys_18: -3.794599735410332e-05 - sys_19: -9.45775625437715e-05 - sys_20: 1.8970492571419433e-05 - sys_21: -6.807944243828207e-05 - sys_22: -4.3881198557248174e-05 - sys_23: 1.2842740123938697e-05 - sys_24: 0.0001321589837996156 - sys_25: 7.502916154330281e-05 - sys_26: -8.385153718918696e-06 - sys_27: 0.00012982950830253616 - sys_28: -0.0001292318747516985 - sys_29: -0.00019628550403816324 - sys_30: 0.00030391668240612336 - sys_31: 0.0003449980331172517 - sys_32: -0.0039073309029647 - sys_33: 0.0013337680758518358 - sys_34: 0.0009733217979650638 - sys_35: -0.00023962946295131047 - sys_36: -0.0003066526442426941 - sys_37: -0.00014569279202033538 - sys_38: 1.9009378937649333e-05 - sys_39: 6.835433571213821e-05 - sys_40: 5.738462072748919e-05 - sys_41: -4.025613912347007e-06 - sys_42: 1.841288381989002e-05 - sys_43: -5.091060732735513e-06 - sys_44: -2.0035221292675147e-05 - sys_45: -1.1929417004561992e-05 - sys_46: -1.821805404391615e-05 - sys_47: 3.5751786999120526e-05 - sys_48: -2.0344936100846846e-05 - sys_49: 1.4412328550439342e-05 - sys_50: -1.2607198127819517e-06 - sys_51: 1.9531640771541306e-05 - sys_52: 1.7446050185264292e-05 - sys_53: -2.6653247341656194e-05 - sys_54: -1.5256109182085743e-05 + sys_0: -6.602015465560074e-05 + sys_1: 9.217982467710487e-05 + sys_2: -6.533264459594848e-08 + sys_3: -9.197846139190392e-08 + sys_4: -1.3694570309624634e-07 + sys_5: 8.998643060703975e-05 + sys_6: 6.530666951480633e-07 + sys_7: 7.905770936785168e-07 + sys_8: 0.00010886495850476022 + sys_9: 1.9459244919599936e-05 + sys_10: -8.10447234365702e-05 + sys_11: 1.1973366093558054e-06 + sys_12: -6.905899930253249e-06 + sys_13: 4.238431298155513e-05 + sys_14: -7.30219331179979e-05 + sys_15: 9.80364123353233e-05 + sys_16: -1.7417157941528932e-06 + sys_17: 4.4896451317540335e-06 + sys_18: 3.794599735410324e-05 + sys_19: 9.457756254377213e-05 + sys_20: -1.897049257141799e-05 + sys_21: 6.807944243828659e-05 + sys_22: 4.388119855724406e-05 + sys_23: 1.284274012393511e-05 + sys_24: -0.0001321589837996174 + sys_25: -7.502916154329594e-05 + sys_26: 8.3851537189183e-06 + sys_27: -0.00012982950830254253 + sys_28: 0.00012923187475170168 + sys_29: 0.00019628550403816495 + sys_30: 0.0003039166824061275 + sys_31: -0.0003449980331172546 + sys_32: 0.003907330902964705 + sys_33: -0.0013337680758517534 + sys_34: -0.0009733217979651604 + sys_35: 0.00023962946295106853 + sys_36: 0.00030665264424289805 + sys_37: 0.00014569279202035354 + sys_38: -1.9009378937644718e-05 + sys_39: 6.835433571213477e-05 + sys_40: -5.73846207274946e-05 + sys_41: 4.025613912348559e-06 + sys_42: -1.8412883819887698e-05 + sys_43: -5.0910607327337056e-06 + sys_44: -2.0035221292673805e-05 + sys_45: -1.192941700456156e-05 + sys_46: -1.8218054043915997e-05 + sys_47: 3.575178699911882e-05 + sys_48: -2.0344936100847334e-05 + sys_49: 1.4412328550439749e-05 + sys_50: -1.260719812782649e-06 + sys_51: 1.953164077154254e-05 + sys_52: 1.7446050185260467e-05 + sys_53: -2.6653247341660178e-05 + sys_54: -1.5256109182090561e-05 - pol: 0.0001105 lumi: 0.0005 - sys_0: -6.876677407045636e-05 - sys_1: 9.851799333697248e-05 - sys_2: -6.904211471841915e-08 - sys_3: -9.742428294197204e-08 - sys_4: -1.4422783860129782e-07 - sys_5: 9.186318512656962e-05 - sys_6: 6.811224675964088e-07 - sys_7: 7.542538953554947e-07 - sys_8: 0.00011103921106026542 - sys_9: 2.1089874853154077e-05 - sys_10: -8.720818824537892e-05 - sys_11: -1.5144433415606543e-06 - sys_12: 7.4965625947218965e-06 - sys_13: -4.50337059770017e-05 - sys_14: 7.61677777271811e-05 - sys_15: -0.00010580001309719528 - sys_16: 3.417557679685951e-06 - sys_17: -2.4467389833885923e-06 - sys_18: -3.795196163679791e-05 - sys_19: -9.889982655184608e-05 - sys_20: 1.5137509894914107e-05 - sys_21: -0.00010102106379032653 - sys_22: -2.9856277745233662e-05 - sys_23: 8.156865978960867e-06 - sys_24: 0.00015017747786768028 - sys_25: 9.745061919985808e-05 - sys_26: 7.88788533633388e-06 - sys_27: 0.00010790841366752959 - sys_28: -8.73129804833578e-05 - sys_29: -0.00019121120091045447 - sys_30: 0.00029507596836749427 - sys_31: 0.0001455544899427932 - sys_32: -0.0011365435182670077 - sys_33: -0.0006198018164090695 - sys_34: -0.003918109816553557 - sys_35: -8.145319025024359e-05 - sys_36: -0.0005584919529164257 - sys_37: -5.071291647292438e-05 - sys_38: -3.0167868482855592e-05 - sys_39: 0.00017169119768983251 - sys_40: 4.721364115370268e-05 - sys_41: -0.00011901117045189169 - sys_42: -4.376410008345285e-05 - sys_43: 2.365045913340006e-05 - sys_44: -4.084609767400756e-05 - sys_45: -6.24009990143924e-05 - sys_46: -6.171182501182042e-06 - sys_47: 5.872221236452603e-05 - sys_48: -1.5591854686931582e-06 - sys_49: 2.1039685892739906e-05 - sys_50: -1.6784908713599173e-06 - sys_51: 3.431059909677125e-05 - sys_52: 8.677543356603302e-06 - sys_53: -1.3954676451524717e-05 - sys_54: -6.780253393706676e-06 + sys_0: -6.876677407045572e-05 + sys_1: 9.851799333697251e-05 + sys_2: -6.904211471589318e-08 + sys_3: -9.742428294176126e-08 + sys_4: -1.4422783860037013e-07 + sys_5: 9.186318512657023e-05 + sys_6: 6.811224675969542e-07 + sys_7: 7.542538953561055e-07 + sys_8: 0.00011103921106026583 + sys_9: 2.108987485317235e-05 + sys_10: -8.720818824537471e-05 + sys_11: 1.5144433415600866e-06 + sys_12: -7.496562594721876e-06 + sys_13: 4.503370597700229e-05 + sys_14: -7.616777772718111e-05 + sys_15: 0.00010580001309719596 + sys_16: -3.417557679685356e-06 + sys_17: 2.4467389833899467e-06 + sys_18: 3.7951961636799985e-05 + sys_19: 9.889982655184548e-05 + sys_20: -1.5137509894912867e-05 + sys_21: 0.00010102106379032898 + sys_22: 2.9856277745228672e-05 + sys_23: 8.156865978961267e-06 + sys_24: -0.000150177477867689 + sys_25: -9.745061919984808e-05 + sys_26: -7.887885336335221e-06 + sys_27: -0.00010790841366753322 + sys_28: 8.731298048336066e-05 + sys_29: 0.0001912112009104513 + sys_30: 0.0002950759683674972 + sys_31: -0.00014555448994279567 + sys_32: 0.0011365435182670218 + sys_33: 0.0006198018164088397 + sys_34: 0.003918109816553588 + sys_35: 8.145319024973737e-05 + sys_36: 0.0005584919529165075 + sys_37: 5.071291647291463e-05 + sys_38: 3.016786848285902e-05 + sys_39: 0.00017169119768982956 + sys_40: -4.721364115370947e-05 + sys_41: 0.00011901117045189087 + sys_42: 4.376410008344966e-05 + sys_43: 2.365045913339848e-05 + sys_44: -4.084609767400486e-05 + sys_45: -6.240099901439061e-05 + sys_46: -6.171182501182663e-06 + sys_47: 5.8722212364526495e-05 + sys_48: -1.559185468693518e-06 + sys_49: 2.1039685892739865e-05 + sys_50: -1.6784908713605276e-06 + sys_51: 3.4310599096772146e-05 + sys_52: 8.677543356596855e-06 + sys_53: -1.3954676451526897e-05 + sys_54: -6.780253393709694e-06 - pol: 0.000507 lumi: 0.0005 - sys_0: -7.034102142152536e-05 - sys_1: 0.00010281831941004625 - sys_2: -4.5884499186903676e-08 - sys_3: -1.3002034359170632e-07 - sys_4: -2.327645855979689e-07 - sys_5: 0.00010218528063896675 - sys_6: 7.396117835420384e-07 - sys_7: 5.640374418579385e-07 - sys_8: 0.00012675832188788376 - sys_9: 2.5837143171002536e-05 - sys_10: -9.834813434046765e-05 - sys_11: -8.224242125624168e-06 - sys_12: 1.760911370412287e-05 - sys_13: -6.528931484864714e-05 - sys_14: 0.00010835840180849897 - sys_15: -0.000198099433287466 - sys_16: -3.381057943783329e-05 - sys_17: 1.5171921027189844e-05 - sys_18: -5.06499957901474e-05 - sys_19: -0.0001942261416907753 - sys_20: -2.0355891761546464e-05 - sys_21: -0.0001749656523749259 - sys_22: -8.854308459418272e-05 - sys_23: -0.00011880383764271696 - sys_24: 0.005641509119595749 - sys_25: -0.002581468396833277 - sys_26: -0.000278699909959755 - sys_27: -9.547866191135686e-05 - sys_28: -2.132415498384431e-05 - sys_29: 0.00015899780703889797 - sys_30: -0.0002125482764591385 - sys_31: 8.178888133539768e-05 - sys_32: 8.271948474864459e-05 - sys_33: 1.6740119591308206e-05 - sys_34: 5.295616528795112e-05 - sys_35: 4.746115726038265e-05 - sys_36: -6.480151518741758e-05 - sys_37: 1.7277566548896564e-06 - sys_38: -3.0354992381752597e-05 - sys_39: 4.637660840038305e-05 - sys_40: 6.6245163190970304e-06 - sys_41: -3.1257433063752355e-05 - sys_42: -7.044236481038546e-05 - sys_43: 3.077843119541767e-05 - sys_44: 2.8374572798919613e-06 - sys_45: -5.9846080928450637e-05 - sys_46: 2.2694702636898395e-05 - sys_47: 3.529097948976974e-05 - sys_48: 7.44466673166047e-06 - sys_49: 9.127091914694896e-06 - sys_50: -1.5353302284668286e-06 - sys_51: 2.2011652169224264e-05 - sys_52: -8.114787821705768e-07 - sys_53: 2.1143539971777176e-06 - sys_54: 4.072363595827956e-07 + sys_0: -7.034102142152537e-05 + sys_1: 0.0001028183194100458 + sys_2: -4.5884499184804874e-08 + sys_3: -1.3002034359166296e-07 + sys_4: -2.32764585598218e-07 + sys_5: 0.00010218528063896663 + sys_6: 7.396117835417637e-07 + sys_7: 5.64037441858069e-07 + sys_8: 0.00012675832188788422 + sys_9: 2.5837143171021676e-05 + sys_10: -9.834813434046201e-05 + sys_11: 8.22424212562371e-06 + sys_12: -1.760911370412403e-05 + sys_13: 6.528931484864781e-05 + sys_14: -0.00010835840180849917 + sys_15: 0.00019809943328746662 + sys_16: 3.381057943783409e-05 + sys_17: -1.5171921027189018e-05 + sys_18: 5.064999579015192e-05 + sys_19: 0.00019422614169077197 + sys_20: 2.035589176154823e-05 + sys_21: 0.00017496565237493523 + sys_22: 8.854308459416342e-05 + sys_23: -0.00011880383764270599 + sys_24: -0.005641509119595464 + sys_25: 0.0025814683968337373 + sys_26: 0.0002786999099596939 + sys_27: 9.547866191137357e-05 + sys_28: 2.1324154983839897e-05 + sys_29: -0.0001589978070388975 + sys_30: -0.00021254827645914115 + sys_31: -8.178888133539586e-05 + sys_32: -8.271948474864291e-05 + sys_33: -1.6740119591305123e-05 + sys_34: -5.295616528795282e-05 + sys_35: -4.746115726043544e-05 + sys_36: 6.48015151873787e-05 + sys_37: -1.7277566548869543e-06 + sys_38: 3.0354992381752028e-05 + sys_39: 4.6376608400381525e-05 + sys_40: -6.624516319099803e-06 + sys_41: 3.125743306375222e-05 + sys_42: 7.044236481038557e-05 + sys_43: 3.077843119541831e-05 + sys_44: 2.837457279893227e-06 + sys_45: -5.984608092844852e-05 + sys_46: 2.2694702636897307e-05 + sys_47: 3.529097948977087e-05 + sys_48: 7.444666731660303e-06 + sys_49: 9.127091914694667e-06 + sys_50: -1.5353302284667998e-06 + sys_51: 2.201165216922385e-05 + sys_52: -8.114787821742963e-07 + sys_53: 2.114353997177055e-06 + sys_54: 4.072363595827309e-07 - pol: 0.0006435000000000001 lumi: 0.0005 - sys_0: -0.0001564445544623164 - sys_1: 0.00022899679299133774 - sys_2: 1.7374682708605977e-07 - sys_3: -3.178727982702053e-07 - sys_4: -1.4661199093112104e-06 - sys_5: 0.00022508970023871295 - sys_6: -1.7655484381966205e-07 - sys_7: -9.35249353138264e-06 - sys_8: 0.00033353653349145907 - sys_9: 7.486667966791372e-05 - sys_10: -0.0002551570567829156 - sys_11: -6.161210869997271e-05 - sys_12: 0.00010480357463629335 - sys_13: -0.0002052738145396133 - sys_14: 0.00036238735302633813 - sys_15: -0.0005784026247067037 - sys_16: 9.3027192808972e-06 - sys_17: 0.0002280330864786156 - sys_18: -0.002343809680177322 - sys_19: -0.008012466368789013 - sys_20: 0.0005325723316377388 - sys_21: 0.00035803593715349476 - sys_22: 0.0001537334587639701 - sys_23: 0.0003448771624320161 - sys_24: -0.00024342093002563856 - sys_25: -9.579740730388851e-05 - sys_26: -0.00013335219466500622 - sys_27: -5.744867771815875e-05 - sys_28: -3.635309622730754e-05 - sys_29: 0.00010237843103474346 - sys_30: -0.00015310913122770856 - sys_31: 0.00012048154110741823 - sys_32: 6.519539010572076e-05 - sys_33: 1.4931798567149707e-05 - sys_34: 3.218667874159153e-05 - sys_35: 2.2161878758880702e-05 - sys_36: -4.0581912805627095e-05 - sys_37: 9.591424480642392e-06 - sys_38: -2.4417437246679256e-05 - sys_39: -3.1624355182511645e-05 - sys_40: 2.0168812919032998e-06 - sys_41: -2.2980575960026197e-05 - sys_42: -6.410225267269358e-05 - sys_43: 2.5520943828694632e-05 - sys_44: 4.494138831413843e-05 - sys_45: -3.595079733233058e-05 - sys_46: 2.3074348185500315e-05 - sys_47: 1.3867395982305173e-05 - sys_48: 6.1661604669229626e-06 - sys_49: 1.379022857635685e-06 - sys_50: -7.678776045824867e-07 - sys_51: 6.427784309175805e-06 - sys_52: -2.39926273431876e-06 - sys_53: 3.0982771177328257e-06 - sys_54: 8.369443802909315e-07 + sys_0: -0.00015644455446231636 + sys_1: 0.00022899679299133717 + sys_2: 1.737468270907809e-07 + sys_3: -3.1787279826998e-07 + sys_4: -1.4661199093118787e-06 + sys_5: 0.00022508970023871178 + sys_6: -1.765548438200878e-07 + sys_7: -9.352493531382465e-06 + sys_8: 0.0003335365334914582 + sys_9: 7.486667966796291e-05 + sys_10: -0.0002551570567829 + sys_11: 6.161210869997108e-05 + sys_12: -0.00010480357463629507 + sys_13: 0.00020527381453961638 + sys_14: -0.00036238735302634057 + sys_15: 0.0005784026247067035 + sys_16: -9.302719280896688e-06 + sys_17: -0.00022803308647861508 + sys_18: 0.0023438096801774357 + sys_19: 0.008012466368788964 + sys_20: -0.0005325723316376587 + sys_21: -0.00035803593715351173 + sys_22: -0.0001537334587639376 + sys_23: 0.0003448771624320328 + sys_24: 0.00024342093002564747 + sys_25: 9.579740730387158e-05 + sys_26: 0.00013335219466500755 + sys_27: 5.74486777181635e-05 + sys_28: 3.6353096227308764e-05 + sys_29: -0.00010237843103474121 + sys_30: -0.00015310913122770943 + sys_31: -0.00012048154110741753 + sys_32: -6.519539010572091e-05 + sys_33: -1.4931798567148363e-05 + sys_34: -3.2186678741592295e-05 + sys_35: -2.2161878758912375e-05 + sys_36: 4.0581912805607335e-05 + sys_37: -9.591424480646339e-06 + sys_38: 2.4417437246678795e-05 + sys_39: -3.162435518251147e-05 + sys_40: -2.0168812919028504e-06 + sys_41: 2.2980575960025946e-05 + sys_42: 6.410225267269404e-05 + sys_43: 2.5520943828694927e-05 + sys_44: 4.494138831413957e-05 + sys_45: -3.5950797332329555e-05 + sys_46: 2.307434818549954e-05 + sys_47: 1.3867395982305935e-05 + sys_48: 6.1661604669228965e-06 + sys_49: 1.3790228576357533e-06 + sys_50: -7.678776045826031e-07 + sys_51: 6.427784309175381e-06 + sys_52: -2.3992627343193604e-06 + sys_53: 3.0982771177330053e-06 + sys_54: 8.36944380291162e-07 - pol: 0.0007800000000000001 lumi: 0.0005 - sys_0: -0.0006406706068774938 - sys_1: 0.0015658855740103583 - sys_2: 3.222603438576747e-05 - sys_3: -5.671908078640468e-05 - sys_4: -5.659259838651732e-05 - sys_5: 0.030748840188567623 - sys_6: 0.00010500585402406215 - sys_7: 0.0002449031785548638 - sys_8: -0.0006417479048588652 - sys_9: -0.0001278921404207003 - sys_10: 0.0002679040043756695 - sys_11: 0.0001184718605339791 - sys_12: -0.00012178253541324027 - sys_13: 4.288298901820151e-05 - sys_14: -8.755102765106224e-05 - sys_15: 8.811418449756007e-05 - sys_16: -1.6468425265124108e-06 - sys_17: -5.49059119207344e-05 - sys_18: 6.185040661101141e-06 - sys_19: 6.599978587281024e-05 - sys_20: 4.623636920454578e-05 - sys_21: 2.112082415360047e-05 - sys_22: 1.0186367402495829e-05 - sys_23: 7.859991900123313e-05 - sys_24: -2.74753258667229e-05 - sys_25: -1.343360824506986e-05 - sys_26: -2.5149320709227464e-05 - sys_27: -3.592870260725644e-05 - sys_28: -3.3563972946562154e-06 - sys_29: 1.1982531837967154e-05 - sys_30: -6.0424022213986445e-06 - sys_31: 2.718791599751282e-05 - sys_32: 1.338571277675022e-05 - sys_33: 2.173224348666144e-06 - sys_34: 5.980923451373406e-06 - sys_35: 6.8201600701748155e-06 - sys_36: -1.0308277682802947e-05 - sys_37: 3.6829721450630843e-06 - sys_38: -9.191110574427682e-06 - sys_39: -3.231755999956265e-05 - sys_40: 1.269475263366444e-06 - sys_41: -3.9681526352130896e-06 - sys_42: -8.713950847513948e-06 - sys_43: 2.8770263720982754e-06 - sys_44: 9.796701284972975e-06 - sys_45: -4.421386004237672e-06 - sys_46: 2.0058023318658418e-06 - sys_47: 6.019257510970284e-07 - sys_48: 9.433696358185665e-07 - sys_49: -2.0868123061843871e-07 - sys_50: -1.0853254036289253e-07 - sys_51: 5.930184660628041e-09 - sys_52: -5.505185794152344e-07 - sys_53: 5.246108959387801e-07 - sys_54: 7.008762279479702e-08 + sys_0: -0.0006406706068774937 + sys_1: 0.0015658855740103594 + sys_2: 3.222603438579745e-05 + sys_3: -5.671908078640392e-05 + sys_4: -5.6592598386523596e-05 + sys_5: 0.03074884018856763 + sys_6: 0.00010500585402405444 + sys_7: 0.00024490317855486765 + sys_8: -0.0006417479048588641 + sys_9: -0.00012789214042075833 + sys_10: 0.0002679040043756427 + sys_11: -0.00011847186053397819 + sys_12: 0.00012178253541324321 + sys_13: -4.288298901820349e-05 + sys_14: 8.755102765106257e-05 + sys_15: -8.811418449756123e-05 + sys_16: 1.6468425265114363e-06 + sys_17: 5.490591192073475e-05 + sys_18: -6.185040661103348e-06 + sys_19: -6.599978587280958e-05 + sys_20: -4.623636920454633e-05 + sys_21: -2.1120824153602745e-05 + sys_22: -1.0186367402491494e-05 + sys_23: 7.85999190012329e-05 + sys_24: 2.7475325866724308e-05 + sys_25: 1.343360824506729e-05 + sys_26: 2.514932070922794e-05 + sys_27: 3.592870260725645e-05 + sys_28: 3.35639729465686e-06 + sys_29: -1.1982531837967048e-05 + sys_30: -6.042402221398781e-06 + sys_31: -2.7187915997512754e-05 + sys_32: -1.3385712776750238e-05 + sys_33: -2.17322434866593e-06 + sys_34: -5.980923451373549e-06 + sys_35: -6.8201600701831215e-06 + sys_36: 1.0308277682797251e-05 + sys_37: -3.68297214506326e-06 + sys_38: 9.191110574427494e-06 + sys_39: -3.231755999956263e-05 + sys_40: -1.2694752633657054e-06 + sys_41: 3.968152635212935e-06 + sys_42: 8.713950847513862e-06 + sys_43: 2.877026372098297e-06 + sys_44: 9.79670128497316e-06 + sys_45: -4.421386004237508e-06 + sys_46: 2.0058023318658502e-06 + sys_47: 6.019257510971038e-07 + sys_48: 9.433696358184004e-07 + sys_49: -2.086812306185243e-07 + sys_50: -1.0853254036276998e-07 + sys_51: 5.930184660589484e-09 + sys_52: -5.505185794149594e-07 + sys_53: 5.246108959389465e-07 + sys_54: 7.008762279488717e-08 diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_2JET_200GEV/uncertainties_C.yaml b/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_2JET_200GEV/uncertainties_C.yaml index 7988a2b781..55adaec581 100644 --- a/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_2JET_200GEV/uncertainties_C.yaml +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_2JET_200GEV/uncertainties_C.yaml @@ -230,400 +230,400 @@ definitions: bins: - pol: 0.000221 lumi: 0.0005 - sys_0: -9.493291876578652e-05 - sys_1: 0.00013724028386582747 - sys_2: 4.266842937564774e-05 - sys_3: -5.603849307857628e-05 - sys_4: -1.630682712301522e-05 - sys_5: 0.0001342504096581925 - sys_6: -1.0445858861833677e-05 - sys_7: -0.00022370106677850808 - sys_8: 0.0001618216912066718 - sys_9: 0.00024526966192043665 - sys_10: -7.917543724439857e-05 - sys_11: -0.0001960060844792337 - sys_12: 0.0003231948429524448 - sys_13: -7.365347948513101e-05 - sys_14: 0.00014433847593545534 - sys_15: -0.000150641603564071 - sys_16: 6.626371185883186e-06 - sys_17: 0.00017694968050784292 - sys_18: -0.0005263873052195073 - sys_19: -2.451042091509384e-05 - sys_20: 2.096076280069559e-06 - sys_21: -0.00010695107835044028 - sys_22: -4.97579521433105e-05 - sys_23: -0.00047547735967764604 - sys_24: 0.0002663309016712874 - sys_25: 0.00016365656851004192 - sys_26: 0.000494499863786694 - sys_27: 0.002835038284196692 - sys_28: -0.0006695475329241001 - sys_29: 0.0017278709828212257 - sys_30: 0.003623232556203312 - sys_31: 0.0005925813209910661 - sys_32: 0.000308666859225249 - sys_33: -5.111642773009452e-05 - sys_34: 0.00015393302404085482 - sys_35: 4.819293963287885e-06 - sys_36: -0.00011566875079663919 - sys_37: 2.8035236820893867e-05 - sys_38: -7.331070587928676e-05 - sys_39: -0.00026333013285451205 - sys_40: 7.927898158789391e-06 - sys_41: -1.9253405403088195e-05 - sys_42: -3.7250076217786366e-05 - sys_43: 9.298953211318811e-06 - sys_44: 1.7549126900822733e-05 - sys_45: -2.6502255339580877e-06 - sys_46: -2.123309601883192e-07 - sys_47: -5.458716467111309e-06 - sys_48: 3.135748271888882e-06 - sys_49: -2.472659255890075e-06 - sys_50: -2.7639581359036515e-07 - sys_51: -4.031435080201931e-06 - sys_52: -2.9287199483812884e-06 - sys_53: 2.893797804148632e-06 - sys_54: 5.835398622680072e-07 + sys_0: -9.493291876578634e-05 + sys_1: 0.00013724028386582503 + sys_2: 4.2668429375650193e-05 + sys_3: -5.603849307857661e-05 + sys_4: -1.6306827123015264e-05 + sys_5: 0.00013425040965819266 + sys_6: -1.0445858861834968e-05 + sys_7: -0.00022370106677850764 + sys_8: 0.00016182169120667247 + sys_9: 0.0002452696619204514 + sys_10: -7.917543724434869e-05 + sys_11: 0.00019600608447923118 + sys_12: -0.0003231948429524468 + sys_13: 7.365347948513184e-05 + sys_14: -0.00014433847593545417 + sys_15: 0.00015064160356407103 + sys_16: -6.62637118588291e-06 + sys_17: -0.0001769496805078415 + sys_18: 0.0005263873052195095 + sys_19: 2.4510420915083953e-05 + sys_20: -2.096076280071785e-06 + sys_21: 0.00010695107835044874 + sys_22: 4.975795214328768e-05 + sys_23: -0.00047547735967764696 + sys_24: -0.000266330901671318 + sys_25: -0.0001636565685100275 + sys_26: -0.0004944998637867026 + sys_27: -0.002835038284196695 + sys_28: 0.0006695475329240794 + sys_29: -0.0017278709828212888 + sys_30: 0.0036232325562032745 + sys_31: -0.0005925813209910457 + sys_32: -0.0003086668592252508 + sys_33: 5.1116427730101266e-05 + sys_34: -0.00015393302404085246 + sys_35: -4.8192939633812495e-06 + sys_36: 0.00011566875079663393 + sys_37: -2.8035236820899793e-05 + sys_38: 7.331070587928726e-05 + sys_39: -0.0002633301328545131 + sys_40: -7.927898158787685e-06 + sys_41: 1.925340540308842e-05 + sys_42: 3.725007621778718e-05 + sys_43: 9.298953211318916e-06 + sys_44: 1.7549126900822933e-05 + sys_45: -2.650225533958461e-06 + sys_46: -2.1233096018876003e-07 + sys_47: -5.458716467111442e-06 + sys_48: 3.135748271889683e-06 + sys_49: -2.4726592558900967e-06 + sys_50: -2.763958135903852e-07 + sys_51: -4.03143508020222e-06 + sys_52: -2.9287199483814625e-06 + sys_53: 2.893797804149401e-06 + sys_54: 5.83539862268353e-07 - pol: 0.0008515 lumi: 0.0005 - sys_0: -3.072641781267699e-05 - sys_1: 4.8111421809580714e-05 - sys_2: 0.00013859662013706217 - sys_3: -0.00016037228669235723 - sys_4: -5.560253478535866e-05 - sys_5: 4.2584144601825764e-05 - sys_6: 0.00022632844832471503 - sys_7: -0.0001618130586551884 - sys_8: 5.392720472921101e-05 - sys_9: 0.0002311680414465379 - sys_10: 1.2176258045489244e-05 - sys_11: 0.00015633578691693703 - sys_12: 8.153359986889271e-05 - sys_13: 6.838295668884973e-05 - sys_14: 8.818662557405146e-05 - sys_15: -4.682852897119413e-05 - sys_16: -1.092443306525936e-06 - sys_17: 3.6038207125742416e-05 - sys_18: -0.00015767084988083422 - sys_19: -3.6825797489790045e-07 - sys_20: 3.0859372933488084e-05 - sys_21: -2.4581323379372438e-05 - sys_22: -1.6177850420703517e-05 - sys_23: -6.300989106454212e-05 - sys_24: 4.874076510302265e-05 - sys_25: 3.035191569936428e-05 - sys_26: 2.2001850254784516e-06 - sys_27: 5.917994323731648e-05 - sys_28: 2.769977364405627e-06 - sys_29: 5.7351875998981585e-05 - sys_30: -8.732100910404936e-05 - sys_31: -4.8722646176002556e-05 - sys_32: -0.0011427286730569279 - sys_33: -0.003968074129155194 - sys_34: 0.0009380536419906304 - sys_35: -0.00013529028277993097 - sys_36: -0.00011690396132933457 - sys_37: 7.587989579226704e-06 - sys_38: -1.013441463278164e-05 - sys_39: -3.907846625713198e-05 - sys_40: -2.0089159431754623e-06 - sys_41: 3.0627662807500576e-06 - sys_42: 6.8808882782611535e-06 - sys_43: -5.0226795878941694e-06 - sys_44: -2.1179123116704867e-06 - sys_45: 7.022427772399476e-06 - sys_46: -2.350511146289934e-06 - sys_47: -4.683978593929509e-06 - sys_48: 6.302917808703707e-07 - sys_49: -1.3319791220355508e-06 - sys_50: -2.479680571923792e-08 - sys_51: -2.60465302946429e-06 - sys_52: -1.0514649421289338e-06 - sys_53: 1.0545369817058917e-06 - sys_54: 2.3978311732875633e-07 + sys_0: -3.072641781267718e-05 + sys_1: 4.8111421809577956e-05 + sys_2: 0.00013859662013706185 + sys_3: -0.00016037228669235783 + sys_4: -5.560253478535892e-05 + sys_5: 4.258414460182608e-05 + sys_6: 0.0002263284483247138 + sys_7: -0.00016181305865518782 + sys_8: 5.392720472921145e-05 + sys_9: 0.00023116804144653478 + sys_10: 1.217625804553578e-05 + sys_11: -0.00015633578691693766 + sys_12: -8.153359986889273e-05 + sys_13: -6.838295668884946e-05 + sys_14: -8.818662557405192e-05 + sys_15: 4.6828528971193826e-05 + sys_16: 1.0924433065256533e-06 + sys_17: -3.603820712574218e-05 + sys_18: 0.00015767084988083392 + sys_19: 3.6825797489504595e-07 + sys_20: -3.085937293348892e-05 + sys_21: 2.4581323379373773e-05 + sys_22: 1.61778504206991e-05 + sys_23: -6.300989106454197e-05 + sys_24: -4.8740765103026755e-05 + sys_25: -3.0351915699359374e-05 + sys_26: -2.2001850254788746e-06 + sys_27: -5.917994323731696e-05 + sys_28: -2.7699773644078097e-06 + sys_29: -5.7351875998983096e-05 + sys_30: -8.732100910405024e-05 + sys_31: 4.872264617600103e-05 + sys_32: 0.0011427286730569016 + sys_33: 0.003968074129155263 + sys_34: -0.0009380536419904073 + sys_35: 0.00013529028277986345 + sys_36: 0.00011690396132941936 + sys_37: -7.587989579232196e-06 + sys_38: 1.01344146327826e-05 + sys_39: -3.907846625713656e-05 + sys_40: 2.008915943173153e-06 + sys_41: -3.0627662807513887e-06 + sys_42: -6.880888278259865e-06 + sys_43: -5.022679587895311e-06 + sys_44: -2.117912311671089e-06 + sys_45: 7.022427772398257e-06 + sys_46: -2.3505111462898028e-06 + sys_47: -4.683978593929536e-06 + sys_48: 6.302917808706064e-07 + sys_49: -1.3319791220352702e-06 + sys_50: -2.479680571886383e-08 + sys_51: -2.60465302946431e-06 + sys_52: -1.0514649421284152e-06 + sys_53: 1.0545369817060096e-06 + sys_54: 2.3978311732892843e-07 - pol: 0.0001755 lumi: 0.0005 - sys_0: -5.395028464187759e-05 - sys_1: 7.850916244074662e-05 - sys_2: -5.7996245907865206e-08 - sys_3: -7.373670295683805e-08 - sys_4: -1.0857241842368123e-07 - sys_5: 7.241922335154159e-05 - sys_6: 5.275306095659062e-07 - sys_7: 6.373252576795818e-07 - sys_8: 8.94267845652543e-05 - sys_9: 1.649407107509208e-05 - sys_10: -6.898579854590693e-05 - sys_11: -9.475663575209092e-07 - sys_12: 5.559589963294424e-06 - sys_13: -3.431260356895135e-05 - sys_14: 5.919756020055179e-05 - sys_15: -8.120597601411731e-05 - sys_16: 6.824213143689054e-08 - sys_17: -3.833524638506595e-06 - sys_18: -2.933853721283037e-05 - sys_19: -7.283660248288648e-05 - sys_20: 1.515283785566949e-05 - sys_21: -5.4416104050065454e-05 - sys_22: -3.4309872080160953e-05 - sys_23: 9.848351171562676e-06 - sys_24: 0.00010152866486531097 - sys_25: 5.550097483369882e-05 - sys_26: -8.761347746991994e-06 - sys_27: 8.984577062026086e-05 - sys_28: -9.110039052028971e-05 - sys_29: -0.00013237028328841923 - sys_30: 0.0001849329087317588 - sys_31: 0.0001634486242082582 - sys_32: -0.0005351526176101846 - sys_33: -0.00013120247600673484 - sys_34: -0.0003440010557465555 - sys_35: 0.002330591683973872 - sys_36: 0.0032280191730738777 - sys_37: -0.00021788384009350866 - sys_38: 5.2983728097515016e-05 - sys_39: 7.266764483795487e-05 - sys_40: 3.868942221830488e-05 - sys_41: 1.6827023341014265e-05 - sys_42: 2.2097475974015114e-05 - sys_43: -7.45522896701254e-06 - sys_44: -1.4169875633663038e-05 - sys_45: -1.2549891057228772e-06 - sys_46: -1.1573178960403326e-05 - sys_47: 1.2961645825956368e-05 - sys_48: -8.583108341430419e-06 - sys_49: -2.6127305057694193e-06 - sys_50: -1.3912417838972802e-06 - sys_51: 2.506817479149303e-06 - sys_52: 5.942783948442148e-06 - sys_53: -9.927344953524282e-06 - sys_54: -1.0390760814783556e-05 + sys_0: -5.395028464187758e-05 + sys_1: 7.850916244074643e-05 + sys_2: -5.7996245906245785e-08 + sys_3: -7.373670295676336e-08 + sys_4: -1.0857241842383608e-07 + sys_5: 7.241922335154167e-05 + sys_6: 5.275306095657573e-07 + sys_7: 6.373252576796778e-07 + sys_8: 8.942678456525443e-05 + sys_9: 1.649407107510558e-05 + sys_10: -6.89857985459036e-05 + sys_11: 9.475663575205702e-07 + sys_12: -5.559589963294708e-06 + sys_13: 3.4312603568951674e-05 + sys_14: -5.919756020055182e-05 + sys_15: 8.120597601411704e-05 + sys_16: -6.824213143668038e-08 + sys_17: 3.8335246385070225e-06 + sys_18: 2.9338537212831744e-05 + sys_19: 7.283660248288624e-05 + sys_20: -1.5152837855668593e-05 + sys_21: 5.4416104050067684e-05 + sys_22: 3.430987208015824e-05 + sys_23: 9.84835117156281e-06 + sys_24: -0.00010152866486531814 + sys_25: -5.5500974833691485e-05 + sys_26: 8.761347746991286e-06 + sys_27: -8.984577062026333e-05 + sys_28: 9.110039052029246e-05 + sys_29: 0.00013237028328841533 + sys_30: 0.0001849329087317608 + sys_31: -0.00016344862420825747 + sys_32: 0.0005351526176101838 + sys_33: 0.00013120247600671752 + sys_34: 0.0003440010557465538 + sys_35: -0.002330591683971282 + sys_36: -0.003228019173075793 + sys_37: 0.00021788384009355647 + sys_38: -5.29837280975394e-05 + sys_39: 7.266764483795277e-05 + sys_40: -3.8689422218309735e-05 + sys_41: -1.6827023341015932e-05 + sys_42: -2.209747597402114e-05 + sys_43: -7.455228967014643e-06 + sys_44: -1.416987563366383e-05 + sys_45: -1.2549891057228433e-06 + sys_46: -1.1573178960403804e-05 + sys_47: 1.2961645825956018e-05 + sys_48: -8.583108341430298e-06 + sys_49: -2.6127305057685198e-06 + sys_50: -1.3912417838972878e-06 + sys_51: 2.506817479150544e-06 + sys_52: 5.942783948441394e-06 + sys_53: -9.92734495352662e-06 + sys_54: -1.0390760814784654e-05 - pol: 0.000429 lumi: 0.0005 - sys_0: -9.500814120454236e-05 - sys_1: 0.0001333728091780823 - sys_2: -9.418465634534685e-08 - sys_3: -1.3402174731162534e-07 - sys_4: -2.02034001661278e-07 - sys_5: 0.00013199936043199894 - sys_6: 9.62946758180687e-07 - sys_7: 1.1741273002960353e-06 - sys_8: 0.00016497524052058415 - sys_9: 3.0420492579846913e-05 - sys_10: -0.0001261717587549122 - sys_11: -2.2809409184398282e-06 - sys_12: 1.1861127527710934e-05 - sys_13: -7.560037337110963e-05 - sys_14: 0.00012975577771021636 - sys_15: -0.0001813215212941035 - sys_16: 4.141207029250693e-06 - sys_17: -6.935777692383898e-06 - sys_18: -8.42446092202504e-05 - sys_19: -0.00021777445990506515 - sys_20: 4.240931659536134e-05 - sys_21: -0.00025710347662073616 - sys_22: -8.884289484271321e-05 - sys_23: 2.8774648227348656e-05 - sys_24: 0.0025854927133486714 - sys_25: 0.005578296622335891 - sys_26: 2.8520085137699243e-05 - sys_27: -0.0002346742052745476 - sys_28: 0.00012972940478551587 - sys_29: 0.0001928511740777817 - sys_30: -0.00020583889587068294 - sys_31: -5.1029179907886e-05 - sys_32: 0.00010119416880399169 - sys_33: 2.949883031434932e-05 - sys_34: 6.514025596667258e-05 - sys_35: -2.4022414546320256e-05 - sys_36: -2.0480307178724738e-05 - sys_37: 2.2461790325073007e-06 - sys_38: 3.88604233468489e-06 - sys_39: 2.4795783694304058e-05 - sys_40: 1.7456964105797337e-06 - sys_41: -1.393723582061388e-05 - sys_42: -7.630268165507502e-06 - sys_43: 3.650731655783458e-06 - sys_44: -1.398391620315418e-05 - sys_45: -1.3493041738743298e-05 - sys_46: -8.759538775634096e-06 - sys_47: 1.0272694999450056e-05 - sys_48: -6.791158058576617e-07 - sys_49: -1.3115437979563227e-06 - sys_50: -4.0327785213592066e-07 - sys_51: 8.074712728451528e-07 - sys_52: 1.908949542002299e-06 - sys_53: -5.116907514373828e-06 - sys_54: -4.394967248288965e-06 + sys_0: -9.500814120454224e-05 + sys_1: 0.00013337280917808208 + sys_2: -9.418465634274295e-08 + sys_3: -1.3402174731154085e-07 + sys_4: -2.0203400166138153e-07 + sys_5: 0.00013199936043199924 + sys_6: 9.629467581805022e-07 + sys_7: 1.1741273002960506e-06 + sys_8: 0.00016497524052058398 + sys_9: 3.042049257987109e-05 + sys_10: -0.00012617175875490614 + sys_11: 2.2809409184395267e-06 + sys_12: -1.186112752771154e-05 + sys_13: 7.560037337111045e-05 + sys_14: -0.0001297557777102173 + sys_15: 0.00018132152129410382 + sys_16: -4.14120702924947e-06 + sys_17: 6.93577769238498e-06 + sys_18: 8.42446092202563e-05 + sys_19: 0.00021777445990506396 + sys_20: -4.2409316595359765e-05 + sys_21: 0.00025710347662074315 + sys_22: 8.88428948427005e-05 + sys_23: 2.877464822735519e-05 + sys_24: -0.002585492713349306 + sys_25: -0.005578296622335688 + sys_26: -2.85200851377119e-05 + sys_27: 0.00023467420527455786 + sys_28: -0.00012972940478551877 + sys_29: -0.00019285117407777933 + sys_30: -0.00020583889587068744 + sys_31: 5.102917990788888e-05 + sys_32: -0.00010119416880399359 + sys_33: -2.9498830314345272e-05 + sys_34: -6.514025596667513e-05 + sys_35: 2.4022414546303166e-05 + sys_36: 2.0480307178745565e-05 + sys_37: -2.2461790325068564e-06 + sys_38: -3.886042334685126e-06 + sys_39: 2.4795783694305362e-05 + sys_40: -1.7456964105810165e-06 + sys_41: 1.393723582061428e-05 + sys_42: 7.630268165508244e-06 + sys_43: 3.6507316557836446e-06 + sys_44: -1.3983916203152918e-05 + sys_45: -1.3493041738743027e-05 + sys_46: -8.75953877563444e-06 + sys_47: 1.0272694999449776e-05 + sys_48: -6.791158058576663e-07 + sys_49: -1.311543797956188e-06 + sys_50: -4.032778521356819e-07 + sys_51: 8.074712728453022e-07 + sys_52: 1.9089495420019774e-06 + sys_53: -5.1169075143747714e-06 + sys_54: -4.394967248290217e-06 - pol: 0.0013585 lumi: 0.0005 - sys_0: -0.00016819552993065353 + sys_0: -0.0001681955299306535 sys_1: 0.0002466799215604258 - sys_2: -1.510856282808973e-07 - sys_3: -2.655898579082951e-07 - sys_4: -4.660407671827057e-07 - sys_5: 0.000244913017637834 - sys_6: 1.814728223436926e-06 - sys_7: 2.0024688977505915e-06 - sys_8: 0.00036135857756229003 - sys_9: 7.84093724604574e-05 - sys_10: -0.00031460170636297545 - sys_11: -2.1342538900174346e-05 - sys_12: 7.377554787217257e-05 - sys_13: -0.000486228257372733 - sys_14: 0.0010185594866159943 - sys_15: -0.008052086771584914 - sys_16: 0.006070663134292959 - sys_17: 2.9879350436069186e-06 - sys_18: 0.0001389668986168038 - sys_19: 0.00042800495608913056 - sys_20: -2.6044744860158097e-05 - sys_21: 0.0001298903363943067 - sys_22: 5.86134817923431e-05 - sys_23: 2.337765677475499e-05 - sys_24: -0.0001251831293765522 - sys_25: -5.075162075152813e-05 - sys_26: -2.864887864113953e-06 - sys_27: -4.394038457062937e-05 - sys_28: 2.799726586590466e-05 - sys_29: 5.5571161860746174e-05 - sys_30: -7.163601748172847e-05 - sys_31: 5.522847405860963e-06 - sys_32: 3.901285098831688e-05 - sys_33: 1.1727629358216009e-05 - sys_34: 2.0422395651623645e-05 - sys_35: -7.352332027235302e-06 - sys_36: -1.2222526823483427e-05 - sys_37: 1.9505306862827234e-06 - sys_38: 2.5545614010840795e-07 - sys_39: 1.5062416145470245e-05 - sys_40: -1.5172920673572518e-06 - sys_41: -1.3342835450863213e-06 - sys_42: -1.7180739902446022e-05 - sys_43: 6.822822323033612e-06 - sys_44: -8.316341527097847e-06 - sys_45: -1.1098714471921314e-05 - sys_46: -3.2804707220161305e-06 - sys_47: 3.6172831365300037e-06 - sys_48: 6.82082685585858e-07 - sys_49: -4.796203061534093e-07 - sys_50: -4.613165634703656e-08 - sys_51: -3.90727922586669e-07 - sys_52: 2.37199134426849e-08 - sys_53: -6.690728135666189e-07 - sys_54: -5.987704411920428e-07 + sys_2: -1.510856282761102e-07 + sys_3: -2.6558985790812985e-07 + sys_4: -4.6604076718292607e-07 + sys_5: 0.0002449130176378331 + sys_6: 1.8147282234368388e-06 + sys_7: 2.002468897750861e-06 + sys_8: 0.00036135857756228954 + sys_9: 7.840937246051786e-05 + sys_10: -0.0003146017063629598 + sys_11: 2.1342538900174004e-05 + sys_12: -7.37755478721748e-05 + sys_13: 0.0004862282573727313 + sys_14: -0.0010185594866160318 + sys_15: 0.008052086771584869 + sys_16: -0.006070663134292909 + sys_17: -2.9879350435945138e-06 + sys_18: -0.00013896689861680347 + sys_19: -0.0004280049560891285 + sys_20: 2.6044744860158003e-05 + sys_21: -0.0001298903363943086 + sys_22: -5.861348179233598e-05 + sys_23: 2.3377656774756217e-05 + sys_24: 0.00012518312937655844 + sys_25: 5.075162075151733e-05 + sys_26: 2.864887864114991e-06 + sys_27: 4.394038457062946e-05 + sys_28: -2.7997265865905422e-05 + sys_29: -5.557116186074531e-05 + sys_30: -7.163601748172923e-05 + sys_31: -5.522847405861484e-06 + sys_32: -3.901285098831762e-05 + sys_33: -1.172762935821479e-05 + sys_34: -2.0422395651623936e-05 + sys_35: 7.352332027225731e-06 + sys_36: 1.2222526823489405e-05 + sys_37: -1.950530686282481e-06 + sys_38: -2.554561401085212e-07 + sys_39: 1.5062416145470538e-05 + sys_40: 1.5172920673567082e-06 + sys_41: 1.3342835450867463e-06 + sys_42: 1.7180739902445893e-05 + sys_43: 6.8228223230340295e-06 + sys_44: -8.316341527096566e-06 + sys_45: -1.1098714471921924e-05 + sys_46: -3.28047072201605e-06 + sys_47: 3.617283136530118e-06 + sys_48: 6.820826855856264e-07 + sys_49: -4.796203061535029e-07 + sys_50: -4.6131656347162285e-08 + sys_51: -3.9072792258655145e-07 + sys_52: 2.3719913442793784e-08 + sys_53: -6.690728135667435e-07 + sys_54: -5.987704411921867e-07 - pol: 0.000715 lumi: 0.0005 - sys_0: -0.00033031277643776194 - sys_1: 0.0005027150173447022 - sys_2: 1.9206314050316772e-07 - sys_3: -5.670131178519743e-07 - sys_4: -2.9904539457743166e-06 - sys_5: 0.0005823213147965042 - sys_6: -4.4449351620680264e-07 - sys_7: -3.00917055935812e-05 - sys_8: 0.001631716757787669 - sys_9: 0.003533504159871146 - sys_10: -0.015998098893180972 - sys_11: 0.00011095679678477295 - sys_12: -0.00011975229729658565 - sys_13: 0.00013294933466489813 - sys_14: -0.0002500347033443236 - sys_15: 0.0002611184222769524 - sys_16: -3.1401063750906975e-06 - sys_17: -7.366846916758516e-06 - sys_18: 3.681342609478873e-05 - sys_19: 0.00014035529519831162 - sys_20: 1.374849224977475e-06 - sys_21: 5.313500345988977e-05 - sys_22: 2.3393861590733513e-05 - sys_23: 4.263884390023869e-05 - sys_24: -5.749641628757088e-05 - sys_25: -2.9677327406650437e-05 - sys_26: -4.60317583408258e-06 - sys_27: -2.1343334057654818e-05 - sys_28: 1.2256473851887405e-05 - sys_29: 3.2400104495949154e-05 - sys_30: -4.583464159653856e-05 - sys_31: 1.956794593999883e-05 - sys_32: 2.531389098313723e-05 - sys_33: 6.453865309860918e-06 - sys_34: 1.2104813900562685e-05 - sys_35: -9.537130380904905e-06 - sys_36: -5.588296580137801e-06 - sys_37: 1.1497252833695917e-06 - sys_38: 1.1752983354706875e-06 - sys_39: 5.975268816332975e-06 - sys_40: -1.3166174277113915e-06 - sys_41: -3.1886569934803886e-07 - sys_42: -1.1609960427559685e-05 - sys_43: 4.159399627141157e-06 - sys_44: -2.28086866256756e-06 - sys_45: -1.8956044396094989e-06 - sys_46: -6.463394984536777e-07 - sys_47: -7.669447234469704e-07 - sys_48: 1.6888146737515647e-07 - sys_49: -3.99922220274755e-07 - sys_50: 3.29594462370691e-08 - sys_51: -7.569157647967605e-07 - sys_52: -2.50010868470211e-07 - sys_53: 3.3150782744646745e-07 - sys_54: 1.7192637131533295e-07 + sys_0: -0.0003303127764377617 + sys_1: 0.0005027150173447015 + sys_2: 1.92063140513106e-07 + sys_3: -5.670131178516855e-07 + sys_4: -2.990453945774995e-06 + sys_5: 0.0005823213147965037 + sys_6: -4.444935162071127e-07 + sys_7: -3.0091705593580756e-05 + sys_8: 0.0016317167577876626 + sys_9: 0.0035335041598742447 + sys_10: -0.01599809889318026 + sys_11: -0.00011095679678477047 + sys_12: 0.00011975229729658861 + sys_13: -0.00013294933466489868 + sys_14: 0.0002500347033443251 + sys_15: -0.00026111842227695116 + sys_16: 3.1401063750904468e-06 + sys_17: 7.366846916757277e-06 + sys_18: -3.681342609479008e-05 + sys_19: -0.00014035529519831126 + sys_20: -1.3748492249779508e-06 + sys_21: -5.313500345989163e-05 + sys_22: -2.3393861590728292e-05 + sys_23: 4.26388439002381e-05 + sys_24: 5.7496416287574094e-05 + sys_25: 2.9677327406645697e-05 + sys_26: 4.603175834083862e-06 + sys_27: 2.1343334057655902e-05 + sys_28: -1.225647385188735e-05 + sys_29: -3.240010449594834e-05 + sys_30: -4.58346415965385e-05 + sys_31: -1.9567945939999142e-05 + sys_32: -2.531389098313791e-05 + sys_33: -6.45386530986024e-06 + sys_34: -1.2104813900562938e-05 + sys_35: 9.537130380900384e-06 + sys_36: 5.58829658014589e-06 + sys_37: -1.149725283369117e-06 + sys_38: -1.175298335470555e-06 + sys_39: 5.975268816333162e-06 + sys_40: 1.3166174277115604e-06 + sys_41: 3.188656993478141e-07 + sys_42: 1.160996042755942e-05 + sys_43: 4.1593996271411665e-06 + sys_44: -2.2808686625674884e-06 + sys_45: -1.8956044396094699e-06 + sys_46: -6.463394984536744e-07 + sys_47: -7.669447234469886e-07 + sys_48: 1.6888146737533715e-07 + sys_49: -3.999222202747695e-07 + sys_50: 3.2959446237032695e-08 + sys_51: -7.569157647967791e-07 + sys_52: -2.500108684700541e-07 + sys_53: 3.315078274465136e-07 + sys_54: 1.7192637131549338e-07 - pol: 0.002015 lumi: 0.0005 - sys_0: -0.0901958193595861 - sys_1: -0.0008075421546925004 - sys_2: -2.0705346813197266e-05 - sys_3: 2.3617739272075076e-05 - sys_4: 3.162843137651256e-06 - sys_5: -0.00021460752107831753 - sys_6: 6.132022268292377e-06 - sys_7: 2.8756943007635216e-05 - sys_8: -9.630046897284555e-05 - sys_9: -1.6206226038359014e-05 - sys_10: 5.006544299420353e-05 - sys_11: 1.6115376956362884e-05 - sys_12: -2.1412467226707926e-05 - sys_13: 2.7050839276468816e-06 - sys_14: -2.0694676868980328e-05 - sys_15: 1.996380298303034e-05 - sys_16: -9.073508073616766e-08 - sys_17: -2.8282164374726767e-06 - sys_18: 1.7053852272407012e-06 - sys_19: 1.3372850311835801e-05 - sys_20: 3.1269070878398353e-06 - sys_21: 5.321230218008752e-06 - sys_22: 2.0953546761177416e-06 - sys_23: 1.3701201869508346e-05 - sys_24: -5.881689249181089e-06 - sys_25: -3.453279807552322e-06 - sys_26: 2.817724272462935e-07 - sys_27: -2.1215276703567467e-06 - sys_28: 1.216079481491202e-06 - sys_29: 3.1210190213891643e-06 - sys_30: -4.680123192758351e-06 - sys_31: 3.724329362896258e-06 - sys_32: 3.1608320406361226e-06 - sys_33: 5.942568995031885e-07 - sys_34: 1.3922357665635735e-06 - sys_35: -1.3149467933973128e-06 - sys_36: -5.533469628165044e-07 - sys_37: 1.1717996590198879e-07 - sys_38: 6.28114122908241e-08 - sys_39: 4.1053579749333116e-08 - sys_40: -1.2821684120675743e-07 - sys_41: 7.385676250905749e-08 - sys_42: -6.259294180845676e-07 - sys_43: 1.7974643342319183e-07 - sys_44: -6.097475316098167e-08 - sys_45: 2.0875666393910094e-07 - sys_46: -5.889768121013157e-08 - sys_47: -2.0740468523778816e-07 - sys_48: 1.1489386555461357e-08 - sys_49: -6.189557619298634e-08 - sys_50: 5.489500182566103e-09 - sys_51: -1.1661781533954086e-07 - sys_52: -3.4806557457335935e-08 - sys_53: 4.721529918790479e-08 - sys_54: 2.4071563483724825e-08 + sys_0: -0.09019581935958608 + sys_1: -0.0008075421546924995 + sys_2: -2.070534681322633e-05 + sys_3: 2.3617739272071214e-05 + sys_4: 3.1628431376461965e-06 + sys_5: -0.0002146075210783171 + sys_6: 6.132022268295659e-06 + sys_7: 2.8756943007632404e-05 + sys_8: -9.630046897284554e-05 + sys_9: -1.6206226038367806e-05 + sys_10: 5.0065442994200414e-05 + sys_11: -1.6115376956362948e-05 + sys_12: 2.1412467226707933e-05 + sys_13: -2.7050839276466686e-06 + sys_14: 2.069467686898042e-05 + sys_15: -1.996380298303056e-05 + sys_16: 9.073508073614982e-08 + sys_17: 2.8282164374726847e-06 + sys_18: -1.7053852272410454e-06 + sys_19: -1.3372850311835773e-05 + sys_20: -3.1269070878396943e-06 + sys_21: -5.321230218009187e-06 + sys_22: -2.095354676116955e-06 + sys_23: 1.3701201869507987e-05 + sys_24: 5.881689249181669e-06 + sys_25: 3.45327980755187e-06 + sys_26: -2.817724272461651e-07 + sys_27: 2.121527670356663e-06 + sys_28: -1.2160794814911255e-06 + sys_29: -3.1210190213894163e-06 + sys_30: -4.680123192758483e-06 + sys_31: -3.7243293628963786e-06 + sys_32: -3.1608320406361138e-06 + sys_33: -5.942568995030917e-07 + sys_34: -1.3922357665636199e-06 + sys_35: 1.3149467933968495e-06 + sys_36: 5.533469628176286e-07 + sys_37: -1.171799659020078e-07 + sys_38: -6.281141229081715e-08 + sys_39: 4.105357974935181e-08 + sys_40: 1.2821684120682564e-07 + sys_41: -7.385676250904864e-08 + sys_42: 6.25929418084658e-07 + sys_43: 1.7974643342321065e-07 + sys_44: -6.097475316096333e-08 + sys_45: 2.0875666393894615e-07 + sys_46: -5.8897681210208176e-08 + sys_47: -2.0740468523785513e-07 + sys_48: 1.1489386555474678e-08 + sys_49: -6.18955761929831e-08 + sys_50: 5.489500182381525e-09 + sys_51: -1.1661781533950716e-07 + sys_52: -3.4806557457374356e-08 + sys_53: 4.721529918786495e-08 + sys_54: 2.407156348375864e-08 diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_2JET_MIDRAP_200GEV/uncertainties_OS.yaml b/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_2JET_MIDRAP_200GEV/uncertainties_OS.yaml index 93521c42a2..aab13a6636 100644 --- a/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_2JET_MIDRAP_200GEV/uncertainties_OS.yaml +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_2JET_MIDRAP_200GEV/uncertainties_OS.yaml @@ -230,400 +230,400 @@ definitions: bins: - pol: 0.0003835 lumi: 0.0005 - sys_0: -2.0070690602974216e-09 - sys_1: 2.8611672427228102e-08 - sys_2: 4.2896744472587744e-06 - sys_3: 2.819444982608877e-07 - sys_4: -9.127771282567537e-06 - sys_5: 1.8129696800612663e-08 - sys_6: -7.594486431755823e-06 - sys_7: 3.100627999563582e-06 - sys_8: 2.808709307282868e-07 - sys_9: 1.7866872519239872e-06 - sys_10: 3.1699066642131643e-07 - sys_11: -7.319951621518738e-06 - sys_12: 9.368502190742696e-06 - sys_13: -2.062583442242023e-05 - sys_14: -1.6727963772423892e-05 - sys_15: -1.9349825677702605e-06 - sys_16: -1.076094187008913e-06 - sys_17: 6.582557689157397e-06 - sys_18: 1.8397504562606584e-05 - sys_19: -7.242341005103075e-06 - sys_20: -2.3314567868111953e-05 - sys_21: -5.796552314458929e-06 - sys_22: -1.2677412346491513e-05 - sys_23: 1.685675480863622e-05 - sys_24: 5.915076633935533e-06 - sys_25: -1.6394095535473937e-06 - sys_26: 2.9503664370040805e-05 - sys_27: -1.7562473921296347e-05 - sys_28: 8.804804260870176e-05 - sys_29: -3.526730311227529e-05 - sys_30: 4.423320541054321e-05 - sys_31: 7.703960054808298e-05 - sys_32: -0.00016330396178095347 - sys_33: 3.583984012212362e-05 - sys_34: -3.5653767952351605e-05 - sys_35: -0.00025149807354148747 - sys_36: 0.0004197213583070048 - sys_37: 0.0038567004213793735 - sys_38: -0.0003833417780192327 - sys_39: 0.0002683665775095326 - sys_40: 0.00021914572680067557 - sys_41: -0.0001190673345958187 - sys_42: 4.111077635181518e-05 - sys_43: -4.9575947095020186e-05 - sys_44: -1.8615101177790413e-05 - sys_45: 2.3230913304595474e-05 - sys_46: -2.6281672909137027e-06 - sys_47: 1.545875761737514e-05 - sys_48: -2.7375067733354825e-05 - sys_49: 6.988024116541372e-05 - sys_50: 7.26770793681199e-06 - sys_51: 5.26675036435916e-05 - sys_52: 3.117647906091353e-05 - sys_53: -2.6115419857037124e-05 - sys_54: 8.322293457789328e-06 + sys_0: -2.007069057381171e-09 + sys_1: 2.8611672428620462e-08 + sys_2: 4.289674447263564e-06 + sys_3: 2.8194449826309246e-07 + sys_4: -9.127771282559434e-06 + sys_5: 1.8129696799217203e-08 + sys_6: -7.594486431753425e-06 + sys_7: 3.1006279995653496e-06 + sys_8: 2.808709307257978e-07 + sys_9: 1.7866872519327927e-06 + sys_10: 3.1699066642629825e-07 + sys_11: 7.319951621522258e-06 + sys_12: -9.368502190739362e-06 + sys_13: 2.0625834422421468e-05 + sys_14: 1.6727963772423295e-05 + sys_15: 1.9349825677696426e-06 + sys_16: 1.0760941870098126e-06 + sys_17: -6.5825576891538225e-06 + sys_18: -1.8397504562609504e-05 + sys_19: 7.242341005098025e-06 + sys_20: 2.331456786811331e-05 + sys_21: 5.796552314464641e-06 + sys_22: 1.2677412346490409e-05 + sys_23: 1.6856754808633676e-05 + sys_24: -5.915076633944062e-06 + sys_25: 1.639409553549446e-06 + sys_26: -2.950366437004387e-05 + sys_27: 1.7562473921302588e-05 + sys_28: -8.804804260870792e-05 + sys_29: 3.526730311227508e-05 + sys_30: 4.4233205410535845e-05 + sys_31: -7.703960054809607e-05 + sys_32: 0.00016330396178098776 + sys_33: -3.583984012215044e-05 + sys_34: 3.565376795236101e-05 + sys_35: 0.0002514980735419474 + sys_36: -0.00041972135830692825 + sys_37: -0.003856700421379358 + sys_38: 0.00038334177801923984 + sys_39: 0.00026836657750950194 + sys_40: -0.00021914572680071723 + sys_41: 0.00011906733459582714 + sys_42: -4.1110776351807505e-05 + sys_43: -4.957594709502154e-05 + sys_44: -1.8615101177784423e-05 + sys_45: 2.3230913304591723e-05 + sys_46: -2.628167290912837e-06 + sys_47: 1.545875761737295e-05 + sys_48: -2.7375067733354425e-05 + sys_49: 6.988024116541407e-05 + sys_50: 7.267707936806876e-06 + sys_51: 5.266750364359482e-05 + sys_52: 3.1176479060903605e-05 + sys_53: -2.6115419857040553e-05 + sys_54: 8.322293457786768e-06 - pol: 0.000624 lumi: 0.0005 - sys_0: -5.284240800208635e-09 - sys_1: 1.1626305234994908e-07 - sys_2: 6.434285946305495e-06 - sys_3: 1.4579093408605777e-06 - sys_4: -9.606350664662261e-06 - sys_5: 1.6213883617312984e-07 - sys_6: -9.13088432859729e-06 - sys_7: 3.7256402328585426e-06 - sys_8: 8.285612232295047e-07 - sys_9: 1.3674957230039858e-06 - sys_10: 1.1772587925494011e-07 - sys_11: -7.78878470505458e-06 - sys_12: 1.0702779924752036e-05 - sys_13: -2.2620424262222088e-05 - sys_14: -1.6578150726703992e-05 - sys_15: -3.102697715167656e-06 - sys_16: -1.7119045587579535e-06 - sys_17: 1.3790813277160616e-05 - sys_18: 1.8511212682177597e-05 - sys_19: -1.1629901177030284e-05 - sys_20: -2.8582204291388793e-05 - sys_21: -2.8608005215361594e-05 - sys_22: 2.171408295739701e-06 - sys_23: 1.9172333541867278e-05 - sys_24: 1.835831273090482e-05 - sys_25: 1.1188240892774077e-05 - sys_26: 4.507226837908498e-05 - sys_27: -2.1838203184107475e-05 - sys_28: 9.7421316839225e-05 - sys_29: -3.107043715465292e-05 - sys_30: 3.964413623133258e-05 - sys_31: 5.159848564311588e-05 - sys_32: -3.552558792645962e-05 - sys_33: -1.1193274256245392e-05 - sys_34: -9.257815237959044e-05 - sys_35: -0.00016476062557988224 - sys_36: 0.00010809337192074355 - sys_37: 0.00015339408073554596 - sys_38: 0.00015765472087719552 - sys_39: -0.0002810102251959961 - sys_40: -0.00040314066718260123 - sys_41: 0.0021853241188164126 - sys_42: 0.0004904637038208591 - sys_43: 0.0022706589511969208 - sys_44: 5.090022661948469e-05 - sys_45: -0.00011073343864654401 - sys_46: 0.00010445002996954123 - sys_47: 0.00014398447704208083 - sys_48: 4.1550417704279945e-06 - sys_49: 7.022227734245338e-05 - sys_50: -5.399611177418655e-06 - sys_51: 0.00012608834407695118 - sys_52: 1.5879081689842938e-05 - sys_53: -7.551312923639582e-06 - sys_54: 4.87707692462083e-06 + sys_0: -5.284240799333786e-09 + sys_1: 1.1626305235006959e-07 + sys_2: 6.434285946305355e-06 + sys_3: 1.4579093408605375e-06 + sys_4: -9.606350664660594e-06 + sys_5: 1.6213883617354488e-07 + sys_6: -9.130884328595985e-06 + sys_7: 3.7256402328585227e-06 + sys_8: 8.285612232299266e-07 + sys_9: 1.3674957230055456e-06 + sys_10: 1.1772587925602761e-07 + sys_11: 7.788784705056151e-06 + sys_12: -1.0702779924751718e-05 + sys_13: 2.26204242622222e-05 + sys_14: 1.6578150726705635e-05 + sys_15: 3.1026977151674167e-06 + sys_16: 1.7119045587576808e-06 + sys_17: -1.3790813277160685e-05 + sys_18: -1.8511212682176107e-05 + sys_19: 1.1629901177029652e-05 + sys_20: 2.8582204291390413e-05 + sys_21: 2.86080052153602e-05 + sys_22: -2.1714082957376537e-06 + sys_23: 1.9172333541869568e-05 + sys_24: -1.835831273090233e-05 + sys_25: -1.1188240892772766e-05 + sys_26: -4.507226837908609e-05 + sys_27: 2.183820318410955e-05 + sys_28: -9.742131683922546e-05 + sys_29: 3.107043715465447e-05 + sys_30: 3.9644136231335486e-05 + sys_31: -5.159848564311728e-05 + sys_32: 3.552558792645884e-05 + sys_33: 1.1193274256238104e-05 + sys_34: 9.25781523795951e-05 + sys_35: 0.00016476062557997363 + sys_36: -0.00010809337192060538 + sys_37: -0.00015339408073555033 + sys_38: -0.00015765472087719365 + sys_39: -0.00028101022519598886 + sys_40: 0.0004031406671826326 + sys_41: -0.0021853241188163736 + sys_42: -0.0004904637038209187 + sys_43: 0.0022706589511969364 + sys_44: 5.0900226619477446e-05 + sys_45: -0.00011073343864653468 + sys_46: 0.00010445002996953848 + sys_47: 0.000143984477042084 + sys_48: 4.155041770428278e-06 + sys_49: 7.022227734245254e-05 + sys_50: -5.399611177418431e-06 + sys_51: 0.0001260883440769518 + sys_52: 1.5879081689821518e-05 + sys_53: -7.551312923644985e-06 + sys_54: 4.877076924618962e-06 - pol: 0.000442 lumi: 0.0005 - sys_0: -2.2586118901380413e-08 - sys_1: 3.464646993543439e-07 - sys_2: 4.170734395004763e-06 - sys_3: 2.2736732114868504e-07 - sys_4: -8.884633106795245e-06 - sys_5: 9.069892371497344e-07 - sys_6: -7.22931341011608e-06 - sys_7: 2.223889186910371e-06 - sys_8: 1.7212610540192216e-06 - sys_9: 6.227506360440197e-06 - sys_10: 5.964664749494487e-07 - sys_11: -1.6678107689026423e-05 - sys_12: 1.6141536136912843e-05 - sys_13: -3.840347405208751e-05 - sys_14: -1.6865403962283348e-05 - sys_15: -2.5597773399924573e-05 - sys_16: -1.791242150075835e-05 - sys_17: 3.6891352930283695e-05 - sys_18: 2.0255175954157086e-05 - sys_19: -2.0888581425725698e-05 - sys_20: -6.33793264456119e-05 - sys_21: -2.8992650913905847e-06 - sys_22: 1.889836560054357e-07 - sys_23: 5.775885850686499e-06 - sys_24: 5.619671562679989e-05 - sys_25: -2.8806407001656642e-05 - sys_26: 0.00014991640472052626 - sys_27: 2.114340984867472e-05 - sys_28: 0.00021204080357583338 - sys_29: -4.931822659184177e-05 - sys_30: 5.5187324993300214e-05 - sys_31: -9.88837011027208e-05 - sys_32: -3.6465691371077796e-05 - sys_33: -4.270319298174136e-06 - sys_34: -0.00011327388260672888 - sys_35: -0.0010139756302356866 - sys_36: 0.0007046010967974121 - sys_37: 0.00025631667369230797 - sys_38: 0.0033168002736032216 - sys_39: -0.0009822974266433012 - sys_40: 0.00025818907265623024 - sys_41: -0.00048149629524201946 - sys_42: -0.00026882447548468735 - sys_43: 0.00010194824882691161 - sys_44: 0.00020317794617131745 - sys_45: -0.0002139290416852128 - sys_46: 0.00013768182652745397 - sys_47: 0.00013051896500651116 - sys_48: 3.108504360048413e-05 - sys_49: 2.8938321772724683e-05 - sys_50: -5.320887498068763e-06 - sys_51: 7.982870732594203e-05 - sys_52: -5.562301788029439e-06 - sys_53: 1.141776346215736e-05 - sys_54: 3.5307482858849182e-06 + sys_0: -2.2586118901277178e-08 + sys_1: 3.464646993537248e-07 + sys_2: 4.170734395005033e-06 + sys_3: 2.273673211487993e-07 + sys_4: -8.884633106795049e-06 + sys_5: 9.069892371500597e-07 + sys_6: -7.229313410115936e-06 + sys_7: 2.2238891869110597e-06 + sys_8: 1.7212610540197015e-06 + sys_9: 6.227506360441677e-06 + sys_10: 5.964664749506641e-07 + sys_11: 1.6678107689025874e-05 + sys_12: -1.614153613691297e-05 + sys_13: 3.8403474052087235e-05 + sys_14: 1.6865403962283544e-05 + sys_15: 2.5597773399924936e-05 + sys_16: 1.7912421500759464e-05 + sys_17: -3.6891352930281906e-05 + sys_18: -2.0255175954158316e-05 + sys_19: 2.0888581425726186e-05 + sys_20: 6.337932644561303e-05 + sys_21: 2.89926509139011e-06 + sys_22: -1.8898365600497146e-07 + sys_23: 5.775885850686196e-06 + sys_24: -5.619671562679277e-05 + sys_25: 2.88064070016594e-05 + sys_26: -0.00014991640472052667 + sys_27: -2.114340984866839e-05 + sys_28: -0.00021204080357583446 + sys_29: 4.931822659184348e-05 + sys_30: 5.518732499330571e-05 + sys_31: 9.88837011027189e-05 + sys_32: 3.646569137108443e-05 + sys_33: 4.270319298161878e-06 + sys_34: 0.00011327388260675347 + sys_35: 0.0010139756302363022 + sys_36: -0.0007046010967965646 + sys_37: -0.00025631667369226016 + sys_38: -0.0033168002736032156 + sys_39: -0.0009822974266433168 + sys_40: -0.0002581890726562319 + sys_41: 0.00048149629524202 + sys_42: 0.00026882447548468507 + sys_43: 0.0001019482488269105 + sys_44: 0.00020317794617132065 + sys_45: -0.00021392904168520495 + sys_46: 0.00013768182652745066 + sys_47: 0.0001305189650065176 + sys_48: 3.108504360048268e-05 + sys_49: 2.893832177272401e-05 + sys_50: -5.320887498069449e-06 + sys_51: 7.982870732593972e-05 + sys_52: -5.562301788041207e-06 + sys_53: 1.141776346215646e-05 + sys_54: 3.5307482858847455e-06 - pol: 0.0009815000000000002 lumi: 0.0005 - sys_0: -9.367538884138563e-08 - sys_1: 8.911728434347002e-07 - sys_2: 1.2103013722931863e-05 - sys_3: 2.7029292898364538e-06 - sys_4: -1.9735125344968857e-05 - sys_5: 3.2546923389909717e-06 - sys_6: -1.3875322102808332e-05 - sys_7: -7.556034695797357e-06 - sys_8: 2.4592592583516363e-05 - sys_9: 4.975888581564231e-05 - sys_10: 6.050443840896132e-06 - sys_11: -5.138316029424011e-05 - sys_12: 6.281747833997374e-05 - sys_13: -8.770156037024251e-05 - sys_14: -3.8525589517289844e-05 - sys_15: -2.333952201291793e-06 - sys_16: -2.2968051003324812e-06 - sys_17: 0.00014018899770802597 - sys_18: -2.1668459989287247e-05 - sys_19: -6.309983476751449e-05 - sys_20: -0.00019478155622020555 - sys_21: 3.3163900957465315e-06 - sys_22: 4.649905646504677e-06 - sys_23: -0.00011955615081118019 - sys_24: 6.895598008391906e-05 - sys_25: -5.050228806825519e-05 - sys_26: 0.0009594666498419969 - sys_27: 0.0008174796990282535 - sys_28: 0.004617752068900638 - sys_29: -0.001112099639944114 - sys_30: 0.0003780837126729992 - sys_31: 0.0008331575234705539 - sys_32: 3.16836436131654e-05 - sys_33: -1.3375237599489062e-05 - sys_34: 5.983524129978413e-05 - sys_35: 0.0004649349790019094 - sys_36: -0.00031118197473107217 - sys_37: -1.9965661075766742e-05 - sys_38: -0.0002696084033230357 - sys_39: -0.00042027942228310293 - sys_40: 5.258910086182561e-05 - sys_41: -0.00016803711275013475 - sys_42: -0.00021261502264706766 - sys_43: 7.119803008087905e-05 - sys_44: 0.0001982560488042819 - sys_45: -0.00015009938119404988 - sys_46: 7.590443592882095e-05 - sys_47: 5.286325172696895e-05 - sys_48: 2.1881990755796658e-05 - sys_49: 4.566957546324344e-06 - sys_50: -2.9925623176445365e-06 - sys_51: 2.1822195447250576e-05 - sys_52: -8.078850282810503e-06 - sys_53: 8.914669144058754e-06 - sys_54: 9.97645665354758e-07 + sys_0: -9.367538884145645e-08 + sys_1: 8.9117284343342e-07 + sys_2: 1.2103013722931753e-05 + sys_3: 2.702929289836089e-06 + sys_4: -1.973512534496895e-05 + sys_5: 3.2546923389910085e-06 + sys_6: -1.3875322102808896e-05 + sys_7: -7.556034695797016e-06 + sys_8: 2.4592592583517193e-05 + sys_9: 4.975888581564224e-05 + sys_10: 6.050443840905822e-06 + sys_11: 5.1383160294238785e-05 + sys_12: -6.281747833997564e-05 + sys_13: 8.770156037024289e-05 + sys_14: 3.85255895172948e-05 + sys_15: 2.333952201293493e-06 + sys_16: 2.2968051003328548e-06 + sys_17: -0.00014018899770802228 + sys_18: 2.166845998928802e-05 + sys_19: 6.309983476751469e-05 + sys_20: 0.00019478155622020395 + sys_21: -3.316390095745302e-06 + sys_22: -4.649905646513627e-06 + sys_23: -0.00011955615081118443 + sys_24: -6.89559800838926e-05 + sys_25: 5.0502288068257865e-05 + sys_26: -0.0009594666498420045 + sys_27: -0.0008174796990281748 + sys_28: -0.004617752068900637 + sys_29: 0.0011120996399441338 + sys_30: 0.0003780837126730596 + sys_31: -0.0008331575234705533 + sys_32: -3.168364361317085e-05 + sys_33: 1.3375237599497897e-05 + sys_34: -5.983524129979234e-05 + sys_35: -0.0004649349790021682 + sys_36: 0.0003111819747306886 + sys_37: 1.996566107576078e-05 + sys_38: 0.0002696084033230332 + sys_39: -0.0004202794222831042 + sys_40: -5.25891008618211e-05 + sys_41: 0.000168037112750134 + sys_42: 0.0002126150226470685 + sys_43: 7.119803008087984e-05 + sys_44: 0.00019825604880428465 + sys_45: -0.00015009938119404305 + sys_46: 7.590443592881869e-05 + sys_47: 5.2863251726972856e-05 + sys_48: 2.1881990755796166e-05 + sys_49: 4.566957546324316e-06 + sys_50: -2.992562317644917e-06 + sys_51: 2.1822195447248628e-05 + sys_52: -8.078850282813269e-06 + sys_53: 8.914669144059413e-06 + sys_54: 9.97645665355854e-07 - pol: 0.0005395 lumi: 0.0005 - sys_0: -8.738293030024384e-06 - sys_1: 6.602579914035618e-05 - sys_2: 2.9818276343473876e-05 - sys_3: -1.6170017742167167e-05 - sys_4: -3.2829887352332645e-05 - sys_5: 4.625418211992601e-05 - sys_6: 9.999249037300942e-06 - sys_7: -7.28486555478921e-05 - sys_8: -1.5134918578495592e-06 - sys_9: 0.00023507292138491939 - sys_10: 5.144361019566121e-05 - sys_11: -0.00022514374258228735 - sys_12: 0.0002933639413223962 - sys_13: -0.000294514339895533 - sys_14: -0.00011999651220544265 - sys_15: 1.24761203250597e-05 - sys_16: -2.221987520593638e-06 - sys_17: 0.0011403206256308358 - sys_18: -0.0014416867230703922 - sys_19: 5.2872259884693116e-05 - sys_20: -0.00735315080289963 - sys_21: -0.00010137154410486682 - sys_22: -5.133899131552469e-05 - sys_23: 0.0014268866270418388 - sys_24: -3.995897251266899e-05 - sys_25: 3.964629267910613e-05 - sys_26: -0.0006531434484419972 - sys_27: -0.0005562350036036043 - sys_28: -0.0002038921814537873 - sys_29: -4.3753257150393846e-05 - sys_30: 0.0002753096941822482 - sys_31: 0.00035524632761199426 - sys_32: 1.8853622565578195e-05 - sys_33: -2.1601636416174218e-05 - sys_34: 1.5759901905535633e-05 - sys_35: 0.00013741807534250344 - sys_36: -9.687199883477546e-05 - sys_37: 1.8815432099464806e-05 - sys_38: -0.00011667890959741919 - sys_39: -0.00033624385739658213 - sys_40: 2.1839855665450934e-05 - sys_41: -6.116776760677679e-05 - sys_42: -0.00011651011544322042 - sys_43: 3.702404461159845e-05 - sys_44: 8.455796672605015e-05 - sys_45: -5.0956016323892e-05 - sys_46: 1.8678371240015352e-05 - sys_47: 1.0561422910440479e-05 - sys_48: 8.480435637195874e-06 - sys_49: -5.193246063949312e-07 - sys_50: -1.222647371168934e-06 - sys_51: 2.7684440324487624e-06 - sys_52: -4.513793959294049e-06 - sys_53: 4.087748499518048e-06 - sys_54: 1.0723921979698017e-07 + sys_0: -8.738293030024404e-06 + sys_1: 6.602579914035497e-05 + sys_2: 2.981827634347502e-05 + sys_3: -1.6170017742168096e-05 + sys_4: -3.2829887352332164e-05 + sys_5: 4.6254182119924645e-05 + sys_6: 9.999249037299074e-06 + sys_7: -7.284865554789172e-05 + sys_8: -1.5134918578499959e-06 + sys_9: 0.00023507292138491044 + sys_10: 5.14436101957099e-05 + sys_11: 0.00022514374258228304 + sys_12: -0.0002933639413223984 + sys_13: 0.0002945143398955354 + sys_14: 0.0001199965122054402 + sys_15: -1.2476120325056629e-05 + sys_16: 2.2219875205981693e-06 + sys_17: -0.0011403206256308336 + sys_18: 0.0014416867230704223 + sys_19: -5.287225988481247e-05 + sys_20: 0.00735315080289964 + sys_21: 0.00010137154410482915 + sys_22: 5.133899131556196e-05 + sys_23: 0.0014268866270418321 + sys_24: 3.995897251265645e-05 + sys_25: -3.9646292679108765e-05 + sys_26: 0.0006531434484420008 + sys_27: 0.0005562350036035985 + sys_28: 0.0002038921814537988 + sys_29: 4.375325715038657e-05 + sys_30: 0.0002753096941822471 + sys_31: -0.0003552463276119899 + sys_32: -1.885362256558018e-05 + sys_33: 2.1601636416175837e-05 + sys_34: -1.5759901905536423e-05 + sys_35: -0.00013741807534258448 + sys_36: 9.687199883466136e-05 + sys_37: -1.8815432099467513e-05 + sys_38: 0.00011667890959741689 + sys_39: -0.00033624385739658224 + sys_40: -2.1839855665445635e-05 + sys_41: 6.116776760677539e-05 + sys_42: 0.00011651011544321969 + sys_43: 3.7024044611599e-05 + sys_44: 8.455796672605143e-05 + sys_45: -5.09560163238891e-05 + sys_46: 1.8678371240014756e-05 + sys_47: 1.0561422910441485e-05 + sys_48: 8.480435637195893e-06 + sys_49: -5.193246063951591e-07 + sys_50: -1.2226473711689796e-06 + sys_51: 2.7684440324479907e-06 + sys_52: -4.513793959294783e-06 + sys_53: 4.087748499518545e-06 + sys_54: 1.0723921979764977e-07 - pol: 0.000598 lumi: 0.0005 - sys_0: -9.760510588081825e-07 - sys_1: 3.2982173523095426e-06 - sys_2: 0.0002461648753249573 - sys_3: -0.00014826066564818866 - sys_4: -0.00028721035642905834 - sys_5: 2.5307246977877084e-05 - sys_6: 0.0003329430723853257 - sys_7: -0.0009969834753114494 - sys_8: 1.085915500947733e-05 - sys_9: 0.0029145841838451305 - sys_10: 0.0006302103891965757 - sys_11: -0.0008385429249779247 - sys_12: 0.005332132548805452 - sys_13: -0.006513836745363104 - sys_14: -0.005372781033024831 - sys_15: -0.00021982626028653333 - sys_16: 9.608033508857557e-06 - sys_17: -0.0019908999130607073 - sys_18: 0.0026594608581895374 - sys_19: -0.0007641667663534264 - sys_20: 7.733495270018974e-05 - sys_21: -4.158103005843695e-05 - sys_22: -2.2096784079061853e-05 - sys_23: 0.0009037313990061078 - sys_24: 2.0452489273009423e-05 - sys_25: 1.4541308621169646e-05 - sys_26: -0.00027350533469576373 - sys_27: -0.0004328094545077054 - sys_28: -9.68146049479721e-05 - sys_29: -0.00015542762030084837 - sys_30: 0.0004081045532262642 - sys_31: 0.00024444080808111115 - sys_32: 2.337190779790684e-05 - sys_33: -5.8339688696582285e-05 - sys_34: 2.8044159776294532e-05 - sys_35: 3.72279540905547e-05 - sys_36: -3.9619999149580605e-05 - sys_37: -3.9758980568553805e-06 - sys_38: -5.514092091061613e-05 - sys_39: -0.00015982883603593822 - sys_40: 1.280449261976766e-05 - sys_41: -2.870726377210201e-05 - sys_42: -3.935948644132474e-05 - sys_43: 7.950298482475439e-06 - sys_44: 2.012591694092418e-05 - sys_45: -9.68067319800534e-06 - sys_46: 1.7522183443564621e-06 - sys_47: -1.2976108012021999e-06 - sys_48: 3.6223275203775305e-06 - sys_49: -1.7846117863936533e-06 - sys_50: -5.712729578145397e-07 - sys_51: -2.0749258371053974e-06 - sys_52: -2.8104278658360173e-06 - sys_53: 2.2589700272245316e-06 - sys_54: -1.633139895745711e-07 + sys_0: -9.760510588093472e-07 + sys_1: 3.2982173523019036e-06 + sys_2: 0.0002461648753249557 + sys_3: -0.0001482606656481923 + sys_4: -0.00028721035642905856 + sys_5: 2.5307246977875102e-05 + sys_6: 0.0003329430723853208 + sys_7: -0.0009969834753114448 + sys_8: 1.0859155009486282e-05 + sys_9: 0.0029145841838449996 + sys_10: 0.0006302103891971683 + sys_11: 0.0008385429249778931 + sys_12: -0.005332132548805452 + sys_13: 0.006513836745363074 + sys_14: 0.005372781033024851 + sys_15: 0.00021982626028654027 + sys_16: -9.60803350885145e-06 + sys_17: 0.001990899913060711 + sys_18: -0.002659460858189529 + sys_19: 0.0007641667663534808 + sys_20: -7.733495270017373e-05 + sys_21: 4.158103005843205e-05 + sys_22: 2.20967840790924e-05 + sys_23: 0.0009037313990061125 + sys_24: -2.045248927301445e-05 + sys_25: -1.4541308621168084e-05 + sys_26: 0.00027350533469576584 + sys_27: 0.0004328094545077055 + sys_28: 9.681460494798644e-05 + sys_29: 0.0001554276203008405 + sys_30: 0.00040810455322626797 + sys_31: -0.00024444080808110974 + sys_32: -2.3371907797909463e-05 + sys_33: 5.8339688696584406e-05 + sys_34: -2.8044159776292397e-05 + sys_35: -3.722795409058845e-05 + sys_36: 3.961999914955004e-05 + sys_37: 3.975898056856155e-06 + sys_38: 5.51409209106158e-05 + sys_39: -0.00015982883603593914 + sys_40: -1.280449261976529e-05 + sys_41: 2.8707263772101425e-05 + sys_42: 3.9359486441325155e-05 + sys_43: 7.950298482475454e-06 + sys_44: 2.0125916940924514e-05 + sys_45: -9.68067319800498e-06 + sys_46: 1.7522183443560712e-06 + sys_47: -1.2976108012022412e-06 + sys_48: 3.622327520377898e-06 + sys_49: -1.7846117863937454e-06 + sys_50: -5.712729578136606e-07 + sys_51: -2.074925837105482e-06 + sys_52: -2.8104278658362324e-06 + sys_53: 2.2589700272247006e-06 + sys_54: -1.63313989574311e-07 - pol: 0.001833 lumi: 0.0005 - sys_0: -3.980543092058885e-06 - sys_1: 1.3970398524194827e-05 - sys_2: 0.006698695525763587 - sys_3: -0.00793412613824112 + sys_0: -3.980543092075599e-06 + sys_1: 1.3970398524005846e-05 + sys_2: 0.006698695525763528 + sys_3: -0.007934126138241137 sys_4: -0.030445063700132294 - sys_5: -7.702880306314849e-05 - sys_6: -0.010664823694105978 - sys_7: 0.004045701935387951 - sys_8: -2.080986418097191e-06 - sys_9: -0.001778520371006865 - sys_10: -0.00039920864031923396 - sys_11: -0.0007148417922962354 - sys_12: -0.0003507484962298639 - sys_13: -0.000280310250052849 - sys_14: -0.00014604134545650934 - sys_15: -6.1379837546738025e-06 - sys_16: 5.348445281537037e-07 - sys_17: -7.909706169156667e-05 - sys_18: 0.0002184054704118239 - sys_19: -6.89376215888873e-05 - sys_20: -2.598450008067757e-05 - sys_21: -4.33509734711091e-06 - sys_22: -2.1736458644610068e-06 - sys_23: 5.326387141743868e-05 - sys_24: 5.116577685065594e-06 - sys_25: 2.8475504628413597e-06 - sys_26: -7.0262723636100016e-06 - sys_27: -3.2749443307112043e-06 - sys_28: -1.8661919913722762e-05 - sys_29: -3.3765339113065e-05 - sys_30: 4.0929143886329305e-05 - sys_31: 1.3633282072982091e-05 - sys_32: -1.1493360209342068e-06 - sys_33: -2.4010967050596406e-05 - sys_34: 8.18218511486655e-06 - sys_35: 4.814138112902533e-07 - sys_36: -3.6548531854894057e-06 - sys_37: -1.643184661524371e-06 - sys_38: -3.6461298588737134e-06 - sys_39: -7.848204247780759e-06 - sys_40: 8.640501022415997e-07 - sys_41: -2.1121208712118595e-06 - sys_42: -1.324611046806053e-06 - sys_43: -4.0264779842782366e-07 - sys_44: 1.9977230560802901e-07 - sys_45: 4.404127961440465e-07 - sys_46: -4.842444951624331e-07 - sys_47: -7.365413583612433e-07 - sys_48: 3.7846729672894614e-07 - sys_49: -3.4935933045267453e-07 - sys_50: -7.018020041527868e-08 - sys_51: -5.694394543822049e-07 - sys_52: -3.8742966940176704e-07 - sys_53: 2.964432619699536e-07 - sys_54: -4.5220944437680936e-08 + sys_5: -7.702880306315529e-05 + sys_6: -0.010664823694105976 + sys_7: 0.004045701935387928 + sys_8: -2.0809864181007924e-06 + sys_9: -0.0017785203710067741 + sys_10: -0.0003992086403195918 + sys_11: 0.0007148417922962367 + sys_12: 0.0003507484962298627 + sys_13: 0.0002803102500528506 + sys_14: 0.00014604134545651037 + sys_15: 6.137983754673824e-06 + sys_16: -5.34844528153285e-07 + sys_17: 7.909706169156633e-05 + sys_18: -0.00021840547041182312 + sys_19: 6.893762158889163e-05 + sys_20: 2.5984500080679243e-05 + sys_21: 4.335097347110987e-06 + sys_22: 2.1736458644628897e-06 + sys_23: 5.326387141743835e-05 + sys_24: -5.116577685066306e-06 + sys_25: -2.847550462841288e-06 + sys_26: 7.026272363609893e-06 + sys_27: 3.2749443307113157e-06 + sys_28: 1.866191991372346e-05 + sys_29: 3.3765339113064275e-05 + sys_30: 4.092914388632996e-05 + sys_31: -1.3633282072981957e-05 + sys_32: 1.1493360209339038e-06 + sys_33: 2.4010967050597023e-05 + sys_34: -8.18218511486529e-06 + sys_35: -4.814138112930763e-07 + sys_36: 3.6548531854888607e-06 + sys_37: 1.6431846615244383e-06 + sys_38: 3.6461298588735783e-06 + sys_39: -7.848204247780718e-06 + sys_40: -8.640501022415249e-07 + sys_41: 2.112120871211801e-06 + sys_42: 1.3246110468061838e-06 + sys_43: -4.0264779842782594e-07 + sys_44: 1.9977230560798402e-07 + sys_45: 4.404127961441278e-07 + sys_46: -4.842444951624203e-07 + sys_47: -7.365413583613068e-07 + sys_48: 3.7846729672898875e-07 + sys_49: -3.493593304526304e-07 + sys_50: -7.018020041487059e-08 + sys_51: -5.694394543820981e-07 + sys_52: -3.874296694017072e-07 + sys_53: 2.964432619700054e-07 + sys_54: -4.5220944437559427e-08 diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_2JET_MIDRAP_200GEV/uncertainties_SS.yaml b/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_2JET_MIDRAP_200GEV/uncertainties_SS.yaml index 6d2ed1a16f..c751450779 100644 --- a/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_2JET_MIDRAP_200GEV/uncertainties_SS.yaml +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_2JET_MIDRAP_200GEV/uncertainties_SS.yaml @@ -230,400 +230,400 @@ definitions: bins: - pol: 0.0004355 lumi: 0.0005 - sys_0: -1.658056872888884e-09 - sys_1: 3.140827267008877e-08 - sys_2: 3.0418457957958104e-06 - sys_3: 1.288922481172695e-06 - sys_4: -2.192020358736063e-06 - sys_5: 2.996043296517624e-08 - sys_6: -3.029370230115433e-06 - sys_7: 1.218261160959624e-06 - sys_8: 3.6228990873453944e-07 - sys_9: 7.462720591574504e-08 - sys_10: -4.3965343196350976e-08 - sys_11: -1.7490608842930915e-06 - sys_12: 4.412074839935149e-06 - sys_13: -7.608695857573235e-06 - sys_14: -5.825735235180118e-06 - sys_15: -1.6816151122779383e-06 - sys_16: -1.1905123113740107e-06 - sys_17: 1.8158735573711971e-06 - sys_18: 5.148915516120548e-06 - sys_19: -3.273445683118801e-06 - sys_20: -8.182862372637505e-06 - sys_21: -4.787016215387209e-06 - sys_22: -9.948993839407328e-06 - sys_23: 4.754420081652677e-06 - sys_24: 6.021789472225856e-06 - sys_25: -1.394966296751198e-06 - sys_26: 1.4430955466254012e-05 - sys_27: -5.599405127546826e-06 - sys_28: 2.7649396292401746e-05 - sys_29: -1.0659112625496688e-05 - sys_30: 1.2535655606181161e-05 - sys_31: 1.9661612783345774e-05 - sys_32: -7.660137858855078e-05 - sys_33: 1.7584596780049033e-05 - sys_34: -2.2881629333917068e-05 - sys_35: -4.9773901299231286e-05 - sys_36: 9.545061238829889e-05 - sys_37: 0.00020299134732531304 - sys_38: 8.255796093877062e-05 - sys_39: -0.000189341118344038 - sys_40: -0.0033477500546966856 - sys_41: -0.0006051123535269574 - sys_42: 9.131715486246246e-05 - sys_43: -8.07675945648248e-05 - sys_44: -3.9671920135474006e-05 - sys_45: -1.669463979039761e-05 - sys_46: -5.452111055887787e-06 - sys_47: 8.19214157607349e-05 - sys_48: -3.0653113943515775e-05 - sys_49: 8.125942823378536e-05 - sys_50: 3.0347912756332494e-06 - sys_51: 9.133221855813155e-05 - sys_52: 3.730071017724539e-05 - sys_53: -3.7564684612704575e-05 - sys_54: -3.0777332776610266e-07 + sys_0: -1.6580568700697101e-09 + sys_1: 3.1408272670026976e-08 + sys_2: 3.041845795798363e-06 + sys_3: 1.2889224811745212e-06 + sys_4: -2.1920203587299335e-06 + sys_5: 2.996043296666902e-08 + sys_6: -3.0293702301110028e-06 + sys_7: 1.2182611609621066e-06 + sys_8: 3.622899087343914e-07 + sys_9: 7.462720592064682e-08 + sys_10: -4.396534319295198e-08 + sys_11: 1.7490608842972803e-06 + sys_12: -4.41207483993251e-06 + sys_13: 7.608695857573961e-06 + sys_14: 5.8257352351828515e-06 + sys_15: 1.6816151122775612e-06 + sys_16: 1.1905123113722923e-06 + sys_17: -1.8158735573723986e-06 + sys_18: -5.148915516116998e-06 + sys_19: 3.273445683117427e-06 + sys_20: 8.182862372637793e-06 + sys_21: 4.787016215387714e-06 + sys_22: 9.94899383940982e-06 + sys_23: 4.754420081651711e-06 + sys_24: -6.0217894722282335e-06 + sys_25: 1.3949662967510566e-06 + sys_26: -1.4430955466259189e-05 + sys_27: 5.599405127549771e-06 + sys_28: -2.7649396292399235e-05 + sys_29: 1.0659112625499226e-05 + sys_30: 1.25356556061858e-05 + sys_31: -1.9661612783350026e-05 + sys_32: 7.660137858855269e-05 + sys_33: -1.7584596780051523e-05 + sys_34: 2.2881629333914253e-05 + sys_35: 4.9773901299321844e-05 + sys_36: -9.545061238828024e-05 + sys_37: -0.00020299134732535275 + sys_38: -8.255796093878024e-05 + sys_39: -0.00018934111834394704 + sys_40: 0.0033477500546966886 + sys_41: 0.0006051123535269836 + sys_42: -9.131715486244866e-05 + sys_43: -8.076759456482747e-05 + sys_44: -3.967192013547836e-05 + sys_45: -1.6694639790390727e-05 + sys_46: -5.452111055887961e-06 + sys_47: 8.192141576073089e-05 + sys_48: -3.065311394351454e-05 + sys_49: 8.125942823378571e-05 + sys_50: 3.034791275632412e-06 + sys_51: 9.133221855813574e-05 + sys_52: 3.730071017722663e-05 + sys_53: -3.756468461271002e-05 + sys_54: -3.0777332777346497e-07 - pol: 0.000572 lumi: 0.0005 - sys_0: -8.293881943341726e-09 - sys_1: 1.5750662937975654e-07 - sys_2: 3.212247395153709e-06 - sys_3: 7.126612500023773e-07 - sys_4: -4.800875992010975e-06 - sys_5: 2.7551233322403476e-07 - sys_6: -4.493621540601891e-06 - sys_7: 1.6149106579787652e-06 - sys_8: 1.025135489990001e-06 - sys_9: 1.921135162354943e-06 - sys_10: 1.2219966859450356e-07 - sys_11: -5.816965990305692e-06 - sys_12: 5.717732609700918e-06 - sys_13: -1.4468511874718747e-05 - sys_14: -8.344732271301625e-06 - sys_15: -3.139430540385995e-06 - sys_16: -1.7381220149588226e-06 - sys_17: 1.2493639906319336e-05 - sys_18: 1.1548576980592622e-05 - sys_19: -1.196345097462731e-05 - sys_20: -2.3109897496549195e-05 - sys_21: -2.7887152355422904e-05 - sys_22: 2.632092298103474e-06 - sys_23: 1.0625464275110314e-05 - sys_24: 2.1593721604516617e-05 - sys_25: 9.494656487902311e-06 - sys_26: 5.01440673573955e-05 - sys_27: -2.2673911698770577e-05 - sys_28: 8.495100229926799e-05 - sys_29: -2.4116615168048463e-05 - sys_30: 4.330099787564309e-05 - sys_31: -1.8195602625372562e-06 - sys_32: -3.681743663987125e-05 - sys_33: -8.583556178778838e-06 - sys_34: -9.942180425826527e-05 - sys_35: -0.00018853530344037033 - sys_36: 0.00012018777748417468 - sys_37: 8.951922007924452e-05 - sys_38: 0.00015404810165720544 - sys_39: -0.00020457566939626978 - sys_40: -0.00034875728359026493 - sys_41: 0.002230474303850599 - sys_42: -0.0009863174683658335 - sys_43: -0.0020342677899925846 - sys_44: 9.494378355503931e-05 - sys_45: -0.0002391748739488747 - sys_46: 0.00012577107681740118 - sys_47: 0.0001714874567893477 - sys_48: 2.132201496834494e-05 - sys_49: 6.406641505355314e-05 - sys_50: -5.9174880485093314e-06 - sys_51: 0.00012532458404677983 - sys_52: 8.042852039985894e-06 - sys_53: 1.0316853492285339e-07 - sys_54: 5.375286095793707e-06 + sys_0: -8.293881942981595e-09 + sys_1: 1.5750662937964886e-07 + sys_2: 3.2122473951543667e-06 + sys_3: 7.126612500027102e-07 + sys_4: -4.800875992009747e-06 + sys_5: 2.7551233322497e-07 + sys_6: -4.493621540601342e-06 + sys_7: 1.6149106579791428e-06 + sys_8: 1.0251354899901625e-06 + sys_9: 1.921135162356045e-06 + sys_10: 1.2219966859591506e-07 + sys_11: 5.816965990306672e-06 + sys_12: -5.717732609700575e-06 + sys_13: 1.4468511874718806e-05 + sys_14: 8.344732271301762e-06 + sys_15: 3.139430540385609e-06 + sys_16: 1.738122014959058e-06 + sys_17: -1.2493639906319077e-05 + sys_18: -1.154857698059152e-05 + sys_19: 1.1963450974626168e-05 + sys_20: 2.3109897496549588e-05 + sys_21: 2.7887152355422575e-05 + sys_22: -2.632092298104837e-06 + sys_23: 1.0625464275110342e-05 + sys_24: -2.1593721604515485e-05 + sys_25: -9.494656487902106e-06 + sys_26: -5.014406735739763e-05 + sys_27: 2.2673911698772298e-05 + sys_28: -8.495100229926476e-05 + sys_29: 2.4116615168050774e-05 + sys_30: 4.330099787564584e-05 + sys_31: 1.819560262535776e-06 + sys_32: 3.681743663987164e-05 + sys_33: 8.583556178766408e-06 + sys_34: 9.942180425826709e-05 + sys_35: 0.00018853530344046615 + sys_36: -0.00012018777748401934 + sys_37: -8.951922007924695e-05 + sys_38: -0.00015404810165720484 + sys_39: -0.00020457566939625858 + sys_40: 0.0003487572835902785 + sys_41: -0.002230474303850641 + sys_42: 0.0009863174683658505 + sys_43: -0.0020342677899925507 + sys_44: 9.4943783555036e-05 + sys_45: -0.00023917487394886674 + sys_46: 0.00012577107681739706 + sys_47: 0.0001714874567893522 + sys_48: 2.1322014968343812e-05 + sys_49: 6.406641505355171e-05 + sys_50: -5.917488048509352e-06 + sys_51: 0.0001253245840467803 + sys_52: 8.042852039964525e-06 + sys_53: 1.0316853491926672e-07 + sys_54: 5.375286095791396e-06 - pol: 0.001053 lumi: 0.0005 - sys_0: -3.86528944053241e-08 - sys_1: 4.341057308957434e-07 - sys_2: 3.7927293459710565e-06 - sys_3: 1.460188365465696e-06 - sys_4: -3.246370541761504e-06 - sys_5: 1.3481694635048517e-06 - sys_6: -4.584460138188952e-06 - sys_7: -3.544009546969133e-06 - sys_8: 1.974512591820861e-06 - sys_9: 1.0357757245388232e-05 - sys_10: 1.1442017832434212e-06 - sys_11: -1.965985224473067e-05 - sys_12: 2.1544794234755423e-05 - sys_13: -2.8107119348341946e-05 - sys_14: -5.1537905634616815e-06 - sys_15: -2.661395399641154e-05 - sys_16: -1.8885407369400812e-05 - sys_17: 4.330952996809773e-05 - sys_18: 2.2454406748608007e-06 - sys_19: -2.1433847460667918e-05 - sys_20: -6.587500016257086e-05 - sys_21: -8.712788235383739e-07 - sys_22: 1.5084968476842367e-06 - sys_23: -4.739382257638845e-05 - sys_24: 5.844501236514438e-05 - sys_25: -3.170716394676462e-05 - sys_26: 0.00019136042775149743 - sys_27: 5.316714236323755e-05 - sys_28: 0.0002370040941219164 - sys_29: -3.67023652697346e-05 - sys_30: 4.3053566414268186e-05 - sys_31: -0.0003958664764055727 - sys_32: -6.666785861562499e-05 - sys_33: 1.7918432020684777e-05 - sys_34: -0.0002114492860685621 - sys_35: -0.0027788703248067125 - sys_36: 0.0020025892410742816 - sys_37: -0.000512518598829953 - sys_38: -0.0015603644212928037 - sys_39: -0.0006427853382654503 - sys_40: 0.00011460868429644457 - sys_41: -0.00033020501494608026 - sys_42: -0.00034709723043768053 - sys_43: 0.00015681992297031185 - sys_44: 0.00021970919143579273 - sys_45: -0.00022610037615977308 - sys_46: 0.00014017078147833374 - sys_47: 0.0001142089195934172 - sys_48: 3.287447323277592e-05 - sys_49: 2.2627240620961506e-05 - sys_50: -5.357705939422036e-06 - sys_51: 6.641996402014042e-05 - sys_52: -8.206562841754246e-06 - sys_53: 1.4671843898102146e-05 - sys_54: 5.397479155526712e-06 + sys_0: -3.865289440534974e-08 + sys_1: 4.341057308951254e-07 + sys_2: 3.792729345971024e-06 + sys_3: 1.4601883654654487e-06 + sys_4: -3.2463705417614095e-06 + sys_5: 1.3481694635051145e-06 + sys_6: -4.584460138189326e-06 + sys_7: -3.5440095469689803e-06 + sys_8: 1.974512591822024e-06 + sys_9: 1.0357757245389536e-05 + sys_10: 1.1442017832446915e-06 + sys_11: 1.9659852244729133e-05 + sys_12: -2.154479423475521e-05 + sys_13: 2.8107119348341926e-05 + sys_14: 5.1537905634620805e-06 + sys_15: 2.6613953996413073e-05 + sys_16: 1.8885407369401588e-05 + sys_17: -4.3309529968095126e-05 + sys_18: -2.2454406748628272e-06 + sys_19: 2.1433847460667894e-05 + sys_20: 6.587500016257292e-05 + sys_21: 8.712788235375236e-07 + sys_22: -1.5084968476865572e-06 + sys_23: -4.739382257638949e-05 + sys_24: -5.844501236513604e-05 + sys_25: 3.170716394676703e-05 + sys_26: -0.00019136042775149832 + sys_27: -5.316714236323003e-05 + sys_28: -0.00023700409412191656 + sys_29: 3.670236526973466e-05 + sys_30: 4.3053566414270456e-05 + sys_31: 0.000395866476405573 + sys_32: 6.666785861562653e-05 + sys_33: -1.791843202072775e-05 + sys_34: 0.0002114492860686234 + sys_35: 0.0027788703248082876 + sys_36: -0.0020025892410719774 + sys_37: 0.0005125185988301055 + sys_38: 0.0015603644212928303 + sys_39: -0.0006427853382654707 + sys_40: -0.0001146086842964378 + sys_41: 0.0003302050149460713 + sys_42: 0.0003470972304376815 + sys_43: 0.00015681992297031253 + sys_44: 0.0002197091914357952 + sys_45: -0.0002261003761597628 + sys_46: 0.0001401707814783304 + sys_47: 0.00011420891959342387 + sys_48: 3.2874473232774206e-05 + sys_49: 2.2627240620960828e-05 + sys_50: -5.357705939423041e-06 + sys_51: 6.64199640201388e-05 + sys_52: -8.20656284176338e-06 + sys_53: 1.467184389810303e-05 + sys_54: 5.397479155527593e-06 - pol: 0.000156 lumi: 0.0005 - sys_0: -1.405235913056659e-07 - sys_1: 1.1094948413408155e-06 - sys_2: 1.1310647417757537e-05 - sys_3: -1.9772974944671523e-06 - sys_4: -1.0895389162513475e-05 - sys_5: 4.564382791703676e-06 - sys_6: -1.075830143519216e-06 - sys_7: -2.733250696306468e-05 - sys_8: 2.812278157035253e-05 - sys_9: 7.306218781094941e-05 - sys_10: 9.847956404673356e-06 - sys_11: -6.706803276735533e-05 - sys_12: 9.15659830880083e-05 - sys_13: -7.89192538769399e-05 - sys_14: -1.951614269577913e-05 - sys_15: -3.816488662935725e-07 - sys_16: -2.1943327104653643e-06 - sys_17: 0.00020045890217959436 - sys_18: -7.910491933922872e-05 - sys_19: -7.874164863772079e-05 - sys_20: -0.0002786473903350032 - sys_21: 1.2138110824379055e-05 - sys_22: 1.0723283203666212e-05 - sys_23: -0.0004339759222401963 - sys_24: 0.00013857454578271436 - sys_25: -0.00012870628255777394 - sys_26: 0.005216209674677451 - sys_27: -0.0017081774289940531 - sys_28: -0.0009979628777357957 - sys_29: 4.368148046850477e-05 - sys_30: 0.00016680257866688974 - sys_31: 0.0006190863519833422 - sys_32: 2.1990238788206318e-05 - sys_33: -1.913893243941028e-05 - sys_34: 3.1187326662368546e-05 - sys_35: 0.0002885531443222568 - sys_36: -0.0001935279233834747 - sys_37: 3.431650183072383e-05 - sys_38: -0.00018683444290037174 - sys_39: -0.0004166835750160621 - sys_40: 3.29264081507227e-05 - sys_41: -0.00011034970734723292 - sys_42: -0.0001971404725005824 - sys_43: 7.389329024242079e-05 - sys_44: 0.00018387030549467978 - sys_45: -0.00011590832296621203 - sys_46: 6.165695072644781e-05 - sys_47: 3.7251709342471866e-05 - sys_48: 1.7888089072459707e-05 - sys_49: 3.1955624056248205e-06 - sys_50: -2.4310926272423886e-06 - sys_51: 1.5520516259931415e-05 - sys_52: -7.336330876278512e-06 - sys_53: 7.992699050855597e-06 - sys_54: 1.1562017455937853e-06 + sys_0: -1.405235913055423e-07 + sys_1: 1.1094948413398535e-06 + sys_2: 1.1310647417757425e-05 + sys_3: -1.977297494467714e-06 + sys_4: -1.0895389162513192e-05 + sys_5: 4.564382791705543e-06 + sys_6: -1.0758301435197834e-06 + sys_7: -2.7332506963064226e-05 + sys_8: 2.8122781570354513e-05 + sys_9: 7.306218781094857e-05 + sys_10: 9.847956404686636e-06 + sys_11: 6.706803276735116e-05 + sys_12: -9.156598308801091e-05 + sys_13: 7.891925387693812e-05 + sys_14: 1.9516142695781028e-05 + sys_15: 3.816488662943174e-07 + sys_16: 2.1943327104664146e-06 + sys_17: -0.00020045890217959344 + sys_18: 7.910491933922909e-05 + sys_19: 7.874164863772076e-05 + sys_20: 0.00027864739033501407 + sys_21: -1.2138110824381882e-05 + sys_22: -1.0723283203678277e-05 + sys_23: -0.0004339759222401887 + sys_24: -0.0001385745457826346 + sys_25: 0.00012870628255778424 + sys_26: -0.005216209674677443 + sys_27: 0.0017081774289940288 + sys_28: 0.00099796287773583 + sys_29: -4.3681480468513626e-05 + sys_30: 0.00016680257866688174 + sys_31: -0.000619086351983336 + sys_32: -2.199023878821137e-05 + sys_33: 1.913893243941396e-05 + sys_34: -3.1187326662372646e-05 + sys_35: -0.00028855314432241696 + sys_36: 0.0001935279233832351 + sys_37: -3.4316501830728754e-05 + sys_38: 0.00018683444290036805 + sys_39: -0.00041668357501606183 + sys_40: -3.292640815071731e-05 + sys_41: 0.00011034970734723269 + sys_42: 0.0001971404725005824 + sys_43: 7.389329024242267e-05 + sys_44: 0.00018387030549468262 + sys_45: -0.0001159083229662065 + sys_46: 6.165695072644609e-05 + sys_47: 3.725170934247471e-05 + sys_48: 1.7888089072458948e-05 + sys_49: 3.1955624056244507e-06 + sys_50: -2.4310926272423644e-06 + sys_51: 1.5520516259929806e-05 + sys_52: -7.33633087628063e-06 + sys_53: 7.992699050856495e-06 + sys_54: 1.1562017455943079e-06 - pol: 0.0008449999999999999 lumi: 0.0005 - sys_0: -1.0133915098326404e-05 - sys_1: 6.773051835710154e-05 - sys_2: 4.323295727813748e-05 - sys_3: -2.4182845029568217e-05 - sys_4: -4.1498214807209714e-05 - sys_5: 5.7252381910159354e-05 - sys_6: 2.4229939664840602e-05 - sys_7: -0.0001501541609170586 - sys_8: -1.7690079835589492e-06 - sys_9: 0.000382190405259982 - sys_10: 8.23042067668829e-05 - sys_11: -0.000421300092888262 - sys_12: 0.0006542145328550147 - sys_13: -0.0004292848982143248 - sys_14: -0.00018774966132862928 - sys_15: 3.61366019834232e-05 - sys_16: -3.5862881559855756e-06 - sys_17: 0.008467257224378001 - sys_18: 0.002404617169368004 - sys_19: -0.00032009810938632313 - sys_20: 0.001132168019998209 - sys_21: -3.570400915398507e-05 - sys_22: -2.0808257524156342e-05 - sys_23: 0.0009249227258425807 - sys_24: -9.46901431708618e-06 - sys_25: 2.0043300823376454e-05 - sys_26: -0.0004325405661530078 - sys_27: -0.000476527335509024 - sys_28: -0.0001294213710483865 - sys_29: -6.188977966601421e-05 - sys_30: 0.0002936665917891881 - sys_31: 0.0002877677681897996 - sys_32: 1.7958276816535406e-05 - sys_33: -2.340926952716313e-05 - sys_34: 1.3511535255922914e-05 - sys_35: 9.707241303847912e-05 - sys_36: -7.089722882868545e-05 - sys_37: 1.8287904857559516e-05 - sys_38: -9.144038297167738e-05 - sys_39: -0.00029226179693320165 - sys_40: 1.7237784173759237e-05 - sys_41: -4.395215994392126e-05 - sys_42: -7.645249014529061e-05 - sys_43: 2.2923420667782513e-05 - sys_44: 6.111094066483742e-05 - sys_45: -3.1209786059264546e-05 - sys_46: 1.165193178287576e-05 - sys_47: 5.577712140201446e-06 - sys_48: 6.238084691458367e-06 - sys_49: -7.686132252713681e-07 - sys_50: -9.202797123788808e-07 - sys_51: 9.716905474342095e-07 - sys_52: -3.600739873218766e-06 - sys_53: 3.1234585149748167e-06 - sys_54: -1.2656808237576771e-08 + sys_0: -1.0133915098325691e-05 + sys_1: 6.773051835709786e-05 + sys_2: 4.323295727813856e-05 + sys_3: -2.4182845029569186e-05 + sys_4: -4.1498214807209226e-05 + sys_5: 5.725238191015757e-05 + sys_6: 2.422993966483933e-05 + sys_7: -0.0001501541609170575 + sys_8: -1.7690079835576604e-06 + sys_9: 0.00038219040525996456 + sys_10: 8.230420676696067e-05 + sys_11: 0.0004213000928882534 + sys_12: -0.000654214532855022 + sys_13: 0.0004292848982143377 + sys_14: 0.00018774966132865793 + sys_15: -3.613660198338829e-05 + sys_16: 3.5862881559985474e-06 + sys_17: -0.008467257224377996 + sys_18: -0.0024046171693680317 + sys_19: 0.0003200981093863899 + sys_20: -0.0011321680199981958 + sys_21: 3.570400915399213e-05 + sys_22: 2.0808257524200106e-05 + sys_23: 0.0009249227258425815 + sys_24: 9.469014317078536e-06 + sys_25: -2.0043300823377155e-05 + sys_26: 0.00043254056615300965 + sys_27: 0.00047652733550902207 + sys_28: 0.00012942137104839815 + sys_29: 6.18897796660081e-05 + sys_30: 0.0002936665917891888 + sys_31: -0.0002877677681897957 + sys_32: -1.7958276816536005e-05 + sys_33: 2.340926952716361e-05 + sys_34: -1.3511535255922879e-05 + sys_35: -9.707241303853776e-05 + sys_36: 7.089722882860405e-05 + sys_37: -1.8287904857561034e-05 + sys_38: 9.144038297167632e-05 + sys_39: -0.00029226179693320214 + sys_40: -1.723778417375497e-05 + sys_41: 4.3952159943920184e-05 + sys_42: 7.645249014529045e-05 + sys_43: 2.2923420667782577e-05 + sys_44: 6.111094066483874e-05 + sys_45: -3.1209786059263144e-05 + sys_46: 1.1651931782875445e-05 + sys_47: 5.57771214020206e-06 + sys_48: 6.23808469145843e-06 + sys_49: -7.686132252713671e-07 + sys_50: -9.202797123789913e-07 + sys_51: 9.716905474337083e-07 + sys_52: -3.600739873218933e-06 + sys_53: 3.1234585149755832e-06 + sys_54: -1.2656808237617336e-08 - pol: 0.0021839999999999997 lumi: 0.0005 - sys_0: -1.2412081850326375e-06 - sys_1: 3.80169502349936e-06 - sys_2: 0.0004085957453888543 - sys_3: -0.00031573744166006867 - sys_4: -0.0004157193630004238 - sys_5: 3.2076402312450046e-05 - sys_6: 0.0006387832987423233 - sys_7: -0.001994924131664162 - sys_8: 1.4163331259861884e-05 - sys_9: 0.006626542221658228 - sys_10: 0.0014605997696283885 - sys_11: -0.00905334117374445 - sys_12: -0.006717394910581496 - sys_13: 0.0001312805096088116 - sys_14: -0.00015212409009999497 - sys_15: -5.272225800721686e-05 - sys_16: 3.7050042490970324e-06 - sys_17: -0.000890704662308772 - sys_18: 0.0017435636003592123 - sys_19: -0.0005261406691111601 - sys_20: -8.173062303263898e-05 - sys_21: -2.728857938057027e-05 - sys_22: -1.401407515734364e-05 - sys_23: 0.0005024643985340287 - sys_24: 1.8762610463125133e-05 - sys_25: 1.0351265284113532e-05 - sys_26: -0.00016128310795032928 - sys_27: -0.0002935476806141325 - sys_28: -5.083601687037456e-05 - sys_29: -0.00013306708755349462 - sys_30: 0.00032448917119456245 - sys_31: 0.00014432090680774218 - sys_32: 1.4726062816181457e-05 - sys_33: -5.175682785436153e-05 - sys_34: 2.3442267195464685e-05 - sys_35: 1.9221676467422708e-05 - sys_36: -2.4106441951325965e-05 - sys_37: 3.007456519000364e-06 - sys_38: -3.247770206113025e-05 - sys_39: -0.00010814646187663032 - sys_40: 6.2928031077563696e-06 - sys_41: -1.5282726301976105e-05 - sys_42: -2.3140202618070226e-05 - sys_43: 6.12685807061345e-06 - sys_44: 1.2967948868318566e-05 - sys_45: -5.842824981036974e-06 - sys_46: 1.4524278823690404e-06 - sys_47: -6.172948980570606e-07 - sys_48: 2.617370136727245e-06 - sys_49: -1.008992485836469e-06 - sys_50: -4.2179335350293916e-07 - sys_51: -1.1247354549656814e-06 - sys_52: -1.9918000767159775e-06 - sys_53: 1.6156747555654028e-06 - sys_54: -9.062505725118879e-08 + sys_0: -1.2412081850304045e-06 + sys_1: 3.801695023493106e-06 + sys_2: 0.0004085957453888504 + sys_3: -0.0003157374416600702 + sys_4: -0.00041571936300042605 + sys_5: 3.207640231245818e-05 + sys_6: 0.0006387832987423138 + sys_7: -0.0019949241316641535 + sys_8: 1.4163331259854938e-05 + sys_9: 0.006626542221657941 + sys_10: 0.0014605997696297492 + sys_11: 0.009053341173744484 + sys_12: 0.006717394910581492 + sys_13: -0.00013128050960880714 + sys_14: 0.00015212409009999524 + sys_15: 5.272225800721423e-05 + sys_16: -3.705004249092373e-06 + sys_17: 0.000890704662308767 + sys_18: -0.0017435636003592023 + sys_19: 0.0005261406691111935 + sys_20: 8.173062303264986e-05 + sys_21: 2.7288579380570152e-05 + sys_22: 1.4014075157361542e-05 + sys_23: 0.0005024643985340286 + sys_24: -1.876261046312825e-05 + sys_25: -1.0351265284111916e-05 + sys_26: 0.00016128310795033129 + sys_27: 0.00029354768061413375 + sys_28: 5.083601687038508e-05 + sys_29: 0.00013306708755348945 + sys_30: 0.0003244891711945663 + sys_31: -0.00014432090680774185 + sys_32: -1.4726062816183811e-05 + sys_33: 5.1756827854363265e-05 + sys_34: -2.344226719546219e-05 + sys_35: -1.9221676467443243e-05 + sys_36: 2.4106441951309986e-05 + sys_37: -3.007456518998841e-06 + sys_38: 3.24777020611302e-05 + sys_39: -0.00010814646187663066 + sys_40: -6.292803107755307e-06 + sys_41: 1.528272630197611e-05 + sys_42: 2.314020261807051e-05 + sys_43: 6.12685807061358e-06 + sys_44: 1.2967948868318734e-05 + sys_45: -5.842824981036497e-06 + sys_46: 1.452427882368861e-06 + sys_47: -6.172948980571621e-07 + sys_48: 2.6173701367277997e-06 + sys_49: -1.0089924858363806e-06 + sys_50: -4.217933535019213e-07 + sys_51: -1.1247354549656646e-06 + sys_52: -1.9918000767169816e-06 + sys_53: 1.615674755565218e-06 + sys_54: -9.06250572506488e-08 - pol: 0.0049075 lumi: 0.0005 - sys_0: -3.943045678963153e-06 - sys_1: 4.489839706987782e-05 + sys_0: -3.943045678980971e-06 + sys_1: 4.489839706904813e-05 sys_2: 0.040456935062387185 - sys_3: 0.02082073324726161 - sys_4: 0.00540404430181898 - sys_5: 9.125186692559913e-06 - sys_6: -0.005442779476393657 - sys_7: 0.001534951991851094 - sys_8: -5.406384573764437e-07 - sys_9: -0.0009933094958683207 - sys_10: -0.0002241932967889574 - sys_11: -0.0005108274897183757 - sys_12: -0.00012587537248200223 - sys_13: -0.00013955250598919722 - sys_14: -8.679893758369106e-05 - sys_15: -4.318377836121957e-06 - sys_16: 2.1599555590776783e-07 - sys_17: -4.1517375729476716e-05 - sys_18: 0.00010956286015040405 - sys_19: -3.473094610735384e-05 - sys_20: -1.4127739861044218e-05 - sys_21: -2.3135032901655283e-06 - sys_22: -1.148723708927996e-06 - sys_23: 2.3370786789945835e-05 - sys_24: 2.787077508844311e-06 - sys_25: 1.6488638600525228e-06 - sys_26: -3.9177071459464075e-06 - sys_27: -1.0743371749885383e-06 - sys_28: -9.84691950255215e-06 - sys_29: -1.9833094929828224e-05 - sys_30: 2.0899281353493567e-05 - sys_31: 6.649730909568422e-06 - sys_32: -1.5755838610603534e-06 - sys_33: -1.6006258232858134e-05 - sys_34: 5.115016724538681e-06 - sys_35: 6.850030180857224e-08 - sys_36: -1.9746487335832137e-06 - sys_37: -5.064178900521006e-07 - sys_38: -1.5364179170256934e-06 - sys_39: -3.872252042783669e-06 - sys_40: 5.253867234223082e-07 - sys_41: -9.277383719802631e-07 - sys_42: -6.126622792770463e-07 - sys_43: -1.8873070995916441e-07 - sys_44: 5.570752965623039e-08 - sys_45: 2.804371869898015e-07 - sys_46: -2.7537327727124625e-07 - sys_47: -4.019236265125793e-07 - sys_48: 2.1754650250370236e-07 - sys_49: -1.8662544883500077e-07 - sys_50: -4.319177183898664e-08 - sys_51: -3.0596987859297205e-07 - sys_52: -2.1576141744187774e-07 - sys_53: 1.655365569083554e-07 - sys_54: -2.6227567542193994e-08 + sys_3: 0.02082073324726154 + sys_4: 0.005404044301818967 + sys_5: 9.12518669255938e-06 + sys_6: -0.005442779476393642 + sys_7: 0.0015349519918510823 + sys_8: -5.406384573789755e-07 + sys_9: -0.0009933094958682707 + sys_10: -0.00022419329678915768 + sys_11: 0.0005108274897183756 + sys_12: 0.00012587537248200174 + sys_13: 0.0001395525059891973 + sys_14: 8.67989375836915e-05 + sys_15: 4.318377836122574e-06 + sys_16: -2.1599555590777712e-07 + sys_17: 4.151737572947641e-05 + sys_18: -0.00010956286015040279 + sys_19: 3.4730946107355635e-05 + sys_20: 1.4127739861044956e-05 + sys_21: 2.3135032901661635e-06 + sys_22: 1.1487237089288812e-06 + sys_23: 2.3370786789945632e-05 + sys_24: -2.787077508844793e-06 + sys_25: -1.6488638600524616e-06 + sys_26: 3.917707145945852e-06 + sys_27: 1.0743371749885916e-06 + sys_28: 9.846919502552658e-06 + sys_29: 1.9833094929827618e-05 + sys_30: 2.089928135349402e-05 + sys_31: -6.64973090956831e-06 + sys_32: 1.5755838610601717e-06 + sys_33: 1.6006258232858608e-05 + sys_34: -5.11501672453784e-06 + sys_35: -6.8500301809947e-08 + sys_36: 1.9746487335830316e-06 + sys_37: 5.064178900521212e-07 + sys_38: 1.5364179170257309e-06 + sys_39: -3.8722520427836584e-06 + sys_40: -5.253867234221934e-07 + sys_41: 9.277383719804245e-07 + sys_42: 6.126622792771842e-07 + sys_43: -1.8873070995921852e-07 + sys_44: 5.570752965608901e-08 + sys_45: 2.8043718698980527e-07 + sys_46: -2.753732772711444e-07 + sys_47: -4.019236265125738e-07 + sys_48: 2.1754650250362793e-07 + sys_49: -1.8662544883499682e-07 + sys_50: -4.3191771839060366e-08 + sys_51: -3.0596987859303187e-07 + sys_52: -2.1576141744187017e-07 + sys_53: 1.6553655690840783e-07 + sys_54: -2.6227567542187493e-08 diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_1JET_510GEV/uncertainties.yaml b/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_1JET_510GEV/uncertainties.yaml index bde5d73776..4eb6979a4b 100644 --- a/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_1JET_510GEV/uncertainties.yaml +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_1JET_510GEV/uncertainties.yaml @@ -234,813 +234,813 @@ definitions: bins: - lumi_ue: 0.000364 pol: 1.1285999999999999e-06 - sys_0: -8.821941748805665e-06 - sys_1: -3.647133093819715e-05 - sys_2: 1.8167870451191507e-06 - sys_3: 1.7483244936078064e-05 - sys_4: 8.483136631166403e-06 - sys_5: 1.2108429667596676e-05 - sys_6: -1.4968639805639232e-05 - sys_7: 1.1807884919821091e-05 - sys_8: 1.4271856486755282e-05 - sys_9: 1.233019052883303e-05 - sys_10: -8.46277556818203e-06 - sys_11: 1.3673607962112949e-05 - sys_12: -8.748427437422347e-06 - sys_13: -1.1353649503226805e-05 - sys_14: -1.7758882243814993e-05 - sys_15: 5.797017461791961e-06 - sys_16: 1.0949322616298886e-05 - sys_17: -2.1789787484307717e-05 - sys_18: 1.3317032520603892e-05 - sys_19: -9.563470189865437e-06 - sys_20: -8.22099465747639e-06 - sys_21: 5.306887824504082e-06 - sys_22: -1.1767831974255831e-05 - sys_23: -6.819927121922221e-05 - sys_24: -9.995071414958789e-05 - sys_25: 0.0003371072073149283 - sys_26: 0.0012092802633853932 - sys_27: 0.00029667443357125217 - sys_28: 0.0002579678419682714 - sys_29: -5.973614868422086e-05 - sys_30: 2.5349346947554508e-05 - sys_31: 5.429956819146516e-07 - sys_32: -4.673412227812524e-06 - sys_33: 9.400852661146199e-06 - sys_34: -5.545333821994411e-06 - sys_35: 5.899960672921897e-06 - sys_36: 2.881539531165112e-05 - sys_37: -7.284669141187073e-06 - sys_38: 1.7481194414994023e-05 - sys_39: -3.105042856976772e-05 - sys_40: 2.1203048280657375e-05 - sys_41: 3.665235752852848e-06 - sys_42: 1.054922251312889e-06 - sys_43: -4.391887800363986e-06 - sys_44: -6.2725605380339e-06 - sys_45: -6.5526794747025594e-06 - sys_46: -7.65597981933674e-06 - sys_47: -4.6889804405586205e-06 - sys_48: 4.389162725861691e-05 - sys_49: -1.0573358629473254e-05 - sys_50: 5.525284765141057e-06 - sys_51: 2.609308525613858e-05 - sys_52: -4.183167280418963e-06 - sys_53: 4.421650848751951e-06 - sys_54: 8.713837319860204e-06 - sys_55: -2.236862228506932e-06 + sys_0: -8.821941748802087e-06 + sys_1: -3.6471330938201644e-05 + sys_2: 1.8167870451173643e-06 + sys_3: 1.7483244936064986e-05 + sys_4: 8.483136631155627e-06 + sys_5: 1.210842966758323e-05 + sys_6: -1.4968639805643237e-05 + sys_7: 1.1807884919822045e-05 + sys_8: 1.4271856486757291e-05 + sys_9: 1.2330190528844079e-05 + sys_10: -8.462775568183555e-06 + sys_11: 1.3673607962117874e-05 + sys_12: -8.748427437423751e-06 + sys_13: 1.1353649503226235e-05 + sys_14: 1.7758882243819434e-05 + sys_15: -5.797017461789923e-06 + sys_16: -1.0949322616311439e-05 + sys_17: 2.1789787484304187e-05 + sys_18: -1.3317032520606704e-05 + sys_19: 9.563470189866473e-06 + sys_20: 8.2209946574795e-06 + sys_21: -5.306887824506822e-06 + sys_22: 1.1767831974258811e-05 + sys_23: -6.819927121924021e-05 + sys_24: 9.995071414962781e-05 + sys_25: -0.00033710720731502025 + sys_26: -0.0012092802633852846 + sys_27: -0.00029667443357127353 + sys_28: -0.00025796784196829766 + sys_29: 5.973614868423521e-05 + sys_30: -2.53493469475536e-05 + sys_31: -5.429956819148038e-07 + sys_32: 4.6734122278134705e-06 + sys_33: -9.400852661148064e-06 + sys_34: 5.545333821995905e-06 + sys_35: -5.899960672922845e-06 + sys_36: -2.8815395311657856e-05 + sys_37: 7.284669141188647e-06 + sys_38: -1.7481194414998095e-05 + sys_39: 3.105042856977531e-05 + sys_40: -2.1203048280662224e-05 + sys_41: -3.665235752857031e-06 + sys_42: -1.0549222513131536e-06 + sys_43: -4.391887800365259e-06 + sys_44: -6.272560538035737e-06 + sys_45: -6.552679474704093e-06 + sys_46: -7.655979819338729e-06 + sys_47: -4.688980440559567e-06 + sys_48: -4.38916272586274e-05 + sys_49: -1.057335862947531e-05 + sys_50: 5.525284765141493e-06 + sys_51: 2.6093085256144784e-05 + sys_52: -4.18316728042053e-06 + sys_53: 4.4216508487533985e-06 + sys_54: 8.713837319862776e-06 + sys_55: -2.2368622285071736e-06 - lumi_ue: 0.000326 pol: 0.0001419 - sys_0: -2.4651125270180278e-05 - sys_1: -0.00010423248114795092 - sys_2: 6.461774400155848e-06 - sys_3: 5.0755783085369855e-05 - sys_4: 2.5886190090542884e-05 - sys_5: 3.434046556061374e-05 - sys_6: -4.413282234670394e-05 - sys_7: 3.387356832711915e-05 - sys_8: 1.5140215739700306e-05 - sys_9: 3.4556828274942515e-05 - sys_10: -2.708027595840028e-05 - sys_11: 3.658591979024131e-05 - sys_12: -2.3358868305795577e-05 - sys_13: -3.18766538792554e-05 - sys_14: -5.1204285875975425e-05 - sys_15: 1.5958499322335407e-05 - sys_16: 3.199654902111686e-05 - sys_17: -3.183182831041024e-05 - sys_18: 3.9814171052103914e-05 - sys_19: -2.7973203300675215e-05 - sys_20: -2.68898268722321e-05 - sys_21: 1.611377348198906e-05 - sys_22: -3.3001238765655655e-05 - sys_23: -3.6421448414983004e-05 - sys_24: -3.814037112791418e-05 - sys_25: 9.850863580639559e-06 - sys_26: -0.0003605142850157763 - sys_27: 0.0013074999414781137 - sys_28: 0.0005284178908963244 - sys_29: -9.321864440223161e-05 - sys_30: -4.886071775293121e-06 - sys_31: 4.153589459864477e-05 - sys_32: -3.3975853696382736e-05 - sys_33: 2.7655981213856275e-05 - sys_34: -1.0747903478961235e-05 - sys_35: 3.444580547776212e-05 - sys_36: 7.200073775181437e-05 - sys_37: -1.895339868043444e-05 - sys_38: 4.588064373978041e-05 - sys_39: -7.738213209570178e-05 - sys_40: 2.559096713680055e-05 - sys_41: 1.998436403760806e-06 - sys_42: -9.502017315632864e-07 - sys_43: -1.3009563171178818e-05 - sys_44: -1.6781702234241515e-05 - sys_45: -1.8223746714133256e-05 - sys_46: -1.972382197925749e-05 - sys_47: -1.538110825662134e-05 - sys_48: 6.447675107626336e-05 - sys_49: -3.9107408034598666e-05 - sys_50: 1.1790185607145248e-05 - sys_51: 5.208940462340734e-05 - sys_52: -1.8275180676036436e-05 - sys_53: 2.5223710955441385e-05 - sys_54: 3.5112445714698695e-05 - sys_55: -6.572544656738637e-06 + sys_0: -2.465112527017979e-05 + sys_1: -0.00010423248114795045 + sys_2: 6.46177440015652e-06 + sys_3: 5.0755783085368236e-05 + sys_4: 2.5886190090542346e-05 + sys_5: 3.434046556061307e-05 + sys_6: -4.4132822346704604e-05 + sys_7: 3.387356832711956e-05 + sys_8: 1.5140215739696584e-05 + sys_9: 3.455682827493757e-05 + sys_10: -2.7080275958399007e-05 + sys_11: 3.6585919790238944e-05 + sys_12: -2.3358868305795008e-05 + sys_13: 3.1876653879245086e-05 + sys_14: 5.120428587597366e-05 + sys_15: -1.5958499322333716e-05 + sys_16: -3.199654902111568e-05 + sys_17: 3.183182831040715e-05 + sys_18: -3.9814171052099035e-05 + sys_19: 2.7973203300682412e-05 + sys_20: 2.6889826872233542e-05 + sys_21: -1.6113773481993268e-05 + sys_22: 3.300123876565877e-05 + sys_23: -3.6421448414983695e-05 + sys_24: 3.814037112793116e-05 + sys_25: -9.850863580627427e-06 + sys_26: 0.0003605142850158134 + sys_27: -0.0013074999414781044 + sys_28: -0.0005284178908962846 + sys_29: 9.32186444022493e-05 + sys_30: 4.886071775316618e-06 + sys_31: -4.153589459864062e-05 + sys_32: 3.397585369638351e-05 + sys_33: -2.765598121385316e-05 + sys_34: 1.0747903478962816e-05 + sys_35: -3.44458054777625e-05 + sys_36: -7.200073775181613e-05 + sys_37: 1.895339868043524e-05 + sys_38: -4.5880643739783465e-05 + sys_39: 7.738213209570399e-05 + sys_40: -2.559096713680647e-05 + sys_41: -1.9984364037667213e-06 + sys_42: 9.502017315642004e-07 + sys_43: -1.3009563171176047e-05 + sys_44: -1.6781702234244327e-05 + sys_45: -1.8223746714135008e-05 + sys_46: -1.9723821979258355e-05 + sys_47: -1.5381108256621014e-05 + sys_48: -6.447675107626914e-05 + sys_49: -3.910740803460003e-05 + sys_50: 1.179018560714414e-05 + sys_51: 5.2089404623409155e-05 + sys_52: -1.8275180676038584e-05 + sys_53: 2.522371095544315e-05 + sys_54: 3.511244571469996e-05 + sys_55: -6.57254465673745e-06 - lumi_ue: 0.000311 pol: 0.00010692 - sys_0: -4.565244424389384e-06 - sys_1: -1.970265582702826e-05 - sys_2: 1.4432189223262424e-06 - sys_3: 9.752101269003067e-06 - sys_4: 4.759285827117779e-06 - sys_5: 6.603377645516533e-06 - sys_6: -9.374485486261553e-06 - sys_7: 7.325337810628837e-06 - sys_8: 3.0473719916363456e-05 - sys_9: 6.924762678466928e-06 - sys_10: -4.452179533829526e-06 - sys_11: 7.276990148032912e-06 - sys_12: -4.912524616049502e-06 - sys_13: -6.8812111903450715e-06 - sys_14: -1.2203649686033053e-05 - sys_15: 3.630274103092674e-06 - sys_16: 9.410559209258135e-06 - sys_17: -5.3194190180568816e-05 - sys_18: 9.072777767896317e-06 - sys_19: -7.174824513943982e-06 - sys_20: -5.3690490047104125e-06 - sys_21: 6.505874793396553e-06 - sys_22: -1.3174927383869035e-05 - sys_23: 0.0009871074268236058 - sys_24: 2.9897639758911576e-05 - sys_25: -1.9453073958699017e-07 - sys_26: 7.718987901252863e-05 - sys_27: 5.8487873120822364e-05 - sys_28: 7.019631185197704e-05 - sys_29: -1.1902143329599017e-05 - sys_30: 1.807270999860068e-05 - sys_31: -9.75142808346033e-06 - sys_32: 8.200360745737252e-06 - sys_33: 3.6706746518516095e-05 - sys_34: -1.0983497582367771e-05 - sys_35: -1.1773302164072559e-05 - sys_36: 9.195299589110906e-05 - sys_37: -9.533173317125142e-06 - sys_38: 1.239952407555098e-05 - sys_39: -5.795433121188843e-05 - sys_40: 5.113641686727757e-05 - sys_41: 3.686298190929459e-05 - sys_42: 7.370686763842337e-06 - sys_43: 8.29120307185831e-08 - sys_44: -1.9068418715999476e-05 - sys_45: -5.562164949869389e-06 - sys_46: -1.4767368809122068e-05 - sys_47: -2.1114610145549154e-05 - sys_48: 0.00010165353074501726 - sys_49: -3.169942609770251e-05 - sys_50: 3.625051248116122e-05 - sys_51: 6.032640342866376e-05 - sys_52: 1.3946708904059124e-05 - sys_53: -2.4763858515754344e-05 - sys_54: 2.001155222455211e-05 - sys_55: -1.4942396739315224e-05 + sys_0: -4.565244424389862e-06 + sys_1: -1.9702655827027287e-05 + sys_2: 1.4432189223237305e-06 + sys_3: 9.75210126900166e-06 + sys_4: 4.75928582711611e-06 + sys_5: 6.603377645517562e-06 + sys_6: -9.374485486263399e-06 + sys_7: 7.325337810630204e-06 + sys_8: 3.047371991636115e-05 + sys_9: 6.924762678464587e-06 + sys_10: -4.452179533828823e-06 + sys_11: 7.276990148032232e-06 + sys_12: -4.912524616049315e-06 + sys_13: 6.881211190342397e-06 + sys_14: 1.220364968603039e-05 + sys_15: -3.630274103091203e-06 + sys_16: -9.41055920925889e-06 + sys_17: 5.319419018056901e-05 + sys_18: -9.072777767894387e-06 + sys_19: 7.174824513939855e-06 + sys_20: 5.369049004698803e-06 + sys_21: -6.505874793392379e-06 + sys_22: 1.3174927383874209e-05 + sys_23: 0.0009871074268235896 + sys_24: -2.9897639758948066e-05 + sys_25: 1.9453073956122136e-07 + sys_26: -7.718987901254721e-05 + sys_27: -5.848787312083316e-05 + sys_28: -7.019631185199645e-05 + sys_29: 1.1902143329597313e-05 + sys_30: -1.80727099986013e-05 + sys_31: 9.751428083466333e-06 + sys_32: -8.200360745741201e-06 + sys_33: -3.670674651851237e-05 + sys_34: 1.0983497582366894e-05 + sys_35: 1.1773302164072572e-05 + sys_36: -9.195299589111415e-05 + sys_37: 9.53317331712329e-06 + sys_38: -1.2399524075551635e-05 + sys_39: 5.7954331211889534e-05 + sys_40: -5.113641686727462e-05 + sys_41: -3.6862981909303215e-05 + sys_42: -7.370686763841932e-06 + sys_43: 8.291203071506233e-08 + sys_44: -1.9068418716000865e-05 + sys_45: -5.562164949871028e-06 + sys_46: -1.4767368809122772e-05 + sys_47: -2.1114610145548863e-05 + sys_48: -0.00010165353074502268 + sys_49: -3.169942609770339e-05 + sys_50: 3.625051248115914e-05 + sys_51: 6.03264034286668e-05 + sys_52: 1.3946708904057536e-05 + sys_53: -2.4763858515751264e-05 + sys_54: 2.0011552224554454e-05 + sys_55: -1.4942396739316259e-05 - lumi_ue: 0.000284 pol: 3.3e-05 - sys_0: -4.982569951077418e-06 - sys_1: -1.9165086995194648e-05 - sys_2: 9.969182075274186e-07 - sys_3: 8.922097207194344e-06 - sys_4: 4.532756643053262e-06 - sys_5: 7.33943348840447e-06 - sys_6: -9.053531372359484e-06 - sys_7: 6.803450143202951e-06 - sys_8: 4.491738091777618e-06 - sys_9: 7.132435633511772e-06 - sys_10: -5.271154567037556e-06 - sys_11: 8.504375654800911e-06 - sys_12: -4.762784462966737e-06 - sys_13: -8.006485783624243e-06 - sys_14: -1.2940078905763462e-05 - sys_15: 3.821663727112643e-06 - sys_16: 1.0609754079071273e-05 - sys_17: -3.079649210180774e-05 - sys_18: 1.1469765808417512e-05 - sys_19: -1.1086966120235752e-05 - sys_20: -7.840637626215566e-06 - sys_21: 1.1332477073039157e-05 - sys_22: -2.0408838168068715e-05 - sys_23: -3.569750509929854e-05 - sys_24: 0.0010892600351925486 - sys_25: 7.029038832929418e-05 - sys_26: 8.467024206217235e-05 - sys_27: 6.726312618466764e-05 - sys_28: 3.52181570816603e-05 - sys_29: 3.835252178633745e-06 - sys_30: 1.3039010334060759e-05 - sys_31: -9.750883590045155e-06 - sys_32: 1.0495802766332196e-05 - sys_33: 7.756944638420132e-05 - sys_34: -4.2319041538370446e-05 - sys_35: -2.7173551316460888e-06 - sys_36: 0.00012000761089983577 - sys_37: -2.0043363670876712e-05 - sys_38: 2.02436183909729e-05 - sys_39: -7.027237278624463e-05 - sys_40: 1.697300748657465e-05 - sys_41: 3.898114184573719e-05 - sys_42: -3.291653684154606e-06 - sys_43: -1.9152485612150458e-06 - sys_44: -4.338173138354873e-05 - sys_45: -1.1455001587335192e-05 - sys_46: -3.0656956940334807e-05 - sys_47: -4.315851147539138e-05 - sys_48: 5.6384372371457034e-05 - sys_49: -7.027976110496735e-05 - sys_50: 3.909230488927211e-05 - sys_51: 5.214331770888094e-05 - sys_52: 6.0072074859258085e-06 - sys_53: -4.206364582148231e-05 - sys_54: 5.3238194383032986e-05 - sys_55: -1.194100865111511e-05 + sys_0: -4.9825699510777715e-06 + sys_1: -1.9165086995194296e-05 + sys_2: 9.969182075250696e-07 + sys_3: 8.9220972071917e-06 + sys_4: 4.532756643052977e-06 + sys_5: 7.339433488404018e-06 + sys_6: -9.053531372362643e-06 + sys_7: 6.80345014320303e-06 + sys_8: 4.491738091777601e-06 + sys_9: 7.132435633509162e-06 + sys_10: -5.271154567036973e-06 + sys_11: 8.504375654800842e-06 + sys_12: -4.762784462967933e-06 + sys_13: 8.006485783619601e-06 + sys_14: 1.2940078905764768e-05 + sys_15: -3.821663727111677e-06 + sys_16: -1.0609754079072808e-05 + sys_17: 3.0796492101805405e-05 + sys_18: -1.1469765808410741e-05 + sys_19: 1.1086966120226894e-05 + sys_20: 7.84063762621425e-06 + sys_21: -1.1332477073041525e-05 + sys_22: 2.040883816806957e-05 + sys_23: -3.569750509939994e-05 + sys_24: -0.0010892600351925358 + sys_25: -7.029038832940129e-05 + sys_26: -8.46702420622185e-05 + sys_27: -6.72631261846358e-05 + sys_28: -3.521815708164245e-05 + sys_29: -3.835252178650734e-06 + sys_30: -1.3039010334060391e-05 + sys_31: 9.75088359005648e-06 + sys_32: -1.0495802766341886e-05 + sys_33: -7.756944638420684e-05 + sys_34: 4.2319041538372926e-05 + sys_35: 2.7173551316465017e-06 + sys_36: -0.00012000761089983391 + sys_37: 2.0043363670874744e-05 + sys_38: -2.0243618390970825e-05 + sys_39: 7.027237278624683e-05 + sys_40: -1.6973007486565e-05 + sys_41: -3.8981141845739275e-05 + sys_42: 3.2916536841557066e-06 + sys_43: -1.91524856121314e-06 + sys_44: -4.338173138354905e-05 + sys_45: -1.1455001587334754e-05 + sys_46: -3.065695694033566e-05 + sys_47: -4.31585114753915e-05 + sys_48: -5.6384372371462184e-05 + sys_49: -7.027976110496705e-05 + sys_50: 3.9092304889269794e-05 + sys_51: 5.214331770888479e-05 + sys_52: 6.007207485923221e-06 + sys_53: -4.206364582148104e-05 + sys_54: 5.3238194383034375e-05 + sys_55: -1.194100865111447e-05 - lumi_ue: 0.000272 pol: 9.768e-05 - sys_0: -5.791863240558061e-06 - sys_1: -2.3781441687033036e-05 - sys_2: 1.5157667327295666e-06 - sys_3: 1.1499659903876146e-05 - sys_4: 6.262831318883412e-06 - sys_5: 8.481116450756575e-06 - sys_6: -1.0509457250798398e-05 - sys_7: 7.921444885308103e-06 - sys_8: 1.3465081747272523e-06 - sys_9: 9.45817207406648e-06 - sys_10: -7.2759132118859895e-06 - sys_11: 1.0290329411362365e-05 - sys_12: -7.043114343511122e-06 - sys_13: -9.804339181286174e-06 - sys_14: -1.779590758283322e-05 - sys_15: 5.121122795227465e-06 - sys_16: 1.5339026200445256e-05 - sys_17: -7.1133398312393295e-06 - sys_18: 1.8469166763849632e-05 - sys_19: -2.1460237334443305e-05 - sys_20: -1.2976013147051995e-05 - sys_21: 2.5153295762025034e-05 - sys_22: -3.7467861895134425e-05 - sys_23: -2.0629104082912162e-05 - sys_24: 3.1549362160736234e-05 - sys_25: -0.0012002858881776256 - sys_26: 0.0003480730463768819 - sys_27: 0.00014962558948094544 - sys_28: -4.907883398966109e-05 - sys_29: 2.3454972326094435e-05 - sys_30: -9.849730597427417e-06 - sys_31: -3.37606151239097e-06 - sys_32: 1.1564754462232336e-05 - sys_33: 8.956642005875146e-05 - sys_34: -0.00011304805859799739 - sys_35: 2.6991873374860907e-05 - sys_36: 0.00011573152502613167 - sys_37: -4.568157404228279e-05 - sys_38: 3.942570246145924e-05 - sys_39: -8.355279002221479e-05 - sys_40: -1.4264233158822062e-05 - sys_41: 3.295865672847395e-05 - sys_42: -3.711617232019138e-05 - sys_43: -7.781468394874189e-06 - sys_44: -5.933402410220275e-05 - sys_45: -3.129306632426299e-05 - sys_46: -6.157672986103564e-05 - sys_47: -6.60135789016522e-05 - sys_48: 3.239302045746598e-05 - sys_49: -0.00010859544936986006 - sys_50: 1.1948553966371664e-05 - sys_51: 2.3499158257275753e-05 - sys_52: -1.9783192990009495e-06 - sys_53: -4.793707732895994e-05 - sys_54: 6.80248687761579e-05 - sys_55: -6.759040756419851e-06 + sys_0: -5.791863240557983e-06 + sys_1: -2.378144168703413e-05 + sys_2: 1.5157667327289978e-06 + sys_3: 1.1499659903871613e-05 + sys_4: 6.2628313188824185e-06 + sys_5: 8.481116450754227e-06 + sys_6: -1.0509457250797949e-05 + sys_7: 7.921444885306741e-06 + sys_8: 1.3465081747231245e-06 + sys_9: 9.458172074065673e-06 + sys_10: -7.275913211886843e-06 + sys_11: 1.0290329411363868e-05 + sys_12: -7.043114343513344e-06 + sys_13: 9.804339181285863e-06 + sys_14: 1.7795907582833182e-05 + sys_15: -5.121122795228189e-06 + sys_16: -1.533902620044504e-05 + sys_17: 7.113339831240334e-06 + sys_18: -1.846916676384413e-05 + sys_19: 2.1460237334435726e-05 + sys_20: 1.297601314706316e-05 + sys_21: -2.5153295762023065e-05 + sys_22: 3.746786189513048e-05 + sys_23: -2.062910408296418e-05 + sys_24: -3.154936216074723e-05 + sys_25: 0.001200285888177563 + sys_26: -0.0003480730463770223 + sys_27: -0.0001496255894809939 + sys_28: 4.9078833989632725e-05 + sys_29: -2.345497232606815e-05 + sys_30: 9.84973059743724e-06 + sys_31: 3.376061512391438e-06 + sys_32: -1.1564754462223913e-05 + sys_33: -8.956642005875093e-05 + sys_34: 0.00011304805859800024 + sys_35: -2.699187337485425e-05 + sys_36: -0.00011573152502613668 + sys_37: 4.568157404228394e-05 + sys_38: -3.942570246146368e-05 + sys_39: 8.3552790022214e-05 + sys_40: 1.4264233158822676e-05 + sys_41: -3.295865672846852e-05 + sys_42: 3.711617232019222e-05 + sys_43: -7.781468394878475e-06 + sys_44: -5.933402410220659e-05 + sys_45: -3.129306632426336e-05 + sys_46: -6.157672986103799e-05 + sys_47: -6.601357890165222e-05 + sys_48: -3.239302045747321e-05 + sys_49: -0.00010859544936985959 + sys_50: 1.1948553966369052e-05 + sys_51: 2.349915825728008e-05 + sys_52: -1.978319299003441e-06 + sys_53: -4.793707732895873e-05 + sys_54: 6.80248687761614e-05 + sys_55: -6.759040756419024e-06 - lumi_ue: 0.000256 pol: 0.00019338 - sys_0: -5.5038924599575e-06 - sys_1: -2.6137479906433326e-05 - sys_2: 1.0216165255878663e-06 - sys_3: 1.3262793344339309e-05 - sys_4: 6.713380460975631e-06 - sys_5: 9.16565937911155e-06 - sys_6: -1.2037152997670448e-05 - sys_7: 1.0443290254261821e-05 - sys_8: 1.7333943206571635e-06 - sys_9: 1.113921723716766e-05 - sys_10: -8.035274914100943e-06 - sys_11: 1.2061605398857993e-05 - sys_12: -9.543216724161129e-06 - sys_13: -1.1622741451102494e-05 - sys_14: -2.4170837772343507e-05 - sys_15: 6.117665966505702e-06 - sys_16: 3.1148351960020875e-05 - sys_17: -4.466208286961975e-06 - sys_18: 3.0020787526024137e-05 - sys_19: -4.447070508887425e-05 - sys_20: -1.8837663307174875e-05 - sys_21: 6.110137308698935e-05 - sys_22: -7.610608800472126e-05 - sys_23: -1.291610462428202e-05 - sys_24: 7.163255210143157e-06 - sys_25: -6.662207215772412e-05 - sys_26: -5.2265292923925616e-05 - sys_27: -0.00031166700454734634 - sys_28: 0.0005185251461987804 - sys_29: -0.0014164272834122453 - sys_30: -0.00017095743659372578 - sys_31: 2.6918698674558193e-05 - sys_32: 4.109467569443272e-06 - sys_33: 0.00010009440614104395 - sys_34: -0.00016414695740722397 - sys_35: 5.502933836949033e-05 - sys_36: 6.672156673061764e-05 - sys_37: -0.00011858843347493034 - sys_38: 9.409731583463018e-05 - sys_39: -7.836293849505595e-05 - sys_40: -1.184817361951193e-05 - sys_41: 1.481679725576671e-05 - sys_42: -7.702811349243193e-05 - sys_43: -2.5244271840240965e-05 - sys_44: -6.92366408454386e-05 - sys_45: -7.799413370403443e-05 - sys_46: -9.90062790536924e-05 - sys_47: -6.593503585707317e-05 - sys_48: 2.916712226206222e-05 - sys_49: -0.00011463842698924849 - sys_50: -3.8420654101437403e-05 - sys_51: 3.2905004016255615e-06 - sys_52: -1.0084081821722388e-05 - sys_53: -4.637015935355981e-05 - sys_54: 6.445125554986053e-05 - sys_55: 1.4218032798677879e-05 + sys_0: -5.503892459957422e-06 + sys_1: -2.6137479906432208e-05 + sys_2: 1.0216165255867304e-06 + sys_3: 1.3262793344340694e-05 + sys_4: 6.71338046097517e-06 + sys_5: 9.165659379111365e-06 + sys_6: -1.2037152997672278e-05 + sys_7: 1.044329025426136e-05 + sys_8: 1.7333943206563156e-06 + sys_9: 1.1139217237167833e-05 + sys_10: -8.035274914100343e-06 + sys_11: 1.2061605398859313e-05 + sys_12: -9.543216724161173e-06 + sys_13: 1.1622741451098714e-05 + sys_14: 2.4170837772342338e-05 + sys_15: -6.1176659665052106e-06 + sys_16: -3.114835196002155e-05 + sys_17: 4.466208286960775e-06 + sys_18: -3.0020787526023446e-05 + sys_19: 4.4470705088877366e-05 + sys_20: 1.8837663307175122e-05 + sys_21: -6.110137308697796e-05 + sys_22: 7.610608800472524e-05 + sys_23: -1.2916104624287618e-05 + sys_24: -7.163255210137232e-06 + sys_25: 6.662207215769876e-05 + sys_26: 5.2265292923960785e-05 + sys_27: 0.00031166700454722903 + sys_28: -0.0005185251461990411 + sys_29: 0.0014164272834122677 + sys_30: 0.00017095743659376647 + sys_31: -2.691869867459842e-05 + sys_32: -4.109467569448215e-06 + sys_33: -0.00010009440614103453 + sys_34: 0.00016414695740722514 + sys_35: -5.502933836947826e-05 + sys_36: -6.672156673061959e-05 + sys_37: 0.0001185884334749301 + sys_38: -9.409731583462938e-05 + sys_39: 7.836293849506051e-05 + sys_40: 1.1848173619522705e-05 + sys_41: -1.481679725575934e-05 + sys_42: 7.702811349243234e-05 + sys_43: -2.52442718402469e-05 + sys_44: -6.92366408454414e-05 + sys_45: -7.799413370402744e-05 + sys_46: -9.900627905369279e-05 + sys_47: -6.593503585707357e-05 + sys_48: -2.9167122262065046e-05 + sys_49: -0.00011463842698924708 + sys_50: -3.842065410143865e-05 + sys_51: 3.290500401627824e-06 + sys_52: -1.0084081821724015e-05 + sys_53: -4.6370159353557976e-05 + sys_54: 6.445125554986351e-05 + sys_55: 1.421803279867967e-05 - lumi_ue: 0.000251 pol: 0.00010428000000000001 - sys_0: -7.332726355838066e-06 - sys_1: -3.427545258132407e-05 - sys_2: 1.198627954098668e-06 - sys_3: 1.5983773838048615e-05 - sys_4: 9.614508010556232e-06 - sys_5: 1.342698343755619e-05 - sys_6: -1.9144713779555767e-05 - sys_7: 1.2199552191146859e-05 - sys_8: 1.870693360255654e-06 - sys_9: 1.5922964805360876e-05 - sys_10: -1.0367001007465813e-05 - sys_11: 2.2815824590792513e-05 - sys_12: -2.9246052246533452e-05 - sys_13: -2.090725745487217e-05 - sys_14: -4.944044030000377e-05 - sys_15: 1.0247677523290065e-06 - sys_16: 8.611062166183704e-05 - sys_17: -6.178260198073444e-06 - sys_18: 6.431843043771244e-05 - sys_19: -9.432336993421684e-05 - sys_20: -1.2594441078704068e-05 - sys_21: 8.642278331285609e-05 - sys_22: -0.0001372239659849239 - sys_23: -1.732154254276027e-05 - sys_24: 1.2881721534218593e-07 - sys_25: -7.577024713073864e-05 - sys_26: -6.0037595320297644e-05 - sys_27: -0.00045323280449589674 - sys_28: 0.0012019571657234576 - sys_29: 0.0006640222096548526 - sys_30: -0.00043620363988313554 - sys_31: 0.00011839330244246104 - sys_32: -3.372578160819723e-05 - sys_33: 3.721235423260584e-05 - sys_34: -0.00014779284016539193 - sys_35: 6.596017849525106e-05 - sys_36: 1.3362281560254373e-05 - sys_37: -0.00012275950494662367 - sys_38: 0.000207128026993443 - sys_39: -6.829850061410559e-05 - sys_40: -1.091910081400456e-06 - sys_41: -1.6651816005041353e-05 - sys_42: -8.268045467219292e-05 - sys_43: -8.993068703281885e-05 - sys_44: -4.9453683914218405e-05 - sys_45: -0.0001287710284877532 - sys_46: -9.423900893851048e-05 - sys_47: -5.190340085540622e-05 - sys_48: 2.7118727201485725e-05 - sys_49: -9.53186427316261e-05 - sys_50: -7.397582414008277e-05 - sys_51: 2.9498352141892345e-06 - sys_52: -4.922590619239543e-05 - sys_53: -1.8712398334233148e-05 - sys_54: 2.7333062102747702e-05 - sys_55: 2.7179383849119263e-05 + sys_0: -7.3327263558380825e-06 + sys_1: -3.4275452581323526e-05 + sys_2: 1.1986279540967507e-06 + sys_3: 1.5983773838047114e-05 + sys_4: 9.614508010557344e-06 + sys_5: 1.3426983437559383e-05 + sys_6: -1.9144713779557956e-05 + sys_7: 1.2199552191145488e-05 + sys_8: 1.8706933602549008e-06 + sys_9: 1.592296480535784e-05 + sys_10: -1.0367001007464602e-05 + sys_11: 2.281582459078816e-05 + sys_12: -2.9246052246532263e-05 + sys_13: 2.0907257454866716e-05 + sys_14: 4.9440440299999905e-05 + sys_15: -1.0247677523265365e-06 + sys_16: -8.611062166183623e-05 + sys_17: 6.178260198071785e-06 + sys_18: -6.431843043771019e-05 + sys_19: 9.43233699342164e-05 + sys_20: 1.2594441078706455e-05 + sys_21: -8.642278331285357e-05 + sys_22: 0.00013722396598491764 + sys_23: -1.7321542542785463e-05 + sys_24: -1.2881721532154757e-07 + sys_25: 7.577024713074359e-05 + sys_26: 6.00375953202908e-05 + sys_27: 0.0004532328044959585 + sys_28: -0.0012019571657233327 + sys_29: -0.0006640222096547952 + sys_30: 0.0004362036398831557 + sys_31: -0.00011839330244247405 + sys_32: 3.372578160819505e-05 + sys_33: -3.72123542326018e-05 + sys_34: 0.0001477928401653916 + sys_35: -6.596017849524293e-05 + sys_36: -1.3362281560256257e-05 + sys_37: 0.00012275950494662483 + sys_38: -0.00020712802699344597 + sys_39: 6.829850061410594e-05 + sys_40: 1.0919100813998234e-06 + sys_41: 1.6651816005050572e-05 + sys_42: 8.268045467218608e-05 + sys_43: -8.993068703281915e-05 + sys_44: -4.945368391422495e-05 + sys_45: -0.00012877102848774948 + sys_46: -9.423900893851299e-05 + sys_47: -5.190340085540786e-05 + sys_48: -2.7118727201493294e-05 + sys_49: -9.531864273162668e-05 + sys_50: -7.39758241400835e-05 + sys_51: 2.949835214187288e-06 + sys_52: -4.922590619239453e-05 + sys_53: -1.8712398334230333e-05 + sys_54: 2.7333062102753465e-05 + sys_55: 2.7179383849119982e-05 - lumi_ue: 0.000246 pol: 0.00029370000000000004 - sys_0: -1.4531320686131735e-05 - sys_1: -5.906649464146702e-05 - sys_2: 1.8354699269172787e-06 - sys_3: 2.9964851438954355e-05 - sys_4: 1.677001373338388e-05 - sys_5: 2.731649099159363e-05 - sys_6: -4.540862534083342e-05 - sys_7: 2.356558224617929e-05 - sys_8: 2.0087167328101553e-06 - sys_9: 2.8473721331546194e-05 - sys_10: -1.9367062008143123e-05 - sys_11: 5.880611620241099e-05 - sys_12: -8.536255913383565e-05 - sys_13: -5.250701914699015e-05 - sys_14: -0.00011494080613538739 - sys_15: -9.454843313858185e-06 - sys_16: 0.00017584212571698267 - sys_17: -4.960987458172187e-06 - sys_18: 0.00013700076147794214 - sys_19: -0.00014595864850027162 - sys_20: 2.3417086895063263e-06 - sys_21: 7.57119800445286e-05 - sys_22: -0.0001596115450664963 - sys_23: -1.3244827589537362e-05 - sys_24: -5.128125655174125e-06 - sys_25: -3.524420217820501e-05 - sys_26: -3.578498291706113e-05 - sys_27: -0.00014490156371427227 - sys_28: 0.00032136058248287777 - sys_29: 2.492766725590883e-05 - sys_30: 0.0016108287428603116 - sys_31: 0.00047795687583455676 - sys_32: -0.0001389226169479957 - sys_33: -1.747060931935861e-05 - sys_34: -9.594836665964868e-05 - sys_35: 8.901928946063245e-05 - sys_36: -4.54769118638531e-06 - sys_37: -0.00010033667034219528 - sys_38: 0.0002865523748037608 - sys_39: -9.799696235697907e-05 - sys_40: 5.680457420925754e-06 - sys_41: -6.329272705943741e-05 - sys_42: -6.566929783252569e-05 - sys_43: -0.00015857135686855476 - sys_44: -1.7938166004767783e-05 - sys_45: -0.0001248558516538365 - sys_46: -7.969712040822884e-05 - sys_47: -2.423005082119065e-05 - sys_48: 3.326578293537814e-05 - sys_49: -9.098067052196511e-05 - sys_50: -7.714098863909326e-05 - sys_51: 3.169252785690477e-05 - sys_52: -0.00016227507557808844 - sys_53: 2.9684395878558016e-05 - sys_54: -1.0218505438523867e-05 - sys_55: 1.563893729769318e-05 + sys_0: -1.4531320686131926e-05 + sys_1: -5.906649464146684e-05 + sys_2: 1.8354699269196728e-06 + sys_3: 2.996485143895253e-05 + sys_4: 1.677001373338609e-05 + sys_5: 2.7316490991592877e-05 + sys_6: -4.540862534083362e-05 + sys_7: 2.356558224617969e-05 + sys_8: 2.0087167328109575e-06 + sys_9: 2.847372133154413e-05 + sys_10: -1.9367062008141487e-05 + sys_11: 5.8806116202409896e-05 + sys_12: -8.536255913383588e-05 + sys_13: 5.2507019146986626e-05 + sys_14: 0.00011494080613538663 + sys_15: 9.454843313859845e-06 + sys_16: -0.0001758421257169817 + sys_17: 4.960987458171385e-06 + sys_18: -0.00013700076147794236 + sys_19: 0.00014595864850027368 + sys_20: -2.341708689503121e-06 + sys_21: -7.571198004453074e-05 + sys_22: 0.00015961154506649632 + sys_23: -1.324482758953872e-05 + sys_24: 5.128125655173806e-06 + sys_25: 3.524420217818871e-05 + sys_26: 3.5784982917079476e-05 + sys_27: 0.00014490156371423744 + sys_28: -0.0003213605824829193 + sys_29: -2.4927667255856166e-05 + sys_30: -0.0016108287428603038 + sys_31: -0.0004779568758345491 + sys_32: 0.0001389226169479849 + sys_33: 1.747060931935825e-05 + sys_34: 9.594836665965272e-05 + sys_35: -8.901928946062573e-05 + sys_36: 4.547691186391121e-06 + sys_37: 0.00010033667034219226 + sys_38: -0.0002865523748037608 + sys_39: 9.799696235698181e-05 + sys_40: -5.680457420944249e-06 + sys_41: 6.329272705944278e-05 + sys_42: 6.566929783252198e-05 + sys_43: -0.00015857135686855026 + sys_44: -1.793816600477198e-05 + sys_45: -0.00012485585165383548 + sys_46: -7.969712040822871e-05 + sys_47: -2.4230050821186205e-05 + sys_48: -3.326578293538152e-05 + sys_49: -9.098067052196399e-05 + sys_50: -7.714098863909551e-05 + sys_51: 3.169252785690013e-05 + sys_52: -0.0001622750755780895 + sys_53: 2.9684395878555217e-05 + sys_54: -1.0218505438526888e-05 + sys_55: 1.563893729769311e-05 - lumi_ue: 0.000239 pol: 0.00032736 - sys_0: -1.272117586733791e-05 - sys_1: -5.375990841555208e-05 - sys_2: -1.3472527957306846e-05 - sys_3: 2.5393227188360944e-05 - sys_4: 1.449188989967145e-05 - sys_5: 4.6313594871349786e-05 - sys_6: -9.94445210398093e-05 - sys_7: 3.514896332545169e-05 - sys_8: 2.0848428285711266e-06 - sys_9: 3.511232265969161e-05 - sys_10: -2.4550290602501742e-05 - sys_11: 0.00013410982108297268 - sys_12: -0.00018932880774262905 - sys_13: -0.00012681038449283402 - sys_14: -0.0002065503495375271 - sys_15: -2.666673222626879e-05 - sys_16: 0.00019253885153976204 - sys_17: -1.9517961879461624e-06 - sys_18: 0.00024424648813223417 - sys_19: -0.00011220929489531388 - sys_20: 1.8456056053043454e-05 - sys_21: 5.022805954378928e-05 - sys_22: -0.00014559323679594525 - sys_23: -8.382894936700573e-06 - sys_24: -5.79775953091546e-06 - sys_25: -1.1731757705129818e-05 - sys_26: -1.9321625067752248e-05 - sys_27: -3.822311542566953e-05 - sys_28: 0.00014841000698274776 - sys_29: 2.1161616334797312e-05 - sys_30: 0.00032941367073075384 - sys_31: -0.001934350233922716 - sys_32: -0.00044682690867955526 - sys_33: -5.794397906803498e-05 - sys_34: 1.2751248898624037e-05 - sys_35: 0.00014435840447837156 - sys_36: -2.4306983302243385e-05 - sys_37: -5.680218454735558e-05 - sys_38: 0.0002487261509596028 - sys_39: -0.0001441746186061861 - sys_40: 1.4533630662262793e-05 - sys_41: -0.00017100364566967612 - sys_42: -1.0145135308812776e-05 - sys_43: -0.00012354692468630917 - sys_44: 1.410205581952277e-05 - sys_45: -8.865066696678397e-05 - sys_46: -4.134011789639426e-05 - sys_47: 6.973883769365745e-06 - sys_48: 2.7836357204105923e-05 - sys_49: -6.640619120971618e-05 - sys_50: -6.363751324763519e-05 - sys_51: 6.066530688749216e-05 - sys_52: -0.0002881392593830859 - sys_53: 8.801391663905872e-05 - sys_54: -3.8541369199169164e-05 - sys_55: -4.285495341085017e-07 + sys_0: -1.2721175867337863e-05 + sys_1: -5.3759908415551784e-05 + sys_2: -1.3472527957308039e-05 + sys_3: 2.5393227188360534e-05 + sys_4: 1.4491889899672195e-05 + sys_5: 4.631359487134997e-05 + sys_6: -9.944452103980808e-05 + sys_7: 3.514896332545032e-05 + sys_8: 2.084842828571797e-06 + sys_9: 3.511232265969395e-05 + sys_10: -2.455029060250201e-05 + sys_11: 0.00013410982108297455 + sys_12: -0.00018932880774263057 + sys_13: 0.00012681038449283095 + sys_14: 0.00020655034953752442 + sys_15: 2.666673222627146e-05 + sys_16: -0.00019253885153976168 + sys_17: 1.9517961879403657e-06 + sys_18: -0.00024424648813223406 + sys_19: 0.0001122092948953139 + sys_20: -1.8456056053044795e-05 + sys_21: -5.022805954379e-05 + sys_22: 0.0001455932367959391 + sys_23: -8.382894936706117e-06 + sys_24: 5.797759530922429e-06 + sys_25: 1.1731757705128178e-05 + sys_26: 1.932162506775638e-05 + sys_27: 3.822311542568705e-05 + sys_28: -0.0001484100069827678 + sys_29: -2.1161616334793084e-05 + sys_30: -0.000329413670730753 + sys_31: 0.0019343502339227154 + sys_32: 0.00044682690867959424 + sys_33: 5.7943979068033526e-05 + sys_34: -1.275124889861698e-05 + sys_35: -0.0001443584044783772 + sys_36: 2.4306983302239594e-05 + sys_37: 5.6802184547351856e-05 + sys_38: -0.00024872615095960317 + sys_39: 0.00014417461860618478 + sys_40: -1.4533630662284744e-05 + sys_41: 0.00017100364566967233 + sys_42: 1.0145135308798986e-05 + sys_43: -0.0001235469246863111 + sys_44: 1.4102055819522456e-05 + sys_45: -8.86506669667826e-05 + sys_46: -4.1340117896395616e-05 + sys_47: 6.9738837693633595e-06 + sys_48: -2.7836357204103206e-05 + sys_49: -6.640619120971576e-05 + sys_50: -6.363751324763913e-05 + sys_51: 6.0665306887490696e-05 + sys_52: -0.00028813925938308194 + sys_53: 8.801391663906484e-05 + sys_54: -3.85413691991664e-05 + sys_55: -4.285495341072438e-07 - lumi_ue: 0.000234 pol: 0.0002376 - sys_0: -3.163055892263012e-05 - sys_1: -0.00012190567042053858 - sys_2: -7.723766765003094e-05 - sys_3: 5.519553672535731e-05 - sys_4: 2.6089586576773472e-05 - sys_5: 0.00014795078938444268 - sys_6: -0.00028060748130880595 - sys_7: 0.00010934528327043726 - sys_8: -1.0540484335741344e-06 - sys_9: 8.513687460958203e-05 - sys_10: -5.241496380355381e-05 - sys_11: 0.00030955638446766376 - sys_12: -0.0002267751359534543 - sys_13: -0.0003394260703075253 - sys_14: -0.0002660805409052375 - sys_15: 0.00011554091499488208 - sys_16: 0.00016589429796168894 - sys_17: -9.721512874623847e-07 - sys_18: 0.00024218239070157655 - sys_19: -9.03890040533799e-05 - sys_20: -2.062699720925894e-05 - sys_21: 1.0527515183326102e-05 - sys_22: -0.0001265710097310898 - sys_23: -4.698049302985964e-06 - sys_24: -4.421749933670291e-06 - sys_25: -1.099015991451604e-06 - sys_26: -8.981061418385324e-06 - sys_27: -4.337528682716684e-06 - sys_28: 5.749636685715271e-05 - sys_29: 1.084409679656013e-05 - sys_30: 0.00012120541376208125 - sys_31: -0.00028047607313918285 - sys_32: 0.0024767071448502692 - sys_33: -0.0001067225149816944 - sys_34: 0.0002611086759718761 - sys_35: 0.00046124658233016196 - sys_36: -1.169767482737116e-05 - sys_37: -9.253323981837141e-06 - sys_38: 0.0001796539883357399 - sys_39: -0.00027325884882541845 - sys_40: 2.6875640361524202e-05 - sys_41: -0.00037518651605681914 - sys_42: 7.111861208602164e-05 - sys_43: -2.9420533418085882e-05 - sys_44: 3.027589332612244e-05 - sys_45: -3.334595758983554e-05 - sys_46: 2.4104601219009836e-06 - sys_47: 2.3303574700550302e-05 - sys_48: 1.9058664809852123e-05 - sys_49: -3.638594480743389e-05 - sys_50: -4.1325916120801956e-05 - sys_51: 6.721609973331772e-05 - sys_52: -0.00027778621178378086 - sys_53: 0.00021114797355542542 - sys_54: 1.0202354904046142e-05 - sys_55: -3.499208720167625e-06 + sys_0: -3.1630558922629954e-05 + sys_1: -0.0001219056704205382 + sys_2: -7.723766765002501e-05 + sys_3: 5.519553672535579e-05 + sys_4: 2.608958657677528e-05 + sys_5: 0.00014795078938444645 + sys_6: -0.000280607481308802 + sys_7: 0.00010934528327043763 + sys_8: -1.0540484335743735e-06 + sys_9: 8.51368746095837e-05 + sys_10: -5.241496380355311e-05 + sys_11: 0.0003095563844676661 + sys_12: -0.00022677513595345468 + sys_13: 0.00033942607030752373 + sys_14: 0.00026608054090523594 + sys_15: -0.0001155409149948779 + sys_16: -0.00016589429796168932 + sys_17: 9.72151287458515e-07 + sys_18: -0.0002421823907015728 + sys_19: 9.038900405338213e-05 + sys_20: 2.062699720925617e-05 + sys_21: -1.052751518332113e-05 + sys_22: 0.00012657100973109266 + sys_23: -4.6980493029875854e-06 + sys_24: 4.421749933671465e-06 + sys_25: 1.0990159914506828e-06 + sys_26: 8.981061418386643e-06 + sys_27: 4.337528682720824e-06 + sys_28: -5.749636685715411e-05 + sys_29: -1.08440967965542e-05 + sys_30: -0.0001212054137620569 + sys_31: 0.0002804760731391937 + sys_32: -0.0024767071448502597 + sys_33: 0.00010672251498169418 + sys_34: -0.00026110867597185306 + sys_35: -0.0004612465823301665 + sys_36: 1.1697674827367565e-05 + sys_37: 9.253323981831886e-06 + sys_38: -0.00017965398833573554 + sys_39: 0.0002732588488254138 + sys_40: -2.6875640361577664e-05 + sys_41: 0.0003751865160568127 + sys_42: -7.11186120860371e-05 + sys_43: -2.9420533418082636e-05 + sys_44: 3.0275893326121353e-05 + sys_45: -3.334595758983587e-05 + sys_46: 2.4104601219031426e-06 + sys_47: 2.3303574700552247e-05 + sys_48: -1.9058664809850555e-05 + sys_49: -3.6385944807434056e-05 + sys_50: -4.132591612080452e-05 + sys_51: 6.721609973330964e-05 + sys_52: -0.00027778621178377934 + sys_53: 0.0002111479735554243 + sys_54: 1.0202354904037047e-05 + sys_55: -3.4992087201647383e-06 - lumi_ue: 0.000231 pol: 0.0011154 - sys_0: -0.00012212581198132945 - sys_1: -0.00033036285562441036 - sys_2: -0.00031095621803123996 - sys_3: 0.00015438182401224823 - sys_4: 6.699205092404173e-05 - sys_5: 0.0004421013334447652 - sys_6: -0.0004058164160997726 - sys_7: 0.0004300527091825558 - sys_8: -9.28779208136198e-06 - sys_9: 0.0002659836084422478 - sys_10: -0.00015546125917554376 - sys_11: 0.0003116068086842004 - sys_12: -0.00019514670332643118 - sys_13: -0.0003805315053511729 - sys_14: -0.00042176213967702044 - sys_15: 0.0005274139876771008 - sys_16: 8.625475383004218e-05 - sys_17: 4.8177209429191015e-06 - sys_18: 0.00018405109393553542 - sys_19: -6.98977219179789e-05 - sys_20: -0.00022059131147868328 - sys_21: -8.049428130208066e-05 - sys_22: -6.731458612449357e-05 - sys_23: -1.8990214549149987e-06 - sys_24: -2.5312022200053084e-06 - sys_25: 1.673230065395634e-06 - sys_26: -4.06009331144999e-06 - sys_27: 7.880581526198937e-06 - sys_28: 1.948759217808662e-05 - sys_29: 4.6895127809832764e-06 - sys_30: 4.170286356259282e-05 - sys_31: -9.253049994909227e-05 - sys_32: 0.0003145959583898994 - sys_33: 0.0001974154727192359 - sys_34: -0.0012846710729112786 - sys_35: -0.003046327479151329 - sys_36: -0.0005925529780293651 - sys_37: 0.0001303002005612171 - sys_38: 1.7039395932309695e-05 - sys_39: -0.0002450171109268212 - sys_40: 2.954906985780686e-05 - sys_41: -0.00041546004637857783 - sys_42: 0.00011262368872625079 - sys_43: 3.7900794137553893e-05 - sys_44: 4.3415445979063036e-05 - sys_45: 1.7443824761445526e-05 - sys_46: 3.705607187876777e-05 - sys_47: 2.3985718878439366e-05 - sys_48: 1.800116992719708e-05 - sys_49: -2.5859607088735488e-05 - sys_50: -2.644602481384765e-05 - sys_51: 8.93842823685833e-05 - sys_52: -0.00021831757237082081 - sys_53: 0.0006684626683092004 - sys_54: 0.0002124036763417546 - sys_55: -1.3164680470939133e-07 + sys_0: -0.0001221258119813296 + sys_1: -0.0003303628556244106 + sys_2: -0.0003109562180312403 + sys_3: 0.00015438182401224593 + sys_4: 6.699205092404424e-05 + sys_5: 0.00044210133344476694 + sys_6: -0.00040581641609976926 + sys_7: 0.00043005270918255816 + sys_8: -9.287792081359814e-06 + sys_9: 0.00026598360844224696 + sys_10: -0.00015546125917554048 + sys_11: 0.00031160680868420247 + sys_12: -0.00019514670332643075 + sys_13: 0.0003805315053511701 + sys_14: 0.00042176213967702196 + sys_15: -0.0005274139876770941 + sys_16: -8.625475383004123e-05 + sys_17: -4.817720942921646e-06 + sys_18: -0.00018405109393553306 + sys_19: 6.98977219179869e-05 + sys_20: 0.000220591311478677 + sys_21: 8.04942813020923e-05 + sys_22: 6.731458612450418e-05 + sys_23: -1.8990214549143054e-06 + sys_24: 2.5312022200052537e-06 + sys_25: -1.6732300653937863e-06 + sys_26: 4.060093311450399e-06 + sys_27: -7.88058152620028e-06 + sys_28: -1.94875921780873e-05 + sys_29: -4.689512780980357e-06 + sys_30: -4.1702863562590585e-05 + sys_31: 9.253049994909151e-05 + sys_32: -0.00031459595838990144 + sys_33: -0.0001974154727192351 + sys_34: 0.0012846710729111565 + sys_35: 0.0030463274791514075 + sys_36: 0.0005925529780293722 + sys_37: -0.0001303002005612123 + sys_38: -1.7039395932307743e-05 + sys_39: 0.0002450171109268268 + sys_40: -2.9549069857870015e-05 + sys_41: 0.0004154600463785693 + sys_42: -0.00011262368872626591 + sys_43: 3.790079413755381e-05 + sys_44: 4.341544597905749e-05 + sys_45: 1.7443824761449846e-05 + sys_46: 3.7056071878773474e-05 + sys_47: 2.398571887844324e-05 + sys_48: -1.8001169927202303e-05 + sys_49: -2.5859607088736972e-05 + sys_50: -2.64460248138585e-05 + sys_51: 8.938428236857492e-05 + sys_52: -0.0002183175723708199 + sys_53: 0.0006684626683092056 + sys_54: 0.00021240367634174138 + sys_55: -1.3164680470090226e-07 - lumi_ue: 0.000229 pol: 0.00032472 - sys_0: -0.0005338603840331941 - sys_1: -0.0009079395928587069 - sys_2: -0.00041573039276296105 - sys_3: 0.0006152169000324081 - sys_4: 0.00025998218948008236 - sys_5: 0.0004785319770068085 - sys_6: -0.0003435647151625801 - sys_7: 0.0004968537419461016 - sys_8: -1.564886481798407e-05 + sys_0: -0.0005338603840331949 + sys_1: -0.0009079395928587093 + sys_2: -0.00041573039276296446 + sys_3: 0.0006152169000324048 + sys_4: 0.00025998218948008523 + sys_5: 0.0004785319770068095 + sys_6: -0.0003435647151625757 + sys_7: 0.0004968537419461066 + sys_8: -1.5648864817982824e-05 sys_9: 0.0009502542282858696 - sys_10: -0.0005507106508078163 - sys_11: 0.00016633025465126637 - sys_12: -6.365093621446946e-05 - sys_13: -0.00029883597807117126 - sys_14: -0.0003238178244610279 - sys_15: 0.000608128045802369 - sys_16: -2.3621345443547028e-05 - sys_17: 1.8540311878168933e-05 - sys_18: 6.336477471971866e-05 - sys_19: -9.093989605931146e-05 - sys_20: -0.000796155361495956 - sys_21: -0.00032275274671473447 - sys_22: 7.882989956616827e-05 - sys_23: -6.204736050776246e-07 - sys_24: -1.4869535575153106e-06 - sys_25: 1.9792873418345765e-06 - sys_26: -1.2130405650873667e-06 - sys_27: 1.2049608445550758e-05 - sys_28: 5.441981319140669e-06 - sys_29: 1.0994713221432303e-06 - sys_30: 9.425921128533218e-06 - sys_31: -2.2715960405573773e-05 - sys_32: 9.156579122082103e-05 - sys_33: 4.6854621053720484e-05 - sys_34: -0.00019451586423559103 - sys_35: -0.00032110026246864556 - sys_36: -4.128080382943818e-06 - sys_37: -7.731307644453462e-05 - sys_38: 0.0001958641885875904 - sys_39: -0.00011974149847415661 - sys_40: 3.1676540335243745e-05 - sys_41: -0.0005491445113443124 - sys_42: 0.00020664107212566514 - sys_43: 0.0002070507508376697 - sys_44: 0.00012628979035638575 - sys_45: 0.0001666303335042055 - sys_46: 0.000165788719412759 - sys_47: 8.957468123431065e-05 - sys_48: -0.0003589924966736188 - sys_49: 0.0004929334526356282 - sys_50: 8.813130709498733e-05 - sys_51: -0.0004260586929318918 - sys_52: -0.0006654937631470925 - sys_53: -0.004198129208498813 - sys_54: -0.0021818462731636465 - sys_55: -2.9085431057963138e-05 + sys_10: -0.0005507106508078178 + sys_11: 0.00016633025465127385 + sys_12: -6.365093621447364e-05 + sys_13: 0.0002988359780711704 + sys_14: 0.00032381782446103233 + sys_15: -0.0006081280458023681 + sys_16: 2.362134544354786e-05 + sys_17: -1.854031187816959e-05 + sys_18: -6.336477471971894e-05 + sys_19: 9.093989605933806e-05 + sys_20: 0.0007961553614959379 + sys_21: 0.0003227527467147676 + sys_22: -7.882989956617365e-05 + sys_23: -6.204736050775142e-07 + sys_24: 1.4869535575153995e-06 + sys_25: -1.979287341834535e-06 + sys_26: 1.213040565087568e-06 + sys_27: -1.2049608445550271e-05 + sys_28: -5.441981319141952e-06 + sys_29: -1.0994713221427345e-06 + sys_30: -9.425921128531888e-06 + sys_31: 2.2715960405574874e-05 + sys_32: -9.156579122082208e-05 + sys_33: -4.6854621053721446e-05 + sys_34: 0.00019451586423557707 + sys_35: 0.00032110026246865965 + sys_36: 4.12808038294482e-06 + sys_37: 7.731307644453729e-05 + sys_38: -0.00019586418858759692 + sys_39: 0.0001197414984741586 + sys_40: -3.167654033531275e-05 + sys_41: 0.0005491445113442971 + sys_42: -0.00020664107212567924 + sys_43: 0.00020705075083767138 + sys_44: 0.00012628979035639033 + sys_45: 0.00016663033350420228 + sys_46: 0.0001657887194127647 + sys_47: 8.957468123430775e-05 + sys_48: 0.0003589924966736229 + sys_49: 0.000492933452635615 + sys_50: 8.813130709503241e-05 + sys_51: -0.00042605869293185116 + sys_52: -0.000665493763147121 + sys_53: -0.0041981292084988416 + sys_54: -0.002181846273163527 + sys_55: -2.908543105804516e-05 - lumi_ue: 0.000227 pol: 0.0008052000000000001 - sys_0: -0.0011344626809096708 - sys_1: -0.001379222171286422 - sys_2: -0.0003293922426825763 - sys_3: 0.0010126366388589923 - sys_4: 0.0016996103665959607 - sys_5: 0.0004525807693516198 - sys_6: -0.00024752177389812284 - sys_7: 0.0005314580758777434 - sys_8: -1.333923644091311e-05 - sys_9: 0.0012883415936785815 - sys_10: -0.0011468156911945268 - sys_11: 2.251356763659235e-05 - sys_12: 3.9203649581895256e-05 - sys_13: -0.0002749150144992921 - sys_14: -0.0004451738756659846 - sys_15: 0.0011878648970476333 - sys_16: -0.00029692203211782617 - sys_17: 0.00012595242780659611 - sys_18: -0.00051723727742299 - sys_19: 0.0014731320040348777 - sys_20: 0.007175574255665434 - sys_21: 0.0019036532222926371 - sys_22: -0.00016347268221444808 - sys_23: -2.6424785283031796e-07 - sys_24: -5.069163330684674e-07 - sys_25: 7.570674450829787e-07 - sys_26: -2.6848915245545797e-07 - sys_27: 4.64483421127493e-06 - sys_28: 6.50844020158943e-07 - sys_29: 1.2546109887148115e-07 - sys_30: 1.5038197964675274e-06 - sys_31: -4.103745069737986e-06 - sys_32: 2.4347264478897088e-05 - sys_33: 1.3723437552812605e-05 - sys_34: -5.282016349701009e-05 - sys_35: -9.054089348220705e-05 - sys_36: -2.9164746354746226e-06 - sys_37: -1.5291067041763396e-05 - sys_38: 4.87396290064138e-05 - sys_39: -2.472091572731083e-05 - sys_40: -8.031855390479795e-06 - sys_41: 0.00020147390822134852 - sys_42: -8.840807090300744e-05 - sys_43: -0.0001009844458141237 - sys_44: -3.377780668659312e-05 - sys_45: -4.639192948381359e-05 - sys_46: -3.900749755260666e-05 - sys_47: -1.689972782246261e-05 - sys_48: -6.712962989767278e-07 - sys_49: 9.677953529210833e-06 - sys_50: 2.24564285364471e-07 - sys_51: -1.9269861593202862e-05 - sys_52: -7.600549678236182e-05 - sys_53: -0.0003739612830110184 - sys_54: -0.00018187543885374977 - sys_55: -1.6607595284776916e-06 + sys_0: -0.0011344626809096712 + sys_1: -0.0013792221712864248 + sys_2: -0.000329392242682583 + sys_3: 0.0010126366388589878 + sys_4: 0.001699610366595962 + sys_5: 0.0004525807693516216 + sys_6: -0.0002475217738981166 + sys_7: 0.0005314580758777509 + sys_8: -1.3339236440910894e-05 + sys_9: 0.0012883415936785847 + sys_10: -0.001146815691194514 + sys_11: 2.251356763660468e-05 + sys_12: 3.9203649581893724e-05 + sys_13: 0.00027491501449929606 + sys_14: 0.00044517387566599484 + sys_15: -0.0011878648970476248 + sys_16: 0.0002969220321178239 + sys_17: -0.00012595242780660332 + sys_18: 0.0005172372774229966 + sys_19: -0.0014731320040351087 + sys_20: -0.007175574255665306 + sys_21: -0.0019036532222929403 + sys_22: 0.00016347268221445833 + sys_23: -2.6424785283043983e-07 + sys_24: 5.069163330685366e-07 + sys_25: -7.5706744508251e-07 + sys_26: 2.684891524557832e-07 + sys_27: -4.6448342112758165e-06 + sys_28: -6.508440201594997e-07 + sys_29: -1.2546109887159055e-07 + sys_30: -1.5038197964662278e-06 + sys_31: 4.103745069738131e-06 + sys_32: -2.434726447889671e-05 + sys_33: -1.3723437552812449e-05 + sys_34: 5.2820163497007e-05 + sys_35: 9.054089348220963e-05 + sys_36: 2.916474635474086e-06 + sys_37: 1.5291067041763268e-05 + sys_38: -4.8739629006414746e-05 + sys_39: 2.4720915727312877e-05 + sys_40: 8.03185539049643e-06 + sys_41: -0.00020147390822134424 + sys_42: 8.840807090301046e-05 + sys_43: -0.00010098444581412408 + sys_44: -3.377780668660011e-05 + sys_45: -4.6391929483815514e-05 + sys_46: -3.900749755260896e-05 + sys_47: -1.689972782246231e-05 + sys_48: 6.712962989807728e-07 + sys_49: 9.677953529212902e-06 + sys_50: 2.2456428536710567e-07 + sys_51: -1.9269861593200195e-05 + sys_52: -7.600549678236438e-05 + sys_53: -0.00037396128301101953 + sys_54: -0.00018187543885373906 + sys_55: -1.6607595284847159e-06 - lumi_ue: 0.000226 pol: 0.00011682000000000001 - sys_0: -0.0011792988988075718 - sys_1: -0.001554624761739689 - sys_2: -0.00025096010725787874 - sys_3: 0.0012142135722346492 - sys_4: 0.0031897442521219496 - sys_5: 0.0003916856511898663 - sys_6: -0.00019509320187066333 - sys_7: 0.0006419893362667791 - sys_8: -7.978644295246272e-06 - sys_9: 0.004811853930770792 - sys_10: 0.012190577150071548 - sys_11: 0.0004309839837588902 - sys_12: -0.0003317571983019257 - sys_13: 5.026655400430366e-05 - sys_14: 5.691553732346379e-05 - sys_15: -0.00023377917877058946 - sys_16: 3.2706270133914466e-05 - sys_17: -1.5422448388643656e-06 - sys_18: 1.1648447773506607e-05 - sys_19: 4.025658319217579e-05 - sys_20: 0.0002950878768225439 - sys_21: 9.186854792379323e-05 - sys_22: -1.9978725959354006e-05 - sys_23: -8.162933145571044e-08 - sys_24: -1.2237212123207275e-07 - sys_25: 2.0077488117749855e-07 - sys_26: -8.597832244639287e-08 - sys_27: 1.2533583945318655e-06 - sys_28: -2.702532135964027e-07 - sys_29: -4.623989610333688e-08 - sys_30: -4.0273410889124476e-07 - sys_31: 9.157898299699803e-08 - sys_32: 3.675396367604172e-06 - sys_33: 3.181943494769836e-06 - sys_34: -1.1238115884331568e-05 - sys_35: -1.8002818181886484e-05 - sys_36: 4.051443573122217e-07 - sys_37: -2.4643777793563773e-06 - sys_38: 1.211691251156476e-05 - sys_39: -1.4063399318465847e-05 - sys_40: 1.8120678536185765e-06 - sys_41: 1.2343342922587835e-05 - sys_42: -6.507217148048175e-06 - sys_43: -1.3346961995240795e-05 - sys_44: -3.684039708186147e-06 - sys_45: -6.742826722031688e-06 - sys_46: -4.989609189391962e-06 - sys_47: -3.2207567685596017e-06 - sys_48: -1.1025377226617117e-06 - sys_49: 1.5706310355847158e-06 - sys_50: 1.7425869069738476e-07 - sys_51: -2.4112506769105785e-06 - sys_52: -1.981263990555784e-05 - sys_53: -7.62499737022925e-05 - sys_54: -3.621242382555173e-05 - sys_55: -9.090214968951425e-07 + sys_0: -0.0011792988988075731 + sys_1: -0.0015546247617396914 + sys_2: -0.00025096010725788855 + sys_3: 0.0012142135722346382 + sys_4: 0.0031897442521219488 + sys_5: 0.0003916856511898733 + sys_6: -0.00019509320187065246 + sys_7: 0.0006419893362667935 + sys_8: -7.9786442952424e-06 + sys_9: 0.004811853930770773 + sys_10: 0.012190577150071543 + sys_11: 0.0004309839837587566 + sys_12: -0.0003317571983018982 + sys_13: -5.026655400430126e-05 + sys_14: -5.6915537323461034e-05 + sys_15: 0.0002337791787705857 + sys_16: -3.270627013391562e-05 + sys_17: 1.5422448388675863e-06 + sys_18: -1.1648447773508745e-05 + sys_19: -4.025658319218279e-05 + sys_20: -0.0002950878768225368 + sys_21: -9.186854792380637e-05 + sys_22: 1.9978725959354934e-05 + sys_23: -8.16293314557069e-08 + sys_24: 1.2237212123198691e-07 + sys_25: -2.0077488117755247e-07 + sys_26: 8.597832244662063e-08 + sys_27: -1.2533583945317959e-06 + sys_28: 2.70253213596476e-07 + sys_29: 4.623989610307794e-08 + sys_30: 4.0273410889134297e-07 + sys_31: -9.15789829966761e-08 + sys_32: -3.6753963676041357e-06 + sys_33: -3.1819434947697865e-06 + sys_34: 1.1238115884330596e-05 + sys_35: 1.8002818181887514e-05 + sys_36: -4.0514435731218793e-07 + sys_37: 2.4643777793564052e-06 + sys_38: -1.2116912511564803e-05 + sys_39: 1.4063399318466266e-05 + sys_40: -1.81206785361672e-06 + sys_41: -1.2343342922587846e-05 + sys_42: 6.507217148048049e-06 + sys_43: -1.3346961995241039e-05 + sys_44: -3.6840397081867744e-06 + sys_45: -6.742826722031085e-06 + sys_46: -4.98960918939173e-06 + sys_47: -3.2207567685592116e-06 + sys_48: 1.1025377226627197e-06 + sys_49: 1.570631035584556e-06 + sys_50: 1.7425869069719492e-07 + sys_51: -2.4112506769101868e-06 + sys_52: -1.9812639905558676e-05 + sys_53: -7.624997370229335e-05 + sys_54: -3.6212423825549856e-05 + sys_55: -9.090214968964486e-07 diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_2JET_510GEV/uncertainties_A.yaml b/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_2JET_510GEV/uncertainties_A.yaml index f186a8a5e5..1fcb43cc36 100644 --- a/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_2JET_510GEV/uncertainties_A.yaml +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_2JET_510GEV/uncertainties_A.yaml @@ -234,581 +234,581 @@ definitions: bins: - lumi_ue: 0.00025 pol: 0.0008448 - sys_0: -1.4932704724906427e-05 - sys_1: -6.647759476165218e-05 - sys_2: 1.630401314766415e-06 - sys_3: 3.267462248739768e-05 - sys_4: 1.8648986103258845e-05 - sys_5: 2.1859553427066885e-05 - sys_6: -2.764260471995212e-05 - sys_7: 2.4115688987795492e-05 - sys_8: -8.852057229814217e-07 - sys_9: 1.9676436951535432e-05 - sys_10: -2.470136930196038e-05 - sys_11: 3.2773228322757734e-05 - sys_12: -1.9051228579499554e-05 - sys_13: -2.8111048267594446e-05 - sys_14: -5.12509509844437e-05 - sys_15: 1.0412074064092471e-05 - sys_16: 4.30006594592918e-05 - sys_17: -1.7279491725085568e-05 - sys_18: 7.287847990577875e-05 - sys_19: -4.239594590359346e-05 - sys_20: -5.826381249556464e-05 - sys_21: 3.5333118951901086e-05 - sys_22: -0.00012248966955610044 - sys_23: -9.379346352906422e-06 - sys_24: -5.681445437858892e-06 - sys_25: -9.202584136986829e-07 - sys_26: -4.343627388829993e-06 - sys_27: -9.993231385711363e-06 - sys_28: -4.052711840196821e-06 - sys_29: 9.609466949300923e-07 - sys_30: 6.552758267957907e-07 - sys_31: -2.082527643860987e-06 - sys_32: 3.832889045005201e-06 - sys_33: -2.924095588034367e-06 - sys_34: 2.08530779506185e-06 - sys_35: -9.400423076269274e-06 - sys_36: -7.944704158280935e-06 - sys_37: 6.433286793025468e-06 - sys_38: -1.512996454985619e-05 - sys_39: -0.0012899074899340535 - sys_40: 0.006267890179352411 - sys_41: 0.0015718393759970746 - sys_42: 0.00018138990633743052 - sys_43: 0.000274893943632109 - sys_44: 5.351335772968877e-05 - sys_45: 0.00012535063276170882 - sys_46: 3.691584662912752e-05 - sys_47: 2.9581938993885017e-05 - sys_48: -3.0372601400343865e-05 - sys_49: 5.7357326164349544e-05 - sys_50: 1.260612571999675e-06 - sys_51: -1.6576428176356128e-05 - sys_52: 1.920024123827992e-05 - sys_53: -2.0752895197596427e-05 - sys_54: -3.088485672375722e-05 - sys_55: -5.323760568499265e-06 + sys_0: -1.4932704724905255e-05 + sys_1: -6.647759476165108e-05 + sys_2: 1.6304013147643085e-06 + sys_3: 3.267462248739679e-05 + sys_4: 1.8648986103258336e-05 + sys_5: 2.1859553427068562e-05 + sys_6: -2.7642604719951672e-05 + sys_7: 2.411568898779232e-05 + sys_8: -8.852057229839798e-07 + sys_9: 1.9676436951533105e-05 + sys_10: -2.4701369301961126e-05 + sys_11: 3.277322832275976e-05 + sys_12: -1.9051228579495078e-05 + sys_13: 2.8111048267586958e-05 + sys_14: 5.125095098444276e-05 + sys_15: -1.0412074064088851e-05 + sys_16: -4.300065945928981e-05 + sys_17: 1.727949172508465e-05 + sys_18: -7.287847990578479e-05 + sys_19: 4.2395945903595756e-05 + sys_20: 5.826381249558396e-05 + sys_21: -3.533311895189258e-05 + sys_22: 0.00012248966955610155 + sys_23: -9.379346352905975e-06 + sys_24: 5.681445437859451e-06 + sys_25: 9.202584136999965e-07 + sys_26: 4.343627388830994e-06 + sys_27: 9.993231385712352e-06 + sys_28: 4.052711840197391e-06 + sys_29: -9.609466949303551e-07 + sys_30: -6.55275826795239e-07 + sys_31: 2.0825276438609797e-06 + sys_32: -3.8328890450057295e-06 + sys_33: 2.924095588030233e-06 + sys_34: -2.085307795062002e-06 + sys_35: 9.400423076266945e-06 + sys_36: 7.944704158278199e-06 + sys_37: -6.43328679302424e-06 + sys_38: 1.5129964549856419e-05 + sys_39: 0.0012899074899339665 + sys_40: -0.006267890179352214 + sys_41: -0.0015718393759980955 + sys_42: -0.0001813899063373824 + sys_43: 0.0002748939436320759 + sys_44: 5.3513357729678854e-05 + sys_45: 0.0001253506327616919 + sys_46: 3.6915846629124156e-05 + sys_47: 2.9581938993882046e-05 + sys_48: 3.03726014003442e-05 + sys_49: 5.7357326164347856e-05 + sys_50: 1.2606125720048856e-06 + sys_51: -1.6576428176354194e-05 + sys_52: 1.9200241238281744e-05 + sys_53: -2.0752895197594462e-05 + sys_54: -3.0884856723758726e-05 + sys_55: -5.3237605685032924e-06 - lumi_ue: 0.00058 pol: 0.000594 - sys_0: -1.7448697144571878e-05 - sys_1: -7.071716384626306e-05 - sys_2: 5.646906878226978e-06 - sys_3: 3.8817205571691856e-05 - sys_4: 1.6964413210721972e-05 - sys_5: 2.2790584673087973e-05 - sys_6: -3.257219731054011e-05 - sys_7: 3.336011307342892e-05 - sys_8: 4.690322197470467e-06 - sys_9: 2.3024912136206896e-05 - sys_10: -2.1094342118640504e-05 - sys_11: 2.8579482393266353e-05 - sys_12: -1.821654651377933e-05 - sys_13: -4.5106966517342144e-05 - sys_14: -4.0781022286168694e-05 - sys_15: 1.301961927602584e-05 - sys_16: 3.2770242113663414e-05 - sys_17: -9.513064654925408e-06 - sys_18: 8.678525323332728e-05 - sys_19: -2.044158564125153e-05 - sys_20: -3.1783812459343364e-05 - sys_21: 1.5788409751183913e-05 - sys_22: -4.118181695480385e-05 - sys_23: -9.165767783637247e-06 - sys_24: -1.481633569578687e-05 - sys_25: 1.402044445029201e-05 - sys_26: -7.107779939715541e-06 - sys_27: -1.1016020830792787e-05 - sys_28: -6.430719677031306e-06 - sys_29: 9.73538241182531e-06 - sys_30: 3.446802972541415e-06 - sys_31: -4.9701569327811265e-06 - sys_32: 8.367314527027929e-06 - sys_33: -8.252125121485821e-06 - sys_34: 4.968461096107493e-06 - sys_35: -2.1803301622730377e-05 - sys_36: -2.05042257199938e-05 - sys_37: 1.4094289852541899e-05 - sys_38: -3.744712498200872e-05 - sys_39: -0.00011752363784629337 - sys_40: 3.002808680397793e-05 - sys_41: -2.5759690809529804e-05 - sys_42: -2.164314016087387e-05 - sys_43: -0.00013776566395570764 - sys_44: -3.748260234220189e-05 - sys_45: -0.00017668706026811808 - sys_46: -1.7013876153323996e-05 - sys_47: -1.6647001254640033e-05 - sys_48: 0.0006373704346195927 - sys_49: -0.003114956678088937 - sys_50: 0.004012929426909409 - sys_51: -0.00034224552747039844 - sys_52: 0.00021945602947121606 - sys_53: 4.5462613197947916e-05 - sys_54: -0.0006668489316886048 - sys_55: -0.0003946233239617898 + sys_0: -1.7448697144571922e-05 + sys_1: -7.071716384626237e-05 + sys_2: 5.646906878226052e-06 + sys_3: 3.8817205571690656e-05 + sys_4: 1.696441321072074e-05 + sys_5: 2.279058467308936e-05 + sys_6: -3.257219731054097e-05 + sys_7: 3.336011307342496e-05 + sys_8: 4.690322197472614e-06 + sys_9: 2.3024912136204683e-05 + sys_10: -2.1094342118636492e-05 + sys_11: 2.857948239326711e-05 + sys_12: -1.8216546513776565e-05 + sys_13: 4.510696651734481e-05 + sys_14: 4.078102228616596e-05 + sys_15: -1.3019619276026074e-05 + sys_16: -3.277024211365993e-05 + sys_17: 9.51306465492233e-06 + sys_18: -8.678525323332635e-05 + sys_19: 2.0441585641252666e-05 + sys_20: 3.178381245934244e-05 + sys_21: -1.5788409751183547e-05 + sys_22: 4.1181816954804246e-05 + sys_23: -9.165767783635116e-06 + sys_24: 1.4816335695786819e-05 + sys_25: -1.4020444450288541e-05 + sys_26: 7.1077799397179436e-06 + sys_27: 1.101602083079386e-05 + sys_28: 6.430719677034122e-06 + sys_29: -9.735382411825231e-06 + sys_30: -3.446802972541058e-06 + sys_31: 4.970156932781896e-06 + sys_32: -8.367314527027635e-06 + sys_33: 8.25212512148589e-06 + sys_34: -4.968461096105256e-06 + sys_35: 2.1803301622732264e-05 + sys_36: 2.050422571999481e-05 + sys_37: -1.4094289852543457e-05 + sys_38: 3.7447124982005454e-05 + sys_39: 0.00011752363784629808 + sys_40: -3.0028086803990483e-05 + sys_41: 2.5759690809526124e-05 + sys_42: 2.16431401608747e-05 + sys_43: -0.00013776566395570867 + sys_44: -3.748260234220551e-05 + sys_45: -0.0001766870602681217 + sys_46: -1.7013876153334286e-05 + sys_47: -1.6647001254631725e-05 + sys_48: -0.0006373704346196151 + sys_49: -0.0031149566780889343 + sys_50: 0.0040129294269093405 + sys_51: -0.000342245527470298 + sys_52: 0.00021945602947119988 + sys_53: 4.546261319796253e-05 + sys_54: -0.0006668489316885729 + sys_55: -0.0003946233239617977 - lumi_ue: 0.00062 pol: 0.0005214000000000001 - sys_0: -2.2851926122450446e-05 - sys_1: -0.00011157815978401811 - sys_2: 5.221142945513268e-06 - sys_3: 5.7090303351432004e-05 - sys_4: 2.619437124428177e-05 - sys_5: 3.823053046442071e-05 - sys_6: -5.149922129912152e-05 - sys_7: 4.941634283370895e-05 - sys_8: 3.796555649982347e-06 - sys_9: 3.6701046585308324e-05 - sys_10: -3.388345807073216e-05 - sys_11: 4.330893956945936e-05 - sys_12: -3.0915240580913865e-05 - sys_13: -6.012571969563282e-05 - sys_14: -6.7889545768717e-05 - sys_15: 1.8350824254361954e-05 - sys_16: 4.452143092340661e-05 - sys_17: -1.6085246666288194e-05 - sys_18: 0.00010386604724175386 - sys_19: -3.753458076382383e-05 - sys_20: -4.5845648630087276e-05 - sys_21: 3.0058323179504333e-05 - sys_22: -7.109552827629436e-05 - sys_23: -3.6517075944654932e-06 - sys_24: -1.3598290832217353e-05 - sys_25: 2.016980828465377e-05 - sys_26: -5.541075519533778e-06 - sys_27: 1.7327320197400086e-06 - sys_28: -2.9990753025706317e-05 - sys_29: 1.7211688439693902e-05 - sys_30: 4.855410306633013e-07 - sys_31: -1.0558079391692511e-05 - sys_32: 1.6495214077089027e-05 - sys_33: -1.4249011390188336e-05 - sys_34: 1.7543973765931605e-05 - sys_35: -4.4191097428797544e-05 - sys_36: -4.040381337593423e-05 - sys_37: 3.73149787922248e-05 - sys_38: -9.593764855402129e-05 - sys_39: -0.0001542741112277949 - sys_40: 2.7870276142540748e-05 - sys_41: -3.607027125553233e-05 - sys_42: -2.071695897809535e-05 - sys_43: -0.00013844591105060774 - sys_44: -4.8876693068881444e-05 - sys_45: -0.00018237578495351023 - sys_46: -3.853447712124857e-05 - sys_47: -3.4283846114594875e-05 - sys_48: 0.00032837124127178894 - sys_49: -0.0010815720455086496 - sys_50: 8.477427264166624e-05 - sys_51: 0.00024609070374347677 - sys_52: -0.00044602808046783184 - sys_53: -0.0017240250933269227 - sys_54: 0.0031712262544664406 - sys_55: 0.0032289552139117762 + sys_0: -2.2851926122450212e-05 + sys_1: -0.00011157815978401777 + sys_2: 5.221142945512799e-06 + sys_3: 5.7090303351431875e-05 + sys_4: 2.619437124428154e-05 + sys_5: 3.823053046442168e-05 + sys_6: -5.149922129912099e-05 + sys_7: 4.9416342833709876e-05 + sys_8: 3.796555649981052e-06 + sys_9: 3.670104658530883e-05 + sys_10: -3.388345807073157e-05 + sys_11: 4.3308939569458314e-05 + sys_12: -3.091524058091447e-05 + sys_13: 6.0125719695630434e-05 + sys_14: 6.78895457687172e-05 + sys_15: -1.835082425436144e-05 + sys_16: -4.452143092340561e-05 + sys_17: 1.6085246666285897e-05 + sys_18: -0.00010386604724175398 + sys_19: 3.7534580763827854e-05 + sys_20: 4.584564863008995e-05 + sys_21: -3.005832317950152e-05 + sys_22: 7.109552827629553e-05 + sys_23: -3.6517075944629166e-06 + sys_24: 1.3598290832216987e-05 + sys_25: -2.016980828465091e-05 + sys_26: 5.541075519536241e-06 + sys_27: -1.732732019737771e-06 + sys_28: 2.9990753025709733e-05 + sys_29: -1.721168843969577e-05 + sys_30: -4.855410306642236e-07 + sys_31: 1.0558079391693992e-05 + sys_32: -1.6495214077089637e-05 + sys_33: 1.4249011390185267e-05 + sys_34: -1.754397376593308e-05 + sys_35: 4.4191097428797754e-05 + sys_36: 4.0403813375933595e-05 + sys_37: -3.731497879222241e-05 + sys_38: 9.593764855402269e-05 + sys_39: 0.00015427411122779437 + sys_40: -2.787027614254852e-05 + sys_41: 3.607027125553098e-05 + sys_42: 2.0716958978091682e-05 + sys_43: -0.0001384459110506078 + sys_44: -4.887669306888362e-05 + sys_45: -0.00018237578495351265 + sys_46: -3.85344771212543e-05 + sys_47: -3.4283846114595465e-05 + sys_48: -0.00032837124127180455 + sys_49: -0.0010815720455086607 + sys_50: 8.477427264166194e-05 + sys_51: 0.00024609070374345123 + sys_52: -0.00044602808046788806 + sys_53: -0.001724025093326953 + sys_54: 0.0031712262544664363 + sys_55: 0.0032289552139118357 - lumi_ue: 0.00056 pol: 7.92e-05 - sys_0: -2.3623708728190217e-05 - sys_1: -0.00010876906699337744 - sys_2: 9.151279180348874e-06 - sys_3: 5.5519353587947016e-05 - sys_4: 2.844484607086698e-05 - sys_5: 3.9867895196579404e-05 - sys_6: -4.8440790910919775e-05 - sys_7: 4.7297532743180955e-05 - sys_8: 4.167287388414565e-06 - sys_9: 3.99694403873085e-05 - sys_10: -3.43374164567773e-05 - sys_11: 4.612160873474256e-05 - sys_12: -2.7614592191627536e-05 - sys_13: -5.8835972342791124e-05 - sys_14: -6.980237794885824e-05 - sys_15: 2.3814582304011626e-05 - sys_16: 5.1680519436975515e-05 - sys_17: -1.7258450732195274e-05 - sys_18: 0.00010967456146205192 - sys_19: -4.583108235576945e-05 - sys_20: -5.4863229087876815e-05 - sys_21: 2.524130843659431e-05 - sys_22: -7.656423555870332e-05 - sys_23: -2.3347747238659683e-07 - sys_24: -5.118537238708053e-06 - sys_25: 1.787516913533642e-05 - sys_26: -1.9529015777919013e-06 - sys_27: 1.1718359434956262e-05 - sys_28: -4.5126473795250125e-05 - sys_29: 1.291883826878846e-05 - sys_30: -2.179058115509319e-05 - sys_31: 9.699229020761318e-06 - sys_32: 3.57353314026892e-06 - sys_33: -1.0850972808666846e-05 - sys_34: 2.172224083436962e-05 - sys_35: -4.1499644963789655e-05 - sys_36: -2.6118171090673177e-05 - sys_37: 3.817598164194671e-05 - sys_38: -0.00010555994226455536 - sys_39: -0.0001875359345447311 - sys_40: 3.1875044628537535e-05 - sys_41: -5.228482459813645e-05 - sys_42: -2.5652107349112236e-05 - sys_43: -0.0001554411682048696 - sys_44: -5.8270751411580326e-05 - sys_45: -0.00020146611035755296 - sys_46: -6.20602118591317e-05 - sys_47: -4.714465896165653e-05 - sys_48: 0.0008159488079764539 - sys_49: -0.0037687289746036775 - sys_50: -0.003251413414299845 - sys_51: -0.0006138224132431326 - sys_52: 0.0006535156768812625 - sys_53: -0.00017138528974785966 - sys_54: -0.0007568106605238492 - sys_55: -0.0003960197253202313 + sys_0: -2.3623708728190546e-05 + sys_1: -0.00010876906699337702 + sys_2: 9.151279180348206e-06 + sys_3: 5.551935358794661e-05 + sys_4: 2.8444846070866478e-05 + sys_5: 3.986789519658044e-05 + sys_6: -4.844079091091976e-05 + sys_7: 4.729753274318068e-05 + sys_8: 4.1672873884147974e-06 + sys_9: 3.996944038730772e-05 + sys_10: -3.433741645677858e-05 + sys_11: 4.612160873474085e-05 + sys_12: -2.761459219162918e-05 + sys_13: 5.8835972342787336e-05 + sys_14: 6.980237794885908e-05 + sys_15: -2.381458230401356e-05 + sys_16: -5.1680519436975495e-05 + sys_17: 1.725845073219176e-05 + sys_18: -0.00010967456146205191 + sys_19: 4.583108235577271e-05 + sys_20: 5.48632290878771e-05 + sys_21: -2.5241308436592962e-05 + sys_22: 7.656423555870327e-05 + sys_23: -2.334774723849393e-07 + sys_24: 5.1185372387078425e-06 + sys_25: -1.7875169135334e-05 + sys_26: 1.952901577793033e-06 + sys_27: -1.171835943495391e-05 + sys_28: 4.512647379525341e-05 + sys_29: -1.2918838268791889e-05 + sys_30: 2.1790581155091725e-05 + sys_31: -9.699229020759949e-06 + sys_32: -3.573533140268563e-06 + sys_33: 1.0850972808664052e-05 + sys_34: -2.172224083436964e-05 + sys_35: 4.149964496378775e-05 + sys_36: 2.6118171090673512e-05 + sys_37: -3.8175981641945417e-05 + sys_38: 0.00010555994226455577 + sys_39: 0.00018753593454473206 + sys_40: -3.187504462854684e-05 + sys_41: 5.228482459813485e-05 + sys_42: 2.565210734910968e-05 + sys_43: -0.00015544116820487026 + sys_44: -5.8270751411587516e-05 + sys_45: -0.00020146611035755285 + sys_46: -6.206021185913475e-05 + sys_47: -4.714465896165617e-05 + sys_48: -0.0008159488079764945 + sys_49: -0.003768728974603645 + sys_50: -0.003251413414299916 + sys_51: -0.0006138224132431958 + sys_52: 0.0006535156768813012 + sys_53: -0.00017138528974785895 + sys_54: -0.0007568106605238623 + sys_55: -0.0003960197253202623 - lumi_ue: 0.00051 pol: 0.0006666 - sys_0: -2.7891533631211103e-05 + sys_0: -2.7891533631211266e-05 sys_1: -0.00012929392394763224 - sys_2: 1.0710338036597585e-05 - sys_3: 6.633442417451472e-05 - sys_4: 3.4239472998051285e-05 - sys_5: 4.9234981033219406e-05 - sys_6: -6.629538233407767e-05 - sys_7: 5.7463279954453515e-05 - sys_8: 5.004736189597114e-06 - sys_9: 5.028524821457818e-05 - sys_10: -4.448168816830629e-05 - sys_11: 6.04176153177944e-05 - sys_12: -4.418795065070969e-05 - sys_13: -7.930802555577232e-05 - sys_14: -9.783427388456295e-05 - sys_15: 3.586446598983385e-05 - sys_16: 7.719856733092553e-05 - sys_17: -2.5144087537258273e-05 - sys_18: 0.00016209748434545794 - sys_19: -7.670892373984414e-05 - sys_20: -7.985523616997614e-05 - sys_21: 4.6191785990580217e-05 - sys_22: -0.00016676158562573822 - sys_23: 8.248269473208837e-07 - sys_24: -5.934300341969075e-07 - sys_25: 6.361204083204847e-06 - sys_26: 1.4456966382386567e-06 - sys_27: 1.0883089244721279e-05 - sys_28: -3.9663450972861495e-05 - sys_29: 6.17367719439858e-07 - sys_30: -2.926259250151215e-05 - sys_31: 2.2199913350733643e-05 - sys_32: -1.5326353337645914e-05 - sys_33: -5.699433722654145e-06 - sys_34: 2.072447101162225e-05 - sys_35: -1.1935887724342429e-05 - sys_36: -1.0363457523734907e-05 - sys_37: 2.2362808902879826e-05 - sys_38: -6.807152741495429e-05 - sys_39: -0.0005023267867951444 - sys_40: 9.413004806849578e-05 - sys_41: -0.0001875280987847846 - sys_42: -7.223232117326485e-05 - sys_43: -0.0005060619730382572 - sys_44: -0.0005102890224235388 - sys_45: -0.005950058684181292 - sys_46: 0.0009089929208653699 - sys_47: 0.0001864585540345155 - sys_48: -0.00013470051519680213 - sys_49: 0.0003084119393042814 - sys_50: 2.806544644247525e-06 - sys_51: -5.2635658602937784e-05 - sys_52: 0.00010180453157592814 - sys_53: -4.08905366982533e-05 - sys_54: -0.00010560183967338339 - sys_55: -6.0370813926019315e-05 + sys_2: 1.0710338036597318e-05 + sys_3: 6.633442417451365e-05 + sys_4: 3.4239472998050566e-05 + sys_5: 4.923498103322085e-05 + sys_6: -6.629538233407716e-05 + sys_7: 5.7463279954453305e-05 + sys_8: 5.004736189596036e-06 + sys_9: 5.02852482145784e-05 + sys_10: -4.448168816830277e-05 + sys_11: 6.04176153177957e-05 + sys_12: -4.41879506507135e-05 + sys_13: 7.930802555576968e-05 + sys_14: 9.783427388456047e-05 + sys_15: -3.58644659898346e-05 + sys_16: -7.719856733092557e-05 + sys_17: 2.514408753725819e-05 + sys_18: -0.00016209748434546317 + sys_19: 7.67089237398455e-05 + sys_20: 7.985523616998218e-05 + sys_21: -4.619178599057625e-05 + sys_22: 0.00016676158562573855 + sys_23: 8.248269473218922e-07 + sys_24: 5.934300341964898e-07 + sys_25: -6.361204083204371e-06 + sys_26: -1.4456966382386906e-06 + sys_27: -1.088308924472088e-05 + sys_28: 3.9663450972863385e-05 + sys_29: -6.173677194427815e-07 + sys_30: 2.9262592501511557e-05 + sys_31: -2.2199913350734178e-05 + sys_32: 1.5326353337646e-05 + sys_33: 5.699433722653384e-06 + sys_34: -2.0724471011620857e-05 + sys_35: 1.1935887724340418e-05 + sys_36: 1.0363457523732718e-05 + sys_37: -2.236280890287778e-05 + sys_38: 6.80715274149479e-05 + sys_39: 0.0005023267867951351 + sys_40: -9.41300480685047e-05 + sys_41: 0.00018752809878477643 + sys_42: 7.223232117327516e-05 + sys_43: -0.0005060619730382406 + sys_44: -0.0005102890224236617 + sys_45: -0.005950058684181288 + sys_46: 0.0009089929208653002 + sys_47: 0.0001864585540345746 + sys_48: 0.00013470051519680633 + sys_49: 0.00030841193930427994 + sys_50: 2.8065446442519456e-06 + sys_51: -5.263565860293614e-05 + sys_52: 0.00010180453157592387 + sys_53: -4.089053669825346e-05 + sys_54: -0.00010560183967338022 + sys_55: -6.0370813926021314e-05 - lumi_ue: 0.00046 pol: 8.58e-05 - sys_0: -4.357971460073679e-05 - sys_1: -0.00018304764706878021 - sys_2: 1.5371848608579998e-05 - sys_3: 9.012983267993946e-05 - sys_4: 4.3890855414142794e-05 - sys_5: 6.68808543989035e-05 - sys_6: -8.422569644729892e-05 - sys_7: 7.397521730202983e-05 - sys_8: 4.828952326862123e-06 - sys_9: 7.287853181518576e-05 - sys_10: -6.282384008406249e-05 - sys_11: 8.209295520473048e-05 - sys_12: -5.447817718056682e-05 - sys_13: -0.00010161893459716706 - sys_14: -0.0001555883023684476 - sys_15: 5.751007973023297e-05 - sys_16: 0.00011905406822319385 - sys_17: -2.855236264568773e-05 - sys_18: 0.00023722893750587732 - sys_19: -0.0001317205153232664 - sys_20: -0.0001079199168920674 - sys_21: 8.042322528517536e-05 - sys_22: -0.0003414178878790099 - sys_23: 9.351263157407117e-07 - sys_24: 5.478907011456752e-07 - sys_25: 2.63009278628185e-06 - sys_26: 2.062882706948684e-06 - sys_27: 6.20513617008951e-06 - sys_28: -3.223768001083468e-05 - sys_29: -5.660079727225412e-06 - sys_30: -4.6341172032371396e-05 - sys_31: 4.1679642692182146e-05 - sys_32: -4.013454566335236e-05 - sys_33: -5.57611091309882e-06 - sys_34: 2.9640292766917535e-05 - sys_35: 1.5329566418350315e-05 - sys_36: -5.284580787111377e-06 - sys_37: 1.9359488037382993e-05 - sys_38: -8.31074704807926e-05 - sys_39: -0.0013246880028472796 - sys_40: 0.00019563173156684132 - sys_41: -0.0008137433361192427 - sys_42: -0.0002526756223152571 - sys_43: -0.006148358661351584 - sys_44: 0.00028937176921907707 - sys_45: 0.0006551565954433485 - sys_46: 0.00017905670394164838 - sys_47: 7.773787935271128e-05 - sys_48: -0.00011036105335213015 - sys_49: 0.0002289877377729446 - sys_50: 1.2965981438570454e-05 - sys_51: -5.5636065536088635e-05 - sys_52: 0.00012399929125871893 - sys_53: -2.4773837499833723e-05 - sys_54: -6.376119520339673e-05 - sys_55: -4.07135516556888e-05 + sys_0: -4.3579714600736505e-05 + sys_1: -0.00018304764706878 + sys_2: 1.537184860857725e-05 + sys_3: 9.012983267993861e-05 + sys_4: 4.3890855414141954e-05 + sys_5: 6.688085439890568e-05 + sys_6: -8.422569644729845e-05 + sys_7: 7.397521730202956e-05 + sys_8: 4.828952326860572e-06 + sys_9: 7.287853181518538e-05 + sys_10: -6.282384008406175e-05 + sys_11: 8.20929552047318e-05 + sys_12: -5.4478177180569555e-05 + sys_13: 0.00010161893459716087 + sys_14: 0.00015558830236844773 + sys_15: -5.75100797302332e-05 + sys_16: -0.00011905406822319519 + sys_17: 2.8552362645685075e-05 + sys_18: -0.0002372289375058786 + sys_19: 0.00013172051532326777 + sys_20: 0.0001079199168920625 + sys_21: -8.04232252851697e-05 + sys_22: 0.00034141788787900616 + sys_23: 9.351263157408112e-07 + sys_24: -5.478907011462794e-07 + sys_25: -2.630092786281817e-06 + sys_26: -2.062882706948884e-06 + sys_27: -6.205136170089866e-06 + sys_28: 3.223768001083565e-05 + sys_29: 5.660079727221708e-06 + sys_30: 4.6341172032370244e-05 + sys_31: -4.167964269218416e-05 + sys_32: 4.013454566335062e-05 + sys_33: 5.576110913095708e-06 + sys_34: -2.964029276691604e-05 + sys_35: -1.532956641835303e-05 + sys_36: 5.284580787109006e-06 + sys_37: -1.935948803738359e-05 + sys_38: 8.31074704807943e-05 + sys_39: 0.0013246880028472817 + sys_40: -0.00019563173156697292 + sys_41: 0.00081374333611928 + sys_42: 0.00025267562231517585 + sys_43: -0.006148358661351577 + sys_44: 0.00028937176921911074 + sys_45: 0.0006551565954433423 + sys_46: 0.00017905670394166226 + sys_47: 7.77378793527156e-05 + sys_48: 0.00011036105335213397 + sys_49: 0.00022898773777294427 + sys_50: 1.2965981438575961e-05 + sys_51: -5.563606553608756e-05 + sys_52: 0.00012399929125872045 + sys_53: -2.4773837499833655e-05 + sys_54: -6.376119520339386e-05 + sys_55: -4.071355165568995e-05 - lumi_ue: 0.00044 pol: 0.0003168 - sys_0: -6.558975593916512e-05 - sys_1: -0.0002741975059457175 - sys_2: 1.7925707941035928e-05 - sys_3: 0.0001429491872256803 - sys_4: 7.332560030772731e-05 - sys_5: 0.00010458413620829116 - sys_6: -0.00013969190757061027 - sys_7: 0.00012589635814142818 - sys_8: 6.170244340910283e-06 - sys_9: 0.00013612600657839823 - sys_10: -0.00010484319531473455 - sys_11: 0.00016264993380795545 - sys_12: -0.00011512573713771749 - sys_13: -0.00023713685034480755 - sys_14: -0.0004210333366614976 - sys_15: 0.0001864665996433193 - sys_16: 0.0005920693017631919 - sys_17: -0.00015192599600305972 - sys_18: 0.007916613466072833 - sys_19: 0.0015082467792499332 - sys_20: 0.00032805000705790627 - sys_21: -0.00047421468827241485 - sys_22: 0.00025109758877361275 - sys_23: 5.192678675302519e-07 - sys_24: 6.460150423080733e-07 - sys_25: 3.037369575072051e-07 - sys_26: 1.2699918448794705e-06 - sys_27: -1.160795634734146e-06 - sys_28: -1.3949665261721384e-05 - sys_29: -2.5856771184986075e-06 - sys_30: -2.7995140294592796e-05 - sys_31: 5.221225194167892e-05 - sys_32: -5.933976936451358e-05 - sys_33: -6.6236622852290446e-06 - sys_34: 3.598556642215005e-05 - sys_35: 4.955565185584831e-05 - sys_36: 3.5398087800130393e-06 - sys_37: 1.1961999671273325e-05 - sys_38: -5.735462589527588e-05 - sys_39: 0.0003611446888696711 - sys_40: -2.9255017234492096e-05 - sys_41: 0.00016428876410322856 - sys_42: 8.834914528765087e-06 - sys_43: 0.00010660480156959919 - sys_44: 3.233310598430856e-05 - sys_45: 9.165313034390438e-05 - sys_46: 3.7638687650889967e-05 - sys_47: 2.0302422812599866e-05 - sys_48: -4.053757200081875e-05 - sys_49: 8.414933803687042e-05 - sys_50: 5.86082530168522e-06 - sys_51: -3.207603010242334e-05 - sys_52: 8.820024348764762e-05 - sys_53: 2.350843043093833e-05 - sys_54: -3.1582293214310013e-06 - sys_55: -1.3847763145136433e-05 + sys_0: -6.558975593916475e-05 + sys_1: -0.00027419750594571805 + sys_2: 1.7925707941032374e-05 + sys_3: 0.0001429491872256793 + sys_4: 7.332560030772701e-05 + sys_5: 0.00010458413620829154 + sys_6: -0.00013969190757061103 + sys_7: 0.00012589635814142674 + sys_8: 6.170244340908736e-06 + sys_9: 0.00013612600657839606 + sys_10: -0.00010484319531473604 + sys_11: 0.0001626499338079653 + sys_12: -0.00011512573713771586 + sys_13: 0.0002371368503448036 + sys_14: 0.0004210333366614991 + sys_15: -0.00018646659964331134 + sys_16: -0.0005920693017631945 + sys_17: 0.00015192599600301934 + sys_18: -0.007916613466072829 + sys_19: -0.0015082467792499523 + sys_20: -0.0003280500070578817 + sys_21: 0.00047421468827239533 + sys_22: -0.00025109758877362196 + sys_23: 5.192678675308633e-07 + sys_24: -6.46015042308576e-07 + sys_25: -3.037369575071267e-07 + sys_26: -1.2699918448797966e-06 + sys_27: 1.160795634734256e-06 + sys_28: 1.394966526172249e-05 + sys_29: 2.585677118497177e-06 + sys_30: 2.799514029459209e-05 + sys_31: -5.221225194167945e-05 + sys_32: 5.933976936451208e-05 + sys_33: 6.623662285229615e-06 + sys_34: -3.59855664221483e-05 + sys_35: -4.955565185585112e-05 + sys_36: -3.5398087800133146e-06 + sys_37: -1.196199967127232e-05 + sys_38: 5.735462589527471e-05 + sys_39: -0.00036114468886967326 + sys_40: 2.92550172345161e-05 + sys_41: -0.00016428876410322835 + sys_42: -8.834914528756174e-06 + sys_43: 0.00010660480156959896 + sys_44: 3.233310598431343e-05 + sys_45: 9.165313034390685e-05 + sys_46: 3.763868765089263e-05 + sys_47: 2.030242281260001e-05 + sys_48: 4.053757200081806e-05 + sys_49: 8.414933803686999e-05 + sys_50: 5.860825301686919e-06 + sys_51: -3.2076030102419e-05 + sys_52: 8.820024348764734e-05 + sys_53: 2.3508430430937785e-05 + sys_54: -3.1582293214321525e-06 + sys_55: -1.384776314513629e-05 - lumi_ue: 0.00037 pol: 0.0003432 - sys_0: -7.885312401191409e-05 - sys_1: -0.00034958509985167377 - sys_2: 1.2602083202076646e-05 - sys_3: 0.00017924210257796107 - sys_4: 0.00010062620096050093 - sys_5: 0.00016088102901352024 - sys_6: -0.00020845096268411198 - sys_7: 0.00020664874402074907 - sys_8: 1.1790024274248009e-05 - sys_9: 0.00032460845267279215 - sys_10: -9.811568696775363e-05 - sys_11: 0.0004463794730115405 - sys_12: -0.00035256149730954797 - sys_13: -0.010752373556972545 - sys_14: 0.000965494823312216 - sys_15: -0.0004691344017381623 - sys_16: -0.00016083815136830993 - sys_17: 2.638919945631053e-05 - sys_18: -0.00018213025100169948 - sys_19: 4.339852857602859e-05 - sys_20: -0.00013786536039800369 - sys_21: -8.753145462480257e-05 - sys_22: 7.221752465361372e-05 - sys_23: 2.6921771619806113e-07 - sys_24: 3.4808248149948625e-07 - sys_25: -2.4822132478235777e-07 - sys_26: 4.7381772695788177e-07 - sys_27: -2.913070774636984e-06 - sys_28: -5.0845961997344105e-06 - sys_29: -7.773355512832876e-07 - sys_30: -1.045210215457081e-05 - sys_31: 2.561579510835711e-05 - sys_32: -7.58887061089544e-05 - sys_33: -7.1243895246230694e-06 - sys_34: 4.3433597459609044e-05 - sys_35: 8.492010024822946e-05 - sys_36: 1.2242234548942304e-05 - sys_37: 4.350345122766299e-06 - sys_38: -3.583640208617535e-05 - sys_39: 0.00013300930324833696 - sys_40: -7.920736959226624e-06 - sys_41: 8.17729454329053e-05 - sys_42: -5.603718482901359e-06 - sys_43: 2.4562893112120378e-05 - sys_44: 8.059639653474077e-06 - sys_45: 2.9555733803098208e-05 - sys_46: 1.0150009055520798e-05 - sys_47: 5.013883247979064e-06 - sys_48: -1.163081934307158e-05 - sys_49: 2.171284087777695e-05 - sys_50: 2.0028986635551135e-06 - sys_51: -7.256455326087037e-06 - sys_52: 6.356380600426073e-05 - sys_53: 9.474819131895561e-05 - sys_54: 4.597873930350965e-05 - sys_55: -4.878471626361834e-06 + sys_0: -7.885312401191474e-05 + sys_1: -0.0003495850998516732 + sys_2: 1.2602083202072785e-05 + sys_3: 0.0001792421025779591 + sys_4: 0.00010062620096050389 + sys_5: 0.00016088102901351902 + sys_6: -0.00020845096268410984 + sys_7: 0.00020664874402074733 + sys_8: 1.1790024274249825e-05 + sys_9: 0.0003246084526728007 + sys_10: -9.811568696774639e-05 + sys_11: 0.00044637947301154465 + sys_12: -0.0003525614973095788 + sys_13: 0.010752373556972552 + sys_14: -0.0009654948233122244 + sys_15: 0.0004691344017381502 + sys_16: 0.00016083815136831207 + sys_17: -2.638919945630773e-05 + sys_18: 0.000182130251001699 + sys_19: -4.339852857602376e-05 + sys_20: 0.00013786536039800157 + sys_21: 8.753145462480667e-05 + sys_22: -7.22175246536132e-05 + sys_23: 2.6921771619865665e-07 + sys_24: -3.4808248150004355e-07 + sys_25: 2.482213247828298e-07 + sys_26: -4.7381772695764375e-07 + sys_27: 2.9130707746364692e-06 + sys_28: 5.084596199734529e-06 + sys_29: 7.773355512829216e-07 + sys_30: 1.0452102154570162e-05 + sys_31: -2.5615795108357312e-05 + sys_32: 7.588870610895409e-05 + sys_33: 7.124389524623082e-06 + sys_34: -4.343359745960556e-05 + sys_35: -8.492010024823195e-05 + sys_36: -1.2242234548942557e-05 + sys_37: -4.350345122766119e-06 + sys_38: 3.583640208617523e-05 + sys_39: -0.00013300930324833488 + sys_40: 7.920736959237036e-06 + sys_41: -8.177294543290449e-05 + sys_42: 5.6037184829045365e-06 + sys_43: 2.456289311211907e-05 + sys_44: 8.059639653475102e-06 + sys_45: 2.955573380309824e-05 + sys_46: 1.0150009055520595e-05 + sys_47: 5.013883247978783e-06 + sys_48: 1.1630819343071646e-05 + sys_49: 2.1712840877776783e-05 + sys_50: 2.0028986635555476e-06 + sys_51: -7.256455326087075e-06 + sys_52: 6.356380600426195e-05 + sys_53: 9.474819131895574e-05 + sys_54: 4.597873930350705e-05 + sys_55: -4.878471626359776e-06 - lumi_ue: 0.00037 pol: 0.0023958 - sys_0: -0.00016128496600766496 - sys_1: -0.0008665316675798469 - sys_2: 3.41671150818469e-05 - sys_3: 0.0004888399468426547 - sys_4: 0.0003587391644981901 - sys_5: 0.0008710436434961518 - sys_6: -0.0020393671380570743 - sys_7: 0.01657318279963714 - sys_8: -0.0003272621332719397 - sys_9: -0.0013008686270556504 - sys_10: -0.00017663104925685826 - sys_11: -0.0003350154322819952 - sys_12: 0.00018806648383499531 - sys_13: 0.00018344274632430688 - sys_14: 0.00019999676839253648 - sys_15: -0.00014024838990905314 - sys_16: -5.058125727302465e-05 - sys_17: 1.1328402855143124e-05 - sys_18: -6.290859116187327e-05 - sys_19: -4.381339188079546e-06 - sys_20: -0.00018682353390755404 - sys_21: -7.797662404898313e-05 - sys_22: 3.99498744399607e-05 - sys_23: 4.3494970736592534e-08 - sys_24: 2.234480585389105e-07 - sys_25: -4.302008678581676e-07 - sys_26: 1.1039055226021833e-07 - sys_27: -3.1983150203516455e-06 - sys_28: -1.4590873570945874e-06 - sys_29: 2.0878075469903433e-08 - sys_30: -1.992088683663357e-06 - sys_31: 5.0203583153153494e-06 - sys_32: -2.3421783741994973e-05 - sys_33: -9.025178934615913e-06 - sys_34: 4.2335792137158006e-05 - sys_35: 8.289782073710602e-05 - sys_36: 9.744460777358795e-06 - sys_37: 3.6232481611322447e-06 - sys_38: -2.418408063129908e-05 - sys_39: 7.355571483698593e-05 - sys_40: -5.239095749914436e-06 - sys_41: 4.34537298705802e-05 - sys_42: -2.8262819553516286e-06 - sys_43: 1.1214076775988322e-05 - sys_44: 6.044502073620967e-06 - sys_45: 1.3205074553314394e-05 - sys_46: 6.682743656005294e-06 - sys_47: 2.301466092029081e-06 - sys_48: -1.6933593116356689e-06 - sys_49: 5.908634843708989e-06 - sys_50: 4.719193782923559e-07 - sys_51: -1.987798644157024e-06 - sys_52: 4.5521097068499716e-05 - sys_53: 0.00011224136455724005 - sys_54: 5.451735887218823e-05 - sys_55: -1.2886999446169458e-06 + sys_0: -0.0001612849660076655 + sys_1: -0.0008665316675798474 + sys_2: 3.416711508184392e-05 + sys_3: 0.0004888399468426496 + sys_4: 0.0003587391644981978 + sys_5: 0.0008710436434961846 + sys_6: -0.0020393671380570617 + sys_7: 0.016573182799637154 + sys_8: -0.00032726213327188093 + sys_9: -0.001300868627055701 + sys_10: -0.00017663104925685967 + sys_11: -0.00033501543228199034 + sys_12: 0.00018806648383498884 + sys_13: -0.0001834427463242982 + sys_14: -0.0001999967683925319 + sys_15: 0.00014024838990904978 + sys_16: 5.058125727302434e-05 + sys_17: -1.1328402855140998e-05 + sys_18: 6.290859116187262e-05 + sys_19: 4.3813391880857e-06 + sys_20: 0.00018682353390755014 + sys_21: 7.797662404899037e-05 + sys_22: -3.99498744399612e-05 + sys_23: 4.349497073666674e-08 + sys_24: -2.2344805853900693e-07 + sys_25: 4.30200867858108e-07 + sys_26: -1.1039055226012914e-07 + sys_27: 3.1983150203514875e-06 + sys_28: 1.4590873570945042e-06 + sys_29: -2.0878075469905623e-08 + sys_30: 1.9920886836629427e-06 + sys_31: -5.020358315315493e-06 + sys_32: 2.342178374199507e-05 + sys_33: 9.025178934615886e-06 + sys_34: -4.233579213715466e-05 + sys_35: -8.289782073710824e-05 + sys_36: -9.744460777358435e-06 + sys_37: -3.6232481611323603e-06 + sys_38: 2.418408063129969e-05 + sys_39: -7.355571483698592e-05 + sys_40: 5.239095749920192e-06 + sys_41: -4.345372987058008e-05 + sys_42: 2.826281955353066e-06 + sys_43: 1.1214076775988116e-05 + sys_44: 6.044502073621258e-06 + sys_45: 1.3205074553313845e-05 + sys_46: 6.682743656005749e-06 + sys_47: 2.3014660920290026e-06 + sys_48: 1.693359311636284e-06 + sys_49: 5.9086348437095315e-06 + sys_50: 4.7191937829183596e-07 + sys_51: -1.9877986441581995e-06 + sys_52: 4.552109706850092e-05 + sys_53: 0.00011224136455724019 + sys_54: 5.45173588721848e-05 + sys_55: -1.2886999446148365e-06 - lumi_ue: 0.00031 pol: 0.0014388 - sys_0: -0.0005272695142887919 - sys_1: -0.005731980469885267 - sys_2: 0.00026459620780513353 - sys_3: 0.02596692873227919 - sys_4: -0.0033439045280976064 - sys_5: -0.0006138007127057666 - sys_6: 0.0005559764499049813 - sys_7: -0.0003827184020584507 - sys_8: -1.941625219339778e-05 - sys_9: -0.0005101171696032952 - sys_10: -0.00029141834509494296 - sys_11: -0.00017223388028827347 - sys_12: 9.777490236761362e-05 - sys_13: 0.00010492270079568354 - sys_14: 0.00013325013980530133 - sys_15: -9.190409894446865e-05 - sys_16: -3.744089537717368e-05 - sys_17: 6.370971440391417e-06 - sys_18: -3.7414764890344135e-05 - sys_19: -1.890885377563217e-05 - sys_20: -0.0002186194357567714 - sys_21: -8.15209442347594e-05 - sys_22: 3.217818200662517e-05 - sys_23: -3.313569426780107e-08 - sys_24: 1.5050636763060819e-07 - sys_25: -3.6974286631733983e-07 - sys_26: -8.433420777058071e-08 - sys_27: -3.045949120475441e-06 - sys_28: -5.012127127015689e-07 - sys_29: 1.698895903068454e-07 - sys_30: 2.0518632286018634e-07 - sys_31: -9.440268320475954e-07 - sys_32: -2.9050124049808847e-06 - sys_33: -4.979941239923405e-06 - sys_34: 1.5188093711897291e-05 - sys_35: 1.7864079865429385e-05 - sys_36: -3.47925184591572e-06 - sys_37: 6.292547295993538e-06 - sys_38: -2.0532860667767702e-05 - sys_39: 5.642091881810538e-05 - sys_40: -3.18085093238913e-06 - sys_41: 2.21849379780013e-05 - sys_42: 1.280307130991647e-06 - sys_43: 9.696158481974046e-06 - sys_44: 6.828633656818436e-06 - sys_45: 9.621909518221789e-06 - sys_46: 8.211077321872226e-06 - sys_47: 4.522588630807568e-06 - sys_48: -2.4338542460818716e-06 - sys_49: 2.5614497431731453e-06 - sys_50: -2.851921557332187e-07 - sys_51: 3.462668505870031e-07 - sys_52: 3.3948045387218256e-05 - sys_53: 0.00010743765255831472 - sys_54: 5.040516348405297e-05 - sys_55: -2.3407043539685785e-07 + sys_0: -0.0005272695142887969 + sys_1: -0.005731980469885307 + sys_2: 0.00026459620780495155 + sys_3: 0.025966928732279196 + sys_4: -0.0033439045280975253 + sys_5: -0.0006138007127057732 + sys_6: 0.000555976449904973 + sys_7: -0.0003827184020584523 + sys_8: -1.9416252193400445e-05 + sys_9: -0.000510117169603294 + sys_10: -0.00029141834509494404 + sys_11: -0.00017223388028827127 + sys_12: 9.777490236761359e-05 + sys_13: -0.000104922700795684 + sys_14: -0.0001332501398053027 + sys_15: 9.190409894446753e-05 + sys_16: 3.74408953771737e-05 + sys_17: -6.370971440391245e-06 + sys_18: 3.741476489034395e-05 + sys_19: 1.8908853775638904e-05 + sys_20: 0.00021861943575676685 + sys_21: 8.152094423476838e-05 + sys_22: -3.217818200662539e-05 + sys_23: -3.3135694267781083e-08 + sys_24: -1.5050636763076311e-07 + sys_25: 3.697428663173155e-07 + sys_26: 8.433420777039174e-08 + sys_27: 3.045949120475478e-06 + sys_28: 5.012127127015611e-07 + sys_29: -1.6988959030669413e-07 + sys_30: -2.051863228602533e-07 + sys_31: 9.44026832047487e-07 + sys_32: 2.9050124049808724e-06 + sys_33: 4.979941239923255e-06 + sys_34: -1.5188093711896617e-05 + sys_35: -1.7864079865430455e-05 + sys_36: 3.4792518459157777e-06 + sys_37: -6.292547295993531e-06 + sys_38: 2.0532860667767635e-05 + sys_39: -5.6420918818105406e-05 + sys_40: 3.180850932392495e-06 + sys_41: -2.2184937978000978e-05 + sys_42: -1.2803071309906214e-06 + sys_43: 9.696158481974124e-06 + sys_44: 6.828633656818925e-06 + sys_45: 9.62190951822144e-06 + sys_46: 8.21107732187218e-06 + sys_47: 4.522588630807489e-06 + sys_48: 2.4338542460816577e-06 + sys_49: 2.5614497431733193e-06 + sys_50: -2.851921557336855e-07 + sys_51: 3.462668505864587e-07 + sys_52: 3.394804538721935e-05 + sys_53: 0.00010743765255831543 + sys_54: 5.04051634840498e-05 + sys_55: -2.340704353948693e-07 diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_2JET_510GEV/uncertainties_B.yaml b/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_2JET_510GEV/uncertainties_B.yaml index 0f56358218..d7e800589a 100644 --- a/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_2JET_510GEV/uncertainties_B.yaml +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_2JET_510GEV/uncertainties_B.yaml @@ -234,639 +234,639 @@ definitions: bins: - lumi_ue: 0.0004 pol: 0.0001518 - sys_0: -1.2127084455855676e-05 - sys_1: -5.957664999508456e-05 - sys_2: 2.7792835983556266e-06 - sys_3: 3.089930002646262e-05 - sys_4: 1.9478658111803377e-05 - sys_5: 2.277245938955261e-05 - sys_6: -2.6276511959514147e-05 - sys_7: 1.7725753879980015e-05 - sys_8: 5.269626359180479e-06 - sys_9: 2.5996516360252773e-05 - sys_10: -1.8206325716033787e-05 - sys_11: 2.25014763924241e-05 - sys_12: -1.3210037767774916e-05 - sys_13: -2.591048230500817e-05 - sys_14: -3.7546158791541625e-05 - sys_15: 1.806661364784346e-05 - sys_16: 2.352014494126754e-05 - sys_17: -9.502132380287067e-06 - sys_18: 3.712929688421318e-05 - sys_19: -3.089036298191876e-05 - sys_20: -3.3724324884334954e-05 - sys_21: 1.0465883945832142e-05 - sys_22: -4.291257109250796e-05 - sys_23: -1.5331325141184897e-05 - sys_24: -6.315758080066208e-06 - sys_25: -2.8463421287935103e-06 - sys_26: -7.460887848427138e-06 - sys_27: -1.5651504153223275e-05 - sys_28: -5.71848031458718e-06 - sys_29: 9.133326565330377e-07 - sys_30: 1.4994537085636773e-06 - sys_31: -4.240110513604957e-06 - sys_32: 5.894847018667872e-06 - sys_33: -1.6798067624589292e-05 - sys_34: 1.9064850988998743e-05 - sys_35: -1.81033222345089e-05 - sys_36: -6.821270567142943e-05 - sys_37: 3.1697704784224354e-05 - sys_38: -8.599594220593082e-05 - sys_39: -0.0001062875808803047 - sys_40: 2.740073110056892e-06 - sys_41: -3.9015022169845636e-05 - sys_42: 1.5407009463274112e-06 - sys_43: -2.6284393163539713e-05 - sys_44: -1.691897548775109e-05 - sys_45: -4.5398276142423945e-05 - sys_46: -5.175067844776848e-05 - sys_47: -2.4722066585768442e-05 - sys_48: 0.005142478599469914 - sys_49: 0.0011982799339871476 - sys_50: 5.201212773248915e-05 - sys_51: -0.00025889331456843185 - sys_52: 0.00025954366401053784 - sys_53: -0.0001900451217080789 - sys_54: -0.000158292932767926 - sys_55: -1.2908291549700766e-05 + sys_0: -1.2127084455854705e-05 + sys_1: -5.9576649995082626e-05 + sys_2: 2.779283598355147e-06 + sys_3: 3.089930002645901e-05 + sys_4: 1.947865811179961e-05 + sys_5: 2.2772459389557314e-05 + sys_6: -2.627651195951455e-05 + sys_7: 1.7725753879975665e-05 + sys_8: 5.269626359179122e-06 + sys_9: 2.5996516360248904e-05 + sys_10: -1.8206325716032404e-05 + sys_11: 2.2501476392419223e-05 + sys_12: -1.321003776777237e-05 + sys_13: 2.5910482305002395e-05 + sys_14: 3.75461587915384e-05 + sys_15: -1.8066613647836724e-05 + sys_16: -2.3520144941263705e-05 + sys_17: 9.502132380282752e-06 + sys_18: -3.712929688421793e-05 + sys_19: 3.0890362981923026e-05 + sys_20: 3.3724324884335476e-05 + sys_21: -1.0465883945832855e-05 + sys_22: 4.291257109250977e-05 + sys_23: -1.5331325141184155e-05 + sys_24: 6.315758080066536e-06 + sys_25: 2.8463421287959023e-06 + sys_26: 7.460887848428558e-06 + sys_27: 1.565150415322416e-05 + sys_28: 5.718480314587078e-06 + sys_29: -9.133326565340668e-07 + sys_30: -1.4994537085638042e-06 + sys_31: 4.240110513605544e-06 + sys_32: -5.894847018666193e-06 + sys_33: 1.679806762458882e-05 + sys_34: -1.9064850989000007e-05 + sys_35: 1.8103322234506208e-05 + sys_36: 6.821270567143097e-05 + sys_37: -3.1697704784225153e-05 + sys_38: 8.599594220593402e-05 + sys_39: 0.0001062875808803101 + sys_40: -2.7400731100606475e-06 + sys_41: 3.901502216984652e-05 + sys_42: -1.5407009463262773e-06 + sys_43: -2.6284393163545612e-05 + sys_44: -1.691897548775209e-05 + sys_45: -4.539827614242924e-05 + sys_46: -5.175067844777085e-05 + sys_47: -2.4722066585758837e-05 + sys_48: -0.005142478599469912 + sys_49: 0.00119827993398721 + sys_50: 5.2012127732494404e-05 + sys_51: -0.0002588933145683978 + sys_52: 0.000259543664010537 + sys_53: -0.0001900451217080864 + sys_54: -0.0001582929327679079 + sys_55: -1.2908291549693671e-05 - lumi_ue: 0.00063 pol: 0.0002706 - sys_0: -2.0018111992396568e-05 - sys_1: -7.951557999445195e-05 - sys_2: 3.71637146663128e-06 - sys_3: 4.0781934789010414e-05 - sys_4: 2.2061117285197194e-05 - sys_5: 2.6406968132590152e-05 - sys_6: -3.511109801850549e-05 - sys_7: 2.6892759289451415e-05 - sys_8: 2.8591049401961313e-06 - sys_9: 3.249248496702468e-05 - sys_10: -2.6312495806486905e-05 - sys_11: 3.210170115378651e-05 - sys_12: -1.943795024417797e-05 - sys_13: -2.68449445858172e-05 - sys_14: -5.016842353168915e-05 - sys_15: 2.622207860440507e-05 - sys_16: 2.812794587107477e-05 - sys_17: -9.071065415520804e-06 - sys_18: 3.565282359991719e-05 - sys_19: -2.947333846291381e-05 - sys_20: -2.90313274831927e-05 - sys_21: 1.4950911547980001e-05 - sys_22: -3.4602653022678356e-05 - sys_23: -2.165498489724073e-05 - sys_24: -3.161125891096009e-05 - sys_25: 2.2293798296056834e-05 - sys_26: -1.520010050833814e-05 - sys_27: -3.1574965564850344e-05 - sys_28: -9.044139551416337e-06 - sys_29: 1.3981981745848449e-05 - sys_30: 9.573451542616767e-06 - sys_31: -1.634368943778136e-05 - sys_32: 3.1874896905736055e-05 - sys_33: -0.0002768288826563623 - sys_34: 0.0005756599200745192 - sys_35: -0.0008596928538691271 - sys_36: 0.0034210491945004112 - sys_37: -0.00018774366519766437 - sys_38: 0.0003127844396941321 - sys_39: -7.875943235513845e-05 - sys_40: 2.3164931290539002e-06 - sys_41: -3.566562505146244e-05 - sys_42: -4.359575943831004e-06 - sys_43: -8.325540593207647e-06 - sys_44: -1.4062047357209339e-05 - sys_45: -1.7399139274065185e-05 - sys_46: -2.079951826116592e-05 - sys_47: -1.2749744291478302e-05 - sys_48: 0.00010646905941216662 - sys_49: -3.465834276504506e-05 - sys_50: -8.341589342791208e-06 - sys_51: 5.182377174100396e-05 - sys_52: -7.670343470468059e-05 - sys_53: 7.15069710587334e-05 - sys_54: 5.0093170217805884e-05 - sys_55: 5.932888540143401e-06 + sys_0: -2.0018111992396643e-05 + sys_1: -7.951557999445108e-05 + sys_2: 3.7163714666309537e-06 + sys_3: 4.0781934789008544e-05 + sys_4: 2.2061117285197387e-05 + sys_5: 2.6406968132591267e-05 + sys_6: -3.5111098018506834e-05 + sys_7: 2.6892759289448718e-05 + sys_8: 2.8591049401967645e-06 + sys_9: 3.2492484967022866e-05 + sys_10: -2.6312495806481257e-05 + sys_11: 3.2101701153790074e-05 + sys_12: -1.943795024417533e-05 + sys_13: 2.684494458581381e-05 + sys_14: 5.016842353168606e-05 + sys_15: -2.622207860440853e-05 + sys_16: -2.812794587107436e-05 + sys_17: 9.071065415519903e-06 + sys_18: -3.5652823599917415e-05 + sys_19: 2.9473338462914973e-05 + sys_20: 2.903132748319728e-05 + sys_21: -1.4950911547983121e-05 + sys_22: 3.460265302267149e-05 + sys_23: -2.1654984897236243e-05 + sys_24: 3.161125891095996e-05 + sys_25: -2.2293798296049942e-05 + sys_26: 1.5200100508343681e-05 + sys_27: 3.1574965564851374e-05 + sys_28: 9.044139551418607e-06 + sys_29: -1.3981981745850238e-05 + sys_30: -9.573451542618867e-06 + sys_31: 1.6343689437780285e-05 + sys_32: -3.187489690573438e-05 + sys_33: 0.00027682888265635893 + sys_34: -0.0005756599200745778 + sys_35: 0.0008596928538691195 + sys_36: -0.0034210491945004043 + sys_37: 0.00018774366519766752 + sys_38: -0.00031278443969413286 + sys_39: 7.875943235513586e-05 + sys_40: -2.3164931290472858e-06 + sys_41: 3.566562505145882e-05 + sys_42: 4.359575943826743e-06 + sys_43: -8.32554059321299e-06 + sys_44: -1.4062047357203159e-05 + sys_45: -1.7399139274059398e-05 + sys_46: -2.079951826116602e-05 + sys_47: -1.2749744291476486e-05 + sys_48: -0.00010646905941217005 + sys_49: -3.465834276504503e-05 + sys_50: -8.341589342795909e-06 + sys_51: 5.1823771741001875e-05 + sys_52: -7.670343470468162e-05 + sys_53: 7.150697105873473e-05 + sys_54: 5.0093170217806e-05 + sys_55: 5.932888540145104e-06 - lumi_ue: 0.00041 pol: 0.0001056 - sys_0: -2.2181341053520078e-05 - sys_1: -9.612587642809677e-05 - sys_2: 5.596961930973682e-06 - sys_3: 4.739659387857984e-05 - sys_4: 2.7059498076348584e-05 - sys_5: 3.068402087386519e-05 - sys_6: -4.130223640461054e-05 - sys_7: 3.2389797303754585e-05 - sys_8: 2.2478946479902407e-06 - sys_9: 3.57067589851148e-05 - sys_10: -2.966100666689447e-05 - sys_11: 3.4964198563011166e-05 - sys_12: -2.2684805015223578e-05 - sys_13: -3.032608154689991e-05 - sys_14: -5.5233879079372146e-05 - sys_15: 2.2270607804600217e-05 - sys_16: 3.2515290246672375e-05 - sys_17: -7.756071707945256e-06 - sys_18: 4.2651447666987744e-05 - sys_19: -3.047839498620652e-05 - sys_20: -3.367839147235488e-05 - sys_21: 1.7381576302533522e-05 - sys_22: -3.532169362346268e-05 - sys_23: -1.1436595872990834e-05 - sys_24: -3.451208089838448e-05 - sys_25: 4.8459105804879416e-05 - sys_26: -1.451137030442272e-05 - sys_27: -2.1758173318396983e-06 - sys_28: -6.438201666149367e-05 - sys_29: 4.81632257425145e-05 - sys_30: 1.026541711689696e-05 - sys_31: -3.090118111584637e-05 - sys_32: 5.852609408234765e-05 - sys_33: 0.0031746781946461254 - sys_34: -0.0005850670630773213 - sys_35: 0.000423861500550018 - sys_36: 0.0005022848370662626 - sys_37: -0.00010810866931990289 - sys_38: 0.00019963943653497661 - sys_39: -7.89887339967635e-05 - sys_40: 3.0726522556663133e-06 - sys_41: -2.867580196827301e-05 - sys_42: -8.878358414157323e-06 - sys_43: -1.3588075368749703e-05 - sys_44: -1.4764568562391291e-05 - sys_45: -2.430769419049986e-05 - sys_46: -2.652699038064021e-05 - sys_47: -1.3266742417155449e-05 - sys_48: 7.192681181811588e-05 - sys_49: -4.5559589444234784e-05 - sys_50: -1.1910030940676182e-05 - sys_51: 4.6695810470530483e-05 - sys_52: -5.78944256300869e-05 - sys_53: 6.762506176550286e-05 - sys_54: 5.4002058232486205e-05 - sys_55: 2.3163622124108964e-07 + sys_0: -2.218134105352023e-05 + sys_1: -9.612587642809682e-05 + sys_2: 5.5969619309732355e-06 + sys_3: 4.739659387857837e-05 + sys_4: 2.705949807634787e-05 + sys_5: 3.068402087386578e-05 + sys_6: -4.130223640461112e-05 + sys_7: 3.238979730375349e-05 + sys_8: 2.2478946479910386e-06 + sys_9: 3.5706758985113684e-05 + sys_10: -2.9661006666890407e-05 + sys_11: 3.496419856301292e-05 + sys_12: -2.2684805015222734e-05 + sys_13: 3.0326081546896918e-05 + sys_14: 5.523387907937131e-05 + sys_15: -2.2270607804599577e-05 + sys_16: -3.251529024667263e-05 + sys_17: 7.756071707943641e-06 + sys_18: -4.265144766699116e-05 + sys_19: 3.0478394986210188e-05 + sys_20: 3.3678391472354646e-05 + sys_21: -1.7381576302531042e-05 + sys_22: 3.532169362347043e-05 + sys_23: -1.1436595872983795e-05 + sys_24: 3.451208089838549e-05 + sys_25: -4.8459105804871264e-05 + sys_26: 1.4511370304429305e-05 + sys_27: 2.1758173318455895e-06 + sys_28: 6.438201666150141e-05 + sys_29: -4.816322574251624e-05 + sys_30: -1.0265417116899815e-05 + sys_31: 3.090118111584992e-05 + sys_32: -5.852609408234706e-05 + sys_33: -0.0031746781946461163 + sys_34: 0.0005850670630774023 + sys_35: -0.0004238615005499892 + sys_36: -0.0005022848370662748 + sys_37: 0.0001081086693199001 + sys_38: -0.00019963943653497819 + sys_39: 7.898873399676587e-05 + sys_40: -3.0726522556604366e-06 + sys_41: 2.8675801968275285e-05 + sys_42: 8.878358414156104e-06 + sys_43: -1.3588075368745881e-05 + sys_44: -1.4764568562390094e-05 + sys_45: -2.4307694190496244e-05 + sys_46: -2.6526990380639217e-05 + sys_47: -1.3266742417151481e-05 + sys_48: -7.19268118181175e-05 + sys_49: -4.555958944423133e-05 + sys_50: -1.1910030940679145e-05 + sys_51: 4.6695810470528925e-05 + sys_52: -5.7894425630085896e-05 + sys_53: 6.762506176550556e-05 + sys_54: 5.4002058232487065e-05 + sys_55: 2.3163622124361968e-07 - lumi_ue: 0.00043 pol: 0.0001914 - sys_0: -2.6868134268552403e-05 - sys_1: -0.00012028914346191802 - sys_2: 7.104362544365643e-06 - sys_3: 6.005944609656143e-05 - sys_4: 3.2202842669187874e-05 - sys_5: 4.255272440013024e-05 - sys_6: -5.242060715054587e-05 - sys_7: 3.874024759842747e-05 - sys_8: 5.651489102001908e-06 - sys_9: 4.499377951629146e-05 - sys_10: -3.647595786466872e-05 - sys_11: 4.703790680895871e-05 - sys_12: -2.9218917082870697e-05 - sys_13: -3.915490070408165e-05 - sys_14: -6.8611286546156e-05 - sys_15: 2.819727236317753e-05 - sys_16: 4.355584248247412e-05 - sys_17: -1.1942109059400406e-05 - sys_18: 5.5373305687680796e-05 - sys_19: -4.21949072312314e-05 - sys_20: -3.857592157925405e-05 - sys_21: 2.419695428508549e-05 - sys_22: -5.037347553133987e-05 - sys_23: -1.4272288300842538e-06 - sys_24: -1.5448479209795606e-05 - sys_25: 4.818261018831919e-05 - sys_26: -7.111709115159103e-06 - sys_27: 2.3536831213550473e-05 - sys_28: -0.00010835784626834168 - sys_29: 3.5503885241176846e-05 - sys_30: -4.655622478312385e-05 - sys_31: 1.2060283887611337e-05 - sys_32: 3.925130884772436e-05 - sys_33: -0.0007954945660321247 - sys_34: -0.0029953753483943435 - sys_35: 0.0011396733695416372 - sys_36: 0.0007650822467188183 - sys_37: -0.00016076248727933172 - sys_38: 0.0002860087548112817 - sys_39: -0.00010589546167657479 - sys_40: 3.873692538933127e-06 - sys_41: -3.614409195573011e-05 - sys_42: -1.097488899072661e-05 - sys_43: -2.1070028755499524e-05 - sys_44: -2.1395050833656523e-05 - sys_45: -3.594466245406019e-05 - sys_46: -3.309615433165035e-05 - sys_47: -2.146679763154302e-05 - sys_48: 8.62381197520356e-05 - sys_49: -6.443141716152016e-05 - sys_50: -2.1180285778780408e-05 - sys_51: 5.9819532493803565e-05 - sys_52: -8.670694161447391e-05 - sys_53: 8.99192514784058e-05 - sys_54: 6.681785106569744e-05 - sys_55: 4.4476088388437e-06 + sys_0: -2.686813426855253e-05 + sys_1: -0.00012028914346191781 + sys_2: 7.1043625443647745e-06 + sys_3: 6.00594460965607e-05 + sys_4: 3.22028426691876e-05 + sys_5: 4.255272440013109e-05 + sys_6: -5.242060715054576e-05 + sys_7: 3.874024759842708e-05 + sys_8: 5.651489102002214e-06 + sys_9: 4.4993779516290385e-05 + sys_10: -3.647595786466625e-05 + sys_11: 4.703790680896011e-05 + sys_12: -2.9218917082870338e-05 + sys_13: 3.915490070408017e-05 + sys_14: 6.861128654615448e-05 + sys_15: -2.819727236317605e-05 + sys_16: -4.3555842482474516e-05 + sys_17: 1.1942109059398943e-05 + sys_18: -5.537330568768192e-05 + sys_19: 4.219490723123284e-05 + sys_20: 3.8575921579256805e-05 + sys_21: -2.419695428508297e-05 + sys_22: 5.0373475531346336e-05 + sys_23: -1.4272288300798164e-06 + sys_24: 1.5448479209793726e-05 + sys_25: -4.818261018831282e-05 + sys_26: 7.111709115162671e-06 + sys_27: -2.3536831213543233e-05 + sys_28: 0.00010835784626834932 + sys_29: -3.550388524118434e-05 + sys_30: 4.655622478312223e-05 + sys_31: -1.2060283887609993e-05 + sys_32: -3.9251308847725424e-05 + sys_33: 0.0007954945660322011 + sys_34: 0.0029953753483943704 + sys_35: -0.00113967336954146 + sys_36: -0.0007650822467188235 + sys_37: 0.00016076248727932833 + sys_38: -0.0002860087548112919 + sys_39: 0.00010589546167657734 + sys_40: -3.873692538941009e-06 + sys_41: 3.6144091955741326e-05 + sys_42: 1.0974888990727702e-05 + sys_43: -2.1070028755497166e-05 + sys_44: -2.1395050833659104e-05 + sys_45: -3.5944662454056054e-05 + sys_46: -3.309615433164787e-05 + sys_47: -2.1466797631546404e-05 + sys_48: -8.623811975203603e-05 + sys_49: -6.443141716151797e-05 + sys_50: -2.1180285778784914e-05 + sys_51: 5.9819532493803864e-05 + sys_52: -8.670694161447683e-05 + sys_53: 8.991925147840501e-05 + sys_54: 6.681785106569658e-05 + sys_55: 4.447608838845952e-06 - lumi_ue: 0.00035 pol: 0.0004158 - sys_0: -3.146916369367761e-05 - sys_1: -0.00013152602564072574 - sys_2: 1.002332981231254e-05 - sys_3: 6.44103317707453e-05 - sys_4: 3.5781691295527646e-05 - sys_5: 4.686833016557759e-05 - sys_6: -5.9212180707533255e-05 - sys_7: 4.3258317126835336e-05 - sys_8: 6.840542615436817e-06 - sys_9: 4.812687732649776e-05 - sys_10: -3.835014513698797e-05 - sys_11: 4.981472777704831e-05 - sys_12: -3.390231416791449e-05 - sys_13: -4.564872097787553e-05 - sys_14: -8.046088531480471e-05 - sys_15: 3.1463974436098414e-05 - sys_16: 5.227064206662266e-05 - sys_17: -9.872864997213191e-06 - sys_18: 6.890154619281126e-05 - sys_19: -5.0693624476837005e-05 - sys_20: -4.8879913136013943e-05 - sys_21: 2.8037169237993688e-05 - sys_22: -6.26556958873012e-05 - sys_23: 1.6163636796588804e-06 - sys_24: -2.937357608318606e-06 - sys_25: 1.8225675658205307e-05 - sys_26: 2.381166737868249e-06 - sys_27: 2.616990703043371e-05 - sys_28: -9.593628382892183e-05 - sys_29: 1.4304540608881487e-05 - sys_30: -6.744200998313431e-05 - sys_31: 5.079375003714347e-05 - sys_32: -3.417716889713626e-05 - sys_33: -6.71962582078499e-05 - sys_34: 0.0001658208252682502 - sys_35: -0.00011429387899065237 - sys_36: -0.00033370220974283357 - sys_37: -0.0037794743930049594 - sys_38: 0.0012706988267081106 - sys_39: -0.00013317327672413473 - sys_40: 7.240454022274582e-06 - sys_41: -4.9863753871597065e-05 - sys_42: -1.3017327537571256e-05 - sys_43: -3.0039689296336458e-05 - sys_44: -2.3827529570238705e-05 - sys_45: -4.818785394003976e-05 - sys_46: -4.762144456975466e-05 - sys_47: -2.2707378603661508e-05 - sys_48: 0.00010523387048429387 - sys_49: -9.87235779143571e-05 - sys_50: -3.245492222500528e-05 - sys_51: 8.696530919408532e-05 - sys_52: -0.0001544521606742815 - sys_53: 0.00014551297302658412 - sys_54: 9.224907238193663e-05 - sys_55: 8.851574082841761e-06 + sys_0: -3.146916369367802e-05 + sys_1: -0.00013152602564072525 + sys_2: 1.0023329812311119e-05 + sys_3: 6.44103317707447e-05 + sys_4: 3.578169129552725e-05 + sys_5: 4.6868330165578694e-05 + sys_6: -5.9212180707533086e-05 + sys_7: 4.3258317126834604e-05 + sys_8: 6.840542615436616e-06 + sys_9: 4.8126877326497054e-05 + sys_10: -3.835014513698503e-05 + sys_11: 4.9814727777050174e-05 + sys_12: -3.390231416791346e-05 + sys_13: 4.564872097787413e-05 + sys_14: 8.046088531480225e-05 + sys_15: -3.146397443609784e-05 + sys_16: -5.227064206662449e-05 + sys_17: 9.87286499721181e-06 + sys_18: -6.890154619281032e-05 + sys_19: 5.0693624476839404e-05 + sys_20: 4.8879913136013334e-05 + sys_21: -2.8037169237992045e-05 + sys_22: 6.265569588730172e-05 + sys_23: 1.6163636796615693e-06 + sys_24: 2.9373576083175327e-06 + sys_25: -1.8225675658202614e-05 + sys_26: -2.3811667378683397e-06 + sys_27: -2.616990703043108e-05 + sys_28: 9.593628382892789e-05 + sys_29: -1.4304540608887433e-05 + sys_30: 6.744200998313115e-05 + sys_31: -5.079375003714075e-05 + sys_32: 3.417716889713503e-05 + sys_33: 6.719625820784566e-05 + sys_34: -0.0001658208252682594 + sys_35: 0.0001142938789906356 + sys_36: 0.0003337022097428351 + sys_37: 0.0037794743930049538 + sys_38: -0.0012706988267081481 + sys_39: 0.00013317327672414178 + sys_40: -7.240454022279862e-06 + sys_41: 4.986375387159887e-05 + sys_42: 1.3017327537564419e-05 + sys_43: -3.0039689296341642e-05 + sys_44: -2.3827529570249456e-05 + sys_45: -4.818785394002912e-05 + sys_46: -4.762144456974974e-05 + sys_47: -2.2707378603664087e-05 + sys_48: -0.00010523387048429488 + sys_49: -9.872357791435451e-05 + sys_50: -3.245492222500986e-05 + sys_51: 8.696530919408512e-05 + sys_52: -0.00015445216067428414 + sys_53: 0.00014551297302658816 + sys_54: 9.224907238194089e-05 + sys_55: 8.851574082847077e-06 - lumi_ue: 0.00036 pol: 0.000132 - sys_0: -4.638851738241806e-05 - sys_1: -0.00019112540354769848 - sys_2: 1.4498739142810215e-05 - sys_3: 9.306568790614331e-05 - sys_4: 5.083771818357061e-05 - sys_5: 6.685072527938489e-05 - sys_6: -8.692259315614893e-05 - sys_7: 6.688226420879367e-05 - sys_8: 6.241054221820374e-06 - sys_9: 6.829918010969073e-05 - sys_10: -6.103462713002867e-05 - sys_11: 7.43570579115376e-05 - sys_12: -4.985395939856702e-05 - sys_13: -7.329862519842332e-05 - sys_14: -0.00011705702107071732 - sys_15: 4.72400601613547e-05 - sys_16: 7.662057876477673e-05 - sys_17: -1.5094388262021566e-05 - sys_18: 0.00010298193948187723 - sys_19: -7.064187113073645e-05 - sys_20: -6.345326758118845e-05 - sys_21: 4.155226165361115e-05 - sys_22: -9.59852018166844e-05 - sys_23: 2.221622515325068e-06 - sys_24: 7.901304046509404e-07 - sys_25: 7.860395973328035e-06 - sys_26: 4.920956254692479e-06 - sys_27: 1.7545242163643358e-05 - sys_28: -8.87380635829207e-05 - sys_29: -1.3965910804533864e-05 - sys_30: -0.0001091330313626029 - sys_31: 0.0001019441624525807 - sys_32: -0.00010705626901419507 - sys_33: -6.729239462136574e-05 - sys_34: 0.00020254013820089845 - sys_35: 1.842232823113791e-05 - sys_36: -0.0002566484096554202 - sys_37: 0.001311895215772311 - sys_38: 0.003881867463657462 - sys_39: -0.00019615785883928707 - sys_40: 8.642421350314275e-06 - sys_41: -8.635770897690556e-05 - sys_42: -1.5406199373401453e-05 - sys_43: -4.907404001092232e-05 - sys_44: -3.178763301088242e-05 - sys_45: -6.400262252085319e-05 - sys_46: -6.240311053139189e-05 - sys_47: -2.613602507550813e-05 - sys_48: 0.00013999179136072717 - sys_49: -0.00013457719124015558 - sys_50: -4.512628657734718e-05 - sys_51: 0.00012944013767087932 - sys_52: -0.0002605875296010231 - sys_53: 0.000151652926494242 - sys_54: 9.612603348094014e-05 - sys_55: 3.9607873813037775e-06 + sys_0: -4.638851738241813e-05 + sys_1: -0.00019112540354769875 + sys_2: 1.4498739142808568e-05 + sys_3: 9.306568790614233e-05 + sys_4: 5.08377181835695e-05 + sys_5: 6.685072527938586e-05 + sys_6: -8.692259315614878e-05 + sys_7: 6.688226420879316e-05 + sys_8: 6.241054221820491e-06 + sys_9: 6.829918010968833e-05 + sys_10: -6.1034627130025196e-05 + sys_11: 7.435705791153969e-05 + sys_12: -4.985395939856494e-05 + sys_13: 7.329862519842342e-05 + sys_14: 0.00011705702107071375 + sys_15: -4.724006016135315e-05 + sys_16: -7.662057876477941e-05 + sys_17: 1.509438826202208e-05 + sys_18: -0.00010298193948187479 + sys_19: 7.064187113073787e-05 + sys_20: 6.345326758118853e-05 + sys_21: -4.1552261653607775e-05 + sys_22: 9.598520181668811e-05 + sys_23: 2.221622515326596e-06 + sys_24: -7.901304046523337e-07 + sys_25: -7.860395973327216e-06 + sys_26: -4.9209562546931126e-06 + sys_27: -1.754524216364288e-05 + sys_28: 8.873806358292228e-05 + sys_29: 1.3965910804527167e-05 + sys_30: 0.0001091330313626001 + sys_31: -0.00010194416245258066 + sys_32: 0.00010705626901419021 + sys_33: 6.729239462136325e-05 + sys_34: -0.0002025401382009053 + sys_35: -1.842232823115018e-05 + sys_36: 0.00025664840965542156 + sys_37: -0.0013118952157723483 + sys_38: -0.0038818674636574417 + sys_39: 0.00019615785883928569 + sys_40: -8.642421350325827e-06 + sys_41: 8.63577089769056e-05 + sys_42: 1.5406199373398736e-05 + sys_43: -4.90740400109252e-05 + sys_44: -3.1787633010891655e-05 + sys_45: -6.400262252084931e-05 + sys_46: -6.240311053139105e-05 + sys_47: -2.6136025075505618e-05 + sys_48: -0.0001399917913607326 + sys_49: -0.00013457719124015764 + sys_50: -4.512628657735273e-05 + sys_51: 0.0001294401376708844 + sys_52: -0.0002605875296010245 + sys_53: 0.00015165292649424193 + sys_54: 9.612603348094022e-05 + sys_55: 3.960787381308413e-06 - lumi_ue: 0.0003 pol: 0.0008448 - sys_0: -5.183660718448052e-05 - sys_1: -0.00023006788227953915 - sys_2: 1.5689952454244724e-05 - sys_3: 0.00011135690961012933 - sys_4: 6.074489751402766e-05 - sys_5: 8.557254293659225e-05 - sys_6: -0.00010569729561656225 - sys_7: 8.299788902283283e-05 - sys_8: 7.992279835438265e-06 - sys_9: 9.793535044657836e-05 - sys_10: -6.9616339593195e-05 - sys_11: 0.00010019453603858331 - sys_12: -6.748845366547604e-05 - sys_13: -9.803445495975316e-05 - sys_14: -0.00016640063399366763 - sys_15: 7.387633584623285e-05 - sys_16: 0.00010881412150404525 - sys_17: -2.0327639121604094e-05 - sys_18: 0.0001531894341501628 - sys_19: -9.33515497385915e-05 - sys_20: -4.217088577165028e-05 - sys_21: 7.302945907681256e-05 - sys_22: -0.00015541870366648857 - sys_23: 1.4815026075709556e-06 - sys_24: 1.5094199236147984e-06 - sys_25: 1.5856464327113192e-06 - sys_26: 3.1992547458811324e-06 - sys_27: 3.0814805297533927e-07 - sys_28: -4.113474408939066e-05 - sys_29: -7.395451975584419e-06 - sys_30: -8.27476725793594e-05 - sys_31: 0.00013058224024709437 - sys_32: -0.00015892237948139602 - sys_33: -2.7688636175115547e-05 - sys_34: 0.0001376633418725308 - sys_35: 0.00016011651807652027 - sys_36: -3.0626083731431234e-05 - sys_37: 8.684362909124114e-05 - sys_38: -0.0003869804568953357 - sys_39: -0.00033632997747406454 - sys_40: 1.756323613061286e-05 - sys_41: -0.0001739783759082287 - sys_42: -5.389398149306481e-06 - sys_43: -7.686539165976608e-05 - sys_44: -5.4755340682826554e-05 - sys_45: -0.00011953007979451648 - sys_46: -0.00010214357897948145 - sys_47: -5.145654422839815e-05 - sys_48: 0.00045647241528126904 - sys_49: -0.000587762756423175 - sys_50: -0.0002736969327242057 - sys_51: 0.0011761370688255573 - sys_52: -0.004697523485983041 - sys_53: 0.000735019052936583 - sys_54: -0.0005844483109360392 - sys_55: 1.6674046581841498e-07 + sys_0: -5.183660718448047e-05 + sys_1: -0.0002300678822795388 + sys_2: 1.5689952454242657e-05 + sys_3: 0.00011135690961012817 + sys_4: 6.074489751402663e-05 + sys_5: 8.557254293659576e-05 + sys_6: -0.00010569729561656198 + sys_7: 8.29978890228316e-05 + sys_8: 7.992279835438193e-06 + sys_9: 9.7935350446577e-05 + sys_10: -6.961633959319253e-05 + sys_11: 0.00010019453603858477 + sys_12: -6.748845366547465e-05 + sys_13: 9.803445495975019e-05 + sys_14: 0.00016640063399366636 + sys_15: -7.387633584622912e-05 + sys_16: -0.00010881412150404262 + sys_17: 2.032763912160254e-05 + sys_18: -0.00015318943415016127 + sys_19: 9.335154973859405e-05 + sys_20: 4.2170885771652956e-05 + sys_21: -7.302945907681088e-05 + sys_22: 0.0001554187036664873 + sys_23: 1.481502607571213e-06 + sys_24: -1.5094199236160897e-06 + sys_25: -1.5856464327101306e-06 + sys_26: -3.1992547458819723e-06 + sys_27: -3.0814805297589847e-07 + sys_28: 4.113474408939248e-05 + sys_29: 7.395451975580669e-06 + sys_30: 8.27476725793579e-05 + sys_31: -0.00013058224024709491 + sys_32: 0.0001589223794813944 + sys_33: 2.768863617511338e-05 + sys_34: -0.00013766334187252551 + sys_35: -0.00016011651807653122 + sys_36: 3.062608373143173e-05 + sys_37: -8.684362909123797e-05 + sys_38: 0.000386980456895338 + sys_39: 0.00033632997747406703 + sys_40: -1.7563236130637465e-05 + sys_41: 0.00017397837590823028 + sys_42: 5.389398149297733e-06 + sys_43: -7.68653916597652e-05 + sys_44: -5.475534068282874e-05 + sys_45: -0.00011953007979451684 + sys_46: -0.00010214357897948255 + sys_47: -5.145654422839359e-05 + sys_48: -0.0004564724152812748 + sys_49: -0.0005877627564231794 + sys_50: -0.00027369693272425843 + sys_51: 0.0011761370688254764 + sys_52: -0.004697523485983049 + sys_53: 0.0007350190529365869 + sys_54: -0.0005844483109360693 + sys_55: 1.667404658053767e-07 - lumi_ue: 0.00031 pol: 0.0001452 - sys_0: -7.690335906649783e-05 - sys_1: -0.0003431269756041771 - sys_2: 1.9730800741735362e-05 - sys_3: 0.00016932207960146714 - sys_4: 9.87633966444492e-05 - sys_5: 0.00013067476919974874 - sys_6: -0.00016568086257604192 - sys_7: 0.00013756910145646463 - sys_8: 1.045241200120818e-05 - sys_9: 0.0001868619675493475 - sys_10: -6.822518968672986e-05 - sys_11: 0.00017362476301863972 - sys_12: -0.00011133199562202643 - sys_13: -0.00019342842961961014 - sys_14: -0.0003329363180877857 - sys_15: 0.0001865750288269762 - sys_16: 0.00021431509581689443 - sys_17: -5.0906209627177626e-05 - sys_18: 0.0003433117805184208 - sys_19: -0.0001678089189279003 - sys_20: 0.0002263015856048835 - sys_21: 0.00028190120339297676 - sys_22: -0.000740422538472076 - sys_23: 7.58861947564019e-07 - sys_24: 1.1498530231525713e-06 - sys_25: -5.514196021554693e-07 - sys_26: 1.4174204876381829e-06 - sys_27: -7.714749948618252e-06 - sys_28: -1.6037005999771273e-05 - sys_29: -2.441649715607529e-06 - sys_30: -3.303318566996576e-05 - sys_31: 7.942219172126599e-05 - sys_32: -0.0001968530380955259 - sys_33: -2.587351606240863e-05 - sys_34: 0.00013257945774272628 - sys_35: 0.00022809657087743336 - sys_36: 1.1030139501575696e-05 - sys_37: 3.1315806799135794e-05 - sys_38: -0.00016240340642014413 - sys_39: -0.003822381479019702 - sys_40: 0.00030810125707134313 - sys_41: -0.0048037262611431 - sys_42: 0.0012171527487384174 - sys_43: 0.001479805809247037 - sys_44: 0.00021203997148477692 - sys_45: 0.00034860242410442486 - sys_46: 0.00021590727189540795 - sys_47: 7.981892435827837e-05 - sys_48: -9.97196537177484e-05 - sys_49: 9.106463484421006e-05 - sys_50: 3.819590565581337e-05 - sys_51: -8.659106281303526e-05 - sys_52: 0.00034467886120977527 - sys_53: 0.00032161899995676314 - sys_54: 0.0001720101266746872 - sys_55: 4.202081529981001e-06 + sys_0: -7.690335906649857e-05 + sys_1: -0.0003431269756041768 + sys_2: 1.973080074173282e-05 + sys_3: 0.00016932207960146573 + sys_4: 9.876339664444757e-05 + sys_5: 0.00013067476919975126 + sys_6: -0.00016568086257604087 + sys_7: 0.00013756910145646444 + sys_8: 1.0452412001205653e-05 + sys_9: 0.00018686196754934704 + sys_10: -6.822518968672883e-05 + sys_11: 0.00017362476301864443 + sys_12: -0.0001113319956220243 + sys_13: 0.00019342842961960394 + sys_14: 0.00033293631808778515 + sys_15: -0.00018657502882697262 + sys_16: -0.00021431509581689334 + sys_17: 5.090620962717554e-05 + sys_18: -0.00034331178051842274 + sys_19: 0.00016780891892789526 + sys_20: -0.00022630158560487686 + sys_21: -0.0002819012033929795 + sys_22: 0.0007404225384720784 + sys_23: 7.588619475640872e-07 + sys_24: -1.1498530231522651e-06 + sys_25: 5.514196021554904e-07 + sys_26: -1.417420487638262e-06 + sys_27: 7.714749948617448e-06 + sys_28: 1.6037005999772357e-05 + sys_29: 2.4416497156058823e-06 + sys_30: 3.303318566996404e-05 + sys_31: -7.942219172126687e-05 + sys_32: 0.00019685303809552558 + sys_33: 2.587351606240858e-05 + sys_34: -0.00013257945774271886 + sys_35: -0.00022809657087744122 + sys_36: -1.1030139501577082e-05 + sys_37: -3.1315806799136696e-05 + sys_38: 0.00016240340642014427 + sys_39: 0.0038223814790197238 + sys_40: -0.00030810125707198476 + sys_41: 0.004803726261142993 + sys_42: -0.001217152748738582 + sys_43: 0.00147980580924706 + sys_44: 0.00021203997148477524 + sys_45: 0.00034860242410441174 + sys_46: 0.0002159072718954201 + sys_47: 7.981892435826199e-05 + sys_48: 9.971965371774434e-05 + sys_49: 9.10646348442094e-05 + sys_50: 3.819590565581666e-05 + sys_51: -8.659106281303899e-05 + sys_52: 0.00034467886120978036 + sys_53: 0.0003216189999567606 + sys_54: 0.00017201012667467433 + sys_55: 4.202081529988964e-06 - lumi_ue: 0.00028 pol: 6.6e-05 - sys_0: -0.00010830036565284194 - sys_1: -0.00046158532546831244 - sys_2: 1.63234304045056e-05 - sys_3: 0.00024083057821001002 - sys_4: 0.0001682390425538004 - sys_5: 0.00021808972279365442 - sys_6: -0.0002705390479992354 - sys_7: 0.00025125677720830243 - sys_8: 2.0477825202956095e-05 - sys_9: 0.0005050464927237331 - sys_10: 0.00021700766364686757 - sys_11: 0.0003976688699745107 - sys_12: -0.0002781309821144815 - sys_13: -0.0007778394550957084 - sys_14: -0.004429482222680756 - sys_15: 0.008431954518138163 - sys_16: -0.00045238567703627077 - sys_17: 5.436157727195215e-05 - sys_18: -0.0003269136204794761 - sys_19: -4.3491259750458245e-05 - sys_20: -0.0009642296130428406 - sys_21: -0.00037719137185545265 - sys_22: 0.0001563832022088008 - sys_23: 2.7977449630640567e-07 - sys_24: 6.574964924842587e-07 - sys_25: -8.036754876905825e-07 - sys_26: 4.6073804868718623e-07 - sys_27: -6.645141629324895e-06 - sys_28: -4.635561661431421e-06 - sys_29: -4.1852239121450867e-07 - sys_30: -8.257250306232652e-06 - sys_31: 2.0618980931827476e-05 - sys_32: -8.44875523518812e-05 - sys_33: -2.389454264861868e-05 - sys_34: 0.00012002866510516857 - sys_35: 0.00023921613773104296 - sys_36: 2.706154874858223e-05 - sys_37: 1.116328730760508e-05 - sys_38: -6.79501843339593e-05 - sys_39: 0.00026216837975767313 - sys_40: -1.2857741588415468e-05 - sys_41: 0.0001753436122057131 - sys_42: -1.6842185566242286e-05 - sys_43: 2.1765773346557578e-05 - sys_44: 1.0775001472921124e-05 - sys_45: 2.7029415970584646e-05 - sys_46: 2.284534270085236e-05 - sys_47: 8.974974679228816e-06 - sys_48: -2.569627792969285e-06 - sys_49: -4.260395206300875e-06 - sys_50: 4.12574916382849e-06 - sys_51: -2.3512023269616617e-06 - sys_52: 0.00014253763721466277 - sys_53: 0.0003341167767806979 - sys_54: 0.00017721143872266059 - sys_55: 1.964734651286989e-06 + sys_0: -0.00010830036565284268 + sys_1: -0.0004615853254683115 + sys_2: 1.6323430404499655e-05 + sys_3: 0.0002408305782100076 + sys_4: 0.00016823904255380178 + sys_5: 0.00021808972279365436 + sys_6: -0.00027053904799923423 + sys_7: 0.0002512567772083005 + sys_8: 2.047782520295539e-05 + sys_9: 0.0005050464927237347 + sys_10: 0.00021700766364687236 + sys_11: 0.00039766886997451956 + sys_12: -0.00027813098211448774 + sys_13: 0.0007778394550956992 + sys_14: 0.004429482222680826 + sys_15: -0.00843195451813812 + sys_16: 0.0004523856770362773 + sys_17: -5.436157727194889e-05 + sys_18: 0.0003269136204794779 + sys_19: 4.349125975048261e-05 + sys_20: 0.0009642296130428131 + sys_21: 0.00037719137185549483 + sys_22: -0.00015638320220880258 + sys_23: 2.797744963064109e-07 + sys_24: -6.574964924843105e-07 + sys_25: 8.036754876903529e-07 + sys_26: -4.607380486876442e-07 + sys_27: 6.645141629324924e-06 + sys_28: 4.635561661431753e-06 + sys_29: 4.1852239121376545e-07 + sys_30: 8.257250306231724e-06 + sys_31: -2.0618980931827866e-05 + sys_32: 8.448755235188124e-05 + sys_33: 2.389454264861748e-05 + sys_34: -0.0001200286651051588 + sys_35: -0.0002392161377310501 + sys_36: -2.7061548748582745e-05 + sys_37: -1.1163287307605065e-05 + sys_38: 6.79501843339599e-05 + sys_39: -0.0002621683797576753 + sys_40: 1.2857741588442294e-05 + sys_41: -0.0001753436122057103 + sys_42: 1.6842185566249032e-05 + sys_43: 2.1765773346558262e-05 + sys_44: 1.0775001472923758e-05 + sys_45: 2.7029415970583684e-05 + sys_46: 2.28453427008528e-05 + sys_47: 8.974974679228194e-06 + sys_48: 2.5696277929687414e-06 + sys_49: -4.260395206298613e-06 + sys_50: 4.125749163826171e-06 + sys_51: -2.351202326964028e-06 + sys_52: 0.00014253763721466575 + sys_53: 0.00033411677678069936 + sys_54: 0.00017721143872265042 + sys_55: 1.9647346512936697e-06 - lumi_ue: 0.00026 pol: 0.001056 - sys_0: -0.00016677495160342707 - sys_1: -0.0008153614143477576 - sys_2: 1.4580174709754416e-05 - sys_3: 0.0004845344726404358 - sys_4: 0.0004234444121210454 - sys_5: 0.0005536682896418401 - sys_6: -0.00077405535167504 - sys_7: 0.0010125308605708195 - sys_8: 9.05955901295324e-05 - sys_9: 0.01358984519226675 - sys_10: -0.004264186632188474 - sys_11: -0.0010417524082603517 - sys_12: 0.00047632027284714567 - sys_13: 0.0003539354443003931 - sys_14: 0.00038076140395991426 - sys_15: -0.00034698068018529973 - sys_16: -5.675179899154153e-05 - sys_17: 3.1113630645574284e-06 - sys_18: -4.728759223658699e-05 - sys_19: -0.00011408379656307262 - sys_20: -0.0007733538451369094 - sys_21: -0.00023931949794576493 - sys_22: 6.365306310428644e-05 - sys_23: 6.054197873932917e-08 - sys_24: 3.2867635983133407e-07 - sys_25: -6.037652338776566e-07 - sys_26: 4.1468630094452896e-08 - sys_27: -5.071809055251676e-06 - sys_28: -1.5143889314388503e-06 - sys_29: 6.541216202716219e-08 - sys_30: -1.1746715213126177e-06 - sys_31: 2.5445813549031697e-06 - sys_32: -2.0469630686010585e-05 - sys_33: -1.2992077427583878e-05 - sys_34: 5.1621221362104414e-05 - sys_35: 8.700009773652752e-05 - sys_36: 2.5838217530499404e-06 - sys_37: 1.2077712321838433e-05 - sys_38: -4.340002241945305e-05 - sys_39: 0.00011091175228939813 - sys_40: -5.001170320392066e-06 - sys_41: 6.5010875417251e-05 - sys_42: -4.157333870211173e-06 - sys_43: 1.030792232647002e-05 - sys_44: 5.2617090821250895e-06 - sys_45: 1.024409919469864e-05 - sys_46: 6.134285883109986e-06 - sys_47: 1.943680555077846e-06 - sys_48: 1.0152172562154826e-05 - sys_49: -1.876966416738286e-05 - sys_50: -1.935620416378778e-06 - sys_51: 1.768149324665849e-05 - sys_52: 9.267601807812078e-05 - sys_53: 0.0003536972200246737 - sys_54: 0.0001785885290616871 - sys_55: 2.3870146229933876e-06 + sys_0: -0.0001667749516034284 + sys_1: -0.0008153614143477588 + sys_2: 1.4580174709749876e-05 + sys_3: 0.00048453447264043244 + sys_4: 0.00042344441212105157 + sys_5: 0.0005536682896418332 + sys_6: -0.0007740553516750177 + sys_7: 0.001012530860570881 + sys_8: 9.059559012952524e-05 + sys_9: 0.013589845192266753 + sys_10: -0.0042641866321884775 + sys_11: -0.0010417524082603111 + sys_12: 0.000476320272847139 + sys_13: -0.00035393544430039757 + sys_14: -0.00038076140395992277 + sys_15: 0.0003469806801852985 + sys_16: 5.675179899154221e-05 + sys_17: -3.111363064557023e-06 + sys_18: 4.728759223658677e-05 + sys_19: 0.00011408379656309658 + sys_20: 0.0007733538451368929 + sys_21: 0.00023931949794579797 + sys_22: -6.365306310428866e-05 + sys_23: 6.054197873926345e-08 + sys_24: -3.286763598314171e-07 + sys_25: 6.037652338775732e-07 + sys_26: -4.146863009460964e-08 + sys_27: 5.071809055251563e-06 + sys_28: 1.5143889314388533e-06 + sys_29: -6.541216202728392e-08 + sys_30: 1.1746715213122764e-06 + sys_31: -2.5445813549032116e-06 + sys_32: 2.04696306860107e-05 + sys_33: 1.299207742758332e-05 + sys_34: -5.1621221362100795e-05 + sys_35: -8.7000097736531e-05 + sys_36: -2.583821753050224e-06 + sys_37: -1.2077712321838716e-05 + sys_38: 4.3400022419453526e-05 + sys_39: -0.00011091175228940104 + sys_40: 5.001170320403918e-06 + sys_41: -6.501087541725e-05 + sys_42: 4.157333870213965e-06 + sys_43: 1.0307922326470305e-05 + sys_44: 5.261709082126764e-06 + sys_45: 1.0244099194698737e-05 + sys_46: 6.134285883110053e-06 + sys_47: 1.9436805550778034e-06 + sys_48: -1.0152172562154443e-05 + sys_49: -1.876966416738158e-05 + sys_50: -1.9356204163819162e-06 + sys_51: 1.768149324665555e-05 + sys_52: 9.267601807812345e-05 + sys_53: 0.00035369722002467604 + sys_54: 0.00017858852906167723 + sys_55: 2.3870146230003993e-06 - lumi_ue: 0.00026 pol: 0.001353 - sys_0: -0.00033678431132152354 - sys_1: -0.002523670695184155 - sys_2: 7.022843477167536e-05 - sys_3: 0.002941216122292027 - sys_4: 0.023938218028915756 - sys_5: -0.0006857708214051645 - sys_6: 0.0005043725456326166 - sys_7: -0.0004371914509472468 - sys_8: -2.703499333781075e-05 - sys_9: -0.0010654089864628694 - sys_10: -0.0015071342671947503 - sys_11: -0.00016693064895259127 - sys_12: 0.00010290820287829267 - sys_13: 8.004256690985314e-05 - sys_14: 0.000111962310099725 - sys_15: -0.00010865509972290942 - sys_16: -1.2443730467349032e-05 - sys_17: -3.95117154466768e-06 - sys_18: 2.738643127889092e-06 - sys_19: -9.500074306655581e-05 - sys_20: -0.0005573533000873632 - sys_21: -0.0001654352708507948 - sys_22: 3.2087118376040015e-05 - sys_23: 1.0041559010569772e-08 - sys_24: 1.3562247246119487e-07 - sys_25: -2.751176883146805e-07 - sys_26: -1.5407564663637097e-08 - sys_27: -2.288912210299452e-06 - sys_28: -2.836292010038103e-07 - sys_29: 7.023135495017804e-08 - sys_30: 2.2060001015654764e-07 - sys_31: -7.804648679007234e-07 - sys_32: -2.0589798275247986e-06 - sys_33: -4.315572760382127e-06 - sys_34: 1.225254109541577e-05 - sys_35: 1.4283980219283094e-05 - sys_36: -3.0187309416312804e-06 - sys_37: 5.410816927291438e-06 - sys_38: -1.7305361541693747e-05 - sys_39: 4.031238179584204e-05 - sys_40: -2.5436070724597232e-06 - sys_41: 2.7761904383470476e-06 - sys_42: 7.864509074118273e-06 - sys_43: 1.2095608963273249e-05 - sys_44: 6.1769126990024e-06 - sys_45: 9.916669923839469e-06 - sys_46: 9.171355003610673e-06 - sys_47: 3.905145532960695e-06 - sys_48: -2.9751296113880195e-06 - sys_49: 1.4222083826092992e-06 - sys_50: 4.4363002260479723e-07 - sys_51: 5.355216135293117e-07 - sys_52: 2.6783883136333852e-05 - sys_53: 8.862616698716669e-05 - sys_54: 4.2062318472610274e-05 - sys_55: 1.615685814096234e-07 + sys_0: -0.0003367843113215254 + sys_1: -0.0025236706951841685 + sys_2: 7.022843477164621e-05 + sys_3: 0.0029412161222919673 + sys_4: 0.023938218028915725 + sys_5: -0.0006857708214051589 + sys_6: 0.0005043725456326073 + sys_7: -0.0004371914509472524 + sys_8: -2.7034993337813336e-05 + sys_9: -0.001065408986462869 + sys_10: -0.0015071342671947473 + sys_11: -0.0001669306489525776 + sys_12: 0.00010290820287828981 + sys_13: -8.004256690985228e-05 + sys_14: -0.00011196231009972572 + sys_15: 0.00010865509972290826 + sys_16: 1.2443730467349905e-05 + sys_17: 3.9511715446684145e-06 + sys_18: -2.7386431278889803e-06 + sys_19: 9.50007430665733e-05 + sys_20: 0.0005573533000873524 + sys_21: 0.00016543527085081846 + sys_22: -3.208711837604076e-05 + sys_23: 1.0041559010643371e-08 + sys_24: -1.3562247246122338e-07 + sys_25: 2.7511768831485546e-07 + sys_26: 1.5407564663689706e-08 + sys_27: 2.28891221029939e-06 + sys_28: 2.8362920100372474e-07 + sys_29: -7.023135495025891e-08 + sys_30: -2.206000101566021e-07 + sys_31: 7.804648679005436e-07 + sys_32: 2.058979827524908e-06 + sys_33: 4.315572760382107e-06 + sys_34: -1.2252541095415136e-05 + sys_35: -1.4283980219283651e-05 + sys_36: 3.018730941631258e-06 + sys_37: -5.410816927291254e-06 + sys_38: 1.730536154169422e-05 + sys_39: -4.03123817958424e-05 + sys_40: 2.5436070724610294e-06 + sys_41: -2.7761904383467952e-06 + sys_42: -7.864509074117879e-06 + sys_43: 1.2095608963273112e-05 + sys_44: 6.176912699002895e-06 + sys_45: 9.916669923839547e-06 + sys_46: 9.171355003610932e-06 + sys_47: 3.905145532960547e-06 + sys_48: 2.975129611387985e-06 + sys_49: 1.4222083826092772e-06 + sys_50: 4.4363002260449293e-07 + sys_51: 5.355216135285675e-07 + sys_52: 2.678388313633459e-05 + sys_53: 8.862616698716722e-05 + sys_54: 4.206231847260779e-05 + sys_55: 1.6156858141123203e-07 diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_2JET_510GEV/uncertainties_C.yaml b/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_2JET_510GEV/uncertainties_C.yaml index 7d41c7e4a7..ecd715cce4 100644 --- a/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_2JET_510GEV/uncertainties_C.yaml +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_2JET_510GEV/uncertainties_C.yaml @@ -234,581 +234,581 @@ definitions: bins: - lumi_ue: 0.00026 pol: 0.0003828 - sys_0: -1.0152837883335671e-05 - sys_1: -6.401365200958545e-05 - sys_2: 6.050958610979661e-06 - sys_3: 2.7729514871357827e-05 - sys_4: 1.057154844739684e-05 - sys_5: 2.1400773763299003e-05 - sys_6: -3.089873711945446e-05 - sys_7: 2.7420994060287696e-05 - sys_8: -9.366267256311292e-07 - sys_9: 2.6039540126477757e-05 - sys_10: -2.259314941172682e-05 - sys_11: 4.2386582644682234e-05 - sys_12: -2.1767689617535626e-05 - sys_13: -4.017869524895418e-05 - sys_14: -0.00010967515780824019 - sys_15: 2.399017121918918e-05 - sys_16: 0.0003058367754900217 - sys_17: -0.008487809895745952 - sys_18: -0.00023708266182735578 - sys_19: 0.00020865888331487306 - sys_20: 9.556047814114716e-05 - sys_21: -0.00010467445294253024 - sys_22: 3.998880964436019e-05 - sys_23: -5.561719000921318e-06 - sys_24: -3.430151823163224e-06 - sys_25: -6.836109888945931e-07 - sys_26: -2.627603182662234e-06 - sys_27: -5.923855059039625e-06 - sys_28: -2.5760599150698546e-06 - sys_29: 3.630221943261399e-07 - sys_30: 3.6299178015012404e-07 - sys_31: -1.1553986622680641e-06 - sys_32: 1.235919500679438e-06 - sys_33: -1.2409988789615508e-06 - sys_34: 1.5716731395362178e-06 - sys_35: -3.335580715587673e-06 - sys_36: -4.9294027192362044e-06 - sys_37: 1.4212571475733675e-06 - sys_38: -4.7467619413589115e-06 - sys_39: 7.601441286618729e-05 - sys_40: 2.8294447702256826e-06 - sys_41: -5.811982444409558e-06 - sys_42: 1.7935508766208135e-05 - sys_43: 3.90430609278649e-06 - sys_44: 1.6335218482831133e-05 - sys_45: 1.0623368360464057e-05 - sys_46: 9.975554388651377e-06 - sys_47: 1.2212925523413466e-06 - sys_48: -8.860375721277963e-06 - sys_49: 1.0112152266891164e-05 - sys_50: 1.8081514575783671e-06 - sys_51: -6.075550235980924e-06 - sys_52: 3.868596743102143e-06 - sys_53: -7.340037791467812e-06 - sys_54: -7.867651899695185e-06 - sys_55: -1.8373881288755728e-06 + sys_0: -1.015283788333557e-05 + sys_1: -6.40136520095839e-05 + sys_2: 6.050958610977575e-06 + sys_3: 2.7729514871357617e-05 + sys_4: 1.057154844739455e-05 + sys_5: 2.14007737633009e-05 + sys_6: -3.089873711945708e-05 + sys_7: 2.7420994060287283e-05 + sys_8: -9.366267256355834e-07 + sys_9: 2.6039540126473047e-05 + sys_10: -2.259314941173036e-05 + sys_11: 4.238658264469578e-05 + sys_12: -2.1767689617537856e-05 + sys_13: 4.017869524894213e-05 + sys_14: 0.00010967515780824536 + sys_15: -2.3990171219211632e-05 + sys_16: -0.00030583677549011833 + sys_17: 0.008487809895745952 + sys_18: 0.00023708266182731125 + sys_19: -0.00020865888331487997 + sys_20: -9.556047814115155e-05 + sys_21: 0.00010467445294252914 + sys_22: -3.998880964436543e-05 + sys_23: -5.561719000921262e-06 + sys_24: 3.4301518231636557e-06 + sys_25: 6.836109888949824e-07 + sys_26: 2.6276031826618346e-06 + sys_27: 5.923855059040049e-06 + sys_28: 2.5760599150706203e-06 + sys_29: -3.6302219432637476e-07 + sys_30: -3.6299178014984573e-07 + sys_31: 1.1553986622683671e-06 + sys_32: -1.235919500679234e-06 + sys_33: 1.2409988789616806e-06 + sys_34: -1.5716731395366432e-06 + sys_35: 3.3355807155877493e-06 + sys_36: 4.929402719236635e-06 + sys_37: -1.4212571475731793e-06 + sys_38: 4.746761941358607e-06 + sys_39: -7.601441286618806e-05 + sys_40: -2.829444770227022e-06 + sys_41: 5.811982444407825e-06 + sys_42: -1.7935508766208508e-05 + sys_43: 3.9043060927871576e-06 + sys_44: 1.633521848282981e-05 + sys_45: 1.062336836046241e-05 + sys_46: 9.975554388649127e-06 + sys_47: 1.2212925523392254e-06 + sys_48: 8.860375721273482e-06 + sys_49: 1.0112152266890835e-05 + sys_50: 1.8081514575795566e-06 + sys_51: -6.07555023597958e-06 + sys_52: 3.8685967431024015e-06 + sys_53: -7.340037791468193e-06 + sys_54: -7.867651899694771e-06 + sys_55: -1.8373881288758406e-06 - lumi_ue: 0.00063 pol: 3.96e-05 - sys_0: -4.495113347760055e-05 - sys_1: -0.00019723950108585354 - sys_2: 1.1571645759929633e-05 - sys_3: 9.113051998677181e-05 - sys_4: 4.4500282281509525e-05 - sys_5: 8.277593162849766e-05 - sys_6: -9.027332120632918e-05 - sys_7: 6.528945300357063e-05 - sys_8: 5.2776235464783785e-06 - sys_9: 7.264109751551721e-05 - sys_10: -6.553074958801674e-05 - sys_11: 0.00010916920164948725 - sys_12: -5.7041516464915686e-05 - sys_13: -8.734975822087886e-05 - sys_14: -0.0002042483109870186 - sys_15: 1.776979009616431e-05 - sys_16: 0.00011510791408295705 - sys_17: -7.019541516786383e-05 - sys_18: 0.00020945663129868407 - sys_19: -0.0002961357863148266 - sys_20: -0.00017437020998266247 - sys_21: 0.0002776954906966385 - sys_22: -0.0004023161847676019 - sys_23: -5.5123244001782e-06 - sys_24: -8.9753509709946e-06 - sys_25: 8.340301483509511e-06 - sys_26: -4.516667085225934e-06 - sys_27: -9.967193912031692e-06 - sys_28: -3.983957856469077e-06 - sys_29: 5.969676844870005e-06 - sys_30: 3.3509889121580786e-06 - sys_31: -6.584811787366473e-06 - sys_32: 1.0816672496248541e-05 - sys_33: -7.1323700633362255e-06 - sys_34: 5.955103120147233e-06 - sys_35: -2.9352523790801127e-05 - sys_36: -2.214985787961432e-05 - sys_37: 1.5913759175732832e-05 - sys_38: -4.339573452100435e-05 - sys_39: -0.0042147869941808885 - sys_40: -0.0019549037908285884 - sys_41: 0.003963239403309215 - sys_42: 0.002375172745585104 - sys_43: 0.00027779394185621235 - sys_44: 0.0005314956196176203 - sys_45: 0.0001236187665880655 - sys_46: 0.00010119995450967415 - sys_47: 5.3623205251718736e-05 - sys_48: -7.141822230539672e-05 - sys_49: 8.207419097469647e-05 - sys_50: 1.492833222549559e-05 - sys_51: -5.468782807896902e-05 - sys_52: 5.5573623995965194e-05 - sys_53: -7.85975839570097e-05 - sys_54: -6.750577321389893e-05 - sys_55: -4.261546175397375e-06 + sys_0: -4.4951133477600836e-05 + sys_1: -0.00019723950108585246 + sys_2: 1.1571645759926264e-05 + sys_3: 9.113051998677082e-05 + sys_4: 4.450028228150857e-05 + sys_5: 8.277593162850083e-05 + sys_6: -9.02733212063279e-05 + sys_7: 6.528945300357008e-05 + sys_8: 5.277623546475968e-06 + sys_9: 7.264109751551682e-05 + sys_10: -6.553074958801738e-05 + sys_11: 0.00010916920164949018 + sys_12: -5.70415164649125e-05 + sys_13: 8.734975822087314e-05 + sys_14: 0.00020424831098701693 + sys_15: -1.7769790096161028e-05 + sys_16: -0.00011510791408295585 + sys_17: 7.019541516786415e-05 + sys_18: -0.00020945663129868808 + sys_19: 0.0002961357863148339 + sys_20: 0.00017437020998266263 + sys_21: -0.00027769549069662537 + sys_22: 0.0004023161847676083 + sys_23: -5.512324400177141e-06 + sys_24: 8.975350970995115e-06 + sys_25: -8.340301483507975e-06 + sys_26: 4.516667085227778e-06 + sys_27: 9.967193912032007e-06 + sys_28: 3.9839578564707325e-06 + sys_29: -5.969676844870713e-06 + sys_30: -3.350988912158168e-06 + sys_31: 6.584811787366252e-06 + sys_32: -1.0816672496249047e-05 + sys_33: 7.13237006333377e-06 + sys_34: -5.955103120147196e-06 + sys_35: 2.935252379080021e-05 + sys_36: 2.2149857879611683e-05 + sys_37: -1.591375917573143e-05 + sys_38: 4.3395734521003896e-05 + sys_39: 0.004214786994180892 + sys_40: 0.001954903790829068 + sys_41: -0.003963239403308998 + sys_42: -0.0023751727455849844 + sys_43: 0.0002777939418561797 + sys_44: 0.0005314956196176084 + sys_45: 0.00012361876658804544 + sys_46: 0.00010119995450965262 + sys_47: 5.362320525171859e-05 + sys_48: 7.14182223054003e-05 + sys_49: 8.207419097469445e-05 + sys_50: 1.4928332225501216e-05 + sys_51: -5.468782807896701e-05 + sys_52: 5.557362399596695e-05 + sys_53: -7.859758395701238e-05 + sys_54: -6.750577321389685e-05 + sys_55: -4.261546175399222e-06 - lumi_ue: 0.00074 pol: 0.0002838 - sys_0: -2.8208423497214044e-05 - sys_1: -0.0001296214494998226 - sys_2: 1.106076359370503e-05 - sys_3: 6.011371832736453e-05 - sys_4: 2.904922696297081e-05 - sys_5: 5.586325629417675e-05 - sys_6: -5.79164937813366e-05 - sys_7: 4.448209388818208e-05 - sys_8: 5.578229179589497e-06 - sys_9: 4.6463676578901274e-05 - sys_10: -4.034650847939993e-05 - sys_11: 7.683853896225762e-05 - sys_12: -3.306467824838413e-05 - sys_13: -5.272382278705198e-05 - sys_14: -0.00014261992063575166 - sys_15: 9.28890429710147e-07 - sys_16: 7.559899960428745e-05 - sys_17: -4.4505637087405226e-05 - sys_18: 0.0001305551177643821 - sys_19: -0.00023178053794131918 - sys_20: -9.67850557070445e-05 - sys_21: 0.00021756038399333715 - sys_22: -0.00015738271863394968 - sys_23: -2.441109132887584e-06 - sys_24: -8.395625833192957e-06 - sys_25: 1.2701550840269684e-05 - sys_26: -3.638258142572431e-06 - sys_27: 4.117118291756392e-07 - sys_28: -1.7772827950742805e-05 - sys_29: 1.1171025853350348e-05 - sys_30: 1.1360687025107547e-06 - sys_31: -7.076142839114915e-06 - sys_32: 9.364685785291302e-06 - sys_33: -6.886945040875237e-06 - sys_34: 7.950200272153174e-06 - sys_35: -2.4678178050355384e-05 - sys_36: -1.90151458463938e-05 - sys_37: 1.4357207682140233e-05 - sys_38: -3.682305685895156e-05 - sys_39: -0.0008340815362974668 - sys_40: -0.00018340765483818795 - sys_41: 0.00026489978902202873 - sys_42: -0.0006394194285700728 - sys_43: -3.738922712209505e-05 - sys_44: -0.006055690203220315 - sys_45: 0.0006311207432568316 - sys_46: 0.00022931716128035267 - sys_47: 0.00012698635281516868 - sys_48: -5.489075674834433e-05 - sys_49: 8.893099458188388e-05 - sys_50: 1.5300372972038487e-05 - sys_51: -5.045941749138125e-05 - sys_52: 4.4204133415430185e-05 - sys_53: -6.291999267919037e-05 - sys_54: -6.514078312172478e-05 - sys_55: -1.2927391529448429e-06 + sys_0: -2.8208423497213675e-05 + sys_1: -0.0001296214494998223 + sys_2: 1.1060763593704212e-05 + sys_3: 6.011371832736353e-05 + sys_4: 2.904922696297027e-05 + sys_5: 5.586325629417797e-05 + sys_6: -5.791649378133646e-05 + sys_7: 4.448209388818118e-05 + sys_8: 5.578229179588772e-06 + sys_9: 4.646367657890054e-05 + sys_10: -4.03465084793993e-05 + sys_11: 7.683853896225896e-05 + sys_12: -3.306467824838348e-05 + sys_13: 5.272382278704908e-05 + sys_14: 0.0001426199206357512 + sys_15: -9.288904297091633e-07 + sys_16: -7.559899960428639e-05 + sys_17: 4.450563708740444e-05 + sys_18: -0.00013055511776438478 + sys_19: 0.0002317805379413199 + sys_20: 9.678505570705449e-05 + sys_21: -0.0002175603839933293 + sys_22: 0.00015738271863395377 + sys_23: -2.4411091328861852e-06 + sys_24: 8.395625833192962e-06 + sys_25: -1.2701550840267733e-05 + sys_26: 3.638258142573997e-06 + sys_27: -4.117118291743786e-07 + sys_28: 1.777282795074516e-05 + sys_29: -1.1171025853352174e-05 + sys_30: -1.1360687025118082e-06 + sys_31: 7.076142839115132e-06 + sys_32: -9.364685785291378e-06 + sys_33: 6.886945040874358e-06 + sys_34: -7.950200272153872e-06 + sys_35: 2.467817805035404e-05 + sys_36: 1.9015145846390734e-05 + sys_37: -1.4357207682141946e-05 + sys_38: 3.68230568589577e-05 + sys_39: 0.0008340815362974678 + sys_40: 0.0001834076548382231 + sys_41: -0.00026489978902198926 + sys_42: 0.0006394194285701132 + sys_43: -3.738922712214019e-05 + sys_44: -0.006055690203220291 + sys_45: 0.0006311207432569425 + sys_46: 0.0002293171612804536 + sys_47: 0.00012698635281516559 + sys_48: 5.489075674835e-05 + sys_49: 8.893099458187995e-05 + sys_50: 1.5300372972044948e-05 + sys_51: -5.045941749137419e-05 + sys_52: 4.4204133415430944e-05 + sys_53: -6.291999267919374e-05 + sys_54: -6.51407831217252e-05 + sys_55: -1.2927391529462794e-06 - lumi_ue: 0.00078 pol: 0.0003234 - sys_0: -3.7245732577407096e-05 - sys_1: -0.00017688996836566 - sys_2: 1.4253649201988057e-05 - sys_3: 7.914405894696625e-05 - sys_4: 4.664856844953643e-05 - sys_5: 7.375864613808391e-05 - sys_6: -7.524290761288564e-05 - sys_7: 5.9670945950967415e-05 - sys_8: 5.541273549616841e-06 - sys_9: 6.769749200661809e-05 - sys_10: -5.785021192356905e-05 - sys_11: 0.00010893593641156462 - sys_12: -4.94036689658947e-05 - sys_13: -7.825856963811015e-05 - sys_14: -0.00020040676780821903 - sys_15: 9.609023581205882e-06 - sys_16: 0.00011864756608644415 - sys_17: -6.705161393443788e-05 - sys_18: 0.0001966943055857322 - sys_19: -0.0003149961552391067 - sys_20: -0.0001641718938563111 - sys_21: 0.00030166574214749445 - sys_22: -0.0003546968065238325 - sys_23: -1.4731279243305783e-07 - sys_24: -3.234218715169826e-06 - sys_25: 1.1122597126233594e-05 - sys_26: -1.2913568573429015e-06 - sys_27: 5.244694968448883e-06 - sys_28: -2.7044368650192923e-05 - sys_29: 9.37028470299983e-06 - sys_30: -1.1469166769392737e-05 - sys_31: 3.428004637200014e-06 - sys_32: 5.260891711948639e-06 - sys_33: -8.106727032489768e-06 - sys_34: 1.1369320580287e-05 - sys_35: -3.0298098624478566e-05 - sys_36: -2.0875091599194002e-05 - sys_37: 2.0626992196058087e-05 - sys_38: -5.6995344171434623e-05 - sys_39: -0.0023417283138067336 - sys_40: -0.0005191750716800504 - sys_41: 0.0006372918770128616 - sys_42: -0.005869178899793616 - sys_43: 0.000724517506639904 - sys_44: 0.000935699028670827 - sys_45: 0.00013305589411112266 - sys_46: 0.00014674317521564442 - sys_47: 6.717452165255498e-05 - sys_48: -5.9481189353097684e-05 - sys_49: 8.661514745695462e-05 - sys_50: 1.6239651181974897e-05 - sys_51: -5.5458481669323184e-05 - sys_52: 6.023605591727822e-05 - sys_53: -7.636754501750808e-05 - sys_54: -6.370996316790414e-05 - sys_55: -1.134058389151429e-06 + sys_0: -3.7245732577407394e-05 + sys_1: -0.0001768899683656594 + sys_2: 1.4253649201986061e-05 + sys_3: 7.914405894696515e-05 + sys_4: 4.664856844953674e-05 + sys_5: 7.375864613808609e-05 + sys_6: -7.524290761288462e-05 + sys_7: 5.967094595096685e-05 + sys_8: 5.541273549615986e-06 + sys_9: 6.769749200661751e-05 + sys_10: -5.785021192356815e-05 + sys_11: 0.00010893593641156645 + sys_12: -4.940366896589479e-05 + sys_13: 7.825856963810697e-05 + sys_14: 0.0002004067678082181 + sys_15: -9.60902358120336e-06 + sys_16: -0.00011864756608644401 + sys_17: 6.705161393443894e-05 + sys_18: -0.00019669430558573326 + sys_19: 0.0003149961552391121 + sys_20: 0.00016417189385631195 + sys_21: -0.0003016657421474872 + sys_22: 0.0003546968065238367 + sys_23: -1.473127924321449e-07 + sys_24: 3.2342187151695918e-06 + sys_25: -1.1122597126232044e-05 + sys_26: 1.2913568573435791e-06 + sys_27: -5.2446949684472015e-06 + sys_28: 2.7044368650195376e-05 + sys_29: -9.370284703001637e-06 + sys_30: 1.1469166769391761e-05 + sys_31: -3.4280046371990606e-06 + sys_32: -5.260891711949171e-06 + sys_33: 8.106727032490553e-06 + sys_34: -1.1369320580289852e-05 + sys_35: 3.0298098624475896e-05 + sys_36: 2.08750915991921e-05 + sys_37: -2.0626992196058524e-05 + sys_38: 5.69953441714313e-05 + sys_39: 0.002341728313806769 + sys_40: 0.0005191750716800946 + sys_41: -0.0006372918770125576 + sys_42: 0.005869178899793615 + sys_43: 0.0007245175066399343 + sys_44: 0.0009356990286708484 + sys_45: 0.0001330558941111196 + sys_46: 0.00014674317521562322 + sys_47: 6.717452165254651e-05 + sys_48: 5.948118935309835e-05 + sys_49: 8.661514745695493e-05 + sys_50: 1.6239651181976114e-05 + sys_51: -5.545848166932455e-05 + sys_52: 6.023605591727804e-05 + sys_53: -7.636754501750809e-05 + sys_54: -6.370996316790278e-05 + sys_55: -1.134058389153143e-06 - lumi_ue: 0.00081 pol: 0.0003036 - sys_0: -4.4726586672031056e-05 - sys_1: -0.0002232049836048126 - sys_2: 1.930965709267777e-05 - sys_3: 0.00010290587178072379 - sys_4: 5.5472378566763874e-05 - sys_5: 9.302606085895645e-05 - sys_6: -0.00010509424138886073 - sys_7: 8.448592848368345e-05 - sys_8: 6.681249469923321e-06 - sys_9: 8.748120209809356e-05 - sys_10: -8.104593924458233e-05 - sys_11: 0.00015016781480677266 - sys_12: -6.988422941957524e-05 - sys_13: -0.0001220176042869151 - sys_14: -0.0003343053167107251 - sys_15: 4.9829441943693725e-05 - sys_16: 0.0002790979397426868 - sys_17: -0.0001752282147043949 - sys_18: 0.0007972545576751394 - sys_19: -0.0017058534866454666 - sys_20: -0.0015932073068241149 - sys_21: 0.0072652903453138025 - sys_22: 0.0003451134191933124 - sys_23: 4.5324416453712426e-07 - sys_24: -3.146028072377875e-07 - sys_25: 3.7524967551103017e-06 - sys_26: 9.160440344990903e-07 - sys_27: 5.2035020203985726e-06 - sys_28: -2.395356118532009e-05 - sys_29: 1.632315423860819e-06 - sys_30: -1.6799444588823624e-05 - sys_31: 1.2268602954708336e-05 - sys_32: -6.169823146187268e-06 - sys_33: -5.07332947247747e-06 - sys_34: 1.2323832101718994e-05 - sys_35: -1.154307347310641e-05 - sys_36: -1.103728924609777e-05 - sys_37: 1.409950119821418e-05 - sys_38: -4.309680777393682e-05 - sys_39: 0.0005812536568989475 - sys_40: 6.329227579911895e-05 - sys_41: -4.479621113276065e-05 - sys_42: 0.0001827808607415231 - sys_43: 3.385297515458909e-05 - sys_44: 0.000156614889639542 - sys_45: 3.7020331130199915e-05 - sys_46: 4.3117150420162634e-05 - sys_47: 2.185789521918538e-05 - sys_48: -3.1663025407221416e-05 - sys_49: 4.7667126117050176e-05 - sys_50: 1.077222091398273e-05 - sys_51: -3.3807833940921354e-05 - sys_52: 4.886062987420653e-05 - sys_53: -4.4287020636003795e-05 - sys_54: -3.6385879460265136e-05 - sys_55: -4.43108938012244e-06 + sys_0: -4.472658667203097e-05 + sys_1: -0.00022320498360481306 + sys_2: 1.930965709267514e-05 + sys_3: 0.0001029058717807227 + sys_4: 5.5472378566763054e-05 + sys_5: 9.302606085895745e-05 + sys_6: -0.00010509424138886069 + sys_7: 8.448592848368355e-05 + sys_8: 6.681249469921787e-06 + sys_9: 8.748120209809157e-05 + sys_10: -8.104593924458413e-05 + sys_11: 0.00015016781480677602 + sys_12: -6.988422941957575e-05 + sys_13: 0.00012201760428691107 + sys_14: 0.0003343053167107238 + sys_15: -4.9829441943693325e-05 + sys_16: -0.0002790979397426759 + sys_17: 0.00017522821470439945 + sys_18: -0.0007972545576751336 + sys_19: 0.001705853486645549 + sys_20: 0.001593207306824388 + sys_21: -0.007265290345313723 + sys_22: -0.00034511341919330385 + sys_23: 4.532441645369177e-07 + sys_24: 3.146028072378075e-07 + sys_25: -3.7524967551096944e-06 + sys_26: -9.160440344987183e-07 + sys_27: -5.203502020398029e-06 + sys_28: 2.3953561185320157e-05 + sys_29: -1.6323154238612967e-06 + sys_30: 1.6799444588822865e-05 + sys_31: -1.2268602954708159e-05 + sys_32: 6.169823146186467e-06 + sys_33: 5.073329472477504e-06 + sys_34: -1.2323832101719387e-05 + sys_35: 1.1543073473105702e-05 + sys_36: 1.1037289246099118e-05 + sys_37: -1.4099501198214074e-05 + sys_38: 4.309680777393709e-05 + sys_39: -0.0005812536568989444 + sys_40: -6.329227579912241e-05 + sys_41: 4.479621113274142e-05 + sys_42: -0.0001827808607415242 + sys_43: 3.385297515458926e-05 + sys_44: 0.00015661488963954182 + sys_45: 3.702033113019872e-05 + sys_46: 4.3117150420161706e-05 + sys_47: 2.1857895219185292e-05 + sys_48: 3.1663025407221545e-05 + sys_49: 4.766712611705048e-05 + sys_50: 1.07722209139849e-05 + sys_51: -3.380783394091825e-05 + sys_52: 4.8860629874207706e-05 + sys_53: -4.428702063600286e-05 + sys_54: -3.638587946026271e-05 + sys_55: -4.431089380123702e-06 - lumi_ue: 0.00052 pol: 0.001023 - sys_0: -3.6851051832564245e-05 - sys_1: -0.00018315262229772047 - sys_2: 8.0475389742328e-06 - sys_3: 8.747458576762811e-05 - sys_4: 4.604382030010949e-05 - sys_5: 7.886868574250886e-05 - sys_6: -9.323578490732509e-05 - sys_7: 7.375594648142209e-05 - sys_8: 7.5359084570723e-06 - sys_9: 7.92409542307723e-05 - sys_10: -7.591651260195308e-05 - sys_11: 0.00012618803916217692 - sys_12: -7.129545877318187e-05 - sys_13: -0.00012344133286351893 - sys_14: -0.0003069188799293198 - sys_15: 5.051279960383146e-05 - sys_16: 0.00028037240016759045 - sys_17: -0.00017683354152860366 - sys_18: 0.001218209243814843 - sys_19: -0.007410783703376809 - sys_20: 0.0019344999026569502 - sys_21: -0.001442637388968034 - sys_22: 0.00023211272579884952 - sys_23: 5.574940428201582e-07 - sys_24: 2.901768648872038e-07 - sys_25: 1.7061436152833473e-06 - sys_26: 1.3155372545848695e-06 - sys_27: 3.997787115229357e-06 - sys_28: -2.0283234061487872e-05 - sys_29: -3.2587125083844783e-06 - sys_30: -2.951718138146688e-05 - sys_31: 2.631480632221876e-05 - sys_32: -2.5709121848081894e-05 - sys_33: -2.806091602457141e-06 - sys_34: 1.7361818416981875e-05 - sys_35: 9.266698093410079e-06 - sys_36: -3.873823483687513e-06 - sys_37: 1.1374213908359506e-05 - sys_38: -4.0733682499235415e-05 - sys_39: 0.00036730140765116906 - sys_40: 3.424113414049873e-05 - sys_41: 2.689042500845868e-05 - sys_42: 9.397623269863045e-05 - sys_43: 4.1095830477444774e-05 - sys_44: 9.33712456608814e-05 - sys_45: 3.28121718555375e-05 - sys_46: 3.2824560979177996e-05 - sys_47: 1.3752222689708274e-05 - sys_48: -2.5620558114711776e-05 - sys_49: 3.2323006494406015e-05 - sys_50: 1.1588531283972245e-05 - sys_51: -2.3778375707028997e-05 - sys_52: 5.2063357245076694e-05 - sys_53: -1.7597588331842666e-05 - sys_54: -1.185055537897645e-05 - sys_55: -9.56654039768393e-07 + sys_0: -3.6851051832564e-05 + sys_1: -0.00018315262229772026 + sys_2: 8.047538974231176e-06 + sys_3: 8.747458576762756e-05 + sys_4: 4.604382030010931e-05 + sys_5: 7.886868574251056e-05 + sys_6: -9.323578490732414e-05 + sys_7: 7.375594648142141e-05 + sys_8: 7.53590845707137e-06 + sys_9: 7.924095423077127e-05 + sys_10: -7.591651260195342e-05 + sys_11: 0.0001261880391621809 + sys_12: -7.129545877318275e-05 + sys_13: 0.00012344133286351479 + sys_14: 0.00030691887992931994 + sys_15: -5.051279960382953e-05 + sys_16: -0.0002803724001675834 + sys_17: 0.00017683354152860429 + sys_18: -0.0012182092438148453 + sys_19: 0.007410783703376743 + sys_20: -0.0019344999026572357 + sys_21: 0.001442637388967993 + sys_22: -0.00023211272579883784 + sys_23: 5.574940428198949e-07 + sys_24: -2.9017686488768436e-07 + sys_25: -1.7061436152827985e-06 + sys_26: -1.315537254585339e-06 + sys_27: -3.997787115229295e-06 + sys_28: 2.0283234061488197e-05 + sys_29: 3.2587125083830866e-06 + sys_30: 2.9517181381465622e-05 + sys_31: -2.6314806322219245e-05 + sys_32: 2.5709121848081288e-05 + sys_33: 2.8060916024566943e-06 + sys_34: -1.736181841698116e-05 + sys_35: -9.26669809341144e-06 + sys_36: 3.8738234836884e-06 + sys_37: -1.1374213908359038e-05 + sys_38: 4.073368249923571e-05 + sys_39: -0.0003673014076511754 + sys_40: -3.424113414049352e-05 + sys_41: -2.6890425008469328e-05 + sys_42: -9.397623269862915e-05 + sys_43: 4.109583047744366e-05 + sys_44: 9.337124566087954e-05 + sys_45: 3.2812171855533395e-05 + sys_46: 3.282456097917641e-05 + sys_47: 1.3752222689707706e-05 + sys_48: 2.562055811471101e-05 + sys_49: 3.2323006494406455e-05 + sys_50: 1.1588531283974242e-05 + sys_51: -2.3778375707027367e-05 + sys_52: 5.206335724507703e-05 + sys_53: -1.7597588331843446e-05 + sys_54: -1.18505553789756e-05 + sys_55: -9.566540397684303e-07 - lumi_ue: 0.00053 pol: 0.000297 - sys_0: -8.127487183620857e-05 - sys_1: -0.0003817356735135584 - sys_2: 2.1028038340830418e-05 - sys_3: 0.00018673122058425777 - sys_4: 0.00010170773515022082 - sys_5: 0.00016651804853377338 - sys_6: -0.00021419020818398604 - sys_7: 0.00017029952579432518 - sys_8: 2.4277265425752085e-05 - sys_9: 0.0002148079674111349 - sys_10: -0.00019903795691271766 - sys_11: 0.00035159399247598993 - sys_12: -0.00022247436613809278 - sys_13: -0.0006153914336301902 - sys_14: -0.008684383189447458 - sys_15: -0.004548153366345827 - sys_16: -0.0003883983927366731 - sys_17: 8.834479934176125e-05 - sys_18: -0.00033035923383176175 - sys_19: 0.00023989039451241447 - sys_20: 7.237830580567742e-05 - sys_21: -0.00015918690767662707 - sys_22: 0.00011363070983500269 - sys_23: 2.894132312130119e-07 - sys_24: 4.104267965409179e-07 - sys_25: 1.3682951907764356e-07 - sys_26: 7.285139226635775e-07 - sys_27: -1.8899185255832693e-06 - sys_28: -9.263669298431824e-06 - sys_29: -1.62666281983526e-06 - sys_30: -1.8295471301245582e-05 - sys_31: 3.358871861543445e-05 - sys_32: -3.7420379675327735e-05 - sys_33: -5.502109619500464e-06 - sys_34: 2.3608170499684587e-05 - sys_35: 2.761473315324306e-05 - sys_36: -1.2345586410347965e-06 - sys_37: 9.749743620811008e-06 - sys_38: -4.075575552979959e-05 - sys_39: 0.00022185541272550893 - sys_40: 5.885135981170623e-06 - sys_41: 4.6512116134963874e-05 - sys_42: 3.596688274238159e-05 - sys_43: 2.674325850147141e-05 - sys_44: 4.3023792761801346e-05 - sys_45: 2.6848840906865558e-05 - sys_46: 2.6280856903530737e-05 - sys_47: 9.607337554411997e-06 - sys_48: -2.088241362218893e-05 - sys_49: 3.006094624195415e-05 - sys_50: 8.433366446386961e-06 - sys_51: -2.750223556799361e-05 - sys_52: 5.602358153433155e-05 - sys_53: 6.0501697387151425e-06 - sys_54: -2.799317025098196e-06 - sys_55: -1.3376849160661675e-06 + sys_0: -8.12748718362083e-05 + sys_1: -0.00038173567351355847 + sys_2: 2.102803834082471e-05 + sys_3: 0.0001867312205842557 + sys_4: 0.00010170773515022121 + sys_5: 0.00016651804853377319 + sys_6: -0.0002141902081839864 + sys_7: 0.0001702995257943224 + sys_8: 2.427726542574997e-05 + sys_9: 0.00021480796741113524 + sys_10: -0.00019903795691271402 + sys_11: 0.00035159399247600517 + sys_12: -0.00022247436613809818 + sys_13: 0.0006153914336301819 + sys_14: 0.00868438318944743 + sys_15: 0.0045481533663459155 + sys_16: 0.00038839839273668115 + sys_17: -8.834479934176649e-05 + sys_18: 0.00033035923383176494 + sys_19: -0.0002398903945124177 + sys_20: -7.237830580567827e-05 + sys_21: 0.00015918690767662333 + sys_22: -0.00011363070983500529 + sys_23: 2.8941323121334443e-07 + sys_24: -4.104267965411893e-07 + sys_25: -1.36829519077312e-07 + sys_26: -7.285139226639097e-07 + sys_27: 1.8899185255828267e-06 + sys_28: 9.263669298432002e-06 + sys_29: 1.626662819834579e-06 + sys_30: 1.8295471301244932e-05 + sys_31: -3.358871861543475e-05 + sys_32: 3.7420379675327023e-05 + sys_33: 5.5021096195008096e-06 + sys_34: -2.3608170499683892e-05 + sys_35: -2.7614733153244657e-05 + sys_36: 1.234558641035004e-06 + sys_37: -9.74974362081029e-06 + sys_38: 4.075575552979908e-05 + sys_39: -0.0002218554127255123 + sys_40: -5.885135981160684e-06 + sys_41: -4.6512116134965995e-05 + sys_42: -3.596688274237884e-05 + sys_43: 2.6743258501470983e-05 + sys_44: 4.302379276180213e-05 + sys_45: 2.6848840906864328e-05 + sys_46: 2.628085690353038e-05 + sys_47: 9.607337554411807e-06 + sys_48: 2.088241362219003e-05 + sys_49: 3.006094624195389e-05 + sys_50: 8.43336644638793e-06 + sys_51: -2.7502235567992615e-05 + sys_52: 5.602358153433234e-05 + sys_53: 6.0501697387150985e-06 + sys_54: -2.7993170250990625e-06 + sys_55: -1.3376849160661355e-06 - lumi_ue: 0.00041 pol: 0.0006864 - sys_0: -0.00010998527336541484 - sys_1: -0.0005050281450117746 - sys_2: 3.352610635675113e-05 - sys_3: 0.00026639817387869166 - sys_4: 0.0001531260469073154 - sys_5: 0.0002717251362922981 - sys_6: -0.00037745603784729233 - sys_7: 0.00034004595459812995 - sys_8: 5.2436167737090274e-05 - sys_9: 0.0007453914385457638 - sys_10: -0.0006950184053420355 - sys_11: 0.01256556149356177 - sys_12: 0.00177513031712485 - sys_13: 0.0004454487326654859 - sys_14: 0.0004081991557363394 - sys_15: -0.0001723169344357186 - sys_16: -0.00010912211637180873 - sys_17: 2.6757645780517014e-05 - sys_18: -0.00011447801352126508 - sys_19: 6.402438361002494e-05 - sys_20: -5.9803446779911885e-05 - sys_21: -8.265005520112094e-05 - sys_22: 5.517613003674713e-05 - sys_23: 1.8366002413931164e-07 - sys_24: 2.687178398034736e-07 - sys_25: -3.1707189186484774e-07 - sys_26: 2.196816294541908e-07 - sys_27: -2.9810128128176725e-06 - sys_28: -3.631002683763918e-06 - sys_29: -5.002597688925614e-07 - sys_30: -7.008969584752121e-06 - sys_31: 1.6711440884501734e-05 - sys_32: -4.984944175872482e-05 - sys_33: -5.934151121897502e-06 - sys_34: 3.178142340494821e-05 - sys_35: 5.560946891282736e-05 - sys_36: 4.853802447760553e-06 - sys_37: 5.172137600821189e-06 - sys_38: -2.893363527646991e-05 - sys_39: 0.00011627647586798145 - sys_40: -2.6705842013357576e-06 - sys_41: 4.637143915840722e-05 - sys_42: 9.05472123567719e-06 - sys_43: 1.0706640869244046e-05 - sys_44: 1.5995694852388327e-05 - sys_45: 1.5533856005275626e-05 - sys_46: 1.4271533027693282e-05 - sys_47: 4.93732630045959e-06 - sys_48: -8.623467612206894e-06 - sys_49: 1.2046038193068147e-05 - sys_50: 3.949036001371848e-06 - sys_51: -1.0073681156321285e-05 - sys_52: 4.82119688446908e-05 - sys_53: 5.89529528940033e-05 - sys_54: 3.0304987280665183e-05 - sys_55: -3.127499092928875e-07 + sys_0: -0.00010998527336541574 + sys_1: -0.0005050281450117719 + sys_2: 3.352610635674458e-05 + sys_3: 0.00026639817387868927 + sys_4: 0.00015312604690732043 + sys_5: 0.0002717251362922906 + sys_6: -0.0003774560378472882 + sys_7: 0.00034004595459813706 + sys_8: 5.243616773709424e-05 + sys_9: 0.0007453914385457792 + sys_10: -0.0006950184053419128 + sys_11: 0.012565561493561762 + sys_12: 0.0017751303171248747 + sys_13: -0.0004454487326654912 + sys_14: -0.00040819915573635045 + sys_15: 0.00017231693443571822 + sys_16: 0.00010912211637181463 + sys_17: -2.675764578052294e-05 + sys_18: 0.00011447801352126889 + sys_19: -6.402438361002465e-05 + sys_20: 5.980344677990907e-05 + sys_21: 8.26500552011239e-05 + sys_22: -5.517613003674958e-05 + sys_23: 1.8366002413949052e-07 + sys_24: -2.6871783980360285e-07 + sys_25: 3.1707189186518417e-07 + sys_26: -2.1968162945386852e-07 + sys_27: 2.9810128128175382e-06 + sys_28: 3.6310026837641187e-06 + sys_29: 5.002597688923447e-07 + sys_30: 7.008969584751417e-06 + sys_31: -1.6711440884501877e-05 + sys_32: 4.984944175872457e-05 + sys_33: 5.934151121897645e-06 + sys_34: -3.178142340494633e-05 + sys_35: -5.560946891282946e-05 + sys_36: -4.853802447759818e-06 + sys_37: -5.172137600821502e-06 + sys_38: 2.8933635276470506e-05 + sys_39: -0.00011627647586798541 + sys_40: 2.6705842013449187e-06 + sys_41: -4.637143915840714e-05 + sys_42: -9.054721235675195e-06 + sys_43: 1.0706640869244072e-05 + sys_44: 1.5995694852390058e-05 + sys_45: 1.5533856005275514e-05 + sys_46: 1.4271533027693987e-05 + sys_47: 4.937326300459931e-06 + sys_48: 8.623467612208207e-06 + sys_49: 1.2046038193069004e-05 + sys_50: 3.949036001371788e-06 + sys_51: -1.0073681156321853e-05 + sys_52: 4.8211968844691346e-05 + sys_53: 5.895295289400225e-05 + sys_54: 3.0304987280662978e-05 + sys_55: -3.1274990929182215e-07 - lumi_ue: 0.00041 pol: 0.0022836 - sys_0: -0.00016618743571682312 - sys_1: -0.0009249049176775929 - sys_2: 2.7262323269291602e-05 - sys_3: 0.000582407635923527 - sys_4: 0.0005029021770657145 - sys_5: 0.019147024737072128 - sys_6: 0.0018012623239616091 - sys_7: -0.0007031967922943018 - sys_8: -2.65315713294099e-05 - sys_9: -0.0005328418069520835 - sys_10: -0.00012940874310710023 - sys_11: -0.00018508666321633544 - sys_12: 0.00010395462381360342 - sys_13: 0.00010463465659774447 - sys_14: 0.00013128870111458118 - sys_15: -9.040111510904033e-05 - sys_16: -3.130312477855062e-05 - sys_17: 5.158218786122131e-06 - sys_18: -3.576984117741604e-05 - sys_19: -6.680514543453011e-07 - sys_20: -0.0001359870080444968 - sys_21: -5.895928799765194e-05 - sys_22: 2.6514398224601e-05 - sys_23: 5.953028299980223e-08 - sys_24: 1.3786352742105116e-07 - sys_25: -2.8044347923403405e-07 - sys_26: 5.750588438287769e-08 - sys_27: -2.215491686034969e-06 - sys_28: -1.0835977720709046e-06 - sys_29: -1.1088089288370602e-07 - sys_30: -1.5753508350229252e-06 - sys_31: 3.746020159111672e-06 - sys_32: -1.7413662228742513e-05 - sys_33: -5.90713620299078e-06 - sys_34: 3.049874678587985e-05 - sys_35: 5.900391592847427e-05 - sys_36: 7.17549081188856e-06 - sys_37: 3.1253606423434375e-06 - sys_38: -1.6993638079785997e-05 - sys_39: 5.4364092564420575e-05 - sys_40: -8.191156661878228e-07 - sys_41: 2.5756208848249196e-05 - sys_42: 4.789711993580272e-07 - sys_43: 4.8957174920469035e-06 - sys_44: 5.967468367108113e-06 - sys_45: 6.115529416456012e-06 - sys_46: 5.583029698239167e-06 - sys_47: 1.3922624363607396e-06 - sys_48: -1.0326865513038552e-06 - sys_49: -2.1645112791275455e-07 - sys_50: 1.1630478545448002e-06 - sys_51: -1.2079626944336217e-06 - sys_52: 3.31535333462644e-05 - sys_53: 8.351813914768693e-05 - sys_54: 4.231503481566085e-05 - sys_55: 8.573807987173477e-07 + sys_0: -0.0001661874357168241 + sys_1: -0.0009249049176775947 + sys_2: 2.7262323269280598e-05 + sys_3: 0.0005824076359235197 + sys_4: 0.0005029021770657166 + sys_5: 0.019147024737072138 + sys_6: 0.001801262323961733 + sys_7: -0.0007031967922943187 + sys_8: -2.653157132941509e-05 + sys_9: -0.0005328418069520765 + sys_10: -0.0001294087431071075 + sys_11: -0.0001850866632163268 + sys_12: 0.000103954623813598 + sys_13: -0.00010463465659774159 + sys_14: -0.00013128870111458002 + sys_15: 9.040111510903864e-05 + sys_16: 3.1303124778550294e-05 + sys_17: -5.158218786121246e-06 + sys_18: 3.5769841177415974e-05 + sys_19: 6.680514543497072e-07 + sys_20: 0.00013598700804449442 + sys_21: 5.895928799765774e-05 + sys_22: -2.651439822460141e-05 + sys_23: 5.9530282999703656e-08 + sys_24: -1.3786352742095131e-07 + sys_25: 2.8044347923400414e-07 + sys_26: -5.7505884382875226e-08 + sys_27: 2.2154916860351005e-06 + sys_28: 1.0835977720710646e-06 + sys_29: 1.108808928835767e-07 + sys_30: 1.5753508350226184e-06 + sys_31: -3.7460201591115616e-06 + sys_32: 1.7413662228742723e-05 + sys_33: 5.9071362029909315e-06 + sys_34: -3.049874678587777e-05 + sys_35: -5.9003915928476616e-05 + sys_36: -7.1754908118885375e-06 + sys_37: -3.12536064234354e-06 + sys_38: 1.699363807978617e-05 + sys_39: -5.436409256442066e-05 + sys_40: 8.19115666192217e-07 + sys_41: -2.5756208848249396e-05 + sys_42: -4.789711993568453e-07 + sys_43: 4.8957174920466824e-06 + sys_44: 5.967468367108845e-06 + sys_45: 6.115529416455545e-06 + sys_46: 5.583029698238927e-06 + sys_47: 1.392262436360536e-06 + sys_48: 1.0326865513039524e-06 + sys_49: -2.1645112791244728e-07 + sys_50: 1.1630478545444106e-06 + sys_51: -1.207962694434253e-06 + sys_52: 3.315353334626531e-05 + sys_53: 8.351813914768703e-05 + sys_54: 4.2315034815658444e-05 + sys_55: 8.573807987190183e-07 - lumi_ue: 0.00041 pol: 0.0039138 - sys_0: -0.000892631264473606 - sys_1: -0.02874189420593264 - sys_2: 0.00762427273134666 - sys_3: -0.005355774714251392 - sys_4: -0.0016523081275802128 - sys_5: -0.0005870263850549635 - sys_6: 0.000562351146244618 - sys_7: -0.00039334102984092207 - sys_8: -2.5868067609434934e-05 - sys_9: -0.00045984363203346754 - sys_10: -0.0002038188210145172 - sys_11: -0.00019128540774674945 - sys_12: 0.0001116438629107219 - sys_13: 0.00011535421157420143 - sys_14: 0.00014947525600426427 - sys_15: -8.341168992129614e-05 - sys_16: -4.750703584180613e-05 - sys_17: 1.1660869369723163e-05 - sys_18: -4.975082025817086e-05 - sys_19: 1.3168690089512011e-06 - sys_20: -0.00016065045437935072 - sys_21: -7.574940023288951e-05 - sys_22: 3.8110444510502895e-05 - sys_23: -5.501731455975442e-08 - sys_24: 1.2265007137037905e-07 - sys_25: -4.0098610261221476e-07 - sys_26: -1.5293037476219988e-07 - sys_27: -3.4706504418882853e-06 - sys_28: -4.908787594824853e-07 - sys_29: 1.7326324295919352e-07 - sys_30: 6.172384178452741e-07 - sys_31: -1.8271604622212806e-06 - sys_32: -5.223587519882549e-07 - sys_33: -4.872990791971966e-06 - sys_34: 1.233986070906926e-05 - sys_35: 9.864580168029631e-06 - sys_36: -5.161445456347698e-06 - sys_37: 6.6757016644183745e-06 - sys_38: -2.1702989774034057e-05 - sys_39: 6.789738294598187e-05 - sys_40: -2.620808230207389e-06 - sys_41: 2.1233786915053252e-05 - sys_42: 4.795968014840895e-06 - sys_43: 1.2219633401163899e-05 - sys_44: 9.835317240684997e-06 - sys_45: 1.1942924486898598e-05 - sys_46: 1.107470474493067e-05 - sys_47: 5.805230576899354e-06 - sys_48: -6.755179406198972e-06 - sys_49: 8.339943444766866e-06 - sys_50: 1.2519038475118441e-06 - sys_51: -5.4846370247046285e-06 - sys_52: 3.153373460964659e-05 - sys_53: 7.338260329569087e-05 - sys_54: 3.1616748234373464e-05 - sys_55: 3.4029412750801136e-08 + sys_0: -0.0008926312644736197 + sys_1: -0.028741894205932653 + sys_2: 0.007624272731346688 + sys_3: -0.005355774714251373 + sys_4: -0.0016523081275802332 + sys_5: -0.0005870263850549692 + sys_6: 0.0005623511462446131 + sys_7: -0.0003933410298409222 + sys_8: -2.5868067609435886e-05 + sys_9: -0.00045984363203346596 + sys_10: -0.00020381882101451883 + sys_11: -0.00019128540774674847 + sys_12: 0.00011164386291072065 + sys_13: -0.00011535421157420068 + sys_14: -0.00014947525600426468 + sys_15: 8.341168992129444e-05 + sys_16: 4.7507035841805704e-05 + sys_17: -1.1660869369722017e-05 + sys_18: 4.975082025817095e-05 + sys_19: -1.31686900894645e-06 + sys_20: 0.00016065045437934679 + sys_21: 7.57494002328961e-05 + sys_22: -3.8110444510503736e-05 + sys_23: -5.501731455971632e-08 + sys_24: -1.2265007137040322e-07 + sys_25: 4.009861026122692e-07 + sys_26: 1.5293037476219118e-07 + sys_27: 3.4706504418882523e-06 + sys_28: 4.908787594823468e-07 + sys_29: -1.7326324295917147e-07 + sys_30: -6.172384178453606e-07 + sys_31: 1.827160462221337e-06 + sys_32: 5.22358751988402e-07 + sys_33: 4.87299079197167e-06 + sys_34: -1.2339860709068815e-05 + sys_35: -9.864580168030363e-06 + sys_36: 5.161445456347699e-06 + sys_37: -6.675701664418382e-06 + sys_38: 2.1702989774034213e-05 + sys_39: -6.78973829459819e-05 + sys_40: 2.620808230210623e-06 + sys_41: -2.1233786915053232e-05 + sys_42: -4.795968014839859e-06 + sys_43: 1.2219633401163822e-05 + sys_44: 9.835317240685698e-06 + sys_45: 1.1942924486898265e-05 + sys_46: 1.1074704744930776e-05 + sys_47: 5.805230576899327e-06 + sys_48: 6.755179406199044e-06 + sys_49: 8.339943444766979e-06 + sys_50: 1.251903847511703e-06 + sys_51: -5.484637024705254e-06 + sys_52: 3.153373460964743e-05 + sys_53: 7.338260329569106e-05 + sys_54: 3.1616748234371255e-05 + sys_55: 3.40294127521254e-08 diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_2JET_510GEV/uncertainties_D.yaml b/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_2JET_510GEV/uncertainties_D.yaml index 87fc6c8595..b8a1174102 100644 --- a/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_2JET_510GEV/uncertainties_D.yaml +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_2JET_510GEV/uncertainties_D.yaml @@ -234,639 +234,639 @@ definitions: bins: - lumi_ue: 0.00131 pol: 0.00035640000000000004 - sys_0: -2.0062120884862804e-05 - sys_1: -8.342783996468345e-05 - sys_2: -3.5351973334932125e-06 - sys_3: 4.0586484737603695e-05 - sys_4: 4.50454317595685e-05 - sys_5: 6.16399279411733e-05 - sys_6: -0.00024499387580902653 - sys_7: 0.0002989822117559423 - sys_8: 0.016095360786608188 - sys_9: -0.00011842466768549145 - sys_10: 2.868799330932109e-05 - sys_11: -5.766516721406417e-05 - sys_12: 5.941926144653167e-05 - sys_13: 1.1665963479959004e-05 - sys_14: 2.3370311079079263e-05 - sys_15: -4.793089869935928e-06 - sys_16: -3.32896731401081e-05 - sys_17: -8.502033148331557e-07 - sys_18: -3.939482775299507e-06 - sys_19: 5.420332577730775e-06 - sys_20: 5.135374720000157e-06 - sys_21: -1.885044302181326e-06 - sys_22: 1.990669560836701e-05 - sys_23: -1.6993339371484715e-06 - sys_24: -9.886388960773938e-08 - sys_25: -4.463317990119991e-07 - sys_26: -8.704986114731231e-07 - sys_27: -1.6053869432533879e-06 - sys_28: -4.4293888039365944e-07 - sys_29: 1.0423425862585665e-07 - sys_30: 3.0883570826348495e-07 - sys_31: -4.018132155078554e-07 - sys_32: 6.564515996955875e-07 - sys_33: 3.4501896528880987e-08 - sys_34: 1.3946364042165036e-07 - sys_35: -1.1555748796485615e-06 - sys_36: -8.323423288021316e-07 - sys_37: 8.508586380920373e-07 - sys_38: -9.234537273825932e-07 - sys_39: 4.65283342738723e-06 - sys_40: 6.365312371601071e-07 - sys_41: 1.3028726677772128e-06 - sys_42: 1.0010914040900601e-06 - sys_43: 1.5321779791597853e-06 - sys_44: 2.849451131158415e-06 - sys_45: 4.880660695732809e-06 - sys_46: 2.12296612621708e-05 - sys_47: 1.2719601923802805e-05 - sys_48: -3.1281757111685283e-06 - sys_49: 3.0487849119895314e-06 - sys_50: -3.9282823781696213e-07 - sys_51: -1.038529652867925e-05 - sys_52: 7.474055417062909e-09 - sys_53: 3.10360023176195e-06 - sys_54: -1.0883678971144967e-05 - sys_55: 1.3096393844500246e-05 + sys_0: -2.0062120884862218e-05 + sys_1: -8.342783996468118e-05 + sys_2: -3.5351973334939426e-06 + sys_3: 4.0586484737599114e-05 + sys_4: 4.5045431759577696e-05 + sys_5: 6.163992794116611e-05 + sys_6: -0.00024499387580902973 + sys_7: 0.00029898221175587867 + sys_8: 0.016095360786608205 + sys_9: -0.00011842466768544848 + sys_10: 2.8687993309311487e-05 + sys_11: -5.766516721406502e-05 + sys_12: 5.941926144653147e-05 + sys_13: -1.1665963479960417e-05 + sys_14: -2.3370311079081004e-05 + sys_15: 4.793089869936353e-06 + sys_16: 3.3289673140109204e-05 + sys_17: 8.502033148309577e-07 + sys_18: 3.9394827753006256e-06 + sys_19: -5.4203325777318105e-06 + sys_20: -5.135374720000579e-06 + sys_21: 1.8850443021814505e-06 + sys_22: -1.990669560836769e-05 + sys_23: -1.6993339371484315e-06 + sys_24: 9.886388960781466e-08 + sys_25: 4.463317990119099e-07 + sys_26: 8.704986114725813e-07 + sys_27: 1.6053869432532841e-06 + sys_28: 4.4293888039359793e-07 + sys_29: -1.0423425862567864e-07 + sys_30: -3.0883570826344773e-07 + sys_31: 4.0181321550779894e-07 + sys_32: -6.5645159969551e-07 + sys_33: -3.450189652884701e-08 + sys_34: -1.3946364042169964e-07 + sys_35: 1.1555748796485164e-06 + sys_36: 8.323423288023323e-07 + sys_37: -8.508586380921725e-07 + sys_38: 9.234537273826128e-07 + sys_39: -4.652833427388299e-06 + sys_40: -6.365312371594692e-07 + sys_41: -1.302872667777249e-06 + sys_42: -1.0010914040899962e-06 + sys_43: 1.5321779791596498e-06 + sys_44: 2.849451131159208e-06 + sys_45: 4.8806606957326335e-06 + sys_46: 2.1229661262170867e-05 + sys_47: 1.2719601923802972e-05 + sys_48: 3.128175711168596e-06 + sys_49: 3.048784911989552e-06 + sys_50: -3.9282823781659303e-07 + sys_51: -1.0385296528679144e-05 + sys_52: 7.474055417198249e-09 + sys_53: 3.10360023176149e-06 + sys_54: -1.0883678971145172e-05 + sys_55: 1.3096393844499875e-05 - lumi_ue: 0.00022 pol: 0.0002772 - sys_0: -1.708740635058764e-05 - sys_1: -6.973179168523495e-05 - sys_2: 3.92238754822553e-07 - sys_3: 3.265093646026979e-05 - sys_4: 1.7362687065483883e-05 - sys_5: 2.8071446958028452e-05 - sys_6: -3.6359794509993205e-05 - sys_7: 2.6239435430057358e-05 - sys_8: 2.1766096325559404e-05 - sys_9: 2.2293550055041223e-05 - sys_10: -2.0208004935069487e-05 - sys_11: 2.7861914940388643e-05 - sys_12: -2.3190465493926818e-05 - sys_13: -2.3847337093479192e-05 - sys_14: -4.90466361949816e-05 - sys_15: 1.5845069913353557e-05 - sys_16: 4.332425827442046e-05 - sys_17: -7.393734212112634e-06 - sys_18: 3.795936734795497e-05 - sys_19: -2.604483801594007e-05 - sys_20: -3.083164796982167e-05 - sys_21: 1.637229511807178e-05 - sys_22: -6.73937054998053e-05 - sys_23: -1.0829636326317243e-05 - sys_24: -9.569083175176174e-06 - sys_25: 1.6957860239881433e-06 - sys_26: -5.719677228812506e-06 - sys_27: -1.381953052946475e-05 - sys_28: -4.930234895290332e-06 - sys_29: 1.6693600836797306e-06 - sys_30: 1.1567625829751785e-06 - sys_31: -4.222413593764469e-06 - sys_32: 8.28464377765964e-06 - sys_33: -8.33435961767945e-06 - sys_34: 5.576007799417005e-06 - sys_35: -2.421360963752023e-05 - sys_36: -2.585084106168251e-05 - sys_37: 1.4991882903581555e-05 - sys_38: -4.729360261647242e-05 - sys_39: -8.23605641410988e-05 - sys_40: 3.567667973424631e-07 - sys_41: -2.6119346886322074e-05 - sys_42: -1.1731479014364952e-05 - sys_43: -1.9073562193820955e-05 - sys_44: -2.7599950309431107e-05 - sys_45: -4.130153811002766e-05 - sys_46: -0.00012182701727078727 - sys_47: -7.482227735681107e-05 - sys_48: 0.0002086609945394041 - sys_49: -0.00030722793495695255 - sys_50: -4.5998299787060704e-05 - sys_51: 0.004763325924955433 - sys_52: 0.001339875051750666 - sys_53: -0.00020079419836831024 - sys_54: -0.0009985854263692973 - sys_55: 0.0005723924490538848 + sys_0: -1.70874063505868e-05 + sys_1: -6.973179168523359e-05 + sys_2: 3.922387548225408e-07 + sys_3: 3.2650936460268116e-05 + sys_4: 1.7362687065482565e-05 + sys_5: 2.8071446958031234e-05 + sys_6: -3.635979450999327e-05 + sys_7: 2.623943543005567e-05 + sys_8: 2.1766096325559865e-05 + sys_9: 2.229355005503801e-05 + sys_10: -2.020800493506517e-05 + sys_11: 2.7861914940387996e-05 + sys_12: -2.319046549392396e-05 + sys_13: 2.3847337093475875e-05 + sys_14: 4.904663619497808e-05 + sys_15: -1.5845069913351226e-05 + sys_16: -4.332425827441751e-05 + sys_17: 7.393734212111326e-06 + sys_18: -3.795936734795529e-05 + sys_19: 2.604483801594238e-05 + sys_20: 3.083164796982007e-05 + sys_21: -1.6372295118070882e-05 + sys_22: 6.739370549980851e-05 + sys_23: -1.0829636326316252e-05 + sys_24: 9.569083175175697e-06 + sys_25: -1.6957860239867489e-06 + sys_26: 5.719677228814347e-06 + sys_27: 1.3819530529465288e-05 + sys_28: 4.930234895290191e-06 + sys_29: -1.6693600836803015e-06 + sys_30: -1.15676258297534e-06 + sys_31: 4.222413593764561e-06 + sys_32: -8.284643777659575e-06 + sys_33: 8.334359617680151e-06 + sys_34: -5.576007799419068e-06 + sys_35: 2.4213609637520607e-05 + sys_36: 2.5850841061681355e-05 + sys_37: -1.499188290357635e-05 + sys_38: 4.7293602616478923e-05 + sys_39: 8.236056414110328e-05 + sys_40: -3.5676679734438566e-07 + sys_41: 2.6119346886331507e-05 + sys_42: 1.1731479014365078e-05 + sys_43: -1.907356219382283e-05 + sys_44: -2.759995030943031e-05 + sys_45: -4.130153811002916e-05 + sys_46: -0.0001218270172707945 + sys_47: -7.482227735680671e-05 + sys_48: -0.00020866099453939707 + sys_49: -0.000307227934956961 + sys_50: -4.599829978712185e-05 + sys_51: 0.004763325924955466 + sys_52: 0.0013398750517505749 + sys_53: -0.00020079419836829286 + sys_54: -0.0009985854263692144 + sys_55: 0.0005723924490538507 - lumi_ue: 0.00072 pol: 0.00033660000000000005 - sys_0: -2.2241172708636908e-05 - sys_1: -8.704677703659672e-05 - sys_2: -4.131599903335897e-07 - sys_3: 3.9620831277638355e-05 - sys_4: 1.9827460897202597e-05 - sys_5: 3.3670106108722016e-05 - sys_6: -5.1693374721908343e-05 - sys_7: 2.9355657681940507e-05 - sys_8: 6.54654687893309e-05 - sys_9: 2.8772256672866475e-05 - sys_10: -2.8866658711851786e-05 - sys_11: 3.332450593884094e-05 - sys_12: -3.849787716189028e-05 - sys_13: -2.8425444267564763e-05 - sys_14: -5.521766416638429e-05 - sys_15: 1.6848312671604027e-05 - sys_16: 7.906411657581217e-05 - sys_17: -6.019394118535338e-06 - sys_18: 4.3242058577537864e-05 - sys_19: -3.414906831072904e-05 - sys_20: -3.5109832126942735e-05 - sys_21: 2.120929228894311e-05 - sys_22: -0.00012713499642601507 - sys_23: -7.796873059841769e-06 - sys_24: -1.5035580221726397e-05 - sys_25: 1.5969004075164816e-05 - sys_26: -6.931768766195196e-06 - sys_27: -8.74581013418973e-06 - sys_28: -1.2202788701779131e-05 - sys_29: 1.320058480548737e-05 - sys_30: 4.843616176161299e-06 - sys_31: -6.822606618435482e-06 - sys_32: 1.0937742498135694e-05 - sys_33: -1.3618644824048599e-05 - sys_34: 1.1148877302532835e-05 - sys_35: -3.322718057007368e-05 - sys_36: -2.9954513293431073e-05 - sys_37: 2.074227106042614e-05 - sys_38: -6.746432719358674e-05 - sys_39: -9.476722601570102e-05 - sys_40: 7.952283377504568e-06 - sys_41: -2.5961702169703855e-05 - sys_42: -1.633688982148298e-05 - sys_43: -2.415466298570812e-05 - sys_44: -4.1579832642750866e-05 - sys_45: -6.73548001450653e-05 - sys_46: -0.0002527793087989981 - sys_47: -0.00016465517937011437 - sys_48: 0.00014545743146859567 - sys_49: -0.00026364128982952914 - sys_50: -1.3658755795893854e-05 - sys_51: 0.0010438224669549181 - sys_52: -0.00026968440126827757 - sys_53: -0.001478560948157724 - sys_54: 0.0027602370628038797 - sys_55: -0.0037230277905321548 + sys_0: -2.22411727086367e-05 + sys_1: -8.70467770365966e-05 + sys_2: -4.131599903336925e-07 + sys_3: 3.962083127763794e-05 + sys_4: 1.982746089720204e-05 + sys_5: 3.367010610872303e-05 + sys_6: -5.169337472190848e-05 + sys_7: 2.9355657681939155e-05 + sys_8: 6.546546878933179e-05 + sys_9: 2.8772256672864998e-05 + sys_10: -2.8866658711849817e-05 + sys_11: 3.3324505938841435e-05 + sys_12: -3.8497877161888745e-05 + sys_13: 2.8425444267562764e-05 + sys_14: 5.521766416638294e-05 + sys_15: -1.684831267160179e-05 + sys_16: -7.906411657581114e-05 + sys_17: 6.019394118534705e-06 + sys_18: -4.3242058577538264e-05 + sys_19: 3.4149068310731015e-05 + sys_20: 3.510983212694301e-05 + sys_21: -2.1209292288940975e-05 + sys_22: 0.00012713499642601792 + sys_23: -7.796873059839463e-06 + sys_24: 1.503558022172653e-05 + sys_25: -1.5969004075161716e-05 + sys_26: 6.931768766197947e-06 + sys_27: 8.745810134190899e-06 + sys_28: 1.2202788701782037e-05 + sys_29: -1.32005848054884e-05 + sys_30: -4.84361617616195e-06 + sys_31: 6.822606618435513e-06 + sys_32: -1.093774249813537e-05 + sys_33: 1.3618644824049346e-05 + sys_34: -1.1148877302534558e-05 + sys_35: 3.322718057007343e-05 + sys_36: 2.9954513293431445e-05 + sys_37: -2.0742271060426382e-05 + sys_38: 6.746432719359094e-05 + sys_39: 9.476722601570349e-05 + sys_40: -7.952283377509618e-06 + sys_41: 2.5961702169706037e-05 + sys_42: 1.633688982147863e-05 + sys_43: -2.415466298570768e-05 + sys_44: -4.157983264275406e-05 + sys_45: -6.735480014506527e-05 + sys_46: -0.0002527793087990034 + sys_47: -0.00016465517937011293 + sys_48: -0.00014545743146859185 + sys_49: -0.00026364128982952865 + sys_50: -1.3658755795929021e-05 + sys_51: 0.0010438224669548708 + sys_52: -0.0002696844012683264 + sys_53: -0.001478560948157602 + sys_54: 0.00276023706280401 + sys_55: -0.003723027790532102 - lumi_ue: 0.00052 pol: 0.0002046 - sys_0: -2.6169052111154472e-05 - sys_1: -9.574374051523042e-05 - sys_2: 3.823612462615256e-06 - sys_3: 4.8473936919886246e-05 - sys_4: 2.3805408131106022e-05 - sys_5: 3.3018578971611344e-05 - sys_6: -4.9544181368949365e-05 - sys_7: 3.058535606071931e-05 - sys_8: 4.665244321880903e-05 - sys_9: 3.1402234876988595e-05 - sys_10: -3.224779741728021e-05 - sys_11: 4.3087669327330454e-05 - sys_12: -4.292628754418676e-05 - sys_13: -3.834325360538817e-05 - sys_14: -6.836144224611383e-05 - sys_15: 2.7213956752578938e-05 - sys_16: 8.603613060567063e-05 - sys_17: -1.0168638264471594e-05 - sys_18: 7.302393441671095e-05 - sys_19: -5.9538045852193934e-05 - sys_20: -6.338153637520896e-05 - sys_21: 3.5743854462155226e-05 - sys_22: -0.00017752268796061336 - sys_23: -2.1918651121696444e-06 - sys_24: -8.819382605125269e-06 - sys_25: 1.712190746112919e-05 - sys_26: -3.555372533441427e-06 - sys_27: 5.263840897172198e-06 - sys_28: -2.918316679321204e-05 - sys_29: 1.2264559295882887e-05 - sys_30: -5.960019708475399e-06 - sys_31: -3.1775325570177334e-06 - sys_32: 9.118499365857694e-06 - sys_33: -7.7102008745559e-06 - sys_34: 1.3898925590141019e-05 - sys_35: -2.3376016787875267e-05 - sys_36: -1.864853520709811e-05 - sys_37: 1.9743220646591293e-05 - sys_38: -4.442919565373261e-05 - sys_39: -0.00022704970576168697 - sys_40: 1.691659886412869e-05 - sys_41: -5.7417042936743085e-05 - sys_42: -5.758943254165825e-05 - sys_43: -9.184496624139383e-05 - sys_44: -0.00017239489984552777 - sys_45: -0.00034365950479885095 - sys_46: -0.0014145240795937475 - sys_47: -0.005701442117750578 - sys_48: -9.250294028115187e-05 - sys_49: 0.00012790000088302542 - sys_50: 3.0410947196561286e-05 - sys_51: -0.0001549095363897971 - sys_52: 5.457283820490518e-05 - sys_53: -2.0414367883615655e-05 - sys_54: -0.00015132946197549176 - sys_55: 0.00010742503844174894 + sys_0: -2.616905211115417e-05 + sys_1: -9.574374051523027e-05 + sys_2: 3.823612462614318e-06 + sys_3: 4.847393691988594e-05 + sys_4: 2.3805408131105687e-05 + sys_5: 3.30185789716124e-05 + sys_6: -4.954418136894942e-05 + sys_7: 3.05853560607185e-05 + sys_8: 4.665244321880853e-05 + sys_9: 3.140223487698838e-05 + sys_10: -3.2247797417280324e-05 + sys_11: 4.308766932733146e-05 + sys_12: -4.292628754418602e-05 + sys_13: 3.8343253605386205e-05 + sys_14: 6.836144224611308e-05 + sys_15: -2.7213956752578606e-05 + sys_16: -8.603613060566941e-05 + sys_17: 1.016863826446874e-05 + sys_18: -7.302393441671457e-05 + sys_19: 5.953804585219482e-05 + sys_20: 6.338153637521472e-05 + sys_21: -3.574385446215099e-05 + sys_22: 0.00017752268796061762 + sys_23: -2.1918651121675747e-06 + sys_24: 8.819382605125055e-06 + sys_25: -1.7121907461127056e-05 + sys_26: 3.5553725334431283e-06 + sys_27: -5.263840897170535e-06 + sys_28: 2.9183166793215417e-05 + sys_29: -1.2264559295884442e-05 + sys_30: 5.960019708474386e-06 + sys_31: 3.1775325570171913e-06 + sys_32: -9.118499365857524e-06 + sys_33: 7.710200874552966e-06 + sys_34: -1.3898925590142805e-05 + sys_35: 2.3376016787875826e-05 + sys_36: 1.8648535207098707e-05 + sys_37: -1.9743220646588674e-05 + sys_38: 4.442919565372959e-05 + sys_39: 0.0002270497057616799 + sys_40: -1.691659886413472e-05 + sys_41: 5.7417042936747544e-05 + sys_42: 5.758943254165153e-05 + sys_43: -9.184496624140671e-05 + sys_44: -0.00017239489984554674 + sys_45: -0.00034365950479889475 + sys_46: -0.0014145240795938282 + sys_47: -0.005701442117750571 + sys_48: 9.250294028114073e-05 + sys_49: 0.00012790000088302086 + sys_50: 3.0410947196569045e-05 + sys_51: -0.0001549095363897877 + sys_52: 5.457283820490769e-05 + sys_53: -2.0414367883619324e-05 + sys_54: -0.00015132946197549238 + sys_55: 0.00010742503844174504 - lumi_ue: 0.00054 pol: 0.0001188 - sys_0: -2.723554218885103e-05 - sys_1: -0.00012110496214098216 - sys_2: 2.858155391710206e-06 - sys_3: 5.9654229231113985e-05 - sys_4: 3.453662073901853e-05 - sys_5: 4.761213814847069e-05 - sys_6: -6.355755976090404e-05 - sys_7: 4.260154904289967e-05 - sys_8: 4.731580847809901e-05 - sys_9: 4.2953789203621305e-05 - sys_10: -3.893190516041014e-05 - sys_11: 5.908766798690912e-05 - sys_12: -4.964687040135963e-05 - sys_13: -4.8886864360186743e-05 - sys_14: -9.461006835532142e-05 - sys_15: 3.3880943863470266e-05 - sys_16: 0.00011413517006611862 - sys_17: -2.1383905319431057e-05 - sys_18: 9.24046867684944e-05 - sys_19: -7.950916709738388e-05 - sys_20: -8.042887111418579e-05 - sys_21: 4.404197505809743e-05 - sys_22: -0.00024634752632276717 - sys_23: 1.5190881338748168e-07 - sys_24: -3.051712438227616e-06 - sys_25: 1.1111109822971668e-05 - sys_26: -6.62936649653942e-07 - sys_27: 9.282907716284602e-06 - sys_28: -3.514429593329216e-05 - sys_29: 9.520741581235556e-06 - sys_30: -1.878936887167448e-05 - sys_31: 1.0697939663689069e-05 - sys_32: -1.4020759221279039e-06 - sys_33: -8.194666870901135e-06 - sys_34: 1.4198933810230478e-05 - sys_35: -2.4376245030841163e-05 - sys_36: -1.6152984573878034e-05 - sys_37: 2.367941237795067e-05 - sys_38: -6.554501650304181e-05 - sys_39: -0.00031174334902809274 - sys_40: 1.2997567953583057e-05 - sys_41: -0.00011173025345599064 - sys_42: -7.332428762740866e-05 - sys_43: -0.00014383390137335335 - sys_44: -0.00021177295639422672 - sys_45: -0.0007626193641813341 - sys_46: -0.005743421765858607 - sys_47: 0.001468481423856459 - sys_48: -0.00010847172058821856 - sys_49: 0.00013840851459367507 - sys_50: 3.203134372196154e-05 - sys_51: -0.00015940695939703733 - sys_52: 8.011285754044964e-05 - sys_53: -4.0539290920253605e-05 - sys_54: -0.00014686224649498002 - sys_55: 9.784036458539493e-05 + sys_0: -2.7235542188850968e-05 + sys_1: -0.00012110496214098233 + sys_2: 2.8581553917092373e-06 + sys_3: 5.9654229231112575e-05 + sys_4: 3.453662073901792e-05 + sys_5: 4.761213814847202e-05 + sys_6: -6.355755976090384e-05 + sys_7: 4.260154904289959e-05 + sys_8: 4.731580847809803e-05 + sys_9: 4.29537892036211e-05 + sys_10: -3.8931905160409134e-05 + sys_11: 5.908766798691001e-05 + sys_12: -4.964687040135914e-05 + sys_13: 4.888686436018456e-05 + sys_14: 9.461006835532092e-05 + sys_15: -3.3880943863469154e-05 + sys_16: -0.00011413517006611927 + sys_17: 2.1383905319427662e-05 + sys_18: -9.240468676849756e-05 + sys_19: 7.950916709738497e-05 + sys_20: 8.042887111419012e-05 + sys_21: -4.404197505809386e-05 + sys_22: 0.0002463475263227693 + sys_23: 1.5190881338868047e-07 + sys_24: 3.0517124382270827e-06 + sys_25: -1.1111109822970643e-05 + sys_26: 6.629366496545663e-07 + sys_27: -9.282907716283184e-06 + sys_28: 3.514429593329477e-05 + sys_29: -9.52074158123901e-06 + sys_30: 1.8789368871673413e-05 + sys_31: -1.069793966368871e-05 + sys_32: 1.4020759221279051e-06 + sys_33: 8.194666870898609e-06 + sys_34: -1.419893381023004e-05 + sys_35: 2.4376245030838984e-05 + sys_36: 1.615298457387933e-05 + sys_37: -2.3679412377950968e-05 + sys_38: 6.554501650304189e-05 + sys_39: 0.0003117433490280873 + sys_40: -1.2997567953597368e-05 + sys_41: 0.0001117302534560123 + sys_42: 7.332428762739363e-05 + sys_43: -0.00014383390137335503 + sys_44: -0.00021177295639433725 + sys_45: -0.0007626193641812545 + sys_46: -0.005743421765858597 + sys_47: 0.0014684814238564744 + sys_48: 0.00010847172058823601 + sys_49: 0.00013840851459367723 + sys_50: 3.203134372196382e-05 + sys_51: -0.00015940695939703944 + sys_52: 8.011285754045502e-05 + sys_53: -4.053929092025929e-05 + sys_54: -0.00014686224649498457 + sys_55: 9.784036458539147e-05 - lumi_ue: 0.00044 pol: 0.000264 sys_0: -3.9512474152282606e-05 - sys_1: -0.00015905883236881621 - sys_2: 7.165790262825689e-06 - sys_3: 7.544521228637491e-05 - sys_4: 3.932957811750201e-05 - sys_5: 5.879145016872098e-05 - sys_6: -8.69243241678724e-05 - sys_7: 6.01932356803132e-05 - sys_8: 4.094410243822976e-05 - sys_9: 6.140666630017442e-05 - sys_10: -5.7593719847523734e-05 - sys_11: 7.78324034604904e-05 - sys_12: -6.682243493685864e-05 - sys_13: -8.4409161597616e-05 - sys_14: -0.0001622291321266659 - sys_15: 6.033960869028495e-05 - sys_16: 0.000182699687395172 - sys_17: -3.9982182725221026e-05 - sys_18: 0.00023217944578008226 - sys_19: -0.0002168729427327723 - sys_20: -0.0001969094280534231 - sys_21: 0.0001418187963464352 - sys_22: -0.006906265512607131 - sys_23: 7.469283299370963e-07 - sys_24: -4.84942654655994e-07 - sys_25: 5.048070124095764e-06 - sys_26: 1.4749024227663771e-06 - sys_27: 8.846324157849319e-06 - sys_28: -3.391844266755579e-05 - sys_29: -8.925896570212468e-07 - sys_30: -2.865217892772339e-05 - sys_31: 2.3392847721396432e-05 - sys_32: -1.747333152963245e-05 - sys_33: -4.12327496257388e-06 - sys_34: 1.8184148626653754e-05 - sys_35: -2.3531855231823927e-06 - sys_36: -8.304446746443814e-06 - sys_37: 1.5238958600440034e-05 - sys_38: -5.452294183360312e-05 - sys_39: 0.0010240053806222077 - sys_40: -1.2218016349734243e-05 - sys_41: 0.00029534702545411104 - sys_42: 8.377154446665279e-05 - sys_43: 0.00013855218261392058 - sys_44: 6.813291945944339e-05 - sys_45: 0.00011244788949801983 - sys_46: 0.00019636345822252383 - sys_47: 8.156821511939161e-05 - sys_48: -4.596405987688114e-05 - sys_49: 6.210033871639206e-05 - sys_50: 1.8616563661316985e-05 - sys_51: -7.20986799238213e-05 - sys_52: 6.98073692136299e-05 - sys_53: -2.8777037059289318e-05 - sys_54: -6.36233302355711e-05 - sys_55: 3.214092656537806e-05 + sys_1: -0.00015905883236881638 + sys_2: 7.1657902628248e-06 + sys_3: 7.544521228637371e-05 + sys_4: 3.9329578117501085e-05 + sys_5: 5.8791450168722476e-05 + sys_6: -8.692432416787199e-05 + sys_7: 6.019323568031288e-05 + sys_8: 4.0944102438229184e-05 + sys_9: 6.140666630017397e-05 + sys_10: -5.759371984752461e-05 + sys_11: 7.783240346049225e-05 + sys_12: -6.682243493685909e-05 + sys_13: 8.440916159761343e-05 + sys_14: 0.00016222913212666522 + sys_15: -6.0339608690281283e-05 + sys_16: -0.000182699687395171 + sys_17: 3.998218272522028e-05 + sys_18: -0.00023217944578009554 + sys_19: 0.00021687294273275377 + sys_20: 0.00019690942805342655 + sys_21: -0.0001418187963464176 + sys_22: 0.006906265512607135 + sys_23: 7.469283299372724e-07 + sys_24: 4.849426546554244e-07 + sys_25: -5.048070124095167e-06 + sys_26: -1.4749024227669684e-06 + sys_27: -8.8463241578485e-06 + sys_28: 3.3918442667557154e-05 + sys_29: 8.925896570189922e-07 + sys_30: 2.865217892772126e-05 + sys_31: -2.3392847721395992e-05 + sys_32: 1.747333152963439e-05 + sys_33: 4.123274962575454e-06 + sys_34: -1.818414862665597e-05 + sys_35: 2.3531855231801845e-06 + sys_36: 8.30444674644335e-06 + sys_37: -1.5238958600439231e-05 + sys_38: 5.452294183360383e-05 + sys_39: -0.0010240053806222088 + sys_40: 1.2218016349780857e-05 + sys_41: -0.00029534702545411083 + sys_42: -8.377154446663558e-05 + sys_43: 0.00013855218261391583 + sys_44: 6.813291945945015e-05 + sys_45: 0.00011244788949801789 + sys_46: 0.00019636345822252645 + sys_47: 8.156821511939272e-05 + sys_48: 4.596405987687974e-05 + sys_49: 6.210033871639133e-05 + sys_50: 1.8616563661322006e-05 + sys_51: -7.209867992381777e-05 + sys_52: 6.980736921363053e-05 + sys_53: -2.8777037059291937e-05 + sys_54: -6.362333023557238e-05 + sys_55: 3.2140926565376244e-05 - lumi_ue: 0.00044 pol: 0.0002244 - sys_0: -5.998137195723391e-05 - sys_1: -0.0002413607059407049 - sys_2: 7.218172899765515e-06 - sys_3: 0.00012320341424676035 - sys_4: 6.629112405322314e-05 - sys_5: 9.128763041251769e-05 - sys_6: -0.00013116696945752847 - sys_7: 9.615965927069613e-05 - sys_8: 5.788608759731685e-05 - sys_9: 0.00011728674987315034 - sys_10: -0.00011007362386709523 - sys_11: 0.00016024122342363383 - sys_12: -0.0001254153852371156 - sys_13: -0.00020407826390029572 - sys_14: -0.0005022894277051588 - sys_15: 0.00022748173434839416 - sys_16: 0.008657559213552659 - sys_17: 0.00034092160429044163 - sys_18: -0.0007043967843735397 - sys_19: 0.0002807327815280077 - sys_20: 0.00015898641901977118 - sys_21: -0.00014898460571336508 - sys_22: 0.00018028900223109268 - sys_23: 5.652473839258192e-07 - sys_24: 3.2462844932661294e-07 - sys_25: 1.3735867199477181e-06 - sys_26: 1.4376981781853896e-06 - sys_27: 2.914036319376347e-06 - sys_28: -1.9132026496045818e-05 - sys_29: -3.277641943608531e-06 - sys_30: -3.081365830413154e-05 - sys_31: 3.117541266059206e-05 - sys_32: -3.276981453435323e-05 - sys_33: -4.063397325044861e-06 - sys_34: 2.1553216191906247e-05 - sys_35: 1.768537661221505e-05 - sys_36: -2.1626784891278934e-06 - sys_37: 1.14614851686357e-05 - sys_38: -4.443392425736623e-05 - sys_39: 0.0002023990367838319 - sys_40: -1.215061970076034e-05 - sys_41: 8.730512995806484e-05 - sys_42: 1.6587564467883214e-05 - sys_43: 3.995630129858522e-05 - sys_44: 2.5320019275560597e-05 - sys_45: 4.4077304293765944e-05 - sys_46: 7.116290210495234e-05 - sys_47: 3.0804886800913625e-05 - sys_48: -2.3460345278826698e-05 - sys_49: 3.541915152284488e-05 - sys_50: 9.951878903649592e-06 - sys_51: -3.954114596307777e-05 - sys_52: 5.750952144968417e-05 - sys_53: -1.6531008780514713e-06 - sys_54: -1.8309588383717772e-05 - sys_55: 1.6996583223872403e-05 + sys_0: -5.99813719572337e-05 + sys_1: -0.00024136070594070493 + sys_2: 7.218172899764238e-06 + sys_3: 0.00012320341424675894 + sys_4: 6.629112405322313e-05 + sys_5: 9.128763041251732e-05 + sys_6: -0.00013116696945752893 + sys_7: 9.615965927069474e-05 + sys_8: 5.788608759731656e-05 + sys_9: 0.00011728674987314879 + sys_10: -0.00011007362386709682 + sys_11: 0.00016024122342364277 + sys_12: -0.00012541538523711806 + sys_13: 0.00020407826390029084 + sys_14: 0.0005022894277051667 + sys_15: -0.00022748173434837676 + sys_16: -0.00865755921355267 + sys_17: -0.00034092160429051156 + sys_18: 0.0007043967843735395 + sys_19: -0.0002807327815280082 + sys_20: -0.00015898641901976535 + sys_21: 0.00014898460571335527 + sys_22: -0.0001802890022310897 + sys_23: 5.652473839259512e-07 + sys_24: -3.246284493267579e-07 + sys_25: -1.3735867199475369e-06 + sys_26: -1.4376981781857052e-06 + sys_27: -2.91403631937598e-06 + sys_28: 1.9132026496046845e-05 + sys_29: 3.2776419436069618e-06 + sys_30: 3.081365830413058e-05 + sys_31: -3.1175412660592186e-05 + sys_32: 3.27698145343526e-05 + sys_33: 4.063397325044589e-06 + sys_34: -2.1553216191905468e-05 + sys_35: -1.7685376612215854e-05 + sys_36: 2.1626784891286095e-06 + sys_37: -1.1461485168635613e-05 + sys_38: 4.443392425736607e-05 + sys_39: -0.00020239903678383322 + sys_40: 1.215061970077625e-05 + sys_41: -8.730512995806382e-05 + sys_42: -1.6587564467878796e-05 + sys_43: 3.9956301298584486e-05 + sys_44: 2.5320019275564172e-05 + sys_45: 4.40773042937649e-05 + sys_46: 7.116290210495438e-05 + sys_47: 3.0804886800914106e-05 + sys_48: 2.3460345278825465e-05 + sys_49: 3.541915152284441e-05 + sys_50: 9.951878903651965e-06 + sys_51: -3.9541145963074824e-05 + sys_52: 5.750952144968435e-05 + sys_53: -1.6531008780529594e-06 + sys_54: -1.8309588383718152e-05 + sys_55: 1.69965832238721e-05 - lumi_ue: 0.00036 pol: 0.00033 - sys_0: -8.923253788311067e-05 - sys_1: -0.0003922599608418703 - sys_2: 1.3443350560973601e-05 - sys_3: 0.00019799505409572632 - sys_4: 0.00011454383958913211 - sys_5: 0.0002013067822156 - sys_6: -0.000274062069251488 - sys_7: 0.00025112120266627795 - sys_8: 7.836908309509426e-05 - sys_9: 0.0004154867743984239 - sys_10: -0.0006095970305518584 - sys_11: 0.001710620170292931 - sys_12: -0.012174555773709517 - sys_13: 0.00045360339675689054 - sys_14: 0.0003549492487615486 - sys_15: -0.00015324443040272645 - sys_16: -0.00011600660650962566 - sys_17: 1.8701996227041443e-05 - sys_18: -0.0001079503566809129 - sys_19: 5.423642072874875e-05 - sys_20: -8.228427274043676e-06 - sys_21: -4.325312366100033e-05 - sys_22: 5.954803312515442e-05 - sys_23: 3.000045877185643e-07 - sys_24: 3.797882619674676e-07 - sys_25: 1.5412402713916357e-07 - sys_26: 6.103255125876887e-07 - sys_27: -8.114657033523811e-07 - sys_28: -7.581369664272281e-06 - sys_29: -1.4025380202318204e-06 - sys_30: -1.5606238704900108e-05 - sys_31: 3.0769376147916684e-05 - sys_32: -4.381376715124389e-05 - sys_33: -3.875428720893137e-06 - sys_34: 2.4541170659844313e-05 - sys_35: 4.039737746207601e-05 - sys_36: 4.584172975592526e-06 - sys_37: 5.470864025352236e-06 - sys_38: -2.8393401510968496e-05 - sys_39: 9.153216819621863e-05 - sys_40: -4.602012100637527e-06 - sys_41: 4.6514130988555176e-05 - sys_42: 6.328849303657087e-07 - sys_43: 1.4500729297399488e-05 - sys_44: 8.84173874297558e-06 - sys_45: 2.0780367749259048e-05 - sys_46: 2.2230177095227845e-05 - sys_47: 1.1400549731906487e-05 - sys_48: -9.368519232374467e-06 - sys_49: 1.4335896534116256e-05 - sys_50: 4.531570643812265e-06 - sys_51: -1.5961012286250585e-05 - sys_52: 4.276912600562815e-05 - sys_53: 2.7548117383997512e-05 - sys_54: 9.512822868641437e-06 - sys_55: 3.699930447646068e-06 + sys_0: -8.923253788311054e-05 + sys_1: -0.00039225996084187037 + sys_2: 1.344335056096918e-05 + sys_3: 0.0001979950540957261 + sys_4: 0.00011454383958913392 + sys_5: 0.00020130678221559964 + sys_6: -0.0002740620692514865 + sys_7: 0.0002511212026662811 + sys_8: 7.836908309509254e-05 + sys_9: 0.0004154867743984298 + sys_10: -0.0006095970305518319 + sys_11: 0.0017106201702929771 + sys_12: -0.012174555773709498 + sys_13: -0.0004536033967569204 + sys_14: -0.00035494924876156757 + sys_15: 0.00015324443040272683 + sys_16: 0.00011600660650962892 + sys_17: -1.8701996227045227e-05 + sys_18: 0.00010795035668091386 + sys_19: -5.4236420728749495e-05 + sys_20: 8.228427274042377e-06 + sys_21: 4.325312366099955e-05 + sys_22: -5.9548033125154224e-05 + sys_23: 3.0000458771849395e-07 + sys_24: -3.797882619676079e-07 + sys_25: -1.541240271391692e-07 + sys_26: -6.103255125881243e-07 + sys_27: 8.114657033523278e-07 + sys_28: 7.5813696642728895e-06 + sys_29: 1.4025380202311258e-06 + sys_30: 1.5606238704899613e-05 + sys_31: -3.0769376147916935e-05 + sys_32: 4.3813767151243256e-05 + sys_33: 3.875428720893273e-06 + sys_34: -2.454117065984285e-05 + sys_35: -4.039737746207829e-05 + sys_36: -4.584172975592812e-06 + sys_37: -5.470864025352013e-06 + sys_38: 2.8393401510968598e-05 + sys_39: -9.153216819621887e-05 + sys_40: 4.602012100645083e-06 + sys_41: -4.65141309885552e-05 + sys_42: -6.32884930363844e-07 + sys_43: 1.4500729297399974e-05 + sys_44: 8.841738742976286e-06 + sys_45: 2.0780367749259356e-05 + sys_46: 2.2230177095227794e-05 + sys_47: 1.140054973190608e-05 + sys_48: 9.368519232375555e-06 + sys_49: 1.4335896534116468e-05 + sys_50: 4.5315706438129605e-06 + sys_51: -1.5961012286250554e-05 + sys_52: 4.2769126005629104e-05 + sys_53: 2.7548117383997472e-05 + sys_54: 9.512822868640107e-06 + sys_55: 3.6999304476466317e-06 - lumi_ue: 0.00036 pol: 0.0003828 - sys_0: -0.00019358960006998533 - sys_1: -0.001065885164039789 - sys_2: 4.1335470238480604e-05 - sys_3: 0.0006295451375995111 - sys_4: 0.00042973492060122885 - sys_5: 0.0017092853342109003 - sys_6: -0.017681188321840277 - sys_7: -0.0021331394763445598 - sys_8: -0.0001982688285071767 - sys_9: -0.0007033756673041689 - sys_10: 6.046174605968485e-05 - sys_11: -0.0002927180847821344 - sys_12: 0.0001596227852744167 - sys_13: 0.00014835249844419144 - sys_14: 0.0001827507326031538 - sys_15: -9.678520171422783e-05 - sys_16: -6.254623994626394e-05 - sys_17: 1.2207232862936907e-05 - sys_18: -6.601205709610685e-05 - sys_19: 2.618500877311962e-05 - sys_20: -5.499581288676491e-05 - sys_21: -4.523998772669945e-05 - sys_22: 4.2771471899369286e-05 - sys_23: 7.902142322863001e-08 - sys_24: 2.1357831901126104e-07 - sys_25: -2.885755245379951e-07 - sys_26: 2.1732284511530886e-07 - sys_27: -2.6823088386195307e-06 - sys_28: -2.5236888550724323e-06 - sys_29: -3.0545736889297905e-07 - sys_30: -4.517543653941376e-06 - sys_31: 1.0926750546689786e-05 - sys_32: -3.571989877567485e-05 - sys_33: -5.69318819430648e-06 - sys_34: 2.8413748631595718e-05 - sys_35: 5.157255926837515e-05 - sys_36: 5.348983800345802e-06 - sys_37: 4.369282668403555e-06 - sys_38: -2.3628216975712582e-05 - sys_39: 7.251503227146751e-05 - sys_40: -2.9208593240791354e-06 - sys_41: 3.7672017304540126e-05 - sys_42: -2.021320706603775e-06 - sys_43: 9.954990604057341e-06 - sys_44: 7.731241699332125e-06 - sys_45: 1.3815478409383888e-05 - sys_46: 1.2691851461690994e-05 - sys_47: 5.739308576952841e-06 - sys_48: -6.945340205914182e-06 - sys_49: 8.694683778744106e-06 - sys_50: 2.2032104693284113e-06 - sys_51: -9.896368292436273e-06 - sys_52: 3.737666924777123e-05 + sys_0: -0.00019358960006998603 + sys_1: -0.0010658851640397908 + sys_2: 4.133547023846939e-05 + sys_3: 0.0006295451375995085 + sys_4: 0.0004297349206012285 + sys_5: 0.0017092853342110565 + sys_6: -0.017681188321840253 + sys_7: -0.002133139476344544 + sys_8: -0.00019826882850716005 + sys_9: -0.0007033756673041538 + sys_10: 6.046174605968341e-05 + sys_11: -0.00029271808478213804 + sys_12: 0.00015962278527441946 + sys_13: -0.00014835249844419063 + sys_14: -0.0001827507326031524 + sys_15: 9.678520171422524e-05 + sys_16: 6.254623994626316e-05 + sys_17: -1.2207232862933961e-05 + sys_18: 6.601205709610537e-05 + sys_19: -2.618500877311735e-05 + sys_20: 5.499581288676288e-05 + sys_21: 4.523998772670093e-05 + sys_22: -4.2771471899369374e-05 + sys_23: 7.902142322850497e-08 + sys_24: -2.1357831901121583e-07 + sys_25: 2.8857552453787976e-07 + sys_26: -2.1732284511550222e-07 + sys_27: 2.6823088386196806e-06 + sys_28: 2.5236888550726593e-06 + sys_29: 3.0545736889268434e-07 + sys_30: 4.5175436539411e-06 + sys_31: -1.0926750546689987e-05 + sys_32: 3.5719898775674316e-05 + sys_33: 5.693188194306272e-06 + sys_34: -2.841374863159363e-05 + sys_35: -5.157255926837661e-05 + sys_36: -5.348983800345254e-06 + sys_37: -4.369282668403552e-06 + sys_38: 2.3628216975712928e-05 + sys_39: -7.25150322714681e-05 + sys_40: 2.9208593240851972e-06 + sys_41: -3.767201730453955e-05 + sys_42: 2.0213207066054744e-06 + sys_43: 9.954990604057512e-06 + sys_44: 7.73124169933282e-06 + sys_45: 1.381547840938386e-05 + sys_46: 1.2691851461690721e-05 + sys_47: 5.739308576952768e-06 + sys_48: 6.94534020591468e-06 + sys_49: 8.69468377874454e-06 + sys_50: 2.203210469328429e-06 + sys_51: -9.896368292436205e-06 + sys_52: 3.7376669247772024e-05 sys_53: 5.25842968216036e-05 - sys_54: 2.3130653749611704e-05 - sys_55: 2.253468064452661e-06 + sys_54: 2.313065374960981e-05 + sys_55: 2.2534680644536512e-06 - lumi_ue: 0.00036 pol: 0.0019206000000000002 - sys_0: -0.00020162632878324504 - sys_1: -0.007685411945170324 - sys_2: -0.028586313792703648 - sys_3: -0.0012101014856085574 - sys_4: -0.00046235300502022966 - sys_5: -0.00016138007670260637 - sys_6: 0.00014276587407357222 - sys_7: -0.00011547317624555203 - sys_8: -9.018300972818905e-06 - sys_9: -0.00019780075341459082 - sys_10: -0.0001487515967746855 - sys_11: -4.8249737448138164e-05 - sys_12: 3.3300226352779446e-05 - sys_13: 3.9075906819437894e-05 - sys_14: 4.742330498588373e-05 - sys_15: -4.890792282588273e-05 - sys_16: -8.51671831586819e-06 - sys_17: -5.910182232449483e-07 - sys_18: -5.723675188902399e-06 - sys_19: -1.776361601827735e-05 - sys_20: -0.00011950326076120695 - sys_21: -3.449313922212753e-05 - sys_22: 1.036328040942694e-05 - sys_23: 5.956540836029673e-08 - sys_24: 1.0151033875881114e-07 - sys_25: -1.350129026052365e-07 - sys_26: 6.826941245006492e-08 - sys_27: -9.620296603234866e-07 - sys_28: -7.3784078539168e-07 - sys_29: -7.793563682393528e-08 - sys_30: -1.1453478594709625e-06 - sys_31: 2.988533490957429e-06 - sys_32: -1.2364478532728248e-05 - sys_33: -3.835511065535477e-06 - sys_34: 2.0172383774743046e-05 - sys_35: 4.152741673987578e-05 - sys_36: 5.656232865195085e-06 - sys_37: 1.2502072244100369e-06 - sys_38: -8.583968601089088e-06 - sys_39: 1.883060949201282e-05 - sys_40: -1.87440273277874e-06 - sys_41: 1.5695316603163596e-05 - sys_42: -3.4185995346978336e-06 - sys_43: -6.161898712435887e-07 - sys_44: -7.127700832206303e-07 - sys_45: -1.4866829827596918e-08 - sys_46: 8.224592714889552e-07 - sys_47: -1.5380556222962234e-07 - sys_48: 4.131249191201582e-06 - sys_49: -6.3954342411026975e-06 - sys_50: -8.440969066165075e-07 - sys_51: 4.0512130885923355e-06 - sys_52: 2.1150623474545767e-05 - sys_53: 7.998698264123691e-05 - sys_54: 4.103119725182124e-05 - sys_55: 9.013552457905208e-07 + sys_0: -0.00020162632878324845 + sys_1: -0.007685411945170331 + sys_2: -0.028586313792703634 + sys_3: -0.0012101014856086855 + sys_4: -0.00046235300502023475 + sys_5: -0.00016138007670261898 + sys_6: 0.00014276587407357604 + sys_7: -0.00011547317624555486 + sys_8: -9.01830097282157e-06 + sys_9: -0.00019780075341459065 + sys_10: -0.00014875159677468606 + sys_11: -4.824973744813694e-05 + sys_12: 3.3300226352779256e-05 + sys_13: -3.9075906819437033e-05 + sys_14: -4.7423304985884004e-05 + sys_15: 4.890792282588212e-05 + sys_16: 8.516718315868222e-06 + sys_17: 5.910182232457789e-07 + sys_18: 5.7236751889024096e-06 + sys_19: 1.7763616018281452e-05 + sys_20: 0.0001195032607612046 + sys_21: 3.4493139222132944e-05 + sys_22: -1.0363280409427154e-05 + sys_23: 5.956540836032337e-08 + sys_24: -1.015103387587971e-07 + sys_25: 1.3501290260531837e-07 + sys_26: -6.826941244976467e-08 + sys_27: 9.620296603234222e-07 + sys_28: 7.378407853916891e-07 + sys_29: 7.793563682387158e-08 + sys_30: 1.1453478594710142e-06 + sys_31: -2.9885334909576313e-06 + sys_32: 1.2364478532728065e-05 + sys_33: 3.835511065535514e-06 + sys_34: -2.01723837747414e-05 + sys_35: -4.1527416739877264e-05 + sys_36: -5.656232865195166e-06 + sys_37: -1.2502072244100625e-06 + sys_38: 8.583968601089396e-06 + sys_39: -1.8830609492013037e-05 + sys_40: 1.8744027327814804e-06 + sys_41: -1.5695316603163023e-05 + sys_42: 3.418599534698452e-06 + sys_43: -6.161898712436343e-07 + sys_44: -7.12770083220683e-07 + sys_45: -1.4866829827372383e-08 + sys_46: 8.224592714887047e-07 + sys_47: -1.5380556222976305e-07 + sys_48: -4.131249191201426e-06 + sys_49: -6.395434241102339e-06 + sys_50: -8.440969066172789e-07 + sys_51: 4.051213088591608e-06 + sys_52: 2.115062347454655e-05 + sys_53: 7.998698264123732e-05 + sys_54: 4.103119725181878e-05 + sys_55: 9.0135524579207e-07 - lumi_ue: 0.00029 pol: 0.000363 - sys_0: -0.04617528060468052 - sys_1: 0.0007798226307564233 - sys_2: -6.77251567285892e-06 - sys_3: -0.0002847982951575236 - sys_4: -0.00023757066427368615 - sys_5: -8.851273565003443e-05 - sys_6: 7.702255838100885e-05 - sys_7: -7.487866853264413e-05 - sys_8: -4.253446346233636e-06 - sys_9: -0.00018881868362808754 - sys_10: -0.0002371988153343997 - sys_11: -3.805347603647465e-05 - sys_12: 2.3549729299375662e-05 - sys_13: 2.444478890872961e-05 - sys_14: 3.216310177537848e-05 - sys_15: -3.723142823712048e-05 - sys_16: -3.123378700805108e-06 - sys_17: -1.6895587210959601e-06 - sys_18: 9.528448984162635e-07 - sys_19: -2.840342337913127e-05 - sys_20: -0.00015712370027367185 - sys_21: -4.4985130267955274e-05 - sys_22: 9.12458171180185e-06 - sys_23: 9.008466211199461e-09 - sys_24: 3.588206086387636e-08 - sys_25: -9.214285619202929e-08 - sys_26: -7.980370722631796e-09 - sys_27: -7.600813279627728e-07 - sys_28: -1.7066040069720017e-07 - sys_29: 1.5058046769938824e-09 - sys_30: -1.4714133295059992e-07 - sys_31: 2.3222400863229263e-07 - sys_32: -2.276423916567558e-06 - sys_33: -1.6855775911152726e-06 - sys_34: 6.326221520548824e-06 - sys_35: 1.0445643432706564e-05 - sys_36: 6.31402410723901e-08 - sys_37: 1.7896595557125842e-06 - sys_38: -6.253365524562932e-06 - sys_39: 1.1914971235426746e-05 - sys_40: -5.958032802829342e-07 - sys_41: 4.084882989852301e-06 - sys_42: 3.0666212214045293e-07 - sys_43: 2.5713801311965486e-06 - sys_44: 9.808223463882108e-07 - sys_45: 1.284987809126998e-06 - sys_46: 1.3037533924412506e-06 - sys_47: 1.0729894999489885e-06 - sys_48: 1.947332071953631e-06 - sys_49: -2.7804275701445893e-06 - sys_50: -6.605960073625057e-07 - sys_51: 2.5895911737392207e-06 - sys_52: 1.1995123905200005e-05 - sys_53: 5.110122403018106e-05 - sys_54: 2.5550192779393124e-05 - sys_55: 6.295289324677969e-07 + sys_0: -0.04617528060468053 + sys_1: 0.0007798226307564299 + sys_2: -6.772515672857569e-06 + sys_3: -0.0002847982951575241 + sys_4: -0.0002375706642736877 + sys_5: -8.851273565003619e-05 + sys_6: 7.702255838100796e-05 + sys_7: -7.487866853264508e-05 + sys_8: -4.253446346233467e-06 + sys_9: -0.0001888186836280874 + sys_10: -0.0002371988153344005 + sys_11: -3.805347603647276e-05 + sys_12: 2.354972929937533e-05 + sys_13: -2.44447889087296e-05 + sys_14: -3.2163101775378466e-05 + sys_15: 3.723142823712022e-05 + sys_16: 3.1233787008052266e-06 + sys_17: 1.6895587210962816e-06 + sys_18: -9.528448984164402e-07 + sys_19: 2.8403423379136432e-05 + sys_20: 0.000157123700273669 + sys_21: 4.498513026796189e-05 + sys_22: -9.12458171180194e-06 + sys_23: 9.008466211206403e-09 + sys_24: -3.5882060863905376e-08 + sys_25: 9.214285619209532e-08 + sys_26: 7.9803707227494e-09 + sys_27: 7.600813279628025e-07 + sys_28: 1.706604006972182e-07 + sys_29: -1.5058046770423167e-09 + sys_30: 1.471413329505469e-07 + sys_31: -2.3222400863230303e-07 + sys_32: 2.2764239165675865e-06 + sys_33: 1.6855775911153307e-06 + sys_34: -6.3262215205484375e-06 + sys_35: -1.0445643432706864e-05 + sys_36: -6.314024107243673e-08 + sys_37: -1.789659555712456e-06 + sys_38: 6.253365524562876e-06 + sys_39: -1.1914971235426991e-05 + sys_40: 5.958032802839538e-07 + sys_41: -4.084882989852197e-06 + sys_42: -3.066621221401798e-07 + sys_43: 2.57138013119666e-06 + sys_44: 9.808223463885276e-07 + sys_45: 1.2849878091270987e-06 + sys_46: 1.303753392441279e-06 + sys_47: 1.072989499948878e-06 + sys_48: -1.947332071953833e-06 + sys_49: -2.780427570144449e-06 + sys_50: -6.605960073629148e-07 + sys_51: 2.589591173738787e-06 + sys_52: 1.1995123905200442e-05 + sys_53: 5.1101224030181285e-05 + sys_54: 2.5550192779391623e-05 + sys_55: 6.29528932468708e-07 diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_1JET_510GEV/uncertainties.yaml b/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_1JET_510GEV/uncertainties.yaml index 919b3d048e..f97801902f 100644 --- a/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_1JET_510GEV/uncertainties.yaml +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_1JET_510GEV/uncertainties.yaml @@ -262,911 +262,911 @@ definitions: bins: - pol: 0.00040064 lumi: 0.00047 - sys_0: 1.0149923084516743e-07 - sys_1: -6.454483537845352e-08 - sys_2: -3.7370452534985803e-07 - sys_3: -1.5019582663777696e-07 - sys_4: -2.3772247602000877e-07 - sys_5: -2.482362587154836e-07 - sys_6: 7.964502531992199e-07 - sys_7: 3.211867265109659e-07 - sys_8: 1.2963151798808326e-06 - sys_9: -5.797893252262223e-07 - sys_10: 1.8072024158514894e-06 - sys_11: 3.0811145495903898e-06 - sys_12: -2.6211246797808175e-06 - sys_13: 6.010605794044629e-06 - sys_14: 4.4166169041409875e-05 - sys_15: -4.00360379560693e-06 - sys_16: 4.758356756372296e-06 - sys_17: 1.1775405116954534e-05 - sys_18: 1.2487308763838132e-05 - sys_19: 6.441360649715692e-05 - sys_20: -5.573898247556415e-06 - sys_21: 7.355039484210815e-05 - sys_22: 3.251957320836221e-05 - sys_23: 1.693996738813632e-05 - sys_24: -2.6264104039935492e-05 - sys_25: -3.5441128177341443e-05 - sys_26: -1.1094566746460911e-05 - sys_27: 7.673299817379724e-06 - sys_28: -1.2381460688983786e-05 - sys_29: 1.1284038703798095e-05 - sys_30: -3.2045686688105394e-05 - sys_31: -1.4406514339407576e-05 - sys_32: -1.8066105412081285e-05 - sys_33: -2.6216181475871857e-05 - sys_34: -4.153713271486989e-05 - sys_35: 9.134760961842234e-07 - sys_36: -3.5172542918426675e-05 - sys_37: 1.0635573314362287e-05 - sys_38: 6.206664046903237e-05 - sys_39: -2.11952180680009e-05 - sys_40: 4.808617421860469e-06 - sys_41: -9.044689150376892e-07 - sys_42: 2.9784156972337737e-06 - sys_43: 5.669240305130016e-06 - sys_44: -2.5537601300292476e-06 - sys_45: 4.875098031558584e-06 - sys_46: 3.5457462945946254e-06 - sys_47: 1.024445411078779e-05 - sys_48: -5.747136463657907e-06 - sys_49: -7.886387107555893e-05 - sys_50: -0.00030905852550123483 - sys_51: 9.486838476612525e-05 - sys_52: 0.0022612541892199894 - sys_53: -0.0009447924882363002 - sys_54: -9.404536909875018e-05 - sys_55: 2.3939044487721476e-05 - sys_56: 6.209089655880807e-05 - sys_57: 4.917937155457821e-05 - sys_58: -8.648456365675207e-05 - sys_59: -3.837601125357958e-05 - sys_60: -1.2533216835062074e-05 - sys_61: -3.0264472901784857e-05 - sys_62: 1.363011333053269e-05 + sys_0: 1.0149923084218335e-07 + sys_1: -6.454483538693696e-08 + sys_2: -3.737045253494787e-07 + sys_3: -1.5019582664856453e-07 + sys_4: 2.377224760150964e-07 + sys_5: 2.4823625870694025e-07 + sys_6: -7.96450253195909e-07 + sys_7: 3.211867265144163e-07 + sys_8: -1.2963151798799375e-06 + sys_9: 5.797893252200983e-07 + sys_10: -1.8072024158425543e-06 + sys_11: -3.0811145495853427e-06 + sys_12: -2.6211246797788252e-06 + sys_13: -6.010605794047085e-06 + sys_14: -4.416616904141487e-05 + sys_15: 4.003603795604606e-06 + sys_16: -4.758356756375704e-06 + sys_17: -1.1775405116955058e-05 + sys_18: -1.2487308763839741e-05 + sys_19: -6.441360649717394e-05 + sys_20: 5.5738982475575165e-06 + sys_21: -7.355039484211259e-05 + sys_22: -3.2519573208367814e-05 + sys_23: -1.6939967388137693e-05 + sys_24: 2.626410403993313e-05 + sys_25: 3.544112817733747e-05 + sys_26: 1.1094566746458367e-05 + sys_27: -7.673299817378687e-06 + sys_28: 1.2381460688985121e-05 + sys_29: -1.1284038703802794e-05 + sys_30: -3.2045686688109894e-05 + sys_31: 1.440651433940892e-05 + sys_32: 1.8066105412083626e-05 + sys_33: 2.6216181475871664e-05 + sys_34: 4.808617421861655e-06 + sys_35: 9.044689150374201e-07 + sys_36: -2.978415697235311e-06 + sys_37: 4.153713271486627e-05 + sys_38: 9.134760961843418e-07 + sys_39: -3.517254291842421e-05 + sys_40: -1.063557331435929e-05 + sys_41: 6.206664046902483e-05 + sys_42: 2.1195218067999482e-05 + sys_43: -5.669240305134518e-06 + sys_44: 2.553760130029594e-06 + sys_45: -4.8750980315611274e-06 + sys_46: 3.545746294598209e-06 + sys_47: 1.0244454110793118e-05 + sys_48: 5.747136463662861e-06 + sys_49: 7.886387107555071e-05 + sys_50: 0.00030905852550123494 + sys_51: -9.486838476608858e-05 + sys_52: 0.00226125418922026 + sys_53: -0.0009447924882359989 + sys_54: -9.404536909876061e-05 + sys_55: 2.3939044487725958e-05 + sys_56: 6.209089655882174e-05 + sys_57: 4.9179371554582706e-05 + sys_58: -8.648456365676183e-05 + sys_59: -3.837601125358577e-05 + sys_60: -1.253321683506462e-05 + sys_61: -3.0264472901788967e-05 + sys_62: 1.3630113330535423e-05 - pol: 0.00016512 lumi: 0.00047 - sys_0: 9.284993022524225e-08 - sys_1: -5.113976349509601e-08 - sys_2: -3.2144071155762147e-07 - sys_3: -1.153614242723779e-07 - sys_4: -2.2075455823055586e-07 - sys_5: -1.798302185429716e-07 - sys_6: 6.317886243913832e-07 - sys_7: 2.2786525571123385e-07 - sys_8: 1.0474684594044233e-06 - sys_9: -5.419035022578107e-07 - sys_10: 1.2712034638377158e-06 - sys_11: 2.2010705861277904e-06 - sys_12: -1.915852250158063e-06 - sys_13: 4.134408378857604e-06 - sys_14: 2.0299144250703694e-05 - sys_15: 1.877633008121132e-07 - sys_16: -1.5025672994999515e-08 - sys_17: 9.19126119906736e-06 - sys_18: 8.480238082146973e-06 - sys_19: 2.7950813957197604e-05 - sys_20: 2.403525044291454e-07 - sys_21: 3.561643322730864e-05 - sys_22: -9.24268090361943e-06 - sys_23: 2.6772575799240587e-05 - sys_24: -2.1529781050715372e-05 - sys_25: -1.8028041049271127e-05 - sys_26: -8.699747727383786e-06 - sys_27: -1.226208336422242e-05 - sys_28: -2.513685550356694e-05 - sys_29: -5.779704813908669e-06 - sys_30: -4.895036712174846e-05 - sys_31: -1.6031558858457073e-06 - sys_32: 1.0774661267194304e-05 - sys_33: -4.563180029306037e-05 - sys_34: -5.2603592169519316e-05 - sys_35: -1.1297786393880092e-05 - sys_36: -7.479700500130042e-05 - sys_37: 3.038578475689793e-05 - sys_38: 0.00010847320762788882 - sys_39: -3.7084416998231416e-05 - sys_40: 5.393769548395722e-06 - sys_41: -9.225684271018882e-07 - sys_42: 4.787640970174121e-06 - sys_43: -5.296246932072725e-05 - sys_44: -4.868112399802929e-06 - sys_45: 7.021767403291601e-06 - sys_46: 4.934651844643563e-06 - sys_47: 2.075011471484965e-05 - sys_48: -8.57944500510206e-06 - sys_49: -6.706430330313977e-05 - sys_50: -0.002431807018535961 - sys_51: -0.0006618126162738568 - sys_52: -0.0002159587055912548 - sys_53: 0.00022186709914247588 - sys_54: -9.802118819522435e-05 - sys_55: 2.3814655837376824e-05 - sys_56: 5.5260543150959176e-05 - sys_57: 4.453126768624856e-05 - sys_58: -8.47759854320255e-05 - sys_59: -4.344148947984669e-05 - sys_60: -2.2372196749849013e-05 - sys_61: -3.3173411613654465e-05 - sys_62: 5.498693086714365e-06 + sys_0: 9.284993022443979e-08 + sys_1: -5.1139763495648926e-08 + sys_2: -3.2144071155769563e-07 + sys_3: -1.1536142427141784e-07 + sys_4: 2.2075455823134628e-07 + sys_5: 1.798302185441739e-07 + sys_6: -6.31788624391001e-07 + sys_7: 2.278652557121822e-07 + sys_8: -1.0474684594049416e-06 + sys_9: 5.419035022562226e-07 + sys_10: -1.2712034638358235e-06 + sys_11: -2.2010705861256465e-06 + sys_12: -1.915852250158735e-06 + sys_13: -4.134408378857276e-06 + sys_14: -2.0299144250705636e-05 + sys_15: -1.8776330081022528e-07 + sys_16: 1.502567299447425e-08 + sys_17: -9.191261199065371e-06 + sys_18: -8.480238082144548e-06 + sys_19: -2.7950813957197926e-05 + sys_20: -2.403525044282503e-07 + sys_21: -3.561643322730747e-05 + sys_22: 9.242680903618039e-06 + sys_23: -2.677257579924053e-05 + sys_24: 2.152978105071245e-05 + sys_25: 1.80280410492686e-05 + sys_26: 8.699747727383915e-06 + sys_27: 1.2262083364223311e-05 + sys_28: 2.5136855503566163e-05 + sys_29: 5.77970481391093e-06 + sys_30: -4.8950367121745476e-05 + sys_31: 1.603155885848119e-06 + sys_32: -1.0774661267194971e-05 + sys_33: 4.563180029306079e-05 + sys_34: 5.3937695483946225e-06 + sys_35: 9.225684271030167e-07 + sys_36: -4.787640970172305e-06 + sys_37: 5.260359216952431e-05 + sys_38: -1.1297786393882242e-05 + sys_39: -7.479700500130267e-05 + sys_40: -3.0385784756891517e-05 + sys_41: 0.00010847320762789742 + sys_42: 3.708441699823448e-05 + sys_43: 5.2962469320718734e-05 + sys_44: 4.868112399801969e-06 + sys_45: -7.021767403295156e-06 + sys_46: 4.934651844645401e-06 + sys_47: 2.0750114714844546e-05 + sys_48: 8.579445005098355e-06 + sys_49: 6.706430330334574e-05 + sys_50: 0.0024318070185359664 + sys_51: 0.0006618126162738295 + sys_52: -0.00021595870559119607 + sys_53: 0.00022186709914240533 + sys_54: -9.802118819522454e-05 + sys_55: 2.3814655837374327e-05 + sys_56: 5.52605431509561e-05 + sys_57: 4.4531267686239085e-05 + sys_58: -8.477598543201916e-05 + sys_59: -4.3441489479847286e-05 + sys_60: -2.2372196749845943e-05 + sys_61: -3.3173411613648936e-05 + sys_62: 5.498693086721247e-06 - pol: 0.00017728 lumi: 0.00047 - sys_0: 8.483931485976663e-08 - sys_1: -4.47160764362248e-08 - sys_2: -3.028752219229754e-07 - sys_3: -1.0419206348777361e-07 - sys_4: -1.9295871932511167e-07 - sys_5: -1.4065087779168634e-07 - sys_6: 5.631035813035702e-07 - sys_7: 1.924705987721115e-07 - sys_8: 8.911815149102759e-07 - sys_9: -4.5597254865109374e-07 - sys_10: 9.462717732520295e-07 - sys_11: 1.7330878624940072e-06 - sys_12: -1.442975177429172e-06 - sys_13: 2.6626002718022854e-06 - sys_14: 5.144483406144298e-06 - sys_15: 2.706751398610368e-06 - sys_16: -2.848018265242471e-06 - sys_17: 7.378863124100361e-06 - sys_18: 5.399937433445482e-06 - sys_19: 5.551956926439302e-06 - sys_20: 2.9050284759022982e-06 - sys_21: 1.823908726672018e-05 - sys_22: -1.7138540358310398e-05 - sys_23: 2.0110877481830106e-05 - sys_24: -8.646413806697385e-06 - sys_25: 3.7644135013083057e-06 - sys_26: -1.4685400966927526e-06 - sys_27: -2.4383542478147798e-05 - sys_28: -2.3160061479323584e-05 - sys_29: -1.3934256717260506e-05 - sys_30: -3.6443365690634414e-05 - sys_31: 1.0850295202983777e-05 - sys_32: 3.170714286108924e-05 - sys_33: -2.7170538260711765e-05 - sys_34: -2.0170127436826684e-05 - sys_35: -1.154048769537782e-05 - sys_36: -3.9177346200613005e-05 - sys_37: 1.874869571121406e-05 - sys_38: 4.554978489555418e-05 - sys_39: -9.57265045767811e-06 - sys_40: 1.1831688663508393e-05 - sys_41: -3.913711680658175e-06 - sys_42: 1.819069032117441e-05 - sys_43: -3.401630095555514e-05 - sys_44: -4.5658748884996823e-05 - sys_45: 6.233984578003957e-05 - sys_46: 9.463278121587478e-06 - sys_47: 0.000408704922484011 - sys_48: 0.0017749689156440604 - sys_49: 3.283269626669331e-05 - sys_50: -3.244782837820753e-05 - sys_51: 4.956502895400242e-05 - sys_52: 6.13340319773005e-06 - sys_53: -1.777585781639283e-05 - sys_54: 4.229231515727725e-05 - sys_55: -0.000140308561834506 - sys_56: -7.476779511489566e-05 - sys_57: -4.412640313165956e-05 - sys_58: 0.0001296365495997296 - sys_59: 2.210839134928844e-05 - sys_60: 3.1665231731642755e-05 - sys_61: 3.223002928487794e-05 - sys_62: 1.560850300249896e-05 + sys_0: 8.483931485993028e-08 + sys_1: -4.471607643574021e-08 + sys_2: -3.028752219226872e-07 + sys_3: -1.0419206348855968e-07 + sys_4: 1.9295871932505862e-07 + sys_5: 1.406508777915424e-07 + sys_6: -5.63103581303427e-07 + sys_7: 1.9247059877291513e-07 + sys_8: -8.91181514910058e-07 + sys_9: 4.5597254865125044e-07 + sys_10: -9.462717732523078e-07 + sys_11: -1.73308786249384e-06 + sys_12: -1.442975177430055e-06 + sys_13: -2.662600271800781e-06 + sys_14: -5.144483406145089e-06 + sys_15: -2.706751398610095e-06 + sys_16: 2.8480182652431147e-06 + sys_17: -7.3788631241000315e-06 + sys_18: -5.3999374334452525e-06 + sys_19: -5.551956926438862e-06 + sys_20: -2.90502847590185e-06 + sys_21: -1.823908726672016e-05 + sys_22: 1.7138540358311354e-05 + sys_23: -2.011087748183053e-05 + sys_24: 8.64641380669776e-06 + sys_25: -3.7644135013096838e-06 + sys_26: 1.468540096692078e-06 + sys_27: 2.4383542478147445e-05 + sys_28: 2.316006147932292e-05 + sys_29: 1.393425671726078e-05 + sys_30: -3.644336569063453e-05 + sys_31: -1.085029520298541e-05 + sys_32: -3.170714286109122e-05 + sys_33: 2.717053826071027e-05 + sys_34: 1.1831688663513874e-05 + sys_35: 3.913711680661963e-06 + sys_36: -1.8190690321196453e-05 + sys_37: 2.0170127436830255e-05 + sys_38: -1.1540487695375623e-05 + sys_39: -3.9177346200614266e-05 + sys_40: -1.8748695711212022e-05 + sys_41: 4.554978489555752e-05 + sys_42: 9.572650457678152e-06 + sys_43: 3.401630095555792e-05 + sys_44: 4.565874888498843e-05 + sys_45: -6.233984578000956e-05 + sys_46: 9.463278121598103e-06 + sys_47: 0.000408704922483969 + sys_48: -0.001774968915644072 + sys_49: -3.283269626668942e-05 + sys_50: 3.244782837820394e-05 + sys_51: -4.9565028953994324e-05 + sys_52: 6.133403197730991e-06 + sys_53: -1.777585781638603e-05 + sys_54: 4.229231515728049e-05 + sys_55: -0.00014030856183451198 + sys_56: -7.47677951149363e-05 + sys_57: -4.412640313168434e-05 + sys_58: 0.00012963654959965214 + sys_59: 2.2108391349293855e-05 + sys_60: 3.166523173164569e-05 + sys_61: 3.223002928488443e-05 + sys_62: 1.5608503002483026e-05 - pol: 4.8e-05 lumi: 0.00047 - sys_0: 8.57504313322275e-08 - sys_1: -4.907053833203223e-08 - sys_2: -3.405189689330274e-07 - sys_3: -1.1357497762943665e-07 - sys_4: -1.7608954534334295e-07 - sys_5: -1.4646797793873748e-07 - sys_6: 6.175627363534867e-07 - sys_7: 2.028333942081264e-07 - sys_8: 9.39478573141636e-07 - sys_9: -3.819590398083667e-07 - sys_10: 9.74872934025652e-07 - sys_11: 1.8391332715624102e-06 - sys_12: -1.5209851485089163e-06 - sys_13: 2.285993399282469e-06 - sys_14: 3.3383457852478713e-06 - sys_15: 3.288478622554836e-06 - sys_16: -3.508780945164803e-06 - sys_17: 7.718910012631034e-06 - sys_18: 5.3694988454493204e-06 - sys_19: 3.579532478429065e-06 - sys_20: 2.0569520517524395e-06 - sys_21: 1.6715647578874352e-05 - sys_22: -1.7121983542773857e-05 - sys_23: 1.8194432722423922e-05 - sys_24: -4.24325347162374e-06 - sys_25: 1.1822535702930605e-05 - sys_26: -3.5734503617698524e-08 - sys_27: -2.8686405727035257e-05 - sys_28: -2.069697363088428e-05 - sys_29: -1.729937977587867e-05 - sys_30: -2.437845222557734e-05 - sys_31: 2.7007586850325954e-05 - sys_32: 5.686361675140545e-05 - sys_33: -2.5268088125035802e-05 - sys_34: -4.562855666316441e-06 - sys_35: -2.093809083464838e-05 - sys_36: -2.1274502613266667e-05 - sys_37: 1.4923398805077545e-05 - sys_38: 3.2073955783334384e-05 - sys_39: 4.387603590784007e-06 - sys_40: 4.453200100472395e-06 - sys_41: -4.5713656074363035e-06 - sys_42: 1.252707807375956e-05 - sys_43: -4.812637672422741e-05 - sys_44: -4.832325607671321e-05 - sys_45: 5.3419650030111265e-05 - sys_46: -2.115267625886423e-05 - sys_47: 0.00018913990208242903 - sys_48: -0.00018643000014697481 - sys_49: 0.00011016598863017784 - sys_50: -3.7964234919827194e-05 - sys_51: 5.3783112419247715e-05 - sys_52: 9.843472893067396e-06 - sys_53: -1.786385921751356e-05 - sys_54: 4.2332339002429996e-05 - sys_55: -0.0018975072703512844 - sys_56: 0.0001953209043144012 - sys_57: 0.00017132786305043638 - sys_58: 6.282699127751539e-05 - sys_59: -1.6587094091822832e-06 - sys_60: 5.179844846149559e-05 - sys_61: 3.8677206693080216e-05 - sys_62: 6.951070811136612e-05 + sys_0: 8.575043133238273e-08 + sys_1: -4.907053832950133e-08 + sys_2: -3.4051896893435574e-07 + sys_3: -1.1357497762526124e-07 + sys_4: 1.7608954534514073e-07 + sys_5: 1.4646797793860585e-07 + sys_6: -6.17562736354189e-07 + sys_7: 2.0283339420867975e-07 + sys_8: -9.394785731395876e-07 + sys_9: 3.8195903980889123e-07 + sys_10: -9.748729340256603e-07 + sys_11: -1.8391332715618388e-06 + sys_12: -1.5209851485094669e-06 + sys_13: -2.2859933992807907e-06 + sys_14: -3.33834578524772e-06 + sys_15: -3.2884786225544526e-06 + sys_16: 3.508780945164332e-06 + sys_17: -7.718910012631491e-06 + sys_18: -5.369498845450796e-06 + sys_19: -3.579532478431477e-06 + sys_20: -2.056952051752331e-06 + sys_21: -1.671564757887325e-05 + sys_22: 1.712198354277504e-05 + sys_23: -1.8194432722424552e-05 + sys_24: 4.243253471622473e-06 + sys_25: -1.1822535702933664e-05 + sys_26: 3.573450361493543e-08 + sys_27: 2.8686405727035884e-05 + sys_28: 2.0696973630882812e-05 + sys_29: 1.7299379775878058e-05 + sys_30: -2.4378452225575552e-05 + sys_31: -2.700758685032666e-05 + sys_32: -5.68636167514065e-05 + sys_33: 2.5268088125033657e-05 + sys_34: 4.453200100468686e-06 + sys_35: 4.57136560743703e-06 + sys_36: -1.2527078073739436e-05 + sys_37: 4.562855666317928e-06 + sys_38: -2.0938090834649083e-05 + sys_39: -2.127450261326606e-05 + sys_40: -1.492339880507648e-05 + sys_41: 3.2073955783332175e-05 + sys_42: -4.387603590788838e-06 + sys_43: 4.8126376724225626e-05 + sys_44: 4.832325607671534e-05 + sys_45: -5.3419650030109225e-05 + sys_46: -2.1152676258854606e-05 + sys_47: 0.00018913990208244214 + sys_48: 0.00018643000014694608 + sys_49: -0.00011016598863017248 + sys_50: 3.796423491982475e-05 + sys_51: -5.378311241924671e-05 + sys_52: 9.843472893063733e-06 + sys_53: -1.7863859217508545e-05 + sys_54: 4.233233900241813e-05 + sys_55: -0.001897507270351284 + sys_56: 0.0001953209043145125 + sys_57: 0.0001713278630504545 + sys_58: 6.282699127759675e-05 + sys_59: -1.6587094091848305e-06 + sys_60: 5.179844846149537e-05 + sys_61: 3.867720669307566e-05 + sys_62: 6.951070811138098e-05 - pol: 5.44e-05 lumi: 0.00047 - sys_0: 1.0148504411809979e-07 - sys_1: -6.153273408962956e-08 - sys_2: -4.2257531202857265e-07 - sys_3: -1.381478787721893e-07 - sys_4: -2.0129278792920327e-07 - sys_5: -1.885104311677381e-07 - sys_6: 7.723540565768651e-07 - sys_7: 2.433909375904491e-07 - sys_8: 1.1544379823122848e-06 - sys_9: -4.161919783179876e-07 - sys_10: 1.2476233091405923e-06 - sys_11: 2.303400641019601e-06 - sys_12: -1.9681387232201094e-06 - sys_13: 2.5949323907346765e-06 - sys_14: 4.1167318144072826e-06 - sys_15: 4.3032840340004644e-06 - sys_16: -4.505582228857201e-06 - sys_17: 1.011471848533099e-05 - sys_18: 7.367838258267066e-06 - sys_19: 4.5580994612714996e-06 - sys_20: 3.982806725712734e-06 - sys_21: 2.1552578682217904e-05 - sys_22: -2.2857785278142688e-05 - sys_23: 2.0967376981187587e-05 - sys_24: -1.1486515743728745e-06 - sys_25: 1.8541959654173832e-05 - sys_26: -2.18462751532296e-06 - sys_27: -3.675179008882494e-05 - sys_28: -2.515873989150442e-05 - sys_29: -1.9347680297234625e-05 - sys_30: 5.038869067194356e-06 - sys_31: 5.327387043884073e-05 - sys_32: 9.806916943144184e-05 - sys_33: -1.619447578470214e-05 - sys_34: 1.9044984191195642e-05 - sys_35: -1.833994694083224e-05 - sys_36: 1.9578134590714466e-05 - sys_37: 1.0703456954394042e-07 - sys_38: 1.7518498569874852e-05 - sys_39: 1.5024521613230377e-05 - sys_40: -2.5608673898332505e-06 - sys_41: -1.2961159259533382e-06 - sys_42: 5.393090866728315e-06 - sys_43: -6.93770120037406e-05 - sys_44: -2.7640559381180346e-05 - sys_45: 2.5742018119610425e-05 - sys_46: -3.1547496432733234e-05 - sys_47: 3.588300732449199e-05 - sys_48: -5.2178326300869e-05 - sys_49: 0.0002597574664879327 - sys_50: -5.535846242738061e-05 - sys_51: 3.503288649133751e-05 - sys_52: 2.147903405669294e-05 - sys_53: -2.2434216548048365e-05 - sys_54: 3.507928797689686e-05 - sys_55: 5.9610463458998094e-05 - sys_56: -9.8367166424966e-05 - sys_57: -0.00027484255937606746 - sys_58: 3.369690525339032e-05 - sys_59: -0.00027921550913343867 - sys_60: 0.00010186575595570822 - sys_61: 0.0017662429448398237 - sys_62: 0.0012344388150931239 + sys_0: 1.0148504411785782e-07 + sys_1: -6.153273408950956e-08 + sys_2: -4.2257531202911803e-07 + sys_3: -1.3814787876981547e-07 + sys_4: 2.0129278792998127e-07 + sys_5: 1.885104311697341e-07 + sys_6: -7.723540565758287e-07 + sys_7: 2.433909375907652e-07 + sys_8: -1.1544379823135392e-06 + sys_9: 4.1619197831793816e-07 + sys_10: -1.2476233091405256e-06 + sys_11: -2.30340064101932e-06 + sys_12: -1.968138723219064e-06 + sys_13: -2.5949323907334686e-06 + sys_14: -4.11673181440722e-06 + sys_15: -4.303284034000822e-06 + sys_16: 4.505582228856356e-06 + sys_17: -1.0114718485330793e-05 + sys_18: -7.367838258267563e-06 + sys_19: -4.558099461271406e-06 + sys_20: -3.982806725712293e-06 + sys_21: -2.1552578682216745e-05 + sys_22: 2.285778527813971e-05 + sys_23: -2.096737698118746e-05 + sys_24: 1.1486515743741798e-06 + sys_25: -1.854195965416997e-05 + sys_26: 2.1846275153256213e-06 + sys_27: 3.6751790088825196e-05 + sys_28: 2.515873989150415e-05 + sys_29: 1.934768029723154e-05 + sys_30: 5.0388690671924364e-06 + sys_31: -5.3273870438838815e-05 + sys_32: -9.806916943143558e-05 + sys_33: 1.6194475784698424e-05 + sys_34: -2.560867389835613e-06 + sys_35: 1.2961159259462584e-06 + sys_36: -5.3930908667168675e-06 + sys_37: -1.9044984191196926e-05 + sys_38: -1.833994694082725e-05 + sys_39: 1.957813459071507e-05 + sys_40: -1.0703456953894519e-07 + sys_41: 1.7518498569873226e-05 + sys_42: -1.5024521613228781e-05 + sys_43: 6.937701200374631e-05 + sys_44: 2.7640559381180634e-05 + sys_45: -2.5742018119615785e-05 + sys_46: -3.1547496432729615e-05 + sys_47: 3.588300732449049e-05 + sys_48: 5.21783263008725e-05 + sys_49: -0.00025975746648794495 + sys_50: 5.535846242736365e-05 + sys_51: -3.503288649134042e-05 + sys_52: 2.147903405668496e-05 + sys_53: -2.2434216548039465e-05 + sys_54: 3.507928797690343e-05 + sys_55: 5.961046345898619e-05 + sys_56: -9.836716642501642e-05 + sys_57: -0.0002748425593760812 + sys_58: 3.369690525337607e-05 + sys_59: -0.0002792155091334152 + sys_60: 0.00010186575595570267 + sys_61: 0.0017662429448398454 + sys_62: 0.0012344388150931163 - pol: 0.00028416000000000004 lumi: 0.00047 - sys_0: 2.1712992839983623e-07 - sys_1: -1.5703482575909113e-07 - sys_2: -7.607527746881251e-07 - sys_3: -2.621156437052819e-07 - sys_4: -4.289287024697409e-07 - sys_5: -4.799442109592178e-07 - sys_6: 1.6474140787634735e-06 - sys_7: 1.8981865602988566e-07 - sys_8: 8.321366873002236e-07 - sys_9: -1.0065813631638614e-06 - sys_10: 2.3268952012672105e-06 - sys_11: 4.0240509029360274e-06 - sys_12: -4.039133844965665e-06 - sys_13: 8.164605952259488e-06 - sys_14: 6.46600934996834e-06 - sys_15: 1.016924904921065e-05 - sys_16: -3.5646346650559423e-06 - sys_17: 2.177106670796821e-05 - sys_18: 1.2782149506374509e-05 - sys_19: 7.167104962750591e-06 - sys_20: 1.781016634600204e-05 - sys_21: 3.3052459317887186e-05 - sys_22: -4.1414495011096336e-05 - sys_23: 2.1819551377698398e-05 - sys_24: 1.7080173766763886e-05 - sys_25: 2.92803702921818e-05 - sys_26: -2.1659755443967118e-05 - sys_27: -3.9180493418839737e-05 - sys_28: -2.01637949261234e-05 - sys_29: -2.792916038061714e-05 - sys_30: 4.7832304471756013e-05 - sys_31: 7.346920027689283e-05 - sys_32: 7.111032831682453e-05 - sys_33: -2.4815826062987535e-06 - sys_34: 2.603629030037713e-05 - sys_35: 2.1584280253054535e-06 - sys_36: 2.9893102535493408e-05 - sys_37: -3.595824923155736e-05 - sys_38: -1.2697439493481002e-05 - sys_39: -4.086245118736718e-06 - sys_40: -0.000811241075562596 - sys_41: -0.0008810840425737854 - sys_42: 8.809565502696099e-05 - sys_43: -2.278570460063592e-05 - sys_44: 5.6434740888779996e-05 - sys_45: -1.1782746036679768e-05 - sys_46: 9.429578581706987e-05 - sys_47: 4.392507149547453e-06 - sys_48: 1.2545638868150622e-05 - sys_49: 8.159299787895583e-05 - sys_50: 4.691271265756479e-06 - sys_51: -2.6582131918052773e-05 - sys_52: 2.9421303575565706e-06 - sys_53: -3.2220106419279472e-06 - sys_54: -1.7386051926227023e-05 - sys_55: 5.8223147778990415e-06 - sys_56: 7.69570437120214e-07 - sys_57: 9.46397360713024e-05 - sys_58: -2.773593895782639e-05 - sys_59: -6.414380882543347e-05 - sys_60: -4.852751671019646e-05 - sys_61: -1.650847107838652e-05 - sys_62: 2.0094045122084835e-05 + sys_0: 2.1712992840009934e-07 + sys_1: -1.570348257582682e-07 + sys_2: -7.607527746882379e-07 + sys_3: -2.621156437051703e-07 + sys_4: 4.289287024702317e-07 + sys_5: 4.799442109612616e-07 + sys_6: -1.6474140787624859e-06 + sys_7: 1.8981865602971972e-07 + sys_8: -8.321366872995363e-07 + sys_9: 1.006581363164705e-06 + sys_10: -2.3268952012660628e-06 + sys_11: -4.024050902934787e-06 + sys_12: -4.039133844964965e-06 + sys_13: -8.164605952256586e-06 + sys_14: -6.466009349970837e-06 + sys_15: -1.0169249049211523e-05 + sys_16: 3.5646346650552566e-06 + sys_17: -2.1771066707968463e-05 + sys_18: -1.2782149506377236e-05 + sys_19: -7.167104962748464e-06 + sys_20: -1.781016634600106e-05 + sys_21: -3.3052459317883723e-05 + sys_22: 4.1414495011096004e-05 + sys_23: -2.181955137769703e-05 + sys_24: -1.7080173766763256e-05 + sys_25: -2.928037029217904e-05 + sys_26: 2.1659755443973304e-05 + sys_27: 3.918049341883986e-05 + sys_28: 2.0163794926125105e-05 + sys_29: 2.7929160380613287e-05 + sys_30: 4.783230447175259e-05 + sys_31: -7.34692002768938e-05 + sys_32: -7.111032831682077e-05 + sys_33: 2.481582606296297e-06 + sys_34: -0.0008112410755626099 + sys_35: 0.0008810840425737573 + sys_36: -8.809565502690129e-05 + sys_37: -2.6036290300379434e-05 + sys_38: 2.1584280253075935e-06 + sys_39: 2.9893102535489837e-05 + sys_40: 3.595824923155769e-05 + sys_41: -1.2697439493482942e-05 + sys_42: 4.086245118735652e-06 + sys_43: 2.278570460063618e-05 + sys_44: -5.64347408887802e-05 + sys_45: 1.1782746036717868e-05 + sys_46: 9.429578581706153e-05 + sys_47: 4.392507149550076e-06 + sys_48: -1.2545638868140168e-05 + sys_49: -8.15929978789637e-05 + sys_50: -4.691271265757725e-06 + sys_51: 2.6582131918054704e-05 + sys_52: 2.9421303575496842e-06 + sys_53: -3.2220106419256886e-06 + sys_54: -1.7386051926225925e-05 + sys_55: 5.822314777897364e-06 + sys_56: 7.695704371216913e-07 + sys_57: 9.463973607129994e-05 + sys_58: -2.7735938957819304e-05 + sys_59: -6.414380882543368e-05 + sys_60: -4.8527516710197874e-05 + sys_61: -1.6508471078381244e-05 + sys_62: 2.0094045122087518e-05 - pol: 0.00019711999999999998 lumi: 0.00047 - sys_0: 3.234835103153129e-07 - sys_1: -2.2987713746911245e-07 - sys_2: -1.142728572378688e-06 - sys_3: -3.8965661870991083e-07 - sys_4: -7.060478303793895e-07 - sys_5: -7.66082469774055e-07 - sys_6: 2.579359654999617e-06 - sys_7: 3.3178353754744617e-07 - sys_8: 2.4078890583371337e-06 - sys_9: -4.1663058173895865e-06 - sys_10: 6.643457445245671e-06 - sys_11: 8.566266603862507e-06 - sys_12: -7.806431250628647e-06 - sys_13: 2.3729787373455856e-05 - sys_14: 1.0321682568212526e-05 - sys_15: 2.5104304790135624e-05 - sys_16: -1.6597485402548564e-06 - sys_17: 4.37952298790107e-05 - sys_18: 2.1677979005341746e-05 - sys_19: 8.590602392157185e-06 - sys_20: 4.214283090869497e-05 - sys_21: 4.545959547510759e-05 - sys_22: -6.831221063272191e-05 - sys_23: 1.5947574707585905e-05 - sys_24: 5.279919248713953e-05 - sys_25: 4.2383515652513247e-05 - sys_26: -4.194342570126972e-05 - sys_27: -4.4410656796580525e-05 - sys_28: 2.253118887228675e-06 - sys_29: -3.522069769848687e-05 - sys_30: 8.506553796602219e-05 - sys_31: 9.437326931733028e-05 - sys_32: 5.370195883995857e-05 - sys_33: -1.3939925083676547e-06 - sys_34: 2.4325105778326082e-05 - sys_35: 4.061363760446542e-06 - sys_36: 2.174924966501983e-05 - sys_37: -8.210051203702284e-05 - sys_38: -4.316813661529654e-05 - sys_39: -9.581035745961176e-06 - sys_40: -0.0008055918258813003 - sys_41: 0.0008338374682771821 - sys_42: 0.00032925069770993156 - sys_43: 4.472965253372659e-06 - sys_44: -6.900216363695902e-06 - sys_45: 6.427803527026429e-05 - sys_46: 8.911184653690749e-05 - sys_47: 3.378910575824636e-05 - sys_48: 5.257710737155359e-06 - sys_49: 5.4172441204510435e-05 - sys_50: 1.1223877898816357e-05 - sys_51: -5.0282159099565686e-05 - sys_52: 2.215631410012966e-06 - sys_53: -9.161291843349643e-06 - sys_54: -2.7989992456379268e-05 - sys_55: 1.1963856721922828e-06 - sys_56: -2.5045448316454193e-05 - sys_57: 7.861575515821139e-05 - sys_58: -5.498247369386297e-05 - sys_59: -8.437460950105129e-05 - sys_60: -9.238020521055901e-05 - sys_61: -1.736365080237292e-05 - sys_62: 1.6362288472149678e-05 + sys_0: 3.234835103154658e-07 + sys_1: -2.2987713746840348e-07 + sys_2: -1.142728572378879e-06 + sys_3: -3.896566187096933e-07 + sys_4: 7.060478303784839e-07 + sys_5: 7.660824697759094e-07 + sys_6: -2.5793596549983632e-06 + sys_7: 3.317835375490551e-07 + sys_8: -2.4078890583392534e-06 + sys_9: 4.1663058173898635e-06 + sys_10: -6.6434574452439714e-06 + sys_11: -8.566266603859695e-06 + sys_12: -7.806431250627386e-06 + sys_13: -2.372978737345375e-05 + sys_14: -1.0321682568214669e-05 + sys_15: -2.510430479013695e-05 + sys_16: 1.6597485402534056e-06 + sys_17: -4.379522987901279e-05 + sys_18: -2.1677979005343376e-05 + sys_19: -8.590602392154038e-06 + sys_20: -4.214283090869364e-05 + sys_21: -4.545959547510692e-05 + sys_22: 6.83122106327228e-05 + sys_23: -1.5947574707584607e-05 + sys_24: -5.2799192487138134e-05 + sys_25: -4.238351565251109e-05 + sys_26: 4.194342570127262e-05 + sys_27: 4.4410656796577666e-05 + sys_28: -2.2531188872299475e-06 + sys_29: 3.5220697698485084e-05 + sys_30: 8.506553796601932e-05 + sys_31: -9.437326931733414e-05 + sys_32: -5.370195883995678e-05 + sys_33: 1.393992508365677e-06 + sys_34: -0.0008055918258812938 + sys_35: -0.0008338374682772129 + sys_36: -0.0003292506977098348 + sys_37: -2.43251057783279e-05 + sys_38: 4.061363760442145e-06 + sys_39: 2.1749249665019146e-05 + sys_40: 8.210051203702377e-05 + sys_41: -4.3168136615305986e-05 + sys_42: 9.58103574596122e-06 + sys_43: -4.472965253375488e-06 + sys_44: 6.900216363693838e-06 + sys_45: -6.427803527025229e-05 + sys_46: 8.911184653691851e-05 + sys_47: 3.3789105758242656e-05 + sys_48: -5.25771073715636e-06 + sys_49: -5.4172441204507013e-05 + sys_50: -1.1223877898816733e-05 + sys_51: 5.028215909956586e-05 + sys_52: 2.21563141000546e-06 + sys_53: -9.161291843344529e-06 + sys_54: -2.7989992456382713e-05 + sys_55: 1.1963856721902284e-06 + sys_56: -2.504544831644548e-05 + sys_57: 7.861575515821662e-05 + sys_58: -5.498247369384866e-05 + sys_59: -8.437460950105568e-05 + sys_60: -9.238020521056182e-05 + sys_61: -1.736365080237317e-05 + sys_62: 1.6362288472157444e-05 - pol: 0.00036608 lumi: 0.00047 - sys_0: 6.405405382234568e-07 - sys_1: -4.851736721206465e-07 - sys_2: -2.069010295737338e-06 - sys_3: -6.970780086606731e-07 - sys_4: -4.2952107943376485e-06 - sys_5: -2.9596497676315404e-06 - sys_6: 5.831600152464812e-06 - sys_7: 1.231690496871617e-06 - sys_8: 4.0769523926702235e-06 - sys_9: -1.9078599414057597e-05 - sys_10: 2.3917902252996594e-05 - sys_11: 2.458879975166139e-05 - sys_12: -1.6224440552190434e-05 - sys_13: 6.244501504868436e-05 - sys_14: 1.65165392986059e-05 - sys_15: 6.29322266136613e-05 - sys_16: 1.0552852764020914e-05 - sys_17: 9.786629975386137e-05 - sys_18: 3.390642871646396e-05 - sys_19: 1.4907970809681038e-06 - sys_20: 7.024415217663455e-05 - sys_21: 4.8756229370652096e-05 - sys_22: -9.728923334379372e-05 - sys_23: -1.158350757507549e-05 - sys_24: 0.00010839109106304991 - sys_25: 4.365936689843641e-05 - sys_26: -5.453318345590932e-05 - sys_27: -5.94361766543598e-05 - sys_28: 7.044123212756661e-05 - sys_29: -3.0129283995810154e-05 - sys_30: 0.00010811556502541028 - sys_31: 9.125421111758827e-05 - sys_32: 2.0070620313358418e-05 - sys_33: -6.173511073640891e-06 - sys_34: 1.610818213299576e-05 - sys_35: -7.47866158315835e-06 - sys_36: -4.614835347437251e-06 - sys_37: -0.00012540952718094302 - sys_38: -8.96109402513112e-05 - sys_39: -3.0416500913347817e-06 - sys_40: -0.00023980537089795002 - sys_41: 0.00013653588199920346 - sys_42: -0.0012534567115362783 - sys_43: 4.4003939590608624e-05 - sys_44: -0.0001420131091109946 - sys_45: 0.00025722179696305406 - sys_46: 9.903638913792016e-05 - sys_47: 5.807377186768374e-05 - sys_48: 5.8060570734161894e-06 - sys_49: 8.78776591805069e-06 - sys_50: 9.592650867521238e-06 - sys_51: -5.6237682637023735e-05 - sys_52: -4.4417952750570005e-06 - sys_53: -2.17034055228764e-05 - sys_54: -4.159600161484138e-05 - sys_55: -9.627653283073211e-06 - sys_56: -5.7768705669235367e-05 - sys_57: 2.60373640673025e-05 - sys_58: -0.00011148176429636495 - sys_59: -8.083637677725502e-05 - sys_60: -0.00011196109546133086 - sys_61: -9.670915674564383e-06 - sys_62: 9.933349366541959e-06 + sys_0: 6.405405382230645e-07 + sys_1: -4.851736721222099e-07 + sys_2: -2.0690102957372196e-06 + sys_3: -6.970780086604447e-07 + sys_4: 4.2952107943370225e-06 + sys_5: 2.9596497676324386e-06 + sys_6: -5.8316001524647e-06 + sys_7: 1.2316904968725024e-06 + sys_8: -4.076952392673332e-06 + sys_9: 1.9078599414057885e-05 + sys_10: -2.3917902252998325e-05 + sys_11: -2.4588799751661294e-05 + sys_12: -1.6224440552190946e-05 + sys_13: -6.244501504868227e-05 + sys_14: -1.6516539298602953e-05 + sys_15: -6.293222661366254e-05 + sys_16: -1.0552852764021974e-05 + sys_17: -9.786629975386165e-05 + sys_18: -3.390642871646582e-05 + sys_19: -1.4907970809696922e-06 + sys_20: -7.024415217663409e-05 + sys_21: -4.8756229370655646e-05 + sys_22: 9.728923334379537e-05 + sys_23: 1.158350757507308e-05 + sys_24: -0.0001083910910630471 + sys_25: -4.365936689842962e-05 + sys_26: 5.453318345591199e-05 + sys_27: 5.9436176654357813e-05 + sys_28: -7.044123212756637e-05 + sys_29: 3.0129283995807698e-05 + sys_30: 0.00010811556502540831 + sys_31: -9.125421111758822e-05 + sys_32: -2.0070620313360346e-05 + sys_33: 6.173511073640091e-06 + sys_34: -0.00023980537089795766 + sys_35: -0.00013653588199921479 + sys_36: 0.0012534567115363062 + sys_37: -1.61081821329994e-05 + sys_38: -7.478661583158074e-06 + sys_39: -4.614835347432627e-06 + sys_40: 0.00012540952718093502 + sys_41: -8.961094025131271e-05 + sys_42: 3.041650091333961e-06 + sys_43: -4.400393959060446e-05 + sys_44: 0.00014201310911099942 + sys_45: -0.00025722179696309683 + sys_46: 9.903638913798154e-05 + sys_47: 5.807377186768366e-05 + sys_48: -5.806057073415608e-06 + sys_49: -8.78776591805765e-06 + sys_50: -9.59265086753138e-06 + sys_51: 5.62376826370251e-05 + sys_52: -4.441795275057011e-06 + sys_53: -2.1703405522871517e-05 + sys_54: -4.1596001614839914e-05 + sys_55: -9.627653283069333e-06 + sys_56: -5.776870566922534e-05 + sys_57: 2.6037364067307546e-05 + sys_58: -0.00011148176429640172 + sys_59: -8.083637677725456e-05 + sys_60: -0.00011196109546132897 + sys_61: -9.670915674570231e-06 + sys_62: 9.933349366534549e-06 - pol: 0.00064512 lumi: 0.00047 - sys_0: 3.1021753570940113e-06 - sys_1: -9.396296623754884e-07 - sys_2: -4.104990857792829e-06 - sys_3: -3.0277405963070813e-06 - sys_4: -1.9505525328897594e-05 - sys_5: -1.7442554618896456e-05 - sys_6: 2.2059302883745564e-05 - sys_7: 8.27111045713096e-06 - sys_8: 1.3622296263821512e-05 - sys_9: -6.639186214410817e-05 - sys_10: 8.592927670850435e-05 - sys_11: 7.932772913168996e-05 - sys_12: -4.70572809608919e-05 - sys_13: 0.00013168295908404183 - sys_14: 2.3960049064725933e-05 - sys_15: 0.00013858518325362898 - sys_16: 3.380028916090155e-05 - sys_17: 0.0001889060634663044 - sys_18: 7.053238398706786e-05 - sys_19: -3.4083879794406665e-05 - sys_20: 5.526789411297709e-05 - sys_21: 1.9942494632999673e-05 - sys_22: -9.736891372503152e-05 - sys_23: -5.316329698579392e-05 - sys_24: 0.00014947864527291172 - sys_25: 4.1260519230555844e-05 - sys_26: -3.548776495935429e-05 - sys_27: -7.774631810176502e-05 - sys_28: 0.00019583603237832473 - sys_29: 2.7292399328063276e-06 - sys_30: 0.00010973263383637981 - sys_31: 5.812237139794235e-05 - sys_32: -2.0415962955485767e-05 - sys_33: -8.672644060904479e-06 - sys_34: 8.595139257854595e-06 - sys_35: -2.3021031430382086e-05 - sys_36: -3.0599592648489606e-05 - sys_37: -0.00011647876501908578 - sys_38: -0.00016475193313640675 - sys_39: 1.634903200729017e-05 - sys_40: -6.700488607074137e-05 - sys_41: 5.127334154418284e-05 - sys_42: -0.00017218000808571035 - sys_43: 9.957332839095674e-05 - sys_44: 0.00016916135822633163 - sys_45: -0.0014519237512463606 - sys_46: -0.00035796220925725543 - sys_47: 0.00035585219512718446 - sys_48: 8.820662551894108e-07 - sys_49: -7.414390106539829e-05 - sys_50: 2.648287986845461e-06 - sys_51: -4.149339201271573e-05 - sys_52: -1.1416581095201597e-05 - sys_53: -3.676815295672555e-05 - sys_54: -8.142484057666941e-05 - sys_55: -6.980197187489938e-05 - sys_56: -0.000215495493204872 - sys_57: -0.00012093862747726145 - sys_58: -0.0003213631493970247 - sys_59: -6.639163440179522e-05 - sys_60: -0.00010407878390522833 - sys_61: 3.6853822215861643e-06 - sys_62: 2.6516238075191925e-06 + sys_0: 3.10217535709407e-06 + sys_1: -9.396296623748636e-07 + sys_2: -4.1049908577932335e-06 + sys_3: -3.0277405963062805e-06 + sys_4: 1.950552532889702e-05 + sys_5: 1.74425546188965e-05 + sys_6: -2.2059302883747373e-05 + sys_7: 8.271110457131332e-06 + sys_8: -1.362229626381981e-05 + sys_9: 6.639186214410858e-05 + sys_10: -8.592927670850357e-05 + sys_11: -7.932772913169096e-05 + sys_12: -4.705728096089299e-05 + sys_13: -0.00013168295908404085 + sys_14: -2.3960049064725492e-05 + sys_15: -0.00013858518325362835 + sys_16: -3.380028916090591e-05 + sys_17: -0.00018890606346630784 + sys_18: -7.053238398706916e-05 + sys_19: 3.4083879794402545e-05 + sys_20: -5.526789411297704e-05 + sys_21: -1.9942494632997806e-05 + sys_22: 9.736891372503485e-05 + sys_23: 5.3163296985793826e-05 + sys_24: -0.0001494786452729128 + sys_25: -4.126051923055375e-05 + sys_26: 3.548776495935536e-05 + sys_27: 7.774631810176326e-05 + sys_28: -0.00019583603237832361 + sys_29: -2.729239932805281e-06 + sys_30: 0.00010973263383638018 + sys_31: -5.8122371397941146e-05 + sys_32: 2.0415962955482277e-05 + sys_33: 8.67264406090575e-06 + sys_34: -6.700488607074843e-05 + sys_35: -5.127334154416995e-05 + sys_36: 0.00017218000808566917 + sys_37: -8.595139257856894e-06 + sys_38: -2.3021031430379433e-05 + sys_39: -3.0599592648490805e-05 + sys_40: 0.0001164787650190826 + sys_41: -0.0001647519331364161 + sys_42: -1.6349032007299316e-05 + sys_43: -9.957332839095819e-05 + sys_44: -0.0001691613582263079 + sys_45: 0.0014519237512463342 + sys_46: -0.0003579622092575297 + sys_47: 0.00035585219512717715 + sys_48: -8.820662551479136e-07 + sys_49: 7.414390106540343e-05 + sys_50: -2.648287986842053e-06 + sys_51: 4.1493392012712395e-05 + sys_52: -1.1416581095194938e-05 + sys_53: -3.676815295673044e-05 + sys_54: -8.142484057667154e-05 + sys_55: -6.980197187492914e-05 + sys_56: -0.00021549549320487563 + sys_57: -0.00012093862747725345 + sys_58: -0.0003213631493970243 + sys_59: -6.639163440179829e-05 + sys_60: -0.00010407878390522963 + sys_61: 3.685382221587825e-06 + sys_62: 2.6516238075292162e-06 - pol: 0.0006611200000000001 lumi: 0.00047 - sys_0: 1.811710714602599e-05 - sys_1: -1.3059181757779837e-05 - sys_2: -1.0316751377375079e-05 - sys_3: -1.5639832483457244e-05 - sys_4: -8.685238651338384e-05 - sys_5: -8.012840679125505e-05 - sys_6: 9.586824837154663e-05 - sys_7: 3.93668599783516e-05 - sys_8: 4.1220253248632475e-05 - sys_9: -0.00017206115116409932 - sys_10: 0.00023150499238046925 - sys_11: 0.00019795993514493132 - sys_12: -0.00015313813661255545 - sys_13: 0.00016879698088948243 - sys_14: 2.23508308394163e-05 - sys_15: 0.00020790945356527553 - sys_16: 2.6547645925291293e-05 - sys_17: 0.0002611774713495985 - sys_18: 0.0001619432139868469 - sys_19: -0.0001036407629172811 - sys_20: -2.869485266734e-05 - sys_21: -5.618546078860592e-05 - sys_22: -3.925160363733337e-05 - sys_23: -9.163710672560553e-05 - sys_24: 0.00014188260839904956 - sys_25: 5.772576062800113e-05 - sys_26: 6.03508635208995e-05 - sys_27: -4.5481286071906764e-05 - sys_28: 0.0003493643397549365 - sys_29: 6.023438483556884e-05 - sys_30: 0.00010818427319070745 - sys_31: 8.668178859009777e-06 - sys_32: -7.11682295873518e-05 - sys_33: -5.768877472094036e-06 - sys_34: 5.591168735694529e-06 - sys_35: -5.742601266828994e-05 - sys_36: -6.217136229021219e-05 - sys_37: 3.5889214631126855e-06 - sys_38: -0.0003857399674757568 - sys_39: 6.650020958536023e-05 - sys_40: -1.3743435100953453e-05 - sys_41: 2.1607071786219247e-05 - sys_42: -6.3960433535036e-05 - sys_43: 0.0002716682852908359 - sys_44: 3.395962977609981e-05 - sys_45: -0.0002164550797307946 - sys_46: -3.855963866903099e-05 - sys_47: -7.740846614735473e-05 - sys_48: 4.0204183623727224e-06 - sys_49: -0.00041644455602051064 - sys_50: -4.016293410949085e-05 - sys_51: 4.5993158859175744e-05 - sys_52: -5.029786291571935e-05 - sys_53: -0.00011242129480643156 - sys_54: -0.00042626392330589357 - sys_55: 0.00011477245649835826 - sys_56: 0.000576124315519797 - sys_57: 0.0006173240384276745 - sys_58: 0.001586409130561033 - sys_59: -0.00020518966552357756 - sys_60: -0.00020333822516926158 - sys_61: -0.0002932095213722739 - sys_62: 0.0006628387034527291 + sys_0: 1.8117107146026165e-05 + sys_1: -1.305918175777752e-05 + sys_2: -1.0316751377376753e-05 + sys_3: -1.5639832483453734e-05 + sys_4: 8.685238651338595e-05 + sys_5: 8.012840679125508e-05 + sys_6: -9.586824837154987e-05 + sys_7: 3.936685997834781e-05 + sys_8: -4.122025324863063e-05 + sys_9: 0.00017206115116410046 + sys_10: -0.00023150499238046648 + sys_11: -0.00019795993514493514 + sys_12: -0.00015313813661255594 + sys_13: -0.0001687969808894826 + sys_14: -2.2350830839417062e-05 + sys_15: -0.00020790945356527585 + sys_16: -2.6547645925295264e-05 + sys_17: -0.0002611774713496013 + sys_18: -0.0001619432139868494 + sys_19: 0.00010364076291727499 + sys_20: 2.8694852667342186e-05 + sys_21: 5.6185460788608175e-05 + sys_22: 3.9251603637335884e-05 + sys_23: 9.163710672560747e-05 + sys_24: -0.00014188260839904988 + sys_25: -5.772576062799973e-05 + sys_26: -6.035086352089945e-05 + sys_27: 4.5481286071902814e-05 + sys_28: -0.000349364339754937 + sys_29: -6.023438483556622e-05 + sys_30: 0.00010818427319070463 + sys_31: -8.668178859007406e-06 + sys_32: 7.116822958735292e-05 + sys_33: 5.768877472096923e-06 + sys_34: -1.3743435100952651e-05 + sys_35: -2.1607071786214e-05 + sys_36: 6.396043353503673e-05 + sys_37: -5.591168735691984e-06 + sys_38: -5.742601266828547e-05 + sys_39: -6.217136229021315e-05 + sys_40: -3.58892146311166e-06 + sys_41: -0.0003857399674757465 + sys_42: -6.650020958536553e-05 + sys_43: -0.0002716682852908346 + sys_44: -3.395962977609682e-05 + sys_45: 0.00021645507973080676 + sys_46: -3.855963866907943e-05 + sys_47: -7.740846614734716e-05 + sys_48: -4.020418362354627e-06 + sys_49: 0.00041644455602050197 + sys_50: 4.016293410949063e-05 + sys_51: -4.5993158859179315e-05 + sys_52: -5.029786291568653e-05 + sys_53: -0.00011242129480644439 + sys_54: -0.0004262639233058954 + sys_55: 0.00011477245649835762 + sys_56: 0.000576124315519821 + sys_57: 0.0006173240384276609 + sys_58: 0.0015864091305610776 + sys_59: -0.00020518966552357529 + sys_60: -0.00020333822516926129 + sys_61: -0.0002932095213722567 + sys_62: 0.0006628387034526994 - pol: 0.0007993599999999999 lumi: 0.00047 - sys_0: 0.00010505248159787118 - sys_1: -8.276688131604682e-05 - sys_2: -4.827239036304887e-05 - sys_3: -9.304553600619055e-05 - sys_4: -0.0002730297516487757 - sys_5: -0.00028386607902136706 - sys_6: 0.0003419427867339581 - sys_7: 8.441952901619083e-05 - sys_8: 0.00012943769334761686 - sys_9: -0.0002504515046951962 - sys_10: 0.0004057424637655803 - sys_11: 0.0003103616599468913 - sys_12: -0.00041236561348510683 - sys_13: 0.00011798667124613381 - sys_14: 4.629495557584697e-06 - sys_15: 0.00022572948911424556 - sys_16: -0.00011724760431420078 - sys_17: 0.00023426485544292768 - sys_18: 0.00025149702459159454 - sys_19: -0.00018838620477611262 - sys_20: -0.00016827377687938583 - sys_21: -0.00018983882236743699 - sys_22: 8.588029075267852e-05 - sys_23: -0.00013088502532773632 - sys_24: 9.668824009327082e-05 - sys_25: 0.0001531519311182078 - sys_26: 0.0004207187089726896 - sys_27: 0.000178699754895646 - sys_28: 0.00075137100028526 - sys_29: 0.00021115360694138788 - sys_30: 0.00018675311772707492 - sys_31: -7.158740264106592e-05 - sys_32: -0.0006391715838791277 - sys_33: 1.8329071120642534e-05 - sys_34: -0.0001813912080696496 - sys_35: 0.0008343920594465885 - sys_36: 0.0004910812519313244 - sys_37: -0.0015765278884734611 - sys_38: 0.001855834907095022 - sys_39: -0.000306644470890637 - sys_40: 3.699218698933427e-06 - sys_41: 7.758103111302417e-06 - sys_42: -2.2649603241853713e-05 - sys_43: -0.0005908572275288319 - sys_44: 7.653077576464391e-06 - sys_45: -8.383581397171242e-05 - sys_46: -2.099336103596304e-05 - sys_47: -3.4944180681932e-05 - sys_48: 4.351351928352993e-06 - sys_49: 0.00044826247588758677 - sys_50: 5.8817233444542196e-05 - sys_51: -0.00013317732218373716 - sys_52: 2.6076439188691758e-05 - sys_53: 4.060474726177789e-05 - sys_54: 0.00017979831721449924 - sys_55: 3.631286055299096e-05 - sys_56: 0.00016142180310473956 - sys_57: 0.00014123422514172895 - sys_58: 0.00021300616520924877 - sys_59: 9.717205018655992e-06 - sys_60: -3.509388020002517e-05 - sys_61: 1.4838698142249067e-05 - sys_62: -3.489525229693062e-05 + sys_0: 0.00010505248159787048 + sys_1: -8.276688131604706e-05 + sys_2: -4.8272390363049375e-05 + sys_3: -9.304553600618975e-05 + sys_4: 0.0002730297516487765 + sys_5: 0.00028386607902136966 + sys_6: -0.0003419427867339642 + sys_7: 8.441952901617702e-05 + sys_8: -0.0001294376933476201 + sys_9: 0.0002504515046951909 + sys_10: -0.00040574246376556887 + sys_11: -0.0003103616599468961 + sys_12: -0.0004123656134851069 + sys_13: -0.00011798667124613287 + sys_14: -4.629495557587256e-06 + sys_15: -0.00022572948911424778 + sys_16: 0.0001172476043141961 + sys_17: -0.00023426485544292673 + sys_18: -0.000251497024591598 + sys_19: 0.00018838620477610733 + sys_20: 0.00016827377687938722 + sys_21: 0.0001898388223674339 + sys_22: -8.588029075267656e-05 + sys_23: 0.0001308850253277414 + sys_24: -9.668824009327403e-05 + sys_25: -0.00015315193111820914 + sys_26: -0.0004207187089726895 + sys_27: -0.00017869975489565013 + sys_28: -0.0007513710002852603 + sys_29: -0.0002111536069413766 + sys_30: 0.00018675311772707958 + sys_31: 7.158740264106901e-05 + sys_32: 0.00063917158387913 + sys_33: -1.832907112064078e-05 + sys_34: 3.6992186989330398e-06 + sys_35: -7.758103111301182e-06 + sys_36: 2.2649603241848973e-05 + sys_37: 0.00018139120806963014 + sys_38: 0.0008343920594466025 + sys_39: 0.0004910812519314006 + sys_40: 0.0015765278884734564 + sys_41: 0.0018558349070949749 + sys_42: 0.0003066444708906393 + sys_43: 0.0005908572275288423 + sys_44: -7.65307757646253e-06 + sys_45: 8.383581397170861e-05 + sys_46: -2.0993361035979e-05 + sys_47: -3.49441806819312e-05 + sys_48: -4.351351928347457e-06 + sys_49: -0.00044826247588759186 + sys_50: -5.881723344454978e-05 + sys_51: 0.00013317732218374136 + sys_52: 2.6076439188672608e-05 + sys_53: 4.060474726178381e-05 + sys_54: 0.00017979831721450106 + sys_55: 3.631286055298863e-05 + sys_56: 0.00016142180310474378 + sys_57: 0.0001412342251417207 + sys_58: 0.00021300616520926127 + sys_59: 9.717205018658573e-06 + sys_60: -3.5093880200024064e-05 + sys_61: 1.4838698142250976e-05 + sys_62: -3.489525229693562e-05 - pol: 0.0011673599999999999 lumi: 0.00047 - sys_0: 0.00043717161584928545 - sys_1: -0.0003663771373233839 - sys_2: -0.0002691672823332076 - sys_3: -0.0003999261324244517 - sys_4: -0.00049853529666139 - sys_5: -0.0006128390852800031 - sys_6: 0.0008383677797617835 - sys_7: -6.145317117704533e-05 - sys_8: 0.0003886503779809238 - sys_9: -0.00017121638256528045 - sys_10: 0.0004597289338409924 - sys_11: 0.0003186247280903773 - sys_12: -0.0007361698430586141 - sys_13: -1.3949633925602034e-05 - sys_14: -3.0488921130046096e-05 - sys_15: 0.00023772636961073366 - sys_16: -0.0006162985732188103 - sys_17: 7.247524675888572e-05 - sys_18: 0.00026136895442957107 - sys_19: -0.00037777306002198784 - sys_20: -0.0005648658317314272 - sys_21: -0.0008754463010697105 - sys_22: 0.0009604178602847174 - sys_23: -0.0011644826017431712 - sys_24: 0.0011021309137968535 - sys_25: -0.002009961946505033 - sys_26: -0.0029691129126865642 - sys_27: -0.0009967422874494363 - sys_28: -0.0010482699221215778 - sys_29: -0.00022114983393185754 - sys_30: -0.00011134366300755857 - sys_31: 2.2189699055995043e-05 - sys_32: 8.187118677644438e-05 - sys_33: -4.167789868576286e-06 - sys_34: -7.942458649089005e-06 - sys_35: 1.6012058525302404e-05 - sys_36: 1.618700283054088e-05 - sys_37: -0.0001587297250120716 - sys_38: 0.00020514944882886897 - sys_39: -4.624520715441101e-05 - sys_40: 5.847023607469354e-06 - sys_41: 2.4742699684910496e-06 - sys_42: -5.781950517674544e-06 - sys_43: -0.00010332695537576456 - sys_44: -1.4980999403070565e-06 - sys_45: -3.24568885220114e-05 - sys_46: -1.3554145144157634e-05 - sys_47: -1.8944366990717346e-05 - sys_48: 2.7002949802521645e-06 - sys_49: 0.00015733538303152833 - sys_50: 2.4603668734067692e-05 - sys_51: -6.794149246008541e-05 - sys_52: 9.268819138686455e-06 - sys_53: 9.927939707825778e-06 - sys_54: 8.178772120126916e-05 - sys_55: 1.919479062232579e-05 - sys_56: 8.72017296103736e-05 - sys_57: 6.353155008786691e-05 - sys_58: 7.438174831317749e-05 - sys_59: 7.71236660087194e-06 - sys_60: -1.8578990518122243e-05 - sys_61: 1.6664704487363487e-05 - sys_62: -3.002162511408659e-05 + sys_0: 0.0004371716158492832 + sys_1: -0.0003663771373233873 + sys_2: -0.0002691672823332082 + sys_3: -0.0003999261324244481 + sys_4: 0.0004985352966613949 + sys_5: 0.0006128390852799948 + sys_6: -0.0008383677797617891 + sys_7: -6.145317117707907e-05 + sys_8: -0.00038865037798091766 + sys_9: 0.00017121638256527543 + sys_10: -0.0004597289338409847 + sys_11: -0.00031862472809038566 + sys_12: -0.0007361698430586142 + sys_13: 1.3949633925599457e-05 + sys_14: 3.0488921130044897e-05 + sys_15: -0.00023772636961075 + sys_16: 0.000616298573218801 + sys_17: -7.247524675888798e-05 + sys_18: -0.0002613689544295794 + sys_19: 0.00037777306002197885 + sys_20: 0.0005648658317314355 + sys_21: 0.0008754463010697041 + sys_22: -0.0009604178602847062 + sys_23: 0.0011644826017431565 + sys_24: -0.0011021309137968253 + sys_25: 0.0020099619465051 + sys_26: 0.0029691129126865425 + sys_27: 0.000996742287449448 + sys_28: 0.0010482699221215667 + sys_29: 0.00022114983393184756 + sys_30: -0.00011134366300755379 + sys_31: -2.2189699055999113e-05 + sys_32: -8.18711867764466e-05 + sys_33: 4.167789868572913e-06 + sys_34: 5.847023607470077e-06 + sys_35: -2.474269968490509e-06 + sys_36: 5.781950517673334e-06 + sys_37: 7.942458649085212e-06 + sys_38: 1.601205852530427e-05 + sys_39: 1.6187002830544145e-05 + sys_40: 0.0001587297250120736 + sys_41: 0.00020514944882886655 + sys_42: 4.624520715441112e-05 + sys_43: 0.00010332695537576527 + sys_44: 1.498099940307616e-06 + sys_45: 3.2456888522010235e-05 + sys_46: -1.3554145144164124e-05 + sys_47: -1.8944366990717228e-05 + sys_48: -2.700294980249234e-06 + sys_49: -0.00015733538303152865 + sys_50: -2.4603668734068817e-05 + sys_51: 6.79414924600883e-05 + sys_52: 9.26881913867946e-06 + sys_53: 9.92793970782964e-06 + sys_54: 8.178772120127009e-05 + sys_55: 1.9194790622324082e-05 + sys_56: 8.720172961037526e-05 + sys_57: 6.353155008786279e-05 + sys_58: 7.438174831318299e-05 + sys_59: 7.71236660087318e-06 + sys_60: -1.857899051812161e-05 + sys_61: 1.6664704487362227e-05 + sys_62: -3.0021625114088473e-05 - pol: 0.0014112 lumi: 0.00047 - sys_0: 0.0010334196535290462 - sys_1: -0.0010160478295447779 - sys_2: -0.0011667437735360365 - sys_3: -0.000757104817750977 - sys_4: -0.0005696815616150391 - sys_5: -0.0008845066079519098 - sys_6: 0.0014163291214270041 - sys_7: -0.0005651242405939099 - sys_8: 0.000993303360405739 - sys_9: 0.00011843678252377706 - sys_10: 0.00045204088705448836 - sys_11: 0.000272166042901361 - sys_12: -0.001395523783005285 - sys_13: -0.0010007847044199373 - sys_14: -0.0017847400736663713 - sys_15: -0.001412484045533067 - sys_16: 0.006723225004133488 - sys_17: 0.0003946677647411717 - sys_18: 4.91899605324475e-05 - sys_19: 0.0003029527234895039 - sys_20: 0.0005032192804172655 - sys_21: 0.00030218393520533286 - sys_22: -0.000236785549607658 - sys_23: 8.03112393412389e-05 - sys_24: 8.45943728861435e-06 - sys_25: -6.316218367949187e-05 - sys_26: -0.0003239356177165097 - sys_27: -0.0001876868117825334 - sys_28: -0.00019505136217248402 - sys_29: -4.5170526937550413e-05 - sys_30: -2.9591980415174554e-05 - sys_31: -3.7455458862870804e-06 - sys_32: 2.633008919443024e-05 - sys_33: -6.870226314595115e-07 - sys_34: -5.816369871576808e-06 - sys_35: -8.945930467391758e-06 - sys_36: 1.1949896262885486e-06 - sys_37: -4.783641382783677e-05 - sys_38: 5.9174707824535834e-05 - sys_39: -1.4808686127473796e-05 - sys_40: 3.8708690243449295e-06 - sys_41: 5.398379998623333e-07 - sys_42: -6.509398543074114e-07 - sys_43: -2.9590577620665565e-05 - sys_44: -4.393134538694975e-06 - sys_45: -1.0607260572507771e-05 - sys_46: -8.56630925351904e-06 - sys_47: -7.812965569778696e-06 - sys_48: 1.360055184848511e-06 - sys_49: 7.433975041721804e-05 - sys_50: 1.3159900275223438e-05 - sys_51: -3.945628402556754e-05 - sys_52: 3.8384576874785415e-06 - sys_53: 2.3090327248483e-06 - sys_54: 4.0784181480534384e-05 - sys_55: 1.0005289449787072e-05 - sys_56: 4.8071837807650764e-05 - sys_57: 2.7471512388293316e-05 - sys_58: 2.2134593893175393e-05 - sys_59: 7.4869885302495174e-06 - sys_60: -5.872122935370367e-06 - sys_61: 1.1777771776695572e-05 - sys_62: -2.0294120687003928e-05 + sys_0: 0.001033419653529039 + sys_1: -0.0010160478295447907 + sys_2: -0.001166743773536037 + sys_3: -0.00075710481775097 + sys_4: 0.0005696815616150449 + sys_5: 0.0008845066079519055 + sys_6: -0.001416329121426991 + sys_7: -0.0005651242405939621 + sys_8: -0.0009933033604057342 + sys_9: -0.00011843678252378996 + sys_10: -0.0004520408870544794 + sys_11: -0.0002721660429013567 + sys_12: -0.001395523783005294 + sys_13: 0.0010007847044199367 + sys_14: 0.0017847400736663802 + sys_15: 0.0014124840455332157 + sys_16: -0.006723225004133467 + sys_17: -0.0003946677647411752 + sys_18: -4.918996053243845e-05 + sys_19: -0.0003029527234895195 + sys_20: -0.0005032192804172647 + sys_21: -0.00030218393520532814 + sys_22: 0.00023678554960765807 + sys_23: -8.031123934124119e-05 + sys_24: -8.459437288613941e-06 + sys_25: 6.316218367949257e-05 + sys_26: 0.00032393561771650964 + sys_27: 0.00018768681178253633 + sys_28: 0.0001950513621724823 + sys_29: 4.517052693754888e-05 + sys_30: -2.959198041517256e-05 + sys_31: 3.7455458862863155e-06 + sys_32: -2.6330089194430162e-05 + sys_33: 6.870226314582729e-07 + sys_34: 3.870869024345384e-06 + sys_35: -5.39837999862165e-07 + sys_36: 6.509398543072439e-07 + sys_37: 5.816369871575662e-06 + sys_38: -8.945930467390872e-06 + sys_39: 1.1949896262886333e-06 + sys_40: 4.7836413827838426e-05 + sys_41: 5.917470782453554e-05 + sys_42: 1.480868612747394e-05 + sys_43: 2.959057762066585e-05 + sys_44: 4.393134538695224e-06 + sys_45: 1.0607260572506946e-05 + sys_46: -8.566309253521036e-06 + sys_47: -7.812965569778146e-06 + sys_48: -1.3600551848471928e-06 + sys_49: -7.433975041721897e-05 + sys_50: -1.3159900275223985e-05 + sys_51: 3.945628402556886e-05 + sys_52: 3.838457687475351e-06 + sys_53: 2.309032724849529e-06 + sys_54: 4.0784181480535347e-05 + sys_55: 1.0005289449786667e-05 + sys_56: 4.8071837807651625e-05 + sys_57: 2.7471512388290937e-05 + sys_58: 2.2134593893178134e-05 + sys_59: 7.486988530250463e-06 + sys_60: -5.872122935370004e-06 + sys_61: 1.177777177669478e-05 + sys_62: -2.0294120687004806e-05 - pol: 0.00289728 lumi: 0.00047 - sys_0: 0.0016876982554332558 - sys_1: -0.0018354248647584116 - sys_2: -0.0030334095929484698 - sys_3: -0.0007763094803207819 - sys_4: -0.00056052607589726 - sys_5: -0.0012893182838419632 - sys_6: 0.003396902591166231 - sys_7: -0.0022807938100493272 - sys_8: -0.012527532393627338 - sys_9: -0.0022823995782644954 - sys_10: -7.14742322577146e-05 - sys_11: -1.6211767140030812e-05 - sys_12: 0.0002838459840671494 - sys_13: 0.00016582805923476244 - sys_14: 7.320144684565628e-05 - sys_15: -5.332824989181306e-06 - sys_16: 0.00030719532089372534 - sys_17: 7.797750923151457e-05 - sys_18: 4.28681546552238e-05 - sys_19: 4.227101667338671e-05 - sys_20: 0.00010388463430430462 - sys_21: 7.292441121927229e-05 - sys_22: -7.170783247902023e-05 - sys_23: 2.842311639479694e-05 - sys_24: -5.358659688111717e-06 - sys_25: 6.724952508668602e-07 - sys_26: -8.356380389739514e-05 - sys_27: -5.684878529561089e-05 - sys_28: -5.9364107014550124e-05 - sys_29: -1.0594585399999708e-05 - sys_30: -1.131384919879631e-05 - sys_31: -4.974930681499503e-06 - sys_32: 8.838720450542644e-06 - sys_33: -3.4521966795829875e-09 - sys_34: -3.1973594393447865e-06 - sys_35: -7.96119362150196e-06 - sys_36: -3.7327410330586123e-07 - sys_37: -9.289591695053409e-06 - sys_38: 1.3450868403895251e-05 - sys_39: -3.756172787455739e-06 - sys_40: 1.476281063701641e-06 - sys_41: 9.469625226741054e-08 - sys_42: 2.0977365521598139e-07 - sys_43: -5.997996769742387e-06 - sys_44: -2.9404245487695188e-06 - sys_45: -2.6921200700491273e-06 - sys_46: -4.025306210242501e-06 - sys_47: -2.05996369261086e-06 - sys_48: 4.811815903941377e-07 - sys_49: 2.8510803005345743e-05 - sys_50: 5.506163993686876e-06 - sys_51: -1.7189357460720116e-05 - sys_52: 1.229155031718389e-06 - sys_53: 8.934858393247168e-08 - sys_54: 1.5617429310357212e-05 - sys_55: 4.032861694713025e-06 - sys_56: 2.0182878345212536e-05 - sys_57: 9.454324561970696e-06 - sys_58: 4.060126910711864e-06 - sys_59: 4.189152322580647e-06 - sys_60: -7.781355886210458e-07 - sys_61: 5.4733593833104085e-06 - sys_62: -9.12847231881253e-06 + sys_0: 0.001687698255433242 + sys_1: -0.0018354248647584376 + sys_2: -0.003033409592948468 + sys_3: -0.0007763094803207736 + sys_4: 0.0005605260758972574 + sys_5: 0.0012893182838419825 + sys_6: -0.0033969025911660742 + sys_7: -0.002280793810049445 + sys_8: 0.012527532393627305 + sys_9: 0.0022823995782646316 + sys_10: 7.147423225771547e-05 + sys_11: 1.6211767140026136e-05 + sys_12: 0.0002838459840671451 + sys_13: -0.00016582805923476106 + sys_14: -7.320144684565495e-05 + sys_15: 5.332824989187221e-06 + sys_16: -0.00030719532089372437 + sys_17: -7.797750923151499e-05 + sys_18: -4.286815465522317e-05 + sys_19: -4.2271016673390264e-05 + sys_20: -0.00010388463430430449 + sys_21: -7.292441121927302e-05 + sys_22: 7.170783247901973e-05 + sys_23: -2.8423116394797648e-05 + sys_24: 5.358659688111875e-06 + sys_25: -6.724952508666536e-07 + sys_26: 8.35638038973951e-05 + sys_27: 5.684878529561151e-05 + sys_28: 5.9364107014549514e-05 + sys_29: 1.0594585399999226e-05 + sys_30: -1.1313849198795777e-05 + sys_31: 4.974930681499073e-06 + sys_32: -8.838720450542993e-06 + sys_33: 3.4521966789329004e-09 + sys_34: 1.4762810637016137e-06 + sys_35: -9.469625226734517e-08 + sys_36: -2.0977365521600465e-07 + sys_37: 3.1973594393441122e-06 + sys_38: -7.961193621501828e-06 + sys_39: -3.732741033062385e-07 + sys_40: 9.289591695053961e-06 + sys_41: 1.3450868403894987e-05 + sys_42: 3.7561727874557285e-06 + sys_43: 5.99799676974249e-06 + sys_44: 2.9404245487695734e-06 + sys_45: 2.6921200700485708e-06 + sys_46: -4.025306210242891e-06 + sys_47: -2.0599636926107224e-06 + sys_48: -4.811815903937815e-07 + sys_49: -2.8510803005346255e-05 + sys_50: -5.50616399368701e-06 + sys_51: 1.718935746072045e-05 + sys_52: 1.229155031717705e-06 + sys_53: 8.934858393280943e-08 + sys_54: 1.5617429310357314e-05 + sys_55: 4.032861694712982e-06 + sys_56: 2.0182878345212627e-05 + sys_57: 9.454324561969585e-06 + sys_58: 4.060126910712855e-06 + sys_59: 4.189152322580988e-06 + sys_60: -7.781355886210332e-07 + sys_61: 5.473359383310016e-06 + sys_62: -9.128472318812736e-06 diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_2JET_510GEV/uncertainties_A.yaml b/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_2JET_510GEV/uncertainties_A.yaml index 13aa42700b..21020adf94 100644 --- a/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_2JET_510GEV/uncertainties_A.yaml +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_2JET_510GEV/uncertainties_A.yaml @@ -262,781 +262,781 @@ definitions: bins: - pol: 0.00035072 lumi: 0.00047 - sys_0: 1.6714867251519865e-05 - sys_1: -1.9697169024554937e-05 - sys_2: -1.010421365609237e-05 - sys_3: -1.2746064055786e-05 - sys_4: -2.5049610259423067e-05 - sys_5: -3.724270341159478e-05 - sys_6: 2.705942449995741e-05 - sys_7: 1.0808096731863009e-05 - sys_8: 3.707063728361056e-05 - sys_9: -4.349709208213046e-05 - sys_10: 9.276971501891272e-05 - sys_11: 6.549168043003301e-05 - sys_12: -5.831229768869864e-05 - sys_13: 0.0001678954740481609 - sys_14: 0.0002454681768632849 - sys_15: 0.00027573462638399 - sys_16: -7.709443879718861e-05 - sys_17: 0.0007131344932908932 - sys_18: 0.0009731350465146249 - sys_19: 0.0059205083848353586 - sys_20: -0.0011109324008875727 - sys_21: -0.0006590246446946086 - sys_22: 0.0004349251890638587 - sys_23: -0.00017285854432127942 - sys_24: 5.7018045800379496e-05 - sys_25: 6.030328832497679e-07 - sys_26: 3.46387176871164e-05 - sys_27: 8.30427145710141e-05 - sys_28: 4.655866316754729e-05 - sys_29: 6.146214426295914e-05 - sys_30: -6.309088493879222e-06 - sys_31: -5.0130153321971705e-05 - sys_32: -6.550932695901168e-05 - sys_33: 1.1919418866231785e-05 - sys_34: -1.1083988795952688e-05 - sys_35: 1.1583711141542408e-05 - sys_36: 2.2341218586974057e-05 - sys_37: -8.135718470478857e-06 - sys_38: -2.778933418211516e-06 - sys_39: 1.690200577917589e-05 - sys_40: -2.7915793127757107e-06 - sys_41: 3.3646777912297996e-08 - sys_42: -8.63749689699702e-07 - sys_43: 3.971090337384388e-05 - sys_44: 2.232490696002846e-06 - sys_45: 1.5236463348986408e-06 - sys_46: 3.4417480744521e-06 - sys_47: 6.309876669181764e-06 - sys_48: -5.677996062425343e-07 - sys_49: -2.7620384760634184e-05 - sys_50: 1.1437928188748471e-05 - sys_51: -7.394939009901356e-07 - sys_52: -2.2012945497202025e-05 - sys_53: 7.894977373153833e-06 - sys_54: -1.8472210047783703e-05 - sys_55: -4.771632139803858e-06 - sys_56: -1.5798002287522338e-05 - sys_57: -6.825820682241323e-06 - sys_58: -2.47026795744354e-06 - sys_59: -2.0421249979394873e-06 - sys_60: -2.8202391438234803e-06 - sys_61: -2.9844175809627592e-06 - sys_62: 1.2707923563053382e-05 + sys_0: 1.6714867251536542e-05 + sys_1: -1.9697169024563068e-05 + sys_2: -1.010421365608584e-05 + sys_3: -1.2746064055782454e-05 + sys_4: 2.5049610259427122e-05 + sys_5: 3.724270341158771e-05 + sys_6: -2.7059424499955034e-05 + sys_7: 1.0808096731856809e-05 + sys_8: -3.7070637283619636e-05 + sys_9: 4.349709208212938e-05 + sys_10: -9.276971501891204e-05 + sys_11: -6.549168043003247e-05 + sys_12: -5.831229768870269e-05 + sys_13: -0.0001678954740481765 + sys_14: -0.0002454681768632715 + sys_15: -0.0002757346263839963 + sys_16: 7.709443879720645e-05 + sys_17: -0.0007131344932908124 + sys_18: -0.0009731350465144748 + sys_19: -0.005920508384835386 + sys_20: 0.0011109324008875582 + sys_21: 0.0006590246446946419 + sys_22: -0.0004349251890638496 + sys_23: 0.00017285854432128752 + sys_24: -5.701804580038649e-05 + sys_25: -6.030328832513235e-07 + sys_26: -3.4638717687115963e-05 + sys_27: -8.304271457101394e-05 + sys_28: -4.655866316754662e-05 + sys_29: -6.146214426295808e-05 + sys_30: -6.3090884938785146e-06 + sys_31: 5.0130153321971434e-05 + sys_32: 6.55093269590113e-05 + sys_33: -1.1919418866230575e-05 + sys_34: -2.7915793127758835e-06 + sys_35: -3.3646777912457853e-08 + sys_36: 8.63749689700465e-07 + sys_37: 1.108398879595191e-05 + sys_38: 1.1583711141540548e-05 + sys_39: 2.2341218586976392e-05 + sys_40: 8.135718470477791e-06 + sys_41: -2.7789334182121886e-06 + sys_42: -1.6902005779176232e-05 + sys_43: -3.971090337384395e-05 + sys_44: -2.2324906960029065e-06 + sys_45: -1.5236463348976242e-06 + sys_46: 3.4417480744522467e-06 + sys_47: 6.3098766691815025e-06 + sys_48: 5.677996062424474e-07 + sys_49: 2.762038476063361e-05 + sys_50: -1.1437928188749564e-05 + sys_51: 7.394939009897081e-07 + sys_52: -2.201294549720551e-05 + sys_53: 7.894977373151509e-06 + sys_54: -1.8472210047783893e-05 + sys_55: -4.771632139803753e-06 + sys_56: -1.579800228752282e-05 + sys_57: -6.825820682240654e-06 + sys_58: -2.470267957444148e-06 + sys_59: -2.042124997939777e-06 + sys_60: -2.820239143823526e-06 + sys_61: -2.9844175809627766e-06 + sys_62: 1.270792356305357e-05 - pol: 7.04e-06 lumi: 0.00047 - sys_0: 3.7536047074729424e-05 - sys_1: -1.4537478153461237e-05 - sys_2: -1.6419587478047247e-05 - sys_3: -1.806054776449194e-05 - sys_4: -5.9896043010497606e-05 - sys_5: -3.260556348840372e-05 - sys_6: 4.199119761188298e-05 - sys_7: 1.8373390653307427e-05 - sys_8: 5.539711380926878e-05 - sys_9: -8.855337160752001e-05 - sys_10: 7.701893174732944e-05 - sys_11: 8.253201507729048e-05 - sys_12: -5.980365707200398e-05 - sys_13: 0.00019378741157360314 - sys_14: 0.00021222363443035324 - sys_15: 0.00010137437128763463 - sys_16: -4.2889369944502944e-05 - sys_17: 0.00022622240852291533 - sys_18: 0.00013226324029748802 - sys_19: 0.00010908732138341787 - sys_20: 0.0002130904079194211 - sys_21: 0.00036116408638769433 - sys_22: -0.0003551236962588125 - sys_23: 0.00032377837089966796 - sys_24: -2.684753617755315e-05 - sys_25: 0.00025195683521422565 - sys_26: -0.00016438852546139115 - sys_27: -0.0003857417670154586 - sys_28: -0.00039888114667257656 - sys_29: -0.00012701186388056602 - sys_30: -0.0001613808369666566 - sys_31: 0.0004146551685299103 - sys_32: 0.0007993545734745145 - sys_33: -0.0005403424741244033 - sys_34: -0.0005331556603171377 - sys_35: -0.0008603255769397597 - sys_36: -0.0002659763874593031 - sys_37: 0.0004160417887856855 - sys_38: 0.0017618610727783682 - sys_39: 0.00015532209726488273 - sys_40: -2.7779810901818546e-05 - sys_41: 8.885441823708301e-07 - sys_42: -1.0346811031639502e-05 - sys_43: 0.00026808795087723055 - sys_44: 1.3843571286476268e-05 - sys_45: 9.094741858160394e-06 - sys_46: 2.2281281910080392e-05 - sys_47: 4.4454870997705456e-05 - sys_48: -4.458606094070057e-05 - sys_49: -0.0014367270763027296 - sys_50: 8.444828765139943e-05 - sys_51: 0.00021169417915041925 - sys_52: -1.426763703404778e-05 - sys_53: 0.00017418247270576263 - sys_54: -0.00021022065955213047 - sys_55: -3.298115648495603e-05 - sys_56: -0.00021351761243413307 - sys_57: -0.00011174447610214944 - sys_58: 2.5230858738366034e-05 - sys_59: -5.505647992196469e-05 - sys_60: -6.642439229064435e-05 - sys_61: 3.729101771245988e-05 - sys_62: 6.109889171632902e-05 + sys_0: 3.753604707472954e-05 + sys_1: -1.4537478153461532e-05 + sys_2: -1.6419587478046905e-05 + sys_3: -1.8060547764491067e-05 + sys_4: 5.9896043010498406e-05 + sys_5: 3.260556348840293e-05 + sys_6: -4.199119761188595e-05 + sys_7: 1.8373390653303663e-05 + sys_8: -5.5397113809269034e-05 + sys_9: 8.855337160751962e-05 + sys_10: -7.701893174732472e-05 + sys_11: -8.253201507729093e-05 + sys_12: -5.9803657072004354e-05 + sys_13: -0.00019378741157360073 + sys_14: -0.00021222363443035576 + sys_15: -0.00010137437128763584 + sys_16: 4.2889369944501115e-05 + sys_17: -0.00022622240852291243 + sys_18: -0.0001322632402974858 + sys_19: -0.00010908732138341986 + sys_20: -0.00021309040791941944 + sys_21: -0.0003611640863876949 + sys_22: 0.00035512369625881123 + sys_23: -0.00032377837089966714 + sys_24: 2.6847536177547286e-05 + sys_25: -0.00025195683521423535 + sys_26: 0.00016438852546139403 + sys_27: 0.000385741767015464 + sys_28: 0.00039888114667256766 + sys_29: 0.00012701186388056407 + sys_30: -0.0001613808369666489 + sys_31: -0.0004146551685299072 + sys_32: -0.0007993545734745363 + sys_33: 0.0005403424741243631 + sys_34: -2.7779810901819017e-05 + sys_35: -8.885441823715833e-07 + sys_36: 1.0346811031639365e-05 + sys_37: 0.000533155660317132 + sys_38: -0.0008603255769397525 + sys_39: -0.00026597638745935894 + sys_40: -0.00041604178878563395 + sys_41: 0.0017618610727783836 + sys_42: -0.00015532209726486898 + sys_43: -0.00026808795087722507 + sys_44: -1.3843571286476214e-05 + sys_45: -9.094741858158318e-06 + sys_46: 2.228128191008156e-05 + sys_47: 4.445487099770346e-05 + sys_48: 4.458606094069697e-05 + sys_49: 0.0014367270763027211 + sys_50: -8.444828765139603e-05 + sys_51: -0.00021169417915043267 + sys_52: -1.4267637034057543e-05 + sys_53: 0.00017418247270574637 + sys_54: -0.00021022065955214055 + sys_55: -3.2981156484952907e-05 + sys_56: -0.00021351761243413632 + sys_57: -0.00011174447610213655 + sys_58: 2.523085873835537e-05 + sys_59: -5.5056479921964646e-05 + sys_60: -6.642439229064642e-05 + sys_61: 3.7291017712465e-05 + sys_62: 6.109889171633141e-05 - pol: 0.0001056 lumi: 0.00047 - sys_0: 9.639113621522696e-06 - sys_1: -5.646454025019674e-06 - sys_2: -9.929843572624319e-06 - sys_3: -6.984035232448086e-06 - sys_4: -1.4815800007165661e-05 - sys_5: -1.1919944504017224e-05 - sys_6: 2.1276886501058594e-05 - sys_7: 5.0545403664977595e-06 - sys_8: 1.8709816292800257e-05 - sys_9: -2.1552120767875792e-05 - sys_10: 2.8405203524526086e-05 - sys_11: 3.402328880952409e-05 - sys_12: -2.909461402777679e-05 - sys_13: 4.92584097943828e-05 - sys_14: 5.960072423206318e-05 - sys_15: 4.346408658763269e-05 - sys_16: -1.894232965932391e-05 - sys_17: 9.419553029434767e-05 - sys_18: 5.602831570076377e-05 - sys_19: 6.611196278189435e-05 - sys_20: 3.625382411363953e-05 - sys_21: 0.00014139168457814256 - sys_22: -9.35738995660201e-05 - sys_23: 9.394145427541232e-05 - sys_24: 1.1691521959679753e-05 - sys_25: 4.5014781125108314e-05 - sys_26: -3.185017996541694e-05 - sys_27: -0.00011931734027537099 - sys_28: -4.726533600847381e-05 - sys_29: -6.097688851046237e-05 - sys_30: -2.2175473918041045e-05 - sys_31: 0.00018871326956568837 - sys_32: 0.00028013570612497765 - sys_33: -0.00015445242653340798 - sys_34: -7.663444268220304e-05 - sys_35: -0.0001522699885892203 - sys_36: -0.00011772496507775529 - sys_37: 2.9311436576363973e-05 - sys_38: 0.0002565526272737746 - sys_39: 1.9160128234901477e-05 - sys_40: -9.681771169178912e-06 - sys_41: 7.21939843105648e-06 - sys_42: -8.696964063596126e-06 - sys_43: -0.00011303764468135811 - sys_44: -3.715516382933626e-05 - sys_45: -3.6457261205986824e-06 - sys_46: -3.6156617715932114e-05 - sys_47: 6.98144383868348e-05 - sys_48: -5.32849156115735e-05 - sys_49: 0.0005280496560940362 - sys_50: -0.0004709705546297933 - sys_51: 0.0014480276448114548 - sys_52: -0.0008047347635497021 - sys_53: -0.0016439797573630371 - sys_54: -0.0001873117510559543 - sys_55: 8.363489909483666e-05 - sys_56: 0.00011041387577852491 - sys_57: -2.6482217825553664e-05 - sys_58: -2.73776107804536e-05 - sys_59: 0.00014127147669184493 - sys_60: 5.642886196762529e-05 - sys_61: -3.509793046327679e-05 - sys_62: -9.586040075920934e-05 + sys_0: 9.639113621523742e-06 + sys_1: -5.646454025019942e-06 + sys_2: -9.929843572623726e-06 + sys_3: -6.984035232446947e-06 + sys_4: 1.4815800007166261e-05 + sys_5: 1.1919944504016716e-05 + sys_6: -2.1276886501059485e-05 + sys_7: 5.054540366495724e-06 + sys_8: -1.870981629280105e-05 + sys_9: 2.1552120767874345e-05 + sys_10: -2.840520352452258e-05 + sys_11: -3.4023288809524916e-05 + sys_12: -2.9094614027779935e-05 + sys_13: -4.92584097943831e-05 + sys_14: -5.9600724232063045e-05 + sys_15: -4.3464086587633354e-05 + sys_16: 1.8942329659323598e-05 + sys_17: -9.419553029434548e-05 + sys_18: -5.6028315700762034e-05 + sys_19: -6.611196278189921e-05 + sys_20: -3.625382411363936e-05 + sys_21: -0.0001413916845781397 + sys_22: 9.35738995660229e-05 + sys_23: -9.394145427541252e-05 + sys_24: -1.169152195968395e-05 + sys_25: -4.5014781125111906e-05 + sys_26: 3.185017996541727e-05 + sys_27: 0.00011931734027537336 + sys_28: 4.726533600847278e-05 + sys_29: 6.0976888510461535e-05 + sys_30: -2.217547391804268e-05 + sys_31: -0.00018871326956568653 + sys_32: -0.00028013570612498253 + sys_33: 0.00015445242653340283 + sys_34: -9.68177116918166e-06 + sys_35: -7.219398431057135e-06 + sys_36: 8.696964063597476e-06 + sys_37: 7.663444268221399e-05 + sys_38: -0.00015226998858920872 + sys_39: -0.00011772496507776958 + sys_40: -2.9311436576356976e-05 + sys_41: 0.00025655262727378614 + sys_42: -1.916012823489688e-05 + sys_43: 0.00011303764468135604 + sys_44: 3.715516382933567e-05 + sys_45: 3.6457261205940263e-06 + sys_46: -3.6156617715931036e-05 + sys_47: 6.981443838683528e-05 + sys_48: 5.3284915611574264e-05 + sys_49: -0.0005280496560939855 + sys_50: 0.0004709705546298067 + sys_51: -0.0014480276448114303 + sys_52: -0.0008047347635492148 + sys_53: -0.0016439797573631519 + sys_54: -0.00018731175105596987 + sys_55: 8.363489909483536e-05 + sys_56: 0.00011041387577851778 + sys_57: -2.6482217825560718e-05 + sys_58: -2.7377610780444774e-05 + sys_59: 0.0001412714766918448 + sys_60: 5.642886196762411e-05 + sys_61: -3.509793046327669e-05 + sys_62: -9.586040075921345e-05 - pol: 8.256e-05 lumi: 0.00047 - sys_0: 1.4953282761121896e-05 - sys_1: -1.4422700023694666e-05 - sys_2: -1.0312106505168746e-05 - sys_3: -9.083996259682079e-06 - sys_4: -2.4930409958458667e-05 - sys_5: -2.7875834844155615e-05 - sys_6: 2.5034569364032952e-05 - sys_7: 8.101219529032166e-06 - sys_8: 2.8459271482158307e-05 - sys_9: -3.3489964741334336e-05 - sys_10: 5.9886055502507066e-05 - sys_11: 4.2023490637351724e-05 - sys_12: -3.6958839475955886e-05 - sys_13: 8.047409720267228e-05 - sys_14: 9.6295272558938e-05 - sys_15: 9.150048809893963e-05 - sys_16: -2.4497104750314643e-05 - sys_17: 0.00012434331355083437 - sys_18: 7.734389946566098e-05 - sys_19: 8.040217636425242e-05 - sys_20: 6.624148367902254e-05 - sys_21: 0.0002258748350041645 - sys_22: -0.0002056343600165607 - sys_23: 0.00013128547130282026 - sys_24: -3.642858652541481e-05 - sys_25: 1.9952393767061964e-05 - sys_26: -4.775248479541841e-05 - sys_27: -0.0001462059458828352 - sys_28: -8.650202212396117e-05 - sys_29: -0.00012782245824191616 - sys_30: 9.13723281298503e-06 - sys_31: 0.00018828241080392054 - sys_32: 0.0003394546759746133 - sys_33: -0.0001024255053583162 - sys_34: 2.401759928096464e-05 - sys_35: -0.0001239835259074185 - sys_36: -0.00016200927013633695 - sys_37: 5.561443557731075e-05 - sys_38: 0.00013316657581945849 - sys_39: -0.00010132007981337318 - sys_40: 9.422629483214684e-06 - sys_41: 6.810201742785199e-06 - sys_42: -6.605300606599919e-06 - sys_43: -0.0003466439244553776 - sys_44: -1.2840600750436705e-06 - sys_45: 1.415823327126711e-05 - sys_46: 7.244772046633626e-06 - sys_47: 0.00011514355348341969 - sys_48: -5.377236698076797e-05 - sys_49: 0.0003782711742069658 - sys_50: -1.727970212795254e-05 - sys_51: 8.488925055718781e-05 - sys_52: 5.8543821414864456e-05 - sys_53: 0.00012562426624058602 - sys_54: 0.0007196867086935033 - sys_55: 5.2331162220538486e-05 - sys_56: -0.00022499275134530387 - sys_57: -0.00018915105935645254 - sys_58: -0.00017926618161557016 - sys_59: -0.0003816740531011671 - sys_60: 0.0008854026609531293 - sys_61: -0.0011483997622566513 - sys_62: 0.0013240958320458339 + sys_0: 1.4953282761122731e-05 + sys_1: -1.4422700023695106e-05 + sys_2: -1.031210650516862e-05 + sys_3: -9.083996259681728e-06 + sys_4: 2.4930409958458823e-05 + sys_5: 2.7875834844154968e-05 + sys_6: -2.5034569364033325e-05 + sys_7: 8.101219529031261e-06 + sys_8: -2.8459271482158324e-05 + sys_9: 3.3489964741335556e-05 + sys_10: -5.98860555025065e-05 + sys_11: -4.202349063735165e-05 + sys_12: -3.695883947595734e-05 + sys_13: -8.04740972026722e-05 + sys_14: -9.629527255893817e-05 + sys_15: -9.150048809894137e-05 + sys_16: 2.449710475031312e-05 + sys_17: -0.0001243433135508336 + sys_18: -7.734389946566012e-05 + sys_19: -8.040217636425463e-05 + sys_20: -6.624148367902257e-05 + sys_21: -0.0002258748350041641 + sys_22: 0.0002056343600165615 + sys_23: -0.0001312854713028219 + sys_24: 3.64285865254159e-05 + sys_25: -1.995239376706434e-05 + sys_26: 4.7752484795419615e-05 + sys_27: 0.00014620594588283644 + sys_28: 8.650202212395912e-05 + sys_29: 0.00012782245824191223 + sys_30: 9.137232812985823e-06 + sys_31: -0.00018828241080392152 + sys_32: -0.0003394546759746146 + sys_33: 0.0001024255053583078 + sys_34: 9.422629483212894e-06 + sys_35: -6.810201742785403e-06 + sys_36: 6.605300606599256e-06 + sys_37: -2.4017599280964192e-05 + sys_38: -0.00012398352590740935 + sys_39: -0.0001620092701363518 + sys_40: -5.561443557730238e-05 + sys_41: 0.00013316657581945675 + sys_42: 0.00010132007981337403 + sys_43: 0.000346643924455378 + sys_44: 1.2840600750422022e-06 + sys_45: -1.415823327127067e-05 + sys_46: 7.244772046638684e-06 + sys_47: 0.00011514355348341789 + sys_48: 5.377236698076374e-05 + sys_49: -0.0003782711742069613 + sys_50: 1.727970212795518e-05 + sys_51: -8.488925055719487e-05 + sys_52: 5.854382141482232e-05 + sys_53: 0.00012562426624058165 + sys_54: 0.0007196867086935159 + sys_55: 5.233116222053629e-05 + sys_56: -0.00022499275134530783 + sys_57: -0.00018915105935643416 + sys_58: -0.0001792661816155936 + sys_59: -0.00038167405310119985 + sys_60: 0.0008854026609531217 + sys_61: -0.001148399762256634 + sys_62: 0.0013240958320458384 - pol: 0.00015872 lumi: 0.00047 - sys_0: 1.3368369591930755e-05 - sys_1: -1.3304380652413266e-05 - sys_2: -1.116661107517637e-05 - sys_3: -9.817592579630511e-06 - sys_4: -2.4196733303497704e-05 - sys_5: -2.7772832678651546e-05 - sys_6: 2.6947755966533348e-05 - sys_7: 8.477039536031708e-06 - sys_8: 2.8457653836476554e-05 - sys_9: -3.344000030606242e-05 - sys_10: 5.667258469431558e-05 - sys_11: 4.5253725247147204e-05 - sys_12: -3.876795172745671e-05 - sys_13: 7.962683488504443e-05 - sys_14: 9.542466386368992e-05 - sys_15: 8.83359839701173e-05 - sys_16: -2.522627141096362e-05 - sys_17: 0.0001285273299431934 - sys_18: 7.959169738685924e-05 - sys_19: 7.901267656821514e-05 - sys_20: 6.505213132873715e-05 - sys_21: 0.0002309534224243988 - sys_22: -0.00020017565018645272 - sys_23: 0.0001353398817333499 - sys_24: -2.7264800118065778e-05 - sys_25: 2.5961526824985137e-05 - sys_26: -4.8689140538882006e-05 - sys_27: -0.00015628089328706735 - sys_28: -8.282833993885936e-05 - sys_29: -0.000132807061948554 - sys_30: 1.0210506473098856e-05 - sys_31: 0.00022406670517244998 - sys_32: 0.00039817062051119233 - sys_33: -0.00013570124103760517 - sys_34: 1.8002054556171458e-05 - sys_35: -0.00015725296761773724 - sys_36: -0.0001967790656672508 - sys_37: 5.311321744415872e-05 - sys_38: 0.00016652183613907731 - sys_39: -0.00011215072350610805 - sys_40: 3.0276388548440627e-05 - sys_41: 1.4937605695158297e-06 - sys_42: 8.976136206212264e-06 - sys_43: -0.000459103283733681 - sys_44: -1.4795930222691473e-05 - sys_45: 2.6130704587918228e-05 - sys_46: -7.202073429346237e-06 - sys_47: 8.737137963468382e-05 - sys_48: -2.090801082353996e-05 - sys_49: 0.0009690669043740591 - sys_50: 1.541973221106287e-05 - sys_51: 0.0004592306910212479 - sys_52: 0.0003058018515167258 - sys_53: 0.0009132192530106274 - sys_54: -0.0018481775152794167 - sys_55: 2.5742748637080224e-05 - sys_56: -5.6136869707966654e-05 - sys_57: -9.333982835985858e-05 - sys_58: -7.39570047017589e-05 - sys_59: 0.00011800978872188209 - sys_60: 5.775284416297774e-05 - sys_61: -0.00018985343087139152 - sys_62: 0.00011131540388971722 + sys_0: 1.3368369591931781e-05 + sys_1: -1.3304380652413224e-05 + sys_2: -1.1166611075175678e-05 + sys_3: -9.81759257963125e-06 + sys_4: 2.4196733303497507e-05 + sys_5: 2.7772832678650814e-05 + sys_6: -2.69477559665334e-05 + sys_7: 8.47703953603059e-06 + sys_8: -2.845765383647769e-05 + sys_9: 3.344000030606079e-05 + sys_10: -5.6672584694316085e-05 + sys_11: -4.525372524714771e-05 + sys_12: -3.8767951727457426e-05 + sys_13: -7.962683488504509e-05 + sys_14: -9.54246638636894e-05 + sys_15: -8.833598397012015e-05 + sys_16: 2.5226271410961985e-05 + sys_17: -0.00012852732994319242 + sys_18: -7.959169738685854e-05 + sys_19: -7.901267656821761e-05 + sys_20: -6.505213132873776e-05 + sys_21: -0.00023095342242439827 + sys_22: 0.0002001756501864537 + sys_23: -0.00013533988173335143 + sys_24: 2.726480011806469e-05 + sys_25: -2.596152682498695e-05 + sys_26: 4.868914053888213e-05 + sys_27: 0.00015628089328706637 + sys_28: 8.282833993885818e-05 + sys_29: 0.00013280706194855114 + sys_30: 1.0210506473094658e-05 + sys_31: -0.00022406670517245196 + sys_32: -0.0003981706205111968 + sys_33: 0.00013570124103759817 + sys_34: 3.0276388548441715e-05 + sys_35: -1.493760569514728e-06 + sys_36: -8.976136206214422e-06 + sys_37: -1.8002054556169595e-05 + sys_38: -0.0001572529676177184 + sys_39: -0.0001967790656672641 + sys_40: -5.3113217444144163e-05 + sys_41: 0.0001665218361390778 + sys_42: 0.00011215072350611292 + sys_43: 0.0004591032837336777 + sys_44: 1.4795930222691517e-05 + sys_45: -2.6130704587919688e-05 + sys_46: -7.202073429338767e-06 + sys_47: 8.737137963468346e-05 + sys_48: 2.090801082353836e-05 + sys_49: -0.0009690669043740616 + sys_50: -1.5419732211091952e-05 + sys_51: -0.00045923069102127436 + sys_52: 0.00030580185151651856 + sys_53: 0.0009132192530106743 + sys_54: -0.0018481775152794093 + sys_55: 2.5742748637086336e-05 + sys_56: -5.613686970797108e-05 + sys_57: -9.333982835985577e-05 + sys_58: -7.395700470176882e-05 + sys_59: 0.00011800978872186966 + sys_60: 5.775284416297898e-05 + sys_61: -0.00018985343087138284 + sys_62: 0.00011131540388972006 - pol: 0.00037184 lumi: 0.00047 - sys_0: 1.61541657732654e-05 - sys_1: -1.3341384769805093e-05 - sys_2: -1.3013951530442625e-05 - sys_3: -1.2019720968968013e-05 - sys_4: -2.281509292828417e-05 - sys_5: -2.4840853063155687e-05 - sys_6: 2.707446348140496e-05 - sys_7: 7.273791092938999e-06 - sys_8: 2.978006775036237e-05 - sys_9: -3.532503286453526e-05 - sys_10: 5.610552447011036e-05 - sys_11: 4.868309008069325e-05 - sys_12: -4.078857305119192e-05 - sys_13: 8.308471205677202e-05 - sys_14: 0.00010020067130018826 - sys_15: 8.825190269217785e-05 - sys_16: -2.8865235821550942e-05 - sys_17: 0.00014240344138666215 - sys_18: 9.017761792773749e-05 - sys_19: 8.622484446863687e-05 - sys_20: 7.450258960862254e-05 - sys_21: 0.000267562169506235 - sys_22: -0.00022864900797114077 - sys_23: 0.00017061914354565803 - sys_24: -1.7453369719680862e-05 - sys_25: 4.7315284619809244e-05 - sys_26: -6.677041458246649e-05 - sys_27: -0.00023535436235578132 - sys_28: -0.00010384015303960694 - sys_29: -0.00020263199028318747 - sys_30: 1.4843640627781241e-05 - sys_31: 0.0005115670542192288 - sys_32: 0.0015512633301570822 - sys_33: -0.0011029855469693246 - sys_34: -0.00042989502987693547 - sys_35: 0.0018791192346620878 - sys_36: 0.0012878421485856 - sys_37: -4.029466636111223e-05 - sys_38: -0.00040639378443765547 - sys_39: 0.00015598717164408006 - sys_40: 3.268834320071925e-05 - sys_41: -5.449147043863403e-06 - sys_42: 1.7383557093405447e-05 - sys_43: 0.0003771702928360972 - sys_44: -1.415011262614824e-05 - sys_45: 2.55584238023991e-05 - sys_46: -8.63126200755489e-06 - sys_47: 4.2609583598381783e-05 - sys_48: -5.744494239225637e-06 - sys_49: -0.00019463110580058115 - sys_50: -1.1211560125108789e-05 - sys_51: -3.6058712753191136e-05 - sys_52: -5.865468791701774e-06 - sys_53: -2.4402051054083115e-05 - sys_54: -9.131554587294693e-05 - sys_55: 9.161361157683161e-07 - sys_56: -2.9929107421215517e-06 - sys_57: -3.906436482709335e-05 - sys_58: -3.1623448556509636e-05 - sys_59: 3.246814823451995e-05 - sys_60: 2.8436910923267518e-05 - sys_61: -3.225933463080627e-05 - sys_62: 1.4713857513552744e-05 + sys_0: 1.6154165773266372e-05 + sys_1: -1.3341384769805552e-05 + sys_2: -1.3013951530441968e-05 + sys_3: -1.201972096896838e-05 + sys_4: 2.2815092928283555e-05 + sys_5: 2.4840853063155237e-05 + sys_6: -2.707446348140495e-05 + sys_7: 7.273791092937889e-06 + sys_8: -2.9780067750363563e-05 + sys_9: 3.532503286453586e-05 + sys_10: -5.6105524470108516e-05 + sys_11: -4.868309008069531e-05 + sys_12: -4.078857305119048e-05 + sys_13: -8.308471205677055e-05 + sys_14: -0.00010020067130018869 + sys_15: -8.825190269217912e-05 + sys_16: 2.8865235821549458e-05 + sys_17: -0.00014240344138665914 + sys_18: -9.017761792773562e-05 + sys_19: -8.622484446863928e-05 + sys_20: -7.45025896086232e-05 + sys_21: -0.00026756216950623375 + sys_22: 0.00022864900797113947 + sys_23: -0.00017061914354566055 + sys_24: 1.7453369719677508e-05 + sys_25: -4.731528461981069e-05 + sys_26: 6.677041458246925e-05 + sys_27: 0.00023535436235578113 + sys_28: 0.00010384015303960776 + sys_29: 0.00020263199028318108 + sys_30: 1.4843640627773298e-05 + sys_31: -0.0005115670542192302 + sys_32: -0.0015512633301571076 + sys_33: 0.00110298554696928 + sys_34: 3.2688343200719074e-05 + sys_35: 5.4491470438650414e-06 + sys_36: -1.7383557093407876e-05 + sys_37: 0.0004298950298769317 + sys_38: 0.001879119234662005 + sys_39: 0.0012878421485857476 + sys_40: 4.02946663610326e-05 + sys_41: -0.000406393784437647 + sys_42: -0.00015598717164407272 + sys_43: -0.0003771702928361019 + sys_44: 1.4150112626146768e-05 + sys_45: -2.5558423802399148e-05 + sys_46: -8.6312620075503e-06 + sys_47: 4.2609583598380753e-05 + sys_48: 5.7444942392242915e-06 + sys_49: 0.0001946311058005864 + sys_50: 1.1211560125111994e-05 + sys_51: 3.605871275319027e-05 + sys_52: -5.865468791693393e-06 + sys_53: -2.440205105408693e-05 + sys_54: -9.131554587294663e-05 + sys_55: 9.161361157692501e-07 + sys_56: -2.9929107421214793e-06 + sys_57: -3.906436482709221e-05 + sys_58: -3.162344855651247e-05 + sys_59: 3.246814823451902e-05 + sys_60: 2.8436910923266098e-05 + sys_61: -3.2259334630803424e-05 + sys_62: 1.4713857513553009e-05 - pol: 0.00042624000000000004 lumi: 0.00047 - sys_0: 1.4143134172742818e-05 - sys_1: -1.1655545717020729e-05 - sys_2: -1.457783521279098e-05 - sys_3: -1.0038301910620669e-05 - sys_4: -2.5647712178311777e-05 - sys_5: -2.462153511262681e-05 - sys_6: 3.109237399238289e-05 - sys_7: 7.864866743547085e-06 - sys_8: 3.12560649026819e-05 - sys_9: -3.655069090027138e-05 - sys_10: 6.018360329512638e-05 - sys_11: 5.2253647927986555e-05 - sys_12: -4.784708216781956e-05 - sys_13: 9.119345418007843e-05 - sys_14: 0.0001096298731218391 - sys_15: 9.61125399989381e-05 - sys_16: -3.306265438307501e-05 - sys_17: 0.0001692532123256027 - sys_18: 0.00010649793516673465 - sys_19: 9.433387769227597e-05 - sys_20: 8.445488025952376e-05 - sys_21: 0.0003155418019942237 - sys_22: -0.0002634277254012014 - sys_23: 0.00020817261823893562 - sys_24: -1.05131514085391e-07 - sys_25: 7.216227285986489e-05 - sys_26: -0.00011052183096565588 - sys_27: -0.0003712691158300237 - sys_28: -0.00014713498014370377 - sys_29: -0.00036054244397729996 - sys_30: 4.688227320698731e-05 - sys_31: 0.0031352317070968026 - sys_32: -0.0013527348352928498 - sys_33: 0.00032271190571610893 - sys_34: 2.4341432207771596e-05 - sys_35: 0.00017651625762463776 - sys_36: 0.00018975062414603719 - sys_37: 6.613291522211937e-05 - sys_38: -0.00013647821245892978 - sys_39: 5.2430504118536836e-05 - sys_40: 3.340582027224634e-05 - sys_41: -1.4137067926331283e-05 - sys_42: 3.364415914275193e-05 - sys_43: 0.00014292977371920164 - sys_44: -1.5624597673790557e-05 - sys_45: 4.448558074430841e-05 - sys_46: -4.8231800460691e-06 - sys_47: 3.135127282749496e-05 - sys_48: -4.1268779438546905e-06 - sys_49: -0.00012019514475400767 - sys_50: -9.224726636826627e-06 - sys_51: -6.3008536346923125e-06 - sys_52: -1.6872309603933197e-06 - sys_53: -7.400530201014921e-06 - sys_54: -5.0016272190753894e-05 - sys_55: -3.985805532635657e-06 - sys_56: -2.2598237108139307e-06 - sys_57: -4.135951675584257e-05 - sys_58: -4.038806440208043e-05 - sys_59: 3.1185112815337896e-05 - sys_60: 3.6464479778014235e-05 - sys_61: -3.3242868119876415e-06 - sys_62: 8.576634439945138e-06 + sys_0: 1.4143134172743569e-05 + sys_1: -1.1655545717021049e-05 + sys_2: -1.4577835212790384e-05 + sys_3: -1.0038301910621284e-05 + sys_4: 2.5647712178311797e-05 + sys_5: 2.4621535112626956e-05 + sys_6: -3.109237399238276e-05 + sys_7: 7.864866743546035e-06 + sys_8: -3.125606490268286e-05 + sys_9: 3.655069090027219e-05 + sys_10: -6.0183603295124174e-05 + sys_11: -5.225364792798885e-05 + sys_12: -4.784708216781869e-05 + sys_13: -9.119345418007772e-05 + sys_14: -0.00010962987312183876 + sys_15: -9.61125399989413e-05 + sys_16: 3.30626543830728e-05 + sys_17: -0.00016925321232560094 + sys_18: -0.00010649793516673185 + sys_19: -9.43338776922791e-05 + sys_20: -8.445488025952372e-05 + sys_21: -0.0003155418019942209 + sys_22: 0.0002634277254012004 + sys_23: -0.00020817261823893678 + sys_24: 1.0513151408442452e-07 + sys_25: -7.216227285986887e-05 + sys_26: 0.00011052183096565915 + sys_27: 0.00037126911583002165 + sys_28: 0.00014713498014369642 + sys_29: 0.0003605424439772941 + sys_30: 4.688227320697843e-05 + sys_31: -0.003135231707096805 + sys_32: 0.001352734835292863 + sys_33: -0.0003227119057160734 + sys_34: 3.34058202722467e-05 + sys_35: 1.413706792633159e-05 + sys_36: -3.3644159142753546e-05 + sys_37: -2.4341432207763702e-05 + sys_38: 0.00017651625762462477 + sys_39: 0.00018975062414604865 + sys_40: -6.613291522213188e-05 + sys_41: -0.00013647821245892186 + sys_42: -5.24305041185361e-05 + sys_43: -0.00014292977371920237 + sys_44: 1.562459767379019e-05 + sys_45: -4.448558074430808e-05 + sys_46: -4.823180046060712e-06 + sys_47: 3.135127282749619e-05 + sys_48: 4.12687794385338e-06 + sys_49: 0.00012019514475400788 + sys_50: 9.224726636827021e-06 + sys_51: 6.300853634689636e-06 + sys_52: -1.687230960388438e-06 + sys_53: -7.400530201017035e-06 + sys_54: -5.001627219075438e-05 + sys_55: -3.985805532634233e-06 + sys_56: -2.259823710816094e-06 + sys_57: -4.1359516755843616e-05 + sys_58: -4.038806440207988e-05 + sys_59: 3.1185112815337916e-05 + sys_60: 3.6464479778014736e-05 + sys_61: -3.3242868119870392e-06 + sys_62: 8.576634439946964e-06 - pol: 0.0007296000000000001 lumi: 0.00047 - sys_0: 1.9170140530546954e-05 - sys_1: -1.589878363851462e-05 - sys_2: -1.9409570871456e-05 - sys_3: -1.366297796739295e-05 - sys_4: -3.529149526578305e-05 - sys_5: -2.945493468683086e-05 - sys_6: 4.089126513169209e-05 - sys_7: 6.702082665164922e-06 - sys_8: 4.3521776356382114e-05 - sys_9: -5.246719324063426e-05 - sys_10: 7.783085109204918e-05 - sys_11: 7.352022983835641e-05 - sys_12: -7.683195004689173e-05 - sys_13: 0.00013509184747786382 - sys_14: 0.0001630167059190744 - sys_15: 0.0001470156864984478 - sys_16: -4.2067614740399714e-05 - sys_17: 0.00029658072029691224 - sys_18: 0.00020616915564261354 - sys_19: 0.00014389706615775295 - sys_20: 0.00018206728733205873 - sys_21: 0.0008641004777775052 - sys_22: -0.0009196073389449016 - sys_23: 0.001559232231715012 - sys_24: 0.004170862451926454 - sys_25: -0.0005465463735475185 - sys_26: 0.00048266741421869384 - sys_27: 0.0006120889169081248 - sys_28: 7.951606686139664e-05 - sys_29: 0.00013909868932254326 - sys_30: -1.4418085564781968e-05 - sys_31: -0.00017378179230114965 - sys_32: -0.00015315742032656453 - sys_33: 5.538345313154529e-05 - sys_34: 8.963272544465063e-06 - sys_35: 3.351316236883148e-05 - sys_36: 4.510008781457596e-05 - sys_37: 6.154263944397519e-05 - sys_38: -5.291378016683292e-05 - sys_39: 1.675428967495011e-05 - sys_40: 1.5049706218138772e-05 - sys_41: -1.2061700210999617e-05 - sys_42: 3.164348550746129e-05 - sys_43: 4.654142739473439e-05 - sys_44: -1.3589700079918344e-05 - sys_45: 5.1761347131422925e-05 - sys_46: 2.2712230930995986e-06 - sys_47: 1.8391498387709284e-05 - sys_48: -3.955160560223235e-06 - sys_49: -5.59994223716833e-05 - sys_50: -5.482378899313561e-06 - sys_51: 9.224643104507022e-06 - sys_52: -6.25976229394586e-07 - sys_53: 6.412766797861079e-07 - sys_54: -2.165693894658652e-05 - sys_55: -4.236601503633784e-06 - sys_56: -9.514185638554207e-06 - sys_57: -3.664127542362982e-05 - sys_58: -5.0283723529371845e-05 - sys_59: 1.9230971654674926e-05 - sys_60: 3.008229957797699e-05 - sys_61: 4.283672670633928e-06 - sys_62: -3.586467040772061e-07 + sys_0: 1.917014053054788e-05 + sys_1: -1.5898783638515104e-05 + sys_2: -1.9409570871455895e-05 + sys_3: -1.3662977967393158e-05 + sys_4: 3.529149526578308e-05 + sys_5: 2.9454934686830717e-05 + sys_6: -4.0891265131692214e-05 + sys_7: 6.702082665163187e-06 + sys_8: -4.3521776356383314e-05 + sys_9: 5.246719324063398e-05 + sys_10: -7.783085109204788e-05 + sys_11: -7.352022983835657e-05 + sys_12: -7.683195004689304e-05 + sys_13: -0.0001350918474778608 + sys_14: -0.0001630167059190749 + sys_15: -0.00014701568649844895 + sys_16: 4.20676147403996e-05 + sys_17: -0.00029658072029691213 + sys_18: -0.00020616915564261183 + sys_19: -0.000143897066157754 + sys_20: -0.0001820672873320523 + sys_21: -0.0008641004777775113 + sys_22: 0.0009196073389449249 + sys_23: -0.0015592322317149862 + sys_24: -0.004170862451926457 + sys_25: 0.0005465463735475531 + sys_26: -0.0004826674142186869 + sys_27: -0.0006120889169081339 + sys_28: -7.951606686138476e-05 + sys_29: -0.00013909868932254258 + sys_30: -1.441808556478103e-05 + sys_31: 0.00017378179230115114 + sys_32: 0.0001531574203265652 + sys_33: -5.5383453131541466e-05 + sys_34: 1.504970621813952e-05 + sys_35: 1.2061700210999487e-05 + sys_36: -3.164348550746137e-05 + sys_37: -8.96327254446447e-06 + sys_38: 3.35131623688263e-05 + sys_39: 4.5100087814577386e-05 + sys_40: -6.154263944397791e-05 + sys_41: -5.291378016683098e-05 + sys_42: -1.6754289674950177e-05 + sys_43: -4.6541427394734276e-05 + sys_44: 1.3589700079917484e-05 + sys_45: -5.1761347131422255e-05 + sys_46: 2.2712230931096147e-06 + sys_47: 1.8391498387709385e-05 + sys_48: 3.955160560220924e-06 + sys_49: 5.599942237168416e-05 + sys_50: 5.482378899313552e-06 + sys_51: -9.224643104508042e-06 + sys_52: -6.259762293922373e-07 + sys_53: 6.412766797847182e-07 + sys_54: -2.165693894658639e-05 + sys_55: -4.236601503632278e-06 + sys_56: -9.514185638556414e-06 + sys_57: -3.6641275423630074e-05 + sys_58: -5.028372352937293e-05 + sys_59: 1.9230971654674513e-05 + sys_60: 3.0082299577977074e-05 + sys_61: 4.283672670633457e-06 + sys_62: -3.586467040759892e-07 - pol: 0.0011686399999999999 lumi: 0.00047 - sys_0: 3.515227648081494e-05 - sys_1: -2.3127635721676036e-05 - sys_2: -2.8975928611231973e-05 - sys_3: -2.0517252225770865e-05 - sys_4: -5.490746838020992e-05 - sys_5: -4.888153572326461e-05 - sys_6: 7.72058977277205e-05 - sys_7: 1.3569176118260109e-05 - sys_8: 6.251588340005293e-05 - sys_9: -9.97300099403318e-05 - sys_10: 0.00015182244963307843 - sys_11: 0.0001672155335514184 - sys_12: -0.00017801021516977028 - sys_13: 0.000358560654650896 - sys_14: 0.00046792944654972137 - sys_15: 0.0004694964646394464 - sys_16: 3.6973760842538745e-05 - sys_17: 0.005900875614496157 - sys_18: -0.0027583076339894323 - sys_19: -0.0004578553316186798 - sys_20: -0.0005046378368812108 - sys_21: -0.0005787891648180864 - sys_22: 0.0002912744198068367 - sys_23: -0.00014216069964234575 - sys_24: -2.683351656633947e-05 - sys_25: -2.246582563682784e-05 - sys_26: 0.0001545063996199251 - sys_27: 0.00017765390086334578 - sys_28: 2.9709445280093487e-05 - sys_29: 3.603776914615114e-05 - sys_30: -3.732152084860622e-07 - sys_31: -4.837327889246176e-05 - sys_32: -4.77417369704087e-05 - sys_33: 2.2234291467915607e-05 - sys_34: 1.0139078125652646e-05 - sys_35: 6.476349540121031e-06 - sys_36: 1.7260827046583478e-05 - sys_37: 7.575427174725005e-05 - sys_38: -5.615077901421696e-05 - sys_39: 1.2897057165819577e-05 - sys_40: 1.9884635132763544e-06 - sys_41: -5.364758833535915e-06 - sys_42: 1.7454541590709623e-05 - sys_43: 2.7555931659322277e-05 - sys_44: -1.2512646657477713e-05 - sys_45: 4.557899167963177e-05 - sys_46: 3.5987074392957745e-06 - sys_47: 1.7651383641125186e-05 - sys_48: -3.9095739832995684e-06 - sys_49: -5.0188851061098115e-05 - sys_50: -5.751841953113852e-06 - sys_51: 1.8439404559430807e-05 - sys_52: -1.3355144224446463e-06 - sys_53: 1.778173486228838e-06 - sys_54: -1.8992848439051675e-05 - sys_55: -4.911724417346492e-06 - sys_56: -2.0373548785295157e-05 - sys_57: -3.904963097150592e-05 - sys_58: -6.212201623034487e-05 - sys_59: 1.3499278403652309e-05 - sys_60: 2.642144455154748e-05 - sys_61: 3.5022740798834994e-06 - sys_62: -4.371540606764203e-06 + sys_0: 3.5152276480816104e-05 + sys_1: -2.3127635721675325e-05 + sys_2: -2.897592861123267e-05 + sys_3: -2.0517252225769798e-05 + sys_4: 5.490746838020999e-05 + sys_5: 4.888153572326478e-05 + sys_6: -7.720589772772276e-05 + sys_7: 1.3569176118255284e-05 + sys_8: -6.251588340005299e-05 + sys_9: 9.97300099403308e-05 + sys_10: -0.00015182244963307787 + sys_11: -0.00016721553355141872 + sys_12: -0.00017801021516976936 + sys_13: -0.0003585606546508881 + sys_14: -0.0004679294465497222 + sys_15: -0.00046949646463947644 + sys_16: -3.697376084254456e-05 + sys_17: -0.0059008756144961795 + sys_18: 0.0027583076339894046 + sys_19: 0.0004578553316186921 + sys_20: 0.000504637836881203 + sys_21: 0.0005787891648180797 + sys_22: -0.0002912744198068469 + sys_23: 0.0001421606996423475 + sys_24: 2.6833516566340323e-05 + sys_25: 2.2465825636827653e-05 + sys_26: -0.00015450639961992575 + sys_27: -0.00017765390086334662 + sys_28: -2.970944528009332e-05 + sys_29: -3.603776914614996e-05 + sys_30: -3.7321520848504265e-07 + sys_31: 4.837327889246176e-05 + sys_32: 4.774173697040918e-05 + sys_33: -2.2234291467913272e-05 + sys_34: 1.9884635132761855e-06 + sys_35: 5.364758833535565e-06 + sys_36: -1.7454541590708772e-05 + sys_37: -1.0139078125651384e-05 + sys_38: 6.476349540117927e-06 + sys_39: 1.7260827046582915e-05 + sys_40: -7.5754271747252e-05 + sys_41: -5.615077901421417e-05 + sys_42: -1.289705716581864e-05 + sys_43: -2.75559316593229e-05 + sys_44: 1.251264665747719e-05 + sys_45: -4.557899167963197e-05 + sys_46: 3.598707439305195e-06 + sys_47: 1.7651383641125274e-05 + sys_48: 3.909573983297505e-06 + sys_49: 5.018885106109934e-05 + sys_50: 5.751841953114733e-06 + sys_51: -1.8439404559431515e-05 + sys_52: -1.3355144224420531e-06 + sys_53: 1.7781734862275719e-06 + sys_54: -1.8992848439051583e-05 + sys_55: -4.9117244173456545e-06 + sys_56: -2.037354878529677e-05 + sys_57: -3.9049630971505416e-05 + sys_58: -6.212201623034708e-05 + sys_59: 1.3499278403651784e-05 + sys_60: 2.6421444551547358e-05 + sys_61: 3.5022740798835676e-06 + sys_62: -4.371540606762748e-06 - pol: 0.00155584 lumi: 0.00047 - sys_0: 7.593374120114409e-05 - sys_1: -4.3502998777358546e-05 - sys_2: -6.035682723971167e-05 - sys_3: -5.1551158368676464e-05 - sys_4: -0.00014718036214627714 - sys_5: -0.00012062415030206451 - sys_6: 0.00024396997965702615 - sys_7: 1.3303722998578083e-05 - sys_8: 8.215996767748001e-05 - sys_9: -0.00046063240596189327 - sys_10: 0.0016919581157183777 - sys_11: 0.010254757581879836 - sys_12: 0.0012643269054403924 - sys_13: -0.000458662555633693 - sys_14: -0.0003124066324611215 - sys_15: -0.0001594696780978095 - sys_16: -0.00017223686246808733 - sys_17: -0.00025326257814429354 - sys_18: -0.00018181743872354106 - sys_19: -3.3992834111271334e-05 - sys_20: -0.00010129836262156463 - sys_21: -0.0001561228173549439 - sys_22: 7.504292288411416e-05 - sys_23: -3.1271510657081175e-05 - sys_24: -1.755461937438174e-05 - sys_25: 1.317082744482733e-05 - sys_26: 0.00013484006173787233 - sys_27: 0.00011061976549523978 - sys_28: 3.782779063890293e-05 - sys_29: 1.3389646184888316e-05 - sys_30: 7.078844583247836e-06 - sys_31: -9.86445518982242e-06 - sys_32: -1.471786623804066e-05 - sys_33: 1.059452617764336e-05 - sys_34: 9.924713481026254e-06 - sys_35: -2.428110922451253e-06 - sys_36: 3.1254553948339443e-06 - sys_37: 6.737830318046117e-05 - sys_38: -5.527369557278383e-05 - sys_39: 1.0222374995728003e-05 - sys_40: -2.689981431073657e-06 - sys_41: -1.5711920996425273e-06 - sys_42: 4.465102358478968e-06 - sys_43: 2.1886908268741214e-05 - sys_44: -8.119883335232407e-06 - sys_45: 2.0447353063015546e-05 - sys_46: -7.381188537734224e-08 - sys_47: 1.7474979235561903e-05 - sys_48: -3.392246432693824e-06 - sys_49: -5.0569368351836205e-05 - sys_50: -6.5502453565225645e-06 - sys_51: 2.327527264401531e-05 - sys_52: -1.999065015725542e-06 - sys_53: 1.1865673416200146e-06 - sys_54: -2.2364595527844497e-05 - sys_55: -4.3811512743518445e-06 - sys_56: -2.01091506152675e-05 - sys_57: -3.0176688658340237e-05 - sys_58: -4.320544448583647e-05 - sys_59: 5.765616383292254e-06 - sys_60: 1.8064542780515624e-05 - sys_61: -2.0966816541106677e-06 - sys_62: 3.5216327119030176e-06 + sys_0: 7.59337412011452e-05 + sys_1: -4.350299877735776e-05 + sys_2: -6.0356827239713514e-05 + sys_3: -5.155115836867098e-05 + sys_4: 0.00014718036214627915 + sys_5: 0.00012062415030207478 + sys_6: -0.00024396997965703428 + sys_7: 1.3303722998571556e-05 + sys_8: -8.215996767748529e-05 + sys_9: 0.0004606324059618876 + sys_10: -0.001691958115718114 + sys_11: -0.010254757581879879 + sys_12: 0.001264326905440343 + sys_13: 0.00045866255563369415 + sys_14: 0.0003124066324611222 + sys_15: 0.0001594696780978081 + sys_16: 0.00017223686246809156 + sys_17: 0.00025326257814429104 + sys_18: 0.0001818174387235403 + sys_19: 3.399283411127429e-05 + sys_20: 0.00010129836262156346 + sys_21: 0.00015612281735494297 + sys_22: -7.504292288411505e-05 + sys_23: 3.127151065708203e-05 + sys_24: 1.7554619374380955e-05 + sys_25: -1.3170827444828847e-05 + sys_26: -0.00013484006173787225 + sys_27: -0.00011061976549523992 + sys_28: -3.782779063890187e-05 + sys_29: -1.3389646184887743e-05 + sys_30: 7.078844583247275e-06 + sys_31: 9.864455189822537e-06 + sys_32: 1.4717866238040821e-05 + sys_33: -1.059452617764229e-05 + sys_34: -2.6899814310737513e-06 + sys_35: 1.5711920996420757e-06 + sys_36: -4.4651023584780825e-06 + sys_37: -9.92471348102534e-06 + sys_38: -2.428110922453599e-06 + sys_39: 3.1254553948329952e-06 + sys_40: -6.737830318046281e-05 + sys_41: -5.527369557278214e-05 + sys_42: -1.0222374995727693e-05 + sys_43: -2.1886908268741756e-05 + sys_44: 8.119883335231914e-06 + sys_45: -2.044735306301566e-05 + sys_46: -7.38118853730898e-08 + sys_47: 1.7474979235561625e-05 + sys_48: 3.3922464326926843e-06 + sys_49: 5.056936835183729e-05 + sys_50: 6.55024535652336e-06 + sys_51: -2.3275272644016355e-05 + sys_52: -1.999065015724099e-06 + sys_53: 1.1865673416190763e-06 + sys_54: -2.236459552784483e-05 + sys_55: -4.381151274351809e-06 + sys_56: -2.0109150615269073e-05 + sys_57: -3.0176688658339854e-05 + sys_58: -4.320544448583784e-05 + sys_59: 5.765616383291894e-06 + sys_60: 1.806454278051554e-05 + sys_61: -2.0966816541105157e-06 + sys_62: 3.5216327119040163e-06 - pol: 0.00232832 lumi: 0.00047 - sys_0: 0.00013606621997905156 - sys_1: -0.00010358840884830201 - sys_2: -0.00015049917907913098 - sys_3: -0.00011702420200316881 - sys_4: -0.0005814684615487417 - sys_5: -0.0008968593946696037 - sys_6: 0.011199604949980202 - sys_7: 0.011890042229853598 - sys_8: 0.0004574819491622494 - sys_9: 0.0004990460412426384 - sys_10: -0.00022466943163361433 - sys_11: -0.00017914451699653974 - sys_12: 0.00022815588895920802 - sys_13: -0.00010552716237190463 - sys_14: -5.479032810522832e-05 - sys_15: -1.950380167793091e-05 - sys_16: -0.00024268529734221945 - sys_17: -0.0001072470722858828 - sys_18: -8.950228109723525e-05 - sys_19: -1.4170111100282846e-05 - sys_20: -5.4317073646174366e-05 - sys_21: -7.135681504874913e-05 - sys_22: 2.6697705855874644e-05 - sys_23: 2.2661432116068855e-06 - sys_24: -2.294712116686054e-05 - sys_25: 4.227777862463662e-05 - sys_26: 0.00013109665023134436 - sys_27: 8.103722643831378e-05 - sys_28: 4.571181580750188e-05 - sys_29: 1.1575520659692925e-05 - sys_30: 7.4584839326312864e-06 - sys_31: -3.0122910843475853e-06 - sys_32: -1.000484244486501e-05 - sys_33: 4.870248883685925e-06 - sys_34: 5.224100553474899e-06 - sys_35: -1.0038819359274459e-06 - sys_36: 1.689437316325103e-06 - sys_37: 4.206668896951811e-05 - sys_38: -3.765901591334297e-05 - sys_39: 7.752969426695524e-06 - sys_40: -2.3887520709285636e-06 - sys_41: -4.630933651212942e-07 - sys_42: 8.032355515599146e-07 - sys_43: 1.7699880141815902e-05 - sys_44: -4.0393443569083395e-06 - sys_45: 7.124119297390771e-06 - sys_46: -8.508621435051176e-07 - sys_47: 1.1762369354180179e-05 - sys_48: -2.1186929862074573e-06 - sys_49: -3.757711130743457e-05 - sys_50: -4.866702472340349e-06 - sys_51: 1.6743405740473743e-05 - sys_52: -2.031755175287682e-06 - sys_53: -5.122704136623013e-07 - sys_54: -1.980435608054836e-05 - sys_55: -2.669143100603791e-06 - sys_56: -1.1963566866054472e-05 - sys_57: -1.6207412498854528e-05 - sys_58: -1.8588119877258503e-05 - sys_59: 1.238748917436844e-06 - sys_60: 9.635613495356792e-06 - sys_61: -4.470882691950806e-06 - sys_62: 8.356574432746217e-06 + sys_0: 0.00013606621997905275 + sys_1: -0.00010358840884831291 + sys_2: -0.00015049917907913033 + sys_3: -0.00011702420200315656 + sys_4: 0.0005814684615487819 + sys_5: 0.0008968593946695551 + sys_6: -0.011199604949980747 + sys_7: 0.011890042229853175 + sys_8: -0.0004574819491622129 + sys_9: -0.0004990460412426516 + sys_10: 0.00022466943163361368 + sys_11: 0.00017914451699654782 + sys_12: 0.00022815588895921005 + sys_13: 0.00010552716237190548 + sys_14: 5.479032810523092e-05 + sys_15: 1.9503801677926195e-05 + sys_16: 0.00024268529734222175 + sys_17: 0.00010724707228588233 + sys_18: 8.950228109723454e-05 + sys_19: 1.4170111100285062e-05 + sys_20: 5.431707364617395e-05 + sys_21: 7.135681504874769e-05 + sys_22: -2.6697705855875196e-05 + sys_23: -2.266143211606176e-06 + sys_24: 2.2947121166859666e-05 + sys_25: -4.2277778624638664e-05 + sys_26: -0.00013109665023134404 + sys_27: -8.103722643831474e-05 + sys_28: -4.571181580750123e-05 + sys_29: -1.1575520659692545e-05 + sys_30: 7.458483932630948e-06 + sys_31: 3.0122910843477746e-06 + sys_32: 1.0004842444865198e-05 + sys_33: -4.870248883685201e-06 + sys_34: -2.3887520709286025e-06 + sys_35: 4.630933651210596e-07 + sys_36: -8.032355515593338e-07 + sys_37: -5.224100553474219e-06 + sys_38: -1.0038819359284648e-06 + sys_39: 1.6894373163244923e-06 + sys_40: -4.2066688969518745e-05 + sys_41: -3.7659015913341384e-05 + sys_42: -7.752969426695324e-06 + sys_43: -1.769988014181613e-05 + sys_44: 4.039344356908243e-06 + sys_45: -7.124119297390877e-06 + sys_46: -8.508621435034575e-07 + sys_47: 1.1762369354180194e-05 + sys_48: 2.118692986206912e-06 + sys_49: 3.7577111307435175e-05 + sys_50: 4.866702472340792e-06 + sys_51: -1.674340574047444e-05 + sys_52: -2.0317551752853797e-06 + sys_53: -5.122704136633999e-07 + sys_54: -1.9804356080548587e-05 + sys_55: -2.669143100603781e-06 + sys_56: -1.1963566866055229e-05 + sys_57: -1.620741249885397e-05 + sys_58: -1.8588119877259563e-05 + sys_59: 1.2387489174364305e-06 + sys_60: 9.635613495356664e-06 + sys_61: -4.470882691950794e-06 + sys_62: 8.35657443274673e-06 - pol: 0.0005049599999999999 lumi: 0.00047 - sys_0: 0.001058774878499026 - sys_1: -0.0008859452713964245 - sys_2: -0.0045337302258725565 - sys_3: -0.028859666920578182 - sys_4: 0.0002997362788414544 - sys_5: 0.00023460214448150547 - sys_6: -0.0003664940249242148 - sys_7: 0.0001400498017037601 - sys_8: 0.0004630592632493331 - sys_9: 0.0001953858763270021 - sys_10: -7.537410423254493e-05 - sys_11: -5.268483374424175e-05 - sys_12: 9.634371309374674e-05 - sys_13: -3.908400180803621e-05 - sys_14: -4.223138979867601e-06 - sys_15: 1.633692224046892e-05 - sys_16: -0.00021497770865932308 - sys_17: -5.1333583927763704e-05 - sys_18: -4.272160915391721e-05 - sys_19: -1.4481767049481258e-05 - sys_20: -4.3258819290748096e-05 - sys_21: -4.3538969185462614e-05 - sys_22: 2.257421826997548e-05 - sys_23: -6.891178081555541e-06 - sys_24: -5.600052385100225e-06 - sys_25: 1.4200216409729381e-05 - sys_26: 6.801487811772879e-05 - sys_27: 4.455198172701395e-05 - sys_28: 3.336325974519788e-05 - sys_29: 6.987074598615453e-06 - sys_30: 7.048940502158961e-06 - sys_31: 6.869935990444412e-07 - sys_32: -8.435317509954351e-06 - sys_33: 2.303303070248854e-06 - sys_34: 2.2961781382249248e-06 - sys_35: 5.529532562947885e-06 - sys_36: 3.191845224160519e-06 - sys_37: 1.1853509086621586e-05 - sys_38: -8.823718662377756e-06 - sys_39: 2.0608947618669475e-06 - sys_40: -1.3649285575662824e-06 - sys_41: -1.2712853604147707e-07 - sys_42: 1.9712940849002944e-08 - sys_43: 4.806545959354742e-06 - sys_44: -1.4822670533695802e-06 - sys_45: 2.3270246092243677e-06 - sys_46: -2.4942627252593785e-07 - sys_47: 5.8560344711089985e-06 - sys_48: -1.1497635552241307e-06 - sys_49: -2.066862732875207e-05 - sys_50: -2.9323436285469492e-06 - sys_51: 1.044982498515011e-05 - sys_52: -1.0744044575320705e-06 - sys_53: -1.9773533550355107e-08 - sys_54: -1.1569421973907702e-05 - sys_55: -1.325780113836204e-06 - sys_56: -6.368155622460508e-06 - sys_57: -7.191915284787222e-06 - sys_58: -4.712862381586785e-06 - sys_59: -3.376779277465413e-07 - sys_60: 4.458953030043626e-06 - sys_61: -3.5566692965380952e-06 - sys_62: 6.464743605381797e-06 + sys_0: 0.0010587748784990545 + sys_1: -0.0008859452713964232 + sys_2: -0.004533730225872676 + sys_3: -0.028859666920578165 + sys_4: -0.00029973627884146206 + sys_5: -0.00023460214448150498 + sys_6: 0.0003664940249242015 + sys_7: 0.0001400498017037763 + sys_8: -0.0004630592632493332 + sys_9: -0.00019538587632700517 + sys_10: 7.53741042325427e-05 + sys_11: 5.268483374424259e-05 + sys_12: 9.634371309374659e-05 + sys_13: 3.908400180803576e-05 + sys_14: 4.223138979866801e-06 + sys_15: -1.6336922240473158e-05 + sys_16: 0.00021497770865932308 + sys_17: 5.133358392776373e-05 + sys_18: 4.272160915391691e-05 + sys_19: 1.4481767049482488e-05 + sys_20: 4.3258819290747764e-05 + sys_21: 4.353896918546207e-05 + sys_22: -2.2574218269975673e-05 + sys_23: 6.8911780815559405e-06 + sys_24: 5.6000523850999265e-06 + sys_25: -1.4200216409729661e-05 + sys_26: -6.80148781177288e-05 + sys_27: -4.455198172701431e-05 + sys_28: -3.3363259745197226e-05 + sys_29: -6.987074598615151e-06 + sys_30: 7.048940502158685e-06 + sys_31: -6.869935990442724e-07 + sys_32: 8.435317509954436e-06 + sys_33: -2.3033030702484995e-06 + sys_34: -1.364928557566323e-06 + sys_35: 1.271285360413968e-07 + sys_36: -1.9712940848965645e-08 + sys_37: -2.2961781382246347e-06 + sys_38: 5.5295325629475405e-06 + sys_39: 3.1918452241606278e-06 + sys_40: -1.1853509086621852e-05 + sys_41: -8.82371866237748e-06 + sys_42: -2.0608947618669933e-06 + sys_43: -4.806545959354898e-06 + sys_44: 1.4822670533694917e-06 + sys_45: -2.327024609224276e-06 + sys_46: -2.494262725253789e-07 + sys_47: 5.856034471108824e-06 + sys_48: 1.149763555224016e-06 + sys_49: 2.066862732875235e-05 + sys_50: 2.9323436285470496e-06 + sys_51: -1.0449824985150534e-05 + sys_52: -1.0744044575312174e-06 + sys_53: -1.9773533550788318e-08 + sys_54: -1.156942197390786e-05 + sys_55: -1.3257801138360633e-06 + sys_56: -6.36815562246077e-06 + sys_57: -7.191915284787057e-06 + sys_58: -4.712862381587074e-06 + sys_59: -3.3767792774660474e-07 + sys_60: 4.458953030043589e-06 + sys_61: -3.5566692965379292e-06 + sys_62: 6.464743605381946e-06 diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_2JET_510GEV/uncertainties_B.yaml b/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_2JET_510GEV/uncertainties_B.yaml index f91b9050ba..51b6896168 100644 --- a/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_2JET_510GEV/uncertainties_B.yaml +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_2JET_510GEV/uncertainties_B.yaml @@ -262,846 +262,846 @@ definitions: bins: - pol: 0.00024384 lumi: 0.00047 - sys_0: 2.281088562554162e-05 - sys_1: -1.9009016467633217e-05 - sys_2: -2.290860702617328e-05 - sys_3: -0.00010391962674272997 - sys_4: -2.8440360506706964e-05 - sys_5: -4.0548400470768674e-05 - sys_6: 9.941057349868706e-05 - sys_7: 9.058659586486452e-05 - sys_8: 4.974577595521049e-05 - sys_9: -3.533291822229874e-05 - sys_10: 9.93947533910935e-05 - sys_11: 0.000171185897728405 - sys_12: -1.7002555931538828e-05 - sys_13: 0.0001214647744790949 - sys_14: 0.00015620762336058584 - sys_15: 0.00019517879139180206 - sys_16: -8.955356424854852e-05 - sys_17: 0.00040623807156525227 - sys_18: 0.00010073883799032127 - sys_19: 0.00022527741668392843 - sys_20: 0.00023768994350902375 - sys_21: 0.004281259986743967 - sys_22: 0.0030758600582467648 - sys_23: -0.0005883267522291179 - sys_24: 1.4101473966382434e-05 - sys_25: -3.311557582712359e-05 - sys_26: -1.993537842402271e-06 - sys_27: 0.0001150269919761873 - sys_28: 7.161039098940901e-05 - sys_29: 0.00010803177246686055 - sys_30: -2.2936823605091786e-05 - sys_31: -9.552932115525954e-05 - sys_32: -9.970483579118694e-05 - sys_33: 1.791644215449036e-05 - sys_34: -1.7345229203087354e-05 - sys_35: 1.560490774724806e-05 - sys_36: 2.862360764591612e-05 - sys_37: -2.5294427418424234e-05 - sys_38: -2.2207022164474563e-06 - sys_39: 2.0279883701976684e-05 - sys_40: -3.841052149454382e-06 - sys_41: 4.45432862963229e-07 - sys_42: -2.22763293622085e-06 - sys_43: 4.961085453873298e-05 - sys_44: 4.210092916140238e-06 - sys_45: -1.1647539521706427e-06 - sys_46: 4.5201675636219955e-06 - sys_47: 5.1103148304682e-06 - sys_48: 5.7366360249210256e-08 - sys_49: -2.4850029682737765e-05 - sys_50: 1.4020236882862722e-05 - sys_51: -6.018363316227946e-06 - sys_52: -3.5263215453625573e-05 - sys_53: 8.96891536825347e-06 + sys_0: 2.281088562555093e-05 + sys_1: -1.9009016467638153e-05 + sys_2: -2.290860702617086e-05 + sys_3: -0.00010391962674271929 + sys_4: 2.844036050670943e-05 + sys_5: 4.05484004707621e-05 + sys_6: -9.941057349868903e-05 + sys_7: 9.058659586486365e-05 + sys_8: -4.9745775955219545e-05 + sys_9: 3.533291822229683e-05 + sys_10: -9.939475339108247e-05 + sys_11: -0.00017118589772840794 + sys_12: -1.700255593154738e-05 + sys_13: -0.00012146477447909021 + sys_14: -0.00015620762336058811 + sys_15: -0.00019517879139180276 + sys_16: 8.955356424854727e-05 + sys_17: -0.00040623807156525216 + sys_18: -0.00010073883799032912 + sys_19: -0.00022527741668393813 + sys_20: -0.00023768994350903676 + sys_21: -0.0042812599867439564 + sys_22: -0.003075860058246729 + sys_23: 0.0005883267522291614 + sys_24: -1.4101473966404579e-05 + sys_25: 3.311557582710953e-05 + sys_26: 1.9935378423979788e-06 + sys_27: -0.00011502699197618604 + sys_28: -7.161039098941259e-05 + sys_29: -0.00010803177246685584 + sys_30: -2.293682360508611e-05 + sys_31: 9.55293211552586e-05 + sys_32: 9.970483579118567e-05 + sys_33: -1.7916442154489555e-05 + sys_34: -3.841052149454467e-06 + sys_35: -4.4543286296345656e-07 + sys_36: 2.2276329362213294e-06 + sys_37: 1.7345229203085016e-05 + sys_38: 1.5604907747246208e-05 + sys_39: 2.8623607645919103e-05 + sys_40: 2.5294427418422292e-05 + sys_41: -2.2207022164510338e-06 + sys_42: -2.0279883701977568e-05 + sys_43: -4.961085453873265e-05 + sys_44: -4.2100929161400915e-06 + sys_45: 1.1647539521717345e-06 + sys_46: 4.520167563621568e-06 + sys_47: 5.110314830468133e-06 + sys_48: -5.7366360249152466e-08 + sys_49: 2.4850029682736257e-05 + sys_50: -1.4020236882863136e-05 + sys_51: 6.018363316227379e-06 + sys_52: -3.526321545363415e-05 + sys_53: 8.968915368250622e-06 sys_54: -1.8249475385666512e-05 - sys_55: -5.9232720673049455e-06 - sys_56: -1.8268545328056893e-05 - sys_57: -5.003770196168688e-06 - sys_58: 2.5397199255845177e-06 - sys_59: -2.127526043984521e-06 - sys_60: -6.357995523590569e-06 - sys_61: -3.2607330199499665e-06 - sys_62: 1.611577428462294e-05 + sys_55: -5.923272067305604e-06 + sys_56: -1.8268545328056995e-05 + sys_57: -5.003770196167806e-06 + sys_58: 2.5397199255836957e-06 + sys_59: -2.1275260439851053e-06 + sys_60: -6.357995523590748e-06 + sys_61: -3.260733019949886e-06 + sys_62: 1.6115774284623058e-05 - pol: 0.00019136 lumi: 0.00047 - sys_0: 3.0137940757252064e-05 - sys_1: -1.5120549745651372e-05 - sys_2: -2.557964310222899e-05 - sys_3: -9.285397279651371e-05 - sys_4: -4.3683529125285215e-05 - sys_5: -2.5829337568213863e-05 - sys_6: 8.479975895061869e-05 - sys_7: 7.487832016048138e-05 - sys_8: 5.009150576113278e-05 - sys_9: -5.785226337953304e-05 - sys_10: 6.058431637989494e-05 - sys_11: 0.0001276471126152765 - sys_12: -2.2804440901547975e-05 - sys_13: 0.00012006258355411111 - sys_14: 0.00012067297943446249 - sys_15: 7.01434092614238e-05 - sys_16: -4.94800925425859e-05 - sys_17: 0.00016778459091957746 - sys_18: 5.301333538150836e-05 - sys_19: 6.578261566427233e-05 - sys_20: 0.00011623308884420307 - sys_21: 0.00017910466573517093 - sys_22: -0.00019007221639564113 - sys_23: 0.00016836541920500344 - sys_24: -7.662335127729685e-07 - sys_25: 0.00014130084134789862 - sys_26: -4.585905739260147e-05 - sys_27: -0.0001483031027192513 - sys_28: -0.00015840440982937455 - sys_29: -4.4169089734708735e-05 - sys_30: -4.9041544426414155e-05 - sys_31: 0.00012620119418906567 - sys_32: 0.00018381032120012297 - sys_33: -9.321096031597881e-05 - sys_34: -8.279188336135335e-05 - sys_35: -0.000139232700945743 - sys_36: -3.3760739812799227e-05 - sys_37: 8.088130170141419e-05 - sys_38: 3.8739526536058606e-05 - sys_39: 1.1043852185195639e-05 - sys_40: -3.982637554875127e-05 - sys_41: 4.02188311252687e-06 - sys_42: -2.3326102257303363e-05 - sys_43: 1.3143084769334348e-05 - sys_44: 3.2937043747190766e-05 - sys_45: -1.1709824598176675e-05 - sys_46: 4.2970440339067005e-05 - sys_47: 8.270270613009508e-05 - sys_48: -0.00016364909376344818 - sys_49: 0.0006207983618269635 - sys_50: -0.00010533907448114406 - sys_51: -0.00026278617548179857 - sys_52: 0.00013148229489972675 - sys_53: -0.00010382845231467441 - sys_54: 0.00028304673646174734 - sys_55: -9.840267007223592e-05 - sys_56: -0.0011470635481528953 - sys_57: -0.0007904985782111398 - sys_58: 0.0012064959869821264 - sys_59: 0.00017242272455991647 - sys_60: 0.00016488463150961802 - sys_61: 5.406373074491427e-05 - sys_62: -0.0005361766479740627 + sys_0: 3.0137940757252382e-05 + sys_1: -1.5120549745651123e-05 + sys_2: -2.557964310222969e-05 + sys_3: -9.285397279651187e-05 + sys_4: 4.368352912528854e-05 + sys_5: 2.5829337568216713e-05 + sys_6: -8.479975895062287e-05 + sys_7: 7.487832016047915e-05 + sys_8: -5.009150576113181e-05 + sys_9: 5.78522633795336e-05 + sys_10: -6.058431637988804e-05 + sys_11: -0.00012764711261527154 + sys_12: -2.280444090154844e-05 + sys_13: -0.0001200625835541077 + sys_14: -0.00012067297943446773 + sys_15: -7.014340926142276e-05 + sys_16: 4.948009254258603e-05 + sys_17: -0.0001677845909195769 + sys_18: -5.3013335381508076e-05 + sys_19: -6.578261566427298e-05 + sys_20: -0.00011623308884420348 + sys_21: -0.00017910466573516393 + sys_22: 0.0001900722163956406 + sys_23: -0.0001683654192050016 + sys_24: 7.662335127722742e-07 + sys_25: -0.00014130084134790174 + sys_26: 4.585905739260322e-05 + sys_27: 0.0001483031027192508 + sys_28: 0.00015840440982937203 + sys_29: 4.4169089734707346e-05 + sys_30: -4.904154442641391e-05 + sys_31: -0.00012620119418906822 + sys_32: -0.0001838103212001275 + sys_33: 9.321096031597597e-05 + sys_34: -3.9826375548751285e-05 + sys_35: -4.021883112529636e-06 + sys_36: 2.3326102257294968e-05 + sys_37: 8.279188336135578e-05 + sys_38: -0.00013923270094574363 + sys_39: -3.376073981281172e-05 + sys_40: -8.0881301701413e-05 + sys_41: 3.873952653605315e-05 + sys_42: -1.104385218519674e-05 + sys_43: -1.3143084769335881e-05 + sys_44: -3.2937043747192893e-05 + sys_45: 1.1709824598181123e-05 + sys_46: 4.2970440339061475e-05 + sys_47: 8.270270613009119e-05 + sys_48: 0.00016364909376342056 + sys_49: -0.000620798361826963 + sys_50: 0.00010533907448112074 + sys_51: 0.00026278617548181673 + sys_52: 0.00013148229489967354 + sys_53: -0.00010382845231461798 + sys_54: 0.000283046736461747 + sys_55: -9.840267007222173e-05 + sys_56: -0.0011470635481529272 + sys_57: -0.0007904985782110617 + sys_58: 0.0012064959869820544 + sys_59: 0.00017242272455992495 + sys_60: 0.0001648846315096238 + sys_61: 5.4063730744902306e-05 + sys_62: -0.0005361766479740741 - pol: 7.424000000000001e-05 lumi: 0.00047 - sys_0: 1.1988805227337153e-05 - sys_1: -1.0122811180152982e-05 - sys_2: -2.225709094995496e-05 - sys_3: -9.200738156652825e-05 - sys_4: -1.720874178964973e-05 - sys_5: -1.6879612958820445e-05 - sys_6: 7.937037015496161e-05 - sys_7: 7.12410575006495e-05 - sys_8: 2.998590263007994e-05 - sys_9: -1.58776873000345e-05 - sys_10: 3.8978440508921974e-05 - sys_11: 0.00011748547577655996 - sys_12: -9.800050301701956e-06 - sys_13: 4.0445563747606495e-05 - sys_14: 4.87101477049762e-05 - sys_15: 4.3501319587868765e-05 - sys_16: -3.9008530946502404e-05 - sys_17: 0.0001303105058083275 - sys_18: 1.0980702587438305e-05 - sys_19: 4.380651481331928e-05 - sys_20: 1.942402350115072e-05 - sys_21: 0.00010130872285487363 - sys_22: -8.04910220473541e-05 - sys_23: 8.497698662956298e-05 - sys_24: 4.67381339046043e-05 - sys_25: 3.640065744251648e-05 - sys_26: 1.633105823603584e-05 - sys_27: -5.7438780082538165e-05 - sys_28: -1.4962074298932341e-05 - sys_29: -3.945878867597524e-05 - sys_30: -4.310759251067119e-06 - sys_31: 0.00014725416135456096 - sys_32: 0.00013488905896865403 - sys_33: -7.220803998572832e-05 - sys_34: -2.5355377311818003e-05 - sys_35: -2.891840213064606e-05 - sys_36: -2.946559770008359e-05 - sys_37: 3.528879680480221e-05 - sys_38: 1.5802229847890773e-05 - sys_39: 8.710504180168306e-06 - sys_40: -4.57981660395756e-05 - sys_41: 2.057418266120918e-05 - sys_42: -5.178882382625821e-05 - sys_43: -3.095238630145861e-05 - sys_44: -0.00014600919892497865 - sys_45: -0.0002147829696480405 - sys_46: -0.00032132992109166456 - sys_47: -0.0016072854733851641 - sys_48: 0.00038762771350971874 - sys_49: 0.00010270844567618074 - sys_50: -6.85723512542674e-05 - sys_51: 9.112623557609716e-05 - sys_52: 1.0362276062998926e-05 - sys_53: -1.6003934064822328e-05 - sys_54: -2.815447467533789e-05 - sys_55: -0.00025429294518088656 - sys_56: -0.00024519969880633813 - sys_57: -2.5965979753819693e-05 - sys_58: -7.498319042747137e-05 - sys_59: -4.970900450449527e-05 - sys_60: 2.383231473757752e-05 - sys_61: -3.46742695200303e-05 - sys_62: 7.984266041481395e-05 + sys_0: 1.198880522733749e-05 + sys_1: -1.012281118015365e-05 + sys_2: -2.225709094995538e-05 + sys_3: -9.200738156652607e-05 + sys_4: 1.720874178965039e-05 + sys_5: 1.6879612958822146e-05 + sys_6: -7.937037015496456e-05 + sys_7: 7.12410575006473e-05 + sys_8: -2.998590263008001e-05 + sys_9: 1.58776873000348e-05 + sys_10: -3.8978440508918925e-05 + sys_11: -0.00011748547577655859 + sys_12: -9.800050301702452e-06 + sys_13: -4.044556374760464e-05 + sys_14: -4.8710147704977446e-05 + sys_15: -4.350131958787017e-05 + sys_16: 3.900853094650076e-05 + sys_17: -0.0001303105058083281 + sys_18: -1.0980702587437976e-05 + sys_19: -4.3806514813320026e-05 + sys_20: -1.9424023501152185e-05 + sys_21: -0.00010130872285487033 + sys_22: 8.049102204735408e-05 + sys_23: -8.49769866295639e-05 + sys_24: -4.6738133904603875e-05 + sys_25: -3.6400657442517985e-05 + sys_26: -1.633105823603487e-05 + sys_27: 5.7438780082535875e-05 + sys_28: 1.496207429893287e-05 + sys_29: 3.945878867597357e-05 + sys_30: -4.310759251069271e-06 + sys_31: -0.00014725416135456126 + sys_32: -0.00013488905896865487 + sys_33: 7.220803998572469e-05 + sys_34: -4.5798166039574896e-05 + sys_35: -2.0574182661213578e-05 + sys_36: 5.178882382625915e-05 + sys_37: 2.5355377311821998e-05 + sys_38: -2.8918402130646673e-05 + sys_39: -2.946559770008753e-05 + sys_40: -3.528879680480083e-05 + sys_41: 1.5802229847888768e-05 + sys_42: -8.710504180170198e-06 + sys_43: 3.095238630145849e-05 + sys_44: 0.00014600919892498462 + sys_45: 0.0002147829696480067 + sys_46: -0.00032132992109171546 + sys_47: -0.0016072854733851678 + sys_48: -0.00038762771350970936 + sys_49: -0.000102708445676174 + sys_50: 6.857235125426427e-05 + sys_51: -9.112623557609605e-05 + sys_52: 1.0362276062998164e-05 + sys_53: -1.6003934064817103e-05 + sys_54: -2.815447467533875e-05 + sys_55: -0.00025429294518087696 + sys_56: -0.0002451996988063259 + sys_57: -2.596597975380621e-05 + sys_58: -7.498319042749523e-05 + sys_59: -4.970900450449785e-05 + sys_60: 2.3832314737576182e-05 + sys_61: -3.46742695200294e-05 + sys_62: 7.984266041481372e-05 - pol: 0.00021504 lumi: 0.00047 - sys_0: 1.6980791646538596e-05 - sys_1: -1.7109036972399746e-05 - sys_2: -2.3080843436824126e-05 - sys_3: -8.968532766930664e-05 - sys_4: -2.324883529149849e-05 - sys_5: -2.9915140725999797e-05 - sys_6: 7.830834321021618e-05 - sys_7: 7.065886566605766e-05 - sys_8: 3.716627084069595e-05 - sys_9: -2.640345031306556e-05 - sys_10: 6.452790050231657e-05 - sys_11: 0.00011570402039971252 - sys_12: -1.6719404856793778e-05 - sys_13: 6.33847631886473e-05 - sys_14: 7.464412483594288e-05 - sys_15: 8.114614294772787e-05 - sys_16: -4.168324366921127e-05 - sys_17: 0.00014191742416220203 - sys_18: 3.077585024322328e-05 - sys_19: 5.3474619937518926e-05 - sys_20: 4.238172232093275e-05 - sys_21: 0.00015910980944704514 - sys_22: -0.0001617903709525906 - sys_23: 0.00010341713047828779 - sys_24: 3.673391294560449e-06 - sys_25: 1.9102534713103342e-05 - sys_26: 1.852716310179595e-06 - sys_27: -7.412095984564886e-05 - sys_28: -4.132652672152357e-05 - sys_29: -8.585549689698303e-05 - sys_30: 1.8928705109809146e-05 - sys_31: 0.0001353970578675398 - sys_32: 0.00018139355567593229 - sys_33: -4.572113933320987e-05 - sys_34: 2.9190111943478155e-05 - sys_35: -4.0225814137865836e-05 - sys_36: -6.676529954286033e-05 - sys_37: 4.757561805738058e-05 - sys_38: -2.5619171620702607e-06 - sys_39: -4.325000210102794e-05 - sys_40: 1.0062440257151244e-05 - sys_41: 4.7225792505811216e-05 - sys_42: -0.00010726275521546072 - sys_43: -0.00014140861018299553 - sys_44: 0.001471917400421051 - sys_45: 0.00017320020895239405 - sys_46: -3.8437468555331665e-05 - sys_47: -0.000162223585420007 - sys_48: 8.510937354571548e-05 - sys_49: 0.00012745514958644008 - sys_50: -1.866629878211839e-05 - sys_51: 3.756992124606338e-05 - sys_52: 1.1658062218501663e-05 - sys_53: 1.5140223511868958e-05 - sys_54: 9.665081055338634e-05 - sys_55: -5.7133646608962185e-05 - sys_56: 0.0001202469665335926 - sys_57: 4.7077735986504356e-05 - sys_58: -1.686476789753164e-05 - sys_59: -8.232148541659906e-06 - sys_60: 2.9371047200178286e-05 - sys_61: 7.859657328328348e-05 - sys_62: -5.357062958052398e-05 + sys_0: 1.6980791646539273e-05 + sys_1: -1.7109036972399807e-05 + sys_2: -2.3080843436824275e-05 + sys_3: -8.968532766930604e-05 + sys_4: 2.3248835291498948e-05 + sys_5: 2.9915140725999773e-05 + sys_6: -7.830834321021942e-05 + sys_7: 7.065886566605514e-05 + sys_8: -3.7166270840696167e-05 + sys_9: 2.6403450313065633e-05 + sys_10: -6.452790050231355e-05 + sys_11: -0.00011570402039971308 + sys_12: -1.671940485679445e-05 + sys_13: -6.338476318864657e-05 + sys_14: -7.46441248359434e-05 + sys_15: -8.114614294772858e-05 + sys_16: 4.1683243669210935e-05 + sys_17: -0.00014191742416220216 + sys_18: -3.077585024322008e-05 + sys_19: -5.347461993752074e-05 + sys_20: -4.238172232093285e-05 + sys_21: -0.0001591098094470426 + sys_22: 0.0001617903709525879 + sys_23: -0.00010341713047829035 + sys_24: -3.67339129456103e-06 + sys_25: -1.9102534713104867e-05 + sys_26: -1.8527163101784903e-06 + sys_27: 7.412095984564919e-05 + sys_28: 4.132652672152309e-05 + sys_29: 8.585549689697947e-05 + sys_30: 1.8928705109806984e-05 + sys_31: -0.00013539705786753836 + sys_32: -0.00018139355567593389 + sys_33: 4.572113933320499e-05 + sys_34: 1.0062440257150285e-05 + sys_35: -4.72257925058055e-05 + sys_36: 0.00010726275521543558 + sys_37: -2.9190111943479053e-05 + sys_38: -4.022581413786071e-05 + sys_39: -6.676529954286538e-05 + sys_40: -4.7575618057376346e-05 + sys_41: -2.561917162065725e-06 + sys_42: 4.3250002101027015e-05 + sys_43: 0.000141408610182992 + sys_44: -0.0014719174004210554 + sys_45: -0.00017320020895235163 + sys_46: -3.84374685553272e-05 + sys_47: -0.00016222358542000945 + sys_48: -8.510937354571355e-05 + sys_49: -0.00012745514958643816 + sys_50: 1.8666298782119536e-05 + sys_51: -3.75699212460625e-05 + sys_52: 1.165806221849543e-05 + sys_53: 1.514022351187339e-05 + sys_54: 9.665081055338447e-05 + sys_55: -5.7133646608964604e-05 + sys_56: 0.0001202469665335999 + sys_57: 4.7077735986498264e-05 + sys_58: -1.6864767897526714e-05 + sys_59: -8.232148541657705e-06 + sys_60: 2.9371047200179062e-05 + sys_61: 7.859657328328138e-05 + sys_62: -5.357062958052559e-05 - pol: 3.84e-05 lumi: 0.00047 - sys_0: 1.750924451669883e-05 - sys_1: -1.617755634165256e-05 - sys_2: -2.317084078012487e-05 - sys_3: -8.81173129702084e-05 - sys_4: -2.258746487701988e-05 - sys_5: -2.817381972070911e-05 - sys_6: 7.960566166503321e-05 - sys_7: 6.830291732147555e-05 - sys_8: 3.7291267077170146e-05 - sys_9: -2.6109619025804723e-05 - sys_10: 6.183989159427434e-05 - sys_11: 0.00011559448551938996 - sys_12: -1.7808095178925982e-05 - sys_13: 6.042821118908999e-05 - sys_14: 7.284862734313037e-05 - sys_15: 7.825467467977471e-05 - sys_16: -4.2080378974718926e-05 - sys_17: 0.00014124377862542357 - sys_18: 3.188048357851204e-05 - sys_19: 5.079060403743773e-05 - sys_20: 4.06996387996997e-05 - sys_21: 0.0001537486747274063 - sys_22: -0.00015577108454248214 - sys_23: 0.00010345724052218065 - sys_24: 7.2631835368674e-06 - sys_25: 2.312234126992752e-05 - sys_26: 1.7498002730535727e-06 - sys_27: -7.783616454144802e-05 - sys_28: -3.343765241906546e-05 - sys_29: -8.177795546736996e-05 - sys_30: 1.7256028927060605e-05 - sys_31: 0.00014001947699926812 - sys_32: 0.00018274107493845094 - sys_33: -5.159802411901986e-05 - sys_34: 2.4898788945069272e-05 - sys_35: -4.334332203943152e-05 - sys_36: -6.92365463965009e-05 - sys_37: 3.8099539377266106e-05 - sys_38: -8.947076967409882e-06 - sys_39: -3.681367491762464e-05 - sys_40: 9.021681071496416e-05 - sys_41: 1.8197312917909902e-05 - sys_42: -5.45512432153564e-06 - sys_43: -0.0001306925482077911 - sys_44: 1.7618732491543735e-05 - sys_45: -0.00043392041532587213 - sys_46: 0.001512763548566355 - sys_47: -0.00026179336081912563 - sys_48: 6.940478373466225e-05 - sys_49: 0.0001338323583990458 - sys_50: -8.328379950287208e-06 - sys_51: 4.5915642013377265e-05 - sys_52: 4.6589961643494086e-06 - sys_53: 1.4956532380819988e-05 - sys_54: 9.222135439521491e-05 - sys_55: -5.681292776334477e-05 - sys_56: 7.957929980908127e-05 - sys_57: 7.036517587635446e-05 - sys_58: -3.5317339797824556e-05 - sys_59: -2.9849151072024758e-05 - sys_60: 4.001036950814897e-06 - sys_61: 8.690885261703858e-05 - sys_62: -3.391197290104236e-05 + sys_0: 1.7509244516699438e-05 + sys_1: -1.6177556341652778e-05 + sys_2: -2.3170840780124833e-05 + sys_3: -8.811731297020835e-05 + sys_4: 2.2587464877020097e-05 + sys_5: 2.817381972070832e-05 + sys_6: -7.960566166503656e-05 + sys_7: 6.830291732147209e-05 + sys_8: -3.729126707717029e-05 + sys_9: 2.6109619025804036e-05 + sys_10: -6.183989159427118e-05 + sys_11: -0.00011559448551939127 + sys_12: -1.7808095178926118e-05 + sys_13: -6.042821118909034e-05 + sys_14: -7.284862734313028e-05 + sys_15: -7.825467467977667e-05 + sys_16: 4.2080378974717836e-05 + sys_17: -0.00014124377862542205 + sys_18: -3.1880483578511415e-05 + sys_19: -5.079060403743926e-05 + sys_20: -4.069963879969916e-05 + sys_21: -0.0001537486747274057 + sys_22: 0.00015577108454248247 + sys_23: -0.00010345724052218234 + sys_24: -7.263183536867447e-06 + sys_25: -2.312234126992885e-05 + sys_26: -1.749800273054541e-06 + sys_27: 7.783616454144878e-05 + sys_28: 3.343765241906373e-05 + sys_29: 8.177795546736858e-05 + sys_30: 1.7256028927059e-05 + sys_31: -0.0001400194769992688 + sys_32: -0.00018274107493844989 + sys_33: 5.1598024119015815e-05 + sys_34: 9.021681071496408e-05 + sys_35: -1.8197312917903664e-05 + sys_36: 5.455124321522237e-06 + sys_37: -2.489878894506861e-05 + sys_38: -4.3343322039426926e-05 + sys_39: -6.923654639650492e-05 + sys_40: -3.809953937726139e-05 + sys_41: -8.947076967409804e-06 + sys_42: 3.68136749176258e-05 + sys_43: 0.0001306925482077864 + sys_44: -1.7618732491540997e-05 + sys_45: 0.00043392041532598207 + sys_46: 0.0015127635485662678 + sys_47: -0.00026179336081914466 + sys_48: -6.940478373466075e-05 + sys_49: -0.00013383235839904212 + sys_50: 8.328379950285405e-06 + sys_51: -4.5915642013375605e-05 + sys_52: 4.658996164346626e-06 + sys_53: 1.4956532380821154e-05 + sys_54: 9.222135439521719e-05 + sys_55: -5.681292776335175e-05 + sys_56: 7.957929980908956e-05 + sys_57: 7.036517587634817e-05 + sys_58: -3.531733979781321e-05 + sys_59: -2.9849151072023694e-05 + sys_60: 4.001036950813125e-06 + sys_61: 8.690885261703851e-05 + sys_62: -3.3911972901044674e-05 - pol: 9.855999999999999e-05 lumi: 0.00047 - sys_0: 1.6067577762474497e-05 - sys_1: -1.5357098560717597e-05 - sys_2: -2.3410022719246187e-05 - sys_3: -8.861865680388318e-05 - sys_4: -2.28354472991793e-05 - sys_5: -2.7612399796742894e-05 - sys_6: 7.934601102286091e-05 - sys_7: 6.796930221888335e-05 - sys_8: 3.725279006594692e-05 - sys_9: -2.695301032375375e-05 - sys_10: 5.977744796231624e-05 - sys_11: 0.00011661158695191768 - sys_12: -2.107810985306159e-05 - sys_13: 6.394716308774421e-05 - sys_14: 7.493167604829327e-05 - sys_15: 7.752282425148536e-05 - sys_16: -4.289228876395666e-05 - sys_17: 0.00014753390765327525 - sys_18: 3.680310449504511e-05 - sys_19: 5.159110969003508e-05 - sys_20: 4.360666625607369e-05 - sys_21: 0.00015852943144484074 - sys_22: -0.00015780902226735841 - sys_23: 0.00011162860767022135 - sys_24: 1.3402957195105382e-05 - sys_25: 3.310955645998031e-05 - sys_26: 1.3181163354913653e-06 - sys_27: -9.441831629838113e-05 - sys_28: -2.89559671745813e-05 - sys_29: -8.503522978769667e-05 - sys_30: 1.902969664455846e-05 - sys_31: 0.00016395116682093344 - sys_32: 0.00021518969637552245 - sys_33: -6.49554193012957e-05 - sys_34: 2.1569370489270444e-05 - sys_35: -5.609614295090738e-05 - sys_36: -8.380851625267098e-05 - sys_37: 2.7390422020387644e-05 - sys_38: -1.8760137101697843e-05 - sys_39: -4.0369289659803094e-05 - sys_40: 8.607368565228408e-05 - sys_41: -7.44781592149743e-06 - sys_42: 3.335444328099609e-05 - sys_43: -0.00015512482425063828 - sys_44: -7.402210685985129e-06 - sys_45: 4.6989444611719966e-05 - sys_46: -3.187727023970042e-05 - sys_47: 0.00011113469809396922 - sys_48: -3.659555108587721e-05 - sys_49: 0.0002169294731782842 - sys_50: -3.9868637900727585e-06 - sys_51: 6.628739386949036e-05 - sys_52: 8.033055463426064e-08 - sys_53: 1.5918659393926413e-05 - sys_54: 0.00013958545308137457 - sys_55: 6.501625806318791e-05 - sys_56: -0.001091452097803664 - sys_57: 0.0016491224248438338 - sys_58: -0.0001247195391448342 - sys_59: -0.00011374126059099385 - sys_60: -6.505122360427317e-05 - sys_61: 0.00018422255263655514 - sys_62: -2.770064173191701e-05 + sys_0: 1.6067577762474904e-05 + sys_1: -1.535709856071793e-05 + sys_2: -2.3410022719246112e-05 + sys_3: -8.861865680388343e-05 + sys_4: 2.2835447299179433e-05 + sys_5: 2.7612399796742433e-05 + sys_6: -7.934601102286422e-05 + sys_7: 6.796930221888001e-05 + sys_8: -3.725279006594708e-05 + sys_9: 2.6953010323753148e-05 + sys_10: -5.977744796231354e-05 + sys_11: -0.00011661158695191928 + sys_12: -2.1078109853061696e-05 + sys_13: -6.39471630877445e-05 + sys_14: -7.493167604829274e-05 + sys_15: -7.752282425148757e-05 + sys_16: 4.289228876395554e-05 + sys_17: -0.00014753390765327463 + sys_18: -3.68031044950442e-05 + sys_19: -5.159110969003688e-05 + sys_20: -4.360666625607254e-05 + sys_21: -0.0001585294314448396 + sys_22: 0.00015780902226735785 + sys_23: -0.00011162860767022273 + sys_24: -1.3402957195105765e-05 + sys_25: -3.310955645998204e-05 + sys_26: -1.3181163354902485e-06 + sys_27: 9.44183162983823e-05 + sys_28: 2.895596717458176e-05 + sys_29: 8.503522978769481e-05 + sys_30: 1.902969664455748e-05 + sys_31: -0.00016395116682093442 + sys_32: -0.000215189696375523 + sys_33: 6.4955419301289e-05 + sys_34: 8.607368565228504e-05 + sys_35: 7.447815921500445e-06 + sys_36: -3.335444328100414e-05 + sys_37: -2.1569370489268367e-05 + sys_38: -5.609614295089939e-05 + sys_39: -8.380851625267854e-05 + sys_40: -2.7390422020381996e-05 + sys_41: -1.876013710169719e-05 + sys_42: 4.0369289659802904e-05 + sys_43: 0.0001551248242506367 + sys_44: 7.4022106859839784e-06 + sys_45: -4.698944461172202e-05 + sys_46: -3.1877270239690956e-05 + sys_47: 0.00011113469809396684 + sys_48: 3.6595551085875295e-05 + sys_49: -0.00021692947317828189 + sys_50: 3.986863790071127e-06 + sys_51: -6.628739386948111e-05 + sys_52: 8.033055463317493e-08 + sys_53: 1.591865939392256e-05 + sys_54: 0.00013958545308137167 + sys_55: 6.501625806318908e-05 + sys_56: -0.0010914520978035846 + sys_57: 0.0016491224248438878 + sys_58: -0.00012471953914481207 + sys_59: -0.00011374126059098531 + sys_60: -6.505122360427344e-05 + sys_61: 0.00018422255263654785 + sys_62: -2.7700641731925424e-05 - pol: 0.0003968 lumi: 0.00047 - sys_0: 1.7262416045985232e-05 - sys_1: -1.4426774920439588e-05 - sys_2: -2.4601232269485177e-05 - sys_3: -8.89052555276196e-05 - sys_4: -2.5068828776474154e-05 - sys_5: -2.798865797021059e-05 - sys_6: 8.063469154534603e-05 - sys_7: 6.645641551374384e-05 - sys_8: 3.931960866477371e-05 - sys_9: -3.042576765919702e-05 - sys_10: 6.065810700046609e-05 - sys_11: 0.00011913538521447642 - sys_12: -2.6230719373863082e-05 - sys_13: 7.13004916436832e-05 - sys_14: 7.878858784216479e-05 - sys_15: 7.964835543948928e-05 - sys_16: -4.6131065545990947e-05 - sys_17: 0.00015760811985524452 - sys_18: 4.563668861360809e-05 - sys_19: 5.068313347733516e-05 - sys_20: 4.76841612129893e-05 - sys_21: 0.00016650300904212103 - sys_22: -0.0001696866941868952 - sys_23: 0.00011846171665546969 - sys_24: 1.804540440056027e-05 - sys_25: 4.3573423766369324e-05 - sys_26: -8.288195850307024e-06 - sys_27: -0.00011413329740820264 - sys_28: -2.6764208290543667e-05 - sys_29: -8.631837047335518e-05 - sys_30: 2.3536648361202447e-05 - sys_31: 0.00018557897695735935 - sys_32: 0.0002406179253439728 - sys_33: -8.089559952690581e-05 - sys_34: 1.947278782650351e-05 - sys_35: -6.967590460171291e-05 - sys_36: -0.00010109642807395313 - sys_37: -1.494482376086708e-05 - sys_38: -1.0002773567677261e-05 - sys_39: -4.550036067615091e-05 - sys_40: 9.475649771369747e-05 - sys_41: -3.042971647201877e-05 - sys_42: 7.65008608683993e-05 - sys_43: -0.00018582832633484922 - sys_44: -5.599511790127481e-06 - sys_45: 0.00010593758807977612 - sys_46: -2.8013639062068756e-06 - sys_47: 4.177197814675644e-05 - sys_48: -7.189533610734083e-06 - sys_49: 0.0003713721126791239 - sys_50: 1.6001054519980884e-05 - sys_51: 5.9202653773308825e-05 - sys_52: -6.03625741471746e-06 - sys_53: 5.186615454201347e-06 - sys_54: 0.00026189733509764525 - sys_55: -3.926489867289322e-05 - sys_56: -0.00013652651883572594 - sys_57: -0.0002996079266957716 - sys_58: -0.00010641924855964166 - sys_59: -0.0009675673996598356 - sys_60: -0.0018773687760410282 - sys_61: -0.00033288495340539655 - sys_62: 0.00024394712251612537 + sys_0: 1.7262416045985896e-05 + sys_1: -1.4426774920439827e-05 + sys_2: -2.4601232269485106e-05 + sys_3: -8.890525552761963e-05 + sys_4: 2.5068828776474154e-05 + sys_5: 2.7988657970210173e-05 + sys_6: -8.063469154534933e-05 + sys_7: 6.645641551374069e-05 + sys_8: -3.9319608664774555e-05 + sys_9: 3.0425767659196187e-05 + sys_10: -6.065810700046324e-05 + sys_11: -0.00011913538521447768 + sys_12: -2.6230719373863255e-05 + sys_13: -7.130049164368381e-05 + sys_14: -7.878858784216459e-05 + sys_15: -7.964835543949139e-05 + sys_16: 4.61310655459893e-05 + sys_17: -0.0001576081198552432 + sys_18: -4.563668861360691e-05 + sys_19: -5.0683133477337116e-05 + sys_20: -4.7684161212990283e-05 + sys_21: -0.0001665030090421197 + sys_22: 0.00016968669418689493 + sys_23: -0.00011846171665547088 + sys_24: -1.8045404400560477e-05 + sys_25: -4.357342376637061e-05 + sys_26: 8.288195850307002e-06 + sys_27: 0.00011413329740820192 + sys_28: 2.6764208290543166e-05 + sys_29: 8.631837047335358e-05 + sys_30: 2.3536648361200892e-05 + sys_31: -0.0001855789769573595 + sys_32: -0.00024061792534397312 + sys_33: 8.089559952690036e-05 + sys_34: 9.475649771369896e-05 + sys_35: 3.042971647202121e-05 + sys_36: -7.65008608684066e-05 + sys_37: -1.9472787826502866e-05 + sys_38: -6.967590460170088e-05 + sys_39: -0.00010109642807396044 + sys_40: 1.4944823760872967e-05 + sys_41: -1.0002773567678882e-05 + sys_42: 4.5500360676152615e-05 + sys_43: 0.0001858283263348497 + sys_44: 5.599511790124221e-06 + sys_45: -0.0001059375880797751 + sys_46: -2.8013639061857464e-06 + sys_47: 4.177197814675559e-05 + sys_48: 7.189533610724911e-06 + sys_49: -0.00037137211267912137 + sys_50: -1.6001054519984645e-05 + sys_51: -5.92026537733015e-05 + sys_52: -6.036257414714269e-06 + sys_53: 5.186615454202725e-06 + sys_54: 0.00026189733509764503 + sys_55: -3.926489867288773e-05 + sys_56: -0.00013652651883573519 + sys_57: -0.0002996079266957647 + sys_58: -0.0001064192485596623 + sys_59: -0.0009675673996598508 + sys_60: -0.0018773687760410425 + sys_61: -0.00033288495340538446 + sys_62: 0.00024394712251612417 - pol: 0.0005536 lumi: 0.00047 - sys_0: 2.175313028375433e-05 - sys_1: -1.8197088078271366e-05 - sys_2: -2.7441203294125204e-05 - sys_3: -8.699397414790321e-05 - sys_4: -3.283387838381589e-05 - sys_5: -3.042064163679978e-05 - sys_6: 8.796740154114706e-05 - sys_7: 6.45600304954123e-05 - sys_8: 4.716492376631363e-05 - sys_9: -3.9040955607817946e-05 - sys_10: 7.21630121977661e-05 - sys_11: 0.00012777301639210745 - sys_12: -4.0999956994731316e-05 - sys_13: 9.103177012742085e-05 - sys_14: 9.924490404087222e-05 - sys_15: 9.854967840363989e-05 - sys_16: -4.996842167126018e-05 - sys_17: 0.0001904298408644186 - sys_18: 7.533410297922e-05 - sys_19: 5.435363672024717e-05 - sys_20: 7.121708472254264e-05 - sys_21: 0.00020659394787006673 - sys_22: -0.00023161418734883582 - sys_23: 0.00014986813145263276 - sys_24: 2.4730922030664508e-05 - sys_25: 6.700727744214446e-05 - sys_26: -6.143286510480495e-05 - sys_27: -0.00021899506457521918 - sys_28: -2.7219793446766282e-05 - sys_29: -0.0001352886001489845 - sys_30: 4.784144006826326e-05 - sys_31: 0.0003406246102928922 - sys_32: 0.0006537046351273337 - sys_33: -0.00028957453468358513 - sys_34: 3.759619428339987e-05 - sys_35: -0.00044805485420866434 - sys_36: -0.0011061618798362996 - sys_37: -0.002360753245526796 - sys_38: -0.0007762612943847487 - sys_39: 0.00048062779592209073 - sys_40: 4.7907207842206045e-05 - sys_41: -2.9190662012547097e-05 - sys_42: 7.55783588863325e-05 - sys_43: 0.0004972776501498306 - sys_44: -2.5973773970905266e-06 - sys_45: 0.00011572611788334741 - sys_46: 2.234667257161624e-05 - sys_47: -2.6699880872908537e-07 - sys_48: -2.2894077733066973e-06 - sys_49: -0.0003175262578105047 - sys_50: -3.087164985313073e-05 - sys_51: 4.118512025433221e-05 - sys_52: 5.128668099921814e-06 - sys_53: 1.4508318364952969e-05 - sys_54: -6.944508987419615e-05 - sys_55: -2.354299213853218e-05 - sys_56: -9.065074949246068e-05 - sys_57: -0.00010528369452931876 - sys_58: -0.00010334060395954604 - sys_59: 5.562993042235829e-05 - sys_60: 7.612522594561342e-05 - sys_61: 1.384785723798516e-05 - sys_62: -1.1447908500008258e-05 + sys_0: 2.175313028375492e-05 + sys_1: -1.819708807827175e-05 + sys_2: -2.7441203294125437e-05 + sys_3: -8.699397414790279e-05 + sys_4: 3.2833878383815996e-05 + sys_5: 3.0420641636799187e-05 + sys_6: -8.796740154114992e-05 + sys_7: 6.456003049540894e-05 + sys_8: -4.716492376631433e-05 + sys_9: 3.904095560781794e-05 + sys_10: -7.216301219776293e-05 + sys_11: -0.00012777301639210891 + sys_12: -4.099995699473134e-05 + sys_13: -9.103177012742078e-05 + sys_14: -9.924490404087241e-05 + sys_15: -9.854967840364288e-05 + sys_16: 4.996842167125875e-05 + sys_17: -0.0001904298408644177 + sys_18: -7.533410297921872e-05 + sys_19: -5.435363672024995e-05 + sys_20: -7.121708472254303e-05 + sys_21: -0.00020659394787006407 + sys_22: 0.0002316141873488352 + sys_23: -0.0001498681314526342 + sys_24: -2.4730922030662915e-05 + sys_25: -6.700727744214607e-05 + sys_26: 6.143286510480737e-05 + sys_27: 0.00021899506457521804 + sys_28: 2.7219793446767685e-05 + sys_29: 0.00013528860014898176 + sys_30: 4.7841440068259846e-05 + sys_31: -0.0003406246102928935 + sys_32: -0.0006537046351273356 + sys_33: 0.0002895745346835615 + sys_34: 4.790720784220696e-05 + sys_35: 2.9190662012549116e-05 + sys_36: -7.557835888633401e-05 + sys_37: -3.7596194283405015e-05 + sys_38: -0.0004480548542085499 + sys_39: -0.001106161879836314 + sys_40: 0.0023607532455268213 + sys_41: -0.0007762612943848109 + sys_42: -0.00048062779592213773 + sys_43: -0.0004972776501498274 + sys_44: 2.597377397088823e-06 + sys_45: -0.00011572611788334584 + sys_46: 2.2346672571637492e-05 + sys_47: -2.669988087302134e-07 + sys_48: 2.2894077732991193e-06 + sys_49: 0.00031752625781050883 + sys_50: 3.087164985313282e-05 + sys_51: -4.118512025433484e-05 + sys_52: 5.128668099922126e-06 + sys_53: 1.4508318364952105e-05 + sys_54: -6.944508987419666e-05 + sys_55: -2.3542992138529192e-05 + sys_56: -9.065074949246495e-05 + sys_57: -0.00010528369452931478 + sys_58: -0.00010334060395955328 + sys_59: 5.5629930422357065e-05 + sys_60: 7.612522594561319e-05 + sys_61: 1.3847857237984632e-05 + sys_62: -1.144790850000392e-05 - pol: 0.0005158399999999999 lumi: 0.00047 - sys_0: 3.331957024905108e-05 - sys_1: -2.0269934304715875e-05 - sys_2: -3.397381868516456e-05 - sys_3: -8.683560660622106e-05 - sys_4: -5.122703844008558e-05 - sys_5: -4.395853545554561e-05 - sys_6: 0.00010356307367101305 - sys_7: 5.907963915384921e-05 - sys_8: 5.887818842103822e-05 - sys_9: -6.935380820120347e-05 - sys_10: 0.0001013011226242847 - sys_11: 0.00014819834927283967 - sys_12: -9.048007823160823e-05 - sys_13: 0.00014964903606475144 - sys_14: 0.00014972052852848207 - sys_15: 0.00013750472709222637 - sys_16: -2.2271335146026932e-05 - sys_17: 0.0002952472226912479 - sys_18: 0.00019113098167177698 - sys_19: 6.416738022172399e-05 - sys_20: 0.00014760240188694626 - sys_21: 0.0003566562968767753 - sys_22: -0.00048450593354619557 - sys_23: 0.0003109825173007432 - sys_24: 0.00011112671012976312 - sys_25: 0.00014190155106012138 - sys_26: -0.0008575000809477245 - sys_27: -0.0024766211939857698 - sys_28: 0.002965683472188613 - sys_29: 0.0005513387477058759 - sys_30: -9.855191733053331e-05 - sys_31: -0.00027537245711825494 - sys_32: -0.00016518675021696136 - sys_33: 5.967010292335178e-05 - sys_34: 2.7203866518706672e-05 - sys_35: -3.64337069188075e-06 - sys_36: 1.790355210245155e-05 - sys_37: 0.00023053998733058462 - sys_38: -0.0001561955292160523 - sys_39: 5.1317408771917414e-05 - sys_40: 1.3835919397559587e-05 - sys_41: -1.495839769910551e-05 - sys_42: 4.6780800815638414e-05 - sys_43: 8.103231804117721e-05 - sys_44: 2.476245088911094e-07 - sys_45: 0.00010728947688930197 - sys_46: 3.200724574182246e-05 - sys_47: -3.5069720199720638e-06 - sys_48: -1.9551707595947157e-06 - sys_49: -0.0001268554672598896 - sys_50: -2.15599240940132e-05 - sys_51: 5.881491370319988e-05 - sys_52: 1.7426084362134597e-06 - sys_53: 1.2139859026649362e-05 - sys_54: -3.124472069365521e-05 - sys_55: -2.329420057195408e-05 - sys_56: -0.0001071432132281899 - sys_57: -9.172211561423325e-05 - sys_58: -0.00013004021041491246 - sys_59: 2.0525669533600546e-05 - sys_60: 3.920569136202932e-05 - sys_61: 1.1904562939188916e-05 - sys_62: -1.9841967455950074e-05 + sys_0: 3.33195702490518e-05 + sys_1: -2.0269934304716464e-05 + sys_2: -3.397381868516458e-05 + sys_3: -8.683560660622073e-05 + sys_4: 5.1227038440085685e-05 + sys_5: 4.3958535455545464e-05 + sys_6: -0.00010356307367101545 + sys_7: 5.907963915384479e-05 + sys_8: -5.887818842103967e-05 + sys_9: 6.935380820120256e-05 + sys_10: -0.00010130112262428144 + sys_11: -0.00014819834927284068 + sys_12: -9.048007823160822e-05 + sys_13: -0.0001496490360647497 + sys_14: -0.0001497205285284818 + sys_15: -0.00013750472709222778 + sys_16: 2.227133514602775e-05 + sys_17: -0.00029524722269124636 + sys_18: -0.0001911309816717763 + sys_19: -6.416738022172892e-05 + sys_20: -0.00014760240188694686 + sys_21: -0.00035665629687677035 + sys_22: 0.0004845059335461944 + sys_23: -0.000310982517300744 + sys_24: -0.00011112671012977319 + sys_25: -0.00014190155106011266 + sys_26: 0.0008575000809477216 + sys_27: 0.0024766211939857585 + sys_28: -0.0029656834721886217 + sys_29: -0.0005513387477058596 + sys_30: -9.855191733054162e-05 + sys_31: 0.0002753724571182623 + sys_32: 0.00016518675021696537 + sys_33: -5.967010292334511e-05 + sys_34: 1.3835919397560322e-05 + sys_35: 1.4958397699104773e-05 + sys_36: -4.678080081563745e-05 + sys_37: -2.7203866518703508e-05 + sys_38: -3.6433706918878873e-06 + sys_39: 1.790355210244903e-05 + sys_40: -0.0002305399873305886 + sys_41: -0.00015619552921604453 + sys_42: -5.131740877191466e-05 + sys_43: -8.103231804117862e-05 + sys_44: -2.4762450889291374e-07 + sys_45: -0.0001072894768892987 + sys_46: 3.200724574184332e-05 + sys_47: -3.506972019972703e-06 + sys_48: 1.9551707595887487e-06 + sys_49: 0.00012685546725989174 + sys_50: 2.1559924094013612e-05 + sys_51: -5.881491370320182e-05 + sys_52: 1.7426084362154976e-06 + sys_53: 1.213985902664855e-05 + sys_54: -3.1244720693656704e-05 + sys_55: -2.3294200571951528e-05 + sys_56: -0.00010714321322819339 + sys_57: -9.172211561422875e-05 + sys_58: -0.00013004021041491994 + sys_59: 2.052566953359922e-05 + sys_60: 3.9205691362029246e-05 + sys_61: 1.1904562939187798e-05 + sys_62: -1.984196745594663e-05 - pol: 0.00155392 lumi: 0.00047 - sys_0: 6.139011568272416e-05 - sys_1: -3.418548621139498e-05 - sys_2: -5.802934059401736e-05 - sys_3: -8.663360256961601e-05 - sys_4: -9.646623094033136e-05 - sys_5: -7.60616683157227e-05 - sys_6: 0.00016575779103327243 - sys_7: 3.2821744751943306e-05 - sys_8: 4.054007020388547e-05 - sys_9: -0.0001612517285052394 - sys_10: 0.00020025574055512204 - sys_11: 0.00023775755593678414 - sys_12: -0.0002811573668744074 - sys_13: 0.00044295658824763197 - sys_14: 0.0004089821991368056 - sys_15: 0.0003594961822586568 - sys_16: 0.0004759908449872856 - sys_17: 0.0021264960307410393 - sys_18: 0.005379055352518797 - sys_19: -0.0015642683770978117 - sys_20: -0.0016150987588570817 - sys_21: -0.0005432745511484977 - sys_22: 0.0004955923953678203 - sys_23: -0.00011102124234994861 - sys_24: -9.441289014443512e-05 - sys_25: 4.91844072288384e-05 - sys_26: 0.00043400957149476293 - sys_27: 0.0003038492314444544 - sys_28: 0.00013107813504309733 - sys_29: 3.4075638684123805e-05 - sys_30: 4.688911661391012e-06 - sys_31: -1.482900162269388e-05 - sys_32: -5.06132810038025e-06 - sys_33: 9.59366981885725e-06 - sys_34: 2.4212526457128493e-05 - sys_35: -2.583061487685198e-05 - sys_36: -2.1784148183654543e-05 - sys_37: 0.00014590181210275046 - sys_38: -0.00014793170815362042 - sys_39: 3.3855496221392895e-05 - sys_40: -4.934353313049171e-07 - sys_41: -4.381940990905706e-06 - sys_42: 1.4308805980679447e-05 - sys_43: 5.186720793358371e-05 - sys_44: 4.697173728999191e-06 - sys_45: 5.2887650954336086e-05 - sys_46: 2.2418326141194937e-05 - sys_47: 3.4146225622030234e-06 - sys_48: -1.5209260353603615e-06 - sys_49: -9.941853399784592e-05 - sys_50: -1.8833517997927633e-05 - sys_51: 5.623992674187013e-05 - sys_52: -1.3303523908476006e-06 - sys_53: 5.21991412089482e-06 - sys_54: -3.397677990192499e-05 - sys_55: -1.9496967635660422e-05 - sys_56: -9.531087793688814e-05 - sys_57: -6.636098407181183e-05 - sys_58: -9.507827427535118e-05 - sys_59: 9.279264333899613e-07 - sys_60: 1.772712201089439e-05 - sys_61: 7.770488021443016e-08 - sys_62: -4.936707933949782e-06 + sys_0: 6.139011568272508e-05 + sys_1: -3.4185486211394726e-05 + sys_2: -5.80293405940178e-05 + sys_3: -8.663360256961539e-05 + sys_4: 9.646623094033114e-05 + sys_5: 7.606166831572315e-05 + sys_6: -0.00016575779103327585 + sys_7: 3.282174475193526e-05 + sys_8: -4.0540070203886034e-05 + sys_9: 0.00016125172850523834 + sys_10: -0.00020025574055511768 + sys_11: -0.0002377575559367851 + sys_12: -0.000281157366874405 + sys_13: -0.0004429565882476286 + sys_14: -0.0004089821991368072 + sys_15: -0.00035949618225867305 + sys_16: -0.00047599084498729647 + sys_17: -0.002126496030741046 + sys_18: -0.005379055352518832 + sys_19: 0.0015642683770976786 + sys_20: 0.0016150987588571014 + sys_21: 0.0005432745511484932 + sys_22: -0.0004955923953678252 + sys_23: 0.00011102124234995092 + sys_24: 9.441289014443767e-05 + sys_25: -4.918440722883872e-05 + sys_26: -0.0004340095714947622 + sys_27: -0.0003038492314444565 + sys_28: -0.0001310781350430956 + sys_29: -3.407563868412241e-05 + sys_30: 4.68891166138885e-06 + sys_31: 1.4829001622695413e-05 + sys_32: 5.061328100380999e-06 + sys_33: -9.59366981885579e-06 + sys_34: -4.934353313047879e-07 + sys_35: 4.381940990904801e-06 + sys_36: -1.4308805980678375e-05 + sys_37: -2.4212526457126138e-05 + sys_38: -2.5830614876854136e-05 + sys_39: -2.1784148183658164e-05 + sys_40: -0.00014590181210275165 + sys_41: -0.0001479317081536163 + sys_42: -3.385549622139266e-05 + sys_43: -5.1867207933584796e-05 + sys_44: -4.6971737290000775e-06 + sys_45: -5.288765095433412e-05 + sys_46: 2.241832614120492e-05 + sys_47: 3.4146225622021395e-06 + sys_48: 1.5209260353566648e-06 + sys_49: 9.94185339978485e-05 + sys_50: 1.8833517997928074e-05 + sys_51: -5.623992674187161e-05 + sys_52: -1.3303523908455791e-06 + sys_53: 5.219914120893969e-06 + sys_54: -3.397677990192548e-05 + sys_55: -1.949696763565897e-05 + sys_56: -9.53108779368897e-05 + sys_57: -6.636098407180715e-05 + sys_58: -9.507827427535796e-05 + sys_59: 9.279264333889731e-07 + sys_60: 1.772712201089395e-05 + sys_61: 7.770488021388353e-08 + sys_62: -4.936707933947749e-06 - pol: 0.0006803200000000001 lumi: 0.00047 - sys_0: 9.608542661026518e-05 - sys_1: -6.643215982495098e-05 - sys_2: -9.62373902965967e-05 - sys_3: -0.00010804939063241255 - sys_4: -0.00017717268964448525 - sys_5: -0.00018225386444830147 - sys_6: 0.0003777774222383493 - sys_7: -4.7532964458115014e-05 - sys_8: -0.00041790778358552873 - sys_9: -0.00047349284212273054 - sys_10: 0.0008170279142312218 - sys_11: 0.0010037323631447099 - sys_12: -0.009353639810785618 - sys_13: -0.0006460541145013808 - sys_14: -0.00013757884068625205 - sys_15: -6.202290310356274e-05 - sys_16: -0.0011296728797818797 - sys_17: -0.0003526254263955163 - sys_18: -0.0002568240635315559 - sys_19: -3.360820780054439e-05 - sys_20: -0.00015265329853261146 - sys_21: -8.00956101682278e-05 - sys_22: 9.391537588894506e-05 - sys_23: 2.7176408375105872e-05 - sys_24: -8.367470579952611e-05 - sys_25: 0.0001306850954495544 - sys_26: 0.00034165963201746437 - sys_27: 0.00017734109474647452 - sys_28: 0.00012609508164140252 - sys_29: 2.6657079091704254e-05 - sys_30: 1.0361347665310448e-05 - sys_31: 7.584757415135803e-07 - sys_32: 1.391458257825126e-06 - sys_33: 2.578953822470121e-06 - sys_34: 1.3565673369322691e-05 - sys_35: -2.2701612295110926e-05 - sys_36: -1.845952973330845e-05 - sys_37: 9.82203167051638e-05 - sys_38: -0.0001137123192139906 - sys_39: 2.5546137304643298e-05 - sys_40: -2.5020145154184086e-06 - sys_41: -1.2752823705756263e-06 - sys_42: 3.421793347247303e-06 - sys_43: 4.379070386114919e-05 - sys_44: 5.301075769651111e-06 - sys_45: 1.951603788886846e-05 - sys_46: 1.2082416060686341e-05 - sys_47: 5.0816591119917456e-06 - sys_48: -9.832979228622669e-07 - sys_49: -7.422147827772583e-05 - sys_50: -1.3494053526098511e-05 - sys_51: 3.9157639186773685e-05 - sys_52: -2.69508654380729e-06 - sys_53: -2.6704751953205173e-07 - sys_54: -3.3440915614686695e-05 - sys_55: -1.2507990012323256e-05 - sys_56: -6.062182294228577e-05 - sys_57: -3.752695578168646e-05 - sys_58: -4.606468177940913e-05 - sys_59: -4.21706220911378e-06 - sys_60: 6.988389415647689e-06 - sys_61: -6.1917684819949665e-06 - sys_62: 8.793249882931091e-06 + sys_0: 9.608542661026645e-05 + sys_1: -6.64321598249499e-05 + sys_2: -9.623739029659754e-05 + sys_3: -0.00010804939063241 + sys_4: 0.000177172689644486 + sys_5: 0.00018225386444830773 + sys_6: -0.0003777774222383486 + sys_7: -4.7532964458123775e-05 + sys_8: 0.0004179077835855241 + sys_9: 0.0004734928421227293 + sys_10: -0.0008170279142312073 + sys_11: -0.0010037323631446621 + sys_12: -0.009353639810785625 + sys_13: 0.0006460541145013732 + sys_14: 0.000137578840686238 + sys_15: 6.202290310354084e-05 + sys_16: 0.0011296728797818897 + sys_17: 0.00035262542639551554 + sys_18: 0.0002568240635315549 + sys_19: 3.360820780055529e-05 + sys_20: 0.00015265329853260943 + sys_21: 8.009561016823237e-05 + sys_22: -9.391537588894451e-05 + sys_23: -2.7176408375103396e-05 + sys_24: 8.367470579952393e-05 + sys_25: -0.0001306850954495585 + sys_26: -0.00034165963201746225 + sys_27: -0.00017734109474647645 + sys_28: -0.00012609508164140032 + sys_29: -2.665707909170313e-05 + sys_30: 1.0361347665308788e-05 + sys_31: -7.584757415128892e-07 + sys_32: -1.3914582578247175e-06 + sys_33: -2.5789538224691527e-06 + sys_34: -2.5020145154188347e-06 + sys_35: 1.2752823705752572e-06 + sys_36: -3.421793347246788e-06 + sys_37: -1.3565673369320941e-05 + sys_38: -2.2701612295111845e-05 + sys_39: -1.8459529733310965e-05 + sys_40: -9.822031670516472e-05 + sys_41: -0.00011371231921398762 + sys_42: -2.5546137304643582e-05 + sys_43: -4.379070386114988e-05 + sys_44: -5.301075769651353e-06 + sys_45: -1.9516037888867598e-05 + sys_46: 1.2082416060690136e-05 + sys_47: 5.081659111991232e-06 + sys_48: 9.832979228605034e-07 + sys_49: 7.42214782777268e-05 + sys_50: 1.349405352609855e-05 + sys_51: -3.915763918677453e-05 + sys_52: -2.6950865438054693e-06 + sys_53: -2.67047519532542e-07 + sys_54: -3.3440915614687264e-05 + sys_55: -1.250799001232248e-05 + sys_56: -6.062182294228672e-05 + sys_57: -3.752695578168338e-05 + sys_58: -4.6064681779413366e-05 + sys_59: -4.217062209114723e-06 + sys_60: 6.988389415647484e-06 + sys_61: -6.1917684819950825e-06 + sys_62: 8.79324988293237e-06 - pol: 0.00079872 lumi: 0.00047 - sys_0: 0.00020828164634531122 - sys_1: -0.0001629983691797878 - sys_2: -0.00026097907674231476 - sys_3: -0.00017728187348294057 - sys_4: -0.0007318139604624365 - sys_5: -0.001336016870607783 - sys_6: 0.01134189719437687 - sys_7: -0.010893887160835296 - sys_8: 0.003160160573561051 - sys_9: 0.00102591166104331 - sys_10: -0.00025764655533844997 - sys_11: -0.0001836286092021784 - sys_12: 0.0003026309557545637 - sys_13: -5.805309156867345e-05 - sys_14: 6.976800013811649e-05 - sys_15: 7.739527738736168e-05 - sys_16: -0.000696857002163877 - sys_17: -0.00011896926818818736 - sys_18: -8.330615024466177e-05 - sys_19: -2.9873549296650933e-05 - sys_20: -9.4128064317411e-05 - sys_21: -4.5513278807872734e-05 - sys_22: 4.5548108696744685e-05 - sys_23: 1.082908677231852e-05 - sys_24: -3.658549282056457e-05 - sys_25: 6.894012452826903e-05 - sys_26: 0.00019455047640814485 - sys_27: 9.716096546629991e-05 - sys_28: 9.311411457146626e-05 - sys_29: 1.6954902994759347e-05 - sys_30: 1.3063807580547813e-05 - sys_31: 3.8689771445204025e-06 - sys_32: -6.816058351542274e-06 - sys_33: 4.181735918039542e-07 - sys_34: 6.307534345072219e-06 - sys_35: 4.4571378100121733e-07 - sys_36: -5.260693974904883e-06 - sys_37: 3.122279097331664e-05 - sys_38: -4.010112712457814e-05 - sys_39: 9.405993291975583e-06 - sys_40: -1.7469072258645172e-06 - sys_41: -2.746906041109967e-07 - sys_42: 4.1116292790491104e-07 - sys_43: 1.5652508785805724e-05 - sys_44: 4.0038681713131495e-06 - sys_45: 5.625627435295245e-06 - sys_46: 5.8736518278642676e-06 - sys_47: 2.6406083421706633e-06 - sys_48: -5.811778751843545e-07 - sys_49: -4.150449167021335e-05 - sys_50: -7.713000919091103e-06 - sys_51: 2.3165476173916093e-05 - sys_52: -1.6357571627470196e-06 - sys_53: -2.139330273682871e-07 - sys_54: -2.0878274272225315e-05 - sys_55: -6.051742935503965e-06 - sys_56: -2.9823423334172603e-05 - sys_57: -1.5329588714044787e-05 - sys_58: -1.1344355075453654e-05 - sys_59: -4.8012311165938155e-06 - sys_60: 1.5328014661219598e-06 - sys_61: -6.214037774518113e-06 - sys_62: 1.0322582318219684e-05 + sys_0: 0.00020828164634531613 + sys_1: -0.0001629983691797907 + sys_2: -0.00026097907674231573 + sys_3: -0.00017728187348293014 + sys_4: 0.0007318139604624546 + sys_5: 0.001336016870607773 + sys_6: -0.011341897194376463 + sys_7: -0.01089388716083571 + sys_8: -0.0031601605735609942 + sys_9: -0.001025911661043361 + sys_10: 0.0002576465553384494 + sys_11: 0.00018362860920218468 + sys_12: 0.00030263095575456584 + sys_13: 5.8053091568673076e-05 + sys_14: -6.976800013811566e-05 + sys_15: -7.739527738737715e-05 + sys_16: 0.0006968570021638776 + sys_17: 0.00011896926818818836 + sys_18: 8.330615024466176e-05 + sys_19: 2.987354929665822e-05 + sys_20: 9.412806431740994e-05 + sys_21: 4.551327880787219e-05 + sys_22: -4.5548108696745566e-05 + sys_23: -1.0829086772317412e-05 + sys_24: 3.658549282056332e-05 + sys_25: -6.894012452827184e-05 + sys_26: -0.0001945504764081444 + sys_27: -9.7160965466301e-05 + sys_28: -9.311411457146567e-05 + sys_29: -1.695490299475834e-05 + sys_30: 1.3063807580547728e-05 + sys_31: -3.8689771445202e-06 + sys_32: 6.8160583515424205e-06 + sys_33: -4.1817359180364543e-07 + sys_34: -1.7469072258648266e-06 + sys_35: 2.7469060411095443e-07 + sys_36: -4.111629279048478e-07 + sys_37: -6.30753434507192e-06 + sys_38: 4.457137810008553e-07 + sys_39: -5.260693974905045e-06 + sys_40: -3.122279097331721e-05 + sys_41: -4.0101127124578104e-05 + sys_42: -9.405993291975754e-06 + sys_43: -1.5652508785806023e-05 + sys_44: -4.0038681713132274e-06 + sys_45: -5.625627435294636e-06 + sys_46: 5.873651827865267e-06 + sys_47: 2.6406083421702737e-06 + sys_48: 5.811778751836584e-07 + sys_49: 4.150449167021374e-05 + sys_50: 7.713000919091289e-06 + sys_51: -2.3165476173916675e-05 + sys_52: -1.6357571627449205e-06 + sys_53: -2.1393302736939653e-07 + sys_54: -2.0878274272225664e-05 + sys_55: -6.051742935503869e-06 + sys_56: -2.9823423334173047e-05 + sys_57: -1.532958871404336e-05 + sys_58: -1.1344355075455355e-05 + sys_59: -4.801231116594149e-06 + sys_60: 1.5328014661216898e-06 + sys_61: -6.21403777451771e-06 + sys_62: 1.0322582318220276e-05 - pol: 0.00322368 lumi: 0.00047 - sys_0: 0.003392490010581309 - sys_1: -0.0028028988787755474 - sys_2: -0.02915139875708489 - sys_3: 0.00474549156642259 - sys_4: 0.0007869933756340196 - sys_5: 0.00043386169626665925 - sys_6: -0.0005899715224549985 - sys_7: 0.000282861297266332 - sys_8: 0.0011340102775581418 - sys_9: 0.0005184520047096162 - sys_10: -0.00012999578902164172 - sys_11: -6.201448659967672e-05 - sys_12: 9.334636087758384e-05 - sys_13: -0.0001669580929215138 - sys_14: -8.448031918754116e-05 - sys_15: 4.374439585731023e-06 - sys_16: -0.00027510299019308773 - sys_17: -7.910356449242874e-05 - sys_18: -6.597560721570609e-05 - sys_19: -3.7134906518373985e-05 - sys_20: -0.00012869074452446494 - sys_21: -7.701098320069479e-05 - sys_22: 9.280021270892215e-05 - sys_23: -4.914444960446145e-05 - sys_24: 2.2308769976330576e-05 - sys_25: -3.718039682970419e-05 - sys_26: 7.678924082452895e-05 - sys_27: 6.099559903098233e-05 - sys_28: 7.825087442627804e-05 - sys_29: 5.116497921899863e-06 - sys_30: 1.6894466728065387e-05 - sys_31: 1.3031895449970823e-05 - sys_32: -7.145079583873466e-06 - sys_33: -1.2917789718719038e-07 - sys_34: 8.519897129217208e-06 - sys_35: 1.7188860268738155e-05 - sys_36: -1.214448255356214e-06 - sys_37: 6.052003214005025e-07 - sys_38: -8.451580206093124e-06 - sys_39: 2.244707727740091e-06 - sys_40: -1.5038476361208787e-06 - sys_41: -7.142748733255603e-08 - sys_42: -1.1980789982891567e-07 - sys_43: -2.021771021198976e-06 - sys_44: 6.489165299676987e-06 - sys_45: 3.0998064690588608e-06 - sys_46: 7.605833129393273e-06 - sys_47: 1.3309105204630003e-07 - sys_48: -5.393777959814655e-07 - sys_49: -4.102499093238052e-05 - sys_50: -8.874819823685077e-06 - sys_51: 2.889011600747734e-05 - sys_52: -9.367763922632645e-07 - sys_53: 2.1121176873118165e-06 - sys_54: -2.0002495422165178e-05 - sys_55: -6.268854935306376e-06 - sys_56: -3.3140127259812115e-05 - sys_57: -1.2663278438857749e-05 - sys_58: -6.315720022839993e-07 - sys_59: -7.844151169494287e-06 - sys_60: -1.3178086868407508e-06 - sys_61: -8.182821651827098e-06 - sys_62: 1.2705398803363081e-05 + sys_0: 0.0033924900105812865 + sys_1: -0.0028028988787757434 + sys_2: -0.029151398757084886 + sys_3: 0.004745491566422673 + sys_4: -0.0007869933756340149 + sys_5: -0.000433861696266657 + sys_6: 0.0005899715224549843 + sys_7: 0.0002828612972663543 + sys_8: -0.0011340102775581325 + sys_9: -0.0005184520047096283 + sys_10: 0.00012999578902163865 + sys_11: 6.201448659967911e-05 + sys_12: 9.33463608775845e-05 + sys_13: 0.00016695809292151207 + sys_14: 8.448031918754158e-05 + sys_15: -4.374439585736681e-06 + sys_16: 0.00027510299019308854 + sys_17: 7.910356449242864e-05 + sys_18: 6.597560721570523e-05 + sys_19: 3.713490651837707e-05 + sys_20: 0.00012869074452446483 + sys_21: 7.701098320069474e-05 + sys_22: -9.280021270892203e-05 + sys_23: 4.914444960446199e-05 + sys_24: -2.2308769976330495e-05 + sys_25: 3.718039682970421e-05 + sys_26: -7.67892408245297e-05 + sys_27: -6.099559903098298e-05 + sys_28: -7.82508744262776e-05 + sys_29: -5.116497921899015e-06 + sys_30: 1.6894466728065055e-05 + sys_31: -1.3031895449970527e-05 + sys_32: 7.14507958387361e-06 + sys_33: 1.291778971874901e-07 + sys_34: -1.5038476361208436e-06 + sys_35: 7.14274873324868e-08 + sys_36: 1.1980789982894148e-07 + sys_37: -8.519897129217026e-06 + sys_38: 1.7188860268738263e-05 + sys_39: -1.2144482553550461e-06 + sys_40: -6.052003214011705e-07 + sys_41: -8.451580206093078e-06 + sys_42: -2.24470772774026e-06 + sys_43: 2.0217710211987013e-06 + sys_44: -6.489165299677059e-06 + sys_45: -3.0998064690581408e-06 + sys_46: 7.605833129393726e-06 + sys_47: 1.330910520459328e-07 + sys_48: 5.393777959808106e-07 + sys_49: 4.102499093238151e-05 + sys_50: 8.874819823684823e-06 + sys_51: -2.889011600747787e-05 + sys_52: -9.367763922619733e-07 + sys_53: 2.1121176873112884e-06 + sys_54: -2.0002495422165426e-05 + sys_55: -6.268854935306007e-06 + sys_56: -3.3140127259812366e-05 + sys_57: -1.2663278438855735e-05 + sys_58: -6.315720022858525e-07 + sys_59: -7.844151169494692e-06 + sys_60: -1.3178086868409697e-06 + sys_61: -8.182821651826988e-06 + sys_62: 1.2705398803363362e-05 diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_2JET_510GEV/uncertainties_C.yaml b/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_2JET_510GEV/uncertainties_C.yaml index 9d1e2d6d24..7308752eba 100644 --- a/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_2JET_510GEV/uncertainties_C.yaml +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_2JET_510GEV/uncertainties_C.yaml @@ -262,781 +262,781 @@ definitions: bins: - pol: 0.0007392 lumi: 0.00047 - sys_0: 7.001606375227786e-05 - sys_1: -6.90928071457631e-05 - sys_2: -0.0004953053378852825 - sys_3: -9.841261829746412e-05 - sys_4: -1.911387044186005e-05 - sys_5: -5.582293966839415e-05 - sys_6: 0.0002300294333676665 - sys_7: 4.985216371584429e-05 - sys_8: 0.00027307829893532566 - sys_9: 8.416549674254495e-06 - sys_10: 0.00019070318634097026 - sys_11: 0.0003964533543386842 - sys_12: -0.0003797411506518969 - sys_13: 0.0004925070153427741 - sys_14: 0.0074678861374904305 - sys_15: -0.0017317404403193485 - sys_16: 0.0014217567592267144 - sys_17: -0.0005549960885445198 - sys_18: -0.0002854136241417549 - sys_19: -8.335951976509057e-05 - sys_20: 3.032422964594624e-05 - sys_21: -0.00019145263482989896 - sys_22: 0.00015360939724363767 - sys_23: -8.613534611894422e-05 - sys_24: 2.2545649396131286e-05 - sys_25: -7.2074972006758815e-06 - sys_26: -4.2087592809184484e-05 - sys_27: 3.1148499600688796e-05 - sys_28: -2.262782707791944e-05 - sys_29: 3.607165760527488e-05 - sys_30: -8.446337864467791e-06 - sys_31: -4.288555756311902e-05 - sys_32: -5.673156947572965e-05 - sys_33: 1.5715308883129663e-05 - sys_34: -6.559213587377876e-06 - sys_35: 1.8279144825331885e-05 - sys_36: 2.4635802355406318e-05 - sys_37: -2.0145797143350776e-05 - sys_38: -8.548076286542155e-06 - sys_39: 7.299561606073626e-06 - sys_40: -1.4681957338210795e-06 - sys_41: 4.3433405580871867e-07 - sys_42: -1.595668677911695e-06 - sys_43: 2.2413448895055083e-05 - sys_44: 2.6935845196657875e-07 - sys_45: -3.3449157362233383e-06 - sys_46: -7.120787229247288e-07 - sys_47: -3.310476395265106e-07 - sys_48: 2.125842007509318e-06 - sys_49: 1.428811895324184e-05 - sys_50: 7.772899951808402e-06 - sys_51: -1.002110423635762e-05 - sys_52: -1.3995949274471143e-05 - sys_53: -3.2910658149625204e-06 - sys_54: -6.951957115464396e-06 - sys_55: -6.085161415647947e-07 - sys_56: 9.109542961034444e-06 - sys_57: 8.285583767299743e-06 - sys_58: -3.449151151981131e-06 - sys_59: -7.729892262484226e-08 - sys_60: -3.166273144746046e-06 - sys_61: -1.585032502481047e-06 - sys_62: 9.587184177680817e-06 + sys_0: 7.00160637523013e-05 + sys_1: -6.909280714576145e-05 + sys_2: -0.0004953053378852813 + sys_3: -9.841261829745107e-05 + sys_4: 1.9113870441860434e-05 + sys_5: 5.582293966839562e-05 + sys_6: -0.00023002943336768075 + sys_7: 4.9852163715832317e-05 + sys_8: -0.0002730782989353135 + sys_9: -8.41654967426027e-06 + sys_10: -0.00019070318634097812 + sys_11: -0.00039645335433868037 + sys_12: -0.0003797411506518624 + sys_13: -0.0004925070153427521 + sys_14: -0.007467886137490424 + sys_15: 0.0017317404403193858 + sys_16: -0.0014217567592266836 + sys_17: 0.0005549960885445169 + sys_18: 0.0002854136241417549 + sys_19: 8.335951976511158e-05 + sys_20: -3.0324229645947552e-05 + sys_21: 0.00019145263482990538 + sys_22: -0.00015360939724363428 + sys_23: 8.613534611894741e-05 + sys_24: -2.254564939613342e-05 + sys_25: 7.207497200675414e-06 + sys_26: 4.208759280918397e-05 + sys_27: -3.1148499600688586e-05 + sys_28: 2.2627827077918992e-05 + sys_29: -3.607165760527424e-05 + sys_30: -8.446337864466793e-06 + sys_31: 4.288555756311873e-05 + sys_32: 5.673156947572987e-05 + sys_33: -1.571530888312848e-05 + sys_34: -1.4681957338210225e-06 + sys_35: -4.3433405580868966e-07 + sys_36: 1.595668677911625e-06 + sys_37: 6.559213587377168e-06 + sys_38: 1.8279144825330706e-05 + sys_39: 2.463580235540852e-05 + sys_40: 2.014579714334959e-05 + sys_41: -8.548076286542674e-06 + sys_42: -7.299561606073921e-06 + sys_43: -2.2413448895054744e-05 + sys_44: -2.693584519664945e-07 + sys_45: 3.344915736223142e-06 + sys_46: -7.120787229252764e-07 + sys_47: -3.310476395264898e-07 + sys_48: -2.1258420075091096e-06 + sys_49: -1.4288118953242572e-05 + sys_50: -7.772899951808624e-06 + sys_51: 1.0021104236357634e-05 + sys_52: -1.3995949274471482e-05 + sys_53: -3.2910658149641124e-06 + sys_54: -6.951957115464093e-06 + sys_55: -6.085161415647004e-07 + sys_56: 9.109542961035052e-06 + sys_57: 8.285583767299357e-06 + sys_58: -3.449151151980571e-06 + sys_59: -7.729892262479967e-08 + sys_60: -3.1662731447459557e-06 + sys_61: -1.585032502481095e-06 + sys_62: 9.587184177680814e-06 - pol: 4.8e-05 lumi: 0.00047 - sys_0: 0.00013143172933847568 - sys_1: -8.281985671880959e-05 - sys_2: -0.0005250547965538259 - sys_3: -9.46968171119548e-05 - sys_4: -0.00010770368041230176 - sys_5: -6.450352918349286e-05 - sys_6: 0.00020456916721175848 - sys_7: 3.618925396029782e-05 - sys_8: 0.0002705651614929608 - sys_9: -0.0001283220354159711 - sys_10: 0.00016340076024127308 - sys_11: 0.00023364378402806164 - sys_12: -0.00020597405115164346 - sys_13: 0.00035818821108478334 - sys_14: 0.0001937872766478362 - sys_15: 0.0003044712317943815 - sys_16: -0.0003395320455626883 - sys_17: 0.000461558460367321 - sys_18: 0.0004084814479272697 - sys_19: 0.0001507973664177428 - sys_20: 0.00038297791493495896 - sys_21: 0.0007016071587140237 - sys_22: -0.0008810606501881292 - sys_23: 0.0007973144931928592 - sys_24: -0.00037333187160304556 - sys_25: 0.000902871120465164 - sys_26: -0.00019031954928143614 - sys_27: -0.0012348440907418545 - sys_28: -0.0015031528536107101 - sys_29: -0.0006041515146746228 - sys_30: -0.0019469657770161148 - sys_31: -0.001031045350900805 - sys_32: -0.0011081386420956638 - sys_33: 0.0003390949705626013 - sys_34: 0.000252702280936504 - sys_35: 0.0006799332225195856 - sys_36: 0.0002337141394557324 - sys_37: -0.00032246835499424246 - sys_38: -0.00013747124654966625 - sys_39: 4.5960513854626686e-07 - sys_40: -1.724584353725813e-05 - sys_41: 2.287886271335036e-06 - sys_42: -1.058269188837442e-05 - sys_43: -3.1391400356283714e-05 - sys_44: 4.170072206094199e-05 - sys_45: -3.836440592800812e-06 - sys_46: 4.2992943463214574e-05 - sys_47: -7.89902897006935e-06 - sys_48: -8.792590939306876e-06 - sys_49: -0.00039097537575358526 - sys_50: -4.99468734013866e-05 - sys_51: 0.0002749530135765607 - sys_52: -4.528805491006844e-05 - sys_53: -8.632300816890473e-07 - sys_54: -0.00021752747336918808 - sys_55: -3.6793560196027524e-05 - sys_56: -0.00019253229828759816 - sys_57: -4.5599138773183464e-05 - sys_58: -1.4109038480203988e-06 - sys_59: -7.425875842101122e-05 - sys_60: -3.396881238360739e-05 - sys_61: -7.048671922539977e-05 - sys_62: 0.0001526004491510443 + sys_0: 0.00013143172933847673 + sys_1: -8.281985671881321e-05 + sys_2: -0.0005250547965538272 + sys_3: -9.46968171119514e-05 + sys_4: 0.00010770368041230355 + sys_5: 6.450352918349111e-05 + sys_6: -0.0002045691672117633 + sys_7: 3.618925396028875e-05 + sys_8: -0.0002705651614929617 + sys_9: 0.00012832203541596467 + sys_10: -0.00016340076024126606 + sys_11: -0.00023364378402806343 + sys_12: -0.0002059740511516441 + sys_13: -0.00035818821108478215 + sys_14: -0.00019378727664783822 + sys_15: -0.00030447123179438995 + sys_16: 0.00033953204556268473 + sys_17: -0.00046155846036732286 + sys_18: -0.00040848144792726373 + sys_19: -0.00015079736641775322 + sys_20: -0.00038297791493495864 + sys_21: -0.0007016071587140195 + sys_22: 0.0008810606501881322 + sys_23: -0.000797314493192856 + sys_24: 0.00037333187160303326 + sys_25: -0.0009028711204651842 + sys_26: 0.00019031954928144763 + sys_27: 0.001234844090741873 + sys_28: 0.0015031528536107162 + sys_29: 0.000604151514674611 + sys_30: -0.001946965777016101 + sys_31: 0.0010310453509008025 + sys_32: 0.001108138642095662 + sys_33: -0.0003390949705625729 + sys_34: -1.7245843537258824e-05 + sys_35: -2.287886271336097e-06 + sys_36: 1.0582691888375089e-05 + sys_37: -0.00025270228093650333 + sys_38: 0.0006799332225195791 + sys_39: 0.00023371413945578328 + sys_40: 0.00032246835499421584 + sys_41: -0.00013747124654967107 + sys_42: -4.5960513854898144e-07 + sys_43: 3.139140035628263e-05 + sys_44: -4.1700722060941695e-05 + sys_45: 3.836440592804847e-06 + sys_46: 4.2992943463212866e-05 + sys_47: -7.89902897007156e-06 + sys_48: 8.792590939304309e-06 + sys_49: 0.0003909753757535917 + sys_50: 4.994687340138396e-05 + sys_51: -0.00027495301357656607 + sys_52: -4.5288054910053484e-05 + sys_53: -8.632300816981857e-07 + sys_54: -0.00021752747336919087 + sys_55: -3.6793560196026386e-05 + sys_56: -0.00019253229828759724 + sys_57: -4.559913877317194e-05 + sys_58: -1.4109038480302656e-06 + sys_59: -7.425875842101469e-05 + sys_60: -3.3968812383608827e-05 + sys_61: -7.048671922539622e-05 + sys_62: 0.00015260044915104494 - pol: 0.00018752 lumi: 0.00047 - sys_0: 6.258816803452525e-05 - sys_1: -5.2350254375657235e-05 - sys_2: -0.0005106609744399051 - sys_3: -8.920342220415298e-05 - sys_4: 7.811430781169459e-06 - sys_5: -1.0881194427765859e-05 - sys_6: 0.00019285831673104017 - sys_7: 2.9141746077335194e-05 - sys_8: 0.00018539211355771335 - sys_9: 4.225713249881108e-05 - sys_10: 4.3686805440057594e-05 - sys_11: 0.00019751142310154294 - sys_12: -0.00015608004142468162 - sys_13: 1.1158334653853439e-05 - sys_14: 0.00011242974087338891 - sys_15: 6.999470506332433e-05 - sys_16: -0.00022392757666138508 - sys_17: 0.00023602838533316547 - sys_18: 0.00016842569692892588 - sys_19: 2.651878347286638e-05 - sys_20: -0.0001024312051573141 - sys_21: 0.00017197261236627203 - sys_22: -0.00010357967421803214 - sys_23: 0.00023910032230968544 - sys_24: 4.160043124924832e-05 - sys_25: 0.00025506902212958833 - sys_26: 0.00023514573651720077 - sys_27: -0.0003993700244680658 - sys_28: -7.140832948277627e-05 - sys_29: -0.00028523896178932483 - sys_30: -0.0009380511500879831 - sys_31: 7.196898734372329e-05 - sys_32: -0.0005621080353053443 - sys_33: -0.0023840682573135464 - sys_34: -0.0002693161745794363 - sys_35: -0.0010974040291017232 - sys_36: 0.00026466168558893986 - sys_37: 2.684723245833295e-05 - sys_38: -0.00015877277241536678 - sys_39: -0.0002691698222654167 - sys_40: -1.700689232888407e-06 - sys_41: 6.310594251033206e-06 - sys_42: -1.1853049360263523e-05 - sys_43: -9.103154427900293e-05 - sys_44: -6.376469660391199e-05 - sys_45: -4.5469662819116604e-05 - sys_46: -8.027004788956218e-05 - sys_47: 8.189603588393727e-06 - sys_48: 2.1414148123342213e-06 - sys_49: 0.0006265828031488786 - sys_50: 0.0001506158830125649 - sys_51: -0.0004580108344053774 - sys_52: 9.166914552741015e-06 - sys_53: -4.431994975436612e-05 - sys_54: 0.0002549572153316357 - sys_55: 8.343670522767983e-05 - sys_56: 0.0004004159458674971 - sys_57: 0.00016225705630741916 - sys_58: -1.2970848013378371e-05 - sys_59: 0.00010557948584019075 - sys_60: 1.5271801496368417e-05 - sys_61: 8.973505877771678e-05 - sys_62: -0.0001381275304524508 + sys_0: 6.258816803452586e-05 + sys_1: -5.2350254375660305e-05 + sys_2: -0.0005106609744399047 + sys_3: -8.920342220415045e-05 + sys_4: -7.811430781168402e-06 + sys_5: 1.0881194427764151e-05 + sys_6: -0.000192858316731044 + sys_7: 2.914174607732803e-05 + sys_8: -0.00018539211355771105 + sys_9: -4.2257132498815026e-05 + sys_10: -4.3686805440052004e-05 + sys_11: -0.00019751142310154334 + sys_12: -0.00015608004142468317 + sys_13: -1.1158334653853544e-05 + sys_14: -0.00011242974087338977 + sys_15: -6.999470506332918e-05 + sys_16: 0.00022392757666138565 + sys_17: -0.0002360283853331663 + sys_18: -0.00016842569692892471 + sys_19: -2.6518783472871272e-05 + sys_20: 0.00010243120515731501 + sys_21: -0.00017197261236627477 + sys_22: 0.00010357967421803294 + sys_23: -0.00023910032230967923 + sys_24: -4.1600431249255586e-05 + sys_25: -0.0002550690221295962 + sys_26: -0.00023514573651719977 + sys_27: 0.00039937002446806887 + sys_28: 7.14083294827765e-05 + sys_29: 0.00028523896178933177 + sys_30: -0.0009380511500879842 + sys_31: -7.196898734372205e-05 + sys_32: 0.0005621080353052738 + sys_33: 0.0023840682573135668 + sys_34: -1.7006892328900114e-06 + sys_35: -6.3105942510317525e-06 + sys_36: 1.1853049360265366e-05 + sys_37: 0.00026931617457945774 + sys_38: -0.001097404029101728 + sys_39: 0.00026466168558884575 + sys_40: -2.684723245831247e-05 + sys_41: -0.00015877277241536103 + sys_42: 0.0002691698222654151 + sys_43: 9.103154427900766e-05 + sys_44: 6.376469660391325e-05 + sys_45: 4.5469662819107286e-05 + sys_46: -8.027004788956909e-05 + sys_47: 8.189603588398125e-06 + sys_48: -2.1414148123248065e-06 + sys_49: -0.0006265828031488922 + sys_50: -0.00015061588301256286 + sys_51: 0.00045801083440538524 + sys_52: 9.166914552728668e-06 + sys_53: -4.4319949754358066e-05 + sys_54: 0.0002549572153316408 + sys_55: 8.343670522767642e-05 + sys_56: 0.0004004159458674995 + sys_57: 0.00016225705630739566 + sys_58: -1.2970848013356474e-05 + sys_59: 0.00010557948584019492 + sys_60: 1.527180149637088e-05 + sys_61: 8.973505877771258e-05 + sys_62: -0.00013812753045245221 - pol: 1.1520000000000002e-05 lumi: 0.00047 - sys_0: 7.418936223885843e-05 - sys_1: -6.763828877847142e-05 - sys_2: -0.0005234115566064432 - sys_3: -8.822246852368859e-05 - sys_4: -8.45085836484142e-06 - sys_5: -3.423502534835969e-05 - sys_6: 0.0001937942822456403 - sys_7: 2.7546682636806596e-05 - sys_8: 0.00020349318386983452 - sys_9: 1.691376363989759e-05 - sys_10: 9.387091031350457e-05 - sys_11: 0.00019804704809747346 - sys_12: -0.00016410358110724034 - sys_13: 6.47291346043537e-05 - sys_14: 0.0001359331217962008 - sys_15: 0.0001576840939711945 - sys_16: -0.00023387241375634308 - sys_17: 0.0002690465548209305 - sys_18: 0.00020283282760982053 - sys_19: 5.072262485481399e-05 - sys_20: -3.368801582746112e-05 - sys_21: 0.000308378638079432 - sys_22: -0.00030039475786320307 - sys_23: 0.0002737480427972201 - sys_24: -7.159792175352847e-05 - sys_25: 0.0001686319455488528 - sys_26: 0.0001569640371282437 - sys_27: -0.0003588970647009643 - sys_28: -0.0001212005691028456 - sys_29: -0.00034855979145875945 - sys_30: -0.0004824012851068021 - sys_31: 9.277638733254206e-05 - sys_32: 0.00038424998363060343 - sys_33: 0.0002456110213311881 - sys_34: 0.0005877830973147748 - sys_35: 0.0006101750557216591 - sys_36: -0.001146315902583387 - sys_37: 0.000543684245123575 - sys_38: 0.0008560826816330921 - sys_39: 0.0009324494589830698 - sys_40: 8.427975253091433e-06 - sys_41: 7.112025673564607e-06 - sys_42: -1.277951346580667e-05 - sys_43: 0.0013515502630616692 - sys_44: -3.580339868377465e-05 - sys_45: -4.603598033561961e-05 - sys_46: -5.332481556896442e-05 - sys_47: 3.6165700693300574e-06 - sys_48: 1.3511713497046759e-05 - sys_49: 0.0009603581686240861 - sys_50: 0.00017396524547785264 - sys_51: -0.0006420036090434317 - sys_52: -2.2778813077740957e-05 - sys_53: -0.0001573441318573025 - sys_54: 0.00010623666126012672 - sys_55: 6.897731178989958e-05 - sys_56: 0.0003418268782324093 - sys_57: 0.00017889995573545385 - sys_58: -5.339705827426779e-05 - sys_59: 9.407513773916737e-05 - sys_60: -6.986732421353581e-06 - sys_61: 4.26235534548101e-06 - sys_62: -2.2219442598080644e-05 + sys_0: 7.418936223885892e-05 + sys_1: -6.763828877847458e-05 + sys_2: -0.000523411556606443 + sys_3: -8.822246852368655e-05 + sys_4: 8.450858364842163e-06 + sys_5: 3.4235025348358e-05 + sys_6: -0.00019379428224564315 + sys_7: 2.7546682636798664e-05 + sys_8: -0.00020349318386983354 + sys_9: -1.6913763639900773e-05 + sys_10: -9.387091031349958e-05 + sys_11: -0.0001980470480974747 + sys_12: -0.0001641035811072406 + sys_13: -6.472913460435408e-05 + sys_14: -0.0001359331217962012 + sys_15: -0.000157684093971202 + sys_16: 0.00023387241375634102 + sys_17: -0.00026904655482092943 + sys_18: -0.00020283282760981985 + sys_19: -5.072262485482017e-05 + sys_20: 3.368801582746196e-05 + sys_21: -0.0003083786380794307 + sys_22: 0.00030039475786320215 + sys_23: -0.00027374804279721963 + sys_24: 7.159792175352404e-05 + sys_25: -0.00016863194554886008 + sys_26: -0.00015696403712824175 + sys_27: 0.00035889706470096735 + sys_28: 0.00012120056910284649 + sys_29: 0.0003485597914587549 + sys_30: -0.00048240128510680154 + sys_31: -9.277638733253948e-05 + sys_32: -0.0003842499836305953 + sys_33: -0.00024561102133120185 + sys_34: 8.427975253091591e-06 + sys_35: -7.112025673563961e-06 + sys_36: 1.2779513465806585e-05 + sys_37: -0.0005877830973147435 + sys_38: 0.0006101750557217228 + sys_39: -0.0011463159025833511 + sys_40: -0.0005436842451235582 + sys_41: 0.0008560826816331103 + sys_42: -0.0009324494589830638 + sys_43: -0.0013515502630616668 + sys_44: 3.580339868377561e-05 + sys_45: 4.60359803356146e-05 + sys_46: -5.332481556897155e-05 + sys_47: 3.616570069331408e-06 + sys_48: -1.3511713497037968e-05 + sys_49: -0.000960358168624108 + sys_50: -0.00017396524547785293 + sys_51: 0.0006420036090434448 + sys_52: -2.277881307773414e-05 + sys_53: -0.0001573441318573008 + sys_54: 0.00010623666126013494 + sys_55: 6.897731178989653e-05 + sys_56: 0.0003418268782324149 + sys_57: 0.00017889995573543252 + sys_58: -5.339705827425121e-05 + sys_59: 9.407513773916869e-05 + sys_60: -6.9867324213508674e-06 + sys_61: 4.26235534548004e-06 + sys_62: -2.221944259808132e-05 - pol: 0.00041920000000000005 lumi: 0.00047 - sys_0: 7.266269256871031e-05 - sys_1: -6.668752863730982e-05 - sys_2: -0.0005290635403767682 - sys_3: -8.507247074800801e-05 - sys_4: -6.796434200300843e-06 - sys_5: -3.0729964760595736e-05 - sys_6: 0.00019684857723024278 - sys_7: 2.4614416068670536e-05 - sys_8: 0.00020480291997240492 - sys_9: 2.174142815973174e-05 - sys_10: 8.531712383071524e-05 - sys_11: 0.0001978964263651952 - sys_12: -0.00016777896057665808 - sys_13: 5.4210368516177525e-05 - sys_14: 0.00013439830767632895 - sys_15: 0.00014664228818819333 - sys_16: -0.00024155336974717508 - sys_17: 0.0002726645412126165 - sys_18: 0.00021045361315293092 - sys_19: 4.842598631429288e-05 - sys_20: -5.5332329206155004e-05 - sys_21: 0.0003017538893579784 - sys_22: -0.00028203086806765276 - sys_23: 0.00029465962123008903 - sys_24: -5.5161995180079954e-05 - sys_25: 0.0002075964723238678 - sys_26: 0.00019788882368530368 - sys_27: -0.0004328110355681543 - sys_28: -0.00011590124390913201 - sys_29: -0.00042398608928927373 - sys_30: -0.0007213678992483857 - sys_31: 0.0001498682362296946 - sys_32: 0.0008439934258460834 - sys_33: 0.001531485333350271 - sys_34: -0.0016684275715622466 - sys_35: -0.001006642577702211 - sys_36: 0.0010216689494093358 - sys_37: -0.0002700641892668676 - sys_38: -0.00011391011484362006 - sys_39: -6.580331094721269e-05 - sys_40: 1.9454963244178712e-05 - sys_41: 3.299760551612971e-06 - sys_42: -2.9515786860960843e-06 - sys_43: 0.0002463674800042051 - sys_44: -3.709492758261781e-05 - sys_45: -3.145162117352933e-05 - sys_46: -5.022559623058626e-05 - sys_47: 3.931322004769909e-06 - sys_48: 1.5785304320549902e-05 - sys_49: 0.0005186515652460012 - sys_50: 8.452637006809171e-05 - sys_51: -0.0003822017253553532 - sys_52: -4.804844208748412e-07 - sys_53: -8.513521603697567e-05 - sys_54: 0.00010524967650997966 - sys_55: 5.319208418878956e-05 - sys_56: 0.00028599106819133326 - sys_57: 0.00013294024358649753 - sys_58: -3.4018930155434574e-05 - sys_59: 7.908848077159286e-05 - sys_60: 4.370532277440167e-06 - sys_61: 1.577984302699058e-05 - sys_62: -4.724021431847364e-05 + sys_0: 7.266269256871186e-05 + sys_1: -6.66875286373122e-05 + sys_2: -0.0005290635403767686 + sys_3: -8.507247074800555e-05 + sys_4: 6.7964342003009095e-06 + sys_5: 3.072996476059488e-05 + sys_6: -0.0001968485772302453 + sys_7: 2.461441606866256e-05 + sys_8: -0.0002048029199724041 + sys_9: -2.1741428159734572e-05 + sys_10: -8.53171238307111e-05 + sys_11: -0.00019789642636519657 + sys_12: -0.00016777896057665892 + sys_13: -5.4210368516178386e-05 + sys_14: -0.0001343983076763288 + sys_15: -0.0001466422881882011 + sys_16: 0.00024155336974717419 + sys_17: -0.0002726645412126161 + sys_18: -0.00021045361315292894 + sys_19: -4.8425986314298814e-05 + sys_20: 5.53323292061553e-05 + sys_21: -0.0003017538893579765 + sys_22: 0.00028203086806765206 + sys_23: -0.0002946596212300883 + sys_24: 5.516199518007646e-05 + sys_25: -0.00020759647232387377 + sys_26: -0.00019788882368529964 + sys_27: 0.0004328110355681593 + sys_28: 0.00011590124390913482 + sys_29: 0.0004239860892892686 + sys_30: -0.0007213678992483864 + sys_31: -0.0001498682362297 + sys_32: -0.000843993425846057 + sys_33: -0.001531485333350309 + sys_34: 1.9454963244178458e-05 + sys_35: -3.299760551611009e-06 + sys_36: 2.9515786860950822e-06 + sys_37: 0.00166842757156217 + sys_38: -0.0010066425777023043 + sys_39: 0.0010216689494093158 + sys_40: 0.0002700641892668675 + sys_41: -0.00011391011484363909 + sys_42: 6.580331094721292e-05 + sys_43: -0.00024636748000420034 + sys_44: 3.7094927582617196e-05 + sys_45: 3.145162117352435e-05 + sys_46: -5.022559623059131e-05 + sys_47: 3.9313220047729435e-06 + sys_48: -1.5785304320543366e-05 + sys_49: -0.0005186515652460096 + sys_50: -8.452637006808781e-05 + sys_51: 0.0003822017253553622 + sys_52: -4.804844208723589e-07 + sys_53: -8.51352160369708e-05 + sys_54: 0.00010524967650998477 + sys_55: 5.319208418878765e-05 + sys_56: 0.00028599106819133683 + sys_57: 0.0001329402435864803 + sys_58: -3.401893015541966e-05 + sys_59: 7.908848077159331e-05 + sys_60: 4.370532277441508e-06 + sys_61: 1.577984302698698e-05 + sys_62: -4.724021431847485e-05 - pol: 0.00062016 lumi: 0.00047 - sys_0: 7.297252897007149e-05 - sys_1: -6.401858779153265e-05 - sys_2: -0.000535302223353814 - sys_3: -8.688549026655087e-05 - sys_4: -4.732419036869361e-06 - sys_5: -2.70220776917287e-05 - sys_6: 0.0002020551876086632 - sys_7: 2.808446774859432e-05 - sys_8: 0.00021063444161512713 - sys_9: 2.563278168806982e-05 - sys_10: 8.280294267497223e-05 - sys_11: 0.00021198510714174484 - sys_12: -0.00018295432012624735 - sys_13: 5.568474741631039e-05 - sys_14: 0.00014608224464204606 - sys_15: 0.00015606862018563238 - sys_16: -0.0002786746775355743 - sys_17: 0.0003259989550701255 - sys_18: 0.000258298120514405 - sys_19: 5.185681526339024e-05 - sys_20: -7.354725844115943e-05 - sys_21: 0.00040564952652236423 - sys_22: -0.00039675586029557837 - sys_23: 0.0004988140521713081 - sys_24: -6.96293712304527e-05 - sys_25: 0.0004988959085724767 - sys_26: 0.0005467443934972696 - sys_27: -0.0017957080950213875 - sys_28: -0.0017364122135015347 - sys_29: 0.0022420475376156357 - sys_30: 0.0017788210781796915 - sys_31: -0.00011650677698652559 - sys_32: -0.00010433186766659575 - sys_33: -3.6543516708684004e-05 - sys_34: -8.193995869177321e-05 - sys_35: -9.797705656938043e-05 - sys_36: 0.00010955103507907676 - sys_37: -2.0783803577374835e-05 - sys_38: -2.433778804169778e-05 - sys_39: -2.4730710253048763e-05 - sys_40: 2.0569401777718374e-05 - sys_41: -1.6176845303957001e-06 - sys_42: 5.528055882567409e-06 - sys_43: 4.079914505711156e-05 - sys_44: -2.4242630237281307e-05 - sys_45: -1.1170616563451854e-05 - sys_46: -3.0261857039517073e-05 - sys_47: 1.5594575328040907e-06 - sys_48: 1.0200032845527038e-05 - sys_49: 0.0001891930804315544 - sys_50: 2.9102743887367917e-05 - sys_51: -0.00014424937177043239 - sys_52: 1.4508022064078994e-06 - sys_53: -2.9011115746800437e-05 - sys_54: 5.618862156072359e-05 - sys_55: 2.3123278080200358e-05 - sys_56: 0.0001521426764014539 - sys_57: 6.44079478118753e-05 - sys_58: -1.7989523421891553e-05 - sys_59: 4.046051128745909e-05 - sys_60: 8.67975911339031e-06 - sys_61: 1.6647413205691914e-05 - sys_62: -3.072385035821356e-05 + sys_0: 7.297252897007153e-05 + sys_1: -6.401858779153633e-05 + sys_2: -0.0005353022233538143 + sys_3: -8.688549026654908e-05 + sys_4: 4.732419036869896e-06 + sys_5: 2.7022077691728074e-05 + sys_6: -0.00020205518760866545 + sys_7: 2.8084467748586826e-05 + sys_8: -0.00021063444161512594 + sys_9: -2.5632781688072267e-05 + sys_10: -8.280294267496762e-05 + sys_11: -0.00021198510714174574 + sys_12: -0.00018295432012624757 + sys_13: -5.568474741631035e-05 + sys_14: -0.0001460822446420467 + sys_15: -0.00015606862018564086 + sys_16: 0.0002786746775355727 + sys_17: -0.0003259989550701233 + sys_18: -0.00025829812051440473 + sys_19: -5.185681526339756e-05 + sys_20: 7.354725844115951e-05 + sys_21: -0.00040564952652236055 + sys_22: 0.0003967558602955758 + sys_23: -0.0004988140521713013 + sys_24: 6.962937123044618e-05 + sys_25: -0.0004988959085724942 + sys_26: -0.000546744393497255 + sys_27: 0.001795708095021386 + sys_28: 0.0017364122135015096 + sys_29: -0.002242047537615649 + sys_30: 0.0017788210781797115 + sys_31: 0.00011650677698651571 + sys_32: 0.00010433186766659846 + sys_33: 3.6543516708690583e-05 + sys_34: 2.056940177771897e-05 + sys_35: 1.6176845303969558e-06 + sys_36: -5.5280558825686085e-06 + sys_37: 8.193995869177309e-05 + sys_38: -9.797705656938847e-05 + sys_39: 0.00010955103507907105 + sys_40: 2.0783803577374165e-05 + sys_41: -2.4337788041698822e-05 + sys_42: 2.4730710253049373e-05 + sys_43: -4.079914505711017e-05 + sys_44: 2.4242630237281395e-05 + sys_45: 1.1170616563448966e-05 + sys_46: -3.026185703951881e-05 + sys_47: 1.5594575328058065e-06 + sys_48: -1.0200032845524347e-05 + sys_49: -0.00018919308043155857 + sys_50: -2.9102743887366274e-05 + sys_51: 0.00014424937177043548 + sys_52: 1.4508022064097487e-06 + sys_53: -2.901111574679972e-05 + sys_54: 5.618862156072565e-05 + sys_55: 2.312327808019939e-05 + sys_56: 0.00015214267640145578 + sys_57: 6.440794781186611e-05 + sys_58: -1.7989523421883147e-05 + sys_59: 4.0460511287460065e-05 + sys_60: 8.679759113390924e-06 + sys_61: 1.6647413205691053e-05 + sys_62: -3.0723850358214146e-05 - pol: 0.00052288 lumi: 0.00047 - sys_0: 7.546837473361099e-05 - sys_1: -6.615372118783776e-05 - sys_2: -0.0005388539375312818 - sys_3: -8.438776023374818e-05 - sys_4: -7.95384585453406e-06 - sys_5: -2.6323783754122934e-05 - sys_6: 0.00020747926006464427 - sys_7: 2.7706832710603127e-05 - sys_8: 0.00021863309129712728 - sys_9: 2.14563950076666e-05 - sys_10: 8.857645871788631e-05 - sys_11: 0.00022398244551281114 - sys_12: -0.00019403785753487328 - sys_13: 7.048752550239047e-05 - sys_14: 0.0001593897832763441 - sys_15: 0.00017462759087633327 - sys_16: -0.00031394112723781434 - sys_17: 0.0003855953594007185 - sys_18: 0.0003089420049386446 - sys_19: 5.998642555113908e-05 - sys_20: -8.211171639482252e-05 - sys_21: 0.0005745503253848043 - sys_22: -0.0006350772385115232 - sys_23: 0.0010102460383303795 - sys_24: -0.00014910124623325287 - sys_25: 0.0026357812921172755 - sys_26: -0.0028485189939411147 - sys_27: 0.0015317867768089057 - sys_28: 0.00014267291012354648 - sys_29: 0.00038904721137594686 - sys_30: 0.0005199321195880493 - sys_31: -5.5682339379330194e-05 - sys_32: -5.0708805573918556e-05 - sys_33: -2.051799193158439e-05 - sys_34: -4.9376001125278394e-05 - sys_35: -6.621039858870347e-05 - sys_36: 6.404150602079221e-05 - sys_37: 4.895737047341309e-06 - sys_38: -2.0328687430545456e-05 - sys_39: -1.5849616857136914e-05 - sys_40: 2.1857670882421307e-05 - sys_41: -7.0139820189505555e-06 - sys_42: 1.548061285302676e-05 - sys_43: 2.687529577194421e-05 - sys_44: -1.9431124785134836e-05 - sys_45: 5.108425709429291e-06 - sys_46: -2.1014411465382656e-05 - sys_47: -1.6294627039082907e-06 - sys_48: 8.856276313702612e-06 - sys_49: 0.00013285211389147035 - sys_50: 2.0291811709687044e-05 - sys_51: -0.00010002211203854061 - sys_52: 1.6672489508630146e-06 - sys_53: -1.8658880673170853e-05 - sys_54: 4.417421733375295e-05 - sys_55: 1.4460789101883387e-05 - sys_56: 0.00011042902329575296 - sys_57: 4.262718141169575e-05 - sys_58: -2.331930135634375e-05 - sys_59: 3.130485670131023e-05 - sys_60: 1.1031841493880021e-05 - sys_61: 1.990463808671819e-05 - sys_62: -2.2863187622002852e-05 + sys_0: 7.546837473361129e-05 + sys_1: -6.615372118784039e-05 + sys_2: -0.0005388539375312827 + sys_3: -8.438776023374642e-05 + sys_4: 7.95384585453445e-06 + sys_5: 2.6323783754122788e-05 + sys_6: -0.00020747926006464752 + sys_7: 2.7706832710594728e-05 + sys_8: -0.00021863309129712752 + sys_9: -2.1456395007669758e-05 + sys_10: -8.857645871788048e-05 + sys_11: -0.00022398244551281187 + sys_12: -0.00019403785753487342 + sys_13: -7.04875255023904e-05 + sys_14: -0.00015938978327634454 + sys_15: -0.0001746275908763435 + sys_16: 0.00031394112723781407 + sys_17: -0.0003855953594007192 + sys_18: -0.00030894200493864323 + sys_19: -5.998642555114707e-05 + sys_20: 8.211171639482549e-05 + sys_21: -0.000574550325384802 + sys_22: 0.0006350772385115216 + sys_23: -0.0010102460383303532 + sys_24: 0.00014910124623322875 + sys_25: -0.0026357812921172594 + sys_26: 0.0028485189939411373 + sys_27: -0.0015317867768089072 + sys_28: -0.0001426729101235551 + sys_29: -0.0003890472113759452 + sys_30: 0.0005199321195880391 + sys_31: 5.568233937933466e-05 + sys_32: 5.0708805573919796e-05 + sys_33: 2.0517991931586667e-05 + sys_34: 2.185767088242166e-05 + sys_35: 7.013982018951416e-06 + sys_36: -1.5480612853027947e-05 + sys_37: 4.937600112527797e-05 + sys_38: -6.621039858870782e-05 + sys_39: 6.404150602078749e-05 + sys_40: -4.895737047341887e-06 + sys_41: -2.0328687430544328e-05 + sys_42: 1.5849616857137896e-05 + sys_43: -2.687529577194353e-05 + sys_44: 1.943112478513482e-05 + sys_45: -5.108425709431371e-06 + sys_46: -2.1014411465380914e-05 + sys_47: -1.6294627039067148e-06 + sys_48: -8.856276313700571e-06 + sys_49: -0.00013285211389147292 + sys_50: -2.029181170968596e-05 + sys_51: 0.00010002211203854213 + sys_52: 1.6672489508639387e-06 + sys_53: -1.8658880673170626e-05 + sys_54: 4.417421733375441e-05 + sys_55: 1.4460789101882573e-05 + sys_56: 0.00011042902329575379 + sys_57: 4.262718141168879e-05 + sys_58: -2.33193013563378e-05 + sys_59: 3.1304856701311044e-05 + sys_60: 1.1031841493880792e-05 + sys_61: 1.9904638086717546e-05 + sys_62: -2.2863187622002957e-05 - pol: 0.00084288 lumi: 0.00047 - sys_0: 7.780187677349443e-05 - sys_1: -6.824939709806967e-05 - sys_2: -0.0005562701942240219 - sys_3: -8.798465384492074e-05 - sys_4: -1.9700750627500177e-05 - sys_5: -3.8888648133953094e-05 - sys_6: 0.000224732417815669 - sys_7: 2.6808007441549748e-05 - sys_8: 0.0002526907170244442 - sys_9: 1.3827104734727676e-05 - sys_10: 0.00011649243296396651 - sys_11: 0.00027265154300838565 - sys_12: -0.00026640453359394516 - sys_13: 0.00014188540876097365 - sys_14: 0.0002647620377759727 - sys_15: 0.0003548682694982934 - sys_16: -0.0005719813358456604 - sys_17: 0.0011392362345072021 - sys_18: 0.0014497831282711726 - sys_19: 0.0005542580286439554 - sys_20: 0.005571930566314314 - sys_21: -0.0008434783578743104 - sys_22: 0.00048576549530597097 - sys_23: -0.00029277990496972205 - sys_24: 1.4060432278698183e-05 - sys_25: -0.00012590840041870616 - sys_26: -7.629037708364671e-05 - sys_27: 0.00019144904761182985 - sys_28: 1.2984629950248918e-05 - sys_29: 0.0001007028789555127 - sys_30: 0.00012318371605143905 - sys_31: -1.7775095842067923e-05 - sys_32: -1.664765749671126e-05 - sys_33: -9.628598664598799e-06 - sys_34: -2.353906632956423e-05 - sys_35: -3.509382591663827e-05 - sys_36: 2.6652277446780023e-05 - sys_37: 1.9884991449437947e-05 - sys_38: -1.9504303782925723e-05 - sys_39: 3.437704744911334e-07 - sys_40: 1.1086810926465059e-05 - sys_41: -6.161144493816785e-06 - sys_42: 1.6849264948597466e-05 - sys_43: 2.13225995434595e-05 - sys_44: -1.034203298516137e-05 - sys_45: 1.9401986793935647e-05 - sys_46: -5.641989699801435e-06 - sys_47: -3.418908716526605e-06 - sys_48: 4.389803064173044e-06 - sys_49: 6.165053905238303e-05 - sys_50: 8.65708215613762e-06 - sys_51: -4.381825404485817e-05 - sys_52: 4.6126560978860187e-07 - sys_53: -8.849244789682115e-06 - sys_54: 2.03770429315502e-05 - sys_55: 4.691990268989719e-06 - sys_56: 4.5939937410298184e-05 - sys_57: 1.2814172321047995e-05 - sys_58: -2.9343262018199364e-05 - sys_59: 1.6708164239202242e-05 - sys_60: 9.074357501619122e-06 - sys_61: 1.2494299545530818e-05 - sys_62: -1.3269064697206618e-05 + sys_0: 7.780187677349526e-05 + sys_1: -6.824939709807209e-05 + sys_2: -0.0005562701942240217 + sys_3: -8.798465384491834e-05 + sys_4: 1.970075062750134e-05 + sys_5: 3.8888648133952755e-05 + sys_6: -0.00022473241781567296 + sys_7: 2.6808007441539726e-05 + sys_8: -0.000252690717024443 + sys_9: -1.3827104734730393e-05 + sys_10: -0.00011649243296396077 + sys_11: -0.0002726515430083863 + sys_12: -0.00026640453359394364 + sys_13: -0.00014188540876097362 + sys_14: -0.0002647620377759735 + sys_15: -0.00035486826949832404 + sys_16: 0.0005719813358456584 + sys_17: -0.0011392362345071915 + sys_18: -0.0014497831282711815 + sys_19: -0.0005542580286439786 + sys_20: -0.0055719305663143 + sys_21: 0.0008434783578743272 + sys_22: -0.0004857654953059599 + sys_23: 0.0002927799049697272 + sys_24: -1.4060432278694845e-05 + sys_25: 0.0001259084004187116 + sys_26: 7.629037708364417e-05 + sys_27: -0.00019144904761182998 + sys_28: -1.29846299502497e-05 + sys_29: -0.00010070287895551267 + sys_30: 0.00012318371605143702 + sys_31: 1.777509584206737e-05 + sys_32: 1.6647657496711324e-05 + sys_33: 9.62859866459906e-06 + sys_34: 1.1086810926465325e-05 + sys_35: 6.161144493816911e-06 + sys_36: -1.684926494859773e-05 + sys_37: 2.3539066329563603e-05 + sys_38: -3.509382591664068e-05 + sys_39: 2.665227744677769e-05 + sys_40: -1.988499144943824e-05 + sys_41: -1.9504303782924192e-05 + sys_42: -3.4377047449045414e-07 + sys_43: -2.132259954345957e-05 + sys_44: 1.0342032985161039e-05 + sys_45: -1.940198679393599e-05 + sys_46: -5.641989699797608e-06 + sys_47: -3.418908716526218e-06 + sys_48: -4.389803064173134e-06 + sys_49: -6.165053905238378e-05 + sys_50: -8.657082156137144e-06 + sys_51: 4.381825404485891e-05 + sys_52: 4.612656097900979e-07 + sys_53: -8.849244789682256e-06 + sys_54: 2.0377042931550606e-05 + sys_55: 4.6919902689894005e-06 + sys_56: 4.593993741029805e-05 + sys_57: 1.281417232104495e-05 + sys_58: -2.934326201819757e-05 + sys_59: 1.6708164239202133e-05 + sys_60: 9.07435750161912e-06 + sys_61: 1.2494299545530244e-05 + sys_62: -1.3269064697206324e-05 - pol: 0.00119424 lumi: 0.00047 - sys_0: 9.927344527115915e-05 - sys_1: -7.84721266430744e-05 - sys_2: -0.0005847193644162433 - sys_3: -8.919994203837462e-05 - sys_4: -5.2999727578709885e-05 - sys_5: -5.54754064234616e-05 - sys_6: 0.0002738173047757328 - sys_7: 3.047564478469944e-05 - sys_8: 0.0003320381856872334 - sys_9: -5.1034613707598446e-05 - sys_10: 0.0002599830454957503 - sys_11: 0.0005130978711355152 - sys_12: -0.0006936450110524884 - sys_13: 0.008197470338109789 - sys_14: -0.0009052657708895067 - sys_15: -0.0006795032891182772 - sys_16: 0.0005343188294279319 - sys_17: -0.00045261254014250003 - sys_18: -0.0002912990884946348 - sys_19: -3.121466355676114e-05 - sys_20: 2.685768672433055e-05 - sys_21: -0.00015409604948562883 - sys_22: 0.00012827212910886403 - sys_23: -6.0830458079968026e-05 - sys_24: -1.2862641061822945e-06 - sys_25: 1.7141387874142247e-06 - sys_26: 1.2051125522011088e-05 - sys_27: 7.996689121613546e-05 - sys_28: 2.5176769612072467e-06 - sys_29: 5.0147328389436364e-05 - sys_30: 3.968575330120885e-05 - sys_31: -7.523267873940047e-06 - sys_32: -6.204096087965133e-06 - sys_33: -7.055084387983401e-06 - sys_34: -1.5087052434721968e-05 - sys_35: -2.743736483952948e-05 - sys_36: 1.0543781553077788e-05 - sys_37: 3.2151313009557914e-05 - sys_38: -3.144428515830136e-05 - sys_39: 9.450883561143745e-06 - sys_40: 3.5439313032134106e-06 - sys_41: -3.0162239011695796e-06 - sys_42: 9.82154785086775e-06 - sys_43: 2.8620363355248003e-05 - sys_44: -5.110823492037954e-06 - sys_45: 2.1668181085394848e-05 - sys_46: 2.053597997685508e-06 - sys_47: -1.7497365632821457e-06 - sys_48: 2.2103589722798303e-06 - sys_49: 2.6950170636830784e-05 - sys_50: 3.094296793228843e-06 - sys_51: -1.836097249870102e-05 - sys_52: -6.760275606415222e-07 - sys_53: -5.539468943855355e-06 - sys_54: 6.277916583967389e-06 - sys_55: -3.3111592672528325e-07 - sys_56: 8.656526426387877e-06 - sys_57: -3.622504822476011e-06 - sys_58: -3.731982185961949e-05 - sys_59: 9.439524185352687e-06 - sys_60: 7.582323320710928e-06 - sys_61: 6.700197678791394e-06 - sys_62: -8.865578016702357e-06 + sys_0: 9.927344527115935e-05 + sys_1: -7.847212664307698e-05 + sys_2: -0.0005847193644162445 + sys_3: -8.919994203837157e-05 + sys_4: 5.299972757871072e-05 + sys_5: 5.547540642346338e-05 + sys_6: -0.00027381730477573843 + sys_7: 3.04756447846921e-05 + sys_8: -0.00033203818568723007 + sys_9: 5.1034613707590416e-05 + sys_10: -0.00025998304549573563 + sys_11: -0.0005130978711355355 + sys_12: -0.0006936450110524788 + sys_13: -0.00819747033810977 + sys_14: 0.0009052657708894879 + sys_15: 0.0006795032891183008 + sys_16: -0.00053431882942793 + sys_17: 0.00045261254014248876 + sys_18: 0.00029129908849463584 + sys_19: 3.1214663556780015e-05 + sys_20: -2.6857686724332585e-05 + sys_21: 0.00015409604948562886 + sys_22: -0.00012827212910886384 + sys_23: 6.0830458079969266e-05 + sys_24: 1.2862641061816355e-06 + sys_25: -1.7141387874135823e-06 + sys_26: -1.2051125522011544e-05 + sys_27: -7.996689121613636e-05 + sys_28: -2.51767696120739e-06 + sys_29: -5.014732838943628e-05 + sys_30: 3.9685753301208464e-05 + sys_31: 7.523267873940016e-06 + sys_32: 6.204096087965103e-06 + sys_33: 7.055084387983939e-06 + sys_34: 3.5439313032131552e-06 + sys_35: 3.016223901169375e-06 + sys_36: -9.821547850867365e-06 + sys_37: 1.5087052434722239e-05 + sys_38: -2.743736483953124e-05 + sys_39: 1.0543781553075767e-05 + sys_40: -3.215131300955826e-05 + sys_41: -3.144428515830036e-05 + sys_42: -9.450883561143435e-06 + sys_43: -2.8620363355247878e-05 + sys_44: 5.1108234920375375e-06 + sys_45: -2.1668181085394682e-05 + sys_46: 2.053597997689677e-06 + sys_47: -1.7497365632820454e-06 + sys_48: -2.2103589722804648e-06 + sys_49: -2.6950170636831014e-05 + sys_50: -3.0942967932285073e-06 + sys_51: 1.8360972498701062e-05 + sys_52: -6.760275606411273e-07 + sys_53: -5.5394689438554395e-06 + sys_54: 6.277916583967612e-06 + sys_55: -3.3111592672496693e-07 + sys_56: 8.656526426387972e-06 + sys_57: -3.622504822476828e-06 + sys_58: -3.7319821859619605e-05 + sys_59: 9.439524185352675e-06 + sys_60: 7.582323320711006e-06 + sys_61: 6.700197678791074e-06 + sys_62: -8.86557801670163e-06 - pol: 0.00109568 lumi: 0.00047 sys_0: 0.00015507225321138233 - sys_1: -0.00010768041577368561 - sys_2: -0.0006753671991897017 - sys_3: -0.00010774731037322416 - sys_4: -0.00019956854307787446 - sys_5: -0.00019216819766159038 - sys_6: 0.0006067655233311541 - sys_7: 1.2835525110871779e-05 - sys_8: 0.0025983564007616357 - sys_9: -0.012685926488874408 - sys_10: -0.0005038230592798053 - sys_11: -0.0004117250150679948 - sys_12: 0.0003031910733029825 - sys_13: -8.263681745530165e-05 - sys_14: -4.4364690961220935e-05 - sys_15: -0.00010424822273473862 - sys_16: -3.0897814863248904e-05 - sys_17: -0.00011051023977466034 - sys_18: -7.93825821998114e-05 - sys_19: -7.877173710862136e-06 - sys_20: 1.0175275917104577e-05 - sys_21: -5.5915824243069816e-05 - sys_22: 5.672075792961514e-05 - sys_23: -3.028975482039845e-06 - sys_24: -9.02884040827144e-06 - sys_25: 4.619690288367423e-05 - sys_26: 5.0732329081263665e-05 - sys_27: 4.40496878384387e-05 - sys_28: 8.84769319304085e-06 - sys_29: 2.9587636210169758e-05 - sys_30: 7.889164499677699e-06 - sys_31: -2.964238771492622e-06 - sys_32: -3.738978197620175e-06 - sys_33: -5.8835581396566426e-06 - sys_34: -1.0155587975838275e-05 - sys_35: -2.1352635341076744e-05 - sys_36: 2.95799612104856e-06 - sys_37: 3.200834498930927e-05 - sys_38: -3.5303441710761464e-05 - sys_39: 1.3703130804562942e-05 - sys_40: 3.07335969727789e-07 - sys_41: -8.695365442231751e-07 - sys_42: 3.0187044001073655e-06 - sys_43: 3.103872380714448e-05 - sys_44: -2.158920364406891e-07 - sys_45: 1.0307561375431304e-05 - sys_46: 3.1694925931362813e-06 - sys_47: 4.5552465000056425e-07 - sys_48: 1.0550781884483654e-06 - sys_49: 4.6093007207522255e-06 - sys_50: -9.923434723544198e-08 - sys_51: -4.5608097578512556e-06 - sys_52: -1.498373586588525e-06 - sys_53: -4.349101970695783e-06 - sys_54: -5.227717181287994e-06 - sys_55: -2.5643075536725763e-06 - sys_56: -8.273256602774685e-06 - sys_57: -7.574954871866692e-06 - sys_58: -2.7558791978009364e-05 - sys_59: 2.7323629154864003e-06 - sys_60: 3.476295603121486e-06 - sys_61: 2.0923155335238018e-07 - sys_62: -4.0690784856998066e-07 + sys_1: -0.00010768041577369137 + sys_2: -0.0006753671991897031 + sys_3: -0.00010774731037321972 + sys_4: 0.00019956854307788367 + sys_5: 0.000192168197661584 + sys_6: -0.0006067655233311863 + sys_7: 1.2835525110816663e-05 + sys_8: -0.0025983564007618035 + sys_9: 0.012685926488874372 + sys_10: 0.0005038230592798146 + sys_11: 0.00041172501506800505 + sys_12: 0.0003031910733029738 + sys_13: 8.263681745529842e-05 + sys_14: 4.436469096121996e-05 + sys_15: 0.00010424822273473832 + sys_16: 3.089781486324964e-05 + sys_17: 0.00011051023977465995 + sys_18: 7.938258219981086e-05 + sys_19: 7.877173710864375e-06 + sys_20: -1.0175275917105048e-05 + sys_21: 5.591582424306875e-05 + sys_22: -5.6720757929615424e-05 + sys_23: 3.0289754820412127e-06 + sys_24: 9.028840408270502e-06 + sys_25: -4.619690288367529e-05 + sys_26: -5.073232908126332e-05 + sys_27: -4.404968783843914e-05 + sys_28: -8.847693193040822e-06 + sys_29: -2.9587636210169616e-05 + sys_30: 7.889164499677775e-06 + sys_31: 2.9642387714924676e-06 + sys_32: 3.7389781976200532e-06 + sys_33: 5.883558139657074e-06 + sys_34: 3.0733596972778044e-07 + sys_35: 8.695365442229043e-07 + sys_36: -3.0187044001070767e-06 + sys_37: 1.0155587975838521e-05 + sys_38: -2.135263534107809e-05 + sys_39: 2.957996121047133e-06 + sys_40: -3.2008344989309346e-05 + sys_41: -3.530344171076047e-05 + sys_42: -1.3703130804562762e-05 + sys_43: -3.103872380714446e-05 + sys_44: 2.1589203644047615e-07 + sys_45: -1.0307561375431087e-05 + sys_46: 3.1694925931383455e-06 + sys_47: 4.555246500004095e-07 + sys_48: -1.0550781884488139e-06 + sys_49: -4.609300720752301e-06 + sys_50: 9.923434723576879e-08 + sys_51: 4.560809757851225e-06 + sys_52: -1.4983735865875129e-06 + sys_53: -4.3491019706960414e-06 + sys_54: -5.227717181288062e-06 + sys_55: -2.5643075536724526e-06 + sys_56: -8.273256602775e-06 + sys_57: -7.57495487186678e-06 + sys_58: -2.755879197800997e-05 + sys_59: 2.732362915486237e-06 + sys_60: 3.4762956031215233e-06 + sys_61: 2.0923155335224116e-07 + sys_62: -4.0690784856954306e-07 - pol: 0.00086848 lumi: 0.00047 - sys_0: 0.00028325323699535495 - sys_1: -0.00020388067978942216 - sys_2: -0.0010037758497481602 - sys_3: -0.00016332015453421718 - sys_4: -0.01964057284522567 - sys_5: 0.0009150003803185267 - sys_6: -0.0009025775531571916 - sys_7: 0.0001304887702478878 - sys_8: 0.00018392537230776265 - sys_9: 0.00018090463462041597 - sys_10: -0.00012064762183523288 - sys_11: -9.340368089487508e-05 - sys_12: 0.0001210991176089667 - sys_13: -1.0803339507235145e-05 - sys_14: 1.8916144760720673e-05 - sys_15: -2.2512831807999396e-05 - sys_16: -0.00015017398604343408 - sys_17: -5.1382518855666125e-05 - sys_18: -3.775960469629559e-05 - sys_19: -5.281593098239448e-06 - sys_20: -1.7286097460947896e-06 - sys_21: -2.3400183825633727e-05 - sys_22: 2.3169685755979875e-05 - sys_23: 1.2180506817956398e-05 - sys_24: -1.534405141758897e-05 - sys_25: 5.225392632616624e-05 - sys_26: 6.862036488087572e-05 - sys_27: 3.570563030702719e-05 - sys_28: 2.1140144524752288e-05 - sys_29: 1.9455265260927802e-05 - sys_30: 2.885018193819927e-06 - sys_31: -1.1142060697980647e-06 - sys_32: -3.2031068303048013e-06 - sys_33: -3.4555416759106945e-06 - sys_34: -5.523551279581707e-06 - sys_35: -1.219567321336262e-05 - sys_36: 8.237605911730014e-07 - sys_37: 2.1983084608842382e-05 - sys_38: -2.614238299776938e-05 - sys_39: 1.0064686450519507e-05 - sys_40: -3.0314457202984236e-07 - sys_41: -2.4016309765315914e-07 - sys_42: 7.516037930957858e-07 - sys_43: 2.1836241280475524e-05 - sys_44: 8.363182985187765e-07 - sys_45: 3.647442861854006e-06 - sys_46: 2.1069919220732697e-06 - sys_47: 1.100029853702005e-06 - sys_48: 4.1231969677576586e-07 - sys_49: -4.190174397986653e-06 - sys_50: -1.1038805363386713e-06 - sys_51: 5.251947940482387e-07 - sys_52: -1.3873701610668268e-06 - sys_53: -3.1336422368496857e-06 - sys_54: -7.582732192312832e-06 - sys_55: -1.970144341639809e-06 - sys_56: -7.705577878040142e-06 - sys_57: -4.684916012534866e-06 - sys_58: -1.246214956786393e-05 - sys_59: -2.9171318517118537e-08 - sys_60: 1.1618520569798318e-06 - sys_61: -1.8679202925641441e-06 - sys_62: 3.30860385008075e-06 + sys_0: 0.0002832532369953569 + sys_1: -0.000203880679789432 + sys_2: -0.001003775849748161 + sys_3: -0.0001633201545342034 + sys_4: 0.019640572845225666 + sys_5: -0.0009150003803185539 + sys_6: 0.0009025775531572245 + sys_7: 0.00013048877024790932 + sys_8: -0.0001839253723077586 + sys_9: -0.00018090463462041648 + sys_10: 0.00012064762183522902 + sys_11: 9.340368089487594e-05 + sys_12: 0.00012109911760896734 + sys_13: 1.0803339507235938e-05 + sys_14: -1.8916144760717824e-05 + sys_15: 2.251283180799642e-05 + sys_16: 0.00015017398604343505 + sys_17: 5.138251885566594e-05 + sys_18: 3.775960469629578e-05 + sys_19: 5.281593098241862e-06 + sys_20: 1.7286097460945029e-06 + sys_21: 2.3400183825633517e-05 + sys_22: -2.3169685755980387e-05 + sys_23: -1.2180506817955517e-05 + sys_24: 1.53440514175885e-05 + sys_25: -5.225392632616773e-05 + sys_26: -6.862036488087527e-05 + sys_27: -3.570563030702775e-05 + sys_28: -2.1140144524752006e-05 + sys_29: -1.9455265260927714e-05 + sys_30: 2.8850181938195185e-06 + sys_31: 1.1142060697981752e-06 + sys_32: 3.203106830304877e-06 + sys_33: 3.45554167591105e-06 + sys_34: -3.0314457202994157e-07 + sys_35: 2.4016309765314654e-07 + sys_36: -7.516037930956108e-07 + sys_37: 5.523551279581969e-06 + sys_38: -1.2195673213363337e-05 + sys_39: 8.237605911719675e-07 + sys_40: -2.1983084608842772e-05 + sys_41: -2.614238299776883e-05 + sys_42: -1.0064686450519534e-05 + sys_43: -2.1836241280475643e-05 + sys_44: -8.363182985188434e-07 + sys_45: -3.647442861853924e-06 + sys_46: 2.1069919220739096e-06 + sys_47: 1.1000298537019028e-06 + sys_48: -4.123196967760267e-07 + sys_49: 4.190174397986812e-06 + sys_50: 1.103880536338901e-06 + sys_51: -5.251947940483592e-07 + sys_52: -1.387370161065635e-06 + sys_53: -3.13364223685003e-06 + sys_54: -7.5827321923127425e-06 + sys_55: -1.9701443416396715e-06 + sys_56: -7.705577878040401e-06 + sys_57: -4.684916012534735e-06 + sys_58: -1.2462149567864277e-05 + sys_59: -2.9171318517399487e-08 + sys_60: 1.161852056979768e-06 + sys_61: -1.8679202925640308e-06 + sys_62: 3.308603850081044e-06 - pol: 0.000368 lumi: 0.00047 - sys_0: 0.033018783750192536 - sys_1: 0.0029349858900298096 - sys_2: 0.003122246184336124 - sys_3: 0.00047696223086798797 - sys_4: 0.00014161052708152908 - sys_5: 0.00016097342631690405 - sys_6: -0.0002489506620618423 - sys_7: 0.00010346151143934386 - sys_8: 0.0003766011724140741 - sys_9: 0.0001038559379453614 - sys_10: -5.3019159930390195e-05 - sys_11: -3.073049775783103e-05 - sys_12: 5.199129602277413e-05 - sys_13: 6.424567023080478e-06 - sys_14: 2.8407010211208975e-05 - sys_15: 5.032566573989782e-06 - sys_16: -0.00015442252175829847 - sys_17: -2.6724244540244516e-05 - sys_18: -1.6175612364554494e-05 - sys_19: -8.096278717092947e-06 - sys_20: -8.921534611332832e-06 - sys_21: -1.8550205962827333e-05 - sys_22: 1.755909909476713e-05 - sys_23: 4.5870695777030295e-06 - sys_24: -4.721562617887551e-06 - sys_25: 2.820656233508153e-05 - sys_26: 3.990896934924981e-05 - sys_27: 1.9743472379805774e-05 - sys_28: 1.658958677748677e-05 - sys_29: 1.1578514101374176e-05 - sys_30: 9.955843384620827e-07 - sys_31: -5.747962467488144e-07 - sys_32: -5.5890092171772044e-06 - sys_33: -1.8063581141828586e-06 - sys_34: -4.2000655875730996e-06 - sys_35: -2.7302865613265623e-06 - sys_36: 2.378002751383783e-06 - sys_37: 5.552046434887016e-06 - sys_38: -7.69791014970238e-06 - sys_39: 5.057037602091257e-06 - sys_40: -2.3238011852610378e-07 - sys_41: -6.185467361319085e-08 - sys_42: 1.1897995841423019e-07 - sys_43: 1.1155402417394154e-05 - sys_44: 1.0623638406849107e-06 - sys_45: 1.1077130116191306e-06 - sys_46: 1.3856355832148223e-06 - sys_47: 3.9460506562297823e-07 - sys_48: 2.0209659567343635e-07 - sys_49: -2.977994387650777e-06 - sys_50: -8.339982316837605e-07 - sys_51: 1.2802816436820543e-06 - sys_52: -8.546640953504998e-07 - sys_53: -1.7004315513531944e-06 - sys_54: -5.615850678723531e-06 - sys_55: -1.1430167637107104e-06 - sys_56: -4.9375259565777666e-06 - sys_57: -1.830050724670695e-06 - sys_58: -3.7267780570781337e-06 - sys_59: -8.22095051043793e-07 - sys_60: 4.0338177486284964e-08 - sys_61: -2.1574866014211737e-06 - sys_62: 3.7034753431279577e-06 + sys_0: 0.03301878375019251 + sys_1: 0.0029349858900296357 + sys_2: 0.0031222461843361084 + sys_3: 0.0004769622308680131 + sys_4: -0.00014161052708153504 + sys_5: -0.0001609734263169067 + sys_6: 0.00024895066206183933 + sys_7: 0.0001034615114393519 + sys_8: -0.00037660117241407207 + sys_9: -0.00010385593794536584 + sys_10: 5.3019159930389626e-05 + sys_11: 3.073049775783198e-05 + sys_12: 5.1991296022774575e-05 + sys_13: -6.424567023080291e-06 + sys_14: -2.840701021120833e-05 + sys_15: -5.032566573992856e-06 + sys_16: 0.00015442252175829882 + sys_17: 2.6724244540244506e-05 + sys_18: 1.617561236455418e-05 + sys_19: 8.096278717093823e-06 + sys_20: 8.921534611332613e-06 + sys_21: 1.855020596282728e-05 + sys_22: -1.755909909476712e-05 + sys_23: -4.587069577702391e-06 + sys_24: 4.721562617887075e-06 + sys_25: -2.8206562335082413e-05 + sys_26: -3.990896934924954e-05 + sys_27: -1.9743472379806085e-05 + sys_28: -1.6589586777486568e-05 + sys_29: -1.1578514101374068e-05 + sys_30: 9.955843384620958e-07 + sys_31: 5.747962467488692e-07 + sys_32: 5.58900921717712e-06 + sys_33: 1.8063581141830359e-06 + sys_34: -2.3238011852612083e-07 + sys_35: 6.185467361318402e-08 + sys_36: -1.1897995841420081e-07 + sys_37: 4.2000655875730885e-06 + sys_38: -2.730286561327032e-06 + sys_39: 2.378002751383709e-06 + sys_40: -5.552046434887174e-06 + sys_41: -7.697910149702216e-06 + sys_42: -5.057037602091274e-06 + sys_43: -1.1155402417394049e-05 + sys_44: -1.062363840684966e-06 + sys_45: -1.1077130116190747e-06 + sys_46: 1.385635583215018e-06 + sys_47: 3.9460506562291634e-07 + sys_48: -2.0209659567348963e-07 + sys_49: 2.9779943876508053e-06 + sys_50: 8.33998231683751e-07 + sys_51: -1.2802816436822387e-06 + sys_52: -8.546640953497282e-07 + sys_53: -1.7004315513534896e-06 + sys_54: -5.6158506787234855e-06 + sys_55: -1.1430167637106135e-06 + sys_56: -4.93752595657772e-06 + sys_57: -1.8300507246703332e-06 + sys_58: -3.726778057078419e-06 + sys_59: -8.220950510438933e-07 + sys_60: 4.0338177486294784e-08 + sys_61: -2.1574866014211546e-06 + sys_62: 3.703475343128006e-06 diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_2JET_510GEV/uncertainties_D.yaml b/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_2JET_510GEV/uncertainties_D.yaml index d549887942..fcc3178e5a 100644 --- a/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_2JET_510GEV/uncertainties_D.yaml +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_2JET_510GEV/uncertainties_D.yaml @@ -262,781 +262,781 @@ definitions: bins: - pol: 0.00067072 lumi: 0.00047 - sys_0: 0.00017110498195707633 - sys_1: -6.31137316409518e-05 - sys_2: -0.00031536737656073273 - sys_3: -8.636027741102324e-05 - sys_4: -0.000142625520009252 - sys_5: -8.386188817700521e-05 - sys_6: 0.0001746881074822652 - sys_7: 4.568592743266376e-05 - sys_8: 0.0002136587536891256 - sys_9: -0.00013812464666268577 - sys_10: 0.00019083514383716853 - sys_11: 0.00020999855267816436 - sys_12: -0.00018526109292796614 - sys_13: 0.00025062306421833204 - sys_14: 0.00035107962006441194 - sys_15: 0.00035728221080362147 - sys_16: -0.0002553008630885732 - sys_17: 0.0005077658780434085 - sys_18: 0.0003738790921184507 - sys_19: 0.0003267321797589437 - sys_20: 0.0001264790068965217 - sys_21: 0.0014532266196154043 - sys_22: -0.0017398040376328339 - sys_23: 0.0017885285953075385 - sys_24: -0.0018154578436014655 - sys_25: -0.0028811660454171684 - sys_26: -0.0005359253468315105 - sys_27: 0.0010219009930926564 - sys_28: 0.00020743973985512315 - sys_29: 0.00059723065034007 - sys_30: 7.915056471603815e-05 - sys_31: -0.00019976074993633284 - sys_32: -0.000306105023572804 - sys_33: -7.56416561349597e-05 - sys_34: -0.0001325521060697066 - sys_35: -3.12645663748003e-05 - sys_36: 0.00012044137880464746 - sys_37: -5.158366328890924e-05 - sys_38: 1.9938990332707338e-05 - sys_39: 3.3652883516743e-05 - sys_40: -1.1531652352514728e-05 - sys_41: 1.6440741913335975e-06 - sys_42: -7.477716783249689e-06 - sys_43: 0.00014222363266394347 - sys_44: -1.1261960249233709e-05 - sys_45: -1.1581695568809498e-05 - sys_46: -1.2419403715527926e-05 - sys_47: 4.054092128356503e-06 - sys_48: 2.8773256515478827e-07 - sys_49: 4.2959315181507134e-06 - sys_50: 3.0126868217646563e-05 - sys_51: -3.745677543770492e-05 - sys_52: -4.1636428989494324e-05 - sys_53: -2.822418178495236e-05 - sys_54: -2.8066671079364704e-05 - sys_55: -5.288087696866014e-06 - sys_56: 1.0811759310022261e-05 - sys_57: 4.10719529112524e-06 - sys_58: 9.129828459492153e-06 - sys_59: 2.096404647072975e-05 - sys_60: -1.4761367660565102e-05 - sys_61: 6.603609794740931e-06 - sys_62: 2.2376145654093245e-05 + sys_0: 0.00017110498195708319 + sys_1: -6.311373164095956e-05 + sys_2: -0.00031536737656073246 + sys_3: -8.636027741101918e-05 + sys_4: 0.00014262552000925396 + sys_5: 8.386188817700165e-05 + sys_6: -0.0001746881074822699 + sys_7: 4.5685927432658056e-05 + sys_8: -0.00021365875368912858 + sys_9: 0.00013812464666267715 + sys_10: -0.00019083514383715804 + sys_11: -0.00020999855267816637 + sys_12: -0.00018526109292796812 + sys_13: -0.00025062306421832944 + sys_14: -0.00035107962006441655 + sys_15: -0.00035728221080363713 + sys_16: 0.0002553008630885582 + sys_17: -0.000507765878043401 + sys_18: -0.0003738790921184401 + sys_19: -0.00032673217975896486 + sys_20: -0.00012647900689652825 + sys_21: -0.0014532266196153895 + sys_22: 0.001739804037632798 + sys_23: -0.0017885285953076124 + sys_24: 0.00181545784360149 + sys_25: 0.0028811660454171354 + sys_26: 0.0005359253468314564 + sys_27: -0.0010219009930926511 + sys_28: -0.00020743973985513464 + sys_29: -0.0005972306503400584 + sys_30: 7.915056471605151e-05 + sys_31: 0.00019976074993633002 + sys_32: 0.0003061050235727998 + sys_33: 7.564165613496463e-05 + sys_34: -1.1531652352514988e-05 + sys_35: -1.6440741913336706e-06 + sys_36: 7.477716783250659e-06 + sys_37: 0.0001325521060697054 + sys_38: -3.126456637480761e-05 + sys_39: 0.00012044137880464951 + sys_40: 5.1583663288906334e-05 + sys_41: 1.993899033270464e-05 + sys_42: -3.365288351674385e-05 + sys_43: -0.0001422236326639423 + sys_44: 1.1261960249233807e-05 + sys_45: 1.1581695568807308e-05 + sys_46: -1.2419403715529986e-05 + sys_47: 4.05409212835654e-06 + sys_48: -2.8773256515420106e-07 + sys_49: -4.295931518153983e-06 + sys_50: -3.0126868217648623e-05 + sys_51: 3.745677543770516e-05 + sys_52: -4.1636428989491336e-05 + sys_53: -2.822418178495704e-05 + sys_54: -2.8066671079364172e-05 + sys_55: -5.288087696866735e-06 + sys_56: 1.0811759310022688e-05 + sys_57: 4.107195291124582e-06 + sys_58: 9.129828459491694e-06 + sys_59: 2.096404647072958e-05 + sys_60: -1.4761367660564807e-05 + sys_61: 6.603609794742002e-06 + sys_62: 2.2376145654092913e-05 - pol: 0.00018944 lumi: 0.00047 - sys_0: 0.00014776189463653022 - sys_1: -2.531422342544853e-05 - sys_2: -0.0002738845698831271 - sys_3: -7.264038944317661e-05 - sys_4: -0.00011701860177737767 - sys_5: -1.2313334220880256e-05 - sys_6: 0.00014846297697447149 - sys_7: 3.4811311201079686e-05 - sys_8: 0.0001601292288236512 - sys_9: -0.00010864109721717937 - sys_10: 5.136525477217763e-05 - sys_11: 0.0001649624377068792 - sys_12: -0.00013947266345208453 - sys_13: 0.0001537850169656863 - sys_14: 0.00018887848542510814 - sys_15: 6.738785315520027e-05 - sys_16: -0.00016575896483856503 - sys_17: 0.00026886034279675035 - sys_18: 0.00018120128404503264 - sys_19: 0.00013500932997744978 - sys_20: 4.9338492806941455e-05 - sys_21: 0.0003305323155705419 - sys_22: -0.0002005428515083698 - sys_23: 0.00038385183856702533 - sys_24: -7.811462977171011e-05 - sys_25: 5.9831229557941704e-05 - sys_26: 2.974150474985051e-05 - sys_27: -0.00023522666983763016 - sys_28: -7.68957124666506e-05 - sys_29: 2.860913763268396e-05 - sys_30: -0.00039586841712268894 - sys_31: 0.00031400795544267625 - sys_32: 0.00042215329230922406 - sys_33: 7.34861788318005e-05 - sys_34: -0.001116954131810247 - sys_35: 0.0008988678481571643 - sys_36: -0.0017731404978629714 - sys_37: 0.0003358696729246801 - sys_38: -0.00024428920713869294 - sys_39: -0.0012839964812854034 - sys_40: -2.3976689944116313e-05 - sys_41: 4.296969307178023e-06 - sys_42: -1.757051776748346e-05 - sys_43: -0.0009218880776214799 - sys_44: -8.97219667454304e-05 - sys_45: -4.395921635013693e-05 - sys_46: -9.879566213506672e-05 - sys_47: 1.7060149547597243e-05 - sys_48: -2.8423517750551557e-05 - sys_49: -0.0001149465197005369 - sys_50: 0.00013250080365771839 - sys_51: -0.00019110071994682068 - sys_52: -1.78892936171868e-05 - sys_53: -2.4869164136451083e-05 - sys_54: 0.0002258894981187947 - sys_55: 5.486661973819755e-05 - sys_56: 0.00026071807461442733 - sys_57: 3.666897390504842e-05 - sys_58: 9.26406624170277e-05 - sys_59: 0.00011634586729413317 - sys_60: 7.3128274548986075e-06 - sys_61: 0.00016607825794308335 - sys_62: -0.0001926967022516663 + sys_0: 0.0001477618946365316 + sys_1: -2.5314223425450696e-05 + sys_2: -0.0002738845698831279 + sys_3: -7.264038944317416e-05 + sys_4: 0.00011701860177737997 + sys_5: 1.2313334220879609e-05 + sys_6: -0.00014846297697447517 + sys_7: 3.481131120107229e-05 + sys_8: -0.00016012922882365174 + sys_9: 0.00010864109721717574 + sys_10: -5.1365254772172516e-05 + sys_11: -0.00016496243770687893 + sys_12: -0.00013947266345208566 + sys_13: -0.00015378501696568545 + sys_14: -0.00018887848542511006 + sys_15: -6.738785315520459e-05 + sys_16: 0.00016575896483856384 + sys_17: -0.00026886034279674764 + sys_18: -0.00018120128404502904 + sys_19: -0.00013500932997745544 + sys_20: -4.933849280694114e-05 + sys_21: -0.00033053231557054146 + sys_22: 0.00020054285150836857 + sys_23: -0.0003838518385670247 + sys_24: 7.8114629771704e-05 + sys_25: -5.983122955795414e-05 + sys_26: -2.9741504749851326e-05 + sys_27: 0.00023522666983763637 + sys_28: 7.689571246664482e-05 + sys_29: -2.860913763268198e-05 + sys_30: -0.00039586841712268455 + sys_31: -0.0003140079554426757 + sys_32: -0.00042215329230923615 + sys_33: -7.34861788318562e-05 + sys_34: -2.3976689944116862e-05 + sys_35: -4.2969693071786454e-06 + sys_36: 1.7570517767488117e-05 + sys_37: 0.001116954131810299 + sys_38: 0.0008988678481572558 + sys_39: -0.0017731404978628903 + sys_40: -0.00033586967292462345 + sys_41: -0.000244289207138703 + sys_42: 0.0012839964812853938 + sys_43: 0.0009218880776214652 + sys_44: 8.972196674543195e-05 + sys_45: 4.3959216350127284e-05 + sys_46: -9.879566213507316e-05 + sys_47: 1.706014954760103e-05 + sys_48: 2.8423517750557687e-05 + sys_49: 0.00011494651970052965 + sys_50: -0.0001325008036577117 + sys_51: 0.00019110071994682203 + sys_52: -1.7889293617184898e-05 + sys_53: -2.4869164136451398e-05 + sys_54: 0.00022588949811879348 + sys_55: 5.486661973819387e-05 + sys_56: 0.00026071807461442413 + sys_57: 3.666897390503444e-05 + sys_58: 9.264066241704257e-05 + sys_59: 0.0001163458672941402 + sys_60: 7.312827454901296e-06 + sys_61: 0.00016607825794307828 + sys_62: -0.00019269670225166528 - pol: 0.00019648 lumi: 0.00047 - sys_0: 0.00014542150293966714 - sys_1: -5.5192426895075865e-05 - sys_2: -0.00026572774013565984 - sys_3: -7.162698150688663e-05 - sys_4: -0.00011462194906994936 - sys_5: -6.86782118569878e-05 - sys_6: 0.00014024789519000407 - sys_7: 3.531656812576341e-05 - sys_8: 0.0001659508817890195 - sys_9: -0.00010588638724016247 - sys_10: 0.00014668567251617404 - sys_11: 0.0001467555727696756 - sys_12: -0.0001325400954163333 - sys_13: 0.0001618815214343547 - sys_14: 0.00021336607070801013 - sys_15: 0.00021560087944470297 - sys_16: -0.00014560167393865432 - sys_17: 0.0002527228381820644 - sys_18: 0.00017741601984981147 - sys_19: 0.00013637048544031874 - sys_20: 5.100301222894913e-05 - sys_21: 0.0004156808109852264 - sys_22: -0.00037267156249826307 - sys_23: 0.0001808238942294088 - sys_24: -8.125762262662346e-05 - sys_25: 6.633248113869925e-05 - sys_26: 6.612975239229727e-05 - sys_27: -0.00023984301526847827 - sys_28: -7.365124551595409e-05 - sys_29: -0.00035504903885767383 - sys_30: -2.0027852109466203e-06 - sys_31: 0.0001692334672244219 - sys_32: 0.000469660925183765 - sys_33: 0.00014839957311239886 - sys_34: 0.0006148057919701915 - sys_35: -0.00014510251844252367 - sys_36: 0.00010556734394729479 - sys_37: 5.861630563523188e-05 - sys_38: -1.6786243761140885e-05 - sys_39: 0.00027618009490790397 - sys_40: -3.999795760028644e-05 - sys_41: 1.522138314994862e-05 - sys_42: -4.031229149646045e-05 - sys_43: -0.0003929151051144806 - sys_44: -7.93669300798492e-05 - sys_45: -8.060298463236497e-05 - sys_46: -9.715925824289455e-05 - sys_47: 1.905578445803266e-05 - sys_48: -3.11582054236684e-05 - sys_49: 9.9161337315632e-05 - sys_50: -0.0002669111516275123 - sys_51: 0.0008716473700958715 - sys_52: 0.0003419914775781818 - sys_53: 0.0008127730978595721 - sys_54: 0.0009022874790462263 - sys_55: 7.88754219997394e-05 - sys_56: 0.0002555882907020172 - sys_57: 7.663978736637168e-05 - sys_58: 0.00014950101671734747 - sys_59: 0.0014010377377339778 - sys_60: -0.0005383585339182892 - sys_61: 7.75209702077278e-05 - sys_62: 0.00015076270108817656 + sys_0: 0.00014542150293966815 + sys_1: -5.519242689507821e-05 + sys_2: -0.00026572774013565995 + sys_3: -7.162698150688517e-05 + sys_4: 0.00011462194906994946 + sys_5: 6.867821185698758e-05 + sys_6: -0.00014024789519000603 + sys_7: 3.531656812575814e-05 + sys_8: -0.0001659508817890205 + sys_9: 0.00010588638724016048 + sys_10: -0.00014668567251617005 + sys_11: -0.00014675557276967716 + sys_12: -0.00013254009541633293 + sys_13: -0.00016188152143435425 + sys_14: -0.00021336607070801083 + sys_15: -0.00021560087944470785 + sys_16: 0.00014560167393865172 + sys_17: -0.000252722838182063 + sys_18: -0.00017741601984980776 + sys_19: -0.00013637048544032408 + sys_20: -5.100301222894912e-05 + sys_21: -0.0004156808109852215 + sys_22: 0.00037267156249826334 + sys_23: -0.00018082389422941262 + sys_24: 8.125762262662335e-05 + sys_25: -6.633248113870246e-05 + sys_26: -6.612975239229542e-05 + sys_27: 0.0002398430152684786 + sys_28: 7.365124551595647e-05 + sys_29: 0.0003550490388576687 + sys_30: -2.0027852109478168e-06 + sys_31: -0.00016923346722442272 + sys_32: -0.0004696609251837543 + sys_33: -0.00014839957311239704 + sys_34: -3.99979576002866e-05 + sys_35: -1.5221383149949526e-05 + sys_36: 4.0312291496464156e-05 + sys_37: -0.0006148057919702007 + sys_38: -0.0001451025184425242 + sys_39: 0.00010556734394727276 + sys_40: -5.861630563524067e-05 + sys_41: -1.6786243761134573e-05 + sys_42: -0.00027618009490790267 + sys_43: 0.00039291510511448214 + sys_44: 7.936693007985032e-05 + sys_45: 8.060298463235335e-05 + sys_46: -9.715925824290737e-05 + sys_47: 1.9055784458035757e-05 + sys_48: 3.115820542367707e-05 + sys_49: -9.916133731560974e-05 + sys_50: 0.00026691115162750183 + sys_51: -0.0008716473700958799 + sys_52: 0.0003419914775779854 + sys_53: 0.0008127730978596243 + sys_54: 0.0009022874790462247 + sys_55: 7.887542199973608e-05 + sys_56: 0.00025558829070201265 + sys_57: 7.663978736636034e-05 + sys_58: 0.00014950101671736135 + sys_59: 0.0014010377377339789 + sys_60: -0.0005383585339182688 + sys_61: 7.75209702077153e-05 + sys_62: 0.00015076270108817615 - pol: 4.6080000000000006e-05 lumi: 0.00047 - sys_0: 0.00013504495145453738 - sys_1: -4.504759924650933e-05 - sys_2: -0.0002509490866681178 - sys_3: -6.622173915409793e-05 - sys_4: -0.00010586939209480758 - sys_5: -5.042692252154293e-05 - sys_6: 0.00013324705449066352 - sys_7: 3.085664386016492e-05 - sys_8: 0.00015314072243314238 - sys_9: -9.764029995095053e-05 - sys_10: 0.00011034170796955468 - sys_11: 0.00014003647696080994 + sys_0: 0.00013504495145453917 + sys_1: -4.504759924651163e-05 + sys_2: -0.0002509490866681172 + sys_3: -6.62217391540971e-05 + sys_4: 0.00010586939209480816 + sys_5: 5.04269225215414e-05 + sys_6: -0.00013324705449066648 + sys_7: 3.0856643860159643e-05 + sys_8: -0.0001531407224331434 + sys_9: 9.764029995094844e-05 + sys_10: -0.00011034170796955109 + sys_11: -0.0001400364769608117 sys_12: -0.00012644696012349495 - sys_13: 0.0001462725255330015 - sys_14: 0.00018963310896638423 - sys_15: 0.0001630702652839237 - sys_16: -0.0001397901714981224 - sys_17: 0.00023478402652087508 - sys_18: 0.0001631808659553108 - sys_19: 0.00012299238933549745 - sys_20: 4.577120655887936e-05 - sys_21: 0.0003636558242390098 - sys_22: -0.0003037109484782767 - sys_23: 0.0002097211150190688 - sys_24: -8.123346950800347e-05 - sys_25: 4.012126350619712e-05 - sys_26: 4.7263188727337074e-05 - sys_27: -0.00020149726381438695 - sys_28: -5.745991822358377e-05 - sys_29: -0.0002370840717758925 - sys_30: -5.586963740455414e-05 - sys_31: 0.00015551858599027377 - sys_32: 0.0003604677314638072 - sys_33: 0.00011149108476751781 - sys_34: 0.00039485190682832786 - sys_35: -8.459294538999862e-05 - sys_36: 5.611490131770955e-05 - sys_37: 3.651113780917014e-05 - sys_38: -1.2764429921277581e-05 - sys_39: 0.0002669098551561781 - sys_40: -7.211528268868583e-06 - sys_41: 1.1052606023359622e-05 - sys_42: -2.625737863484512e-05 - sys_43: -0.00017745916237736834 - sys_44: -0.00010511406854458138 - sys_45: -7.230564479291027e-05 - sys_46: -0.0001274352783718062 - sys_47: 2.830615506752173e-05 - sys_48: -1.264831304299457e-05 - sys_49: 0.0001402969098303433 - sys_50: -0.0001976044130879136 - sys_51: 0.0008416260208751006 - sys_52: 0.00024530722965137035 - sys_53: 0.0007042362489058175 - sys_54: 0.0005234422589486579 - sys_55: 9.228980595961308e-05 - sys_56: 0.0004380039752888158 - sys_57: 8.776783716431683e-05 - sys_58: 0.00021436136691887795 - sys_59: -0.0013736378628989945 - sys_60: 0.0006055673213174911 - sys_61: 0.0003184945209905262 - sys_62: -0.0008496935078666786 + sys_13: -0.00014627252553300136 + sys_14: -0.00018963310896638453 + sys_15: -0.00016307026528392837 + sys_16: 0.00013979017149812006 + sys_17: -0.00023478402652087326 + sys_18: -0.00016318086595530797 + sys_19: -0.00012299238933550282 + sys_20: -4.577120655887944e-05 + sys_21: -0.00036365582423900723 + sys_22: 0.00030371094847827655 + sys_23: -0.00020972111501907218 + sys_24: 8.123346950800324e-05 + sys_25: -4.0121263506200507e-05 + sys_26: -4.7263188727336654e-05 + sys_27: 0.00020149726381438754 + sys_28: 5.745991822358535e-05 + sys_29: 0.00023708407177588827 + sys_30: -5.586963740455549e-05 + sys_31: -0.00015551858599027423 + sys_32: -0.00036046773146380007 + sys_33: -0.00011149108476751762 + sys_34: -7.211528268867812e-06 + sys_35: -1.1052606023359232e-05 + sys_36: 2.62573786348465e-05 + sys_37: -0.00039485190682833523 + sys_38: -8.459294538999842e-05 + sys_39: 5.611490131769669e-05 + sys_40: -3.651113780917613e-05 + sys_41: -1.2764429921272065e-05 + sys_42: -0.00026690985515617495 + sys_43: 0.0001774591623773706 + sys_44: 0.00010511406854458342 + sys_45: 7.230564479289692e-05 + sys_46: -0.0001274352783718181 + sys_47: 2.8306155067526073e-05 + sys_48: 1.2648313043004042e-05 + sys_49: -0.0001402969098303204 + sys_50: 0.00019760441308790426 + sys_51: -0.0008416260208751062 + sys_52: 0.00024530722965121975 + sys_53: 0.0007042362489058487 + sys_54: 0.0005234422589486562 + sys_55: 9.228980595960812e-05 + sys_56: 0.0004380039752888148 + sys_57: 8.776783716429844e-05 + sys_58: 0.00021436136691890947 + sys_59: -0.0013736378628989756 + sys_60: 0.0006055673213174772 + sys_61: 0.00031849452099052427 + sys_62: -0.0008496935078666962 - pol: 0.00010816000000000001 lumi: 0.00047 - sys_0: 0.00013116395294354748 - sys_1: -3.796892293027854e-05 - sys_2: -0.0002437983710344843 - sys_3: -6.257617969003865e-05 - sys_4: -0.00010136671077975137 - sys_5: -3.916066400360581e-05 - sys_6: 0.00012988722431861416 - sys_7: 3.070179159639615e-05 - sys_8: 0.00014781248353337053 - sys_9: -9.522667829618587e-05 - sys_10: 9.337329125839317e-05 - sys_11: 0.0001415894302707631 - sys_12: -0.0001247612695141649 - sys_13: 0.0001453330363470862 - sys_14: 0.00018442196072814405 - sys_15: 0.00014166880508778028 - sys_16: -0.0001433423785426233 - sys_17: 0.000241405828667445 - sys_18: 0.0001722334161056634 - sys_19: 0.00012751847927896246 - sys_20: 4.458447869337478e-05 - sys_21: 0.00037528568005810287 - sys_22: -0.00030462931557091966 - sys_23: 0.0002696834833643494 - sys_24: -9.356414573420396e-05 - sys_25: 2.8504142821501828e-05 - sys_26: 4.536601187181947e-05 - sys_27: -0.00022922313802363798 - sys_28: -6.085639546267376e-05 - sys_29: -0.00023391851631056725 - sys_30: -0.00012198178741218919 - sys_31: 0.00024050467821687524 - sys_32: 0.000581571013667317 - sys_33: 0.00017727040047006048 - sys_34: 0.000695260809782036 - sys_35: -0.00014466976804903842 - sys_36: 9.026570250190829e-05 - sys_37: 7.179948747085647e-05 - sys_38: -6.12669755300972e-05 - sys_39: 0.0013966670341302384 - sys_40: 1.6306254191634127e-05 - sys_41: 2.503647322444841e-06 - sys_42: -1.2077838708907661e-06 - sys_43: -0.0018507890736842374 - sys_44: -6.134991471085591e-05 - sys_45: -1.8460245634776062e-05 - sys_46: -6.574762785757702e-05 - sys_47: 1.1956311795469469e-05 - sys_48: 3.3085554002328235e-06 - sys_49: -0.00023989220483077223 - sys_50: 0.0002333089746185773 - sys_51: -0.0008722263304545565 - sys_52: -0.00016531400090625384 - sys_53: -0.0005650716114053148 - sys_54: -0.00021015495173122366 - sys_55: 2.6393258688656924e-05 - sys_56: 0.0001453687369898643 - sys_57: 1.2653911941373938e-05 - sys_58: 3.557166793905786e-05 - sys_59: -9.985500061009931e-06 - sys_60: 5.569449810069275e-05 - sys_61: 3.690651875347644e-05 - sys_62: -0.00010078081521474983 + sys_0: 0.00013116395294354897 + sys_1: -3.796892293028003e-05 + sys_2: -0.0002437983710344848 + sys_3: -6.257617969003719e-05 + sys_4: 0.000101366710779752 + sys_5: 3.9160664003604993e-05 + sys_6: -0.0001298872243186154 + sys_7: 3.070179159639141e-05 + sys_8: -0.0001478124835333721 + sys_9: 9.522667829618408e-05 + sys_10: -9.337329125839052e-05 + sys_11: -0.00014158943027076364 + sys_12: -0.0001247612695141652 + sys_13: -0.00014533303634708676 + sys_14: -0.00018442196072814332 + sys_15: -0.00014166880508778627 + sys_16: 0.00014334237854262083 + sys_17: -0.00024140582866744286 + sys_18: -0.0001722334161056606 + sys_19: -0.00012751847927896742 + sys_20: -4.458447869337505e-05 + sys_21: -0.0003752856800581001 + sys_22: 0.00030462931557091814 + sys_23: -0.0002696834833643524 + sys_24: 9.35641457342036e-05 + sys_25: -2.8504142821504443e-05 + sys_26: -4.536601187181772e-05 + sys_27: 0.00022922313802363692 + sys_28: 6.085639546267669e-05 + sys_29: 0.00023391851631056034 + sys_30: -0.00012198178741219405 + sys_31: -0.00024050467821687705 + sys_32: -0.0005815710136673041 + sys_33: -0.00017727040047005798 + sys_34: 1.6306254191635432e-05 + sys_35: -2.5036473224437457e-06 + sys_36: 1.2077838708896887e-06 + sys_37: -0.0006952608097820436 + sys_38: -0.0001446697680490323 + sys_39: 9.026570250189009e-05 + sys_40: -7.179948747088631e-05 + sys_41: -6.126697553008706e-05 + sys_42: -0.0013966670341302306 + sys_43: 0.0018507890736842504 + sys_44: 6.134991471085612e-05 + sys_45: 1.846024563476774e-05 + sys_46: -6.5747627857577e-05 + sys_47: 1.1956311795471234e-05 + sys_48: -3.308555400230397e-06 + sys_49: 0.00023989220483075014 + sys_50: -0.0002333089746185622 + sys_51: 0.0008722263304545685 + sys_52: -0.00016531400090614144 + sys_53: -0.000565071611405331 + sys_54: -0.0002101549517312244 + sys_55: 2.6393258688655806e-05 + sys_56: 0.00014536873698986404 + sys_57: 1.2653911941364346e-05 + sys_58: 3.557166793906079e-05 + sys_59: -9.985500061006e-06 + sys_60: 5.569449810069082e-05 + sys_61: 3.690651875347892e-05 + sys_62: -0.00010078081521474912 - pol: 0.00032063999999999997 lumi: 0.00047 - sys_0: 0.00012841212567495398 - sys_1: -3.64077590499717e-05 - sys_2: -0.0002415229052577814 - sys_3: -6.067447006852465e-05 - sys_4: -9.933497923600457e-05 - sys_5: -3.588422443679668e-05 - sys_6: 0.00012807653476298053 - sys_7: 2.6276685056655087e-05 - sys_8: 0.00014625598817316832 - sys_9: -9.196939857268394e-05 - sys_10: 8.574179639443623e-05 - sys_11: 0.000139771632948515 - sys_12: -0.00012739031196052283 - sys_13: 0.00014237193921262228 - sys_14: 0.00018458563169164408 - sys_15: 0.00013260127117335858 - sys_16: -0.000147588276565297 - sys_17: 0.00024860958255113293 - sys_18: 0.00017778630456209167 - sys_19: 0.00012896203498822303 - sys_20: 4.5672873682328394e-05 - sys_21: 0.0003866018787029061 - sys_22: -0.00030960128284761524 - sys_23: 0.00029828852242476216 - sys_24: -0.00010208940855092469 - sys_25: 2.3012028260007262e-05 - sys_26: 4.369771909626935e-05 - sys_27: -0.0002578918930702364 - sys_28: -5.73096672976106e-05 - sys_29: -0.00024404579046295507 - sys_30: -0.00016707370612662164 - sys_31: 0.00033147859880477217 - sys_32: 0.0009416582914190337 - sys_33: 0.00036906477393517224 - sys_34: 0.0018731782186001695 - sys_35: -0.00042249206574002584 - sys_36: 0.0004341550034328551 - sys_37: -0.00020825310326651818 - sys_38: 0.0001365915579100725 - sys_39: -0.001802748974176075 - sys_40: 3.247394059731105e-05 - sys_41: -5.9104466692071775e-06 - sys_42: 1.6281948627488457e-05 - sys_43: 0.00021161706723384823 - sys_44: -5.0347206573834384e-05 - sys_45: 5.118835721795455e-06 - sys_46: -4.988129375354834e-05 - sys_47: 5.922617067718872e-06 - sys_48: 7.683128127596436e-06 - sys_49: -0.00010635255007234979 - sys_50: 0.0001092956929616614 - sys_51: -0.0004691025173128989 - sys_52: -9.72120287136773e-05 - sys_53: -0.00032309178719736503 - sys_54: -0.00012739254414245087 - sys_55: 6.8463599859931845e-06 - sys_56: 0.00010140191123513969 - sys_57: -3.91318949375576e-06 - sys_58: 6.801612084409448e-06 - sys_59: -2.0054376161295698e-06 - sys_60: 5.187590218522541e-05 - sys_61: 3.713699847700828e-05 - sys_62: -7.176861305763742e-05 + sys_0: 0.00012841212567495553 + sys_1: -3.640775904997375e-05 + sys_2: -0.0002415229052577813 + sys_3: -6.0674470068524086e-05 + sys_4: 9.933497923600452e-05 + sys_5: 3.58842244367947e-05 + sys_6: -0.00012807653476298213 + sys_7: 2.6276685056649924e-05 + sys_8: -0.00014625598817317027 + sys_9: 9.196939857268286e-05 + sys_10: -8.574179639443365e-05 + sys_11: -0.00013977163294851547 + sys_12: -0.00012739031196052288 + sys_13: -0.00014237193921262366 + sys_14: -0.0001845856316916442 + sys_15: -0.00013260127117336538 + sys_16: 0.00014758827656529506 + sys_17: -0.0002486095825511312 + sys_18: -0.00017778630456208807 + sys_19: -0.00012896203498822848 + sys_20: -4.567287368232772e-05 + sys_21: -0.00038660187870290165 + sys_22: 0.00030960128284761193 + sys_23: -0.0002982885224247654 + sys_24: 0.0001020894085509252 + sys_25: -2.301202826000909e-05 + sys_26: -4.3697719096270734e-05 + sys_27: 0.00025789189307023403 + sys_28: 5.7309667297612915e-05 + sys_29: 0.00024404579046294472 + sys_30: -0.00016707370612662422 + sys_31: -0.0003314785988047721 + sys_32: -0.000941658291419002 + sys_33: -0.0003690647739351505 + sys_34: 3.247394059731268e-05 + sys_35: 5.910446669208224e-06 + sys_36: -1.6281948627489734e-05 + sys_37: -0.0018731782186002057 + sys_38: -0.00042249206574003007 + sys_39: 0.00043415500343277347 + sys_40: 0.00020825310326654054 + sys_41: 0.0001365915579100604 + sys_42: 0.0018027489741760843 + sys_43: -0.00021161706723385416 + sys_44: 5.034720657383537e-05 + sys_45: -5.118835721798232e-06 + sys_46: -4.988129375354729e-05 + sys_47: 5.9226170677198594e-06 + sys_48: -7.68312812759602e-06 + sys_49: 0.0001063525500723392 + sys_50: -0.00010929569296165719 + sys_51: 0.0004691025173129039 + sys_52: -9.721202871361031e-05 + sys_53: -0.0003230917871973758 + sys_54: -0.0001273925441424505 + sys_55: 6.846359985992183e-06 + sys_56: 0.00010140191123513978 + sys_57: -3.913189493762565e-06 + sys_58: 6.801612084412341e-06 + sys_59: -2.005437616126913e-06 + sys_60: 5.1875902185225067e-05 + sys_61: 3.713699847700864e-05 + sys_62: -7.176861305763625e-05 - pol: 0.00028352 lumi: 0.00047 - sys_0: 0.0001224854415855291 - sys_1: -3.435794227036676e-05 - sys_2: -0.0002376588011628856 - sys_3: -6.030156452073243e-05 - sys_4: -9.995524578494101e-05 - sys_5: -3.4364906732319014e-05 - sys_6: 0.00012534956536635307 - sys_7: 2.6676032025229884e-05 - sys_8: 0.0001461995275757881 - sys_9: -9.186852784178806e-05 - sys_10: 9.055865662040071e-05 - sys_11: 0.00014535523205283052 - sys_12: -0.0001321838324523914 - sys_13: 0.00015362867292192426 - sys_14: 0.0001981314975109816 - sys_15: 0.00015160241081862107 - sys_16: -0.0001636005333130092 - sys_17: 0.0002910339933829564 - sys_18: 0.0002129335778511491 - sys_19: 0.00014968918858470254 - sys_20: 5.666922213994015e-05 - sys_21: 0.0005201202044566108 - sys_22: -0.0004397428173820367 - sys_23: 0.00046152738105857514 - sys_24: -0.00016889098317486538 - sys_25: 1.936622400876648e-06 - sys_26: 5.756616184509765e-05 - sys_27: -0.0006992701775183005 - sys_28: -0.0001304956875514935 - sys_29: -0.0027882205075597036 - sys_30: 0.0022399975026018587 - sys_31: -0.0006535648670677172 - sys_32: -0.00044192308444771666 - sys_33: -9.877537863197144e-05 - sys_34: -0.00025861542297746703 - sys_35: 1.7840225074292888e-05 - sys_36: -2.951228941032711e-05 - sys_37: 5.197485688944462e-05 - sys_38: -9.403025217213908e-06 - sys_39: -0.00016557506994736797 - sys_40: 2.618657571112604e-05 - sys_41: -1.1859117526537934e-05 - sys_42: 2.7891598480274397e-05 - sys_43: 4.332134770735595e-05 - sys_44: -2.7576179475250577e-05 - sys_45: 2.7976070007300095e-05 - sys_46: -2.04222268547157e-05 - sys_47: -1.3550366065554801e-06 - sys_48: 4.613702544252015e-06 - sys_49: -2.8883338015850052e-05 - sys_50: 3.215337901097707e-05 - sys_51: -0.0001440649166288883 - sys_52: -3.2288249087615226e-05 - sys_53: -0.0001052465608099468 - sys_54: -4.090375959635011e-05 - sys_55: -2.7222406676809135e-06 - sys_56: 3.897810611603847e-05 - sys_57: -1.385044170171715e-05 - sys_58: -1.9346878460292607e-05 - sys_59: 4.257450955669296e-06 - sys_60: 3.1018937478035e-05 - sys_61: 2.6361006245701175e-05 - sys_62: -3.129260361837072e-05 + sys_0: 0.0001224854415855307 + sys_1: -3.4357942270368546e-05 + sys_2: -0.00023765880116288483 + sys_3: -6.0301564520731645e-05 + sys_4: 9.995524578494128e-05 + sys_5: 3.4364906732318316e-05 + sys_6: -0.00012534956536635472 + sys_7: 2.6676032025224994e-05 + sys_8: -0.00014619952757578968 + sys_9: 9.186852784178643e-05 + sys_10: -9.05586566203973e-05 + sys_11: -0.0001453552320528314 + sys_12: -0.00013218383245239035 + sys_13: -0.00015362867292192283 + sys_14: -0.00019813149751098143 + sys_15: -0.0001516024108186261 + sys_16: 0.0001636005333130091 + sys_17: -0.0002910339933829496 + sys_18: -0.00021293357785114647 + sys_19: -0.00014968918858470864 + sys_20: -5.6669222139941345e-05 + sys_21: -0.0005201202044566027 + sys_22: 0.0004397428173820297 + sys_23: -0.00046152738105858176 + sys_24: 0.0001688909831748639 + sys_25: -1.936622400888346e-06 + sys_26: -5.756616184509884e-05 + sys_27: 0.0006992701775183079 + sys_28: 0.00013049568755151095 + sys_29: 0.0027882205075596997 + sys_30: 0.0022399975026018565 + sys_31: 0.0006535648670677159 + sys_32: 0.00044192308444771 + sys_33: 9.87753786319789e-05 + sys_34: 2.6186575711127554e-05 + sys_35: 1.1859117526538744e-05 + sys_36: -2.7891598480275667e-05 + sys_37: 0.0002586154229774747 + sys_38: 1.784022507429243e-05 + sys_39: -2.9512289410323707e-05 + sys_40: -5.197485688944121e-05 + sys_41: -9.40302521721393e-06 + sys_42: 0.0001655750699473686 + sys_43: -4.332134770735631e-05 + sys_44: 2.7576179475250252e-05 + sys_45: -2.7976070007301437e-05 + sys_46: -2.0422226854710427e-05 + sys_47: -1.3550366065546877e-06 + sys_48: -4.613702544253135e-06 + sys_49: 2.888333801584551e-05 + sys_50: -3.2153379010973785e-05 + sys_51: 0.00014406491662888977 + sys_52: -3.228824908758744e-05 + sys_53: -0.00010524656080995307 + sys_54: -4.090375959635114e-05 + sys_55: -2.7222406676806437e-06 + sys_56: 3.89781061160368e-05 + sys_57: -1.3850441701720223e-05 + sys_58: -1.934687846029127e-05 + sys_59: 4.257450955670183e-06 + sys_60: 3.101893747803526e-05 + sys_61: 2.6361006245700375e-05 + sys_62: -3.129260361836981e-05 - pol: 0.00056768 lumi: 0.00047 - sys_0: 0.00012060344512765474 - sys_1: -3.5183805700364714e-05 - sys_2: -0.0002325245829025897 - sys_3: -5.6127042593326035e-05 - sys_4: -9.882198147047523e-05 - sys_5: -3.7990546626812845e-05 - sys_6: 0.00013280623916606406 - sys_7: 2.7952038564605732e-05 - sys_8: 0.00015477239956304456 - sys_9: -9.91920012085065e-05 - sys_10: 0.00010745945450041724 - sys_11: 0.0001621533593228277 - sys_12: -0.0001575045576617839 - sys_13: 0.00018347731392150362 - sys_14: 0.00024223273542036555 - sys_15: 0.00021163613369098818 - sys_16: -0.00018201429359366038 - sys_17: 0.0004459159975498254 - sys_18: 0.0003614939517424964 - sys_19: 0.0002477217261997762 - sys_20: 9.606683284571211e-05 - sys_21: 0.0016192179229095693 - sys_22: -0.0029435127427043226 - sys_23: -0.003646267975050373 - sys_24: 0.0003423915885436471 - sys_25: 0.00011780209473006588 - sys_26: 5.90853422539216e-05 - sys_27: 0.0003402424233113583 - sys_28: 4.83178314087445e-07 - sys_29: 0.00014008973127934546 - sys_30: 5.342511557567144e-05 - sys_31: -9.606196102382888e-05 - sys_32: -9.813380829842779e-05 - sys_33: -2.9706069912592883e-05 - sys_34: -8.280763847916458e-05 - sys_35: -1.0467499760866998e-05 - sys_36: -1.8194079524310204e-05 - sys_37: 6.141677462494367e-05 - sys_38: -3.3484029708072983e-05 - sys_39: -5.402335157359794e-05 - sys_40: 1.2882477862924122e-05 - sys_41: -1.0011272758565052e-05 - sys_42: 2.7355379419018473e-05 - sys_43: 2.485796437637832e-05 - sys_44: -1.6880555479929284e-05 - sys_45: 4.232753470266345e-05 - sys_46: -3.612489114138119e-06 - sys_47: -3.9191243442960495e-06 - sys_48: 1.9387812381034328e-06 - sys_49: -1.1728697947381554e-05 - sys_50: 1.3256952353926231e-05 - sys_51: -5.9478062745615055e-05 - sys_52: -1.4118366235862949e-05 - sys_53: -4.513240244573233e-05 - sys_54: -1.4341076855325383e-05 - sys_55: -4.141952892280753e-06 - sys_56: 5.123427540823842e-06 - sys_57: -2.0926381307912334e-05 - sys_58: -4.230097836652726e-05 - sys_59: 6.072533779221164e-06 - sys_60: 2.270011321926601e-05 - sys_61: 1.983703985039926e-05 - sys_62: -2.4610015835100314e-05 + sys_0: 0.00012060344512765617 + sys_1: -3.518380570036654e-05 + sys_2: -0.00023252458290258954 + sys_3: -5.6127042593324985e-05 + sys_4: 9.882198147047589e-05 + sys_5: 3.799054662681284e-05 + sys_6: -0.00013280623916606555 + sys_7: 2.7952038564599216e-05 + sys_8: -0.00015477239956304556 + sys_9: 9.919200120850535e-05 + sys_10: -0.00010745945450041411 + sys_11: -0.00016215335932282839 + sys_12: -0.00015750455766178309 + sys_13: -0.00018347731392150514 + sys_14: -0.00024223273542036498 + sys_15: -0.00021163613369099671 + sys_16: 0.00018201429359365675 + sys_17: -0.0004459159975498253 + sys_18: -0.0003614939517424867 + sys_19: -0.00024772172619978114 + sys_20: -9.606683284569619e-05 + sys_21: -0.001619217922909569 + sys_22: 0.0029435127427043938 + sys_23: 0.0036462679750503407 + sys_24: -0.00034239158854358924 + sys_25: -0.00011780209473000418 + sys_26: -5.908534225391166e-05 + sys_27: -0.0003402424233113569 + sys_28: -4.83178314089448e-07 + sys_29: -0.00014008973127934188 + sys_30: 5.3425115575672626e-05 + sys_31: 9.606196102383014e-05 + sys_32: 9.813380829842673e-05 + sys_33: 2.970606991259497e-05 + sys_34: 1.288247786292481e-05 + sys_35: 1.0011272758565039e-05 + sys_36: -2.7355379419018405e-05 + sys_37: 8.280763847916863e-05 + sys_38: -1.0467499760867646e-05 + sys_39: -1.8194079524311394e-05 + sys_40: -6.141677462494235e-05 + sys_41: -3.3484029708071005e-05 + sys_42: 5.402335157359868e-05 + sys_43: -2.485796437637887e-05 + sys_44: 1.688055547992839e-05 + sys_45: -4.232753470266291e-05 + sys_46: -3.612489114130077e-06 + sys_47: -3.919124344296112e-06 + sys_48: -1.938781238105004e-06 + sys_49: 1.1728697947380304e-05 + sys_50: -1.3256952353924332e-05 + sys_51: 5.947806274561518e-05 + sys_52: -1.4118366235851307e-05 + sys_53: -4.513240244573518e-05 + sys_54: -1.4341076855325339e-05 + sys_55: -4.141952892280118e-06 + sys_56: 5.123427540822324e-06 + sys_57: -2.09263813079136e-05 + sys_58: -4.2300978366527453e-05 + sys_59: 6.072533779221483e-06 + sys_60: 2.2700113219265837e-05 + sys_61: 1.9837039850398595e-05 + sys_62: -2.4610015835099277e-05 - pol: 0.0006303999999999999 lumi: 0.00047 - sys_0: 0.00012524497467057203 - sys_1: -4.8015397058165176e-05 - sys_2: -0.00023754394824966382 - sys_3: -5.9567357928944764e-05 - sys_4: -0.00011492471086616565 - sys_5: -6.98423169024891e-05 - sys_6: 0.00016180711349157945 - sys_7: 2.331713913806593e-05 - sys_8: 0.0001711940191287703 - sys_9: -0.00012877114389683015 - sys_10: 0.00021733609964711821 - sys_11: 0.00025952405361505496 - sys_12: -0.0003308710533589687 - sys_13: 0.0005387495223513149 - sys_14: 0.0012024961988339655 - sys_15: 0.0070715556940923055 - sys_16: 0.0018496576301853522 - sys_17: -0.0008856890747542066 - sys_18: -0.00043458435763206113 - sys_19: -0.00016300480527956616 - sys_20: -3.880580283978109e-05 - sys_21: -0.0002514762260463716 - sys_22: 0.00015644698239879328 - sys_23: -7.377917329102422e-05 - sys_24: -1.0385595503442852e-05 - sys_25: 6.442620376734457e-05 - sys_26: 7.76637425436441e-05 - sys_27: 8.548048508768286e-05 - sys_28: 2.3330211925610869e-07 - sys_29: 3.308485583537096e-05 - sys_30: 8.046865875849096e-06 - sys_31: -2.3718844002167013e-05 - sys_32: -1.5738393250698926e-05 - sys_33: -1.077572986519204e-05 - sys_34: -2.2502837116819852e-05 - sys_35: -2.0753728813462823e-05 - sys_36: -1.5895585549970988e-05 - sys_37: 5.955664081250632e-05 - sys_38: -4.958954875715103e-05 - sys_39: -1.1891171731642284e-05 - sys_40: 2.6905074200392665e-06 - sys_41: -3.997978755678579e-06 - sys_42: 1.2619401554534768e-05 - sys_43: 1.9875918793367877e-05 - sys_44: -8.362063841115066e-06 - sys_45: 3.15490287447072e-05 - sys_46: 2.3786569482052516e-06 - sys_47: -1.247701696212038e-06 - sys_48: 6.563858718829505e-07 - sys_49: -1.0418627816019142e-05 - sys_50: 3.532937979055286e-06 - sys_51: -1.755168573848319e-05 - sys_52: -5.182435653269649e-06 - sys_53: -1.5823792006555897e-05 - sys_54: -4.3691014029130965e-06 - sys_55: -4.387732543393388e-06 - sys_56: -1.1726622184269758e-05 - sys_57: -2.183261844808709e-05 - sys_58: -4.6540653954909604e-05 - sys_59: 4.633614972467971e-06 - sys_60: 1.3043473495884425e-05 - sys_61: 1.1589314247329402e-05 - sys_62: -1.7937886153852928e-05 + sys_0: 0.00012524497467057298 + sys_1: -4.8015397058166226e-05 + sys_2: -0.00023754394824966458 + sys_3: -5.956735792894266e-05 + sys_4: 0.00011492471086616659 + sys_5: 6.984231690248995e-05 + sys_6: -0.0001618071134915834 + sys_7: 2.331713913806026e-05 + sys_8: -0.00017119401912876907 + sys_9: 0.00012877114389682655 + sys_10: -0.00021733609964711087 + sys_11: -0.00025952405361505745 + sys_12: -0.00033087105335896156 + sys_13: -0.0005387495223513188 + sys_14: -0.0012024961988339813 + sys_15: -0.007071555694092261 + sys_16: -0.0018496576301854834 + sys_17: 0.0008856890747542383 + sys_18: 0.00043458435763207344 + sys_19: 0.00016300480527958012 + sys_20: 3.8805802839782514e-05 + sys_21: 0.00025147622604637654 + sys_22: -0.00015644698239879523 + sys_23: 7.377917329102599e-05 + sys_24: 1.038559550344117e-05 + sys_25: -6.442620376734635e-05 + sys_26: -7.766374254364412e-05 + sys_27: -8.548048508768271e-05 + sys_28: -2.3330211925606983e-07 + sys_29: -3.308485583537062e-05 + sys_30: 8.046865875848361e-06 + sys_31: 2.3718844002167196e-05 + sys_32: 1.5738393250698475e-05 + sys_33: 1.0775729865191936e-05 + sys_34: 2.6905074200394905e-06 + sys_35: 3.997978755678076e-06 + sys_36: -1.2619401554534248e-05 + sys_37: 2.25028371168207e-05 + sys_38: -2.075372881346379e-05 + sys_39: -1.5895585549972624e-05 + sys_40: -5.955664081250554e-05 + sys_41: -4.9589548757150034e-05 + sys_42: 1.1891171731642438e-05 + sys_43: -1.9875918793368317e-05 + sys_44: 8.362063841114631e-06 + sys_45: -3.154902874470723e-05 + sys_46: 2.3786569482114464e-06 + sys_47: -1.247701696211914e-06 + sys_48: -6.563858718843679e-07 + sys_49: 1.0418627816019044e-05 + sys_50: -3.5329379790548334e-06 + sys_51: 1.7551685738483072e-05 + sys_52: -5.1824356532658356e-06 + sys_53: -1.582379200655698e-05 + sys_54: -4.36910140291293e-06 + sys_55: -4.38773254339282e-06 + sys_56: -1.1726622184270726e-05 + sys_57: -2.1832618448087152e-05 + sys_58: -4.654065395491069e-05 + sys_59: 4.63361497246823e-06 + sys_60: 1.3043473495884488e-05 + sys_61: 1.158931424732893e-05 + sys_62: -1.793788615385206e-05 - pol: 0.00022464000000000002 lumi: 0.00047 - sys_0: 0.00013797818090967548 - sys_1: -6.253508756556351e-05 - sys_2: -0.0002694990888720989 - sys_3: -6.780898983950574e-05 - sys_4: -0.0001442228018152258 - sys_5: -0.00014414274125749716 - sys_6: 0.0002839245120341925 - sys_7: -3.30784111945282e-06 - sys_8: 5.7720957101302634e-05 - sys_9: -0.0004123695679652298 - sys_10: 0.010800293076634162 - sys_11: -0.001823717565465047 - sys_12: 0.0007181163532439707 - sys_13: -0.00011919863115660462 - sys_14: -5.821784844838156e-05 - sys_15: -9.039745708611505e-05 - sys_16: -0.00021622423625029162 - sys_17: -0.00014885696818257561 - sys_18: -9.583605560780349e-05 - sys_19: -2.5022007929591847e-05 - sys_20: -9.641516930689712e-07 - sys_21: -4.9668028691924446e-05 - sys_22: 2.4879421294017244e-05 - sys_23: 9.992878298831074e-06 - sys_24: -3.6072488093724735e-05 - sys_25: 7.679435871770902e-05 - sys_26: 0.00011069036364125201 - sys_27: 6.054878516142296e-05 - sys_28: 1.7536028030694197e-05 - sys_29: 1.5651088031251088e-05 - sys_30: 3.293019363177002e-06 - sys_31: -8.193321492196157e-06 - sys_32: 3.3320507101314015e-06 - sys_33: -5.038633265838798e-06 - sys_34: -5.7197023567615564e-06 - sys_35: -2.4010219633949166e-05 - sys_36: -1.584440321613537e-05 - sys_37: 5.833272947884413e-05 - sys_38: -5.9866427109669e-05 - sys_39: 1.9454928131892423e-06 - sys_40: -4.2078538783099935e-07 - sys_41: -1.3084020138104045e-06 - sys_42: 4.108092216978269e-06 - sys_43: 2.159851976280965e-05 - sys_44: -3.881243483446274e-06 - sys_45: 1.511092153611614e-05 - sys_46: 1.658318388868519e-06 - sys_47: 2.1239107780569795e-06 - sys_48: 5.1415140478256745e-08 - sys_49: -1.652165082584585e-05 - sys_50: -2.778470974867268e-07 - sys_51: -2.75645543507734e-06 - sys_52: -2.9290144784962157e-06 - sys_53: -7.599476653717472e-06 - sys_54: -7.140793353352964e-06 - sys_55: -4.019952395573519e-06 - sys_56: -1.5101912799861564e-05 - sys_57: -1.7504171365872624e-05 - sys_58: -3.4857297854943104e-05 - sys_59: 1.656204678541041e-06 - sys_60: 7.493554122870287e-06 - sys_61: 5.133246062037758e-06 - sys_62: -8.765238452691044e-06 + sys_0: 0.00013797818090967678 + sys_1: -6.253508756556424e-05 + sys_2: -0.00026949908887210025 + sys_3: -6.780898983950155e-05 + sys_4: 0.00014422280181522704 + sys_5: 0.00014414274125750215 + sys_6: -0.00028392451203420216 + sys_7: -3.307841119470947e-06 + sys_8: -5.7720957101306713e-05 + sys_9: 0.0004123695679652289 + sys_10: -0.010800293076634179 + sys_11: 0.0018237175654648278 + sys_12: 0.0007181163532439831 + sys_13: 0.00011919863115660023 + sys_14: 5.821784844838493e-05 + sys_15: 9.039745708610971e-05 + sys_16: 0.00021622423625029593 + sys_17: 0.0001488569681825774 + sys_18: 9.583605560780358e-05 + sys_19: 2.502200792959727e-05 + sys_20: 9.641516930687437e-07 + sys_21: 4.966802869192107e-05 + sys_22: -2.487942129401874e-05 + sys_23: -9.992878298829953e-06 + sys_24: 3.607248809372361e-05 + sys_25: -7.67943587177112e-05 + sys_26: -0.00011069036364125145 + sys_27: -6.054878516142335e-05 + sys_28: -1.75360280306939e-05 + sys_29: -1.5651088031250417e-05 + sys_30: 3.2930193631772214e-06 + sys_31: 8.193321492195966e-06 + sys_32: -3.332050710131893e-06 + sys_33: 5.038633265839062e-06 + sys_34: -4.207853878309827e-07 + sys_35: 1.3084020138102038e-06 + sys_36: -4.108092216977815e-06 + sys_37: 5.7197023567624755e-06 + sys_38: -2.4010219633949485e-05 + sys_39: -1.584440321613753e-05 + sys_40: -5.8332729478843735e-05 + sys_41: -5.986642710966737e-05 + sys_42: -1.9454928131891576e-06 + sys_43: -2.1598519762810054e-05 + sys_44: 3.881243483446068e-06 + sys_45: -1.5110921536116216e-05 + sys_46: 1.6583183888715445e-06 + sys_47: 2.123910778056876e-06 + sys_48: -5.1415140479049104e-08 + sys_49: 1.6521650825846036e-05 + sys_50: 2.7784709748739363e-07 + sys_51: 2.756455435077026e-06 + sys_52: -2.929014478493486e-06 + sys_53: -7.599476653718229e-06 + sys_54: -7.140793353352922e-06 + sys_55: -4.019952395573206e-06 + sys_56: -1.5101912799862426e-05 + sys_57: -1.7504171365872353e-05 + sys_58: -3.485729785494415e-05 + sys_59: 1.6562046785409497e-06 + sys_60: 7.493554122870202e-06 + sys_61: 5.133246062037376e-06 + sys_62: -8.765238452690356e-06 - pol: 0.00201024 lumi: 0.00047 - sys_0: 0.00021070369155553166 - sys_1: -0.00014799060488164187 - sys_2: -0.0004174024247700332 - sys_3: -0.00012642523781635273 - sys_4: -0.000794699162592124 - sys_5: -0.017870389456176066 - sys_6: -0.0018550535328726895 - sys_7: 0.00042603327869722863 - sys_8: 0.000596664728496441 - sys_9: 0.0002472102161127621 - sys_10: -0.00013208430337978256 - sys_11: -8.8459605142422e-05 - sys_12: 0.00014852348179902539 - sys_13: 1.1076291365991774e-05 - sys_14: 4.6688762073671594e-05 - sys_15: 2.2350827392850632e-05 - sys_16: -0.00027987944437208917 - sys_17: -5.4681850419138545e-05 - sys_18: -3.487614313195926e-05 - sys_19: -1.0928250682934854e-05 - sys_20: -8.974232209960965e-06 - sys_21: -8.757515034958139e-06 - sys_22: -2.2132673047422143e-06 - sys_23: 2.202241253720323e-05 - sys_24: -3.12512176727658e-05 - sys_25: 6.516080622780092e-05 - sys_26: 0.00010184423555507495 - sys_27: 4.461500061402335e-05 - sys_28: 3.081164154287244e-05 - sys_29: 1.0248935229576571e-05 - sys_30: 4.124942157792971e-06 - sys_31: -2.197273453273716e-06 - sys_32: 5.03886785508928e-07 - sys_33: -1.5067079734055572e-06 - sys_34: -1.2361466638974728e-06 - sys_35: -1.0741631903409709e-05 - sys_36: -7.903810852582425e-06 - sys_37: 2.9645975648252653e-05 - sys_38: -3.385852416185882e-05 - sys_39: 3.4175365722682803e-06 - sys_40: -7.054438721630587e-07 - sys_41: -3.117580843300394e-07 - sys_42: 7.757375079855973e-07 - sys_43: 1.3350328014090188e-05 - sys_44: -8.990038325014469e-07 - sys_45: 4.2300116559206195e-06 - sys_46: 7.927931231610627e-07 - sys_47: 1.9002829563846985e-06 - sys_48: -1.0283742217240064e-07 - sys_49: -1.4129992894860344e-05 - sys_50: -1.3526588590626465e-06 - sys_51: 2.2769051754178447e-06 - sys_52: -1.5934731915517313e-06 - sys_53: -3.488051461364192e-06 - sys_54: -7.183521651839205e-06 - sys_55: -2.118386890171846e-06 - sys_56: -8.37966247443933e-06 - sys_57: -7.643518688908406e-06 - sys_58: -1.2008737531920659e-05 - sys_59: -3.4950666816699524e-07 - sys_60: 2.720507290801974e-06 - sys_61: 2.560011815777984e-07 - sys_62: 1.5353520352043207e-08 + sys_0: 0.00021070369155553494 + sys_1: -0.00014799060488164512 + sys_2: -0.00041740242477003277 + sys_3: -0.00012642523781634712 + sys_4: 0.0007946991625921378 + sys_5: 0.017870389456176073 + sys_6: 0.0018550535328726691 + sys_7: 0.00042603327869730886 + sys_8: -0.0005966647284964444 + sys_9: -0.00024721021611277035 + sys_10: 0.00013208430337978172 + sys_11: 8.84596051424264e-05 + sys_12: 0.00014852348179902593 + sys_13: -1.107629136599137e-05 + sys_14: -4.6688762073667684e-05 + sys_15: -2.2350827392856314e-05 + sys_16: 0.00027987944437208933 + sys_17: 5.468185041913925e-05 + sys_18: 3.4876143131959196e-05 + sys_19: 1.0928250682937673e-05 + sys_20: 8.974232209960603e-06 + sys_21: 8.757515034957617e-06 + sys_22: 2.213267304741555e-06 + sys_23: -2.202241253720261e-05 + sys_24: 3.1251217672764975e-05 + sys_25: -6.516080622780227e-05 + sys_26: -0.00010184423555507363 + sys_27: -4.461500061402381e-05 + sys_28: -3.0811641542871677e-05 + sys_29: -1.0248935229576339e-05 + sys_30: 4.124942157792563e-06 + sys_31: 2.1972734532740163e-06 + sys_32: -5.03886785508994e-07 + sys_33: 1.5067079734057024e-06 + sys_34: -7.054438721630491e-07 + sys_35: 3.117580843299495e-07 + sys_36: -7.75737507985434e-07 + sys_37: 1.2361466638981447e-06 + sys_38: -1.0741631903409914e-05 + sys_39: -7.90381085258355e-06 + sys_40: -2.964597564825255e-05 + sys_41: -3.385852416185781e-05 + sys_42: -3.4175365722683815e-06 + sys_43: -1.335032801409027e-05 + sys_44: 8.990038325014787e-07 + sys_45: -4.230011655920476e-06 + sys_46: 7.927931231619316e-07 + sys_47: 1.9002829563847734e-06 + sys_48: 1.0283742217216271e-07 + sys_49: 1.4129992894860476e-05 + sys_50: 1.3526588590628508e-06 + sys_51: -2.2769051754179875e-06 + sys_52: -1.5934731915502956e-06 + sys_53: -3.4880514613645766e-06 + sys_54: -7.183521651839259e-06 + sys_55: -2.118386890171709e-06 + sys_56: -8.379662474439505e-06 + sys_57: -7.643518688907937e-06 + sys_58: -1.2008737531921299e-05 + sys_59: -3.4950666816709794e-07 + sys_60: 2.7205072908019886e-06 + sys_61: 2.5600118157769925e-07 + sys_62: 1.5353520352388247e-08 - pol: 0.00071296 lumi: 0.00047 - sys_0: 0.0025851905702851626 + sys_0: 0.0025851905702849857 sys_1: -0.031665608226896735 - sys_2: 0.00324020582758914 - sys_3: 0.0005126219912550078 - sys_4: 0.00013203207180924936 - sys_5: 0.00017163699167319505 - sys_6: -0.0003045268160283499 - sys_7: 0.000144435471731364 - sys_8: 0.000573918175102801 - sys_9: 0.00012787127099239443 - sys_10: -3.336466005524335e-05 - sys_11: -2.555253772991945e-05 - sys_12: 5.1666046650555316e-05 - sys_13: 1.4540162447785898e-05 - sys_14: 4.15350124476721e-05 - sys_15: 3.0402055135402667e-05 - sys_16: -0.00020114142668918185 - sys_17: -2.4368027323647987e-05 - sys_18: -1.1934358396073508e-05 - sys_19: -9.611888394608268e-06 - sys_20: -1.3332753847871317e-05 - sys_21: -8.71349413439239e-06 - sys_22: 4.327255980732517e-06 - sys_23: 5.8673441414624695e-06 - sys_24: -1.102842560327959e-05 - sys_25: 2.380835837804678e-05 - sys_26: 4.471703421863622e-05 - sys_27: 2.0249370295485107e-05 - sys_28: 1.8370763882968028e-05 - sys_29: 5.106475223636994e-06 - sys_30: 2.8909895801030003e-06 - sys_31: -4.5176469149223497e-07 - sys_32: -2.1331885649507036e-06 - sys_33: -5.861813631934522e-07 - sys_34: -5.680693746222383e-07 - sys_35: -1.4129079568064149e-06 - sys_36: -1.5232920209646311e-06 - sys_37: 7.474502324711622e-06 - sys_38: -8.732740289118672e-06 - sys_39: 9.51041208678353e-07 - sys_40: -3.6693484150779514e-07 - sys_41: -6.439305399227776e-08 - sys_42: 8.605320767016857e-08 - sys_43: 4.024341687956793e-06 - sys_44: -3.3075036580189784e-08 - sys_45: 9.500328563702148e-07 - sys_46: 3.70810071290933e-07 - sys_47: 7.88385370953907e-07 - sys_48: -6.617750026291332e-08 - sys_49: -6.279665560139236e-06 - sys_50: -7.745577303761618e-07 - sys_51: 1.8784142519920598e-06 - sys_52: -6.10510110992285e-07 - sys_53: -1.1228199344917284e-06 - sys_54: -3.6508076465715218e-06 - sys_55: -8.270562802482827e-07 - sys_56: -3.4320316637608945e-06 - sys_57: -2.438266732148096e-06 - sys_58: -2.665392448752788e-06 - sys_59: -5.654915820305557e-07 - sys_60: 6.253765161472477e-07 - sys_61: -5.82714158106794e-07 - sys_62: 1.2561227554127553e-06 + sys_2: 0.0032402058275893147 + sys_3: 0.0005126219912549749 + sys_4: -0.000132032071809247 + sys_5: -0.00017163699167319443 + sys_6: 0.00030452681602834034 + sys_7: 0.00014443547173137588 + sys_8: -0.0005739181751028004 + sys_9: -0.00012787127099239876 + sys_10: 3.33646600552409e-05 + sys_11: 2.5552537729918395e-05 + sys_12: 5.166604665055542e-05 + sys_13: -1.4540162447786215e-05 + sys_14: -4.1535012447673515e-05 + sys_15: -3.0402055135406977e-05 + sys_16: 0.00020114142668918152 + sys_17: 2.4368027323647943e-05 + sys_18: 1.1934358396073606e-05 + sys_19: 9.611888394609517e-06 + sys_20: 1.3332753847871027e-05 + sys_21: 8.713494134392738e-06 + sys_22: -4.32725598073241e-06 + sys_23: -5.86734414146228e-06 + sys_24: 1.1028425603278865e-05 + sys_25: -2.380835837804749e-05 + sys_26: -4.471703421863611e-05 + sys_27: -2.0249370295485263e-05 + sys_28: -1.837076388296796e-05 + sys_29: -5.106475223636746e-06 + sys_30: 2.8909895801029114e-06 + sys_31: 4.5176469149220353e-07 + sys_32: 2.1331885649506553e-06 + sys_33: 5.861813631934867e-07 + sys_34: -3.669348415077824e-07 + sys_35: 6.439305399227466e-08 + sys_36: -8.605320767015985e-08 + sys_37: 5.680693746224145e-07 + sys_38: -1.4129079568065195e-06 + sys_39: -1.523292020964936e-06 + sys_40: -7.474502324711585e-06 + sys_41: -8.732740289118567e-06 + sys_42: -9.510412086783731e-07 + sys_43: -4.024341687956879e-06 + sys_44: 3.3075036580181055e-08 + sys_45: -9.500328563700852e-07 + sys_46: 3.7081007129116923e-07 + sys_47: 7.883853709538953e-07 + sys_48: 6.61775002629149e-08 + sys_49: 6.2796655601392715e-06 + sys_50: 7.745577303762858e-07 + sys_51: -1.8784142519920393e-06 + sys_52: -6.105101109916233e-07 + sys_53: -1.122819934491939e-06 + sys_54: -3.6508076465717267e-06 + sys_55: -8.270562802481833e-07 + sys_56: -3.432031663760935e-06 + sys_57: -2.438266732148044e-06 + sys_58: -2.6653924487530153e-06 + sys_59: -5.654915820305617e-07 + sys_60: 6.253765161472277e-07 + sys_61: -5.827141581067721e-07 + sys_62: 1.256122755412822e-06 diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2015_1JET_200GEV/uncertainties_CC.yaml b/nnpdf_data/nnpdf_data/new_commondata/STAR_2015_1JET_200GEV/uncertainties_CC.yaml index e9f0e63bde..6155f79212 100644 --- a/nnpdf_data/nnpdf_data/new_commondata/STAR_2015_1JET_200GEV/uncertainties_CC.yaml +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2015_1JET_200GEV/uncertainties_CC.yaml @@ -154,419 +154,419 @@ definitions: bins: - lumi: 0.0007 pol: 1.22e-05 - sys_0: 2.809959437757453e-05 - sys_1: -7.185392731632926e-06 - sys_2: 2.032057491627476e-05 - sys_3: 1.9819369009025838e-05 - sys_4: -2.364871675859988e-05 - sys_5: 8.650219323299149e-05 - sys_6: -2.174034766270273e-05 - sys_7: 4.019382956998368e-05 - sys_8: -2.6847481352734624e-05 - sys_9: 6.102559860998911e-05 - sys_10: 9.151332020142007e-05 - sys_11: -9.403203974284458e-05 - sys_12: 3.825634787164059e-05 - sys_13: -0.00012603378487528342 - sys_14: 0.00020212422029433126 - sys_15: -0.0003717807941914203 - sys_16: 0.000116588625227863 - sys_17: -0.0002296367619210727 - sys_18: 5.6743176030740096e-05 - sys_19: -0.0001312302124088049 - sys_20: -0.0004753312842740866 - sys_21: -0.0011933124320179292 - sys_22: -0.0004372565456283063 - sys_23: -0.0002021157871700671 - sys_24: -0.0008139502948908713 - sys_25: 0.00011838917732219757 - sys_26: 0.00013248180517322575 - sys_27: -0.0004960975183387767 - sys_28: 1.4965574734465321e-05 - sys_29: 0.0005578784953858285 - sys_30: -9.311393813485821e-05 - sys_31: -0.0008378635705710827 - sys_32: 8.273770777404491e-06 - sys_33: -0.00016155422445124023 - sys_34: 0.00015049207022036924 - sys_35: 1.5596687777284e-05 + sys_0: 2.80995943775724e-05 + sys_1: -7.185392731626597e-06 + sys_2: 2.032057491627907e-05 + sys_3: 1.981936900902636e-05 + sys_4: -2.3648716758595145e-05 + sys_5: 8.650219323298458e-05 + sys_6: -2.1740347662703536e-05 + sys_7: 4.01938295699787e-05 + sys_8: -2.6847481352732856e-05 + sys_9: 6.102559860998713e-05 + sys_10: 9.151332020141466e-05 + sys_11: -9.403203974284099e-05 + sys_12: 3.8256347871638106e-05 + sys_13: -0.00012603378487527413 + sys_14: 0.0002021242202943228 + sys_15: -0.0003717807941914082 + sys_16: 0.00011658862522783647 + sys_17: -0.00022963676192106167 + sys_18: 5.6743176030735854e-05 + sys_19: -0.00013123021240879786 + sys_20: -0.00047533128427407315 + sys_21: -0.0011933124320179104 + sys_22: -0.0004372565456283144 + sys_23: -0.0002021157871700649 + sys_24: -0.0008139502948908743 + sys_25: 0.0001183891773222148 + sys_26: 0.00013248180517322534 + sys_27: -0.0004960975183387517 + sys_28: 1.496557473447323e-05 + sys_29: 0.0005578784953858462 + sys_30: -9.311393813484636e-05 + sys_31: -0.0008378635705710963 + sys_32: 8.273770777402966e-06 + sys_33: -0.00016155422445120464 + sys_34: 0.0001504920702204098 + sys_35: 1.55966877772973e-05 - lumi: 0.0007 pol: 3.6599999999999995e-05 - sys_0: 1.8149426066360522e-05 - sys_1: -4.423934412528832e-06 - sys_2: 1.4395689948905659e-05 - sys_3: 1.8355811290465007e-05 - sys_4: -1.7155939576204963e-05 - sys_5: 6.472329017651851e-05 - sys_6: -2.178393001479839e-05 - sys_7: 2.6439683484474728e-05 - sys_8: -1.9500053202074446e-05 - sys_9: 4.717063750854134e-05 - sys_10: 7.310665766034574e-05 - sys_11: -8.053564639801155e-05 - sys_12: 3.0805018179882256e-05 - sys_13: -0.00010226700621847391 - sys_14: 0.00017087625983496359 - sys_15: -0.0003423310799906059 - sys_16: 8.414996352568861e-05 - sys_17: -0.00021135630918570278 - sys_18: 3.086366974430853e-05 - sys_19: -0.00010611478007238274 - sys_20: -0.00042982184062897386 - sys_21: -0.0011236477365984304 - sys_22: -0.00041255768415914804 - sys_23: -0.0001838085751931462 - sys_24: -0.0008244448704981528 - sys_25: 0.00013322279840738318 - sys_26: 5.596533746237118e-05 - sys_27: -0.0001621382057411061 - sys_28: 1.4607266255739876e-05 - sys_29: 1.05451567242284e-05 - sys_30: -2.176751474050312e-05 - sys_31: 0.0012116679252942766 - sys_32: -1.7984430129058662e-05 - sys_33: -0.00028625916889107167 - sys_34: 0.0003965529449374572 - sys_35: 2.4350602387981475e-05 + sys_0: 1.8149426066360363e-05 + sys_1: -4.423934412531871e-06 + sys_2: 1.439568994890462e-05 + sys_3: 1.835581129046264e-05 + sys_4: -1.7155939576200484e-05 + sys_5: 6.472329017652687e-05 + sys_6: -2.1783930014801445e-05 + sys_7: 2.6439683484473698e-05 + sys_8: -1.950005320207322e-05 + sys_9: 4.717063750854188e-05 + sys_10: 7.310665766034944e-05 + sys_11: -8.053564639802036e-05 + sys_12: 3.080501817988164e-05 + sys_13: -0.00010226700621847664 + sys_14: 0.00017087625983496413 + sys_15: -0.0003423310799906096 + sys_16: 8.414996352566921e-05 + sys_17: -0.00021135630918569834 + sys_18: 3.086366974430738e-05 + sys_19: -0.00010611478007237756 + sys_20: -0.00042982184062896297 + sys_21: -0.001123647736598416 + sys_22: -0.00041255768415915156 + sys_23: -0.00018380857519314467 + sys_24: -0.0008244448704981766 + sys_25: 0.00013322279840740213 + sys_26: 5.596533746237144e-05 + sys_27: -0.00016213820574111857 + sys_28: 1.4607266255734693e-05 + sys_29: 1.0545156724204793e-05 + sys_30: -2.1767514740500437e-05 + sys_31: 0.0012116679252942757 + sys_32: -1.7984430129067274e-05 + sys_33: -0.00028625916889096905 + sys_34: 0.0003965529449374936 + sys_35: 2.4350602387986883e-05 - lumi: 0.0007 pol: 0.00020739999999999997 - sys_0: 2.3737686267900512e-05 - sys_1: -5.1348402274832466e-06 - sys_2: 1.8188519894305523e-05 - sys_3: 1.4426767055528131e-05 - sys_4: -2.007081779898205e-05 - sys_5: 6.950843350959866e-05 - sys_6: -1.4275043443782747e-05 - sys_7: 3.5728858010560964e-05 - sys_8: -1.9971486427864997e-05 - sys_9: 4.99856373408251e-05 - sys_10: 7.098032635183504e-05 - sys_11: -6.78766558071543e-05 - sys_12: 3.381818510471825e-05 - sys_13: -0.0001017462986720906 - sys_14: 0.0001613913863272056 - sys_15: -0.0003196402599757852 - sys_16: 1.363891741293072e-05 - sys_17: -0.0002187616434039494 - sys_18: 5.0754248914926635e-06 - sys_19: -8.077638899250048e-05 - sys_20: -0.00033638390508750803 - sys_21: -0.0007709327327589085 - sys_22: -0.00021863260662754016 - sys_23: -5.852975230342423e-05 - sys_24: -0.00045838048053786713 - sys_25: 7.743209692136095e-05 - sys_26: -0.0008559543252754121 - sys_27: 0.0004828690214644966 - sys_28: -2.2686660436506427e-05 - sys_29: 1.2458681910968605e-05 - sys_30: 7.272391214419092e-06 - sys_31: -0.00021019887964111845 - sys_32: -7.1129991636158285e-06 - sys_33: -6.357098171175973e-05 - sys_34: 7.504460058414215e-05 - sys_35: 5.608715537593189e-06 + sys_0: 2.3737686267901027e-05 + sys_1: -5.134840227485604e-06 + sys_2: 1.8188519894303968e-05 + sys_3: 1.4426767055525588e-05 + sys_4: -2.0070817798979522e-05 + sys_5: 6.950843350960302e-05 + sys_6: -1.4275043443783726e-05 + sys_7: 3.57288580105617e-05 + sys_8: -1.9971486427864994e-05 + sys_9: 4.998563734082696e-05 + sys_10: 7.098032635183603e-05 + sys_11: -6.78766558071562e-05 + sys_12: 3.3818185104715403e-05 + sys_13: -0.00010174629867209477 + sys_14: 0.00016139138632720497 + sys_15: -0.0003196402599757823 + sys_16: 1.3638917412910627e-05 + sys_17: -0.00021876164340394694 + sys_18: 5.075424891491933e-06 + sys_19: -8.077638899249846e-05 + sys_20: -0.00033638390508749887 + sys_21: -0.0007709327327588983 + sys_22: -0.00021863260662754644 + sys_23: -5.852975230342034e-05 + sys_24: -0.0004583804805378727 + sys_25: 7.743209692137518e-05 + sys_26: -0.0008559543252754199 + sys_27: 0.0004828690214645595 + sys_28: -2.2686660436514938e-05 + sys_29: 1.2458681910951727e-05 + sys_30: 7.272391214423745e-06 + sys_31: -0.00021019887964113774 + sys_32: -7.112999163617277e-06 + sys_33: -6.357098171173509e-05 + sys_34: 7.504460058414369e-05 + sys_35: 5.6087155375965646e-06 - lumi: 0.0007 pol: 0.0002501 - sys_0: 1.937683040766588e-05 - sys_1: -5.396669160663762e-06 - sys_2: 1.4897495063307904e-05 - sys_3: 1.1518787349516082e-05 - sys_4: -1.7337277017991964e-05 - sys_5: 5.794060749041637e-05 - sys_6: -1.2232374813046683e-05 - sys_7: 3.225134943571696e-05 - sys_8: -1.5858074848960698e-05 - sys_9: 4.4256556494805665e-05 - sys_10: 6.467836680618835e-05 - sys_11: -5.4885613291424813e-05 - sys_12: 3.5335917342187895e-05 - sys_13: -0.00010487122828378171 - sys_14: 0.00016092565898699789 - sys_15: -0.00027589049926684227 - sys_16: -1.6256712441390517e-06 - sys_17: -0.00024287672965101292 - sys_18: 5.977245824441434e-06 - sys_19: -0.00010533773300395895 - sys_20: -0.0003230478830797316 - sys_21: -0.0006188374129024658 - sys_22: -0.0001150610534536165 - sys_23: 1.0925562213513696e-05 - sys_24: -0.0003608059886809807 - sys_25: 9.228803433473298e-05 - sys_26: 0.0005615512333141956 - sys_27: 0.0008946172755380109 - sys_28: -6.221841553725663e-05 - sys_29: 0.00010171308643277497 - sys_30: 3.8460913908612004e-05 - sys_31: -0.00018672735494979702 - sys_32: -2.170012654470621e-05 - sys_33: -5.015401758617945e-05 - sys_34: 0.00010863419134059101 - sys_35: 1.4071100325029457e-05 + sys_0: 1.9376830407666145e-05 + sys_1: -5.3966691606661926e-06 + sys_2: 1.4897495063306011e-05 + sys_3: 1.1518787349511025e-05 + sys_4: -1.7337277017990022e-05 + sys_5: 5.794060749042457e-05 + sys_6: -1.223237481305029e-05 + sys_7: 3.225134943572197e-05 + sys_8: -1.585807484895997e-05 + sys_9: 4.425655649481079e-05 + sys_10: 6.467836680619511e-05 + sys_11: -5.4885613291428385e-05 + sys_12: 3.5335917342188586e-05 + sys_13: -0.00010487122828378667 + sys_14: 0.00016092565898699883 + sys_15: -0.0002758904992668378 + sys_16: -1.6256712441579895e-06 + sys_17: -0.00024287672965100896 + sys_18: 5.97724582443825e-06 + sys_19: -0.00010533773300395862 + sys_20: -0.00032304788307972883 + sys_21: -0.0006188374129024623 + sys_22: -0.00011506105345362744 + sys_23: 1.0925562213506195e-05 + sys_24: -0.0003608059886809504 + sys_25: 9.228803433472818e-05 + sys_26: 0.000561551233314192 + sys_27: 0.0008946172755379665 + sys_28: -6.221841553726705e-05 + sys_29: 0.00010171308643276757 + sys_30: 3.8460913908614735e-05 + sys_31: -0.00018672735494979973 + sys_32: -2.170012654470431e-05 + sys_33: -5.015401758616723e-05 + sys_34: 0.00010863419134062401 + sys_35: 1.407110032503964e-05 - lumi: 0.0007 pol: 0.000427 - sys_0: 2.364590233562442e-05 - sys_1: -6.989083842170735e-06 - sys_2: 1.5776530766100676e-05 - sys_3: 1.080621324964769e-05 - sys_4: -2.2968318026921283e-05 - sys_5: 6.58539842765527e-05 - sys_6: -9.203591558496778e-06 - sys_7: 4.295215472850646e-05 - sys_8: -1.6009509022850107e-05 - sys_9: 6.251039803372007e-05 - sys_10: 9.081987982910272e-05 - sys_11: -4.453339358037737e-05 - sys_12: 5.669728571790954e-05 - sys_13: -0.00018443063466224975 - sys_14: 0.0002334620713272627 - sys_15: -0.0002076074293215407 - sys_16: 1.7075463902623104e-05 - sys_17: -0.0002683983921085173 - sys_18: 6.0578685295159576e-05 - sys_19: -0.0002096669112113343 - sys_20: -0.0003698122689759653 - sys_21: -0.0005131595411738475 - sys_22: -4.730392240625962e-05 - sys_23: 4.7202271836592956e-05 - sys_24: -0.0003586686342205002 - sys_25: 0.00014247372087741018 - sys_26: 9.07388048076826e-05 - sys_27: -0.00016072566223235315 - sys_28: 1.764977307662172e-05 - sys_29: -0.0012033885410498448 - sys_30: 0.00021447275867132382 - sys_31: -0.00039673560909608005 - sys_32: -2.0432565551697755e-05 - sys_33: -9.613573902284681e-05 - sys_34: 0.0002645747926532775 - sys_35: 6.295154143597791e-05 + sys_0: 2.3645902335624553e-05 + sys_1: -6.989083842173196e-06 + sys_2: 1.5776530766099907e-05 + sys_3: 1.0806213249645555e-05 + sys_4: -2.2968318026920063e-05 + sys_5: 6.585398427655643e-05 + sys_6: -9.203591558497847e-06 + sys_7: 4.295215472850925e-05 + sys_8: -1.6009509022849426e-05 + sys_9: 6.251039803372303e-05 + sys_10: 9.081987982910386e-05 + sys_11: -4.453339358037767e-05 + sys_12: 5.6697285717909404e-05 + sys_13: -0.00018443063466224953 + sys_14: 0.00023346207132726016 + sys_15: -0.00020760742932153617 + sys_16: 1.707546390260684e-05 + sys_17: -0.0002683983921085116 + sys_18: 6.057868529515533e-05 + sys_19: -0.00020966691121133418 + sys_20: -0.0003698122689759604 + sys_21: -0.0005131595411738454 + sys_22: -4.7303922406263144e-05 + sys_23: 4.7202271836592095e-05 + sys_24: -0.00035866863422051354 + sys_25: 0.00014247372087741644 + sys_26: 9.0738804807692e-05 + sys_27: -0.00016072566223238448 + sys_28: 1.7649773076634863e-05 + sys_29: -0.0012033885410498405 + sys_30: 0.00021447275867129563 + sys_31: -0.00039673560909604135 + sys_32: -2.0432565551696945e-05 + sys_33: -9.61357390227947e-05 + sys_34: 0.0002645747926533195 + sys_35: 6.29515414360039e-05 - lumi: 0.0007 pol: 0.00027449999999999995 - sys_0: 2.5388244750565634e-05 - sys_1: -9.648660022555425e-06 - sys_2: 1.725728266673761e-05 - sys_3: 1.2119343249863144e-05 - sys_4: -3.257069700876005e-05 - sys_5: 8.397396786221949e-05 - sys_6: -6.161059928617393e-06 - sys_7: 7.249369654381061e-05 - sys_8: -2.2507596571035827e-05 - sys_9: 0.00016225851426990452 - sys_10: 0.00019784780836575665 - sys_11: 6.811866455367594e-06 - sys_12: 6.923938780742184e-05 - sys_13: -0.0003644191471656307 - sys_14: 0.0003488601882700381 - sys_15: -7.988413081927177e-05 - sys_16: -1.950369654015518e-05 - sys_17: -0.00022838473752983098 - sys_18: 5.842042150942091e-05 + sys_0: 2.5388244750565224e-05 + sys_1: -9.648660022558868e-06 + sys_2: 1.725728266673642e-05 + sys_3: 1.2119343249860988e-05 + sys_4: -3.2570697008759474e-05 + sys_5: 8.397396786222551e-05 + sys_6: -6.161059928620838e-06 + sys_7: 7.249369654381132e-05 + sys_8: -2.2507596571033614e-05 + sys_9: 0.0001622585142699082 + sys_10: 0.00019784780836575649 + sys_11: 6.811866455365323e-06 + sys_12: 6.92393878074204e-05 + sys_13: -0.00036441914716563113 + sys_14: 0.0003488601882700348 + sys_15: -7.988413081926767e-05 + sys_16: -1.950369654016297e-05 + sys_17: -0.00022838473752982572 + sys_18: 5.84204215094155e-05 sys_19: -0.0003198526740891854 - sys_20: -0.00038526584962616866 - sys_21: -0.0004316978124805003 - sys_22: -6.091793201368487e-05 - sys_23: 2.64166652026038e-05 - sys_24: -0.0005977485448930482 - sys_25: 0.00033117273676790566 - sys_26: 3.3244133461990905e-05 - sys_27: -4.78514476785507e-05 - sys_28: -1.4782237528043642e-06 - sys_29: -9.612033210242234e-05 - sys_30: 3.69380652134341e-07 - sys_31: 0.00015512094758818654 - sys_32: -3.9186489101915314e-05 - sys_33: 0.000975703209172063 - sys_34: -0.0013284682158812148 - sys_35: -0.00018495674223522745 + sys_20: -0.0003852658496261645 + sys_21: -0.00043169781248049893 + sys_22: -6.091793201368411e-05 + sys_23: 2.641666520260508e-05 + sys_24: -0.0005977485448930409 + sys_25: 0.0003311727367679111 + sys_26: 3.324413346199163e-05 + sys_27: -4.785144767856636e-05 + sys_28: -1.4782237528023345e-06 + sys_29: -9.612033210241071e-05 + sys_30: 3.693806521272244e-07 + sys_31: 0.00015512094758820874 + sys_32: -3.9186489101900806e-05 + sys_33: 0.0009757032091717645 + sys_34: -0.0013284682158814377 + sys_35: -0.00018495674223530063 - lumi: 0.0007 pol: 0.0011102 - sys_0: 4.632403094116476e-05 - sys_1: -2.233516447738181e-05 - sys_2: 3.0393390967329307e-05 - sys_3: 2.2710258501585905e-05 - sys_4: -7.93294511043506e-05 - sys_5: 0.000228480957739856 - sys_6: 3.277659799820675e-05 - sys_7: 0.00022747726390786438 - sys_8: -0.00013807805635516798 - sys_9: 0.0005026636252844625 - sys_10: 0.0004487724186968814 - sys_11: 0.0002157382155598788 - sys_12: -2.7545708803115317e-05 - sys_13: -0.0005705489319652115 - sys_14: 0.00044853710412763045 - sys_15: 0.00011561411669469581 - sys_16: -0.0002161001549593385 - sys_17: -0.0002609876078982399 - sys_18: -7.303606145754799e-05 - sys_19: -0.0006082000076467789 - sys_20: -0.0007169593629889122 - sys_21: -0.0012395471118820693 - sys_22: -0.0007684668314692085 - sys_23: -0.0006420510158603892 - sys_24: 0.0018279160465979017 - sys_25: -0.0006280977961080022 - sys_26: 1.2473128169371759e-05 - sys_27: -2.130248570938879e-05 - sys_28: -6.478227399489838e-06 - sys_29: -2.1128005414496778e-05 - sys_30: 1.2925159699881355e-05 - sys_31: 4.075025187179643e-05 - sys_32: -3.1562230950504706e-05 - sys_33: 8.113143316257949e-05 - sys_34: -0.0001159991818682499 - sys_35: -3.175517942454168e-05 + sys_0: 4.632403094116583e-05 + sys_1: -2.2335164477385147e-05 + sys_2: 3.0393390967324916e-05 + sys_3: 2.2710258501588896e-05 + sys_4: -7.93294511043521e-05 + sys_5: 0.0002284809577398553 + sys_6: 3.277659799820353e-05 + sys_7: 0.0002274772639078593 + sys_8: -0.00013807805635517145 + sys_9: 0.0005026636252844588 + sys_10: 0.00044877241869687796 + sys_11: 0.00021573821555987855 + sys_12: -2.7545708803117248e-05 + sys_13: -0.0005705489319652081 + sys_14: 0.00044853710412762774 + sys_15: 0.00011561411669471102 + sys_16: -0.00021610015495933588 + sys_17: -0.00026098760789823616 + sys_18: -7.303606145754738e-05 + sys_19: -0.0006082000076467769 + sys_20: -0.000716959362988909 + sys_21: -0.0012395471118820832 + sys_22: -0.0007684668314692384 + sys_23: -0.0006420510158603939 + sys_24: 0.0018279160465978813 + sys_25: -0.0006280977961080321 + sys_26: 1.2473128169373334e-05 + sys_27: -2.130248570939634e-05 + sys_28: -6.478227399489372e-06 + sys_29: -2.1128005414492813e-05 + sys_30: 1.2925159699880384e-05 + sys_31: 4.075025187179833e-05 + sys_32: -3.1562230950501664e-05 + sys_33: 8.113143316254796e-05 + sys_34: -0.0001159991818682614 + sys_35: -3.17551794245446e-05 - lumi: 0.0007 pol: 0.0013419999999999999 - sys_0: 8.011012824062248e-05 - sys_1: -5.796013995421985e-05 - sys_2: 6.397314012512733e-05 - sys_3: 5.296944282509577e-05 - sys_4: -0.00020724154008688634 - sys_5: 0.0007635092953233615 - sys_6: 0.0003154819573537301 - sys_7: 0.0006101871457360746 - sys_8: -0.0006646965157433418 - sys_9: 0.0008143388034978547 - sys_10: 0.0005161466573771503 - sys_11: 0.0009152868619020572 - sys_12: -0.0005483211579918866 - sys_13: -0.0008898470322617161 - sys_14: 0.001060948872320649 - sys_15: -0.002714328702068823 - sys_16: 0.002372118424256617 - sys_17: 0.00033039606666010886 - sys_18: 0.00032156629377201563 - sys_19: 0.0005823407624898847 - sys_20: 0.00029672906544411977 - sys_21: 0.00023434658986785524 - sys_22: 4.589635079525321e-05 - sys_23: -2.2072093590782424e-05 - sys_24: 0.00023795180697767552 - sys_25: -8.673254562210834e-05 - sys_26: 4.4860339113215005e-06 - sys_27: -9.56370070315141e-06 - sys_28: -3.3174779236945243e-06 - sys_29: -3.0393613874223474e-06 - sys_30: 7.241756378687385e-06 - sys_31: 1.6101184693980498e-05 - sys_32: -1.3921079553079474e-05 - sys_33: 2.8146228439132703e-05 - sys_34: -3.020100225638923e-05 - sys_35: -9.506727341716175e-06 + sys_0: 8.011012824062189e-05 + sys_1: -5.796013995422083e-05 + sys_2: 6.397314012512855e-05 + sys_3: 5.2969442825092175e-05 + sys_4: -0.00020724154008688452 + sys_5: 0.0007635092953233643 + sys_6: 0.0003154819573537216 + sys_7: 0.0006101871457360713 + sys_8: -0.0006646965157433573 + sys_9: 0.0008143388034978537 + sys_10: 0.00051614665737715 + sys_11: 0.0009152868619020557 + sys_12: -0.000548321157991898 + sys_13: -0.0008898470322617223 + sys_14: 0.0010609488723206503 + sys_15: -0.002714328702068985 + sys_16: 0.002372118424256473 + sys_17: 0.00033039606666009156 + sys_18: 0.00032156629377202295 + sys_19: 0.0005823407624898825 + sys_20: 0.00029672906544411256 + sys_21: 0.00023434658986783898 + sys_22: 4.5896350795248436e-05 + sys_23: -2.2072093590785134e-05 + sys_24: 0.0002379518069776743 + sys_25: -8.673254562211265e-05 + sys_26: 4.486033911322083e-06 + sys_27: -9.56370070315303e-06 + sys_28: -3.3174779236943185e-06 + sys_29: -3.0393613874214026e-06 + sys_30: 7.241756378687175e-06 + sys_31: 1.610118469397973e-05 + sys_32: -1.3921079553079039e-05 + sys_33: 2.8146228439124104e-05 + sys_34: -3.0201002256393603e-05 + sys_35: -9.506727341717496e-06 - lumi: 0.0007 pol: 0.0011955999999999998 - sys_0: 0.0003727712758895778 - sys_1: -0.00020642812158274987 - sys_2: 0.000412859817936704 - sys_3: -6.531368769914884e-05 - sys_4: -0.0004152642414604761 - sys_5: 0.0020329539525521536 - sys_6: 0.0012809104864390352 - sys_7: 0.001587869471721034 - sys_8: -0.002750688437951095 - sys_9: 0.0010408234292963593 - sys_10: 0.0019297968539493393 - sys_11: -0.005568439811563932 - sys_12: 0.000827080982249373 - sys_13: 0.00026053785598724157 - sys_14: -2.877231165546006e-05 - sys_15: -0.00016718429931133303 - sys_16: 0.00019170585119502069 - sys_17: 4.8594873402738034e-05 - sys_18: 5.132169309899809e-05 - sys_19: 9.010428786676163e-05 - sys_20: 6.575546387418727e-05 - sys_21: 6.90218094152791e-05 - sys_22: 1.0618847109918516e-05 - sys_23: -8.776136943731652e-06 - sys_24: 6.807872007100107e-05 - sys_25: -1.8561843884851213e-05 - sys_26: 1.3463601880381797e-06 - sys_27: -3.3547985639216735e-06 - sys_28: -1.8551466900077834e-06 - sys_29: 8.912348381009338e-07 - sys_30: 3.6412448299252004e-06 - sys_31: 5.859390331089284e-06 - sys_32: -6.9428330542424095e-06 - sys_33: 8.710171215224049e-06 - sys_34: -4.678041920993092e-06 - sys_35: -3.185370040237061e-06 + sys_0: 0.00037277127588957793 + sys_1: -0.0002064281215827454 + sys_2: 0.000412859817936706 + sys_3: -6.531368769915262e-05 + sys_4: -0.0004152642414604709 + sys_5: 0.0020329539525521527 + sys_6: 0.0012809104864390135 + sys_7: 0.0015878694717210327 + sys_8: -0.002750688437951097 + sys_9: 0.0010408234292963463 + sys_10: 0.0019297968539493087 + sys_11: -0.005568439811563944 + sys_12: 0.0008270809822493772 + sys_13: 0.0002605378559872354 + sys_14: -2.8772311655454653e-05 + sys_15: -0.0001671842993113482 + sys_16: 0.0001917058511950118 + sys_17: 4.859487340273498e-05 + sys_18: 5.132169309899932e-05 + sys_19: 9.010428786676046e-05 + sys_20: 6.575546387418572e-05 + sys_21: 6.902180941527694e-05 + sys_22: 1.0618847109918386e-05 + sys_23: -8.776136943731906e-06 + sys_24: 6.807872007100159e-05 + sys_25: -1.8561843884852826e-05 + sys_26: 1.3463601880383381e-06 + sys_27: -3.3547985639218e-06 + sys_28: -1.8551466900077103e-06 + sys_29: 8.91234838101371e-07 + sys_30: 3.6412448299252283e-06 + sys_31: 5.859390331088542e-06 + sys_32: -6.942833054242388e-06 + sys_33: 8.71017121522254e-06 + sys_34: -4.678041920994381e-06 + sys_35: -3.1853700402374773e-06 - lumi: 0.0007 pol: 0.0021227999999999998 - sys_0: 0.0024930277547264477 - sys_1: -0.0003769892285984547 - sys_2: 0.0024116798545195718 - sys_3: -0.0018579209195307422 - sys_4: 0.00012484530309271824 - sys_5: 0.00915874530911133 - sys_6: -0.007463776468033819 - sys_7: -0.0020287753389202786 - sys_8: 0.00192546706100331 - sys_9: 2.1830235380458572e-05 - sys_10: 0.0001251284567783781 - sys_11: -0.00039420305439264195 - sys_12: 0.00013086711070995556 - sys_13: 3.127482770920754e-05 - sys_14: 1.9043439541967036e-06 - sys_15: -3.94042101127698e-05 - sys_16: 4.5236302726333434e-05 - sys_17: 1.2030522753580578e-05 - sys_18: 1.0979819996922476e-05 - sys_19: 2.102386500700968e-05 - sys_20: 1.775019157855965e-05 - sys_21: 2.1588540440093262e-05 - sys_22: 4.157127569815916e-06 - sys_23: -1.5467075000608138e-06 - sys_24: 1.834354096602947e-05 - sys_25: -3.579361140938578e-06 - sys_26: 3.2149881077409185e-07 - sys_27: -9.802830173551652e-07 - sys_28: -5.674484518726649e-07 - sys_29: 5.808389272407738e-07 - sys_30: 1.020195396967078e-06 - sys_31: 1.5391014504256256e-06 - sys_32: -1.8362641411309277e-06 - sys_33: 2.1177790813195717e-06 - sys_34: -4.3959865737232015e-07 - sys_35: -8.151484736740975e-07 + sys_0: 0.0024930277547264485 + sys_1: -0.0003769892285984366 + sys_2: 0.002411679854519576 + sys_3: -0.001857920919530756 + sys_4: 0.0001248453030927399 + sys_5: 0.009158745309111328 + sys_6: -0.007463776468033799 + sys_7: -0.00202877533892031 + sys_8: 0.0019254670610033256 + sys_9: 2.183023538046474e-05 + sys_10: 0.00012512845677837455 + sys_11: -0.0003942030543926417 + sys_12: 0.00013086711070995564 + sys_13: 3.12748277092078e-05 + sys_14: 1.9043439541970062e-06 + sys_15: -3.940421011277323e-05 + sys_16: 4.52363027263313e-05 + sys_17: 1.2030522753580046e-05 + sys_18: 1.0979819996922811e-05 + sys_19: 2.1023865007009595e-05 + sys_20: 1.7750191578559468e-05 + sys_21: 2.1588540440092523e-05 + sys_22: 4.157127569815935e-06 + sys_23: -1.5467075000608854e-06 + sys_24: 1.8343540966029124e-05 + sys_25: -3.5793611409389615e-06 + sys_26: 3.2149881077404887e-07 + sys_27: -9.802830173551532e-07 + sys_28: -5.674484518727084e-07 + sys_29: 5.808389272410415e-07 + sys_30: 1.0201953969670571e-06 + sys_31: 1.539101450425797e-06 + sys_32: -1.8362641411307748e-06 + sys_33: 2.1177790813190935e-06 + sys_34: -4.3959865737219664e-07 + sys_35: -8.151484736739112e-07 - lumi: 0.0007 pol: 0.0031414999999999998 - sys_0: 0.008930830278231645 - sys_1: -0.0005044354604341876 - sys_2: 0.010587200186555056 + sys_0: 0.008930830278231647 + sys_1: -0.0005044354604341264 + sys_2: 0.01058720018655507 sys_3: 0.01943810448788214 - sys_4: -0.0017367920892882843 - sys_5: -0.00010201992715172124 - sys_6: -0.0006085662253752182 - sys_7: -0.00018643727054909841 - sys_8: 0.0002769568274062023 - sys_9: 1.0414908581753627e-05 - sys_10: 2.6125335174242363e-05 - sys_11: -8.182525906402096e-05 - sys_12: 2.638300327262256e-05 - sys_13: 7.524233509329551e-06 - sys_14: -3.7876535581187026e-07 - sys_15: -5.304077803905228e-06 - sys_16: 7.431396223608688e-06 - sys_17: 2.92882970637657e-06 - sys_18: 1.614757220531454e-06 - sys_19: 4.507411135769528e-06 - sys_20: 4.5482427608144205e-06 - sys_21: 6.080764607828331e-06 - sys_22: 1.691053650065729e-06 - sys_23: 1.4595716631921798e-07 - sys_24: 3.812365408183043e-06 - sys_25: -4.950626203585459e-07 - sys_26: 8.349609149511641e-08 - sys_27: -2.3467452087233907e-07 - sys_28: -1.0211679139057085e-07 - sys_29: 1.7650550093622654e-07 - sys_30: 1.5912010984403719e-07 - sys_31: 3.056421312460556e-07 - sys_32: -3.404629164432848e-07 - sys_33: 4.204781122533761e-07 - sys_34: 9.813384612651571e-08 - sys_35: -1.1323072132199317e-07 + sys_4: -0.0017367920892883062 + sys_5: -0.00010201992715171016 + sys_6: -0.0006085662253752192 + sys_7: -0.0001864372705490988 + sys_8: 0.00027695682740620347 + sys_9: 1.0414908581755689e-05 + sys_10: 2.6125335174242617e-05 + sys_11: -8.182525906402164e-05 + sys_12: 2.638300327262265e-05 + sys_13: 7.524233509328955e-06 + sys_14: -3.7876535581127035e-07 + sys_15: -5.304077803906611e-06 + sys_16: 7.431396223608733e-06 + sys_17: 2.9288297063761633e-06 + sys_18: 1.614757220531549e-06 + sys_19: 4.507411135769223e-06 + sys_20: 4.548242760813683e-06 + sys_21: 6.080764607827587e-06 + sys_22: 1.6910536500653058e-06 + sys_23: 1.4595716631903928e-07 + sys_24: 3.812365408182648e-06 + sys_25: -4.95062620358534e-07 + sys_26: 8.349609149518181e-08 + sys_27: -2.3467452087212967e-07 + sys_28: -1.0211679139057507e-07 + sys_29: 1.7650550093627162e-07 + sys_30: 1.5912010984403555e-07 + sys_31: 3.0564213124633436e-07 + sys_32: -3.4046291644328057e-07 + sys_33: 4.20478112253572e-07 + sys_34: 9.813384612620248e-08 + sys_35: -1.1323072132202326e-07 diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2015_1JET_200GEV/uncertainties_CF.yaml b/nnpdf_data/nnpdf_data/new_commondata/STAR_2015_1JET_200GEV/uncertainties_CF.yaml index 8d99002b25..642f63269f 100644 --- a/nnpdf_data/nnpdf_data/new_commondata/STAR_2015_1JET_200GEV/uncertainties_CF.yaml +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2015_1JET_200GEV/uncertainties_CF.yaml @@ -154,419 +154,419 @@ definitions: bins: - lumi: 0.0007 pol: 1.2810000000000001e-05 - sys_0: 1.285223974365419e-05 - sys_1: -3.862854872078084e-06 - sys_2: 8.150376962433087e-06 - sys_3: -3.483254100883933e-07 - sys_4: -1.237736679770237e-05 - sys_5: 2.386427223662891e-05 - sys_6: 3.3887678604091973e-06 - sys_7: 2.1277189305953603e-05 - sys_8: -2.195628790734498e-06 - sys_9: 1.615036594896178e-05 - sys_10: 1.920636279819397e-05 - sys_11: -3.332902170211824e-06 - sys_12: 2.0127948125865605e-05 - sys_13: -2.3169161505744384e-05 + sys_0: 1.285223974365425e-05 + sys_1: -3.862854872078117e-06 + sys_2: 8.150376962433006e-06 + sys_3: -3.483254100886335e-07 + sys_4: -1.2377366797702224e-05 + sys_5: 2.386427223662906e-05 + sys_6: 3.3887678604083003e-06 + sys_7: 2.1277189305953037e-05 + sys_8: -2.1956287907345646e-06 + sys_9: 1.615036594896166e-05 + sys_10: 1.9206362798194395e-05 + sys_11: -3.332902170213143e-06 + sys_12: 2.0127948125866066e-05 + sys_13: -2.3169161505743398e-05 sys_14: 3.133870227729763e-05 - sys_15: -4.0063452321581536e-05 - sys_16: -2.3271518173226584e-05 - sys_17: -5.259775748999714e-05 - sys_18: 1.8283083945297095e-05 - sys_19: 1.3356998325156546e-06 - sys_20: -3.7845120798363494e-05 - sys_21: -3.481321287736566e-05 - sys_22: 2.1170572301420632e-05 - sys_23: 3.5127182071760884e-05 - sys_24: -7.483870489011861e-06 - sys_25: -6.924805969182493e-05 - sys_26: -7.787584626612572e-07 - sys_27: -5.76236362256171e-06 - sys_28: -8.049679826648725e-05 - sys_29: 2.745901800444975e-05 - sys_30: 0.00015385993712531453 - sys_31: 3.123438330297301e-05 - sys_32: 0.00039637906803887286 - sys_33: -0.0002976466102130916 - sys_34: -0.0004491161211109203 - sys_35: 0.0015975727575618594 + sys_15: -4.006345232157947e-05 + sys_16: -2.32715181732292e-05 + sys_17: -5.25977574899953e-05 + sys_18: 1.828308394529651e-05 + sys_19: 1.3356998325157842e-06 + sys_20: -3.784512079836223e-05 + sys_21: -3.481321287736769e-05 + sys_22: 2.1170572301418623e-05 + sys_23: 3.512718207175899e-05 + sys_24: -7.483870489012726e-06 + sys_25: -6.92480596918241e-05 + sys_26: -7.787584626609216e-07 + sys_27: -5.7623636225593675e-06 + sys_28: -8.049679826648327e-05 + sys_29: 2.7459018004440603e-05 + sys_30: 0.00015385993712531306 + sys_31: 3.1234383302966616e-05 + sys_32: 0.0003963790680388795 + sys_33: -0.00029764661021316064 + sys_34: -0.0004491161211108686 + sys_35: 0.001597572757561847 - lumi: 0.0007 pol: 5.5509999999999995e-05 - sys_0: 1.6057684092139258e-05 - sys_1: -3.601491685525938e-06 - sys_2: 8.941219814439445e-06 - sys_3: -1.0096349204975345e-06 - sys_4: -1.3812508453407938e-05 - sys_5: 2.8219727929312756e-05 - sys_6: 5.3797688345805834e-06 - sys_7: 2.5269444185676645e-05 - sys_8: -4.880100598848979e-06 - sys_9: 2.042895458419939e-05 - sys_10: 2.360161420336143e-05 - sys_11: -3.0967414814763035e-06 - sys_12: 2.2051476198861813e-05 - sys_13: -3.0133145799158175e-05 - sys_14: 4.022730728401975e-05 - sys_15: -5.778205434989625e-05 - sys_16: -3.3573678525596656e-05 - sys_17: -7.763446256768089e-05 - sys_18: 7.806224144913355e-06 - sys_19: 1.9476867958196844e-06 - sys_20: -5.282210817371301e-05 - sys_21: -4.930201178199024e-05 - sys_22: 3.523885577184821e-05 - sys_23: 6.33709289401045e-05 - sys_24: -1.090215539571636e-07 - sys_25: -7.618710144405932e-05 - sys_26: 7.668845439618003e-07 - sys_27: -1.673308900683324e-06 - sys_28: -4.36254087407854e-05 - sys_29: 1.1942945128805624e-05 - sys_30: 7.379911532079111e-05 - sys_31: 1.1097213340754331e-05 - sys_32: 0.0018560916981537918 - sys_33: 0.00038813923620466815 - sys_34: 0.0002710295600312309 - sys_35: -0.00024561832143300084 + sys_0: 1.605768409213924e-05 + sys_1: -3.6014916855259418e-06 + sys_2: 8.941219814439465e-06 + sys_3: -1.0096349204976158e-06 + sys_4: -1.3812508453407755e-05 + sys_5: 2.821972792931317e-05 + sys_6: 5.3797688345802175e-06 + sys_7: 2.5269444185676706e-05 + sys_8: -4.880100598849406e-06 + sys_9: 2.042895458419912e-05 + sys_10: 2.3601614203361426e-05 + sys_11: -3.096741481476684e-06 + sys_12: 2.205147619886348e-05 + sys_13: -3.0133145799157514e-05 + sys_14: 4.022730728401946e-05 + sys_15: -5.778205434989477e-05 + sys_16: -3.357367852559977e-05 + sys_17: -7.763446256767994e-05 + sys_18: 7.80622414491192e-06 + sys_19: 1.9476867958187256e-06 + sys_20: -5.282210817371119e-05 + sys_21: -4.9302011781991523e-05 + sys_22: 3.5238855771847155e-05 + sys_23: 6.337092894010316e-05 + sys_24: -1.0902155396045449e-07 + sys_25: -7.618710144405468e-05 + sys_26: 7.668845439617866e-07 + sys_27: -1.6733089006817563e-06 + sys_28: -4.3625408740782774e-05 + sys_29: 1.194294512880187e-05 + sys_30: 7.379911532079029e-05 + sys_31: 1.1097213340752093e-05 + sys_32: 0.0018560916981537922 + sys_33: 0.0003881392362047054 + sys_34: 0.0002710295600311507 + sys_35: -0.00024561832143299347 - lumi: 0.0007 pol: 5.1240000000000004e-05 - sys_0: 1.5425709267569812e-05 - sys_1: -4.525850117947641e-06 - sys_2: 9.321142600835634e-06 - sys_3: -5.046417309826194e-07 - sys_4: -1.426741357360373e-05 - sys_5: 2.9799551825637255e-05 - sys_6: 4.634425181522115e-06 - sys_7: 2.5176603670615524e-05 - sys_8: -5.306106059811315e-06 - sys_9: 2.0095286279757753e-05 - sys_10: 2.3393568156301887e-05 - sys_11: -3.7182989563727932e-06 - sys_12: 2.2665826195247915e-05 - sys_13: -3.29187285072527e-05 - sys_14: 4.777054039344982e-05 - sys_15: -7.61238082808522e-05 - sys_16: -5.828835528127942e-05 - sys_17: -9.948326080512265e-05 - sys_18: -1.213876183233262e-05 - sys_19: 2.299318521169646e-06 - sys_20: -5.723459159215817e-05 - sys_21: -3.0062025310338624e-05 - sys_22: 6.220369833320895e-05 - sys_23: 7.933720901677079e-05 - sys_24: 2.101350855360452e-05 - sys_25: -3.054640020655776e-05 - sys_26: 1.0959273342590644e-05 - sys_27: 6.47001707457454e-05 - sys_28: 0.0012234169769303447 - sys_29: -7.991306770076882e-06 - sys_30: -0.00016968182524960154 - sys_31: -9.782656031600185e-06 - sys_32: 0.00011571574736373265 - sys_33: -5.072922113185092e-05 - sys_34: -5.364670582419901e-05 - sys_35: 9.605675830598421e-05 + sys_0: 1.5425709267569802e-05 + sys_1: -4.525850117947736e-06 + sys_2: 9.321142600835638e-06 + sys_3: -5.046417309826598e-07 + sys_4: -1.4267413573603533e-05 + sys_5: 2.9799551825637462e-05 + sys_6: 4.6344251815212054e-06 + sys_7: 2.5176603670614403e-05 + sys_8: -5.306106059813175e-06 + sys_9: 2.0095286279758258e-05 + sys_10: 2.339356815630141e-05 + sys_11: -3.718298956372065e-06 + sys_12: 2.2665826195248945e-05 + sys_13: -3.291872850725276e-05 + sys_14: 4.777054039345101e-05 + sys_15: -7.612380828085063e-05 + sys_16: -5.82883552812844e-05 + sys_17: -9.948326080512078e-05 + sys_18: -1.2138761832333364e-05 + sys_19: 2.299318521169206e-06 + sys_20: -5.723459159215584e-05 + sys_21: -3.0062025310340034e-05 + sys_22: 6.220369833320872e-05 + sys_23: 7.933720901677051e-05 + sys_24: 2.101350855360264e-05 + sys_25: -3.054640020655742e-05 + sys_26: 1.0959273342595142e-05 + sys_27: 6.470017074573437e-05 + sys_28: 0.0012234169769303426 + sys_29: -7.99130677006742e-06 + sys_30: -0.00016968182524960414 + sys_31: -9.782656031604351e-06 + sys_32: 0.00011571574736372943 + sys_33: -5.0729221131862524e-05 + sys_34: -5.364670582418755e-05 + sys_35: 9.605675830598353e-05 - lumi: 0.0007 pol: 0.00020313 - sys_0: 2.111835504260543e-05 - sys_1: -5.961823951750334e-06 - sys_2: 1.1827218058841966e-05 - sys_3: -1.106349750242994e-06 - sys_4: -1.9338998960613666e-05 - sys_5: 3.886403148319452e-05 - sys_6: 6.101515043685867e-06 - sys_7: 3.313112142561751e-05 - sys_8: -7.481255869424059e-06 - sys_9: 2.7903072755436987e-05 - sys_10: 3.5329307157540044e-05 - sys_11: -5.243136020513351e-06 - sys_12: 3.008597223689683e-05 - sys_13: -5.730754997641691e-05 - sys_14: 8.286276024217568e-05 - sys_15: -7.414720683753734e-05 - sys_16: -4.320332026622168e-05 - sys_17: -0.00015708867257591483 - sys_18: -8.571674791870129e-07 - sys_19: -3.485022089129842e-05 - sys_20: -0.00010477265242178917 - sys_21: -2.3061049383154577e-05 - sys_22: 0.00011610726534474499 - sys_23: 0.00011244827057188676 - sys_24: 3.508658466684369e-05 - sys_25: -1.5340250052121433e-05 - sys_26: 1.3493954971573253e-05 - sys_27: 2.4495848656012216e-05 - sys_28: -0.00016626157785700857 - sys_29: -0.0002097267052656691 - sys_30: -0.001384406821235923 - sys_31: -2.0728667395293437e-05 - sys_32: 0.00013249632379304385 - sys_33: -6.601013085580339e-05 - sys_34: -3.2645999262283165e-05 - sys_35: 0.00013577252574687641 + sys_0: 2.1118355042605413e-05 + sys_1: -5.9618239517503064e-06 + sys_2: 1.182721805884206e-05 + sys_3: -1.1063497502432896e-06 + sys_4: -1.93389989606135e-05 + sys_5: 3.886403148319478e-05 + sys_6: 6.10151504368539e-06 + sys_7: 3.3131121425617504e-05 + sys_8: -7.4812558694239075e-06 + sys_9: 2.7903072755437492e-05 + sys_10: 3.532930715754019e-05 + sys_11: -5.243136020513049e-06 + sys_12: 3.0085972236894332e-05 + sys_13: -5.73075499764169e-05 + sys_14: 8.286276024217566e-05 + sys_15: -7.4147206837537e-05 + sys_16: -4.320332026622727e-05 + sys_17: -0.0001570886725759144 + sys_18: -8.571674791876224e-07 + sys_19: -3.485022089130146e-05 + sys_20: -0.000104772652421791 + sys_21: -2.30610493831558e-05 + sys_22: 0.00011610726534474569 + sys_23: 0.00011244827057188982 + sys_24: 3.50865846668436e-05 + sys_25: -1.53402500521221e-05 + sys_26: 1.349395497157182e-05 + sys_27: 2.4495848656003868e-05 + sys_28: -0.00016626157785701496 + sys_29: -0.0002097267052656219 + sys_30: -0.001384406821235927 + sys_31: -2.072866739532398e-05 + sys_32: 0.00013249632379304683 + sys_33: -6.601013085581552e-05 + sys_34: -3.264599926226974e-05 + sys_35: 0.00013577252574687975 - lumi: 0.0007 pol: 0.00014518 - sys_0: 2.0675202260269935e-05 - sys_1: -6.696986196434674e-06 - sys_2: 1.204702934795447e-05 - sys_3: 1.0390605388744996e-06 - sys_4: -1.9623194068498713e-05 - sys_5: 4.185444243315913e-05 - sys_6: 5.537119119515644e-06 - sys_7: 3.958261258496471e-05 - sys_8: -6.757720790114465e-06 - sys_9: 4.173942020298349e-05 - sys_10: 6.573454165523849e-05 - sys_11: 2.292337359810742e-06 - sys_12: 4.3610408672702596e-05 - sys_13: -0.00011655307280171247 - sys_14: 0.0001509439518311608 - sys_15: -3.9579376642465814e-05 - sys_16: -3.607442798285155e-05 - sys_17: -0.00017629469902999731 - sys_18: 4.0849307298704476e-05 - sys_19: -0.00012757117739127765 - sys_20: -0.00014138674155569398 - sys_21: 2.8948824527280363e-05 - sys_22: 0.00017808726122148382 - sys_23: 0.00012019840598521374 - sys_24: 2.581947550466835e-05 - sys_25: 3.3138727880038584e-05 - sys_26: 9.152542915004433e-06 - sys_27: 4.9903108979816506e-06 - sys_28: -3.827996210006749e-05 - sys_29: -4.5171819951341896e-05 - sys_30: 6.421529273653664e-05 - sys_31: 4.345550428345773e-06 - sys_32: 0.0003825505259469543 - sys_33: -0.0014099698476642323 - sys_34: -0.000880433869080994 - sys_35: -0.0005597635335845922 + sys_0: 2.0675202260269965e-05 + sys_1: -6.696986196434508e-06 + sys_2: 1.2047029347954507e-05 + sys_3: 1.0390605388743065e-06 + sys_4: -1.9623194068498517e-05 + sys_5: 4.1854442433159414e-05 + sys_6: 5.537119119515142e-06 + sys_7: 3.9582612584964506e-05 + sys_8: -6.757720790115838e-06 + sys_9: 4.1739420202983135e-05 + sys_10: 6.573454165523883e-05 + sys_11: 2.292337359810639e-06 + sys_12: 4.36104086727027e-05 + sys_13: -0.00011655307280171142 + sys_14: 0.00015094395183116064 + sys_15: -3.9579376642465895e-05 + sys_16: -3.6074427982854825e-05 + sys_17: -0.00017629469902999647 + sys_18: 4.084930729870203e-05 + sys_19: -0.00012757117739128053 + sys_20: -0.00014138674155569195 + sys_21: 2.8948824527276775e-05 + sys_22: 0.00017808726122148423 + sys_23: 0.00012019840598521243 + sys_24: 2.5819475504669532e-05 + sys_25: 3.313872788004203e-05 + sys_26: 9.152542915005384e-06 + sys_27: 4.990310897979278e-06 + sys_28: -3.827996210006819e-05 + sys_29: -4.5171819951343597e-05 + sys_30: 6.42152927365379e-05 + sys_31: 4.34555042835732e-06 + sys_32: 0.00038255052594694306 + sys_33: -0.0014099698476644387 + sys_34: -0.000880433869080645 + sys_35: -0.0005597635335845974 - lumi: 0.0007 pol: 0.00013054 - sys_0: 2.2686915457829096e-05 - sys_1: -7.317597007040106e-06 - sys_2: 1.3160650517625648e-05 - sys_3: 2.9419735605104256e-06 - sys_4: -2.9709742397722466e-05 - sys_5: 6.44248547037572e-05 - sys_6: 1.6067626688573048e-06 - sys_7: 7.351757258941668e-05 - sys_8: -2.4074885678267756e-05 - sys_9: 0.00011625546656451912 - sys_10: 0.0001740769203881293 - sys_11: 4.733781498201458e-05 - sys_12: 4.950354140433527e-05 - sys_13: -0.0002754299049465634 - sys_14: 0.00024799705743984684 - sys_15: 3.8658934569814036e-05 - sys_16: -8.872601657046061e-05 - sys_17: -0.0001813278559595234 - sys_18: 5.498525145125015e-05 - sys_19: -0.0002782262224667798 - sys_20: -0.00017766561084092634 - sys_21: 0.00019091657045969016 - sys_22: 0.00035677934397300854 - sys_23: 0.00025898116061938474 - sys_24: -0.0007217929457675095 - sys_25: -0.002299955113082285 - sys_26: 4.878361475830814e-06 - sys_27: -2.001298121119027e-06 - sys_28: -1.4360961016360165e-05 - sys_29: -1.6130671310470476e-05 - sys_30: 2.0994115907796764e-05 - sys_31: 5.207927631189154e-06 - sys_32: -8.543982251031059e-05 - sys_33: 5.716764400499841e-05 - sys_34: -5.1312687328924034e-05 - sys_35: -4.855251906395146e-05 + sys_0: 2.2686915457829103e-05 + sys_1: -7.317597007040176e-06 + sys_2: 1.316065051762562e-05 + sys_3: 2.941973560510285e-06 + sys_4: -2.970974239772201e-05 + sys_5: 6.442485470375717e-05 + sys_6: 1.6067626688563252e-06 + sys_7: 7.351757258941647e-05 + sys_8: -2.4074885678268695e-05 + sys_9: 0.0001162554665645195 + sys_10: 0.0001740769203881286 + sys_11: 4.7337814982013635e-05 + sys_12: 4.950354140433494e-05 + sys_13: -0.0002754299049465644 + sys_14: 0.00024799705743984603 + sys_15: 3.8658934569817824e-05 + sys_16: -8.872601657046054e-05 + sys_17: -0.00018132785595951955 + sys_18: 5.4985251451250016e-05 + sys_19: -0.0002782262224667809 + sys_20: -0.00017766561084092474 + sys_21: 0.00019091657045968515 + sys_22: 0.0003567793439730108 + sys_23: 0.00025898116061938637 + sys_24: -0.0007217929457675391 + sys_25: -0.002299955113082273 + sys_26: 4.878361475830774e-06 + sys_27: -2.0012981211203283e-06 + sys_28: -1.4360961016360143e-05 + sys_29: -1.613067131047073e-05 + sys_30: 2.0994115907795632e-05 + sys_31: 5.207927631191714e-06 + sys_32: -8.543982251030727e-05 + sys_33: 5.716764400498473e-05 + sys_34: -5.131268732893389e-05 + sys_35: -4.855251906395387e-05 - lumi: 0.0007 pol: 0.0006960099999999999 - sys_0: 3.5738555944694254e-05 - sys_1: -1.5917190927378952e-05 - sys_2: 2.3353095663833054e-05 - sys_3: 8.050417843947248e-06 - sys_4: -5.86382687396931e-05 - sys_5: 0.00017224115563288858 - sys_6: 1.4799945227157132e-05 - sys_7: 0.00022245683877536107 - sys_8: -0.00014458009654551358 - sys_9: 0.00037229409262537423 - sys_10: 0.0003544794511471884 - sys_11: 0.00023580618217840295 - sys_12: -3.2209350400685866e-05 - sys_13: -0.0005509990029404628 - sys_14: 0.00041114541854045134 - sys_15: 0.000528166085947224 - sys_16: -0.0006764297525016664 - sys_17: -0.001296351982860125 - sys_18: 0.0025631381820355537 - sys_19: 0.0019919938086019806 - sys_20: 0.00022006613991167886 - sys_21: -0.000129958317938841 - sys_22: -8.365614770035166e-05 - sys_23: -5.5395976884051123e-05 - sys_24: 7.952820623372875e-05 - sys_25: -4.8218719755114414e-05 - sys_26: 1.923886869335027e-06 - sys_27: -2.958469918156698e-06 - sys_28: -6.58569748485641e-06 - sys_29: -3.3154750912697345e-06 - sys_30: 1.0670483395209834e-05 - sys_31: 4.432759307986511e-06 - sys_32: -2.5762040277922556e-05 - sys_33: 2.1849375777802637e-05 - sys_34: -1.557657116980189e-05 - sys_35: -1.4910863267382842e-05 + sys_0: 3.5738555944694166e-05 + sys_1: -1.5917190927379325e-05 + sys_2: 2.3353095663832858e-05 + sys_3: 8.050417843946688e-06 + sys_4: -5.8638268739692334e-05 + sys_5: 0.00017224115563288845 + sys_6: 1.47999452271549e-05 + sys_7: 0.0002224568387753603 + sys_8: -0.00014458009654551814 + sys_9: 0.00037229409262537326 + sys_10: 0.00035447945114719034 + sys_11: 0.0002358061821784018 + sys_12: -3.2209350400686707e-05 + sys_13: -0.0005509990029404648 + sys_14: 0.00041114541854045264 + sys_15: 0.0005281660859472634 + sys_16: -0.0006764297525016573 + sys_17: -0.0012963519828601208 + sys_18: 0.0025631381820355762 + sys_19: 0.0019919938086019467 + sys_20: 0.0002200661399116749 + sys_21: -0.00012995831793883095 + sys_22: -8.365614770035553e-05 + sys_23: -5.539597688405109e-05 + sys_24: 7.952820623372617e-05 + sys_25: -4.821871975511289e-05 + sys_26: 1.923886869335309e-06 + sys_27: -2.9584699181567973e-06 + sys_28: -6.585697484856081e-06 + sys_29: -3.3154750912700136e-06 + sys_30: 1.067048339520938e-05 + sys_31: 4.4327593079874075e-06 + sys_32: -2.5762040277921645e-05 + sys_33: 2.1849375777797446e-05 + sys_34: -1.5576571169806704e-05 + sys_35: -1.4910863267383944e-05 - lumi: 0.0007 pol: 0.0007490799999999998 - sys_0: 5.207549015037195e-05 - sys_1: -4.573512819999964e-05 - sys_2: 6.781126356853113e-05 - sys_3: 2.0184706664707343e-05 - sys_4: -0.0001479092787615579 - sys_5: 0.0005858399070605129 - sys_6: 0.00021026504049237026 - sys_7: 0.0006181087873216847 - sys_8: -0.0006802530789416085 - sys_9: 0.0007946133564753306 - sys_10: 0.000502201668031044 - sys_11: 0.0016969370201710334 - sys_12: 0.005279905010325694 - sys_13: 0.0010073908767744841 - sys_14: -7.17809202134433e-05 - sys_15: -0.00018741636363926584 - sys_16: 0.0001702829849509456 - sys_17: 2.6283999953943916e-05 - sys_18: 3.9042964667243354e-05 - sys_19: 8.295811103181216e-05 - sys_20: 2.190589782050955e-05 - sys_21: -9.266624789250637e-06 - sys_22: -9.887124941424196e-06 - sys_23: -1.4123803872499664e-05 - sys_24: 3.2429169853850166e-05 - sys_25: -1.3108964250986156e-05 - sys_26: 4.800641311693095e-07 - sys_27: -1.561222785002972e-06 - sys_28: -2.534893761025201e-06 - sys_29: 6.023984114974349e-07 - sys_30: 3.6801598030836423e-06 - sys_31: 2.2035080622288806e-06 - sys_32: -8.929407400705548e-06 - sys_33: 7.4683560697751666e-06 - sys_34: -2.7366473166153918e-06 - sys_35: -4.156174717466502e-06 + sys_0: 5.207549015037209e-05 + sys_1: -4.57351281999985e-05 + sys_2: 6.781126356853156e-05 + sys_3: 2.018470666470658e-05 + sys_4: -0.0001479092787615561 + sys_5: 0.0005858399070605125 + sys_6: 0.00021026504049236376 + sys_7: 0.0006181087873216809 + sys_8: -0.0006802530789416212 + sys_9: 0.0007946133564753258 + sys_10: 0.000502201668031051 + sys_11: 0.0016969370201710293 + sys_12: 0.0052799050103256905 + sys_13: 0.001007390876774481 + sys_14: -7.178092021343579e-05 + sys_15: -0.00018741636363927918 + sys_16: 0.00017028298495093568 + sys_17: 2.628399995394365e-05 + sys_18: 3.9042964667243984e-05 + sys_19: 8.295811103181243e-05 + sys_20: 2.1905897820509206e-05 + sys_21: -9.266624789252104e-06 + sys_22: -9.887124941424848e-06 + sys_23: -1.4123803872499952e-05 + sys_24: 3.242916985385037e-05 + sys_25: -1.310896425098671e-05 + sys_26: 4.80064131169305e-07 + sys_27: -1.5612227850029427e-06 + sys_28: -2.5348937610252706e-06 + sys_29: 6.023984114972951e-07 + sys_30: 3.680159803083643e-06 + sys_31: 2.2035080622287997e-06 + sys_32: -8.929407400705521e-06 + sys_33: 7.468356069773913e-06 + sys_34: -2.7366473166164798e-06 + sys_35: -4.156174717466407e-06 - lumi: 0.0007 pol: 0.00125477 - sys_0: 0.0002621698363592479 - sys_1: -0.0002308425005531879 - sys_2: 0.0005439942971856746 - sys_3: -0.0001629306353168326 - sys_4: -0.0002819901950622355 - sys_5: 0.002115699071514149 - sys_6: 0.0021510708522020066 - sys_7: 0.0069306184259284795 - sys_8: 0.006387557377611017 - sys_9: -0.0005762915169987481 - sys_10: 4.4296319137657094e-05 - sys_11: -0.0004367117349764881 - sys_12: 0.0001213474552510949 - sys_13: 6.307630965107302e-05 - sys_14: -8.76856675694154e-06 - sys_15: -3.842712006714301e-05 - sys_16: 4.696816241725876e-05 - sys_17: 1.4920052703246663e-05 - sys_18: 8.6168673773297e-06 + sys_0: 0.0002621698363592482 + sys_1: -0.0002308425005531836 + sys_2: 0.0005439942971856751 + sys_3: -0.00016293063531683442 + sys_4: -0.00028199019506223083 + sys_5: 0.002115699071514147 + sys_6: 0.0021510708522019775 + sys_7: 0.006930618425928515 + sys_8: 0.006387557377611006 + sys_9: -0.000576291516998698 + sys_10: 4.429631913764765e-05 + sys_11: -0.0004367117349764832 + sys_12: 0.00012134745525109495 + sys_13: 6.307630965107234e-05 + sys_14: -8.76856675694051e-06 + sys_15: -3.842712006714657e-05 + sys_16: 4.696816241725661e-05 + sys_17: 1.4920052703246294e-05 + sys_18: 8.61686737732992e-06 sys_19: 2.0292261029837205e-05 - sys_20: 1.2462477026507097e-05 - sys_21: 6.699286211773008e-06 - sys_22: -2.479491066604267e-06 - sys_23: -5.325156751393041e-06 - sys_24: 9.947334932876608e-06 - sys_25: -7.561531945856727e-07 - sys_26: 1.5885613200720402e-07 - sys_27: -7.655455780631961e-07 - sys_28: -1.1380393315349312e-06 - sys_29: 1.0318226570139057e-06 - sys_30: 1.956347839173489e-06 - sys_31: 1.2615779935026349e-06 - sys_32: -4.266799513880128e-06 - sys_33: 2.533182458724038e-06 - sys_34: 1.5038675121658114e-06 - sys_35: -1.3996797265160816e-06 + sys_20: 1.2462477026507061e-05 + sys_21: 6.699286211773016e-06 + sys_22: -2.4794910666041854e-06 + sys_23: -5.325156751393005e-06 + sys_24: 9.94733493287659e-06 + sys_25: -7.561531945858447e-07 + sys_26: 1.5885613200729426e-07 + sys_27: -7.65545578063384e-07 + sys_28: -1.138039331534725e-06 + sys_29: 1.0318226570137676e-06 + sys_30: 1.956347839173551e-06 + sys_31: 1.261577993502586e-06 + sys_32: -4.266799513880226e-06 + sys_33: 2.5331824587245035e-06 + sys_34: 1.5038675121652686e-06 + sys_35: -1.3996797265161917e-06 - lumi: 0.0007 pol: 0.00324154 - sys_0: 0.001694979844524648 - sys_1: -0.0007059136103654653 - sys_2: 0.002921005256194737 - sys_3: -0.0033275445745681153 + sys_0: 0.0016949798445246487 + sys_1: -0.0007059136103654441 + sys_2: 0.002921005256194743 + sys_3: -0.0033275445745681257 sys_4: -0.017325010555937898 - sys_5: -0.0013794219016511138 - sys_6: -0.0006795894636556391 - sys_7: -0.0002676644275423033 - sys_8: 0.000336291496965905 - sys_9: -2.3949354547415492e-05 - sys_10: 2.1202729166135035e-05 - sys_11: -8.054948910198334e-05 - sys_12: 2.5339733559674375e-05 - sys_13: 1.1838807003139507e-05 - sys_14: -2.921239790202044e-06 - sys_15: -5.974423571244644e-06 - sys_16: 1.0278365429950377e-05 - sys_17: 5.013015002834768e-06 - sys_18: 1.2956403304494049e-06 - sys_19: 4.626172246075433e-06 - sys_20: 4.4855307354330844e-06 - sys_21: 3.1941359328582955e-06 - sys_22: -6.758811659398594e-07 - sys_23: -1.1124446186484344e-06 - sys_24: 1.9249169829713778e-06 - sys_25: 6.363479203913497e-07 - sys_26: 1.958383414364181e-08 - sys_27: -1.3403880105142416e-07 - sys_28: -3.447999003198934e-07 - sys_29: 3.860757286009122e-07 - sys_30: 6.825781647556457e-07 - sys_31: 2.638830971437584e-07 - sys_32: -1.2209453736175658e-06 - sys_33: 4.786839287191819e-07 - sys_34: 7.647153417042092e-07 - sys_35: -3.921951148811907e-07 + sys_5: -0.001379421901651102 + sys_6: -0.0006795894636556389 + sys_7: -0.00026766442754230216 + sys_8: 0.0003362914969659064 + sys_9: -2.3949354547413554e-05 + sys_10: 2.1202729166135642e-05 + sys_11: -8.054948910198362e-05 + sys_12: 2.5339733559674653e-05 + sys_13: 1.1838807003138596e-05 + sys_14: -2.9212397902011036e-06 + sys_15: -5.974423571246437e-06 + sys_16: 1.0278365429950582e-05 + sys_17: 5.013015002834394e-06 + sys_18: 1.2956403304494964e-06 + sys_19: 4.62617224607526e-06 + sys_20: 4.485530735432537e-06 + sys_21: 3.194135932857439e-06 + sys_22: -6.758811659400517e-07 + sys_23: -1.1124446186484954e-06 + sys_24: 1.9249169829711055e-06 + sys_25: 6.363479203913714e-07 + sys_26: 1.958383414366244e-08 + sys_27: -1.3403880105139756e-07 + sys_28: -3.4479990031988763e-07 + sys_29: 3.860757286008906e-07 + sys_30: 6.825781647556634e-07 + sys_31: 2.638830971438065e-07 + sys_32: -1.2209453736175507e-06 + sys_33: 4.786839287194112e-07 + sys_34: 7.647153417040683e-07 + sys_35: -3.9219511488116233e-07 - lumi: 0.0007 pol: 0.0014127599999999999 - sys_0: 0.012331020607674624 - sys_1: -0.031529556662290556 - sys_2: -0.011371028884111926 - sys_3: 0.0012226741838805577 - sys_4: -0.00024518806955623964 - sys_5: -4.9386986222864934e-05 - sys_6: -0.0001384345449274311 - sys_7: -4.256767028385578e-05 - sys_8: 6.361724154609152e-05 - sys_9: -1.7190192735098968e-06 - sys_10: 2.8770642342247687e-06 - sys_11: -1.188553953623915e-05 - sys_12: 4.041053649290636e-06 - sys_13: 2.343164445136635e-06 - sys_14: -6.173035258736877e-07 - sys_15: -3.9726630914759515e-08 - sys_16: 7.513635311704876e-07 - sys_17: 7.548770803456711e-07 - sys_18: -1.594079504652319e-07 - sys_19: 5.362392802177541e-07 - sys_20: 8.207005250570114e-07 - sys_21: 9.119120642731183e-07 - sys_22: 1.0242785585505468e-07 - sys_23: -1.0127228138332318e-07 - sys_24: 1.2423244954531212e-07 - sys_25: 2.0616022769452172e-07 - sys_26: -2.7187395489441307e-08 - sys_27: -1.5800123345631692e-09 - sys_28: -5.97458953517806e-08 - sys_29: 9.891048794493751e-08 - sys_30: 1.216510795388191e-07 - sys_31: 6.430903620001199e-08 - sys_32: -1.8781384964506675e-07 - sys_33: 8.320391742769609e-08 - sys_34: 2.3072498123408804e-07 - sys_35: -2.8885604034905375e-08 + sys_0: 0.01233102060767463 + sys_1: -0.0315295566622906 + sys_2: -0.011371028884111813 + sys_3: 0.0012226741838805638 + sys_4: -0.00024518806955624393 + sys_5: -4.9386986222863484e-05 + sys_6: -0.00013843454492743097 + sys_7: -4.256767028385626e-05 + sys_8: 6.361724154609255e-05 + sys_9: -1.7190192735100465e-06 + sys_10: 2.877064234224524e-06 + sys_11: -1.1885539536238817e-05 + sys_12: 4.041053649290594e-06 + sys_13: 2.3431644451367475e-06 + sys_14: -6.173035258738987e-07 + sys_15: -3.972663091469297e-08 + sys_16: 7.51363531170469e-07 + sys_17: 7.548770803458654e-07 + sys_18: -1.5940795046532096e-07 + sys_19: 5.362392802180081e-07 + sys_20: 8.207005250568439e-07 + sys_21: 9.119120642733117e-07 + sys_22: 1.0242785585528281e-07 + sys_23: -1.0127228138336724e-07 + sys_24: 1.2423244954537165e-07 + sys_25: 2.0616022769449678e-07 + sys_26: -2.7187395489446802e-08 + sys_27: -1.5800123346962088e-09 + sys_28: -5.974589535178393e-08 + sys_29: 9.891048794500645e-08 + sys_30: 1.2165107953881113e-07 + sys_31: 6.430903619981192e-08 + sys_32: -1.878138496450809e-07 + sys_33: 8.320391742762343e-08 + sys_34: 2.307249812342545e-07 + sys_35: -2.888560403486991e-08 diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2015_2JET_MIDRAP_200GEV/uncertainties_OS.yaml b/nnpdf_data/nnpdf_data/new_commondata/STAR_2015_2JET_MIDRAP_200GEV/uncertainties_OS.yaml index 9099d415c4..9b341bbbf6 100644 --- a/nnpdf_data/nnpdf_data/new_commondata/STAR_2015_2JET_MIDRAP_200GEV/uncertainties_OS.yaml +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2015_2JET_MIDRAP_200GEV/uncertainties_OS.yaml @@ -154,267 +154,267 @@ definitions: bins: - lumi: 0.0007 pol: 0.00040869999999999996 - sys_0: 2.4205120959673334e-05 - sys_1: -5.444190877463483e-06 - sys_2: 1.5722791645983914e-05 - sys_3: -6.00136111950355e-07 - sys_4: -2.1523535174843234e-05 - sys_5: 4.927704250451052e-05 - sys_6: 8.726953624519251e-06 - sys_7: 4.152523004109835e-05 - sys_8: -1.554948658764077e-05 - sys_9: 3.8864479998395915e-05 - sys_10: 5.071407727323686e-05 - sys_11: -1.6060393426230818e-05 - sys_12: 3.870221739166212e-05 - sys_13: -0.00010852752234012185 - sys_14: 0.0002697387518753302 - sys_15: -0.0024825800314653757 - sys_16: -0.0030871425533248046 - sys_17: 0.0006173926551777016 - sys_18: -8.851627347014294e-05 - sys_19: 7.787109442314204e-05 - sys_20: 0.0001828028173424944 - sys_21: 0.00016234822259028216 - sys_22: 7.300832313234382e-06 - sys_23: -2.014553836726235e-05 - sys_24: 4.7556622120913694e-05 - sys_25: 5.529234832500124e-06 - sys_26: 6.532877411333795e-06 - sys_27: -2.745015935547167e-05 - sys_28: -1.7233455643885712e-05 - sys_29: 6.436491656599522e-06 - sys_30: 1.566619909507939e-05 - sys_31: 6.08903312151212e-06 - sys_32: -2.838037640713458e-05 - sys_33: 1.4515999587259596e-05 - sys_34: -4.431790318334802e-06 - sys_35: -1.1143495479759462e-05 + sys_0: 2.4205120959673395e-05 + sys_1: -5.444190877463432e-06 + sys_2: 1.5722791645984022e-05 + sys_3: -6.001361119505859e-07 + sys_4: -2.1523535174842797e-05 + sys_5: 4.927704250451057e-05 + sys_6: 8.726953624518775e-06 + sys_7: 4.1525230041097905e-05 + sys_8: -1.554948658764242e-05 + sys_9: 3.88644799983978e-05 + sys_10: 5.071407727323446e-05 + sys_11: -1.6060393426230232e-05 + sys_12: 3.870221739165716e-05 + sys_13: -0.00010852752234012462 + sys_14: 0.00026973875187533315 + sys_15: -0.0024825800314651762 + sys_16: -0.0030871425533249247 + sys_17: 0.0006173926551777453 + sys_18: -8.851627347014498e-05 + sys_19: 7.787109442314548e-05 + sys_20: 0.00018280281734248674 + sys_21: 0.00016234822259027635 + sys_22: 7.300832313234506e-06 + sys_23: -2.014553836726263e-05 + sys_24: 4.755662212091294e-05 + sys_25: 5.529234832499775e-06 + sys_26: 6.53287741133436e-06 + sys_27: -2.7450159355471855e-05 + sys_28: -1.723345564388487e-05 + sys_29: 6.436491656599863e-06 + sys_30: 1.566619909507975e-05 + sys_31: 6.089033121512196e-06 + sys_32: -2.8380376407134468e-05 + sys_33: 1.4515999587258324e-05 + sys_34: -4.431790318337851e-06 + sys_35: -1.1143495479760304e-05 - lumi: 0.0007 pol: 0.00014639999999999998 - sys_0: 2.2711268975888834e-05 - sys_1: -5.07405519977087e-06 - sys_2: 1.2522827433063763e-05 - sys_3: -1.0245977596970578e-06 - sys_4: -1.6983266711967087e-05 - sys_5: 4.066738752219934e-05 - sys_6: 6.920553447401831e-06 - sys_7: 3.3414929658566534e-05 - sys_8: -1.1545289653403e-05 - sys_9: 3.159887092380475e-05 - sys_10: 3.8151337652350525e-05 - sys_11: -8.494818690307794e-06 - sys_12: 2.3975958024131946e-05 - sys_13: -6.256980103844092e-05 - sys_14: 9.30216053060881e-05 - sys_15: -0.00010990752732367705 - sys_16: -2.978439392791941e-05 - sys_17: -0.00016348127045161668 - sys_18: 4.140573799647448e-05 - sys_19: -8.039901847645031e-05 - sys_20: -0.000290989674852556 - sys_21: -0.0005905563323203709 - sys_22: 2.5539979523993916e-05 - sys_23: 0.002606137754088265 - sys_24: 0.00045136082408345516 - sys_25: 0.00010751631316426118 - sys_26: -9.373605061657642e-06 - sys_27: -5.414635363984558e-05 - sys_28: -2.7591089002936972e-05 - sys_29: 8.44143490569067e-05 - sys_30: 5.3763530600025844e-05 - sys_31: 3.7225470538197e-05 - sys_32: -8.679986426792194e-05 - sys_33: 4.656417629839125e-05 - sys_34: 7.93522213473708e-05 - sys_35: 3.686824621160096e-06 + sys_0: 2.2711268975888905e-05 + sys_1: -5.0740551997708974e-06 + sys_2: 1.2522827433063679e-05 + sys_3: -1.0245977596976228e-06 + sys_4: -1.6983266711966907e-05 + sys_5: 4.066738752219947e-05 + sys_6: 6.920553447400737e-06 + sys_7: 3.341492965856669e-05 + sys_8: -1.154528965340443e-05 + sys_9: 3.1598870923805416e-05 + sys_10: 3.815133765234944e-05 + sys_11: -8.494818690307764e-06 + sys_12: 2.397595802413145e-05 + sys_13: -6.256980103844028e-05 + sys_14: 9.302160530608788e-05 + sys_15: -0.00010990752732367692 + sys_16: -2.9784393927927433e-05 + sys_17: -0.00016348127045161598 + sys_18: 4.1405737996473585e-05 + sys_19: -8.039901847645473e-05 + sys_20: -0.00029098967485254945 + sys_21: -0.0005905563323203839 + sys_22: 2.5539979523998246e-05 + sys_23: 0.002606137754088261 + sys_24: 0.00045136082408345365 + sys_25: 0.00010751631316425498 + sys_26: -9.373605061657046e-06 + sys_27: -5.414635363984193e-05 + sys_28: -2.7591089002936467e-05 + sys_29: 8.441434905690504e-05 + sys_30: 5.376353060002814e-05 + sys_31: 3.722547053819513e-05 + sys_32: -8.679986426792247e-05 + sys_33: 4.656417629840996e-05 + sys_34: 7.93522213473566e-05 + sys_35: 3.68682462116063e-06 - lumi: 0.0007 pol: 0.00031719999999999996 - sys_0: 2.7734786152907583e-05 - sys_1: -7.155066555136723e-06 - sys_2: 1.894837894567719e-05 - sys_3: 1.3477200517147243e-07 - sys_4: -2.4206304042848947e-05 - sys_5: 5.682175969281097e-05 - sys_6: 1.0223412452862325e-05 - sys_7: 4.94135469091005e-05 - sys_8: -2.1214830533916953e-05 - sys_9: 5.166668106698138e-05 - sys_10: 7.100198281326451e-05 - sys_11: -6.213846782999133e-06 - sys_12: 5.7648645170736626e-05 - sys_13: -0.0001308495813146563 - sys_14: 0.00021752692741649858 - sys_15: -0.00026465156102284637 - sys_16: -1.4971526449104612e-05 - sys_17: -0.0004760637418264583 - sys_18: 0.0003301068595766301 - sys_19: -0.00017294103247516413 - sys_20: -0.0028546908805488626 - sys_21: 0.0013554652046465629 - sys_22: 4.7792672538380956e-05 - sys_23: -4.6190769084001484e-05 - sys_24: 1.0799700071329045e-05 - sys_25: 0.00022884762900159393 - sys_26: -1.6298982379822454e-05 - sys_27: -1.966849664614637e-05 - sys_28: -9.242648469114673e-06 - sys_29: 9.112921034845045e-05 - sys_30: 2.931085641271736e-05 - sys_31: 2.4788722957999453e-05 - sys_32: -4.232693392362559e-05 - sys_33: 9.146922149309855e-07 - sys_34: 0.00015494175016605036 - sys_35: 3.0820659857645093e-05 + sys_0: 2.7734786152907586e-05 + sys_1: -7.155066555136528e-06 + sys_2: 1.8948378945677377e-05 + sys_3: 1.3477200517111487e-07 + sys_4: -2.42063040428487e-05 + sys_5: 5.6821759692811104e-05 + sys_6: 1.022341245285996e-05 + sys_7: 4.9413546909098985e-05 + sys_8: -2.121483053391873e-05 + sys_9: 5.166668106698272e-05 + sys_10: 7.100198281326169e-05 + sys_11: -6.213846782997355e-06 + sys_12: 5.7648645170735305e-05 + sys_13: -0.00013084958131465648 + sys_14: 0.0002175269274164996 + sys_15: -0.00026465156102285043 + sys_16: -1.4971526449120435e-05 + sys_17: -0.0004760637418264511 + sys_18: 0.0003301068595766246 + sys_19: -0.00017294103247517896 + sys_20: -0.0028546908805488743 + sys_21: 0.0013554652046465529 + sys_22: 4.779267253839943e-05 + sys_23: -4.6190769083996124e-05 + sys_24: 1.0799700071333282e-05 + sys_25: 0.00022884762900159385 + sys_26: -1.6298982379823307e-05 + sys_27: -1.9668496646142362e-05 + sys_28: -9.24264846911501e-06 + sys_29: 9.112921034844865e-05 + sys_30: 2.9310856412719806e-05 + sys_31: 2.478872295799476e-05 + sys_32: -4.232693392362707e-05 + sys_33: 9.146922149680233e-07 + sys_34: 0.00015494175016604527 + sys_35: 3.08206598576493e-05 - lumi: 0.0007 pol: 0.0006709999999999999 - sys_0: 2.7361108957441005e-05 - sys_1: -6.356888748829645e-06 - sys_2: 1.8679277941844177e-05 - sys_3: -2.0128302299011633e-06 - sys_4: -3.091646319085073e-05 - sys_5: 8.138542500025143e-05 - sys_6: 9.394240186591722e-06 - sys_7: 9.310798960489039e-05 - sys_8: -2.6922174749846393e-05 - sys_9: 0.00010475490885647621 - sys_10: 0.00016694870660816555 - sys_11: -4.494672615989274e-05 - sys_12: 0.0002839518714079022 - sys_13: -0.0004369660740580082 - sys_14: 0.0041995613196612195 - sys_15: 0.0010631651303513489 - sys_16: -0.00037796795876870597 - sys_17: 0.0004765372490046071 - sys_18: -0.00044678024965661404 - sys_19: -7.458946160562403e-05 - sys_20: 0.00021646776414987134 - sys_21: 0.0002445893129606991 - sys_22: 6.224491474381815e-05 - sys_23: 3.774633039928424e-05 - sys_24: -0.00011042849569599705 - sys_25: 0.00018332282740198067 - sys_26: -8.244258022038552e-06 - sys_27: 2.4091498993700626e-06 - sys_28: -5.848463200988263e-07 - sys_29: 4.4658613525731567e-05 - sys_30: 3.9038383898936376e-06 - sys_31: 2.9549822702161563e-08 - sys_32: -7.4965507953481744e-06 - sys_33: -3.696141330970805e-05 - sys_34: 0.000124722455223452 - sys_35: 2.754501528817717e-05 + sys_0: 2.736110895744098e-05 + sys_1: -6.356888748829968e-06 + sys_2: 1.867927794184371e-05 + sys_3: -2.012830229899959e-06 + sys_4: -3.091646319084978e-05 + sys_5: 8.138542500025108e-05 + sys_6: 9.394240186590562e-06 + sys_7: 9.310798960488894e-05 + sys_8: -2.692217474984866e-05 + sys_9: 0.00010475490885647937 + sys_10: 0.00016694870660816208 + sys_11: -4.4946726159889184e-05 + sys_12: 0.0002839518714078959 + sys_13: -0.0004369660740580176 + sys_14: 0.004199561319661221 + sys_15: 0.0010631651303513805 + sys_16: -0.00037796795876863864 + sys_17: 0.00047653724900460504 + sys_18: -0.0004467802496566161 + sys_19: -7.458946160562013e-05 + sys_20: 0.00021646776414987028 + sys_21: 0.000244589312960703 + sys_22: 6.224491474382285e-05 + sys_23: 3.7746330399285135e-05 + sys_24: -0.0001104284956959943 + sys_25: 0.0001833228274019823 + sys_26: -8.24425802203882e-06 + sys_27: 2.409149899372602e-06 + sys_28: -5.848463200993562e-07 + sys_29: 4.465861352573006e-05 + sys_30: 3.903838389895191e-06 + sys_31: 2.9549822699274018e-08 + sys_32: -7.496550795349934e-06 + sys_33: -3.696141330967871e-05 + sys_34: 0.00012472245522345815 + sys_35: 2.7545015288181682e-05 - lumi: 0.0007 pol: 0.0012261 - sys_0: 4.216896131855797e-05 - sys_1: -1.8040493430369853e-05 - sys_2: 3.182290304501371e-05 - sys_3: 1.944051016858923e-05 - sys_4: -8.745117826864479e-05 - sys_5: 0.0002610585437404747 - sys_6: -1.0945440875734272e-05 - sys_7: 0.0003542209585235115 - sys_8: -4.494586905699029e-05 - sys_9: 0.000567787095148555 - sys_10: 0.006458487768253884 - sys_11: 0.0018601075392524528 - sys_12: -0.0009297368553190474 - sys_13: 0.000270896517641882 - sys_14: -0.00030254913301022576 - sys_15: 0.00037062328234619877 - sys_16: -0.0002561121933077558 - sys_17: 0.00010714558521826975 - sys_18: -0.0002094755267196622 - sys_19: -0.00012417322910214683 - sys_20: 4.2759548373172644e-05 - sys_21: 9.322582932203707e-05 - sys_22: 4.463988397930048e-05 - sys_23: 4.0294735419517334e-05 - sys_24: -0.00013243158170925652 - sys_25: 0.0001041572379796935 - sys_26: -2.667243314110643e-06 - sys_27: 3.4502402372818453e-06 - sys_28: 4.982372516724433e-07 - sys_29: 9.708698430657178e-06 - sys_30: -8.162402795341703e-07 - sys_31: -5.5051728778581714e-06 - sys_32: 1.6191637505969195e-06 - sys_33: -2.370264313094247e-05 - sys_34: 4.737214959208348e-05 - sys_35: 1.0296247714810579e-05 + sys_0: 4.2168961318558204e-05 + sys_1: -1.8040493430368857e-05 + sys_2: 3.182290304501388e-05 + sys_3: 1.944051016858795e-05 + sys_4: -8.745117826864289e-05 + sys_5: 0.00026105854374047256 + sys_6: -1.0945440875737611e-05 + sys_7: 0.00035422095852351293 + sys_8: -4.4945869056989645e-05 + sys_9: 0.0005677870951485476 + sys_10: 0.006458487768253893 + sys_11: 0.0018601075392524113 + sys_12: -0.0009297368553190402 + sys_13: 0.0002708965176418788 + sys_14: -0.00030254913301022533 + sys_15: 0.00037062328234621557 + sys_16: -0.00025611219330773377 + sys_17: 0.00010714558521826997 + sys_18: -0.00020947552671966437 + sys_19: -0.00012417322910214466 + sys_20: 4.2759548373172556e-05 + sys_21: 9.322582932203931e-05 + sys_22: 4.4639883979303606e-05 + sys_23: 4.029473541951788e-05 + sys_24: -0.0001324315817092541 + sys_25: 0.00010415723797969555 + sys_26: -2.6672433141110522e-06 + sys_27: 3.4502402372833535e-06 + sys_28: 4.982372516721413e-07 + sys_29: 9.708698430656364e-06 + sys_30: -8.162402795339463e-07 + sys_31: -5.505172877858669e-06 + sys_32: 1.6191637505963263e-06 + sys_33: -2.37026431309315e-05 + sys_34: 4.737214959208821e-05 + sys_35: 1.0296247714812524e-05 - lumi: 0.0007 pol: 0.001464 - sys_0: 0.00019557361566372098 - sys_1: -0.00017992091700051808 - sys_2: 0.00017927202791608837 - sys_3: 0.0003660294110554394 - sys_4: -0.000913494524490063 - sys_5: 0.002516622414970656 - sys_6: -0.0025785168718412007 - sys_7: 0.006736367214253652 - sys_8: -0.005562702794277883 - sys_9: -0.001037724016283338 - sys_10: -0.0009700188775559487 - sys_11: 0.0015414514424924393 - sys_12: -0.0007315456355418778 - sys_13: -8.635279247891968e-07 - sys_14: -0.00014772164726383958 - sys_15: 0.0003244455808859015 - sys_16: -0.0002600387205594625 - sys_17: 1.6298737034180356e-05 - sys_18: -0.00010820559562811921 - sys_19: -0.00010586240264626553 - sys_20: -1.8386901731346093e-05 - sys_21: 1.634314685614923e-06 - sys_22: 7.517258227383637e-06 - sys_23: 1.4051954759870006e-05 - sys_24: -7.30434249251154e-05 - sys_25: 3.59735805879498e-05 - sys_26: -8.689527685366217e-07 - sys_27: 1.850489193509901e-06 - sys_28: 4.189338003099894e-08 - sys_29: 1.5724603720759096e-06 - sys_30: -1.828022044505358e-07 - sys_31: -2.7061516624401224e-06 - sys_32: 1.0475923836075468e-06 - sys_33: -7.158030457435013e-06 - sys_34: 1.1124019132297472e-05 - sys_35: 2.4309203386920214e-06 + sys_0: 0.00019557361566372117 + sys_1: -0.00017992091700051686 + sys_2: 0.00017927202791609146 + sys_3: 0.0003660294110554336 + sys_4: -0.0009134945244900577 + sys_5: 0.0025166224149706542 + sys_6: -0.0025785168718412523 + sys_7: 0.006736367214253594 + sys_8: -0.005562702794277904 + sys_9: -0.0010377240162833684 + sys_10: -0.0009700188775559409 + sys_11: 0.0015414514424924412 + sys_12: -0.0007315456355418763 + sys_13: -8.63527924786546e-07 + sys_14: -0.00014772164726384118 + sys_15: 0.0003244455808859207 + sys_16: -0.00026003872055944494 + sys_17: 1.6298737034181806e-05 + sys_18: -0.00010820559562812042 + sys_19: -0.00010586240264626461 + sys_20: -1.838690173134584e-05 + sys_21: 1.6343146856171537e-06 + sys_22: 7.517258227384989e-06 + sys_23: 1.405195475987047e-05 + sys_24: -7.304342492511419e-05 + sys_25: 3.597358058795095e-05 + sys_26: -8.689527685366952e-07 + sys_27: 1.8504891935101645e-06 + sys_28: 4.189338003087993e-08 + sys_29: 1.5724603720757114e-06 + sys_30: -1.8280220445048968e-07 + sys_31: -2.7061516624401956e-06 + sys_32: 1.0475923836073082e-06 + sys_33: -7.158030457432252e-06 + sys_34: 1.1124019132298561e-05 + sys_35: 2.430920338692411e-06 - lumi: 0.0007 pol: 0.005697399999999999 - sys_0: 0.00394424928749791 - sys_1: -0.012501134347021728 - sys_2: 0.0264449380409075 - sys_3: -0.006971736890008444 - sys_4: 0.002595350480017923 - sys_5: -0.0008799128088274737 - sys_6: 0.0008517681118486095 - sys_7: 7.844082965392992e-05 - sys_8: -0.0003423116697744218 - sys_9: -1.721098634149058e-05 - sys_10: -5.450341955938146e-05 - sys_11: 0.00014216921525600103 - sys_12: -4.2882155736304875e-05 - sys_13: -5.62898129946584e-06 - sys_14: -4.391190605927062e-06 - sys_15: 1.3679684584656604e-05 - sys_16: -1.0929965747918132e-05 - sys_17: 3.248069246700459e-07 - sys_18: -3.6970779578645243e-06 - sys_19: -4.823180645610675e-06 - sys_20: -1.8777073287709331e-06 - sys_21: -3.058748592871662e-06 - sys_22: -1.1655689871601464e-06 - sys_23: -1.5037257067537078e-07 - sys_24: -4.02190507576274e-06 - sys_25: 1.1889694206987331e-06 - sys_26: -2.777419405467811e-08 - sys_27: 1.126440180656962e-07 - sys_28: -4.187989741644149e-08 - sys_29: -3.1900853225573806e-08 - sys_30: 7.527460311725738e-08 - sys_31: -1.3181370397918372e-07 - sys_32: -1.3089386915970926e-07 - sys_33: -2.3655852829065698e-07 - sys_34: 3.832321675464542e-07 - sys_35: 6.289476894114971e-10 + sys_0: 0.0039442492874979165 + sys_1: -0.012501134347021584 + sys_2: 0.026444938040907535 + sys_3: -0.0069717368900084386 + sys_4: 0.0025953504800179305 + sys_5: -0.0008799128088274792 + sys_6: 0.0008517681118486099 + sys_7: 7.844082965393336e-05 + sys_8: -0.00034231166977442324 + sys_9: -1.7210986341492456e-05 + sys_10: -5.450341955938031e-05 + sys_11: 0.00014216921525600116 + sys_12: -4.2882155736305356e-05 + sys_13: -5.6289812994658646e-06 + sys_14: -4.39119060592738e-06 + sys_15: 1.3679684584657506e-05 + sys_16: -1.0929965747917453e-05 + sys_17: 3.248069246702191e-07 + sys_18: -3.6970779578646213e-06 + sys_19: -4.823180645610463e-06 + sys_20: -1.8777073287706295e-06 + sys_21: -3.0587485928711057e-06 + sys_22: -1.16556898715983e-06 + sys_23: -1.5037257067520498e-07 + sys_24: -4.0219050757625154e-06 + sys_25: 1.1889694206987488e-06 + sys_26: -2.7774194054760118e-08 + sys_27: 1.1264401806579679e-07 + sys_28: -4.187989741645852e-08 + sys_29: -3.1900853225776895e-08 + sys_30: 7.527460311727573e-08 + sys_31: -1.3181370397902035e-07 + sys_32: -1.308938691597432e-07 + sys_33: -2.3655852829045197e-07 + sys_34: 3.8323216754639093e-07 + sys_35: 6.289476894024717e-10 diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2015_2JET_MIDRAP_200GEV/uncertainties_SS.yaml b/nnpdf_data/nnpdf_data/new_commondata/STAR_2015_2JET_MIDRAP_200GEV/uncertainties_SS.yaml index 69af9aac46..bcc8a67ff3 100644 --- a/nnpdf_data/nnpdf_data/new_commondata/STAR_2015_2JET_MIDRAP_200GEV/uncertainties_SS.yaml +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2015_2JET_MIDRAP_200GEV/uncertainties_SS.yaml @@ -154,267 +154,267 @@ definitions: bins: - lumi: 0.0007 pol: 0.0004331 - sys_0: 2.566966489574663e-05 - sys_1: -3.6973873912721496e-06 - sys_2: 1.4226288147546912e-05 - sys_3: -1.5876960931236844e-06 - sys_4: -2.063129836644625e-05 - sys_5: 5.4808114603773026e-05 - sys_6: 2.0743304908220686e-05 - sys_7: 3.623569390401037e-05 - sys_8: -1.6861627551519136e-05 - sys_9: 6.557213744945129e-05 - sys_10: 3.763929987481428e-05 - sys_11: -2.6943224667770906e-06 - sys_12: 3.699717309379034e-05 - sys_13: -0.0001791243805086333 - sys_14: 0.00013638219558771432 - sys_15: -0.0003437538964889431 - sys_16: -0.00015152680186949542 - sys_17: -0.0026647775496260943 - sys_18: -0.0022420464560907972 - sys_19: 0.0011310034859324035 - sys_20: 0.00024156015381071187 - sys_21: 0.0002478987939394416 - sys_22: -0.00017370082147642385 - sys_23: -1.3106478019234179e-05 - sys_24: 4.991447434008643e-05 - sys_25: -1.80387271044469e-05 - sys_26: 2.562571021662328e-06 - sys_27: -3.0538329417589674e-05 - sys_28: -1.804654056787526e-05 - sys_29: 1.2836121130542453e-05 - sys_30: 3.20976412750335e-05 - sys_31: 8.522508272709622e-06 - sys_32: -3.619701235837163e-05 - sys_33: 2.920999322984929e-05 - sys_34: -6.659931374158539e-06 - sys_35: -8.57017702712665e-06 + sys_0: 2.566966489574668e-05 + sys_1: -3.697387391271956e-06 + sys_2: 1.4226288147547051e-05 + sys_3: -1.587696093123796e-06 + sys_4: -2.063129836644584e-05 + sys_5: 5.4808114603772904e-05 + sys_6: 2.074330490821976e-05 + sys_7: 3.6235693904010194e-05 + sys_8: -1.686162755152075e-05 + sys_9: 6.557213744945281e-05 + sys_10: 3.7639299874812675e-05 + sys_11: -2.6943224667762313e-06 + sys_12: 3.699717309378812e-05 + sys_13: -0.0001791243805086342 + sys_14: 0.00013638219558771608 + sys_15: -0.0003437538964889519 + sys_16: -0.0001515268018695477 + sys_17: -0.0026647775496261078 + sys_18: -0.002242046456090777 + sys_19: 0.0011310034859324178 + sys_20: 0.0002415601538107008 + sys_21: 0.00024789879393943685 + sys_22: -0.00017370082147642038 + sys_23: -1.3106478019233967e-05 + sys_24: 4.991447434008557e-05 + sys_25: -1.8038727104448173e-05 + sys_26: 2.5625710216625103e-06 + sys_27: -3.0538329417589186e-05 + sys_28: -1.80465405678748e-05 + sys_29: 1.283612113054203e-05 + sys_30: 3.209764127503353e-05 + sys_31: 8.522508272710321e-06 + sys_32: -3.6197012358371534e-05 + sys_33: 2.9209993229847754e-05 + sys_34: -6.659931374164751e-06 + sys_35: -8.570177027127835e-06 - lumi: 0.0007 pol: 0.00029889999999999995 - sys_0: 2.659150440105816e-05 - sys_1: -4.369641361285013e-06 - sys_2: 1.319050738966851e-05 - sys_3: -2.200768469655277e-06 - sys_4: -2.188464919989284e-05 - sys_5: 5.234263474383961e-05 - sys_6: 1.8925736846190355e-05 - sys_7: 3.466559918529128e-05 - sys_8: -1.5270726921583994e-05 - sys_9: 6.0559288731972e-05 - sys_10: 3.848141749124722e-05 - sys_11: 1.552379934231666e-06 - sys_12: 3.2948090368580244e-05 - sys_13: -0.00013390232352248846 - sys_14: 0.00010255866714425406 - sys_15: -0.00012740213588307374 - sys_16: -5.7241123964300274e-05 - sys_17: -0.0004470435939962537 - sys_18: -2.864151543141426e-05 - sys_19: -0.00015181196492851853 - sys_20: -0.0002711935743346527 - sys_21: -0.0008693132822395942 - sys_22: 0.0026373703908254874 - sys_23: -0.00033214340712351906 - sys_24: 0.00029247933441508444 - sys_25: 0.00018349645342315566 - sys_26: -1.1576204701356267e-05 - sys_27: -4.293374650449766e-05 - sys_28: -1.8201104684572328e-05 - sys_29: 8.362367791353279e-05 - sys_30: 4.839215613850722e-05 - sys_31: 3.360724217356472e-05 - sys_32: -6.644264483763873e-05 - sys_33: 5.753547605712172e-05 - sys_34: 0.00010370806390435748 - sys_35: 2.035347647114533e-05 + sys_0: 2.6591504401058166e-05 + sys_1: -4.36964136128504e-06 + sys_2: 1.3190507389668528e-05 + sys_3: -2.2007684696551453e-06 + sys_4: -2.1884649199892404e-05 + sys_5: 5.2342634743839624e-05 + sys_6: 1.8925736846189386e-05 + sys_7: 3.466559918529136e-05 + sys_8: -1.5270726921585217e-05 + sys_9: 6.055928873197284e-05 + sys_10: 3.8481417491246374e-05 + sys_11: 1.5523799342321533e-06 + sys_12: 3.294809036857975e-05 + sys_13: -0.00013390232352248783 + sys_14: 0.0001025586671442542 + sys_15: -0.000127402135883074 + sys_16: -5.724112396431139e-05 + sys_17: -0.00044704359399625225 + sys_18: -2.8641515431410144e-05 + sys_19: -0.0001518119649285223 + sys_20: -0.000271193574334644 + sys_21: -0.0008693132822396311 + sys_22: 0.0026373703908254735 + sys_23: -0.00033214340712353017 + sys_24: 0.0002924793344150888 + sys_25: 0.00018349645342314726 + sys_26: -1.1576204701356659e-05 + sys_27: -4.2933746504493824e-05 + sys_28: -1.820110468457177e-05 + sys_29: 8.362367791353124e-05 + sys_30: 4.8392156138508766e-05 + sys_31: 3.360724217356118e-05 + sys_32: -6.644264483764e-05 + sys_33: 5.753547605714686e-05 + sys_34: 0.00010370806390433971 + sys_35: 2.0353476471146734e-05 - lumi: 0.0007 pol: 0.00010369999999999999 - sys_0: 3.370579339764503e-05 - sys_1: -5.572095760395613e-06 - sys_2: 1.7736395742336946e-05 - sys_3: 7.861900166000319e-07 - sys_4: -2.8669697074327235e-05 - sys_5: 7.346232207308177e-05 - sys_6: 2.222914788953642e-05 - sys_7: 6.256606659190075e-05 - sys_8: -2.3013447857295897e-05 - sys_9: 8.524177169151353e-05 - sys_10: 8.23998487892616e-05 - sys_11: 4.229658533070019e-06 - sys_12: 0.00010783530257734291 - sys_13: -0.00023505919161165634 - sys_14: 0.00031376808858071375 - sys_15: -0.0004719680050724829 - sys_16: -2.0661471213797647e-05 - sys_17: -0.0019243124252555203 - sys_18: 0.001118611669049059 - sys_19: -0.0025023626515044374 - sys_20: 0.0009234549916419706 - sys_21: 0.0005656226587210434 - sys_22: -0.0001042894698475903 - sys_23: 8.200380368830873e-06 - sys_24: -1.5051785061028108e-05 - sys_25: 0.00021543773679997785 - sys_26: -1.455807223296544e-05 - sys_27: -1.027304594192363e-05 - sys_28: -3.1406592903730267e-06 - sys_29: 7.633639769076949e-05 - sys_30: 1.5232676481136117e-05 - sys_31: 1.7642083990232292e-05 - sys_32: -2.6042857530989918e-05 - sys_33: -6.907519529302538e-06 - sys_34: 0.00014131733018019803 - sys_35: 3.1770087709652525e-05 + sys_0: 3.3705793397645024e-05 + sys_1: -5.572095760395687e-06 + sys_2: 1.7736395742336986e-05 + sys_3: 7.861900165996692e-07 + sys_4: -2.8669697074327313e-05 + sys_5: 7.346232207308176e-05 + sys_6: 2.222914788953527e-05 + sys_7: 6.256606659189976e-05 + sys_8: -2.301344785729789e-05 + sys_9: 8.52417716915156e-05 + sys_10: 8.239984878925952e-05 + sys_11: 4.229658533069495e-06 + sys_12: 0.00010783530257733871 + sys_13: -0.0002350591916116572 + sys_14: 0.0003137680885807154 + sys_15: -0.00047196800507249973 + sys_16: -2.066147121384525e-05 + sys_17: -0.0019243124252554986 + sys_18: 0.0011186116690490413 + sys_19: -0.002502362651504459 + sys_20: 0.000923454991641968 + sys_21: 0.0005656226587210358 + sys_22: -0.00010428946984759036 + sys_23: 8.200380368829056e-06 + sys_24: -1.5051785061027255e-05 + sys_25: 0.0002154377367999784 + sys_26: -1.455807223296598e-05 + sys_27: -1.0273045941919985e-05 + sys_28: -3.140659290373624e-06 + sys_29: 7.633639769076748e-05 + sys_30: 1.5232676481138204e-05 + sys_31: 1.7642083990228643e-05 + sys_32: -2.6042857530990728e-05 + sys_33: -6.907519529268795e-06 + sys_34: 0.00014131733018019627 + sys_35: 3.17700877096571e-05 - lumi: 0.0007 pol: 0.0008356999999999999 - sys_0: 3.4044796512012245e-05 - sys_1: -1.235580450763309e-05 - sys_2: 2.1758035353734206e-05 - sys_3: 2.867352508234647e-06 - sys_4: -4.5000867003292974e-05 - sys_5: 0.00011660353715517705 - sys_6: 2.3670615807236325e-05 - sys_7: 0.00013654091820906127 - sys_8: -2.133872904870482e-05 - sys_9: 0.00018600095090144265 - sys_10: 0.0002847662785624916 - sys_11: -4.5056098700560735e-05 - sys_12: 0.0011124363919218568 - sys_13: -0.004920999210457797 - sys_14: -0.0008069098617898477 - sys_15: 0.0004510305970018719 - sys_16: -0.0001898945558576748 - sys_17: 0.0003565379944131164 - sys_18: -0.0002933633650934632 - sys_19: -9.251741184978696e-05 - sys_20: 0.00011950286802132286 - sys_21: 0.0001825180984201983 - sys_22: 3.100269465540828e-05 - sys_23: 4.526859488422026e-05 - sys_24: -0.00011831061665909264 - sys_25: 0.0001492671555795182 - sys_26: -5.845042505503442e-06 - sys_27: 4.571630777897474e-06 - sys_28: 4.860552522656625e-07 - sys_29: 2.9802330985577454e-05 - sys_30: -1.2789117464646912e-06 - sys_31: -3.440359835173812e-06 - sys_32: -5.481509591689304e-07 - sys_33: -4.256851831819666e-05 - sys_34: 9.53289549268313e-05 - sys_35: 1.9691592570572704e-05 + sys_0: 3.404479651201234e-05 + sys_1: -1.2355804507632997e-05 + sys_2: 2.175803535373425e-05 + sys_3: 2.8673525082337993e-06 + sys_4: -4.500086700329217e-05 + sys_5: 0.00011660353715517645 + sys_6: 2.3670615807233838e-05 + sys_7: 0.0001365409182090625 + sys_8: -2.1338729048704342e-05 + sys_9: 0.00018600095090144704 + sys_10: 0.0002847662785624824 + sys_11: -4.505609870055931e-05 + sys_12: 0.0011124363919218427 + sys_13: -0.004920999210457798 + sys_14: -0.0008069098617898535 + sys_15: 0.00045103059700188754 + sys_16: -0.00018989455585764512 + sys_17: 0.00035653799441311504 + sys_18: -0.00029336336509346576 + sys_19: -9.251741184978314e-05 + sys_20: 0.00011950286802132251 + sys_21: 0.0001825180984202018 + sys_22: 3.100269465541296e-05 + sys_23: 4.5268594884221596e-05 + sys_24: -0.00011831061665908989 + sys_25: 0.00014926715557952042 + sys_26: -5.845042505503723e-06 + sys_27: 4.571630777899279e-06 + sys_28: 4.860552522653371e-07 + sys_29: 2.9802330985576475e-05 + sys_30: -1.2789117464637234e-06 + sys_31: -3.4403598351760967e-06 + sys_32: -5.481509591697848e-07 + sys_33: -4.256851831817424e-05 + sys_34: 9.532895492683928e-05 + sys_35: 1.969159257057692e-05 - lumi: 0.0007 pol: 0.0019276000000000002 - sys_0: 5.464114054645147e-05 - sys_1: -3.062095489186111e-05 - sys_2: 4.0415840571796696e-05 - sys_3: 1.5327427426349682e-05 - sys_4: -0.00017872619670486877 - sys_5: 0.00044376524936038536 - sys_6: 5.49802380054675e-06 - sys_7: 0.000886937198728721 - sys_8: 0.00018793036610378666 + sys_0: 5.464114054645167e-05 + sys_1: -3.0620954891859995e-05 + sys_2: 4.0415840571797475e-05 + sys_3: 1.532742742634746e-05 + sys_4: -0.00017872619670486635 + sys_5: 0.0004437652493603823 + sys_6: 5.4980238005319185e-06 + sys_7: 0.000886937198728706 + sys_8: 0.00018793036610370158 sys_9: 0.00798135211666991 - sys_10: -0.0010314352699320264 - sys_11: 0.0005351754359914387 - sys_12: -0.0006518098322777602 - sys_13: 0.00014697707264120312 - sys_14: -0.0002106305892936574 - sys_15: 0.0003206195984885479 - sys_16: -0.00023312036984821086 - sys_17: 7.918357935504335e-05 - sys_18: -0.0001453909296051549 - sys_19: -0.00010207566860981084 - sys_20: 1.663206929313714e-05 - sys_21: 6.385683411940092e-05 - sys_22: 2.784384855735132e-05 - sys_23: 3.4642646724997656e-05 - sys_24: -0.00011620766744040269 - sys_25: 6.444844243918791e-05 - sys_26: -1.5912776814627501e-06 - sys_27: 2.855625040059884e-06 - sys_28: 3.643486692950468e-07 - sys_29: 4.9923275695351105e-06 - sys_30: -9.889262034963313e-07 - sys_31: -4.677827812803862e-06 - sys_32: 2.1810152788058135e-06 - sys_33: -1.8515677888569596e-05 - sys_34: 2.9284153306517715e-05 - sys_35: 5.837344585341716e-06 + sys_10: -0.0010314352699320136 + sys_11: 0.0005351754359914419 + sys_12: -0.0006518098322777591 + sys_13: 0.0001469770726412067 + sys_14: -0.00021063058929365956 + sys_15: 0.0003206195984885657 + sys_16: -0.00023312036984819205 + sys_17: 7.918357935504453e-05 + sys_18: -0.00014539092960515665 + sys_19: -0.00010207566860980935 + sys_20: 1.6632069293137227e-05 + sys_21: 6.385683411940295e-05 + sys_22: 2.784384855735369e-05 + sys_23: 3.464264672499842e-05 + sys_24: -0.00011620766744040155 + sys_25: 6.444844243918978e-05 + sys_26: -1.591277681462906e-06 + sys_27: 2.8556250400605273e-06 + sys_28: 3.6434866929503136e-07 + sys_29: 4.992327569534718e-06 + sys_30: -9.889262034960041e-07 + sys_31: -4.677827812804312e-06 + sys_32: 2.1810152788053887e-06 + sys_33: -1.8515677888562326e-05 + sys_34: 2.9284153306521377e-05 + sys_35: 5.83734458534303e-06 - lumi: 0.0007 pol: 0.0014151999999999997 - sys_0: 0.0003071021131367993 - sys_1: -0.00035077514334489303 - sys_2: 0.0002562772739118575 - sys_3: 0.0006696767213730105 - sys_4: -0.002070423138136885 - sys_5: 0.008849667525284956 - sys_6: 0.007606687954749016 - sys_7: -0.0020343884304423352 - sys_8: -0.0011899493886719664 - sys_9: -0.00040555205669531207 - sys_10: -0.0005602587449578607 - sys_11: 0.0010779617610889333 - sys_12: -0.00041062059885300955 - sys_13: 3.227927534968388e-07 - sys_14: -8.847654536710416e-05 - sys_15: 0.00022386635784993453 - sys_16: -0.00018129739416672242 - sys_17: 4.9964415308542935e-06 - sys_18: -5.1128190299249654e-05 - sys_19: -5.866590347958515e-05 - sys_20: -1.6224017698830028e-05 - sys_21: -6.884067616956192e-06 - sys_22: -1.8429094045786048e-06 - sys_23: 7.30835919685055e-06 - sys_24: -4.661654866142171e-05 - sys_25: 1.8610162918199476e-05 - sys_26: -4.3726589029246027e-07 - sys_27: 1.4200305711977498e-06 - sys_28: -8.067098550155562e-08 - sys_29: 5.766010834362378e-07 - sys_30: 3.633520634872011e-08 - sys_31: -1.8040159269671746e-06 - sys_32: 3.022695953804084e-07 - sys_33: -4.149713509882675e-06 - sys_34: 6.091466180920674e-06 - sys_35: 1.1407411378471392e-06 + sys_0: 0.00030710211313679894 + sys_1: -0.00035077514334488664 + sys_2: 0.0002562772739118633 + sys_3: 0.0006696767213729979 + sys_4: -0.0020704231381368753 + sys_5: 0.008849667525284951 + sys_6: 0.007606687954749023 + sys_7: -0.0020343884304422953 + sys_8: -0.0011899493886719688 + sys_9: -0.00040555205669531847 + sys_10: -0.0005602587449578526 + sys_11: 0.001077961761088935 + sys_12: -0.0004106205988530096 + sys_13: 3.227927534993302e-07 + sys_14: -8.847654536710597e-05 + sys_15: 0.00022386635784994784 + sys_16: -0.0001812973941667103 + sys_17: 4.996441530855965e-06 + sys_18: -5.112819029925054e-05 + sys_19: -5.866590347958458e-05 + sys_20: -1.622401769882936e-05 + sys_21: -6.884067616954685e-06 + sys_22: -1.842909404577852e-06 + sys_23: 7.308359196850772e-06 + sys_24: -4.661654866142108e-05 + sys_25: 1.861016291820023e-05 + sys_26: -4.3726589029258293e-07 + sys_27: 1.4200305711980435e-06 + sys_28: -8.067098550157468e-08 + sys_29: 5.766010834360413e-07 + sys_30: 3.63352063487532e-08 + sys_31: -1.8040159269668269e-06 + sys_32: 3.0226959538025414e-07 + sys_33: -4.149713509881106e-06 + sys_34: 6.091466180921278e-06 + sys_35: 1.1407411378472316e-06 - lumi: 0.0007 pol: 0.0013908000000000002 - sys_0: 0.04021217259960858 - sys_1: 0.011067171099206125 - sys_2: -0.001741686503104436 - sys_3: -0.0037582018101186276 - sys_4: 0.0009561788929469937 - sys_5: -0.000502333136597115 - sys_6: 0.0005129899620712568 - sys_7: 0.00010203346169470573 - sys_8: -0.00015850575517120714 - sys_9: -1.4026407568518896e-05 - sys_10: -2.8151115451100227e-05 - sys_11: 6.75419320019088e-05 - sys_12: -1.9254775640780305e-05 - sys_13: -5.358580547351121e-08 - sys_14: -3.883327445976158e-06 - sys_15: 7.6231144403215724e-06 - sys_16: -4.526051988056168e-06 - sys_17: 2.202499168198968e-06 - sys_18: -2.0861615029363186e-06 - sys_19: -1.7390637860399502e-06 - sys_20: -2.511908932637233e-07 - sys_21: -1.0150398803148308e-06 - sys_22: -1.1524327187910162e-06 - sys_23: -4.857978881877494e-07 - sys_24: -2.0738794703057933e-06 - sys_25: 8.080610887023786e-07 - sys_26: 1.0213905463502986e-08 - sys_27: 6.845615185451228e-08 - sys_28: -9.36392593651474e-08 - sys_29: 2.1710453159270453e-08 - sys_30: 2.0820040688300134e-07 - sys_31: 1.1228233543167254e-08 - sys_32: -3.96824653172278e-07 - sys_33: -6.644355315771639e-10 - sys_34: 2.792066496877991e-07 - sys_35: -6.980638791207585e-08 + sys_0: 0.04021217259960857 + sys_1: 0.011067171099206099 + sys_2: -0.0017416865031044753 + sys_3: -0.0037582018101186268 + sys_4: 0.0009561788929469973 + sys_5: -0.0005023331365971161 + sys_6: 0.0005129899620712557 + sys_7: 0.0001020334616947074 + sys_8: -0.00015850575517120758 + sys_9: -1.4026407568519962e-05 + sys_10: -2.8151115451099387e-05 + sys_11: 6.754193200190864e-05 + sys_12: -1.9254775640780332e-05 + sys_13: -5.358580547333217e-08 + sys_14: -3.8833274459761175e-06 + sys_15: 7.623114440322249e-06 + sys_16: -4.5260519880558666e-06 + sys_17: 2.202499168198994e-06 + sys_18: -2.0861615029363296e-06 + sys_19: -1.739063786039995e-06 + sys_20: -2.5119089326369435e-07 + sys_21: -1.0150398803147086e-06 + sys_22: -1.152432718790942e-06 + sys_23: -4.857978881876611e-07 + sys_24: -2.0738794703058585e-06 + sys_25: 8.080610887024622e-07 + sys_26: 1.0213905463558677e-08 + sys_27: 6.84561518545065e-08 + sys_28: -9.363925936513953e-08 + sys_29: 2.1710453159201195e-08 + sys_30: 2.0820040688301527e-07 + sys_31: 1.1228233543209973e-08 + sys_32: -3.968246531722725e-07 + sys_33: -6.644355314976771e-10 + sys_34: 2.7920664968774416e-07 + sys_35: -6.980638791208676e-08 From 8b9d58e1d9fd7756a7a235fe3407f121cf365f71 Mon Sep 17 00:00:00 2001 From: Radonirinaunimi Date: Thu, 24 Oct 2024 13:52:17 +0200 Subject: [PATCH 09/22] Fix imports of `TOP_DEF` in STAR experiments --- .../commondata/STAR-2012_1JET_510GEV/filter.py | 11 +---------- .../commondata/STAR-2013_1JET_510GEV/filter.py | 2 +- 2 files changed, 2 insertions(+), 11 deletions(-) diff --git a/nnpdf_data/nnpdf_data/commondata/STAR-2012_1JET_510GEV/filter.py b/nnpdf_data/nnpdf_data/commondata/STAR-2012_1JET_510GEV/filter.py index 980ce7f832..f8da1f3419 100644 --- a/nnpdf_data/nnpdf_data/commondata/STAR-2012_1JET_510GEV/filter.py +++ b/nnpdf_data/nnpdf_data/commondata/STAR-2012_1JET_510GEV/filter.py @@ -10,6 +10,7 @@ import yaml from nnpdf_data.filter_utils.correlations import compute_covmat, upper_triangular_to_symmetric +from nnpdf_data.filter_utils.poldata_utils import TOPO_DEF # values from the paper https://arxiv.org/abs/1906.02740 SQRTS = 510 @@ -20,16 +21,6 @@ HERE = pathlib.Path(__file__).parent RAWDATA_PATH = HERE / "rawdata/" -# NOTE: the observable is symmetric for jet1 and jet2, -# so 1 and 2 are not ordered in pT. -TOPO_DEF = { - "A": {"abs_eta1_min": 0.3, "abs_eta1_max": 0.9, "abs_eta2_min": 0.3, "abs_eta2_max": 0.9}, - "B": {"abs_eta1_min": 0, "abs_eta1_max": 0.3, "abs_eta2_min": 0.3, "abs_eta2_max": 0.9}, - "C": {"abs_eta1_min": 0, "abs_eta1_max": 0.3, "abs_eta2_min": 0, "abs_eta2_max": 0.3}, - "D": {"abs_eta1_min": 0.3, "abs_eta1_max": 0.9, "abs_eta2_min": 0.3, "abs_eta2_max": 0.9}, - "I": {"abs_eta_min": 0, "abs_eta_max": 0.9}, -} - def read_1jet_data(): data_table = pathlib.Path(RAWDATA_PATH / "Figure12(Run12).csv") diff --git a/nnpdf_data/nnpdf_data/commondata/STAR-2013_1JET_510GEV/filter.py b/nnpdf_data/nnpdf_data/commondata/STAR-2013_1JET_510GEV/filter.py index 2372bf3fb1..310917bc1e 100644 --- a/nnpdf_data/nnpdf_data/commondata/STAR-2013_1JET_510GEV/filter.py +++ b/nnpdf_data/nnpdf_data/commondata/STAR-2013_1JET_510GEV/filter.py @@ -9,7 +9,7 @@ import yaml from nnpdf_data.filter_utils.correlations import compute_covmat, upper_triangular_to_symmetric -from nnpdf_data.new_commondata.STAR_2012_1JET_510GEV.filter import TOPO_DEF +from nnpdf_data.filter_utils.poldata_utils import TOPO_DEF # values from the paper https://arxiv.org/pdf/2110.11020.pdf SQRTS = 510 From 06c19b57db3c7229700ff328dd45091dfd026260 Mon Sep 17 00:00:00 2001 From: Radonirinaunimi Date: Thu, 24 Oct 2024 14:46:15 +0200 Subject: [PATCH 10/22] Fain only after listing the changed files --- .github/workflows/check_newcd.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/check_newcd.yml b/.github/workflows/check_newcd.yml index df41f02bbf..f3c07e817e 100644 --- a/.github/workflows/check_newcd.yml +++ b/.github/workflows/check_newcd.yml @@ -25,10 +25,10 @@ jobs: - name: Check for modified files 🛎️ uses: tj-actions/verify-changed-files@v20 id: verify-changed-files - with: - fail-if-changed: "false" - - name: List all changed tracked and untracked files 🛎️ + - name: List all changed files and fail if any 🛎️ + if: steps.verify-changed-files.outputs.files_changed == 'true' env: CHANGED_FILES: ${{ steps.verify-changed-files.outputs.changed_files }} run: | echo "Changed files: $CHANGED_FILES" + exit 1 From ce333b02cc55de240997c75d08d537c151b60d04 Mon Sep 17 00:00:00 2001 From: Radonirinaunimi Date: Fri, 25 Oct 2024 13:16:29 +0200 Subject: [PATCH 11/22] Add `YAML.pretiffier` for datasets with `filter.py` --- .../commondata/ATLAS_1JET_13TEV_DIF/data.yaml | 354 +- .../ATLAS_1JET_13TEV_DIF/data_altcorr1.yaml | 354 +- .../commondata/ATLAS_1JET_13TEV_DIF/filter.py | 3 + .../ATLAS_1JET_13TEV_DIF/uncertainties.yaml | 77932 +++++++-------- .../uncertainties_altcorr1.yaml | 78986 ++++++++-------- .../commondata/ATLAS_1JET_8TEV_R06/filter.py | 7 +- .../commondata/ATLAS_2JET_13TEV_DIF/data.yaml | 272 +- .../commondata/ATLAS_2JET_13TEV_DIF/filter.py | 3 + .../ATLAS_2JET_13TEV_DIF/uncertainties.yaml | 61236 ++++++------ .../data_d2Sig_dmttBar_dyttBar.yaml | 20 +- .../data_d2Sig_dmttBar_dyttBar_norm.yaml | 22 +- .../data_dSig_dmttBar.yaml | 10 +- .../data_dSig_dmttBar_norm.yaml | 18 +- .../data_dSig_dyttBar_norm.yaml | 20 +- .../ATLAS_TTBAR_13TEV_HADR_DIF/filter.py | 4 + .../uncertainties_d2Sig_dmttBar_dyttBar.yaml | 242 +- ...ertainties_d2Sig_dmttBar_dyttBar_norm.yaml | 242 +- .../uncertainties_dSig_dmttBar.yaml | 162 +- .../uncertainties_dSig_dmttBar_norm.yaml | 162 +- .../uncertainties_dSig_dyttBar.yaml | 288 +- .../uncertainties_dSig_dyttBar_norm.yaml | 288 +- .../data_dSig_dmttBar.yaml | 10 +- .../data_dSig_dmttBar_norm.yaml | 18 +- .../data_dSig_dpTt.yaml | 8 +- .../data_dSig_dpTt_norm.yaml | 16 +- .../data_dSig_dyt_norm.yaml | 8 +- .../data_dSig_dyttBar_norm.yaml | 14 +- .../ATLAS_TTBAR_13TEV_LJ_DIF/filter.py | 3 + .../uncertainties_dSig_dmttBar.yaml | 162 +- .../uncertainties_dSig_dmttBar_norm.yaml | 162 +- .../uncertainties_dSig_dpTt.yaml | 128 +- .../uncertainties_dSig_dpTt_norm.yaml | 128 +- .../uncertainties_dSig_dyt.yaml | 50 +- .../uncertainties_dSig_dyt_norm.yaml | 50 +- .../uncertainties_dSig_dyttBar.yaml | 98 +- .../uncertainties_dSig_dyttBar_norm.yaml | 98 +- .../data_dSig_dmttBar_norm.yaml | 6 +- .../ATLAS_TTBAR_8TEV_2L_DIF/filter.py | 3 + .../uncertainties_dSig_dmttBar.yaml | 72 +- .../uncertainties_dSig_dmttBar_norm.yaml | 72 +- .../uncertainties_dSig_dyttBar.yaml | 50 +- .../uncertainties_dSig_dyttBar_norm.yaml | 50 +- .../data_dSig_dmttBar.yaml | 14 +- .../data_dSig_dmttBar_norm.yaml | 14 +- .../data_dSig_dpTt.yaml | 16 +- .../data_dSig_dpTt_norm.yaml | 16 +- .../data_dSig_dyt.yaml | 10 +- .../data_dSig_dyt_norm.yaml | 10 +- .../data_dSig_dyttBar.yaml | 10 +- .../data_dSig_dyttBar_norm.yaml | 10 +- .../ATLAS_TTBAR_8TEV_LJ_DIF/filter.py | 3 + .../uncertainties_dSig_dmttBar.yaml | 1098 +- .../uncertainties_dSig_dmttBar_norm.yaml | 1032 +- .../uncertainties_dSig_dpTt.yaml | 1226 +- .../uncertainties_dSig_dpTt_norm.yaml | 1138 +- .../uncertainties_dSig_dyt.yaml | 758 +- .../uncertainties_dSig_dyt_norm.yaml | 722 +- .../uncertainties_dSig_dyttBar.yaml | 778 +- .../uncertainties_dSig_dyttBar_norm.yaml | 748 +- .../commondata/ATLAS_Z0_8TEV_ZMASS/filter.py | 4 + .../ATLAS_Z0_8TEV_ZMASS/kinematics.yaml | 4 +- .../ATLAS_Z0_8TEV_ZMASS/uncertainties.yaml | 98 +- .../CMS_1JET_13TEV_DIF/data_r04.yaml | 42 +- .../CMS_1JET_13TEV_DIF/data_r07.yaml | 50 +- .../commondata/CMS_1JET_13TEV_DIF/filter.py | 4 + .../CMS_1JET_13TEV_DIF/uncertainties_r04.yaml | 3354 +- .../CMS_1JET_13TEV_DIF/uncertainties_r07.yaml | 3288 +- .../data_dSig_dmttBar.yaml | 4 +- .../data_dSig_dmttBar_norm.yaml | 12 +- .../data_dSig_dpTt.yaml | 2 +- .../data_dSig_dpTt_norm.yaml | 10 +- .../data_dSig_dyt_norm.yaml | 2 +- .../CMS_TTBAR_13TEV_2L_DIF/filter.py | 3 + .../uncertainties_dSig_dmttBar.yaml | 98 +- .../uncertainties_dSig_dmttBar_norm.yaml | 72 +- .../uncertainties_dSig_dpTt.yaml | 72 +- .../uncertainties_dSig_dpTt_norm.yaml | 50 +- .../uncertainties_dSig_dyt.yaml | 200 +- .../uncertainties_dSig_dyt_norm.yaml | 162 +- .../uncertainties_dSig_dyttBar.yaml | 200 +- .../uncertainties_dSig_dyttBar_norm.yaml | 162 +- .../data_d2Sig_dyttBar_dmttBar.yaml | 4 +- .../data_d2Sig_dyttBar_dmttBar_norm.yaml | 44 +- .../data_dSig_dmttBar.yaml | 6 +- .../data_dSig_dmttBar_norm.yaml | 22 +- .../data_dSig_dpTt.yaml | 6 +- .../data_dSig_dpTt_norm.yaml | 16 +- .../CMS_TTBAR_13TEV_LJ_DIF/filter.py | 3 + .../uncertainties_d2Sig_dyttBar_dmttBar.yaml | 2470 +- ...ertainties_d2Sig_dyttBar_dmttBar_norm.yaml | 2444 +- .../uncertainties_dSig_dmttBar.yaml | 464 +- .../uncertainties_dSig_dmttBar_norm.yaml | 476 +- .../uncertainties_dSig_dpTt.yaml | 526 +- .../uncertainties_dSig_dpTt_norm.yaml | 536 +- .../uncertainties_dSig_dyt.yaml | 242 +- .../uncertainties_dSig_dyt_norm.yaml | 242 +- .../uncertainties_dSig_dyttBar.yaml | 200 +- .../uncertainties_dSig_dyttBar_norm.yaml | 200 +- .../data_d2Sig_dmttBar_dyttBar_norm.yaml | 32 +- .../data_d2Sig_dyt_dmttBar_norm.yaml | 32 +- .../data_d2Sig_dyt_dpTt_norm.yaml | 32 +- .../CMS_TTBAR_8TEV_2L_DIF/filter.py | 3 + ...ertainties_d2Sig_dmttBar_dyttBar_norm.yaml | 512 +- .../uncertainties_d2Sig_dyt_dmttBar_norm.yaml | 544 +- .../uncertainties_d2Sig_dyt_dpTt_norm.yaml | 544 +- .../CMS_TTBAR_8TEV_LJ_DIF/filter.py | 3 + .../uncertainties_dSig_dmttBar_norm.yaml | 160 +- .../uncertainties_dSig_dpTt_norm.yaml | 216 +- .../uncertainties_dSig_dyt_norm.yaml | 264 +- .../uncertainties_dSig_dyttBar_norm.yaml | 326 +- .../commondata/CMS_WPWM_13TEV_ETA/filter.py | 4 + .../CMS_WPWM_13TEV_ETA/filter_utils.py | 4 + .../CMS_WPWM_13TEV_ETA/kinematics_WM.yaml | 8 +- .../CMS_WPWM_13TEV_ETA/kinematics_WP.yaml | 8 +- .../CMS_WPWM_13TEV_ETA/uncertainties_WM.yaml | 648 +- .../CMS_WPWM_13TEV_ETA/uncertainties_WP.yaml | 648 +- .../CMS_WPWM_7TEV_ELECTRON/data.yaml | 2 +- .../CMS_WPWM_7TEV_ELECTRON/filter.py | 4 +- .../CMS_WPWM_7TEV_ELECTRON/kinematics.yaml | 28 +- .../CMS_WPWM_7TEV_ELECTRON/uncertainties.yaml | 242 +- .../commondata/CMS_WPWM_7TEV_MUON/data.yaml | 8 +- .../commondata/CMS_WPWM_7TEV_MUON/filter.py | 4 +- .../CMS_WPWM_7TEV_MUON/kinematics.yaml | 26 +- .../CMS_WPWM_7TEV_MUON/uncertainties.yaml | 242 +- .../commondata/CMS_WPWM_8TEV_MUON/filter.py | 4 +- .../CMS_WPWM_8TEV_MUON/kinematics.yaml | 52 +- .../CMS_WPWM_8TEV_MUON/uncertainties.yaml | 1954 +- .../commondata/CMS_Z0_7TEV_DIMUON/data.yaml | 150 +- .../commondata/CMS_Z0_7TEV_DIMUON/filter.py | 4 +- .../CMS_Z0_7TEV_DIMUON/uncertainties.yaml | 35094 +++---- .../COMPASS15_NC_NOTFIXED_MUD/filter.py | 4 + .../COMPASS15_NC_NOTFIXED_MUP/filter.py | 4 + .../COMPASS15_NC_NOTFIXED_MUP/kinematics.yaml | 2 +- .../commondata/E142_NC_NOTFIXED_EN/filter.py | 4 + .../commondata/E143_NC_NOTFIXED_ED/filter.py | 4 + .../E143_NC_NOTFIXED_ED/kinematics.yaml | 4 +- .../E143_NC_NOTFIXED_ED/uncertainties.yaml | 30 +- .../commondata/E143_NC_NOTFIXED_EP/filter.py | 4 + .../E143_NC_NOTFIXED_EP/kinematics.yaml | 4 +- .../E143_NC_NOTFIXED_EP/uncertainties.yaml | 24 +- .../commondata/E154_NC_9GEV_EN/filter.py | 4 + .../commondata/E155_NC_9GEV_EN/filter.py | 4 + .../E155_NC_9GEV_EN/uncertainties.yaml | 16 +- .../commondata/E155_NC_9GEV_EP/filter.py | 4 + .../E155_NC_9GEV_EP/uncertainties.yaml | 20 +- .../commondata/EMC_NC_NOTFIXED_MUP/filter.py | 4 + .../EMC_NC_NOTFIXED_MUP/uncertainties.yaml | 8 +- .../H1_1JET_319GEV_290PB-1_DIF/data.yaml | 96 +- .../data_highQ2.yaml | 12 +- .../data_highQ2_norm.yaml | 12 +- .../H1_1JET_319GEV_290PB-1_DIF/data_norm.yaml | 94 +- .../H1_1JET_319GEV_290PB-1_DIF/filter.py | 3 + .../uncertainties.yaml | 10252 +- .../uncertainties_highQ2.yaml | 106 +- .../uncertainties_highQ2_norm.yaml | 96 +- .../uncertainties_norm.yaml | 10418 +- .../H1_1JET_319GEV_351PB-1_DIF/data.yaml | 44 +- .../H1_1JET_319GEV_351PB-1_DIF/filter.py | 3 + .../uncertainties.yaml | 2740 +- .../uncertainties_norm.yaml | 64 +- .../H1_2JET_319GEV_290PB-1_DIF/data.yaml | 92 +- .../H1_2JET_319GEV_290PB-1_DIF/data_norm.yaml | 96 +- .../H1_2JET_319GEV_290PB-1_DIF/filter.py | 3 + .../uncertainties.yaml | 10254 +- .../uncertainties_norm.yaml | 10454 +- .../H1_2JET_319GEV_351PB-1_DIF/data.yaml | 42 +- .../H1_2JET_319GEV_351PB-1_DIF/filter.py | 3 + .../uncertainties.yaml | 2760 +- .../uncertainties_norm.yaml | 84 +- .../commondata/HERMES97_NC_7GEV_EN/filter.py | 4 + .../commondata/HERMES_NC_7GEV_ED/filter.py | 3 + .../HERMES_NC_7GEV_ED/uncertainties.yaml | 450 +- .../commondata/HERMES_NC_7GEV_EP/filter.py | 3 + .../HERMES_NC_7GEV_EP/uncertainties.yaml | 450 +- .../commondata/JLABE06_NC_3GEV_EN/filter.py | 4 + .../JLABE97_NC_NOTFIXED_EN/filter.py | 4 + .../commondata/JLABE99_NC_3GEV_EN/filter.py | 4 + .../JLABEG1B_NC_NOTFIXED_ED/filter.py | 4 + .../JLABEG1B_NC_NOTFIXED_EP/filter.py | 4 + .../JLABEG1DVCS_NC_3GEV_EP/filter.py | 4 + .../JLABEG1DVCS_NC_5GEV_ED/filter.py | 4 + .../commondata/LHCB_DY_7TEV_MUON/filter.py | 4 +- .../LHCB_DY_7TEV_MUON/kinematics.yaml | 66 +- .../LHCB_DY_7TEV_MUON/uncertainties.yaml | 2178 +- .../commondata/LHCB_DY_8TEV_MUON/filter.py | 4 +- .../LHCB_DY_8TEV_MUON/kinematics.yaml | 68 +- .../LHCB_DY_8TEV_MUON/uncertainties.yaml | 2312 +- .../commondata/LHCB_WPWM_7TEV_MUON/filter.py | 4 +- .../LHCB_WPWM_7TEV_MUON/kinematics.yaml | 32 +- .../LHCB_WPWM_7TEV_MUON/uncertainties.yaml | 1056 +- .../commondata/LHCB_WPWM_8TEV_MUON/filter.py | 4 +- .../LHCB_WPWM_8TEV_MUON/kinematics.yaml | 32 +- .../LHCB_WPWM_8TEV_MUON/uncertainties.yaml | 1088 +- .../commondata/LHCB_Z0J_13TEV_2022/filter.py | 4 + .../kinematics_dimuon_pT.yaml | 6 +- .../uncertainties_dimuon_pT.yaml | 1018 +- .../commondata/LHCB_Z0_13TEV/filter.py | 4 +- .../LHCB_Z0_13TEV/kinematics_dielectron.yaml | 34 +- .../LHCB_Z0_13TEV/kinematics_dimuon.yaml | 36 +- .../uncertainties_dielectron.yaml | 578 +- .../LHCB_Z0_13TEV/uncertainties_dimuon.yaml | 648 +- .../commondata/LHCB_Z0_13TEV_2022/filter.py | 4 + .../uncertainties_dimuon_y.yaml | 1584 +- .../LHCB_Z0_7TEV_DIELECTRON/filter.py | 4 +- .../LHCB_Z0_7TEV_DIELECTRON/kinematics.yaml | 18 +- .../uncertainties.yaml | 162 +- .../commondata/LHCB_Z0_7TEV_MUON/filter.py | 4 +- .../LHCB_Z0_7TEV_MUON/kinematics.yaml | 34 +- .../LHCB_Z0_7TEV_MUON/uncertainties.yaml | 1122 +- .../LHCB_Z0_8TEV_DIELECTRON/filter.py | 4 +- .../LHCB_Z0_8TEV_DIELECTRON/kinematics.yaml | 34 +- .../uncertainties.yaml | 578 +- .../commondata/LHCB_Z0_8TEV_MUON/filter.py | 4 +- .../LHCB_Z0_8TEV_MUON/kinematics.yaml | 36 +- .../LHCB_Z0_8TEV_MUON/uncertainties.yaml | 1224 +- .../PHENIX-2009_SHP_200GEV_PI0/filter.py | 4 + .../uncertainties.yaml | 10 +- .../PHENIX-2013_SHP_510GEV_PI0/filter.py | 4 + .../uncertainties.yaml | 16 +- .../commondata/PHENIX_1JET_200GEV/filter.py | 4 + .../PHENIX_1JET_200GEV/uncertainties.yaml | 12 +- .../commondata/SMCSX_NC_17GEV_MUP/filter.py | 4 + .../commondata/SMCSX_NC_24GEV_MUD/filter.py | 4 + .../commondata/SMC_NC_NOTFIXED_MUD/filter.py | 4 + .../commondata/SMC_NC_NOTFIXED_MUP/filter.py | 4 + .../STAR-2004_1JET_200GEV/filter.py | 4 + .../STAR-2005_1JET_200GEV/data.yaml | 2 +- .../STAR-2005_1JET_200GEV/filter.py | 3 + .../STAR-2005_1JET_200GEV/uncertainties.yaml | 42 +- .../STAR-2006_1JET_200GEV/data.yaml | 2 +- .../STAR-2006_1JET_200GEV/filter.py | 3 + .../STAR-2006_1JET_200GEV/kinematics.yaml | 18 +- .../STAR-2006_1JET_200GEV/uncertainties.yaml | 40 +- .../STAR-2006_SHP_200GEV_PI0/filter.py | 4 + .../uncertainties.yaml | 2 +- .../STAR-2009_1JET_200GEV/filter.py | 3 + .../STAR-2009_1JET_200GEV/kinematics_CC.yaml | 6 +- .../STAR-2009_1JET_200GEV/kinematics_CF.yaml | 10 +- .../uncertainties_CC.yaml | 1218 +- .../uncertainties_CF.yaml | 1228 +- .../STAR-2009_2JET_200GEV/kinematics_A.yaml | 4 +- .../STAR-2009_2JET_200GEV/kinematics_B.yaml | 4 +- .../STAR-2009_2JET_200GEV/kinematics_C.yaml | 4 +- .../uncertainties_A.yaml | 556 +- .../uncertainties_B.yaml | 776 +- .../uncertainties_C.yaml | 776 +- .../uncertainties_OS.yaml | 776 +- .../uncertainties_SS.yaml | 778 +- .../STAR-2012_1JET_510GEV/filter.py | 3 + .../STAR-2012_1JET_510GEV/kinematics.yaml | 4 +- .../STAR-2012_1JET_510GEV/uncertainties.yaml | 1594 +- .../STAR-2012_2JET_510GEV/kinematics_A.yaml | 4 +- .../STAR-2012_2JET_510GEV/kinematics_D.yaml | 2 +- .../uncertainties_A.yaml | 1134 +- .../uncertainties_B.yaml | 1246 +- .../uncertainties_C.yaml | 1134 +- .../uncertainties_D.yaml | 1248 +- .../STAR-2013_1JET_510GEV/filter.py | 3 + .../STAR-2013_1JET_510GEV/kinematics.yaml | 14 +- .../STAR-2013_1JET_510GEV/uncertainties.yaml | 1788 +- .../STAR-2013_2JET_510GEV/kinematics_A.yaml | 10 +- .../STAR-2013_2JET_510GEV/kinematics_B.yaml | 18 +- .../STAR-2013_2JET_510GEV/kinematics_C.yaml | 8 +- .../STAR-2013_2JET_510GEV/kinematics_D.yaml | 18 +- .../uncertainties_A.yaml | 1534 +- .../uncertainties_B.yaml | 1662 +- .../uncertainties_C.yaml | 1532 +- .../uncertainties_D.yaml | 1536 +- .../STAR-2013_SHP_510GEV_PI0/filter.py | 4 + .../uncertainties_highrap.yaml | 8 +- .../uncertainties_lowrap.yaml | 8 +- .../STAR-2015_1JET_200GEV/filter.py | 3 + .../STAR-2015_1JET_200GEV/kinematics_CC.yaml | 10 +- .../STAR-2015_1JET_200GEV/kinematics_CF.yaml | 6 +- .../uncertainties_CC.yaml | 810 +- .../uncertainties_CF.yaml | 814 +- .../kinematics_OS.yaml | 4 +- .../kinematics_SS.yaml | 2 +- .../uncertainties_OS.yaml | 516 +- .../uncertainties_SS.yaml | 518 +- .../commondata/STAR_WMWP_510GEV/filter.py | 4 + .../STAR_WMWP_510GEV/kinematics_wm.yaml | 12 +- .../STAR_WMWP_510GEV/kinematics_wp.yaml | 12 +- .../STAR_WMWP_510GEV/uncertainties_wm.yaml | 4 +- .../STAR_WMWP_510GEV/uncertainties_wp.yaml | 4 +- .../data_q2_et.yaml | 10 +- .../ZEUS_1JET_300GEV_38P6PB-1_DIF/filter.py | 3 + .../uncertainties_q2_et.yaml | 106 +- .../data_q2_et.yaml | 16 +- .../ZEUS_1JET_319GEV_82PB-1_DIF/filter.py | 3 + .../uncertainties_q2_et.yaml | 60 +- .../data_q2_et.yaml | 10 +- .../ZEUS_2JET_319GEV_374PB-1_DIF/filter.py | 3 + .../uncertainties_q2_et.yaml | 68 +- .../nnpdf_data/filter_utils/poldata_utils.py | 4 + 295 files changed, 186954 insertions(+), 186713 deletions(-) diff --git a/nnpdf_data/nnpdf_data/commondata/ATLAS_1JET_13TEV_DIF/data.yaml b/nnpdf_data/nnpdf_data/commondata/ATLAS_1JET_13TEV_DIF/data.yaml index 67fde7113d..e081e67c29 100644 --- a/nnpdf_data/nnpdf_data/commondata/ATLAS_1JET_13TEV_DIF/data.yaml +++ b/nnpdf_data/nnpdf_data/commondata/ATLAS_1JET_13TEV_DIF/data.yaml @@ -1,178 +1,178 @@ data_central: -- 12012.395677019727 -- 5805.855822622925 -- 2986.7760747890993 -- 1618.0189066809755 -- 866.0702461382718 -- 483.7955721778503 -- 273.82973527925583 -- 159.53629927203906 -- 96.32293442101836 -- 57.35129662088952 -- 35.51470522955681 -- 22.258348258105574 -- 13.904311505710947 -- 8.87398922434633 -- 5.662783145237589 -- 3.5803335100757483 -- 2.2948080815795833 -- 1.488287691808184 -- 0.9666895964237853 -- 0.6331780910637531 -- 0.4143922385472699 -- 0.27325050421075175 -- 0.1796705938869768 -- 0.1194121044060195 -- 0.07907277854138835 -- 0.05222409182564762 -- 0.03394761770546372 -- 0.02135468384818843 -- 0.011175760382172406 -- 0.004094638921422557 -- 0.0008211524130378225 -- 9.350988235909357e-05 -- 2.6719852606500003e-06 -- 11284.293294239747 -- 5473.509075067916 -- 2797.86030469021 -- 1484.4810349546685 -- 796.2815873314015 -- 447.5287163103749 -- 253.79537417670463 -- 147.48374073059207 -- 89.48158171627104 -- 53.645560413059926 -- 32.46540314992403 -- 20.494116906758666 -- 12.742392355439756 -- 7.965959790096058 -- 5.042963629376433 -- 3.237793395112471 -- 2.059755723291554 -- 1.3182681030912509 -- 0.8537395685404356 -- 0.5498381755494188 -- 0.3614011805629583 -- 0.23754780931769884 -- 0.15459651849205755 -- 0.09991181873075579 -- 0.06562236421430907 -- 0.042929347166356636 -- 0.02780540632379662 -- 0.017220035181521418 -- 0.008663723607554474 -- 0.002991631425970627 -- 0.0005960502791089548 -- 1.4217501695e-05 -- 9984.80843361196 -- 4781.082443443192 -- 2371.439759904795 -- 1268.3473478931446 -- 693.1258491444983 -- 379.19292179264284 -- 212.47623775388686 -- 122.2501781580464 -- 72.67426806854446 -- 43.11613366503545 -- 26.26695678874207 -- 16.16297770368895 -- 9.932155423073453 -- 6.125985264339973 -- 3.8700387205894358 -- 2.4042802989304928 -- 1.5068435269486478 -- 0.9531205281396835 -- 0.6011636376547504 -- 0.384768522775232 -- 0.2439528907595438 -- 0.1539503072680428 -- 0.09751214256651615 -- 0.061214903966926526 -- 0.038161764600778726 -- 0.02363742133719039 -- 0.015001373655853413 -- 0.008635055742749724 -- 0.003716693067206281 -- 0.0011264937746432188 -- 6.925354524e-05 -- 8218.635695113477 -- 3942.9595541473086 -- 1969.0392657385073 -- 1036.3321757422614 -- 549.3907292118342 -- 300.3909557598034 -- 170.65980572256095 -- 98.18272011769285 -- 55.536582577059 -- 32.37524963254733 -- 18.87246381056327 -- 11.557684242217222 -- 6.9620767431208 -- 4.275313656451863 -- 2.5418713673665136 -- 1.53844906397527 -- 0.9354738481486926 -- 0.5608518838668862 -- 0.34395046092405357 -- 0.2024821950462848 -- 0.11876527872988805 -- 0.0695298708995361 -- 0.040787624197935676 -- 0.023445921344686975 -- 0.012632450386607876 -- 0.006849936859536692 -- 0.0038711672146602236 -- 0.001990752440333189 -- 0.0006346710706504979 -- 9.844103500915241e-05 -- 5.970997104999999e-06 -- 6581.940013485811 -- 3039.2634239685713 -- 1494.695986426954 -- 771.3978080980003 -- 392.51759854266396 -- 208.69876612044084 -- 114.22497831869627 -- 62.95008433975566 -- 36.088147724610536 -- 19.447185205365976 -- 10.864417578902195 -- 6.291101064130688 -- 3.5139073002176864 -- 2.026684649496655 -- 1.1247320540331858 -- 0.6042783964960271 -- 0.3235818858236351 -- 0.1743835178344588 -- 0.08895378820119437 -- 0.04392969758097901 -- 0.021909380106208277 -- 0.010208602942094212 -- 0.00486793679706477 -- 0.001983624016573904 -- 0.0007911785314751509 -- 0.0003325741707852375 -- 0.00012882242249102346 -- 5.0081565205e-05 -- 4950.009455656963 -- 2200.530895889988 -- 1021.5162783529219 -- 492.72710403465413 -- 244.49416783206 -- 120.35496388439475 -- 60.121281630259645 -- 30.274464610793125 -- 15.104206443414311 -- 7.27742935216678 -- 3.458290382203292 -- 1.6773340820815337 -- 0.8205629410979077 -- 0.37906767835923205 -- 0.15848389860914688 -- 0.06336898597021957 -- 0.022245838735186818 -- 0.006604852008419558 -- 0.002025419089563235 -- 0.0005974416952043515 -- 0.0001925833570434389 -- 2.4038914075e-05 +- 1.20123957e+04 +- 5.80585582e+03 +- 2.98677607e+03 +- 1.61801891e+03 +- 8.66070246e+02 +- 4.83795572e+02 +- 2.73829735e+02 +- 1.59536299e+02 +- 9.63229344e+01 +- 5.73512966e+01 +- 3.55147052e+01 +- 2.22583483e+01 +- 1.39043115e+01 +- 8.87398922e+00 +- 5.66278315e+00 +- 3.58033351e+00 +- 2.29480808e+00 +- 1.48828769e+00 +- 9.66689596e-01 +- 6.33178091e-01 +- 4.14392239e-01 +- 2.73250504e-01 +- 1.79670594e-01 +- 1.19412104e-01 +- 7.90727785e-02 +- 5.22240918e-02 +- 3.39476177e-02 +- 2.13546838e-02 +- 1.11757604e-02 +- 4.09463892e-03 +- 8.21152413e-04 +- 9.35098824e-05 +- 2.67198526e-06 +- 1.12842933e+04 +- 5.47350908e+03 +- 2.79786030e+03 +- 1.48448103e+03 +- 7.96281587e+02 +- 4.47528716e+02 +- 2.53795374e+02 +- 1.47483741e+02 +- 8.94815817e+01 +- 5.36455604e+01 +- 3.24654031e+01 +- 2.04941169e+01 +- 1.27423924e+01 +- 7.96595979e+00 +- 5.04296363e+00 +- 3.23779340e+00 +- 2.05975572e+00 +- 1.31826810e+00 +- 8.53739569e-01 +- 5.49838176e-01 +- 3.61401181e-01 +- 2.37547809e-01 +- 1.54596518e-01 +- 9.99118187e-02 +- 6.56223642e-02 +- 4.29293472e-02 +- 2.78054063e-02 +- 1.72200352e-02 +- 8.66372361e-03 +- 2.99163143e-03 +- 5.96050279e-04 +- 1.42175017e-05 +- 9.98480843e+03 +- 4.78108244e+03 +- 2.37143976e+03 +- 1.26834735e+03 +- 6.93125849e+02 +- 3.79192922e+02 +- 2.12476238e+02 +- 1.22250178e+02 +- 7.26742681e+01 +- 4.31161337e+01 +- 2.62669568e+01 +- 1.61629777e+01 +- 9.93215542e+00 +- 6.12598526e+00 +- 3.87003872e+00 +- 2.40428030e+00 +- 1.50684353e+00 +- 9.53120528e-01 +- 6.01163638e-01 +- 3.84768523e-01 +- 2.43952891e-01 +- 1.53950307e-01 +- 9.75121426e-02 +- 6.12149040e-02 +- 3.81617646e-02 +- 2.36374213e-02 +- 1.50013737e-02 +- 8.63505574e-03 +- 3.71669307e-03 +- 1.12649377e-03 +- 6.92535452e-05 +- 8.21863570e+03 +- 3.94295955e+03 +- 1.96903927e+03 +- 1.03633218e+03 +- 5.49390729e+02 +- 3.00390956e+02 +- 1.70659806e+02 +- 9.81827201e+01 +- 5.55365826e+01 +- 3.23752496e+01 +- 1.88724638e+01 +- 1.15576842e+01 +- 6.96207674e+00 +- 4.27531366e+00 +- 2.54187137e+00 +- 1.53844906e+00 +- 9.35473848e-01 +- 5.60851884e-01 +- 3.43950461e-01 +- 2.02482195e-01 +- 1.18765279e-01 +- 6.95298709e-02 +- 4.07876242e-02 +- 2.34459213e-02 +- 1.26324504e-02 +- 6.84993686e-03 +- 3.87116721e-03 +- 1.99075244e-03 +- 6.34671071e-04 +- 9.84410350e-05 +- 5.97099710e-06 +- 6.58194001e+03 +- 3.03926342e+03 +- 1.49469599e+03 +- 7.71397808e+02 +- 3.92517599e+02 +- 2.08698766e+02 +- 1.14224978e+02 +- 6.29500843e+01 +- 3.60881477e+01 +- 1.94471852e+01 +- 1.08644176e+01 +- 6.29110106e+00 +- 3.51390730e+00 +- 2.02668465e+00 +- 1.12473205e+00 +- 6.04278396e-01 +- 3.23581886e-01 +- 1.74383518e-01 +- 8.89537882e-02 +- 4.39296976e-02 +- 2.19093801e-02 +- 1.02086029e-02 +- 4.86793680e-03 +- 1.98362402e-03 +- 7.91178531e-04 +- 3.32574171e-04 +- 1.28822422e-04 +- 5.00815652e-05 +- 4.95000946e+03 +- 2.20053090e+03 +- 1.02151628e+03 +- 4.92727104e+02 +- 2.44494168e+02 +- 1.20354964e+02 +- 6.01212816e+01 +- 3.02744646e+01 +- 1.51042064e+01 +- 7.27742935e+00 +- 3.45829038e+00 +- 1.67733408e+00 +- 8.20562941e-01 +- 3.79067678e-01 +- 1.58483899e-01 +- 6.33689860e-02 +- 2.22458387e-02 +- 6.60485201e-03 +- 2.02541909e-03 +- 5.97441695e-04 +- 1.92583357e-04 +- 2.40389141e-05 diff --git a/nnpdf_data/nnpdf_data/commondata/ATLAS_1JET_13TEV_DIF/data_altcorr1.yaml b/nnpdf_data/nnpdf_data/commondata/ATLAS_1JET_13TEV_DIF/data_altcorr1.yaml index 5ad34d3e1e..67995bc15d 100644 --- a/nnpdf_data/nnpdf_data/commondata/ATLAS_1JET_13TEV_DIF/data_altcorr1.yaml +++ b/nnpdf_data/nnpdf_data/commondata/ATLAS_1JET_13TEV_DIF/data_altcorr1.yaml @@ -1,178 +1,178 @@ data_central: -- 12010.977677019726 -- 5805.273322622633 -- 2986.544074105599 -- 1617.8988340809756 -- 866.0417681382719 -- 483.79857717785035 -- 273.8226302792558 -- 159.52381927203905 -- 96.31761842101835 -- 57.350481620889525 -- 35.51479522955681 -- 22.258373258105575 -- 13.904083505710947 -- 8.87355722434633 -- 5.662209645237589 -- 3.5798735100757484 -- 2.2945126315795834 -- 1.488119491808184 -- 0.9666142964237853 -- 0.6331611410637531 -- 0.41439478354726994 -- 0.27325182921075175 -- 0.1796689738869768 -- 0.1194108224060195 -- 0.07907185934638834 -- 0.05222267582564762 -- 0.03394614070546372 -- 0.021354069348188426 -- 0.011175967382172405 -- 0.004094589421422557 -- 0.0008210740130378225 -- 9.351253235909358e-05 -- 2.67176526065e-06 -- 11282.969265739746 -- 5473.217865567915 -- 2797.57353124021 -- 1484.3953229546685 -- 796.2260973314015 -- 447.4074363103749 -- 253.72102267670462 -- 147.46022023059209 -- 89.48186671627103 -- 53.64970541305993 -- 32.46544814992403 -- 20.491971906758664 -- 12.741086355439755 -- 7.965279790096058 -- 5.042275629376433 -- 3.2373683951124708 -- 2.0597127232915544 -- 1.318335103091251 -- 0.8537494185404357 -- 0.5498077255494188 -- 0.3613769805629583 -- 0.23754180431769883 -- 0.15460292349205756 -- 0.09992232323075578 -- 0.06563138221430907 -- 0.04293535686635663 -- 0.02780883332379662 -- 0.01722158118152142 -- 0.008663882107554473 -- 0.002991775325970627 -- 0.0005961060291089548 -- 1.4214561694999999e-05 -- 9981.96805662866 -- 4777.743351673192 -- 2370.0042079047953 -- 1268.0422678931445 -- 693.1660946444982 -- 379.2238722926428 -- 212.46639375388685 -- 122.2301771680464 -- 72.66037876854446 -- 43.112071665035444 -- 26.26695678874207 -- 16.16318970368895 -- 9.932186423073453 -- 6.126304764339973 -- 3.870470620589436 -- 2.4044276989304927 -- 1.5066879769486479 -- 0.9529050281396836 -- 0.6010396876547505 -- 0.384729492775232 -- 0.2439454507595438 -- 0.15394417526804277 -- 0.09750450756651616 -- 0.06120937396692652 -- 0.03815857610077873 -- 0.02363516008719039 -- 0.014999777155853412 -- 0.008634244242749724 -- 0.0037167862172062813 -- 0.0011268250246432188 -- 6.922762524e-05 -- 8215.705195113476 -- 3942.0515541473087 -- 1968.4152657385073 -- 1035.9421757422685 -- 549.2492292647004 -- 300.38426969955333 -- 170.70042566256095 -- 98.20909721769286 -- 55.547462077059 -- 32.376276132547325 -- 18.87026481056327 -- 11.556680242217222 -- 6.962191743120799 -- 4.275209156451863 -- 2.5414838673665137 -- 1.53816806397527 -- 0.9353844481486926 -- 0.5608543338668862 -- 0.34396872092405356 -- 0.20250024504628483 -- 0.11878033372988805 -- 0.06953676689953611 -- 0.04078739419793568 -- 0.023442481344686975 -- 0.012629202886607875 -- 0.0068480508595366914 -- 0.0038703672146602236 -- 0.0019905429403331886 -- 0.0006346026706504979 -- 9.839738500915241e-05 -- 5.971551105e-06 -- 6577.45162362731 -- 3038.1724907685716 -- 1494.667334926954 -- 771.5689770980002 -- 392.52334254266395 -- 208.65840967044085 -- 114.20511826869627 -- 62.93264083975566 -- 36.07557872461054 -- 19.442955205365976 -- 10.863199578902195 -- 6.289936564130688 -- 3.5132343002176865 -- 2.026508649496655 -- 1.1246115540331858 -- 0.6041724964960271 -- 0.32352308582363515 -- 0.1743507228344588 -- 0.08894574320119437 -- 0.043936930080979014 -- 0.021916960106208278 -- 0.010211269942094214 -- 0.0048683427970647696 -- 0.0019838971165739043 -- 0.0007916105314751509 -- 0.0003329817207852375 -- 0.00012908642249102344 -- 5.0430225205e-05 -- 4953.286694226963 -- 2200.9742003899883 -- 1021.4115348529218 -- 492.50644853465417 -- 244.35813983206 -- 120.31520688439474 -- 60.11649863025965 -- 30.284034110793122 -- 15.11188394341431 -- 7.27909385216678 -- 3.457439882203292 -- 1.6765445820815337 -- 0.8201862410979077 -- 0.37893992835923207 -- 0.1584635286091469 -- 0.06335529147021958 -- 0.02221969373518682 -- 0.0065849995084195576 -- 0.0020152570895632348 -- 0.0005938916952043516 -- 0.0001917532070434389 -- 2.4417014074999995e-05 +- 1.20109777e+04 +- 5.80527332e+03 +- 2.98654407e+03 +- 1.61789883e+03 +- 8.66041768e+02 +- 4.83798577e+02 +- 2.73822630e+02 +- 1.59523819e+02 +- 9.63176184e+01 +- 5.73504816e+01 +- 3.55147952e+01 +- 2.22583733e+01 +- 1.39040835e+01 +- 8.87355722e+00 +- 5.66220965e+00 +- 3.57987351e+00 +- 2.29451263e+00 +- 1.48811949e+00 +- 9.66614296e-01 +- 6.33161141e-01 +- 4.14394784e-01 +- 2.73251829e-01 +- 1.79668974e-01 +- 1.19410822e-01 +- 7.90718593e-02 +- 5.22226758e-02 +- 3.39461407e-02 +- 2.13540693e-02 +- 1.11759674e-02 +- 4.09458942e-03 +- 8.21074013e-04 +- 9.35125324e-05 +- 2.67176526e-06 +- 1.12829693e+04 +- 5.47321787e+03 +- 2.79757353e+03 +- 1.48439532e+03 +- 7.96226097e+02 +- 4.47407436e+02 +- 2.53721023e+02 +- 1.47460220e+02 +- 8.94818667e+01 +- 5.36497054e+01 +- 3.24654481e+01 +- 2.04919719e+01 +- 1.27410864e+01 +- 7.96527979e+00 +- 5.04227563e+00 +- 3.23736840e+00 +- 2.05971272e+00 +- 1.31833510e+00 +- 8.53749419e-01 +- 5.49807726e-01 +- 3.61376981e-01 +- 2.37541804e-01 +- 1.54602923e-01 +- 9.99223232e-02 +- 6.56313822e-02 +- 4.29353569e-02 +- 2.78088333e-02 +- 1.72215812e-02 +- 8.66388211e-03 +- 2.99177533e-03 +- 5.96106029e-04 +- 1.42145617e-05 +- 9.98196806e+03 +- 4.77774335e+03 +- 2.37000421e+03 +- 1.26804227e+03 +- 6.93166095e+02 +- 3.79223872e+02 +- 2.12466394e+02 +- 1.22230177e+02 +- 7.26603788e+01 +- 4.31120717e+01 +- 2.62669568e+01 +- 1.61631897e+01 +- 9.93218642e+00 +- 6.12630476e+00 +- 3.87047062e+00 +- 2.40442770e+00 +- 1.50668798e+00 +- 9.52905028e-01 +- 6.01039688e-01 +- 3.84729493e-01 +- 2.43945451e-01 +- 1.53944175e-01 +- 9.75045076e-02 +- 6.12093740e-02 +- 3.81585761e-02 +- 2.36351601e-02 +- 1.49997772e-02 +- 8.63424424e-03 +- 3.71678622e-03 +- 1.12682502e-03 +- 6.92276252e-05 +- 8.21570520e+03 +- 3.94205155e+03 +- 1.96841527e+03 +- 1.03594218e+03 +- 5.49249229e+02 +- 3.00384270e+02 +- 1.70700426e+02 +- 9.82090972e+01 +- 5.55474621e+01 +- 3.23762761e+01 +- 1.88702648e+01 +- 1.15566802e+01 +- 6.96219174e+00 +- 4.27520916e+00 +- 2.54148387e+00 +- 1.53816806e+00 +- 9.35384448e-01 +- 5.60854334e-01 +- 3.43968721e-01 +- 2.02500245e-01 +- 1.18780334e-01 +- 6.95367669e-02 +- 4.07873942e-02 +- 2.34424813e-02 +- 1.26292029e-02 +- 6.84805086e-03 +- 3.87036721e-03 +- 1.99054294e-03 +- 6.34602671e-04 +- 9.83973850e-05 +- 5.97155110e-06 +- 6.57745162e+03 +- 3.03817249e+03 +- 1.49466733e+03 +- 7.71568977e+02 +- 3.92523343e+02 +- 2.08658410e+02 +- 1.14205118e+02 +- 6.29326408e+01 +- 3.60755787e+01 +- 1.94429552e+01 +- 1.08631996e+01 +- 6.28993656e+00 +- 3.51323430e+00 +- 2.02650865e+00 +- 1.12461155e+00 +- 6.04172496e-01 +- 3.23523086e-01 +- 1.74350723e-01 +- 8.89457432e-02 +- 4.39369301e-02 +- 2.19169601e-02 +- 1.02112699e-02 +- 4.86834280e-03 +- 1.98389712e-03 +- 7.91610531e-04 +- 3.32981721e-04 +- 1.29086422e-04 +- 5.04302252e-05 +- 4.95328669e+03 +- 2.20097420e+03 +- 1.02141153e+03 +- 4.92506449e+02 +- 2.44358140e+02 +- 1.20315207e+02 +- 6.01164986e+01 +- 3.02840341e+01 +- 1.51118839e+01 +- 7.27909385e+00 +- 3.45743988e+00 +- 1.67654458e+00 +- 8.20186241e-01 +- 3.78939928e-01 +- 1.58463529e-01 +- 6.33552915e-02 +- 2.22196937e-02 +- 6.58499951e-03 +- 2.01525709e-03 +- 5.93891695e-04 +- 1.91753207e-04 +- 2.44170141e-05 diff --git a/nnpdf_data/nnpdf_data/commondata/ATLAS_1JET_13TEV_DIF/filter.py b/nnpdf_data/nnpdf_data/commondata/ATLAS_1JET_13TEV_DIF/filter.py index b0606649fe..391ad206e5 100644 --- a/nnpdf_data/nnpdf_data/commondata/ATLAS_1JET_13TEV_DIF/filter.py +++ b/nnpdf_data/nnpdf_data/commondata/ATLAS_1JET_13TEV_DIF/filter.py @@ -1,7 +1,10 @@ import yaml +from nnpdf_data.filter_utils.utils import prettify_float from nnpdf_data.filter_utils.utils import symmetrize_errors as se +yaml.add_representer(float, prettify_float) + def processData(): with open('metadata.yaml', 'r') as file: diff --git a/nnpdf_data/nnpdf_data/commondata/ATLAS_1JET_13TEV_DIF/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/ATLAS_1JET_13TEV_DIF/uncertainties.yaml index e5494a9c06..05bcacbfe1 100644 --- a/nnpdf_data/nnpdf_data/commondata/ATLAS_1JET_13TEV_DIF/uncertainties.yaml +++ b/nnpdf_data/nnpdf_data/commondata/ATLAS_1JET_13TEV_DIF/uncertainties.yaml @@ -1351,83 +1351,83 @@ bins: - stat: 79.55 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 175.58794121465172 - syst_JER_NP1: 22.653160375541425 - syst_JER_NP2: 63.867587718654285 - syst_JER_NP3: 10.329663870983412 - syst_JER_NP4: 63.346949934468036 - syst_JER_NP5: 9.43170025326823 - syst_JER_NP6: 12.435819987037446 - syst_JER_NP7: 15.150873266911054 - syst_JER_NP8: 21.155653499714916 - syst_JES_EtaIntercalibration_Modelling: 8.134471018449816e-06 + syst_JER_NP0: 1.75587941e+02 + syst_JER_NP1: 2.26531604e+01 + syst_JER_NP2: 6.38675877e+01 + syst_JER_NP3: 1.03296639e+01 + syst_JER_NP4: 6.33469499e+01 + syst_JER_NP5: 9.43170025e+00 + syst_JER_NP6: 1.24358200e+01 + syst_JER_NP7: 1.51508733e+01 + syst_JER_NP8: 2.11556535e+01 + syst_JES_EtaIntercalibration_Modelling: 8.13447102e-06 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 - syst_JES_EtaIntercalibration_Stat10: 0.018499825090186665 - syst_JES_EtaIntercalibration_Stat100: 0.3128092389939913 + syst_JES_EtaIntercalibration_Stat10: 1.84998251e-02 + syst_JES_EtaIntercalibration_Stat100: 3.12809239e-01 syst_JES_EtaIntercalibration_Stat101: 0.0 syst_JES_EtaIntercalibration_Stat102: 0.0 - syst_JES_EtaIntercalibration_Stat103: 0.016930796643985776 - syst_JES_EtaIntercalibration_Stat104: 0.016930796643985776 - syst_JES_EtaIntercalibration_Stat105: 0.016930796643985776 + syst_JES_EtaIntercalibration_Stat103: 1.69307966e-02 + syst_JES_EtaIntercalibration_Stat104: 1.69307966e-02 + syst_JES_EtaIntercalibration_Stat105: 1.69307966e-02 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 0.004650556418322435 - syst_JES_EtaIntercalibration_Stat11: 0.1672295054707751 - syst_JES_EtaIntercalibration_Stat110: 0.004387544529688559 - syst_JES_EtaIntercalibration_Stat111: 0.07977826019662247 - syst_JES_EtaIntercalibration_Stat112: 0.07977826019662247 + syst_JES_EtaIntercalibration_Stat109: 4.65055642e-03 + syst_JES_EtaIntercalibration_Stat11: 1.67229505e-01 + syst_JES_EtaIntercalibration_Stat110: 4.38754453e-03 + syst_JES_EtaIntercalibration_Stat111: 7.97782602e-02 + syst_JES_EtaIntercalibration_Stat112: 7.97782602e-02 syst_JES_EtaIntercalibration_Stat113: 0.0 - syst_JES_EtaIntercalibration_Stat114: 0.016722950547077512 - syst_JES_EtaIntercalibration_Stat115: 0.45831642112736914 - syst_JES_EtaIntercalibration_Stat116: 6.177851629005022 - syst_JES_EtaIntercalibration_Stat117: 9.728865234445381 - syst_JES_EtaIntercalibration_Stat118: 6.051872767995044 - syst_JES_EtaIntercalibration_Stat119: 4.2350088547723255 - syst_JES_EtaIntercalibration_Stat12: 0.1864565651834228 - syst_JES_EtaIntercalibration_Stat120: 0.028466626543199668 - syst_JES_EtaIntercalibration_Stat121: 0.003050141472128793 + syst_JES_EtaIntercalibration_Stat114: 1.67229505e-02 + syst_JES_EtaIntercalibration_Stat115: 4.58316421e-01 + syst_JES_EtaIntercalibration_Stat116: 6.17785163e+00 + syst_JES_EtaIntercalibration_Stat117: 9.72886523e+00 + syst_JES_EtaIntercalibration_Stat118: 6.05187277e+00 + syst_JES_EtaIntercalibration_Stat119: 4.23500885e+00 + syst_JES_EtaIntercalibration_Stat12: 1.86456565e-01 + syst_JES_EtaIntercalibration_Stat120: 2.84666265e-02 + syst_JES_EtaIntercalibration_Stat121: 3.05014147e-03 syst_JES_EtaIntercalibration_Stat122: 0.0 - syst_JES_EtaIntercalibration_Stat123: 0.016930796643985776 - syst_JES_EtaIntercalibration_Stat124: 0.016930796643985776 - syst_JES_EtaIntercalibration_Stat125: 0.016930796643985776 + syst_JES_EtaIntercalibration_Stat123: 1.69307966e-02 + syst_JES_EtaIntercalibration_Stat124: 1.69307966e-02 + syst_JES_EtaIntercalibration_Stat125: 1.69307966e-02 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 0.004650556418322435 - syst_JES_EtaIntercalibration_Stat129: 0.004387544529688559 + syst_JES_EtaIntercalibration_Stat128: 4.65055642e-03 + syst_JES_EtaIntercalibration_Stat129: 4.38754453e-03 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 0.0013891047476702395 + syst_JES_EtaIntercalibration_Stat130: 1.38910475e-03 syst_JES_EtaIntercalibration_Stat131: 0.0 syst_JES_EtaIntercalibration_Stat132: 0.0 - syst_JES_EtaIntercalibration_Stat133: 0.016722950547077512 - syst_JES_EtaIntercalibration_Stat134: 0.22421141808569875 - syst_JES_EtaIntercalibration_Stat135: 8.466564873075738 - syst_JES_EtaIntercalibration_Stat136: 15.443661321072797 - syst_JES_EtaIntercalibration_Stat137: 13.495609832460332 - syst_JES_EtaIntercalibration_Stat138: 9.006362459395024 - syst_JES_EtaIntercalibration_Stat139: 0.05332948152757534 + syst_JES_EtaIntercalibration_Stat133: 1.67229505e-02 + syst_JES_EtaIntercalibration_Stat134: 2.24211418e-01 + syst_JES_EtaIntercalibration_Stat135: 8.46656487e+00 + syst_JES_EtaIntercalibration_Stat136: 1.54436613e+01 + syst_JES_EtaIntercalibration_Stat137: 1.34956098e+01 + syst_JES_EtaIntercalibration_Stat138: 9.00636246e+00 + syst_JES_EtaIntercalibration_Stat139: 5.33294815e-02 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 0.003050141472128793 + syst_JES_EtaIntercalibration_Stat140: 3.05014147e-03 syst_JES_EtaIntercalibration_Stat141: 0.0 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 0.016930796643985776 - syst_JES_EtaIntercalibration_Stat144: 0.016930796643985776 + syst_JES_EtaIntercalibration_Stat143: 1.69307966e-02 + syst_JES_EtaIntercalibration_Stat144: 1.69307966e-02 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 0.0013891047476702395 - syst_JES_EtaIntercalibration_Stat148: 0.0013891047476702395 + syst_JES_EtaIntercalibration_Stat147: 1.38910475e-03 + syst_JES_EtaIntercalibration_Stat148: 1.38910475e-03 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 syst_JES_EtaIntercalibration_Stat150: 0.0 syst_JES_EtaIntercalibration_Stat151: 0.0 - syst_JES_EtaIntercalibration_Stat152: 0.06306202720338128 - syst_JES_EtaIntercalibration_Stat153: 0.31004581516285623 - syst_JES_EtaIntercalibration_Stat154: 0.9788550863125758 - syst_JES_EtaIntercalibration_Stat155: 0.8070242003806329 - syst_JES_EtaIntercalibration_Stat156: 0.642692920452684 - syst_JES_EtaIntercalibration_Stat157: 0.04810768623619307 + syst_JES_EtaIntercalibration_Stat152: 6.30620272e-02 + syst_JES_EtaIntercalibration_Stat153: 3.10045815e-01 + syst_JES_EtaIntercalibration_Stat154: 9.78855086e-01 + syst_JES_EtaIntercalibration_Stat155: 8.07024200e-01 + syst_JES_EtaIntercalibration_Stat156: 6.42692920e-01 + syst_JES_EtaIntercalibration_Stat157: 4.81076862e-02 syst_JES_EtaIntercalibration_Stat158: 0.0 syst_JES_EtaIntercalibration_Stat159: 0.0 syst_JES_EtaIntercalibration_Stat16: 0.0 @@ -1436,18 +1436,18 @@ bins: syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 0.0013891047476702395 + syst_JES_EtaIntercalibration_Stat165: 1.38910475e-03 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 9.431186709529187e-07 - syst_JES_EtaIntercalibration_Stat171: 0.03686842958413065 - syst_JES_EtaIntercalibration_Stat172: 0.04371356540022788 - syst_JES_EtaIntercalibration_Stat173: 0.007158450531190392 - syst_JES_EtaIntercalibration_Stat174: 0.010669248196569428 - syst_JES_EtaIntercalibration_Stat175: 0.0032419891120160703 + syst_JES_EtaIntercalibration_Stat170: 9.43118671e-07 + syst_JES_EtaIntercalibration_Stat171: 3.68684296e-02 + syst_JES_EtaIntercalibration_Stat172: 4.37135654e-02 + syst_JES_EtaIntercalibration_Stat173: 7.15845053e-03 + syst_JES_EtaIntercalibration_Stat174: 1.06692482e-02 + syst_JES_EtaIntercalibration_Stat175: 3.24198911e-03 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 syst_JES_EtaIntercalibration_Stat178: 0.0 @@ -1460,13 +1460,13 @@ bins: syst_JES_EtaIntercalibration_Stat184: 0.0 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 - syst_JES_EtaIntercalibration_Stat187: 6.283014304456103e-08 - syst_JES_EtaIntercalibration_Stat188: 0.001160643228903697 - syst_JES_EtaIntercalibration_Stat189: 0.0018311463622550765 + syst_JES_EtaIntercalibration_Stat187: 6.28301430e-08 + syst_JES_EtaIntercalibration_Stat188: 1.16064323e-03 + syst_JES_EtaIntercalibration_Stat189: 1.83114636e-03 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 0.0015520138272579918 - syst_JES_EtaIntercalibration_Stat191: 0.0012160787998727713 - syst_JES_EtaIntercalibration_Stat192: 8.667968306416836e-11 + syst_JES_EtaIntercalibration_Stat190: 1.55201383e-03 + syst_JES_EtaIntercalibration_Stat191: 1.21607880e-03 + syst_JES_EtaIntercalibration_Stat192: 8.66796831e-11 syst_JES_EtaIntercalibration_Stat193: 0.0 syst_JES_EtaIntercalibration_Stat194: 0.0 syst_JES_EtaIntercalibration_Stat195: 0.0 @@ -1478,12 +1478,12 @@ bins: syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 syst_JES_EtaIntercalibration_Stat201: 0.0 - syst_JES_EtaIntercalibration_Stat202: 5.739148122310898e-16 - syst_JES_EtaIntercalibration_Stat203: 6.898365096165902e-08 - syst_JES_EtaIntercalibration_Stat204: 9.839343630277123e-06 - syst_JES_EtaIntercalibration_Stat205: 8.507998986248177e-08 - syst_JES_EtaIntercalibration_Stat206: 6.862636719949556e-08 - syst_JES_EtaIntercalibration_Stat207: 2.9995720944828114e-29 + syst_JES_EtaIntercalibration_Stat202: 5.73914812e-16 + syst_JES_EtaIntercalibration_Stat203: 6.89836510e-08 + syst_JES_EtaIntercalibration_Stat204: 9.83934363e-06 + syst_JES_EtaIntercalibration_Stat205: 8.50799899e-08 + syst_JES_EtaIntercalibration_Stat206: 6.86263672e-08 + syst_JES_EtaIntercalibration_Stat207: 2.99957209e-29 syst_JES_EtaIntercalibration_Stat208: 0.0 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 @@ -1493,10 +1493,10 @@ bins: syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 syst_JES_EtaIntercalibration_Stat215: 0.0 - syst_JES_EtaIntercalibration_Stat216: 9.39377957528881e-23 - syst_JES_EtaIntercalibration_Stat217: 8.108592369887443e-17 - syst_JES_EtaIntercalibration_Stat218: 1.3648098768693022e-22 - syst_JES_EtaIntercalibration_Stat219: 8.968559081591647e-23 + syst_JES_EtaIntercalibration_Stat216: 9.39377958e-23 + syst_JES_EtaIntercalibration_Stat217: 8.10859237e-17 + syst_JES_EtaIntercalibration_Stat218: 1.36480988e-22 + syst_JES_EtaIntercalibration_Stat219: 8.96855908e-23 syst_JES_EtaIntercalibration_Stat22: 0.0 syst_JES_EtaIntercalibration_Stat220: 0.0 syst_JES_EtaIntercalibration_Stat221: 0.0 @@ -1509,8 +1509,8 @@ bins: syst_JES_EtaIntercalibration_Stat228: 0.0 syst_JES_EtaIntercalibration_Stat229: 0.0 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 5.192688321091494e-40 - syst_JES_EtaIntercalibration_Stat231: 5.747198795935286e-40 + syst_JES_EtaIntercalibration_Stat230: 5.19268832e-40 + syst_JES_EtaIntercalibration_Stat231: 5.74719880e-40 syst_JES_EtaIntercalibration_Stat232: 0.0 syst_JES_EtaIntercalibration_Stat233: 0.0 syst_JES_EtaIntercalibration_Stat234: 0.0 @@ -1532,12 +1532,12 @@ bins: syst_JES_EtaIntercalibration_Stat28: 0.0 syst_JES_EtaIntercalibration_Stat29: 0.0 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 0.045102155990595395 - syst_JES_EtaIntercalibration_Stat31: 1.3673632829281326 - syst_JES_EtaIntercalibration_Stat32: 1.4026858807302511 - syst_JES_EtaIntercalibration_Stat33: 1.0758654237403487 - syst_JES_EtaIntercalibration_Stat34: 0.5712259301663463 - syst_JES_EtaIntercalibration_Stat35: 0.021953056894200407 + syst_JES_EtaIntercalibration_Stat30: 4.51021560e-02 + syst_JES_EtaIntercalibration_Stat31: 1.36736328e+00 + syst_JES_EtaIntercalibration_Stat32: 1.40268588e+00 + syst_JES_EtaIntercalibration_Stat33: 1.07586542e+00 + syst_JES_EtaIntercalibration_Stat34: 5.71225930e-01 + syst_JES_EtaIntercalibration_Stat35: 2.19530569e-02 syst_JES_EtaIntercalibration_Stat36: 0.0 syst_JES_EtaIntercalibration_Stat37: 0.0 syst_JES_EtaIntercalibration_Stat38: 0.0 @@ -1556,89 +1556,89 @@ bins: syst_JES_EtaIntercalibration_Stat5: 0.0 syst_JES_EtaIntercalibration_Stat50: 0.0 syst_JES_EtaIntercalibration_Stat51: 0.0 - syst_JES_EtaIntercalibration_Stat52: 0.23989762415455473 - syst_JES_EtaIntercalibration_Stat53: 3.1109041735281724 - syst_JES_EtaIntercalibration_Stat54: 4.354433047768676 - syst_JES_EtaIntercalibration_Stat55: 3.747949139195995 - syst_JES_EtaIntercalibration_Stat56: 1.297306054803271 - syst_JES_EtaIntercalibration_Stat57: 0.14462893037010263 + syst_JES_EtaIntercalibration_Stat52: 2.39897624e-01 + syst_JES_EtaIntercalibration_Stat53: 3.11090417e+00 + syst_JES_EtaIntercalibration_Stat54: 4.35443305e+00 + syst_JES_EtaIntercalibration_Stat55: 3.74794914e+00 + syst_JES_EtaIntercalibration_Stat56: 1.29730605e+00 + syst_JES_EtaIntercalibration_Stat57: 1.44628930e-01 syst_JES_EtaIntercalibration_Stat58: 0.0 syst_JES_EtaIntercalibration_Stat59: 0.0 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 0.016930796643985776 - syst_JES_EtaIntercalibration_Stat62: 0.016930796643985776 + syst_JES_EtaIntercalibration_Stat61: 1.69307966e-02 + syst_JES_EtaIntercalibration_Stat62: 1.69307966e-02 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 0.004650556418322435 - syst_JES_EtaIntercalibration_Stat69: 0.004650556418322435 + syst_JES_EtaIntercalibration_Stat68: 4.65055642e-03 + syst_JES_EtaIntercalibration_Stat69: 4.65055642e-03 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 0.07977826019662247 - syst_JES_EtaIntercalibration_Stat71: 0.07977826019662247 + syst_JES_EtaIntercalibration_Stat70: 7.97782602e-02 + syst_JES_EtaIntercalibration_Stat71: 7.97782602e-02 syst_JES_EtaIntercalibration_Stat72: 0.0 syst_JES_EtaIntercalibration_Stat73: 0.0 - syst_JES_EtaIntercalibration_Stat74: 0.2939970239220118 - syst_JES_EtaIntercalibration_Stat75: 15.944422872904491 - syst_JES_EtaIntercalibration_Stat76: 21.097530661193506 - syst_JES_EtaIntercalibration_Stat77: 30.845020262596684 - syst_JES_EtaIntercalibration_Stat78: 17.214026257677197 - syst_JES_EtaIntercalibration_Stat79: 0.28771060751213184 + syst_JES_EtaIntercalibration_Stat74: 2.93997024e-01 + syst_JES_EtaIntercalibration_Stat75: 1.59444229e+01 + syst_JES_EtaIntercalibration_Stat76: 2.10975307e+01 + syst_JES_EtaIntercalibration_Stat77: 3.08450203e+01 + syst_JES_EtaIntercalibration_Stat78: 1.72140263e+01 + syst_JES_EtaIntercalibration_Stat79: 2.87710608e-01 syst_JES_EtaIntercalibration_Stat8: 0.0 syst_JES_EtaIntercalibration_Stat80: 0.0 syst_JES_EtaIntercalibration_Stat81: 0.0 - syst_JES_EtaIntercalibration_Stat82: 0.016930796643985776 - syst_JES_EtaIntercalibration_Stat83: 0.016930796643985776 - syst_JES_EtaIntercalibration_Stat84: 0.016930796643985776 + syst_JES_EtaIntercalibration_Stat82: 1.69307966e-02 + syst_JES_EtaIntercalibration_Stat83: 1.69307966e-02 + syst_JES_EtaIntercalibration_Stat84: 1.69307966e-02 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 0.004650556418322435 - syst_JES_EtaIntercalibration_Stat9: 0.033041867380643006 - syst_JES_EtaIntercalibration_Stat90: 0.004650556418322435 - syst_JES_EtaIntercalibration_Stat91: 0.07977826019662247 - syst_JES_EtaIntercalibration_Stat92: 0.07977826019662247 + syst_JES_EtaIntercalibration_Stat89: 4.65055642e-03 + syst_JES_EtaIntercalibration_Stat9: 3.30418674e-02 + syst_JES_EtaIntercalibration_Stat90: 4.65055642e-03 + syst_JES_EtaIntercalibration_Stat91: 7.97782602e-02 + syst_JES_EtaIntercalibration_Stat92: 7.97782602e-02 syst_JES_EtaIntercalibration_Stat93: 0.0 syst_JES_EtaIntercalibration_Stat94: 0.0 - syst_JES_EtaIntercalibration_Stat95: 0.5062122974355721 - syst_JES_EtaIntercalibration_Stat96: 19.522072123624582 - syst_JES_EtaIntercalibration_Stat97: 25.333548409174742 - syst_JES_EtaIntercalibration_Stat98: 25.933204102077323 - syst_JES_EtaIntercalibration_Stat99: 16.621723737326402 - syst_JES_EtaIntercalibration_TotalStat_MJB: 4.490532373783759e-14 - syst_JES_Flavour_Comp: 17.066753499128065 - syst_JES_Flavour_Response: 407.07353939429663 - syst_JES_Gjet_Generator: 242.97955387233716 - syst_JES_Gjet_OOC: 161.02088653339356 - syst_JES_Gjet_Purity: 65.58311728638706 + syst_JES_EtaIntercalibration_Stat95: 5.06212297e-01 + syst_JES_EtaIntercalibration_Stat96: 1.95220721e+01 + syst_JES_EtaIntercalibration_Stat97: 2.53335484e+01 + syst_JES_EtaIntercalibration_Stat98: 2.59332041e+01 + syst_JES_EtaIntercalibration_Stat99: 1.66217237e+01 + syst_JES_EtaIntercalibration_TotalStat_MJB: 4.49053237e-14 + syst_JES_Flavour_Comp: 1.70667535e+01 + syst_JES_Flavour_Response: 4.07073539e+02 + syst_JES_Gjet_Generator: 2.42979554e+02 + syst_JES_Gjet_OOC: 1.61020887e+02 + syst_JES_Gjet_Purity: 6.55831173e+01 syst_JES_Gjet_Stat1: 0.0 - syst_JES_Gjet_Stat10: 1.6545804626853298 - syst_JES_Gjet_Stat11: 0.3792516456127778 - syst_JES_Gjet_Stat12: 0.07357980208589854 - syst_JES_Gjet_Stat13: 0.0007099231930286544 - syst_JES_Gjet_Stat14: 7.69463561513915e-21 - syst_JES_Gjet_Stat15: 1.5440028335466228e-21 - syst_JES_Gjet_Stat2: 1.9598154887641845 - syst_JES_Gjet_Stat3: 3.149253562354102 - syst_JES_Gjet_Stat4: 4.939861320927947 - syst_JES_Gjet_Stat5: 6.769791798866492 - syst_JES_Gjet_Stat6: 17.61731250787134 - syst_JES_Gjet_Stat7: 25.888133864765148 - syst_JES_Gjet_Stat8: 4.605931284767501 - syst_JES_Gjet_Stat9: 0.8880273869650642 - syst_JES_Gjet_Veto: 42.13157993714453 - syst_JES_Gjet_dPhi: 28.972025731729563 - syst_JES_LArESZee: 148.6117259841901 - syst_JES_LArEsmear: 12.34216985582357 - syst_JES_LAr_JVT: 26.470826866571436 - syst_JES_MJB_Alpha: 0.00046427621896883754 - syst_JES_MJB_Asym: 0.0009934428670034328 + syst_JES_Gjet_Stat10: 1.65458046e+00 + syst_JES_Gjet_Stat11: 3.79251646e-01 + syst_JES_Gjet_Stat12: 7.35798021e-02 + syst_JES_Gjet_Stat13: 7.09923193e-04 + syst_JES_Gjet_Stat14: 7.69463562e-21 + syst_JES_Gjet_Stat15: 1.54400283e-21 + syst_JES_Gjet_Stat2: 1.95981549e+00 + syst_JES_Gjet_Stat3: 3.14925356e+00 + syst_JES_Gjet_Stat4: 4.93986132e+00 + syst_JES_Gjet_Stat5: 6.76979180e+00 + syst_JES_Gjet_Stat6: 1.76173125e+01 + syst_JES_Gjet_Stat7: 2.58881339e+01 + syst_JES_Gjet_Stat8: 4.60593128e+00 + syst_JES_Gjet_Stat9: 8.88027387e-01 + syst_JES_Gjet_Veto: 4.21315799e+01 + syst_JES_Gjet_dPhi: 2.89720257e+01 + syst_JES_LArESZee: 1.48611726e+02 + syst_JES_LArEsmear: 1.23421699e+01 + syst_JES_LAr_JVT: 2.64708269e+01 + syst_JES_MJB_Alpha: 4.64276219e-04 + syst_JES_MJB_Asym: 9.93442867e-04 syst_JES_MJB_Beta: 0.0 - syst_JES_MJB_Fragmentation: 5.097799329122323e-14 - syst_JES_MJB_Stat1: 3.538145418153415e-06 + syst_JES_MJB_Fragmentation: 5.09779933e-14 + syst_JES_MJB_Stat1: 3.53814542e-06 syst_JES_MJB_Stat10: 0.0 syst_JES_MJB_Stat11: 0.0 syst_JES_MJB_Stat12: 0.0 @@ -1646,125 +1646,125 @@ bins: syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 1.454922678357857e-06 - syst_JES_MJB_Stat3: 1.4126411333129267e-11 - syst_JES_MJB_Stat4: 9.830254358357162e-17 - syst_JES_MJB_Stat5: 1.8333757798116567e-38 - syst_JES_MJB_Stat6: 8.077418941097459e-40 + syst_JES_MJB_Stat2: 1.45492268e-06 + syst_JES_MJB_Stat3: 1.41264113e-11 + syst_JES_MJB_Stat4: 9.83025436e-17 + syst_JES_MJB_Stat5: 1.83337578e-38 + syst_JES_MJB_Stat6: 8.07741894e-40 syst_JES_MJB_Stat7: 0.0 syst_JES_MJB_Stat8: 0.0 syst_JES_MJB_Stat9: 0.0 - syst_JES_MJB_Threshold: 0.0010129240087489288 - syst_JES_Pileup_MuOffset: 4.612001382263452e-37 - syst_JES_Pileup_NPVOffset: 19.854551115550308 - syst_JES_Pileup_Pt_term: 32.382597178114054 - syst_JES_Pileup_Rho_topology: 146.0228071329955 + syst_JES_MJB_Threshold: 1.01292401e-03 + syst_JES_Pileup_MuOffset: 4.61200138e-37 + syst_JES_Pileup_NPVOffset: 1.98545511e+01 + syst_JES_Pileup_Pt_term: 3.23825972e+01 + syst_JES_Pileup_Rho_topology: 1.46022807e+02 syst_JES_PunchThrough_MC15: 0.0 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 234.5975768736753 - syst_JES_Zjet_MuScale: 15.523891804248057 - syst_JES_Zjet_MuSmearID: 2.2743702945995294 - syst_JES_Zjet_MuSmearMS: 3.2928586365041546 - syst_JES_Zjet_OOC: 169.17535067201723 - syst_JES_Zjet_Stat1: 4.3884958334263 - syst_JES_Zjet_Stat10: 6.916988705354376 - syst_JES_Zjet_Stat11: 5.74931619847091 - syst_JES_Zjet_Stat12: 0.7785886895530912 - syst_JES_Zjet_Stat13: 0.08360283891710855 + syst_JES_Zjet_MC: 2.34597577e+02 + syst_JES_Zjet_MuScale: 1.55238918e+01 + syst_JES_Zjet_MuSmearID: 2.27437029e+00 + syst_JES_Zjet_MuSmearMS: 3.29285864e+00 + syst_JES_Zjet_OOC: 1.69175351e+02 + syst_JES_Zjet_Stat1: 4.38849583e+00 + syst_JES_Zjet_Stat10: 6.91698871e+00 + syst_JES_Zjet_Stat11: 5.74931620e+00 + syst_JES_Zjet_Stat12: 7.78588690e-01 + syst_JES_Zjet_Stat13: 8.36028389e-02 syst_JES_Zjet_Stat2: 0.0 - syst_JES_Zjet_Stat3: 2.2958333454325466 - syst_JES_Zjet_Stat4: 2.4514886431513405 - syst_JES_Zjet_Stat5: 4.152563906793007 - syst_JES_Zjet_Stat6: 7.75669354493266 - syst_JES_Zjet_Stat7: 12.325347865273418 - syst_JES_Zjet_Stat8: 22.19053120139308 - syst_JES_Zjet_Stat9: 24.266278556878056 - syst_JES_Zjet_Veto: 23.38924271967778 - syst_JES_Zjet_dPhi: 35.760487622514326 + syst_JES_Zjet_Stat3: 2.29583335e+00 + syst_JES_Zjet_Stat4: 2.45148864e+00 + syst_JES_Zjet_Stat5: 4.15256391e+00 + syst_JES_Zjet_Stat6: 7.75669354e+00 + syst_JES_Zjet_Stat7: 1.23253479e+01 + syst_JES_Zjet_Stat8: 2.21905312e+01 + syst_JES_Zjet_Stat9: 2.42662786e+01 + syst_JES_Zjet_Veto: 2.33892427e+01 + syst_JES_Zjet_dPhi: 3.57604876e+01 syst_PRW: 31.41 syst_Unfolding_bias: 16.84 - syst_cleaning: 119.03259367395974 + syst_cleaning: 1.19032594e+02 syst_lumi: 249.59 - stat: 49.29 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 70.9811682490504 - syst_JER_NP1: 10.966231018449319 - syst_JER_NP2: 25.8935411830827 - syst_JER_NP3: 5.631858019339622 - syst_JER_NP4: 26.30461746538048 - syst_JER_NP5: 4.796355091890091 - syst_JER_NP6: 6.697755071663938 - syst_JER_NP7: 7.045747795656612 - syst_JER_NP8: 9.004242486183943 - syst_JES_EtaIntercalibration_Modelling: 0.0019605853080139103 + syst_JER_NP0: 7.09811682e+01 + syst_JER_NP1: 1.09662310e+01 + syst_JER_NP2: 2.58935412e+01 + syst_JER_NP3: 5.63185802e+00 + syst_JER_NP4: 2.63046175e+01 + syst_JER_NP5: 4.79635509e+00 + syst_JER_NP6: 6.69775507e+00 + syst_JER_NP7: 7.04574780e+00 + syst_JER_NP8: 9.00424249e+00 + syst_JES_EtaIntercalibration_Modelling: 1.96058531e-03 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 - syst_JES_EtaIntercalibration_Stat10: 0.011343974733311071 - syst_JES_EtaIntercalibration_Stat100: 0.1767260804182563 + syst_JES_EtaIntercalibration_Stat10: 1.13439747e-02 + syst_JES_EtaIntercalibration_Stat100: 1.76726080e-01 syst_JES_EtaIntercalibration_Stat101: 0.0 syst_JES_EtaIntercalibration_Stat102: 0.0 - syst_JES_EtaIntercalibration_Stat103: 0.006080364359970544 - syst_JES_EtaIntercalibration_Stat104: 0.006080364359970544 - syst_JES_EtaIntercalibration_Stat105: 0.006080364359970544 + syst_JES_EtaIntercalibration_Stat103: 6.08036436e-03 + syst_JES_EtaIntercalibration_Stat104: 6.08036436e-03 + syst_JES_EtaIntercalibration_Stat105: 6.08036436e-03 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 0.013691861633831976 - syst_JES_EtaIntercalibration_Stat11: 0.025928800589306095 - syst_JES_EtaIntercalibration_Stat110: 0.012981128610409806 - syst_JES_EtaIntercalibration_Stat111: 0.03714382956831457 - syst_JES_EtaIntercalibration_Stat112: 0.03714382956831457 + syst_JES_EtaIntercalibration_Stat109: 1.36918616e-02 + syst_JES_EtaIntercalibration_Stat11: 2.59288006e-02 + syst_JES_EtaIntercalibration_Stat110: 1.29811286e-02 + syst_JES_EtaIntercalibration_Stat111: 3.71438296e-02 + syst_JES_EtaIntercalibration_Stat112: 3.71438296e-02 syst_JES_EtaIntercalibration_Stat113: 0.0 - syst_JES_EtaIntercalibration_Stat114: 0.002480296756438632 - syst_JES_EtaIntercalibration_Stat115: 0.210694587199102 - syst_JES_EtaIntercalibration_Stat116: 7.766510847864696 - syst_JES_EtaIntercalibration_Stat117: 11.624375209016614 - syst_JES_EtaIntercalibration_Stat118: 10.567090943112015 - syst_JES_EtaIntercalibration_Stat119: 8.404648475694863 - syst_JES_EtaIntercalibration_Stat12: 0.04419834932438088 - syst_JES_EtaIntercalibration_Stat120: 0.15910300908530925 - syst_JES_EtaIntercalibration_Stat121: 0.0068156199277835325 + syst_JES_EtaIntercalibration_Stat114: 2.48029676e-03 + syst_JES_EtaIntercalibration_Stat115: 2.10694587e-01 + syst_JES_EtaIntercalibration_Stat116: 7.76651085e+00 + syst_JES_EtaIntercalibration_Stat117: 1.16243752e+01 + syst_JES_EtaIntercalibration_Stat118: 1.05670909e+01 + syst_JES_EtaIntercalibration_Stat119: 8.40464848e+00 + syst_JES_EtaIntercalibration_Stat12: 4.41983493e-02 + syst_JES_EtaIntercalibration_Stat120: 1.59103009e-01 + syst_JES_EtaIntercalibration_Stat121: 6.81561993e-03 syst_JES_EtaIntercalibration_Stat122: 0.0 - syst_JES_EtaIntercalibration_Stat123: 0.006080364359970544 - syst_JES_EtaIntercalibration_Stat124: 0.006080364359970544 - syst_JES_EtaIntercalibration_Stat125: 0.006080364359970544 + syst_JES_EtaIntercalibration_Stat123: 6.08036436e-03 + syst_JES_EtaIntercalibration_Stat124: 6.08036436e-03 + syst_JES_EtaIntercalibration_Stat125: 6.08036436e-03 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 0.013691861633831976 - syst_JES_EtaIntercalibration_Stat129: 0.012981128610409806 + syst_JES_EtaIntercalibration_Stat128: 1.36918616e-02 + syst_JES_EtaIntercalibration_Stat129: 1.29811286e-02 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 0.005932274015923405 + syst_JES_EtaIntercalibration_Stat130: 5.93227402e-03 syst_JES_EtaIntercalibration_Stat131: 0.0 syst_JES_EtaIntercalibration_Stat132: 0.0 - syst_JES_EtaIntercalibration_Stat133: 0.002480296756438632 - syst_JES_EtaIntercalibration_Stat134: 0.02945932361748993 - syst_JES_EtaIntercalibration_Stat135: 1.890655198601797 - syst_JES_EtaIntercalibration_Stat136: 2.634521351213537 - syst_JES_EtaIntercalibration_Stat137: 2.57020466111164 - syst_JES_EtaIntercalibration_Stat138: 1.4030184139917765 - syst_JES_EtaIntercalibration_Stat139: 0.02916568346533302 + syst_JES_EtaIntercalibration_Stat133: 2.48029676e-03 + syst_JES_EtaIntercalibration_Stat134: 2.94593236e-02 + syst_JES_EtaIntercalibration_Stat135: 1.89065520e+00 + syst_JES_EtaIntercalibration_Stat136: 2.63452135e+00 + syst_JES_EtaIntercalibration_Stat137: 2.57020466e+00 + syst_JES_EtaIntercalibration_Stat138: 1.40301841e+00 + syst_JES_EtaIntercalibration_Stat139: 2.91656835e-02 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 0.0068156199277835325 + syst_JES_EtaIntercalibration_Stat140: 6.81561993e-03 syst_JES_EtaIntercalibration_Stat141: 0.0 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 0.006080364359970544 - syst_JES_EtaIntercalibration_Stat144: 0.006080364359970544 + syst_JES_EtaIntercalibration_Stat143: 6.08036436e-03 + syst_JES_EtaIntercalibration_Stat144: 6.08036436e-03 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 0.005932274015923405 - syst_JES_EtaIntercalibration_Stat148: 0.005932274015923405 + syst_JES_EtaIntercalibration_Stat147: 5.93227402e-03 + syst_JES_EtaIntercalibration_Stat148: 5.93227402e-03 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 syst_JES_EtaIntercalibration_Stat150: 0.0 syst_JES_EtaIntercalibration_Stat151: 0.0 - syst_JES_EtaIntercalibration_Stat152: 0.022263155661316297 - syst_JES_EtaIntercalibration_Stat153: 0.7395662580188472 - syst_JES_EtaIntercalibration_Stat154: 1.570593578078046 - syst_JES_EtaIntercalibration_Stat155: 1.2215285506282691 - syst_JES_EtaIntercalibration_Stat156: 0.8860267532642567 - syst_JES_EtaIntercalibration_Stat157: 0.05786480169325736 + syst_JES_EtaIntercalibration_Stat152: 2.22631557e-02 + syst_JES_EtaIntercalibration_Stat153: 7.39566258e-01 + syst_JES_EtaIntercalibration_Stat154: 1.57059358e+00 + syst_JES_EtaIntercalibration_Stat155: 1.22152855e+00 + syst_JES_EtaIntercalibration_Stat156: 8.86026753e-01 + syst_JES_EtaIntercalibration_Stat157: 5.78648017e-02 syst_JES_EtaIntercalibration_Stat158: 0.0 syst_JES_EtaIntercalibration_Stat159: 0.0 syst_JES_EtaIntercalibration_Stat16: 0.0 @@ -1773,18 +1773,18 @@ bins: syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 0.005932274015923405 + syst_JES_EtaIntercalibration_Stat165: 5.93227402e-03 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 0.00022449483752416221 - syst_JES_EtaIntercalibration_Stat171: 0.010761479115344693 - syst_JES_EtaIntercalibration_Stat172: 0.02810874241228163 - syst_JES_EtaIntercalibration_Stat173: 0.08586976359580828 - syst_JES_EtaIntercalibration_Stat174: 0.07676643602512753 - syst_JES_EtaIntercalibration_Stat175: 0.01074149612798422 + syst_JES_EtaIntercalibration_Stat170: 2.24494838e-04 + syst_JES_EtaIntercalibration_Stat171: 1.07614791e-02 + syst_JES_EtaIntercalibration_Stat172: 2.81087424e-02 + syst_JES_EtaIntercalibration_Stat173: 8.58697636e-02 + syst_JES_EtaIntercalibration_Stat174: 7.67664360e-02 + syst_JES_EtaIntercalibration_Stat175: 1.07414961e-02 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 syst_JES_EtaIntercalibration_Stat178: 0.0 @@ -1797,13 +1797,13 @@ bins: syst_JES_EtaIntercalibration_Stat184: 0.0 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 - syst_JES_EtaIntercalibration_Stat187: 1.5146784312189834e-05 - syst_JES_EtaIntercalibration_Stat188: 0.0030954116539646226 - syst_JES_EtaIntercalibration_Stat189: 0.005561582508603105 + syst_JES_EtaIntercalibration_Stat187: 1.51467843e-05 + syst_JES_EtaIntercalibration_Stat188: 3.09541165e-03 + syst_JES_EtaIntercalibration_Stat189: 5.56158251e-03 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 0.005025536264917407 - syst_JES_EtaIntercalibration_Stat191: 0.0037216093293090287 - syst_JES_EtaIntercalibration_Stat192: 4.3363957314742396e-07 + syst_JES_EtaIntercalibration_Stat190: 5.02553626e-03 + syst_JES_EtaIntercalibration_Stat191: 3.72160933e-03 + syst_JES_EtaIntercalibration_Stat192: 4.33639573e-07 syst_JES_EtaIntercalibration_Stat193: 0.0 syst_JES_EtaIntercalibration_Stat194: 0.0 syst_JES_EtaIntercalibration_Stat195: 0.0 @@ -1815,12 +1815,12 @@ bins: syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 syst_JES_EtaIntercalibration_Stat201: 0.0 - syst_JES_EtaIntercalibration_Stat202: 1.0965296243435699e-10 - syst_JES_EtaIntercalibration_Stat203: 1.6159661970474505e-05 - syst_JES_EtaIntercalibration_Stat204: 1.5847468149518394e-05 - syst_JES_EtaIntercalibration_Stat205: 2.054654411330528e-05 - syst_JES_EtaIntercalibration_Stat206: 1.6564760789096837e-05 - syst_JES_EtaIntercalibration_Stat207: 6.63353917603567e-20 + syst_JES_EtaIntercalibration_Stat202: 1.09652962e-10 + syst_JES_EtaIntercalibration_Stat203: 1.61596620e-05 + syst_JES_EtaIntercalibration_Stat204: 1.58474681e-05 + syst_JES_EtaIntercalibration_Stat205: 2.05465441e-05 + syst_JES_EtaIntercalibration_Stat206: 1.65647608e-05 + syst_JES_EtaIntercalibration_Stat207: 6.63353918e-20 syst_JES_EtaIntercalibration_Stat208: 0.0 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 @@ -1829,11 +1829,11 @@ bins: syst_JES_EtaIntercalibration_Stat212: 0.0 syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 - syst_JES_EtaIntercalibration_Stat215: 3.480556097809659e-35 - syst_JES_EtaIntercalibration_Stat216: 1.3380539417274178e-15 - syst_JES_EtaIntercalibration_Stat217: 1.5492698016123595e-11 - syst_JES_EtaIntercalibration_Stat218: 1.9445078728305525e-15 - syst_JES_EtaIntercalibration_Stat219: 1.277387470582047e-15 + syst_JES_EtaIntercalibration_Stat215: 3.48055610e-35 + syst_JES_EtaIntercalibration_Stat216: 1.33805394e-15 + syst_JES_EtaIntercalibration_Stat217: 1.54926980e-11 + syst_JES_EtaIntercalibration_Stat218: 1.94450787e-15 + syst_JES_EtaIntercalibration_Stat219: 1.27738747e-15 syst_JES_EtaIntercalibration_Stat22: 0.0 syst_JES_EtaIntercalibration_Stat220: 0.0 syst_JES_EtaIntercalibration_Stat221: 0.0 @@ -1843,11 +1843,11 @@ bins: syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 syst_JES_EtaIntercalibration_Stat227: 0.0 - syst_JES_EtaIntercalibration_Stat228: 2.5495787887413873e-36 - syst_JES_EtaIntercalibration_Stat229: 4.654957652868606e-36 + syst_JES_EtaIntercalibration_Stat228: 2.54957879e-36 + syst_JES_EtaIntercalibration_Stat229: 4.65495765e-36 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 5.0307415578243625e-28 - syst_JES_EtaIntercalibration_Stat231: 5.630053196906758e-28 + syst_JES_EtaIntercalibration_Stat230: 5.03074156e-28 + syst_JES_EtaIntercalibration_Stat231: 5.63005320e-28 syst_JES_EtaIntercalibration_Stat232: 0.0 syst_JES_EtaIntercalibration_Stat233: 0.0 syst_JES_EtaIntercalibration_Stat234: 0.0 @@ -1869,12 +1869,12 @@ bins: syst_JES_EtaIntercalibration_Stat28: 0.0 syst_JES_EtaIntercalibration_Stat29: 0.0 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 0.013635074944788531 - syst_JES_EtaIntercalibration_Stat31: 0.2788875042019631 - syst_JES_EtaIntercalibration_Stat32: 0.2865646654770961 - syst_JES_EtaIntercalibration_Stat33: 0.1967909233171083 - syst_JES_EtaIntercalibration_Stat34: 0.17484629101227742 - syst_JES_EtaIntercalibration_Stat35: 0.014496971985556155 + syst_JES_EtaIntercalibration_Stat30: 1.36350749e-02 + syst_JES_EtaIntercalibration_Stat31: 2.78887504e-01 + syst_JES_EtaIntercalibration_Stat32: 2.86564665e-01 + syst_JES_EtaIntercalibration_Stat33: 1.96790923e-01 + syst_JES_EtaIntercalibration_Stat34: 1.74846291e-01 + syst_JES_EtaIntercalibration_Stat35: 1.44969720e-02 syst_JES_EtaIntercalibration_Stat36: 0.0 syst_JES_EtaIntercalibration_Stat37: 0.0 syst_JES_EtaIntercalibration_Stat38: 0.0 @@ -1893,89 +1893,89 @@ bins: syst_JES_EtaIntercalibration_Stat5: 0.0 syst_JES_EtaIntercalibration_Stat50: 0.0 syst_JES_EtaIntercalibration_Stat51: 0.0 - syst_JES_EtaIntercalibration_Stat52: 0.03073105808054776 - syst_JES_EtaIntercalibration_Stat53: 0.7354969607007225 - syst_JES_EtaIntercalibration_Stat54: 0.8425724538578271 - syst_JES_EtaIntercalibration_Stat55: 1.2251502469085167 - syst_JES_EtaIntercalibration_Stat56: 0.4041737266844119 - syst_JES_EtaIntercalibration_Stat57: 0.03126463977083376 + syst_JES_EtaIntercalibration_Stat52: 3.07310581e-02 + syst_JES_EtaIntercalibration_Stat53: 7.35496961e-01 + syst_JES_EtaIntercalibration_Stat54: 8.42572454e-01 + syst_JES_EtaIntercalibration_Stat55: 1.22515025e+00 + syst_JES_EtaIntercalibration_Stat56: 4.04173727e-01 + syst_JES_EtaIntercalibration_Stat57: 3.12646398e-02 syst_JES_EtaIntercalibration_Stat58: 0.0 syst_JES_EtaIntercalibration_Stat59: 0.0 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 0.006080364359970544 - syst_JES_EtaIntercalibration_Stat62: 0.006080364359970544 + syst_JES_EtaIntercalibration_Stat61: 6.08036436e-03 + syst_JES_EtaIntercalibration_Stat62: 6.08036436e-03 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 0.013691861633831976 - syst_JES_EtaIntercalibration_Stat69: 0.013691861633831976 + syst_JES_EtaIntercalibration_Stat68: 1.36918616e-02 + syst_JES_EtaIntercalibration_Stat69: 1.36918616e-02 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 0.03714382956831457 - syst_JES_EtaIntercalibration_Stat71: 0.03714382956831457 + syst_JES_EtaIntercalibration_Stat70: 3.71438296e-02 + syst_JES_EtaIntercalibration_Stat71: 3.71438296e-02 syst_JES_EtaIntercalibration_Stat72: 0.0 syst_JES_EtaIntercalibration_Stat73: 0.0 - syst_JES_EtaIntercalibration_Stat74: 0.06784568667203537 - syst_JES_EtaIntercalibration_Stat75: 4.702327189807192 - syst_JES_EtaIntercalibration_Stat76: 6.496557242109086 - syst_JES_EtaIntercalibration_Stat77: 9.62566209411072 - syst_JES_EtaIntercalibration_Stat78: 5.7759149058828765 - syst_JES_EtaIntercalibration_Stat79: 0.10318490720546294 + syst_JES_EtaIntercalibration_Stat74: 6.78456867e-02 + syst_JES_EtaIntercalibration_Stat75: 4.70232719e+00 + syst_JES_EtaIntercalibration_Stat76: 6.49655724e+00 + syst_JES_EtaIntercalibration_Stat77: 9.62566209e+00 + syst_JES_EtaIntercalibration_Stat78: 5.77591491e+00 + syst_JES_EtaIntercalibration_Stat79: 1.03184907e-01 syst_JES_EtaIntercalibration_Stat8: 0.0 syst_JES_EtaIntercalibration_Stat80: 0.0 syst_JES_EtaIntercalibration_Stat81: 0.0 - syst_JES_EtaIntercalibration_Stat82: 0.006080364359970544 - syst_JES_EtaIntercalibration_Stat83: 0.006080364359970544 - syst_JES_EtaIntercalibration_Stat84: 0.006080364359970544 + syst_JES_EtaIntercalibration_Stat82: 6.08036436e-03 + syst_JES_EtaIntercalibration_Stat83: 6.08036436e-03 + syst_JES_EtaIntercalibration_Stat84: 6.08036436e-03 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 0.013691861633831976 - syst_JES_EtaIntercalibration_Stat9: 0.04501779953529492 - syst_JES_EtaIntercalibration_Stat90: 0.013691861633831976 - syst_JES_EtaIntercalibration_Stat91: 0.03714382956831457 - syst_JES_EtaIntercalibration_Stat92: 0.03714382956831457 + syst_JES_EtaIntercalibration_Stat89: 1.36918616e-02 + syst_JES_EtaIntercalibration_Stat9: 4.50177995e-02 + syst_JES_EtaIntercalibration_Stat90: 1.36918616e-02 + syst_JES_EtaIntercalibration_Stat91: 3.71438296e-02 + syst_JES_EtaIntercalibration_Stat92: 3.71438296e-02 syst_JES_EtaIntercalibration_Stat93: 0.0 syst_JES_EtaIntercalibration_Stat94: 0.0 - syst_JES_EtaIntercalibration_Stat95: 0.15707261656635124 - syst_JES_EtaIntercalibration_Stat96: 7.516045685731294 - syst_JES_EtaIntercalibration_Stat97: 10.266473250342592 - syst_JES_EtaIntercalibration_Stat98: 10.123750231510058 - syst_JES_EtaIntercalibration_Stat99: 7.252008480414237 - syst_JES_EtaIntercalibration_TotalStat_MJB: 8.58114246473044e-09 - syst_JES_Flavour_Comp: 7.922194392969665 - syst_JES_Flavour_Response: 180.5741022406037 - syst_JES_Gjet_Generator: 120.94813131255894 - syst_JES_Gjet_OOC: 73.9717385019441 - syst_JES_Gjet_Purity: 31.003728807999853 + syst_JES_EtaIntercalibration_Stat95: 1.57072617e-01 + syst_JES_EtaIntercalibration_Stat96: 7.51604569e+00 + syst_JES_EtaIntercalibration_Stat97: 1.02664733e+01 + syst_JES_EtaIntercalibration_Stat98: 1.01237502e+01 + syst_JES_EtaIntercalibration_Stat99: 7.25200848e+00 + syst_JES_EtaIntercalibration_TotalStat_MJB: 8.58114246e-09 + syst_JES_Flavour_Comp: 7.92219439e+00 + syst_JES_Flavour_Response: 1.80574102e+02 + syst_JES_Gjet_Generator: 1.20948131e+02 + syst_JES_Gjet_OOC: 7.39717385e+01 + syst_JES_Gjet_Purity: 3.10037288e+01 syst_JES_Gjet_Stat1: 0.0 - syst_JES_Gjet_Stat10: 1.1167393339539895 - syst_JES_Gjet_Stat11: 0.5156822350052404 - syst_JES_Gjet_Stat12: 0.10878477685319762 - syst_JES_Gjet_Stat13: 0.002512876190742393 - syst_JES_Gjet_Stat14: 1.0961261980496895e-13 - syst_JES_Gjet_Stat15: 2.1995538002058507e-14 - syst_JES_Gjet_Stat2: 0.5276692785258584 - syst_JES_Gjet_Stat3: 1.0056702379507907 - syst_JES_Gjet_Stat4: 1.7094502127877256 - syst_JES_Gjet_Stat5: 2.631556193585841 - syst_JES_Gjet_Stat6: 7.821498881288675 - syst_JES_Gjet_Stat7: 12.26462266031858 - syst_JES_Gjet_Stat8: 3.860222273393075 - syst_JES_Gjet_Stat9: 1.4949898829089112 - syst_JES_Gjet_Veto: 22.613467226411785 - syst_JES_Gjet_dPhi: 14.491420737802073 - syst_JES_LArESZee: 76.83324350826274 - syst_JES_LArEsmear: 7.090522124639341 - syst_JES_LAr_JVT: 13.301265005630103 - syst_JES_MJB_Alpha: 0.001551917523581714 - syst_JES_MJB_Asym: 0.002340855185610592 + syst_JES_Gjet_Stat10: 1.11673933e+00 + syst_JES_Gjet_Stat11: 5.15682235e-01 + syst_JES_Gjet_Stat12: 1.08784777e-01 + syst_JES_Gjet_Stat13: 2.51287619e-03 + syst_JES_Gjet_Stat14: 1.09612620e-13 + syst_JES_Gjet_Stat15: 2.19955380e-14 + syst_JES_Gjet_Stat2: 5.27669279e-01 + syst_JES_Gjet_Stat3: 1.00567024e+00 + syst_JES_Gjet_Stat4: 1.70945021e+00 + syst_JES_Gjet_Stat5: 2.63155619e+00 + syst_JES_Gjet_Stat6: 7.82149888e+00 + syst_JES_Gjet_Stat7: 1.22646227e+01 + syst_JES_Gjet_Stat8: 3.86022227e+00 + syst_JES_Gjet_Stat9: 1.49498988e+00 + syst_JES_Gjet_Veto: 2.26134672e+01 + syst_JES_Gjet_dPhi: 1.44914207e+01 + syst_JES_LArESZee: 7.68332435e+01 + syst_JES_LArEsmear: 7.09052212e+00 + syst_JES_LAr_JVT: 1.33012650e+01 + syst_JES_MJB_Alpha: 1.55191752e-03 + syst_JES_MJB_Asym: 2.34085519e-03 syst_JES_MJB_Beta: 0.0 - syst_JES_MJB_Fragmentation: 9.74293902013145e-09 - syst_JES_MJB_Stat1: 0.0008439328809212258 + syst_JES_MJB_Fragmentation: 9.74293902e-09 + syst_JES_MJB_Stat1: 8.43932881e-04 syst_JES_MJB_Stat10: 0.0 syst_JES_MJB_Stat11: 0.0 syst_JES_MJB_Stat12: 0.0 @@ -1983,125 +1983,125 @@ bins: syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 0.0003469297767560461 - syst_JES_MJB_Stat3: 7.044659411128404e-08 - syst_JES_MJB_Stat4: 1.8784091008084474e-11 - syst_JES_MJB_Stat5: 1.7770841238342828e-26 - syst_JES_MJB_Stat6: 7.800290811886439e-28 + syst_JES_MJB_Stat2: 3.46929777e-04 + syst_JES_MJB_Stat3: 7.04465941e-08 + syst_JES_MJB_Stat4: 1.87840910e-11 + syst_JES_MJB_Stat5: 1.77708412e-26 + syst_JES_MJB_Stat6: 7.80029081e-28 syst_JES_MJB_Stat7: 0.0 syst_JES_MJB_Stat8: 0.0 syst_JES_MJB_Stat9: 0.0 - syst_JES_MJB_Threshold: 0.002744560438394462 - syst_JES_Pileup_MuOffset: 4.471285527395896e-25 - syst_JES_Pileup_NPVOffset: 8.849361714270694 - syst_JES_Pileup_Pt_term: 17.525309555040675 - syst_JES_Pileup_Rho_topology: 64.9902669866804 + syst_JES_MJB_Threshold: 2.74456044e-03 + syst_JES_Pileup_MuOffset: 4.47128553e-25 + syst_JES_Pileup_NPVOffset: 8.84936171e+00 + syst_JES_Pileup_Pt_term: 1.75253096e+01 + syst_JES_Pileup_Rho_topology: 6.49902670e+01 syst_JES_PunchThrough_MC15: 0.0 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 110.5173995758134 - syst_JES_Zjet_MuScale: 8.026715439705084 - syst_JES_Zjet_MuSmearID: 0.9929687883815884 - syst_JES_Zjet_MuSmearMS: 3.5961483395432947 - syst_JES_Zjet_OOC: 68.13214868731207 - syst_JES_Zjet_Stat1: 1.5369595009303272 - syst_JES_Zjet_Stat10: 7.693042116094256 - syst_JES_Zjet_Stat11: 2.1566672622358785 - syst_JES_Zjet_Stat12: 1.1570979679785114 - syst_JES_Zjet_Stat13: 0.05122243453800297 + syst_JES_Zjet_MC: 1.10517400e+02 + syst_JES_Zjet_MuScale: 8.02671544e+00 + syst_JES_Zjet_MuSmearID: 9.92968788e-01 + syst_JES_Zjet_MuSmearMS: 3.59614834e+00 + syst_JES_Zjet_OOC: 6.81321487e+01 + syst_JES_Zjet_Stat1: 1.53695950e+00 + syst_JES_Zjet_Stat10: 7.69304212e+00 + syst_JES_Zjet_Stat11: 2.15666726e+00 + syst_JES_Zjet_Stat12: 1.15709797e+00 + syst_JES_Zjet_Stat13: 5.12224345e-02 syst_JES_Zjet_Stat2: 0.0 - syst_JES_Zjet_Stat3: 0.6384339276698882 - syst_JES_Zjet_Stat4: 0.7404445337093116 - syst_JES_Zjet_Stat5: 1.3731330124936914 - syst_JES_Zjet_Stat6: 2.9421829905700974 - syst_JES_Zjet_Stat7: 5.106910122569223 - syst_JES_Zjet_Stat8: 9.212635127909929 - syst_JES_Zjet_Stat9: 13.324857475785622 - syst_JES_Zjet_Veto: 10.6023392112307 - syst_JES_Zjet_dPhi: 15.460025873199566 + syst_JES_Zjet_Stat3: 6.38433928e-01 + syst_JES_Zjet_Stat4: 7.40444534e-01 + syst_JES_Zjet_Stat5: 1.37313301e+00 + syst_JES_Zjet_Stat6: 2.94218299e+00 + syst_JES_Zjet_Stat7: 5.10691012e+00 + syst_JES_Zjet_Stat8: 9.21263513e+00 + syst_JES_Zjet_Stat9: 1.33248575e+01 + syst_JES_Zjet_Veto: 1.06023392e+01 + syst_JES_Zjet_dPhi: 1.54600259e+01 syst_PRW: 15.83 syst_Unfolding_bias: 7.183 - syst_cleaning: 49.35565378707894 + syst_cleaning: 4.93556538e+01 syst_lumi: 120.963 - stat: 18.272 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 31.606158814382997 - syst_JER_NP1: 5.749644749895423 - syst_JER_NP2: 10.850018340998323 - syst_JER_NP3: 4.073658398786034 - syst_JER_NP4: 11.88139860243734 - syst_JER_NP5: 1.9915225005005595 - syst_JER_NP6: 3.5306342206464834 - syst_JER_NP7: 3.729917023205744 - syst_JER_NP8: 4.140537736816317 - syst_JES_EtaIntercalibration_Modelling: 0.03726499798738758 + syst_JER_NP0: 3.16061588e+01 + syst_JER_NP1: 5.74964475e+00 + syst_JER_NP2: 1.08500183e+01 + syst_JER_NP3: 4.07365840e+00 + syst_JER_NP4: 1.18813986e+01 + syst_JER_NP5: 1.99152250e+00 + syst_JER_NP6: 3.53063422e+00 + syst_JER_NP7: 3.72991702e+00 + syst_JER_NP8: 4.14053774e+00 + syst_JES_EtaIntercalibration_Modelling: 3.72649980e-02 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 - syst_JES_EtaIntercalibration_Stat10: 0.016308389520427822 - syst_JES_EtaIntercalibration_Stat100: 0.08938040431213096 + syst_JES_EtaIntercalibration_Stat10: 1.63083895e-02 + syst_JES_EtaIntercalibration_Stat100: 8.93804043e-02 syst_JES_EtaIntercalibration_Stat101: 0.0 syst_JES_EtaIntercalibration_Stat102: 0.0 - syst_JES_EtaIntercalibration_Stat103: 0.001416817560591342 - syst_JES_EtaIntercalibration_Stat104: 0.001416817560591342 - syst_JES_EtaIntercalibration_Stat105: 0.001416817560591342 + syst_JES_EtaIntercalibration_Stat103: 1.41681756e-03 + syst_JES_EtaIntercalibration_Stat104: 1.41681756e-03 + syst_JES_EtaIntercalibration_Stat105: 1.41681756e-03 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 0.01128690908752259 - syst_JES_EtaIntercalibration_Stat11: 0.02813716536895641 - syst_JES_EtaIntercalibration_Stat110: 0.010770970290554143 - syst_JES_EtaIntercalibration_Stat111: 0.014367361448783837 - syst_JES_EtaIntercalibration_Stat112: 0.014367361448783837 + syst_JES_EtaIntercalibration_Stat109: 1.12869091e-02 + syst_JES_EtaIntercalibration_Stat11: 2.81371654e-02 + syst_JES_EtaIntercalibration_Stat110: 1.07709703e-02 + syst_JES_EtaIntercalibration_Stat111: 1.43673614e-02 + syst_JES_EtaIntercalibration_Stat112: 1.43673614e-02 syst_JES_EtaIntercalibration_Stat113: 0.0 - syst_JES_EtaIntercalibration_Stat114: 0.009865761399912324 - syst_JES_EtaIntercalibration_Stat115: 0.11501827376551953 - syst_JES_EtaIntercalibration_Stat116: 5.657477883297468 - syst_JES_EtaIntercalibration_Stat117: 8.076049900786895 - syst_JES_EtaIntercalibration_Stat118: 7.733489251301769 - syst_JES_EtaIntercalibration_Stat119: 6.098518078189159 - syst_JES_EtaIntercalibration_Stat12: 0.01161468940953653 - syst_JES_EtaIntercalibration_Stat120: 0.1043279104554481 - syst_JES_EtaIntercalibration_Stat121: 0.00026344492783122623 + syst_JES_EtaIntercalibration_Stat114: 9.86576140e-03 + syst_JES_EtaIntercalibration_Stat115: 1.15018274e-01 + syst_JES_EtaIntercalibration_Stat116: 5.65747788e+00 + syst_JES_EtaIntercalibration_Stat117: 8.07604990e+00 + syst_JES_EtaIntercalibration_Stat118: 7.73348925e+00 + syst_JES_EtaIntercalibration_Stat119: 6.09851808e+00 + syst_JES_EtaIntercalibration_Stat12: 1.16146894e-02 + syst_JES_EtaIntercalibration_Stat120: 1.04327910e-01 + syst_JES_EtaIntercalibration_Stat121: 2.63444928e-04 syst_JES_EtaIntercalibration_Stat122: 0.0 - syst_JES_EtaIntercalibration_Stat123: 0.001416817560591342 - syst_JES_EtaIntercalibration_Stat124: 0.001416817560591342 - syst_JES_EtaIntercalibration_Stat125: 0.001416817560591342 + syst_JES_EtaIntercalibration_Stat123: 1.41681756e-03 + syst_JES_EtaIntercalibration_Stat124: 1.41681756e-03 + syst_JES_EtaIntercalibration_Stat125: 1.41681756e-03 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 0.01128690908752259 - syst_JES_EtaIntercalibration_Stat129: 0.010770970290554143 + syst_JES_EtaIntercalibration_Stat128: 1.12869091e-02 + syst_JES_EtaIntercalibration_Stat129: 1.07709703e-02 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 0.0020966475025621257 + syst_JES_EtaIntercalibration_Stat130: 2.09664750e-03 syst_JES_EtaIntercalibration_Stat131: 0.0 syst_JES_EtaIntercalibration_Stat132: 0.0 - syst_JES_EtaIntercalibration_Stat133: 0.009865761399912324 - syst_JES_EtaIntercalibration_Stat134: 0.06460558857405449 - syst_JES_EtaIntercalibration_Stat135: 2.5076177938433917 - syst_JES_EtaIntercalibration_Stat136: 5.062642788109783 - syst_JES_EtaIntercalibration_Stat137: 4.28160927689578 - syst_JES_EtaIntercalibration_Stat138: 2.755700047174946 - syst_JES_EtaIntercalibration_Stat139: 0.05418667986691932 + syst_JES_EtaIntercalibration_Stat133: 9.86576140e-03 + syst_JES_EtaIntercalibration_Stat134: 6.46055886e-02 + syst_JES_EtaIntercalibration_Stat135: 2.50761779e+00 + syst_JES_EtaIntercalibration_Stat136: 5.06264279e+00 + syst_JES_EtaIntercalibration_Stat137: 4.28160928e+00 + syst_JES_EtaIntercalibration_Stat138: 2.75570005e+00 + syst_JES_EtaIntercalibration_Stat139: 5.41866799e-02 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 0.00026344492783122623 + syst_JES_EtaIntercalibration_Stat140: 2.63444928e-04 syst_JES_EtaIntercalibration_Stat141: 0.0 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 0.001416817560591342 - syst_JES_EtaIntercalibration_Stat144: 0.001416817560591342 + syst_JES_EtaIntercalibration_Stat143: 1.41681756e-03 + syst_JES_EtaIntercalibration_Stat144: 1.41681756e-03 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 0.0020966475025621257 - syst_JES_EtaIntercalibration_Stat148: 0.0020966475025621257 + syst_JES_EtaIntercalibration_Stat147: 2.09664750e-03 + syst_JES_EtaIntercalibration_Stat148: 2.09664750e-03 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 syst_JES_EtaIntercalibration_Stat150: 0.0 syst_JES_EtaIntercalibration_Stat151: 0.0 - syst_JES_EtaIntercalibration_Stat152: 0.034459171130484266 - syst_JES_EtaIntercalibration_Stat153: 0.7329742696711803 - syst_JES_EtaIntercalibration_Stat154: 1.3429438065310106 - syst_JES_EtaIntercalibration_Stat155: 0.7657601060384381 - syst_JES_EtaIntercalibration_Stat156: 0.5279128715990926 - syst_JES_EtaIntercalibration_Stat157: 0.019299632140276662 + syst_JES_EtaIntercalibration_Stat152: 3.44591711e-02 + syst_JES_EtaIntercalibration_Stat153: 7.32974270e-01 + syst_JES_EtaIntercalibration_Stat154: 1.34294381e+00 + syst_JES_EtaIntercalibration_Stat155: 7.65760106e-01 + syst_JES_EtaIntercalibration_Stat156: 5.27912872e-01 + syst_JES_EtaIntercalibration_Stat157: 1.92996321e-02 syst_JES_EtaIntercalibration_Stat158: 0.0 syst_JES_EtaIntercalibration_Stat159: 0.0 syst_JES_EtaIntercalibration_Stat16: 0.0 @@ -2110,18 +2110,18 @@ bins: syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 0.0020966475025621257 + syst_JES_EtaIntercalibration_Stat165: 2.09664750e-03 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 0.0038481014474673093 - syst_JES_EtaIntercalibration_Stat171: 0.11966762344092907 - syst_JES_EtaIntercalibration_Stat172: 0.15744630830857864 - syst_JES_EtaIntercalibration_Stat173: 0.21746641119952295 - syst_JES_EtaIntercalibration_Stat174: 0.13752977886625137 - syst_JES_EtaIntercalibration_Stat175: 0.012175452476191595 + syst_JES_EtaIntercalibration_Stat170: 3.84810145e-03 + syst_JES_EtaIntercalibration_Stat171: 1.19667623e-01 + syst_JES_EtaIntercalibration_Stat172: 1.57446308e-01 + syst_JES_EtaIntercalibration_Stat173: 2.17466411e-01 + syst_JES_EtaIntercalibration_Stat174: 1.37529779e-01 + syst_JES_EtaIntercalibration_Stat175: 1.21754525e-02 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 syst_JES_EtaIntercalibration_Stat178: 0.0 @@ -2134,14 +2134,14 @@ bins: syst_JES_EtaIntercalibration_Stat184: 0.0 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 - syst_JES_EtaIntercalibration_Stat187: 0.000287780241677569 - syst_JES_EtaIntercalibration_Stat188: 0.009961444875117263 - syst_JES_EtaIntercalibration_Stat189: 0.009550427320282585 + syst_JES_EtaIntercalibration_Stat187: 2.87780242e-04 + syst_JES_EtaIntercalibration_Stat188: 9.96144488e-03 + syst_JES_EtaIntercalibration_Stat189: 9.55042732e-03 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 0.005602113239662333 - syst_JES_EtaIntercalibration_Stat191: 0.00853044148916104 - syst_JES_EtaIntercalibration_Stat192: 7.019469617763155e-05 - syst_JES_EtaIntercalibration_Stat193: 2.5235980266278544e-32 + syst_JES_EtaIntercalibration_Stat190: 5.60211324e-03 + syst_JES_EtaIntercalibration_Stat191: 8.53044149e-03 + syst_JES_EtaIntercalibration_Stat192: 7.01946962e-05 + syst_JES_EtaIntercalibration_Stat193: 2.52359803e-32 syst_JES_EtaIntercalibration_Stat194: 0.0 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 @@ -2152,13 +2152,13 @@ bins: syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 syst_JES_EtaIntercalibration_Stat201: 0.0 - syst_JES_EtaIntercalibration_Stat202: 2.446631745373014e-07 - syst_JES_EtaIntercalibration_Stat203: 0.0002506329786759915 - syst_JES_EtaIntercalibration_Stat204: 0.0033709603390576996 - syst_JES_EtaIntercalibration_Stat205: 0.0003929890170221046 - syst_JES_EtaIntercalibration_Stat206: 0.00031482856843050315 - syst_JES_EtaIntercalibration_Stat207: 1.3504518762251397e-13 - syst_JES_EtaIntercalibration_Stat208: 2.5235980266278544e-32 + syst_JES_EtaIntercalibration_Stat202: 2.44663175e-07 + syst_JES_EtaIntercalibration_Stat203: 2.50632979e-04 + syst_JES_EtaIntercalibration_Stat204: 3.37096034e-03 + syst_JES_EtaIntercalibration_Stat205: 3.92989017e-04 + syst_JES_EtaIntercalibration_Stat206: 3.14828568e-04 + syst_JES_EtaIntercalibration_Stat207: 1.35045188e-13 + syst_JES_EtaIntercalibration_Stat208: 2.52359803e-32 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 @@ -2166,13 +2166,13 @@ bins: syst_JES_EtaIntercalibration_Stat212: 0.0 syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 - syst_JES_EtaIntercalibration_Stat215: 1.0584562485053409e-24 - syst_JES_EtaIntercalibration_Stat216: 6.848144178352264e-11 - syst_JES_EtaIntercalibration_Stat217: 3.468498354334156e-08 - syst_JES_EtaIntercalibration_Stat218: 9.959892469299055e-11 - syst_JES_EtaIntercalibration_Stat219: 6.546286027206968e-11 + syst_JES_EtaIntercalibration_Stat215: 1.05845625e-24 + syst_JES_EtaIntercalibration_Stat216: 6.84814418e-11 + syst_JES_EtaIntercalibration_Stat217: 3.46849835e-08 + syst_JES_EtaIntercalibration_Stat218: 9.95989247e-11 + syst_JES_EtaIntercalibration_Stat219: 6.54628603e-11 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 4.417086228499507e-32 + syst_JES_EtaIntercalibration_Stat220: 4.41708623e-32 syst_JES_EtaIntercalibration_Stat221: 0.0 syst_JES_EtaIntercalibration_Stat222: 0.0 syst_JES_EtaIntercalibration_Stat223: 0.0 @@ -2180,12 +2180,12 @@ bins: syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 syst_JES_EtaIntercalibration_Stat227: 0.0 - syst_JES_EtaIntercalibration_Stat228: 7.755257120230846e-26 - syst_JES_EtaIntercalibration_Stat229: 1.415887773624732e-25 + syst_JES_EtaIntercalibration_Stat228: 7.75525712e-26 + syst_JES_EtaIntercalibration_Stat229: 1.41588777e-25 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 8.845579593889906e-20 - syst_JES_EtaIntercalibration_Stat231: 9.900354677990077e-20 - syst_JES_EtaIntercalibration_Stat232: 2.5080095693597346e-32 + syst_JES_EtaIntercalibration_Stat230: 8.84557959e-20 + syst_JES_EtaIntercalibration_Stat231: 9.90035468e-20 + syst_JES_EtaIntercalibration_Stat232: 2.50800957e-32 syst_JES_EtaIntercalibration_Stat233: 0.0 syst_JES_EtaIntercalibration_Stat234: 0.0 syst_JES_EtaIntercalibration_Stat235: 0.0 @@ -2206,12 +2206,12 @@ bins: syst_JES_EtaIntercalibration_Stat28: 0.0 syst_JES_EtaIntercalibration_Stat29: 0.0 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 0.009466662453050705 - syst_JES_EtaIntercalibration_Stat31: 0.008353455991384644 - syst_JES_EtaIntercalibration_Stat32: 0.006901007372116045 - syst_JES_EtaIntercalibration_Stat33: 0.06100285818508835 - syst_JES_EtaIntercalibration_Stat34: 0.05873181335528471 - syst_JES_EtaIntercalibration_Stat35: 0.0022233569905662923 + syst_JES_EtaIntercalibration_Stat30: 9.46666245e-03 + syst_JES_EtaIntercalibration_Stat31: 8.35345599e-03 + syst_JES_EtaIntercalibration_Stat32: 6.90100737e-03 + syst_JES_EtaIntercalibration_Stat33: 6.10028582e-02 + syst_JES_EtaIntercalibration_Stat34: 5.87318134e-02 + syst_JES_EtaIntercalibration_Stat35: 2.22335699e-03 syst_JES_EtaIntercalibration_Stat36: 0.0 syst_JES_EtaIntercalibration_Stat37: 0.0 syst_JES_EtaIntercalibration_Stat38: 0.0 @@ -2230,215 +2230,215 @@ bins: syst_JES_EtaIntercalibration_Stat5: 0.0 syst_JES_EtaIntercalibration_Stat50: 0.0 syst_JES_EtaIntercalibration_Stat51: 0.0 - syst_JES_EtaIntercalibration_Stat52: 0.019330814969335874 - syst_JES_EtaIntercalibration_Stat53: 0.12130688634615924 - syst_JES_EtaIntercalibration_Stat54: 0.11656907083356204 - syst_JES_EtaIntercalibration_Stat55: 0.3053566889720938 - syst_JES_EtaIntercalibration_Stat56: 0.09835346514993765 - syst_JES_EtaIntercalibration_Stat57: 0.008732487952220432 + syst_JES_EtaIntercalibration_Stat52: 1.93308150e-02 + syst_JES_EtaIntercalibration_Stat53: 1.21306886e-01 + syst_JES_EtaIntercalibration_Stat54: 1.16569071e-01 + syst_JES_EtaIntercalibration_Stat55: 3.05356689e-01 + syst_JES_EtaIntercalibration_Stat56: 9.83534651e-02 + syst_JES_EtaIntercalibration_Stat57: 8.73248795e-03 syst_JES_EtaIntercalibration_Stat58: 0.0 syst_JES_EtaIntercalibration_Stat59: 0.0 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 0.001416817560591342 - syst_JES_EtaIntercalibration_Stat62: 0.001416817560591342 + syst_JES_EtaIntercalibration_Stat61: 1.41681756e-03 + syst_JES_EtaIntercalibration_Stat62: 1.41681756e-03 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 0.01128690908752259 - syst_JES_EtaIntercalibration_Stat69: 0.01128690908752259 + syst_JES_EtaIntercalibration_Stat68: 1.12869091e-02 + syst_JES_EtaIntercalibration_Stat69: 1.12869091e-02 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 0.014367361448783837 - syst_JES_EtaIntercalibration_Stat71: 0.014367361448783837 + syst_JES_EtaIntercalibration_Stat70: 1.43673614e-02 + syst_JES_EtaIntercalibration_Stat71: 1.43673614e-02 syst_JES_EtaIntercalibration_Stat72: 0.0 syst_JES_EtaIntercalibration_Stat73: 0.0 - syst_JES_EtaIntercalibration_Stat74: 0.043826642581881625 - syst_JES_EtaIntercalibration_Stat75: 1.1791159527374735 - syst_JES_EtaIntercalibration_Stat76: 1.7757043672864017 - syst_JES_EtaIntercalibration_Stat77: 2.4263785257045116 - syst_JES_EtaIntercalibration_Stat78: 1.573751806988637 - syst_JES_EtaIntercalibration_Stat79: 0.043394737872235155 + syst_JES_EtaIntercalibration_Stat74: 4.38266426e-02 + syst_JES_EtaIntercalibration_Stat75: 1.17911595e+00 + syst_JES_EtaIntercalibration_Stat76: 1.77570437e+00 + syst_JES_EtaIntercalibration_Stat77: 2.42637853e+00 + syst_JES_EtaIntercalibration_Stat78: 1.57375181e+00 + syst_JES_EtaIntercalibration_Stat79: 4.33947379e-02 syst_JES_EtaIntercalibration_Stat8: 0.0 syst_JES_EtaIntercalibration_Stat80: 0.0 syst_JES_EtaIntercalibration_Stat81: 0.0 - syst_JES_EtaIntercalibration_Stat82: 0.001416817560591342 - syst_JES_EtaIntercalibration_Stat83: 0.001416817560591342 - syst_JES_EtaIntercalibration_Stat84: 0.001416817560591342 + syst_JES_EtaIntercalibration_Stat82: 1.41681756e-03 + syst_JES_EtaIntercalibration_Stat83: 1.41681756e-03 + syst_JES_EtaIntercalibration_Stat84: 1.41681756e-03 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 0.01128690908752259 - syst_JES_EtaIntercalibration_Stat9: 0.033820073920676166 - syst_JES_EtaIntercalibration_Stat90: 0.01128690908752259 - syst_JES_EtaIntercalibration_Stat91: 0.014367361448783837 - syst_JES_EtaIntercalibration_Stat92: 0.014367361448783837 + syst_JES_EtaIntercalibration_Stat89: 1.12869091e-02 + syst_JES_EtaIntercalibration_Stat9: 3.38200739e-02 + syst_JES_EtaIntercalibration_Stat90: 1.12869091e-02 + syst_JES_EtaIntercalibration_Stat91: 1.43673614e-02 + syst_JES_EtaIntercalibration_Stat92: 1.43673614e-02 syst_JES_EtaIntercalibration_Stat93: 0.0 syst_JES_EtaIntercalibration_Stat94: 0.0 - syst_JES_EtaIntercalibration_Stat95: 0.07708415839198092 - syst_JES_EtaIntercalibration_Stat96: 2.5200092757765793 - syst_JES_EtaIntercalibration_Stat97: 3.4042643845623974 - syst_JES_EtaIntercalibration_Stat98: 3.360102788606325 - syst_JES_EtaIntercalibration_Stat99: 2.5730718995006727 - syst_JES_EtaIntercalibration_TotalStat_MJB: 1.922520936166886e-05 - syst_JES_Flavour_Comp: 3.434359328899642 - syst_JES_Flavour_Response: 83.45969897501428 - syst_JES_Gjet_Generator: 63.91402519791723 - syst_JES_Gjet_OOC: 36.04977773856588 - syst_JES_Gjet_Purity: 15.181482141082272 - syst_JES_Gjet_Stat1: 1.2626650387177115e-40 - syst_JES_Gjet_Stat10: 0.5094092176973244 - syst_JES_Gjet_Stat11: 0.5527867672077544 - syst_JES_Gjet_Stat12: 0.38467511054784925 - syst_JES_Gjet_Stat13: 0.003534622074211046 - syst_JES_Gjet_Stat14: 5.6157360944759504e-09 - syst_JES_Gjet_Stat15: 1.1270240492110185e-09 - syst_JES_Gjet_Stat2: 0.15389271425249473 - syst_JES_Gjet_Stat3: 0.34520085457599897 - syst_JES_Gjet_Stat4: 0.5372500604932493 - syst_JES_Gjet_Stat5: 0.966066088577795 - syst_JES_Gjet_Stat6: 3.155299034956909 - syst_JES_Gjet_Stat7: 5.265222003866503 - syst_JES_Gjet_Stat8: 2.3979107573052003 - syst_JES_Gjet_Stat9: 1.81223177325639 - syst_JES_Gjet_Veto: 12.794887054991927 - syst_JES_Gjet_dPhi: 6.938522519239957 - syst_JES_LArESZee: 43.11505680153976 - syst_JES_LArEsmear: 4.033403658202338 - syst_JES_LAr_JVT: 6.815516176343506 - syst_JES_MJB_Alpha: 0.0018749449991933094 - syst_JES_MJB_Asym: 0.016130677628357713 + syst_JES_EtaIntercalibration_Stat95: 7.70841584e-02 + syst_JES_EtaIntercalibration_Stat96: 2.52000928e+00 + syst_JES_EtaIntercalibration_Stat97: 3.40426438e+00 + syst_JES_EtaIntercalibration_Stat98: 3.36010279e+00 + syst_JES_EtaIntercalibration_Stat99: 2.57307190e+00 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.92252094e-05 + syst_JES_Flavour_Comp: 3.43435933e+00 + syst_JES_Flavour_Response: 8.34596990e+01 + syst_JES_Gjet_Generator: 6.39140252e+01 + syst_JES_Gjet_OOC: 3.60497777e+01 + syst_JES_Gjet_Purity: 1.51814821e+01 + syst_JES_Gjet_Stat1: 1.26266504e-40 + syst_JES_Gjet_Stat10: 5.09409218e-01 + syst_JES_Gjet_Stat11: 5.52786767e-01 + syst_JES_Gjet_Stat12: 3.84675111e-01 + syst_JES_Gjet_Stat13: 3.53462207e-03 + syst_JES_Gjet_Stat14: 5.61573609e-09 + syst_JES_Gjet_Stat15: 1.12702405e-09 + syst_JES_Gjet_Stat2: 1.53892714e-01 + syst_JES_Gjet_Stat3: 3.45200855e-01 + syst_JES_Gjet_Stat4: 5.37250060e-01 + syst_JES_Gjet_Stat5: 9.66066089e-01 + syst_JES_Gjet_Stat6: 3.15529903e+00 + syst_JES_Gjet_Stat7: 5.26522200e+00 + syst_JES_Gjet_Stat8: 2.39791076e+00 + syst_JES_Gjet_Stat9: 1.81223177e+00 + syst_JES_Gjet_Veto: 1.27948871e+01 + syst_JES_Gjet_dPhi: 6.93852252e+00 + syst_JES_LArESZee: 4.31150568e+01 + syst_JES_LArEsmear: 4.03340366e+00 + syst_JES_LAr_JVT: 6.81551618e+00 + syst_JES_MJB_Alpha: 1.87494500e-03 + syst_JES_MJB_Asym: 1.61306776e-02 syst_JES_MJB_Beta: 0.0 - syst_JES_MJB_Fragmentation: 2.182781883285639e-05 - syst_JES_MJB_Stat1: 0.014714885550013632 - syst_JES_MJB_Stat10: 3.606995806762187e-42 + syst_JES_MJB_Fragmentation: 2.18278188e-05 + syst_JES_MJB_Stat1: 1.47148856e-02 + syst_JES_MJB_Stat10: 3.60699581e-42 syst_JES_MJB_Stat11: 0.0 syst_JES_MJB_Stat12: 0.0 syst_JES_MJB_Stat13: 0.0 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 0.0060327329627624 - syst_JES_MJB_Stat3: 1.1037545866269367e-05 - syst_JES_MJB_Stat4: 4.2088834623923715e-08 - syst_JES_MJB_Stat5: 3.125484243215143e-18 - syst_JES_MJB_Stat6: 1.3717842395945509e-19 + syst_JES_MJB_Stat2: 6.03273296e-03 + syst_JES_MJB_Stat3: 1.10375459e-05 + syst_JES_MJB_Stat4: 4.20888346e-08 + syst_JES_MJB_Stat5: 3.12548424e-18 + syst_JES_MJB_Stat6: 1.37178424e-19 syst_JES_MJB_Stat7: 0.0 syst_JES_MJB_Stat8: 0.0 syst_JES_MJB_Stat9: 0.0 - syst_JES_MJB_Threshold: 0.018339292461815423 - syst_JES_Pileup_MuOffset: 7.8626237828094e-17 - syst_JES_Pileup_NPVOffset: 3.7862963681545057 - syst_JES_Pileup_Pt_term: 9.092274962846206 - syst_JES_Pileup_Rho_topology: 30.416973468772333 - syst_JES_PunchThrough_MC15: 1.02511427045964e-30 + syst_JES_MJB_Threshold: 1.83392925e-02 + syst_JES_Pileup_MuOffset: 7.86262378e-17 + syst_JES_Pileup_NPVOffset: 3.78629637e+00 + syst_JES_Pileup_Pt_term: 9.09227496e+00 + syst_JES_Pileup_Rho_topology: 3.04169735e+01 + syst_JES_PunchThrough_MC15: 1.02511427e-30 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 55.48128310295283 - syst_JES_Zjet_MuScale: 4.0619143270138025 - syst_JES_Zjet_MuSmearID: 0.4158474960848027 - syst_JES_Zjet_MuSmearMS: 2.8162330780672256 - syst_JES_Zjet_OOC: 28.783557806497793 - syst_JES_Zjet_Stat1: 0.5121504466462955 - syst_JES_Zjet_Stat10: 6.33256004708996 - syst_JES_Zjet_Stat11: 0.8479253313234604 - syst_JES_Zjet_Stat12: 1.1977002087333875 - syst_JES_Zjet_Stat13: 0.10365392708431263 + syst_JES_Zjet_MC: 5.54812831e+01 + syst_JES_Zjet_MuScale: 4.06191433e+00 + syst_JES_Zjet_MuSmearID: 4.15847496e-01 + syst_JES_Zjet_MuSmearMS: 2.81623308e+00 + syst_JES_Zjet_OOC: 2.87835578e+01 + syst_JES_Zjet_Stat1: 5.12150447e-01 + syst_JES_Zjet_Stat10: 6.33256005e+00 + syst_JES_Zjet_Stat11: 8.47925331e-01 + syst_JES_Zjet_Stat12: 1.19770021e+00 + syst_JES_Zjet_Stat13: 1.03653927e-01 syst_JES_Zjet_Stat2: 0.0 - syst_JES_Zjet_Stat3: 0.19650116411868912 - syst_JES_Zjet_Stat4: 0.24038046405646196 - syst_JES_Zjet_Stat5: 0.46423550865912877 - syst_JES_Zjet_Stat6: 1.0415021555426567 - syst_JES_Zjet_Stat7: 1.9538333475503993 - syst_JES_Zjet_Stat8: 3.579417131321802 - syst_JES_Zjet_Stat9: 6.5916727770726 - syst_JES_Zjet_Veto: 4.780625978886029 - syst_JES_Zjet_dPhi: 6.529729167431065 + syst_JES_Zjet_Stat3: 1.96501164e-01 + syst_JES_Zjet_Stat4: 2.40380464e-01 + syst_JES_Zjet_Stat5: 4.64235509e-01 + syst_JES_Zjet_Stat6: 1.04150216e+00 + syst_JES_Zjet_Stat7: 1.95383335e+00 + syst_JES_Zjet_Stat8: 3.57941713e+00 + syst_JES_Zjet_Stat9: 6.59167278e+00 + syst_JES_Zjet_Veto: 4.78062598e+00 + syst_JES_Zjet_dPhi: 6.52972917e+00 syst_PRW: 9.485 syst_Unfolding_bias: 0.9165 - syst_cleaning: 19.087199899409026 + syst_cleaning: 1.90871999e+01 syst_lumi: 62.421 - stat: 9.163 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 16.712369670396836 - syst_JER_NP1: 2.958313539839886 - syst_JER_NP2: 4.917185653399717 - syst_JER_NP3: 3.0206738900450674 - syst_JER_NP4: 6.453490683343395 - syst_JER_NP5: 0.4700197783870377 - syst_JER_NP6: 1.6720678066394319 - syst_JER_NP7: 2.36015635075306 - syst_JER_NP8: 2.156001855286771 - syst_JES_EtaIntercalibration_Modelling: 0.13424989646178503 + syst_JER_NP0: 1.67123697e+01 + syst_JER_NP1: 2.95831354e+00 + syst_JER_NP2: 4.91718565e+00 + syst_JER_NP3: 3.02067389e+00 + syst_JER_NP4: 6.45349068e+00 + syst_JER_NP5: 4.70019778e-01 + syst_JER_NP6: 1.67206781e+00 + syst_JER_NP7: 2.36015635e+00 + syst_JER_NP8: 2.15600186e+00 + syst_JES_EtaIntercalibration_Modelling: 1.34249896e-01 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 - syst_JES_EtaIntercalibration_Stat10: 0.012351396550592973 - syst_JES_EtaIntercalibration_Stat100: 0.04094838458352173 + syst_JES_EtaIntercalibration_Stat10: 1.23513966e-02 + syst_JES_EtaIntercalibration_Stat100: 4.09483846e-02 syst_JES_EtaIntercalibration_Stat101: 0.0 syst_JES_EtaIntercalibration_Stat102: 0.0 - syst_JES_EtaIntercalibration_Stat103: 0.00021780538905178632 - syst_JES_EtaIntercalibration_Stat104: 0.00021780538905178632 - syst_JES_EtaIntercalibration_Stat105: 0.00021780538905178632 + syst_JES_EtaIntercalibration_Stat103: 2.17805389e-04 + syst_JES_EtaIntercalibration_Stat104: 2.17805389e-04 + syst_JES_EtaIntercalibration_Stat105: 2.17805389e-04 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 0.0038694015041088716 - syst_JES_EtaIntercalibration_Stat11: 0.019000597359030584 - syst_JES_EtaIntercalibration_Stat110: 0.0037612905507950324 - syst_JES_EtaIntercalibration_Stat111: 0.003716115007639026 - syst_JES_EtaIntercalibration_Stat112: 0.003716115007639026 + syst_JES_EtaIntercalibration_Stat109: 3.86940150e-03 + syst_JES_EtaIntercalibration_Stat11: 1.90005974e-02 + syst_JES_EtaIntercalibration_Stat110: 3.76129055e-03 + syst_JES_EtaIntercalibration_Stat111: 3.71611501e-03 + syst_JES_EtaIntercalibration_Stat112: 3.71611501e-03 syst_JES_EtaIntercalibration_Stat113: 0.0 - syst_JES_EtaIntercalibration_Stat114: 0.004130941176051772 - syst_JES_EtaIntercalibration_Stat115: 0.04579710362020726 - syst_JES_EtaIntercalibration_Stat116: 2.911087940959531 - syst_JES_EtaIntercalibration_Stat117: 4.01555032716563 - syst_JES_EtaIntercalibration_Stat118: 3.8378944057907587 - syst_JES_EtaIntercalibration_Stat119: 3.0116681009035506 - syst_JES_EtaIntercalibration_Stat12: 0.00682513362506552 - syst_JES_EtaIntercalibration_Stat120: 0.0630025737569506 - syst_JES_EtaIntercalibration_Stat121: 0.004330993044325978 + syst_JES_EtaIntercalibration_Stat114: 4.13094118e-03 + syst_JES_EtaIntercalibration_Stat115: 4.57971036e-02 + syst_JES_EtaIntercalibration_Stat116: 2.91108794e+00 + syst_JES_EtaIntercalibration_Stat117: 4.01555033e+00 + syst_JES_EtaIntercalibration_Stat118: 3.83789441e+00 + syst_JES_EtaIntercalibration_Stat119: 3.01166810e+00 + syst_JES_EtaIntercalibration_Stat12: 6.82513363e-03 + syst_JES_EtaIntercalibration_Stat120: 6.30025738e-02 + syst_JES_EtaIntercalibration_Stat121: 4.33099304e-03 syst_JES_EtaIntercalibration_Stat122: 0.0 - syst_JES_EtaIntercalibration_Stat123: 0.00021780538905178632 - syst_JES_EtaIntercalibration_Stat124: 0.00021780538905178632 - syst_JES_EtaIntercalibration_Stat125: 0.00021780538905178632 + syst_JES_EtaIntercalibration_Stat123: 2.17805389e-04 + syst_JES_EtaIntercalibration_Stat124: 2.17805389e-04 + syst_JES_EtaIntercalibration_Stat125: 2.17805389e-04 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 0.0038694015041088716 - syst_JES_EtaIntercalibration_Stat129: 0.0037612905507950324 + syst_JES_EtaIntercalibration_Stat128: 3.86940150e-03 + syst_JES_EtaIntercalibration_Stat129: 3.76129055e-03 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 0.00037403637189449904 + syst_JES_EtaIntercalibration_Stat130: 3.74036372e-04 syst_JES_EtaIntercalibration_Stat131: 0.0 syst_JES_EtaIntercalibration_Stat132: 0.0 - syst_JES_EtaIntercalibration_Stat133: 0.004130941176051772 - syst_JES_EtaIntercalibration_Stat134: 0.06236357109723593 - syst_JES_EtaIntercalibration_Stat135: 3.521113602257104 - syst_JES_EtaIntercalibration_Stat136: 6.335268956405876 - syst_JES_EtaIntercalibration_Stat137: 5.583245203284556 - syst_JES_EtaIntercalibration_Stat138: 3.6042101423196735 - syst_JES_EtaIntercalibration_Stat139: 0.04861291186505906 + syst_JES_EtaIntercalibration_Stat133: 4.13094118e-03 + syst_JES_EtaIntercalibration_Stat134: 6.23635711e-02 + syst_JES_EtaIntercalibration_Stat135: 3.52111360e+00 + syst_JES_EtaIntercalibration_Stat136: 6.33526896e+00 + syst_JES_EtaIntercalibration_Stat137: 5.58324520e+00 + syst_JES_EtaIntercalibration_Stat138: 3.60421014e+00 + syst_JES_EtaIntercalibration_Stat139: 4.86129119e-02 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 0.004330993044325978 + syst_JES_EtaIntercalibration_Stat140: 4.33099304e-03 syst_JES_EtaIntercalibration_Stat141: 0.0 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 0.00021780538905178632 - syst_JES_EtaIntercalibration_Stat144: 0.00021780538905178632 + syst_JES_EtaIntercalibration_Stat143: 2.17805389e-04 + syst_JES_EtaIntercalibration_Stat144: 2.17805389e-04 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 0.00037403637189449904 - syst_JES_EtaIntercalibration_Stat148: 0.00037403637189449904 + syst_JES_EtaIntercalibration_Stat147: 3.74036372e-04 + syst_JES_EtaIntercalibration_Stat148: 3.74036372e-04 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 syst_JES_EtaIntercalibration_Stat150: 0.0 syst_JES_EtaIntercalibration_Stat151: 0.0 - syst_JES_EtaIntercalibration_Stat152: 0.024153093963300024 - syst_JES_EtaIntercalibration_Stat153: 0.042234079544841506 - syst_JES_EtaIntercalibration_Stat154: 0.20194229887519852 - syst_JES_EtaIntercalibration_Stat155: 0.043148500553321666 - syst_JES_EtaIntercalibration_Stat156: 0.07707791950357767 - syst_JES_EtaIntercalibration_Stat157: 0.027923365999642666 + syst_JES_EtaIntercalibration_Stat152: 2.41530940e-02 + syst_JES_EtaIntercalibration_Stat153: 4.22340795e-02 + syst_JES_EtaIntercalibration_Stat154: 2.01942299e-01 + syst_JES_EtaIntercalibration_Stat155: 4.31485006e-02 + syst_JES_EtaIntercalibration_Stat156: 7.70779195e-02 + syst_JES_EtaIntercalibration_Stat157: 2.79233660e-02 syst_JES_EtaIntercalibration_Stat158: 0.0 syst_JES_EtaIntercalibration_Stat159: 0.0 syst_JES_EtaIntercalibration_Stat16: 0.0 @@ -2447,18 +2447,18 @@ bins: syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 0.00037403637189449904 + syst_JES_EtaIntercalibration_Stat165: 3.74036372e-04 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 0.008452402661373865 - syst_JES_EtaIntercalibration_Stat171: 0.21266976160234913 - syst_JES_EtaIntercalibration_Stat172: 0.2642038796081541 - syst_JES_EtaIntercalibration_Stat173: 0.3036668692827718 - syst_JES_EtaIntercalibration_Stat174: 0.18361966125663123 - syst_JES_EtaIntercalibration_Stat175: 0.011420761445718056 + syst_JES_EtaIntercalibration_Stat170: 8.45240266e-03 + syst_JES_EtaIntercalibration_Stat171: 2.12669762e-01 + syst_JES_EtaIntercalibration_Stat172: 2.64203880e-01 + syst_JES_EtaIntercalibration_Stat173: 3.03666869e-01 + syst_JES_EtaIntercalibration_Stat174: 1.83619661e-01 + syst_JES_EtaIntercalibration_Stat175: 1.14207614e-02 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 syst_JES_EtaIntercalibration_Stat178: 0.0 @@ -2471,14 +2471,14 @@ bins: syst_JES_EtaIntercalibration_Stat184: 0.0 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 - syst_JES_EtaIntercalibration_Stat187: 0.0010239884374347202 - syst_JES_EtaIntercalibration_Stat188: 0.050656653528929445 - syst_JES_EtaIntercalibration_Stat189: 0.06008746624713011 + syst_JES_EtaIntercalibration_Stat187: 1.02398844e-03 + syst_JES_EtaIntercalibration_Stat188: 5.06566535e-02 + syst_JES_EtaIntercalibration_Stat189: 6.00874662e-02 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 0.046158055364150685 - syst_JES_EtaIntercalibration_Stat191: 0.04231192591929609 - syst_JES_EtaIntercalibration_Stat192: 0.0010586940590652238 - syst_JES_EtaIntercalibration_Stat193: 3.871999580320225e-23 + syst_JES_EtaIntercalibration_Stat190: 4.61580554e-02 + syst_JES_EtaIntercalibration_Stat191: 4.23119259e-02 + syst_JES_EtaIntercalibration_Stat192: 1.05869406e-03 + syst_JES_EtaIntercalibration_Stat193: 3.87199958e-23 syst_JES_EtaIntercalibration_Stat194: 0.0 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 @@ -2489,13 +2489,13 @@ bins: syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 syst_JES_EtaIntercalibration_Stat201: 0.0 - syst_JES_EtaIntercalibration_Stat202: 2.3754004660425156e-05 - syst_JES_EtaIntercalibration_Stat203: 0.0013170939782338996 - syst_JES_EtaIntercalibration_Stat204: 0.013816899756005327 - syst_JES_EtaIntercalibration_Stat205: 0.0010784933136093148 - syst_JES_EtaIntercalibration_Stat206: 0.0008256775157408612 - syst_JES_EtaIntercalibration_Stat207: 2.014594988453014e-09 - syst_JES_EtaIntercalibration_Stat208: 3.871999580320225e-23 + syst_JES_EtaIntercalibration_Stat202: 2.37540047e-05 + syst_JES_EtaIntercalibration_Stat203: 1.31709398e-03 + syst_JES_EtaIntercalibration_Stat204: 1.38168998e-02 + syst_JES_EtaIntercalibration_Stat205: 1.07849331e-03 + syst_JES_EtaIntercalibration_Stat206: 8.25677516e-04 + syst_JES_EtaIntercalibration_Stat207: 2.01459499e-09 + syst_JES_EtaIntercalibration_Stat208: 3.87199958e-23 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 @@ -2503,13 +2503,13 @@ bins: syst_JES_EtaIntercalibration_Stat212: 0.0 syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 - syst_JES_EtaIntercalibration_Stat215: 1.9814661238585054e-17 - syst_JES_EtaIntercalibration_Stat216: 6.685192592588489e-08 - syst_JES_EtaIntercalibration_Stat217: 3.480172482517928e-06 - syst_JES_EtaIntercalibration_Stat218: 9.829270407817662e-08 - syst_JES_EtaIntercalibration_Stat219: 6.492592459596661e-08 + syst_JES_EtaIntercalibration_Stat215: 1.98146612e-17 + syst_JES_EtaIntercalibration_Stat216: 6.68519259e-08 + syst_JES_EtaIntercalibration_Stat217: 3.48017248e-06 + syst_JES_EtaIntercalibration_Stat218: 9.82927041e-08 + syst_JES_EtaIntercalibration_Stat219: 6.49259246e-08 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 6.777136342143339e-23 + syst_JES_EtaIntercalibration_Stat220: 6.77713634e-23 syst_JES_EtaIntercalibration_Stat221: 0.0 syst_JES_EtaIntercalibration_Stat222: 0.0 syst_JES_EtaIntercalibration_Stat223: 0.0 @@ -2517,12 +2517,12 @@ bins: syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 syst_JES_EtaIntercalibration_Stat227: 0.0 - syst_JES_EtaIntercalibration_Stat228: 1.4514528899316944e-18 - syst_JES_EtaIntercalibration_Stat229: 2.65048047531009e-18 + syst_JES_EtaIntercalibration_Stat228: 1.45145289e-18 + syst_JES_EtaIntercalibration_Stat229: 2.65048048e-18 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 3.5878706230962286e-14 - syst_JES_EtaIntercalibration_Stat231: 4.015947848266957e-14 - syst_JES_EtaIntercalibration_Stat232: 3.847750869014261e-23 + syst_JES_EtaIntercalibration_Stat230: 3.58787062e-14 + syst_JES_EtaIntercalibration_Stat231: 4.01594785e-14 + syst_JES_EtaIntercalibration_Stat232: 3.84775087e-23 syst_JES_EtaIntercalibration_Stat233: 0.0 syst_JES_EtaIntercalibration_Stat234: 0.0 syst_JES_EtaIntercalibration_Stat235: 0.0 @@ -2543,12 +2543,12 @@ bins: syst_JES_EtaIntercalibration_Stat28: 0.0 syst_JES_EtaIntercalibration_Stat29: 0.0 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 0.003961103728760457 - syst_JES_EtaIntercalibration_Stat31: 0.01588059403013628 - syst_JES_EtaIntercalibration_Stat32: 0.01416519085646219 - syst_JES_EtaIntercalibration_Stat33: 0.021502612556384866 - syst_JES_EtaIntercalibration_Stat34: 0.024383699473213657 - syst_JES_EtaIntercalibration_Stat35: 0.0037446090870843917 + syst_JES_EtaIntercalibration_Stat30: 3.96110373e-03 + syst_JES_EtaIntercalibration_Stat31: 1.58805940e-02 + syst_JES_EtaIntercalibration_Stat32: 1.41651909e-02 + syst_JES_EtaIntercalibration_Stat33: 2.15026126e-02 + syst_JES_EtaIntercalibration_Stat34: 2.43836995e-02 + syst_JES_EtaIntercalibration_Stat35: 3.74460909e-03 syst_JES_EtaIntercalibration_Stat36: 0.0 syst_JES_EtaIntercalibration_Stat37: 0.0 syst_JES_EtaIntercalibration_Stat38: 0.0 @@ -2567,215 +2567,215 @@ bins: syst_JES_EtaIntercalibration_Stat5: 0.0 syst_JES_EtaIntercalibration_Stat50: 0.0 syst_JES_EtaIntercalibration_Stat51: 0.0 - syst_JES_EtaIntercalibration_Stat52: 0.008323031839420056 - syst_JES_EtaIntercalibration_Stat53: 0.026496865036264194 - syst_JES_EtaIntercalibration_Stat54: 0.030670283255946628 - syst_JES_EtaIntercalibration_Stat55: 0.08739901186512351 - syst_JES_EtaIntercalibration_Stat56: 0.04002685332373756 - syst_JES_EtaIntercalibration_Stat57: 0.0053332071964250554 + syst_JES_EtaIntercalibration_Stat52: 8.32303184e-03 + syst_JES_EtaIntercalibration_Stat53: 2.64968650e-02 + syst_JES_EtaIntercalibration_Stat54: 3.06702833e-02 + syst_JES_EtaIntercalibration_Stat55: 8.73990119e-02 + syst_JES_EtaIntercalibration_Stat56: 4.00268533e-02 + syst_JES_EtaIntercalibration_Stat57: 5.33320720e-03 syst_JES_EtaIntercalibration_Stat58: 0.0 syst_JES_EtaIntercalibration_Stat59: 0.0 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 0.00021780538905178632 - syst_JES_EtaIntercalibration_Stat62: 0.00021780538905178632 + syst_JES_EtaIntercalibration_Stat61: 2.17805389e-04 + syst_JES_EtaIntercalibration_Stat62: 2.17805389e-04 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 0.0038694015041088716 - syst_JES_EtaIntercalibration_Stat69: 0.0038694015041088716 + syst_JES_EtaIntercalibration_Stat68: 3.86940150e-03 + syst_JES_EtaIntercalibration_Stat69: 3.86940150e-03 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 0.003716115007639026 - syst_JES_EtaIntercalibration_Stat71: 0.003716115007639026 + syst_JES_EtaIntercalibration_Stat70: 3.71611501e-03 + syst_JES_EtaIntercalibration_Stat71: 3.71611501e-03 syst_JES_EtaIntercalibration_Stat72: 0.0 syst_JES_EtaIntercalibration_Stat73: 0.0 - syst_JES_EtaIntercalibration_Stat74: 0.01303369049808994 - syst_JES_EtaIntercalibration_Stat75: 0.2818234021510634 - syst_JES_EtaIntercalibration_Stat76: 0.4544084756031736 - syst_JES_EtaIntercalibration_Stat77: 0.5045429292934348 - syst_JES_EtaIntercalibration_Stat78: 0.353055615307277 - syst_JES_EtaIntercalibration_Stat79: 0.020288541100828318 + syst_JES_EtaIntercalibration_Stat74: 1.30336905e-02 + syst_JES_EtaIntercalibration_Stat75: 2.81823402e-01 + syst_JES_EtaIntercalibration_Stat76: 4.54408476e-01 + syst_JES_EtaIntercalibration_Stat77: 5.04542929e-01 + syst_JES_EtaIntercalibration_Stat78: 3.53055615e-01 + syst_JES_EtaIntercalibration_Stat79: 2.02885411e-02 syst_JES_EtaIntercalibration_Stat8: 0.0 syst_JES_EtaIntercalibration_Stat80: 0.0 syst_JES_EtaIntercalibration_Stat81: 0.0 - syst_JES_EtaIntercalibration_Stat82: 0.00021780538905178632 - syst_JES_EtaIntercalibration_Stat83: 0.00021780538905178632 - syst_JES_EtaIntercalibration_Stat84: 0.00021780538905178632 + syst_JES_EtaIntercalibration_Stat82: 2.17805389e-04 + syst_JES_EtaIntercalibration_Stat83: 2.17805389e-04 + syst_JES_EtaIntercalibration_Stat84: 2.17805389e-04 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 0.0038694015041088716 - syst_JES_EtaIntercalibration_Stat9: 0.009451708668277922 - syst_JES_EtaIntercalibration_Stat90: 0.0038694015041088716 - syst_JES_EtaIntercalibration_Stat91: 0.003716115007639026 - syst_JES_EtaIntercalibration_Stat92: 0.003716115007639026 + syst_JES_EtaIntercalibration_Stat89: 3.86940150e-03 + syst_JES_EtaIntercalibration_Stat9: 9.45170867e-03 + syst_JES_EtaIntercalibration_Stat90: 3.86940150e-03 + syst_JES_EtaIntercalibration_Stat91: 3.71611501e-03 + syst_JES_EtaIntercalibration_Stat92: 3.71611501e-03 syst_JES_EtaIntercalibration_Stat93: 0.0 syst_JES_EtaIntercalibration_Stat94: 0.0 - syst_JES_EtaIntercalibration_Stat95: 0.023273242592084156 - syst_JES_EtaIntercalibration_Stat96: 0.7372715290176342 - syst_JES_EtaIntercalibration_Stat97: 0.9511668728461898 - syst_JES_EtaIntercalibration_Stat98: 0.9671045600140659 - syst_JES_EtaIntercalibration_Stat99: 0.7483614300590324 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0019407070876358444 - syst_JES_Flavour_Comp: 1.6668601471029296 - syst_JES_Flavour_Response: 41.39177180008124 - syst_JES_Gjet_Generator: 34.85198236829578 - syst_JES_Gjet_OOC: 19.187792994505646 - syst_JES_Gjet_Purity: 7.724559841829178 - syst_JES_Gjet_Stat1: 3.529053520421587e-29 - syst_JES_Gjet_Stat10: 0.41154541669176686 - syst_JES_Gjet_Stat11: 0.41567151393859064 - syst_JES_Gjet_Stat12: 0.4421027793398272 - syst_JES_Gjet_Stat13: 0.0017638960513590362 - syst_JES_Gjet_Stat14: 5.5585572199537535e-06 - syst_JES_Gjet_Stat15: 1.1178137356017774e-06 - syst_JES_Gjet_Stat2: 0.06530697569938453 - syst_JES_Gjet_Stat3: 0.13093564325652507 - syst_JES_Gjet_Stat4: 0.16643142822195572 - syst_JES_Gjet_Stat5: 0.30160143815970103 - syst_JES_Gjet_Stat6: 1.173179273384933 - syst_JES_Gjet_Stat7: 2.0976145379930986 - syst_JES_Gjet_Stat8: 1.192549800846908 - syst_JES_Gjet_Stat9: 1.5288479322679545 - syst_JES_Gjet_Veto: 7.574126880373737 - syst_JES_Gjet_dPhi: 3.3033189370692018 - syst_JES_LArESZee: 25.740710945892694 - syst_JES_LArEsmear: 2.337438127523379 - syst_JES_LAr_JVT: 3.7818959834982238 - syst_JES_MJB_Alpha: 0.0013665880871718441 - syst_JES_MJB_Asym: 0.04730052933107621 + syst_JES_EtaIntercalibration_Stat95: 2.32732426e-02 + syst_JES_EtaIntercalibration_Stat96: 7.37271529e-01 + syst_JES_EtaIntercalibration_Stat97: 9.51166873e-01 + syst_JES_EtaIntercalibration_Stat98: 9.67104560e-01 + syst_JES_EtaIntercalibration_Stat99: 7.48361430e-01 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.94070709e-03 + syst_JES_Flavour_Comp: 1.66686015e+00 + syst_JES_Flavour_Response: 4.13917718e+01 + syst_JES_Gjet_Generator: 3.48519824e+01 + syst_JES_Gjet_OOC: 1.91877930e+01 + syst_JES_Gjet_Purity: 7.72455984e+00 + syst_JES_Gjet_Stat1: 3.52905352e-29 + syst_JES_Gjet_Stat10: 4.11545417e-01 + syst_JES_Gjet_Stat11: 4.15671514e-01 + syst_JES_Gjet_Stat12: 4.42102779e-01 + syst_JES_Gjet_Stat13: 1.76389605e-03 + syst_JES_Gjet_Stat14: 5.55855722e-06 + syst_JES_Gjet_Stat15: 1.11781374e-06 + syst_JES_Gjet_Stat2: 6.53069757e-02 + syst_JES_Gjet_Stat3: 1.30935643e-01 + syst_JES_Gjet_Stat4: 1.66431428e-01 + syst_JES_Gjet_Stat5: 3.01601438e-01 + syst_JES_Gjet_Stat6: 1.17317927e+00 + syst_JES_Gjet_Stat7: 2.09761454e+00 + syst_JES_Gjet_Stat8: 1.19254980e+00 + syst_JES_Gjet_Stat9: 1.52884793e+00 + syst_JES_Gjet_Veto: 7.57412688e+00 + syst_JES_Gjet_dPhi: 3.30331894e+00 + syst_JES_LArESZee: 2.57407109e+01 + syst_JES_LArEsmear: 2.33743813e+00 + syst_JES_LAr_JVT: 3.78189598e+00 + syst_JES_MJB_Alpha: 1.36658809e-03 + syst_JES_MJB_Asym: 4.73005293e-02 syst_JES_MJB_Beta: 0.0 - syst_JES_MJB_Fragmentation: 0.002203223263766067 - syst_JES_MJB_Stat1: 0.03552457318533187 - syst_JES_MJB_Stat10: 1.045206059827439e-30 + syst_JES_MJB_Fragmentation: 2.20322326e-03 + syst_JES_MJB_Stat1: 3.55245732e-02 + syst_JES_MJB_Stat10: 1.04520606e-30 syst_JES_MJB_Stat11: 0.0 syst_JES_MJB_Stat12: 0.0 syst_JES_MJB_Stat13: 0.0 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 0.013951669254967306 - syst_JES_MJB_Stat3: 0.00022515225248706706 - syst_JES_MJB_Stat4: 4.2487206310178974e-06 - syst_JES_MJB_Stat5: 1.26783425426649e-12 - syst_JES_MJB_Stat6: 5.5642132193150186e-14 + syst_JES_MJB_Stat2: 1.39516693e-02 + syst_JES_MJB_Stat3: 2.25152252e-04 + syst_JES_MJB_Stat4: 4.24872063e-06 + syst_JES_MJB_Stat5: 1.26783425e-12 + syst_JES_MJB_Stat6: 5.56421322e-14 syst_JES_MJB_Stat7: 0.0 syst_JES_MJB_Stat8: 0.0 syst_JES_MJB_Stat9: 0.0 - syst_JES_MJB_Threshold: 0.04798111785640263 - syst_JES_Pileup_MuOffset: 3.189811279684113e-11 - syst_JES_Pileup_NPVOffset: 1.770569399938901 - syst_JES_Pileup_Pt_term: 4.620007792201221 - syst_JES_Pileup_Rho_topology: 15.14702198453544 - syst_JES_PunchThrough_MC15: 1.5727021332725394e-21 + syst_JES_MJB_Threshold: 4.79811179e-02 + syst_JES_Pileup_MuOffset: 3.18981128e-11 + syst_JES_Pileup_NPVOffset: 1.77056940e+00 + syst_JES_Pileup_Pt_term: 4.62000779e+00 + syst_JES_Pileup_Rho_topology: 1.51470220e+01 + syst_JES_PunchThrough_MC15: 1.57270213e-21 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 29.686836729432795 - syst_JES_Zjet_MuScale: 2.1725010356729406 - syst_JES_Zjet_MuSmearID: 0.23519083209172928 - syst_JES_Zjet_MuSmearMS: 1.9828526798529433 - syst_JES_Zjet_OOC: 13.383401015810593 - syst_JES_Zjet_Stat1: 0.1698950760763831 - syst_JES_Zjet_Stat10: 4.401584572628362 - syst_JES_Zjet_Stat11: 1.601991860154102 - syst_JES_Zjet_Stat12: 0.9197449265964994 - syst_JES_Zjet_Stat13: 0.10259903605785 + syst_JES_Zjet_MC: 2.96868367e+01 + syst_JES_Zjet_MuScale: 2.17250104e+00 + syst_JES_Zjet_MuSmearID: 2.35190832e-01 + syst_JES_Zjet_MuSmearMS: 1.98285268e+00 + syst_JES_Zjet_OOC: 1.33834010e+01 + syst_JES_Zjet_Stat1: 1.69895076e-01 + syst_JES_Zjet_Stat10: 4.40158457e+00 + syst_JES_Zjet_Stat11: 1.60199186e+00 + syst_JES_Zjet_Stat12: 9.19744927e-01 + syst_JES_Zjet_Stat13: 1.02599036e-01 syst_JES_Zjet_Stat2: 0.0 - syst_JES_Zjet_Stat3: 0.08616952767655166 - syst_JES_Zjet_Stat4: 0.09580931269975797 - syst_JES_Zjet_Stat5: 0.1723874342868412 - syst_JES_Zjet_Stat6: 0.30885108061977057 - syst_JES_Zjet_Stat7: 0.6889352219185777 - syst_JES_Zjet_Stat8: 1.3162069166738182 - syst_JES_Zjet_Stat9: 2.9331624571441655 - syst_JES_Zjet_Veto: 2.3338296853026788 - syst_JES_Zjet_dPhi: 2.919251744882582 + syst_JES_Zjet_Stat3: 8.61695277e-02 + syst_JES_Zjet_Stat4: 9.58093127e-02 + syst_JES_Zjet_Stat5: 1.72387434e-01 + syst_JES_Zjet_Stat6: 3.08851081e-01 + syst_JES_Zjet_Stat7: 6.88935222e-01 + syst_JES_Zjet_Stat8: 1.31620692e+00 + syst_JES_Zjet_Stat9: 2.93316246e+00 + syst_JES_Zjet_Veto: 2.33382969e+00 + syst_JES_Zjet_dPhi: 2.91925174e+00 syst_PRW: 4.631 syst_Unfolding_bias: 1.1015 - syst_cleaning: 7.946649105126009 + syst_cleaning: 7.94664911e+00 syst_lumi: 33.99 - stat: 5.946 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 8.585933670836269 - syst_JER_NP1: 1.4151247957335777 - syst_JER_NP2: 2.000898985456287 - syst_JER_NP3: 1.8461944642967598 - syst_JER_NP4: 3.172345307497278 - syst_JER_NP5: 0.1862762666042027 - syst_JER_NP6: 0.792516567650166 - syst_JER_NP7: 1.505740349462682 - syst_JER_NP8: 1.214617202043508 - syst_JES_EtaIntercalibration_Modelling: 0.1915736085686126 + syst_JER_NP0: 8.58593367e+00 + syst_JER_NP1: 1.41512480e+00 + syst_JER_NP2: 2.00089899e+00 + syst_JER_NP3: 1.84619446e+00 + syst_JER_NP4: 3.17234531e+00 + syst_JER_NP5: 1.86276267e-01 + syst_JER_NP6: 7.92516568e-01 + syst_JER_NP7: 1.50574035e+00 + syst_JER_NP8: 1.21461720e+00 + syst_JES_EtaIntercalibration_Modelling: 1.91573609e-01 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 - syst_JES_EtaIntercalibration_Stat10: 0.0031476581644136648 - syst_JES_EtaIntercalibration_Stat100: 0.01526068074333514 + syst_JES_EtaIntercalibration_Stat10: 3.14765816e-03 + syst_JES_EtaIntercalibration_Stat100: 1.52606807e-02 syst_JES_EtaIntercalibration_Stat101: 0.0 syst_JES_EtaIntercalibration_Stat102: 0.0 - syst_JES_EtaIntercalibration_Stat103: 2.1711256872875875e-05 - syst_JES_EtaIntercalibration_Stat104: 2.1711256872875875e-05 - syst_JES_EtaIntercalibration_Stat105: 2.1711256872875875e-05 + syst_JES_EtaIntercalibration_Stat103: 2.17112569e-05 + syst_JES_EtaIntercalibration_Stat104: 2.17112569e-05 + syst_JES_EtaIntercalibration_Stat105: 2.17112569e-05 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 0.000664154882162286 - syst_JES_EtaIntercalibration_Stat11: 0.0029211036869649116 - syst_JES_EtaIntercalibration_Stat110: 0.0006519561818673093 - syst_JES_EtaIntercalibration_Stat111: 0.0005670734343980504 - syst_JES_EtaIntercalibration_Stat112: 0.0005670734343980504 + syst_JES_EtaIntercalibration_Stat109: 6.64154882e-04 + syst_JES_EtaIntercalibration_Stat11: 2.92110369e-03 + syst_JES_EtaIntercalibration_Stat110: 6.51956182e-04 + syst_JES_EtaIntercalibration_Stat111: 5.67073434e-04 + syst_JES_EtaIntercalibration_Stat112: 5.67073434e-04 syst_JES_EtaIntercalibration_Stat113: 0.0 - syst_JES_EtaIntercalibration_Stat114: 0.0007578588308517622 - syst_JES_EtaIntercalibration_Stat115: 0.008487301278969657 - syst_JES_EtaIntercalibration_Stat116: 1.1559831432594507 - syst_JES_EtaIntercalibration_Stat117: 1.5660312895980077 - syst_JES_EtaIntercalibration_Stat118: 1.4305630884375562 - syst_JES_EtaIntercalibration_Stat119: 1.097250167464102 - syst_JES_EtaIntercalibration_Stat12: 0.004282277525744916 - syst_JES_EtaIntercalibration_Stat120: 0.025096740824258435 - syst_JES_EtaIntercalibration_Stat121: 0.0019095860153446871 + syst_JES_EtaIntercalibration_Stat114: 7.57858831e-04 + syst_JES_EtaIntercalibration_Stat115: 8.48730128e-03 + syst_JES_EtaIntercalibration_Stat116: 1.15598314e+00 + syst_JES_EtaIntercalibration_Stat117: 1.56603129e+00 + syst_JES_EtaIntercalibration_Stat118: 1.43056309e+00 + syst_JES_EtaIntercalibration_Stat119: 1.09725017e+00 + syst_JES_EtaIntercalibration_Stat12: 4.28227753e-03 + syst_JES_EtaIntercalibration_Stat120: 2.50967408e-02 + syst_JES_EtaIntercalibration_Stat121: 1.90958602e-03 syst_JES_EtaIntercalibration_Stat122: 0.0 - syst_JES_EtaIntercalibration_Stat123: 2.1711256872875875e-05 - syst_JES_EtaIntercalibration_Stat124: 2.1711256872875875e-05 - syst_JES_EtaIntercalibration_Stat125: 2.1711256872875875e-05 + syst_JES_EtaIntercalibration_Stat123: 2.17112569e-05 + syst_JES_EtaIntercalibration_Stat124: 2.17112569e-05 + syst_JES_EtaIntercalibration_Stat125: 2.17112569e-05 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 0.000664154882162286 - syst_JES_EtaIntercalibration_Stat129: 0.0006519561818673093 + syst_JES_EtaIntercalibration_Stat128: 6.64154882e-04 + syst_JES_EtaIntercalibration_Stat129: 6.51956182e-04 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 3.984582882812202e-05 + syst_JES_EtaIntercalibration_Stat130: 3.98458288e-05 syst_JES_EtaIntercalibration_Stat131: 0.0 syst_JES_EtaIntercalibration_Stat132: 0.0 - syst_JES_EtaIntercalibration_Stat133: 0.0007578588308517622 - syst_JES_EtaIntercalibration_Stat134: 0.054144121564579845 - syst_JES_EtaIntercalibration_Stat135: 2.4582542586152476 - syst_JES_EtaIntercalibration_Stat136: 4.190532424406236 - syst_JES_EtaIntercalibration_Stat137: 3.7477742151175546 - syst_JES_EtaIntercalibration_Stat138: 2.461683722576887 - syst_JES_EtaIntercalibration_Stat139: 0.026732339417828734 + syst_JES_EtaIntercalibration_Stat133: 7.57858831e-04 + syst_JES_EtaIntercalibration_Stat134: 5.41441216e-02 + syst_JES_EtaIntercalibration_Stat135: 2.45825426e+00 + syst_JES_EtaIntercalibration_Stat136: 4.19053242e+00 + syst_JES_EtaIntercalibration_Stat137: 3.74777422e+00 + syst_JES_EtaIntercalibration_Stat138: 2.46168372e+00 + syst_JES_EtaIntercalibration_Stat139: 2.67323394e-02 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 0.0019095860153446871 + syst_JES_EtaIntercalibration_Stat140: 1.90958602e-03 syst_JES_EtaIntercalibration_Stat141: 0.0 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 2.1711256872875875e-05 - syst_JES_EtaIntercalibration_Stat144: 2.1711256872875875e-05 + syst_JES_EtaIntercalibration_Stat143: 2.17112569e-05 + syst_JES_EtaIntercalibration_Stat144: 2.17112569e-05 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 3.984582882812202e-05 - syst_JES_EtaIntercalibration_Stat148: 3.984582882812202e-05 + syst_JES_EtaIntercalibration_Stat147: 3.98458288e-05 + syst_JES_EtaIntercalibration_Stat148: 3.98458288e-05 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 syst_JES_EtaIntercalibration_Stat150: 0.0 syst_JES_EtaIntercalibration_Stat151: 0.0 - syst_JES_EtaIntercalibration_Stat152: 0.008431122982734863 - syst_JES_EtaIntercalibration_Stat153: 0.5383510448582783 - syst_JES_EtaIntercalibration_Stat154: 0.7856080511298239 - syst_JES_EtaIntercalibration_Stat155: 0.6312309244642567 - syst_JES_EtaIntercalibration_Stat156: 0.348626648436404 - syst_JES_EtaIntercalibration_Stat157: 0.01680834911584121 + syst_JES_EtaIntercalibration_Stat152: 8.43112298e-03 + syst_JES_EtaIntercalibration_Stat153: 5.38351045e-01 + syst_JES_EtaIntercalibration_Stat154: 7.85608051e-01 + syst_JES_EtaIntercalibration_Stat155: 6.31230924e-01 + syst_JES_EtaIntercalibration_Stat156: 3.48626648e-01 + syst_JES_EtaIntercalibration_Stat157: 1.68083491e-02 syst_JES_EtaIntercalibration_Stat158: 0.0 syst_JES_EtaIntercalibration_Stat159: 0.0 syst_JES_EtaIntercalibration_Stat16: 0.0 @@ -2784,18 +2784,18 @@ bins: syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 3.984582882812202e-05 + syst_JES_EtaIntercalibration_Stat165: 3.98458288e-05 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 0.0008413455948657484 - syst_JES_EtaIntercalibration_Stat171: 0.0865088255613264 - syst_JES_EtaIntercalibration_Stat172: 0.1584279706207209 - syst_JES_EtaIntercalibration_Stat173: 0.14117388878613496 - syst_JES_EtaIntercalibration_Stat174: 0.1514777458902792 - syst_JES_EtaIntercalibration_Stat175: 0.0020608668728231815 + syst_JES_EtaIntercalibration_Stat170: 8.41345595e-04 + syst_JES_EtaIntercalibration_Stat171: 8.65088256e-02 + syst_JES_EtaIntercalibration_Stat172: 1.58427971e-01 + syst_JES_EtaIntercalibration_Stat173: 1.41173889e-01 + syst_JES_EtaIntercalibration_Stat174: 1.51477746e-01 + syst_JES_EtaIntercalibration_Stat175: 2.06086687e-03 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 syst_JES_EtaIntercalibration_Stat178: 0.0 @@ -2808,14 +2808,14 @@ bins: syst_JES_EtaIntercalibration_Stat184: 0.0 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 - syst_JES_EtaIntercalibration_Stat187: 0.0013094304105220713 - syst_JES_EtaIntercalibration_Stat188: 0.09097461994974203 - syst_JES_EtaIntercalibration_Stat189: 0.10764124163163484 + syst_JES_EtaIntercalibration_Stat187: 1.30943041e-03 + syst_JES_EtaIntercalibration_Stat188: 9.09746199e-02 + syst_JES_EtaIntercalibration_Stat189: 1.07641242e-01 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 0.10897201154424929 - syst_JES_EtaIntercalibration_Stat191: 0.07596154076241478 - syst_JES_EtaIntercalibration_Stat192: 0.003399456822420311 - syst_JES_EtaIntercalibration_Stat193: 1.8437680846570699e-16 + syst_JES_EtaIntercalibration_Stat190: 1.08972012e-01 + syst_JES_EtaIntercalibration_Stat191: 7.59615408e-02 + syst_JES_EtaIntercalibration_Stat192: 3.39945682e-03 + syst_JES_EtaIntercalibration_Stat193: 1.84376808e-16 syst_JES_EtaIntercalibration_Stat194: 0.0 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 @@ -2826,13 +2826,13 @@ bins: syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 syst_JES_EtaIntercalibration_Stat201: 0.0 - syst_JES_EtaIntercalibration_Stat202: 0.00024603629527368516 - syst_JES_EtaIntercalibration_Stat203: 0.006303181101634317 - syst_JES_EtaIntercalibration_Stat204: 0.01893136836047516 - syst_JES_EtaIntercalibration_Stat205: 0.003899892658779213 - syst_JES_EtaIntercalibration_Stat206: 0.0031255066789242347 - syst_JES_EtaIntercalibration_Stat207: 1.1467884144426993e-06 - syst_JES_EtaIntercalibration_Stat208: 1.8437680846570699e-16 + syst_JES_EtaIntercalibration_Stat202: 2.46036295e-04 + syst_JES_EtaIntercalibration_Stat203: 6.30318110e-03 + syst_JES_EtaIntercalibration_Stat204: 1.89313684e-02 + syst_JES_EtaIntercalibration_Stat205: 3.89989266e-03 + syst_JES_EtaIntercalibration_Stat206: 3.12550668e-03 + syst_JES_EtaIntercalibration_Stat207: 1.14678841e-06 + syst_JES_EtaIntercalibration_Stat208: 1.84376808e-16 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 @@ -2840,36 +2840,36 @@ bins: syst_JES_EtaIntercalibration_Stat212: 0.0 syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 - syst_JES_EtaIntercalibration_Stat215: 2.9678690579364436e-12 - syst_JES_EtaIntercalibration_Stat216: 4.669509853025262e-06 - syst_JES_EtaIntercalibration_Stat217: 4.360563381892298e-05 - syst_JES_EtaIntercalibration_Stat218: 6.810839816057928e-06 - syst_JES_EtaIntercalibration_Stat219: 4.626318828332969e-06 + syst_JES_EtaIntercalibration_Stat215: 2.96786906e-12 + syst_JES_EtaIntercalibration_Stat216: 4.66950985e-06 + syst_JES_EtaIntercalibration_Stat217: 4.36056338e-05 + syst_JES_EtaIntercalibration_Stat218: 6.81083982e-06 + syst_JES_EtaIntercalibration_Stat219: 4.62631883e-06 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 3.2273064233196075e-16 + syst_JES_EtaIntercalibration_Stat220: 3.22730642e-16 syst_JES_EtaIntercalibration_Stat221: 0.0 syst_JES_EtaIntercalibration_Stat222: 0.0 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 - syst_JES_EtaIntercalibration_Stat227: 7.311852484152016e-35 - syst_JES_EtaIntercalibration_Stat228: 2.175185200699542e-13 - syst_JES_EtaIntercalibration_Stat229: 3.971344199386399e-13 + syst_JES_EtaIntercalibration_Stat227: 7.31185248e-35 + syst_JES_EtaIntercalibration_Stat228: 2.17518520e-13 + syst_JES_EtaIntercalibration_Stat229: 3.97134420e-13 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 2.68619287604981e-10 - syst_JES_EtaIntercalibration_Stat231: 3.0075589769778414e-10 - syst_JES_EtaIntercalibration_Stat232: 1.8325097544078721e-16 + syst_JES_EtaIntercalibration_Stat230: 2.68619288e-10 + syst_JES_EtaIntercalibration_Stat231: 3.00755898e-10 + syst_JES_EtaIntercalibration_Stat232: 1.83250975e-16 syst_JES_EtaIntercalibration_Stat233: 0.0 syst_JES_EtaIntercalibration_Stat234: 0.0 syst_JES_EtaIntercalibration_Stat235: 0.0 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 - syst_JES_EtaIntercalibration_Stat239: 7.35948388136016e-36 + syst_JES_EtaIntercalibration_Stat239: 7.35948388e-36 syst_JES_EtaIntercalibration_Stat24: 0.0 - syst_JES_EtaIntercalibration_Stat240: 8.316441952541964e-36 - syst_JES_EtaIntercalibration_Stat241: 1.0978272849132508e-35 + syst_JES_EtaIntercalibration_Stat240: 8.31644195e-36 + syst_JES_EtaIntercalibration_Stat241: 1.09782728e-35 syst_JES_EtaIntercalibration_Stat242: 0.0 syst_JES_EtaIntercalibration_Stat243: 0.0 syst_JES_EtaIntercalibration_Stat244: 0.0 @@ -2880,12 +2880,12 @@ bins: syst_JES_EtaIntercalibration_Stat28: 0.0 syst_JES_EtaIntercalibration_Stat29: 0.0 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 0.0007317308786022358 - syst_JES_EtaIntercalibration_Stat31: 0.005305156830858066 - syst_JES_EtaIntercalibration_Stat32: 0.0046168077716101635 - syst_JES_EtaIntercalibration_Stat33: 0.005376783866773891 - syst_JES_EtaIntercalibration_Stat34: 0.007278292395026459 - syst_JES_EtaIntercalibration_Stat35: 0.001817485200435137 + syst_JES_EtaIntercalibration_Stat30: 7.31730879e-04 + syst_JES_EtaIntercalibration_Stat31: 5.30515683e-03 + syst_JES_EtaIntercalibration_Stat32: 4.61680777e-03 + syst_JES_EtaIntercalibration_Stat33: 5.37678387e-03 + syst_JES_EtaIntercalibration_Stat34: 7.27829240e-03 + syst_JES_EtaIntercalibration_Stat35: 1.81748520e-03 syst_JES_EtaIntercalibration_Stat36: 0.0 syst_JES_EtaIntercalibration_Stat37: 0.0 syst_JES_EtaIntercalibration_Stat38: 0.0 @@ -2904,215 +2904,215 @@ bins: syst_JES_EtaIntercalibration_Stat5: 0.0 syst_JES_EtaIntercalibration_Stat50: 0.0 syst_JES_EtaIntercalibration_Stat51: 0.0 - syst_JES_EtaIntercalibration_Stat52: 0.0010927048992294304 - syst_JES_EtaIntercalibration_Stat53: 0.008566394340677996 - syst_JES_EtaIntercalibration_Stat54: 0.008020591920176465 - syst_JES_EtaIntercalibration_Stat55: 0.018643678472876533 - syst_JES_EtaIntercalibration_Stat56: 0.0124040259895729 - syst_JES_EtaIntercalibration_Stat57: 0.0023470029292695822 + syst_JES_EtaIntercalibration_Stat52: 1.09270490e-03 + syst_JES_EtaIntercalibration_Stat53: 8.56639434e-03 + syst_JES_EtaIntercalibration_Stat54: 8.02059192e-03 + syst_JES_EtaIntercalibration_Stat55: 1.86436785e-02 + syst_JES_EtaIntercalibration_Stat56: 1.24040260e-02 + syst_JES_EtaIntercalibration_Stat57: 2.34700293e-03 syst_JES_EtaIntercalibration_Stat58: 0.0 syst_JES_EtaIntercalibration_Stat59: 0.0 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 2.1711256872875875e-05 - syst_JES_EtaIntercalibration_Stat62: 2.1711256872875875e-05 + syst_JES_EtaIntercalibration_Stat61: 2.17112569e-05 + syst_JES_EtaIntercalibration_Stat62: 2.17112569e-05 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 0.000664154882162286 - syst_JES_EtaIntercalibration_Stat69: 0.000664154882162286 + syst_JES_EtaIntercalibration_Stat68: 6.64154882e-04 + syst_JES_EtaIntercalibration_Stat69: 6.64154882e-04 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 0.0005670734343980504 - syst_JES_EtaIntercalibration_Stat71: 0.0005670734343980504 + syst_JES_EtaIntercalibration_Stat70: 5.67073434e-04 + syst_JES_EtaIntercalibration_Stat71: 5.67073434e-04 syst_JES_EtaIntercalibration_Stat72: 0.0 syst_JES_EtaIntercalibration_Stat73: 0.0 - syst_JES_EtaIntercalibration_Stat74: 0.00163884863852645 - syst_JES_EtaIntercalibration_Stat75: 0.04927024862937064 - syst_JES_EtaIntercalibration_Stat76: 0.09127602313860964 - syst_JES_EtaIntercalibration_Stat77: 0.10141593218030391 - syst_JES_EtaIntercalibration_Stat78: 0.06870240225057636 - syst_JES_EtaIntercalibration_Stat79: 0.004746060366240615 + syst_JES_EtaIntercalibration_Stat74: 1.63884864e-03 + syst_JES_EtaIntercalibration_Stat75: 4.92702486e-02 + syst_JES_EtaIntercalibration_Stat76: 9.12760231e-02 + syst_JES_EtaIntercalibration_Stat77: 1.01415932e-01 + syst_JES_EtaIntercalibration_Stat78: 6.87024023e-02 + syst_JES_EtaIntercalibration_Stat79: 4.74606037e-03 syst_JES_EtaIntercalibration_Stat8: 0.0 syst_JES_EtaIntercalibration_Stat80: 0.0 syst_JES_EtaIntercalibration_Stat81: 0.0 - syst_JES_EtaIntercalibration_Stat82: 2.1711256872875875e-05 - syst_JES_EtaIntercalibration_Stat83: 2.1711256872875875e-05 - syst_JES_EtaIntercalibration_Stat84: 2.1711256872875875e-05 + syst_JES_EtaIntercalibration_Stat82: 2.17112569e-05 + syst_JES_EtaIntercalibration_Stat83: 2.17112569e-05 + syst_JES_EtaIntercalibration_Stat84: 2.17112569e-05 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 0.000664154882162286 - syst_JES_EtaIntercalibration_Stat9: 0.0033204246577056983 - syst_JES_EtaIntercalibration_Stat90: 0.000664154882162286 - syst_JES_EtaIntercalibration_Stat91: 0.0005670734343980504 - syst_JES_EtaIntercalibration_Stat92: 0.0005670734343980504 + syst_JES_EtaIntercalibration_Stat89: 6.64154882e-04 + syst_JES_EtaIntercalibration_Stat9: 3.32042466e-03 + syst_JES_EtaIntercalibration_Stat90: 6.64154882e-04 + syst_JES_EtaIntercalibration_Stat91: 5.67073434e-04 + syst_JES_EtaIntercalibration_Stat92: 5.67073434e-04 syst_JES_EtaIntercalibration_Stat93: 0.0 syst_JES_EtaIntercalibration_Stat94: 0.0 - syst_JES_EtaIntercalibration_Stat95: 0.003189728671846557 - syst_JES_EtaIntercalibration_Stat96: 0.17363360129882696 - syst_JES_EtaIntercalibration_Stat97: 0.2233289615679077 - syst_JES_EtaIntercalibration_Stat98: 0.2411175387648107 - syst_JES_EtaIntercalibration_Stat99: 0.18185430981970155 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.02480639181743286 - syst_JES_Flavour_Comp: 0.8161804824914647 - syst_JES_Flavour_Response: 20.288205317375905 - syst_JES_Gjet_Generator: 18.09236510244031 - syst_JES_Gjet_OOC: 10.254521965942633 - syst_JES_Gjet_Purity: 3.7381993031404837 - syst_JES_Gjet_Stat1: 1.0119506843221072e-20 - syst_JES_Gjet_Stat10: 0.6822224765426598 - syst_JES_Gjet_Stat11: 0.15527442384372256 - syst_JES_Gjet_Stat12: 0.28697171824937734 - syst_JES_Gjet_Stat13: 0.018059548720829103 - syst_JES_Gjet_Stat14: 0.0003912641788804593 - syst_JES_Gjet_Stat15: 7.983957336434106e-05 - syst_JES_Gjet_Stat2: 0.0329574627664206 - syst_JES_Gjet_Stat3: 0.04592596732786366 - syst_JES_Gjet_Stat4: 0.06515289556113373 - syst_JES_Gjet_Stat5: 0.08924723637177792 - syst_JES_Gjet_Stat6: 0.4218195210039478 - syst_JES_Gjet_Stat7: 0.7929996642496137 - syst_JES_Gjet_Stat8: 0.5610294466425091 - syst_JES_Gjet_Stat9: 0.9647154023337661 - syst_JES_Gjet_Veto: 4.234452355381979 - syst_JES_Gjet_dPhi: 1.512148802201688 - syst_JES_LArESZee: 15.000802478534272 - syst_JES_LArEsmear: 1.3247416833103727 - syst_JES_LAr_JVT: 2.095501073729145 - syst_JES_MJB_Alpha: 0.00078920895046675 - syst_JES_MJB_Asym: 0.03905043757757396 + syst_JES_EtaIntercalibration_Stat95: 3.18972867e-03 + syst_JES_EtaIntercalibration_Stat96: 1.73633601e-01 + syst_JES_EtaIntercalibration_Stat97: 2.23328962e-01 + syst_JES_EtaIntercalibration_Stat98: 2.41117539e-01 + syst_JES_EtaIntercalibration_Stat99: 1.81854310e-01 + syst_JES_EtaIntercalibration_TotalStat_MJB: 2.48063918e-02 + syst_JES_Flavour_Comp: 8.16180482e-01 + syst_JES_Flavour_Response: 2.02882053e+01 + syst_JES_Gjet_Generator: 1.80923651e+01 + syst_JES_Gjet_OOC: 1.02545220e+01 + syst_JES_Gjet_Purity: 3.73819930e+00 + syst_JES_Gjet_Stat1: 1.01195068e-20 + syst_JES_Gjet_Stat10: 6.82222477e-01 + syst_JES_Gjet_Stat11: 1.55274424e-01 + syst_JES_Gjet_Stat12: 2.86971718e-01 + syst_JES_Gjet_Stat13: 1.80595487e-02 + syst_JES_Gjet_Stat14: 3.91264179e-04 + syst_JES_Gjet_Stat15: 7.98395734e-05 + syst_JES_Gjet_Stat2: 3.29574628e-02 + syst_JES_Gjet_Stat3: 4.59259673e-02 + syst_JES_Gjet_Stat4: 6.51528956e-02 + syst_JES_Gjet_Stat5: 8.92472364e-02 + syst_JES_Gjet_Stat6: 4.21819521e-01 + syst_JES_Gjet_Stat7: 7.92999664e-01 + syst_JES_Gjet_Stat8: 5.61029447e-01 + syst_JES_Gjet_Stat9: 9.64715402e-01 + syst_JES_Gjet_Veto: 4.23445236e+00 + syst_JES_Gjet_dPhi: 1.51214880e+00 + syst_JES_LArESZee: 1.50008025e+01 + syst_JES_LArEsmear: 1.32474168e+00 + syst_JES_LAr_JVT: 2.09550107e+00 + syst_JES_MJB_Alpha: 7.89208950e-04 + syst_JES_MJB_Asym: 3.90504376e-02 syst_JES_MJB_Beta: 0.0 - syst_JES_MJB_Fragmentation: 0.028162909562046316 - syst_JES_MJB_Stat1: 0.00996705396544034 - syst_JES_MJB_Stat10: 2.997313922497942e-22 + syst_JES_MJB_Fragmentation: 2.81629096e-02 + syst_JES_MJB_Stat1: 9.96705397e-03 + syst_JES_MJB_Stat10: 2.99731392e-22 syst_JES_MJB_Stat11: 0.0 syst_JES_MJB_Stat12: 0.0 - syst_JES_MJB_Stat13: 1.4474988186523678e-35 - syst_JES_MJB_Stat14: 8.286997088813294e-36 + syst_JES_MJB_Stat13: 1.44749882e-35 + syst_JES_MJB_Stat14: 8.28699709e-36 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 0.002107039807404913 - syst_JES_MJB_Stat3: 0.002758699626635709 - syst_JES_MJB_Stat4: 5.4308460778952614e-05 - syst_JES_MJB_Stat5: 9.487609901304477e-09 - syst_JES_MJB_Stat6: 4.1664482176069347e-10 + syst_JES_MJB_Stat2: 2.10703981e-03 + syst_JES_MJB_Stat3: 2.75869963e-03 + syst_JES_MJB_Stat4: 5.43084608e-05 + syst_JES_MJB_Stat5: 9.48760990e-09 + syst_JES_MJB_Stat6: 4.16644822e-10 syst_JES_MJB_Stat7: 0.0 syst_JES_MJB_Stat8: 0.0 syst_JES_MJB_Stat9: 0.0 - syst_JES_MJB_Threshold: 0.019958316236596715 - syst_JES_Pileup_MuOffset: 2.388410978035397e-07 - syst_JES_Pileup_NPVOffset: 0.8633441998994376 - syst_JES_Pileup_Pt_term: 2.3379786141023615 - syst_JES_Pileup_Rho_topology: 7.291115346776515 - syst_JES_PunchThrough_MC15: 7.488521666494088e-15 + syst_JES_MJB_Threshold: 1.99583162e-02 + syst_JES_Pileup_MuOffset: 2.38841098e-07 + syst_JES_Pileup_NPVOffset: 8.63344200e-01 + syst_JES_Pileup_Pt_term: 2.33797861e+00 + syst_JES_Pileup_Rho_topology: 7.29111535e+00 + syst_JES_PunchThrough_MC15: 7.48852167e-15 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 15.673042940029227 - syst_JES_Zjet_MuScale: 1.1835916979685184 - syst_JES_Zjet_MuSmearID: 0.1466533337500379 - syst_JES_Zjet_MuSmearMS: 1.1832001352264967 - syst_JES_Zjet_OOC: 6.260775091791751 - syst_JES_Zjet_Stat1: 0.06591857458258636 - syst_JES_Zjet_Stat10: 2.466010137854263 - syst_JES_Zjet_Stat11: 1.7345526080231755 - syst_JES_Zjet_Stat12: 0.4810279667545329 - syst_JES_Zjet_Stat13: 0.11852983548457324 + syst_JES_Zjet_MC: 1.56730429e+01 + syst_JES_Zjet_MuScale: 1.18359170e+00 + syst_JES_Zjet_MuSmearID: 1.46653334e-01 + syst_JES_Zjet_MuSmearMS: 1.18320014e+00 + syst_JES_Zjet_OOC: 6.26077509e+00 + syst_JES_Zjet_Stat1: 6.59185746e-02 + syst_JES_Zjet_Stat10: 2.46601014e+00 + syst_JES_Zjet_Stat11: 1.73455261e+00 + syst_JES_Zjet_Stat12: 4.81027967e-01 + syst_JES_Zjet_Stat13: 1.18529835e-01 syst_JES_Zjet_Stat2: 0.0 - syst_JES_Zjet_Stat3: 0.04375160339918984 - syst_JES_Zjet_Stat4: 0.044268219977767344 - syst_JES_Zjet_Stat5: 0.06476217472413971 - syst_JES_Zjet_Stat6: 0.09000637796845289 - syst_JES_Zjet_Stat7: 0.21992932955838337 - syst_JES_Zjet_Stat8: 0.4620277913719044 - syst_JES_Zjet_Stat9: 1.077798362403655 - syst_JES_Zjet_Veto: 1.194906100913373 - syst_JES_Zjet_dPhi: 1.320574173418517 + syst_JES_Zjet_Stat3: 4.37516034e-02 + syst_JES_Zjet_Stat4: 4.42682200e-02 + syst_JES_Zjet_Stat5: 6.47621747e-02 + syst_JES_Zjet_Stat6: 9.00063780e-02 + syst_JES_Zjet_Stat7: 2.19929330e-01 + syst_JES_Zjet_Stat8: 4.62027791e-01 + syst_JES_Zjet_Stat9: 1.07779836e+00 + syst_JES_Zjet_Veto: 1.19490610e+00 + syst_JES_Zjet_dPhi: 1.32057417e+00 syst_PRW: 1.0661 syst_Unfolding_bias: 0.5577 - syst_cleaning: 4.531910938003967 + syst_cleaning: 4.53191094e+00 syst_lumi: 18.16 - stat: 2.628 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 3.922711307246558 - syst_JER_NP1: 0.6483541991072472 - syst_JER_NP2: 0.6438217202766617 - syst_JER_NP3: 0.9396585071184105 - syst_JER_NP4: 1.20628666990894 - syst_JER_NP5: 0.13219317796316118 - syst_JER_NP6: 0.39423367436077805 - syst_JER_NP7: 0.868179213929935 - syst_JER_NP8: 0.6928638610867216 - syst_JES_EtaIntercalibration_Modelling: 0.19313494634581282 + syst_JER_NP0: 3.92271131e+00 + syst_JER_NP1: 6.48354199e-01 + syst_JER_NP2: 6.43821720e-01 + syst_JER_NP3: 9.39658507e-01 + syst_JER_NP4: 1.20628667e+00 + syst_JER_NP5: 1.32193178e-01 + syst_JER_NP6: 3.94233674e-01 + syst_JER_NP7: 8.68179214e-01 + syst_JER_NP8: 6.92863861e-01 + syst_JES_EtaIntercalibration_Modelling: 1.93134946e-01 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 - syst_JES_EtaIntercalibration_Stat10: 0.00012279181436480202 - syst_JES_EtaIntercalibration_Stat100: 0.0036691148905424044 + syst_JES_EtaIntercalibration_Stat10: 1.22791814e-04 + syst_JES_EtaIntercalibration_Stat100: 3.66911489e-03 syst_JES_EtaIntercalibration_Stat101: 0.0 syst_JES_EtaIntercalibration_Stat102: 0.0 - syst_JES_EtaIntercalibration_Stat103: 1.8506962878873455e-06 - syst_JES_EtaIntercalibration_Stat104: 1.8506962878873455e-06 - syst_JES_EtaIntercalibration_Stat105: 1.8506962878873455e-06 + syst_JES_EtaIntercalibration_Stat103: 1.85069629e-06 + syst_JES_EtaIntercalibration_Stat104: 1.85069629e-06 + syst_JES_EtaIntercalibration_Stat105: 1.85069629e-06 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 7.989950375315231e-05 - syst_JES_EtaIntercalibration_Stat11: 0.0006650209075660704 - syst_JES_EtaIntercalibration_Stat110: 7.880130983682949e-05 - syst_JES_EtaIntercalibration_Stat111: 6.478736045711385e-05 - syst_JES_EtaIntercalibration_Stat112: 6.478736045711385e-05 + syst_JES_EtaIntercalibration_Stat109: 7.98995038e-05 + syst_JES_EtaIntercalibration_Stat11: 6.65020908e-04 + syst_JES_EtaIntercalibration_Stat110: 7.88013098e-05 + syst_JES_EtaIntercalibration_Stat111: 6.47873605e-05 + syst_JES_EtaIntercalibration_Stat112: 6.47873605e-05 syst_JES_EtaIntercalibration_Stat113: 0.0 - syst_JES_EtaIntercalibration_Stat114: 9.369528843543842e-05 - syst_JES_EtaIntercalibration_Stat115: 0.006102162403607429 - syst_JES_EtaIntercalibration_Stat116: 0.42521585988765753 - syst_JES_EtaIntercalibration_Stat117: 0.5189356318465711 - syst_JES_EtaIntercalibration_Stat118: 0.4762010289783087 - syst_JES_EtaIntercalibration_Stat119: 0.3468777702592082 - syst_JES_EtaIntercalibration_Stat12: 0.0005647801408512874 - syst_JES_EtaIntercalibration_Stat120: 0.010453223940488407 - syst_JES_EtaIntercalibration_Stat121: 0.0003960334171506238 + syst_JES_EtaIntercalibration_Stat114: 9.36952884e-05 + syst_JES_EtaIntercalibration_Stat115: 6.10216240e-03 + syst_JES_EtaIntercalibration_Stat116: 4.25215860e-01 + syst_JES_EtaIntercalibration_Stat117: 5.18935632e-01 + syst_JES_EtaIntercalibration_Stat118: 4.76201029e-01 + syst_JES_EtaIntercalibration_Stat119: 3.46877770e-01 + syst_JES_EtaIntercalibration_Stat12: 5.64780141e-04 + syst_JES_EtaIntercalibration_Stat120: 1.04532239e-02 + syst_JES_EtaIntercalibration_Stat121: 3.96033417e-04 syst_JES_EtaIntercalibration_Stat122: 0.0 - syst_JES_EtaIntercalibration_Stat123: 1.8506962878873455e-06 - syst_JES_EtaIntercalibration_Stat124: 1.8506962878873455e-06 - syst_JES_EtaIntercalibration_Stat125: 1.8506962878873455e-06 + syst_JES_EtaIntercalibration_Stat123: 1.85069629e-06 + syst_JES_EtaIntercalibration_Stat124: 1.85069629e-06 + syst_JES_EtaIntercalibration_Stat125: 1.85069629e-06 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 7.989950375315231e-05 - syst_JES_EtaIntercalibration_Stat129: 7.880130983682949e-05 + syst_JES_EtaIntercalibration_Stat128: 7.98995038e-05 + syst_JES_EtaIntercalibration_Stat129: 7.88013098e-05 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 3.5022067329042695e-06 + syst_JES_EtaIntercalibration_Stat130: 3.50220673e-06 syst_JES_EtaIntercalibration_Stat131: 0.0 syst_JES_EtaIntercalibration_Stat132: 0.0 - syst_JES_EtaIntercalibration_Stat133: 9.369528843543842e-05 - syst_JES_EtaIntercalibration_Stat134: 0.0336956312153371 - syst_JES_EtaIntercalibration_Stat135: 1.1690369882942115 - syst_JES_EtaIntercalibration_Stat136: 1.9990284515233894 - syst_JES_EtaIntercalibration_Stat137: 1.8364729782929015 - syst_JES_EtaIntercalibration_Stat138: 1.211186883804477 - syst_JES_EtaIntercalibration_Stat139: 0.009425874322841357 + syst_JES_EtaIntercalibration_Stat133: 9.36952884e-05 + syst_JES_EtaIntercalibration_Stat134: 3.36956312e-02 + syst_JES_EtaIntercalibration_Stat135: 1.16903699e+00 + syst_JES_EtaIntercalibration_Stat136: 1.99902845e+00 + syst_JES_EtaIntercalibration_Stat137: 1.83647298e+00 + syst_JES_EtaIntercalibration_Stat138: 1.21118688e+00 + syst_JES_EtaIntercalibration_Stat139: 9.42587432e-03 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 0.0003960334171506238 + syst_JES_EtaIntercalibration_Stat140: 3.96033417e-04 syst_JES_EtaIntercalibration_Stat141: 0.0 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 1.8506962878873455e-06 - syst_JES_EtaIntercalibration_Stat144: 1.8506962878873455e-06 + syst_JES_EtaIntercalibration_Stat143: 1.85069629e-06 + syst_JES_EtaIntercalibration_Stat144: 1.85069629e-06 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 3.5022067329042695e-06 - syst_JES_EtaIntercalibration_Stat148: 3.5022067329042695e-06 + syst_JES_EtaIntercalibration_Stat147: 3.50220673e-06 + syst_JES_EtaIntercalibration_Stat148: 3.50220673e-06 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 syst_JES_EtaIntercalibration_Stat150: 0.0 syst_JES_EtaIntercalibration_Stat151: 0.0 - syst_JES_EtaIntercalibration_Stat152: 0.0016017203150050887 - syst_JES_EtaIntercalibration_Stat153: 0.49460891621562986 - syst_JES_EtaIntercalibration_Stat154: 0.7552575785783284 - syst_JES_EtaIntercalibration_Stat155: 0.6573376358462978 - syst_JES_EtaIntercalibration_Stat156: 0.38412189146155157 - syst_JES_EtaIntercalibration_Stat157: 0.013992056201645274 + syst_JES_EtaIntercalibration_Stat152: 1.60172032e-03 + syst_JES_EtaIntercalibration_Stat153: 4.94608916e-01 + syst_JES_EtaIntercalibration_Stat154: 7.55257579e-01 + syst_JES_EtaIntercalibration_Stat155: 6.57337636e-01 + syst_JES_EtaIntercalibration_Stat156: 3.84121891e-01 + syst_JES_EtaIntercalibration_Stat157: 1.39920562e-02 syst_JES_EtaIntercalibration_Stat158: 0.0 syst_JES_EtaIntercalibration_Stat159: 0.0 syst_JES_EtaIntercalibration_Stat16: 0.0 @@ -3121,18 +3121,18 @@ bins: syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 3.5022067329042695e-06 + syst_JES_EtaIntercalibration_Stat165: 3.50220673e-06 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 0.004559678798994509 - syst_JES_EtaIntercalibration_Stat171: 0.06000994480084114 - syst_JES_EtaIntercalibration_Stat172: 0.10909209538275448 - syst_JES_EtaIntercalibration_Stat173: 0.1054370674857756 - syst_JES_EtaIntercalibration_Stat174: 0.04442140262024602 - syst_JES_EtaIntercalibration_Stat175: 0.0088360790371069 + syst_JES_EtaIntercalibration_Stat170: 4.55967880e-03 + syst_JES_EtaIntercalibration_Stat171: 6.00099448e-02 + syst_JES_EtaIntercalibration_Stat172: 1.09092095e-01 + syst_JES_EtaIntercalibration_Stat173: 1.05437067e-01 + syst_JES_EtaIntercalibration_Stat174: 4.44214026e-02 + syst_JES_EtaIntercalibration_Stat175: 8.83607904e-03 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 syst_JES_EtaIntercalibration_Stat178: 0.0 @@ -3145,14 +3145,14 @@ bins: syst_JES_EtaIntercalibration_Stat184: 0.0 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 - syst_JES_EtaIntercalibration_Stat187: 0.0009910794720909117 - syst_JES_EtaIntercalibration_Stat188: 0.09584621588774384 - syst_JES_EtaIntercalibration_Stat189: 0.13782455759043816 + syst_JES_EtaIntercalibration_Stat187: 9.91079472e-04 + syst_JES_EtaIntercalibration_Stat188: 9.58462159e-02 + syst_JES_EtaIntercalibration_Stat189: 1.37824558e-01 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 0.16004036990709564 - syst_JES_EtaIntercalibration_Stat191: 0.0977782096123671 - syst_JES_EtaIntercalibration_Stat192: 0.003934705325688317 - syst_JES_EtaIntercalibration_Stat193: 6.168698951156556e-12 + syst_JES_EtaIntercalibration_Stat190: 1.60040370e-01 + syst_JES_EtaIntercalibration_Stat191: 9.77782096e-02 + syst_JES_EtaIntercalibration_Stat192: 3.93470533e-03 + syst_JES_EtaIntercalibration_Stat193: 6.16869895e-12 syst_JES_EtaIntercalibration_Stat194: 0.0 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 @@ -3163,13 +3163,13 @@ bins: syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 syst_JES_EtaIntercalibration_Stat201: 0.0 - syst_JES_EtaIntercalibration_Stat202: 0.0004280240968683889 - syst_JES_EtaIntercalibration_Stat203: 0.013603187126552367 - syst_JES_EtaIntercalibration_Stat204: 0.021542369878915366 - syst_JES_EtaIntercalibration_Stat205: 0.01756415099001372 - syst_JES_EtaIntercalibration_Stat206: 0.013404189895327505 - syst_JES_EtaIntercalibration_Stat207: 4.495238008159301e-05 - syst_JES_EtaIntercalibration_Stat208: 6.168698951156556e-12 + syst_JES_EtaIntercalibration_Stat202: 4.28024097e-04 + syst_JES_EtaIntercalibration_Stat203: 1.36031871e-02 + syst_JES_EtaIntercalibration_Stat204: 2.15423699e-02 + syst_JES_EtaIntercalibration_Stat205: 1.75641510e-02 + syst_JES_EtaIntercalibration_Stat206: 1.34041899e-02 + syst_JES_EtaIntercalibration_Stat207: 4.49523801e-05 + syst_JES_EtaIntercalibration_Stat208: 6.16869895e-12 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 @@ -3177,37 +3177,37 @@ bins: syst_JES_EtaIntercalibration_Stat212: 0.0 syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 - syst_JES_EtaIntercalibration_Stat215: 7.486789012962986e-09 - syst_JES_EtaIntercalibration_Stat216: 8.738888716535988e-05 - syst_JES_EtaIntercalibration_Stat217: 0.00013178829860044478 - syst_JES_EtaIntercalibration_Stat218: 6.371723000884454e-05 - syst_JES_EtaIntercalibration_Stat219: 4.035900997689612e-05 + syst_JES_EtaIntercalibration_Stat215: 7.48678901e-09 + syst_JES_EtaIntercalibration_Stat216: 8.73888872e-05 + syst_JES_EtaIntercalibration_Stat217: 1.31788299e-04 + syst_JES_EtaIntercalibration_Stat218: 6.37172300e-05 + syst_JES_EtaIntercalibration_Stat219: 4.03590100e-05 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 1.0803646085928584e-11 + syst_JES_EtaIntercalibration_Stat220: 1.08036461e-11 syst_JES_EtaIntercalibration_Stat221: 0.0 syst_JES_EtaIntercalibration_Stat222: 0.0 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 - syst_JES_EtaIntercalibration_Stat227: 1.3813105190361785e-25 - syst_JES_EtaIntercalibration_Stat228: 5.522307915416795e-10 - syst_JES_EtaIntercalibration_Stat229: 1.0087899025565234e-09 + syst_JES_EtaIntercalibration_Stat227: 1.38131052e-25 + syst_JES_EtaIntercalibration_Stat228: 5.52230792e-10 + syst_JES_EtaIntercalibration_Stat229: 1.00878990e-09 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 7.327915644852566e-08 - syst_JES_EtaIntercalibration_Stat231: 8.234064655442049e-08 - syst_JES_EtaIntercalibration_Stat232: 6.129727807986257e-12 + syst_JES_EtaIntercalibration_Stat230: 7.32791564e-08 + syst_JES_EtaIntercalibration_Stat231: 8.23406466e-08 + syst_JES_EtaIntercalibration_Stat232: 6.12972781e-12 syst_JES_EtaIntercalibration_Stat233: 0.0 syst_JES_EtaIntercalibration_Stat234: 0.0 syst_JES_EtaIntercalibration_Stat235: 0.0 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 - syst_JES_EtaIntercalibration_Stat239: 1.3908367168982347e-26 + syst_JES_EtaIntercalibration_Stat239: 1.39083672e-26 syst_JES_EtaIntercalibration_Stat24: 0.0 - syst_JES_EtaIntercalibration_Stat240: 1.571835989656324e-26 - syst_JES_EtaIntercalibration_Stat241: 2.0742147309283096e-26 - syst_JES_EtaIntercalibration_Stat242: 2.5322583521705377e-33 + syst_JES_EtaIntercalibration_Stat240: 1.57183599e-26 + syst_JES_EtaIntercalibration_Stat241: 2.07421473e-26 + syst_JES_EtaIntercalibration_Stat242: 2.53225835e-33 syst_JES_EtaIntercalibration_Stat243: 0.0 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 @@ -3217,12 +3217,12 @@ bins: syst_JES_EtaIntercalibration_Stat28: 0.0 syst_JES_EtaIntercalibration_Stat29: 0.0 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 9.073938289408849e-05 - syst_JES_EtaIntercalibration_Stat31: 0.0035696807630375017 - syst_JES_EtaIntercalibration_Stat32: 0.0004510721497720736 - syst_JES_EtaIntercalibration_Stat33: 0.004599110369136623 - syst_JES_EtaIntercalibration_Stat34: 0.005416521672907347 - syst_JES_EtaIntercalibration_Stat35: 0.00038446850441730085 + syst_JES_EtaIntercalibration_Stat30: 9.07393829e-05 + syst_JES_EtaIntercalibration_Stat31: 3.56968076e-03 + syst_JES_EtaIntercalibration_Stat32: 4.51072150e-04 + syst_JES_EtaIntercalibration_Stat33: 4.59911037e-03 + syst_JES_EtaIntercalibration_Stat34: 5.41652167e-03 + syst_JES_EtaIntercalibration_Stat35: 3.84468504e-04 syst_JES_EtaIntercalibration_Stat36: 0.0 syst_JES_EtaIntercalibration_Stat37: 0.0 syst_JES_EtaIntercalibration_Stat38: 0.0 @@ -3241,215 +3241,215 @@ bins: syst_JES_EtaIntercalibration_Stat5: 0.0 syst_JES_EtaIntercalibration_Stat50: 0.0 syst_JES_EtaIntercalibration_Stat51: 0.0 - syst_JES_EtaIntercalibration_Stat52: 1.1111005388802581e-05 - syst_JES_EtaIntercalibration_Stat53: 0.0022431644879500035 - syst_JES_EtaIntercalibration_Stat54: 0.0010137151400664785 - syst_JES_EtaIntercalibration_Stat55: 0.005312738182895897 - syst_JES_EtaIntercalibration_Stat56: 0.006385955057781099 - syst_JES_EtaIntercalibration_Stat57: 0.0006286990615548906 + syst_JES_EtaIntercalibration_Stat52: 1.11110054e-05 + syst_JES_EtaIntercalibration_Stat53: 2.24316449e-03 + syst_JES_EtaIntercalibration_Stat54: 1.01371514e-03 + syst_JES_EtaIntercalibration_Stat55: 5.31273818e-03 + syst_JES_EtaIntercalibration_Stat56: 6.38595506e-03 + syst_JES_EtaIntercalibration_Stat57: 6.28699062e-04 syst_JES_EtaIntercalibration_Stat58: 0.0 syst_JES_EtaIntercalibration_Stat59: 0.0 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 1.8506962878873455e-06 - syst_JES_EtaIntercalibration_Stat62: 1.8506962878873455e-06 + syst_JES_EtaIntercalibration_Stat61: 1.85069629e-06 + syst_JES_EtaIntercalibration_Stat62: 1.85069629e-06 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 7.989950375315231e-05 - syst_JES_EtaIntercalibration_Stat69: 7.989950375315231e-05 + syst_JES_EtaIntercalibration_Stat68: 7.98995038e-05 + syst_JES_EtaIntercalibration_Stat69: 7.98995038e-05 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 6.478736045711385e-05 - syst_JES_EtaIntercalibration_Stat71: 6.478736045711385e-05 + syst_JES_EtaIntercalibration_Stat70: 6.47873605e-05 + syst_JES_EtaIntercalibration_Stat71: 6.47873605e-05 syst_JES_EtaIntercalibration_Stat72: 0.0 syst_JES_EtaIntercalibration_Stat73: 0.0 - syst_JES_EtaIntercalibration_Stat74: 0.0015218078820928745 - syst_JES_EtaIntercalibration_Stat75: 0.004961725780411489 - syst_JES_EtaIntercalibration_Stat76: 0.016930495415078673 - syst_JES_EtaIntercalibration_Stat77: 0.037952277823603685 - syst_JES_EtaIntercalibration_Stat78: 0.021719007228692567 - syst_JES_EtaIntercalibration_Stat79: 0.0004804597459725424 + syst_JES_EtaIntercalibration_Stat74: 1.52180788e-03 + syst_JES_EtaIntercalibration_Stat75: 4.96172578e-03 + syst_JES_EtaIntercalibration_Stat76: 1.69304954e-02 + syst_JES_EtaIntercalibration_Stat77: 3.79522778e-02 + syst_JES_EtaIntercalibration_Stat78: 2.17190072e-02 + syst_JES_EtaIntercalibration_Stat79: 4.80459746e-04 syst_JES_EtaIntercalibration_Stat8: 0.0 syst_JES_EtaIntercalibration_Stat80: 0.0 syst_JES_EtaIntercalibration_Stat81: 0.0 - syst_JES_EtaIntercalibration_Stat82: 1.8506962878873455e-06 - syst_JES_EtaIntercalibration_Stat83: 1.8506962878873455e-06 - syst_JES_EtaIntercalibration_Stat84: 1.8506962878873455e-06 + syst_JES_EtaIntercalibration_Stat82: 1.85069629e-06 + syst_JES_EtaIntercalibration_Stat83: 1.85069629e-06 + syst_JES_EtaIntercalibration_Stat84: 1.85069629e-06 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 7.989950375315231e-05 - syst_JES_EtaIntercalibration_Stat9: 0.0021986821325512243 - syst_JES_EtaIntercalibration_Stat90: 7.989950375315231e-05 - syst_JES_EtaIntercalibration_Stat91: 6.478736045711385e-05 - syst_JES_EtaIntercalibration_Stat92: 6.478736045711385e-05 + syst_JES_EtaIntercalibration_Stat89: 7.98995038e-05 + syst_JES_EtaIntercalibration_Stat9: 2.19868213e-03 + syst_JES_EtaIntercalibration_Stat90: 7.98995038e-05 + syst_JES_EtaIntercalibration_Stat91: 6.47873605e-05 + syst_JES_EtaIntercalibration_Stat92: 6.47873605e-05 syst_JES_EtaIntercalibration_Stat93: 0.0 syst_JES_EtaIntercalibration_Stat94: 0.0 - syst_JES_EtaIntercalibration_Stat95: 0.0016016284486421936 - syst_JES_EtaIntercalibration_Stat96: 0.039943115489405684 - syst_JES_EtaIntercalibration_Stat97: 0.05618171232705532 - syst_JES_EtaIntercalibration_Stat98: 0.0610614141663948 - syst_JES_EtaIntercalibration_Stat99: 0.04693698195453134 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.07184886429165042 - syst_JES_Flavour_Comp: 0.40523251930219023 - syst_JES_Flavour_Response: 10.248502951651036 - syst_JES_Gjet_Generator: 9.516088377059138 - syst_JES_Gjet_OOC: 5.591542966838402 - syst_JES_Gjet_Purity: 1.8188504611429714 - syst_JES_Gjet_Stat1: 7.322244788820559e-15 - syst_JES_Gjet_Stat10: 0.5691633750514874 - syst_JES_Gjet_Stat11: 0.1531457501858932 - syst_JES_Gjet_Stat12: 0.13216851695846482 - syst_JES_Gjet_Stat13: 0.05652157353612866 - syst_JES_Gjet_Stat14: 0.003490697020295517 - syst_JES_Gjet_Stat15: 0.0007486346371895974 - syst_JES_Gjet_Stat2: 0.018169212971397522 - syst_JES_Gjet_Stat3: 0.018820762471270923 - syst_JES_Gjet_Stat4: 0.03422780558259615 - syst_JES_Gjet_Stat5: 0.0530172066408633 - syst_JES_Gjet_Stat6: 0.15732630898867486 - syst_JES_Gjet_Stat7: 0.30880858148697876 - syst_JES_Gjet_Stat8: 0.2519244529615972 - syst_JES_Gjet_Stat9: 0.48584053711068614 - syst_JES_Gjet_Veto: 2.297384817569751 - syst_JES_Gjet_dPhi: 0.7177168853385016 - syst_JES_LArESZee: 8.889712860942135 - syst_JES_LArEsmear: 0.7264084525939933 - syst_JES_LAr_JVT: 1.1215753741947083 - syst_JES_MJB_Alpha: 0.00045691493577540307 - syst_JES_MJB_Asym: 0.031603977597764496 - syst_JES_MJB_Beta: 1.7011181616807222e-39 - syst_JES_MJB_Fragmentation: 0.08154300153906527 - syst_JES_MJB_Stat1: 0.017039853520497177 - syst_JES_MJB_Stat10: 2.1685276110762343e-16 - syst_JES_MJB_Stat11: 8.685368774554136e-40 - syst_JES_MJB_Stat12: 7.539617165347323e-40 - syst_JES_MJB_Stat13: 2.735024314334335e-26 - syst_JES_MJB_Stat14: 1.5657738606159075e-26 + syst_JES_EtaIntercalibration_Stat95: 1.60162845e-03 + syst_JES_EtaIntercalibration_Stat96: 3.99431155e-02 + syst_JES_EtaIntercalibration_Stat97: 5.61817123e-02 + syst_JES_EtaIntercalibration_Stat98: 6.10614142e-02 + syst_JES_EtaIntercalibration_Stat99: 4.69369820e-02 + syst_JES_EtaIntercalibration_TotalStat_MJB: 7.18488643e-02 + syst_JES_Flavour_Comp: 4.05232519e-01 + syst_JES_Flavour_Response: 1.02485030e+01 + syst_JES_Gjet_Generator: 9.51608838e+00 + syst_JES_Gjet_OOC: 5.59154297e+00 + syst_JES_Gjet_Purity: 1.81885046e+00 + syst_JES_Gjet_Stat1: 7.32224479e-15 + syst_JES_Gjet_Stat10: 5.69163375e-01 + syst_JES_Gjet_Stat11: 1.53145750e-01 + syst_JES_Gjet_Stat12: 1.32168517e-01 + syst_JES_Gjet_Stat13: 5.65215735e-02 + syst_JES_Gjet_Stat14: 3.49069702e-03 + syst_JES_Gjet_Stat15: 7.48634637e-04 + syst_JES_Gjet_Stat2: 1.81692130e-02 + syst_JES_Gjet_Stat3: 1.88207625e-02 + syst_JES_Gjet_Stat4: 3.42278056e-02 + syst_JES_Gjet_Stat5: 5.30172066e-02 + syst_JES_Gjet_Stat6: 1.57326309e-01 + syst_JES_Gjet_Stat7: 3.08808581e-01 + syst_JES_Gjet_Stat8: 2.51924453e-01 + syst_JES_Gjet_Stat9: 4.85840537e-01 + syst_JES_Gjet_Veto: 2.29738482e+00 + syst_JES_Gjet_dPhi: 7.17716885e-01 + syst_JES_LArESZee: 8.88971286e+00 + syst_JES_LArEsmear: 7.26408453e-01 + syst_JES_LAr_JVT: 1.12157537e+00 + syst_JES_MJB_Alpha: 4.56914936e-04 + syst_JES_MJB_Asym: 3.16039776e-02 + syst_JES_MJB_Beta: 1.70111816e-39 + syst_JES_MJB_Fragmentation: 8.15430015e-02 + syst_JES_MJB_Stat1: 1.70398535e-02 + syst_JES_MJB_Stat10: 2.16852761e-16 + syst_JES_MJB_Stat11: 8.68536877e-40 + syst_JES_MJB_Stat12: 7.53961717e-40 + syst_JES_MJB_Stat13: 2.73502431e-26 + syst_JES_MJB_Stat14: 1.56577386e-26 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 0.017718879673528035 - syst_JES_MJB_Stat3: 0.010293070229528214 - syst_JES_MJB_Stat4: 0.00015763612447409637 - syst_JES_MJB_Stat5: 2.5880297036935263e-06 - syst_JES_MJB_Stat6: 1.1406420593244842e-07 + syst_JES_MJB_Stat2: 1.77188797e-02 + syst_JES_MJB_Stat3: 1.02930702e-02 + syst_JES_MJB_Stat4: 1.57636124e-04 + syst_JES_MJB_Stat5: 2.58802970e-06 + syst_JES_MJB_Stat6: 1.14064206e-07 syst_JES_MJB_Stat7: 0.0 syst_JES_MJB_Stat8: 0.0 syst_JES_MJB_Stat9: 0.0 - syst_JES_MJB_Threshold: 0.03305992589223393 - syst_JES_Pileup_MuOffset: 6.538293412657464e-05 - syst_JES_Pileup_NPVOffset: 0.36633496966574186 - syst_JES_Pileup_Pt_term: 1.234533766245379 - syst_JES_Pileup_Rho_topology: 3.5962180134135364 - syst_JES_PunchThrough_MC15: 2.507143535823971e-10 + syst_JES_MJB_Threshold: 3.30599259e-02 + syst_JES_Pileup_MuOffset: 6.53829341e-05 + syst_JES_Pileup_NPVOffset: 3.66334970e-01 + syst_JES_Pileup_Pt_term: 1.23453377e+00 + syst_JES_Pileup_Rho_topology: 3.59621801e+00 + syst_JES_PunchThrough_MC15: 2.50714354e-10 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 8.478383218515189 - syst_JES_Zjet_MuScale: 0.6145451387001608 - syst_JES_Zjet_MuSmearID: 0.08710289475671862 - syst_JES_Zjet_MuSmearMS: 0.6710099924740316 - syst_JES_Zjet_OOC: 3.091108336826777 - syst_JES_Zjet_Stat1: 0.03355124289799113 - syst_JES_Zjet_Stat10: 1.1706183067080405 - syst_JES_Zjet_Stat11: 1.3192798139515363 - syst_JES_Zjet_Stat12: 0.28252249202629864 - syst_JES_Zjet_Stat13: 0.1207931173535976 + syst_JES_Zjet_MC: 8.47838322e+00 + syst_JES_Zjet_MuScale: 6.14545139e-01 + syst_JES_Zjet_MuSmearID: 8.71028948e-02 + syst_JES_Zjet_MuSmearMS: 6.71009992e-01 + syst_JES_Zjet_OOC: 3.09110834e+00 + syst_JES_Zjet_Stat1: 3.35512429e-02 + syst_JES_Zjet_Stat10: 1.17061831e+00 + syst_JES_Zjet_Stat11: 1.31927981e+00 + syst_JES_Zjet_Stat12: 2.82522492e-01 + syst_JES_Zjet_Stat13: 1.20793117e-01 syst_JES_Zjet_Stat2: 0.0 - syst_JES_Zjet_Stat3: 0.023910961398480753 - syst_JES_Zjet_Stat4: 0.023695659412643493 - syst_JES_Zjet_Stat5: 0.028944315504084737 - syst_JES_Zjet_Stat6: 0.03945184659809982 - syst_JES_Zjet_Stat7: 0.07881776512944273 - syst_JES_Zjet_Stat8: 0.16837484966585717 - syst_JES_Zjet_Stat9: 0.37867773568035396 - syst_JES_Zjet_Veto: 0.6049046598431855 - syst_JES_Zjet_dPhi: 0.606419063024902 + syst_JES_Zjet_Stat3: 2.39109614e-02 + syst_JES_Zjet_Stat4: 2.36956594e-02 + syst_JES_Zjet_Stat5: 2.89443155e-02 + syst_JES_Zjet_Stat6: 3.94518466e-02 + syst_JES_Zjet_Stat7: 7.88177651e-02 + syst_JES_Zjet_Stat8: 1.68374850e-01 + syst_JES_Zjet_Stat9: 3.78677736e-01 + syst_JES_Zjet_Veto: 6.04904660e-01 + syst_JES_Zjet_dPhi: 6.06419063e-01 syst_PRW: 0.007999 syst_Unfolding_bias: 0.1447 - syst_cleaning: 2.513205721782441 + syst_cleaning: 2.51320572e+00 syst_lumi: 10.114 - stat: 1.6409 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 1.6581347200996666 - syst_JER_NP1: 0.2709982287764996 - syst_JER_NP2: 0.18846550745428192 - syst_JER_NP3: 0.44863535156628037 - syst_JER_NP4: 0.3981708159822867 - syst_JER_NP5: 0.07927210543438341 - syst_JER_NP6: 0.18907788739035564 - syst_JER_NP7: 0.45457122288481927 - syst_JER_NP8: 0.3548073453298282 - syst_JES_EtaIntercalibration_Modelling: 0.15286287973213117 + syst_JER_NP0: 1.65813472e+00 + syst_JER_NP1: 2.70998229e-01 + syst_JER_NP2: 1.88465507e-01 + syst_JER_NP3: 4.48635352e-01 + syst_JER_NP4: 3.98170816e-01 + syst_JER_NP5: 7.92721054e-02 + syst_JER_NP6: 1.89077887e-01 + syst_JER_NP7: 4.54571223e-01 + syst_JER_NP8: 3.54807345e-01 + syst_JES_EtaIntercalibration_Modelling: 1.52862880e-01 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 - syst_JES_EtaIntercalibration_Stat10: 0.00012161295634923114 - syst_JES_EtaIntercalibration_Stat100: 0.0010996826496767146 + syst_JES_EtaIntercalibration_Stat10: 1.21612956e-04 + syst_JES_EtaIntercalibration_Stat100: 1.09968265e-03 syst_JES_EtaIntercalibration_Stat101: 0.0 syst_JES_EtaIntercalibration_Stat102: 0.0 - syst_JES_EtaIntercalibration_Stat103: 1.4895636945092346e-07 - syst_JES_EtaIntercalibration_Stat104: 1.4895636945092346e-07 - syst_JES_EtaIntercalibration_Stat105: 1.4895636945092346e-07 + syst_JES_EtaIntercalibration_Stat103: 1.48956369e-07 + syst_JES_EtaIntercalibration_Stat104: 1.48956369e-07 + syst_JES_EtaIntercalibration_Stat105: 1.48956369e-07 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 7.947515130529794e-06 - syst_JES_EtaIntercalibration_Stat11: 0.0012323541495852562 - syst_JES_EtaIntercalibration_Stat110: 7.85682175437371e-06 - syst_JES_EtaIntercalibration_Stat111: 6.285612380667456e-06 - syst_JES_EtaIntercalibration_Stat112: 6.285612380667456e-06 + syst_JES_EtaIntercalibration_Stat109: 7.94751513e-06 + syst_JES_EtaIntercalibration_Stat11: 1.23235415e-03 + syst_JES_EtaIntercalibration_Stat110: 7.85682175e-06 + syst_JES_EtaIntercalibration_Stat111: 6.28561238e-06 + syst_JES_EtaIntercalibration_Stat112: 6.28561238e-06 syst_JES_EtaIntercalibration_Stat113: 0.0 - syst_JES_EtaIntercalibration_Stat114: 9.437944850442812e-06 - syst_JES_EtaIntercalibration_Stat115: 0.0033358845404929706 - syst_JES_EtaIntercalibration_Stat116: 0.15105672676183604 - syst_JES_EtaIntercalibration_Stat117: 0.14314601592430018 - syst_JES_EtaIntercalibration_Stat118: 0.13921801131678332 - syst_JES_EtaIntercalibration_Stat119: 0.10348156393773725 - syst_JES_EtaIntercalibration_Stat12: 0.001100570417011106 - syst_JES_EtaIntercalibration_Stat120: 0.003917570261016386 - syst_JES_EtaIntercalibration_Stat121: 5.5434286096241924e-05 + syst_JES_EtaIntercalibration_Stat114: 9.43794485e-06 + syst_JES_EtaIntercalibration_Stat115: 3.33588454e-03 + syst_JES_EtaIntercalibration_Stat116: 1.51056727e-01 + syst_JES_EtaIntercalibration_Stat117: 1.43146016e-01 + syst_JES_EtaIntercalibration_Stat118: 1.39218011e-01 + syst_JES_EtaIntercalibration_Stat119: 1.03481564e-01 + syst_JES_EtaIntercalibration_Stat12: 1.10057042e-03 + syst_JES_EtaIntercalibration_Stat120: 3.91757026e-03 + syst_JES_EtaIntercalibration_Stat121: 5.54342861e-05 syst_JES_EtaIntercalibration_Stat122: 0.0 - syst_JES_EtaIntercalibration_Stat123: 1.4895636945092346e-07 - syst_JES_EtaIntercalibration_Stat124: 1.4895636945092346e-07 - syst_JES_EtaIntercalibration_Stat125: 1.4895636945092346e-07 + syst_JES_EtaIntercalibration_Stat123: 1.48956369e-07 + syst_JES_EtaIntercalibration_Stat124: 1.48956369e-07 + syst_JES_EtaIntercalibration_Stat125: 1.48956369e-07 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 7.947515130529794e-06 - syst_JES_EtaIntercalibration_Stat129: 7.85682175437371e-06 + syst_JES_EtaIntercalibration_Stat128: 7.94751513e-06 + syst_JES_EtaIntercalibration_Stat129: 7.85682175e-06 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 2.8596158832962164e-07 + syst_JES_EtaIntercalibration_Stat130: 2.85961588e-07 syst_JES_EtaIntercalibration_Stat131: 0.0 syst_JES_EtaIntercalibration_Stat132: 0.0 - syst_JES_EtaIntercalibration_Stat133: 9.437944850442812e-06 - syst_JES_EtaIntercalibration_Stat134: 0.015218551935056107 - syst_JES_EtaIntercalibration_Stat135: 0.45205080190173313 - syst_JES_EtaIntercalibration_Stat136: 0.7811030853863016 - syst_JES_EtaIntercalibration_Stat137: 0.7429526700941318 - syst_JES_EtaIntercalibration_Stat138: 0.49948837824317793 - syst_JES_EtaIntercalibration_Stat139: 0.002884131758432683 + syst_JES_EtaIntercalibration_Stat133: 9.43794485e-06 + syst_JES_EtaIntercalibration_Stat134: 1.52185519e-02 + syst_JES_EtaIntercalibration_Stat135: 4.52050802e-01 + syst_JES_EtaIntercalibration_Stat136: 7.81103085e-01 + syst_JES_EtaIntercalibration_Stat137: 7.42952670e-01 + syst_JES_EtaIntercalibration_Stat138: 4.99488378e-01 + syst_JES_EtaIntercalibration_Stat139: 2.88413176e-03 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 5.5434286096241924e-05 + syst_JES_EtaIntercalibration_Stat140: 5.54342861e-05 syst_JES_EtaIntercalibration_Stat141: 0.0 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 1.4895636945092346e-07 - syst_JES_EtaIntercalibration_Stat144: 1.4895636945092346e-07 + syst_JES_EtaIntercalibration_Stat143: 1.48956369e-07 + syst_JES_EtaIntercalibration_Stat144: 1.48956369e-07 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 2.8596158832962164e-07 - syst_JES_EtaIntercalibration_Stat148: 2.8596158832962164e-07 + syst_JES_EtaIntercalibration_Stat147: 2.85961588e-07 + syst_JES_EtaIntercalibration_Stat148: 2.85961588e-07 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 syst_JES_EtaIntercalibration_Stat150: 0.0 syst_JES_EtaIntercalibration_Stat151: 0.0 - syst_JES_EtaIntercalibration_Stat152: 0.002572776455018974 - syst_JES_EtaIntercalibration_Stat153: 0.29760013440857175 - syst_JES_EtaIntercalibration_Stat154: 0.4534619498921602 - syst_JES_EtaIntercalibration_Stat155: 0.42165026680888035 - syst_JES_EtaIntercalibration_Stat156: 0.27717754238033065 - syst_JES_EtaIntercalibration_Stat157: 0.006731619196003291 + syst_JES_EtaIntercalibration_Stat152: 2.57277646e-03 + syst_JES_EtaIntercalibration_Stat153: 2.97600134e-01 + syst_JES_EtaIntercalibration_Stat154: 4.53461950e-01 + syst_JES_EtaIntercalibration_Stat155: 4.21650267e-01 + syst_JES_EtaIntercalibration_Stat156: 2.77177542e-01 + syst_JES_EtaIntercalibration_Stat157: 6.73161920e-03 syst_JES_EtaIntercalibration_Stat158: 0.0 syst_JES_EtaIntercalibration_Stat159: 0.0 syst_JES_EtaIntercalibration_Stat16: 0.0 @@ -3458,18 +3458,18 @@ bins: syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 2.8596158832962164e-07 + syst_JES_EtaIntercalibration_Stat165: 2.85961588e-07 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 0.004567007198374008 - syst_JES_EtaIntercalibration_Stat171: 0.09699900360312985 - syst_JES_EtaIntercalibration_Stat172: 0.11902825578407844 - syst_JES_EtaIntercalibration_Stat173: 0.15374643898315177 - syst_JES_EtaIntercalibration_Stat174: 0.09472395512751776 - syst_JES_EtaIntercalibration_Stat175: 0.007581116540457612 + syst_JES_EtaIntercalibration_Stat170: 4.56700720e-03 + syst_JES_EtaIntercalibration_Stat171: 9.69990036e-02 + syst_JES_EtaIntercalibration_Stat172: 1.19028256e-01 + syst_JES_EtaIntercalibration_Stat173: 1.53746439e-01 + syst_JES_EtaIntercalibration_Stat174: 9.47239551e-02 + syst_JES_EtaIntercalibration_Stat175: 7.58111654e-03 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 syst_JES_EtaIntercalibration_Stat178: 0.0 @@ -3482,14 +3482,14 @@ bins: syst_JES_EtaIntercalibration_Stat184: 0.0 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 - syst_JES_EtaIntercalibration_Stat187: 0.0006116737426929502 - syst_JES_EtaIntercalibration_Stat188: 0.06783560041010915 - syst_JES_EtaIntercalibration_Stat189: 0.10282677022546222 + syst_JES_EtaIntercalibration_Stat187: 6.11673743e-04 + syst_JES_EtaIntercalibration_Stat188: 6.78356004e-02 + syst_JES_EtaIntercalibration_Stat189: 1.02826770e-01 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 0.12281947433123137 - syst_JES_EtaIntercalibration_Stat191: 0.06053596699483705 - syst_JES_EtaIntercalibration_Stat192: 0.00215211933451656 - syst_JES_EtaIntercalibration_Stat193: 6.1981438148852274e-09 + syst_JES_EtaIntercalibration_Stat190: 1.22819474e-01 + syst_JES_EtaIntercalibration_Stat191: 6.05359670e-02 + syst_JES_EtaIntercalibration_Stat192: 2.15211933e-03 + syst_JES_EtaIntercalibration_Stat193: 6.19814381e-09 syst_JES_EtaIntercalibration_Stat194: 0.0 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 @@ -3500,13 +3500,13 @@ bins: syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 syst_JES_EtaIntercalibration_Stat201: 0.0 - syst_JES_EtaIntercalibration_Stat202: 0.0007911638136315387 - syst_JES_EtaIntercalibration_Stat203: 0.019199070289990607 - syst_JES_EtaIntercalibration_Stat204: 0.028818105420030656 - syst_JES_EtaIntercalibration_Stat205: 0.026351783146496936 - syst_JES_EtaIntercalibration_Stat206: 0.018714814319143007 - syst_JES_EtaIntercalibration_Stat207: 0.0002551978203276822 - syst_JES_EtaIntercalibration_Stat208: 6.1981438148852274e-09 + syst_JES_EtaIntercalibration_Stat202: 7.91163814e-04 + syst_JES_EtaIntercalibration_Stat203: 1.91990703e-02 + syst_JES_EtaIntercalibration_Stat204: 2.88181054e-02 + syst_JES_EtaIntercalibration_Stat205: 2.63517831e-02 + syst_JES_EtaIntercalibration_Stat206: 1.87148143e-02 + syst_JES_EtaIntercalibration_Stat207: 2.55197820e-04 + syst_JES_EtaIntercalibration_Stat208: 6.19814381e-09 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 @@ -3514,37 +3514,37 @@ bins: syst_JES_EtaIntercalibration_Stat212: 0.0 syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 - syst_JES_EtaIntercalibration_Stat215: 1.0682361003307836e-06 - syst_JES_EtaIntercalibration_Stat216: 0.000532163708646127 - syst_JES_EtaIntercalibration_Stat217: 0.0003508031178595766 - syst_JES_EtaIntercalibration_Stat218: 0.00024128540170304544 - syst_JES_EtaIntercalibration_Stat219: 2.49559877935136e-05 + syst_JES_EtaIntercalibration_Stat215: 1.06823610e-06 + syst_JES_EtaIntercalibration_Stat216: 5.32163709e-04 + syst_JES_EtaIntercalibration_Stat217: 3.50803118e-04 + syst_JES_EtaIntercalibration_Stat218: 2.41285402e-04 + syst_JES_EtaIntercalibration_Stat219: 2.49559878e-05 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 1.091678637466173e-08 + syst_JES_EtaIntercalibration_Stat220: 1.09167864e-08 syst_JES_EtaIntercalibration_Stat221: 0.0 syst_JES_EtaIntercalibration_Stat222: 0.0 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 - syst_JES_EtaIntercalibration_Stat227: 5.723561893594022e-19 - syst_JES_EtaIntercalibration_Stat228: 8.197843964573856e-08 - syst_JES_EtaIntercalibration_Stat229: 1.5028779158667544e-07 + syst_JES_EtaIntercalibration_Stat227: 5.72356189e-19 + syst_JES_EtaIntercalibration_Stat228: 8.19784396e-08 + syst_JES_EtaIntercalibration_Stat229: 1.50287792e-07 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 1.996328773198443e-06 - syst_JES_EtaIntercalibration_Stat231: 2.281193328063187e-06 - syst_JES_EtaIntercalibration_Stat232: 6.159172671714928e-09 + syst_JES_EtaIntercalibration_Stat230: 1.99632877e-06 + syst_JES_EtaIntercalibration_Stat231: 2.28119333e-06 + syst_JES_EtaIntercalibration_Stat232: 6.15917267e-09 syst_JES_EtaIntercalibration_Stat233: 0.0 syst_JES_EtaIntercalibration_Stat234: 0.0 syst_JES_EtaIntercalibration_Stat235: 0.0 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 - syst_JES_EtaIntercalibration_Stat239: 5.760786289672953e-20 + syst_JES_EtaIntercalibration_Stat239: 5.76078629e-20 syst_JES_EtaIntercalibration_Stat24: 0.0 - syst_JES_EtaIntercalibration_Stat240: 6.510757690365346e-20 - syst_JES_EtaIntercalibration_Stat241: 8.593460929683686e-20 - syst_JES_EtaIntercalibration_Stat242: 4.561365951640711e-25 + syst_JES_EtaIntercalibration_Stat240: 6.51075769e-20 + syst_JES_EtaIntercalibration_Stat241: 8.59346093e-20 + syst_JES_EtaIntercalibration_Stat242: 4.56136595e-25 syst_JES_EtaIntercalibration_Stat243: 0.0 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 @@ -3554,12 +3554,12 @@ bins: syst_JES_EtaIntercalibration_Stat28: 0.0 syst_JES_EtaIntercalibration_Stat29: 0.0 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 9.153294412805697e-06 - syst_JES_EtaIntercalibration_Stat31: 0.002537580516949167 - syst_JES_EtaIntercalibration_Stat32: 0.001409579583705723 - syst_JES_EtaIntercalibration_Stat33: 0.0030182747219023986 - syst_JES_EtaIntercalibration_Stat34: 0.003111693884365877 - syst_JES_EtaIntercalibration_Stat35: 5.419876002317834e-05 + syst_JES_EtaIntercalibration_Stat30: 9.15329441e-06 + syst_JES_EtaIntercalibration_Stat31: 2.53758052e-03 + syst_JES_EtaIntercalibration_Stat32: 1.40957958e-03 + syst_JES_EtaIntercalibration_Stat33: 3.01827472e-03 + syst_JES_EtaIntercalibration_Stat34: 3.11169388e-03 + syst_JES_EtaIntercalibration_Stat35: 5.41987600e-05 syst_JES_EtaIntercalibration_Stat36: 0.0 syst_JES_EtaIntercalibration_Stat37: 0.0 syst_JES_EtaIntercalibration_Stat38: 0.0 @@ -3578,215 +3578,215 @@ bins: syst_JES_EtaIntercalibration_Stat5: 0.0 syst_JES_EtaIntercalibration_Stat50: 0.0 syst_JES_EtaIntercalibration_Stat51: 0.0 - syst_JES_EtaIntercalibration_Stat52: 1.9179143800493283e-05 - syst_JES_EtaIntercalibration_Stat53: 0.0006446642614570782 - syst_JES_EtaIntercalibration_Stat54: 0.0019444480759331169 - syst_JES_EtaIntercalibration_Stat55: 0.0025542927533859544 - syst_JES_EtaIntercalibration_Stat56: 0.0028107591056509983 - syst_JES_EtaIntercalibration_Stat57: 0.00013525881514710972 + syst_JES_EtaIntercalibration_Stat52: 1.91791438e-05 + syst_JES_EtaIntercalibration_Stat53: 6.44664261e-04 + syst_JES_EtaIntercalibration_Stat54: 1.94444808e-03 + syst_JES_EtaIntercalibration_Stat55: 2.55429275e-03 + syst_JES_EtaIntercalibration_Stat56: 2.81075911e-03 + syst_JES_EtaIntercalibration_Stat57: 1.35258815e-04 syst_JES_EtaIntercalibration_Stat58: 0.0 syst_JES_EtaIntercalibration_Stat59: 0.0 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 1.4895636945092346e-07 - syst_JES_EtaIntercalibration_Stat62: 1.4895636945092346e-07 + syst_JES_EtaIntercalibration_Stat61: 1.48956369e-07 + syst_JES_EtaIntercalibration_Stat62: 1.48956369e-07 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 7.947515130529794e-06 - syst_JES_EtaIntercalibration_Stat69: 7.947515130529794e-06 + syst_JES_EtaIntercalibration_Stat68: 7.94751513e-06 + syst_JES_EtaIntercalibration_Stat69: 7.94751513e-06 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 6.285612380667456e-06 - syst_JES_EtaIntercalibration_Stat71: 6.285612380667456e-06 + syst_JES_EtaIntercalibration_Stat70: 6.28561238e-06 + syst_JES_EtaIntercalibration_Stat71: 6.28561238e-06 syst_JES_EtaIntercalibration_Stat72: 0.0 syst_JES_EtaIntercalibration_Stat73: 0.0 - syst_JES_EtaIntercalibration_Stat74: 0.0003399128822213127 - syst_JES_EtaIntercalibration_Stat75: 0.0009248501971670871 - syst_JES_EtaIntercalibration_Stat76: 0.0049868451700448855 - syst_JES_EtaIntercalibration_Stat77: 0.014261900741135454 - syst_JES_EtaIntercalibration_Stat78: 0.00821540216605371 - syst_JES_EtaIntercalibration_Stat79: 3.9547989519064045e-05 + syst_JES_EtaIntercalibration_Stat74: 3.39912882e-04 + syst_JES_EtaIntercalibration_Stat75: 9.24850197e-04 + syst_JES_EtaIntercalibration_Stat76: 4.98684517e-03 + syst_JES_EtaIntercalibration_Stat77: 1.42619007e-02 + syst_JES_EtaIntercalibration_Stat78: 8.21540217e-03 + syst_JES_EtaIntercalibration_Stat79: 3.95479895e-05 syst_JES_EtaIntercalibration_Stat8: 0.0 syst_JES_EtaIntercalibration_Stat80: 0.0 syst_JES_EtaIntercalibration_Stat81: 0.0 - syst_JES_EtaIntercalibration_Stat82: 1.4895636945092346e-07 - syst_JES_EtaIntercalibration_Stat83: 1.4895636945092346e-07 - syst_JES_EtaIntercalibration_Stat84: 1.4895636945092346e-07 + syst_JES_EtaIntercalibration_Stat82: 1.48956369e-07 + syst_JES_EtaIntercalibration_Stat83: 1.48956369e-07 + syst_JES_EtaIntercalibration_Stat84: 1.48956369e-07 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 7.947515130529794e-06 - syst_JES_EtaIntercalibration_Stat9: 0.0004621316776634122 - syst_JES_EtaIntercalibration_Stat90: 7.947515130529794e-06 - syst_JES_EtaIntercalibration_Stat91: 6.285612380667456e-06 - syst_JES_EtaIntercalibration_Stat92: 6.285612380667456e-06 + syst_JES_EtaIntercalibration_Stat89: 7.94751513e-06 + syst_JES_EtaIntercalibration_Stat9: 4.62131678e-04 + syst_JES_EtaIntercalibration_Stat90: 7.94751513e-06 + syst_JES_EtaIntercalibration_Stat91: 6.28561238e-06 + syst_JES_EtaIntercalibration_Stat92: 6.28561238e-06 syst_JES_EtaIntercalibration_Stat93: 0.0 syst_JES_EtaIntercalibration_Stat94: 0.0 - syst_JES_EtaIntercalibration_Stat95: 0.00035933482992885616 - syst_JES_EtaIntercalibration_Stat96: 0.012257548205085714 - syst_JES_EtaIntercalibration_Stat97: 0.018055657195184007 - syst_JES_EtaIntercalibration_Stat98: 0.01689664258810016 - syst_JES_EtaIntercalibration_Stat99: 0.013602964263350838 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0836653100155614 - syst_JES_Flavour_Comp: 0.23702430255144724 - syst_JES_Flavour_Response: 5.250558327454328 - syst_JES_Gjet_Generator: 5.098033150147221 - syst_JES_Gjet_OOC: 3.093015842183806 - syst_JES_Gjet_Purity: 0.9221871108945299 - syst_JES_Gjet_Stat1: 7.575990159040522e-11 - syst_JES_Gjet_Stat10: 0.3631110160818589 - syst_JES_Gjet_Stat11: 0.21302344941343898 - syst_JES_Gjet_Stat12: 0.03130171803591617 - syst_JES_Gjet_Stat13: 0.0692878113379258 - syst_JES_Gjet_Stat14: 0.008712934867196013 - syst_JES_Gjet_Stat15: 0.0019103252360527512 - syst_JES_Gjet_Stat2: 0.01006581326818653 - syst_JES_Gjet_Stat3: 0.00954411927576348 - syst_JES_Gjet_Stat4: 0.019541681113711788 - syst_JES_Gjet_Stat5: 0.02622147891996178 - syst_JES_Gjet_Stat6: 0.054204009768650876 - syst_JES_Gjet_Stat7: 0.10810615280824677 - syst_JES_Gjet_Stat8: 0.09804393135222599 - syst_JES_Gjet_Stat9: 0.2279428217777432 - syst_JES_Gjet_Veto: 1.241514893184935 - syst_JES_Gjet_dPhi: 0.34973989577970654 - syst_JES_LArESZee: 5.298737844996674 - syst_JES_LArEsmear: 0.39327172981921804 - syst_JES_LAr_JVT: 0.6084062520224459 - syst_JES_MJB_Alpha: 0.0005605103226969776 - syst_JES_MJB_Asym: 0.03139032653541534 - syst_JES_MJB_Beta: 2.4143719680281246e-29 - syst_JES_MJB_Fragmentation: 0.09399047651225095 - syst_JES_MJB_Stat1: 0.01790619827741221 - syst_JES_MJB_Stat10: 2.2438718212054806e-12 - syst_JES_MJB_Stat11: 1.2323541495852562e-29 - syst_JES_MJB_Stat12: 1.0698011724701184e-29 - syst_JES_MJB_Stat13: 1.1329828363660237e-19 - syst_JES_MJB_Stat14: 6.486517769035052e-20 - syst_JES_MJB_Stat15: 9.577627093910058e-39 + syst_JES_EtaIntercalibration_Stat95: 3.59334830e-04 + syst_JES_EtaIntercalibration_Stat96: 1.22575482e-02 + syst_JES_EtaIntercalibration_Stat97: 1.80556572e-02 + syst_JES_EtaIntercalibration_Stat98: 1.68966426e-02 + syst_JES_EtaIntercalibration_Stat99: 1.36029643e-02 + syst_JES_EtaIntercalibration_TotalStat_MJB: 8.36653100e-02 + syst_JES_Flavour_Comp: 2.37024303e-01 + syst_JES_Flavour_Response: 5.25055833e+00 + syst_JES_Gjet_Generator: 5.09803315e+00 + syst_JES_Gjet_OOC: 3.09301584e+00 + syst_JES_Gjet_Purity: 9.22187111e-01 + syst_JES_Gjet_Stat1: 7.57599016e-11 + syst_JES_Gjet_Stat10: 3.63111016e-01 + syst_JES_Gjet_Stat11: 2.13023449e-01 + syst_JES_Gjet_Stat12: 3.13017180e-02 + syst_JES_Gjet_Stat13: 6.92878113e-02 + syst_JES_Gjet_Stat14: 8.71293487e-03 + syst_JES_Gjet_Stat15: 1.91032524e-03 + syst_JES_Gjet_Stat2: 1.00658133e-02 + syst_JES_Gjet_Stat3: 9.54411928e-03 + syst_JES_Gjet_Stat4: 1.95416811e-02 + syst_JES_Gjet_Stat5: 2.62214789e-02 + syst_JES_Gjet_Stat6: 5.42040098e-02 + syst_JES_Gjet_Stat7: 1.08106153e-01 + syst_JES_Gjet_Stat8: 9.80439314e-02 + syst_JES_Gjet_Stat9: 2.27942822e-01 + syst_JES_Gjet_Veto: 1.24151489e+00 + syst_JES_Gjet_dPhi: 3.49739896e-01 + syst_JES_LArESZee: 5.29873784e+00 + syst_JES_LArEsmear: 3.93271730e-01 + syst_JES_LAr_JVT: 6.08406252e-01 + syst_JES_MJB_Alpha: 5.60510323e-04 + syst_JES_MJB_Asym: 3.13903265e-02 + syst_JES_MJB_Beta: 2.41437197e-29 + syst_JES_MJB_Fragmentation: 9.39904765e-02 + syst_JES_MJB_Stat1: 1.79061983e-02 + syst_JES_MJB_Stat10: 2.24387182e-12 + syst_JES_MJB_Stat11: 1.23235415e-29 + syst_JES_MJB_Stat12: 1.06980117e-29 + syst_JES_MJB_Stat13: 1.13298284e-19 + syst_JES_MJB_Stat14: 6.48651777e-20 + syst_JES_MJB_Stat15: 9.57762709e-39 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 0.017025970586050466 - syst_JES_MJB_Stat3: 0.016231016819657357 - syst_JES_MJB_Stat4: 0.00019438345821339842 - syst_JES_MJB_Stat5: 7.085269414778807e-05 - syst_JES_MJB_Stat6: 3.1748491302737524e-06 - syst_JES_MJB_Stat7: 4.379490466937906e-37 + syst_JES_MJB_Stat2: 1.70259706e-02 + syst_JES_MJB_Stat3: 1.62310168e-02 + syst_JES_MJB_Stat4: 1.94383458e-04 + syst_JES_MJB_Stat5: 7.08526941e-05 + syst_JES_MJB_Stat6: 3.17484913e-06 + syst_JES_MJB_Stat7: 4.37949047e-37 syst_JES_MJB_Stat8: 0.0 syst_JES_MJB_Stat9: 0.0 - syst_JES_MJB_Threshold: 0.0424597818529488 - syst_JES_Pileup_MuOffset: 0.001820308971026622 - syst_JES_Pileup_NPVOffset: 0.16309812997088594 - syst_JES_Pileup_Pt_term: 0.6606174990113417 - syst_JES_Pileup_Rho_topology: 1.8115608601424356 - syst_JES_PunchThrough_MC15: 2.5331229822080837e-07 + syst_JES_MJB_Threshold: 4.24597819e-02 + syst_JES_Pileup_MuOffset: 1.82030897e-03 + syst_JES_Pileup_NPVOffset: 1.63098130e-01 + syst_JES_Pileup_Pt_term: 6.60617499e-01 + syst_JES_Pileup_Rho_topology: 1.81156086e+00 + syst_JES_PunchThrough_MC15: 2.53312298e-07 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 4.669545026016989 - syst_JES_Zjet_MuScale: 0.3001799918382303 - syst_JES_Zjet_MuSmearID: 0.05195810114890651 - syst_JES_Zjet_MuSmearMS: 0.4275660738412252 - syst_JES_Zjet_OOC: 1.5830056853972447 - syst_JES_Zjet_Stat1: 0.018692035737179615 - syst_JES_Zjet_Stat10: 0.5144152699910841 - syst_JES_Zjet_Stat11: 0.7944717679061982 - syst_JES_Zjet_Stat12: 0.45638032393498296 - syst_JES_Zjet_Stat13: 0.11419858887044095 + syst_JES_Zjet_MC: 4.66954503e+00 + syst_JES_Zjet_MuScale: 3.00179992e-01 + syst_JES_Zjet_MuSmearID: 5.19581011e-02 + syst_JES_Zjet_MuSmearMS: 4.27566074e-01 + syst_JES_Zjet_OOC: 1.58300569e+00 + syst_JES_Zjet_Stat1: 1.86920357e-02 + syst_JES_Zjet_Stat10: 5.14415270e-01 + syst_JES_Zjet_Stat11: 7.94471768e-01 + syst_JES_Zjet_Stat12: 4.56380324e-01 + syst_JES_Zjet_Stat13: 1.14198589e-01 syst_JES_Zjet_Stat2: 0.0 - syst_JES_Zjet_Stat3: 0.013310810377560585 - syst_JES_Zjet_Stat4: 0.013321605562018416 - syst_JES_Zjet_Stat5: 0.015191948525452552 - syst_JES_Zjet_Stat6: 0.021261072409452915 - syst_JES_Zjet_Stat7: 0.03199517776165653 - syst_JES_Zjet_Stat8: 0.057352202006548975 - syst_JES_Zjet_Stat9: 0.16006854781624028 - syst_JES_Zjet_Veto: 0.29008615961469103 - syst_JES_Zjet_dPhi: 0.27978398810510946 + syst_JES_Zjet_Stat3: 1.33108104e-02 + syst_JES_Zjet_Stat4: 1.33216056e-02 + syst_JES_Zjet_Stat5: 1.51919485e-02 + syst_JES_Zjet_Stat6: 2.12610724e-02 + syst_JES_Zjet_Stat7: 3.19951778e-02 + syst_JES_Zjet_Stat8: 5.73522020e-02 + syst_JES_Zjet_Stat9: 1.60068548e-01 + syst_JES_Zjet_Veto: 2.90086160e-01 + syst_JES_Zjet_dPhi: 2.79783988e-01 syst_PRW: 0.11474 syst_Unfolding_bias: 0.038927 - syst_cleaning: 1.3968989763042996 + syst_cleaning: 1.39689898e+00 syst_lumi: 5.732 - stat: 0.9178 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.7526596641244965 - syst_JER_NP1: 0.11177592529252442 - syst_JER_NP2: 0.07117632963282104 - syst_JER_NP3: 0.23270261601451753 - syst_JER_NP4: 0.154482383461675 - syst_JER_NP5: 0.046724457492837726 - syst_JER_NP6: 0.08575092229824703 - syst_JER_NP7: 0.23905486294990946 - syst_JER_NP8: 0.1808163985926055 - syst_JES_EtaIntercalibration_Modelling: 0.07336882784943481 + syst_JER_NP0: 7.52659664e-01 + syst_JER_NP1: 1.11775925e-01 + syst_JER_NP2: 7.11763296e-02 + syst_JER_NP3: 2.32702616e-01 + syst_JER_NP4: 1.54482383e-01 + syst_JER_NP5: 4.67244575e-02 + syst_JER_NP6: 8.57509223e-02 + syst_JER_NP7: 2.39054863e-01 + syst_JER_NP8: 1.80816399e-01 + syst_JES_EtaIntercalibration_Modelling: 7.33688278e-02 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 - syst_JES_EtaIntercalibration_Stat10: 3.7520548946277425e-05 - syst_JES_EtaIntercalibration_Stat100: 0.0005951759823285463 + syst_JES_EtaIntercalibration_Stat10: 3.75205489e-05 + syst_JES_EtaIntercalibration_Stat100: 5.95175982e-04 syst_JES_EtaIntercalibration_Stat101: 0.0 syst_JES_EtaIntercalibration_Stat102: 0.0 - syst_JES_EtaIntercalibration_Stat103: 1.2436124798344538e-08 - syst_JES_EtaIntercalibration_Stat104: 1.2436124798344538e-08 - syst_JES_EtaIntercalibration_Stat105: 1.2436124798344538e-08 + syst_JES_EtaIntercalibration_Stat103: 1.24361248e-08 + syst_JES_EtaIntercalibration_Stat104: 1.24361248e-08 + syst_JES_EtaIntercalibration_Stat105: 1.24361248e-08 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 7.481593463293766e-07 - syst_JES_EtaIntercalibration_Stat11: 0.0006127995757178687 - syst_JES_EtaIntercalibration_Stat110: 7.405058784878078e-07 - syst_JES_EtaIntercalibration_Stat111: 5.844805450141176e-07 - syst_JES_EtaIntercalibration_Stat112: 5.844805450141176e-07 + syst_JES_EtaIntercalibration_Stat109: 7.48159346e-07 + syst_JES_EtaIntercalibration_Stat11: 6.12799576e-04 + syst_JES_EtaIntercalibration_Stat110: 7.40505878e-07 + syst_JES_EtaIntercalibration_Stat111: 5.84480545e-07 + syst_JES_EtaIntercalibration_Stat112: 5.84480545e-07 syst_JES_EtaIntercalibration_Stat113: 0.0 - syst_JES_EtaIntercalibration_Stat114: 8.939114217862976e-07 - syst_JES_EtaIntercalibration_Stat115: 0.0014863270568754375 - syst_JES_EtaIntercalibration_Stat116: 0.05012533191910055 - syst_JES_EtaIntercalibration_Stat117: 0.03777612043341667 - syst_JES_EtaIntercalibration_Stat118: 0.042119582144176125 - syst_JES_EtaIntercalibration_Stat119: 0.03706617157193335 - syst_JES_EtaIntercalibration_Stat12: 0.0005150569029600032 - syst_JES_EtaIntercalibration_Stat120: 0.0011312721014415587 - syst_JES_EtaIntercalibration_Stat121: 6.465745664654619e-06 + syst_JES_EtaIntercalibration_Stat114: 8.93911422e-07 + syst_JES_EtaIntercalibration_Stat115: 1.48632706e-03 + syst_JES_EtaIntercalibration_Stat116: 5.01253319e-02 + syst_JES_EtaIntercalibration_Stat117: 3.77761204e-02 + syst_JES_EtaIntercalibration_Stat118: 4.21195821e-02 + syst_JES_EtaIntercalibration_Stat119: 3.70661716e-02 + syst_JES_EtaIntercalibration_Stat12: 5.15056903e-04 + syst_JES_EtaIntercalibration_Stat120: 1.13127210e-03 + syst_JES_EtaIntercalibration_Stat121: 6.46574566e-06 syst_JES_EtaIntercalibration_Stat122: 0.0 - syst_JES_EtaIntercalibration_Stat123: 1.2436124798344538e-08 - syst_JES_EtaIntercalibration_Stat124: 1.2436124798344538e-08 - syst_JES_EtaIntercalibration_Stat125: 1.2436124798344538e-08 + syst_JES_EtaIntercalibration_Stat123: 1.24361248e-08 + syst_JES_EtaIntercalibration_Stat124: 1.24361248e-08 + syst_JES_EtaIntercalibration_Stat125: 1.24361248e-08 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 7.481593463293766e-07 - syst_JES_EtaIntercalibration_Stat129: 7.405058784878078e-07 + syst_JES_EtaIntercalibration_Stat128: 7.48159346e-07 + syst_JES_EtaIntercalibration_Stat129: 7.40505878e-07 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 2.3997563938866794e-08 + syst_JES_EtaIntercalibration_Stat130: 2.39975639e-08 syst_JES_EtaIntercalibration_Stat131: 0.0 syst_JES_EtaIntercalibration_Stat132: 0.0 - syst_JES_EtaIntercalibration_Stat133: 8.939114217862976e-07 - syst_JES_EtaIntercalibration_Stat134: 0.00647512090620708 - syst_JES_EtaIntercalibration_Stat135: 0.17138222632466882 - syst_JES_EtaIntercalibration_Stat136: 0.2881691300261011 - syst_JES_EtaIntercalibration_Stat137: 0.2841296007106616 - syst_JES_EtaIntercalibration_Stat138: 0.19670081341977208 - syst_JES_EtaIntercalibration_Stat139: 0.00099262236903064 + syst_JES_EtaIntercalibration_Stat133: 8.93911422e-07 + syst_JES_EtaIntercalibration_Stat134: 6.47512091e-03 + syst_JES_EtaIntercalibration_Stat135: 1.71382226e-01 + syst_JES_EtaIntercalibration_Stat136: 2.88169130e-01 + syst_JES_EtaIntercalibration_Stat137: 2.84129601e-01 + syst_JES_EtaIntercalibration_Stat138: 1.96700813e-01 + syst_JES_EtaIntercalibration_Stat139: 9.92622369e-04 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 6.465745664654619e-06 + syst_JES_EtaIntercalibration_Stat140: 6.46574566e-06 syst_JES_EtaIntercalibration_Stat141: 0.0 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 1.2436124798344538e-08 - syst_JES_EtaIntercalibration_Stat144: 1.2436124798344538e-08 + syst_JES_EtaIntercalibration_Stat143: 1.24361248e-08 + syst_JES_EtaIntercalibration_Stat144: 1.24361248e-08 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 2.3997563938866794e-08 - syst_JES_EtaIntercalibration_Stat148: 2.3997563938866794e-08 + syst_JES_EtaIntercalibration_Stat147: 2.39975639e-08 + syst_JES_EtaIntercalibration_Stat148: 2.39975639e-08 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 syst_JES_EtaIntercalibration_Stat150: 0.0 syst_JES_EtaIntercalibration_Stat151: 0.0 - syst_JES_EtaIntercalibration_Stat152: 0.003769125402357953 - syst_JES_EtaIntercalibration_Stat153: 0.15754563624550189 - syst_JES_EtaIntercalibration_Stat154: 0.23588586223002006 - syst_JES_EtaIntercalibration_Stat155: 0.22395026233518908 - syst_JES_EtaIntercalibration_Stat156: 0.16166885909166304 - syst_JES_EtaIntercalibration_Stat157: 0.0030511797505227384 + syst_JES_EtaIntercalibration_Stat152: 3.76912540e-03 + syst_JES_EtaIntercalibration_Stat153: 1.57545636e-01 + syst_JES_EtaIntercalibration_Stat154: 2.35885862e-01 + syst_JES_EtaIntercalibration_Stat155: 2.23950262e-01 + syst_JES_EtaIntercalibration_Stat156: 1.61668859e-01 + syst_JES_EtaIntercalibration_Stat157: 3.05117975e-03 syst_JES_EtaIntercalibration_Stat158: 0.0 syst_JES_EtaIntercalibration_Stat159: 0.0 syst_JES_EtaIntercalibration_Stat16: 0.0 @@ -3795,18 +3795,18 @@ bins: syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 2.3997563938866794e-08 + syst_JES_EtaIntercalibration_Stat165: 2.39975639e-08 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 0.0030235437403814754 - syst_JES_EtaIntercalibration_Stat171: 0.0880394065177634 - syst_JES_EtaIntercalibration_Stat172: 0.12897483901908927 - syst_JES_EtaIntercalibration_Stat173: 0.1539583797654418 - syst_JES_EtaIntercalibration_Stat174: 0.12028104090005207 - syst_JES_EtaIntercalibration_Stat175: 0.004301549497564802 + syst_JES_EtaIntercalibration_Stat170: 3.02354374e-03 + syst_JES_EtaIntercalibration_Stat171: 8.80394065e-02 + syst_JES_EtaIntercalibration_Stat172: 1.28974839e-01 + syst_JES_EtaIntercalibration_Stat173: 1.53958380e-01 + syst_JES_EtaIntercalibration_Stat174: 1.20281041e-01 + syst_JES_EtaIntercalibration_Stat175: 4.30154950e-03 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 syst_JES_EtaIntercalibration_Stat178: 0.0 @@ -3819,14 +3819,14 @@ bins: syst_JES_EtaIntercalibration_Stat184: 0.0 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 - syst_JES_EtaIntercalibration_Stat187: 0.00036373066965077883 - syst_JES_EtaIntercalibration_Stat188: 0.04519556062269833 - syst_JES_EtaIntercalibration_Stat189: 0.020957498580460407 + syst_JES_EtaIntercalibration_Stat187: 3.63730670e-04 + syst_JES_EtaIntercalibration_Stat188: 4.51955606e-02 + syst_JES_EtaIntercalibration_Stat189: 2.09574986e-02 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 0.017807720425422228 - syst_JES_EtaIntercalibration_Stat191: 0.009860218899699945 - syst_JES_EtaIntercalibration_Stat192: 0.0036485093874074107 - syst_JES_EtaIntercalibration_Stat193: 5.19182229568771e-07 + syst_JES_EtaIntercalibration_Stat190: 1.78077204e-02 + syst_JES_EtaIntercalibration_Stat191: 9.86021890e-03 + syst_JES_EtaIntercalibration_Stat192: 3.64850939e-03 + syst_JES_EtaIntercalibration_Stat193: 5.19182230e-07 syst_JES_EtaIntercalibration_Stat194: 0.0 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 @@ -3837,13 +3837,13 @@ bins: syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 syst_JES_EtaIntercalibration_Stat201: 0.0 - syst_JES_EtaIntercalibration_Stat202: 0.0009733793899605643 - syst_JES_EtaIntercalibration_Stat203: 0.019650681285899477 - syst_JES_EtaIntercalibration_Stat204: 0.026931570229008186 - syst_JES_EtaIntercalibration_Stat205: 0.022941361664033807 - syst_JES_EtaIntercalibration_Stat206: 0.01521994765923983 - syst_JES_EtaIntercalibration_Stat207: 0.00032174481639181076 - syst_JES_EtaIntercalibration_Stat208: 5.19182229568771e-07 + syst_JES_EtaIntercalibration_Stat202: 9.73379390e-04 + syst_JES_EtaIntercalibration_Stat203: 1.96506813e-02 + syst_JES_EtaIntercalibration_Stat204: 2.69315702e-02 + syst_JES_EtaIntercalibration_Stat205: 2.29413617e-02 + syst_JES_EtaIntercalibration_Stat206: 1.52199477e-02 + syst_JES_EtaIntercalibration_Stat207: 3.21744816e-04 + syst_JES_EtaIntercalibration_Stat208: 5.19182230e-07 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 @@ -3851,37 +3851,37 @@ bins: syst_JES_EtaIntercalibration_Stat212: 0.0 syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 - syst_JES_EtaIntercalibration_Stat215: 2.018389603279555e-05 - syst_JES_EtaIntercalibration_Stat216: 0.0010655360939452027 - syst_JES_EtaIntercalibration_Stat217: 0.0008545826744674853 - syst_JES_EtaIntercalibration_Stat218: 0.0009236800420058885 - syst_JES_EtaIntercalibration_Stat219: 0.0004957927187847761 + syst_JES_EtaIntercalibration_Stat215: 2.01838960e-05 + syst_JES_EtaIntercalibration_Stat216: 1.06553609e-03 + syst_JES_EtaIntercalibration_Stat217: 8.54582674e-04 + syst_JES_EtaIntercalibration_Stat218: 9.23680042e-04 + syst_JES_EtaIntercalibration_Stat219: 4.95792719e-04 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 9.430521552385106e-07 + syst_JES_EtaIntercalibration_Stat220: 9.43052155e-07 syst_JES_EtaIntercalibration_Stat221: 0.0 syst_JES_EtaIntercalibration_Stat222: 0.0 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 - syst_JES_EtaIntercalibration_Stat227: 2.891658818490421e-14 - syst_JES_EtaIntercalibration_Stat228: 1.7830465802945251e-06 - syst_JES_EtaIntercalibration_Stat229: 3.3026461069118497e-06 + syst_JES_EtaIntercalibration_Stat227: 2.89165882e-14 + syst_JES_EtaIntercalibration_Stat228: 1.78304658e-06 + syst_JES_EtaIntercalibration_Stat229: 3.30264611e-06 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 1.0300336442563418e-05 - syst_JES_EtaIntercalibration_Stat231: 1.274310365452624e-05 - syst_JES_EtaIntercalibration_Stat232: 5.154583203324979e-07 + syst_JES_EtaIntercalibration_Stat230: 1.03003364e-05 + syst_JES_EtaIntercalibration_Stat231: 1.27431037e-05 + syst_JES_EtaIntercalibration_Stat232: 5.15458320e-07 syst_JES_EtaIntercalibration_Stat233: 0.0 syst_JES_EtaIntercalibration_Stat234: 0.0 syst_JES_EtaIntercalibration_Stat235: 0.0 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 - syst_JES_EtaIntercalibration_Stat239: 2.9114406589461565e-15 + syst_JES_EtaIntercalibration_Stat239: 2.91144066e-15 syst_JES_EtaIntercalibration_Stat24: 0.0 - syst_JES_EtaIntercalibration_Stat240: 3.2899189549340984e-15 - syst_JES_EtaIntercalibration_Stat241: 4.342992372777093e-15 - syst_JES_EtaIntercalibration_Stat242: 4.2446685709283297e-19 + syst_JES_EtaIntercalibration_Stat240: 3.28991895e-15 + syst_JES_EtaIntercalibration_Stat241: 4.34299237e-15 + syst_JES_EtaIntercalibration_Stat242: 4.24466857e-19 syst_JES_EtaIntercalibration_Stat243: 0.0 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 @@ -3891,12 +3891,12 @@ bins: syst_JES_EtaIntercalibration_Stat28: 0.0 syst_JES_EtaIntercalibration_Stat29: 0.0 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 8.676389168311896e-07 - syst_JES_EtaIntercalibration_Stat31: 0.0009854094066300565 - syst_JES_EtaIntercalibration_Stat32: 0.0007914636679437661 - syst_JES_EtaIntercalibration_Stat33: 0.0008963634792175548 - syst_JES_EtaIntercalibration_Stat34: 0.0009650644489877348 - syst_JES_EtaIntercalibration_Stat35: 6.341268749252036e-06 + syst_JES_EtaIntercalibration_Stat30: 8.67638917e-07 + syst_JES_EtaIntercalibration_Stat31: 9.85409407e-04 + syst_JES_EtaIntercalibration_Stat32: 7.91463668e-04 + syst_JES_EtaIntercalibration_Stat33: 8.96363479e-04 + syst_JES_EtaIntercalibration_Stat34: 9.65064449e-04 + syst_JES_EtaIntercalibration_Stat35: 6.34126875e-06 syst_JES_EtaIntercalibration_Stat36: 0.0 syst_JES_EtaIntercalibration_Stat37: 0.0 syst_JES_EtaIntercalibration_Stat38: 0.0 @@ -3915,215 +3915,215 @@ bins: syst_JES_EtaIntercalibration_Stat5: 0.0 syst_JES_EtaIntercalibration_Stat50: 0.0 syst_JES_EtaIntercalibration_Stat51: 0.0 - syst_JES_EtaIntercalibration_Stat52: 4.093053167462524e-06 - syst_JES_EtaIntercalibration_Stat53: 0.0003398982146172586 - syst_JES_EtaIntercalibration_Stat54: 0.001298091255459338 - syst_JES_EtaIntercalibration_Stat55: 0.0007196604268681168 - syst_JES_EtaIntercalibration_Stat56: 0.0007951832053055447 - syst_JES_EtaIntercalibration_Stat57: 2.4743166101976523e-05 + syst_JES_EtaIntercalibration_Stat52: 4.09305317e-06 + syst_JES_EtaIntercalibration_Stat53: 3.39898215e-04 + syst_JES_EtaIntercalibration_Stat54: 1.29809126e-03 + syst_JES_EtaIntercalibration_Stat55: 7.19660427e-04 + syst_JES_EtaIntercalibration_Stat56: 7.95183205e-04 + syst_JES_EtaIntercalibration_Stat57: 2.47431661e-05 syst_JES_EtaIntercalibration_Stat58: 0.0 syst_JES_EtaIntercalibration_Stat59: 0.0 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 1.2436124798344538e-08 - syst_JES_EtaIntercalibration_Stat62: 1.2436124798344538e-08 + syst_JES_EtaIntercalibration_Stat61: 1.24361248e-08 + syst_JES_EtaIntercalibration_Stat62: 1.24361248e-08 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 7.481593463293766e-07 - syst_JES_EtaIntercalibration_Stat69: 7.481593463293766e-07 + syst_JES_EtaIntercalibration_Stat68: 7.48159346e-07 + syst_JES_EtaIntercalibration_Stat69: 7.48159346e-07 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 5.844805450141176e-07 - syst_JES_EtaIntercalibration_Stat71: 5.844805450141176e-07 + syst_JES_EtaIntercalibration_Stat70: 5.84480545e-07 + syst_JES_EtaIntercalibration_Stat71: 5.84480545e-07 syst_JES_EtaIntercalibration_Stat72: 0.0 syst_JES_EtaIntercalibration_Stat73: 0.0 - syst_JES_EtaIntercalibration_Stat74: 0.0002502093817185919 - syst_JES_EtaIntercalibration_Stat75: 0.0006110450556219238 - syst_JES_EtaIntercalibration_Stat76: 0.0011671377400718393 - syst_JES_EtaIntercalibration_Stat77: 0.003952182435060406 - syst_JES_EtaIntercalibration_Stat78: 0.0026920907767012613 - syst_JES_EtaIntercalibration_Stat79: 1.852109810459412e-05 + syst_JES_EtaIntercalibration_Stat74: 2.50209382e-04 + syst_JES_EtaIntercalibration_Stat75: 6.11045056e-04 + syst_JES_EtaIntercalibration_Stat76: 1.16713774e-03 + syst_JES_EtaIntercalibration_Stat77: 3.95218244e-03 + syst_JES_EtaIntercalibration_Stat78: 2.69209078e-03 + syst_JES_EtaIntercalibration_Stat79: 1.85210981e-05 syst_JES_EtaIntercalibration_Stat8: 0.0 syst_JES_EtaIntercalibration_Stat80: 0.0 syst_JES_EtaIntercalibration_Stat81: 0.0 - syst_JES_EtaIntercalibration_Stat82: 1.2436124798344538e-08 - syst_JES_EtaIntercalibration_Stat83: 1.2436124798344538e-08 - syst_JES_EtaIntercalibration_Stat84: 1.2436124798344538e-08 + syst_JES_EtaIntercalibration_Stat82: 1.24361248e-08 + syst_JES_EtaIntercalibration_Stat83: 1.24361248e-08 + syst_JES_EtaIntercalibration_Stat84: 1.24361248e-08 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 7.481593463293766e-07 - syst_JES_EtaIntercalibration_Stat9: 0.00022189417567840754 - syst_JES_EtaIntercalibration_Stat90: 7.481593463293766e-07 - syst_JES_EtaIntercalibration_Stat91: 5.844805450141176e-07 - syst_JES_EtaIntercalibration_Stat92: 5.844805450141176e-07 + syst_JES_EtaIntercalibration_Stat89: 7.48159346e-07 + syst_JES_EtaIntercalibration_Stat9: 2.21894176e-04 + syst_JES_EtaIntercalibration_Stat90: 7.48159346e-07 + syst_JES_EtaIntercalibration_Stat91: 5.84480545e-07 + syst_JES_EtaIntercalibration_Stat92: 5.84480545e-07 syst_JES_EtaIntercalibration_Stat93: 0.0 syst_JES_EtaIntercalibration_Stat94: 0.0 - syst_JES_EtaIntercalibration_Stat95: 0.00025367401660398724 - syst_JES_EtaIntercalibration_Stat96: 0.0034589367427975606 - syst_JES_EtaIntercalibration_Stat97: 0.0073880838347977614 - syst_JES_EtaIntercalibration_Stat98: 0.005490232781950143 - syst_JES_EtaIntercalibration_Stat99: 0.004274285086420886 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0465465538466598 - syst_JES_Flavour_Comp: 0.20208707900308717 - syst_JES_Flavour_Response: 2.832108181196474 - syst_JES_Gjet_Generator: 2.902706797111964 - syst_JES_Gjet_OOC: 1.8271515399659657 - syst_JES_Gjet_Purity: 0.5348464709615275 - syst_JES_Gjet_Stat1: 3.837354861635861e-08 - syst_JES_Gjet_Stat10: 0.22239934802062705 - syst_JES_Gjet_Stat11: 0.22873952435029674 - syst_JES_Gjet_Stat12: 0.09870056775419277 - syst_JES_Gjet_Stat13: 0.05457388936112213 - syst_JES_Gjet_Stat14: 0.014658665525892867 - syst_JES_Gjet_Stat15: 0.0022737141349562836 - syst_JES_Gjet_Stat2: 0.005455094018438179 - syst_JES_Gjet_Stat3: 0.005429071076160268 - syst_JES_Gjet_Stat4: 0.011434985002176436 - syst_JES_Gjet_Stat5: 0.010049832386661978 - syst_JES_Gjet_Stat6: 0.019891628892576896 - syst_JES_Gjet_Stat7: 0.03920022034376847 - syst_JES_Gjet_Stat8: 0.04089962683203846 - syst_JES_Gjet_Stat9: 0.11943333663596609 - syst_JES_Gjet_Veto: 0.7311157278434106 - syst_JES_Gjet_dPhi: 0.17763712309086746 - syst_JES_LArESZee: 3.258908828120234 - syst_JES_LArEsmear: 0.24393187573582914 - syst_JES_LAr_JVT: 0.3720803261058021 - syst_JES_MJB_Alpha: 0.0019964481577792095 - syst_JES_MJB_Asym: 0.011159324845168725 - syst_JES_MJB_Beta: 6.61329252339559e-22 - syst_JES_MJB_Fragmentation: 0.04727168153345088 - syst_JES_MJB_Stat1: 0.013800002608695405 - syst_JES_MJB_Stat10: 1.1365717399266971e-09 - syst_JES_MJB_Stat11: 3.3761134341132557e-22 - syst_JES_MJB_Stat12: 2.929762747910368e-22 - syst_JES_MJB_Stat13: 5.725314380014428e-15 - syst_JES_MJB_Stat14: 3.277789776042338e-15 - syst_JES_MJB_Stat15: 1.2949972084912e-29 - syst_JES_MJB_Stat16: 5.4949417421843515e-37 - syst_JES_MJB_Stat2: 0.011513080545018132 - syst_JES_MJB_Stat3: 0.012231757467755809 - syst_JES_MJB_Stat4: 0.0002630941038868032 - syst_JES_MJB_Stat5: 0.00040512545612439617 - syst_JES_MJB_Stat6: 1.9147821677673938e-05 - syst_JES_MJB_Stat7: 5.921015476904379e-28 - syst_JES_MJB_Stat8: 3.871133554916441e-43 - syst_JES_MJB_Stat9: 1.929504599631729e-43 - syst_JES_MJB_Threshold: 0.022789104304469714 - syst_JES_Pileup_MuOffset: 0.01105410841045084 - syst_JES_Pileup_NPVOffset: 0.09932108738832857 - syst_JES_Pileup_Pt_term: 0.3670949298206119 - syst_JES_Pileup_Rho_topology: 0.9823488115226688 - syst_JES_PunchThrough_MC15: 2.188390804214185e-05 + syst_JES_EtaIntercalibration_Stat95: 2.53674017e-04 + syst_JES_EtaIntercalibration_Stat96: 3.45893674e-03 + syst_JES_EtaIntercalibration_Stat97: 7.38808383e-03 + syst_JES_EtaIntercalibration_Stat98: 5.49023278e-03 + syst_JES_EtaIntercalibration_Stat99: 4.27428509e-03 + syst_JES_EtaIntercalibration_TotalStat_MJB: 4.65465538e-02 + syst_JES_Flavour_Comp: 2.02087079e-01 + syst_JES_Flavour_Response: 2.83210818e+00 + syst_JES_Gjet_Generator: 2.90270680e+00 + syst_JES_Gjet_OOC: 1.82715154e+00 + syst_JES_Gjet_Purity: 5.34846471e-01 + syst_JES_Gjet_Stat1: 3.83735486e-08 + syst_JES_Gjet_Stat10: 2.22399348e-01 + syst_JES_Gjet_Stat11: 2.28739524e-01 + syst_JES_Gjet_Stat12: 9.87005678e-02 + syst_JES_Gjet_Stat13: 5.45738894e-02 + syst_JES_Gjet_Stat14: 1.46586655e-02 + syst_JES_Gjet_Stat15: 2.27371413e-03 + syst_JES_Gjet_Stat2: 5.45509402e-03 + syst_JES_Gjet_Stat3: 5.42907108e-03 + syst_JES_Gjet_Stat4: 1.14349850e-02 + syst_JES_Gjet_Stat5: 1.00498324e-02 + syst_JES_Gjet_Stat6: 1.98916289e-02 + syst_JES_Gjet_Stat7: 3.92002203e-02 + syst_JES_Gjet_Stat8: 4.08996268e-02 + syst_JES_Gjet_Stat9: 1.19433337e-01 + syst_JES_Gjet_Veto: 7.31115728e-01 + syst_JES_Gjet_dPhi: 1.77637123e-01 + syst_JES_LArESZee: 3.25890883e+00 + syst_JES_LArEsmear: 2.43931876e-01 + syst_JES_LAr_JVT: 3.72080326e-01 + syst_JES_MJB_Alpha: 1.99644816e-03 + syst_JES_MJB_Asym: 1.11593248e-02 + syst_JES_MJB_Beta: 6.61329252e-22 + syst_JES_MJB_Fragmentation: 4.72716815e-02 + syst_JES_MJB_Stat1: 1.38000026e-02 + syst_JES_MJB_Stat10: 1.13657174e-09 + syst_JES_MJB_Stat11: 3.37611343e-22 + syst_JES_MJB_Stat12: 2.92976275e-22 + syst_JES_MJB_Stat13: 5.72531438e-15 + syst_JES_MJB_Stat14: 3.27778978e-15 + syst_JES_MJB_Stat15: 1.29499721e-29 + syst_JES_MJB_Stat16: 5.49494174e-37 + syst_JES_MJB_Stat2: 1.15130805e-02 + syst_JES_MJB_Stat3: 1.22317575e-02 + syst_JES_MJB_Stat4: 2.63094104e-04 + syst_JES_MJB_Stat5: 4.05125456e-04 + syst_JES_MJB_Stat6: 1.91478217e-05 + syst_JES_MJB_Stat7: 5.92101548e-28 + syst_JES_MJB_Stat8: 3.87113355e-43 + syst_JES_MJB_Stat9: 1.92950460e-43 + syst_JES_MJB_Threshold: 2.27891043e-02 + syst_JES_Pileup_MuOffset: 1.10541084e-02 + syst_JES_Pileup_NPVOffset: 9.93210874e-02 + syst_JES_Pileup_Pt_term: 3.67094930e-01 + syst_JES_Pileup_Rho_topology: 9.82348812e-01 + syst_JES_PunchThrough_MC15: 2.18839080e-05 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 2.7207985500584204 - syst_JES_Zjet_MuScale: 0.16182388575238205 - syst_JES_Zjet_MuSmearID: 0.031165648958428573 - syst_JES_Zjet_MuSmearMS: 0.3033005275300391 - syst_JES_Zjet_OOC: 0.8950311880040829 - syst_JES_Zjet_Stat1: 0.010881588797138037 - syst_JES_Zjet_Stat10: 0.23699457272266805 - syst_JES_Zjet_Stat11: 0.4236199712006033 - syst_JES_Zjet_Stat12: 0.5160071317336612 - syst_JES_Zjet_Stat13: 0.08344188576488429 + syst_JES_Zjet_MC: 2.72079855e+00 + syst_JES_Zjet_MuScale: 1.61823886e-01 + syst_JES_Zjet_MuSmearID: 3.11656490e-02 + syst_JES_Zjet_MuSmearMS: 3.03300528e-01 + syst_JES_Zjet_OOC: 8.95031188e-01 + syst_JES_Zjet_Stat1: 1.08815888e-02 + syst_JES_Zjet_Stat10: 2.36994573e-01 + syst_JES_Zjet_Stat11: 4.23619971e-01 + syst_JES_Zjet_Stat12: 5.16007132e-01 + syst_JES_Zjet_Stat13: 8.34418858e-02 syst_JES_Zjet_Stat2: 0.0 - syst_JES_Zjet_Stat3: 0.007679873470398088 - syst_JES_Zjet_Stat4: 0.007764131889657723 - syst_JES_Zjet_Stat5: 0.008709241987681821 - syst_JES_Zjet_Stat6: 0.012303189627084514 - syst_JES_Zjet_Stat7: 0.015324813212564778 - syst_JES_Zjet_Stat8: 0.020968048907802555 - syst_JES_Zjet_Stat9: 0.07957515488517757 - syst_JES_Zjet_Veto: 0.16111625461138301 - syst_JES_Zjet_dPhi: 0.15054580963945824 + syst_JES_Zjet_Stat3: 7.67987347e-03 + syst_JES_Zjet_Stat4: 7.76413189e-03 + syst_JES_Zjet_Stat5: 8.70924199e-03 + syst_JES_Zjet_Stat6: 1.23031896e-02 + syst_JES_Zjet_Stat7: 1.53248132e-02 + syst_JES_Zjet_Stat8: 2.09680489e-02 + syst_JES_Zjet_Stat9: 7.95751549e-02 + syst_JES_Zjet_Veto: 1.61116255e-01 + syst_JES_Zjet_dPhi: 1.50545810e-01 syst_PRW: 0.08381 syst_Unfolding_bias: 0.01608 - syst_cleaning: 0.7895553606302727 + syst_cleaning: 7.89555361e-01 syst_lumi: 3.345 - stat: 0.5059 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.38524406549614754 - syst_JER_NP1: 0.052547917894051714 - syst_JER_NP2: 0.03669264606157479 - syst_JER_NP3: 0.12642442169138052 - syst_JER_NP4: 0.07696557331040937 - syst_JER_NP5: 0.0282376273790841 - syst_JER_NP6: 0.04007869009835526 - syst_JER_NP7: 0.1190032355652568 - syst_JER_NP8: 0.09467926106069904 - syst_JES_EtaIntercalibration_Modelling: 0.013040930593711478 + syst_JER_NP0: 3.85244065e-01 + syst_JER_NP1: 5.25479179e-02 + syst_JER_NP2: 3.66926461e-02 + syst_JER_NP3: 1.26424422e-01 + syst_JER_NP4: 7.69655733e-02 + syst_JER_NP5: 2.82376274e-02 + syst_JER_NP6: 4.00786901e-02 + syst_JER_NP7: 1.19003236e-01 + syst_JER_NP8: 9.46792611e-02 + syst_JES_EtaIntercalibration_Modelling: 1.30409306e-02 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 - syst_JES_EtaIntercalibration_Stat10: 7.146320841405037e-06 - syst_JES_EtaIntercalibration_Stat100: 0.00015036119377020123 + syst_JES_EtaIntercalibration_Stat10: 7.14632084e-06 + syst_JES_EtaIntercalibration_Stat100: 1.50361194e-04 syst_JES_EtaIntercalibration_Stat101: 0.0 syst_JES_EtaIntercalibration_Stat102: 0.0 - syst_JES_EtaIntercalibration_Stat103: 1.1327612281500457e-09 - syst_JES_EtaIntercalibration_Stat104: 1.1327612281500457e-09 - syst_JES_EtaIntercalibration_Stat105: 1.1327612281500457e-09 + syst_JES_EtaIntercalibration_Stat103: 1.13276123e-09 + syst_JES_EtaIntercalibration_Stat104: 1.13276123e-09 + syst_JES_EtaIntercalibration_Stat105: 1.13276123e-09 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 7.214857638928158e-08 - syst_JES_EtaIntercalibration_Stat11: 0.00014912957453168033 - syst_JES_EtaIntercalibration_Stat110: 7.144942210228155e-08 - syst_JES_EtaIntercalibration_Stat111: 5.6066484641004553e-08 - syst_JES_EtaIntercalibration_Stat112: 5.6066484641004553e-08 + syst_JES_EtaIntercalibration_Stat109: 7.21485764e-08 + syst_JES_EtaIntercalibration_Stat11: 1.49129575e-04 + syst_JES_EtaIntercalibration_Stat110: 7.14494221e-08 + syst_JES_EtaIntercalibration_Stat111: 5.60664846e-08 + syst_JES_EtaIntercalibration_Stat112: 5.60664846e-08 syst_JES_EtaIntercalibration_Stat113: 0.0 - syst_JES_EtaIntercalibration_Stat114: 8.644665580576267e-08 - syst_JES_EtaIntercalibration_Stat115: 0.000483945355902916 - syst_JES_EtaIntercalibration_Stat116: 0.01491549431799027 - syst_JES_EtaIntercalibration_Stat117: 0.011447452325736063 - syst_JES_EtaIntercalibration_Stat118: 0.015243468658740373 - syst_JES_EtaIntercalibration_Stat119: 0.01447464509927618 - syst_JES_EtaIntercalibration_Stat12: 5.2748375216683215e-05 - syst_JES_EtaIntercalibration_Stat120: 0.00016224874329251368 - syst_JES_EtaIntercalibration_Stat121: 7.08841792997563e-07 + syst_JES_EtaIntercalibration_Stat114: 8.64466558e-08 + syst_JES_EtaIntercalibration_Stat115: 4.83945356e-04 + syst_JES_EtaIntercalibration_Stat116: 1.49154943e-02 + syst_JES_EtaIntercalibration_Stat117: 1.14474523e-02 + syst_JES_EtaIntercalibration_Stat118: 1.52434687e-02 + syst_JES_EtaIntercalibration_Stat119: 1.44746451e-02 + syst_JES_EtaIntercalibration_Stat12: 5.27483752e-05 + syst_JES_EtaIntercalibration_Stat120: 1.62248743e-04 + syst_JES_EtaIntercalibration_Stat121: 7.08841793e-07 syst_JES_EtaIntercalibration_Stat122: 0.0 - syst_JES_EtaIntercalibration_Stat123: 1.1327612281500457e-09 - syst_JES_EtaIntercalibration_Stat124: 1.1327612281500457e-09 - syst_JES_EtaIntercalibration_Stat125: 1.1327612281500457e-09 + syst_JES_EtaIntercalibration_Stat123: 1.13276123e-09 + syst_JES_EtaIntercalibration_Stat124: 1.13276123e-09 + syst_JES_EtaIntercalibration_Stat125: 1.13276123e-09 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 7.214857638928158e-08 - syst_JES_EtaIntercalibration_Stat129: 7.144942210228155e-08 + syst_JES_EtaIntercalibration_Stat128: 7.21485764e-08 + syst_JES_EtaIntercalibration_Stat129: 7.14494221e-08 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 2.1867141445557076e-09 + syst_JES_EtaIntercalibration_Stat130: 2.18671414e-09 syst_JES_EtaIntercalibration_Stat131: 0.0 syst_JES_EtaIntercalibration_Stat132: 0.0 - syst_JES_EtaIntercalibration_Stat133: 8.644665580576267e-08 - syst_JES_EtaIntercalibration_Stat134: 0.0025592848610500553 - syst_JES_EtaIntercalibration_Stat135: 0.0650172192576705 - syst_JES_EtaIntercalibration_Stat136: 0.1075855199364673 - syst_JES_EtaIntercalibration_Stat137: 0.10847644306484243 - syst_JES_EtaIntercalibration_Stat138: 0.07459061670210268 - syst_JES_EtaIntercalibration_Stat139: 0.000541636084008442 + syst_JES_EtaIntercalibration_Stat133: 8.64466558e-08 + syst_JES_EtaIntercalibration_Stat134: 2.55928486e-03 + syst_JES_EtaIntercalibration_Stat135: 6.50172193e-02 + syst_JES_EtaIntercalibration_Stat136: 1.07585520e-01 + syst_JES_EtaIntercalibration_Stat137: 1.08476443e-01 + syst_JES_EtaIntercalibration_Stat138: 7.45906167e-02 + syst_JES_EtaIntercalibration_Stat139: 5.41636084e-04 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 7.08841792997563e-07 + syst_JES_EtaIntercalibration_Stat140: 7.08841793e-07 syst_JES_EtaIntercalibration_Stat141: 0.0 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 1.1327612281500457e-09 - syst_JES_EtaIntercalibration_Stat144: 1.1327612281500457e-09 + syst_JES_EtaIntercalibration_Stat143: 1.13276123e-09 + syst_JES_EtaIntercalibration_Stat144: 1.13276123e-09 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 2.1867141445557076e-09 - syst_JES_EtaIntercalibration_Stat148: 2.1867141445557076e-09 + syst_JES_EtaIntercalibration_Stat147: 2.18671414e-09 + syst_JES_EtaIntercalibration_Stat148: 2.18671414e-09 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 syst_JES_EtaIntercalibration_Stat150: 0.0 syst_JES_EtaIntercalibration_Stat151: 0.0 - syst_JES_EtaIntercalibration_Stat152: 0.0028105773235283884 - syst_JES_EtaIntercalibration_Stat153: 0.07473314575875954 - syst_JES_EtaIntercalibration_Stat154: 0.11182518265131518 - syst_JES_EtaIntercalibration_Stat155: 0.10560915904882492 - syst_JES_EtaIntercalibration_Stat156: 0.0776142594823915 - syst_JES_EtaIntercalibration_Stat157: 0.0013730319979883933 + syst_JES_EtaIntercalibration_Stat152: 2.81057732e-03 + syst_JES_EtaIntercalibration_Stat153: 7.47331458e-02 + syst_JES_EtaIntercalibration_Stat154: 1.11825183e-01 + syst_JES_EtaIntercalibration_Stat155: 1.05609159e-01 + syst_JES_EtaIntercalibration_Stat156: 7.76142595e-02 + syst_JES_EtaIntercalibration_Stat157: 1.37303200e-03 syst_JES_EtaIntercalibration_Stat158: 0.0 syst_JES_EtaIntercalibration_Stat159: 0.0 syst_JES_EtaIntercalibration_Stat16: 0.0 @@ -4132,18 +4132,18 @@ bins: syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 2.1867141445557076e-09 + syst_JES_EtaIntercalibration_Stat165: 2.18671414e-09 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 0.0020540579349180976 - syst_JES_EtaIntercalibration_Stat171: 0.06822765128597057 - syst_JES_EtaIntercalibration_Stat172: 0.10517251007273716 - syst_JES_EtaIntercalibration_Stat173: 0.11691551180232672 - syst_JES_EtaIntercalibration_Stat174: 0.08728403333370886 - syst_JES_EtaIntercalibration_Stat175: 0.0019149421055217309 + syst_JES_EtaIntercalibration_Stat170: 2.05405793e-03 + syst_JES_EtaIntercalibration_Stat171: 6.82276513e-02 + syst_JES_EtaIntercalibration_Stat172: 1.05172510e-01 + syst_JES_EtaIntercalibration_Stat173: 1.16915512e-01 + syst_JES_EtaIntercalibration_Stat174: 8.72840333e-02 + syst_JES_EtaIntercalibration_Stat175: 1.91494211e-03 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 syst_JES_EtaIntercalibration_Stat178: 0.0 @@ -4156,14 +4156,14 @@ bins: syst_JES_EtaIntercalibration_Stat184: 0.0 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 - syst_JES_EtaIntercalibration_Stat187: 0.0002126959648300412 - syst_JES_EtaIntercalibration_Stat188: 0.05271106999483125 - syst_JES_EtaIntercalibration_Stat189: 0.05847438477658402 + syst_JES_EtaIntercalibration_Stat187: 2.12695965e-04 + syst_JES_EtaIntercalibration_Stat188: 5.27110700e-02 + syst_JES_EtaIntercalibration_Stat189: 5.84743848e-02 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 0.06526189776584802 - syst_JES_EtaIntercalibration_Stat191: 0.04947614778860618 - syst_JES_EtaIntercalibration_Stat192: 0.003622837521543024 - syst_JES_EtaIntercalibration_Stat193: 7.149039708240541e-06 + syst_JES_EtaIntercalibration_Stat190: 6.52618978e-02 + syst_JES_EtaIntercalibration_Stat191: 4.94761478e-02 + syst_JES_EtaIntercalibration_Stat192: 3.62283752e-03 + syst_JES_EtaIntercalibration_Stat193: 7.14903971e-06 syst_JES_EtaIntercalibration_Stat194: 0.0 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 @@ -4174,13 +4174,13 @@ bins: syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 syst_JES_EtaIntercalibration_Stat201: 0.0 - syst_JES_EtaIntercalibration_Stat202: 0.0008651028999489022 - syst_JES_EtaIntercalibration_Stat203: 0.011074102525712863 - syst_JES_EtaIntercalibration_Stat204: 0.01249492203857231 - syst_JES_EtaIntercalibration_Stat205: 0.012354067133944189 - syst_JES_EtaIntercalibration_Stat206: 0.008588849108000443 - syst_JES_EtaIntercalibration_Stat207: 8.82639058449149e-05 - syst_JES_EtaIntercalibration_Stat208: 7.149039708240541e-06 + syst_JES_EtaIntercalibration_Stat202: 8.65102900e-04 + syst_JES_EtaIntercalibration_Stat203: 1.10741025e-02 + syst_JES_EtaIntercalibration_Stat204: 1.24949220e-02 + syst_JES_EtaIntercalibration_Stat205: 1.23540671e-02 + syst_JES_EtaIntercalibration_Stat206: 8.58884911e-03 + syst_JES_EtaIntercalibration_Stat207: 8.82639058e-05 + syst_JES_EtaIntercalibration_Stat208: 7.14903971e-06 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 @@ -4188,38 +4188,38 @@ bins: syst_JES_EtaIntercalibration_Stat212: 0.0 syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 - syst_JES_EtaIntercalibration_Stat215: 8.822864770197942e-05 - syst_JES_EtaIntercalibration_Stat216: 0.0015185133354699261 - syst_JES_EtaIntercalibration_Stat217: 0.0017239144410323849 - syst_JES_EtaIntercalibration_Stat218: 0.0023189126762342737 - syst_JES_EtaIntercalibration_Stat219: 0.001801626487371897 + syst_JES_EtaIntercalibration_Stat215: 8.82286477e-05 + syst_JES_EtaIntercalibration_Stat216: 1.51851334e-03 + syst_JES_EtaIntercalibration_Stat217: 1.72391444e-03 + syst_JES_EtaIntercalibration_Stat218: 2.31891268e-03 + syst_JES_EtaIntercalibration_Stat219: 1.80162649e-03 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 1.4493835517212137e-05 + syst_JES_EtaIntercalibration_Stat220: 1.44938355e-05 syst_JES_EtaIntercalibration_Stat221: 0.0 syst_JES_EtaIntercalibration_Stat222: 0.0 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 - syst_JES_EtaIntercalibration_Stat227: 5.914086163488418e-11 - syst_JES_EtaIntercalibration_Stat228: 9.913430132905562e-06 - syst_JES_EtaIntercalibration_Stat229: 1.9089899816395056e-05 + syst_JES_EtaIntercalibration_Stat227: 5.91408616e-11 + syst_JES_EtaIntercalibration_Stat228: 9.91343013e-06 + syst_JES_EtaIntercalibration_Stat229: 1.90898998e-05 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 1.7270631140754526e-05 - syst_JES_EtaIntercalibration_Stat231: 2.8384991223356048e-05 - syst_JES_EtaIntercalibration_Stat232: 7.069365371092372e-06 + syst_JES_EtaIntercalibration_Stat230: 1.72706311e-05 + syst_JES_EtaIntercalibration_Stat231: 2.83849912e-05 + syst_JES_EtaIntercalibration_Stat232: 7.06936537e-06 syst_JES_EtaIntercalibration_Stat233: 0.0 syst_JES_EtaIntercalibration_Stat234: 0.0 syst_JES_EtaIntercalibration_Stat235: 0.0 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 - syst_JES_EtaIntercalibration_Stat238: 1.166189808736125e-42 - syst_JES_EtaIntercalibration_Stat239: 5.96768375376804e-12 + syst_JES_EtaIntercalibration_Stat238: 1.16618981e-42 + syst_JES_EtaIntercalibration_Stat239: 5.96768375e-12 syst_JES_EtaIntercalibration_Stat24: 0.0 - syst_JES_EtaIntercalibration_Stat240: 6.7432954145974315e-12 - syst_JES_EtaIntercalibration_Stat241: 8.910284437098515e-12 - syst_JES_EtaIntercalibration_Stat242: 8.381353055634872e-15 - syst_JES_EtaIntercalibration_Stat243: 9.332289751181111e-43 + syst_JES_EtaIntercalibration_Stat240: 6.74329541e-12 + syst_JES_EtaIntercalibration_Stat241: 8.91028444e-12 + syst_JES_EtaIntercalibration_Stat242: 8.38135306e-15 + syst_JES_EtaIntercalibration_Stat243: 9.33228975e-43 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 syst_JES_EtaIntercalibration_Stat25: 0.0 @@ -4228,12 +4228,12 @@ bins: syst_JES_EtaIntercalibration_Stat28: 0.0 syst_JES_EtaIntercalibration_Stat29: 0.0 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 8.392946588058333e-08 - syst_JES_EtaIntercalibration_Stat31: 0.0003150075673694205 - syst_JES_EtaIntercalibration_Stat32: 0.00020277365078333033 - syst_JES_EtaIntercalibration_Stat33: 1.9746631408926433e-05 - syst_JES_EtaIntercalibration_Stat34: 0.00013722356910075614 - syst_JES_EtaIntercalibration_Stat35: 6.962187766657061e-07 + syst_JES_EtaIntercalibration_Stat30: 8.39294659e-08 + syst_JES_EtaIntercalibration_Stat31: 3.15007567e-04 + syst_JES_EtaIntercalibration_Stat32: 2.02773651e-04 + syst_JES_EtaIntercalibration_Stat33: 1.97466314e-05 + syst_JES_EtaIntercalibration_Stat34: 1.37223569e-04 + syst_JES_EtaIntercalibration_Stat35: 6.96218777e-07 syst_JES_EtaIntercalibration_Stat36: 0.0 syst_JES_EtaIntercalibration_Stat37: 0.0 syst_JES_EtaIntercalibration_Stat38: 0.0 @@ -4252,215 +4252,215 @@ bins: syst_JES_EtaIntercalibration_Stat5: 0.0 syst_JES_EtaIntercalibration_Stat50: 0.0 syst_JES_EtaIntercalibration_Stat51: 0.0 - syst_JES_EtaIntercalibration_Stat52: 6.043803655122741e-07 - syst_JES_EtaIntercalibration_Stat53: 0.00015669804888064179 - syst_JES_EtaIntercalibration_Stat54: 0.000618429969762139 - syst_JES_EtaIntercalibration_Stat55: 0.0003733771395931331 - syst_JES_EtaIntercalibration_Stat56: 9.300761742997184e-05 - syst_JES_EtaIntercalibration_Stat57: 3.9110237061413975e-06 + syst_JES_EtaIntercalibration_Stat52: 6.04380366e-07 + syst_JES_EtaIntercalibration_Stat53: 1.56698049e-04 + syst_JES_EtaIntercalibration_Stat54: 6.18429970e-04 + syst_JES_EtaIntercalibration_Stat55: 3.73377140e-04 + syst_JES_EtaIntercalibration_Stat56: 9.30076174e-05 + syst_JES_EtaIntercalibration_Stat57: 3.91102371e-06 syst_JES_EtaIntercalibration_Stat58: 0.0 syst_JES_EtaIntercalibration_Stat59: 0.0 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 1.1327612281500457e-09 - syst_JES_EtaIntercalibration_Stat62: 1.1327612281500457e-09 + syst_JES_EtaIntercalibration_Stat61: 1.13276123e-09 + syst_JES_EtaIntercalibration_Stat62: 1.13276123e-09 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 7.214857638928158e-08 - syst_JES_EtaIntercalibration_Stat69: 7.214857638928158e-08 + syst_JES_EtaIntercalibration_Stat68: 7.21485764e-08 + syst_JES_EtaIntercalibration_Stat69: 7.21485764e-08 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 5.6066484641004553e-08 - syst_JES_EtaIntercalibration_Stat71: 5.6066484641004553e-08 + syst_JES_EtaIntercalibration_Stat70: 5.60664846e-08 + syst_JES_EtaIntercalibration_Stat71: 5.60664846e-08 syst_JES_EtaIntercalibration_Stat72: 0.0 syst_JES_EtaIntercalibration_Stat73: 0.0 - syst_JES_EtaIntercalibration_Stat74: 0.00017736653292194104 - syst_JES_EtaIntercalibration_Stat75: 0.0003310142780908401 - syst_JES_EtaIntercalibration_Stat76: 0.0001478404068582064 - syst_JES_EtaIntercalibration_Stat77: 0.0008417386218417211 - syst_JES_EtaIntercalibration_Stat78: 0.0006316770693954309 - syst_JES_EtaIntercalibration_Stat79: 3.842987562756351e-06 + syst_JES_EtaIntercalibration_Stat74: 1.77366533e-04 + syst_JES_EtaIntercalibration_Stat75: 3.31014278e-04 + syst_JES_EtaIntercalibration_Stat76: 1.47840407e-04 + syst_JES_EtaIntercalibration_Stat77: 8.41738622e-04 + syst_JES_EtaIntercalibration_Stat78: 6.31677069e-04 + syst_JES_EtaIntercalibration_Stat79: 3.84298756e-06 syst_JES_EtaIntercalibration_Stat8: 0.0 syst_JES_EtaIntercalibration_Stat80: 0.0 syst_JES_EtaIntercalibration_Stat81: 0.0 - syst_JES_EtaIntercalibration_Stat82: 1.1327612281500457e-09 - syst_JES_EtaIntercalibration_Stat83: 1.1327612281500457e-09 - syst_JES_EtaIntercalibration_Stat84: 1.1327612281500457e-09 + syst_JES_EtaIntercalibration_Stat82: 1.13276123e-09 + syst_JES_EtaIntercalibration_Stat83: 1.13276123e-09 + syst_JES_EtaIntercalibration_Stat84: 1.13276123e-09 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 7.214857638928158e-08 - syst_JES_EtaIntercalibration_Stat9: 0.000174136794505785 - syst_JES_EtaIntercalibration_Stat90: 7.214857638928158e-08 - syst_JES_EtaIntercalibration_Stat91: 5.6066484641004553e-08 - syst_JES_EtaIntercalibration_Stat92: 5.6066484641004553e-08 + syst_JES_EtaIntercalibration_Stat89: 7.21485764e-08 + syst_JES_EtaIntercalibration_Stat9: 1.74136795e-04 + syst_JES_EtaIntercalibration_Stat90: 7.21485764e-08 + syst_JES_EtaIntercalibration_Stat91: 5.60664846e-08 + syst_JES_EtaIntercalibration_Stat92: 5.60664846e-08 syst_JES_EtaIntercalibration_Stat93: 0.0 syst_JES_EtaIntercalibration_Stat94: 0.0 - syst_JES_EtaIntercalibration_Stat95: 0.0001778417814575641 - syst_JES_EtaIntercalibration_Stat96: 0.0005105121028927717 - syst_JES_EtaIntercalibration_Stat97: 0.0033703012847518545 - syst_JES_EtaIntercalibration_Stat98: 0.001571677030276895 - syst_JES_EtaIntercalibration_Stat99: 0.0011027578700694002 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.004572398385967697 - syst_JES_Flavour_Comp: 0.20529809424346834 - syst_JES_Flavour_Response: 1.6203857565407074 - syst_JES_Gjet_Generator: 1.7526370845100818 - syst_JES_Gjet_OOC: 1.1422404858435022 - syst_JES_Gjet_Purity: 0.35097123813782805 - syst_JES_Gjet_Stat1: 2.253322189318862e-06 - syst_JES_Gjet_Stat10: 0.12772905963405506 - syst_JES_Gjet_Stat11: 0.17902703706423787 - syst_JES_Gjet_Stat12: 0.11898790316666649 - syst_JES_Gjet_Stat13: 0.03401702037216076 - syst_JES_Gjet_Stat14: 0.022403577281318268 - syst_JES_Gjet_Stat15: 0.0015877730277026375 - syst_JES_Gjet_Stat2: 0.0029566107285200734 - syst_JES_Gjet_Stat3: 0.003260639009458116 - syst_JES_Gjet_Stat4: 0.006037433291556934 - syst_JES_Gjet_Stat5: 0.004475106367450946 - syst_JES_Gjet_Stat6: 0.00927305920395206 - syst_JES_Gjet_Stat7: 0.017850616571984283 - syst_JES_Gjet_Stat8: 0.020425999975521397 - syst_JES_Gjet_Stat9: 0.06412587367825877 - syst_JES_Gjet_Veto: 0.4722957839108878 - syst_JES_Gjet_dPhi: 0.09396059067502716 - syst_JES_LArESZee: 2.0853759852841884 - syst_JES_LArEsmear: 0.16246651193399825 - syst_JES_LAr_JVT: 0.24040415969778894 - syst_JES_MJB_Alpha: 0.004181722645035178 - syst_JES_MJB_Asym: 0.008437491377773373 - syst_JES_MJB_Beta: 1.8374293863982908e-16 - syst_JES_MJB_Fragmentation: 0.017578313343435428 - syst_JES_MJB_Stat1: 0.010914945441915869 - syst_JES_MJB_Stat10: 6.674457786966668e-08 - syst_JES_MJB_Stat11: 9.380787173793039e-17 - syst_JES_MJB_Stat12: 8.14056853447182e-17 - syst_JES_MJB_Stat13: 1.173916073448183e-11 - syst_JES_MJB_Stat14: 6.718921251039392e-12 - syst_JES_MJB_Stat15: 7.625517293928327e-23 - syst_JES_MJB_Stat16: 1.07967541418706e-28 - syst_JES_MJB_Stat2: 0.007101997090959697 - syst_JES_MJB_Stat3: 0.0028062409019897062 - syst_JES_MJB_Stat4: 0.0009399758933079081 - syst_JES_MJB_Stat5: 0.0008007099100173546 - syst_JES_MJB_Stat6: 4.30414625680866e-05 - syst_JES_MJB_Stat7: 3.486614173581792e-21 - syst_JES_MJB_Stat8: 3.156662557517142e-33 - syst_JES_MJB_Stat9: 3.119423474409335e-33 - syst_JES_MJB_Threshold: 0.007153691844076036 - syst_JES_Pileup_MuOffset: 0.025854954554204886 - syst_JES_Pileup_NPVOffset: 0.08210933001188112 - syst_JES_Pileup_Pt_term: 0.22166801190067995 - syst_JES_Pileup_Rho_topology: 0.5804827904425764 - syst_JES_PunchThrough_MC15: 0.0003367972847899868 + syst_JES_EtaIntercalibration_Stat95: 1.77841781e-04 + syst_JES_EtaIntercalibration_Stat96: 5.10512103e-04 + syst_JES_EtaIntercalibration_Stat97: 3.37030128e-03 + syst_JES_EtaIntercalibration_Stat98: 1.57167703e-03 + syst_JES_EtaIntercalibration_Stat99: 1.10275787e-03 + syst_JES_EtaIntercalibration_TotalStat_MJB: 4.57239839e-03 + syst_JES_Flavour_Comp: 2.05298094e-01 + syst_JES_Flavour_Response: 1.62038576e+00 + syst_JES_Gjet_Generator: 1.75263708e+00 + syst_JES_Gjet_OOC: 1.14224049e+00 + syst_JES_Gjet_Purity: 3.50971238e-01 + syst_JES_Gjet_Stat1: 2.25332219e-06 + syst_JES_Gjet_Stat10: 1.27729060e-01 + syst_JES_Gjet_Stat11: 1.79027037e-01 + syst_JES_Gjet_Stat12: 1.18987903e-01 + syst_JES_Gjet_Stat13: 3.40170204e-02 + syst_JES_Gjet_Stat14: 2.24035773e-02 + syst_JES_Gjet_Stat15: 1.58777303e-03 + syst_JES_Gjet_Stat2: 2.95661073e-03 + syst_JES_Gjet_Stat3: 3.26063901e-03 + syst_JES_Gjet_Stat4: 6.03743329e-03 + syst_JES_Gjet_Stat5: 4.47510637e-03 + syst_JES_Gjet_Stat6: 9.27305920e-03 + syst_JES_Gjet_Stat7: 1.78506166e-02 + syst_JES_Gjet_Stat8: 2.04260000e-02 + syst_JES_Gjet_Stat9: 6.41258737e-02 + syst_JES_Gjet_Veto: 4.72295784e-01 + syst_JES_Gjet_dPhi: 9.39605907e-02 + syst_JES_LArESZee: 2.08537599e+00 + syst_JES_LArEsmear: 1.62466512e-01 + syst_JES_LAr_JVT: 2.40404160e-01 + syst_JES_MJB_Alpha: 4.18172265e-03 + syst_JES_MJB_Asym: 8.43749138e-03 + syst_JES_MJB_Beta: 1.83742939e-16 + syst_JES_MJB_Fragmentation: 1.75783133e-02 + syst_JES_MJB_Stat1: 1.09149454e-02 + syst_JES_MJB_Stat10: 6.67445779e-08 + syst_JES_MJB_Stat11: 9.38078717e-17 + syst_JES_MJB_Stat12: 8.14056853e-17 + syst_JES_MJB_Stat13: 1.17391607e-11 + syst_JES_MJB_Stat14: 6.71892125e-12 + syst_JES_MJB_Stat15: 7.62551729e-23 + syst_JES_MJB_Stat16: 1.07967541e-28 + syst_JES_MJB_Stat2: 7.10199709e-03 + syst_JES_MJB_Stat3: 2.80624090e-03 + syst_JES_MJB_Stat4: 9.39975893e-04 + syst_JES_MJB_Stat5: 8.00709910e-04 + syst_JES_MJB_Stat6: 4.30414626e-05 + syst_JES_MJB_Stat7: 3.48661417e-21 + syst_JES_MJB_Stat8: 3.15666256e-33 + syst_JES_MJB_Stat9: 3.11942347e-33 + syst_JES_MJB_Threshold: 7.15369184e-03 + syst_JES_Pileup_MuOffset: 2.58549546e-02 + syst_JES_Pileup_NPVOffset: 8.21093300e-02 + syst_JES_Pileup_Pt_term: 2.21668012e-01 + syst_JES_Pileup_Rho_topology: 5.80482790e-01 + syst_JES_PunchThrough_MC15: 3.36797285e-04 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 1.6614069338966897 - syst_JES_Zjet_MuScale: 0.09793419972103719 - syst_JES_Zjet_MuSmearID: 0.017893621070090873 - syst_JES_Zjet_MuSmearMS: 0.22135326403737532 - syst_JES_Zjet_OOC: 0.5579000873812442 - syst_JES_Zjet_Stat1: 0.006662981389738381 - syst_JES_Zjet_Stat10: 0.11014425665916493 - syst_JES_Zjet_Stat11: 0.2045363231800161 - syst_JES_Zjet_Stat12: 0.44814721911443345 - syst_JES_Zjet_Stat13: 0.04420474862217859 + syst_JES_Zjet_MC: 1.66140693e+00 + syst_JES_Zjet_MuScale: 9.79341997e-02 + syst_JES_Zjet_MuSmearID: 1.78936211e-02 + syst_JES_Zjet_MuSmearMS: 2.21353264e-01 + syst_JES_Zjet_OOC: 5.57900087e-01 + syst_JES_Zjet_Stat1: 6.66298139e-03 + syst_JES_Zjet_Stat10: 1.10144257e-01 + syst_JES_Zjet_Stat11: 2.04536323e-01 + syst_JES_Zjet_Stat12: 4.48147219e-01 + syst_JES_Zjet_Stat13: 4.42047486e-02 syst_JES_Zjet_Stat2: 0.0 - syst_JES_Zjet_Stat3: 0.004610984087898238 - syst_JES_Zjet_Stat4: 0.004684589709889223 - syst_JES_Zjet_Stat5: 0.005238370070928551 - syst_JES_Zjet_Stat6: 0.007415247989784293 - syst_JES_Zjet_Stat7: 0.007774075941872448 - syst_JES_Zjet_Stat8: 0.009771425420582198 - syst_JES_Zjet_Stat9: 0.03869079057088391 - syst_JES_Zjet_Veto: 0.10649166481466989 - syst_JES_Zjet_dPhi: 0.09516853721162262 + syst_JES_Zjet_Stat3: 4.61098409e-03 + syst_JES_Zjet_Stat4: 4.68458971e-03 + syst_JES_Zjet_Stat5: 5.23837007e-03 + syst_JES_Zjet_Stat6: 7.41524799e-03 + syst_JES_Zjet_Stat7: 7.77407594e-03 + syst_JES_Zjet_Stat8: 9.77142542e-03 + syst_JES_Zjet_Stat9: 3.86907906e-02 + syst_JES_Zjet_Veto: 1.06491665e-01 + syst_JES_Zjet_dPhi: 9.51685372e-02 syst_PRW: 0.05258 syst_Unfolding_bias: 0.008886 - syst_cleaning: 0.4615915402171058 + syst_cleaning: 4.61591540e-01 syst_lumi: 2.019 - stat: 0.3396 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.2058281504070811 - syst_JER_NP1: 0.027491527331161503 - syst_JER_NP2: 0.020994215274689358 - syst_JER_NP3: 0.06450813437079078 - syst_JER_NP4: 0.04032652848932077 - syst_JER_NP5: 0.016806829147700646 - syst_JER_NP6: 0.018410830372365065 - syst_JER_NP7: 0.04994938713337733 - syst_JER_NP8: 0.04829057982671155 - syst_JES_EtaIntercalibration_Modelling: 0.06195165917875001 + syst_JER_NP0: 2.05828150e-01 + syst_JER_NP1: 2.74915273e-02 + syst_JER_NP2: 2.09942153e-02 + syst_JER_NP3: 6.45081344e-02 + syst_JER_NP4: 4.03265285e-02 + syst_JER_NP5: 1.68068291e-02 + syst_JER_NP6: 1.84108304e-02 + syst_JER_NP7: 4.99493871e-02 + syst_JER_NP8: 4.82905798e-02 + syst_JES_EtaIntercalibration_Modelling: 6.19516592e-02 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 - syst_JES_EtaIntercalibration_Stat10: 1.0010233392667475e-06 - syst_JES_EtaIntercalibration_Stat100: 1.888734475780013e-05 + syst_JES_EtaIntercalibration_Stat10: 1.00102334e-06 + syst_JES_EtaIntercalibration_Stat100: 1.88873448e-05 syst_JES_EtaIntercalibration_Stat101: 0.0 syst_JES_EtaIntercalibration_Stat102: 0.0 - syst_JES_EtaIntercalibration_Stat103: 1.0256338857019108e-10 - syst_JES_EtaIntercalibration_Stat104: 1.0256338857019108e-10 - syst_JES_EtaIntercalibration_Stat105: 1.0256338857019108e-10 + syst_JES_EtaIntercalibration_Stat103: 1.02563389e-10 + syst_JES_EtaIntercalibration_Stat104: 1.02563389e-10 + syst_JES_EtaIntercalibration_Stat105: 1.02563389e-10 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 6.6138360087017584e-09 - syst_JES_EtaIntercalibration_Stat11: 1.8195193733511056e-05 - syst_JES_EtaIntercalibration_Stat110: 6.5506903764030865e-09 - syst_JES_EtaIntercalibration_Stat111: 5.133798593634152e-09 - syst_JES_EtaIntercalibration_Stat112: 5.133798593634152e-09 + syst_JES_EtaIntercalibration_Stat109: 6.61383601e-09 + syst_JES_EtaIntercalibration_Stat11: 1.81951937e-05 + syst_JES_EtaIntercalibration_Stat110: 6.55069038e-09 + syst_JES_EtaIntercalibration_Stat111: 5.13379859e-09 + syst_JES_EtaIntercalibration_Stat112: 5.13379859e-09 syst_JES_EtaIntercalibration_Stat113: 0.0 - syst_JES_EtaIntercalibration_Stat114: 7.930194622454105e-09 - syst_JES_EtaIntercalibration_Stat115: 0.0001088085341322086 - syst_JES_EtaIntercalibration_Stat116: 0.004066082236010482 - syst_JES_EtaIntercalibration_Stat117: 0.003759156122057183 - syst_JES_EtaIntercalibration_Stat118: 0.005378867608521332 - syst_JES_EtaIntercalibration_Stat119: 0.004612164784567004 - syst_JES_EtaIntercalibration_Stat12: 0.00020899443607262294 - syst_JES_EtaIntercalibration_Stat120: 5.476120740770788e-05 - syst_JES_EtaIntercalibration_Stat121: 6.966308348042024e-08 + syst_JES_EtaIntercalibration_Stat114: 7.93019462e-09 + syst_JES_EtaIntercalibration_Stat115: 1.08808534e-04 + syst_JES_EtaIntercalibration_Stat116: 4.06608224e-03 + syst_JES_EtaIntercalibration_Stat117: 3.75915612e-03 + syst_JES_EtaIntercalibration_Stat118: 5.37886761e-03 + syst_JES_EtaIntercalibration_Stat119: 4.61216478e-03 + syst_JES_EtaIntercalibration_Stat12: 2.08994436e-04 + syst_JES_EtaIntercalibration_Stat120: 5.47612074e-05 + syst_JES_EtaIntercalibration_Stat121: 6.96630835e-08 syst_JES_EtaIntercalibration_Stat122: 0.0 - syst_JES_EtaIntercalibration_Stat123: 1.0256338857019108e-10 - syst_JES_EtaIntercalibration_Stat124: 1.0256338857019108e-10 - syst_JES_EtaIntercalibration_Stat125: 1.0256338857019108e-10 + syst_JES_EtaIntercalibration_Stat123: 1.02563389e-10 + syst_JES_EtaIntercalibration_Stat124: 1.02563389e-10 + syst_JES_EtaIntercalibration_Stat125: 1.02563389e-10 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 6.6138360087017584e-09 - syst_JES_EtaIntercalibration_Stat129: 6.5506903764030865e-09 + syst_JES_EtaIntercalibration_Stat128: 6.61383601e-09 + syst_JES_EtaIntercalibration_Stat129: 6.55069038e-09 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 1.9736718952247358e-10 + syst_JES_EtaIntercalibration_Stat130: 1.97367190e-10 syst_JES_EtaIntercalibration_Stat131: 0.0 syst_JES_EtaIntercalibration_Stat132: 0.0 - syst_JES_EtaIntercalibration_Stat133: 7.930194622454105e-09 - syst_JES_EtaIntercalibration_Stat134: 0.0007324454024021177 - syst_JES_EtaIntercalibration_Stat135: 0.022607956011103703 - syst_JES_EtaIntercalibration_Stat136: 0.03860754718963638 - syst_JES_EtaIntercalibration_Stat137: 0.03825679939566299 - syst_JES_EtaIntercalibration_Stat138: 0.02526241674899692 - syst_JES_EtaIntercalibration_Stat139: 0.00032623858121779526 + syst_JES_EtaIntercalibration_Stat133: 7.93019462e-09 + syst_JES_EtaIntercalibration_Stat134: 7.32445402e-04 + syst_JES_EtaIntercalibration_Stat135: 2.26079560e-02 + syst_JES_EtaIntercalibration_Stat136: 3.86075472e-02 + syst_JES_EtaIntercalibration_Stat137: 3.82567994e-02 + syst_JES_EtaIntercalibration_Stat138: 2.52624167e-02 + syst_JES_EtaIntercalibration_Stat139: 3.26238581e-04 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 6.966308348042024e-08 + syst_JES_EtaIntercalibration_Stat140: 6.96630835e-08 syst_JES_EtaIntercalibration_Stat141: 0.0 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 1.0256338857019108e-10 - syst_JES_EtaIntercalibration_Stat144: 1.0256338857019108e-10 + syst_JES_EtaIntercalibration_Stat143: 1.02563389e-10 + syst_JES_EtaIntercalibration_Stat144: 1.02563389e-10 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 1.9736718952247358e-10 - syst_JES_EtaIntercalibration_Stat148: 1.9736718952247358e-10 + syst_JES_EtaIntercalibration_Stat147: 1.97367190e-10 + syst_JES_EtaIntercalibration_Stat148: 1.97367190e-10 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 syst_JES_EtaIntercalibration_Stat150: 0.0 syst_JES_EtaIntercalibration_Stat151: 0.0 - syst_JES_EtaIntercalibration_Stat152: 0.0013258322183555835 - syst_JES_EtaIntercalibration_Stat153: 0.03093219681820223 - syst_JES_EtaIntercalibration_Stat154: 0.04646074337545623 - syst_JES_EtaIntercalibration_Stat155: 0.042260462314082654 - syst_JES_EtaIntercalibration_Stat156: 0.030722737508236467 - syst_JES_EtaIntercalibration_Stat157: 0.0005257484260556564 + syst_JES_EtaIntercalibration_Stat152: 1.32583222e-03 + syst_JES_EtaIntercalibration_Stat153: 3.09321968e-02 + syst_JES_EtaIntercalibration_Stat154: 4.64607434e-02 + syst_JES_EtaIntercalibration_Stat155: 4.22604623e-02 + syst_JES_EtaIntercalibration_Stat156: 3.07227375e-02 + syst_JES_EtaIntercalibration_Stat157: 5.25748426e-04 syst_JES_EtaIntercalibration_Stat158: 0.0 syst_JES_EtaIntercalibration_Stat159: 0.0 syst_JES_EtaIntercalibration_Stat16: 0.0 @@ -4469,18 +4469,18 @@ bins: syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 1.9736718952247358e-10 + syst_JES_EtaIntercalibration_Stat165: 1.97367190e-10 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 0.0011301145207455747 - syst_JES_EtaIntercalibration_Stat171: 0.042431179573516456 - syst_JES_EtaIntercalibration_Stat172: 0.06355846049111007 - syst_JES_EtaIntercalibration_Stat173: 0.06702645056244587 - syst_JES_EtaIntercalibration_Stat174: 0.04426303297335148 - syst_JES_EtaIntercalibration_Stat175: 0.0006564166416994621 + syst_JES_EtaIntercalibration_Stat170: 1.13011452e-03 + syst_JES_EtaIntercalibration_Stat171: 4.24311796e-02 + syst_JES_EtaIntercalibration_Stat172: 6.35584605e-02 + syst_JES_EtaIntercalibration_Stat173: 6.70264506e-02 + syst_JES_EtaIntercalibration_Stat174: 4.42630330e-02 + syst_JES_EtaIntercalibration_Stat175: 6.56416642e-04 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 syst_JES_EtaIntercalibration_Stat178: 0.0 @@ -4493,14 +4493,14 @@ bins: syst_JES_EtaIntercalibration_Stat184: 0.0 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 - syst_JES_EtaIntercalibration_Stat187: 3.5491635512493293e-05 - syst_JES_EtaIntercalibration_Stat188: 0.05218153983929566 - syst_JES_EtaIntercalibration_Stat189: 0.07287461629401557 + syst_JES_EtaIntercalibration_Stat187: 3.54916355e-05 + syst_JES_EtaIntercalibration_Stat188: 5.21815398e-02 + syst_JES_EtaIntercalibration_Stat189: 7.28746163e-02 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 0.07660766590231032 - syst_JES_EtaIntercalibration_Stat191: 0.05263351855044464 - syst_JES_EtaIntercalibration_Stat192: 0.001945760198482845 - syst_JES_EtaIntercalibration_Stat193: 2.434397410038057e-05 + syst_JES_EtaIntercalibration_Stat190: 7.66076659e-02 + syst_JES_EtaIntercalibration_Stat191: 5.26335186e-02 + syst_JES_EtaIntercalibration_Stat192: 1.94576020e-03 + syst_JES_EtaIntercalibration_Stat193: 2.43439741e-05 syst_JES_EtaIntercalibration_Stat194: 0.0 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 @@ -4511,13 +4511,13 @@ bins: syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 syst_JES_EtaIntercalibration_Stat201: 0.0 - syst_JES_EtaIntercalibration_Stat202: 0.0006911360358135003 - syst_JES_EtaIntercalibration_Stat203: 0.0027040506961778657 - syst_JES_EtaIntercalibration_Stat204: 0.00855314063663167 - syst_JES_EtaIntercalibration_Stat205: 0.001330423459532716 - syst_JES_EtaIntercalibration_Stat206: 0.0009523615017418543 - syst_JES_EtaIntercalibration_Stat207: 0.00015471499562744396 - syst_JES_EtaIntercalibration_Stat208: 2.434397410038057e-05 + syst_JES_EtaIntercalibration_Stat202: 6.91136036e-04 + syst_JES_EtaIntercalibration_Stat203: 2.70405070e-03 + syst_JES_EtaIntercalibration_Stat204: 8.55314064e-03 + syst_JES_EtaIntercalibration_Stat205: 1.33042346e-03 + syst_JES_EtaIntercalibration_Stat206: 9.52361502e-04 + syst_JES_EtaIntercalibration_Stat207: 1.54714996e-04 + syst_JES_EtaIntercalibration_Stat208: 2.43439741e-05 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 @@ -4525,38 +4525,38 @@ bins: syst_JES_EtaIntercalibration_Stat212: 0.0 syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 - syst_JES_EtaIntercalibration_Stat215: 0.00011762834819889294 - syst_JES_EtaIntercalibration_Stat216: 0.002027954881154904 - syst_JES_EtaIntercalibration_Stat217: 0.003025793243101716 - syst_JES_EtaIntercalibration_Stat218: 0.0034110445247753658 - syst_JES_EtaIntercalibration_Stat219: 0.0031177159909138615 + syst_JES_EtaIntercalibration_Stat215: 1.17628348e-04 + syst_JES_EtaIntercalibration_Stat216: 2.02795488e-03 + syst_JES_EtaIntercalibration_Stat217: 3.02579324e-03 + syst_JES_EtaIntercalibration_Stat218: 3.41104452e-03 + syst_JES_EtaIntercalibration_Stat219: 3.11771599e-03 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 6.705446443004374e-05 + syst_JES_EtaIntercalibration_Stat220: 6.70544644e-05 syst_JES_EtaIntercalibration_Stat221: 0.0 syst_JES_EtaIntercalibration_Stat222: 0.0 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 - syst_JES_EtaIntercalibration_Stat227: 1.2955583355332707e-08 - syst_JES_EtaIntercalibration_Stat228: 6.456067436915448e-06 - syst_JES_EtaIntercalibration_Stat229: 2.24972548714282e-05 + syst_JES_EtaIntercalibration_Stat227: 1.29555834e-08 + syst_JES_EtaIntercalibration_Stat228: 6.45606744e-06 + syst_JES_EtaIntercalibration_Stat229: 2.24972549e-05 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 0.0001297180599415517 - syst_JES_EtaIntercalibration_Stat231: 0.00013119334358114364 - syst_JES_EtaIntercalibration_Stat232: 2.347794869659613e-05 + syst_JES_EtaIntercalibration_Stat230: 1.29718060e-04 + syst_JES_EtaIntercalibration_Stat231: 1.31193344e-04 + syst_JES_EtaIntercalibration_Stat232: 2.34779487e-05 syst_JES_EtaIntercalibration_Stat233: 0.0 syst_JES_EtaIntercalibration_Stat234: 0.0 syst_JES_EtaIntercalibration_Stat235: 0.0 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 - syst_JES_EtaIntercalibration_Stat238: 3.363815873379517e-33 - syst_JES_EtaIntercalibration_Stat239: 1.3231313063263033e-09 + syst_JES_EtaIntercalibration_Stat238: 3.36381587e-33 + syst_JES_EtaIntercalibration_Stat239: 1.32313131e-09 syst_JES_EtaIntercalibration_Stat24: 0.0 - syst_JES_EtaIntercalibration_Stat240: 1.4946722094409195e-09 - syst_JES_EtaIntercalibration_Stat241: 1.985827472365109e-09 - syst_JES_EtaIntercalibration_Stat242: 1.1383432092629182e-11 - syst_JES_EtaIntercalibration_Stat243: 2.5383204584921897e-33 + syst_JES_EtaIntercalibration_Stat240: 1.49467221e-09 + syst_JES_EtaIntercalibration_Stat241: 1.98582747e-09 + syst_JES_EtaIntercalibration_Stat242: 1.13834321e-11 + syst_JES_EtaIntercalibration_Stat243: 2.53832046e-33 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 syst_JES_EtaIntercalibration_Stat25: 0.0 @@ -4565,12 +4565,12 @@ bins: syst_JES_EtaIntercalibration_Stat28: 0.0 syst_JES_EtaIntercalibration_Stat29: 0.0 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 7.698675073023929e-09 - syst_JES_EtaIntercalibration_Stat31: 0.0002384706254447285 - syst_JES_EtaIntercalibration_Stat32: 2.6931338102663966e-05 - syst_JES_EtaIntercalibration_Stat33: 0.00021408392139618402 - syst_JES_EtaIntercalibration_Stat34: 5.1250530396352976e-05 - syst_JES_EtaIntercalibration_Stat35: 6.846991633594645e-08 + syst_JES_EtaIntercalibration_Stat30: 7.69867507e-09 + syst_JES_EtaIntercalibration_Stat31: 2.38470625e-04 + syst_JES_EtaIntercalibration_Stat32: 2.69313381e-05 + syst_JES_EtaIntercalibration_Stat33: 2.14083921e-04 + syst_JES_EtaIntercalibration_Stat34: 5.12505304e-05 + syst_JES_EtaIntercalibration_Stat35: 6.84699163e-08 syst_JES_EtaIntercalibration_Stat36: 0.0 syst_JES_EtaIntercalibration_Stat37: 0.0 syst_JES_EtaIntercalibration_Stat38: 0.0 @@ -4589,215 +4589,215 @@ bins: syst_JES_EtaIntercalibration_Stat5: 0.0 syst_JES_EtaIntercalibration_Stat50: 0.0 syst_JES_EtaIntercalibration_Stat51: 0.0 - syst_JES_EtaIntercalibration_Stat52: 7.04563491427139e-08 - syst_JES_EtaIntercalibration_Stat53: 5.046650897377388e-05 - syst_JES_EtaIntercalibration_Stat54: 0.0002212013803641379 - syst_JES_EtaIntercalibration_Stat55: 0.0002784302150898857 - syst_JES_EtaIntercalibration_Stat56: 6.298259273799387e-05 - syst_JES_EtaIntercalibration_Stat57: 5.034459872468942e-07 + syst_JES_EtaIntercalibration_Stat52: 7.04563491e-08 + syst_JES_EtaIntercalibration_Stat53: 5.04665090e-05 + syst_JES_EtaIntercalibration_Stat54: 2.21201380e-04 + syst_JES_EtaIntercalibration_Stat55: 2.78430215e-04 + syst_JES_EtaIntercalibration_Stat56: 6.29825927e-05 + syst_JES_EtaIntercalibration_Stat57: 5.03445987e-07 syst_JES_EtaIntercalibration_Stat58: 0.0 syst_JES_EtaIntercalibration_Stat59: 0.0 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 1.0256338857019108e-10 - syst_JES_EtaIntercalibration_Stat62: 1.0256338857019108e-10 + syst_JES_EtaIntercalibration_Stat61: 1.02563389e-10 + syst_JES_EtaIntercalibration_Stat62: 1.02563389e-10 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 6.6138360087017584e-09 - syst_JES_EtaIntercalibration_Stat69: 6.6138360087017584e-09 + syst_JES_EtaIntercalibration_Stat68: 6.61383601e-09 + syst_JES_EtaIntercalibration_Stat69: 6.61383601e-09 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 5.133798593634152e-09 - syst_JES_EtaIntercalibration_Stat71: 5.133798593634152e-09 + syst_JES_EtaIntercalibration_Stat70: 5.13379859e-09 + syst_JES_EtaIntercalibration_Stat71: 5.13379859e-09 syst_JES_EtaIntercalibration_Stat72: 0.0 syst_JES_EtaIntercalibration_Stat73: 0.0 - syst_JES_EtaIntercalibration_Stat74: 5.525665211417988e-05 - syst_JES_EtaIntercalibration_Stat75: 0.0001575090711673458 - syst_JES_EtaIntercalibration_Stat76: 6.883117226228245e-05 - syst_JES_EtaIntercalibration_Stat77: 0.00011963921932209354 - syst_JES_EtaIntercalibration_Stat78: 0.00016121467224402994 - syst_JES_EtaIntercalibration_Stat79: 5.529045555066444e-07 + syst_JES_EtaIntercalibration_Stat74: 5.52566521e-05 + syst_JES_EtaIntercalibration_Stat75: 1.57509071e-04 + syst_JES_EtaIntercalibration_Stat76: 6.88311723e-05 + syst_JES_EtaIntercalibration_Stat77: 1.19639219e-04 + syst_JES_EtaIntercalibration_Stat78: 1.61214672e-04 + syst_JES_EtaIntercalibration_Stat79: 5.52904556e-07 syst_JES_EtaIntercalibration_Stat8: 0.0 syst_JES_EtaIntercalibration_Stat80: 0.0 syst_JES_EtaIntercalibration_Stat81: 0.0 - syst_JES_EtaIntercalibration_Stat82: 1.0256338857019108e-10 - syst_JES_EtaIntercalibration_Stat83: 1.0256338857019108e-10 - syst_JES_EtaIntercalibration_Stat84: 1.0256338857019108e-10 + syst_JES_EtaIntercalibration_Stat82: 1.02563389e-10 + syst_JES_EtaIntercalibration_Stat83: 1.02563389e-10 + syst_JES_EtaIntercalibration_Stat84: 1.02563389e-10 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 6.6138360087017584e-09 - syst_JES_EtaIntercalibration_Stat9: 5.499759979153635e-05 - syst_JES_EtaIntercalibration_Stat90: 6.6138360087017584e-09 - syst_JES_EtaIntercalibration_Stat91: 5.133798593634152e-09 - syst_JES_EtaIntercalibration_Stat92: 5.133798593634152e-09 + syst_JES_EtaIntercalibration_Stat89: 6.61383601e-09 + syst_JES_EtaIntercalibration_Stat9: 5.49975998e-05 + syst_JES_EtaIntercalibration_Stat90: 6.61383601e-09 + syst_JES_EtaIntercalibration_Stat91: 5.13379859e-09 + syst_JES_EtaIntercalibration_Stat92: 5.13379859e-09 syst_JES_EtaIntercalibration_Stat93: 0.0 syst_JES_EtaIntercalibration_Stat94: 0.0 - syst_JES_EtaIntercalibration_Stat95: 5.530753671433487e-05 - syst_JES_EtaIntercalibration_Stat96: 9.851023436679055e-05 - syst_JES_EtaIntercalibration_Stat97: 0.001269796915849145 - syst_JES_EtaIntercalibration_Stat98: 0.000241324858852129 - syst_JES_EtaIntercalibration_Stat99: 0.00017738251548560246 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.03439660266654253 - syst_JES_Flavour_Comp: 0.187569107264496 - syst_JES_Flavour_Response: 0.9019293320432593 - syst_JES_Gjet_Generator: 1.041594080004298 - syst_JES_Gjet_OOC: 0.7002972136885881 - syst_JES_Gjet_Purity: 0.2296505334198029 - syst_JES_Gjet_Stat1: 2.9583925228003046e-05 - syst_JES_Gjet_Stat10: 0.0659748012501743 - syst_JES_Gjet_Stat11: 0.11007559129979724 - syst_JES_Gjet_Stat12: 0.10540803859288911 - syst_JES_Gjet_Stat13: 0.010521167663334713 - syst_JES_Gjet_Stat14: 0.025230099088192265 - syst_JES_Gjet_Stat15: 0.00026944622376273903 - syst_JES_Gjet_Stat2: 0.0016134053272504093 - syst_JES_Gjet_Stat3: 0.001937714310727977 - syst_JES_Gjet_Stat4: 0.0025345308737515907 - syst_JES_Gjet_Stat5: 0.0023764183133446856 - syst_JES_Gjet_Stat6: 0.005039550649611531 - syst_JES_Gjet_Stat7: 0.009479540323770979 - syst_JES_Gjet_Stat8: 0.010583008492390054 - syst_JES_Gjet_Stat9: 0.03152840148183857 - syst_JES_Gjet_Veto: 0.30625183672918604 - syst_JES_Gjet_dPhi: 0.05040033531634487 - syst_JES_LArESZee: 1.3094664361868922 - syst_JES_LArEsmear: 0.1030236393989263 - syst_JES_LAr_JVT: 0.14742197936535786 - syst_JES_MJB_Alpha: 0.004833747304110963 - syst_JES_MJB_Asym: 0.016567536781308196 - syst_JES_MJB_Beta: 2.1839617670646158e-12 - syst_JES_MJB_Fragmentation: 0.050289116864387265 - syst_JES_MJB_Stat1: 0.007650874116726793 - syst_JES_MJB_Stat10: 8.766775162509873e-07 - syst_JES_MJB_Stat11: 1.1150943099128433e-12 - syst_JES_MJB_Stat12: 9.67682711906856e-13 - syst_JES_MJB_Stat13: 2.606700788352971e-09 - syst_JES_MJB_Stat14: 1.4898516363057767e-09 - syst_JES_MJB_Stat15: 1.0932186698003287e-17 - syst_JES_MJB_Stat16: 2.7236982211691516e-22 - syst_JES_MJB_Stat2: 0.004083435410288744 - syst_JES_MJB_Stat3: 0.004487282481265805 - syst_JES_MJB_Stat4: 0.0019309335728346533 - syst_JES_MJB_Stat5: 0.0009546783437367793 - syst_JES_MJB_Stat6: 5.114746034731435e-05 - syst_JES_MJB_Stat7: 4.997729123776286e-16 - syst_JES_MJB_Stat8: 2.120029084284216e-25 - syst_JES_MJB_Stat9: 2.0957806324962593e-25 - syst_JES_MJB_Threshold: 0.01520273221332271 - syst_JES_Pileup_MuOffset: 0.035045308887210566 - syst_JES_Pileup_NPVOffset: 0.06856101716719203 - syst_JES_Pileup_Pt_term: 0.13692051444177383 - syst_JES_Pileup_Rho_topology: 0.34425006535947095 - syst_JES_PunchThrough_MC15: 0.0015754572304810435 + syst_JES_EtaIntercalibration_Stat95: 5.53075367e-05 + syst_JES_EtaIntercalibration_Stat96: 9.85102344e-05 + syst_JES_EtaIntercalibration_Stat97: 1.26979692e-03 + syst_JES_EtaIntercalibration_Stat98: 2.41324859e-04 + syst_JES_EtaIntercalibration_Stat99: 1.77382515e-04 + syst_JES_EtaIntercalibration_TotalStat_MJB: 3.43966027e-02 + syst_JES_Flavour_Comp: 1.87569107e-01 + syst_JES_Flavour_Response: 9.01929332e-01 + syst_JES_Gjet_Generator: 1.04159408e+00 + syst_JES_Gjet_OOC: 7.00297214e-01 + syst_JES_Gjet_Purity: 2.29650533e-01 + syst_JES_Gjet_Stat1: 2.95839252e-05 + syst_JES_Gjet_Stat10: 6.59748013e-02 + syst_JES_Gjet_Stat11: 1.10075591e-01 + syst_JES_Gjet_Stat12: 1.05408039e-01 + syst_JES_Gjet_Stat13: 1.05211677e-02 + syst_JES_Gjet_Stat14: 2.52300991e-02 + syst_JES_Gjet_Stat15: 2.69446224e-04 + syst_JES_Gjet_Stat2: 1.61340533e-03 + syst_JES_Gjet_Stat3: 1.93771431e-03 + syst_JES_Gjet_Stat4: 2.53453087e-03 + syst_JES_Gjet_Stat5: 2.37641831e-03 + syst_JES_Gjet_Stat6: 5.03955065e-03 + syst_JES_Gjet_Stat7: 9.47954032e-03 + syst_JES_Gjet_Stat8: 1.05830085e-02 + syst_JES_Gjet_Stat9: 3.15284015e-02 + syst_JES_Gjet_Veto: 3.06251837e-01 + syst_JES_Gjet_dPhi: 5.04003353e-02 + syst_JES_LArESZee: 1.30946644e+00 + syst_JES_LArEsmear: 1.03023639e-01 + syst_JES_LAr_JVT: 1.47421979e-01 + syst_JES_MJB_Alpha: 4.83374730e-03 + syst_JES_MJB_Asym: 1.65675368e-02 + syst_JES_MJB_Beta: 2.18396177e-12 + syst_JES_MJB_Fragmentation: 5.02891169e-02 + syst_JES_MJB_Stat1: 7.65087412e-03 + syst_JES_MJB_Stat10: 8.76677516e-07 + syst_JES_MJB_Stat11: 1.11509431e-12 + syst_JES_MJB_Stat12: 9.67682712e-13 + syst_JES_MJB_Stat13: 2.60670079e-09 + syst_JES_MJB_Stat14: 1.48985164e-09 + syst_JES_MJB_Stat15: 1.09321867e-17 + syst_JES_MJB_Stat16: 2.72369822e-22 + syst_JES_MJB_Stat2: 4.08343541e-03 + syst_JES_MJB_Stat3: 4.48728248e-03 + syst_JES_MJB_Stat4: 1.93093357e-03 + syst_JES_MJB_Stat5: 9.54678344e-04 + syst_JES_MJB_Stat6: 5.11474603e-05 + syst_JES_MJB_Stat7: 4.99772912e-16 + syst_JES_MJB_Stat8: 2.12002908e-25 + syst_JES_MJB_Stat9: 2.09578063e-25 + syst_JES_MJB_Threshold: 1.52027322e-02 + syst_JES_Pileup_MuOffset: 3.50453089e-02 + syst_JES_Pileup_NPVOffset: 6.85610172e-02 + syst_JES_Pileup_Pt_term: 1.36920514e-01 + syst_JES_Pileup_Rho_topology: 3.44250065e-01 + syst_JES_PunchThrough_MC15: 1.57545723e-03 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.9837517369743243 - syst_JES_Zjet_MuScale: 0.05804655437663807 - syst_JES_Zjet_MuSmearID: 0.010304818484573127 - syst_JES_Zjet_MuSmearMS: 0.15437217203887493 + syst_JES_Zjet_MC: 9.83751737e-01 + syst_JES_Zjet_MuScale: 5.80465544e-02 + syst_JES_Zjet_MuSmearID: 1.03048185e-02 + syst_JES_Zjet_MuSmearMS: 1.54372172e-01 syst_JES_Zjet_OOC: 0.345 - syst_JES_Zjet_Stat1: 0.0044185937525416386 - syst_JES_Zjet_Stat10: 0.049925004506759935 - syst_JES_Zjet_Stat11: 0.08581354729878028 - syst_JES_Zjet_Stat12: 0.316306196588053 - syst_JES_Zjet_Stat13: 0.05424976751102257 + syst_JES_Zjet_Stat1: 4.41859375e-03 + syst_JES_Zjet_Stat10: 4.99250045e-02 + syst_JES_Zjet_Stat11: 8.58135473e-02 + syst_JES_Zjet_Stat12: 3.16306197e-01 + syst_JES_Zjet_Stat13: 5.42497675e-02 syst_JES_Zjet_Stat2: 0.0 - syst_JES_Zjet_Stat3: 0.002711652619400206 - syst_JES_Zjet_Stat4: 0.0027895753709122114 - syst_JES_Zjet_Stat5: 0.003114505739278706 - syst_JES_Zjet_Stat6: 0.004416380418396947 - syst_JES_Zjet_Stat7: 0.003805545690173749 - syst_JES_Zjet_Stat8: 0.0053133065740647795 - syst_JES_Zjet_Stat9: 0.01829503416230754 - syst_JES_Zjet_Veto: 0.06805263110269873 - syst_JES_Zjet_dPhi: 0.0592857409079114 + syst_JES_Zjet_Stat3: 2.71165262e-03 + syst_JES_Zjet_Stat4: 2.78957537e-03 + syst_JES_Zjet_Stat5: 3.11450574e-03 + syst_JES_Zjet_Stat6: 4.41638042e-03 + syst_JES_Zjet_Stat7: 3.80554569e-03 + syst_JES_Zjet_Stat8: 5.31330657e-03 + syst_JES_Zjet_Stat9: 1.82950342e-02 + syst_JES_Zjet_Veto: 6.80526311e-02 + syst_JES_Zjet_dPhi: 5.92857409e-02 syst_PRW: 0.0315 syst_Unfolding_bias: 0.005196 - syst_cleaning: 0.2740970402977748 + syst_cleaning: 2.74097040e-01 syst_lumi: 1.201 - stat: 0.16294 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.12022491952586203 - syst_JER_NP1: 0.014340795610774181 - syst_JER_NP2: 0.012904491427406194 - syst_JER_NP3: 0.03503580950970022 - syst_JER_NP4: 0.02158161022722818 - syst_JER_NP5: 0.010408001681398788 - syst_JER_NP6: 0.008090171119945486 - syst_JER_NP7: 0.021944129055398852 - syst_JER_NP8: 0.02670013295847045 - syst_JES_EtaIntercalibration_Modelling: 0.07429530587459748 + syst_JER_NP0: 1.20224920e-01 + syst_JER_NP1: 1.43407956e-02 + syst_JER_NP2: 1.29044914e-02 + syst_JER_NP3: 3.50358095e-02 + syst_JER_NP4: 2.15816102e-02 + syst_JER_NP5: 1.04080017e-02 + syst_JER_NP6: 8.09017112e-03 + syst_JER_NP7: 2.19441291e-02 + syst_JER_NP8: 2.67001330e-02 + syst_JES_EtaIntercalibration_Modelling: 7.42953059e-02 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 - syst_JES_EtaIntercalibration_Stat10: 1.2933956352744508e-07 - syst_JES_EtaIntercalibration_Stat100: 8.410672743603808e-07 + syst_JES_EtaIntercalibration_Stat10: 1.29339564e-07 + syst_JES_EtaIntercalibration_Stat100: 8.41067274e-07 syst_JES_EtaIntercalibration_Stat101: 0.0 syst_JES_EtaIntercalibration_Stat102: 0.0 - syst_JES_EtaIntercalibration_Stat103: 1.0691949635122679e-11 - syst_JES_EtaIntercalibration_Stat104: 1.0691949635122679e-11 - syst_JES_EtaIntercalibration_Stat105: 1.0691949635122679e-11 + syst_JES_EtaIntercalibration_Stat103: 1.06919496e-11 + syst_JES_EtaIntercalibration_Stat104: 1.06919496e-11 + syst_JES_EtaIntercalibration_Stat105: 1.06919496e-11 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 6.754998149518621e-10 - syst_JES_EtaIntercalibration_Stat11: 5.893302872753105e-07 - syst_JES_EtaIntercalibration_Stat110: 6.689593622186628e-10 - syst_JES_EtaIntercalibration_Stat111: 5.253310099356404e-10 - syst_JES_EtaIntercalibration_Stat112: 5.253310099356404e-10 + syst_JES_EtaIntercalibration_Stat109: 6.75499815e-10 + syst_JES_EtaIntercalibration_Stat11: 5.89330287e-07 + syst_JES_EtaIntercalibration_Stat110: 6.68959362e-10 + syst_JES_EtaIntercalibration_Stat111: 5.25331010e-10 + syst_JES_EtaIntercalibration_Stat112: 5.25331010e-10 syst_JES_EtaIntercalibration_Stat113: 0.0 - syst_JES_EtaIntercalibration_Stat114: 8.092141372961795e-10 - syst_JES_EtaIntercalibration_Stat115: 2.6377966183919487e-05 - syst_JES_EtaIntercalibration_Stat116: 0.0011446335865682084 - syst_JES_EtaIntercalibration_Stat117: 0.001404307041746925 - syst_JES_EtaIntercalibration_Stat118: 0.0018983220880556596 - syst_JES_EtaIntercalibration_Stat119: 0.0012084647977909824 - syst_JES_EtaIntercalibration_Stat12: 0.0001449750080469974 - syst_JES_EtaIntercalibration_Stat120: 5.283997126229347e-05 - syst_JES_EtaIntercalibration_Stat121: 7.28933582365362e-09 + syst_JES_EtaIntercalibration_Stat114: 8.09214137e-10 + syst_JES_EtaIntercalibration_Stat115: 2.63779662e-05 + syst_JES_EtaIntercalibration_Stat116: 1.14463359e-03 + syst_JES_EtaIntercalibration_Stat117: 1.40430704e-03 + syst_JES_EtaIntercalibration_Stat118: 1.89832209e-03 + syst_JES_EtaIntercalibration_Stat119: 1.20846480e-03 + syst_JES_EtaIntercalibration_Stat12: 1.44975008e-04 + syst_JES_EtaIntercalibration_Stat120: 5.28399713e-05 + syst_JES_EtaIntercalibration_Stat121: 7.28933582e-09 syst_JES_EtaIntercalibration_Stat122: 0.0 - syst_JES_EtaIntercalibration_Stat123: 1.0691949635122679e-11 - syst_JES_EtaIntercalibration_Stat124: 1.0691949635122679e-11 - syst_JES_EtaIntercalibration_Stat125: 1.0691949635122679e-11 + syst_JES_EtaIntercalibration_Stat123: 1.06919496e-11 + syst_JES_EtaIntercalibration_Stat124: 1.06919496e-11 + syst_JES_EtaIntercalibration_Stat125: 1.06919496e-11 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 6.754998149518621e-10 - syst_JES_EtaIntercalibration_Stat129: 6.689593622186628e-10 + syst_JES_EtaIntercalibration_Stat128: 6.75499815e-10 + syst_JES_EtaIntercalibration_Stat129: 6.68959362e-10 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 2.0455520037388443e-11 + syst_JES_EtaIntercalibration_Stat130: 2.04555200e-11 syst_JES_EtaIntercalibration_Stat131: 0.0 syst_JES_EtaIntercalibration_Stat132: 0.0 - syst_JES_EtaIntercalibration_Stat133: 8.092141372961795e-10 - syst_JES_EtaIntercalibration_Stat134: 0.00014272915189266695 - syst_JES_EtaIntercalibration_Stat135: 0.008157842913417737 - syst_JES_EtaIntercalibration_Stat136: 0.01450135166113835 - syst_JES_EtaIntercalibration_Stat137: 0.0137712935757684 - syst_JES_EtaIntercalibration_Stat138: 0.00884546934876833 - syst_JES_EtaIntercalibration_Stat139: 0.00012131494672957657 + syst_JES_EtaIntercalibration_Stat133: 8.09214137e-10 + syst_JES_EtaIntercalibration_Stat134: 1.42729152e-04 + syst_JES_EtaIntercalibration_Stat135: 8.15784291e-03 + syst_JES_EtaIntercalibration_Stat136: 1.45013517e-02 + syst_JES_EtaIntercalibration_Stat137: 1.37712936e-02 + syst_JES_EtaIntercalibration_Stat138: 8.84546935e-03 + syst_JES_EtaIntercalibration_Stat139: 1.21314947e-04 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 7.28933582365362e-09 + syst_JES_EtaIntercalibration_Stat140: 7.28933582e-09 syst_JES_EtaIntercalibration_Stat141: 0.0 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 1.0691949635122679e-11 - syst_JES_EtaIntercalibration_Stat144: 1.0691949635122679e-11 + syst_JES_EtaIntercalibration_Stat143: 1.06919496e-11 + syst_JES_EtaIntercalibration_Stat144: 1.06919496e-11 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 2.0455520037388443e-11 - syst_JES_EtaIntercalibration_Stat148: 2.0455520037388443e-11 + syst_JES_EtaIntercalibration_Stat147: 2.04555200e-11 + syst_JES_EtaIntercalibration_Stat148: 2.04555200e-11 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 syst_JES_EtaIntercalibration_Stat150: 0.0 syst_JES_EtaIntercalibration_Stat151: 0.0 - syst_JES_EtaIntercalibration_Stat152: 0.0004315349654977053 - syst_JES_EtaIntercalibration_Stat153: 0.012973922190301591 - syst_JES_EtaIntercalibration_Stat154: 0.018860267760559497 - syst_JES_EtaIntercalibration_Stat155: 0.016471967095644646 - syst_JES_EtaIntercalibration_Stat156: 0.012101047599278337 - syst_JES_EtaIntercalibration_Stat157: 0.00018263161692324797 + syst_JES_EtaIntercalibration_Stat152: 4.31534965e-04 + syst_JES_EtaIntercalibration_Stat153: 1.29739222e-02 + syst_JES_EtaIntercalibration_Stat154: 1.88602678e-02 + syst_JES_EtaIntercalibration_Stat155: 1.64719671e-02 + syst_JES_EtaIntercalibration_Stat156: 1.21010476e-02 + syst_JES_EtaIntercalibration_Stat157: 1.82631617e-04 syst_JES_EtaIntercalibration_Stat158: 0.0 syst_JES_EtaIntercalibration_Stat159: 0.0 syst_JES_EtaIntercalibration_Stat16: 0.0 @@ -4806,18 +4806,18 @@ bins: syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 2.0455520037388443e-11 + syst_JES_EtaIntercalibration_Stat165: 2.04555200e-11 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 0.000542378981893657 - syst_JES_EtaIntercalibration_Stat171: 0.0230736451389892 - syst_JES_EtaIntercalibration_Stat172: 0.033096034127973704 - syst_JES_EtaIntercalibration_Stat173: 0.033829361507424285 - syst_JES_EtaIntercalibration_Stat174: 0.019106222232560786 - syst_JES_EtaIntercalibration_Stat175: 0.0002474290756964508 + syst_JES_EtaIntercalibration_Stat170: 5.42378982e-04 + syst_JES_EtaIntercalibration_Stat171: 2.30736451e-02 + syst_JES_EtaIntercalibration_Stat172: 3.30960341e-02 + syst_JES_EtaIntercalibration_Stat173: 3.38293615e-02 + syst_JES_EtaIntercalibration_Stat174: 1.91062222e-02 + syst_JES_EtaIntercalibration_Stat175: 2.47429076e-04 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 syst_JES_EtaIntercalibration_Stat178: 0.0 @@ -4830,14 +4830,14 @@ bins: syst_JES_EtaIntercalibration_Stat184: 0.0 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 - syst_JES_EtaIntercalibration_Stat187: 0.00027349371387062996 - syst_JES_EtaIntercalibration_Stat188: 0.03946973882609309 - syst_JES_EtaIntercalibration_Stat189: 0.05825725791693255 + syst_JES_EtaIntercalibration_Stat187: 2.73493714e-04 + syst_JES_EtaIntercalibration_Stat188: 3.94697388e-02 + syst_JES_EtaIntercalibration_Stat189: 5.82572579e-02 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 0.057745920202209956 - syst_JES_EtaIntercalibration_Stat191: 0.039113561187265986 - syst_JES_EtaIntercalibration_Stat192: 0.000811928412792655 - syst_JES_EtaIntercalibration_Stat193: 2.1191641630605215e-05 + syst_JES_EtaIntercalibration_Stat190: 5.77459202e-02 + syst_JES_EtaIntercalibration_Stat191: 3.91135612e-02 + syst_JES_EtaIntercalibration_Stat192: 8.11928413e-04 + syst_JES_EtaIntercalibration_Stat193: 2.11916416e-05 syst_JES_EtaIntercalibration_Stat194: 0.0 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 @@ -4848,13 +4848,13 @@ bins: syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 syst_JES_EtaIntercalibration_Stat201: 0.0 - syst_JES_EtaIntercalibration_Stat202: 0.0004248541522687521 - syst_JES_EtaIntercalibration_Stat203: 0.010186217391652309 - syst_JES_EtaIntercalibration_Stat204: 0.016585225352704736 - syst_JES_EtaIntercalibration_Stat205: 0.01117059858512515 - syst_JES_EtaIntercalibration_Stat206: 0.007698197581252381 - syst_JES_EtaIntercalibration_Stat207: 0.0001763772612916699 - syst_JES_EtaIntercalibration_Stat208: 2.1191641630605215e-05 + syst_JES_EtaIntercalibration_Stat202: 4.24854152e-04 + syst_JES_EtaIntercalibration_Stat203: 1.01862174e-02 + syst_JES_EtaIntercalibration_Stat204: 1.65852254e-02 + syst_JES_EtaIntercalibration_Stat205: 1.11705986e-02 + syst_JES_EtaIntercalibration_Stat206: 7.69819758e-03 + syst_JES_EtaIntercalibration_Stat207: 1.76377261e-04 + syst_JES_EtaIntercalibration_Stat208: 2.11916416e-05 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 @@ -4862,38 +4862,38 @@ bins: syst_JES_EtaIntercalibration_Stat212: 0.0 syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 - syst_JES_EtaIntercalibration_Stat215: 4.959824795292673e-05 - syst_JES_EtaIntercalibration_Stat216: 0.002283062581271043 - syst_JES_EtaIntercalibration_Stat217: 0.00323474512133491 - syst_JES_EtaIntercalibration_Stat218: 0.0032997666837975077 - syst_JES_EtaIntercalibration_Stat219: 0.0030824475259118365 + syst_JES_EtaIntercalibration_Stat215: 4.95982480e-05 + syst_JES_EtaIntercalibration_Stat216: 2.28306258e-03 + syst_JES_EtaIntercalibration_Stat217: 3.23474512e-03 + syst_JES_EtaIntercalibration_Stat218: 3.29976668e-03 + syst_JES_EtaIntercalibration_Stat219: 3.08244753e-03 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 0.00012556907381994982 + syst_JES_EtaIntercalibration_Stat220: 1.25569074e-04 syst_JES_EtaIntercalibration_Stat221: 0.0 syst_JES_EtaIntercalibration_Stat222: 0.0 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 - syst_JES_EtaIntercalibration_Stat227: 4.31332720127986e-07 - syst_JES_EtaIntercalibration_Stat228: 9.31890385184867e-05 - syst_JES_EtaIntercalibration_Stat229: 0.00011918789200250167 + syst_JES_EtaIntercalibration_Stat227: 4.31332720e-07 + syst_JES_EtaIntercalibration_Stat228: 9.31890385e-05 + syst_JES_EtaIntercalibration_Stat229: 1.19187892e-04 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 0.00030495433674568393 - syst_JES_EtaIntercalibration_Stat231: 0.00027792593775140885 - syst_JES_EtaIntercalibration_Stat232: 1.5744341840801095e-05 + syst_JES_EtaIntercalibration_Stat230: 3.04954337e-04 + syst_JES_EtaIntercalibration_Stat231: 2.77925938e-04 + syst_JES_EtaIntercalibration_Stat232: 1.57443418e-05 syst_JES_EtaIntercalibration_Stat233: 0.0 syst_JES_EtaIntercalibration_Stat234: 0.0 syst_JES_EtaIntercalibration_Stat235: 0.0 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 - syst_JES_EtaIntercalibration_Stat238: 4.552695547694794e-26 - syst_JES_EtaIntercalibration_Stat239: 4.5929444158948846e-08 + syst_JES_EtaIntercalibration_Stat238: 4.55269555e-26 + syst_JES_EtaIntercalibration_Stat239: 4.59294442e-08 syst_JES_EtaIntercalibration_Stat24: 0.0 - syst_JES_EtaIntercalibration_Stat240: 5.1949617426406516e-08 - syst_JES_EtaIntercalibration_Stat241: 7.026145742866425e-08 - syst_JES_EtaIntercalibration_Stat242: 1.4751645018437774e-09 - syst_JES_EtaIntercalibration_Stat243: 3.4352629691917326e-26 + syst_JES_EtaIntercalibration_Stat240: 5.19496174e-08 + syst_JES_EtaIntercalibration_Stat241: 7.02614574e-08 + syst_JES_EtaIntercalibration_Stat242: 1.47516450e-09 + syst_JES_EtaIntercalibration_Stat243: 3.43526297e-26 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 syst_JES_EtaIntercalibration_Stat25: 0.0 @@ -4902,12 +4902,12 @@ bins: syst_JES_EtaIntercalibration_Stat28: 0.0 syst_JES_EtaIntercalibration_Stat29: 0.0 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 7.854693831557027e-10 - syst_JES_EtaIntercalibration_Stat31: 0.00018495192638899436 - syst_JES_EtaIntercalibration_Stat32: 1.781107932580168e-06 - syst_JES_EtaIntercalibration_Stat33: 0.0001483053746280542 - syst_JES_EtaIntercalibration_Stat34: 4.871833079929977e-05 - syst_JES_EtaIntercalibration_Stat35: 7.165706854256227e-09 + syst_JES_EtaIntercalibration_Stat30: 7.85469383e-10 + syst_JES_EtaIntercalibration_Stat31: 1.84951926e-04 + syst_JES_EtaIntercalibration_Stat32: 1.78110793e-06 + syst_JES_EtaIntercalibration_Stat33: 1.48305375e-04 + syst_JES_EtaIntercalibration_Stat34: 4.87183308e-05 + syst_JES_EtaIntercalibration_Stat35: 7.16570685e-09 syst_JES_EtaIntercalibration_Stat36: 0.0 syst_JES_EtaIntercalibration_Stat37: 0.0 syst_JES_EtaIntercalibration_Stat38: 0.0 @@ -4926,215 +4926,215 @@ bins: syst_JES_EtaIntercalibration_Stat5: 0.0 syst_JES_EtaIntercalibration_Stat50: 0.0 syst_JES_EtaIntercalibration_Stat51: 0.0 - syst_JES_EtaIntercalibration_Stat52: 8.059535555456964e-09 - syst_JES_EtaIntercalibration_Stat53: 1.2634031309554365e-05 - syst_JES_EtaIntercalibration_Stat54: 9.800555545478023e-05 - syst_JES_EtaIntercalibration_Stat55: 0.00016029827720533992 - syst_JES_EtaIntercalibration_Stat56: 5.327479705029386e-05 - syst_JES_EtaIntercalibration_Stat57: 6.253505650433202e-08 + syst_JES_EtaIntercalibration_Stat52: 8.05953556e-09 + syst_JES_EtaIntercalibration_Stat53: 1.26340313e-05 + syst_JES_EtaIntercalibration_Stat54: 9.80055555e-05 + syst_JES_EtaIntercalibration_Stat55: 1.60298277e-04 + syst_JES_EtaIntercalibration_Stat56: 5.32747971e-05 + syst_JES_EtaIntercalibration_Stat57: 6.25350565e-08 syst_JES_EtaIntercalibration_Stat58: 0.0 syst_JES_EtaIntercalibration_Stat59: 0.0 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 1.0691949635122679e-11 - syst_JES_EtaIntercalibration_Stat62: 1.0691949635122679e-11 + syst_JES_EtaIntercalibration_Stat61: 1.06919496e-11 + syst_JES_EtaIntercalibration_Stat62: 1.06919496e-11 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 6.754998149518621e-10 - syst_JES_EtaIntercalibration_Stat69: 6.754998149518621e-10 + syst_JES_EtaIntercalibration_Stat68: 6.75499815e-10 + syst_JES_EtaIntercalibration_Stat69: 6.75499815e-10 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 5.253310099356404e-10 - syst_JES_EtaIntercalibration_Stat71: 5.253310099356404e-10 + syst_JES_EtaIntercalibration_Stat70: 5.25331010e-10 + syst_JES_EtaIntercalibration_Stat71: 5.25331010e-10 syst_JES_EtaIntercalibration_Stat72: 0.0 syst_JES_EtaIntercalibration_Stat73: 0.0 - syst_JES_EtaIntercalibration_Stat74: 1.2089475500297769e-05 - syst_JES_EtaIntercalibration_Stat75: 8.616549676059437e-05 - syst_JES_EtaIntercalibration_Stat76: 4.980339019584912e-05 - syst_JES_EtaIntercalibration_Stat77: 8.268152801563358e-05 - syst_JES_EtaIntercalibration_Stat78: 8.898553407717458e-05 - syst_JES_EtaIntercalibration_Stat79: 7.211165093103889e-08 + syst_JES_EtaIntercalibration_Stat74: 1.20894755e-05 + syst_JES_EtaIntercalibration_Stat75: 8.61654968e-05 + syst_JES_EtaIntercalibration_Stat76: 4.98033902e-05 + syst_JES_EtaIntercalibration_Stat77: 8.26815280e-05 + syst_JES_EtaIntercalibration_Stat78: 8.89855341e-05 + syst_JES_EtaIntercalibration_Stat79: 7.21116509e-08 syst_JES_EtaIntercalibration_Stat8: 0.0 syst_JES_EtaIntercalibration_Stat80: 0.0 syst_JES_EtaIntercalibration_Stat81: 0.0 - syst_JES_EtaIntercalibration_Stat82: 1.0691949635122679e-11 - syst_JES_EtaIntercalibration_Stat83: 1.0691949635122679e-11 - syst_JES_EtaIntercalibration_Stat84: 1.0691949635122679e-11 + syst_JES_EtaIntercalibration_Stat82: 1.06919496e-11 + syst_JES_EtaIntercalibration_Stat83: 1.06919496e-11 + syst_JES_EtaIntercalibration_Stat84: 1.06919496e-11 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 6.754998149518621e-10 - syst_JES_EtaIntercalibration_Stat9: 1.2078924668827106e-05 - syst_JES_EtaIntercalibration_Stat90: 6.754998149518621e-10 - syst_JES_EtaIntercalibration_Stat91: 5.253310099356404e-10 - syst_JES_EtaIntercalibration_Stat92: 5.253310099356404e-10 + syst_JES_EtaIntercalibration_Stat89: 6.75499815e-10 + syst_JES_EtaIntercalibration_Stat9: 1.20789247e-05 + syst_JES_EtaIntercalibration_Stat90: 6.75499815e-10 + syst_JES_EtaIntercalibration_Stat91: 5.25331010e-10 + syst_JES_EtaIntercalibration_Stat92: 5.25331010e-10 syst_JES_EtaIntercalibration_Stat93: 0.0 syst_JES_EtaIntercalibration_Stat94: 0.0 - syst_JES_EtaIntercalibration_Stat95: 1.2096043433701782e-05 - syst_JES_EtaIntercalibration_Stat96: 8.092651666790063e-05 - syst_JES_EtaIntercalibration_Stat97: 0.0003065412473061333 - syst_JES_EtaIntercalibration_Stat98: 5.01144520772202e-05 - syst_JES_EtaIntercalibration_Stat99: 4.336996310812357e-05 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0423700212414391 - syst_JES_Flavour_Comp: 0.15805267318207564 - syst_JES_Flavour_Response: 0.5010071331827523 - syst_JES_Gjet_Generator: 0.639954894894945 - syst_JES_Gjet_OOC: 0.4434145549031967 - syst_JES_Gjet_Purity: 0.15267752781598215 - syst_JES_Gjet_Stat1: 0.00012326065888189954 - syst_JES_Gjet_Stat10: 0.03491389515651326 - syst_JES_Gjet_Stat11: 0.06219270294817552 - syst_JES_Gjet_Stat12: 0.08300721098193818 - syst_JES_Gjet_Stat13: 0.013918372139011086 - syst_JES_Gjet_Stat14: 0.020912295426375366 - syst_JES_Gjet_Stat15: 0.0019109371732215581 - syst_JES_Gjet_Stat2: 0.0009595561473931581 - syst_JES_Gjet_Stat3: 0.0011999927531031174 - syst_JES_Gjet_Stat4: 0.0013707015019689735 - syst_JES_Gjet_Stat5: 0.0014313309994547032 - syst_JES_Gjet_Stat6: 0.003055474103964882 - syst_JES_Gjet_Stat7: 0.005954198749621984 - syst_JES_Gjet_Stat8: 0.005762512212568404 - syst_JES_Gjet_Stat9: 0.016228403341056075 - syst_JES_Gjet_Veto: 0.20881551666483025 - syst_JES_Gjet_dPhi: 0.030363917731412726 - syst_JES_LArESZee: 0.844927184732507 - syst_JES_LArEsmear: 0.06563343126791407 - syst_JES_LAr_JVT: 0.09165474387613552 - syst_JES_MJB_Alpha: 0.004469552997784007 - syst_JES_MJB_Asym: 0.018084957837938134 - syst_JES_MJB_Beta: 1.6971420093792978e-09 - syst_JES_MJB_Fragmentation: 0.054715731741428804 - syst_JES_MJB_Stat1: 0.005247744467864265 - syst_JES_MJB_Stat10: 3.667617585027098e-06 - syst_JES_MJB_Stat11: 8.663718139459525e-10 - syst_JES_MJB_Stat12: 7.513320696727579e-10 - syst_JES_MJB_Stat13: 9.097401442170176e-08 - syst_JES_MJB_Stat14: 5.199781483870259e-08 - syst_JES_MJB_Stat15: 6.002016723568838e-14 - syst_JES_MJB_Stat16: 1.432237643514511e-17 - syst_JES_MJB_Stat2: 0.0034891520846761608 - syst_JES_MJB_Stat3: 0.005359218972947458 - syst_JES_MJB_Stat4: 0.0021297130148625657 - syst_JES_MJB_Stat5: 0.0014551904411450756 - syst_JES_MJB_Stat6: 4.284227565711829e-05 - syst_JES_MJB_Stat7: 2.7430247583495757e-12 - syst_JES_MJB_Stat8: 1.4904147758007166e-19 - syst_JES_MJB_Stat9: 1.4730977809455014e-19 - syst_JES_MJB_Threshold: 0.0195082034026714 - syst_JES_Pileup_MuOffset: 0.03676193785697376 - syst_JES_Pileup_NPVOffset: 0.0551626565259506 - syst_JES_Pileup_Pt_term: 0.08824530851552394 - syst_JES_Pileup_Rho_topology: 0.21260794905176994 - syst_JES_PunchThrough_MC15: 0.003114462631016786 + syst_JES_EtaIntercalibration_Stat95: 1.20960434e-05 + syst_JES_EtaIntercalibration_Stat96: 8.09265167e-05 + syst_JES_EtaIntercalibration_Stat97: 3.06541247e-04 + syst_JES_EtaIntercalibration_Stat98: 5.01144521e-05 + syst_JES_EtaIntercalibration_Stat99: 4.33699631e-05 + syst_JES_EtaIntercalibration_TotalStat_MJB: 4.23700212e-02 + syst_JES_Flavour_Comp: 1.58052673e-01 + syst_JES_Flavour_Response: 5.01007133e-01 + syst_JES_Gjet_Generator: 6.39954895e-01 + syst_JES_Gjet_OOC: 4.43414555e-01 + syst_JES_Gjet_Purity: 1.52677528e-01 + syst_JES_Gjet_Stat1: 1.23260659e-04 + syst_JES_Gjet_Stat10: 3.49138952e-02 + syst_JES_Gjet_Stat11: 6.21927029e-02 + syst_JES_Gjet_Stat12: 8.30072110e-02 + syst_JES_Gjet_Stat13: 1.39183721e-02 + syst_JES_Gjet_Stat14: 2.09122954e-02 + syst_JES_Gjet_Stat15: 1.91093717e-03 + syst_JES_Gjet_Stat2: 9.59556147e-04 + syst_JES_Gjet_Stat3: 1.19999275e-03 + syst_JES_Gjet_Stat4: 1.37070150e-03 + syst_JES_Gjet_Stat5: 1.43133100e-03 + syst_JES_Gjet_Stat6: 3.05547410e-03 + syst_JES_Gjet_Stat7: 5.95419875e-03 + syst_JES_Gjet_Stat8: 5.76251221e-03 + syst_JES_Gjet_Stat9: 1.62284033e-02 + syst_JES_Gjet_Veto: 2.08815517e-01 + syst_JES_Gjet_dPhi: 3.03639177e-02 + syst_JES_LArESZee: 8.44927185e-01 + syst_JES_LArEsmear: 6.56334313e-02 + syst_JES_LAr_JVT: 9.16547439e-02 + syst_JES_MJB_Alpha: 4.46955300e-03 + syst_JES_MJB_Asym: 1.80849578e-02 + syst_JES_MJB_Beta: 1.69714201e-09 + syst_JES_MJB_Fragmentation: 5.47157317e-02 + syst_JES_MJB_Stat1: 5.24774447e-03 + syst_JES_MJB_Stat10: 3.66761759e-06 + syst_JES_MJB_Stat11: 8.66371814e-10 + syst_JES_MJB_Stat12: 7.51332070e-10 + syst_JES_MJB_Stat13: 9.09740144e-08 + syst_JES_MJB_Stat14: 5.19978148e-08 + syst_JES_MJB_Stat15: 6.00201672e-14 + syst_JES_MJB_Stat16: 1.43223764e-17 + syst_JES_MJB_Stat2: 3.48915208e-03 + syst_JES_MJB_Stat3: 5.35921897e-03 + syst_JES_MJB_Stat4: 2.12971301e-03 + syst_JES_MJB_Stat5: 1.45519044e-03 + syst_JES_MJB_Stat6: 4.28422757e-05 + syst_JES_MJB_Stat7: 2.74302476e-12 + syst_JES_MJB_Stat8: 1.49041478e-19 + syst_JES_MJB_Stat9: 1.47309778e-19 + syst_JES_MJB_Threshold: 1.95082034e-02 + syst_JES_Pileup_MuOffset: 3.67619379e-02 + syst_JES_Pileup_NPVOffset: 5.51626565e-02 + syst_JES_Pileup_Pt_term: 8.82453085e-02 + syst_JES_Pileup_Rho_topology: 2.12607949e-01 + syst_JES_PunchThrough_MC15: 3.11446263e-03 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.5934467625659441 - syst_JES_Zjet_MuScale: 0.035818102615856134 - syst_JES_Zjet_MuSmearID: 0.0068437680228073195 - syst_JES_Zjet_MuSmearMS: 0.10883695466154868 - syst_JES_Zjet_OOC: 0.21725608737156252 - syst_JES_Zjet_Stat1: 0.003616704681059818 - syst_JES_Zjet_Stat10: 0.026031859326602083 - syst_JES_Zjet_Stat11: 0.036392865715686645 - syst_JES_Zjet_Stat12: 0.20232614759343392 - syst_JES_Zjet_Stat13: 0.062092062294628284 + syst_JES_Zjet_MC: 5.93446763e-01 + syst_JES_Zjet_MuScale: 3.58181026e-02 + syst_JES_Zjet_MuSmearID: 6.84376802e-03 + syst_JES_Zjet_MuSmearMS: 1.08836955e-01 + syst_JES_Zjet_OOC: 2.17256087e-01 + syst_JES_Zjet_Stat1: 3.61670468e-03 + syst_JES_Zjet_Stat10: 2.60318593e-02 + syst_JES_Zjet_Stat11: 3.63928657e-02 + syst_JES_Zjet_Stat12: 2.02326148e-01 + syst_JES_Zjet_Stat13: 6.20920623e-02 syst_JES_Zjet_Stat2: 0.0 - syst_JES_Zjet_Stat3: 0.0016096182179324385 - syst_JES_Zjet_Stat4: 0.001754218558219015 - syst_JES_Zjet_Stat5: 0.001928747456252373 - syst_JES_Zjet_Stat6: 0.00279521752284147 - syst_JES_Zjet_Stat7: 0.00244389709275984 - syst_JES_Zjet_Stat8: 0.00324789974445025 - syst_JES_Zjet_Stat9: 0.010373087618930056 - syst_JES_Zjet_Veto: 0.04321061675097915 - syst_JES_Zjet_dPhi: 0.036755307099791724 + syst_JES_Zjet_Stat3: 1.60961822e-03 + syst_JES_Zjet_Stat4: 1.75421856e-03 + syst_JES_Zjet_Stat5: 1.92874746e-03 + syst_JES_Zjet_Stat6: 2.79521752e-03 + syst_JES_Zjet_Stat7: 2.44389709e-03 + syst_JES_Zjet_Stat8: 3.24789974e-03 + syst_JES_Zjet_Stat9: 1.03730876e-02 + syst_JES_Zjet_Veto: 4.32106168e-02 + syst_JES_Zjet_dPhi: 3.67553071e-02 syst_PRW: 0.01953 syst_Unfolding_bias: 0.003208 - syst_cleaning: 0.16965437660137153 + syst_cleaning: 1.69654377e-01 syst_lumi: 0.7437 - stat: 0.1161 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.07059513209138431 - syst_JER_NP1: 0.005665102117349695 - syst_JER_NP2: 0.008078662807049195 - syst_JER_NP3: 0.020532600298062594 - syst_JER_NP4: 0.011758100303620478 - syst_JER_NP5: 0.006524321813031604 - syst_JER_NP6: 0.005293247162186931 - syst_JER_NP7: 0.011778560894693375 - syst_JER_NP8: 0.015823324555857405 - syst_JES_EtaIntercalibration_Modelling: 0.06890752353698397 + syst_JER_NP0: 7.05951321e-02 + syst_JER_NP1: 5.66510212e-03 + syst_JER_NP2: 8.07866281e-03 + syst_JER_NP3: 2.05326003e-02 + syst_JER_NP4: 1.17581003e-02 + syst_JER_NP5: 6.52432181e-03 + syst_JER_NP6: 5.29324716e-03 + syst_JER_NP7: 1.17785609e-02 + syst_JER_NP8: 1.58233246e-02 + syst_JES_EtaIntercalibration_Modelling: 6.89075235e-02 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 - syst_JES_EtaIntercalibration_Stat10: 1.624594025002862e-08 - syst_JES_EtaIntercalibration_Stat100: 3.022075280333036e-07 + syst_JES_EtaIntercalibration_Stat10: 1.62459403e-08 + syst_JES_EtaIntercalibration_Stat100: 3.02207528e-07 syst_JES_EtaIntercalibration_Stat101: 0.0 syst_JES_EtaIntercalibration_Stat102: 0.0 - syst_JES_EtaIntercalibration_Stat103: 1.2609329879101427e-12 - syst_JES_EtaIntercalibration_Stat104: 1.2609329879101427e-12 - syst_JES_EtaIntercalibration_Stat105: 1.2609329879101427e-12 + syst_JES_EtaIntercalibration_Stat103: 1.26093299e-12 + syst_JES_EtaIntercalibration_Stat104: 1.26093299e-12 + syst_JES_EtaIntercalibration_Stat105: 1.26093299e-12 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 7.631415858148473e-11 - syst_JES_EtaIntercalibration_Stat11: 3.0501414721287924e-07 - syst_JES_EtaIntercalibration_Stat110: 7.554997506286816e-11 - syst_JES_EtaIntercalibration_Stat111: 5.959120803440723e-11 - syst_JES_EtaIntercalibration_Stat112: 5.959120803440723e-11 + syst_JES_EtaIntercalibration_Stat109: 7.63141586e-11 + syst_JES_EtaIntercalibration_Stat11: 3.05014147e-07 + syst_JES_EtaIntercalibration_Stat110: 7.55499751e-11 + syst_JES_EtaIntercalibration_Stat111: 5.95912080e-11 + syst_JES_EtaIntercalibration_Stat112: 5.95912080e-11 syst_JES_EtaIntercalibration_Stat113: 0.0 - syst_JES_EtaIntercalibration_Stat114: 9.126175705080414e-11 - syst_JES_EtaIntercalibration_Stat115: 8.67164008752093e-06 - syst_JES_EtaIntercalibration_Stat116: 0.0002948227263967281 - syst_JES_EtaIntercalibration_Stat117: 0.0005798682156317933 - syst_JES_EtaIntercalibration_Stat118: 0.0007319621079673455 - syst_JES_EtaIntercalibration_Stat119: 0.00024723909237820785 - syst_JES_EtaIntercalibration_Stat12: 4.4972963391348314e-05 - syst_JES_EtaIntercalibration_Stat120: 7.402410858632476e-06 - syst_JES_EtaIntercalibration_Stat121: 8.176145837128887e-10 + syst_JES_EtaIntercalibration_Stat114: 9.12617571e-11 + syst_JES_EtaIntercalibration_Stat115: 8.67164009e-06 + syst_JES_EtaIntercalibration_Stat116: 2.94822726e-04 + syst_JES_EtaIntercalibration_Stat117: 5.79868216e-04 + syst_JES_EtaIntercalibration_Stat118: 7.31962108e-04 + syst_JES_EtaIntercalibration_Stat119: 2.47239092e-04 + syst_JES_EtaIntercalibration_Stat12: 4.49729634e-05 + syst_JES_EtaIntercalibration_Stat120: 7.40241086e-06 + syst_JES_EtaIntercalibration_Stat121: 8.17614584e-10 syst_JES_EtaIntercalibration_Stat122: 0.0 - syst_JES_EtaIntercalibration_Stat123: 1.2609329879101427e-12 - syst_JES_EtaIntercalibration_Stat124: 1.2609329879101427e-12 - syst_JES_EtaIntercalibration_Stat125: 1.2609329879101427e-12 + syst_JES_EtaIntercalibration_Stat123: 1.26093299e-12 + syst_JES_EtaIntercalibration_Stat124: 1.26093299e-12 + syst_JES_EtaIntercalibration_Stat125: 1.26093299e-12 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 7.631415858148473e-11 - syst_JES_EtaIntercalibration_Stat129: 7.554997506286816e-11 + syst_JES_EtaIntercalibration_Stat128: 7.63141586e-11 + syst_JES_EtaIntercalibration_Stat129: 7.55499751e-11 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 2.3936942160601887e-12 + syst_JES_EtaIntercalibration_Stat130: 2.39369422e-12 syst_JES_EtaIntercalibration_Stat131: 0.0 syst_JES_EtaIntercalibration_Stat132: 0.0 - syst_JES_EtaIntercalibration_Stat133: 9.126175705080414e-11 - syst_JES_EtaIntercalibration_Stat134: 7.577834304733773e-05 - syst_JES_EtaIntercalibration_Stat135: 0.0031330306414077726 - syst_JES_EtaIntercalibration_Stat136: 0.005678017347631125 - syst_JES_EtaIntercalibration_Stat137: 0.005284890987522827 - syst_JES_EtaIntercalibration_Stat138: 0.0033385330236497582 - syst_JES_EtaIntercalibration_Stat139: 3.174934254437405e-05 + syst_JES_EtaIntercalibration_Stat133: 9.12617571e-11 + syst_JES_EtaIntercalibration_Stat134: 7.57783430e-05 + syst_JES_EtaIntercalibration_Stat135: 3.13303064e-03 + syst_JES_EtaIntercalibration_Stat136: 5.67801735e-03 + syst_JES_EtaIntercalibration_Stat137: 5.28489099e-03 + syst_JES_EtaIntercalibration_Stat138: 3.33853302e-03 + syst_JES_EtaIntercalibration_Stat139: 3.17493425e-05 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 8.176145837128887e-10 + syst_JES_EtaIntercalibration_Stat140: 8.17614584e-10 syst_JES_EtaIntercalibration_Stat141: 0.0 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 1.2609329879101427e-12 - syst_JES_EtaIntercalibration_Stat144: 1.2609329879101427e-12 + syst_JES_EtaIntercalibration_Stat143: 1.26093299e-12 + syst_JES_EtaIntercalibration_Stat144: 1.26093299e-12 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 2.3936942160601887e-12 - syst_JES_EtaIntercalibration_Stat148: 2.3936942160601887e-12 + syst_JES_EtaIntercalibration_Stat147: 2.39369422e-12 + syst_JES_EtaIntercalibration_Stat148: 2.39369422e-12 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 syst_JES_EtaIntercalibration_Stat150: 0.0 syst_JES_EtaIntercalibration_Stat151: 0.0 - syst_JES_EtaIntercalibration_Stat152: 8.580518041459892e-05 - syst_JES_EtaIntercalibration_Stat153: 0.005512533605339744 - syst_JES_EtaIntercalibration_Stat154: 0.007498332531303209 - syst_JES_EtaIntercalibration_Stat155: 0.006687600074017585 - syst_JES_EtaIntercalibration_Stat156: 0.005029501242668104 - syst_JES_EtaIntercalibration_Stat157: 6.755585540869125e-05 + syst_JES_EtaIntercalibration_Stat152: 8.58051804e-05 + syst_JES_EtaIntercalibration_Stat153: 5.51253361e-03 + syst_JES_EtaIntercalibration_Stat154: 7.49833253e-03 + syst_JES_EtaIntercalibration_Stat155: 6.68760007e-03 + syst_JES_EtaIntercalibration_Stat156: 5.02950124e-03 + syst_JES_EtaIntercalibration_Stat157: 6.75558554e-05 syst_JES_EtaIntercalibration_Stat158: 0.0 syst_JES_EtaIntercalibration_Stat159: 0.0 syst_JES_EtaIntercalibration_Stat16: 0.0 @@ -5143,18 +5143,18 @@ bins: syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 2.3936942160601887e-12 + syst_JES_EtaIntercalibration_Stat165: 2.39369422e-12 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 0.0002515555840664246 - syst_JES_EtaIntercalibration_Stat171: 0.011321434228930538 - syst_JES_EtaIntercalibration_Stat172: 0.015438888399104388 - syst_JES_EtaIntercalibration_Stat173: 0.016169362232320728 - syst_JES_EtaIntercalibration_Stat174: 0.008134051463293062 - syst_JES_EtaIntercalibration_Stat175: 0.0001598455350486838 + syst_JES_EtaIntercalibration_Stat170: 2.51555584e-04 + syst_JES_EtaIntercalibration_Stat171: 1.13214342e-02 + syst_JES_EtaIntercalibration_Stat172: 1.54388884e-02 + syst_JES_EtaIntercalibration_Stat173: 1.61693622e-02 + syst_JES_EtaIntercalibration_Stat174: 8.13405146e-03 + syst_JES_EtaIntercalibration_Stat175: 1.59845535e-04 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 syst_JES_EtaIntercalibration_Stat178: 0.0 @@ -5167,14 +5167,14 @@ bins: syst_JES_EtaIntercalibration_Stat184: 0.0 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 - syst_JES_EtaIntercalibration_Stat187: 0.00048554316749389024 - syst_JES_EtaIntercalibration_Stat188: 0.02460773201658373 - syst_JES_EtaIntercalibration_Stat189: 0.03724965234737097 + syst_JES_EtaIntercalibration_Stat187: 4.85543167e-04 + syst_JES_EtaIntercalibration_Stat188: 2.46077320e-02 + syst_JES_EtaIntercalibration_Stat189: 3.72496523e-02 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 0.03636299492616085 - syst_JES_EtaIntercalibration_Stat191: 0.024576990763720444 - syst_JES_EtaIntercalibration_Stat192: 0.0004017808731136912 - syst_JES_EtaIntercalibration_Stat193: 6.190349586251167e-06 + syst_JES_EtaIntercalibration_Stat190: 3.63629949e-02 + syst_JES_EtaIntercalibration_Stat191: 2.45769908e-02 + syst_JES_EtaIntercalibration_Stat192: 4.01780873e-04 + syst_JES_EtaIntercalibration_Stat193: 6.19034959e-06 syst_JES_EtaIntercalibration_Stat194: 0.0 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 @@ -5185,13 +5185,13 @@ bins: syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 syst_JES_EtaIntercalibration_Stat201: 0.0 - syst_JES_EtaIntercalibration_Stat202: 0.0003544143443767478 - syst_JES_EtaIntercalibration_Stat203: 0.011574145929613986 - syst_JES_EtaIntercalibration_Stat204: 0.017436561444275644 - syst_JES_EtaIntercalibration_Stat205: 0.014763631556971342 - syst_JES_EtaIntercalibration_Stat206: 0.011225190098613029 - syst_JES_EtaIntercalibration_Stat207: 0.00014528628660338182 - syst_JES_EtaIntercalibration_Stat208: 6.190349586251167e-06 + syst_JES_EtaIntercalibration_Stat202: 3.54414344e-04 + syst_JES_EtaIntercalibration_Stat203: 1.15741459e-02 + syst_JES_EtaIntercalibration_Stat204: 1.74365614e-02 + syst_JES_EtaIntercalibration_Stat205: 1.47636316e-02 + syst_JES_EtaIntercalibration_Stat206: 1.12251901e-02 + syst_JES_EtaIntercalibration_Stat207: 1.45286287e-04 + syst_JES_EtaIntercalibration_Stat208: 6.19034959e-06 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 @@ -5199,38 +5199,38 @@ bins: syst_JES_EtaIntercalibration_Stat212: 0.0 syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 - syst_JES_EtaIntercalibration_Stat215: 5.1443505136703125e-05 - syst_JES_EtaIntercalibration_Stat216: 0.001803392699885413 - syst_JES_EtaIntercalibration_Stat217: 0.0019006296325165509 - syst_JES_EtaIntercalibration_Stat218: 0.0018888808194272078 - syst_JES_EtaIntercalibration_Stat219: 0.0018470202959564358 + syst_JES_EtaIntercalibration_Stat215: 5.14435051e-05 + syst_JES_EtaIntercalibration_Stat216: 1.80339270e-03 + syst_JES_EtaIntercalibration_Stat217: 1.90062963e-03 + syst_JES_EtaIntercalibration_Stat218: 1.88888082e-03 + syst_JES_EtaIntercalibration_Stat219: 1.84702030e-03 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 0.00012767912437043104 + syst_JES_EtaIntercalibration_Stat220: 1.27679124e-04 syst_JES_EtaIntercalibration_Stat221: 0.0 syst_JES_EtaIntercalibration_Stat222: 0.0 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 - syst_JES_EtaIntercalibration_Stat227: 3.4149271855634056e-06 - syst_JES_EtaIntercalibration_Stat228: 0.0003060229708698352 - syst_JES_EtaIntercalibration_Stat229: 0.0004610101598663527 + syst_JES_EtaIntercalibration_Stat227: 3.41492719e-06 + syst_JES_EtaIntercalibration_Stat228: 3.06022971e-04 + syst_JES_EtaIntercalibration_Stat229: 4.61010160e-04 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 0.00044240443035756325 - syst_JES_EtaIntercalibration_Stat231: 0.00039785357859393447 - syst_JES_EtaIntercalibration_Stat232: 2.3486608950633976e-05 + syst_JES_EtaIntercalibration_Stat230: 4.42404430e-04 + syst_JES_EtaIntercalibration_Stat231: 3.97853579e-04 + syst_JES_EtaIntercalibration_Stat232: 2.34866090e-05 syst_JES_EtaIntercalibration_Stat233: 0.0 syst_JES_EtaIntercalibration_Stat234: 0.0 syst_JES_EtaIntercalibration_Stat235: 0.0 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 - syst_JES_EtaIntercalibration_Stat238: 1.0827049598113051e-20 - syst_JES_EtaIntercalibration_Stat239: 3.911572925307669e-07 + syst_JES_EtaIntercalibration_Stat238: 1.08270496e-20 + syst_JES_EtaIntercalibration_Stat239: 3.91157293e-07 syst_JES_EtaIntercalibration_Stat24: 0.0 - syst_JES_EtaIntercalibration_Stat240: 4.439369176752481e-07 - syst_JES_EtaIntercalibration_Stat241: 6.24387033417575e-07 - syst_JES_EtaIntercalibration_Stat242: 3.0419041322829355e-08 - syst_JES_EtaIntercalibration_Stat243: 8.16921763389861e-21 + syst_JES_EtaIntercalibration_Stat240: 4.43936918e-07 + syst_JES_EtaIntercalibration_Stat241: 6.24387033e-07 + syst_JES_EtaIntercalibration_Stat242: 3.04190413e-08 + syst_JES_EtaIntercalibration_Stat243: 8.16921763e-21 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 syst_JES_EtaIntercalibration_Stat25: 0.0 @@ -5239,12 +5239,12 @@ bins: syst_JES_EtaIntercalibration_Stat28: 0.0 syst_JES_EtaIntercalibration_Stat29: 0.0 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 8.856341610394216e-11 - syst_JES_EtaIntercalibration_Stat31: 0.00012489031467651925 - syst_JES_EtaIntercalibration_Stat32: 3.7770282961608856e-07 - syst_JES_EtaIntercalibration_Stat33: 4.6101568965655336e-05 - syst_JES_EtaIntercalibration_Stat34: 5.514996613988081e-06 - syst_JES_EtaIntercalibration_Stat35: 8.036115713324769e-10 + syst_JES_EtaIntercalibration_Stat30: 8.85634161e-11 + syst_JES_EtaIntercalibration_Stat31: 1.24890315e-04 + syst_JES_EtaIntercalibration_Stat32: 3.77702830e-07 + syst_JES_EtaIntercalibration_Stat33: 4.61015690e-05 + syst_JES_EtaIntercalibration_Stat34: 5.51499661e-06 + syst_JES_EtaIntercalibration_Stat35: 8.03611571e-10 syst_JES_EtaIntercalibration_Stat36: 0.0 syst_JES_EtaIntercalibration_Stat37: 0.0 syst_JES_EtaIntercalibration_Stat38: 0.0 @@ -5263,215 +5263,215 @@ bins: syst_JES_EtaIntercalibration_Stat5: 0.0 syst_JES_EtaIntercalibration_Stat50: 0.0 syst_JES_EtaIntercalibration_Stat51: 0.0 - syst_JES_EtaIntercalibration_Stat52: 9.369703793176975e-10 - syst_JES_EtaIntercalibration_Stat53: 2.5887127941652776e-06 - syst_JES_EtaIntercalibration_Stat54: 6.374606027041985e-05 - syst_JES_EtaIntercalibration_Stat55: 4.874348845743399e-05 - syst_JES_EtaIntercalibration_Stat56: 7.203501876171061e-06 - syst_JES_EtaIntercalibration_Stat57: 7.708335156179964e-09 + syst_JES_EtaIntercalibration_Stat52: 9.36970379e-10 + syst_JES_EtaIntercalibration_Stat53: 2.58871279e-06 + syst_JES_EtaIntercalibration_Stat54: 6.37460603e-05 + syst_JES_EtaIntercalibration_Stat55: 4.87434885e-05 + syst_JES_EtaIntercalibration_Stat56: 7.20350188e-06 + syst_JES_EtaIntercalibration_Stat57: 7.70833516e-09 syst_JES_EtaIntercalibration_Stat58: 0.0 syst_JES_EtaIntercalibration_Stat59: 0.0 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 1.2609329879101427e-12 - syst_JES_EtaIntercalibration_Stat62: 1.2609329879101427e-12 + syst_JES_EtaIntercalibration_Stat61: 1.26093299e-12 + syst_JES_EtaIntercalibration_Stat62: 1.26093299e-12 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 7.631415858148473e-11 - syst_JES_EtaIntercalibration_Stat69: 7.631415858148473e-11 + syst_JES_EtaIntercalibration_Stat68: 7.63141586e-11 + syst_JES_EtaIntercalibration_Stat69: 7.63141586e-11 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 5.959120803440723e-11 - syst_JES_EtaIntercalibration_Stat71: 5.959120803440723e-11 + syst_JES_EtaIntercalibration_Stat70: 5.95912080e-11 + syst_JES_EtaIntercalibration_Stat71: 5.95912080e-11 syst_JES_EtaIntercalibration_Stat72: 0.0 syst_JES_EtaIntercalibration_Stat73: 0.0 - syst_JES_EtaIntercalibration_Stat74: 2.157841311745375e-06 - syst_JES_EtaIntercalibration_Stat75: 5.6877046336813236e-05 - syst_JES_EtaIntercalibration_Stat76: 2.669572390852138e-05 - syst_JES_EtaIntercalibration_Stat77: 1.4699125169546654e-05 - syst_JES_EtaIntercalibration_Stat78: 2.190035974019605e-05 - syst_JES_EtaIntercalibration_Stat79: 9.078042781899631e-09 + syst_JES_EtaIntercalibration_Stat74: 2.15784131e-06 + syst_JES_EtaIntercalibration_Stat75: 5.68770463e-05 + syst_JES_EtaIntercalibration_Stat76: 2.66957239e-05 + syst_JES_EtaIntercalibration_Stat77: 1.46991252e-05 + syst_JES_EtaIntercalibration_Stat78: 2.19003597e-05 + syst_JES_EtaIntercalibration_Stat79: 9.07804278e-09 syst_JES_EtaIntercalibration_Stat8: 0.0 syst_JES_EtaIntercalibration_Stat80: 0.0 syst_JES_EtaIntercalibration_Stat81: 0.0 - syst_JES_EtaIntercalibration_Stat82: 1.2609329879101427e-12 - syst_JES_EtaIntercalibration_Stat83: 1.2609329879101427e-12 - syst_JES_EtaIntercalibration_Stat84: 1.2609329879101427e-12 + syst_JES_EtaIntercalibration_Stat82: 1.26093299e-12 + syst_JES_EtaIntercalibration_Stat83: 1.26093299e-12 + syst_JES_EtaIntercalibration_Stat84: 1.26093299e-12 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 7.631415858148473e-11 - syst_JES_EtaIntercalibration_Stat9: 2.1589917165387642e-06 - syst_JES_EtaIntercalibration_Stat90: 7.631415858148473e-11 - syst_JES_EtaIntercalibration_Stat91: 5.959120803440723e-11 - syst_JES_EtaIntercalibration_Stat92: 5.959120803440723e-11 + syst_JES_EtaIntercalibration_Stat89: 7.63141586e-11 + syst_JES_EtaIntercalibration_Stat9: 2.15899172e-06 + syst_JES_EtaIntercalibration_Stat90: 7.63141586e-11 + syst_JES_EtaIntercalibration_Stat91: 5.95912080e-11 + syst_JES_EtaIntercalibration_Stat92: 5.95912080e-11 syst_JES_EtaIntercalibration_Stat93: 0.0 syst_JES_EtaIntercalibration_Stat94: 0.0 - syst_JES_EtaIntercalibration_Stat95: 2.158427824412945e-06 - syst_JES_EtaIntercalibration_Stat96: 4.039736129996612e-05 - syst_JES_EtaIntercalibration_Stat97: 5.391258920697466e-05 - syst_JES_EtaIntercalibration_Stat98: 1.5312883464586283e-05 - syst_JES_EtaIntercalibration_Stat99: 1.2801440231473957e-05 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.039354158925709495 - syst_JES_Flavour_Comp: 0.1270700125914844 - syst_JES_Flavour_Response: 0.27147586909336896 - syst_JES_Gjet_Generator: 0.400832964057349 - syst_JES_Gjet_OOC: 0.2864939920836037 - syst_JES_Gjet_Purity: 0.10125222009911684 - syst_JES_Gjet_Stat1: 0.00023253255014083512 - syst_JES_Gjet_Stat10: 0.01882104141645727 - syst_JES_Gjet_Stat11: 0.033805213725104595 - syst_JES_Gjet_Stat12: 0.05956255367258862 - syst_JES_Gjet_Stat13: 0.028115990112389782 - syst_JES_Gjet_Stat14: 0.013930318329097866 - syst_JES_Gjet_Stat15: 0.0029018691820962574 - syst_JES_Gjet_Stat2: 0.0005934006066730973 - syst_JES_Gjet_Stat3: 0.0007521650550244939 - syst_JES_Gjet_Stat4: 0.0008706339112968204 - syst_JES_Gjet_Stat5: 0.0008919248903355036 - syst_JES_Gjet_Stat6: 0.0019244123778442083 - syst_JES_Gjet_Stat7: 0.004019196934712207 - syst_JES_Gjet_Stat8: 0.003282102619891706 - syst_JES_Gjet_Stat9: 0.009007375644437175 - syst_JES_Gjet_Veto: 0.14851319806670385 - syst_JES_Gjet_dPhi: 0.020243500191419465 - syst_JES_LArESZee: 0.5497230461787099 - syst_JES_LArEsmear: 0.0425758038679248 - syst_JES_LAr_JVT: 0.0582384003471936 - syst_JES_MJB_Alpha: 0.0039701096647321975 - syst_JES_MJB_Asym: 0.015782207545207358 - syst_JES_MJB_Beta: 1.723715391240677e-07 - syst_JES_MJB_Fragmentation: 0.047346166423481426 - syst_JES_MJB_Stat1: 0.003467517123245392 - syst_JES_MJB_Stat10: 7.0338583295369414e-06 - syst_JES_MJB_Stat11: 8.797952077046112e-08 - syst_JES_MJB_Stat12: 7.609850516350502e-08 - syst_JES_MJB_Stat13: 7.780236548460464e-07 - syst_JES_MJB_Stat14: 4.704081864455592e-07 - syst_JES_MJB_Stat15: 2.852816503036955e-11 - syst_JES_MJB_Stat16: 4.086594181895237e-14 - syst_JES_MJB_Stat2: 0.0035191215878397834 - syst_JES_MJB_Stat3: 0.005118978682315448 - syst_JES_MJB_Stat4: 0.0012843388339141661 - syst_JES_MJB_Stat5: 0.0016901456172472244 - syst_JES_MJB_Stat6: 3.0267080694052524e-05 - syst_JES_MJB_Stat7: 1.3018242872626859e-09 - syst_JES_MJB_Stat8: 3.3472659613004175e-15 - syst_JES_MJB_Stat9: 3.3083782991330003e-15 - syst_JES_MJB_Threshold: 0.018670658129803567 - syst_JES_Pileup_MuOffset: 0.03315209608757793 - syst_JES_Pileup_NPVOffset: 0.04267052144045114 - syst_JES_Pileup_Pt_term: 0.0574680213249073 - syst_JES_Pileup_Rho_topology: 0.1331509200118422 - syst_JES_PunchThrough_MC15: 0.0035238613320475597 + syst_JES_EtaIntercalibration_Stat95: 2.15842782e-06 + syst_JES_EtaIntercalibration_Stat96: 4.03973613e-05 + syst_JES_EtaIntercalibration_Stat97: 5.39125892e-05 + syst_JES_EtaIntercalibration_Stat98: 1.53128835e-05 + syst_JES_EtaIntercalibration_Stat99: 1.28014402e-05 + syst_JES_EtaIntercalibration_TotalStat_MJB: 3.93541589e-02 + syst_JES_Flavour_Comp: 1.27070013e-01 + syst_JES_Flavour_Response: 2.71475869e-01 + syst_JES_Gjet_Generator: 4.00832964e-01 + syst_JES_Gjet_OOC: 2.86493992e-01 + syst_JES_Gjet_Purity: 1.01252220e-01 + syst_JES_Gjet_Stat1: 2.32532550e-04 + syst_JES_Gjet_Stat10: 1.88210414e-02 + syst_JES_Gjet_Stat11: 3.38052137e-02 + syst_JES_Gjet_Stat12: 5.95625537e-02 + syst_JES_Gjet_Stat13: 2.81159901e-02 + syst_JES_Gjet_Stat14: 1.39303183e-02 + syst_JES_Gjet_Stat15: 2.90186918e-03 + syst_JES_Gjet_Stat2: 5.93400607e-04 + syst_JES_Gjet_Stat3: 7.52165055e-04 + syst_JES_Gjet_Stat4: 8.70633911e-04 + syst_JES_Gjet_Stat5: 8.91924890e-04 + syst_JES_Gjet_Stat6: 1.92441238e-03 + syst_JES_Gjet_Stat7: 4.01919693e-03 + syst_JES_Gjet_Stat8: 3.28210262e-03 + syst_JES_Gjet_Stat9: 9.00737564e-03 + syst_JES_Gjet_Veto: 1.48513198e-01 + syst_JES_Gjet_dPhi: 2.02435002e-02 + syst_JES_LArESZee: 5.49723046e-01 + syst_JES_LArEsmear: 4.25758039e-02 + syst_JES_LAr_JVT: 5.82384003e-02 + syst_JES_MJB_Alpha: 3.97010966e-03 + syst_JES_MJB_Asym: 1.57822075e-02 + syst_JES_MJB_Beta: 1.72371539e-07 + syst_JES_MJB_Fragmentation: 4.73461664e-02 + syst_JES_MJB_Stat1: 3.46751712e-03 + syst_JES_MJB_Stat10: 7.03385833e-06 + syst_JES_MJB_Stat11: 8.79795208e-08 + syst_JES_MJB_Stat12: 7.60985052e-08 + syst_JES_MJB_Stat13: 7.78023655e-07 + syst_JES_MJB_Stat14: 4.70408186e-07 + syst_JES_MJB_Stat15: 2.85281650e-11 + syst_JES_MJB_Stat16: 4.08659418e-14 + syst_JES_MJB_Stat2: 3.51912159e-03 + syst_JES_MJB_Stat3: 5.11897868e-03 + syst_JES_MJB_Stat4: 1.28433883e-03 + syst_JES_MJB_Stat5: 1.69014562e-03 + syst_JES_MJB_Stat6: 3.02670807e-05 + syst_JES_MJB_Stat7: 1.30182429e-09 + syst_JES_MJB_Stat8: 3.34726596e-15 + syst_JES_MJB_Stat9: 3.30837830e-15 + syst_JES_MJB_Threshold: 1.86706581e-02 + syst_JES_Pileup_MuOffset: 3.31520961e-02 + syst_JES_Pileup_NPVOffset: 4.26705214e-02 + syst_JES_Pileup_Pt_term: 5.74680213e-02 + syst_JES_Pileup_Rho_topology: 1.33150920e-01 + syst_JES_PunchThrough_MC15: 3.52386133e-03 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.35931401308604705 - syst_JES_Zjet_MuScale: 0.02276539643845457 - syst_JES_Zjet_MuSmearID: 0.00470081554094606 - syst_JES_Zjet_MuSmearMS: 0.07610511858607147 - syst_JES_Zjet_OOC: 0.1364407981506998 - syst_JES_Zjet_Stat1: 0.0032014212015915675 - syst_JES_Zjet_Stat10: 0.015025598157810557 - syst_JES_Zjet_Stat11: 0.016965649854927458 - syst_JES_Zjet_Stat12: 0.12000352161499261 - syst_JES_Zjet_Stat13: 0.05715946181517107 + syst_JES_Zjet_MC: 3.59314013e-01 + syst_JES_Zjet_MuScale: 2.27653964e-02 + syst_JES_Zjet_MuSmearID: 4.70081554e-03 + syst_JES_Zjet_MuSmearMS: 7.61051186e-02 + syst_JES_Zjet_OOC: 1.36440798e-01 + syst_JES_Zjet_Stat1: 3.20142120e-03 + syst_JES_Zjet_Stat10: 1.50255982e-02 + syst_JES_Zjet_Stat11: 1.69656499e-02 + syst_JES_Zjet_Stat12: 1.20003522e-01 + syst_JES_Zjet_Stat13: 5.71594618e-02 syst_JES_Zjet_Stat2: 0.0 - syst_JES_Zjet_Stat3: 0.0010739772902626946 - syst_JES_Zjet_Stat4: 0.00119709160363775 - syst_JES_Zjet_Stat5: 0.0012088369151792148 - syst_JES_Zjet_Stat6: 0.0019564718244840635 - syst_JES_Zjet_Stat7: 0.002176560302403772 - syst_JES_Zjet_Stat8: 0.0021287171606392432 - syst_JES_Zjet_Stat9: 0.0066244945467560015 - syst_JES_Zjet_Veto: 0.027794925795907425 - syst_JES_Zjet_dPhi: 0.02299672150546682 + syst_JES_Zjet_Stat3: 1.07397729e-03 + syst_JES_Zjet_Stat4: 1.19709160e-03 + syst_JES_Zjet_Stat5: 1.20883692e-03 + syst_JES_Zjet_Stat6: 1.95647182e-03 + syst_JES_Zjet_Stat7: 2.17656030e-03 + syst_JES_Zjet_Stat8: 2.12871716e-03 + syst_JES_Zjet_Stat9: 6.62449455e-03 + syst_JES_Zjet_Veto: 2.77949258e-02 + syst_JES_Zjet_dPhi: 2.29967215e-02 syst_PRW: 0.012243 syst_Unfolding_bias: 0.00201 - syst_cleaning: 0.1164024745226664 + syst_cleaning: 1.16402475e-01 syst_lumi: 0.4662 - stat: 0.08091 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.040916293514931194 - syst_JER_NP1: 0.0011156999058886759 - syst_JER_NP2: 0.005047988980772441 - syst_JER_NP3: 0.01288013190926242 - syst_JER_NP4: 0.00675432313411196 - syst_JER_NP5: 0.004077525475089027 - syst_JER_NP6: 0.004471925619909169 - syst_JER_NP7: 0.008016747969095699 - syst_JER_NP8: 0.009671747760875486 - syst_JES_EtaIntercalibration_Modelling: 0.05707720801686081 + syst_JER_NP0: 4.09162935e-02 + syst_JER_NP1: 1.11569991e-03 + syst_JER_NP2: 5.04798898e-03 + syst_JER_NP3: 1.28801319e-02 + syst_JER_NP4: 6.75432313e-03 + syst_JER_NP5: 4.07752548e-03 + syst_JER_NP6: 4.47192562e-03 + syst_JER_NP7: 8.01674797e-03 + syst_JER_NP8: 9.67174776e-03 + syst_JES_EtaIntercalibration_Modelling: 5.70772080e-02 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 - syst_JES_EtaIntercalibration_Stat10: 1.939168509458371e-09 - syst_JES_EtaIntercalibration_Stat100: 9.135114652810879e-08 + syst_JES_EtaIntercalibration_Stat10: 1.93916851e-09 + syst_JES_EtaIntercalibration_Stat100: 9.13511465e-08 syst_JES_EtaIntercalibration_Stat101: 0.0 syst_JES_EtaIntercalibration_Stat102: 0.0 - syst_JES_EtaIntercalibration_Stat103: 1.5796303365028161e-13 - syst_JES_EtaIntercalibration_Stat104: 1.5796303365028161e-13 - syst_JES_EtaIntercalibration_Stat105: 1.5796303365028161e-13 + syst_JES_EtaIntercalibration_Stat103: 1.57963034e-13 + syst_JES_EtaIntercalibration_Stat104: 1.57963034e-13 + syst_JES_EtaIntercalibration_Stat105: 1.57963034e-13 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 8.995405869108965e-12 - syst_JES_EtaIntercalibration_Stat11: 9.221438499496702e-08 - syst_JES_EtaIntercalibration_Stat110: 8.900902466604158e-12 - syst_JES_EtaIntercalibration_Stat111: 7.065901269477235e-12 - syst_JES_EtaIntercalibration_Stat112: 7.065901269477235e-12 + syst_JES_EtaIntercalibration_Stat109: 8.99540587e-12 + syst_JES_EtaIntercalibration_Stat11: 9.22143850e-08 + syst_JES_EtaIntercalibration_Stat110: 8.90090247e-12 + syst_JES_EtaIntercalibration_Stat111: 7.06590127e-12 + syst_JES_EtaIntercalibration_Stat112: 7.06590127e-12 syst_JES_EtaIntercalibration_Stat113: 0.0 - syst_JES_EtaIntercalibration_Stat114: 1.0728322702081625e-11 - syst_JES_EtaIntercalibration_Stat115: 2.4540376423355857e-06 - syst_JES_EtaIntercalibration_Stat116: 0.00011927816684854779 - syst_JES_EtaIntercalibration_Stat117: 0.00023707283690882852 - syst_JES_EtaIntercalibration_Stat118: 0.00028042795866318326 - syst_JES_EtaIntercalibration_Stat119: 3.203471159539289e-05 - syst_JES_EtaIntercalibration_Stat12: 3.870237343695624e-06 - syst_JES_EtaIntercalibration_Stat120: 1.4768978554452406e-05 - syst_JES_EtaIntercalibration_Stat121: 9.347878208449232e-11 + syst_JES_EtaIntercalibration_Stat114: 1.07283227e-11 + syst_JES_EtaIntercalibration_Stat115: 2.45403764e-06 + syst_JES_EtaIntercalibration_Stat116: 1.19278167e-04 + syst_JES_EtaIntercalibration_Stat117: 2.37072837e-04 + syst_JES_EtaIntercalibration_Stat118: 2.80427959e-04 + syst_JES_EtaIntercalibration_Stat119: 3.20347116e-05 + syst_JES_EtaIntercalibration_Stat12: 3.87023734e-06 + syst_JES_EtaIntercalibration_Stat120: 1.47689786e-05 + syst_JES_EtaIntercalibration_Stat121: 9.34787821e-11 syst_JES_EtaIntercalibration_Stat122: 0.0 - syst_JES_EtaIntercalibration_Stat123: 1.5796303365028161e-13 - syst_JES_EtaIntercalibration_Stat124: 1.5796303365028161e-13 - syst_JES_EtaIntercalibration_Stat125: 1.5796303365028161e-13 + syst_JES_EtaIntercalibration_Stat123: 1.57963034e-13 + syst_JES_EtaIntercalibration_Stat124: 1.57963034e-13 + syst_JES_EtaIntercalibration_Stat125: 1.57963034e-13 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 8.995405869108965e-12 - syst_JES_EtaIntercalibration_Stat129: 8.900902466604158e-12 + syst_JES_EtaIntercalibration_Stat128: 8.99540587e-12 + syst_JES_EtaIntercalibration_Stat129: 8.90090247e-12 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 2.967003033365487e-13 + syst_JES_EtaIntercalibration_Stat130: 2.96700303e-13 syst_JES_EtaIntercalibration_Stat131: 0.0 syst_JES_EtaIntercalibration_Stat132: 0.0 - syst_JES_EtaIntercalibration_Stat133: 1.0728322702081625e-11 - syst_JES_EtaIntercalibration_Stat134: 6.860151869127971e-05 - syst_JES_EtaIntercalibration_Stat135: 0.0011787519204650317 - syst_JES_EtaIntercalibration_Stat136: 0.0022045826702575704 - syst_JES_EtaIntercalibration_Stat137: 0.0021519839102558365 - syst_JES_EtaIntercalibration_Stat138: 0.0012613640027763595 - syst_JES_EtaIntercalibration_Stat139: 6.253571321053274e-06 + syst_JES_EtaIntercalibration_Stat133: 1.07283227e-11 + syst_JES_EtaIntercalibration_Stat134: 6.86015187e-05 + syst_JES_EtaIntercalibration_Stat135: 1.17875192e-03 + syst_JES_EtaIntercalibration_Stat136: 2.20458267e-03 + syst_JES_EtaIntercalibration_Stat137: 2.15198391e-03 + syst_JES_EtaIntercalibration_Stat138: 1.26136400e-03 + syst_JES_EtaIntercalibration_Stat139: 6.25357132e-06 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 9.347878208449232e-11 + syst_JES_EtaIntercalibration_Stat140: 9.34787821e-11 syst_JES_EtaIntercalibration_Stat141: 0.0 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 1.5796303365028161e-13 - syst_JES_EtaIntercalibration_Stat144: 1.5796303365028161e-13 + syst_JES_EtaIntercalibration_Stat143: 1.57963034e-13 + syst_JES_EtaIntercalibration_Stat144: 1.57963034e-13 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 2.967003033365487e-13 - syst_JES_EtaIntercalibration_Stat148: 2.967003033365487e-13 + syst_JES_EtaIntercalibration_Stat147: 2.96700303e-13 + syst_JES_EtaIntercalibration_Stat148: 2.96700303e-13 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 syst_JES_EtaIntercalibration_Stat150: 0.0 syst_JES_EtaIntercalibration_Stat151: 0.0 - syst_JES_EtaIntercalibration_Stat152: 4.695660497859221e-06 - syst_JES_EtaIntercalibration_Stat153: 0.0022216711615358382 - syst_JES_EtaIntercalibration_Stat154: 0.0029028321945989235 - syst_JES_EtaIntercalibration_Stat155: 0.002776493111822898 - syst_JES_EtaIntercalibration_Stat156: 0.0020784529703604076 - syst_JES_EtaIntercalibration_Stat157: 3.835095957078519e-05 + syst_JES_EtaIntercalibration_Stat152: 4.69566050e-06 + syst_JES_EtaIntercalibration_Stat153: 2.22167116e-03 + syst_JES_EtaIntercalibration_Stat154: 2.90283219e-03 + syst_JES_EtaIntercalibration_Stat155: 2.77649311e-03 + syst_JES_EtaIntercalibration_Stat156: 2.07845297e-03 + syst_JES_EtaIntercalibration_Stat157: 3.83509596e-05 syst_JES_EtaIntercalibration_Stat158: 0.0 syst_JES_EtaIntercalibration_Stat159: 0.0 syst_JES_EtaIntercalibration_Stat16: 0.0 @@ -5480,18 +5480,18 @@ bins: syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 2.967003033365487e-13 + syst_JES_EtaIntercalibration_Stat165: 2.96700303e-13 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 0.0001130620523208384 - syst_JES_EtaIntercalibration_Stat171: 0.005099807447345439 - syst_JES_EtaIntercalibration_Stat172: 0.006520381583925898 - syst_JES_EtaIntercalibration_Stat173: 0.007279290693467324 - syst_JES_EtaIntercalibration_Stat174: 0.00350912830771404 - syst_JES_EtaIntercalibration_Stat175: 8.860650849683673e-05 + syst_JES_EtaIntercalibration_Stat170: 1.13062052e-04 + syst_JES_EtaIntercalibration_Stat171: 5.09980745e-03 + syst_JES_EtaIntercalibration_Stat172: 6.52038158e-03 + syst_JES_EtaIntercalibration_Stat173: 7.27929069e-03 + syst_JES_EtaIntercalibration_Stat174: 3.50912831e-03 + syst_JES_EtaIntercalibration_Stat175: 8.86065085e-05 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 syst_JES_EtaIntercalibration_Stat178: 0.0 @@ -5504,14 +5504,14 @@ bins: syst_JES_EtaIntercalibration_Stat184: 0.0 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 - syst_JES_EtaIntercalibration_Stat187: 0.0003823106949851129 - syst_JES_EtaIntercalibration_Stat188: 0.013272244798827363 - syst_JES_EtaIntercalibration_Stat189: 0.020553006471073765 + syst_JES_EtaIntercalibration_Stat187: 3.82310695e-04 + syst_JES_EtaIntercalibration_Stat188: 1.32722448e-02 + syst_JES_EtaIntercalibration_Stat189: 2.05530065e-02 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 0.020185541855496474 - syst_JES_EtaIntercalibration_Stat191: 0.01364408047469671 - syst_JES_EtaIntercalibration_Stat192: 0.00022650159965554328 - syst_JES_EtaIntercalibration_Stat193: 1.885337304038723e-05 + syst_JES_EtaIntercalibration_Stat190: 2.01855419e-02 + syst_JES_EtaIntercalibration_Stat191: 1.36440805e-02 + syst_JES_EtaIntercalibration_Stat192: 2.26501600e-04 + syst_JES_EtaIntercalibration_Stat193: 1.88533730e-05 syst_JES_EtaIntercalibration_Stat194: 0.0 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 @@ -5522,13 +5522,13 @@ bins: syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 syst_JES_EtaIntercalibration_Stat201: 0.0 - syst_JES_EtaIntercalibration_Stat202: 0.00028414658189040385 - syst_JES_EtaIntercalibration_Stat203: 0.00942965910041291 - syst_JES_EtaIntercalibration_Stat204: 0.014257174360650852 - syst_JES_EtaIntercalibration_Stat205: 0.013097569889105385 - syst_JES_EtaIntercalibration_Stat206: 0.0100508003039559 - syst_JES_EtaIntercalibration_Stat207: 0.00012683270319598176 - syst_JES_EtaIntercalibration_Stat208: 1.885337304038723e-05 + syst_JES_EtaIntercalibration_Stat202: 2.84146582e-04 + syst_JES_EtaIntercalibration_Stat203: 9.42965910e-03 + syst_JES_EtaIntercalibration_Stat204: 1.42571744e-02 + syst_JES_EtaIntercalibration_Stat205: 1.30975699e-02 + syst_JES_EtaIntercalibration_Stat206: 1.00508003e-02 + syst_JES_EtaIntercalibration_Stat207: 1.26832703e-04 + syst_JES_EtaIntercalibration_Stat208: 1.88533730e-05 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 @@ -5536,38 +5536,38 @@ bins: syst_JES_EtaIntercalibration_Stat212: 0.0 syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 - syst_JES_EtaIntercalibration_Stat215: 5.060081298754004e-05 - syst_JES_EtaIntercalibration_Stat216: 0.0008094747185675412 - syst_JES_EtaIntercalibration_Stat217: 0.0004110624131442815 - syst_JES_EtaIntercalibration_Stat218: 0.0004817524734497997 - syst_JES_EtaIntercalibration_Stat219: 0.0008856101681891419 + syst_JES_EtaIntercalibration_Stat215: 5.06008130e-05 + syst_JES_EtaIntercalibration_Stat216: 8.09474719e-04 + syst_JES_EtaIntercalibration_Stat217: 4.11062413e-04 + syst_JES_EtaIntercalibration_Stat218: 4.81752473e-04 + syst_JES_EtaIntercalibration_Stat219: 8.85610168e-04 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 0.00011964157502724545 + syst_JES_EtaIntercalibration_Stat220: 1.19641575e-04 syst_JES_EtaIntercalibration_Stat221: 0.0 syst_JES_EtaIntercalibration_Stat222: 0.0 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 - syst_JES_EtaIntercalibration_Stat227: 8.936922584424686e-06 - syst_JES_EtaIntercalibration_Stat228: 0.0005006500049935084 - syst_JES_EtaIntercalibration_Stat229: 0.0008004806977685345 + syst_JES_EtaIntercalibration_Stat227: 8.93692258e-06 + syst_JES_EtaIntercalibration_Stat228: 5.00650005e-04 + syst_JES_EtaIntercalibration_Stat229: 8.00480698e-04 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 0.0006125607480079017 - syst_JES_EtaIntercalibration_Stat231: 0.0005738396705526729 - syst_JES_EtaIntercalibration_Stat232: 4.9380768523788694e-05 + syst_JES_EtaIntercalibration_Stat230: 6.12560748e-04 + syst_JES_EtaIntercalibration_Stat231: 5.73839671e-04 + syst_JES_EtaIntercalibration_Stat232: 4.93807685e-05 syst_JES_EtaIntercalibration_Stat233: 0.0 syst_JES_EtaIntercalibration_Stat234: 0.0 syst_JES_EtaIntercalibration_Stat235: 0.0 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 - syst_JES_EtaIntercalibration_Stat238: 1.5467213711590076e-16 - syst_JES_EtaIntercalibration_Stat239: 8.787331847608806e-07 + syst_JES_EtaIntercalibration_Stat238: 1.54672137e-16 + syst_JES_EtaIntercalibration_Stat239: 8.78733185e-07 syst_JES_EtaIntercalibration_Stat24: 0.0 - syst_JES_EtaIntercalibration_Stat240: 9.654071188234527e-07 - syst_JES_EtaIntercalibration_Stat241: 1.425872318968287e-06 - syst_JES_EtaIntercalibration_Stat242: 5.34722208253968e-07 - syst_JES_EtaIntercalibration_Stat243: 1.166363013816882e-16 + syst_JES_EtaIntercalibration_Stat240: 9.65407119e-07 + syst_JES_EtaIntercalibration_Stat241: 1.42587232e-06 + syst_JES_EtaIntercalibration_Stat242: 5.34722208e-07 + syst_JES_EtaIntercalibration_Stat243: 1.16636301e-16 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 syst_JES_EtaIntercalibration_Stat25: 0.0 @@ -5576,12 +5576,12 @@ bins: syst_JES_EtaIntercalibration_Stat28: 0.0 syst_JES_EtaIntercalibration_Stat29: 0.0 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 1.0405793524763021e-11 - syst_JES_EtaIntercalibration_Stat31: 7.968241713201225e-05 - syst_JES_EtaIntercalibration_Stat32: 1.1306486755398425e-07 - syst_JES_EtaIntercalibration_Stat33: 3.5773568801151225e-06 - syst_JES_EtaIntercalibration_Stat34: 1.541595870488945e-05 - syst_JES_EtaIntercalibration_Stat35: 9.184556005156375e-11 + syst_JES_EtaIntercalibration_Stat30: 1.04057935e-11 + syst_JES_EtaIntercalibration_Stat31: 7.96824171e-05 + syst_JES_EtaIntercalibration_Stat32: 1.13064868e-07 + syst_JES_EtaIntercalibration_Stat33: 3.57735688e-06 + syst_JES_EtaIntercalibration_Stat34: 1.54159587e-05 + syst_JES_EtaIntercalibration_Stat35: 9.18455601e-11 syst_JES_EtaIntercalibration_Stat36: 0.0 syst_JES_EtaIntercalibration_Stat37: 0.0 syst_JES_EtaIntercalibration_Stat38: 0.0 @@ -5600,215 +5600,215 @@ bins: syst_JES_EtaIntercalibration_Stat5: 0.0 syst_JES_EtaIntercalibration_Stat50: 0.0 syst_JES_EtaIntercalibration_Stat51: 0.0 - syst_JES_EtaIntercalibration_Stat52: 1.0692603433416018e-10 - syst_JES_EtaIntercalibration_Stat53: 4.404144148603109e-07 - syst_JES_EtaIntercalibration_Stat54: 4.262988303995215e-05 - syst_JES_EtaIntercalibration_Stat55: 3.0374454727616102e-06 - syst_JES_EtaIntercalibration_Stat56: 1.4950387306958807e-05 - syst_JES_EtaIntercalibration_Stat57: 9.143989319219483e-10 + syst_JES_EtaIntercalibration_Stat52: 1.06926034e-10 + syst_JES_EtaIntercalibration_Stat53: 4.40414415e-07 + syst_JES_EtaIntercalibration_Stat54: 4.26298830e-05 + syst_JES_EtaIntercalibration_Stat55: 3.03744547e-06 + syst_JES_EtaIntercalibration_Stat56: 1.49503873e-05 + syst_JES_EtaIntercalibration_Stat57: 9.14398932e-10 syst_JES_EtaIntercalibration_Stat58: 0.0 syst_JES_EtaIntercalibration_Stat59: 0.0 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 1.5796303365028161e-13 - syst_JES_EtaIntercalibration_Stat62: 1.5796303365028161e-13 + syst_JES_EtaIntercalibration_Stat61: 1.57963034e-13 + syst_JES_EtaIntercalibration_Stat62: 1.57963034e-13 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 8.995405869108965e-12 - syst_JES_EtaIntercalibration_Stat69: 8.995405869108965e-12 + syst_JES_EtaIntercalibration_Stat68: 8.99540587e-12 + syst_JES_EtaIntercalibration_Stat69: 8.99540587e-12 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 7.065901269477235e-12 - syst_JES_EtaIntercalibration_Stat71: 7.065901269477235e-12 + syst_JES_EtaIntercalibration_Stat70: 7.06590127e-12 + syst_JES_EtaIntercalibration_Stat71: 7.06590127e-12 syst_JES_EtaIntercalibration_Stat72: 0.0 syst_JES_EtaIntercalibration_Stat73: 0.0 - syst_JES_EtaIntercalibration_Stat74: 3.259474779021154e-07 - syst_JES_EtaIntercalibration_Stat75: 4.3385913289914736e-05 - syst_JES_EtaIntercalibration_Stat76: 1.4105068264634525e-05 - syst_JES_EtaIntercalibration_Stat77: 2.3016079830196975e-05 - syst_JES_EtaIntercalibration_Stat78: 5.001602943807115e-06 - syst_JES_EtaIntercalibration_Stat79: 1.0832463466358885e-09 + syst_JES_EtaIntercalibration_Stat74: 3.25947478e-07 + syst_JES_EtaIntercalibration_Stat75: 4.33859133e-05 + syst_JES_EtaIntercalibration_Stat76: 1.41050683e-05 + syst_JES_EtaIntercalibration_Stat77: 2.30160798e-05 + syst_JES_EtaIntercalibration_Stat78: 5.00160294e-06 + syst_JES_EtaIntercalibration_Stat79: 1.08324635e-09 syst_JES_EtaIntercalibration_Stat8: 0.0 syst_JES_EtaIntercalibration_Stat80: 0.0 syst_JES_EtaIntercalibration_Stat81: 0.0 - syst_JES_EtaIntercalibration_Stat82: 1.5796303365028161e-13 - syst_JES_EtaIntercalibration_Stat83: 1.5796303365028161e-13 - syst_JES_EtaIntercalibration_Stat84: 1.5796303365028161e-13 + syst_JES_EtaIntercalibration_Stat82: 1.57963034e-13 + syst_JES_EtaIntercalibration_Stat83: 1.57963034e-13 + syst_JES_EtaIntercalibration_Stat84: 1.57963034e-13 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 8.995405869108965e-12 - syst_JES_EtaIntercalibration_Stat9: 3.2632974786364477e-07 - syst_JES_EtaIntercalibration_Stat90: 8.995405869108965e-12 - syst_JES_EtaIntercalibration_Stat91: 7.065901269477235e-12 - syst_JES_EtaIntercalibration_Stat92: 7.065901269477235e-12 + syst_JES_EtaIntercalibration_Stat89: 8.99540587e-12 + syst_JES_EtaIntercalibration_Stat9: 3.26329748e-07 + syst_JES_EtaIntercalibration_Stat90: 8.99540587e-12 + syst_JES_EtaIntercalibration_Stat91: 7.06590127e-12 + syst_JES_EtaIntercalibration_Stat92: 7.06590127e-12 syst_JES_EtaIntercalibration_Stat93: 0.0 syst_JES_EtaIntercalibration_Stat94: 0.0 - syst_JES_EtaIntercalibration_Stat95: 3.260327867358588e-07 - syst_JES_EtaIntercalibration_Stat96: 3.2529563092670026e-05 - syst_JES_EtaIntercalibration_Stat97: 2.3038951294492556e-05 - syst_JES_EtaIntercalibration_Stat98: 1.8718435912223008e-05 - syst_JES_EtaIntercalibration_Stat99: 9.640868321888853e-06 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.031833389310596504 - syst_JES_Flavour_Comp: 0.09975648587936527 - syst_JES_Flavour_Response: 0.1419971784050655 - syst_JES_Gjet_Generator: 0.2530148365214973 - syst_JES_Gjet_OOC: 0.18625162415399227 - syst_JES_Gjet_Purity: 0.06571461842695277 - syst_JES_Gjet_Stat1: 0.0002629636037078135 - syst_JES_Gjet_Stat10: 0.009890763519567131 - syst_JES_Gjet_Stat11: 0.017440693793539293 - syst_JES_Gjet_Stat12: 0.03896979105345576 - syst_JES_Gjet_Stat13: 0.031370171740046304 - syst_JES_Gjet_Stat14: 0.007615931394123768 - syst_JES_Gjet_Stat15: 0.004050185304402751 - syst_JES_Gjet_Stat2: 0.00036944643725351833 - syst_JES_Gjet_Stat3: 0.00047009128900672053 - syst_JES_Gjet_Stat4: 0.0006037607700902735 - syst_JES_Gjet_Stat5: 0.0005567936152651178 - syst_JES_Gjet_Stat6: 0.0012616641183373647 - syst_JES_Gjet_Stat7: 0.0026313864691451163 - syst_JES_Gjet_Stat8: 0.0019430131239906744 - syst_JES_Gjet_Stat9: 0.005177181472577526 - syst_JES_Gjet_Veto: 0.108360180878402 - syst_JES_Gjet_dPhi: 0.013986292173052872 - syst_JES_LArESZee: 0.3573041561471123 - syst_JES_LArEsmear: 0.027500003636363395 - syst_JES_LAr_JVT: 0.03693500609178235 - syst_JES_MJB_Alpha: 0.0031566290564461327 - syst_JES_MJB_Asym: 0.011660141540736116 - syst_JES_MJB_Beta: 4.209057092449566e-06 - syst_JES_MJB_Fragmentation: 0.03618172743250382 - syst_JES_MJB_Stat1: 0.0021294076641169488 - syst_JES_MJB_Stat10: 8.196930442976291e-06 - syst_JES_MJB_Stat11: 2.1486090267891924e-06 - syst_JES_MJB_Stat12: 1.843219972439535e-06 - syst_JES_MJB_Stat13: 1.5319840101972343e-06 - syst_JES_MJB_Stat14: 1.6842915981207053e-06 - syst_JES_MJB_Stat15: 2.4427204097071772e-09 - syst_JES_MJB_Stat16: 1.5204251872420424e-11 - syst_JES_MJB_Stat2: 0.002742210879472985 - syst_JES_MJB_Stat3: 0.004542646035076913 - syst_JES_MJB_Stat4: 0.00015709734848176144 - syst_JES_MJB_Stat5: 0.0014319296910113987 - syst_JES_MJB_Stat6: 2.4006508159403357e-05 - syst_JES_MJB_Stat7: 1.1072089363236731e-07 - syst_JES_MJB_Stat8: 6.791507628818508e-12 - syst_JES_MJB_Stat9: 6.713884496095144e-12 - syst_JES_MJB_Threshold: 0.015046809462474095 - syst_JES_Pileup_MuOffset: 0.026916137817302097 - syst_JES_Pileup_NPVOffset: 0.031275135091634695 - syst_JES_Pileup_Pt_term: 0.03669705267456775 - syst_JES_Pileup_Rho_topology: 0.08313513261551941 - syst_JES_PunchThrough_MC15: 0.0030779145537197746 + syst_JES_EtaIntercalibration_Stat95: 3.26032787e-07 + syst_JES_EtaIntercalibration_Stat96: 3.25295631e-05 + syst_JES_EtaIntercalibration_Stat97: 2.30389513e-05 + syst_JES_EtaIntercalibration_Stat98: 1.87184359e-05 + syst_JES_EtaIntercalibration_Stat99: 9.64086832e-06 + syst_JES_EtaIntercalibration_TotalStat_MJB: 3.18333893e-02 + syst_JES_Flavour_Comp: 9.97564859e-02 + syst_JES_Flavour_Response: 1.41997178e-01 + syst_JES_Gjet_Generator: 2.53014837e-01 + syst_JES_Gjet_OOC: 1.86251624e-01 + syst_JES_Gjet_Purity: 6.57146184e-02 + syst_JES_Gjet_Stat1: 2.62963604e-04 + syst_JES_Gjet_Stat10: 9.89076352e-03 + syst_JES_Gjet_Stat11: 1.74406938e-02 + syst_JES_Gjet_Stat12: 3.89697911e-02 + syst_JES_Gjet_Stat13: 3.13701717e-02 + syst_JES_Gjet_Stat14: 7.61593139e-03 + syst_JES_Gjet_Stat15: 4.05018530e-03 + syst_JES_Gjet_Stat2: 3.69446437e-04 + syst_JES_Gjet_Stat3: 4.70091289e-04 + syst_JES_Gjet_Stat4: 6.03760770e-04 + syst_JES_Gjet_Stat5: 5.56793615e-04 + syst_JES_Gjet_Stat6: 1.26166412e-03 + syst_JES_Gjet_Stat7: 2.63138647e-03 + syst_JES_Gjet_Stat8: 1.94301312e-03 + syst_JES_Gjet_Stat9: 5.17718147e-03 + syst_JES_Gjet_Veto: 1.08360181e-01 + syst_JES_Gjet_dPhi: 1.39862922e-02 + syst_JES_LArESZee: 3.57304156e-01 + syst_JES_LArEsmear: 2.75000036e-02 + syst_JES_LAr_JVT: 3.69350061e-02 + syst_JES_MJB_Alpha: 3.15662906e-03 + syst_JES_MJB_Asym: 1.16601415e-02 + syst_JES_MJB_Beta: 4.20905709e-06 + syst_JES_MJB_Fragmentation: 3.61817274e-02 + syst_JES_MJB_Stat1: 2.12940766e-03 + syst_JES_MJB_Stat10: 8.19693044e-06 + syst_JES_MJB_Stat11: 2.14860903e-06 + syst_JES_MJB_Stat12: 1.84321997e-06 + syst_JES_MJB_Stat13: 1.53198401e-06 + syst_JES_MJB_Stat14: 1.68429160e-06 + syst_JES_MJB_Stat15: 2.44272041e-09 + syst_JES_MJB_Stat16: 1.52042519e-11 + syst_JES_MJB_Stat2: 2.74221088e-03 + syst_JES_MJB_Stat3: 4.54264604e-03 + syst_JES_MJB_Stat4: 1.57097348e-04 + syst_JES_MJB_Stat5: 1.43192969e-03 + syst_JES_MJB_Stat6: 2.40065082e-05 + syst_JES_MJB_Stat7: 1.10720894e-07 + syst_JES_MJB_Stat8: 6.79150763e-12 + syst_JES_MJB_Stat9: 6.71388450e-12 + syst_JES_MJB_Threshold: 1.50468095e-02 + syst_JES_Pileup_MuOffset: 2.69161378e-02 + syst_JES_Pileup_NPVOffset: 3.12751351e-02 + syst_JES_Pileup_Pt_term: 3.66970527e-02 + syst_JES_Pileup_Rho_topology: 8.31351326e-02 + syst_JES_PunchThrough_MC15: 3.07791455e-03 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.21586761568146343 - syst_JES_Zjet_MuScale: 0.014122781622258416 - syst_JES_Zjet_MuSmearID: 0.0030240520415495496 - syst_JES_Zjet_MuSmearMS: 0.05105959753072873 - syst_JES_Zjet_OOC: 0.08426536343599308 - syst_JES_Zjet_Stat1: 0.0026927422676520677 - syst_JES_Zjet_Stat10: 0.00879743695629585 - syst_JES_Zjet_Stat11: 0.008777693147974587 - syst_JES_Zjet_Stat12: 0.06633278751869244 - syst_JES_Zjet_Stat13: 0.04511797286004769 + syst_JES_Zjet_MC: 2.15867616e-01 + syst_JES_Zjet_MuScale: 1.41227816e-02 + syst_JES_Zjet_MuSmearID: 3.02405204e-03 + syst_JES_Zjet_MuSmearMS: 5.10595975e-02 + syst_JES_Zjet_OOC: 8.42653634e-02 + syst_JES_Zjet_Stat1: 2.69274227e-03 + syst_JES_Zjet_Stat10: 8.79743696e-03 + syst_JES_Zjet_Stat11: 8.77769315e-03 + syst_JES_Zjet_Stat12: 6.63327875e-02 + syst_JES_Zjet_Stat13: 4.51179729e-02 syst_JES_Zjet_Stat2: 0.0 - syst_JES_Zjet_Stat3: 0.0008955647980464619 - syst_JES_Zjet_Stat4: 0.000920061415069668 - syst_JES_Zjet_Stat5: 0.0007555462725736921 - syst_JES_Zjet_Stat6: 0.0015339455270641132 - syst_JES_Zjet_Stat7: 0.0018347779613620827 - syst_JES_Zjet_Stat8: 0.001509981042927361 - syst_JES_Zjet_Stat9: 0.004306750747373245 - syst_JES_Zjet_Veto: 0.017704428824449548 - syst_JES_Zjet_dPhi: 0.014444700784370717 + syst_JES_Zjet_Stat3: 8.95564798e-04 + syst_JES_Zjet_Stat4: 9.20061415e-04 + syst_JES_Zjet_Stat5: 7.55546273e-04 + syst_JES_Zjet_Stat6: 1.53394553e-03 + syst_JES_Zjet_Stat7: 1.83477796e-03 + syst_JES_Zjet_Stat8: 1.50998104e-03 + syst_JES_Zjet_Stat9: 4.30675075e-03 + syst_JES_Zjet_Veto: 1.77044288e-02 + syst_JES_Zjet_dPhi: 1.44447008e-02 syst_PRW: 0.007652 - syst_Unfolding_bias: 0.0012562 - syst_cleaning: 0.07380268491050987 + syst_Unfolding_bias: 1.25620000e-03 + syst_cleaning: 7.38026849e-02 syst_lumi: 0.2914 - stat: 0.06185 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.02546789498564811 - syst_JER_NP1: 0.0009484930930164963 - syst_JER_NP2: 0.0032218617288766443 - syst_JER_NP3: 0.008407176041929894 - syst_JER_NP4: 0.004149027235389038 - syst_JER_NP5: 0.002603785081376725 - syst_JER_NP6: 0.00335817104239793 - syst_JER_NP7: 0.006339614558472778 - syst_JER_NP8: 0.006104423560009577 - syst_JES_EtaIntercalibration_Modelling: 0.04526519938098141 + syst_JER_NP0: 2.54678950e-02 + syst_JER_NP1: 9.48493093e-04 + syst_JER_NP2: 3.22186173e-03 + syst_JER_NP3: 8.40717604e-03 + syst_JER_NP4: 4.14902724e-03 + syst_JER_NP5: 2.60378508e-03 + syst_JER_NP6: 3.35817104e-03 + syst_JER_NP7: 6.33961456e-03 + syst_JER_NP8: 6.10442356e-03 + syst_JES_EtaIntercalibration_Modelling: 4.52651994e-02 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 - syst_JES_EtaIntercalibration_Stat10: 2.3363875260484934e-10 - syst_JES_EtaIntercalibration_Stat100: 1.742504826392168e-08 + syst_JES_EtaIntercalibration_Stat10: 2.33638753e-10 + syst_JES_EtaIntercalibration_Stat100: 1.74250483e-08 syst_JES_EtaIntercalibration_Stat101: 0.0 syst_JES_EtaIntercalibration_Stat102: 0.0 - syst_JES_EtaIntercalibration_Stat103: 2.1702596618838034e-14 - syst_JES_EtaIntercalibration_Stat104: 2.1702596618838034e-14 - syst_JES_EtaIntercalibration_Stat105: 2.1702596618838034e-14 + syst_JES_EtaIntercalibration_Stat103: 2.17025966e-14 + syst_JES_EtaIntercalibration_Stat104: 2.17025966e-14 + syst_JES_EtaIntercalibration_Stat105: 2.17025966e-14 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 1.148782698120058e-12 - syst_JES_EtaIntercalibration_Stat11: 1.7537014426634883e-08 - syst_JES_EtaIntercalibration_Stat110: 1.135991335827435e-12 - syst_JES_EtaIntercalibration_Stat111: 9.093266739736605e-13 - syst_JES_EtaIntercalibration_Stat112: 9.093266739736605e-13 + syst_JES_EtaIntercalibration_Stat109: 1.14878270e-12 + syst_JES_EtaIntercalibration_Stat11: 1.75370144e-08 + syst_JES_EtaIntercalibration_Stat110: 1.13599134e-12 + syst_JES_EtaIntercalibration_Stat111: 9.09326674e-13 + syst_JES_EtaIntercalibration_Stat112: 9.09326674e-13 syst_JES_EtaIntercalibration_Stat113: 0.0 - syst_JES_EtaIntercalibration_Stat114: 1.3657220617680598e-12 - syst_JES_EtaIntercalibration_Stat115: 5.595188067214542e-07 - syst_JES_EtaIntercalibration_Stat116: 0.00011747561906625562 - syst_JES_EtaIntercalibration_Stat117: 8.435511721288756e-05 - syst_JES_EtaIntercalibration_Stat118: 9.131200578237234e-05 - syst_JES_EtaIntercalibration_Stat119: 1.5590325461644473e-05 - syst_JES_EtaIntercalibration_Stat12: 9.364329019467857e-06 - syst_JES_EtaIntercalibration_Stat120: 1.1840607008272507e-05 - syst_JES_EtaIntercalibration_Stat121: 1.137697572951617e-11 + syst_JES_EtaIntercalibration_Stat114: 1.36572206e-12 + syst_JES_EtaIntercalibration_Stat115: 5.59518807e-07 + syst_JES_EtaIntercalibration_Stat116: 1.17475619e-04 + syst_JES_EtaIntercalibration_Stat117: 8.43551172e-05 + syst_JES_EtaIntercalibration_Stat118: 9.13120058e-05 + syst_JES_EtaIntercalibration_Stat119: 1.55903255e-05 + syst_JES_EtaIntercalibration_Stat12: 9.36432902e-06 + syst_JES_EtaIntercalibration_Stat120: 1.18406070e-05 + syst_JES_EtaIntercalibration_Stat121: 1.13769757e-11 syst_JES_EtaIntercalibration_Stat122: 0.0 - syst_JES_EtaIntercalibration_Stat123: 2.1702596618838034e-14 - syst_JES_EtaIntercalibration_Stat124: 2.1702596618838034e-14 - syst_JES_EtaIntercalibration_Stat125: 2.1702596618838034e-14 + syst_JES_EtaIntercalibration_Stat123: 2.17025966e-14 + syst_JES_EtaIntercalibration_Stat124: 2.17025966e-14 + syst_JES_EtaIntercalibration_Stat125: 2.17025966e-14 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 1.148782698120058e-12 - syst_JES_EtaIntercalibration_Stat129: 1.135991335827435e-12 + syst_JES_EtaIntercalibration_Stat128: 1.14878270e-12 + syst_JES_EtaIntercalibration_Stat129: 1.13599134e-12 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 4.027884153001424e-14 + syst_JES_EtaIntercalibration_Stat130: 4.02788415e-14 syst_JES_EtaIntercalibration_Stat131: 0.0 syst_JES_EtaIntercalibration_Stat132: 0.0 - syst_JES_EtaIntercalibration_Stat133: 1.3657220617680598e-12 - syst_JES_EtaIntercalibration_Stat134: 4.99690874441389e-05 - syst_JES_EtaIntercalibration_Stat135: 0.00041119962001441584 - syst_JES_EtaIntercalibration_Stat136: 0.0008331541078936117 - syst_JES_EtaIntercalibration_Stat137: 0.0009135216253597942 - syst_JES_EtaIntercalibration_Stat138: 0.0004597073851919284 - syst_JES_EtaIntercalibration_Stat139: 1.0253064761328683e-06 + syst_JES_EtaIntercalibration_Stat133: 1.36572206e-12 + syst_JES_EtaIntercalibration_Stat134: 4.99690874e-05 + syst_JES_EtaIntercalibration_Stat135: 4.11199620e-04 + syst_JES_EtaIntercalibration_Stat136: 8.33154108e-04 + syst_JES_EtaIntercalibration_Stat137: 9.13521625e-04 + syst_JES_EtaIntercalibration_Stat138: 4.59707385e-04 + syst_JES_EtaIntercalibration_Stat139: 1.02530648e-06 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 1.137697572951617e-11 + syst_JES_EtaIntercalibration_Stat140: 1.13769757e-11 syst_JES_EtaIntercalibration_Stat141: 0.0 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 2.1702596618838034e-14 - syst_JES_EtaIntercalibration_Stat144: 2.1702596618838034e-14 + syst_JES_EtaIntercalibration_Stat143: 2.17025966e-14 + syst_JES_EtaIntercalibration_Stat144: 2.17025966e-14 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 4.027884153001424e-14 - syst_JES_EtaIntercalibration_Stat148: 4.027884153001424e-14 + syst_JES_EtaIntercalibration_Stat147: 4.02788415e-14 + syst_JES_EtaIntercalibration_Stat148: 4.02788415e-14 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 syst_JES_EtaIntercalibration_Stat150: 0.0 syst_JES_EtaIntercalibration_Stat151: 0.0 - syst_JES_EtaIntercalibration_Stat152: 1.68268822644638e-05 - syst_JES_EtaIntercalibration_Stat153: 0.0008215423726138537 - syst_JES_EtaIntercalibration_Stat154: 0.001174690753985916 - syst_JES_EtaIntercalibration_Stat155: 0.0011595602054227283 - syst_JES_EtaIntercalibration_Stat156: 0.0008214270083214942 - syst_JES_EtaIntercalibration_Stat157: 2.313285997774594e-05 + syst_JES_EtaIntercalibration_Stat152: 1.68268823e-05 + syst_JES_EtaIntercalibration_Stat153: 8.21542373e-04 + syst_JES_EtaIntercalibration_Stat154: 1.17469075e-03 + syst_JES_EtaIntercalibration_Stat155: 1.15956021e-03 + syst_JES_EtaIntercalibration_Stat156: 8.21427008e-04 + syst_JES_EtaIntercalibration_Stat157: 2.31328600e-05 syst_JES_EtaIntercalibration_Stat158: 0.0 syst_JES_EtaIntercalibration_Stat159: 0.0 syst_JES_EtaIntercalibration_Stat16: 0.0 @@ -5817,18 +5817,18 @@ bins: syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 4.027884153001424e-14 + syst_JES_EtaIntercalibration_Stat165: 4.02788415e-14 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 6.76534470666499e-05 - syst_JES_EtaIntercalibration_Stat171: 0.002254699980041691 - syst_JES_EtaIntercalibration_Stat172: 0.002696184850858709 - syst_JES_EtaIntercalibration_Stat173: 0.003124550647693201 - syst_JES_EtaIntercalibration_Stat174: 0.0014840485436804285 - syst_JES_EtaIntercalibration_Stat175: 3.800061413977411e-05 + syst_JES_EtaIntercalibration_Stat170: 6.76534471e-05 + syst_JES_EtaIntercalibration_Stat171: 2.25469998e-03 + syst_JES_EtaIntercalibration_Stat172: 2.69618485e-03 + syst_JES_EtaIntercalibration_Stat173: 3.12455065e-03 + syst_JES_EtaIntercalibration_Stat174: 1.48404854e-03 + syst_JES_EtaIntercalibration_Stat175: 3.80006141e-05 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 syst_JES_EtaIntercalibration_Stat178: 0.0 @@ -5841,14 +5841,14 @@ bins: syst_JES_EtaIntercalibration_Stat184: 0.0 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 - syst_JES_EtaIntercalibration_Stat187: 0.00019583464325803032 - syst_JES_EtaIntercalibration_Stat188: 0.0066803572322144565 - syst_JES_EtaIntercalibration_Stat189: 0.010633953486356804 + syst_JES_EtaIntercalibration_Stat187: 1.95834643e-04 + syst_JES_EtaIntercalibration_Stat188: 6.68035723e-03 + syst_JES_EtaIntercalibration_Stat189: 1.06339535e-02 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 0.010289373596094177 - syst_JES_EtaIntercalibration_Stat191: 0.006913725677953964 - syst_JES_EtaIntercalibration_Stat192: 0.00010834709536946524 - syst_JES_EtaIntercalibration_Stat193: 1.2825836230047537e-05 + syst_JES_EtaIntercalibration_Stat190: 1.02893736e-02 + syst_JES_EtaIntercalibration_Stat191: 6.91372568e-03 + syst_JES_EtaIntercalibration_Stat192: 1.08347095e-04 + syst_JES_EtaIntercalibration_Stat193: 1.28258362e-05 syst_JES_EtaIntercalibration_Stat194: 0.0 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 @@ -5859,13 +5859,13 @@ bins: syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 syst_JES_EtaIntercalibration_Stat201: 0.0 - syst_JES_EtaIntercalibration_Stat202: 0.00014306655898566932 - syst_JES_EtaIntercalibration_Stat203: 0.006598406095414255 - syst_JES_EtaIntercalibration_Stat204: 0.010084545143436069 - syst_JES_EtaIntercalibration_Stat205: 0.009464055301507913 - syst_JES_EtaIntercalibration_Stat206: 0.007053148375016649 - syst_JES_EtaIntercalibration_Stat207: 9.925634438160617e-05 - syst_JES_EtaIntercalibration_Stat208: 1.2825836230047537e-05 + syst_JES_EtaIntercalibration_Stat202: 1.43066559e-04 + syst_JES_EtaIntercalibration_Stat203: 6.59840610e-03 + syst_JES_EtaIntercalibration_Stat204: 1.00845451e-02 + syst_JES_EtaIntercalibration_Stat205: 9.46405530e-03 + syst_JES_EtaIntercalibration_Stat206: 7.05314838e-03 + syst_JES_EtaIntercalibration_Stat207: 9.92563444e-05 + syst_JES_EtaIntercalibration_Stat208: 1.28258362e-05 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 @@ -5873,38 +5873,38 @@ bins: syst_JES_EtaIntercalibration_Stat212: 0.0 syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 - syst_JES_EtaIntercalibration_Stat215: 6.600598760718607e-05 - syst_JES_EtaIntercalibration_Stat216: 0.000577100415872316 - syst_JES_EtaIntercalibration_Stat217: 0.001320554080679773 - syst_JES_EtaIntercalibration_Stat218: 0.001222106881577876 - syst_JES_EtaIntercalibration_Stat219: 0.0011874888546845397 + syst_JES_EtaIntercalibration_Stat215: 6.60059876e-05 + syst_JES_EtaIntercalibration_Stat216: 5.77100416e-04 + syst_JES_EtaIntercalibration_Stat217: 1.32055408e-03 + syst_JES_EtaIntercalibration_Stat218: 1.22210688e-03 + syst_JES_EtaIntercalibration_Stat219: 1.18748885e-03 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 0.00010968562485576677 + syst_JES_EtaIntercalibration_Stat220: 1.09685625e-04 syst_JES_EtaIntercalibration_Stat221: 0.0 syst_JES_EtaIntercalibration_Stat222: 0.0 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 - syst_JES_EtaIntercalibration_Stat227: 1.045960802324829e-05 - syst_JES_EtaIntercalibration_Stat228: 0.0005550042432270225 - syst_JES_EtaIntercalibration_Stat229: 0.0008991480008875069 + syst_JES_EtaIntercalibration_Stat227: 1.04596080e-05 + syst_JES_EtaIntercalibration_Stat228: 5.55004243e-04 + syst_JES_EtaIntercalibration_Stat229: 8.99148001e-04 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 0.0007847874537096015 - syst_JES_EtaIntercalibration_Stat231: 0.0006834833355686149 - syst_JES_EtaIntercalibration_Stat232: 4.7977807369657896e-05 + syst_JES_EtaIntercalibration_Stat230: 7.84787454e-04 + syst_JES_EtaIntercalibration_Stat231: 6.83483336e-04 + syst_JES_EtaIntercalibration_Stat232: 4.79778074e-05 syst_JES_EtaIntercalibration_Stat233: 0.0 syst_JES_EtaIntercalibration_Stat234: 0.0 syst_JES_EtaIntercalibration_Stat235: 0.0 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 - syst_JES_EtaIntercalibration_Stat238: 2.2135609320730252e-13 - syst_JES_EtaIntercalibration_Stat239: 4.663272777781715e-06 + syst_JES_EtaIntercalibration_Stat238: 2.21356093e-13 + syst_JES_EtaIntercalibration_Stat239: 4.66327278e-06 syst_JES_EtaIntercalibration_Stat24: 0.0 - syst_JES_EtaIntercalibration_Stat240: 4.3029811468329715e-06 - syst_JES_EtaIntercalibration_Stat241: 5.4420888223181365e-06 - syst_JES_EtaIntercalibration_Stat242: 5.224333522086812e-06 - syst_JES_EtaIntercalibration_Stat243: 1.663634800669907e-13 + syst_JES_EtaIntercalibration_Stat240: 4.30298115e-06 + syst_JES_EtaIntercalibration_Stat241: 5.44208882e-06 + syst_JES_EtaIntercalibration_Stat242: 5.22433352e-06 + syst_JES_EtaIntercalibration_Stat243: 1.66363480e-13 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 syst_JES_EtaIntercalibration_Stat25: 0.0 @@ -5913,12 +5913,12 @@ bins: syst_JES_EtaIntercalibration_Stat28: 0.0 syst_JES_EtaIntercalibration_Stat29: 0.0 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 1.323145721632731e-12 - syst_JES_EtaIntercalibration_Stat31: 5.114898117264898e-05 - syst_JES_EtaIntercalibration_Stat32: 2.182277619254709e-08 - syst_JES_EtaIntercalibration_Stat33: 9.308121871720416e-06 - syst_JES_EtaIntercalibration_Stat34: 1.2027445796119952e-05 - syst_JES_EtaIntercalibration_Stat35: 1.117138948126812e-11 + syst_JES_EtaIntercalibration_Stat30: 1.32314572e-12 + syst_JES_EtaIntercalibration_Stat31: 5.11489812e-05 + syst_JES_EtaIntercalibration_Stat32: 2.18227762e-08 + syst_JES_EtaIntercalibration_Stat33: 9.30812187e-06 + syst_JES_EtaIntercalibration_Stat34: 1.20274458e-05 + syst_JES_EtaIntercalibration_Stat35: 1.11713895e-11 syst_JES_EtaIntercalibration_Stat36: 0.0 syst_JES_EtaIntercalibration_Stat37: 0.0 syst_JES_EtaIntercalibration_Stat38: 0.0 @@ -5937,215 +5937,215 @@ bins: syst_JES_EtaIntercalibration_Stat5: 0.0 syst_JES_EtaIntercalibration_Stat50: 0.0 syst_JES_EtaIntercalibration_Stat51: 0.0 - syst_JES_EtaIntercalibration_Stat52: 1.2611484360957477e-11 - syst_JES_EtaIntercalibration_Stat53: 6.719813959617855e-08 - syst_JES_EtaIntercalibration_Stat54: 2.8191266675160238e-05 - syst_JES_EtaIntercalibration_Stat55: 9.227381173805491e-06 - syst_JES_EtaIntercalibration_Stat56: 1.1937545430279658e-05 - syst_JES_EtaIntercalibration_Stat57: 1.1034335307915017e-10 + syst_JES_EtaIntercalibration_Stat52: 1.26114844e-11 + syst_JES_EtaIntercalibration_Stat53: 6.71981396e-08 + syst_JES_EtaIntercalibration_Stat54: 2.81912667e-05 + syst_JES_EtaIntercalibration_Stat55: 9.22738117e-06 + syst_JES_EtaIntercalibration_Stat56: 1.19375454e-05 + syst_JES_EtaIntercalibration_Stat57: 1.10343353e-10 syst_JES_EtaIntercalibration_Stat58: 0.0 syst_JES_EtaIntercalibration_Stat59: 0.0 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 2.1702596618838034e-14 - syst_JES_EtaIntercalibration_Stat62: 2.1702596618838034e-14 + syst_JES_EtaIntercalibration_Stat61: 2.17025966e-14 + syst_JES_EtaIntercalibration_Stat62: 2.17025966e-14 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 1.148782698120058e-12 - syst_JES_EtaIntercalibration_Stat69: 1.148782698120058e-12 + syst_JES_EtaIntercalibration_Stat68: 1.14878270e-12 + syst_JES_EtaIntercalibration_Stat69: 1.14878270e-12 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 9.093266739736605e-13 - syst_JES_EtaIntercalibration_Stat71: 9.093266739736605e-13 + syst_JES_EtaIntercalibration_Stat70: 9.09326674e-13 + syst_JES_EtaIntercalibration_Stat71: 9.09326674e-13 syst_JES_EtaIntercalibration_Stat72: 0.0 syst_JES_EtaIntercalibration_Stat73: 0.0 - syst_JES_EtaIntercalibration_Stat74: 4.539779602477966e-08 - syst_JES_EtaIntercalibration_Stat75: 4.602309963485728e-05 - syst_JES_EtaIntercalibration_Stat76: 8.629236524745397e-06 - syst_JES_EtaIntercalibration_Stat77: 1.4931611458580081e-05 - syst_JES_EtaIntercalibration_Stat78: 1.7864793218786495e-06 - syst_JES_EtaIntercalibration_Stat79: 1.3012924767322677e-10 + syst_JES_EtaIntercalibration_Stat74: 4.53977960e-08 + syst_JES_EtaIntercalibration_Stat75: 4.60230996e-05 + syst_JES_EtaIntercalibration_Stat76: 8.62923652e-06 + syst_JES_EtaIntercalibration_Stat77: 1.49316115e-05 + syst_JES_EtaIntercalibration_Stat78: 1.78647932e-06 + syst_JES_EtaIntercalibration_Stat79: 1.30129248e-10 syst_JES_EtaIntercalibration_Stat8: 0.0 syst_JES_EtaIntercalibration_Stat80: 0.0 syst_JES_EtaIntercalibration_Stat81: 0.0 - syst_JES_EtaIntercalibration_Stat82: 2.1702596618838034e-14 - syst_JES_EtaIntercalibration_Stat83: 2.1702596618838034e-14 - syst_JES_EtaIntercalibration_Stat84: 2.1702596618838034e-14 + syst_JES_EtaIntercalibration_Stat82: 2.17025966e-14 + syst_JES_EtaIntercalibration_Stat83: 2.17025966e-14 + syst_JES_EtaIntercalibration_Stat84: 2.17025966e-14 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 1.148782698120058e-12 - syst_JES_EtaIntercalibration_Stat9: 4.5460661599586017e-08 - syst_JES_EtaIntercalibration_Stat90: 1.148782698120058e-12 - syst_JES_EtaIntercalibration_Stat91: 9.093266739736605e-13 - syst_JES_EtaIntercalibration_Stat92: 9.093266739736605e-13 + syst_JES_EtaIntercalibration_Stat89: 1.14878270e-12 + syst_JES_EtaIntercalibration_Stat9: 4.54606616e-08 + syst_JES_EtaIntercalibration_Stat90: 1.14878270e-12 + syst_JES_EtaIntercalibration_Stat91: 9.09326674e-13 + syst_JES_EtaIntercalibration_Stat92: 9.09326674e-13 syst_JES_EtaIntercalibration_Stat93: 0.0 syst_JES_EtaIntercalibration_Stat94: 0.0 - syst_JES_EtaIntercalibration_Stat95: 4.540977328637526e-08 - syst_JES_EtaIntercalibration_Stat96: 4.457340245875336e-05 - syst_JES_EtaIntercalibration_Stat97: 1.0992997401527939e-05 - syst_JES_EtaIntercalibration_Stat98: 1.3085512714448755e-05 - syst_JES_EtaIntercalibration_Stat99: 8.757309801959732e-06 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0242973949220899 - syst_JES_Flavour_Comp: 0.0778961172010518 - syst_JES_Flavour_Response: 0.07359214275314994 - syst_JES_Gjet_Generator: 0.16415951845689605 - syst_JES_Gjet_OOC: 0.12359868638055989 - syst_JES_Gjet_Purity: 0.04224131981839582 - syst_JES_Gjet_Stat1: 0.00022866873682250488 - syst_JES_Gjet_Stat10: 0.005246432883398014 - syst_JES_Gjet_Stat11: 0.008792259038495169 - syst_JES_Gjet_Stat12: 0.024195753243079664 - syst_JES_Gjet_Stat13: 0.02787311383753168 - syst_JES_Gjet_Stat14: 0.0016497131470349625 - syst_JES_Gjet_Stat15: 0.005457310395240497 - syst_JES_Gjet_Stat2: 0.00023573211358856946 - syst_JES_Gjet_Stat3: 0.00030023492052058166 - syst_JES_Gjet_Stat4: 0.0004310758720921411 - syst_JES_Gjet_Stat5: 0.0003554492336114962 - syst_JES_Gjet_Stat6: 0.000910352430380674 - syst_JES_Gjet_Stat7: 0.0017276527971499366 - syst_JES_Gjet_Stat8: 0.0012062783219473024 - syst_JES_Gjet_Stat9: 0.003100709757458766 - syst_JES_Gjet_Veto: 0.0810084024962843 - syst_JES_Gjet_dPhi: 0.009766599971330862 - syst_JES_LArESZee: 0.23781518033969154 - syst_JES_LArEsmear: 0.017941254136765353 - syst_JES_LAr_JVT: 0.02364756382801408 - syst_JES_MJB_Alpha: 0.0022235001124353464 - syst_JES_MJB_Asym: 0.00780365009146361 - syst_JES_MJB_Beta: 3.3941299326926187e-05 - syst_JES_MJB_Fragmentation: 0.025862343281303806 - syst_JES_MJB_Stat1: 0.001202230002952846 - syst_JES_MJB_Stat10: 7.108331012131643e-06 - syst_JES_MJB_Stat11: 1.7329168329732202e-05 - syst_JES_MJB_Stat12: 1.461858228420253e-05 - syst_JES_MJB_Stat13: 6.680845810973338e-06 - syst_JES_MJB_Stat14: 3.147306891216679e-06 - syst_JES_MJB_Stat15: 5.3442376444166486e-08 - syst_JES_MJB_Stat16: 1.1046550807831376e-09 - syst_JES_MJB_Stat2: 0.001807199277888302 - syst_JES_MJB_Stat3: 0.0034258106018868 - syst_JES_MJB_Stat4: 0.0005373597677534111 - syst_JES_MJB_Stat5: 0.0010079329677612494 - syst_JES_MJB_Stat6: 4.829148176179729e-05 - syst_JES_MJB_Stat7: 2.3942334890315106e-06 - syst_JES_MJB_Stat8: 1.9491993784307958e-09 - syst_JES_MJB_Stat9: 1.9283389667535115e-09 - syst_JES_MJB_Threshold: 0.011124981752794026 - syst_JES_Pileup_MuOffset: 0.020501133505247945 - syst_JES_Pileup_NPVOffset: 0.022361182884632916 - syst_JES_Pileup_Pt_term: 0.023380962341186896 - syst_JES_Pileup_Rho_topology: 0.05308653007119603 - syst_JES_PunchThrough_MC15: 0.0026216834286389348 + syst_JES_EtaIntercalibration_Stat95: 4.54097733e-08 + syst_JES_EtaIntercalibration_Stat96: 4.45734025e-05 + syst_JES_EtaIntercalibration_Stat97: 1.09929974e-05 + syst_JES_EtaIntercalibration_Stat98: 1.30855127e-05 + syst_JES_EtaIntercalibration_Stat99: 8.75730980e-06 + syst_JES_EtaIntercalibration_TotalStat_MJB: 2.42973949e-02 + syst_JES_Flavour_Comp: 7.78961172e-02 + syst_JES_Flavour_Response: 7.35921428e-02 + syst_JES_Gjet_Generator: 1.64159518e-01 + syst_JES_Gjet_OOC: 1.23598686e-01 + syst_JES_Gjet_Purity: 4.22413198e-02 + syst_JES_Gjet_Stat1: 2.28668737e-04 + syst_JES_Gjet_Stat10: 5.24643288e-03 + syst_JES_Gjet_Stat11: 8.79225904e-03 + syst_JES_Gjet_Stat12: 2.41957532e-02 + syst_JES_Gjet_Stat13: 2.78731138e-02 + syst_JES_Gjet_Stat14: 1.64971315e-03 + syst_JES_Gjet_Stat15: 5.45731040e-03 + syst_JES_Gjet_Stat2: 2.35732114e-04 + syst_JES_Gjet_Stat3: 3.00234921e-04 + syst_JES_Gjet_Stat4: 4.31075872e-04 + syst_JES_Gjet_Stat5: 3.55449234e-04 + syst_JES_Gjet_Stat6: 9.10352430e-04 + syst_JES_Gjet_Stat7: 1.72765280e-03 + syst_JES_Gjet_Stat8: 1.20627832e-03 + syst_JES_Gjet_Stat9: 3.10070976e-03 + syst_JES_Gjet_Veto: 8.10084025e-02 + syst_JES_Gjet_dPhi: 9.76659997e-03 + syst_JES_LArESZee: 2.37815180e-01 + syst_JES_LArEsmear: 1.79412541e-02 + syst_JES_LAr_JVT: 2.36475638e-02 + syst_JES_MJB_Alpha: 2.22350011e-03 + syst_JES_MJB_Asym: 7.80365009e-03 + syst_JES_MJB_Beta: 3.39412993e-05 + syst_JES_MJB_Fragmentation: 2.58623433e-02 + syst_JES_MJB_Stat1: 1.20223000e-03 + syst_JES_MJB_Stat10: 7.10833101e-06 + syst_JES_MJB_Stat11: 1.73291683e-05 + syst_JES_MJB_Stat12: 1.46185823e-05 + syst_JES_MJB_Stat13: 6.68084581e-06 + syst_JES_MJB_Stat14: 3.14730689e-06 + syst_JES_MJB_Stat15: 5.34423764e-08 + syst_JES_MJB_Stat16: 1.10465508e-09 + syst_JES_MJB_Stat2: 1.80719928e-03 + syst_JES_MJB_Stat3: 3.42581060e-03 + syst_JES_MJB_Stat4: 5.37359768e-04 + syst_JES_MJB_Stat5: 1.00793297e-03 + syst_JES_MJB_Stat6: 4.82914818e-05 + syst_JES_MJB_Stat7: 2.39423349e-06 + syst_JES_MJB_Stat8: 1.94919938e-09 + syst_JES_MJB_Stat9: 1.92833897e-09 + syst_JES_MJB_Threshold: 1.11249818e-02 + syst_JES_Pileup_MuOffset: 2.05011335e-02 + syst_JES_Pileup_NPVOffset: 2.23611829e-02 + syst_JES_Pileup_Pt_term: 2.33809623e-02 + syst_JES_Pileup_Rho_topology: 5.30865301e-02 + syst_JES_PunchThrough_MC15: 2.62168343e-03 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.13100504293728543 - syst_JES_Zjet_MuScale: 0.008519009508152929 - syst_JES_Zjet_MuSmearID: 0.0018682628294755532 - syst_JES_Zjet_MuSmearMS: 0.03336955311357945 - syst_JES_Zjet_OOC: 0.05242967361141971 - syst_JES_Zjet_Stat1: 0.0020690682250713724 - syst_JES_Zjet_Stat10: 0.005089431500668812 - syst_JES_Zjet_Stat11: 0.005012518603456749 - syst_JES_Zjet_Stat12: 0.03551648772049398 - syst_JES_Zjet_Stat13: 0.032420833965214405 + syst_JES_Zjet_MC: 1.31005043e-01 + syst_JES_Zjet_MuScale: 8.51900951e-03 + syst_JES_Zjet_MuSmearID: 1.86826283e-03 + syst_JES_Zjet_MuSmearMS: 3.33695531e-02 + syst_JES_Zjet_OOC: 5.24296736e-02 + syst_JES_Zjet_Stat1: 2.06906823e-03 + syst_JES_Zjet_Stat10: 5.08943150e-03 + syst_JES_Zjet_Stat11: 5.01251860e-03 + syst_JES_Zjet_Stat12: 3.55164877e-02 + syst_JES_Zjet_Stat13: 3.24208340e-02 syst_JES_Zjet_Stat2: 0.0 - syst_JES_Zjet_Stat3: 0.0007255398179976065 - syst_JES_Zjet_Stat4: 0.0007463870376687955 - syst_JES_Zjet_Stat5: 0.00048252561590033744 - syst_JES_Zjet_Stat6: 0.0012353925722214782 - syst_JES_Zjet_Stat7: 0.0012320850244605687 - syst_JES_Zjet_Stat8: 0.0011355977049554125 - syst_JES_Zjet_Stat9: 0.002826669904675818 - syst_JES_Zjet_Veto: 0.011283578643320566 - syst_JES_Zjet_dPhi: 0.009194780407927098 + syst_JES_Zjet_Stat3: 7.25539818e-04 + syst_JES_Zjet_Stat4: 7.46387038e-04 + syst_JES_Zjet_Stat5: 4.82525616e-04 + syst_JES_Zjet_Stat6: 1.23539257e-03 + syst_JES_Zjet_Stat7: 1.23208502e-03 + syst_JES_Zjet_Stat8: 1.13559770e-03 + syst_JES_Zjet_Stat9: 2.82666990e-03 + syst_JES_Zjet_Veto: 1.12835786e-02 + syst_JES_Zjet_dPhi: 9.19478041e-03 syst_PRW: 0.004887 - syst_Unfolding_bias: 0.0008022 - syst_cleaning: 0.04700785891741933 + syst_Unfolding_bias: 8.02200000e-04 + syst_cleaning: 4.70078589e-02 syst_lumi: 0.1861 - stat: 0.023581 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.016009012305573382 - syst_JER_NP1: 0.001002477151859333 - syst_JER_NP2: 0.002035544828786632 - syst_JER_NP3: 0.0050641469173000895 - syst_JER_NP4: 0.002462986804674357 - syst_JER_NP5: 0.0016631510695063153 - syst_JER_NP6: 0.0023613599365619803 - syst_JER_NP7: 0.0044785480906204414 - syst_JER_NP8: 0.00376464111835378 - syst_JES_EtaIntercalibration_Modelling: 0.034470939934965514 + syst_JER_NP0: 1.60090123e-02 + syst_JER_NP1: 1.00247715e-03 + syst_JER_NP2: 2.03554483e-03 + syst_JER_NP3: 5.06414692e-03 + syst_JER_NP4: 2.46298680e-03 + syst_JER_NP5: 1.66315107e-03 + syst_JER_NP6: 2.36135994e-03 + syst_JER_NP7: 4.47854809e-03 + syst_JER_NP8: 3.76464112e-03 + syst_JES_EtaIntercalibration_Modelling: 3.44709399e-02 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 - syst_JES_EtaIntercalibration_Stat10: 2.852411637334275e-11 - syst_JES_EtaIntercalibration_Stat100: 2.7172800163950717e-09 + syst_JES_EtaIntercalibration_Stat10: 2.85241164e-11 + syst_JES_EtaIntercalibration_Stat100: 2.71728002e-09 syst_JES_EtaIntercalibration_Stat101: 0.0 syst_JES_EtaIntercalibration_Stat102: 0.0 - syst_JES_EtaIntercalibration_Stat103: 3.2181504004629738e-15 - syst_JES_EtaIntercalibration_Stat104: 3.2181504004629738e-15 - syst_JES_EtaIntercalibration_Stat105: 3.2181504004629738e-15 + syst_JES_EtaIntercalibration_Stat103: 3.21815040e-15 + syst_JES_EtaIntercalibration_Stat104: 3.21815040e-15 + syst_JES_EtaIntercalibration_Stat105: 3.21815040e-15 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 1.5692380316574029e-13 - syst_JES_EtaIntercalibration_Stat11: 2.7288460473247665e-09 - syst_JES_EtaIntercalibration_Stat110: 1.5505920937499972e-13 - syst_JES_EtaIntercalibration_Stat111: 1.2540047846798672e-13 - syst_JES_EtaIntercalibration_Stat112: 1.2540047846798672e-13 + syst_JES_EtaIntercalibration_Stat109: 1.56923803e-13 + syst_JES_EtaIntercalibration_Stat11: 2.72884605e-09 + syst_JES_EtaIntercalibration_Stat110: 1.55059209e-13 + syst_JES_EtaIntercalibration_Stat111: 1.25400478e-13 + syst_JES_EtaIntercalibration_Stat112: 1.25400478e-13 syst_JES_EtaIntercalibration_Stat113: 0.0 - syst_JES_EtaIntercalibration_Stat114: 1.8576244911176207e-13 - syst_JES_EtaIntercalibration_Stat115: 1.0558942596207254e-07 - syst_JES_EtaIntercalibration_Stat116: 9.144026738806048e-05 - syst_JES_EtaIntercalibration_Stat117: 3.83406198013282e-05 - syst_JES_EtaIntercalibration_Stat118: 1.9463429168571503e-05 - syst_JES_EtaIntercalibration_Stat119: 1.3242105912580521e-05 - syst_JES_EtaIntercalibration_Stat12: 4.329260522112119e-06 - syst_JES_EtaIntercalibration_Stat120: 4.790370540461929e-06 - syst_JES_EtaIntercalibration_Stat121: 1.4627169069919169e-12 + syst_JES_EtaIntercalibration_Stat114: 1.85762449e-13 + syst_JES_EtaIntercalibration_Stat115: 1.05589426e-07 + syst_JES_EtaIntercalibration_Stat116: 9.14402674e-05 + syst_JES_EtaIntercalibration_Stat117: 3.83406198e-05 + syst_JES_EtaIntercalibration_Stat118: 1.94634292e-05 + syst_JES_EtaIntercalibration_Stat119: 1.32421059e-05 + syst_JES_EtaIntercalibration_Stat12: 4.32926052e-06 + syst_JES_EtaIntercalibration_Stat120: 4.79037054e-06 + syst_JES_EtaIntercalibration_Stat121: 1.46271691e-12 syst_JES_EtaIntercalibration_Stat122: 0.0 - syst_JES_EtaIntercalibration_Stat123: 3.2181504004629738e-15 - syst_JES_EtaIntercalibration_Stat124: 3.2181504004629738e-15 - syst_JES_EtaIntercalibration_Stat125: 3.2181504004629738e-15 + syst_JES_EtaIntercalibration_Stat123: 3.21815040e-15 + syst_JES_EtaIntercalibration_Stat124: 3.21815040e-15 + syst_JES_EtaIntercalibration_Stat125: 3.21815040e-15 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 1.5692380316574029e-13 - syst_JES_EtaIntercalibration_Stat129: 1.5505920937499972e-13 + syst_JES_EtaIntercalibration_Stat128: 1.56923803e-13 + syst_JES_EtaIntercalibration_Stat129: 1.55059209e-13 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 5.8924368473493206e-15 + syst_JES_EtaIntercalibration_Stat130: 5.89243685e-15 syst_JES_EtaIntercalibration_Stat131: 0.0 syst_JES_EtaIntercalibration_Stat132: 0.0 - syst_JES_EtaIntercalibration_Stat133: 1.8576244911176207e-13 - syst_JES_EtaIntercalibration_Stat134: 3.348403322107419e-05 - syst_JES_EtaIntercalibration_Stat135: 0.00013235026709455483 - syst_JES_EtaIntercalibration_Stat136: 0.00029562108771195606 - syst_JES_EtaIntercalibration_Stat137: 0.00037408783336938397 - syst_JES_EtaIntercalibration_Stat138: 0.00016574235751611597 - syst_JES_EtaIntercalibration_Stat139: 1.4651362078318862e-07 + syst_JES_EtaIntercalibration_Stat133: 1.85762449e-13 + syst_JES_EtaIntercalibration_Stat134: 3.34840332e-05 + syst_JES_EtaIntercalibration_Stat135: 1.32350267e-04 + syst_JES_EtaIntercalibration_Stat136: 2.95621088e-04 + syst_JES_EtaIntercalibration_Stat137: 3.74087833e-04 + syst_JES_EtaIntercalibration_Stat138: 1.65742358e-04 + syst_JES_EtaIntercalibration_Stat139: 1.46513621e-07 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 1.4627169069919169e-12 + syst_JES_EtaIntercalibration_Stat140: 1.46271691e-12 syst_JES_EtaIntercalibration_Stat141: 0.0 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 3.2181504004629738e-15 - syst_JES_EtaIntercalibration_Stat144: 3.2181504004629738e-15 + syst_JES_EtaIntercalibration_Stat143: 3.21815040e-15 + syst_JES_EtaIntercalibration_Stat144: 3.21815040e-15 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 5.8924368473493206e-15 - syst_JES_EtaIntercalibration_Stat148: 5.8924368473493206e-15 + syst_JES_EtaIntercalibration_Stat147: 5.89243685e-15 + syst_JES_EtaIntercalibration_Stat148: 5.89243685e-15 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 syst_JES_EtaIntercalibration_Stat150: 0.0 syst_JES_EtaIntercalibration_Stat151: 0.0 - syst_JES_EtaIntercalibration_Stat152: 1.3380093612253385e-05 - syst_JES_EtaIntercalibration_Stat153: 0.00026178561362305607 - syst_JES_EtaIntercalibration_Stat154: 0.00048049987252859913 - syst_JES_EtaIntercalibration_Stat155: 0.0004589545758296784 - syst_JES_EtaIntercalibration_Stat156: 0.0002970932176943795 - syst_JES_EtaIntercalibration_Stat157: 8.99432854192018e-06 + syst_JES_EtaIntercalibration_Stat152: 1.33800936e-05 + syst_JES_EtaIntercalibration_Stat153: 2.61785614e-04 + syst_JES_EtaIntercalibration_Stat154: 4.80499873e-04 + syst_JES_EtaIntercalibration_Stat155: 4.58954576e-04 + syst_JES_EtaIntercalibration_Stat156: 2.97093218e-04 + syst_JES_EtaIntercalibration_Stat157: 8.99432854e-06 syst_JES_EtaIntercalibration_Stat158: 0.0 syst_JES_EtaIntercalibration_Stat159: 0.0 syst_JES_EtaIntercalibration_Stat16: 0.0 @@ -6154,18 +6154,18 @@ bins: syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 5.8924368473493206e-15 + syst_JES_EtaIntercalibration_Stat165: 5.89243685e-15 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 6.566269763533936e-05 - syst_JES_EtaIntercalibration_Stat171: 0.000978314581308078 - syst_JES_EtaIntercalibration_Stat172: 0.0011106204245825845 - syst_JES_EtaIntercalibration_Stat173: 0.001258429977193805 - syst_JES_EtaIntercalibration_Stat174: 0.0006035688404813489 - syst_JES_EtaIntercalibration_Stat175: 1.617726821036234e-05 + syst_JES_EtaIntercalibration_Stat170: 6.56626976e-05 + syst_JES_EtaIntercalibration_Stat171: 9.78314581e-04 + syst_JES_EtaIntercalibration_Stat172: 1.11062042e-03 + syst_JES_EtaIntercalibration_Stat173: 1.25842998e-03 + syst_JES_EtaIntercalibration_Stat174: 6.03568840e-04 + syst_JES_EtaIntercalibration_Stat175: 1.61772682e-05 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 syst_JES_EtaIntercalibration_Stat178: 0.0 @@ -6178,14 +6178,14 @@ bins: syst_JES_EtaIntercalibration_Stat184: 0.0 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 - syst_JES_EtaIntercalibration_Stat187: 0.00011668947767472438 - syst_JES_EtaIntercalibration_Stat188: 0.003200719411319899 - syst_JES_EtaIntercalibration_Stat189: 0.005132145238591753 + syst_JES_EtaIntercalibration_Stat187: 1.16689478e-04 + syst_JES_EtaIntercalibration_Stat188: 3.20071941e-03 + syst_JES_EtaIntercalibration_Stat189: 5.13214524e-03 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 0.004833053072334298 - syst_JES_EtaIntercalibration_Stat191: 0.0031802369408583378 - syst_JES_EtaIntercalibration_Stat192: 3.7382140120651195e-05 - syst_JES_EtaIntercalibration_Stat193: 4.988306325798367e-06 + syst_JES_EtaIntercalibration_Stat190: 4.83305307e-03 + syst_JES_EtaIntercalibration_Stat191: 3.18023694e-03 + syst_JES_EtaIntercalibration_Stat192: 3.73821401e-05 + syst_JES_EtaIntercalibration_Stat193: 4.98830633e-06 syst_JES_EtaIntercalibration_Stat194: 0.0 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 @@ -6196,13 +6196,13 @@ bins: syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 syst_JES_EtaIntercalibration_Stat201: 0.0 - syst_JES_EtaIntercalibration_Stat202: 6.421356476633268e-05 - syst_JES_EtaIntercalibration_Stat203: 0.004050781974816714 - syst_JES_EtaIntercalibration_Stat204: 0.006194455161674834 - syst_JES_EtaIntercalibration_Stat205: 0.005790597896590645 - syst_JES_EtaIntercalibration_Stat206: 0.004231133938733209 - syst_JES_EtaIntercalibration_Stat207: 6.848955978833561e-05 - syst_JES_EtaIntercalibration_Stat208: 4.988306325798367e-06 + syst_JES_EtaIntercalibration_Stat202: 6.42135648e-05 + syst_JES_EtaIntercalibration_Stat203: 4.05078197e-03 + syst_JES_EtaIntercalibration_Stat204: 6.19445516e-03 + syst_JES_EtaIntercalibration_Stat205: 5.79059790e-03 + syst_JES_EtaIntercalibration_Stat206: 4.23113394e-03 + syst_JES_EtaIntercalibration_Stat207: 6.84895598e-05 + syst_JES_EtaIntercalibration_Stat208: 4.98830633e-06 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 @@ -6210,38 +6210,38 @@ bins: syst_JES_EtaIntercalibration_Stat212: 0.0 syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 - syst_JES_EtaIntercalibration_Stat215: 6.729828990448049e-05 - syst_JES_EtaIntercalibration_Stat216: 0.0010251485587464875 - syst_JES_EtaIntercalibration_Stat217: 0.0016728301617319075 - syst_JES_EtaIntercalibration_Stat218: 0.0015214519077184135 - syst_JES_EtaIntercalibration_Stat219: 0.0012823054667277995 + syst_JES_EtaIntercalibration_Stat215: 6.72982899e-05 + syst_JES_EtaIntercalibration_Stat216: 1.02514856e-03 + syst_JES_EtaIntercalibration_Stat217: 1.67283016e-03 + syst_JES_EtaIntercalibration_Stat218: 1.52145191e-03 + syst_JES_EtaIntercalibration_Stat219: 1.28230547e-03 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 6.775173724709942e-05 + syst_JES_EtaIntercalibration_Stat220: 6.77517372e-05 syst_JES_EtaIntercalibration_Stat221: 0.0 syst_JES_EtaIntercalibration_Stat222: 0.0 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 - syst_JES_EtaIntercalibration_Stat227: 1.4360685942878913e-05 - syst_JES_EtaIntercalibration_Stat228: 0.00040960222167366235 - syst_JES_EtaIntercalibration_Stat229: 0.0007047061852289931 + syst_JES_EtaIntercalibration_Stat227: 1.43606859e-05 + syst_JES_EtaIntercalibration_Stat228: 4.09602222e-04 + syst_JES_EtaIntercalibration_Stat229: 7.04706185e-04 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 0.0007061116961926065 - syst_JES_EtaIntercalibration_Stat231: 0.0005811916293271954 - syst_JES_EtaIntercalibration_Stat232: 3.510000961538275e-05 + syst_JES_EtaIntercalibration_Stat230: 7.06111696e-04 + syst_JES_EtaIntercalibration_Stat231: 5.81191629e-04 + syst_JES_EtaIntercalibration_Stat232: 3.51000096e-05 syst_JES_EtaIntercalibration_Stat233: 0.0 syst_JES_EtaIntercalibration_Stat234: 0.0 syst_JES_EtaIntercalibration_Stat235: 0.0 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 - syst_JES_EtaIntercalibration_Stat238: 4.760541644603059e-11 - syst_JES_EtaIntercalibration_Stat239: 2.2049790815334284e-05 + syst_JES_EtaIntercalibration_Stat238: 4.76054164e-11 + syst_JES_EtaIntercalibration_Stat239: 2.20497908e-05 syst_JES_EtaIntercalibration_Stat24: 0.0 - syst_JES_EtaIntercalibration_Stat240: 2.3224138304789692e-05 - syst_JES_EtaIntercalibration_Stat241: 3.277816803910798e-05 - syst_JES_EtaIntercalibration_Stat242: 1.9250449345404903e-05 - syst_JES_EtaIntercalibration_Stat243: 3.5290535204215875e-11 + syst_JES_EtaIntercalibration_Stat240: 2.32241383e-05 + syst_JES_EtaIntercalibration_Stat241: 3.27781680e-05 + syst_JES_EtaIntercalibration_Stat242: 1.92504493e-05 + syst_JES_EtaIntercalibration_Stat243: 3.52905352e-11 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 syst_JES_EtaIntercalibration_Stat25: 0.0 @@ -6250,12 +6250,12 @@ bins: syst_JES_EtaIntercalibration_Stat28: 0.0 syst_JES_EtaIntercalibration_Stat29: 0.0 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 1.799378989762857e-13 - syst_JES_EtaIntercalibration_Stat31: 3.270958515099206e-05 - syst_JES_EtaIntercalibration_Stat32: 3.4247038277053967e-09 - syst_JES_EtaIntercalibration_Stat33: 4.322342645747113e-06 - syst_JES_EtaIntercalibration_Stat34: 4.836762266756649e-06 - syst_JES_EtaIntercalibration_Stat35: 1.4342226415528405e-12 + syst_JES_EtaIntercalibration_Stat30: 1.79937899e-13 + syst_JES_EtaIntercalibration_Stat31: 3.27095852e-05 + syst_JES_EtaIntercalibration_Stat32: 3.42470383e-09 + syst_JES_EtaIntercalibration_Stat33: 4.32234265e-06 + syst_JES_EtaIntercalibration_Stat34: 4.83676227e-06 + syst_JES_EtaIntercalibration_Stat35: 1.43422264e-12 syst_JES_EtaIntercalibration_Stat36: 0.0 syst_JES_EtaIntercalibration_Stat37: 0.0 syst_JES_EtaIntercalibration_Stat38: 0.0 @@ -6274,215 +6274,215 @@ bins: syst_JES_EtaIntercalibration_Stat5: 0.0 syst_JES_EtaIntercalibration_Stat50: 0.0 syst_JES_EtaIntercalibration_Stat51: 0.0 - syst_JES_EtaIntercalibration_Stat52: 1.5339054856048823e-12 - syst_JES_EtaIntercalibration_Stat53: 9.430798838204269e-09 - syst_JES_EtaIntercalibration_Stat54: 1.826540831377169e-05 - syst_JES_EtaIntercalibration_Stat55: 4.318931128280121e-06 - syst_JES_EtaIntercalibration_Stat56: 4.825005114211105e-06 - syst_JES_EtaIntercalibration_Stat57: 1.3587985382314774e-11 + syst_JES_EtaIntercalibration_Stat52: 1.53390549e-12 + syst_JES_EtaIntercalibration_Stat53: 9.43079884e-09 + syst_JES_EtaIntercalibration_Stat54: 1.82654083e-05 + syst_JES_EtaIntercalibration_Stat55: 4.31893113e-06 + syst_JES_EtaIntercalibration_Stat56: 4.82500511e-06 + syst_JES_EtaIntercalibration_Stat57: 1.35879854e-11 syst_JES_EtaIntercalibration_Stat58: 0.0 syst_JES_EtaIntercalibration_Stat59: 0.0 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 3.2181504004629738e-15 - syst_JES_EtaIntercalibration_Stat62: 3.2181504004629738e-15 + syst_JES_EtaIntercalibration_Stat61: 3.21815040e-15 + syst_JES_EtaIntercalibration_Stat62: 3.21815040e-15 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 1.5692380316574029e-13 - syst_JES_EtaIntercalibration_Stat69: 1.5692380316574029e-13 + syst_JES_EtaIntercalibration_Stat68: 1.56923803e-13 + syst_JES_EtaIntercalibration_Stat69: 1.56923803e-13 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 1.2540047846798672e-13 - syst_JES_EtaIntercalibration_Stat71: 1.2540047846798672e-13 + syst_JES_EtaIntercalibration_Stat70: 1.25400478e-13 + syst_JES_EtaIntercalibration_Stat71: 1.25400478e-13 syst_JES_EtaIntercalibration_Stat72: 0.0 syst_JES_EtaIntercalibration_Stat73: 0.0 - syst_JES_EtaIntercalibration_Stat74: 5.9754882533291785e-09 - syst_JES_EtaIntercalibration_Stat75: 4.807041163751357e-05 - syst_JES_EtaIntercalibration_Stat76: 5.5014682358439555e-06 - syst_JES_EtaIntercalibration_Stat77: 2.139891541059967e-06 - syst_JES_EtaIntercalibration_Stat78: 3.8580067223891665e-06 - syst_JES_EtaIntercalibration_Stat79: 1.580741202727379e-11 + syst_JES_EtaIntercalibration_Stat74: 5.97548825e-09 + syst_JES_EtaIntercalibration_Stat75: 4.80704116e-05 + syst_JES_EtaIntercalibration_Stat76: 5.50146824e-06 + syst_JES_EtaIntercalibration_Stat77: 2.13989154e-06 + syst_JES_EtaIntercalibration_Stat78: 3.85800672e-06 + syst_JES_EtaIntercalibration_Stat79: 1.58074120e-11 syst_JES_EtaIntercalibration_Stat8: 0.0 syst_JES_EtaIntercalibration_Stat80: 0.0 syst_JES_EtaIntercalibration_Stat81: 0.0 - syst_JES_EtaIntercalibration_Stat82: 3.2181504004629738e-15 - syst_JES_EtaIntercalibration_Stat83: 3.2181504004629738e-15 - syst_JES_EtaIntercalibration_Stat84: 3.2181504004629738e-15 + syst_JES_EtaIntercalibration_Stat82: 3.21815040e-15 + syst_JES_EtaIntercalibration_Stat83: 3.21815040e-15 + syst_JES_EtaIntercalibration_Stat84: 3.21815040e-15 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 1.5692380316574029e-13 - syst_JES_EtaIntercalibration_Stat9: 5.984804159779896e-09 - syst_JES_EtaIntercalibration_Stat90: 1.5692380316574029e-13 - syst_JES_EtaIntercalibration_Stat91: 1.2540047846798672e-13 - syst_JES_EtaIntercalibration_Stat92: 1.2540047846798672e-13 + syst_JES_EtaIntercalibration_Stat89: 1.56923803e-13 + syst_JES_EtaIntercalibration_Stat9: 5.98480416e-09 + syst_JES_EtaIntercalibration_Stat90: 1.56923803e-13 + syst_JES_EtaIntercalibration_Stat91: 1.25400478e-13 + syst_JES_EtaIntercalibration_Stat92: 1.25400478e-13 syst_JES_EtaIntercalibration_Stat93: 0.0 syst_JES_EtaIntercalibration_Stat94: 0.0 - syst_JES_EtaIntercalibration_Stat95: 5.977138442805805e-09 - syst_JES_EtaIntercalibration_Stat96: 4.909829311697098e-05 - syst_JES_EtaIntercalibration_Stat97: 5.904107214473667e-06 - syst_JES_EtaIntercalibration_Stat98: 1.784598854084581e-06 - syst_JES_EtaIntercalibration_Stat99: 6.524696525509826e-06 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.017920320867663056 - syst_JES_Flavour_Comp: 0.05868739621929056 - syst_JES_Flavour_Response: 0.038082868467987016 - syst_JES_Gjet_Generator: 0.10718347167357474 - syst_JES_Gjet_OOC: 0.08207503685652538 - syst_JES_Gjet_Purity: 0.026546481405263486 - syst_JES_Gjet_Stat1: 0.0001806177178462844 - syst_JES_Gjet_Stat10: 0.002880553202077684 - syst_JES_Gjet_Stat11: 0.004450129745299568 - syst_JES_Gjet_Stat12: 0.014264775743067257 - syst_JES_Gjet_Stat13: 0.02177126718865946 - syst_JES_Gjet_Stat14: 0.004584947191626093 - syst_JES_Gjet_Stat15: 0.005763624640796797 - syst_JES_Gjet_Stat2: 0.00015060153351958915 - syst_JES_Gjet_Stat3: 0.00019176769149155444 - syst_JES_Gjet_Stat4: 0.00029086290155329195 - syst_JES_Gjet_Stat5: 0.0002270917600882956 - syst_JES_Gjet_Stat6: 0.0006883482022203588 - syst_JES_Gjet_Stat7: 0.0011527037119312142 - syst_JES_Gjet_Stat8: 0.0007473652437061815 - syst_JES_Gjet_Stat9: 0.00185576749621282 - syst_JES_Gjet_Veto: 0.059785221208924204 - syst_JES_Gjet_dPhi: 0.006716399835477336 - syst_JES_LArESZee: 0.1584051135538244 - syst_JES_LArEsmear: 0.011731731713604775 - syst_JES_LAr_JVT: 0.015241269632153354 - syst_JES_MJB_Alpha: 0.0013862797580214462 - syst_JES_MJB_Asym: 0.004910877925585201 - syst_JES_MJB_Beta: 0.00011500307561104616 - syst_JES_MJB_Fragmentation: 0.017596592709953823 - syst_JES_MJB_Stat1: 0.0006067799992583802 - syst_JES_MJB_Stat10: 5.164659626752086e-06 - syst_JES_MJB_Stat11: 5.870786215275406e-05 - syst_JES_MJB_Stat12: 4.8430629595329446e-05 - syst_JES_MJB_Stat13: 3.5567371546826454e-05 - syst_JES_MJB_Stat14: 3.678433498107584e-06 - syst_JES_MJB_Stat15: 3.751754153725961e-07 - syst_JES_MJB_Stat16: 2.1593764725031158e-08 - syst_JES_MJB_Stat2: 0.001109166338968146 - syst_JES_MJB_Stat3: 0.002254653853699055 - syst_JES_MJB_Stat4: 0.0006773361849923566 - syst_JES_MJB_Stat5: 0.000592530606804408 - syst_JES_MJB_Stat6: 0.00012613809129283668 - syst_JES_MJB_Stat7: 1.7227946714568166e-05 - syst_JES_MJB_Stat8: 1.1216032551107365e-07 - syst_JES_MJB_Stat9: 1.1116220252743286e-07 - syst_JES_MJB_Threshold: 0.007724696935802725 - syst_JES_Pileup_MuOffset: 0.014734630187079689 - syst_JES_Pileup_NPVOffset: 0.015688639201664367 - syst_JES_Pileup_Pt_term: 0.015036597853237946 - syst_JES_Pileup_Rho_topology: 0.03404372592710733 - syst_JES_PunchThrough_MC15: 0.0021785308696458724 + syst_JES_EtaIntercalibration_Stat95: 5.97713844e-09 + syst_JES_EtaIntercalibration_Stat96: 4.90982931e-05 + syst_JES_EtaIntercalibration_Stat97: 5.90410721e-06 + syst_JES_EtaIntercalibration_Stat98: 1.78459885e-06 + syst_JES_EtaIntercalibration_Stat99: 6.52469653e-06 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.79203209e-02 + syst_JES_Flavour_Comp: 5.86873962e-02 + syst_JES_Flavour_Response: 3.80828685e-02 + syst_JES_Gjet_Generator: 1.07183472e-01 + syst_JES_Gjet_OOC: 8.20750369e-02 + syst_JES_Gjet_Purity: 2.65464814e-02 + syst_JES_Gjet_Stat1: 1.80617718e-04 + syst_JES_Gjet_Stat10: 2.88055320e-03 + syst_JES_Gjet_Stat11: 4.45012975e-03 + syst_JES_Gjet_Stat12: 1.42647757e-02 + syst_JES_Gjet_Stat13: 2.17712672e-02 + syst_JES_Gjet_Stat14: 4.58494719e-03 + syst_JES_Gjet_Stat15: 5.76362464e-03 + syst_JES_Gjet_Stat2: 1.50601534e-04 + syst_JES_Gjet_Stat3: 1.91767691e-04 + syst_JES_Gjet_Stat4: 2.90862902e-04 + syst_JES_Gjet_Stat5: 2.27091760e-04 + syst_JES_Gjet_Stat6: 6.88348202e-04 + syst_JES_Gjet_Stat7: 1.15270371e-03 + syst_JES_Gjet_Stat8: 7.47365244e-04 + syst_JES_Gjet_Stat9: 1.85576750e-03 + syst_JES_Gjet_Veto: 5.97852212e-02 + syst_JES_Gjet_dPhi: 6.71639984e-03 + syst_JES_LArESZee: 1.58405114e-01 + syst_JES_LArEsmear: 1.17317317e-02 + syst_JES_LAr_JVT: 1.52412696e-02 + syst_JES_MJB_Alpha: 1.38627976e-03 + syst_JES_MJB_Asym: 4.91087793e-03 + syst_JES_MJB_Beta: 1.15003076e-04 + syst_JES_MJB_Fragmentation: 1.75965927e-02 + syst_JES_MJB_Stat1: 6.06779999e-04 + syst_JES_MJB_Stat10: 5.16465963e-06 + syst_JES_MJB_Stat11: 5.87078622e-05 + syst_JES_MJB_Stat12: 4.84306296e-05 + syst_JES_MJB_Stat13: 3.55673715e-05 + syst_JES_MJB_Stat14: 3.67843350e-06 + syst_JES_MJB_Stat15: 3.75175415e-07 + syst_JES_MJB_Stat16: 2.15937647e-08 + syst_JES_MJB_Stat2: 1.10916634e-03 + syst_JES_MJB_Stat3: 2.25465385e-03 + syst_JES_MJB_Stat4: 6.77336185e-04 + syst_JES_MJB_Stat5: 5.92530607e-04 + syst_JES_MJB_Stat6: 1.26138091e-04 + syst_JES_MJB_Stat7: 1.72279467e-05 + syst_JES_MJB_Stat8: 1.12160326e-07 + syst_JES_MJB_Stat9: 1.11162203e-07 + syst_JES_MJB_Threshold: 7.72469694e-03 + syst_JES_Pileup_MuOffset: 1.47346302e-02 + syst_JES_Pileup_NPVOffset: 1.56886392e-02 + syst_JES_Pileup_Pt_term: 1.50365979e-02 + syst_JES_Pileup_Rho_topology: 3.40437259e-02 + syst_JES_PunchThrough_MC15: 2.17853087e-03 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.07857516831035108 - syst_JES_Zjet_MuScale: 0.00487981341856428 - syst_JES_Zjet_MuSmearID: 0.001123160063169983 - syst_JES_Zjet_MuSmearMS: 0.021075769855452495 - syst_JES_Zjet_OOC: 0.03250969240088254 - syst_JES_Zjet_Stat1: 0.0014323076441533082 - syst_JES_Zjet_Stat10: 0.0028800358938735468 - syst_JES_Zjet_Stat11: 0.003036114416486968 - syst_JES_Zjet_Stat12: 0.01843364586835713 - syst_JES_Zjet_Stat13: 0.02161425629069851 + syst_JES_Zjet_MC: 7.85751683e-02 + syst_JES_Zjet_MuScale: 4.87981342e-03 + syst_JES_Zjet_MuSmearID: 1.12316006e-03 + syst_JES_Zjet_MuSmearMS: 2.10757699e-02 + syst_JES_Zjet_OOC: 3.25096924e-02 + syst_JES_Zjet_Stat1: 1.43230764e-03 + syst_JES_Zjet_Stat10: 2.88003589e-03 + syst_JES_Zjet_Stat11: 3.03611442e-03 + syst_JES_Zjet_Stat12: 1.84336459e-02 + syst_JES_Zjet_Stat13: 2.16142563e-02 syst_JES_Zjet_Stat2: 0.0 - syst_JES_Zjet_Stat3: 0.0005181626650965891 - syst_JES_Zjet_Stat4: 0.0005570844370470242 - syst_JES_Zjet_Stat5: 0.0003088567103043092 - syst_JES_Zjet_Stat6: 0.0009209860843139814 - syst_JES_Zjet_Stat7: 0.0007070601866178013 - syst_JES_Zjet_Stat8: 0.0008193051125801669 - syst_JES_Zjet_Stat9: 0.0017849879551414347 - syst_JES_Zjet_Veto: 0.006961556345387144 - syst_JES_Zjet_dPhi: 0.005715259989711754 + syst_JES_Zjet_Stat3: 5.18162665e-04 + syst_JES_Zjet_Stat4: 5.57084437e-04 + syst_JES_Zjet_Stat5: 3.08856710e-04 + syst_JES_Zjet_Stat6: 9.20986084e-04 + syst_JES_Zjet_Stat7: 7.07060187e-04 + syst_JES_Zjet_Stat8: 8.19305113e-04 + syst_JES_Zjet_Stat9: 1.78498796e-03 + syst_JES_Zjet_Veto: 6.96155635e-03 + syst_JES_Zjet_dPhi: 5.71525999e-03 syst_PRW: 0.003122 - syst_Unfolding_bias: 0.0005125 - syst_cleaning: 0.030120363543622776 + syst_Unfolding_bias: 5.12500000e-04 + syst_cleaning: 3.01203635e-02 syst_lumi: 0.11887 - stat: 0.013186 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.00936685261974373 - syst_JER_NP1: 0.0007368097379921088 - syst_JER_NP2: 0.0011489816969821583 - syst_JER_NP3: 0.0026446350882494167 - syst_JER_NP4: 0.0012055720343471807 - syst_JER_NP5: 0.001047670352496433 - syst_JER_NP6: 0.0017148384967687188 - syst_JER_NP7: 0.0024614881489659866 - syst_JER_NP8: 0.002159579299308085 - syst_JES_EtaIntercalibration_Modelling: 0.025273102302645793 + syst_JER_NP0: 9.36685262e-03 + syst_JER_NP1: 7.36809738e-04 + syst_JER_NP2: 1.14898170e-03 + syst_JER_NP3: 2.64463509e-03 + syst_JER_NP4: 1.20557203e-03 + syst_JER_NP5: 1.04767035e-03 + syst_JER_NP6: 1.71483850e-03 + syst_JER_NP7: 2.46148815e-03 + syst_JER_NP8: 2.15957930e-03 + syst_JES_EtaIntercalibration_Modelling: 2.52731023e-02 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 - syst_JES_EtaIntercalibration_Stat10: 3.5647269911659435e-12 - syst_JES_EtaIntercalibration_Stat100: 3.793280093797451e-10 + syst_JES_EtaIntercalibration_Stat10: 3.56472699e-12 + syst_JES_EtaIntercalibration_Stat100: 3.79328009e-10 syst_JES_EtaIntercalibration_Stat101: 0.0 syst_JES_EtaIntercalibration_Stat102: 0.0 - syst_JES_EtaIntercalibration_Stat103: 5.11388000934711e-16 - syst_JES_EtaIntercalibration_Stat104: 5.11388000934711e-16 - syst_JES_EtaIntercalibration_Stat105: 5.11388000934711e-16 + syst_JES_EtaIntercalibration_Stat103: 5.11388001e-16 + syst_JES_EtaIntercalibration_Stat104: 5.11388001e-16 + syst_JES_EtaIntercalibration_Stat105: 5.11388001e-16 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 2.284575015183349e-14 - syst_JES_EtaIntercalibration_Stat11: 3.805315624228823e-10 - syst_JES_EtaIntercalibration_Stat110: 2.2555105364584312e-14 - syst_JES_EtaIntercalibration_Stat111: 1.84376808465707e-14 - syst_JES_EtaIntercalibration_Stat112: 1.84376808465707e-14 + syst_JES_EtaIntercalibration_Stat109: 2.28457502e-14 + syst_JES_EtaIntercalibration_Stat11: 3.80531562e-10 + syst_JES_EtaIntercalibration_Stat110: 2.25551054e-14 + syst_JES_EtaIntercalibration_Stat111: 1.84376808e-14 + syst_JES_EtaIntercalibration_Stat112: 1.84376808e-14 syst_JES_EtaIntercalibration_Stat113: 0.0 - syst_JES_EtaIntercalibration_Stat114: 2.6898749041544664e-14 - syst_JES_EtaIntercalibration_Stat115: 1.7267126802105786e-08 - syst_JES_EtaIntercalibration_Stat116: 4.9444515115430145e-05 - syst_JES_EtaIntercalibration_Stat117: 2.5703355325715748e-05 - syst_JES_EtaIntercalibration_Stat118: 1.2251787175755217e-06 - syst_JES_EtaIntercalibration_Stat119: 8.854719137273638e-06 - syst_JES_EtaIntercalibration_Stat12: 1.2470765175369299e-06 - syst_JES_EtaIntercalibration_Stat120: 1.3207375918294596e-06 - syst_JES_EtaIntercalibration_Stat121: 1.984064200070149e-13 + syst_JES_EtaIntercalibration_Stat114: 2.68987490e-14 + syst_JES_EtaIntercalibration_Stat115: 1.72671268e-08 + syst_JES_EtaIntercalibration_Stat116: 4.94445151e-05 + syst_JES_EtaIntercalibration_Stat117: 2.57033553e-05 + syst_JES_EtaIntercalibration_Stat118: 1.22517872e-06 + syst_JES_EtaIntercalibration_Stat119: 8.85471914e-06 + syst_JES_EtaIntercalibration_Stat12: 1.24707652e-06 + syst_JES_EtaIntercalibration_Stat120: 1.32073759e-06 + syst_JES_EtaIntercalibration_Stat121: 1.98406420e-13 syst_JES_EtaIntercalibration_Stat122: 0.0 - syst_JES_EtaIntercalibration_Stat123: 5.11388000934711e-16 - syst_JES_EtaIntercalibration_Stat124: 5.11388000934711e-16 - syst_JES_EtaIntercalibration_Stat125: 5.11388000934711e-16 + syst_JES_EtaIntercalibration_Stat123: 5.11388001e-16 + syst_JES_EtaIntercalibration_Stat124: 5.11388001e-16 + syst_JES_EtaIntercalibration_Stat125: 5.11388001e-16 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 2.284575015183349e-14 - syst_JES_EtaIntercalibration_Stat129: 2.2555105364584312e-14 + syst_JES_EtaIntercalibration_Stat128: 2.28457502e-14 + syst_JES_EtaIntercalibration_Stat129: 2.25551054e-14 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 9.222304524900488e-16 + syst_JES_EtaIntercalibration_Stat130: 9.22230452e-16 syst_JES_EtaIntercalibration_Stat131: 0.0 syst_JES_EtaIntercalibration_Stat132: 0.0 - syst_JES_EtaIntercalibration_Stat133: 2.6898749041544664e-14 - syst_JES_EtaIntercalibration_Stat134: 2.160092552461584e-05 - syst_JES_EtaIntercalibration_Stat135: 4.403974917049369e-05 - syst_JES_EtaIntercalibration_Stat136: 9.958173326469066e-05 - syst_JES_EtaIntercalibration_Stat137: 0.00014559612185769235 - syst_JES_EtaIntercalibration_Stat138: 6.753966741848822e-05 - syst_JES_EtaIntercalibration_Stat139: 1.918896044604814e-08 + syst_JES_EtaIntercalibration_Stat133: 2.68987490e-14 + syst_JES_EtaIntercalibration_Stat134: 2.16009255e-05 + syst_JES_EtaIntercalibration_Stat135: 4.40397492e-05 + syst_JES_EtaIntercalibration_Stat136: 9.95817333e-05 + syst_JES_EtaIntercalibration_Stat137: 1.45596122e-04 + syst_JES_EtaIntercalibration_Stat138: 6.75396674e-05 + syst_JES_EtaIntercalibration_Stat139: 1.91889604e-08 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 1.984064200070149e-13 + syst_JES_EtaIntercalibration_Stat140: 1.98406420e-13 syst_JES_EtaIntercalibration_Stat141: 0.0 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 5.11388000934711e-16 - syst_JES_EtaIntercalibration_Stat144: 5.11388000934711e-16 + syst_JES_EtaIntercalibration_Stat143: 5.11388001e-16 + syst_JES_EtaIntercalibration_Stat144: 5.11388001e-16 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 9.222304524900488e-16 - syst_JES_EtaIntercalibration_Stat148: 9.222304524900488e-16 + syst_JES_EtaIntercalibration_Stat147: 9.22230452e-16 + syst_JES_EtaIntercalibration_Stat148: 9.22230452e-16 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 syst_JES_EtaIntercalibration_Stat150: 0.0 syst_JES_EtaIntercalibration_Stat151: 0.0 - syst_JES_EtaIntercalibration_Stat152: 8.888884898509408e-06 - syst_JES_EtaIntercalibration_Stat153: 7.812388687207004e-05 - syst_JES_EtaIntercalibration_Stat154: 0.00017929731593083038 - syst_JES_EtaIntercalibration_Stat155: 0.00017419101584180514 - syst_JES_EtaIntercalibration_Stat156: 0.00010102449443080625 - syst_JES_EtaIntercalibration_Stat157: 2.459925289515923e-06 + syst_JES_EtaIntercalibration_Stat152: 8.88888490e-06 + syst_JES_EtaIntercalibration_Stat153: 7.81238869e-05 + syst_JES_EtaIntercalibration_Stat154: 1.79297316e-04 + syst_JES_EtaIntercalibration_Stat155: 1.74191016e-04 + syst_JES_EtaIntercalibration_Stat156: 1.01024494e-04 + syst_JES_EtaIntercalibration_Stat157: 2.45992529e-06 syst_JES_EtaIntercalibration_Stat158: 0.0 syst_JES_EtaIntercalibration_Stat159: 0.0 syst_JES_EtaIntercalibration_Stat16: 0.0 @@ -6491,18 +6491,18 @@ bins: syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 9.222304524900488e-16 + syst_JES_EtaIntercalibration_Stat165: 9.22230452e-16 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 5.9490209908858105e-05 - syst_JES_EtaIntercalibration_Stat171: 0.0004004282800952001 - syst_JES_EtaIntercalibration_Stat172: 0.000437957312417546 - syst_JES_EtaIntercalibration_Stat173: 0.0004852896145602129 - syst_JES_EtaIntercalibration_Stat174: 0.00023800131827365998 - syst_JES_EtaIntercalibration_Stat175: 5.285990422806307e-06 + syst_JES_EtaIntercalibration_Stat170: 5.94902099e-05 + syst_JES_EtaIntercalibration_Stat171: 4.00428280e-04 + syst_JES_EtaIntercalibration_Stat172: 4.37957312e-04 + syst_JES_EtaIntercalibration_Stat173: 4.85289615e-04 + syst_JES_EtaIntercalibration_Stat174: 2.38001318e-04 + syst_JES_EtaIntercalibration_Stat175: 5.28599042e-06 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 syst_JES_EtaIntercalibration_Stat178: 0.0 @@ -6515,14 +6515,14 @@ bins: syst_JES_EtaIntercalibration_Stat184: 0.0 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 - syst_JES_EtaIntercalibration_Stat187: 6.430518889444303e-05 - syst_JES_EtaIntercalibration_Stat188: 0.0014659756989800344 - syst_JES_EtaIntercalibration_Stat189: 0.002256299625493033 + syst_JES_EtaIntercalibration_Stat187: 6.43051889e-05 + syst_JES_EtaIntercalibration_Stat188: 1.46597570e-03 + syst_JES_EtaIntercalibration_Stat189: 2.25629963e-03 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 0.002137382979252899 - syst_JES_EtaIntercalibration_Stat191: 0.0013624232849962599 - syst_JES_EtaIntercalibration_Stat192: 1.2399533983178561e-05 - syst_JES_EtaIntercalibration_Stat193: 1.3553297569226464e-06 + syst_JES_EtaIntercalibration_Stat190: 2.13738298e-03 + syst_JES_EtaIntercalibration_Stat191: 1.36242328e-03 + syst_JES_EtaIntercalibration_Stat192: 1.23995340e-05 + syst_JES_EtaIntercalibration_Stat193: 1.35532976e-06 syst_JES_EtaIntercalibration_Stat194: 0.0 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 @@ -6533,13 +6533,13 @@ bins: syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 syst_JES_EtaIntercalibration_Stat201: 0.0 - syst_JES_EtaIntercalibration_Stat202: 2.6065228236100296e-05 - syst_JES_EtaIntercalibration_Stat203: 0.0022180004508565816 - syst_JES_EtaIntercalibration_Stat204: 0.0033741069929686582 - syst_JES_EtaIntercalibration_Stat205: 0.003060886472902907 - syst_JES_EtaIntercalibration_Stat206: 0.0022995035877336656 - syst_JES_EtaIntercalibration_Stat207: 4.291685071157948e-05 - syst_JES_EtaIntercalibration_Stat208: 1.3553297569226464e-06 + syst_JES_EtaIntercalibration_Stat202: 2.60652282e-05 + syst_JES_EtaIntercalibration_Stat203: 2.21800045e-03 + syst_JES_EtaIntercalibration_Stat204: 3.37410699e-03 + syst_JES_EtaIntercalibration_Stat205: 3.06088647e-03 + syst_JES_EtaIntercalibration_Stat206: 2.29950359e-03 + syst_JES_EtaIntercalibration_Stat207: 4.29168507e-05 + syst_JES_EtaIntercalibration_Stat208: 1.35532976e-06 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 @@ -6547,38 +6547,38 @@ bins: syst_JES_EtaIntercalibration_Stat212: 0.0 syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 - syst_JES_EtaIntercalibration_Stat215: 4.3427574327839216e-05 - syst_JES_EtaIntercalibration_Stat216: 0.0009919512324202233 - syst_JES_EtaIntercalibration_Stat217: 0.001386242013502693 - syst_JES_EtaIntercalibration_Stat218: 0.0013075870946135863 - syst_JES_EtaIntercalibration_Stat219: 0.0010593519847057445 + syst_JES_EtaIntercalibration_Stat215: 4.34275743e-05 + syst_JES_EtaIntercalibration_Stat216: 9.91951232e-04 + syst_JES_EtaIntercalibration_Stat217: 1.38624201e-03 + syst_JES_EtaIntercalibration_Stat218: 1.30758709e-03 + syst_JES_EtaIntercalibration_Stat219: 1.05935198e-03 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 3.062605590016449e-05 + syst_JES_EtaIntercalibration_Stat220: 3.06260559e-05 syst_JES_EtaIntercalibration_Stat221: 0.0 syst_JES_EtaIntercalibration_Stat222: 0.0 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 - syst_JES_EtaIntercalibration_Stat227: 1.2421726933079795e-05 - syst_JES_EtaIntercalibration_Stat228: 0.0001555668317701431 - syst_JES_EtaIntercalibration_Stat229: 0.0003167522059907397 + syst_JES_EtaIntercalibration_Stat227: 1.24217269e-05 + syst_JES_EtaIntercalibration_Stat228: 1.55566832e-04 + syst_JES_EtaIntercalibration_Stat229: 3.16752206e-04 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 0.00029824005012740994 - syst_JES_EtaIntercalibration_Stat231: 0.00025614931909923163 - syst_JES_EtaIntercalibration_Stat232: 2.2949673198452516e-05 + syst_JES_EtaIntercalibration_Stat230: 2.98240050e-04 + syst_JES_EtaIntercalibration_Stat231: 2.56149319e-04 + syst_JES_EtaIntercalibration_Stat232: 2.29496732e-05 syst_JES_EtaIntercalibration_Stat233: 0.0 syst_JES_EtaIntercalibration_Stat234: 0.0 syst_JES_EtaIntercalibration_Stat235: 0.0 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 - syst_JES_EtaIntercalibration_Stat238: 2.2014365764200432e-09 - syst_JES_EtaIntercalibration_Stat239: 4.237979795846129e-05 + syst_JES_EtaIntercalibration_Stat238: 2.20143658e-09 + syst_JES_EtaIntercalibration_Stat239: 4.23797980e-05 syst_JES_EtaIntercalibration_Stat24: 0.0 - syst_JES_EtaIntercalibration_Stat240: 4.7370408484622553e-05 - syst_JES_EtaIntercalibration_Stat241: 6.578365906515083e-05 - syst_JES_EtaIntercalibration_Stat242: 3.533966998997019e-05 - syst_JES_EtaIntercalibration_Stat243: 1.5623098284271273e-09 + syst_JES_EtaIntercalibration_Stat240: 4.73704085e-05 + syst_JES_EtaIntercalibration_Stat241: 6.57836591e-05 + syst_JES_EtaIntercalibration_Stat242: 3.53396700e-05 + syst_JES_EtaIntercalibration_Stat243: 1.56230983e-09 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 syst_JES_EtaIntercalibration_Stat25: 0.0 @@ -6587,12 +6587,12 @@ bins: syst_JES_EtaIntercalibration_Stat28: 0.0 syst_JES_EtaIntercalibration_Stat29: 0.0 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 2.6042199830275472e-14 - syst_JES_EtaIntercalibration_Stat31: 2.070715689683159e-05 - syst_JES_EtaIntercalibration_Stat32: 4.797615216698813e-10 - syst_JES_EtaIntercalibration_Stat33: 1.2462117858067346e-06 - syst_JES_EtaIntercalibration_Stat34: 1.3310823469692782e-06 - syst_JES_EtaIntercalibration_Stat35: 1.9443724517719642e-13 + syst_JES_EtaIntercalibration_Stat30: 2.60421998e-14 + syst_JES_EtaIntercalibration_Stat31: 2.07071569e-05 + syst_JES_EtaIntercalibration_Stat32: 4.79761522e-10 + syst_JES_EtaIntercalibration_Stat33: 1.24621179e-06 + syst_JES_EtaIntercalibration_Stat34: 1.33108235e-06 + syst_JES_EtaIntercalibration_Stat35: 1.94437245e-13 syst_JES_EtaIntercalibration_Stat36: 0.0 syst_JES_EtaIntercalibration_Stat37: 0.0 syst_JES_EtaIntercalibration_Stat38: 0.0 @@ -6611,215 +6611,215 @@ bins: syst_JES_EtaIntercalibration_Stat5: 0.0 syst_JES_EtaIntercalibration_Stat50: 0.0 syst_JES_EtaIntercalibration_Stat51: 0.0 - syst_JES_EtaIntercalibration_Stat52: 1.93163176615006e-13 - syst_JES_EtaIntercalibration_Stat53: 1.2539417366799783e-09 - syst_JES_EtaIntercalibration_Stat54: 1.1616916774544785e-05 - syst_JES_EtaIntercalibration_Stat55: 1.2490460168036914e-06 - syst_JES_EtaIntercalibration_Stat56: 1.3302631781969612e-06 - syst_JES_EtaIntercalibration_Stat57: 1.7214395044555006e-12 + syst_JES_EtaIntercalibration_Stat52: 1.93163177e-13 + syst_JES_EtaIntercalibration_Stat53: 1.25394174e-09 + syst_JES_EtaIntercalibration_Stat54: 1.16169168e-05 + syst_JES_EtaIntercalibration_Stat55: 1.24904602e-06 + syst_JES_EtaIntercalibration_Stat56: 1.33026318e-06 + syst_JES_EtaIntercalibration_Stat57: 1.72143950e-12 syst_JES_EtaIntercalibration_Stat58: 0.0 syst_JES_EtaIntercalibration_Stat59: 0.0 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 5.11388000934711e-16 - syst_JES_EtaIntercalibration_Stat62: 5.11388000934711e-16 + syst_JES_EtaIntercalibration_Stat61: 5.11388001e-16 + syst_JES_EtaIntercalibration_Stat62: 5.11388001e-16 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 2.284575015183349e-14 - syst_JES_EtaIntercalibration_Stat69: 2.284575015183349e-14 + syst_JES_EtaIntercalibration_Stat68: 2.28457502e-14 + syst_JES_EtaIntercalibration_Stat69: 2.28457502e-14 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 1.84376808465707e-14 - syst_JES_EtaIntercalibration_Stat71: 1.84376808465707e-14 + syst_JES_EtaIntercalibration_Stat70: 1.84376808e-14 + syst_JES_EtaIntercalibration_Stat71: 1.84376808e-14 syst_JES_EtaIntercalibration_Stat72: 0.0 syst_JES_EtaIntercalibration_Stat73: 0.0 - syst_JES_EtaIntercalibration_Stat74: 7.632665375267017e-10 - syst_JES_EtaIntercalibration_Stat75: 4.0179233840380784e-05 - syst_JES_EtaIntercalibration_Stat76: 3.456512787575796e-06 - syst_JES_EtaIntercalibration_Stat77: 3.1743507603918008e-06 - syst_JES_EtaIntercalibration_Stat78: 4.6169370482496294e-06 - syst_JES_EtaIntercalibration_Stat79: 1.9618931545830928e-12 + syst_JES_EtaIntercalibration_Stat74: 7.63266538e-10 + syst_JES_EtaIntercalibration_Stat75: 4.01792338e-05 + syst_JES_EtaIntercalibration_Stat76: 3.45651279e-06 + syst_JES_EtaIntercalibration_Stat77: 3.17435076e-06 + syst_JES_EtaIntercalibration_Stat78: 4.61693705e-06 + syst_JES_EtaIntercalibration_Stat79: 1.96189315e-12 syst_JES_EtaIntercalibration_Stat8: 0.0 syst_JES_EtaIntercalibration_Stat80: 0.0 syst_JES_EtaIntercalibration_Stat81: 0.0 - syst_JES_EtaIntercalibration_Stat82: 5.11388000934711e-16 - syst_JES_EtaIntercalibration_Stat83: 5.11388000934711e-16 - syst_JES_EtaIntercalibration_Stat84: 5.11388000934711e-16 + syst_JES_EtaIntercalibration_Stat82: 5.11388001e-16 + syst_JES_EtaIntercalibration_Stat83: 5.11388001e-16 + syst_JES_EtaIntercalibration_Stat84: 5.11388001e-16 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 2.284575015183349e-14 - syst_JES_EtaIntercalibration_Stat9: 7.643646190054898e-10 - syst_JES_EtaIntercalibration_Stat90: 2.284575015183349e-14 - syst_JES_EtaIntercalibration_Stat91: 1.84376808465707e-14 - syst_JES_EtaIntercalibration_Stat92: 1.84376808465707e-14 + syst_JES_EtaIntercalibration_Stat89: 2.28457502e-14 + syst_JES_EtaIntercalibration_Stat9: 7.64364619e-10 + syst_JES_EtaIntercalibration_Stat90: 2.28457502e-14 + syst_JES_EtaIntercalibration_Stat91: 1.84376808e-14 + syst_JES_EtaIntercalibration_Stat92: 1.84376808e-14 syst_JES_EtaIntercalibration_Stat93: 0.0 syst_JES_EtaIntercalibration_Stat94: 0.0 - syst_JES_EtaIntercalibration_Stat95: 7.634076464620655e-10 - syst_JES_EtaIntercalibration_Stat96: 4.13066322398716e-05 - syst_JES_EtaIntercalibration_Stat97: 3.520827601573244e-06 - syst_JES_EtaIntercalibration_Stat98: 3.224227194228099e-06 - syst_JES_EtaIntercalibration_Stat99: 5.3611919539874705e-06 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.012866448150130633 - syst_JES_Flavour_Comp: 0.04209963984406517 - syst_JES_Flavour_Response: 0.02094966825512996 - syst_JES_Gjet_Generator: 0.06939832346678125 - syst_JES_Gjet_OOC: 0.05406958849482766 - syst_JES_Gjet_Purity: 0.01642183531156003 - syst_JES_Gjet_Stat1: 0.0001324820292530274 - syst_JES_Gjet_Stat10: 0.0016802162807210267 - syst_JES_Gjet_Stat11: 0.002379306411540977 - syst_JES_Gjet_Stat12: 0.008059123075744655 - syst_JES_Gjet_Stat13: 0.01562550079197464 - syst_JES_Gjet_Stat14: 0.00852332709392289 - syst_JES_Gjet_Stat15: 0.00461720204777742 - syst_JES_Gjet_Stat2: 9.527563616853315e-05 - syst_JES_Gjet_Stat3: 0.00012136991997607974 - syst_JES_Gjet_Stat4: 0.00018949308694514425 - syst_JES_Gjet_Stat5: 0.00014372535336536834 - syst_JES_Gjet_Stat6: 0.0005109170872069167 - syst_JES_Gjet_Stat7: 0.0007650942033501497 - syst_JES_Gjet_Stat8: 0.0004511056500422047 - syst_JES_Gjet_Stat9: 0.0010697461229188913 - syst_JES_Gjet_Veto: 0.04277113278836557 - syst_JES_Gjet_dPhi: 0.004551087864456146 - syst_JES_LArESZee: 0.10383455819234749 - syst_JES_LArEsmear: 0.007704679292481939 - syst_JES_LAr_JVT: 0.009892589600301835 - syst_JES_MJB_Alpha: 0.0007951464063303059 - syst_JES_MJB_Asym: 0.0031535124464634667 - syst_JES_MJB_Beta: 0.00020375560728480577 - syst_JES_MJB_Fragmentation: 0.011498219025136022 - syst_JES_MJB_Stat1: 0.00029458044741632124 - syst_JES_MJB_Stat10: 3.3755082817258793e-06 - syst_JES_MJB_Stat11: 0.00010379316421864061 - syst_JES_MJB_Stat12: 8.516880277865835e-05 - syst_JES_MJB_Stat13: 6.973310601859063e-05 - syst_JES_MJB_Stat14: 1.534835465937636e-06 - syst_JES_MJB_Stat15: 9.063551001125333e-07 - syst_JES_MJB_Stat16: 1.5238033829861384e-07 - syst_JES_MJB_Stat2: 0.0006546899628831957 - syst_JES_MJB_Stat3: 0.001429705126940517 - syst_JES_MJB_Stat4: 0.0005751612121831582 - syst_JES_MJB_Stat5: 0.0003225031895578709 - syst_JES_MJB_Stat6: 0.00020909168294076165 - syst_JES_MJB_Stat7: 5.336166671872235e-05 - syst_JES_MJB_Stat8: 1.7666161212895121e-06 - syst_JES_MJB_Stat9: 1.7573299832416222e-06 - syst_JES_MJB_Threshold: 0.005108514730330137 - syst_JES_Pileup_MuOffset: 0.010247622394975335 - syst_JES_Pileup_NPVOffset: 0.01082726275426989 - syst_JES_Pileup_Pt_term: 0.009731657515552014 - syst_JES_Pileup_Rho_topology: 0.021756006067290935 - syst_JES_PunchThrough_MC15: 0.0018260434688144747 - syst_JES_SingleParticle_HighPt: 2.0714806298877133e-43 - syst_JES_Zjet_MC: 0.04654310260393048 - syst_JES_Zjet_MuScale: 0.002748009097510414 - syst_JES_Zjet_MuSmearID: 0.0006641037927161687 - syst_JES_Zjet_MuSmearMS: 0.012896044461384275 - syst_JES_Zjet_OOC: 0.02006268364401931 - syst_JES_Zjet_Stat1: 0.0009524939212404456 - syst_JES_Zjet_Stat10: 0.0016853676156850768 - syst_JES_Zjet_Stat11: 0.0019461409892399884 - syst_JES_Zjet_Stat12: 0.009435485997022092 - syst_JES_Zjet_Stat13: 0.013662310822112049 + syst_JES_EtaIntercalibration_Stat95: 7.63407646e-10 + syst_JES_EtaIntercalibration_Stat96: 4.13066322e-05 + syst_JES_EtaIntercalibration_Stat97: 3.52082760e-06 + syst_JES_EtaIntercalibration_Stat98: 3.22422719e-06 + syst_JES_EtaIntercalibration_Stat99: 5.36119195e-06 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.28664482e-02 + syst_JES_Flavour_Comp: 4.20996398e-02 + syst_JES_Flavour_Response: 2.09496683e-02 + syst_JES_Gjet_Generator: 6.93983235e-02 + syst_JES_Gjet_OOC: 5.40695885e-02 + syst_JES_Gjet_Purity: 1.64218353e-02 + syst_JES_Gjet_Stat1: 1.32482029e-04 + syst_JES_Gjet_Stat10: 1.68021628e-03 + syst_JES_Gjet_Stat11: 2.37930641e-03 + syst_JES_Gjet_Stat12: 8.05912308e-03 + syst_JES_Gjet_Stat13: 1.56255008e-02 + syst_JES_Gjet_Stat14: 8.52332709e-03 + syst_JES_Gjet_Stat15: 4.61720205e-03 + syst_JES_Gjet_Stat2: 9.52756362e-05 + syst_JES_Gjet_Stat3: 1.21369920e-04 + syst_JES_Gjet_Stat4: 1.89493087e-04 + syst_JES_Gjet_Stat5: 1.43725353e-04 + syst_JES_Gjet_Stat6: 5.10917087e-04 + syst_JES_Gjet_Stat7: 7.65094203e-04 + syst_JES_Gjet_Stat8: 4.51105650e-04 + syst_JES_Gjet_Stat9: 1.06974612e-03 + syst_JES_Gjet_Veto: 4.27711328e-02 + syst_JES_Gjet_dPhi: 4.55108786e-03 + syst_JES_LArESZee: 1.03834558e-01 + syst_JES_LArEsmear: 7.70467929e-03 + syst_JES_LAr_JVT: 9.89258960e-03 + syst_JES_MJB_Alpha: 7.95146406e-04 + syst_JES_MJB_Asym: 3.15351245e-03 + syst_JES_MJB_Beta: 2.03755607e-04 + syst_JES_MJB_Fragmentation: 1.14982190e-02 + syst_JES_MJB_Stat1: 2.94580447e-04 + syst_JES_MJB_Stat10: 3.37550828e-06 + syst_JES_MJB_Stat11: 1.03793164e-04 + syst_JES_MJB_Stat12: 8.51688028e-05 + syst_JES_MJB_Stat13: 6.97331060e-05 + syst_JES_MJB_Stat14: 1.53483547e-06 + syst_JES_MJB_Stat15: 9.06355100e-07 + syst_JES_MJB_Stat16: 1.52380338e-07 + syst_JES_MJB_Stat2: 6.54689963e-04 + syst_JES_MJB_Stat3: 1.42970513e-03 + syst_JES_MJB_Stat4: 5.75161212e-04 + syst_JES_MJB_Stat5: 3.22503190e-04 + syst_JES_MJB_Stat6: 2.09091683e-04 + syst_JES_MJB_Stat7: 5.33616667e-05 + syst_JES_MJB_Stat8: 1.76661612e-06 + syst_JES_MJB_Stat9: 1.75732998e-06 + syst_JES_MJB_Threshold: 5.10851473e-03 + syst_JES_Pileup_MuOffset: 1.02476224e-02 + syst_JES_Pileup_NPVOffset: 1.08272628e-02 + syst_JES_Pileup_Pt_term: 9.73165752e-03 + syst_JES_Pileup_Rho_topology: 2.17560061e-02 + syst_JES_PunchThrough_MC15: 1.82604347e-03 + syst_JES_SingleParticle_HighPt: 2.07148063e-43 + syst_JES_Zjet_MC: 4.65431026e-02 + syst_JES_Zjet_MuScale: 2.74800910e-03 + syst_JES_Zjet_MuSmearID: 6.64103793e-04 + syst_JES_Zjet_MuSmearMS: 1.28960445e-02 + syst_JES_Zjet_OOC: 2.00626836e-02 + syst_JES_Zjet_Stat1: 9.52493921e-04 + syst_JES_Zjet_Stat10: 1.68536762e-03 + syst_JES_Zjet_Stat11: 1.94614099e-03 + syst_JES_Zjet_Stat12: 9.43548600e-03 + syst_JES_Zjet_Stat13: 1.36623108e-02 syst_JES_Zjet_Stat2: 0.0 - syst_JES_Zjet_Stat3: 0.0003381417565164054 - syst_JES_Zjet_Stat4: 0.0003711196943036033 - syst_JES_Zjet_Stat5: 0.0001993369697271432 - syst_JES_Zjet_Stat6: 0.0006371484206996044 - syst_JES_Zjet_Stat7: 0.0003941891424176978 - syst_JES_Zjet_Stat8: 0.0005503292173781073 - syst_JES_Zjet_Stat9: 0.0010618465837869422 - syst_JES_Zjet_Veto: 0.004193438058443214 - syst_JES_Zjet_dPhi: 0.0034788756804461983 + syst_JES_Zjet_Stat3: 3.38141757e-04 + syst_JES_Zjet_Stat4: 3.71119694e-04 + syst_JES_Zjet_Stat5: 1.99336970e-04 + syst_JES_Zjet_Stat6: 6.37148421e-04 + syst_JES_Zjet_Stat7: 3.94189142e-04 + syst_JES_Zjet_Stat8: 5.50329217e-04 + syst_JES_Zjet_Stat9: 1.06184658e-03 + syst_JES_Zjet_Veto: 4.19343806e-03 + syst_JES_Zjet_dPhi: 3.47887568e-03 syst_PRW: 0.001976 - syst_Unfolding_bias: 0.0003243 - syst_cleaning: 0.01944227031496065 + syst_Unfolding_bias: 3.24300000e-04 + syst_cleaning: 1.94422703e-02 syst_lumi: 0.07523 - stat: 0.007959 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.005273696236985972 - syst_JER_NP1: 0.0004934142352020258 - syst_JER_NP2: 0.00038849333005857385 - syst_JER_NP3: 0.0012731680672637058 - syst_JER_NP4: 0.0005780222141059979 - syst_JER_NP5: 0.0006445133881464372 - syst_JER_NP6: 0.0012336314877223263 - syst_JER_NP7: 0.0010251230304212271 - syst_JER_NP8: 0.0012400400114512434 - syst_JES_EtaIntercalibration_Modelling: 0.018231529694460635 + syst_JER_NP0: 5.27369624e-03 + syst_JER_NP1: 4.93414235e-04 + syst_JER_NP2: 3.88493330e-04 + syst_JER_NP3: 1.27316807e-03 + syst_JER_NP4: 5.78022214e-04 + syst_JER_NP5: 6.44513388e-04 + syst_JER_NP6: 1.23363149e-03 + syst_JER_NP7: 1.02512303e-03 + syst_JER_NP8: 1.24004001e-03 + syst_JES_EtaIntercalibration_Modelling: 1.82315297e-02 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 - syst_JES_EtaIntercalibration_Stat10: 4.733544910199438e-13 - syst_JES_EtaIntercalibration_Stat100: 5.125075795293178e-11 + syst_JES_EtaIntercalibration_Stat10: 4.73354491e-13 + syst_JES_EtaIntercalibration_Stat100: 5.12507580e-11 syst_JES_EtaIntercalibration_Stat101: 0.0 syst_JES_EtaIntercalibration_Stat102: 0.0 - syst_JES_EtaIntercalibration_Stat103: 8.919195633575933e-17 - syst_JES_EtaIntercalibration_Stat104: 8.919195633575933e-17 - syst_JES_EtaIntercalibration_Stat105: 8.919195633575933e-17 + syst_JES_EtaIntercalibration_Stat103: 8.91919563e-17 + syst_JES_EtaIntercalibration_Stat104: 8.91919563e-17 + syst_JES_EtaIntercalibration_Stat105: 8.91919563e-17 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 3.636440670490858e-15 - syst_JES_EtaIntercalibration_Stat11: 5.138994746056859e-11 - syst_JES_EtaIntercalibration_Stat110: 3.5868031124526475e-15 - syst_JES_EtaIntercalibration_Stat111: 2.9704671349806244e-15 - syst_JES_EtaIntercalibration_Stat112: 2.9704671349806244e-15 + syst_JES_EtaIntercalibration_Stat109: 3.63644067e-15 + syst_JES_EtaIntercalibration_Stat11: 5.13899475e-11 + syst_JES_EtaIntercalibration_Stat110: 3.58680311e-15 + syst_JES_EtaIntercalibration_Stat111: 2.97046713e-15 + syst_JES_EtaIntercalibration_Stat112: 2.97046713e-15 syst_JES_EtaIntercalibration_Stat113: 0.0 - syst_JES_EtaIntercalibration_Stat114: 4.259112935811869e-15 - syst_JES_EtaIntercalibration_Stat115: 2.6280491219724184e-09 - syst_JES_EtaIntercalibration_Stat116: 2.3287058788090867e-05 - syst_JES_EtaIntercalibration_Stat117: 2.1213997755020154e-05 - syst_JES_EtaIntercalibration_Stat118: 4.050498086655517e-06 - syst_JES_EtaIntercalibration_Stat119: 5.8267612573367035e-06 - syst_JES_EtaIntercalibration_Stat12: 2.78600362983759e-07 - syst_JES_EtaIntercalibration_Stat120: 2.8969180277967685e-07 - syst_JES_EtaIntercalibration_Stat121: 2.926299839387618e-14 + syst_JES_EtaIntercalibration_Stat114: 4.25911294e-15 + syst_JES_EtaIntercalibration_Stat115: 2.62804912e-09 + syst_JES_EtaIntercalibration_Stat116: 2.32870588e-05 + syst_JES_EtaIntercalibration_Stat117: 2.12139978e-05 + syst_JES_EtaIntercalibration_Stat118: 4.05049809e-06 + syst_JES_EtaIntercalibration_Stat119: 5.82676126e-06 + syst_JES_EtaIntercalibration_Stat12: 2.78600363e-07 + syst_JES_EtaIntercalibration_Stat120: 2.89691803e-07 + syst_JES_EtaIntercalibration_Stat121: 2.92629984e-14 syst_JES_EtaIntercalibration_Stat122: 0.0 - syst_JES_EtaIntercalibration_Stat123: 8.919195633575933e-17 - syst_JES_EtaIntercalibration_Stat124: 8.919195633575933e-17 - syst_JES_EtaIntercalibration_Stat125: 8.919195633575933e-17 + syst_JES_EtaIntercalibration_Stat123: 8.91919563e-17 + syst_JES_EtaIntercalibration_Stat124: 8.91919563e-17 + syst_JES_EtaIntercalibration_Stat125: 8.91919563e-17 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 3.636440670490858e-15 - syst_JES_EtaIntercalibration_Stat129: 3.5868031124526475e-15 + syst_JES_EtaIntercalibration_Stat128: 3.63644067e-15 + syst_JES_EtaIntercalibration_Stat129: 3.58680311e-15 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 1.5822284127141692e-16 + syst_JES_EtaIntercalibration_Stat130: 1.58222841e-16 syst_JES_EtaIntercalibration_Stat131: 0.0 syst_JES_EtaIntercalibration_Stat132: 0.0 - syst_JES_EtaIntercalibration_Stat133: 4.259112935811869e-15 - syst_JES_EtaIntercalibration_Stat134: 1.3958897404523038e-05 - syst_JES_EtaIntercalibration_Stat135: 1.680167523641616e-05 - syst_JES_EtaIntercalibration_Stat136: 4.1248130866743524e-05 - syst_JES_EtaIntercalibration_Stat137: 6.126909069832847e-05 - syst_JES_EtaIntercalibration_Stat138: 3.362889119492345e-05 - syst_JES_EtaIntercalibration_Stat139: 2.4748280561485477e-09 + syst_JES_EtaIntercalibration_Stat133: 4.25911294e-15 + syst_JES_EtaIntercalibration_Stat134: 1.39588974e-05 + syst_JES_EtaIntercalibration_Stat135: 1.68016752e-05 + syst_JES_EtaIntercalibration_Stat136: 4.12481309e-05 + syst_JES_EtaIntercalibration_Stat137: 6.12690907e-05 + syst_JES_EtaIntercalibration_Stat138: 3.36288912e-05 + syst_JES_EtaIntercalibration_Stat139: 2.47482806e-09 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 2.926299839387618e-14 + syst_JES_EtaIntercalibration_Stat140: 2.92629984e-14 syst_JES_EtaIntercalibration_Stat141: 0.0 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 8.919195633575933e-17 - syst_JES_EtaIntercalibration_Stat144: 8.919195633575933e-17 + syst_JES_EtaIntercalibration_Stat143: 8.91919563e-17 + syst_JES_EtaIntercalibration_Stat144: 8.91919563e-17 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 1.5822284127141692e-16 - syst_JES_EtaIntercalibration_Stat148: 1.5822284127141692e-16 + syst_JES_EtaIntercalibration_Stat147: 1.58222841e-16 + syst_JES_EtaIntercalibration_Stat148: 1.58222841e-16 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 syst_JES_EtaIntercalibration_Stat150: 0.0 syst_JES_EtaIntercalibration_Stat151: 0.0 - syst_JES_EtaIntercalibration_Stat152: 5.764265110585085e-06 - syst_JES_EtaIntercalibration_Stat153: 2.9795602641161666e-05 - syst_JES_EtaIntercalibration_Stat154: 5.836069460690132e-05 - syst_JES_EtaIntercalibration_Stat155: 7.097694608110439e-05 - syst_JES_EtaIntercalibration_Stat156: 3.760413939980544e-05 - syst_JES_EtaIntercalibration_Stat157: 5.38578806489821e-07 + syst_JES_EtaIntercalibration_Stat152: 5.76426511e-06 + syst_JES_EtaIntercalibration_Stat153: 2.97956026e-05 + syst_JES_EtaIntercalibration_Stat154: 5.83606946e-05 + syst_JES_EtaIntercalibration_Stat155: 7.09769461e-05 + syst_JES_EtaIntercalibration_Stat156: 3.76041394e-05 + syst_JES_EtaIntercalibration_Stat157: 5.38578806e-07 syst_JES_EtaIntercalibration_Stat158: 0.0 syst_JES_EtaIntercalibration_Stat159: 0.0 syst_JES_EtaIntercalibration_Stat16: 0.0 @@ -6828,18 +6828,18 @@ bins: syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 1.5822284127141692e-16 + syst_JES_EtaIntercalibration_Stat165: 1.58222841e-16 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 4.708449426297366e-05 - syst_JES_EtaIntercalibration_Stat171: 0.0001553945001439884 - syst_JES_EtaIntercalibration_Stat172: 0.00016077135161464556 - syst_JES_EtaIntercalibration_Stat173: 0.0001896620942624013 - syst_JES_EtaIntercalibration_Stat174: 9.262156552337041e-05 - syst_JES_EtaIntercalibration_Stat175: 1.2194016237483036e-06 + syst_JES_EtaIntercalibration_Stat170: 4.70844943e-05 + syst_JES_EtaIntercalibration_Stat171: 1.55394500e-04 + syst_JES_EtaIntercalibration_Stat172: 1.60771352e-04 + syst_JES_EtaIntercalibration_Stat173: 1.89662094e-04 + syst_JES_EtaIntercalibration_Stat174: 9.26215655e-05 + syst_JES_EtaIntercalibration_Stat175: 1.21940162e-06 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 syst_JES_EtaIntercalibration_Stat178: 0.0 @@ -6852,14 +6852,14 @@ bins: syst_JES_EtaIntercalibration_Stat184: 0.0 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 - syst_JES_EtaIntercalibration_Stat187: 2.5222768101855913e-05 - syst_JES_EtaIntercalibration_Stat188: 0.0006547421706290194 - syst_JES_EtaIntercalibration_Stat189: 0.0009281511878460318 + syst_JES_EtaIntercalibration_Stat187: 2.52227681e-05 + syst_JES_EtaIntercalibration_Stat188: 6.54742171e-04 + syst_JES_EtaIntercalibration_Stat189: 9.28151188e-04 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 0.0009204652193320505 - syst_JES_EtaIntercalibration_Stat191: 0.0005774849868178393 - syst_JES_EtaIntercalibration_Stat192: 8.545391199354188e-06 - syst_JES_EtaIntercalibration_Stat193: 2.95401265230872e-07 + syst_JES_EtaIntercalibration_Stat190: 9.20465219e-04 + syst_JES_EtaIntercalibration_Stat191: 5.77484987e-04 + syst_JES_EtaIntercalibration_Stat192: 8.54539120e-06 + syst_JES_EtaIntercalibration_Stat193: 2.95401265e-07 syst_JES_EtaIntercalibration_Stat194: 0.0 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 @@ -6870,13 +6870,13 @@ bins: syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 syst_JES_EtaIntercalibration_Stat201: 0.0 - syst_JES_EtaIntercalibration_Stat202: 3.098247367464386e-06 - syst_JES_EtaIntercalibration_Stat203: 0.0011265039147734905 - syst_JES_EtaIntercalibration_Stat204: 0.0017202325424197742 - syst_JES_EtaIntercalibration_Stat205: 0.0014874157018130473 - syst_JES_EtaIntercalibration_Stat206: 0.0011989060961976963 - syst_JES_EtaIntercalibration_Stat207: 2.396638218421796e-05 - syst_JES_EtaIntercalibration_Stat208: 2.95401265230872e-07 + syst_JES_EtaIntercalibration_Stat202: 3.09824737e-06 + syst_JES_EtaIntercalibration_Stat203: 1.12650391e-03 + syst_JES_EtaIntercalibration_Stat204: 1.72023254e-03 + syst_JES_EtaIntercalibration_Stat205: 1.48741570e-03 + syst_JES_EtaIntercalibration_Stat206: 1.19890610e-03 + syst_JES_EtaIntercalibration_Stat207: 2.39663822e-05 + syst_JES_EtaIntercalibration_Stat208: 2.95401265e-07 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 @@ -6884,38 +6884,38 @@ bins: syst_JES_EtaIntercalibration_Stat212: 0.0 syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 - syst_JES_EtaIntercalibration_Stat215: 1.781860564129528e-05 - syst_JES_EtaIntercalibration_Stat216: 0.0007182597771697926 - syst_JES_EtaIntercalibration_Stat217: 0.0009284080608762507 - syst_JES_EtaIntercalibration_Stat218: 0.0009543094309499409 - syst_JES_EtaIntercalibration_Stat219: 0.0007568334625265983 + syst_JES_EtaIntercalibration_Stat215: 1.78186056e-05 + syst_JES_EtaIntercalibration_Stat216: 7.18259777e-04 + syst_JES_EtaIntercalibration_Stat217: 9.28408061e-04 + syst_JES_EtaIntercalibration_Stat218: 9.54309431e-04 + syst_JES_EtaIntercalibration_Stat219: 7.56833463e-04 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 1.5595596910666805e-05 + syst_JES_EtaIntercalibration_Stat220: 1.55955969e-05 syst_JES_EtaIntercalibration_Stat221: 0.0 syst_JES_EtaIntercalibration_Stat222: 0.0 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 - syst_JES_EtaIntercalibration_Stat227: 1.092812788175541e-06 - syst_JES_EtaIntercalibration_Stat228: 0.0001766078627921192 - syst_JES_EtaIntercalibration_Stat229: 0.00010333154443344008 + syst_JES_EtaIntercalibration_Stat227: 1.09281279e-06 + syst_JES_EtaIntercalibration_Stat228: 1.76607863e-04 + syst_JES_EtaIntercalibration_Stat229: 1.03331544e-04 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 0.0001741702256414684 - syst_JES_EtaIntercalibration_Stat231: 0.00015850064605546567 - syst_JES_EtaIntercalibration_Stat232: 1.479171305832581e-05 + syst_JES_EtaIntercalibration_Stat230: 1.74170226e-04 + syst_JES_EtaIntercalibration_Stat231: 1.58500646e-04 + syst_JES_EtaIntercalibration_Stat232: 1.47917131e-05 syst_JES_EtaIntercalibration_Stat233: 0.0 syst_JES_EtaIntercalibration_Stat234: 0.0 syst_JES_EtaIntercalibration_Stat235: 0.0 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 - syst_JES_EtaIntercalibration_Stat238: 3.066595954800697e-08 - syst_JES_EtaIntercalibration_Stat239: 4.534718412426509e-05 + syst_JES_EtaIntercalibration_Stat238: 3.06659595e-08 + syst_JES_EtaIntercalibration_Stat239: 4.53471841e-05 syst_JES_EtaIntercalibration_Stat24: 0.0 - syst_JES_EtaIntercalibration_Stat240: 5.1957815581488796e-05 - syst_JES_EtaIntercalibration_Stat241: 6.491370945339667e-05 - syst_JES_EtaIntercalibration_Stat242: 4.005879687097454e-05 - syst_JES_EtaIntercalibration_Stat243: 1.950289209322556e-08 + syst_JES_EtaIntercalibration_Stat240: 5.19578156e-05 + syst_JES_EtaIntercalibration_Stat241: 6.49137095e-05 + syst_JES_EtaIntercalibration_Stat242: 4.00587969e-05 + syst_JES_EtaIntercalibration_Stat243: 1.95028921e-08 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 syst_JES_EtaIntercalibration_Stat25: 0.0 @@ -6924,12 +6924,12 @@ bins: syst_JES_EtaIntercalibration_Stat28: 0.0 syst_JES_EtaIntercalibration_Stat29: 0.0 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 4.117865354768172e-15 - syst_JES_EtaIntercalibration_Stat31: 1.3279430069377979e-05 - syst_JES_EtaIntercalibration_Stat32: 6.493987686121678e-11 - syst_JES_EtaIntercalibration_Stat33: 2.7868713789532696e-07 - syst_JES_EtaIntercalibration_Stat34: 2.91590926890654e-07 - syst_JES_EtaIntercalibration_Stat35: 2.864220270055633e-14 + syst_JES_EtaIntercalibration_Stat30: 4.11786535e-15 + syst_JES_EtaIntercalibration_Stat31: 1.32794301e-05 + syst_JES_EtaIntercalibration_Stat32: 6.49398769e-11 + syst_JES_EtaIntercalibration_Stat33: 2.78687138e-07 + syst_JES_EtaIntercalibration_Stat34: 2.91590927e-07 + syst_JES_EtaIntercalibration_Stat35: 2.86422027e-14 syst_JES_EtaIntercalibration_Stat36: 0.0 syst_JES_EtaIntercalibration_Stat37: 0.0 syst_JES_EtaIntercalibration_Stat38: 0.0 @@ -6948,215 +6948,215 @@ bins: syst_JES_EtaIntercalibration_Stat5: 0.0 syst_JES_EtaIntercalibration_Stat50: 0.0 syst_JES_EtaIntercalibration_Stat51: 0.0 - syst_JES_EtaIntercalibration_Stat52: 2.6000229015674072e-14 - syst_JES_EtaIntercalibration_Stat53: 1.6692605508149408e-10 - syst_JES_EtaIntercalibration_Stat54: 7.4573414101720585e-06 - syst_JES_EtaIntercalibration_Stat55: 2.794978313307801e-07 - syst_JES_EtaIntercalibration_Stat56: 2.9168358902344177e-07 - syst_JES_EtaIntercalibration_Stat57: 2.33071249835753e-13 + syst_JES_EtaIntercalibration_Stat52: 2.60002290e-14 + syst_JES_EtaIntercalibration_Stat53: 1.66926055e-10 + syst_JES_EtaIntercalibration_Stat54: 7.45734141e-06 + syst_JES_EtaIntercalibration_Stat55: 2.79497831e-07 + syst_JES_EtaIntercalibration_Stat56: 2.91683589e-07 + syst_JES_EtaIntercalibration_Stat57: 2.33071250e-13 syst_JES_EtaIntercalibration_Stat58: 0.0 syst_JES_EtaIntercalibration_Stat59: 0.0 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 8.919195633575933e-17 - syst_JES_EtaIntercalibration_Stat62: 8.919195633575933e-17 + syst_JES_EtaIntercalibration_Stat61: 8.91919563e-17 + syst_JES_EtaIntercalibration_Stat62: 8.91919563e-17 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 3.636440670490858e-15 - syst_JES_EtaIntercalibration_Stat69: 3.636440670490858e-15 + syst_JES_EtaIntercalibration_Stat68: 3.63644067e-15 + syst_JES_EtaIntercalibration_Stat69: 3.63644067e-15 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 2.9704671349806244e-15 - syst_JES_EtaIntercalibration_Stat71: 2.9704671349806244e-15 + syst_JES_EtaIntercalibration_Stat70: 2.97046713e-15 + syst_JES_EtaIntercalibration_Stat71: 2.97046713e-15 syst_JES_EtaIntercalibration_Stat72: 0.0 syst_JES_EtaIntercalibration_Stat73: 0.0 - syst_JES_EtaIntercalibration_Stat74: 9.949470421187e-11 - syst_JES_EtaIntercalibration_Stat75: 2.9177258730045216e-05 - syst_JES_EtaIntercalibration_Stat76: 2.2015904461718123e-06 - syst_JES_EtaIntercalibration_Stat77: 2.8422686361426145e-06 - syst_JES_EtaIntercalibration_Stat78: 2.8252759685943515e-06 - syst_JES_EtaIntercalibration_Stat79: 2.57907672433373e-13 + syst_JES_EtaIntercalibration_Stat74: 9.94947042e-11 + syst_JES_EtaIntercalibration_Stat75: 2.91772587e-05 + syst_JES_EtaIntercalibration_Stat76: 2.20159045e-06 + syst_JES_EtaIntercalibration_Stat77: 2.84226864e-06 + syst_JES_EtaIntercalibration_Stat78: 2.82527597e-06 + syst_JES_EtaIntercalibration_Stat79: 2.57907672e-13 syst_JES_EtaIntercalibration_Stat8: 0.0 syst_JES_EtaIntercalibration_Stat80: 0.0 syst_JES_EtaIntercalibration_Stat81: 0.0 - syst_JES_EtaIntercalibration_Stat82: 8.919195633575933e-17 - syst_JES_EtaIntercalibration_Stat83: 8.919195633575933e-17 - syst_JES_EtaIntercalibration_Stat84: 8.919195633575933e-17 + syst_JES_EtaIntercalibration_Stat82: 8.91919563e-17 + syst_JES_EtaIntercalibration_Stat83: 8.91919563e-17 + syst_JES_EtaIntercalibration_Stat84: 8.91919563e-17 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 3.636440670490858e-15 - syst_JES_EtaIntercalibration_Stat9: 9.963555266523127e-11 - syst_JES_EtaIntercalibration_Stat90: 3.636440670490858e-15 - syst_JES_EtaIntercalibration_Stat91: 2.9704671349806244e-15 - syst_JES_EtaIntercalibration_Stat92: 2.9704671349806244e-15 + syst_JES_EtaIntercalibration_Stat89: 3.63644067e-15 + syst_JES_EtaIntercalibration_Stat9: 9.96355527e-11 + syst_JES_EtaIntercalibration_Stat90: 3.63644067e-15 + syst_JES_EtaIntercalibration_Stat91: 2.97046713e-15 + syst_JES_EtaIntercalibration_Stat92: 2.97046713e-15 syst_JES_EtaIntercalibration_Stat93: 0.0 syst_JES_EtaIntercalibration_Stat94: 0.0 - syst_JES_EtaIntercalibration_Stat95: 9.951914995149175e-11 - syst_JES_EtaIntercalibration_Stat96: 3.0027331062716848e-05 - syst_JES_EtaIntercalibration_Stat97: 2.2083631947666584e-06 - syst_JES_EtaIntercalibration_Stat98: 2.660146424541326e-06 - syst_JES_EtaIntercalibration_Stat99: 3.529196815140805e-06 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.009236098364569317 - syst_JES_Flavour_Comp: 0.029502799867131252 - syst_JES_Flavour_Response: 0.012981278904638018 - syst_JES_Gjet_Generator: 0.045264317900527345 - syst_JES_Gjet_OOC: 0.03591257822824755 - syst_JES_Gjet_Purity: 0.01026771654263985 - syst_JES_Gjet_Stat1: 9.174110311087393e-05 - syst_JES_Gjet_Stat10: 0.0010344227810716467 - syst_JES_Gjet_Stat11: 0.0013732601428716996 - syst_JES_Gjet_Stat12: 0.004564967798353019 - syst_JES_Gjet_Stat13: 0.010765173140734895 - syst_JES_Gjet_Stat14: 0.009780803801324307 - syst_JES_Gjet_Stat15: 0.002809845547356652 - syst_JES_Gjet_Stat2: 6.093394364200875e-05 - syst_JES_Gjet_Stat3: 7.78431144996139e-05 - syst_JES_Gjet_Stat4: 0.00012802125448533927 - syst_JES_Gjet_Stat5: 9.217923139189216e-05 - syst_JES_Gjet_Stat6: 0.00036296011833257937 - syst_JES_Gjet_Stat7: 0.0004974519983626561 - syst_JES_Gjet_Stat8: 0.0002803535401952328 - syst_JES_Gjet_Stat9: 0.0006082479161493281 - syst_JES_Gjet_Veto: 0.030235623029797154 - syst_JES_Gjet_dPhi: 0.0031414657009109616 - syst_JES_LArESZee: 0.0680982046385953 - syst_JES_LArEsmear: 0.005198294023042559 - syst_JES_LAr_JVT: 0.006595158280890611 - syst_JES_MJB_Alpha: 0.00045035195602994774 - syst_JES_MJB_Asym: 0.0022561570756487676 - syst_JES_MJB_Beta: 0.0002349945690861812 - syst_JES_MJB_Fragmentation: 0.007413634112228631 - syst_JES_MJB_Stat1: 0.0001472957443377099 - syst_JES_MJB_Stat10: 2.7003356735783794e-06 - syst_JES_MJB_Stat11: 0.00011704566513631955 - syst_JES_MJB_Stat12: 0.00010091627953407715 - syst_JES_MJB_Stat13: 8.549176860961528e-05 - syst_JES_MJB_Stat14: 9.735921682100776e-06 - syst_JES_MJB_Stat15: 2.451144083892255e-06 - syst_JES_MJB_Stat16: 5.088648617265688e-07 - syst_JES_MJB_Stat2: 0.000363763082238976 - syst_JES_MJB_Stat3: 0.0008965572151290736 - syst_JES_MJB_Stat4: 0.0004134016448927121 - syst_JES_MJB_Stat5: 0.00025260567590614424 - syst_JES_MJB_Stat6: 0.00023477331087668374 - syst_JES_MJB_Stat7: 9.332340060242126e-05 - syst_JES_MJB_Stat8: 1.0410466656207107e-05 - syst_JES_MJB_Stat9: 1.0350050953980854e-05 - syst_JES_MJB_Threshold: 0.003366744867078585 - syst_JES_Pileup_MuOffset: 0.00720757911853904 - syst_JES_Pileup_NPVOffset: 0.007516238470804396 - syst_JES_Pileup_Pt_term: 0.006321913713425707 - syst_JES_Pileup_Rho_topology: 0.014154313830066084 - syst_JES_PunchThrough_MC15: 0.00160802238790385 - syst_JES_SingleParticle_HighPt: 2.597637532451362e-35 - syst_JES_Zjet_MC: 0.02796208280868934 - syst_JES_Zjet_MuScale: 0.0016607289815017982 - syst_JES_Zjet_MuSmearID: 0.00039593525985948764 - syst_JES_Zjet_MuSmearMS: 0.007901424808222882 - syst_JES_Zjet_OOC: 0.012608224964284227 - syst_JES_Zjet_Stat1: 0.0006316147401699869 - syst_JES_Zjet_Stat10: 0.0010462951925723448 - syst_JES_Zjet_Stat11: 0.0013074424451959637 - syst_JES_Zjet_Stat12: 0.00502429089524084 - syst_JES_Zjet_Stat13: 0.008540555880620419 + syst_JES_EtaIntercalibration_Stat95: 9.95191500e-11 + syst_JES_EtaIntercalibration_Stat96: 3.00273311e-05 + syst_JES_EtaIntercalibration_Stat97: 2.20836319e-06 + syst_JES_EtaIntercalibration_Stat98: 2.66014642e-06 + syst_JES_EtaIntercalibration_Stat99: 3.52919682e-06 + syst_JES_EtaIntercalibration_TotalStat_MJB: 9.23609836e-03 + syst_JES_Flavour_Comp: 2.95027999e-02 + syst_JES_Flavour_Response: 1.29812789e-02 + syst_JES_Gjet_Generator: 4.52643179e-02 + syst_JES_Gjet_OOC: 3.59125782e-02 + syst_JES_Gjet_Purity: 1.02677165e-02 + syst_JES_Gjet_Stat1: 9.17411031e-05 + syst_JES_Gjet_Stat10: 1.03442278e-03 + syst_JES_Gjet_Stat11: 1.37326014e-03 + syst_JES_Gjet_Stat12: 4.56496780e-03 + syst_JES_Gjet_Stat13: 1.07651731e-02 + syst_JES_Gjet_Stat14: 9.78080380e-03 + syst_JES_Gjet_Stat15: 2.80984555e-03 + syst_JES_Gjet_Stat2: 6.09339436e-05 + syst_JES_Gjet_Stat3: 7.78431145e-05 + syst_JES_Gjet_Stat4: 1.28021254e-04 + syst_JES_Gjet_Stat5: 9.21792314e-05 + syst_JES_Gjet_Stat6: 3.62960118e-04 + syst_JES_Gjet_Stat7: 4.97451998e-04 + syst_JES_Gjet_Stat8: 2.80353540e-04 + syst_JES_Gjet_Stat9: 6.08247916e-04 + syst_JES_Gjet_Veto: 3.02356230e-02 + syst_JES_Gjet_dPhi: 3.14146570e-03 + syst_JES_LArESZee: 6.80982046e-02 + syst_JES_LArEsmear: 5.19829402e-03 + syst_JES_LAr_JVT: 6.59515828e-03 + syst_JES_MJB_Alpha: 4.50351956e-04 + syst_JES_MJB_Asym: 2.25615708e-03 + syst_JES_MJB_Beta: 2.34994569e-04 + syst_JES_MJB_Fragmentation: 7.41363411e-03 + syst_JES_MJB_Stat1: 1.47295744e-04 + syst_JES_MJB_Stat10: 2.70033567e-06 + syst_JES_MJB_Stat11: 1.17045665e-04 + syst_JES_MJB_Stat12: 1.00916280e-04 + syst_JES_MJB_Stat13: 8.54917686e-05 + syst_JES_MJB_Stat14: 9.73592168e-06 + syst_JES_MJB_Stat15: 2.45114408e-06 + syst_JES_MJB_Stat16: 5.08864862e-07 + syst_JES_MJB_Stat2: 3.63763082e-04 + syst_JES_MJB_Stat3: 8.96557215e-04 + syst_JES_MJB_Stat4: 4.13401645e-04 + syst_JES_MJB_Stat5: 2.52605676e-04 + syst_JES_MJB_Stat6: 2.34773311e-04 + syst_JES_MJB_Stat7: 9.33234006e-05 + syst_JES_MJB_Stat8: 1.04104667e-05 + syst_JES_MJB_Stat9: 1.03500510e-05 + syst_JES_MJB_Threshold: 3.36674487e-03 + syst_JES_Pileup_MuOffset: 7.20757912e-03 + syst_JES_Pileup_NPVOffset: 7.51623847e-03 + syst_JES_Pileup_Pt_term: 6.32191371e-03 + syst_JES_Pileup_Rho_topology: 1.41543138e-02 + syst_JES_PunchThrough_MC15: 1.60802239e-03 + syst_JES_SingleParticle_HighPt: 2.59763753e-35 + syst_JES_Zjet_MC: 2.79620828e-02 + syst_JES_Zjet_MuScale: 1.66072898e-03 + syst_JES_Zjet_MuSmearID: 3.95935260e-04 + syst_JES_Zjet_MuSmearMS: 7.90142481e-03 + syst_JES_Zjet_OOC: 1.26082250e-02 + syst_JES_Zjet_Stat1: 6.31614740e-04 + syst_JES_Zjet_Stat10: 1.04629519e-03 + syst_JES_Zjet_Stat11: 1.30744245e-03 + syst_JES_Zjet_Stat12: 5.02429090e-03 + syst_JES_Zjet_Stat13: 8.54055588e-03 syst_JES_Zjet_Stat2: 0.0 - syst_JES_Zjet_Stat3: 0.00021441511857842488 - syst_JES_Zjet_Stat4: 0.00023154852342435698 - syst_JES_Zjet_Stat5: 0.00013896620704329524 - syst_JES_Zjet_Stat6: 0.000429117195530545 - syst_JES_Zjet_Stat7: 0.00024084850009912872 - syst_JES_Zjet_Stat8: 0.00035420086109437966 - syst_JES_Zjet_Stat9: 0.0006145416727122741 - syst_JES_Zjet_Veto: 0.00263666911082904 - syst_JES_Zjet_dPhi: 0.002191248673701823 - syst_PRW: 0.0012671 + syst_JES_Zjet_Stat3: 2.14415119e-04 + syst_JES_Zjet_Stat4: 2.31548523e-04 + syst_JES_Zjet_Stat5: 1.38966207e-04 + syst_JES_Zjet_Stat6: 4.29117196e-04 + syst_JES_Zjet_Stat7: 2.40848500e-04 + syst_JES_Zjet_Stat8: 3.54200861e-04 + syst_JES_Zjet_Stat9: 6.14541673e-04 + syst_JES_Zjet_Veto: 2.63666911e-03 + syst_JES_Zjet_dPhi: 2.19124867e-03 + syst_PRW: 1.26710000e-03 syst_Unfolding_bias: 0.000208 - syst_cleaning: 0.012869137500236758 + syst_cleaning: 1.28691375e-02 syst_lumi: 0.04825 - stat: 0.005361 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.0030671910194834616 - syst_JER_NP1: 0.00032382894790305576 - syst_JER_NP2: 0.000241395987539147 - syst_JER_NP3: 0.0006844738417207775 - syst_JER_NP4: 0.0004015082037455773 - syst_JER_NP5: 0.00035275544999333465 - syst_JER_NP6: 0.000729863910259988 - syst_JER_NP7: 0.00032598544062580466 - syst_JER_NP8: 0.0007625061753848292 - syst_JES_EtaIntercalibration_Modelling: 0.012871848070498657 + syst_JER_NP0: 3.06719102e-03 + syst_JER_NP1: 3.23828948e-04 + syst_JER_NP2: 2.41395988e-04 + syst_JER_NP3: 6.84473842e-04 + syst_JER_NP4: 4.01508204e-04 + syst_JER_NP5: 3.52755450e-04 + syst_JER_NP6: 7.29863910e-04 + syst_JER_NP7: 3.25985441e-04 + syst_JER_NP8: 7.62506175e-04 + syst_JES_EtaIntercalibration_Modelling: 1.28718481e-02 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 - syst_JES_EtaIntercalibration_Stat10: 6.731348213773746e-14 - syst_JES_EtaIntercalibration_Stat100: 6.929704227454445e-12 + syst_JES_EtaIntercalibration_Stat10: 6.73134821e-14 + syst_JES_EtaIntercalibration_Stat100: 6.92970423e-12 syst_JES_EtaIntercalibration_Stat101: 0.0 syst_JES_EtaIntercalibration_Stat102: 0.0 - syst_JES_EtaIntercalibration_Stat103: 1.7026059438402064e-17 - syst_JES_EtaIntercalibration_Stat104: 1.7026059438402064e-17 - syst_JES_EtaIntercalibration_Stat105: 1.7026059438402064e-17 + syst_JES_EtaIntercalibration_Stat103: 1.70260594e-17 + syst_JES_EtaIntercalibration_Stat104: 1.70260594e-17 + syst_JES_EtaIntercalibration_Stat105: 1.70260594e-17 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 6.326315574645325e-16 - syst_JES_EtaIntercalibration_Stat11: 6.946389763754983e-12 - syst_JES_EtaIntercalibration_Stat110: 6.23369499735109e-16 - syst_JES_EtaIntercalibration_Stat111: 5.236855616684501e-16 - syst_JES_EtaIntercalibration_Stat112: 5.236855616684501e-16 + syst_JES_EtaIntercalibration_Stat109: 6.32631557e-16 + syst_JES_EtaIntercalibration_Stat11: 6.94638976e-12 + syst_JES_EtaIntercalibration_Stat110: 6.23369500e-16 + syst_JES_EtaIntercalibration_Stat111: 5.23685562e-16 + syst_JES_EtaIntercalibration_Stat112: 5.23685562e-16 syst_JES_EtaIntercalibration_Stat113: 0.0 - syst_JES_EtaIntercalibration_Stat114: 7.365546059186651e-16 - syst_JES_EtaIntercalibration_Stat115: 3.8634096171646105e-10 - syst_JES_EtaIntercalibration_Stat116: 1.2988944325078925e-05 - syst_JES_EtaIntercalibration_Stat117: 2.0693774272995128e-05 - syst_JES_EtaIntercalibration_Stat118: 2.8113243765172313e-06 - syst_JES_EtaIntercalibration_Stat119: 4.539455804388892e-06 - syst_JES_EtaIntercalibration_Stat12: 5.318261853634293e-08 - syst_JES_EtaIntercalibration_Stat120: 5.479426797101872e-08 - syst_JES_EtaIntercalibration_Stat121: 4.699919866338149e-15 + syst_JES_EtaIntercalibration_Stat114: 7.36554606e-16 + syst_JES_EtaIntercalibration_Stat115: 3.86340962e-10 + syst_JES_EtaIntercalibration_Stat116: 1.29889443e-05 + syst_JES_EtaIntercalibration_Stat117: 2.06937743e-05 + syst_JES_EtaIntercalibration_Stat118: 2.81132438e-06 + syst_JES_EtaIntercalibration_Stat119: 4.53945580e-06 + syst_JES_EtaIntercalibration_Stat12: 5.31826185e-08 + syst_JES_EtaIntercalibration_Stat120: 5.47942680e-08 + syst_JES_EtaIntercalibration_Stat121: 4.69991987e-15 syst_JES_EtaIntercalibration_Stat122: 0.0 - syst_JES_EtaIntercalibration_Stat123: 1.7026059438402064e-17 - syst_JES_EtaIntercalibration_Stat124: 1.7026059438402064e-17 - syst_JES_EtaIntercalibration_Stat125: 1.7026059438402064e-17 + syst_JES_EtaIntercalibration_Stat123: 1.70260594e-17 + syst_JES_EtaIntercalibration_Stat124: 1.70260594e-17 + syst_JES_EtaIntercalibration_Stat125: 1.70260594e-17 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 6.326315574645325e-16 - syst_JES_EtaIntercalibration_Stat129: 6.23369499735109e-16 + syst_JES_EtaIntercalibration_Stat128: 6.32631557e-16 + syst_JES_EtaIntercalibration_Stat129: 6.23369500e-16 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 2.967003033365487e-17 + syst_JES_EtaIntercalibration_Stat130: 2.96700303e-17 syst_JES_EtaIntercalibration_Stat131: 0.0 syst_JES_EtaIntercalibration_Stat132: 0.0 - syst_JES_EtaIntercalibration_Stat133: 7.365546059186651e-16 - syst_JES_EtaIntercalibration_Stat134: 9.083023181094498e-06 - syst_JES_EtaIntercalibration_Stat135: 9.408764677150768e-06 - syst_JES_EtaIntercalibration_Stat136: 2.4069079889975023e-05 - syst_JES_EtaIntercalibration_Stat137: 3.0238628854496692e-05 - syst_JES_EtaIntercalibration_Stat138: 1.8217875507314238e-05 - syst_JES_EtaIntercalibration_Stat139: 3.2575091711306046e-10 + syst_JES_EtaIntercalibration_Stat133: 7.36554606e-16 + syst_JES_EtaIntercalibration_Stat134: 9.08302318e-06 + syst_JES_EtaIntercalibration_Stat135: 9.40876468e-06 + syst_JES_EtaIntercalibration_Stat136: 2.40690799e-05 + syst_JES_EtaIntercalibration_Stat137: 3.02386289e-05 + syst_JES_EtaIntercalibration_Stat138: 1.82178755e-05 + syst_JES_EtaIntercalibration_Stat139: 3.25750917e-10 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 4.699919866338149e-15 + syst_JES_EtaIntercalibration_Stat140: 4.69991987e-15 syst_JES_EtaIntercalibration_Stat141: 0.0 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 1.7026059438402064e-17 - syst_JES_EtaIntercalibration_Stat144: 1.7026059438402064e-17 + syst_JES_EtaIntercalibration_Stat143: 1.70260594e-17 + syst_JES_EtaIntercalibration_Stat144: 1.70260594e-17 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 2.967003033365487e-17 - syst_JES_EtaIntercalibration_Stat148: 2.967003033365487e-17 + syst_JES_EtaIntercalibration_Stat147: 2.96700303e-17 + syst_JES_EtaIntercalibration_Stat148: 2.96700303e-17 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 syst_JES_EtaIntercalibration_Stat150: 0.0 syst_JES_EtaIntercalibration_Stat151: 0.0 - syst_JES_EtaIntercalibration_Stat152: 3.7490239767252196e-06 - syst_JES_EtaIntercalibration_Stat153: 1.6585493081304517e-05 - syst_JES_EtaIntercalibration_Stat154: 1.759526285680325e-05 - syst_JES_EtaIntercalibration_Stat155: 3.2119030184611736e-05 - syst_JES_EtaIntercalibration_Stat156: 1.6175902409139344e-05 - syst_JES_EtaIntercalibration_Stat157: 1.0184117564497181e-07 + syst_JES_EtaIntercalibration_Stat152: 3.74902398e-06 + syst_JES_EtaIntercalibration_Stat153: 1.65854931e-05 + syst_JES_EtaIntercalibration_Stat154: 1.75952629e-05 + syst_JES_EtaIntercalibration_Stat155: 3.21190302e-05 + syst_JES_EtaIntercalibration_Stat156: 1.61759024e-05 + syst_JES_EtaIntercalibration_Stat157: 1.01841176e-07 syst_JES_EtaIntercalibration_Stat158: 0.0 syst_JES_EtaIntercalibration_Stat159: 0.0 syst_JES_EtaIntercalibration_Stat16: 0.0 @@ -7165,18 +7165,18 @@ bins: syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 2.967003033365487e-17 + syst_JES_EtaIntercalibration_Stat165: 2.96700303e-17 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 3.377911299901168e-05 - syst_JES_EtaIntercalibration_Stat171: 5.9340529783614166e-05 - syst_JES_EtaIntercalibration_Stat172: 5.656320601769316e-05 - syst_JES_EtaIntercalibration_Stat173: 7.590743886471207e-05 - syst_JES_EtaIntercalibration_Stat174: 3.756045094244743e-05 - syst_JES_EtaIntercalibration_Stat175: 2.019742109156513e-07 + syst_JES_EtaIntercalibration_Stat170: 3.37791130e-05 + syst_JES_EtaIntercalibration_Stat171: 5.93405298e-05 + syst_JES_EtaIntercalibration_Stat172: 5.65632060e-05 + syst_JES_EtaIntercalibration_Stat173: 7.59074389e-05 + syst_JES_EtaIntercalibration_Stat174: 3.75604509e-05 + syst_JES_EtaIntercalibration_Stat175: 2.01974211e-07 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 syst_JES_EtaIntercalibration_Stat178: 0.0 @@ -7189,14 +7189,14 @@ bins: syst_JES_EtaIntercalibration_Stat184: 0.0 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 - syst_JES_EtaIntercalibration_Stat187: 7.018814443159186e-06 - syst_JES_EtaIntercalibration_Stat188: 0.00028570288762978926 - syst_JES_EtaIntercalibration_Stat189: 0.0003745304360128827 + syst_JES_EtaIntercalibration_Stat187: 7.01881444e-06 + syst_JES_EtaIntercalibration_Stat188: 2.85702888e-04 + syst_JES_EtaIntercalibration_Stat189: 3.74530436e-04 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 0.000385912775118938 - syst_JES_EtaIntercalibration_Stat191: 0.00024458263940844207 - syst_JES_EtaIntercalibration_Stat192: 7.566081746848893e-06 - syst_JES_EtaIntercalibration_Stat193: 5.566811295526372e-08 + syst_JES_EtaIntercalibration_Stat190: 3.85912775e-04 + syst_JES_EtaIntercalibration_Stat191: 2.44582639e-04 + syst_JES_EtaIntercalibration_Stat192: 7.56608175e-06 + syst_JES_EtaIntercalibration_Stat193: 5.56681130e-08 syst_JES_EtaIntercalibration_Stat194: 0.0 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 @@ -7207,13 +7207,13 @@ bins: syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 syst_JES_EtaIntercalibration_Stat201: 0.0 - syst_JES_EtaIntercalibration_Stat202: 5.0394079017281385e-06 - syst_JES_EtaIntercalibration_Stat203: 0.0005295510622215765 - syst_JES_EtaIntercalibration_Stat204: 0.0008280152459345178 - syst_JES_EtaIntercalibration_Stat205: 0.0007080364450365532 - syst_JES_EtaIntercalibration_Stat206: 0.0005971396549384406 - syst_JES_EtaIntercalibration_Stat207: 1.1133024600260255e-05 - syst_JES_EtaIntercalibration_Stat208: 5.566811295526372e-08 + syst_JES_EtaIntercalibration_Stat202: 5.03940790e-06 + syst_JES_EtaIntercalibration_Stat203: 5.29551062e-04 + syst_JES_EtaIntercalibration_Stat204: 8.28015246e-04 + syst_JES_EtaIntercalibration_Stat205: 7.08036445e-04 + syst_JES_EtaIntercalibration_Stat206: 5.97139655e-04 + syst_JES_EtaIntercalibration_Stat207: 1.11330246e-05 + syst_JES_EtaIntercalibration_Stat208: 5.56681130e-08 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 @@ -7221,38 +7221,38 @@ bins: syst_JES_EtaIntercalibration_Stat212: 0.0 syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 - syst_JES_EtaIntercalibration_Stat215: 5.603250806618868e-06 - syst_JES_EtaIntercalibration_Stat216: 0.00043161816458531953 - syst_JES_EtaIntercalibration_Stat217: 0.0005425067073318081 - syst_JES_EtaIntercalibration_Stat218: 0.0006191589194221464 - syst_JES_EtaIntercalibration_Stat219: 0.0004694719879822437 + syst_JES_EtaIntercalibration_Stat215: 5.60325081e-06 + syst_JES_EtaIntercalibration_Stat216: 4.31618165e-04 + syst_JES_EtaIntercalibration_Stat217: 5.42506707e-04 + syst_JES_EtaIntercalibration_Stat218: 6.19158919e-04 + syst_JES_EtaIntercalibration_Stat219: 4.69471988e-04 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 1.0944146197853901e-05 + syst_JES_EtaIntercalibration_Stat220: 1.09441462e-05 syst_JES_EtaIntercalibration_Stat221: 0.0 syst_JES_EtaIntercalibration_Stat222: 0.0 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 - syst_JES_EtaIntercalibration_Stat227: 7.904691818787119e-06 - syst_JES_EtaIntercalibration_Stat228: 0.0002899680456533099 - syst_JES_EtaIntercalibration_Stat229: 0.00036085117084471265 + syst_JES_EtaIntercalibration_Stat227: 7.90469182e-06 + syst_JES_EtaIntercalibration_Stat228: 2.89968046e-04 + syst_JES_EtaIntercalibration_Stat229: 3.60851171e-04 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 0.0004311483075172626 - syst_JES_EtaIntercalibration_Stat231: 0.00035776112812881166 - syst_JES_EtaIntercalibration_Stat232: 9.595484226953184e-06 + syst_JES_EtaIntercalibration_Stat230: 4.31148308e-04 + syst_JES_EtaIntercalibration_Stat231: 3.57761128e-04 + syst_JES_EtaIntercalibration_Stat232: 9.59548423e-06 syst_JES_EtaIntercalibration_Stat233: 0.0 syst_JES_EtaIntercalibration_Stat234: 0.0 syst_JES_EtaIntercalibration_Stat235: 0.0 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 - syst_JES_EtaIntercalibration_Stat238: 1.665366851477483e-07 - syst_JES_EtaIntercalibration_Stat239: 3.254581378226699e-05 + syst_JES_EtaIntercalibration_Stat238: 1.66536685e-07 + syst_JES_EtaIntercalibration_Stat239: 3.25458138e-05 syst_JES_EtaIntercalibration_Stat24: 0.0 - syst_JES_EtaIntercalibration_Stat240: 3.534935077197317e-05 - syst_JES_EtaIntercalibration_Stat241: 3.344101449941374e-05 - syst_JES_EtaIntercalibration_Stat242: 3.166469958802704e-05 - syst_JES_EtaIntercalibration_Stat243: 8.390054111863642e-08 + syst_JES_EtaIntercalibration_Stat240: 3.53493508e-05 + syst_JES_EtaIntercalibration_Stat241: 3.34410145e-05 + syst_JES_EtaIntercalibration_Stat242: 3.16646996e-05 + syst_JES_EtaIntercalibration_Stat243: 8.39005411e-08 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 syst_JES_EtaIntercalibration_Stat25: 0.0 @@ -7261,12 +7261,12 @@ bins: syst_JES_EtaIntercalibration_Stat28: 0.0 syst_JES_EtaIntercalibration_Stat29: 0.0 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 7.11499687051934e-16 - syst_JES_EtaIntercalibration_Stat31: 8.616035515247137e-06 - syst_JES_EtaIntercalibration_Stat32: 8.781790419242537e-12 - syst_JES_EtaIntercalibration_Stat33: 5.322594442796301e-08 - syst_JES_EtaIntercalibration_Stat34: 5.511388147964656e-08 - syst_JES_EtaIntercalibration_Stat35: 4.593097931449617e-15 + syst_JES_EtaIntercalibration_Stat30: 7.11499687e-16 + syst_JES_EtaIntercalibration_Stat31: 8.61603552e-06 + syst_JES_EtaIntercalibration_Stat32: 8.78179042e-12 + syst_JES_EtaIntercalibration_Stat33: 5.32259444e-08 + syst_JES_EtaIntercalibration_Stat34: 5.51138815e-08 + syst_JES_EtaIntercalibration_Stat35: 4.59309793e-15 syst_JES_EtaIntercalibration_Stat36: 0.0 syst_JES_EtaIntercalibration_Stat37: 0.0 syst_JES_EtaIntercalibration_Stat38: 0.0 @@ -7285,215 +7285,215 @@ bins: syst_JES_EtaIntercalibration_Stat5: 0.0 syst_JES_EtaIntercalibration_Stat50: 0.0 syst_JES_EtaIntercalibration_Stat51: 0.0 - syst_JES_EtaIntercalibration_Stat52: 3.752609014815559e-15 - syst_JES_EtaIntercalibration_Stat53: 2.2739373348680917e-11 - syst_JES_EtaIntercalibration_Stat54: 4.79030747470773e-06 - syst_JES_EtaIntercalibration_Stat55: 5.341204596738337e-08 - syst_JES_EtaIntercalibration_Stat56: 5.5157992577353745e-08 - syst_JES_EtaIntercalibration_Stat57: 3.3977613817777136e-14 + syst_JES_EtaIntercalibration_Stat52: 3.75260901e-15 + syst_JES_EtaIntercalibration_Stat53: 2.27393733e-11 + syst_JES_EtaIntercalibration_Stat54: 4.79030747e-06 + syst_JES_EtaIntercalibration_Stat55: 5.34120460e-08 + syst_JES_EtaIntercalibration_Stat56: 5.51579926e-08 + syst_JES_EtaIntercalibration_Stat57: 3.39776138e-14 syst_JES_EtaIntercalibration_Stat58: 0.0 syst_JES_EtaIntercalibration_Stat59: 0.0 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 1.7026059438402064e-17 - syst_JES_EtaIntercalibration_Stat62: 1.7026059438402064e-17 + syst_JES_EtaIntercalibration_Stat61: 1.70260594e-17 + syst_JES_EtaIntercalibration_Stat62: 1.70260594e-17 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 6.326315574645325e-16 - syst_JES_EtaIntercalibration_Stat69: 6.326315574645325e-16 + syst_JES_EtaIntercalibration_Stat68: 6.32631557e-16 + syst_JES_EtaIntercalibration_Stat69: 6.32631557e-16 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 5.236855616684501e-16 - syst_JES_EtaIntercalibration_Stat71: 5.236855616684501e-16 + syst_JES_EtaIntercalibration_Stat70: 5.23685562e-16 + syst_JES_EtaIntercalibration_Stat71: 5.23685562e-16 syst_JES_EtaIntercalibration_Stat72: 0.0 syst_JES_EtaIntercalibration_Stat73: 0.0 - syst_JES_EtaIntercalibration_Stat74: 1.3487426582869693e-11 - syst_JES_EtaIntercalibration_Stat75: 1.982702238738838e-05 - syst_JES_EtaIntercalibration_Stat76: 1.4229459194912327e-06 - syst_JES_EtaIntercalibration_Stat77: 1.5601483102577138e-06 - syst_JES_EtaIntercalibration_Stat78: 7.966152941964945e-07 - syst_JES_EtaIntercalibration_Stat79: 3.6191276227842535e-14 + syst_JES_EtaIntercalibration_Stat74: 1.34874266e-11 + syst_JES_EtaIntercalibration_Stat75: 1.98270224e-05 + syst_JES_EtaIntercalibration_Stat76: 1.42294592e-06 + syst_JES_EtaIntercalibration_Stat77: 1.56014831e-06 + syst_JES_EtaIntercalibration_Stat78: 7.96615294e-07 + syst_JES_EtaIntercalibration_Stat79: 3.61912762e-14 syst_JES_EtaIntercalibration_Stat8: 0.0 syst_JES_EtaIntercalibration_Stat80: 0.0 syst_JES_EtaIntercalibration_Stat81: 0.0 - syst_JES_EtaIntercalibration_Stat82: 1.7026059438402064e-17 - syst_JES_EtaIntercalibration_Stat83: 1.7026059438402064e-17 - syst_JES_EtaIntercalibration_Stat84: 1.7026059438402064e-17 + syst_JES_EtaIntercalibration_Stat82: 1.70260594e-17 + syst_JES_EtaIntercalibration_Stat83: 1.70260594e-17 + syst_JES_EtaIntercalibration_Stat84: 1.70260594e-17 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 6.326315574645325e-16 - syst_JES_EtaIntercalibration_Stat9: 1.350509762209041e-11 - syst_JES_EtaIntercalibration_Stat90: 6.326315574645325e-16 - syst_JES_EtaIntercalibration_Stat91: 5.236855616684501e-16 - syst_JES_EtaIntercalibration_Stat92: 5.236855616684501e-16 + syst_JES_EtaIntercalibration_Stat89: 6.32631557e-16 + syst_JES_EtaIntercalibration_Stat9: 1.35050976e-11 + syst_JES_EtaIntercalibration_Stat90: 6.32631557e-16 + syst_JES_EtaIntercalibration_Stat91: 5.23685562e-16 + syst_JES_EtaIntercalibration_Stat92: 5.23685562e-16 syst_JES_EtaIntercalibration_Stat93: 0.0 syst_JES_EtaIntercalibration_Stat94: 0.0 - syst_JES_EtaIntercalibration_Stat95: 1.3493368405138875e-11 - syst_JES_EtaIntercalibration_Stat96: 2.0405277062563988e-05 - syst_JES_EtaIntercalibration_Stat97: 1.4207690980592166e-06 - syst_JES_EtaIntercalibration_Stat98: 1.3917285322576383e-06 - syst_JES_EtaIntercalibration_Stat99: 1.8203771156548853e-06 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.006568109678590942 - syst_JES_Flavour_Comp: 0.020304247708299857 - syst_JES_Flavour_Response: 0.00846175318713563 - syst_JES_Gjet_Generator: 0.029675772525749013 - syst_JES_Gjet_OOC: 0.02391078574618576 - syst_JES_Gjet_Purity: 0.006424590726264203 - syst_JES_Gjet_Stat1: 6.136661368366353e-05 - syst_JES_Gjet_Stat10: 0.0006337364909802811 - syst_JES_Gjet_Stat11: 0.0008013324590954743 - syst_JES_Gjet_Stat12: 0.0026288645838079983 - syst_JES_Gjet_Stat13: 0.00712630956386263 - syst_JES_Gjet_Stat14: 0.009001251732398111 - syst_JES_Gjet_Stat15: 0.001258119814445349 - syst_JES_Gjet_Stat2: 3.873977414428226e-05 - syst_JES_Gjet_Stat3: 5.050619442207065e-05 - syst_JES_Gjet_Stat4: 9.228464376590507e-05 - syst_JES_Gjet_Stat5: 5.9962856836545075e-05 - syst_JES_Gjet_Stat6: 0.00023706443744264975 - syst_JES_Gjet_Stat7: 0.0003115626221163251 - syst_JES_Gjet_Stat8: 0.00018495596097449791 - syst_JES_Gjet_Stat9: 0.000355150063353507 - syst_JES_Gjet_Veto: 0.021147852727877597 - syst_JES_Gjet_dPhi: 0.0021970056895693284 - syst_JES_LArESZee: 0.04479070774167338 - syst_JES_LArEsmear: 0.003539881459879695 - syst_JES_LAr_JVT: 0.00444482246552098 - syst_JES_MJB_Alpha: 0.00025851027058900383 - syst_JES_MJB_Asym: 0.001742146090315046 - syst_JES_MJB_Beta: 0.00020827688301873544 - syst_JES_MJB_Fragmentation: 0.004698914129881498 - syst_JES_MJB_Stat1: 7.028419648114362e-05 - syst_JES_MJB_Stat10: 1.2044746640340758e-05 - syst_JES_MJB_Stat11: 9.049361754382183e-05 - syst_JES_MJB_Stat12: 9.323555370672714e-05 - syst_JES_MJB_Stat13: 8.37839668433048e-05 - syst_JES_MJB_Stat14: 3.4092264518509186e-05 - syst_JES_MJB_Stat15: 1.0843028762758125e-05 - syst_JES_MJB_Stat16: 9.078002753910136e-07 - syst_JES_MJB_Stat2: 0.0001800175371318028 - syst_JES_MJB_Stat3: 0.0005285222488221285 - syst_JES_MJB_Stat4: 0.0002629788346996769 - syst_JES_MJB_Stat5: 0.00021295053416227913 - syst_JES_MJB_Stat6: 0.00020469870541847595 - syst_JES_MJB_Stat7: 0.00011267283823087089 - syst_JES_MJB_Stat8: 3.0202040907859192e-05 - syst_JES_MJB_Stat9: 2.9626017282112018e-05 - syst_JES_MJB_Threshold: 0.0022496839778066604 - syst_JES_Pileup_MuOffset: 0.005064257176526484 - syst_JES_Pileup_NPVOffset: 0.005207071417793307 - syst_JES_Pileup_Pt_term: 0.004073936763132191 - syst_JES_Pileup_Rho_topology: 0.009270692908299788 - syst_JES_PunchThrough_MC15: 0.0013900921003660153 - syst_JES_SingleParticle_HighPt: 7.827024769987637e-29 - syst_JES_Zjet_MC: 0.016931629425427433 - syst_JES_Zjet_MuScale: 0.0010625587371999724 - syst_JES_Zjet_MuSmearID: 0.00023792044888995987 - syst_JES_Zjet_MuSmearMS: 0.004847461474834018 - syst_JES_Zjet_OOC: 0.007992398951503861 - syst_JES_Zjet_Stat1: 0.00040499484774500526 - syst_JES_Zjet_Stat10: 0.0006496661815886678 - syst_JES_Zjet_Stat11: 0.0008612646326768561 - syst_JES_Zjet_Stat12: 0.002846307608112658 - syst_JES_Zjet_Stat13: 0.005289565766676883 - syst_JES_Zjet_Stat2: 2.1658214954146153e-42 - syst_JES_Zjet_Stat3: 0.00013567431840624813 - syst_JES_Zjet_Stat4: 0.00014102790787641996 - syst_JES_Zjet_Stat5: 0.00010834752454486441 - syst_JES_Zjet_Stat6: 0.00027747368794175784 - syst_JES_Zjet_Stat7: 0.00016653001981624816 - syst_JES_Zjet_Stat8: 0.0002206768678407413 - syst_JES_Zjet_Stat9: 0.00035525203377320734 - syst_JES_Zjet_Veto: 0.0017221881430319976 - syst_JES_Zjet_dPhi: 0.0014253397024920058 - syst_PRW: 0.0008221 - syst_Unfolding_bias: 0.00013496 - syst_cleaning: 0.008311245800119257 + syst_JES_EtaIntercalibration_Stat95: 1.34933684e-11 + syst_JES_EtaIntercalibration_Stat96: 2.04052771e-05 + syst_JES_EtaIntercalibration_Stat97: 1.42076910e-06 + syst_JES_EtaIntercalibration_Stat98: 1.39172853e-06 + syst_JES_EtaIntercalibration_Stat99: 1.82037712e-06 + syst_JES_EtaIntercalibration_TotalStat_MJB: 6.56810968e-03 + syst_JES_Flavour_Comp: 2.03042477e-02 + syst_JES_Flavour_Response: 8.46175319e-03 + syst_JES_Gjet_Generator: 2.96757725e-02 + syst_JES_Gjet_OOC: 2.39107857e-02 + syst_JES_Gjet_Purity: 6.42459073e-03 + syst_JES_Gjet_Stat1: 6.13666137e-05 + syst_JES_Gjet_Stat10: 6.33736491e-04 + syst_JES_Gjet_Stat11: 8.01332459e-04 + syst_JES_Gjet_Stat12: 2.62886458e-03 + syst_JES_Gjet_Stat13: 7.12630956e-03 + syst_JES_Gjet_Stat14: 9.00125173e-03 + syst_JES_Gjet_Stat15: 1.25811981e-03 + syst_JES_Gjet_Stat2: 3.87397741e-05 + syst_JES_Gjet_Stat3: 5.05061944e-05 + syst_JES_Gjet_Stat4: 9.22846438e-05 + syst_JES_Gjet_Stat5: 5.99628568e-05 + syst_JES_Gjet_Stat6: 2.37064437e-04 + syst_JES_Gjet_Stat7: 3.11562622e-04 + syst_JES_Gjet_Stat8: 1.84955961e-04 + syst_JES_Gjet_Stat9: 3.55150063e-04 + syst_JES_Gjet_Veto: 2.11478527e-02 + syst_JES_Gjet_dPhi: 2.19700569e-03 + syst_JES_LArESZee: 4.47907077e-02 + syst_JES_LArEsmear: 3.53988146e-03 + syst_JES_LAr_JVT: 4.44482247e-03 + syst_JES_MJB_Alpha: 2.58510271e-04 + syst_JES_MJB_Asym: 1.74214609e-03 + syst_JES_MJB_Beta: 2.08276883e-04 + syst_JES_MJB_Fragmentation: 4.69891413e-03 + syst_JES_MJB_Stat1: 7.02841965e-05 + syst_JES_MJB_Stat10: 1.20447466e-05 + syst_JES_MJB_Stat11: 9.04936175e-05 + syst_JES_MJB_Stat12: 9.32355537e-05 + syst_JES_MJB_Stat13: 8.37839668e-05 + syst_JES_MJB_Stat14: 3.40922645e-05 + syst_JES_MJB_Stat15: 1.08430288e-05 + syst_JES_MJB_Stat16: 9.07800275e-07 + syst_JES_MJB_Stat2: 1.80017537e-04 + syst_JES_MJB_Stat3: 5.28522249e-04 + syst_JES_MJB_Stat4: 2.62978835e-04 + syst_JES_MJB_Stat5: 2.12950534e-04 + syst_JES_MJB_Stat6: 2.04698705e-04 + syst_JES_MJB_Stat7: 1.12672838e-04 + syst_JES_MJB_Stat8: 3.02020409e-05 + syst_JES_MJB_Stat9: 2.96260173e-05 + syst_JES_MJB_Threshold: 2.24968398e-03 + syst_JES_Pileup_MuOffset: 5.06425718e-03 + syst_JES_Pileup_NPVOffset: 5.20707142e-03 + syst_JES_Pileup_Pt_term: 4.07393676e-03 + syst_JES_Pileup_Rho_topology: 9.27069291e-03 + syst_JES_PunchThrough_MC15: 1.39009210e-03 + syst_JES_SingleParticle_HighPt: 7.82702477e-29 + syst_JES_Zjet_MC: 1.69316294e-02 + syst_JES_Zjet_MuScale: 1.06255874e-03 + syst_JES_Zjet_MuSmearID: 2.37920449e-04 + syst_JES_Zjet_MuSmearMS: 4.84746147e-03 + syst_JES_Zjet_OOC: 7.99239895e-03 + syst_JES_Zjet_Stat1: 4.04994848e-04 + syst_JES_Zjet_Stat10: 6.49666182e-04 + syst_JES_Zjet_Stat11: 8.61264633e-04 + syst_JES_Zjet_Stat12: 2.84630761e-03 + syst_JES_Zjet_Stat13: 5.28956577e-03 + syst_JES_Zjet_Stat2: 2.16582150e-42 + syst_JES_Zjet_Stat3: 1.35674318e-04 + syst_JES_Zjet_Stat4: 1.41027908e-04 + syst_JES_Zjet_Stat5: 1.08347525e-04 + syst_JES_Zjet_Stat6: 2.77473688e-04 + syst_JES_Zjet_Stat7: 1.66530020e-04 + syst_JES_Zjet_Stat8: 2.20676868e-04 + syst_JES_Zjet_Stat9: 3.55252034e-04 + syst_JES_Zjet_Veto: 1.72218814e-03 + syst_JES_Zjet_dPhi: 1.42533970e-03 + syst_PRW: 8.22100000e-04 + syst_Unfolding_bias: 1.34960000e-04 + syst_cleaning: 8.31124580e-03 syst_lumi: 0.0313 - stat: 0.003685 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.0019443293831035934 - syst_JER_NP1: 0.00021075062870606103 - syst_JER_NP2: 0.000471168293500316 - syst_JER_NP3: 0.0004191841689520252 - syst_JER_NP4: 0.0002493136584706101 - syst_JER_NP5: 0.00015979775488723238 - syst_JER_NP6: 0.00033784080570588277 - syst_JER_NP7: 0.0001725493538856854 - syst_JER_NP8: 0.0005121065782627676 - syst_JES_EtaIntercalibration_Modelling: 0.008924482323922213 + syst_JER_NP0: 1.94432938e-03 + syst_JER_NP1: 2.10750629e-04 + syst_JER_NP2: 4.71168294e-04 + syst_JER_NP3: 4.19184169e-04 + syst_JER_NP4: 2.49313658e-04 + syst_JER_NP5: 1.59797755e-04 + syst_JER_NP6: 3.37840806e-04 + syst_JER_NP7: 1.72549354e-04 + syst_JER_NP8: 5.12106578e-04 + syst_JES_EtaIntercalibration_Modelling: 8.92448232e-03 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 - syst_JES_EtaIntercalibration_Stat10: 1.0199881451762073e-14 - syst_JES_EtaIntercalibration_Stat100: 9.48872355324993e-13 + syst_JES_EtaIntercalibration_Stat10: 1.01998815e-14 + syst_JES_EtaIntercalibration_Stat100: 9.48872355e-13 syst_JES_EtaIntercalibration_Stat101: 0.0 syst_JES_EtaIntercalibration_Stat102: 0.0 - syst_JES_EtaIntercalibration_Stat103: 3.512599037749683e-18 - syst_JES_EtaIntercalibration_Stat104: 3.512599037749683e-18 - syst_JES_EtaIntercalibration_Stat105: 3.512599037749683e-18 + syst_JES_EtaIntercalibration_Stat103: 3.51259904e-18 + syst_JES_EtaIntercalibration_Stat104: 3.51259904e-18 + syst_JES_EtaIntercalibration_Stat105: 3.51259904e-18 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 1.189226084476791e-16 - syst_JES_EtaIntercalibration_Stat11: 9.50982495895692e-13 - syst_JES_EtaIntercalibration_Stat110: 1.1705767966583825e-16 - syst_JES_EtaIntercalibration_Stat111: 9.985272905634576e-17 - syst_JES_EtaIntercalibration_Stat112: 9.985272905634576e-17 + syst_JES_EtaIntercalibration_Stat109: 1.18922608e-16 + syst_JES_EtaIntercalibration_Stat11: 9.50982496e-13 + syst_JES_EtaIntercalibration_Stat110: 1.17057680e-16 + syst_JES_EtaIntercalibration_Stat111: 9.98527291e-17 + syst_JES_EtaIntercalibration_Stat112: 9.98527291e-17 syst_JES_EtaIntercalibration_Stat113: 0.0 - syst_JES_EtaIntercalibration_Stat114: 1.3752483412096887e-16 - syst_JES_EtaIntercalibration_Stat115: 5.592005321885879e-11 - syst_JES_EtaIntercalibration_Stat116: 7.203020819073065e-06 - syst_JES_EtaIntercalibration_Stat117: 1.416831261186384e-05 - syst_JES_EtaIntercalibration_Stat118: 3.0320655792380217e-06 - syst_JES_EtaIntercalibration_Stat119: 4.011041723480323e-06 - syst_JES_EtaIntercalibration_Stat12: 9.140897875751517e-09 - syst_JES_EtaIntercalibration_Stat120: 9.371377091855533e-09 - syst_JES_EtaIntercalibration_Stat121: 8.138906744766155e-16 + syst_JES_EtaIntercalibration_Stat114: 1.37524834e-16 + syst_JES_EtaIntercalibration_Stat115: 5.59200532e-11 + syst_JES_EtaIntercalibration_Stat116: 7.20302082e-06 + syst_JES_EtaIntercalibration_Stat117: 1.41683126e-05 + syst_JES_EtaIntercalibration_Stat118: 3.03206558e-06 + syst_JES_EtaIntercalibration_Stat119: 4.01104172e-06 + syst_JES_EtaIntercalibration_Stat12: 9.14089788e-09 + syst_JES_EtaIntercalibration_Stat120: 9.37137709e-09 + syst_JES_EtaIntercalibration_Stat121: 8.13890674e-16 syst_JES_EtaIntercalibration_Stat122: 0.0 - syst_JES_EtaIntercalibration_Stat123: 3.512599037749683e-18 - syst_JES_EtaIntercalibration_Stat124: 3.512599037749683e-18 - syst_JES_EtaIntercalibration_Stat125: 3.512599037749683e-18 + syst_JES_EtaIntercalibration_Stat123: 3.51259904e-18 + syst_JES_EtaIntercalibration_Stat124: 3.51259904e-18 + syst_JES_EtaIntercalibration_Stat125: 3.51259904e-18 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 1.189226084476791e-16 - syst_JES_EtaIntercalibration_Stat129: 1.1705767966583825e-16 + syst_JES_EtaIntercalibration_Stat128: 1.18922608e-16 + syst_JES_EtaIntercalibration_Stat129: 1.17057680e-16 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 6.0058861752450815e-18 + syst_JES_EtaIntercalibration_Stat130: 6.00588618e-18 syst_JES_EtaIntercalibration_Stat131: 0.0 syst_JES_EtaIntercalibration_Stat132: 0.0 - syst_JES_EtaIntercalibration_Stat133: 1.3752483412096887e-16 - syst_JES_EtaIntercalibration_Stat134: 5.900225621915402e-06 - syst_JES_EtaIntercalibration_Stat135: 6.725444446280111e-06 - syst_JES_EtaIntercalibration_Stat136: 1.4310970503428481e-05 - syst_JES_EtaIntercalibration_Stat137: 1.629562919159613e-05 - syst_JES_EtaIntercalibration_Stat138: 9.354443369329893e-06 - syst_JES_EtaIntercalibration_Stat139: 4.4429394737605865e-11 + syst_JES_EtaIntercalibration_Stat133: 1.37524834e-16 + syst_JES_EtaIntercalibration_Stat134: 5.90022562e-06 + syst_JES_EtaIntercalibration_Stat135: 6.72544445e-06 + syst_JES_EtaIntercalibration_Stat136: 1.43109705e-05 + syst_JES_EtaIntercalibration_Stat137: 1.62956292e-05 + syst_JES_EtaIntercalibration_Stat138: 9.35444337e-06 + syst_JES_EtaIntercalibration_Stat139: 4.44293947e-11 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 8.138906744766155e-16 + syst_JES_EtaIntercalibration_Stat140: 8.13890674e-16 syst_JES_EtaIntercalibration_Stat141: 0.0 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 3.512599037749683e-18 - syst_JES_EtaIntercalibration_Stat144: 3.512599037749683e-18 + syst_JES_EtaIntercalibration_Stat143: 3.51259904e-18 + syst_JES_EtaIntercalibration_Stat144: 3.51259904e-18 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 6.0058861752450815e-18 - syst_JES_EtaIntercalibration_Stat148: 6.0058861752450815e-18 + syst_JES_EtaIntercalibration_Stat147: 6.00588618e-18 + syst_JES_EtaIntercalibration_Stat148: 6.00588618e-18 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 syst_JES_EtaIntercalibration_Stat150: 0.0 syst_JES_EtaIntercalibration_Stat151: 0.0 - syst_JES_EtaIntercalibration_Stat152: 2.43439741069537e-06 - syst_JES_EtaIntercalibration_Stat153: 1.0740488105761303e-05 - syst_JES_EtaIntercalibration_Stat154: 7.558657161162953e-06 - syst_JES_EtaIntercalibration_Stat155: 1.60599027627816e-05 - syst_JES_EtaIntercalibration_Stat156: 6.801816228037921e-06 - syst_JES_EtaIntercalibration_Stat157: 1.741666330701722e-08 + syst_JES_EtaIntercalibration_Stat152: 2.43439741e-06 + syst_JES_EtaIntercalibration_Stat153: 1.07404881e-05 + syst_JES_EtaIntercalibration_Stat154: 7.55865716e-06 + syst_JES_EtaIntercalibration_Stat155: 1.60599028e-05 + syst_JES_EtaIntercalibration_Stat156: 6.80181623e-06 + syst_JES_EtaIntercalibration_Stat157: 1.74166633e-08 syst_JES_EtaIntercalibration_Stat158: 0.0 syst_JES_EtaIntercalibration_Stat159: 0.0 syst_JES_EtaIntercalibration_Stat16: 0.0 @@ -7502,18 +7502,18 @@ bins: syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 6.0058861752450815e-18 + syst_JES_EtaIntercalibration_Stat165: 6.00588618e-18 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 2.2679851741137988e-05 - syst_JES_EtaIntercalibration_Stat171: 2.3543731649846846e-05 - syst_JES_EtaIntercalibration_Stat172: 2.1914499195737966e-05 - syst_JES_EtaIntercalibration_Stat173: 3.1828026564648966e-05 - syst_JES_EtaIntercalibration_Stat174: 1.7755405338938336e-05 - syst_JES_EtaIntercalibration_Stat175: 2.3333291130914214e-08 + syst_JES_EtaIntercalibration_Stat170: 2.26798517e-05 + syst_JES_EtaIntercalibration_Stat171: 2.35437316e-05 + syst_JES_EtaIntercalibration_Stat172: 2.19144992e-05 + syst_JES_EtaIntercalibration_Stat173: 3.18280266e-05 + syst_JES_EtaIntercalibration_Stat174: 1.77554053e-05 + syst_JES_EtaIntercalibration_Stat175: 2.33332911e-08 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 syst_JES_EtaIntercalibration_Stat178: 0.0 @@ -7526,14 +7526,14 @@ bins: syst_JES_EtaIntercalibration_Stat184: 0.0 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 - syst_JES_EtaIntercalibration_Stat187: 1.344332372406467e-06 - syst_JES_EtaIntercalibration_Stat188: 0.00012378248290852788 - syst_JES_EtaIntercalibration_Stat189: 0.00015477540986862223 + syst_JES_EtaIntercalibration_Stat187: 1.34433237e-06 + syst_JES_EtaIntercalibration_Stat188: 1.23782483e-04 + syst_JES_EtaIntercalibration_Stat189: 1.54775410e-04 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 0.00016005716752148279 - syst_JES_EtaIntercalibration_Stat191: 0.00010364570070678283 - syst_JES_EtaIntercalibration_Stat192: 5.2887210883161535e-06 - syst_JES_EtaIntercalibration_Stat193: 9.50376278113043e-09 + syst_JES_EtaIntercalibration_Stat190: 1.60057168e-04 + syst_JES_EtaIntercalibration_Stat191: 1.03645701e-04 + syst_JES_EtaIntercalibration_Stat192: 5.28872109e-06 + syst_JES_EtaIntercalibration_Stat193: 9.50376278e-09 syst_JES_EtaIntercalibration_Stat194: 0.0 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 @@ -7544,13 +7544,13 @@ bins: syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 syst_JES_EtaIntercalibration_Stat201: 0.0 - syst_JES_EtaIntercalibration_Stat202: 4.938072574395804e-06 - syst_JES_EtaIntercalibration_Stat203: 0.0002335120285981003 - syst_JES_EtaIntercalibration_Stat204: 0.00037903590684129125 - syst_JES_EtaIntercalibration_Stat205: 0.00034161944422851577 - syst_JES_EtaIntercalibration_Stat206: 0.00028174046124048287 - syst_JES_EtaIntercalibration_Stat207: 4.317605586433295e-06 - syst_JES_EtaIntercalibration_Stat208: 9.50376278113043e-09 + syst_JES_EtaIntercalibration_Stat202: 4.93807257e-06 + syst_JES_EtaIntercalibration_Stat203: 2.33512029e-04 + syst_JES_EtaIntercalibration_Stat204: 3.79035907e-04 + syst_JES_EtaIntercalibration_Stat205: 3.41619444e-04 + syst_JES_EtaIntercalibration_Stat206: 2.81740461e-04 + syst_JES_EtaIntercalibration_Stat207: 4.31760559e-06 + syst_JES_EtaIntercalibration_Stat208: 9.50376278e-09 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 @@ -7558,38 +7558,38 @@ bins: syst_JES_EtaIntercalibration_Stat212: 0.0 syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 - syst_JES_EtaIntercalibration_Stat215: 3.5399402537331053e-06 - syst_JES_EtaIntercalibration_Stat216: 0.0002295095368388861 - syst_JES_EtaIntercalibration_Stat217: 0.0002872636071624806 - syst_JES_EtaIntercalibration_Stat218: 0.0003627432252985575 - syst_JES_EtaIntercalibration_Stat219: 0.0002597577910284887 + syst_JES_EtaIntercalibration_Stat215: 3.53994025e-06 + syst_JES_EtaIntercalibration_Stat216: 2.29509537e-04 + syst_JES_EtaIntercalibration_Stat217: 2.87263607e-04 + syst_JES_EtaIntercalibration_Stat218: 3.62743225e-04 + syst_JES_EtaIntercalibration_Stat219: 2.59757791e-04 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 5.634400855459256e-06 + syst_JES_EtaIntercalibration_Stat220: 5.63440086e-06 syst_JES_EtaIntercalibration_Stat221: 0.0 syst_JES_EtaIntercalibration_Stat222: 0.0 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 - syst_JES_EtaIntercalibration_Stat227: 8.433537024878707e-06 - syst_JES_EtaIntercalibration_Stat228: 0.00028398494238251435 - syst_JES_EtaIntercalibration_Stat229: 0.0004124447205384014 + syst_JES_EtaIntercalibration_Stat227: 8.43353702e-06 + syst_JES_EtaIntercalibration_Stat228: 2.83984942e-04 + syst_JES_EtaIntercalibration_Stat229: 4.12444721e-04 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 0.00045038375858816223 - syst_JES_EtaIntercalibration_Stat231: 0.0003733883099402016 - syst_JES_EtaIntercalibration_Stat232: 6.2065784916550445e-06 + syst_JES_EtaIntercalibration_Stat230: 4.50383759e-04 + syst_JES_EtaIntercalibration_Stat231: 3.73388310e-04 + syst_JES_EtaIntercalibration_Stat232: 6.20657849e-06 syst_JES_EtaIntercalibration_Stat233: 0.0 syst_JES_EtaIntercalibration_Stat234: 0.0 syst_JES_EtaIntercalibration_Stat235: 0.0 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 - syst_JES_EtaIntercalibration_Stat238: 4.255648834239397e-07 - syst_JES_EtaIntercalibration_Stat239: 2.0715909266792997e-05 + syst_JES_EtaIntercalibration_Stat238: 4.25564883e-07 + syst_JES_EtaIntercalibration_Stat239: 2.07159093e-05 syst_JES_EtaIntercalibration_Stat24: 0.0 - syst_JES_EtaIntercalibration_Stat240: 2.0982931081000097e-05 - syst_JES_EtaIntercalibration_Stat241: 2.639674743221217e-05 - syst_JES_EtaIntercalibration_Stat242: 1.9384586285758073e-05 - syst_JES_EtaIntercalibration_Stat243: 1.338875274250742e-07 + syst_JES_EtaIntercalibration_Stat240: 2.09829311e-05 + syst_JES_EtaIntercalibration_Stat241: 2.63967474e-05 + syst_JES_EtaIntercalibration_Stat242: 1.93845863e-05 + syst_JES_EtaIntercalibration_Stat243: 1.33887527e-07 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 syst_JES_EtaIntercalibration_Stat25: 0.0 @@ -7598,12 +7598,12 @@ bins: syst_JES_EtaIntercalibration_Stat28: 0.0 syst_JES_EtaIntercalibration_Stat29: 0.0 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 1.3269595045441288e-16 - syst_JES_EtaIntercalibration_Stat31: 5.591637930874995e-06 - syst_JES_EtaIntercalibration_Stat32: 1.2014927246970745e-12 - syst_JES_EtaIntercalibration_Stat33: 9.14956188164765e-09 - syst_JES_EtaIntercalibration_Stat34: 9.42322619445529e-09 - syst_JES_EtaIntercalibration_Stat35: 7.940975987828496e-16 + syst_JES_EtaIntercalibration_Stat30: 1.32695950e-16 + syst_JES_EtaIntercalibration_Stat31: 5.59163793e-06 + syst_JES_EtaIntercalibration_Stat32: 1.20149272e-12 + syst_JES_EtaIntercalibration_Stat33: 9.14956188e-09 + syst_JES_EtaIntercalibration_Stat34: 9.42322619e-09 + syst_JES_EtaIntercalibration_Stat35: 7.94097599e-16 syst_JES_EtaIntercalibration_Stat36: 0.0 syst_JES_EtaIntercalibration_Stat37: 0.0 syst_JES_EtaIntercalibration_Stat38: 0.0 @@ -7622,215 +7622,215 @@ bins: syst_JES_EtaIntercalibration_Stat5: 0.0 syst_JES_EtaIntercalibration_Stat50: 0.0 syst_JES_EtaIntercalibration_Stat51: 0.0 - syst_JES_EtaIntercalibration_Stat52: 5.753266818397613e-16 - syst_JES_EtaIntercalibration_Stat53: 3.1958717505761636e-12 - syst_JES_EtaIntercalibration_Stat54: 2.9114949423824126e-06 - syst_JES_EtaIntercalibration_Stat55: 9.184794231919406e-09 - syst_JES_EtaIntercalibration_Stat56: 9.433730661056734e-09 - syst_JES_EtaIntercalibration_Stat57: 5.307929174357925e-15 + syst_JES_EtaIntercalibration_Stat52: 5.75326682e-16 + syst_JES_EtaIntercalibration_Stat53: 3.19587175e-12 + syst_JES_EtaIntercalibration_Stat54: 2.91149494e-06 + syst_JES_EtaIntercalibration_Stat55: 9.18479423e-09 + syst_JES_EtaIntercalibration_Stat56: 9.43373066e-09 + syst_JES_EtaIntercalibration_Stat57: 5.30792917e-15 syst_JES_EtaIntercalibration_Stat58: 0.0 syst_JES_EtaIntercalibration_Stat59: 0.0 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 3.512599037749683e-18 - syst_JES_EtaIntercalibration_Stat62: 3.512599037749683e-18 + syst_JES_EtaIntercalibration_Stat61: 3.51259904e-18 + syst_JES_EtaIntercalibration_Stat62: 3.51259904e-18 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 1.189226084476791e-16 - syst_JES_EtaIntercalibration_Stat69: 1.189226084476791e-16 + syst_JES_EtaIntercalibration_Stat68: 1.18922608e-16 + syst_JES_EtaIntercalibration_Stat69: 1.18922608e-16 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 9.985272905634576e-17 - syst_JES_EtaIntercalibration_Stat71: 9.985272905634576e-17 + syst_JES_EtaIntercalibration_Stat70: 9.98527291e-17 + syst_JES_EtaIntercalibration_Stat71: 9.98527291e-17 syst_JES_EtaIntercalibration_Stat72: 0.0 syst_JES_EtaIntercalibration_Stat73: 0.0 - syst_JES_EtaIntercalibration_Stat74: 1.907571807789945e-12 - syst_JES_EtaIntercalibration_Stat75: 1.2916292153710368e-05 - syst_JES_EtaIntercalibration_Stat76: 9.221091573518398e-07 - syst_JES_EtaIntercalibration_Stat77: 9.282899587413408e-07 - syst_JES_EtaIntercalibration_Stat78: 3.9834611761728957e-07 - syst_JES_EtaIntercalibration_Stat79: 5.389369814737156e-15 + syst_JES_EtaIntercalibration_Stat74: 1.90757181e-12 + syst_JES_EtaIntercalibration_Stat75: 1.29162922e-05 + syst_JES_EtaIntercalibration_Stat76: 9.22109157e-07 + syst_JES_EtaIntercalibration_Stat77: 9.28289959e-07 + syst_JES_EtaIntercalibration_Stat78: 3.98346118e-07 + syst_JES_EtaIntercalibration_Stat79: 5.38936981e-15 syst_JES_EtaIntercalibration_Stat8: 0.0 syst_JES_EtaIntercalibration_Stat80: 0.0 syst_JES_EtaIntercalibration_Stat81: 0.0 - syst_JES_EtaIntercalibration_Stat82: 3.512599037749683e-18 - syst_JES_EtaIntercalibration_Stat83: 3.512599037749683e-18 - syst_JES_EtaIntercalibration_Stat84: 3.512599037749683e-18 + syst_JES_EtaIntercalibration_Stat82: 3.51259904e-18 + syst_JES_EtaIntercalibration_Stat83: 3.51259904e-18 + syst_JES_EtaIntercalibration_Stat84: 3.51259904e-18 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 1.189226084476791e-16 - syst_JES_EtaIntercalibration_Stat9: 1.90931858493567e-12 - syst_JES_EtaIntercalibration_Stat90: 1.189226084476791e-16 - syst_JES_EtaIntercalibration_Stat91: 9.985272905634576e-17 - syst_JES_EtaIntercalibration_Stat92: 9.985272905634576e-17 + syst_JES_EtaIntercalibration_Stat89: 1.18922608e-16 + syst_JES_EtaIntercalibration_Stat9: 1.90931858e-12 + syst_JES_EtaIntercalibration_Stat90: 1.18922608e-16 + syst_JES_EtaIntercalibration_Stat91: 9.98527291e-17 + syst_JES_EtaIntercalibration_Stat92: 9.98527291e-17 syst_JES_EtaIntercalibration_Stat93: 0.0 syst_JES_EtaIntercalibration_Stat94: 0.0 - syst_JES_EtaIntercalibration_Stat95: 1.9084717133954986e-12 - syst_JES_EtaIntercalibration_Stat96: 1.3297966639678413e-05 - syst_JES_EtaIntercalibration_Stat97: 9.194296221027469e-07 - syst_JES_EtaIntercalibration_Stat98: 1.1600570718718971e-06 - syst_JES_EtaIntercalibration_Stat99: 7.364948697830488e-07 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.004564424498225379 - syst_JES_Flavour_Comp: 0.013702514039401675 - syst_JES_Flavour_Response: 0.005295381076938657 - syst_JES_Gjet_Generator: 0.019486581921927714 - syst_JES_Gjet_OOC: 0.015856937756073837 - syst_JES_Gjet_Purity: 0.003956042477021702 - syst_JES_Gjet_Stat1: 4.023339284723574e-05 - syst_JES_Gjet_Stat10: 0.00037933652645111835 - syst_JES_Gjet_Stat11: 0.0004579024432125253 - syst_JES_Gjet_Stat12: 0.0015192902948416409 - syst_JES_Gjet_Stat13: 0.00449731397614176 - syst_JES_Gjet_Stat14: 0.007258118764528451 - syst_JES_Gjet_Stat15: 0.0006614392848175863 - syst_JES_Gjet_Stat2: 2.4260976005717494e-05 - syst_JES_Gjet_Stat3: 3.277527231008157e-05 - syst_JES_Gjet_Stat4: 6.76364966197984e-05 - syst_JES_Gjet_Stat5: 3.964814087696925e-05 - syst_JES_Gjet_Stat6: 0.00014373757572395607 - syst_JES_Gjet_Stat7: 0.00018975249010223815 - syst_JES_Gjet_Stat8: 0.00012344604448908032 - syst_JES_Gjet_Stat9: 0.00021942951032165206 - syst_JES_Gjet_Veto: 0.014589900616522374 - syst_JES_Gjet_dPhi: 0.0015114823849453228 - syst_JES_LArESZee: 0.02953694762496626 - syst_JES_LArEsmear: 0.0023655077679010056 - syst_JES_LAr_JVT: 0.002954754981381705 - syst_JES_MJB_Alpha: 0.0001521599405231219 - syst_JES_MJB_Asym: 0.0013755730106032175 - syst_JES_MJB_Beta: 0.00016069047109271912 - syst_JES_MJB_Fragmentation: 0.0028818127541531914 - syst_JES_MJB_Stat1: 3.17300283643113e-05 - syst_JES_MJB_Stat10: 3.307485752047921e-05 - syst_JES_MJB_Stat11: 3.9180695715492344e-05 - syst_JES_MJB_Stat12: 7.020005982903434e-05 - syst_JES_MJB_Stat13: 7.402617577586999e-05 - syst_JES_MJB_Stat14: 5.904868584481792e-05 - syst_JES_MJB_Stat15: 2.7438471167322718e-05 - syst_JES_MJB_Stat16: 3.7356360904135186e-07 - syst_JES_MJB_Stat2: 8.081851566936874e-05 - syst_JES_MJB_Stat3: 0.0002870633510220349 - syst_JES_MJB_Stat4: 0.00015070350858556678 - syst_JES_MJB_Stat5: 0.0001505152971461705 - syst_JES_MJB_Stat6: 0.000150547649267599 - syst_JES_MJB_Stat7: 0.00010525326075709009 - syst_JES_MJB_Stat8: 5.3714188767959625e-05 - syst_JES_MJB_Stat9: 5.236275584802619e-05 - syst_JES_MJB_Threshold: 0.0015158083651966034 - syst_JES_Pileup_MuOffset: 0.0034727104687837136 - syst_JES_Pileup_NPVOffset: 0.0035558517966866954 - syst_JES_Pileup_Pt_term: 0.002609473510116552 - syst_JES_Pileup_Rho_topology: 0.006002733460682723 - syst_JES_PunchThrough_MC15: 0.0011300699657543333 - syst_JES_SingleParticle_HighPt: 1.0977989194292369e-23 - syst_JES_Zjet_MC: 0.010217278208994802 - syst_JES_Zjet_MuScale: 0.0006743559649769549 - syst_JES_Zjet_MuSmearID: 0.0001451794636820236 - syst_JES_Zjet_MuSmearMS: 0.002926303940126521 - syst_JES_Zjet_OOC: 0.005019727781463851 - syst_JES_Zjet_Stat1: 0.00025101069200334874 - syst_JES_Zjet_Stat10: 0.00039432327610096764 - syst_JES_Zjet_Stat11: 0.0005390804276729031 - syst_JES_Zjet_Stat12: 0.0016859165904634784 - syst_JES_Zjet_Stat13: 0.0031983622371457555 - syst_JES_Zjet_Stat2: 1.049900723878215e-34 - syst_JES_Zjet_Stat3: 8.747891803171779e-05 - syst_JES_Zjet_Stat4: 8.711625838498804e-05 - syst_JES_Zjet_Stat5: 9.190228329590075e-05 - syst_JES_Zjet_Stat6: 0.00017060488709295525 - syst_JES_Zjet_Stat7: 0.0001233037115215921 - syst_JES_Zjet_Stat8: 0.00013666785540133425 - syst_JES_Zjet_Stat9: 0.00021191636911763095 - syst_JES_Zjet_Veto: 0.0011079718949504088 - syst_JES_Zjet_dPhi: 0.0009220039845358587 - syst_PRW: 0.0005335 - syst_Unfolding_bias: 8.759e-05 - syst_cleaning: 0.005688920877459978 + syst_JES_EtaIntercalibration_Stat95: 1.90847171e-12 + syst_JES_EtaIntercalibration_Stat96: 1.32979666e-05 + syst_JES_EtaIntercalibration_Stat97: 9.19429622e-07 + syst_JES_EtaIntercalibration_Stat98: 1.16005707e-06 + syst_JES_EtaIntercalibration_Stat99: 7.36494870e-07 + syst_JES_EtaIntercalibration_TotalStat_MJB: 4.56442450e-03 + syst_JES_Flavour_Comp: 1.37025140e-02 + syst_JES_Flavour_Response: 5.29538108e-03 + syst_JES_Gjet_Generator: 1.94865819e-02 + syst_JES_Gjet_OOC: 1.58569378e-02 + syst_JES_Gjet_Purity: 3.95604248e-03 + syst_JES_Gjet_Stat1: 4.02333928e-05 + syst_JES_Gjet_Stat10: 3.79336526e-04 + syst_JES_Gjet_Stat11: 4.57902443e-04 + syst_JES_Gjet_Stat12: 1.51929029e-03 + syst_JES_Gjet_Stat13: 4.49731398e-03 + syst_JES_Gjet_Stat14: 7.25811876e-03 + syst_JES_Gjet_Stat15: 6.61439285e-04 + syst_JES_Gjet_Stat2: 2.42609760e-05 + syst_JES_Gjet_Stat3: 3.27752723e-05 + syst_JES_Gjet_Stat4: 6.76364966e-05 + syst_JES_Gjet_Stat5: 3.96481409e-05 + syst_JES_Gjet_Stat6: 1.43737576e-04 + syst_JES_Gjet_Stat7: 1.89752490e-04 + syst_JES_Gjet_Stat8: 1.23446044e-04 + syst_JES_Gjet_Stat9: 2.19429510e-04 + syst_JES_Gjet_Veto: 1.45899006e-02 + syst_JES_Gjet_dPhi: 1.51148238e-03 + syst_JES_LArESZee: 2.95369476e-02 + syst_JES_LArEsmear: 2.36550777e-03 + syst_JES_LAr_JVT: 2.95475498e-03 + syst_JES_MJB_Alpha: 1.52159941e-04 + syst_JES_MJB_Asym: 1.37557301e-03 + syst_JES_MJB_Beta: 1.60690471e-04 + syst_JES_MJB_Fragmentation: 2.88181275e-03 + syst_JES_MJB_Stat1: 3.17300284e-05 + syst_JES_MJB_Stat10: 3.30748575e-05 + syst_JES_MJB_Stat11: 3.91806957e-05 + syst_JES_MJB_Stat12: 7.02000598e-05 + syst_JES_MJB_Stat13: 7.40261758e-05 + syst_JES_MJB_Stat14: 5.90486858e-05 + syst_JES_MJB_Stat15: 2.74384712e-05 + syst_JES_MJB_Stat16: 3.73563609e-07 + syst_JES_MJB_Stat2: 8.08185157e-05 + syst_JES_MJB_Stat3: 2.87063351e-04 + syst_JES_MJB_Stat4: 1.50703509e-04 + syst_JES_MJB_Stat5: 1.50515297e-04 + syst_JES_MJB_Stat6: 1.50547649e-04 + syst_JES_MJB_Stat7: 1.05253261e-04 + syst_JES_MJB_Stat8: 5.37141888e-05 + syst_JES_MJB_Stat9: 5.23627558e-05 + syst_JES_MJB_Threshold: 1.51580837e-03 + syst_JES_Pileup_MuOffset: 3.47271047e-03 + syst_JES_Pileup_NPVOffset: 3.55585180e-03 + syst_JES_Pileup_Pt_term: 2.60947351e-03 + syst_JES_Pileup_Rho_topology: 6.00273346e-03 + syst_JES_PunchThrough_MC15: 1.13006997e-03 + syst_JES_SingleParticle_HighPt: 1.09779892e-23 + syst_JES_Zjet_MC: 1.02172782e-02 + syst_JES_Zjet_MuScale: 6.74355965e-04 + syst_JES_Zjet_MuSmearID: 1.45179464e-04 + syst_JES_Zjet_MuSmearMS: 2.92630394e-03 + syst_JES_Zjet_OOC: 5.01972778e-03 + syst_JES_Zjet_Stat1: 2.51010692e-04 + syst_JES_Zjet_Stat10: 3.94323276e-04 + syst_JES_Zjet_Stat11: 5.39080428e-04 + syst_JES_Zjet_Stat12: 1.68591659e-03 + syst_JES_Zjet_Stat13: 3.19836224e-03 + syst_JES_Zjet_Stat2: 1.04990072e-34 + syst_JES_Zjet_Stat3: 8.74789180e-05 + syst_JES_Zjet_Stat4: 8.71162584e-05 + syst_JES_Zjet_Stat5: 9.19022833e-05 + syst_JES_Zjet_Stat6: 1.70604887e-04 + syst_JES_Zjet_Stat7: 1.23303712e-04 + syst_JES_Zjet_Stat8: 1.36667855e-04 + syst_JES_Zjet_Stat9: 2.11916369e-04 + syst_JES_Zjet_Veto: 1.10797189e-03 + syst_JES_Zjet_dPhi: 9.22003985e-04 + syst_PRW: 5.33500000e-04 + syst_Unfolding_bias: 8.75900000e-05 + syst_cleaning: 5.68892088e-03 syst_lumi: 0.02032 -- stat: 0.0024687 +- stat: 2.46870000e-03 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.0013230111224022268 - syst_JER_NP1: 0.00013792830266120146 - syst_JER_NP2: 0.0004427773522607045 - syst_JER_NP3: 0.0002626021087120208 - syst_JER_NP4: 0.00016138723989213025 - syst_JER_NP5: 9.303715870554087e-05 - syst_JER_NP6: 0.00016494719177664104 - syst_JER_NP7: 0.00014932971665077252 - syst_JER_NP8: 0.00036990024330892237 - syst_JES_EtaIntercalibration_Modelling: 0.0062477537363439676 + syst_JER_NP0: 1.32301112e-03 + syst_JER_NP1: 1.37928303e-04 + syst_JER_NP2: 4.42777352e-04 + syst_JER_NP3: 2.62602109e-04 + syst_JER_NP4: 1.61387240e-04 + syst_JER_NP5: 9.30371587e-05 + syst_JER_NP6: 1.64947192e-04 + syst_JER_NP7: 1.49329717e-04 + syst_JER_NP8: 3.69900243e-04 + syst_JES_EtaIntercalibration_Modelling: 6.24775374e-03 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 - syst_JES_EtaIntercalibration_Stat10: 1.6648621693101204e-15 - syst_JES_EtaIntercalibration_Stat100: 1.3456852004369372e-13 + syst_JES_EtaIntercalibration_Stat10: 1.66486217e-15 + syst_JES_EtaIntercalibration_Stat100: 1.34568520e-13 syst_JES_EtaIntercalibration_Stat101: 0.0 syst_JES_EtaIntercalibration_Stat102: 0.0 - syst_JES_EtaIntercalibration_Stat103: 7.866974767977839e-19 - syst_JES_EtaIntercalibration_Stat104: 7.866974767977839e-19 - syst_JES_EtaIntercalibration_Stat105: 7.866974767977839e-19 + syst_JES_EtaIntercalibration_Stat103: 7.86697477e-19 + syst_JES_EtaIntercalibration_Stat104: 7.86697477e-19 + syst_JES_EtaIntercalibration_Stat105: 7.86697477e-19 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 2.4292012576153505e-17 - syst_JES_EtaIntercalibration_Stat11: 1.3492675790961553e-13 - syst_JES_EtaIntercalibration_Stat110: 2.3884753437077805e-17 - syst_JES_EtaIntercalibration_Stat111: 2.0715327658523772e-17 - syst_JES_EtaIntercalibration_Stat112: 2.0715327658523772e-17 + syst_JES_EtaIntercalibration_Stat109: 2.42920126e-17 + syst_JES_EtaIntercalibration_Stat11: 1.34926758e-13 + syst_JES_EtaIntercalibration_Stat110: 2.38847534e-17 + syst_JES_EtaIntercalibration_Stat111: 2.07153277e-17 + syst_JES_EtaIntercalibration_Stat112: 2.07153277e-17 syst_JES_EtaIntercalibration_Stat113: 0.0 - syst_JES_EtaIntercalibration_Stat114: 2.790333850993462e-17 - syst_JES_EtaIntercalibration_Stat115: 8.22019398600179e-12 - syst_JES_EtaIntercalibration_Stat116: 3.1080294605263957e-06 - syst_JES_EtaIntercalibration_Stat117: 6.544213036530824e-06 - syst_JES_EtaIntercalibration_Stat118: 3.973583363917259e-06 - syst_JES_EtaIntercalibration_Stat119: 3.296242598398971e-06 - syst_JES_EtaIntercalibration_Stat12: 1.491295696242037e-09 - syst_JES_EtaIntercalibration_Stat120: 1.525087653177833e-09 - syst_JES_EtaIntercalibration_Stat121: 1.5311329138908876e-16 + syst_JES_EtaIntercalibration_Stat114: 2.79033385e-17 + syst_JES_EtaIntercalibration_Stat115: 8.22019399e-12 + syst_JES_EtaIntercalibration_Stat116: 3.10802946e-06 + syst_JES_EtaIntercalibration_Stat117: 6.54421304e-06 + syst_JES_EtaIntercalibration_Stat118: 3.97358336e-06 + syst_JES_EtaIntercalibration_Stat119: 3.29624260e-06 + syst_JES_EtaIntercalibration_Stat12: 1.49129570e-09 + syst_JES_EtaIntercalibration_Stat120: 1.52508765e-09 + syst_JES_EtaIntercalibration_Stat121: 1.53113291e-16 syst_JES_EtaIntercalibration_Stat122: 0.0 - syst_JES_EtaIntercalibration_Stat123: 7.866974767977839e-19 - syst_JES_EtaIntercalibration_Stat124: 7.866974767977839e-19 - syst_JES_EtaIntercalibration_Stat125: 7.866974767977839e-19 + syst_JES_EtaIntercalibration_Stat123: 7.86697477e-19 + syst_JES_EtaIntercalibration_Stat124: 7.86697477e-19 + syst_JES_EtaIntercalibration_Stat125: 7.86697477e-19 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 2.4292012576153505e-17 - syst_JES_EtaIntercalibration_Stat129: 2.3884753437077805e-17 + syst_JES_EtaIntercalibration_Stat128: 2.42920126e-17 + syst_JES_EtaIntercalibration_Stat129: 2.38847534e-17 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 1.3189566899637e-18 + syst_JES_EtaIntercalibration_Stat130: 1.31895669e-18 syst_JES_EtaIntercalibration_Stat131: 0.0 syst_JES_EtaIntercalibration_Stat132: 0.0 - syst_JES_EtaIntercalibration_Stat133: 2.790333850993462e-17 - syst_JES_EtaIntercalibration_Stat134: 3.8595751824886205e-06 - syst_JES_EtaIntercalibration_Stat135: 4.046402007648277e-06 - syst_JES_EtaIntercalibration_Stat136: 8.058743124706234e-06 - syst_JES_EtaIntercalibration_Stat137: 9.175365006363507e-06 - syst_JES_EtaIntercalibration_Stat138: 4.458191421417434e-06 - syst_JES_EtaIntercalibration_Stat139: 6.428530216931394e-12 + syst_JES_EtaIntercalibration_Stat133: 2.79033385e-17 + syst_JES_EtaIntercalibration_Stat134: 3.85957518e-06 + syst_JES_EtaIntercalibration_Stat135: 4.04640201e-06 + syst_JES_EtaIntercalibration_Stat136: 8.05874312e-06 + syst_JES_EtaIntercalibration_Stat137: 9.17536501e-06 + syst_JES_EtaIntercalibration_Stat138: 4.45819142e-06 + syst_JES_EtaIntercalibration_Stat139: 6.42853022e-12 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 1.5311329138908876e-16 + syst_JES_EtaIntercalibration_Stat140: 1.53113291e-16 syst_JES_EtaIntercalibration_Stat141: 0.0 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 7.866974767977839e-19 - syst_JES_EtaIntercalibration_Stat144: 7.866974767977839e-19 + syst_JES_EtaIntercalibration_Stat143: 7.86697477e-19 + syst_JES_EtaIntercalibration_Stat144: 7.86697477e-19 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 1.3189566899637e-18 - syst_JES_EtaIntercalibration_Stat148: 1.3189566899637e-18 + syst_JES_EtaIntercalibration_Stat147: 1.31895669e-18 + syst_JES_EtaIntercalibration_Stat148: 1.31895669e-18 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 syst_JES_EtaIntercalibration_Stat150: 0.0 syst_JES_EtaIntercalibration_Stat151: 0.0 - syst_JES_EtaIntercalibration_Stat152: 1.5926207176851276e-06 - syst_JES_EtaIntercalibration_Stat153: 6.559745783946204e-06 - syst_JES_EtaIntercalibration_Stat154: 4.967913722076905e-06 - syst_JES_EtaIntercalibration_Stat155: 8.951367088327905e-06 - syst_JES_EtaIntercalibration_Stat156: 3.466844485623778e-06 - syst_JES_EtaIntercalibration_Stat157: 2.8362593351631303e-09 + syst_JES_EtaIntercalibration_Stat152: 1.59262072e-06 + syst_JES_EtaIntercalibration_Stat153: 6.55974578e-06 + syst_JES_EtaIntercalibration_Stat154: 4.96791372e-06 + syst_JES_EtaIntercalibration_Stat155: 8.95136709e-06 + syst_JES_EtaIntercalibration_Stat156: 3.46684449e-06 + syst_JES_EtaIntercalibration_Stat157: 2.83625934e-09 syst_JES_EtaIntercalibration_Stat158: 0.0 syst_JES_EtaIntercalibration_Stat159: 0.0 syst_JES_EtaIntercalibration_Stat16: 0.0 @@ -7839,18 +7839,18 @@ bins: syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 1.3189566899637e-18 + syst_JES_EtaIntercalibration_Stat165: 1.31895669e-18 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 1.449531982227367e-05 - syst_JES_EtaIntercalibration_Stat171: 1.0634845038833428e-05 - syst_JES_EtaIntercalibration_Stat172: 1.0791806289959063e-05 - syst_JES_EtaIntercalibration_Stat173: 1.512379438996709e-05 - syst_JES_EtaIntercalibration_Stat174: 1.026355265003303e-05 - syst_JES_EtaIntercalibration_Stat175: 2.001829912854736e-09 + syst_JES_EtaIntercalibration_Stat170: 1.44953198e-05 + syst_JES_EtaIntercalibration_Stat171: 1.06348450e-05 + syst_JES_EtaIntercalibration_Stat172: 1.07918063e-05 + syst_JES_EtaIntercalibration_Stat173: 1.51237944e-05 + syst_JES_EtaIntercalibration_Stat174: 1.02635527e-05 + syst_JES_EtaIntercalibration_Stat175: 2.00182991e-09 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 syst_JES_EtaIntercalibration_Stat178: 0.0 @@ -7863,14 +7863,14 @@ bins: syst_JES_EtaIntercalibration_Stat184: 0.0 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 - syst_JES_EtaIntercalibration_Stat187: 6.35186736322477e-07 - syst_JES_EtaIntercalibration_Stat188: 5.699432603338686e-05 - syst_JES_EtaIntercalibration_Stat189: 6.829661832770345e-05 + syst_JES_EtaIntercalibration_Stat187: 6.35186736e-07 + syst_JES_EtaIntercalibration_Stat188: 5.69943260e-05 + syst_JES_EtaIntercalibration_Stat189: 6.82966183e-05 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 7.09260657304492e-05 - syst_JES_EtaIntercalibration_Stat191: 4.8029694843398704e-05 - syst_JES_EtaIntercalibration_Stat192: 3.069559699696359e-06 - syst_JES_EtaIntercalibration_Stat193: 1.5449893203514386e-09 + syst_JES_EtaIntercalibration_Stat190: 7.09260657e-05 + syst_JES_EtaIntercalibration_Stat191: 4.80296948e-05 + syst_JES_EtaIntercalibration_Stat192: 3.06955970e-06 + syst_JES_EtaIntercalibration_Stat193: 1.54498932e-09 syst_JES_EtaIntercalibration_Stat194: 0.0 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 @@ -7881,13 +7881,13 @@ bins: syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 syst_JES_EtaIntercalibration_Stat201: 0.0 - syst_JES_EtaIntercalibration_Stat202: 3.1442703617055578e-06 - syst_JES_EtaIntercalibration_Stat203: 0.00010608103082078341 - syst_JES_EtaIntercalibration_Stat204: 0.0001761327056511652 - syst_JES_EtaIntercalibration_Stat205: 0.00016830560500173488 - syst_JES_EtaIntercalibration_Stat206: 0.0001332378349981716 - syst_JES_EtaIntercalibration_Stat207: 1.6064914588941955e-06 - syst_JES_EtaIntercalibration_Stat208: 1.5449893203514386e-09 + syst_JES_EtaIntercalibration_Stat202: 3.14427036e-06 + syst_JES_EtaIntercalibration_Stat203: 1.06081031e-04 + syst_JES_EtaIntercalibration_Stat204: 1.76132706e-04 + syst_JES_EtaIntercalibration_Stat205: 1.68305605e-04 + syst_JES_EtaIntercalibration_Stat206: 1.33237835e-04 + syst_JES_EtaIntercalibration_Stat207: 1.60649146e-06 + syst_JES_EtaIntercalibration_Stat208: 1.54498932e-09 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 @@ -7895,38 +7895,38 @@ bins: syst_JES_EtaIntercalibration_Stat212: 0.0 syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 - syst_JES_EtaIntercalibration_Stat215: 2.4194205313462973e-06 - syst_JES_EtaIntercalibration_Stat216: 0.00011947611686023279 - syst_JES_EtaIntercalibration_Stat217: 0.00015087249583671636 - syst_JES_EtaIntercalibration_Stat218: 0.00019951007493357323 - syst_JES_EtaIntercalibration_Stat219: 0.00013860219154111526 + syst_JES_EtaIntercalibration_Stat215: 2.41942053e-06 + syst_JES_EtaIntercalibration_Stat216: 1.19476117e-04 + syst_JES_EtaIntercalibration_Stat217: 1.50872496e-04 + syst_JES_EtaIntercalibration_Stat218: 1.99510075e-04 + syst_JES_EtaIntercalibration_Stat219: 1.38602192e-04 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 2.4104235037644316e-06 + syst_JES_EtaIntercalibration_Stat220: 2.41042350e-06 syst_JES_EtaIntercalibration_Stat221: 0.0 syst_JES_EtaIntercalibration_Stat222: 0.0 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 - syst_JES_EtaIntercalibration_Stat227: 5.858251168224183e-06 - syst_JES_EtaIntercalibration_Stat228: 0.00022050018140582105 - syst_JES_EtaIntercalibration_Stat229: 0.00034170237049221654 + syst_JES_EtaIntercalibration_Stat227: 5.85825117e-06 + syst_JES_EtaIntercalibration_Stat228: 2.20500181e-04 + syst_JES_EtaIntercalibration_Stat229: 3.41702370e-04 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 0.0003538390417972556 - syst_JES_EtaIntercalibration_Stat231: 0.0002945467365291967 - syst_JES_EtaIntercalibration_Stat232: 3.908050881283405e-06 + syst_JES_EtaIntercalibration_Stat230: 3.53839042e-04 + syst_JES_EtaIntercalibration_Stat231: 2.94546737e-04 + syst_JES_EtaIntercalibration_Stat232: 3.90805088e-06 syst_JES_EtaIntercalibration_Stat233: 0.0 syst_JES_EtaIntercalibration_Stat234: 0.0 syst_JES_EtaIntercalibration_Stat235: 0.0 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 - syst_JES_EtaIntercalibration_Stat238: 5.920149694793083e-07 - syst_JES_EtaIntercalibration_Stat239: 1.6794727951577542e-05 + syst_JES_EtaIntercalibration_Stat238: 5.92014969e-07 + syst_JES_EtaIntercalibration_Stat239: 1.67947280e-05 syst_JES_EtaIntercalibration_Stat24: 0.0 - syst_JES_EtaIntercalibration_Stat240: 1.9256728167253647e-05 - syst_JES_EtaIntercalibration_Stat241: 3.5020626779085495e-05 - syst_JES_EtaIntercalibration_Stat242: 1.2327357705526357e-05 - syst_JES_EtaIntercalibration_Stat243: 4.8705268708836826e-08 + syst_JES_EtaIntercalibration_Stat240: 1.92567282e-05 + syst_JES_EtaIntercalibration_Stat241: 3.50206268e-05 + syst_JES_EtaIntercalibration_Stat242: 1.23273577e-05 + syst_JES_EtaIntercalibration_Stat243: 4.87052687e-08 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 syst_JES_EtaIntercalibration_Stat25: 0.0 @@ -7935,12 +7935,12 @@ bins: syst_JES_EtaIntercalibration_Stat28: 0.0 syst_JES_EtaIntercalibration_Stat29: 0.0 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 2.6888774386349406e-17 - syst_JES_EtaIntercalibration_Stat31: 3.657178831763632e-06 - syst_JES_EtaIntercalibration_Stat32: 1.7020045556637032e-13 - syst_JES_EtaIntercalibration_Stat33: 1.4930283633718739e-09 - syst_JES_EtaIntercalibration_Stat34: 1.5328655844849727e-09 - syst_JES_EtaIntercalibration_Stat35: 1.490731427210102e-16 + syst_JES_EtaIntercalibration_Stat30: 2.68887744e-17 + syst_JES_EtaIntercalibration_Stat31: 3.65717883e-06 + syst_JES_EtaIntercalibration_Stat32: 1.70200456e-13 + syst_JES_EtaIntercalibration_Stat33: 1.49302836e-09 + syst_JES_EtaIntercalibration_Stat34: 1.53286558e-09 + syst_JES_EtaIntercalibration_Stat35: 1.49073143e-16 syst_JES_EtaIntercalibration_Stat36: 0.0 syst_JES_EtaIntercalibration_Stat37: 0.0 syst_JES_EtaIntercalibration_Stat38: 0.0 @@ -7959,215 +7959,215 @@ bins: syst_JES_EtaIntercalibration_Stat5: 0.0 syst_JES_EtaIntercalibration_Stat50: 0.0 syst_JES_EtaIntercalibration_Stat51: 0.0 - syst_JES_EtaIntercalibration_Stat52: 9.43299258493825e-17 - syst_JES_EtaIntercalibration_Stat53: 4.729724475788732e-13 - syst_JES_EtaIntercalibration_Stat54: 1.585680072821503e-06 - syst_JES_EtaIntercalibration_Stat55: 1.4991773474059264e-09 - syst_JES_EtaIntercalibration_Stat56: 1.535480041741352e-09 - syst_JES_EtaIntercalibration_Stat57: 8.9882097633511e-16 + syst_JES_EtaIntercalibration_Stat52: 9.43299258e-17 + syst_JES_EtaIntercalibration_Stat53: 4.72972448e-13 + syst_JES_EtaIntercalibration_Stat54: 1.58568007e-06 + syst_JES_EtaIntercalibration_Stat55: 1.49917735e-09 + syst_JES_EtaIntercalibration_Stat56: 1.53548004e-09 + syst_JES_EtaIntercalibration_Stat57: 8.98820976e-16 syst_JES_EtaIntercalibration_Stat58: 0.0 syst_JES_EtaIntercalibration_Stat59: 0.0 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 7.866974767977839e-19 - syst_JES_EtaIntercalibration_Stat62: 7.866974767977839e-19 + syst_JES_EtaIntercalibration_Stat61: 7.86697477e-19 + syst_JES_EtaIntercalibration_Stat62: 7.86697477e-19 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 2.4292012576153505e-17 - syst_JES_EtaIntercalibration_Stat69: 2.4292012576153505e-17 + syst_JES_EtaIntercalibration_Stat68: 2.42920126e-17 + syst_JES_EtaIntercalibration_Stat69: 2.42920126e-17 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 2.0715327658523772e-17 - syst_JES_EtaIntercalibration_Stat71: 2.0715327658523772e-17 + syst_JES_EtaIntercalibration_Stat70: 2.07153277e-17 + syst_JES_EtaIntercalibration_Stat71: 2.07153277e-17 syst_JES_EtaIntercalibration_Stat72: 0.0 syst_JES_EtaIntercalibration_Stat73: 0.0 - syst_JES_EtaIntercalibration_Stat74: 2.866619835742961e-13 - syst_JES_EtaIntercalibration_Stat75: 7.838002089180635e-06 - syst_JES_EtaIntercalibration_Stat76: 6.028219953376512e-07 - syst_JES_EtaIntercalibration_Stat77: 7.669714010313553e-07 - syst_JES_EtaIntercalibration_Stat78: 7.480820857829555e-07 - syst_JES_EtaIntercalibration_Stat79: 8.596592522621973e-16 + syst_JES_EtaIntercalibration_Stat74: 2.86661984e-13 + syst_JES_EtaIntercalibration_Stat75: 7.83800209e-06 + syst_JES_EtaIntercalibration_Stat76: 6.02821995e-07 + syst_JES_EtaIntercalibration_Stat77: 7.66971401e-07 + syst_JES_EtaIntercalibration_Stat78: 7.48082086e-07 + syst_JES_EtaIntercalibration_Stat79: 8.59659252e-16 syst_JES_EtaIntercalibration_Stat8: 0.0 syst_JES_EtaIntercalibration_Stat80: 0.0 syst_JES_EtaIntercalibration_Stat81: 0.0 - syst_JES_EtaIntercalibration_Stat82: 7.866974767977839e-19 - syst_JES_EtaIntercalibration_Stat83: 7.866974767977839e-19 - syst_JES_EtaIntercalibration_Stat84: 7.866974767977839e-19 + syst_JES_EtaIntercalibration_Stat82: 7.86697477e-19 + syst_JES_EtaIntercalibration_Stat83: 7.86697477e-19 + syst_JES_EtaIntercalibration_Stat84: 7.86697477e-19 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 2.4292012576153505e-17 - syst_JES_EtaIntercalibration_Stat9: 2.8684378206645425e-13 - syst_JES_EtaIntercalibration_Stat90: 2.4292012576153505e-17 - syst_JES_EtaIntercalibration_Stat91: 2.0715327658523772e-17 - syst_JES_EtaIntercalibration_Stat92: 2.0715327658523772e-17 + syst_JES_EtaIntercalibration_Stat89: 2.42920126e-17 + syst_JES_EtaIntercalibration_Stat9: 2.86843782e-13 + syst_JES_EtaIntercalibration_Stat90: 2.42920126e-17 + syst_JES_EtaIntercalibration_Stat91: 2.07153277e-17 + syst_JES_EtaIntercalibration_Stat92: 2.07153277e-17 syst_JES_EtaIntercalibration_Stat93: 0.0 syst_JES_EtaIntercalibration_Stat94: 0.0 - syst_JES_EtaIntercalibration_Stat95: 2.867218221691541e-13 - syst_JES_EtaIntercalibration_Stat96: 8.081398346202221e-06 - syst_JES_EtaIntercalibration_Stat97: 6.009149253430139e-07 - syst_JES_EtaIntercalibration_Stat98: 1.1301410741584431e-06 - syst_JES_EtaIntercalibration_Stat99: 2.4169966835517173e-07 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.003176832502666768 - syst_JES_Flavour_Comp: 0.009243468220857365 - syst_JES_Flavour_Response: 0.003107623046638701 - syst_JES_Gjet_Generator: 0.012981784469016577 - syst_JES_Gjet_OOC: 0.010617634517631504 - syst_JES_Gjet_Purity: 0.002429789034052134 - syst_JES_Gjet_Stat1: 2.6392353059172275e-05 - syst_JES_Gjet_Stat10: 0.00022846953845097163 - syst_JES_Gjet_Stat11: 0.0002685018435690899 - syst_JES_Gjet_Stat12: 0.0008863585321414805 - syst_JES_Gjet_Stat13: 0.0027746514645987518 - syst_JES_Gjet_Stat14: 0.005463514162148754 - syst_JES_Gjet_Stat15: 0.0011456551706338167 - syst_JES_Gjet_Stat2: 1.7586366168142866e-05 - syst_JES_Gjet_Stat3: 2.143835523075406e-05 - syst_JES_Gjet_Stat4: 4.732222416581875e-05 - syst_JES_Gjet_Stat5: 2.7654256453573292e-05 - syst_JES_Gjet_Stat6: 8.748321096073234e-05 - syst_JES_Gjet_Stat7: 0.00011655593807266966 - syst_JES_Gjet_Stat8: 8.18843684716442e-05 - syst_JES_Gjet_Stat9: 0.00014272254228046808 - syst_JES_Gjet_Veto: 0.010073103332637862 - syst_JES_Gjet_dPhi: 0.0010175924675428765 - syst_JES_LArESZee: 0.01979688548736897 - syst_JES_LArEsmear: 0.0015677948685972917 - syst_JES_LAr_JVT: 0.001957247301696952 - syst_JES_MJB_Alpha: 9.4897506816565e-05 - syst_JES_MJB_Asym: 0.0011103491376589618 - syst_JES_MJB_Beta: 0.00011870511141058754 - syst_JES_MJB_Fragmentation: 0.001735791678168783 - syst_JES_MJB_Stat1: 1.624522339027691e-05 - syst_JES_MJB_Stat10: 5.609779140037511e-05 - syst_JES_MJB_Stat11: 1.436509477866401e-05 - syst_JES_MJB_Stat12: 3.7502224933995584e-05 - syst_JES_MJB_Stat13: 5.4501195399734125e-05 - syst_JES_MJB_Stat14: 6.822090643637037e-05 - syst_JES_MJB_Stat15: 4.8085912698003354e-05 - syst_JES_MJB_Stat16: 3.3048710640507597e-06 - syst_JES_MJB_Stat2: 3.688562186001478e-05 - syst_JES_MJB_Stat3: 0.00014630960964680346 - syst_JES_MJB_Stat4: 7.988856410651026e-05 - syst_JES_MJB_Stat5: 9.528845824652638e-05 - syst_JES_MJB_Stat6: 9.888124025820063e-05 - syst_JES_MJB_Stat7: 8.224038059250456e-05 - syst_JES_MJB_Stat8: 6.684518288553036e-05 - syst_JES_MJB_Stat9: 6.853206767638053e-05 - syst_JES_MJB_Threshold: 0.0010376520262110993 - syst_JES_Pileup_MuOffset: 0.002364588917761394 - syst_JES_Pileup_NPVOffset: 0.002427747258262276 - syst_JES_Pileup_Pt_term: 0.001696368474123473 - syst_JES_Pileup_Rho_topology: 0.0038929277838151586 - syst_JES_PunchThrough_MC15: 0.0008895368275119362 - syst_JES_SingleParticle_HighPt: 1.2622761702575233e-19 - syst_JES_Zjet_MC: 0.006257022934271537 - syst_JES_Zjet_MuScale: 0.0004192792244733812 - syst_JES_Zjet_MuSmearID: 9.228498957035212e-05 - syst_JES_Zjet_MuSmearMS: 0.0017585752045334885 - syst_JES_Zjet_OOC: 0.003168674289036347 - syst_JES_Zjet_Stat1: 0.00015616961132051266 - syst_JES_Zjet_Stat10: 0.0002444309871927044 - syst_JES_Zjet_Stat11: 0.00033142927978680457 - syst_JES_Zjet_Stat12: 0.001027348318487941 - syst_JES_Zjet_Stat13: 0.001918812849133547 - syst_JES_Zjet_Stat2: 1.6095793883807037e-28 - syst_JES_Zjet_Stat3: 6.151251153220782e-05 - syst_JES_Zjet_Stat4: 5.7918137055675406e-05 - syst_JES_Zjet_Stat5: 8.226256545355245e-05 - syst_JES_Zjet_Stat6: 0.00010563309460107662 - syst_JES_Zjet_Stat7: 9.143182419158003e-05 - syst_JES_Zjet_Stat8: 8.925110797631591e-05 - syst_JES_Zjet_Stat9: 0.00013559415658500926 - syst_JES_Zjet_Veto: 0.0006934969646653114 - syst_JES_Zjet_dPhi: 0.0005870401349141302 + syst_JES_EtaIntercalibration_Stat95: 2.86721822e-13 + syst_JES_EtaIntercalibration_Stat96: 8.08139835e-06 + syst_JES_EtaIntercalibration_Stat97: 6.00914925e-07 + syst_JES_EtaIntercalibration_Stat98: 1.13014107e-06 + syst_JES_EtaIntercalibration_Stat99: 2.41699668e-07 + syst_JES_EtaIntercalibration_TotalStat_MJB: 3.17683250e-03 + syst_JES_Flavour_Comp: 9.24346822e-03 + syst_JES_Flavour_Response: 3.10762305e-03 + syst_JES_Gjet_Generator: 1.29817845e-02 + syst_JES_Gjet_OOC: 1.06176345e-02 + syst_JES_Gjet_Purity: 2.42978903e-03 + syst_JES_Gjet_Stat1: 2.63923531e-05 + syst_JES_Gjet_Stat10: 2.28469538e-04 + syst_JES_Gjet_Stat11: 2.68501844e-04 + syst_JES_Gjet_Stat12: 8.86358532e-04 + syst_JES_Gjet_Stat13: 2.77465146e-03 + syst_JES_Gjet_Stat14: 5.46351416e-03 + syst_JES_Gjet_Stat15: 1.14565517e-03 + syst_JES_Gjet_Stat2: 1.75863662e-05 + syst_JES_Gjet_Stat3: 2.14383552e-05 + syst_JES_Gjet_Stat4: 4.73222242e-05 + syst_JES_Gjet_Stat5: 2.76542565e-05 + syst_JES_Gjet_Stat6: 8.74832110e-05 + syst_JES_Gjet_Stat7: 1.16555938e-04 + syst_JES_Gjet_Stat8: 8.18843685e-05 + syst_JES_Gjet_Stat9: 1.42722542e-04 + syst_JES_Gjet_Veto: 1.00731033e-02 + syst_JES_Gjet_dPhi: 1.01759247e-03 + syst_JES_LArESZee: 1.97968855e-02 + syst_JES_LArEsmear: 1.56779487e-03 + syst_JES_LAr_JVT: 1.95724730e-03 + syst_JES_MJB_Alpha: 9.48975068e-05 + syst_JES_MJB_Asym: 1.11034914e-03 + syst_JES_MJB_Beta: 1.18705111e-04 + syst_JES_MJB_Fragmentation: 1.73579168e-03 + syst_JES_MJB_Stat1: 1.62452234e-05 + syst_JES_MJB_Stat10: 5.60977914e-05 + syst_JES_MJB_Stat11: 1.43650948e-05 + syst_JES_MJB_Stat12: 3.75022249e-05 + syst_JES_MJB_Stat13: 5.45011954e-05 + syst_JES_MJB_Stat14: 6.82209064e-05 + syst_JES_MJB_Stat15: 4.80859127e-05 + syst_JES_MJB_Stat16: 3.30487106e-06 + syst_JES_MJB_Stat2: 3.68856219e-05 + syst_JES_MJB_Stat3: 1.46309610e-04 + syst_JES_MJB_Stat4: 7.98885641e-05 + syst_JES_MJB_Stat5: 9.52884582e-05 + syst_JES_MJB_Stat6: 9.88812403e-05 + syst_JES_MJB_Stat7: 8.22403806e-05 + syst_JES_MJB_Stat8: 6.68451829e-05 + syst_JES_MJB_Stat9: 6.85320677e-05 + syst_JES_MJB_Threshold: 1.03765203e-03 + syst_JES_Pileup_MuOffset: 2.36458892e-03 + syst_JES_Pileup_NPVOffset: 2.42774726e-03 + syst_JES_Pileup_Pt_term: 1.69636847e-03 + syst_JES_Pileup_Rho_topology: 3.89292778e-03 + syst_JES_PunchThrough_MC15: 8.89536828e-04 + syst_JES_SingleParticle_HighPt: 1.26227617e-19 + syst_JES_Zjet_MC: 6.25702293e-03 + syst_JES_Zjet_MuScale: 4.19279224e-04 + syst_JES_Zjet_MuSmearID: 9.22849896e-05 + syst_JES_Zjet_MuSmearMS: 1.75857520e-03 + syst_JES_Zjet_OOC: 3.16867429e-03 + syst_JES_Zjet_Stat1: 1.56169611e-04 + syst_JES_Zjet_Stat10: 2.44430987e-04 + syst_JES_Zjet_Stat11: 3.31429280e-04 + syst_JES_Zjet_Stat12: 1.02734832e-03 + syst_JES_Zjet_Stat13: 1.91881285e-03 + syst_JES_Zjet_Stat2: 1.60957939e-28 + syst_JES_Zjet_Stat3: 6.15125115e-05 + syst_JES_Zjet_Stat4: 5.79181371e-05 + syst_JES_Zjet_Stat5: 8.22625655e-05 + syst_JES_Zjet_Stat6: 1.05633095e-04 + syst_JES_Zjet_Stat7: 9.14318242e-05 + syst_JES_Zjet_Stat8: 8.92511080e-05 + syst_JES_Zjet_Stat9: 1.35594157e-04 + syst_JES_Zjet_Veto: 6.93496965e-04 + syst_JES_Zjet_dPhi: 5.87040135e-04 syst_PRW: 0.000349 - syst_Unfolding_bias: 5.729e-05 - syst_cleaning: 0.0037187130838503796 + syst_Unfolding_bias: 5.72900000e-05 + syst_cleaning: 3.71871308e-03 syst_lumi: 0.013288 - stat: 0.001801 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.0008960743440139329 - syst_JER_NP1: 9.018370737001224e-05 - syst_JER_NP2: 0.0003217590091978777 - syst_JER_NP3: 0.0001558219422128989 - syst_JER_NP4: 0.00011886171250659314 - syst_JER_NP5: 8.207152734048516e-05 - syst_JER_NP6: 0.00011176409128159189 - syst_JER_NP7: 0.0001117338662850257 - syst_JER_NP8: 0.000256835837647319 - syst_JES_EtaIntercalibration_Modelling: 0.004384364948313495 + syst_JER_NP0: 8.96074344e-04 + syst_JER_NP1: 9.01837074e-05 + syst_JER_NP2: 3.21759009e-04 + syst_JER_NP3: 1.55821942e-04 + syst_JER_NP4: 1.18861713e-04 + syst_JER_NP5: 8.20715273e-05 + syst_JER_NP6: 1.11764091e-04 + syst_JER_NP7: 1.11733866e-04 + syst_JER_NP8: 2.56835838e-04 + syst_JES_EtaIntercalibration_Modelling: 4.38436495e-03 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 - syst_JES_EtaIntercalibration_Stat10: 2.909109415590105e-16 - syst_JES_EtaIntercalibration_Stat100: 1.9822550382518892e-14 + syst_JES_EtaIntercalibration_Stat10: 2.90910942e-16 + syst_JES_EtaIntercalibration_Stat100: 1.98225504e-14 syst_JES_EtaIntercalibration_Stat101: 0.0 syst_JES_EtaIntercalibration_Stat102: 0.0 - syst_JES_EtaIntercalibration_Stat103: 1.8922655072689982e-19 - syst_JES_EtaIntercalibration_Stat104: 1.8922655072689982e-19 - syst_JES_EtaIntercalibration_Stat105: 1.8922655072689982e-19 + syst_JES_EtaIntercalibration_Stat103: 1.89226551e-19 + syst_JES_EtaIntercalibration_Stat104: 1.89226551e-19 + syst_JES_EtaIntercalibration_Stat105: 1.89226551e-19 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 5.339912639734849e-18 - syst_JES_EtaIntercalibration_Stat11: 1.985796250877718e-14 - syst_JES_EtaIntercalibration_Stat110: 5.244524733472043e-18 - syst_JES_EtaIntercalibration_Stat111: 4.625441681612687e-18 - syst_JES_EtaIntercalibration_Stat112: 4.625441681612687e-18 + syst_JES_EtaIntercalibration_Stat109: 5.33991264e-18 + syst_JES_EtaIntercalibration_Stat11: 1.98579625e-14 + syst_JES_EtaIntercalibration_Stat110: 5.24452473e-18 + syst_JES_EtaIntercalibration_Stat111: 4.62544168e-18 + syst_JES_EtaIntercalibration_Stat112: 4.62544168e-18 syst_JES_EtaIntercalibration_Stat113: 0.0 - syst_JES_EtaIntercalibration_Stat114: 6.08729256320082e-18 - syst_JES_EtaIntercalibration_Stat115: 1.2397843038206284e-12 - syst_JES_EtaIntercalibration_Stat116: 1.0560620377136943e-06 - syst_JES_EtaIntercalibration_Stat117: 2.081401659339206e-06 - syst_JES_EtaIntercalibration_Stat118: 3.977046100751159e-06 - syst_JES_EtaIntercalibration_Stat119: 2.426934833797562e-06 - syst_JES_EtaIntercalibration_Stat12: 2.370311430911514e-10 - syst_JES_EtaIntercalibration_Stat120: 2.4205668757491105e-10 - syst_JES_EtaIntercalibration_Stat121: 3.098638894740721e-17 + syst_JES_EtaIntercalibration_Stat114: 6.08729256e-18 + syst_JES_EtaIntercalibration_Stat115: 1.23978430e-12 + syst_JES_EtaIntercalibration_Stat116: 1.05606204e-06 + syst_JES_EtaIntercalibration_Stat117: 2.08140166e-06 + syst_JES_EtaIntercalibration_Stat118: 3.97704610e-06 + syst_JES_EtaIntercalibration_Stat119: 2.42693483e-06 + syst_JES_EtaIntercalibration_Stat12: 2.37031143e-10 + syst_JES_EtaIntercalibration_Stat120: 2.42056688e-10 + syst_JES_EtaIntercalibration_Stat121: 3.09863889e-17 syst_JES_EtaIntercalibration_Stat122: 0.0 - syst_JES_EtaIntercalibration_Stat123: 1.8922655072689982e-19 - syst_JES_EtaIntercalibration_Stat124: 1.8922655072689982e-19 - syst_JES_EtaIntercalibration_Stat125: 1.8922655072689982e-19 + syst_JES_EtaIntercalibration_Stat123: 1.89226551e-19 + syst_JES_EtaIntercalibration_Stat124: 1.89226551e-19 + syst_JES_EtaIntercalibration_Stat125: 1.89226551e-19 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 5.339912639734849e-18 - syst_JES_EtaIntercalibration_Stat129: 5.244524733472043e-18 + syst_JES_EtaIntercalibration_Stat128: 5.33991264e-18 + syst_JES_EtaIntercalibration_Stat129: 5.24452473e-18 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 3.107299148778566e-19 + syst_JES_EtaIntercalibration_Stat130: 3.10729915e-19 syst_JES_EtaIntercalibration_Stat131: 0.0 syst_JES_EtaIntercalibration_Stat132: 0.0 - syst_JES_EtaIntercalibration_Stat133: 6.08729256320082e-18 - syst_JES_EtaIntercalibration_Stat134: 2.5235484072753996e-06 - syst_JES_EtaIntercalibration_Stat135: 2.191710918437922e-06 - syst_JES_EtaIntercalibration_Stat136: 4.205879099546254e-06 - syst_JES_EtaIntercalibration_Stat137: 5.129895320569417e-06 - syst_JES_EtaIntercalibration_Stat138: 2.0934108698485352e-06 - syst_JES_EtaIntercalibration_Stat139: 9.87885989120202e-13 + syst_JES_EtaIntercalibration_Stat133: 6.08729256e-18 + syst_JES_EtaIntercalibration_Stat134: 2.52354841e-06 + syst_JES_EtaIntercalibration_Stat135: 2.19171092e-06 + syst_JES_EtaIntercalibration_Stat136: 4.20587910e-06 + syst_JES_EtaIntercalibration_Stat137: 5.12989532e-06 + syst_JES_EtaIntercalibration_Stat138: 2.09341087e-06 + syst_JES_EtaIntercalibration_Stat139: 9.87885989e-13 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 3.098638894740721e-17 + syst_JES_EtaIntercalibration_Stat140: 3.09863889e-17 syst_JES_EtaIntercalibration_Stat141: 0.0 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 1.8922655072689982e-19 - syst_JES_EtaIntercalibration_Stat144: 1.8922655072689982e-19 + syst_JES_EtaIntercalibration_Stat143: 1.89226551e-19 + syst_JES_EtaIntercalibration_Stat144: 1.89226551e-19 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 3.107299148778566e-19 - syst_JES_EtaIntercalibration_Stat148: 3.107299148778566e-19 + syst_JES_EtaIntercalibration_Stat147: 3.10729915e-19 + syst_JES_EtaIntercalibration_Stat148: 3.10729915e-19 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 syst_JES_EtaIntercalibration_Stat150: 0.0 syst_JES_EtaIntercalibration_Stat151: 0.0 - syst_JES_EtaIntercalibration_Stat152: 1.0418285607784986e-06 - syst_JES_EtaIntercalibration_Stat153: 4.103988395451429e-06 - syst_JES_EtaIntercalibration_Stat154: 3.373346113282774e-06 - syst_JES_EtaIntercalibration_Stat155: 5.047708787162746e-06 - syst_JES_EtaIntercalibration_Stat156: 2.8234040305985257e-06 - syst_JES_EtaIntercalibration_Stat157: 4.5022855909054687e-10 + syst_JES_EtaIntercalibration_Stat152: 1.04182856e-06 + syst_JES_EtaIntercalibration_Stat153: 4.10398840e-06 + syst_JES_EtaIntercalibration_Stat154: 3.37334611e-06 + syst_JES_EtaIntercalibration_Stat155: 5.04770879e-06 + syst_JES_EtaIntercalibration_Stat156: 2.82340403e-06 + syst_JES_EtaIntercalibration_Stat157: 4.50228559e-10 syst_JES_EtaIntercalibration_Stat158: 0.0 syst_JES_EtaIntercalibration_Stat159: 0.0 syst_JES_EtaIntercalibration_Stat16: 0.0 @@ -8176,18 +8176,18 @@ bins: syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 3.107299148778566e-19 + syst_JES_EtaIntercalibration_Stat165: 3.10729915e-19 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 8.571969201997872e-06 - syst_JES_EtaIntercalibration_Stat171: 5.571503298033664e-06 - syst_JES_EtaIntercalibration_Stat172: 6.345947269714743e-06 - syst_JES_EtaIntercalibration_Stat173: 8.411057053070084e-06 - syst_JES_EtaIntercalibration_Stat174: 6.37007556862554e-06 - syst_JES_EtaIntercalibration_Stat175: 5.225650103097222e-10 + syst_JES_EtaIntercalibration_Stat170: 8.57196920e-06 + syst_JES_EtaIntercalibration_Stat171: 5.57150330e-06 + syst_JES_EtaIntercalibration_Stat172: 6.34594727e-06 + syst_JES_EtaIntercalibration_Stat173: 8.41105705e-06 + syst_JES_EtaIntercalibration_Stat174: 6.37007557e-06 + syst_JES_EtaIntercalibration_Stat175: 5.22565010e-10 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 syst_JES_EtaIntercalibration_Stat178: 0.0 @@ -8200,14 +8200,14 @@ bins: syst_JES_EtaIntercalibration_Stat184: 0.0 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 - syst_JES_EtaIntercalibration_Stat187: 5.633251348022738e-07 - syst_JES_EtaIntercalibration_Stat188: 2.898474081305541e-05 - syst_JES_EtaIntercalibration_Stat189: 3.3812309888559814e-05 + syst_JES_EtaIntercalibration_Stat187: 5.63325135e-07 + syst_JES_EtaIntercalibration_Stat188: 2.89847408e-05 + syst_JES_EtaIntercalibration_Stat189: 3.38123099e-05 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 3.661933931681455e-05 - syst_JES_EtaIntercalibration_Stat191: 2.6427089794375768e-05 - syst_JES_EtaIntercalibration_Stat192: 1.933468573522725e-06 - syst_JES_EtaIntercalibration_Stat193: 2.4508518927099617e-10 + syst_JES_EtaIntercalibration_Stat190: 3.66193393e-05 + syst_JES_EtaIntercalibration_Stat191: 2.64270898e-05 + syst_JES_EtaIntercalibration_Stat192: 1.93346857e-06 + syst_JES_EtaIntercalibration_Stat193: 2.45085189e-10 syst_JES_EtaIntercalibration_Stat194: 0.0 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 @@ -8218,13 +8218,13 @@ bins: syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 syst_JES_EtaIntercalibration_Stat201: 0.0 - syst_JES_EtaIntercalibration_Stat202: 1.8287661496211046e-06 - syst_JES_EtaIntercalibration_Stat203: 5.4072862648467206e-05 - syst_JES_EtaIntercalibration_Stat204: 8.905198088756925e-05 - syst_JES_EtaIntercalibration_Stat205: 8.703725797036579e-05 - syst_JES_EtaIntercalibration_Stat206: 6.686818899895525e-05 - syst_JES_EtaIntercalibration_Stat207: 7.769407101413853e-07 - syst_JES_EtaIntercalibration_Stat208: 2.4508518927099617e-10 + syst_JES_EtaIntercalibration_Stat202: 1.82876615e-06 + syst_JES_EtaIntercalibration_Stat203: 5.40728626e-05 + syst_JES_EtaIntercalibration_Stat204: 8.90519809e-05 + syst_JES_EtaIntercalibration_Stat205: 8.70372580e-05 + syst_JES_EtaIntercalibration_Stat206: 6.68681890e-05 + syst_JES_EtaIntercalibration_Stat207: 7.76940710e-07 + syst_JES_EtaIntercalibration_Stat208: 2.45085189e-10 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 @@ -8232,38 +8232,38 @@ bins: syst_JES_EtaIntercalibration_Stat212: 0.0 syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 - syst_JES_EtaIntercalibration_Stat215: 1.586457743488619e-06 - syst_JES_EtaIntercalibration_Stat216: 6.517068570300607e-05 - syst_JES_EtaIntercalibration_Stat217: 8.545969400834524e-05 - syst_JES_EtaIntercalibration_Stat218: 0.00010713806466424528 - syst_JES_EtaIntercalibration_Stat219: 7.443175935042783e-05 + syst_JES_EtaIntercalibration_Stat215: 1.58645774e-06 + syst_JES_EtaIntercalibration_Stat216: 6.51706857e-05 + syst_JES_EtaIntercalibration_Stat217: 8.54596940e-05 + syst_JES_EtaIntercalibration_Stat218: 1.07138065e-04 + syst_JES_EtaIntercalibration_Stat219: 7.44317594e-05 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 1.5282053247845987e-06 + syst_JES_EtaIntercalibration_Stat220: 1.52820532e-06 syst_JES_EtaIntercalibration_Stat221: 0.0 syst_JES_EtaIntercalibration_Stat222: 0.0 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 - syst_JES_EtaIntercalibration_Stat227: 3.6973182173029143e-06 - syst_JES_EtaIntercalibration_Stat228: 0.0001565174990216749 - syst_JES_EtaIntercalibration_Stat229: 0.00024611661869934745 + syst_JES_EtaIntercalibration_Stat227: 3.69731822e-06 + syst_JES_EtaIntercalibration_Stat228: 1.56517499e-04 + syst_JES_EtaIntercalibration_Stat229: 2.46116619e-04 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 0.00024350694035283677 - syst_JES_EtaIntercalibration_Stat231: 0.00020556152363708532 - syst_JES_EtaIntercalibration_Stat232: 2.060409160215514e-06 + syst_JES_EtaIntercalibration_Stat230: 2.43506940e-04 + syst_JES_EtaIntercalibration_Stat231: 2.05561524e-04 + syst_JES_EtaIntercalibration_Stat232: 2.06040916e-06 syst_JES_EtaIntercalibration_Stat233: 0.0 syst_JES_EtaIntercalibration_Stat234: 0.0 syst_JES_EtaIntercalibration_Stat235: 0.0 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 - syst_JES_EtaIntercalibration_Stat238: 4.95800102255494e-07 - syst_JES_EtaIntercalibration_Stat239: 1.5826847664648828e-05 + syst_JES_EtaIntercalibration_Stat238: 4.95800102e-07 + syst_JES_EtaIntercalibration_Stat239: 1.58268477e-05 syst_JES_EtaIntercalibration_Stat24: 0.0 - syst_JES_EtaIntercalibration_Stat240: 1.9241981394856403e-05 - syst_JES_EtaIntercalibration_Stat241: 3.278222498550091e-05 - syst_JES_EtaIntercalibration_Stat242: 1.1683657004551271e-05 - syst_JES_EtaIntercalibration_Stat243: 8.416034873977175e-08 + syst_JES_EtaIntercalibration_Stat240: 1.92419814e-05 + syst_JES_EtaIntercalibration_Stat241: 3.27822250e-05 + syst_JES_EtaIntercalibration_Stat242: 1.16836570e-05 + syst_JES_EtaIntercalibration_Stat243: 8.41603487e-08 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 syst_JES_EtaIntercalibration_Stat25: 0.0 @@ -8272,12 +8272,12 @@ bins: syst_JES_EtaIntercalibration_Stat28: 0.0 syst_JES_EtaIntercalibration_Stat29: 0.0 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 5.8560431922928984e-18 - syst_JES_EtaIntercalibration_Stat31: 2.390792338849194e-06 - syst_JES_EtaIntercalibration_Stat32: 2.4999393492642975e-14 - syst_JES_EtaIntercalibration_Stat33: 2.3729105921965847e-10 - syst_JES_EtaIntercalibration_Stat34: 2.433532473807505e-10 - syst_JES_EtaIntercalibration_Stat35: 3.0110804836382243e-17 + syst_JES_EtaIntercalibration_Stat30: 5.85604319e-18 + syst_JES_EtaIntercalibration_Stat31: 2.39079234e-06 + syst_JES_EtaIntercalibration_Stat32: 2.49993935e-14 + syst_JES_EtaIntercalibration_Stat33: 2.37291059e-10 + syst_JES_EtaIntercalibration_Stat34: 2.43353247e-10 + syst_JES_EtaIntercalibration_Stat35: 3.01108048e-17 syst_JES_EtaIntercalibration_Stat36: 0.0 syst_JES_EtaIntercalibration_Stat37: 0.0 syst_JES_EtaIntercalibration_Stat38: 0.0 @@ -8296,215 +8296,215 @@ bins: syst_JES_EtaIntercalibration_Stat5: 0.0 syst_JES_EtaIntercalibration_Stat50: 0.0 syst_JES_EtaIntercalibration_Stat51: 0.0 - syst_JES_EtaIntercalibration_Stat52: 1.635931298274778e-17 - syst_JES_EtaIntercalibration_Stat53: 7.382428583515049e-14 - syst_JES_EtaIntercalibration_Stat54: 8.571034455466119e-07 - syst_JES_EtaIntercalibration_Stat55: 2.382570958655299e-10 - syst_JES_EtaIntercalibration_Stat56: 2.437021759706325e-10 - syst_JES_EtaIntercalibration_Stat57: 1.6389236467877326e-16 + syst_JES_EtaIntercalibration_Stat52: 1.63593130e-17 + syst_JES_EtaIntercalibration_Stat53: 7.38242858e-14 + syst_JES_EtaIntercalibration_Stat54: 8.57103446e-07 + syst_JES_EtaIntercalibration_Stat55: 2.38257096e-10 + syst_JES_EtaIntercalibration_Stat56: 2.43702176e-10 + syst_JES_EtaIntercalibration_Stat57: 1.63892365e-16 syst_JES_EtaIntercalibration_Stat58: 0.0 syst_JES_EtaIntercalibration_Stat59: 0.0 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 1.8922655072689982e-19 - syst_JES_EtaIntercalibration_Stat62: 1.8922655072689982e-19 + syst_JES_EtaIntercalibration_Stat61: 1.89226551e-19 + syst_JES_EtaIntercalibration_Stat62: 1.89226551e-19 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 5.339912639734849e-18 - syst_JES_EtaIntercalibration_Stat69: 5.339912639734849e-18 + syst_JES_EtaIntercalibration_Stat68: 5.33991264e-18 + syst_JES_EtaIntercalibration_Stat69: 5.33991264e-18 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 4.625441681612687e-18 - syst_JES_EtaIntercalibration_Stat71: 4.625441681612687e-18 + syst_JES_EtaIntercalibration_Stat70: 4.62544168e-18 + syst_JES_EtaIntercalibration_Stat71: 4.62544168e-18 syst_JES_EtaIntercalibration_Stat72: 0.0 syst_JES_EtaIntercalibration_Stat73: 0.0 - syst_JES_EtaIntercalibration_Stat74: 4.569854877816143e-14 - syst_JES_EtaIntercalibration_Stat75: 3.888621743947334e-06 - syst_JES_EtaIntercalibration_Stat76: 3.94038775972235e-07 - syst_JES_EtaIntercalibration_Stat77: 5.990430368512766e-07 - syst_JES_EtaIntercalibration_Stat78: 6.746352141719003e-07 - syst_JES_EtaIntercalibration_Stat79: 1.4575289877048758e-16 + syst_JES_EtaIntercalibration_Stat74: 4.56985488e-14 + syst_JES_EtaIntercalibration_Stat75: 3.88862174e-06 + syst_JES_EtaIntercalibration_Stat76: 3.94038776e-07 + syst_JES_EtaIntercalibration_Stat77: 5.99043037e-07 + syst_JES_EtaIntercalibration_Stat78: 6.74635214e-07 + syst_JES_EtaIntercalibration_Stat79: 1.45752899e-16 syst_JES_EtaIntercalibration_Stat8: 0.0 syst_JES_EtaIntercalibration_Stat80: 0.0 syst_JES_EtaIntercalibration_Stat81: 0.0 - syst_JES_EtaIntercalibration_Stat82: 1.8922655072689982e-19 - syst_JES_EtaIntercalibration_Stat83: 1.8922655072689982e-19 - syst_JES_EtaIntercalibration_Stat84: 1.8922655072689982e-19 + syst_JES_EtaIntercalibration_Stat82: 1.89226551e-19 + syst_JES_EtaIntercalibration_Stat83: 1.89226551e-19 + syst_JES_EtaIntercalibration_Stat84: 1.89226551e-19 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 5.339912639734849e-18 - syst_JES_EtaIntercalibration_Stat9: 4.5701733221910745e-14 - syst_JES_EtaIntercalibration_Stat90: 5.339912639734849e-18 - syst_JES_EtaIntercalibration_Stat91: 4.625441681612687e-18 - syst_JES_EtaIntercalibration_Stat92: 4.625441681612687e-18 + syst_JES_EtaIntercalibration_Stat89: 5.33991264e-18 + syst_JES_EtaIntercalibration_Stat9: 4.57017332e-14 + syst_JES_EtaIntercalibration_Stat90: 5.33991264e-18 + syst_JES_EtaIntercalibration_Stat91: 4.62544168e-18 + syst_JES_EtaIntercalibration_Stat92: 4.62544168e-18 syst_JES_EtaIntercalibration_Stat93: 0.0 syst_JES_EtaIntercalibration_Stat94: 0.0 - syst_JES_EtaIntercalibration_Stat95: 4.5706688579681636e-14 - syst_JES_EtaIntercalibration_Stat96: 4.00102305260792e-06 - syst_JES_EtaIntercalibration_Stat97: 3.9272099510975985e-07 - syst_JES_EtaIntercalibration_Stat98: 9.026918120266739e-07 - syst_JES_EtaIntercalibration_Stat99: 6.624902121027902e-08 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.002218505521742058 - syst_JES_Flavour_Comp: 0.00621477425173272 - syst_JES_Flavour_Response: 0.0016900479283144605 - syst_JES_Gjet_Generator: 0.00866705444485034 - syst_JES_Gjet_OOC: 0.007107280967430512 - syst_JES_Gjet_Purity: 0.0014880006720428593 - syst_JES_Gjet_Stat1: 1.72663567378877e-05 - syst_JES_Gjet_Stat10: 0.00014199375576059674 - syst_JES_Gjet_Stat11: 0.00016541021733859127 - syst_JES_Gjet_Stat12: 0.0005278502320734548 - syst_JES_Gjet_Stat13: 0.0016965649854927456 - syst_JES_Gjet_Stat14: 0.0038971897297924818 - syst_JES_Gjet_Stat15: 0.0015829823119668772 - syst_JES_Gjet_Stat2: 1.5103081432277323e-05 - syst_JES_Gjet_Stat3: 1.4012071108512117e-05 - syst_JES_Gjet_Stat4: 3.071176159063495e-05 - syst_JES_Gjet_Stat5: 2.04201389564322e-05 - syst_JES_Gjet_Stat6: 5.63154390464995e-05 - syst_JES_Gjet_Stat7: 7.402033284848158e-05 - syst_JES_Gjet_Stat8: 5.403914692146796e-05 - syst_JES_Gjet_Stat9: 9.413917184148158e-05 - syst_JES_Gjet_Veto: 0.006899722168319533 - syst_JES_Gjet_dPhi: 0.0006709025189995935 - syst_JES_LArESZee: 0.01330024007302124 - syst_JES_LArEsmear: 0.0010366764104579596 - syst_JES_LAr_JVT: 0.0012959696784647396 - syst_JES_MJB_Alpha: 6.199890563550295e-05 - syst_JES_MJB_Asym: 0.0008995400213442422 - syst_JES_MJB_Beta: 8.513885834329704e-05 - syst_JES_MJB_Fragmentation: 0.0010378504070915036 - syst_JES_MJB_Stat1: 9.168900302108208e-06 - syst_JES_MJB_Stat10: 6.901292252180023e-05 - syst_JES_MJB_Stat11: 4.600724807027693e-05 - syst_JES_MJB_Stat12: 5.210036852076961e-06 - syst_JES_MJB_Stat13: 2.4512158207713984e-05 - syst_JES_MJB_Stat14: 5.940403248096883e-05 - syst_JES_MJB_Stat15: 6.143079093581654e-05 - syst_JES_MJB_Stat16: 1.1689059532314822e-05 - syst_JES_MJB_Stat2: 1.679152429054611e-05 - syst_JES_MJB_Stat3: 6.892222772807043e-05 - syst_JES_MJB_Stat4: 4.021555762388481e-05 - syst_JES_MJB_Stat5: 5.580490569833445e-05 - syst_JES_MJB_Stat6: 5.96367191837378e-05 - syst_JES_MJB_Stat7: 5.595325995864763e-05 - syst_JES_MJB_Stat8: 6.190586886556071e-05 - syst_JES_MJB_Stat9: 7.089148379742096e-05 - syst_JES_MJB_Threshold: 0.0007176251302037855 - syst_JES_Pileup_MuOffset: 0.0016026499149845547 - syst_JES_Pileup_NPVOffset: 0.0016491024831707703 - syst_JES_Pileup_Pt_term: 0.0011072015263717803 - syst_JES_Pileup_Rho_topology: 0.0025215286534164155 - syst_JES_PunchThrough_MC15: 0.000692145235842883 - syst_JES_SingleParticle_HighPt: 1.8704809541933326e-16 - syst_JES_Zjet_MC: 0.003880554085436769 - syst_JES_Zjet_MuScale: 0.00025986738925844465 - syst_JES_Zjet_MuSmearID: 5.953481166510901e-05 - syst_JES_Zjet_MuSmearMS: 0.0010610530146981346 - syst_JES_Zjet_OOC: 0.002013040238047913 - syst_JES_Zjet_Stat1: 9.852617520232885e-05 - syst_JES_Zjet_Stat10: 0.00015875455111586564 - syst_JES_Zjet_Stat11: 0.00020635800808303998 - syst_JES_Zjet_Stat12: 0.0006359141530112378 - syst_JES_Zjet_Stat13: 0.0011560105968372433 - syst_JES_Zjet_Stat2: 1.4384595953658205e-23 - syst_JES_Zjet_Stat3: 4.916667774011175e-05 - syst_JES_Zjet_Stat4: 4.275757330578993e-05 - syst_JES_Zjet_Stat5: 7.09310207173138e-05 - syst_JES_Zjet_Stat6: 6.859077634784432e-05 - syst_JES_Zjet_Stat7: 6.550872060268006e-05 - syst_JES_Zjet_Stat8: 6.231080403910705e-05 - syst_JES_Zjet_Stat9: 9.134701349797923e-05 - syst_JES_Zjet_Veto: 0.0004296960873687355 - syst_JES_Zjet_dPhi: 0.00037179645462941146 - syst_PRW: 0.0002281 - syst_Unfolding_bias: 3.745e-05 - syst_cleaning: 0.002537454433088405 + syst_JES_EtaIntercalibration_Stat95: 4.57066886e-14 + syst_JES_EtaIntercalibration_Stat96: 4.00102305e-06 + syst_JES_EtaIntercalibration_Stat97: 3.92720995e-07 + syst_JES_EtaIntercalibration_Stat98: 9.02691812e-07 + syst_JES_EtaIntercalibration_Stat99: 6.62490212e-08 + syst_JES_EtaIntercalibration_TotalStat_MJB: 2.21850552e-03 + syst_JES_Flavour_Comp: 6.21477425e-03 + syst_JES_Flavour_Response: 1.69004793e-03 + syst_JES_Gjet_Generator: 8.66705444e-03 + syst_JES_Gjet_OOC: 7.10728097e-03 + syst_JES_Gjet_Purity: 1.48800067e-03 + syst_JES_Gjet_Stat1: 1.72663567e-05 + syst_JES_Gjet_Stat10: 1.41993756e-04 + syst_JES_Gjet_Stat11: 1.65410217e-04 + syst_JES_Gjet_Stat12: 5.27850232e-04 + syst_JES_Gjet_Stat13: 1.69656499e-03 + syst_JES_Gjet_Stat14: 3.89718973e-03 + syst_JES_Gjet_Stat15: 1.58298231e-03 + syst_JES_Gjet_Stat2: 1.51030814e-05 + syst_JES_Gjet_Stat3: 1.40120711e-05 + syst_JES_Gjet_Stat4: 3.07117616e-05 + syst_JES_Gjet_Stat5: 2.04201390e-05 + syst_JES_Gjet_Stat6: 5.63154390e-05 + syst_JES_Gjet_Stat7: 7.40203328e-05 + syst_JES_Gjet_Stat8: 5.40391469e-05 + syst_JES_Gjet_Stat9: 9.41391718e-05 + syst_JES_Gjet_Veto: 6.89972217e-03 + syst_JES_Gjet_dPhi: 6.70902519e-04 + syst_JES_LArESZee: 1.33002401e-02 + syst_JES_LArEsmear: 1.03667641e-03 + syst_JES_LAr_JVT: 1.29596968e-03 + syst_JES_MJB_Alpha: 6.19989056e-05 + syst_JES_MJB_Asym: 8.99540021e-04 + syst_JES_MJB_Beta: 8.51388583e-05 + syst_JES_MJB_Fragmentation: 1.03785041e-03 + syst_JES_MJB_Stat1: 9.16890030e-06 + syst_JES_MJB_Stat10: 6.90129225e-05 + syst_JES_MJB_Stat11: 4.60072481e-05 + syst_JES_MJB_Stat12: 5.21003685e-06 + syst_JES_MJB_Stat13: 2.45121582e-05 + syst_JES_MJB_Stat14: 5.94040325e-05 + syst_JES_MJB_Stat15: 6.14307909e-05 + syst_JES_MJB_Stat16: 1.16890595e-05 + syst_JES_MJB_Stat2: 1.67915243e-05 + syst_JES_MJB_Stat3: 6.89222277e-05 + syst_JES_MJB_Stat4: 4.02155576e-05 + syst_JES_MJB_Stat5: 5.58049057e-05 + syst_JES_MJB_Stat6: 5.96367192e-05 + syst_JES_MJB_Stat7: 5.59532600e-05 + syst_JES_MJB_Stat8: 6.19058689e-05 + syst_JES_MJB_Stat9: 7.08914838e-05 + syst_JES_MJB_Threshold: 7.17625130e-04 + syst_JES_Pileup_MuOffset: 1.60264991e-03 + syst_JES_Pileup_NPVOffset: 1.64910248e-03 + syst_JES_Pileup_Pt_term: 1.10720153e-03 + syst_JES_Pileup_Rho_topology: 2.52152865e-03 + syst_JES_PunchThrough_MC15: 6.92145236e-04 + syst_JES_SingleParticle_HighPt: 1.87048095e-16 + syst_JES_Zjet_MC: 3.88055409e-03 + syst_JES_Zjet_MuScale: 2.59867389e-04 + syst_JES_Zjet_MuSmearID: 5.95348117e-05 + syst_JES_Zjet_MuSmearMS: 1.06105301e-03 + syst_JES_Zjet_OOC: 2.01304024e-03 + syst_JES_Zjet_Stat1: 9.85261752e-05 + syst_JES_Zjet_Stat10: 1.58754551e-04 + syst_JES_Zjet_Stat11: 2.06358008e-04 + syst_JES_Zjet_Stat12: 6.35914153e-04 + syst_JES_Zjet_Stat13: 1.15601060e-03 + syst_JES_Zjet_Stat2: 1.43845960e-23 + syst_JES_Zjet_Stat3: 4.91666777e-05 + syst_JES_Zjet_Stat4: 4.27575733e-05 + syst_JES_Zjet_Stat5: 7.09310207e-05 + syst_JES_Zjet_Stat6: 6.85907763e-05 + syst_JES_Zjet_Stat7: 6.55087206e-05 + syst_JES_Zjet_Stat8: 6.23108040e-05 + syst_JES_Zjet_Stat9: 9.13470135e-05 + syst_JES_Zjet_Veto: 4.29696087e-04 + syst_JES_Zjet_dPhi: 3.71796455e-04 + syst_PRW: 2.28100000e-04 + syst_Unfolding_bias: 3.74500000e-05 + syst_cleaning: 2.53745443e-03 syst_lumi: 0.008686 -- stat: 0.0014195 +- stat: 1.41950000e-03 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.0005960426557722189 - syst_JER_NP1: 5.945187696784686e-05 - syst_JER_NP2: 0.00021962686538763877 - syst_JER_NP3: 8.954695346576565e-05 - syst_JER_NP4: 8.782487745508102e-05 - syst_JER_NP5: 6.630435506058408e-05 - syst_JER_NP6: 8.068600668641372e-05 - syst_JER_NP7: 7.72687160175449e-05 - syst_JER_NP8: 0.00017150599843737243 - syst_JES_EtaIntercalibration_Modelling: 0.003086610884125176 + syst_JER_NP0: 5.96042656e-04 + syst_JER_NP1: 5.94518770e-05 + syst_JER_NP2: 2.19626865e-04 + syst_JER_NP3: 8.95469535e-05 + syst_JER_NP4: 8.78248775e-05 + syst_JER_NP5: 6.63043551e-05 + syst_JER_NP6: 8.06860067e-05 + syst_JER_NP7: 7.72687160e-05 + syst_JER_NP8: 1.71505998e-04 + syst_JES_EtaIntercalibration_Modelling: 3.08661088e-03 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 - syst_JES_EtaIntercalibration_Stat10: 5.4915073675175927e-17 - syst_JES_EtaIntercalibration_Stat100: 3.075372573770534e-15 + syst_JES_EtaIntercalibration_Stat10: 5.49150737e-17 + syst_JES_EtaIntercalibration_Stat100: 3.07537257e-15 syst_JES_EtaIntercalibration_Stat101: 0.0 syst_JES_EtaIntercalibration_Stat102: 0.0 - syst_JES_EtaIntercalibration_Stat103: 4.9190242934956113e-20 - syst_JES_EtaIntercalibration_Stat104: 4.9190242934956113e-20 - syst_JES_EtaIntercalibration_Stat105: 4.9190242934956113e-20 + syst_JES_EtaIntercalibration_Stat103: 4.91902429e-20 + syst_JES_EtaIntercalibration_Stat104: 4.91902429e-20 + syst_JES_EtaIntercalibration_Stat105: 4.91902429e-20 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 1.271325292755556e-18 - syst_JES_EtaIntercalibration_Stat11: 3.07872031045368e-15 - syst_JES_EtaIntercalibration_Stat110: 1.2471943019433659e-18 - syst_JES_EtaIntercalibration_Stat111: 1.1200306547144146e-18 - syst_JES_EtaIntercalibration_Stat112: 1.1200306547144146e-18 + syst_JES_EtaIntercalibration_Stat109: 1.27132529e-18 + syst_JES_EtaIntercalibration_Stat11: 3.07872031e-15 + syst_JES_EtaIntercalibration_Stat110: 1.24719430e-18 + syst_JES_EtaIntercalibration_Stat111: 1.12003065e-18 + syst_JES_EtaIntercalibration_Stat112: 1.12003065e-18 syst_JES_EtaIntercalibration_Stat113: 0.0 - syst_JES_EtaIntercalibration_Stat114: 1.4384681956859525e-18 - syst_JES_EtaIntercalibration_Stat115: 1.9610272894582575e-13 - syst_JES_EtaIntercalibration_Stat116: 5.364426227472981e-07 - syst_JES_EtaIntercalibration_Stat117: 5.959544529576065e-07 - syst_JES_EtaIntercalibration_Stat118: 3.2152888382033424e-06 - syst_JES_EtaIntercalibration_Stat119: 1.6808613357442666e-06 - syst_JES_EtaIntercalibration_Stat12: 3.7975211778471593e-11 - syst_JES_EtaIntercalibration_Stat120: 3.8772377656650765e-11 - syst_JES_EtaIntercalibration_Stat121: 6.803495572130551e-18 + syst_JES_EtaIntercalibration_Stat114: 1.43846820e-18 + syst_JES_EtaIntercalibration_Stat115: 1.96102729e-13 + syst_JES_EtaIntercalibration_Stat116: 5.36442623e-07 + syst_JES_EtaIntercalibration_Stat117: 5.95954453e-07 + syst_JES_EtaIntercalibration_Stat118: 3.21528884e-06 + syst_JES_EtaIntercalibration_Stat119: 1.68086134e-06 + syst_JES_EtaIntercalibration_Stat12: 3.79752118e-11 + syst_JES_EtaIntercalibration_Stat120: 3.87723777e-11 + syst_JES_EtaIntercalibration_Stat121: 6.80349557e-18 syst_JES_EtaIntercalibration_Stat122: 0.0 - syst_JES_EtaIntercalibration_Stat123: 4.9190242934956113e-20 - syst_JES_EtaIntercalibration_Stat124: 4.9190242934956113e-20 - syst_JES_EtaIntercalibration_Stat125: 4.9190242934956113e-20 + syst_JES_EtaIntercalibration_Stat123: 4.91902429e-20 + syst_JES_EtaIntercalibration_Stat124: 4.91902429e-20 + syst_JES_EtaIntercalibration_Stat125: 4.91902429e-20 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 1.271325292755556e-18 - syst_JES_EtaIntercalibration_Stat129: 1.2471943019433659e-18 + syst_JES_EtaIntercalibration_Stat128: 1.27132529e-18 + syst_JES_EtaIntercalibration_Stat129: 1.24719430e-18 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 7.908543987359493e-20 + syst_JES_EtaIntercalibration_Stat130: 7.90854399e-20 syst_JES_EtaIntercalibration_Stat131: 0.0 syst_JES_EtaIntercalibration_Stat132: 0.0 - syst_JES_EtaIntercalibration_Stat133: 1.4384681956859525e-18 - syst_JES_EtaIntercalibration_Stat134: 1.6601625383691787e-06 - syst_JES_EtaIntercalibration_Stat135: 1.2214119483204675e-06 - syst_JES_EtaIntercalibration_Stat136: 1.7681399124503693e-06 - syst_JES_EtaIntercalibration_Stat137: 2.6826115540644344e-06 - syst_JES_EtaIntercalibration_Stat138: 1.1248415269196814e-06 - syst_JES_EtaIntercalibration_Stat139: 1.6350029380707547e-13 + syst_JES_EtaIntercalibration_Stat133: 1.43846820e-18 + syst_JES_EtaIntercalibration_Stat134: 1.66016254e-06 + syst_JES_EtaIntercalibration_Stat135: 1.22141195e-06 + syst_JES_EtaIntercalibration_Stat136: 1.76813991e-06 + syst_JES_EtaIntercalibration_Stat137: 2.68261155e-06 + syst_JES_EtaIntercalibration_Stat138: 1.12484153e-06 + syst_JES_EtaIntercalibration_Stat139: 1.63500294e-13 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 6.803495572130551e-18 + syst_JES_EtaIntercalibration_Stat140: 6.80349557e-18 syst_JES_EtaIntercalibration_Stat141: 0.0 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 4.9190242934956113e-20 - syst_JES_EtaIntercalibration_Stat144: 4.9190242934956113e-20 + syst_JES_EtaIntercalibration_Stat143: 4.91902429e-20 + syst_JES_EtaIntercalibration_Stat144: 4.91902429e-20 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 7.908543987359493e-20 - syst_JES_EtaIntercalibration_Stat148: 7.908543987359493e-20 + syst_JES_EtaIntercalibration_Stat147: 7.90854399e-20 + syst_JES_EtaIntercalibration_Stat148: 7.90854399e-20 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 syst_JES_EtaIntercalibration_Stat150: 0.0 syst_JES_EtaIntercalibration_Stat151: 0.0 - syst_JES_EtaIntercalibration_Stat152: 6.909150671449871e-07 - syst_JES_EtaIntercalibration_Stat153: 2.5366945026944022e-06 - syst_JES_EtaIntercalibration_Stat154: 2.258066872349001e-06 - syst_JES_EtaIntercalibration_Stat155: 2.6422185162283606e-06 - syst_JES_EtaIntercalibration_Stat156: 2.360133510524352e-06 - syst_JES_EtaIntercalibration_Stat157: 7.213445030462213e-11 + syst_JES_EtaIntercalibration_Stat152: 6.90915067e-07 + syst_JES_EtaIntercalibration_Stat153: 2.53669450e-06 + syst_JES_EtaIntercalibration_Stat154: 2.25806687e-06 + syst_JES_EtaIntercalibration_Stat155: 2.64221852e-06 + syst_JES_EtaIntercalibration_Stat156: 2.36013351e-06 + syst_JES_EtaIntercalibration_Stat157: 7.21344503e-11 syst_JES_EtaIntercalibration_Stat158: 0.0 syst_JES_EtaIntercalibration_Stat159: 0.0 syst_JES_EtaIntercalibration_Stat16: 0.0 @@ -8513,18 +8513,18 @@ bins: syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 7.908543987359493e-20 + syst_JES_EtaIntercalibration_Stat165: 7.90854399e-20 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 4.838829817218209e-06 - syst_JES_EtaIntercalibration_Stat171: 3.0304469967316705e-06 - syst_JES_EtaIntercalibration_Stat172: 4.052667111915312e-06 - syst_JES_EtaIntercalibration_Stat173: 5.3549516104256256e-06 - syst_JES_EtaIntercalibration_Stat174: 3.6123843926138313e-06 - syst_JES_EtaIntercalibration_Stat175: 1.4783000600351744e-10 + syst_JES_EtaIntercalibration_Stat170: 4.83882982e-06 + syst_JES_EtaIntercalibration_Stat171: 3.03044700e-06 + syst_JES_EtaIntercalibration_Stat172: 4.05266711e-06 + syst_JES_EtaIntercalibration_Stat173: 5.35495161e-06 + syst_JES_EtaIntercalibration_Stat174: 3.61238439e-06 + syst_JES_EtaIntercalibration_Stat175: 1.47830006e-10 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 syst_JES_EtaIntercalibration_Stat178: 0.0 @@ -8537,14 +8537,14 @@ bins: syst_JES_EtaIntercalibration_Stat184: 0.0 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 - syst_JES_EtaIntercalibration_Stat187: 4.6124885636714596e-07 - syst_JES_EtaIntercalibration_Stat188: 1.6352239319126906e-05 - syst_JES_EtaIntercalibration_Stat189: 1.9098342860049402e-05 + syst_JES_EtaIntercalibration_Stat187: 4.61248856e-07 + syst_JES_EtaIntercalibration_Stat188: 1.63522393e-05 + syst_JES_EtaIntercalibration_Stat189: 1.90983429e-05 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 2.2310353538211803e-05 - syst_JES_EtaIntercalibration_Stat191: 1.6699991017961657e-05 - syst_JES_EtaIntercalibration_Stat192: 1.4805311310472335e-06 - syst_JES_EtaIntercalibration_Stat193: 3.92569315535486e-11 + syst_JES_EtaIntercalibration_Stat190: 2.23103535e-05 + syst_JES_EtaIntercalibration_Stat191: 1.66999910e-05 + syst_JES_EtaIntercalibration_Stat192: 1.48053113e-06 + syst_JES_EtaIntercalibration_Stat193: 3.92569316e-11 syst_JES_EtaIntercalibration_Stat194: 0.0 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 @@ -8555,13 +8555,13 @@ bins: syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 syst_JES_EtaIntercalibration_Stat201: 0.0 - syst_JES_EtaIntercalibration_Stat202: 1.103326183637459e-06 - syst_JES_EtaIntercalibration_Stat203: 3.1244427903227806e-05 - syst_JES_EtaIntercalibration_Stat204: 5.078028357541931e-05 - syst_JES_EtaIntercalibration_Stat205: 5.100516517961686e-05 - syst_JES_EtaIntercalibration_Stat206: 3.8174265372761266e-05 - syst_JES_EtaIntercalibration_Stat207: 6.968214028716397e-07 - syst_JES_EtaIntercalibration_Stat208: 3.92569315535486e-11 + syst_JES_EtaIntercalibration_Stat202: 1.10332618e-06 + syst_JES_EtaIntercalibration_Stat203: 3.12444279e-05 + syst_JES_EtaIntercalibration_Stat204: 5.07802836e-05 + syst_JES_EtaIntercalibration_Stat205: 5.10051652e-05 + syst_JES_EtaIntercalibration_Stat206: 3.81742654e-05 + syst_JES_EtaIntercalibration_Stat207: 6.96821403e-07 + syst_JES_EtaIntercalibration_Stat208: 3.92569316e-11 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 @@ -8569,38 +8569,38 @@ bins: syst_JES_EtaIntercalibration_Stat212: 0.0 syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 - syst_JES_EtaIntercalibration_Stat215: 1.0615112434637704e-06 - syst_JES_EtaIntercalibration_Stat216: 3.857335187665184e-05 - syst_JES_EtaIntercalibration_Stat217: 5.327248328170934e-05 - syst_JES_EtaIntercalibration_Stat218: 6.170110128676798e-05 - syst_JES_EtaIntercalibration_Stat219: 4.357516580576602e-05 + syst_JES_EtaIntercalibration_Stat215: 1.06151124e-06 + syst_JES_EtaIntercalibration_Stat216: 3.85733519e-05 + syst_JES_EtaIntercalibration_Stat217: 5.32724833e-05 + syst_JES_EtaIntercalibration_Stat218: 6.17011013e-05 + syst_JES_EtaIntercalibration_Stat219: 4.35751658e-05 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 1.227852067148156e-06 + syst_JES_EtaIntercalibration_Stat220: 1.22785207e-06 syst_JES_EtaIntercalibration_Stat221: 0.0 syst_JES_EtaIntercalibration_Stat222: 0.0 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 - syst_JES_EtaIntercalibration_Stat227: 2.4587469877968333e-06 - syst_JES_EtaIntercalibration_Stat228: 0.00010930862774731006 - syst_JES_EtaIntercalibration_Stat229: 0.00017025604247720551 + syst_JES_EtaIntercalibration_Stat227: 2.45874699e-06 + syst_JES_EtaIntercalibration_Stat228: 1.09308628e-04 + syst_JES_EtaIntercalibration_Stat229: 1.70256042e-04 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 0.00016230360439620556 - syst_JES_EtaIntercalibration_Stat231: 0.00014106040833628688 - syst_JES_EtaIntercalibration_Stat232: 7.305157955171127e-07 + syst_JES_EtaIntercalibration_Stat230: 1.62303604e-04 + syst_JES_EtaIntercalibration_Stat231: 1.41060408e-04 + syst_JES_EtaIntercalibration_Stat232: 7.30515796e-07 syst_JES_EtaIntercalibration_Stat233: 0.0 syst_JES_EtaIntercalibration_Stat234: 0.0 syst_JES_EtaIntercalibration_Stat235: 0.0 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 - syst_JES_EtaIntercalibration_Stat238: 3.1976131752685736e-07 - syst_JES_EtaIntercalibration_Stat239: 1.3103359416577109e-05 + syst_JES_EtaIntercalibration_Stat238: 3.19761318e-07 + syst_JES_EtaIntercalibration_Stat239: 1.31033594e-05 syst_JES_EtaIntercalibration_Stat24: 0.0 - syst_JES_EtaIntercalibration_Stat240: 1.6282746297845456e-05 - syst_JES_EtaIntercalibration_Stat241: 2.5344638486275552e-05 - syst_JES_EtaIntercalibration_Stat242: 1.1003751303532809e-05 - syst_JES_EtaIntercalibration_Stat243: 7.410579380183441e-08 + syst_JES_EtaIntercalibration_Stat240: 1.62827463e-05 + syst_JES_EtaIntercalibration_Stat241: 2.53446385e-05 + syst_JES_EtaIntercalibration_Stat242: 1.10037513e-05 + syst_JES_EtaIntercalibration_Stat243: 7.41057938e-08 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 syst_JES_EtaIntercalibration_Stat25: 0.0 @@ -8609,12 +8609,12 @@ bins: syst_JES_EtaIntercalibration_Stat28: 0.0 syst_JES_EtaIntercalibration_Stat29: 0.0 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 1.3809739923329478e-18 - syst_JES_EtaIntercalibration_Stat31: 1.572437811170922e-06 - syst_JES_EtaIntercalibration_Stat32: 3.866913036260319e-15 - syst_JES_EtaIntercalibration_Stat33: 3.800987345023031e-11 - syst_JES_EtaIntercalibration_Stat34: 3.897982408774754e-11 - syst_JES_EtaIntercalibration_Stat35: 6.594335335792607e-18 + syst_JES_EtaIntercalibration_Stat30: 1.38097399e-18 + syst_JES_EtaIntercalibration_Stat31: 1.57243781e-06 + syst_JES_EtaIntercalibration_Stat32: 3.86691304e-15 + syst_JES_EtaIntercalibration_Stat33: 3.80098735e-11 + syst_JES_EtaIntercalibration_Stat34: 3.89798241e-11 + syst_JES_EtaIntercalibration_Stat35: 6.59433534e-18 syst_JES_EtaIntercalibration_Stat36: 0.0 syst_JES_EtaIntercalibration_Stat37: 0.0 syst_JES_EtaIntercalibration_Stat38: 0.0 @@ -8633,215 +8633,215 @@ bins: syst_JES_EtaIntercalibration_Stat5: 0.0 syst_JES_EtaIntercalibration_Stat50: 0.0 syst_JES_EtaIntercalibration_Stat51: 0.0 - syst_JES_EtaIntercalibration_Stat52: 3.0101169184393814e-18 - syst_JES_EtaIntercalibration_Stat53: 1.2353224491229002e-14 - syst_JES_EtaIntercalibration_Stat54: 6.336704879873094e-07 - syst_JES_EtaIntercalibration_Stat55: 3.816797152541218e-11 - syst_JES_EtaIntercalibration_Stat56: 3.9023538015148635e-11 - syst_JES_EtaIntercalibration_Stat57: 3.2520833487935077e-17 + syst_JES_EtaIntercalibration_Stat52: 3.01011692e-18 + syst_JES_EtaIntercalibration_Stat53: 1.23532245e-14 + syst_JES_EtaIntercalibration_Stat54: 6.33670488e-07 + syst_JES_EtaIntercalibration_Stat55: 3.81679715e-11 + syst_JES_EtaIntercalibration_Stat56: 3.90235380e-11 + syst_JES_EtaIntercalibration_Stat57: 3.25208335e-17 syst_JES_EtaIntercalibration_Stat58: 0.0 syst_JES_EtaIntercalibration_Stat59: 0.0 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 4.9190242934956113e-20 - syst_JES_EtaIntercalibration_Stat62: 4.9190242934956113e-20 + syst_JES_EtaIntercalibration_Stat61: 4.91902429e-20 + syst_JES_EtaIntercalibration_Stat62: 4.91902429e-20 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 1.271325292755556e-18 - syst_JES_EtaIntercalibration_Stat69: 1.271325292755556e-18 + syst_JES_EtaIntercalibration_Stat68: 1.27132529e-18 + syst_JES_EtaIntercalibration_Stat69: 1.27132529e-18 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 1.1200306547144146e-18 - syst_JES_EtaIntercalibration_Stat71: 1.1200306547144146e-18 + syst_JES_EtaIntercalibration_Stat70: 1.12003065e-18 + syst_JES_EtaIntercalibration_Stat71: 1.12003065e-18 syst_JES_EtaIntercalibration_Stat72: 0.0 syst_JES_EtaIntercalibration_Stat73: 0.0 - syst_JES_EtaIntercalibration_Stat74: 7.837354751233035e-15 - syst_JES_EtaIntercalibration_Stat75: 1.3631259690505496e-06 - syst_JES_EtaIntercalibration_Stat76: 2.5972057981171377e-07 - syst_JES_EtaIntercalibration_Stat77: 4.285624429415158e-07 - syst_JES_EtaIntercalibration_Stat78: 5.007361112391602e-07 - syst_JES_EtaIntercalibration_Stat79: 2.6451364804107935e-17 + syst_JES_EtaIntercalibration_Stat74: 7.83735475e-15 + syst_JES_EtaIntercalibration_Stat75: 1.36312597e-06 + syst_JES_EtaIntercalibration_Stat76: 2.59720580e-07 + syst_JES_EtaIntercalibration_Stat77: 4.28562443e-07 + syst_JES_EtaIntercalibration_Stat78: 5.00736111e-07 + syst_JES_EtaIntercalibration_Stat79: 2.64513648e-17 syst_JES_EtaIntercalibration_Stat8: 0.0 syst_JES_EtaIntercalibration_Stat80: 0.0 syst_JES_EtaIntercalibration_Stat81: 0.0 - syst_JES_EtaIntercalibration_Stat82: 4.9190242934956113e-20 - syst_JES_EtaIntercalibration_Stat83: 4.9190242934956113e-20 - syst_JES_EtaIntercalibration_Stat84: 4.9190242934956113e-20 + syst_JES_EtaIntercalibration_Stat82: 4.91902429e-20 + syst_JES_EtaIntercalibration_Stat83: 4.91902429e-20 + syst_JES_EtaIntercalibration_Stat84: 4.91902429e-20 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 1.271325292755556e-18 - syst_JES_EtaIntercalibration_Stat9: 7.834347179368234e-15 - syst_JES_EtaIntercalibration_Stat90: 1.271325292755556e-18 - syst_JES_EtaIntercalibration_Stat91: 1.1200306547144146e-18 - syst_JES_EtaIntercalibration_Stat92: 1.1200306547144146e-18 + syst_JES_EtaIntercalibration_Stat89: 1.27132529e-18 + syst_JES_EtaIntercalibration_Stat9: 7.83434718e-15 + syst_JES_EtaIntercalibration_Stat90: 1.27132529e-18 + syst_JES_EtaIntercalibration_Stat91: 1.12003065e-18 + syst_JES_EtaIntercalibration_Stat92: 1.12003065e-18 syst_JES_EtaIntercalibration_Stat93: 0.0 syst_JES_EtaIntercalibration_Stat94: 0.0 - syst_JES_EtaIntercalibration_Stat95: 7.839517695628666e-15 - syst_JES_EtaIntercalibration_Stat96: 1.355548194458611e-06 - syst_JES_EtaIntercalibration_Stat97: 2.58902027802024e-07 - syst_JES_EtaIntercalibration_Stat98: 6.462750401338427e-07 - syst_JES_EtaIntercalibration_Stat99: 1.5962967158808538e-08 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0015615014409215253 - syst_JES_Flavour_Comp: 0.004230127037099477 - syst_JES_Flavour_Response: 0.000850702644876575 - syst_JES_Gjet_Generator: 0.005821894021708056 - syst_JES_Gjet_OOC: 0.004781703566721802 - syst_JES_Gjet_Purity: 0.0009294015493854095 - syst_JES_Gjet_Stat1: 1.1395598393678148e-05 - syst_JES_Gjet_Stat10: 9.288285417664555e-05 - syst_JES_Gjet_Stat11: 0.00010579939354741123 - syst_JES_Gjet_Stat12: 0.00033182037309363626 - syst_JES_Gjet_Stat13: 0.0010590604326477313 - syst_JES_Gjet_Stat14: 0.0026835269236584903 - syst_JES_Gjet_Stat15: 0.001688014810361568 - syst_JES_Gjet_Stat2: 1.2475262271792124e-05 - syst_JES_Gjet_Stat3: 9.238677989842488e-06 - syst_JES_Gjet_Stat4: 1.9264171407044737e-05 - syst_JES_Gjet_Stat5: 1.5532635602176468e-05 - syst_JES_Gjet_Stat6: 3.9187221807625e-05 - syst_JES_Gjet_Stat7: 5.045248532034869e-05 - syst_JES_Gjet_Stat8: 3.545003699574938e-05 - syst_JES_Gjet_Stat9: 6.2821848707277e-05 - syst_JES_Gjet_Veto: 0.004720250072824532 - syst_JES_Gjet_dPhi: 0.0004505828974783663 - syst_JES_LArESZee: 0.008973693553938646 - syst_JES_LArEsmear: 0.0007007913312820016 - syst_JES_LAr_JVT: 0.000877538335344958 - syst_JES_MJB_Alpha: 4.164182512810888e-05 - syst_JES_MJB_Asym: 0.0007211059197510446 - syst_JES_MJB_Beta: 5.904213495462371e-05 - syst_JES_MJB_Fragmentation: 0.0006350155175269341 - syst_JES_MJB_Stat1: 4.712934903804634e-06 - syst_JES_MJB_Stat10: 6.747031995625928e-05 - syst_JES_MJB_Stat11: 5.819881162876094e-05 - syst_JES_MJB_Stat12: 3.6627984861305166e-05 - syst_JES_MJB_Stat13: 1.5855188764250016e-05 - syst_JES_MJB_Stat14: 4.032844294973462e-05 - syst_JES_MJB_Stat15: 6.006968703098095e-05 - syst_JES_MJB_Stat16: 2.3875449733984074e-05 - syst_JES_MJB_Stat2: 6.971692692596254e-06 - syst_JES_MJB_Stat3: 3.022423985810065e-05 - syst_JES_MJB_Stat4: 2.0641445564688536e-05 - syst_JES_MJB_Stat5: 3.029981188060414e-05 - syst_JES_MJB_Stat6: 3.433057326567676e-05 - syst_JES_MJB_Stat7: 3.495082402462065e-05 - syst_JES_MJB_Stat8: 4.669997938971708e-05 - syst_JES_MJB_Stat9: 6.10051823618289e-05 - syst_JES_MJB_Threshold: 0.0005134957326989193 - syst_JES_Pileup_MuOffset: 0.0010946478646121775 - syst_JES_Pileup_NPVOffset: 0.0011282111903362774 - syst_JES_Pileup_Pt_term: 0.0007266462963505697 - syst_JES_Pileup_Rho_topology: 0.0016510054512326724 - syst_JES_PunchThrough_MC15: 0.0005520922205573993 - syst_JES_SingleParticle_HighPt: 5.261083039641173e-14 - syst_JES_Zjet_MC: 0.002454068866189374 - syst_JES_Zjet_MuScale: 0.00016761679510120698 - syst_JES_Zjet_MuSmearID: 3.8199551044482185e-05 - syst_JES_Zjet_MuSmearMS: 0.000662996538452502 - syst_JES_Zjet_OOC: 0.001308468726221609 - syst_JES_Zjet_Stat1: 6.447805905887677e-05 - syst_JES_Zjet_Stat10: 0.0001079553324296674 - syst_JES_Zjet_Stat11: 0.00013483755040788898 - syst_JES_Zjet_Stat12: 0.00041025049360116555 - syst_JES_Zjet_Stat13: 0.0007203586537274331 - syst_JES_Zjet_Stat2: 1.2603503986987108e-19 - syst_JES_Zjet_Stat3: 4.118772480970513e-05 - syst_JES_Zjet_Stat4: 3.373806566772909e-05 - syst_JES_Zjet_Stat5: 5.574192138776704e-05 - syst_JES_Zjet_Stat6: 4.699205082511296e-05 - syst_JES_Zjet_Stat7: 4.617480156968733e-05 - syst_JES_Zjet_Stat8: 4.594124399708828e-05 - syst_JES_Zjet_Stat9: 6.279829675238016e-05 - syst_JES_Zjet_Veto: 0.00027764163952836757 - syst_JES_Zjet_dPhi: 0.0002452078862924274 - syst_PRW: 0.0001504 - syst_Unfolding_bias: 2.469e-05 - syst_cleaning: 0.001693945689802362 + syst_JES_EtaIntercalibration_Stat95: 7.83951770e-15 + syst_JES_EtaIntercalibration_Stat96: 1.35554819e-06 + syst_JES_EtaIntercalibration_Stat97: 2.58902028e-07 + syst_JES_EtaIntercalibration_Stat98: 6.46275040e-07 + syst_JES_EtaIntercalibration_Stat99: 1.59629672e-08 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.56150144e-03 + syst_JES_Flavour_Comp: 4.23012704e-03 + syst_JES_Flavour_Response: 8.50702645e-04 + syst_JES_Gjet_Generator: 5.82189402e-03 + syst_JES_Gjet_OOC: 4.78170357e-03 + syst_JES_Gjet_Purity: 9.29401549e-04 + syst_JES_Gjet_Stat1: 1.13955984e-05 + syst_JES_Gjet_Stat10: 9.28828542e-05 + syst_JES_Gjet_Stat11: 1.05799394e-04 + syst_JES_Gjet_Stat12: 3.31820373e-04 + syst_JES_Gjet_Stat13: 1.05906043e-03 + syst_JES_Gjet_Stat14: 2.68352692e-03 + syst_JES_Gjet_Stat15: 1.68801481e-03 + syst_JES_Gjet_Stat2: 1.24752623e-05 + syst_JES_Gjet_Stat3: 9.23867799e-06 + syst_JES_Gjet_Stat4: 1.92641714e-05 + syst_JES_Gjet_Stat5: 1.55326356e-05 + syst_JES_Gjet_Stat6: 3.91872218e-05 + syst_JES_Gjet_Stat7: 5.04524853e-05 + syst_JES_Gjet_Stat8: 3.54500370e-05 + syst_JES_Gjet_Stat9: 6.28218487e-05 + syst_JES_Gjet_Veto: 4.72025007e-03 + syst_JES_Gjet_dPhi: 4.50582897e-04 + syst_JES_LArESZee: 8.97369355e-03 + syst_JES_LArEsmear: 7.00791331e-04 + syst_JES_LAr_JVT: 8.77538335e-04 + syst_JES_MJB_Alpha: 4.16418251e-05 + syst_JES_MJB_Asym: 7.21105920e-04 + syst_JES_MJB_Beta: 5.90421350e-05 + syst_JES_MJB_Fragmentation: 6.35015518e-04 + syst_JES_MJB_Stat1: 4.71293490e-06 + syst_JES_MJB_Stat10: 6.74703200e-05 + syst_JES_MJB_Stat11: 5.81988116e-05 + syst_JES_MJB_Stat12: 3.66279849e-05 + syst_JES_MJB_Stat13: 1.58551888e-05 + syst_JES_MJB_Stat14: 4.03284429e-05 + syst_JES_MJB_Stat15: 6.00696870e-05 + syst_JES_MJB_Stat16: 2.38754497e-05 + syst_JES_MJB_Stat2: 6.97169269e-06 + syst_JES_MJB_Stat3: 3.02242399e-05 + syst_JES_MJB_Stat4: 2.06414456e-05 + syst_JES_MJB_Stat5: 3.02998119e-05 + syst_JES_MJB_Stat6: 3.43305733e-05 + syst_JES_MJB_Stat7: 3.49508240e-05 + syst_JES_MJB_Stat8: 4.66999794e-05 + syst_JES_MJB_Stat9: 6.10051824e-05 + syst_JES_MJB_Threshold: 5.13495733e-04 + syst_JES_Pileup_MuOffset: 1.09464786e-03 + syst_JES_Pileup_NPVOffset: 1.12821119e-03 + syst_JES_Pileup_Pt_term: 7.26646296e-04 + syst_JES_Pileup_Rho_topology: 1.65100545e-03 + syst_JES_PunchThrough_MC15: 5.52092221e-04 + syst_JES_SingleParticle_HighPt: 5.26108304e-14 + syst_JES_Zjet_MC: 2.45406887e-03 + syst_JES_Zjet_MuScale: 1.67616795e-04 + syst_JES_Zjet_MuSmearID: 3.81995510e-05 + syst_JES_Zjet_MuSmearMS: 6.62996538e-04 + syst_JES_Zjet_OOC: 1.30846873e-03 + syst_JES_Zjet_Stat1: 6.44780591e-05 + syst_JES_Zjet_Stat10: 1.07955332e-04 + syst_JES_Zjet_Stat11: 1.34837550e-04 + syst_JES_Zjet_Stat12: 4.10250494e-04 + syst_JES_Zjet_Stat13: 7.20358654e-04 + syst_JES_Zjet_Stat2: 1.26035040e-19 + syst_JES_Zjet_Stat3: 4.11877248e-05 + syst_JES_Zjet_Stat4: 3.37380657e-05 + syst_JES_Zjet_Stat5: 5.57419214e-05 + syst_JES_Zjet_Stat6: 4.69920508e-05 + syst_JES_Zjet_Stat7: 4.61748016e-05 + syst_JES_Zjet_Stat8: 4.59412440e-05 + syst_JES_Zjet_Stat9: 6.27982968e-05 + syst_JES_Zjet_Veto: 2.77641640e-04 + syst_JES_Zjet_dPhi: 2.45207886e-04 + syst_PRW: 1.50400000e-04 + syst_Unfolding_bias: 2.46900000e-05 + syst_cleaning: 1.69394569e-03 syst_lumi: 0.005726 -- stat: 0.0011281 +- stat: 1.12810000e-03 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.00039705038408242345 - syst_JER_NP1: 3.90807506964746e-05 - syst_JER_NP2: 0.00015483487979134418 - syst_JER_NP3: 5.182771917613199e-05 - syst_JER_NP4: 6.47153443937371e-05 - syst_JER_NP5: 4.7698092991229744e-05 - syst_JER_NP6: 5.5446623882793806e-05 - syst_JER_NP7: 5.158601045826282e-05 - syst_JER_NP8: 0.00011387920650847547 - syst_JES_EtaIntercalibration_Modelling: 0.0021660115419821755 + syst_JER_NP0: 3.97050384e-04 + syst_JER_NP1: 3.90807507e-05 + syst_JER_NP2: 1.54834880e-04 + syst_JER_NP3: 5.18277192e-05 + syst_JER_NP4: 6.47153444e-05 + syst_JER_NP5: 4.76980930e-05 + syst_JER_NP6: 5.54466239e-05 + syst_JER_NP7: 5.15860105e-05 + syst_JER_NP8: 1.13879207e-04 + syst_JES_EtaIntercalibration_Modelling: 2.16601154e-03 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 - syst_JES_EtaIntercalibration_Stat10: 1.106139651355108e-17 - syst_JES_EtaIntercalibration_Stat100: 4.977644503929544e-16 + syst_JES_EtaIntercalibration_Stat10: 1.10613965e-17 + syst_JES_EtaIntercalibration_Stat100: 4.97764450e-16 syst_JES_EtaIntercalibration_Stat101: 0.0 syst_JES_EtaIntercalibration_Stat102: 0.0 - syst_JES_EtaIntercalibration_Stat103: 1.362257960152922e-20 - syst_JES_EtaIntercalibration_Stat104: 1.362257960152922e-20 - syst_JES_EtaIntercalibration_Stat105: 1.362257960152922e-20 + syst_JES_EtaIntercalibration_Stat103: 1.36225796e-20 + syst_JES_EtaIntercalibration_Stat104: 1.36225796e-20 + syst_JES_EtaIntercalibration_Stat105: 1.36225796e-20 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 3.23287283232731e-19 - syst_JES_EtaIntercalibration_Stat11: 4.977914020952953e-16 - syst_JES_EtaIntercalibration_Stat110: 3.167901469427356e-19 - syst_JES_EtaIntercalibration_Stat111: 2.8985870264665163e-19 - syst_JES_EtaIntercalibration_Stat112: 2.8985870264665163e-19 + syst_JES_EtaIntercalibration_Stat109: 3.23287283e-19 + syst_JES_EtaIntercalibration_Stat11: 4.97791402e-16 + syst_JES_EtaIntercalibration_Stat110: 3.16790147e-19 + syst_JES_EtaIntercalibration_Stat111: 2.89858703e-19 + syst_JES_EtaIntercalibration_Stat112: 2.89858703e-19 syst_JES_EtaIntercalibration_Stat113: 0.0 - syst_JES_EtaIntercalibration_Stat114: 3.6269143910492287e-19 - syst_JES_EtaIntercalibration_Stat115: 3.24824682059415e-14 - syst_JES_EtaIntercalibration_Stat116: 4.2097528059851685e-07 - syst_JES_EtaIntercalibration_Stat117: 4.4589046726746694e-07 - syst_JES_EtaIntercalibration_Stat118: 2.215562413361447e-06 - syst_JES_EtaIntercalibration_Stat119: 1.1052505270299581e-06 - syst_JES_EtaIntercalibration_Stat12: 6.177358693950907e-12 - syst_JES_EtaIntercalibration_Stat120: 6.309932657785723e-12 - syst_JES_EtaIntercalibration_Stat121: 1.5978168699822891e-18 + syst_JES_EtaIntercalibration_Stat114: 3.62691439e-19 + syst_JES_EtaIntercalibration_Stat115: 3.24824682e-14 + syst_JES_EtaIntercalibration_Stat116: 4.20975281e-07 + syst_JES_EtaIntercalibration_Stat117: 4.45890467e-07 + syst_JES_EtaIntercalibration_Stat118: 2.21556241e-06 + syst_JES_EtaIntercalibration_Stat119: 1.10525053e-06 + syst_JES_EtaIntercalibration_Stat12: 6.17735869e-12 + syst_JES_EtaIntercalibration_Stat120: 6.30993266e-12 + syst_JES_EtaIntercalibration_Stat121: 1.59781687e-18 syst_JES_EtaIntercalibration_Stat122: 0.0 - syst_JES_EtaIntercalibration_Stat123: 1.362257960152922e-20 - syst_JES_EtaIntercalibration_Stat124: 1.362257960152922e-20 - syst_JES_EtaIntercalibration_Stat125: 1.362257960152922e-20 + syst_JES_EtaIntercalibration_Stat123: 1.36225796e-20 + syst_JES_EtaIntercalibration_Stat124: 1.36225796e-20 + syst_JES_EtaIntercalibration_Stat125: 1.36225796e-20 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 3.23287283232731e-19 - syst_JES_EtaIntercalibration_Stat129: 3.167901469427356e-19 + syst_JES_EtaIntercalibration_Stat128: 3.23287283e-19 + syst_JES_EtaIntercalibration_Stat129: 3.16790147e-19 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 2.1425468489627014e-20 + syst_JES_EtaIntercalibration_Stat130: 2.14254685e-20 syst_JES_EtaIntercalibration_Stat131: 0.0 syst_JES_EtaIntercalibration_Stat132: 0.0 - syst_JES_EtaIntercalibration_Stat133: 3.6269143910492287e-19 - syst_JES_EtaIntercalibration_Stat134: 1.0707524625763516e-06 - syst_JES_EtaIntercalibration_Stat135: 7.274691385206661e-07 - syst_JES_EtaIntercalibration_Stat136: 7.588650604685921e-07 - syst_JES_EtaIntercalibration_Stat137: 1.2808986718316168e-06 - syst_JES_EtaIntercalibration_Stat138: 7.663396701202411e-07 - syst_JES_EtaIntercalibration_Stat139: 2.883818182115509e-14 + syst_JES_EtaIntercalibration_Stat133: 3.62691439e-19 + syst_JES_EtaIntercalibration_Stat134: 1.07075246e-06 + syst_JES_EtaIntercalibration_Stat135: 7.27469139e-07 + syst_JES_EtaIntercalibration_Stat136: 7.58865060e-07 + syst_JES_EtaIntercalibration_Stat137: 1.28089867e-06 + syst_JES_EtaIntercalibration_Stat138: 7.66339670e-07 + syst_JES_EtaIntercalibration_Stat139: 2.88381818e-14 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 1.5978168699822891e-18 + syst_JES_EtaIntercalibration_Stat140: 1.59781687e-18 syst_JES_EtaIntercalibration_Stat141: 0.0 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 1.362257960152922e-20 - syst_JES_EtaIntercalibration_Stat144: 1.362257960152922e-20 + syst_JES_EtaIntercalibration_Stat143: 1.36225796e-20 + syst_JES_EtaIntercalibration_Stat144: 1.36225796e-20 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 2.1425468489627014e-20 - syst_JES_EtaIntercalibration_Stat148: 2.1425468489627014e-20 + syst_JES_EtaIntercalibration_Stat147: 2.14254685e-20 + syst_JES_EtaIntercalibration_Stat148: 2.14254685e-20 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 syst_JES_EtaIntercalibration_Stat150: 0.0 syst_JES_EtaIntercalibration_Stat151: 0.0 - syst_JES_EtaIntercalibration_Stat152: 4.587336563859935e-07 - syst_JES_EtaIntercalibration_Stat153: 1.280197238709723e-06 - syst_JES_EtaIntercalibration_Stat154: 1.4920379452279357e-06 - syst_JES_EtaIntercalibration_Stat155: 1.2533399060111347e-06 - syst_JES_EtaIntercalibration_Stat156: 1.5870128291857002e-06 - syst_JES_EtaIntercalibration_Stat157: 1.1743860467495347e-11 + syst_JES_EtaIntercalibration_Stat152: 4.58733656e-07 + syst_JES_EtaIntercalibration_Stat153: 1.28019724e-06 + syst_JES_EtaIntercalibration_Stat154: 1.49203795e-06 + syst_JES_EtaIntercalibration_Stat155: 1.25333991e-06 + syst_JES_EtaIntercalibration_Stat156: 1.58701283e-06 + syst_JES_EtaIntercalibration_Stat157: 1.17438605e-11 syst_JES_EtaIntercalibration_Stat158: 0.0 syst_JES_EtaIntercalibration_Stat159: 0.0 syst_JES_EtaIntercalibration_Stat16: 0.0 @@ -8850,18 +8850,18 @@ bins: syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 2.1425468489627014e-20 + syst_JES_EtaIntercalibration_Stat165: 2.14254685e-20 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 2.7363362128948997e-06 - syst_JES_EtaIntercalibration_Stat171: 1.5744886812867218e-06 - syst_JES_EtaIntercalibration_Stat172: 2.6597005000563504e-06 - syst_JES_EtaIntercalibration_Stat173: 3.606716235025983e-06 - syst_JES_EtaIntercalibration_Stat174: 1.978783181654827e-06 - syst_JES_EtaIntercalibration_Stat175: 3.27983120754712e-11 + syst_JES_EtaIntercalibration_Stat170: 2.73633621e-06 + syst_JES_EtaIntercalibration_Stat171: 1.57448868e-06 + syst_JES_EtaIntercalibration_Stat172: 2.65970050e-06 + syst_JES_EtaIntercalibration_Stat173: 3.60671624e-06 + syst_JES_EtaIntercalibration_Stat174: 1.97878318e-06 + syst_JES_EtaIntercalibration_Stat175: 3.27983121e-11 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 syst_JES_EtaIntercalibration_Stat178: 0.0 @@ -8874,14 +8874,14 @@ bins: syst_JES_EtaIntercalibration_Stat184: 0.0 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 - syst_JES_EtaIntercalibration_Stat187: 4.104099261713829e-07 - syst_JES_EtaIntercalibration_Stat188: 9.90257313782635e-06 - syst_JES_EtaIntercalibration_Stat189: 1.1640372975124122e-05 + syst_JES_EtaIntercalibration_Stat187: 4.10409926e-07 + syst_JES_EtaIntercalibration_Stat188: 9.90257314e-06 + syst_JES_EtaIntercalibration_Stat189: 1.16403730e-05 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 1.4606808275595321e-05 - syst_JES_EtaIntercalibration_Stat191: 1.1069238185168842e-05 - syst_JES_EtaIntercalibration_Stat192: 9.917228178780602e-07 - syst_JES_EtaIntercalibration_Stat193: 6.389535429121589e-12 + syst_JES_EtaIntercalibration_Stat190: 1.46068083e-05 + syst_JES_EtaIntercalibration_Stat191: 1.10692382e-05 + syst_JES_EtaIntercalibration_Stat192: 9.91722818e-07 + syst_JES_EtaIntercalibration_Stat193: 6.38953543e-12 syst_JES_EtaIntercalibration_Stat194: 0.0 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 @@ -8892,13 +8892,13 @@ bins: syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 syst_JES_EtaIntercalibration_Stat201: 0.0 - syst_JES_EtaIntercalibration_Stat202: 6.940288376573412e-07 - syst_JES_EtaIntercalibration_Stat203: 1.9375985136245332e-05 - syst_JES_EtaIntercalibration_Stat204: 3.101156074756639e-05 - syst_JES_EtaIntercalibration_Stat205: 3.2584614467567355e-05 - syst_JES_EtaIntercalibration_Stat206: 2.4366261510539525e-05 - syst_JES_EtaIntercalibration_Stat207: 7.721227671167326e-07 - syst_JES_EtaIntercalibration_Stat208: 6.389535429121589e-12 + syst_JES_EtaIntercalibration_Stat202: 6.94028838e-07 + syst_JES_EtaIntercalibration_Stat203: 1.93759851e-05 + syst_JES_EtaIntercalibration_Stat204: 3.10115607e-05 + syst_JES_EtaIntercalibration_Stat205: 3.25846145e-05 + syst_JES_EtaIntercalibration_Stat206: 2.43662615e-05 + syst_JES_EtaIntercalibration_Stat207: 7.72122767e-07 + syst_JES_EtaIntercalibration_Stat208: 6.38953543e-12 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 @@ -8906,38 +8906,38 @@ bins: syst_JES_EtaIntercalibration_Stat212: 0.0 syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 - syst_JES_EtaIntercalibration_Stat215: 7.410083315995847e-07 - syst_JES_EtaIntercalibration_Stat216: 2.4321332200354484e-05 - syst_JES_EtaIntercalibration_Stat217: 3.436041908941159e-05 - syst_JES_EtaIntercalibration_Stat218: 3.901749703658603e-05 - syst_JES_EtaIntercalibration_Stat219: 2.8439917369781508e-05 + syst_JES_EtaIntercalibration_Stat215: 7.41008332e-07 + syst_JES_EtaIntercalibration_Stat216: 2.43213322e-05 + syst_JES_EtaIntercalibration_Stat217: 3.43604191e-05 + syst_JES_EtaIntercalibration_Stat218: 3.90174970e-05 + syst_JES_EtaIntercalibration_Stat219: 2.84399174e-05 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 8.66154897622244e-07 + syst_JES_EtaIntercalibration_Stat220: 8.66154898e-07 syst_JES_EtaIntercalibration_Stat221: 0.0 syst_JES_EtaIntercalibration_Stat222: 0.0 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 - syst_JES_EtaIntercalibration_Stat227: 1.6014704204261784e-06 - syst_JES_EtaIntercalibration_Stat228: 7.383303054866433e-05 - syst_JES_EtaIntercalibration_Stat229: 0.00011595730970922014 + syst_JES_EtaIntercalibration_Stat227: 1.60147042e-06 + syst_JES_EtaIntercalibration_Stat228: 7.38330305e-05 + syst_JES_EtaIntercalibration_Stat229: 1.15957310e-04 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 0.00010849073819916611 - syst_JES_EtaIntercalibration_Stat231: 9.778960732102364e-05 - syst_JES_EtaIntercalibration_Stat232: 4.6591092697531793e-07 + syst_JES_EtaIntercalibration_Stat230: 1.08490738e-04 + syst_JES_EtaIntercalibration_Stat231: 9.77896073e-05 + syst_JES_EtaIntercalibration_Stat232: 4.65910927e-07 syst_JES_EtaIntercalibration_Stat233: 0.0 syst_JES_EtaIntercalibration_Stat234: 0.0 syst_JES_EtaIntercalibration_Stat235: 0.0 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 - syst_JES_EtaIntercalibration_Stat238: 2.677251459391142e-07 - syst_JES_EtaIntercalibration_Stat239: 9.378372673337312e-06 + syst_JES_EtaIntercalibration_Stat238: 2.67725146e-07 + syst_JES_EtaIntercalibration_Stat239: 9.37837267e-06 syst_JES_EtaIntercalibration_Stat24: 0.0 - syst_JES_EtaIntercalibration_Stat240: 1.1814251436295064e-05 - syst_JES_EtaIntercalibration_Stat241: 1.7463764628510084e-05 - syst_JES_EtaIntercalibration_Stat242: 8.918407411079626e-06 - syst_JES_EtaIntercalibration_Stat243: 7.142111505010266e-08 + syst_JES_EtaIntercalibration_Stat240: 1.18142514e-05 + syst_JES_EtaIntercalibration_Stat241: 1.74637646e-05 + syst_JES_EtaIntercalibration_Stat242: 8.91840741e-06 + syst_JES_EtaIntercalibration_Stat243: 7.14211151e-08 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 syst_JES_EtaIntercalibration_Stat25: 0.0 @@ -8946,12 +8946,12 @@ bins: syst_JES_EtaIntercalibration_Stat28: 0.0 syst_JES_EtaIntercalibration_Stat29: 0.0 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 3.4780243971973514e-19 - syst_JES_EtaIntercalibration_Stat31: 1.013990792611057e-06 - syst_JES_EtaIntercalibration_Stat32: 6.239175666704697e-16 - syst_JES_EtaIntercalibration_Stat33: 6.184291097124347e-12 - syst_JES_EtaIntercalibration_Stat34: 6.343640262747979e-12 - syst_JES_EtaIntercalibration_Stat35: 1.5447553699362886e-18 + syst_JES_EtaIntercalibration_Stat30: 3.47802440e-19 + syst_JES_EtaIntercalibration_Stat31: 1.01399079e-06 + syst_JES_EtaIntercalibration_Stat32: 6.23917567e-16 + syst_JES_EtaIntercalibration_Stat33: 6.18429110e-12 + syst_JES_EtaIntercalibration_Stat34: 6.34364026e-12 + syst_JES_EtaIntercalibration_Stat35: 1.54475537e-18 syst_JES_EtaIntercalibration_Stat36: 0.0 syst_JES_EtaIntercalibration_Stat37: 0.0 syst_JES_EtaIntercalibration_Stat38: 0.0 @@ -8970,215 +8970,215 @@ bins: syst_JES_EtaIntercalibration_Stat5: 0.0 syst_JES_EtaIntercalibration_Stat50: 0.0 syst_JES_EtaIntercalibration_Stat51: 0.0 - syst_JES_EtaIntercalibration_Stat52: 5.763265432270146e-19 - syst_JES_EtaIntercalibration_Stat53: 2.198273787332915e-15 - syst_JES_EtaIntercalibration_Stat54: 5.701910766037135e-07 - syst_JES_EtaIntercalibration_Stat55: 6.208927170932702e-12 - syst_JES_EtaIntercalibration_Stat56: 6.351505716880768e-12 - syst_JES_EtaIntercalibration_Stat57: 6.934967051111347e-18 + syst_JES_EtaIntercalibration_Stat52: 5.76326543e-19 + syst_JES_EtaIntercalibration_Stat53: 2.19827379e-15 + syst_JES_EtaIntercalibration_Stat54: 5.70191077e-07 + syst_JES_EtaIntercalibration_Stat55: 6.20892717e-12 + syst_JES_EtaIntercalibration_Stat56: 6.35150572e-12 + syst_JES_EtaIntercalibration_Stat57: 6.93496705e-18 syst_JES_EtaIntercalibration_Stat58: 0.0 syst_JES_EtaIntercalibration_Stat59: 0.0 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 1.362257960152922e-20 - syst_JES_EtaIntercalibration_Stat62: 1.362257960152922e-20 + syst_JES_EtaIntercalibration_Stat61: 1.36225796e-20 + syst_JES_EtaIntercalibration_Stat62: 1.36225796e-20 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 3.23287283232731e-19 - syst_JES_EtaIntercalibration_Stat69: 3.23287283232731e-19 + syst_JES_EtaIntercalibration_Stat68: 3.23287283e-19 + syst_JES_EtaIntercalibration_Stat69: 3.23287283e-19 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 2.8985870264665163e-19 - syst_JES_EtaIntercalibration_Stat71: 2.8985870264665163e-19 + syst_JES_EtaIntercalibration_Stat70: 2.89858703e-19 + syst_JES_EtaIntercalibration_Stat71: 2.89858703e-19 syst_JES_EtaIntercalibration_Stat72: 0.0 syst_JES_EtaIntercalibration_Stat73: 0.0 - syst_JES_EtaIntercalibration_Stat74: 1.4335113264117414e-15 - syst_JES_EtaIntercalibration_Stat75: 5.418808978917784e-07 - syst_JES_EtaIntercalibration_Stat76: 1.7078013789064087e-07 - syst_JES_EtaIntercalibration_Stat77: 2.952170853795559e-07 - syst_JES_EtaIntercalibration_Stat78: 3.4335312766301554e-07 - syst_JES_EtaIntercalibration_Stat79: 5.059957583814314e-18 + syst_JES_EtaIntercalibration_Stat74: 1.43351133e-15 + syst_JES_EtaIntercalibration_Stat75: 5.41880898e-07 + syst_JES_EtaIntercalibration_Stat76: 1.70780138e-07 + syst_JES_EtaIntercalibration_Stat77: 2.95217085e-07 + syst_JES_EtaIntercalibration_Stat78: 3.43353128e-07 + syst_JES_EtaIntercalibration_Stat79: 5.05995758e-18 syst_JES_EtaIntercalibration_Stat8: 0.0 syst_JES_EtaIntercalibration_Stat80: 0.0 syst_JES_EtaIntercalibration_Stat81: 0.0 - syst_JES_EtaIntercalibration_Stat82: 1.362257960152922e-20 - syst_JES_EtaIntercalibration_Stat83: 1.362257960152922e-20 - syst_JES_EtaIntercalibration_Stat84: 1.362257960152922e-20 + syst_JES_EtaIntercalibration_Stat82: 1.36225796e-20 + syst_JES_EtaIntercalibration_Stat83: 1.36225796e-20 + syst_JES_EtaIntercalibration_Stat84: 1.36225796e-20 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 3.23287283232731e-19 - syst_JES_EtaIntercalibration_Stat9: 1.4314637856666162e-15 - syst_JES_EtaIntercalibration_Stat90: 3.23287283232731e-19 - syst_JES_EtaIntercalibration_Stat91: 2.8985870264665163e-19 - syst_JES_EtaIntercalibration_Stat92: 2.8985870264665163e-19 + syst_JES_EtaIntercalibration_Stat89: 3.23287283e-19 + syst_JES_EtaIntercalibration_Stat9: 1.43146379e-15 + syst_JES_EtaIntercalibration_Stat90: 3.23287283e-19 + syst_JES_EtaIntercalibration_Stat91: 2.89858703e-19 + syst_JES_EtaIntercalibration_Stat92: 2.89858703e-19 syst_JES_EtaIntercalibration_Stat93: 0.0 syst_JES_EtaIntercalibration_Stat94: 0.0 - syst_JES_EtaIntercalibration_Stat95: 1.4335876740105573e-15 - syst_JES_EtaIntercalibration_Stat96: 4.7224064575171846e-07 - syst_JES_EtaIntercalibration_Stat97: 1.7017500426032019e-07 - syst_JES_EtaIntercalibration_Stat98: 4.378596773796372e-07 - syst_JES_EtaIntercalibration_Stat99: 3.472783004420338e-09 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0010992579167329202 - syst_JES_Flavour_Comp: 0.0029215719655692205 - syst_JES_Flavour_Response: 0.0003723857777896465 - syst_JES_Gjet_Generator: 0.003904517000539247 - syst_JES_Gjet_OOC: 0.003213124491830343 - syst_JES_Gjet_Purity: 0.0005958998468702605 - syst_JES_Gjet_Stat1: 7.562288939203527e-06 - syst_JES_Gjet_Stat10: 6.116820988062345e-05 - syst_JES_Gjet_Stat11: 6.651767941682873e-05 - syst_JES_Gjet_Stat12: 0.00021739859130178374 - syst_JES_Gjet_Stat13: 0.0006786003684054407 - syst_JES_Gjet_Stat14: 0.001795002228410873 - syst_JES_Gjet_Stat15: 0.0015390233916350979 - syst_JES_Gjet_Stat2: 9.293940552854854e-06 - syst_JES_Gjet_Stat3: 6.080364051600858e-06 - syst_JES_Gjet_Stat4: 1.2033512984577697e-05 - syst_JES_Gjet_Stat5: 1.1566348948566268e-05 - syst_JES_Gjet_Stat6: 2.854591170377993e-05 - syst_JES_Gjet_Stat7: 3.59803956064966e-05 - syst_JES_Gjet_Stat8: 2.2922253379630894e-05 - syst_JES_Gjet_Stat9: 4.175334088429332e-05 - syst_JES_Gjet_Veto: 0.0032061247636360007 - syst_JES_Gjet_dPhi: 0.0003122141252409955 - syst_JES_LArESZee: 0.006019983471738107 - syst_JES_LArEsmear: 0.0004854506231327755 - syst_JES_LAr_JVT: 0.0006076 - syst_JES_MJB_Alpha: 2.808041844417565e-05 - syst_JES_MJB_Asym: 0.0005602001606568853 - syst_JES_MJB_Beta: 3.884476895284615e-05 - syst_JES_MJB_Fragmentation: 0.0003981111241851953 - syst_JES_MJB_Stat1: 2.022510074140547e-06 - syst_JES_MJB_Stat10: 5.4553578251110167e-05 - syst_JES_MJB_Stat11: 5.454732326154969e-05 - syst_JES_MJB_Stat12: 5.4724478983358076e-05 - syst_JES_MJB_Stat13: 3.494229636128685e-05 - syst_JES_MJB_Stat14: 1.7905979448217852e-05 - syst_JES_MJB_Stat15: 4.285638808859188e-05 - syst_JES_MJB_Stat16: 3.703369642298754e-05 - syst_JES_MJB_Stat2: 2.7087061486990426e-06 - syst_JES_MJB_Stat3: 1.2739441235784246e-05 - syst_JES_MJB_Stat4: 1.1178407847274137e-05 - syst_JES_MJB_Stat5: 1.5635264852249865e-05 - syst_JES_MJB_Stat6: 1.8960133833915834e-05 - syst_JES_MJB_Stat7: 2.090646311550569e-05 - syst_JES_MJB_Stat8: 3.104799631216159e-05 - syst_JES_MJB_Stat9: 4.511684912535449e-05 - syst_JES_MJB_Threshold: 0.0003816563022864944 - syst_JES_Pileup_MuOffset: 0.0007502000133297785 - syst_JES_Pileup_NPVOffset: 0.000776258376766396 - syst_JES_Pileup_Pt_term: 0.0004773566486391491 - syst_JES_Pileup_Rho_topology: 0.0010877603182686893 - syst_JES_PunchThrough_MC15: 0.00045555066403200423 - syst_JES_SingleParticle_HighPt: 3.7865869526527446e-12 - syst_JES_Zjet_MC: 0.0015705078000443043 - syst_JES_Zjet_MuScale: 0.00011161174534967187 - syst_JES_Zjet_MuSmearID: 2.4220103220258992e-05 - syst_JES_Zjet_MuSmearMS: 0.00043000753481770525 - syst_JES_Zjet_OOC: 0.0008685166262081573 - syst_JES_Zjet_Stat1: 4.45464611389053e-05 - syst_JES_Zjet_Stat10: 7.314238306207968e-05 - syst_JES_Zjet_Stat11: 9.110560616668987e-05 - syst_JES_Zjet_Stat12: 0.0002749105127127735 - syst_JES_Zjet_Stat13: 0.00046395000538851166 - syst_JES_Zjet_Stat2: 1.6275750881295772e-16 - syst_JES_Zjet_Stat3: 3.24380189746538e-05 - syst_JES_Zjet_Stat4: 2.6271842341183458e-05 - syst_JES_Zjet_Stat5: 3.926395643589678e-05 - syst_JES_Zjet_Stat6: 3.276256209456153e-05 - syst_JES_Zjet_Stat7: 3.2196063035719136e-05 - syst_JES_Zjet_Stat8: 3.409585635748133e-05 - syst_JES_Zjet_Stat9: 4.243385875394789e-05 - syst_JES_Zjet_Veto: 0.00018758466755041577 - syst_JES_Zjet_dPhi: 0.00016819997027348133 - syst_PRW: 9.885e-05 - syst_Unfolding_bias: 1.623e-05 - syst_cleaning: 0.001107646491440297 + syst_JES_EtaIntercalibration_Stat95: 1.43358767e-15 + syst_JES_EtaIntercalibration_Stat96: 4.72240646e-07 + syst_JES_EtaIntercalibration_Stat97: 1.70175004e-07 + syst_JES_EtaIntercalibration_Stat98: 4.37859677e-07 + syst_JES_EtaIntercalibration_Stat99: 3.47278300e-09 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.09925792e-03 + syst_JES_Flavour_Comp: 2.92157197e-03 + syst_JES_Flavour_Response: 3.72385778e-04 + syst_JES_Gjet_Generator: 3.90451700e-03 + syst_JES_Gjet_OOC: 3.21312449e-03 + syst_JES_Gjet_Purity: 5.95899847e-04 + syst_JES_Gjet_Stat1: 7.56228894e-06 + syst_JES_Gjet_Stat10: 6.11682099e-05 + syst_JES_Gjet_Stat11: 6.65176794e-05 + syst_JES_Gjet_Stat12: 2.17398591e-04 + syst_JES_Gjet_Stat13: 6.78600368e-04 + syst_JES_Gjet_Stat14: 1.79500223e-03 + syst_JES_Gjet_Stat15: 1.53902339e-03 + syst_JES_Gjet_Stat2: 9.29394055e-06 + syst_JES_Gjet_Stat3: 6.08036405e-06 + syst_JES_Gjet_Stat4: 1.20335130e-05 + syst_JES_Gjet_Stat5: 1.15663489e-05 + syst_JES_Gjet_Stat6: 2.85459117e-05 + syst_JES_Gjet_Stat7: 3.59803956e-05 + syst_JES_Gjet_Stat8: 2.29222534e-05 + syst_JES_Gjet_Stat9: 4.17533409e-05 + syst_JES_Gjet_Veto: 3.20612476e-03 + syst_JES_Gjet_dPhi: 3.12214125e-04 + syst_JES_LArESZee: 6.01998347e-03 + syst_JES_LArEsmear: 4.85450623e-04 + syst_JES_LAr_JVT: 6.07600000e-04 + syst_JES_MJB_Alpha: 2.80804184e-05 + syst_JES_MJB_Asym: 5.60200161e-04 + syst_JES_MJB_Beta: 3.88447690e-05 + syst_JES_MJB_Fragmentation: 3.98111124e-04 + syst_JES_MJB_Stat1: 2.02251007e-06 + syst_JES_MJB_Stat10: 5.45535783e-05 + syst_JES_MJB_Stat11: 5.45473233e-05 + syst_JES_MJB_Stat12: 5.47244790e-05 + syst_JES_MJB_Stat13: 3.49422964e-05 + syst_JES_MJB_Stat14: 1.79059794e-05 + syst_JES_MJB_Stat15: 4.28563881e-05 + syst_JES_MJB_Stat16: 3.70336964e-05 + syst_JES_MJB_Stat2: 2.70870615e-06 + syst_JES_MJB_Stat3: 1.27394412e-05 + syst_JES_MJB_Stat4: 1.11784078e-05 + syst_JES_MJB_Stat5: 1.56352649e-05 + syst_JES_MJB_Stat6: 1.89601338e-05 + syst_JES_MJB_Stat7: 2.09064631e-05 + syst_JES_MJB_Stat8: 3.10479963e-05 + syst_JES_MJB_Stat9: 4.51168491e-05 + syst_JES_MJB_Threshold: 3.81656302e-04 + syst_JES_Pileup_MuOffset: 7.50200013e-04 + syst_JES_Pileup_NPVOffset: 7.76258377e-04 + syst_JES_Pileup_Pt_term: 4.77356649e-04 + syst_JES_Pileup_Rho_topology: 1.08776032e-03 + syst_JES_PunchThrough_MC15: 4.55550664e-04 + syst_JES_SingleParticle_HighPt: 3.78658695e-12 + syst_JES_Zjet_MC: 1.57050780e-03 + syst_JES_Zjet_MuScale: 1.11611745e-04 + syst_JES_Zjet_MuSmearID: 2.42201032e-05 + syst_JES_Zjet_MuSmearMS: 4.30007535e-04 + syst_JES_Zjet_OOC: 8.68516626e-04 + syst_JES_Zjet_Stat1: 4.45464611e-05 + syst_JES_Zjet_Stat10: 7.31423831e-05 + syst_JES_Zjet_Stat11: 9.11056062e-05 + syst_JES_Zjet_Stat12: 2.74910513e-04 + syst_JES_Zjet_Stat13: 4.63950005e-04 + syst_JES_Zjet_Stat2: 1.62757509e-16 + syst_JES_Zjet_Stat3: 3.24380190e-05 + syst_JES_Zjet_Stat4: 2.62718423e-05 + syst_JES_Zjet_Stat5: 3.92639564e-05 + syst_JES_Zjet_Stat6: 3.27625621e-05 + syst_JES_Zjet_Stat7: 3.21960630e-05 + syst_JES_Zjet_Stat8: 3.40958564e-05 + syst_JES_Zjet_Stat9: 4.24338588e-05 + syst_JES_Zjet_Veto: 1.87584668e-04 + syst_JES_Zjet_dPhi: 1.68199970e-04 + syst_PRW: 9.88500000e-05 + syst_Unfolding_bias: 1.62300000e-05 + syst_cleaning: 1.10764649e-03 syst_lumi: 0.003764 -- stat: 0.0008211 +- stat: 8.21100000e-04 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.0002779044215193418 - syst_JER_NP1: 2.5961883598845443e-05 - syst_JER_NP2: 0.0001141021042750746 - syst_JER_NP3: 3.1355171822205024e-05 - syst_JER_NP4: 4.996009682736814e-05 - syst_JER_NP5: 3.2816771424837026e-05 - syst_JER_NP6: 3.7440010683759156e-05 - syst_JER_NP7: 3.4415622542676747e-05 - syst_JER_NP8: 7.862167687730909e-05 - syst_JES_EtaIntercalibration_Modelling: 0.0015490006455776576 + syst_JER_NP0: 2.77904422e-04 + syst_JER_NP1: 2.59618836e-05 + syst_JER_NP2: 1.14102104e-04 + syst_JER_NP3: 3.13551718e-05 + syst_JER_NP4: 4.99600968e-05 + syst_JER_NP5: 3.28167714e-05 + syst_JER_NP6: 3.74400107e-05 + syst_JER_NP7: 3.44156225e-05 + syst_JER_NP8: 7.86216769e-05 + syst_JES_EtaIntercalibration_Modelling: 1.54900065e-03 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 - syst_JES_EtaIntercalibration_Stat10: 2.356524412667944e-18 - syst_JES_EtaIntercalibration_Stat100: 8.29822192219514e-17 + syst_JES_EtaIntercalibration_Stat10: 2.35652441e-18 + syst_JES_EtaIntercalibration_Stat100: 8.29822192e-17 syst_JES_EtaIntercalibration_Stat101: 0.0 syst_JES_EtaIntercalibration_Stat102: 0.0 - syst_JES_EtaIntercalibration_Stat103: 3.998439289272754e-21 - syst_JES_EtaIntercalibration_Stat104: 3.998439289272754e-21 - syst_JES_EtaIntercalibration_Stat105: 3.998439289272754e-21 + syst_JES_EtaIntercalibration_Stat103: 3.99843929e-21 + syst_JES_EtaIntercalibration_Stat104: 3.99843929e-21 + syst_JES_EtaIntercalibration_Stat105: 3.99843929e-21 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 8.73126812095471e-20 - syst_JES_EtaIntercalibration_Stat11: 8.27833683477545e-17 - syst_JES_EtaIntercalibration_Stat110: 8.545900638317766e-20 - syst_JES_EtaIntercalibration_Stat111: 7.972629867239542e-20 - syst_JES_EtaIntercalibration_Stat112: 7.972629867239542e-20 + syst_JES_EtaIntercalibration_Stat109: 8.73126812e-20 + syst_JES_EtaIntercalibration_Stat11: 8.27833683e-17 + syst_JES_EtaIntercalibration_Stat110: 8.54590064e-20 + syst_JES_EtaIntercalibration_Stat111: 7.97262987e-20 + syst_JES_EtaIntercalibration_Stat112: 7.97262987e-20 syst_JES_EtaIntercalibration_Stat113: 0.0 - syst_JES_EtaIntercalibration_Stat114: 9.712474903442479e-20 - syst_JES_EtaIntercalibration_Stat115: 5.609969070101902e-15 - syst_JES_EtaIntercalibration_Stat116: 3.116115471223748e-07 - syst_JES_EtaIntercalibration_Stat117: 3.622837389395223e-07 - syst_JES_EtaIntercalibration_Stat118: 1.3254707654263824e-06 - syst_JES_EtaIntercalibration_Stat119: 6.741523868347571e-07 - syst_JES_EtaIntercalibration_Stat12: 1.0222562589750706e-12 - syst_JES_EtaIntercalibration_Stat120: 1.0453052405487876e-12 - syst_JES_EtaIntercalibration_Stat121: 3.9897790352349084e-19 + syst_JES_EtaIntercalibration_Stat114: 9.71247490e-20 + syst_JES_EtaIntercalibration_Stat115: 5.60996907e-15 + syst_JES_EtaIntercalibration_Stat116: 3.11611547e-07 + syst_JES_EtaIntercalibration_Stat117: 3.62283739e-07 + syst_JES_EtaIntercalibration_Stat118: 1.32547077e-06 + syst_JES_EtaIntercalibration_Stat119: 6.74152387e-07 + syst_JES_EtaIntercalibration_Stat12: 1.02225626e-12 + syst_JES_EtaIntercalibration_Stat120: 1.04530524e-12 + syst_JES_EtaIntercalibration_Stat121: 3.98977904e-19 syst_JES_EtaIntercalibration_Stat122: 0.0 - syst_JES_EtaIntercalibration_Stat123: 3.998439289272754e-21 - syst_JES_EtaIntercalibration_Stat124: 3.998439289272754e-21 - syst_JES_EtaIntercalibration_Stat125: 3.998439289272754e-21 + syst_JES_EtaIntercalibration_Stat123: 3.99843929e-21 + syst_JES_EtaIntercalibration_Stat124: 3.99843929e-21 + syst_JES_EtaIntercalibration_Stat125: 3.99843929e-21 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 8.73126812095471e-20 - syst_JES_EtaIntercalibration_Stat129: 8.545900638317766e-20 + syst_JES_EtaIntercalibration_Stat128: 8.73126812e-20 + syst_JES_EtaIntercalibration_Stat129: 8.54590064e-20 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 6.152244468484652e-21 + syst_JES_EtaIntercalibration_Stat130: 6.15224447e-21 syst_JES_EtaIntercalibration_Stat131: 0.0 syst_JES_EtaIntercalibration_Stat132: 0.0 - syst_JES_EtaIntercalibration_Stat133: 9.712474903442479e-20 - syst_JES_EtaIntercalibration_Stat134: 6.49085816153709e-07 - syst_JES_EtaIntercalibration_Stat135: 4.622869103706052e-07 - syst_JES_EtaIntercalibration_Stat136: 7.610592010481182e-07 - syst_JES_EtaIntercalibration_Stat137: 6.048382263051832e-07 - syst_JES_EtaIntercalibration_Stat138: 5.048408858244348e-07 - syst_JES_EtaIntercalibration_Stat139: 5.373800267966795e-15 + syst_JES_EtaIntercalibration_Stat133: 9.71247490e-20 + syst_JES_EtaIntercalibration_Stat134: 6.49085816e-07 + syst_JES_EtaIntercalibration_Stat135: 4.62286910e-07 + syst_JES_EtaIntercalibration_Stat136: 7.61059201e-07 + syst_JES_EtaIntercalibration_Stat137: 6.04838226e-07 + syst_JES_EtaIntercalibration_Stat138: 5.04840886e-07 + syst_JES_EtaIntercalibration_Stat139: 5.37380027e-15 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 3.9897790352349084e-19 + syst_JES_EtaIntercalibration_Stat140: 3.98977904e-19 syst_JES_EtaIntercalibration_Stat141: 0.0 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 3.998439289272754e-21 - syst_JES_EtaIntercalibration_Stat144: 3.998439289272754e-21 + syst_JES_EtaIntercalibration_Stat143: 3.99843929e-21 + syst_JES_EtaIntercalibration_Stat144: 3.99843929e-21 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 6.152244468484652e-21 - syst_JES_EtaIntercalibration_Stat148: 6.152244468484652e-21 + syst_JES_EtaIntercalibration_Stat147: 6.15224447e-21 + syst_JES_EtaIntercalibration_Stat148: 6.15224447e-21 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 syst_JES_EtaIntercalibration_Stat150: 0.0 syst_JES_EtaIntercalibration_Stat151: 0.0 - syst_JES_EtaIntercalibration_Stat152: 2.8942568994510904e-07 - syst_JES_EtaIntercalibration_Stat153: 6.389893895832699e-07 - syst_JES_EtaIntercalibration_Stat154: 9.923878425293208e-07 - syst_JES_EtaIntercalibration_Stat155: 5.846832133728486e-07 - syst_JES_EtaIntercalibration_Stat156: 9.22124427612673e-07 - syst_JES_EtaIntercalibration_Stat157: 1.9458583266003717e-12 + syst_JES_EtaIntercalibration_Stat152: 2.89425690e-07 + syst_JES_EtaIntercalibration_Stat153: 6.38989390e-07 + syst_JES_EtaIntercalibration_Stat154: 9.92387843e-07 + syst_JES_EtaIntercalibration_Stat155: 5.84683213e-07 + syst_JES_EtaIntercalibration_Stat156: 9.22124428e-07 + syst_JES_EtaIntercalibration_Stat157: 1.94585833e-12 syst_JES_EtaIntercalibration_Stat158: 0.0 syst_JES_EtaIntercalibration_Stat159: 0.0 syst_JES_EtaIntercalibration_Stat16: 0.0 @@ -9187,18 +9187,18 @@ bins: syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 6.152244468484652e-21 + syst_JES_EtaIntercalibration_Stat165: 6.15224447e-21 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 1.5357995661869424e-06 - syst_JES_EtaIntercalibration_Stat171: 9.725737542726515e-07 - syst_JES_EtaIntercalibration_Stat172: 1.8244297739293776e-06 - syst_JES_EtaIntercalibration_Stat173: 2.472103865131884e-06 - syst_JES_EtaIntercalibration_Stat174: 1.23611038342051e-06 - syst_JES_EtaIntercalibration_Stat175: 6.3991024370609976e-12 + syst_JES_EtaIntercalibration_Stat170: 1.53579957e-06 + syst_JES_EtaIntercalibration_Stat171: 9.72573754e-07 + syst_JES_EtaIntercalibration_Stat172: 1.82442977e-06 + syst_JES_EtaIntercalibration_Stat173: 2.47210387e-06 + syst_JES_EtaIntercalibration_Stat174: 1.23611038e-06 + syst_JES_EtaIntercalibration_Stat175: 6.39910244e-12 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 syst_JES_EtaIntercalibration_Stat178: 0.0 @@ -9211,14 +9211,14 @@ bins: syst_JES_EtaIntercalibration_Stat184: 0.0 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 - syst_JES_EtaIntercalibration_Stat187: 3.549120199077512e-07 - syst_JES_EtaIntercalibration_Stat188: 6.364216899980704e-06 - syst_JES_EtaIntercalibration_Stat189: 7.74654185750003e-06 + syst_JES_EtaIntercalibration_Stat187: 3.54912020e-07 + syst_JES_EtaIntercalibration_Stat188: 6.36421690e-06 + syst_JES_EtaIntercalibration_Stat189: 7.74654186e-06 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 1.0237062310545931e-05 - syst_JES_EtaIntercalibration_Stat191: 7.717358016186627e-06 - syst_JES_EtaIntercalibration_Stat192: 4.790303017555361e-07 - syst_JES_EtaIntercalibration_Stat193: 1.0588892612072331e-12 + syst_JES_EtaIntercalibration_Stat190: 1.02370623e-05 + syst_JES_EtaIntercalibration_Stat191: 7.71735802e-06 + syst_JES_EtaIntercalibration_Stat192: 4.79030302e-07 + syst_JES_EtaIntercalibration_Stat193: 1.05888926e-12 syst_JES_EtaIntercalibration_Stat194: 0.0 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 @@ -9229,13 +9229,13 @@ bins: syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 syst_JES_EtaIntercalibration_Stat201: 0.0 - syst_JES_EtaIntercalibration_Stat202: 4.5296119171514016e-07 - syst_JES_EtaIntercalibration_Stat203: 1.2933777522440998e-05 - syst_JES_EtaIntercalibration_Stat204: 2.0017099565121815e-05 - syst_JES_EtaIntercalibration_Stat205: 2.1601112818556362e-05 - syst_JES_EtaIntercalibration_Stat206: 1.6695325693139384e-05 - syst_JES_EtaIntercalibration_Stat207: 6.966399841381487e-07 - syst_JES_EtaIntercalibration_Stat208: 1.0588892612072331e-12 + syst_JES_EtaIntercalibration_Stat202: 4.52961192e-07 + syst_JES_EtaIntercalibration_Stat203: 1.29337775e-05 + syst_JES_EtaIntercalibration_Stat204: 2.00170996e-05 + syst_JES_EtaIntercalibration_Stat205: 2.16011128e-05 + syst_JES_EtaIntercalibration_Stat206: 1.66953257e-05 + syst_JES_EtaIntercalibration_Stat207: 6.96639984e-07 + syst_JES_EtaIntercalibration_Stat208: 1.05888926e-12 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 @@ -9243,38 +9243,38 @@ bins: syst_JES_EtaIntercalibration_Stat212: 0.0 syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 - syst_JES_EtaIntercalibration_Stat215: 5.675337170600527e-07 - syst_JES_EtaIntercalibration_Stat216: 1.630148076096156e-05 - syst_JES_EtaIntercalibration_Stat217: 2.279708917822624e-05 - syst_JES_EtaIntercalibration_Stat218: 2.6310279359976396e-05 - syst_JES_EtaIntercalibration_Stat219: 1.996492111179005e-05 + syst_JES_EtaIntercalibration_Stat215: 5.67533717e-07 + syst_JES_EtaIntercalibration_Stat216: 1.63014808e-05 + syst_JES_EtaIntercalibration_Stat217: 2.27970892e-05 + syst_JES_EtaIntercalibration_Stat218: 2.63102794e-05 + syst_JES_EtaIntercalibration_Stat219: 1.99649211e-05 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 5.08363316806986e-07 + syst_JES_EtaIntercalibration_Stat220: 5.08363317e-07 syst_JES_EtaIntercalibration_Stat221: 0.0 syst_JES_EtaIntercalibration_Stat222: 0.0 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 - syst_JES_EtaIntercalibration_Stat227: 9.974370293406997e-07 - syst_JES_EtaIntercalibration_Stat228: 4.8913824988442684e-05 - syst_JES_EtaIntercalibration_Stat229: 7.951369378918326e-05 + syst_JES_EtaIntercalibration_Stat227: 9.97437029e-07 + syst_JES_EtaIntercalibration_Stat228: 4.89138250e-05 + syst_JES_EtaIntercalibration_Stat229: 7.95136938e-05 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 7.440493532017887e-05 - syst_JES_EtaIntercalibration_Stat231: 6.833104565276314e-05 - syst_JES_EtaIntercalibration_Stat232: 2.637155806925332e-07 + syst_JES_EtaIntercalibration_Stat230: 7.44049353e-05 + syst_JES_EtaIntercalibration_Stat231: 6.83310457e-05 + syst_JES_EtaIntercalibration_Stat232: 2.63715581e-07 syst_JES_EtaIntercalibration_Stat233: 0.0 syst_JES_EtaIntercalibration_Stat234: 0.0 syst_JES_EtaIntercalibration_Stat235: 0.0 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 - syst_JES_EtaIntercalibration_Stat238: 2.876616963670172e-07 - syst_JES_EtaIntercalibration_Stat239: 6.345235850620527e-06 + syst_JES_EtaIntercalibration_Stat238: 2.87661696e-07 + syst_JES_EtaIntercalibration_Stat239: 6.34523585e-06 syst_JES_EtaIntercalibration_Stat24: 0.0 - syst_JES_EtaIntercalibration_Stat240: 7.926733059716341e-06 - syst_JES_EtaIntercalibration_Stat241: 1.15021124472855e-05 - syst_JES_EtaIntercalibration_Stat242: 6.788195397158217e-06 - syst_JES_EtaIntercalibration_Stat243: 1.794404636641357e-07 + syst_JES_EtaIntercalibration_Stat240: 7.92673306e-06 + syst_JES_EtaIntercalibration_Stat241: 1.15021124e-05 + syst_JES_EtaIntercalibration_Stat242: 6.78819540e-06 + syst_JES_EtaIntercalibration_Stat243: 1.79440464e-07 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 syst_JES_EtaIntercalibration_Stat25: 0.0 @@ -9283,12 +9283,12 @@ bins: syst_JES_EtaIntercalibration_Stat28: 0.0 syst_JES_EtaIntercalibration_Stat29: 0.0 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 9.295893403406691e-20 - syst_JES_EtaIntercalibration_Stat31: 6.134730474927159e-07 - syst_JES_EtaIntercalibration_Stat32: 1.0367608535723175e-16 - syst_JES_EtaIntercalibration_Stat33: 1.0232963936501618e-12 - syst_JES_EtaIntercalibration_Stat34: 1.0509227197902877e-12 - syst_JES_EtaIntercalibration_Stat35: 3.844519977555976e-19 + syst_JES_EtaIntercalibration_Stat30: 9.29589340e-20 + syst_JES_EtaIntercalibration_Stat31: 6.13473047e-07 + syst_JES_EtaIntercalibration_Stat32: 1.03676085e-16 + syst_JES_EtaIntercalibration_Stat33: 1.02329639e-12 + syst_JES_EtaIntercalibration_Stat34: 1.05092272e-12 + syst_JES_EtaIntercalibration_Stat35: 3.84451998e-19 syst_JES_EtaIntercalibration_Stat36: 0.0 syst_JES_EtaIntercalibration_Stat37: 0.0 syst_JES_EtaIntercalibration_Stat38: 0.0 @@ -9307,215 +9307,215 @@ bins: syst_JES_EtaIntercalibration_Stat5: 0.0 syst_JES_EtaIntercalibration_Stat50: 0.0 syst_JES_EtaIntercalibration_Stat51: 0.0 - syst_JES_EtaIntercalibration_Stat52: 1.1217430555612992e-19 - syst_JES_EtaIntercalibration_Stat53: 4.1359959496678366e-16 - syst_JES_EtaIntercalibration_Stat54: 4.5206525239523847e-07 - syst_JES_EtaIntercalibration_Stat55: 1.0274380100352138e-12 - syst_JES_EtaIntercalibration_Stat56: 1.0522345697205784e-12 - syst_JES_EtaIntercalibration_Stat57: 1.5783818002942128e-18 + syst_JES_EtaIntercalibration_Stat52: 1.12174306e-19 + syst_JES_EtaIntercalibration_Stat53: 4.13599595e-16 + syst_JES_EtaIntercalibration_Stat54: 4.52065252e-07 + syst_JES_EtaIntercalibration_Stat55: 1.02743801e-12 + syst_JES_EtaIntercalibration_Stat56: 1.05223457e-12 + syst_JES_EtaIntercalibration_Stat57: 1.57838180e-18 syst_JES_EtaIntercalibration_Stat58: 0.0 syst_JES_EtaIntercalibration_Stat59: 0.0 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 3.998439289272754e-21 - syst_JES_EtaIntercalibration_Stat62: 3.998439289272754e-21 + syst_JES_EtaIntercalibration_Stat61: 3.99843929e-21 + syst_JES_EtaIntercalibration_Stat62: 3.99843929e-21 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 8.73126812095471e-20 - syst_JES_EtaIntercalibration_Stat69: 8.73126812095471e-20 + syst_JES_EtaIntercalibration_Stat68: 8.73126812e-20 + syst_JES_EtaIntercalibration_Stat69: 8.73126812e-20 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 7.972629867239542e-20 - syst_JES_EtaIntercalibration_Stat71: 7.972629867239542e-20 + syst_JES_EtaIntercalibration_Stat70: 7.97262987e-20 + syst_JES_EtaIntercalibration_Stat71: 7.97262987e-20 syst_JES_EtaIntercalibration_Stat72: 0.0 syst_JES_EtaIntercalibration_Stat73: 0.0 - syst_JES_EtaIntercalibration_Stat74: 2.7750219147242783e-16 - syst_JES_EtaIntercalibration_Stat75: 4.576344771758352e-07 - syst_JES_EtaIntercalibration_Stat76: 1.1341467474371262e-07 - syst_JES_EtaIntercalibration_Stat77: 2.131452112410692e-07 - syst_JES_EtaIntercalibration_Stat78: 2.3131539126289094e-07 - syst_JES_EtaIntercalibration_Stat79: 1.0052479644346465e-18 + syst_JES_EtaIntercalibration_Stat74: 2.77502191e-16 + syst_JES_EtaIntercalibration_Stat75: 4.57634477e-07 + syst_JES_EtaIntercalibration_Stat76: 1.13414675e-07 + syst_JES_EtaIntercalibration_Stat77: 2.13145211e-07 + syst_JES_EtaIntercalibration_Stat78: 2.31315391e-07 + syst_JES_EtaIntercalibration_Stat79: 1.00524796e-18 syst_JES_EtaIntercalibration_Stat8: 0.0 syst_JES_EtaIntercalibration_Stat80: 0.0 syst_JES_EtaIntercalibration_Stat81: 0.0 - syst_JES_EtaIntercalibration_Stat82: 3.998439289272754e-21 - syst_JES_EtaIntercalibration_Stat83: 3.998439289272754e-21 - syst_JES_EtaIntercalibration_Stat84: 3.998439289272754e-21 + syst_JES_EtaIntercalibration_Stat82: 3.99843929e-21 + syst_JES_EtaIntercalibration_Stat83: 3.99843929e-21 + syst_JES_EtaIntercalibration_Stat84: 3.99843929e-21 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 8.73126812095471e-20 - syst_JES_EtaIntercalibration_Stat9: 2.7687058280858858e-16 - syst_JES_EtaIntercalibration_Stat90: 8.73126812095471e-20 - syst_JES_EtaIntercalibration_Stat91: 7.972629867239542e-20 - syst_JES_EtaIntercalibration_Stat92: 7.972629867239542e-20 + syst_JES_EtaIntercalibration_Stat89: 8.73126812e-20 + syst_JES_EtaIntercalibration_Stat9: 2.76870583e-16 + syst_JES_EtaIntercalibration_Stat90: 8.73126812e-20 + syst_JES_EtaIntercalibration_Stat91: 7.97262987e-20 + syst_JES_EtaIntercalibration_Stat92: 7.97262987e-20 syst_JES_EtaIntercalibration_Stat93: 0.0 syst_JES_EtaIntercalibration_Stat94: 0.0 - syst_JES_EtaIntercalibration_Stat95: 2.775247137080768e-16 - syst_JES_EtaIntercalibration_Stat96: 4.4023774608159167e-07 - syst_JES_EtaIntercalibration_Stat97: 1.1303392886651335e-07 - syst_JES_EtaIntercalibration_Stat98: 2.9269360635312826e-07 - syst_JES_EtaIntercalibration_Stat99: 6.992593847825051e-10 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0007911526575193943 - syst_JES_Flavour_Comp: 0.0020865010783606124 - syst_JES_Flavour_Response: 0.00011897788733626094 - syst_JES_Gjet_Generator: 0.0026650844264300517 - syst_JES_Gjet_OOC: 0.0022010040890466332 - syst_JES_Gjet_Purity: 0.00039979953414179964 - syst_JES_Gjet_Stat1: 5.260222880258973e-06 - syst_JES_Gjet_Stat10: 4.050550668736289e-05 - syst_JES_Gjet_Stat11: 4.154443341772758e-05 - syst_JES_Gjet_Stat12: 0.0001457664827729612 - syst_JES_Gjet_Stat13: 0.00045165403518622525 - syst_JES_Gjet_Stat14: 0.0012065572126923778 - syst_JES_Gjet_Stat15: 0.0013007520930215719 - syst_JES_Gjet_Stat2: 6.584404073262819e-06 - syst_JES_Gjet_Stat3: 4.087052085550171e-06 - syst_JES_Gjet_Stat4: 7.724750400498388e-06 - syst_JES_Gjet_Stat5: 8.453824031170746e-06 - syst_JES_Gjet_Stat6: 2.1428247711840557e-05 - syst_JES_Gjet_Stat7: 2.6032596873919434e-05 - syst_JES_Gjet_Stat8: 1.5150792677282597e-05 - syst_JES_Gjet_Stat9: 2.819034010082177e-05 - syst_JES_Gjet_Veto: 0.002208000452898504 - syst_JES_Gjet_dPhi: 0.0002249500111135805 - syst_JES_LArESZee: 0.004089164462332128 - syst_JES_LArEsmear: 0.0003475276535759421 - syst_JES_LAr_JVT: 0.0004328051986748773 - syst_JES_MJB_Alpha: 1.9787359601523393e-05 - syst_JES_MJB_Asym: 0.0004268033739323062 - syst_JES_MJB_Beta: 2.491181647331242e-05 - syst_JES_MJB_Fragmentation: 0.00025780034910759914 - syst_JES_MJB_Stat1: 7.276054752920706e-07 - syst_JES_MJB_Stat10: 3.942982468893312e-05 - syst_JES_MJB_Stat11: 4.402696985939413e-05 - syst_JES_MJB_Stat12: 5.7401589481476905e-05 - syst_JES_MJB_Stat13: 4.6124282921255265e-05 - syst_JES_MJB_Stat14: 1.0472794847603959e-05 - syst_JES_MJB_Stat15: 1.518076206091117e-05 - syst_JES_MJB_Stat16: 4.803109617737243e-05 - syst_JES_MJB_Stat2: 1.284918156926736e-06 - syst_JES_MJB_Stat3: 5.66887175723706e-06 - syst_JES_MJB_Stat4: 6.332185167854774e-06 - syst_JES_MJB_Stat5: 8.319993269228046e-06 - syst_JES_MJB_Stat6: 1.0296755217057458e-05 - syst_JES_MJB_Stat7: 1.275100627401618e-05 - syst_JES_MJB_Stat8: 1.9885776323794854e-05 - syst_JES_MJB_Stat9: 3.0563338741047255e-05 - syst_JES_MJB_Threshold: 0.0002951628829985234 - syst_JES_Pileup_MuOffset: 0.0005245220395750784 - syst_JES_Pileup_NPVOffset: 0.0005460002930402144 - syst_JES_Pileup_Pt_term: 0.00032288698874373986 - syst_JES_Pileup_Rho_topology: 0.0007324167256418985 - syst_JES_PunchThrough_MC15: 0.0003902496355859926 - syst_JES_SingleParticle_HighPt: 9.650743701912303e-11 - syst_JES_Zjet_MC: 0.0010383540472786727 - syst_JES_Zjet_MuScale: 7.627042480542506e-05 - syst_JES_Zjet_MuSmearID: 1.606082896366187e-05 - syst_JES_Zjet_MuSmearMS: 0.00029117411887047927 - syst_JES_Zjet_OOC: 0.0005979996718226525 - syst_JES_Zjet_Stat1: 3.4116787656518896e-05 - syst_JES_Zjet_Stat10: 4.930870916988194e-05 - syst_JES_Zjet_Stat11: 6.360430075867512e-05 - syst_JES_Zjet_Stat12: 0.00019020901003895686 - syst_JES_Zjet_Stat13: 0.00031020288119229327 - syst_JES_Zjet_Stat2: 4.8905269654711034e-14 - syst_JES_Zjet_Stat3: 2.4443282819621427e-05 - syst_JES_Zjet_Stat4: 2.056778062893515e-05 - syst_JES_Zjet_Stat5: 2.6264486954821716e-05 - syst_JES_Zjet_Stat6: 2.3522610399358316e-05 - syst_JES_Zjet_Stat7: 2.283420898564257e-05 - syst_JES_Zjet_Stat8: 2.503240699573255e-05 - syst_JES_Zjet_Stat9: 2.8721881466923438e-05 - syst_JES_Zjet_Veto: 0.00013085007632783404 - syst_JES_Zjet_dPhi: 0.00011844190590749544 - syst_PRW: 6.566e-05 - syst_Unfolding_bias: 1.0779e-05 - syst_cleaning: 0.0007330039017631488 + syst_JES_EtaIntercalibration_Stat95: 2.77524714e-16 + syst_JES_EtaIntercalibration_Stat96: 4.40237746e-07 + syst_JES_EtaIntercalibration_Stat97: 1.13033929e-07 + syst_JES_EtaIntercalibration_Stat98: 2.92693606e-07 + syst_JES_EtaIntercalibration_Stat99: 6.99259385e-10 + syst_JES_EtaIntercalibration_TotalStat_MJB: 7.91152658e-04 + syst_JES_Flavour_Comp: 2.08650108e-03 + syst_JES_Flavour_Response: 1.18977887e-04 + syst_JES_Gjet_Generator: 2.66508443e-03 + syst_JES_Gjet_OOC: 2.20100409e-03 + syst_JES_Gjet_Purity: 3.99799534e-04 + syst_JES_Gjet_Stat1: 5.26022288e-06 + syst_JES_Gjet_Stat10: 4.05055067e-05 + syst_JES_Gjet_Stat11: 4.15444334e-05 + syst_JES_Gjet_Stat12: 1.45766483e-04 + syst_JES_Gjet_Stat13: 4.51654035e-04 + syst_JES_Gjet_Stat14: 1.20655721e-03 + syst_JES_Gjet_Stat15: 1.30075209e-03 + syst_JES_Gjet_Stat2: 6.58440407e-06 + syst_JES_Gjet_Stat3: 4.08705209e-06 + syst_JES_Gjet_Stat4: 7.72475040e-06 + syst_JES_Gjet_Stat5: 8.45382403e-06 + syst_JES_Gjet_Stat6: 2.14282477e-05 + syst_JES_Gjet_Stat7: 2.60325969e-05 + syst_JES_Gjet_Stat8: 1.51507927e-05 + syst_JES_Gjet_Stat9: 2.81903401e-05 + syst_JES_Gjet_Veto: 2.20800045e-03 + syst_JES_Gjet_dPhi: 2.24950011e-04 + syst_JES_LArESZee: 4.08916446e-03 + syst_JES_LArEsmear: 3.47527654e-04 + syst_JES_LAr_JVT: 4.32805199e-04 + syst_JES_MJB_Alpha: 1.97873596e-05 + syst_JES_MJB_Asym: 4.26803374e-04 + syst_JES_MJB_Beta: 2.49118165e-05 + syst_JES_MJB_Fragmentation: 2.57800349e-04 + syst_JES_MJB_Stat1: 7.27605475e-07 + syst_JES_MJB_Stat10: 3.94298247e-05 + syst_JES_MJB_Stat11: 4.40269699e-05 + syst_JES_MJB_Stat12: 5.74015895e-05 + syst_JES_MJB_Stat13: 4.61242829e-05 + syst_JES_MJB_Stat14: 1.04727948e-05 + syst_JES_MJB_Stat15: 1.51807621e-05 + syst_JES_MJB_Stat16: 4.80310962e-05 + syst_JES_MJB_Stat2: 1.28491816e-06 + syst_JES_MJB_Stat3: 5.66887176e-06 + syst_JES_MJB_Stat4: 6.33218517e-06 + syst_JES_MJB_Stat5: 8.31999327e-06 + syst_JES_MJB_Stat6: 1.02967552e-05 + syst_JES_MJB_Stat7: 1.27510063e-05 + syst_JES_MJB_Stat8: 1.98857763e-05 + syst_JES_MJB_Stat9: 3.05633387e-05 + syst_JES_MJB_Threshold: 2.95162883e-04 + syst_JES_Pileup_MuOffset: 5.24522040e-04 + syst_JES_Pileup_NPVOffset: 5.46000293e-04 + syst_JES_Pileup_Pt_term: 3.22886989e-04 + syst_JES_Pileup_Rho_topology: 7.32416726e-04 + syst_JES_PunchThrough_MC15: 3.90249636e-04 + syst_JES_SingleParticle_HighPt: 9.65074370e-11 + syst_JES_Zjet_MC: 1.03835405e-03 + syst_JES_Zjet_MuScale: 7.62704248e-05 + syst_JES_Zjet_MuSmearID: 1.60608290e-05 + syst_JES_Zjet_MuSmearMS: 2.91174119e-04 + syst_JES_Zjet_OOC: 5.97999672e-04 + syst_JES_Zjet_Stat1: 3.41167877e-05 + syst_JES_Zjet_Stat10: 4.93087092e-05 + syst_JES_Zjet_Stat11: 6.36043008e-05 + syst_JES_Zjet_Stat12: 1.90209010e-04 + syst_JES_Zjet_Stat13: 3.10202881e-04 + syst_JES_Zjet_Stat2: 4.89052697e-14 + syst_JES_Zjet_Stat3: 2.44432828e-05 + syst_JES_Zjet_Stat4: 2.05677806e-05 + syst_JES_Zjet_Stat5: 2.62644870e-05 + syst_JES_Zjet_Stat6: 2.35226104e-05 + syst_JES_Zjet_Stat7: 2.28342090e-05 + syst_JES_Zjet_Stat8: 2.50324070e-05 + syst_JES_Zjet_Stat9: 2.87218815e-05 + syst_JES_Zjet_Veto: 1.30850076e-04 + syst_JES_Zjet_dPhi: 1.18441906e-04 + syst_PRW: 6.56600000e-05 + syst_Unfolding_bias: 1.07790000e-05 + syst_cleaning: 7.33003902e-04 syst_lumi: 0.0025 -- stat: 0.0006551 +- stat: 6.55100000e-04 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.00019663104409019445 - syst_JER_NP1: 1.718150968337765e-05 - syst_JER_NP2: 8.14985190049488e-05 - syst_JER_NP3: 1.907954598516432e-05 - syst_JER_NP4: 3.87829485727942e-05 - syst_JER_NP5: 2.202426407397078e-05 - syst_JER_NP6: 2.4940902148879863e-05 - syst_JER_NP7: 2.2740694800291397e-05 - syst_JER_NP8: 5.4428397689074036e-05 - syst_JES_EtaIntercalibration_Modelling: 0.0011088010912693044 + syst_JER_NP0: 1.96631044e-04 + syst_JER_NP1: 1.71815097e-05 + syst_JER_NP2: 8.14985190e-05 + syst_JER_NP3: 1.90795460e-05 + syst_JER_NP4: 3.87829486e-05 + syst_JER_NP5: 2.20242641e-05 + syst_JER_NP6: 2.49409021e-05 + syst_JER_NP7: 2.27406948e-05 + syst_JER_NP8: 5.44283977e-05 + syst_JES_EtaIntercalibration_Modelling: 1.10880109e-03 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 - syst_JES_EtaIntercalibration_Stat10: 5.283138721442018e-19 - syst_JES_EtaIntercalibration_Stat100: 1.4114016862679454e-17 + syst_JES_EtaIntercalibration_Stat10: 5.28313872e-19 + syst_JES_EtaIntercalibration_Stat100: 1.41140169e-17 syst_JES_EtaIntercalibration_Stat101: 0.0 syst_JES_EtaIntercalibration_Stat102: 0.0 - syst_JES_EtaIntercalibration_Stat103: 1.2366842766041783e-21 - syst_JES_EtaIntercalibration_Stat104: 1.2366842766041783e-21 - syst_JES_EtaIntercalibration_Stat105: 1.2366842766041783e-21 + syst_JES_EtaIntercalibration_Stat103: 1.23668428e-21 + syst_JES_EtaIntercalibration_Stat104: 1.23668428e-21 + syst_JES_EtaIntercalibration_Stat105: 1.23668428e-21 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 2.489823035880261e-20 - syst_JES_EtaIntercalibration_Stat11: 1.4020951287270062e-17 - syst_JES_EtaIntercalibration_Stat110: 2.4341421548463433e-20 - syst_JES_EtaIntercalibration_Stat111: 2.3166179551233735e-20 - syst_JES_EtaIntercalibration_Stat112: 2.3166179551233735e-20 + syst_JES_EtaIntercalibration_Stat109: 2.48982304e-20 + syst_JES_EtaIntercalibration_Stat11: 1.40209513e-17 + syst_JES_EtaIntercalibration_Stat110: 2.43414215e-20 + syst_JES_EtaIntercalibration_Stat111: 2.31661796e-20 + syst_JES_EtaIntercalibration_Stat112: 2.31661796e-20 syst_JES_EtaIntercalibration_Stat113: 0.0 - syst_JES_EtaIntercalibration_Stat114: 2.744434504592886e-20 - syst_JES_EtaIntercalibration_Stat115: 1.012395293882286e-15 - syst_JES_EtaIntercalibration_Stat116: 2.1489414993200722e-07 - syst_JES_EtaIntercalibration_Stat117: 2.5772833580147916e-07 - syst_JES_EtaIntercalibration_Stat118: 6.59418303658611e-07 - syst_JES_EtaIntercalibration_Stat119: 3.396034307836127e-07 - syst_JES_EtaIntercalibration_Stat12: 1.732916495858102e-13 - syst_JES_EtaIntercalibration_Stat120: 1.774508573044709e-13 - syst_JES_EtaIntercalibration_Stat121: 1.0527404808403636e-19 + syst_JES_EtaIntercalibration_Stat114: 2.74443450e-20 + syst_JES_EtaIntercalibration_Stat115: 1.01239529e-15 + syst_JES_EtaIntercalibration_Stat116: 2.14894150e-07 + syst_JES_EtaIntercalibration_Stat117: 2.57728336e-07 + syst_JES_EtaIntercalibration_Stat118: 6.59418304e-07 + syst_JES_EtaIntercalibration_Stat119: 3.39603431e-07 + syst_JES_EtaIntercalibration_Stat12: 1.73291650e-13 + syst_JES_EtaIntercalibration_Stat120: 1.77450857e-13 + syst_JES_EtaIntercalibration_Stat121: 1.05274048e-19 syst_JES_EtaIntercalibration_Stat122: 0.0 - syst_JES_EtaIntercalibration_Stat123: 1.2366842766041783e-21 - syst_JES_EtaIntercalibration_Stat124: 1.2366842766041783e-21 - syst_JES_EtaIntercalibration_Stat125: 1.2366842766041783e-21 + syst_JES_EtaIntercalibration_Stat123: 1.23668428e-21 + syst_JES_EtaIntercalibration_Stat124: 1.23668428e-21 + syst_JES_EtaIntercalibration_Stat125: 1.23668428e-21 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 2.489823035880261e-20 - syst_JES_EtaIntercalibration_Stat129: 2.4341421548463433e-20 + syst_JES_EtaIntercalibration_Stat128: 2.48982304e-20 + syst_JES_EtaIntercalibration_Stat129: 2.43414215e-20 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 1.8602225673289745e-21 + syst_JES_EtaIntercalibration_Stat130: 1.86022257e-21 syst_JES_EtaIntercalibration_Stat131: 0.0 syst_JES_EtaIntercalibration_Stat132: 0.0 - syst_JES_EtaIntercalibration_Stat133: 2.744434504592886e-20 - syst_JES_EtaIntercalibration_Stat134: 3.290982758208511e-07 - syst_JES_EtaIntercalibration_Stat135: 3.0111911264481367e-07 - syst_JES_EtaIntercalibration_Stat136: 5.135075559327243e-07 - syst_JES_EtaIntercalibration_Stat137: 3.1266813077127e-07 - syst_JES_EtaIntercalibration_Stat138: 2.6471087472939223e-07 - syst_JES_EtaIntercalibration_Stat139: 1.0553885765442033e-15 + syst_JES_EtaIntercalibration_Stat133: 2.74443450e-20 + syst_JES_EtaIntercalibration_Stat134: 3.29098276e-07 + syst_JES_EtaIntercalibration_Stat135: 3.01119113e-07 + syst_JES_EtaIntercalibration_Stat136: 5.13507556e-07 + syst_JES_EtaIntercalibration_Stat137: 3.12668131e-07 + syst_JES_EtaIntercalibration_Stat138: 2.64710875e-07 + syst_JES_EtaIntercalibration_Stat139: 1.05538858e-15 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 1.0527404808403636e-19 + syst_JES_EtaIntercalibration_Stat140: 1.05274048e-19 syst_JES_EtaIntercalibration_Stat141: 0.0 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 1.2366842766041783e-21 - syst_JES_EtaIntercalibration_Stat144: 1.2366842766041783e-21 + syst_JES_EtaIntercalibration_Stat143: 1.23668428e-21 + syst_JES_EtaIntercalibration_Stat144: 1.23668428e-21 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 1.8602225673289745e-21 - syst_JES_EtaIntercalibration_Stat148: 1.8602225673289745e-21 + syst_JES_EtaIntercalibration_Stat147: 1.86022257e-21 + syst_JES_EtaIntercalibration_Stat148: 1.86022257e-21 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 syst_JES_EtaIntercalibration_Stat150: 0.0 syst_JES_EtaIntercalibration_Stat151: 0.0 - syst_JES_EtaIntercalibration_Stat152: 1.439334221090676e-07 - syst_JES_EtaIntercalibration_Stat153: 4.0829415866504867e-07 - syst_JES_EtaIntercalibration_Stat154: 6.571426633540087e-07 - syst_JES_EtaIntercalibration_Stat155: 2.9821275542806685e-07 - syst_JES_EtaIntercalibration_Stat156: 5.116190452866273e-07 - syst_JES_EtaIntercalibration_Stat157: 3.3058455426826887e-13 + syst_JES_EtaIntercalibration_Stat152: 1.43933422e-07 + syst_JES_EtaIntercalibration_Stat153: 4.08294159e-07 + syst_JES_EtaIntercalibration_Stat154: 6.57142663e-07 + syst_JES_EtaIntercalibration_Stat155: 2.98212755e-07 + syst_JES_EtaIntercalibration_Stat156: 5.11619045e-07 + syst_JES_EtaIntercalibration_Stat157: 3.30584554e-13 syst_JES_EtaIntercalibration_Stat158: 0.0 syst_JES_EtaIntercalibration_Stat159: 0.0 syst_JES_EtaIntercalibration_Stat16: 0.0 @@ -9524,18 +9524,18 @@ bins: syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 1.8602225673289745e-21 + syst_JES_EtaIntercalibration_Stat165: 1.86022257e-21 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 7.997536042432069e-07 - syst_JES_EtaIntercalibration_Stat171: 6.50982494004255e-07 - syst_JES_EtaIntercalibration_Stat172: 1.3130287239813149e-06 - syst_JES_EtaIntercalibration_Stat173: 1.6571617867607252e-06 - syst_JES_EtaIntercalibration_Stat174: 6.618900703289028e-07 - syst_JES_EtaIntercalibration_Stat175: 1.1603469513468805e-12 + syst_JES_EtaIntercalibration_Stat170: 7.99753604e-07 + syst_JES_EtaIntercalibration_Stat171: 6.50982494e-07 + syst_JES_EtaIntercalibration_Stat172: 1.31302872e-06 + syst_JES_EtaIntercalibration_Stat173: 1.65716179e-06 + syst_JES_EtaIntercalibration_Stat174: 6.61890070e-07 + syst_JES_EtaIntercalibration_Stat175: 1.16034695e-12 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 syst_JES_EtaIntercalibration_Stat178: 0.0 @@ -9548,14 +9548,14 @@ bins: syst_JES_EtaIntercalibration_Stat184: 0.0 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 - syst_JES_EtaIntercalibration_Stat187: 2.3014361967041363e-07 - syst_JES_EtaIntercalibration_Stat188: 4.207836617550638e-06 - syst_JES_EtaIntercalibration_Stat189: 5.705262198181605e-06 + syst_JES_EtaIntercalibration_Stat187: 2.30143620e-07 + syst_JES_EtaIntercalibration_Stat188: 4.20783662e-06 + syst_JES_EtaIntercalibration_Stat189: 5.70526220e-06 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 7.596494109126921e-06 - syst_JES_EtaIntercalibration_Stat191: 5.604718614703149e-06 - syst_JES_EtaIntercalibration_Stat192: 1.8563406880203862e-07 - syst_JES_EtaIntercalibration_Stat193: 1.798734763660279e-13 + syst_JES_EtaIntercalibration_Stat190: 7.59649411e-06 + syst_JES_EtaIntercalibration_Stat191: 5.60471861e-06 + syst_JES_EtaIntercalibration_Stat192: 1.85634069e-07 + syst_JES_EtaIntercalibration_Stat193: 1.79873476e-13 syst_JES_EtaIntercalibration_Stat194: 0.0 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 @@ -9566,13 +9566,13 @@ bins: syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 syst_JES_EtaIntercalibration_Stat201: 0.0 - syst_JES_EtaIntercalibration_Stat202: 2.980657967630637e-07 - syst_JES_EtaIntercalibration_Stat203: 9.1988962381364e-06 - syst_JES_EtaIntercalibration_Stat204: 1.36400164955912e-05 - syst_JES_EtaIntercalibration_Stat205: 1.4484003961267064e-05 - syst_JES_EtaIntercalibration_Stat206: 1.1762530595071794e-05 - syst_JES_EtaIntercalibration_Stat207: 4.526793570508821e-07 - syst_JES_EtaIntercalibration_Stat208: 1.798734763660279e-13 + syst_JES_EtaIntercalibration_Stat202: 2.98065797e-07 + syst_JES_EtaIntercalibration_Stat203: 9.19889624e-06 + syst_JES_EtaIntercalibration_Stat204: 1.36400165e-05 + syst_JES_EtaIntercalibration_Stat205: 1.44840040e-05 + syst_JES_EtaIntercalibration_Stat206: 1.17625306e-05 + syst_JES_EtaIntercalibration_Stat207: 4.52679357e-07 + syst_JES_EtaIntercalibration_Stat208: 1.79873476e-13 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 @@ -9580,38 +9580,38 @@ bins: syst_JES_EtaIntercalibration_Stat212: 0.0 syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 - syst_JES_EtaIntercalibration_Stat215: 4.0992061121636715e-07 - syst_JES_EtaIntercalibration_Stat216: 1.1439226492643635e-05 - syst_JES_EtaIntercalibration_Stat217: 1.5688919274443347e-05 - syst_JES_EtaIntercalibration_Stat218: 1.7856597520244444e-05 - syst_JES_EtaIntercalibration_Stat219: 1.4137716603115228e-05 + syst_JES_EtaIntercalibration_Stat215: 4.09920611e-07 + syst_JES_EtaIntercalibration_Stat216: 1.14392265e-05 + syst_JES_EtaIntercalibration_Stat217: 1.56889193e-05 + syst_JES_EtaIntercalibration_Stat218: 1.78565975e-05 + syst_JES_EtaIntercalibration_Stat219: 1.41377166e-05 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 2.479748738783831e-07 + syst_JES_EtaIntercalibration_Stat220: 2.47974874e-07 syst_JES_EtaIntercalibration_Stat221: 0.0 syst_JES_EtaIntercalibration_Stat222: 0.0 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 - syst_JES_EtaIntercalibration_Stat227: 6.674488819377856e-07 - syst_JES_EtaIntercalibration_Stat228: 3.244988867469348e-05 - syst_JES_EtaIntercalibration_Stat229: 5.4245516635017875e-05 + syst_JES_EtaIntercalibration_Stat227: 6.67448882e-07 + syst_JES_EtaIntercalibration_Stat228: 3.24498887e-05 + syst_JES_EtaIntercalibration_Stat229: 5.42455166e-05 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 5.15256855849585e-05 - syst_JES_EtaIntercalibration_Stat231: 4.661327815118778e-05 - syst_JES_EtaIntercalibration_Stat232: 3.5224705119418674e-07 + syst_JES_EtaIntercalibration_Stat230: 5.15256856e-05 + syst_JES_EtaIntercalibration_Stat231: 4.66132782e-05 + syst_JES_EtaIntercalibration_Stat232: 3.52247051e-07 syst_JES_EtaIntercalibration_Stat233: 0.0 syst_JES_EtaIntercalibration_Stat234: 0.0 syst_JES_EtaIntercalibration_Stat235: 0.0 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 - syst_JES_EtaIntercalibration_Stat238: 2.4248169580403384e-07 - syst_JES_EtaIntercalibration_Stat239: 4.30811220257783e-06 + syst_JES_EtaIntercalibration_Stat238: 2.42481696e-07 + syst_JES_EtaIntercalibration_Stat239: 4.30811220e-06 syst_JES_EtaIntercalibration_Stat24: 0.0 - syst_JES_EtaIntercalibration_Stat240: 5.197013854128156e-06 - syst_JES_EtaIntercalibration_Stat241: 7.547577889627904e-06 - syst_JES_EtaIntercalibration_Stat242: 5.003995478615064e-06 - syst_JES_EtaIntercalibration_Stat243: 1.4843675420865278e-07 + syst_JES_EtaIntercalibration_Stat240: 5.19701385e-06 + syst_JES_EtaIntercalibration_Stat241: 7.54757789e-06 + syst_JES_EtaIntercalibration_Stat242: 5.00399548e-06 + syst_JES_EtaIntercalibration_Stat243: 1.48436754e-07 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 syst_JES_EtaIntercalibration_Stat25: 0.0 @@ -9620,12 +9620,12 @@ bins: syst_JES_EtaIntercalibration_Stat28: 0.0 syst_JES_EtaIntercalibration_Stat29: 0.0 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 2.6215699258411934e-20 - syst_JES_EtaIntercalibration_Stat31: 3.1017889205263467e-07 - syst_JES_EtaIntercalibration_Stat32: 1.7603974210387835e-17 - syst_JES_EtaIntercalibration_Stat33: 1.734650598228633e-13 - syst_JES_EtaIntercalibration_Stat34: 1.784880357438702e-13 - syst_JES_EtaIntercalibration_Stat35: 1.0109471395889104e-19 + syst_JES_EtaIntercalibration_Stat30: 2.62156993e-20 + syst_JES_EtaIntercalibration_Stat31: 3.10178892e-07 + syst_JES_EtaIntercalibration_Stat32: 1.76039742e-17 + syst_JES_EtaIntercalibration_Stat33: 1.73465060e-13 + syst_JES_EtaIntercalibration_Stat34: 1.78488036e-13 + syst_JES_EtaIntercalibration_Stat35: 1.01094714e-19 syst_JES_EtaIntercalibration_Stat36: 0.0 syst_JES_EtaIntercalibration_Stat37: 0.0 syst_JES_EtaIntercalibration_Stat38: 0.0 @@ -9644,215 +9644,215 @@ bins: syst_JES_EtaIntercalibration_Stat5: 0.0 syst_JES_EtaIntercalibration_Stat50: 0.0 syst_JES_EtaIntercalibration_Stat51: 0.0 - syst_JES_EtaIntercalibration_Stat52: 2.152469067390981e-20 - syst_JES_EtaIntercalibration_Stat53: 8.213138421034617e-17 - syst_JES_EtaIntercalibration_Stat54: 2.650903746146265e-07 - syst_JES_EtaIntercalibration_Stat55: 1.741716446203879e-13 - syst_JES_EtaIntercalibration_Stat56: 1.7866362459263182e-13 - syst_JES_EtaIntercalibration_Stat57: 3.816930482403367e-19 + syst_JES_EtaIntercalibration_Stat52: 2.15246907e-20 + syst_JES_EtaIntercalibration_Stat53: 8.21313842e-17 + syst_JES_EtaIntercalibration_Stat54: 2.65090375e-07 + syst_JES_EtaIntercalibration_Stat55: 1.74171645e-13 + syst_JES_EtaIntercalibration_Stat56: 1.78663625e-13 + syst_JES_EtaIntercalibration_Stat57: 3.81693048e-19 syst_JES_EtaIntercalibration_Stat58: 0.0 syst_JES_EtaIntercalibration_Stat59: 0.0 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 1.2366842766041783e-21 - syst_JES_EtaIntercalibration_Stat62: 1.2366842766041783e-21 + syst_JES_EtaIntercalibration_Stat61: 1.23668428e-21 + syst_JES_EtaIntercalibration_Stat62: 1.23668428e-21 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 2.489823035880261e-20 - syst_JES_EtaIntercalibration_Stat69: 2.489823035880261e-20 + syst_JES_EtaIntercalibration_Stat68: 2.48982304e-20 + syst_JES_EtaIntercalibration_Stat69: 2.48982304e-20 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 2.3166179551233735e-20 - syst_JES_EtaIntercalibration_Stat71: 2.3166179551233735e-20 + syst_JES_EtaIntercalibration_Stat70: 2.31661796e-20 + syst_JES_EtaIntercalibration_Stat71: 2.31661796e-20 syst_JES_EtaIntercalibration_Stat72: 0.0 syst_JES_EtaIntercalibration_Stat73: 0.0 - syst_JES_EtaIntercalibration_Stat74: 5.671097924141321e-17 - syst_JES_EtaIntercalibration_Stat75: 2.663558851367846e-07 - syst_JES_EtaIntercalibration_Stat76: 7.506707986701481e-08 - syst_JES_EtaIntercalibration_Stat77: 1.6843947599954117e-07 - syst_JES_EtaIntercalibration_Stat78: 1.5380611271757183e-07 - syst_JES_EtaIntercalibration_Stat79: 2.0473032872537477e-19 + syst_JES_EtaIntercalibration_Stat74: 5.67109792e-17 + syst_JES_EtaIntercalibration_Stat75: 2.66355885e-07 + syst_JES_EtaIntercalibration_Stat76: 7.50670799e-08 + syst_JES_EtaIntercalibration_Stat77: 1.68439476e-07 + syst_JES_EtaIntercalibration_Stat78: 1.53806113e-07 + syst_JES_EtaIntercalibration_Stat79: 2.04730329e-19 syst_JES_EtaIntercalibration_Stat8: 0.0 syst_JES_EtaIntercalibration_Stat80: 0.0 syst_JES_EtaIntercalibration_Stat81: 0.0 - syst_JES_EtaIntercalibration_Stat82: 1.2366842766041783e-21 - syst_JES_EtaIntercalibration_Stat83: 1.2366842766041783e-21 - syst_JES_EtaIntercalibration_Stat84: 1.2366842766041783e-21 + syst_JES_EtaIntercalibration_Stat82: 1.23668428e-21 + syst_JES_EtaIntercalibration_Stat83: 1.23668428e-21 + syst_JES_EtaIntercalibration_Stat84: 1.23668428e-21 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 2.489823035880261e-20 - syst_JES_EtaIntercalibration_Stat9: 5.653162266891691e-17 - syst_JES_EtaIntercalibration_Stat90: 2.489823035880261e-20 - syst_JES_EtaIntercalibration_Stat91: 2.3166179551233735e-20 - syst_JES_EtaIntercalibration_Stat92: 2.3166179551233735e-20 + syst_JES_EtaIntercalibration_Stat89: 2.48982304e-20 + syst_JES_EtaIntercalibration_Stat9: 5.65316227e-17 + syst_JES_EtaIntercalibration_Stat90: 2.48982304e-20 + syst_JES_EtaIntercalibration_Stat91: 2.31661796e-20 + syst_JES_EtaIntercalibration_Stat92: 2.31661796e-20 syst_JES_EtaIntercalibration_Stat93: 0.0 syst_JES_EtaIntercalibration_Stat94: 0.0 - syst_JES_EtaIntercalibration_Stat95: 5.672716691074921e-17 - syst_JES_EtaIntercalibration_Stat96: 2.62900936147059e-07 - syst_JES_EtaIntercalibration_Stat97: 7.482137796111484e-08 - syst_JES_EtaIntercalibration_Stat98: 1.9074001887385876e-07 - syst_JES_EtaIntercalibration_Stat99: 1.3307076499787622e-10 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0005727000698445915 - syst_JES_Flavour_Comp: 0.001503500166278674 - syst_JES_Flavour_Response: 1.1545560878536823e-06 - syst_JES_Gjet_Generator: 0.0018235308470108203 - syst_JES_Gjet_OOC: 0.0015120059523692359 - syst_JES_Gjet_Purity: 0.0002728654018009612 - syst_JES_Gjet_Stat1: 3.956326421062853e-06 - syst_JES_Gjet_Stat10: 2.7030014798368128e-05 - syst_JES_Gjet_Stat11: 2.6551585169251193e-05 - syst_JES_Gjet_Stat12: 9.615045865725239e-05 - syst_JES_Gjet_Stat13: 0.00030320211081059445 - syst_JES_Gjet_Stat14: 0.0008110551815382231 - syst_JES_Gjet_Stat15: 0.0010293526448695801 - syst_JES_Gjet_Stat2: 4.607347040325917e-06 - syst_JES_Gjet_Stat3: 2.8771403771800917e-06 - syst_JES_Gjet_Stat4: 5.024974701428854e-06 - syst_JES_Gjet_Stat5: 5.971101468740922e-06 - syst_JES_Gjet_Stat6: 1.6044059671728975e-05 - syst_JES_Gjet_Stat7: 1.83537407631251e-05 - syst_JES_Gjet_Stat8: 1.0261598157694541e-05 - syst_JES_Gjet_Stat9: 1.9225027308173063e-05 - syst_JES_Gjet_Veto: 0.0015205014797756691 - syst_JES_Gjet_dPhi: 0.00016191784954105583 - syst_JES_LArESZee: 0.00277849275687377 - syst_JES_LArEsmear: 0.00024746383069046673 - syst_JES_LAr_JVT: 0.000306703945197971 - syst_JES_MJB_Alpha: 1.5062870742325317e-05 - syst_JES_MJB_Asym: 0.0003133025853707562 - syst_JES_MJB_Beta: 1.59503503096327e-05 - syst_JES_MJB_Fragmentation: 0.00016728588553730406 - syst_JES_MJB_Stat1: 2.2238867702459584e-07 - syst_JES_MJB_Stat10: 2.695523093946702e-05 - syst_JES_MJB_Stat11: 3.26211250572386e-05 - syst_JES_MJB_Stat12: 4.96164899504187e-05 - syst_JES_MJB_Stat13: 4.753260880700743e-05 - syst_JES_MJB_Stat14: 2.175208998579217e-05 - syst_JES_MJB_Stat15: 1.722601994077564e-05 - syst_JES_MJB_Stat16: 5.076795839897445e-05 - syst_JES_MJB_Stat2: 8.068389058541985e-07 - syst_JES_MJB_Stat3: 2.8595074313594645e-06 - syst_JES_MJB_Stat4: 3.505603657004026e-06 - syst_JES_MJB_Stat5: 4.679310926835275e-06 - syst_JES_MJB_Stat6: 5.66422086433783e-06 - syst_JES_MJB_Stat7: 8.019481654072164e-06 - syst_JES_MJB_Stat8: 1.2710442665383451e-05 - syst_JES_MJB_Stat9: 1.975025569454735e-05 - syst_JES_MJB_Threshold: 0.00022626203282919563 - syst_JES_Pileup_MuOffset: 0.0003665279389078 - syst_JES_Pileup_NPVOffset: 0.0003836035078046081 - syst_JES_Pileup_Pt_term: 0.0002212323382781098 - syst_JES_Pileup_Rho_topology: 0.0004946 - syst_JES_PunchThrough_MC15: 0.00033090012088241976 - syst_JES_SingleParticle_HighPt: 1.0146365494599533e-09 - syst_JES_Zjet_MC: 0.0006993051622861082 - syst_JES_Zjet_MuScale: 5.200942222328566e-05 - syst_JES_Zjet_MuSmearID: 1.1477551481043332e-05 - syst_JES_Zjet_MuSmearMS: 0.0001987325526933119 - syst_JES_Zjet_OOC: 0.0004171403001389341 - syst_JES_Zjet_Stat1: 2.8336267838231623e-05 - syst_JES_Zjet_Stat10: 3.321030111275717e-05 - syst_JES_Zjet_Stat11: 4.5109230762672064e-05 - syst_JES_Zjet_Stat12: 0.00013013720711233973 - syst_JES_Zjet_Stat13: 0.00020820165705392454 - syst_JES_Zjet_Stat2: 4.179714822807891e-12 - syst_JES_Zjet_Stat3: 1.8343491352520652e-05 - syst_JES_Zjet_Stat4: 1.640951172338775e-05 - syst_JES_Zjet_Stat5: 1.767724808899847e-05 - syst_JES_Zjet_Stat6: 1.7297887154216263e-05 - syst_JES_Zjet_Stat7: 1.6400097560685424e-05 - syst_JES_Zjet_Stat8: 1.761274538508974e-05 - syst_JES_Zjet_Stat9: 1.9676383687049813e-05 - syst_JES_Zjet_Veto: 9.019639723957937e-05 - syst_JES_Zjet_dPhi: 8.211017537431035e-05 - syst_PRW: 4.346e-05 - syst_Unfolding_bias: 7.135e-06 - syst_cleaning: 0.0005179697940034727 + syst_JES_EtaIntercalibration_Stat95: 5.67271669e-17 + syst_JES_EtaIntercalibration_Stat96: 2.62900936e-07 + syst_JES_EtaIntercalibration_Stat97: 7.48213780e-08 + syst_JES_EtaIntercalibration_Stat98: 1.90740019e-07 + syst_JES_EtaIntercalibration_Stat99: 1.33070765e-10 + syst_JES_EtaIntercalibration_TotalStat_MJB: 5.72700070e-04 + syst_JES_Flavour_Comp: 1.50350017e-03 + syst_JES_Flavour_Response: 1.15455609e-06 + syst_JES_Gjet_Generator: 1.82353085e-03 + syst_JES_Gjet_OOC: 1.51200595e-03 + syst_JES_Gjet_Purity: 2.72865402e-04 + syst_JES_Gjet_Stat1: 3.95632642e-06 + syst_JES_Gjet_Stat10: 2.70300148e-05 + syst_JES_Gjet_Stat11: 2.65515852e-05 + syst_JES_Gjet_Stat12: 9.61504587e-05 + syst_JES_Gjet_Stat13: 3.03202111e-04 + syst_JES_Gjet_Stat14: 8.11055182e-04 + syst_JES_Gjet_Stat15: 1.02935264e-03 + syst_JES_Gjet_Stat2: 4.60734704e-06 + syst_JES_Gjet_Stat3: 2.87714038e-06 + syst_JES_Gjet_Stat4: 5.02497470e-06 + syst_JES_Gjet_Stat5: 5.97110147e-06 + syst_JES_Gjet_Stat6: 1.60440597e-05 + syst_JES_Gjet_Stat7: 1.83537408e-05 + syst_JES_Gjet_Stat8: 1.02615982e-05 + syst_JES_Gjet_Stat9: 1.92250273e-05 + syst_JES_Gjet_Veto: 1.52050148e-03 + syst_JES_Gjet_dPhi: 1.61917850e-04 + syst_JES_LArESZee: 2.77849276e-03 + syst_JES_LArEsmear: 2.47463831e-04 + syst_JES_LAr_JVT: 3.06703945e-04 + syst_JES_MJB_Alpha: 1.50628707e-05 + syst_JES_MJB_Asym: 3.13302585e-04 + syst_JES_MJB_Beta: 1.59503503e-05 + syst_JES_MJB_Fragmentation: 1.67285886e-04 + syst_JES_MJB_Stat1: 2.22388677e-07 + syst_JES_MJB_Stat10: 2.69552309e-05 + syst_JES_MJB_Stat11: 3.26211251e-05 + syst_JES_MJB_Stat12: 4.96164900e-05 + syst_JES_MJB_Stat13: 4.75326088e-05 + syst_JES_MJB_Stat14: 2.17520900e-05 + syst_JES_MJB_Stat15: 1.72260199e-05 + syst_JES_MJB_Stat16: 5.07679584e-05 + syst_JES_MJB_Stat2: 8.06838906e-07 + syst_JES_MJB_Stat3: 2.85950743e-06 + syst_JES_MJB_Stat4: 3.50560366e-06 + syst_JES_MJB_Stat5: 4.67931093e-06 + syst_JES_MJB_Stat6: 5.66422086e-06 + syst_JES_MJB_Stat7: 8.01948165e-06 + syst_JES_MJB_Stat8: 1.27104427e-05 + syst_JES_MJB_Stat9: 1.97502557e-05 + syst_JES_MJB_Threshold: 2.26262033e-04 + syst_JES_Pileup_MuOffset: 3.66527939e-04 + syst_JES_Pileup_NPVOffset: 3.83603508e-04 + syst_JES_Pileup_Pt_term: 2.21232338e-04 + syst_JES_Pileup_Rho_topology: 4.94600000e-04 + syst_JES_PunchThrough_MC15: 3.30900121e-04 + syst_JES_SingleParticle_HighPt: 1.01463655e-09 + syst_JES_Zjet_MC: 6.99305162e-04 + syst_JES_Zjet_MuScale: 5.20094222e-05 + syst_JES_Zjet_MuSmearID: 1.14775515e-05 + syst_JES_Zjet_MuSmearMS: 1.98732553e-04 + syst_JES_Zjet_OOC: 4.17140300e-04 + syst_JES_Zjet_Stat1: 2.83362678e-05 + syst_JES_Zjet_Stat10: 3.32103011e-05 + syst_JES_Zjet_Stat11: 4.51092308e-05 + syst_JES_Zjet_Stat12: 1.30137207e-04 + syst_JES_Zjet_Stat13: 2.08201657e-04 + syst_JES_Zjet_Stat2: 4.17971482e-12 + syst_JES_Zjet_Stat3: 1.83434914e-05 + syst_JES_Zjet_Stat4: 1.64095117e-05 + syst_JES_Zjet_Stat5: 1.76772481e-05 + syst_JES_Zjet_Stat6: 1.72978872e-05 + syst_JES_Zjet_Stat7: 1.64000976e-05 + syst_JES_Zjet_Stat8: 1.76127454e-05 + syst_JES_Zjet_Stat9: 1.96763837e-05 + syst_JES_Zjet_Veto: 9.01963972e-05 + syst_JES_Zjet_dPhi: 8.21101754e-05 + syst_PRW: 4.34600000e-05 + syst_Unfolding_bias: 7.13500000e-06 + syst_cleaning: 5.17969794e-04 syst_lumi: 0.001655 - stat: 0.000507 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.00013328603640291807 - syst_JER_NP1: 1.1360501342370414e-05 - syst_JER_NP2: 5.552586514409298e-05 - syst_JER_NP3: 1.1110039108842055e-05 - syst_JER_NP4: 2.8820157442318038e-05 - syst_JER_NP5: 1.4772907999104306e-05 - syst_JER_NP6: 1.665405956516308e-05 - syst_JER_NP7: 1.474264131694182e-05 - syst_JER_NP8: 3.571960626882665e-05 - syst_JES_EtaIntercalibration_Modelling: 0.0007861906050697884 + syst_JER_NP0: 1.33286036e-04 + syst_JER_NP1: 1.13605013e-05 + syst_JER_NP2: 5.55258651e-05 + syst_JER_NP3: 1.11100391e-05 + syst_JER_NP4: 2.88201574e-05 + syst_JER_NP5: 1.47729080e-05 + syst_JER_NP6: 1.66540596e-05 + syst_JER_NP7: 1.47426413e-05 + syst_JER_NP8: 3.57196063e-05 + syst_JES_EtaIntercalibration_Modelling: 7.86190605e-04 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 - syst_JES_EtaIntercalibration_Stat10: 1.2889831574054796e-19 - syst_JES_EtaIntercalibration_Stat100: 2.5219790220182245e-18 + syst_JES_EtaIntercalibration_Stat10: 1.28898316e-19 + syst_JES_EtaIntercalibration_Stat100: 2.52197902e-18 syst_JES_EtaIntercalibration_Stat101: 0.0 syst_JES_EtaIntercalibration_Stat102: 0.0 - syst_JES_EtaIntercalibration_Stat103: 4.145663607916108e-22 - syst_JES_EtaIntercalibration_Stat104: 4.145663607916108e-22 - syst_JES_EtaIntercalibration_Stat105: 4.145663607916108e-22 + syst_JES_EtaIntercalibration_Stat103: 4.14566361e-22 + syst_JES_EtaIntercalibration_Stat104: 4.14566361e-22 + syst_JES_EtaIntercalibration_Stat105: 4.14566361e-22 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 7.718018398526917e-21 - syst_JES_EtaIntercalibration_Stat11: 2.48376085805377e-18 - syst_JES_EtaIntercalibration_Stat110: 7.536878416824833e-21 - syst_JES_EtaIntercalibration_Stat111: 7.323110814401213e-21 - syst_JES_EtaIntercalibration_Stat112: 7.323110814401213e-21 + syst_JES_EtaIntercalibration_Stat109: 7.71801840e-21 + syst_JES_EtaIntercalibration_Stat11: 2.48376086e-18 + syst_JES_EtaIntercalibration_Stat110: 7.53687842e-21 + syst_JES_EtaIntercalibration_Stat111: 7.32311081e-21 + syst_JES_EtaIntercalibration_Stat112: 7.32311081e-21 syst_JES_EtaIntercalibration_Stat113: 0.0 - syst_JES_EtaIntercalibration_Stat114: 8.430757305841509e-21 - syst_JES_EtaIntercalibration_Stat115: 1.9941295720188294e-16 - syst_JES_EtaIntercalibration_Stat116: 1.4392639611968334e-07 - syst_JES_EtaIntercalibration_Stat117: 1.7228548074344514e-07 - syst_JES_EtaIntercalibration_Stat118: 2.683931818712986e-07 - syst_JES_EtaIntercalibration_Stat119: 1.2192825811414676e-07 - syst_JES_EtaIntercalibration_Stat12: 3.1609917524225675e-14 - syst_JES_EtaIntercalibration_Stat120: 3.244173109242795e-14 - syst_JES_EtaIntercalibration_Stat121: 3.0293568624379664e-20 + syst_JES_EtaIntercalibration_Stat114: 8.43075731e-21 + syst_JES_EtaIntercalibration_Stat115: 1.99412957e-16 + syst_JES_EtaIntercalibration_Stat116: 1.43926396e-07 + syst_JES_EtaIntercalibration_Stat117: 1.72285481e-07 + syst_JES_EtaIntercalibration_Stat118: 2.68393182e-07 + syst_JES_EtaIntercalibration_Stat119: 1.21928258e-07 + syst_JES_EtaIntercalibration_Stat12: 3.16099175e-14 + syst_JES_EtaIntercalibration_Stat120: 3.24417311e-14 + syst_JES_EtaIntercalibration_Stat121: 3.02935686e-20 syst_JES_EtaIntercalibration_Stat122: 0.0 - syst_JES_EtaIntercalibration_Stat123: 4.145663607916108e-22 - syst_JES_EtaIntercalibration_Stat124: 4.145663607916108e-22 - syst_JES_EtaIntercalibration_Stat125: 4.145663607916108e-22 + syst_JES_EtaIntercalibration_Stat123: 4.14566361e-22 + syst_JES_EtaIntercalibration_Stat124: 4.14566361e-22 + syst_JES_EtaIntercalibration_Stat125: 4.14566361e-22 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 7.718018398526917e-21 - syst_JES_EtaIntercalibration_Stat129: 7.536878416824833e-21 + syst_JES_EtaIntercalibration_Stat128: 7.71801840e-21 + syst_JES_EtaIntercalibration_Stat129: 7.53687842e-21 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 6.091622690219742e-22 + syst_JES_EtaIntercalibration_Stat130: 6.09162269e-22 syst_JES_EtaIntercalibration_Stat131: 0.0 syst_JES_EtaIntercalibration_Stat132: 0.0 - syst_JES_EtaIntercalibration_Stat133: 8.430757305841509e-21 - syst_JES_EtaIntercalibration_Stat134: 1.2358181826977997e-07 - syst_JES_EtaIntercalibration_Stat135: 1.98053698526435e-07 - syst_JES_EtaIntercalibration_Stat136: 2.418966177419602e-07 - syst_JES_EtaIntercalibration_Stat137: 1.8344472600759063e-07 - syst_JES_EtaIntercalibration_Stat138: 1.5893763147851422e-07 - syst_JES_EtaIntercalibration_Stat139: 2.269380532215785e-16 + syst_JES_EtaIntercalibration_Stat133: 8.43075731e-21 + syst_JES_EtaIntercalibration_Stat134: 1.23581818e-07 + syst_JES_EtaIntercalibration_Stat135: 1.98053699e-07 + syst_JES_EtaIntercalibration_Stat136: 2.41896618e-07 + syst_JES_EtaIntercalibration_Stat137: 1.83444726e-07 + syst_JES_EtaIntercalibration_Stat138: 1.58937631e-07 + syst_JES_EtaIntercalibration_Stat139: 2.26938053e-16 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 3.0293568624379664e-20 + syst_JES_EtaIntercalibration_Stat140: 3.02935686e-20 syst_JES_EtaIntercalibration_Stat141: 0.0 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 4.145663607916108e-22 - syst_JES_EtaIntercalibration_Stat144: 4.145663607916108e-22 + syst_JES_EtaIntercalibration_Stat143: 4.14566361e-22 + syst_JES_EtaIntercalibration_Stat144: 4.14566361e-22 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 6.091622690219742e-22 - syst_JES_EtaIntercalibration_Stat148: 6.091622690219742e-22 + syst_JES_EtaIntercalibration_Stat147: 6.09162269e-22 + syst_JES_EtaIntercalibration_Stat148: 6.09162269e-22 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 syst_JES_EtaIntercalibration_Stat150: 0.0 syst_JES_EtaIntercalibration_Stat151: 0.0 - syst_JES_EtaIntercalibration_Stat152: 4.0417405594647255e-08 - syst_JES_EtaIntercalibration_Stat153: 2.735540668679594e-07 - syst_JES_EtaIntercalibration_Stat154: 4.3448812124153635e-07 - syst_JES_EtaIntercalibration_Stat155: 1.7349128940670193e-07 - syst_JES_EtaIntercalibration_Stat156: 2.9632189773116667e-07 - syst_JES_EtaIntercalibration_Stat157: 6.045736759692734e-14 + syst_JES_EtaIntercalibration_Stat152: 4.04174056e-08 + syst_JES_EtaIntercalibration_Stat153: 2.73554067e-07 + syst_JES_EtaIntercalibration_Stat154: 4.34488121e-07 + syst_JES_EtaIntercalibration_Stat155: 1.73491289e-07 + syst_JES_EtaIntercalibration_Stat156: 2.96321898e-07 + syst_JES_EtaIntercalibration_Stat157: 6.04573676e-14 syst_JES_EtaIntercalibration_Stat158: 0.0 syst_JES_EtaIntercalibration_Stat159: 0.0 syst_JES_EtaIntercalibration_Stat16: 0.0 @@ -9861,18 +9861,18 @@ bins: syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 6.091622690219742e-22 + syst_JES_EtaIntercalibration_Stat165: 6.09162269e-22 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 3.8487573458845134e-07 - syst_JES_EtaIntercalibration_Stat171: 5.618086773982759e-07 - syst_JES_EtaIntercalibration_Stat172: 9.712846802045219e-07 - syst_JES_EtaIntercalibration_Stat173: 1.0775842983265857e-06 - syst_JES_EtaIntercalibration_Stat174: 5.330505041738541e-07 - syst_JES_EtaIntercalibration_Stat175: 2.1100535082077892e-13 + syst_JES_EtaIntercalibration_Stat170: 3.84875735e-07 + syst_JES_EtaIntercalibration_Stat171: 5.61808677e-07 + syst_JES_EtaIntercalibration_Stat172: 9.71284680e-07 + syst_JES_EtaIntercalibration_Stat173: 1.07758430e-06 + syst_JES_EtaIntercalibration_Stat174: 5.33050504e-07 + syst_JES_EtaIntercalibration_Stat175: 2.11005351e-13 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 syst_JES_EtaIntercalibration_Stat178: 0.0 @@ -9885,14 +9885,14 @@ bins: syst_JES_EtaIntercalibration_Stat184: 0.0 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 - syst_JES_EtaIntercalibration_Stat187: 9.17167994426321e-08 - syst_JES_EtaIntercalibration_Stat188: 2.8645164949778176e-06 - syst_JES_EtaIntercalibration_Stat189: 4.4835077785144975e-06 + syst_JES_EtaIntercalibration_Stat187: 9.17167994e-08 + syst_JES_EtaIntercalibration_Stat188: 2.86451649e-06 + syst_JES_EtaIntercalibration_Stat189: 4.48350778e-06 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 5.615950209002926e-06 - syst_JES_EtaIntercalibration_Stat191: 4.074240389324126e-06 - syst_JES_EtaIntercalibration_Stat192: 7.991326986176951e-08 - syst_JES_EtaIntercalibration_Stat193: 3.2907233293001104e-14 + syst_JES_EtaIntercalibration_Stat190: 5.61595021e-06 + syst_JES_EtaIntercalibration_Stat191: 4.07424039e-06 + syst_JES_EtaIntercalibration_Stat192: 7.99132699e-08 + syst_JES_EtaIntercalibration_Stat193: 3.29072333e-14 syst_JES_EtaIntercalibration_Stat194: 0.0 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 @@ -9903,13 +9903,13 @@ bins: syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 syst_JES_EtaIntercalibration_Stat201: 0.0 - syst_JES_EtaIntercalibration_Stat202: 1.967671824136332e-07 - syst_JES_EtaIntercalibration_Stat203: 6.744726439967747e-06 - syst_JES_EtaIntercalibration_Stat204: 9.719964853331518e-06 - syst_JES_EtaIntercalibration_Stat205: 9.916490848581467e-06 - syst_JES_EtaIntercalibration_Stat206: 8.30679786379806e-06 - syst_JES_EtaIntercalibration_Stat207: 2.14147723546154e-07 - syst_JES_EtaIntercalibration_Stat208: 3.2907233293001104e-14 + syst_JES_EtaIntercalibration_Stat202: 1.96767182e-07 + syst_JES_EtaIntercalibration_Stat203: 6.74472644e-06 + syst_JES_EtaIntercalibration_Stat204: 9.71996485e-06 + syst_JES_EtaIntercalibration_Stat205: 9.91649085e-06 + syst_JES_EtaIntercalibration_Stat206: 8.30679786e-06 + syst_JES_EtaIntercalibration_Stat207: 2.14147724e-07 + syst_JES_EtaIntercalibration_Stat208: 3.29072333e-14 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 @@ -9917,38 +9917,38 @@ bins: syst_JES_EtaIntercalibration_Stat212: 0.0 syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 - syst_JES_EtaIntercalibration_Stat215: 2.445454657113887e-07 - syst_JES_EtaIntercalibration_Stat216: 8.2835290033898e-06 - syst_JES_EtaIntercalibration_Stat217: 1.1086632356130514e-05 - syst_JES_EtaIntercalibration_Stat218: 1.2152955648730067e-05 - syst_JES_EtaIntercalibration_Stat219: 9.87785840908848e-06 + syst_JES_EtaIntercalibration_Stat215: 2.44545466e-07 + syst_JES_EtaIntercalibration_Stat216: 8.28352900e-06 + syst_JES_EtaIntercalibration_Stat217: 1.10866324e-05 + syst_JES_EtaIntercalibration_Stat218: 1.21529556e-05 + syst_JES_EtaIntercalibration_Stat219: 9.87785841e-06 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 1.0509966079869145e-07 + syst_JES_EtaIntercalibration_Stat220: 1.05099661e-07 syst_JES_EtaIntercalibration_Stat221: 0.0 syst_JES_EtaIntercalibration_Stat222: 0.0 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 - syst_JES_EtaIntercalibration_Stat227: 5.510022867466158e-07 - syst_JES_EtaIntercalibration_Stat228: 2.2200162161569902e-05 - syst_JES_EtaIntercalibration_Stat229: 3.690732451695734e-05 + syst_JES_EtaIntercalibration_Stat227: 5.51002287e-07 + syst_JES_EtaIntercalibration_Stat228: 2.22001622e-05 + syst_JES_EtaIntercalibration_Stat229: 3.69073245e-05 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 3.579898986005052e-05 - syst_JES_EtaIntercalibration_Stat231: 3.13279811031608e-05 - syst_JES_EtaIntercalibration_Stat232: 4.826544804515959e-07 + syst_JES_EtaIntercalibration_Stat230: 3.57989899e-05 + syst_JES_EtaIntercalibration_Stat231: 3.13279811e-05 + syst_JES_EtaIntercalibration_Stat232: 4.82654480e-07 syst_JES_EtaIntercalibration_Stat233: 0.0 syst_JES_EtaIntercalibration_Stat234: 0.0 syst_JES_EtaIntercalibration_Stat235: 0.0 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 - syst_JES_EtaIntercalibration_Stat238: 1.4582555563069184e-07 - syst_JES_EtaIntercalibration_Stat239: 3.089692662709351e-06 + syst_JES_EtaIntercalibration_Stat238: 1.45825556e-07 + syst_JES_EtaIntercalibration_Stat239: 3.08969266e-06 syst_JES_EtaIntercalibration_Stat24: 0.0 - syst_JES_EtaIntercalibration_Stat240: 3.534636155249929e-06 - syst_JES_EtaIntercalibration_Stat241: 5.100700417589725e-06 - syst_JES_EtaIntercalibration_Stat242: 3.562287467344543e-06 - syst_JES_EtaIntercalibration_Stat243: 5.093961425060068e-08 + syst_JES_EtaIntercalibration_Stat240: 3.53463616e-06 + syst_JES_EtaIntercalibration_Stat241: 5.10070042e-06 + syst_JES_EtaIntercalibration_Stat242: 3.56228747e-06 + syst_JES_EtaIntercalibration_Stat243: 5.09396143e-08 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 syst_JES_EtaIntercalibration_Stat25: 0.0 @@ -9957,12 +9957,12 @@ bins: syst_JES_EtaIntercalibration_Stat28: 0.0 syst_JES_EtaIntercalibration_Stat29: 0.0 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 8.036238913198138e-21 - syst_JES_EtaIntercalibration_Stat31: 1.191279508553723e-07 - syst_JES_EtaIntercalibration_Stat32: 3.1607812119790892e-18 - syst_JES_EtaIntercalibration_Stat33: 3.1644609246364904e-14 - syst_JES_EtaIntercalibration_Stat34: 3.2623225573742226e-14 - syst_JES_EtaIntercalibration_Stat35: 2.8973865283418345e-20 + syst_JES_EtaIntercalibration_Stat30: 8.03623891e-21 + syst_JES_EtaIntercalibration_Stat31: 1.19127951e-07 + syst_JES_EtaIntercalibration_Stat32: 3.16078121e-18 + syst_JES_EtaIntercalibration_Stat33: 3.16446092e-14 + syst_JES_EtaIntercalibration_Stat34: 3.26232256e-14 + syst_JES_EtaIntercalibration_Stat35: 2.89738653e-20 syst_JES_EtaIntercalibration_Stat36: 0.0 syst_JES_EtaIntercalibration_Stat37: 0.0 syst_JES_EtaIntercalibration_Stat38: 0.0 @@ -9981,215 +9981,215 @@ bins: syst_JES_EtaIntercalibration_Stat5: 0.0 syst_JES_EtaIntercalibration_Stat50: 0.0 syst_JES_EtaIntercalibration_Stat51: 0.0 - syst_JES_EtaIntercalibration_Stat52: 3.998279479435499e-21 - syst_JES_EtaIntercalibration_Stat53: 1.790413730028621e-17 - syst_JES_EtaIntercalibration_Stat54: 1.0518744525752312e-07 - syst_JES_EtaIntercalibration_Stat55: 3.176009077952648e-14 - syst_JES_EtaIntercalibration_Stat56: 3.2658340800855004e-14 - syst_JES_EtaIntercalibration_Stat57: 1.0141346754746137e-19 + syst_JES_EtaIntercalibration_Stat52: 3.99827948e-21 + syst_JES_EtaIntercalibration_Stat53: 1.79041373e-17 + syst_JES_EtaIntercalibration_Stat54: 1.05187445e-07 + syst_JES_EtaIntercalibration_Stat55: 3.17600908e-14 + syst_JES_EtaIntercalibration_Stat56: 3.26583408e-14 + syst_JES_EtaIntercalibration_Stat57: 1.01413468e-19 syst_JES_EtaIntercalibration_Stat58: 0.0 syst_JES_EtaIntercalibration_Stat59: 0.0 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 4.145663607916108e-22 - syst_JES_EtaIntercalibration_Stat62: 4.145663607916108e-22 + syst_JES_EtaIntercalibration_Stat61: 4.14566361e-22 + syst_JES_EtaIntercalibration_Stat62: 4.14566361e-22 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 7.718018398526917e-21 - syst_JES_EtaIntercalibration_Stat69: 7.718018398526917e-21 + syst_JES_EtaIntercalibration_Stat68: 7.71801840e-21 + syst_JES_EtaIntercalibration_Stat69: 7.71801840e-21 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 7.323110814401213e-21 - syst_JES_EtaIntercalibration_Stat71: 7.323110814401213e-21 + syst_JES_EtaIntercalibration_Stat70: 7.32311081e-21 + syst_JES_EtaIntercalibration_Stat71: 7.32311081e-21 syst_JES_EtaIntercalibration_Stat72: 0.0 syst_JES_EtaIntercalibration_Stat73: 0.0 - syst_JES_EtaIntercalibration_Stat74: 1.2716454304561472e-17 - syst_JES_EtaIntercalibration_Stat75: 1.0005348719559953e-07 - syst_JES_EtaIntercalibration_Stat76: 4.963191548324803e-08 - syst_JES_EtaIntercalibration_Stat77: 1.411289948947416e-07 - syst_JES_EtaIntercalibration_Stat78: 1.0179262614528633e-07 - syst_JES_EtaIntercalibration_Stat79: 4.3693619313922717e-20 + syst_JES_EtaIntercalibration_Stat74: 1.27164543e-17 + syst_JES_EtaIntercalibration_Stat75: 1.00053487e-07 + syst_JES_EtaIntercalibration_Stat76: 4.96319155e-08 + syst_JES_EtaIntercalibration_Stat77: 1.41128995e-07 + syst_JES_EtaIntercalibration_Stat78: 1.01792626e-07 + syst_JES_EtaIntercalibration_Stat79: 4.36936193e-20 syst_JES_EtaIntercalibration_Stat8: 0.0 syst_JES_EtaIntercalibration_Stat80: 0.0 syst_JES_EtaIntercalibration_Stat81: 0.0 - syst_JES_EtaIntercalibration_Stat82: 4.145663607916108e-22 - syst_JES_EtaIntercalibration_Stat83: 4.145663607916108e-22 - syst_JES_EtaIntercalibration_Stat84: 4.145663607916108e-22 + syst_JES_EtaIntercalibration_Stat82: 4.14566361e-22 + syst_JES_EtaIntercalibration_Stat83: 4.14566361e-22 + syst_JES_EtaIntercalibration_Stat84: 4.14566361e-22 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 7.718018398526917e-21 - syst_JES_EtaIntercalibration_Stat9: 1.2654202667757262e-17 - syst_JES_EtaIntercalibration_Stat90: 7.718018398526917e-21 - syst_JES_EtaIntercalibration_Stat91: 7.323110814401213e-21 - syst_JES_EtaIntercalibration_Stat92: 7.323110814401213e-21 + syst_JES_EtaIntercalibration_Stat89: 7.71801840e-21 + syst_JES_EtaIntercalibration_Stat9: 1.26542027e-17 + syst_JES_EtaIntercalibration_Stat90: 7.71801840e-21 + syst_JES_EtaIntercalibration_Stat91: 7.32311081e-21 + syst_JES_EtaIntercalibration_Stat92: 7.32311081e-21 syst_JES_EtaIntercalibration_Stat93: 0.0 syst_JES_EtaIntercalibration_Stat94: 0.0 - syst_JES_EtaIntercalibration_Stat95: 1.2717474189771332e-17 - syst_JES_EtaIntercalibration_Stat96: 9.806006526614185e-08 - syst_JES_EtaIntercalibration_Stat97: 4.946165661398736e-08 - syst_JES_EtaIntercalibration_Stat98: 1.2023537416251507e-07 - syst_JES_EtaIntercalibration_Stat99: 2.545282261637793e-11 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.00041180349682828096 - syst_JES_Flavour_Comp: 0.0010751417534446328 - syst_JES_Flavour_Response: 4.016746504324115e-05 - syst_JES_Gjet_Generator: 0.0012451232499234766 - syst_JES_Gjet_OOC: 0.0010363542782272864 - syst_JES_Gjet_Purity: 0.0001862077334591665 - syst_JES_Gjet_Stat1: 3.1722775678524727e-06 - syst_JES_Gjet_Stat10: 1.8380440691125987e-05 - syst_JES_Gjet_Stat11: 1.791260450074193e-05 - syst_JES_Gjet_Stat12: 6.262996567139407e-05 - syst_JES_Gjet_Stat13: 0.00020315207973338592 - syst_JES_Gjet_Stat14: 0.0005445556238806096 - syst_JES_Gjet_Stat15: 0.0007717101593214903 - syst_JES_Gjet_Stat2: 3.338693569347148e-06 - syst_JES_Gjet_Stat3: 2.2677797512104212e-06 - syst_JES_Gjet_Stat4: 3.2996983195437734e-06 - syst_JES_Gjet_Stat5: 4.0977584262618515e-06 - syst_JES_Gjet_Stat6: 1.2110642303362775e-05 - syst_JES_Gjet_Stat7: 1.2567975045726339e-05 - syst_JES_Gjet_Stat8: 7.136051989720926e-06 - syst_JES_Gjet_Stat9: 1.3106795947141314e-05 - syst_JES_Gjet_Veto: 0.0010424470058472996 - syst_JES_Gjet_dPhi: 0.00011444727738133398 - syst_JES_LArESZee: 0.0018869008320523894 - syst_JES_LArEsmear: 0.00017250371010502934 - syst_JES_LAr_JVT: 0.0002138046772173144 - syst_JES_MJB_Alpha: 1.230779731511695e-05 - syst_JES_MJB_Asym: 0.00022350362413169053 - syst_JES_MJB_Beta: 1.0604367626124625e-05 - syst_JES_MJB_Fragmentation: 0.00010833456327506934 - syst_JES_MJB_Stat1: 6.142812011147664e-08 - syst_JES_MJB_Stat10: 1.8260197151181033e-05 - syst_JES_MJB_Stat11: 2.3205279571683684e-05 - syst_JES_MJB_Stat12: 3.796687425572456e-05 - syst_JES_MJB_Stat13: 4.1581133642554766e-05 - syst_JES_MJB_Stat14: 2.5716960842992317e-05 - syst_JES_MJB_Stat15: 3.969314392939919e-05 - syst_JES_MJB_Stat16: 4.385595826110747e-05 - syst_JES_MJB_Stat2: 5.432180471044753e-07 - syst_JES_MJB_Stat3: 1.6418989821240527e-06 - syst_JES_MJB_Stat4: 1.8443633047748485e-06 - syst_JES_MJB_Stat5: 2.711220700625458e-06 - syst_JES_MJB_Stat6: 3.3096231855001257e-06 - syst_JES_MJB_Stat7: 5.196881059828096e-06 - syst_JES_MJB_Stat8: 8.245765458706668e-06 - syst_JES_MJB_Stat9: 1.2680022791777624e-05 - syst_JES_MJB_Threshold: 0.00016825928651934788 - syst_JES_Pileup_MuOffset: 0.00025388199522612863 - syst_JES_Pileup_NPVOffset: 0.0002670614676436869 - syst_JES_Pileup_Pt_term: 0.00015084325473815527 - syst_JES_Pileup_Rho_topology: 0.0003332 - syst_JES_PunchThrough_MC15: 0.00026885335686950237 - syst_JES_SingleParticle_HighPt: 5.09409017882487e-09 - syst_JES_Zjet_MC: 0.00047560210260258516 - syst_JES_Zjet_MuScale: 3.5477595747175434e-05 - syst_JES_Zjet_MuSmearID: 8.658047398230158e-06 - syst_JES_Zjet_MuSmearMS: 0.0001349550769700792 - syst_JES_Zjet_OOC: 0.0002912309049534407 - syst_JES_Zjet_Stat1: 2.40137481455936e-05 - syst_JES_Zjet_Stat10: 2.2584992251493026e-05 - syst_JES_Zjet_Stat11: 3.2239303264803976e-05 - syst_JES_Zjet_Stat12: 8.723062578590159e-05 - syst_JES_Zjet_Stat13: 0.00013865422703617804 - syst_JES_Zjet_Stat2: 1.1836187477393215e-10 - syst_JES_Zjet_Stat3: 1.410829585740248e-05 - syst_JES_Zjet_Stat4: 1.3160098479874687e-05 - syst_JES_Zjet_Stat5: 1.2564636564580768e-05 - syst_JES_Zjet_Stat6: 1.2872754046823082e-05 - syst_JES_Zjet_Stat7: 1.2046988254331452e-05 - syst_JES_Zjet_Stat8: 1.2024888897615645e-05 - syst_JES_Zjet_Stat9: 1.373147158901769e-05 - syst_JES_Zjet_Veto: 6.129597927270598e-05 - syst_JES_Zjet_dPhi: 5.6115011137840827e-05 - syst_PRW: 2.873e-05 - syst_Unfolding_bias: 4.717e-06 - syst_cleaning: 0.00034304132269305396 - syst_lumi: 0.0010942 -- stat: 0.0003823 + syst_JES_EtaIntercalibration_Stat95: 1.27174742e-17 + syst_JES_EtaIntercalibration_Stat96: 9.80600653e-08 + syst_JES_EtaIntercalibration_Stat97: 4.94616566e-08 + syst_JES_EtaIntercalibration_Stat98: 1.20235374e-07 + syst_JES_EtaIntercalibration_Stat99: 2.54528226e-11 + syst_JES_EtaIntercalibration_TotalStat_MJB: 4.11803497e-04 + syst_JES_Flavour_Comp: 1.07514175e-03 + syst_JES_Flavour_Response: 4.01674650e-05 + syst_JES_Gjet_Generator: 1.24512325e-03 + syst_JES_Gjet_OOC: 1.03635428e-03 + syst_JES_Gjet_Purity: 1.86207733e-04 + syst_JES_Gjet_Stat1: 3.17227757e-06 + syst_JES_Gjet_Stat10: 1.83804407e-05 + syst_JES_Gjet_Stat11: 1.79126045e-05 + syst_JES_Gjet_Stat12: 6.26299657e-05 + syst_JES_Gjet_Stat13: 2.03152080e-04 + syst_JES_Gjet_Stat14: 5.44555624e-04 + syst_JES_Gjet_Stat15: 7.71710159e-04 + syst_JES_Gjet_Stat2: 3.33869357e-06 + syst_JES_Gjet_Stat3: 2.26777975e-06 + syst_JES_Gjet_Stat4: 3.29969832e-06 + syst_JES_Gjet_Stat5: 4.09775843e-06 + syst_JES_Gjet_Stat6: 1.21106423e-05 + syst_JES_Gjet_Stat7: 1.25679750e-05 + syst_JES_Gjet_Stat8: 7.13605199e-06 + syst_JES_Gjet_Stat9: 1.31067959e-05 + syst_JES_Gjet_Veto: 1.04244701e-03 + syst_JES_Gjet_dPhi: 1.14447277e-04 + syst_JES_LArESZee: 1.88690083e-03 + syst_JES_LArEsmear: 1.72503710e-04 + syst_JES_LAr_JVT: 2.13804677e-04 + syst_JES_MJB_Alpha: 1.23077973e-05 + syst_JES_MJB_Asym: 2.23503624e-04 + syst_JES_MJB_Beta: 1.06043676e-05 + syst_JES_MJB_Fragmentation: 1.08334563e-04 + syst_JES_MJB_Stat1: 6.14281201e-08 + syst_JES_MJB_Stat10: 1.82601972e-05 + syst_JES_MJB_Stat11: 2.32052796e-05 + syst_JES_MJB_Stat12: 3.79668743e-05 + syst_JES_MJB_Stat13: 4.15811336e-05 + syst_JES_MJB_Stat14: 2.57169608e-05 + syst_JES_MJB_Stat15: 3.96931439e-05 + syst_JES_MJB_Stat16: 4.38559583e-05 + syst_JES_MJB_Stat2: 5.43218047e-07 + syst_JES_MJB_Stat3: 1.64189898e-06 + syst_JES_MJB_Stat4: 1.84436330e-06 + syst_JES_MJB_Stat5: 2.71122070e-06 + syst_JES_MJB_Stat6: 3.30962319e-06 + syst_JES_MJB_Stat7: 5.19688106e-06 + syst_JES_MJB_Stat8: 8.24576546e-06 + syst_JES_MJB_Stat9: 1.26800228e-05 + syst_JES_MJB_Threshold: 1.68259287e-04 + syst_JES_Pileup_MuOffset: 2.53881995e-04 + syst_JES_Pileup_NPVOffset: 2.67061468e-04 + syst_JES_Pileup_Pt_term: 1.50843255e-04 + syst_JES_Pileup_Rho_topology: 3.33200000e-04 + syst_JES_PunchThrough_MC15: 2.68853357e-04 + syst_JES_SingleParticle_HighPt: 5.09409018e-09 + syst_JES_Zjet_MC: 4.75602103e-04 + syst_JES_Zjet_MuScale: 3.54775957e-05 + syst_JES_Zjet_MuSmearID: 8.65804740e-06 + syst_JES_Zjet_MuSmearMS: 1.34955077e-04 + syst_JES_Zjet_OOC: 2.91230905e-04 + syst_JES_Zjet_Stat1: 2.40137481e-05 + syst_JES_Zjet_Stat10: 2.25849923e-05 + syst_JES_Zjet_Stat11: 3.22393033e-05 + syst_JES_Zjet_Stat12: 8.72306258e-05 + syst_JES_Zjet_Stat13: 1.38654227e-04 + syst_JES_Zjet_Stat2: 1.18361875e-10 + syst_JES_Zjet_Stat3: 1.41082959e-05 + syst_JES_Zjet_Stat4: 1.31600985e-05 + syst_JES_Zjet_Stat5: 1.25646366e-05 + syst_JES_Zjet_Stat6: 1.28727540e-05 + syst_JES_Zjet_Stat7: 1.20469883e-05 + syst_JES_Zjet_Stat8: 1.20248889e-05 + syst_JES_Zjet_Stat9: 1.37314716e-05 + syst_JES_Zjet_Veto: 6.12959793e-05 + syst_JES_Zjet_dPhi: 5.61150111e-05 + syst_PRW: 2.87300000e-05 + syst_Unfolding_bias: 4.71700000e-06 + syst_cleaning: 3.43041323e-04 + syst_lumi: 1.09420000e-03 +- stat: 3.82300000e-04 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 8.444977486648499e-05 - syst_JER_NP1: 7.393685870389681e-06 - syst_JER_NP2: 3.7046798444669956e-05 - syst_JER_NP3: 6.035353179392238e-06 - syst_JER_NP4: 1.9901054161777464e-05 - syst_JER_NP5: 1.000786735523608e-05 - syst_JER_NP6: 1.1198432245185039e-05 - syst_JER_NP7: 8.886156480728887e-06 - syst_JER_NP8: 2.1445356140665975e-05 - syst_JES_EtaIntercalibration_Modelling: 0.0005415930852586654 + syst_JER_NP0: 8.44497749e-05 + syst_JER_NP1: 7.39368587e-06 + syst_JER_NP2: 3.70467984e-05 + syst_JER_NP3: 6.03535318e-06 + syst_JER_NP4: 1.99010542e-05 + syst_JER_NP5: 1.00078674e-05 + syst_JER_NP6: 1.11984322e-05 + syst_JER_NP7: 8.88615648e-06 + syst_JER_NP8: 2.14453561e-05 + syst_JES_EtaIntercalibration_Modelling: 5.41593085e-04 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 - syst_JES_EtaIntercalibration_Stat10: 3.356540611999205e-20 - syst_JES_EtaIntercalibration_Stat100: 4.512582206176416e-19 + syst_JES_EtaIntercalibration_Stat10: 3.35654061e-20 + syst_JES_EtaIntercalibration_Stat100: 4.51258221e-19 syst_JES_EtaIntercalibration_Stat101: 0.0 syst_JES_EtaIntercalibration_Stat102: 0.0 - syst_JES_EtaIntercalibration_Stat103: 1.482635491278959e-22 - syst_JES_EtaIntercalibration_Stat104: 1.482635491278959e-22 - syst_JES_EtaIntercalibration_Stat105: 1.482635491278959e-22 + syst_JES_EtaIntercalibration_Stat103: 1.48263549e-22 + syst_JES_EtaIntercalibration_Stat104: 1.48263549e-22 + syst_JES_EtaIntercalibration_Stat105: 1.48263549e-22 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 2.560837118990585e-21 - syst_JES_EtaIntercalibration_Stat11: 4.371696238303846e-19 - syst_JES_EtaIntercalibration_Stat110: 2.4979561004949626e-21 - syst_JES_EtaIntercalibration_Stat111: 2.478564705631063e-21 - syst_JES_EtaIntercalibration_Stat112: 2.478564705631063e-21 + syst_JES_EtaIntercalibration_Stat109: 2.56083712e-21 + syst_JES_EtaIntercalibration_Stat11: 4.37169624e-19 + syst_JES_EtaIntercalibration_Stat110: 2.49795610e-21 + syst_JES_EtaIntercalibration_Stat111: 2.47856471e-21 + syst_JES_EtaIntercalibration_Stat112: 2.47856471e-21 syst_JES_EtaIntercalibration_Stat113: 0.0 - syst_JES_EtaIntercalibration_Stat114: 2.770415266706419e-21 - syst_JES_EtaIntercalibration_Stat115: 4.206271835010191e-17 - syst_JES_EtaIntercalibration_Stat116: 9.396271534497074e-08 - syst_JES_EtaIntercalibration_Stat117: 1.0791126111300897e-07 - syst_JES_EtaIntercalibration_Stat118: 8.5642105736606e-08 - syst_JES_EtaIntercalibration_Stat119: 2.4760791586700132e-08 - syst_JES_EtaIntercalibration_Stat12: 6.103744043368557e-15 - syst_JES_EtaIntercalibration_Stat120: 6.280492730882566e-15 - syst_JES_EtaIntercalibration_Stat121: 9.342682056026524e-21 + syst_JES_EtaIntercalibration_Stat114: 2.77041527e-21 + syst_JES_EtaIntercalibration_Stat115: 4.20627184e-17 + syst_JES_EtaIntercalibration_Stat116: 9.39627153e-08 + syst_JES_EtaIntercalibration_Stat117: 1.07911261e-07 + syst_JES_EtaIntercalibration_Stat118: 8.56421057e-08 + syst_JES_EtaIntercalibration_Stat119: 2.47607916e-08 + syst_JES_EtaIntercalibration_Stat12: 6.10374404e-15 + syst_JES_EtaIntercalibration_Stat120: 6.28049273e-15 + syst_JES_EtaIntercalibration_Stat121: 9.34268206e-21 syst_JES_EtaIntercalibration_Stat122: 0.0 - syst_JES_EtaIntercalibration_Stat123: 1.482635491278959e-22 - syst_JES_EtaIntercalibration_Stat124: 1.482635491278959e-22 - syst_JES_EtaIntercalibration_Stat125: 1.482635491278959e-22 + syst_JES_EtaIntercalibration_Stat123: 1.48263549e-22 + syst_JES_EtaIntercalibration_Stat124: 1.48263549e-22 + syst_JES_EtaIntercalibration_Stat125: 1.48263549e-22 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 2.560837118990585e-21 - syst_JES_EtaIntercalibration_Stat129: 2.4979561004949626e-21 + syst_JES_EtaIntercalibration_Stat128: 2.56083712e-21 + syst_JES_EtaIntercalibration_Stat129: 2.49795610e-21 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 2.12869044250215e-22 + syst_JES_EtaIntercalibration_Stat130: 2.12869044e-22 syst_JES_EtaIntercalibration_Stat131: 0.0 syst_JES_EtaIntercalibration_Stat132: 0.0 - syst_JES_EtaIntercalibration_Stat133: 2.770415266706419e-21 - syst_JES_EtaIntercalibration_Stat134: 2.398024212540243e-08 - syst_JES_EtaIntercalibration_Stat135: 1.2870939825824688e-07 - syst_JES_EtaIntercalibration_Stat136: 1.5711898771313414e-07 - syst_JES_EtaIntercalibration_Stat137: 1.138699814481411e-07 - syst_JES_EtaIntercalibration_Stat138: 1.1627720101120425e-07 - syst_JES_EtaIntercalibration_Stat139: 5.2383486739620537e-17 + syst_JES_EtaIntercalibration_Stat133: 2.77041527e-21 + syst_JES_EtaIntercalibration_Stat134: 2.39802421e-08 + syst_JES_EtaIntercalibration_Stat135: 1.28709398e-07 + syst_JES_EtaIntercalibration_Stat136: 1.57118988e-07 + syst_JES_EtaIntercalibration_Stat137: 1.13869981e-07 + syst_JES_EtaIntercalibration_Stat138: 1.16277201e-07 + syst_JES_EtaIntercalibration_Stat139: 5.23834867e-17 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 9.342682056026524e-21 + syst_JES_EtaIntercalibration_Stat140: 9.34268206e-21 syst_JES_EtaIntercalibration_Stat141: 0.0 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 1.482635491278959e-22 - syst_JES_EtaIntercalibration_Stat144: 1.482635491278959e-22 + syst_JES_EtaIntercalibration_Stat143: 1.48263549e-22 + syst_JES_EtaIntercalibration_Stat144: 1.48263549e-22 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 2.12869044250215e-22 - syst_JES_EtaIntercalibration_Stat148: 2.12869044250215e-22 + syst_JES_EtaIntercalibration_Stat147: 2.12869044e-22 + syst_JES_EtaIntercalibration_Stat148: 2.12869044e-22 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 syst_JES_EtaIntercalibration_Stat150: 0.0 syst_JES_EtaIntercalibration_Stat151: 0.0 - syst_JES_EtaIntercalibration_Stat152: 8.442881661485855e-09 - syst_JES_EtaIntercalibration_Stat153: 2.0465082457688753e-07 - syst_JES_EtaIntercalibration_Stat154: 2.826210714012669e-07 - syst_JES_EtaIntercalibration_Stat155: 1.0735565599911354e-07 - syst_JES_EtaIntercalibration_Stat156: 1.7912760591265657e-07 - syst_JES_EtaIntercalibration_Stat157: 1.1712854720669082e-14 + syst_JES_EtaIntercalibration_Stat152: 8.44288166e-09 + syst_JES_EtaIntercalibration_Stat153: 2.04650825e-07 + syst_JES_EtaIntercalibration_Stat154: 2.82621071e-07 + syst_JES_EtaIntercalibration_Stat155: 1.07355656e-07 + syst_JES_EtaIntercalibration_Stat156: 1.79127606e-07 + syst_JES_EtaIntercalibration_Stat157: 1.17128547e-14 syst_JES_EtaIntercalibration_Stat158: 0.0 syst_JES_EtaIntercalibration_Stat159: 0.0 syst_JES_EtaIntercalibration_Stat16: 0.0 @@ -10198,18 +10198,18 @@ bins: syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 2.12869044250215e-22 + syst_JES_EtaIntercalibration_Stat165: 2.12869044e-22 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 1.6944980321027228e-07 - syst_JES_EtaIntercalibration_Stat171: 5.398089662093434e-07 - syst_JES_EtaIntercalibration_Stat172: 6.893484895174573e-07 - syst_JES_EtaIntercalibration_Stat173: 6.717152075098494e-07 - syst_JES_EtaIntercalibration_Stat174: 5.298639707509843e-07 - syst_JES_EtaIntercalibration_Stat175: 3.848846615221241e-14 + syst_JES_EtaIntercalibration_Stat170: 1.69449803e-07 + syst_JES_EtaIntercalibration_Stat171: 5.39808966e-07 + syst_JES_EtaIntercalibration_Stat172: 6.89348490e-07 + syst_JES_EtaIntercalibration_Stat173: 6.71715208e-07 + syst_JES_EtaIntercalibration_Stat174: 5.29863971e-07 + syst_JES_EtaIntercalibration_Stat175: 3.84884662e-14 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 syst_JES_EtaIntercalibration_Stat178: 0.0 @@ -10222,14 +10222,14 @@ bins: syst_JES_EtaIntercalibration_Stat184: 0.0 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 - syst_JES_EtaIntercalibration_Stat187: 3.200455774963934e-08 - syst_JES_EtaIntercalibration_Stat188: 2.0050897112099495e-06 - syst_JES_EtaIntercalibration_Stat189: 3.4188244690244046e-06 + syst_JES_EtaIntercalibration_Stat187: 3.20045577e-08 + syst_JES_EtaIntercalibration_Stat188: 2.00508971e-06 + syst_JES_EtaIntercalibration_Stat189: 3.41882447e-06 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 3.87127795437114e-06 - syst_JES_EtaIntercalibration_Stat191: 2.7778875067216097e-06 - syst_JES_EtaIntercalibration_Stat192: 3.415124420500665e-08 - syst_JES_EtaIntercalibration_Stat193: 6.376545048064822e-15 + syst_JES_EtaIntercalibration_Stat190: 3.87127795e-06 + syst_JES_EtaIntercalibration_Stat191: 2.77788751e-06 + syst_JES_EtaIntercalibration_Stat192: 3.41512442e-08 + syst_JES_EtaIntercalibration_Stat193: 6.37654505e-15 syst_JES_EtaIntercalibration_Stat194: 0.0 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 @@ -10240,13 +10240,13 @@ bins: syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 syst_JES_EtaIntercalibration_Stat201: 0.0 - syst_JES_EtaIntercalibration_Stat202: 1.2798461343067768e-07 - syst_JES_EtaIntercalibration_Stat203: 4.834531414728835e-06 - syst_JES_EtaIntercalibration_Stat204: 6.886342570624846e-06 - syst_JES_EtaIntercalibration_Stat205: 6.737292093267146e-06 - syst_JES_EtaIntercalibration_Stat206: 5.632892751508766e-06 - syst_JES_EtaIntercalibration_Stat207: 7.758326686051574e-08 - syst_JES_EtaIntercalibration_Stat208: 6.376545048064822e-15 + syst_JES_EtaIntercalibration_Stat202: 1.27984613e-07 + syst_JES_EtaIntercalibration_Stat203: 4.83453141e-06 + syst_JES_EtaIntercalibration_Stat204: 6.88634257e-06 + syst_JES_EtaIntercalibration_Stat205: 6.73729209e-06 + syst_JES_EtaIntercalibration_Stat206: 5.63289275e-06 + syst_JES_EtaIntercalibration_Stat207: 7.75832669e-08 + syst_JES_EtaIntercalibration_Stat208: 6.37654505e-15 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 @@ -10254,38 +10254,38 @@ bins: syst_JES_EtaIntercalibration_Stat212: 0.0 syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 - syst_JES_EtaIntercalibration_Stat215: 1.2351907575350457e-07 - syst_JES_EtaIntercalibration_Stat216: 5.928632620596423e-06 - syst_JES_EtaIntercalibration_Stat217: 7.665114138093444e-06 - syst_JES_EtaIntercalibration_Stat218: 8.204150336872184e-06 - syst_JES_EtaIntercalibration_Stat219: 6.628334406168717e-06 + syst_JES_EtaIntercalibration_Stat215: 1.23519076e-07 + syst_JES_EtaIntercalibration_Stat216: 5.92863262e-06 + syst_JES_EtaIntercalibration_Stat217: 7.66511414e-06 + syst_JES_EtaIntercalibration_Stat218: 8.20415034e-06 + syst_JES_EtaIntercalibration_Stat219: 6.62833441e-06 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 4.7332775114079246e-08 + syst_JES_EtaIntercalibration_Stat220: 4.73327751e-08 syst_JES_EtaIntercalibration_Stat221: 0.0 syst_JES_EtaIntercalibration_Stat222: 0.0 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 - syst_JES_EtaIntercalibration_Stat227: 5.143890648137847e-07 - syst_JES_EtaIntercalibration_Stat228: 1.5276292089378235e-05 - syst_JES_EtaIntercalibration_Stat229: 2.466515913186047e-05 + syst_JES_EtaIntercalibration_Stat227: 5.14389065e-07 + syst_JES_EtaIntercalibration_Stat228: 1.52762921e-05 + syst_JES_EtaIntercalibration_Stat229: 2.46651591e-05 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 2.4408082165545083e-05 - syst_JES_EtaIntercalibration_Stat231: 2.070332038587047e-05 - syst_JES_EtaIntercalibration_Stat232: 4.2541403676301053e-07 + syst_JES_EtaIntercalibration_Stat230: 2.44080822e-05 + syst_JES_EtaIntercalibration_Stat231: 2.07033204e-05 + syst_JES_EtaIntercalibration_Stat232: 4.25414037e-07 syst_JES_EtaIntercalibration_Stat233: 0.0 syst_JES_EtaIntercalibration_Stat234: 0.0 syst_JES_EtaIntercalibration_Stat235: 0.0 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 - syst_JES_EtaIntercalibration_Stat238: 9.106388197304133e-08 - syst_JES_EtaIntercalibration_Stat239: 2.2983576745145656e-06 + syst_JES_EtaIntercalibration_Stat238: 9.10638820e-08 + syst_JES_EtaIntercalibration_Stat239: 2.29835767e-06 syst_JES_EtaIntercalibration_Stat24: 0.0 - syst_JES_EtaIntercalibration_Stat240: 2.502197584124803e-06 - syst_JES_EtaIntercalibration_Stat241: 3.4171804166593256e-06 - syst_JES_EtaIntercalibration_Stat242: 2.3759013026638962e-06 - syst_JES_EtaIntercalibration_Stat243: 1.8619546181365432e-08 + syst_JES_EtaIntercalibration_Stat240: 2.50219758e-06 + syst_JES_EtaIntercalibration_Stat241: 3.41718042e-06 + syst_JES_EtaIntercalibration_Stat242: 2.37590130e-06 + syst_JES_EtaIntercalibration_Stat243: 1.86195462e-08 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 syst_JES_EtaIntercalibration_Stat25: 0.0 @@ -10294,12 +10294,12 @@ bins: syst_JES_EtaIntercalibration_Stat28: 0.0 syst_JES_EtaIntercalibration_Stat29: 0.0 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 2.634959339344727e-21 - syst_JES_EtaIntercalibration_Stat31: 3.602864554767498e-08 - syst_JES_EtaIntercalibration_Stat32: 5.809978033521298e-19 - syst_JES_EtaIntercalibration_Stat33: 6.108953573350248e-15 - syst_JES_EtaIntercalibration_Stat34: 6.3168018238039315e-15 - syst_JES_EtaIntercalibration_Stat35: 8.901711017371886e-21 + syst_JES_EtaIntercalibration_Stat30: 2.63495934e-21 + syst_JES_EtaIntercalibration_Stat31: 3.60286455e-08 + syst_JES_EtaIntercalibration_Stat32: 5.80997803e-19 + syst_JES_EtaIntercalibration_Stat33: 6.10895357e-15 + syst_JES_EtaIntercalibration_Stat34: 6.31680182e-15 + syst_JES_EtaIntercalibration_Stat35: 8.90171102e-21 syst_JES_EtaIntercalibration_Stat36: 0.0 syst_JES_EtaIntercalibration_Stat37: 0.0 syst_JES_EtaIntercalibration_Stat38: 0.0 @@ -10318,215 +10318,215 @@ bins: syst_JES_EtaIntercalibration_Stat5: 0.0 syst_JES_EtaIntercalibration_Stat50: 0.0 syst_JES_EtaIntercalibration_Stat51: 0.0 - syst_JES_EtaIntercalibration_Stat52: 5.869886333439516e-22 - syst_JES_EtaIntercalibration_Stat53: 4.20242082895978e-18 - syst_JES_EtaIntercalibration_Stat54: 1.920844339687592e-08 - syst_JES_EtaIntercalibration_Stat55: 6.1303894481110054e-15 - syst_JES_EtaIntercalibration_Stat56: 6.322961783495952e-15 - syst_JES_EtaIntercalibration_Stat57: 2.907401024970584e-20 + syst_JES_EtaIntercalibration_Stat52: 5.86988633e-22 + syst_JES_EtaIntercalibration_Stat53: 4.20242083e-18 + syst_JES_EtaIntercalibration_Stat54: 1.92084434e-08 + syst_JES_EtaIntercalibration_Stat55: 6.13038945e-15 + syst_JES_EtaIntercalibration_Stat56: 6.32296178e-15 + syst_JES_EtaIntercalibration_Stat57: 2.90740102e-20 syst_JES_EtaIntercalibration_Stat58: 0.0 syst_JES_EtaIntercalibration_Stat59: 0.0 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 1.482635491278959e-22 - syst_JES_EtaIntercalibration_Stat62: 1.482635491278959e-22 + syst_JES_EtaIntercalibration_Stat61: 1.48263549e-22 + syst_JES_EtaIntercalibration_Stat62: 1.48263549e-22 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 2.560837118990585e-21 - syst_JES_EtaIntercalibration_Stat69: 2.560837118990585e-21 + syst_JES_EtaIntercalibration_Stat68: 2.56083712e-21 + syst_JES_EtaIntercalibration_Stat69: 2.56083712e-21 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 2.478564705631063e-21 - syst_JES_EtaIntercalibration_Stat71: 2.478564705631063e-21 + syst_JES_EtaIntercalibration_Stat70: 2.47856471e-21 + syst_JES_EtaIntercalibration_Stat71: 2.47856471e-21 syst_JES_EtaIntercalibration_Stat72: 0.0 syst_JES_EtaIntercalibration_Stat73: 0.0 - syst_JES_EtaIntercalibration_Stat74: 3.0651957361113174e-18 - syst_JES_EtaIntercalibration_Stat75: 2.3458015154739756e-08 - syst_JES_EtaIntercalibration_Stat76: 3.2268106461812007e-08 - syst_JES_EtaIntercalibration_Stat77: 1.1463917425993612e-07 - syst_JES_EtaIntercalibration_Stat78: 6.62769241874419e-08 - syst_JES_EtaIntercalibration_Stat79: 9.333501915144177e-21 + syst_JES_EtaIntercalibration_Stat74: 3.06519574e-18 + syst_JES_EtaIntercalibration_Stat75: 2.34580152e-08 + syst_JES_EtaIntercalibration_Stat76: 3.22681065e-08 + syst_JES_EtaIntercalibration_Stat77: 1.14639174e-07 + syst_JES_EtaIntercalibration_Stat78: 6.62769242e-08 + syst_JES_EtaIntercalibration_Stat79: 9.33350192e-21 syst_JES_EtaIntercalibration_Stat8: 0.0 syst_JES_EtaIntercalibration_Stat80: 0.0 syst_JES_EtaIntercalibration_Stat81: 0.0 - syst_JES_EtaIntercalibration_Stat82: 1.482635491278959e-22 - syst_JES_EtaIntercalibration_Stat83: 1.482635491278959e-22 - syst_JES_EtaIntercalibration_Stat84: 1.482635491278959e-22 + syst_JES_EtaIntercalibration_Stat82: 1.48263549e-22 + syst_JES_EtaIntercalibration_Stat83: 1.48263549e-22 + syst_JES_EtaIntercalibration_Stat84: 1.48263549e-22 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 2.560837118990585e-21 - syst_JES_EtaIntercalibration_Stat9: 3.046788261990116e-18 - syst_JES_EtaIntercalibration_Stat90: 2.560837118990585e-21 - syst_JES_EtaIntercalibration_Stat91: 2.478564705631063e-21 - syst_JES_EtaIntercalibration_Stat92: 2.478564705631063e-21 + syst_JES_EtaIntercalibration_Stat89: 2.56083712e-21 + syst_JES_EtaIntercalibration_Stat9: 3.04678826e-18 + syst_JES_EtaIntercalibration_Stat90: 2.56083712e-21 + syst_JES_EtaIntercalibration_Stat91: 2.47856471e-21 + syst_JES_EtaIntercalibration_Stat92: 2.47856471e-21 syst_JES_EtaIntercalibration_Stat93: 0.0 syst_JES_EtaIntercalibration_Stat94: 0.0 - syst_JES_EtaIntercalibration_Stat95: 3.066632955588262e-18 - syst_JES_EtaIntercalibration_Stat96: 3.2220339550507536e-08 - syst_JES_EtaIntercalibration_Stat97: 3.2166857166966126e-08 - syst_JES_EtaIntercalibration_Stat98: 7.220572743903354e-08 - syst_JES_EtaIntercalibration_Stat99: 4.884391524059061e-12 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.00028741127326533316 - syst_JES_Flavour_Comp: 0.0007469645557186767 - syst_JES_Flavour_Response: 4.68518526848192e-05 - syst_JES_Gjet_Generator: 0.000834134713340717 - syst_JES_Gjet_OOC: 0.0006957138635962345 - syst_JES_Gjet_Purity: 0.0001244780338051658 - syst_JES_Gjet_Stat1: 2.4332724400485863e-06 - syst_JES_Gjet_Stat10: 1.2491313411727366e-05 - syst_JES_Gjet_Stat11: 1.2419740124092775e-05 - syst_JES_Gjet_Stat12: 4.008779887634141e-05 - syst_JES_Gjet_Stat13: 0.0001341066123462971 - syst_JES_Gjet_Stat14: 0.00035903813167963096 - syst_JES_Gjet_Stat15: 0.0005491982952449871 - syst_JES_Gjet_Stat2: 2.492899831020091e-06 - syst_JES_Gjet_Stat3: 1.9721625186581354e-06 - syst_JES_Gjet_Stat4: 2.1522248953118256e-06 - syst_JES_Gjet_Stat5: 2.7272337633580295e-06 - syst_JES_Gjet_Stat6: 9.242999012766365e-06 - syst_JES_Gjet_Stat7: 8.217963662002893e-06 - syst_JES_Gjet_Stat8: 4.9801255004266705e-06 - syst_JES_Gjet_Stat9: 8.640496672645618e-06 - syst_JES_Gjet_Veto: 0.0007009181549938623 - syst_JES_Gjet_dPhi: 7.832053035443517e-05 - syst_JES_LArESZee: 0.001260105284291753 - syst_JES_LArEsmear: 0.00011615082737544319 - syst_JES_LAr_JVT: 0.000144703386276894 - syst_JES_MJB_Alpha: 1.0087715598687345e-05 - syst_JES_MJB_Asym: 0.00015575361151511064 - syst_JES_MJB_Beta: 7.2571411037680675e-06 - syst_JES_MJB_Fragmentation: 6.958406857894987e-05 - syst_JES_MJB_Stat1: 1.5582139415048243e-08 - syst_JES_MJB_Stat10: 1.2030334450878745e-05 - syst_JES_MJB_Stat11: 1.5686091769462528e-05 - syst_JES_MJB_Stat12: 2.6403647475301592e-05 - syst_JES_MJB_Stat13: 3.2156717416427936e-05 - syst_JES_MJB_Stat14: 2.3119182511498976e-05 - syst_JES_MJB_Stat15: 4.957238041490443e-05 - syst_JES_MJB_Stat16: 3.162856738772719e-05 - syst_JES_MJB_Stat2: 3.581347525453932e-07 - syst_JES_MJB_Stat3: 9.867587496445116e-07 - syst_JES_MJB_Stat4: 9.091011756124837e-07 - syst_JES_MJB_Stat5: 1.5148088881109723e-06 - syst_JES_MJB_Stat6: 1.982538692560627e-06 - syst_JES_MJB_Stat7: 3.3473413330582225e-06 - syst_JES_MJB_Stat8: 5.2329300348848545e-06 - syst_JES_MJB_Stat9: 7.982167813319887e-06 - syst_JES_MJB_Threshold: 0.0001202912202739668 - syst_JES_Pileup_MuOffset: 0.00017187445272640143 - syst_JES_Pileup_NPVOffset: 0.00018166157408764242 - syst_JES_Pileup_Pt_term: 9.968855551165339e-05 - syst_JES_Pileup_Rho_topology: 0.00022060072529345864 - syst_JES_PunchThrough_MC15: 0.00020345033792058446 - syst_JES_SingleParticle_HighPt: 1.5253094767947914e-08 - syst_JES_Zjet_MC: 0.0003191195857355045 - syst_JES_Zjet_MuScale: 2.398289546739509e-05 - syst_JES_Zjet_MuSmearID: 6.416748456188695e-06 - syst_JES_Zjet_MuSmearMS: 8.970640612576117e-05 - syst_JES_Zjet_OOC: 0.00019941624808425217 - syst_JES_Zjet_Stat1: 1.952580023968288e-05 - syst_JES_Zjet_Stat10: 1.5066379790779203e-05 - syst_JES_Zjet_Stat11: 2.2414499771353363e-05 - syst_JES_Zjet_Stat12: 5.6871281856487116e-05 - syst_JES_Zjet_Stat13: 9.034235330120642e-05 - syst_JES_Zjet_Stat2: 1.4311399372528182e-09 - syst_JES_Zjet_Stat3: 1.0679466325617587e-05 - syst_JES_Zjet_Stat4: 1.0129184110776149e-05 - syst_JES_Zjet_Stat5: 9.294546075521923e-06 - syst_JES_Zjet_Stat6: 9.346006794348053e-06 - syst_JES_Zjet_Stat7: 8.959529619349443e-06 - syst_JES_Zjet_Stat8: 8.04472118845644e-06 - syst_JES_Zjet_Stat9: 9.430585771838354e-06 - syst_JES_Zjet_Veto: 4.097538132830493e-05 - syst_JES_Zjet_dPhi: 3.777590601163657e-05 + syst_JES_EtaIntercalibration_Stat95: 3.06663296e-18 + syst_JES_EtaIntercalibration_Stat96: 3.22203396e-08 + syst_JES_EtaIntercalibration_Stat97: 3.21668572e-08 + syst_JES_EtaIntercalibration_Stat98: 7.22057274e-08 + syst_JES_EtaIntercalibration_Stat99: 4.88439152e-12 + syst_JES_EtaIntercalibration_TotalStat_MJB: 2.87411273e-04 + syst_JES_Flavour_Comp: 7.46964556e-04 + syst_JES_Flavour_Response: 4.68518527e-05 + syst_JES_Gjet_Generator: 8.34134713e-04 + syst_JES_Gjet_OOC: 6.95713864e-04 + syst_JES_Gjet_Purity: 1.24478034e-04 + syst_JES_Gjet_Stat1: 2.43327244e-06 + syst_JES_Gjet_Stat10: 1.24913134e-05 + syst_JES_Gjet_Stat11: 1.24197401e-05 + syst_JES_Gjet_Stat12: 4.00877989e-05 + syst_JES_Gjet_Stat13: 1.34106612e-04 + syst_JES_Gjet_Stat14: 3.59038132e-04 + syst_JES_Gjet_Stat15: 5.49198295e-04 + syst_JES_Gjet_Stat2: 2.49289983e-06 + syst_JES_Gjet_Stat3: 1.97216252e-06 + syst_JES_Gjet_Stat4: 2.15222490e-06 + syst_JES_Gjet_Stat5: 2.72723376e-06 + syst_JES_Gjet_Stat6: 9.24299901e-06 + syst_JES_Gjet_Stat7: 8.21796366e-06 + syst_JES_Gjet_Stat8: 4.98012550e-06 + syst_JES_Gjet_Stat9: 8.64049667e-06 + syst_JES_Gjet_Veto: 7.00918155e-04 + syst_JES_Gjet_dPhi: 7.83205304e-05 + syst_JES_LArESZee: 1.26010528e-03 + syst_JES_LArEsmear: 1.16150827e-04 + syst_JES_LAr_JVT: 1.44703386e-04 + syst_JES_MJB_Alpha: 1.00877156e-05 + syst_JES_MJB_Asym: 1.55753612e-04 + syst_JES_MJB_Beta: 7.25714110e-06 + syst_JES_MJB_Fragmentation: 6.95840686e-05 + syst_JES_MJB_Stat1: 1.55821394e-08 + syst_JES_MJB_Stat10: 1.20303345e-05 + syst_JES_MJB_Stat11: 1.56860918e-05 + syst_JES_MJB_Stat12: 2.64036475e-05 + syst_JES_MJB_Stat13: 3.21567174e-05 + syst_JES_MJB_Stat14: 2.31191825e-05 + syst_JES_MJB_Stat15: 4.95723804e-05 + syst_JES_MJB_Stat16: 3.16285674e-05 + syst_JES_MJB_Stat2: 3.58134753e-07 + syst_JES_MJB_Stat3: 9.86758750e-07 + syst_JES_MJB_Stat4: 9.09101176e-07 + syst_JES_MJB_Stat5: 1.51480889e-06 + syst_JES_MJB_Stat6: 1.98253869e-06 + syst_JES_MJB_Stat7: 3.34734133e-06 + syst_JES_MJB_Stat8: 5.23293003e-06 + syst_JES_MJB_Stat9: 7.98216781e-06 + syst_JES_MJB_Threshold: 1.20291220e-04 + syst_JES_Pileup_MuOffset: 1.71874453e-04 + syst_JES_Pileup_NPVOffset: 1.81661574e-04 + syst_JES_Pileup_Pt_term: 9.96885555e-05 + syst_JES_Pileup_Rho_topology: 2.20600725e-04 + syst_JES_PunchThrough_MC15: 2.03450338e-04 + syst_JES_SingleParticle_HighPt: 1.52530948e-08 + syst_JES_Zjet_MC: 3.19119586e-04 + syst_JES_Zjet_MuScale: 2.39828955e-05 + syst_JES_Zjet_MuSmearID: 6.41674846e-06 + syst_JES_Zjet_MuSmearMS: 8.97064061e-05 + syst_JES_Zjet_OOC: 1.99416248e-04 + syst_JES_Zjet_Stat1: 1.95258002e-05 + syst_JES_Zjet_Stat10: 1.50663798e-05 + syst_JES_Zjet_Stat11: 2.24144998e-05 + syst_JES_Zjet_Stat12: 5.68712819e-05 + syst_JES_Zjet_Stat13: 9.03423533e-05 + syst_JES_Zjet_Stat2: 1.43113994e-09 + syst_JES_Zjet_Stat3: 1.06794663e-05 + syst_JES_Zjet_Stat4: 1.01291841e-05 + syst_JES_Zjet_Stat5: 9.29454608e-06 + syst_JES_Zjet_Stat6: 9.34600679e-06 + syst_JES_Zjet_Stat7: 8.95952962e-06 + syst_JES_Zjet_Stat8: 8.04472119e-06 + syst_JES_Zjet_Stat9: 9.43058577e-06 + syst_JES_Zjet_Veto: 4.09753813e-05 + syst_JES_Zjet_dPhi: 3.77759060e-05 syst_PRW: 1.87e-05 syst_Unfolding_bias: 3.07e-06 - syst_cleaning: 0.00021841160683443544 - syst_lumi: 0.0007121 -- stat: 0.00029066 + syst_cleaning: 2.18411607e-04 + syst_lumi: 7.12100000e-04 +- stat: 2.90660000e-04 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 5.068684715979087e-05 - syst_JER_NP1: 4.651791912800916e-06 - syst_JER_NP2: 2.5169606174908658e-05 - syst_JER_NP3: 3.4818701020428665e-06 - syst_JER_NP4: 1.2557088705189592e-05 - syst_JER_NP5: 6.9807808123447056e-06 - syst_JER_NP6: 7.718287164261252e-06 - syst_JER_NP7: 4.491079825609872e-06 - syst_JER_NP8: 1.1634669859948755e-05 - syst_JES_EtaIntercalibration_Modelling: 0.0003576815343290733 + syst_JER_NP0: 5.06868472e-05 + syst_JER_NP1: 4.65179191e-06 + syst_JER_NP2: 2.51696062e-05 + syst_JER_NP3: 3.48187010e-06 + syst_JER_NP4: 1.25570887e-05 + syst_JER_NP5: 6.98078081e-06 + syst_JER_NP6: 7.71828716e-06 + syst_JER_NP7: 4.49107983e-06 + syst_JER_NP8: 1.16346699e-05 + syst_JES_EtaIntercalibration_Modelling: 3.57681534e-04 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 - syst_JES_EtaIntercalibration_Stat10: 8.153502483595625e-21 - syst_JES_EtaIntercalibration_Stat100: 6.086961123582111e-20 + syst_JES_EtaIntercalibration_Stat10: 8.15350248e-21 + syst_JES_EtaIntercalibration_Stat100: 6.08696112e-20 syst_JES_EtaIntercalibration_Stat101: 0.0 syst_JES_EtaIntercalibration_Stat102: 0.0 - syst_JES_EtaIntercalibration_Stat103: 5.199616524321769e-23 - syst_JES_EtaIntercalibration_Stat104: 5.199616524321769e-23 - syst_JES_EtaIntercalibration_Stat105: 5.199616524321769e-23 + syst_JES_EtaIntercalibration_Stat103: 5.19961652e-23 + syst_JES_EtaIntercalibration_Stat104: 5.19961652e-23 + syst_JES_EtaIntercalibration_Stat105: 5.19961652e-23 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 8.259284275892191e-22 - syst_JES_EtaIntercalibration_Stat11: 5.605782438696671e-20 - syst_JES_EtaIntercalibration_Stat110: 8.046321955247627e-22 - syst_JES_EtaIntercalibration_Stat111: 8.181341989551591e-22 - syst_JES_EtaIntercalibration_Stat112: 8.181341989551591e-22 + syst_JES_EtaIntercalibration_Stat109: 8.25928428e-22 + syst_JES_EtaIntercalibration_Stat11: 5.60578244e-20 + syst_JES_EtaIntercalibration_Stat110: 8.04632196e-22 + syst_JES_EtaIntercalibration_Stat111: 8.18134199e-22 + syst_JES_EtaIntercalibration_Stat112: 8.18134199e-22 syst_JES_EtaIntercalibration_Stat113: 0.0 - syst_JES_EtaIntercalibration_Stat114: 8.836923220216413e-22 - syst_JES_EtaIntercalibration_Stat115: 8.116275621706055e-18 - syst_JES_EtaIntercalibration_Stat116: 5.83758620921353e-08 - syst_JES_EtaIntercalibration_Stat117: 6.015953353376337e-08 - syst_JES_EtaIntercalibration_Stat118: 2.7597691262132776e-08 - syst_JES_EtaIntercalibration_Stat119: 2.2918364617703423e-08 - syst_JES_EtaIntercalibration_Stat12: 1.0520467641840977e-15 - syst_JES_EtaIntercalibration_Stat120: 1.0865250010884447e-15 - syst_JES_EtaIntercalibration_Stat121: 2.778209495340479e-21 + syst_JES_EtaIntercalibration_Stat114: 8.83692322e-22 + syst_JES_EtaIntercalibration_Stat115: 8.11627562e-18 + syst_JES_EtaIntercalibration_Stat116: 5.83758621e-08 + syst_JES_EtaIntercalibration_Stat117: 6.01595335e-08 + syst_JES_EtaIntercalibration_Stat118: 2.75976913e-08 + syst_JES_EtaIntercalibration_Stat119: 2.29183646e-08 + syst_JES_EtaIntercalibration_Stat12: 1.05204676e-15 + syst_JES_EtaIntercalibration_Stat120: 1.08652500e-15 + syst_JES_EtaIntercalibration_Stat121: 2.77820950e-21 syst_JES_EtaIntercalibration_Stat122: 0.0 - syst_JES_EtaIntercalibration_Stat123: 5.199616524321769e-23 - syst_JES_EtaIntercalibration_Stat124: 5.199616524321769e-23 - syst_JES_EtaIntercalibration_Stat125: 5.199616524321769e-23 + syst_JES_EtaIntercalibration_Stat123: 5.19961652e-23 + syst_JES_EtaIntercalibration_Stat124: 5.19961652e-23 + syst_JES_EtaIntercalibration_Stat125: 5.19961652e-23 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 8.259284275892191e-22 - syst_JES_EtaIntercalibration_Stat129: 8.046321955247627e-22 + syst_JES_EtaIntercalibration_Stat128: 8.25928428e-22 + syst_JES_EtaIntercalibration_Stat129: 8.04632196e-22 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 7.265087112347656e-23 + syst_JES_EtaIntercalibration_Stat130: 7.26508711e-23 syst_JES_EtaIntercalibration_Stat131: 0.0 syst_JES_EtaIntercalibration_Stat132: 0.0 - syst_JES_EtaIntercalibration_Stat133: 8.836923220216413e-22 - syst_JES_EtaIntercalibration_Stat134: 8.322504351118354e-09 - syst_JES_EtaIntercalibration_Stat135: 8.093101815744072e-08 - syst_JES_EtaIntercalibration_Stat136: 1.407332905712078e-07 - syst_JES_EtaIntercalibration_Stat137: 7.030384822326584e-08 - syst_JES_EtaIntercalibration_Stat138: 7.662138784308205e-08 - syst_JES_EtaIntercalibration_Stat139: 1.1211370745809808e-17 + syst_JES_EtaIntercalibration_Stat133: 8.83692322e-22 + syst_JES_EtaIntercalibration_Stat134: 8.32250435e-09 + syst_JES_EtaIntercalibration_Stat135: 8.09310182e-08 + syst_JES_EtaIntercalibration_Stat136: 1.40733291e-07 + syst_JES_EtaIntercalibration_Stat137: 7.03038482e-08 + syst_JES_EtaIntercalibration_Stat138: 7.66213878e-08 + syst_JES_EtaIntercalibration_Stat139: 1.12113707e-17 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 2.778209495340479e-21 + syst_JES_EtaIntercalibration_Stat140: 2.77820950e-21 syst_JES_EtaIntercalibration_Stat141: 0.0 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 5.199616524321769e-23 - syst_JES_EtaIntercalibration_Stat144: 5.199616524321769e-23 + syst_JES_EtaIntercalibration_Stat143: 5.19961652e-23 + syst_JES_EtaIntercalibration_Stat144: 5.19961652e-23 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 7.265087112347656e-23 - syst_JES_EtaIntercalibration_Stat148: 7.265087112347656e-23 + syst_JES_EtaIntercalibration_Stat147: 7.26508711e-23 + syst_JES_EtaIntercalibration_Stat148: 7.26508711e-23 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 syst_JES_EtaIntercalibration_Stat150: 0.0 syst_JES_EtaIntercalibration_Stat151: 0.0 - syst_JES_EtaIntercalibration_Stat152: 1.8273136019849034e-08 - syst_JES_EtaIntercalibration_Stat153: 1.520482380693706e-07 - syst_JES_EtaIntercalibration_Stat154: 1.7661678876879174e-07 - syst_JES_EtaIntercalibration_Stat155: 6.61870038225028e-08 - syst_JES_EtaIntercalibration_Stat156: 1.086004174715733e-07 - syst_JES_EtaIntercalibration_Stat157: 2.028140132159265e-15 + syst_JES_EtaIntercalibration_Stat152: 1.82731360e-08 + syst_JES_EtaIntercalibration_Stat153: 1.52048238e-07 + syst_JES_EtaIntercalibration_Stat154: 1.76616789e-07 + syst_JES_EtaIntercalibration_Stat155: 6.61870038e-08 + syst_JES_EtaIntercalibration_Stat156: 1.08600417e-07 + syst_JES_EtaIntercalibration_Stat157: 2.02814013e-15 syst_JES_EtaIntercalibration_Stat158: 0.0 syst_JES_EtaIntercalibration_Stat159: 0.0 syst_JES_EtaIntercalibration_Stat16: 0.0 @@ -10535,18 +10535,18 @@ bins: syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 7.265087112347656e-23 + syst_JES_EtaIntercalibration_Stat165: 7.26508711e-23 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 6.367532862106014e-08 - syst_JES_EtaIntercalibration_Stat171: 4.24514416716323e-07 - syst_JES_EtaIntercalibration_Stat172: 4.508263634704608e-07 - syst_JES_EtaIntercalibration_Stat173: 4.0327688998999187e-07 - syst_JES_EtaIntercalibration_Stat174: 4.004994047436275e-07 - syst_JES_EtaIntercalibration_Stat175: 5.88869662998528e-15 + syst_JES_EtaIntercalibration_Stat170: 6.36753286e-08 + syst_JES_EtaIntercalibration_Stat171: 4.24514417e-07 + syst_JES_EtaIntercalibration_Stat172: 4.50826363e-07 + syst_JES_EtaIntercalibration_Stat173: 4.03276890e-07 + syst_JES_EtaIntercalibration_Stat174: 4.00499405e-07 + syst_JES_EtaIntercalibration_Stat175: 5.88869663e-15 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 syst_JES_EtaIntercalibration_Stat178: 0.0 @@ -10559,14 +10559,14 @@ bins: syst_JES_EtaIntercalibration_Stat184: 0.0 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 - syst_JES_EtaIntercalibration_Stat187: 3.6863202180494306e-08 - syst_JES_EtaIntercalibration_Stat188: 1.4426263376217695e-06 - syst_JES_EtaIntercalibration_Stat189: 2.4167297635441163e-06 + syst_JES_EtaIntercalibration_Stat187: 3.68632022e-08 + syst_JES_EtaIntercalibration_Stat188: 1.44262634e-06 + syst_JES_EtaIntercalibration_Stat189: 2.41672976e-06 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 2.4026944770403083e-06 - syst_JES_EtaIntercalibration_Stat191: 1.6967860796222958e-06 - syst_JES_EtaIntercalibration_Stat192: 1.3558258995903568e-08 - syst_JES_EtaIntercalibration_Stat193: 1.1044421974462946e-15 + syst_JES_EtaIntercalibration_Stat190: 2.40269448e-06 + syst_JES_EtaIntercalibration_Stat191: 1.69678608e-06 + syst_JES_EtaIntercalibration_Stat192: 1.35582590e-08 + syst_JES_EtaIntercalibration_Stat193: 1.10444220e-15 syst_JES_EtaIntercalibration_Stat194: 0.0 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 @@ -10577,13 +10577,13 @@ bins: syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 syst_JES_EtaIntercalibration_Stat201: 0.0 - syst_JES_EtaIntercalibration_Stat202: 8.05060784972166e-08 - syst_JES_EtaIntercalibration_Stat203: 3.3389952081427133e-06 - syst_JES_EtaIntercalibration_Stat204: 4.734188314801176e-06 - syst_JES_EtaIntercalibration_Stat205: 4.367110142874805e-06 - syst_JES_EtaIntercalibration_Stat206: 3.5450727425540927e-06 - syst_JES_EtaIntercalibration_Stat207: 2.638551875555984e-08 - syst_JES_EtaIntercalibration_Stat208: 1.1044421974462946e-15 + syst_JES_EtaIntercalibration_Stat202: 8.05060785e-08 + syst_JES_EtaIntercalibration_Stat203: 3.33899521e-06 + syst_JES_EtaIntercalibration_Stat204: 4.73418831e-06 + syst_JES_EtaIntercalibration_Stat205: 4.36711014e-06 + syst_JES_EtaIntercalibration_Stat206: 3.54507274e-06 + syst_JES_EtaIntercalibration_Stat207: 2.63855188e-08 + syst_JES_EtaIntercalibration_Stat208: 1.10444220e-15 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 @@ -10591,38 +10591,38 @@ bins: syst_JES_EtaIntercalibration_Stat212: 0.0 syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 - syst_JES_EtaIntercalibration_Stat215: 7.03555093791524e-08 - syst_JES_EtaIntercalibration_Stat216: 4.087133798580614e-06 - syst_JES_EtaIntercalibration_Stat217: 5.1068370592765146e-06 - syst_JES_EtaIntercalibration_Stat218: 5.348424324041614e-06 - syst_JES_EtaIntercalibration_Stat219: 4.162953192146172e-06 + syst_JES_EtaIntercalibration_Stat215: 7.03555094e-08 + syst_JES_EtaIntercalibration_Stat216: 4.08713380e-06 + syst_JES_EtaIntercalibration_Stat217: 5.10683706e-06 + syst_JES_EtaIntercalibration_Stat218: 5.34842432e-06 + syst_JES_EtaIntercalibration_Stat219: 4.16295319e-06 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 3.6526937330551e-08 + syst_JES_EtaIntercalibration_Stat220: 3.65269373e-08 syst_JES_EtaIntercalibration_Stat221: 0.0 syst_JES_EtaIntercalibration_Stat222: 0.0 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 - syst_JES_EtaIntercalibration_Stat227: 4.156276067587426e-07 - syst_JES_EtaIntercalibration_Stat228: 1.0179184348463288e-05 - syst_JES_EtaIntercalibration_Stat229: 1.595940083461782e-05 + syst_JES_EtaIntercalibration_Stat227: 4.15627607e-07 + syst_JES_EtaIntercalibration_Stat228: 1.01791843e-05 + syst_JES_EtaIntercalibration_Stat229: 1.59594008e-05 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 1.596010025031171e-05 - syst_JES_EtaIntercalibration_Stat231: 1.3267378452429854e-05 - syst_JES_EtaIntercalibration_Stat232: 3.0248602149520894e-07 + syst_JES_EtaIntercalibration_Stat230: 1.59601003e-05 + syst_JES_EtaIntercalibration_Stat231: 1.32673785e-05 + syst_JES_EtaIntercalibration_Stat232: 3.02486021e-07 syst_JES_EtaIntercalibration_Stat233: 0.0 syst_JES_EtaIntercalibration_Stat234: 0.0 syst_JES_EtaIntercalibration_Stat235: 0.0 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 - syst_JES_EtaIntercalibration_Stat238: 9.211241284430672e-08 - syst_JES_EtaIntercalibration_Stat239: 1.6961149725180778e-06 + syst_JES_EtaIntercalibration_Stat238: 9.21124128e-08 + syst_JES_EtaIntercalibration_Stat239: 1.69611497e-06 syst_JES_EtaIntercalibration_Stat24: 0.0 - syst_JES_EtaIntercalibration_Stat240: 1.818990035706628e-06 - syst_JES_EtaIntercalibration_Stat241: 2.1438402459138604e-06 - syst_JES_EtaIntercalibration_Stat242: 1.4452589620894934e-06 - syst_JES_EtaIntercalibration_Stat243: 4.1430655317047544e-08 + syst_JES_EtaIntercalibration_Stat240: 1.81899004e-06 + syst_JES_EtaIntercalibration_Stat241: 2.14384025e-06 + syst_JES_EtaIntercalibration_Stat242: 1.44525896e-06 + syst_JES_EtaIntercalibration_Stat243: 4.14306553e-08 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 syst_JES_EtaIntercalibration_Stat25: 0.0 @@ -10631,12 +10631,12 @@ bins: syst_JES_EtaIntercalibration_Stat28: 0.0 syst_JES_EtaIntercalibration_Stat29: 0.0 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 8.382397866959071e-22 - syst_JES_EtaIntercalibration_Stat31: 2.0380941851396368e-08 - syst_JES_EtaIntercalibration_Stat32: 9.116040423341703e-20 - syst_JES_EtaIntercalibration_Stat33: 1.0528294900873451e-15 - syst_JES_EtaIntercalibration_Stat34: 1.0929270349829743e-15 - syst_JES_EtaIntercalibration_Stat35: 2.6332565617722764e-21 + syst_JES_EtaIntercalibration_Stat30: 8.38239787e-22 + syst_JES_EtaIntercalibration_Stat31: 2.03809419e-08 + syst_JES_EtaIntercalibration_Stat32: 9.11604042e-20 + syst_JES_EtaIntercalibration_Stat33: 1.05282949e-15 + syst_JES_EtaIntercalibration_Stat34: 1.09292703e-15 + syst_JES_EtaIntercalibration_Stat35: 2.63325656e-21 syst_JES_EtaIntercalibration_Stat36: 0.0 syst_JES_EtaIntercalibration_Stat37: 0.0 syst_JES_EtaIntercalibration_Stat38: 0.0 @@ -10655,215 +10655,215 @@ bins: syst_JES_EtaIntercalibration_Stat5: 0.0 syst_JES_EtaIntercalibration_Stat50: 0.0 syst_JES_EtaIntercalibration_Stat51: 0.0 - syst_JES_EtaIntercalibration_Stat52: 5.430920548120732e-23 - syst_JES_EtaIntercalibration_Stat53: 9.202681930149494e-19 - syst_JES_EtaIntercalibration_Stat54: 9.303710923971372e-09 - syst_JES_EtaIntercalibration_Stat55: 1.0562542181930766e-15 - syst_JES_EtaIntercalibration_Stat56: 1.0938101897940508e-15 - syst_JES_EtaIntercalibration_Stat57: 8.01859594941658e-21 + syst_JES_EtaIntercalibration_Stat52: 5.43092055e-23 + syst_JES_EtaIntercalibration_Stat53: 9.20268193e-19 + syst_JES_EtaIntercalibration_Stat54: 9.30371092e-09 + syst_JES_EtaIntercalibration_Stat55: 1.05625422e-15 + syst_JES_EtaIntercalibration_Stat56: 1.09381019e-15 + syst_JES_EtaIntercalibration_Stat57: 8.01859595e-21 syst_JES_EtaIntercalibration_Stat58: 0.0 syst_JES_EtaIntercalibration_Stat59: 0.0 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 5.199616524321769e-23 - syst_JES_EtaIntercalibration_Stat62: 5.199616524321769e-23 + syst_JES_EtaIntercalibration_Stat61: 5.19961652e-23 + syst_JES_EtaIntercalibration_Stat62: 5.19961652e-23 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 8.259284275892191e-22 - syst_JES_EtaIntercalibration_Stat69: 8.259284275892191e-22 + syst_JES_EtaIntercalibration_Stat68: 8.25928428e-22 + syst_JES_EtaIntercalibration_Stat69: 8.25928428e-22 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 8.181341989551591e-22 - syst_JES_EtaIntercalibration_Stat71: 8.181341989551591e-22 + syst_JES_EtaIntercalibration_Stat70: 8.18134199e-22 + syst_JES_EtaIntercalibration_Stat71: 8.18134199e-22 syst_JES_EtaIntercalibration_Stat72: 0.0 syst_JES_EtaIntercalibration_Stat73: 0.0 - syst_JES_EtaIntercalibration_Stat74: 6.911065549513693e-19 - syst_JES_EtaIntercalibration_Stat75: 1.6933726140457098e-08 - syst_JES_EtaIntercalibration_Stat76: 2.0039827828159545e-08 - syst_JES_EtaIntercalibration_Stat77: 8.675852093418547e-08 - syst_JES_EtaIntercalibration_Stat78: 4.169912319840703e-08 - syst_JES_EtaIntercalibration_Stat79: 1.5701111767960891e-21 + syst_JES_EtaIntercalibration_Stat74: 6.91106555e-19 + syst_JES_EtaIntercalibration_Stat75: 1.69337261e-08 + syst_JES_EtaIntercalibration_Stat76: 2.00398278e-08 + syst_JES_EtaIntercalibration_Stat77: 8.67585209e-08 + syst_JES_EtaIntercalibration_Stat78: 4.16991232e-08 + syst_JES_EtaIntercalibration_Stat79: 1.57011118e-21 syst_JES_EtaIntercalibration_Stat8: 0.0 syst_JES_EtaIntercalibration_Stat80: 0.0 syst_JES_EtaIntercalibration_Stat81: 0.0 - syst_JES_EtaIntercalibration_Stat82: 5.199616524321769e-23 - syst_JES_EtaIntercalibration_Stat83: 5.199616524321769e-23 - syst_JES_EtaIntercalibration_Stat84: 5.199616524321769e-23 + syst_JES_EtaIntercalibration_Stat82: 5.19961652e-23 + syst_JES_EtaIntercalibration_Stat83: 5.19961652e-23 + syst_JES_EtaIntercalibration_Stat84: 5.19961652e-23 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 8.259284275892191e-22 - syst_JES_EtaIntercalibration_Stat9: 6.854249579251911e-19 - syst_JES_EtaIntercalibration_Stat90: 8.259284275892191e-22 - syst_JES_EtaIntercalibration_Stat91: 8.181341989551591e-22 - syst_JES_EtaIntercalibration_Stat92: 8.181341989551591e-22 + syst_JES_EtaIntercalibration_Stat89: 8.25928428e-22 + syst_JES_EtaIntercalibration_Stat9: 6.85424958e-19 + syst_JES_EtaIntercalibration_Stat90: 8.25928428e-22 + syst_JES_EtaIntercalibration_Stat91: 8.18134199e-22 + syst_JES_EtaIntercalibration_Stat92: 8.18134199e-22 syst_JES_EtaIntercalibration_Stat93: 0.0 syst_JES_EtaIntercalibration_Stat94: 0.0 - syst_JES_EtaIntercalibration_Stat95: 6.913169993013335e-19 - syst_JES_EtaIntercalibration_Stat96: 2.2953386743572288e-08 - syst_JES_EtaIntercalibration_Stat97: 2.0033594285599375e-08 - syst_JES_EtaIntercalibration_Stat98: 4.133777592913654e-08 - syst_JES_EtaIntercalibration_Stat99: 7.928006686773085e-13 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.00019295685398554776 - syst_JES_Flavour_Comp: 0.0004972739360754794 - syst_JES_Flavour_Response: 4.307652144730353e-05 - syst_JES_Gjet_Generator: 0.0005412819297741242 - syst_JES_Gjet_OOC: 0.00045135397140160405 - syst_JES_Gjet_Purity: 8.01816163468909e-05 - syst_JES_Gjet_Stat1: 1.6156194106286295e-06 - syst_JES_Gjet_Stat10: 8.453298232051204e-06 - syst_JES_Gjet_Stat11: 8.712929515955009e-06 - syst_JES_Gjet_Stat12: 2.4665550875664626e-05 - syst_JES_Gjet_Stat13: 8.694558226270038e-05 - syst_JES_Gjet_Stat14: 0.00023019041574314078 - syst_JES_Gjet_Stat15: 0.0003741517472897861 - syst_JES_Gjet_Stat2: 1.8929758602528453e-06 - syst_JES_Gjet_Stat3: 1.7666614701181435e-06 - syst_JES_Gjet_Stat4: 1.4305924472050033e-06 - syst_JES_Gjet_Stat5: 1.808500138236102e-06 - syst_JES_Gjet_Stat6: 7.125514069174237e-06 - syst_JES_Gjet_Stat7: 5.106161278298992e-06 - syst_JES_Gjet_Stat8: 3.4115458006598713e-06 - syst_JES_Gjet_Stat9: 5.445418510087172e-06 - syst_JES_Gjet_Veto: 0.00045701661895384063 - syst_JES_Gjet_dPhi: 5.13922824945536e-05 - syst_JES_LArESZee: 0.0008150953487169462 - syst_JES_LArEsmear: 7.52002606378462e-05 - syst_JES_LAr_JVT: 9.447008574146633e-05 - syst_JES_MJB_Alpha: 8.151940551181662e-06 - syst_JES_MJB_Asym: 0.0001084865875350497 - syst_JES_MJB_Beta: 5.119502392811239e-06 - syst_JES_MJB_Fragmentation: 4.443334417979362e-05 - syst_JES_MJB_Stat1: 3.170554618485542e-09 - syst_JES_MJB_Stat10: 7.3667157370160554e-06 - syst_JES_MJB_Stat11: 9.747218834108529e-06 - syst_JES_MJB_Stat12: 1.6688136504714958e-05 - syst_JES_MJB_Stat13: 2.2409151590365933e-05 - syst_JES_MJB_Stat14: 1.819186906285333e-05 - syst_JES_MJB_Stat15: 4.874948615113804e-05 - syst_JES_MJB_Stat16: 1.7807146739441443e-05 - syst_JES_MJB_Stat2: 2.266746492370728e-07 - syst_JES_MJB_Stat3: 5.656560173815886e-07 - syst_JES_MJB_Stat4: 4.103937225397094e-07 - syst_JES_MJB_Stat5: 7.616625632785164e-07 - syst_JES_MJB_Stat6: 1.1250876265873695e-06 - syst_JES_MJB_Stat7: 2.0229055217681324e-06 - syst_JES_MJB_Stat8: 3.0417844680384572e-06 - syst_JES_MJB_Stat9: 4.71335411357984e-06 - syst_JES_MJB_Threshold: 8.321532716393057e-05 - syst_JES_Pileup_MuOffset: 0.00011349407429465206 - syst_JES_Pileup_NPVOffset: 0.0001200610794554172 - syst_JES_Pileup_Pt_term: 6.291700306753335e-05 - syst_JES_Pileup_Rho_topology: 0.00014210007037295934 - syst_JES_PunchThrough_MC15: 0.00014250780610198166 - syst_JES_SingleParticle_HighPt: 3.8452496342890404e-08 - syst_JES_Zjet_MC: 0.00020762548013189517 - syst_JES_Zjet_MuScale: 1.5848068494299233e-05 - syst_JES_Zjet_MuSmearID: 4.497729510541958e-06 - syst_JES_Zjet_MuSmearMS: 5.7613064490617055e-05 - syst_JES_Zjet_OOC: 0.000132325848098548 - syst_JES_Zjet_Stat1: 1.5040106382602485e-05 - syst_JES_Zjet_Stat10: 9.607070365100905e-06 - syst_JES_Zjet_Stat11: 1.4731415410611434e-05 - syst_JES_Zjet_Stat12: 3.563511856301309e-05 - syst_JES_Zjet_Stat13: 5.680909346222663e-05 - syst_JES_Zjet_Stat2: 1.1079582708748558e-08 - syst_JES_Zjet_Stat3: 7.733491578840698e-06 - syst_JES_Zjet_Stat4: 7.43117877594127e-06 - syst_JES_Zjet_Stat5: 7.025002419928409e-06 - syst_JES_Zjet_Stat6: 6.553644711151192e-06 - syst_JES_Zjet_Stat7: 6.737207433351003e-06 - syst_JES_Zjet_Stat8: 5.281138040233374e-06 - syst_JES_Zjet_Stat9: 6.2764068343280615e-06 - syst_JES_Zjet_Veto: 2.6710303255485512e-05 - syst_JES_Zjet_dPhi: 2.4840326084816195e-05 - syst_PRW: 1.1765e-05 - syst_Unfolding_bias: 1.931e-06 - syst_cleaning: 0.00013709182141907663 + syst_JES_EtaIntercalibration_Stat95: 6.91316999e-19 + syst_JES_EtaIntercalibration_Stat96: 2.29533867e-08 + syst_JES_EtaIntercalibration_Stat97: 2.00335943e-08 + syst_JES_EtaIntercalibration_Stat98: 4.13377759e-08 + syst_JES_EtaIntercalibration_Stat99: 7.92800669e-13 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.92956854e-04 + syst_JES_Flavour_Comp: 4.97273936e-04 + syst_JES_Flavour_Response: 4.30765214e-05 + syst_JES_Gjet_Generator: 5.41281930e-04 + syst_JES_Gjet_OOC: 4.51353971e-04 + syst_JES_Gjet_Purity: 8.01816163e-05 + syst_JES_Gjet_Stat1: 1.61561941e-06 + syst_JES_Gjet_Stat10: 8.45329823e-06 + syst_JES_Gjet_Stat11: 8.71292952e-06 + syst_JES_Gjet_Stat12: 2.46655509e-05 + syst_JES_Gjet_Stat13: 8.69455823e-05 + syst_JES_Gjet_Stat14: 2.30190416e-04 + syst_JES_Gjet_Stat15: 3.74151747e-04 + syst_JES_Gjet_Stat2: 1.89297586e-06 + syst_JES_Gjet_Stat3: 1.76666147e-06 + syst_JES_Gjet_Stat4: 1.43059245e-06 + syst_JES_Gjet_Stat5: 1.80850014e-06 + syst_JES_Gjet_Stat6: 7.12551407e-06 + syst_JES_Gjet_Stat7: 5.10616128e-06 + syst_JES_Gjet_Stat8: 3.41154580e-06 + syst_JES_Gjet_Stat9: 5.44541851e-06 + syst_JES_Gjet_Veto: 4.57016619e-04 + syst_JES_Gjet_dPhi: 5.13922825e-05 + syst_JES_LArESZee: 8.15095349e-04 + syst_JES_LArEsmear: 7.52002606e-05 + syst_JES_LAr_JVT: 9.44700857e-05 + syst_JES_MJB_Alpha: 8.15194055e-06 + syst_JES_MJB_Asym: 1.08486588e-04 + syst_JES_MJB_Beta: 5.11950239e-06 + syst_JES_MJB_Fragmentation: 4.44333442e-05 + syst_JES_MJB_Stat1: 3.17055462e-09 + syst_JES_MJB_Stat10: 7.36671574e-06 + syst_JES_MJB_Stat11: 9.74721883e-06 + syst_JES_MJB_Stat12: 1.66881365e-05 + syst_JES_MJB_Stat13: 2.24091516e-05 + syst_JES_MJB_Stat14: 1.81918691e-05 + syst_JES_MJB_Stat15: 4.87494862e-05 + syst_JES_MJB_Stat16: 1.78071467e-05 + syst_JES_MJB_Stat2: 2.26674649e-07 + syst_JES_MJB_Stat3: 5.65656017e-07 + syst_JES_MJB_Stat4: 4.10393723e-07 + syst_JES_MJB_Stat5: 7.61662563e-07 + syst_JES_MJB_Stat6: 1.12508763e-06 + syst_JES_MJB_Stat7: 2.02290552e-06 + syst_JES_MJB_Stat8: 3.04178447e-06 + syst_JES_MJB_Stat9: 4.71335411e-06 + syst_JES_MJB_Threshold: 8.32153272e-05 + syst_JES_Pileup_MuOffset: 1.13494074e-04 + syst_JES_Pileup_NPVOffset: 1.20061079e-04 + syst_JES_Pileup_Pt_term: 6.29170031e-05 + syst_JES_Pileup_Rho_topology: 1.42100070e-04 + syst_JES_PunchThrough_MC15: 1.42507806e-04 + syst_JES_SingleParticle_HighPt: 3.84524963e-08 + syst_JES_Zjet_MC: 2.07625480e-04 + syst_JES_Zjet_MuScale: 1.58480685e-05 + syst_JES_Zjet_MuSmearID: 4.49772951e-06 + syst_JES_Zjet_MuSmearMS: 5.76130645e-05 + syst_JES_Zjet_OOC: 1.32325848e-04 + syst_JES_Zjet_Stat1: 1.50401064e-05 + syst_JES_Zjet_Stat10: 9.60707037e-06 + syst_JES_Zjet_Stat11: 1.47314154e-05 + syst_JES_Zjet_Stat12: 3.56351186e-05 + syst_JES_Zjet_Stat13: 5.68090935e-05 + syst_JES_Zjet_Stat2: 1.10795827e-08 + syst_JES_Zjet_Stat3: 7.73349158e-06 + syst_JES_Zjet_Stat4: 7.43117878e-06 + syst_JES_Zjet_Stat5: 7.02500242e-06 + syst_JES_Zjet_Stat6: 6.55364471e-06 + syst_JES_Zjet_Stat7: 6.73720743e-06 + syst_JES_Zjet_Stat8: 5.28113804e-06 + syst_JES_Zjet_Stat9: 6.27640683e-06 + syst_JES_Zjet_Veto: 2.67103033e-05 + syst_JES_Zjet_dPhi: 2.48403261e-05 + syst_PRW: 1.17650000e-05 + syst_Unfolding_bias: 1.93100000e-06 + syst_cleaning: 1.37091821e-04 syst_lumi: 0.000448 -- stat: 0.00017277 +- stat: 1.72770000e-04 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 2.618544777161544e-05 - syst_JER_NP1: 2.4323289251250536e-06 - syst_JER_NP2: 1.5622257735359507e-05 - syst_JER_NP3: 2.417092585628445e-06 - syst_JER_NP4: 6.109186770757627e-06 - syst_JER_NP5: 4.545183824665401e-06 - syst_JER_NP6: 5.014700863461349e-06 - syst_JER_NP7: 1.9257492126442633e-06 - syst_JER_NP8: 4.992563945509361e-06 - syst_JES_EtaIntercalibration_Modelling: 0.00019562254471302634 + syst_JER_NP0: 2.61854478e-05 + syst_JER_NP1: 2.43232893e-06 + syst_JER_NP2: 1.56222577e-05 + syst_JER_NP3: 2.41709259e-06 + syst_JER_NP4: 6.10918677e-06 + syst_JER_NP5: 4.54518382e-06 + syst_JER_NP6: 5.01470086e-06 + syst_JER_NP7: 1.92574921e-06 + syst_JER_NP8: 4.99256395e-06 + syst_JES_EtaIntercalibration_Modelling: 1.95622545e-04 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 - syst_JES_EtaIntercalibration_Stat10: 1.228683078543853e-21 - syst_JES_EtaIntercalibration_Stat100: 5.326310731406871e-22 + syst_JES_EtaIntercalibration_Stat10: 1.22868308e-21 + syst_JES_EtaIntercalibration_Stat100: 5.32631073e-22 syst_JES_EtaIntercalibration_Stat101: 0.0 syst_JES_EtaIntercalibration_Stat102: 0.0 - syst_JES_EtaIntercalibration_Stat103: 1.35013360449994e-23 - syst_JES_EtaIntercalibration_Stat104: 1.35013360449994e-23 - syst_JES_EtaIntercalibration_Stat105: 1.35013360449994e-23 + syst_JES_EtaIntercalibration_Stat103: 1.35013360e-23 + syst_JES_EtaIntercalibration_Stat104: 1.35013360e-23 + syst_JES_EtaIntercalibration_Stat105: 1.35013360e-23 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 1.9113180661522561e-22 - syst_JES_EtaIntercalibration_Stat11: 9.524547390821256e-22 - syst_JES_EtaIntercalibration_Stat110: 1.8587496119703698e-22 - syst_JES_EtaIntercalibration_Stat111: 1.9598154887641844e-22 - syst_JES_EtaIntercalibration_Stat112: 1.9598154887641844e-22 + syst_JES_EtaIntercalibration_Stat109: 1.91131807e-22 + syst_JES_EtaIntercalibration_Stat11: 9.52454739e-22 + syst_JES_EtaIntercalibration_Stat110: 1.85874961e-22 + syst_JES_EtaIntercalibration_Stat111: 1.95981549e-22 + syst_JES_EtaIntercalibration_Stat112: 1.95981549e-22 syst_JES_EtaIntercalibration_Stat113: 0.0 - syst_JES_EtaIntercalibration_Stat114: 2.0109109875874664e-22 - syst_JES_EtaIntercalibration_Stat115: 9.049990994470656e-19 - syst_JES_EtaIntercalibration_Stat116: 2.7002838184183528e-08 - syst_JES_EtaIntercalibration_Stat117: 2.612890355047452e-08 - syst_JES_EtaIntercalibration_Stat118: 2.191642021407693e-08 - syst_JES_EtaIntercalibration_Stat119: 1.583351195250125e-08 - syst_JES_EtaIntercalibration_Stat12: 9.798192758598584e-17 - syst_JES_EtaIntercalibration_Stat120: 1.0190454677110963e-16 - syst_JES_EtaIntercalibration_Stat121: 5.739150350879475e-22 + syst_JES_EtaIntercalibration_Stat114: 2.01091099e-22 + syst_JES_EtaIntercalibration_Stat115: 9.04999099e-19 + syst_JES_EtaIntercalibration_Stat116: 2.70028382e-08 + syst_JES_EtaIntercalibration_Stat117: 2.61289036e-08 + syst_JES_EtaIntercalibration_Stat118: 2.19164202e-08 + syst_JES_EtaIntercalibration_Stat119: 1.58335120e-08 + syst_JES_EtaIntercalibration_Stat12: 9.79819276e-17 + syst_JES_EtaIntercalibration_Stat120: 1.01904547e-16 + syst_JES_EtaIntercalibration_Stat121: 5.73915035e-22 syst_JES_EtaIntercalibration_Stat122: 0.0 - syst_JES_EtaIntercalibration_Stat123: 1.35013360449994e-23 - syst_JES_EtaIntercalibration_Stat124: 1.35013360449994e-23 - syst_JES_EtaIntercalibration_Stat125: 1.35013360449994e-23 + syst_JES_EtaIntercalibration_Stat123: 1.35013360e-23 + syst_JES_EtaIntercalibration_Stat124: 1.35013360e-23 + syst_JES_EtaIntercalibration_Stat125: 1.35013360e-23 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 1.9113180661522561e-22 - syst_JES_EtaIntercalibration_Stat129: 1.8587496119703698e-22 + syst_JES_EtaIntercalibration_Stat128: 1.91131807e-22 + syst_JES_EtaIntercalibration_Stat129: 1.85874961e-22 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 1.8134571955246145e-23 + syst_JES_EtaIntercalibration_Stat130: 1.81345720e-23 syst_JES_EtaIntercalibration_Stat131: 0.0 syst_JES_EtaIntercalibration_Stat132: 0.0 - syst_JES_EtaIntercalibration_Stat133: 2.0109109875874664e-22 - syst_JES_EtaIntercalibration_Stat134: 6.561008478957737e-09 - syst_JES_EtaIntercalibration_Stat135: 4.231245797634545e-08 - syst_JES_EtaIntercalibration_Stat136: 8.934578599463995e-08 - syst_JES_EtaIntercalibration_Stat137: 3.6502115007215674e-08 - syst_JES_EtaIntercalibration_Stat138: 4.149555277376119e-08 - syst_JES_EtaIntercalibration_Stat139: 1.4503367496895334e-18 + syst_JES_EtaIntercalibration_Stat133: 2.01091099e-22 + syst_JES_EtaIntercalibration_Stat134: 6.56100848e-09 + syst_JES_EtaIntercalibration_Stat135: 4.23124580e-08 + syst_JES_EtaIntercalibration_Stat136: 8.93457860e-08 + syst_JES_EtaIntercalibration_Stat137: 3.65021150e-08 + syst_JES_EtaIntercalibration_Stat138: 4.14955528e-08 + syst_JES_EtaIntercalibration_Stat139: 1.45033675e-18 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 5.739150350879475e-22 + syst_JES_EtaIntercalibration_Stat140: 5.73915035e-22 syst_JES_EtaIntercalibration_Stat141: 0.0 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 1.35013360449994e-23 - syst_JES_EtaIntercalibration_Stat144: 1.35013360449994e-23 + syst_JES_EtaIntercalibration_Stat143: 1.35013360e-23 + syst_JES_EtaIntercalibration_Stat144: 1.35013360e-23 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 1.8134571955246145e-23 - syst_JES_EtaIntercalibration_Stat148: 1.8134571955246145e-23 + syst_JES_EtaIntercalibration_Stat147: 1.81345720e-23 + syst_JES_EtaIntercalibration_Stat148: 1.81345720e-23 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 syst_JES_EtaIntercalibration_Stat150: 0.0 syst_JES_EtaIntercalibration_Stat151: 0.0 - syst_JES_EtaIntercalibration_Stat152: 8.028921518484974e-09 - syst_JES_EtaIntercalibration_Stat153: 8.27802561001112e-08 - syst_JES_EtaIntercalibration_Stat154: 9.771952603625336e-08 - syst_JES_EtaIntercalibration_Stat155: 3.4347132613218236e-08 - syst_JES_EtaIntercalibration_Stat156: 5.588116945805626e-08 - syst_JES_EtaIntercalibration_Stat157: 1.9071672707644184e-16 + syst_JES_EtaIntercalibration_Stat152: 8.02892152e-09 + syst_JES_EtaIntercalibration_Stat153: 8.27802561e-08 + syst_JES_EtaIntercalibration_Stat154: 9.77195260e-08 + syst_JES_EtaIntercalibration_Stat155: 3.43471326e-08 + syst_JES_EtaIntercalibration_Stat156: 5.58811695e-08 + syst_JES_EtaIntercalibration_Stat157: 1.90716727e-16 syst_JES_EtaIntercalibration_Stat158: 0.0 syst_JES_EtaIntercalibration_Stat159: 0.0 syst_JES_EtaIntercalibration_Stat16: 0.0 @@ -10872,18 +10872,18 @@ bins: syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 1.8134571955246145e-23 + syst_JES_EtaIntercalibration_Stat165: 1.81345720e-23 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 1.8826746930895948e-08 - syst_JES_EtaIntercalibration_Stat171: 2.1504135805700262e-07 - syst_JES_EtaIntercalibration_Stat172: 2.4506180853001143e-07 - syst_JES_EtaIntercalibration_Stat173: 2.207001132759111e-07 - syst_JES_EtaIntercalibration_Stat174: 2.0000425695469584e-07 - syst_JES_EtaIntercalibration_Stat175: 4.235740077011336e-16 + syst_JES_EtaIntercalibration_Stat170: 1.88267469e-08 + syst_JES_EtaIntercalibration_Stat171: 2.15041358e-07 + syst_JES_EtaIntercalibration_Stat172: 2.45061809e-07 + syst_JES_EtaIntercalibration_Stat173: 2.20700113e-07 + syst_JES_EtaIntercalibration_Stat174: 2.00004257e-07 + syst_JES_EtaIntercalibration_Stat175: 4.23574008e-16 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 syst_JES_EtaIntercalibration_Stat178: 0.0 @@ -10896,14 +10896,14 @@ bins: syst_JES_EtaIntercalibration_Stat184: 0.0 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 - syst_JES_EtaIntercalibration_Stat187: 1.3347809820341313e-08 - syst_JES_EtaIntercalibration_Stat188: 9.039590754010937e-07 - syst_JES_EtaIntercalibration_Stat189: 1.3854303401831504e-06 + syst_JES_EtaIntercalibration_Stat187: 1.33478098e-08 + syst_JES_EtaIntercalibration_Stat188: 9.03959075e-07 + syst_JES_EtaIntercalibration_Stat189: 1.38543034e-06 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 1.2011829752373283e-06 - syst_JES_EtaIntercalibration_Stat191: 7.975713886543323e-07 - syst_JES_EtaIntercalibration_Stat192: 8.641917191804143e-09 - syst_JES_EtaIntercalibration_Stat193: 1.0381912540567851e-16 + syst_JES_EtaIntercalibration_Stat190: 1.20118298e-06 + syst_JES_EtaIntercalibration_Stat191: 7.97571389e-07 + syst_JES_EtaIntercalibration_Stat192: 8.64191719e-09 + syst_JES_EtaIntercalibration_Stat193: 1.03819125e-16 syst_JES_EtaIntercalibration_Stat194: 0.0 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 @@ -10914,13 +10914,13 @@ bins: syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 syst_JES_EtaIntercalibration_Stat201: 0.0 - syst_JES_EtaIntercalibration_Stat202: 4.208035252644635e-08 - syst_JES_EtaIntercalibration_Stat203: 1.950870574897269e-06 - syst_JES_EtaIntercalibration_Stat204: 2.7655567251459513e-06 - syst_JES_EtaIntercalibration_Stat205: 2.37122009733386e-06 - syst_JES_EtaIntercalibration_Stat206: 1.8600677407019346e-06 - syst_JES_EtaIntercalibration_Stat207: 5.510797509208627e-09 - syst_JES_EtaIntercalibration_Stat208: 1.0381912540567851e-16 + syst_JES_EtaIntercalibration_Stat202: 4.20803525e-08 + syst_JES_EtaIntercalibration_Stat203: 1.95087057e-06 + syst_JES_EtaIntercalibration_Stat204: 2.76555673e-06 + syst_JES_EtaIntercalibration_Stat205: 2.37122010e-06 + syst_JES_EtaIntercalibration_Stat206: 1.86006774e-06 + syst_JES_EtaIntercalibration_Stat207: 5.51079751e-09 + syst_JES_EtaIntercalibration_Stat208: 1.03819125e-16 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 @@ -10928,38 +10928,38 @@ bins: syst_JES_EtaIntercalibration_Stat212: 0.0 syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 - syst_JES_EtaIntercalibration_Stat215: 4.700957641800232e-08 - syst_JES_EtaIntercalibration_Stat216: 2.325607662526076e-06 - syst_JES_EtaIntercalibration_Stat217: 2.909908761456276e-06 - syst_JES_EtaIntercalibration_Stat218: 2.943365548143825e-06 - syst_JES_EtaIntercalibration_Stat219: 2.1945714843677343e-06 + syst_JES_EtaIntercalibration_Stat215: 4.70095764e-08 + syst_JES_EtaIntercalibration_Stat216: 2.32560766e-06 + syst_JES_EtaIntercalibration_Stat217: 2.90990876e-06 + syst_JES_EtaIntercalibration_Stat218: 2.94336555e-06 + syst_JES_EtaIntercalibration_Stat219: 2.19457148e-06 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 1.8701523146524723e-08 + syst_JES_EtaIntercalibration_Stat220: 1.87015231e-08 syst_JES_EtaIntercalibration_Stat221: 0.0 syst_JES_EtaIntercalibration_Stat222: 0.0 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 - syst_JES_EtaIntercalibration_Stat227: 2.1845985146017103e-07 - syst_JES_EtaIntercalibration_Stat228: 5.5426615447815325e-06 - syst_JES_EtaIntercalibration_Stat229: 8.626508375350944e-06 + syst_JES_EtaIntercalibration_Stat227: 2.18459851e-07 + syst_JES_EtaIntercalibration_Stat228: 5.54266154e-06 + syst_JES_EtaIntercalibration_Stat229: 8.62650838e-06 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 8.703081178525224e-06 - syst_JES_EtaIntercalibration_Stat231: 7.207663421664472e-06 - syst_JES_EtaIntercalibration_Stat232: 1.532494541588974e-07 + syst_JES_EtaIntercalibration_Stat230: 8.70308118e-06 + syst_JES_EtaIntercalibration_Stat231: 7.20766342e-06 + syst_JES_EtaIntercalibration_Stat232: 1.53249454e-07 syst_JES_EtaIntercalibration_Stat233: 0.0 syst_JES_EtaIntercalibration_Stat234: 0.0 syst_JES_EtaIntercalibration_Stat235: 0.0 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 - syst_JES_EtaIntercalibration_Stat238: 7.471212217572191e-08 - syst_JES_EtaIntercalibration_Stat239: 1.0272647796454428e-06 + syst_JES_EtaIntercalibration_Stat238: 7.47121222e-08 + syst_JES_EtaIntercalibration_Stat239: 1.02726478e-06 syst_JES_EtaIntercalibration_Stat24: 0.0 - syst_JES_EtaIntercalibration_Stat240: 1.17966960099004e-06 - syst_JES_EtaIntercalibration_Stat241: 1.1162486013429086e-06 - syst_JES_EtaIntercalibration_Stat242: 7.062635627016305e-07 - syst_JES_EtaIntercalibration_Stat243: 2.8951229248509748e-08 + syst_JES_EtaIntercalibration_Stat240: 1.17966960e-06 + syst_JES_EtaIntercalibration_Stat241: 1.11624860e-06 + syst_JES_EtaIntercalibration_Stat242: 7.06263563e-07 + syst_JES_EtaIntercalibration_Stat243: 2.89512292e-08 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 syst_JES_EtaIntercalibration_Stat25: 0.0 @@ -10968,12 +10968,12 @@ bins: syst_JES_EtaIntercalibration_Stat28: 0.0 syst_JES_EtaIntercalibration_Stat29: 0.0 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 1.899193710499274e-22 - syst_JES_EtaIntercalibration_Stat31: 8.576417317271822e-09 - syst_JES_EtaIntercalibration_Stat32: 1.0538028557562368e-20 - syst_JES_EtaIntercalibration_Stat33: 9.80517190749969e-17 - syst_JES_EtaIntercalibration_Stat34: 1.0253782552780394e-16 - syst_JES_EtaIntercalibration_Stat35: 5.392816286382747e-22 + syst_JES_EtaIntercalibration_Stat30: 1.89919371e-22 + syst_JES_EtaIntercalibration_Stat31: 8.57641732e-09 + syst_JES_EtaIntercalibration_Stat32: 1.05380286e-20 + syst_JES_EtaIntercalibration_Stat33: 9.80517191e-17 + syst_JES_EtaIntercalibration_Stat34: 1.02537826e-16 + syst_JES_EtaIntercalibration_Stat35: 5.39281629e-22 syst_JES_EtaIntercalibration_Stat36: 0.0 syst_JES_EtaIntercalibration_Stat37: 0.0 syst_JES_EtaIntercalibration_Stat38: 0.0 @@ -10992,215 +10992,215 @@ bins: syst_JES_EtaIntercalibration_Stat5: 0.0 syst_JES_EtaIntercalibration_Stat50: 0.0 syst_JES_EtaIntercalibration_Stat51: 0.0 - syst_JES_EtaIntercalibration_Stat52: 6.940114606402405e-23 - syst_JES_EtaIntercalibration_Stat53: 1.2389375235257022e-19 - syst_JES_EtaIntercalibration_Stat54: 6.651941127668006e-09 - syst_JES_EtaIntercalibration_Stat55: 9.829272192061171e-17 - syst_JES_EtaIntercalibration_Stat56: 1.0258234654816924e-16 - syst_JES_EtaIntercalibration_Stat57: 1.5079029635556792e-21 + syst_JES_EtaIntercalibration_Stat52: 6.94011461e-23 + syst_JES_EtaIntercalibration_Stat53: 1.23893752e-19 + syst_JES_EtaIntercalibration_Stat54: 6.65194113e-09 + syst_JES_EtaIntercalibration_Stat55: 9.82927219e-17 + syst_JES_EtaIntercalibration_Stat56: 1.02582347e-16 + syst_JES_EtaIntercalibration_Stat57: 1.50790296e-21 syst_JES_EtaIntercalibration_Stat58: 0.0 syst_JES_EtaIntercalibration_Stat59: 0.0 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 1.35013360449994e-23 - syst_JES_EtaIntercalibration_Stat62: 1.35013360449994e-23 + syst_JES_EtaIntercalibration_Stat61: 1.35013360e-23 + syst_JES_EtaIntercalibration_Stat62: 1.35013360e-23 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 1.9113180661522561e-22 - syst_JES_EtaIntercalibration_Stat69: 1.9113180661522561e-22 + syst_JES_EtaIntercalibration_Stat68: 1.91131807e-22 + syst_JES_EtaIntercalibration_Stat69: 1.91131807e-22 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 1.9598154887641844e-22 - syst_JES_EtaIntercalibration_Stat71: 1.9598154887641844e-22 + syst_JES_EtaIntercalibration_Stat70: 1.95981549e-22 + syst_JES_EtaIntercalibration_Stat71: 1.95981549e-22 syst_JES_EtaIntercalibration_Stat72: 0.0 syst_JES_EtaIntercalibration_Stat73: 0.0 - syst_JES_EtaIntercalibration_Stat74: 9.664715650628322e-20 - syst_JES_EtaIntercalibration_Stat75: 7.954989063474568e-09 - syst_JES_EtaIntercalibration_Stat76: 9.082008407874292e-09 - syst_JES_EtaIntercalibration_Stat77: 5.239209279080194e-08 - syst_JES_EtaIntercalibration_Stat78: 2.1806519667858837e-08 - syst_JES_EtaIntercalibration_Stat79: 1.6995238060998148e-22 + syst_JES_EtaIntercalibration_Stat74: 9.66471565e-20 + syst_JES_EtaIntercalibration_Stat75: 7.95498906e-09 + syst_JES_EtaIntercalibration_Stat76: 9.08200841e-09 + syst_JES_EtaIntercalibration_Stat77: 5.23920928e-08 + syst_JES_EtaIntercalibration_Stat78: 2.18065197e-08 + syst_JES_EtaIntercalibration_Stat79: 1.69952381e-22 syst_JES_EtaIntercalibration_Stat8: 0.0 syst_JES_EtaIntercalibration_Stat80: 0.0 syst_JES_EtaIntercalibration_Stat81: 0.0 - syst_JES_EtaIntercalibration_Stat82: 1.35013360449994e-23 - syst_JES_EtaIntercalibration_Stat83: 1.35013360449994e-23 - syst_JES_EtaIntercalibration_Stat84: 1.35013360449994e-23 + syst_JES_EtaIntercalibration_Stat82: 1.35013360e-23 + syst_JES_EtaIntercalibration_Stat83: 1.35013360e-23 + syst_JES_EtaIntercalibration_Stat84: 1.35013360e-23 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 1.9113180661522561e-22 - syst_JES_EtaIntercalibration_Stat9: 9.545172180049975e-20 - syst_JES_EtaIntercalibration_Stat90: 1.9113180661522561e-22 - syst_JES_EtaIntercalibration_Stat91: 1.9598154887641844e-22 - syst_JES_EtaIntercalibration_Stat92: 1.9598154887641844e-22 + syst_JES_EtaIntercalibration_Stat89: 1.91131807e-22 + syst_JES_EtaIntercalibration_Stat9: 9.54517218e-20 + syst_JES_EtaIntercalibration_Stat90: 1.91131807e-22 + syst_JES_EtaIntercalibration_Stat91: 1.95981549e-22 + syst_JES_EtaIntercalibration_Stat92: 1.95981549e-22 syst_JES_EtaIntercalibration_Stat93: 0.0 syst_JES_EtaIntercalibration_Stat94: 0.0 - syst_JES_EtaIntercalibration_Stat95: 9.667730292059249e-20 - syst_JES_EtaIntercalibration_Stat96: 6.553597978782343e-09 - syst_JES_EtaIntercalibration_Stat97: 9.412331645240726e-09 - syst_JES_EtaIntercalibration_Stat98: 2.056764961657019e-08 - syst_JES_EtaIntercalibration_Stat99: 6.270244614248056e-14 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.00011192035739757089 - syst_JES_Flavour_Comp: 0.00027276163586545675 - syst_JES_Flavour_Response: 3.594051022175395e-05 - syst_JES_Gjet_Generator: 0.0002985619366228723 - syst_JES_Gjet_OOC: 0.000247838778241017 - syst_JES_Gjet_Purity: 4.2023084132414645e-05 - syst_JES_Gjet_Stat1: 6.791361774342463e-07 - syst_JES_Gjet_Stat10: 5.559799996402749e-06 - syst_JES_Gjet_Stat11: 5.938786660589855e-06 - syst_JES_Gjet_Stat12: 1.2348706521332506e-05 - syst_JES_Gjet_Stat13: 5.019841730572788e-05 - syst_JES_Gjet_Stat14: 0.00013036813797857205 - syst_JES_Gjet_Stat15: 0.00022217080703818852 - syst_JES_Gjet_Stat2: 1.3261254955697067e-06 - syst_JES_Gjet_Stat3: 1.398437656815634e-06 - syst_JES_Gjet_Stat4: 1.186233817592468e-06 - syst_JES_Gjet_Stat5: 1.383874700794837e-06 - syst_JES_Gjet_Stat6: 4.892041291730887e-06 - syst_JES_Gjet_Stat7: 2.9526296753910743e-06 - syst_JES_Gjet_Stat8: 1.9537366122382003e-06 - syst_JES_Gjet_Stat9: 3.108185322660153e-06 - syst_JES_Gjet_Veto: 0.00025544263543895724 - syst_JES_Gjet_dPhi: 2.7730292100877696e-05 - syst_JES_LArESZee: 0.00044494315367246635 - syst_JES_LArEsmear: 4.1123890866502407e-05 - syst_JES_LAr_JVT: 5.223306328370948e-05 - syst_JES_MJB_Alpha: 6.173931061325515e-06 - syst_JES_MJB_Asym: 7.516561497786073e-05 - syst_JES_MJB_Beta: 3.910187324157245e-06 - syst_JES_MJB_Fragmentation: 2.630030798298758e-05 - syst_JES_MJB_Stat1: 3.003643621786713e-10 - syst_JES_MJB_Stat10: 3.333826742648754e-06 - syst_JES_MJB_Stat11: 4.537643303522215e-06 - syst_JES_MJB_Stat12: 7.983684738264658e-06 - syst_JES_MJB_Stat13: 1.193839732753103e-05 - syst_JES_MJB_Stat14: 1.2795517994594826e-05 - syst_JES_MJB_Stat15: 3.2876539887889666e-05 - syst_JES_MJB_Stat16: 2.628578846068727e-06 - syst_JES_MJB_Stat2: 1.1875225862141528e-07 - syst_JES_MJB_Stat3: 2.401606962015225e-07 - syst_JES_MJB_Stat4: 1.4635809466852183e-07 - syst_JES_MJB_Stat5: 2.766345739418701e-07 - syst_JES_MJB_Stat6: 4.773135133222189e-07 - syst_JES_MJB_Stat7: 8.838651070723406e-07 - syst_JES_MJB_Stat8: 1.2467112697012088e-06 - syst_JES_MJB_Stat9: 2.0717898059407474e-06 - syst_JES_MJB_Threshold: 4.986289602500039e-05 - syst_JES_Pileup_MuOffset: 6.680134729180243e-05 - syst_JES_Pileup_NPVOffset: 6.858788723236777e-05 - syst_JES_Pileup_Pt_term: 3.283352098085126e-05 - syst_JES_Pileup_Rho_topology: 7.976153584278579e-05 - syst_JES_PunchThrough_MC15: 8.440712469928117e-05 - syst_JES_SingleParticle_HighPt: 9.737732436250237e-08 - syst_JES_Zjet_MC: 0.00011474172780640877 - syst_JES_Zjet_MuScale: 9.117667300357038e-06 - syst_JES_Zjet_MuSmearID: 2.5533109387616697e-06 - syst_JES_Zjet_MuSmearMS: 3.0680013037806875e-05 - syst_JES_Zjet_OOC: 7.464362263448902e-05 - syst_JES_Zjet_Stat1: 9.87602278247676e-06 - syst_JES_Zjet_Stat10: 5.284775113474556e-06 - syst_JES_Zjet_Stat11: 7.99065522970426e-06 - syst_JES_Zjet_Stat12: 1.83251650742906e-05 - syst_JES_Zjet_Stat13: 2.974005379954784e-05 - syst_JES_Zjet_Stat2: 6.102380027497468e-08 - syst_JES_Zjet_Stat3: 4.703489874550599e-06 - syst_JES_Zjet_Stat4: 4.71770842146905e-06 - syst_JES_Zjet_Stat5: 4.753479225788202e-06 - syst_JES_Zjet_Stat6: 4.073699393671556e-06 - syst_JES_Zjet_Stat7: 4.58482963151304e-06 - syst_JES_Zjet_Stat8: 3.0317144901853803e-06 - syst_JES_Zjet_Stat9: 3.7411539663585088e-06 - syst_JES_Zjet_Veto: 1.4676064697322645e-05 - syst_JES_Zjet_dPhi: 1.381491262187351e-05 - syst_PRW: 6.151e-06 - syst_Unfolding_bias: 1.0099e-06 - syst_cleaning: 7.163762140104876e-05 - syst_lumi: 0.0002342 -- stat: 9.5536e-05 + syst_JES_EtaIntercalibration_Stat95: 9.66773029e-20 + syst_JES_EtaIntercalibration_Stat96: 6.55359798e-09 + syst_JES_EtaIntercalibration_Stat97: 9.41233165e-09 + syst_JES_EtaIntercalibration_Stat98: 2.05676496e-08 + syst_JES_EtaIntercalibration_Stat99: 6.27024461e-14 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.11920357e-04 + syst_JES_Flavour_Comp: 2.72761636e-04 + syst_JES_Flavour_Response: 3.59405102e-05 + syst_JES_Gjet_Generator: 2.98561937e-04 + syst_JES_Gjet_OOC: 2.47838778e-04 + syst_JES_Gjet_Purity: 4.20230841e-05 + syst_JES_Gjet_Stat1: 6.79136177e-07 + syst_JES_Gjet_Stat10: 5.55980000e-06 + syst_JES_Gjet_Stat11: 5.93878666e-06 + syst_JES_Gjet_Stat12: 1.23487065e-05 + syst_JES_Gjet_Stat13: 5.01984173e-05 + syst_JES_Gjet_Stat14: 1.30368138e-04 + syst_JES_Gjet_Stat15: 2.22170807e-04 + syst_JES_Gjet_Stat2: 1.32612550e-06 + syst_JES_Gjet_Stat3: 1.39843766e-06 + syst_JES_Gjet_Stat4: 1.18623382e-06 + syst_JES_Gjet_Stat5: 1.38387470e-06 + syst_JES_Gjet_Stat6: 4.89204129e-06 + syst_JES_Gjet_Stat7: 2.95262968e-06 + syst_JES_Gjet_Stat8: 1.95373661e-06 + syst_JES_Gjet_Stat9: 3.10818532e-06 + syst_JES_Gjet_Veto: 2.55442635e-04 + syst_JES_Gjet_dPhi: 2.77302921e-05 + syst_JES_LArESZee: 4.44943154e-04 + syst_JES_LArEsmear: 4.11238909e-05 + syst_JES_LAr_JVT: 5.22330633e-05 + syst_JES_MJB_Alpha: 6.17393106e-06 + syst_JES_MJB_Asym: 7.51656150e-05 + syst_JES_MJB_Beta: 3.91018732e-06 + syst_JES_MJB_Fragmentation: 2.63003080e-05 + syst_JES_MJB_Stat1: 3.00364362e-10 + syst_JES_MJB_Stat10: 3.33382674e-06 + syst_JES_MJB_Stat11: 4.53764330e-06 + syst_JES_MJB_Stat12: 7.98368474e-06 + syst_JES_MJB_Stat13: 1.19383973e-05 + syst_JES_MJB_Stat14: 1.27955180e-05 + syst_JES_MJB_Stat15: 3.28765399e-05 + syst_JES_MJB_Stat16: 2.62857885e-06 + syst_JES_MJB_Stat2: 1.18752259e-07 + syst_JES_MJB_Stat3: 2.40160696e-07 + syst_JES_MJB_Stat4: 1.46358095e-07 + syst_JES_MJB_Stat5: 2.76634574e-07 + syst_JES_MJB_Stat6: 4.77313513e-07 + syst_JES_MJB_Stat7: 8.83865107e-07 + syst_JES_MJB_Stat8: 1.24671127e-06 + syst_JES_MJB_Stat9: 2.07178981e-06 + syst_JES_MJB_Threshold: 4.98628960e-05 + syst_JES_Pileup_MuOffset: 6.68013473e-05 + syst_JES_Pileup_NPVOffset: 6.85878872e-05 + syst_JES_Pileup_Pt_term: 3.28335210e-05 + syst_JES_Pileup_Rho_topology: 7.97615358e-05 + syst_JES_PunchThrough_MC15: 8.44071247e-05 + syst_JES_SingleParticle_HighPt: 9.73773244e-08 + syst_JES_Zjet_MC: 1.14741728e-04 + syst_JES_Zjet_MuScale: 9.11766730e-06 + syst_JES_Zjet_MuSmearID: 2.55331094e-06 + syst_JES_Zjet_MuSmearMS: 3.06800130e-05 + syst_JES_Zjet_OOC: 7.46436226e-05 + syst_JES_Zjet_Stat1: 9.87602278e-06 + syst_JES_Zjet_Stat10: 5.28477511e-06 + syst_JES_Zjet_Stat11: 7.99065523e-06 + syst_JES_Zjet_Stat12: 1.83251651e-05 + syst_JES_Zjet_Stat13: 2.97400538e-05 + syst_JES_Zjet_Stat2: 6.10238003e-08 + syst_JES_Zjet_Stat3: 4.70348987e-06 + syst_JES_Zjet_Stat4: 4.71770842e-06 + syst_JES_Zjet_Stat5: 4.75347923e-06 + syst_JES_Zjet_Stat6: 4.07369939e-06 + syst_JES_Zjet_Stat7: 4.58482963e-06 + syst_JES_Zjet_Stat8: 3.03171449e-06 + syst_JES_Zjet_Stat9: 3.74115397e-06 + syst_JES_Zjet_Veto: 1.46760647e-05 + syst_JES_Zjet_dPhi: 1.38149126e-05 + syst_PRW: 6.15100000e-06 + syst_Unfolding_bias: 1.00990000e-06 + syst_cleaning: 7.16376214e-05 + syst_lumi: 2.34200000e-04 +- stat: 9.55360000e-05 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 9.902888101458078e-06 - syst_JER_NP1: 8.94406993487864e-07 - syst_JER_NP2: 6.619996582325401e-06 - syst_JER_NP3: 1.036365595482598e-06 - syst_JER_NP4: 2.112008285968594e-06 - syst_JER_NP5: 2.1338462057983468e-06 - syst_JER_NP6: 2.3859442968141567e-06 - syst_JER_NP7: 1.3454468848676263e-06 - syst_JER_NP8: 1.6807290084960158e-06 - syst_JES_EtaIntercalibration_Modelling: 7.339474299975442e-05 + syst_JER_NP0: 9.90288810e-06 + syst_JER_NP1: 8.94406993e-07 + syst_JER_NP2: 6.61999658e-06 + syst_JER_NP3: 1.03636560e-06 + syst_JER_NP4: 2.11200829e-06 + syst_JER_NP5: 2.13384621e-06 + syst_JER_NP6: 2.38594430e-06 + syst_JER_NP7: 1.34544688e-06 + syst_JER_NP8: 1.68072901e-06 + syst_JES_EtaIntercalibration_Modelling: 7.33947430e-05 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 - syst_JES_EtaIntercalibration_Stat10: 8.892840041291645e-23 - syst_JES_EtaIntercalibration_Stat100: 8.729804636989306e-22 + syst_JES_EtaIntercalibration_Stat10: 8.89284004e-23 + syst_JES_EtaIntercalibration_Stat100: 8.72980464e-22 syst_JES_EtaIntercalibration_Stat101: 0.0 syst_JES_EtaIntercalibration_Stat102: 0.0 - syst_JES_EtaIntercalibration_Stat103: 2.230015414744929e-24 - syst_JES_EtaIntercalibration_Stat104: 2.230015414744929e-24 - syst_JES_EtaIntercalibration_Stat105: 2.230015414744929e-24 + syst_JES_EtaIntercalibration_Stat103: 2.23001541e-24 + syst_JES_EtaIntercalibration_Stat104: 2.23001541e-24 + syst_JES_EtaIntercalibration_Stat105: 2.23001541e-24 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 2.7123915646528615e-23 - syst_JES_EtaIntercalibration_Stat11: 9.942837660849141e-22 - syst_JES_EtaIntercalibration_Stat110: 2.6315946320624686e-23 - syst_JES_EtaIntercalibration_Stat111: 2.922835737772481e-23 - syst_JES_EtaIntercalibration_Stat112: 2.922835737772481e-23 + syst_JES_EtaIntercalibration_Stat109: 2.71239156e-23 + syst_JES_EtaIntercalibration_Stat11: 9.94283766e-22 + syst_JES_EtaIntercalibration_Stat110: 2.63159463e-23 + syst_JES_EtaIntercalibration_Stat111: 2.92283574e-23 + syst_JES_EtaIntercalibration_Stat112: 2.92283574e-23 syst_JES_EtaIntercalibration_Stat113: 0.0 - syst_JES_EtaIntercalibration_Stat114: 2.783405647763186e-23 - syst_JES_EtaIntercalibration_Stat115: 4.7826394250455467e-20 - syst_JES_EtaIntercalibration_Stat116: 1.1449427976977715e-08 - syst_JES_EtaIntercalibration_Stat117: 1.0941201533652508e-08 - syst_JES_EtaIntercalibration_Stat118: 9.753468652228293e-09 - syst_JES_EtaIntercalibration_Stat119: 1.4188601058596297e-08 - syst_JES_EtaIntercalibration_Stat12: 3.921339888683359e-18 - syst_JES_EtaIntercalibration_Stat120: 4.133208017192412e-18 - syst_JES_EtaIntercalibration_Stat121: 6.993155135559342e-23 + syst_JES_EtaIntercalibration_Stat114: 2.78340565e-23 + syst_JES_EtaIntercalibration_Stat115: 4.78263943e-20 + syst_JES_EtaIntercalibration_Stat116: 1.14494280e-08 + syst_JES_EtaIntercalibration_Stat117: 1.09412015e-08 + syst_JES_EtaIntercalibration_Stat118: 9.75346865e-09 + syst_JES_EtaIntercalibration_Stat119: 1.41886011e-08 + syst_JES_EtaIntercalibration_Stat12: 3.92133989e-18 + syst_JES_EtaIntercalibration_Stat120: 4.13320802e-18 + syst_JES_EtaIntercalibration_Stat121: 6.99315514e-23 syst_JES_EtaIntercalibration_Stat122: 0.0 - syst_JES_EtaIntercalibration_Stat123: 2.230015414744929e-24 - syst_JES_EtaIntercalibration_Stat124: 2.230015414744929e-24 - syst_JES_EtaIntercalibration_Stat125: 2.230015414744929e-24 + syst_JES_EtaIntercalibration_Stat123: 2.23001541e-24 + syst_JES_EtaIntercalibration_Stat124: 2.23001541e-24 + syst_JES_EtaIntercalibration_Stat125: 2.23001541e-24 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 2.7123915646528615e-23 - syst_JES_EtaIntercalibration_Stat129: 2.6315946320624686e-23 + syst_JES_EtaIntercalibration_Stat128: 2.71239156e-23 + syst_JES_EtaIntercalibration_Stat129: 2.63159463e-23 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 2.83103704497133e-24 + syst_JES_EtaIntercalibration_Stat130: 2.83103704e-24 syst_JES_EtaIntercalibration_Stat131: 0.0 syst_JES_EtaIntercalibration_Stat132: 0.0 - syst_JES_EtaIntercalibration_Stat133: 2.783405647763186e-23 - syst_JES_EtaIntercalibration_Stat134: 6.864117357921222e-10 - syst_JES_EtaIntercalibration_Stat135: 1.579739456366144e-08 - syst_JES_EtaIntercalibration_Stat136: 3.202392950201458e-08 - syst_JES_EtaIntercalibration_Stat137: 1.3405366537323773e-08 - syst_JES_EtaIntercalibration_Stat138: 1.7906825514311576e-08 - syst_JES_EtaIntercalibration_Stat139: 9.366681734077441e-20 + syst_JES_EtaIntercalibration_Stat133: 2.78340565e-23 + syst_JES_EtaIntercalibration_Stat134: 6.86411736e-10 + syst_JES_EtaIntercalibration_Stat135: 1.57973946e-08 + syst_JES_EtaIntercalibration_Stat136: 3.20239295e-08 + syst_JES_EtaIntercalibration_Stat137: 1.34053665e-08 + syst_JES_EtaIntercalibration_Stat138: 1.79068255e-08 + syst_JES_EtaIntercalibration_Stat139: 9.36668173e-20 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 6.993155135559342e-23 + syst_JES_EtaIntercalibration_Stat140: 6.99315514e-23 syst_JES_EtaIntercalibration_Stat141: 0.0 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 2.230015414744929e-24 - syst_JES_EtaIntercalibration_Stat144: 2.230015414744929e-24 + syst_JES_EtaIntercalibration_Stat143: 2.23001541e-24 + syst_JES_EtaIntercalibration_Stat144: 2.23001541e-24 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 2.83103704497133e-24 - syst_JES_EtaIntercalibration_Stat148: 2.83103704497133e-24 + syst_JES_EtaIntercalibration_Stat147: 2.83103704e-24 + syst_JES_EtaIntercalibration_Stat148: 2.83103704e-24 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 syst_JES_EtaIntercalibration_Stat150: 0.0 syst_JES_EtaIntercalibration_Stat151: 0.0 - syst_JES_EtaIntercalibration_Stat152: 7.486789615715762e-10 - syst_JES_EtaIntercalibration_Stat153: 2.7706501042174198e-08 - syst_JES_EtaIntercalibration_Stat154: 7.331985474617362e-08 - syst_JES_EtaIntercalibration_Stat155: 1.2612049278368683e-08 - syst_JES_EtaIntercalibration_Stat156: 2.0483273053884725e-08 - syst_JES_EtaIntercalibration_Stat157: 7.775157559175248e-18 + syst_JES_EtaIntercalibration_Stat152: 7.48678962e-10 + syst_JES_EtaIntercalibration_Stat153: 2.77065010e-08 + syst_JES_EtaIntercalibration_Stat154: 7.33198547e-08 + syst_JES_EtaIntercalibration_Stat155: 1.26120493e-08 + syst_JES_EtaIntercalibration_Stat156: 2.04832731e-08 + syst_JES_EtaIntercalibration_Stat157: 7.77515756e-18 syst_JES_EtaIntercalibration_Stat158: 0.0 syst_JES_EtaIntercalibration_Stat159: 0.0 syst_JES_EtaIntercalibration_Stat16: 0.0 @@ -11209,18 +11209,18 @@ bins: syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 2.83103704497133e-24 + syst_JES_EtaIntercalibration_Stat165: 2.83103704e-24 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 3.525756005100183e-09 - syst_JES_EtaIntercalibration_Stat171: 6.220183337330179e-08 - syst_JES_EtaIntercalibration_Stat172: 1.0692882714684568e-07 - syst_JES_EtaIntercalibration_Stat173: 8.922552269390188e-08 - syst_JES_EtaIntercalibration_Stat174: 6.789142269094086e-08 - syst_JES_EtaIntercalibration_Stat175: 1.0416928662038538e-17 + syst_JES_EtaIntercalibration_Stat170: 3.52575601e-09 + syst_JES_EtaIntercalibration_Stat171: 6.22018334e-08 + syst_JES_EtaIntercalibration_Stat172: 1.06928827e-07 + syst_JES_EtaIntercalibration_Stat173: 8.92255227e-08 + syst_JES_EtaIntercalibration_Stat174: 6.78914227e-08 + syst_JES_EtaIntercalibration_Stat175: 1.04169287e-17 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 syst_JES_EtaIntercalibration_Stat178: 0.0 @@ -11233,14 +11233,14 @@ bins: syst_JES_EtaIntercalibration_Stat184: 0.0 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 - syst_JES_EtaIntercalibration_Stat187: 8.884928066675611e-09 - syst_JES_EtaIntercalibration_Stat188: 3.4667031528528657e-07 - syst_JES_EtaIntercalibration_Stat189: 5.500624214577833e-07 + syst_JES_EtaIntercalibration_Stat187: 8.88492807e-09 + syst_JES_EtaIntercalibration_Stat188: 3.46670315e-07 + syst_JES_EtaIntercalibration_Stat189: 5.50062421e-07 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 5.305558665211421e-07 - syst_JES_EtaIntercalibration_Stat191: 3.0644035308686095e-07 - syst_JES_EtaIntercalibration_Stat192: 1.0876177039750685e-08 - syst_JES_EtaIntercalibration_Stat193: 4.227936021275629e-18 + syst_JES_EtaIntercalibration_Stat190: 5.30555867e-07 + syst_JES_EtaIntercalibration_Stat191: 3.06440353e-07 + syst_JES_EtaIntercalibration_Stat192: 1.08761770e-08 + syst_JES_EtaIntercalibration_Stat193: 4.22793602e-18 syst_JES_EtaIntercalibration_Stat194: 0.0 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 @@ -11251,13 +11251,13 @@ bins: syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 syst_JES_EtaIntercalibration_Stat201: 0.0 - syst_JES_EtaIntercalibration_Stat202: 1.4470384471395362e-08 - syst_JES_EtaIntercalibration_Stat203: 7.706683511731878e-07 - syst_JES_EtaIntercalibration_Stat204: 1.0750953015895846e-06 - syst_JES_EtaIntercalibration_Stat205: 1.0243742577788646e-06 - syst_JES_EtaIntercalibration_Stat206: 8.330285274226807e-07 - syst_JES_EtaIntercalibration_Stat207: 7.2256035561051925e-09 - syst_JES_EtaIntercalibration_Stat208: 4.227936021275629e-18 + syst_JES_EtaIntercalibration_Stat202: 1.44703845e-08 + syst_JES_EtaIntercalibration_Stat203: 7.70668351e-07 + syst_JES_EtaIntercalibration_Stat204: 1.07509530e-06 + syst_JES_EtaIntercalibration_Stat205: 1.02437426e-06 + syst_JES_EtaIntercalibration_Stat206: 8.33028527e-07 + syst_JES_EtaIntercalibration_Stat207: 7.22560356e-09 + syst_JES_EtaIntercalibration_Stat208: 4.22793602e-18 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 @@ -11265,38 +11265,38 @@ bins: syst_JES_EtaIntercalibration_Stat212: 0.0 syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 - syst_JES_EtaIntercalibration_Stat215: 1.70429890277498e-08 - syst_JES_EtaIntercalibration_Stat216: 8.834942147518567e-07 - syst_JES_EtaIntercalibration_Stat217: 1.1260483382164374e-06 - syst_JES_EtaIntercalibration_Stat218: 1.2499981869986852e-06 - syst_JES_EtaIntercalibration_Stat219: 9.726315373768218e-07 + syst_JES_EtaIntercalibration_Stat215: 1.70429890e-08 + syst_JES_EtaIntercalibration_Stat216: 8.83494215e-07 + syst_JES_EtaIntercalibration_Stat217: 1.12604834e-06 + syst_JES_EtaIntercalibration_Stat218: 1.24999819e-06 + syst_JES_EtaIntercalibration_Stat219: 9.72631537e-07 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 6.9688194660214865e-09 + syst_JES_EtaIntercalibration_Stat220: 6.96881947e-09 syst_JES_EtaIntercalibration_Stat221: 0.0 syst_JES_EtaIntercalibration_Stat222: 0.0 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 - syst_JES_EtaIntercalibration_Stat227: 6.288232979144459e-08 - syst_JES_EtaIntercalibration_Stat228: 2.062109114474789e-06 - syst_JES_EtaIntercalibration_Stat229: 3.2233177007549227e-06 + syst_JES_EtaIntercalibration_Stat227: 6.28823298e-08 + syst_JES_EtaIntercalibration_Stat228: 2.06210911e-06 + syst_JES_EtaIntercalibration_Stat229: 3.22331770e-06 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 3.517676896760133e-06 - syst_JES_EtaIntercalibration_Stat231: 2.9225555170090443e-06 - syst_JES_EtaIntercalibration_Stat232: 3.9970327431733654e-08 + syst_JES_EtaIntercalibration_Stat230: 3.51767690e-06 + syst_JES_EtaIntercalibration_Stat231: 2.92255552e-06 + syst_JES_EtaIntercalibration_Stat232: 3.99703274e-08 syst_JES_EtaIntercalibration_Stat233: 0.0 syst_JES_EtaIntercalibration_Stat234: 0.0 syst_JES_EtaIntercalibration_Stat235: 0.0 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 - syst_JES_EtaIntercalibration_Stat238: 2.686582354963272e-08 - syst_JES_EtaIntercalibration_Stat239: 3.8085739417792584e-07 + syst_JES_EtaIntercalibration_Stat238: 2.68658235e-08 + syst_JES_EtaIntercalibration_Stat239: 3.80857394e-07 syst_JES_EtaIntercalibration_Stat24: 0.0 - syst_JES_EtaIntercalibration_Stat240: 5.088959299306686e-07 - syst_JES_EtaIntercalibration_Stat241: 5.164316871571689e-07 - syst_JES_EtaIntercalibration_Stat242: 2.893861563724153e-07 - syst_JES_EtaIntercalibration_Stat243: 9.8622951375657e-09 + syst_JES_EtaIntercalibration_Stat240: 5.08895930e-07 + syst_JES_EtaIntercalibration_Stat241: 5.16431687e-07 + syst_JES_EtaIntercalibration_Stat242: 2.89386156e-07 + syst_JES_EtaIntercalibration_Stat243: 9.86229514e-09 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 syst_JES_EtaIntercalibration_Stat25: 0.0 @@ -11305,12 +11305,12 @@ bins: syst_JES_EtaIntercalibration_Stat28: 0.0 syst_JES_EtaIntercalibration_Stat29: 0.0 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 2.6132629259223035e-23 - syst_JES_EtaIntercalibration_Stat31: 8.059129667650223e-10 - syst_JES_EtaIntercalibration_Stat32: 1.4997249981246564e-21 - syst_JES_EtaIntercalibration_Stat33: 3.923109562188873e-18 - syst_JES_EtaIntercalibration_Stat34: 4.161274007844009e-18 - syst_JES_EtaIntercalibration_Stat35: 6.478052433337893e-23 + syst_JES_EtaIntercalibration_Stat30: 2.61326293e-23 + syst_JES_EtaIntercalibration_Stat31: 8.05912967e-10 + syst_JES_EtaIntercalibration_Stat32: 1.49972500e-21 + syst_JES_EtaIntercalibration_Stat33: 3.92310956e-18 + syst_JES_EtaIntercalibration_Stat34: 4.16127401e-18 + syst_JES_EtaIntercalibration_Stat35: 6.47805243e-23 syst_JES_EtaIntercalibration_Stat36: 0.0 syst_JES_EtaIntercalibration_Stat37: 0.0 syst_JES_EtaIntercalibration_Stat38: 0.0 @@ -11329,215 +11329,215 @@ bins: syst_JES_EtaIntercalibration_Stat5: 0.0 syst_JES_EtaIntercalibration_Stat50: 0.0 syst_JES_EtaIntercalibration_Stat51: 0.0 - syst_JES_EtaIntercalibration_Stat52: 1.8067791093545445e-23 - syst_JES_EtaIntercalibration_Stat53: 8.545849537641066e-21 - syst_JES_EtaIntercalibration_Stat54: 6.889232087717489e-10 - syst_JES_EtaIntercalibration_Stat55: 3.92650529196011e-18 - syst_JES_EtaIntercalibration_Stat56: 4.16034875583667e-18 - syst_JES_EtaIntercalibration_Stat57: 1.6596913809500849e-22 + syst_JES_EtaIntercalibration_Stat52: 1.80677911e-23 + syst_JES_EtaIntercalibration_Stat53: 8.54584954e-21 + syst_JES_EtaIntercalibration_Stat54: 6.88923209e-10 + syst_JES_EtaIntercalibration_Stat55: 3.92650529e-18 + syst_JES_EtaIntercalibration_Stat56: 4.16034876e-18 + syst_JES_EtaIntercalibration_Stat57: 1.65969138e-22 syst_JES_EtaIntercalibration_Stat58: 0.0 syst_JES_EtaIntercalibration_Stat59: 0.0 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 2.230015414744929e-24 - syst_JES_EtaIntercalibration_Stat62: 2.230015414744929e-24 + syst_JES_EtaIntercalibration_Stat61: 2.23001541e-24 + syst_JES_EtaIntercalibration_Stat62: 2.23001541e-24 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 2.7123915646528615e-23 - syst_JES_EtaIntercalibration_Stat69: 2.7123915646528615e-23 + syst_JES_EtaIntercalibration_Stat68: 2.71239156e-23 + syst_JES_EtaIntercalibration_Stat69: 2.71239156e-23 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 2.922835737772481e-23 - syst_JES_EtaIntercalibration_Stat71: 2.922835737772481e-23 + syst_JES_EtaIntercalibration_Stat70: 2.92283574e-23 + syst_JES_EtaIntercalibration_Stat71: 2.92283574e-23 syst_JES_EtaIntercalibration_Stat72: 0.0 syst_JES_EtaIntercalibration_Stat73: 0.0 - syst_JES_EtaIntercalibration_Stat74: 6.970900368092705e-21 - syst_JES_EtaIntercalibration_Stat75: 7.579778014559529e-10 - syst_JES_EtaIntercalibration_Stat76: 1.5510514981008243e-09 - syst_JES_EtaIntercalibration_Stat77: 2.047750640947281e-08 - syst_JES_EtaIntercalibration_Stat78: 8.017663188256392e-09 - syst_JES_EtaIntercalibration_Stat79: 6.046824207797016e-23 + syst_JES_EtaIntercalibration_Stat74: 6.97090037e-21 + syst_JES_EtaIntercalibration_Stat75: 7.57977801e-10 + syst_JES_EtaIntercalibration_Stat76: 1.55105150e-09 + syst_JES_EtaIntercalibration_Stat77: 2.04775064e-08 + syst_JES_EtaIntercalibration_Stat78: 8.01766319e-09 + syst_JES_EtaIntercalibration_Stat79: 6.04682421e-23 syst_JES_EtaIntercalibration_Stat8: 0.0 syst_JES_EtaIntercalibration_Stat80: 0.0 syst_JES_EtaIntercalibration_Stat81: 0.0 - syst_JES_EtaIntercalibration_Stat82: 2.230015414744929e-24 - syst_JES_EtaIntercalibration_Stat83: 2.230015414744929e-24 - syst_JES_EtaIntercalibration_Stat84: 2.230015414744929e-24 + syst_JES_EtaIntercalibration_Stat82: 2.23001541e-24 + syst_JES_EtaIntercalibration_Stat83: 2.23001541e-24 + syst_JES_EtaIntercalibration_Stat84: 2.23001541e-24 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 2.7123915646528615e-23 - syst_JES_EtaIntercalibration_Stat9: 6.825244242333018e-21 - syst_JES_EtaIntercalibration_Stat90: 2.7123915646528615e-23 - syst_JES_EtaIntercalibration_Stat91: 2.922835737772481e-23 - syst_JES_EtaIntercalibration_Stat92: 2.922835737772481e-23 + syst_JES_EtaIntercalibration_Stat89: 2.71239156e-23 + syst_JES_EtaIntercalibration_Stat9: 6.82524424e-21 + syst_JES_EtaIntercalibration_Stat90: 2.71239156e-23 + syst_JES_EtaIntercalibration_Stat91: 2.92283574e-23 + syst_JES_EtaIntercalibration_Stat92: 2.92283574e-23 syst_JES_EtaIntercalibration_Stat93: 0.0 syst_JES_EtaIntercalibration_Stat94: 0.0 - syst_JES_EtaIntercalibration_Stat95: 6.974567332437189e-21 - syst_JES_EtaIntercalibration_Stat96: 1.739140051864714e-09 - syst_JES_EtaIntercalibration_Stat97: 2.392003971568609e-09 - syst_JES_EtaIntercalibration_Stat98: 7.723467679740751e-09 - syst_JES_EtaIntercalibration_Stat99: 1.7964148684573725e-15 - syst_JES_EtaIntercalibration_TotalStat_MJB: 5.0484952213506165e-05 - syst_JES_Flavour_Comp: 9.994905552330147e-05 - syst_JES_Flavour_Response: 2.3085053064699678e-05 - syst_JES_Gjet_Generator: 0.00012059993739633533 - syst_JES_Gjet_OOC: 9.953422828354072e-05 - syst_JES_Gjet_Purity: 1.3564070849121957e-05 - syst_JES_Gjet_Stat1: 1.4329425206546143e-07 - syst_JES_Gjet_Stat10: 3.3833688462832427e-06 - syst_JES_Gjet_Stat11: 3.5443821393862144e-06 - syst_JES_Gjet_Stat12: 4.392080002686655e-06 - syst_JES_Gjet_Stat13: 2.2640216430060912e-05 - syst_JES_Gjet_Stat14: 6.041095347699786e-05 - syst_JES_Gjet_Stat15: 0.00010290529274531996 - syst_JES_Gjet_Stat2: 6.375145704217277e-07 - syst_JES_Gjet_Stat3: 7.067649450135456e-07 - syst_JES_Gjet_Stat4: 1.0789453496354668e-06 - syst_JES_Gjet_Stat5: 1.1408174963595186e-06 - syst_JES_Gjet_Stat6: 2.3101486965128456e-06 - syst_JES_Gjet_Stat7: 1.5747287861724e-06 - syst_JES_Gjet_Stat8: 7.284977076147872e-07 - syst_JES_Gjet_Stat9: 1.573196348203237e-06 - syst_JES_Gjet_Veto: 0.00010685997602002351 - syst_JES_Gjet_dPhi: 9.8360996843261e-06 - syst_JES_LArESZee: 0.00017442639565157562 - syst_JES_LArEsmear: 1.608501398818167e-05 - syst_JES_LAr_JVT: 2.0710173828338574e-05 - syst_JES_MJB_Alpha: 3.5404026254085847e-06 - syst_JES_MJB_Asym: 4.6832186581452716e-05 - syst_JES_MJB_Beta: 2.9522619717768955e-06 - syst_JES_MJB_Fragmentation: 1.3117004879163535e-05 - syst_JES_MJB_Stat1: 8.863817397278668e-12 - syst_JES_MJB_Stat10: 8.657219472786859e-07 - syst_JES_MJB_Stat11: 1.3035836097082534e-06 - syst_JES_MJB_Stat12: 2.378638896512037e-06 - syst_JES_MJB_Stat13: 3.945786320557665e-06 - syst_JES_MJB_Stat14: 8.010079837304995e-06 - syst_JES_MJB_Stat15: 6.924154876228579e-06 - syst_JES_MJB_Stat16: 1.7815012629801862e-05 - syst_JES_MJB_Stat2: 4.3126438669508976e-08 - syst_JES_MJB_Stat3: 6.23784265591879e-08 - syst_JES_MJB_Stat4: 3.671073957304592e-08 - syst_JES_MJB_Stat5: 6.808184559778033e-08 - syst_JES_MJB_Stat6: 1.414433585397349e-07 - syst_JES_MJB_Stat7: 2.1900073059238865e-07 - syst_JES_MJB_Stat8: 3.055091283415276e-07 - syst_JES_MJB_Stat9: 5.290979871441584e-07 - syst_JES_MJB_Threshold: 2.1300075117238435e-05 - syst_JES_Pileup_MuOffset: 3.1390716780602506e-05 - syst_JES_Pileup_NPVOffset: 2.9076177104289348e-05 - syst_JES_Pileup_Pt_term: 1.2018559481069267e-05 - syst_JES_Pileup_Rho_topology: 3.493544725633265e-05 - syst_JES_PunchThrough_MC15: 4.5288754398857115e-05 - syst_JES_SingleParticle_HighPt: 1.754086870710798e-07 - syst_JES_Zjet_MC: 4.623742720999948e-05 - syst_JES_Zjet_MuScale: 4.125443888843963e-06 - syst_JES_Zjet_MuSmearID: 9.392051533078382e-07 - syst_JES_Zjet_MuSmearMS: 1.1004926385487547e-05 - syst_JES_Zjet_OOC: 2.985580471198189e-05 - syst_JES_Zjet_Stat1: 4.7263366363389736e-06 - syst_JES_Zjet_Stat10: 2.426560528814396e-06 - syst_JES_Zjet_Stat11: 3.2215363958831818e-06 - syst_JES_Zjet_Stat12: 6.437038197028195e-06 - syst_JES_Zjet_Stat13: 1.0942868488198146e-05 - syst_JES_Zjet_Stat2: 8.852178870199133e-08 - syst_JES_Zjet_Stat3: 1.9332159734494228e-06 - syst_JES_Zjet_Stat4: 2.1208007921537564e-06 - syst_JES_Zjet_Stat5: 2.14591029635444e-06 - syst_JES_Zjet_Stat6: 1.976324113094813e-06 - syst_JES_Zjet_Stat7: 2.210968283354603e-06 - syst_JES_Zjet_Stat8: 1.280036486784654e-06 - syst_JES_Zjet_Stat9: 1.8143414094375953e-06 - syst_JES_Zjet_Veto: 5.662216792034725e-06 - syst_JES_Zjet_dPhi: 5.423513874786346e-06 - syst_PRW: 2.262e-06 - syst_Unfolding_bias: 3.714e-07 - syst_cleaning: 2.6240569734668493e-05 - syst_lumi: 8.614e-05 -- stat: 2.8024e-05 + syst_JES_EtaIntercalibration_Stat95: 6.97456733e-21 + syst_JES_EtaIntercalibration_Stat96: 1.73914005e-09 + syst_JES_EtaIntercalibration_Stat97: 2.39200397e-09 + syst_JES_EtaIntercalibration_Stat98: 7.72346768e-09 + syst_JES_EtaIntercalibration_Stat99: 1.79641487e-15 + syst_JES_EtaIntercalibration_TotalStat_MJB: 5.04849522e-05 + syst_JES_Flavour_Comp: 9.99490555e-05 + syst_JES_Flavour_Response: 2.30850531e-05 + syst_JES_Gjet_Generator: 1.20599937e-04 + syst_JES_Gjet_OOC: 9.95342283e-05 + syst_JES_Gjet_Purity: 1.35640708e-05 + syst_JES_Gjet_Stat1: 1.43294252e-07 + syst_JES_Gjet_Stat10: 3.38336885e-06 + syst_JES_Gjet_Stat11: 3.54438214e-06 + syst_JES_Gjet_Stat12: 4.39208000e-06 + syst_JES_Gjet_Stat13: 2.26402164e-05 + syst_JES_Gjet_Stat14: 6.04109535e-05 + syst_JES_Gjet_Stat15: 1.02905293e-04 + syst_JES_Gjet_Stat2: 6.37514570e-07 + syst_JES_Gjet_Stat3: 7.06764945e-07 + syst_JES_Gjet_Stat4: 1.07894535e-06 + syst_JES_Gjet_Stat5: 1.14081750e-06 + syst_JES_Gjet_Stat6: 2.31014870e-06 + syst_JES_Gjet_Stat7: 1.57472879e-06 + syst_JES_Gjet_Stat8: 7.28497708e-07 + syst_JES_Gjet_Stat9: 1.57319635e-06 + syst_JES_Gjet_Veto: 1.06859976e-04 + syst_JES_Gjet_dPhi: 9.83609968e-06 + syst_JES_LArESZee: 1.74426396e-04 + syst_JES_LArEsmear: 1.60850140e-05 + syst_JES_LAr_JVT: 2.07101738e-05 + syst_JES_MJB_Alpha: 3.54040263e-06 + syst_JES_MJB_Asym: 4.68321866e-05 + syst_JES_MJB_Beta: 2.95226197e-06 + syst_JES_MJB_Fragmentation: 1.31170049e-05 + syst_JES_MJB_Stat1: 8.86381740e-12 + syst_JES_MJB_Stat10: 8.65721947e-07 + syst_JES_MJB_Stat11: 1.30358361e-06 + syst_JES_MJB_Stat12: 2.37863890e-06 + syst_JES_MJB_Stat13: 3.94578632e-06 + syst_JES_MJB_Stat14: 8.01007984e-06 + syst_JES_MJB_Stat15: 6.92415488e-06 + syst_JES_MJB_Stat16: 1.78150126e-05 + syst_JES_MJB_Stat2: 4.31264387e-08 + syst_JES_MJB_Stat3: 6.23784266e-08 + syst_JES_MJB_Stat4: 3.67107396e-08 + syst_JES_MJB_Stat5: 6.80818456e-08 + syst_JES_MJB_Stat6: 1.41443359e-07 + syst_JES_MJB_Stat7: 2.19000731e-07 + syst_JES_MJB_Stat8: 3.05509128e-07 + syst_JES_MJB_Stat9: 5.29097987e-07 + syst_JES_MJB_Threshold: 2.13000751e-05 + syst_JES_Pileup_MuOffset: 3.13907168e-05 + syst_JES_Pileup_NPVOffset: 2.90761771e-05 + syst_JES_Pileup_Pt_term: 1.20185595e-05 + syst_JES_Pileup_Rho_topology: 3.49354473e-05 + syst_JES_PunchThrough_MC15: 4.52887544e-05 + syst_JES_SingleParticle_HighPt: 1.75408687e-07 + syst_JES_Zjet_MC: 4.62374272e-05 + syst_JES_Zjet_MuScale: 4.12544389e-06 + syst_JES_Zjet_MuSmearID: 9.39205153e-07 + syst_JES_Zjet_MuSmearMS: 1.10049264e-05 + syst_JES_Zjet_OOC: 2.98558047e-05 + syst_JES_Zjet_Stat1: 4.72633664e-06 + syst_JES_Zjet_Stat10: 2.42656053e-06 + syst_JES_Zjet_Stat11: 3.22153640e-06 + syst_JES_Zjet_Stat12: 6.43703820e-06 + syst_JES_Zjet_Stat13: 1.09428685e-05 + syst_JES_Zjet_Stat2: 8.85217887e-08 + syst_JES_Zjet_Stat3: 1.93321597e-06 + syst_JES_Zjet_Stat4: 2.12080079e-06 + syst_JES_Zjet_Stat5: 2.14591030e-06 + syst_JES_Zjet_Stat6: 1.97632411e-06 + syst_JES_Zjet_Stat7: 2.21096828e-06 + syst_JES_Zjet_Stat8: 1.28003649e-06 + syst_JES_Zjet_Stat9: 1.81434141e-06 + syst_JES_Zjet_Veto: 5.66221679e-06 + syst_JES_Zjet_dPhi: 5.42351387e-06 + syst_PRW: 2.26200000e-06 + syst_Unfolding_bias: 3.71400000e-07 + syst_cleaning: 2.62405697e-05 + syst_lumi: 8.61400000e-05 +- stat: 2.80240000e-05 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 2.4094320388838528e-06 - syst_JER_NP1: 2.0841748367159605e-07 - syst_JER_NP2: 1.992734992416202e-06 - syst_JER_NP3: 3.0454521831741175e-07 - syst_JER_NP4: 6.348717409839566e-07 - syst_JER_NP5: 9.404595724963409e-07 - syst_JER_NP6: 8.264179859489989e-07 - syst_JER_NP7: 7.794662580894699e-07 - syst_JER_NP8: 5.248657614095246e-07 - syst_JES_EtaIntercalibration_Modelling: 1.4121558722393219e-05 + syst_JER_NP0: 2.40943204e-06 + syst_JER_NP1: 2.08417484e-07 + syst_JER_NP2: 1.99273499e-06 + syst_JER_NP3: 3.04545218e-07 + syst_JER_NP4: 6.34871741e-07 + syst_JER_NP5: 9.40459572e-07 + syst_JER_NP6: 8.26417986e-07 + syst_JER_NP7: 7.79466258e-07 + syst_JER_NP8: 5.24865761e-07 + syst_JES_EtaIntercalibration_Modelling: 1.41215587e-05 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 - syst_JES_EtaIntercalibration_Stat10: 1.0103026613347112e-24 - syst_JES_EtaIntercalibration_Stat100: 4.1783014192372475e-23 + syst_JES_EtaIntercalibration_Stat10: 1.01030266e-24 + syst_JES_EtaIntercalibration_Stat100: 4.17830142e-23 syst_JES_EtaIntercalibration_Stat101: 0.0 syst_JES_EtaIntercalibration_Stat102: 0.0 - syst_JES_EtaIntercalibration_Stat103: 1.2721913181593403e-25 - syst_JES_EtaIntercalibration_Stat104: 1.2721913181593403e-25 - syst_JES_EtaIntercalibration_Stat105: 1.2721913181593403e-25 + syst_JES_EtaIntercalibration_Stat103: 1.27219132e-25 + syst_JES_EtaIntercalibration_Stat104: 1.27219132e-25 + syst_JES_EtaIntercalibration_Stat105: 1.27219132e-25 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 1.2496746576609449e-24 - syst_JES_EtaIntercalibration_Stat11: 4.437514168991463e-23 - syst_JES_EtaIntercalibration_Stat110: 1.2084428120519397e-24 - syst_JES_EtaIntercalibration_Stat111: 1.4575207545692101e-24 - syst_JES_EtaIntercalibration_Stat112: 1.4575207545692101e-24 + syst_JES_EtaIntercalibration_Stat109: 1.24967466e-24 + syst_JES_EtaIntercalibration_Stat11: 4.43751417e-23 + syst_JES_EtaIntercalibration_Stat110: 1.20844281e-24 + syst_JES_EtaIntercalibration_Stat111: 1.45752075e-24 + syst_JES_EtaIntercalibration_Stat112: 1.45752075e-24 syst_JES_EtaIntercalibration_Stat113: 0.0 - syst_JES_EtaIntercalibration_Stat114: 1.2314881241814718e-24 - syst_JES_EtaIntercalibration_Stat115: 5.426520155679881e-22 - syst_JES_EtaIntercalibration_Stat116: 3.4896089680650464e-09 - syst_JES_EtaIntercalibration_Stat117: 2.1944411661457227e-09 - syst_JES_EtaIntercalibration_Stat118: 2.004114270070447e-09 - syst_JES_EtaIntercalibration_Stat119: 3.956893062429158e-09 - syst_JES_EtaIntercalibration_Stat12: 2.724426385052096e-20 - syst_JES_EtaIntercalibration_Stat120: 2.969522409447014e-20 - syst_JES_EtaIntercalibration_Stat121: 2.585951855700334e-24 + syst_JES_EtaIntercalibration_Stat114: 1.23148812e-24 + syst_JES_EtaIntercalibration_Stat115: 5.42652016e-22 + syst_JES_EtaIntercalibration_Stat116: 3.48960897e-09 + syst_JES_EtaIntercalibration_Stat117: 2.19444117e-09 + syst_JES_EtaIntercalibration_Stat118: 2.00411427e-09 + syst_JES_EtaIntercalibration_Stat119: 3.95689306e-09 + syst_JES_EtaIntercalibration_Stat12: 2.72442639e-20 + syst_JES_EtaIntercalibration_Stat120: 2.96952241e-20 + syst_JES_EtaIntercalibration_Stat121: 2.58595186e-24 syst_JES_EtaIntercalibration_Stat122: 0.0 - syst_JES_EtaIntercalibration_Stat123: 1.2721913181593403e-25 - syst_JES_EtaIntercalibration_Stat124: 1.2721913181593403e-25 - syst_JES_EtaIntercalibration_Stat125: 1.2721913181593403e-25 + syst_JES_EtaIntercalibration_Stat123: 1.27219132e-25 + syst_JES_EtaIntercalibration_Stat124: 1.27219132e-25 + syst_JES_EtaIntercalibration_Stat125: 1.27219132e-25 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 1.2496746576609449e-24 - syst_JES_EtaIntercalibration_Stat129: 1.2084428120519397e-24 + syst_JES_EtaIntercalibration_Stat128: 1.24967466e-24 + syst_JES_EtaIntercalibration_Stat129: 1.20844281e-24 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 1.4791713896638211e-25 + syst_JES_EtaIntercalibration_Stat130: 1.47917139e-25 syst_JES_EtaIntercalibration_Stat131: 0.0 syst_JES_EtaIntercalibration_Stat132: 0.0 - syst_JES_EtaIntercalibration_Stat133: 1.2314881241814718e-24 - syst_JES_EtaIntercalibration_Stat134: 3.5671586428444325e-12 - syst_JES_EtaIntercalibration_Stat135: 4.2169063304749845e-09 - syst_JES_EtaIntercalibration_Stat136: 4.616960688591576e-09 - syst_JES_EtaIntercalibration_Stat137: 2.8918860195381144e-09 - syst_JES_EtaIntercalibration_Stat138: 3.964063697772779e-09 - syst_JES_EtaIntercalibration_Stat139: 1.3885163466088543e-21 + syst_JES_EtaIntercalibration_Stat133: 1.23148812e-24 + syst_JES_EtaIntercalibration_Stat134: 3.56715864e-12 + syst_JES_EtaIntercalibration_Stat135: 4.21690633e-09 + syst_JES_EtaIntercalibration_Stat136: 4.61696069e-09 + syst_JES_EtaIntercalibration_Stat137: 2.89188602e-09 + syst_JES_EtaIntercalibration_Stat138: 3.96406370e-09 + syst_JES_EtaIntercalibration_Stat139: 1.38851635e-21 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 2.585951855700334e-24 + syst_JES_EtaIntercalibration_Stat140: 2.58595186e-24 syst_JES_EtaIntercalibration_Stat141: 0.0 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 1.2721913181593403e-25 - syst_JES_EtaIntercalibration_Stat144: 1.2721913181593403e-25 + syst_JES_EtaIntercalibration_Stat143: 1.27219132e-25 + syst_JES_EtaIntercalibration_Stat144: 1.27219132e-25 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 1.4791713896638211e-25 - syst_JES_EtaIntercalibration_Stat148: 1.4791713896638211e-25 + syst_JES_EtaIntercalibration_Stat147: 1.47917139e-25 + syst_JES_EtaIntercalibration_Stat148: 1.47917139e-25 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 syst_JES_EtaIntercalibration_Stat150: 0.0 syst_JES_EtaIntercalibration_Stat151: 0.0 - syst_JES_EtaIntercalibration_Stat152: 3.758550252421666e-12 - syst_JES_EtaIntercalibration_Stat153: 5.270383856988027e-09 - syst_JES_EtaIntercalibration_Stat154: 1.137390059522238e-08 - syst_JES_EtaIntercalibration_Stat155: 2.7380505839008892e-09 - syst_JES_EtaIntercalibration_Stat156: 4.152746651314043e-09 - syst_JES_EtaIntercalibration_Stat157: 5.679555097672705e-20 + syst_JES_EtaIntercalibration_Stat152: 3.75855025e-12 + syst_JES_EtaIntercalibration_Stat153: 5.27038386e-09 + syst_JES_EtaIntercalibration_Stat154: 1.13739006e-08 + syst_JES_EtaIntercalibration_Stat155: 2.73805058e-09 + syst_JES_EtaIntercalibration_Stat156: 4.15274665e-09 + syst_JES_EtaIntercalibration_Stat157: 5.67955510e-20 syst_JES_EtaIntercalibration_Stat158: 0.0 syst_JES_EtaIntercalibration_Stat159: 0.0 syst_JES_EtaIntercalibration_Stat16: 0.0 @@ -11546,18 +11546,18 @@ bins: syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 1.4791713896638211e-25 + syst_JES_EtaIntercalibration_Stat165: 1.47917139e-25 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 4.120925142489244e-11 - syst_JES_EtaIntercalibration_Stat171: 1.4375783387349711e-08 - syst_JES_EtaIntercalibration_Stat172: 2.3071945626669632e-08 - syst_JES_EtaIntercalibration_Stat173: 1.883981387248823e-08 - syst_JES_EtaIntercalibration_Stat174: 1.1808459594714291e-08 - syst_JES_EtaIntercalibration_Stat175: 5.4004707896626935e-20 + syst_JES_EtaIntercalibration_Stat170: 4.12092514e-11 + syst_JES_EtaIntercalibration_Stat171: 1.43757834e-08 + syst_JES_EtaIntercalibration_Stat172: 2.30719456e-08 + syst_JES_EtaIntercalibration_Stat173: 1.88398139e-08 + syst_JES_EtaIntercalibration_Stat174: 1.18084596e-08 + syst_JES_EtaIntercalibration_Stat175: 5.40047079e-20 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 syst_JES_EtaIntercalibration_Stat178: 0.0 @@ -11570,14 +11570,14 @@ bins: syst_JES_EtaIntercalibration_Stat184: 0.0 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 - syst_JES_EtaIntercalibration_Stat187: 2.450260106820294e-09 - syst_JES_EtaIntercalibration_Stat188: 6.03781160686552e-08 - syst_JES_EtaIntercalibration_Stat189: 1.0048544222921051e-07 + syst_JES_EtaIntercalibration_Stat187: 2.45026011e-09 + syst_JES_EtaIntercalibration_Stat188: 6.03781161e-08 + syst_JES_EtaIntercalibration_Stat189: 1.00485442e-07 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 9.782245447748692e-08 - syst_JES_EtaIntercalibration_Stat191: 6.436912050820643e-08 - syst_JES_EtaIntercalibration_Stat192: 3.2825476005688017e-09 - syst_JES_EtaIntercalibration_Stat193: 3.062265827781775e-20 + syst_JES_EtaIntercalibration_Stat190: 9.78224545e-08 + syst_JES_EtaIntercalibration_Stat191: 6.43691205e-08 + syst_JES_EtaIntercalibration_Stat192: 3.28254760e-09 + syst_JES_EtaIntercalibration_Stat193: 3.06226583e-20 syst_JES_EtaIntercalibration_Stat194: 0.0 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 @@ -11588,13 +11588,13 @@ bins: syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 syst_JES_EtaIntercalibration_Stat201: 0.0 - syst_JES_EtaIntercalibration_Stat202: 7.185241262476856e-10 - syst_JES_EtaIntercalibration_Stat203: 1.3872078746532545e-07 - syst_JES_EtaIntercalibration_Stat204: 2.1952714524632256e-07 - syst_JES_EtaIntercalibration_Stat205: 1.8365785444679462e-07 - syst_JES_EtaIntercalibration_Stat206: 1.3987361259365542e-07 - syst_JES_EtaIntercalibration_Stat207: 2.0956879538709956e-09 - syst_JES_EtaIntercalibration_Stat208: 3.062265827781775e-20 + syst_JES_EtaIntercalibration_Stat202: 7.18524126e-10 + syst_JES_EtaIntercalibration_Stat203: 1.38720787e-07 + syst_JES_EtaIntercalibration_Stat204: 2.19527145e-07 + syst_JES_EtaIntercalibration_Stat205: 1.83657854e-07 + syst_JES_EtaIntercalibration_Stat206: 1.39873613e-07 + syst_JES_EtaIntercalibration_Stat207: 2.09568795e-09 + syst_JES_EtaIntercalibration_Stat208: 3.06226583e-20 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 @@ -11602,38 +11602,38 @@ bins: syst_JES_EtaIntercalibration_Stat212: 0.0 syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 - syst_JES_EtaIntercalibration_Stat215: 2.730790969664284e-09 - syst_JES_EtaIntercalibration_Stat216: 1.8758200206842872e-07 - syst_JES_EtaIntercalibration_Stat217: 2.25608865074048e-07 - syst_JES_EtaIntercalibration_Stat218: 2.3894197517389026e-07 - syst_JES_EtaIntercalibration_Stat219: 1.6938107184688614e-07 + syst_JES_EtaIntercalibration_Stat215: 2.73079097e-09 + syst_JES_EtaIntercalibration_Stat216: 1.87582002e-07 + syst_JES_EtaIntercalibration_Stat217: 2.25608865e-07 + syst_JES_EtaIntercalibration_Stat218: 2.38941975e-07 + syst_JES_EtaIntercalibration_Stat219: 1.69381072e-07 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 2.0410528533088016e-09 + syst_JES_EtaIntercalibration_Stat220: 2.04105285e-09 syst_JES_EtaIntercalibration_Stat221: 0.0 syst_JES_EtaIntercalibration_Stat222: 0.0 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 - syst_JES_EtaIntercalibration_Stat227: 7.4344645234206345e-09 - syst_JES_EtaIntercalibration_Stat228: 4.5728112797271653e-07 - syst_JES_EtaIntercalibration_Stat229: 7.181008912402212e-07 + syst_JES_EtaIntercalibration_Stat227: 7.43446452e-09 + syst_JES_EtaIntercalibration_Stat228: 4.57281128e-07 + syst_JES_EtaIntercalibration_Stat229: 7.18100891e-07 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 7.272815273331229e-07 - syst_JES_EtaIntercalibration_Stat231: 5.924033655373676e-07 - syst_JES_EtaIntercalibration_Stat232: 7.496757615796312e-09 + syst_JES_EtaIntercalibration_Stat230: 7.27281527e-07 + syst_JES_EtaIntercalibration_Stat231: 5.92403366e-07 + syst_JES_EtaIntercalibration_Stat232: 7.49675762e-09 syst_JES_EtaIntercalibration_Stat233: 0.0 syst_JES_EtaIntercalibration_Stat234: 0.0 syst_JES_EtaIntercalibration_Stat235: 0.0 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 - syst_JES_EtaIntercalibration_Stat238: 2.3462305955510854e-09 - syst_JES_EtaIntercalibration_Stat239: 6.238803150444803e-08 + syst_JES_EtaIntercalibration_Stat238: 2.34623060e-09 + syst_JES_EtaIntercalibration_Stat239: 6.23880315e-08 syst_JES_EtaIntercalibration_Stat24: 0.0 - syst_JES_EtaIntercalibration_Stat240: 9.34255975362213e-08 - syst_JES_EtaIntercalibration_Stat241: 9.451665078175379e-08 - syst_JES_EtaIntercalibration_Stat242: 6.330775841079828e-08 - syst_JES_EtaIntercalibration_Stat243: 1.8356967151465954e-09 + syst_JES_EtaIntercalibration_Stat240: 9.34255975e-08 + syst_JES_EtaIntercalibration_Stat241: 9.45166508e-08 + syst_JES_EtaIntercalibration_Stat242: 6.33077584e-08 + syst_JES_EtaIntercalibration_Stat243: 1.83569672e-09 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 syst_JES_EtaIntercalibration_Stat25: 0.0 @@ -11642,12 +11642,12 @@ bins: syst_JES_EtaIntercalibration_Stat28: 0.0 syst_JES_EtaIntercalibration_Stat29: 0.0 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 1.1441781712215977e-24 - syst_JES_EtaIntercalibration_Stat31: 4.053156030490314e-12 - syst_JES_EtaIntercalibration_Stat32: 5.2590176839406046e-23 - syst_JES_EtaIntercalibration_Stat33: 2.7270486467319794e-20 - syst_JES_EtaIntercalibration_Stat34: 2.993788164954014e-20 - syst_JES_EtaIntercalibration_Stat35: 2.3276286595750193e-24 + syst_JES_EtaIntercalibration_Stat30: 1.14417817e-24 + syst_JES_EtaIntercalibration_Stat31: 4.05315603e-12 + syst_JES_EtaIntercalibration_Stat32: 5.25901768e-23 + syst_JES_EtaIntercalibration_Stat33: 2.72704865e-20 + syst_JES_EtaIntercalibration_Stat34: 2.99378816e-20 + syst_JES_EtaIntercalibration_Stat35: 2.32762866e-24 syst_JES_EtaIntercalibration_Stat36: 0.0 syst_JES_EtaIntercalibration_Stat37: 0.0 syst_JES_EtaIntercalibration_Stat38: 0.0 @@ -11666,215 +11666,215 @@ bins: syst_JES_EtaIntercalibration_Stat5: 0.0 syst_JES_EtaIntercalibration_Stat50: 0.0 syst_JES_EtaIntercalibration_Stat51: 0.0 - syst_JES_EtaIntercalibration_Stat52: 1.1700515747179693e-24 - syst_JES_EtaIntercalibration_Stat53: 1.415192576886623e-22 - syst_JES_EtaIntercalibration_Stat54: 3.573220816681433e-12 - syst_JES_EtaIntercalibration_Stat55: 2.7141351083895487e-20 - syst_JES_EtaIntercalibration_Stat56: 2.9879836781258946e-20 - syst_JES_EtaIntercalibration_Stat57: 5.5986615364745884e-24 + syst_JES_EtaIntercalibration_Stat52: 1.17005157e-24 + syst_JES_EtaIntercalibration_Stat53: 1.41519258e-22 + syst_JES_EtaIntercalibration_Stat54: 3.57322082e-12 + syst_JES_EtaIntercalibration_Stat55: 2.71413511e-20 + syst_JES_EtaIntercalibration_Stat56: 2.98798368e-20 + syst_JES_EtaIntercalibration_Stat57: 5.59866154e-24 syst_JES_EtaIntercalibration_Stat58: 0.0 syst_JES_EtaIntercalibration_Stat59: 0.0 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 1.2721913181593403e-25 - syst_JES_EtaIntercalibration_Stat62: 1.2721913181593403e-25 + syst_JES_EtaIntercalibration_Stat61: 1.27219132e-25 + syst_JES_EtaIntercalibration_Stat62: 1.27219132e-25 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 1.2496746576609449e-24 - syst_JES_EtaIntercalibration_Stat69: 1.2496746576609449e-24 + syst_JES_EtaIntercalibration_Stat68: 1.24967466e-24 + syst_JES_EtaIntercalibration_Stat69: 1.24967466e-24 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 1.4575207545692101e-24 - syst_JES_EtaIntercalibration_Stat71: 1.4575207545692101e-24 + syst_JES_EtaIntercalibration_Stat70: 1.45752075e-24 + syst_JES_EtaIntercalibration_Stat71: 1.45752075e-24 syst_JES_EtaIntercalibration_Stat72: 0.0 syst_JES_EtaIntercalibration_Stat73: 0.0 - syst_JES_EtaIntercalibration_Stat74: 1.212160390325884e-22 - syst_JES_EtaIntercalibration_Stat75: 3.818883039253755e-12 - syst_JES_EtaIntercalibration_Stat76: 1.659304673582251e-11 - syst_JES_EtaIntercalibration_Stat77: 4.152102690204085e-09 - syst_JES_EtaIntercalibration_Stat78: 1.609941225635287e-09 - syst_JES_EtaIntercalibration_Stat79: 4.6322903622290345e-24 + syst_JES_EtaIntercalibration_Stat74: 1.21216039e-22 + syst_JES_EtaIntercalibration_Stat75: 3.81888304e-12 + syst_JES_EtaIntercalibration_Stat76: 1.65930467e-11 + syst_JES_EtaIntercalibration_Stat77: 4.15210269e-09 + syst_JES_EtaIntercalibration_Stat78: 1.60994123e-09 + syst_JES_EtaIntercalibration_Stat79: 4.63229036e-24 syst_JES_EtaIntercalibration_Stat8: 0.0 syst_JES_EtaIntercalibration_Stat80: 0.0 syst_JES_EtaIntercalibration_Stat81: 0.0 - syst_JES_EtaIntercalibration_Stat82: 1.2721913181593403e-25 - syst_JES_EtaIntercalibration_Stat83: 1.2721913181593403e-25 - syst_JES_EtaIntercalibration_Stat84: 1.2721913181593403e-25 + syst_JES_EtaIntercalibration_Stat82: 1.27219132e-25 + syst_JES_EtaIntercalibration_Stat83: 1.27219132e-25 + syst_JES_EtaIntercalibration_Stat84: 1.27219132e-25 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 1.2496746576609449e-24 - syst_JES_EtaIntercalibration_Stat9: 1.1590414636944617e-22 - syst_JES_EtaIntercalibration_Stat90: 1.2496746576609449e-24 - syst_JES_EtaIntercalibration_Stat91: 1.4575207545692101e-24 - syst_JES_EtaIntercalibration_Stat92: 1.4575207545692101e-24 + syst_JES_EtaIntercalibration_Stat89: 1.24967466e-24 + syst_JES_EtaIntercalibration_Stat9: 1.15904146e-22 + syst_JES_EtaIntercalibration_Stat90: 1.24967466e-24 + syst_JES_EtaIntercalibration_Stat91: 1.45752075e-24 + syst_JES_EtaIntercalibration_Stat92: 1.45752075e-24 syst_JES_EtaIntercalibration_Stat93: 0.0 syst_JES_EtaIntercalibration_Stat94: 0.0 - syst_JES_EtaIntercalibration_Stat95: 1.2156483354704187e-22 - syst_JES_EtaIntercalibration_Stat96: 3.0147890473464305e-11 - syst_JES_EtaIntercalibration_Stat97: 8.714533206087403e-11 - syst_JES_EtaIntercalibration_Stat98: 1.5645854147345232e-09 - syst_JES_EtaIntercalibration_Stat99: 6.570233325162434e-18 - syst_JES_EtaIntercalibration_TotalStat_MJB: 1.6777303120585258e-05 - syst_JES_Flavour_Comp: 1.534235314415621e-05 - syst_JES_Flavour_Response: 1.0949027856389809e-05 - syst_JES_Gjet_Generator: 2.995730962553213e-05 - syst_JES_Gjet_OOC: 2.4925642920494552e-05 - syst_JES_Gjet_Purity: 6.26742865934667e-07 - syst_JES_Gjet_Stat1: 1.5383239808310862e-08 - syst_JES_Gjet_Stat10: 1.5470103425640052e-06 - syst_JES_Gjet_Stat11: 1.5180237152297722e-06 - syst_JES_Gjet_Stat12: 7.857441361537482e-07 - syst_JES_Gjet_Stat13: 7.114394844257662e-06 - syst_JES_Gjet_Stat14: 2.1310914457150825e-05 - syst_JES_Gjet_Stat15: 3.3986554694467045e-05 - syst_JES_Gjet_Stat2: 1.1711594031130006e-07 - syst_JES_Gjet_Stat3: 1.438807342037147e-07 - syst_JES_Gjet_Stat4: 5.507132375383762e-07 - syst_JES_Gjet_Stat5: 5.397253653479702e-07 - syst_JES_Gjet_Stat6: 5.043145447039972e-07 - syst_JES_Gjet_Stat7: 5.940256055087187e-07 - syst_JES_Gjet_Stat8: 1.0916039792433884e-07 - syst_JES_Gjet_Stat9: 5.884271917578248e-07 - syst_JES_Gjet_Veto: 2.908975206150785e-05 - syst_JES_Gjet_dPhi: 1.3640500458194342e-06 - syst_JES_LArESZee: 3.897877196628954e-05 - syst_JES_LArEsmear: 3.7680130042238445e-06 - syst_JES_LAr_JVT: 4.9825637978855825e-06 - syst_JES_MJB_Alpha: 8.60349109373631e-07 - syst_JES_MJB_Asym: 2.1710805489433136e-05 - syst_JES_MJB_Beta: 1.5982502932895085e-06 - syst_JES_MJB_Fragmentation: 4.949276613809335e-06 - syst_JES_MJB_Stat1: 2.4065635152796197e-14 - syst_JES_MJB_Stat10: 7.571910244449547e-08 - syst_JES_MJB_Stat11: 1.1824118191222549e-07 - syst_JES_MJB_Stat12: 2.3292473033149572e-07 - syst_JES_MJB_Stat13: 4.44147644370653e-07 - syst_JES_MJB_Stat14: 4.948206947976206e-06 - syst_JES_MJB_Stat15: 8.175075947659447e-06 - syst_JES_MJB_Stat16: 1.5629839250612913e-05 - syst_JES_MJB_Stat2: 6.624223740945665e-09 - syst_JES_MJB_Stat3: 1.0201570516346981e-08 - syst_JES_MJB_Stat4: 5.615206207255438e-09 - syst_JES_MJB_Stat5: 5.938744732685519e-09 - syst_JES_MJB_Stat6: 1.3556384796471366e-08 - syst_JES_MJB_Stat7: 1.9979130987107522e-08 - syst_JES_MJB_Stat8: 2.5155696670933202e-08 - syst_JES_MJB_Stat9: 4.468223892107467e-08 - syst_JES_MJB_Threshold: 4.947567786296616e-06 - syst_JES_Pileup_MuOffset: 1.0680486552587387e-05 - syst_JES_Pileup_NPVOffset: 7.714768564253888e-06 - syst_JES_Pileup_Pt_term: 2.3810419987896052e-06 - syst_JES_Pileup_Rho_topology: 1.1140698665254345e-05 - syst_JES_PunchThrough_MC15: 2.408449034129641e-05 - syst_JES_SingleParticle_HighPt: 1.2788675302782536e-06 - syst_JES_Zjet_MC: 1.1369044319994534e-05 - syst_JES_Zjet_MuScale: 1.2560411896112325e-06 - syst_JES_Zjet_MuSmearID: 1.1582664330800578e-07 - syst_JES_Zjet_MuSmearMS: 1.974138482984413e-06 - syst_JES_Zjet_OOC: 6.777504315749272e-06 - syst_JES_Zjet_Stat1: 1.36469357000024e-06 - syst_JES_Zjet_Stat10: 7.229981794582888e-07 - syst_JES_Zjet_Stat11: 6.621657873976879e-07 - syst_JES_Zjet_Stat12: 1.1580848187848764e-06 - syst_JES_Zjet_Stat13: 2.5214061553030287e-06 - syst_JES_Zjet_Stat2: 1.4268331787563673e-08 - syst_JES_Zjet_Stat3: 2.8513922914955074e-07 - syst_JES_Zjet_Stat4: 4.3676859719993604e-07 - syst_JES_Zjet_Stat5: 3.577936102000705e-07 - syst_JES_Zjet_Stat6: 6.329030968481668e-07 - syst_JES_Zjet_Stat7: 5.186656606138486e-07 - syst_JES_Zjet_Stat8: 2.401059974261368e-07 - syst_JES_Zjet_Stat9: 6.010721649685667e-07 - syst_JES_Zjet_Veto: 1.224782922603022e-06 - syst_JES_Zjet_dPhi: 1.1743543108874766e-06 - syst_PRW: 4.542e-07 - syst_Unfolding_bias: 7.457e-08 - syst_cleaning: 5.0229473419497445e-06 + syst_JES_EtaIntercalibration_Stat95: 1.21564834e-22 + syst_JES_EtaIntercalibration_Stat96: 3.01478905e-11 + syst_JES_EtaIntercalibration_Stat97: 8.71453321e-11 + syst_JES_EtaIntercalibration_Stat98: 1.56458541e-09 + syst_JES_EtaIntercalibration_Stat99: 6.57023333e-18 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.67773031e-05 + syst_JES_Flavour_Comp: 1.53423531e-05 + syst_JES_Flavour_Response: 1.09490279e-05 + syst_JES_Gjet_Generator: 2.99573096e-05 + syst_JES_Gjet_OOC: 2.49256429e-05 + syst_JES_Gjet_Purity: 6.26742866e-07 + syst_JES_Gjet_Stat1: 1.53832398e-08 + syst_JES_Gjet_Stat10: 1.54701034e-06 + syst_JES_Gjet_Stat11: 1.51802372e-06 + syst_JES_Gjet_Stat12: 7.85744136e-07 + syst_JES_Gjet_Stat13: 7.11439484e-06 + syst_JES_Gjet_Stat14: 2.13109145e-05 + syst_JES_Gjet_Stat15: 3.39865547e-05 + syst_JES_Gjet_Stat2: 1.17115940e-07 + syst_JES_Gjet_Stat3: 1.43880734e-07 + syst_JES_Gjet_Stat4: 5.50713238e-07 + syst_JES_Gjet_Stat5: 5.39725365e-07 + syst_JES_Gjet_Stat6: 5.04314545e-07 + syst_JES_Gjet_Stat7: 5.94025606e-07 + syst_JES_Gjet_Stat8: 1.09160398e-07 + syst_JES_Gjet_Stat9: 5.88427192e-07 + syst_JES_Gjet_Veto: 2.90897521e-05 + syst_JES_Gjet_dPhi: 1.36405005e-06 + syst_JES_LArESZee: 3.89787720e-05 + syst_JES_LArEsmear: 3.76801300e-06 + syst_JES_LAr_JVT: 4.98256380e-06 + syst_JES_MJB_Alpha: 8.60349109e-07 + syst_JES_MJB_Asym: 2.17108055e-05 + syst_JES_MJB_Beta: 1.59825029e-06 + syst_JES_MJB_Fragmentation: 4.94927661e-06 + syst_JES_MJB_Stat1: 2.40656352e-14 + syst_JES_MJB_Stat10: 7.57191024e-08 + syst_JES_MJB_Stat11: 1.18241182e-07 + syst_JES_MJB_Stat12: 2.32924730e-07 + syst_JES_MJB_Stat13: 4.44147644e-07 + syst_JES_MJB_Stat14: 4.94820695e-06 + syst_JES_MJB_Stat15: 8.17507595e-06 + syst_JES_MJB_Stat16: 1.56298393e-05 + syst_JES_MJB_Stat2: 6.62422374e-09 + syst_JES_MJB_Stat3: 1.02015705e-08 + syst_JES_MJB_Stat4: 5.61520621e-09 + syst_JES_MJB_Stat5: 5.93874473e-09 + syst_JES_MJB_Stat6: 1.35563848e-08 + syst_JES_MJB_Stat7: 1.99791310e-08 + syst_JES_MJB_Stat8: 2.51556967e-08 + syst_JES_MJB_Stat9: 4.46822389e-08 + syst_JES_MJB_Threshold: 4.94756779e-06 + syst_JES_Pileup_MuOffset: 1.06804866e-05 + syst_JES_Pileup_NPVOffset: 7.71476856e-06 + syst_JES_Pileup_Pt_term: 2.38104200e-06 + syst_JES_Pileup_Rho_topology: 1.11406987e-05 + syst_JES_PunchThrough_MC15: 2.40844903e-05 + syst_JES_SingleParticle_HighPt: 1.27886753e-06 + syst_JES_Zjet_MC: 1.13690443e-05 + syst_JES_Zjet_MuScale: 1.25604119e-06 + syst_JES_Zjet_MuSmearID: 1.15826643e-07 + syst_JES_Zjet_MuSmearMS: 1.97413848e-06 + syst_JES_Zjet_OOC: 6.77750432e-06 + syst_JES_Zjet_Stat1: 1.36469357e-06 + syst_JES_Zjet_Stat10: 7.22998179e-07 + syst_JES_Zjet_Stat11: 6.62165787e-07 + syst_JES_Zjet_Stat12: 1.15808482e-06 + syst_JES_Zjet_Stat13: 2.52140616e-06 + syst_JES_Zjet_Stat2: 1.42683318e-08 + syst_JES_Zjet_Stat3: 2.85139229e-07 + syst_JES_Zjet_Stat4: 4.36768597e-07 + syst_JES_Zjet_Stat5: 3.57793610e-07 + syst_JES_Zjet_Stat6: 6.32903097e-07 + syst_JES_Zjet_Stat7: 5.18665661e-07 + syst_JES_Zjet_Stat8: 2.40105997e-07 + syst_JES_Zjet_Stat9: 6.01072165e-07 + syst_JES_Zjet_Veto: 1.22478292e-06 + syst_JES_Zjet_dPhi: 1.17435431e-06 + syst_PRW: 4.54200000e-07 + syst_Unfolding_bias: 7.45700000e-08 + syst_cleaning: 5.02294734e-06 syst_lumi: 1.73e-05 -- stat: 9.202e-06 +- stat: 9.20200000e-06 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 3.8967084507312066e-07 - syst_JER_NP1: 1.142418067084025e-07 - syst_JER_NP2: 3.2833313494071835e-07 - syst_JER_NP3: 7.355661832901238e-08 - syst_JER_NP4: 1.1487099590410106e-07 - syst_JER_NP5: 1.6592893056968698e-07 - syst_JER_NP6: 1.567876662878812e-07 - syst_JER_NP7: 1.5125127272191794e-07 - syst_JER_NP8: 1.0344405444490274e-07 - syst_JES_EtaIntercalibration_Modelling: 1.5975076682132077e-06 + syst_JER_NP0: 3.89670845e-07 + syst_JER_NP1: 1.14241807e-07 + syst_JER_NP2: 3.28333135e-07 + syst_JER_NP3: 7.35566183e-08 + syst_JER_NP4: 1.14870996e-07 + syst_JER_NP5: 1.65928931e-07 + syst_JER_NP6: 1.56787666e-07 + syst_JER_NP7: 1.51251273e-07 + syst_JER_NP8: 1.03444054e-07 + syst_JES_EtaIntercalibration_Modelling: 1.59750767e-06 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 - syst_JES_EtaIntercalibration_Stat10: 2.99160475330549e-26 - syst_JES_EtaIntercalibration_Stat100: 7.233992051419465e-25 + syst_JES_EtaIntercalibration_Stat10: 2.99160475e-26 + syst_JES_EtaIntercalibration_Stat100: 7.23399205e-25 syst_JES_EtaIntercalibration_Stat101: 0.0 syst_JES_EtaIntercalibration_Stat102: 0.0 - syst_JES_EtaIntercalibration_Stat103: 3.633842594279504e-27 - syst_JES_EtaIntercalibration_Stat104: 3.633842594279504e-27 - syst_JES_EtaIntercalibration_Stat105: 3.633842594279504e-27 + syst_JES_EtaIntercalibration_Stat103: 3.63384259e-27 + syst_JES_EtaIntercalibration_Stat104: 3.63384259e-27 + syst_JES_EtaIntercalibration_Stat105: 3.63384259e-27 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 2.895988950255163e-26 - syst_JES_EtaIntercalibration_Stat11: 6.938595535120923e-25 - syst_JES_EtaIntercalibration_Stat110: 2.791746320853669e-26 - syst_JES_EtaIntercalibration_Stat111: 3.686670143910355e-26 - syst_JES_EtaIntercalibration_Stat112: 3.686670143910355e-26 + syst_JES_EtaIntercalibration_Stat109: 2.89598895e-26 + syst_JES_EtaIntercalibration_Stat11: 6.93859554e-25 + syst_JES_EtaIntercalibration_Stat110: 2.79174632e-26 + syst_JES_EtaIntercalibration_Stat111: 3.68667014e-26 + syst_JES_EtaIntercalibration_Stat112: 3.68667014e-26 syst_JES_EtaIntercalibration_Stat113: 0.0 - syst_JES_EtaIntercalibration_Stat114: 2.719319767883137e-26 - syst_JES_EtaIntercalibration_Stat115: 3.6435423354202976e-24 - syst_JES_EtaIntercalibration_Stat116: 4.0409049419653515e-10 - syst_JES_EtaIntercalibration_Stat117: 3.230108671546516e-10 - syst_JES_EtaIntercalibration_Stat118: 2.2734965911564506e-10 - syst_JES_EtaIntercalibration_Stat119: 4.5407537788345227e-10 - syst_JES_EtaIntercalibration_Stat12: 8.798750871941028e-23 - syst_JES_EtaIntercalibration_Stat120: 1.0269067863475975e-22 - syst_JES_EtaIntercalibration_Stat121: 4.792584584543084e-26 + syst_JES_EtaIntercalibration_Stat114: 2.71931977e-26 + syst_JES_EtaIntercalibration_Stat115: 3.64354234e-24 + syst_JES_EtaIntercalibration_Stat116: 4.04090494e-10 + syst_JES_EtaIntercalibration_Stat117: 3.23010867e-10 + syst_JES_EtaIntercalibration_Stat118: 2.27349659e-10 + syst_JES_EtaIntercalibration_Stat119: 4.54075378e-10 + syst_JES_EtaIntercalibration_Stat12: 8.79875087e-23 + syst_JES_EtaIntercalibration_Stat120: 1.02690679e-22 + syst_JES_EtaIntercalibration_Stat121: 4.79258458e-26 syst_JES_EtaIntercalibration_Stat122: 0.0 - syst_JES_EtaIntercalibration_Stat123: 3.633842594279504e-27 - syst_JES_EtaIntercalibration_Stat124: 3.633842594279504e-27 - syst_JES_EtaIntercalibration_Stat125: 3.633842594279504e-27 + syst_JES_EtaIntercalibration_Stat123: 3.63384259e-27 + syst_JES_EtaIntercalibration_Stat124: 3.63384259e-27 + syst_JES_EtaIntercalibration_Stat125: 3.63384259e-27 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 2.895988950255163e-26 - syst_JES_EtaIntercalibration_Stat129: 2.791746320853669e-26 + syst_JES_EtaIntercalibration_Stat128: 2.89598895e-26 + syst_JES_EtaIntercalibration_Stat129: 2.79174632e-26 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 3.8312963863423564e-27 + syst_JES_EtaIntercalibration_Stat130: 3.83129639e-27 syst_JES_EtaIntercalibration_Stat131: 0.0 syst_JES_EtaIntercalibration_Stat132: 0.0 - syst_JES_EtaIntercalibration_Stat133: 2.719319767883137e-26 - syst_JES_EtaIntercalibration_Stat134: 2.348660906331543e-15 - syst_JES_EtaIntercalibration_Stat135: 1.0414679675822968e-09 - syst_JES_EtaIntercalibration_Stat136: 1.5005500016660556e-09 - syst_JES_EtaIntercalibration_Stat137: 9.597813188429954e-10 - syst_JES_EtaIntercalibration_Stat138: 6.122107725285467e-10 - syst_JES_EtaIntercalibration_Stat139: 1.0590524591123898e-23 + syst_JES_EtaIntercalibration_Stat133: 2.71931977e-26 + syst_JES_EtaIntercalibration_Stat134: 2.34866091e-15 + syst_JES_EtaIntercalibration_Stat135: 1.04146797e-09 + syst_JES_EtaIntercalibration_Stat136: 1.50055000e-09 + syst_JES_EtaIntercalibration_Stat137: 9.59781319e-10 + syst_JES_EtaIntercalibration_Stat138: 6.12210773e-10 + syst_JES_EtaIntercalibration_Stat139: 1.05905246e-23 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 4.792584584543084e-26 + syst_JES_EtaIntercalibration_Stat140: 4.79258458e-26 syst_JES_EtaIntercalibration_Stat141: 0.0 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 3.633842594279504e-27 - syst_JES_EtaIntercalibration_Stat144: 3.633842594279504e-27 + syst_JES_EtaIntercalibration_Stat143: 3.63384259e-27 + syst_JES_EtaIntercalibration_Stat144: 3.63384259e-27 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 3.8312963863423564e-27 - syst_JES_EtaIntercalibration_Stat148: 3.8312963863423564e-27 + syst_JES_EtaIntercalibration_Stat147: 3.83129639e-27 + syst_JES_EtaIntercalibration_Stat148: 3.83129639e-27 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 syst_JES_EtaIntercalibration_Stat150: 0.0 syst_JES_EtaIntercalibration_Stat151: 0.0 - syst_JES_EtaIntercalibration_Stat152: 2.4742345785566002e-15 - syst_JES_EtaIntercalibration_Stat153: 1.106961801508977e-09 - syst_JES_EtaIntercalibration_Stat154: 2.1836126030044797e-09 - syst_JES_EtaIntercalibration_Stat155: 9.605904069893683e-10 - syst_JES_EtaIntercalibration_Stat156: 6.497084576946801e-10 - syst_JES_EtaIntercalibration_Stat157: 2.0436403793231333e-22 + syst_JES_EtaIntercalibration_Stat152: 2.47423458e-15 + syst_JES_EtaIntercalibration_Stat153: 1.10696180e-09 + syst_JES_EtaIntercalibration_Stat154: 2.18361260e-09 + syst_JES_EtaIntercalibration_Stat155: 9.60590407e-10 + syst_JES_EtaIntercalibration_Stat156: 6.49708458e-10 + syst_JES_EtaIntercalibration_Stat157: 2.04364038e-22 syst_JES_EtaIntercalibration_Stat158: 0.0 syst_JES_EtaIntercalibration_Stat159: 0.0 syst_JES_EtaIntercalibration_Stat16: 0.0 @@ -11883,18 +11883,18 @@ bins: syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 3.8312963863423564e-27 + syst_JES_EtaIntercalibration_Stat165: 3.83129639e-27 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 3.6945659782307316e-14 - syst_JES_EtaIntercalibration_Stat171: 2.002161831621011e-09 - syst_JES_EtaIntercalibration_Stat172: 3.0777189605290477e-09 - syst_JES_EtaIntercalibration_Stat173: 4.772994107475935e-09 - syst_JES_EtaIntercalibration_Stat174: 2.9492020530984307e-09 - syst_JES_EtaIntercalibration_Stat175: 2.7142490674217793e-22 + syst_JES_EtaIntercalibration_Stat170: 3.69456598e-14 + syst_JES_EtaIntercalibration_Stat171: 2.00216183e-09 + syst_JES_EtaIntercalibration_Stat172: 3.07771896e-09 + syst_JES_EtaIntercalibration_Stat173: 4.77299411e-09 + syst_JES_EtaIntercalibration_Stat174: 2.94920205e-09 + syst_JES_EtaIntercalibration_Stat175: 2.71424907e-22 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 syst_JES_EtaIntercalibration_Stat178: 0.0 @@ -11907,14 +11907,14 @@ bins: syst_JES_EtaIntercalibration_Stat184: 0.0 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 - syst_JES_EtaIntercalibration_Stat187: 5.375905784144659e-10 - syst_JES_EtaIntercalibration_Stat188: 8.772376915636948e-09 - syst_JES_EtaIntercalibration_Stat189: 1.3257502281727127e-08 + syst_JES_EtaIntercalibration_Stat187: 5.37590578e-10 + syst_JES_EtaIntercalibration_Stat188: 8.77237692e-09 + syst_JES_EtaIntercalibration_Stat189: 1.32575023e-08 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 1.8401008124556655e-08 - syst_JES_EtaIntercalibration_Stat191: 1.1595401200475989e-08 - syst_JES_EtaIntercalibration_Stat192: 3.7882698267150926e-10 - syst_JES_EtaIntercalibration_Stat193: 1.0677227203258345e-22 + syst_JES_EtaIntercalibration_Stat190: 1.84010081e-08 + syst_JES_EtaIntercalibration_Stat191: 1.15954012e-08 + syst_JES_EtaIntercalibration_Stat192: 3.78826983e-10 + syst_JES_EtaIntercalibration_Stat193: 1.06772272e-22 syst_JES_EtaIntercalibration_Stat194: 0.0 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 @@ -11925,13 +11925,13 @@ bins: syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 syst_JES_EtaIntercalibration_Stat201: 0.0 - syst_JES_EtaIntercalibration_Stat202: 9.334767575440751e-10 - syst_JES_EtaIntercalibration_Stat203: 1.8431283189186803e-08 - syst_JES_EtaIntercalibration_Stat204: 3.035380824542449e-08 - syst_JES_EtaIntercalibration_Stat205: 3.0581721256332184e-08 - syst_JES_EtaIntercalibration_Stat206: 2.3584051284713573e-08 - syst_JES_EtaIntercalibration_Stat207: 3.172147493418299e-10 - syst_JES_EtaIntercalibration_Stat208: 1.0677227203258345e-22 + syst_JES_EtaIntercalibration_Stat202: 9.33476758e-10 + syst_JES_EtaIntercalibration_Stat203: 1.84312832e-08 + syst_JES_EtaIntercalibration_Stat204: 3.03538082e-08 + syst_JES_EtaIntercalibration_Stat205: 3.05817213e-08 + syst_JES_EtaIntercalibration_Stat206: 2.35840513e-08 + syst_JES_EtaIntercalibration_Stat207: 3.17214749e-10 + syst_JES_EtaIntercalibration_Stat208: 1.06772272e-22 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 @@ -11939,38 +11939,38 @@ bins: syst_JES_EtaIntercalibration_Stat212: 0.0 syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 - syst_JES_EtaIntercalibration_Stat215: 9.159602110899796e-10 - syst_JES_EtaIntercalibration_Stat216: 2.141300714519098e-08 - syst_JES_EtaIntercalibration_Stat217: 3.256333021974257e-08 - syst_JES_EtaIntercalibration_Stat218: 3.833482489851753e-08 - syst_JES_EtaIntercalibration_Stat219: 2.730763263265419e-08 + syst_JES_EtaIntercalibration_Stat215: 9.15960211e-10 + syst_JES_EtaIntercalibration_Stat216: 2.14130071e-08 + syst_JES_EtaIntercalibration_Stat217: 3.25633302e-08 + syst_JES_EtaIntercalibration_Stat218: 3.83348249e-08 + syst_JES_EtaIntercalibration_Stat219: 2.73076326e-08 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 5.749582332656869e-10 + syst_JES_EtaIntercalibration_Stat220: 5.74958233e-10 syst_JES_EtaIntercalibration_Stat221: 0.0 syst_JES_EtaIntercalibration_Stat222: 0.0 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 - syst_JES_EtaIntercalibration_Stat227: 1.2717186038978905e-09 - syst_JES_EtaIntercalibration_Stat228: 6.104042983957435e-08 - syst_JES_EtaIntercalibration_Stat229: 1.0429210948101491e-07 + syst_JES_EtaIntercalibration_Stat227: 1.27171860e-09 + syst_JES_EtaIntercalibration_Stat228: 6.10404298e-08 + syst_JES_EtaIntercalibration_Stat229: 1.04292109e-07 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 1.1343436549388373e-07 - syst_JES_EtaIntercalibration_Stat231: 8.899042799649859e-08 - syst_JES_EtaIntercalibration_Stat232: 9.885921757732053e-10 + syst_JES_EtaIntercalibration_Stat230: 1.13434365e-07 + syst_JES_EtaIntercalibration_Stat231: 8.89904280e-08 + syst_JES_EtaIntercalibration_Stat232: 9.88592176e-10 syst_JES_EtaIntercalibration_Stat233: 0.0 syst_JES_EtaIntercalibration_Stat234: 0.0 syst_JES_EtaIntercalibration_Stat235: 0.0 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 - syst_JES_EtaIntercalibration_Stat238: 2.41114302924982e-10 - syst_JES_EtaIntercalibration_Stat239: 8.859736113451685e-09 + syst_JES_EtaIntercalibration_Stat238: 2.41114303e-10 + syst_JES_EtaIntercalibration_Stat239: 8.85973611e-09 syst_JES_EtaIntercalibration_Stat24: 0.0 - syst_JES_EtaIntercalibration_Stat240: 1.1964199795640326e-08 - syst_JES_EtaIntercalibration_Stat241: 1.753369898224559e-08 - syst_JES_EtaIntercalibration_Stat242: 1.1275454491948428e-08 - syst_JES_EtaIntercalibration_Stat243: 3.866639238408466e-10 + syst_JES_EtaIntercalibration_Stat240: 1.19641998e-08 + syst_JES_EtaIntercalibration_Stat241: 1.75336990e-08 + syst_JES_EtaIntercalibration_Stat242: 1.12754545e-08 + syst_JES_EtaIntercalibration_Stat243: 3.86663924e-10 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 syst_JES_EtaIntercalibration_Stat25: 0.0 @@ -11979,12 +11979,12 @@ bins: syst_JES_EtaIntercalibration_Stat28: 0.0 syst_JES_EtaIntercalibration_Stat29: 0.0 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 2.5007511911423734e-26 - syst_JES_EtaIntercalibration_Stat31: 2.663997753377431e-15 - syst_JES_EtaIntercalibration_Stat32: 6.81489477174813e-25 - syst_JES_EtaIntercalibration_Stat33: 8.854215192914786e-23 - syst_JES_EtaIntercalibration_Stat34: 1.0368505942616949e-22 - syst_JES_EtaIntercalibration_Stat35: 4.1322649263902475e-26 + syst_JES_EtaIntercalibration_Stat30: 2.50075119e-26 + syst_JES_EtaIntercalibration_Stat31: 2.66399775e-15 + syst_JES_EtaIntercalibration_Stat32: 6.81489477e-25 + syst_JES_EtaIntercalibration_Stat33: 8.85421519e-23 + syst_JES_EtaIntercalibration_Stat34: 1.03685059e-22 + syst_JES_EtaIntercalibration_Stat35: 4.13226493e-26 syst_JES_EtaIntercalibration_Stat36: 0.0 syst_JES_EtaIntercalibration_Stat37: 0.0 syst_JES_EtaIntercalibration_Stat38: 0.0 @@ -12003,148 +12003,148 @@ bins: syst_JES_EtaIntercalibration_Stat5: 0.0 syst_JES_EtaIntercalibration_Stat50: 0.0 syst_JES_EtaIntercalibration_Stat51: 0.0 - syst_JES_EtaIntercalibration_Stat52: 3.1248173494622046e-26 - syst_JES_EtaIntercalibration_Stat53: 1.2166862568057553e-24 - syst_JES_EtaIntercalibration_Stat54: 2.3538570513433813e-15 - syst_JES_EtaIntercalibration_Stat55: 8.67217596955199e-23 - syst_JES_EtaIntercalibration_Stat56: 1.0329071902484753e-22 - syst_JES_EtaIntercalibration_Stat57: 1.0158893283719442e-25 + syst_JES_EtaIntercalibration_Stat52: 3.12481735e-26 + syst_JES_EtaIntercalibration_Stat53: 1.21668626e-24 + syst_JES_EtaIntercalibration_Stat54: 2.35385705e-15 + syst_JES_EtaIntercalibration_Stat55: 8.67217597e-23 + syst_JES_EtaIntercalibration_Stat56: 1.03290719e-22 + syst_JES_EtaIntercalibration_Stat57: 1.01588933e-25 syst_JES_EtaIntercalibration_Stat58: 0.0 syst_JES_EtaIntercalibration_Stat59: 0.0 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 3.633842594279504e-27 - syst_JES_EtaIntercalibration_Stat62: 3.633842594279504e-27 + syst_JES_EtaIntercalibration_Stat61: 3.63384259e-27 + syst_JES_EtaIntercalibration_Stat62: 3.63384259e-27 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 2.895988950255163e-26 - syst_JES_EtaIntercalibration_Stat69: 2.895988950255163e-26 + syst_JES_EtaIntercalibration_Stat68: 2.89598895e-26 + syst_JES_EtaIntercalibration_Stat69: 2.89598895e-26 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 3.686670143910355e-26 - syst_JES_EtaIntercalibration_Stat71: 3.686670143910355e-26 + syst_JES_EtaIntercalibration_Stat70: 3.68667014e-26 + syst_JES_EtaIntercalibration_Stat71: 3.68667014e-26 syst_JES_EtaIntercalibration_Stat72: 0.0 syst_JES_EtaIntercalibration_Stat73: 0.0 - syst_JES_EtaIntercalibration_Stat74: 1.062685266518267e-24 - syst_JES_EtaIntercalibration_Stat75: 2.5087369790394526e-15 - syst_JES_EtaIntercalibration_Stat76: 1.4644489576154843e-14 - syst_JES_EtaIntercalibration_Stat77: 4.706666336166183e-10 - syst_JES_EtaIntercalibration_Stat78: 1.8247155257737908e-10 - syst_JES_EtaIntercalibration_Stat79: 1.321402451942632e-25 + syst_JES_EtaIntercalibration_Stat74: 1.06268527e-24 + syst_JES_EtaIntercalibration_Stat75: 2.50873698e-15 + syst_JES_EtaIntercalibration_Stat76: 1.46444896e-14 + syst_JES_EtaIntercalibration_Stat77: 4.70666634e-10 + syst_JES_EtaIntercalibration_Stat78: 1.82471553e-10 + syst_JES_EtaIntercalibration_Stat79: 1.32140245e-25 syst_JES_EtaIntercalibration_Stat8: 0.0 syst_JES_EtaIntercalibration_Stat80: 0.0 syst_JES_EtaIntercalibration_Stat81: 0.0 - syst_JES_EtaIntercalibration_Stat82: 3.633842594279504e-27 - syst_JES_EtaIntercalibration_Stat83: 3.633842594279504e-27 - syst_JES_EtaIntercalibration_Stat84: 3.633842594279504e-27 + syst_JES_EtaIntercalibration_Stat82: 3.63384259e-27 + syst_JES_EtaIntercalibration_Stat83: 3.63384259e-27 + syst_JES_EtaIntercalibration_Stat84: 3.63384259e-27 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 2.895988950255163e-26 - syst_JES_EtaIntercalibration_Stat9: 9.615292146887686e-25 - syst_JES_EtaIntercalibration_Stat90: 2.895988950255163e-26 - syst_JES_EtaIntercalibration_Stat91: 3.686670143910355e-26 - syst_JES_EtaIntercalibration_Stat92: 3.686670143910355e-26 + syst_JES_EtaIntercalibration_Stat89: 2.89598895e-26 + syst_JES_EtaIntercalibration_Stat9: 9.61529215e-25 + syst_JES_EtaIntercalibration_Stat90: 2.89598895e-26 + syst_JES_EtaIntercalibration_Stat91: 3.68667014e-26 + syst_JES_EtaIntercalibration_Stat92: 3.68667014e-26 syst_JES_EtaIntercalibration_Stat93: 0.0 syst_JES_EtaIntercalibration_Stat94: 0.0 - syst_JES_EtaIntercalibration_Stat95: 1.0811039370476828e-24 - syst_JES_EtaIntercalibration_Stat96: 2.9289357124218345e-14 - syst_JES_EtaIntercalibration_Stat97: 1.5300009697709345e-13 - syst_JES_EtaIntercalibration_Stat98: 1.7736586706579144e-10 - syst_JES_EtaIntercalibration_Stat99: 1.0064929090420855e-20 - syst_JES_EtaIntercalibration_TotalStat_MJB: 3.055513827492849e-06 - syst_JES_Flavour_Comp: 8.490925553200899e-07 - syst_JES_Flavour_Response: 2.5965162718535003e-06 - syst_JES_Gjet_Generator: 4.507757535626778e-06 - syst_JES_Gjet_OOC: 3.8253976263912745e-06 - syst_JES_Gjet_Purity: 3.1171551132402765e-07 - syst_JES_Gjet_Stat1: 1.768725741883122e-08 - syst_JES_Gjet_Stat10: 3.261478920673871e-07 - syst_JES_Gjet_Stat11: 3.190284156623043e-07 - syst_JES_Gjet_Stat12: 1.0282289822797253e-07 - syst_JES_Gjet_Stat13: 1.3009371881455308e-06 - syst_JES_Gjet_Stat14: 4.141628061523632e-06 - syst_JES_Gjet_Stat15: 6.272907679059209e-06 - syst_JES_Gjet_Stat2: 1.9023203594557886e-08 - syst_JES_Gjet_Stat3: 2.2866247505876426e-08 - syst_JES_Gjet_Stat4: 1.2851013296623733e-07 - syst_JES_Gjet_Stat5: 1.2391339394916111e-07 - syst_JES_Gjet_Stat6: 6.925530809981281e-08 - syst_JES_Gjet_Stat7: 1.2822243836396187e-07 - syst_JES_Gjet_Stat8: 1.7963162305117658e-08 - syst_JES_Gjet_Stat9: 1.2820343950144237e-07 - syst_JES_Gjet_Veto: 4.69986880136031e-06 - syst_JES_Gjet_dPhi: 6.437665570686318e-08 - syst_JES_LArESZee: 5.170799817242977e-06 - syst_JES_LArEsmear: 5.62344458494969e-07 - syst_JES_LAr_JVT: 7.475824419420243e-07 - syst_JES_MJB_Alpha: 1.0122317817575182e-07 - syst_JES_MJB_Asym: 4.531965881380839e-06 - syst_JES_MJB_Beta: 3.5234771178482204e-07 - syst_JES_MJB_Fragmentation: 9.721177809298625e-07 - syst_JES_MJB_Stat1: 2.0134688929990948e-17 - syst_JES_MJB_Stat10: 6.508515498944441e-09 - syst_JES_MJB_Stat11: 8.520422524734322e-09 - syst_JES_MJB_Stat12: 1.8910338442238414e-08 - syst_JES_MJB_Stat13: 3.65331000600825e-08 - syst_JES_MJB_Stat14: 1.2968441569826343e-06 - syst_JES_MJB_Stat15: 2.8935146016566088e-06 - syst_JES_MJB_Stat16: 3.815675127680553e-06 - syst_JES_MJB_Stat2: 1.3847741841750644e-11 - syst_JES_MJB_Stat3: 1.1467914282902537e-09 - syst_JES_MJB_Stat4: 6.270868420721328e-10 - syst_JES_MJB_Stat5: 6.953902945589261e-10 - syst_JES_MJB_Stat6: 1.1535248881146867e-09 - syst_JES_MJB_Stat7: 1.8918919597852306e-09 - syst_JES_MJB_Stat8: 2.1842534193632386e-09 - syst_JES_MJB_Stat9: 4.163291249720587e-09 - syst_JES_MJB_Threshold: 6.440068477896801e-07 - syst_JES_Pileup_MuOffset: 1.9820005045408034e-06 - syst_JES_Pileup_NPVOffset: 1.2400613049361713e-06 - syst_JES_Pileup_Pt_term: 3.273547731437561e-07 - syst_JES_Pileup_Rho_topology: 2.0185060688538937e-06 - syst_JES_PunchThrough_MC15: 5.287419786625609e-06 - syst_JES_SingleParticle_HighPt: 1.1205079919393701e-06 - syst_JES_Zjet_MC: 1.7050023460394417e-06 - syst_JES_Zjet_MuScale: 2.3257611119803337e-07 - syst_JES_Zjet_MuSmearID: 6.5165847458619e-09 - syst_JES_Zjet_MuSmearMS: 2.045678616009856e-07 - syst_JES_Zjet_OOC: 9.467504145760909e-07 - syst_JES_Zjet_Stat1: 2.3035977839023893e-07 - syst_JES_Zjet_Stat10: 1.4661151276417552e-07 - syst_JES_Zjet_Stat11: 9.196489153475906e-08 - syst_JES_Zjet_Stat12: 1.448602494647859e-07 - syst_JES_Zjet_Stat13: 3.761095983885548e-07 - syst_JES_Zjet_Stat2: 1.2973121010381427e-09 - syst_JES_Zjet_Stat3: 2.5387735227861505e-08 - syst_JES_Zjet_Stat4: 6.291862124999244e-08 - syst_JES_Zjet_Stat5: 3.740377253700488e-08 - syst_JES_Zjet_Stat6: 1.2438248942274793e-07 - syst_JES_Zjet_Stat7: 8.015680008583176e-08 - syst_JES_Zjet_Stat8: 3.612103403835499e-08 - syst_JES_Zjet_Stat9: 1.2467215918159115e-07 - syst_JES_Zjet_Veto: 1.7672263578840147e-07 - syst_JES_Zjet_dPhi: 1.6974295272558446e-07 - syst_PRW: 5.358e-08 + syst_JES_EtaIntercalibration_Stat95: 1.08110394e-24 + syst_JES_EtaIntercalibration_Stat96: 2.92893571e-14 + syst_JES_EtaIntercalibration_Stat97: 1.53000097e-13 + syst_JES_EtaIntercalibration_Stat98: 1.77365867e-10 + syst_JES_EtaIntercalibration_Stat99: 1.00649291e-20 + syst_JES_EtaIntercalibration_TotalStat_MJB: 3.05551383e-06 + syst_JES_Flavour_Comp: 8.49092555e-07 + syst_JES_Flavour_Response: 2.59651627e-06 + syst_JES_Gjet_Generator: 4.50775754e-06 + syst_JES_Gjet_OOC: 3.82539763e-06 + syst_JES_Gjet_Purity: 3.11715511e-07 + syst_JES_Gjet_Stat1: 1.76872574e-08 + syst_JES_Gjet_Stat10: 3.26147892e-07 + syst_JES_Gjet_Stat11: 3.19028416e-07 + syst_JES_Gjet_Stat12: 1.02822898e-07 + syst_JES_Gjet_Stat13: 1.30093719e-06 + syst_JES_Gjet_Stat14: 4.14162806e-06 + syst_JES_Gjet_Stat15: 6.27290768e-06 + syst_JES_Gjet_Stat2: 1.90232036e-08 + syst_JES_Gjet_Stat3: 2.28662475e-08 + syst_JES_Gjet_Stat4: 1.28510133e-07 + syst_JES_Gjet_Stat5: 1.23913394e-07 + syst_JES_Gjet_Stat6: 6.92553081e-08 + syst_JES_Gjet_Stat7: 1.28222438e-07 + syst_JES_Gjet_Stat8: 1.79631623e-08 + syst_JES_Gjet_Stat9: 1.28203440e-07 + syst_JES_Gjet_Veto: 4.69986880e-06 + syst_JES_Gjet_dPhi: 6.43766557e-08 + syst_JES_LArESZee: 5.17079982e-06 + syst_JES_LArEsmear: 5.62344458e-07 + syst_JES_LAr_JVT: 7.47582442e-07 + syst_JES_MJB_Alpha: 1.01223178e-07 + syst_JES_MJB_Asym: 4.53196588e-06 + syst_JES_MJB_Beta: 3.52347712e-07 + syst_JES_MJB_Fragmentation: 9.72117781e-07 + syst_JES_MJB_Stat1: 2.01346889e-17 + syst_JES_MJB_Stat10: 6.50851550e-09 + syst_JES_MJB_Stat11: 8.52042252e-09 + syst_JES_MJB_Stat12: 1.89103384e-08 + syst_JES_MJB_Stat13: 3.65331001e-08 + syst_JES_MJB_Stat14: 1.29684416e-06 + syst_JES_MJB_Stat15: 2.89351460e-06 + syst_JES_MJB_Stat16: 3.81567513e-06 + syst_JES_MJB_Stat2: 1.38477418e-11 + syst_JES_MJB_Stat3: 1.14679143e-09 + syst_JES_MJB_Stat4: 6.27086842e-10 + syst_JES_MJB_Stat5: 6.95390295e-10 + syst_JES_MJB_Stat6: 1.15352489e-09 + syst_JES_MJB_Stat7: 1.89189196e-09 + syst_JES_MJB_Stat8: 2.18425342e-09 + syst_JES_MJB_Stat9: 4.16329125e-09 + syst_JES_MJB_Threshold: 6.44006848e-07 + syst_JES_Pileup_MuOffset: 1.98200050e-06 + syst_JES_Pileup_NPVOffset: 1.24006130e-06 + syst_JES_Pileup_Pt_term: 3.27354773e-07 + syst_JES_Pileup_Rho_topology: 2.01850607e-06 + syst_JES_PunchThrough_MC15: 5.28741979e-06 + syst_JES_SingleParticle_HighPt: 1.12050799e-06 + syst_JES_Zjet_MC: 1.70500235e-06 + syst_JES_Zjet_MuScale: 2.32576111e-07 + syst_JES_Zjet_MuSmearID: 6.51658475e-09 + syst_JES_Zjet_MuSmearMS: 2.04567862e-07 + syst_JES_Zjet_OOC: 9.46750415e-07 + syst_JES_Zjet_Stat1: 2.30359778e-07 + syst_JES_Zjet_Stat10: 1.46611513e-07 + syst_JES_Zjet_Stat11: 9.19648915e-08 + syst_JES_Zjet_Stat12: 1.44860249e-07 + syst_JES_Zjet_Stat13: 3.76109598e-07 + syst_JES_Zjet_Stat2: 1.29731210e-09 + syst_JES_Zjet_Stat3: 2.53877352e-08 + syst_JES_Zjet_Stat4: 6.29186212e-08 + syst_JES_Zjet_Stat5: 3.74037725e-08 + syst_JES_Zjet_Stat6: 1.24382489e-07 + syst_JES_Zjet_Stat7: 8.01568001e-08 + syst_JES_Zjet_Stat8: 3.61210340e-08 + syst_JES_Zjet_Stat9: 1.24672159e-07 + syst_JES_Zjet_Veto: 1.76722636e-07 + syst_JES_Zjet_dPhi: 1.69742953e-07 + syst_PRW: 5.35800000e-08 syst_Unfolding_bias: 8.52e-09 - syst_cleaning: 4.3006821551935224e-07 - syst_lumi: 1.961e-06 -- stat: 9.8643e-07 + syst_cleaning: 4.30068216e-07 + syst_lumi: 1.96100000e-06 +- stat: 9.86430000e-07 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 1.9656415619334057e-08 - syst_JER_NP1: 5.714977230925771e-09 - syst_JER_NP2: 1.6628537969406693e-08 - syst_JER_NP3: 3.375513997897209e-09 - syst_JER_NP4: 5.470701600343414e-09 - syst_JER_NP5: 8.199961097468695e-09 - syst_JER_NP6: 7.76564800902024e-09 - syst_JER_NP7: 7.463910821412592e-09 - syst_JER_NP8: 4.9793068794762995e-09 - syst_JES_EtaIntercalibration_Modelling: 5.913824545080789e-08 + syst_JER_NP0: 1.96564156e-08 + syst_JER_NP1: 5.71497723e-09 + syst_JER_NP2: 1.66285380e-08 + syst_JER_NP3: 3.37551400e-09 + syst_JER_NP4: 5.47070160e-09 + syst_JER_NP5: 8.19996110e-09 + syst_JER_NP6: 7.76564801e-09 + syst_JER_NP7: 7.46391082e-09 + syst_JER_NP8: 4.97930688e-09 + syst_JES_EtaIntercalibration_Modelling: 5.91382455e-08 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 @@ -12166,10 +12166,10 @@ bins: syst_JES_EtaIntercalibration_Stat113: 0.0 syst_JES_EtaIntercalibration_Stat114: 0.0 syst_JES_EtaIntercalibration_Stat115: 0.0 - syst_JES_EtaIntercalibration_Stat116: 6.209402125003663e-12 - syst_JES_EtaIntercalibration_Stat117: 8.135174675444897e-12 - syst_JES_EtaIntercalibration_Stat118: 5.332543389415598e-12 - syst_JES_EtaIntercalibration_Stat119: 3.407376951189874e-12 + syst_JES_EtaIntercalibration_Stat116: 6.20940213e-12 + syst_JES_EtaIntercalibration_Stat117: 8.13517468e-12 + syst_JES_EtaIntercalibration_Stat118: 5.33254339e-12 + syst_JES_EtaIntercalibration_Stat119: 3.40737695e-12 syst_JES_EtaIntercalibration_Stat12: 0.0 syst_JES_EtaIntercalibration_Stat120: 0.0 syst_JES_EtaIntercalibration_Stat121: 0.0 @@ -12187,10 +12187,10 @@ bins: syst_JES_EtaIntercalibration_Stat132: 0.0 syst_JES_EtaIntercalibration_Stat133: 0.0 syst_JES_EtaIntercalibration_Stat134: 0.0 - syst_JES_EtaIntercalibration_Stat135: 1.3742978134305532e-11 - syst_JES_EtaIntercalibration_Stat136: 4.175567318341305e-11 - syst_JES_EtaIntercalibration_Stat137: 2.5460769823396933e-11 - syst_JES_EtaIntercalibration_Stat138: 1.8775555251443298e-11 + syst_JES_EtaIntercalibration_Stat135: 1.37429781e-11 + syst_JES_EtaIntercalibration_Stat136: 4.17556732e-11 + syst_JES_EtaIntercalibration_Stat137: 2.54607698e-11 + syst_JES_EtaIntercalibration_Stat138: 1.87755553e-11 syst_JES_EtaIntercalibration_Stat139: 0.0 syst_JES_EtaIntercalibration_Stat14: 0.0 syst_JES_EtaIntercalibration_Stat140: 0.0 @@ -12207,10 +12207,10 @@ bins: syst_JES_EtaIntercalibration_Stat150: 0.0 syst_JES_EtaIntercalibration_Stat151: 0.0 syst_JES_EtaIntercalibration_Stat152: 0.0 - syst_JES_EtaIntercalibration_Stat153: 2.4778371112726517e-11 - syst_JES_EtaIntercalibration_Stat154: 5.035361746687124e-11 - syst_JES_EtaIntercalibration_Stat155: 2.6418540364675712e-11 - syst_JES_EtaIntercalibration_Stat156: 1.989434844371637e-11 + syst_JES_EtaIntercalibration_Stat153: 2.47783711e-11 + syst_JES_EtaIntercalibration_Stat154: 5.03536175e-11 + syst_JES_EtaIntercalibration_Stat155: 2.64185404e-11 + syst_JES_EtaIntercalibration_Stat156: 1.98943484e-11 syst_JES_EtaIntercalibration_Stat157: 0.0 syst_JES_EtaIntercalibration_Stat158: 0.0 syst_JES_EtaIntercalibration_Stat159: 0.0 @@ -12227,10 +12227,10 @@ bins: syst_JES_EtaIntercalibration_Stat169: 0.0 syst_JES_EtaIntercalibration_Stat17: 0.0 syst_JES_EtaIntercalibration_Stat170: 0.0 - syst_JES_EtaIntercalibration_Stat171: 7.64428590517126e-11 - syst_JES_EtaIntercalibration_Stat172: 1.1883757602290615e-10 - syst_JES_EtaIntercalibration_Stat173: 1.045536191386984e-10 - syst_JES_EtaIntercalibration_Stat174: 6.038576053176775e-11 + syst_JES_EtaIntercalibration_Stat171: 7.64428591e-11 + syst_JES_EtaIntercalibration_Stat172: 1.18837576e-10 + syst_JES_EtaIntercalibration_Stat173: 1.04553619e-10 + syst_JES_EtaIntercalibration_Stat174: 6.03857605e-11 syst_JES_EtaIntercalibration_Stat175: 0.0 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 @@ -12244,12 +12244,12 @@ bins: syst_JES_EtaIntercalibration_Stat184: 0.0 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 - syst_JES_EtaIntercalibration_Stat187: 7.807219015116715e-12 - syst_JES_EtaIntercalibration_Stat188: 3.3455425195325194e-10 - syst_JES_EtaIntercalibration_Stat189: 5.307232117591995e-10 + syst_JES_EtaIntercalibration_Stat187: 7.80721902e-12 + syst_JES_EtaIntercalibration_Stat188: 3.34554252e-10 + syst_JES_EtaIntercalibration_Stat189: 5.30723212e-10 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 5.462427482356174e-10 - syst_JES_EtaIntercalibration_Stat191: 3.4870347001428023e-10 + syst_JES_EtaIntercalibration_Stat190: 5.46242748e-10 + syst_JES_EtaIntercalibration_Stat191: 3.48703470e-10 syst_JES_EtaIntercalibration_Stat192: 0.0 syst_JES_EtaIntercalibration_Stat193: 0.0 syst_JES_EtaIntercalibration_Stat194: 0.0 @@ -12262,12 +12262,12 @@ bins: syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 syst_JES_EtaIntercalibration_Stat201: 0.0 - syst_JES_EtaIntercalibration_Stat202: 1.57314159566137e-11 - syst_JES_EtaIntercalibration_Stat203: 7.44867256630334e-10 - syst_JES_EtaIntercalibration_Stat204: 1.1707137224787278e-09 - syst_JES_EtaIntercalibration_Stat205: 1.1019546848668506e-09 - syst_JES_EtaIntercalibration_Stat206: 8.304955914994373e-10 - syst_JES_EtaIntercalibration_Stat207: 1.0043660836567513e-11 + syst_JES_EtaIntercalibration_Stat202: 1.57314160e-11 + syst_JES_EtaIntercalibration_Stat203: 7.44867257e-10 + syst_JES_EtaIntercalibration_Stat204: 1.17071372e-09 + syst_JES_EtaIntercalibration_Stat205: 1.10195468e-09 + syst_JES_EtaIntercalibration_Stat206: 8.30495591e-10 + syst_JES_EtaIntercalibration_Stat207: 1.00436608e-11 syst_JES_EtaIntercalibration_Stat208: 0.0 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 @@ -12276,38 +12276,38 @@ bins: syst_JES_EtaIntercalibration_Stat212: 0.0 syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 - syst_JES_EtaIntercalibration_Stat215: 1.6135728431031553e-11 - syst_JES_EtaIntercalibration_Stat216: 9.446579698494053e-10 - syst_JES_EtaIntercalibration_Stat217: 1.2281816345720204e-09 - syst_JES_EtaIntercalibration_Stat218: 1.323851660874435e-09 - syst_JES_EtaIntercalibration_Stat219: 9.72152646192973e-10 + syst_JES_EtaIntercalibration_Stat215: 1.61357284e-11 + syst_JES_EtaIntercalibration_Stat216: 9.44657970e-10 + syst_JES_EtaIntercalibration_Stat217: 1.22818163e-09 + syst_JES_EtaIntercalibration_Stat218: 1.32385166e-09 + syst_JES_EtaIntercalibration_Stat219: 9.72152646e-10 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 1.10737194632156e-11 + syst_JES_EtaIntercalibration_Stat220: 1.10737195e-11 syst_JES_EtaIntercalibration_Stat221: 0.0 syst_JES_EtaIntercalibration_Stat222: 0.0 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 - syst_JES_EtaIntercalibration_Stat227: 4.526542250990263e-11 - syst_JES_EtaIntercalibration_Stat228: 2.3685085496995784e-09 - syst_JES_EtaIntercalibration_Stat229: 3.860436971056515e-09 + syst_JES_EtaIntercalibration_Stat227: 4.52654225e-11 + syst_JES_EtaIntercalibration_Stat228: 2.36850855e-09 + syst_JES_EtaIntercalibration_Stat229: 3.86043697e-09 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 4.023720013867764e-09 - syst_JES_EtaIntercalibration_Stat231: 3.23815178767148e-09 - syst_JES_EtaIntercalibration_Stat232: 3.85241103077021e-11 + syst_JES_EtaIntercalibration_Stat230: 4.02372001e-09 + syst_JES_EtaIntercalibration_Stat231: 3.23815179e-09 + syst_JES_EtaIntercalibration_Stat232: 3.85241103e-11 syst_JES_EtaIntercalibration_Stat233: 0.0 syst_JES_EtaIntercalibration_Stat234: 0.0 syst_JES_EtaIntercalibration_Stat235: 0.0 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 - syst_JES_EtaIntercalibration_Stat238: 8.73877939302738e-12 - syst_JES_EtaIntercalibration_Stat239: 3.4885485520485454e-10 + syst_JES_EtaIntercalibration_Stat238: 8.73877939e-12 + syst_JES_EtaIntercalibration_Stat239: 3.48854855e-10 syst_JES_EtaIntercalibration_Stat24: 0.0 - syst_JES_EtaIntercalibration_Stat240: 5.064976283261354e-10 - syst_JES_EtaIntercalibration_Stat241: 5.290826116968881e-10 - syst_JES_EtaIntercalibration_Stat242: 3.0565007361360145e-10 - syst_JES_EtaIntercalibration_Stat243: 7.111800615877809e-12 + syst_JES_EtaIntercalibration_Stat240: 5.06497628e-10 + syst_JES_EtaIntercalibration_Stat241: 5.29082612e-10 + syst_JES_EtaIntercalibration_Stat242: 3.05650074e-10 + syst_JES_EtaIntercalibration_Stat243: 7.11180062e-12 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 syst_JES_EtaIntercalibration_Stat25: 0.0 @@ -12367,7 +12367,7 @@ bins: syst_JES_EtaIntercalibration_Stat74: 0.0 syst_JES_EtaIntercalibration_Stat75: 0.0 syst_JES_EtaIntercalibration_Stat76: 0.0 - syst_JES_EtaIntercalibration_Stat77: 2.9332280426178938e-12 + syst_JES_EtaIntercalibration_Stat77: 2.93322804e-12 syst_JES_EtaIntercalibration_Stat78: 0.0 syst_JES_EtaIntercalibration_Stat79: 0.0 syst_JES_EtaIntercalibration_Stat8: 0.0 @@ -12390,167 +12390,167 @@ bins: syst_JES_EtaIntercalibration_Stat95: 0.0 syst_JES_EtaIntercalibration_Stat96: 0.0 syst_JES_EtaIntercalibration_Stat97: 0.0 - syst_JES_EtaIntercalibration_Stat98: 3.032820964053104e-12 + syst_JES_EtaIntercalibration_Stat98: 3.03282096e-12 syst_JES_EtaIntercalibration_Stat99: 0.0 - syst_JES_EtaIntercalibration_TotalStat_MJB: 1.1792757215765954e-07 - syst_JES_Flavour_Comp: 2.840059506418836e-08 - syst_JES_Flavour_Response: 1.1390689531367273e-07 - syst_JES_Gjet_Generator: 1.713430696001446e-07 - syst_JES_Gjet_OOC: 1.450553146216987e-07 - syst_JES_Gjet_Purity: 1.3034500172618818e-08 - syst_JES_Gjet_Stat1: 6.197917230812299e-10 - syst_JES_Gjet_Stat10: 1.2886508555462182e-08 - syst_JES_Gjet_Stat11: 1.23815126196277e-08 - syst_JES_Gjet_Stat12: 3.8484239475400826e-09 - syst_JES_Gjet_Stat13: 4.922453326340433e-08 - syst_JES_Gjet_Stat14: 1.595761260339403e-07 - syst_JES_Gjet_Stat15: 2.4169207682503783e-07 - syst_JES_Gjet_Stat2: 6.406663015954561e-10 - syst_JES_Gjet_Stat3: 8.233792989868036e-10 - syst_JES_Gjet_Stat4: 4.8036451523816786e-09 - syst_JES_Gjet_Stat5: 4.473134555320239e-09 - syst_JES_Gjet_Stat6: 2.639318662079287e-09 - syst_JES_Gjet_Stat7: 4.7270107626279e-09 - syst_JES_Gjet_Stat8: 6.120157738980263e-10 - syst_JES_Gjet_Stat9: 4.727492781591528e-09 - syst_JES_Gjet_Veto: 1.7936791100974555e-07 - syst_JES_Gjet_dPhi: 2.238837812348183e-09 - syst_JES_LArESZee: 1.9472762387499107e-07 - syst_JES_LArEsmear: 2.087502994009829e-08 - syst_JES_LAr_JVT: 2.792035816389181e-08 - syst_JES_MJB_Alpha: 3.747096342503086e-09 - syst_JES_MJB_Asym: 1.7500582847436824e-07 - syst_JES_MJB_Beta: 1.3868612502698313e-08 - syst_JES_MJB_Fragmentation: 3.701965255104375e-08 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.17927572e-07 + syst_JES_Flavour_Comp: 2.84005951e-08 + syst_JES_Flavour_Response: 1.13906895e-07 + syst_JES_Gjet_Generator: 1.71343070e-07 + syst_JES_Gjet_OOC: 1.45055315e-07 + syst_JES_Gjet_Purity: 1.30345002e-08 + syst_JES_Gjet_Stat1: 6.19791723e-10 + syst_JES_Gjet_Stat10: 1.28865086e-08 + syst_JES_Gjet_Stat11: 1.23815126e-08 + syst_JES_Gjet_Stat12: 3.84842395e-09 + syst_JES_Gjet_Stat13: 4.92245333e-08 + syst_JES_Gjet_Stat14: 1.59576126e-07 + syst_JES_Gjet_Stat15: 2.41692077e-07 + syst_JES_Gjet_Stat2: 6.40666302e-10 + syst_JES_Gjet_Stat3: 8.23379299e-10 + syst_JES_Gjet_Stat4: 4.80364515e-09 + syst_JES_Gjet_Stat5: 4.47313456e-09 + syst_JES_Gjet_Stat6: 2.63931866e-09 + syst_JES_Gjet_Stat7: 4.72701076e-09 + syst_JES_Gjet_Stat8: 6.12015774e-10 + syst_JES_Gjet_Stat9: 4.72749278e-09 + syst_JES_Gjet_Veto: 1.79367911e-07 + syst_JES_Gjet_dPhi: 2.23883781e-09 + syst_JES_LArESZee: 1.94727624e-07 + syst_JES_LArEsmear: 2.08750299e-08 + syst_JES_LAr_JVT: 2.79203582e-08 + syst_JES_MJB_Alpha: 3.74709634e-09 + syst_JES_MJB_Asym: 1.75005828e-07 + syst_JES_MJB_Beta: 1.38686125e-08 + syst_JES_MJB_Fragmentation: 3.70196526e-08 syst_JES_MJB_Stat1: 0.0 - syst_JES_MJB_Stat10: 1.9447305725986825e-10 - syst_JES_MJB_Stat11: 3.118834397655637e-10 - syst_JES_MJB_Stat12: 6.619576478144202e-10 - syst_JES_MJB_Stat13: 1.2924311432335573e-09 - syst_JES_MJB_Stat14: 4.9950379377938655e-08 - syst_JES_MJB_Stat15: 1.1410774907954324e-07 - syst_JES_MJB_Stat16: 1.477028351115848e-07 + syst_JES_MJB_Stat10: 1.94473057e-10 + syst_JES_MJB_Stat11: 3.11883440e-10 + syst_JES_MJB_Stat12: 6.61957648e-10 + syst_JES_MJB_Stat13: 1.29243114e-09 + syst_JES_MJB_Stat14: 4.99503794e-08 + syst_JES_MJB_Stat15: 1.14107749e-07 + syst_JES_MJB_Stat16: 1.47702835e-07 syst_JES_MJB_Stat2: 0.0 - syst_JES_MJB_Stat3: 2.320082056738511e-11 - syst_JES_MJB_Stat4: 2.4728625113418662e-11 - syst_JES_MJB_Stat5: 2.320082056738511e-11 - syst_JES_MJB_Stat6: 2.4090597750989904e-11 - syst_JES_MJB_Stat7: 5.046645024172e-11 - syst_JES_MJB_Stat8: 4.9769231458803936e-11 - syst_JES_MJB_Stat9: 1.0133967189605461e-10 - syst_JES_MJB_Threshold: 2.3765304016570038e-08 - syst_JES_Pileup_MuOffset: 7.572442934747015e-08 - syst_JES_Pileup_NPVOffset: 4.6076806529966897e-08 - syst_JES_Pileup_Pt_term: 1.1201065083285606e-08 - syst_JES_Pileup_Rho_topology: 7.63404956428762e-08 - syst_JES_PunchThrough_MC15: 2.66859077979371e-07 - syst_JES_SingleParticle_HighPt: 5.781589465709236e-07 - syst_JES_Zjet_MC: 6.39956279756672e-08 - syst_JES_Zjet_MuScale: 8.847007234087695e-09 - syst_JES_Zjet_MuSmearID: 2.2530039946702268e-10 - syst_JES_Zjet_MuSmearMS: 7.620133906303748e-09 - syst_JES_Zjet_OOC: 3.5313876875811866e-08 - syst_JES_Zjet_Stat1: 8.749500714326504e-09 - syst_JES_Zjet_Stat10: 5.5865152823562566e-09 - syst_JES_Zjet_Stat11: 3.3698134592288634e-09 - syst_JES_Zjet_Stat12: 5.4609670160146545e-09 - syst_JES_Zjet_Stat13: 1.4610006844625364e-08 - syst_JES_Zjet_Stat2: 5.1240037812242097e-11 - syst_JES_Zjet_Stat3: 8.647861166207515e-10 - syst_JES_Zjet_Stat4: 2.3238495540804702e-09 - syst_JES_Zjet_Stat5: 1.3353064095929444e-09 - syst_JES_Zjet_Stat6: 4.5429623320032044e-09 - syst_JES_Zjet_Stat7: 3.004532575959196e-09 - syst_JES_Zjet_Stat8: 1.262020280146084e-09 - syst_JES_Zjet_Stat9: 4.544479838221312e-09 - syst_JES_Zjet_Veto: 6.5766825983925975e-09 - syst_JES_Zjet_dPhi: 6.310798840083559e-09 + syst_JES_MJB_Stat3: 2.32008206e-11 + syst_JES_MJB_Stat4: 2.47286251e-11 + syst_JES_MJB_Stat5: 2.32008206e-11 + syst_JES_MJB_Stat6: 2.40905978e-11 + syst_JES_MJB_Stat7: 5.04664502e-11 + syst_JES_MJB_Stat8: 4.97692315e-11 + syst_JES_MJB_Stat9: 1.01339672e-10 + syst_JES_MJB_Threshold: 2.37653040e-08 + syst_JES_Pileup_MuOffset: 7.57244293e-08 + syst_JES_Pileup_NPVOffset: 4.60768065e-08 + syst_JES_Pileup_Pt_term: 1.12010651e-08 + syst_JES_Pileup_Rho_topology: 7.63404956e-08 + syst_JES_PunchThrough_MC15: 2.66859078e-07 + syst_JES_SingleParticle_HighPt: 5.78158947e-07 + syst_JES_Zjet_MC: 6.39956280e-08 + syst_JES_Zjet_MuScale: 8.84700723e-09 + syst_JES_Zjet_MuSmearID: 2.25300399e-10 + syst_JES_Zjet_MuSmearMS: 7.62013391e-09 + syst_JES_Zjet_OOC: 3.53138769e-08 + syst_JES_Zjet_Stat1: 8.74950071e-09 + syst_JES_Zjet_Stat10: 5.58651528e-09 + syst_JES_Zjet_Stat11: 3.36981346e-09 + syst_JES_Zjet_Stat12: 5.46096702e-09 + syst_JES_Zjet_Stat13: 1.46100068e-08 + syst_JES_Zjet_Stat2: 5.12400378e-11 + syst_JES_Zjet_Stat3: 8.64786117e-10 + syst_JES_Zjet_Stat4: 2.32384955e-09 + syst_JES_Zjet_Stat5: 1.33530641e-09 + syst_JES_Zjet_Stat6: 4.54296233e-09 + syst_JES_Zjet_Stat7: 3.00453258e-09 + syst_JES_Zjet_Stat8: 1.26202028e-09 + syst_JES_Zjet_Stat9: 4.54447984e-09 + syst_JES_Zjet_Veto: 6.57668260e-09 + syst_JES_Zjet_dPhi: 6.31079884e-09 syst_PRW: 0.0 syst_Unfolding_bias: 7.32e-09 - syst_cleaning: 1.2721913181593403e-08 - syst_lumi: 5.736e-08 + syst_cleaning: 1.27219132e-08 + syst_lumi: 5.73600000e-08 - stat: 76.5 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 199.32703078107593 - syst_JER_NP1: 23.490632175401327 - syst_JER_NP2: 42.60098725088422 - syst_JER_NP3: 8.822007254587813 - syst_JER_NP4: 29.306359378128153 - syst_JER_NP5: 19.981323154385947 + syst_JER_NP0: 1.99327031e+02 + syst_JER_NP1: 2.34906322e+01 + syst_JER_NP2: 4.26009873e+01 + syst_JER_NP3: 8.82200725e+00 + syst_JER_NP4: 2.93063594e+01 + syst_JER_NP5: 1.99813232e+01 syst_JER_NP6: 0.0 - syst_JER_NP7: 6.825310450814673 - syst_JER_NP8: 24.334096962903722 - syst_JES_EtaIntercalibration_Modelling: 108.92166627788063 - syst_JES_EtaIntercalibration_NonClosure: 2.3703115301580086e-08 + syst_JER_NP7: 6.82531045e+00 + syst_JER_NP8: 2.43340970e+01 + syst_JES_EtaIntercalibration_Modelling: 1.08921666e+02 + syst_JES_EtaIntercalibration_NonClosure: 2.37031153e-08 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 21.560783844749245 - syst_JES_EtaIntercalibration_Stat101: 2.0210800948997543 - syst_JES_EtaIntercalibration_Stat102: 0.03732272835686052 - syst_JES_EtaIntercalibration_Stat103: 0.313934208871859 - syst_JES_EtaIntercalibration_Stat104: 0.313934208871859 - syst_JES_EtaIntercalibration_Stat105: 0.313934208871859 + syst_JES_EtaIntercalibration_Stat100: 2.15607838e+01 + syst_JES_EtaIntercalibration_Stat101: 2.02108009e+00 + syst_JES_EtaIntercalibration_Stat102: 3.73227284e-02 + syst_JES_EtaIntercalibration_Stat103: 3.13934209e-01 + syst_JES_EtaIntercalibration_Stat104: 3.13934209e-01 + syst_JES_EtaIntercalibration_Stat105: 3.13934209e-01 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 9.185931457941541e-22 - syst_JES_EtaIntercalibration_Stat111: 9.185931457941541e-22 + syst_JES_EtaIntercalibration_Stat110: 9.18593146e-22 + syst_JES_EtaIntercalibration_Stat111: 9.18593146e-22 syst_JES_EtaIntercalibration_Stat112: 0.0 - syst_JES_EtaIntercalibration_Stat113: 0.03362470966417405 - syst_JES_EtaIntercalibration_Stat114: 1.4467409469217356 - syst_JES_EtaIntercalibration_Stat115: 11.771370640244065 - syst_JES_EtaIntercalibration_Stat116: 4.838132361769364 - syst_JES_EtaIntercalibration_Stat117: 0.6248723851115522 - syst_JES_EtaIntercalibration_Stat118: 0.9982753978737531 - syst_JES_EtaIntercalibration_Stat119: 7.438132762999059 - syst_JES_EtaIntercalibration_Stat12: 0.42471343477102297 - syst_JES_EtaIntercalibration_Stat120: 7.314815018166898 - syst_JES_EtaIntercalibration_Stat121: 0.8644754421034758 - syst_JES_EtaIntercalibration_Stat122: 0.029324181011581553 - syst_JES_EtaIntercalibration_Stat123: 0.313934208871859 - syst_JES_EtaIntercalibration_Stat124: 0.313934208871859 - syst_JES_EtaIntercalibration_Stat125: 0.313934208871859 + syst_JES_EtaIntercalibration_Stat113: 3.36247097e-02 + syst_JES_EtaIntercalibration_Stat114: 1.44674095e+00 + syst_JES_EtaIntercalibration_Stat115: 1.17713706e+01 + syst_JES_EtaIntercalibration_Stat116: 4.83813236e+00 + syst_JES_EtaIntercalibration_Stat117: 6.24872385e-01 + syst_JES_EtaIntercalibration_Stat118: 9.98275398e-01 + syst_JES_EtaIntercalibration_Stat119: 7.43813276e+00 + syst_JES_EtaIntercalibration_Stat12: 4.24713435e-01 + syst_JES_EtaIntercalibration_Stat120: 7.31481502e+00 + syst_JES_EtaIntercalibration_Stat121: 8.64475442e-01 + syst_JES_EtaIntercalibration_Stat122: 2.93241810e-02 + syst_JES_EtaIntercalibration_Stat123: 3.13934209e-01 + syst_JES_EtaIntercalibration_Stat124: 3.13934209e-01 + syst_JES_EtaIntercalibration_Stat125: 3.13934209e-01 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 syst_JES_EtaIntercalibration_Stat128: 0.0 - syst_JES_EtaIntercalibration_Stat129: 9.185931457941541e-22 - syst_JES_EtaIntercalibration_Stat13: 0.22377146751764398 - syst_JES_EtaIntercalibration_Stat130: 9.185931457941541e-22 - syst_JES_EtaIntercalibration_Stat131: 0.0014713771610297612 - syst_JES_EtaIntercalibration_Stat132: 0.10795014161639621 - syst_JES_EtaIntercalibration_Stat133: 1.2791985928697702 - syst_JES_EtaIntercalibration_Stat134: 12.862318764515207 - syst_JES_EtaIntercalibration_Stat135: 9.06433531760603 - syst_JES_EtaIntercalibration_Stat136: 1.145105989635894 - syst_JES_EtaIntercalibration_Stat137: 0.7677996532299295 - syst_JES_EtaIntercalibration_Stat138: 8.644823928224334 - syst_JES_EtaIntercalibration_Stat139: 10.264065909765 - syst_JES_EtaIntercalibration_Stat14: 0.07870438869592979 - syst_JES_EtaIntercalibration_Stat140: 1.335313906914775 - syst_JES_EtaIntercalibration_Stat141: 0.015467213711590076 + syst_JES_EtaIntercalibration_Stat129: 9.18593146e-22 + syst_JES_EtaIntercalibration_Stat13: 2.23771468e-01 + syst_JES_EtaIntercalibration_Stat130: 9.18593146e-22 + syst_JES_EtaIntercalibration_Stat131: 1.47137716e-03 + syst_JES_EtaIntercalibration_Stat132: 1.07950142e-01 + syst_JES_EtaIntercalibration_Stat133: 1.27919859e+00 + syst_JES_EtaIntercalibration_Stat134: 1.28623188e+01 + syst_JES_EtaIntercalibration_Stat135: 9.06433532e+00 + syst_JES_EtaIntercalibration_Stat136: 1.14510599e+00 + syst_JES_EtaIntercalibration_Stat137: 7.67799653e-01 + syst_JES_EtaIntercalibration_Stat138: 8.64482393e+00 + syst_JES_EtaIntercalibration_Stat139: 1.02640659e+01 + syst_JES_EtaIntercalibration_Stat14: 7.87043887e-02 + syst_JES_EtaIntercalibration_Stat140: 1.33531391e+00 + syst_JES_EtaIntercalibration_Stat141: 1.54672137e-02 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 0.313934208871859 - syst_JES_EtaIntercalibration_Stat144: 0.313934208871859 + syst_JES_EtaIntercalibration_Stat143: 3.13934209e-01 + syst_JES_EtaIntercalibration_Stat144: 3.13934209e-01 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 9.185931457941541e-22 + syst_JES_EtaIntercalibration_Stat147: 9.18593146e-22 syst_JES_EtaIntercalibration_Stat148: 0.0 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 0.004226203970467982 - syst_JES_EtaIntercalibration_Stat151: 0.1858356873692456 - syst_JES_EtaIntercalibration_Stat152: 1.1125067134628897 - syst_JES_EtaIntercalibration_Stat153: 0.6678093590239658 - syst_JES_EtaIntercalibration_Stat154: 0.0916859733001728 - syst_JES_EtaIntercalibration_Stat155: 0.10304865392133951 - syst_JES_EtaIntercalibration_Stat156: 0.9951841877260711 - syst_JES_EtaIntercalibration_Stat157: 1.0340135625319429 - syst_JES_EtaIntercalibration_Stat158: 0.17926100189388658 - syst_JES_EtaIntercalibration_Stat159: 7.425301820604108e-08 + syst_JES_EtaIntercalibration_Stat150: 4.22620397e-03 + syst_JES_EtaIntercalibration_Stat151: 1.85835687e-01 + syst_JES_EtaIntercalibration_Stat152: 1.11250671e+00 + syst_JES_EtaIntercalibration_Stat153: 6.67809359e-01 + syst_JES_EtaIntercalibration_Stat154: 9.16859733e-02 + syst_JES_EtaIntercalibration_Stat155: 1.03048654e-01 + syst_JES_EtaIntercalibration_Stat156: 9.95184188e-01 + syst_JES_EtaIntercalibration_Stat157: 1.03401356e+00 + syst_JES_EtaIntercalibration_Stat158: 1.79261002e-01 + syst_JES_EtaIntercalibration_Stat159: 7.42530182e-08 syst_JES_EtaIntercalibration_Stat16: 0.0 syst_JES_EtaIntercalibration_Stat160: 0.0 syst_JES_EtaIntercalibration_Stat161: 0.0 @@ -12560,17 +12560,17 @@ bins: syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 - syst_JES_EtaIntercalibration_Stat168: 1.8056629668905546e-15 - syst_JES_EtaIntercalibration_Stat169: 0.0003509728301450128 + syst_JES_EtaIntercalibration_Stat168: 1.80566297e-15 + syst_JES_EtaIntercalibration_Stat169: 3.50972830e-04 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 0.06345770481194542 - syst_JES_EtaIntercalibration_Stat171: 0.015436537824266166 - syst_JES_EtaIntercalibration_Stat172: 0.00065961742510337 - syst_JES_EtaIntercalibration_Stat173: 0.0003531651596632941 - syst_JES_EtaIntercalibration_Stat174: 0.0018916073271162807 - syst_JES_EtaIntercalibration_Stat175: 0.021103689795862714 - syst_JES_EtaIntercalibration_Stat176: 0.000617016991257129 - syst_JES_EtaIntercalibration_Stat177: 1.2548654985511076e-11 + syst_JES_EtaIntercalibration_Stat170: 6.34577048e-02 + syst_JES_EtaIntercalibration_Stat171: 1.54365378e-02 + syst_JES_EtaIntercalibration_Stat172: 6.59617425e-04 + syst_JES_EtaIntercalibration_Stat173: 3.53165160e-04 + syst_JES_EtaIntercalibration_Stat174: 1.89160733e-03 + syst_JES_EtaIntercalibration_Stat175: 2.11036898e-02 + syst_JES_EtaIntercalibration_Stat176: 6.17016991e-04 + syst_JES_EtaIntercalibration_Stat177: 1.25486550e-11 syst_JES_EtaIntercalibration_Stat178: 0.0 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 @@ -12579,17 +12579,17 @@ bins: syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 syst_JES_EtaIntercalibration_Stat184: 0.0 - syst_JES_EtaIntercalibration_Stat185: 2.386766012829913e-22 - syst_JES_EtaIntercalibration_Stat186: 4.7146652055050524e-08 - syst_JES_EtaIntercalibration_Stat187: 0.0014603027186169313 - syst_JES_EtaIntercalibration_Stat188: 0.0011630624445832648 - syst_JES_EtaIntercalibration_Stat189: 1.134344148425424e-05 + syst_JES_EtaIntercalibration_Stat185: 2.38676601e-22 + syst_JES_EtaIntercalibration_Stat186: 4.71466521e-08 + syst_JES_EtaIntercalibration_Stat187: 1.46030272e-03 + syst_JES_EtaIntercalibration_Stat188: 1.16306244e-03 + syst_JES_EtaIntercalibration_Stat189: 1.13434415e-05 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 5.0545700113857367e-08 - syst_JES_EtaIntercalibration_Stat191: 0.0011205121184083642 - syst_JES_EtaIntercalibration_Stat192: 0.0012692779945701414 - syst_JES_EtaIntercalibration_Stat193: 1.1413348796475117e-05 - syst_JES_EtaIntercalibration_Stat194: 1.4298079416481084e-16 + syst_JES_EtaIntercalibration_Stat190: 5.05457001e-08 + syst_JES_EtaIntercalibration_Stat191: 1.12051212e-03 + syst_JES_EtaIntercalibration_Stat192: 1.26927799e-03 + syst_JES_EtaIntercalibration_Stat193: 1.14133488e-05 + syst_JES_EtaIntercalibration_Stat194: 1.42980794e-16 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 syst_JES_EtaIntercalibration_Stat197: 0.0 @@ -12598,29 +12598,29 @@ bins: syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 - syst_JES_EtaIntercalibration_Stat201: 5.313433292908851e-12 - syst_JES_EtaIntercalibration_Stat202: 6.929942333814907e-08 - syst_JES_EtaIntercalibration_Stat203: 5.674535641794843e-08 - syst_JES_EtaIntercalibration_Stat204: 7.052868396464723e-12 - syst_JES_EtaIntercalibration_Stat205: 1.202043260452801e-16 - syst_JES_EtaIntercalibration_Stat206: 5.657706315283606e-08 - syst_JES_EtaIntercalibration_Stat207: 5.3278750689181895e-08 - syst_JES_EtaIntercalibration_Stat208: 8.332030409810085e-22 - syst_JES_EtaIntercalibration_Stat209: 1.9165142185749628e-39 + syst_JES_EtaIntercalibration_Stat201: 5.31343329e-12 + syst_JES_EtaIntercalibration_Stat202: 6.92994233e-08 + syst_JES_EtaIntercalibration_Stat203: 5.67453564e-08 + syst_JES_EtaIntercalibration_Stat204: 7.05286840e-12 + syst_JES_EtaIntercalibration_Stat205: 1.20204326e-16 + syst_JES_EtaIntercalibration_Stat206: 5.65770632e-08 + syst_JES_EtaIntercalibration_Stat207: 5.32787507e-08 + syst_JES_EtaIntercalibration_Stat208: 8.33203041e-22 + syst_JES_EtaIntercalibration_Stat209: 1.91651422e-39 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 syst_JES_EtaIntercalibration_Stat211: 0.0 syst_JES_EtaIntercalibration_Stat212: 0.0 syst_JES_EtaIntercalibration_Stat213: 0.0 - syst_JES_EtaIntercalibration_Stat214: 2.4465217656910392e-39 - syst_JES_EtaIntercalibration_Stat215: 8.826530915370999e-23 - syst_JES_EtaIntercalibration_Stat216: 1.0370210448684252e-22 - syst_JES_EtaIntercalibration_Stat217: 1.20542075952756e-38 + syst_JES_EtaIntercalibration_Stat214: 2.44652177e-39 + syst_JES_EtaIntercalibration_Stat215: 8.82653092e-23 + syst_JES_EtaIntercalibration_Stat216: 1.03702104e-22 + syst_JES_EtaIntercalibration_Stat217: 1.20542076e-38 syst_JES_EtaIntercalibration_Stat218: 0.0 - syst_JES_EtaIntercalibration_Stat219: 9.792150697534919e-23 + syst_JES_EtaIntercalibration_Stat219: 9.79215070e-23 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 1.4783040384169963e-22 - syst_JES_EtaIntercalibration_Stat221: 1.9052558889871197e-30 + syst_JES_EtaIntercalibration_Stat220: 1.47830404e-22 + syst_JES_EtaIntercalibration_Stat221: 1.90525589e-30 syst_JES_EtaIntercalibration_Stat222: 0.0 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 @@ -12650,17 +12650,17 @@ bins: syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 syst_JES_EtaIntercalibration_Stat27: 0.0 - syst_JES_EtaIntercalibration_Stat28: 0.04364768035073571 - syst_JES_EtaIntercalibration_Stat29: 0.04786491068622191 + syst_JES_EtaIntercalibration_Stat28: 4.36476804e-02 + syst_JES_EtaIntercalibration_Stat29: 4.78649107e-02 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 1.1414016733823373 - syst_JES_EtaIntercalibration_Stat31: 0.9328024589911843 - syst_JES_EtaIntercalibration_Stat32: 0.15625609452114178 - syst_JES_EtaIntercalibration_Stat33: 0.02205089313383927 - syst_JES_EtaIntercalibration_Stat34: 1.172580214740126 - syst_JES_EtaIntercalibration_Stat35: 0.9959082506310509 - syst_JES_EtaIntercalibration_Stat36: 0.3112460602160291 - syst_JES_EtaIntercalibration_Stat37: 0.0318610746052295 + syst_JES_EtaIntercalibration_Stat30: 1.14140167e+00 + syst_JES_EtaIntercalibration_Stat31: 9.32802459e-01 + syst_JES_EtaIntercalibration_Stat32: 1.56256095e-01 + syst_JES_EtaIntercalibration_Stat33: 2.20508931e-02 + syst_JES_EtaIntercalibration_Stat34: 1.17258021e+00 + syst_JES_EtaIntercalibration_Stat35: 9.95908251e-01 + syst_JES_EtaIntercalibration_Stat36: 3.11246060e-01 + syst_JES_EtaIntercalibration_Stat37: 3.18610746e-02 syst_JES_EtaIntercalibration_Stat38: 0.0 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 @@ -12675,20 +12675,20 @@ bins: syst_JES_EtaIntercalibration_Stat48: 0.0 syst_JES_EtaIntercalibration_Stat49: 0.0 syst_JES_EtaIntercalibration_Stat5: 0.0 - syst_JES_EtaIntercalibration_Stat50: 0.04421059686319559 - syst_JES_EtaIntercalibration_Stat51: 0.39437411942849393 - syst_JES_EtaIntercalibration_Stat52: 3.5562160114368755 - syst_JES_EtaIntercalibration_Stat53: 2.9416058114574084 - syst_JES_EtaIntercalibration_Stat54: 0.3892206217002768 - syst_JES_EtaIntercalibration_Stat55: 0.36777600180000874 - syst_JES_EtaIntercalibration_Stat56: 2.6169339846469186 - syst_JES_EtaIntercalibration_Stat57: 3.902704481510226 - syst_JES_EtaIntercalibration_Stat58: 0.1613640501319919 - syst_JES_EtaIntercalibration_Stat59: 0.07942775380809909 + syst_JES_EtaIntercalibration_Stat50: 4.42105969e-02 + syst_JES_EtaIntercalibration_Stat51: 3.94374119e-01 + syst_JES_EtaIntercalibration_Stat52: 3.55621601e+00 + syst_JES_EtaIntercalibration_Stat53: 2.94160581e+00 + syst_JES_EtaIntercalibration_Stat54: 3.89220622e-01 + syst_JES_EtaIntercalibration_Stat55: 3.67776002e-01 + syst_JES_EtaIntercalibration_Stat56: 2.61693398e+00 + syst_JES_EtaIntercalibration_Stat57: 3.90270448e+00 + syst_JES_EtaIntercalibration_Stat58: 1.61364050e-01 + syst_JES_EtaIntercalibration_Stat59: 7.94277538e-02 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 0.313934208871859 - syst_JES_EtaIntercalibration_Stat62: 0.313934208871859 + syst_JES_EtaIntercalibration_Stat61: 3.13934209e-01 + syst_JES_EtaIntercalibration_Stat62: 3.13934209e-01 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 @@ -12696,70 +12696,70 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 0.04364768035073571 + syst_JES_EtaIntercalibration_Stat7: 4.36476804e-02 syst_JES_EtaIntercalibration_Stat70: 0.0 syst_JES_EtaIntercalibration_Stat71: 0.0 - syst_JES_EtaIntercalibration_Stat72: 0.09014458427992222 - syst_JES_EtaIntercalibration_Stat73: 2.5813550525838167 - syst_JES_EtaIntercalibration_Stat74: 20.397889596720542 - syst_JES_EtaIntercalibration_Stat75: 16.45702585523885 - syst_JES_EtaIntercalibration_Stat76: 1.280373863369602 - syst_JES_EtaIntercalibration_Stat77: 2.404251858687022 - syst_JES_EtaIntercalibration_Stat78: 22.752293840402114 - syst_JES_EtaIntercalibration_Stat79: 18.677036033589484 - syst_JES_EtaIntercalibration_Stat8: 0.27243333326705815 - syst_JES_EtaIntercalibration_Stat80: 2.546308897207878 - syst_JES_EtaIntercalibration_Stat81: 0.09174673127692344 - syst_JES_EtaIntercalibration_Stat82: 0.313934208871859 - syst_JES_EtaIntercalibration_Stat83: 0.313934208871859 - syst_JES_EtaIntercalibration_Stat84: 0.313934208871859 + syst_JES_EtaIntercalibration_Stat72: 9.01445843e-02 + syst_JES_EtaIntercalibration_Stat73: 2.58135505e+00 + syst_JES_EtaIntercalibration_Stat74: 2.03978896e+01 + syst_JES_EtaIntercalibration_Stat75: 1.64570259e+01 + syst_JES_EtaIntercalibration_Stat76: 1.28037386e+00 + syst_JES_EtaIntercalibration_Stat77: 2.40425186e+00 + syst_JES_EtaIntercalibration_Stat78: 2.27522938e+01 + syst_JES_EtaIntercalibration_Stat79: 1.86770360e+01 + syst_JES_EtaIntercalibration_Stat8: 2.72433333e-01 + syst_JES_EtaIntercalibration_Stat80: 2.54630890e+00 + syst_JES_EtaIntercalibration_Stat81: 9.17467313e-02 + syst_JES_EtaIntercalibration_Stat82: 3.13934209e-01 + syst_JES_EtaIntercalibration_Stat83: 3.13934209e-01 + syst_JES_EtaIntercalibration_Stat84: 3.13934209e-01 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 syst_JES_EtaIntercalibration_Stat89: 0.0 - syst_JES_EtaIntercalibration_Stat9: 0.09292221424395783 + syst_JES_EtaIntercalibration_Stat9: 9.29222142e-02 syst_JES_EtaIntercalibration_Stat90: 0.0 syst_JES_EtaIntercalibration_Stat91: 0.0 syst_JES_EtaIntercalibration_Stat92: 0.0 - syst_JES_EtaIntercalibration_Stat93: 0.09185065432537756 - syst_JES_EtaIntercalibration_Stat94: 2.523184297668325 - syst_JES_EtaIntercalibration_Stat95: 23.81853899801581 - syst_JES_EtaIntercalibration_Stat96: 20.04575952664304 - syst_JES_EtaIntercalibration_Stat97: 1.4969589172719469 - syst_JES_EtaIntercalibration_Stat98: 1.9924464058036793 - syst_JES_EtaIntercalibration_Stat99: 20.87397422629433 - syst_JES_EtaIntercalibration_TotalStat_MJB: 4.505370424582201e-06 - syst_JES_Flavour_Comp: 21.076522483559756 - syst_JES_Flavour_Response: 412.57592828472184 - syst_JES_Gjet_Generator: 232.06447482326976 - syst_JES_Gjet_OOC: 156.5712655630017 - syst_JES_Gjet_Purity: 66.5263304771126 - syst_JES_Gjet_Stat1: 1.8104062389419674e-07 - syst_JES_Gjet_Stat10: 2.1757977847217322 - syst_JES_Gjet_Stat11: 0.47174053249641373 - syst_JES_Gjet_Stat12: 0.0989819643925094 - syst_JES_Gjet_Stat13: 4.858405371106862e-05 - syst_JES_Gjet_Stat14: 4.190696928912963e-15 - syst_JES_Gjet_Stat15: 4.4210596863195596e-38 + syst_JES_EtaIntercalibration_Stat93: 9.18506543e-02 + syst_JES_EtaIntercalibration_Stat94: 2.52318430e+00 + syst_JES_EtaIntercalibration_Stat95: 2.38185390e+01 + syst_JES_EtaIntercalibration_Stat96: 2.00457595e+01 + syst_JES_EtaIntercalibration_Stat97: 1.49695892e+00 + syst_JES_EtaIntercalibration_Stat98: 1.99244641e+00 + syst_JES_EtaIntercalibration_Stat99: 2.08739742e+01 + syst_JES_EtaIntercalibration_TotalStat_MJB: 4.50537042e-06 + syst_JES_Flavour_Comp: 2.10765225e+01 + syst_JES_Flavour_Response: 4.12575928e+02 + syst_JES_Gjet_Generator: 2.32064475e+02 + syst_JES_Gjet_OOC: 1.56571266e+02 + syst_JES_Gjet_Purity: 6.65263305e+01 + syst_JES_Gjet_Stat1: 1.81040624e-07 + syst_JES_Gjet_Stat10: 2.17579778e+00 + syst_JES_Gjet_Stat11: 4.71740532e-01 + syst_JES_Gjet_Stat12: 9.89819644e-02 + syst_JES_Gjet_Stat13: 4.85840537e-05 + syst_JES_Gjet_Stat14: 4.19069693e-15 + syst_JES_Gjet_Stat15: 4.42105969e-38 syst_JES_Gjet_Stat2: 0.0 - syst_JES_Gjet_Stat3: 2.8968549756589472 - syst_JES_Gjet_Stat4: 3.7306625416941697 - syst_JES_Gjet_Stat5: 5.547803889828839 - syst_JES_Gjet_Stat6: 18.115862524318292 - syst_JES_Gjet_Stat7: 25.838593227960377 - syst_JES_Gjet_Stat8: 5.988006575647693 - syst_JES_Gjet_Stat9: 0.2669675427589467 - syst_JES_Gjet_Veto: 44.89321890887308 - syst_JES_Gjet_dPhi: 29.926010008018103 - syst_JES_LArESZee: 144.76064753585487 - syst_JES_LArEsmear: 14.250053578846643 - syst_JES_LAr_JVT: 27.73020149584204 - syst_JES_MJB_Alpha: 6.986226932329066e-38 - syst_JES_MJB_Asym: 0.0009645646517989347 - syst_JES_MJB_Beta: 2.9254338139838337e-08 - syst_JES_MJB_Fragmentation: 0.005060968286800462 - syst_JES_MJB_Stat1: 0.0004913644703272715 + syst_JES_Gjet_Stat3: 2.89685498e+00 + syst_JES_Gjet_Stat4: 3.73066254e+00 + syst_JES_Gjet_Stat5: 5.54780389e+00 + syst_JES_Gjet_Stat6: 1.81158625e+01 + syst_JES_Gjet_Stat7: 2.58385932e+01 + syst_JES_Gjet_Stat8: 5.98800658e+00 + syst_JES_Gjet_Stat9: 2.66967543e-01 + syst_JES_Gjet_Veto: 4.48932189e+01 + syst_JES_Gjet_dPhi: 2.99260100e+01 + syst_JES_LArESZee: 1.44760648e+02 + syst_JES_LArEsmear: 1.42500536e+01 + syst_JES_LAr_JVT: 2.77302015e+01 + syst_JES_MJB_Alpha: 6.98622693e-38 + syst_JES_MJB_Asym: 9.64564652e-04 + syst_JES_MJB_Beta: 2.92543381e-08 + syst_JES_MJB_Fragmentation: 5.06096829e-03 + syst_JES_MJB_Stat1: 4.91364470e-04 syst_JES_MJB_Stat10: 0.0 syst_JES_MJB_Stat11: 0.0 syst_JES_MJB_Stat12: 0.0 @@ -12767,127 +12767,127 @@ bins: syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 6.226002453622388e-07 - syst_JES_MJB_Stat3: 2.8267069179525314e-08 - syst_JES_MJB_Stat4: 2.2863070832941062e-21 - syst_JES_MJB_Stat5: 1.6497783942093557e-30 - syst_JES_MJB_Stat6: 1.3518656553075088e-38 + syst_JES_MJB_Stat2: 6.22600245e-07 + syst_JES_MJB_Stat3: 2.82670692e-08 + syst_JES_MJB_Stat4: 2.28630708e-21 + syst_JES_MJB_Stat5: 1.64977839e-30 + syst_JES_MJB_Stat6: 1.35186566e-38 syst_JES_MJB_Stat7: 0.0 syst_JES_MJB_Stat8: 0.0 syst_JES_MJB_Stat9: 0.0 - syst_JES_MJB_Threshold: 0.000974406983759866 - syst_JES_Pileup_MuOffset: 6.3842804410520685e-37 - syst_JES_Pileup_NPVOffset: 18.078746499688524 - syst_JES_Pileup_Pt_term: 46.85457280778473 - syst_JES_Pileup_Rho_topology: 140.0045386335743 + syst_JES_MJB_Threshold: 9.74406984e-04 + syst_JES_Pileup_MuOffset: 6.38428044e-37 + syst_JES_Pileup_NPVOffset: 1.80787465e+01 + syst_JES_Pileup_Pt_term: 4.68545728e+01 + syst_JES_Pileup_Rho_topology: 1.40004539e+02 syst_JES_PunchThrough_MC15: 0.0 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 225.91743110039118 - syst_JES_Zjet_MuScale: 15.744036966420017 - syst_JES_Zjet_MuSmearID: 2.345986785981541 - syst_JES_Zjet_MuSmearMS: 3.8297249248477363 - syst_JES_Zjet_OOC: 163.72608436043413 - syst_JES_Zjet_Stat1: 3.428036281896678 - syst_JES_Zjet_Stat10: 5.037536178530135 - syst_JES_Zjet_Stat11: 5.4318645739745754 - syst_JES_Zjet_Stat12: 0.9021182447440026 - syst_JES_Zjet_Stat13: 0.014611448522261575 - syst_JES_Zjet_Stat2: 0.15605780316249748 - syst_JES_Zjet_Stat3: 1.2178049228016776 - syst_JES_Zjet_Stat4: 2.7872841620473503 - syst_JES_Zjet_Stat5: 3.115150816172469 - syst_JES_Zjet_Stat6: 7.251629058356475 - syst_JES_Zjet_Stat7: 13.045350474402749 - syst_JES_Zjet_Stat8: 21.933391780570552 - syst_JES_Zjet_Stat9: 24.452960965903497 - syst_JES_Zjet_Veto: 23.080660735776174 - syst_JES_Zjet_dPhi: 37.61782979851443 + syst_JES_Zjet_MC: 2.25917431e+02 + syst_JES_Zjet_MuScale: 1.57440370e+01 + syst_JES_Zjet_MuSmearID: 2.34598679e+00 + syst_JES_Zjet_MuSmearMS: 3.82972492e+00 + syst_JES_Zjet_OOC: 1.63726084e+02 + syst_JES_Zjet_Stat1: 3.42803628e+00 + syst_JES_Zjet_Stat10: 5.03753618e+00 + syst_JES_Zjet_Stat11: 5.43186457e+00 + syst_JES_Zjet_Stat12: 9.02118245e-01 + syst_JES_Zjet_Stat13: 1.46114485e-02 + syst_JES_Zjet_Stat2: 1.56057803e-01 + syst_JES_Zjet_Stat3: 1.21780492e+00 + syst_JES_Zjet_Stat4: 2.78728416e+00 + syst_JES_Zjet_Stat5: 3.11515082e+00 + syst_JES_Zjet_Stat6: 7.25162906e+00 + syst_JES_Zjet_Stat7: 1.30453505e+01 + syst_JES_Zjet_Stat8: 2.19333918e+01 + syst_JES_Zjet_Stat9: 2.44529610e+01 + syst_JES_Zjet_Veto: 2.30806607e+01 + syst_JES_Zjet_dPhi: 3.76178298e+01 syst_PRW: 8.652 syst_Unfolding_bias: 32.91 - syst_cleaning: 112.39970510637474 + syst_cleaning: 1.12399705e+02 syst_lumi: 235.17 - stat: 48.5 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 86.222063746758 - syst_JER_NP1: 12.570484905125975 - syst_JER_NP2: 18.776860094275612 - syst_JER_NP3: 8.366435800267638 - syst_JER_NP4: 14.961755202849698 - syst_JER_NP5: 9.112273371667468 + syst_JER_NP0: 8.62220637e+01 + syst_JER_NP1: 1.25704849e+01 + syst_JER_NP2: 1.87768601e+01 + syst_JER_NP3: 8.36643580e+00 + syst_JER_NP4: 1.49617552e+01 + syst_JER_NP5: 9.11227337e+00 syst_JER_NP6: 0.0 - syst_JER_NP7: 3.3224383741463144 - syst_JER_NP8: 10.699585821423183 - syst_JES_EtaIntercalibration_Modelling: 41.64143766730443 - syst_JES_EtaIntercalibration_NonClosure: 5.736552274668121e-06 + syst_JER_NP7: 3.32243837e+00 + syst_JER_NP8: 1.06995858e+01 + syst_JES_EtaIntercalibration_Modelling: 4.16414377e+01 + syst_JES_EtaIntercalibration_NonClosure: 5.73655227e-06 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 7.893835997156262 - syst_JES_EtaIntercalibration_Stat101: 0.7136996076781883 - syst_JES_EtaIntercalibration_Stat102: 0.0062277342589420115 - syst_JES_EtaIntercalibration_Stat103: 0.19944565049155621 - syst_JES_EtaIntercalibration_Stat104: 0.19944565049155621 - syst_JES_EtaIntercalibration_Stat105: 0.19944565049155621 + syst_JES_EtaIntercalibration_Stat100: 7.89383600e+00 + syst_JES_EtaIntercalibration_Stat101: 7.13699608e-01 + syst_JES_EtaIntercalibration_Stat102: 6.22773426e-03 + syst_JES_EtaIntercalibration_Stat103: 1.99445650e-01 + syst_JES_EtaIntercalibration_Stat104: 1.99445650e-01 + syst_JES_EtaIntercalibration_Stat105: 1.99445650e-01 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 1.314626562944778e-14 - syst_JES_EtaIntercalibration_Stat111: 1.314626562944778e-14 + syst_JES_EtaIntercalibration_Stat110: 1.31462656e-14 + syst_JES_EtaIntercalibration_Stat111: 1.31462656e-14 syst_JES_EtaIntercalibration_Stat112: 0.0 - syst_JES_EtaIntercalibration_Stat113: 0.04112111714192599 - syst_JES_EtaIntercalibration_Stat114: 0.7751529784500605 - syst_JES_EtaIntercalibration_Stat115: 10.528136812845851 - syst_JES_EtaIntercalibration_Stat116: 8.48097647679794 - syst_JES_EtaIntercalibration_Stat117: 0.5986765800496959 - syst_JES_EtaIntercalibration_Stat118: 0.5095269472756079 - syst_JES_EtaIntercalibration_Stat119: 8.100952166257988 - syst_JES_EtaIntercalibration_Stat12: 0.060971817260107974 - syst_JES_EtaIntercalibration_Stat120: 10.496663315073032 - syst_JES_EtaIntercalibration_Stat121: 0.7877903829699878 - syst_JES_EtaIntercalibration_Stat122: 0.0017734641890943274 - syst_JES_EtaIntercalibration_Stat123: 0.19944565049155621 - syst_JES_EtaIntercalibration_Stat124: 0.19944565049155621 - syst_JES_EtaIntercalibration_Stat125: 0.19944565049155621 + syst_JES_EtaIntercalibration_Stat113: 4.11211171e-02 + syst_JES_EtaIntercalibration_Stat114: 7.75152978e-01 + syst_JES_EtaIntercalibration_Stat115: 1.05281368e+01 + syst_JES_EtaIntercalibration_Stat116: 8.48097648e+00 + syst_JES_EtaIntercalibration_Stat117: 5.98676580e-01 + syst_JES_EtaIntercalibration_Stat118: 5.09526947e-01 + syst_JES_EtaIntercalibration_Stat119: 8.10095217e+00 + syst_JES_EtaIntercalibration_Stat12: 6.09718173e-02 + syst_JES_EtaIntercalibration_Stat120: 1.04966633e+01 + syst_JES_EtaIntercalibration_Stat121: 7.87790383e-01 + syst_JES_EtaIntercalibration_Stat122: 1.77346419e-03 + syst_JES_EtaIntercalibration_Stat123: 1.99445650e-01 + syst_JES_EtaIntercalibration_Stat124: 1.99445650e-01 + syst_JES_EtaIntercalibration_Stat125: 1.99445650e-01 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 syst_JES_EtaIntercalibration_Stat128: 0.0 - syst_JES_EtaIntercalibration_Stat129: 1.314626562944778e-14 - syst_JES_EtaIntercalibration_Stat13: 0.04833694922882494 - syst_JES_EtaIntercalibration_Stat130: 1.314626562944778e-14 - syst_JES_EtaIntercalibration_Stat131: 0.006236248932651743 - syst_JES_EtaIntercalibration_Stat132: 0.04057078875250024 - syst_JES_EtaIntercalibration_Stat133: 0.3749773289146959 - syst_JES_EtaIntercalibration_Stat134: 2.764194457703727 - syst_JES_EtaIntercalibration_Stat135: 1.7696661570759609 - syst_JES_EtaIntercalibration_Stat136: 0.28088493640635126 - syst_JES_EtaIntercalibration_Stat137: 0.2658601512073594 - syst_JES_EtaIntercalibration_Stat138: 2.4221772746849064 - syst_JES_EtaIntercalibration_Stat139: 2.7271623989047664 - syst_JES_EtaIntercalibration_Stat14: 0.024984832899181054 - syst_JES_EtaIntercalibration_Stat140: 0.37398514676387884 - syst_JES_EtaIntercalibration_Stat141: 0.010121238894028222 + syst_JES_EtaIntercalibration_Stat129: 1.31462656e-14 + syst_JES_EtaIntercalibration_Stat13: 4.83369492e-02 + syst_JES_EtaIntercalibration_Stat130: 1.31462656e-14 + syst_JES_EtaIntercalibration_Stat131: 6.23624893e-03 + syst_JES_EtaIntercalibration_Stat132: 4.05707888e-02 + syst_JES_EtaIntercalibration_Stat133: 3.74977329e-01 + syst_JES_EtaIntercalibration_Stat134: 2.76419446e+00 + syst_JES_EtaIntercalibration_Stat135: 1.76966616e+00 + syst_JES_EtaIntercalibration_Stat136: 2.80884936e-01 + syst_JES_EtaIntercalibration_Stat137: 2.65860151e-01 + syst_JES_EtaIntercalibration_Stat138: 2.42217727e+00 + syst_JES_EtaIntercalibration_Stat139: 2.72716240e+00 + syst_JES_EtaIntercalibration_Stat14: 2.49848329e-02 + syst_JES_EtaIntercalibration_Stat140: 3.73985147e-01 + syst_JES_EtaIntercalibration_Stat141: 1.01212389e-02 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 0.19944565049155621 - syst_JES_EtaIntercalibration_Stat144: 0.19944565049155621 + syst_JES_EtaIntercalibration_Stat143: 1.99445650e-01 + syst_JES_EtaIntercalibration_Stat144: 1.99445650e-01 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 1.314626562944778e-14 + syst_JES_EtaIntercalibration_Stat147: 1.31462656e-14 syst_JES_EtaIntercalibration_Stat148: 0.0 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 0.016645008245567035 - syst_JES_EtaIntercalibration_Stat151: 0.10827073323387074 - syst_JES_EtaIntercalibration_Stat152: 1.0907332671189598 - syst_JES_EtaIntercalibration_Stat153: 0.8534316844364286 - syst_JES_EtaIntercalibration_Stat154: 0.1559991893408424 - syst_JES_EtaIntercalibration_Stat155: 0.09000462363123353 - syst_JES_EtaIntercalibration_Stat156: 1.2686389035103722 - syst_JES_EtaIntercalibration_Stat157: 1.222834219140109 - syst_JES_EtaIntercalibration_Stat158: 0.17093167845662782 - syst_JES_EtaIntercalibration_Stat159: 1.7970043545542e-05 + syst_JES_EtaIntercalibration_Stat150: 1.66450082e-02 + syst_JES_EtaIntercalibration_Stat151: 1.08270733e-01 + syst_JES_EtaIntercalibration_Stat152: 1.09073327e+00 + syst_JES_EtaIntercalibration_Stat153: 8.53431684e-01 + syst_JES_EtaIntercalibration_Stat154: 1.55999189e-01 + syst_JES_EtaIntercalibration_Stat155: 9.00046236e-02 + syst_JES_EtaIntercalibration_Stat156: 1.26863890e+00 + syst_JES_EtaIntercalibration_Stat157: 1.22283422e+00 + syst_JES_EtaIntercalibration_Stat158: 1.70931678e-01 + syst_JES_EtaIntercalibration_Stat159: 1.79700435e-05 syst_JES_EtaIntercalibration_Stat16: 0.0 syst_JES_EtaIntercalibration_Stat160: 0.0 syst_JES_EtaIntercalibration_Stat161: 0.0 @@ -12897,17 +12897,17 @@ bins: syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 - syst_JES_EtaIntercalibration_Stat168: 3.4649676405415387e-10 - syst_JES_EtaIntercalibration_Stat169: 0.006889625588520758 + syst_JES_EtaIntercalibration_Stat168: 3.46496764e-10 + syst_JES_EtaIntercalibration_Stat169: 6.88962559e-03 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 0.21567993022068604 - syst_JES_EtaIntercalibration_Stat171: 0.05079364797885657 - syst_JES_EtaIntercalibration_Stat172: 0.004281699662517211 - syst_JES_EtaIntercalibration_Stat173: 0.0068727776044333055 - syst_JES_EtaIntercalibration_Stat174: 0.07670176138785863 - syst_JES_EtaIntercalibration_Stat175: 0.04368408720575491 - syst_JES_EtaIntercalibration_Stat176: 0.0037615278916950756 - syst_JES_EtaIntercalibration_Stat177: 6.299316160383661e-08 + syst_JES_EtaIntercalibration_Stat170: 2.15679930e-01 + syst_JES_EtaIntercalibration_Stat171: 5.07936480e-02 + syst_JES_EtaIntercalibration_Stat172: 4.28169966e-03 + syst_JES_EtaIntercalibration_Stat173: 6.87277760e-03 + syst_JES_EtaIntercalibration_Stat174: 7.67017614e-02 + syst_JES_EtaIntercalibration_Stat175: 4.36840872e-02 + syst_JES_EtaIntercalibration_Stat176: 3.76152789e-03 + syst_JES_EtaIntercalibration_Stat177: 6.29931616e-08 syst_JES_EtaIntercalibration_Stat178: 0.0 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 @@ -12916,17 +12916,17 @@ bins: syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 syst_JES_EtaIntercalibration_Stat184: 0.0 - syst_JES_EtaIntercalibration_Stat185: 3.4140453467990142e-15 - syst_JES_EtaIntercalibration_Stat186: 1.112985835489383e-05 - syst_JES_EtaIntercalibration_Stat187: 0.005878615206832302 - syst_JES_EtaIntercalibration_Stat188: 0.004649807173421281 - syst_JES_EtaIntercalibration_Stat189: 0.00018086188821307822 + syst_JES_EtaIntercalibration_Stat185: 3.41404535e-15 + syst_JES_EtaIntercalibration_Stat186: 1.11298584e-05 + syst_JES_EtaIntercalibration_Stat187: 5.87861521e-03 + syst_JES_EtaIntercalibration_Stat188: 4.64980717e-03 + syst_JES_EtaIntercalibration_Stat189: 1.80861888e-04 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 1.1624632929688577e-05 - syst_JES_EtaIntercalibration_Stat191: 0.004087626939924925 - syst_JES_EtaIntercalibration_Stat192: 0.005051579035311633 - syst_JES_EtaIntercalibration_Stat193: 0.0001176149100879646 - syst_JES_EtaIntercalibration_Stat194: 2.7435684791891017e-11 + syst_JES_EtaIntercalibration_Stat190: 1.16246329e-05 + syst_JES_EtaIntercalibration_Stat191: 4.08762694e-03 + syst_JES_EtaIntercalibration_Stat192: 5.05157904e-03 + syst_JES_EtaIntercalibration_Stat193: 1.17614910e-04 + syst_JES_EtaIntercalibration_Stat194: 2.74356848e-11 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 syst_JES_EtaIntercalibration_Stat197: 0.0 @@ -12935,41 +12935,41 @@ bins: syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 - syst_JES_EtaIntercalibration_Stat201: 2.6103979605224946e-08 - syst_JES_EtaIntercalibration_Stat202: 1.6849953612695795e-05 - syst_JES_EtaIntercalibration_Stat203: 1.3806737014950347e-05 - syst_JES_EtaIntercalibration_Stat204: 3.5438275092379995e-08 - syst_JES_EtaIntercalibration_Stat205: 2.3070916756817447e-11 - syst_JES_EtaIntercalibration_Stat206: 1.3749319983184623e-05 - syst_JES_EtaIntercalibration_Stat207: 1.2907430757125912e-05 - syst_JES_EtaIntercalibration_Stat208: 1.1919973657689014e-14 - syst_JES_EtaIntercalibration_Stat209: 1.868016791994906e-27 + syst_JES_EtaIntercalibration_Stat201: 2.61039796e-08 + syst_JES_EtaIntercalibration_Stat202: 1.68499536e-05 + syst_JES_EtaIntercalibration_Stat203: 1.38067370e-05 + syst_JES_EtaIntercalibration_Stat204: 3.54382751e-08 + syst_JES_EtaIntercalibration_Stat205: 2.30709168e-11 + syst_JES_EtaIntercalibration_Stat206: 1.37493200e-05 + syst_JES_EtaIntercalibration_Stat207: 1.29074308e-05 + syst_JES_EtaIntercalibration_Stat208: 1.19199737e-14 + syst_JES_EtaIntercalibration_Stat209: 1.86801679e-27 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 syst_JES_EtaIntercalibration_Stat211: 0.0 syst_JES_EtaIntercalibration_Stat212: 0.0 syst_JES_EtaIntercalibration_Stat213: 0.0 - syst_JES_EtaIntercalibration_Stat214: 2.3841679440836986e-27 - syst_JES_EtaIntercalibration_Stat215: 1.262665038720779e-15 - syst_JES_EtaIntercalibration_Stat216: 1.483780228841185e-15 - syst_JES_EtaIntercalibration_Stat217: 1.1732912170471574e-26 - syst_JES_EtaIntercalibration_Stat218: 4.471153766087675e-35 - syst_JES_EtaIntercalibration_Stat219: 1.401261463907834e-15 + syst_JES_EtaIntercalibration_Stat214: 2.38416794e-27 + syst_JES_EtaIntercalibration_Stat215: 1.26266504e-15 + syst_JES_EtaIntercalibration_Stat216: 1.48378023e-15 + syst_JES_EtaIntercalibration_Stat217: 1.17329122e-26 + syst_JES_EtaIntercalibration_Stat218: 4.47115377e-35 + syst_JES_EtaIntercalibration_Stat219: 1.40126146e-15 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 2.1148618749223314e-15 - syst_JES_EtaIntercalibration_Stat221: 4.230534741232925e-21 - syst_JES_EtaIntercalibration_Stat222: 1.1902653149613324e-35 + syst_JES_EtaIntercalibration_Stat220: 2.11486187e-15 + syst_JES_EtaIntercalibration_Stat221: 4.23053474e-21 + syst_JES_EtaIntercalibration_Stat222: 1.19026531e-35 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 - syst_JES_EtaIntercalibration_Stat227: 3.823082718173909e-36 - syst_JES_EtaIntercalibration_Stat228: 4.376414590735206e-36 + syst_JES_EtaIntercalibration_Stat227: 3.82308272e-36 + syst_JES_EtaIntercalibration_Stat228: 4.37641459e-36 syst_JES_EtaIntercalibration_Stat229: 0.0 syst_JES_EtaIntercalibration_Stat23: 0.0 syst_JES_EtaIntercalibration_Stat230: 0.0 - syst_JES_EtaIntercalibration_Stat231: 2.8345011465864675e-36 - syst_JES_EtaIntercalibration_Stat232: 4.052998889711173e-36 + syst_JES_EtaIntercalibration_Stat231: 2.83450115e-36 + syst_JES_EtaIntercalibration_Stat232: 4.05299889e-36 syst_JES_EtaIntercalibration_Stat233: 0.0 syst_JES_EtaIntercalibration_Stat234: 0.0 syst_JES_EtaIntercalibration_Stat235: 0.0 @@ -12987,17 +12987,17 @@ bins: syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 syst_JES_EtaIntercalibration_Stat27: 0.0 - syst_JES_EtaIntercalibration_Stat28: 0.008997137919916532 - syst_JES_EtaIntercalibration_Stat29: 0.029031294752387464 + syst_JES_EtaIntercalibration_Stat28: 8.99713792e-03 + syst_JES_EtaIntercalibration_Stat29: 2.90312948e-02 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 0.2940511307579007 - syst_JES_EtaIntercalibration_Stat31: 0.24970418498695612 - syst_JES_EtaIntercalibration_Stat32: 0.028929567089744014 - syst_JES_EtaIntercalibration_Stat33: 0.02600817415736829 - syst_JES_EtaIntercalibration_Stat34: 0.4536774537873796 - syst_JES_EtaIntercalibration_Stat35: 0.20433438740212082 - syst_JES_EtaIntercalibration_Stat36: 0.05062412344920157 - syst_JES_EtaIntercalibration_Stat37: 0.006567070636897398 + syst_JES_EtaIntercalibration_Stat30: 2.94051131e-01 + syst_JES_EtaIntercalibration_Stat31: 2.49704185e-01 + syst_JES_EtaIntercalibration_Stat32: 2.89295671e-02 + syst_JES_EtaIntercalibration_Stat33: 2.60081742e-02 + syst_JES_EtaIntercalibration_Stat34: 4.53677454e-01 + syst_JES_EtaIntercalibration_Stat35: 2.04334387e-01 + syst_JES_EtaIntercalibration_Stat36: 5.06241234e-02 + syst_JES_EtaIntercalibration_Stat37: 6.56707064e-03 syst_JES_EtaIntercalibration_Stat38: 0.0 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 @@ -13012,20 +13012,20 @@ bins: syst_JES_EtaIntercalibration_Stat48: 0.0 syst_JES_EtaIntercalibration_Stat49: 0.0 syst_JES_EtaIntercalibration_Stat5: 0.0 - syst_JES_EtaIntercalibration_Stat50: 0.009114051349427433 - syst_JES_EtaIntercalibration_Stat51: 0.18333308232558573 - syst_JES_EtaIntercalibration_Stat52: 0.6910878525918395 - syst_JES_EtaIntercalibration_Stat53: 0.9784886547630484 - syst_JES_EtaIntercalibration_Stat54: 0.07012369553153912 - syst_JES_EtaIntercalibration_Stat55: 0.17480692205973994 - syst_JES_EtaIntercalibration_Stat56: 0.8916358715866023 - syst_JES_EtaIntercalibration_Stat57: 1.048785025636808 - syst_JES_EtaIntercalibration_Stat58: 0.07844378942911924 - syst_JES_EtaIntercalibration_Stat59: 0.018318596746203022 + syst_JES_EtaIntercalibration_Stat50: 9.11405135e-03 + syst_JES_EtaIntercalibration_Stat51: 1.83333082e-01 + syst_JES_EtaIntercalibration_Stat52: 6.91087853e-01 + syst_JES_EtaIntercalibration_Stat53: 9.78488655e-01 + syst_JES_EtaIntercalibration_Stat54: 7.01236955e-02 + syst_JES_EtaIntercalibration_Stat55: 1.74806922e-01 + syst_JES_EtaIntercalibration_Stat56: 8.91635872e-01 + syst_JES_EtaIntercalibration_Stat57: 1.04878503e+00 + syst_JES_EtaIntercalibration_Stat58: 7.84437894e-02 + syst_JES_EtaIntercalibration_Stat59: 1.83185967e-02 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 0.19944565049155621 - syst_JES_EtaIntercalibration_Stat62: 0.19944565049155621 + syst_JES_EtaIntercalibration_Stat61: 1.99445650e-01 + syst_JES_EtaIntercalibration_Stat62: 1.99445650e-01 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 @@ -13033,70 +13033,70 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 0.008997137919916532 + syst_JES_EtaIntercalibration_Stat7: 8.99713792e-03 syst_JES_EtaIntercalibration_Stat70: 0.0 syst_JES_EtaIntercalibration_Stat71: 0.0 - syst_JES_EtaIntercalibration_Stat72: 0.05680260623422133 - syst_JES_EtaIntercalibration_Stat73: 0.7767707576885217 - syst_JES_EtaIntercalibration_Stat74: 6.2777848003893855 - syst_JES_EtaIntercalibration_Stat75: 5.155686763177142 - syst_JES_EtaIntercalibration_Stat76: 0.4165563947414563 - syst_JES_EtaIntercalibration_Stat77: 0.8303152819863067 - syst_JES_EtaIntercalibration_Stat78: 6.368786756518073 - syst_JES_EtaIntercalibration_Stat79: 5.328472295133006 - syst_JES_EtaIntercalibration_Stat8: 0.08499526280917073 - syst_JES_EtaIntercalibration_Stat80: 0.6750643136027855 - syst_JES_EtaIntercalibration_Stat81: 0.02935826118829247 - syst_JES_EtaIntercalibration_Stat82: 0.19944565049155621 - syst_JES_EtaIntercalibration_Stat83: 0.19944565049155621 - syst_JES_EtaIntercalibration_Stat84: 0.19944565049155621 + syst_JES_EtaIntercalibration_Stat72: 5.68026062e-02 + syst_JES_EtaIntercalibration_Stat73: 7.76770758e-01 + syst_JES_EtaIntercalibration_Stat74: 6.27778480e+00 + syst_JES_EtaIntercalibration_Stat75: 5.15568676e+00 + syst_JES_EtaIntercalibration_Stat76: 4.16556395e-01 + syst_JES_EtaIntercalibration_Stat77: 8.30315282e-01 + syst_JES_EtaIntercalibration_Stat78: 6.36878676e+00 + syst_JES_EtaIntercalibration_Stat79: 5.32847230e+00 + syst_JES_EtaIntercalibration_Stat8: 8.49952628e-02 + syst_JES_EtaIntercalibration_Stat80: 6.75064314e-01 + syst_JES_EtaIntercalibration_Stat81: 2.93582612e-02 + syst_JES_EtaIntercalibration_Stat82: 1.99445650e-01 + syst_JES_EtaIntercalibration_Stat83: 1.99445650e-01 + syst_JES_EtaIntercalibration_Stat84: 1.99445650e-01 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 syst_JES_EtaIntercalibration_Stat89: 0.0 - syst_JES_EtaIntercalibration_Stat9: 0.022522988256445903 + syst_JES_EtaIntercalibration_Stat9: 2.25229883e-02 syst_JES_EtaIntercalibration_Stat90: 0.0 syst_JES_EtaIntercalibration_Stat91: 0.0 syst_JES_EtaIntercalibration_Stat92: 0.0 - syst_JES_EtaIntercalibration_Stat93: 0.058309490436806256 - syst_JES_EtaIntercalibration_Stat94: 0.9684515101438997 - syst_JES_EtaIntercalibration_Stat95: 9.200832937837747 - syst_JES_EtaIntercalibration_Stat96: 8.090120317399487 - syst_JES_EtaIntercalibration_Stat97: 0.708995966138031 - syst_JES_EtaIntercalibration_Stat98: 0.8824361889111302 - syst_JES_EtaIntercalibration_Stat99: 7.607781345438365 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0010880601393650079 - syst_JES_Flavour_Comp: 8.750757281515696 - syst_JES_Flavour_Response: 182.28873381259746 - syst_JES_Gjet_Generator: 114.41803208847807 - syst_JES_Gjet_OOC: 71.48276640386828 - syst_JES_Gjet_Purity: 30.205408042269514 - syst_JES_Gjet_Stat1: 4.380060958479916e-05 - syst_JES_Gjet_Stat10: 1.2029407425139444 - syst_JES_Gjet_Stat11: 0.6000227891505455 - syst_JES_Gjet_Stat12: 0.08903268345388675 - syst_JES_Gjet_Stat13: 0.000992404659148676 - syst_JES_Gjet_Stat14: 8.042777926372714e-10 - syst_JES_Gjet_Stat15: 4.305012273514663e-26 + syst_JES_EtaIntercalibration_Stat93: 5.83094904e-02 + syst_JES_EtaIntercalibration_Stat94: 9.68451510e-01 + syst_JES_EtaIntercalibration_Stat95: 9.20083294e+00 + syst_JES_EtaIntercalibration_Stat96: 8.09012032e+00 + syst_JES_EtaIntercalibration_Stat97: 7.08995966e-01 + syst_JES_EtaIntercalibration_Stat98: 8.82436189e-01 + syst_JES_EtaIntercalibration_Stat99: 7.60778135e+00 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.08806014e-03 + syst_JES_Flavour_Comp: 8.75075728e+00 + syst_JES_Flavour_Response: 1.82288734e+02 + syst_JES_Gjet_Generator: 1.14418032e+02 + syst_JES_Gjet_OOC: 7.14827664e+01 + syst_JES_Gjet_Purity: 3.02054080e+01 + syst_JES_Gjet_Stat1: 4.38006096e-05 + syst_JES_Gjet_Stat10: 1.20294074e+00 + syst_JES_Gjet_Stat11: 6.00022789e-01 + syst_JES_Gjet_Stat12: 8.90326835e-02 + syst_JES_Gjet_Stat13: 9.92404659e-04 + syst_JES_Gjet_Stat14: 8.04277793e-10 + syst_JES_Gjet_Stat15: 4.30501227e-26 syst_JES_Gjet_Stat2: 0.0 - syst_JES_Gjet_Stat3: 1.0093526081107633 - syst_JES_Gjet_Stat4: 1.5522554815493488 - syst_JES_Gjet_Stat5: 2.3382957469062804 - syst_JES_Gjet_Stat6: 7.156610982161878 - syst_JES_Gjet_Stat7: 11.16070974445622 - syst_JES_Gjet_Stat8: 3.5868714431939153 - syst_JES_Gjet_Stat9: 1.008314448721231 - syst_JES_Gjet_Veto: 22.18677759387334 - syst_JES_Gjet_dPhi: 13.198777320267206 - syst_JES_LArESZee: 73.1004297182992 - syst_JES_LArEsmear: 7.059278575038671 - syst_JES_LAr_JVT: 12.587643494713378 - syst_JES_MJB_Alpha: 6.80349557213055e-26 - syst_JES_MJB_Asym: 0.0028545169468756006 - syst_JES_MJB_Beta: 7.081489726745354e-06 - syst_JES_MJB_Fragmentation: 0.0041955527347418715 - syst_JES_MJB_Stat1: 0.0015819189889182065 + syst_JES_Gjet_Stat3: 1.00935261e+00 + syst_JES_Gjet_Stat4: 1.55225548e+00 + syst_JES_Gjet_Stat5: 2.33829575e+00 + syst_JES_Gjet_Stat6: 7.15661098e+00 + syst_JES_Gjet_Stat7: 1.11607097e+01 + syst_JES_Gjet_Stat8: 3.58687144e+00 + syst_JES_Gjet_Stat9: 1.00831445e+00 + syst_JES_Gjet_Veto: 2.21867776e+01 + syst_JES_Gjet_dPhi: 1.31987773e+01 + syst_JES_LArESZee: 7.31004297e+01 + syst_JES_LArEsmear: 7.05927858e+00 + syst_JES_LAr_JVT: 1.25876435e+01 + syst_JES_MJB_Alpha: 6.80349557e-26 + syst_JES_MJB_Asym: 2.85451695e-03 + syst_JES_MJB_Beta: 7.08148973e-06 + syst_JES_MJB_Fragmentation: 4.19555273e-03 + syst_JES_MJB_Stat1: 1.58191899e-03 syst_JES_MJB_Stat10: 0.0 syst_JES_MJB_Stat11: 0.0 syst_JES_MJB_Stat12: 0.0 @@ -13104,147 +13104,147 @@ bins: syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 0.0001503298235592908 - syst_JES_MJB_Stat3: 6.843332758449495e-06 - syst_JES_MJB_Stat4: 3.2709817929552754e-14 - syst_JES_MJB_Stat5: 3.663287458008175e-21 - syst_JES_MJB_Stat6: 1.3163586137523467e-26 + syst_JES_MJB_Stat2: 1.50329824e-04 + syst_JES_MJB_Stat3: 6.84333276e-06 + syst_JES_MJB_Stat4: 3.27098179e-14 + syst_JES_MJB_Stat5: 3.66328746e-21 + syst_JES_MJB_Stat6: 1.31635861e-26 syst_JES_MJB_Stat7: 0.0 syst_JES_MJB_Stat8: 0.0 syst_JES_MJB_Stat9: 0.0 - syst_JES_MJB_Threshold: 0.002926894770913365 - syst_JES_Pileup_MuOffset: 6.216731215035761e-25 - syst_JES_Pileup_NPVOffset: 8.968586176204141 - syst_JES_Pileup_Pt_term: 21.40659886577034 - syst_JES_Pileup_Rho_topology: 61.687377987721284 + syst_JES_MJB_Threshold: 2.92689477e-03 + syst_JES_Pileup_MuOffset: 6.21673122e-25 + syst_JES_Pileup_NPVOffset: 8.96858618e+00 + syst_JES_Pileup_Pt_term: 2.14065989e+01 + syst_JES_Pileup_Rho_topology: 6.16873780e+01 syst_JES_PunchThrough_MC15: 0.0 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 105.00991002162606 - syst_JES_Zjet_MuScale: 7.4572365525038835 - syst_JES_Zjet_MuSmearID: 1.1759241078828173 - syst_JES_Zjet_MuSmearMS: 2.9089226098334073 - syst_JES_Zjet_OOC: 65.37309258402878 - syst_JES_Zjet_Stat1: 1.5861049776102463 - syst_JES_Zjet_Stat10: 6.491315178760002 - syst_JES_Zjet_Stat11: 1.46201478446697 - syst_JES_Zjet_Stat12: 1.2451225672599464 - syst_JES_Zjet_Stat13: 0.006938923691755083 - syst_JES_Zjet_Stat2: 0.0759738991908899 - syst_JES_Zjet_Stat3: 0.5785049697280051 - syst_JES_Zjet_Stat4: 1.0801934687823291 - syst_JES_Zjet_Stat5: 1.3618416648054208 - syst_JES_Zjet_Stat6: 2.772107140786589 - syst_JES_Zjet_Stat7: 4.63987370517776 - syst_JES_Zjet_Stat8: 8.489028610506622 - syst_JES_Zjet_Stat9: 12.043056215097561 - syst_JES_Zjet_Veto: 9.434137374450302 - syst_JES_Zjet_dPhi: 14.706062525366876 + syst_JES_Zjet_MC: 1.05009910e+02 + syst_JES_Zjet_MuScale: 7.45723655e+00 + syst_JES_Zjet_MuSmearID: 1.17592411e+00 + syst_JES_Zjet_MuSmearMS: 2.90892261e+00 + syst_JES_Zjet_OOC: 6.53730926e+01 + syst_JES_Zjet_Stat1: 1.58610498e+00 + syst_JES_Zjet_Stat10: 6.49131518e+00 + syst_JES_Zjet_Stat11: 1.46201478e+00 + syst_JES_Zjet_Stat12: 1.24512257e+00 + syst_JES_Zjet_Stat13: 6.93892369e-03 + syst_JES_Zjet_Stat2: 7.59738992e-02 + syst_JES_Zjet_Stat3: 5.78504970e-01 + syst_JES_Zjet_Stat4: 1.08019347e+00 + syst_JES_Zjet_Stat5: 1.36184166e+00 + syst_JES_Zjet_Stat6: 2.77210714e+00 + syst_JES_Zjet_Stat7: 4.63987371e+00 + syst_JES_Zjet_Stat8: 8.48902861e+00 + syst_JES_Zjet_Stat9: 1.20430562e+01 + syst_JES_Zjet_Veto: 9.43413737e+00 + syst_JES_Zjet_dPhi: 1.47060625e+01 syst_PRW: 4.212 syst_Unfolding_bias: 9.307 - syst_cleaning: 46.740257067649935 + syst_cleaning: 4.67402571e+01 syst_lumi: 114.466 - stat: 18.381 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 38.54028286092358 - syst_JER_NP1: 5.873125637171402 - syst_JER_NP2: 7.374027444348171 - syst_JER_NP3: 5.171909391124326 - syst_JER_NP4: 6.887900315045217 - syst_JER_NP5: 3.400337263787226 + syst_JER_NP0: 3.85402829e+01 + syst_JER_NP1: 5.87312564e+00 + syst_JER_NP2: 7.37402744e+00 + syst_JER_NP3: 5.17190939e+00 + syst_JER_NP4: 6.88790032e+00 + syst_JER_NP5: 3.40033726e+00 syst_JER_NP6: 0.0 - syst_JER_NP7: 1.702281630635777 - syst_JER_NP8: 3.8407481042109497 - syst_JES_EtaIntercalibration_Modelling: 17.105328848052 - syst_JES_EtaIntercalibration_NonClosure: 0.00010823585496497915 + syst_JER_NP7: 1.70228163e+00 + syst_JER_NP8: 3.84074810e+00 + syst_JES_EtaIntercalibration_Modelling: 1.71053288e+01 + syst_JES_EtaIntercalibration_NonClosure: 1.08235855e-04 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 2.659511374294158 - syst_JES_EtaIntercalibration_Stat101: 0.24906996507005816 - syst_JES_EtaIntercalibration_Stat102: 0.006353053532554247 - syst_JES_EtaIntercalibration_Stat103: 0.053710895542710885 - syst_JES_EtaIntercalibration_Stat104: 0.053710895542710885 - syst_JES_EtaIntercalibration_Stat105: 0.053710895542710885 + syst_JES_EtaIntercalibration_Stat100: 2.65951137e+00 + syst_JES_EtaIntercalibration_Stat101: 2.49069965e-01 + syst_JES_EtaIntercalibration_Stat102: 6.35305353e-03 + syst_JES_EtaIntercalibration_Stat103: 5.37108955e-02 + syst_JES_EtaIntercalibration_Stat104: 5.37108955e-02 + syst_JES_EtaIntercalibration_Stat105: 5.37108955e-02 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 6.685716117215867e-10 - syst_JES_EtaIntercalibration_Stat111: 6.685716117215867e-10 + syst_JES_EtaIntercalibration_Stat110: 6.68571612e-10 + syst_JES_EtaIntercalibration_Stat111: 6.68571612e-10 syst_JES_EtaIntercalibration_Stat112: 0.0 - syst_JES_EtaIntercalibration_Stat113: 0.025726225685086417 - syst_JES_EtaIntercalibration_Stat114: 0.45277724103581 - syst_JES_EtaIntercalibration_Stat115: 7.4485872989446795 - syst_JES_EtaIntercalibration_Stat116: 6.361281376420949 - syst_JES_EtaIntercalibration_Stat117: 0.4098175783199154 - syst_JES_EtaIntercalibration_Stat118: 0.3196929574998486 - syst_JES_EtaIntercalibration_Stat119: 6.021320951419215 - syst_JES_EtaIntercalibration_Stat12: 0.013828869910444599 - syst_JES_EtaIntercalibration_Stat120: 7.67876780479785 - syst_JES_EtaIntercalibration_Stat121: 0.7049869467408598 - syst_JES_EtaIntercalibration_Stat122: 0.008496783200129329 - syst_JES_EtaIntercalibration_Stat123: 0.053710895542710885 - syst_JES_EtaIntercalibration_Stat124: 0.053710895542710885 - syst_JES_EtaIntercalibration_Stat125: 0.053710895542710885 + syst_JES_EtaIntercalibration_Stat113: 2.57262257e-02 + syst_JES_EtaIntercalibration_Stat114: 4.52777241e-01 + syst_JES_EtaIntercalibration_Stat115: 7.44858730e+00 + syst_JES_EtaIntercalibration_Stat116: 6.36128138e+00 + syst_JES_EtaIntercalibration_Stat117: 4.09817578e-01 + syst_JES_EtaIntercalibration_Stat118: 3.19692957e-01 + syst_JES_EtaIntercalibration_Stat119: 6.02132095e+00 + syst_JES_EtaIntercalibration_Stat12: 1.38288699e-02 + syst_JES_EtaIntercalibration_Stat120: 7.67876780e+00 + syst_JES_EtaIntercalibration_Stat121: 7.04986947e-01 + syst_JES_EtaIntercalibration_Stat122: 8.49678320e-03 + syst_JES_EtaIntercalibration_Stat123: 5.37108955e-02 + syst_JES_EtaIntercalibration_Stat124: 5.37108955e-02 + syst_JES_EtaIntercalibration_Stat125: 5.37108955e-02 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 2.3850339620223438e-32 - syst_JES_EtaIntercalibration_Stat129: 6.685716117215867e-10 - syst_JES_EtaIntercalibration_Stat13: 0.0289029029683871 - syst_JES_EtaIntercalibration_Stat130: 6.685716117215867e-10 - syst_JES_EtaIntercalibration_Stat131: 0.002187580169959492 - syst_JES_EtaIntercalibration_Stat132: 0.05904136939695335 - syst_JES_EtaIntercalibration_Stat133: 0.5653676149197087 - syst_JES_EtaIntercalibration_Stat134: 4.064418246194651 - syst_JES_EtaIntercalibration_Stat135: 3.0753218937210463 - syst_JES_EtaIntercalibration_Stat136: 0.3819358453981506 - syst_JES_EtaIntercalibration_Stat137: 0.2705140800402079 - syst_JES_EtaIntercalibration_Stat138: 2.6667899711075864 - syst_JES_EtaIntercalibration_Stat139: 2.7510348961799815 - syst_JES_EtaIntercalibration_Stat14: 0.005335582512715926 - syst_JES_EtaIntercalibration_Stat140: 0.4291419679721386 - syst_JES_EtaIntercalibration_Stat141: 0.0029349600674158337 + syst_JES_EtaIntercalibration_Stat128: 2.38503396e-32 + syst_JES_EtaIntercalibration_Stat129: 6.68571612e-10 + syst_JES_EtaIntercalibration_Stat13: 2.89029030e-02 + syst_JES_EtaIntercalibration_Stat130: 6.68571612e-10 + syst_JES_EtaIntercalibration_Stat131: 2.18758017e-03 + syst_JES_EtaIntercalibration_Stat132: 5.90413694e-02 + syst_JES_EtaIntercalibration_Stat133: 5.65367615e-01 + syst_JES_EtaIntercalibration_Stat134: 4.06441825e+00 + syst_JES_EtaIntercalibration_Stat135: 3.07532189e+00 + syst_JES_EtaIntercalibration_Stat136: 3.81935845e-01 + syst_JES_EtaIntercalibration_Stat137: 2.70514080e-01 + syst_JES_EtaIntercalibration_Stat138: 2.66678997e+00 + syst_JES_EtaIntercalibration_Stat139: 2.75103490e+00 + syst_JES_EtaIntercalibration_Stat14: 5.33558251e-03 + syst_JES_EtaIntercalibration_Stat140: 4.29141968e-01 + syst_JES_EtaIntercalibration_Stat141: 2.93496007e-03 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 0.053710895542710885 - syst_JES_EtaIntercalibration_Stat144: 0.053710895542710885 + syst_JES_EtaIntercalibration_Stat143: 5.37108955e-02 + syst_JES_EtaIntercalibration_Stat144: 5.37108955e-02 syst_JES_EtaIntercalibration_Stat145: 0.0 - syst_JES_EtaIntercalibration_Stat146: 2.3850339620223438e-32 - syst_JES_EtaIntercalibration_Stat147: 6.685716117215867e-10 + syst_JES_EtaIntercalibration_Stat146: 2.38503396e-32 + syst_JES_EtaIntercalibration_Stat147: 6.68571612e-10 syst_JES_EtaIntercalibration_Stat148: 0.0 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 0.01286910379776785 - syst_JES_EtaIntercalibration_Stat151: 0.11654766020817407 - syst_JES_EtaIntercalibration_Stat152: 0.7193496090219276 - syst_JES_EtaIntercalibration_Stat153: 0.536066199270202 - syst_JES_EtaIntercalibration_Stat154: 0.033867998446173345 - syst_JES_EtaIntercalibration_Stat155: 0.05605183672280507 - syst_JES_EtaIntercalibration_Stat156: 0.8443875576416319 - syst_JES_EtaIntercalibration_Stat157: 0.907346036526308 - syst_JES_EtaIntercalibration_Stat158: 0.09031183020512873 - syst_JES_EtaIntercalibration_Stat159: 0.0003391373766755572 + syst_JES_EtaIntercalibration_Stat150: 1.28691038e-02 + syst_JES_EtaIntercalibration_Stat151: 1.16547660e-01 + syst_JES_EtaIntercalibration_Stat152: 7.19349609e-01 + syst_JES_EtaIntercalibration_Stat153: 5.36066199e-01 + syst_JES_EtaIntercalibration_Stat154: 3.38679984e-02 + syst_JES_EtaIntercalibration_Stat155: 5.60518367e-02 + syst_JES_EtaIntercalibration_Stat156: 8.44387558e-01 + syst_JES_EtaIntercalibration_Stat157: 9.07346037e-01 + syst_JES_EtaIntercalibration_Stat158: 9.03118302e-02 + syst_JES_EtaIntercalibration_Stat159: 3.39137377e-04 syst_JES_EtaIntercalibration_Stat16: 0.0 syst_JES_EtaIntercalibration_Stat160: 0.0 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 - syst_JES_EtaIntercalibration_Stat164: 2.3850339620223438e-32 + syst_JES_EtaIntercalibration_Stat164: 2.38503396e-32 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 - syst_JES_EtaIntercalibration_Stat168: 7.684243407779323e-07 - syst_JES_EtaIntercalibration_Stat169: 0.019915368437465573 + syst_JES_EtaIntercalibration_Stat168: 7.68424341e-07 + syst_JES_EtaIntercalibration_Stat169: 1.99153684e-02 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 0.3043815204640387 - syst_JES_EtaIntercalibration_Stat171: 0.1944185369248519 - syst_JES_EtaIntercalibration_Stat172: 0.011728989758286942 - syst_JES_EtaIntercalibration_Stat173: 0.01833375779811657 - syst_JES_EtaIntercalibration_Stat174: 0.1690642111743346 - syst_JES_EtaIntercalibration_Stat175: 0.1866944763510694 - syst_JES_EtaIntercalibration_Stat176: 0.011584069435220078 - syst_JES_EtaIntercalibration_Stat177: 9.953280666127124e-06 + syst_JES_EtaIntercalibration_Stat170: 3.04381520e-01 + syst_JES_EtaIntercalibration_Stat171: 1.94418537e-01 + syst_JES_EtaIntercalibration_Stat172: 1.17289898e-02 + syst_JES_EtaIntercalibration_Stat173: 1.83337578e-02 + syst_JES_EtaIntercalibration_Stat174: 1.69064211e-01 + syst_JES_EtaIntercalibration_Stat175: 1.86694476e-01 + syst_JES_EtaIntercalibration_Stat176: 1.15840694e-02 + syst_JES_EtaIntercalibration_Stat177: 9.95328067e-06 syst_JES_EtaIntercalibration_Stat178: 0.0 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 @@ -13253,17 +13253,17 @@ bins: syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 syst_JES_EtaIntercalibration_Stat184: 0.0 - syst_JES_EtaIntercalibration_Stat185: 1.7372469599915841e-10 - syst_JES_EtaIntercalibration_Stat186: 0.00017813813404209667 - syst_JES_EtaIntercalibration_Stat187: 0.0027889833326859453 - syst_JES_EtaIntercalibration_Stat188: 0.0025050303531095187 - syst_JES_EtaIntercalibration_Stat189: 0.0004130082898683754 + syst_JES_EtaIntercalibration_Stat185: 1.73724696e-10 + syst_JES_EtaIntercalibration_Stat186: 1.78138134e-04 + syst_JES_EtaIntercalibration_Stat187: 2.78898333e-03 + syst_JES_EtaIntercalibration_Stat188: 2.50503035e-03 + syst_JES_EtaIntercalibration_Stat189: 4.13008290e-04 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 0.00012874732647709622 - syst_JES_EtaIntercalibration_Stat191: 0.0010432414677341002 - syst_JES_EtaIntercalibration_Stat192: 0.006844378934571054 - syst_JES_EtaIntercalibration_Stat193: 0.0015276688122757497 - syst_JES_EtaIntercalibration_Stat194: 6.102881020468939e-08 + syst_JES_EtaIntercalibration_Stat190: 1.28747326e-04 + syst_JES_EtaIntercalibration_Stat191: 1.04324147e-03 + syst_JES_EtaIntercalibration_Stat192: 6.84437893e-03 + syst_JES_EtaIntercalibration_Stat193: 1.52766881e-03 + syst_JES_EtaIntercalibration_Stat194: 6.10288102e-08 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 syst_JES_EtaIntercalibration_Stat197: 0.0 @@ -13272,42 +13272,42 @@ bins: syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 - syst_JES_EtaIntercalibration_Stat201: 2.9572490032968137e-06 - syst_JES_EtaIntercalibration_Stat202: 0.0003273489030071737 - syst_JES_EtaIntercalibration_Stat203: 0.0002689565392400787 - syst_JES_EtaIntercalibration_Stat204: 5.704904426219601e-06 - syst_JES_EtaIntercalibration_Stat205: 5.10781783152062e-08 - syst_JES_EtaIntercalibration_Stat206: 0.00026503484676547727 - syst_JES_EtaIntercalibration_Stat207: 0.00024380717790910094 - syst_JES_EtaIntercalibration_Stat208: 6.069106029721346e-10 - syst_JES_EtaIntercalibration_Stat209: 3.262316497767257e-19 + syst_JES_EtaIntercalibration_Stat201: 2.95724900e-06 + syst_JES_EtaIntercalibration_Stat202: 3.27348903e-04 + syst_JES_EtaIntercalibration_Stat203: 2.68956539e-04 + syst_JES_EtaIntercalibration_Stat204: 5.70490443e-06 + syst_JES_EtaIntercalibration_Stat205: 5.10781783e-08 + syst_JES_EtaIntercalibration_Stat206: 2.65034847e-04 + syst_JES_EtaIntercalibration_Stat207: 2.43807178e-04 + syst_JES_EtaIntercalibration_Stat208: 6.06910603e-10 + syst_JES_EtaIntercalibration_Stat209: 3.26231650e-19 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 syst_JES_EtaIntercalibration_Stat211: 0.0 syst_JES_EtaIntercalibration_Stat212: 0.0 syst_JES_EtaIntercalibration_Stat213: 0.0 - syst_JES_EtaIntercalibration_Stat214: 4.162986370838158e-19 - syst_JES_EtaIntercalibration_Stat215: 6.424176498851073e-11 - syst_JES_EtaIntercalibration_Stat216: 7.543028354049851e-11 - syst_JES_EtaIntercalibration_Stat217: 2.049016105353949e-18 - syst_JES_EtaIntercalibration_Stat218: 1.3507108795001245e-24 - syst_JES_EtaIntercalibration_Stat219: 7.13395153592138e-11 + syst_JES_EtaIntercalibration_Stat214: 4.16298637e-19 + syst_JES_EtaIntercalibration_Stat215: 6.42417650e-11 + syst_JES_EtaIntercalibration_Stat216: 7.54302835e-11 + syst_JES_EtaIntercalibration_Stat217: 2.04901611e-18 + syst_JES_EtaIntercalibration_Stat218: 1.35071088e-24 + syst_JES_EtaIntercalibration_Stat219: 7.13395154e-11 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 1.0760277075893539e-10 - syst_JES_EtaIntercalibration_Stat221: 8.550381207363119e-15 - syst_JES_EtaIntercalibration_Stat222: 3.594871451109205e-25 + syst_JES_EtaIntercalibration_Stat220: 1.07602771e-10 + syst_JES_EtaIntercalibration_Stat221: 8.55038121e-15 + syst_JES_EtaIntercalibration_Stat222: 3.59487145e-25 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 syst_JES_EtaIntercalibration_Stat225: 0.0 - syst_JES_EtaIntercalibration_Stat226: 3.9138e-42 - syst_JES_EtaIntercalibration_Stat227: 1.1546635473158403e-25 - syst_JES_EtaIntercalibration_Stat228: 1.321530615422889e-25 + syst_JES_EtaIntercalibration_Stat226: 3.91380000e-42 + syst_JES_EtaIntercalibration_Stat227: 1.15466355e-25 + syst_JES_EtaIntercalibration_Stat228: 1.32153062e-25 syst_JES_EtaIntercalibration_Stat229: 0.0 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 1.356195782326431e-41 - syst_JES_EtaIntercalibration_Stat231: 8.559796862894835e-26 - syst_JES_EtaIntercalibration_Stat232: 1.2240403057089257e-25 - syst_JES_EtaIntercalibration_Stat233: 3.0501414721287934e-41 + syst_JES_EtaIntercalibration_Stat230: 1.35619578e-41 + syst_JES_EtaIntercalibration_Stat231: 8.55979686e-26 + syst_JES_EtaIntercalibration_Stat232: 1.22404031e-25 + syst_JES_EtaIntercalibration_Stat233: 3.05014147e-41 syst_JES_EtaIntercalibration_Stat234: 0.0 syst_JES_EtaIntercalibration_Stat235: 0.0 syst_JES_EtaIntercalibration_Stat236: 0.0 @@ -13324,17 +13324,17 @@ bins: syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 syst_JES_EtaIntercalibration_Stat27: 0.0 - syst_JES_EtaIntercalibration_Stat28: 0.001201263837589395 - syst_JES_EtaIntercalibration_Stat29: 0.012161397617050434 + syst_JES_EtaIntercalibration_Stat28: 1.20126384e-03 + syst_JES_EtaIntercalibration_Stat29: 1.21613976e-02 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 0.08672689721188001 - syst_JES_EtaIntercalibration_Stat31: 0.0783648050785555 - syst_JES_EtaIntercalibration_Stat32: 0.004797261380204335 - syst_JES_EtaIntercalibration_Stat33: 0.025562523193143512 - syst_JES_EtaIntercalibration_Stat34: 0.12974151947237245 - syst_JES_EtaIntercalibration_Stat35: 0.02955475088712473 - syst_JES_EtaIntercalibration_Stat36: 0.006950073003213707 - syst_JES_EtaIntercalibration_Stat37: 0.0008768507213317441 + syst_JES_EtaIntercalibration_Stat30: 8.67268972e-02 + syst_JES_EtaIntercalibration_Stat31: 7.83648051e-02 + syst_JES_EtaIntercalibration_Stat32: 4.79726138e-03 + syst_JES_EtaIntercalibration_Stat33: 2.55625232e-02 + syst_JES_EtaIntercalibration_Stat34: 1.29741519e-01 + syst_JES_EtaIntercalibration_Stat35: 2.95547509e-02 + syst_JES_EtaIntercalibration_Stat36: 6.95007300e-03 + syst_JES_EtaIntercalibration_Stat37: 8.76850721e-04 syst_JES_EtaIntercalibration_Stat38: 0.0 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 @@ -13349,20 +13349,20 @@ bins: syst_JES_EtaIntercalibration_Stat48: 0.0 syst_JES_EtaIntercalibration_Stat49: 0.0 syst_JES_EtaIntercalibration_Stat5: 0.0 - syst_JES_EtaIntercalibration_Stat50: 0.001216938897397893 - syst_JES_EtaIntercalibration_Stat51: 0.0671991344810333 - syst_JES_EtaIntercalibration_Stat52: 0.10000460039418187 - syst_JES_EtaIntercalibration_Stat53: 0.30412390155987407 - syst_JES_EtaIntercalibration_Stat54: 0.022717919375462185 - syst_JES_EtaIntercalibration_Stat55: 0.06764810474063555 - syst_JES_EtaIntercalibration_Stat56: 0.20233505893690296 - syst_JES_EtaIntercalibration_Stat57: 0.24989287204720342 - syst_JES_EtaIntercalibration_Stat58: 0.03828958607767914 - syst_JES_EtaIntercalibration_Stat59: 0.002899015641127174 + syst_JES_EtaIntercalibration_Stat50: 1.21693890e-03 + syst_JES_EtaIntercalibration_Stat51: 6.71991345e-02 + syst_JES_EtaIntercalibration_Stat52: 1.00004600e-01 + syst_JES_EtaIntercalibration_Stat53: 3.04123902e-01 + syst_JES_EtaIntercalibration_Stat54: 2.27179194e-02 + syst_JES_EtaIntercalibration_Stat55: 6.76481047e-02 + syst_JES_EtaIntercalibration_Stat56: 2.02335059e-01 + syst_JES_EtaIntercalibration_Stat57: 2.49892872e-01 + syst_JES_EtaIntercalibration_Stat58: 3.82895861e-02 + syst_JES_EtaIntercalibration_Stat59: 2.89901564e-03 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 0.053710895542710885 - syst_JES_EtaIntercalibration_Stat62: 0.053710895542710885 + syst_JES_EtaIntercalibration_Stat61: 5.37108955e-02 + syst_JES_EtaIntercalibration_Stat62: 5.37108955e-02 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 @@ -13370,218 +13370,218 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 0.001201263837589395 + syst_JES_EtaIntercalibration_Stat7: 1.20126384e-03 syst_JES_EtaIntercalibration_Stat70: 0.0 syst_JES_EtaIntercalibration_Stat71: 0.0 - syst_JES_EtaIntercalibration_Stat72: 0.014289419162443239 - syst_JES_EtaIntercalibration_Stat73: 0.2461111131176323 - syst_JES_EtaIntercalibration_Stat74: 1.6357392059860887 - syst_JES_EtaIntercalibration_Stat75: 1.3488630805237425 - syst_JES_EtaIntercalibration_Stat76: 0.09078746981274453 - syst_JES_EtaIntercalibration_Stat77: 0.20703019103502754 - syst_JES_EtaIntercalibration_Stat78: 1.4314554935449444 - syst_JES_EtaIntercalibration_Stat79: 1.3721791309810831 - syst_JES_EtaIntercalibration_Stat8: 0.026858847704248224 - syst_JES_EtaIntercalibration_Stat80: 0.17318481457679827 - syst_JES_EtaIntercalibration_Stat81: 0.006304664939550713 - syst_JES_EtaIntercalibration_Stat82: 0.053710895542710885 - syst_JES_EtaIntercalibration_Stat83: 0.053710895542710885 - syst_JES_EtaIntercalibration_Stat84: 0.053710895542710885 + syst_JES_EtaIntercalibration_Stat72: 1.42894192e-02 + syst_JES_EtaIntercalibration_Stat73: 2.46111113e-01 + syst_JES_EtaIntercalibration_Stat74: 1.63573921e+00 + syst_JES_EtaIntercalibration_Stat75: 1.34886308e+00 + syst_JES_EtaIntercalibration_Stat76: 9.07874698e-02 + syst_JES_EtaIntercalibration_Stat77: 2.07030191e-01 + syst_JES_EtaIntercalibration_Stat78: 1.43145549e+00 + syst_JES_EtaIntercalibration_Stat79: 1.37217913e+00 + syst_JES_EtaIntercalibration_Stat8: 2.68588477e-02 + syst_JES_EtaIntercalibration_Stat80: 1.73184815e-01 + syst_JES_EtaIntercalibration_Stat81: 6.30466494e-03 + syst_JES_EtaIntercalibration_Stat82: 5.37108955e-02 + syst_JES_EtaIntercalibration_Stat83: 5.37108955e-02 + syst_JES_EtaIntercalibration_Stat84: 5.37108955e-02 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 syst_JES_EtaIntercalibration_Stat89: 0.0 - syst_JES_EtaIntercalibration_Stat9: 0.006361208847381133 + syst_JES_EtaIntercalibration_Stat9: 6.36120885e-03 syst_JES_EtaIntercalibration_Stat90: 0.0 syst_JES_EtaIntercalibration_Stat91: 0.0 syst_JES_EtaIntercalibration_Stat92: 0.0 - syst_JES_EtaIntercalibration_Stat93: 0.015016880501622167 - syst_JES_EtaIntercalibration_Stat94: 0.34262243986639285 - syst_JES_EtaIntercalibration_Stat95: 2.9674933866817628 - syst_JES_EtaIntercalibration_Stat96: 2.810657930093949 - syst_JES_EtaIntercalibration_Stat97: 0.22245487182797322 - syst_JES_EtaIntercalibration_Stat98: 0.2676229950882397 - syst_JES_EtaIntercalibration_Stat99: 2.358905837459393 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.020163387289837985 - syst_JES_Flavour_Comp: 3.6882422642771173 - syst_JES_Flavour_Response: 84.59470371719497 - syst_JES_Gjet_Generator: 60.26311708665592 - syst_JES_Gjet_OOC: 34.69014125079343 - syst_JES_Gjet_Purity: 14.546820503120262 - syst_JES_Gjet_Stat1: 0.0008223383792575901 - syst_JES_Gjet_Stat10: 0.5434702953014084 - syst_JES_Gjet_Stat11: 0.5008121660612889 - syst_JES_Gjet_Stat12: 0.16965160624055406 - syst_JES_Gjet_Stat13: 0.002993386209629489 - syst_JES_Gjet_Stat14: 1.7892087725186931e-06 - syst_JES_Gjet_Stat15: 7.517097878486223e-18 + syst_JES_EtaIntercalibration_Stat93: 1.50168805e-02 + syst_JES_EtaIntercalibration_Stat94: 3.42622440e-01 + syst_JES_EtaIntercalibration_Stat95: 2.96749339e+00 + syst_JES_EtaIntercalibration_Stat96: 2.81065793e+00 + syst_JES_EtaIntercalibration_Stat97: 2.22454872e-01 + syst_JES_EtaIntercalibration_Stat98: 2.67622995e-01 + syst_JES_EtaIntercalibration_Stat99: 2.35890584e+00 + syst_JES_EtaIntercalibration_TotalStat_MJB: 2.01633873e-02 + syst_JES_Flavour_Comp: 3.68824226e+00 + syst_JES_Flavour_Response: 8.45947037e+01 + syst_JES_Gjet_Generator: 6.02631171e+01 + syst_JES_Gjet_OOC: 3.46901413e+01 + syst_JES_Gjet_Purity: 1.45468205e+01 + syst_JES_Gjet_Stat1: 8.22338379e-04 + syst_JES_Gjet_Stat10: 5.43470295e-01 + syst_JES_Gjet_Stat11: 5.00812166e-01 + syst_JES_Gjet_Stat12: 1.69651606e-01 + syst_JES_Gjet_Stat13: 2.99338621e-03 + syst_JES_Gjet_Stat14: 1.78920877e-06 + syst_JES_Gjet_Stat15: 7.51709788e-18 syst_JES_Gjet_Stat2: 0.0 - syst_JES_Gjet_Stat3: 0.3352730748211076 - syst_JES_Gjet_Stat4: 0.5412720642153999 - syst_JES_Gjet_Stat5: 0.8551343403232032 - syst_JES_Gjet_Stat6: 2.730983110529979 - syst_JES_Gjet_Stat7: 4.89683438560056 - syst_JES_Gjet_Stat8: 2.4040737821456313 - syst_JES_Gjet_Stat9: 1.5993009316573288 - syst_JES_Gjet_Veto: 12.118475894269874 - syst_JES_Gjet_dPhi: 6.3501410023715215 - syst_JES_LArESZee: 41.060302297352855 - syst_JES_LArEsmear: 3.937341488872917 - syst_JES_LAr_JVT: 6.408433096319255 - syst_JES_MJB_Alpha: 1.1880136489114732e-17 - syst_JES_MJB_Asym: 0.005966498533478409 - syst_JES_MJB_Beta: 0.0001336277198039389 - syst_JES_MJB_Fragmentation: 0.023272345648859723 - syst_JES_MJB_Stat1: 0.002036207013051473 - syst_JES_MJB_Stat10: 6.779246860824585e-42 + syst_JES_Gjet_Stat3: 3.35273075e-01 + syst_JES_Gjet_Stat4: 5.41272064e-01 + syst_JES_Gjet_Stat5: 8.55134340e-01 + syst_JES_Gjet_Stat6: 2.73098311e+00 + syst_JES_Gjet_Stat7: 4.89683439e+00 + syst_JES_Gjet_Stat8: 2.40407378e+00 + syst_JES_Gjet_Stat9: 1.59930093e+00 + syst_JES_Gjet_Veto: 1.21184759e+01 + syst_JES_Gjet_dPhi: 6.35014100e+00 + syst_JES_LArESZee: 4.10603023e+01 + syst_JES_LArEsmear: 3.93734149e+00 + syst_JES_LAr_JVT: 6.40843310e+00 + syst_JES_MJB_Alpha: 1.18801365e-17 + syst_JES_MJB_Asym: 5.96649853e-03 + syst_JES_MJB_Beta: 1.33627720e-04 + syst_JES_MJB_Fragmentation: 2.32723456e-02 + syst_JES_MJB_Stat1: 2.03620701e-03 + syst_JES_MJB_Stat10: 6.77924686e-42 syst_JES_MJB_Stat11: 0.0 syst_JES_MJB_Stat12: 0.0 syst_JES_MJB_Stat13: 0.0 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 0.0027904733805395815 - syst_JES_MJB_Stat3: 0.00012782625259991897 - syst_JES_MJB_Stat4: 1.6637124687790106e-09 - syst_JES_MJB_Stat5: 7.40278515154938e-15 - syst_JES_MJB_Stat6: 2.2984314216439e-18 - syst_JES_MJB_Stat7: 7.377670414839633e-32 + syst_JES_MJB_Stat2: 2.79047338e-03 + syst_JES_MJB_Stat3: 1.27826253e-04 + syst_JES_MJB_Stat4: 1.66371247e-09 + syst_JES_MJB_Stat5: 7.40278515e-15 + syst_JES_MJB_Stat6: 2.29843142e-18 + syst_JES_MJB_Stat7: 7.37767041e-32 syst_JES_MJB_Stat8: 0.0 syst_JES_MJB_Stat9: 0.0 - syst_JES_MJB_Threshold: 0.008793190248709509 - syst_JES_Pileup_MuOffset: 1.0855714485928598e-16 - syst_JES_Pileup_NPVOffset: 4.172681721626992 - syst_JES_Pileup_Pt_term: 10.5862089885851 - syst_JES_Pileup_Rho_topology: 28.468710455515893 + syst_JES_MJB_Threshold: 8.79319025e-03 + syst_JES_Pileup_MuOffset: 1.08557145e-16 + syst_JES_Pileup_NPVOffset: 4.17268172e+00 + syst_JES_Pileup_Pt_term: 1.05862090e+01 + syst_JES_Pileup_Rho_topology: 2.84687105e+01 syst_JES_PunchThrough_MC15: 0.0 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 52.878008339951684 - syst_JES_Zjet_MuScale: 3.915655883756896 - syst_JES_Zjet_MuSmearID: 0.6795115377975565 - syst_JES_Zjet_MuSmearMS: 2.560924198409629 - syst_JES_Zjet_OOC: 26.977803376109037 - syst_JES_Zjet_Stat1: 0.6409951072356168 - syst_JES_Zjet_Stat10: 5.805655690789801 - syst_JES_Zjet_Stat11: 1.250956034399291 - syst_JES_Zjet_Stat12: 1.0937479451409269 - syst_JES_Zjet_Stat13: 0.02082640811565931 - syst_JES_Zjet_Stat2: 0.03904523940517588 - syst_JES_Zjet_Stat3: 0.25201339250127164 - syst_JES_Zjet_Stat4: 0.4283430255064275 - syst_JES_Zjet_Stat5: 0.5088638521254973 - syst_JES_Zjet_Stat6: 0.9991006405763134 - syst_JES_Zjet_Stat7: 1.6653143847334053 - syst_JES_Zjet_Stat8: 3.188655516044341 - syst_JES_Zjet_Stat9: 6.19338187099746 - syst_JES_Zjet_Veto: 4.433281487792085 - syst_JES_Zjet_dPhi: 6.150900970589594 + syst_JES_Zjet_MC: 5.28780083e+01 + syst_JES_Zjet_MuScale: 3.91565588e+00 + syst_JES_Zjet_MuSmearID: 6.79511538e-01 + syst_JES_Zjet_MuSmearMS: 2.56092420e+00 + syst_JES_Zjet_OOC: 2.69778034e+01 + syst_JES_Zjet_Stat1: 6.40995107e-01 + syst_JES_Zjet_Stat10: 5.80565569e+00 + syst_JES_Zjet_Stat11: 1.25095603e+00 + syst_JES_Zjet_Stat12: 1.09374795e+00 + syst_JES_Zjet_Stat13: 2.08264081e-02 + syst_JES_Zjet_Stat2: 3.90452394e-02 + syst_JES_Zjet_Stat3: 2.52013393e-01 + syst_JES_Zjet_Stat4: 4.28343026e-01 + syst_JES_Zjet_Stat5: 5.08863852e-01 + syst_JES_Zjet_Stat6: 9.99100641e-01 + syst_JES_Zjet_Stat7: 1.66531438e+00 + syst_JES_Zjet_Stat8: 3.18865552e+00 + syst_JES_Zjet_Stat9: 6.19338187e+00 + syst_JES_Zjet_Veto: 4.43328149e+00 + syst_JES_Zjet_dPhi: 6.15090097e+00 syst_PRW: 2.158 syst_Unfolding_bias: 2.901 - syst_cleaning: 18.06528992294339 + syst_cleaning: 1.80652899e+01 syst_lumi: 58.654 - stat: 8.497 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 17.696357676086908 - syst_JER_NP1: 2.435705031402612 - syst_JER_NP2: 2.765898045843339 - syst_JER_NP3: 2.5523240389887802 - syst_JER_NP4: 2.932656261821354 - syst_JER_NP5: 1.394543727353144 + syst_JER_NP0: 1.76963577e+01 + syst_JER_NP1: 2.43570503e+00 + syst_JER_NP2: 2.76589805e+00 + syst_JER_NP3: 2.55232404e+00 + syst_JER_NP4: 2.93265626e+00 + syst_JER_NP5: 1.39454373e+00 syst_JER_NP6: 0.0 - syst_JER_NP7: 0.9004677950931949 - syst_JER_NP8: 1.4574263300421053 - syst_JES_EtaIntercalibration_Modelling: 8.932176610434883 - syst_JES_EtaIntercalibration_NonClosure: 0.0003741229744348775 + syst_JER_NP7: 9.00467795e-01 + syst_JER_NP8: 1.45742633e+00 + syst_JES_EtaIntercalibration_Modelling: 8.93217661e+00 + syst_JES_EtaIntercalibration_NonClosure: 3.74122974e-04 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 0.8182005988753615 - syst_JES_EtaIntercalibration_Stat101: 0.06536709875770838 - syst_JES_EtaIntercalibration_Stat102: 0.00266511498444251 - syst_JES_EtaIntercalibration_Stat103: 0.007704161992066366 - syst_JES_EtaIntercalibration_Stat104: 0.007704161992066366 - syst_JES_EtaIntercalibration_Stat105: 0.007704161992066366 + syst_JES_EtaIntercalibration_Stat100: 8.18200599e-01 + syst_JES_EtaIntercalibration_Stat101: 6.53670988e-02 + syst_JES_EtaIntercalibration_Stat102: 2.66511498e-03 + syst_JES_EtaIntercalibration_Stat103: 7.70416199e-03 + syst_JES_EtaIntercalibration_Stat104: 7.70416199e-03 + syst_JES_EtaIntercalibration_Stat105: 7.70416199e-03 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 6.425908496080534e-07 - syst_JES_EtaIntercalibration_Stat111: 6.425908496080534e-07 + syst_JES_EtaIntercalibration_Stat110: 6.42590850e-07 + syst_JES_EtaIntercalibration_Stat111: 6.42590850e-07 syst_JES_EtaIntercalibration_Stat112: 0.0 - syst_JES_EtaIntercalibration_Stat113: 0.005682709386155516 - syst_JES_EtaIntercalibration_Stat114: 0.2456852610556848 - syst_JES_EtaIntercalibration_Stat115: 3.705836527357892 - syst_JES_EtaIntercalibration_Stat116: 3.156422500236621 - syst_JES_EtaIntercalibration_Stat117: 0.24019489602195962 - syst_JES_EtaIntercalibration_Stat118: 0.16718155303441826 - syst_JES_EtaIntercalibration_Stat119: 3.165171717300659 - syst_JES_EtaIntercalibration_Stat12: 0.011295650180489834 - syst_JES_EtaIntercalibration_Stat120: 3.8437390399843743 - syst_JES_EtaIntercalibration_Stat121: 0.3624930447608616 - syst_JES_EtaIntercalibration_Stat122: 0.00416190734519643 - syst_JES_EtaIntercalibration_Stat123: 0.007704161992066366 - syst_JES_EtaIntercalibration_Stat124: 0.007704161992066366 - syst_JES_EtaIntercalibration_Stat125: 0.007704161992066366 + syst_JES_EtaIntercalibration_Stat113: 5.68270939e-03 + syst_JES_EtaIntercalibration_Stat114: 2.45685261e-01 + syst_JES_EtaIntercalibration_Stat115: 3.70583653e+00 + syst_JES_EtaIntercalibration_Stat116: 3.15642250e+00 + syst_JES_EtaIntercalibration_Stat117: 2.40194896e-01 + syst_JES_EtaIntercalibration_Stat118: 1.67181553e-01 + syst_JES_EtaIntercalibration_Stat119: 3.16517172e+00 + syst_JES_EtaIntercalibration_Stat12: 1.12956502e-02 + syst_JES_EtaIntercalibration_Stat120: 3.84373904e+00 + syst_JES_EtaIntercalibration_Stat121: 3.62493045e-01 + syst_JES_EtaIntercalibration_Stat122: 4.16190735e-03 + syst_JES_EtaIntercalibration_Stat123: 7.70416199e-03 + syst_JES_EtaIntercalibration_Stat124: 7.70416199e-03 + syst_JES_EtaIntercalibration_Stat125: 7.70416199e-03 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 3.555034282535121e-23 - syst_JES_EtaIntercalibration_Stat129: 6.425908496080534e-07 - syst_JES_EtaIntercalibration_Stat13: 0.009723309775997061 - syst_JES_EtaIntercalibration_Stat130: 6.425908496080534e-07 - syst_JES_EtaIntercalibration_Stat131: 0.0003789727166960704 - syst_JES_EtaIntercalibration_Stat132: 0.019125574579604135 - syst_JES_EtaIntercalibration_Stat133: 0.461394473308903 - syst_JES_EtaIntercalibration_Stat134: 5.465595553093917 - syst_JES_EtaIntercalibration_Stat135: 3.747911518432632 - syst_JES_EtaIntercalibration_Stat136: 0.45149787374914624 - syst_JES_EtaIntercalibration_Stat137: 0.26495159463569945 - syst_JES_EtaIntercalibration_Stat138: 3.775199887092073 - syst_JES_EtaIntercalibration_Stat139: 3.9348137389208144 - syst_JES_EtaIntercalibration_Stat14: 0.0007654798544050653 - syst_JES_EtaIntercalibration_Stat140: 0.4869544845260181 - syst_JES_EtaIntercalibration_Stat141: 0.00047992622412302297 + syst_JES_EtaIntercalibration_Stat128: 3.55503428e-23 + syst_JES_EtaIntercalibration_Stat129: 6.42590850e-07 + syst_JES_EtaIntercalibration_Stat13: 9.72330978e-03 + syst_JES_EtaIntercalibration_Stat130: 6.42590850e-07 + syst_JES_EtaIntercalibration_Stat131: 3.78972717e-04 + syst_JES_EtaIntercalibration_Stat132: 1.91255746e-02 + syst_JES_EtaIntercalibration_Stat133: 4.61394473e-01 + syst_JES_EtaIntercalibration_Stat134: 5.46559555e+00 + syst_JES_EtaIntercalibration_Stat135: 3.74791152e+00 + syst_JES_EtaIntercalibration_Stat136: 4.51497874e-01 + syst_JES_EtaIntercalibration_Stat137: 2.64951595e-01 + syst_JES_EtaIntercalibration_Stat138: 3.77519989e+00 + syst_JES_EtaIntercalibration_Stat139: 3.93481374e+00 + syst_JES_EtaIntercalibration_Stat14: 7.65479854e-04 + syst_JES_EtaIntercalibration_Stat140: 4.86954485e-01 + syst_JES_EtaIntercalibration_Stat141: 4.79926224e-04 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 0.007704161992066366 - syst_JES_EtaIntercalibration_Stat144: 0.007704161992066366 + syst_JES_EtaIntercalibration_Stat143: 7.70416199e-03 + syst_JES_EtaIntercalibration_Stat144: 7.70416199e-03 syst_JES_EtaIntercalibration_Stat145: 0.0 - syst_JES_EtaIntercalibration_Stat146: 3.555034282535121e-23 - syst_JES_EtaIntercalibration_Stat147: 6.425908496080534e-07 + syst_JES_EtaIntercalibration_Stat146: 3.55503428e-23 + syst_JES_EtaIntercalibration_Stat147: 6.42590850e-07 syst_JES_EtaIntercalibration_Stat148: 0.0 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 0.002582701163286802 - syst_JES_EtaIntercalibration_Stat151: 0.014732693872812263 - syst_JES_EtaIntercalibration_Stat152: 0.3109868646743782 - syst_JES_EtaIntercalibration_Stat153: 0.3626752369544962 - syst_JES_EtaIntercalibration_Stat154: 0.06853333641374831 - syst_JES_EtaIntercalibration_Stat155: 0.056291200910977196 - syst_JES_EtaIntercalibration_Stat156: 0.058802041631222296 - syst_JES_EtaIntercalibration_Stat157: 0.49110360414071486 - syst_JES_EtaIntercalibration_Stat158: 0.04067804905597121 - syst_JES_EtaIntercalibration_Stat159: 0.0011755479443595655 + syst_JES_EtaIntercalibration_Stat150: 2.58270116e-03 + syst_JES_EtaIntercalibration_Stat151: 1.47326939e-02 + syst_JES_EtaIntercalibration_Stat152: 3.10986865e-01 + syst_JES_EtaIntercalibration_Stat153: 3.62675237e-01 + syst_JES_EtaIntercalibration_Stat154: 6.85333364e-02 + syst_JES_EtaIntercalibration_Stat155: 5.62912009e-02 + syst_JES_EtaIntercalibration_Stat156: 5.88020416e-02 + syst_JES_EtaIntercalibration_Stat157: 4.91103604e-01 + syst_JES_EtaIntercalibration_Stat158: 4.06780491e-02 + syst_JES_EtaIntercalibration_Stat159: 1.17554794e-03 syst_JES_EtaIntercalibration_Stat16: 0.0 syst_JES_EtaIntercalibration_Stat160: 0.0 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 - syst_JES_EtaIntercalibration_Stat164: 3.555034282535121e-23 + syst_JES_EtaIntercalibration_Stat164: 3.55503428e-23 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 - syst_JES_EtaIntercalibration_Stat168: 7.31445056036337e-05 - syst_JES_EtaIntercalibration_Stat169: 0.018883818383737965 + syst_JES_EtaIntercalibration_Stat168: 7.31445056e-05 + syst_JES_EtaIntercalibration_Stat169: 1.88838184e-02 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 0.3112645297813421 - syst_JES_EtaIntercalibration_Stat171: 0.24876528596249114 - syst_JES_EtaIntercalibration_Stat172: 0.02258885289252201 - syst_JES_EtaIntercalibration_Stat173: 0.005959120803440722 - syst_JES_EtaIntercalibration_Stat174: 0.19302291962355142 - syst_JES_EtaIntercalibration_Stat175: 0.25365813115293584 - syst_JES_EtaIntercalibration_Stat176: 0.014590005166208817 - syst_JES_EtaIntercalibration_Stat177: 0.000130170946069966 + syst_JES_EtaIntercalibration_Stat170: 3.11264530e-01 + syst_JES_EtaIntercalibration_Stat171: 2.48765286e-01 + syst_JES_EtaIntercalibration_Stat172: 2.25888529e-02 + syst_JES_EtaIntercalibration_Stat173: 5.95912080e-03 + syst_JES_EtaIntercalibration_Stat174: 1.93022920e-01 + syst_JES_EtaIntercalibration_Stat175: 2.53658131e-01 + syst_JES_EtaIntercalibration_Stat176: 1.45900052e-02 + syst_JES_EtaIntercalibration_Stat177: 1.30170946e-04 syst_JES_EtaIntercalibration_Stat178: 0.0 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 @@ -13590,17 +13590,17 @@ bins: syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 syst_JES_EtaIntercalibration_Stat184: 0.0 - syst_JES_EtaIntercalibration_Stat185: 1.6731610801115355e-07 - syst_JES_EtaIntercalibration_Stat186: 0.0009822353027660938 - syst_JES_EtaIntercalibration_Stat187: 0.052535550820373055 - syst_JES_EtaIntercalibration_Stat188: 0.04491697312820623 - syst_JES_EtaIntercalibration_Stat189: 0.005126066096615903 + syst_JES_EtaIntercalibration_Stat185: 1.67316108e-07 + syst_JES_EtaIntercalibration_Stat186: 9.82235303e-04 + syst_JES_EtaIntercalibration_Stat187: 5.25355508e-02 + syst_JES_EtaIntercalibration_Stat188: 4.49169731e-02 + syst_JES_EtaIntercalibration_Stat189: 5.12606610e-03 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 0.0009705750911186625 - syst_JES_EtaIntercalibration_Stat191: 0.02542937081408032 - syst_JES_EtaIntercalibration_Stat192: 0.03449087297749942 - syst_JES_EtaIntercalibration_Stat193: 0.007210527511909374 - syst_JES_EtaIntercalibration_Stat194: 5.984235540150471e-06 + syst_JES_EtaIntercalibration_Stat190: 9.70575091e-04 + syst_JES_EtaIntercalibration_Stat191: 2.54293708e-02 + syst_JES_EtaIntercalibration_Stat192: 3.44908730e-02 + syst_JES_EtaIntercalibration_Stat193: 7.21052751e-03 + syst_JES_EtaIntercalibration_Stat194: 5.98423554e-06 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 syst_JES_EtaIntercalibration_Stat197: 0.0 @@ -13608,43 +13608,43 @@ bins: syst_JES_EtaIntercalibration_Stat199: 0.0 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 2.715855666267999e-38 - syst_JES_EtaIntercalibration_Stat201: 8.392131612409329e-05 - syst_JES_EtaIntercalibration_Stat202: 0.0010899439286036691 - syst_JES_EtaIntercalibration_Stat203: 0.0008213727290335369 - syst_JES_EtaIntercalibration_Stat204: 8.312775416189228e-05 - syst_JES_EtaIntercalibration_Stat205: 4.791718559139299e-06 - syst_JES_EtaIntercalibration_Stat206: 0.0007756659848156293 - syst_JES_EtaIntercalibration_Stat207: 0.0007546078103889464 - syst_JES_EtaIntercalibration_Stat208: 5.912355431636363e-07 - syst_JES_EtaIntercalibration_Stat209: 1.285159908608285e-13 + syst_JES_EtaIntercalibration_Stat200: 2.71585567e-38 + syst_JES_EtaIntercalibration_Stat201: 8.39213161e-05 + syst_JES_EtaIntercalibration_Stat202: 1.08994393e-03 + syst_JES_EtaIntercalibration_Stat203: 8.21372729e-04 + syst_JES_EtaIntercalibration_Stat204: 8.31277542e-05 + syst_JES_EtaIntercalibration_Stat205: 4.79171856e-06 + syst_JES_EtaIntercalibration_Stat206: 7.75665985e-04 + syst_JES_EtaIntercalibration_Stat207: 7.54607810e-04 + syst_JES_EtaIntercalibration_Stat208: 5.91235543e-07 + syst_JES_EtaIntercalibration_Stat209: 1.28515991e-13 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 syst_JES_EtaIntercalibration_Stat211: 0.0 syst_JES_EtaIntercalibration_Stat212: 0.0 - syst_JES_EtaIntercalibration_Stat213: 2.800726155838875e-38 - syst_JES_EtaIntercalibration_Stat214: 1.6402931107344811e-13 - syst_JES_EtaIntercalibration_Stat215: 6.18950467194799e-08 - syst_JES_EtaIntercalibration_Stat216: 7.203177632128754e-08 - syst_JES_EtaIntercalibration_Stat217: 8.071356762778489e-13 - syst_JES_EtaIntercalibration_Stat218: 2.455368702964995e-17 - syst_JES_EtaIntercalibration_Stat219: 6.966742346319405e-08 + syst_JES_EtaIntercalibration_Stat213: 2.80072616e-38 + syst_JES_EtaIntercalibration_Stat214: 1.64029311e-13 + syst_JES_EtaIntercalibration_Stat215: 6.18950467e-08 + syst_JES_EtaIntercalibration_Stat216: 7.20317763e-08 + syst_JES_EtaIntercalibration_Stat217: 8.07135676e-13 + syst_JES_EtaIntercalibration_Stat218: 2.45536870e-17 + syst_JES_EtaIntercalibration_Stat219: 6.96674235e-08 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 1.0366617324373463e-07 - syst_JES_EtaIntercalibration_Stat221: 1.2397258131808824e-10 - syst_JES_EtaIntercalibration_Stat222: 6.5367597477649434e-18 + syst_JES_EtaIntercalibration_Stat220: 1.03666173e-07 + syst_JES_EtaIntercalibration_Stat221: 1.23972581e-10 + syst_JES_EtaIntercalibration_Stat222: 6.53675975e-18 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 syst_JES_EtaIntercalibration_Stat225: 0.0 - syst_JES_EtaIntercalibration_Stat226: 1.0661200530428082e-30 - syst_JES_EtaIntercalibration_Stat227: 2.099762129385136e-18 - syst_JES_EtaIntercalibration_Stat228: 2.403485125812099e-18 - syst_JES_EtaIntercalibration_Stat229: 4.584738487634818e-38 + syst_JES_EtaIntercalibration_Stat226: 1.06612005e-30 + syst_JES_EtaIntercalibration_Stat227: 2.09976213e-18 + syst_JES_EtaIntercalibration_Stat228: 2.40348513e-18 + syst_JES_EtaIntercalibration_Stat229: 4.58473849e-38 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 3.811377802055314e-30 - syst_JES_EtaIntercalibration_Stat231: 1.5562740546201042e-18 - syst_JES_EtaIntercalibration_Stat232: 2.2256852877260078e-18 - syst_JES_EtaIntercalibration_Stat233: 8.582311751503787e-30 + syst_JES_EtaIntercalibration_Stat230: 3.81137780e-30 + syst_JES_EtaIntercalibration_Stat231: 1.55627405e-18 + syst_JES_EtaIntercalibration_Stat232: 2.22568529e-18 + syst_JES_EtaIntercalibration_Stat233: 8.58231175e-30 syst_JES_EtaIntercalibration_Stat234: 0.0 syst_JES_EtaIntercalibration_Stat235: 0.0 syst_JES_EtaIntercalibration_Stat236: 0.0 @@ -13661,17 +13661,17 @@ bins: syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 syst_JES_EtaIntercalibration_Stat27: 0.0 - syst_JES_EtaIntercalibration_Stat28: 0.00011748500627739696 - syst_JES_EtaIntercalibration_Stat29: 0.004475316636842581 + syst_JES_EtaIntercalibration_Stat28: 1.17485006e-04 + syst_JES_EtaIntercalibration_Stat29: 4.47531664e-03 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 0.013495177719744931 - syst_JES_EtaIntercalibration_Stat31: 0.013728960739983198 - syst_JES_EtaIntercalibration_Stat32: 0.0007460827970138435 - syst_JES_EtaIntercalibration_Stat33: 0.01246166036158505 - syst_JES_EtaIntercalibration_Stat34: 0.025173232028287508 - syst_JES_EtaIntercalibration_Stat35: 0.008179249400158916 - syst_JES_EtaIntercalibration_Stat36: 0.002273401141461841 - syst_JES_EtaIntercalibration_Stat37: 8.575383548273511e-05 + syst_JES_EtaIntercalibration_Stat30: 1.34951777e-02 + syst_JES_EtaIntercalibration_Stat31: 1.37289607e-02 + syst_JES_EtaIntercalibration_Stat32: 7.46082797e-04 + syst_JES_EtaIntercalibration_Stat33: 1.24616604e-02 + syst_JES_EtaIntercalibration_Stat34: 2.51732320e-02 + syst_JES_EtaIntercalibration_Stat35: 8.17924940e-03 + syst_JES_EtaIntercalibration_Stat36: 2.27340114e-03 + syst_JES_EtaIntercalibration_Stat37: 8.57538355e-05 syst_JES_EtaIntercalibration_Stat38: 0.0 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 @@ -13686,20 +13686,20 @@ bins: syst_JES_EtaIntercalibration_Stat48: 0.0 syst_JES_EtaIntercalibration_Stat49: 0.0 syst_JES_EtaIntercalibration_Stat5: 0.0 - syst_JES_EtaIntercalibration_Stat50: 0.00011900921098805755 - syst_JES_EtaIntercalibration_Stat51: 0.014151516420511268 - syst_JES_EtaIntercalibration_Stat52: 0.04622961990704661 - syst_JES_EtaIntercalibration_Stat53: 0.07370083768180657 - syst_JES_EtaIntercalibration_Stat54: 0.007184595099934303 - syst_JES_EtaIntercalibration_Stat55: 0.014228660934887722 - syst_JES_EtaIntercalibration_Stat56: 0.03089813345090606 - syst_JES_EtaIntercalibration_Stat57: 0.05026586416247114 - syst_JES_EtaIntercalibration_Stat58: 0.014524050907030036 - syst_JES_EtaIntercalibration_Stat59: 0.00033955401381812584 + syst_JES_EtaIntercalibration_Stat50: 1.19009211e-04 + syst_JES_EtaIntercalibration_Stat51: 1.41515164e-02 + syst_JES_EtaIntercalibration_Stat52: 4.62296199e-02 + syst_JES_EtaIntercalibration_Stat53: 7.37008377e-02 + syst_JES_EtaIntercalibration_Stat54: 7.18459510e-03 + syst_JES_EtaIntercalibration_Stat55: 1.42286609e-02 + syst_JES_EtaIntercalibration_Stat56: 3.08981335e-02 + syst_JES_EtaIntercalibration_Stat57: 5.02658642e-02 + syst_JES_EtaIntercalibration_Stat58: 1.45240509e-02 + syst_JES_EtaIntercalibration_Stat59: 3.39554014e-04 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 0.007704161992066366 - syst_JES_EtaIntercalibration_Stat62: 0.007704161992066366 + syst_JES_EtaIntercalibration_Stat61: 7.70416199e-03 + syst_JES_EtaIntercalibration_Stat62: 7.70416199e-03 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 @@ -13707,218 +13707,218 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 0.00011748500627739696 + syst_JES_EtaIntercalibration_Stat7: 1.17485006e-04 syst_JES_EtaIntercalibration_Stat70: 0.0 syst_JES_EtaIntercalibration_Stat71: 0.0 - syst_JES_EtaIntercalibration_Stat72: 0.001320688740771269 - syst_JES_EtaIntercalibration_Stat73: 0.06027453421636703 - syst_JES_EtaIntercalibration_Stat74: 0.38487397521786276 - syst_JES_EtaIntercalibration_Stat75: 0.33435826219790055 - syst_JES_EtaIntercalibration_Stat76: 0.01317385847047098 - syst_JES_EtaIntercalibration_Stat77: 0.036403976087784694 - syst_JES_EtaIntercalibration_Stat78: 0.33880488116318513 - syst_JES_EtaIntercalibration_Stat79: 0.3512943352802604 - syst_JES_EtaIntercalibration_Stat8: 0.0060397106511818925 - syst_JES_EtaIntercalibration_Stat80: 0.03880032345226004 - syst_JES_EtaIntercalibration_Stat81: 0.000907075007923821 - syst_JES_EtaIntercalibration_Stat82: 0.007704161992066366 - syst_JES_EtaIntercalibration_Stat83: 0.007704161992066366 - syst_JES_EtaIntercalibration_Stat84: 0.007704161992066366 + syst_JES_EtaIntercalibration_Stat72: 1.32068874e-03 + syst_JES_EtaIntercalibration_Stat73: 6.02745342e-02 + syst_JES_EtaIntercalibration_Stat74: 3.84873975e-01 + syst_JES_EtaIntercalibration_Stat75: 3.34358262e-01 + syst_JES_EtaIntercalibration_Stat76: 1.31738585e-02 + syst_JES_EtaIntercalibration_Stat77: 3.64039761e-02 + syst_JES_EtaIntercalibration_Stat78: 3.38804881e-01 + syst_JES_EtaIntercalibration_Stat79: 3.51294335e-01 + syst_JES_EtaIntercalibration_Stat8: 6.03971065e-03 + syst_JES_EtaIntercalibration_Stat80: 3.88003235e-02 + syst_JES_EtaIntercalibration_Stat81: 9.07075008e-04 + syst_JES_EtaIntercalibration_Stat82: 7.70416199e-03 + syst_JES_EtaIntercalibration_Stat83: 7.70416199e-03 + syst_JES_EtaIntercalibration_Stat84: 7.70416199e-03 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 syst_JES_EtaIntercalibration_Stat89: 0.0 - syst_JES_EtaIntercalibration_Stat9: 0.002265022957941045 + syst_JES_EtaIntercalibration_Stat9: 2.26502296e-03 syst_JES_EtaIntercalibration_Stat90: 0.0 syst_JES_EtaIntercalibration_Stat91: 0.0 syst_JES_EtaIntercalibration_Stat92: 0.0 - syst_JES_EtaIntercalibration_Stat93: 0.0015354630409098098 - syst_JES_EtaIntercalibration_Stat94: 0.08338095870760902 - syst_JES_EtaIntercalibration_Stat95: 0.8226571643157313 - syst_JES_EtaIntercalibration_Stat96: 0.8626753271074813 - syst_JES_EtaIntercalibration_Stat97: 0.04473796319402572 - syst_JES_EtaIntercalibration_Stat98: 0.05367215386026538 - syst_JES_EtaIntercalibration_Stat99: 0.7134719686154459 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.06714772073570331 - syst_JES_Flavour_Comp: 1.7913961036018806 - syst_JES_Flavour_Response: 41.23181408512121 - syst_JES_Gjet_Generator: 32.5117717142576 - syst_JES_Gjet_OOC: 18.083456527998177 - syst_JES_Gjet_Purity: 7.217108631578162 - syst_JES_Gjet_Stat1: 0.0027910014331777046 - syst_JES_Gjet_Stat10: 0.4982048072831092 - syst_JES_Gjet_Stat11: 0.3124238907318069 - syst_JES_Gjet_Stat12: 0.19680754558705313 - syst_JES_Gjet_Stat13: 0.009609505437326107 - syst_JES_Gjet_Stat14: 0.00017537432756811947 - syst_JES_Gjet_Stat15: 2.9617591371544497e-12 + syst_JES_EtaIntercalibration_Stat93: 1.53546304e-03 + syst_JES_EtaIntercalibration_Stat94: 8.33809587e-02 + syst_JES_EtaIntercalibration_Stat95: 8.22657164e-01 + syst_JES_EtaIntercalibration_Stat96: 8.62675327e-01 + syst_JES_EtaIntercalibration_Stat97: 4.47379632e-02 + syst_JES_EtaIntercalibration_Stat98: 5.36721539e-02 + syst_JES_EtaIntercalibration_Stat99: 7.13471969e-01 + syst_JES_EtaIntercalibration_TotalStat_MJB: 6.71477207e-02 + syst_JES_Flavour_Comp: 1.79139610e+00 + syst_JES_Flavour_Response: 4.12318141e+01 + syst_JES_Gjet_Generator: 3.25117717e+01 + syst_JES_Gjet_OOC: 1.80834565e+01 + syst_JES_Gjet_Purity: 7.21710863e+00 + syst_JES_Gjet_Stat1: 2.79100143e-03 + syst_JES_Gjet_Stat10: 4.98204807e-01 + syst_JES_Gjet_Stat11: 3.12423891e-01 + syst_JES_Gjet_Stat12: 1.96807546e-01 + syst_JES_Gjet_Stat13: 9.60950544e-03 + syst_JES_Gjet_Stat14: 1.75374328e-04 + syst_JES_Gjet_Stat15: 2.96175914e-12 syst_JES_Gjet_Stat2: 0.0 - syst_JES_Gjet_Stat3: 0.0971074285263491 - syst_JES_Gjet_Stat4: 0.1620721839181542 - syst_JES_Gjet_Stat5: 0.26921565240527895 - syst_JES_Gjet_Stat6: 1.078167634229483 - syst_JES_Gjet_Stat7: 2.055124570433627 - syst_JES_Gjet_Stat8: 1.3718685022625166 - syst_JES_Gjet_Stat9: 1.4999112198726965 - syst_JES_Gjet_Veto: 6.972480387207984 - syst_JES_Gjet_dPhi: 3.1094055702014813 - syst_JES_LArESZee: 24.40517311964822 - syst_JES_LArEsmear: 2.325556868795085 - syst_JES_LAr_JVT: 3.4350943218491103 - syst_JES_MJB_Alpha: 4.680867307160125e-12 - syst_JES_MJB_Asym: 0.031124534936284583 - syst_JES_MJB_Beta: 0.00046176474529786263 - syst_JES_MJB_Fragmentation: 0.08295801513416289 - syst_JES_MJB_Stat1: 0.0018644559528184085 - syst_JES_MJB_Stat10: 1.4202816622064792e-30 - syst_JES_MJB_Stat11: 1.4185496113989106e-38 - syst_JES_MJB_Stat12: 8.254088123469485e-39 - syst_JES_MJB_Stat13: 5.675930496403211e-39 + syst_JES_Gjet_Stat3: 9.71074285e-02 + syst_JES_Gjet_Stat4: 1.62072184e-01 + syst_JES_Gjet_Stat5: 2.69215652e-01 + syst_JES_Gjet_Stat6: 1.07816763e+00 + syst_JES_Gjet_Stat7: 2.05512457e+00 + syst_JES_Gjet_Stat8: 1.37186850e+00 + syst_JES_Gjet_Stat9: 1.49991122e+00 + syst_JES_Gjet_Veto: 6.97248039e+00 + syst_JES_Gjet_dPhi: 3.10940557e+00 + syst_JES_LArESZee: 2.44051731e+01 + syst_JES_LArEsmear: 2.32555687e+00 + syst_JES_LAr_JVT: 3.43509432e+00 + syst_JES_MJB_Alpha: 4.68086731e-12 + syst_JES_MJB_Asym: 3.11245349e-02 + syst_JES_MJB_Beta: 4.61764745e-04 + syst_JES_MJB_Fragmentation: 8.29580151e-02 + syst_JES_MJB_Stat1: 1.86445595e-03 + syst_JES_MJB_Stat10: 1.42028166e-30 + syst_JES_MJB_Stat11: 1.41854961e-38 + syst_JES_MJB_Stat12: 8.25408812e-39 + syst_JES_MJB_Stat13: 5.67593050e-39 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 0.009289929601455546 - syst_JES_MJB_Stat3: 0.00031975274540924585 - syst_JES_MJB_Stat4: 1.6041426546518954e-06 - syst_JES_MJB_Stat5: 1.0736982956119469e-10 - syst_JES_MJB_Stat6: 9.057759698181444e-13 - syst_JES_MJB_Stat7: 1.0994192501043448e-22 + syst_JES_MJB_Stat2: 9.28992960e-03 + syst_JES_MJB_Stat3: 3.19752745e-04 + syst_JES_MJB_Stat4: 1.60414265e-06 + syst_JES_MJB_Stat5: 1.07369830e-10 + syst_JES_MJB_Stat6: 9.05775970e-13 + syst_JES_MJB_Stat7: 1.09941925e-22 syst_JES_MJB_Stat8: 0.0 syst_JES_MJB_Stat9: 0.0 - syst_JES_MJB_Threshold: 0.0347810883527241 - syst_JES_Pileup_MuOffset: 4.277283366811229e-11 - syst_JES_Pileup_NPVOffset: 1.9459529156688247 - syst_JES_Pileup_Pt_term: 5.519509217312713 - syst_JES_Pileup_Rho_topology: 14.043033967059968 + syst_JES_MJB_Threshold: 3.47810884e-02 + syst_JES_Pileup_MuOffset: 4.27728337e-11 + syst_JES_Pileup_NPVOffset: 1.94595292e+00 + syst_JES_Pileup_Pt_term: 5.51950922e+00 + syst_JES_Pileup_Rho_topology: 1.40430340e+01 syst_JES_PunchThrough_MC15: 0.0 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 28.081153822448247 - syst_JES_Zjet_MuScale: 2.169077914690941 - syst_JES_Zjet_MuSmearID: 0.4308673461751308 - syst_JES_Zjet_MuSmearMS: 1.8689362616204972 - syst_JES_Zjet_OOC: 12.340619949986305 - syst_JES_Zjet_Stat1: 0.21589596452921483 - syst_JES_Zjet_Stat10: 3.9397815558099154 - syst_JES_Zjet_Stat11: 1.5055134506207508 - syst_JES_Zjet_Stat12: 0.6753860155496262 - syst_JES_Zjet_Stat13: 0.08046020382773088 - syst_JES_Zjet_Stat2: 0.02102566290869327 - syst_JES_Zjet_Stat3: 0.0962673838846782 - syst_JES_Zjet_Stat4: 0.15305472060671635 - syst_JES_Zjet_Stat5: 0.15796285892576137 - syst_JES_Zjet_Stat6: 0.3752749339817409 - syst_JES_Zjet_Stat7: 0.6802367308518411 - syst_JES_Zjet_Stat8: 1.2374246886174527 - syst_JES_Zjet_Stat9: 3.0145852119321495 - syst_JES_Zjet_Veto: 2.2791421631833324 - syst_JES_Zjet_dPhi: 2.795558620383411 + syst_JES_Zjet_MC: 2.80811538e+01 + syst_JES_Zjet_MuScale: 2.16907791e+00 + syst_JES_Zjet_MuSmearID: 4.30867346e-01 + syst_JES_Zjet_MuSmearMS: 1.86893626e+00 + syst_JES_Zjet_OOC: 1.23406199e+01 + syst_JES_Zjet_Stat1: 2.15895965e-01 + syst_JES_Zjet_Stat10: 3.93978156e+00 + syst_JES_Zjet_Stat11: 1.50551345e+00 + syst_JES_Zjet_Stat12: 6.75386016e-01 + syst_JES_Zjet_Stat13: 8.04602038e-02 + syst_JES_Zjet_Stat2: 2.10256629e-02 + syst_JES_Zjet_Stat3: 9.62673839e-02 + syst_JES_Zjet_Stat4: 1.53054721e-01 + syst_JES_Zjet_Stat5: 1.57962859e-01 + syst_JES_Zjet_Stat6: 3.75274934e-01 + syst_JES_Zjet_Stat7: 6.80236731e-01 + syst_JES_Zjet_Stat8: 1.23742469e+00 + syst_JES_Zjet_Stat9: 3.01458521e+00 + syst_JES_Zjet_Veto: 2.27914216e+00 + syst_JES_Zjet_dPhi: 2.79555862e+00 syst_PRW: 1.1415 syst_Unfolding_bias: 1.2508 - syst_cleaning: 7.524894733482988 + syst_cleaning: 7.52489473e+00 syst_lumi: 31.03 - stat: 5.558 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 8.151871993597544 - syst_JER_NP1: 0.9706431012478274 - syst_JER_NP2: 1.1239870728793993 - syst_JER_NP3: 1.159262571637677 - syst_JER_NP4: 1.1459900992155212 - syst_JER_NP5: 0.6583773594983351 + syst_JER_NP0: 8.15187199e+00 + syst_JER_NP1: 9.70643101e-01 + syst_JER_NP2: 1.12398707e+00 + syst_JER_NP3: 1.15926257e+00 + syst_JER_NP4: 1.14599010e+00 + syst_JER_NP5: 6.58377359e-01 syst_JER_NP6: 0.0 - syst_JER_NP7: 0.48260879343418517 - syst_JER_NP8: 0.6817111485079292 - syst_JES_EtaIntercalibration_Modelling: 5.227733925899443 - syst_JES_EtaIntercalibration_NonClosure: 0.0004798646762369574 + syst_JER_NP7: 4.82608793e-01 + syst_JER_NP8: 6.81711149e-01 + syst_JES_EtaIntercalibration_Modelling: 5.22773393e+00 + syst_JES_EtaIntercalibration_NonClosure: 4.79864676e-04 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 0.2135446733121667 - syst_JES_EtaIntercalibration_Stat101: 0.010318432729828695 - syst_JES_EtaIntercalibration_Stat102: 0.0004940703974827373 - syst_JES_EtaIntercalibration_Stat103: 0.0006597381526029854 - syst_JES_EtaIntercalibration_Stat104: 0.0006597381526029854 - syst_JES_EtaIntercalibration_Stat105: 0.0006597381526029854 + syst_JES_EtaIntercalibration_Stat100: 2.13544673e-01 + syst_JES_EtaIntercalibration_Stat101: 1.03184327e-02 + syst_JES_EtaIntercalibration_Stat102: 4.94070397e-04 + syst_JES_EtaIntercalibration_Stat103: 6.59738153e-04 + syst_JES_EtaIntercalibration_Stat104: 6.59738153e-04 + syst_JES_EtaIntercalibration_Stat105: 6.59738153e-04 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 4.52065260775477e-05 - syst_JES_EtaIntercalibration_Stat111: 4.52065260775477e-05 + syst_JES_EtaIntercalibration_Stat110: 4.52065261e-05 + syst_JES_EtaIntercalibration_Stat111: 4.52065261e-05 syst_JES_EtaIntercalibration_Stat112: 0.0 - syst_JES_EtaIntercalibration_Stat113: 0.002612465967242444 - syst_JES_EtaIntercalibration_Stat114: 0.1136211119246771 - syst_JES_EtaIntercalibration_Stat115: 1.3582432330035736 - syst_JES_EtaIntercalibration_Stat116: 1.13087192466698 - syst_JES_EtaIntercalibration_Stat117: 0.10854551533803687 - syst_JES_EtaIntercalibration_Stat118: 0.04936014054882745 - syst_JES_EtaIntercalibration_Stat119: 1.2125925974951355 - syst_JES_EtaIntercalibration_Stat12: 0.003560000386235934 - syst_JES_EtaIntercalibration_Stat120: 1.488668532615639 - syst_JES_EtaIntercalibration_Stat121: 0.1344889262169938 - syst_JES_EtaIntercalibration_Stat122: 0.0015043529530997701 - syst_JES_EtaIntercalibration_Stat123: 0.0006597381526029854 - syst_JES_EtaIntercalibration_Stat124: 0.0006597381526029854 - syst_JES_EtaIntercalibration_Stat125: 0.0006597381526029854 + syst_JES_EtaIntercalibration_Stat113: 2.61246597e-03 + syst_JES_EtaIntercalibration_Stat114: 1.13621112e-01 + syst_JES_EtaIntercalibration_Stat115: 1.35824323e+00 + syst_JES_EtaIntercalibration_Stat116: 1.13087192e+00 + syst_JES_EtaIntercalibration_Stat117: 1.08545515e-01 + syst_JES_EtaIntercalibration_Stat118: 4.93601405e-02 + syst_JES_EtaIntercalibration_Stat119: 1.21259260e+00 + syst_JES_EtaIntercalibration_Stat12: 3.56000039e-03 + syst_JES_EtaIntercalibration_Stat120: 1.48866853e+00 + syst_JES_EtaIntercalibration_Stat121: 1.34488926e-01 + syst_JES_EtaIntercalibration_Stat122: 1.50435295e-03 + syst_JES_EtaIntercalibration_Stat123: 6.59738153e-04 + syst_JES_EtaIntercalibration_Stat124: 6.59738153e-04 + syst_JES_EtaIntercalibration_Stat125: 6.59738153e-04 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 1.6982758168212842e-16 - syst_JES_EtaIntercalibration_Stat129: 4.520652607749109e-05 - syst_JES_EtaIntercalibration_Stat13: 0.0011587302134232974 - syst_JES_EtaIntercalibration_Stat130: 4.52065260775477e-05 - syst_JES_EtaIntercalibration_Stat131: 4.05040081349982e-05 - syst_JES_EtaIntercalibration_Stat132: 0.009687174304202439 - syst_JES_EtaIntercalibration_Stat133: 0.3305684841299908 - syst_JES_EtaIntercalibration_Stat134: 3.7105283653409797 - syst_JES_EtaIntercalibration_Stat135: 2.432465159051615 - syst_JES_EtaIntercalibration_Stat136: 0.25058355891797846 - syst_JES_EtaIntercalibration_Stat137: 0.18622146170621687 - syst_JES_EtaIntercalibration_Stat138: 2.542252544496711 - syst_JES_EtaIntercalibration_Stat139: 2.853841446191431 - syst_JES_EtaIntercalibration_Stat14: 7.500646022177023e-05 - syst_JES_EtaIntercalibration_Stat140: 0.2943027820119953 - syst_JES_EtaIntercalibration_Stat141: 4.854441677474352e-05 + syst_JES_EtaIntercalibration_Stat128: 1.69827582e-16 + syst_JES_EtaIntercalibration_Stat129: 4.52065261e-05 + syst_JES_EtaIntercalibration_Stat13: 1.15873021e-03 + syst_JES_EtaIntercalibration_Stat130: 4.52065261e-05 + syst_JES_EtaIntercalibration_Stat131: 4.05040081e-05 + syst_JES_EtaIntercalibration_Stat132: 9.68717430e-03 + syst_JES_EtaIntercalibration_Stat133: 3.30568484e-01 + syst_JES_EtaIntercalibration_Stat134: 3.71052837e+00 + syst_JES_EtaIntercalibration_Stat135: 2.43246516e+00 + syst_JES_EtaIntercalibration_Stat136: 2.50583559e-01 + syst_JES_EtaIntercalibration_Stat137: 1.86221462e-01 + syst_JES_EtaIntercalibration_Stat138: 2.54225254e+00 + syst_JES_EtaIntercalibration_Stat139: 2.85384145e+00 + syst_JES_EtaIntercalibration_Stat14: 7.50064602e-05 + syst_JES_EtaIntercalibration_Stat140: 2.94302782e-01 + syst_JES_EtaIntercalibration_Stat141: 4.85444168e-05 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 0.0006597381526029854 - syst_JES_EtaIntercalibration_Stat144: 0.0006597381526029854 + syst_JES_EtaIntercalibration_Stat143: 6.59738153e-04 + syst_JES_EtaIntercalibration_Stat144: 6.59738153e-04 syst_JES_EtaIntercalibration_Stat145: 0.0 - syst_JES_EtaIntercalibration_Stat146: 1.6982758168212842e-16 - syst_JES_EtaIntercalibration_Stat147: 4.520652607749109e-05 + syst_JES_EtaIntercalibration_Stat146: 1.69827582e-16 + syst_JES_EtaIntercalibration_Stat147: 4.52065261e-05 syst_JES_EtaIntercalibration_Stat148: 0.0 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 0.0018597018766458241 - syst_JES_EtaIntercalibration_Stat151: 0.06725275384696154 - syst_JES_EtaIntercalibration_Stat152: 0.7077699533570212 - syst_JES_EtaIntercalibration_Stat153: 0.3710752080104517 - syst_JES_EtaIntercalibration_Stat154: 0.06300707956253804 - syst_JES_EtaIntercalibration_Stat155: 0.05885472963152579 - syst_JES_EtaIntercalibration_Stat156: 0.5316650073119351 - syst_JES_EtaIntercalibration_Stat157: 0.7122284377220557 - syst_JES_EtaIntercalibration_Stat158: 0.07193210272889289 - syst_JES_EtaIntercalibration_Stat159: 0.0015393283860177462 + syst_JES_EtaIntercalibration_Stat150: 1.85970188e-03 + syst_JES_EtaIntercalibration_Stat151: 6.72527538e-02 + syst_JES_EtaIntercalibration_Stat152: 7.07769953e-01 + syst_JES_EtaIntercalibration_Stat153: 3.71075208e-01 + syst_JES_EtaIntercalibration_Stat154: 6.30070796e-02 + syst_JES_EtaIntercalibration_Stat155: 5.88547296e-02 + syst_JES_EtaIntercalibration_Stat156: 5.31665007e-01 + syst_JES_EtaIntercalibration_Stat157: 7.12228438e-01 + syst_JES_EtaIntercalibration_Stat158: 7.19321027e-02 + syst_JES_EtaIntercalibration_Stat159: 1.53932839e-03 syst_JES_EtaIntercalibration_Stat16: 0.0 syst_JES_EtaIntercalibration_Stat160: 0.0 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 - syst_JES_EtaIntercalibration_Stat164: 1.6982758168212842e-16 + syst_JES_EtaIntercalibration_Stat164: 1.69827582e-16 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 - syst_JES_EtaIntercalibration_Stat168: 0.0007957907435375206 - syst_JES_EtaIntercalibration_Stat169: 0.017257715578836035 + syst_JES_EtaIntercalibration_Stat168: 7.95790744e-04 + syst_JES_EtaIntercalibration_Stat169: 1.72577156e-02 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 0.185736022354308 - syst_JES_EtaIntercalibration_Stat171: 0.15090595581354632 - syst_JES_EtaIntercalibration_Stat172: 0.021768874586206795 - syst_JES_EtaIntercalibration_Stat173: 0.009986138931038361 - syst_JES_EtaIntercalibration_Stat174: 0.12923375217024383 - syst_JES_EtaIntercalibration_Stat175: 0.1354360336099666 - syst_JES_EtaIntercalibration_Stat176: 0.012631637225633104 - syst_JES_EtaIntercalibration_Stat177: 0.00025421251321482976 + syst_JES_EtaIntercalibration_Stat170: 1.85736022e-01 + syst_JES_EtaIntercalibration_Stat171: 1.50905956e-01 + syst_JES_EtaIntercalibration_Stat172: 2.17688746e-02 + syst_JES_EtaIntercalibration_Stat173: 9.98613893e-03 + syst_JES_EtaIntercalibration_Stat174: 1.29233752e-01 + syst_JES_EtaIntercalibration_Stat175: 1.35436034e-01 + syst_JES_EtaIntercalibration_Stat176: 1.26316372e-02 + syst_JES_EtaIntercalibration_Stat177: 2.54212513e-04 syst_JES_EtaIntercalibration_Stat178: 0.0 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 @@ -13927,17 +13927,17 @@ bins: syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 syst_JES_EtaIntercalibration_Stat184: 0.0 - syst_JES_EtaIntercalibration_Stat185: 1.1990121715395553e-05 - syst_JES_EtaIntercalibration_Stat186: 0.005008473719607602 - syst_JES_EtaIntercalibration_Stat187: 0.1297690012098421 - syst_JES_EtaIntercalibration_Stat188: 0.10518066492944414 - syst_JES_EtaIntercalibration_Stat189: 0.008961181506921953 + syst_JES_EtaIntercalibration_Stat185: 1.19901217e-05 + syst_JES_EtaIntercalibration_Stat186: 5.00847372e-03 + syst_JES_EtaIntercalibration_Stat187: 1.29769001e-01 + syst_JES_EtaIntercalibration_Stat188: 1.05180665e-01 + syst_JES_EtaIntercalibration_Stat189: 8.96118151e-03 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 0.006103135014072687 - syst_JES_EtaIntercalibration_Stat191: 0.07122058971954669 - syst_JES_EtaIntercalibration_Stat192: 0.08254068133350972 - syst_JES_EtaIntercalibration_Stat193: 0.009841512709318802 - syst_JES_EtaIntercalibration_Stat194: 7.673851102933911e-05 + syst_JES_EtaIntercalibration_Stat190: 6.10313501e-03 + syst_JES_EtaIntercalibration_Stat191: 7.12205897e-02 + syst_JES_EtaIntercalibration_Stat192: 8.25406813e-02 + syst_JES_EtaIntercalibration_Stat193: 9.84151271e-03 + syst_JES_EtaIntercalibration_Stat194: 7.67385110e-05 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 syst_JES_EtaIntercalibration_Stat197: 0.0 @@ -13945,70 +13945,70 @@ bins: syst_JES_EtaIntercalibration_Stat199: 0.0 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 9.654451201388923e-28 - syst_JES_EtaIntercalibration_Stat201: 0.0016281724440304229 - syst_JES_EtaIntercalibration_Stat202: 0.0032406634382484093 + syst_JES_EtaIntercalibration_Stat200: 9.65445120e-28 + syst_JES_EtaIntercalibration_Stat201: 1.62817244e-03 + syst_JES_EtaIntercalibration_Stat202: 3.24066344e-03 syst_JES_EtaIntercalibration_Stat203: 0.001923 - syst_JES_EtaIntercalibration_Stat204: 0.0001978640631848037 - syst_JES_EtaIntercalibration_Stat205: 4.37256226370763e-05 - syst_JES_EtaIntercalibration_Stat206: 0.0019821106805625157 - syst_JES_EtaIntercalibration_Stat207: 0.0027221757231119374 - syst_JES_EtaIntercalibration_Stat208: 4.586470538442388e-05 - syst_JES_EtaIntercalibration_Stat209: 9.643388129656026e-10 + syst_JES_EtaIntercalibration_Stat204: 1.97864063e-04 + syst_JES_EtaIntercalibration_Stat205: 4.37256226e-05 + syst_JES_EtaIntercalibration_Stat206: 1.98211068e-03 + syst_JES_EtaIntercalibration_Stat207: 2.72217572e-03 + syst_JES_EtaIntercalibration_Stat208: 4.58647054e-05 + syst_JES_EtaIntercalibration_Stat209: 9.64338813e-10 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 syst_JES_EtaIntercalibration_Stat211: 0.0 syst_JES_EtaIntercalibration_Stat212: 0.0 - syst_JES_EtaIntercalibration_Stat213: 9.954962016502123e-28 - syst_JES_EtaIntercalibration_Stat214: 1.232971413483297e-09 - syst_JES_EtaIntercalibration_Stat215: 4.426118121889513e-06 - syst_JES_EtaIntercalibration_Stat216: 4.8462128512891385e-06 - syst_JES_EtaIntercalibration_Stat217: 6.050919261058277e-09 - syst_JES_EtaIntercalibration_Stat218: 3.689187817121812e-12 - syst_JES_EtaIntercalibration_Stat219: 5.670001587301366e-06 + syst_JES_EtaIntercalibration_Stat213: 9.95496202e-28 + syst_JES_EtaIntercalibration_Stat214: 1.23297141e-09 + syst_JES_EtaIntercalibration_Stat215: 4.42611812e-06 + syst_JES_EtaIntercalibration_Stat216: 4.84621285e-06 + syst_JES_EtaIntercalibration_Stat217: 6.05091926e-09 + syst_JES_EtaIntercalibration_Stat218: 3.68918782e-12 + syst_JES_EtaIntercalibration_Stat219: 5.67000159e-06 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 7.409393548057762e-06 - syst_JES_EtaIntercalibration_Stat221: 7.131828868156821e-08 - syst_JES_EtaIntercalibration_Stat222: 9.818996028107965e-13 + syst_JES_EtaIntercalibration_Stat220: 7.40939355e-06 + syst_JES_EtaIntercalibration_Stat221: 7.13182887e-08 + syst_JES_EtaIntercalibration_Stat222: 9.81899603e-13 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 syst_JES_EtaIntercalibration_Stat225: 0.0 - syst_JES_EtaIntercalibration_Stat226: 3.0669973508302874e-22 - syst_JES_EtaIntercalibration_Stat227: 3.1551412012776866e-13 - syst_JES_EtaIntercalibration_Stat228: 3.61142662531028e-13 - syst_JES_EtaIntercalibration_Stat229: 1.6298598099223134e-27 + syst_JES_EtaIntercalibration_Stat226: 3.06699735e-22 + syst_JES_EtaIntercalibration_Stat227: 3.15514120e-13 + syst_JES_EtaIntercalibration_Stat228: 3.61142663e-13 + syst_JES_EtaIntercalibration_Stat229: 1.62985981e-27 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 1.0963881611910993e-21 - syst_JES_EtaIntercalibration_Stat231: 2.3403985559345977e-13 - syst_JES_EtaIntercalibration_Stat232: 3.340606392558181e-13 - syst_JES_EtaIntercalibration_Stat233: 2.4690384261894345e-21 + syst_JES_EtaIntercalibration_Stat230: 1.09638816e-21 + syst_JES_EtaIntercalibration_Stat231: 2.34039856e-13 + syst_JES_EtaIntercalibration_Stat232: 3.34060639e-13 + syst_JES_EtaIntercalibration_Stat233: 2.46903843e-21 syst_JES_EtaIntercalibration_Stat234: 0.0 syst_JES_EtaIntercalibration_Stat235: 0.0 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 - syst_JES_EtaIntercalibration_Stat238: 7.576856257710053e-36 + syst_JES_EtaIntercalibration_Stat238: 7.57685626e-36 syst_JES_EtaIntercalibration_Stat239: 0.0 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 - syst_JES_EtaIntercalibration_Stat243: 6.55754435745577e-36 + syst_JES_EtaIntercalibration_Stat243: 6.55754436e-36 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 syst_JES_EtaIntercalibration_Stat27: 0.0 - syst_JES_EtaIntercalibration_Stat28: 8.67844057132386e-06 - syst_JES_EtaIntercalibration_Stat29: 0.0013676350829077177 + syst_JES_EtaIntercalibration_Stat28: 8.67844057e-06 + syst_JES_EtaIntercalibration_Stat29: 1.36763508e-03 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 0.0017760451204854003 - syst_JES_EtaIntercalibration_Stat31: 0.002464794514761829 - syst_JES_EtaIntercalibration_Stat32: 8.019095959021815e-05 - syst_JES_EtaIntercalibration_Stat33: 0.002949544508479233 - syst_JES_EtaIntercalibration_Stat34: 0.002575213389216513 - syst_JES_EtaIntercalibration_Stat35: 0.003538894848678045 - syst_JES_EtaIntercalibration_Stat36: 0.0010545330103889589 - syst_JES_EtaIntercalibration_Stat37: 6.334975828683169e-06 + syst_JES_EtaIntercalibration_Stat30: 1.77604512e-03 + syst_JES_EtaIntercalibration_Stat31: 2.46479451e-03 + syst_JES_EtaIntercalibration_Stat32: 8.01909596e-05 + syst_JES_EtaIntercalibration_Stat33: 2.94954451e-03 + syst_JES_EtaIntercalibration_Stat34: 2.57521339e-03 + syst_JES_EtaIntercalibration_Stat35: 3.53889485e-03 + syst_JES_EtaIntercalibration_Stat36: 1.05453301e-03 + syst_JES_EtaIntercalibration_Stat37: 6.33497583e-06 syst_JES_EtaIntercalibration_Stat38: 0.0 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 @@ -14023,20 +14023,20 @@ bins: syst_JES_EtaIntercalibration_Stat48: 0.0 syst_JES_EtaIntercalibration_Stat49: 0.0 syst_JES_EtaIntercalibration_Stat5: 0.0 - syst_JES_EtaIntercalibration_Stat50: 8.791023873815837e-06 - syst_JES_EtaIntercalibration_Stat51: 0.0016861111114039905 - syst_JES_EtaIntercalibration_Stat52: 0.018850182194079718 - syst_JES_EtaIntercalibration_Stat53: 0.009363285681319352 - syst_JES_EtaIntercalibration_Stat54: 0.0010249183040613528 - syst_JES_EtaIntercalibration_Stat55: 0.0005974534856371666 - syst_JES_EtaIntercalibration_Stat56: 0.006148494452302937 - syst_JES_EtaIntercalibration_Stat57: 0.00802279856097609 - syst_JES_EtaIntercalibration_Stat58: 0.0028667083475652 - syst_JES_EtaIntercalibration_Stat59: 2.937291045759681e-05 + syst_JES_EtaIntercalibration_Stat50: 8.79102387e-06 + syst_JES_EtaIntercalibration_Stat51: 1.68611111e-03 + syst_JES_EtaIntercalibration_Stat52: 1.88501822e-02 + syst_JES_EtaIntercalibration_Stat53: 9.36328568e-03 + syst_JES_EtaIntercalibration_Stat54: 1.02491830e-03 + syst_JES_EtaIntercalibration_Stat55: 5.97453486e-04 + syst_JES_EtaIntercalibration_Stat56: 6.14849445e-03 + syst_JES_EtaIntercalibration_Stat57: 8.02279856e-03 + syst_JES_EtaIntercalibration_Stat58: 2.86670835e-03 + syst_JES_EtaIntercalibration_Stat59: 2.93729105e-05 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 0.0006597381526029854 - syst_JES_EtaIntercalibration_Stat62: 0.0006597381526029854 + syst_JES_EtaIntercalibration_Stat61: 6.59738153e-04 + syst_JES_EtaIntercalibration_Stat62: 6.59738153e-04 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 @@ -14044,218 +14044,218 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 8.67844057132386e-06 + syst_JES_EtaIntercalibration_Stat7: 8.67844057e-06 syst_JES_EtaIntercalibration_Stat70: 0.0 syst_JES_EtaIntercalibration_Stat71: 0.0 - syst_JES_EtaIntercalibration_Stat72: 0.00010556849672132307 - syst_JES_EtaIntercalibration_Stat73: 0.009535076087792903 - syst_JES_EtaIntercalibration_Stat74: 0.08465177848102189 - syst_JES_EtaIntercalibration_Stat75: 0.07408456030105058 - syst_JES_EtaIntercalibration_Stat76: 0.0010632813679830942 - syst_JES_EtaIntercalibration_Stat77: 0.002637429253553543 - syst_JES_EtaIntercalibration_Stat78: 0.09119466253569887 - syst_JES_EtaIntercalibration_Stat79: 0.06495665323891002 - syst_JES_EtaIntercalibration_Stat8: 0.0007719656987198331 - syst_JES_EtaIntercalibration_Stat80: 0.005025613096926583 - syst_JES_EtaIntercalibration_Stat81: 8.901875125500246e-05 - syst_JES_EtaIntercalibration_Stat82: 0.0006597381526029854 - syst_JES_EtaIntercalibration_Stat83: 0.0006597381526029854 - syst_JES_EtaIntercalibration_Stat84: 0.0006597381526029854 + syst_JES_EtaIntercalibration_Stat72: 1.05568497e-04 + syst_JES_EtaIntercalibration_Stat73: 9.53507609e-03 + syst_JES_EtaIntercalibration_Stat74: 8.46517785e-02 + syst_JES_EtaIntercalibration_Stat75: 7.40845603e-02 + syst_JES_EtaIntercalibration_Stat76: 1.06328137e-03 + syst_JES_EtaIntercalibration_Stat77: 2.63742925e-03 + syst_JES_EtaIntercalibration_Stat78: 9.11946625e-02 + syst_JES_EtaIntercalibration_Stat79: 6.49566532e-02 + syst_JES_EtaIntercalibration_Stat8: 7.71965699e-04 + syst_JES_EtaIntercalibration_Stat80: 5.02561310e-03 + syst_JES_EtaIntercalibration_Stat81: 8.90187513e-05 + syst_JES_EtaIntercalibration_Stat82: 6.59738153e-04 + syst_JES_EtaIntercalibration_Stat83: 6.59738153e-04 + syst_JES_EtaIntercalibration_Stat84: 6.59738153e-04 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 syst_JES_EtaIntercalibration_Stat89: 0.0 - syst_JES_EtaIntercalibration_Stat9: 0.0005610991423090931 + syst_JES_EtaIntercalibration_Stat9: 5.61099142e-04 syst_JES_EtaIntercalibration_Stat90: 0.0 syst_JES_EtaIntercalibration_Stat91: 0.0 syst_JES_EtaIntercalibration_Stat92: 0.0 - syst_JES_EtaIntercalibration_Stat93: 6.58698922118444e-05 - syst_JES_EtaIntercalibration_Stat94: 0.010734563105688093 - syst_JES_EtaIntercalibration_Stat95: 0.22216534383202072 - syst_JES_EtaIntercalibration_Stat96: 0.23915885933830675 - syst_JES_EtaIntercalibration_Stat97: 0.00461779500952565 - syst_JES_EtaIntercalibration_Stat98: 0.005241075342904355 - syst_JES_EtaIntercalibration_Stat99: 0.210971514664895 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.09387902361550209 - syst_JES_Flavour_Comp: 0.8828000453103749 - syst_JES_Flavour_Response: 20.07091116516637 - syst_JES_Gjet_Generator: 17.01561856060484 - syst_JES_Gjet_OOC: 9.548356245972393 - syst_JES_Gjet_Purity: 3.459031764815119 - syst_JES_Gjet_Stat1: 0.0034509828672423166 - syst_JES_Gjet_Stat10: 0.6531156922781751 - syst_JES_Gjet_Stat11: 0.1262329224093303 - syst_JES_Gjet_Stat12: 0.18750457994406428 - syst_JES_Gjet_Stat13: 0.03780394355090484 - syst_JES_Gjet_Stat14: 0.002237652481769846 - syst_JES_Gjet_Stat15: 2.2241025421834758e-08 + syst_JES_EtaIntercalibration_Stat93: 6.58698922e-05 + syst_JES_EtaIntercalibration_Stat94: 1.07345631e-02 + syst_JES_EtaIntercalibration_Stat95: 2.22165344e-01 + syst_JES_EtaIntercalibration_Stat96: 2.39158859e-01 + syst_JES_EtaIntercalibration_Stat97: 4.61779501e-03 + syst_JES_EtaIntercalibration_Stat98: 5.24107534e-03 + syst_JES_EtaIntercalibration_Stat99: 2.10971515e-01 + syst_JES_EtaIntercalibration_TotalStat_MJB: 9.38790236e-02 + syst_JES_Flavour_Comp: 8.82800045e-01 + syst_JES_Flavour_Response: 2.00709112e+01 + syst_JES_Gjet_Generator: 1.70156186e+01 + syst_JES_Gjet_OOC: 9.54835625e+00 + syst_JES_Gjet_Purity: 3.45903176e+00 + syst_JES_Gjet_Stat1: 3.45098287e-03 + syst_JES_Gjet_Stat10: 6.53115692e-01 + syst_JES_Gjet_Stat11: 1.26232922e-01 + syst_JES_Gjet_Stat12: 1.87504580e-01 + syst_JES_Gjet_Stat13: 3.78039436e-02 + syst_JES_Gjet_Stat14: 2.23765248e-03 + syst_JES_Gjet_Stat15: 2.22410254e-08 syst_JES_Gjet_Stat2: 0.0 - syst_JES_Gjet_Stat3: 0.028102524352805032 - syst_JES_Gjet_Stat4: 0.051736299394139124 - syst_JES_Gjet_Stat5: 0.09281738670637091 - syst_JES_Gjet_Stat6: 0.4120417788283125 - syst_JES_Gjet_Stat7: 0.7506917742988796 - syst_JES_Gjet_Stat8: 0.6235828954517595 - syst_JES_Gjet_Stat9: 0.9557359101760277 - syst_JES_Gjet_Veto: 3.9383294513664033 - syst_JES_Gjet_dPhi: 1.3799053989313905 - syst_JES_LArESZee: 14.24790576716452 - syst_JES_LArEsmear: 1.286572527104477 - syst_JES_LAr_JVT: 1.870775507643822 - syst_JES_MJB_Alpha: 3.516062998549113e-08 - syst_JES_MJB_Asym: 0.04202778366747407 - syst_JES_MJB_Beta: 0.0005922747736474492 - syst_JES_MJB_Fragmentation: 0.11515484531707731 - syst_JES_MJB_Stat1: 0.0012870641009677802 - syst_JES_MJB_Stat10: 4.085041829652254e-22 - syst_JES_MJB_Stat11: 5.041999900833002e-28 - syst_JES_MJB_Stat12: 2.934094068021678e-28 - syst_JES_MJB_Stat13: 2.0178391908177419e-28 + syst_JES_Gjet_Stat3: 2.81025244e-02 + syst_JES_Gjet_Stat4: 5.17362994e-02 + syst_JES_Gjet_Stat5: 9.28173867e-02 + syst_JES_Gjet_Stat6: 4.12041779e-01 + syst_JES_Gjet_Stat7: 7.50691774e-01 + syst_JES_Gjet_Stat8: 6.23582895e-01 + syst_JES_Gjet_Stat9: 9.55735910e-01 + syst_JES_Gjet_Veto: 3.93832945e+00 + syst_JES_Gjet_dPhi: 1.37990540e+00 + syst_JES_LArESZee: 1.42479058e+01 + syst_JES_LArEsmear: 1.28657253e+00 + syst_JES_LAr_JVT: 1.87077551e+00 + syst_JES_MJB_Alpha: 3.51606300e-08 + syst_JES_MJB_Asym: 4.20277837e-02 + syst_JES_MJB_Beta: 5.92274774e-04 + syst_JES_MJB_Fragmentation: 1.15154845e-01 + syst_JES_MJB_Stat1: 1.28706410e-03 + syst_JES_MJB_Stat10: 4.08504183e-22 + syst_JES_MJB_Stat11: 5.04199990e-28 + syst_JES_MJB_Stat12: 2.93409407e-28 + syst_JES_MJB_Stat13: 2.01783919e-28 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 0.01272816530376629 - syst_JES_MJB_Stat3: 0.0010134528837099433 - syst_JES_MJB_Stat4: 0.00011553373565759916 - syst_JES_MJB_Stat5: 6.191215611654951e-08 - syst_JES_MJB_Stat6: 6.8034955721305495e-09 - syst_JES_MJB_Stat7: 5.251578048548836e-16 + syst_JES_MJB_Stat2: 1.27281653e-02 + syst_JES_MJB_Stat3: 1.01345288e-03 + syst_JES_MJB_Stat4: 1.15533736e-04 + syst_JES_MJB_Stat5: 6.19121561e-08 + syst_JES_MJB_Stat6: 6.80349557e-09 + syst_JES_MJB_Stat7: 5.25157805e-16 syst_JES_MJB_Stat8: 0.0 syst_JES_MJB_Stat9: 0.0 - syst_JES_MJB_Threshold: 0.04594138330525105 - syst_JES_Pileup_MuOffset: 3.212894956266077e-07 - syst_JES_Pileup_NPVOffset: 0.8134396889136896 - syst_JES_Pileup_Pt_term: 2.7981209766555843 - syst_JES_Pileup_Rho_topology: 6.921410748539636 - syst_JES_PunchThrough_MC15: 3.853813046840752e-33 + syst_JES_MJB_Threshold: 4.59413833e-02 + syst_JES_Pileup_MuOffset: 3.21289496e-07 + syst_JES_Pileup_NPVOffset: 8.13439689e-01 + syst_JES_Pileup_Pt_term: 2.79812098e+00 + syst_JES_Pileup_Rho_topology: 6.92141075e+00 + syst_JES_PunchThrough_MC15: 3.85381305e-33 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 14.77977334061656 - syst_JES_Zjet_MuScale: 1.1105509207145796 - syst_JES_Zjet_MuSmearID: 0.2322216398185148 - syst_JES_Zjet_MuSmearMS: 1.1177341488475692 - syst_JES_Zjet_OOC: 5.926952062401044 - syst_JES_Zjet_Stat1: 0.07525699103737805 - syst_JES_Zjet_Stat10: 2.2092606795034397 - syst_JES_Zjet_Stat11: 1.4747098019610503 - syst_JES_Zjet_Stat12: 0.2795344108960469 - syst_JES_Zjet_Stat13: 0.1306749872775965 - syst_JES_Zjet_Stat2: 0.0116423236082837 - syst_JES_Zjet_Stat3: 0.038771957327429316 - syst_JES_Zjet_Stat4: 0.053494804186948845 - syst_JES_Zjet_Stat5: 0.05357803911118808 - syst_JES_Zjet_Stat6: 0.13356486542126264 - syst_JES_Zjet_Stat7: 0.27107270242501363 - syst_JES_Zjet_Stat8: 0.46903442304376763 - syst_JES_Zjet_Stat9: 1.2735491539394936 - syst_JES_Zjet_Veto: 1.1094699545278368 - syst_JES_Zjet_dPhi: 1.2355093524534728 + syst_JES_Zjet_MC: 1.47797733e+01 + syst_JES_Zjet_MuScale: 1.11055092e+00 + syst_JES_Zjet_MuSmearID: 2.32221640e-01 + syst_JES_Zjet_MuSmearMS: 1.11773415e+00 + syst_JES_Zjet_OOC: 5.92695206e+00 + syst_JES_Zjet_Stat1: 7.52569910e-02 + syst_JES_Zjet_Stat10: 2.20926068e+00 + syst_JES_Zjet_Stat11: 1.47470980e+00 + syst_JES_Zjet_Stat12: 2.79534411e-01 + syst_JES_Zjet_Stat13: 1.30674987e-01 + syst_JES_Zjet_Stat2: 1.16423236e-02 + syst_JES_Zjet_Stat3: 3.87719573e-02 + syst_JES_Zjet_Stat4: 5.34948042e-02 + syst_JES_Zjet_Stat5: 5.35780391e-02 + syst_JES_Zjet_Stat6: 1.33564865e-01 + syst_JES_Zjet_Stat7: 2.71072702e-01 + syst_JES_Zjet_Stat8: 4.69034423e-01 + syst_JES_Zjet_Stat9: 1.27354915e+00 + syst_JES_Zjet_Veto: 1.10946995e+00 + syst_JES_Zjet_dPhi: 1.23550935e+00 syst_PRW: 0.6118 syst_Unfolding_bias: 0.6406 - syst_cleaning: 4.242658453139965 + syst_cleaning: 4.24265845e+00 syst_lumi: 16.63 - stat: 2.6763 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 3.9029169540229782 - syst_JER_NP1: 0.4113344161081103 - syst_JER_NP2: 0.5393689924346783 - syst_JER_NP3: 0.6170978103185912 - syst_JER_NP4: 0.4418208120946771 - syst_JER_NP5: 0.2965728488499917 - syst_JER_NP6: 3.122021580642901e-39 - syst_JER_NP7: 0.2735065264303578 - syst_JER_NP8: 0.4024896365125443 - syst_JES_EtaIntercalibration_Modelling: 2.8829621485548507 - syst_JES_EtaIntercalibration_NonClosure: 0.0003690134245525493 + syst_JER_NP0: 3.90291695e+00 + syst_JER_NP1: 4.11334416e-01 + syst_JER_NP2: 5.39368992e-01 + syst_JER_NP3: 6.17097810e-01 + syst_JER_NP4: 4.41820812e-01 + syst_JER_NP5: 2.96572849e-01 + syst_JER_NP6: 3.12202158e-39 + syst_JER_NP7: 2.73506526e-01 + syst_JER_NP8: 4.02489637e-01 + syst_JES_EtaIntercalibration_Modelling: 2.88296215e+00 + syst_JES_EtaIntercalibration_NonClosure: 3.69013425e-04 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 0.051638311075692625 - syst_JES_EtaIntercalibration_Stat101: 0.001227111082991267 - syst_JES_EtaIntercalibration_Stat102: 6.218634663708345e-05 - syst_JES_EtaIntercalibration_Stat103: 4.5899346400575246e-05 - syst_JES_EtaIntercalibration_Stat104: 4.5899346400575246e-05 - syst_JES_EtaIntercalibration_Stat105: 4.5899346400575246e-05 + syst_JES_EtaIntercalibration_Stat100: 5.16383111e-02 + syst_JES_EtaIntercalibration_Stat101: 1.22711108e-03 + syst_JES_EtaIntercalibration_Stat102: 6.21863466e-05 + syst_JES_EtaIntercalibration_Stat103: 4.58993464e-05 + syst_JES_EtaIntercalibration_Stat104: 4.58993464e-05 + syst_JES_EtaIntercalibration_Stat105: 4.58993464e-05 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 0.00039967072384651845 - syst_JES_EtaIntercalibration_Stat111: 0.00039967072384651845 + syst_JES_EtaIntercalibration_Stat110: 3.99670724e-04 + syst_JES_EtaIntercalibration_Stat111: 3.99670724e-04 syst_JES_EtaIntercalibration_Stat112: 0.0 - syst_JES_EtaIntercalibration_Stat113: 0.0011711674770074519 - syst_JES_EtaIntercalibration_Stat114: 0.03949580325806781 - syst_JES_EtaIntercalibration_Stat115: 0.43895941441094527 - syst_JES_EtaIntercalibration_Stat116: 0.3678011827060919 - syst_JES_EtaIntercalibration_Stat117: 0.03879442582382165 - syst_JES_EtaIntercalibration_Stat118: 0.008785950987229554 - syst_JES_EtaIntercalibration_Stat119: 0.3896840867933921 - syst_JES_EtaIntercalibration_Stat12: 0.0010827854946848891 - syst_JES_EtaIntercalibration_Stat120: 0.5086986804582847 - syst_JES_EtaIntercalibration_Stat121: 0.04364194312814222 - syst_JES_EtaIntercalibration_Stat122: 0.0005567549324433507 - syst_JES_EtaIntercalibration_Stat123: 4.5899346400575246e-05 - syst_JES_EtaIntercalibration_Stat124: 4.5899346400575246e-05 - syst_JES_EtaIntercalibration_Stat125: 4.5899346400575246e-05 + syst_JES_EtaIntercalibration_Stat113: 1.17116748e-03 + syst_JES_EtaIntercalibration_Stat114: 3.94958033e-02 + syst_JES_EtaIntercalibration_Stat115: 4.38959414e-01 + syst_JES_EtaIntercalibration_Stat116: 3.67801183e-01 + syst_JES_EtaIntercalibration_Stat117: 3.87944258e-02 + syst_JES_EtaIntercalibration_Stat118: 8.78595099e-03 + syst_JES_EtaIntercalibration_Stat119: 3.89684087e-01 + syst_JES_EtaIntercalibration_Stat12: 1.08278549e-03 + syst_JES_EtaIntercalibration_Stat120: 5.08698680e-01 + syst_JES_EtaIntercalibration_Stat121: 4.36419431e-02 + syst_JES_EtaIntercalibration_Stat122: 5.56754932e-04 + syst_JES_EtaIntercalibration_Stat123: 4.58993464e-05 + syst_JES_EtaIntercalibration_Stat124: 4.58993464e-05 + syst_JES_EtaIntercalibration_Stat125: 4.58993464e-05 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 5.7737913670308525e-12 - syst_JES_EtaIntercalibration_Stat129: 0.00039967072192192136 - syst_JES_EtaIntercalibration_Stat13: 0.00040553665195022754 - syst_JES_EtaIntercalibration_Stat130: 0.00039967072384651845 - syst_JES_EtaIntercalibration_Stat131: 3.6165220862038163e-06 - syst_JES_EtaIntercalibration_Stat132: 0.006959444428257187 - syst_JES_EtaIntercalibration_Stat133: 0.16817313600869788 - syst_JES_EtaIntercalibration_Stat134: 1.8435489551406006 - syst_JES_EtaIntercalibration_Stat135: 1.2005770477149726 - syst_JES_EtaIntercalibration_Stat136: 0.10741720846773109 - syst_JES_EtaIntercalibration_Stat137: 0.1009288630670137 - syst_JES_EtaIntercalibration_Stat138: 1.2479554919948068 - syst_JES_EtaIntercalibration_Stat139: 1.470495834744186 - syst_JES_EtaIntercalibration_Stat14: 6.431104648503241e-06 - syst_JES_EtaIntercalibration_Stat140: 0.14362728736211655 - syst_JES_EtaIntercalibration_Stat141: 5.00116598704742e-05 + syst_JES_EtaIntercalibration_Stat128: 5.77379137e-12 + syst_JES_EtaIntercalibration_Stat129: 3.99670722e-04 + syst_JES_EtaIntercalibration_Stat13: 4.05536652e-04 + syst_JES_EtaIntercalibration_Stat130: 3.99670724e-04 + syst_JES_EtaIntercalibration_Stat131: 3.61652209e-06 + syst_JES_EtaIntercalibration_Stat132: 6.95944443e-03 + syst_JES_EtaIntercalibration_Stat133: 1.68173136e-01 + syst_JES_EtaIntercalibration_Stat134: 1.84354896e+00 + syst_JES_EtaIntercalibration_Stat135: 1.20057705e+00 + syst_JES_EtaIntercalibration_Stat136: 1.07417208e-01 + syst_JES_EtaIntercalibration_Stat137: 1.00928863e-01 + syst_JES_EtaIntercalibration_Stat138: 1.24795549e+00 + syst_JES_EtaIntercalibration_Stat139: 1.47049583e+00 + syst_JES_EtaIntercalibration_Stat14: 6.43110465e-06 + syst_JES_EtaIntercalibration_Stat140: 1.43627287e-01 + syst_JES_EtaIntercalibration_Stat141: 5.00116599e-05 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 4.5899346400575246e-05 - syst_JES_EtaIntercalibration_Stat144: 4.5899346400575246e-05 + syst_JES_EtaIntercalibration_Stat143: 4.58993464e-05 + syst_JES_EtaIntercalibration_Stat144: 4.58993464e-05 syst_JES_EtaIntercalibration_Stat145: 0.0 - syst_JES_EtaIntercalibration_Stat146: 5.7737913670308525e-12 - syst_JES_EtaIntercalibration_Stat147: 0.00039967072192192136 + syst_JES_EtaIntercalibration_Stat146: 5.77379137e-12 + syst_JES_EtaIntercalibration_Stat147: 3.99670722e-04 syst_JES_EtaIntercalibration_Stat148: 0.0 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 0.0011545324021005215 - syst_JES_EtaIntercalibration_Stat151: 0.07069703388403223 - syst_JES_EtaIntercalibration_Stat152: 0.5859093509238439 - syst_JES_EtaIntercalibration_Stat153: 0.4523738387661249 - syst_JES_EtaIntercalibration_Stat154: 0.038495930629093775 - syst_JES_EtaIntercalibration_Stat155: 0.03662056389516688 - syst_JES_EtaIntercalibration_Stat156: 0.5190978977996347 - syst_JES_EtaIntercalibration_Stat157: 0.5998401787142973 - syst_JES_EtaIntercalibration_Stat158: 0.05831294892217336 - syst_JES_EtaIntercalibration_Stat159: 0.0011835083903378124 + syst_JES_EtaIntercalibration_Stat150: 1.15453240e-03 + syst_JES_EtaIntercalibration_Stat151: 7.06970339e-02 + syst_JES_EtaIntercalibration_Stat152: 5.85909351e-01 + syst_JES_EtaIntercalibration_Stat153: 4.52373839e-01 + syst_JES_EtaIntercalibration_Stat154: 3.84959306e-02 + syst_JES_EtaIntercalibration_Stat155: 3.66205639e-02 + syst_JES_EtaIntercalibration_Stat156: 5.19097898e-01 + syst_JES_EtaIntercalibration_Stat157: 5.99840179e-01 + syst_JES_EtaIntercalibration_Stat158: 5.83129489e-02 + syst_JES_EtaIntercalibration_Stat159: 1.18350839e-03 syst_JES_EtaIntercalibration_Stat16: 0.0 syst_JES_EtaIntercalibration_Stat160: 0.0 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 - syst_JES_EtaIntercalibration_Stat164: 5.7737913670308525e-12 + syst_JES_EtaIntercalibration_Stat164: 5.77379137e-12 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 - syst_JES_EtaIntercalibration_Stat168: 0.0012799855467934002 - syst_JES_EtaIntercalibration_Stat169: 0.012412394480921076 + syst_JES_EtaIntercalibration_Stat168: 1.27998555e-03 + syst_JES_EtaIntercalibration_Stat169: 1.24123945e-02 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 0.05327572876085319 - syst_JES_EtaIntercalibration_Stat171: 0.02317956360137093 - syst_JES_EtaIntercalibration_Stat172: 0.0064687291448939175 - syst_JES_EtaIntercalibration_Stat173: 0.011339736637153439 - syst_JES_EtaIntercalibration_Stat174: 0.05390674447599298 - syst_JES_EtaIntercalibration_Stat175: 0.05352199460969294 - syst_JES_EtaIntercalibration_Stat176: 0.011331403620028721 - syst_JES_EtaIntercalibration_Stat177: 0.0002409216055068536 + syst_JES_EtaIntercalibration_Stat170: 5.32757288e-02 + syst_JES_EtaIntercalibration_Stat171: 2.31795636e-02 + syst_JES_EtaIntercalibration_Stat172: 6.46872914e-03 + syst_JES_EtaIntercalibration_Stat173: 1.13397366e-02 + syst_JES_EtaIntercalibration_Stat174: 5.39067445e-02 + syst_JES_EtaIntercalibration_Stat175: 5.35219946e-02 + syst_JES_EtaIntercalibration_Stat176: 1.13314036e-02 + syst_JES_EtaIntercalibration_Stat177: 2.40921606e-04 syst_JES_EtaIntercalibration_Stat178: 0.0 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 @@ -14264,17 +14264,17 @@ bins: syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 syst_JES_EtaIntercalibration_Stat184: 0.0 - syst_JES_EtaIntercalibration_Stat185: 0.00011422009050512962 - syst_JES_EtaIntercalibration_Stat186: 0.011006398230120515 - syst_JES_EtaIntercalibration_Stat187: 0.14033166668646105 - syst_JES_EtaIntercalibration_Stat188: 0.1067319347711827 - syst_JES_EtaIntercalibration_Stat189: 0.008222363163957185 + syst_JES_EtaIntercalibration_Stat185: 1.14220091e-04 + syst_JES_EtaIntercalibration_Stat186: 1.10063982e-02 + syst_JES_EtaIntercalibration_Stat187: 1.40331667e-01 + syst_JES_EtaIntercalibration_Stat188: 1.06731935e-01 + syst_JES_EtaIntercalibration_Stat189: 8.22236316e-03 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 0.00918384859413525 - syst_JES_EtaIntercalibration_Stat191: 0.10288821895630228 - syst_JES_EtaIntercalibration_Stat192: 0.11488128687910838 - syst_JES_EtaIntercalibration_Stat193: 0.007670440176753042 - syst_JES_EtaIntercalibration_Stat194: 0.00022620583546849538 + syst_JES_EtaIntercalibration_Stat190: 9.18384859e-03 + syst_JES_EtaIntercalibration_Stat191: 1.02888219e-01 + syst_JES_EtaIntercalibration_Stat192: 1.14881287e-01 + syst_JES_EtaIntercalibration_Stat193: 7.67044018e-03 + syst_JES_EtaIntercalibration_Stat194: 2.26205835e-04 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 syst_JES_EtaIntercalibration_Stat197: 0.0 @@ -14282,70 +14282,70 @@ bins: syst_JES_EtaIntercalibration_Stat199: 0.0 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 2.6630281166371484e-20 - syst_JES_EtaIntercalibration_Stat201: 0.004962677100114413 - syst_JES_EtaIntercalibration_Stat202: 0.015287234282236929 - syst_JES_EtaIntercalibration_Stat203: 0.011808068809081357 - syst_JES_EtaIntercalibration_Stat204: 0.00036757644102961766 - syst_JES_EtaIntercalibration_Stat205: 0.00013414733504620954 - syst_JES_EtaIntercalibration_Stat206: 0.010740327311120458 - syst_JES_EtaIntercalibration_Stat207: 0.009588085158153322 - syst_JES_EtaIntercalibration_Stat208: 0.000567852857265876 - syst_JES_EtaIntercalibration_Stat209: 2.6582176586342587e-07 + syst_JES_EtaIntercalibration_Stat200: 2.66302812e-20 + syst_JES_EtaIntercalibration_Stat201: 4.96267710e-03 + syst_JES_EtaIntercalibration_Stat202: 1.52872343e-02 + syst_JES_EtaIntercalibration_Stat203: 1.18080688e-02 + syst_JES_EtaIntercalibration_Stat204: 3.67576441e-04 + syst_JES_EtaIntercalibration_Stat205: 1.34147335e-04 + syst_JES_EtaIntercalibration_Stat206: 1.07403273e-02 + syst_JES_EtaIntercalibration_Stat207: 9.58808516e-03 + syst_JES_EtaIntercalibration_Stat208: 5.67852857e-04 + syst_JES_EtaIntercalibration_Stat209: 2.65821766e-07 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 syst_JES_EtaIntercalibration_Stat211: 0.0 syst_JES_EtaIntercalibration_Stat212: 0.0 - syst_JES_EtaIntercalibration_Stat213: 2.746166555400455e-20 - syst_JES_EtaIntercalibration_Stat214: 3.4430712392717056e-07 - syst_JES_EtaIntercalibration_Stat215: 3.997855095860779e-05 - syst_JES_EtaIntercalibration_Stat216: 4.042823858394031e-05 - syst_JES_EtaIntercalibration_Stat217: 1.6541005221950337e-06 - syst_JES_EtaIntercalibration_Stat218: 9.448965710594996e-09 - syst_JES_EtaIntercalibration_Stat219: 9.335201484167334e-05 + syst_JES_EtaIntercalibration_Stat213: 2.74616656e-20 + syst_JES_EtaIntercalibration_Stat214: 3.44307124e-07 + syst_JES_EtaIntercalibration_Stat215: 3.99785510e-05 + syst_JES_EtaIntercalibration_Stat216: 4.04282386e-05 + syst_JES_EtaIntercalibration_Stat217: 1.65410052e-06 + syst_JES_EtaIntercalibration_Stat218: 9.44896571e-09 + syst_JES_EtaIntercalibration_Stat219: 9.33520148e-05 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 6.561004858251516e-05 - syst_JES_EtaIntercalibration_Stat221: 2.955085648081964e-06 - syst_JES_EtaIntercalibration_Stat222: 2.513205721779882e-09 + syst_JES_EtaIntercalibration_Stat220: 6.56100486e-05 + syst_JES_EtaIntercalibration_Stat221: 2.95508565e-06 + syst_JES_EtaIntercalibration_Stat222: 2.51320572e-09 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 syst_JES_EtaIntercalibration_Stat225: 0.0 - syst_JES_EtaIntercalibration_Stat226: 2.25434619124925e-16 - syst_JES_EtaIntercalibration_Stat227: 8.110256269070663e-10 - syst_JES_EtaIntercalibration_Stat228: 9.285407960881416e-10 - syst_JES_EtaIntercalibration_Stat229: 4.495537871045021e-20 + syst_JES_EtaIntercalibration_Stat226: 2.25434619e-16 + syst_JES_EtaIntercalibration_Stat227: 8.11025627e-10 + syst_JES_EtaIntercalibration_Stat228: 9.28540796e-10 + syst_JES_EtaIntercalibration_Stat229: 4.49553787e-20 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 8.059232407617985e-16 - syst_JES_EtaIntercalibration_Stat231: 6.054298818814611e-10 - syst_JES_EtaIntercalibration_Stat232: 8.461068197383826e-10 - syst_JES_EtaIntercalibration_Stat233: 1.8143232209283986e-15 - syst_JES_EtaIntercalibration_Stat234: 1.1125828362418683e-32 + syst_JES_EtaIntercalibration_Stat230: 8.05923241e-16 + syst_JES_EtaIntercalibration_Stat231: 6.05429882e-10 + syst_JES_EtaIntercalibration_Stat232: 8.46106820e-10 + syst_JES_EtaIntercalibration_Stat233: 1.81432322e-15 + syst_JES_EtaIntercalibration_Stat234: 1.11258284e-32 syst_JES_EtaIntercalibration_Stat235: 0.0 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 - syst_JES_EtaIntercalibration_Stat238: 1.454923203747361e-26 - syst_JES_EtaIntercalibration_Stat239: 2.12594561313313e-33 + syst_JES_EtaIntercalibration_Stat238: 1.45492320e-26 + syst_JES_EtaIntercalibration_Stat239: 2.12594561e-33 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 - syst_JES_EtaIntercalibration_Stat242: 5.311893894836379e-33 - syst_JES_EtaIntercalibration_Stat243: 1.2592009371025737e-26 + syst_JES_EtaIntercalibration_Stat242: 5.31189389e-33 + syst_JES_EtaIntercalibration_Stat243: 1.25920094e-26 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 syst_JES_EtaIntercalibration_Stat27: 0.0 - syst_JES_EtaIntercalibration_Stat28: 6.23191880563282e-07 - syst_JES_EtaIntercalibration_Stat29: 0.0003097491080967789 + syst_JES_EtaIntercalibration_Stat28: 6.23191881e-07 + syst_JES_EtaIntercalibration_Stat29: 3.09749108e-04 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 0.0011035815545305204 - syst_JES_EtaIntercalibration_Stat31: 0.0013375610154306979 - syst_JES_EtaIntercalibration_Stat32: 7.246743958496118e-06 - syst_JES_EtaIntercalibration_Stat33: 0.0003963989458865904 - syst_JES_EtaIntercalibration_Stat34: 0.001181169049575462 - syst_JES_EtaIntercalibration_Stat35: 0.0008395047230361483 - syst_JES_EtaIntercalibration_Stat36: 0.0004825456861272309 - syst_JES_EtaIntercalibration_Stat37: 4.549231446079656e-07 + syst_JES_EtaIntercalibration_Stat30: 1.10358155e-03 + syst_JES_EtaIntercalibration_Stat31: 1.33756102e-03 + syst_JES_EtaIntercalibration_Stat32: 7.24674396e-06 + syst_JES_EtaIntercalibration_Stat33: 3.96398946e-04 + syst_JES_EtaIntercalibration_Stat34: 1.18116905e-03 + syst_JES_EtaIntercalibration_Stat35: 8.39504723e-04 + syst_JES_EtaIntercalibration_Stat36: 4.82545686e-04 + syst_JES_EtaIntercalibration_Stat37: 4.54923145e-07 syst_JES_EtaIntercalibration_Stat38: 0.0 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 @@ -14360,20 +14360,20 @@ bins: syst_JES_EtaIntercalibration_Stat48: 0.0 syst_JES_EtaIntercalibration_Stat49: 0.0 syst_JES_EtaIntercalibration_Stat5: 0.0 - syst_JES_EtaIntercalibration_Stat50: 6.313325193588558e-07 - syst_JES_EtaIntercalibration_Stat51: 0.0004875735508618161 - syst_JES_EtaIntercalibration_Stat52: 0.004574656125601136 - syst_JES_EtaIntercalibration_Stat53: 0.0006264533422370734 - syst_JES_EtaIntercalibration_Stat54: 0.0001823348207967968 - syst_JES_EtaIntercalibration_Stat55: 0.0006567031806684053 - syst_JES_EtaIntercalibration_Stat56: 0.002416445530112359 - syst_JES_EtaIntercalibration_Stat57: 0.003069924225449221 - syst_JES_EtaIntercalibration_Stat58: 0.00034689737675572003 - syst_JES_EtaIntercalibration_Stat59: 2.3535184017763702e-06 + syst_JES_EtaIntercalibration_Stat50: 6.31332519e-07 + syst_JES_EtaIntercalibration_Stat51: 4.87573551e-04 + syst_JES_EtaIntercalibration_Stat52: 4.57465613e-03 + syst_JES_EtaIntercalibration_Stat53: 6.26453342e-04 + syst_JES_EtaIntercalibration_Stat54: 1.82334821e-04 + syst_JES_EtaIntercalibration_Stat55: 6.56703181e-04 + syst_JES_EtaIntercalibration_Stat56: 2.41644553e-03 + syst_JES_EtaIntercalibration_Stat57: 3.06992423e-03 + syst_JES_EtaIntercalibration_Stat58: 3.46897377e-04 + syst_JES_EtaIntercalibration_Stat59: 2.35351840e-06 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 4.5899346400575246e-05 - syst_JES_EtaIntercalibration_Stat62: 4.5899346400575246e-05 + syst_JES_EtaIntercalibration_Stat61: 4.58993464e-05 + syst_JES_EtaIntercalibration_Stat62: 4.58993464e-05 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 @@ -14381,218 +14381,218 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 6.23191880563282e-07 + syst_JES_EtaIntercalibration_Stat7: 6.23191881e-07 syst_JES_EtaIntercalibration_Stat70: 0.0 syst_JES_EtaIntercalibration_Stat71: 0.0 - syst_JES_EtaIntercalibration_Stat72: 4.3344571459411154e-05 - syst_JES_EtaIntercalibration_Stat73: 0.0013315322405033985 - syst_JES_EtaIntercalibration_Stat74: 0.019698433947905606 - syst_JES_EtaIntercalibration_Stat75: 0.013176535963598322 - syst_JES_EtaIntercalibration_Stat76: 0.0011014614291930517 - syst_JES_EtaIntercalibration_Stat77: 0.0010282989679563038 - syst_JES_EtaIntercalibration_Stat78: 0.022531615788265163 - syst_JES_EtaIntercalibration_Stat79: 0.008136125168039144 - syst_JES_EtaIntercalibration_Stat8: 0.00010606093625836047 - syst_JES_EtaIntercalibration_Stat80: 0.0017964974255478352 - syst_JES_EtaIntercalibration_Stat81: 7.639210086782534e-06 - syst_JES_EtaIntercalibration_Stat82: 4.5899346400575246e-05 - syst_JES_EtaIntercalibration_Stat83: 4.5899346400575246e-05 - syst_JES_EtaIntercalibration_Stat84: 4.5899346400575246e-05 + syst_JES_EtaIntercalibration_Stat72: 4.33445715e-05 + syst_JES_EtaIntercalibration_Stat73: 1.33153224e-03 + syst_JES_EtaIntercalibration_Stat74: 1.96984339e-02 + syst_JES_EtaIntercalibration_Stat75: 1.31765360e-02 + syst_JES_EtaIntercalibration_Stat76: 1.10146143e-03 + syst_JES_EtaIntercalibration_Stat77: 1.02829897e-03 + syst_JES_EtaIntercalibration_Stat78: 2.25316158e-02 + syst_JES_EtaIntercalibration_Stat79: 8.13612517e-03 + syst_JES_EtaIntercalibration_Stat8: 1.06060936e-04 + syst_JES_EtaIntercalibration_Stat80: 1.79649743e-03 + syst_JES_EtaIntercalibration_Stat81: 7.63921009e-06 + syst_JES_EtaIntercalibration_Stat82: 4.58993464e-05 + syst_JES_EtaIntercalibration_Stat83: 4.58993464e-05 + syst_JES_EtaIntercalibration_Stat84: 4.58993464e-05 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 syst_JES_EtaIntercalibration_Stat89: 0.0 - syst_JES_EtaIntercalibration_Stat9: 9.588297450538339e-05 + syst_JES_EtaIntercalibration_Stat9: 9.58829745e-05 syst_JES_EtaIntercalibration_Stat90: 0.0 syst_JES_EtaIntercalibration_Stat91: 0.0 syst_JES_EtaIntercalibration_Stat92: 0.0 - syst_JES_EtaIntercalibration_Stat93: 3.7793348621152903e-05 - syst_JES_EtaIntercalibration_Stat94: 0.001209545867332343 - syst_JES_EtaIntercalibration_Stat95: 0.062228316705499914 - syst_JES_EtaIntercalibration_Stat96: 0.06090514920759984 - syst_JES_EtaIntercalibration_Stat97: 0.00041947978497181476 - syst_JES_EtaIntercalibration_Stat98: 0.0012146923456888168 - syst_JES_EtaIntercalibration_Stat99: 0.057125245513695605 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.09144442410557355 - syst_JES_Flavour_Comp: 0.4392054644468805 - syst_JES_Flavour_Response: 10.115637449019218 - syst_JES_Gjet_Generator: 9.0160836703083 - syst_JES_Gjet_OOC: 5.172380955614155 - syst_JES_Gjet_Purity: 1.6885978650939957 - syst_JES_Gjet_Stat1: 0.0025573097192166613 - syst_JES_Gjet_Stat10: 0.5063040489666264 - syst_JES_Gjet_Stat11: 0.09297803934263187 - syst_JES_Gjet_Stat12: 0.12811319096798737 - syst_JES_Gjet_Stat13: 0.05413562851764077 - syst_JES_Gjet_Stat14: 0.006124241178097087 - syst_JES_Gjet_Stat15: 6.1695314198729874e-06 + syst_JES_EtaIntercalibration_Stat93: 3.77933486e-05 + syst_JES_EtaIntercalibration_Stat94: 1.20954587e-03 + syst_JES_EtaIntercalibration_Stat95: 6.22283167e-02 + syst_JES_EtaIntercalibration_Stat96: 6.09051492e-02 + syst_JES_EtaIntercalibration_Stat97: 4.19479785e-04 + syst_JES_EtaIntercalibration_Stat98: 1.21469235e-03 + syst_JES_EtaIntercalibration_Stat99: 5.71252455e-02 + syst_JES_EtaIntercalibration_TotalStat_MJB: 9.14444241e-02 + syst_JES_Flavour_Comp: 4.39205464e-01 + syst_JES_Flavour_Response: 1.01156374e+01 + syst_JES_Gjet_Generator: 9.01608367e+00 + syst_JES_Gjet_OOC: 5.17238096e+00 + syst_JES_Gjet_Purity: 1.68859787e+00 + syst_JES_Gjet_Stat1: 2.55730972e-03 + syst_JES_Gjet_Stat10: 5.06304049e-01 + syst_JES_Gjet_Stat11: 9.29780393e-02 + syst_JES_Gjet_Stat12: 1.28113191e-01 + syst_JES_Gjet_Stat13: 5.41356285e-02 + syst_JES_Gjet_Stat14: 6.12424118e-03 + syst_JES_Gjet_Stat15: 6.16953142e-06 syst_JES_Gjet_Stat2: 0.0 - syst_JES_Gjet_Stat3: 0.01176149100879646 - syst_JES_Gjet_Stat4: 0.023657566971267356 - syst_JES_Gjet_Stat5: 0.04430660757720004 - syst_JES_Gjet_Stat6: 0.1431485161466929 - syst_JES_Gjet_Stat7: 0.27485990522446163 - syst_JES_Gjet_Stat8: 0.265063426371878 - syst_JES_Gjet_Stat9: 0.4915454683953459 - syst_JES_Gjet_Veto: 2.184945022191634 - syst_JES_Gjet_dPhi: 0.5922657068411102 - syst_JES_LArESZee: 8.39967154119731 - syst_JES_LArEsmear: 0.6787989687676316 - syst_JES_LAr_JVT: 1.037455207466809 - syst_JES_MJB_Alpha: 9.779110969267201e-06 - syst_JES_MJB_Asym: 0.03264424633453804 - syst_JES_MJB_Beta: 0.00045552933761940686 - syst_JES_MJB_Fragmentation: 0.10897176193858664 - syst_JES_MJB_Stat1: 0.000788127024977573 - syst_JES_MJB_Stat10: 3.002510076949169e-16 - syst_JES_MJB_Stat11: 1.3908367984778086e-20 - syst_JES_MJB_Stat12: 8.093873423769363e-21 - syst_JES_MJB_Stat13: 5.5659452701225866e-21 + syst_JES_Gjet_Stat3: 1.17614910e-02 + syst_JES_Gjet_Stat4: 2.36575670e-02 + syst_JES_Gjet_Stat5: 4.43066076e-02 + syst_JES_Gjet_Stat6: 1.43148516e-01 + syst_JES_Gjet_Stat7: 2.74859905e-01 + syst_JES_Gjet_Stat8: 2.65063426e-01 + syst_JES_Gjet_Stat9: 4.91545468e-01 + syst_JES_Gjet_Veto: 2.18494502e+00 + syst_JES_Gjet_dPhi: 5.92265707e-01 + syst_JES_LArESZee: 8.39967154e+00 + syst_JES_LArEsmear: 6.78798969e-01 + syst_JES_LAr_JVT: 1.03745521e+00 + syst_JES_MJB_Alpha: 9.77911097e-06 + syst_JES_MJB_Asym: 3.26442463e-02 + syst_JES_MJB_Beta: 4.55529338e-04 + syst_JES_MJB_Fragmentation: 1.08971762e-01 + syst_JES_MJB_Stat1: 7.88127025e-04 + syst_JES_MJB_Stat10: 3.00251008e-16 + syst_JES_MJB_Stat11: 1.39083680e-20 + syst_JES_MJB_Stat12: 8.09387342e-21 + syst_JES_MJB_Stat13: 5.56594527e-21 syst_JES_MJB_Stat14: 0.0 - syst_JES_MJB_Stat15: 1.1208471918598005e-41 + syst_JES_MJB_Stat15: 1.12084719e-41 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 0.012093348047583845 - syst_JES_MJB_Stat3: 0.004157775126194297 - syst_JES_MJB_Stat4: 0.0011243708697200403 - syst_JES_MJB_Stat5: 2.6171287702365736e-06 - syst_JES_MJB_Stat6: 1.8922655072689984e-06 - syst_JES_MJB_Stat7: 1.7857443826035123e-11 + syst_JES_MJB_Stat2: 1.20933480e-02 + syst_JES_MJB_Stat3: 4.15777513e-03 + syst_JES_MJB_Stat4: 1.12437087e-03 + syst_JES_MJB_Stat5: 2.61712877e-06 + syst_JES_MJB_Stat6: 1.89226551e-06 + syst_JES_MJB_Stat7: 1.78574438e-11 syst_JES_MJB_Stat8: 0.0 syst_JES_MJB_Stat9: 0.0 - syst_JES_MJB_Threshold: 0.03992576486430786 - syst_JES_Pileup_MuOffset: 8.9335812947552e-05 - syst_JES_Pileup_NPVOffset: 0.3464289576522147 - syst_JES_Pileup_Pt_term: 1.4365906584688624 - syst_JES_Pileup_Rho_topology: 3.4165324526484455 - syst_JES_PunchThrough_MC15: 7.398455024530458e-24 + syst_JES_MJB_Threshold: 3.99257649e-02 + syst_JES_Pileup_MuOffset: 8.93358129e-05 + syst_JES_Pileup_NPVOffset: 3.46428958e-01 + syst_JES_Pileup_Pt_term: 1.43659066e+00 + syst_JES_Pileup_Rho_topology: 3.41653245e+00 + syst_JES_PunchThrough_MC15: 7.39845502e-24 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 8.007249262387177 - syst_JES_Zjet_MuScale: 0.5407500046232084 - syst_JES_Zjet_MuSmearID: 0.10868003312476492 - syst_JES_Zjet_MuSmearMS: 0.6590602248656795 - syst_JES_Zjet_OOC: 2.923472421624668 - syst_JES_Zjet_Stat1: 0.03545818241252645 - syst_JES_Zjet_Stat10: 1.0848096273079437 - syst_JES_Zjet_Stat11: 1.1950432241136721 - syst_JES_Zjet_Stat12: 0.3795598338865692 - syst_JES_Zjet_Stat13: 0.12523830913502465 - syst_JES_Zjet_Stat2: 0.0067331814196559415 - syst_JES_Zjet_Stat3: 0.019632795903793222 - syst_JES_Zjet_Stat4: 0.023141548673327805 - syst_JES_Zjet_Stat5: 0.025834892587351704 - syst_JES_Zjet_Stat6: 0.04928033355203675 - syst_JES_Zjet_Stat7: 0.09272609274093242 - syst_JES_Zjet_Stat8: 0.16244607566820443 - syst_JES_Zjet_Stat9: 0.5024030851816099 - syst_JES_Zjet_Veto: 0.5280000757575704 - syst_JES_Zjet_dPhi: 0.549410747983692 + syst_JES_Zjet_MC: 8.00724926e+00 + syst_JES_Zjet_MuScale: 5.40750005e-01 + syst_JES_Zjet_MuSmearID: 1.08680033e-01 + syst_JES_Zjet_MuSmearMS: 6.59060225e-01 + syst_JES_Zjet_OOC: 2.92347242e+00 + syst_JES_Zjet_Stat1: 3.54581824e-02 + syst_JES_Zjet_Stat10: 1.08480963e+00 + syst_JES_Zjet_Stat11: 1.19504322e+00 + syst_JES_Zjet_Stat12: 3.79559834e-01 + syst_JES_Zjet_Stat13: 1.25238309e-01 + syst_JES_Zjet_Stat2: 6.73318142e-03 + syst_JES_Zjet_Stat3: 1.96327959e-02 + syst_JES_Zjet_Stat4: 2.31415487e-02 + syst_JES_Zjet_Stat5: 2.58348926e-02 + syst_JES_Zjet_Stat6: 4.92803336e-02 + syst_JES_Zjet_Stat7: 9.27260927e-02 + syst_JES_Zjet_Stat8: 1.62446076e-01 + syst_JES_Zjet_Stat9: 5.02403085e-01 + syst_JES_Zjet_Veto: 5.28000076e-01 + syst_JES_Zjet_dPhi: 5.49410748e-01 syst_PRW: 0.3461 syst_Unfolding_bias: 0.3601 - syst_cleaning: 2.411880749539662 + syst_cleaning: 2.41188075e+00 syst_lumi: 9.407 - stat: 1.6287 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 1.8876320483611206 - syst_JER_NP1: 0.1928171867339631 - syst_JER_NP2: 0.2364745810864246 - syst_JER_NP3: 0.40970819798974 - syst_JER_NP4: 0.18650994611548202 - syst_JER_NP5: 0.11444518251110442 - syst_JER_NP6: 4.4383801943952484e-29 - syst_JER_NP7: 0.15856656669991942 - syst_JER_NP8: 0.289184059035072 - syst_JES_EtaIntercalibration_Modelling: 1.5096035075475944 - syst_JES_EtaIntercalibration_NonClosure: 0.00022828429643757803 + syst_JER_NP0: 1.88763205e+00 + syst_JER_NP1: 1.92817187e-01 + syst_JER_NP2: 2.36474581e-01 + syst_JER_NP3: 4.09708198e-01 + syst_JER_NP4: 1.86509946e-01 + syst_JER_NP5: 1.14445183e-01 + syst_JER_NP6: 4.43838019e-29 + syst_JER_NP7: 1.58566567e-01 + syst_JER_NP8: 2.89184059e-01 + syst_JES_EtaIntercalibration_Modelling: 1.50960351e+00 + syst_JES_EtaIntercalibration_NonClosure: 2.28284296e-04 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 0.010855382754652183 - syst_JES_EtaIntercalibration_Stat101: 0.0006247222948438769 - syst_JES_EtaIntercalibration_Stat102: 6.283320381490028e-06 - syst_JES_EtaIntercalibration_Stat103: 2.9219697123686956e-06 - syst_JES_EtaIntercalibration_Stat104: 2.9219697123686956e-06 - syst_JES_EtaIntercalibration_Stat105: 2.9219697123686956e-06 + syst_JES_EtaIntercalibration_Stat100: 1.08553828e-02 + syst_JES_EtaIntercalibration_Stat101: 6.24722295e-04 + syst_JES_EtaIntercalibration_Stat102: 6.28332038e-06 + syst_JES_EtaIntercalibration_Stat103: 2.92196971e-06 + syst_JES_EtaIntercalibration_Stat104: 2.92196971e-06 + syst_JES_EtaIntercalibration_Stat105: 2.92196971e-06 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 0.0008391786162671211 - syst_JES_EtaIntercalibration_Stat111: 0.0008391786162671211 + syst_JES_EtaIntercalibration_Stat110: 8.39178616e-04 + syst_JES_EtaIntercalibration_Stat111: 8.39178616e-04 syst_JES_EtaIntercalibration_Stat112: 0.0 - syst_JES_EtaIntercalibration_Stat113: 0.0002633576266576497 - syst_JES_EtaIntercalibration_Stat114: 0.009206715918284869 - syst_JES_EtaIntercalibration_Stat115: 0.14730624791569433 - syst_JES_EtaIntercalibration_Stat116: 0.12430036846284888 - syst_JES_EtaIntercalibration_Stat117: 0.012907200190203916 - syst_JES_EtaIntercalibration_Stat118: 0.0011373523464608495 - syst_JES_EtaIntercalibration_Stat119: 0.11028349695217321 - syst_JES_EtaIntercalibration_Stat12: 0.00019682456858837515 - syst_JES_EtaIntercalibration_Stat120: 0.15460222346395927 - syst_JES_EtaIntercalibration_Stat121: 0.012762147272304925 - syst_JES_EtaIntercalibration_Stat122: 0.00015515170726743553 - syst_JES_EtaIntercalibration_Stat123: 2.9219697123686956e-06 - syst_JES_EtaIntercalibration_Stat124: 2.9219697123686956e-06 - syst_JES_EtaIntercalibration_Stat125: 2.9219697123686956e-06 + syst_JES_EtaIntercalibration_Stat113: 2.63357627e-04 + syst_JES_EtaIntercalibration_Stat114: 9.20671592e-03 + syst_JES_EtaIntercalibration_Stat115: 1.47306248e-01 + syst_JES_EtaIntercalibration_Stat116: 1.24300368e-01 + syst_JES_EtaIntercalibration_Stat117: 1.29072002e-02 + syst_JES_EtaIntercalibration_Stat118: 1.13735235e-03 + syst_JES_EtaIntercalibration_Stat119: 1.10283497e-01 + syst_JES_EtaIntercalibration_Stat12: 1.96824569e-04 + syst_JES_EtaIntercalibration_Stat120: 1.54602223e-01 + syst_JES_EtaIntercalibration_Stat121: 1.27621473e-02 + syst_JES_EtaIntercalibration_Stat122: 1.55151707e-04 + syst_JES_EtaIntercalibration_Stat123: 2.92196971e-06 + syst_JES_EtaIntercalibration_Stat124: 2.92196971e-06 + syst_JES_EtaIntercalibration_Stat125: 2.92196971e-06 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 5.833547119891979e-09 - syst_JES_EtaIntercalibration_Stat129: 0.0008391766717694376 - syst_JES_EtaIntercalibration_Stat13: 0.0006235596629032381 - syst_JES_EtaIntercalibration_Stat130: 0.0008391786162671211 - syst_JES_EtaIntercalibration_Stat131: 2.959208804731427e-07 - syst_JES_EtaIntercalibration_Stat132: 0.0020011031157838918 - syst_JES_EtaIntercalibration_Stat133: 0.06629351099466674 - syst_JES_EtaIntercalibration_Stat134: 0.7601681573836147 - syst_JES_EtaIntercalibration_Stat135: 0.49990499847471015 - syst_JES_EtaIntercalibration_Stat136: 0.04434542565755796 - syst_JES_EtaIntercalibration_Stat137: 0.04179053840284904 - syst_JES_EtaIntercalibration_Stat138: 0.4964287536998638 - syst_JES_EtaIntercalibration_Stat139: 0.5859502431947614 - syst_JES_EtaIntercalibration_Stat14: 5.162377431959038e-07 - syst_JES_EtaIntercalibration_Stat140: 0.05955808656261549 - syst_JES_EtaIntercalibration_Stat141: 0.0001313430639479299 + syst_JES_EtaIntercalibration_Stat128: 5.83354712e-09 + syst_JES_EtaIntercalibration_Stat129: 8.39176672e-04 + syst_JES_EtaIntercalibration_Stat13: 6.23559663e-04 + syst_JES_EtaIntercalibration_Stat130: 8.39178616e-04 + syst_JES_EtaIntercalibration_Stat131: 2.95920880e-07 + syst_JES_EtaIntercalibration_Stat132: 2.00110312e-03 + syst_JES_EtaIntercalibration_Stat133: 6.62935110e-02 + syst_JES_EtaIntercalibration_Stat134: 7.60168157e-01 + syst_JES_EtaIntercalibration_Stat135: 4.99904998e-01 + syst_JES_EtaIntercalibration_Stat136: 4.43454257e-02 + syst_JES_EtaIntercalibration_Stat137: 4.17905384e-02 + syst_JES_EtaIntercalibration_Stat138: 4.96428754e-01 + syst_JES_EtaIntercalibration_Stat139: 5.85950243e-01 + syst_JES_EtaIntercalibration_Stat14: 5.16237743e-07 + syst_JES_EtaIntercalibration_Stat140: 5.95580866e-02 + syst_JES_EtaIntercalibration_Stat141: 1.31343064e-04 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 2.9219697123686956e-06 - syst_JES_EtaIntercalibration_Stat144: 2.9219697123686956e-06 + syst_JES_EtaIntercalibration_Stat143: 2.92196971e-06 + syst_JES_EtaIntercalibration_Stat144: 2.92196971e-06 syst_JES_EtaIntercalibration_Stat145: 0.0 - syst_JES_EtaIntercalibration_Stat146: 5.833547119891979e-09 - syst_JES_EtaIntercalibration_Stat147: 0.0008391766717694376 + syst_JES_EtaIntercalibration_Stat146: 5.83354712e-09 + syst_JES_EtaIntercalibration_Stat147: 8.39176672e-04 syst_JES_EtaIntercalibration_Stat148: 0.0 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 0.00039274097061549356 - syst_JES_EtaIntercalibration_Stat151: 0.045200505251600895 - syst_JES_EtaIntercalibration_Stat152: 0.3908187431533958 - syst_JES_EtaIntercalibration_Stat153: 0.32698220135047107 - syst_JES_EtaIntercalibration_Stat154: 0.02225004044940143 - syst_JES_EtaIntercalibration_Stat155: 0.026275338756141665 - syst_JES_EtaIntercalibration_Stat156: 0.3094907228011851 - syst_JES_EtaIntercalibration_Stat157: 0.3584855172458157 - syst_JES_EtaIntercalibration_Stat158: 0.03585378533164246 - syst_JES_EtaIntercalibration_Stat159: 0.0005497781643535873 + syst_JES_EtaIntercalibration_Stat150: 3.92740971e-04 + syst_JES_EtaIntercalibration_Stat151: 4.52005053e-02 + syst_JES_EtaIntercalibration_Stat152: 3.90818743e-01 + syst_JES_EtaIntercalibration_Stat153: 3.26982201e-01 + syst_JES_EtaIntercalibration_Stat154: 2.22500404e-02 + syst_JES_EtaIntercalibration_Stat155: 2.62753388e-02 + syst_JES_EtaIntercalibration_Stat156: 3.09490723e-01 + syst_JES_EtaIntercalibration_Stat157: 3.58485517e-01 + syst_JES_EtaIntercalibration_Stat158: 3.58537853e-02 + syst_JES_EtaIntercalibration_Stat159: 5.49778164e-04 syst_JES_EtaIntercalibration_Stat16: 0.0 syst_JES_EtaIntercalibration_Stat160: 0.0 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 - syst_JES_EtaIntercalibration_Stat164: 5.833547119891979e-09 + syst_JES_EtaIntercalibration_Stat164: 5.83354712e-09 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 - syst_JES_EtaIntercalibration_Stat168: 0.00011661032061957466 - syst_JES_EtaIntercalibration_Stat169: 0.014770116688773993 + syst_JES_EtaIntercalibration_Stat168: 1.16610321e-04 + syst_JES_EtaIntercalibration_Stat169: 1.47701167e-02 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 0.13785835801648008 - syst_JES_EtaIntercalibration_Stat171: 0.11929924172013835 - syst_JES_EtaIntercalibration_Stat172: 0.012183688060271406 - syst_JES_EtaIntercalibration_Stat173: 0.007637478035974965 - syst_JES_EtaIntercalibration_Stat174: 0.10365085045478402 - syst_JES_EtaIntercalibration_Stat175: 0.12290994864127151 - syst_JES_EtaIntercalibration_Stat176: 0.011112922241696825 - syst_JES_EtaIntercalibration_Stat177: 0.0003079380457169916 + syst_JES_EtaIntercalibration_Stat170: 1.37858358e-01 + syst_JES_EtaIntercalibration_Stat171: 1.19299242e-01 + syst_JES_EtaIntercalibration_Stat172: 1.21836881e-02 + syst_JES_EtaIntercalibration_Stat173: 7.63747804e-03 + syst_JES_EtaIntercalibration_Stat174: 1.03650850e-01 + syst_JES_EtaIntercalibration_Stat175: 1.22909949e-01 + syst_JES_EtaIntercalibration_Stat176: 1.11129222e-02 + syst_JES_EtaIntercalibration_Stat177: 3.07938046e-04 syst_JES_EtaIntercalibration_Stat178: 0.0 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 @@ -14601,17 +14601,17 @@ bins: syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 syst_JES_EtaIntercalibration_Stat184: 0.0 - syst_JES_EtaIntercalibration_Stat185: 0.0002921103686964912 - syst_JES_EtaIntercalibration_Stat186: 0.012764812885428441 - syst_JES_EtaIntercalibration_Stat187: 0.06998197250006605 - syst_JES_EtaIntercalibration_Stat188: 0.05060074184238804 - syst_JES_EtaIntercalibration_Stat189: 0.00993122705157827 + syst_JES_EtaIntercalibration_Stat185: 2.92110369e-04 + syst_JES_EtaIntercalibration_Stat186: 1.27648129e-02 + syst_JES_EtaIntercalibration_Stat187: 6.99819725e-02 + syst_JES_EtaIntercalibration_Stat188: 5.06007418e-02 + syst_JES_EtaIntercalibration_Stat189: 9.93122705e-03 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 0.004827584326555052 - syst_JES_EtaIntercalibration_Stat191: 0.07615978121686012 - syst_JES_EtaIntercalibration_Stat192: 0.07810481931353531 - syst_JES_EtaIntercalibration_Stat193: 0.004189777584586084 - syst_JES_EtaIntercalibration_Stat194: 0.000275309475863073 + syst_JES_EtaIntercalibration_Stat190: 4.82758433e-03 + syst_JES_EtaIntercalibration_Stat191: 7.61597812e-02 + syst_JES_EtaIntercalibration_Stat192: 7.81048193e-02 + syst_JES_EtaIntercalibration_Stat193: 4.18977758e-03 + syst_JES_EtaIntercalibration_Stat194: 2.75309476e-04 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 syst_JES_EtaIntercalibration_Stat197: 0.0 @@ -14619,70 +14619,70 @@ bins: syst_JES_EtaIntercalibration_Stat199: 0.0 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 4.3439834253827445e-15 - syst_JES_EtaIntercalibration_Stat201: 0.00505008225180541 - syst_JES_EtaIntercalibration_Stat202: 0.028027402662394535 - syst_JES_EtaIntercalibration_Stat203: 0.020635262901160238 - syst_JES_EtaIntercalibration_Stat204: 0.0017580537534444163 - syst_JES_EtaIntercalibration_Stat205: 0.0011887930717748988 - syst_JES_EtaIntercalibration_Stat206: 0.018079050721760807 - syst_JES_EtaIntercalibration_Stat207: 0.019867657134146444 - syst_JES_EtaIntercalibration_Stat208: 0.002211828927078204 - syst_JES_EtaIntercalibration_Stat209: 7.103992671026625e-06 + syst_JES_EtaIntercalibration_Stat200: 4.34398343e-15 + syst_JES_EtaIntercalibration_Stat201: 5.05008225e-03 + syst_JES_EtaIntercalibration_Stat202: 2.80274027e-02 + syst_JES_EtaIntercalibration_Stat203: 2.06352629e-02 + syst_JES_EtaIntercalibration_Stat204: 1.75805375e-03 + syst_JES_EtaIntercalibration_Stat205: 1.18879307e-03 + syst_JES_EtaIntercalibration_Stat206: 1.80790507e-02 + syst_JES_EtaIntercalibration_Stat207: 1.98676571e-02 + syst_JES_EtaIntercalibration_Stat208: 2.21182893e-03 + syst_JES_EtaIntercalibration_Stat209: 7.10399267e-06 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 syst_JES_EtaIntercalibration_Stat211: 0.0 syst_JES_EtaIntercalibration_Stat212: 0.0 - syst_JES_EtaIntercalibration_Stat213: 4.479083388373117e-15 - syst_JES_EtaIntercalibration_Stat214: 9.810038196026556e-06 - syst_JES_EtaIntercalibration_Stat215: 5.8868730876416896e-05 - syst_JES_EtaIntercalibration_Stat216: 0.00013507066668969989 - syst_JES_EtaIntercalibration_Stat217: 4.235786872498072e-05 - syst_JES_EtaIntercalibration_Stat218: 1.3455282187676333e-06 - syst_JES_EtaIntercalibration_Stat219: 0.0005067901465843629 + syst_JES_EtaIntercalibration_Stat213: 4.47908339e-15 + syst_JES_EtaIntercalibration_Stat214: 9.81003820e-06 + syst_JES_EtaIntercalibration_Stat215: 5.88687309e-05 + syst_JES_EtaIntercalibration_Stat216: 1.35070667e-04 + syst_JES_EtaIntercalibration_Stat217: 4.23578687e-05 + syst_JES_EtaIntercalibration_Stat218: 1.34552822e-06 + syst_JES_EtaIntercalibration_Stat219: 5.06790147e-04 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 3.798638275750931e-05 - syst_JES_EtaIntercalibration_Stat221: 1.776312559067238e-05 - syst_JES_EtaIntercalibration_Stat222: 3.564560557802507e-07 + syst_JES_EtaIntercalibration_Stat220: 3.79863828e-05 + syst_JES_EtaIntercalibration_Stat221: 1.77631256e-05 + syst_JES_EtaIntercalibration_Stat222: 3.56456056e-07 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 - syst_JES_EtaIntercalibration_Stat225: 1.0513548401943087e-38 - syst_JES_EtaIntercalibration_Stat226: 2.3336308084185035e-12 - syst_JES_EtaIntercalibration_Stat227: 1.1815803696744459e-07 - syst_JES_EtaIntercalibration_Stat228: 1.353255433205424e-07 - syst_JES_EtaIntercalibration_Stat229: 7.33436914465041e-15 + syst_JES_EtaIntercalibration_Stat225: 1.05135484e-38 + syst_JES_EtaIntercalibration_Stat226: 2.33363081e-12 + syst_JES_EtaIntercalibration_Stat227: 1.18158037e-07 + syst_JES_EtaIntercalibration_Stat228: 1.35325543e-07 + syst_JES_EtaIntercalibration_Stat229: 7.33436914e-15 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 8.356279121116048e-12 - syst_JES_EtaIntercalibration_Stat231: 9.248079692563208e-08 - syst_JES_EtaIntercalibration_Stat232: 1.1149214980081743e-07 - syst_JES_EtaIntercalibration_Stat233: 1.881873202423166e-11 - syst_JES_EtaIntercalibration_Stat234: 2.0083129113761133e-24 + syst_JES_EtaIntercalibration_Stat230: 8.35627912e-12 + syst_JES_EtaIntercalibration_Stat231: 9.24807969e-08 + syst_JES_EtaIntercalibration_Stat232: 1.11492150e-07 + syst_JES_EtaIntercalibration_Stat233: 1.88187320e-11 + syst_JES_EtaIntercalibration_Stat234: 2.00831291e-24 syst_JES_EtaIntercalibration_Stat235: 0.0 syst_JES_EtaIntercalibration_Stat236: 0.0 - syst_JES_EtaIntercalibration_Stat237: 5.162565907569607e-38 - syst_JES_EtaIntercalibration_Stat238: 6.038890005198262e-20 - syst_JES_EtaIntercalibration_Stat239: 3.837810182903787e-25 + syst_JES_EtaIntercalibration_Stat237: 5.16256591e-38 + syst_JES_EtaIntercalibration_Stat238: 6.03889001e-20 + syst_JES_EtaIntercalibration_Stat239: 3.83781018e-25 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 - syst_JES_EtaIntercalibration_Stat241: 9.238759007572391e-38 - syst_JES_EtaIntercalibration_Stat242: 9.58967657170981e-25 - syst_JES_EtaIntercalibration_Stat243: 5.2255972864353024e-20 + syst_JES_EtaIntercalibration_Stat241: 9.23875901e-38 + syst_JES_EtaIntercalibration_Stat242: 9.58967657e-25 + syst_JES_EtaIntercalibration_Stat243: 5.22559729e-20 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 syst_JES_EtaIntercalibration_Stat27: 0.0 - syst_JES_EtaIntercalibration_Stat28: 4.532776963407752e-08 - syst_JES_EtaIntercalibration_Stat29: 5.126445942365919e-05 + syst_JES_EtaIntercalibration_Stat28: 4.53277696e-08 + syst_JES_EtaIntercalibration_Stat29: 5.12644594e-05 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 0.00027363780349213445 - syst_JES_EtaIntercalibration_Stat31: 0.00036395955819293986 - syst_JES_EtaIntercalibration_Stat32: 5.97261205420208e-07 - syst_JES_EtaIntercalibration_Stat33: 3.2225719026113285e-05 - syst_JES_EtaIntercalibration_Stat34: 0.0007568001651691151 - syst_JES_EtaIntercalibration_Stat35: 0.0003271008865778264 - syst_JES_EtaIntercalibration_Stat36: 0.0001454313253841826 - syst_JES_EtaIntercalibration_Stat37: 3.308909862779583e-08 + syst_JES_EtaIntercalibration_Stat30: 2.73637803e-04 + syst_JES_EtaIntercalibration_Stat31: 3.63959558e-04 + syst_JES_EtaIntercalibration_Stat32: 5.97261205e-07 + syst_JES_EtaIntercalibration_Stat33: 3.22257190e-05 + syst_JES_EtaIntercalibration_Stat34: 7.56800165e-04 + syst_JES_EtaIntercalibration_Stat35: 3.27100887e-04 + syst_JES_EtaIntercalibration_Stat36: 1.45431325e-04 + syst_JES_EtaIntercalibration_Stat37: 3.30890986e-08 syst_JES_EtaIntercalibration_Stat38: 0.0 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 @@ -14697,20 +14697,20 @@ bins: syst_JES_EtaIntercalibration_Stat48: 0.0 syst_JES_EtaIntercalibration_Stat49: 0.0 syst_JES_EtaIntercalibration_Stat5: 0.0 - syst_JES_EtaIntercalibration_Stat50: 4.591666690865094e-08 - syst_JES_EtaIntercalibration_Stat51: 0.00010728074419484608 - syst_JES_EtaIntercalibration_Stat52: 0.0010131640883884506 - syst_JES_EtaIntercalibration_Stat53: 0.0005353152972781554 - syst_JES_EtaIntercalibration_Stat54: 3.827029392035029e-05 - syst_JES_EtaIntercalibration_Stat55: 0.00015469565863333076 - syst_JES_EtaIntercalibration_Stat56: 0.0007539774847434106 - syst_JES_EtaIntercalibration_Stat57: 0.0014264528269452167 - syst_JES_EtaIntercalibration_Stat58: 0.00015278316399394272 - syst_JES_EtaIntercalibration_Stat59: 1.8258948066085298e-07 + syst_JES_EtaIntercalibration_Stat50: 4.59166669e-08 + syst_JES_EtaIntercalibration_Stat51: 1.07280744e-04 + syst_JES_EtaIntercalibration_Stat52: 1.01316409e-03 + syst_JES_EtaIntercalibration_Stat53: 5.35315297e-04 + syst_JES_EtaIntercalibration_Stat54: 3.82702939e-05 + syst_JES_EtaIntercalibration_Stat55: 1.54695659e-04 + syst_JES_EtaIntercalibration_Stat56: 7.53977485e-04 + syst_JES_EtaIntercalibration_Stat57: 1.42645283e-03 + syst_JES_EtaIntercalibration_Stat58: 1.52783164e-04 + syst_JES_EtaIntercalibration_Stat59: 1.82589481e-07 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 2.9219697123686956e-06 - syst_JES_EtaIntercalibration_Stat62: 2.9219697123686956e-06 + syst_JES_EtaIntercalibration_Stat61: 2.92196971e-06 + syst_JES_EtaIntercalibration_Stat62: 2.92196971e-06 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 @@ -14718,218 +14718,218 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 4.532776963407752e-08 + syst_JES_EtaIntercalibration_Stat7: 4.53277696e-08 syst_JES_EtaIntercalibration_Stat70: 0.0 syst_JES_EtaIntercalibration_Stat71: 0.0 - syst_JES_EtaIntercalibration_Stat72: 6.774916733805663e-06 - syst_JES_EtaIntercalibration_Stat73: 0.0004762001469970373 - syst_JES_EtaIntercalibration_Stat74: 0.008338719870579658 - syst_JES_EtaIntercalibration_Stat75: 0.0013120321289892256 - syst_JES_EtaIntercalibration_Stat76: 0.0005306272208434091 - syst_JES_EtaIntercalibration_Stat77: 0.0004546773004010646 - syst_JES_EtaIntercalibration_Stat78: 0.004762774611505357 - syst_JES_EtaIntercalibration_Stat79: 0.0036679285748225793 - syst_JES_EtaIntercalibration_Stat8: 2.0382391910666425e-05 - syst_JES_EtaIntercalibration_Stat80: 0.0007465668226455017 - syst_JES_EtaIntercalibration_Stat81: 6.134923960408963e-07 - syst_JES_EtaIntercalibration_Stat82: 2.9219697123686956e-06 - syst_JES_EtaIntercalibration_Stat83: 2.9219697123686956e-06 - syst_JES_EtaIntercalibration_Stat84: 2.9219697123686956e-06 + syst_JES_EtaIntercalibration_Stat72: 6.77491673e-06 + syst_JES_EtaIntercalibration_Stat73: 4.76200147e-04 + syst_JES_EtaIntercalibration_Stat74: 8.33871987e-03 + syst_JES_EtaIntercalibration_Stat75: 1.31203213e-03 + syst_JES_EtaIntercalibration_Stat76: 5.30627221e-04 + syst_JES_EtaIntercalibration_Stat77: 4.54677300e-04 + syst_JES_EtaIntercalibration_Stat78: 4.76277461e-03 + syst_JES_EtaIntercalibration_Stat79: 3.66792857e-03 + syst_JES_EtaIntercalibration_Stat8: 2.03823919e-05 + syst_JES_EtaIntercalibration_Stat80: 7.46566823e-04 + syst_JES_EtaIntercalibration_Stat81: 6.13492396e-07 + syst_JES_EtaIntercalibration_Stat82: 2.92196971e-06 + syst_JES_EtaIntercalibration_Stat83: 2.92196971e-06 + syst_JES_EtaIntercalibration_Stat84: 2.92196971e-06 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 syst_JES_EtaIntercalibration_Stat89: 0.0 - syst_JES_EtaIntercalibration_Stat9: 1.2254049249125777e-05 + syst_JES_EtaIntercalibration_Stat9: 1.22540492e-05 syst_JES_EtaIntercalibration_Stat90: 0.0 syst_JES_EtaIntercalibration_Stat91: 0.0 syst_JES_EtaIntercalibration_Stat92: 0.0 - syst_JES_EtaIntercalibration_Stat93: 6.146182290658161e-06 - syst_JES_EtaIntercalibration_Stat94: 0.0007636077919979602 - syst_JES_EtaIntercalibration_Stat95: 0.016472103781848876 - syst_JES_EtaIntercalibration_Stat96: 0.01412015115889345 - syst_JES_EtaIntercalibration_Stat97: 0.00037700133952016666 - syst_JES_EtaIntercalibration_Stat98: 0.0008320349656564921 - syst_JES_EtaIntercalibration_Stat99: 0.014127819470817144 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0633304371925538 - syst_JES_Flavour_Comp: 0.25284213948628104 - syst_JES_Flavour_Response: 5.149238972896868 - syst_JES_Gjet_Generator: 4.780513649180389 - syst_JES_Gjet_OOC: 2.84644282394711 - syst_JES_Gjet_Purity: 0.8584390528744601 - syst_JES_Gjet_Stat1: 0.0015485955831010237 - syst_JES_Gjet_Stat10: 0.33301286386564716 - syst_JES_Gjet_Stat11: 0.2228001795331413 - syst_JES_Gjet_Stat12: 0.03204309704132858 - syst_JES_Gjet_Stat13: 0.051881839549113906 - syst_JES_Gjet_Stat14: 0.004853779352216168 - syst_JES_Gjet_Stat15: 0.0001700875529506789 + syst_JES_EtaIntercalibration_Stat93: 6.14618229e-06 + syst_JES_EtaIntercalibration_Stat94: 7.63607792e-04 + syst_JES_EtaIntercalibration_Stat95: 1.64721038e-02 + syst_JES_EtaIntercalibration_Stat96: 1.41201512e-02 + syst_JES_EtaIntercalibration_Stat97: 3.77001340e-04 + syst_JES_EtaIntercalibration_Stat98: 8.32034966e-04 + syst_JES_EtaIntercalibration_Stat99: 1.41278195e-02 + syst_JES_EtaIntercalibration_TotalStat_MJB: 6.33304372e-02 + syst_JES_Flavour_Comp: 2.52842139e-01 + syst_JES_Flavour_Response: 5.14923897e+00 + syst_JES_Gjet_Generator: 4.78051365e+00 + syst_JES_Gjet_OOC: 2.84644282e+00 + syst_JES_Gjet_Purity: 8.58439053e-01 + syst_JES_Gjet_Stat1: 1.54859558e-03 + syst_JES_Gjet_Stat10: 3.33012864e-01 + syst_JES_Gjet_Stat11: 2.22800180e-01 + syst_JES_Gjet_Stat12: 3.20430970e-02 + syst_JES_Gjet_Stat13: 5.18818395e-02 + syst_JES_Gjet_Stat14: 4.85377935e-03 + syst_JES_Gjet_Stat15: 1.70087553e-04 syst_JES_Gjet_Stat2: 0.0 - syst_JES_Gjet_Stat3: 0.006183421383020892 - syst_JES_Gjet_Stat4: 0.01280118708362627 - syst_JES_Gjet_Stat5: 0.02313980991711038 - syst_JES_Gjet_Stat6: 0.04848255253181293 - syst_JES_Gjet_Stat7: 0.10129610789660183 - syst_JES_Gjet_Stat8: 0.10952488792507392 - syst_JES_Gjet_Stat9: 0.24588921794173896 - syst_JES_Gjet_Veto: 1.1918472081185576 - syst_JES_Gjet_dPhi: 0.2722749162152107 - syst_JES_LArESZee: 4.919804340621688 - syst_JES_LArEsmear: 0.3759095139790958 - syst_JES_LAr_JVT: 0.5752069605802768 - syst_JES_MJB_Alpha: 0.00027266293673324947 - syst_JES_MJB_Asym: 0.01927257421181716 - syst_JES_MJB_Beta: 0.0002816929869178633 - syst_JES_MJB_Fragmentation: 0.06615753226201837 - syst_JES_MJB_Stat1: 0.0008889946836173994 - syst_JES_MJB_Stat10: 3.1133621686713353e-12 - syst_JES_MJB_Stat11: 2.2689865579152292e-15 - syst_JES_MJB_Stat12: 1.320688740771269e-15 - syst_JES_MJB_Stat13: 9.079410333276055e-16 + syst_JES_Gjet_Stat3: 6.18342138e-03 + syst_JES_Gjet_Stat4: 1.28011871e-02 + syst_JES_Gjet_Stat5: 2.31398099e-02 + syst_JES_Gjet_Stat6: 4.84825525e-02 + syst_JES_Gjet_Stat7: 1.01296108e-01 + syst_JES_Gjet_Stat8: 1.09524888e-01 + syst_JES_Gjet_Stat9: 2.45889218e-01 + syst_JES_Gjet_Veto: 1.19184721e+00 + syst_JES_Gjet_dPhi: 2.72274916e-01 + syst_JES_LArESZee: 4.91980434e+00 + syst_JES_LArEsmear: 3.75909514e-01 + syst_JES_LAr_JVT: 5.75206961e-01 + syst_JES_MJB_Alpha: 2.72662937e-04 + syst_JES_MJB_Asym: 1.92725742e-02 + syst_JES_MJB_Beta: 2.81692987e-04 + syst_JES_MJB_Fragmentation: 6.61575323e-02 + syst_JES_MJB_Stat1: 8.88994684e-04 + syst_JES_MJB_Stat10: 3.11336217e-12 + syst_JES_MJB_Stat11: 2.26898656e-15 + syst_JES_MJB_Stat12: 1.32068874e-15 + syst_JES_MJB_Stat13: 9.07941033e-16 syst_JES_MJB_Stat14: 0.0 - syst_JES_MJB_Stat15: 1.566284990032146e-31 + syst_JES_MJB_Stat15: 1.56628499e-31 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 0.008666936771431993 - syst_JES_MJB_Stat3: 0.00641422512857165 - syst_JES_MJB_Stat4: 0.0030454954124903883 - syst_JES_MJB_Stat5: 1.8662847451554652e-05 - syst_JES_MJB_Stat6: 5.277558810662369e-05 - syst_JES_MJB_Stat7: 1.8091270685056924e-08 - syst_JES_MJB_Stat8: 3.6849380931027863e-37 + syst_JES_MJB_Stat2: 8.66693677e-03 + syst_JES_MJB_Stat3: 6.41422513e-03 + syst_JES_MJB_Stat4: 3.04549541e-03 + syst_JES_MJB_Stat5: 1.86628475e-05 + syst_JES_MJB_Stat6: 5.27755881e-05 + syst_JES_MJB_Stat7: 1.80912707e-08 + syst_JES_MJB_Stat8: 3.68493809e-37 syst_JES_MJB_Stat9: 0.0 - syst_JES_MJB_Threshold: 0.02679015117538533 - syst_JES_Pileup_MuOffset: 0.0024893157192288806 - syst_JES_Pileup_NPVOffset: 0.16336511255467 - syst_JES_Pileup_Pt_term: 0.770813017209751 - syst_JES_Pileup_Rho_topology: 1.6883862117418516 - syst_JES_PunchThrough_MC15: 3.071792107220355e-17 + syst_JES_MJB_Threshold: 2.67901512e-02 + syst_JES_Pileup_MuOffset: 2.48931572e-03 + syst_JES_Pileup_NPVOffset: 1.63365113e-01 + syst_JES_Pileup_Pt_term: 7.70813017e-01 + syst_JES_Pileup_Rho_topology: 1.68838621e+00 + syst_JES_PunchThrough_MC15: 3.07179211e-17 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 4.3598918564569935 - syst_JES_Zjet_MuScale: 0.28353724623054377 - syst_JES_Zjet_MuSmearID: 0.05073851273933835 - syst_JES_Zjet_MuSmearMS: 0.40557977612302126 - syst_JES_Zjet_OOC: 1.47676805220048 - syst_JES_Zjet_Stat1: 0.019283575913196183 - syst_JES_Zjet_Stat10: 0.4949879064179245 - syst_JES_Zjet_Stat11: 0.7454842251852147 - syst_JES_Zjet_Stat12: 0.46245231916382473 - syst_JES_Zjet_Stat13: 0.08353852464581836 - syst_JES_Zjet_Stat2: 0.0038536197684774245 - syst_JES_Zjet_Stat3: 0.010869484842869601 - syst_JES_Zjet_Stat4: 0.011976794427141179 - syst_JES_Zjet_Stat5: 0.014193132872977693 - syst_JES_Zjet_Stat6: 0.020928375474460505 - syst_JES_Zjet_Stat7: 0.03229670997176028 - syst_JES_Zjet_Stat8: 0.05218883692898319 - syst_JES_Zjet_Stat9: 0.19710182647555552 - syst_JES_Zjet_Veto: 0.2778190778186408 - syst_JES_Zjet_dPhi: 0.267466689514788 + syst_JES_Zjet_MC: 4.35989186e+00 + syst_JES_Zjet_MuScale: 2.83537246e-01 + syst_JES_Zjet_MuSmearID: 5.07385127e-02 + syst_JES_Zjet_MuSmearMS: 4.05579776e-01 + syst_JES_Zjet_OOC: 1.47676805e+00 + syst_JES_Zjet_Stat1: 1.92835759e-02 + syst_JES_Zjet_Stat10: 4.94987906e-01 + syst_JES_Zjet_Stat11: 7.45484225e-01 + syst_JES_Zjet_Stat12: 4.62452319e-01 + syst_JES_Zjet_Stat13: 8.35385246e-02 + syst_JES_Zjet_Stat2: 3.85361977e-03 + syst_JES_Zjet_Stat3: 1.08694848e-02 + syst_JES_Zjet_Stat4: 1.19767944e-02 + syst_JES_Zjet_Stat5: 1.41931329e-02 + syst_JES_Zjet_Stat6: 2.09283755e-02 + syst_JES_Zjet_Stat7: 3.22967100e-02 + syst_JES_Zjet_Stat8: 5.21888369e-02 + syst_JES_Zjet_Stat9: 1.97101826e-01 + syst_JES_Zjet_Veto: 2.77819078e-01 + syst_JES_Zjet_dPhi: 2.67466690e-01 syst_PRW: 0.1966 syst_Unfolding_bias: 0.2043 - syst_cleaning: 1.3605259093453532 + syst_cleaning: 1.36052591e+00 syst_lumi: 5.343 - stat: 0.8525 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.9710410547448547 - syst_JER_NP1: 0.10164491170245563 - syst_JER_NP2: 0.09085753487190813 - syst_JER_NP3: 0.2885094582505052 - syst_JER_NP4: 0.09289539224310321 - syst_JER_NP5: 0.048199768412306714 - syst_JER_NP6: 1.2070662077947507e-21 - syst_JER_NP7: 0.09799543701111801 - syst_JER_NP8: 0.21128749963024315 - syst_JES_EtaIntercalibration_Modelling: 0.8665193174419137 - syst_JES_EtaIntercalibration_NonClosure: 0.0001348401553692371 + syst_JER_NP0: 9.71041055e-01 + syst_JER_NP1: 1.01644912e-01 + syst_JER_NP2: 9.08575349e-02 + syst_JER_NP3: 2.88509458e-01 + syst_JER_NP4: 9.28953922e-02 + syst_JER_NP5: 4.81997684e-02 + syst_JER_NP6: 1.20706621e-21 + syst_JER_NP7: 9.79954370e-02 + syst_JER_NP8: 2.11287500e-01 + syst_JES_EtaIntercalibration_Modelling: 8.66519317e-01 + syst_JES_EtaIntercalibration_NonClosure: 1.34840155e-04 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 0.001931317426007439 - syst_JES_EtaIntercalibration_Stat101: 0.00020466096605606062 - syst_JES_EtaIntercalibration_Stat102: 5.91145742546413e-07 - syst_JES_EtaIntercalibration_Stat103: 1.9710738190133824e-07 - syst_JES_EtaIntercalibration_Stat104: 1.9710738190133824e-07 - syst_JES_EtaIntercalibration_Stat105: 1.9710738190133824e-07 + syst_JES_EtaIntercalibration_Stat100: 1.93131743e-03 + syst_JES_EtaIntercalibration_Stat101: 2.04660966e-04 + syst_JES_EtaIntercalibration_Stat102: 5.91145743e-07 + syst_JES_EtaIntercalibration_Stat103: 1.97107382e-07 + syst_JES_EtaIntercalibration_Stat104: 1.97107382e-07 + syst_JES_EtaIntercalibration_Stat105: 1.97107382e-07 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 0.0006793103267285136 - syst_JES_EtaIntercalibration_Stat111: 0.0006793103267285136 + syst_JES_EtaIntercalibration_Stat110: 6.79310327e-04 + syst_JES_EtaIntercalibration_Stat111: 6.79310327e-04 syst_JES_EtaIntercalibration_Stat112: 0.0 - syst_JES_EtaIntercalibration_Stat113: 4.1646658770542444e-05 - syst_JES_EtaIntercalibration_Stat114: 0.003591539328755847 - syst_JES_EtaIntercalibration_Stat115: 0.05293123463513769 - syst_JES_EtaIntercalibration_Stat116: 0.04348814867294307 - syst_JES_EtaIntercalibration_Stat117: 0.004368581548969871 - syst_JES_EtaIntercalibration_Stat118: 0.0009965390542773524 - syst_JES_EtaIntercalibration_Stat119: 0.03174964881695544 - syst_JES_EtaIntercalibration_Stat12: 9.343879064259126e-05 - syst_JES_EtaIntercalibration_Stat120: 0.046325194818802436 - syst_JES_EtaIntercalibration_Stat121: 0.002721887585849202 - syst_JES_EtaIntercalibration_Stat122: 3.1760208968456106e-05 - syst_JES_EtaIntercalibration_Stat123: 1.9710738190133824e-07 - syst_JES_EtaIntercalibration_Stat124: 1.9710738190133824e-07 - syst_JES_EtaIntercalibration_Stat125: 1.9710738190133824e-07 + syst_JES_EtaIntercalibration_Stat113: 4.16466588e-05 + syst_JES_EtaIntercalibration_Stat114: 3.59153933e-03 + syst_JES_EtaIntercalibration_Stat115: 5.29312346e-02 + syst_JES_EtaIntercalibration_Stat116: 4.34881487e-02 + syst_JES_EtaIntercalibration_Stat117: 4.36858155e-03 + syst_JES_EtaIntercalibration_Stat118: 9.96539054e-04 + syst_JES_EtaIntercalibration_Stat119: 3.17496488e-02 + syst_JES_EtaIntercalibration_Stat12: 9.34387906e-05 + syst_JES_EtaIntercalibration_Stat120: 4.63251948e-02 + syst_JES_EtaIntercalibration_Stat121: 2.72188759e-03 + syst_JES_EtaIntercalibration_Stat122: 3.17602090e-05 + syst_JES_EtaIntercalibration_Stat123: 1.97107382e-07 + syst_JES_EtaIntercalibration_Stat124: 1.97107382e-07 + syst_JES_EtaIntercalibration_Stat125: 1.97107382e-07 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 4.942406979397791e-07 - syst_JES_EtaIntercalibration_Stat129: 0.0006791457396861645 - syst_JES_EtaIntercalibration_Stat13: 0.00040041734281621717 - syst_JES_EtaIntercalibration_Stat130: 0.0006793103267285136 - syst_JES_EtaIntercalibration_Stat131: 2.465574324574297e-08 - syst_JES_EtaIntercalibration_Stat132: 0.0008334534000170615 - syst_JES_EtaIntercalibration_Stat133: 0.025133672135205395 - syst_JES_EtaIntercalibration_Stat134: 0.2901000344708701 - syst_JES_EtaIntercalibration_Stat135: 0.18753257716994134 - syst_JES_EtaIntercalibration_Stat136: 0.019055308971517623 - syst_JES_EtaIntercalibration_Stat137: 0.014480360380529208 - syst_JES_EtaIntercalibration_Stat138: 0.1874154209236796 - syst_JES_EtaIntercalibration_Stat139: 0.21111775742461836 - syst_JES_EtaIntercalibration_Stat14: 4.2695052406572826e-08 - syst_JES_EtaIntercalibration_Stat140: 0.022950953683888605 - syst_JES_EtaIntercalibration_Stat141: 0.00016046452741909128 + syst_JES_EtaIntercalibration_Stat128: 4.94240698e-07 + syst_JES_EtaIntercalibration_Stat129: 6.79145740e-04 + syst_JES_EtaIntercalibration_Stat13: 4.00417343e-04 + syst_JES_EtaIntercalibration_Stat130: 6.79310327e-04 + syst_JES_EtaIntercalibration_Stat131: 2.46557432e-08 + syst_JES_EtaIntercalibration_Stat132: 8.33453400e-04 + syst_JES_EtaIntercalibration_Stat133: 2.51336721e-02 + syst_JES_EtaIntercalibration_Stat134: 2.90100034e-01 + syst_JES_EtaIntercalibration_Stat135: 1.87532577e-01 + syst_JES_EtaIntercalibration_Stat136: 1.90553090e-02 + syst_JES_EtaIntercalibration_Stat137: 1.44803604e-02 + syst_JES_EtaIntercalibration_Stat138: 1.87415421e-01 + syst_JES_EtaIntercalibration_Stat139: 2.11117757e-01 + syst_JES_EtaIntercalibration_Stat14: 4.26950524e-08 + syst_JES_EtaIntercalibration_Stat140: 2.29509537e-02 + syst_JES_EtaIntercalibration_Stat141: 1.60464527e-04 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 1.9710738190133824e-07 - syst_JES_EtaIntercalibration_Stat144: 1.9710738190133824e-07 + syst_JES_EtaIntercalibration_Stat143: 1.97107382e-07 + syst_JES_EtaIntercalibration_Stat144: 1.97107382e-07 syst_JES_EtaIntercalibration_Stat145: 0.0 - syst_JES_EtaIntercalibration_Stat146: 4.942406979397791e-07 - syst_JES_EtaIntercalibration_Stat147: 0.0006791457396861645 + syst_JES_EtaIntercalibration_Stat146: 4.94240698e-07 + syst_JES_EtaIntercalibration_Stat147: 6.79145740e-04 syst_JES_EtaIntercalibration_Stat148: 0.0 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 0.00011579275657397573 - syst_JES_EtaIntercalibration_Stat151: 0.0214199737394797 - syst_JES_EtaIntercalibration_Stat152: 0.2165669122927138 - syst_JES_EtaIntercalibration_Stat153: 0.17287602494273172 - syst_JES_EtaIntercalibration_Stat154: 0.012732930721165494 - syst_JES_EtaIntercalibration_Stat155: 0.014231714821131008 - syst_JES_EtaIntercalibration_Stat156: 0.15220278184054323 - syst_JES_EtaIntercalibration_Stat157: 0.1856619172043637 - syst_JES_EtaIntercalibration_Stat158: 0.017568470896182173 - syst_JES_EtaIntercalibration_Stat159: 0.00014330288788087976 + syst_JES_EtaIntercalibration_Stat150: 1.15792757e-04 + syst_JES_EtaIntercalibration_Stat151: 2.14199737e-02 + syst_JES_EtaIntercalibration_Stat152: 2.16566912e-01 + syst_JES_EtaIntercalibration_Stat153: 1.72876025e-01 + syst_JES_EtaIntercalibration_Stat154: 1.27329307e-02 + syst_JES_EtaIntercalibration_Stat155: 1.42317148e-02 + syst_JES_EtaIntercalibration_Stat156: 1.52202782e-01 + syst_JES_EtaIntercalibration_Stat157: 1.85661917e-01 + syst_JES_EtaIntercalibration_Stat158: 1.75684709e-02 + syst_JES_EtaIntercalibration_Stat159: 1.43302888e-04 syst_JES_EtaIntercalibration_Stat16: 0.0 syst_JES_EtaIntercalibration_Stat160: 0.0 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 - syst_JES_EtaIntercalibration_Stat164: 4.942406979397791e-07 + syst_JES_EtaIntercalibration_Stat164: 4.94240698e-07 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 - syst_JES_EtaIntercalibration_Stat168: 0.0007873036945804331 - syst_JES_EtaIntercalibration_Stat169: 0.012696494033787437 + syst_JES_EtaIntercalibration_Stat168: 7.87303695e-04 + syst_JES_EtaIntercalibration_Stat169: 1.26964940e-02 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 0.1453476958021695 - syst_JES_EtaIntercalibration_Stat171: 0.1271884275396154 - syst_JES_EtaIntercalibration_Stat172: 0.010286425557500527 - syst_JES_EtaIntercalibration_Stat173: 0.0047510153651614305 - syst_JES_EtaIntercalibration_Stat174: 0.11807479695091583 - syst_JES_EtaIntercalibration_Stat175: 0.12463544309304637 - syst_JES_EtaIntercalibration_Stat176: 0.00948495148906941 - syst_JES_EtaIntercalibration_Stat177: 0.00035956449699601876 + syst_JES_EtaIntercalibration_Stat170: 1.45347696e-01 + syst_JES_EtaIntercalibration_Stat171: 1.27188428e-01 + syst_JES_EtaIntercalibration_Stat172: 1.02864256e-02 + syst_JES_EtaIntercalibration_Stat173: 4.75101537e-03 + syst_JES_EtaIntercalibration_Stat174: 1.18074797e-01 + syst_JES_EtaIntercalibration_Stat175: 1.24635443e-01 + syst_JES_EtaIntercalibration_Stat176: 9.48495149e-03 + syst_JES_EtaIntercalibration_Stat177: 3.59564497e-04 syst_JES_EtaIntercalibration_Stat178: 0.0 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 @@ -14938,17 +14938,17 @@ bins: syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 syst_JES_EtaIntercalibration_Stat184: 0.0 - syst_JES_EtaIntercalibration_Stat185: 0.00034788240470020904 - syst_JES_EtaIntercalibration_Stat186: 0.0076096729726053275 - syst_JES_EtaIntercalibration_Stat187: 0.018906807319058392 - syst_JES_EtaIntercalibration_Stat188: 0.020961278586956473 - syst_JES_EtaIntercalibration_Stat189: 0.006036589103127692 + syst_JES_EtaIntercalibration_Stat185: 3.47882405e-04 + syst_JES_EtaIntercalibration_Stat186: 7.60967297e-03 + syst_JES_EtaIntercalibration_Stat187: 1.89068073e-02 + syst_JES_EtaIntercalibration_Stat188: 2.09612786e-02 + syst_JES_EtaIntercalibration_Stat189: 6.03658910e-03 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 0.005144052196469238 - syst_JES_EtaIntercalibration_Stat191: 0.009603168266254632 - syst_JES_EtaIntercalibration_Stat192: 0.036296926354031686 - syst_JES_EtaIntercalibration_Stat193: 0.0007044436883101445 - syst_JES_EtaIntercalibration_Stat194: 0.0002153805179211899 + syst_JES_EtaIntercalibration_Stat190: 5.14405220e-03 + syst_JES_EtaIntercalibration_Stat191: 9.60316827e-03 + syst_JES_EtaIntercalibration_Stat192: 3.62969264e-02 + syst_JES_EtaIntercalibration_Stat193: 7.04443688e-04 + syst_JES_EtaIntercalibration_Stat194: 2.15380518e-04 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 syst_JES_EtaIntercalibration_Stat197: 0.0 @@ -14956,70 +14956,70 @@ bins: syst_JES_EtaIntercalibration_Stat199: 0.0 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 1.803930916082986e-11 - syst_JES_EtaIntercalibration_Stat201: 0.0021511945518711225 - syst_JES_EtaIntercalibration_Stat202: 0.026045203013222995 - syst_JES_EtaIntercalibration_Stat203: 0.020417352913636968 - syst_JES_EtaIntercalibration_Stat204: 0.0024302370254771443 - syst_JES_EtaIntercalibration_Stat205: 0.0018368398814267944 - syst_JES_EtaIntercalibration_Stat206: 0.020125065838401623 - syst_JES_EtaIntercalibration_Stat207: 0.025137586896915937 - syst_JES_EtaIntercalibration_Stat208: 0.003719602154761262 - syst_JES_EtaIntercalibration_Stat209: 3.769345555928774e-05 + syst_JES_EtaIntercalibration_Stat200: 1.80393092e-11 + syst_JES_EtaIntercalibration_Stat201: 2.15119455e-03 + syst_JES_EtaIntercalibration_Stat202: 2.60452030e-02 + syst_JES_EtaIntercalibration_Stat203: 2.04173529e-02 + syst_JES_EtaIntercalibration_Stat204: 2.43023703e-03 + syst_JES_EtaIntercalibration_Stat205: 1.83683988e-03 + syst_JES_EtaIntercalibration_Stat206: 2.01250658e-02 + syst_JES_EtaIntercalibration_Stat207: 2.51375869e-02 + syst_JES_EtaIntercalibration_Stat208: 3.71960215e-03 + syst_JES_EtaIntercalibration_Stat209: 3.76934556e-05 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 syst_JES_EtaIntercalibration_Stat211: 0.0 syst_JES_EtaIntercalibration_Stat212: 0.0 - syst_JES_EtaIntercalibration_Stat213: 1.8576244911176208e-11 - syst_JES_EtaIntercalibration_Stat214: 6.321786199326896e-05 - syst_JES_EtaIntercalibration_Stat215: 0.0004735630897779091 - syst_JES_EtaIntercalibration_Stat216: 0.00038768248606301523 - syst_JES_EtaIntercalibration_Stat217: 0.00019191955196644245 - syst_JES_EtaIntercalibration_Stat218: 2.481695942294301e-05 - syst_JES_EtaIntercalibration_Stat219: 0.0011425299777248737 + syst_JES_EtaIntercalibration_Stat213: 1.85762449e-11 + syst_JES_EtaIntercalibration_Stat214: 6.32178620e-05 + syst_JES_EtaIntercalibration_Stat215: 4.73563090e-04 + syst_JES_EtaIntercalibration_Stat216: 3.87682486e-04 + syst_JES_EtaIntercalibration_Stat217: 1.91919552e-04 + syst_JES_EtaIntercalibration_Stat218: 2.48169594e-05 + syst_JES_EtaIntercalibration_Stat219: 1.14252998e-03 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 0.0006611481830875738 - syst_JES_EtaIntercalibration_Stat221: 5.49809155525806e-05 - syst_JES_EtaIntercalibration_Stat222: 6.463145853796244e-06 + syst_JES_EtaIntercalibration_Stat220: 6.61148183e-04 + syst_JES_EtaIntercalibration_Stat221: 5.49809156e-05 + syst_JES_EtaIntercalibration_Stat222: 6.46314585e-06 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 - syst_JES_EtaIntercalibration_Stat225: 1.411621408168635e-29 - syst_JES_EtaIntercalibration_Stat226: 1.1615559941302871e-09 - syst_JES_EtaIntercalibration_Stat227: 2.355042462462195e-06 - syst_JES_EtaIntercalibration_Stat228: 2.694112655402517e-06 - syst_JES_EtaIntercalibration_Stat229: 3.0466773705136554e-11 + syst_JES_EtaIntercalibration_Stat225: 1.41162141e-29 + syst_JES_EtaIntercalibration_Stat226: 1.16155599e-09 + syst_JES_EtaIntercalibration_Stat227: 2.35504246e-06 + syst_JES_EtaIntercalibration_Stat228: 2.69411266e-06 + syst_JES_EtaIntercalibration_Stat229: 3.04667737e-11 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 4.202821284565843e-09 - syst_JES_EtaIntercalibration_Stat231: 2.3386630967285564e-06 - syst_JES_EtaIntercalibration_Stat232: 1.3511630701666278e-06 - syst_JES_EtaIntercalibration_Stat233: 9.462193557876199e-09 - syst_JES_EtaIntercalibration_Stat234: 1.855892440310052e-18 + syst_JES_EtaIntercalibration_Stat230: 4.20282128e-09 + syst_JES_EtaIntercalibration_Stat231: 2.33866310e-06 + syst_JES_EtaIntercalibration_Stat232: 1.35116307e-06 + syst_JES_EtaIntercalibration_Stat233: 9.46219356e-09 + syst_JES_EtaIntercalibration_Stat234: 1.85589244e-18 syst_JES_EtaIntercalibration_Stat235: 0.0 syst_JES_EtaIntercalibration_Stat236: 0.0 - syst_JES_EtaIntercalibration_Stat237: 6.930531975974139e-29 - syst_JES_EtaIntercalibration_Stat238: 3.031100608529309e-15 - syst_JES_EtaIntercalibration_Stat239: 3.546566976669128e-19 + syst_JES_EtaIntercalibration_Stat237: 6.93053198e-29 + syst_JES_EtaIntercalibration_Stat238: 3.03110061e-15 + syst_JES_EtaIntercalibration_Stat239: 3.54656698e-19 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 - syst_JES_EtaIntercalibration_Stat241: 1.240148378219316e-28 - syst_JES_EtaIntercalibration_Stat242: 8.861785415479207e-19 - syst_JES_EtaIntercalibration_Stat243: 2.617994795640484e-15 + syst_JES_EtaIntercalibration_Stat241: 1.24014838e-28 + syst_JES_EtaIntercalibration_Stat242: 8.86178542e-19 + syst_JES_EtaIntercalibration_Stat243: 2.61799480e-15 syst_JES_EtaIntercalibration_Stat244: 0.0 - syst_JES_EtaIntercalibration_Stat245: 1.0737848981523255e-36 + syst_JES_EtaIntercalibration_Stat245: 1.07378490e-36 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 syst_JES_EtaIntercalibration_Stat27: 0.0 - syst_JES_EtaIntercalibration_Stat28: 3.5931394003016356e-09 - syst_JES_EtaIntercalibration_Stat29: 6.946285929005514e-06 + syst_JES_EtaIntercalibration_Stat28: 3.59313940e-09 + syst_JES_EtaIntercalibration_Stat29: 6.94628593e-06 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 6.0875986028975337e-05 - syst_JES_EtaIntercalibration_Stat31: 7.003540301161977e-05 - syst_JES_EtaIntercalibration_Stat32: 4.992216616894744e-08 - syst_JES_EtaIntercalibration_Stat33: 1.4815873944860628e-06 - syst_JES_EtaIntercalibration_Stat34: 0.0004994121461027955 - syst_JES_EtaIntercalibration_Stat35: 0.00011752602552200938 - syst_JES_EtaIntercalibration_Stat36: 3.061573491176555e-05 - syst_JES_EtaIntercalibration_Stat37: 2.623190948063065e-09 + syst_JES_EtaIntercalibration_Stat30: 6.08759860e-05 + syst_JES_EtaIntercalibration_Stat31: 7.00354030e-05 + syst_JES_EtaIntercalibration_Stat32: 4.99221662e-08 + syst_JES_EtaIntercalibration_Stat33: 1.48158739e-06 + syst_JES_EtaIntercalibration_Stat34: 4.99412146e-04 + syst_JES_EtaIntercalibration_Stat35: 1.17526026e-04 + syst_JES_EtaIntercalibration_Stat36: 3.06157349e-05 + syst_JES_EtaIntercalibration_Stat37: 2.62319095e-09 syst_JES_EtaIntercalibration_Stat38: 0.0 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 @@ -15034,20 +15034,20 @@ bins: syst_JES_EtaIntercalibration_Stat48: 0.0 syst_JES_EtaIntercalibration_Stat49: 0.0 syst_JES_EtaIntercalibration_Stat5: 0.0 - syst_JES_EtaIntercalibration_Stat50: 3.6399047721059954e-09 - syst_JES_EtaIntercalibration_Stat51: 1.6616997946380085e-05 - syst_JES_EtaIntercalibration_Stat52: 0.00037560383384624814 - syst_JES_EtaIntercalibration_Stat53: 0.0001725916732493199 - syst_JES_EtaIntercalibration_Stat54: 6.008836493032574e-06 - syst_JES_EtaIntercalibration_Stat55: 0.00010821652461616016 - syst_JES_EtaIntercalibration_Stat56: 0.00026533719584709563 - syst_JES_EtaIntercalibration_Stat57: 0.0005467063633020929 - syst_JES_EtaIntercalibration_Stat58: 3.9313524603500005e-05 - syst_JES_EtaIntercalibration_Stat59: 1.4885730104700944e-08 + syst_JES_EtaIntercalibration_Stat50: 3.63990477e-09 + syst_JES_EtaIntercalibration_Stat51: 1.66169979e-05 + syst_JES_EtaIntercalibration_Stat52: 3.75603834e-04 + syst_JES_EtaIntercalibration_Stat53: 1.72591673e-04 + syst_JES_EtaIntercalibration_Stat54: 6.00883649e-06 + syst_JES_EtaIntercalibration_Stat55: 1.08216525e-04 + syst_JES_EtaIntercalibration_Stat56: 2.65337196e-04 + syst_JES_EtaIntercalibration_Stat57: 5.46706363e-04 + syst_JES_EtaIntercalibration_Stat58: 3.93135246e-05 + syst_JES_EtaIntercalibration_Stat59: 1.48857301e-08 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 1.9710738190133824e-07 - syst_JES_EtaIntercalibration_Stat62: 1.9710738190133824e-07 + syst_JES_EtaIntercalibration_Stat61: 1.97107382e-07 + syst_JES_EtaIntercalibration_Stat62: 1.97107382e-07 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 @@ -15055,218 +15055,218 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 3.5931394003016356e-09 + syst_JES_EtaIntercalibration_Stat7: 3.59313940e-09 syst_JES_EtaIntercalibration_Stat70: 0.0 syst_JES_EtaIntercalibration_Stat71: 0.0 - syst_JES_EtaIntercalibration_Stat72: 8.077418941097459e-07 - syst_JES_EtaIntercalibration_Stat73: 0.0001384730038671798 - syst_JES_EtaIntercalibration_Stat74: 0.004096835852215708 - syst_JES_EtaIntercalibration_Stat75: 0.0010586286069722468 - syst_JES_EtaIntercalibration_Stat76: 0.00010087543209325054 - syst_JES_EtaIntercalibration_Stat77: 8.231505736346176e-05 - syst_JES_EtaIntercalibration_Stat78: 0.0010994669026396383 - syst_JES_EtaIntercalibration_Stat79: 0.001559921806333574 - syst_JES_EtaIntercalibration_Stat8: 3.1921867688937e-06 - syst_JES_EtaIntercalibration_Stat80: 0.00020607249860910603 - syst_JES_EtaIntercalibration_Stat81: 5.0740428407730255e-08 - syst_JES_EtaIntercalibration_Stat82: 1.9710738190133824e-07 - syst_JES_EtaIntercalibration_Stat83: 1.9710738190133824e-07 - syst_JES_EtaIntercalibration_Stat84: 1.9710738190133824e-07 + syst_JES_EtaIntercalibration_Stat72: 8.07741894e-07 + syst_JES_EtaIntercalibration_Stat73: 1.38473004e-04 + syst_JES_EtaIntercalibration_Stat74: 4.09683585e-03 + syst_JES_EtaIntercalibration_Stat75: 1.05862861e-03 + syst_JES_EtaIntercalibration_Stat76: 1.00875432e-04 + syst_JES_EtaIntercalibration_Stat77: 8.23150574e-05 + syst_JES_EtaIntercalibration_Stat78: 1.09946690e-03 + syst_JES_EtaIntercalibration_Stat79: 1.55992181e-03 + syst_JES_EtaIntercalibration_Stat8: 3.19218677e-06 + syst_JES_EtaIntercalibration_Stat80: 2.06072499e-04 + syst_JES_EtaIntercalibration_Stat81: 5.07404284e-08 + syst_JES_EtaIntercalibration_Stat82: 1.97107382e-07 + syst_JES_EtaIntercalibration_Stat83: 1.97107382e-07 + syst_JES_EtaIntercalibration_Stat84: 1.97107382e-07 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 syst_JES_EtaIntercalibration_Stat89: 0.0 - syst_JES_EtaIntercalibration_Stat9: 1.3556476939087087e-06 + syst_JES_EtaIntercalibration_Stat9: 1.35564769e-06 syst_JES_EtaIntercalibration_Stat90: 0.0 syst_JES_EtaIntercalibration_Stat91: 0.0 syst_JES_EtaIntercalibration_Stat92: 0.0 - syst_JES_EtaIntercalibration_Stat93: 7.429631939066699e-07 - syst_JES_EtaIntercalibration_Stat94: 0.0003752000533049003 - syst_JES_EtaIntercalibration_Stat95: 0.00703798093827342 - syst_JES_EtaIntercalibration_Stat96: 0.002659862272280277 - syst_JES_EtaIntercalibration_Stat97: 0.00021209985166190006 - syst_JES_EtaIntercalibration_Stat98: 0.00028926235064384033 - syst_JES_EtaIntercalibration_Stat99: 0.004041528659740025 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.02385431774333527 - syst_JES_Flavour_Comp: 0.17699009802811003 - syst_JES_Flavour_Response: 2.8226551330263496 - syst_JES_Gjet_Generator: 2.709019149064842 - syst_JES_Gjet_OOC: 1.6899806951560128 - syst_JES_Gjet_Purity: 0.49827002719409086 - syst_JES_Gjet_Stat1: 0.0009075314705287085 - syst_JES_Gjet_Stat10: 0.2058116614771865 - syst_JES_Gjet_Stat11: 0.22975240477522754 - syst_JES_Gjet_Stat12: 0.05821051623203491 - syst_JES_Gjet_Stat13: 0.03902478186998616 - syst_JES_Gjet_Stat14: 0.008847590222766875 - syst_JES_Gjet_Stat15: 0.000991707974909953 + syst_JES_EtaIntercalibration_Stat93: 7.42963194e-07 + syst_JES_EtaIntercalibration_Stat94: 3.75200053e-04 + syst_JES_EtaIntercalibration_Stat95: 7.03798094e-03 + syst_JES_EtaIntercalibration_Stat96: 2.65986227e-03 + syst_JES_EtaIntercalibration_Stat97: 2.12099852e-04 + syst_JES_EtaIntercalibration_Stat98: 2.89262351e-04 + syst_JES_EtaIntercalibration_Stat99: 4.04152866e-03 + syst_JES_EtaIntercalibration_TotalStat_MJB: 2.38543177e-02 + syst_JES_Flavour_Comp: 1.76990098e-01 + syst_JES_Flavour_Response: 2.82265513e+00 + syst_JES_Gjet_Generator: 2.70901915e+00 + syst_JES_Gjet_OOC: 1.68998070e+00 + syst_JES_Gjet_Purity: 4.98270027e-01 + syst_JES_Gjet_Stat1: 9.07531471e-04 + syst_JES_Gjet_Stat10: 2.05811661e-01 + syst_JES_Gjet_Stat11: 2.29752405e-01 + syst_JES_Gjet_Stat12: 5.82105162e-02 + syst_JES_Gjet_Stat13: 3.90247819e-02 + syst_JES_Gjet_Stat14: 8.84759022e-03 + syst_JES_Gjet_Stat15: 9.91707975e-04 syst_JES_Gjet_Stat2: 0.0 - syst_JES_Gjet_Stat3: 0.0035333836474405102 - syst_JES_Gjet_Stat4: 0.00734824555591333 - syst_JES_Gjet_Stat5: 0.011229445789975569 - syst_JES_Gjet_Stat6: 0.019614043438312256 - syst_JES_Gjet_Stat7: 0.038818918686640405 - syst_JES_Gjet_Stat8: 0.0476691713794146 - syst_JES_Gjet_Stat9: 0.12303313893012727 - syst_JES_Gjet_Veto: 0.697079973891088 - syst_JES_Gjet_dPhi: 0.14419343284283095 - syst_JES_LArESZee: 3.0236403555978675 - syst_JES_LArEsmear: 0.23472274602176926 - syst_JES_LAr_JVT: 0.3402799839837777 - syst_JES_MJB_Alpha: 0.0016292065879055977 - syst_JES_MJB_Asym: 0.006306770171807436 - syst_JES_MJB_Beta: 0.00016432444245151117 - syst_JES_MJB_Fragmentation: 0.027189502146968414 - syst_JES_MJB_Stat1: 0.0037857850903082178 - syst_JES_MJB_Stat10: 1.565816196644651e-09 - syst_JES_MJB_Stat11: 9.426686520193613e-12 - syst_JES_MJB_Stat12: 5.486270932974419e-12 - syst_JES_MJB_Stat13: 3.7724066588850145e-12 - syst_JES_MJB_Stat14: 3.9159102070910667e-35 - syst_JES_MJB_Stat15: 4.260093279495181e-24 - syst_JES_MJB_Stat16: 3.936085460200274e-37 - syst_JES_MJB_Stat2: 0.005411991384878583 - syst_JES_MJB_Stat3: 0.0058994805491670195 - syst_JES_MJB_Stat4: 0.003990131322087032 - syst_JES_MJB_Stat5: 4.31453856165246e-05 - syst_JES_MJB_Stat6: 0.00031609927238132005 - syst_JES_MJB_Stat7: 1.5510514981779297e-06 - syst_JES_MJB_Stat8: 4.946736891382643e-28 + syst_JES_Gjet_Stat3: 3.53338365e-03 + syst_JES_Gjet_Stat4: 7.34824556e-03 + syst_JES_Gjet_Stat5: 1.12294458e-02 + syst_JES_Gjet_Stat6: 1.96140434e-02 + syst_JES_Gjet_Stat7: 3.88189187e-02 + syst_JES_Gjet_Stat8: 4.76691714e-02 + syst_JES_Gjet_Stat9: 1.23033139e-01 + syst_JES_Gjet_Veto: 6.97079974e-01 + syst_JES_Gjet_dPhi: 1.44193433e-01 + syst_JES_LArESZee: 3.02364036e+00 + syst_JES_LArEsmear: 2.34722746e-01 + syst_JES_LAr_JVT: 3.40279984e-01 + syst_JES_MJB_Alpha: 1.62920659e-03 + syst_JES_MJB_Asym: 6.30677017e-03 + syst_JES_MJB_Beta: 1.64324442e-04 + syst_JES_MJB_Fragmentation: 2.71895021e-02 + syst_JES_MJB_Stat1: 3.78578509e-03 + syst_JES_MJB_Stat10: 1.56581620e-09 + syst_JES_MJB_Stat11: 9.42668652e-12 + syst_JES_MJB_Stat12: 5.48627093e-12 + syst_JES_MJB_Stat13: 3.77240666e-12 + syst_JES_MJB_Stat14: 3.91591021e-35 + syst_JES_MJB_Stat15: 4.26009328e-24 + syst_JES_MJB_Stat16: 3.93608546e-37 + syst_JES_MJB_Stat2: 5.41199138e-03 + syst_JES_MJB_Stat3: 5.89948055e-03 + syst_JES_MJB_Stat4: 3.99013132e-03 + syst_JES_MJB_Stat5: 4.31453856e-05 + syst_JES_MJB_Stat6: 3.16099272e-04 + syst_JES_MJB_Stat7: 1.55105150e-06 + syst_JES_MJB_Stat8: 4.94673689e-28 syst_JES_MJB_Stat9: 0.0 - syst_JES_MJB_Threshold: 0.013702925554420852 - syst_JES_Pileup_MuOffset: 0.014903901125208795 - syst_JES_Pileup_NPVOffset: 0.10863859017402609 - syst_JES_Pileup_Pt_term: 0.427253227021166 - syst_JES_Pileup_Rho_topology: 0.9093253983035996 - syst_JES_PunchThrough_MC15: 1.5406591925031526e-12 + syst_JES_MJB_Threshold: 1.37029256e-02 + syst_JES_Pileup_MuOffset: 1.49039011e-02 + syst_JES_Pileup_NPVOffset: 1.08638590e-01 + syst_JES_Pileup_Pt_term: 4.27253227e-01 + syst_JES_Pileup_Rho_topology: 9.09325398e-01 + syst_JES_PunchThrough_MC15: 1.54065919e-12 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 2.530756951980968 - syst_JES_Zjet_MuScale: 0.16759194491382934 - syst_JES_Zjet_MuSmearID: 0.02503295028557361 - syst_JES_Zjet_MuSmearMS: 0.27366955895751355 - syst_JES_Zjet_OOC: 0.8333111228706839 - syst_JES_Zjet_Stat1: 0.011086652966517892 - syst_JES_Zjet_Stat10: 0.22770197627600866 - syst_JES_Zjet_Stat11: 0.401003901072047 - syst_JES_Zjet_Stat12: 0.45145125982768064 - syst_JES_Zjet_Stat13: 0.032355544733476516 - syst_JES_Zjet_Stat2: 0.002237200301157677 - syst_JES_Zjet_Stat3: 0.006270023803368224 - syst_JES_Zjet_Stat4: 0.006794277205854939 - syst_JES_Zjet_Stat5: 0.008179248987529357 - syst_JES_Zjet_Stat6: 0.010871732923044053 - syst_JES_Zjet_Stat7: 0.014729012288677063 - syst_JES_Zjet_Stat8: 0.019525661960609685 - syst_JES_Zjet_Stat9: 0.08176532761507166 - syst_JES_Zjet_Veto: 0.1706201263040208 - syst_JES_Zjet_dPhi: 0.15216941216946325 + syst_JES_Zjet_MC: 2.53075695e+00 + syst_JES_Zjet_MuScale: 1.67591945e-01 + syst_JES_Zjet_MuSmearID: 2.50329503e-02 + syst_JES_Zjet_MuSmearMS: 2.73669559e-01 + syst_JES_Zjet_OOC: 8.33311123e-01 + syst_JES_Zjet_Stat1: 1.10866530e-02 + syst_JES_Zjet_Stat10: 2.27701976e-01 + syst_JES_Zjet_Stat11: 4.01003901e-01 + syst_JES_Zjet_Stat12: 4.51451260e-01 + syst_JES_Zjet_Stat13: 3.23555447e-02 + syst_JES_Zjet_Stat2: 2.23720030e-03 + syst_JES_Zjet_Stat3: 6.27002380e-03 + syst_JES_Zjet_Stat4: 6.79427721e-03 + syst_JES_Zjet_Stat5: 8.17924899e-03 + syst_JES_Zjet_Stat6: 1.08717329e-02 + syst_JES_Zjet_Stat7: 1.47290123e-02 + syst_JES_Zjet_Stat8: 1.95256620e-02 + syst_JES_Zjet_Stat9: 8.17653276e-02 + syst_JES_Zjet_Veto: 1.70620126e-01 + syst_JES_Zjet_dPhi: 1.52169412e-01 syst_PRW: 0.1139 syst_Unfolding_bias: 0.11838 - syst_cleaning: 0.7737936982813959 + syst_cleaning: 7.73793698e-01 syst_lumi: 3.096 - stat: 0.483 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.5252435696893395 - syst_JER_NP1: 0.05606124931715311 - syst_JER_NP2: 0.04020577603715665 - syst_JER_NP3: 0.17410430063614168 - syst_JER_NP4: 0.0535342850423913 - syst_JER_NP5: 0.0254884817123343 - syst_JER_NP6: 3.361564207329677e-16 - syst_JER_NP7: 0.06400835472811343 - syst_JER_NP8: 0.13045089986274527 - syst_JES_EtaIntercalibration_Modelling: 0.5636846702723075 - syst_JES_EtaIntercalibration_NonClosure: 8.178743913340238e-05 + syst_JER_NP0: 5.25243570e-01 + syst_JER_NP1: 5.60612493e-02 + syst_JER_NP2: 4.02057760e-02 + syst_JER_NP3: 1.74104301e-01 + syst_JER_NP4: 5.35342850e-02 + syst_JER_NP5: 2.54884817e-02 + syst_JER_NP6: 3.36156421e-16 + syst_JER_NP7: 6.40083547e-02 + syst_JER_NP8: 1.30450900e-01 + syst_JES_EtaIntercalibration_Modelling: 5.63684670e-01 + syst_JES_EtaIntercalibration_NonClosure: 8.17874391e-05 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 0.0003424440431661792 - syst_JES_EtaIntercalibration_Stat101: 4.7477420741521965e-05 - syst_JES_EtaIntercalibration_Stat102: 5.730369767185622e-08 - syst_JES_EtaIntercalibration_Stat103: 1.5787643110990315e-08 - syst_JES_EtaIntercalibration_Stat104: 1.5787643110990315e-08 - syst_JES_EtaIntercalibration_Stat105: 1.5787643110990315e-08 + syst_JES_EtaIntercalibration_Stat100: 3.42444043e-04 + syst_JES_EtaIntercalibration_Stat101: 4.74774207e-05 + syst_JES_EtaIntercalibration_Stat102: 5.73036977e-08 + syst_JES_EtaIntercalibration_Stat103: 1.57876431e-08 + syst_JES_EtaIntercalibration_Stat104: 1.57876431e-08 + syst_JES_EtaIntercalibration_Stat105: 1.57876431e-08 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 0.0002979127389018469 - syst_JES_EtaIntercalibration_Stat111: 0.0002979127389018469 + syst_JES_EtaIntercalibration_Stat110: 2.97912739e-04 + syst_JES_EtaIntercalibration_Stat111: 2.97912739e-04 syst_JES_EtaIntercalibration_Stat112: 0.0 - syst_JES_EtaIntercalibration_Stat113: 5.6144206416416645e-06 - syst_JES_EtaIntercalibration_Stat114: 0.0018402528868337634 - syst_JES_EtaIntercalibration_Stat115: 0.019081768785938057 - syst_JES_EtaIntercalibration_Stat116: 0.015117025997199317 - syst_JES_EtaIntercalibration_Stat117: 0.001893039462742391 - syst_JES_EtaIntercalibration_Stat118: 0.0005433841251821772 - syst_JES_EtaIntercalibration_Stat119: 0.010000837702412736 - syst_JES_EtaIntercalibration_Stat12: 7.317179164589316e-05 - syst_JES_EtaIntercalibration_Stat120: 0.01403768955348422 - syst_JES_EtaIntercalibration_Stat121: 0.0003012416430376119 - syst_JES_EtaIntercalibration_Stat122: 5.303890557948948e-06 - syst_JES_EtaIntercalibration_Stat123: 1.5787643110990315e-08 - syst_JES_EtaIntercalibration_Stat124: 1.5787643110990315e-08 - syst_JES_EtaIntercalibration_Stat125: 1.5787643110990315e-08 + syst_JES_EtaIntercalibration_Stat113: 5.61442064e-06 + syst_JES_EtaIntercalibration_Stat114: 1.84025289e-03 + syst_JES_EtaIntercalibration_Stat115: 1.90817688e-02 + syst_JES_EtaIntercalibration_Stat116: 1.51170260e-02 + syst_JES_EtaIntercalibration_Stat117: 1.89303946e-03 + syst_JES_EtaIntercalibration_Stat118: 5.43384125e-04 + syst_JES_EtaIntercalibration_Stat119: 1.00008377e-02 + syst_JES_EtaIntercalibration_Stat12: 7.31717916e-05 + syst_JES_EtaIntercalibration_Stat120: 1.40376896e-02 + syst_JES_EtaIntercalibration_Stat121: 3.01241643e-04 + syst_JES_EtaIntercalibration_Stat122: 5.30389056e-06 + syst_JES_EtaIntercalibration_Stat123: 1.57876431e-08 + syst_JES_EtaIntercalibration_Stat124: 1.57876431e-08 + syst_JES_EtaIntercalibration_Stat125: 1.57876431e-08 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 7.309254407940662e-06 - syst_JES_EtaIntercalibration_Stat129: 0.00029555667003131563 - syst_JES_EtaIntercalibration_Stat13: 0.0001520478067346172 - syst_JES_EtaIntercalibration_Stat130: 0.0002979127389018469 - syst_JES_EtaIntercalibration_Stat131: 2.252532075243325e-09 - syst_JES_EtaIntercalibration_Stat132: 0.000540426134453174 - syst_JES_EtaIntercalibration_Stat133: 0.009237719672624841 - syst_JES_EtaIntercalibration_Stat134: 0.11131103853616675 - syst_JES_EtaIntercalibration_Stat135: 0.06880135318436695 - syst_JES_EtaIntercalibration_Stat136: 0.008216657592963212 - syst_JES_EtaIntercalibration_Stat137: 0.004515417671711001 - syst_JES_EtaIntercalibration_Stat138: 0.07065424191087184 - syst_JES_EtaIntercalibration_Stat139: 0.07699524449600767 - syst_JES_EtaIntercalibration_Stat14: 3.897980342433758e-09 - syst_JES_EtaIntercalibration_Stat140: 0.008807853370714115 - syst_JES_EtaIntercalibration_Stat141: 0.00014107462637531407 + syst_JES_EtaIntercalibration_Stat128: 7.30925441e-06 + syst_JES_EtaIntercalibration_Stat129: 2.95556670e-04 + syst_JES_EtaIntercalibration_Stat13: 1.52047807e-04 + syst_JES_EtaIntercalibration_Stat130: 2.97912739e-04 + syst_JES_EtaIntercalibration_Stat131: 2.25253208e-09 + syst_JES_EtaIntercalibration_Stat132: 5.40426134e-04 + syst_JES_EtaIntercalibration_Stat133: 9.23771967e-03 + syst_JES_EtaIntercalibration_Stat134: 1.11311039e-01 + syst_JES_EtaIntercalibration_Stat135: 6.88013532e-02 + syst_JES_EtaIntercalibration_Stat136: 8.21665759e-03 + syst_JES_EtaIntercalibration_Stat137: 4.51541767e-03 + syst_JES_EtaIntercalibration_Stat138: 7.06542419e-02 + syst_JES_EtaIntercalibration_Stat139: 7.69952445e-02 + syst_JES_EtaIntercalibration_Stat14: 3.89798034e-09 + syst_JES_EtaIntercalibration_Stat140: 8.80785337e-03 + syst_JES_EtaIntercalibration_Stat141: 1.41074626e-04 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 1.5787643110990315e-08 - syst_JES_EtaIntercalibration_Stat144: 1.5787643110990315e-08 + syst_JES_EtaIntercalibration_Stat143: 1.57876431e-08 + syst_JES_EtaIntercalibration_Stat144: 1.57876431e-08 syst_JES_EtaIntercalibration_Stat145: 0.0 - syst_JES_EtaIntercalibration_Stat146: 7.309254407940662e-06 - syst_JES_EtaIntercalibration_Stat147: 0.00029555667003131563 + syst_JES_EtaIntercalibration_Stat146: 7.30925441e-06 + syst_JES_EtaIntercalibration_Stat147: 2.95556670e-04 syst_JES_EtaIntercalibration_Stat148: 0.0 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 2.7807781766081232e-05 - syst_JES_EtaIntercalibration_Stat151: 0.008772657678833706 - syst_JES_EtaIntercalibration_Stat152: 0.10517596719308075 - syst_JES_EtaIntercalibration_Stat153: 0.07947031190954268 - syst_JES_EtaIntercalibration_Stat154: 0.006796202689737851 - syst_JES_EtaIntercalibration_Stat155: 0.0049760243166608415 - syst_JES_EtaIntercalibration_Stat156: 0.06846525012734563 - syst_JES_EtaIntercalibration_Stat157: 0.08604575701334725 - syst_JES_EtaIntercalibration_Stat158: 0.007213755215385397 - syst_JES_EtaIntercalibration_Stat159: 9.617505289834782e-05 + syst_JES_EtaIntercalibration_Stat150: 2.78077818e-05 + syst_JES_EtaIntercalibration_Stat151: 8.77265768e-03 + syst_JES_EtaIntercalibration_Stat152: 1.05175967e-01 + syst_JES_EtaIntercalibration_Stat153: 7.94703119e-02 + syst_JES_EtaIntercalibration_Stat154: 6.79620269e-03 + syst_JES_EtaIntercalibration_Stat155: 4.97602432e-03 + syst_JES_EtaIntercalibration_Stat156: 6.84652501e-02 + syst_JES_EtaIntercalibration_Stat157: 8.60457570e-02 + syst_JES_EtaIntercalibration_Stat158: 7.21375522e-03 + syst_JES_EtaIntercalibration_Stat159: 9.61750529e-05 syst_JES_EtaIntercalibration_Stat16: 0.0 syst_JES_EtaIntercalibration_Stat160: 0.0 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 - syst_JES_EtaIntercalibration_Stat164: 7.309254407940662e-06 + syst_JES_EtaIntercalibration_Stat164: 7.30925441e-06 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 - syst_JES_EtaIntercalibration_Stat168: 0.0004369964187496278 - syst_JES_EtaIntercalibration_Stat169: 0.008685321928403114 + syst_JES_EtaIntercalibration_Stat168: 4.36996419e-04 + syst_JES_EtaIntercalibration_Stat169: 8.68532193e-03 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 0.10539388312421172 - syst_JES_EtaIntercalibration_Stat171: 0.09399701378235376 - syst_JES_EtaIntercalibration_Stat172: 0.006787127055499992 - syst_JES_EtaIntercalibration_Stat173: 0.0031930356637532254 - syst_JES_EtaIntercalibration_Stat174: 0.0882066136976134 - syst_JES_EtaIntercalibration_Stat175: 0.08836618810382171 - syst_JES_EtaIntercalibration_Stat176: 0.007468337632967594 - syst_JES_EtaIntercalibration_Stat177: 0.0003135363849300428 + syst_JES_EtaIntercalibration_Stat170: 1.05393883e-01 + syst_JES_EtaIntercalibration_Stat171: 9.39970138e-02 + syst_JES_EtaIntercalibration_Stat172: 6.78712706e-03 + syst_JES_EtaIntercalibration_Stat173: 3.19303566e-03 + syst_JES_EtaIntercalibration_Stat174: 8.82066137e-02 + syst_JES_EtaIntercalibration_Stat175: 8.83661881e-02 + syst_JES_EtaIntercalibration_Stat176: 7.46833763e-03 + syst_JES_EtaIntercalibration_Stat177: 3.13536385e-04 syst_JES_EtaIntercalibration_Stat178: 0.0 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 @@ -15275,17 +15275,17 @@ bins: syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 syst_JES_EtaIntercalibration_Stat184: 0.0 - syst_JES_EtaIntercalibration_Stat185: 0.0002842295375220528 - syst_JES_EtaIntercalibration_Stat186: 0.004664648539815191 - syst_JES_EtaIntercalibration_Stat187: 0.06562987124777862 - syst_JES_EtaIntercalibration_Stat188: 0.057143131477020055 - syst_JES_EtaIntercalibration_Stat189: 0.00451431420594535 + syst_JES_EtaIntercalibration_Stat185: 2.84229538e-04 + syst_JES_EtaIntercalibration_Stat186: 4.66464854e-03 + syst_JES_EtaIntercalibration_Stat187: 6.56298712e-02 + syst_JES_EtaIntercalibration_Stat188: 5.71431315e-02 + syst_JES_EtaIntercalibration_Stat189: 4.51431421e-03 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 0.0055039179681386965 - syst_JES_EtaIntercalibration_Stat191: 0.03907468841846343 - syst_JES_EtaIntercalibration_Stat192: 0.06461699698995613 - syst_JES_EtaIntercalibration_Stat193: 0.005749303523036507 - syst_JES_EtaIntercalibration_Stat194: 0.00014384681956859525 + syst_JES_EtaIntercalibration_Stat190: 5.50391797e-03 + syst_JES_EtaIntercalibration_Stat191: 3.90746884e-02 + syst_JES_EtaIntercalibration_Stat192: 6.46169970e-02 + syst_JES_EtaIntercalibration_Stat193: 5.74930352e-03 + syst_JES_EtaIntercalibration_Stat194: 1.43846820e-04 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 syst_JES_EtaIntercalibration_Stat197: 0.0 @@ -15293,70 +15293,70 @@ bins: syst_JES_EtaIntercalibration_Stat199: 0.0 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 5.358099173214322e-09 - syst_JES_EtaIntercalibration_Stat201: 0.0013046183809834967 - syst_JES_EtaIntercalibration_Stat202: 0.012807511341006104 - syst_JES_EtaIntercalibration_Stat203: 0.012399771399102484 - syst_JES_EtaIntercalibration_Stat204: 0.0016215816723187271 - syst_JES_EtaIntercalibration_Stat205: 0.0007469469107640783 - syst_JES_EtaIntercalibration_Stat206: 0.015025806201332426 - syst_JES_EtaIntercalibration_Stat207: 0.017420617095843652 - syst_JES_EtaIntercalibration_Stat208: 0.002866171088133217 - syst_JES_EtaIntercalibration_Stat209: 6.789386036306964e-05 + syst_JES_EtaIntercalibration_Stat200: 5.35809917e-09 + syst_JES_EtaIntercalibration_Stat201: 1.30461838e-03 + syst_JES_EtaIntercalibration_Stat202: 1.28075113e-02 + syst_JES_EtaIntercalibration_Stat203: 1.23997714e-02 + syst_JES_EtaIntercalibration_Stat204: 1.62158167e-03 + syst_JES_EtaIntercalibration_Stat205: 7.46946911e-04 + syst_JES_EtaIntercalibration_Stat206: 1.50258062e-02 + syst_JES_EtaIntercalibration_Stat207: 1.74206171e-02 + syst_JES_EtaIntercalibration_Stat208: 2.86617109e-03 + syst_JES_EtaIntercalibration_Stat209: 6.78938604e-05 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 syst_JES_EtaIntercalibration_Stat211: 0.0 syst_JES_EtaIntercalibration_Stat212: 0.0 - syst_JES_EtaIntercalibration_Stat213: 5.485404907570634e-09 - syst_JES_EtaIntercalibration_Stat214: 0.0001680309792865589 - syst_JES_EtaIntercalibration_Stat215: 0.0016494444519291943 - syst_JES_EtaIntercalibration_Stat216: 0.0013665762355243851 - syst_JES_EtaIntercalibration_Stat217: 0.0002105947796124111 - syst_JES_EtaIntercalibration_Stat218: 0.0001046728459295915 - syst_JES_EtaIntercalibration_Stat219: 0.0017422166426710542 + syst_JES_EtaIntercalibration_Stat213: 5.48540491e-09 + syst_JES_EtaIntercalibration_Stat214: 1.68030979e-04 + syst_JES_EtaIntercalibration_Stat215: 1.64944445e-03 + syst_JES_EtaIntercalibration_Stat216: 1.36657624e-03 + syst_JES_EtaIntercalibration_Stat217: 2.10594780e-04 + syst_JES_EtaIntercalibration_Stat218: 1.04672846e-04 + syst_JES_EtaIntercalibration_Stat219: 1.74221664e-03 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 0.0018882754036421698 - syst_JES_EtaIntercalibration_Stat221: 0.00032029226044348933 - syst_JES_EtaIntercalibration_Stat222: 2.5581873163794084e-05 + syst_JES_EtaIntercalibration_Stat220: 1.88827540e-03 + syst_JES_EtaIntercalibration_Stat221: 3.20292260e-04 + syst_JES_EtaIntercalibration_Stat222: 2.55818732e-05 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 - syst_JES_EtaIntercalibration_Stat225: 8.330298359002516e-23 - syst_JES_EtaIntercalibration_Stat226: 6.502028356597655e-08 - syst_JES_EtaIntercalibration_Stat227: 1.0671224051157393e-05 - syst_JES_EtaIntercalibration_Stat228: 1.1761209663550769e-05 - syst_JES_EtaIntercalibration_Stat229: 9.088936612717684e-09 + syst_JES_EtaIntercalibration_Stat225: 8.33029836e-23 + syst_JES_EtaIntercalibration_Stat226: 6.50202836e-08 + syst_JES_EtaIntercalibration_Stat227: 1.06712241e-05 + syst_JES_EtaIntercalibration_Stat228: 1.17612097e-05 + syst_JES_EtaIntercalibration_Stat229: 9.08893661e-09 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 2.473368553103539e-07 - syst_JES_EtaIntercalibration_Stat231: 1.9880013499743904e-05 - syst_JES_EtaIntercalibration_Stat232: 4.49395678995693e-06 - syst_JES_EtaIntercalibration_Stat233: 5.568542577592481e-07 - syst_JES_EtaIntercalibration_Stat234: 3.684072067698986e-14 + syst_JES_EtaIntercalibration_Stat230: 2.47336855e-07 + syst_JES_EtaIntercalibration_Stat231: 1.98800135e-05 + syst_JES_EtaIntercalibration_Stat232: 4.49395679e-06 + syst_JES_EtaIntercalibration_Stat233: 5.56854258e-07 + syst_JES_EtaIntercalibration_Stat234: 3.68407207e-14 syst_JES_EtaIntercalibration_Stat235: 0.0 syst_JES_EtaIntercalibration_Stat236: 0.0 - syst_JES_EtaIntercalibration_Stat237: 4.0908277890911027e-22 - syst_JES_EtaIntercalibration_Stat238: 6.255575947009196e-12 - syst_JES_EtaIntercalibration_Stat239: 7.028913482893355e-15 + syst_JES_EtaIntercalibration_Stat237: 4.09082779e-22 + syst_JES_EtaIntercalibration_Stat238: 6.25557595e-12 + syst_JES_EtaIntercalibration_Stat239: 7.02891348e-15 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 - syst_JES_EtaIntercalibration_Stat241: 7.319646712786075e-22 - syst_JES_EtaIntercalibration_Stat242: 1.7576492561088514e-14 - syst_JES_EtaIntercalibration_Stat243: 5.310467776750094e-12 - syst_JES_EtaIntercalibration_Stat244: 1.291243877042598e-34 - syst_JES_EtaIntercalibration_Stat245: 2.114834036041599e-28 + syst_JES_EtaIntercalibration_Stat241: 7.31964671e-22 + syst_JES_EtaIntercalibration_Stat242: 1.75764926e-14 + syst_JES_EtaIntercalibration_Stat243: 5.31046778e-12 + syst_JES_EtaIntercalibration_Stat244: 1.29124388e-34 + syst_JES_EtaIntercalibration_Stat245: 2.11483404e-28 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 syst_JES_EtaIntercalibration_Stat27: 0.0 - syst_JES_EtaIntercalibration_Stat28: 3.270977950093825e-10 - syst_JES_EtaIntercalibration_Stat29: 8.61900047496808e-07 + syst_JES_EtaIntercalibration_Stat28: 3.27097795e-10 + syst_JES_EtaIntercalibration_Stat29: 8.61900047e-07 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 1.2789605574449902e-05 - syst_JES_EtaIntercalibration_Stat31: 1.1186835868555506e-05 - syst_JES_EtaIntercalibration_Stat32: 4.5613042816720745e-09 - syst_JES_EtaIntercalibration_Stat33: 3.638838104395413e-08 - syst_JES_EtaIntercalibration_Stat34: 0.00024096425046051957 - syst_JES_EtaIntercalibration_Stat35: 0.0001298344867157798 - syst_JES_EtaIntercalibration_Stat36: 5.171336414977757e-06 - syst_JES_EtaIntercalibration_Stat37: 2.387632038233697e-10 + syst_JES_EtaIntercalibration_Stat30: 1.27896056e-05 + syst_JES_EtaIntercalibration_Stat31: 1.11868359e-05 + syst_JES_EtaIntercalibration_Stat32: 4.56130428e-09 + syst_JES_EtaIntercalibration_Stat33: 3.63883810e-08 + syst_JES_EtaIntercalibration_Stat34: 2.40964250e-04 + syst_JES_EtaIntercalibration_Stat35: 1.29834487e-04 + syst_JES_EtaIntercalibration_Stat36: 5.17133641e-06 + syst_JES_EtaIntercalibration_Stat37: 2.38763204e-10 syst_JES_EtaIntercalibration_Stat38: 0.0 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 @@ -15371,20 +15371,20 @@ bins: syst_JES_EtaIntercalibration_Stat48: 0.0 syst_JES_EtaIntercalibration_Stat49: 0.0 syst_JES_EtaIntercalibration_Stat5: 0.0 - syst_JES_EtaIntercalibration_Stat50: 3.3135863999600195e-10 - syst_JES_EtaIntercalibration_Stat51: 2.2043028898043933e-06 - syst_JES_EtaIntercalibration_Stat52: 0.00018182207477366436 - syst_JES_EtaIntercalibration_Stat53: 4.614793819879714e-05 - syst_JES_EtaIntercalibration_Stat54: 8.045590593610888e-07 - syst_JES_EtaIntercalibration_Stat55: 7.45696903624388e-05 - syst_JES_EtaIntercalibration_Stat56: 0.00015035135874011914 - syst_JES_EtaIntercalibration_Stat57: 0.00024578461546646894 - syst_JES_EtaIntercalibration_Stat58: 7.162775637279168e-06 - syst_JES_EtaIntercalibration_Stat59: 1.3584360005167708e-09 + syst_JES_EtaIntercalibration_Stat50: 3.31358640e-10 + syst_JES_EtaIntercalibration_Stat51: 2.20430289e-06 + syst_JES_EtaIntercalibration_Stat52: 1.81822075e-04 + syst_JES_EtaIntercalibration_Stat53: 4.61479382e-05 + syst_JES_EtaIntercalibration_Stat54: 8.04559059e-07 + syst_JES_EtaIntercalibration_Stat55: 7.45696904e-05 + syst_JES_EtaIntercalibration_Stat56: 1.50351359e-04 + syst_JES_EtaIntercalibration_Stat57: 2.45784615e-04 + syst_JES_EtaIntercalibration_Stat58: 7.16277564e-06 + syst_JES_EtaIntercalibration_Stat59: 1.35843600e-09 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 1.5787643110990315e-08 - syst_JES_EtaIntercalibration_Stat62: 1.5787643110990315e-08 + syst_JES_EtaIntercalibration_Stat61: 1.57876431e-08 + syst_JES_EtaIntercalibration_Stat62: 1.57876431e-08 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 @@ -15392,218 +15392,218 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 3.270977950093825e-10 + syst_JES_EtaIntercalibration_Stat7: 3.27097795e-10 syst_JES_EtaIntercalibration_Stat70: 0.0 syst_JES_EtaIntercalibration_Stat71: 0.0 - syst_JES_EtaIntercalibration_Stat72: 8.948640497304605e-08 - syst_JES_EtaIntercalibration_Stat73: 4.354570328976212e-05 - syst_JES_EtaIntercalibration_Stat74: 0.0014443080592449798 - syst_JES_EtaIntercalibration_Stat75: 0.0006376456931556897 - syst_JES_EtaIntercalibration_Stat76: 8.226399151512162e-06 - syst_JES_EtaIntercalibration_Stat77: 5.329226092970724e-05 - syst_JES_EtaIntercalibration_Stat78: 0.00032391698670338365 - syst_JES_EtaIntercalibration_Stat79: 0.0005370127280381723 - syst_JES_EtaIntercalibration_Stat8: 4.288274944543551e-07 - syst_JES_EtaIntercalibration_Stat80: 4.457678148408654e-05 - syst_JES_EtaIntercalibration_Stat81: 4.632369884842962e-09 - syst_JES_EtaIntercalibration_Stat82: 1.5787643110990315e-08 - syst_JES_EtaIntercalibration_Stat83: 1.5787643110990315e-08 - syst_JES_EtaIntercalibration_Stat84: 1.5787643110990315e-08 + syst_JES_EtaIntercalibration_Stat72: 8.94864050e-08 + syst_JES_EtaIntercalibration_Stat73: 4.35457033e-05 + syst_JES_EtaIntercalibration_Stat74: 1.44430806e-03 + syst_JES_EtaIntercalibration_Stat75: 6.37645693e-04 + syst_JES_EtaIntercalibration_Stat76: 8.22639915e-06 + syst_JES_EtaIntercalibration_Stat77: 5.32922609e-05 + syst_JES_EtaIntercalibration_Stat78: 3.23916987e-04 + syst_JES_EtaIntercalibration_Stat79: 5.37012728e-04 + syst_JES_EtaIntercalibration_Stat8: 4.28827494e-07 + syst_JES_EtaIntercalibration_Stat80: 4.45767815e-05 + syst_JES_EtaIntercalibration_Stat81: 4.63236988e-09 + syst_JES_EtaIntercalibration_Stat82: 1.57876431e-08 + syst_JES_EtaIntercalibration_Stat83: 1.57876431e-08 + syst_JES_EtaIntercalibration_Stat84: 1.57876431e-08 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 syst_JES_EtaIntercalibration_Stat89: 0.0 - syst_JES_EtaIntercalibration_Stat9: 1.4547488683618214e-07 + syst_JES_EtaIntercalibration_Stat9: 1.45474887e-07 syst_JES_EtaIntercalibration_Stat90: 0.0 syst_JES_EtaIntercalibration_Stat91: 0.0 syst_JES_EtaIntercalibration_Stat92: 0.0 - syst_JES_EtaIntercalibration_Stat93: 8.279202860179233e-08 - syst_JES_EtaIntercalibration_Stat94: 0.00022175041076624862 - syst_JES_EtaIntercalibration_Stat95: 0.002987647346709447 - syst_JES_EtaIntercalibration_Stat96: 6.096261395314344e-05 - syst_JES_EtaIntercalibration_Stat97: 9.981284047155456e-05 - syst_JES_EtaIntercalibration_Stat98: 7.538404473096413e-05 - syst_JES_EtaIntercalibration_Stat99: 0.000987153061839956 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.015774728999257005 - syst_JES_Flavour_Comp: 0.16669705306333404 - syst_JES_Flavour_Response: 1.6895534173266022 - syst_JES_Gjet_Generator: 1.653038717029943 - syst_JES_Gjet_OOC: 1.0782383444767676 - syst_JES_Gjet_Purity: 0.3288238434177181 - syst_JES_Gjet_Stat1: 0.0005498625464604767 - syst_JES_Gjet_Stat10: 0.1206812192306657 - syst_JES_Gjet_Stat11: 0.17491371444229298 - syst_JES_Gjet_Stat12: 0.09881462075523036 - syst_JES_Gjet_Stat13: 0.023987315397934802 - syst_JES_Gjet_Stat14: 0.018237902154579072 - syst_JES_Gjet_Stat15: 0.0021960061475323786 - syst_JES_Gjet_Stat2: 4.353911689504049e-41 - syst_JES_Gjet_Stat3: 0.002132154544117267 - syst_JES_Gjet_Stat4: 0.004396317180322639 - syst_JES_Gjet_Stat5: 0.005180694258494704 - syst_JES_Gjet_Stat6: 0.010204926102133223 - syst_JES_Gjet_Stat7: 0.017506752982777814 - syst_JES_Gjet_Stat8: 0.023247791292937914 - syst_JES_Gjet_Stat9: 0.0592663587121733 - syst_JES_Gjet_Veto: 0.4475161784784993 - syst_JES_Gjet_dPhi: 0.08367612084698955 - syst_JES_LArESZee: 1.9615062452105525 - syst_JES_LArEsmear: 0.15620834644794113 - syst_JES_LAr_JVT: 0.21802157576717032 - syst_JES_MJB_Alpha: 0.0036209627614765664 - syst_JES_MJB_Asym: 0.007822933017737017 - syst_JES_MJB_Beta: 0.0001159219102456477 - syst_JES_MJB_Fragmentation: 0.046599580470214536 - syst_JES_MJB_Stat1: 0.007342433375251014 - syst_JES_MJB_Stat10: 9.224958389326208e-08 - syst_JES_MJB_Stat11: 2.8111184606852086e-09 - syst_JES_MJB_Stat12: 1.6367880131533857e-09 - syst_JES_MJB_Stat13: 1.1252268071371212e-09 - syst_JES_MJB_Stat14: 7.711559813033937e-27 - syst_JES_MJB_Stat15: 1.1864157987400539e-18 - syst_JES_MJB_Stat16: 7.75179197823148e-29 - syst_JES_MJB_Stat2: 0.003336484330474219 - syst_JES_MJB_Stat3: 0.002788561098487892 - syst_JES_MJB_Stat4: 0.0035093376511814876 - syst_JES_MJB_Stat5: 5.219535076583193e-05 - syst_JES_MJB_Stat6: 0.0007121326895319439 - syst_JES_MJB_Stat7: 2.394560241463973e-05 - syst_JES_MJB_Stat8: 2.919367401317691e-21 - syst_JES_MJB_Stat9: 1.182290323905258e-40 - syst_JES_MJB_Threshold: 0.010219821818407597 - syst_JES_Pileup_MuOffset: 0.034000348159982124 - syst_JES_Pileup_NPVOffset: 0.09236568193869409 - syst_JES_Pileup_Pt_term: 0.25244740046195757 - syst_JES_Pileup_Rho_topology: 0.5385152435168387 - syst_JES_PunchThrough_MC15: 3.167054670699652e-09 + syst_JES_EtaIntercalibration_Stat93: 8.27920286e-08 + syst_JES_EtaIntercalibration_Stat94: 2.21750411e-04 + syst_JES_EtaIntercalibration_Stat95: 2.98764735e-03 + syst_JES_EtaIntercalibration_Stat96: 6.09626140e-05 + syst_JES_EtaIntercalibration_Stat97: 9.98128405e-05 + syst_JES_EtaIntercalibration_Stat98: 7.53840447e-05 + syst_JES_EtaIntercalibration_Stat99: 9.87153062e-04 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.57747290e-02 + syst_JES_Flavour_Comp: 1.66697053e-01 + syst_JES_Flavour_Response: 1.68955342e+00 + syst_JES_Gjet_Generator: 1.65303872e+00 + syst_JES_Gjet_OOC: 1.07823834e+00 + syst_JES_Gjet_Purity: 3.28823843e-01 + syst_JES_Gjet_Stat1: 5.49862546e-04 + syst_JES_Gjet_Stat10: 1.20681219e-01 + syst_JES_Gjet_Stat11: 1.74913714e-01 + syst_JES_Gjet_Stat12: 9.88146208e-02 + syst_JES_Gjet_Stat13: 2.39873154e-02 + syst_JES_Gjet_Stat14: 1.82379022e-02 + syst_JES_Gjet_Stat15: 2.19600615e-03 + syst_JES_Gjet_Stat2: 4.35391169e-41 + syst_JES_Gjet_Stat3: 2.13215454e-03 + syst_JES_Gjet_Stat4: 4.39631718e-03 + syst_JES_Gjet_Stat5: 5.18069426e-03 + syst_JES_Gjet_Stat6: 1.02049261e-02 + syst_JES_Gjet_Stat7: 1.75067530e-02 + syst_JES_Gjet_Stat8: 2.32477913e-02 + syst_JES_Gjet_Stat9: 5.92663587e-02 + syst_JES_Gjet_Veto: 4.47516178e-01 + syst_JES_Gjet_dPhi: 8.36761208e-02 + syst_JES_LArESZee: 1.96150625e+00 + syst_JES_LArEsmear: 1.56208346e-01 + syst_JES_LAr_JVT: 2.18021576e-01 + syst_JES_MJB_Alpha: 3.62096276e-03 + syst_JES_MJB_Asym: 7.82293302e-03 + syst_JES_MJB_Beta: 1.15921910e-04 + syst_JES_MJB_Fragmentation: 4.65995805e-02 + syst_JES_MJB_Stat1: 7.34243338e-03 + syst_JES_MJB_Stat10: 9.22495839e-08 + syst_JES_MJB_Stat11: 2.81111846e-09 + syst_JES_MJB_Stat12: 1.63678801e-09 + syst_JES_MJB_Stat13: 1.12522681e-09 + syst_JES_MJB_Stat14: 7.71155981e-27 + syst_JES_MJB_Stat15: 1.18641580e-18 + syst_JES_MJB_Stat16: 7.75179198e-29 + syst_JES_MJB_Stat2: 3.33648433e-03 + syst_JES_MJB_Stat3: 2.78856110e-03 + syst_JES_MJB_Stat4: 3.50933765e-03 + syst_JES_MJB_Stat5: 5.21953508e-05 + syst_JES_MJB_Stat6: 7.12132690e-04 + syst_JES_MJB_Stat7: 2.39456024e-05 + syst_JES_MJB_Stat8: 2.91936740e-21 + syst_JES_MJB_Stat9: 1.18229032e-40 + syst_JES_MJB_Threshold: 1.02198218e-02 + syst_JES_Pileup_MuOffset: 3.40003482e-02 + syst_JES_Pileup_NPVOffset: 9.23656819e-02 + syst_JES_Pileup_Pt_term: 2.52447400e-01 + syst_JES_Pileup_Rho_topology: 5.38515244e-01 + syst_JES_PunchThrough_MC15: 3.16705467e-09 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 1.5691433968888884 - syst_JES_Zjet_MuScale: 0.1020336679728804 - syst_JES_Zjet_MuSmearID: 0.01397387629650413 - syst_JES_Zjet_MuSmearMS: 0.19869994338197483 - syst_JES_Zjet_OOC: 0.519559053428963 - syst_JES_Zjet_Stat1: 0.00669832342829159 - syst_JES_Zjet_Stat10: 0.107203957949322 - syst_JES_Zjet_Stat11: 0.19791164695388697 - syst_JES_Zjet_Stat12: 0.3947242328512401 - syst_JES_Zjet_Stat13: 0.02027578358535127 - syst_JES_Zjet_Stat2: 0.0013534154600491307 - syst_JES_Zjet_Stat3: 0.003789691366823388 - syst_JES_Zjet_Stat4: 0.004093570264145956 - syst_JES_Zjet_Stat5: 0.004985397877802734 - syst_JES_Zjet_Stat6: 0.006398636573520956 - syst_JES_Zjet_Stat7: 0.00828531355773576 - syst_JES_Zjet_Stat8: 0.009814452659216408 - syst_JES_Zjet_Stat9: 0.036101465344221144 - syst_JES_Zjet_Veto: 0.11057263076819687 - syst_JES_Zjet_dPhi: 0.09405865510414234 + syst_JES_Zjet_MC: 1.56914340e+00 + syst_JES_Zjet_MuScale: 1.02033668e-01 + syst_JES_Zjet_MuSmearID: 1.39738763e-02 + syst_JES_Zjet_MuSmearMS: 1.98699943e-01 + syst_JES_Zjet_OOC: 5.19559053e-01 + syst_JES_Zjet_Stat1: 6.69832343e-03 + syst_JES_Zjet_Stat10: 1.07203958e-01 + syst_JES_Zjet_Stat11: 1.97911647e-01 + syst_JES_Zjet_Stat12: 3.94724233e-01 + syst_JES_Zjet_Stat13: 2.02757836e-02 + syst_JES_Zjet_Stat2: 1.35341546e-03 + syst_JES_Zjet_Stat3: 3.78969137e-03 + syst_JES_Zjet_Stat4: 4.09357026e-03 + syst_JES_Zjet_Stat5: 4.98539788e-03 + syst_JES_Zjet_Stat6: 6.39863657e-03 + syst_JES_Zjet_Stat7: 8.28531356e-03 + syst_JES_Zjet_Stat8: 9.81445266e-03 + syst_JES_Zjet_Stat9: 3.61014653e-02 + syst_JES_Zjet_Veto: 1.10572631e-01 + syst_JES_Zjet_dPhi: 9.40586551e-02 syst_PRW: 0.0689 syst_Unfolding_bias: 0.07161 - syst_cleaning: 0.4615915402171058 + syst_cleaning: 4.61591540e-01 syst_lumi: 1.873 - stat: 0.33199 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.28452971725287324 - syst_JER_NP1: 0.028142217396644496 - syst_JER_NP2: 0.025927738042490323 - syst_JER_NP3: 0.0844475227582195 - syst_JER_NP4: 0.0328680342430149 - syst_JER_NP5: 0.014685083418217277 - syst_JER_NP6: 4.022688000578717e-12 - syst_JER_NP7: 0.03935152697164368 - syst_JER_NP8: 0.06467670678072593 - syst_JES_EtaIntercalibration_Modelling: 0.36996598154424953 - syst_JES_EtaIntercalibration_NonClosure: 4.8280916260982456e-05 + syst_JER_NP0: 2.84529717e-01 + syst_JER_NP1: 2.81422174e-02 + syst_JER_NP2: 2.59277380e-02 + syst_JER_NP3: 8.44475228e-02 + syst_JER_NP4: 3.28680342e-02 + syst_JER_NP5: 1.46850834e-02 + syst_JER_NP6: 4.02268800e-12 + syst_JER_NP7: 3.93515270e-02 + syst_JER_NP8: 6.46767068e-02 + syst_JES_EtaIntercalibration_Modelling: 3.69965982e-01 + syst_JES_EtaIntercalibration_NonClosure: 4.82809163e-05 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 0.00015288847920952057 - syst_JES_EtaIntercalibration_Stat101: 8.086781407012311e-06 - syst_JES_EtaIntercalibration_Stat102: 5.291803556444627e-09 - syst_JES_EtaIntercalibration_Stat103: 1.382176544439964e-09 - syst_JES_EtaIntercalibration_Stat104: 1.382176544439964e-09 - syst_JES_EtaIntercalibration_Stat105: 1.382176544439964e-09 + syst_JES_EtaIntercalibration_Stat100: 1.52888479e-04 + syst_JES_EtaIntercalibration_Stat101: 8.08678141e-06 + syst_JES_EtaIntercalibration_Stat102: 5.29180356e-09 + syst_JES_EtaIntercalibration_Stat103: 1.38217654e-09 + syst_JES_EtaIntercalibration_Stat104: 1.38217654e-09 + syst_JES_EtaIntercalibration_Stat105: 1.38217654e-09 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 8.014199086621196e-05 - syst_JES_EtaIntercalibration_Stat111: 8.014199086621196e-05 + syst_JES_EtaIntercalibration_Stat110: 8.01419909e-05 + syst_JES_EtaIntercalibration_Stat111: 8.01419909e-05 syst_JES_EtaIntercalibration_Stat112: 0.0 - syst_JES_EtaIntercalibration_Stat113: 6.342549772273923e-07 - syst_JES_EtaIntercalibration_Stat114: 0.0005578478885861271 - syst_JES_EtaIntercalibration_Stat115: 0.006085695687429662 - syst_JES_EtaIntercalibration_Stat116: 0.004812746043580525 - syst_JES_EtaIntercalibration_Stat117: 0.0007415709083256975 - syst_JES_EtaIntercalibration_Stat118: 0.00020253491223737208 - syst_JES_EtaIntercalibration_Stat119: 0.0031101813451951646 - syst_JES_EtaIntercalibration_Stat12: 2.3257141385627663e-05 - syst_JES_EtaIntercalibration_Stat120: 0.003965908494594902 - syst_JES_EtaIntercalibration_Stat121: 0.00016378207319484023 - syst_JES_EtaIntercalibration_Stat122: 7.052565355746447e-07 - syst_JES_EtaIntercalibration_Stat123: 1.382176544439964e-09 - syst_JES_EtaIntercalibration_Stat124: 1.382176544439964e-09 - syst_JES_EtaIntercalibration_Stat125: 1.382176544439964e-09 + syst_JES_EtaIntercalibration_Stat113: 6.34254977e-07 + syst_JES_EtaIntercalibration_Stat114: 5.57847889e-04 + syst_JES_EtaIntercalibration_Stat115: 6.08569569e-03 + syst_JES_EtaIntercalibration_Stat116: 4.81274604e-03 + syst_JES_EtaIntercalibration_Stat117: 7.41570908e-04 + syst_JES_EtaIntercalibration_Stat118: 2.02534912e-04 + syst_JES_EtaIntercalibration_Stat119: 3.11018135e-03 + syst_JES_EtaIntercalibration_Stat12: 2.32571414e-05 + syst_JES_EtaIntercalibration_Stat120: 3.96590849e-03 + syst_JES_EtaIntercalibration_Stat121: 1.63782073e-04 + syst_JES_EtaIntercalibration_Stat122: 7.05256536e-07 + syst_JES_EtaIntercalibration_Stat123: 1.38217654e-09 + syst_JES_EtaIntercalibration_Stat124: 1.38217654e-09 + syst_JES_EtaIntercalibration_Stat125: 1.38217654e-09 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 3.0908446661066616e-05 - syst_JES_EtaIntercalibration_Stat129: 7.567492632966352e-05 - syst_JES_EtaIntercalibration_Stat13: 3.7516055458254144e-05 - syst_JES_EtaIntercalibration_Stat130: 8.014199086621196e-05 - syst_JES_EtaIntercalibration_Stat131: 2.0464180291426285e-10 - syst_JES_EtaIntercalibration_Stat132: 0.00019697211553098068 - syst_JES_EtaIntercalibration_Stat133: 0.0030000106666477036 - syst_JES_EtaIntercalibration_Stat134: 0.0405567191812898 - syst_JES_EtaIntercalibration_Stat135: 0.023376271623165232 - syst_JES_EtaIntercalibration_Stat136: 0.00308868106964769 - syst_JES_EtaIntercalibration_Stat137: 0.0015229767792057764 - syst_JES_EtaIntercalibration_Stat138: 0.0244697583764123 - syst_JES_EtaIntercalibration_Stat139: 0.02785714405677653 - syst_JES_EtaIntercalibration_Stat14: 3.5567663333426893e-10 - syst_JES_EtaIntercalibration_Stat140: 0.0029035441704923317 - syst_JES_EtaIntercalibration_Stat141: 8.241089448809487e-05 + syst_JES_EtaIntercalibration_Stat128: 3.09084467e-05 + syst_JES_EtaIntercalibration_Stat129: 7.56749263e-05 + syst_JES_EtaIntercalibration_Stat13: 3.75160555e-05 + syst_JES_EtaIntercalibration_Stat130: 8.01419909e-05 + syst_JES_EtaIntercalibration_Stat131: 2.04641803e-10 + syst_JES_EtaIntercalibration_Stat132: 1.96972116e-04 + syst_JES_EtaIntercalibration_Stat133: 3.00001067e-03 + syst_JES_EtaIntercalibration_Stat134: 4.05567192e-02 + syst_JES_EtaIntercalibration_Stat135: 2.33762716e-02 + syst_JES_EtaIntercalibration_Stat136: 3.08868107e-03 + syst_JES_EtaIntercalibration_Stat137: 1.52297678e-03 + syst_JES_EtaIntercalibration_Stat138: 2.44697584e-02 + syst_JES_EtaIntercalibration_Stat139: 2.78571441e-02 + syst_JES_EtaIntercalibration_Stat14: 3.55676633e-10 + syst_JES_EtaIntercalibration_Stat140: 2.90354417e-03 + syst_JES_EtaIntercalibration_Stat141: 8.24108945e-05 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 1.382176544439964e-09 - syst_JES_EtaIntercalibration_Stat144: 1.382176544439964e-09 + syst_JES_EtaIntercalibration_Stat143: 1.38217654e-09 + syst_JES_EtaIntercalibration_Stat144: 1.38217654e-09 syst_JES_EtaIntercalibration_Stat145: 0.0 - syst_JES_EtaIntercalibration_Stat146: 3.0908446661066616e-05 - syst_JES_EtaIntercalibration_Stat147: 7.567492632966352e-05 + syst_JES_EtaIntercalibration_Stat146: 3.09084467e-05 + syst_JES_EtaIntercalibration_Stat147: 7.56749263e-05 syst_JES_EtaIntercalibration_Stat148: 0.0 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 4.936687736478782e-06 - syst_JES_EtaIntercalibration_Stat151: 0.003259735380364486 - syst_JES_EtaIntercalibration_Stat152: 0.04459178259500286 - syst_JES_EtaIntercalibration_Stat153: 0.03141010148025632 - syst_JES_EtaIntercalibration_Stat154: 0.003252872955942178 - syst_JES_EtaIntercalibration_Stat155: 0.0012935734488230654 - syst_JES_EtaIntercalibration_Stat156: 0.02815722619062467 - syst_JES_EtaIntercalibration_Stat157: 0.03439575954968869 - syst_JES_EtaIntercalibration_Stat158: 0.002720521176171948 - syst_JES_EtaIntercalibration_Stat159: 6.976015200671511e-05 + syst_JES_EtaIntercalibration_Stat150: 4.93668774e-06 + syst_JES_EtaIntercalibration_Stat151: 3.25973538e-03 + syst_JES_EtaIntercalibration_Stat152: 4.45917826e-02 + syst_JES_EtaIntercalibration_Stat153: 3.14101015e-02 + syst_JES_EtaIntercalibration_Stat154: 3.25287296e-03 + syst_JES_EtaIntercalibration_Stat155: 1.29357345e-03 + syst_JES_EtaIntercalibration_Stat156: 2.81572262e-02 + syst_JES_EtaIntercalibration_Stat157: 3.43957595e-02 + syst_JES_EtaIntercalibration_Stat158: 2.72052118e-03 + syst_JES_EtaIntercalibration_Stat159: 6.97601520e-05 syst_JES_EtaIntercalibration_Stat16: 0.0 syst_JES_EtaIntercalibration_Stat160: 0.0 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 - syst_JES_EtaIntercalibration_Stat164: 3.0908446661066616e-05 + syst_JES_EtaIntercalibration_Stat164: 3.09084467e-05 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 - syst_JES_EtaIntercalibration_Stat168: 0.00011422009050512962 - syst_JES_EtaIntercalibration_Stat169: 0.004956820150055881 + syst_JES_EtaIntercalibration_Stat168: 1.14220091e-04 + syst_JES_EtaIntercalibration_Stat169: 4.95682015e-03 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 0.05947010761718865 - syst_JES_EtaIntercalibration_Stat171: 0.052519759138823174 - syst_JES_EtaIntercalibration_Stat172: 0.0037430416441712215 - syst_JES_EtaIntercalibration_Stat173: 0.0021728577380951564 - syst_JES_EtaIntercalibration_Stat174: 0.04986798672495211 - syst_JES_EtaIntercalibration_Stat175: 0.050639556425782405 - syst_JES_EtaIntercalibration_Stat176: 0.005261852976851405 - syst_JES_EtaIntercalibration_Stat177: 0.00017405606769084494 + syst_JES_EtaIntercalibration_Stat170: 5.94701076e-02 + syst_JES_EtaIntercalibration_Stat171: 5.25197591e-02 + syst_JES_EtaIntercalibration_Stat172: 3.74304164e-03 + syst_JES_EtaIntercalibration_Stat173: 2.17285774e-03 + syst_JES_EtaIntercalibration_Stat174: 4.98679867e-02 + syst_JES_EtaIntercalibration_Stat175: 5.06395564e-02 + syst_JES_EtaIntercalibration_Stat176: 5.26185298e-03 + syst_JES_EtaIntercalibration_Stat177: 1.74056068e-04 syst_JES_EtaIntercalibration_Stat178: 0.0 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 @@ -15612,17 +15612,17 @@ bins: syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 syst_JES_EtaIntercalibration_Stat184: 0.0 - syst_JES_EtaIntercalibration_Stat185: 0.00018965956342879207 - syst_JES_EtaIntercalibration_Stat186: 0.006577593556917302 - syst_JES_EtaIntercalibration_Stat187: 0.0715267605515586 - syst_JES_EtaIntercalibration_Stat188: 0.05811720915529237 - syst_JES_EtaIntercalibration_Stat189: 0.003938147787983585 + syst_JES_EtaIntercalibration_Stat185: 1.89659563e-04 + syst_JES_EtaIntercalibration_Stat186: 6.57759356e-03 + syst_JES_EtaIntercalibration_Stat187: 7.15267606e-02 + syst_JES_EtaIntercalibration_Stat188: 5.81172092e-02 + syst_JES_EtaIntercalibration_Stat189: 3.93814779e-03 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 0.004417219374221752 - syst_JES_EtaIntercalibration_Stat191: 0.04921646066104307 - syst_JES_EtaIntercalibration_Stat192: 0.06982845909799243 - syst_JES_EtaIntercalibration_Stat193: 0.007633108852230525 - syst_JES_EtaIntercalibration_Stat194: 8.854243728292101e-05 + syst_JES_EtaIntercalibration_Stat190: 4.41721937e-03 + syst_JES_EtaIntercalibration_Stat191: 4.92164607e-02 + syst_JES_EtaIntercalibration_Stat192: 6.98284591e-02 + syst_JES_EtaIntercalibration_Stat193: 7.63310885e-03 + syst_JES_EtaIntercalibration_Stat194: 8.85424373e-05 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 syst_JES_EtaIntercalibration_Stat197: 0.0 @@ -15630,70 +15630,70 @@ bins: syst_JES_EtaIntercalibration_Stat199: 0.0 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 2.5045454677445964e-07 - syst_JES_EtaIntercalibration_Stat201: 0.0013982814416275433 - syst_JES_EtaIntercalibration_Stat202: 0.004096136563885536 - syst_JES_EtaIntercalibration_Stat203: 0.003504541196790245 - syst_JES_EtaIntercalibration_Stat204: 0.0009304991281564966 - syst_JES_EtaIntercalibration_Stat205: 0.0005657743962923738 - syst_JES_EtaIntercalibration_Stat206: 0.0028699397258479145 - syst_JES_EtaIntercalibration_Stat207: 0.0009304379667661891 - syst_JES_EtaIntercalibration_Stat208: 0.0002515653606918091 - syst_JES_EtaIntercalibration_Stat209: 5.5371794941106975e-05 + syst_JES_EtaIntercalibration_Stat200: 2.50454547e-07 + syst_JES_EtaIntercalibration_Stat201: 1.39828144e-03 + syst_JES_EtaIntercalibration_Stat202: 4.09613656e-03 + syst_JES_EtaIntercalibration_Stat203: 3.50454120e-03 + syst_JES_EtaIntercalibration_Stat204: 9.30499128e-04 + syst_JES_EtaIntercalibration_Stat205: 5.65774396e-04 + syst_JES_EtaIntercalibration_Stat206: 2.86993973e-03 + syst_JES_EtaIntercalibration_Stat207: 9.30437967e-04 + syst_JES_EtaIntercalibration_Stat208: 2.51565361e-04 + syst_JES_EtaIntercalibration_Stat209: 5.53717949e-05 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 syst_JES_EtaIntercalibration_Stat211: 0.0 syst_JES_EtaIntercalibration_Stat212: 0.0 - syst_JES_EtaIntercalibration_Stat213: 2.493287137495399e-07 - syst_JES_EtaIntercalibration_Stat214: 0.0002522958778894336 - syst_JES_EtaIntercalibration_Stat215: 0.002762408188519575 - syst_JES_EtaIntercalibration_Stat216: 0.0024847009880466504 - syst_JES_EtaIntercalibration_Stat217: 0.00013966433000233095 - syst_JES_EtaIntercalibration_Stat218: 0.00015051402152291328 - syst_JES_EtaIntercalibration_Stat219: 0.001976002214067586 + syst_JES_EtaIntercalibration_Stat213: 2.49328714e-07 + syst_JES_EtaIntercalibration_Stat214: 2.52295878e-04 + syst_JES_EtaIntercalibration_Stat215: 2.76240819e-03 + syst_JES_EtaIntercalibration_Stat216: 2.48470099e-03 + syst_JES_EtaIntercalibration_Stat217: 1.39664330e-04 + syst_JES_EtaIntercalibration_Stat218: 1.50514022e-04 + syst_JES_EtaIntercalibration_Stat219: 1.97600221e-03 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 0.00259591737156636 - syst_JES_EtaIntercalibration_Stat221: 0.0005404094836325506 - syst_JES_EtaIntercalibration_Stat222: 2.5168154237807646e-05 + syst_JES_EtaIntercalibration_Stat220: 2.59591737e-03 + syst_JES_EtaIntercalibration_Stat221: 5.40409484e-04 + syst_JES_EtaIntercalibration_Stat222: 2.51681542e-05 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 - syst_JES_EtaIntercalibration_Stat225: 1.2022164655335578e-17 - syst_JES_EtaIntercalibration_Stat226: 6.909828850991897e-07 - syst_JES_EtaIntercalibration_Stat227: 2.2714293269877453e-06 - syst_JES_EtaIntercalibration_Stat228: 1.0395973006409742e-05 - syst_JES_EtaIntercalibration_Stat229: 4.3292609935184085e-07 + syst_JES_EtaIntercalibration_Stat225: 1.20221647e-17 + syst_JES_EtaIntercalibration_Stat226: 6.90982885e-07 + syst_JES_EtaIntercalibration_Stat227: 2.27142933e-06 + syst_JES_EtaIntercalibration_Stat228: 1.03959730e-05 + syst_JES_EtaIntercalibration_Stat229: 4.32926099e-07 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 3.270977824549028e-06 - syst_JES_EtaIntercalibration_Stat231: 6.354533499793671e-05 - syst_JES_EtaIntercalibration_Stat232: 5.3854195454021955e-05 - syst_JES_EtaIntercalibration_Stat233: 7.329931463589757e-06 - syst_JES_EtaIntercalibration_Stat234: 5.154583203284524e-11 + syst_JES_EtaIntercalibration_Stat230: 3.27097782e-06 + syst_JES_EtaIntercalibration_Stat231: 6.35453350e-05 + syst_JES_EtaIntercalibration_Stat232: 5.38541955e-05 + syst_JES_EtaIntercalibration_Stat233: 7.32993146e-06 + syst_JES_EtaIntercalibration_Stat234: 5.15458320e-11 syst_JES_EtaIntercalibration_Stat235: 0.0 syst_JES_EtaIntercalibration_Stat236: 0.0 - syst_JES_EtaIntercalibration_Stat237: 5.904114582221452e-17 - syst_JES_EtaIntercalibration_Stat238: 1.4350234376831621e-09 - syst_JES_EtaIntercalibration_Stat239: 9.718436949942104e-12 + syst_JES_EtaIntercalibration_Stat237: 5.90411458e-17 + syst_JES_EtaIntercalibration_Stat238: 1.43502344e-09 + syst_JES_EtaIntercalibration_Stat239: 9.71843695e-12 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 - syst_JES_EtaIntercalibration_Stat241: 1.0563777875362583e-16 - syst_JES_EtaIntercalibration_Stat242: 2.4431241285493458e-11 - syst_JES_EtaIntercalibration_Stat243: 1.0952624355245043e-09 - syst_JES_EtaIntercalibration_Stat244: 8.73126812095471e-27 - syst_JES_EtaIntercalibration_Stat245: 5.370223528867304e-22 + syst_JES_EtaIntercalibration_Stat241: 1.05637779e-16 + syst_JES_EtaIntercalibration_Stat242: 2.44312413e-11 + syst_JES_EtaIntercalibration_Stat243: 1.09526244e-09 + syst_JES_EtaIntercalibration_Stat244: 8.73126812e-27 + syst_JES_EtaIntercalibration_Stat245: 5.37022353e-22 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 syst_JES_EtaIntercalibration_Stat27: 0.0 - syst_JES_EtaIntercalibration_Stat28: 3.0613998023779904e-11 - syst_JES_EtaIntercalibration_Stat29: 9.29411545589466e-08 + syst_JES_EtaIntercalibration_Stat28: 3.06139980e-11 + syst_JES_EtaIntercalibration_Stat29: 9.29411546e-08 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 2.1286818151146966e-06 - syst_JES_EtaIntercalibration_Stat31: 1.445119631726038e-06 - syst_JES_EtaIntercalibration_Stat32: 4.1363027488325853e-10 - syst_JES_EtaIntercalibration_Stat33: 1.777629935475885e-08 - syst_JES_EtaIntercalibration_Stat34: 0.00010944403638389807 - syst_JES_EtaIntercalibration_Stat35: 0.00013516449773561104 - syst_JES_EtaIntercalibration_Stat36: 6.913399820638178e-07 - syst_JES_EtaIntercalibration_Stat37: 2.234345541763852e-11 + syst_JES_EtaIntercalibration_Stat30: 2.12868182e-06 + syst_JES_EtaIntercalibration_Stat31: 1.44511963e-06 + syst_JES_EtaIntercalibration_Stat32: 4.13630275e-10 + syst_JES_EtaIntercalibration_Stat33: 1.77762994e-08 + syst_JES_EtaIntercalibration_Stat34: 1.09444036e-04 + syst_JES_EtaIntercalibration_Stat35: 1.35164498e-04 + syst_JES_EtaIntercalibration_Stat36: 6.91339982e-07 + syst_JES_EtaIntercalibration_Stat37: 2.23434554e-11 syst_JES_EtaIntercalibration_Stat38: 0.0 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 @@ -15708,20 +15708,20 @@ bins: syst_JES_EtaIntercalibration_Stat48: 0.0 syst_JES_EtaIntercalibration_Stat49: 0.0 syst_JES_EtaIntercalibration_Stat5: 0.0 - syst_JES_EtaIntercalibration_Stat50: 3.1003709455482906e-11 - syst_JES_EtaIntercalibration_Stat51: 2.4617807106848493e-07 - syst_JES_EtaIntercalibration_Stat52: 5.795384607599395e-05 - syst_JES_EtaIntercalibration_Stat53: 9.72953950606091e-06 - syst_JES_EtaIntercalibration_Stat54: 9.032833608563816e-08 - syst_JES_EtaIntercalibration_Stat55: 2.327285034256655e-05 - syst_JES_EtaIntercalibration_Stat56: 9.163934599705248e-05 - syst_JES_EtaIntercalibration_Stat57: 0.0001305695311577322 - syst_JES_EtaIntercalibration_Stat58: 9.907639409566741e-07 - syst_JES_EtaIntercalibration_Stat59: 1.2495461696151926e-10 + syst_JES_EtaIntercalibration_Stat50: 3.10037095e-11 + syst_JES_EtaIntercalibration_Stat51: 2.46178071e-07 + syst_JES_EtaIntercalibration_Stat52: 5.79538461e-05 + syst_JES_EtaIntercalibration_Stat53: 9.72953951e-06 + syst_JES_EtaIntercalibration_Stat54: 9.03283361e-08 + syst_JES_EtaIntercalibration_Stat55: 2.32728503e-05 + syst_JES_EtaIntercalibration_Stat56: 9.16393460e-05 + syst_JES_EtaIntercalibration_Stat57: 1.30569531e-04 + syst_JES_EtaIntercalibration_Stat58: 9.90763941e-07 + syst_JES_EtaIntercalibration_Stat59: 1.24954617e-10 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 1.382176544439964e-09 - syst_JES_EtaIntercalibration_Stat62: 1.382176544439964e-09 + syst_JES_EtaIntercalibration_Stat61: 1.38217654e-09 + syst_JES_EtaIntercalibration_Stat62: 1.38217654e-09 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 @@ -15729,218 +15729,218 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 3.0613998023779904e-11 + syst_JES_EtaIntercalibration_Stat7: 3.06139980e-11 syst_JES_EtaIntercalibration_Stat70: 0.0 syst_JES_EtaIntercalibration_Stat71: 0.0 - syst_JES_EtaIntercalibration_Stat72: 8.858573855311023e-09 - syst_JES_EtaIntercalibration_Stat73: 3.646595058407226e-05 - syst_JES_EtaIntercalibration_Stat74: 0.0003452304737418179 - syst_JES_EtaIntercalibration_Stat75: 0.00029598382979480485 - syst_JES_EtaIntercalibration_Stat76: 2.305268684448735e-06 - syst_JES_EtaIntercalibration_Stat77: 1.862962239955496e-05 - syst_JES_EtaIntercalibration_Stat78: 0.0001261776557081324 - syst_JES_EtaIntercalibration_Stat79: 0.0001169350854993915 - syst_JES_EtaIntercalibration_Stat8: 4.824260850119943e-08 - syst_JES_EtaIntercalibration_Stat80: 7.348721921749388e-06 - syst_JES_EtaIntercalibration_Stat81: 4.227069995871845e-10 - syst_JES_EtaIntercalibration_Stat82: 1.382176544439964e-09 - syst_JES_EtaIntercalibration_Stat83: 1.382176544439964e-09 - syst_JES_EtaIntercalibration_Stat84: 1.382176544439964e-09 + syst_JES_EtaIntercalibration_Stat72: 8.85857386e-09 + syst_JES_EtaIntercalibration_Stat73: 3.64659506e-05 + syst_JES_EtaIntercalibration_Stat74: 3.45230474e-04 + syst_JES_EtaIntercalibration_Stat75: 2.95983830e-04 + syst_JES_EtaIntercalibration_Stat76: 2.30526868e-06 + syst_JES_EtaIntercalibration_Stat77: 1.86296224e-05 + syst_JES_EtaIntercalibration_Stat78: 1.26177656e-04 + syst_JES_EtaIntercalibration_Stat79: 1.16935085e-04 + syst_JES_EtaIntercalibration_Stat8: 4.82426085e-08 + syst_JES_EtaIntercalibration_Stat80: 7.34872192e-06 + syst_JES_EtaIntercalibration_Stat81: 4.22707000e-10 + syst_JES_EtaIntercalibration_Stat82: 1.38217654e-09 + syst_JES_EtaIntercalibration_Stat83: 1.38217654e-09 + syst_JES_EtaIntercalibration_Stat84: 1.38217654e-09 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 syst_JES_EtaIntercalibration_Stat89: 0.0 - syst_JES_EtaIntercalibration_Stat9: 1.423230897465341e-08 + syst_JES_EtaIntercalibration_Stat9: 1.42323090e-08 syst_JES_EtaIntercalibration_Stat90: 0.0 syst_JES_EtaIntercalibration_Stat91: 0.0 syst_JES_EtaIntercalibration_Stat92: 0.0 - syst_JES_EtaIntercalibration_Stat93: 8.216849031106754e-09 - syst_JES_EtaIntercalibration_Stat94: 8.48845433515431e-05 - syst_JES_EtaIntercalibration_Stat95: 0.0008385778616204938 - syst_JES_EtaIntercalibration_Stat96: 0.00026877946289662833 - syst_JES_EtaIntercalibration_Stat97: 3.2963400492060884e-05 - syst_JES_EtaIntercalibration_Stat98: 1.5115822008743025e-05 - syst_JES_EtaIntercalibration_Stat99: 0.00020008975685926553 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.03788356239848623 - syst_JES_Flavour_Comp: 0.164734968965305 - syst_JES_Flavour_Response: 0.9797494475629981 - syst_JES_Gjet_Generator: 0.9916567248801372 - syst_JES_Gjet_OOC: 0.6726722140091711 - syst_JES_Gjet_Purity: 0.21595043412783407 - syst_JES_Gjet_Stat1: 0.00032934156661435854 - syst_JES_Gjet_Stat10: 0.06478805812030486 - syst_JES_Gjet_Stat11: 0.107321038361544 - syst_JES_Gjet_Stat12: 0.10079129773943782 - syst_JES_Gjet_Stat13: 0.004554860343632942 - syst_JES_Gjet_Stat14: 0.021861322009430265 - syst_JES_Gjet_Stat15: 0.0027372911335844423 - syst_JES_Gjet_Stat2: 1.2323315331111188e-31 - syst_JES_Gjet_Stat3: 0.001276521444925441 - syst_JES_Gjet_Stat4: 0.002558324647107947 - syst_JES_Gjet_Stat5: 0.002463415261380022 - syst_JES_Gjet_Stat6: 0.005976605976639249 - syst_JES_Gjet_Stat7: 0.009218616097332613 - syst_JES_Gjet_Stat8: 0.011211773934128354 - syst_JES_Gjet_Stat9: 0.027344701040603825 - syst_JES_Gjet_Veto: 0.28988057885964 - syst_JES_Gjet_dPhi: 0.04984911132608083 - syst_JES_LArESZee: 1.2444440043650018 - syst_JES_LArEsmear: 0.09908786139078792 - syst_JES_LAr_JVT: 0.1378020061537567 - syst_JES_MJB_Alpha: 0.00418992070420193 - syst_JES_MJB_Asym: 0.015676092521735126 - syst_JES_MJB_Beta: 0.0004532038968003254 - syst_JES_MJB_Fragmentation: 0.059298010717055254 - syst_JES_MJB_Stat1: 0.006994230264096258 - syst_JES_MJB_Stat10: 1.2393046222378096e-06 - syst_JES_MJB_Stat11: 1.3328130977536e-07 - syst_JES_MJB_Stat12: 7.787300442327026e-08 - syst_JES_MJB_Stat13: 5.3546350715997626e-08 - syst_JES_MJB_Stat14: 1.9582626866689772e-20 - syst_JES_MJB_Stat15: 1.4207463487547663e-14 - syst_JES_MJB_Stat16: 1.9684661993871581e-22 - syst_JES_MJB_Stat2: 0.0020065761884364122 - syst_JES_MJB_Stat3: 0.003274286639865239 - syst_JES_MJB_Stat4: 0.0021034761515168173 - syst_JES_MJB_Stat5: 4.909453213308513e-05 - syst_JES_MJB_Stat6: 0.000851822587162188 - syst_JES_MJB_Stat7: 0.00011325880230675328 - syst_JES_MJB_Stat8: 4.213972094303329e-16 - syst_JES_MJB_Stat9: 3.347502203135944e-31 - syst_JES_MJB_Threshold: 0.016967167905988317 - syst_JES_Pileup_MuOffset: 0.04310584270142506 - syst_JES_Pileup_NPVOffset: 0.07310155743894928 - syst_JES_Pileup_Pt_term: 0.15103286091112753 - syst_JES_Pileup_Rho_topology: 0.3195118894501424 - syst_JES_PunchThrough_MC15: 7.081462083646109e-07 + syst_JES_EtaIntercalibration_Stat93: 8.21684903e-09 + syst_JES_EtaIntercalibration_Stat94: 8.48845434e-05 + syst_JES_EtaIntercalibration_Stat95: 8.38577862e-04 + syst_JES_EtaIntercalibration_Stat96: 2.68779463e-04 + syst_JES_EtaIntercalibration_Stat97: 3.29634005e-05 + syst_JES_EtaIntercalibration_Stat98: 1.51158220e-05 + syst_JES_EtaIntercalibration_Stat99: 2.00089757e-04 + syst_JES_EtaIntercalibration_TotalStat_MJB: 3.78835624e-02 + syst_JES_Flavour_Comp: 1.64734969e-01 + syst_JES_Flavour_Response: 9.79749448e-01 + syst_JES_Gjet_Generator: 9.91656725e-01 + syst_JES_Gjet_OOC: 6.72672214e-01 + syst_JES_Gjet_Purity: 2.15950434e-01 + syst_JES_Gjet_Stat1: 3.29341567e-04 + syst_JES_Gjet_Stat10: 6.47880581e-02 + syst_JES_Gjet_Stat11: 1.07321038e-01 + syst_JES_Gjet_Stat12: 1.00791298e-01 + syst_JES_Gjet_Stat13: 4.55486034e-03 + syst_JES_Gjet_Stat14: 2.18613220e-02 + syst_JES_Gjet_Stat15: 2.73729113e-03 + syst_JES_Gjet_Stat2: 1.23233153e-31 + syst_JES_Gjet_Stat3: 1.27652144e-03 + syst_JES_Gjet_Stat4: 2.55832465e-03 + syst_JES_Gjet_Stat5: 2.46341526e-03 + syst_JES_Gjet_Stat6: 5.97660598e-03 + syst_JES_Gjet_Stat7: 9.21861610e-03 + syst_JES_Gjet_Stat8: 1.12117739e-02 + syst_JES_Gjet_Stat9: 2.73447010e-02 + syst_JES_Gjet_Veto: 2.89880579e-01 + syst_JES_Gjet_dPhi: 4.98491113e-02 + syst_JES_LArESZee: 1.24444400e+00 + syst_JES_LArEsmear: 9.90878614e-02 + syst_JES_LAr_JVT: 1.37802006e-01 + syst_JES_MJB_Alpha: 4.18992070e-03 + syst_JES_MJB_Asym: 1.56760925e-02 + syst_JES_MJB_Beta: 4.53203897e-04 + syst_JES_MJB_Fragmentation: 5.92980107e-02 + syst_JES_MJB_Stat1: 6.99423026e-03 + syst_JES_MJB_Stat10: 1.23930462e-06 + syst_JES_MJB_Stat11: 1.33281310e-07 + syst_JES_MJB_Stat12: 7.78730044e-08 + syst_JES_MJB_Stat13: 5.35463507e-08 + syst_JES_MJB_Stat14: 1.95826269e-20 + syst_JES_MJB_Stat15: 1.42074635e-14 + syst_JES_MJB_Stat16: 1.96846620e-22 + syst_JES_MJB_Stat2: 2.00657619e-03 + syst_JES_MJB_Stat3: 3.27428664e-03 + syst_JES_MJB_Stat4: 2.10347615e-03 + syst_JES_MJB_Stat5: 4.90945321e-05 + syst_JES_MJB_Stat6: 8.51822587e-04 + syst_JES_MJB_Stat7: 1.13258802e-04 + syst_JES_MJB_Stat8: 4.21397209e-16 + syst_JES_MJB_Stat9: 3.34750220e-31 + syst_JES_MJB_Threshold: 1.69671679e-02 + syst_JES_Pileup_MuOffset: 4.31058427e-02 + syst_JES_Pileup_NPVOffset: 7.31015574e-02 + syst_JES_Pileup_Pt_term: 1.51032861e-01 + syst_JES_Pileup_Rho_topology: 3.19511889e-01 + syst_JES_PunchThrough_MC15: 7.08146208e-07 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.9420388739324932 - syst_JES_Zjet_MuScale: 0.05964857647085973 - syst_JES_Zjet_MuSmearID: 0.008490521465139816 - syst_JES_Zjet_MuSmearMS: 0.14177775521921623 - syst_JES_Zjet_OOC: 0.32071822523829235 - syst_JES_Zjet_Stat1: 0.00401976774826606 - syst_JES_Zjet_Stat10: 0.04950810337712403 - syst_JES_Zjet_Stat11: 0.08530866954770776 - syst_JES_Zjet_Stat12: 0.2879538287642656 - syst_JES_Zjet_Stat13: 0.05519366902100277 - syst_JES_Zjet_Stat2: 0.000810753357994896 - syst_JES_Zjet_Stat3: 0.002268154228850135 - syst_JES_Zjet_Stat4: 0.0024501669330884374 - syst_JES_Zjet_Stat5: 0.003182081551437675 - syst_JES_Zjet_Stat6: 0.00381619393997475 - syst_JES_Zjet_Stat7: 0.004830685743245983 - syst_JES_Zjet_Stat8: 0.00560849739235029 - syst_JES_Zjet_Stat9: 0.016576320460222768 - syst_JES_Zjet_Veto: 0.06839070916433021 - syst_JES_Zjet_dPhi: 0.05690056941718597 + syst_JES_Zjet_MC: 9.42038874e-01 + syst_JES_Zjet_MuScale: 5.96485765e-02 + syst_JES_Zjet_MuSmearID: 8.49052147e-03 + syst_JES_Zjet_MuSmearMS: 1.41777755e-01 + syst_JES_Zjet_OOC: 3.20718225e-01 + syst_JES_Zjet_Stat1: 4.01976775e-03 + syst_JES_Zjet_Stat10: 4.95081034e-02 + syst_JES_Zjet_Stat11: 8.53086695e-02 + syst_JES_Zjet_Stat12: 2.87953829e-01 + syst_JES_Zjet_Stat13: 5.51936690e-02 + syst_JES_Zjet_Stat2: 8.10753358e-04 + syst_JES_Zjet_Stat3: 2.26815423e-03 + syst_JES_Zjet_Stat4: 2.45016693e-03 + syst_JES_Zjet_Stat5: 3.18208155e-03 + syst_JES_Zjet_Stat6: 3.81619394e-03 + syst_JES_Zjet_Stat7: 4.83068574e-03 + syst_JES_Zjet_Stat8: 5.60849739e-03 + syst_JES_Zjet_Stat9: 1.65763205e-02 + syst_JES_Zjet_Veto: 6.83907092e-02 + syst_JES_Zjet_dPhi: 5.69005694e-02 syst_PRW: 0.04127 syst_Unfolding_bias: 0.04289 - syst_cleaning: 0.2764353088879928 + syst_cleaning: 2.76435309e-01 syst_lumi: 1.1216 - stat: 0.15622 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.16277649553912876 - syst_JER_NP1: 0.012566027892695446 - syst_JER_NP2: 0.01736890036818681 - syst_JER_NP3: 0.03966897402252798 - syst_JER_NP4: 0.020787463217045027 - syst_JER_NP5: 0.008830836356200925 - syst_JER_NP6: 3.0613998023779905e-09 - syst_JER_NP7: 0.022587932618989285 - syst_JER_NP8: 0.030101516157828332 - syst_JES_EtaIntercalibration_Modelling: 0.24070702108580047 - syst_JES_EtaIntercalibration_NonClosure: 2.658697989618227e-05 + syst_JER_NP0: 1.62776496e-01 + syst_JER_NP1: 1.25660279e-02 + syst_JER_NP2: 1.73689004e-02 + syst_JER_NP3: 3.96689740e-02 + syst_JER_NP4: 2.07874632e-02 + syst_JER_NP5: 8.83083636e-03 + syst_JER_NP6: 3.06139980e-09 + syst_JER_NP7: 2.25879326e-02 + syst_JER_NP8: 3.01015162e-02 + syst_JES_EtaIntercalibration_Modelling: 2.40707021e-01 + syst_JES_EtaIntercalibration_NonClosure: 2.65869799e-05 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 8.800625020417584e-05 - syst_JES_EtaIntercalibration_Stat101: 1.1852185925587737e-06 - syst_JES_EtaIntercalibration_Stat102: 5.287831634261817e-10 - syst_JES_EtaIntercalibration_Stat103: 1.4679130594146235e-10 - syst_JES_EtaIntercalibration_Stat104: 1.4679130594146235e-10 - syst_JES_EtaIntercalibration_Stat105: 1.4679130594146235e-10 + syst_JES_EtaIntercalibration_Stat100: 8.80062502e-05 + syst_JES_EtaIntercalibration_Stat101: 1.18521859e-06 + syst_JES_EtaIntercalibration_Stat102: 5.28783163e-10 + syst_JES_EtaIntercalibration_Stat103: 1.46791306e-10 + syst_JES_EtaIntercalibration_Stat104: 1.46791306e-10 + syst_JES_EtaIntercalibration_Stat105: 1.46791306e-10 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 1.607343149423918e-05 - syst_JES_EtaIntercalibration_Stat111: 1.607343149423918e-05 + syst_JES_EtaIntercalibration_Stat110: 1.60734315e-05 + syst_JES_EtaIntercalibration_Stat111: 1.60734315e-05 syst_JES_EtaIntercalibration_Stat112: 0.0 - syst_JES_EtaIntercalibration_Stat113: 7.004107764125046e-08 - syst_JES_EtaIntercalibration_Stat114: 0.00016641405191569612 - syst_JES_EtaIntercalibration_Stat115: 0.0017706999936465803 - syst_JES_EtaIntercalibration_Stat116: 0.001483043386924334 - syst_JES_EtaIntercalibration_Stat117: 0.000228918351547009 - syst_JES_EtaIntercalibration_Stat118: 6.984024395003213e-05 - syst_JES_EtaIntercalibration_Stat119: 0.0009834512595955126 - syst_JES_EtaIntercalibration_Stat12: 5.003657825684202e-06 - syst_JES_EtaIntercalibration_Stat120: 0.001166268540045559 - syst_JES_EtaIntercalibration_Stat121: 0.0001079399447609642 - syst_JES_EtaIntercalibration_Stat122: 8.687576276895358e-08 - syst_JES_EtaIntercalibration_Stat123: 1.4679130594146235e-10 - syst_JES_EtaIntercalibration_Stat124: 1.4679130594146235e-10 - syst_JES_EtaIntercalibration_Stat125: 1.4679130594146235e-10 + syst_JES_EtaIntercalibration_Stat113: 7.00410776e-08 + syst_JES_EtaIntercalibration_Stat114: 1.66414052e-04 + syst_JES_EtaIntercalibration_Stat115: 1.77069999e-03 + syst_JES_EtaIntercalibration_Stat116: 1.48304339e-03 + syst_JES_EtaIntercalibration_Stat117: 2.28918352e-04 + syst_JES_EtaIntercalibration_Stat118: 6.98402440e-05 + syst_JES_EtaIntercalibration_Stat119: 9.83451260e-04 + syst_JES_EtaIntercalibration_Stat12: 5.00365783e-06 + syst_JES_EtaIntercalibration_Stat120: 1.16626854e-03 + syst_JES_EtaIntercalibration_Stat121: 1.07939945e-04 + syst_JES_EtaIntercalibration_Stat122: 8.68757628e-08 + syst_JES_EtaIntercalibration_Stat123: 1.46791306e-10 + syst_JES_EtaIntercalibration_Stat124: 1.46791306e-10 + syst_JES_EtaIntercalibration_Stat125: 1.46791306e-10 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 4.883517251940449e-05 - syst_JES_EtaIntercalibration_Stat129: 4.6042698389646974e-05 - syst_JES_EtaIntercalibration_Stat13: 7.1587510569558855e-06 - syst_JES_EtaIntercalibration_Stat130: 1.607343149423918e-05 - syst_JES_EtaIntercalibration_Stat131: 2.076728918275084e-11 - syst_JES_EtaIntercalibration_Stat132: 6.121083351227543e-05 - syst_JES_EtaIntercalibration_Stat133: 0.000976286693292498 - syst_JES_EtaIntercalibration_Stat134: 0.01452011019241934 - syst_JES_EtaIntercalibration_Stat135: 0.0075764277202386085 - syst_JES_EtaIntercalibration_Stat136: 0.001048226850447936 - syst_JES_EtaIntercalibration_Stat137: 0.0005847641945263065 - syst_JES_EtaIntercalibration_Stat138: 0.008483120460655974 - syst_JES_EtaIntercalibration_Stat139: 0.010501538494430234 - syst_JES_EtaIntercalibration_Stat14: 3.6390387467022116e-11 - syst_JES_EtaIntercalibration_Stat140: 0.0009427206797349892 - syst_JES_EtaIntercalibration_Stat141: 1.3882378787597622e-05 + syst_JES_EtaIntercalibration_Stat128: 4.88351725e-05 + syst_JES_EtaIntercalibration_Stat129: 4.60426984e-05 + syst_JES_EtaIntercalibration_Stat13: 7.15875106e-06 + syst_JES_EtaIntercalibration_Stat130: 1.60734315e-05 + syst_JES_EtaIntercalibration_Stat131: 2.07672892e-11 + syst_JES_EtaIntercalibration_Stat132: 6.12108335e-05 + syst_JES_EtaIntercalibration_Stat133: 9.76286693e-04 + syst_JES_EtaIntercalibration_Stat134: 1.45201102e-02 + syst_JES_EtaIntercalibration_Stat135: 7.57642772e-03 + syst_JES_EtaIntercalibration_Stat136: 1.04822685e-03 + syst_JES_EtaIntercalibration_Stat137: 5.84764195e-04 + syst_JES_EtaIntercalibration_Stat138: 8.48312046e-03 + syst_JES_EtaIntercalibration_Stat139: 1.05015385e-02 + syst_JES_EtaIntercalibration_Stat14: 3.63903875e-11 + syst_JES_EtaIntercalibration_Stat140: 9.42720680e-04 + syst_JES_EtaIntercalibration_Stat141: 1.38823788e-05 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 1.4679130594146235e-10 - syst_JES_EtaIntercalibration_Stat144: 1.4679130594146235e-10 + syst_JES_EtaIntercalibration_Stat143: 1.46791306e-10 + syst_JES_EtaIntercalibration_Stat144: 1.46791306e-10 syst_JES_EtaIntercalibration_Stat145: 0.0 - syst_JES_EtaIntercalibration_Stat146: 4.883517251940449e-05 - syst_JES_EtaIntercalibration_Stat147: 4.6042698389646974e-05 + syst_JES_EtaIntercalibration_Stat146: 4.88351725e-05 + syst_JES_EtaIntercalibration_Stat147: 4.60426984e-05 syst_JES_EtaIntercalibration_Stat148: 0.0 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 7.444655120957586e-07 - syst_JES_EtaIntercalibration_Stat151: 0.0012243529913795285 - syst_JES_EtaIntercalibration_Stat152: 0.017728961475506677 - syst_JES_EtaIntercalibration_Stat153: 0.012006748383721547 - syst_JES_EtaIntercalibration_Stat154: 0.0014141296643165365 - syst_JES_EtaIntercalibration_Stat155: 0.00047446773072570494 - syst_JES_EtaIntercalibration_Stat156: 0.011112957965816302 - syst_JES_EtaIntercalibration_Stat157: 0.013102667018588239 - syst_JES_EtaIntercalibration_Stat158: 0.0011694209749594027 - syst_JES_EtaIntercalibration_Stat159: 1.0686103147546349e-05 + syst_JES_EtaIntercalibration_Stat150: 7.44465512e-07 + syst_JES_EtaIntercalibration_Stat151: 1.22435299e-03 + syst_JES_EtaIntercalibration_Stat152: 1.77289615e-02 + syst_JES_EtaIntercalibration_Stat153: 1.20067484e-02 + syst_JES_EtaIntercalibration_Stat154: 1.41412966e-03 + syst_JES_EtaIntercalibration_Stat155: 4.74467731e-04 + syst_JES_EtaIntercalibration_Stat156: 1.11129580e-02 + syst_JES_EtaIntercalibration_Stat157: 1.31026670e-02 + syst_JES_EtaIntercalibration_Stat158: 1.16942097e-03 + syst_JES_EtaIntercalibration_Stat159: 1.06861031e-05 syst_JES_EtaIntercalibration_Stat16: 0.0 syst_JES_EtaIntercalibration_Stat160: 0.0 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 - syst_JES_EtaIntercalibration_Stat164: 4.883517251940449e-05 + syst_JES_EtaIntercalibration_Stat164: 4.88351725e-05 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 - syst_JES_EtaIntercalibration_Stat168: 1.80479694148677e-05 - syst_JES_EtaIntercalibration_Stat169: 0.0025793469619266036 + syst_JES_EtaIntercalibration_Stat168: 1.80479694e-05 + syst_JES_EtaIntercalibration_Stat169: 2.57934696e-03 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 0.028845832887958014 - syst_JES_EtaIntercalibration_Stat171: 0.02496272170657679 - syst_JES_EtaIntercalibration_Stat172: 0.001718923407252342 - syst_JES_EtaIntercalibration_Stat173: 0.0014185496113989105 - syst_JES_EtaIntercalibration_Stat174: 0.02422300972216293 - syst_JES_EtaIntercalibration_Stat175: 0.02596111322728669 - syst_JES_EtaIntercalibration_Stat176: 0.003130434155193174 - syst_JES_EtaIntercalibration_Stat177: 8.417627620060179e-05 + syst_JES_EtaIntercalibration_Stat170: 2.88458329e-02 + syst_JES_EtaIntercalibration_Stat171: 2.49627217e-02 + syst_JES_EtaIntercalibration_Stat172: 1.71892341e-03 + syst_JES_EtaIntercalibration_Stat173: 1.41854961e-03 + syst_JES_EtaIntercalibration_Stat174: 2.42230097e-02 + syst_JES_EtaIntercalibration_Stat175: 2.59611132e-02 + syst_JES_EtaIntercalibration_Stat176: 3.13043416e-03 + syst_JES_EtaIntercalibration_Stat177: 8.41762762e-05 syst_JES_EtaIntercalibration_Stat178: 0.0 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 @@ -15949,17 +15949,17 @@ bins: syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 syst_JES_EtaIntercalibration_Stat184: 0.0 - syst_JES_EtaIntercalibration_Stat185: 0.00011816916634638667 - syst_JES_EtaIntercalibration_Stat186: 0.004743365550956408 - syst_JES_EtaIntercalibration_Stat187: 0.053371905530906434 - syst_JES_EtaIntercalibration_Stat188: 0.042260021296729136 - syst_JES_EtaIntercalibration_Stat189: 0.002820727565717753 + syst_JES_EtaIntercalibration_Stat185: 1.18169166e-04 + syst_JES_EtaIntercalibration_Stat186: 4.74336555e-03 + syst_JES_EtaIntercalibration_Stat187: 5.33719055e-02 + syst_JES_EtaIntercalibration_Stat188: 4.22600213e-02 + syst_JES_EtaIntercalibration_Stat189: 2.82072757e-03 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 0.0031306764045490234 - syst_JES_EtaIntercalibration_Stat191: 0.038075232106974735 - syst_JES_EtaIntercalibration_Stat192: 0.05270500047433829 - syst_JES_EtaIntercalibration_Stat193: 0.006118377297127074 - syst_JES_EtaIntercalibration_Stat194: 5.396204290980838e-05 + syst_JES_EtaIntercalibration_Stat190: 3.13067640e-03 + syst_JES_EtaIntercalibration_Stat191: 3.80752321e-02 + syst_JES_EtaIntercalibration_Stat192: 5.27050005e-02 + syst_JES_EtaIntercalibration_Stat193: 6.11837730e-03 + syst_JES_EtaIntercalibration_Stat194: 5.39620429e-05 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 syst_JES_EtaIntercalibration_Stat197: 0.0 @@ -15967,70 +15967,70 @@ bins: syst_JES_EtaIntercalibration_Stat199: 0.0 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 2.51493777259001e-06 - syst_JES_EtaIntercalibration_Stat201: 0.0009504043179089624 - syst_JES_EtaIntercalibration_Stat202: 0.013243501302525704 - syst_JES_EtaIntercalibration_Stat203: 0.009237027281544642 - syst_JES_EtaIntercalibration_Stat204: 0.000739166806275823 - syst_JES_EtaIntercalibration_Stat205: 0.0009470853815786621 - syst_JES_EtaIntercalibration_Stat206: 0.00809049275384386 - syst_JES_EtaIntercalibration_Stat207: 0.010267853329688732 - syst_JES_EtaIntercalibration_Stat208: 0.0013344967291080184 - syst_JES_EtaIntercalibration_Stat209: 2.764025001243658e-05 + syst_JES_EtaIntercalibration_Stat200: 2.51493777e-06 + syst_JES_EtaIntercalibration_Stat201: 9.50404318e-04 + syst_JES_EtaIntercalibration_Stat202: 1.32435013e-02 + syst_JES_EtaIntercalibration_Stat203: 9.23702728e-03 + syst_JES_EtaIntercalibration_Stat204: 7.39166806e-04 + syst_JES_EtaIntercalibration_Stat205: 9.47085382e-04 + syst_JES_EtaIntercalibration_Stat206: 8.09049275e-03 + syst_JES_EtaIntercalibration_Stat207: 1.02678533e-02 + syst_JES_EtaIntercalibration_Stat208: 1.33449673e-03 + syst_JES_EtaIntercalibration_Stat209: 2.76402500e-05 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 syst_JES_EtaIntercalibration_Stat211: 0.0 syst_JES_EtaIntercalibration_Stat212: 0.0 - syst_JES_EtaIntercalibration_Stat213: 2.2932352692211936e-06 - syst_JES_EtaIntercalibration_Stat214: 0.0002362738400669867 - syst_JES_EtaIntercalibration_Stat215: 0.0027351312125746363 - syst_JES_EtaIntercalibration_Stat216: 0.0025241317319030718 - syst_JES_EtaIntercalibration_Stat217: 0.00025622608305921936 - syst_JES_EtaIntercalibration_Stat218: 0.00019043062043694548 - syst_JES_EtaIntercalibration_Stat219: 0.0017194231590856278 + syst_JES_EtaIntercalibration_Stat213: 2.29323527e-06 + syst_JES_EtaIntercalibration_Stat214: 2.36273840e-04 + syst_JES_EtaIntercalibration_Stat215: 2.73513121e-03 + syst_JES_EtaIntercalibration_Stat216: 2.52413173e-03 + syst_JES_EtaIntercalibration_Stat217: 2.56226083e-04 + syst_JES_EtaIntercalibration_Stat218: 1.90430620e-04 + syst_JES_EtaIntercalibration_Stat219: 1.71942316e-03 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 0.002171442608037339 - syst_JES_EtaIntercalibration_Stat221: 0.00036292636608546366 - syst_JES_EtaIntercalibration_Stat222: 3.4730693064636647e-06 + syst_JES_EtaIntercalibration_Stat220: 2.17144261e-03 + syst_JES_EtaIntercalibration_Stat221: 3.62926366e-04 + syst_JES_EtaIntercalibration_Stat222: 3.47306931e-06 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 - syst_JES_EtaIntercalibration_Stat225: 6.461415537635697e-14 - syst_JES_EtaIntercalibration_Stat226: 1.1116648580516522e-06 - syst_JES_EtaIntercalibration_Stat227: 9.730561687281984e-05 - syst_JES_EtaIntercalibration_Stat228: 0.00013658272328519446 - syst_JES_EtaIntercalibration_Stat229: 4.645360265899728e-06 + syst_JES_EtaIntercalibration_Stat225: 6.46141554e-14 + syst_JES_EtaIntercalibration_Stat226: 1.11166486e-06 + syst_JES_EtaIntercalibration_Stat227: 9.73056169e-05 + syst_JES_EtaIntercalibration_Stat228: 1.36582723e-04 + syst_JES_EtaIntercalibration_Stat229: 4.64536027e-06 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 1.3405977239983926e-05 - syst_JES_EtaIntercalibration_Stat231: 0.00012732248505271956 - syst_JES_EtaIntercalibration_Stat232: 0.00013334253747398087 - syst_JES_EtaIntercalibration_Stat233: 2.896193968374831e-05 - syst_JES_EtaIntercalibration_Stat234: 7.3343691238196136e-09 + syst_JES_EtaIntercalibration_Stat230: 1.34059772e-05 + syst_JES_EtaIntercalibration_Stat231: 1.27322485e-04 + syst_JES_EtaIntercalibration_Stat232: 1.33342537e-04 + syst_JES_EtaIntercalibration_Stat233: 2.89619397e-05 + syst_JES_EtaIntercalibration_Stat234: 7.33436912e-09 syst_JES_EtaIntercalibration_Stat235: 0.0 syst_JES_EtaIntercalibration_Stat236: 0.0 - syst_JES_EtaIntercalibration_Stat237: 3.1741337007126844e-13 - syst_JES_EtaIntercalibration_Stat238: 5.4384277829166764e-08 - syst_JES_EtaIntercalibration_Stat239: 1.3156161750297842e-09 + syst_JES_EtaIntercalibration_Stat237: 3.17413370e-13 + syst_JES_EtaIntercalibration_Stat238: 5.43842778e-08 + syst_JES_EtaIntercalibration_Stat239: 1.31561618e-09 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 - syst_JES_EtaIntercalibration_Stat241: 5.674198445595642e-13 - syst_JES_EtaIntercalibration_Stat242: 3.366422878962178e-09 - syst_JES_EtaIntercalibration_Stat243: 2.576483287587949e-08 - syst_JES_EtaIntercalibration_Stat244: 6.012814378475357e-21 - syst_JES_EtaIntercalibration_Stat245: 2.765219114283713e-17 + syst_JES_EtaIntercalibration_Stat241: 5.67419845e-13 + syst_JES_EtaIntercalibration_Stat242: 3.36642288e-09 + syst_JES_EtaIntercalibration_Stat243: 2.57648329e-08 + syst_JES_EtaIntercalibration_Stat244: 6.01281438e-21 + syst_JES_EtaIntercalibration_Stat245: 2.76521911e-17 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 syst_JES_EtaIntercalibration_Stat27: 0.0 - syst_JES_EtaIntercalibration_Stat28: 3.272710000901394e-12 - syst_JES_EtaIntercalibration_Stat29: 1.002449363347097e-08 + syst_JES_EtaIntercalibration_Stat28: 3.27271000e-12 + syst_JES_EtaIntercalibration_Stat29: 1.00244936e-08 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 3.0998174188167923e-07 - syst_JES_EtaIntercalibration_Stat31: 1.7498994256813733e-07 - syst_JES_EtaIntercalibration_Stat32: 4.1839708411985854e-11 - syst_JES_EtaIntercalibration_Stat33: 2.7106632177384192e-09 - syst_JES_EtaIntercalibration_Stat34: 5.866857158649765e-05 - syst_JES_EtaIntercalibration_Stat35: 4.257610479458725e-05 - syst_JES_EtaIntercalibration_Stat36: 8.537310780337975e-08 - syst_JES_EtaIntercalibration_Stat37: 2.388498063637482e-12 + syst_JES_EtaIntercalibration_Stat30: 3.09981742e-07 + syst_JES_EtaIntercalibration_Stat31: 1.74989943e-07 + syst_JES_EtaIntercalibration_Stat32: 4.18397084e-11 + syst_JES_EtaIntercalibration_Stat33: 2.71066322e-09 + syst_JES_EtaIntercalibration_Stat34: 5.86685716e-05 + syst_JES_EtaIntercalibration_Stat35: 4.25761048e-05 + syst_JES_EtaIntercalibration_Stat36: 8.53731078e-08 + syst_JES_EtaIntercalibration_Stat37: 2.38849806e-12 syst_JES_EtaIntercalibration_Stat38: 0.0 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 @@ -16045,20 +16045,20 @@ bins: syst_JES_EtaIntercalibration_Stat48: 0.0 syst_JES_EtaIntercalibration_Stat49: 0.0 syst_JES_EtaIntercalibration_Stat5: 0.0 - syst_JES_EtaIntercalibration_Stat50: 3.3152318482272094e-12 - syst_JES_EtaIntercalibration_Stat51: 2.6992916418016042e-08 - syst_JES_EtaIntercalibration_Stat52: 1.1179471678035596e-05 - syst_JES_EtaIntercalibration_Stat53: 1.730726075957718e-06 - syst_JES_EtaIntercalibration_Stat54: 9.924949508687688e-09 - syst_JES_EtaIntercalibration_Stat55: 4.979497505050083e-06 - syst_JES_EtaIntercalibration_Stat56: 5.596283050746719e-05 - syst_JES_EtaIntercalibration_Stat57: 7.673939828451875e-05 - syst_JES_EtaIntercalibration_Stat58: 1.242996991146801e-07 - syst_JES_EtaIntercalibration_Stat59: 1.2974544568114904e-11 + syst_JES_EtaIntercalibration_Stat50: 3.31523185e-12 + syst_JES_EtaIntercalibration_Stat51: 2.69929164e-08 + syst_JES_EtaIntercalibration_Stat52: 1.11794717e-05 + syst_JES_EtaIntercalibration_Stat53: 1.73072608e-06 + syst_JES_EtaIntercalibration_Stat54: 9.92494951e-09 + syst_JES_EtaIntercalibration_Stat55: 4.97949751e-06 + syst_JES_EtaIntercalibration_Stat56: 5.59628305e-05 + syst_JES_EtaIntercalibration_Stat57: 7.67393983e-05 + syst_JES_EtaIntercalibration_Stat58: 1.24299699e-07 + syst_JES_EtaIntercalibration_Stat59: 1.29745446e-11 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 1.4679130594146235e-10 - syst_JES_EtaIntercalibration_Stat62: 1.4679130594146235e-10 + syst_JES_EtaIntercalibration_Stat61: 1.46791306e-10 + syst_JES_EtaIntercalibration_Stat62: 1.46791306e-10 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 @@ -16066,218 +16066,218 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 3.272710000901394e-12 + syst_JES_EtaIntercalibration_Stat7: 3.27271000e-12 syst_JES_EtaIntercalibration_Stat70: 0.0 syst_JES_EtaIntercalibration_Stat71: 0.0 - syst_JES_EtaIntercalibration_Stat72: 9.04736739333603e-10 - syst_JES_EtaIntercalibration_Stat73: 1.2842938730290666e-05 - syst_JES_EtaIntercalibration_Stat74: 7.072304435613614e-05 - syst_JES_EtaIntercalibration_Stat75: 0.00012215008923451508 - syst_JES_EtaIntercalibration_Stat76: 6.829851939830028e-07 - syst_JES_EtaIntercalibration_Stat77: 4.1755151861776295e-06 - syst_JES_EtaIntercalibration_Stat78: 6.301661368242505e-05 - syst_JES_EtaIntercalibration_Stat79: 8.156261199226027e-05 - syst_JES_EtaIntercalibration_Stat8: 5.303693312211783e-09 - syst_JES_EtaIntercalibration_Stat80: 1.0602386553086761e-06 - syst_JES_EtaIntercalibration_Stat81: 4.324064841095702e-11 - syst_JES_EtaIntercalibration_Stat82: 1.4679130594146235e-10 - syst_JES_EtaIntercalibration_Stat83: 1.4679130594146235e-10 - syst_JES_EtaIntercalibration_Stat84: 1.4679130594146235e-10 + syst_JES_EtaIntercalibration_Stat72: 9.04736739e-10 + syst_JES_EtaIntercalibration_Stat73: 1.28429387e-05 + syst_JES_EtaIntercalibration_Stat74: 7.07230444e-05 + syst_JES_EtaIntercalibration_Stat75: 1.22150089e-04 + syst_JES_EtaIntercalibration_Stat76: 6.82985194e-07 + syst_JES_EtaIntercalibration_Stat77: 4.17551519e-06 + syst_JES_EtaIntercalibration_Stat78: 6.30166137e-05 + syst_JES_EtaIntercalibration_Stat79: 8.15626120e-05 + syst_JES_EtaIntercalibration_Stat8: 5.30369331e-09 + syst_JES_EtaIntercalibration_Stat80: 1.06023866e-06 + syst_JES_EtaIntercalibration_Stat81: 4.32406484e-11 + syst_JES_EtaIntercalibration_Stat82: 1.46791306e-10 + syst_JES_EtaIntercalibration_Stat83: 1.46791306e-10 + syst_JES_EtaIntercalibration_Stat84: 1.46791306e-10 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 syst_JES_EtaIntercalibration_Stat89: 0.0 - syst_JES_EtaIntercalibration_Stat9: 1.453076972324591e-09 + syst_JES_EtaIntercalibration_Stat9: 1.45307697e-09 syst_JES_EtaIntercalibration_Stat90: 0.0 syst_JES_EtaIntercalibration_Stat91: 0.0 syst_JES_EtaIntercalibration_Stat92: 0.0 - syst_JES_EtaIntercalibration_Stat93: 8.396116289690132e-10 - syst_JES_EtaIntercalibration_Stat94: 2.248364780790697e-05 - syst_JES_EtaIntercalibration_Stat95: 0.000197143247411622 - syst_JES_EtaIntercalibration_Stat96: 0.00014356392408958456 - syst_JES_EtaIntercalibration_Stat97: 8.166881216688535e-06 - syst_JES_EtaIntercalibration_Stat98: 2.617930623603307e-06 - syst_JES_EtaIntercalibration_Stat99: 0.00010118123294366401 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.040825643901841895 - syst_JES_Flavour_Comp: 0.14341920199192296 - syst_JES_Flavour_Response: 0.5398022415662981 - syst_JES_Gjet_Generator: 0.5970205189103637 - syst_JES_Gjet_OOC: 0.41694231015813205 - syst_JES_Gjet_Purity: 0.14085502999538213 - syst_JES_Gjet_Stat1: 0.00019973467400529135 - syst_JES_Gjet_Stat10: 0.033613200903811584 - syst_JES_Gjet_Stat11: 0.05865969889967046 - syst_JES_Gjet_Stat12: 0.08067502897427431 - syst_JES_Gjet_Stat13: 0.01472994999991514 - syst_JES_Gjet_Stat14: 0.018559716457963466 - syst_JES_Gjet_Stat15: 0.0021219545235466285 - syst_JES_Gjet_Stat2: 1.6334782275867652e-24 - syst_JES_Gjet_Stat3: 0.0007742265186103696 - syst_JES_Gjet_Stat4: 0.0014954747573931162 - syst_JES_Gjet_Stat5: 0.0013420128613392643 - syst_JES_Gjet_Stat6: 0.003778243667036312 - syst_JES_Gjet_Stat7: 0.005481795873616602 - syst_JES_Gjet_Stat8: 0.005443011758208868 - syst_JES_Gjet_Stat9: 0.013414893290667652 - syst_JES_Gjet_Veto: 0.19361492711048908 - syst_JES_Gjet_dPhi: 0.031270003197953145 - syst_JES_LArESZee: 0.7867672781706164 - syst_JES_LArEsmear: 0.061751658277328876 - syst_JES_LAr_JVT: 0.0860927306745465 - syst_JES_MJB_Alpha: 0.0034748252833775688 - syst_JES_MJB_Asym: 0.017439067492271483 - syst_JES_MJB_Beta: 0.0008988601472420501 - syst_JES_MJB_Fragmentation: 0.05507979030461173 - syst_JES_MJB_Stat1: 0.00432553694409145 - syst_JES_MJB_Stat10: 5.968439997185194e-06 - syst_JES_MJB_Stat11: 1.3423400903383592e-06 - syst_JES_MJB_Stat12: 8.243701999177239e-07 - syst_JES_MJB_Stat13: 5.668136270744526e-07 - syst_JES_MJB_Stat14: 1.00864877311183e-15 - syst_JES_MJB_Stat15: 1.084127145449278e-11 - syst_JES_MJB_Stat16: 1.0138768573211048e-17 - syst_JES_MJB_Stat2: 0.0012175404254068938 - syst_JES_MJB_Stat3: 0.0030304509144803847 - syst_JES_MJB_Stat4: 0.0010809937777341736 - syst_JES_MJB_Stat5: 9.844678656567467e-05 - syst_JES_MJB_Stat6: 0.0006987958973139816 - syst_JES_MJB_Stat7: 0.00022343455323241748 - syst_JES_MJB_Stat8: 2.2649690306758614e-12 - syst_JES_MJB_Stat9: 4.436169603385335e-24 - syst_JES_MJB_Threshold: 0.020041738946508604 - syst_JES_Pileup_MuOffset: 0.039893042137696136 - syst_JES_Pileup_NPVOffset: 0.0551472852912997 - syst_JES_Pileup_Pt_term: 0.09294047449846594 - syst_JES_Pileup_Rho_topology: 0.19331495027545076 - syst_JES_PunchThrough_MC15: 2.4359189163100482e-05 + syst_JES_EtaIntercalibration_Stat93: 8.39611629e-10 + syst_JES_EtaIntercalibration_Stat94: 2.24836478e-05 + syst_JES_EtaIntercalibration_Stat95: 1.97143247e-04 + syst_JES_EtaIntercalibration_Stat96: 1.43563924e-04 + syst_JES_EtaIntercalibration_Stat97: 8.16688122e-06 + syst_JES_EtaIntercalibration_Stat98: 2.61793062e-06 + syst_JES_EtaIntercalibration_Stat99: 1.01181233e-04 + syst_JES_EtaIntercalibration_TotalStat_MJB: 4.08256439e-02 + syst_JES_Flavour_Comp: 1.43419202e-01 + syst_JES_Flavour_Response: 5.39802242e-01 + syst_JES_Gjet_Generator: 5.97020519e-01 + syst_JES_Gjet_OOC: 4.16942310e-01 + syst_JES_Gjet_Purity: 1.40855030e-01 + syst_JES_Gjet_Stat1: 1.99734674e-04 + syst_JES_Gjet_Stat10: 3.36132009e-02 + syst_JES_Gjet_Stat11: 5.86596989e-02 + syst_JES_Gjet_Stat12: 8.06750290e-02 + syst_JES_Gjet_Stat13: 1.47299500e-02 + syst_JES_Gjet_Stat14: 1.85597165e-02 + syst_JES_Gjet_Stat15: 2.12195452e-03 + syst_JES_Gjet_Stat2: 1.63347823e-24 + syst_JES_Gjet_Stat3: 7.74226519e-04 + syst_JES_Gjet_Stat4: 1.49547476e-03 + syst_JES_Gjet_Stat5: 1.34201286e-03 + syst_JES_Gjet_Stat6: 3.77824367e-03 + syst_JES_Gjet_Stat7: 5.48179587e-03 + syst_JES_Gjet_Stat8: 5.44301176e-03 + syst_JES_Gjet_Stat9: 1.34148933e-02 + syst_JES_Gjet_Veto: 1.93614927e-01 + syst_JES_Gjet_dPhi: 3.12700032e-02 + syst_JES_LArESZee: 7.86767278e-01 + syst_JES_LArEsmear: 6.17516583e-02 + syst_JES_LAr_JVT: 8.60927307e-02 + syst_JES_MJB_Alpha: 3.47482528e-03 + syst_JES_MJB_Asym: 1.74390675e-02 + syst_JES_MJB_Beta: 8.98860147e-04 + syst_JES_MJB_Fragmentation: 5.50797903e-02 + syst_JES_MJB_Stat1: 4.32553694e-03 + syst_JES_MJB_Stat10: 5.96844000e-06 + syst_JES_MJB_Stat11: 1.34234009e-06 + syst_JES_MJB_Stat12: 8.24370200e-07 + syst_JES_MJB_Stat13: 5.66813627e-07 + syst_JES_MJB_Stat14: 1.00864877e-15 + syst_JES_MJB_Stat15: 1.08412715e-11 + syst_JES_MJB_Stat16: 1.01387686e-17 + syst_JES_MJB_Stat2: 1.21754043e-03 + syst_JES_MJB_Stat3: 3.03045091e-03 + syst_JES_MJB_Stat4: 1.08099378e-03 + syst_JES_MJB_Stat5: 9.84467866e-05 + syst_JES_MJB_Stat6: 6.98795897e-04 + syst_JES_MJB_Stat7: 2.23434553e-04 + syst_JES_MJB_Stat8: 2.26496903e-12 + syst_JES_MJB_Stat9: 4.43616960e-24 + syst_JES_MJB_Threshold: 2.00417389e-02 + syst_JES_Pileup_MuOffset: 3.98930421e-02 + syst_JES_Pileup_NPVOffset: 5.51472853e-02 + syst_JES_Pileup_Pt_term: 9.29404745e-02 + syst_JES_Pileup_Rho_topology: 1.93314950e-01 + syst_JES_PunchThrough_MC15: 2.43591892e-05 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.5557626359337231 - syst_JES_Zjet_MuScale: 0.035456185285504135 - syst_JES_Zjet_MuSmearID: 0.005417099869856563 - syst_JES_Zjet_MuSmearMS: 0.10027433607359362 - syst_JES_Zjet_OOC: 0.19780854379930105 - syst_JES_Zjet_Stat1: 0.0025255531572311043 - syst_JES_Zjet_Stat10: 0.024619749694097217 - syst_JES_Zjet_Stat11: 0.03463134526696876 - syst_JES_Zjet_Stat12: 0.18315001365001315 - syst_JES_Zjet_Stat13: 0.06315529490866147 - syst_JES_Zjet_Stat2: 0.0004916843111946933 - syst_JES_Zjet_Stat3: 0.0013590383403991957 - syst_JES_Zjet_Stat4: 0.0014855069841639924 - syst_JES_Zjet_Stat5: 0.0022951193324095374 - syst_JES_Zjet_Stat6: 0.0023762779193520277 - syst_JES_Zjet_Stat7: 0.0028791823057944766 - syst_JES_Zjet_Stat8: 0.0034476783318633424 - syst_JES_Zjet_Stat9: 0.00853609758613384 - syst_JES_Zjet_Veto: 0.04229521338165821 - syst_JES_Zjet_dPhi: 0.035081257104043466 + syst_JES_Zjet_MC: 5.55762636e-01 + syst_JES_Zjet_MuScale: 3.54561853e-02 + syst_JES_Zjet_MuSmearID: 5.41709987e-03 + syst_JES_Zjet_MuSmearMS: 1.00274336e-01 + syst_JES_Zjet_OOC: 1.97808544e-01 + syst_JES_Zjet_Stat1: 2.52555316e-03 + syst_JES_Zjet_Stat10: 2.46197497e-02 + syst_JES_Zjet_Stat11: 3.46313453e-02 + syst_JES_Zjet_Stat12: 1.83150014e-01 + syst_JES_Zjet_Stat13: 6.31552949e-02 + syst_JES_Zjet_Stat2: 4.91684311e-04 + syst_JES_Zjet_Stat3: 1.35903834e-03 + syst_JES_Zjet_Stat4: 1.48550698e-03 + syst_JES_Zjet_Stat5: 2.29511933e-03 + syst_JES_Zjet_Stat6: 2.37627792e-03 + syst_JES_Zjet_Stat7: 2.87918231e-03 + syst_JES_Zjet_Stat8: 3.44767833e-03 + syst_JES_Zjet_Stat9: 8.53609759e-03 + syst_JES_Zjet_Veto: 4.22952134e-02 + syst_JES_Zjet_dPhi: 3.50812571e-02 syst_PRW: 0.02503 syst_Unfolding_bias: 0.02601 - syst_cleaning: 0.16731610801115354 + syst_cleaning: 1.67316108e-01 syst_lumi: 0.6802 - stat: 0.11152 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.09726274865024123 - syst_JER_NP1: 0.0058168097785641915 - syst_JER_NP2: 0.011360342732505916 - syst_JER_NP3: 0.021127879685382534 - syst_JER_NP4: 0.012192807182925515 - syst_JER_NP5: 0.005577855031282186 - syst_JER_NP6: 3.137610037911021e-07 - syst_JER_NP7: 0.012934655725994412 - syst_JER_NP8: 0.015699467347652277 - syst_JES_EtaIntercalibration_Modelling: 0.16313831554849398 - syst_JES_EtaIntercalibration_NonClosure: 1.2695932419479871e-05 + syst_JER_NP0: 9.72627487e-02 + syst_JER_NP1: 5.81680978e-03 + syst_JER_NP2: 1.13603427e-02 + syst_JER_NP3: 2.11278797e-02 + syst_JER_NP4: 1.21928072e-02 + syst_JER_NP5: 5.57785503e-03 + syst_JER_NP6: 3.13761004e-07 + syst_JER_NP7: 1.29346557e-02 + syst_JER_NP8: 1.56994673e-02 + syst_JES_EtaIntercalibration_Modelling: 1.63138316e-01 + syst_JES_EtaIntercalibration_NonClosure: 1.26959324e-05 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 3.880822947520281e-05 - syst_JES_EtaIntercalibration_Stat101: 1.6662059317728405e-07 - syst_JES_EtaIntercalibration_Stat102: 6.019281486745324e-11 - syst_JES_EtaIntercalibration_Stat103: 1.9026578121144116e-11 - syst_JES_EtaIntercalibration_Stat104: 1.9026578121144116e-11 - syst_JES_EtaIntercalibration_Stat105: 1.9026578121144116e-11 + syst_JES_EtaIntercalibration_Stat100: 3.88082295e-05 + syst_JES_EtaIntercalibration_Stat101: 1.66620593e-07 + syst_JES_EtaIntercalibration_Stat102: 6.01928149e-11 + syst_JES_EtaIntercalibration_Stat103: 1.90265781e-11 + syst_JES_EtaIntercalibration_Stat104: 1.90265781e-11 + syst_JES_EtaIntercalibration_Stat105: 1.90265781e-11 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 2.8007261558388746e-06 - syst_JES_EtaIntercalibration_Stat111: 2.8007261558388746e-06 + syst_JES_EtaIntercalibration_Stat110: 2.80072616e-06 + syst_JES_EtaIntercalibration_Stat111: 2.80072616e-06 syst_JES_EtaIntercalibration_Stat112: 0.0 - syst_JES_EtaIntercalibration_Stat113: 8.199908598694682e-09 - syst_JES_EtaIntercalibration_Stat114: 0.0001299164888495683 - syst_JES_EtaIntercalibration_Stat115: 0.0004988786024675743 - syst_JES_EtaIntercalibration_Stat116: 0.00043622767802490485 - syst_JES_EtaIntercalibration_Stat117: 8.940684319866125e-05 - syst_JES_EtaIntercalibration_Stat118: 3.2378715230842624e-05 - syst_JES_EtaIntercalibration_Stat119: 0.00035657611739991785 - syst_JES_EtaIntercalibration_Stat12: 9.027282082610264e-07 - syst_JES_EtaIntercalibration_Stat120: 0.000384096638230537 - syst_JES_EtaIntercalibration_Stat121: 5.687000587963747e-05 - syst_JES_EtaIntercalibration_Stat122: 1.0875008540148372e-08 - syst_JES_EtaIntercalibration_Stat123: 1.9026578121144116e-11 - syst_JES_EtaIntercalibration_Stat124: 1.9026578121144116e-11 - syst_JES_EtaIntercalibration_Stat125: 1.9026578121144116e-11 + syst_JES_EtaIntercalibration_Stat113: 8.19990860e-09 + syst_JES_EtaIntercalibration_Stat114: 1.29916489e-04 + syst_JES_EtaIntercalibration_Stat115: 4.98878602e-04 + syst_JES_EtaIntercalibration_Stat116: 4.36227678e-04 + syst_JES_EtaIntercalibration_Stat117: 8.94068432e-05 + syst_JES_EtaIntercalibration_Stat118: 3.23787152e-05 + syst_JES_EtaIntercalibration_Stat119: 3.56576117e-04 + syst_JES_EtaIntercalibration_Stat12: 9.02728208e-07 + syst_JES_EtaIntercalibration_Stat120: 3.84096638e-04 + syst_JES_EtaIntercalibration_Stat121: 5.68700059e-05 + syst_JES_EtaIntercalibration_Stat122: 1.08750085e-08 + syst_JES_EtaIntercalibration_Stat123: 1.90265781e-11 + syst_JES_EtaIntercalibration_Stat124: 1.90265781e-11 + syst_JES_EtaIntercalibration_Stat125: 1.90265781e-11 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 3.9871809590235554e-05 - syst_JES_EtaIntercalibration_Stat129: 3.902766438053909e-05 - syst_JES_EtaIntercalibration_Stat13: 1.2108416678339905e-06 - syst_JES_EtaIntercalibration_Stat130: 2.8007261558388746e-06 - syst_JES_EtaIntercalibration_Stat131: 2.4525839435175304e-12 - syst_JES_EtaIntercalibration_Stat132: 2.0217549848337214e-05 - syst_JES_EtaIntercalibration_Stat133: 0.000332819218007314 - syst_JES_EtaIntercalibration_Stat134: 0.005308773940374557 - syst_JES_EtaIntercalibration_Stat135: 0.0025375107881544074 - syst_JES_EtaIntercalibration_Stat136: 0.00031586158582518384 - syst_JES_EtaIntercalibration_Stat137: 0.00017917950412923907 - syst_JES_EtaIntercalibration_Stat138: 0.0031103531953782996 - syst_JES_EtaIntercalibration_Stat139: 0.004146620996365595 - syst_JES_EtaIntercalibration_Stat14: 4.3448494507865285e-12 - syst_JES_EtaIntercalibration_Stat140: 0.0004161570376672729 - syst_JES_EtaIntercalibration_Stat141: 1.5242048105711023e-05 + syst_JES_EtaIntercalibration_Stat128: 3.98718096e-05 + syst_JES_EtaIntercalibration_Stat129: 3.90276644e-05 + syst_JES_EtaIntercalibration_Stat13: 1.21084167e-06 + syst_JES_EtaIntercalibration_Stat130: 2.80072616e-06 + syst_JES_EtaIntercalibration_Stat131: 2.45258394e-12 + syst_JES_EtaIntercalibration_Stat132: 2.02175498e-05 + syst_JES_EtaIntercalibration_Stat133: 3.32819218e-04 + syst_JES_EtaIntercalibration_Stat134: 5.30877394e-03 + syst_JES_EtaIntercalibration_Stat135: 2.53751079e-03 + syst_JES_EtaIntercalibration_Stat136: 3.15861586e-04 + syst_JES_EtaIntercalibration_Stat137: 1.79179504e-04 + syst_JES_EtaIntercalibration_Stat138: 3.11035320e-03 + syst_JES_EtaIntercalibration_Stat139: 4.14662100e-03 + syst_JES_EtaIntercalibration_Stat14: 4.34484945e-12 + syst_JES_EtaIntercalibration_Stat140: 4.16157038e-04 + syst_JES_EtaIntercalibration_Stat141: 1.52420481e-05 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 1.9026578121144116e-11 - syst_JES_EtaIntercalibration_Stat144: 1.9026578121144116e-11 + syst_JES_EtaIntercalibration_Stat143: 1.90265781e-11 + syst_JES_EtaIntercalibration_Stat144: 1.90265781e-11 syst_JES_EtaIntercalibration_Stat145: 0.0 - syst_JES_EtaIntercalibration_Stat146: 3.9871809590235554e-05 - syst_JES_EtaIntercalibration_Stat147: 3.902766438053909e-05 + syst_JES_EtaIntercalibration_Stat146: 3.98718096e-05 + syst_JES_EtaIntercalibration_Stat147: 3.90276644e-05 syst_JES_EtaIntercalibration_Stat148: 0.0 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 1.065630219201295e-07 - syst_JES_EtaIntercalibration_Stat151: 0.0004362506934091911 - syst_JES_EtaIntercalibration_Stat152: 0.00695084662109588 - syst_JES_EtaIntercalibration_Stat153: 0.004948168940881061 - syst_JES_EtaIntercalibration_Stat154: 0.0005048382777434771 - syst_JES_EtaIntercalibration_Stat155: 0.00016727997989897058 - syst_JES_EtaIntercalibration_Stat156: 0.004380455880385054 - syst_JES_EtaIntercalibration_Stat157: 0.0053855532677711026 - syst_JES_EtaIntercalibration_Stat158: 0.0006079069057635388 - syst_JES_EtaIntercalibration_Stat159: 1.6063823090410328e-05 + syst_JES_EtaIntercalibration_Stat150: 1.06563022e-07 + syst_JES_EtaIntercalibration_Stat151: 4.36250693e-04 + syst_JES_EtaIntercalibration_Stat152: 6.95084662e-03 + syst_JES_EtaIntercalibration_Stat153: 4.94816894e-03 + syst_JES_EtaIntercalibration_Stat154: 5.04838278e-04 + syst_JES_EtaIntercalibration_Stat155: 1.67279980e-04 + syst_JES_EtaIntercalibration_Stat156: 4.38045588e-03 + syst_JES_EtaIntercalibration_Stat157: 5.38555327e-03 + syst_JES_EtaIntercalibration_Stat158: 6.07906906e-04 + syst_JES_EtaIntercalibration_Stat159: 1.60638231e-05 syst_JES_EtaIntercalibration_Stat16: 0.0 syst_JES_EtaIntercalibration_Stat160: 0.0 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 - syst_JES_EtaIntercalibration_Stat164: 3.9871809590235554e-05 + syst_JES_EtaIntercalibration_Stat164: 3.98718096e-05 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 - syst_JES_EtaIntercalibration_Stat168: 1.7441751632218595e-06 - syst_JES_EtaIntercalibration_Stat169: 0.001230352949360467 + syst_JES_EtaIntercalibration_Stat168: 1.74417516e-06 + syst_JES_EtaIntercalibration_Stat169: 1.23035295e-03 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 0.01335289364707141 - syst_JES_EtaIntercalibration_Stat171: 0.011182269939506915 - syst_JES_EtaIntercalibration_Stat172: 0.0007691513635169609 - syst_JES_EtaIntercalibration_Stat173: 0.0008385723984844267 - syst_JES_EtaIntercalibration_Stat174: 0.010966139920227172 - syst_JES_EtaIntercalibration_Stat175: 0.012450842330942914 - syst_JES_EtaIntercalibration_Stat176: 0.0015536258622976123 - syst_JES_EtaIntercalibration_Stat177: 7.934707072097873e-05 + syst_JES_EtaIntercalibration_Stat170: 1.33528936e-02 + syst_JES_EtaIntercalibration_Stat171: 1.11822699e-02 + syst_JES_EtaIntercalibration_Stat172: 7.69151364e-04 + syst_JES_EtaIntercalibration_Stat173: 8.38572398e-04 + syst_JES_EtaIntercalibration_Stat174: 1.09661399e-02 + syst_JES_EtaIntercalibration_Stat175: 1.24508423e-02 + syst_JES_EtaIntercalibration_Stat176: 1.55362586e-03 + syst_JES_EtaIntercalibration_Stat177: 7.93470707e-05 syst_JES_EtaIntercalibration_Stat178: 0.0 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 @@ -16286,17 +16286,17 @@ bins: syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 syst_JES_EtaIntercalibration_Stat184: 0.0 - syst_JES_EtaIntercalibration_Stat185: 7.1568339368746e-05 - syst_JES_EtaIntercalibration_Stat186: 0.002671275116868347 - syst_JES_EtaIntercalibration_Stat187: 0.03359361099971243 - syst_JES_EtaIntercalibration_Stat188: 0.026326701274561534 - syst_JES_EtaIntercalibration_Stat189: 0.0017747160336234076 + syst_JES_EtaIntercalibration_Stat185: 7.15683394e-05 + syst_JES_EtaIntercalibration_Stat186: 2.67127512e-03 + syst_JES_EtaIntercalibration_Stat187: 3.35936110e-02 + syst_JES_EtaIntercalibration_Stat188: 2.63267013e-02 + syst_JES_EtaIntercalibration_Stat189: 1.77471603e-03 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 0.0019603188516157262 - syst_JES_EtaIntercalibration_Stat191: 0.02424904534203357 - syst_JES_EtaIntercalibration_Stat192: 0.03317793054124985 - syst_JES_EtaIntercalibration_Stat193: 0.0038044249236908324 - syst_JES_EtaIntercalibration_Stat194: 3.3584465158760525e-05 + syst_JES_EtaIntercalibration_Stat190: 1.96031885e-03 + syst_JES_EtaIntercalibration_Stat191: 2.42490453e-02 + syst_JES_EtaIntercalibration_Stat192: 3.31779305e-02 + syst_JES_EtaIntercalibration_Stat193: 3.80442492e-03 + syst_JES_EtaIntercalibration_Stat194: 3.35844652e-05 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 syst_JES_EtaIntercalibration_Stat197: 0.0 @@ -16304,70 +16304,70 @@ bins: syst_JES_EtaIntercalibration_Stat199: 0.0 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 8.575383548273511e-06 - syst_JES_EtaIntercalibration_Stat201: 0.000570125959766787 - syst_JES_EtaIntercalibration_Stat202: 0.015018590979183101 - syst_JES_EtaIntercalibration_Stat203: 0.011393644675870843 - syst_JES_EtaIntercalibration_Stat204: 0.0007956089790217303 - syst_JES_EtaIntercalibration_Stat205: 0.000829392529204357 - syst_JES_EtaIntercalibration_Stat206: 0.011472893826319495 - syst_JES_EtaIntercalibration_Stat207: 0.012792922144686098 - syst_JES_EtaIntercalibration_Stat208: 0.001526843904104149 - syst_JES_EtaIntercalibration_Stat209: 1.8688737751651393e-05 + syst_JES_EtaIntercalibration_Stat200: 8.57538355e-06 + syst_JES_EtaIntercalibration_Stat201: 5.70125960e-04 + syst_JES_EtaIntercalibration_Stat202: 1.50185910e-02 + syst_JES_EtaIntercalibration_Stat203: 1.13936447e-02 + syst_JES_EtaIntercalibration_Stat204: 7.95608979e-04 + syst_JES_EtaIntercalibration_Stat205: 8.29392529e-04 + syst_JES_EtaIntercalibration_Stat206: 1.14728938e-02 + syst_JES_EtaIntercalibration_Stat207: 1.27929221e-02 + syst_JES_EtaIntercalibration_Stat208: 1.52684390e-03 + syst_JES_EtaIntercalibration_Stat209: 1.86887378e-05 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 syst_JES_EtaIntercalibration_Stat211: 0.0 syst_JES_EtaIntercalibration_Stat212: 0.0 - syst_JES_EtaIntercalibration_Stat213: 6.208536119730641e-06 - syst_JES_EtaIntercalibration_Stat214: 0.00015307350064593155 - syst_JES_EtaIntercalibration_Stat215: 0.001824735560978631 - syst_JES_EtaIntercalibration_Stat216: 0.0014733968262148525 - syst_JES_EtaIntercalibration_Stat217: 0.00020249131018391876 - syst_JES_EtaIntercalibration_Stat218: 0.0002039368529716981 - syst_JES_EtaIntercalibration_Stat219: 0.0012340245135328551 + syst_JES_EtaIntercalibration_Stat213: 6.20853612e-06 + syst_JES_EtaIntercalibration_Stat214: 1.53073501e-04 + syst_JES_EtaIntercalibration_Stat215: 1.82473556e-03 + syst_JES_EtaIntercalibration_Stat216: 1.47339683e-03 + syst_JES_EtaIntercalibration_Stat217: 2.02491310e-04 + syst_JES_EtaIntercalibration_Stat218: 2.03936853e-04 + syst_JES_EtaIntercalibration_Stat219: 1.23402451e-03 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 0.001128874169250054 - syst_JES_EtaIntercalibration_Stat221: 0.00010458683509409776 - syst_JES_EtaIntercalibration_Stat222: 1.542872136633493e-05 + syst_JES_EtaIntercalibration_Stat220: 1.12887417e-03 + syst_JES_EtaIntercalibration_Stat221: 1.04586835e-04 + syst_JES_EtaIntercalibration_Stat222: 1.54287214e-05 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 - syst_JES_EtaIntercalibration_Stat225: 3.0917106915104456e-11 - syst_JES_EtaIntercalibration_Stat226: 2.135488936988436e-05 - syst_JES_EtaIntercalibration_Stat227: 0.0002732161186679878 - syst_JES_EtaIntercalibration_Stat228: 0.00032320168239042326 - syst_JES_EtaIntercalibration_Stat229: 1.9303706250355207e-05 + syst_JES_EtaIntercalibration_Stat225: 3.09171069e-11 + syst_JES_EtaIntercalibration_Stat226: 2.13548894e-05 + syst_JES_EtaIntercalibration_Stat227: 2.73216119e-04 + syst_JES_EtaIntercalibration_Stat228: 3.23201682e-04 + syst_JES_EtaIntercalibration_Stat229: 1.93037063e-05 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 2.593607637812387e-05 - syst_JES_EtaIntercalibration_Stat231: 0.00039382547847999883 - syst_JES_EtaIntercalibration_Stat232: 0.0002946204125650496 - syst_JES_EtaIntercalibration_Stat233: 4.6903581814185576e-05 - syst_JES_EtaIntercalibration_Stat234: 2.027364871547849e-07 + syst_JES_EtaIntercalibration_Stat230: 2.59360764e-05 + syst_JES_EtaIntercalibration_Stat231: 3.93825478e-04 + syst_JES_EtaIntercalibration_Stat232: 2.94620413e-04 + syst_JES_EtaIntercalibration_Stat233: 4.69035818e-05 + syst_JES_EtaIntercalibration_Stat234: 2.02736487e-07 syst_JES_EtaIntercalibration_Stat235: 0.0 syst_JES_EtaIntercalibration_Stat236: 0.0 - syst_JES_EtaIntercalibration_Stat237: 1.5217840410189613e-10 - syst_JES_EtaIntercalibration_Stat238: 6.39442640117157e-07 - syst_JES_EtaIntercalibration_Stat239: 3.545287073002693e-08 + syst_JES_EtaIntercalibration_Stat237: 1.52178404e-10 + syst_JES_EtaIntercalibration_Stat238: 6.39442640e-07 + syst_JES_EtaIntercalibration_Stat239: 3.54528707e-08 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 - syst_JES_EtaIntercalibration_Stat241: 2.706329386826371e-10 - syst_JES_EtaIntercalibration_Stat242: 8.336579919247462e-08 - syst_JES_EtaIntercalibration_Stat243: 5.694698121224249e-08 - syst_JES_EtaIntercalibration_Stat244: 1.3631239855567065e-16 - syst_JES_EtaIntercalibration_Stat245: 7.945783079722225e-14 + syst_JES_EtaIntercalibration_Stat241: 2.70632939e-10 + syst_JES_EtaIntercalibration_Stat242: 8.33657992e-08 + syst_JES_EtaIntercalibration_Stat243: 5.69469812e-08 + syst_JES_EtaIntercalibration_Stat244: 1.36312399e-16 + syst_JES_EtaIntercalibration_Stat245: 7.94578308e-14 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 syst_JES_EtaIntercalibration_Stat27: 0.0 - syst_JES_EtaIntercalibration_Stat28: 4.1318072014555565e-13 - syst_JES_EtaIntercalibration_Stat29: 1.1627249574598457e-09 + syst_JES_EtaIntercalibration_Stat28: 4.13180720e-13 + syst_JES_EtaIntercalibration_Stat29: 1.16272496e-09 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 4.349202123091085e-08 - syst_JES_EtaIntercalibration_Stat31: 2.1694702118259197e-08 - syst_JES_EtaIntercalibration_Stat32: 4.9218779952371846e-12 - syst_JES_EtaIntercalibration_Stat33: 3.516124196825249e-10 - syst_JES_EtaIntercalibration_Stat34: 3.5860803145914065e-05 - syst_JES_EtaIntercalibration_Stat35: 5.893650819794871e-06 - syst_JES_EtaIntercalibration_Stat36: 1.0698975513415992e-08 - syst_JES_EtaIntercalibration_Stat37: 3.0163664813812e-13 + syst_JES_EtaIntercalibration_Stat30: 4.34920212e-08 + syst_JES_EtaIntercalibration_Stat31: 2.16947021e-08 + syst_JES_EtaIntercalibration_Stat32: 4.92187800e-12 + syst_JES_EtaIntercalibration_Stat33: 3.51612420e-10 + syst_JES_EtaIntercalibration_Stat34: 3.58608031e-05 + syst_JES_EtaIntercalibration_Stat35: 5.89365082e-06 + syst_JES_EtaIntercalibration_Stat36: 1.06989755e-08 + syst_JES_EtaIntercalibration_Stat37: 3.01636648e-13 syst_JES_EtaIntercalibration_Stat38: 0.0 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 @@ -16382,20 +16382,20 @@ bins: syst_JES_EtaIntercalibration_Stat48: 0.0 syst_JES_EtaIntercalibration_Stat49: 0.0 syst_JES_EtaIntercalibration_Stat5: 0.0 - syst_JES_EtaIntercalibration_Stat50: 4.1855007764901917e-13 - syst_JES_EtaIntercalibration_Stat51: 3.1459087220547258e-09 - syst_JES_EtaIntercalibration_Stat52: 1.3583090185962837e-06 - syst_JES_EtaIntercalibration_Stat53: 2.826704206315192e-07 - syst_JES_EtaIntercalibration_Stat54: 1.1574578815231248e-09 - syst_JES_EtaIntercalibration_Stat55: 8.964952941710012e-07 - syst_JES_EtaIntercalibration_Stat56: 3.547226471852446e-05 - syst_JES_EtaIntercalibration_Stat57: 4.8240302630347376e-05 - syst_JES_EtaIntercalibration_Stat58: 1.5691828287360272e-08 - syst_JES_EtaIntercalibration_Stat59: 1.579547836407622e-12 + syst_JES_EtaIntercalibration_Stat50: 4.18550078e-13 + syst_JES_EtaIntercalibration_Stat51: 3.14590872e-09 + syst_JES_EtaIntercalibration_Stat52: 1.35830902e-06 + syst_JES_EtaIntercalibration_Stat53: 2.82670421e-07 + syst_JES_EtaIntercalibration_Stat54: 1.15745788e-09 + syst_JES_EtaIntercalibration_Stat55: 8.96495294e-07 + syst_JES_EtaIntercalibration_Stat56: 3.54722647e-05 + syst_JES_EtaIntercalibration_Stat57: 4.82403026e-05 + syst_JES_EtaIntercalibration_Stat58: 1.56918283e-08 + syst_JES_EtaIntercalibration_Stat59: 1.57954784e-12 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 1.9026578121144116e-11 - syst_JES_EtaIntercalibration_Stat62: 1.9026578121144116e-11 + syst_JES_EtaIntercalibration_Stat61: 1.90265781e-11 + syst_JES_EtaIntercalibration_Stat62: 1.90265781e-11 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 @@ -16403,218 +16403,218 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 4.1318072014555565e-13 + syst_JES_EtaIntercalibration_Stat7: 4.13180720e-13 syst_JES_EtaIntercalibration_Stat70: 0.0 syst_JES_EtaIntercalibration_Stat71: 0.0 - syst_JES_EtaIntercalibration_Stat72: 1.0179262596082291e-10 - syst_JES_EtaIntercalibration_Stat73: 3.169730392762135e-06 - syst_JES_EtaIntercalibration_Stat74: 0.00010387488050534643 - syst_JES_EtaIntercalibration_Stat75: 7.403934275099962e-05 - syst_JES_EtaIntercalibration_Stat76: 1.3735688579390552e-07 - syst_JES_EtaIntercalibration_Stat77: 7.687757812750087e-07 - syst_JES_EtaIntercalibration_Stat78: 3.5713785503639904e-05 - syst_JES_EtaIntercalibration_Stat79: 0.00010150643464825273 - syst_JES_EtaIntercalibration_Stat8: 6.18112956909981e-10 - syst_JES_EtaIntercalibration_Stat80: 1.4792832612626968e-07 - syst_JES_EtaIntercalibration_Stat81: 5.1615114065552536e-12 - syst_JES_EtaIntercalibration_Stat82: 1.9026578121144116e-11 - syst_JES_EtaIntercalibration_Stat83: 1.9026578121144116e-11 - syst_JES_EtaIntercalibration_Stat84: 1.9026578121144116e-11 + syst_JES_EtaIntercalibration_Stat72: 1.01792626e-10 + syst_JES_EtaIntercalibration_Stat73: 3.16973039e-06 + syst_JES_EtaIntercalibration_Stat74: 1.03874881e-04 + syst_JES_EtaIntercalibration_Stat75: 7.40393428e-05 + syst_JES_EtaIntercalibration_Stat76: 1.37356886e-07 + syst_JES_EtaIntercalibration_Stat77: 7.68775781e-07 + syst_JES_EtaIntercalibration_Stat78: 3.57137855e-05 + syst_JES_EtaIntercalibration_Stat79: 1.01506435e-04 + syst_JES_EtaIntercalibration_Stat8: 6.18112957e-10 + syst_JES_EtaIntercalibration_Stat80: 1.47928326e-07 + syst_JES_EtaIntercalibration_Stat81: 5.16151141e-12 + syst_JES_EtaIntercalibration_Stat82: 1.90265781e-11 + syst_JES_EtaIntercalibration_Stat83: 1.90265781e-11 + syst_JES_EtaIntercalibration_Stat84: 1.90265781e-11 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 syst_JES_EtaIntercalibration_Stat89: 0.0 - syst_JES_EtaIntercalibration_Stat9: 1.647575709944766e-10 + syst_JES_EtaIntercalibration_Stat9: 1.64757571e-10 syst_JES_EtaIntercalibration_Stat90: 0.0 syst_JES_EtaIntercalibration_Stat91: 0.0 syst_JES_EtaIntercalibration_Stat92: 0.0 - syst_JES_EtaIntercalibration_Stat93: 9.438810875846597e-11 - syst_JES_EtaIntercalibration_Stat94: 4.829251247087897e-06 - syst_JES_EtaIntercalibration_Stat95: 0.0001387386726907822 - syst_JES_EtaIntercalibration_Stat96: 8.362834686875019e-05 - syst_JES_EtaIntercalibration_Stat97: 1.699599307976736e-06 - syst_JES_EtaIntercalibration_Stat98: 4.2365206242859245e-07 - syst_JES_EtaIntercalibration_Stat99: 6.582286684731987e-05 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.036516660238855365 - syst_JES_Flavour_Comp: 0.11790381673211431 - syst_JES_Flavour_Response: 0.2936905301503608 - syst_JES_Gjet_Generator: 0.37803787597937855 - syst_JES_Gjet_OOC: 0.27077593596920685 - syst_JES_Gjet_Purity: 0.094427796754981 - syst_JES_Gjet_Stat1: 0.00012635117757662568 - syst_JES_Gjet_Stat10: 0.017640022675722386 - syst_JES_Gjet_Stat11: 0.03107005149657786 - syst_JES_Gjet_Stat12: 0.05727324506259446 - syst_JES_Gjet_Stat13: 0.02625081855866594 - syst_JES_Gjet_Stat14: 0.013116409074133058 - syst_JES_Gjet_Stat15: 0.00041574450711945673 - syst_JES_Gjet_Stat2: 3.921028819072872e-19 - syst_JES_Gjet_Stat3: 0.0004898908546974439 - syst_JES_Gjet_Stat4: 0.000921509907705826 - syst_JES_Gjet_Stat5: 0.0008198215476553417 - syst_JES_Gjet_Stat6: 0.0025347917074189743 - syst_JES_Gjet_Stat7: 0.0035437388095061408 - syst_JES_Gjet_Stat8: 0.002952415070751401 - syst_JES_Gjet_Stat9: 0.0072210448689922985 - syst_JES_Gjet_Veto: 0.1391235913675319 - syst_JES_Gjet_dPhi: 0.020372974132413752 - syst_JES_LArESZee: 0.516584850242436 - syst_JES_LArEsmear: 0.03938251206754084 - syst_JES_LAr_JVT: 0.05449219829480179 - syst_JES_MJB_Alpha: 0.0027782981751424745 - syst_JES_MJB_Asym: 0.014808320929463948 - syst_JES_MJB_Beta: 0.0010350176556465113 - syst_JES_MJB_Fragmentation: 0.04480575074697443 - syst_JES_MJB_Stat1: 0.0022628749702093575 - syst_JES_MJB_Stat10: 2.3634343036141282e-05 - syst_JES_MJB_Stat11: 3.387021653415087e-06 - syst_JES_MJB_Stat12: 3.161289131054406e-06 - syst_JES_MJB_Stat13: 2.1737246197107395e-06 - syst_JES_MJB_Stat14: 2.903360251501698e-12 - syst_JES_MJB_Stat15: 1.1255183905649876e-09 - syst_JES_MJB_Stat16: 2.917885114119472e-14 - syst_JES_MJB_Stat2: 0.0007706824378432404 - syst_JES_MJB_Stat3: 0.0024401874415708315 - syst_JES_MJB_Stat4: 0.0010900115721862774 - syst_JES_MJB_Stat5: 0.00028441611640121593 - syst_JES_MJB_Stat6: 0.0004952794492254516 - syst_JES_MJB_Stat7: 0.0002634444751917261 - syst_JES_MJB_Stat8: 1.0844114505485223e-09 - syst_JES_MJB_Stat9: 1.0650099189678941e-18 - syst_JES_MJB_Threshold: 0.018263408088305972 - syst_JES_Pileup_MuOffset: 0.03289336825258247 - syst_JES_Pileup_NPVOffset: 0.04115235442839207 - syst_JES_Pileup_Pt_term: 0.058949797921621416 - syst_JES_Pileup_Rho_topology: 0.12291673797738044 - syst_JES_PunchThrough_MC15: 0.00022555657478335673 + syst_JES_EtaIntercalibration_Stat93: 9.43881088e-11 + syst_JES_EtaIntercalibration_Stat94: 4.82925125e-06 + syst_JES_EtaIntercalibration_Stat95: 1.38738673e-04 + syst_JES_EtaIntercalibration_Stat96: 8.36283469e-05 + syst_JES_EtaIntercalibration_Stat97: 1.69959931e-06 + syst_JES_EtaIntercalibration_Stat98: 4.23652062e-07 + syst_JES_EtaIntercalibration_Stat99: 6.58228668e-05 + syst_JES_EtaIntercalibration_TotalStat_MJB: 3.65166602e-02 + syst_JES_Flavour_Comp: 1.17903817e-01 + syst_JES_Flavour_Response: 2.93690530e-01 + syst_JES_Gjet_Generator: 3.78037876e-01 + syst_JES_Gjet_OOC: 2.70775936e-01 + syst_JES_Gjet_Purity: 9.44277968e-02 + syst_JES_Gjet_Stat1: 1.26351178e-04 + syst_JES_Gjet_Stat10: 1.76400227e-02 + syst_JES_Gjet_Stat11: 3.10700515e-02 + syst_JES_Gjet_Stat12: 5.72732451e-02 + syst_JES_Gjet_Stat13: 2.62508186e-02 + syst_JES_Gjet_Stat14: 1.31164091e-02 + syst_JES_Gjet_Stat15: 4.15744507e-04 + syst_JES_Gjet_Stat2: 3.92102882e-19 + syst_JES_Gjet_Stat3: 4.89890855e-04 + syst_JES_Gjet_Stat4: 9.21509908e-04 + syst_JES_Gjet_Stat5: 8.19821548e-04 + syst_JES_Gjet_Stat6: 2.53479171e-03 + syst_JES_Gjet_Stat7: 3.54373881e-03 + syst_JES_Gjet_Stat8: 2.95241507e-03 + syst_JES_Gjet_Stat9: 7.22104487e-03 + syst_JES_Gjet_Veto: 1.39123591e-01 + syst_JES_Gjet_dPhi: 2.03729741e-02 + syst_JES_LArESZee: 5.16584850e-01 + syst_JES_LArEsmear: 3.93825121e-02 + syst_JES_LAr_JVT: 5.44921983e-02 + syst_JES_MJB_Alpha: 2.77829818e-03 + syst_JES_MJB_Asym: 1.48083209e-02 + syst_JES_MJB_Beta: 1.03501766e-03 + syst_JES_MJB_Fragmentation: 4.48057507e-02 + syst_JES_MJB_Stat1: 2.26287497e-03 + syst_JES_MJB_Stat10: 2.36343430e-05 + syst_JES_MJB_Stat11: 3.38702165e-06 + syst_JES_MJB_Stat12: 3.16128913e-06 + syst_JES_MJB_Stat13: 2.17372462e-06 + syst_JES_MJB_Stat14: 2.90336025e-12 + syst_JES_MJB_Stat15: 1.12551839e-09 + syst_JES_MJB_Stat16: 2.91788511e-14 + syst_JES_MJB_Stat2: 7.70682438e-04 + syst_JES_MJB_Stat3: 2.44018744e-03 + syst_JES_MJB_Stat4: 1.09001157e-03 + syst_JES_MJB_Stat5: 2.84416116e-04 + syst_JES_MJB_Stat6: 4.95279449e-04 + syst_JES_MJB_Stat7: 2.63444475e-04 + syst_JES_MJB_Stat8: 1.08441145e-09 + syst_JES_MJB_Stat9: 1.06500992e-18 + syst_JES_MJB_Threshold: 1.82634081e-02 + syst_JES_Pileup_MuOffset: 3.28933683e-02 + syst_JES_Pileup_NPVOffset: 4.11523544e-02 + syst_JES_Pileup_Pt_term: 5.89497979e-02 + syst_JES_Pileup_Rho_topology: 1.22916738e-01 + syst_JES_PunchThrough_MC15: 2.25556575e-04 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.33844494382395496 - syst_JES_Zjet_MuScale: 0.021878850518251638 - syst_JES_Zjet_MuSmearID: 0.003526657447215422 - syst_JES_Zjet_MuSmearMS: 0.07117762991277526 - syst_JES_Zjet_OOC: 0.12600536208828575 - syst_JES_Zjet_Stat1: 0.001897160246262819 - syst_JES_Zjet_Stat10: 0.014170166124643705 - syst_JES_Zjet_Stat11: 0.014870060524422893 - syst_JES_Zjet_Stat12: 0.10987425904187022 - syst_JES_Zjet_Stat13: 0.056304584848838025 - syst_JES_Zjet_Stat2: 0.00031106968684685427 - syst_JES_Zjet_Stat3: 0.0008253253782599926 - syst_JES_Zjet_Stat4: 0.0009401320691796446 - syst_JES_Zjet_Stat5: 0.0017887017414873843 - syst_JES_Zjet_Stat6: 0.0017224914368437366 - syst_JES_Zjet_Stat7: 0.0018022702350091676 - syst_JES_Zjet_Stat8: 0.002326297272491201 - syst_JES_Zjet_Stat9: 0.005015217143853295 - syst_JES_Zjet_Veto: 0.026701331427477545 - syst_JES_Zjet_dPhi: 0.02240401749686873 + syst_JES_Zjet_MC: 3.38444944e-01 + syst_JES_Zjet_MuScale: 2.18788505e-02 + syst_JES_Zjet_MuSmearID: 3.52665745e-03 + syst_JES_Zjet_MuSmearMS: 7.11776299e-02 + syst_JES_Zjet_OOC: 1.26005362e-01 + syst_JES_Zjet_Stat1: 1.89716025e-03 + syst_JES_Zjet_Stat10: 1.41701661e-02 + syst_JES_Zjet_Stat11: 1.48700605e-02 + syst_JES_Zjet_Stat12: 1.09874259e-01 + syst_JES_Zjet_Stat13: 5.63045848e-02 + syst_JES_Zjet_Stat2: 3.11069687e-04 + syst_JES_Zjet_Stat3: 8.25325378e-04 + syst_JES_Zjet_Stat4: 9.40132069e-04 + syst_JES_Zjet_Stat5: 1.78870174e-03 + syst_JES_Zjet_Stat6: 1.72249144e-03 + syst_JES_Zjet_Stat7: 1.80227024e-03 + syst_JES_Zjet_Stat8: 2.32629727e-03 + syst_JES_Zjet_Stat9: 5.01521714e-03 + syst_JES_Zjet_Veto: 2.67013314e-02 + syst_JES_Zjet_dPhi: 2.24040175e-02 syst_PRW: 0.01584 syst_Unfolding_bias: 0.01646 - syst_cleaning: 0.11049618126885653 + syst_cleaning: 1.10496181e-01 syst_lumi: 0.4304 - stat: 0.08048 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.05581879522168138 - syst_JER_NP1: 0.0026985123679538698 - syst_JER_NP2: 0.007115265472911042 - syst_JER_NP3: 0.011980322115869841 - syst_JER_NP4: 0.0061753342217243596 - syst_JER_NP5: 0.0034652427043426557 - syst_JER_NP6: 7.620157527897707e-06 - syst_JER_NP7: 0.007357500033978934 - syst_JER_NP8: 0.009137640067325918 - syst_JES_EtaIntercalibration_Modelling: 0.11147080738919944 - syst_JES_EtaIntercalibration_NonClosure: 4.602058995710507e-06 + syst_JER_NP0: 5.58187952e-02 + syst_JER_NP1: 2.69851237e-03 + syst_JER_NP2: 7.11526547e-03 + syst_JER_NP3: 1.19803221e-02 + syst_JER_NP4: 6.17533422e-03 + syst_JER_NP5: 3.46524270e-03 + syst_JER_NP6: 7.62015753e-06 + syst_JER_NP7: 7.35750003e-03 + syst_JER_NP8: 9.13764007e-03 + syst_JES_EtaIntercalibration_Modelling: 1.11470807e-01 + syst_JES_EtaIntercalibration_NonClosure: 4.60205900e-06 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 1.4876111950035869e-05 - syst_JES_EtaIntercalibration_Stat101: 2.1214820876764433e-08 - syst_JES_EtaIntercalibration_Stat102: 7.033547689727781e-12 - syst_JES_EtaIntercalibration_Stat103: 2.6283871004857713e-12 - syst_JES_EtaIntercalibration_Stat104: 2.6283871004857713e-12 - syst_JES_EtaIntercalibration_Stat105: 2.6283871004857713e-12 + syst_JES_EtaIntercalibration_Stat100: 1.48761120e-05 + syst_JES_EtaIntercalibration_Stat101: 2.12148209e-08 + syst_JES_EtaIntercalibration_Stat102: 7.03354769e-12 + syst_JES_EtaIntercalibration_Stat103: 2.62838710e-12 + syst_JES_EtaIntercalibration_Stat104: 2.62838710e-12 + syst_JES_EtaIntercalibration_Stat105: 2.62838710e-12 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 4.128343099840419e-07 - syst_JES_EtaIntercalibration_Stat111: 4.128343099840419e-07 + syst_JES_EtaIntercalibration_Stat110: 4.12834310e-07 + syst_JES_EtaIntercalibration_Stat111: 4.12834310e-07 syst_JES_EtaIntercalibration_Stat112: 0.0 - syst_JES_EtaIntercalibration_Stat113: 9.356468951580423e-10 - syst_JES_EtaIntercalibration_Stat114: 0.00010594594231021783 - syst_JES_EtaIntercalibration_Stat115: 0.0001153087416460695 - syst_JES_EtaIntercalibration_Stat116: 0.00011602347748085299 - syst_JES_EtaIntercalibration_Stat117: 3.759051476104045e-05 - syst_JES_EtaIntercalibration_Stat118: 1.918516345382546e-05 - syst_JES_EtaIntercalibration_Stat119: 0.00014428432867085738 - syst_JES_EtaIntercalibration_Stat12: 1.357042816856286e-07 - syst_JES_EtaIntercalibration_Stat120: 0.00012566209163864813 - syst_JES_EtaIntercalibration_Stat121: 2.879784639083277e-05 - syst_JES_EtaIntercalibration_Stat122: 1.2858157624935036e-09 - syst_JES_EtaIntercalibration_Stat123: 2.6283871004857713e-12 - syst_JES_EtaIntercalibration_Stat124: 2.6283871004857713e-12 - syst_JES_EtaIntercalibration_Stat125: 2.6283871004857713e-12 + syst_JES_EtaIntercalibration_Stat113: 9.35646895e-10 + syst_JES_EtaIntercalibration_Stat114: 1.05945942e-04 + syst_JES_EtaIntercalibration_Stat115: 1.15308742e-04 + syst_JES_EtaIntercalibration_Stat116: 1.16023477e-04 + syst_JES_EtaIntercalibration_Stat117: 3.75905148e-05 + syst_JES_EtaIntercalibration_Stat118: 1.91851635e-05 + syst_JES_EtaIntercalibration_Stat119: 1.44284329e-04 + syst_JES_EtaIntercalibration_Stat12: 1.35704282e-07 + syst_JES_EtaIntercalibration_Stat120: 1.25662092e-04 + syst_JES_EtaIntercalibration_Stat121: 2.87978464e-05 + syst_JES_EtaIntercalibration_Stat122: 1.28581576e-09 + syst_JES_EtaIntercalibration_Stat123: 2.62838710e-12 + syst_JES_EtaIntercalibration_Stat124: 2.62838710e-12 + syst_JES_EtaIntercalibration_Stat125: 2.62838710e-12 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 1.9191122947863163e-05 - syst_JES_EtaIntercalibration_Stat129: 1.9057486617271964e-05 - syst_JES_EtaIntercalibration_Stat13: 1.7522243825212227e-07 - syst_JES_EtaIntercalibration_Stat130: 4.128343099840419e-07 - syst_JES_EtaIntercalibration_Stat131: 3.0232946846114754e-13 - syst_JES_EtaIntercalibration_Stat132: 6.1642518282330905e-06 - syst_JES_EtaIntercalibration_Stat133: 0.00010590302498040367 - syst_JES_EtaIntercalibration_Stat134: 0.0018865218657624935 - syst_JES_EtaIntercalibration_Stat135: 0.0008948098946144929 - syst_JES_EtaIntercalibration_Stat136: 6.840982947464494e-05 - syst_JES_EtaIntercalibration_Stat137: 3.918078961685178e-05 - syst_JES_EtaIntercalibration_Stat138: 0.001053622864216604 - syst_JES_EtaIntercalibration_Stat139: 0.0016502583888591508 - syst_JES_EtaIntercalibration_Stat14: 5.428247230920862e-13 - syst_JES_EtaIntercalibration_Stat140: 0.00017986029995527083 - syst_JES_EtaIntercalibration_Stat141: 1.2557368478456191e-05 + syst_JES_EtaIntercalibration_Stat128: 1.91911229e-05 + syst_JES_EtaIntercalibration_Stat129: 1.90574866e-05 + syst_JES_EtaIntercalibration_Stat13: 1.75222438e-07 + syst_JES_EtaIntercalibration_Stat130: 4.12834310e-07 + syst_JES_EtaIntercalibration_Stat131: 3.02329468e-13 + syst_JES_EtaIntercalibration_Stat132: 6.16425183e-06 + syst_JES_EtaIntercalibration_Stat133: 1.05903025e-04 + syst_JES_EtaIntercalibration_Stat134: 1.88652187e-03 + syst_JES_EtaIntercalibration_Stat135: 8.94809895e-04 + syst_JES_EtaIntercalibration_Stat136: 6.84098295e-05 + syst_JES_EtaIntercalibration_Stat137: 3.91807896e-05 + syst_JES_EtaIntercalibration_Stat138: 1.05362286e-03 + syst_JES_EtaIntercalibration_Stat139: 1.65025839e-03 + syst_JES_EtaIntercalibration_Stat14: 5.42824723e-13 + syst_JES_EtaIntercalibration_Stat140: 1.79860300e-04 + syst_JES_EtaIntercalibration_Stat141: 1.25573685e-05 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 2.6283871004857713e-12 - syst_JES_EtaIntercalibration_Stat144: 2.6283871004857713e-12 + syst_JES_EtaIntercalibration_Stat143: 2.62838710e-12 + syst_JES_EtaIntercalibration_Stat144: 2.62838710e-12 syst_JES_EtaIntercalibration_Stat145: 0.0 - syst_JES_EtaIntercalibration_Stat146: 1.9191122947863163e-05 - syst_JES_EtaIntercalibration_Stat147: 1.9057486617271964e-05 + syst_JES_EtaIntercalibration_Stat146: 1.91911229e-05 + syst_JES_EtaIntercalibration_Stat147: 1.90574866e-05 syst_JES_EtaIntercalibration_Stat148: 0.0 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 1.3716269438426034e-08 - syst_JES_EtaIntercalibration_Stat151: 0.00012229843948309397 - syst_JES_EtaIntercalibration_Stat152: 0.002528957295013105 - syst_JES_EtaIntercalibration_Stat153: 0.0020455630031851863 - syst_JES_EtaIntercalibration_Stat154: 0.00012579877093624563 - syst_JES_EtaIntercalibration_Stat155: 5.628984877400187e-05 - syst_JES_EtaIntercalibration_Stat156: 0.0015982277309570124 - syst_JES_EtaIntercalibration_Stat157: 0.002238574257758719 - syst_JES_EtaIntercalibration_Stat158: 0.00034350431449255484 - syst_JES_EtaIntercalibration_Stat159: 1.274458892404145e-05 + syst_JES_EtaIntercalibration_Stat150: 1.37162694e-08 + syst_JES_EtaIntercalibration_Stat151: 1.22298439e-04 + syst_JES_EtaIntercalibration_Stat152: 2.52895730e-03 + syst_JES_EtaIntercalibration_Stat153: 2.04556300e-03 + syst_JES_EtaIntercalibration_Stat154: 1.25798771e-04 + syst_JES_EtaIntercalibration_Stat155: 5.62898488e-05 + syst_JES_EtaIntercalibration_Stat156: 1.59822773e-03 + syst_JES_EtaIntercalibration_Stat157: 2.23857426e-03 + syst_JES_EtaIntercalibration_Stat158: 3.43504314e-04 + syst_JES_EtaIntercalibration_Stat159: 1.27445889e-05 syst_JES_EtaIntercalibration_Stat16: 0.0 syst_JES_EtaIntercalibration_Stat160: 0.0 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 - syst_JES_EtaIntercalibration_Stat164: 1.9191122947863163e-05 + syst_JES_EtaIntercalibration_Stat164: 1.91911229e-05 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 - syst_JES_EtaIntercalibration_Stat168: 5.2827549630850755e-09 - syst_JES_EtaIntercalibration_Stat169: 0.00044133737661793387 + syst_JES_EtaIntercalibration_Stat168: 5.28275496e-09 + syst_JES_EtaIntercalibration_Stat169: 4.41337377e-04 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 0.005645632648339776 - syst_JES_EtaIntercalibration_Stat171: 0.004544090998208552 - syst_JES_EtaIntercalibration_Stat172: 0.0003575404137996152 - syst_JES_EtaIntercalibration_Stat173: 0.0003865937401581232 - syst_JES_EtaIntercalibration_Stat174: 0.004361049644294364 - syst_JES_EtaIntercalibration_Stat175: 0.00513839206367128 - syst_JES_EtaIntercalibration_Stat176: 0.0005986969433695147 - syst_JES_EtaIntercalibration_Stat177: 5.268090434872963e-05 + syst_JES_EtaIntercalibration_Stat170: 5.64563265e-03 + syst_JES_EtaIntercalibration_Stat171: 4.54409100e-03 + syst_JES_EtaIntercalibration_Stat172: 3.57540414e-04 + syst_JES_EtaIntercalibration_Stat173: 3.86593740e-04 + syst_JES_EtaIntercalibration_Stat174: 4.36104964e-03 + syst_JES_EtaIntercalibration_Stat175: 5.13839206e-03 + syst_JES_EtaIntercalibration_Stat176: 5.98696943e-04 + syst_JES_EtaIntercalibration_Stat177: 5.26809043e-05 syst_JES_EtaIntercalibration_Stat178: 0.0 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 @@ -16623,17 +16623,17 @@ bins: syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 syst_JES_EtaIntercalibration_Stat184: 0.0 - syst_JES_EtaIntercalibration_Stat185: 3.339653764613931e-05 - syst_JES_EtaIntercalibration_Stat186: 0.0012944088254875274 - syst_JES_EtaIntercalibration_Stat187: 0.018109806045344606 - syst_JES_EtaIntercalibration_Stat188: 0.014304296557328502 - syst_JES_EtaIntercalibration_Stat189: 0.0009857477263478724 + syst_JES_EtaIntercalibration_Stat185: 3.33965376e-05 + syst_JES_EtaIntercalibration_Stat186: 1.29440883e-03 + syst_JES_EtaIntercalibration_Stat187: 1.81098060e-02 + syst_JES_EtaIntercalibration_Stat188: 1.43042966e-02 + syst_JES_EtaIntercalibration_Stat189: 9.85747726e-04 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 0.0009988338337781715 - syst_JES_EtaIntercalibration_Stat191: 0.012601359728219807 - syst_JES_EtaIntercalibration_Stat192: 0.01759609331641544 - syst_JES_EtaIntercalibration_Stat193: 0.0018890190576063546 - syst_JES_EtaIntercalibration_Stat194: 1.8922655072689983e-05 + syst_JES_EtaIntercalibration_Stat190: 9.98833834e-04 + syst_JES_EtaIntercalibration_Stat191: 1.26013597e-02 + syst_JES_EtaIntercalibration_Stat192: 1.75960933e-02 + syst_JES_EtaIntercalibration_Stat193: 1.88901906e-03 + syst_JES_EtaIntercalibration_Stat194: 1.89226551e-05 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 syst_JES_EtaIntercalibration_Stat197: 0.0 @@ -16641,70 +16641,70 @@ bins: syst_JES_EtaIntercalibration_Stat199: 0.0 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 1.2895118262350292e-05 - syst_JES_EtaIntercalibration_Stat201: 0.00042643266760415997 - syst_JES_EtaIntercalibration_Stat202: 0.011863227933408344 - syst_JES_EtaIntercalibration_Stat203: 0.00965670423850705 - syst_JES_EtaIntercalibration_Stat204: 0.0007977375069532585 - syst_JES_EtaIntercalibration_Stat205: 0.0005643021531059403 - syst_JES_EtaIntercalibration_Stat206: 0.009493457576141581 - syst_JES_EtaIntercalibration_Stat207: 0.010362725558461924 - syst_JES_EtaIntercalibration_Stat208: 0.0011776623486806394 - syst_JES_EtaIntercalibration_Stat209: 7.080926634276053e-06 + syst_JES_EtaIntercalibration_Stat200: 1.28951183e-05 + syst_JES_EtaIntercalibration_Stat201: 4.26432668e-04 + syst_JES_EtaIntercalibration_Stat202: 1.18632279e-02 + syst_JES_EtaIntercalibration_Stat203: 9.65670424e-03 + syst_JES_EtaIntercalibration_Stat204: 7.97737507e-04 + syst_JES_EtaIntercalibration_Stat205: 5.64302153e-04 + syst_JES_EtaIntercalibration_Stat206: 9.49345758e-03 + syst_JES_EtaIntercalibration_Stat207: 1.03627256e-02 + syst_JES_EtaIntercalibration_Stat208: 1.17766235e-03 + syst_JES_EtaIntercalibration_Stat209: 7.08092663e-06 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 syst_JES_EtaIntercalibration_Stat211: 0.0 syst_JES_EtaIntercalibration_Stat212: 0.0 - syst_JES_EtaIntercalibration_Stat213: 4.808173041811203e-06 - syst_JES_EtaIntercalibration_Stat214: 9.376380111748882e-05 - syst_JES_EtaIntercalibration_Stat215: 0.0010113174427448584 - syst_JES_EtaIntercalibration_Stat216: 0.0011152104050357492 - syst_JES_EtaIntercalibration_Stat217: 8.920685472961146e-05 - syst_JES_EtaIntercalibration_Stat218: 0.0001359603806261221 - syst_JES_EtaIntercalibration_Stat219: 0.00050168240949828 + syst_JES_EtaIntercalibration_Stat213: 4.80817304e-06 + syst_JES_EtaIntercalibration_Stat214: 9.37638011e-05 + syst_JES_EtaIntercalibration_Stat215: 1.01131744e-03 + syst_JES_EtaIntercalibration_Stat216: 1.11521041e-03 + syst_JES_EtaIntercalibration_Stat217: 8.92068547e-05 + syst_JES_EtaIntercalibration_Stat218: 1.35960381e-04 + syst_JES_EtaIntercalibration_Stat219: 5.01682409e-04 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 0.0006233432501439316 - syst_JES_EtaIntercalibration_Stat221: 8.620614406757793e-05 - syst_JES_EtaIntercalibration_Stat222: 9.676124069068152e-06 + syst_JES_EtaIntercalibration_Stat220: 6.23343250e-04 + syst_JES_EtaIntercalibration_Stat221: 8.62061441e-05 + syst_JES_EtaIntercalibration_Stat222: 9.67612407e-06 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 - syst_JES_EtaIntercalibration_Stat225: 2.6076024907949447e-09 - syst_JES_EtaIntercalibration_Stat226: 7.344934717204775e-05 - syst_JES_EtaIntercalibration_Stat227: 0.000488003347836877 - syst_JES_EtaIntercalibration_Stat228: 0.00047514096855564875 - syst_JES_EtaIntercalibration_Stat229: 4.596862843389934e-05 + syst_JES_EtaIntercalibration_Stat225: 2.60760249e-09 + syst_JES_EtaIntercalibration_Stat226: 7.34493472e-05 + syst_JES_EtaIntercalibration_Stat227: 4.88003348e-04 + syst_JES_EtaIntercalibration_Stat228: 4.75140969e-04 + syst_JES_EtaIntercalibration_Stat229: 4.59686284e-05 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 2.980829527279277e-05 - syst_JES_EtaIntercalibration_Stat231: 0.000805564466694007 - syst_JES_EtaIntercalibration_Stat232: 0.0005251125688840441 - syst_JES_EtaIntercalibration_Stat233: 2.5749564423500454e-05 - syst_JES_EtaIntercalibration_Stat234: 1.7276987308082857e-06 + syst_JES_EtaIntercalibration_Stat230: 2.98082953e-05 + syst_JES_EtaIntercalibration_Stat231: 8.05564467e-04 + syst_JES_EtaIntercalibration_Stat232: 5.25112569e-04 + syst_JES_EtaIntercalibration_Stat233: 2.57495644e-05 + syst_JES_EtaIntercalibration_Stat234: 1.72769873e-06 syst_JES_EtaIntercalibration_Stat235: 0.0 - syst_JES_EtaIntercalibration_Stat236: 2.6742864468863465e-42 - syst_JES_EtaIntercalibration_Stat237: 1.2947929680068549e-08 - syst_JES_EtaIntercalibration_Stat238: 3.257788014895997e-06 - syst_JES_EtaIntercalibration_Stat239: 5.186839500119509e-07 + syst_JES_EtaIntercalibration_Stat236: 2.67428645e-42 + syst_JES_EtaIntercalibration_Stat237: 1.29479297e-08 + syst_JES_EtaIntercalibration_Stat238: 3.25778801e-06 + syst_JES_EtaIntercalibration_Stat239: 5.18683950e-07 syst_JES_EtaIntercalibration_Stat24: 0.0 - syst_JES_EtaIntercalibration_Stat240: 2.6275210750819867e-42 - syst_JES_EtaIntercalibration_Stat241: 2.2525320752433248e-08 - syst_JES_EtaIntercalibration_Stat242: 5.604020409491743e-07 - syst_JES_EtaIntercalibration_Stat243: 2.5174345203152755e-06 - syst_JES_EtaIntercalibration_Stat244: 2.7513627078231617e-13 - syst_JES_EtaIntercalibration_Stat245: 2.906381255100576e-11 + syst_JES_EtaIntercalibration_Stat240: 2.62752108e-42 + syst_JES_EtaIntercalibration_Stat241: 2.25253208e-08 + syst_JES_EtaIntercalibration_Stat242: 5.60402041e-07 + syst_JES_EtaIntercalibration_Stat243: 2.51743452e-06 + syst_JES_EtaIntercalibration_Stat244: 2.75136271e-13 + syst_JES_EtaIntercalibration_Stat245: 2.90638126e-11 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 syst_JES_EtaIntercalibration_Stat27: 0.0 - syst_JES_EtaIntercalibration_Stat28: 5.50792156806903e-14 - syst_JES_EtaIntercalibration_Stat29: 1.326813250640421e-10 + syst_JES_EtaIntercalibration_Stat28: 5.50792157e-14 + syst_JES_EtaIntercalibration_Stat29: 1.32681325e-10 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 5.531174287617413e-09 - syst_JES_EtaIntercalibration_Stat31: 2.552507541614716e-09 - syst_JES_EtaIntercalibration_Stat32: 6.038306219462541e-13 - syst_JES_EtaIntercalibration_Stat33: 4.0018384534486144e-11 - syst_JES_EtaIntercalibration_Stat34: 2.209618104305583e-05 - syst_JES_EtaIntercalibration_Stat35: 1.0391784698857219e-05 - syst_JES_EtaIntercalibration_Stat36: 1.2655359193638083e-09 - syst_JES_EtaIntercalibration_Stat37: 4.0209559497711483e-14 + syst_JES_EtaIntercalibration_Stat30: 5.53117429e-09 + syst_JES_EtaIntercalibration_Stat31: 2.55250754e-09 + syst_JES_EtaIntercalibration_Stat32: 6.03830622e-13 + syst_JES_EtaIntercalibration_Stat33: 4.00183845e-11 + syst_JES_EtaIntercalibration_Stat34: 2.20961810e-05 + syst_JES_EtaIntercalibration_Stat35: 1.03917847e-05 + syst_JES_EtaIntercalibration_Stat36: 1.26553592e-09 + syst_JES_EtaIntercalibration_Stat37: 4.02095595e-14 syst_JES_EtaIntercalibration_Stat38: 0.0 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 @@ -16719,20 +16719,20 @@ bins: syst_JES_EtaIntercalibration_Stat48: 0.0 syst_JES_EtaIntercalibration_Stat49: 0.0 syst_JES_EtaIntercalibration_Stat5: 0.0 - syst_JES_EtaIntercalibration_Stat50: 5.579801676583138e-14 - syst_JES_EtaIntercalibration_Stat51: 3.5796389133542507e-10 - syst_JES_EtaIntercalibration_Stat52: 6.224450096193238e-08 - syst_JES_EtaIntercalibration_Stat53: 4.0133072047875926e-08 - syst_JES_EtaIntercalibration_Stat54: 1.3160453288166027e-10 - syst_JES_EtaIntercalibration_Stat55: 1.3467912966776811e-07 - syst_JES_EtaIntercalibration_Stat56: 2.2055599741384767e-05 - syst_JES_EtaIntercalibration_Stat57: 2.994647782878853e-05 - syst_JES_EtaIntercalibration_Stat58: 1.8599566742265797e-09 - syst_JES_EtaIntercalibration_Stat59: 2.0206093554915555e-13 + syst_JES_EtaIntercalibration_Stat50: 5.57980168e-14 + syst_JES_EtaIntercalibration_Stat51: 3.57963891e-10 + syst_JES_EtaIntercalibration_Stat52: 6.22445010e-08 + syst_JES_EtaIntercalibration_Stat53: 4.01330720e-08 + syst_JES_EtaIntercalibration_Stat54: 1.31604533e-10 + syst_JES_EtaIntercalibration_Stat55: 1.34679130e-07 + syst_JES_EtaIntercalibration_Stat56: 2.20555997e-05 + syst_JES_EtaIntercalibration_Stat57: 2.99464778e-05 + syst_JES_EtaIntercalibration_Stat58: 1.85995667e-09 + syst_JES_EtaIntercalibration_Stat59: 2.02060936e-13 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 2.6283871004857713e-12 - syst_JES_EtaIntercalibration_Stat62: 2.6283871004857713e-12 + syst_JES_EtaIntercalibration_Stat61: 2.62838710e-12 + syst_JES_EtaIntercalibration_Stat62: 2.62838710e-12 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 @@ -16740,218 +16740,218 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 5.50792156806903e-14 + syst_JES_EtaIntercalibration_Stat7: 5.50792157e-14 syst_JES_EtaIntercalibration_Stat70: 0.0 syst_JES_EtaIntercalibration_Stat71: 0.0 - syst_JES_EtaIntercalibration_Stat72: 1.1464444295298399e-11 - syst_JES_EtaIntercalibration_Stat73: 5.921784563953251e-07 - syst_JES_EtaIntercalibration_Stat74: 0.00012090647656349929 - syst_JES_EtaIntercalibration_Stat75: 7.81825969573792e-05 - syst_JES_EtaIntercalibration_Stat76: 2.1611332137330174e-08 - syst_JES_EtaIntercalibration_Stat77: 1.1688807410510277e-07 - syst_JES_EtaIntercalibration_Stat78: 2.1016053578157817e-05 - syst_JES_EtaIntercalibration_Stat79: 9.36758139476247e-05 - syst_JES_EtaIntercalibration_Stat8: 7.01597762254128e-11 - syst_JES_EtaIntercalibration_Stat80: 1.8753915059549566e-08 - syst_JES_EtaIntercalibration_Stat81: 6.446693105771362e-13 - syst_JES_EtaIntercalibration_Stat82: 2.6283871004857713e-12 - syst_JES_EtaIntercalibration_Stat83: 2.6283871004857713e-12 - syst_JES_EtaIntercalibration_Stat84: 2.6283871004857713e-12 + syst_JES_EtaIntercalibration_Stat72: 1.14644443e-11 + syst_JES_EtaIntercalibration_Stat73: 5.92178456e-07 + syst_JES_EtaIntercalibration_Stat74: 1.20906477e-04 + syst_JES_EtaIntercalibration_Stat75: 7.81825970e-05 + syst_JES_EtaIntercalibration_Stat76: 2.16113321e-08 + syst_JES_EtaIntercalibration_Stat77: 1.16888074e-07 + syst_JES_EtaIntercalibration_Stat78: 2.10160536e-05 + syst_JES_EtaIntercalibration_Stat79: 9.36758139e-05 + syst_JES_EtaIntercalibration_Stat8: 7.01597762e-11 + syst_JES_EtaIntercalibration_Stat80: 1.87539151e-08 + syst_JES_EtaIntercalibration_Stat81: 6.44669311e-13 + syst_JES_EtaIntercalibration_Stat82: 2.62838710e-12 + syst_JES_EtaIntercalibration_Stat83: 2.62838710e-12 + syst_JES_EtaIntercalibration_Stat84: 2.62838710e-12 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 syst_JES_EtaIntercalibration_Stat89: 0.0 - syst_JES_EtaIntercalibration_Stat9: 1.884315978677674e-11 + syst_JES_EtaIntercalibration_Stat9: 1.88431598e-11 syst_JES_EtaIntercalibration_Stat90: 0.0 syst_JES_EtaIntercalibration_Stat91: 0.0 syst_JES_EtaIntercalibration_Stat92: 0.0 - syst_JES_EtaIntercalibration_Stat93: 1.0609677221763158e-11 - syst_JES_EtaIntercalibration_Stat94: 8.336598270277873e-07 - syst_JES_EtaIntercalibration_Stat95: 0.0001325933010185658 - syst_JES_EtaIntercalibration_Stat96: 8.111662124990167e-05 - syst_JES_EtaIntercalibration_Stat97: 2.885534425557075e-07 - syst_JES_EtaIntercalibration_Stat98: 6.00525009366804e-08 - syst_JES_EtaIntercalibration_Stat99: 4.277086216982305e-05 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.02956995899557522 - syst_JES_Flavour_Comp: 0.09131803819618554 - syst_JES_Flavour_Response: 0.15128055889637637 - syst_JES_Gjet_Generator: 0.2370062182728546 - syst_JES_Gjet_OOC: 0.17398450362029372 - syst_JES_Gjet_Purity: 0.060963371584911545 - syst_JES_Gjet_Stat1: 7.757415339531589e-05 - syst_JES_Gjet_Stat10: 0.008891524166305797 - syst_JES_Gjet_Stat11: 0.015373148669026785 - syst_JES_Gjet_Stat12: 0.03586206456689296 - syst_JES_Gjet_Stat13: 0.028608960134894803 - syst_JES_Gjet_Stat14: 0.007412806755878638 - syst_JES_Gjet_Stat15: 0.002672575162647442 - syst_JES_Gjet_Stat2: 5.568578701069062e-15 - syst_JES_Gjet_Stat3: 0.0003040186376042594 - syst_JES_Gjet_Stat4: 0.0005651240837196731 - syst_JES_Gjet_Stat5: 0.0005046288338967562 - syst_JES_Gjet_Stat6: 0.001655028927239642 - syst_JES_Gjet_Stat7: 0.0022906310811651883 - syst_JES_Gjet_Stat8: 0.0016961668748976325 - syst_JES_Gjet_Stat9: 0.003955763424422648 - syst_JES_Gjet_Veto: 0.10023176679576191 - syst_JES_Gjet_dPhi: 0.012688604996216093 - syst_JES_LArESZee: 0.33300355478583105 - syst_JES_LArEsmear: 0.02451544972053338 - syst_JES_LAr_JVT: 0.03372147535325226 - syst_JES_MJB_Alpha: 0.0020588158611201733 - syst_JES_MJB_Asym: 0.010033724470504459 - syst_JES_MJB_Beta: 0.0009005932877831147 - syst_JES_MJB_Fragmentation: 0.03310613349516975 - syst_JES_MJB_Stat1: 0.0010224616997716832 - syst_JES_MJB_Stat10: 7.218941919007246e-05 - syst_JES_MJB_Stat11: 7.19403259963944e-06 - syst_JES_MJB_Stat12: 5.9630587550916355e-06 - syst_JES_MJB_Stat13: 4.082759575095596e-06 - syst_JES_MJB_Stat14: 1.07257255232455e-09 - syst_JES_MJB_Stat15: 2.8430910555238993e-08 - syst_JES_MJB_Stat16: 1.0753150219782108e-11 - syst_JES_MJB_Stat2: 0.0004789231749456274 - syst_JES_MJB_Stat3: 0.0023291570900220533 - syst_JES_MJB_Stat4: 0.000990915459310228 - syst_JES_MJB_Stat5: 0.0005008556370851785 - syst_JES_MJB_Stat6: 0.0003194361005432717 - syst_JES_MJB_Stat7: 0.00022166409581773655 - syst_JES_MJB_Stat8: 9.165038039746479e-08 - syst_JES_MJB_Stat9: 1.5127262640676267e-14 - syst_JES_MJB_Threshold: 0.013782128890342015 - syst_JES_Pileup_MuOffset: 0.024827148446811206 - syst_JES_Pileup_NPVOffset: 0.028843550405593273 - syst_JES_Pileup_Pt_term: 0.03633859208885231 - syst_JES_Pileup_Rho_topology: 0.07685389563971368 - syst_JES_PunchThrough_MC15: 0.000814730520049421 + syst_JES_EtaIntercalibration_Stat93: 1.06096772e-11 + syst_JES_EtaIntercalibration_Stat94: 8.33659827e-07 + syst_JES_EtaIntercalibration_Stat95: 1.32593301e-04 + syst_JES_EtaIntercalibration_Stat96: 8.11166212e-05 + syst_JES_EtaIntercalibration_Stat97: 2.88553443e-07 + syst_JES_EtaIntercalibration_Stat98: 6.00525009e-08 + syst_JES_EtaIntercalibration_Stat99: 4.27708622e-05 + syst_JES_EtaIntercalibration_TotalStat_MJB: 2.95699590e-02 + syst_JES_Flavour_Comp: 9.13180382e-02 + syst_JES_Flavour_Response: 1.51280559e-01 + syst_JES_Gjet_Generator: 2.37006218e-01 + syst_JES_Gjet_OOC: 1.73984504e-01 + syst_JES_Gjet_Purity: 6.09633716e-02 + syst_JES_Gjet_Stat1: 7.75741534e-05 + syst_JES_Gjet_Stat10: 8.89152417e-03 + syst_JES_Gjet_Stat11: 1.53731487e-02 + syst_JES_Gjet_Stat12: 3.58620646e-02 + syst_JES_Gjet_Stat13: 2.86089601e-02 + syst_JES_Gjet_Stat14: 7.41280676e-03 + syst_JES_Gjet_Stat15: 2.67257516e-03 + syst_JES_Gjet_Stat2: 5.56857870e-15 + syst_JES_Gjet_Stat3: 3.04018638e-04 + syst_JES_Gjet_Stat4: 5.65124084e-04 + syst_JES_Gjet_Stat5: 5.04628834e-04 + syst_JES_Gjet_Stat6: 1.65502893e-03 + syst_JES_Gjet_Stat7: 2.29063108e-03 + syst_JES_Gjet_Stat8: 1.69616687e-03 + syst_JES_Gjet_Stat9: 3.95576342e-03 + syst_JES_Gjet_Veto: 1.00231767e-01 + syst_JES_Gjet_dPhi: 1.26886050e-02 + syst_JES_LArESZee: 3.33003555e-01 + syst_JES_LArEsmear: 2.45154497e-02 + syst_JES_LAr_JVT: 3.37214754e-02 + syst_JES_MJB_Alpha: 2.05881586e-03 + syst_JES_MJB_Asym: 1.00337245e-02 + syst_JES_MJB_Beta: 9.00593288e-04 + syst_JES_MJB_Fragmentation: 3.31061335e-02 + syst_JES_MJB_Stat1: 1.02246170e-03 + syst_JES_MJB_Stat10: 7.21894192e-05 + syst_JES_MJB_Stat11: 7.19403260e-06 + syst_JES_MJB_Stat12: 5.96305876e-06 + syst_JES_MJB_Stat13: 4.08275958e-06 + syst_JES_MJB_Stat14: 1.07257255e-09 + syst_JES_MJB_Stat15: 2.84309106e-08 + syst_JES_MJB_Stat16: 1.07531502e-11 + syst_JES_MJB_Stat2: 4.78923175e-04 + syst_JES_MJB_Stat3: 2.32915709e-03 + syst_JES_MJB_Stat4: 9.90915459e-04 + syst_JES_MJB_Stat5: 5.00855637e-04 + syst_JES_MJB_Stat6: 3.19436101e-04 + syst_JES_MJB_Stat7: 2.21664096e-04 + syst_JES_MJB_Stat8: 9.16503804e-08 + syst_JES_MJB_Stat9: 1.51272626e-14 + syst_JES_MJB_Threshold: 1.37821289e-02 + syst_JES_Pileup_MuOffset: 2.48271484e-02 + syst_JES_Pileup_NPVOffset: 2.88435504e-02 + syst_JES_Pileup_Pt_term: 3.63385921e-02 + syst_JES_Pileup_Rho_topology: 7.68538956e-02 + syst_JES_PunchThrough_MC15: 8.14730520e-04 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.20105093881899683 - syst_JES_Zjet_MuScale: 0.012848494260029071 - syst_JES_Zjet_MuSmearID: 0.0022072831716841404 - syst_JES_Zjet_MuSmearMS: 0.047512525453821126 - syst_JES_Zjet_OOC: 0.07781965352659957 - syst_JES_Zjet_Stat1: 0.0016335001530456005 - syst_JES_Zjet_Stat10: 0.008418694242577051 - syst_JES_Zjet_Stat11: 0.006908020121568842 - syst_JES_Zjet_Stat12: 0.060207795799215244 - syst_JES_Zjet_Stat13: 0.04277014262309632 - syst_JES_Zjet_Stat2: 0.00019335187786778798 - syst_JES_Zjet_Stat3: 0.0005515931539640426 - syst_JES_Zjet_Stat4: 0.000584232631320778 - syst_JES_Zjet_Stat5: 0.0012876848478956334 - syst_JES_Zjet_Stat6: 0.001401803795115422 - syst_JES_Zjet_Stat7: 0.0011140209726481813 - syst_JES_Zjet_Stat8: 0.0015981167565293846 - syst_JES_Zjet_Stat9: 0.0030571429063751664 - syst_JES_Zjet_Veto: 0.01587513149551839 - syst_JES_Zjet_dPhi: 0.013629671456054985 + syst_JES_Zjet_MC: 2.01050939e-01 + syst_JES_Zjet_MuScale: 1.28484943e-02 + syst_JES_Zjet_MuSmearID: 2.20728317e-03 + syst_JES_Zjet_MuSmearMS: 4.75125255e-02 + syst_JES_Zjet_OOC: 7.78196535e-02 + syst_JES_Zjet_Stat1: 1.63350015e-03 + syst_JES_Zjet_Stat10: 8.41869424e-03 + syst_JES_Zjet_Stat11: 6.90802012e-03 + syst_JES_Zjet_Stat12: 6.02077958e-02 + syst_JES_Zjet_Stat13: 4.27701426e-02 + syst_JES_Zjet_Stat2: 1.93351878e-04 + syst_JES_Zjet_Stat3: 5.51593154e-04 + syst_JES_Zjet_Stat4: 5.84232631e-04 + syst_JES_Zjet_Stat5: 1.28768485e-03 + syst_JES_Zjet_Stat6: 1.40180380e-03 + syst_JES_Zjet_Stat7: 1.11402097e-03 + syst_JES_Zjet_Stat8: 1.59811676e-03 + syst_JES_Zjet_Stat9: 3.05714291e-03 + syst_JES_Zjet_Veto: 1.58751315e-02 + syst_JES_Zjet_dPhi: 1.36296715e-02 syst_PRW: 0.009841 syst_Unfolding_bias: 0.010228 - syst_cleaning: 0.06906552595180898 + syst_cleaning: 6.90655260e-02 syst_lumi: 0.2675 - stat: 0.05933 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.032111082199141154 - syst_JER_NP1: 0.0014265375100220815 - syst_JER_NP2: 0.004457982503330403 - syst_JER_NP3: 0.007184973486381144 - syst_JER_NP4: 0.0031117459327522226 - syst_JER_NP5: 0.0021572670210245185 - syst_JER_NP6: 6.0084842500811875e-05 - syst_JER_NP7: 0.004371037710601454 - syst_JER_NP8: 0.005789179043698683 - syst_JES_EtaIntercalibration_Modelling: 0.07841204052950032 - syst_JES_EtaIntercalibration_NonClosure: 1.2869137500236759e-06 + syst_JER_NP0: 3.21110822e-02 + syst_JER_NP1: 1.42653751e-03 + syst_JER_NP2: 4.45798250e-03 + syst_JER_NP3: 7.18497349e-03 + syst_JER_NP4: 3.11174593e-03 + syst_JER_NP5: 2.15726702e-03 + syst_JER_NP6: 6.00848425e-05 + syst_JER_NP7: 4.37103771e-03 + syst_JER_NP8: 5.78917904e-03 + syst_JES_EtaIntercalibration_Modelling: 7.84120405e-02 + syst_JES_EtaIntercalibration_NonClosure: 1.28691375e-06 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 8.110380431890973e-06 - syst_JES_EtaIntercalibration_Stat101: 2.6031731046551628e-09 - syst_JES_EtaIntercalibration_Stat102: 8.748419954728968e-13 - syst_JES_EtaIntercalibration_Stat103: 3.922229053739723e-13 - syst_JES_EtaIntercalibration_Stat104: 3.922229053739723e-13 - syst_JES_EtaIntercalibration_Stat105: 3.922229053739723e-13 + syst_JES_EtaIntercalibration_Stat100: 8.11038043e-06 + syst_JES_EtaIntercalibration_Stat101: 2.60317310e-09 + syst_JES_EtaIntercalibration_Stat102: 8.74841995e-13 + syst_JES_EtaIntercalibration_Stat103: 3.92222905e-13 + syst_JES_EtaIntercalibration_Stat104: 3.92222905e-13 + syst_JES_EtaIntercalibration_Stat105: 3.92222905e-13 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 5.5624811685074497e-08 - syst_JES_EtaIntercalibration_Stat111: 5.5624811685074497e-08 + syst_JES_EtaIntercalibration_Stat110: 5.56248117e-08 + syst_JES_EtaIntercalibration_Stat111: 5.56248117e-08 syst_JES_EtaIntercalibration_Stat112: 0.0 - syst_JES_EtaIntercalibration_Stat113: 1.0921986152820865e-10 - syst_JES_EtaIntercalibration_Stat114: 7.61433240059002e-05 - syst_JES_EtaIntercalibration_Stat115: 1.9139224122205164e-05 - syst_JES_EtaIntercalibration_Stat116: 3.5535771301605366e-05 - syst_JES_EtaIntercalibration_Stat117: 1.291844472063104e-05 - syst_JES_EtaIntercalibration_Stat118: 1.2281704553928987e-05 - syst_JES_EtaIntercalibration_Stat119: 5.0656328680309035e-05 - syst_JES_EtaIntercalibration_Stat12: 1.848930779167069e-08 - syst_JES_EtaIntercalibration_Stat120: 4.9062858661109425e-05 - syst_JES_EtaIntercalibration_Stat121: 1.3382129006626713e-05 - syst_JES_EtaIntercalibration_Stat122: 1.5167574781526546e-10 - syst_JES_EtaIntercalibration_Stat123: 3.922229053739723e-13 - syst_JES_EtaIntercalibration_Stat124: 3.922229053739723e-13 - syst_JES_EtaIntercalibration_Stat125: 3.922229053739723e-13 + syst_JES_EtaIntercalibration_Stat113: 1.09219862e-10 + syst_JES_EtaIntercalibration_Stat114: 7.61433240e-05 + syst_JES_EtaIntercalibration_Stat115: 1.91392241e-05 + syst_JES_EtaIntercalibration_Stat116: 3.55357713e-05 + syst_JES_EtaIntercalibration_Stat117: 1.29184447e-05 + syst_JES_EtaIntercalibration_Stat118: 1.22817046e-05 + syst_JES_EtaIntercalibration_Stat119: 5.06563287e-05 + syst_JES_EtaIntercalibration_Stat12: 1.84893078e-08 + syst_JES_EtaIntercalibration_Stat120: 4.90628587e-05 + syst_JES_EtaIntercalibration_Stat121: 1.33821290e-05 + syst_JES_EtaIntercalibration_Stat122: 1.51675748e-10 + syst_JES_EtaIntercalibration_Stat123: 3.92222905e-13 + syst_JES_EtaIntercalibration_Stat124: 3.92222905e-13 + syst_JES_EtaIntercalibration_Stat125: 3.92222905e-13 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 6.274354050418258e-06 - syst_JES_EtaIntercalibration_Stat129: 6.256032264516784e-06 - syst_JES_EtaIntercalibration_Stat13: 2.335098623410566e-08 - syst_JES_EtaIntercalibration_Stat130: 5.5624811685074497e-08 - syst_JES_EtaIntercalibration_Stat131: 4.013161721137089e-14 - syst_JES_EtaIntercalibration_Stat132: 1.6059630761062815e-06 - syst_JES_EtaIntercalibration_Stat133: 2.7146831799493654e-05 - syst_JES_EtaIntercalibration_Stat134: 0.000700273832154251 - syst_JES_EtaIntercalibration_Stat135: 0.0003557871018952205 - syst_JES_EtaIntercalibration_Stat136: 7.218071539545726e-06 - syst_JES_EtaIntercalibration_Stat137: 1.207143935079823e-05 - syst_JES_EtaIntercalibration_Stat138: 0.00034222241305910986 - syst_JES_EtaIntercalibration_Stat139: 0.0007098921115211804 - syst_JES_EtaIntercalibration_Stat14: 7.322244788997429e-14 - syst_JES_EtaIntercalibration_Stat140: 5.501001067987535e-05 - syst_JES_EtaIntercalibration_Stat141: 4.936344818043103e-06 + syst_JES_EtaIntercalibration_Stat128: 6.27435405e-06 + syst_JES_EtaIntercalibration_Stat129: 6.25603226e-06 + syst_JES_EtaIntercalibration_Stat13: 2.33509862e-08 + syst_JES_EtaIntercalibration_Stat130: 5.56248117e-08 + syst_JES_EtaIntercalibration_Stat131: 4.01316172e-14 + syst_JES_EtaIntercalibration_Stat132: 1.60596308e-06 + syst_JES_EtaIntercalibration_Stat133: 2.71468318e-05 + syst_JES_EtaIntercalibration_Stat134: 7.00273832e-04 + syst_JES_EtaIntercalibration_Stat135: 3.55787102e-04 + syst_JES_EtaIntercalibration_Stat136: 7.21807154e-06 + syst_JES_EtaIntercalibration_Stat137: 1.20714394e-05 + syst_JES_EtaIntercalibration_Stat138: 3.42222413e-04 + syst_JES_EtaIntercalibration_Stat139: 7.09892112e-04 + syst_JES_EtaIntercalibration_Stat14: 7.32224479e-14 + syst_JES_EtaIntercalibration_Stat140: 5.50100107e-05 + syst_JES_EtaIntercalibration_Stat141: 4.93634482e-06 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 3.922229053739723e-13 - syst_JES_EtaIntercalibration_Stat144: 3.922229053739723e-13 + syst_JES_EtaIntercalibration_Stat143: 3.92222905e-13 + syst_JES_EtaIntercalibration_Stat144: 3.92222905e-13 syst_JES_EtaIntercalibration_Stat145: 0.0 - syst_JES_EtaIntercalibration_Stat146: 6.274354050418258e-06 - syst_JES_EtaIntercalibration_Stat147: 6.256032264516784e-06 + syst_JES_EtaIntercalibration_Stat146: 6.27435405e-06 + syst_JES_EtaIntercalibration_Stat147: 6.25603226e-06 syst_JES_EtaIntercalibration_Stat148: 0.0 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 1.6921469104956579e-09 - syst_JES_EtaIntercalibration_Stat151: 2.9754659479651247e-05 - syst_JES_EtaIntercalibration_Stat152: 0.0009119402653134688 - syst_JES_EtaIntercalibration_Stat153: 0.0008329162622977175 - syst_JES_EtaIntercalibration_Stat154: 1.905206978257218e-05 - syst_JES_EtaIntercalibration_Stat155: 2.8671904728322466e-05 - syst_JES_EtaIntercalibration_Stat156: 0.0005455434027646197 - syst_JES_EtaIntercalibration_Stat157: 0.0008579735660263666 - syst_JES_EtaIntercalibration_Stat158: 0.0002080677766035625 - syst_JES_EtaIntercalibration_Stat159: 4.974240976693706e-06 + syst_JES_EtaIntercalibration_Stat150: 1.69214691e-09 + syst_JES_EtaIntercalibration_Stat151: 2.97546595e-05 + syst_JES_EtaIntercalibration_Stat152: 9.11940265e-04 + syst_JES_EtaIntercalibration_Stat153: 8.32916262e-04 + syst_JES_EtaIntercalibration_Stat154: 1.90520698e-05 + syst_JES_EtaIntercalibration_Stat155: 2.86719047e-05 + syst_JES_EtaIntercalibration_Stat156: 5.45543403e-04 + syst_JES_EtaIntercalibration_Stat157: 8.57973566e-04 + syst_JES_EtaIntercalibration_Stat158: 2.08067777e-04 + syst_JES_EtaIntercalibration_Stat159: 4.97424098e-06 syst_JES_EtaIntercalibration_Stat16: 0.0 syst_JES_EtaIntercalibration_Stat160: 0.0 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 - syst_JES_EtaIntercalibration_Stat164: 6.274354050418258e-06 + syst_JES_EtaIntercalibration_Stat164: 6.27435405e-06 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 - syst_JES_EtaIntercalibration_Stat168: 3.800985497209901e-08 - syst_JES_EtaIntercalibration_Stat169: 0.00011236958796756353 + syst_JES_EtaIntercalibration_Stat168: 3.80098550e-08 + syst_JES_EtaIntercalibration_Stat169: 1.12369588e-04 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 0.002251364475157232 - syst_JES_EtaIntercalibration_Stat171: 0.0017868941630661845 - syst_JES_EtaIntercalibration_Stat172: 0.0001846443337879611 - syst_JES_EtaIntercalibration_Stat173: 0.00014367358880731676 - syst_JES_EtaIntercalibration_Stat174: 0.00162916816811525 - syst_JES_EtaIntercalibration_Stat175: 0.0019456121787242184 - syst_JES_EtaIntercalibration_Stat176: 0.0001927499416342324 - syst_JES_EtaIntercalibration_Stat177: 2.2712760466310565e-05 + syst_JES_EtaIntercalibration_Stat170: 2.25136448e-03 + syst_JES_EtaIntercalibration_Stat171: 1.78689416e-03 + syst_JES_EtaIntercalibration_Stat172: 1.84644334e-04 + syst_JES_EtaIntercalibration_Stat173: 1.43673589e-04 + syst_JES_EtaIntercalibration_Stat174: 1.62916817e-03 + syst_JES_EtaIntercalibration_Stat175: 1.94561218e-03 + syst_JES_EtaIntercalibration_Stat176: 1.92749942e-04 + syst_JES_EtaIntercalibration_Stat177: 2.27127605e-05 syst_JES_EtaIntercalibration_Stat178: 0.0 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 @@ -16960,17 +16960,17 @@ bins: syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 syst_JES_EtaIntercalibration_Stat184: 0.0 - syst_JES_EtaIntercalibration_Stat185: 7.261623010732519e-06 - syst_JES_EtaIntercalibration_Stat186: 0.0006008929688388773 - syst_JES_EtaIntercalibration_Stat187: 0.008806500709703033 - syst_JES_EtaIntercalibration_Stat188: 0.007285128876691201 - syst_JES_EtaIntercalibration_Stat189: 0.0005144613177878391 + syst_JES_EtaIntercalibration_Stat185: 7.26162301e-06 + syst_JES_EtaIntercalibration_Stat186: 6.00892969e-04 + syst_JES_EtaIntercalibration_Stat187: 8.80650071e-03 + syst_JES_EtaIntercalibration_Stat188: 7.28512888e-03 + syst_JES_EtaIntercalibration_Stat189: 5.14461318e-04 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 0.0004467003805684522 - syst_JES_EtaIntercalibration_Stat191: 0.005704968426731212 - syst_JES_EtaIntercalibration_Stat192: 0.00861490295940703 - syst_JES_EtaIntercalibration_Stat193: 0.0007863353673846803 - syst_JES_EtaIntercalibration_Stat194: 8.927855887613779e-06 + syst_JES_EtaIntercalibration_Stat190: 4.46700381e-04 + syst_JES_EtaIntercalibration_Stat191: 5.70496843e-03 + syst_JES_EtaIntercalibration_Stat192: 8.61490296e-03 + syst_JES_EtaIntercalibration_Stat193: 7.86335367e-04 + syst_JES_EtaIntercalibration_Stat194: 8.92785589e-06 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 syst_JES_EtaIntercalibration_Stat197: 0.0 @@ -16978,70 +16978,70 @@ bins: syst_JES_EtaIntercalibration_Stat199: 0.0 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 1.0349869600627826e-05 - syst_JES_EtaIntercalibration_Stat201: 0.00033792547625179135 - syst_JES_EtaIntercalibration_Stat202: 0.007696012993752025 - syst_JES_EtaIntercalibration_Stat203: 0.006737340424826402 - syst_JES_EtaIntercalibration_Stat204: 0.0006029138661533669 - syst_JES_EtaIntercalibration_Stat205: 0.00034090223994570645 - syst_JES_EtaIntercalibration_Stat206: 0.00633241855454928 - syst_JES_EtaIntercalibration_Stat207: 0.007096692380961712 - syst_JES_EtaIntercalibration_Stat208: 0.0008161165281379858 - syst_JES_EtaIntercalibration_Stat209: 1.0225043422890682e-06 + syst_JES_EtaIntercalibration_Stat200: 1.03498696e-05 + syst_JES_EtaIntercalibration_Stat201: 3.37925476e-04 + syst_JES_EtaIntercalibration_Stat202: 7.69601299e-03 + syst_JES_EtaIntercalibration_Stat203: 6.73734042e-03 + syst_JES_EtaIntercalibration_Stat204: 6.02913866e-04 + syst_JES_EtaIntercalibration_Stat205: 3.40902240e-04 + syst_JES_EtaIntercalibration_Stat206: 6.33241855e-03 + syst_JES_EtaIntercalibration_Stat207: 7.09669238e-03 + syst_JES_EtaIntercalibration_Stat208: 8.16116528e-04 + syst_JES_EtaIntercalibration_Stat209: 1.02250434e-06 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 syst_JES_EtaIntercalibration_Stat211: 0.0 syst_JES_EtaIntercalibration_Stat212: 0.0 - syst_JES_EtaIntercalibration_Stat213: 1.8593565419251897e-06 - syst_JES_EtaIntercalibration_Stat214: 8.219277507786193e-05 - syst_JES_EtaIntercalibration_Stat215: 0.0009935744259993813 - syst_JES_EtaIntercalibration_Stat216: 0.0016022925076277427 - syst_JES_EtaIntercalibration_Stat217: 0.00010989740852267628 - syst_JES_EtaIntercalibration_Stat218: 8.767897923675891e-05 - syst_JES_EtaIntercalibration_Stat219: 0.00063740563811438 + syst_JES_EtaIntercalibration_Stat213: 1.85935654e-06 + syst_JES_EtaIntercalibration_Stat214: 8.21927751e-05 + syst_JES_EtaIntercalibration_Stat215: 9.93574426e-04 + syst_JES_EtaIntercalibration_Stat216: 1.60229251e-03 + syst_JES_EtaIntercalibration_Stat217: 1.09897409e-04 + syst_JES_EtaIntercalibration_Stat218: 8.76789792e-05 + syst_JES_EtaIntercalibration_Stat219: 6.37405638e-04 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 0.0011343091642052442 - syst_JES_EtaIntercalibration_Stat221: 0.00011293256605160444 - syst_JES_EtaIntercalibration_Stat222: 6.249533780011114e-06 + syst_JES_EtaIntercalibration_Stat220: 1.13430916e-03 + syst_JES_EtaIntercalibration_Stat221: 1.12932566e-04 + syst_JES_EtaIntercalibration_Stat222: 6.24953378e-06 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 - syst_JES_EtaIntercalibration_Stat225: 5.4576920946480856e-08 - syst_JES_EtaIntercalibration_Stat226: 9.432205362480186e-05 - syst_JES_EtaIntercalibration_Stat227: 0.0006449161883531843 - syst_JES_EtaIntercalibration_Stat228: 0.0005771854532990242 - syst_JES_EtaIntercalibration_Stat229: 7.070231539303758e-05 + syst_JES_EtaIntercalibration_Stat225: 5.45769209e-08 + syst_JES_EtaIntercalibration_Stat226: 9.43220536e-05 + syst_JES_EtaIntercalibration_Stat227: 6.44916188e-04 + syst_JES_EtaIntercalibration_Stat228: 5.77185453e-04 + syst_JES_EtaIntercalibration_Stat229: 7.07023154e-05 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 2.4076048014572493e-05 - syst_JES_EtaIntercalibration_Stat231: 0.0008771393104860824 - syst_JES_EtaIntercalibration_Stat232: 0.0006237968098668027 - syst_JES_EtaIntercalibration_Stat233: 4.543927238633998e-05 - syst_JES_EtaIntercalibration_Stat234: 6.039888412598614e-06 + syst_JES_EtaIntercalibration_Stat230: 2.40760480e-05 + syst_JES_EtaIntercalibration_Stat231: 8.77139310e-04 + syst_JES_EtaIntercalibration_Stat232: 6.23796810e-04 + syst_JES_EtaIntercalibration_Stat233: 4.54392724e-05 + syst_JES_EtaIntercalibration_Stat234: 6.03988841e-06 syst_JES_EtaIntercalibration_Stat235: 0.0 - syst_JES_EtaIntercalibration_Stat236: 7.058107040843176e-34 - syst_JES_EtaIntercalibration_Stat237: 2.7803986674576006e-07 - syst_JES_EtaIntercalibration_Stat238: 8.22403190351302e-06 - syst_JES_EtaIntercalibration_Stat239: 4.004929396381415e-06 + syst_JES_EtaIntercalibration_Stat236: 7.05810704e-34 + syst_JES_EtaIntercalibration_Stat237: 2.78039867e-07 + syst_JES_EtaIntercalibration_Stat238: 8.22403190e-06 + syst_JES_EtaIntercalibration_Stat239: 4.00492940e-06 syst_JES_EtaIntercalibration_Stat24: 0.0 - syst_JES_EtaIntercalibration_Stat240: 6.929934157127171e-34 - syst_JES_EtaIntercalibration_Stat241: 4.5258487601774767e-07 - syst_JES_EtaIntercalibration_Stat242: 3.405829524506475e-06 - syst_JES_EtaIntercalibration_Stat243: 1.1958473428912238e-05 - syst_JES_EtaIntercalibration_Stat244: 7.743999160640451e-11 - syst_JES_EtaIntercalibration_Stat245: 1.9771359968398735e-09 + syst_JES_EtaIntercalibration_Stat240: 6.92993416e-34 + syst_JES_EtaIntercalibration_Stat241: 4.52584876e-07 + syst_JES_EtaIntercalibration_Stat242: 3.40582952e-06 + syst_JES_EtaIntercalibration_Stat243: 1.19584734e-05 + syst_JES_EtaIntercalibration_Stat244: 7.74399916e-11 + syst_JES_EtaIntercalibration_Stat245: 1.97713600e-09 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 syst_JES_EtaIntercalibration_Stat27: 0.0 - syst_JES_EtaIntercalibration_Stat28: 7.970897816431975e-15 - syst_JES_EtaIntercalibration_Stat29: 1.5611252386259726e-11 + syst_JES_EtaIntercalibration_Stat28: 7.97089782e-15 + syst_JES_EtaIntercalibration_Stat29: 1.56112524e-11 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 6.781145911274878e-10 - syst_JES_EtaIntercalibration_Stat31: 3.005559307350298e-10 - syst_JES_EtaIntercalibration_Stat32: 7.977003243699979e-14 - syst_JES_EtaIntercalibration_Stat33: 4.298900002326176e-12 - syst_JES_EtaIntercalibration_Stat34: 1.3768532220926817e-05 - syst_JES_EtaIntercalibration_Stat35: 4.531951683077653e-06 - syst_JES_EtaIntercalibration_Stat36: 1.492472836226844e-10 - syst_JES_EtaIntercalibration_Stat37: 5.8179586626238585e-15 + syst_JES_EtaIntercalibration_Stat30: 6.78114591e-10 + syst_JES_EtaIntercalibration_Stat31: 3.00555931e-10 + syst_JES_EtaIntercalibration_Stat32: 7.97700324e-14 + syst_JES_EtaIntercalibration_Stat33: 4.29890000e-12 + syst_JES_EtaIntercalibration_Stat34: 1.37685322e-05 + syst_JES_EtaIntercalibration_Stat35: 4.53195168e-06 + syst_JES_EtaIntercalibration_Stat36: 1.49247284e-10 + syst_JES_EtaIntercalibration_Stat37: 5.81795866e-15 syst_JES_EtaIntercalibration_Stat38: 0.0 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 @@ -17056,20 +17056,20 @@ bins: syst_JES_EtaIntercalibration_Stat48: 0.0 syst_JES_EtaIntercalibration_Stat49: 0.0 syst_JES_EtaIntercalibration_Stat5: 0.0 - syst_JES_EtaIntercalibration_Stat50: 8.073954839482321e-15 - syst_JES_EtaIntercalibration_Stat51: 4.171821065194431e-11 - syst_JES_EtaIntercalibration_Stat52: 2.2676827307848863e-08 - syst_JES_EtaIntercalibration_Stat53: 5.293238377401872e-09 - syst_JES_EtaIntercalibration_Stat54: 1.5318898157178274e-11 - syst_JES_EtaIntercalibration_Stat55: 1.8331035467945478e-08 - syst_JES_EtaIntercalibration_Stat56: 1.3769560035832374e-05 - syst_JES_EtaIntercalibration_Stat57: 1.8827312836217527e-05 - syst_JES_EtaIntercalibration_Stat58: 2.1899931934825733e-10 - syst_JES_EtaIntercalibration_Stat59: 2.799506176096063e-14 + syst_JES_EtaIntercalibration_Stat50: 8.07395484e-15 + syst_JES_EtaIntercalibration_Stat51: 4.17182107e-11 + syst_JES_EtaIntercalibration_Stat52: 2.26768273e-08 + syst_JES_EtaIntercalibration_Stat53: 5.29323838e-09 + syst_JES_EtaIntercalibration_Stat54: 1.53188982e-11 + syst_JES_EtaIntercalibration_Stat55: 1.83310355e-08 + syst_JES_EtaIntercalibration_Stat56: 1.37695600e-05 + syst_JES_EtaIntercalibration_Stat57: 1.88273128e-05 + syst_JES_EtaIntercalibration_Stat58: 2.18999319e-10 + syst_JES_EtaIntercalibration_Stat59: 2.79950618e-14 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 3.922229053739723e-13 - syst_JES_EtaIntercalibration_Stat62: 3.922229053739723e-13 + syst_JES_EtaIntercalibration_Stat61: 3.92222905e-13 + syst_JES_EtaIntercalibration_Stat62: 3.92222905e-13 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 @@ -17077,218 +17077,218 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 7.970897816431975e-15 + syst_JES_EtaIntercalibration_Stat7: 7.97089782e-15 syst_JES_EtaIntercalibration_Stat70: 0.0 syst_JES_EtaIntercalibration_Stat71: 0.0 - syst_JES_EtaIntercalibration_Stat72: 1.346669502884802e-12 - syst_JES_EtaIntercalibration_Stat73: 9.361093096577985e-08 - syst_JES_EtaIntercalibration_Stat74: 0.00010384344836700097 - syst_JES_EtaIntercalibration_Stat75: 8.001147122756838e-05 - syst_JES_EtaIntercalibration_Stat76: 3.002588488288064e-09 - syst_JES_EtaIntercalibration_Stat77: 1.602070621664351e-08 - syst_JES_EtaIntercalibration_Stat78: 1.304497615942628e-05 - syst_JES_EtaIntercalibration_Stat79: 6.900425873089284e-05 - syst_JES_EtaIntercalibration_Stat8: 8.139998817567482e-12 - syst_JES_EtaIntercalibration_Stat80: 2.2977172894028438e-09 - syst_JES_EtaIntercalibration_Stat81: 8.692296977784411e-14 - syst_JES_EtaIntercalibration_Stat82: 3.922229053739723e-13 - syst_JES_EtaIntercalibration_Stat83: 3.922229053739723e-13 - syst_JES_EtaIntercalibration_Stat84: 3.922229053739723e-13 + syst_JES_EtaIntercalibration_Stat72: 1.34666950e-12 + syst_JES_EtaIntercalibration_Stat73: 9.36109310e-08 + syst_JES_EtaIntercalibration_Stat74: 1.03843448e-04 + syst_JES_EtaIntercalibration_Stat75: 8.00114712e-05 + syst_JES_EtaIntercalibration_Stat76: 3.00258849e-09 + syst_JES_EtaIntercalibration_Stat77: 1.60207062e-08 + syst_JES_EtaIntercalibration_Stat78: 1.30449762e-05 + syst_JES_EtaIntercalibration_Stat79: 6.90042587e-05 + syst_JES_EtaIntercalibration_Stat8: 8.13999882e-12 + syst_JES_EtaIntercalibration_Stat80: 2.29771729e-09 + syst_JES_EtaIntercalibration_Stat81: 8.69229698e-14 + syst_JES_EtaIntercalibration_Stat82: 3.92222905e-13 + syst_JES_EtaIntercalibration_Stat83: 3.92222905e-13 + syst_JES_EtaIntercalibration_Stat84: 3.92222905e-13 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 syst_JES_EtaIntercalibration_Stat89: 0.0 - syst_JES_EtaIntercalibration_Stat9: 2.2619871811086813e-12 + syst_JES_EtaIntercalibration_Stat9: 2.26198718e-12 syst_JES_EtaIntercalibration_Stat90: 0.0 syst_JES_EtaIntercalibration_Stat91: 0.0 syst_JES_EtaIntercalibration_Stat92: 0.0 - syst_JES_EtaIntercalibration_Stat93: 1.2418804290268849e-12 - syst_JES_EtaIntercalibration_Stat94: 1.257941697009444e-07 - syst_JES_EtaIntercalibration_Stat95: 0.00010760336364166317 - syst_JES_EtaIntercalibration_Stat96: 8.184707763109199e-05 - syst_JES_EtaIntercalibration_Stat97: 4.314635856022499e-08 - syst_JES_EtaIntercalibration_Stat98: 7.923439452030917e-09 - syst_JES_EtaIntercalibration_Stat99: 2.7719026295128045e-05 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.022853680228794665 - syst_JES_Flavour_Comp: 0.06953544042429012 - syst_JES_Flavour_Response: 0.0766515283604965 - syst_JES_Gjet_Generator: 0.1498112812841543 - syst_JES_Gjet_OOC: 0.11238670161544914 - syst_JES_Gjet_Purity: 0.038661480064141364 - syst_JES_Gjet_Stat1: 4.201526240546403e-05 - syst_JES_Gjet_Stat10: 0.004535229431903087 - syst_JES_Gjet_Stat11: 0.007549236832289739 - syst_JES_Gjet_Stat12: 0.021210075435980892 - syst_JES_Gjet_Stat13: 0.025446608811391748 - syst_JES_Gjet_Stat14: 0.0018097193152530587 - syst_JES_Gjet_Stat15: 0.004751553930031732 - syst_JES_Gjet_Stat2: 7.789727273788217e-12 - syst_JES_Gjet_Stat3: 0.00018662229816061637 - syst_JES_Gjet_Stat4: 0.0003510971177252812 - syst_JES_Gjet_Stat5: 0.0003143138240676029 - syst_JES_Gjet_Stat6: 0.001089981155800411 - syst_JES_Gjet_Stat7: 0.0015065224218377901 - syst_JES_Gjet_Stat8: 0.0010346626732901888 - syst_JES_Gjet_Stat9: 0.002274941043192109 - syst_JES_Gjet_Veto: 0.0728224223711351 - syst_JES_Gjet_dPhi: 0.008078491319547233 - syst_JES_LArESZee: 0.2159445067604175 - syst_JES_LArEsmear: 0.015698824000542205 - syst_JES_LAr_JVT: 0.02155960284884673 - syst_JES_MJB_Alpha: 0.0014089519322886782 - syst_JES_MJB_Asym: 0.006130567836668966 - syst_JES_MJB_Beta: 0.0007357064767962832 - syst_JES_MJB_Fragmentation: 0.023563787365362132 - syst_JES_MJB_Stat1: 0.00041680232805851744 - syst_JES_MJB_Stat10: 0.00012853157751599413 - syst_JES_MJB_Stat11: 4.85223782599328e-05 - syst_JES_MJB_Stat12: 7.439577054510559e-06 - syst_JES_MJB_Stat13: 4.66532691491979e-06 - syst_JES_MJB_Stat14: 7.572766205291169e-08 - syst_JES_MJB_Stat15: 2.4493015330906076e-07 - syst_JES_MJB_Stat16: 7.533260614103299e-10 - syst_JES_MJB_Stat2: 0.0002990467521977124 - syst_JES_MJB_Stat3: 0.001990875937872574 - syst_JES_MJB_Stat4: 0.000728475620731401 - syst_JES_MJB_Stat5: 0.0005571538476937945 - syst_JES_MJB_Stat6: 0.00020075600969024564 - syst_JES_MJB_Stat7: 0.0001562063979763633 - syst_JES_MJB_Stat8: 1.933369980112446e-06 - syst_JES_MJB_Stat9: 2.1163194465864554e-11 - syst_JES_MJB_Threshold: 0.009636122508561211 - syst_JES_Pileup_MuOffset: 0.01834120156914481 - syst_JES_Pileup_NPVOffset: 0.020112630360049875 - syst_JES_Pileup_Pt_term: 0.02278329212383496 - syst_JES_Pileup_Rho_topology: 0.048467393936542535 - syst_JES_PunchThrough_MC15: 0.0014604721864862745 + syst_JES_EtaIntercalibration_Stat93: 1.24188043e-12 + syst_JES_EtaIntercalibration_Stat94: 1.25794170e-07 + syst_JES_EtaIntercalibration_Stat95: 1.07603364e-04 + syst_JES_EtaIntercalibration_Stat96: 8.18470776e-05 + syst_JES_EtaIntercalibration_Stat97: 4.31463586e-08 + syst_JES_EtaIntercalibration_Stat98: 7.92343945e-09 + syst_JES_EtaIntercalibration_Stat99: 2.77190263e-05 + syst_JES_EtaIntercalibration_TotalStat_MJB: 2.28536802e-02 + syst_JES_Flavour_Comp: 6.95354404e-02 + syst_JES_Flavour_Response: 7.66515284e-02 + syst_JES_Gjet_Generator: 1.49811281e-01 + syst_JES_Gjet_OOC: 1.12386702e-01 + syst_JES_Gjet_Purity: 3.86614801e-02 + syst_JES_Gjet_Stat1: 4.20152624e-05 + syst_JES_Gjet_Stat10: 4.53522943e-03 + syst_JES_Gjet_Stat11: 7.54923683e-03 + syst_JES_Gjet_Stat12: 2.12100754e-02 + syst_JES_Gjet_Stat13: 2.54466088e-02 + syst_JES_Gjet_Stat14: 1.80971932e-03 + syst_JES_Gjet_Stat15: 4.75155393e-03 + syst_JES_Gjet_Stat2: 7.78972727e-12 + syst_JES_Gjet_Stat3: 1.86622298e-04 + syst_JES_Gjet_Stat4: 3.51097118e-04 + syst_JES_Gjet_Stat5: 3.14313824e-04 + syst_JES_Gjet_Stat6: 1.08998116e-03 + syst_JES_Gjet_Stat7: 1.50652242e-03 + syst_JES_Gjet_Stat8: 1.03466267e-03 + syst_JES_Gjet_Stat9: 2.27494104e-03 + syst_JES_Gjet_Veto: 7.28224224e-02 + syst_JES_Gjet_dPhi: 8.07849132e-03 + syst_JES_LArESZee: 2.15944507e-01 + syst_JES_LArEsmear: 1.56988240e-02 + syst_JES_LAr_JVT: 2.15596028e-02 + syst_JES_MJB_Alpha: 1.40895193e-03 + syst_JES_MJB_Asym: 6.13056784e-03 + syst_JES_MJB_Beta: 7.35706477e-04 + syst_JES_MJB_Fragmentation: 2.35637874e-02 + syst_JES_MJB_Stat1: 4.16802328e-04 + syst_JES_MJB_Stat10: 1.28531578e-04 + syst_JES_MJB_Stat11: 4.85223783e-05 + syst_JES_MJB_Stat12: 7.43957705e-06 + syst_JES_MJB_Stat13: 4.66532691e-06 + syst_JES_MJB_Stat14: 7.57276621e-08 + syst_JES_MJB_Stat15: 2.44930153e-07 + syst_JES_MJB_Stat16: 7.53326061e-10 + syst_JES_MJB_Stat2: 2.99046752e-04 + syst_JES_MJB_Stat3: 1.99087594e-03 + syst_JES_MJB_Stat4: 7.28475621e-04 + syst_JES_MJB_Stat5: 5.57153848e-04 + syst_JES_MJB_Stat6: 2.00756010e-04 + syst_JES_MJB_Stat7: 1.56206398e-04 + syst_JES_MJB_Stat8: 1.93336998e-06 + syst_JES_MJB_Stat9: 2.11631945e-11 + syst_JES_MJB_Threshold: 9.63612251e-03 + syst_JES_Pileup_MuOffset: 1.83412016e-02 + syst_JES_Pileup_NPVOffset: 2.01126304e-02 + syst_JES_Pileup_Pt_term: 2.27832921e-02 + syst_JES_Pileup_Rho_topology: 4.84673939e-02 + syst_JES_PunchThrough_MC15: 1.46047219e-03 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.11862538545775099 - syst_JES_Zjet_MuScale: 0.0073574541113077966 - syst_JES_Zjet_MuSmearID: 0.0013989807218114194 - syst_JES_Zjet_MuSmearMS: 0.030730574351938166 - syst_JES_Zjet_OOC: 0.047813973637421105 - syst_JES_Zjet_Stat1: 0.001388070851037511 - syst_JES_Zjet_Stat10: 0.004818183993996078 - syst_JES_Zjet_Stat11: 0.00377887381470988 - syst_JES_Zjet_Stat12: 0.031705429740030336 - syst_JES_Zjet_Stat13: 0.03002120750402955 - syst_JES_Zjet_Stat2: 0.00012071969712934174 - syst_JES_Zjet_Stat3: 0.00046521909319695813 - syst_JES_Zjet_Stat4: 0.0003647632485599392 - syst_JES_Zjet_Stat5: 0.0008728788919432065 - syst_JES_Zjet_Stat6: 0.0011404146745811366 - syst_JES_Zjet_Stat7: 0.0006946420229154007 - syst_JES_Zjet_Stat8: 0.0010986047196330443 - syst_JES_Zjet_Stat9: 0.0019340907424420393 - syst_JES_Zjet_Veto: 0.009344876604321749 - syst_JES_Zjet_dPhi: 0.008171978524200854 + syst_JES_Zjet_MC: 1.18625385e-01 + syst_JES_Zjet_MuScale: 7.35745411e-03 + syst_JES_Zjet_MuSmearID: 1.39898072e-03 + syst_JES_Zjet_MuSmearMS: 3.07305744e-02 + syst_JES_Zjet_OOC: 4.78139736e-02 + syst_JES_Zjet_Stat1: 1.38807085e-03 + syst_JES_Zjet_Stat10: 4.81818399e-03 + syst_JES_Zjet_Stat11: 3.77887381e-03 + syst_JES_Zjet_Stat12: 3.17054297e-02 + syst_JES_Zjet_Stat13: 3.00212075e-02 + syst_JES_Zjet_Stat2: 1.20719697e-04 + syst_JES_Zjet_Stat3: 4.65219093e-04 + syst_JES_Zjet_Stat4: 3.64763249e-04 + syst_JES_Zjet_Stat5: 8.72878892e-04 + syst_JES_Zjet_Stat6: 1.14041467e-03 + syst_JES_Zjet_Stat7: 6.94642023e-04 + syst_JES_Zjet_Stat8: 1.09860472e-03 + syst_JES_Zjet_Stat9: 1.93409074e-03 + syst_JES_Zjet_Veto: 9.34487660e-03 + syst_JES_Zjet_dPhi: 8.17197852e-03 syst_PRW: 0.006144 syst_Unfolding_bias: 0.006386 - syst_cleaning: 0.04307610358423798 + syst_cleaning: 4.30761036e-02 syst_lumi: 0.167 - stat: 0.021459 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.01893256123719134 - syst_JER_NP1: 0.0011155600656172666 - syst_JER_NP2: 0.0028845070202722684 - syst_JER_NP3: 0.004588586056728151 - syst_JER_NP4: 0.001735127877131827 - syst_JER_NP5: 0.0013301267345632896 - syst_JER_NP6: 0.0002018705083864012 - syst_JER_NP7: 0.0027081223661422687 - syst_JER_NP8: 0.0037531507763477875 - syst_JES_EtaIntercalibration_Modelling: 0.05572287142637214 - syst_JES_EtaIntercalibration_NonClosure: 2.912443432927067e-07 + syst_JER_NP0: 1.89325612e-02 + syst_JER_NP1: 1.11556007e-03 + syst_JER_NP2: 2.88450702e-03 + syst_JER_NP3: 4.58858606e-03 + syst_JER_NP4: 1.73512788e-03 + syst_JER_NP5: 1.33012673e-03 + syst_JER_NP6: 2.01870508e-04 + syst_JER_NP7: 2.70812237e-03 + syst_JER_NP8: 3.75315078e-03 + syst_JES_EtaIntercalibration_Modelling: 5.57228714e-02 + syst_JES_EtaIntercalibration_NonClosure: 2.91244343e-07 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 6.330601393232717e-06 - syst_JES_EtaIntercalibration_Stat101: 3.2078062038097e-10 - syst_JES_EtaIntercalibration_Stat102: 1.1799401568642157e-13 - syst_JES_EtaIntercalibration_Stat103: 6.356626463777779e-14 - syst_JES_EtaIntercalibration_Stat104: 6.356626463777779e-14 - syst_JES_EtaIntercalibration_Stat105: 6.356626463777779e-14 + syst_JES_EtaIntercalibration_Stat100: 6.33060139e-06 + syst_JES_EtaIntercalibration_Stat101: 3.20780620e-10 + syst_JES_EtaIntercalibration_Stat102: 1.17994016e-13 + syst_JES_EtaIntercalibration_Stat103: 6.35662646e-14 + syst_JES_EtaIntercalibration_Stat104: 6.35662646e-14 + syst_JES_EtaIntercalibration_Stat105: 6.35662646e-14 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 7.222651867562219e-09 - syst_JES_EtaIntercalibration_Stat111: 7.222651867562219e-09 + syst_JES_EtaIntercalibration_Stat110: 7.22265187e-09 + syst_JES_EtaIntercalibration_Stat111: 7.22265187e-09 syst_JES_EtaIntercalibration_Stat112: 0.0 - syst_JES_EtaIntercalibration_Stat113: 1.3423493649369937e-11 - syst_JES_EtaIntercalibration_Stat114: 5.194942548286747e-05 - syst_JES_EtaIntercalibration_Stat115: 7.954948334213114e-06 - syst_JES_EtaIntercalibration_Stat116: 1.0949727119887509e-05 - syst_JES_EtaIntercalibration_Stat117: 3.4741676341247555e-06 - syst_JES_EtaIntercalibration_Stat118: 7.943959599595153e-06 - syst_JES_EtaIntercalibration_Stat119: 1.4114582034194284e-05 - syst_JES_EtaIntercalibration_Stat12: 2.414412408912261e-09 - syst_JES_EtaIntercalibration_Stat120: 2.8255818427361113e-05 - syst_JES_EtaIntercalibration_Stat121: 5.044916649460128e-06 - syst_JES_EtaIntercalibration_Stat122: 1.8477450491612746e-11 - syst_JES_EtaIntercalibration_Stat123: 6.356626463777779e-14 - syst_JES_EtaIntercalibration_Stat124: 6.356626463777779e-14 - syst_JES_EtaIntercalibration_Stat125: 6.356626463777779e-14 + syst_JES_EtaIntercalibration_Stat113: 1.34234936e-11 + syst_JES_EtaIntercalibration_Stat114: 5.19494255e-05 + syst_JES_EtaIntercalibration_Stat115: 7.95494833e-06 + syst_JES_EtaIntercalibration_Stat116: 1.09497271e-05 + syst_JES_EtaIntercalibration_Stat117: 3.47416763e-06 + syst_JES_EtaIntercalibration_Stat118: 7.94395960e-06 + syst_JES_EtaIntercalibration_Stat119: 1.41145820e-05 + syst_JES_EtaIntercalibration_Stat12: 2.41441241e-09 + syst_JES_EtaIntercalibration_Stat120: 2.82558184e-05 + syst_JES_EtaIntercalibration_Stat121: 5.04491665e-06 + syst_JES_EtaIntercalibration_Stat122: 1.84774505e-11 + syst_JES_EtaIntercalibration_Stat123: 6.35662646e-14 + syst_JES_EtaIntercalibration_Stat124: 6.35662646e-14 + syst_JES_EtaIntercalibration_Stat125: 6.35662646e-14 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 1.553649574389283e-06 - syst_JES_EtaIntercalibration_Stat129: 1.5512569699118197e-06 - syst_JES_EtaIntercalibration_Stat13: 3.014123527318866e-09 - syst_JES_EtaIntercalibration_Stat130: 7.222651867562219e-09 - syst_JES_EtaIntercalibration_Stat131: 5.823154815046565e-15 - syst_JES_EtaIntercalibration_Stat132: 3.524968051314366e-07 - syst_JES_EtaIntercalibration_Stat133: 4.740580040459184e-06 - syst_JES_EtaIntercalibration_Stat134: 0.0002831165263632627 - syst_JES_EtaIntercalibration_Stat135: 0.00015602557578807394 - syst_JES_EtaIntercalibration_Stat136: 6.12076233058432e-06 - syst_JES_EtaIntercalibration_Stat137: 1.1929334715314178e-05 - syst_JES_EtaIntercalibration_Stat138: 0.0001368329042116698 - syst_JES_EtaIntercalibration_Stat139: 0.0003018785683018919 - syst_JES_EtaIntercalibration_Stat14: 1.0817523318671423e-14 - syst_JES_EtaIntercalibration_Stat140: 1.3499558029802307e-05 - syst_JES_EtaIntercalibration_Stat141: 1.3336791242298127e-06 + syst_JES_EtaIntercalibration_Stat128: 1.55364957e-06 + syst_JES_EtaIntercalibration_Stat129: 1.55125697e-06 + syst_JES_EtaIntercalibration_Stat13: 3.01412353e-09 + syst_JES_EtaIntercalibration_Stat130: 7.22265187e-09 + syst_JES_EtaIntercalibration_Stat131: 5.82315482e-15 + syst_JES_EtaIntercalibration_Stat132: 3.52496805e-07 + syst_JES_EtaIntercalibration_Stat133: 4.74058004e-06 + syst_JES_EtaIntercalibration_Stat134: 2.83116526e-04 + syst_JES_EtaIntercalibration_Stat135: 1.56025576e-04 + syst_JES_EtaIntercalibration_Stat136: 6.12076233e-06 + syst_JES_EtaIntercalibration_Stat137: 1.19293347e-05 + syst_JES_EtaIntercalibration_Stat138: 1.36832904e-04 + syst_JES_EtaIntercalibration_Stat139: 3.01878568e-04 + syst_JES_EtaIntercalibration_Stat14: 1.08175233e-14 + syst_JES_EtaIntercalibration_Stat140: 1.34995580e-05 + syst_JES_EtaIntercalibration_Stat141: 1.33367912e-06 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 6.356626463777779e-14 - syst_JES_EtaIntercalibration_Stat144: 6.356626463777779e-14 + syst_JES_EtaIntercalibration_Stat143: 6.35662646e-14 + syst_JES_EtaIntercalibration_Stat144: 6.35662646e-14 syst_JES_EtaIntercalibration_Stat145: 0.0 - syst_JES_EtaIntercalibration_Stat146: 1.553649574389283e-06 - syst_JES_EtaIntercalibration_Stat147: 1.5512569699118197e-06 + syst_JES_EtaIntercalibration_Stat146: 1.55364957e-06 + syst_JES_EtaIntercalibration_Stat147: 1.55125697e-06 syst_JES_EtaIntercalibration_Stat148: 0.0 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 2.0904764690137033e-10 - syst_JES_EtaIntercalibration_Stat151: 7.372751657285086e-06 - syst_JES_EtaIntercalibration_Stat152: 0.00034736218850070597 - syst_JES_EtaIntercalibration_Stat153: 0.000338953636210028 - syst_JES_EtaIntercalibration_Stat154: 7.201228228573235e-06 - syst_JES_EtaIntercalibration_Stat155: 1.905830493511949e-05 - syst_JES_EtaIntercalibration_Stat156: 0.00018066591453564228 - syst_JES_EtaIntercalibration_Stat157: 0.00027964787800911344 - syst_JES_EtaIntercalibration_Stat158: 0.00012436757241640603 - syst_JES_EtaIntercalibration_Stat159: 1.3406883179957182e-06 + syst_JES_EtaIntercalibration_Stat150: 2.09047647e-10 + syst_JES_EtaIntercalibration_Stat151: 7.37275166e-06 + syst_JES_EtaIntercalibration_Stat152: 3.47362189e-04 + syst_JES_EtaIntercalibration_Stat153: 3.38953636e-04 + syst_JES_EtaIntercalibration_Stat154: 7.20122823e-06 + syst_JES_EtaIntercalibration_Stat155: 1.90583049e-05 + syst_JES_EtaIntercalibration_Stat156: 1.80665915e-04 + syst_JES_EtaIntercalibration_Stat157: 2.79647878e-04 + syst_JES_EtaIntercalibration_Stat158: 1.24367572e-04 + syst_JES_EtaIntercalibration_Stat159: 1.34068832e-06 syst_JES_EtaIntercalibration_Stat16: 0.0 syst_JES_EtaIntercalibration_Stat160: 0.0 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 - syst_JES_EtaIntercalibration_Stat164: 1.553649574389283e-06 + syst_JES_EtaIntercalibration_Stat164: 1.55364957e-06 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 - syst_JES_EtaIntercalibration_Stat168: 9.29331860801081e-09 - syst_JES_EtaIntercalibration_Stat169: 4.638840156763326e-05 + syst_JES_EtaIntercalibration_Stat168: 9.29331861e-09 + syst_JES_EtaIntercalibration_Stat169: 4.63884016e-05 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 0.0008998159520146328 - syst_JES_EtaIntercalibration_Stat171: 0.0006976348113447321 - syst_JES_EtaIntercalibration_Stat172: 0.00010647581603350123 - syst_JES_EtaIntercalibration_Stat173: 4.7378770565773644e-05 - syst_JES_EtaIntercalibration_Stat174: 0.0006227834374804778 - syst_JES_EtaIntercalibration_Stat175: 0.0008149250318280816 - syst_JES_EtaIntercalibration_Stat176: 5.4238225219857634e-05 - syst_JES_EtaIntercalibration_Stat177: 7.079888558444971e-06 + syst_JES_EtaIntercalibration_Stat170: 8.99815952e-04 + syst_JES_EtaIntercalibration_Stat171: 6.97634811e-04 + syst_JES_EtaIntercalibration_Stat172: 1.06475816e-04 + syst_JES_EtaIntercalibration_Stat173: 4.73787706e-05 + syst_JES_EtaIntercalibration_Stat174: 6.22783437e-04 + syst_JES_EtaIntercalibration_Stat175: 8.14925032e-04 + syst_JES_EtaIntercalibration_Stat176: 5.42382252e-05 + syst_JES_EtaIntercalibration_Stat177: 7.07988856e-06 syst_JES_EtaIntercalibration_Stat178: 0.0 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 @@ -17297,17 +17297,17 @@ bins: syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 syst_JES_EtaIntercalibration_Stat184: 0.0 - syst_JES_EtaIntercalibration_Stat185: 2.6942050311733886e-06 - syst_JES_EtaIntercalibration_Stat186: 0.00028768824706616015 - syst_JES_EtaIntercalibration_Stat187: 0.004006003994006996 - syst_JES_EtaIntercalibration_Stat188: 0.003503914204143703 - syst_JES_EtaIntercalibration_Stat189: 0.0002454427173496904 + syst_JES_EtaIntercalibration_Stat185: 2.69420503e-06 + syst_JES_EtaIntercalibration_Stat186: 2.87688247e-04 + syst_JES_EtaIntercalibration_Stat187: 4.00600399e-03 + syst_JES_EtaIntercalibration_Stat188: 3.50391420e-03 + syst_JES_EtaIntercalibration_Stat189: 2.45442717e-04 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 0.00019289014360511012 - syst_JES_EtaIntercalibration_Stat191: 0.0024961652589522193 - syst_JES_EtaIntercalibration_Stat192: 0.004190543491004478 - syst_JES_EtaIntercalibration_Stat193: 0.0002872377543081689 - syst_JES_EtaIntercalibration_Stat194: 3.3424250459060407e-06 + syst_JES_EtaIntercalibration_Stat190: 1.92890144e-04 + syst_JES_EtaIntercalibration_Stat191: 2.49616526e-03 + syst_JES_EtaIntercalibration_Stat192: 4.19054349e-03 + syst_JES_EtaIntercalibration_Stat193: 2.87237754e-04 + syst_JES_EtaIntercalibration_Stat194: 3.34242505e-06 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 syst_JES_EtaIntercalibration_Stat197: 0.0 @@ -17315,70 +17315,70 @@ bins: syst_JES_EtaIntercalibration_Stat199: 0.0 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 5.157181279536332e-06 - syst_JES_EtaIntercalibration_Stat201: 0.00023505137204449583 - syst_JES_EtaIntercalibration_Stat202: 0.00447608936461282 - syst_JES_EtaIntercalibration_Stat203: 0.004150314686864117 - syst_JES_EtaIntercalibration_Stat204: 0.00035879355665897905 - syst_JES_EtaIntercalibration_Stat205: 0.00020152411146063886 - syst_JES_EtaIntercalibration_Stat206: 0.00399229947617911 - syst_JES_EtaIntercalibration_Stat207: 0.0044421190889034025 - syst_JES_EtaIntercalibration_Stat208: 0.0005260838241193128 - syst_JES_EtaIntercalibration_Stat209: 3.041673567495368e-06 + syst_JES_EtaIntercalibration_Stat200: 5.15718128e-06 + syst_JES_EtaIntercalibration_Stat201: 2.35051372e-04 + syst_JES_EtaIntercalibration_Stat202: 4.47608936e-03 + syst_JES_EtaIntercalibration_Stat203: 4.15031469e-03 + syst_JES_EtaIntercalibration_Stat204: 3.58793557e-04 + syst_JES_EtaIntercalibration_Stat205: 2.01524111e-04 + syst_JES_EtaIntercalibration_Stat206: 3.99229948e-03 + syst_JES_EtaIntercalibration_Stat207: 4.44211909e-03 + syst_JES_EtaIntercalibration_Stat208: 5.26083824e-04 + syst_JES_EtaIntercalibration_Stat209: 3.04167357e-06 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 syst_JES_EtaIntercalibration_Stat211: 0.0 syst_JES_EtaIntercalibration_Stat212: 0.0 - syst_JES_EtaIntercalibration_Stat213: 4.802976889388497e-06 - syst_JES_EtaIntercalibration_Stat214: 5.749152350564386e-05 - syst_JES_EtaIntercalibration_Stat215: 0.0010775303464404145 - syst_JES_EtaIntercalibration_Stat216: 0.0014847807270772341 - syst_JES_EtaIntercalibration_Stat217: 9.824003664494432e-05 - syst_JES_EtaIntercalibration_Stat218: 5.779400228397407e-05 - syst_JES_EtaIntercalibration_Stat219: 0.001175390967933649 + syst_JES_EtaIntercalibration_Stat213: 4.80297689e-06 + syst_JES_EtaIntercalibration_Stat214: 5.74915235e-05 + syst_JES_EtaIntercalibration_Stat215: 1.07753035e-03 + syst_JES_EtaIntercalibration_Stat216: 1.48478073e-03 + syst_JES_EtaIntercalibration_Stat217: 9.82400366e-05 + syst_JES_EtaIntercalibration_Stat218: 5.77940023e-05 + syst_JES_EtaIntercalibration_Stat219: 1.17539097e-03 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 0.0013771207136631122 - syst_JES_EtaIntercalibration_Stat221: 9.406529700160417e-05 - syst_JES_EtaIntercalibration_Stat222: 5.423596684857752e-06 + syst_JES_EtaIntercalibration_Stat220: 1.37712071e-03 + syst_JES_EtaIntercalibration_Stat221: 9.40652970e-05 + syst_JES_EtaIntercalibration_Stat222: 5.42359668e-06 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 - syst_JES_EtaIntercalibration_Stat225: 3.7871290899731025e-07 - syst_JES_EtaIntercalibration_Stat226: 5.9423241875549e-05 - syst_JES_EtaIntercalibration_Stat227: 0.0005610034937502618 - syst_JES_EtaIntercalibration_Stat228: 0.000503994503938287 - syst_JES_EtaIntercalibration_Stat229: 5.87081656707288e-05 + syst_JES_EtaIntercalibration_Stat225: 3.78712909e-07 + syst_JES_EtaIntercalibration_Stat226: 5.94232419e-05 + syst_JES_EtaIntercalibration_Stat227: 5.61003494e-04 + syst_JES_EtaIntercalibration_Stat228: 5.03994504e-04 + syst_JES_EtaIntercalibration_Stat229: 5.87081657e-05 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 2.741474238434496e-05 - syst_JES_EtaIntercalibration_Stat231: 0.0005181252647767719 - syst_JES_EtaIntercalibration_Stat232: 0.0005124886998754217 - syst_JES_EtaIntercalibration_Stat233: 8.67112409091232e-05 - syst_JES_EtaIntercalibration_Stat234: 1.100257429840285e-05 + syst_JES_EtaIntercalibration_Stat230: 2.74147424e-05 + syst_JES_EtaIntercalibration_Stat231: 5.18125265e-04 + syst_JES_EtaIntercalibration_Stat232: 5.12488700e-04 + syst_JES_EtaIntercalibration_Stat233: 8.67112409e-05 + syst_JES_EtaIntercalibration_Stat234: 1.10025743e-05 syst_JES_EtaIntercalibration_Stat235: 0.0 - syst_JES_EtaIntercalibration_Stat236: 3.465833665945324e-27 - syst_JES_EtaIntercalibration_Stat237: 2.0484102048906123e-06 - syst_JES_EtaIntercalibration_Stat238: 2.1866558942824083e-05 - syst_JES_EtaIntercalibration_Stat239: 1.3548533010994214e-05 + syst_JES_EtaIntercalibration_Stat236: 3.46583367e-27 + syst_JES_EtaIntercalibration_Stat237: 2.04841020e-06 + syst_JES_EtaIntercalibration_Stat238: 2.18665589e-05 + syst_JES_EtaIntercalibration_Stat239: 1.35485330e-05 syst_JES_EtaIntercalibration_Stat24: 0.0 - syst_JES_EtaIntercalibration_Stat240: 3.403296562922553e-27 - syst_JES_EtaIntercalibration_Stat241: 2.8206447401259163e-06 - syst_JES_EtaIntercalibration_Stat242: 1.8140647039176967e-05 - syst_JES_EtaIntercalibration_Stat243: 2.6082652678552462e-05 - syst_JES_EtaIntercalibration_Stat244: 4.460896854893434e-09 - syst_JES_EtaIntercalibration_Stat245: 3.395772210779162e-08 + syst_JES_EtaIntercalibration_Stat240: 3.40329656e-27 + syst_JES_EtaIntercalibration_Stat241: 2.82064474e-06 + syst_JES_EtaIntercalibration_Stat242: 1.81406470e-05 + syst_JES_EtaIntercalibration_Stat243: 2.60826527e-05 + syst_JES_EtaIntercalibration_Stat244: 4.46089685e-09 + syst_JES_EtaIntercalibration_Stat245: 3.39577221e-08 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 syst_JES_EtaIntercalibration_Stat27: 0.0 - syst_JES_EtaIntercalibration_Stat28: 1.2669951657366337e-15 - syst_JES_EtaIntercalibration_Stat29: 1.9463695205882666e-12 + syst_JES_EtaIntercalibration_Stat28: 1.26699517e-15 + syst_JES_EtaIntercalibration_Stat29: 1.94636952e-12 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 8.354924492028638e-11 - syst_JES_EtaIntercalibration_Stat31: 3.664385078017866e-11 - syst_JES_EtaIntercalibration_Stat32: 1.152204820116632e-14 - syst_JES_EtaIntercalibration_Stat33: 4.4594521196555075e-13 - syst_JES_EtaIntercalibration_Stat34: 8.72009652059831e-06 - syst_JES_EtaIntercalibration_Stat35: 1.267866162204196e-06 - syst_JES_EtaIntercalibration_Stat36: 1.8166653186539342e-11 - syst_JES_EtaIntercalibration_Stat37: 9.248285287014022e-16 + syst_JES_EtaIntercalibration_Stat30: 8.35492449e-11 + syst_JES_EtaIntercalibration_Stat31: 3.66438508e-11 + syst_JES_EtaIntercalibration_Stat32: 1.15220482e-14 + syst_JES_EtaIntercalibration_Stat33: 4.45945212e-13 + syst_JES_EtaIntercalibration_Stat34: 8.72009652e-06 + syst_JES_EtaIntercalibration_Stat35: 1.26786616e-06 + syst_JES_EtaIntercalibration_Stat36: 1.81666532e-11 + syst_JES_EtaIntercalibration_Stat37: 9.24828529e-16 syst_JES_EtaIntercalibration_Stat38: 0.0 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 @@ -17393,20 +17393,20 @@ bins: syst_JES_EtaIntercalibration_Stat48: 0.0 syst_JES_EtaIntercalibration_Stat49: 0.0 syst_JES_EtaIntercalibration_Stat5: 0.0 - syst_JES_EtaIntercalibration_Stat50: 1.283449648408538e-15 - syst_JES_EtaIntercalibration_Stat51: 5.122342310896452e-12 - syst_JES_EtaIntercalibration_Stat52: 6.26243868792342e-09 - syst_JES_EtaIntercalibration_Stat53: 6.796591880310307e-10 - syst_JES_EtaIntercalibration_Stat54: 1.875678277317302e-12 - syst_JES_EtaIntercalibration_Stat55: 2.3932453567615567e-09 - syst_JES_EtaIntercalibration_Stat56: 8.725176235974712e-06 - syst_JES_EtaIntercalibration_Stat57: 1.2652621383440997e-05 - syst_JES_EtaIntercalibration_Stat58: 2.655170651295317e-11 - syst_JES_EtaIntercalibration_Stat59: 4.257527569787423e-15 + syst_JES_EtaIntercalibration_Stat50: 1.28344965e-15 + syst_JES_EtaIntercalibration_Stat51: 5.12234231e-12 + syst_JES_EtaIntercalibration_Stat52: 6.26243869e-09 + syst_JES_EtaIntercalibration_Stat53: 6.79659188e-10 + syst_JES_EtaIntercalibration_Stat54: 1.87567828e-12 + syst_JES_EtaIntercalibration_Stat55: 2.39324536e-09 + syst_JES_EtaIntercalibration_Stat56: 8.72517624e-06 + syst_JES_EtaIntercalibration_Stat57: 1.26526214e-05 + syst_JES_EtaIntercalibration_Stat58: 2.65517065e-11 + syst_JES_EtaIntercalibration_Stat59: 4.25752757e-15 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 6.356626463777779e-14 - syst_JES_EtaIntercalibration_Stat62: 6.356626463777779e-14 + syst_JES_EtaIntercalibration_Stat61: 6.35662646e-14 + syst_JES_EtaIntercalibration_Stat62: 6.35662646e-14 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 @@ -17414,218 +17414,218 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 1.2669951657366337e-15 + syst_JES_EtaIntercalibration_Stat7: 1.26699517e-15 syst_JES_EtaIntercalibration_Stat70: 0.0 syst_JES_EtaIntercalibration_Stat71: 0.0 - syst_JES_EtaIntercalibration_Stat72: 1.686151461168302e-13 - syst_JES_EtaIntercalibration_Stat73: 1.348133840416077e-08 - syst_JES_EtaIntercalibration_Stat74: 7.623712108120296e-05 - syst_JES_EtaIntercalibration_Stat75: 6.662947923710271e-05 - syst_JES_EtaIntercalibration_Stat76: 3.9494326640037805e-10 - syst_JES_EtaIntercalibration_Stat77: 2.098772480969531e-09 - syst_JES_EtaIntercalibration_Stat78: 8.336272610818037e-06 - syst_JES_EtaIntercalibration_Stat79: 4.419244034071325e-05 - syst_JES_EtaIntercalibration_Stat8: 9.929786641715924e-13 - syst_JES_EtaIntercalibration_Stat80: 2.8313502842622633e-10 - syst_JES_EtaIntercalibration_Stat81: 1.283449648408538e-14 - syst_JES_EtaIntercalibration_Stat82: 6.356626463777779e-14 - syst_JES_EtaIntercalibration_Stat83: 6.356626463777779e-14 - syst_JES_EtaIntercalibration_Stat84: 6.356626463777779e-14 + syst_JES_EtaIntercalibration_Stat72: 1.68615146e-13 + syst_JES_EtaIntercalibration_Stat73: 1.34813384e-08 + syst_JES_EtaIntercalibration_Stat74: 7.62371211e-05 + syst_JES_EtaIntercalibration_Stat75: 6.66294792e-05 + syst_JES_EtaIntercalibration_Stat76: 3.94943266e-10 + syst_JES_EtaIntercalibration_Stat77: 2.09877248e-09 + syst_JES_EtaIntercalibration_Stat78: 8.33627261e-06 + syst_JES_EtaIntercalibration_Stat79: 4.41924403e-05 + syst_JES_EtaIntercalibration_Stat8: 9.92978664e-13 + syst_JES_EtaIntercalibration_Stat80: 2.83135028e-10 + syst_JES_EtaIntercalibration_Stat81: 1.28344965e-14 + syst_JES_EtaIntercalibration_Stat82: 6.35662646e-14 + syst_JES_EtaIntercalibration_Stat83: 6.35662646e-14 + syst_JES_EtaIntercalibration_Stat84: 6.35662646e-14 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 syst_JES_EtaIntercalibration_Stat89: 0.0 - syst_JES_EtaIntercalibration_Stat9: 2.918814485369017e-13 + syst_JES_EtaIntercalibration_Stat9: 2.91881449e-13 syst_JES_EtaIntercalibration_Stat90: 0.0 syst_JES_EtaIntercalibration_Stat91: 0.0 syst_JES_EtaIntercalibration_Stat92: 0.0 - syst_JES_EtaIntercalibration_Stat93: 1.5493194473703608e-13 - syst_JES_EtaIntercalibration_Stat94: 1.761442395900303e-08 - syst_JES_EtaIntercalibration_Stat95: 7.711577252417303e-05 - syst_JES_EtaIntercalibration_Stat96: 6.824603540133301e-05 - syst_JES_EtaIntercalibration_Stat97: 6.014161526555468e-09 - syst_JES_EtaIntercalibration_Stat98: 1.0181478183446644e-09 - syst_JES_EtaIntercalibration_Stat99: 1.7902396142136952e-05 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.016886065261036982 - syst_JES_Flavour_Comp: 0.05201372222788906 - syst_JES_Flavour_Response: 0.03934442599339836 - syst_JES_Gjet_Generator: 0.09648955422738775 - syst_JES_Gjet_OOC: 0.07385808080366021 - syst_JES_Gjet_Purity: 0.02434719850414006 - syst_JES_Gjet_Stat1: 2.573929742630906e-05 - syst_JES_Gjet_Stat10: 0.0024595082333669876 - syst_JES_Gjet_Stat11: 0.003901521127393776 - syst_JES_Gjet_Stat12: 0.012375235634120265 - syst_JES_Gjet_Stat13: 0.0200224324196637 - syst_JES_Gjet_Stat14: 0.0035412889274245895 - syst_JES_Gjet_Stat15: 0.005166694978417053 - syst_JES_Gjet_Stat2: 1.6577105620403101e-09 - syst_JES_Gjet_Stat3: 0.00011358558040085898 - syst_JES_Gjet_Stat4: 0.00022212374929304608 - syst_JES_Gjet_Stat5: 0.00019912450878784358 - syst_JES_Gjet_Stat6: 0.0007624606530831606 - syst_JES_Gjet_Stat7: 0.0010120411898732185 - syst_JES_Gjet_Stat8: 0.0006748244660650649 - syst_JES_Gjet_Stat9: 0.001395370749120104 - syst_JES_Gjet_Veto: 0.05312630680745651 - syst_JES_Gjet_dPhi: 0.005610149908870529 - syst_JES_LArESZee: 0.14194562929164112 - syst_JES_LArEsmear: 0.010422716476523767 - syst_JES_LAr_JVT: 0.014141371459303373 - syst_JES_MJB_Alpha: 0.0009236894756897471 - syst_JES_MJB_Asym: 0.003861421597028742 - syst_JES_MJB_Beta: 0.0005628990051510128 - syst_JES_MJB_Fragmentation: 0.016166737456889686 - syst_JES_MJB_Stat1: 0.00016828911759454325 - syst_JES_MJB_Stat10: 0.0001454922860910502 - syst_JES_MJB_Stat11: 9.75367073208851e-05 - syst_JES_MJB_Stat12: 1.3259011565252517e-05 - syst_JES_MJB_Stat13: 3.063521339896297e-06 - syst_JES_MJB_Stat14: 1.4452222389653433e-06 - syst_JES_MJB_Stat15: 9.346301233643178e-07 - syst_JES_MJB_Stat16: 1.411187906517059e-08 - syst_JES_MJB_Stat2: 0.0001894800050137217 - syst_JES_MJB_Stat3: 0.0015287602428111478 - syst_JES_MJB_Stat4: 0.0004947282284244553 - syst_JES_MJB_Stat5: 0.0004926312007983254 - syst_JES_MJB_Stat6: 0.00012306078528515898 - syst_JES_MJB_Stat7: 9.947598039225348e-05 - syst_JES_MJB_Stat8: 1.376031143361225e-05 - syst_JES_MJB_Stat9: 4.507159055325206e-09 - syst_JES_MJB_Threshold: 0.00667043716708283 - syst_JES_Pileup_MuOffset: 0.013380801470764 - syst_JES_Pileup_NPVOffset: 0.014137312359497473 - syst_JES_Pileup_Pt_term: 0.014773655844103043 - syst_JES_Pileup_Rho_topology: 0.03090514641609064 - syst_JES_PunchThrough_MC15: 0.0016074345297709641 + syst_JES_EtaIntercalibration_Stat93: 1.54931945e-13 + syst_JES_EtaIntercalibration_Stat94: 1.76144240e-08 + syst_JES_EtaIntercalibration_Stat95: 7.71157725e-05 + syst_JES_EtaIntercalibration_Stat96: 6.82460354e-05 + syst_JES_EtaIntercalibration_Stat97: 6.01416153e-09 + syst_JES_EtaIntercalibration_Stat98: 1.01814782e-09 + syst_JES_EtaIntercalibration_Stat99: 1.79023961e-05 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.68860653e-02 + syst_JES_Flavour_Comp: 5.20137222e-02 + syst_JES_Flavour_Response: 3.93444260e-02 + syst_JES_Gjet_Generator: 9.64895542e-02 + syst_JES_Gjet_OOC: 7.38580808e-02 + syst_JES_Gjet_Purity: 2.43471985e-02 + syst_JES_Gjet_Stat1: 2.57392974e-05 + syst_JES_Gjet_Stat10: 2.45950823e-03 + syst_JES_Gjet_Stat11: 3.90152113e-03 + syst_JES_Gjet_Stat12: 1.23752356e-02 + syst_JES_Gjet_Stat13: 2.00224324e-02 + syst_JES_Gjet_Stat14: 3.54128893e-03 + syst_JES_Gjet_Stat15: 5.16669498e-03 + syst_JES_Gjet_Stat2: 1.65771056e-09 + syst_JES_Gjet_Stat3: 1.13585580e-04 + syst_JES_Gjet_Stat4: 2.22123749e-04 + syst_JES_Gjet_Stat5: 1.99124509e-04 + syst_JES_Gjet_Stat6: 7.62460653e-04 + syst_JES_Gjet_Stat7: 1.01204119e-03 + syst_JES_Gjet_Stat8: 6.74824466e-04 + syst_JES_Gjet_Stat9: 1.39537075e-03 + syst_JES_Gjet_Veto: 5.31263068e-02 + syst_JES_Gjet_dPhi: 5.61014991e-03 + syst_JES_LArESZee: 1.41945629e-01 + syst_JES_LArEsmear: 1.04227165e-02 + syst_JES_LAr_JVT: 1.41413715e-02 + syst_JES_MJB_Alpha: 9.23689476e-04 + syst_JES_MJB_Asym: 3.86142160e-03 + syst_JES_MJB_Beta: 5.62899005e-04 + syst_JES_MJB_Fragmentation: 1.61667375e-02 + syst_JES_MJB_Stat1: 1.68289118e-04 + syst_JES_MJB_Stat10: 1.45492286e-04 + syst_JES_MJB_Stat11: 9.75367073e-05 + syst_JES_MJB_Stat12: 1.32590116e-05 + syst_JES_MJB_Stat13: 3.06352134e-06 + syst_JES_MJB_Stat14: 1.44522224e-06 + syst_JES_MJB_Stat15: 9.34630123e-07 + syst_JES_MJB_Stat16: 1.41118791e-08 + syst_JES_MJB_Stat2: 1.89480005e-04 + syst_JES_MJB_Stat3: 1.52876024e-03 + syst_JES_MJB_Stat4: 4.94728228e-04 + syst_JES_MJB_Stat5: 4.92631201e-04 + syst_JES_MJB_Stat6: 1.23060785e-04 + syst_JES_MJB_Stat7: 9.94759804e-05 + syst_JES_MJB_Stat8: 1.37603114e-05 + syst_JES_MJB_Stat9: 4.50715906e-09 + syst_JES_MJB_Threshold: 6.67043717e-03 + syst_JES_Pileup_MuOffset: 1.33808015e-02 + syst_JES_Pileup_NPVOffset: 1.41373124e-02 + syst_JES_Pileup_Pt_term: 1.47736558e-02 + syst_JES_Pileup_Rho_topology: 3.09051464e-02 + syst_JES_PunchThrough_MC15: 1.60743453e-03 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.07052294856995132 - syst_JES_Zjet_MuScale: 0.004263677374051653 - syst_JES_Zjet_MuSmearID: 0.000928975321254553 - syst_JES_Zjet_MuSmearMS: 0.01942386869292521 - syst_JES_Zjet_OOC: 0.029433063041416536 - syst_JES_Zjet_Stat1: 0.0010766673894476418 - syst_JES_Zjet_Stat10: 0.0026894133189229205 - syst_JES_Zjet_Stat11: 0.002466014598496935 - syst_JES_Zjet_Stat12: 0.01659439363158534 - syst_JES_Zjet_Stat13: 0.02002966799525144 - syst_JES_Zjet_Stat2: 7.649131192495002e-05 - syst_JES_Zjet_Stat3: 0.00037586584042713963 - syst_JES_Zjet_Stat4: 0.00023119070050501601 - syst_JES_Zjet_Stat5: 0.0005963183797268034 - syst_JES_Zjet_Stat6: 0.0008526251755607502 - syst_JES_Zjet_Stat7: 0.0004428833339605364 - syst_JES_Zjet_Stat8: 0.0007354045332332403 - syst_JES_Zjet_Stat9: 0.0012605497372178537 - syst_JES_Zjet_Veto: 0.005799392446627491 - syst_JES_Zjet_dPhi: 0.005007781245222279 - syst_PRW: 0.0038936 + syst_JES_Zjet_MC: 7.05229486e-02 + syst_JES_Zjet_MuScale: 4.26367737e-03 + syst_JES_Zjet_MuSmearID: 9.28975321e-04 + syst_JES_Zjet_MuSmearMS: 1.94238687e-02 + syst_JES_Zjet_OOC: 2.94330630e-02 + syst_JES_Zjet_Stat1: 1.07666739e-03 + syst_JES_Zjet_Stat10: 2.68941332e-03 + syst_JES_Zjet_Stat11: 2.46601460e-03 + syst_JES_Zjet_Stat12: 1.65943936e-02 + syst_JES_Zjet_Stat13: 2.00296680e-02 + syst_JES_Zjet_Stat2: 7.64913119e-05 + syst_JES_Zjet_Stat3: 3.75865840e-04 + syst_JES_Zjet_Stat4: 2.31190701e-04 + syst_JES_Zjet_Stat5: 5.96318380e-04 + syst_JES_Zjet_Stat6: 8.52625176e-04 + syst_JES_Zjet_Stat7: 4.42883334e-04 + syst_JES_Zjet_Stat8: 7.35404533e-04 + syst_JES_Zjet_Stat9: 1.26054974e-03 + syst_JES_Zjet_Veto: 5.79939245e-03 + syst_JES_Zjet_dPhi: 5.00778125e-03 + syst_PRW: 3.89360000e-03 syst_Unfolding_bias: 0.004047 - syst_cleaning: 0.027366402759588265 + syst_cleaning: 2.73664028e-02 syst_lumi: 0.10582 - stat: 0.012405 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.011443376807131712 - syst_JER_NP1: 0.0008499582622105629 - syst_JER_NP2: 0.0020225385039598135 - syst_JER_NP3: 0.003021774809611067 - syst_JER_NP4: 0.0010584344665589835 - syst_JER_NP5: 0.0007703045160843859 - syst_JER_NP6: 0.000362862520741097 - syst_JER_NP7: 0.0016769325418751944 - syst_JER_NP8: 0.0023838814987326867 - syst_JES_EtaIntercalibration_Modelling: 0.039125029853023754 - syst_JES_EtaIntercalibration_NonClosure: 5.6066484641004553e-08 + syst_JER_NP0: 1.14433768e-02 + syst_JER_NP1: 8.49958262e-04 + syst_JER_NP2: 2.02253850e-03 + syst_JER_NP3: 3.02177481e-03 + syst_JER_NP4: 1.05843447e-03 + syst_JER_NP5: 7.70304516e-04 + syst_JER_NP6: 3.62862521e-04 + syst_JER_NP7: 1.67693254e-03 + syst_JER_NP8: 2.38388150e-03 + syst_JES_EtaIntercalibration_Modelling: 3.91250299e-02 + syst_JES_EtaIntercalibration_NonClosure: 5.60664846e-08 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 5.118408191232407e-06 - syst_JES_EtaIntercalibration_Stat101: 4.0651588213992325e-11 - syst_JES_EtaIntercalibration_Stat102: 1.732801734958446e-14 - syst_JES_EtaIntercalibration_Stat103: 1.1157871302358708e-14 - syst_JES_EtaIntercalibration_Stat104: 1.1157871302358708e-14 - syst_JES_EtaIntercalibration_Stat105: 1.1157871302358708e-14 + syst_JES_EtaIntercalibration_Stat100: 5.11840819e-06 + syst_JES_EtaIntercalibration_Stat101: 4.06515882e-11 + syst_JES_EtaIntercalibration_Stat102: 1.73280173e-14 + syst_JES_EtaIntercalibration_Stat103: 1.11578713e-14 + syst_JES_EtaIntercalibration_Stat104: 1.11578713e-14 + syst_JES_EtaIntercalibration_Stat105: 1.11578713e-14 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 9.34008397981517e-10 - syst_JES_EtaIntercalibration_Stat111: 9.34008397981517e-10 + syst_JES_EtaIntercalibration_Stat110: 9.34008398e-10 + syst_JES_EtaIntercalibration_Stat111: 9.34008398e-10 syst_JES_EtaIntercalibration_Stat112: 0.0 - syst_JES_EtaIntercalibration_Stat113: 1.7603659810586975e-12 - syst_JES_EtaIntercalibration_Stat114: 3.41860538341295e-05 - syst_JES_EtaIntercalibration_Stat115: 4.055117014341263e-06 - syst_JES_EtaIntercalibration_Stat116: 3.4079853883929726e-06 - syst_JES_EtaIntercalibration_Stat117: 7.640894384821713e-07 - syst_JES_EtaIntercalibration_Stat118: 5.144419933002651e-06 - syst_JES_EtaIntercalibration_Stat119: 6.0408127822338605e-06 - syst_JES_EtaIntercalibration_Stat12: 3.128816611846637e-10 - syst_JES_EtaIntercalibration_Stat120: 1.6310564574839215e-05 - syst_JES_EtaIntercalibration_Stat121: 1.5045223491859468e-06 - syst_JES_EtaIntercalibration_Stat122: 2.3666356951746924e-12 - syst_JES_EtaIntercalibration_Stat123: 1.1157871302358708e-14 - syst_JES_EtaIntercalibration_Stat124: 1.1157871302358708e-14 - syst_JES_EtaIntercalibration_Stat125: 1.1157871302358708e-14 + syst_JES_EtaIntercalibration_Stat113: 1.76036598e-12 + syst_JES_EtaIntercalibration_Stat114: 3.41860538e-05 + syst_JES_EtaIntercalibration_Stat115: 4.05511701e-06 + syst_JES_EtaIntercalibration_Stat116: 3.40798539e-06 + syst_JES_EtaIntercalibration_Stat117: 7.64089438e-07 + syst_JES_EtaIntercalibration_Stat118: 5.14441993e-06 + syst_JES_EtaIntercalibration_Stat119: 6.04081278e-06 + syst_JES_EtaIntercalibration_Stat12: 3.12881661e-10 + syst_JES_EtaIntercalibration_Stat120: 1.63105646e-05 + syst_JES_EtaIntercalibration_Stat121: 1.50452235e-06 + syst_JES_EtaIntercalibration_Stat122: 2.36663570e-12 + syst_JES_EtaIntercalibration_Stat123: 1.11578713e-14 + syst_JES_EtaIntercalibration_Stat124: 1.11578713e-14 + syst_JES_EtaIntercalibration_Stat125: 1.11578713e-14 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 3.1557965713904946e-07 - syst_JES_EtaIntercalibration_Stat129: 3.1526955081594467e-07 - syst_JES_EtaIntercalibration_Stat13: 3.8880423357065893e-10 - syst_JES_EtaIntercalibration_Stat130: 9.34008397981517e-10 - syst_JES_EtaIntercalibration_Stat131: 9.248285287014022e-16 - syst_JES_EtaIntercalibration_Stat132: 6.693578276831234e-08 - syst_JES_EtaIntercalibration_Stat133: 3.4199360739639565e-06 - syst_JES_EtaIntercalibration_Stat134: 0.00012032142151337808 - syst_JES_EtaIntercalibration_Stat135: 7.425161749079949e-05 - syst_JES_EtaIntercalibration_Stat136: 5.498151211998448e-06 - syst_JES_EtaIntercalibration_Stat137: 1.2685845773932458e-05 - syst_JES_EtaIntercalibration_Stat138: 6.34923292276319e-05 - syst_JES_EtaIntercalibration_Stat139: 0.00011127397842712375 - syst_JES_EtaIntercalibration_Stat14: 1.7528354172597038e-15 - syst_JES_EtaIntercalibration_Stat140: 7.921923073818629e-06 - syst_JES_EtaIntercalibration_Stat141: 2.843161404459361e-07 + syst_JES_EtaIntercalibration_Stat128: 3.15579657e-07 + syst_JES_EtaIntercalibration_Stat129: 3.15269551e-07 + syst_JES_EtaIntercalibration_Stat13: 3.88804234e-10 + syst_JES_EtaIntercalibration_Stat130: 9.34008398e-10 + syst_JES_EtaIntercalibration_Stat131: 9.24828529e-16 + syst_JES_EtaIntercalibration_Stat132: 6.69357828e-08 + syst_JES_EtaIntercalibration_Stat133: 3.41993607e-06 + syst_JES_EtaIntercalibration_Stat134: 1.20321422e-04 + syst_JES_EtaIntercalibration_Stat135: 7.42516175e-05 + syst_JES_EtaIntercalibration_Stat136: 5.49815121e-06 + syst_JES_EtaIntercalibration_Stat137: 1.26858458e-05 + syst_JES_EtaIntercalibration_Stat138: 6.34923292e-05 + syst_JES_EtaIntercalibration_Stat139: 1.11273978e-04 + syst_JES_EtaIntercalibration_Stat14: 1.75283542e-15 + syst_JES_EtaIntercalibration_Stat140: 7.92192307e-06 + syst_JES_EtaIntercalibration_Stat141: 2.84316140e-07 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 1.1157871302358708e-14 - syst_JES_EtaIntercalibration_Stat144: 1.1157871302358708e-14 + syst_JES_EtaIntercalibration_Stat143: 1.11578713e-14 + syst_JES_EtaIntercalibration_Stat144: 1.11578713e-14 syst_JES_EtaIntercalibration_Stat145: 0.0 - syst_JES_EtaIntercalibration_Stat146: 3.1557965713904946e-07 - syst_JES_EtaIntercalibration_Stat147: 3.1526955081594467e-07 + syst_JES_EtaIntercalibration_Stat146: 3.15579657e-07 + syst_JES_EtaIntercalibration_Stat147: 3.15269551e-07 syst_JES_EtaIntercalibration_Stat148: 0.0 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 2.6497645027435926e-11 - syst_JES_EtaIntercalibration_Stat151: 3.313640282227388e-06 - syst_JES_EtaIntercalibration_Stat152: 0.00013933008316584038 - syst_JES_EtaIntercalibration_Stat153: 0.00014343306827576408 - syst_JES_EtaIntercalibration_Stat154: 5.694207649006137e-06 - syst_JES_EtaIntercalibration_Stat155: 1.4977376272231394e-05 - syst_JES_EtaIntercalibration_Stat156: 6.518757842373038e-05 - syst_JES_EtaIntercalibration_Stat157: 8.27389090754767e-05 - syst_JES_EtaIntercalibration_Stat158: 6.223629387262708e-05 - syst_JES_EtaIntercalibration_Stat159: 2.8545224273933926e-07 + syst_JES_EtaIntercalibration_Stat150: 2.64976450e-11 + syst_JES_EtaIntercalibration_Stat151: 3.31364028e-06 + syst_JES_EtaIntercalibration_Stat152: 1.39330083e-04 + syst_JES_EtaIntercalibration_Stat153: 1.43433068e-04 + syst_JES_EtaIntercalibration_Stat154: 5.69420765e-06 + syst_JES_EtaIntercalibration_Stat155: 1.49773763e-05 + syst_JES_EtaIntercalibration_Stat156: 6.51875784e-05 + syst_JES_EtaIntercalibration_Stat157: 8.27389091e-05 + syst_JES_EtaIntercalibration_Stat158: 6.22362939e-05 + syst_JES_EtaIntercalibration_Stat159: 2.85452243e-07 syst_JES_EtaIntercalibration_Stat16: 0.0 syst_JES_EtaIntercalibration_Stat160: 0.0 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 - syst_JES_EtaIntercalibration_Stat164: 3.1557965713904946e-07 + syst_JES_EtaIntercalibration_Stat164: 3.15579657e-07 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 - syst_JES_EtaIntercalibration_Stat168: 1.6341899369412359e-09 - syst_JES_EtaIntercalibration_Stat169: 5.3807870750290795e-05 + syst_JES_EtaIntercalibration_Stat168: 1.63418994e-09 + syst_JES_EtaIntercalibration_Stat169: 5.38078708e-05 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 0.00038034945444945754 - syst_JES_EtaIntercalibration_Stat171: 0.0002643516218978049 - syst_JES_EtaIntercalibration_Stat172: 6.564353033620297e-05 - syst_JES_EtaIntercalibration_Stat173: 1.2620027940234524e-05 - syst_JES_EtaIntercalibration_Stat174: 0.00024557992319202315 - syst_JES_EtaIntercalibration_Stat175: 0.0003873991352597473 - syst_JES_EtaIntercalibration_Stat176: 1.4487103255999801e-05 - syst_JES_EtaIntercalibration_Stat177: 1.7315950067784326e-06 + syst_JES_EtaIntercalibration_Stat170: 3.80349454e-04 + syst_JES_EtaIntercalibration_Stat171: 2.64351622e-04 + syst_JES_EtaIntercalibration_Stat172: 6.56435303e-05 + syst_JES_EtaIntercalibration_Stat173: 1.26200279e-05 + syst_JES_EtaIntercalibration_Stat174: 2.45579923e-04 + syst_JES_EtaIntercalibration_Stat175: 3.87399135e-04 + syst_JES_EtaIntercalibration_Stat176: 1.44871033e-05 + syst_JES_EtaIntercalibration_Stat177: 1.73159501e-06 syst_JES_EtaIntercalibration_Stat178: 0.0 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 @@ -17634,17 +17634,17 @@ bins: syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 syst_JES_EtaIntercalibration_Stat184: 0.0 - syst_JES_EtaIntercalibration_Stat185: 2.934094068021678e-06 - syst_JES_EtaIntercalibration_Stat186: 0.00014018624326231157 - syst_JES_EtaIntercalibration_Stat187: 0.0017915068378323317 - syst_JES_EtaIntercalibration_Stat188: 0.0015880472285168348 - syst_JES_EtaIntercalibration_Stat189: 0.00010157960868205784 + syst_JES_EtaIntercalibration_Stat185: 2.93409407e-06 + syst_JES_EtaIntercalibration_Stat186: 1.40186243e-04 + syst_JES_EtaIntercalibration_Stat187: 1.79150684e-03 + syst_JES_EtaIntercalibration_Stat188: 1.58804723e-03 + syst_JES_EtaIntercalibration_Stat189: 1.01579609e-04 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 8.11739631901757e-05 - syst_JES_EtaIntercalibration_Stat191: 0.0011483429572649454 - syst_JES_EtaIntercalibration_Stat192: 0.002006610575074297 - syst_JES_EtaIntercalibration_Stat193: 0.00010880025402084317 - syst_JES_EtaIntercalibration_Stat194: 9.909062670101547e-07 + syst_JES_EtaIntercalibration_Stat190: 8.11739632e-05 + syst_JES_EtaIntercalibration_Stat191: 1.14834296e-03 + syst_JES_EtaIntercalibration_Stat192: 2.00661058e-03 + syst_JES_EtaIntercalibration_Stat193: 1.08800254e-04 + syst_JES_EtaIntercalibration_Stat194: 9.90906267e-07 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 syst_JES_EtaIntercalibration_Stat197: 0.0 @@ -17652,70 +17652,70 @@ bins: syst_JES_EtaIntercalibration_Stat199: 0.0 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 1.7935386112375722e-06 - syst_JES_EtaIntercalibration_Stat201: 0.00014723514356294152 - syst_JES_EtaIntercalibration_Stat202: 0.002408026577926415 - syst_JES_EtaIntercalibration_Stat203: 0.002362060752817336 - syst_JES_EtaIntercalibration_Stat204: 0.00019152762202878204 - syst_JES_EtaIntercalibration_Stat205: 0.0001214947038969189 - syst_JES_EtaIntercalibration_Stat206: 0.002397544368723966 - syst_JES_EtaIntercalibration_Stat207: 0.002501776318938206 - syst_JES_EtaIntercalibration_Stat208: 0.0002987464937032735 - syst_JES_EtaIntercalibration_Stat209: 2.667082638952719e-06 + syst_JES_EtaIntercalibration_Stat200: 1.79353861e-06 + syst_JES_EtaIntercalibration_Stat201: 1.47235144e-04 + syst_JES_EtaIntercalibration_Stat202: 2.40802658e-03 + syst_JES_EtaIntercalibration_Stat203: 2.36206075e-03 + syst_JES_EtaIntercalibration_Stat204: 1.91527622e-04 + syst_JES_EtaIntercalibration_Stat205: 1.21494704e-04 + syst_JES_EtaIntercalibration_Stat206: 2.39754437e-03 + syst_JES_EtaIntercalibration_Stat207: 2.50177632e-03 + syst_JES_EtaIntercalibration_Stat208: 2.98746494e-04 + syst_JES_EtaIntercalibration_Stat209: 2.66708264e-06 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 syst_JES_EtaIntercalibration_Stat211: 0.0 syst_JES_EtaIntercalibration_Stat212: 0.0 - syst_JES_EtaIntercalibration_Stat213: 3.292801790269193e-06 - syst_JES_EtaIntercalibration_Stat214: 2.0233134624916623e-05 - syst_JES_EtaIntercalibration_Stat215: 0.0009317015455605942 - syst_JES_EtaIntercalibration_Stat216: 0.0011635298309454728 - syst_JES_EtaIntercalibration_Stat217: 7.746578260754873e-05 - syst_JES_EtaIntercalibration_Stat218: 2.7989851674312244e-05 - syst_JES_EtaIntercalibration_Stat219: 0.0011462193899947775 + syst_JES_EtaIntercalibration_Stat213: 3.29280179e-06 + syst_JES_EtaIntercalibration_Stat214: 2.02331346e-05 + syst_JES_EtaIntercalibration_Stat215: 9.31701546e-04 + syst_JES_EtaIntercalibration_Stat216: 1.16352983e-03 + syst_JES_EtaIntercalibration_Stat217: 7.74657826e-05 + syst_JES_EtaIntercalibration_Stat218: 2.79898517e-05 + syst_JES_EtaIntercalibration_Stat219: 1.14621939e-03 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 0.0011583411705969877 - syst_JES_EtaIntercalibration_Stat221: 4.837744412430239e-05 - syst_JES_EtaIntercalibration_Stat222: 4.072996194449487e-06 + syst_JES_EtaIntercalibration_Stat220: 1.15834117e-03 + syst_JES_EtaIntercalibration_Stat221: 4.83774441e-05 + syst_JES_EtaIntercalibration_Stat222: 4.07299619e-06 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 - syst_JES_EtaIntercalibration_Stat225: 1.107906248023678e-06 - syst_JES_EtaIntercalibration_Stat226: 4.302289579979479e-05 - syst_JES_EtaIntercalibration_Stat227: 0.00026017906814346155 - syst_JES_EtaIntercalibration_Stat228: 0.00019932508622850264 - syst_JES_EtaIntercalibration_Stat229: 1.233769609619539e-05 + syst_JES_EtaIntercalibration_Stat225: 1.10790625e-06 + syst_JES_EtaIntercalibration_Stat226: 4.30228958e-05 + syst_JES_EtaIntercalibration_Stat227: 2.60179068e-04 + syst_JES_EtaIntercalibration_Stat228: 1.99325086e-04 + syst_JES_EtaIntercalibration_Stat229: 1.23376961e-05 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 4.960862500614183e-05 - syst_JES_EtaIntercalibration_Stat231: 0.00021010127956535632 - syst_JES_EtaIntercalibration_Stat232: 0.0002168119634614289 - syst_JES_EtaIntercalibration_Stat233: 8.097790485681881e-05 - syst_JES_EtaIntercalibration_Stat234: 1.2481469067381452e-05 + syst_JES_EtaIntercalibration_Stat230: 4.96086250e-05 + syst_JES_EtaIntercalibration_Stat231: 2.10101280e-04 + syst_JES_EtaIntercalibration_Stat232: 2.16811963e-04 + syst_JES_EtaIntercalibration_Stat233: 8.09779049e-05 + syst_JES_EtaIntercalibration_Stat234: 1.24814691e-05 syst_JES_EtaIntercalibration_Stat235: 0.0 - syst_JES_EtaIntercalibration_Stat236: 6.4111860642162e-22 - syst_JES_EtaIntercalibration_Stat237: 6.633611459830912e-06 - syst_JES_EtaIntercalibration_Stat238: 5.3923502297235854e-05 - syst_JES_EtaIntercalibration_Stat239: 2.537527536796399e-05 + syst_JES_EtaIntercalibration_Stat236: 6.41118606e-22 + syst_JES_EtaIntercalibration_Stat237: 6.63361146e-06 + syst_JES_EtaIntercalibration_Stat238: 5.39235023e-05 + syst_JES_EtaIntercalibration_Stat239: 2.53752754e-05 syst_JES_EtaIntercalibration_Stat24: 0.0 - syst_JES_EtaIntercalibration_Stat240: 6.295797068882095e-22 - syst_JES_EtaIntercalibration_Stat241: 6.3479662097399355e-06 - syst_JES_EtaIntercalibration_Stat242: 4.098163979149688e-05 - syst_JES_EtaIntercalibration_Stat243: 4.107033937953277e-05 - syst_JES_EtaIntercalibration_Stat244: 7.276345442129777e-08 - syst_JES_EtaIntercalibration_Stat245: 1.8403039830419322e-07 + syst_JES_EtaIntercalibration_Stat240: 6.29579707e-22 + syst_JES_EtaIntercalibration_Stat241: 6.34796621e-06 + syst_JES_EtaIntercalibration_Stat242: 4.09816398e-05 + syst_JES_EtaIntercalibration_Stat243: 4.10703394e-05 + syst_JES_EtaIntercalibration_Stat244: 7.27634544e-08 + syst_JES_EtaIntercalibration_Stat245: 1.84030398e-07 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 syst_JES_EtaIntercalibration_Stat27: 0.0 - syst_JES_EtaIntercalibration_Stat28: 2.2100968304578873e-16 - syst_JES_EtaIntercalibration_Stat29: 2.599963785805487e-13 + syst_JES_EtaIntercalibration_Stat28: 2.21009683e-16 + syst_JES_EtaIntercalibration_Stat29: 2.59996379e-13 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 1.059128541537806e-11 - syst_JES_EtaIntercalibration_Stat31: 4.704143147269224e-12 - syst_JES_EtaIntercalibration_Stat32: 1.8227855057576025e-15 - syst_JES_EtaIntercalibration_Stat33: 4.3439609148794146e-14 - syst_JES_EtaIntercalibration_Stat34: 5.598977077514935e-06 - syst_JES_EtaIntercalibration_Stat35: 2.743574870516136e-07 - syst_JES_EtaIntercalibration_Stat36: 2.324216575364697e-12 - syst_JES_EtaIntercalibration_Stat37: 1.6134053272504092e-16 + syst_JES_EtaIntercalibration_Stat30: 1.05912854e-11 + syst_JES_EtaIntercalibration_Stat31: 4.70414315e-12 + syst_JES_EtaIntercalibration_Stat32: 1.82278551e-15 + syst_JES_EtaIntercalibration_Stat33: 4.34396091e-14 + syst_JES_EtaIntercalibration_Stat34: 5.59897708e-06 + syst_JES_EtaIntercalibration_Stat35: 2.74357487e-07 + syst_JES_EtaIntercalibration_Stat36: 2.32421658e-12 + syst_JES_EtaIntercalibration_Stat37: 1.61340533e-16 syst_JES_EtaIntercalibration_Stat38: 0.0 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 @@ -17730,20 +17730,20 @@ bins: syst_JES_EtaIntercalibration_Stat48: 0.0 syst_JES_EtaIntercalibration_Stat49: 0.0 syst_JES_EtaIntercalibration_Stat5: 0.0 - syst_JES_EtaIntercalibration_Stat50: 2.238675668782774e-16 - syst_JES_EtaIntercalibration_Stat51: 6.704598776213234e-13 - syst_JES_EtaIntercalibration_Stat52: 1.1673276350279726e-09 - syst_JES_EtaIntercalibration_Stat53: 8.753976564253528e-11 - syst_JES_EtaIntercalibration_Stat54: 2.4484069821008106e-13 - syst_JES_EtaIntercalibration_Stat55: 3.1018775353122824e-10 - syst_JES_EtaIntercalibration_Stat56: 5.603180559200745e-06 - syst_JES_EtaIntercalibration_Stat57: 8.966825750221911e-06 - syst_JES_EtaIntercalibration_Stat58: 3.3743347355441784e-12 - syst_JES_EtaIntercalibration_Stat59: 7.114373812922679e-16 + syst_JES_EtaIntercalibration_Stat50: 2.23867567e-16 + syst_JES_EtaIntercalibration_Stat51: 6.70459878e-13 + syst_JES_EtaIntercalibration_Stat52: 1.16732764e-09 + syst_JES_EtaIntercalibration_Stat53: 8.75397656e-11 + syst_JES_EtaIntercalibration_Stat54: 2.44840698e-13 + syst_JES_EtaIntercalibration_Stat55: 3.10187754e-10 + syst_JES_EtaIntercalibration_Stat56: 5.60318056e-06 + syst_JES_EtaIntercalibration_Stat57: 8.96682575e-06 + syst_JES_EtaIntercalibration_Stat58: 3.37433474e-12 + syst_JES_EtaIntercalibration_Stat59: 7.11437381e-16 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 1.1157871302358708e-14 - syst_JES_EtaIntercalibration_Stat62: 1.1157871302358708e-14 + syst_JES_EtaIntercalibration_Stat61: 1.11578713e-14 + syst_JES_EtaIntercalibration_Stat62: 1.11578713e-14 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 @@ -17751,218 +17751,218 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 2.2100968304578873e-16 + syst_JES_EtaIntercalibration_Stat7: 2.21009683e-16 syst_JES_EtaIntercalibration_Stat70: 0.0 syst_JES_EtaIntercalibration_Stat71: 0.0 - syst_JES_EtaIntercalibration_Stat72: 2.2672545071076603e-14 - syst_JES_EtaIntercalibration_Stat73: 1.8526173181947211e-09 - syst_JES_EtaIntercalibration_Stat74: 5.1421970090613994e-05 - syst_JES_EtaIntercalibration_Stat75: 4.825178914279034e-05 - syst_JES_EtaIntercalibration_Stat76: 5.1165322595289094e-11 - syst_JES_EtaIntercalibration_Stat77: 2.724384884703334e-10 - syst_JES_EtaIntercalibration_Stat78: 5.38147014969655e-06 - syst_JES_EtaIntercalibration_Stat79: 2.3172205159994483e-05 - syst_JES_EtaIntercalibration_Stat8: 1.2892484118663866e-13 - syst_JES_EtaIntercalibration_Stat80: 3.593613529972303e-11 - syst_JES_EtaIntercalibration_Stat81: 2.0793269944864373e-15 - syst_JES_EtaIntercalibration_Stat82: 1.1157871302358708e-14 - syst_JES_EtaIntercalibration_Stat83: 1.1157871302358708e-14 - syst_JES_EtaIntercalibration_Stat84: 1.1157871302358708e-14 + syst_JES_EtaIntercalibration_Stat72: 2.26725451e-14 + syst_JES_EtaIntercalibration_Stat73: 1.85261732e-09 + syst_JES_EtaIntercalibration_Stat74: 5.14219701e-05 + syst_JES_EtaIntercalibration_Stat75: 4.82517891e-05 + syst_JES_EtaIntercalibration_Stat76: 5.11653226e-11 + syst_JES_EtaIntercalibration_Stat77: 2.72438488e-10 + syst_JES_EtaIntercalibration_Stat78: 5.38147015e-06 + syst_JES_EtaIntercalibration_Stat79: 2.31722052e-05 + syst_JES_EtaIntercalibration_Stat8: 1.28924841e-13 + syst_JES_EtaIntercalibration_Stat80: 3.59361353e-11 + syst_JES_EtaIntercalibration_Stat81: 2.07932699e-15 + syst_JES_EtaIntercalibration_Stat82: 1.11578713e-14 + syst_JES_EtaIntercalibration_Stat83: 1.11578713e-14 + syst_JES_EtaIntercalibration_Stat84: 1.11578713e-14 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 syst_JES_EtaIntercalibration_Stat89: 0.0 - syst_JES_EtaIntercalibration_Stat9: 4.0772051702115756e-14 + syst_JES_EtaIntercalibration_Stat9: 4.07720517e-14 syst_JES_EtaIntercalibration_Stat90: 0.0 syst_JES_EtaIntercalibration_Stat91: 0.0 syst_JES_EtaIntercalibration_Stat92: 0.0 - syst_JES_EtaIntercalibration_Stat93: 2.0706667404485928e-14 - syst_JES_EtaIntercalibration_Stat94: 2.3832046923575406e-09 - syst_JES_EtaIntercalibration_Stat95: 5.155777294210834e-05 - syst_JES_EtaIntercalibration_Stat96: 4.949435014794618e-05 - syst_JES_EtaIntercalibration_Stat97: 8.11950785313987e-10 - syst_JES_EtaIntercalibration_Stat98: 1.3114123989043263e-10 - syst_JES_EtaIntercalibration_Stat99: 1.1574136109095789e-05 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.011955956548934093 - syst_JES_Flavour_Comp: 0.03785771436246515 - syst_JES_Flavour_Response: 0.021157539436333327 - syst_JES_Gjet_Generator: 0.0629826744033627 - syst_JES_Gjet_OOC: 0.04919505158041812 - syst_JES_Gjet_Purity: 0.015150042904229678 - syst_JES_Gjet_Stat1: 5.2506657435033905e-05 - syst_JES_Gjet_Stat10: 0.0014351851030442032 - syst_JES_Gjet_Stat11: 0.002149204678479925 - syst_JES_Gjet_Stat12: 0.007230518290551515 - syst_JES_Gjet_Stat13: 0.014356220489738935 - syst_JES_Gjet_Stat14: 0.007229189218024383 - syst_JES_Gjet_Stat15: 0.004190785487232674 - syst_JES_Gjet_Stat2: 7.727170940907157e-08 - syst_JES_Gjet_Stat3: 8.446581379469447e-05 - syst_JES_Gjet_Stat4: 0.000142617565800991 - syst_JES_Gjet_Stat5: 0.00012784880474607494 - syst_JES_Gjet_Stat6: 0.0005632615444888813 - syst_JES_Gjet_Stat7: 0.0006861914073347172 - syst_JES_Gjet_Stat8: 0.00046931014265621834 - syst_JES_Gjet_Stat9: 0.0008897046181177211 - syst_JES_Gjet_Veto: 0.038567540134159445 - syst_JES_Gjet_dPhi: 0.004136544058752426 - syst_JES_LArESZee: 0.0939749131417529 - syst_JES_LArEsmear: 0.007049262301829887 - syst_JES_LAr_JVT: 0.009263116160342588 - syst_JES_MJB_Alpha: 0.000597825442750641 - syst_JES_MJB_Asym: 0.002739956705862339 - syst_JES_MJB_Beta: 0.000399899146660755 - syst_JES_MJB_Fragmentation: 0.010635242956792289 - syst_JES_MJB_Stat1: 7.717359837891453e-05 - syst_JES_MJB_Stat10: 0.00011003026552158274 - syst_JES_MJB_Stat11: 0.00011550607516490204 - syst_JES_MJB_Stat12: 3.556660793497182e-05 - syst_JES_MJB_Stat13: 9.471525471116045e-06 - syst_JES_MJB_Stat14: 1.0033713220936704e-05 - syst_JES_MJB_Stat15: 1.7010478204624346e-06 - syst_JES_MJB_Stat16: 9.56140272135841e-08 - syst_JES_MJB_Stat2: 0.0001216639538852819 - syst_JES_MJB_Stat3: 0.0011058804851791174 - syst_JES_MJB_Stat4: 0.00034143114488868764 - syst_JES_MJB_Stat5: 0.0004115454152338475 - syst_JES_MJB_Stat6: 8.454001064584744e-05 - syst_JES_MJB_Stat7: 7.282858436081262e-05 - syst_JES_MJB_Stat8: 4.351162718170857e-05 - syst_JES_MJB_Stat9: 2.1052736164213904e-07 - syst_JES_MJB_Threshold: 0.004644888884569791 - syst_JES_Pileup_MuOffset: 0.009540922531390768 - syst_JES_Pileup_NPVOffset: 0.009870444873459353 - syst_JES_Pileup_Pt_term: 0.009679470582113464 - syst_JES_Pileup_Rho_topology: 0.01972706009520932 - syst_JES_PunchThrough_MC15: 0.0014233103342208965 - syst_JES_SingleParticle_HighPt: 1.2658755863038042e-43 - syst_JES_Zjet_MC: 0.04231061096226336 - syst_JES_Zjet_MuScale: 0.002529697412735365 - syst_JES_Zjet_MuSmearID: 0.0006454974883762136 - syst_JES_Zjet_MuSmearMS: 0.011987771352507521 - syst_JES_Zjet_OOC: 0.01811157295764231 - syst_JES_Zjet_Stat1: 0.0007859979818676382 - syst_JES_Zjet_Stat10: 0.0015462327145355577 - syst_JES_Zjet_Stat11: 0.0017740661628022783 - syst_JES_Zjet_Stat12: 0.008810763190552792 - syst_JES_Zjet_Stat13: 0.012760340160042755 - syst_JES_Zjet_Stat2: 4.9121529075854314e-05 - syst_JES_Zjet_Stat3: 0.00027141571435714625 - syst_JES_Zjet_Stat4: 0.00014893833455494258 - syst_JES_Zjet_Stat5: 0.0004232212660063291 - syst_JES_Zjet_Stat6: 0.0005906128427320219 - syst_JES_Zjet_Stat7: 0.00029390615423975045 - syst_JES_Zjet_Stat8: 0.00047325691489929654 - syst_JES_Zjet_Stat9: 0.0008368557462310933 - syst_JES_Zjet_Veto: 0.0037873701522296442 - syst_JES_Zjet_dPhi: 0.003147878134553496 + syst_JES_EtaIntercalibration_Stat93: 2.07066674e-14 + syst_JES_EtaIntercalibration_Stat94: 2.38320469e-09 + syst_JES_EtaIntercalibration_Stat95: 5.15577729e-05 + syst_JES_EtaIntercalibration_Stat96: 4.94943501e-05 + syst_JES_EtaIntercalibration_Stat97: 8.11950785e-10 + syst_JES_EtaIntercalibration_Stat98: 1.31141240e-10 + syst_JES_EtaIntercalibration_Stat99: 1.15741361e-05 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.19559565e-02 + syst_JES_Flavour_Comp: 3.78577144e-02 + syst_JES_Flavour_Response: 2.11575394e-02 + syst_JES_Gjet_Generator: 6.29826744e-02 + syst_JES_Gjet_OOC: 4.91950516e-02 + syst_JES_Gjet_Purity: 1.51500429e-02 + syst_JES_Gjet_Stat1: 5.25066574e-05 + syst_JES_Gjet_Stat10: 1.43518510e-03 + syst_JES_Gjet_Stat11: 2.14920468e-03 + syst_JES_Gjet_Stat12: 7.23051829e-03 + syst_JES_Gjet_Stat13: 1.43562205e-02 + syst_JES_Gjet_Stat14: 7.22918922e-03 + syst_JES_Gjet_Stat15: 4.19078549e-03 + syst_JES_Gjet_Stat2: 7.72717094e-08 + syst_JES_Gjet_Stat3: 8.44658138e-05 + syst_JES_Gjet_Stat4: 1.42617566e-04 + syst_JES_Gjet_Stat5: 1.27848805e-04 + syst_JES_Gjet_Stat6: 5.63261544e-04 + syst_JES_Gjet_Stat7: 6.86191407e-04 + syst_JES_Gjet_Stat8: 4.69310143e-04 + syst_JES_Gjet_Stat9: 8.89704618e-04 + syst_JES_Gjet_Veto: 3.85675401e-02 + syst_JES_Gjet_dPhi: 4.13654406e-03 + syst_JES_LArESZee: 9.39749131e-02 + syst_JES_LArEsmear: 7.04926230e-03 + syst_JES_LAr_JVT: 9.26311616e-03 + syst_JES_MJB_Alpha: 5.97825443e-04 + syst_JES_MJB_Asym: 2.73995671e-03 + syst_JES_MJB_Beta: 3.99899147e-04 + syst_JES_MJB_Fragmentation: 1.06352430e-02 + syst_JES_MJB_Stat1: 7.71735984e-05 + syst_JES_MJB_Stat10: 1.10030266e-04 + syst_JES_MJB_Stat11: 1.15506075e-04 + syst_JES_MJB_Stat12: 3.55666079e-05 + syst_JES_MJB_Stat13: 9.47152547e-06 + syst_JES_MJB_Stat14: 1.00337132e-05 + syst_JES_MJB_Stat15: 1.70104782e-06 + syst_JES_MJB_Stat16: 9.56140272e-08 + syst_JES_MJB_Stat2: 1.21663954e-04 + syst_JES_MJB_Stat3: 1.10588049e-03 + syst_JES_MJB_Stat4: 3.41431145e-04 + syst_JES_MJB_Stat5: 4.11545415e-04 + syst_JES_MJB_Stat6: 8.45400106e-05 + syst_JES_MJB_Stat7: 7.28285844e-05 + syst_JES_MJB_Stat8: 4.35116272e-05 + syst_JES_MJB_Stat9: 2.10527362e-07 + syst_JES_MJB_Threshold: 4.64488888e-03 + syst_JES_Pileup_MuOffset: 9.54092253e-03 + syst_JES_Pileup_NPVOffset: 9.87044487e-03 + syst_JES_Pileup_Pt_term: 9.67947058e-03 + syst_JES_Pileup_Rho_topology: 1.97270601e-02 + syst_JES_PunchThrough_MC15: 1.42331033e-03 + syst_JES_SingleParticle_HighPt: 1.26587559e-43 + syst_JES_Zjet_MC: 4.23106110e-02 + syst_JES_Zjet_MuScale: 2.52969741e-03 + syst_JES_Zjet_MuSmearID: 6.45497488e-04 + syst_JES_Zjet_MuSmearMS: 1.19877714e-02 + syst_JES_Zjet_OOC: 1.81115730e-02 + syst_JES_Zjet_Stat1: 7.85997982e-04 + syst_JES_Zjet_Stat10: 1.54623271e-03 + syst_JES_Zjet_Stat11: 1.77406616e-03 + syst_JES_Zjet_Stat12: 8.81076319e-03 + syst_JES_Zjet_Stat13: 1.27603402e-02 + syst_JES_Zjet_Stat2: 4.91215291e-05 + syst_JES_Zjet_Stat3: 2.71415714e-04 + syst_JES_Zjet_Stat4: 1.48938335e-04 + syst_JES_Zjet_Stat5: 4.23221266e-04 + syst_JES_Zjet_Stat6: 5.90612843e-04 + syst_JES_Zjet_Stat7: 2.93906154e-04 + syst_JES_Zjet_Stat8: 4.73256915e-04 + syst_JES_Zjet_Stat9: 8.36855746e-04 + syst_JES_Zjet_Veto: 3.78737015e-03 + syst_JES_Zjet_dPhi: 3.14787813e-03 syst_PRW: 0.0025 syst_Unfolding_bias: 0.002599 - syst_cleaning: 0.01786610408007297 + syst_cleaning: 1.78661041e-02 syst_lumi: 0.06795 - stat: 0.007971 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.006969328715880749 - syst_JER_NP1: 0.0005778526866771496 - syst_JER_NP2: 0.0015145385435834902 - syst_JER_NP3: 0.0018433900157047611 - syst_JER_NP4: 0.0006608733974824528 - syst_JER_NP5: 0.00046887381276842496 - syst_JER_NP6: 0.0004127551871574329 - syst_JER_NP7: 0.0009315086043617632 - syst_JER_NP8: 0.0014314746967725278 - syst_JES_EtaIntercalibration_Modelling: 0.026589221030334828 - syst_JES_EtaIntercalibration_NonClosure: 9.423222418578477e-09 + syst_JER_NP0: 6.96932872e-03 + syst_JER_NP1: 5.77852687e-04 + syst_JER_NP2: 1.51453854e-03 + syst_JER_NP3: 1.84339002e-03 + syst_JER_NP4: 6.60873397e-04 + syst_JER_NP5: 4.68873813e-04 + syst_JER_NP6: 4.12755187e-04 + syst_JER_NP7: 9.31508604e-04 + syst_JER_NP8: 1.43147470e-03 + syst_JES_EtaIntercalibration_Modelling: 2.65892210e-02 + syst_JES_EtaIntercalibration_NonClosure: 9.42322242e-09 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 3.7658331357981062e-06 - syst_JES_EtaIntercalibration_Stat101: 5.269104098421287e-12 - syst_JES_EtaIntercalibration_Stat102: 2.7128979842964973e-15 - syst_JES_EtaIntercalibration_Stat103: 2.068934689641024e-15 - syst_JES_EtaIntercalibration_Stat104: 2.068934689641024e-15 - syst_JES_EtaIntercalibration_Stat105: 2.068934689641024e-15 + syst_JES_EtaIntercalibration_Stat100: 3.76583314e-06 + syst_JES_EtaIntercalibration_Stat101: 5.26910410e-12 + syst_JES_EtaIntercalibration_Stat102: 2.71289798e-15 + syst_JES_EtaIntercalibration_Stat103: 2.06893469e-15 + syst_JES_EtaIntercalibration_Stat104: 2.06893469e-15 + syst_JES_EtaIntercalibration_Stat105: 2.06893469e-15 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 1.2051609519064248e-10 - syst_JES_EtaIntercalibration_Stat111: 1.2051609519064248e-10 + syst_JES_EtaIntercalibration_Stat110: 1.20516095e-10 + syst_JES_EtaIntercalibration_Stat111: 1.20516095e-10 syst_JES_EtaIntercalibration_Stat112: 0.0 - syst_JES_EtaIntercalibration_Stat113: 2.4240246639009266e-13 - syst_JES_EtaIntercalibration_Stat114: 2.1581214207442083e-05 - syst_JES_EtaIntercalibration_Stat115: 1.4052319044200498e-06 - syst_JES_EtaIntercalibration_Stat116: 2.179636380224922e-06 - syst_JES_EtaIntercalibration_Stat117: 1.4199467137889366e-07 - syst_JES_EtaIntercalibration_Stat118: 3.273025893882907e-06 - syst_JES_EtaIntercalibration_Stat119: 4.28706445367923e-06 - syst_JES_EtaIntercalibration_Stat12: 4.034549528309309e-11 - syst_JES_EtaIntercalibration_Stat120: 7.122454141656512e-06 - syst_JES_EtaIntercalibration_Stat121: 3.587469341482238e-07 - syst_JES_EtaIntercalibration_Stat122: 3.1528526694408035e-13 - syst_JES_EtaIntercalibration_Stat123: 2.068934689641024e-15 - syst_JES_EtaIntercalibration_Stat124: 2.068934689641024e-15 - syst_JES_EtaIntercalibration_Stat125: 2.068934689641024e-15 + syst_JES_EtaIntercalibration_Stat113: 2.42402466e-13 + syst_JES_EtaIntercalibration_Stat114: 2.15812142e-05 + syst_JES_EtaIntercalibration_Stat115: 1.40523190e-06 + syst_JES_EtaIntercalibration_Stat116: 2.17963638e-06 + syst_JES_EtaIntercalibration_Stat117: 1.41994671e-07 + syst_JES_EtaIntercalibration_Stat118: 3.27302589e-06 + syst_JES_EtaIntercalibration_Stat119: 4.28706445e-06 + syst_JES_EtaIntercalibration_Stat12: 4.03454953e-11 + syst_JES_EtaIntercalibration_Stat120: 7.12245414e-06 + syst_JES_EtaIntercalibration_Stat121: 3.58746934e-07 + syst_JES_EtaIntercalibration_Stat122: 3.15285267e-13 + syst_JES_EtaIntercalibration_Stat123: 2.06893469e-15 + syst_JES_EtaIntercalibration_Stat124: 2.06893469e-15 + syst_JES_EtaIntercalibration_Stat125: 2.06893469e-15 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 5.482806831359281e-08 - syst_JES_EtaIntercalibration_Stat129: 5.478801410280537e-08 - syst_JES_EtaIntercalibration_Stat13: 5.0166247826658065e-11 - syst_JES_EtaIntercalibration_Stat130: 1.2051609519064248e-10 - syst_JES_EtaIntercalibration_Stat131: 1.5692380316574028e-16 - syst_JES_EtaIntercalibration_Stat132: 1.1175849537129011e-08 - syst_JES_EtaIntercalibration_Stat133: 8.21470091586267e-06 - syst_JES_EtaIntercalibration_Stat134: 5.017440283650619e-05 - syst_JES_EtaIntercalibration_Stat135: 3.478531586747489e-05 - syst_JES_EtaIntercalibration_Stat136: 3.844229561303539e-06 - syst_JES_EtaIntercalibration_Stat137: 8.664253516604879e-06 - syst_JES_EtaIntercalibration_Stat138: 2.6766467678795424e-05 - syst_JES_EtaIntercalibration_Stat139: 3.717869114156656e-05 - syst_JES_EtaIntercalibration_Stat14: 3.0397491672833793e-16 - syst_JES_EtaIntercalibration_Stat140: 5.626348438374574e-06 - syst_JES_EtaIntercalibration_Stat141: 5.0783729743391005e-08 + syst_JES_EtaIntercalibration_Stat128: 5.48280683e-08 + syst_JES_EtaIntercalibration_Stat129: 5.47880141e-08 + syst_JES_EtaIntercalibration_Stat13: 5.01662478e-11 + syst_JES_EtaIntercalibration_Stat130: 1.20516095e-10 + syst_JES_EtaIntercalibration_Stat131: 1.56923803e-16 + syst_JES_EtaIntercalibration_Stat132: 1.11758495e-08 + syst_JES_EtaIntercalibration_Stat133: 8.21470092e-06 + syst_JES_EtaIntercalibration_Stat134: 5.01744028e-05 + syst_JES_EtaIntercalibration_Stat135: 3.47853159e-05 + syst_JES_EtaIntercalibration_Stat136: 3.84422956e-06 + syst_JES_EtaIntercalibration_Stat137: 8.66425352e-06 + syst_JES_EtaIntercalibration_Stat138: 2.67664677e-05 + syst_JES_EtaIntercalibration_Stat139: 3.71786911e-05 + syst_JES_EtaIntercalibration_Stat14: 3.03974917e-16 + syst_JES_EtaIntercalibration_Stat140: 5.62634844e-06 + syst_JES_EtaIntercalibration_Stat141: 5.07837297e-08 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 2.068934689641024e-15 - syst_JES_EtaIntercalibration_Stat144: 2.068934689641024e-15 + syst_JES_EtaIntercalibration_Stat143: 2.06893469e-15 + syst_JES_EtaIntercalibration_Stat144: 2.06893469e-15 syst_JES_EtaIntercalibration_Stat145: 0.0 - syst_JES_EtaIntercalibration_Stat146: 5.482806831359281e-08 - syst_JES_EtaIntercalibration_Stat147: 5.478801410280537e-08 + syst_JES_EtaIntercalibration_Stat146: 5.48280683e-08 + syst_JES_EtaIntercalibration_Stat147: 5.47880141e-08 syst_JES_EtaIntercalibration_Stat148: 0.0 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 3.4290279920117303e-12 - syst_JES_EtaIntercalibration_Stat151: 8.111100597791892e-06 - syst_JES_EtaIntercalibration_Stat152: 5.502009882761026e-05 - syst_JES_EtaIntercalibration_Stat153: 6.01572894585519e-05 - syst_JES_EtaIntercalibration_Stat154: 2.5392781395506874e-06 - syst_JES_EtaIntercalibration_Stat155: 9.93686046998749e-06 - syst_JES_EtaIntercalibration_Stat156: 2.956072399316363e-05 - syst_JES_EtaIntercalibration_Stat157: 2.8399781689301765e-05 - syst_JES_EtaIntercalibration_Stat158: 2.198080781045137e-05 - syst_JES_EtaIntercalibration_Stat159: 5.097558677556256e-08 + syst_JES_EtaIntercalibration_Stat150: 3.42902799e-12 + syst_JES_EtaIntercalibration_Stat151: 8.11110060e-06 + syst_JES_EtaIntercalibration_Stat152: 5.50200988e-05 + syst_JES_EtaIntercalibration_Stat153: 6.01572895e-05 + syst_JES_EtaIntercalibration_Stat154: 2.53927814e-06 + syst_JES_EtaIntercalibration_Stat155: 9.93686047e-06 + syst_JES_EtaIntercalibration_Stat156: 2.95607240e-05 + syst_JES_EtaIntercalibration_Stat157: 2.83997817e-05 + syst_JES_EtaIntercalibration_Stat158: 2.19808078e-05 + syst_JES_EtaIntercalibration_Stat159: 5.09755868e-08 syst_JES_EtaIntercalibration_Stat16: 0.0 syst_JES_EtaIntercalibration_Stat160: 0.0 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 - syst_JES_EtaIntercalibration_Stat164: 5.482806831359281e-08 + syst_JES_EtaIntercalibration_Stat164: 5.48280683e-08 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 - syst_JES_EtaIntercalibration_Stat168: 2.456048045132668e-10 - syst_JES_EtaIntercalibration_Stat169: 3.646584001500582e-05 + syst_JES_EtaIntercalibration_Stat168: 2.45604805e-10 + syst_JES_EtaIntercalibration_Stat169: 3.64658400e-05 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 0.0001600305283375644 - syst_JES_EtaIntercalibration_Stat171: 9.707224011013653e-05 - syst_JES_EtaIntercalibration_Stat172: 3.574625015298807e-05 - syst_JES_EtaIntercalibration_Stat173: 4.3720961791799596e-07 - syst_JES_EtaIntercalibration_Stat174: 9.40494724865589e-05 - syst_JES_EtaIntercalibration_Stat175: 0.0001613442803448576 - syst_JES_EtaIntercalibration_Stat176: 6.99030877358075e-06 - syst_JES_EtaIntercalibration_Stat177: 3.4721849432309913e-07 + syst_JES_EtaIntercalibration_Stat170: 1.60030528e-04 + syst_JES_EtaIntercalibration_Stat171: 9.70722401e-05 + syst_JES_EtaIntercalibration_Stat172: 3.57462502e-05 + syst_JES_EtaIntercalibration_Stat173: 4.37209618e-07 + syst_JES_EtaIntercalibration_Stat174: 9.40494725e-05 + syst_JES_EtaIntercalibration_Stat175: 1.61344280e-04 + syst_JES_EtaIntercalibration_Stat176: 6.99030877e-06 + syst_JES_EtaIntercalibration_Stat177: 3.47218494e-07 syst_JES_EtaIntercalibration_Stat178: 0.0 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 @@ -17971,17 +17971,17 @@ bins: syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 syst_JES_EtaIntercalibration_Stat184: 0.0 - syst_JES_EtaIntercalibration_Stat185: 1.2739233689695512e-06 - syst_JES_EtaIntercalibration_Stat186: 6.085096609750744e-05 - syst_JES_EtaIntercalibration_Stat187: 0.0007837696281433723 - syst_JES_EtaIntercalibration_Stat188: 0.0006804510342412597 - syst_JES_EtaIntercalibration_Stat189: 3.8531100425500436e-05 + syst_JES_EtaIntercalibration_Stat185: 1.27392337e-06 + syst_JES_EtaIntercalibration_Stat186: 6.08509661e-05 + syst_JES_EtaIntercalibration_Stat187: 7.83769628e-04 + syst_JES_EtaIntercalibration_Stat188: 6.80451034e-04 + syst_JES_EtaIntercalibration_Stat189: 3.85311004e-05 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 3.7834658713935825e-05 - syst_JES_EtaIntercalibration_Stat191: 0.0005340288639202941 - syst_JES_EtaIntercalibration_Stat192: 0.00088152196229022 - syst_JES_EtaIntercalibration_Stat193: 5.035950828790924e-05 - syst_JES_EtaIntercalibration_Stat194: 2.3538570474861042e-07 + syst_JES_EtaIntercalibration_Stat190: 3.78346587e-05 + syst_JES_EtaIntercalibration_Stat191: 5.34028864e-04 + syst_JES_EtaIntercalibration_Stat192: 8.81521962e-04 + syst_JES_EtaIntercalibration_Stat193: 5.03595083e-05 + syst_JES_EtaIntercalibration_Stat194: 2.35385705e-07 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 syst_JES_EtaIntercalibration_Stat197: 0.0 @@ -17989,70 +17989,70 @@ bins: syst_JES_EtaIntercalibration_Stat199: 0.0 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 4.6774032058133393e-07 - syst_JES_EtaIntercalibration_Stat201: 8.530158541902958e-05 - syst_JES_EtaIntercalibration_Stat202: 0.001158551814767039 - syst_JES_EtaIntercalibration_Stat203: 0.0012104519847974144 - syst_JES_EtaIntercalibration_Stat204: 9.75901002919866e-05 - syst_JES_EtaIntercalibration_Stat205: 7.094480107802122e-05 - syst_JES_EtaIntercalibration_Stat206: 0.001273876563878934 - syst_JES_EtaIntercalibration_Stat207: 0.001226156730397872 - syst_JES_EtaIntercalibration_Stat208: 0.00014500867448190817 - syst_JES_EtaIntercalibration_Stat209: 1.8485611945632392e-06 + syst_JES_EtaIntercalibration_Stat200: 4.67740321e-07 + syst_JES_EtaIntercalibration_Stat201: 8.53015854e-05 + syst_JES_EtaIntercalibration_Stat202: 1.15855181e-03 + syst_JES_EtaIntercalibration_Stat203: 1.21045198e-03 + syst_JES_EtaIntercalibration_Stat204: 9.75901003e-05 + syst_JES_EtaIntercalibration_Stat205: 7.09448011e-05 + syst_JES_EtaIntercalibration_Stat206: 1.27387656e-03 + syst_JES_EtaIntercalibration_Stat207: 1.22615673e-03 + syst_JES_EtaIntercalibration_Stat208: 1.45008674e-04 + syst_JES_EtaIntercalibration_Stat209: 1.84856119e-06 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 syst_JES_EtaIntercalibration_Stat211: 0.0 syst_JES_EtaIntercalibration_Stat212: 0.0 - syst_JES_EtaIntercalibration_Stat213: 1.3180906645625573e-06 - syst_JES_EtaIntercalibration_Stat214: 1.2187149010330513e-05 - syst_JES_EtaIntercalibration_Stat215: 0.0006264707874274745 - syst_JES_EtaIntercalibration_Stat216: 0.0007799959663357241 - syst_JES_EtaIntercalibration_Stat217: 5.696781635274429e-05 - syst_JES_EtaIntercalibration_Stat218: 1.8566319957115894e-05 - syst_JES_EtaIntercalibration_Stat219: 0.0007770184087265887 + syst_JES_EtaIntercalibration_Stat213: 1.31809066e-06 + syst_JES_EtaIntercalibration_Stat214: 1.21871490e-05 + syst_JES_EtaIntercalibration_Stat215: 6.26470787e-04 + syst_JES_EtaIntercalibration_Stat216: 7.79995966e-04 + syst_JES_EtaIntercalibration_Stat217: 5.69678164e-05 + syst_JES_EtaIntercalibration_Stat218: 1.85663200e-05 + syst_JES_EtaIntercalibration_Stat219: 7.77018409e-04 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 0.0007509550718917878 - syst_JES_EtaIntercalibration_Stat221: 2.1951840896608195e-05 - syst_JES_EtaIntercalibration_Stat222: 2.6759560441083483e-06 + syst_JES_EtaIntercalibration_Stat220: 7.50955072e-04 + syst_JES_EtaIntercalibration_Stat221: 2.19518409e-05 + syst_JES_EtaIntercalibration_Stat222: 2.67595604e-06 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 - syst_JES_EtaIntercalibration_Stat225: 1.643710200481134e-06 - syst_JES_EtaIntercalibration_Stat226: 3.4824688771042876e-05 - syst_JES_EtaIntercalibration_Stat227: 0.00013540098670246093 - syst_JES_EtaIntercalibration_Stat228: 0.00011300667535592754 - syst_JES_EtaIntercalibration_Stat229: 2.2238262942055525e-05 + syst_JES_EtaIntercalibration_Stat225: 1.64371020e-06 + syst_JES_EtaIntercalibration_Stat226: 3.48246888e-05 + syst_JES_EtaIntercalibration_Stat227: 1.35400987e-04 + syst_JES_EtaIntercalibration_Stat228: 1.13006675e-04 + syst_JES_EtaIntercalibration_Stat229: 2.22382629e-05 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 4.713050707079227e-05 - syst_JES_EtaIntercalibration_Stat231: 0.00031414063729482696 - syst_JES_EtaIntercalibration_Stat232: 0.00012614449928554158 - syst_JES_EtaIntercalibration_Stat233: 4.648192229243537e-05 - syst_JES_EtaIntercalibration_Stat234: 9.324632150921559e-06 + syst_JES_EtaIntercalibration_Stat230: 4.71305071e-05 + syst_JES_EtaIntercalibration_Stat231: 3.14140637e-04 + syst_JES_EtaIntercalibration_Stat232: 1.26144499e-04 + syst_JES_EtaIntercalibration_Stat233: 4.64819223e-05 + syst_JES_EtaIntercalibration_Stat234: 9.32463215e-06 syst_JES_EtaIntercalibration_Stat235: 0.0 - syst_JES_EtaIntercalibration_Stat236: 7.924998470031398e-18 - syst_JES_EtaIntercalibration_Stat237: 1.1023004717408043e-05 - syst_JES_EtaIntercalibration_Stat238: 6.950097319462512e-05 - syst_JES_EtaIntercalibration_Stat239: 3.108170844725238e-05 + syst_JES_EtaIntercalibration_Stat236: 7.92499847e-18 + syst_JES_EtaIntercalibration_Stat237: 1.10230047e-05 + syst_JES_EtaIntercalibration_Stat238: 6.95009732e-05 + syst_JES_EtaIntercalibration_Stat239: 3.10817084e-05 syst_JES_EtaIntercalibration_Stat24: 0.0 - syst_JES_EtaIntercalibration_Stat240: 7.78540337841033e-18 - syst_JES_EtaIntercalibration_Stat241: 4.341385349171391e-06 - syst_JES_EtaIntercalibration_Stat242: 3.9455199910784894e-05 - syst_JES_EtaIntercalibration_Stat243: 5.027048910643301e-05 - syst_JES_EtaIntercalibration_Stat244: 4.341385249232068e-07 - syst_JES_EtaIntercalibration_Stat245: 3.492680453462641e-07 + syst_JES_EtaIntercalibration_Stat240: 7.78540338e-18 + syst_JES_EtaIntercalibration_Stat241: 4.34138535e-06 + syst_JES_EtaIntercalibration_Stat242: 3.94551999e-05 + syst_JES_EtaIntercalibration_Stat243: 5.02704891e-05 + syst_JES_EtaIntercalibration_Stat244: 4.34138525e-07 + syst_JES_EtaIntercalibration_Stat245: 3.49268045e-07 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 syst_JES_EtaIntercalibration_Stat27: 0.0 - syst_JES_EtaIntercalibration_Stat28: 4.123146947417712e-17 - syst_JES_EtaIntercalibration_Stat29: 3.66658105153834e-14 + syst_JES_EtaIntercalibration_Stat28: 4.12314695e-17 + syst_JES_EtaIntercalibration_Stat29: 3.66658105e-14 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 1.3736756049009532e-12 - syst_JES_EtaIntercalibration_Stat31: 6.287727311994374e-13 - syst_JES_EtaIntercalibration_Stat32: 3.086518426965891e-16 - syst_JES_EtaIntercalibration_Stat33: 3.4079886014334023e-15 - syst_JES_EtaIntercalibration_Stat34: 3.5533180773883284e-06 - syst_JES_EtaIntercalibration_Stat35: 4.938951439946518e-08 - syst_JES_EtaIntercalibration_Stat36: 3.0914996811741704e-13 - syst_JES_EtaIntercalibration_Stat37: 3.0103043035547086e-17 + syst_JES_EtaIntercalibration_Stat30: 1.37367560e-12 + syst_JES_EtaIntercalibration_Stat31: 6.28772731e-13 + syst_JES_EtaIntercalibration_Stat32: 3.08651843e-16 + syst_JES_EtaIntercalibration_Stat33: 3.40798860e-15 + syst_JES_EtaIntercalibration_Stat34: 3.55331808e-06 + syst_JES_EtaIntercalibration_Stat35: 4.93895144e-08 + syst_JES_EtaIntercalibration_Stat36: 3.09149968e-13 + syst_JES_EtaIntercalibration_Stat37: 3.01030430e-17 syst_JES_EtaIntercalibration_Stat38: 0.0 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 @@ -18067,20 +18067,20 @@ bins: syst_JES_EtaIntercalibration_Stat48: 0.0 syst_JES_EtaIntercalibration_Stat49: 0.0 syst_JES_EtaIntercalibration_Stat5: 0.0 - syst_JES_EtaIntercalibration_Stat50: 4.176840522452348e-17 - syst_JES_EtaIntercalibration_Stat51: 9.214075360555719e-14 - syst_JES_EtaIntercalibration_Stat52: 1.815874078784099e-10 - syst_JES_EtaIntercalibration_Stat53: 1.1306810654976937e-11 - syst_JES_EtaIntercalibration_Stat54: 3.3532483877577576e-14 - syst_JES_EtaIntercalibration_Stat55: 4.001597358939927e-11 - syst_JES_EtaIntercalibration_Stat56: 3.5558998016030076e-06 - syst_JES_EtaIntercalibration_Stat57: 4.607254971781601e-06 - syst_JES_EtaIntercalibration_Stat58: 4.4459770883350263e-13 - syst_JES_EtaIntercalibration_Stat59: 1.2737859788834229e-16 + syst_JES_EtaIntercalibration_Stat50: 4.17684052e-17 + syst_JES_EtaIntercalibration_Stat51: 9.21407536e-14 + syst_JES_EtaIntercalibration_Stat52: 1.81587408e-10 + syst_JES_EtaIntercalibration_Stat53: 1.13068107e-11 + syst_JES_EtaIntercalibration_Stat54: 3.35324839e-14 + syst_JES_EtaIntercalibration_Stat55: 4.00159736e-11 + syst_JES_EtaIntercalibration_Stat56: 3.55589980e-06 + syst_JES_EtaIntercalibration_Stat57: 4.60725497e-06 + syst_JES_EtaIntercalibration_Stat58: 4.44597709e-13 + syst_JES_EtaIntercalibration_Stat59: 1.27378598e-16 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 2.068934689641024e-15 - syst_JES_EtaIntercalibration_Stat62: 2.068934689641024e-15 + syst_JES_EtaIntercalibration_Stat61: 2.06893469e-15 + syst_JES_EtaIntercalibration_Stat62: 2.06893469e-15 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 @@ -18088,218 +18088,218 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 4.123146947417712e-17 + syst_JES_EtaIntercalibration_Stat7: 4.12314695e-17 syst_JES_EtaIntercalibration_Stat70: 0.0 syst_JES_EtaIntercalibration_Stat71: 0.0 - syst_JES_EtaIntercalibration_Stat72: 3.206892070213776e-15 - syst_JES_EtaIntercalibration_Stat73: 2.458103991534939e-10 - syst_JES_EtaIntercalibration_Stat74: 3.2842737374798714e-05 - syst_JES_EtaIntercalibration_Stat75: 3.20048642993695e-05 - syst_JES_EtaIntercalibration_Stat76: 6.56146903292243e-12 - syst_JES_EtaIntercalibration_Stat77: 3.512604889181247e-11 - syst_JES_EtaIntercalibration_Stat78: 3.422114978424417e-06 - syst_JES_EtaIntercalibration_Stat79: 8.443851558097806e-06 - syst_JES_EtaIntercalibration_Stat8: 1.7540284689821886e-14 - syst_JES_EtaIntercalibration_Stat80: 4.670045388395599e-12 - syst_JES_EtaIntercalibration_Stat81: 3.605263755954618e-16 - syst_JES_EtaIntercalibration_Stat82: 2.068934689641024e-15 - syst_JES_EtaIntercalibration_Stat83: 2.068934689641024e-15 - syst_JES_EtaIntercalibration_Stat84: 2.068934689641024e-15 + syst_JES_EtaIntercalibration_Stat72: 3.20689207e-15 + syst_JES_EtaIntercalibration_Stat73: 2.45810399e-10 + syst_JES_EtaIntercalibration_Stat74: 3.28427374e-05 + syst_JES_EtaIntercalibration_Stat75: 3.20048643e-05 + syst_JES_EtaIntercalibration_Stat76: 6.56146903e-12 + syst_JES_EtaIntercalibration_Stat77: 3.51260489e-11 + syst_JES_EtaIntercalibration_Stat78: 3.42211498e-06 + syst_JES_EtaIntercalibration_Stat79: 8.44385156e-06 + syst_JES_EtaIntercalibration_Stat8: 1.75402847e-14 + syst_JES_EtaIntercalibration_Stat80: 4.67004539e-12 + syst_JES_EtaIntercalibration_Stat81: 3.60526376e-16 + syst_JES_EtaIntercalibration_Stat82: 2.06893469e-15 + syst_JES_EtaIntercalibration_Stat83: 2.06893469e-15 + syst_JES_EtaIntercalibration_Stat84: 2.06893469e-15 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 syst_JES_EtaIntercalibration_Stat89: 0.0 - syst_JES_EtaIntercalibration_Stat9: 6.051152865363756e-15 + syst_JES_EtaIntercalibration_Stat9: 6.05115287e-15 syst_JES_EtaIntercalibration_Stat90: 0.0 syst_JES_EtaIntercalibration_Stat91: 0.0 syst_JES_EtaIntercalibration_Stat92: 0.0 - syst_JES_EtaIntercalibration_Stat93: 2.908113305908145e-15 - syst_JES_EtaIntercalibration_Stat94: 3.140412667150609e-10 - syst_JES_EtaIntercalibration_Stat95: 3.28494551058309e-05 - syst_JES_EtaIntercalibration_Stat96: 3.285216047690014e-05 - syst_JES_EtaIntercalibration_Stat97: 1.0694280243432701e-10 - syst_JES_EtaIntercalibration_Stat98: 1.6933939500305297e-11 - syst_JES_EtaIntercalibration_Stat99: 7.360597163136205e-06 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.008165117696641 - syst_JES_Flavour_Comp: 0.02631830684143644 - syst_JES_Flavour_Response: 0.01190493060668562 - syst_JES_Gjet_Generator: 0.0406798681782525 - syst_JES_Gjet_OOC: 0.03229572572338327 - syst_JES_Gjet_Purity: 0.009143509870394409 - syst_JES_Gjet_Stat1: 6.516506389162832e-05 - syst_JES_Gjet_Stat10: 0.0008404221974698194 - syst_JES_Gjet_Stat11: 0.0011773663183138883 - syst_JES_Gjet_Stat12: 0.004113560136913037 - syst_JES_Gjet_Stat13: 0.009478563327319178 - syst_JES_Gjet_Stat14: 0.008505767807787841 - syst_JES_Gjet_Stat15: 0.002662893351225317 - syst_JES_Gjet_Stat2: 1.0504211286431743e-06 - syst_JES_Gjet_Stat3: 7.694162511280875e-05 - syst_JES_Gjet_Stat4: 9.068458124179656e-05 - syst_JES_Gjet_Stat5: 8.134932267695902e-05 - syst_JES_Gjet_Stat6: 0.00040115489215513745 - syst_JES_Gjet_Stat7: 0.000453359228427083 - syst_JES_Gjet_Stat8: 0.0003317249274624987 - syst_JES_Gjet_Stat9: 0.0005481945731216244 - syst_JES_Gjet_Veto: 0.027154257493070953 - syst_JES_Gjet_dPhi: 0.002932031889321806 - syst_JES_LArESZee: 0.06129070565754648 - syst_JES_LArEsmear: 0.004671923881015187 - syst_JES_LAr_JVT: 0.005946001513622411 - syst_JES_MJB_Alpha: 0.0003869248376623036 - syst_JES_MJB_Asym: 0.0020662553085231262 - syst_JES_MJB_Beta: 0.00027267703882065316 - syst_JES_MJB_Fragmentation: 0.006657516560249776 - syst_JES_MJB_Stat1: 4.134755464353364e-05 - syst_JES_MJB_Stat10: 3.786185345106602e-05 - syst_JES_MJB_Stat11: 0.00010674843921575621 - syst_JES_MJB_Stat12: 6.540655070403883e-05 - syst_JES_MJB_Stat13: 3.262303940469067e-05 - syst_JES_MJB_Stat14: 3.1889487295972636e-05 - syst_JES_MJB_Stat15: 2.450591918292395e-06 - syst_JES_MJB_Stat16: 3.0161752270052217e-07 - syst_JES_MJB_Stat2: 7.721452195021349e-05 - syst_JES_MJB_Stat3: 0.0007090611680243108 - syst_JES_MJB_Stat4: 0.00024633854753164396 - syst_JES_MJB_Stat5: 0.0003142210845885425 - syst_JES_MJB_Stat6: 0.00010068292345278815 - syst_JES_MJB_Stat7: 9.469082360503578e-05 - syst_JES_MJB_Stat8: 7.843582902602611e-05 - syst_JES_MJB_Stat9: 2.8763129176082358e-06 - syst_JES_MJB_Threshold: 0.003121538562952571 - syst_JES_Pileup_MuOffset: 0.006556176324657536 - syst_JES_Pileup_NPVOffset: 0.006726197644286109 - syst_JES_Pileup_Pt_term: 0.006219591686758866 - syst_JES_Pileup_Rho_topology: 0.012478548102643993 - syst_JES_PunchThrough_MC15: 0.0012347624498258766 - syst_JES_SingleParticle_HighPt: 1.573838335884598e-35 - syst_JES_Zjet_MC: 0.025006224725055957 - syst_JES_Zjet_MuScale: 0.0014716996976285616 - syst_JES_Zjet_MuSmearID: 0.00044130368441131325 - syst_JES_Zjet_MuSmearMS: 0.0071362712952914 - syst_JES_Zjet_OOC: 0.011036521768655196 - syst_JES_Zjet_Stat1: 0.000544601175173172 - syst_JES_Zjet_Stat10: 0.000886982191196644 - syst_JES_Zjet_Stat11: 0.001201918694213548 - syst_JES_Zjet_Stat12: 0.004701203329999671 - syst_JES_Zjet_Stat13: 0.007702938010915056 - syst_JES_Zjet_Stat2: 3.1172197997574695e-05 - syst_JES_Zjet_Stat3: 0.00018107087472865426 - syst_JES_Zjet_Stat4: 9.740625788418319e-05 - syst_JES_Zjet_Stat5: 0.0002907154063684964 - syst_JES_Zjet_Stat6: 0.0003838833546795172 - syst_JES_Zjet_Stat7: 0.00020231601518416674 - syst_JES_Zjet_Stat8: 0.0002906257516119313 - syst_JES_Zjet_Stat9: 0.0005474510274901308 - syst_JES_Zjet_Veto: 0.0024147459493702437 - syst_JES_Zjet_dPhi: 0.001953468901723291 + syst_JES_EtaIntercalibration_Stat93: 2.90811331e-15 + syst_JES_EtaIntercalibration_Stat94: 3.14041267e-10 + syst_JES_EtaIntercalibration_Stat95: 3.28494551e-05 + syst_JES_EtaIntercalibration_Stat96: 3.28521605e-05 + syst_JES_EtaIntercalibration_Stat97: 1.06942802e-10 + syst_JES_EtaIntercalibration_Stat98: 1.69339395e-11 + syst_JES_EtaIntercalibration_Stat99: 7.36059716e-06 + syst_JES_EtaIntercalibration_TotalStat_MJB: 8.16511770e-03 + syst_JES_Flavour_Comp: 2.63183068e-02 + syst_JES_Flavour_Response: 1.19049306e-02 + syst_JES_Gjet_Generator: 4.06798682e-02 + syst_JES_Gjet_OOC: 3.22957257e-02 + syst_JES_Gjet_Purity: 9.14350987e-03 + syst_JES_Gjet_Stat1: 6.51650639e-05 + syst_JES_Gjet_Stat10: 8.40422197e-04 + syst_JES_Gjet_Stat11: 1.17736632e-03 + syst_JES_Gjet_Stat12: 4.11356014e-03 + syst_JES_Gjet_Stat13: 9.47856333e-03 + syst_JES_Gjet_Stat14: 8.50576781e-03 + syst_JES_Gjet_Stat15: 2.66289335e-03 + syst_JES_Gjet_Stat2: 1.05042113e-06 + syst_JES_Gjet_Stat3: 7.69416251e-05 + syst_JES_Gjet_Stat4: 9.06845812e-05 + syst_JES_Gjet_Stat5: 8.13493227e-05 + syst_JES_Gjet_Stat6: 4.01154892e-04 + syst_JES_Gjet_Stat7: 4.53359228e-04 + syst_JES_Gjet_Stat8: 3.31724927e-04 + syst_JES_Gjet_Stat9: 5.48194573e-04 + syst_JES_Gjet_Veto: 2.71542575e-02 + syst_JES_Gjet_dPhi: 2.93203189e-03 + syst_JES_LArESZee: 6.12907057e-02 + syst_JES_LArEsmear: 4.67192388e-03 + syst_JES_LAr_JVT: 5.94600151e-03 + syst_JES_MJB_Alpha: 3.86924838e-04 + syst_JES_MJB_Asym: 2.06625531e-03 + syst_JES_MJB_Beta: 2.72677039e-04 + syst_JES_MJB_Fragmentation: 6.65751656e-03 + syst_JES_MJB_Stat1: 4.13475546e-05 + syst_JES_MJB_Stat10: 3.78618535e-05 + syst_JES_MJB_Stat11: 1.06748439e-04 + syst_JES_MJB_Stat12: 6.54065507e-05 + syst_JES_MJB_Stat13: 3.26230394e-05 + syst_JES_MJB_Stat14: 3.18894873e-05 + syst_JES_MJB_Stat15: 2.45059192e-06 + syst_JES_MJB_Stat16: 3.01617523e-07 + syst_JES_MJB_Stat2: 7.72145220e-05 + syst_JES_MJB_Stat3: 7.09061168e-04 + syst_JES_MJB_Stat4: 2.46338548e-04 + syst_JES_MJB_Stat5: 3.14221085e-04 + syst_JES_MJB_Stat6: 1.00682923e-04 + syst_JES_MJB_Stat7: 9.46908236e-05 + syst_JES_MJB_Stat8: 7.84358290e-05 + syst_JES_MJB_Stat9: 2.87631292e-06 + syst_JES_MJB_Threshold: 3.12153856e-03 + syst_JES_Pileup_MuOffset: 6.55617632e-03 + syst_JES_Pileup_NPVOffset: 6.72619764e-03 + syst_JES_Pileup_Pt_term: 6.21959169e-03 + syst_JES_Pileup_Rho_topology: 1.24785481e-02 + syst_JES_PunchThrough_MC15: 1.23476245e-03 + syst_JES_SingleParticle_HighPt: 1.57383834e-35 + syst_JES_Zjet_MC: 2.50062247e-02 + syst_JES_Zjet_MuScale: 1.47169970e-03 + syst_JES_Zjet_MuSmearID: 4.41303684e-04 + syst_JES_Zjet_MuSmearMS: 7.13627130e-03 + syst_JES_Zjet_OOC: 1.10365218e-02 + syst_JES_Zjet_Stat1: 5.44601175e-04 + syst_JES_Zjet_Stat10: 8.86982191e-04 + syst_JES_Zjet_Stat11: 1.20191869e-03 + syst_JES_Zjet_Stat12: 4.70120333e-03 + syst_JES_Zjet_Stat13: 7.70293801e-03 + syst_JES_Zjet_Stat2: 3.11721980e-05 + syst_JES_Zjet_Stat3: 1.81070875e-04 + syst_JES_Zjet_Stat4: 9.74062579e-05 + syst_JES_Zjet_Stat5: 2.90715406e-04 + syst_JES_Zjet_Stat6: 3.83883355e-04 + syst_JES_Zjet_Stat7: 2.02316015e-04 + syst_JES_Zjet_Stat8: 2.90625752e-04 + syst_JES_Zjet_Stat9: 5.47451027e-04 + syst_JES_Zjet_Veto: 2.41474595e-03 + syst_JES_Zjet_dPhi: 1.95346890e-03 syst_PRW: 0.001587 syst_Unfolding_bias: 0.001649 - syst_cleaning: 0.011603874385307692 + syst_cleaning: 1.16038744e-02 syst_lumi: 0.04312 - stat: 0.004844 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.004270467150090257 - syst_JER_NP1: 0.00037750767872985044 - syst_JER_NP2: 0.0011246456186283747 - syst_JER_NP3: 0.0010120920746157437 - syst_JER_NP4: 0.0004205106538483895 - syst_JER_NP5: 0.0003886080641211656 - syst_JER_NP6: 0.00035447952302354504 - syst_JER_NP7: 0.0004273849874527649 - syst_JER_NP8: 0.000849421607624859 - syst_JES_EtaIntercalibration_Modelling: 0.01796550235868733 - syst_JES_EtaIntercalibration_NonClosure: 1.4731092118373302e-09 + syst_JER_NP0: 4.27046715e-03 + syst_JER_NP1: 3.77507679e-04 + syst_JER_NP2: 1.12464562e-03 + syst_JER_NP3: 1.01209207e-03 + syst_JER_NP4: 4.20510654e-04 + syst_JER_NP5: 3.88608064e-04 + syst_JER_NP6: 3.54479523e-04 + syst_JER_NP7: 4.27384987e-04 + syst_JER_NP8: 8.49421608e-04 + syst_JES_EtaIntercalibration_Modelling: 1.79655024e-02 + syst_JES_EtaIntercalibration_NonClosure: 1.47310921e-09 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 2.5862378766445193e-06 - syst_JES_EtaIntercalibration_Stat101: 7.218774324634343e-13 - syst_JES_EtaIntercalibration_Stat102: 4.617559323048811e-16 - syst_JES_EtaIntercalibration_Stat103: 4.131807201455557e-16 - syst_JES_EtaIntercalibration_Stat104: 4.131807201455557e-16 - syst_JES_EtaIntercalibration_Stat105: 4.131807201455557e-16 + syst_JES_EtaIntercalibration_Stat100: 2.58623788e-06 + syst_JES_EtaIntercalibration_Stat101: 7.21877432e-13 + syst_JES_EtaIntercalibration_Stat102: 4.61755932e-16 + syst_JES_EtaIntercalibration_Stat103: 4.13180720e-16 + syst_JES_EtaIntercalibration_Stat104: 4.13180720e-16 + syst_JES_EtaIntercalibration_Stat105: 4.13180720e-16 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 1.6134053272504094e-11 - syst_JES_EtaIntercalibration_Stat111: 1.6134053272504094e-11 + syst_JES_EtaIntercalibration_Stat110: 1.61340533e-11 + syst_JES_EtaIntercalibration_Stat111: 1.61340533e-11 syst_JES_EtaIntercalibration_Stat112: 0.0 - syst_JES_EtaIntercalibration_Stat113: 3.599395685622102e-14 - syst_JES_EtaIntercalibration_Stat114: 1.3664257626376927e-05 - syst_JES_EtaIntercalibration_Stat115: 1.2045299874536125e-06 - syst_JES_EtaIntercalibration_Stat116: 1.363791321097183e-06 - syst_JES_EtaIntercalibration_Stat117: 2.3893142844757784e-08 - syst_JES_EtaIntercalibration_Stat118: 2.093560003166078e-06 - syst_JES_EtaIntercalibration_Stat119: 1.4359800938731709e-06 - syst_JES_EtaIntercalibration_Stat12: 5.386148212607224e-12 - syst_JES_EtaIntercalibration_Stat120: 2.1597569585488087e-06 - syst_JES_EtaIntercalibration_Stat121: 7.315185281829846e-08 - syst_JES_EtaIntercalibration_Stat122: 4.4964865786383705e-14 - syst_JES_EtaIntercalibration_Stat123: 4.131807201455557e-16 - syst_JES_EtaIntercalibration_Stat124: 4.131807201455557e-16 - syst_JES_EtaIntercalibration_Stat125: 4.131807201455557e-16 + syst_JES_EtaIntercalibration_Stat113: 3.59939569e-14 + syst_JES_EtaIntercalibration_Stat114: 1.36642576e-05 + syst_JES_EtaIntercalibration_Stat115: 1.20452999e-06 + syst_JES_EtaIntercalibration_Stat116: 1.36379132e-06 + syst_JES_EtaIntercalibration_Stat117: 2.38931428e-08 + syst_JES_EtaIntercalibration_Stat118: 2.09356000e-06 + syst_JES_EtaIntercalibration_Stat119: 1.43598009e-06 + syst_JES_EtaIntercalibration_Stat12: 5.38614821e-12 + syst_JES_EtaIntercalibration_Stat120: 2.15975696e-06 + syst_JES_EtaIntercalibration_Stat121: 7.31518528e-08 + syst_JES_EtaIntercalibration_Stat122: 4.49648658e-14 + syst_JES_EtaIntercalibration_Stat123: 4.13180720e-16 + syst_JES_EtaIntercalibration_Stat124: 4.13180720e-16 + syst_JES_EtaIntercalibration_Stat125: 4.13180720e-16 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 8.74685657822283e-09 - syst_JES_EtaIntercalibration_Stat129: 8.741491795321609e-09 - syst_JES_EtaIntercalibration_Stat13: 6.727281736938553e-12 - syst_JES_EtaIntercalibration_Stat130: 1.6134053272504094e-11 - syst_JES_EtaIntercalibration_Stat131: 2.8994530518703004e-17 - syst_JES_EtaIntercalibration_Stat132: 1.7414215467228922e-09 - syst_JES_EtaIntercalibration_Stat133: 9.157812168857528e-06 - syst_JES_EtaIntercalibration_Stat134: 2.1702748097879213e-05 - syst_JES_EtaIntercalibration_Stat135: 1.4061467588768962e-05 - syst_JES_EtaIntercalibration_Stat136: 2.5616121962691777e-06 - syst_JES_EtaIntercalibration_Stat137: 3.209207222975793e-06 - syst_JES_EtaIntercalibration_Stat138: 1.1821561360497182e-05 - syst_JES_EtaIntercalibration_Stat139: 1.6026767858804222e-05 - syst_JES_EtaIntercalibration_Stat14: 5.747810604917319e-17 - syst_JES_EtaIntercalibration_Stat140: 3.5678433261565734e-06 - syst_JES_EtaIntercalibration_Stat141: 8.238499678377684e-09 + syst_JES_EtaIntercalibration_Stat128: 8.74685658e-09 + syst_JES_EtaIntercalibration_Stat129: 8.74149180e-09 + syst_JES_EtaIntercalibration_Stat13: 6.72728174e-12 + syst_JES_EtaIntercalibration_Stat130: 1.61340533e-11 + syst_JES_EtaIntercalibration_Stat131: 2.89945305e-17 + syst_JES_EtaIntercalibration_Stat132: 1.74142155e-09 + syst_JES_EtaIntercalibration_Stat133: 9.15781217e-06 + syst_JES_EtaIntercalibration_Stat134: 2.17027481e-05 + syst_JES_EtaIntercalibration_Stat135: 1.40614676e-05 + syst_JES_EtaIntercalibration_Stat136: 2.56161220e-06 + syst_JES_EtaIntercalibration_Stat137: 3.20920722e-06 + syst_JES_EtaIntercalibration_Stat138: 1.18215614e-05 + syst_JES_EtaIntercalibration_Stat139: 1.60267679e-05 + syst_JES_EtaIntercalibration_Stat14: 5.74781060e-17 + syst_JES_EtaIntercalibration_Stat140: 3.56784333e-06 + syst_JES_EtaIntercalibration_Stat141: 8.23849968e-09 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 4.131807201455557e-16 - syst_JES_EtaIntercalibration_Stat144: 4.131807201455557e-16 + syst_JES_EtaIntercalibration_Stat143: 4.13180720e-16 + syst_JES_EtaIntercalibration_Stat144: 4.13180720e-16 syst_JES_EtaIntercalibration_Stat145: 0.0 - syst_JES_EtaIntercalibration_Stat146: 8.74685657822283e-09 - syst_JES_EtaIntercalibration_Stat147: 8.741491795321609e-09 + syst_JES_EtaIntercalibration_Stat146: 8.74685658e-09 + syst_JES_EtaIntercalibration_Stat147: 8.74149180e-09 syst_JES_EtaIntercalibration_Stat148: 0.0 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 4.683849999434226e-13 - syst_JES_EtaIntercalibration_Stat151: 9.137114158566424e-06 - syst_JES_EtaIntercalibration_Stat152: 2.2480949157008474e-05 - syst_JES_EtaIntercalibration_Stat153: 2.5339187042997257e-05 - syst_JES_EtaIntercalibration_Stat154: 5.250204376974291e-07 - syst_JES_EtaIntercalibration_Stat155: 5.0265218590989934e-06 - syst_JES_EtaIntercalibration_Stat156: 1.7991291004260922e-05 - syst_JES_EtaIntercalibration_Stat157: 1.3934703109503268e-05 - syst_JES_EtaIntercalibration_Stat158: 5.1939019051191165e-06 - syst_JES_EtaIntercalibration_Stat159: 8.26639499565909e-09 + syst_JES_EtaIntercalibration_Stat150: 4.68385000e-13 + syst_JES_EtaIntercalibration_Stat151: 9.13711416e-06 + syst_JES_EtaIntercalibration_Stat152: 2.24809492e-05 + syst_JES_EtaIntercalibration_Stat153: 2.53391870e-05 + syst_JES_EtaIntercalibration_Stat154: 5.25020438e-07 + syst_JES_EtaIntercalibration_Stat155: 5.02652186e-06 + syst_JES_EtaIntercalibration_Stat156: 1.79912910e-05 + syst_JES_EtaIntercalibration_Stat157: 1.39347031e-05 + syst_JES_EtaIntercalibration_Stat158: 5.19390191e-06 + syst_JES_EtaIntercalibration_Stat159: 8.26639500e-09 syst_JES_EtaIntercalibration_Stat16: 0.0 syst_JES_EtaIntercalibration_Stat160: 0.0 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 - syst_JES_EtaIntercalibration_Stat164: 8.74685657822283e-09 + syst_JES_EtaIntercalibration_Stat164: 8.74685658e-09 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 - syst_JES_EtaIntercalibration_Stat168: 3.477958021598306e-11 - syst_JES_EtaIntercalibration_Stat169: 1.5199947631488733e-05 + syst_JES_EtaIntercalibration_Stat168: 3.47795802e-11 + syst_JES_EtaIntercalibration_Stat169: 1.51999476e-05 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 6.29050417295784e-05 - syst_JES_EtaIntercalibration_Stat171: 3.566080586582417e-05 - syst_JES_EtaIntercalibration_Stat172: 1.496017883415837e-05 - syst_JES_EtaIntercalibration_Stat173: 3.6028455420681026e-06 - syst_JES_EtaIntercalibration_Stat174: 3.821557143364469e-05 - syst_JES_EtaIntercalibration_Stat175: 5.417099592955625e-05 - syst_JES_EtaIntercalibration_Stat176: 5.331821032255302e-06 - syst_JES_EtaIntercalibration_Stat177: 6.16521769181754e-08 + syst_JES_EtaIntercalibration_Stat170: 6.29050417e-05 + syst_JES_EtaIntercalibration_Stat171: 3.56608059e-05 + syst_JES_EtaIntercalibration_Stat172: 1.49601788e-05 + syst_JES_EtaIntercalibration_Stat173: 3.60284554e-06 + syst_JES_EtaIntercalibration_Stat174: 3.82155714e-05 + syst_JES_EtaIntercalibration_Stat175: 5.41709959e-05 + syst_JES_EtaIntercalibration_Stat176: 5.33182103e-06 + syst_JES_EtaIntercalibration_Stat177: 6.16521769e-08 syst_JES_EtaIntercalibration_Stat178: 0.0 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 @@ -18308,17 +18308,17 @@ bins: syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 syst_JES_EtaIntercalibration_Stat184: 0.0 - syst_JES_EtaIntercalibration_Stat185: 3.787129127370679e-07 - syst_JES_EtaIntercalibration_Stat186: 2.322710216535847e-05 - syst_JES_EtaIntercalibration_Stat187: 0.0003344840317563755 - syst_JES_EtaIntercalibration_Stat188: 0.0002859712223284014 - syst_JES_EtaIntercalibration_Stat189: 1.7035248016979382e-05 + syst_JES_EtaIntercalibration_Stat185: 3.78712913e-07 + syst_JES_EtaIntercalibration_Stat186: 2.32271022e-05 + syst_JES_EtaIntercalibration_Stat187: 3.34484032e-04 + syst_JES_EtaIntercalibration_Stat188: 2.85971222e-04 + syst_JES_EtaIntercalibration_Stat189: 1.70352480e-05 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 2.286591220026002e-05 - syst_JES_EtaIntercalibration_Stat191: 0.00024372386013683602 - syst_JES_EtaIntercalibration_Stat192: 0.00036328667399176636 - syst_JES_EtaIntercalibration_Stat193: 2.489602528517354e-05 - syst_JES_EtaIntercalibration_Stat194: 4.7899865083317296e-08 + syst_JES_EtaIntercalibration_Stat190: 2.28659122e-05 + syst_JES_EtaIntercalibration_Stat191: 2.43723860e-04 + syst_JES_EtaIntercalibration_Stat192: 3.63286674e-04 + syst_JES_EtaIntercalibration_Stat193: 2.48960253e-05 + syst_JES_EtaIntercalibration_Stat194: 4.78998651e-08 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 syst_JES_EtaIntercalibration_Stat197: 0.0 @@ -18326,70 +18326,70 @@ bins: syst_JES_EtaIntercalibration_Stat199: 0.0 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 1.0075339181443804e-07 - syst_JES_EtaIntercalibration_Stat201: 4.8915955219130704e-05 - syst_JES_EtaIntercalibration_Stat202: 0.0005172231312499471 - syst_JES_EtaIntercalibration_Stat203: 0.0005633827473396749 - syst_JES_EtaIntercalibration_Stat204: 4.788528792854857e-05 - syst_JES_EtaIntercalibration_Stat205: 3.9144348251056624e-05 - syst_JES_EtaIntercalibration_Stat206: 0.0006045680503466916 - syst_JES_EtaIntercalibration_Stat207: 0.0005562483325817706 - syst_JES_EtaIntercalibration_Stat208: 6.469364014337113e-05 - syst_JES_EtaIntercalibration_Stat209: 1.2100416215249819e-06 + syst_JES_EtaIntercalibration_Stat200: 1.00753392e-07 + syst_JES_EtaIntercalibration_Stat201: 4.89159552e-05 + syst_JES_EtaIntercalibration_Stat202: 5.17223131e-04 + syst_JES_EtaIntercalibration_Stat203: 5.63382747e-04 + syst_JES_EtaIntercalibration_Stat204: 4.78852879e-05 + syst_JES_EtaIntercalibration_Stat205: 3.91443483e-05 + syst_JES_EtaIntercalibration_Stat206: 6.04568050e-04 + syst_JES_EtaIntercalibration_Stat207: 5.56248333e-04 + syst_JES_EtaIntercalibration_Stat208: 6.46936401e-05 + syst_JES_EtaIntercalibration_Stat209: 1.21004162e-06 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 syst_JES_EtaIntercalibration_Stat211: 0.0 syst_JES_EtaIntercalibration_Stat212: 0.0 - syst_JES_EtaIntercalibration_Stat213: 3.8226361689229545e-07 - syst_JES_EtaIntercalibration_Stat214: 1.4339048085559935e-05 - syst_JES_EtaIntercalibration_Stat215: 0.00036847081879030804 - syst_JES_EtaIntercalibration_Stat216: 0.00044492159983529686 - syst_JES_EtaIntercalibration_Stat217: 3.54031425158841e-05 - syst_JES_EtaIntercalibration_Stat218: 2.222665284630144e-05 - syst_JES_EtaIntercalibration_Stat219: 0.0004343348156376599 + syst_JES_EtaIntercalibration_Stat213: 3.82263617e-07 + syst_JES_EtaIntercalibration_Stat214: 1.43390481e-05 + syst_JES_EtaIntercalibration_Stat215: 3.68470819e-04 + syst_JES_EtaIntercalibration_Stat216: 4.44921600e-04 + syst_JES_EtaIntercalibration_Stat217: 3.54031425e-05 + syst_JES_EtaIntercalibration_Stat218: 2.22266528e-05 + syst_JES_EtaIntercalibration_Stat219: 4.34334816e-04 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 0.00042708946076905243 - syst_JES_EtaIntercalibration_Stat221: 1.778050828857263e-05 - syst_JES_EtaIntercalibration_Stat222: 1.603601467790548e-06 + syst_JES_EtaIntercalibration_Stat220: 4.27089461e-04 + syst_JES_EtaIntercalibration_Stat221: 1.77805083e-05 + syst_JES_EtaIntercalibration_Stat222: 1.60360147e-06 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 - syst_JES_EtaIntercalibration_Stat225: 1.5248886114107088e-06 - syst_JES_EtaIntercalibration_Stat226: 2.173577122510264e-05 - syst_JES_EtaIntercalibration_Stat227: 0.0002777895741384115 - syst_JES_EtaIntercalibration_Stat228: 0.0002432795922390532 - syst_JES_EtaIntercalibration_Stat229: 2.8653894726546336e-05 + syst_JES_EtaIntercalibration_Stat225: 1.52488861e-06 + syst_JES_EtaIntercalibration_Stat226: 2.17357712e-05 + syst_JES_EtaIntercalibration_Stat227: 2.77789574e-04 + syst_JES_EtaIntercalibration_Stat228: 2.43279592e-04 + syst_JES_EtaIntercalibration_Stat229: 2.86538947e-05 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 1.8687115668288674e-05 - syst_JES_EtaIntercalibration_Stat231: 0.00037982281066307745 - syst_JES_EtaIntercalibration_Stat232: 0.00030181495986779714 - syst_JES_EtaIntercalibration_Stat233: 2.389695216968055e-05 - syst_JES_EtaIntercalibration_Stat234: 4.22733254310564e-06 + syst_JES_EtaIntercalibration_Stat230: 1.86871157e-05 + syst_JES_EtaIntercalibration_Stat231: 3.79822811e-04 + syst_JES_EtaIntercalibration_Stat232: 3.01814960e-04 + syst_JES_EtaIntercalibration_Stat233: 2.38969522e-05 + syst_JES_EtaIntercalibration_Stat234: 4.22733254e-06 syst_JES_EtaIntercalibration_Stat235: 0.0 - syst_JES_EtaIntercalibration_Stat236: 1.0985532247005604e-14 - syst_JES_EtaIntercalibration_Stat237: 1.1052732908652049e-05 - syst_JES_EtaIntercalibration_Stat238: 4.194337047436698e-05 - syst_JES_EtaIntercalibration_Stat239: 2.4785339921009757e-05 + syst_JES_EtaIntercalibration_Stat236: 1.09855322e-14 + syst_JES_EtaIntercalibration_Stat237: 1.10527329e-05 + syst_JES_EtaIntercalibration_Stat238: 4.19433705e-05 + syst_JES_EtaIntercalibration_Stat239: 2.47853399e-05 syst_JES_EtaIntercalibration_Stat24: 0.0 - syst_JES_EtaIntercalibration_Stat240: 1.0815853703507411e-14 - syst_JES_EtaIntercalibration_Stat241: 3.5533022317275523e-06 - syst_JES_EtaIntercalibration_Stat242: 9.913789638680054e-06 - syst_JES_EtaIntercalibration_Stat243: 3.7109172383657384e-05 - syst_JES_EtaIntercalibration_Stat244: 1.2265485222929543e-06 - syst_JES_EtaIntercalibration_Stat245: 1.9624135649755378e-07 + syst_JES_EtaIntercalibration_Stat240: 1.08158537e-14 + syst_JES_EtaIntercalibration_Stat241: 3.55330223e-06 + syst_JES_EtaIntercalibration_Stat242: 9.91378964e-06 + syst_JES_EtaIntercalibration_Stat243: 3.71091724e-05 + syst_JES_EtaIntercalibration_Stat244: 1.22654852e-06 + syst_JES_EtaIntercalibration_Stat245: 1.96241356e-07 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 syst_JES_EtaIntercalibration_Stat27: 0.0 - syst_JES_EtaIntercalibration_Stat28: 8.370135527576599e-18 - syst_JES_EtaIntercalibration_Stat29: 5.5932468001599925e-15 + syst_JES_EtaIntercalibration_Stat28: 8.37013553e-18 + syst_JES_EtaIntercalibration_Stat29: 5.59324680e-15 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 1.8842913442458943e-13 - syst_JES_EtaIntercalibration_Stat31: 9.001428261670478e-14 - syst_JES_EtaIntercalibration_Stat32: 5.70046355571194e-17 - syst_JES_EtaIntercalibration_Stat33: 1.1775357096496053e-16 - syst_JES_EtaIntercalibration_Stat34: 2.2707207322250316e-06 - syst_JES_EtaIntercalibration_Stat35: 8.043656239325444e-09 - syst_JES_EtaIntercalibration_Stat36: 4.400520962553752e-14 - syst_JES_EtaIntercalibration_Stat37: 6.109809223699214e-18 + syst_JES_EtaIntercalibration_Stat30: 1.88429134e-13 + syst_JES_EtaIntercalibration_Stat31: 9.00142826e-14 + syst_JES_EtaIntercalibration_Stat32: 5.70046356e-17 + syst_JES_EtaIntercalibration_Stat33: 1.17753571e-16 + syst_JES_EtaIntercalibration_Stat34: 2.27072073e-06 + syst_JES_EtaIntercalibration_Stat35: 8.04365624e-09 + syst_JES_EtaIntercalibration_Stat36: 4.40052096e-14 + syst_JES_EtaIntercalibration_Stat37: 6.10980922e-18 syst_JES_EtaIntercalibration_Stat38: 0.0 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 @@ -18404,20 +18404,20 @@ bins: syst_JES_EtaIntercalibration_Stat48: 0.0 syst_JES_EtaIntercalibration_Stat49: 0.0 syst_JES_EtaIntercalibration_Stat5: 0.0 - syst_JES_EtaIntercalibration_Stat50: 8.478388703049654e-18 - syst_JES_EtaIntercalibration_Stat51: 1.3631070271625775e-14 - syst_JES_EtaIntercalibration_Stat52: 2.6268219048881104e-11 - syst_JES_EtaIntercalibration_Stat53: 1.5205277595295654e-12 - syst_JES_EtaIntercalibration_Stat54: 4.939566048753675e-15 - syst_JES_EtaIntercalibration_Stat55: 5.343295369439631e-12 - syst_JES_EtaIntercalibration_Stat56: 2.2724505873904604e-06 - syst_JES_EtaIntercalibration_Stat57: 4.090237720534299e-07 - syst_JES_EtaIntercalibration_Stat58: 6.251884380528803e-14 - syst_JES_EtaIntercalibration_Stat59: 2.4874375745935818e-17 + syst_JES_EtaIntercalibration_Stat50: 8.47838870e-18 + syst_JES_EtaIntercalibration_Stat51: 1.36310703e-14 + syst_JES_EtaIntercalibration_Stat52: 2.62682190e-11 + syst_JES_EtaIntercalibration_Stat53: 1.52052776e-12 + syst_JES_EtaIntercalibration_Stat54: 4.93956605e-15 + syst_JES_EtaIntercalibration_Stat55: 5.34329537e-12 + syst_JES_EtaIntercalibration_Stat56: 2.27245059e-06 + syst_JES_EtaIntercalibration_Stat57: 4.09023772e-07 + syst_JES_EtaIntercalibration_Stat58: 6.25188438e-14 + syst_JES_EtaIntercalibration_Stat59: 2.48743757e-17 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 4.131807201455557e-16 - syst_JES_EtaIntercalibration_Stat62: 4.131807201455557e-16 + syst_JES_EtaIntercalibration_Stat61: 4.13180720e-16 + syst_JES_EtaIntercalibration_Stat62: 4.13180720e-16 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 @@ -18425,218 +18425,218 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 8.370135527576599e-18 + syst_JES_EtaIntercalibration_Stat7: 8.37013553e-18 syst_JES_EtaIntercalibration_Stat70: 0.0 syst_JES_EtaIntercalibration_Stat71: 0.0 - syst_JES_EtaIntercalibration_Stat72: 4.872258921691252e-16 - syst_JES_EtaIntercalibration_Stat73: 3.300497342151747e-11 - syst_JES_EtaIntercalibration_Stat74: 2.0917324757243693e-05 - syst_JES_EtaIntercalibration_Stat75: 2.074077211771835e-05 - syst_JES_EtaIntercalibration_Stat76: 8.671215258976103e-13 - syst_JES_EtaIntercalibration_Stat77: 4.683856168532506e-12 - syst_JES_EtaIntercalibration_Stat78: 2.188757949742959e-06 - syst_JES_EtaIntercalibration_Stat79: 2.088508537883434e-06 - syst_JES_EtaIntercalibration_Stat8: 2.5658583027907057e-15 - syst_JES_EtaIntercalibration_Stat80: 6.420186079639748e-13 - syst_JES_EtaIntercalibration_Stat81: 6.813887876975964e-17 - syst_JES_EtaIntercalibration_Stat82: 4.131807201455557e-16 - syst_JES_EtaIntercalibration_Stat83: 4.131807201455557e-16 - syst_JES_EtaIntercalibration_Stat84: 4.131807201455557e-16 + syst_JES_EtaIntercalibration_Stat72: 4.87225892e-16 + syst_JES_EtaIntercalibration_Stat73: 3.30049734e-11 + syst_JES_EtaIntercalibration_Stat74: 2.09173248e-05 + syst_JES_EtaIntercalibration_Stat75: 2.07407721e-05 + syst_JES_EtaIntercalibration_Stat76: 8.67121526e-13 + syst_JES_EtaIntercalibration_Stat77: 4.68385617e-12 + syst_JES_EtaIntercalibration_Stat78: 2.18875795e-06 + syst_JES_EtaIntercalibration_Stat79: 2.08850854e-06 + syst_JES_EtaIntercalibration_Stat8: 2.56585830e-15 + syst_JES_EtaIntercalibration_Stat80: 6.42018608e-13 + syst_JES_EtaIntercalibration_Stat81: 6.81388788e-17 + syst_JES_EtaIntercalibration_Stat82: 4.13180720e-16 + syst_JES_EtaIntercalibration_Stat83: 4.13180720e-16 + syst_JES_EtaIntercalibration_Stat84: 4.13180720e-16 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 syst_JES_EtaIntercalibration_Stat89: 0.0 - syst_JES_EtaIntercalibration_Stat9: 9.760719069310415e-16 + syst_JES_EtaIntercalibration_Stat9: 9.76071907e-16 syst_JES_EtaIntercalibration_Stat90: 0.0 syst_JES_EtaIntercalibration_Stat91: 0.0 syst_JES_EtaIntercalibration_Stat92: 0.0 - syst_JES_EtaIntercalibration_Stat93: 4.376026365322769e-16 - syst_JES_EtaIntercalibration_Stat94: 4.213344689198832e-11 - syst_JES_EtaIntercalibration_Stat95: 2.0909662531172044e-05 - syst_JES_EtaIntercalibration_Stat96: 2.1298255579976496e-05 - syst_JES_EtaIntercalibration_Stat97: 1.4354998894534093e-11 - syst_JES_EtaIntercalibration_Stat98: 2.275256633876715e-12 - syst_JES_EtaIntercalibration_Stat99: 4.706215057264914e-06 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.005619130070571423 - syst_JES_Flavour_Comp: 0.017945034828609277 - syst_JES_Flavour_Response: 0.006967046504796706 - syst_JES_Gjet_Generator: 0.026520965291632958 - syst_JES_Gjet_OOC: 0.021275734417406135 - syst_JES_Gjet_Purity: 0.005521886702024952 - syst_JES_Gjet_Stat1: 5.6867918899850724e-05 - syst_JES_Gjet_Stat10: 0.0004953051685577286 - syst_JES_Gjet_Stat11: 0.000644805590856655 - syst_JES_Gjet_Stat12: 0.0023069989163413147 - syst_JES_Gjet_Stat13: 0.00606487203080164 - syst_JES_Gjet_Stat14: 0.007912103054814188 - syst_JES_Gjet_Stat15: 0.0011910390201416575 - syst_JES_Gjet_Stat2: 5.522799833417829e-06 - syst_JES_Gjet_Stat3: 6.381851847230551e-05 - syst_JES_Gjet_Stat4: 5.896973461022188e-05 - syst_JES_Gjet_Stat5: 5.315795424957586e-05 - syst_JES_Gjet_Stat6: 0.0002646764250929803 - syst_JES_Gjet_Stat7: 0.000293695365131968 - syst_JES_Gjet_Stat8: 0.000237567337822353 - syst_JES_Gjet_Stat9: 0.00033220529797099865 - syst_JES_Gjet_Veto: 0.018885107227654283 - syst_JES_Gjet_dPhi: 0.0019742904421589037 - syst_JES_LArESZee: 0.04025425985842989 - syst_JES_LArEsmear: 0.0030710955699880128 - syst_JES_LAr_JVT: 0.003851353342333056 - syst_JES_MJB_Alpha: 0.00026326199877688383 - syst_JES_MJB_Asym: 0.0015646574705027296 - syst_JES_MJB_Beta: 0.00019478081912755165 - syst_JES_MJB_Fragmentation: 0.004087862613885158 - syst_JES_MJB_Stat1: 2.4861795203685514e-05 - syst_JES_MJB_Stat10: 3.0474038733814065e-05 - syst_JES_MJB_Stat11: 8.448559093123513e-05 - syst_JES_MJB_Stat12: 8.02815146842659e-05 - syst_JES_MJB_Stat13: 5.612832707287828e-05 - syst_JES_MJB_Stat14: 5.8247064089102386e-05 - syst_JES_MJB_Stat15: 9.68765930191602e-06 - syst_JES_MJB_Stat16: 5.270505170284913e-07 - syst_JES_MJB_Stat2: 4.930845439678677e-05 - syst_JES_MJB_Stat3: 0.0004092971139649045 - syst_JES_MJB_Stat4: 0.00018733045347727102 - syst_JES_MJB_Stat5: 0.0002216891235491719 - syst_JES_MJB_Stat6: 0.00011328581585970946 - syst_JES_MJB_Stat7: 0.00010994862345659448 - syst_JES_MJB_Stat8: 0.0001038200726015928 - syst_JES_MJB_Stat9: 1.5281105980916434e-05 - syst_JES_MJB_Threshold: 0.002040121258651064 - syst_JES_Pileup_MuOffset: 0.00446277525761717 - syst_JES_Pileup_NPVOffset: 0.0045755092339541835 - syst_JES_Pileup_Pt_term: 0.003998977303011359 - syst_JES_Pileup_Rho_topology: 0.00805027407918513 - syst_JES_PunchThrough_MC15: 0.0010337698921907138 - syst_JES_SingleParticle_HighPt: 4.6721293592964656e-29 - syst_JES_Zjet_MC: 0.014875015126042728 - syst_JES_Zjet_MuScale: 0.0008560565212063979 - syst_JES_Zjet_MuSmearID: 0.0002862618032501018 - syst_JES_Zjet_MuSmearMS: 0.004232185251143905 - syst_JES_Zjet_OOC: 0.006848815718794017 - syst_JES_Zjet_Stat1: 0.0003615324466766434 - syst_JES_Zjet_Stat10: 0.0005172545867365508 - syst_JES_Zjet_Stat11: 0.0007499068742183926 - syst_JES_Zjet_Stat12: 0.0025687430291876224 - syst_JES_Zjet_Stat13: 0.00458750659400071 - syst_JES_Zjet_Stat2: 1.9920241433024854e-05 - syst_JES_Zjet_Stat3: 0.00012141864230833748 - syst_JES_Zjet_Stat4: 7.01743505491857e-05 - syst_JES_Zjet_Stat5: 0.0001925605878678189 - syst_JES_Zjet_Stat6: 0.00024535954739932173 - syst_JES_Zjet_Stat7: 0.00014444791820929784 - syst_JES_Zjet_Stat8: 0.00017945659642375924 - syst_JES_Zjet_Stat9: 0.00035280202309510644 - syst_JES_Zjet_Veto: 0.0014921798651637143 - syst_JES_Zjet_dPhi: 0.0012082493813364854 + syst_JES_EtaIntercalibration_Stat93: 4.37602637e-16 + syst_JES_EtaIntercalibration_Stat94: 4.21334469e-11 + syst_JES_EtaIntercalibration_Stat95: 2.09096625e-05 + syst_JES_EtaIntercalibration_Stat96: 2.12982556e-05 + syst_JES_EtaIntercalibration_Stat97: 1.43549989e-11 + syst_JES_EtaIntercalibration_Stat98: 2.27525663e-12 + syst_JES_EtaIntercalibration_Stat99: 4.70621506e-06 + syst_JES_EtaIntercalibration_TotalStat_MJB: 5.61913007e-03 + syst_JES_Flavour_Comp: 1.79450348e-02 + syst_JES_Flavour_Response: 6.96704650e-03 + syst_JES_Gjet_Generator: 2.65209653e-02 + syst_JES_Gjet_OOC: 2.12757344e-02 + syst_JES_Gjet_Purity: 5.52188670e-03 + syst_JES_Gjet_Stat1: 5.68679189e-05 + syst_JES_Gjet_Stat10: 4.95305169e-04 + syst_JES_Gjet_Stat11: 6.44805591e-04 + syst_JES_Gjet_Stat12: 2.30699892e-03 + syst_JES_Gjet_Stat13: 6.06487203e-03 + syst_JES_Gjet_Stat14: 7.91210305e-03 + syst_JES_Gjet_Stat15: 1.19103902e-03 + syst_JES_Gjet_Stat2: 5.52279983e-06 + syst_JES_Gjet_Stat3: 6.38185185e-05 + syst_JES_Gjet_Stat4: 5.89697346e-05 + syst_JES_Gjet_Stat5: 5.31579542e-05 + syst_JES_Gjet_Stat6: 2.64676425e-04 + syst_JES_Gjet_Stat7: 2.93695365e-04 + syst_JES_Gjet_Stat8: 2.37567338e-04 + syst_JES_Gjet_Stat9: 3.32205298e-04 + syst_JES_Gjet_Veto: 1.88851072e-02 + syst_JES_Gjet_dPhi: 1.97429044e-03 + syst_JES_LArESZee: 4.02542599e-02 + syst_JES_LArEsmear: 3.07109557e-03 + syst_JES_LAr_JVT: 3.85135334e-03 + syst_JES_MJB_Alpha: 2.63261999e-04 + syst_JES_MJB_Asym: 1.56465747e-03 + syst_JES_MJB_Beta: 1.94780819e-04 + syst_JES_MJB_Fragmentation: 4.08786261e-03 + syst_JES_MJB_Stat1: 2.48617952e-05 + syst_JES_MJB_Stat10: 3.04740387e-05 + syst_JES_MJB_Stat11: 8.44855909e-05 + syst_JES_MJB_Stat12: 8.02815147e-05 + syst_JES_MJB_Stat13: 5.61283271e-05 + syst_JES_MJB_Stat14: 5.82470641e-05 + syst_JES_MJB_Stat15: 9.68765930e-06 + syst_JES_MJB_Stat16: 5.27050517e-07 + syst_JES_MJB_Stat2: 4.93084544e-05 + syst_JES_MJB_Stat3: 4.09297114e-04 + syst_JES_MJB_Stat4: 1.87330453e-04 + syst_JES_MJB_Stat5: 2.21689124e-04 + syst_JES_MJB_Stat6: 1.13285816e-04 + syst_JES_MJB_Stat7: 1.09948623e-04 + syst_JES_MJB_Stat8: 1.03820073e-04 + syst_JES_MJB_Stat9: 1.52811060e-05 + syst_JES_MJB_Threshold: 2.04012126e-03 + syst_JES_Pileup_MuOffset: 4.46277526e-03 + syst_JES_Pileup_NPVOffset: 4.57550923e-03 + syst_JES_Pileup_Pt_term: 3.99897730e-03 + syst_JES_Pileup_Rho_topology: 8.05027408e-03 + syst_JES_PunchThrough_MC15: 1.03376989e-03 + syst_JES_SingleParticle_HighPt: 4.67212936e-29 + syst_JES_Zjet_MC: 1.48750151e-02 + syst_JES_Zjet_MuScale: 8.56056521e-04 + syst_JES_Zjet_MuSmearID: 2.86261803e-04 + syst_JES_Zjet_MuSmearMS: 4.23218525e-03 + syst_JES_Zjet_OOC: 6.84881572e-03 + syst_JES_Zjet_Stat1: 3.61532447e-04 + syst_JES_Zjet_Stat10: 5.17254587e-04 + syst_JES_Zjet_Stat11: 7.49906874e-04 + syst_JES_Zjet_Stat12: 2.56874303e-03 + syst_JES_Zjet_Stat13: 4.58750659e-03 + syst_JES_Zjet_Stat2: 1.99202414e-05 + syst_JES_Zjet_Stat3: 1.21418642e-04 + syst_JES_Zjet_Stat4: 7.01743505e-05 + syst_JES_Zjet_Stat5: 1.92560588e-04 + syst_JES_Zjet_Stat6: 2.45359547e-04 + syst_JES_Zjet_Stat7: 1.44447918e-04 + syst_JES_Zjet_Stat8: 1.79456596e-04 + syst_JES_Zjet_Stat9: 3.52802023e-04 + syst_JES_Zjet_Veto: 1.49217987e-03 + syst_JES_Zjet_dPhi: 1.20824938e-03 syst_PRW: 0.001014 - syst_Unfolding_bias: 0.0010539 - syst_cleaning: 0.007388062719685047 + syst_Unfolding_bias: 1.05390000e-03 + syst_cleaning: 7.38806272e-03 syst_lumi: 0.02756 -- stat: 0.0031921 +- stat: 3.19210000e-03 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.0025475119234264635 - syst_JER_NP1: 0.00024639632200988714 - syst_JER_NP2: 0.0007875754868582439 - syst_JER_NP3: 0.0005203246294381999 - syst_JER_NP4: 0.0002725009174296483 - syst_JER_NP5: 0.00031262074067470316 - syst_JER_NP6: 0.00025914837217316263 - syst_JER_NP7: 0.00016271447477099265 - syst_JER_NP8: 0.0005210593128425976 - syst_JES_EtaIntercalibration_Modelling: 0.012194803729457887 - syst_JES_EtaIntercalibration_NonClosure: 2.238675668782774e-10 + syst_JER_NP0: 2.54751192e-03 + syst_JER_NP1: 2.46396322e-04 + syst_JER_NP2: 7.87575487e-04 + syst_JER_NP3: 5.20324629e-04 + syst_JER_NP4: 2.72500917e-04 + syst_JER_NP5: 3.12620741e-04 + syst_JER_NP6: 2.59148372e-04 + syst_JER_NP7: 1.62714475e-04 + syst_JER_NP8: 5.21059313e-04 + syst_JES_EtaIntercalibration_Modelling: 1.21948037e-02 + syst_JES_EtaIntercalibration_NonClosure: 2.23867567e-10 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 1.7259045262080605e-06 - syst_JES_EtaIntercalibration_Stat101: 1.0634089512859104e-13 - syst_JES_EtaIntercalibration_Stat102: 8.610800744994625e-17 - syst_JES_EtaIntercalibration_Stat103: 8.949506522708389e-17 - syst_JES_EtaIntercalibration_Stat104: 8.949506522708389e-17 - syst_JES_EtaIntercalibration_Stat105: 8.949506522708389e-17 + syst_JES_EtaIntercalibration_Stat100: 1.72590453e-06 + syst_JES_EtaIntercalibration_Stat101: 1.06340895e-13 + syst_JES_EtaIntercalibration_Stat102: 8.61080074e-17 + syst_JES_EtaIntercalibration_Stat103: 8.94950652e-17 + syst_JES_EtaIntercalibration_Stat104: 8.94950652e-17 + syst_JES_EtaIntercalibration_Stat105: 8.94950652e-17 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 2.288905142202271e-12 - syst_JES_EtaIntercalibration_Stat111: 2.288905142202271e-12 + syst_JES_EtaIntercalibration_Stat110: 2.28890514e-12 + syst_JES_EtaIntercalibration_Stat111: 2.28890514e-12 syst_JES_EtaIntercalibration_Stat112: 0.0 - syst_JES_EtaIntercalibration_Stat113: 5.823821373863986e-15 - syst_JES_EtaIntercalibration_Stat114: 8.81411104688811e-06 - syst_JES_EtaIntercalibration_Stat115: 7.512103700029706e-07 - syst_JES_EtaIntercalibration_Stat116: 1.0313913648562315e-06 - syst_JES_EtaIntercalibration_Stat117: 3.822759834203556e-09 - syst_JES_EtaIntercalibration_Stat118: 1.3578536598384784e-06 - syst_JES_EtaIntercalibration_Stat119: 1.625714172294749e-06 - syst_JES_EtaIntercalibration_Stat12: 7.612979006065384e-13 - syst_JES_EtaIntercalibration_Stat120: 9.23560668012665e-07 - syst_JES_EtaIntercalibration_Stat121: 1.3484689284796294e-08 - syst_JES_EtaIntercalibration_Stat122: 6.961861791410398e-15 - syst_JES_EtaIntercalibration_Stat123: 8.949506522708389e-17 - syst_JES_EtaIntercalibration_Stat124: 8.949506522708389e-17 - syst_JES_EtaIntercalibration_Stat125: 8.949506522708389e-17 + syst_JES_EtaIntercalibration_Stat113: 5.82382137e-15 + syst_JES_EtaIntercalibration_Stat114: 8.81411105e-06 + syst_JES_EtaIntercalibration_Stat115: 7.51210370e-07 + syst_JES_EtaIntercalibration_Stat116: 1.03139136e-06 + syst_JES_EtaIntercalibration_Stat117: 3.82275983e-09 + syst_JES_EtaIntercalibration_Stat118: 1.35785366e-06 + syst_JES_EtaIntercalibration_Stat119: 1.62571417e-06 + syst_JES_EtaIntercalibration_Stat12: 7.61297901e-13 + syst_JES_EtaIntercalibration_Stat120: 9.23560668e-07 + syst_JES_EtaIntercalibration_Stat121: 1.34846893e-08 + syst_JES_EtaIntercalibration_Stat122: 6.96186179e-15 + syst_JES_EtaIntercalibration_Stat123: 8.94950652e-17 + syst_JES_EtaIntercalibration_Stat124: 8.94950652e-17 + syst_JES_EtaIntercalibration_Stat125: 8.94950652e-17 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 1.344937452077233e-09 - syst_JES_EtaIntercalibration_Stat129: 1.3441762159727235e-09 - syst_JES_EtaIntercalibration_Stat13: 9.580431009187008e-13 - syst_JES_EtaIntercalibration_Stat130: 2.288905142202271e-12 - syst_JES_EtaIntercalibration_Stat131: 5.867322110639572e-18 - syst_JES_EtaIntercalibration_Stat132: 2.6437305057542233e-10 - syst_JES_EtaIntercalibration_Stat133: 7.5868291239457875e-06 - syst_JES_EtaIntercalibration_Stat134: 1.0202912660118188e-05 - syst_JES_EtaIntercalibration_Stat135: 4.735499419279872e-06 - syst_JES_EtaIntercalibration_Stat136: 1.7174836676588803e-06 - syst_JES_EtaIntercalibration_Stat137: 1.3192193174374e-06 - syst_JES_EtaIntercalibration_Stat138: 6.2804530688478205e-06 - syst_JES_EtaIntercalibration_Stat139: 9.328356547645466e-06 - syst_JES_EtaIntercalibration_Stat14: 1.191737558147766e-17 - syst_JES_EtaIntercalibration_Stat140: 2.056438126348566e-06 - syst_JES_EtaIntercalibration_Stat141: 1.2791195238702012e-09 + syst_JES_EtaIntercalibration_Stat128: 1.34493745e-09 + syst_JES_EtaIntercalibration_Stat129: 1.34417622e-09 + syst_JES_EtaIntercalibration_Stat13: 9.58043101e-13 + syst_JES_EtaIntercalibration_Stat130: 2.28890514e-12 + syst_JES_EtaIntercalibration_Stat131: 5.86732211e-18 + syst_JES_EtaIntercalibration_Stat132: 2.64373051e-10 + syst_JES_EtaIntercalibration_Stat133: 7.58682912e-06 + syst_JES_EtaIntercalibration_Stat134: 1.02029127e-05 + syst_JES_EtaIntercalibration_Stat135: 4.73549942e-06 + syst_JES_EtaIntercalibration_Stat136: 1.71748367e-06 + syst_JES_EtaIntercalibration_Stat137: 1.31921932e-06 + syst_JES_EtaIntercalibration_Stat138: 6.28045307e-06 + syst_JES_EtaIntercalibration_Stat139: 9.32835655e-06 + syst_JES_EtaIntercalibration_Stat14: 1.19173756e-17 + syst_JES_EtaIntercalibration_Stat140: 2.05643813e-06 + syst_JES_EtaIntercalibration_Stat141: 1.27911952e-09 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 8.949506522708389e-17 - syst_JES_EtaIntercalibration_Stat144: 8.949506522708389e-17 + syst_JES_EtaIntercalibration_Stat143: 8.94950652e-17 + syst_JES_EtaIntercalibration_Stat144: 8.94950652e-17 syst_JES_EtaIntercalibration_Stat145: 0.0 - syst_JES_EtaIntercalibration_Stat146: 1.344937452077233e-09 - syst_JES_EtaIntercalibration_Stat147: 1.3441762159727235e-09 + syst_JES_EtaIntercalibration_Stat146: 1.34493745e-09 + syst_JES_EtaIntercalibration_Stat147: 1.34417622e-09 syst_JES_EtaIntercalibration_Stat148: 0.0 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 6.875912043503756e-14 - syst_JES_EtaIntercalibration_Stat151: 7.583102077716942e-06 - syst_JES_EtaIntercalibration_Stat152: 1.0132372427028133e-05 - syst_JES_EtaIntercalibration_Stat153: 1.3538682607624716e-05 - syst_JES_EtaIntercalibration_Stat154: 3.117511056516079e-07 - syst_JES_EtaIntercalibration_Stat155: 3.2308865822711883e-06 - syst_JES_EtaIntercalibration_Stat156: 1.3084990332438157e-05 - syst_JES_EtaIntercalibration_Stat157: 8.468785907672954e-06 - syst_JES_EtaIntercalibration_Stat158: 1.9130135258277714e-06 - syst_JES_EtaIntercalibration_Stat159: 1.2834765580742323e-09 + syst_JES_EtaIntercalibration_Stat150: 6.87591204e-14 + syst_JES_EtaIntercalibration_Stat151: 7.58310208e-06 + syst_JES_EtaIntercalibration_Stat152: 1.01323724e-05 + syst_JES_EtaIntercalibration_Stat153: 1.35386826e-05 + syst_JES_EtaIntercalibration_Stat154: 3.11751106e-07 + syst_JES_EtaIntercalibration_Stat155: 3.23088658e-06 + syst_JES_EtaIntercalibration_Stat156: 1.30849903e-05 + syst_JES_EtaIntercalibration_Stat157: 8.46878591e-06 + syst_JES_EtaIntercalibration_Stat158: 1.91301353e-06 + syst_JES_EtaIntercalibration_Stat159: 1.28347656e-09 syst_JES_EtaIntercalibration_Stat16: 0.0 syst_JES_EtaIntercalibration_Stat160: 0.0 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 - syst_JES_EtaIntercalibration_Stat164: 1.344937452077233e-09 + syst_JES_EtaIntercalibration_Stat164: 1.34493745e-09 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 - syst_JES_EtaIntercalibration_Stat168: 4.877455074113958e-12 - syst_JES_EtaIntercalibration_Stat169: 4.265643360619826e-06 + syst_JES_EtaIntercalibration_Stat168: 4.87745507e-12 + syst_JES_EtaIntercalibration_Stat169: 4.26564336e-06 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 2.431925317521079e-05 - syst_JES_EtaIntercalibration_Stat171: 1.4035865773082898e-05 - syst_JES_EtaIntercalibration_Stat172: 4.4516523794541725e-06 - syst_JES_EtaIntercalibration_Stat173: 4.185937738428512e-06 - syst_JES_EtaIntercalibration_Stat174: 1.9620239550015697e-05 - syst_JES_EtaIntercalibration_Stat175: 1.6705609596779163e-05 - syst_JES_EtaIntercalibration_Stat176: 3.56949589157909e-06 - syst_JES_EtaIntercalibration_Stat177: 1.0228608415004457e-08 + syst_JES_EtaIntercalibration_Stat170: 2.43192532e-05 + syst_JES_EtaIntercalibration_Stat171: 1.40358658e-05 + syst_JES_EtaIntercalibration_Stat172: 4.45165238e-06 + syst_JES_EtaIntercalibration_Stat173: 4.18593774e-06 + syst_JES_EtaIntercalibration_Stat174: 1.96202396e-05 + syst_JES_EtaIntercalibration_Stat175: 1.67056096e-05 + syst_JES_EtaIntercalibration_Stat176: 3.56949589e-06 + syst_JES_EtaIntercalibration_Stat177: 1.02286084e-08 syst_JES_EtaIntercalibration_Stat178: 0.0 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 @@ -18645,17 +18645,17 @@ bins: syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 syst_JES_EtaIntercalibration_Stat184: 0.0 - syst_JES_EtaIntercalibration_Stat185: 9.013678892978167e-08 - syst_JES_EtaIntercalibration_Stat186: 1.0102666219864933e-05 - syst_JES_EtaIntercalibration_Stat187: 0.0001418291094944899 - syst_JES_EtaIntercalibration_Stat188: 0.00012102080730188508 - syst_JES_EtaIntercalibration_Stat189: 9.580744373481634e-06 + syst_JES_EtaIntercalibration_Stat185: 9.01367889e-08 + syst_JES_EtaIntercalibration_Stat186: 1.01026662e-05 + syst_JES_EtaIntercalibration_Stat187: 1.41829109e-04 + syst_JES_EtaIntercalibration_Stat188: 1.21020807e-04 + syst_JES_EtaIntercalibration_Stat189: 9.58074437e-06 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 1.4988679686683547e-05 - syst_JES_EtaIntercalibration_Stat191: 0.0001162918195747233 - syst_JES_EtaIntercalibration_Stat192: 0.000151519726438507 - syst_JES_EtaIntercalibration_Stat193: 1.1778447520789826e-05 - syst_JES_EtaIntercalibration_Stat194: 8.818736686736938e-09 + syst_JES_EtaIntercalibration_Stat190: 1.49886797e-05 + syst_JES_EtaIntercalibration_Stat191: 1.16291820e-04 + syst_JES_EtaIntercalibration_Stat192: 1.51519726e-04 + syst_JES_EtaIntercalibration_Stat193: 1.17784475e-05 + syst_JES_EtaIntercalibration_Stat194: 8.81873669e-09 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 syst_JES_EtaIntercalibration_Stat197: 0.0 @@ -18663,70 +18663,70 @@ bins: syst_JES_EtaIntercalibration_Stat199: 0.0 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 1.9216239283546577e-08 - syst_JES_EtaIntercalibration_Stat201: 2.849323209114754e-05 - syst_JES_EtaIntercalibration_Stat202: 0.00023731996860778488 - syst_JES_EtaIntercalibration_Stat203: 0.00025333521271232707 - syst_JES_EtaIntercalibration_Stat204: 2.299989728237933e-05 - syst_JES_EtaIntercalibration_Stat205: 2.079326994486437e-05 - syst_JES_EtaIntercalibration_Stat206: 0.00027097723151585997 - syst_JES_EtaIntercalibration_Stat207: 0.00025692251750284557 - syst_JES_EtaIntercalibration_Stat208: 2.9138398634791173e-05 - syst_JES_EtaIntercalibration_Stat209: 7.896341115193036e-07 + syst_JES_EtaIntercalibration_Stat200: 1.92162393e-08 + syst_JES_EtaIntercalibration_Stat201: 2.84932321e-05 + syst_JES_EtaIntercalibration_Stat202: 2.37319969e-04 + syst_JES_EtaIntercalibration_Stat203: 2.53335213e-04 + syst_JES_EtaIntercalibration_Stat204: 2.29998973e-05 + syst_JES_EtaIntercalibration_Stat205: 2.07932699e-05 + syst_JES_EtaIntercalibration_Stat206: 2.70977232e-04 + syst_JES_EtaIntercalibration_Stat207: 2.56922518e-04 + syst_JES_EtaIntercalibration_Stat208: 2.91383986e-05 + syst_JES_EtaIntercalibration_Stat209: 7.89634112e-07 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 syst_JES_EtaIntercalibration_Stat211: 0.0 syst_JES_EtaIntercalibration_Stat212: 0.0 - syst_JES_EtaIntercalibration_Stat213: 9.014544889511904e-08 - syst_JES_EtaIntercalibration_Stat214: 1.1595628346493345e-05 - syst_JES_EtaIntercalibration_Stat215: 0.00021501224965103733 - syst_JES_EtaIntercalibration_Stat216: 0.0002368570032741274 - syst_JES_EtaIntercalibration_Stat217: 1.944965055598686e-05 - syst_JES_EtaIntercalibration_Stat218: 2.0158622243347884e-05 - syst_JES_EtaIntercalibration_Stat219: 0.00022683233345358858 + syst_JES_EtaIntercalibration_Stat213: 9.01454489e-08 + syst_JES_EtaIntercalibration_Stat214: 1.15956283e-05 + syst_JES_EtaIntercalibration_Stat215: 2.15012250e-04 + syst_JES_EtaIntercalibration_Stat216: 2.36857003e-04 + syst_JES_EtaIntercalibration_Stat217: 1.94496506e-05 + syst_JES_EtaIntercalibration_Stat218: 2.01586222e-05 + syst_JES_EtaIntercalibration_Stat219: 2.26832333e-04 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 0.00023654435102111397 - syst_JES_EtaIntercalibration_Stat221: 1.2952104877200465e-05 - syst_JES_EtaIntercalibration_Stat222: 8.924393985027779e-07 + syst_JES_EtaIntercalibration_Stat220: 2.36544351e-04 + syst_JES_EtaIntercalibration_Stat221: 1.29521049e-05 + syst_JES_EtaIntercalibration_Stat222: 8.92439399e-07 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 - syst_JES_EtaIntercalibration_Stat225: 1.0827180859765622e-06 - syst_JES_EtaIntercalibration_Stat226: 1.3020859879439605e-05 - syst_JES_EtaIntercalibration_Stat227: 0.0003150102657057385 - syst_JES_EtaIntercalibration_Stat228: 0.00024103483150781342 - syst_JES_EtaIntercalibration_Stat229: 2.246495608720391e-05 + syst_JES_EtaIntercalibration_Stat225: 1.08271809e-06 + syst_JES_EtaIntercalibration_Stat226: 1.30208599e-05 + syst_JES_EtaIntercalibration_Stat227: 3.15010266e-04 + syst_JES_EtaIntercalibration_Stat228: 2.41034832e-04 + syst_JES_EtaIntercalibration_Stat229: 2.24649561e-05 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 6.93578782475358e-06 - syst_JES_EtaIntercalibration_Stat231: 0.00035784700641475263 - syst_JES_EtaIntercalibration_Stat232: 0.00032473488802406186 - syst_JES_EtaIntercalibration_Stat233: 1.8363645471419885e-05 - syst_JES_EtaIntercalibration_Stat234: 4.5297241844840833e-07 + syst_JES_EtaIntercalibration_Stat230: 6.93578782e-06 + syst_JES_EtaIntercalibration_Stat231: 3.57847006e-04 + syst_JES_EtaIntercalibration_Stat232: 3.24734888e-04 + syst_JES_EtaIntercalibration_Stat233: 1.83636455e-05 + syst_JES_EtaIntercalibration_Stat234: 4.52972418e-07 syst_JES_EtaIntercalibration_Stat235: 0.0 - syst_JES_EtaIntercalibration_Stat236: 2.5937460843343936e-12 - syst_JES_EtaIntercalibration_Stat237: 8.14558948143104e-06 - syst_JES_EtaIntercalibration_Stat238: 1.7205013077588754e-05 - syst_JES_EtaIntercalibration_Stat239: 8.868296228701429e-06 + syst_JES_EtaIntercalibration_Stat236: 2.59374608e-12 + syst_JES_EtaIntercalibration_Stat237: 8.14558948e-06 + syst_JES_EtaIntercalibration_Stat238: 1.72050131e-05 + syst_JES_EtaIntercalibration_Stat239: 8.86829623e-06 syst_JES_EtaIntercalibration_Stat24: 0.0 - syst_JES_EtaIntercalibration_Stat240: 2.5740288103088513e-12 - syst_JES_EtaIntercalibration_Stat241: 9.72633130990303e-06 - syst_JES_EtaIntercalibration_Stat242: 1.6508037436352028e-05 - syst_JES_EtaIntercalibration_Stat243: 1.0364192895131777e-05 - syst_JES_EtaIntercalibration_Stat244: 2.020202596682488e-06 - syst_JES_EtaIntercalibration_Stat245: 1.3709182141907665e-07 + syst_JES_EtaIntercalibration_Stat240: 2.57402881e-12 + syst_JES_EtaIntercalibration_Stat241: 9.72633131e-06 + syst_JES_EtaIntercalibration_Stat242: 1.65080374e-05 + syst_JES_EtaIntercalibration_Stat243: 1.03641929e-05 + syst_JES_EtaIntercalibration_Stat244: 2.02020260e-06 + syst_JES_EtaIntercalibration_Stat245: 1.37091821e-07 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 syst_JES_EtaIntercalibration_Stat27: 0.0 - syst_JES_EtaIntercalibration_Stat28: 1.857624491117621e-18 - syst_JES_EtaIntercalibration_Stat29: 9.333607036939149e-16 + syst_JES_EtaIntercalibration_Stat28: 1.85762449e-18 + syst_JES_EtaIntercalibration_Stat29: 9.33360704e-16 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 2.781588400536643e-14 - syst_JES_EtaIntercalibration_Stat31: 1.398959280143636e-14 - syst_JES_EtaIntercalibration_Stat32: 1.1558028897697046e-17 - syst_JES_EtaIntercalibration_Stat33: 8.350243753927187e-17 - syst_JES_EtaIntercalibration_Stat34: 1.4731095139938416e-06 - syst_JES_EtaIntercalibration_Stat35: 1.2522746501095705e-09 - syst_JES_EtaIntercalibration_Stat36: 6.796578708637162e-15 - syst_JES_EtaIntercalibration_Stat37: 1.3561957823264309e-18 + syst_JES_EtaIntercalibration_Stat30: 2.78158840e-14 + syst_JES_EtaIntercalibration_Stat31: 1.39895928e-14 + syst_JES_EtaIntercalibration_Stat32: 1.15580289e-17 + syst_JES_EtaIntercalibration_Stat33: 8.35024375e-17 + syst_JES_EtaIntercalibration_Stat34: 1.47310951e-06 + syst_JES_EtaIntercalibration_Stat35: 1.25227465e-09 + syst_JES_EtaIntercalibration_Stat36: 6.79657871e-15 + syst_JES_EtaIntercalibration_Stat37: 1.35619578e-18 syst_JES_EtaIntercalibration_Stat38: 0.0 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 @@ -18741,20 +18741,20 @@ bins: syst_JES_EtaIntercalibration_Stat48: 0.0 syst_JES_EtaIntercalibration_Stat49: 0.0 syst_JES_EtaIntercalibration_Stat5: 0.0 - syst_JES_EtaIntercalibration_Stat50: 1.881873202423585e-18 - syst_JES_EtaIntercalibration_Stat51: 2.1944847703960035e-15 - syst_JES_EtaIntercalibration_Stat52: 3.736409831643205e-12 - syst_JES_EtaIntercalibration_Stat53: 2.175623075695788e-13 - syst_JES_EtaIntercalibration_Stat54: 7.915133147964094e-16 - syst_JES_EtaIntercalibration_Stat55: 7.555085868472972e-13 - syst_JES_EtaIntercalibration_Stat56: 1.4739752260841096e-06 - syst_JES_EtaIntercalibration_Stat57: 1.333679126048466e-06 - syst_JES_EtaIntercalibration_Stat58: 9.513084471794624e-15 - syst_JES_EtaIntercalibration_Stat59: 5.326775267457789e-18 + syst_JES_EtaIntercalibration_Stat50: 1.88187320e-18 + syst_JES_EtaIntercalibration_Stat51: 2.19448477e-15 + syst_JES_EtaIntercalibration_Stat52: 3.73640983e-12 + syst_JES_EtaIntercalibration_Stat53: 2.17562308e-13 + syst_JES_EtaIntercalibration_Stat54: 7.91513315e-16 + syst_JES_EtaIntercalibration_Stat55: 7.55508587e-13 + syst_JES_EtaIntercalibration_Stat56: 1.47397523e-06 + syst_JES_EtaIntercalibration_Stat57: 1.33367913e-06 + syst_JES_EtaIntercalibration_Stat58: 9.51308447e-15 + syst_JES_EtaIntercalibration_Stat59: 5.32677527e-18 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 8.949506522708389e-17 - syst_JES_EtaIntercalibration_Stat62: 8.949506522708389e-17 + syst_JES_EtaIntercalibration_Stat61: 8.94950652e-17 + syst_JES_EtaIntercalibration_Stat62: 8.94950652e-17 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 @@ -18762,218 +18762,218 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 1.857624491117621e-18 + syst_JES_EtaIntercalibration_Stat7: 1.85762449e-18 syst_JES_EtaIntercalibration_Stat70: 0.0 syst_JES_EtaIntercalibration_Stat71: 0.0 - syst_JES_EtaIntercalibration_Stat72: 8.002074730968212e-17 - syst_JES_EtaIntercalibration_Stat73: 4.610781952369901e-12 - syst_JES_EtaIntercalibration_Stat74: 1.3513211937167268e-05 - syst_JES_EtaIntercalibration_Stat75: 1.3492594299939873e-05 - syst_JES_EtaIntercalibration_Stat76: 1.2081660215694697e-13 - syst_JES_EtaIntercalibration_Stat77: 6.60653556109403e-13 - syst_JES_EtaIntercalibration_Stat78: 1.4193313348340505e-06 - syst_JES_EtaIntercalibration_Stat79: 7.275370324061226e-07 - syst_JES_EtaIntercalibration_Stat8: 4.079282626884291e-16 - syst_JES_EtaIntercalibration_Stat80: 9.501504127726305e-14 - syst_JES_EtaIntercalibration_Stat81: 1.4124874335724193e-17 - syst_JES_EtaIntercalibration_Stat82: 8.949506522708389e-17 - syst_JES_EtaIntercalibration_Stat83: 8.949506522708389e-17 - syst_JES_EtaIntercalibration_Stat84: 8.949506522708389e-17 + syst_JES_EtaIntercalibration_Stat72: 8.00207473e-17 + syst_JES_EtaIntercalibration_Stat73: 4.61078195e-12 + syst_JES_EtaIntercalibration_Stat74: 1.35132119e-05 + syst_JES_EtaIntercalibration_Stat75: 1.34925943e-05 + syst_JES_EtaIntercalibration_Stat76: 1.20816602e-13 + syst_JES_EtaIntercalibration_Stat77: 6.60653556e-13 + syst_JES_EtaIntercalibration_Stat78: 1.41933133e-06 + syst_JES_EtaIntercalibration_Stat79: 7.27537032e-07 + syst_JES_EtaIntercalibration_Stat8: 4.07928263e-16 + syst_JES_EtaIntercalibration_Stat80: 9.50150413e-14 + syst_JES_EtaIntercalibration_Stat81: 1.41248743e-17 + syst_JES_EtaIntercalibration_Stat82: 8.94950652e-17 + syst_JES_EtaIntercalibration_Stat83: 8.94950652e-17 + syst_JES_EtaIntercalibration_Stat84: 8.94950652e-17 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 syst_JES_EtaIntercalibration_Stat89: 0.0 - syst_JES_EtaIntercalibration_Stat9: 1.7258826234712487e-16 + syst_JES_EtaIntercalibration_Stat9: 1.72588262e-16 syst_JES_EtaIntercalibration_Stat90: 0.0 syst_JES_EtaIntercalibration_Stat91: 0.0 syst_JES_EtaIntercalibration_Stat92: 0.0 - syst_JES_EtaIntercalibration_Stat93: 7.098810234821043e-17 - syst_JES_EtaIntercalibration_Stat94: 5.9062364080266885e-12 - syst_JES_EtaIntercalibration_Stat95: 1.3504516608127816e-05 - syst_JES_EtaIntercalibration_Stat96: 1.385708673089333e-05 - syst_JES_EtaIntercalibration_Stat97: 2.015045802035279e-12 - syst_JES_EtaIntercalibration_Stat98: 3.25101866612605e-13 - syst_JES_EtaIntercalibration_Stat99: 3.052643864532708e-06 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.003931391072826512 - syst_JES_Flavour_Comp: 0.012138576636080525 - syst_JES_Flavour_Response: 0.004049503025063693 - syst_JES_Gjet_Generator: 0.01748695728250058 - syst_JES_Gjet_OOC: 0.014145613480863954 - syst_JES_Gjet_Purity: 0.0034030752269087437 - syst_JES_Gjet_Stat1: 4.0889585088993016e-05 - syst_JES_Gjet_Stat10: 0.00030677827498048165 - syst_JES_Gjet_Stat11: 0.0003778500595474348 - syst_JES_Gjet_Stat12: 0.0013159329874655472 - syst_JES_Gjet_Stat13: 0.0038612507610876557 - syst_JES_Gjet_Stat14: 0.006460500038696694 - syst_JES_Gjet_Stat15: 0.000151214648761289 - syst_JES_Gjet_Stat2: 1.4145861302868764e-05 - syst_JES_Gjet_Stat3: 4.7026554200791703e-05 - syst_JES_Gjet_Stat4: 4.093316625915958e-05 - syst_JES_Gjet_Stat5: 3.762983161004046e-05 - syst_JES_Gjet_Stat6: 0.000161270526445473 - syst_JES_Gjet_Stat7: 0.00018718762646072524 - syst_JES_Gjet_Stat8: 0.00016887605536309758 - syst_JES_Gjet_Stat9: 0.0002088275843848221 - syst_JES_Gjet_Veto: 0.013051651724973357 - syst_JES_Gjet_dPhi: 0.0013163671258429389 - syst_JES_LArESZee: 0.02674308648978274 - syst_JES_LArEsmear: 0.002052017543784653 - syst_JES_LAr_JVT: 0.0025607742481523043 - syst_JES_MJB_Alpha: 0.00018170254724411542 - syst_JES_MJB_Asym: 0.0012265009865466885 - syst_JES_MJB_Beta: 0.00014866372388716757 - syst_JES_MJB_Fragmentation: 0.0025060063846686423 - syst_JES_MJB_Stat1: 1.584056440755821e-05 - syst_JES_MJB_Stat10: 6.552364570901104e-05 - syst_JES_MJB_Stat11: 4.4968522357311235e-05 - syst_JES_MJB_Stat12: 6.352457064002873e-05 - syst_JES_MJB_Stat13: 6.37980836310935e-05 - syst_JES_MJB_Stat14: 7.295870527222916e-05 - syst_JES_MJB_Stat15: 2.2894896265325162e-05 - syst_JES_MJB_Stat16: 5.532862256554017e-07 - syst_JES_MJB_Stat2: 3.1785928883705754e-05 - syst_JES_MJB_Stat3: 0.00022350677842070026 - syst_JES_MJB_Stat4: 0.00014161467544008283 - syst_JES_MJB_Stat5: 0.00014952387769182553 - syst_JES_MJB_Stat6: 0.00010009990047447601 - syst_JES_MJB_Stat7: 0.00010215158674734328 - syst_JES_MJB_Stat8: 0.00011344524791722217 - syst_JES_MJB_Stat9: 3.980923802335332e-05 - syst_JES_MJB_Threshold: 0.0013521075733831241 - syst_JES_Pileup_MuOffset: 0.003055559645956858 - syst_JES_Pileup_NPVOffset: 0.0031378793396177615 - syst_JES_Pileup_Pt_term: 0.002553522028493195 - syst_JES_Pileup_Rho_topology: 0.005276633088438118 - syst_JES_PunchThrough_MC15: 0.0008749497171266471 - syst_JES_SingleParticle_HighPt: 6.549453774934212e-24 - syst_JES_Zjet_MC: 0.00900488005194961 - syst_JES_Zjet_MuScale: 0.0005247828193643538 - syst_JES_Zjet_MuSmearID: 0.00017377170425590004 - syst_JES_Zjet_MuSmearMS: 0.002552009796219442 - syst_JES_Zjet_OOC: 0.004340144006827423 - syst_JES_Zjet_Stat1: 0.0002308333327316486 - syst_JES_Zjet_Stat10: 0.0003237007723191281 - syst_JES_Zjet_Stat11: 0.00045912223862496583 - syst_JES_Zjet_Stat12: 0.0014685042560374146 - syst_JES_Zjet_Stat13: 0.002771556376839555 - syst_JES_Zjet_Stat2: 1.2921826757467382e-05 - syst_JES_Zjet_Stat3: 8.764437046952873e-05 - syst_JES_Zjet_Stat4: 5.7749750648812334e-05 - syst_JES_Zjet_Stat5: 0.00012935946689361392 - syst_JES_Zjet_Stat6: 0.0001581824581772581 - syst_JES_Zjet_Stat7: 0.00010373696291582861 - syst_JES_Zjet_Stat8: 0.00011629957125888298 - syst_JES_Zjet_Stat9: 0.00022394698033239923 - syst_JES_Zjet_Veto: 0.0009277105300146161 - syst_JES_Zjet_dPhi: 0.0007625797859896365 - syst_PRW: 0.0006577 - syst_Unfolding_bias: 0.0006836 - syst_cleaning: 0.00502208131654596 + syst_JES_EtaIntercalibration_Stat93: 7.09881023e-17 + syst_JES_EtaIntercalibration_Stat94: 5.90623641e-12 + syst_JES_EtaIntercalibration_Stat95: 1.35045166e-05 + syst_JES_EtaIntercalibration_Stat96: 1.38570867e-05 + syst_JES_EtaIntercalibration_Stat97: 2.01504580e-12 + syst_JES_EtaIntercalibration_Stat98: 3.25101867e-13 + syst_JES_EtaIntercalibration_Stat99: 3.05264386e-06 + syst_JES_EtaIntercalibration_TotalStat_MJB: 3.93139107e-03 + syst_JES_Flavour_Comp: 1.21385766e-02 + syst_JES_Flavour_Response: 4.04950303e-03 + syst_JES_Gjet_Generator: 1.74869573e-02 + syst_JES_Gjet_OOC: 1.41456135e-02 + syst_JES_Gjet_Purity: 3.40307523e-03 + syst_JES_Gjet_Stat1: 4.08895851e-05 + syst_JES_Gjet_Stat10: 3.06778275e-04 + syst_JES_Gjet_Stat11: 3.77850060e-04 + syst_JES_Gjet_Stat12: 1.31593299e-03 + syst_JES_Gjet_Stat13: 3.86125076e-03 + syst_JES_Gjet_Stat14: 6.46050004e-03 + syst_JES_Gjet_Stat15: 1.51214649e-04 + syst_JES_Gjet_Stat2: 1.41458613e-05 + syst_JES_Gjet_Stat3: 4.70265542e-05 + syst_JES_Gjet_Stat4: 4.09331663e-05 + syst_JES_Gjet_Stat5: 3.76298316e-05 + syst_JES_Gjet_Stat6: 1.61270526e-04 + syst_JES_Gjet_Stat7: 1.87187626e-04 + syst_JES_Gjet_Stat8: 1.68876055e-04 + syst_JES_Gjet_Stat9: 2.08827584e-04 + syst_JES_Gjet_Veto: 1.30516517e-02 + syst_JES_Gjet_dPhi: 1.31636713e-03 + syst_JES_LArESZee: 2.67430865e-02 + syst_JES_LArEsmear: 2.05201754e-03 + syst_JES_LAr_JVT: 2.56077425e-03 + syst_JES_MJB_Alpha: 1.81702547e-04 + syst_JES_MJB_Asym: 1.22650099e-03 + syst_JES_MJB_Beta: 1.48663724e-04 + syst_JES_MJB_Fragmentation: 2.50600638e-03 + syst_JES_MJB_Stat1: 1.58405644e-05 + syst_JES_MJB_Stat10: 6.55236457e-05 + syst_JES_MJB_Stat11: 4.49685224e-05 + syst_JES_MJB_Stat12: 6.35245706e-05 + syst_JES_MJB_Stat13: 6.37980836e-05 + syst_JES_MJB_Stat14: 7.29587053e-05 + syst_JES_MJB_Stat15: 2.28948963e-05 + syst_JES_MJB_Stat16: 5.53286226e-07 + syst_JES_MJB_Stat2: 3.17859289e-05 + syst_JES_MJB_Stat3: 2.23506778e-04 + syst_JES_MJB_Stat4: 1.41614675e-04 + syst_JES_MJB_Stat5: 1.49523878e-04 + syst_JES_MJB_Stat6: 1.00099900e-04 + syst_JES_MJB_Stat7: 1.02151587e-04 + syst_JES_MJB_Stat8: 1.13445248e-04 + syst_JES_MJB_Stat9: 3.98092380e-05 + syst_JES_MJB_Threshold: 1.35210757e-03 + syst_JES_Pileup_MuOffset: 3.05555965e-03 + syst_JES_Pileup_NPVOffset: 3.13787934e-03 + syst_JES_Pileup_Pt_term: 2.55352203e-03 + syst_JES_Pileup_Rho_topology: 5.27663309e-03 + syst_JES_PunchThrough_MC15: 8.74949717e-04 + syst_JES_SingleParticle_HighPt: 6.54945377e-24 + syst_JES_Zjet_MC: 9.00488005e-03 + syst_JES_Zjet_MuScale: 5.24782819e-04 + syst_JES_Zjet_MuSmearID: 1.73771704e-04 + syst_JES_Zjet_MuSmearMS: 2.55200980e-03 + syst_JES_Zjet_OOC: 4.34014401e-03 + syst_JES_Zjet_Stat1: 2.30833333e-04 + syst_JES_Zjet_Stat10: 3.23700772e-04 + syst_JES_Zjet_Stat11: 4.59122239e-04 + syst_JES_Zjet_Stat12: 1.46850426e-03 + syst_JES_Zjet_Stat13: 2.77155638e-03 + syst_JES_Zjet_Stat2: 1.29218268e-05 + syst_JES_Zjet_Stat3: 8.76443705e-05 + syst_JES_Zjet_Stat4: 5.77497506e-05 + syst_JES_Zjet_Stat5: 1.29359467e-04 + syst_JES_Zjet_Stat6: 1.58182458e-04 + syst_JES_Zjet_Stat7: 1.03736963e-04 + syst_JES_Zjet_Stat8: 1.16299571e-04 + syst_JES_Zjet_Stat9: 2.23946980e-04 + syst_JES_Zjet_Veto: 9.27710530e-04 + syst_JES_Zjet_dPhi: 7.62579786e-04 + syst_PRW: 6.57700000e-04 + syst_Unfolding_bias: 6.83600000e-04 + syst_cleaning: 5.02208132e-03 syst_lumi: 0.01788 -- stat: 0.0022066 +- stat: 2.20660000e-03 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.001482034962475582 - syst_JER_NP1: 0.00015931028686183452 - syst_JER_NP2: 0.0005275581765786594 - syst_JER_NP3: 0.0002645571582853127 - syst_JER_NP4: 0.00017632375761649364 - syst_JER_NP5: 0.00020254433662781094 - syst_JER_NP6: 0.000170692936804661 - syst_JER_NP7: 7.895550060002152e-05 - syst_JER_NP8: 0.00033017414723142695 - syst_JES_EtaIntercalibration_Modelling: 0.00821623823595689 - syst_JES_EtaIntercalibration_NonClosure: 3.338268123967876e-11 + syst_JER_NP0: 1.48203496e-03 + syst_JER_NP1: 1.59310287e-04 + syst_JER_NP2: 5.27558177e-04 + syst_JER_NP3: 2.64557158e-04 + syst_JER_NP4: 1.76323758e-04 + syst_JER_NP5: 2.02544337e-04 + syst_JER_NP6: 1.70692937e-04 + syst_JER_NP7: 7.89555006e-05 + syst_JER_NP8: 3.30174147e-04 + syst_JES_EtaIntercalibration_Modelling: 8.21623824e-03 + syst_JES_EtaIntercalibration_NonClosure: 3.33826812e-11 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 1.124868186547636e-06 - syst_JES_EtaIntercalibration_Stat101: 1.6620998050715097e-14 - syst_JES_EtaIntercalibration_Stat102: 1.7224651412075078e-17 - syst_JES_EtaIntercalibration_Stat103: 2.0585423847956107e-17 - syst_JES_EtaIntercalibration_Stat104: 2.0585423847956107e-17 - syst_JES_EtaIntercalibration_Stat105: 2.0585423847956107e-17 + syst_JES_EtaIntercalibration_Stat100: 1.12486819e-06 + syst_JES_EtaIntercalibration_Stat101: 1.66209981e-14 + syst_JES_EtaIntercalibration_Stat102: 1.72246514e-17 + syst_JES_EtaIntercalibration_Stat103: 2.05854238e-17 + syst_JES_EtaIntercalibration_Stat104: 2.05854238e-17 + syst_JES_EtaIntercalibration_Stat105: 2.05854238e-17 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 3.411793680749175e-13 - syst_JES_EtaIntercalibration_Stat111: 3.411793680749175e-13 + syst_JES_EtaIntercalibration_Stat110: 3.41179368e-13 + syst_JES_EtaIntercalibration_Stat111: 3.41179368e-13 syst_JES_EtaIntercalibration_Stat112: 0.0 - syst_JES_EtaIntercalibration_Stat113: 1.0086365454414191e-15 - syst_JES_EtaIntercalibration_Stat114: 5.676478953039462e-06 - syst_JES_EtaIntercalibration_Stat115: 8.450860355608771e-07 - syst_JES_EtaIntercalibration_Stat116: 7.868654107914517e-07 - syst_JES_EtaIntercalibration_Stat117: 5.8908361061907e-10 - syst_JES_EtaIntercalibration_Stat118: 8.766664677672357e-07 - syst_JES_EtaIntercalibration_Stat119: 1.8853033462814411e-06 - syst_JES_EtaIntercalibration_Stat12: 1.1282740994022109e-13 - syst_JES_EtaIntercalibration_Stat120: 7.441964256834347e-07 - syst_JES_EtaIntercalibration_Stat121: 2.2940994191211504e-09 - syst_JES_EtaIntercalibration_Stat122: 1.1517304906422333e-15 - syst_JES_EtaIntercalibration_Stat123: 2.0585423847956107e-17 - syst_JES_EtaIntercalibration_Stat124: 2.0585423847956107e-17 - syst_JES_EtaIntercalibration_Stat125: 2.0585423847956107e-17 + syst_JES_EtaIntercalibration_Stat113: 1.00863655e-15 + syst_JES_EtaIntercalibration_Stat114: 5.67647895e-06 + syst_JES_EtaIntercalibration_Stat115: 8.45086036e-07 + syst_JES_EtaIntercalibration_Stat116: 7.86865411e-07 + syst_JES_EtaIntercalibration_Stat117: 5.89083611e-10 + syst_JES_EtaIntercalibration_Stat118: 8.76666468e-07 + syst_JES_EtaIntercalibration_Stat119: 1.88530335e-06 + syst_JES_EtaIntercalibration_Stat12: 1.12827410e-13 + syst_JES_EtaIntercalibration_Stat120: 7.44196426e-07 + syst_JES_EtaIntercalibration_Stat121: 2.29409942e-09 + syst_JES_EtaIntercalibration_Stat122: 1.15173049e-15 + syst_JES_EtaIntercalibration_Stat123: 2.05854238e-17 + syst_JES_EtaIntercalibration_Stat124: 2.05854238e-17 + syst_JES_EtaIntercalibration_Stat125: 2.05854238e-17 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 2.0178391908177424e-10 - syst_JES_EtaIntercalibration_Stat129: 2.016704491574341e-10 - syst_JES_EtaIntercalibration_Stat13: 1.4343527403883886e-13 - syst_JES_EtaIntercalibration_Stat130: 3.411793680749175e-13 - syst_JES_EtaIntercalibration_Stat131: 1.271325292755556e-18 - syst_JES_EtaIntercalibration_Stat132: 3.9408689801457495e-11 - syst_JES_EtaIntercalibration_Stat133: 5.40032611330447e-06 - syst_JES_EtaIntercalibration_Stat134: 5.143957328749919e-06 - syst_JES_EtaIntercalibration_Stat135: 1.9436278115935673e-06 - syst_JES_EtaIntercalibration_Stat136: 1.0597387105447267e-06 - syst_JES_EtaIntercalibration_Stat137: 9.558992729362231e-07 - syst_JES_EtaIntercalibration_Stat138: 3.7999727301653103e-06 - syst_JES_EtaIntercalibration_Stat139: 5.409390238280097e-06 - syst_JES_EtaIntercalibration_Stat14: 2.649171710176598e-18 - syst_JES_EtaIntercalibration_Stat140: 1.0356316949089575e-06 - syst_JES_EtaIntercalibration_Stat141: 1.9286385796434902e-10 + syst_JES_EtaIntercalibration_Stat128: 2.01783919e-10 + syst_JES_EtaIntercalibration_Stat129: 2.01670449e-10 + syst_JES_EtaIntercalibration_Stat13: 1.43435274e-13 + syst_JES_EtaIntercalibration_Stat130: 3.41179368e-13 + syst_JES_EtaIntercalibration_Stat131: 1.27132529e-18 + syst_JES_EtaIntercalibration_Stat132: 3.94086898e-11 + syst_JES_EtaIntercalibration_Stat133: 5.40032611e-06 + syst_JES_EtaIntercalibration_Stat134: 5.14395733e-06 + syst_JES_EtaIntercalibration_Stat135: 1.94362781e-06 + syst_JES_EtaIntercalibration_Stat136: 1.05973871e-06 + syst_JES_EtaIntercalibration_Stat137: 9.55899273e-07 + syst_JES_EtaIntercalibration_Stat138: 3.79997273e-06 + syst_JES_EtaIntercalibration_Stat139: 5.40939024e-06 + syst_JES_EtaIntercalibration_Stat14: 2.64917171e-18 + syst_JES_EtaIntercalibration_Stat140: 1.03563169e-06 + syst_JES_EtaIntercalibration_Stat141: 1.92863858e-10 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 2.0585423847956107e-17 - syst_JES_EtaIntercalibration_Stat144: 2.0585423847956107e-17 + syst_JES_EtaIntercalibration_Stat143: 2.05854238e-17 + syst_JES_EtaIntercalibration_Stat144: 2.05854238e-17 syst_JES_EtaIntercalibration_Stat145: 0.0 - syst_JES_EtaIntercalibration_Stat146: 2.0178391908177424e-10 - syst_JES_EtaIntercalibration_Stat147: 2.016704491574341e-10 + syst_JES_EtaIntercalibration_Stat146: 2.01783919e-10 + syst_JES_EtaIntercalibration_Stat147: 2.01670449e-10 syst_JES_EtaIntercalibration_Stat148: 0.0 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 1.0706394753020272e-14 - syst_JES_EtaIntercalibration_Stat151: 5.39884645828169e-06 - syst_JES_EtaIntercalibration_Stat152: 4.980195252196443e-06 - syst_JES_EtaIntercalibration_Stat153: 8.257494690733988e-06 - syst_JES_EtaIntercalibration_Stat154: 4.1919147901048754e-07 - syst_JES_EtaIntercalibration_Stat155: 2.187868762060467e-06 - syst_JES_EtaIntercalibration_Stat156: 9.265787122527693e-06 - syst_JES_EtaIntercalibration_Stat157: 5.405887523802173e-06 - syst_JES_EtaIntercalibration_Stat158: 1.2587277574996113e-06 - syst_JES_EtaIntercalibration_Stat159: 1.9347428734240392e-10 + syst_JES_EtaIntercalibration_Stat150: 1.07063948e-14 + syst_JES_EtaIntercalibration_Stat151: 5.39884646e-06 + syst_JES_EtaIntercalibration_Stat152: 4.98019525e-06 + syst_JES_EtaIntercalibration_Stat153: 8.25749469e-06 + syst_JES_EtaIntercalibration_Stat154: 4.19191479e-07 + syst_JES_EtaIntercalibration_Stat155: 2.18786876e-06 + syst_JES_EtaIntercalibration_Stat156: 9.26578712e-06 + syst_JES_EtaIntercalibration_Stat157: 5.40588752e-06 + syst_JES_EtaIntercalibration_Stat158: 1.25872776e-06 + syst_JES_EtaIntercalibration_Stat159: 1.93474287e-10 syst_JES_EtaIntercalibration_Stat16: 0.0 syst_JES_EtaIntercalibration_Stat160: 0.0 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 - syst_JES_EtaIntercalibration_Stat164: 2.0178391908177424e-10 + syst_JES_EtaIntercalibration_Stat164: 2.01783919e-10 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 - syst_JES_EtaIntercalibration_Stat168: 6.816485953187317e-13 - syst_JES_EtaIntercalibration_Stat169: 9.582568757906203e-07 + syst_JES_EtaIntercalibration_Stat168: 6.81648595e-13 + syst_JES_EtaIntercalibration_Stat169: 9.58256876e-07 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 1.0878236897585932e-05 - syst_JES_EtaIntercalibration_Stat171: 7.570640725856695e-06 - syst_JES_EtaIntercalibration_Stat172: 7.14311211937766e-07 - syst_JES_EtaIntercalibration_Stat173: 3.5732291768091226e-06 - syst_JES_EtaIntercalibration_Stat174: 1.2573373572752859e-05 - syst_JES_EtaIntercalibration_Stat175: 7.181248690165242e-06 - syst_JES_EtaIntercalibration_Stat176: 1.940971122860088e-06 - syst_JES_EtaIntercalibration_Stat177: 1.6134597632107225e-09 + syst_JES_EtaIntercalibration_Stat170: 1.08782369e-05 + syst_JES_EtaIntercalibration_Stat171: 7.57064073e-06 + syst_JES_EtaIntercalibration_Stat172: 7.14311212e-07 + syst_JES_EtaIntercalibration_Stat173: 3.57322918e-06 + syst_JES_EtaIntercalibration_Stat174: 1.25733736e-05 + syst_JES_EtaIntercalibration_Stat175: 7.18124869e-06 + syst_JES_EtaIntercalibration_Stat176: 1.94097112e-06 + syst_JES_EtaIntercalibration_Stat177: 1.61345976e-09 syst_JES_EtaIntercalibration_Stat178: 0.0 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 @@ -18982,17 +18982,17 @@ bins: syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 syst_JES_EtaIntercalibration_Stat184: 0.0 - syst_JES_EtaIntercalibration_Stat185: 1.8347154413355223e-08 - syst_JES_EtaIntercalibration_Stat186: 5.572566083053658e-06 - syst_JES_EtaIntercalibration_Stat187: 6.338840647153072e-05 - syst_JES_EtaIntercalibration_Stat188: 5.5187033576737926e-05 - syst_JES_EtaIntercalibration_Stat189: 5.952449138799927e-06 + syst_JES_EtaIntercalibration_Stat185: 1.83471544e-08 + syst_JES_EtaIntercalibration_Stat186: 5.57256608e-06 + syst_JES_EtaIntercalibration_Stat187: 6.33884065e-05 + syst_JES_EtaIntercalibration_Stat188: 5.51870336e-05 + syst_JES_EtaIntercalibration_Stat189: 5.95244914e-06 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 9.528728246728416e-06 - syst_JES_EtaIntercalibration_Stat191: 6.0865181138315855e-05 - syst_JES_EtaIntercalibration_Stat192: 6.964765179099724e-05 - syst_JES_EtaIntercalibration_Stat193: 5.869629183347105e-06 - syst_JES_EtaIntercalibration_Stat194: 1.4990899739508633e-09 + syst_JES_EtaIntercalibration_Stat190: 9.52872825e-06 + syst_JES_EtaIntercalibration_Stat191: 6.08651811e-05 + syst_JES_EtaIntercalibration_Stat192: 6.96476518e-05 + syst_JES_EtaIntercalibration_Stat193: 5.86962918e-06 + syst_JES_EtaIntercalibration_Stat194: 1.49908997e-09 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 syst_JES_EtaIntercalibration_Stat197: 0.0 @@ -19000,70 +19000,70 @@ bins: syst_JES_EtaIntercalibration_Stat199: 0.0 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 3.2970176626005506e-09 - syst_JES_EtaIntercalibration_Stat201: 1.584893687286311e-05 - syst_JES_EtaIntercalibration_Stat202: 0.00012185034047962279 - syst_JES_EtaIntercalibration_Stat203: 0.00012096244293168024 - syst_JES_EtaIntercalibration_Stat204: 1.1946651664797129e-05 - syst_JES_EtaIntercalibration_Stat205: 1.1122364260803437e-05 - syst_JES_EtaIntercalibration_Stat206: 0.00012453286102471106 - syst_JES_EtaIntercalibration_Stat207: 0.0001287559422900551 - syst_JES_EtaIntercalibration_Stat208: 1.4278273705178787e-05 - syst_JES_EtaIntercalibration_Stat209: 5.100878333398395e-07 + syst_JES_EtaIntercalibration_Stat200: 3.29701766e-09 + syst_JES_EtaIntercalibration_Stat201: 1.58489369e-05 + syst_JES_EtaIntercalibration_Stat202: 1.21850340e-04 + syst_JES_EtaIntercalibration_Stat203: 1.20962443e-04 + syst_JES_EtaIntercalibration_Stat204: 1.19466517e-05 + syst_JES_EtaIntercalibration_Stat205: 1.11223643e-05 + syst_JES_EtaIntercalibration_Stat206: 1.24532861e-04 + syst_JES_EtaIntercalibration_Stat207: 1.28755942e-04 + syst_JES_EtaIntercalibration_Stat208: 1.42782737e-05 + syst_JES_EtaIntercalibration_Stat209: 5.10087833e-07 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 syst_JES_EtaIntercalibration_Stat211: 0.0 syst_JES_EtaIntercalibration_Stat212: 0.0 - syst_JES_EtaIntercalibration_Stat213: 1.8286534268895788e-08 - syst_JES_EtaIntercalibration_Stat214: 8.076702978319805e-06 - syst_JES_EtaIntercalibration_Stat215: 0.00012803552983449554 - syst_JES_EtaIntercalibration_Stat216: 0.0001303093400336292 - syst_JES_EtaIntercalibration_Stat217: 1.0650816306743817e-05 - syst_JES_EtaIntercalibration_Stat218: 1.283002411338342e-05 - syst_JES_EtaIntercalibration_Stat219: 0.00012083762700417449 + syst_JES_EtaIntercalibration_Stat213: 1.82865343e-08 + syst_JES_EtaIntercalibration_Stat214: 8.07670298e-06 + syst_JES_EtaIntercalibration_Stat215: 1.28035530e-04 + syst_JES_EtaIntercalibration_Stat216: 1.30309340e-04 + syst_JES_EtaIntercalibration_Stat217: 1.06508163e-05 + syst_JES_EtaIntercalibration_Stat218: 1.28300241e-05 + syst_JES_EtaIntercalibration_Stat219: 1.20837627e-04 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 0.00013538350444201096 - syst_JES_EtaIntercalibration_Stat221: 8.367307616551457e-06 - syst_JES_EtaIntercalibration_Stat222: 4.988054029378591e-07 + syst_JES_EtaIntercalibration_Stat220: 1.35383504e-04 + syst_JES_EtaIntercalibration_Stat221: 8.36730762e-06 + syst_JES_EtaIntercalibration_Stat222: 4.98805403e-07 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 - syst_JES_EtaIntercalibration_Stat225: 7.233541519891899e-07 - syst_JES_EtaIntercalibration_Stat226: 1.388641015525611e-05 - syst_JES_EtaIntercalibration_Stat227: 0.00026714929814618645 - syst_JES_EtaIntercalibration_Stat228: 0.00019742225685063982 - syst_JES_EtaIntercalibration_Stat229: 1.621465820638844e-05 + syst_JES_EtaIntercalibration_Stat225: 7.23354152e-07 + syst_JES_EtaIntercalibration_Stat226: 1.38864102e-05 + syst_JES_EtaIntercalibration_Stat227: 2.67149298e-04 + syst_JES_EtaIntercalibration_Stat228: 1.97422257e-04 + syst_JES_EtaIntercalibration_Stat229: 1.62146582e-05 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 1.3968278347742073e-05 - syst_JES_EtaIntercalibration_Stat231: 0.0002906976780093023 - syst_JES_EtaIntercalibration_Stat232: 0.00026869300325836544 - syst_JES_EtaIntercalibration_Stat233: 1.4131140037166146e-05 - syst_JES_EtaIntercalibration_Stat234: 8.232641070762165e-07 + syst_JES_EtaIntercalibration_Stat230: 1.39682783e-05 + syst_JES_EtaIntercalibration_Stat231: 2.90697678e-04 + syst_JES_EtaIntercalibration_Stat232: 2.68693003e-04 + syst_JES_EtaIntercalibration_Stat233: 1.41311400e-05 + syst_JES_EtaIntercalibration_Stat234: 8.23264107e-07 syst_JES_EtaIntercalibration_Stat235: 0.0 - syst_JES_EtaIntercalibration_Stat236: 1.4263438400329706e-10 - syst_JES_EtaIntercalibration_Stat237: 4.739017065805945e-06 - syst_JES_EtaIntercalibration_Stat238: 3.528730189459092e-05 - syst_JES_EtaIntercalibration_Stat239: 1.0309393519989427e-05 + syst_JES_EtaIntercalibration_Stat236: 1.42634384e-10 + syst_JES_EtaIntercalibration_Stat237: 4.73901707e-06 + syst_JES_EtaIntercalibration_Stat238: 3.52873019e-05 + syst_JES_EtaIntercalibration_Stat239: 1.03093935e-05 syst_JES_EtaIntercalibration_Stat24: 0.0 - syst_JES_EtaIntercalibration_Stat240: 1.4490488493059855e-10 - syst_JES_EtaIntercalibration_Stat241: 1.021130553602223e-05 - syst_JES_EtaIntercalibration_Stat242: 2.4194872907291743e-05 - syst_JES_EtaIntercalibration_Stat243: 1.2360178073150889e-05 - syst_JES_EtaIntercalibration_Stat244: 2.239813826655019e-06 - syst_JES_EtaIntercalibration_Stat245: 2.6361813291198314e-07 + syst_JES_EtaIntercalibration_Stat240: 1.44904885e-10 + syst_JES_EtaIntercalibration_Stat241: 1.02113055e-05 + syst_JES_EtaIntercalibration_Stat242: 2.41948729e-05 + syst_JES_EtaIntercalibration_Stat243: 1.23601781e-05 + syst_JES_EtaIntercalibration_Stat244: 2.23981383e-06 + syst_JES_EtaIntercalibration_Stat245: 2.63618133e-07 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 syst_JES_EtaIntercalibration_Stat27: 0.0 - syst_JES_EtaIntercalibration_Stat28: 4.405471229051439e-19 - syst_JES_EtaIntercalibration_Stat29: 1.6723267399270392e-16 + syst_JES_EtaIntercalibration_Stat28: 4.40547123e-19 + syst_JES_EtaIntercalibration_Stat29: 1.67232674e-16 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 4.360187393621976e-15 - syst_JES_EtaIntercalibration_Stat31: 2.323148456298047e-15 - syst_JES_EtaIntercalibration_Stat32: 2.5173996007785495e-18 - syst_JES_EtaIntercalibration_Stat33: 3.118439430227882e-17 - syst_JES_EtaIntercalibration_Stat34: 9.50636130940713e-07 - syst_JES_EtaIntercalibration_Stat35: 1.8896706246922486e-10 - syst_JES_EtaIntercalibration_Stat36: 1.1210508938937606e-15 - syst_JES_EtaIntercalibration_Stat37: 3.215552324251621e-19 + syst_JES_EtaIntercalibration_Stat30: 4.36018739e-15 + syst_JES_EtaIntercalibration_Stat31: 2.32314846e-15 + syst_JES_EtaIntercalibration_Stat32: 2.51739960e-18 + syst_JES_EtaIntercalibration_Stat33: 3.11843943e-17 + syst_JES_EtaIntercalibration_Stat34: 9.50636131e-07 + syst_JES_EtaIntercalibration_Stat35: 1.88967062e-10 + syst_JES_EtaIntercalibration_Stat36: 1.12105089e-15 + syst_JES_EtaIntercalibration_Stat37: 3.21555232e-19 syst_JES_EtaIntercalibration_Stat38: 0.0 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 @@ -19078,20 +19078,20 @@ bins: syst_JES_EtaIntercalibration_Stat48: 0.0 syst_JES_EtaIntercalibration_Stat49: 0.0 syst_JES_EtaIntercalibration_Stat5: 0.0 - syst_JES_EtaIntercalibration_Stat50: 4.462628905701211e-19 - syst_JES_EtaIntercalibration_Stat51: 3.771913672129838e-16 - syst_JES_EtaIntercalibration_Stat52: 5.276888571876423e-13 - syst_JES_EtaIntercalibration_Stat53: 3.275776083235849e-14 - syst_JES_EtaIntercalibration_Stat54: 1.353979758895974e-16 - syst_JES_EtaIntercalibration_Stat55: 1.1202712296925016e-13 - syst_JES_EtaIntercalibration_Stat56: 9.513289042143037e-07 - syst_JES_EtaIntercalibration_Stat57: 1.1116302090254555e-06 - syst_JES_EtaIntercalibration_Stat58: 1.5406983741148037e-15 - syst_JES_EtaIntercalibration_Stat59: 1.2222817719331334e-18 + syst_JES_EtaIntercalibration_Stat50: 4.46262891e-19 + syst_JES_EtaIntercalibration_Stat51: 3.77191367e-16 + syst_JES_EtaIntercalibration_Stat52: 5.27688857e-13 + syst_JES_EtaIntercalibration_Stat53: 3.27577608e-14 + syst_JES_EtaIntercalibration_Stat54: 1.35397976e-16 + syst_JES_EtaIntercalibration_Stat55: 1.12027123e-13 + syst_JES_EtaIntercalibration_Stat56: 9.51328904e-07 + syst_JES_EtaIntercalibration_Stat57: 1.11163021e-06 + syst_JES_EtaIntercalibration_Stat58: 1.54069837e-15 + syst_JES_EtaIntercalibration_Stat59: 1.22228177e-18 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 2.0585423847956107e-17 - syst_JES_EtaIntercalibration_Stat62: 2.0585423847956107e-17 + syst_JES_EtaIntercalibration_Stat61: 2.05854238e-17 + syst_JES_EtaIntercalibration_Stat62: 2.05854238e-17 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 @@ -19099,218 +19099,218 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 4.405471229051439e-19 + syst_JES_EtaIntercalibration_Stat7: 4.40547123e-19 syst_JES_EtaIntercalibration_Stat70: 0.0 syst_JES_EtaIntercalibration_Stat71: 0.0 - syst_JES_EtaIntercalibration_Stat72: 1.388238722266455e-17 - syst_JES_EtaIntercalibration_Stat73: 6.666645973223718e-13 - syst_JES_EtaIntercalibration_Stat74: 8.584758586722168e-06 - syst_JES_EtaIntercalibration_Stat75: 8.587495753658844e-06 - syst_JES_EtaIntercalibration_Stat76: 1.7561122878392484e-14 - syst_JES_EtaIntercalibration_Stat77: 9.765367759075947e-14 - syst_JES_EtaIntercalibration_Stat78: 9.163289115185654e-07 - syst_JES_EtaIntercalibration_Stat79: 6.955159926249725e-07 - syst_JES_EtaIntercalibration_Stat8: 6.929185864876192e-17 - syst_JES_EtaIntercalibration_Stat80: 1.4933111157089805e-14 - syst_JES_EtaIntercalibration_Stat81: 3.137610037911021e-18 - syst_JES_EtaIntercalibration_Stat82: 2.0585423847956107e-17 - syst_JES_EtaIntercalibration_Stat83: 2.0585423847956107e-17 - syst_JES_EtaIntercalibration_Stat84: 2.0585423847956107e-17 + syst_JES_EtaIntercalibration_Stat72: 1.38823872e-17 + syst_JES_EtaIntercalibration_Stat73: 6.66664597e-13 + syst_JES_EtaIntercalibration_Stat74: 8.58475859e-06 + syst_JES_EtaIntercalibration_Stat75: 8.58749575e-06 + syst_JES_EtaIntercalibration_Stat76: 1.75611229e-14 + syst_JES_EtaIntercalibration_Stat77: 9.76536776e-14 + syst_JES_EtaIntercalibration_Stat78: 9.16328912e-07 + syst_JES_EtaIntercalibration_Stat79: 6.95515993e-07 + syst_JES_EtaIntercalibration_Stat8: 6.92918586e-17 + syst_JES_EtaIntercalibration_Stat80: 1.49331112e-14 + syst_JES_EtaIntercalibration_Stat81: 3.13761004e-18 + syst_JES_EtaIntercalibration_Stat82: 2.05854238e-17 + syst_JES_EtaIntercalibration_Stat83: 2.05854238e-17 + syst_JES_EtaIntercalibration_Stat84: 2.05854238e-17 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 syst_JES_EtaIntercalibration_Stat89: 0.0 - syst_JES_EtaIntercalibration_Stat9: 3.279612129505561e-17 + syst_JES_EtaIntercalibration_Stat9: 3.27961213e-17 syst_JES_EtaIntercalibration_Stat90: 0.0 syst_JES_EtaIntercalibration_Stat91: 0.0 syst_JES_EtaIntercalibration_Stat92: 0.0 - syst_JES_EtaIntercalibration_Stat93: 1.2115695398944298e-17 - syst_JES_EtaIntercalibration_Stat94: 8.602352091579372e-13 - syst_JES_EtaIntercalibration_Stat95: 8.582997513503078e-06 - syst_JES_EtaIntercalibration_Stat96: 8.823563381650295e-06 - syst_JES_EtaIntercalibration_Stat97: 2.941472397881714e-13 - syst_JES_EtaIntercalibration_Stat98: 4.8902706213460205e-14 - syst_JES_EtaIntercalibration_Stat99: 1.9667294664954276e-06 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0027450633417099865 - syst_JES_Flavour_Comp: 0.008066402791827347 - syst_JES_Flavour_Response: 0.0022042400050811166 - syst_JES_Gjet_Generator: 0.011435911365081491 - syst_JES_Gjet_OOC: 0.009327467716374044 - syst_JES_Gjet_Purity: 0.002119369953547516 - syst_JES_Gjet_Stat1: 2.72117488412634e-05 - syst_JES_Gjet_Stat10: 0.00019655286184637452 - syst_JES_Gjet_Stat11: 0.0002357580751533232 - syst_JES_Gjet_Stat12: 0.0007804598820567269 - syst_JES_Gjet_Stat13: 0.0024256271354023066 - syst_JES_Gjet_Stat14: 0.004812163416801221 - syst_JES_Gjet_Stat15: 0.0010148078771373427 - syst_JES_Gjet_Stat2: 2.0919622624464333e-05 - syst_JES_Gjet_Stat3: 3.204197103799952e-05 - syst_JES_Gjet_Stat4: 3.049893563716609e-05 - syst_JES_Gjet_Stat5: 2.9178737121404003e-05 - syst_JES_Gjet_Stat6: 9.340096519843894e-05 - syst_JES_Gjet_Stat7: 0.00011776156503715464 - syst_JES_Gjet_Stat8: 0.00011129788171838671 - syst_JES_Gjet_Stat9: 0.0001336948580724031 - syst_JES_Gjet_Veto: 0.008858521998618054 - syst_JES_Gjet_dPhi: 0.0008877868142183686 - syst_JES_LArESZee: 0.017594791132605127 - syst_JES_LArEsmear: 0.0013918816903745806 - syst_JES_LAr_JVT: 0.0017253152610465137 - syst_JES_MJB_Alpha: 0.00011687992246318441 - syst_JES_MJB_Asym: 0.001001796959218783 - syst_JES_MJB_Beta: 0.00011152166011587166 - syst_JES_MJB_Fragmentation: 0.001528069615560757 - syst_JES_MJB_Stat1: 1.0179547229985232e-05 - syst_JES_MJB_Stat10: 7.09682286308458e-05 - syst_JES_MJB_Stat11: 1.6645200592062567e-05 - syst_JES_MJB_Stat12: 3.565946601885676e-05 - syst_JES_MJB_Stat13: 5.353587768963912e-05 - syst_JES_MJB_Stat14: 7.012740477160123e-05 - syst_JES_MJB_Stat15: 3.68024921982194e-05 - syst_JES_MJB_Stat16: 3.3094866531684334e-06 - syst_JES_MJB_Stat2: 2.009439971733418e-05 - syst_JES_MJB_Stat3: 0.00011870345266671901 - syst_JES_MJB_Stat4: 9.551713877624267e-05 - syst_JES_MJB_Stat5: 9.295855568477815e-05 - syst_JES_MJB_Stat6: 7.233854159436724e-05 - syst_JES_MJB_Stat7: 8.008573873043814e-05 - syst_JES_MJB_Stat8: 0.00010161550029400042 - syst_JES_MJB_Stat9: 6.04769681366386e-05 - syst_JES_MJB_Threshold: 0.0009326178209749157 - syst_JES_Pileup_MuOffset: 0.0020902755799176334 - syst_JES_Pileup_NPVOffset: 0.0021494633632607 - syst_JES_Pileup_Pt_term: 0.001605690739214747 - syst_JES_Pileup_Rho_topology: 0.0034338268375094278 - syst_JES_PunchThrough_MC15: 0.0007576325676078081 - syst_JES_SingleParticle_HighPt: 7.431480135208598e-20 - syst_JES_Zjet_MC: 0.005476712951214442 - syst_JES_Zjet_MuScale: 0.00034065966520854796 - syst_JES_Zjet_MuSmearID: 0.00010020149936502946 - syst_JES_Zjet_MuSmearMS: 0.0015565037744894807 - syst_JES_Zjet_OOC: 0.0027605370401427324 - syst_JES_Zjet_Stat1: 0.0001437966074008702 - syst_JES_Zjet_Stat10: 0.00021387582261676985 - syst_JES_Zjet_Stat11: 0.00028701834000634865 - syst_JES_Zjet_Stat12: 0.0008866452447286908 - syst_JES_Zjet_Stat13: 0.0016924632935458304 - syst_JES_Zjet_Stat2: 8.340790415182483e-06 - syst_JES_Zjet_Stat3: 6.637903038610912e-05 - syst_JES_Zjet_Stat4: 4.903108503796342e-05 - syst_JES_Zjet_Stat5: 8.871913660535702e-05 - syst_JES_Zjet_Stat6: 0.00010250440222253872 - syst_JES_Zjet_Stat7: 7.307165028244538e-05 - syst_JES_Zjet_Stat8: 7.919888935458628e-05 - syst_JES_Zjet_Stat9: 0.0001400498985183495 - syst_JES_Zjet_Veto: 0.0005961669627713364 - syst_JES_Zjet_dPhi: 0.0004972244865249498 - syst_PRW: 0.0004245 - syst_Unfolding_bias: 0.0004412 - syst_cleaning: 0.003247595264191645 + syst_JES_EtaIntercalibration_Stat93: 1.21156954e-17 + syst_JES_EtaIntercalibration_Stat94: 8.60235209e-13 + syst_JES_EtaIntercalibration_Stat95: 8.58299751e-06 + syst_JES_EtaIntercalibration_Stat96: 8.82356338e-06 + syst_JES_EtaIntercalibration_Stat97: 2.94147240e-13 + syst_JES_EtaIntercalibration_Stat98: 4.89027062e-14 + syst_JES_EtaIntercalibration_Stat99: 1.96672947e-06 + syst_JES_EtaIntercalibration_TotalStat_MJB: 2.74506334e-03 + syst_JES_Flavour_Comp: 8.06640279e-03 + syst_JES_Flavour_Response: 2.20424001e-03 + syst_JES_Gjet_Generator: 1.14359114e-02 + syst_JES_Gjet_OOC: 9.32746772e-03 + syst_JES_Gjet_Purity: 2.11936995e-03 + syst_JES_Gjet_Stat1: 2.72117488e-05 + syst_JES_Gjet_Stat10: 1.96552862e-04 + syst_JES_Gjet_Stat11: 2.35758075e-04 + syst_JES_Gjet_Stat12: 7.80459882e-04 + syst_JES_Gjet_Stat13: 2.42562714e-03 + syst_JES_Gjet_Stat14: 4.81216342e-03 + syst_JES_Gjet_Stat15: 1.01480788e-03 + syst_JES_Gjet_Stat2: 2.09196226e-05 + syst_JES_Gjet_Stat3: 3.20419710e-05 + syst_JES_Gjet_Stat4: 3.04989356e-05 + syst_JES_Gjet_Stat5: 2.91787371e-05 + syst_JES_Gjet_Stat6: 9.34009652e-05 + syst_JES_Gjet_Stat7: 1.17761565e-04 + syst_JES_Gjet_Stat8: 1.11297882e-04 + syst_JES_Gjet_Stat9: 1.33694858e-04 + syst_JES_Gjet_Veto: 8.85852200e-03 + syst_JES_Gjet_dPhi: 8.87786814e-04 + syst_JES_LArESZee: 1.75947911e-02 + syst_JES_LArEsmear: 1.39188169e-03 + syst_JES_LAr_JVT: 1.72531526e-03 + syst_JES_MJB_Alpha: 1.16879922e-04 + syst_JES_MJB_Asym: 1.00179696e-03 + syst_JES_MJB_Beta: 1.11521660e-04 + syst_JES_MJB_Fragmentation: 1.52806962e-03 + syst_JES_MJB_Stat1: 1.01795472e-05 + syst_JES_MJB_Stat10: 7.09682286e-05 + syst_JES_MJB_Stat11: 1.66452006e-05 + syst_JES_MJB_Stat12: 3.56594660e-05 + syst_JES_MJB_Stat13: 5.35358777e-05 + syst_JES_MJB_Stat14: 7.01274048e-05 + syst_JES_MJB_Stat15: 3.68024922e-05 + syst_JES_MJB_Stat16: 3.30948665e-06 + syst_JES_MJB_Stat2: 2.00943997e-05 + syst_JES_MJB_Stat3: 1.18703453e-04 + syst_JES_MJB_Stat4: 9.55171388e-05 + syst_JES_MJB_Stat5: 9.29585557e-05 + syst_JES_MJB_Stat6: 7.23385416e-05 + syst_JES_MJB_Stat7: 8.00857387e-05 + syst_JES_MJB_Stat8: 1.01615500e-04 + syst_JES_MJB_Stat9: 6.04769681e-05 + syst_JES_MJB_Threshold: 9.32617821e-04 + syst_JES_Pileup_MuOffset: 2.09027558e-03 + syst_JES_Pileup_NPVOffset: 2.14946336e-03 + syst_JES_Pileup_Pt_term: 1.60569074e-03 + syst_JES_Pileup_Rho_topology: 3.43382684e-03 + syst_JES_PunchThrough_MC15: 7.57632568e-04 + syst_JES_SingleParticle_HighPt: 7.43148014e-20 + syst_JES_Zjet_MC: 5.47671295e-03 + syst_JES_Zjet_MuScale: 3.40659665e-04 + syst_JES_Zjet_MuSmearID: 1.00201499e-04 + syst_JES_Zjet_MuSmearMS: 1.55650377e-03 + syst_JES_Zjet_OOC: 2.76053704e-03 + syst_JES_Zjet_Stat1: 1.43796607e-04 + syst_JES_Zjet_Stat10: 2.13875823e-04 + syst_JES_Zjet_Stat11: 2.87018340e-04 + syst_JES_Zjet_Stat12: 8.86645245e-04 + syst_JES_Zjet_Stat13: 1.69246329e-03 + syst_JES_Zjet_Stat2: 8.34079042e-06 + syst_JES_Zjet_Stat3: 6.63790304e-05 + syst_JES_Zjet_Stat4: 4.90310850e-05 + syst_JES_Zjet_Stat5: 8.87191366e-05 + syst_JES_Zjet_Stat6: 1.02504402e-04 + syst_JES_Zjet_Stat7: 7.30716503e-05 + syst_JES_Zjet_Stat8: 7.91988894e-05 + syst_JES_Zjet_Stat9: 1.40049899e-04 + syst_JES_Zjet_Veto: 5.96166963e-04 + syst_JES_Zjet_dPhi: 4.97224487e-04 + syst_PRW: 4.24500000e-04 + syst_Unfolding_bias: 4.41200000e-04 + syst_cleaning: 3.24759526e-03 syst_lumi: 0.011538 -- stat: 0.0015969 +- stat: 1.59690000e-03 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.0009190709045008444 - syst_JER_NP1: 0.00010476593864419867 - syst_JER_NP2: 0.0003631644358964682 - syst_JER_NP3: 0.00014062165800473269 - syst_JER_NP4: 0.00011784581483871203 - syst_JER_NP5: 0.00011910133028224327 - syst_JER_NP6: 0.00011440652909690076 - syst_JER_NP7: 5.970918941000622e-05 - syst_JER_NP8: 0.00022006332611318954 - syst_JES_EtaIntercalibration_Modelling: 0.005673758608717858 - syst_JES_EtaIntercalibration_NonClosure: 5.1130139839433254e-12 + syst_JER_NP0: 9.19070905e-04 + syst_JER_NP1: 1.04765939e-04 + syst_JER_NP2: 3.63164436e-04 + syst_JER_NP3: 1.40621658e-04 + syst_JER_NP4: 1.17845815e-04 + syst_JER_NP5: 1.19101330e-04 + syst_JER_NP6: 1.14406529e-04 + syst_JER_NP7: 5.97091894e-05 + syst_JER_NP8: 2.20063326e-04 + syst_JES_EtaIntercalibration_Modelling: 5.67375861e-03 + syst_JES_EtaIntercalibration_NonClosure: 5.11301398e-12 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 7.416623051231777e-07 - syst_JES_EtaIntercalibration_Stat101: 2.832750584626186e-15 - syst_JES_EtaIntercalibration_Stat102: 3.774073161303978e-18 - syst_JES_EtaIntercalibration_Stat103: 5.142458847671997e-18 - syst_JES_EtaIntercalibration_Stat104: 5.142458847671997e-18 - syst_JES_EtaIntercalibration_Stat105: 5.142458847671997e-18 + syst_JES_EtaIntercalibration_Stat100: 7.41662305e-07 + syst_JES_EtaIntercalibration_Stat101: 2.83275058e-15 + syst_JES_EtaIntercalibration_Stat102: 3.77407316e-18 + syst_JES_EtaIntercalibration_Stat103: 5.14245885e-18 + syst_JES_EtaIntercalibration_Stat104: 5.14245885e-18 + syst_JES_EtaIntercalibration_Stat105: 5.14245885e-18 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 5.5053234918576763e-14 - syst_JES_EtaIntercalibration_Stat111: 5.5053234918576763e-14 + syst_JES_EtaIntercalibration_Stat110: 5.50532349e-14 + syst_JES_EtaIntercalibration_Stat111: 5.50532349e-14 syst_JES_EtaIntercalibration_Stat112: 0.0 - syst_JES_EtaIntercalibration_Stat113: 1.914842763127041e-16 - syst_JES_EtaIntercalibration_Stat114: 3.729320258532378e-06 - syst_JES_EtaIntercalibration_Stat115: 6.604787581747047e-07 - syst_JES_EtaIntercalibration_Stat116: 5.618437038002651e-07 - syst_JES_EtaIntercalibration_Stat117: 9.186914661626068e-11 - syst_JES_EtaIntercalibration_Stat118: 5.764248148331447e-07 - syst_JES_EtaIntercalibration_Stat119: 1.1368408980591786e-06 - syst_JES_EtaIntercalibration_Stat12: 1.807693356662227e-14 - syst_JES_EtaIntercalibration_Stat120: 6.040612282707772e-07 - syst_JES_EtaIntercalibration_Stat121: 3.815056322939414e-10 - syst_JES_EtaIntercalibration_Stat122: 2.087974369831919e-16 - syst_JES_EtaIntercalibration_Stat123: 5.142458847671997e-18 - syst_JES_EtaIntercalibration_Stat124: 5.142458847671997e-18 - syst_JES_EtaIntercalibration_Stat125: 5.142458847671997e-18 + syst_JES_EtaIntercalibration_Stat113: 1.91484276e-16 + syst_JES_EtaIntercalibration_Stat114: 3.72932026e-06 + syst_JES_EtaIntercalibration_Stat115: 6.60478758e-07 + syst_JES_EtaIntercalibration_Stat116: 5.61843704e-07 + syst_JES_EtaIntercalibration_Stat117: 9.18691466e-11 + syst_JES_EtaIntercalibration_Stat118: 5.76424815e-07 + syst_JES_EtaIntercalibration_Stat119: 1.13684090e-06 + syst_JES_EtaIntercalibration_Stat12: 1.80769336e-14 + syst_JES_EtaIntercalibration_Stat120: 6.04061228e-07 + syst_JES_EtaIntercalibration_Stat121: 3.81505632e-10 + syst_JES_EtaIntercalibration_Stat122: 2.08797437e-16 + syst_JES_EtaIntercalibration_Stat123: 5.14245885e-18 + syst_JES_EtaIntercalibration_Stat124: 5.14245885e-18 + syst_JES_EtaIntercalibration_Stat125: 5.14245885e-18 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 3.096906843933153e-11 - syst_JES_EtaIntercalibration_Stat129: 3.095076088335592e-11 - syst_JES_EtaIntercalibration_Stat13: 2.327385548451412e-14 - syst_JES_EtaIntercalibration_Stat130: 5.5053234918576763e-14 - syst_JES_EtaIntercalibration_Stat131: 3.012902379766062e-19 - syst_JES_EtaIntercalibration_Stat132: 6.040632652576384e-12 - syst_JES_EtaIntercalibration_Stat133: 3.675378510418033e-06 - syst_JES_EtaIntercalibration_Stat134: 2.891923365167203e-06 - syst_JES_EtaIntercalibration_Stat135: 1.4559682660947662e-06 - syst_JES_EtaIntercalibration_Stat136: 4.033514968920656e-07 - syst_JES_EtaIntercalibration_Stat137: 5.538218034711164e-07 - syst_JES_EtaIntercalibration_Stat138: 2.5136015495698596e-06 - syst_JES_EtaIntercalibration_Stat139: 2.7071590330085894e-06 - syst_JES_EtaIntercalibration_Stat14: 6.445827080367577e-19 - syst_JES_EtaIntercalibration_Stat140: 4.939145823925428e-07 - syst_JES_EtaIntercalibration_Stat141: 2.965270995493451e-11 + syst_JES_EtaIntercalibration_Stat128: 3.09690684e-11 + syst_JES_EtaIntercalibration_Stat129: 3.09507609e-11 + syst_JES_EtaIntercalibration_Stat13: 2.32738555e-14 + syst_JES_EtaIntercalibration_Stat130: 5.50532349e-14 + syst_JES_EtaIntercalibration_Stat131: 3.01290238e-19 + syst_JES_EtaIntercalibration_Stat132: 6.04063265e-12 + syst_JES_EtaIntercalibration_Stat133: 3.67537851e-06 + syst_JES_EtaIntercalibration_Stat134: 2.89192337e-06 + syst_JES_EtaIntercalibration_Stat135: 1.45596827e-06 + syst_JES_EtaIntercalibration_Stat136: 4.03351497e-07 + syst_JES_EtaIntercalibration_Stat137: 5.53821803e-07 + syst_JES_EtaIntercalibration_Stat138: 2.51360155e-06 + syst_JES_EtaIntercalibration_Stat139: 2.70715903e-06 + syst_JES_EtaIntercalibration_Stat14: 6.44582708e-19 + syst_JES_EtaIntercalibration_Stat140: 4.93914582e-07 + syst_JES_EtaIntercalibration_Stat141: 2.96527100e-11 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 5.142458847671997e-18 - syst_JES_EtaIntercalibration_Stat144: 5.142458847671997e-18 + syst_JES_EtaIntercalibration_Stat143: 5.14245885e-18 + syst_JES_EtaIntercalibration_Stat144: 5.14245885e-18 syst_JES_EtaIntercalibration_Stat145: 0.0 - syst_JES_EtaIntercalibration_Stat146: 3.096906843933153e-11 - syst_JES_EtaIntercalibration_Stat147: 3.095076088335592e-11 + syst_JES_EtaIntercalibration_Stat146: 3.09690684e-11 + syst_JES_EtaIntercalibration_Stat147: 3.09507609e-11 syst_JES_EtaIntercalibration_Stat148: 0.0 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 1.8177687167238853e-15 - syst_JES_EtaIntercalibration_Stat151: 3.6752793308823144e-06 - syst_JES_EtaIntercalibration_Stat152: 2.7552560679544834e-06 - syst_JES_EtaIntercalibration_Stat153: 4.313975406455165e-06 - syst_JES_EtaIntercalibration_Stat154: 3.413421223358612e-07 - syst_JES_EtaIntercalibration_Stat155: 1.3615612977387393e-06 - syst_JES_EtaIntercalibration_Stat156: 5.630260554139568e-06 - syst_JES_EtaIntercalibration_Stat157: 3.5472772657349467e-06 - syst_JES_EtaIntercalibration_Stat158: 1.0720522223753842e-06 - syst_JES_EtaIntercalibration_Stat159: 2.974869177928352e-11 + syst_JES_EtaIntercalibration_Stat150: 1.81776872e-15 + syst_JES_EtaIntercalibration_Stat151: 3.67527933e-06 + syst_JES_EtaIntercalibration_Stat152: 2.75525607e-06 + syst_JES_EtaIntercalibration_Stat153: 4.31397541e-06 + syst_JES_EtaIntercalibration_Stat154: 3.41342122e-07 + syst_JES_EtaIntercalibration_Stat155: 1.36156130e-06 + syst_JES_EtaIntercalibration_Stat156: 5.63026055e-06 + syst_JES_EtaIntercalibration_Stat157: 3.54727727e-06 + syst_JES_EtaIntercalibration_Stat158: 1.07205222e-06 + syst_JES_EtaIntercalibration_Stat159: 2.97486918e-11 syst_JES_EtaIntercalibration_Stat16: 0.0 syst_JES_EtaIntercalibration_Stat160: 0.0 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 - syst_JES_EtaIntercalibration_Stat164: 3.096906843933153e-11 + syst_JES_EtaIntercalibration_Stat164: 3.09690684e-11 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 - syst_JES_EtaIntercalibration_Stat168: 9.87615370475774e-14 - syst_JES_EtaIntercalibration_Stat169: 9.054575583648303e-07 + syst_JES_EtaIntercalibration_Stat168: 9.87615370e-14 + syst_JES_EtaIntercalibration_Stat169: 9.05457558e-07 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 6.300895650619839e-06 - syst_JES_EtaIntercalibration_Stat171: 4.977019288690773e-06 - syst_JES_EtaIntercalibration_Stat172: 1.1834018886244859e-06 - syst_JES_EtaIntercalibration_Stat173: 2.5274241828391212e-06 - syst_JES_EtaIntercalibration_Stat174: 8.09300739836558e-06 - syst_JES_EtaIntercalibration_Stat175: 4.575545951031418e-06 - syst_JES_EtaIntercalibration_Stat176: 9.854708941101897e-07 - syst_JES_EtaIntercalibration_Stat177: 2.5499215296749817e-10 + syst_JES_EtaIntercalibration_Stat170: 6.30089565e-06 + syst_JES_EtaIntercalibration_Stat171: 4.97701929e-06 + syst_JES_EtaIntercalibration_Stat172: 1.18340189e-06 + syst_JES_EtaIntercalibration_Stat173: 2.52742418e-06 + syst_JES_EtaIntercalibration_Stat174: 8.09300740e-06 + syst_JES_EtaIntercalibration_Stat175: 4.57554595e-06 + syst_JES_EtaIntercalibration_Stat176: 9.85470894e-07 + syst_JES_EtaIntercalibration_Stat177: 2.54992153e-10 syst_JES_EtaIntercalibration_Stat178: 0.0 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 @@ -19319,17 +19319,17 @@ bins: syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 syst_JES_EtaIntercalibration_Stat184: 0.0 - syst_JES_EtaIntercalibration_Stat185: 4.826430261590859e-09 - syst_JES_EtaIntercalibration_Stat186: 3.350790168005153e-06 - syst_JES_EtaIntercalibration_Stat187: 3.340904780145642e-05 - syst_JES_EtaIntercalibration_Stat188: 3.1072480992028945e-05 - syst_JES_EtaIntercalibration_Stat189: 3.912353607484886e-06 + syst_JES_EtaIntercalibration_Stat185: 4.82643026e-09 + syst_JES_EtaIntercalibration_Stat186: 3.35079017e-06 + syst_JES_EtaIntercalibration_Stat187: 3.34090478e-05 + syst_JES_EtaIntercalibration_Stat188: 3.10724810e-05 + syst_JES_EtaIntercalibration_Stat189: 3.91235361e-06 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 5.358572267871359e-06 - syst_JES_EtaIntercalibration_Stat191: 3.341450583204846e-05 - syst_JES_EtaIntercalibration_Stat192: 3.818878097033211e-05 - syst_JES_EtaIntercalibration_Stat193: 3.462197387498292e-06 - syst_JES_EtaIntercalibration_Stat194: 2.4932871374953987e-10 + syst_JES_EtaIntercalibration_Stat190: 5.35857227e-06 + syst_JES_EtaIntercalibration_Stat191: 3.34145058e-05 + syst_JES_EtaIntercalibration_Stat192: 3.81887810e-05 + syst_JES_EtaIntercalibration_Stat193: 3.46219739e-06 + syst_JES_EtaIntercalibration_Stat194: 2.49328714e-10 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 syst_JES_EtaIntercalibration_Stat197: 0.0 @@ -19337,70 +19337,70 @@ bins: syst_JES_EtaIntercalibration_Stat199: 0.0 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 2.307719884973044e-09 - syst_JES_EtaIntercalibration_Stat201: 8.242016788990423e-06 - syst_JES_EtaIntercalibration_Stat202: 7.240167176937284e-05 - syst_JES_EtaIntercalibration_Stat203: 6.677774086475222e-05 - syst_JES_EtaIntercalibration_Stat204: 7.263077791129597e-06 - syst_JES_EtaIntercalibration_Stat205: 6.5159751379106975e-06 - syst_JES_EtaIntercalibration_Stat206: 6.530103521384634e-05 - syst_JES_EtaIntercalibration_Stat207: 7.225140067846436e-05 - syst_JES_EtaIntercalibration_Stat208: 8.108194743591202e-06 - syst_JES_EtaIntercalibration_Stat209: 3.3313381990826565e-07 + syst_JES_EtaIntercalibration_Stat200: 2.30771988e-09 + syst_JES_EtaIntercalibration_Stat201: 8.24201679e-06 + syst_JES_EtaIntercalibration_Stat202: 7.24016718e-05 + syst_JES_EtaIntercalibration_Stat203: 6.67777409e-05 + syst_JES_EtaIntercalibration_Stat204: 7.26307779e-06 + syst_JES_EtaIntercalibration_Stat205: 6.51597514e-06 + syst_JES_EtaIntercalibration_Stat206: 6.53010352e-05 + syst_JES_EtaIntercalibration_Stat207: 7.22514007e-05 + syst_JES_EtaIntercalibration_Stat208: 8.10819474e-06 + syst_JES_EtaIntercalibration_Stat209: 3.33133820e-07 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 syst_JES_EtaIntercalibration_Stat211: 0.0 syst_JES_EtaIntercalibration_Stat212: 0.0 - syst_JES_EtaIntercalibration_Stat213: 4.810329049815614e-09 - syst_JES_EtaIntercalibration_Stat214: 5.4572992175617415e-06 - syst_JES_EtaIntercalibration_Stat215: 7.9909572643082e-05 - syst_JES_EtaIntercalibration_Stat216: 7.864855879162695e-05 - syst_JES_EtaIntercalibration_Stat217: 6.5695354478075535e-06 - syst_JES_EtaIntercalibration_Stat218: 6.8582945948683194e-06 - syst_JES_EtaIntercalibration_Stat219: 7.131579628665726e-05 + syst_JES_EtaIntercalibration_Stat213: 4.81032905e-09 + syst_JES_EtaIntercalibration_Stat214: 5.45729922e-06 + syst_JES_EtaIntercalibration_Stat215: 7.99095726e-05 + syst_JES_EtaIntercalibration_Stat216: 7.86485588e-05 + syst_JES_EtaIntercalibration_Stat217: 6.56953545e-06 + syst_JES_EtaIntercalibration_Stat218: 6.85829459e-06 + syst_JES_EtaIntercalibration_Stat219: 7.13157963e-05 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 8.336353279462189e-05 - syst_JES_EtaIntercalibration_Stat221: 5.483635906038985e-06 - syst_JES_EtaIntercalibration_Stat222: 3.142419607563573e-07 + syst_JES_EtaIntercalibration_Stat220: 8.33635328e-05 + syst_JES_EtaIntercalibration_Stat221: 5.48363591e-06 + syst_JES_EtaIntercalibration_Stat222: 3.14241961e-07 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 - syst_JES_EtaIntercalibration_Stat225: 5.116048087146954e-07 - syst_JES_EtaIntercalibration_Stat226: 1.2922316974908175e-05 - syst_JES_EtaIntercalibration_Stat227: 0.000197878921313009 - syst_JES_EtaIntercalibration_Stat228: 0.00015712790967870732 - syst_JES_EtaIntercalibration_Stat229: 1.2060463465389711e-05 + syst_JES_EtaIntercalibration_Stat225: 5.11604809e-07 + syst_JES_EtaIntercalibration_Stat226: 1.29223170e-05 + syst_JES_EtaIntercalibration_Stat227: 1.97878921e-04 + syst_JES_EtaIntercalibration_Stat228: 1.57127910e-04 + syst_JES_EtaIntercalibration_Stat229: 1.20604635e-05 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 1.3090765705259567e-05 - syst_JES_EtaIntercalibration_Stat231: 0.00021411053220241175 - syst_JES_EtaIntercalibration_Stat232: 0.0001993822710272907 - syst_JES_EtaIntercalibration_Stat233: 1.0045221587899394e-05 - syst_JES_EtaIntercalibration_Stat234: 6.18648969529571e-07 + syst_JES_EtaIntercalibration_Stat230: 1.30907657e-05 + syst_JES_EtaIntercalibration_Stat231: 2.14110532e-04 + syst_JES_EtaIntercalibration_Stat232: 1.99382271e-04 + syst_JES_EtaIntercalibration_Stat233: 1.00452216e-05 + syst_JES_EtaIntercalibration_Stat234: 6.18648970e-07 syst_JES_EtaIntercalibration_Stat235: 0.0 - syst_JES_EtaIntercalibration_Stat236: 2.4335313846342727e-09 - syst_JES_EtaIntercalibration_Stat237: 2.401569695011994e-06 - syst_JES_EtaIntercalibration_Stat238: 3.7238963465703504e-05 - syst_JES_EtaIntercalibration_Stat239: 1.6847975397655355e-05 + syst_JES_EtaIntercalibration_Stat236: 2.43353138e-09 + syst_JES_EtaIntercalibration_Stat237: 2.40156970e-06 + syst_JES_EtaIntercalibration_Stat238: 3.72389635e-05 + syst_JES_EtaIntercalibration_Stat239: 1.68479754e-05 syst_JES_EtaIntercalibration_Stat24: 0.0 - syst_JES_EtaIntercalibration_Stat240: 2.62824785123093e-09 - syst_JES_EtaIntercalibration_Stat241: 7.186278800475619e-06 - syst_JES_EtaIntercalibration_Stat242: 2.0651975087143603e-05 - syst_JES_EtaIntercalibration_Stat243: 1.968674935076891e-05 - syst_JES_EtaIntercalibration_Stat244: 1.9339755672383763e-06 - syst_JES_EtaIntercalibration_Stat245: 1.8948635834803518e-07 + syst_JES_EtaIntercalibration_Stat240: 2.62824785e-09 + syst_JES_EtaIntercalibration_Stat241: 7.18627880e-06 + syst_JES_EtaIntercalibration_Stat242: 2.06519751e-05 + syst_JES_EtaIntercalibration_Stat243: 1.96867494e-05 + syst_JES_EtaIntercalibration_Stat244: 1.93397557e-06 + syst_JES_EtaIntercalibration_Stat245: 1.89486358e-07 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 syst_JES_EtaIntercalibration_Stat27: 0.0 - syst_JES_EtaIntercalibration_Stat28: 1.1396028288399427e-19 - syst_JES_EtaIntercalibration_Stat29: 3.29375469145776e-17 + syst_JES_EtaIntercalibration_Stat28: 1.13960283e-19 + syst_JES_EtaIntercalibration_Stat29: 3.29375469e-17 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 7.459246929147741e-16 - syst_JES_EtaIntercalibration_Stat31: 4.221952954498664e-16 - syst_JES_EtaIntercalibration_Stat32: 6.017381552635665e-19 - syst_JES_EtaIntercalibration_Stat33: 9.48670171700892e-18 - syst_JES_EtaIntercalibration_Stat34: 6.250105412349179e-07 - syst_JES_EtaIntercalibration_Stat35: 2.904655035577552e-11 - syst_JES_EtaIntercalibration_Stat36: 2.0249902535259276e-16 - syst_JES_EtaIntercalibration_Stat37: 8.318174003349533e-20 + syst_JES_EtaIntercalibration_Stat30: 7.45924693e-16 + syst_JES_EtaIntercalibration_Stat31: 4.22195295e-16 + syst_JES_EtaIntercalibration_Stat32: 6.01738155e-19 + syst_JES_EtaIntercalibration_Stat33: 9.48670172e-18 + syst_JES_EtaIntercalibration_Stat34: 6.25010541e-07 + syst_JES_EtaIntercalibration_Stat35: 2.90465504e-11 + syst_JES_EtaIntercalibration_Stat36: 2.02499025e-16 + syst_JES_EtaIntercalibration_Stat37: 8.31817400e-20 syst_JES_EtaIntercalibration_Stat38: 0.0 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 @@ -19415,20 +19415,20 @@ bins: syst_JES_EtaIntercalibration_Stat48: 0.0 syst_JES_EtaIntercalibration_Stat49: 0.0 syst_JES_EtaIntercalibration_Stat5: 0.0 - syst_JES_EtaIntercalibration_Stat50: 1.1544118632446568e-19 - syst_JES_EtaIntercalibration_Stat51: 7.089498765780272e-17 - syst_JES_EtaIntercalibration_Stat52: 7.717928037206619e-14 - syst_JES_EtaIntercalibration_Stat53: 5.350080893547312e-15 - syst_JES_EtaIntercalibration_Stat54: 2.532384646928661e-17 - syst_JES_EtaIntercalibration_Stat55: 1.796134312036547e-14 - syst_JES_EtaIntercalibration_Stat56: 6.254435462795864e-07 - syst_JES_EtaIntercalibration_Stat57: 5.252444075324117e-07 - syst_JES_EtaIntercalibration_Stat58: 2.7241868272936056e-16 - syst_JES_EtaIntercalibration_Stat59: 3.068202272911615e-19 + syst_JES_EtaIntercalibration_Stat50: 1.15441186e-19 + syst_JES_EtaIntercalibration_Stat51: 7.08949877e-17 + syst_JES_EtaIntercalibration_Stat52: 7.71792804e-14 + syst_JES_EtaIntercalibration_Stat53: 5.35008089e-15 + syst_JES_EtaIntercalibration_Stat54: 2.53238465e-17 + syst_JES_EtaIntercalibration_Stat55: 1.79613431e-14 + syst_JES_EtaIntercalibration_Stat56: 6.25443546e-07 + syst_JES_EtaIntercalibration_Stat57: 5.25244408e-07 + syst_JES_EtaIntercalibration_Stat58: 2.72418683e-16 + syst_JES_EtaIntercalibration_Stat59: 3.06820227e-19 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 5.142458847671997e-18 - syst_JES_EtaIntercalibration_Stat62: 5.142458847671997e-18 + syst_JES_EtaIntercalibration_Stat61: 5.14245885e-18 + syst_JES_EtaIntercalibration_Stat62: 5.14245885e-18 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 @@ -19436,218 +19436,218 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 1.1396028288399427e-19 + syst_JES_EtaIntercalibration_Stat7: 1.13960283e-19 syst_JES_EtaIntercalibration_Stat70: 0.0 syst_JES_EtaIntercalibration_Stat71: 0.0 - syst_JES_EtaIntercalibration_Stat72: 2.592014033526825e-18 - syst_JES_EtaIntercalibration_Stat73: 1.0323420473854585e-13 - syst_JES_EtaIntercalibration_Stat74: 5.205056050336829e-06 - syst_JES_EtaIntercalibration_Stat75: 5.187490307294192e-06 - syst_JES_EtaIntercalibration_Stat76: 2.746539926434713e-15 - syst_JES_EtaIntercalibration_Stat77: 1.560193546286806e-14 - syst_JES_EtaIntercalibration_Stat78: 6.024919485516356e-07 - syst_JES_EtaIntercalibration_Stat79: 6.645895590929986e-07 - syst_JES_EtaIntercalibration_Stat8: 1.2901355229199761e-17 - syst_JES_EtaIntercalibration_Stat80: 2.5614322400368117e-15 - syst_JES_EtaIntercalibration_Stat81: 7.631415858148474e-19 - syst_JES_EtaIntercalibration_Stat82: 5.142458847671997e-18 - syst_JES_EtaIntercalibration_Stat83: 5.142458847671997e-18 - syst_JES_EtaIntercalibration_Stat84: 5.142458847671997e-18 + syst_JES_EtaIntercalibration_Stat72: 2.59201403e-18 + syst_JES_EtaIntercalibration_Stat73: 1.03234205e-13 + syst_JES_EtaIntercalibration_Stat74: 5.20505605e-06 + syst_JES_EtaIntercalibration_Stat75: 5.18749031e-06 + syst_JES_EtaIntercalibration_Stat76: 2.74653993e-15 + syst_JES_EtaIntercalibration_Stat77: 1.56019355e-14 + syst_JES_EtaIntercalibration_Stat78: 6.02491949e-07 + syst_JES_EtaIntercalibration_Stat79: 6.64589559e-07 + syst_JES_EtaIntercalibration_Stat8: 1.29013552e-17 + syst_JES_EtaIntercalibration_Stat80: 2.56143224e-15 + syst_JES_EtaIntercalibration_Stat81: 7.63141586e-19 + syst_JES_EtaIntercalibration_Stat82: 5.14245885e-18 + syst_JES_EtaIntercalibration_Stat83: 5.14245885e-18 + syst_JES_EtaIntercalibration_Stat84: 5.14245885e-18 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 syst_JES_EtaIntercalibration_Stat89: 0.0 - syst_JES_EtaIntercalibration_Stat9: 6.848338247341467e-18 + syst_JES_EtaIntercalibration_Stat9: 6.84833825e-18 syst_JES_EtaIntercalibration_Stat90: 0.0 syst_JES_EtaIntercalibration_Stat91: 0.0 syst_JES_EtaIntercalibration_Stat92: 0.0 - syst_JES_EtaIntercalibration_Stat93: 2.2109628558616715e-18 - syst_JES_EtaIntercalibration_Stat94: 1.3453291586355363e-13 - syst_JES_EtaIntercalibration_Stat95: 5.205048994702919e-06 - syst_JES_EtaIntercalibration_Stat96: 5.34394049368067e-06 - syst_JES_EtaIntercalibration_Stat97: 4.6150517494471286e-14 - syst_JES_EtaIntercalibration_Stat98: 7.98096190944425e-15 - syst_JES_EtaIntercalibration_Stat99: 1.2635288881033215e-06 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.001963748138127698 - syst_JES_Flavour_Comp: 0.005461730746750521 - syst_JES_Flavour_Response: 0.0011259106836245937 - syst_JES_Gjet_Generator: 0.007649454032805217 - syst_JES_Gjet_OOC: 0.0062857141996753236 - syst_JES_Gjet_Purity: 0.0013548737026010949 - syst_JES_Gjet_Stat1: 1.9445493051090272e-05 - syst_JES_Gjet_Stat10: 0.00012952179276090955 - syst_JES_Gjet_Stat11: 0.00015290163504684963 - syst_JES_Gjet_Stat12: 0.0004930417705428212 - syst_JES_Gjet_Stat13: 0.0015434380454038318 - syst_JES_Gjet_Stat14: 0.003461928183830508 - syst_JES_Gjet_Stat15: 0.0015030593692532575 - syst_JES_Gjet_Stat2: 2.1581572579402086e-05 - syst_JES_Gjet_Stat3: 2.1872367658760678e-05 - syst_JES_Gjet_Stat4: 2.379044923913796e-05 - syst_JES_Gjet_Stat5: 2.3856282191489936e-05 - syst_JES_Gjet_Stat6: 5.7038954013901764e-05 - syst_JES_Gjet_Stat7: 7.829988633452798e-05 - syst_JES_Gjet_Stat8: 6.804241912219172e-05 - syst_JES_Gjet_Stat9: 8.61279935619076e-05 - syst_JES_Gjet_Veto: 0.006102346761697503 - syst_JES_Gjet_dPhi: 0.0006144392077333607 - syst_JES_LArESZee: 0.011794684014419377 - syst_JES_LArEsmear: 0.0009674229930593959 - syst_JES_LAr_JVT: 0.0011917323441108746 - syst_JES_MJB_Alpha: 7.265766580340989e-05 - syst_JES_MJB_Asym: 0.0008385130410434891 - syst_JES_MJB_Beta: 8.045587672755796e-05 - syst_JES_MJB_Fragmentation: 0.000947902484436031 - syst_JES_MJB_Stat1: 6.685729803656441e-06 - syst_JES_MJB_Stat10: 6.704593108459304e-05 - syst_JES_MJB_Stat11: 3.97038109002146e-05 - syst_JES_MJB_Stat12: 3.48264278242831e-05 - syst_JES_MJB_Stat13: 3.316194015735509e-05 - syst_JES_MJB_Stat14: 5.659576132538548e-05 - syst_JES_MJB_Stat15: 4.5819444289515344e-05 - syst_JES_MJB_Stat16: 1.0728473085672538e-05 - syst_JES_MJB_Stat2: 1.2709530626659665e-05 - syst_JES_MJB_Stat3: 6.420152101001969e-05 - syst_JES_MJB_Stat4: 5.611788908182488e-05 - syst_JES_MJB_Stat5: 5.240588206489802e-05 - syst_JES_MJB_Stat6: 4.585359094989181e-05 - syst_JES_MJB_Stat7: 5.617671792433232e-05 - syst_JES_MJB_Stat8: 7.732820507421598e-05 - syst_JES_MJB_Stat9: 6.48248754337407e-05 - syst_JES_MJB_Threshold: 0.0006763405410737997 - syst_JES_Pileup_MuOffset: 0.0014606247807017378 - syst_JES_Pileup_NPVOffset: 0.0015013836951292632 - syst_JES_Pileup_Pt_term: 0.001039455062761253 - syst_JES_Pileup_Rho_topology: 0.002276344437909167 - syst_JES_PunchThrough_MC15: 0.0006627918281783504 - syst_JES_SingleParticle_HighPt: 1.1074224250483642e-16 - syst_JES_Zjet_MC: 0.003442394914881208 - syst_JES_Zjet_MuScale: 0.00023183060087054945 - syst_JES_Zjet_MuSmearID: 5.963586504780492e-05 - syst_JES_Zjet_MuSmearMS: 0.0009774611744207543 - syst_JES_Zjet_OOC: 0.001809120435460282 - syst_JES_Zjet_Stat1: 9.396812810735351e-05 - syst_JES_Zjet_Stat10: 0.000146581538742094 - syst_JES_Zjet_Stat11: 0.00018966272037488022 - syst_JES_Zjet_Stat12: 0.0005742802625896174 - syst_JES_Zjet_Stat13: 0.001062851281929885 - syst_JES_Zjet_Stat2: 5.4836838010592835e-06 - syst_JES_Zjet_Stat3: 5.1192470881956854e-05 - syst_JES_Zjet_Stat4: 4.15337585585509e-05 - syst_JES_Zjet_Stat5: 6.0647547353541015e-05 - syst_JES_Zjet_Stat6: 6.856608108241276e-05 - syst_JES_Zjet_Stat7: 5.2361030117827126e-05 - syst_JES_Zjet_Stat8: 5.7094378882688616e-05 - syst_JES_Zjet_Stat9: 8.998469536537867e-05 - syst_JES_Zjet_Veto: 0.0004016248524120488 - syst_JES_Zjet_dPhi: 0.000339780852167982 - syst_PRW: 0.0002791 - syst_Unfolding_bias: 0.0002901 - syst_cleaning: 0.0022204891353033007 + syst_JES_EtaIntercalibration_Stat93: 2.21096286e-18 + syst_JES_EtaIntercalibration_Stat94: 1.34532916e-13 + syst_JES_EtaIntercalibration_Stat95: 5.20504899e-06 + syst_JES_EtaIntercalibration_Stat96: 5.34394049e-06 + syst_JES_EtaIntercalibration_Stat97: 4.61505175e-14 + syst_JES_EtaIntercalibration_Stat98: 7.98096191e-15 + syst_JES_EtaIntercalibration_Stat99: 1.26352889e-06 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.96374814e-03 + syst_JES_Flavour_Comp: 5.46173075e-03 + syst_JES_Flavour_Response: 1.12591068e-03 + syst_JES_Gjet_Generator: 7.64945403e-03 + syst_JES_Gjet_OOC: 6.28571420e-03 + syst_JES_Gjet_Purity: 1.35487370e-03 + syst_JES_Gjet_Stat1: 1.94454931e-05 + syst_JES_Gjet_Stat10: 1.29521793e-04 + syst_JES_Gjet_Stat11: 1.52901635e-04 + syst_JES_Gjet_Stat12: 4.93041771e-04 + syst_JES_Gjet_Stat13: 1.54343805e-03 + syst_JES_Gjet_Stat14: 3.46192818e-03 + syst_JES_Gjet_Stat15: 1.50305937e-03 + syst_JES_Gjet_Stat2: 2.15815726e-05 + syst_JES_Gjet_Stat3: 2.18723677e-05 + syst_JES_Gjet_Stat4: 2.37904492e-05 + syst_JES_Gjet_Stat5: 2.38562822e-05 + syst_JES_Gjet_Stat6: 5.70389540e-05 + syst_JES_Gjet_Stat7: 7.82998863e-05 + syst_JES_Gjet_Stat8: 6.80424191e-05 + syst_JES_Gjet_Stat9: 8.61279936e-05 + syst_JES_Gjet_Veto: 6.10234676e-03 + syst_JES_Gjet_dPhi: 6.14439208e-04 + syst_JES_LArESZee: 1.17946840e-02 + syst_JES_LArEsmear: 9.67422993e-04 + syst_JES_LAr_JVT: 1.19173234e-03 + syst_JES_MJB_Alpha: 7.26576658e-05 + syst_JES_MJB_Asym: 8.38513041e-04 + syst_JES_MJB_Beta: 8.04558767e-05 + syst_JES_MJB_Fragmentation: 9.47902484e-04 + syst_JES_MJB_Stat1: 6.68572980e-06 + syst_JES_MJB_Stat10: 6.70459311e-05 + syst_JES_MJB_Stat11: 3.97038109e-05 + syst_JES_MJB_Stat12: 3.48264278e-05 + syst_JES_MJB_Stat13: 3.31619402e-05 + syst_JES_MJB_Stat14: 5.65957613e-05 + syst_JES_MJB_Stat15: 4.58194443e-05 + syst_JES_MJB_Stat16: 1.07284731e-05 + syst_JES_MJB_Stat2: 1.27095306e-05 + syst_JES_MJB_Stat3: 6.42015210e-05 + syst_JES_MJB_Stat4: 5.61178891e-05 + syst_JES_MJB_Stat5: 5.24058821e-05 + syst_JES_MJB_Stat6: 4.58535909e-05 + syst_JES_MJB_Stat7: 5.61767179e-05 + syst_JES_MJB_Stat8: 7.73282051e-05 + syst_JES_MJB_Stat9: 6.48248754e-05 + syst_JES_MJB_Threshold: 6.76340541e-04 + syst_JES_Pileup_MuOffset: 1.46062478e-03 + syst_JES_Pileup_NPVOffset: 1.50138370e-03 + syst_JES_Pileup_Pt_term: 1.03945506e-03 + syst_JES_Pileup_Rho_topology: 2.27634444e-03 + syst_JES_PunchThrough_MC15: 6.62791828e-04 + syst_JES_SingleParticle_HighPt: 1.10742243e-16 + syst_JES_Zjet_MC: 3.44239491e-03 + syst_JES_Zjet_MuScale: 2.31830601e-04 + syst_JES_Zjet_MuSmearID: 5.96358650e-05 + syst_JES_Zjet_MuSmearMS: 9.77461174e-04 + syst_JES_Zjet_OOC: 1.80912044e-03 + syst_JES_Zjet_Stat1: 9.39681281e-05 + syst_JES_Zjet_Stat10: 1.46581539e-04 + syst_JES_Zjet_Stat11: 1.89662720e-04 + syst_JES_Zjet_Stat12: 5.74280263e-04 + syst_JES_Zjet_Stat13: 1.06285128e-03 + syst_JES_Zjet_Stat2: 5.48368380e-06 + syst_JES_Zjet_Stat3: 5.11924709e-05 + syst_JES_Zjet_Stat4: 4.15337586e-05 + syst_JES_Zjet_Stat5: 6.06475474e-05 + syst_JES_Zjet_Stat6: 6.85660811e-05 + syst_JES_Zjet_Stat7: 5.23610301e-05 + syst_JES_Zjet_Stat8: 5.70943789e-05 + syst_JES_Zjet_Stat9: 8.99846954e-05 + syst_JES_Zjet_Veto: 4.01624852e-04 + syst_JES_Zjet_dPhi: 3.39780852e-04 + syst_PRW: 2.79100000e-04 + syst_Unfolding_bias: 2.90100000e-04 + syst_cleaning: 2.22048914e-03 syst_lumi: 0.007586 -- stat: 0.0012635 +- stat: 1.26350000e-03 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.0006045500041353073 - syst_JER_NP1: 6.881874163336613e-05 - syst_JER_NP2: 0.00025571658139432414 - syst_JER_NP3: 7.665172454028676e-05 - syst_JER_NP4: 8.151947742717687e-05 - syst_JER_NP5: 8.380764091059955e-05 - syst_JER_NP6: 8.318583292845003e-05 - syst_JER_NP7: 4.3898646482551146e-05 - syst_JER_NP8: 0.0001487549663036498 - syst_JES_EtaIntercalibration_Modelling: 0.003946016919312435 - syst_JES_EtaIntercalibration_NonClosure: 8.029787543889315e-13 + syst_JER_NP0: 6.04550004e-04 + syst_JER_NP1: 6.88187416e-05 + syst_JER_NP2: 2.55716581e-04 + syst_JER_NP3: 7.66517245e-05 + syst_JER_NP4: 8.15194774e-05 + syst_JER_NP5: 8.38076409e-05 + syst_JER_NP6: 8.31858329e-05 + syst_JER_NP7: 4.38986465e-05 + syst_JER_NP8: 1.48754966e-04 + syst_JES_EtaIntercalibration_Modelling: 3.94601692e-03 + syst_JES_EtaIntercalibration_NonClosure: 8.02978754e-13 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 4.875720110003895e-07 - syst_JES_EtaIntercalibration_Stat101: 5.175516096728905e-16 - syst_JES_EtaIntercalibration_Stat102: 8.871316531383602e-19 - syst_JES_EtaIntercalibration_Stat103: 1.366588087171844e-18 - syst_JES_EtaIntercalibration_Stat104: 1.366588087171844e-18 - syst_JES_EtaIntercalibration_Stat105: 1.366588087171844e-18 + syst_JES_EtaIntercalibration_Stat100: 4.87572011e-07 + syst_JES_EtaIntercalibration_Stat101: 5.17551610e-16 + syst_JES_EtaIntercalibration_Stat102: 8.87131653e-19 + syst_JES_EtaIntercalibration_Stat103: 1.36658809e-18 + syst_JES_EtaIntercalibration_Stat104: 1.36658809e-18 + syst_JES_EtaIntercalibration_Stat105: 1.36658809e-18 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 9.47864804442068e-15 - syst_JES_EtaIntercalibration_Stat111: 9.47864804442068e-15 + syst_JES_EtaIntercalibration_Stat110: 9.47864804e-15 + syst_JES_EtaIntercalibration_Stat111: 9.47864804e-15 syst_JES_EtaIntercalibration_Stat112: 0.0 - syst_JES_EtaIntercalibration_Stat113: 3.9081963393232943e-17 - syst_JES_EtaIntercalibration_Stat114: 2.444115949841011e-06 - syst_JES_EtaIntercalibration_Stat115: 2.745121308794932e-07 - syst_JES_EtaIntercalibration_Stat116: 3.815128405440635e-07 - syst_JES_EtaIntercalibration_Stat117: 1.4514102133786988e-11 - syst_JES_EtaIntercalibration_Stat118: 3.7853943720137094e-07 - syst_JES_EtaIntercalibration_Stat119: 3.9792995300680745e-07 - syst_JES_EtaIntercalibration_Stat12: 3.08772140812412e-15 - syst_JES_EtaIntercalibration_Stat120: 5.109769539812925e-07 - syst_JES_EtaIntercalibration_Stat121: 6.251713405739262e-11 - syst_JES_EtaIntercalibration_Stat122: 4.075028683098439e-17 - syst_JES_EtaIntercalibration_Stat123: 1.366588087171844e-18 - syst_JES_EtaIntercalibration_Stat124: 1.366588087171844e-18 - syst_JES_EtaIntercalibration_Stat125: 1.366588087171844e-18 + syst_JES_EtaIntercalibration_Stat113: 3.90819634e-17 + syst_JES_EtaIntercalibration_Stat114: 2.44411595e-06 + syst_JES_EtaIntercalibration_Stat115: 2.74512131e-07 + syst_JES_EtaIntercalibration_Stat116: 3.81512841e-07 + syst_JES_EtaIntercalibration_Stat117: 1.45141021e-11 + syst_JES_EtaIntercalibration_Stat118: 3.78539437e-07 + syst_JES_EtaIntercalibration_Stat119: 3.97929953e-07 + syst_JES_EtaIntercalibration_Stat12: 3.08772141e-15 + syst_JES_EtaIntercalibration_Stat120: 5.10976954e-07 + syst_JES_EtaIntercalibration_Stat121: 6.25171341e-11 + syst_JES_EtaIntercalibration_Stat122: 4.07502868e-17 + syst_JES_EtaIntercalibration_Stat123: 1.36658809e-18 + syst_JES_EtaIntercalibration_Stat124: 1.36658809e-18 + syst_JES_EtaIntercalibration_Stat125: 1.36658809e-18 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 4.857536489826916e-12 - syst_JES_EtaIntercalibration_Stat129: 4.8543851662459536e-12 - syst_JES_EtaIntercalibration_Stat13: 4.033770711019033e-15 - syst_JES_EtaIntercalibration_Stat130: 9.47864804442068e-15 - syst_JES_EtaIntercalibration_Stat131: 7.640076112186317e-20 - syst_JES_EtaIntercalibration_Stat132: 9.501390539159557e-13 - syst_JES_EtaIntercalibration_Stat133: 2.4361241637029797e-06 - syst_JES_EtaIntercalibration_Stat134: 1.7586511784603564e-06 - syst_JES_EtaIntercalibration_Stat135: 1.141476884018244e-06 - syst_JES_EtaIntercalibration_Stat136: 1.921373202081001e-07 - syst_JES_EtaIntercalibration_Stat137: 3.8589898613497286e-07 - syst_JES_EtaIntercalibration_Stat138: 1.5855822171997262e-06 - syst_JES_EtaIntercalibration_Stat139: 9.999195191614173e-07 - syst_JES_EtaIntercalibration_Stat14: 1.6792232579380265e-19 - syst_JES_EtaIntercalibration_Stat140: 2.4705459477613446e-07 - syst_JES_EtaIntercalibration_Stat141: 4.648824400582605e-12 + syst_JES_EtaIntercalibration_Stat128: 4.85753649e-12 + syst_JES_EtaIntercalibration_Stat129: 4.85438517e-12 + syst_JES_EtaIntercalibration_Stat13: 4.03377071e-15 + syst_JES_EtaIntercalibration_Stat130: 9.47864804e-15 + syst_JES_EtaIntercalibration_Stat131: 7.64007611e-20 + syst_JES_EtaIntercalibration_Stat132: 9.50139054e-13 + syst_JES_EtaIntercalibration_Stat133: 2.43612416e-06 + syst_JES_EtaIntercalibration_Stat134: 1.75865118e-06 + syst_JES_EtaIntercalibration_Stat135: 1.14147688e-06 + syst_JES_EtaIntercalibration_Stat136: 1.92137320e-07 + syst_JES_EtaIntercalibration_Stat137: 3.85898986e-07 + syst_JES_EtaIntercalibration_Stat138: 1.58558222e-06 + syst_JES_EtaIntercalibration_Stat139: 9.99919519e-07 + syst_JES_EtaIntercalibration_Stat14: 1.67922326e-19 + syst_JES_EtaIntercalibration_Stat140: 2.47054595e-07 + syst_JES_EtaIntercalibration_Stat141: 4.64882440e-12 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 1.366588087171844e-18 - syst_JES_EtaIntercalibration_Stat144: 1.366588087171844e-18 + syst_JES_EtaIntercalibration_Stat143: 1.36658809e-18 + syst_JES_EtaIntercalibration_Stat144: 1.36658809e-18 syst_JES_EtaIntercalibration_Stat145: 0.0 - syst_JES_EtaIntercalibration_Stat146: 4.857536489826916e-12 - syst_JES_EtaIntercalibration_Stat147: 4.8543851662459536e-12 + syst_JES_EtaIntercalibration_Stat146: 4.85753649e-12 + syst_JES_EtaIntercalibration_Stat147: 4.85438517e-12 syst_JES_EtaIntercalibration_Stat148: 0.0 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 3.3105395341998256e-16 - syst_JES_EtaIntercalibration_Stat151: 2.436108258395176e-06 - syst_JES_EtaIntercalibration_Stat152: 1.6609431146189206e-06 - syst_JES_EtaIntercalibration_Stat153: 1.7327369188656425e-06 - syst_JES_EtaIntercalibration_Stat154: 2.4034421587354665e-07 - syst_JES_EtaIntercalibration_Stat155: 8.668466242652158e-07 - syst_JES_EtaIntercalibration_Stat156: 2.7282631595027633e-06 - syst_JES_EtaIntercalibration_Stat157: 2.335268292937666e-06 - syst_JES_EtaIntercalibration_Stat158: 8.157170367601439e-07 - syst_JES_EtaIntercalibration_Stat159: 4.6636785655988045e-12 + syst_JES_EtaIntercalibration_Stat150: 3.31053953e-16 + syst_JES_EtaIntercalibration_Stat151: 2.43610826e-06 + syst_JES_EtaIntercalibration_Stat152: 1.66094311e-06 + syst_JES_EtaIntercalibration_Stat153: 1.73273692e-06 + syst_JES_EtaIntercalibration_Stat154: 2.40344216e-07 + syst_JES_EtaIntercalibration_Stat155: 8.66846624e-07 + syst_JES_EtaIntercalibration_Stat156: 2.72826316e-06 + syst_JES_EtaIntercalibration_Stat157: 2.33526829e-06 + syst_JES_EtaIntercalibration_Stat158: 8.15717037e-07 + syst_JES_EtaIntercalibration_Stat159: 4.66367857e-12 syst_JES_EtaIntercalibration_Stat16: 0.0 syst_JES_EtaIntercalibration_Stat160: 0.0 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 - syst_JES_EtaIntercalibration_Stat164: 4.857536489826916e-12 + syst_JES_EtaIntercalibration_Stat164: 4.85753649e-12 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 - syst_JES_EtaIntercalibration_Stat168: 1.4696451102221923e-14 - syst_JES_EtaIntercalibration_Stat169: 5.795779326371907e-07 + syst_JES_EtaIntercalibration_Stat168: 1.46964511e-14 + syst_JES_EtaIntercalibration_Stat169: 5.79577933e-07 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 4.003031850984951e-06 - syst_JES_EtaIntercalibration_Stat171: 3.933486589528431e-06 - syst_JES_EtaIntercalibration_Stat172: 1.3157763516266738e-06 - syst_JES_EtaIntercalibration_Stat173: 1.4982965152131936e-06 - syst_JES_EtaIntercalibration_Stat174: 4.312967192084818e-06 - syst_JES_EtaIntercalibration_Stat175: 3.2695019116067204e-06 - syst_JES_EtaIntercalibration_Stat176: 5.735534191332023e-07 - syst_JES_EtaIntercalibration_Stat177: 4.052594477615544e-11 + syst_JES_EtaIntercalibration_Stat170: 4.00303185e-06 + syst_JES_EtaIntercalibration_Stat171: 3.93348659e-06 + syst_JES_EtaIntercalibration_Stat172: 1.31577635e-06 + syst_JES_EtaIntercalibration_Stat173: 1.49829652e-06 + syst_JES_EtaIntercalibration_Stat174: 4.31296719e-06 + syst_JES_EtaIntercalibration_Stat175: 3.26950191e-06 + syst_JES_EtaIntercalibration_Stat176: 5.73553419e-07 + syst_JES_EtaIntercalibration_Stat177: 4.05259448e-11 syst_JES_EtaIntercalibration_Stat178: 0.0 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 @@ -19656,17 +19656,17 @@ bins: syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 syst_JES_EtaIntercalibration_Stat184: 0.0 - syst_JES_EtaIntercalibration_Stat185: 1.57067522635967e-08 - syst_JES_EtaIntercalibration_Stat186: 2.03541709484813e-06 - syst_JES_EtaIntercalibration_Stat187: 2.088704083875933e-05 - syst_JES_EtaIntercalibration_Stat188: 2.0438382396853233e-05 - syst_JES_EtaIntercalibration_Stat189: 2.692836562066105e-06 + syst_JES_EtaIntercalibration_Stat185: 1.57067523e-08 + syst_JES_EtaIntercalibration_Stat186: 2.03541709e-06 + syst_JES_EtaIntercalibration_Stat187: 2.08870408e-05 + syst_JES_EtaIntercalibration_Stat188: 2.04383824e-05 + syst_JES_EtaIntercalibration_Stat189: 2.69283656e-06 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 2.361193130601561e-06 - syst_JES_EtaIntercalibration_Stat191: 1.730316950734749e-05 - syst_JES_EtaIntercalibration_Stat192: 2.35121558985985e-05 - syst_JES_EtaIntercalibration_Stat193: 2.412110072115284e-06 - syst_JES_EtaIntercalibration_Stat194: 4.0850418296511966e-11 + syst_JES_EtaIntercalibration_Stat190: 2.36119313e-06 + syst_JES_EtaIntercalibration_Stat191: 1.73031695e-05 + syst_JES_EtaIntercalibration_Stat192: 2.35121559e-05 + syst_JES_EtaIntercalibration_Stat193: 2.41211007e-06 + syst_JES_EtaIntercalibration_Stat194: 4.08504183e-11 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 syst_JES_EtaIntercalibration_Stat197: 0.0 @@ -19674,70 +19674,70 @@ bins: syst_JES_EtaIntercalibration_Stat199: 0.0 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 1.5462447949392584e-08 - syst_JES_EtaIntercalibration_Stat201: 4.406070443149996e-06 - syst_JES_EtaIntercalibration_Stat202: 4.688560200104079e-05 - syst_JES_EtaIntercalibration_Stat203: 4.000910356406402e-05 - syst_JES_EtaIntercalibration_Stat204: 4.945918923718827e-06 - syst_JES_EtaIntercalibration_Stat205: 4.120548825393617e-06 - syst_JES_EtaIntercalibration_Stat206: 3.7748751966124654e-05 - syst_JES_EtaIntercalibration_Stat207: 4.245595378742539e-05 - syst_JES_EtaIntercalibration_Stat208: 5.087004300175103e-06 - syst_JES_EtaIntercalibration_Stat209: 2.1044414555981794e-07 + syst_JES_EtaIntercalibration_Stat200: 1.54624479e-08 + syst_JES_EtaIntercalibration_Stat201: 4.40607044e-06 + syst_JES_EtaIntercalibration_Stat202: 4.68856020e-05 + syst_JES_EtaIntercalibration_Stat203: 4.00091036e-05 + syst_JES_EtaIntercalibration_Stat204: 4.94591892e-06 + syst_JES_EtaIntercalibration_Stat205: 4.12054883e-06 + syst_JES_EtaIntercalibration_Stat206: 3.77487520e-05 + syst_JES_EtaIntercalibration_Stat207: 4.24559538e-05 + syst_JES_EtaIntercalibration_Stat208: 5.08700430e-06 + syst_JES_EtaIntercalibration_Stat209: 2.10444146e-07 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 syst_JES_EtaIntercalibration_Stat211: 0.0 syst_JES_EtaIntercalibration_Stat212: 0.0 - syst_JES_EtaIntercalibration_Stat213: 1.5705479243563376e-08 - syst_JES_EtaIntercalibration_Stat214: 3.621858667521415e-06 - syst_JES_EtaIntercalibration_Stat215: 5.2636959211185445e-05 - syst_JES_EtaIntercalibration_Stat216: 4.941761932752326e-05 - syst_JES_EtaIntercalibration_Stat217: 4.454609768262535e-06 - syst_JES_EtaIntercalibration_Stat218: 3.6066815772951182e-06 - syst_JES_EtaIntercalibration_Stat219: 4.4624559381578206e-05 + syst_JES_EtaIntercalibration_Stat213: 1.57054792e-08 + syst_JES_EtaIntercalibration_Stat214: 3.62185867e-06 + syst_JES_EtaIntercalibration_Stat215: 5.26369592e-05 + syst_JES_EtaIntercalibration_Stat216: 4.94176193e-05 + syst_JES_EtaIntercalibration_Stat217: 4.45460977e-06 + syst_JES_EtaIntercalibration_Stat218: 3.60668158e-06 + syst_JES_EtaIntercalibration_Stat219: 4.46245594e-05 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 5.207301316421012e-05 - syst_JES_EtaIntercalibration_Stat221: 3.913470643814771e-06 - syst_JES_EtaIntercalibration_Stat222: 2.0269703765718923e-07 + syst_JES_EtaIntercalibration_Stat220: 5.20730132e-05 + syst_JES_EtaIntercalibration_Stat221: 3.91347064e-06 + syst_JES_EtaIntercalibration_Stat222: 2.02697038e-07 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 - syst_JES_EtaIntercalibration_Stat225: 3.397477956882134e-07 - syst_JES_EtaIntercalibration_Stat226: 9.513535725480826e-06 - syst_JES_EtaIntercalibration_Stat227: 0.00013724342388617386 - syst_JES_EtaIntercalibration_Stat228: 0.00011981564088214861 - syst_JES_EtaIntercalibration_Stat229: 8.487301735534092e-06 + syst_JES_EtaIntercalibration_Stat225: 3.39747796e-07 + syst_JES_EtaIntercalibration_Stat226: 9.51353573e-06 + syst_JES_EtaIntercalibration_Stat227: 1.37243424e-04 + syst_JES_EtaIntercalibration_Stat228: 1.19815641e-04 + syst_JES_EtaIntercalibration_Stat229: 8.48730174e-06 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 9.952955239525594e-06 - syst_JES_EtaIntercalibration_Stat231: 0.00014427025577020374 - syst_JES_EtaIntercalibration_Stat232: 0.00013727778079499975 - syst_JES_EtaIntercalibration_Stat233: 7.084335217929767e-06 - syst_JES_EtaIntercalibration_Stat234: 1.8343137681432804e-07 + syst_JES_EtaIntercalibration_Stat230: 9.95295524e-06 + syst_JES_EtaIntercalibration_Stat231: 1.44270256e-04 + syst_JES_EtaIntercalibration_Stat232: 1.37277781e-04 + syst_JES_EtaIntercalibration_Stat233: 7.08433522e-06 + syst_JES_EtaIntercalibration_Stat234: 1.83431377e-07 syst_JES_EtaIntercalibration_Stat235: 0.0 - syst_JES_EtaIntercalibration_Stat236: 1.5493194473703607e-08 - syst_JES_EtaIntercalibration_Stat237: 2.230568537391308e-06 - syst_JES_EtaIntercalibration_Stat238: 3.0477455602461302e-05 - syst_JES_EtaIntercalibration_Stat239: 1.570580360885746e-05 + syst_JES_EtaIntercalibration_Stat236: 1.54931945e-08 + syst_JES_EtaIntercalibration_Stat237: 2.23056854e-06 + syst_JES_EtaIntercalibration_Stat238: 3.04774556e-05 + syst_JES_EtaIntercalibration_Stat239: 1.57058036e-05 syst_JES_EtaIntercalibration_Stat24: 0.0 - syst_JES_EtaIntercalibration_Stat240: 1.924283957735968e-08 - syst_JES_EtaIntercalibration_Stat241: 3.6269143552737213e-06 - syst_JES_EtaIntercalibration_Stat242: 1.4353882427761487e-05 - syst_JES_EtaIntercalibration_Stat243: 1.8531067832156893e-05 - syst_JES_EtaIntercalibration_Stat244: 1.4016309178952923e-06 - syst_JES_EtaIntercalibration_Stat245: 8.749454654434184e-08 + syst_JES_EtaIntercalibration_Stat240: 1.92428396e-08 + syst_JES_EtaIntercalibration_Stat241: 3.62691436e-06 + syst_JES_EtaIntercalibration_Stat242: 1.43538824e-05 + syst_JES_EtaIntercalibration_Stat243: 1.85310678e-05 + syst_JES_EtaIntercalibration_Stat244: 1.40163092e-06 + syst_JES_EtaIntercalibration_Stat245: 8.74945465e-08 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 syst_JES_EtaIntercalibration_Stat27: 0.0 - syst_JES_EtaIntercalibration_Stat28: 3.144538241141297e-20 - syst_JES_EtaIntercalibration_Stat29: 6.990361162879927e-18 + syst_JES_EtaIntercalibration_Stat28: 3.14453824e-20 + syst_JES_EtaIntercalibration_Stat29: 6.99036116e-18 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 1.370236096554167e-16 - syst_JES_EtaIntercalibration_Stat31: 8.24605802793068e-17 - syst_JES_EtaIntercalibration_Stat32: 1.5453263830013387e-19 - syst_JES_EtaIntercalibration_Stat33: 2.73827184689541e-18 - syst_JES_EtaIntercalibration_Stat34: 4.1049604266110775e-07 - syst_JES_EtaIntercalibration_Stat35: 4.551840968663905e-12 - syst_JES_EtaIntercalibration_Stat36: 3.93497150724119e-17 - syst_JES_EtaIntercalibration_Stat37: 2.2949673200287625e-20 + syst_JES_EtaIntercalibration_Stat30: 1.37023610e-16 + syst_JES_EtaIntercalibration_Stat31: 8.24605803e-17 + syst_JES_EtaIntercalibration_Stat32: 1.54532638e-19 + syst_JES_EtaIntercalibration_Stat33: 2.73827185e-18 + syst_JES_EtaIntercalibration_Stat34: 4.10496043e-07 + syst_JES_EtaIntercalibration_Stat35: 4.55184097e-12 + syst_JES_EtaIntercalibration_Stat36: 3.93497151e-17 + syst_JES_EtaIntercalibration_Stat37: 2.29496732e-20 syst_JES_EtaIntercalibration_Stat38: 0.0 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 @@ -19752,20 +19752,20 @@ bins: syst_JES_EtaIntercalibration_Stat48: 0.0 syst_JES_EtaIntercalibration_Stat49: 0.0 syst_JES_EtaIntercalibration_Stat5: 0.0 - syst_JES_EtaIntercalibration_Stat50: 3.1852414351191656e-20 - syst_JES_EtaIntercalibration_Stat51: 1.4276998389017212e-17 - syst_JES_EtaIntercalibration_Stat52: 1.1605117093334301e-14 - syst_JES_EtaIntercalibration_Stat53: 9.335363088814491e-16 - syst_JES_EtaIntercalibration_Stat54: 5.0756141500315014e-18 - syst_JES_EtaIntercalibration_Stat55: 3.070601886222797e-15 - syst_JES_EtaIntercalibration_Stat56: 4.1084245149041465e-07 - syst_JES_EtaIntercalibration_Stat57: 1.8056629671673942e-07 - syst_JES_EtaIntercalibration_Stat58: 5.161209233309573e-17 - syst_JES_EtaIntercalibration_Stat59: 8.236230129737756e-20 + syst_JES_EtaIntercalibration_Stat50: 3.18524144e-20 + syst_JES_EtaIntercalibration_Stat51: 1.42769984e-17 + syst_JES_EtaIntercalibration_Stat52: 1.16051171e-14 + syst_JES_EtaIntercalibration_Stat53: 9.33536309e-16 + syst_JES_EtaIntercalibration_Stat54: 5.07561415e-18 + syst_JES_EtaIntercalibration_Stat55: 3.07060189e-15 + syst_JES_EtaIntercalibration_Stat56: 4.10842451e-07 + syst_JES_EtaIntercalibration_Stat57: 1.80566297e-07 + syst_JES_EtaIntercalibration_Stat58: 5.16120923e-17 + syst_JES_EtaIntercalibration_Stat59: 8.23623013e-20 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 1.366588087171844e-18 - syst_JES_EtaIntercalibration_Stat62: 1.366588087171844e-18 + syst_JES_EtaIntercalibration_Stat61: 1.36658809e-18 + syst_JES_EtaIntercalibration_Stat62: 1.36658809e-18 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 @@ -19773,218 +19773,218 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 3.144538241141297e-20 + syst_JES_EtaIntercalibration_Stat7: 3.14453824e-20 syst_JES_EtaIntercalibration_Stat70: 0.0 syst_JES_EtaIntercalibration_Stat71: 0.0 - syst_JES_EtaIntercalibration_Stat72: 5.067980662946535e-19 - syst_JES_EtaIntercalibration_Stat73: 1.6926237514802277e-14 - syst_JES_EtaIntercalibration_Stat74: 2.695268019426882e-06 - syst_JES_EtaIntercalibration_Stat75: 2.5989419441849834e-06 - syst_JES_EtaIntercalibration_Stat76: 4.551503057232852e-16 - syst_JES_EtaIntercalibration_Stat77: 2.654864626963115e-15 - syst_JES_EtaIntercalibration_Stat78: 3.956867047471676e-07 - syst_JES_EtaIntercalibration_Stat79: 5.211743494222016e-07 - syst_JES_EtaIntercalibration_Stat8: 2.5890869046828075e-18 - syst_JES_EtaIntercalibration_Stat80: 4.714556144145491e-16 - syst_JES_EtaIntercalibration_Stat81: 1.9875283016852866e-19 - syst_JES_EtaIntercalibration_Stat82: 1.366588087171844e-18 - syst_JES_EtaIntercalibration_Stat83: 1.366588087171844e-18 - syst_JES_EtaIntercalibration_Stat84: 1.366588087171844e-18 + syst_JES_EtaIntercalibration_Stat72: 5.06798066e-19 + syst_JES_EtaIntercalibration_Stat73: 1.69262375e-14 + syst_JES_EtaIntercalibration_Stat74: 2.69526802e-06 + syst_JES_EtaIntercalibration_Stat75: 2.59894194e-06 + syst_JES_EtaIntercalibration_Stat76: 4.55150306e-16 + syst_JES_EtaIntercalibration_Stat77: 2.65486463e-15 + syst_JES_EtaIntercalibration_Stat78: 3.95686705e-07 + syst_JES_EtaIntercalibration_Stat79: 5.21174349e-07 + syst_JES_EtaIntercalibration_Stat8: 2.58908690e-18 + syst_JES_EtaIntercalibration_Stat80: 4.71455614e-16 + syst_JES_EtaIntercalibration_Stat81: 1.98752830e-19 + syst_JES_EtaIntercalibration_Stat82: 1.36658809e-18 + syst_JES_EtaIntercalibration_Stat83: 1.36658809e-18 + syst_JES_EtaIntercalibration_Stat84: 1.36658809e-18 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 syst_JES_EtaIntercalibration_Stat89: 0.0 - syst_JES_EtaIntercalibration_Stat9: 1.5397394162649733e-18 + syst_JES_EtaIntercalibration_Stat9: 1.53973942e-18 syst_JES_EtaIntercalibration_Stat90: 0.0 syst_JES_EtaIntercalibration_Stat91: 0.0 syst_JES_EtaIntercalibration_Stat92: 0.0 - syst_JES_EtaIntercalibration_Stat93: 4.184634751086407e-19 - syst_JES_EtaIntercalibration_Stat94: 2.2330106733958977e-14 - syst_JES_EtaIntercalibration_Stat95: 2.6952666618635475e-06 - syst_JES_EtaIntercalibration_Stat96: 2.7046675225432055e-06 - syst_JES_EtaIntercalibration_Stat97: 7.686525821401694e-15 - syst_JES_EtaIntercalibration_Stat98: 1.392308988694679e-15 - syst_JES_EtaIntercalibration_Stat99: 7.343025981358373e-07 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.001416838974619205 - syst_JES_Flavour_Comp: 0.0037500599995200076 - syst_JES_Flavour_Response: 0.0005262010357268407 - syst_JES_Gjet_Generator: 0.005164239440614659 - syst_JES_Gjet_OOC: 0.004265225316439918 - syst_JES_Gjet_Purity: 0.000861689159442081 - syst_JES_Gjet_Stat1: 1.448843051368919e-05 - syst_JES_Gjet_Stat10: 8.52978505004669e-05 - syst_JES_Gjet_Stat11: 9.837284826109286e-05 - syst_JES_Gjet_Stat12: 0.00031589471347270127 - syst_JES_Gjet_Stat13: 0.0009777864081689824 - syst_JES_Gjet_Stat14: 0.002405081495500724 - syst_JES_Gjet_Stat15: 0.0016053295611805074 - syst_JES_Gjet_Stat2: 1.7515633788133385e-05 - syst_JES_Gjet_Stat3: 1.5558065432437286e-05 - syst_JES_Gjet_Stat4: 1.790132818396445e-05 - syst_JES_Gjet_Stat5: 1.893152133347978e-05 - syst_JES_Gjet_Stat6: 3.787045913373642e-05 - syst_JES_Gjet_Stat7: 5.498401879637391e-05 - syst_JES_Gjet_Stat8: 3.9700986133848106e-05 - syst_JES_Gjet_Stat9: 5.493250472170371e-05 - syst_JES_Gjet_Veto: 0.0042076545426163485 - syst_JES_Gjet_dPhi: 0.00042141868432711907 - syst_JES_LArESZee: 0.007949883206689266 - syst_JES_LArEsmear: 0.0006639536580214014 - syst_JES_LAr_JVT: 0.0008184142273323455 - syst_JES_MJB_Alpha: 4.577125474301529e-05 - syst_JES_MJB_Asym: 0.0006805452281075814 - syst_JES_MJB_Beta: 5.561456643722038e-05 - syst_JES_MJB_Fragmentation: 0.0005832219045954978 - syst_JES_MJB_Stat1: 4.389639503136903e-06 - syst_JES_MJB_Stat10: 6.058342904623343e-05 - syst_JES_MJB_Stat11: 5.242169851311573e-05 - syst_JES_MJB_Stat12: 4.803182486643621e-05 - syst_JES_MJB_Stat13: 9.32376966414336e-06 - syst_JES_MJB_Stat14: 3.454635174298438e-05 - syst_JES_MJB_Stat15: 4.5104244811325685e-05 - syst_JES_MJB_Stat16: 2.178014405370176e-05 - syst_JES_MJB_Stat2: 7.966439778847261e-06 - syst_JES_MJB_Stat3: 3.449337726288917e-05 - syst_JES_MJB_Stat4: 2.8794309659201766e-05 - syst_JES_MJB_Stat5: 2.666386459236545e-05 - syst_JES_MJB_Stat6: 2.642497848627317e-05 - syst_JES_MJB_Stat7: 3.572343134414722e-05 - syst_JES_MJB_Stat8: 5.1127012429830094e-05 - syst_JES_MJB_Stat9: 5.510344000150989e-05 - syst_JES_MJB_Threshold: 0.000490140571673066 - syst_JES_Pileup_MuOffset: 0.0010132530224479966 - syst_JES_Pileup_NPVOffset: 0.0010414018760785866 - syst_JES_Pileup_Pt_term: 0.0006842502959444007 - syst_JES_Pileup_Rho_topology: 0.001511095298119877 - syst_JES_PunchThrough_MC15: 0.0005676144884514489 - syst_JES_SingleParticle_HighPt: 3.103795217149482e-14 - syst_JES_Zjet_MC: 0.002198262040794955 - syst_JES_Zjet_MuScale: 0.0001579923020276621 - syst_JES_Zjet_MuSmearID: 3.709362867124218e-05 - syst_JES_Zjet_MuSmearMS: 0.0006142188921711868 - syst_JES_Zjet_OOC: 0.001197492224400643 - syst_JES_Zjet_Stat1: 6.524751029732857e-05 - syst_JES_Zjet_Stat10: 0.00010025068615725281 - syst_JES_Zjet_Stat11: 0.00012838410805080197 - syst_JES_Zjet_Stat12: 0.0003811579642025075 - syst_JES_Zjet_Stat13: 0.0006676533138538294 - syst_JES_Zjet_Stat2: 3.6015050215153108e-06 - syst_JES_Zjet_Stat3: 3.8659633986886105e-05 - syst_JES_Zjet_Stat4: 3.395743659347683e-05 - syst_JES_Zjet_Stat5: 3.986067328834273e-05 - syst_JES_Zjet_Stat6: 4.609054892274554e-05 - syst_JES_Zjet_Stat7: 3.767503251491629e-05 - syst_JES_Zjet_Stat8: 4.13429631255429e-05 - syst_JES_Zjet_Stat9: 5.870515373457427e-05 - syst_JES_Zjet_Veto: 0.00026928304811109073 - syst_JES_Zjet_dPhi: 0.0002322700798639377 - syst_PRW: 0.0001833 - syst_Unfolding_bias: 0.0001905 - syst_cleaning: 0.0014757072880486834 + syst_JES_EtaIntercalibration_Stat93: 4.18463475e-19 + syst_JES_EtaIntercalibration_Stat94: 2.23301067e-14 + syst_JES_EtaIntercalibration_Stat95: 2.69526666e-06 + syst_JES_EtaIntercalibration_Stat96: 2.70466752e-06 + syst_JES_EtaIntercalibration_Stat97: 7.68652582e-15 + syst_JES_EtaIntercalibration_Stat98: 1.39230899e-15 + syst_JES_EtaIntercalibration_Stat99: 7.34302598e-07 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.41683897e-03 + syst_JES_Flavour_Comp: 3.75006000e-03 + syst_JES_Flavour_Response: 5.26201036e-04 + syst_JES_Gjet_Generator: 5.16423944e-03 + syst_JES_Gjet_OOC: 4.26522532e-03 + syst_JES_Gjet_Purity: 8.61689159e-04 + syst_JES_Gjet_Stat1: 1.44884305e-05 + syst_JES_Gjet_Stat10: 8.52978505e-05 + syst_JES_Gjet_Stat11: 9.83728483e-05 + syst_JES_Gjet_Stat12: 3.15894713e-04 + syst_JES_Gjet_Stat13: 9.77786408e-04 + syst_JES_Gjet_Stat14: 2.40508150e-03 + syst_JES_Gjet_Stat15: 1.60532956e-03 + syst_JES_Gjet_Stat2: 1.75156338e-05 + syst_JES_Gjet_Stat3: 1.55580654e-05 + syst_JES_Gjet_Stat4: 1.79013282e-05 + syst_JES_Gjet_Stat5: 1.89315213e-05 + syst_JES_Gjet_Stat6: 3.78704591e-05 + syst_JES_Gjet_Stat7: 5.49840188e-05 + syst_JES_Gjet_Stat8: 3.97009861e-05 + syst_JES_Gjet_Stat9: 5.49325047e-05 + syst_JES_Gjet_Veto: 4.20765454e-03 + syst_JES_Gjet_dPhi: 4.21418684e-04 + syst_JES_LArESZee: 7.94988321e-03 + syst_JES_LArEsmear: 6.63953658e-04 + syst_JES_LAr_JVT: 8.18414227e-04 + syst_JES_MJB_Alpha: 4.57712547e-05 + syst_JES_MJB_Asym: 6.80545228e-04 + syst_JES_MJB_Beta: 5.56145664e-05 + syst_JES_MJB_Fragmentation: 5.83221905e-04 + syst_JES_MJB_Stat1: 4.38963950e-06 + syst_JES_MJB_Stat10: 6.05834290e-05 + syst_JES_MJB_Stat11: 5.24216985e-05 + syst_JES_MJB_Stat12: 4.80318249e-05 + syst_JES_MJB_Stat13: 9.32376966e-06 + syst_JES_MJB_Stat14: 3.45463517e-05 + syst_JES_MJB_Stat15: 4.51042448e-05 + syst_JES_MJB_Stat16: 2.17801441e-05 + syst_JES_MJB_Stat2: 7.96643978e-06 + syst_JES_MJB_Stat3: 3.44933773e-05 + syst_JES_MJB_Stat4: 2.87943097e-05 + syst_JES_MJB_Stat5: 2.66638646e-05 + syst_JES_MJB_Stat6: 2.64249785e-05 + syst_JES_MJB_Stat7: 3.57234313e-05 + syst_JES_MJB_Stat8: 5.11270124e-05 + syst_JES_MJB_Stat9: 5.51034400e-05 + syst_JES_MJB_Threshold: 4.90140572e-04 + syst_JES_Pileup_MuOffset: 1.01325302e-03 + syst_JES_Pileup_NPVOffset: 1.04140188e-03 + syst_JES_Pileup_Pt_term: 6.84250296e-04 + syst_JES_Pileup_Rho_topology: 1.51109530e-03 + syst_JES_PunchThrough_MC15: 5.67614488e-04 + syst_JES_SingleParticle_HighPt: 3.10379522e-14 + syst_JES_Zjet_MC: 2.19826204e-03 + syst_JES_Zjet_MuScale: 1.57992302e-04 + syst_JES_Zjet_MuSmearID: 3.70936287e-05 + syst_JES_Zjet_MuSmearMS: 6.14218892e-04 + syst_JES_Zjet_OOC: 1.19749222e-03 + syst_JES_Zjet_Stat1: 6.52475103e-05 + syst_JES_Zjet_Stat10: 1.00250686e-04 + syst_JES_Zjet_Stat11: 1.28384108e-04 + syst_JES_Zjet_Stat12: 3.81157964e-04 + syst_JES_Zjet_Stat13: 6.67653314e-04 + syst_JES_Zjet_Stat2: 3.60150502e-06 + syst_JES_Zjet_Stat3: 3.86596340e-05 + syst_JES_Zjet_Stat4: 3.39574366e-05 + syst_JES_Zjet_Stat5: 3.98606733e-05 + syst_JES_Zjet_Stat6: 4.60905489e-05 + syst_JES_Zjet_Stat7: 3.76750325e-05 + syst_JES_Zjet_Stat8: 4.13429631e-05 + syst_JES_Zjet_Stat9: 5.87051537e-05 + syst_JES_Zjet_Veto: 2.69283048e-04 + syst_JES_Zjet_dPhi: 2.32270080e-04 + syst_PRW: 1.83300000e-04 + syst_Unfolding_bias: 1.90500000e-04 + syst_cleaning: 1.47570729e-03 syst_lumi: 0.004983 -- stat: 0.00099325 +- stat: 9.93250000e-04 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.00040456552930273235 - syst_JER_NP1: 4.4767124935604255e-05 - syst_JER_NP2: 0.0001789881227204755 - syst_JER_NP3: 4.331227857086256e-05 - syst_JER_NP4: 5.843528728431135e-05 - syst_JER_NP5: 6.870036007911457e-05 - syst_JER_NP6: 6.206208826650937e-05 - syst_JER_NP7: 2.990617206811163e-05 - syst_JER_NP8: 0.00010016606448792924 - syst_JES_EtaIntercalibration_Modelling: 0.002737587761150316 - syst_JES_EtaIntercalibration_NonClosure: 1.2981720802728736e-13 + syst_JER_NP0: 4.04565529e-04 + syst_JER_NP1: 4.47671249e-05 + syst_JER_NP2: 1.78988123e-04 + syst_JER_NP3: 4.33122786e-05 + syst_JER_NP4: 5.84352873e-05 + syst_JER_NP5: 6.87003601e-05 + syst_JER_NP6: 6.20620883e-05 + syst_JER_NP7: 2.99061721e-05 + syst_JER_NP8: 1.00166064e-04 + syst_JES_EtaIntercalibration_Modelling: 2.73758776e-03 + syst_JES_EtaIntercalibration_NonClosure: 1.29817208e-13 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 3.172250577460038e-07 - syst_JES_EtaIntercalibration_Stat101: 1.0049531723916293e-16 - syst_JES_EtaIntercalibration_Stat102: 2.2103951894797e-19 - syst_JES_EtaIntercalibration_Stat103: 3.81830600528559e-19 - syst_JES_EtaIntercalibration_Stat104: 3.81830600528559e-19 - syst_JES_EtaIntercalibration_Stat105: 3.81830600528559e-19 + syst_JES_EtaIntercalibration_Stat100: 3.17225058e-07 + syst_JES_EtaIntercalibration_Stat101: 1.00495317e-16 + syst_JES_EtaIntercalibration_Stat102: 2.21039519e-19 + syst_JES_EtaIntercalibration_Stat103: 3.81830601e-19 + syst_JES_EtaIntercalibration_Stat104: 3.81830601e-19 + syst_JES_EtaIntercalibration_Stat105: 3.81830601e-19 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 1.7303187567613084e-15 - syst_JES_EtaIntercalibration_Stat111: 1.7303187567613084e-15 + syst_JES_EtaIntercalibration_Stat110: 1.73031876e-15 + syst_JES_EtaIntercalibration_Stat111: 1.73031876e-15 syst_JES_EtaIntercalibration_Stat112: 0.0 - syst_JES_EtaIntercalibration_Stat113: 8.481804804992861e-18 - syst_JES_EtaIntercalibration_Stat114: 1.5597447534629125e-06 - syst_JES_EtaIntercalibration_Stat115: 1.4731236429777373e-07 - syst_JES_EtaIntercalibration_Stat116: 2.5497858733627026e-07 - syst_JES_EtaIntercalibration_Stat117: 2.3382336816494625e-12 - syst_JES_EtaIntercalibration_Stat118: 2.462109789946762e-07 - syst_JES_EtaIntercalibration_Stat119: 1.5646612628617095e-07 - syst_JES_EtaIntercalibration_Stat12: 5.583166380830146e-16 - syst_JES_EtaIntercalibration_Stat120: 3.29323135385293e-07 - syst_JES_EtaIntercalibration_Stat121: 1.0214781337233802e-11 - syst_JES_EtaIntercalibration_Stat122: 8.473986580559353e-18 - syst_JES_EtaIntercalibration_Stat123: 3.81830600528559e-19 - syst_JES_EtaIntercalibration_Stat124: 3.81830600528559e-19 - syst_JES_EtaIntercalibration_Stat125: 3.81830600528559e-19 + syst_JES_EtaIntercalibration_Stat113: 8.48180480e-18 + syst_JES_EtaIntercalibration_Stat114: 1.55974475e-06 + syst_JES_EtaIntercalibration_Stat115: 1.47312364e-07 + syst_JES_EtaIntercalibration_Stat116: 2.54978587e-07 + syst_JES_EtaIntercalibration_Stat117: 2.33823368e-12 + syst_JES_EtaIntercalibration_Stat118: 2.46210979e-07 + syst_JES_EtaIntercalibration_Stat119: 1.56466126e-07 + syst_JES_EtaIntercalibration_Stat12: 5.58316638e-16 + syst_JES_EtaIntercalibration_Stat120: 3.29323135e-07 + syst_JES_EtaIntercalibration_Stat121: 1.02147813e-11 + syst_JES_EtaIntercalibration_Stat122: 8.47398658e-18 + syst_JES_EtaIntercalibration_Stat123: 3.81830601e-19 + syst_JES_EtaIntercalibration_Stat124: 3.81830601e-19 + syst_JES_EtaIntercalibration_Stat125: 3.81830601e-19 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 7.821941446981051e-13 - syst_JES_EtaIntercalibration_Stat129: 7.816190742318153e-13 - syst_JES_EtaIntercalibration_Stat13: 7.414490124475992e-16 - syst_JES_EtaIntercalibration_Stat130: 1.7303187567613084e-15 - syst_JES_EtaIntercalibration_Stat131: 2.0481500799501973e-20 - syst_JES_EtaIntercalibration_Stat132: 1.5394760313740478e-13 - syst_JES_EtaIntercalibration_Stat133: 1.5597109049560948e-06 - syst_JES_EtaIntercalibration_Stat134: 1.1098239533817964e-06 - syst_JES_EtaIntercalibration_Stat135: 8.141158865616124e-07 - syst_JES_EtaIntercalibration_Stat136: 5.15380667342839e-07 - syst_JES_EtaIntercalibration_Stat137: 2.770371094276e-07 - syst_JES_EtaIntercalibration_Stat138: 6.97068188916981e-07 - syst_JES_EtaIntercalibration_Stat139: 7.024033456640138e-07 - syst_JES_EtaIntercalibration_Stat14: 4.6271737324202555e-20 - syst_JES_EtaIntercalibration_Stat140: 1.2818663112821087e-07 - syst_JES_EtaIntercalibration_Stat141: 7.466871120832123e-13 + syst_JES_EtaIntercalibration_Stat128: 7.82194145e-13 + syst_JES_EtaIntercalibration_Stat129: 7.81619074e-13 + syst_JES_EtaIntercalibration_Stat13: 7.41449012e-16 + syst_JES_EtaIntercalibration_Stat130: 1.73031876e-15 + syst_JES_EtaIntercalibration_Stat131: 2.04815008e-20 + syst_JES_EtaIntercalibration_Stat132: 1.53947603e-13 + syst_JES_EtaIntercalibration_Stat133: 1.55971090e-06 + syst_JES_EtaIntercalibration_Stat134: 1.10982395e-06 + syst_JES_EtaIntercalibration_Stat135: 8.14115887e-07 + syst_JES_EtaIntercalibration_Stat136: 5.15380667e-07 + syst_JES_EtaIntercalibration_Stat137: 2.77037109e-07 + syst_JES_EtaIntercalibration_Stat138: 6.97068189e-07 + syst_JES_EtaIntercalibration_Stat139: 7.02403346e-07 + syst_JES_EtaIntercalibration_Stat14: 4.62717373e-20 + syst_JES_EtaIntercalibration_Stat140: 1.28186631e-07 + syst_JES_EtaIntercalibration_Stat141: 7.46687112e-13 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 3.81830600528559e-19 - syst_JES_EtaIntercalibration_Stat144: 3.81830600528559e-19 + syst_JES_EtaIntercalibration_Stat143: 3.81830601e-19 + syst_JES_EtaIntercalibration_Stat144: 3.81830601e-19 syst_JES_EtaIntercalibration_Stat145: 0.0 - syst_JES_EtaIntercalibration_Stat146: 7.821941446981051e-13 - syst_JES_EtaIntercalibration_Stat147: 7.816190742318153e-13 + syst_JES_EtaIntercalibration_Stat146: 7.82194145e-13 + syst_JES_EtaIntercalibration_Stat147: 7.81619074e-13 syst_JES_EtaIntercalibration_Stat148: 0.0 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 6.41532485596014e-17 - syst_JES_EtaIntercalibration_Stat151: 1.559708344435593e-06 - syst_JES_EtaIntercalibration_Stat152: 1.0444509466700675e-06 - syst_JES_EtaIntercalibration_Stat153: 7.707539993409051e-07 - syst_JES_EtaIntercalibration_Stat154: 1.5981622792023304e-07 - syst_JES_EtaIntercalibration_Stat155: 5.640562383308955e-07 - syst_JES_EtaIntercalibration_Stat156: 1.3246931371076094e-06 - syst_JES_EtaIntercalibration_Stat157: 1.5447267557726838e-06 - syst_JES_EtaIntercalibration_Stat158: 4.833926018258865e-07 - syst_JES_EtaIntercalibration_Stat159: 7.491376669974719e-13 + syst_JES_EtaIntercalibration_Stat150: 6.41532486e-17 + syst_JES_EtaIntercalibration_Stat151: 1.55970834e-06 + syst_JES_EtaIntercalibration_Stat152: 1.04445095e-06 + syst_JES_EtaIntercalibration_Stat153: 7.70753999e-07 + syst_JES_EtaIntercalibration_Stat154: 1.59816228e-07 + syst_JES_EtaIntercalibration_Stat155: 5.64056238e-07 + syst_JES_EtaIntercalibration_Stat156: 1.32469314e-06 + syst_JES_EtaIntercalibration_Stat157: 1.54472676e-06 + syst_JES_EtaIntercalibration_Stat158: 4.83392602e-07 + syst_JES_EtaIntercalibration_Stat159: 7.49137667e-13 syst_JES_EtaIntercalibration_Stat16: 0.0 syst_JES_EtaIntercalibration_Stat160: 0.0 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 - syst_JES_EtaIntercalibration_Stat164: 7.821941446981051e-13 + syst_JES_EtaIntercalibration_Stat164: 7.82194145e-13 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 - syst_JES_EtaIntercalibration_Stat168: 2.2326134909562828e-15 - syst_JES_EtaIntercalibration_Stat169: 1.6532776778266862e-07 + syst_JES_EtaIntercalibration_Stat168: 2.23261349e-15 + syst_JES_EtaIntercalibration_Stat169: 1.65327768e-07 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 2.4912596713309516e-06 - syst_JES_EtaIntercalibration_Stat171: 3.185187396370895e-06 - syst_JES_EtaIntercalibration_Stat172: 7.510303522494946e-07 - syst_JES_EtaIntercalibration_Stat173: 8.069233839095258e-07 - syst_JES_EtaIntercalibration_Stat174: 2.1474023260674744e-06 - syst_JES_EtaIntercalibration_Stat175: 2.3177512808754953e-06 - syst_JES_EtaIntercalibration_Stat176: 3.7472478724211813e-07 - syst_JES_EtaIntercalibration_Stat177: 6.5258942841192274e-12 + syst_JES_EtaIntercalibration_Stat170: 2.49125967e-06 + syst_JES_EtaIntercalibration_Stat171: 3.18518740e-06 + syst_JES_EtaIntercalibration_Stat172: 7.51030352e-07 + syst_JES_EtaIntercalibration_Stat173: 8.06923384e-07 + syst_JES_EtaIntercalibration_Stat174: 2.14740233e-06 + syst_JES_EtaIntercalibration_Stat175: 2.31775128e-06 + syst_JES_EtaIntercalibration_Stat176: 3.74724787e-07 + syst_JES_EtaIntercalibration_Stat177: 6.52589428e-12 syst_JES_EtaIntercalibration_Stat178: 0.0 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 @@ -19993,17 +19993,17 @@ bins: syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 syst_JES_EtaIntercalibration_Stat184: 0.0 - syst_JES_EtaIntercalibration_Stat185: 4.201981792681639e-08 - syst_JES_EtaIntercalibration_Stat186: 1.279554011169517e-06 - syst_JES_EtaIntercalibration_Stat187: 1.4526084701322653e-05 - syst_JES_EtaIntercalibration_Stat188: 1.351120079785657e-05 - syst_JES_EtaIntercalibration_Stat189: 1.9704555228423707e-06 + syst_JES_EtaIntercalibration_Stat185: 4.20198179e-08 + syst_JES_EtaIntercalibration_Stat186: 1.27955401e-06 + syst_JES_EtaIntercalibration_Stat187: 1.45260847e-05 + syst_JES_EtaIntercalibration_Stat188: 1.35112008e-05 + syst_JES_EtaIntercalibration_Stat189: 1.97045552e-06 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 8.858288830242554e-07 - syst_JES_EtaIntercalibration_Stat191: 9.104512013282207e-06 - syst_JES_EtaIntercalibration_Stat192: 1.5137195909414663e-05 - syst_JES_EtaIntercalibration_Stat193: 1.9584441292771154e-06 - syst_JES_EtaIntercalibration_Stat194: 6.673591761562884e-12 + syst_JES_EtaIntercalibration_Stat190: 8.85828883e-07 + syst_JES_EtaIntercalibration_Stat191: 9.10451201e-06 + syst_JES_EtaIntercalibration_Stat192: 1.51371959e-05 + syst_JES_EtaIntercalibration_Stat193: 1.95844413e-06 + syst_JES_EtaIntercalibration_Stat194: 6.67359176e-12 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 syst_JES_EtaIntercalibration_Stat197: 0.0 @@ -20011,70 +20011,70 @@ bins: syst_JES_EtaIntercalibration_Stat199: 0.0 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 4.197983335269448e-08 - syst_JES_EtaIntercalibration_Stat201: 2.74293870693459e-06 - syst_JES_EtaIntercalibration_Stat202: 3.2051510104829696e-05 - syst_JES_EtaIntercalibration_Stat203: 2.4636405480507904e-05 - syst_JES_EtaIntercalibration_Stat204: 3.4541376637302686e-06 - syst_JES_EtaIntercalibration_Stat205: 2.689871641852597e-06 - syst_JES_EtaIntercalibration_Stat206: 2.302922653933475e-05 - syst_JES_EtaIntercalibration_Stat207: 2.6210015261346187e-05 - syst_JES_EtaIntercalibration_Stat208: 3.35507358339575e-06 - syst_JES_EtaIntercalibration_Stat209: 1.2110498784064095e-07 + syst_JES_EtaIntercalibration_Stat200: 4.19798334e-08 + syst_JES_EtaIntercalibration_Stat201: 2.74293871e-06 + syst_JES_EtaIntercalibration_Stat202: 3.20515101e-05 + syst_JES_EtaIntercalibration_Stat203: 2.46364055e-05 + syst_JES_EtaIntercalibration_Stat204: 3.45413766e-06 + syst_JES_EtaIntercalibration_Stat205: 2.68987164e-06 + syst_JES_EtaIntercalibration_Stat206: 2.30292265e-05 + syst_JES_EtaIntercalibration_Stat207: 2.62100153e-05 + syst_JES_EtaIntercalibration_Stat208: 3.35507358e-06 + syst_JES_EtaIntercalibration_Stat209: 1.21104988e-07 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 syst_JES_EtaIntercalibration_Stat211: 0.0 syst_JES_EtaIntercalibration_Stat212: 0.0 - syst_JES_EtaIntercalibration_Stat213: 4.2019614520177363e-08 - syst_JES_EtaIntercalibration_Stat214: 2.366223548188125e-06 - syst_JES_EtaIntercalibration_Stat215: 3.666311054725172e-05 - syst_JES_EtaIntercalibration_Stat216: 3.1183205415736215e-05 - syst_JES_EtaIntercalibration_Stat217: 2.9904712003294735e-06 - syst_JES_EtaIntercalibration_Stat218: 2.0450141808799276e-06 - syst_JES_EtaIntercalibration_Stat219: 2.886385975575685e-05 + syst_JES_EtaIntercalibration_Stat213: 4.20196145e-08 + syst_JES_EtaIntercalibration_Stat214: 2.36622355e-06 + syst_JES_EtaIntercalibration_Stat215: 3.66631105e-05 + syst_JES_EtaIntercalibration_Stat216: 3.11832054e-05 + syst_JES_EtaIntercalibration_Stat217: 2.99047120e-06 + syst_JES_EtaIntercalibration_Stat218: 2.04501418e-06 + syst_JES_EtaIntercalibration_Stat219: 2.88638598e-05 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 3.2885037251005206e-05 - syst_JES_EtaIntercalibration_Stat221: 3.241059510407052e-06 - syst_JES_EtaIntercalibration_Stat222: 1.1894796386130365e-07 + syst_JES_EtaIntercalibration_Stat220: 3.28850373e-05 + syst_JES_EtaIntercalibration_Stat221: 3.24105951e-06 + syst_JES_EtaIntercalibration_Stat222: 1.18947964e-07 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 - syst_JES_EtaIntercalibration_Stat225: 2.3681984307696855e-07 - syst_JES_EtaIntercalibration_Stat226: 6.897384776130733e-06 - syst_JES_EtaIntercalibration_Stat227: 9.268723361391256e-05 - syst_JES_EtaIntercalibration_Stat228: 8.455354087795496e-05 - syst_JES_EtaIntercalibration_Stat229: 5.793130824519675e-06 + syst_JES_EtaIntercalibration_Stat225: 2.36819843e-07 + syst_JES_EtaIntercalibration_Stat226: 6.89738478e-06 + syst_JES_EtaIntercalibration_Stat227: 9.26872336e-05 + syst_JES_EtaIntercalibration_Stat228: 8.45535409e-05 + syst_JES_EtaIntercalibration_Stat229: 5.79313082e-06 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 7.0101451958928775e-06 - syst_JES_EtaIntercalibration_Stat231: 9.40166691337233e-05 - syst_JES_EtaIntercalibration_Stat232: 9.278673005877511e-05 - syst_JES_EtaIntercalibration_Stat233: 5.5465584599821895e-06 - syst_JES_EtaIntercalibration_Stat234: 1.5378739830281932e-07 + syst_JES_EtaIntercalibration_Stat230: 7.01014520e-06 + syst_JES_EtaIntercalibration_Stat231: 9.40166691e-05 + syst_JES_EtaIntercalibration_Stat232: 9.27867301e-05 + syst_JES_EtaIntercalibration_Stat233: 5.54655846e-06 + syst_JES_EtaIntercalibration_Stat234: 1.53787398e-07 syst_JES_EtaIntercalibration_Stat235: 0.0 - syst_JES_EtaIntercalibration_Stat236: 4.198491157546959e-08 - syst_JES_EtaIntercalibration_Stat237: 2.027067899084784e-06 - syst_JES_EtaIntercalibration_Stat238: 2.2446101554612997e-05 - syst_JES_EtaIntercalibration_Stat239: 1.125064624810504e-05 + syst_JES_EtaIntercalibration_Stat236: 4.19849116e-08 + syst_JES_EtaIntercalibration_Stat237: 2.02706790e-06 + syst_JES_EtaIntercalibration_Stat238: 2.24461016e-05 + syst_JES_EtaIntercalibration_Stat239: 1.12506462e-05 syst_JES_EtaIntercalibration_Stat24: 0.0 - syst_JES_EtaIntercalibration_Stat240: 7.013367308219355e-08 - syst_JES_EtaIntercalibration_Stat241: 1.3146240151177916e-06 - syst_JES_EtaIntercalibration_Stat242: 9.090232780297763e-06 - syst_JES_EtaIntercalibration_Stat243: 1.4152140853948565e-05 - syst_JES_EtaIntercalibration_Stat244: 1.1252434936492634e-06 - syst_JES_EtaIntercalibration_Stat245: 3.0250267354190445e-08 + syst_JES_EtaIntercalibration_Stat240: 7.01336731e-08 + syst_JES_EtaIntercalibration_Stat241: 1.31462402e-06 + syst_JES_EtaIntercalibration_Stat242: 9.09023278e-06 + syst_JES_EtaIntercalibration_Stat243: 1.41521409e-05 + syst_JES_EtaIntercalibration_Stat244: 1.12524349e-06 + syst_JES_EtaIntercalibration_Stat245: 3.02502674e-08 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 syst_JES_EtaIntercalibration_Stat27: 0.0 - syst_JES_EtaIntercalibration_Stat28: 9.143496213156104e-21 - syst_JES_EtaIntercalibration_Stat29: 1.5816508084909261e-18 + syst_JES_EtaIntercalibration_Stat28: 9.14349621e-21 + syst_JES_EtaIntercalibration_Stat29: 1.58165081e-18 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 2.6770334327385604e-17 - syst_JES_EtaIntercalibration_Stat31: 1.7126661050829496e-17 - syst_JES_EtaIntercalibration_Stat32: 4.210191533647846e-20 - syst_JES_EtaIntercalibration_Stat33: 7.844842224034847e-19 - syst_JES_EtaIntercalibration_Stat34: 2.66995632219328e-07 - syst_JES_EtaIntercalibration_Stat35: 7.304948192196205e-13 - syst_JES_EtaIntercalibration_Stat36: 8.141114918731954e-18 - syst_JES_EtaIntercalibration_Stat37: 6.674457786966669e-21 + syst_JES_EtaIntercalibration_Stat30: 2.67703343e-17 + syst_JES_EtaIntercalibration_Stat31: 1.71266611e-17 + syst_JES_EtaIntercalibration_Stat32: 4.21019153e-20 + syst_JES_EtaIntercalibration_Stat33: 7.84484222e-19 + syst_JES_EtaIntercalibration_Stat34: 2.66995632e-07 + syst_JES_EtaIntercalibration_Stat35: 7.30494819e-13 + syst_JES_EtaIntercalibration_Stat36: 8.14111492e-18 + syst_JES_EtaIntercalibration_Stat37: 6.67445779e-21 syst_JES_EtaIntercalibration_Stat38: 0.0 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 @@ -20089,20 +20089,20 @@ bins: syst_JES_EtaIntercalibration_Stat48: 0.0 syst_JES_EtaIntercalibration_Stat49: 0.0 syst_JES_EtaIntercalibration_Stat5: 0.0 - syst_JES_EtaIntercalibration_Stat50: 9.262141693474572e-21 - syst_JES_EtaIntercalibration_Stat51: 3.049991475397923e-18 - syst_JES_EtaIntercalibration_Stat52: 1.789000489099989e-15 - syst_JES_EtaIntercalibration_Stat53: 1.7277327426427965e-16 - syst_JES_EtaIntercalibration_Stat54: 1.0784836855511538e-18 - syst_JES_EtaIntercalibration_Stat55: 5.559566568537515e-16 - syst_JES_EtaIntercalibration_Stat56: 2.672554395944197e-07 - syst_JES_EtaIntercalibration_Stat57: 5.006492859869335e-08 - syst_JES_EtaIntercalibration_Stat58: 1.0368663317901685e-17 - syst_JES_EtaIntercalibration_Stat59: 2.3361932641585967e-20 + syst_JES_EtaIntercalibration_Stat50: 9.26214169e-21 + syst_JES_EtaIntercalibration_Stat51: 3.04999148e-18 + syst_JES_EtaIntercalibration_Stat52: 1.78900049e-15 + syst_JES_EtaIntercalibration_Stat53: 1.72773274e-16 + syst_JES_EtaIntercalibration_Stat54: 1.07848369e-18 + syst_JES_EtaIntercalibration_Stat55: 5.55956657e-16 + syst_JES_EtaIntercalibration_Stat56: 2.67255440e-07 + syst_JES_EtaIntercalibration_Stat57: 5.00649286e-08 + syst_JES_EtaIntercalibration_Stat58: 1.03686633e-17 + syst_JES_EtaIntercalibration_Stat59: 2.33619326e-20 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 3.81830600528559e-19 - syst_JES_EtaIntercalibration_Stat62: 3.81830600528559e-19 + syst_JES_EtaIntercalibration_Stat61: 3.81830601e-19 + syst_JES_EtaIntercalibration_Stat62: 3.81830601e-19 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 @@ -20110,218 +20110,218 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 9.143496213156104e-21 + syst_JES_EtaIntercalibration_Stat7: 9.14349621e-21 syst_JES_EtaIntercalibration_Stat70: 0.0 syst_JES_EtaIntercalibration_Stat71: 0.0 - syst_JES_EtaIntercalibration_Stat72: 1.0152415808564974e-19 - syst_JES_EtaIntercalibration_Stat73: 2.923312758293235e-15 - syst_JES_EtaIntercalibration_Stat74: 1.1263864134289088e-06 - syst_JES_EtaIntercalibration_Stat75: 9.203251492590107e-07 - syst_JES_EtaIntercalibration_Stat76: 7.934142380087465e-17 - syst_JES_EtaIntercalibration_Stat77: 4.781445814813758e-16 - syst_JES_EtaIntercalibration_Stat78: 2.573827011609395e-07 - syst_JES_EtaIntercalibration_Stat79: 3.6373071222680157e-07 - syst_JES_EtaIntercalibration_Stat8: 5.571934224306672e-19 - syst_JES_EtaIntercalibration_Stat80: 9.231566198646902e-17 - syst_JES_EtaIntercalibration_Stat81: 5.473280551917652e-20 - syst_JES_EtaIntercalibration_Stat82: 3.81830600528559e-19 - syst_JES_EtaIntercalibration_Stat83: 3.81830600528559e-19 - syst_JES_EtaIntercalibration_Stat84: 3.81830600528559e-19 + syst_JES_EtaIntercalibration_Stat72: 1.01524158e-19 + syst_JES_EtaIntercalibration_Stat73: 2.92331276e-15 + syst_JES_EtaIntercalibration_Stat74: 1.12638641e-06 + syst_JES_EtaIntercalibration_Stat75: 9.20325149e-07 + syst_JES_EtaIntercalibration_Stat76: 7.93414238e-17 + syst_JES_EtaIntercalibration_Stat77: 4.78144581e-16 + syst_JES_EtaIntercalibration_Stat78: 2.57382701e-07 + syst_JES_EtaIntercalibration_Stat79: 3.63730712e-07 + syst_JES_EtaIntercalibration_Stat8: 5.57193422e-19 + syst_JES_EtaIntercalibration_Stat80: 9.23156620e-17 + syst_JES_EtaIntercalibration_Stat81: 5.47328055e-20 + syst_JES_EtaIntercalibration_Stat82: 3.81830601e-19 + syst_JES_EtaIntercalibration_Stat83: 3.81830601e-19 + syst_JES_EtaIntercalibration_Stat84: 3.81830601e-19 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 syst_JES_EtaIntercalibration_Stat89: 0.0 - syst_JES_EtaIntercalibration_Stat9: 3.6826828535729225e-19 + syst_JES_EtaIntercalibration_Stat9: 3.68268285e-19 syst_JES_EtaIntercalibration_Stat90: 0.0 syst_JES_EtaIntercalibration_Stat91: 0.0 syst_JES_EtaIntercalibration_Stat92: 0.0 - syst_JES_EtaIntercalibration_Stat93: 7.975227943450895e-20 - syst_JES_EtaIntercalibration_Stat94: 3.9146294802318134e-15 - syst_JES_EtaIntercalibration_Stat95: 1.1262129744660208e-06 - syst_JES_EtaIntercalibration_Stat96: 9.955648785990796e-07 - syst_JES_EtaIntercalibration_Stat97: 1.352147114333348e-15 - syst_JES_EtaIntercalibration_Stat98: 2.579181847020485e-16 - syst_JES_EtaIntercalibration_Stat99: 3.2631831686472567e-07 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.001021050061211496 - syst_JES_Flavour_Comp: 0.0026145697064717936 - syst_JES_Flavour_Response: 0.00023001686894660574 - syst_JES_Gjet_Generator: 0.0034887456198467665 - syst_JES_Gjet_OOC: 0.00289213830927914 - syst_JES_Gjet_Purity: 0.0005445172242454778 - syst_JES_Gjet_Stat1: 1.0654828424240346e-05 - syst_JES_Gjet_Stat10: 5.61570939419055e-05 - syst_JES_Gjet_Stat11: 6.257315938163902e-05 - syst_JES_Gjet_Stat12: 0.00020139753598294094 - syst_JES_Gjet_Stat13: 0.0006179422525608684 - syst_JES_Gjet_Stat14: 0.0016245260077942735 - syst_JES_Gjet_Stat15: 0.0014545139222434415 - syst_JES_Gjet_Stat2: 1.2384616536251738e-05 - syst_JES_Gjet_Stat3: 1.1640446930852785e-05 - syst_JES_Gjet_Stat4: 1.2745788196498482e-05 - syst_JES_Gjet_Stat5: 1.4285823418690294e-05 - syst_JES_Gjet_Stat6: 2.7178425267112147e-05 - syst_JES_Gjet_Stat7: 3.928110487244472e-05 - syst_JES_Gjet_Stat8: 2.4041249967503767e-05 - syst_JES_Gjet_Stat9: 3.535820515806763e-05 - syst_JES_Gjet_Veto: 0.0028821530146749667 - syst_JES_Gjet_dPhi: 0.00028675743669519715 - syst_JES_LArESZee: 0.005346637518104252 - syst_JES_LArEsmear: 0.00044894851319499877 - syst_JES_LAr_JVT: 0.0005565713858077865 - syst_JES_MJB_Alpha: 3.0427650254332816e-05 - syst_JES_MJB_Asym: 0.0005259555375694793 - syst_JES_MJB_Beta: 3.777366410609381e-05 - syst_JES_MJB_Fragmentation: 0.00035718937204233834 - syst_JES_MJB_Stat1: 2.8565256357155277e-06 - syst_JES_MJB_Stat10: 5.099149340821466e-05 - syst_JES_MJB_Stat11: 5.072623655466666e-05 - syst_JES_MJB_Stat12: 5.4819947783630724e-05 - syst_JES_MJB_Stat13: 2.2052181298003152e-05 - syst_JES_MJB_Stat14: 8.41335026906642e-06 - syst_JES_MJB_Stat15: 3.165162041665482e-05 - syst_JES_MJB_Stat16: 3.1865696289270064e-05 - syst_JES_MJB_Stat2: 4.957566641004434e-06 - syst_JES_MJB_Stat3: 1.812656269125506e-05 - syst_JES_MJB_Stat4: 1.3690908543628505e-05 - syst_JES_MJB_Stat5: 1.330495324118052e-05 - syst_JES_MJB_Stat6: 1.4743439320592735e-05 - syst_JES_MJB_Stat7: 2.1181303713416696e-05 - syst_JES_MJB_Stat8: 3.080466320218418e-05 - syst_JES_MJB_Stat9: 4.030126641930747e-05 - syst_JES_MJB_Threshold: 0.0003528737167883151 - syst_JES_Pileup_MuOffset: 0.0006918508130370304 - syst_JES_Pileup_NPVOffset: 0.0007130529485949834 - syst_JES_Pileup_Pt_term: 0.00045431725699119117 - syst_JES_Pileup_Rho_topology: 0.0009977212085547746 - syst_JES_PunchThrough_MC15: 0.0004752322037699045 - syst_JES_SingleParticle_HighPt: 2.2106845093771297e-12 - syst_JES_Zjet_MC: 0.001420205149793508 - syst_JES_Zjet_MuScale: 0.00010749245868897036 - syst_JES_Zjet_MuSmearID: 2.3772409953557506e-05 - syst_JES_Zjet_MuSmearMS: 0.0003878951129815894 - syst_JES_Zjet_OOC: 0.0007957483081980132 - syst_JES_Zjet_Stat1: 4.766460400548818e-05 - syst_JES_Zjet_Stat10: 6.794660697930398e-05 - syst_JES_Zjet_Stat11: 8.78106149619737e-05 - syst_JES_Zjet_Stat12: 0.0002541293519056781 - syst_JES_Zjet_Stat13: 0.00042008570554114314 - syst_JES_Zjet_Stat2: 2.341799827056104e-06 - syst_JES_Zjet_Stat3: 2.8810079399404647e-05 - syst_JES_Zjet_Stat4: 2.6458709341160235e-05 - syst_JES_Zjet_Stat5: 2.6784316306376012e-05 - syst_JES_Zjet_Stat6: 3.104624131839473e-05 - syst_JES_Zjet_Stat7: 2.7257002769930522e-05 - syst_JES_Zjet_Stat8: 2.9282677473209312e-05 - syst_JES_Zjet_Stat9: 3.9064737321528225e-05 - syst_JES_Zjet_Veto: 0.00017781391959011535 - syst_JES_Zjet_dPhi: 0.0001575993258234311 - syst_PRW: 0.00011924 - syst_Unfolding_bias: 0.00012394 - syst_cleaning: 0.0009553992254549927 + syst_JES_EtaIntercalibration_Stat93: 7.97522794e-20 + syst_JES_EtaIntercalibration_Stat94: 3.91462948e-15 + syst_JES_EtaIntercalibration_Stat95: 1.12621297e-06 + syst_JES_EtaIntercalibration_Stat96: 9.95564879e-07 + syst_JES_EtaIntercalibration_Stat97: 1.35214711e-15 + syst_JES_EtaIntercalibration_Stat98: 2.57918185e-16 + syst_JES_EtaIntercalibration_Stat99: 3.26318317e-07 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.02105006e-03 + syst_JES_Flavour_Comp: 2.61456971e-03 + syst_JES_Flavour_Response: 2.30016869e-04 + syst_JES_Gjet_Generator: 3.48874562e-03 + syst_JES_Gjet_OOC: 2.89213831e-03 + syst_JES_Gjet_Purity: 5.44517224e-04 + syst_JES_Gjet_Stat1: 1.06548284e-05 + syst_JES_Gjet_Stat10: 5.61570939e-05 + syst_JES_Gjet_Stat11: 6.25731594e-05 + syst_JES_Gjet_Stat12: 2.01397536e-04 + syst_JES_Gjet_Stat13: 6.17942253e-04 + syst_JES_Gjet_Stat14: 1.62452601e-03 + syst_JES_Gjet_Stat15: 1.45451392e-03 + syst_JES_Gjet_Stat2: 1.23846165e-05 + syst_JES_Gjet_Stat3: 1.16404469e-05 + syst_JES_Gjet_Stat4: 1.27457882e-05 + syst_JES_Gjet_Stat5: 1.42858234e-05 + syst_JES_Gjet_Stat6: 2.71784253e-05 + syst_JES_Gjet_Stat7: 3.92811049e-05 + syst_JES_Gjet_Stat8: 2.40412500e-05 + syst_JES_Gjet_Stat9: 3.53582052e-05 + syst_JES_Gjet_Veto: 2.88215301e-03 + syst_JES_Gjet_dPhi: 2.86757437e-04 + syst_JES_LArESZee: 5.34663752e-03 + syst_JES_LArEsmear: 4.48948513e-04 + syst_JES_LAr_JVT: 5.56571386e-04 + syst_JES_MJB_Alpha: 3.04276503e-05 + syst_JES_MJB_Asym: 5.25955538e-04 + syst_JES_MJB_Beta: 3.77736641e-05 + syst_JES_MJB_Fragmentation: 3.57189372e-04 + syst_JES_MJB_Stat1: 2.85652564e-06 + syst_JES_MJB_Stat10: 5.09914934e-05 + syst_JES_MJB_Stat11: 5.07262366e-05 + syst_JES_MJB_Stat12: 5.48199478e-05 + syst_JES_MJB_Stat13: 2.20521813e-05 + syst_JES_MJB_Stat14: 8.41335027e-06 + syst_JES_MJB_Stat15: 3.16516204e-05 + syst_JES_MJB_Stat16: 3.18656963e-05 + syst_JES_MJB_Stat2: 4.95756664e-06 + syst_JES_MJB_Stat3: 1.81265627e-05 + syst_JES_MJB_Stat4: 1.36909085e-05 + syst_JES_MJB_Stat5: 1.33049532e-05 + syst_JES_MJB_Stat6: 1.47434393e-05 + syst_JES_MJB_Stat7: 2.11813037e-05 + syst_JES_MJB_Stat8: 3.08046632e-05 + syst_JES_MJB_Stat9: 4.03012664e-05 + syst_JES_MJB_Threshold: 3.52873717e-04 + syst_JES_Pileup_MuOffset: 6.91850813e-04 + syst_JES_Pileup_NPVOffset: 7.13052949e-04 + syst_JES_Pileup_Pt_term: 4.54317257e-04 + syst_JES_Pileup_Rho_topology: 9.97721209e-04 + syst_JES_PunchThrough_MC15: 4.75232204e-04 + syst_JES_SingleParticle_HighPt: 2.21068451e-12 + syst_JES_Zjet_MC: 1.42020515e-03 + syst_JES_Zjet_MuScale: 1.07492459e-04 + syst_JES_Zjet_MuSmearID: 2.37724100e-05 + syst_JES_Zjet_MuSmearMS: 3.87895113e-04 + syst_JES_Zjet_OOC: 7.95748308e-04 + syst_JES_Zjet_Stat1: 4.76646040e-05 + syst_JES_Zjet_Stat10: 6.79466070e-05 + syst_JES_Zjet_Stat11: 8.78106150e-05 + syst_JES_Zjet_Stat12: 2.54129352e-04 + syst_JES_Zjet_Stat13: 4.20085706e-04 + syst_JES_Zjet_Stat2: 2.34179983e-06 + syst_JES_Zjet_Stat3: 2.88100794e-05 + syst_JES_Zjet_Stat4: 2.64587093e-05 + syst_JES_Zjet_Stat5: 2.67843163e-05 + syst_JES_Zjet_Stat6: 3.10462413e-05 + syst_JES_Zjet_Stat7: 2.72570028e-05 + syst_JES_Zjet_Stat8: 2.92826775e-05 + syst_JES_Zjet_Stat9: 3.90647373e-05 + syst_JES_Zjet_Veto: 1.77813920e-04 + syst_JES_Zjet_dPhi: 1.57599326e-04 + syst_PRW: 1.19240000e-04 + syst_Unfolding_bias: 1.23940000e-04 + syst_cleaning: 9.55399225e-04 syst_lumi: 0.003241 -- stat: 0.0007197 +- stat: 7.19700000e-04 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.000269736093246714 - syst_JER_NP1: 2.8931299227653087e-05 - syst_JER_NP2: 0.00012309574606784754 - syst_JER_NP3: 2.5711827531313292e-05 - syst_JER_NP4: 4.260260643434859e-05 - syst_JER_NP5: 5.517418418064739e-05 - syst_JER_NP6: 4.531965881380839e-05 - syst_JER_NP7: 1.963260915384147e-05 - syst_JER_NP8: 6.757290729279006e-05 - syst_JES_EtaIntercalibration_Modelling: 0.0018965960956408194 - syst_JES_EtaIntercalibration_NonClosure: 2.1330205695210724e-14 + syst_JER_NP0: 2.69736093e-04 + syst_JER_NP1: 2.89312992e-05 + syst_JER_NP2: 1.23095746e-04 + syst_JER_NP3: 2.57118275e-05 + syst_JER_NP4: 4.26026064e-05 + syst_JER_NP5: 5.51741842e-05 + syst_JER_NP6: 4.53196588e-05 + syst_JER_NP7: 1.96326092e-05 + syst_JER_NP8: 6.75729073e-05 + syst_JES_EtaIntercalibration_Modelling: 1.89659610e-03 + syst_JES_EtaIntercalibration_NonClosure: 2.13302057e-14 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 2.0498820509102365e-07 - syst_JES_EtaIntercalibration_Stat101: 2.03682399828753e-17 - syst_JES_EtaIntercalibration_Stat102: 5.749515544808972e-20 - syst_JES_EtaIntercalibration_Stat103: 1.107992901601811e-19 - syst_JES_EtaIntercalibration_Stat104: 1.107992901601811e-19 - syst_JES_EtaIntercalibration_Stat105: 1.107992901601811e-19 + syst_JES_EtaIntercalibration_Stat100: 2.04988205e-07 + syst_JES_EtaIntercalibration_Stat101: 2.03682400e-17 + syst_JES_EtaIntercalibration_Stat102: 5.74951554e-20 + syst_JES_EtaIntercalibration_Stat103: 1.10799290e-19 + syst_JES_EtaIntercalibration_Stat104: 1.10799290e-19 + syst_JES_EtaIntercalibration_Stat105: 1.10799290e-19 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 3.2882984581695134e-16 - syst_JES_EtaIntercalibration_Stat111: 3.2882984581695134e-16 + syst_JES_EtaIntercalibration_Stat110: 3.28829846e-16 + syst_JES_EtaIntercalibration_Stat111: 3.28829846e-16 syst_JES_EtaIntercalibration_Stat112: 0.0 - syst_JES_EtaIntercalibration_Stat113: 1.92398127256998e-18 - syst_JES_EtaIntercalibration_Stat114: 9.186852246324067e-07 - syst_JES_EtaIntercalibration_Stat115: 2.4255803032470396e-07 - syst_JES_EtaIntercalibration_Stat116: 1.7489049052192633e-07 - syst_JES_EtaIntercalibration_Stat117: 3.798915207003178e-13 - syst_JES_EtaIntercalibration_Stat118: 1.5908885951317258e-07 - syst_JES_EtaIntercalibration_Stat119: 1.9343510203683303e-07 - syst_JES_EtaIntercalibration_Stat12: 1.0502393416417041e-16 - syst_JES_EtaIntercalibration_Stat120: 1.3446509537794558e-07 - syst_JES_EtaIntercalibration_Stat121: 1.654497234109202e-12 - syst_JES_EtaIntercalibration_Stat122: 1.8457743219784482e-18 - syst_JES_EtaIntercalibration_Stat123: 1.107992901601811e-19 - syst_JES_EtaIntercalibration_Stat124: 1.107992901601811e-19 - syst_JES_EtaIntercalibration_Stat125: 1.107992901601811e-19 + syst_JES_EtaIntercalibration_Stat113: 1.92398127e-18 + syst_JES_EtaIntercalibration_Stat114: 9.18685225e-07 + syst_JES_EtaIntercalibration_Stat115: 2.42558030e-07 + syst_JES_EtaIntercalibration_Stat116: 1.74890491e-07 + syst_JES_EtaIntercalibration_Stat117: 3.79891521e-13 + syst_JES_EtaIntercalibration_Stat118: 1.59088860e-07 + syst_JES_EtaIntercalibration_Stat119: 1.93435102e-07 + syst_JES_EtaIntercalibration_Stat12: 1.05023934e-16 + syst_JES_EtaIntercalibration_Stat120: 1.34465095e-07 + syst_JES_EtaIntercalibration_Stat121: 1.65449723e-12 + syst_JES_EtaIntercalibration_Stat122: 1.84577432e-18 + syst_JES_EtaIntercalibration_Stat123: 1.10799290e-19 + syst_JES_EtaIntercalibration_Stat124: 1.10799290e-19 + syst_JES_EtaIntercalibration_Stat125: 1.10799290e-19 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 1.2782534959858313e-13 - syst_JES_EtaIntercalibration_Stat129: 1.2771611593321925e-13 - syst_JES_EtaIntercalibration_Stat13: 1.4205313972313979e-16 - syst_JES_EtaIntercalibration_Stat130: 3.2882984581695134e-16 - syst_JES_EtaIntercalibration_Stat131: 5.721829842803786e-21 - syst_JES_EtaIntercalibration_Stat132: 2.5376229219824502e-14 - syst_JES_EtaIntercalibration_Stat133: 9.211044843652453e-07 - syst_JES_EtaIntercalibration_Stat134: 7.095225084519871e-07 - syst_JES_EtaIntercalibration_Stat135: 5.471114517452087e-07 - syst_JES_EtaIntercalibration_Stat136: 5.579816425151695e-07 - syst_JES_EtaIntercalibration_Stat137: 1.7972097818563084e-07 - syst_JES_EtaIntercalibration_Stat138: 4.878235029188324e-07 - syst_JES_EtaIntercalibration_Stat139: 7.327412621109855e-07 - syst_JES_EtaIntercalibration_Stat14: 1.3293489948091133e-20 - syst_JES_EtaIntercalibration_Stat140: 6.156417525639404e-08 - syst_JES_EtaIntercalibration_Stat141: 1.2148604616214917e-13 + syst_JES_EtaIntercalibration_Stat128: 1.27825350e-13 + syst_JES_EtaIntercalibration_Stat129: 1.27716116e-13 + syst_JES_EtaIntercalibration_Stat13: 1.42053140e-16 + syst_JES_EtaIntercalibration_Stat130: 3.28829846e-16 + syst_JES_EtaIntercalibration_Stat131: 5.72182984e-21 + syst_JES_EtaIntercalibration_Stat132: 2.53762292e-14 + syst_JES_EtaIntercalibration_Stat133: 9.21104484e-07 + syst_JES_EtaIntercalibration_Stat134: 7.09522508e-07 + syst_JES_EtaIntercalibration_Stat135: 5.47111452e-07 + syst_JES_EtaIntercalibration_Stat136: 5.57981643e-07 + syst_JES_EtaIntercalibration_Stat137: 1.79720978e-07 + syst_JES_EtaIntercalibration_Stat138: 4.87823503e-07 + syst_JES_EtaIntercalibration_Stat139: 7.32741262e-07 + syst_JES_EtaIntercalibration_Stat14: 1.32934899e-20 + syst_JES_EtaIntercalibration_Stat140: 6.15641753e-08 + syst_JES_EtaIntercalibration_Stat141: 1.21486046e-13 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 1.107992901601811e-19 - syst_JES_EtaIntercalibration_Stat144: 1.107992901601811e-19 + syst_JES_EtaIntercalibration_Stat143: 1.10799290e-19 + syst_JES_EtaIntercalibration_Stat144: 1.10799290e-19 syst_JES_EtaIntercalibration_Stat145: 0.0 - syst_JES_EtaIntercalibration_Stat146: 1.2782534959858313e-13 - syst_JES_EtaIntercalibration_Stat147: 1.2771611593321925e-13 + syst_JES_EtaIntercalibration_Stat146: 1.27825350e-13 + syst_JES_EtaIntercalibration_Stat147: 1.27716116e-13 syst_JES_EtaIntercalibration_Stat148: 0.0 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 1.2989413641500529e-17 - syst_JES_EtaIntercalibration_Stat151: 9.20930868500987e-07 - syst_JES_EtaIntercalibration_Stat152: 6.670192707111242e-07 - syst_JES_EtaIntercalibration_Stat153: 6.025164147763943e-07 - syst_JES_EtaIntercalibration_Stat154: 1.0394623038892513e-07 - syst_JES_EtaIntercalibration_Stat155: 3.6445239401052096e-07 - syst_JES_EtaIntercalibration_Stat156: 1.0267905044360315e-06 - syst_JES_EtaIntercalibration_Stat157: 1.0320375332321981e-06 - syst_JES_EtaIntercalibration_Stat158: 2.421358502989592e-07 - syst_JES_EtaIntercalibration_Stat159: 1.2189831304942125e-13 + syst_JES_EtaIntercalibration_Stat150: 1.29894136e-17 + syst_JES_EtaIntercalibration_Stat151: 9.20930869e-07 + syst_JES_EtaIntercalibration_Stat152: 6.67019271e-07 + syst_JES_EtaIntercalibration_Stat153: 6.02516415e-07 + syst_JES_EtaIntercalibration_Stat154: 1.03946230e-07 + syst_JES_EtaIntercalibration_Stat155: 3.64452394e-07 + syst_JES_EtaIntercalibration_Stat156: 1.02679050e-06 + syst_JES_EtaIntercalibration_Stat157: 1.03203753e-06 + syst_JES_EtaIntercalibration_Stat158: 2.42135850e-07 + syst_JES_EtaIntercalibration_Stat159: 1.21898313e-13 syst_JES_EtaIntercalibration_Stat16: 0.0 syst_JES_EtaIntercalibration_Stat160: 0.0 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 - syst_JES_EtaIntercalibration_Stat164: 1.2782534959858313e-13 + syst_JES_EtaIntercalibration_Stat164: 1.27825350e-13 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 - syst_JES_EtaIntercalibration_Stat168: 3.376719651895905e-16 - syst_JES_EtaIntercalibration_Stat169: 2.0840506231855308e-07 + syst_JES_EtaIntercalibration_Stat168: 3.37671965e-16 + syst_JES_EtaIntercalibration_Stat169: 2.08405062e-07 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 1.5619069498532876e-06 - syst_JES_EtaIntercalibration_Stat171: 2.31413498958034e-06 - syst_JES_EtaIntercalibration_Stat172: 1.8072802771014794e-07 - syst_JES_EtaIntercalibration_Stat173: 4.4860059072631636e-07 - syst_JES_EtaIntercalibration_Stat174: 1.2192785858859328e-06 - syst_JES_EtaIntercalibration_Stat175: 1.592420647944506e-06 - syst_JES_EtaIntercalibration_Stat176: 1.7311761163110762e-07 - syst_JES_EtaIntercalibration_Stat177: 1.05532633961017e-12 + syst_JES_EtaIntercalibration_Stat170: 1.56190695e-06 + syst_JES_EtaIntercalibration_Stat171: 2.31413499e-06 + syst_JES_EtaIntercalibration_Stat172: 1.80728028e-07 + syst_JES_EtaIntercalibration_Stat173: 4.48600591e-07 + syst_JES_EtaIntercalibration_Stat174: 1.21927859e-06 + syst_JES_EtaIntercalibration_Stat175: 1.59242065e-06 + syst_JES_EtaIntercalibration_Stat176: 1.73117612e-07 + syst_JES_EtaIntercalibration_Stat177: 1.05532634e-12 syst_JES_EtaIntercalibration_Stat178: 0.0 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 @@ -20330,17 +20330,17 @@ bins: syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 syst_JES_EtaIntercalibration_Stat184: 0.0 - syst_JES_EtaIntercalibration_Stat185: 5.109260890285698e-08 - syst_JES_EtaIntercalibration_Stat186: 8.426299232165922e-07 - syst_JES_EtaIntercalibration_Stat187: 1.0133328907619647e-05 - syst_JES_EtaIntercalibration_Stat188: 8.543814780295744e-06 - syst_JES_EtaIntercalibration_Stat189: 1.4552055799783066e-06 + syst_JES_EtaIntercalibration_Stat185: 5.10926089e-08 + syst_JES_EtaIntercalibration_Stat186: 8.42629923e-07 + syst_JES_EtaIntercalibration_Stat187: 1.01333289e-05 + syst_JES_EtaIntercalibration_Stat188: 8.54381478e-06 + syst_JES_EtaIntercalibration_Stat189: 1.45520558e-06 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 4.533490129028628e-07 - syst_JES_EtaIntercalibration_Stat191: 5.9682892649401635e-06 - syst_JES_EtaIntercalibration_Stat192: 1.0021880399905e-05 - syst_JES_EtaIntercalibration_Stat193: 1.590242059404794e-06 - syst_JES_EtaIntercalibration_Stat194: 1.0809729090037364e-12 + syst_JES_EtaIntercalibration_Stat190: 4.53349013e-07 + syst_JES_EtaIntercalibration_Stat191: 5.96828926e-06 + syst_JES_EtaIntercalibration_Stat192: 1.00218804e-05 + syst_JES_EtaIntercalibration_Stat193: 1.59024206e-06 + syst_JES_EtaIntercalibration_Stat194: 1.08097291e-12 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 syst_JES_EtaIntercalibration_Stat197: 0.0 @@ -20348,70 +20348,70 @@ bins: syst_JES_EtaIntercalibration_Stat199: 0.0 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 5.107735564408043e-08 - syst_JES_EtaIntercalibration_Stat201: 2.0020696166717075e-06 - syst_JES_EtaIntercalibration_Stat202: 2.2401263357230546e-05 - syst_JES_EtaIntercalibration_Stat203: 1.5794736465037966e-05 - syst_JES_EtaIntercalibration_Stat204: 2.3487095925209656e-06 - syst_JES_EtaIntercalibration_Stat205: 1.7397641933296615e-06 - syst_JES_EtaIntercalibration_Stat206: 1.51760640071792e-05 - syst_JES_EtaIntercalibration_Stat207: 1.7429380367643593e-05 - syst_JES_EtaIntercalibration_Stat208: 2.2842769096587217e-06 - syst_JES_EtaIntercalibration_Stat209: 6.028402755693867e-08 + syst_JES_EtaIntercalibration_Stat200: 5.10773556e-08 + syst_JES_EtaIntercalibration_Stat201: 2.00206962e-06 + syst_JES_EtaIntercalibration_Stat202: 2.24012634e-05 + syst_JES_EtaIntercalibration_Stat203: 1.57947365e-05 + syst_JES_EtaIntercalibration_Stat204: 2.34870959e-06 + syst_JES_EtaIntercalibration_Stat205: 1.73976419e-06 + syst_JES_EtaIntercalibration_Stat206: 1.51760640e-05 + syst_JES_EtaIntercalibration_Stat207: 1.74293804e-05 + syst_JES_EtaIntercalibration_Stat208: 2.28427691e-06 + syst_JES_EtaIntercalibration_Stat209: 6.02840276e-08 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 syst_JES_EtaIntercalibration_Stat211: 0.0 syst_JES_EtaIntercalibration_Stat212: 0.0 - syst_JES_EtaIntercalibration_Stat213: 5.108391397705055e-08 - syst_JES_EtaIntercalibration_Stat214: 1.53312160965789e-06 - syst_JES_EtaIntercalibration_Stat215: 2.582167064695854e-05 - syst_JES_EtaIntercalibration_Stat216: 1.9740045592652514e-05 - syst_JES_EtaIntercalibration_Stat217: 2.029059281415898e-06 - syst_JES_EtaIntercalibration_Stat218: 1.2426611153085945e-06 - syst_JES_EtaIntercalibration_Stat219: 1.953741218790247e-05 + syst_JES_EtaIntercalibration_Stat213: 5.10839140e-08 + syst_JES_EtaIntercalibration_Stat214: 1.53312161e-06 + syst_JES_EtaIntercalibration_Stat215: 2.58216706e-05 + syst_JES_EtaIntercalibration_Stat216: 1.97400456e-05 + syst_JES_EtaIntercalibration_Stat217: 2.02905928e-06 + syst_JES_EtaIntercalibration_Stat218: 1.24266112e-06 + syst_JES_EtaIntercalibration_Stat219: 1.95374122e-05 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 2.1435262419667272e-05 - syst_JES_EtaIntercalibration_Stat221: 2.7323173314972036e-06 - syst_JES_EtaIntercalibration_Stat222: 5.978919775971241e-08 + syst_JES_EtaIntercalibration_Stat220: 2.14352624e-05 + syst_JES_EtaIntercalibration_Stat221: 2.73231733e-06 + syst_JES_EtaIntercalibration_Stat222: 5.97891978e-08 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 - syst_JES_EtaIntercalibration_Stat225: 1.8734722275763789e-07 - syst_JES_EtaIntercalibration_Stat226: 5.062658553566495e-06 - syst_JES_EtaIntercalibration_Stat227: 6.198085349525287e-05 - syst_JES_EtaIntercalibration_Stat228: 5.5255548816385856e-05 - syst_JES_EtaIntercalibration_Stat229: 4.046788448881409e-06 + syst_JES_EtaIntercalibration_Stat225: 1.87347223e-07 + syst_JES_EtaIntercalibration_Stat226: 5.06265855e-06 + syst_JES_EtaIntercalibration_Stat227: 6.19808535e-05 + syst_JES_EtaIntercalibration_Stat228: 5.52555488e-05 + syst_JES_EtaIntercalibration_Stat229: 4.04678845e-06 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 4.937130821641249e-06 - syst_JES_EtaIntercalibration_Stat231: 6.273011298411633e-05 - syst_JES_EtaIntercalibration_Stat232: 6.383077216358895e-05 - syst_JES_EtaIntercalibration_Stat233: 4.922607921620409e-06 - syst_JES_EtaIntercalibration_Stat234: 2.096187653813465e-07 + syst_JES_EtaIntercalibration_Stat230: 4.93713082e-06 + syst_JES_EtaIntercalibration_Stat231: 6.27301130e-05 + syst_JES_EtaIntercalibration_Stat232: 6.38307722e-05 + syst_JES_EtaIntercalibration_Stat233: 4.92260792e-06 + syst_JES_EtaIntercalibration_Stat234: 2.09618765e-07 syst_JES_EtaIntercalibration_Stat235: 0.0 - syst_JES_EtaIntercalibration_Stat236: 5.10781783152062e-08 - syst_JES_EtaIntercalibration_Stat237: 1.6751575299057699e-06 - syst_JES_EtaIntercalibration_Stat238: 1.5499041930067808e-05 - syst_JES_EtaIntercalibration_Stat239: 7.045553704287548e-06 + syst_JES_EtaIntercalibration_Stat236: 5.10781783e-08 + syst_JES_EtaIntercalibration_Stat237: 1.67515753e-06 + syst_JES_EtaIntercalibration_Stat238: 1.54990419e-05 + syst_JES_EtaIntercalibration_Stat239: 7.04555370e-06 syst_JES_EtaIntercalibration_Stat24: 0.0 - syst_JES_EtaIntercalibration_Stat240: 1.5468972065072717e-07 - syst_JES_EtaIntercalibration_Stat241: 3.5162982856587623e-07 - syst_JES_EtaIntercalibration_Stat242: 5.675568958263128e-06 - syst_JES_EtaIntercalibration_Stat243: 9.841105120869303e-06 - syst_JES_EtaIntercalibration_Stat244: 1.0988587215834438e-06 - syst_JES_EtaIntercalibration_Stat245: 8.445479737705845e-09 + syst_JES_EtaIntercalibration_Stat240: 1.54689721e-07 + syst_JES_EtaIntercalibration_Stat241: 3.51629829e-07 + syst_JES_EtaIntercalibration_Stat242: 5.67556896e-06 + syst_JES_EtaIntercalibration_Stat243: 9.84110512e-06 + syst_JES_EtaIntercalibration_Stat244: 1.09885872e-06 + syst_JES_EtaIntercalibration_Stat245: 8.44547974e-09 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 syst_JES_EtaIntercalibration_Stat27: 0.0 - syst_JES_EtaIntercalibration_Stat28: 2.7643530888799283e-21 - syst_JES_EtaIntercalibration_Stat29: 3.7504835248271653e-19 + syst_JES_EtaIntercalibration_Stat28: 2.76435309e-21 + syst_JES_EtaIntercalibration_Stat29: 3.75048352e-19 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 5.470030415820373e-18 - syst_JES_EtaIntercalibration_Stat31: 3.716681449895861e-18 - syst_JES_EtaIntercalibration_Stat32: 1.2002271784958046e-20 - syst_JES_EtaIntercalibration_Stat33: 2.2561506332689753e-19 - syst_JES_EtaIntercalibration_Stat34: 1.7251226047834502e-07 - syst_JES_EtaIntercalibration_Stat35: 1.1868930352248113e-13 - syst_JES_EtaIntercalibration_Stat36: 1.7626077461746843e-18 - syst_JES_EtaIntercalibration_Stat37: 2.017839190817742e-21 + syst_JES_EtaIntercalibration_Stat30: 5.47003042e-18 + syst_JES_EtaIntercalibration_Stat31: 3.71668145e-18 + syst_JES_EtaIntercalibration_Stat32: 1.20022718e-20 + syst_JES_EtaIntercalibration_Stat33: 2.25615063e-19 + syst_JES_EtaIntercalibration_Stat34: 1.72512260e-07 + syst_JES_EtaIntercalibration_Stat35: 1.18689304e-13 + syst_JES_EtaIntercalibration_Stat36: 1.76260775e-18 + syst_JES_EtaIntercalibration_Stat37: 2.01783919e-21 syst_JES_EtaIntercalibration_Stat38: 0.0 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 @@ -20426,20 +20426,20 @@ bins: syst_JES_EtaIntercalibration_Stat48: 0.0 syst_JES_EtaIntercalibration_Stat49: 0.0 syst_JES_EtaIntercalibration_Stat5: 0.0 - syst_JES_EtaIntercalibration_Stat50: 2.8007261558388748e-21 - syst_JES_EtaIntercalibration_Stat51: 6.784915474786698e-19 - syst_JES_EtaIntercalibration_Stat52: 2.771578197976741e-16 - syst_JES_EtaIntercalibration_Stat53: 3.330471696321709e-17 - syst_JES_EtaIntercalibration_Stat54: 2.3865373975699607e-19 - syst_JES_EtaIntercalibration_Stat55: 1.0473347482475458e-16 - syst_JES_EtaIntercalibration_Stat56: 1.7268546551169798e-07 - syst_JES_EtaIntercalibration_Stat57: 1.1788337797626962e-08 - syst_JES_EtaIntercalibration_Stat58: 2.168147769410563e-18 - syst_JES_EtaIntercalibration_Stat59: 6.904209350099401e-21 + syst_JES_EtaIntercalibration_Stat50: 2.80072616e-21 + syst_JES_EtaIntercalibration_Stat51: 6.78491547e-19 + syst_JES_EtaIntercalibration_Stat52: 2.77157820e-16 + syst_JES_EtaIntercalibration_Stat53: 3.33047170e-17 + syst_JES_EtaIntercalibration_Stat54: 2.38653740e-19 + syst_JES_EtaIntercalibration_Stat55: 1.04733475e-16 + syst_JES_EtaIntercalibration_Stat56: 1.72685466e-07 + syst_JES_EtaIntercalibration_Stat57: 1.17883378e-08 + syst_JES_EtaIntercalibration_Stat58: 2.16814777e-18 + syst_JES_EtaIntercalibration_Stat59: 6.90420935e-21 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 1.107992901601811e-19 - syst_JES_EtaIntercalibration_Stat62: 1.107992901601811e-19 + syst_JES_EtaIntercalibration_Stat61: 1.10799290e-19 + syst_JES_EtaIntercalibration_Stat62: 1.10799290e-19 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 @@ -20447,218 +20447,218 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 2.7643530888799283e-21 + syst_JES_EtaIntercalibration_Stat7: 2.76435309e-21 syst_JES_EtaIntercalibration_Stat70: 0.0 syst_JES_EtaIntercalibration_Stat71: 0.0 - syst_JES_EtaIntercalibration_Stat72: 2.0048488097609755e-20 - syst_JES_EtaIntercalibration_Stat73: 5.233328495584813e-16 - syst_JES_EtaIntercalibration_Stat74: 4.0599830990075566e-07 - syst_JES_EtaIntercalibration_Stat75: 1.6151373001445742e-07 - syst_JES_EtaIntercalibration_Stat76: 1.4258638811261053e-17 - syst_JES_EtaIntercalibration_Stat77: 8.959058917514719e-17 - syst_JES_EtaIntercalibration_Stat78: 1.6636347204182348e-07 - syst_JES_EtaIntercalibration_Stat79: 2.4110147953231735e-07 - syst_JES_EtaIntercalibration_Stat8: 1.2740590292447206e-19 - syst_JES_EtaIntercalibration_Stat80: 1.888964527671179e-17 - syst_JES_EtaIntercalibration_Stat81: 1.5718361078687562e-20 - syst_JES_EtaIntercalibration_Stat82: 1.107992901601811e-19 - syst_JES_EtaIntercalibration_Stat83: 1.107992901601811e-19 - syst_JES_EtaIntercalibration_Stat84: 1.107992901601811e-19 + syst_JES_EtaIntercalibration_Stat72: 2.00484881e-20 + syst_JES_EtaIntercalibration_Stat73: 5.23332850e-16 + syst_JES_EtaIntercalibration_Stat74: 4.05998310e-07 + syst_JES_EtaIntercalibration_Stat75: 1.61513730e-07 + syst_JES_EtaIntercalibration_Stat76: 1.42586388e-17 + syst_JES_EtaIntercalibration_Stat77: 8.95905892e-17 + syst_JES_EtaIntercalibration_Stat78: 1.66363472e-07 + syst_JES_EtaIntercalibration_Stat79: 2.41101480e-07 + syst_JES_EtaIntercalibration_Stat8: 1.27405903e-19 + syst_JES_EtaIntercalibration_Stat80: 1.88896453e-17 + syst_JES_EtaIntercalibration_Stat81: 1.57183611e-20 + syst_JES_EtaIntercalibration_Stat82: 1.10799290e-19 + syst_JES_EtaIntercalibration_Stat83: 1.10799290e-19 + syst_JES_EtaIntercalibration_Stat84: 1.10799290e-19 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 syst_JES_EtaIntercalibration_Stat89: 0.0 - syst_JES_EtaIntercalibration_Stat9: 9.226183216802059e-20 + syst_JES_EtaIntercalibration_Stat9: 9.22618322e-20 syst_JES_EtaIntercalibration_Stat90: 0.0 syst_JES_EtaIntercalibration_Stat91: 0.0 syst_JES_EtaIntercalibration_Stat92: 0.0 - syst_JES_EtaIntercalibration_Stat93: 1.442798322704875e-20 - syst_JES_EtaIntercalibration_Stat94: 7.123997156091515e-16 - syst_JES_EtaIntercalibration_Stat95: 4.059982723688608e-07 - syst_JES_EtaIntercalibration_Stat96: 2.2898895622933434e-07 - syst_JES_EtaIntercalibration_Stat97: 2.471839175088056e-16 - syst_JES_EtaIntercalibration_Stat98: 4.983234567025718e-17 - syst_JES_EtaIntercalibration_Stat99: 8.28439810298699e-08 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0007302771169220626 - syst_JES_Flavour_Comp: 0.001849647196089027 - syst_JES_Flavour_Response: 0.00010300675511829309 - syst_JES_Gjet_Generator: 0.002354550487885108 - syst_JES_Gjet_OOC: 0.001959165383524321 - syst_JES_Gjet_Purity: 0.000349233102669263 - syst_JES_Gjet_Stat1: 7.811113284929364e-06 - syst_JES_Gjet_Stat10: 3.712801948326897e-05 - syst_JES_Gjet_Stat11: 3.997916747507381e-05 - syst_JES_Gjet_Stat12: 0.00012905608964709878 - syst_JES_Gjet_Stat13: 0.0003959174632104525 - syst_JES_Gjet_Stat14: 0.0010818872711609098 - syst_JES_Gjet_Stat15: 0.0011957386712823166 - syst_JES_Gjet_Stat2: 8.249965499927863e-06 - syst_JES_Gjet_Stat3: 8.863412816178652e-06 - syst_JES_Gjet_Stat4: 8.45019070790713e-06 - syst_JES_Gjet_Stat5: 1.0082209876807762e-05 - syst_JES_Gjet_Stat6: 2.1096679833566228e-05 - syst_JES_Gjet_Stat7: 2.7334627764065126e-05 - syst_JES_Gjet_Stat8: 1.581765706417989e-05 - syst_JES_Gjet_Stat9: 2.3285671023185054e-05 - syst_JES_Gjet_Veto: 0.001963714019403029 - syst_JES_Gjet_dPhi: 0.00019685062230026095 - syst_JES_LArESZee: 0.0035830647496242654 - syst_JES_LArEsmear: 0.00030478465758630307 - syst_JES_LAr_JVT: 0.00038026639977783994 - syst_JES_MJB_Alpha: 2.1565877561555434e-05 - syst_JES_MJB_Asym: 0.000389892173940437 - syst_JES_MJB_Beta: 2.5640440713841094e-05 - syst_JES_MJB_Fragmentation: 0.0002217115468350713 - syst_JES_MJB_Stat1: 1.8491543492905072e-06 - syst_JES_MJB_Stat10: 3.93112153081026e-05 - syst_JES_MJB_Stat11: 4.1260958544367335e-05 - syst_JES_MJB_Stat12: 5.1729586070255774e-05 - syst_JES_MJB_Stat13: 3.8500068831107305e-05 - syst_JES_MJB_Stat14: 1.549584057094032e-05 - syst_JES_MJB_Stat15: 8.14972004120387e-06 - syst_JES_MJB_Stat16: 3.667186410246962e-05 - syst_JES_MJB_Stat2: 3.0351950513929086e-06 - syst_JES_MJB_Stat3: 9.304515825662289e-06 - syst_JES_MJB_Stat4: 6.376886465980086e-06 - syst_JES_MJB_Stat5: 7.079627532575425e-06 - syst_JES_MJB_Stat6: 8.414606036529577e-06 - syst_JES_MJB_Stat7: 1.2107847486238006e-05 - syst_JES_MJB_Stat8: 1.7941473601686124e-05 - syst_JES_MJB_Stat9: 2.6731576833400607e-05 - syst_JES_MJB_Threshold: 0.0002580884489860017 - syst_JES_Pileup_MuOffset: 0.0004694069023778837 - syst_JES_Pileup_NPVOffset: 0.0004867518541310346 - syst_JES_Pileup_Pt_term: 0.0003044379739782802 - syst_JES_Pileup_Rho_topology: 0.0006581015195241536 - syst_JES_PunchThrough_MC15: 0.0003924982225118988 - syst_JES_SingleParticle_HighPt: 5.479072184229735e-11 - syst_JES_Zjet_MC: 0.000930829049826014 - syst_JES_Zjet_MuScale: 7.33367184635364e-05 - syst_JES_Zjet_MuSmearID: 1.561176719657323e-05 - syst_JES_Zjet_MuSmearMS: 0.00025112106642016314 - syst_JES_Zjet_OOC: 0.0005337256504984561 - syst_JES_Zjet_Stat1: 3.610208408111642e-05 - syst_JES_Zjet_Stat10: 4.5648685358945446e-05 - syst_JES_Zjet_Stat11: 6.085101539826596e-05 - syst_JES_Zjet_Stat12: 0.0001698009422824267 - syst_JES_Zjet_Stat13: 0.00026891487500694335 - syst_JES_Zjet_Stat2: 1.506477016087534e-06 - syst_JES_Zjet_Stat3: 2.1929938440406076e-05 - syst_JES_Zjet_Stat4: 2.02890783427932e-05 - syst_JES_Zjet_Stat5: 1.9764174660228035e-05 - syst_JES_Zjet_Stat6: 2.1373677152048498e-05 - syst_JES_Zjet_Stat7: 2.0391181304671883e-05 - syst_JES_Zjet_Stat8: 2.0457430801544947e-05 - syst_JES_Zjet_Stat9: 2.683376743955273e-05 - syst_JES_Zjet_Veto: 0.00011777340648465594 - syst_JES_Zjet_dPhi: 0.00010784608384174179 - syst_PRW: 7.705e-05 - syst_Unfolding_bias: 8.008e-05 - syst_cleaning: 0.0006169564976560341 + syst_JES_EtaIntercalibration_Stat93: 1.44279832e-20 + syst_JES_EtaIntercalibration_Stat94: 7.12399716e-16 + syst_JES_EtaIntercalibration_Stat95: 4.05998272e-07 + syst_JES_EtaIntercalibration_Stat96: 2.28988956e-07 + syst_JES_EtaIntercalibration_Stat97: 2.47183918e-16 + syst_JES_EtaIntercalibration_Stat98: 4.98323457e-17 + syst_JES_EtaIntercalibration_Stat99: 8.28439810e-08 + syst_JES_EtaIntercalibration_TotalStat_MJB: 7.30277117e-04 + syst_JES_Flavour_Comp: 1.84964720e-03 + syst_JES_Flavour_Response: 1.03006755e-04 + syst_JES_Gjet_Generator: 2.35455049e-03 + syst_JES_Gjet_OOC: 1.95916538e-03 + syst_JES_Gjet_Purity: 3.49233103e-04 + syst_JES_Gjet_Stat1: 7.81111328e-06 + syst_JES_Gjet_Stat10: 3.71280195e-05 + syst_JES_Gjet_Stat11: 3.99791675e-05 + syst_JES_Gjet_Stat12: 1.29056090e-04 + syst_JES_Gjet_Stat13: 3.95917463e-04 + syst_JES_Gjet_Stat14: 1.08188727e-03 + syst_JES_Gjet_Stat15: 1.19573867e-03 + syst_JES_Gjet_Stat2: 8.24996550e-06 + syst_JES_Gjet_Stat3: 8.86341282e-06 + syst_JES_Gjet_Stat4: 8.45019071e-06 + syst_JES_Gjet_Stat5: 1.00822099e-05 + syst_JES_Gjet_Stat6: 2.10966798e-05 + syst_JES_Gjet_Stat7: 2.73346278e-05 + syst_JES_Gjet_Stat8: 1.58176571e-05 + syst_JES_Gjet_Stat9: 2.32856710e-05 + syst_JES_Gjet_Veto: 1.96371402e-03 + syst_JES_Gjet_dPhi: 1.96850622e-04 + syst_JES_LArESZee: 3.58306475e-03 + syst_JES_LArEsmear: 3.04784658e-04 + syst_JES_LAr_JVT: 3.80266400e-04 + syst_JES_MJB_Alpha: 2.15658776e-05 + syst_JES_MJB_Asym: 3.89892174e-04 + syst_JES_MJB_Beta: 2.56404407e-05 + syst_JES_MJB_Fragmentation: 2.21711547e-04 + syst_JES_MJB_Stat1: 1.84915435e-06 + syst_JES_MJB_Stat10: 3.93112153e-05 + syst_JES_MJB_Stat11: 4.12609585e-05 + syst_JES_MJB_Stat12: 5.17295861e-05 + syst_JES_MJB_Stat13: 3.85000688e-05 + syst_JES_MJB_Stat14: 1.54958406e-05 + syst_JES_MJB_Stat15: 8.14972004e-06 + syst_JES_MJB_Stat16: 3.66718641e-05 + syst_JES_MJB_Stat2: 3.03519505e-06 + syst_JES_MJB_Stat3: 9.30451583e-06 + syst_JES_MJB_Stat4: 6.37688647e-06 + syst_JES_MJB_Stat5: 7.07962753e-06 + syst_JES_MJB_Stat6: 8.41460604e-06 + syst_JES_MJB_Stat7: 1.21078475e-05 + syst_JES_MJB_Stat8: 1.79414736e-05 + syst_JES_MJB_Stat9: 2.67315768e-05 + syst_JES_MJB_Threshold: 2.58088449e-04 + syst_JES_Pileup_MuOffset: 4.69406902e-04 + syst_JES_Pileup_NPVOffset: 4.86751854e-04 + syst_JES_Pileup_Pt_term: 3.04437974e-04 + syst_JES_Pileup_Rho_topology: 6.58101520e-04 + syst_JES_PunchThrough_MC15: 3.92498223e-04 + syst_JES_SingleParticle_HighPt: 5.47907218e-11 + syst_JES_Zjet_MC: 9.30829050e-04 + syst_JES_Zjet_MuScale: 7.33367185e-05 + syst_JES_Zjet_MuSmearID: 1.56117672e-05 + syst_JES_Zjet_MuSmearMS: 2.51121066e-04 + syst_JES_Zjet_OOC: 5.33725650e-04 + syst_JES_Zjet_Stat1: 3.61020841e-05 + syst_JES_Zjet_Stat10: 4.56486854e-05 + syst_JES_Zjet_Stat11: 6.08510154e-05 + syst_JES_Zjet_Stat12: 1.69800942e-04 + syst_JES_Zjet_Stat13: 2.68914875e-04 + syst_JES_Zjet_Stat2: 1.50647702e-06 + syst_JES_Zjet_Stat3: 2.19299384e-05 + syst_JES_Zjet_Stat4: 2.02890783e-05 + syst_JES_Zjet_Stat5: 1.97641747e-05 + syst_JES_Zjet_Stat6: 2.13736772e-05 + syst_JES_Zjet_Stat7: 2.03911813e-05 + syst_JES_Zjet_Stat8: 2.04574308e-05 + syst_JES_Zjet_Stat9: 2.68337674e-05 + syst_JES_Zjet_Veto: 1.17773406e-04 + syst_JES_Zjet_dPhi: 1.07846084e-04 + syst_PRW: 7.70500000e-05 + syst_Unfolding_bias: 8.00800000e-05 + syst_cleaning: 6.16956498e-04 syst_lumi: 0.002094 -- stat: 0.0005652 +- stat: 5.65200000e-04 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.00018393637486913782 - syst_JER_NP1: 1.9018675032714553e-05 - syst_JER_NP2: 8.700586072213756e-05 - syst_JER_NP3: 1.6212547609799022e-05 - syst_JER_NP4: 3.1368861550907454e-05 - syst_JER_NP5: 4.328473287430569e-05 - syst_JER_NP6: 3.3241941880702456e-05 - syst_JER_NP7: 1.295677927524815e-05 - syst_JER_NP8: 4.6548162960529384e-05 - syst_JES_EtaIntercalibration_Modelling: 0.0013317557133348443 - syst_JES_EtaIntercalibration_NonClosure: 3.7126509060238885e-15 + syst_JER_NP0: 1.83936375e-04 + syst_JER_NP1: 1.90186750e-05 + syst_JER_NP2: 8.70058607e-05 + syst_JER_NP3: 1.62125476e-05 + syst_JER_NP4: 3.13688616e-05 + syst_JER_NP5: 4.32847329e-05 + syst_JER_NP6: 3.32419419e-05 + syst_JER_NP7: 1.29567793e-05 + syst_JER_NP8: 4.65481630e-05 + syst_JES_EtaIntercalibration_Modelling: 1.33175571e-03 + syst_JES_EtaIntercalibration_NonClosure: 3.71265091e-15 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 1.3458034632349005e-07 - syst_JES_EtaIntercalibration_Stat101: 4.455247812411785e-18 - syst_JES_EtaIntercalibration_Stat102: 1.6092485715622058e-20 - syst_JES_EtaIntercalibration_Stat103: 3.441411749558602e-20 - syst_JES_EtaIntercalibration_Stat104: 3.441411749558602e-20 - syst_JES_EtaIntercalibration_Stat105: 3.441411749558602e-20 + syst_JES_EtaIntercalibration_Stat100: 1.34580346e-07 + syst_JES_EtaIntercalibration_Stat101: 4.45524781e-18 + syst_JES_EtaIntercalibration_Stat102: 1.60924857e-20 + syst_JES_EtaIntercalibration_Stat103: 3.44141175e-20 + syst_JES_EtaIntercalibration_Stat104: 3.44141175e-20 + syst_JES_EtaIntercalibration_Stat105: 3.44141175e-20 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 6.740275717654286e-17 - syst_JES_EtaIntercalibration_Stat111: 6.740275717654286e-17 + syst_JES_EtaIntercalibration_Stat110: 6.74027572e-17 + syst_JES_EtaIntercalibration_Stat111: 6.74027572e-17 syst_JES_EtaIntercalibration_Stat112: 0.0 - syst_JES_EtaIntercalibration_Stat113: 4.710015007141698e-19 - syst_JES_EtaIntercalibration_Stat114: 4.6055323321172685e-07 - syst_JES_EtaIntercalibration_Stat115: 1.4010235544058494e-07 - syst_JES_EtaIntercalibration_Stat116: 1.2263355444167798e-07 - syst_JES_EtaIntercalibration_Stat117: 6.496485280518998e-14 - syst_JES_EtaIntercalibration_Stat118: 1.0450328421893145e-07 - syst_JES_EtaIntercalibration_Stat119: 1.6370390954403013e-07 - syst_JES_EtaIntercalibration_Stat12: 2.1268979178963902e-17 - syst_JES_EtaIntercalibration_Stat120: 1.1386353066018142e-07 - syst_JES_EtaIntercalibration_Stat121: 2.7788408426536415e-13 - syst_JES_EtaIntercalibration_Stat122: 4.349931594864453e-19 - syst_JES_EtaIntercalibration_Stat123: 3.441411749558602e-20 - syst_JES_EtaIntercalibration_Stat124: 3.441411749558602e-20 - syst_JES_EtaIntercalibration_Stat125: 3.441411749558602e-20 + syst_JES_EtaIntercalibration_Stat113: 4.71001501e-19 + syst_JES_EtaIntercalibration_Stat114: 4.60553233e-07 + syst_JES_EtaIntercalibration_Stat115: 1.40102355e-07 + syst_JES_EtaIntercalibration_Stat116: 1.22633554e-07 + syst_JES_EtaIntercalibration_Stat117: 6.49648528e-14 + syst_JES_EtaIntercalibration_Stat118: 1.04503284e-07 + syst_JES_EtaIntercalibration_Stat119: 1.63703910e-07 + syst_JES_EtaIntercalibration_Stat12: 2.12689792e-17 + syst_JES_EtaIntercalibration_Stat120: 1.13863531e-07 + syst_JES_EtaIntercalibration_Stat121: 2.77884084e-13 + syst_JES_EtaIntercalibration_Stat122: 4.34993159e-19 + syst_JES_EtaIntercalibration_Stat123: 3.44141175e-20 + syst_JES_EtaIntercalibration_Stat124: 3.44141175e-20 + syst_JES_EtaIntercalibration_Stat125: 3.44141175e-20 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 2.2066327288427495e-14 - syst_JES_EtaIntercalibration_Stat129: 2.2043951300338035e-14 - syst_JES_EtaIntercalibration_Stat13: 2.935438739905289e-17 - syst_JES_EtaIntercalibration_Stat130: 6.740275717654286e-17 - syst_JES_EtaIntercalibration_Stat131: 1.7164623503007574e-21 - syst_JES_EtaIntercalibration_Stat132: 4.4358582105122285e-15 - syst_JES_EtaIntercalibration_Stat133: 4.653154270319856e-07 - syst_JES_EtaIntercalibration_Stat134: 4.6367932884699534e-07 - syst_JES_EtaIntercalibration_Stat135: 3.644804466176032e-07 - syst_JES_EtaIntercalibration_Stat136: 4.6289082658393087e-07 - syst_JES_EtaIntercalibration_Stat137: 1.1253400597152845e-07 - syst_JES_EtaIntercalibration_Stat138: 7.650888641197179e-07 - syst_JES_EtaIntercalibration_Stat139: 5.572432218520024e-07 - syst_JES_EtaIntercalibration_Stat14: 4.104094388534455e-21 - syst_JES_EtaIntercalibration_Stat140: 2.615907215996011e-08 - syst_JES_EtaIntercalibration_Stat141: 2.0862552739846945e-14 + syst_JES_EtaIntercalibration_Stat128: 2.20663273e-14 + syst_JES_EtaIntercalibration_Stat129: 2.20439513e-14 + syst_JES_EtaIntercalibration_Stat13: 2.93543874e-17 + syst_JES_EtaIntercalibration_Stat130: 6.74027572e-17 + syst_JES_EtaIntercalibration_Stat131: 1.71646235e-21 + syst_JES_EtaIntercalibration_Stat132: 4.43585821e-15 + syst_JES_EtaIntercalibration_Stat133: 4.65315427e-07 + syst_JES_EtaIntercalibration_Stat134: 4.63679329e-07 + syst_JES_EtaIntercalibration_Stat135: 3.64480447e-07 + syst_JES_EtaIntercalibration_Stat136: 4.62890827e-07 + syst_JES_EtaIntercalibration_Stat137: 1.12534006e-07 + syst_JES_EtaIntercalibration_Stat138: 7.65088864e-07 + syst_JES_EtaIntercalibration_Stat139: 5.57243222e-07 + syst_JES_EtaIntercalibration_Stat14: 4.10409439e-21 + syst_JES_EtaIntercalibration_Stat140: 2.61590722e-08 + syst_JES_EtaIntercalibration_Stat141: 2.08625527e-14 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 3.441411749558602e-20 - syst_JES_EtaIntercalibration_Stat144: 3.441411749558602e-20 + syst_JES_EtaIntercalibration_Stat143: 3.44141175e-20 + syst_JES_EtaIntercalibration_Stat144: 3.44141175e-20 syst_JES_EtaIntercalibration_Stat145: 0.0 - syst_JES_EtaIntercalibration_Stat146: 2.2066327288427495e-14 - syst_JES_EtaIntercalibration_Stat147: 2.2043951300338035e-14 + syst_JES_EtaIntercalibration_Stat146: 2.20663273e-14 + syst_JES_EtaIntercalibration_Stat147: 2.20439513e-14 syst_JES_EtaIntercalibration_Stat148: 0.0 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 2.8430353268997557e-18 - syst_JES_EtaIntercalibration_Stat151: 4.6522875583606676e-07 - syst_JES_EtaIntercalibration_Stat152: 4.363926758092991e-07 - syst_JES_EtaIntercalibration_Stat153: 4.7276751157413517e-07 - syst_JES_EtaIntercalibration_Stat154: 6.839102905309662e-08 - syst_JES_EtaIntercalibration_Stat155: 2.3827587435575596e-07 - syst_JES_EtaIntercalibration_Stat156: 9.566492290803354e-07 - syst_JES_EtaIntercalibration_Stat157: 6.895226664149629e-07 - syst_JES_EtaIntercalibration_Stat158: 7.950152388476588e-08 - syst_JES_EtaIntercalibration_Stat159: 2.0932987896220413e-14 + syst_JES_EtaIntercalibration_Stat150: 2.84303533e-18 + syst_JES_EtaIntercalibration_Stat151: 4.65228756e-07 + syst_JES_EtaIntercalibration_Stat152: 4.36392676e-07 + syst_JES_EtaIntercalibration_Stat153: 4.72767512e-07 + syst_JES_EtaIntercalibration_Stat154: 6.83910291e-08 + syst_JES_EtaIntercalibration_Stat155: 2.38275874e-07 + syst_JES_EtaIntercalibration_Stat156: 9.56649229e-07 + syst_JES_EtaIntercalibration_Stat157: 6.89522666e-07 + syst_JES_EtaIntercalibration_Stat158: 7.95015239e-08 + syst_JES_EtaIntercalibration_Stat159: 2.09329879e-14 syst_JES_EtaIntercalibration_Stat16: 0.0 syst_JES_EtaIntercalibration_Stat160: 0.0 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 - syst_JES_EtaIntercalibration_Stat164: 2.2066327288427495e-14 + syst_JES_EtaIntercalibration_Stat164: 2.20663273e-14 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 - syst_JES_EtaIntercalibration_Stat168: 5.197018448110416e-17 - syst_JES_EtaIntercalibration_Stat169: 2.4145438492601454e-07 + syst_JES_EtaIntercalibration_Stat168: 5.19701845e-17 + syst_JES_EtaIntercalibration_Stat169: 2.41454385e-07 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 1.0172620557162249e-06 - syst_JES_EtaIntercalibration_Stat171: 1.529777326933564e-06 - syst_JES_EtaIntercalibration_Stat172: 2.2047197027059925e-07 - syst_JES_EtaIntercalibration_Stat173: 2.6707105360746225e-07 - syst_JES_EtaIntercalibration_Stat174: 7.688277229002606e-07 - syst_JES_EtaIntercalibration_Stat175: 1.150992710663278e-06 - syst_JES_EtaIntercalibration_Stat176: 7.447670422843629e-09 - syst_JES_EtaIntercalibration_Stat177: 1.7893316538585015e-13 + syst_JES_EtaIntercalibration_Stat170: 1.01726206e-06 + syst_JES_EtaIntercalibration_Stat171: 1.52977733e-06 + syst_JES_EtaIntercalibration_Stat172: 2.20471970e-07 + syst_JES_EtaIntercalibration_Stat173: 2.67071054e-07 + syst_JES_EtaIntercalibration_Stat174: 7.68827723e-07 + syst_JES_EtaIntercalibration_Stat175: 1.15099271e-06 + syst_JES_EtaIntercalibration_Stat176: 7.44767042e-09 + syst_JES_EtaIntercalibration_Stat177: 1.78933165e-13 syst_JES_EtaIntercalibration_Stat178: 0.0 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 @@ -20667,17 +20667,17 @@ bins: syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 syst_JES_EtaIntercalibration_Stat184: 0.0 - syst_JES_EtaIntercalibration_Stat185: 1.7373441786603964e-08 - syst_JES_EtaIntercalibration_Stat186: 6.218008362812003e-07 - syst_JES_EtaIntercalibration_Stat187: 6.7807862929014355e-06 - syst_JES_EtaIntercalibration_Stat188: 5.500785943844752e-06 - syst_JES_EtaIntercalibration_Stat189: 9.674099686792567e-07 + syst_JES_EtaIntercalibration_Stat185: 1.73734418e-08 + syst_JES_EtaIntercalibration_Stat186: 6.21800836e-07 + syst_JES_EtaIntercalibration_Stat187: 6.78078629e-06 + syst_JES_EtaIntercalibration_Stat188: 5.50078594e-06 + syst_JES_EtaIntercalibration_Stat189: 9.67409969e-07 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 3.449635777875688e-07 - syst_JES_EtaIntercalibration_Stat191: 4.742863375641344e-06 - syst_JES_EtaIntercalibration_Stat192: 7.0599505663991725e-06 - syst_JES_EtaIntercalibration_Stat193: 1.1093753952111972e-06 - syst_JES_EtaIntercalibration_Stat194: 1.8160552717359678e-13 + syst_JES_EtaIntercalibration_Stat190: 3.44963578e-07 + syst_JES_EtaIntercalibration_Stat191: 4.74286338e-06 + syst_JES_EtaIntercalibration_Stat192: 7.05995057e-06 + syst_JES_EtaIntercalibration_Stat193: 1.10937540e-06 + syst_JES_EtaIntercalibration_Stat194: 1.81605527e-13 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 syst_JES_EtaIntercalibration_Stat197: 0.0 @@ -20685,70 +20685,70 @@ bins: syst_JES_EtaIntercalibration_Stat199: 0.0 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 1.7355011224976963e-08 - syst_JES_EtaIntercalibration_Stat201: 1.4469335394205225e-06 - syst_JES_EtaIntercalibration_Stat202: 1.5485651423172357e-05 - syst_JES_EtaIntercalibration_Stat203: 1.0922371205466328e-05 - syst_JES_EtaIntercalibration_Stat204: 1.550288602164126e-06 - syst_JES_EtaIntercalibration_Stat205: 1.0722546656811524e-06 - syst_JES_EtaIntercalibration_Stat206: 1.1046612184285279e-05 - syst_JES_EtaIntercalibration_Stat207: 1.2043295427332172e-05 - syst_JES_EtaIntercalibration_Stat208: 1.6545666351041895e-06 - syst_JES_EtaIntercalibration_Stat209: 2.5911479932880256e-08 + syst_JES_EtaIntercalibration_Stat200: 1.73550112e-08 + syst_JES_EtaIntercalibration_Stat201: 1.44693354e-06 + syst_JES_EtaIntercalibration_Stat202: 1.54856514e-05 + syst_JES_EtaIntercalibration_Stat203: 1.09223712e-05 + syst_JES_EtaIntercalibration_Stat204: 1.55028860e-06 + syst_JES_EtaIntercalibration_Stat205: 1.07225467e-06 + syst_JES_EtaIntercalibration_Stat206: 1.10466122e-05 + syst_JES_EtaIntercalibration_Stat207: 1.20432954e-05 + syst_JES_EtaIntercalibration_Stat208: 1.65456664e-06 + syst_JES_EtaIntercalibration_Stat209: 2.59114799e-08 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 syst_JES_EtaIntercalibration_Stat211: 0.0 syst_JES_EtaIntercalibration_Stat212: 0.0 - syst_JES_EtaIntercalibration_Stat213: 1.7356116080271265e-08 - syst_JES_EtaIntercalibration_Stat214: 1.0126910819692253e-06 - syst_JES_EtaIntercalibration_Stat215: 1.7760456075225094e-05 - syst_JES_EtaIntercalibration_Stat216: 1.3011998155548591e-05 - syst_JES_EtaIntercalibration_Stat217: 1.4043722690227119e-06 - syst_JES_EtaIntercalibration_Stat218: 7.983450945549801e-07 - syst_JES_EtaIntercalibration_Stat219: 1.3859245677525165e-05 + syst_JES_EtaIntercalibration_Stat213: 1.73561161e-08 + syst_JES_EtaIntercalibration_Stat214: 1.01269108e-06 + syst_JES_EtaIntercalibration_Stat215: 1.77604561e-05 + syst_JES_EtaIntercalibration_Stat216: 1.30119982e-05 + syst_JES_EtaIntercalibration_Stat217: 1.40437227e-06 + syst_JES_EtaIntercalibration_Stat218: 7.98345095e-07 + syst_JES_EtaIntercalibration_Stat219: 1.38592457e-05 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 1.4389654990652138e-05 - syst_JES_EtaIntercalibration_Stat221: 1.9703993173973645e-06 - syst_JES_EtaIntercalibration_Stat222: 2.581694092393597e-08 + syst_JES_EtaIntercalibration_Stat220: 1.43896550e-05 + syst_JES_EtaIntercalibration_Stat221: 1.97039932e-06 + syst_JES_EtaIntercalibration_Stat222: 2.58169409e-08 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 - syst_JES_EtaIntercalibration_Stat225: 1.2188739188283584e-07 - syst_JES_EtaIntercalibration_Stat226: 3.603735978120484e-06 - syst_JES_EtaIntercalibration_Stat227: 4.199521490598661e-05 - syst_JES_EtaIntercalibration_Stat228: 3.555156536638014e-05 - syst_JES_EtaIntercalibration_Stat229: 2.7922268442947112e-06 + syst_JES_EtaIntercalibration_Stat225: 1.21887392e-07 + syst_JES_EtaIntercalibration_Stat226: 3.60373598e-06 + syst_JES_EtaIntercalibration_Stat227: 4.19952149e-05 + syst_JES_EtaIntercalibration_Stat228: 3.55515654e-05 + syst_JES_EtaIntercalibration_Stat229: 2.79222684e-06 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 3.5977844223910918e-06 - syst_JES_EtaIntercalibration_Stat231: 4.322087776757895e-05 - syst_JES_EtaIntercalibration_Stat232: 4.4505092686118514e-05 - syst_JES_EtaIntercalibration_Stat233: 4.00776879946935e-06 - syst_JES_EtaIntercalibration_Stat234: 9.740603164075622e-08 + syst_JES_EtaIntercalibration_Stat230: 3.59778442e-06 + syst_JES_EtaIntercalibration_Stat231: 4.32208778e-05 + syst_JES_EtaIntercalibration_Stat232: 4.45050927e-05 + syst_JES_EtaIntercalibration_Stat233: 4.00776880e-06 + syst_JES_EtaIntercalibration_Stat234: 9.74060316e-08 syst_JES_EtaIntercalibration_Stat235: 0.0 - syst_JES_EtaIntercalibration_Stat236: 1.735514909184015e-08 - syst_JES_EtaIntercalibration_Stat237: 1.301897795527744e-06 - syst_JES_EtaIntercalibration_Stat238: 1.0324100784087686e-05 - syst_JES_EtaIntercalibration_Stat239: 4.362017996294834e-06 + syst_JES_EtaIntercalibration_Stat236: 1.73551491e-08 + syst_JES_EtaIntercalibration_Stat237: 1.30189780e-06 + syst_JES_EtaIntercalibration_Stat238: 1.03241008e-05 + syst_JES_EtaIntercalibration_Stat239: 4.36201800e-06 syst_JES_EtaIntercalibration_Stat24: 0.0 - syst_JES_EtaIntercalibration_Stat240: 2.287354968079944e-07 - syst_JES_EtaIntercalibration_Stat241: 1.0471227982786929e-07 - syst_JES_EtaIntercalibration_Stat242: 3.7768772815647586e-06 - syst_JES_EtaIntercalibration_Stat243: 6.973776935778775e-06 - syst_JES_EtaIntercalibration_Stat244: 8.910865614518041e-07 - syst_JES_EtaIntercalibration_Stat245: 2.073264816659946e-09 + syst_JES_EtaIntercalibration_Stat240: 2.28735497e-07 + syst_JES_EtaIntercalibration_Stat241: 1.04712280e-07 + syst_JES_EtaIntercalibration_Stat242: 3.77687728e-06 + syst_JES_EtaIntercalibration_Stat243: 6.97377694e-06 + syst_JES_EtaIntercalibration_Stat244: 8.91086561e-07 + syst_JES_EtaIntercalibration_Stat245: 2.07326482e-09 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 syst_JES_EtaIntercalibration_Stat27: 0.0 - syst_JES_EtaIntercalibration_Stat28: 8.956434725938664e-22 - syst_JES_EtaIntercalibration_Stat29: 9.622920953639805e-20 + syst_JES_EtaIntercalibration_Stat28: 8.95643473e-22 + syst_JES_EtaIntercalibration_Stat29: 9.62292095e-20 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 1.2073369537954183e-18 - syst_JES_EtaIntercalibration_Stat31: 8.69440130198739e-19 - syst_JES_EtaIntercalibration_Stat32: 3.692134985343846e-21 - syst_JES_EtaIntercalibration_Stat33: 6.799206049789932e-20 - syst_JES_EtaIntercalibration_Stat34: 1.133194240943679e-07 - syst_JES_EtaIntercalibration_Stat35: 2.034305962687067e-14 - syst_JES_EtaIntercalibration_Stat36: 4.123354783425749e-19 - syst_JES_EtaIntercalibration_Stat37: 6.537625773168728e-22 + syst_JES_EtaIntercalibration_Stat30: 1.20733695e-18 + syst_JES_EtaIntercalibration_Stat31: 8.69440130e-19 + syst_JES_EtaIntercalibration_Stat32: 3.69213499e-21 + syst_JES_EtaIntercalibration_Stat33: 6.79920605e-20 + syst_JES_EtaIntercalibration_Stat34: 1.13319424e-07 + syst_JES_EtaIntercalibration_Stat35: 2.03430596e-14 + syst_JES_EtaIntercalibration_Stat36: 4.12335478e-19 + syst_JES_EtaIntercalibration_Stat37: 6.53762577e-22 syst_JES_EtaIntercalibration_Stat38: 0.0 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 @@ -20763,20 +20763,20 @@ bins: syst_JES_EtaIntercalibration_Stat48: 0.0 syst_JES_EtaIntercalibration_Stat49: 0.0 syst_JES_EtaIntercalibration_Stat5: 0.0 - syst_JES_EtaIntercalibration_Stat50: 9.073348155449562e-22 - syst_JES_EtaIntercalibration_Stat51: 1.6239105517238317e-19 - syst_JES_EtaIntercalibration_Stat52: 4.4516544887827936e-17 - syst_JES_EtaIntercalibration_Stat53: 6.914559520858866e-18 - syst_JES_EtaIntercalibration_Stat54: 5.674696005073751e-20 - syst_JES_EtaIntercalibration_Stat55: 2.1255903766248094e-17 - syst_JES_EtaIntercalibration_Stat56: 1.1340602662488778e-07 - syst_JES_EtaIntercalibration_Stat57: 2.5400525096117875e-09 - syst_JES_EtaIntercalibration_Stat58: 4.873156792059948e-19 - syst_JES_EtaIntercalibration_Stat59: 2.19005205588817e-21 + syst_JES_EtaIntercalibration_Stat50: 9.07334816e-22 + syst_JES_EtaIntercalibration_Stat51: 1.62391055e-19 + syst_JES_EtaIntercalibration_Stat52: 4.45165449e-17 + syst_JES_EtaIntercalibration_Stat53: 6.91455952e-18 + syst_JES_EtaIntercalibration_Stat54: 5.67469601e-20 + syst_JES_EtaIntercalibration_Stat55: 2.12559038e-17 + syst_JES_EtaIntercalibration_Stat56: 1.13406027e-07 + syst_JES_EtaIntercalibration_Stat57: 2.54005251e-09 + syst_JES_EtaIntercalibration_Stat58: 4.87315679e-19 + syst_JES_EtaIntercalibration_Stat59: 2.19005206e-21 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 3.441411749558602e-20 - syst_JES_EtaIntercalibration_Stat62: 3.441411749558602e-20 + syst_JES_EtaIntercalibration_Stat61: 3.44141175e-20 + syst_JES_EtaIntercalibration_Stat62: 3.44141175e-20 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 @@ -20784,218 +20784,218 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 8.956434725938664e-22 + syst_JES_EtaIntercalibration_Stat7: 8.95643473e-22 syst_JES_EtaIntercalibration_Stat70: 0.0 syst_JES_EtaIntercalibration_Stat71: 0.0 - syst_JES_EtaIntercalibration_Stat72: 3.857277148455889e-21 - syst_JES_EtaIntercalibration_Stat73: 1.006201226147136e-16 - syst_JES_EtaIntercalibration_Stat74: 1.375257784032673e-07 - syst_JES_EtaIntercalibration_Stat75: 3.4227923392277765e-08 - syst_JES_EtaIntercalibration_Stat76: 2.7311843639710596e-18 - syst_JES_EtaIntercalibration_Stat77: 1.8075809580762903e-17 - syst_JES_EtaIntercalibration_Stat78: 1.0923178278329837e-07 - syst_JES_EtaIntercalibration_Stat79: 1.5960848318215786e-07 - syst_JES_EtaIntercalibration_Stat8: 3.2254259796188165e-20 - syst_JES_EtaIntercalibration_Stat80: 4.171969322753943e-18 - syst_JES_EtaIntercalibration_Stat81: 4.850608286596641e-21 - syst_JES_EtaIntercalibration_Stat82: 3.441411749558602e-20 - syst_JES_EtaIntercalibration_Stat83: 3.441411749558602e-20 - syst_JES_EtaIntercalibration_Stat84: 3.441411749558602e-20 + syst_JES_EtaIntercalibration_Stat72: 3.85727715e-21 + syst_JES_EtaIntercalibration_Stat73: 1.00620123e-16 + syst_JES_EtaIntercalibration_Stat74: 1.37525778e-07 + syst_JES_EtaIntercalibration_Stat75: 3.42279234e-08 + syst_JES_EtaIntercalibration_Stat76: 2.73118436e-18 + syst_JES_EtaIntercalibration_Stat77: 1.80758096e-17 + syst_JES_EtaIntercalibration_Stat78: 1.09231783e-07 + syst_JES_EtaIntercalibration_Stat79: 1.59608483e-07 + syst_JES_EtaIntercalibration_Stat8: 3.22542598e-20 + syst_JES_EtaIntercalibration_Stat80: 4.17196932e-18 + syst_JES_EtaIntercalibration_Stat81: 4.85060829e-21 + syst_JES_EtaIntercalibration_Stat82: 3.44141175e-20 + syst_JES_EtaIntercalibration_Stat83: 3.44141175e-20 + syst_JES_EtaIntercalibration_Stat84: 3.44141175e-20 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 syst_JES_EtaIntercalibration_Stat89: 0.0 - syst_JES_EtaIntercalibration_Stat9: 2.4971212926087512e-20 + syst_JES_EtaIntercalibration_Stat9: 2.49712129e-20 syst_JES_EtaIntercalibration_Stat90: 0.0 syst_JES_EtaIntercalibration_Stat91: 0.0 syst_JES_EtaIntercalibration_Stat92: 0.0 - syst_JES_EtaIntercalibration_Stat93: 2.2923692438174092e-21 - syst_JES_EtaIntercalibration_Stat94: 1.395021105243573e-16 - syst_JES_EtaIntercalibration_Stat95: 1.3752577262944842e-07 - syst_JES_EtaIntercalibration_Stat96: 7.305646831732287e-08 - syst_JES_EtaIntercalibration_Stat97: 4.8618058433878253e-17 - syst_JES_EtaIntercalibration_Stat98: 1.0388161182326734e-17 - syst_JES_EtaIntercalibration_Stat99: 8.590813505724189e-11 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0005230740936999269 - syst_JES_Flavour_Comp: 0.0013330968794502524 - syst_JES_Flavour_Response: 4.8840451216179404e-05 - syst_JES_Gjet_Generator: 0.00161138791108783 - syst_JES_Gjet_OOC: 0.0013448139899257443 - syst_JES_Gjet_Purity: 0.0002339566786821868 - syst_JES_Gjet_Stat1: 5.930370814713022e-06 - syst_JES_Gjet_Stat10: 2.5237299281024506e-05 - syst_JES_Gjet_Stat11: 2.6542081210786767e-05 - syst_JES_Gjet_Stat12: 8.457091757808946e-05 - syst_JES_Gjet_Stat13: 0.0002638024260692081 - syst_JES_Gjet_Stat14: 0.0007265278728307674 - syst_JES_Gjet_Stat15: 0.0009332377657917622 - syst_JES_Gjet_Stat2: 5.5714560933386165e-06 - syst_JES_Gjet_Stat3: 6.849961806462866e-06 - syst_JES_Gjet_Stat4: 5.011150865819149e-06 - syst_JES_Gjet_Stat5: 6.6651377142561726e-06 - syst_JES_Gjet_Stat6: 1.768500141362731e-05 - syst_JES_Gjet_Stat7: 1.838122955626201e-05 - syst_JES_Gjet_Stat8: 1.1113306922334145e-05 - syst_JES_Gjet_Stat9: 1.596338212127994e-05 - syst_JES_Gjet_Veto: 0.0013520575237392822 - syst_JES_Gjet_dPhi: 0.00013862914628605342 - syst_JES_LArESZee: 0.0024322440255862485 - syst_JES_LArEsmear: 0.00021270169251794873 - syst_JES_LAr_JVT: 0.0002667001499812102 - syst_JES_MJB_Alpha: 1.6518889187835843e-05 - syst_JES_MJB_Asym: 0.00028440900126402465 - syst_JES_MJB_Beta: 1.7674538522971398e-05 - syst_JES_MJB_Fragmentation: 0.00014263295087391272 - syst_JES_MJB_Stat1: 1.2183858909229048e-06 - syst_JES_MJB_Stat10: 2.8285849377383028e-05 - syst_JES_MJB_Stat11: 3.066636431010367e-05 - syst_JES_MJB_Stat12: 4.292398280681791e-05 - syst_JES_MJB_Stat13: 4.322759622047009e-05 - syst_JES_MJB_Stat14: 2.7198883708711283e-05 - syst_JES_MJB_Stat15: 1.6883621501324886e-05 - syst_JES_MJB_Stat16: 3.539505191407409e-05 - syst_JES_MJB_Stat2: 1.857642772440385e-06 - syst_JES_MJB_Stat3: 4.756609506781064e-06 - syst_JES_MJB_Stat4: 3.0692547548224143e-06 - syst_JES_MJB_Stat5: 4.013865701228679e-06 - syst_JES_MJB_Stat6: 5.055574818949869e-06 - syst_JES_MJB_Stat7: 7.088932289139176e-06 - syst_JES_MJB_Stat8: 1.0876047754124657e-05 - syst_JES_MJB_Stat9: 1.708400796066309e-05 - syst_JES_MJB_Threshold: 0.00019505934353421781 - syst_JES_Pileup_MuOffset: 0.00032445173369855803 - syst_JES_Pileup_NPVOffset: 0.0003389649355021843 - syst_JES_Pileup_Pt_term: 0.00020720745039693917 - syst_JES_Pileup_Rho_topology: 0.0004416595153509092 - syst_JES_PunchThrough_MC15: 0.0003237617449607041 - syst_JES_SingleParticle_HighPt: 5.698099749039148e-10 - syst_JES_Zjet_MC: 0.0006269701009617605 - syst_JES_Zjet_MuScale: 5.0356287343290116e-05 - syst_JES_Zjet_MuSmearID: 1.0812709963279327e-05 - syst_JES_Zjet_MuSmearMS: 0.00016960053065954718 - syst_JES_Zjet_OOC: 0.00036875195931682856 - syst_JES_Zjet_Stat1: 2.8516936634217918e-05 - syst_JES_Zjet_Stat10: 3.106195743992963e-05 - syst_JES_Zjet_Stat11: 4.304588336879614e-05 - syst_JES_Zjet_Stat12: 0.0001145828105563832 - syst_JES_Zjet_Stat13: 0.00017830005608524075 - syst_JES_Zjet_Stat2: 9.690737123666085e-07 - syst_JES_Zjet_Stat3: 1.762655950547355e-05 - syst_JES_Zjet_Stat4: 1.5975133802256555e-05 - syst_JES_Zjet_Stat5: 1.5898186398139883e-05 - syst_JES_Zjet_Stat6: 1.540133172001694e-05 - syst_JES_Zjet_Stat7: 1.6056247226547055e-05 - syst_JES_Zjet_Stat8: 1.4639602556080542e-05 - syst_JES_Zjet_Stat9: 1.906175424770763e-05 - syst_JES_Zjet_Veto: 7.991169172905801e-05 - syst_JES_Zjet_dPhi: 7.531829259881028e-05 + syst_JES_EtaIntercalibration_Stat93: 2.29236924e-21 + syst_JES_EtaIntercalibration_Stat94: 1.39502111e-16 + syst_JES_EtaIntercalibration_Stat95: 1.37525773e-07 + syst_JES_EtaIntercalibration_Stat96: 7.30564683e-08 + syst_JES_EtaIntercalibration_Stat97: 4.86180584e-17 + syst_JES_EtaIntercalibration_Stat98: 1.03881612e-17 + syst_JES_EtaIntercalibration_Stat99: 8.59081351e-11 + syst_JES_EtaIntercalibration_TotalStat_MJB: 5.23074094e-04 + syst_JES_Flavour_Comp: 1.33309688e-03 + syst_JES_Flavour_Response: 4.88404512e-05 + syst_JES_Gjet_Generator: 1.61138791e-03 + syst_JES_Gjet_OOC: 1.34481399e-03 + syst_JES_Gjet_Purity: 2.33956679e-04 + syst_JES_Gjet_Stat1: 5.93037081e-06 + syst_JES_Gjet_Stat10: 2.52372993e-05 + syst_JES_Gjet_Stat11: 2.65420812e-05 + syst_JES_Gjet_Stat12: 8.45709176e-05 + syst_JES_Gjet_Stat13: 2.63802426e-04 + syst_JES_Gjet_Stat14: 7.26527873e-04 + syst_JES_Gjet_Stat15: 9.33237766e-04 + syst_JES_Gjet_Stat2: 5.57145609e-06 + syst_JES_Gjet_Stat3: 6.84996181e-06 + syst_JES_Gjet_Stat4: 5.01115087e-06 + syst_JES_Gjet_Stat5: 6.66513771e-06 + syst_JES_Gjet_Stat6: 1.76850014e-05 + syst_JES_Gjet_Stat7: 1.83812296e-05 + syst_JES_Gjet_Stat8: 1.11133069e-05 + syst_JES_Gjet_Stat9: 1.59633821e-05 + syst_JES_Gjet_Veto: 1.35205752e-03 + syst_JES_Gjet_dPhi: 1.38629146e-04 + syst_JES_LArESZee: 2.43224403e-03 + syst_JES_LArEsmear: 2.12701693e-04 + syst_JES_LAr_JVT: 2.66700150e-04 + syst_JES_MJB_Alpha: 1.65188892e-05 + syst_JES_MJB_Asym: 2.84409001e-04 + syst_JES_MJB_Beta: 1.76745385e-05 + syst_JES_MJB_Fragmentation: 1.42632951e-04 + syst_JES_MJB_Stat1: 1.21838589e-06 + syst_JES_MJB_Stat10: 2.82858494e-05 + syst_JES_MJB_Stat11: 3.06663643e-05 + syst_JES_MJB_Stat12: 4.29239828e-05 + syst_JES_MJB_Stat13: 4.32275962e-05 + syst_JES_MJB_Stat14: 2.71988837e-05 + syst_JES_MJB_Stat15: 1.68836215e-05 + syst_JES_MJB_Stat16: 3.53950519e-05 + syst_JES_MJB_Stat2: 1.85764277e-06 + syst_JES_MJB_Stat3: 4.75660951e-06 + syst_JES_MJB_Stat4: 3.06925475e-06 + syst_JES_MJB_Stat5: 4.01386570e-06 + syst_JES_MJB_Stat6: 5.05557482e-06 + syst_JES_MJB_Stat7: 7.08893229e-06 + syst_JES_MJB_Stat8: 1.08760478e-05 + syst_JES_MJB_Stat9: 1.70840080e-05 + syst_JES_MJB_Threshold: 1.95059344e-04 + syst_JES_Pileup_MuOffset: 3.24451734e-04 + syst_JES_Pileup_NPVOffset: 3.38964936e-04 + syst_JES_Pileup_Pt_term: 2.07207450e-04 + syst_JES_Pileup_Rho_topology: 4.41659515e-04 + syst_JES_PunchThrough_MC15: 3.23761745e-04 + syst_JES_SingleParticle_HighPt: 5.69809975e-10 + syst_JES_Zjet_MC: 6.26970101e-04 + syst_JES_Zjet_MuScale: 5.03562873e-05 + syst_JES_Zjet_MuSmearID: 1.08127100e-05 + syst_JES_Zjet_MuSmearMS: 1.69600531e-04 + syst_JES_Zjet_OOC: 3.68751959e-04 + syst_JES_Zjet_Stat1: 2.85169366e-05 + syst_JES_Zjet_Stat10: 3.10619574e-05 + syst_JES_Zjet_Stat11: 4.30458834e-05 + syst_JES_Zjet_Stat12: 1.14582811e-04 + syst_JES_Zjet_Stat13: 1.78300056e-04 + syst_JES_Zjet_Stat2: 9.69073712e-07 + syst_JES_Zjet_Stat3: 1.76265595e-05 + syst_JES_Zjet_Stat4: 1.59751338e-05 + syst_JES_Zjet_Stat5: 1.58981864e-05 + syst_JES_Zjet_Stat6: 1.54013317e-05 + syst_JES_Zjet_Stat7: 1.60562472e-05 + syst_JES_Zjet_Stat8: 1.46396026e-05 + syst_JES_Zjet_Stat9: 1.90617542e-05 + syst_JES_Zjet_Veto: 7.99116917e-05 + syst_JES_Zjet_dPhi: 7.53182926e-05 syst_PRW: 5.06e-05 - syst_Unfolding_bias: 5.259e-05 - syst_cleaning: 0.0004302414206001092 - syst_lumi: 0.0013754 + syst_Unfolding_bias: 5.25900000e-05 + syst_cleaning: 4.30241421e-04 + syst_lumi: 1.37540000e-03 - stat: 0.000459 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.00012671116239305834 - syst_JER_NP1: 1.2538544602544586e-05 - syst_JER_NP2: 6.314591356532898e-05 - syst_JER_NP3: 1.0435043028181532e-05 - syst_JER_NP4: 2.2981324483153707e-05 - syst_JER_NP5: 3.234972642851868e-05 - syst_JER_NP6: 2.4072613069627487e-05 - syst_JER_NP7: 8.48714810697227e-06 - syst_JER_NP8: 3.144335064842804e-05 - syst_JES_EtaIntercalibration_Modelling: 0.000921410717324256 - syst_JES_EtaIntercalibration_NonClosure: 7.00268141500097e-16 + syst_JER_NP0: 1.26711162e-04 + syst_JER_NP1: 1.25385446e-05 + syst_JER_NP2: 6.31459136e-05 + syst_JER_NP3: 1.04350430e-05 + syst_JER_NP4: 2.29813245e-05 + syst_JER_NP5: 3.23497264e-05 + syst_JER_NP6: 2.40726131e-05 + syst_JER_NP7: 8.48714811e-06 + syst_JER_NP8: 3.14433506e-05 + syst_JES_EtaIntercalibration_Modelling: 9.21410717e-04 + syst_JES_EtaIntercalibration_NonClosure: 7.00268142e-16 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 8.803148201831062e-08 - syst_JES_EtaIntercalibration_Stat101: 1.0648684764209146e-18 - syst_JES_EtaIntercalibration_Stat102: 4.879847498385579e-21 - syst_JES_EtaIntercalibration_Stat103: 1.1505147489276269e-20 - syst_JES_EtaIntercalibration_Stat104: 1.1505147489276269e-20 - syst_JES_EtaIntercalibration_Stat105: 1.1505147489276269e-20 + syst_JES_EtaIntercalibration_Stat100: 8.80314820e-08 + syst_JES_EtaIntercalibration_Stat101: 1.06486848e-18 + syst_JES_EtaIntercalibration_Stat102: 4.87984750e-21 + syst_JES_EtaIntercalibration_Stat103: 1.15051475e-20 + syst_JES_EtaIntercalibration_Stat104: 1.15051475e-20 + syst_JES_EtaIntercalibration_Stat105: 1.15051475e-20 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 1.51208035500763e-17 - syst_JES_EtaIntercalibration_Stat111: 1.51208035500763e-17 + syst_JES_EtaIntercalibration_Stat110: 1.51208036e-17 + syst_JES_EtaIntercalibration_Stat111: 1.51208036e-17 syst_JES_EtaIntercalibration_Stat112: 0.0 - syst_JES_EtaIntercalibration_Stat113: 1.2558156435958265e-19 - syst_JES_EtaIntercalibration_Stat114: 1.6939473242872824e-07 - syst_JES_EtaIntercalibration_Stat115: 1.280729823186764e-07 - syst_JES_EtaIntercalibration_Stat116: 7.58567114697177e-08 - syst_JES_EtaIntercalibration_Stat117: 1.1988615964739215e-14 - syst_JES_EtaIntercalibration_Stat118: 6.83294041194826e-08 - syst_JES_EtaIntercalibration_Stat119: 1.0414224539061946e-07 - syst_JES_EtaIntercalibration_Stat12: 4.708301398508808e-18 - syst_JES_EtaIntercalibration_Stat120: 1.4656715892381893e-07 - syst_JES_EtaIntercalibration_Stat121: 4.980813591440157e-14 - syst_JES_EtaIntercalibration_Stat122: 1.121225033913799e-19 - syst_JES_EtaIntercalibration_Stat123: 1.1505147489276269e-20 - syst_JES_EtaIntercalibration_Stat124: 1.1505147489276269e-20 - syst_JES_EtaIntercalibration_Stat125: 1.1505147489276269e-20 + syst_JES_EtaIntercalibration_Stat113: 1.25581564e-19 + syst_JES_EtaIntercalibration_Stat114: 1.69394732e-07 + syst_JES_EtaIntercalibration_Stat115: 1.28072982e-07 + syst_JES_EtaIntercalibration_Stat116: 7.58567115e-08 + syst_JES_EtaIntercalibration_Stat117: 1.19886160e-14 + syst_JES_EtaIntercalibration_Stat118: 6.83294041e-08 + syst_JES_EtaIntercalibration_Stat119: 1.04142245e-07 + syst_JES_EtaIntercalibration_Stat12: 4.70830140e-18 + syst_JES_EtaIntercalibration_Stat120: 1.46567159e-07 + syst_JES_EtaIntercalibration_Stat121: 4.98081359e-14 + syst_JES_EtaIntercalibration_Stat122: 1.12122503e-19 + syst_JES_EtaIntercalibration_Stat123: 1.15051475e-20 + syst_JES_EtaIntercalibration_Stat124: 1.15051475e-20 + syst_JES_EtaIntercalibration_Stat125: 1.15051475e-20 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 4.124012972821497e-15 - syst_JES_EtaIntercalibration_Stat129: 4.118997375417955e-15 - syst_JES_EtaIntercalibration_Stat13: 6.642438706071795e-18 - syst_JES_EtaIntercalibration_Stat130: 1.51208035500763e-17 - syst_JES_EtaIntercalibration_Stat131: 5.559883092296096e-22 - syst_JES_EtaIntercalibration_Stat132: 8.410016112992889e-16 - syst_JES_EtaIntercalibration_Stat133: 1.7718879363923989e-07 - syst_JES_EtaIntercalibration_Stat134: 2.994311106080996e-07 - syst_JES_EtaIntercalibration_Stat135: 2.3950805968068696e-07 - syst_JES_EtaIntercalibration_Stat136: 3.3480546512604515e-07 - syst_JES_EtaIntercalibration_Stat137: 7.04934300130161e-08 - syst_JES_EtaIntercalibration_Stat138: 6.818516260888434e-07 - syst_JES_EtaIntercalibration_Stat139: 3.079974240152018e-07 - syst_JES_EtaIntercalibration_Stat14: 1.3683201379794129e-21 - syst_JES_EtaIntercalibration_Stat140: 9.712300171518331e-09 - syst_JES_EtaIntercalibration_Stat141: 3.8719998297067384e-15 + syst_JES_EtaIntercalibration_Stat128: 4.12401297e-15 + syst_JES_EtaIntercalibration_Stat129: 4.11899738e-15 + syst_JES_EtaIntercalibration_Stat13: 6.64243871e-18 + syst_JES_EtaIntercalibration_Stat130: 1.51208036e-17 + syst_JES_EtaIntercalibration_Stat131: 5.55988309e-22 + syst_JES_EtaIntercalibration_Stat132: 8.41001611e-16 + syst_JES_EtaIntercalibration_Stat133: 1.77188794e-07 + syst_JES_EtaIntercalibration_Stat134: 2.99431111e-07 + syst_JES_EtaIntercalibration_Stat135: 2.39508060e-07 + syst_JES_EtaIntercalibration_Stat136: 3.34805465e-07 + syst_JES_EtaIntercalibration_Stat137: 7.04934300e-08 + syst_JES_EtaIntercalibration_Stat138: 6.81851626e-07 + syst_JES_EtaIntercalibration_Stat139: 3.07997424e-07 + syst_JES_EtaIntercalibration_Stat14: 1.36832014e-21 + syst_JES_EtaIntercalibration_Stat140: 9.71230017e-09 + syst_JES_EtaIntercalibration_Stat141: 3.87199983e-15 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 1.1505147489276269e-20 - syst_JES_EtaIntercalibration_Stat144: 1.1505147489276269e-20 + syst_JES_EtaIntercalibration_Stat143: 1.15051475e-20 + syst_JES_EtaIntercalibration_Stat144: 1.15051475e-20 syst_JES_EtaIntercalibration_Stat145: 0.0 - syst_JES_EtaIntercalibration_Stat146: 4.124012972821497e-15 - syst_JES_EtaIntercalibration_Stat147: 4.118997375417955e-15 + syst_JES_EtaIntercalibration_Stat146: 4.12401297e-15 + syst_JES_EtaIntercalibration_Stat147: 4.11899738e-15 syst_JES_EtaIntercalibration_Stat148: 0.0 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 6.813015592966157e-19 - syst_JES_EtaIntercalibration_Stat151: 1.771021788215136e-07 - syst_JES_EtaIntercalibration_Stat152: 2.8512331981091967e-07 - syst_JES_EtaIntercalibration_Stat153: 3.3347342847669286e-07 - syst_JES_EtaIntercalibration_Stat154: 4.474771145064667e-08 - syst_JES_EtaIntercalibration_Stat155: 1.5265679374007567e-07 - syst_JES_EtaIntercalibration_Stat156: 7.307252886687309e-07 - syst_JES_EtaIntercalibration_Stat157: 4.465718897053419e-07 - syst_JES_EtaIntercalibration_Stat158: 3.13957035277122e-08 - syst_JES_EtaIntercalibration_Stat159: 3.887000316938864e-15 + syst_JES_EtaIntercalibration_Stat150: 6.81301559e-19 + syst_JES_EtaIntercalibration_Stat151: 1.77102179e-07 + syst_JES_EtaIntercalibration_Stat152: 2.85123320e-07 + syst_JES_EtaIntercalibration_Stat153: 3.33473428e-07 + syst_JES_EtaIntercalibration_Stat154: 4.47477115e-08 + syst_JES_EtaIntercalibration_Stat155: 1.52656794e-07 + syst_JES_EtaIntercalibration_Stat156: 7.30725289e-07 + syst_JES_EtaIntercalibration_Stat157: 4.46571890e-07 + syst_JES_EtaIntercalibration_Stat158: 3.13957035e-08 + syst_JES_EtaIntercalibration_Stat159: 3.88700032e-15 syst_JES_EtaIntercalibration_Stat16: 0.0 syst_JES_EtaIntercalibration_Stat160: 0.0 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 - syst_JES_EtaIntercalibration_Stat164: 4.124012972821497e-15 + syst_JES_EtaIntercalibration_Stat164: 4.12401297e-15 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 - syst_JES_EtaIntercalibration_Stat168: 8.090409322154226e-18 - syst_JES_EtaIntercalibration_Stat169: 2.3629627737228529e-07 + syst_JES_EtaIntercalibration_Stat168: 8.09040932e-18 + syst_JES_EtaIntercalibration_Stat169: 2.36296277e-07 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 6.651014957696307e-07 - syst_JES_EtaIntercalibration_Stat171: 9.702945995933399e-07 - syst_JES_EtaIntercalibration_Stat172: 1.9011036452545138e-07 - syst_JES_EtaIntercalibration_Stat173: 1.499064068010437e-07 - syst_JES_EtaIntercalibration_Stat174: 4.973280707943199e-07 - syst_JES_EtaIntercalibration_Stat175: 9.17462504683434e-07 - syst_JES_EtaIntercalibration_Stat176: 4.977916380876654e-08 - syst_JES_EtaIntercalibration_Stat177: 3.262610563643782e-14 + syst_JES_EtaIntercalibration_Stat170: 6.65101496e-07 + syst_JES_EtaIntercalibration_Stat171: 9.70294600e-07 + syst_JES_EtaIntercalibration_Stat172: 1.90110365e-07 + syst_JES_EtaIntercalibration_Stat173: 1.49906407e-07 + syst_JES_EtaIntercalibration_Stat174: 4.97328071e-07 + syst_JES_EtaIntercalibration_Stat175: 9.17462505e-07 + syst_JES_EtaIntercalibration_Stat176: 4.97791638e-08 + syst_JES_EtaIntercalibration_Stat177: 3.26261056e-14 syst_JES_EtaIntercalibration_Stat178: 0.0 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 @@ -21004,17 +21004,17 @@ bins: syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 syst_JES_EtaIntercalibration_Stat184: 0.0 - syst_JES_EtaIntercalibration_Stat185: 2.7522115315057498e-08 - syst_JES_EtaIntercalibration_Stat186: 5.146228424778675e-07 - syst_JES_EtaIntercalibration_Stat187: 4.365896557409486e-06 - syst_JES_EtaIntercalibration_Stat188: 3.6684405406112287e-06 - syst_JES_EtaIntercalibration_Stat189: 5.357169353305904e-07 + syst_JES_EtaIntercalibration_Stat185: 2.75221153e-08 + syst_JES_EtaIntercalibration_Stat186: 5.14622842e-07 + syst_JES_EtaIntercalibration_Stat187: 4.36589656e-06 + syst_JES_EtaIntercalibration_Stat188: 3.66844054e-06 + syst_JES_EtaIntercalibration_Stat189: 5.35716935e-07 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 2.771925458954479e-07 - syst_JES_EtaIntercalibration_Stat191: 3.810485106912242e-06 - syst_JES_EtaIntercalibration_Stat192: 5.092467771130221e-06 - syst_JES_EtaIntercalibration_Stat193: 6.450567726952411e-07 - syst_JES_EtaIntercalibration_Stat194: 3.256255518229489e-14 + syst_JES_EtaIntercalibration_Stat190: 2.77192546e-07 + syst_JES_EtaIntercalibration_Stat191: 3.81048511e-06 + syst_JES_EtaIntercalibration_Stat192: 5.09246777e-06 + syst_JES_EtaIntercalibration_Stat193: 6.45056773e-07 + syst_JES_EtaIntercalibration_Stat194: 3.25625552e-14 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 syst_JES_EtaIntercalibration_Stat197: 0.0 @@ -21022,70 +21022,70 @@ bins: syst_JES_EtaIntercalibration_Stat199: 0.0 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 2.7530972181516664e-08 - syst_JES_EtaIntercalibration_Stat201: 8.957138438139715e-07 - syst_JES_EtaIntercalibration_Stat202: 1.0087861059213692e-05 - syst_JES_EtaIntercalibration_Stat203: 7.714631212831889e-06 - syst_JES_EtaIntercalibration_Stat204: 9.653186973740847e-07 - syst_JES_EtaIntercalibration_Stat205: 5.69942496983687e-07 - syst_JES_EtaIntercalibration_Stat206: 8.063338685060922e-06 - syst_JES_EtaIntercalibration_Stat207: 8.243670587183842e-06 - syst_JES_EtaIntercalibration_Stat208: 1.2578590809387195e-06 - syst_JES_EtaIntercalibration_Stat209: 9.658781298400066e-09 + syst_JES_EtaIntercalibration_Stat200: 2.75309722e-08 + syst_JES_EtaIntercalibration_Stat201: 8.95713844e-07 + syst_JES_EtaIntercalibration_Stat202: 1.00878611e-05 + syst_JES_EtaIntercalibration_Stat203: 7.71463121e-06 + syst_JES_EtaIntercalibration_Stat204: 9.65318697e-07 + syst_JES_EtaIntercalibration_Stat205: 5.69942497e-07 + syst_JES_EtaIntercalibration_Stat206: 8.06333869e-06 + syst_JES_EtaIntercalibration_Stat207: 8.24367059e-06 + syst_JES_EtaIntercalibration_Stat208: 1.25785908e-06 + syst_JES_EtaIntercalibration_Stat209: 9.65878130e-09 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 syst_JES_EtaIntercalibration_Stat211: 0.0 syst_JES_EtaIntercalibration_Stat212: 0.0 - syst_JES_EtaIntercalibration_Stat213: 2.7530776348477985e-08 - syst_JES_EtaIntercalibration_Stat214: 6.711866804399504e-07 - syst_JES_EtaIntercalibration_Stat215: 1.1519051045984648e-05 - syst_JES_EtaIntercalibration_Stat216: 8.850350614523698e-06 - syst_JES_EtaIntercalibration_Stat217: 9.30513131288323e-07 - syst_JES_EtaIntercalibration_Stat218: 5.209119983260128e-07 - syst_JES_EtaIntercalibration_Stat219: 9.713747101402219e-06 + syst_JES_EtaIntercalibration_Stat213: 2.75307763e-08 + syst_JES_EtaIntercalibration_Stat214: 6.71186680e-07 + syst_JES_EtaIntercalibration_Stat215: 1.15190510e-05 + syst_JES_EtaIntercalibration_Stat216: 8.85035061e-06 + syst_JES_EtaIntercalibration_Stat217: 9.30513131e-07 + syst_JES_EtaIntercalibration_Stat218: 5.20911998e-07 + syst_JES_EtaIntercalibration_Stat219: 9.71374710e-06 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 9.598150902647864e-06 - syst_JES_EtaIntercalibration_Stat221: 1.184110504767186e-06 - syst_JES_EtaIntercalibration_Stat222: 9.637932060079072e-09 + syst_JES_EtaIntercalibration_Stat220: 9.59815090e-06 + syst_JES_EtaIntercalibration_Stat221: 1.18411050e-06 + syst_JES_EtaIntercalibration_Stat222: 9.63793206e-09 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 - syst_JES_EtaIntercalibration_Stat225: 5.1283440797200806e-08 - syst_JES_EtaIntercalibration_Stat226: 2.360183467444851e-06 - syst_JES_EtaIntercalibration_Stat227: 2.7998108418248543e-05 - syst_JES_EtaIntercalibration_Stat228: 2.3196747077984876e-05 - syst_JES_EtaIntercalibration_Stat229: 1.7926550142177384e-06 + syst_JES_EtaIntercalibration_Stat225: 5.12834408e-08 + syst_JES_EtaIntercalibration_Stat226: 2.36018347e-06 + syst_JES_EtaIntercalibration_Stat227: 2.79981084e-05 + syst_JES_EtaIntercalibration_Stat228: 2.31967471e-05 + syst_JES_EtaIntercalibration_Stat229: 1.79265501e-06 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 2.58119056009044e-06 - syst_JES_EtaIntercalibration_Stat231: 2.9295144222208567e-05 - syst_JES_EtaIntercalibration_Stat232: 3.0201751604832457e-05 - syst_JES_EtaIntercalibration_Stat233: 2.8378659235418433e-06 - syst_JES_EtaIntercalibration_Stat234: 8.47801632164034e-08 + syst_JES_EtaIntercalibration_Stat230: 2.58119056e-06 + syst_JES_EtaIntercalibration_Stat231: 2.92951442e-05 + syst_JES_EtaIntercalibration_Stat232: 3.02017516e-05 + syst_JES_EtaIntercalibration_Stat233: 2.83786592e-06 + syst_JES_EtaIntercalibration_Stat234: 8.47801632e-08 syst_JES_EtaIntercalibration_Stat235: 0.0 - syst_JES_EtaIntercalibration_Stat236: 2.7530947586307305e-08 - syst_JES_EtaIntercalibration_Stat237: 8.533369850182282e-07 - syst_JES_EtaIntercalibration_Stat238: 6.596467747969363e-06 - syst_JES_EtaIntercalibration_Stat239: 2.837961944776568e-06 + syst_JES_EtaIntercalibration_Stat236: 2.75309476e-08 + syst_JES_EtaIntercalibration_Stat237: 8.53336985e-07 + syst_JES_EtaIntercalibration_Stat238: 6.59646775e-06 + syst_JES_EtaIntercalibration_Stat239: 2.83796194e-06 syst_JES_EtaIntercalibration_Stat24: 0.0 - syst_JES_EtaIntercalibration_Stat240: 2.301093381416756e-07 - syst_JES_EtaIntercalibration_Stat241: 6.724294871583191e-08 - syst_JES_EtaIntercalibration_Stat242: 2.639870593419306e-06 - syst_JES_EtaIntercalibration_Stat243: 5.129356570760118e-06 - syst_JES_EtaIntercalibration_Stat244: 5.672527016242408e-07 - syst_JES_EtaIntercalibration_Stat245: 4.732828831681957e-10 + syst_JES_EtaIntercalibration_Stat240: 2.30109338e-07 + syst_JES_EtaIntercalibration_Stat241: 6.72429487e-08 + syst_JES_EtaIntercalibration_Stat242: 2.63987059e-06 + syst_JES_EtaIntercalibration_Stat243: 5.12935657e-06 + syst_JES_EtaIntercalibration_Stat244: 5.67252702e-07 + syst_JES_EtaIntercalibration_Stat245: 4.73282883e-10 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 syst_JES_EtaIntercalibration_Stat27: 0.0 - syst_JES_EtaIntercalibration_Stat28: 3.1220215806429013e-22 - syst_JES_EtaIntercalibration_Stat29: 2.694478071909289e-20 + syst_JES_EtaIntercalibration_Stat28: 3.12202158e-22 + syst_JES_EtaIntercalibration_Stat29: 2.69447807e-20 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 2.914128632627599e-19 - syst_JES_EtaIntercalibration_Stat31: 2.215781126375076e-19 - syst_JES_EtaIntercalibration_Stat32: 1.2301945730249341e-21 - syst_JES_EtaIntercalibration_Stat33: 2.1776166604799843e-20 - syst_JES_EtaIntercalibration_Stat34: 7.409713354986868e-08 - syst_JES_EtaIntercalibration_Stat35: 3.7681080533587204e-15 - syst_JES_EtaIntercalibration_Stat36: 1.0540222308850986e-19 - syst_JES_EtaIntercalibration_Stat37: 2.2785128373568583e-22 + syst_JES_EtaIntercalibration_Stat30: 2.91412863e-19 + syst_JES_EtaIntercalibration_Stat31: 2.21578113e-19 + syst_JES_EtaIntercalibration_Stat32: 1.23019457e-21 + syst_JES_EtaIntercalibration_Stat33: 2.17761666e-20 + syst_JES_EtaIntercalibration_Stat34: 7.40971335e-08 + syst_JES_EtaIntercalibration_Stat35: 3.76810805e-15 + syst_JES_EtaIntercalibration_Stat36: 1.05402223e-19 + syst_JES_EtaIntercalibration_Stat37: 2.27851284e-22 syst_JES_EtaIntercalibration_Stat38: 0.0 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 @@ -21100,20 +21100,20 @@ bins: syst_JES_EtaIntercalibration_Stat48: 0.0 syst_JES_EtaIntercalibration_Stat49: 0.0 syst_JES_EtaIntercalibration_Stat5: 0.0 - syst_JES_EtaIntercalibration_Stat50: 3.16272477462077e-22 - syst_JES_EtaIntercalibration_Stat51: 4.228282661731592e-20 - syst_JES_EtaIntercalibration_Stat52: 7.51445027929522e-18 - syst_JES_EtaIntercalibration_Stat53: 1.567363253205842e-18 - syst_JES_EtaIntercalibration_Stat54: 1.4662484202890042e-20 - syst_JES_EtaIntercalibration_Stat55: 4.7164095045993416e-18 - syst_JES_EtaIntercalibration_Stat56: 7.41577553258862e-08 - syst_JES_EtaIntercalibration_Stat57: 5.26456843040581e-10 - syst_JES_EtaIntercalibration_Stat58: 1.190232106565774e-19 - syst_JES_EtaIntercalibration_Stat59: 7.4921947385262215e-22 + syst_JES_EtaIntercalibration_Stat50: 3.16272477e-22 + syst_JES_EtaIntercalibration_Stat51: 4.22828266e-20 + syst_JES_EtaIntercalibration_Stat52: 7.51445028e-18 + syst_JES_EtaIntercalibration_Stat53: 1.56736325e-18 + syst_JES_EtaIntercalibration_Stat54: 1.46624842e-20 + syst_JES_EtaIntercalibration_Stat55: 4.71640950e-18 + syst_JES_EtaIntercalibration_Stat56: 7.41577553e-08 + syst_JES_EtaIntercalibration_Stat57: 5.26456843e-10 + syst_JES_EtaIntercalibration_Stat58: 1.19023211e-19 + syst_JES_EtaIntercalibration_Stat59: 7.49219474e-22 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 1.1505147489276269e-20 - syst_JES_EtaIntercalibration_Stat62: 1.1505147489276269e-20 + syst_JES_EtaIntercalibration_Stat61: 1.15051475e-20 + syst_JES_EtaIntercalibration_Stat62: 1.15051475e-20 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 @@ -21121,218 +21121,218 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 3.1220215806429013e-22 + syst_JES_EtaIntercalibration_Stat7: 3.12202158e-22 syst_JES_EtaIntercalibration_Stat70: 0.0 syst_JES_EtaIntercalibration_Stat71: 0.0 - syst_JES_EtaIntercalibration_Stat72: 6.540223849380081e-22 - syst_JES_EtaIntercalibration_Stat73: 2.1140654532617955e-17 - syst_JES_EtaIntercalibration_Stat74: 2.440476305499641e-08 - syst_JES_EtaIntercalibration_Stat75: 3.8754637076187906e-08 - syst_JES_EtaIntercalibration_Stat76: 5.646413640533254e-19 - syst_JES_EtaIntercalibration_Stat77: 3.9865498074776384e-18 - syst_JES_EtaIntercalibration_Stat78: 7.142977504104198e-08 - syst_JES_EtaIntercalibration_Stat79: 1.0465917029162632e-07 - syst_JES_EtaIntercalibration_Stat8: 9.194305520266336e-21 - syst_JES_EtaIntercalibration_Stat80: 1.007658144747017e-18 - syst_JES_EtaIntercalibration_Stat81: 1.6160034034617624e-21 - syst_JES_EtaIntercalibration_Stat82: 1.1505147489276269e-20 - syst_JES_EtaIntercalibration_Stat83: 1.1505147489276269e-20 - syst_JES_EtaIntercalibration_Stat84: 1.1505147489276269e-20 + syst_JES_EtaIntercalibration_Stat72: 6.54022385e-22 + syst_JES_EtaIntercalibration_Stat73: 2.11406545e-17 + syst_JES_EtaIntercalibration_Stat74: 2.44047631e-08 + syst_JES_EtaIntercalibration_Stat75: 3.87546371e-08 + syst_JES_EtaIntercalibration_Stat76: 5.64641364e-19 + syst_JES_EtaIntercalibration_Stat77: 3.98654981e-18 + syst_JES_EtaIntercalibration_Stat78: 7.14297750e-08 + syst_JES_EtaIntercalibration_Stat79: 1.04659170e-07 + syst_JES_EtaIntercalibration_Stat8: 9.19430552e-21 + syst_JES_EtaIntercalibration_Stat80: 1.00765814e-18 + syst_JES_EtaIntercalibration_Stat81: 1.61600340e-21 + syst_JES_EtaIntercalibration_Stat82: 1.15051475e-20 + syst_JES_EtaIntercalibration_Stat83: 1.15051475e-20 + syst_JES_EtaIntercalibration_Stat84: 1.15051475e-20 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 syst_JES_EtaIntercalibration_Stat89: 0.0 - syst_JES_EtaIntercalibration_Stat9: 7.354978093101297e-21 + syst_JES_EtaIntercalibration_Stat9: 7.35497809e-21 syst_JES_EtaIntercalibration_Stat90: 0.0 syst_JES_EtaIntercalibration_Stat91: 0.0 syst_JES_EtaIntercalibration_Stat92: 0.0 - syst_JES_EtaIntercalibration_Stat93: 1.8013328398716323e-22 - syst_JES_EtaIntercalibration_Stat94: 2.988299715139029e-17 - syst_JES_EtaIntercalibration_Stat95: 2.4404762160054584e-08 - syst_JES_EtaIntercalibration_Stat96: 5.228315790003508e-08 - syst_JES_EtaIntercalibration_Stat97: 1.0461361272798106e-17 - syst_JES_EtaIntercalibration_Stat98: 2.3688150518772038e-18 - syst_JES_EtaIntercalibration_Stat99: 1.984064499253239e-09 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.00036597377979849863 - syst_JES_Flavour_Comp: 0.000942945183984732 - syst_JES_Flavour_Response: 3.129384780991305e-05 - syst_JES_Gjet_Generator: 0.0010905954703738687 - syst_JES_Gjet_OOC: 0.0009113075551096896 - syst_JES_Gjet_Purity: 0.0001582507740897339 - syst_JES_Gjet_Stat1: 4.5697583087073655e-06 - syst_JES_Gjet_Stat10: 1.72264099568076e-05 - syst_JES_Gjet_Stat11: 1.7927782908101047e-05 - syst_JES_Gjet_Stat12: 5.4622311375480995e-05 - syst_JES_Gjet_Stat13: 0.00017685318063297587 - syst_JES_Gjet_Stat14: 0.0004815522894764389 - syst_JES_Gjet_Stat15: 0.0006871163129339894 - syst_JES_Gjet_Stat2: 3.863552866210064e-06 - syst_JES_Gjet_Stat3: 5.252586049509327e-06 - syst_JES_Gjet_Stat4: 2.6476126510499984e-06 - syst_JES_Gjet_Stat5: 4.265194339065923e-06 - syst_JES_Gjet_Stat6: 1.4665383561298353e-05 - syst_JES_Gjet_Stat7: 1.1787945908851125e-05 - syst_JES_Gjet_Stat8: 7.682082058270401e-06 - syst_JES_Gjet_Stat9: 1.0992646542120784e-05 - syst_JES_Gjet_Veto: 0.0009179758970147311 - syst_JES_Gjet_dPhi: 9.676718180767692e-05 - syst_JES_LArESZee: 0.0016350690352397968 - syst_JES_LArEsmear: 0.00014740434186278235 - syst_JES_LAr_JVT: 0.00018536134305728363 - syst_JES_MJB_Alpha: 1.2984074861152026e-05 - syst_JES_MJB_Asym: 0.0002011689029149386 - syst_JES_MJB_Beta: 1.1952230869172499e-05 - syst_JES_MJB_Fragmentation: 9.243584153346579e-05 - syst_JES_MJB_Stat1: 7.92524169158266e-07 - syst_JES_MJB_Stat10: 1.8825785508179996e-05 - syst_JES_MJB_Stat11: 2.13040348291116e-05 - syst_JES_MJB_Stat12: 3.20324003939761e-05 - syst_JES_MJB_Stat13: 3.7715000662866227e-05 - syst_JES_MJB_Stat14: 2.812336528582595e-05 - syst_JES_MJB_Stat15: 3.4448821097390255e-05 - syst_JES_MJB_Stat16: 2.9010716554404518e-05 - syst_JES_MJB_Stat2: 1.1766590751785327e-06 - syst_JES_MJB_Stat3: 2.346887460020186e-06 - syst_JES_MJB_Stat4: 1.5836239294731563e-06 - syst_JES_MJB_Stat5: 2.2365360426337867e-06 - syst_JES_MJB_Stat6: 3.0243685489701814e-06 - syst_JES_MJB_Stat7: 4.318716331272523e-06 - syst_JES_MJB_Stat8: 6.912906841553704e-06 - syst_JES_MJB_Stat9: 1.0758065474331341e-05 - syst_JES_MJB_Threshold: 0.00014510006891797124 - syst_JES_Pileup_MuOffset: 0.00022270363715036178 - syst_JES_Pileup_NPVOffset: 0.00023413348756638806 - syst_JES_Pileup_Pt_term: 0.000137981223632058 - syst_JES_Pileup_Rho_topology: 0.00029424907816338186 - syst_JES_PunchThrough_MC15: 0.00025637536445610374 - syst_JES_SingleParticle_HighPt: 2.786160261004381e-09 - syst_JES_Zjet_MC: 0.00042085433049928334 - syst_JES_Zjet_MuScale: 3.3434549122128145e-05 - syst_JES_Zjet_MuSmearID: 7.736524461927333e-06 - syst_JES_Zjet_MuSmearMS: 0.00011479552288743668 - syst_JES_Zjet_OOC: 0.0002547582530557155 - syst_JES_Zjet_Stat1: 2.239245129502351e-05 - syst_JES_Zjet_Stat10: 2.0973308632640682e-05 - syst_JES_Zjet_Stat11: 2.96802729097965e-05 - syst_JES_Zjet_Stat12: 7.550492831597153e-05 - syst_JES_Zjet_Stat13: 0.00011819081309475792 - syst_JES_Zjet_Stat2: 6.029708486320048e-07 - syst_JES_Zjet_Stat3: 1.4179853692827724e-05 - syst_JES_Zjet_Stat4: 1.2340357571804797e-05 - syst_JES_Zjet_Stat5: 1.2714058783488457e-05 - syst_JES_Zjet_Stat6: 1.1097654380543664e-05 - syst_JES_Zjet_Stat7: 1.2438162404471168e-05 - syst_JES_Zjet_Stat8: 1.0513341559656473e-05 - syst_JES_Zjet_Stat9: 1.3239916238405741e-05 - syst_JES_Zjet_Veto: 5.352634001125054e-05 - syst_JES_Zjet_dPhi: 5.115792289567668e-05 - syst_PRW: 3.309e-05 + syst_JES_EtaIntercalibration_Stat93: 1.80133284e-22 + syst_JES_EtaIntercalibration_Stat94: 2.98829972e-17 + syst_JES_EtaIntercalibration_Stat95: 2.44047622e-08 + syst_JES_EtaIntercalibration_Stat96: 5.22831579e-08 + syst_JES_EtaIntercalibration_Stat97: 1.04613613e-17 + syst_JES_EtaIntercalibration_Stat98: 2.36881505e-18 + syst_JES_EtaIntercalibration_Stat99: 1.98406450e-09 + syst_JES_EtaIntercalibration_TotalStat_MJB: 3.65973780e-04 + syst_JES_Flavour_Comp: 9.42945184e-04 + syst_JES_Flavour_Response: 3.12938478e-05 + syst_JES_Gjet_Generator: 1.09059547e-03 + syst_JES_Gjet_OOC: 9.11307555e-04 + syst_JES_Gjet_Purity: 1.58250774e-04 + syst_JES_Gjet_Stat1: 4.56975831e-06 + syst_JES_Gjet_Stat10: 1.72264100e-05 + syst_JES_Gjet_Stat11: 1.79277829e-05 + syst_JES_Gjet_Stat12: 5.46223114e-05 + syst_JES_Gjet_Stat13: 1.76853181e-04 + syst_JES_Gjet_Stat14: 4.81552289e-04 + syst_JES_Gjet_Stat15: 6.87116313e-04 + syst_JES_Gjet_Stat2: 3.86355287e-06 + syst_JES_Gjet_Stat3: 5.25258605e-06 + syst_JES_Gjet_Stat4: 2.64761265e-06 + syst_JES_Gjet_Stat5: 4.26519434e-06 + syst_JES_Gjet_Stat6: 1.46653836e-05 + syst_JES_Gjet_Stat7: 1.17879459e-05 + syst_JES_Gjet_Stat8: 7.68208206e-06 + syst_JES_Gjet_Stat9: 1.09926465e-05 + syst_JES_Gjet_Veto: 9.17975897e-04 + syst_JES_Gjet_dPhi: 9.67671818e-05 + syst_JES_LArESZee: 1.63506904e-03 + syst_JES_LArEsmear: 1.47404342e-04 + syst_JES_LAr_JVT: 1.85361343e-04 + syst_JES_MJB_Alpha: 1.29840749e-05 + syst_JES_MJB_Asym: 2.01168903e-04 + syst_JES_MJB_Beta: 1.19522309e-05 + syst_JES_MJB_Fragmentation: 9.24358415e-05 + syst_JES_MJB_Stat1: 7.92524169e-07 + syst_JES_MJB_Stat10: 1.88257855e-05 + syst_JES_MJB_Stat11: 2.13040348e-05 + syst_JES_MJB_Stat12: 3.20324004e-05 + syst_JES_MJB_Stat13: 3.77150007e-05 + syst_JES_MJB_Stat14: 2.81233653e-05 + syst_JES_MJB_Stat15: 3.44488211e-05 + syst_JES_MJB_Stat16: 2.90107166e-05 + syst_JES_MJB_Stat2: 1.17665908e-06 + syst_JES_MJB_Stat3: 2.34688746e-06 + syst_JES_MJB_Stat4: 1.58362393e-06 + syst_JES_MJB_Stat5: 2.23653604e-06 + syst_JES_MJB_Stat6: 3.02436855e-06 + syst_JES_MJB_Stat7: 4.31871633e-06 + syst_JES_MJB_Stat8: 6.91290684e-06 + syst_JES_MJB_Stat9: 1.07580655e-05 + syst_JES_MJB_Threshold: 1.45100069e-04 + syst_JES_Pileup_MuOffset: 2.22703637e-04 + syst_JES_Pileup_NPVOffset: 2.34133488e-04 + syst_JES_Pileup_Pt_term: 1.37981224e-04 + syst_JES_Pileup_Rho_topology: 2.94249078e-04 + syst_JES_PunchThrough_MC15: 2.56375364e-04 + syst_JES_SingleParticle_HighPt: 2.78616026e-09 + syst_JES_Zjet_MC: 4.20854330e-04 + syst_JES_Zjet_MuScale: 3.34345491e-05 + syst_JES_Zjet_MuSmearID: 7.73652446e-06 + syst_JES_Zjet_MuSmearMS: 1.14795523e-04 + syst_JES_Zjet_OOC: 2.54758253e-04 + syst_JES_Zjet_Stat1: 2.23924513e-05 + syst_JES_Zjet_Stat10: 2.09733086e-05 + syst_JES_Zjet_Stat11: 2.96802729e-05 + syst_JES_Zjet_Stat12: 7.55049283e-05 + syst_JES_Zjet_Stat13: 1.18190813e-04 + syst_JES_Zjet_Stat2: 6.02970849e-07 + syst_JES_Zjet_Stat3: 1.41798537e-05 + syst_JES_Zjet_Stat4: 1.23403576e-05 + syst_JES_Zjet_Stat5: 1.27140588e-05 + syst_JES_Zjet_Stat6: 1.10976544e-05 + syst_JES_Zjet_Stat7: 1.24381624e-05 + syst_JES_Zjet_Stat8: 1.05133416e-05 + syst_JES_Zjet_Stat9: 1.32399162e-05 + syst_JES_Zjet_Veto: 5.35263400e-05 + syst_JES_Zjet_dPhi: 5.11579229e-05 + syst_PRW: 3.30900000e-05 syst_Unfolding_bias: 3.44e-05 - syst_cleaning: 0.00028180466639145637 - syst_lumi: 0.0008995 -- stat: 0.00033788 + syst_cleaning: 2.81804666e-04 + syst_lumi: 8.99500000e-04 +- stat: 3.37880000e-04 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 8.641450514815206e-05 - syst_JER_NP1: 8.364406075747399e-06 - syst_JER_NP2: 4.5712575950169344e-05 - syst_JER_NP3: 6.714486335528579e-06 - syst_JER_NP4: 1.7101177591031556e-05 - syst_JER_NP5: 2.286696744214239e-05 - syst_JER_NP6: 1.6967769446807083e-05 - syst_JER_NP7: 5.495280486088092e-06 - syst_JER_NP8: 2.041414215684803e-05 - syst_JES_EtaIntercalibration_Modelling: 0.0006231893191478814 - syst_JES_EtaIntercalibration_NonClosure: 1.4185496113989106e-16 + syst_JER_NP0: 8.64145051e-05 + syst_JER_NP1: 8.36440608e-06 + syst_JER_NP2: 4.57125760e-05 + syst_JER_NP3: 6.71448634e-06 + syst_JER_NP4: 1.71011776e-05 + syst_JER_NP5: 2.28669674e-05 + syst_JER_NP6: 1.69677694e-05 + syst_JER_NP7: 5.49528049e-06 + syst_JER_NP8: 2.04141422e-05 + syst_JES_EtaIntercalibration_Modelling: 6.23189319e-04 + syst_JES_EtaIntercalibration_NonClosure: 1.41854961e-16 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 5.686322795478008e-08 - syst_JES_EtaIntercalibration_Stat101: 2.751517887912052e-19 - syst_JES_EtaIntercalibration_Stat102: 1.5914210526680236e-21 - syst_JES_EtaIntercalibration_Stat103: 4.117084769591221e-21 - syst_JES_EtaIntercalibration_Stat104: 4.117084769591221e-21 - syst_JES_EtaIntercalibration_Stat105: 4.117084769591221e-21 + syst_JES_EtaIntercalibration_Stat100: 5.68632280e-08 + syst_JES_EtaIntercalibration_Stat101: 2.75151789e-19 + syst_JES_EtaIntercalibration_Stat102: 1.59142105e-21 + syst_JES_EtaIntercalibration_Stat103: 4.11708477e-21 + syst_JES_EtaIntercalibration_Stat104: 4.11708477e-21 + syst_JES_EtaIntercalibration_Stat105: 4.11708477e-21 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 3.6710816866422355e-18 - syst_JES_EtaIntercalibration_Stat111: 3.6710816866422355e-18 + syst_JES_EtaIntercalibration_Stat110: 3.67108169e-18 + syst_JES_EtaIntercalibration_Stat111: 3.67108169e-18 syst_JES_EtaIntercalibration_Stat112: 0.0 - syst_JES_EtaIntercalibration_Stat113: 3.616517829003474e-20 - syst_JES_EtaIntercalibration_Stat114: 3.114230378779394e-08 - syst_JES_EtaIntercalibration_Stat115: 1.4732464788690315e-07 - syst_JES_EtaIntercalibration_Stat116: 3.766755765907846e-08 - syst_JES_EtaIntercalibration_Stat117: 2.367434212391128e-15 - syst_JES_EtaIntercalibration_Stat118: 4.412399427385785e-08 - syst_JES_EtaIntercalibration_Stat119: 4.868469240942167e-08 - syst_JES_EtaIntercalibration_Stat12: 1.1268480552740905e-18 - syst_JES_EtaIntercalibration_Stat120: 1.2821636868980497e-07 - syst_JES_EtaIntercalibration_Stat121: 9.465691721554214e-15 - syst_JES_EtaIntercalibration_Stat122: 3.131165602455418e-20 - syst_JES_EtaIntercalibration_Stat123: 4.117084769591221e-21 - syst_JES_EtaIntercalibration_Stat124: 4.117084769591221e-21 - syst_JES_EtaIntercalibration_Stat125: 4.117084769591221e-21 + syst_JES_EtaIntercalibration_Stat113: 3.61651783e-20 + syst_JES_EtaIntercalibration_Stat114: 3.11423038e-08 + syst_JES_EtaIntercalibration_Stat115: 1.47324648e-07 + syst_JES_EtaIntercalibration_Stat116: 3.76675577e-08 + syst_JES_EtaIntercalibration_Stat117: 2.36743421e-15 + syst_JES_EtaIntercalibration_Stat118: 4.41239943e-08 + syst_JES_EtaIntercalibration_Stat119: 4.86846924e-08 + syst_JES_EtaIntercalibration_Stat12: 1.12684806e-18 + syst_JES_EtaIntercalibration_Stat120: 1.28216369e-07 + syst_JES_EtaIntercalibration_Stat121: 9.46569172e-15 + syst_JES_EtaIntercalibration_Stat122: 3.13116560e-20 + syst_JES_EtaIntercalibration_Stat123: 4.11708477e-21 + syst_JES_EtaIntercalibration_Stat124: 4.11708477e-21 + syst_JES_EtaIntercalibration_Stat125: 4.11708477e-21 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 8.263614402911114e-16 - syst_JES_EtaIntercalibration_Stat129: 8.251450054025353e-16 - syst_JES_EtaIntercalibration_Stat13: 1.627395116455653e-18 - syst_JES_EtaIntercalibration_Stat130: 3.6710816866422355e-18 - syst_JES_EtaIntercalibration_Stat131: 1.9329687012468671e-22 - syst_JES_EtaIntercalibration_Stat132: 1.7143973658165572e-16 - syst_JES_EtaIntercalibration_Stat133: 4.117084694997572e-08 - syst_JES_EtaIntercalibration_Stat134: 1.8527737874603043e-07 - syst_JES_EtaIntercalibration_Stat135: 1.5528945069874548e-07 - syst_JES_EtaIntercalibration_Stat136: 2.259460360428483e-07 - syst_JES_EtaIntercalibration_Stat137: 4.469076190892252e-08 - syst_JES_EtaIntercalibration_Stat138: 4.3218478903705065e-07 - syst_JES_EtaIntercalibration_Stat139: 1.1525519771359554e-07 - syst_JES_EtaIntercalibration_Stat14: 4.894775582189648e-22 - syst_JES_EtaIntercalibration_Stat140: 3.1937818739975025e-09 - syst_JES_EtaIntercalibration_Stat141: 7.696368638695712e-16 + syst_JES_EtaIntercalibration_Stat128: 8.26361440e-16 + syst_JES_EtaIntercalibration_Stat129: 8.25145005e-16 + syst_JES_EtaIntercalibration_Stat13: 1.62739512e-18 + syst_JES_EtaIntercalibration_Stat130: 3.67108169e-18 + syst_JES_EtaIntercalibration_Stat131: 1.93296870e-22 + syst_JES_EtaIntercalibration_Stat132: 1.71439737e-16 + syst_JES_EtaIntercalibration_Stat133: 4.11708469e-08 + syst_JES_EtaIntercalibration_Stat134: 1.85277379e-07 + syst_JES_EtaIntercalibration_Stat135: 1.55289451e-07 + syst_JES_EtaIntercalibration_Stat136: 2.25946036e-07 + syst_JES_EtaIntercalibration_Stat137: 4.46907619e-08 + syst_JES_EtaIntercalibration_Stat138: 4.32184789e-07 + syst_JES_EtaIntercalibration_Stat139: 1.15255198e-07 + syst_JES_EtaIntercalibration_Stat14: 4.89477558e-22 + syst_JES_EtaIntercalibration_Stat140: 3.19378187e-09 + syst_JES_EtaIntercalibration_Stat141: 7.69636864e-16 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 4.117084769591221e-21 - syst_JES_EtaIntercalibration_Stat144: 4.117084769591221e-21 + syst_JES_EtaIntercalibration_Stat143: 4.11708477e-21 + syst_JES_EtaIntercalibration_Stat144: 4.11708477e-21 syst_JES_EtaIntercalibration_Stat145: 0.0 - syst_JES_EtaIntercalibration_Stat146: 8.263614402911114e-16 - syst_JES_EtaIntercalibration_Stat147: 8.251450054025353e-16 + syst_JES_EtaIntercalibration_Stat146: 8.26361440e-16 + syst_JES_EtaIntercalibration_Stat147: 8.25145005e-16 syst_JES_EtaIntercalibration_Stat148: 0.0 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 1.7691546908905395e-19 - syst_JES_EtaIntercalibration_Stat151: 4.1153524111426535e-08 - syst_JES_EtaIntercalibration_Stat152: 1.8415340425851483e-07 - syst_JES_EtaIntercalibration_Stat153: 2.2178976548749943e-07 - syst_JES_EtaIntercalibration_Stat154: 2.8968582934174683e-08 - syst_JES_EtaIntercalibration_Stat155: 9.089791017949752e-08 - syst_JES_EtaIntercalibration_Stat156: 4.3898617290297426e-07 - syst_JES_EtaIntercalibration_Stat157: 2.8693903533677675e-07 - syst_JES_EtaIntercalibration_Stat158: 7.102398943314856e-08 - syst_JES_EtaIntercalibration_Stat159: 7.727405810053138e-16 + syst_JES_EtaIntercalibration_Stat150: 1.76915469e-19 + syst_JES_EtaIntercalibration_Stat151: 4.11535241e-08 + syst_JES_EtaIntercalibration_Stat152: 1.84153404e-07 + syst_JES_EtaIntercalibration_Stat153: 2.21789765e-07 + syst_JES_EtaIntercalibration_Stat154: 2.89685829e-08 + syst_JES_EtaIntercalibration_Stat155: 9.08979102e-08 + syst_JES_EtaIntercalibration_Stat156: 4.38986173e-07 + syst_JES_EtaIntercalibration_Stat157: 2.86939035e-07 + syst_JES_EtaIntercalibration_Stat158: 7.10239894e-08 + syst_JES_EtaIntercalibration_Stat159: 7.72740581e-16 syst_JES_EtaIntercalibration_Stat16: 0.0 syst_JES_EtaIntercalibration_Stat160: 0.0 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 - syst_JES_EtaIntercalibration_Stat164: 8.263614402911114e-16 + syst_JES_EtaIntercalibration_Stat164: 8.26361440e-16 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 - syst_JES_EtaIntercalibration_Stat168: 1.1702601281339122e-18 - syst_JES_EtaIntercalibration_Stat169: 1.7975666795699124e-07 + syst_JES_EtaIntercalibration_Stat168: 1.17026013e-18 + syst_JES_EtaIntercalibration_Stat169: 1.79756668e-07 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 4.3077910812851633e-07 - syst_JES_EtaIntercalibration_Stat171: 6.178762558150297e-07 - syst_JES_EtaIntercalibration_Stat172: 1.038027845243084e-07 - syst_JES_EtaIntercalibration_Stat173: 7.404297046310337e-08 - syst_JES_EtaIntercalibration_Stat174: 3.2445588925923353e-07 - syst_JES_EtaIntercalibration_Stat175: 7.355545119160103e-07 - syst_JES_EtaIntercalibration_Stat176: 3.4602914452969346e-08 - syst_JES_EtaIntercalibration_Stat177: 6.348325139751429e-15 + syst_JES_EtaIntercalibration_Stat170: 4.30779108e-07 + syst_JES_EtaIntercalibration_Stat171: 6.17876256e-07 + syst_JES_EtaIntercalibration_Stat172: 1.03802785e-07 + syst_JES_EtaIntercalibration_Stat173: 7.40429705e-08 + syst_JES_EtaIntercalibration_Stat174: 3.24455889e-07 + syst_JES_EtaIntercalibration_Stat175: 7.35554512e-07 + syst_JES_EtaIntercalibration_Stat176: 3.46029145e-08 + syst_JES_EtaIntercalibration_Stat177: 6.34832514e-15 syst_JES_EtaIntercalibration_Stat178: 0.0 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 @@ -21341,17 +21341,17 @@ bins: syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 syst_JES_EtaIntercalibration_Stat184: 0.0 - syst_JES_EtaIntercalibration_Stat185: 4.5232474978676396e-08 - syst_JES_EtaIntercalibration_Stat186: 4.2972599767177226e-07 - syst_JES_EtaIntercalibration_Stat187: 2.8000022767847884e-06 - syst_JES_EtaIntercalibration_Stat188: 2.4769537742961617e-06 - syst_JES_EtaIntercalibration_Stat189: 2.8169658766126364e-07 + syst_JES_EtaIntercalibration_Stat185: 4.52324750e-08 + syst_JES_EtaIntercalibration_Stat186: 4.29725998e-07 + syst_JES_EtaIntercalibration_Stat187: 2.80000228e-06 + syst_JES_EtaIntercalibration_Stat188: 2.47695377e-06 + syst_JES_EtaIntercalibration_Stat189: 2.81696588e-07 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 1.8189490557736905e-07 - syst_JES_EtaIntercalibration_Stat191: 2.8275527846531883e-06 - syst_JES_EtaIntercalibration_Stat192: 3.5618614164506736e-06 - syst_JES_EtaIntercalibration_Stat193: 3.3894027128684487e-07 - syst_JES_EtaIntercalibration_Stat194: 6.1903495862511675e-15 + syst_JES_EtaIntercalibration_Stat190: 1.81894906e-07 + syst_JES_EtaIntercalibration_Stat191: 2.82755278e-06 + syst_JES_EtaIntercalibration_Stat192: 3.56186142e-06 + syst_JES_EtaIntercalibration_Stat193: 3.38940271e-07 + syst_JES_EtaIntercalibration_Stat194: 6.19034959e-15 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 syst_JES_EtaIntercalibration_Stat197: 0.0 @@ -21359,70 +21359,70 @@ bins: syst_JES_EtaIntercalibration_Stat199: 0.0 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 4.5232511484446053e-08 - syst_JES_EtaIntercalibration_Stat201: 5.074491797214771e-07 - syst_JES_EtaIntercalibration_Stat202: 6.231449490287152e-06 - syst_JES_EtaIntercalibration_Stat203: 5.314710152021462e-06 - syst_JES_EtaIntercalibration_Stat204: 5.902255281458097e-07 - syst_JES_EtaIntercalibration_Stat205: 2.4190082653176283e-07 - syst_JES_EtaIntercalibration_Stat206: 5.56644859852312e-06 - syst_JES_EtaIntercalibration_Stat207: 5.581495229774903e-06 - syst_JES_EtaIntercalibration_Stat208: 9.54929718618077e-07 - syst_JES_EtaIntercalibration_Stat209: 3.1800452761435335e-09 + syst_JES_EtaIntercalibration_Stat200: 4.52325115e-08 + syst_JES_EtaIntercalibration_Stat201: 5.07449180e-07 + syst_JES_EtaIntercalibration_Stat202: 6.23144949e-06 + syst_JES_EtaIntercalibration_Stat203: 5.31471015e-06 + syst_JES_EtaIntercalibration_Stat204: 5.90225528e-07 + syst_JES_EtaIntercalibration_Stat205: 2.41900827e-07 + syst_JES_EtaIntercalibration_Stat206: 5.56644860e-06 + syst_JES_EtaIntercalibration_Stat207: 5.58149523e-06 + syst_JES_EtaIntercalibration_Stat208: 9.54929719e-07 + syst_JES_EtaIntercalibration_Stat209: 3.18004528e-09 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 syst_JES_EtaIntercalibration_Stat211: 0.0 syst_JES_EtaIntercalibration_Stat212: 0.0 - syst_JES_EtaIntercalibration_Stat213: 4.52324750941458e-08 - syst_JES_EtaIntercalibration_Stat214: 4.447283524804777e-07 - syst_JES_EtaIntercalibration_Stat215: 7.147188748032334e-06 - syst_JES_EtaIntercalibration_Stat216: 6.08311153933577e-06 - syst_JES_EtaIntercalibration_Stat217: 6.235505171996893e-07 - syst_JES_EtaIntercalibration_Stat218: 3.4321555908787115e-07 - syst_JES_EtaIntercalibration_Stat219: 6.510195446374863e-06 + syst_JES_EtaIntercalibration_Stat213: 4.52324751e-08 + syst_JES_EtaIntercalibration_Stat214: 4.44728352e-07 + syst_JES_EtaIntercalibration_Stat215: 7.14718875e-06 + syst_JES_EtaIntercalibration_Stat216: 6.08311154e-06 + syst_JES_EtaIntercalibration_Stat217: 6.23550517e-07 + syst_JES_EtaIntercalibration_Stat218: 3.43215559e-07 + syst_JES_EtaIntercalibration_Stat219: 6.51019545e-06 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 6.364430139454749e-06 - syst_JES_EtaIntercalibration_Stat221: 6.523188330870113e-07 - syst_JES_EtaIntercalibration_Stat222: 3.175890129660502e-09 + syst_JES_EtaIntercalibration_Stat220: 6.36443014e-06 + syst_JES_EtaIntercalibration_Stat221: 6.52318833e-07 + syst_JES_EtaIntercalibration_Stat222: 3.17589013e-09 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 - syst_JES_EtaIntercalibration_Stat225: 3.1651551115229724e-08 - syst_JES_EtaIntercalibration_Stat226: 1.4611776483371211e-06 - syst_JES_EtaIntercalibration_Stat227: 1.8161987776672462e-05 - syst_JES_EtaIntercalibration_Stat228: 1.5377594090103953e-05 - syst_JES_EtaIntercalibration_Stat229: 1.1835728315148163e-06 + syst_JES_EtaIntercalibration_Stat225: 3.16515511e-08 + syst_JES_EtaIntercalibration_Stat226: 1.46117765e-06 + syst_JES_EtaIntercalibration_Stat227: 1.81619878e-05 + syst_JES_EtaIntercalibration_Stat228: 1.53775941e-05 + syst_JES_EtaIntercalibration_Stat229: 1.18357283e-06 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 1.7751271165750357e-06 - syst_JES_EtaIntercalibration_Stat231: 1.943235960968199e-05 - syst_JES_EtaIntercalibration_Stat232: 1.981474451008642e-05 - syst_JES_EtaIntercalibration_Stat233: 1.876383955910943e-06 - syst_JES_EtaIntercalibration_Stat234: 1.3771560940939122e-07 + syst_JES_EtaIntercalibration_Stat230: 1.77512712e-06 + syst_JES_EtaIntercalibration_Stat231: 1.94323596e-05 + syst_JES_EtaIntercalibration_Stat232: 1.98147445e-05 + syst_JES_EtaIntercalibration_Stat233: 1.87638396e-06 + syst_JES_EtaIntercalibration_Stat234: 1.37715609e-07 syst_JES_EtaIntercalibration_Stat235: 0.0 - syst_JES_EtaIntercalibration_Stat236: 4.5232506839661226e-08 - syst_JES_EtaIntercalibration_Stat237: 4.903058127332369e-07 - syst_JES_EtaIntercalibration_Stat238: 4.1029280702932145e-06 - syst_JES_EtaIntercalibration_Stat239: 1.9746257240297464e-06 + syst_JES_EtaIntercalibration_Stat236: 4.52325068e-08 + syst_JES_EtaIntercalibration_Stat237: 4.90305813e-07 + syst_JES_EtaIntercalibration_Stat238: 4.10292807e-06 + syst_JES_EtaIntercalibration_Stat239: 1.97462572e-06 syst_JES_EtaIntercalibration_Stat24: 0.0 - syst_JES_EtaIntercalibration_Stat240: 1.618563891231977e-07 - syst_JES_EtaIntercalibration_Stat241: 5.801338293876681e-08 - syst_JES_EtaIntercalibration_Stat242: 1.857372606667817e-06 - syst_JES_EtaIntercalibration_Stat243: 3.707076037795826e-06 - syst_JES_EtaIntercalibration_Stat244: 3.167579201851155e-07 - syst_JES_EtaIntercalibration_Stat245: 1.0303970254227253e-10 + syst_JES_EtaIntercalibration_Stat240: 1.61856389e-07 + syst_JES_EtaIntercalibration_Stat241: 5.80133829e-08 + syst_JES_EtaIntercalibration_Stat242: 1.85737261e-06 + syst_JES_EtaIntercalibration_Stat243: 3.70707604e-06 + syst_JES_EtaIntercalibration_Stat244: 3.16757920e-07 + syst_JES_EtaIntercalibration_Stat245: 1.03039703e-10 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 syst_JES_EtaIntercalibration_Stat27: 0.0 - syst_JES_EtaIntercalibration_Stat28: 1.1645443604689345e-22 - syst_JES_EtaIntercalibration_Stat29: 8.160997288934729e-21 + syst_JES_EtaIntercalibration_Stat28: 1.16454436e-22 + syst_JES_EtaIntercalibration_Stat29: 8.16099729e-21 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 7.606731016014697e-20 - syst_JES_EtaIntercalibration_Stat31: 6.086774761727265e-20 - syst_JES_EtaIntercalibration_Stat32: 4.416290276634905e-22 - syst_JES_EtaIntercalibration_Stat33: 7.404655206017361e-21 - syst_JES_EtaIntercalibration_Stat34: 4.7856563813634993e-08 - syst_JES_EtaIntercalibration_Stat35: 7.471288255797468e-16 - syst_JES_EtaIntercalibration_Stat36: 2.9140537379224844e-20 - syst_JES_EtaIntercalibration_Stat37: 8.500039338144266e-23 + syst_JES_EtaIntercalibration_Stat30: 7.60673102e-20 + syst_JES_EtaIntercalibration_Stat31: 6.08677476e-20 + syst_JES_EtaIntercalibration_Stat32: 4.41629028e-22 + syst_JES_EtaIntercalibration_Stat33: 7.40465521e-21 + syst_JES_EtaIntercalibration_Stat34: 4.78565638e-08 + syst_JES_EtaIntercalibration_Stat35: 7.47128826e-16 + syst_JES_EtaIntercalibration_Stat36: 2.91405374e-20 + syst_JES_EtaIntercalibration_Stat37: 8.50003934e-23 syst_JES_EtaIntercalibration_Stat38: 0.0 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 @@ -21437,20 +21437,20 @@ bins: syst_JES_EtaIntercalibration_Stat48: 0.0 syst_JES_EtaIntercalibration_Stat49: 0.0 syst_JES_EtaIntercalibration_Stat5: 0.0 - syst_JES_EtaIntercalibration_Stat50: 1.179613202494784e-22 - syst_JES_EtaIntercalibration_Stat51: 1.1892297044726052e-20 - syst_JES_EtaIntercalibration_Stat52: 1.3041953381299903e-18 - syst_JES_EtaIntercalibration_Stat53: 3.829983081881694e-19 - syst_JES_EtaIntercalibration_Stat54: 4.077901022585026e-21 - syst_JES_EtaIntercalibration_Stat55: 1.1321516791821669e-18 - syst_JES_EtaIntercalibration_Stat56: 4.78912048292309e-08 - syst_JES_EtaIntercalibration_Stat57: 1.0676361180041853e-10 - syst_JES_EtaIntercalibration_Stat58: 3.1234586226649454e-20 - syst_JES_EtaIntercalibration_Stat59: 2.7471537429674375e-22 + syst_JES_EtaIntercalibration_Stat50: 1.17961320e-22 + syst_JES_EtaIntercalibration_Stat51: 1.18922970e-20 + syst_JES_EtaIntercalibration_Stat52: 1.30419534e-18 + syst_JES_EtaIntercalibration_Stat53: 3.82998308e-19 + syst_JES_EtaIntercalibration_Stat54: 4.07790102e-21 + syst_JES_EtaIntercalibration_Stat55: 1.13215168e-18 + syst_JES_EtaIntercalibration_Stat56: 4.78912048e-08 + syst_JES_EtaIntercalibration_Stat57: 1.06763612e-10 + syst_JES_EtaIntercalibration_Stat58: 3.12345862e-20 + syst_JES_EtaIntercalibration_Stat59: 2.74715374e-22 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 4.117084769591221e-21 - syst_JES_EtaIntercalibration_Stat62: 4.117084769591221e-21 + syst_JES_EtaIntercalibration_Stat61: 4.11708477e-21 + syst_JES_EtaIntercalibration_Stat62: 4.11708477e-21 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 @@ -21458,218 +21458,218 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 1.1645443604689345e-22 + syst_JES_EtaIntercalibration_Stat7: 1.16454436e-22 syst_JES_EtaIntercalibration_Stat70: 0.0 syst_JES_EtaIntercalibration_Stat71: 0.0 - syst_JES_EtaIntercalibration_Stat72: 4.707714094972209e-23 - syst_JES_EtaIntercalibration_Stat73: 4.801353716140896e-18 - syst_JES_EtaIntercalibration_Stat74: 2.0360226274092137e-08 - syst_JES_EtaIntercalibration_Stat75: 1.7623617019176925e-08 - syst_JES_EtaIntercalibration_Stat76: 1.2413184392008363e-19 - syst_JES_EtaIntercalibration_Stat77: 9.51473375980642e-19 - syst_JES_EtaIntercalibration_Stat78: 4.612451295232751e-08 - syst_JES_EtaIntercalibration_Stat79: 6.779246865899495e-08 - syst_JES_EtaIntercalibration_Stat8: 2.9301935409627805e-21 - syst_JES_EtaIntercalibration_Stat80: 2.6319745192535585e-19 - syst_JES_EtaIntercalibration_Stat81: 5.7807195702611285e-22 - syst_JES_EtaIntercalibration_Stat82: 4.117084769591221e-21 - syst_JES_EtaIntercalibration_Stat83: 4.117084769591221e-21 - syst_JES_EtaIntercalibration_Stat84: 4.117084769591221e-21 + syst_JES_EtaIntercalibration_Stat72: 4.70771409e-23 + syst_JES_EtaIntercalibration_Stat73: 4.80135372e-18 + syst_JES_EtaIntercalibration_Stat74: 2.03602263e-08 + syst_JES_EtaIntercalibration_Stat75: 1.76236170e-08 + syst_JES_EtaIntercalibration_Stat76: 1.24131844e-19 + syst_JES_EtaIntercalibration_Stat77: 9.51473376e-19 + syst_JES_EtaIntercalibration_Stat78: 4.61245130e-08 + syst_JES_EtaIntercalibration_Stat79: 6.77924687e-08 + syst_JES_EtaIntercalibration_Stat8: 2.93019354e-21 + syst_JES_EtaIntercalibration_Stat80: 2.63197452e-19 + syst_JES_EtaIntercalibration_Stat81: 5.78071957e-22 + syst_JES_EtaIntercalibration_Stat82: 4.11708477e-21 + syst_JES_EtaIntercalibration_Stat83: 4.11708477e-21 + syst_JES_EtaIntercalibration_Stat84: 4.11708477e-21 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 syst_JES_EtaIntercalibration_Stat89: 0.0 - syst_JES_EtaIntercalibration_Stat9: 2.339470185747192e-21 + syst_JES_EtaIntercalibration_Stat9: 2.33947019e-21 syst_JES_EtaIntercalibration_Stat90: 0.0 syst_JES_EtaIntercalibration_Stat91: 0.0 syst_JES_EtaIntercalibration_Stat92: 0.0 - syst_JES_EtaIntercalibration_Stat93: 1.0762963718233004e-22 - syst_JES_EtaIntercalibration_Stat94: 6.930993464684554e-18 - syst_JES_EtaIntercalibration_Stat95: 2.0351566155730035e-08 - syst_JES_EtaIntercalibration_Stat96: 3.145058981958844e-08 - syst_JES_EtaIntercalibration_Stat97: 2.435446573587686e-18 - syst_JES_EtaIntercalibration_Stat98: 5.842507573807671e-19 - syst_JES_EtaIntercalibration_Stat99: 1.0346405438448646e-08 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0002502291349943088 - syst_JES_Flavour_Comp: 0.0006482266791023029 - syst_JES_Flavour_Response: 3.457987384303187e-05 - syst_JES_Gjet_Generator: 0.0007255694797881179 - syst_JES_Gjet_OOC: 0.0006061972183209024 - syst_JES_Gjet_Purity: 0.00010579062151249514 - syst_JES_Gjet_Stat1: 3.468281851291789e-06 - syst_JES_Gjet_Stat10: 1.159547251085526e-05 - syst_JES_Gjet_Stat11: 1.2054600563685219e-05 - syst_JES_Gjet_Stat12: 3.435622323539071e-05 - syst_JES_Gjet_Stat13: 0.00011717739233742999 - syst_JES_Gjet_Stat14: 0.00031480622611377933 - syst_JES_Gjet_Stat15: 0.000483519875496344 - syst_JES_Gjet_Stat2: 2.7445766066918226e-06 - syst_JES_Gjet_Stat3: 3.92482544197828e-06 - syst_JES_Gjet_Stat4: 1.5422720252925551e-06 - syst_JES_Gjet_Stat5: 2.848119906183727e-06 - syst_JES_Gjet_Stat6: 1.1421596473348196e-05 - syst_JES_Gjet_Stat7: 7.398332109333834e-06 - syst_JES_Gjet_Stat8: 5.058611271880851e-06 - syst_JES_Gjet_Stat9: 7.4764290105638005e-06 - syst_JES_Gjet_Veto: 0.00061210032470176 - syst_JES_Gjet_dPhi: 6.610129404936035e-05 - syst_JES_LArESZee: 0.0010842589208763743 - syst_JES_LArEsmear: 9.965681349009713e-05 - syst_JES_LAr_JVT: 0.00012563841241833643 - syst_JES_MJB_Alpha: 1.0073277222433621e-05 - syst_JES_MJB_Asym: 0.00013954472643206553 - syst_JES_MJB_Beta: 7.84590969869014e-06 - syst_JES_MJB_Fragmentation: 5.9793850854414785e-05 - syst_JES_MJB_Stat1: 4.908691089027706e-07 - syst_JES_MJB_Stat10: 1.1731274270086777e-05 - syst_JES_MJB_Stat11: 1.4052793031991897e-05 - syst_JES_MJB_Stat12: 2.210929838325947e-05 - syst_JES_MJB_Stat13: 2.82251164745161e-05 - syst_JES_MJB_Stat14: 2.3073159731601566e-05 - syst_JES_MJB_Stat15: 4.110888575478542e-05 - syst_JES_MJB_Stat16: 2.0851918376974336e-05 - syst_JES_MJB_Stat2: 7.801439484479771e-07 - syst_JES_MJB_Stat3: 1.0976211220179758e-06 - syst_JES_MJB_Stat4: 9.039435878416306e-07 - syst_JES_MJB_Stat5: 1.1943405377027105e-06 - syst_JES_MJB_Stat6: 1.7278456781495273e-06 - syst_JES_MJB_Stat7: 2.6909114199467808e-06 - syst_JES_MJB_Stat8: 4.462067542070604e-06 - syst_JES_MJB_Stat9: 6.745956622303466e-06 - syst_JES_MJB_Threshold: 0.00010427046693575321 - syst_JES_Pileup_MuOffset: 0.00015041921419818683 - syst_JES_Pileup_NPVOffset: 0.0001586878303462493 - syst_JES_Pileup_Pt_term: 8.931012036717899e-05 - syst_JES_Pileup_Rho_topology: 0.0001933786699716388 - syst_JES_PunchThrough_MC15: 0.00019216326391899156 - syst_JES_SingleParticle_HighPt: 7.812370110920244e-09 - syst_JES_Zjet_MC: 0.00027880057388750116 - syst_JES_Zjet_MuScale: 2.142340309101241e-05 - syst_JES_Zjet_MuSmearID: 5.540175155173345e-06 - syst_JES_Zjet_MuSmearMS: 7.6435989396357e-05 - syst_JES_Zjet_OOC: 0.00017347422719239883 - syst_JES_Zjet_Stat1: 1.699413060441752e-05 - syst_JES_Zjet_Stat10: 1.3822882866826298e-05 - syst_JES_Zjet_Stat11: 1.965697013784169e-05 - syst_JES_Zjet_Stat12: 4.8421984676384344e-05 - syst_JES_Zjet_Stat13: 7.708591100194639e-05 - syst_JES_Zjet_Stat2: 3.683200058033774e-07 - syst_JES_Zjet_Stat3: 1.0863419489276848e-05 - syst_JES_Zjet_Stat4: 9.07521558972568e-06 - syst_JES_Zjet_Stat5: 9.745063096255457e-06 - syst_JES_Zjet_Stat6: 7.771801126508577e-06 - syst_JES_Zjet_Stat7: 9.175723772542416e-06 - syst_JES_Zjet_Stat8: 7.363178797231532e-06 - syst_JES_Zjet_Stat9: 8.797629837064072e-06 - syst_JES_Zjet_Veto: 3.5070025662950404e-05 - syst_JES_Zjet_dPhi: 3.343058629458957e-05 - syst_PRW: 2.142e-05 - syst_Unfolding_bias: 2.226e-05 - syst_cleaning: 0.00017840123317959436 - syst_lumi: 0.0005822 -- stat: 0.00025576 + syst_JES_EtaIntercalibration_Stat93: 1.07629637e-22 + syst_JES_EtaIntercalibration_Stat94: 6.93099346e-18 + syst_JES_EtaIntercalibration_Stat95: 2.03515662e-08 + syst_JES_EtaIntercalibration_Stat96: 3.14505898e-08 + syst_JES_EtaIntercalibration_Stat97: 2.43544657e-18 + syst_JES_EtaIntercalibration_Stat98: 5.84250757e-19 + syst_JES_EtaIntercalibration_Stat99: 1.03464054e-08 + syst_JES_EtaIntercalibration_TotalStat_MJB: 2.50229135e-04 + syst_JES_Flavour_Comp: 6.48226679e-04 + syst_JES_Flavour_Response: 3.45798738e-05 + syst_JES_Gjet_Generator: 7.25569480e-04 + syst_JES_Gjet_OOC: 6.06197218e-04 + syst_JES_Gjet_Purity: 1.05790622e-04 + syst_JES_Gjet_Stat1: 3.46828185e-06 + syst_JES_Gjet_Stat10: 1.15954725e-05 + syst_JES_Gjet_Stat11: 1.20546006e-05 + syst_JES_Gjet_Stat12: 3.43562232e-05 + syst_JES_Gjet_Stat13: 1.17177392e-04 + syst_JES_Gjet_Stat14: 3.14806226e-04 + syst_JES_Gjet_Stat15: 4.83519875e-04 + syst_JES_Gjet_Stat2: 2.74457661e-06 + syst_JES_Gjet_Stat3: 3.92482544e-06 + syst_JES_Gjet_Stat4: 1.54227203e-06 + syst_JES_Gjet_Stat5: 2.84811991e-06 + syst_JES_Gjet_Stat6: 1.14215965e-05 + syst_JES_Gjet_Stat7: 7.39833211e-06 + syst_JES_Gjet_Stat8: 5.05861127e-06 + syst_JES_Gjet_Stat9: 7.47642901e-06 + syst_JES_Gjet_Veto: 6.12100325e-04 + syst_JES_Gjet_dPhi: 6.61012940e-05 + syst_JES_LArESZee: 1.08425892e-03 + syst_JES_LArEsmear: 9.96568135e-05 + syst_JES_LAr_JVT: 1.25638412e-04 + syst_JES_MJB_Alpha: 1.00732772e-05 + syst_JES_MJB_Asym: 1.39544726e-04 + syst_JES_MJB_Beta: 7.84590970e-06 + syst_JES_MJB_Fragmentation: 5.97938509e-05 + syst_JES_MJB_Stat1: 4.90869109e-07 + syst_JES_MJB_Stat10: 1.17312743e-05 + syst_JES_MJB_Stat11: 1.40527930e-05 + syst_JES_MJB_Stat12: 2.21092984e-05 + syst_JES_MJB_Stat13: 2.82251165e-05 + syst_JES_MJB_Stat14: 2.30731597e-05 + syst_JES_MJB_Stat15: 4.11088858e-05 + syst_JES_MJB_Stat16: 2.08519184e-05 + syst_JES_MJB_Stat2: 7.80143948e-07 + syst_JES_MJB_Stat3: 1.09762112e-06 + syst_JES_MJB_Stat4: 9.03943588e-07 + syst_JES_MJB_Stat5: 1.19434054e-06 + syst_JES_MJB_Stat6: 1.72784568e-06 + syst_JES_MJB_Stat7: 2.69091142e-06 + syst_JES_MJB_Stat8: 4.46206754e-06 + syst_JES_MJB_Stat9: 6.74595662e-06 + syst_JES_MJB_Threshold: 1.04270467e-04 + syst_JES_Pileup_MuOffset: 1.50419214e-04 + syst_JES_Pileup_NPVOffset: 1.58687830e-04 + syst_JES_Pileup_Pt_term: 8.93101204e-05 + syst_JES_Pileup_Rho_topology: 1.93378670e-04 + syst_JES_PunchThrough_MC15: 1.92163264e-04 + syst_JES_SingleParticle_HighPt: 7.81237011e-09 + syst_JES_Zjet_MC: 2.78800574e-04 + syst_JES_Zjet_MuScale: 2.14234031e-05 + syst_JES_Zjet_MuSmearID: 5.54017516e-06 + syst_JES_Zjet_MuSmearMS: 7.64359894e-05 + syst_JES_Zjet_OOC: 1.73474227e-04 + syst_JES_Zjet_Stat1: 1.69941306e-05 + syst_JES_Zjet_Stat10: 1.38228829e-05 + syst_JES_Zjet_Stat11: 1.96569701e-05 + syst_JES_Zjet_Stat12: 4.84219847e-05 + syst_JES_Zjet_Stat13: 7.70859110e-05 + syst_JES_Zjet_Stat2: 3.68320006e-07 + syst_JES_Zjet_Stat3: 1.08634195e-05 + syst_JES_Zjet_Stat4: 9.07521559e-06 + syst_JES_Zjet_Stat5: 9.74506310e-06 + syst_JES_Zjet_Stat6: 7.77180113e-06 + syst_JES_Zjet_Stat7: 9.17572377e-06 + syst_JES_Zjet_Stat8: 7.36317880e-06 + syst_JES_Zjet_Stat9: 8.79762984e-06 + syst_JES_Zjet_Veto: 3.50700257e-05 + syst_JES_Zjet_dPhi: 3.34305863e-05 + syst_PRW: 2.14200000e-05 + syst_Unfolding_bias: 2.22600000e-05 + syst_cleaning: 1.78401233e-04 + syst_lumi: 5.82200000e-04 +- stat: 2.55760000e-04 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 5.483207364307865e-05 - syst_JER_NP1: 5.630059924192637e-06 - syst_JER_NP2: 3.090730819725329e-05 - syst_JER_NP3: 4.147928730101327e-06 - syst_JER_NP4: 1.2462207057740616e-05 - syst_JER_NP5: 1.496094876670594e-05 - syst_JER_NP6: 1.1277401861687823e-05 - syst_JER_NP7: 3.4028428211134974e-06 - syst_JER_NP8: 1.228978539275605e-05 - syst_JES_EtaIntercalibration_Modelling: 0.00040008969853646566 - syst_JES_EtaIntercalibration_NonClosure: 2.580755703277627e-17 + syst_JER_NP0: 5.48320736e-05 + syst_JER_NP1: 5.63005992e-06 + syst_JER_NP2: 3.09073082e-05 + syst_JER_NP3: 4.14792873e-06 + syst_JER_NP4: 1.24622071e-05 + syst_JER_NP5: 1.49609488e-05 + syst_JER_NP6: 1.12774019e-05 + syst_JER_NP7: 3.40284282e-06 + syst_JER_NP8: 1.22897854e-05 + syst_JES_EtaIntercalibration_Modelling: 4.00089699e-04 + syst_JES_EtaIntercalibration_NonClosure: 2.58075570e-17 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 3.4315390588677316e-08 - syst_JES_EtaIntercalibration_Stat101: 6.64888216168703e-20 - syst_JES_EtaIntercalibration_Stat102: 4.983127117583897e-22 - syst_JES_EtaIntercalibration_Stat103: 1.4263438400329705e-21 - syst_JES_EtaIntercalibration_Stat104: 1.4263438400329705e-21 - syst_JES_EtaIntercalibration_Stat105: 1.4263438400329705e-21 + syst_JES_EtaIntercalibration_Stat100: 3.43153906e-08 + syst_JES_EtaIntercalibration_Stat101: 6.64888216e-20 + syst_JES_EtaIntercalibration_Stat102: 4.98312712e-22 + syst_JES_EtaIntercalibration_Stat103: 1.42634384e-21 + syst_JES_EtaIntercalibration_Stat104: 1.42634384e-21 + syst_JES_EtaIntercalibration_Stat105: 1.42634384e-21 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 8.271408631545174e-19 - syst_JES_EtaIntercalibration_Stat111: 8.271408631545174e-19 + syst_JES_EtaIntercalibration_Stat110: 8.27140863e-19 + syst_JES_EtaIntercalibration_Stat111: 8.27140863e-19 syst_JES_EtaIntercalibration_Stat112: 0.0 - syst_JES_EtaIntercalibration_Stat113: 9.862420030981239e-21 - syst_JES_EtaIntercalibration_Stat114: 1.251406224072388e-08 - syst_JES_EtaIntercalibration_Stat115: 1.2148085229780042e-07 - syst_JES_EtaIntercalibration_Stat116: 1.5434024992528685e-08 - syst_JES_EtaIntercalibration_Stat117: 4.170219029019939e-16 - syst_JES_EtaIntercalibration_Stat118: 2.655233887098381e-08 - syst_JES_EtaIntercalibration_Stat119: 1.0308489229149925e-08 - syst_JES_EtaIntercalibration_Stat12: 2.492951491445431e-19 - syst_JES_EtaIntercalibration_Stat120: 8.270176827009203e-08 - syst_JES_EtaIntercalibration_Stat121: 1.5816191395844955e-15 - syst_JES_EtaIntercalibration_Stat122: 8.27957250511764e-21 - syst_JES_EtaIntercalibration_Stat123: 1.4263438400329705e-21 - syst_JES_EtaIntercalibration_Stat124: 1.4263438400329705e-21 - syst_JES_EtaIntercalibration_Stat125: 1.4263438400329705e-21 + syst_JES_EtaIntercalibration_Stat113: 9.86242003e-21 + syst_JES_EtaIntercalibration_Stat114: 1.25140622e-08 + syst_JES_EtaIntercalibration_Stat115: 1.21480852e-07 + syst_JES_EtaIntercalibration_Stat116: 1.54340250e-08 + syst_JES_EtaIntercalibration_Stat117: 4.17021903e-16 + syst_JES_EtaIntercalibration_Stat118: 2.65523389e-08 + syst_JES_EtaIntercalibration_Stat119: 1.03084892e-08 + syst_JES_EtaIntercalibration_Stat12: 2.49295149e-19 + syst_JES_EtaIntercalibration_Stat120: 8.27017683e-08 + syst_JES_EtaIntercalibration_Stat121: 1.58161914e-15 + syst_JES_EtaIntercalibration_Stat122: 8.27957251e-21 + syst_JES_EtaIntercalibration_Stat123: 1.42634384e-21 + syst_JES_EtaIntercalibration_Stat124: 1.42634384e-21 + syst_JES_EtaIntercalibration_Stat125: 1.42634384e-21 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 1.482635491278959e-16 - syst_JES_EtaIntercalibration_Stat129: 1.479898902020253e-16 - syst_JES_EtaIntercalibration_Stat13: 3.7091280916043694e-19 - syst_JES_EtaIntercalibration_Stat130: 8.271408631545174e-19 - syst_JES_EtaIntercalibration_Stat131: 6.490860401364367e-23 - syst_JES_EtaIntercalibration_Stat132: 3.146568635528351e-17 - syst_JES_EtaIntercalibration_Stat133: 1.911318188261869e-09 - syst_JES_EtaIntercalibration_Stat134: 1.006570875547271e-07 - syst_JES_EtaIntercalibration_Stat135: 9.617402043398951e-08 - syst_JES_EtaIntercalibration_Stat136: 1.4237457770602592e-07 - syst_JES_EtaIntercalibration_Stat137: 2.7279125260902336e-08 - syst_JES_EtaIntercalibration_Stat138: 2.0670995210681074e-07 - syst_JES_EtaIntercalibration_Stat139: 3.731361905189578e-08 - syst_JES_EtaIntercalibration_Stat14: 1.6991418422250687e-22 - syst_JES_EtaIntercalibration_Stat140: 8.192223265530547e-10 - syst_JES_EtaIntercalibration_Stat141: 1.366588384420889e-16 + syst_JES_EtaIntercalibration_Stat128: 1.48263549e-16 + syst_JES_EtaIntercalibration_Stat129: 1.47989890e-16 + syst_JES_EtaIntercalibration_Stat13: 3.70912809e-19 + syst_JES_EtaIntercalibration_Stat130: 8.27140863e-19 + syst_JES_EtaIntercalibration_Stat131: 6.49086040e-23 + syst_JES_EtaIntercalibration_Stat132: 3.14656864e-17 + syst_JES_EtaIntercalibration_Stat133: 1.91131819e-09 + syst_JES_EtaIntercalibration_Stat134: 1.00657088e-07 + syst_JES_EtaIntercalibration_Stat135: 9.61740204e-08 + syst_JES_EtaIntercalibration_Stat136: 1.42374578e-07 + syst_JES_EtaIntercalibration_Stat137: 2.72791253e-08 + syst_JES_EtaIntercalibration_Stat138: 2.06709952e-07 + syst_JES_EtaIntercalibration_Stat139: 3.73136191e-08 + syst_JES_EtaIntercalibration_Stat14: 1.69914184e-22 + syst_JES_EtaIntercalibration_Stat140: 8.19222327e-10 + syst_JES_EtaIntercalibration_Stat141: 1.36658838e-16 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 1.4263438400329705e-21 - syst_JES_EtaIntercalibration_Stat144: 1.4263438400329705e-21 + syst_JES_EtaIntercalibration_Stat143: 1.42634384e-21 + syst_JES_EtaIntercalibration_Stat144: 1.42634384e-21 syst_JES_EtaIntercalibration_Stat145: 0.0 - syst_JES_EtaIntercalibration_Stat146: 1.482635491278959e-16 - syst_JES_EtaIntercalibration_Stat147: 1.479898902020253e-16 + syst_JES_EtaIntercalibration_Stat146: 1.48263549e-16 + syst_JES_EtaIntercalibration_Stat147: 1.47989890e-16 syst_JES_EtaIntercalibration_Stat148: 0.0 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 4.306374422585663e-20 - syst_JES_EtaIntercalibration_Stat151: 1.9156487044153872e-09 - syst_JES_EtaIntercalibration_Stat152: 1.1147146215511843e-07 - syst_JES_EtaIntercalibration_Stat153: 1.3702668964475498e-07 - syst_JES_EtaIntercalibration_Stat154: 1.7935391406683947e-08 - syst_JES_EtaIntercalibration_Stat155: 4.2839344941303666e-08 - syst_JES_EtaIntercalibration_Stat156: 2.0290349152984037e-07 - syst_JES_EtaIntercalibration_Stat157: 1.7478394520092513e-07 - syst_JES_EtaIntercalibration_Stat158: 5.7664056627590815e-08 - syst_JES_EtaIntercalibration_Stat159: 1.3719626180302142e-16 + syst_JES_EtaIntercalibration_Stat150: 4.30637442e-20 + syst_JES_EtaIntercalibration_Stat151: 1.91564870e-09 + syst_JES_EtaIntercalibration_Stat152: 1.11471462e-07 + syst_JES_EtaIntercalibration_Stat153: 1.37026690e-07 + syst_JES_EtaIntercalibration_Stat154: 1.79353914e-08 + syst_JES_EtaIntercalibration_Stat155: 4.28393449e-08 + syst_JES_EtaIntercalibration_Stat156: 2.02903492e-07 + syst_JES_EtaIntercalibration_Stat157: 1.74783945e-07 + syst_JES_EtaIntercalibration_Stat158: 5.76640566e-08 + syst_JES_EtaIntercalibration_Stat159: 1.37196262e-16 syst_JES_EtaIntercalibration_Stat16: 0.0 syst_JES_EtaIntercalibration_Stat160: 0.0 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 - syst_JES_EtaIntercalibration_Stat164: 1.482635491278959e-16 + syst_JES_EtaIntercalibration_Stat164: 1.48263549e-16 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 - syst_JES_EtaIntercalibration_Stat168: 8.002074730968212e-20 - syst_JES_EtaIntercalibration_Stat169: 9.72132618267693e-08 + syst_JES_EtaIntercalibration_Stat168: 8.00207473e-20 + syst_JES_EtaIntercalibration_Stat169: 9.72132618e-08 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 2.663542565832204e-07 - syst_JES_EtaIntercalibration_Stat171: 3.8625226212929805e-07 - syst_JES_EtaIntercalibration_Stat172: 4.40875319875132e-08 - syst_JES_EtaIntercalibration_Stat173: 3.723257041892219e-08 - syst_JES_EtaIntercalibration_Stat174: 2.136780931682048e-07 - syst_JES_EtaIntercalibration_Stat175: 5.115217688427347e-07 - syst_JES_EtaIntercalibration_Stat176: 5.201348863775669e-09 - syst_JES_EtaIntercalibration_Stat177: 1.0965232544273743e-15 + syst_JES_EtaIntercalibration_Stat170: 2.66354257e-07 + syst_JES_EtaIntercalibration_Stat171: 3.86252262e-07 + syst_JES_EtaIntercalibration_Stat172: 4.40875320e-08 + syst_JES_EtaIntercalibration_Stat173: 3.72325704e-08 + syst_JES_EtaIntercalibration_Stat174: 2.13678093e-07 + syst_JES_EtaIntercalibration_Stat175: 5.11521769e-07 + syst_JES_EtaIntercalibration_Stat176: 5.20134886e-09 + syst_JES_EtaIntercalibration_Stat177: 1.09652325e-15 syst_JES_EtaIntercalibration_Stat178: 0.0 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 @@ -21678,17 +21678,17 @@ bins: syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 syst_JES_EtaIntercalibration_Stat184: 0.0 - syst_JES_EtaIntercalibration_Stat185: 3.557631848369129e-08 - syst_JES_EtaIntercalibration_Stat186: 3.122665881502534e-07 - syst_JES_EtaIntercalibration_Stat187: 1.7283333011893278e-06 - syst_JES_EtaIntercalibration_Stat188: 1.5845929974286772e-06 - syst_JES_EtaIntercalibration_Stat189: 1.7766060339872764e-07 + syst_JES_EtaIntercalibration_Stat185: 3.55763185e-08 + syst_JES_EtaIntercalibration_Stat186: 3.12266588e-07 + syst_JES_EtaIntercalibration_Stat187: 1.72833330e-06 + syst_JES_EtaIntercalibration_Stat188: 1.58459300e-06 + syst_JES_EtaIntercalibration_Stat189: 1.77660603e-07 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 9.648277151906448e-08 - syst_JES_EtaIntercalibration_Stat191: 1.8219800403681704e-06 - syst_JES_EtaIntercalibration_Stat192: 2.249024399600858e-06 - syst_JES_EtaIntercalibration_Stat193: 1.578341417437938e-07 - syst_JES_EtaIntercalibration_Stat194: 1.0349869600627827e-15 + syst_JES_EtaIntercalibration_Stat190: 9.64827715e-08 + syst_JES_EtaIntercalibration_Stat191: 1.82198004e-06 + syst_JES_EtaIntercalibration_Stat192: 2.24902440e-06 + syst_JES_EtaIntercalibration_Stat193: 1.57834142e-07 + syst_JES_EtaIntercalibration_Stat194: 1.03498696e-15 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 syst_JES_EtaIntercalibration_Stat197: 0.0 @@ -21696,70 +21696,70 @@ bins: syst_JES_EtaIntercalibration_Stat199: 0.0 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 3.5584984609955856e-08 - syst_JES_EtaIntercalibration_Stat201: 2.8882054982289605e-07 - syst_JES_EtaIntercalibration_Stat202: 3.5959036416455875e-06 - syst_JES_EtaIntercalibration_Stat203: 3.3911993453644095e-06 - syst_JES_EtaIntercalibration_Stat204: 3.539305970102048e-07 - syst_JES_EtaIntercalibration_Stat205: 9.238326512415546e-08 - syst_JES_EtaIntercalibration_Stat206: 3.5183982150973186e-06 - syst_JES_EtaIntercalibration_Stat207: 3.5813944211717314e-06 - syst_JES_EtaIntercalibration_Stat208: 6.531492019439356e-07 - syst_JES_EtaIntercalibration_Stat209: 8.161423392207773e-10 + syst_JES_EtaIntercalibration_Stat200: 3.55849846e-08 + syst_JES_EtaIntercalibration_Stat201: 2.88820550e-07 + syst_JES_EtaIntercalibration_Stat202: 3.59590364e-06 + syst_JES_EtaIntercalibration_Stat203: 3.39119935e-06 + syst_JES_EtaIntercalibration_Stat204: 3.53930597e-07 + syst_JES_EtaIntercalibration_Stat205: 9.23832651e-08 + syst_JES_EtaIntercalibration_Stat206: 3.51839822e-06 + syst_JES_EtaIntercalibration_Stat207: 3.58139442e-06 + syst_JES_EtaIntercalibration_Stat208: 6.53149202e-07 + syst_JES_EtaIntercalibration_Stat209: 8.16142339e-10 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 syst_JES_EtaIntercalibration_Stat211: 0.0 syst_JES_EtaIntercalibration_Stat212: 0.0 - syst_JES_EtaIntercalibration_Stat213: 3.5584978749276124e-08 - syst_JES_EtaIntercalibration_Stat214: 2.861158944815894e-07 - syst_JES_EtaIntercalibration_Stat215: 4.1859773052418715e-06 - syst_JES_EtaIntercalibration_Stat216: 3.976821092279611e-06 - syst_JES_EtaIntercalibration_Stat217: 4.136565815987943e-07 - syst_JES_EtaIntercalibration_Stat218: 2.261969053722884e-07 - syst_JES_EtaIntercalibration_Stat219: 4.014456470059178e-06 + syst_JES_EtaIntercalibration_Stat213: 3.55849787e-08 + syst_JES_EtaIntercalibration_Stat214: 2.86115894e-07 + syst_JES_EtaIntercalibration_Stat215: 4.18597731e-06 + syst_JES_EtaIntercalibration_Stat216: 3.97682109e-06 + syst_JES_EtaIntercalibration_Stat217: 4.13656582e-07 + syst_JES_EtaIntercalibration_Stat218: 2.26196905e-07 + syst_JES_EtaIntercalibration_Stat219: 4.01445647e-06 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 4.072239770691308e-06 - syst_JES_EtaIntercalibration_Stat221: 3.3789607869876204e-07 - syst_JES_EtaIntercalibration_Stat222: 8.154599029921704e-10 + syst_JES_EtaIntercalibration_Stat220: 4.07223977e-06 + syst_JES_EtaIntercalibration_Stat221: 3.37896079e-07 + syst_JES_EtaIntercalibration_Stat222: 8.15459903e-10 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 - syst_JES_EtaIntercalibration_Stat225: 2.5364334704462488e-08 - syst_JES_EtaIntercalibration_Stat226: 8.756793748284814e-07 - syst_JES_EtaIntercalibration_Stat227: 1.1180639550133077e-05 - syst_JES_EtaIntercalibration_Stat228: 9.843469510289551e-06 - syst_JES_EtaIntercalibration_Stat229: 8.304212831448866e-07 + syst_JES_EtaIntercalibration_Stat225: 2.53643347e-08 + syst_JES_EtaIntercalibration_Stat226: 8.75679375e-07 + syst_JES_EtaIntercalibration_Stat227: 1.11806396e-05 + syst_JES_EtaIntercalibration_Stat228: 9.84346951e-06 + syst_JES_EtaIntercalibration_Stat229: 8.30421283e-07 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 1.1251129143334903e-06 - syst_JES_EtaIntercalibration_Stat231: 1.2292445271385185e-05 - syst_JES_EtaIntercalibration_Stat232: 1.216880914469448e-05 - syst_JES_EtaIntercalibration_Stat233: 1.160125048216786e-06 - syst_JES_EtaIntercalibration_Stat234: 1.0666997890690707e-07 + syst_JES_EtaIntercalibration_Stat230: 1.12511291e-06 + syst_JES_EtaIntercalibration_Stat231: 1.22924453e-05 + syst_JES_EtaIntercalibration_Stat232: 1.21688091e-05 + syst_JES_EtaIntercalibration_Stat233: 1.16012505e-06 + syst_JES_EtaIntercalibration_Stat234: 1.06669979e-07 syst_JES_EtaIntercalibration_Stat235: 0.0 - syst_JES_EtaIntercalibration_Stat236: 3.5584983841502585e-08 - syst_JES_EtaIntercalibration_Stat237: 2.6116593862906393e-07 - syst_JES_EtaIntercalibration_Stat238: 2.4385050235748954e-06 - syst_JES_EtaIntercalibration_Stat239: 1.3857589509001918e-06 + syst_JES_EtaIntercalibration_Stat236: 3.55849838e-08 + syst_JES_EtaIntercalibration_Stat237: 2.61165939e-07 + syst_JES_EtaIntercalibration_Stat238: 2.43850502e-06 + syst_JES_EtaIntercalibration_Stat239: 1.38575895e-06 syst_JES_EtaIntercalibration_Stat24: 0.0 - syst_JES_EtaIntercalibration_Stat240: 6.521454669013656e-08 - syst_JES_EtaIntercalibration_Stat241: 5.695098418815956e-08 - syst_JES_EtaIntercalibration_Stat242: 1.2292778154266023e-06 - syst_JES_EtaIntercalibration_Stat243: 2.428685652776003e-06 - syst_JES_EtaIntercalibration_Stat244: 1.5529891846049667e-07 - syst_JES_EtaIntercalibration_Stat245: 1.810859119313261e-11 + syst_JES_EtaIntercalibration_Stat240: 6.52145467e-08 + syst_JES_EtaIntercalibration_Stat241: 5.69509842e-08 + syst_JES_EtaIntercalibration_Stat242: 1.22927782e-06 + syst_JES_EtaIntercalibration_Stat243: 2.42868565e-06 + syst_JES_EtaIntercalibration_Stat244: 1.55298918e-07 + syst_JES_EtaIntercalibration_Stat245: 1.81085912e-11 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 syst_JES_EtaIntercalibration_Stat27: 0.0 - syst_JES_EtaIntercalibration_Stat28: 4.2279360212756294e-23 - syst_JES_EtaIntercalibration_Stat29: 2.365166167523965e-21 + syst_JES_EtaIntercalibration_Stat28: 4.22793602e-23 + syst_JES_EtaIntercalibration_Stat29: 2.36516617e-21 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 1.855693565085572e-20 - syst_JES_EtaIntercalibration_Stat31: 1.568030841533418e-20 - syst_JES_EtaIntercalibration_Stat32: 1.5445751543709357e-22 - syst_JES_EtaIntercalibration_Stat33: 2.4036463966232635e-21 - syst_JES_EtaIntercalibration_Stat34: 2.880400492998574e-08 - syst_JES_EtaIntercalibration_Stat35: 1.3215773421129881e-16 - syst_JES_EtaIntercalibration_Stat36: 7.603012121521311e-21 - syst_JES_EtaIntercalibration_Stat37: 3.086514539087739e-23 + syst_JES_EtaIntercalibration_Stat30: 1.85569357e-20 + syst_JES_EtaIntercalibration_Stat31: 1.56803084e-20 + syst_JES_EtaIntercalibration_Stat32: 1.54457515e-22 + syst_JES_EtaIntercalibration_Stat33: 2.40364640e-21 + syst_JES_EtaIntercalibration_Stat34: 2.88040049e-08 + syst_JES_EtaIntercalibration_Stat35: 1.32157734e-16 + syst_JES_EtaIntercalibration_Stat36: 7.60301212e-21 + syst_JES_EtaIntercalibration_Stat37: 3.08651454e-23 syst_JES_EtaIntercalibration_Stat38: 0.0 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 @@ -21774,20 +21774,20 @@ bins: syst_JES_EtaIntercalibration_Stat48: 0.0 syst_JES_EtaIntercalibration_Stat49: 0.0 syst_JES_EtaIntercalibration_Stat5: 0.0 - syst_JES_EtaIntercalibration_Stat50: 4.2833616471178336e-23 - syst_JES_EtaIntercalibration_Stat51: 3.175117005718057e-21 - syst_JES_EtaIntercalibration_Stat52: 1.9020454779000424e-19 - syst_JES_EtaIntercalibration_Stat53: 8.632441876433343e-20 - syst_JES_EtaIntercalibration_Stat54: 1.067146278632878e-21 - syst_JES_EtaIntercalibration_Stat55: 2.515968567902827e-19 - syst_JES_EtaIntercalibration_Stat56: 2.882998569197127e-08 - syst_JES_EtaIntercalibration_Stat57: 1.7744860529045293e-11 - syst_JES_EtaIntercalibration_Stat58: 7.610832329647002e-21 - syst_JES_EtaIntercalibration_Stat59: 9.797789074582082e-23 + syst_JES_EtaIntercalibration_Stat50: 4.28336165e-23 + syst_JES_EtaIntercalibration_Stat51: 3.17511701e-21 + syst_JES_EtaIntercalibration_Stat52: 1.90204548e-19 + syst_JES_EtaIntercalibration_Stat53: 8.63244188e-20 + syst_JES_EtaIntercalibration_Stat54: 1.06714628e-21 + syst_JES_EtaIntercalibration_Stat55: 2.51596857e-19 + syst_JES_EtaIntercalibration_Stat56: 2.88299857e-08 + syst_JES_EtaIntercalibration_Stat57: 1.77448605e-11 + syst_JES_EtaIntercalibration_Stat58: 7.61083233e-21 + syst_JES_EtaIntercalibration_Stat59: 9.79778907e-23 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 1.4263438400329705e-21 - syst_JES_EtaIntercalibration_Stat62: 1.4263438400329705e-21 + syst_JES_EtaIntercalibration_Stat61: 1.42634384e-21 + syst_JES_EtaIntercalibration_Stat62: 1.42634384e-21 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 @@ -21795,218 +21795,218 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 4.2279360212756294e-23 + syst_JES_EtaIntercalibration_Stat7: 4.22793602e-23 syst_JES_EtaIntercalibration_Stat70: 0.0 syst_JES_EtaIntercalibration_Stat71: 0.0 - syst_JES_EtaIntercalibration_Stat72: 4.438380194395248e-23 - syst_JES_EtaIntercalibration_Stat73: 1.001504603621471e-18 - syst_JES_EtaIntercalibration_Stat74: 2.560836623047088e-08 - syst_JES_EtaIntercalibration_Stat75: 5.013421072031508e-09 - syst_JES_EtaIntercalibration_Stat76: 2.4218386955988627e-20 - syst_JES_EtaIntercalibration_Stat77: 2.1010859352963171e-19 - syst_JES_EtaIntercalibration_Stat78: 2.7773434689704994e-08 - syst_JES_EtaIntercalibration_Stat79: 4.198491158498721e-08 - syst_JES_EtaIntercalibration_Stat8: 9.320327824170134e-22 - syst_JES_EtaIntercalibration_Stat80: 6.433182573967569e-20 - syst_JES_EtaIntercalibration_Stat81: 2.0065808605685445e-22 - syst_JES_EtaIntercalibration_Stat82: 1.4263438400329705e-21 - syst_JES_EtaIntercalibration_Stat83: 1.4263438400329705e-21 - syst_JES_EtaIntercalibration_Stat84: 1.4263438400329705e-21 + syst_JES_EtaIntercalibration_Stat72: 4.43838019e-23 + syst_JES_EtaIntercalibration_Stat73: 1.00150460e-18 + syst_JES_EtaIntercalibration_Stat74: 2.56083662e-08 + syst_JES_EtaIntercalibration_Stat75: 5.01342107e-09 + syst_JES_EtaIntercalibration_Stat76: 2.42183870e-20 + syst_JES_EtaIntercalibration_Stat77: 2.10108594e-19 + syst_JES_EtaIntercalibration_Stat78: 2.77734347e-08 + syst_JES_EtaIntercalibration_Stat79: 4.19849116e-08 + syst_JES_EtaIntercalibration_Stat8: 9.32032782e-22 + syst_JES_EtaIntercalibration_Stat80: 6.43318257e-20 + syst_JES_EtaIntercalibration_Stat81: 2.00658086e-22 + syst_JES_EtaIntercalibration_Stat82: 1.42634384e-21 + syst_JES_EtaIntercalibration_Stat83: 1.42634384e-21 + syst_JES_EtaIntercalibration_Stat84: 1.42634384e-21 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 syst_JES_EtaIntercalibration_Stat89: 0.0 - syst_JES_EtaIntercalibration_Stat9: 7.155050873334166e-22 + syst_JES_EtaIntercalibration_Stat9: 7.15505087e-22 syst_JES_EtaIntercalibration_Stat90: 0.0 syst_JES_EtaIntercalibration_Stat91: 0.0 syst_JES_EtaIntercalibration_Stat92: 0.0 - syst_JES_EtaIntercalibration_Stat93: 9.301978862048656e-23 - syst_JES_EtaIntercalibration_Stat94: 1.4824550473791776e-18 - syst_JES_EtaIntercalibration_Stat95: 2.5599705990866774e-08 - syst_JES_EtaIntercalibration_Stat96: 1.909330738766859e-08 - syst_JES_EtaIntercalibration_Stat97: 5.228054574724714e-19 - syst_JES_EtaIntercalibration_Stat98: 1.336350884872682e-19 - syst_JES_EtaIntercalibration_Stat99: 1.5354630398108237e-08 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.00016421559000289832 - syst_JES_Flavour_Comp: 0.00042124187825998496 - syst_JES_Flavour_Response: 3.7178756340146724e-05 - syst_JES_Gjet_Generator: 0.0004613280936600328 - syst_JES_Gjet_OOC: 0.00038481022894408615 - syst_JES_Gjet_Purity: 6.689932959305348e-05 - syst_JES_Gjet_Stat1: 2.4064813042074525e-06 - syst_JES_Gjet_Stat10: 7.488147835079112e-06 - syst_JES_Gjet_Stat11: 7.832316132537041e-06 - syst_JES_Gjet_Stat12: 2.0286125184470295e-05 - syst_JES_Gjet_Stat13: 7.439621562956009e-05 - syst_JES_Gjet_Stat14: 0.00019871288332667312 - syst_JES_Gjet_Stat15: 0.0003225037519161599 - syst_JES_Gjet_Stat2: 1.9108848735598908e-06 - syst_JES_Gjet_Stat3: 2.6993728901357816e-06 - syst_JES_Gjet_Stat4: 1.190995566742379e-06 - syst_JES_Gjet_Stat5: 1.995673507866455e-06 - syst_JES_Gjet_Stat6: 8.072788985226853e-06 - syst_JES_Gjet_Stat7: 4.532539988792156e-06 - syst_JES_Gjet_Stat8: 3.0506995918969145e-06 - syst_JES_Gjet_Stat9: 4.833334330459668e-06 - syst_JES_Gjet_Veto: 0.00039065035735296594 - syst_JES_Gjet_dPhi: 4.264011491541738e-05 - syst_JES_LArESZee: 0.0006894905220523338 - syst_JES_LArEsmear: 6.349950767525682e-05 - syst_JES_LAr_JVT: 8.040731356661533e-05 - syst_JES_MJB_Alpha: 7.5610241865768425e-06 - syst_JES_MJB_Asym: 9.5550773937211e-05 - syst_JES_MJB_Beta: 4.98560176909468e-06 - syst_JES_MJB_Fragmentation: 3.762501661129201e-05 - syst_JES_MJB_Stat1: 2.59804385403711e-07 - syst_JES_MJB_Stat10: 6.591202773394246e-06 - syst_JES_MJB_Stat11: 8.464926402515264e-06 - syst_JES_MJB_Stat12: 1.3773718406806493e-05 - syst_JES_MJB_Stat13: 1.8581891722857498e-05 - syst_JES_MJB_Stat14: 1.6462429954292898e-05 - syst_JES_MJB_Stat15: 3.8778075000572166e-05 - syst_JES_MJB_Stat16: 1.1728623565875068e-05 - syst_JES_MJB_Stat2: 4.831119745980221e-07 - syst_JES_MJB_Stat3: 4.73146708220611e-07 - syst_JES_MJB_Stat4: 5.14075507586191e-07 - syst_JES_MJB_Stat5: 5.85879738086239e-07 - syst_JES_MJB_Stat6: 8.816968356527089e-07 - syst_JES_MJB_Stat7: 1.5533296197201675e-06 - syst_JES_MJB_Stat8: 2.640008143926833e-06 - syst_JES_MJB_Stat9: 3.9580420664768075e-06 - syst_JES_MJB_Threshold: 7.084298695001502e-05 - syst_JES_Pileup_MuOffset: 9.763987236267773e-05 - syst_JES_Pileup_NPVOffset: 0.00010264697608794915 - syst_JES_Pileup_Pt_term: 5.457705630574078e-05 - syst_JES_Pileup_Rho_topology: 0.00012195501711696817 - syst_JES_PunchThrough_MC15: 0.00013355868176573172 - syst_JES_SingleParticle_HighPt: 1.6093466842169218e-08 - syst_JES_Zjet_MC: 0.0001769540830272079 - syst_JES_Zjet_MuScale: 1.3053062887690381e-05 - syst_JES_Zjet_MuSmearID: 3.7419033592544844e-06 - syst_JES_Zjet_MuSmearMS: 4.815508773743435e-05 - syst_JES_Zjet_OOC: 0.00011268011481623542 - syst_JES_Zjet_Stat1: 1.2193654538324431e-05 - syst_JES_Zjet_Stat10: 8.518048133228643e-06 - syst_JES_Zjet_Stat11: 1.2171538686624629e-05 - syst_JES_Zjet_Stat12: 2.9316675715367183e-05 - syst_JES_Zjet_Stat13: 4.756010302764282e-05 - syst_JES_Zjet_Stat2: 2.3002545511312438e-07 - syst_JES_Zjet_Stat3: 7.543395704190521e-06 - syst_JES_Zjet_Stat4: 6.197962245770782e-06 - syst_JES_Zjet_Stat5: 6.9555728017180585e-06 - syst_JES_Zjet_Stat6: 5.131537269668807e-06 - syst_JES_Zjet_Stat7: 6.323612318129567e-06 - syst_JES_Zjet_Stat8: 4.7647987365679984e-06 - syst_JES_Zjet_Stat9: 5.427063294268826e-06 - syst_JES_Zjet_Veto: 2.186532128737193e-05 - syst_JES_Zjet_dPhi: 2.0568099085720098e-05 - syst_PRW: 1.3262e-05 - syst_Unfolding_bias: 1.3784e-05 - syst_cleaning: 0.0001103749377123267 - syst_lumi: 0.0003605 -- stat: 0.00014873 + syst_JES_EtaIntercalibration_Stat93: 9.30197886e-23 + syst_JES_EtaIntercalibration_Stat94: 1.48245505e-18 + syst_JES_EtaIntercalibration_Stat95: 2.55997060e-08 + syst_JES_EtaIntercalibration_Stat96: 1.90933074e-08 + syst_JES_EtaIntercalibration_Stat97: 5.22805457e-19 + syst_JES_EtaIntercalibration_Stat98: 1.33635088e-19 + syst_JES_EtaIntercalibration_Stat99: 1.53546304e-08 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.64215590e-04 + syst_JES_Flavour_Comp: 4.21241878e-04 + syst_JES_Flavour_Response: 3.71787563e-05 + syst_JES_Gjet_Generator: 4.61328094e-04 + syst_JES_Gjet_OOC: 3.84810229e-04 + syst_JES_Gjet_Purity: 6.68993296e-05 + syst_JES_Gjet_Stat1: 2.40648130e-06 + syst_JES_Gjet_Stat10: 7.48814784e-06 + syst_JES_Gjet_Stat11: 7.83231613e-06 + syst_JES_Gjet_Stat12: 2.02861252e-05 + syst_JES_Gjet_Stat13: 7.43962156e-05 + syst_JES_Gjet_Stat14: 1.98712883e-04 + syst_JES_Gjet_Stat15: 3.22503752e-04 + syst_JES_Gjet_Stat2: 1.91088487e-06 + syst_JES_Gjet_Stat3: 2.69937289e-06 + syst_JES_Gjet_Stat4: 1.19099557e-06 + syst_JES_Gjet_Stat5: 1.99567351e-06 + syst_JES_Gjet_Stat6: 8.07278899e-06 + syst_JES_Gjet_Stat7: 4.53253999e-06 + syst_JES_Gjet_Stat8: 3.05069959e-06 + syst_JES_Gjet_Stat9: 4.83333433e-06 + syst_JES_Gjet_Veto: 3.90650357e-04 + syst_JES_Gjet_dPhi: 4.26401149e-05 + syst_JES_LArESZee: 6.89490522e-04 + syst_JES_LArEsmear: 6.34995077e-05 + syst_JES_LAr_JVT: 8.04073136e-05 + syst_JES_MJB_Alpha: 7.56102419e-06 + syst_JES_MJB_Asym: 9.55507739e-05 + syst_JES_MJB_Beta: 4.98560177e-06 + syst_JES_MJB_Fragmentation: 3.76250166e-05 + syst_JES_MJB_Stat1: 2.59804385e-07 + syst_JES_MJB_Stat10: 6.59120277e-06 + syst_JES_MJB_Stat11: 8.46492640e-06 + syst_JES_MJB_Stat12: 1.37737184e-05 + syst_JES_MJB_Stat13: 1.85818917e-05 + syst_JES_MJB_Stat14: 1.64624300e-05 + syst_JES_MJB_Stat15: 3.87780750e-05 + syst_JES_MJB_Stat16: 1.17286236e-05 + syst_JES_MJB_Stat2: 4.83111975e-07 + syst_JES_MJB_Stat3: 4.73146708e-07 + syst_JES_MJB_Stat4: 5.14075508e-07 + syst_JES_MJB_Stat5: 5.85879738e-07 + syst_JES_MJB_Stat6: 8.81696836e-07 + syst_JES_MJB_Stat7: 1.55332962e-06 + syst_JES_MJB_Stat8: 2.64000814e-06 + syst_JES_MJB_Stat9: 3.95804207e-06 + syst_JES_MJB_Threshold: 7.08429870e-05 + syst_JES_Pileup_MuOffset: 9.76398724e-05 + syst_JES_Pileup_NPVOffset: 1.02646976e-04 + syst_JES_Pileup_Pt_term: 5.45770563e-05 + syst_JES_Pileup_Rho_topology: 1.21955017e-04 + syst_JES_PunchThrough_MC15: 1.33558682e-04 + syst_JES_SingleParticle_HighPt: 1.60934668e-08 + syst_JES_Zjet_MC: 1.76954083e-04 + syst_JES_Zjet_MuScale: 1.30530629e-05 + syst_JES_Zjet_MuSmearID: 3.74190336e-06 + syst_JES_Zjet_MuSmearMS: 4.81550877e-05 + syst_JES_Zjet_OOC: 1.12680115e-04 + syst_JES_Zjet_Stat1: 1.21936545e-05 + syst_JES_Zjet_Stat10: 8.51804813e-06 + syst_JES_Zjet_Stat11: 1.21715387e-05 + syst_JES_Zjet_Stat12: 2.93166757e-05 + syst_JES_Zjet_Stat13: 4.75601030e-05 + syst_JES_Zjet_Stat2: 2.30025455e-07 + syst_JES_Zjet_Stat3: 7.54339570e-06 + syst_JES_Zjet_Stat4: 6.19796225e-06 + syst_JES_Zjet_Stat5: 6.95557280e-06 + syst_JES_Zjet_Stat6: 5.13153727e-06 + syst_JES_Zjet_Stat7: 6.32361232e-06 + syst_JES_Zjet_Stat8: 4.76479874e-06 + syst_JES_Zjet_Stat9: 5.42706329e-06 + syst_JES_Zjet_Veto: 2.18653213e-05 + syst_JES_Zjet_dPhi: 2.05680991e-05 + syst_PRW: 1.32620000e-05 + syst_Unfolding_bias: 1.37840000e-05 + syst_cleaning: 1.10374938e-04 + syst_lumi: 3.60500000e-04 +- stat: 1.48730000e-04 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 2.627497050426508e-05 - syst_JER_NP1: 3.445607747553398e-06 - syst_JER_NP2: 1.6181748259999598e-05 - syst_JER_NP3: 2.087151887141901e-06 - syst_JER_NP4: 7.132706779337e-06 - syst_JER_NP5: 7.886967525608305e-06 - syst_JER_NP6: 6.071699844359897e-06 - syst_JER_NP7: 1.714734554606908e-06 - syst_JER_NP8: 6.023265559478512e-06 - syst_JES_EtaIntercalibration_Modelling: 0.00020897212134636525 - syst_JES_EtaIntercalibration_NonClosure: 2.6024063383722386e-18 + syst_JER_NP0: 2.62749705e-05 + syst_JER_NP1: 3.44560775e-06 + syst_JER_NP2: 1.61817483e-05 + syst_JER_NP3: 2.08715189e-06 + syst_JER_NP4: 7.13270678e-06 + syst_JER_NP5: 7.88696753e-06 + syst_JER_NP6: 6.07169984e-06 + syst_JER_NP7: 1.71473455e-06 + syst_JER_NP8: 6.02326556e-06 + syst_JES_EtaIntercalibration_Modelling: 2.08972121e-04 + syst_JES_EtaIntercalibration_NonClosure: 2.60240634e-18 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 1.2652631148139007e-08 - syst_JES_EtaIntercalibration_Stat101: 1.0141869305014732e-20 - syst_JES_EtaIntercalibration_Stat102: 1.0884195891635726e-22 - syst_JES_EtaIntercalibration_Stat103: 3.575818892225947e-22 - syst_JES_EtaIntercalibration_Stat104: 3.575818892225947e-22 - syst_JES_EtaIntercalibration_Stat105: 3.575818892225947e-22 + syst_JES_EtaIntercalibration_Stat100: 1.26526311e-08 + syst_JES_EtaIntercalibration_Stat101: 1.01418693e-20 + syst_JES_EtaIntercalibration_Stat102: 1.08841959e-22 + syst_JES_EtaIntercalibration_Stat103: 3.57581889e-22 + syst_JES_EtaIntercalibration_Stat104: 3.57581889e-22 + syst_JES_EtaIntercalibration_Stat105: 3.57581889e-22 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 1.142980327914702e-19 - syst_JES_EtaIntercalibration_Stat111: 1.142980327914702e-19 + syst_JES_EtaIntercalibration_Stat110: 1.14298033e-19 + syst_JES_EtaIntercalibration_Stat111: 1.14298033e-19 syst_JES_EtaIntercalibration_Stat112: 0.0 - syst_JES_EtaIntercalibration_Stat113: 1.7781752746846977e-21 - syst_JES_EtaIntercalibration_Stat114: 8.945176004823403e-09 - syst_JES_EtaIntercalibration_Stat115: 6.806756877360907e-08 - syst_JES_EtaIntercalibration_Stat116: 1.2324424651885378e-08 - syst_JES_EtaIntercalibration_Stat117: 3.9944890474252153e-17 - syst_JES_EtaIntercalibration_Stat118: 9.353074359935186e-09 - syst_JES_EtaIntercalibration_Stat119: 1.1193827227539291e-08 - syst_JES_EtaIntercalibration_Stat12: 3.3428243316542975e-20 - syst_JES_EtaIntercalibration_Stat120: 2.8076865921965013e-08 - syst_JES_EtaIntercalibration_Stat121: 1.3852537977463733e-16 - syst_JES_EtaIntercalibration_Stat122: 1.4404319555952652e-21 - syst_JES_EtaIntercalibration_Stat123: 3.575818892225947e-22 - syst_JES_EtaIntercalibration_Stat124: 3.575818892225947e-22 - syst_JES_EtaIntercalibration_Stat125: 3.575818892225947e-22 + syst_JES_EtaIntercalibration_Stat113: 1.77817527e-21 + syst_JES_EtaIntercalibration_Stat114: 8.94517600e-09 + syst_JES_EtaIntercalibration_Stat115: 6.80675688e-08 + syst_JES_EtaIntercalibration_Stat116: 1.23244247e-08 + syst_JES_EtaIntercalibration_Stat117: 3.99448905e-17 + syst_JES_EtaIntercalibration_Stat118: 9.35307436e-09 + syst_JES_EtaIntercalibration_Stat119: 1.11938272e-08 + syst_JES_EtaIntercalibration_Stat12: 3.34282433e-20 + syst_JES_EtaIntercalibration_Stat120: 2.80768659e-08 + syst_JES_EtaIntercalibration_Stat121: 1.38525380e-16 + syst_JES_EtaIntercalibration_Stat122: 1.44043196e-21 + syst_JES_EtaIntercalibration_Stat123: 3.57581889e-22 + syst_JES_EtaIntercalibration_Stat124: 3.57581889e-22 + syst_JES_EtaIntercalibration_Stat125: 3.57581889e-22 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 1.459252805376779e-17 - syst_JES_EtaIntercalibration_Stat129: 1.4554827636914838e-17 - syst_JES_EtaIntercalibration_Stat13: 5.213860855708632e-20 - syst_JES_EtaIntercalibration_Stat130: 1.142980327914702e-19 - syst_JES_EtaIntercalibration_Stat131: 1.5614438030233428e-23 - syst_JES_EtaIntercalibration_Stat132: 3.2239498385055558e-18 - syst_JES_EtaIntercalibration_Stat133: 7.427033964411264e-10 - syst_JES_EtaIntercalibration_Stat134: 3.6161338470803316e-08 - syst_JES_EtaIntercalibration_Stat135: 4.847158991310064e-08 - syst_JES_EtaIntercalibration_Stat136: 7.223517903834623e-08 - syst_JES_EtaIntercalibration_Stat137: 1.1428047110070907e-08 - syst_JES_EtaIntercalibration_Stat138: 7.018193570998167e-08 - syst_JES_EtaIntercalibration_Stat139: 4.3647229007120255e-08 - syst_JES_EtaIntercalibration_Stat14: 4.291155875751893e-23 - syst_JES_EtaIntercalibration_Stat140: 9.705854544799237e-11 - syst_JES_EtaIntercalibration_Stat141: 1.321555493349318e-17 + syst_JES_EtaIntercalibration_Stat128: 1.45925281e-17 + syst_JES_EtaIntercalibration_Stat129: 1.45548276e-17 + syst_JES_EtaIntercalibration_Stat13: 5.21386086e-20 + syst_JES_EtaIntercalibration_Stat130: 1.14298033e-19 + syst_JES_EtaIntercalibration_Stat131: 1.56144380e-23 + syst_JES_EtaIntercalibration_Stat132: 3.22394984e-18 + syst_JES_EtaIntercalibration_Stat133: 7.42703396e-10 + syst_JES_EtaIntercalibration_Stat134: 3.61613385e-08 + syst_JES_EtaIntercalibration_Stat135: 4.84715899e-08 + syst_JES_EtaIntercalibration_Stat136: 7.22351790e-08 + syst_JES_EtaIntercalibration_Stat137: 1.14280471e-08 + syst_JES_EtaIntercalibration_Stat138: 7.01819357e-08 + syst_JES_EtaIntercalibration_Stat139: 4.36472290e-08 + syst_JES_EtaIntercalibration_Stat14: 4.29115588e-23 + syst_JES_EtaIntercalibration_Stat140: 9.70585454e-11 + syst_JES_EtaIntercalibration_Stat141: 1.32155549e-17 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 3.575818892225947e-22 - syst_JES_EtaIntercalibration_Stat144: 3.575818892225947e-22 + syst_JES_EtaIntercalibration_Stat143: 3.57581889e-22 + syst_JES_EtaIntercalibration_Stat144: 3.57581889e-22 syst_JES_EtaIntercalibration_Stat145: 0.0 - syst_JES_EtaIntercalibration_Stat146: 1.459252805376779e-17 - syst_JES_EtaIntercalibration_Stat147: 1.4554827636914838e-17 + syst_JES_EtaIntercalibration_Stat146: 1.45925281e-17 + syst_JES_EtaIntercalibration_Stat147: 1.45548276e-17 syst_JES_EtaIntercalibration_Stat148: 0.0 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 6.6575623729710565e-21 - syst_JES_EtaIntercalibration_Stat151: 7.42183815152835e-10 - syst_JES_EtaIntercalibration_Stat152: 4.360464195472771e-08 - syst_JES_EtaIntercalibration_Stat153: 6.06399571239954e-08 - syst_JES_EtaIntercalibration_Stat154: 9.039573586745097e-09 - syst_JES_EtaIntercalibration_Stat155: 6.571867371607556e-09 - syst_JES_EtaIntercalibration_Stat156: 6.990616997089743e-08 - syst_JES_EtaIntercalibration_Stat157: 8.050382102732764e-08 - syst_JES_EtaIntercalibration_Stat158: 1.9773007782075036e-08 - syst_JES_EtaIntercalibration_Stat159: 1.3278956336022308e-17 + syst_JES_EtaIntercalibration_Stat150: 6.65756237e-21 + syst_JES_EtaIntercalibration_Stat151: 7.42183815e-10 + syst_JES_EtaIntercalibration_Stat152: 4.36046420e-08 + syst_JES_EtaIntercalibration_Stat153: 6.06399571e-08 + syst_JES_EtaIntercalibration_Stat154: 9.03957359e-09 + syst_JES_EtaIntercalibration_Stat155: 6.57186737e-09 + syst_JES_EtaIntercalibration_Stat156: 6.99061700e-08 + syst_JES_EtaIntercalibration_Stat157: 8.05038210e-08 + syst_JES_EtaIntercalibration_Stat158: 1.97730078e-08 + syst_JES_EtaIntercalibration_Stat159: 1.32789563e-17 syst_JES_EtaIntercalibration_Stat16: 0.0 syst_JES_EtaIntercalibration_Stat160: 0.0 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 - syst_JES_EtaIntercalibration_Stat164: 1.459252805376779e-17 + syst_JES_EtaIntercalibration_Stat164: 1.45925281e-17 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 - syst_JES_EtaIntercalibration_Stat168: 2.0204372670290953e-20 - syst_JES_EtaIntercalibration_Stat169: 2.513307134036745e-08 + syst_JES_EtaIntercalibration_Stat168: 2.02043727e-20 + syst_JES_EtaIntercalibration_Stat169: 2.51330713e-08 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 1.3176043364758633e-07 - syst_JES_EtaIntercalibration_Stat171: 1.8783361653335647e-07 - syst_JES_EtaIntercalibration_Stat172: 1.4794027443532744e-08 - syst_JES_EtaIntercalibration_Stat173: 2.25695059759845e-08 - syst_JES_EtaIntercalibration_Stat174: 1.3730577118242333e-07 - syst_JES_EtaIntercalibration_Stat175: 2.200253501303884e-07 - syst_JES_EtaIntercalibration_Stat176: 1.0172334412401096e-08 - syst_JES_EtaIntercalibration_Stat177: 1.0159224527492243e-16 + syst_JES_EtaIntercalibration_Stat170: 1.31760434e-07 + syst_JES_EtaIntercalibration_Stat171: 1.87833617e-07 + syst_JES_EtaIntercalibration_Stat172: 1.47940274e-08 + syst_JES_EtaIntercalibration_Stat173: 2.25695060e-08 + syst_JES_EtaIntercalibration_Stat174: 1.37305771e-07 + syst_JES_EtaIntercalibration_Stat175: 2.20025350e-07 + syst_JES_EtaIntercalibration_Stat176: 1.01723344e-08 + syst_JES_EtaIntercalibration_Stat177: 1.01592245e-16 syst_JES_EtaIntercalibration_Stat178: 0.0 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 @@ -22015,17 +22015,17 @@ bins: syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 syst_JES_EtaIntercalibration_Stat184: 0.0 - syst_JES_EtaIntercalibration_Stat185: 1.2228278289208238e-08 - syst_JES_EtaIntercalibration_Stat186: 1.3824486274361155e-07 - syst_JES_EtaIntercalibration_Stat187: 9.070404993714448e-07 - syst_JES_EtaIntercalibration_Stat188: 7.984303163081923e-07 - syst_JES_EtaIntercalibration_Stat189: 1.0230227111359748e-07 + syst_JES_EtaIntercalibration_Stat185: 1.22282783e-08 + syst_JES_EtaIntercalibration_Stat186: 1.38244863e-07 + syst_JES_EtaIntercalibration_Stat187: 9.07040499e-07 + syst_JES_EtaIntercalibration_Stat188: 7.98430316e-07 + syst_JES_EtaIntercalibration_Stat189: 1.02302271e-07 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 4.1809479786287706e-08 - syst_JES_EtaIntercalibration_Stat191: 8.369631577913094e-07 - syst_JES_EtaIntercalibration_Stat192: 1.0696256073972798e-06 - syst_JES_EtaIntercalibration_Stat193: 6.459610417819328e-08 - syst_JES_EtaIntercalibration_Stat194: 9.076812257064702e-17 + syst_JES_EtaIntercalibration_Stat190: 4.18094798e-08 + syst_JES_EtaIntercalibration_Stat191: 8.36963158e-07 + syst_JES_EtaIntercalibration_Stat192: 1.06962561e-06 + syst_JES_EtaIntercalibration_Stat193: 6.45961042e-08 + syst_JES_EtaIntercalibration_Stat194: 9.07681226e-17 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 syst_JES_EtaIntercalibration_Stat197: 0.0 @@ -22033,70 +22033,70 @@ bins: syst_JES_EtaIntercalibration_Stat199: 0.0 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 1.2228278767629483e-08 - syst_JES_EtaIntercalibration_Stat201: 1.6009623691704937e-07 - syst_JES_EtaIntercalibration_Stat202: 1.7675437759784055e-06 - syst_JES_EtaIntercalibration_Stat203: 1.7381654121515594e-06 - syst_JES_EtaIntercalibration_Stat204: 1.672990307055005e-07 - syst_JES_EtaIntercalibration_Stat205: 8.703660537383108e-08 - syst_JES_EtaIntercalibration_Stat206: 1.7903491279635936e-06 - syst_JES_EtaIntercalibration_Stat207: 1.8436682863248477e-06 - syst_JES_EtaIntercalibration_Stat208: 2.92903414114619e-07 - syst_JES_EtaIntercalibration_Stat209: 9.669173618169981e-11 + syst_JES_EtaIntercalibration_Stat200: 1.22282788e-08 + syst_JES_EtaIntercalibration_Stat201: 1.60096237e-07 + syst_JES_EtaIntercalibration_Stat202: 1.76754378e-06 + syst_JES_EtaIntercalibration_Stat203: 1.73816541e-06 + syst_JES_EtaIntercalibration_Stat204: 1.67299031e-07 + syst_JES_EtaIntercalibration_Stat205: 8.70366054e-08 + syst_JES_EtaIntercalibration_Stat206: 1.79034913e-06 + syst_JES_EtaIntercalibration_Stat207: 1.84366829e-06 + syst_JES_EtaIntercalibration_Stat208: 2.92903414e-07 + syst_JES_EtaIntercalibration_Stat209: 9.66917362e-11 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 syst_JES_EtaIntercalibration_Stat211: 0.0 syst_JES_EtaIntercalibration_Stat212: 0.0 - syst_JES_EtaIntercalibration_Stat213: 1.2228278288919561e-08 - syst_JES_EtaIntercalibration_Stat214: 1.5838165929172482e-07 - syst_JES_EtaIntercalibration_Stat215: 2.0755078294239216e-06 - syst_JES_EtaIntercalibration_Stat216: 2.1181338484618956e-06 - syst_JES_EtaIntercalibration_Stat217: 2.0972049852124614e-07 - syst_JES_EtaIntercalibration_Stat218: 1.391871287152659e-07 - syst_JES_EtaIntercalibration_Stat219: 2.0001301832630796e-06 + syst_JES_EtaIntercalibration_Stat213: 1.22282783e-08 + syst_JES_EtaIntercalibration_Stat214: 1.58381659e-07 + syst_JES_EtaIntercalibration_Stat215: 2.07550783e-06 + syst_JES_EtaIntercalibration_Stat216: 2.11813385e-06 + syst_JES_EtaIntercalibration_Stat217: 2.09720499e-07 + syst_JES_EtaIntercalibration_Stat218: 1.39187129e-07 + syst_JES_EtaIntercalibration_Stat219: 2.00013018e-06 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 2.147036096575928e-06 - syst_JES_EtaIntercalibration_Stat221: 1.4305149798236997e-07 - syst_JES_EtaIntercalibration_Stat222: 9.663916800235554e-11 + syst_JES_EtaIntercalibration_Stat220: 2.14703610e-06 + syst_JES_EtaIntercalibration_Stat221: 1.43051498e-07 + syst_JES_EtaIntercalibration_Stat222: 9.66391680e-11 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 - syst_JES_EtaIntercalibration_Stat225: 6.299676340892442e-09 - syst_JES_EtaIntercalibration_Stat226: 4.981662774616523e-07 - syst_JES_EtaIntercalibration_Stat227: 5.7840790969695425e-06 - syst_JES_EtaIntercalibration_Stat228: 5.171816194529733e-06 - syst_JES_EtaIntercalibration_Stat229: 4.805289897602432e-07 + syst_JES_EtaIntercalibration_Stat225: 6.29967634e-09 + syst_JES_EtaIntercalibration_Stat226: 4.98166277e-07 + syst_JES_EtaIntercalibration_Stat227: 5.78407910e-06 + syst_JES_EtaIntercalibration_Stat228: 5.17181619e-06 + syst_JES_EtaIntercalibration_Stat229: 4.80528990e-07 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 5.408827414514166e-07 - syst_JES_EtaIntercalibration_Stat231: 6.475943869429383e-06 - syst_JES_EtaIntercalibration_Stat232: 6.080173846198807e-06 - syst_JES_EtaIntercalibration_Stat233: 5.550266907996407e-07 - syst_JES_EtaIntercalibration_Stat234: 3.429616888225272e-08 + syst_JES_EtaIntercalibration_Stat230: 5.40882741e-07 + syst_JES_EtaIntercalibration_Stat231: 6.47594387e-06 + syst_JES_EtaIntercalibration_Stat232: 6.08017385e-06 + syst_JES_EtaIntercalibration_Stat233: 5.55026691e-07 + syst_JES_EtaIntercalibration_Stat234: 3.42961689e-08 syst_JES_EtaIntercalibration_Stat235: 0.0 - syst_JES_EtaIntercalibration_Stat236: 1.2228278701436273e-08 - syst_JES_EtaIntercalibration_Stat237: 1.200190063073345e-07 - syst_JES_EtaIntercalibration_Stat238: 1.2481558075817298e-06 - syst_JES_EtaIntercalibration_Stat239: 8.0443705005426e-07 + syst_JES_EtaIntercalibration_Stat236: 1.22282787e-08 + syst_JES_EtaIntercalibration_Stat237: 1.20019006e-07 + syst_JES_EtaIntercalibration_Stat238: 1.24815581e-06 + syst_JES_EtaIntercalibration_Stat239: 8.04437050e-07 syst_JES_EtaIntercalibration_Stat24: 0.0 - syst_JES_EtaIntercalibration_Stat240: 3.397581014486631e-08 - syst_JES_EtaIntercalibration_Stat241: 6.423006675226175e-08 - syst_JES_EtaIntercalibration_Stat242: 6.456343450436942e-07 - syst_JES_EtaIntercalibration_Stat243: 1.1827323281283893e-06 - syst_JES_EtaIntercalibration_Stat244: 6.862817060070886e-08 - syst_JES_EtaIntercalibration_Stat245: 1.4601188307805637e-12 + syst_JES_EtaIntercalibration_Stat240: 3.39758101e-08 + syst_JES_EtaIntercalibration_Stat241: 6.42300668e-08 + syst_JES_EtaIntercalibration_Stat242: 6.45634345e-07 + syst_JES_EtaIntercalibration_Stat243: 1.18273233e-06 + syst_JES_EtaIntercalibration_Stat244: 6.86281706e-08 + syst_JES_EtaIntercalibration_Stat245: 1.46011883e-12 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 syst_JES_EtaIntercalibration_Stat27: 0.0 - syst_JES_EtaIntercalibration_Stat28: 1.1329344332308027e-23 - syst_JES_EtaIntercalibration_Stat29: 4.679289125497589e-22 + syst_JES_EtaIntercalibration_Stat28: 1.13293443e-23 + syst_JES_EtaIntercalibration_Stat29: 4.67928913e-22 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 2.8410799830346206e-21 - syst_JES_EtaIntercalibration_Stat31: 2.5819405492768416e-21 - syst_JES_EtaIntercalibration_Stat32: 3.967280019106289e-23 - syst_JES_EtaIntercalibration_Stat33: 5.451825929677139e-22 - syst_JES_EtaIntercalibration_Stat34: 1.0233822196536903e-08 - syst_JES_EtaIntercalibration_Stat35: 1.2704965974330145e-17 - syst_JES_EtaIntercalibration_Stat36: 1.2907527571150101e-21 - syst_JES_EtaIntercalibration_Stat37: 8.269676580737605e-24 + syst_JES_EtaIntercalibration_Stat30: 2.84107998e-21 + syst_JES_EtaIntercalibration_Stat31: 2.58194055e-21 + syst_JES_EtaIntercalibration_Stat32: 3.96728002e-23 + syst_JES_EtaIntercalibration_Stat33: 5.45182593e-22 + syst_JES_EtaIntercalibration_Stat34: 1.02338222e-08 + syst_JES_EtaIntercalibration_Stat35: 1.27049660e-17 + syst_JES_EtaIntercalibration_Stat36: 1.29075276e-21 + syst_JES_EtaIntercalibration_Stat37: 8.26967658e-24 syst_JES_EtaIntercalibration_Stat38: 0.0 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 @@ -22111,20 +22111,20 @@ bins: syst_JES_EtaIntercalibration_Stat48: 0.0 syst_JES_EtaIntercalibration_Stat49: 0.0 syst_JES_EtaIntercalibration_Stat5: 0.0 - syst_JES_EtaIntercalibration_Stat50: 1.1476568650951382e-23 - syst_JES_EtaIntercalibration_Stat51: 5.7221392422327515e-22 - syst_JES_EtaIntercalibration_Stat52: 2.0080949255451052e-20 - syst_JES_EtaIntercalibration_Stat53: 1.1666194613068993e-20 - syst_JES_EtaIntercalibration_Stat54: 1.8225038456749549e-22 - syst_JES_EtaIntercalibration_Stat55: 3.4041170838853355e-20 - syst_JES_EtaIntercalibration_Stat56: 1.0243348475960179e-08 - syst_JES_EtaIntercalibration_Stat57: 1.3717842404244917e-12 - syst_JES_EtaIntercalibration_Stat58: 1.1506054525770335e-21 - syst_JES_EtaIntercalibration_Stat59: 2.565525737056637e-23 + syst_JES_EtaIntercalibration_Stat50: 1.14765687e-23 + syst_JES_EtaIntercalibration_Stat51: 5.72213924e-22 + syst_JES_EtaIntercalibration_Stat52: 2.00809493e-20 + syst_JES_EtaIntercalibration_Stat53: 1.16661946e-20 + syst_JES_EtaIntercalibration_Stat54: 1.82250385e-22 + syst_JES_EtaIntercalibration_Stat55: 3.40411708e-20 + syst_JES_EtaIntercalibration_Stat56: 1.02433485e-08 + syst_JES_EtaIntercalibration_Stat57: 1.37178424e-12 + syst_JES_EtaIntercalibration_Stat58: 1.15060545e-21 + syst_JES_EtaIntercalibration_Stat59: 2.56552574e-23 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 3.575818892225947e-22 - syst_JES_EtaIntercalibration_Stat62: 3.575818892225947e-22 + syst_JES_EtaIntercalibration_Stat61: 3.57581889e-22 + syst_JES_EtaIntercalibration_Stat62: 3.57581889e-22 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 @@ -22132,218 +22132,218 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 1.1329344332308027e-23 + syst_JES_EtaIntercalibration_Stat7: 1.13293443e-23 syst_JES_EtaIntercalibration_Stat70: 0.0 syst_JES_EtaIntercalibration_Stat71: 0.0 - syst_JES_EtaIntercalibration_Stat72: 2.832769095778899e-23 - syst_JES_EtaIntercalibration_Stat73: 1.2379769637093414e-19 - syst_JES_EtaIntercalibration_Stat74: 1.0253740380155597e-08 - syst_JES_EtaIntercalibration_Stat75: 5.36242930988654e-10 - syst_JES_EtaIntercalibration_Stat76: 2.4860934716940955e-21 - syst_JES_EtaIntercalibration_Stat77: 2.822782086435295e-20 - syst_JES_EtaIntercalibration_Stat78: 9.89001011025065e-09 - syst_JES_EtaIntercalibration_Stat79: 2.115700061545525e-08 - syst_JES_EtaIntercalibration_Stat8: 2.1957594428197275e-22 - syst_JES_EtaIntercalibration_Stat80: 9.93885043654446e-21 - syst_JES_EtaIntercalibration_Stat81: 5.062784510523829e-23 - syst_JES_EtaIntercalibration_Stat82: 3.575818892225947e-22 - syst_JES_EtaIntercalibration_Stat83: 3.575818892225947e-22 - syst_JES_EtaIntercalibration_Stat84: 3.575818892225947e-22 + syst_JES_EtaIntercalibration_Stat72: 2.83276910e-23 + syst_JES_EtaIntercalibration_Stat73: 1.23797696e-19 + syst_JES_EtaIntercalibration_Stat74: 1.02537404e-08 + syst_JES_EtaIntercalibration_Stat75: 5.36242931e-10 + syst_JES_EtaIntercalibration_Stat76: 2.48609347e-21 + syst_JES_EtaIntercalibration_Stat77: 2.82278209e-20 + syst_JES_EtaIntercalibration_Stat78: 9.89001011e-09 + syst_JES_EtaIntercalibration_Stat79: 2.11570006e-08 + syst_JES_EtaIntercalibration_Stat8: 2.19575944e-22 + syst_JES_EtaIntercalibration_Stat80: 9.93885044e-21 + syst_JES_EtaIntercalibration_Stat81: 5.06278451e-23 + syst_JES_EtaIntercalibration_Stat82: 3.57581889e-22 + syst_JES_EtaIntercalibration_Stat83: 3.57581889e-22 + syst_JES_EtaIntercalibration_Stat84: 3.57581889e-22 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 syst_JES_EtaIntercalibration_Stat89: 0.0 - syst_JES_EtaIntercalibration_Stat9: 1.5244554831152008e-22 + syst_JES_EtaIntercalibration_Stat9: 1.52445548e-22 syst_JES_EtaIntercalibration_Stat90: 0.0 syst_JES_EtaIntercalibration_Stat91: 0.0 syst_JES_EtaIntercalibration_Stat92: 0.0 - syst_JES_EtaIntercalibration_Stat93: 3.9075066218753876e-23 - syst_JES_EtaIntercalibration_Stat94: 1.9058079730130212e-19 - syst_JES_EtaIntercalibration_Stat95: 1.025374037989579e-08 - syst_JES_EtaIntercalibration_Stat96: 9.998854564773907e-09 - syst_JES_EtaIntercalibration_Stat97: 6.721181144789583e-20 - syst_JES_EtaIntercalibration_Stat98: 1.867102768998e-20 - syst_JES_EtaIntercalibration_Stat99: 8.069624711369032e-09 - syst_JES_EtaIntercalibration_TotalStat_MJB: 9.287529313547279e-05 - syst_JES_Flavour_Comp: 0.00022063304376271475 - syst_JES_Flavour_Response: 3.4450568935795526e-05 - syst_JES_Gjet_Generator: 0.0002441880986043341 - syst_JES_Gjet_OOC: 0.00020292385271327766 - syst_JES_Gjet_Purity: 3.332500675168723e-05 - syst_JES_Gjet_Stat1: 1.1625116515545123e-06 - syst_JES_Gjet_Stat10: 4.647175997312776e-06 - syst_JES_Gjet_Stat11: 4.890602825828325e-06 - syst_JES_Gjet_Stat12: 9.581092682987677e-06 - syst_JES_Gjet_Stat13: 4.0915005499205296e-05 - syst_JES_Gjet_Stat14: 0.00010935542270504925 - syst_JES_Gjet_Stat15: 0.0001842122145787298 - syst_JES_Gjet_Stat2: 1.135919953165715e-06 - syst_JES_Gjet_Stat3: 1.4237037156655875e-06 - syst_JES_Gjet_Stat4: 1.0898337338787048e-06 - syst_JES_Gjet_Stat5: 1.4214452785809238e-06 - syst_JES_Gjet_Stat6: 4.558994050226431e-06 - syst_JES_Gjet_Stat7: 2.439183623674118e-06 - syst_JES_Gjet_Stat8: 1.4514999138821882e-06 - syst_JES_Gjet_Stat9: 2.660064425911523e-06 - syst_JES_Gjet_Veto: 0.00020977632731078119 - syst_JES_Gjet_dPhi: 2.2045557375580233e-05 - syst_JES_LArESZee: 0.0003637506391746961 - syst_JES_LArEsmear: 3.307024493407934e-05 - syst_JES_LAr_JVT: 4.237015105000217e-05 - syst_JES_MJB_Alpha: 5.188485978587588e-06 - syst_JES_MJB_Asym: 6.421971893429619e-05 - syst_JES_MJB_Beta: 3.418105615688316e-06 - syst_JES_MJB_Fragmentation: 2.1426049565890584e-05 - syst_JES_MJB_Stat1: 7.580309626261977e-08 - syst_JES_MJB_Stat10: 2.658529057580526e-06 - syst_JES_MJB_Stat11: 3.6910010837169906e-06 - syst_JES_MJB_Stat12: 6.332334166798212e-06 - syst_JES_MJB_Stat13: 9.23307711437525e-06 - syst_JES_MJB_Stat14: 1.0708117610019046e-05 - syst_JES_MJB_Stat15: 2.546390386409751e-05 - syst_JES_MJB_Stat16: 4.214176876923892e-06 - syst_JES_MJB_Stat2: 2.1164672640983607e-07 - syst_JES_MJB_Stat3: 1.8093595220408797e-07 - syst_JES_MJB_Stat4: 2.1406523001178868e-07 - syst_JES_MJB_Stat5: 2.176691900568383e-07 - syst_JES_MJB_Stat6: 3.2961803394231936e-07 - syst_JES_MJB_Stat7: 6.010252740110019e-07 - syst_JES_MJB_Stat8: 1.0306641062926371e-06 - syst_JES_MJB_Stat9: 1.6405246112143517e-06 - syst_JES_MJB_Threshold: 4.0500199999506175e-05 - syst_JES_Pileup_MuOffset: 5.531538009450898e-05 - syst_JES_Pileup_NPVOffset: 5.6035128937123004e-05 - syst_JES_Pileup_Pt_term: 2.7165040033101364e-05 - syst_JES_Pileup_Rho_topology: 6.578603347215881e-05 - syst_JES_PunchThrough_MC15: 7.828186124511859e-05 - syst_JES_SingleParticle_HighPt: 2.4946079351272814e-08 - syst_JES_Zjet_MC: 9.37856400255391e-05 - syst_JES_Zjet_MuScale: 7.012118652732568e-06 - syst_JES_Zjet_MuSmearID: 1.9978400211228125e-06 - syst_JES_Zjet_MuSmearMS: 2.4429324079883995e-05 - syst_JES_Zjet_OOC: 6.0736739087639535e-05 - syst_JES_Zjet_Stat1: 7.671898396094673e-06 - syst_JES_Zjet_Stat10: 4.371500057188608e-06 - syst_JES_Zjet_Stat11: 6.259215186427129e-06 - syst_JES_Zjet_Stat12: 1.4364448710270785e-05 - syst_JES_Zjet_Stat13: 2.3764044268600414e-05 - syst_JES_Zjet_Stat2: 1.3660258892129387e-07 - syst_JES_Zjet_Stat3: 4.024188210061751e-06 - syst_JES_Zjet_Stat4: 3.608223112558313e-06 - syst_JES_Zjet_Stat5: 4.0867135940753175e-06 - syst_JES_Zjet_Stat6: 3.0310253628104138e-06 - syst_JES_Zjet_Stat7: 3.768214912926278e-06 - syst_JES_Zjet_Stat8: 2.438248705526161e-06 - syst_JES_Zjet_Stat9: 2.8992983633975994e-06 - syst_JES_Zjet_Veto: 1.1379438156165707e-05 - syst_JES_Zjet_dPhi: 1.0602693337072426e-05 - syst_PRW: 6.682e-06 - syst_Unfolding_bias: 6.947e-06 - syst_cleaning: 5.5590170668923114e-05 - syst_lumi: 0.0001817 -- stat: 7.536e-05 + syst_JES_EtaIntercalibration_Stat93: 3.90750662e-23 + syst_JES_EtaIntercalibration_Stat94: 1.90580797e-19 + syst_JES_EtaIntercalibration_Stat95: 1.02537404e-08 + syst_JES_EtaIntercalibration_Stat96: 9.99885456e-09 + syst_JES_EtaIntercalibration_Stat97: 6.72118114e-20 + syst_JES_EtaIntercalibration_Stat98: 1.86710277e-20 + syst_JES_EtaIntercalibration_Stat99: 8.06962471e-09 + syst_JES_EtaIntercalibration_TotalStat_MJB: 9.28752931e-05 + syst_JES_Flavour_Comp: 2.20633044e-04 + syst_JES_Flavour_Response: 3.44505689e-05 + syst_JES_Gjet_Generator: 2.44188099e-04 + syst_JES_Gjet_OOC: 2.02923853e-04 + syst_JES_Gjet_Purity: 3.33250068e-05 + syst_JES_Gjet_Stat1: 1.16251165e-06 + syst_JES_Gjet_Stat10: 4.64717600e-06 + syst_JES_Gjet_Stat11: 4.89060283e-06 + syst_JES_Gjet_Stat12: 9.58109268e-06 + syst_JES_Gjet_Stat13: 4.09150055e-05 + syst_JES_Gjet_Stat14: 1.09355423e-04 + syst_JES_Gjet_Stat15: 1.84212215e-04 + syst_JES_Gjet_Stat2: 1.13591995e-06 + syst_JES_Gjet_Stat3: 1.42370372e-06 + syst_JES_Gjet_Stat4: 1.08983373e-06 + syst_JES_Gjet_Stat5: 1.42144528e-06 + syst_JES_Gjet_Stat6: 4.55899405e-06 + syst_JES_Gjet_Stat7: 2.43918362e-06 + syst_JES_Gjet_Stat8: 1.45149991e-06 + syst_JES_Gjet_Stat9: 2.66006443e-06 + syst_JES_Gjet_Veto: 2.09776327e-04 + syst_JES_Gjet_dPhi: 2.20455574e-05 + syst_JES_LArESZee: 3.63750639e-04 + syst_JES_LArEsmear: 3.30702449e-05 + syst_JES_LAr_JVT: 4.23701511e-05 + syst_JES_MJB_Alpha: 5.18848598e-06 + syst_JES_MJB_Asym: 6.42197189e-05 + syst_JES_MJB_Beta: 3.41810562e-06 + syst_JES_MJB_Fragmentation: 2.14260496e-05 + syst_JES_MJB_Stat1: 7.58030963e-08 + syst_JES_MJB_Stat10: 2.65852906e-06 + syst_JES_MJB_Stat11: 3.69100108e-06 + syst_JES_MJB_Stat12: 6.33233417e-06 + syst_JES_MJB_Stat13: 9.23307711e-06 + syst_JES_MJB_Stat14: 1.07081176e-05 + syst_JES_MJB_Stat15: 2.54639039e-05 + syst_JES_MJB_Stat16: 4.21417688e-06 + syst_JES_MJB_Stat2: 2.11646726e-07 + syst_JES_MJB_Stat3: 1.80935952e-07 + syst_JES_MJB_Stat4: 2.14065230e-07 + syst_JES_MJB_Stat5: 2.17669190e-07 + syst_JES_MJB_Stat6: 3.29618034e-07 + syst_JES_MJB_Stat7: 6.01025274e-07 + syst_JES_MJB_Stat8: 1.03066411e-06 + syst_JES_MJB_Stat9: 1.64052461e-06 + syst_JES_MJB_Threshold: 4.05002000e-05 + syst_JES_Pileup_MuOffset: 5.53153801e-05 + syst_JES_Pileup_NPVOffset: 5.60351289e-05 + syst_JES_Pileup_Pt_term: 2.71650400e-05 + syst_JES_Pileup_Rho_topology: 6.57860335e-05 + syst_JES_PunchThrough_MC15: 7.82818612e-05 + syst_JES_SingleParticle_HighPt: 2.49460794e-08 + syst_JES_Zjet_MC: 9.37856400e-05 + syst_JES_Zjet_MuScale: 7.01211865e-06 + syst_JES_Zjet_MuSmearID: 1.99784002e-06 + syst_JES_Zjet_MuSmearMS: 2.44293241e-05 + syst_JES_Zjet_OOC: 6.07367391e-05 + syst_JES_Zjet_Stat1: 7.67189840e-06 + syst_JES_Zjet_Stat10: 4.37150006e-06 + syst_JES_Zjet_Stat11: 6.25921519e-06 + syst_JES_Zjet_Stat12: 1.43644487e-05 + syst_JES_Zjet_Stat13: 2.37640443e-05 + syst_JES_Zjet_Stat2: 1.36602589e-07 + syst_JES_Zjet_Stat3: 4.02418821e-06 + syst_JES_Zjet_Stat4: 3.60822311e-06 + syst_JES_Zjet_Stat5: 4.08671359e-06 + syst_JES_Zjet_Stat6: 3.03102536e-06 + syst_JES_Zjet_Stat7: 3.76821491e-06 + syst_JES_Zjet_Stat8: 2.43824871e-06 + syst_JES_Zjet_Stat9: 2.89929836e-06 + syst_JES_Zjet_Veto: 1.13794382e-05 + syst_JES_Zjet_dPhi: 1.06026933e-05 + syst_PRW: 6.68200000e-06 + syst_Unfolding_bias: 6.94700000e-06 + syst_cleaning: 5.55901707e-05 + syst_lumi: 1.81700000e-04 +- stat: 7.53600000e-05 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 8.475529880190382e-06 - syst_JER_NP1: 1.573395144266055e-06 - syst_JER_NP2: 5.970823289128561e-06 - syst_JER_NP3: 5.632854582713813e-07 - syst_JER_NP4: 2.5119798964163707e-06 - syst_JER_NP5: 3.0599308815723273e-06 - syst_JER_NP6: 2.3320068610533716e-06 - syst_JER_NP7: 5.930543111994165e-07 - syst_JER_NP8: 2.3360048694298564e-06 - syst_JES_EtaIntercalibration_Modelling: 7.465411760244709e-05 - syst_JES_EtaIntercalibration_NonClosure: 1.1805658304389469e-19 + syst_JER_NP0: 8.47552988e-06 + syst_JER_NP1: 1.57339514e-06 + syst_JER_NP2: 5.97082329e-06 + syst_JER_NP3: 5.63285458e-07 + syst_JER_NP4: 2.51197990e-06 + syst_JER_NP5: 3.05993088e-06 + syst_JER_NP6: 2.33200686e-06 + syst_JER_NP7: 5.93054311e-07 + syst_JER_NP8: 2.33600487e-06 + syst_JES_EtaIntercalibration_Modelling: 7.46541176e-05 + syst_JES_EtaIntercalibration_NonClosure: 1.18056583e-19 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 1.2176317177758845e-09 - syst_JES_EtaIntercalibration_Stat101: 8.314022973266311e-22 - syst_JES_EtaIntercalibration_Stat102: 1.4075426529949278e-23 - syst_JES_EtaIntercalibration_Stat103: 5.533036304778779e-23 - syst_JES_EtaIntercalibration_Stat104: 5.533036304778779e-23 - syst_JES_EtaIntercalibration_Stat105: 5.533036304778779e-23 + syst_JES_EtaIntercalibration_Stat100: 1.21763172e-09 + syst_JES_EtaIntercalibration_Stat101: 8.31402297e-22 + syst_JES_EtaIntercalibration_Stat102: 1.40754265e-23 + syst_JES_EtaIntercalibration_Stat103: 5.53303630e-23 + syst_JES_EtaIntercalibration_Stat104: 5.53303630e-23 + syst_JES_EtaIntercalibration_Stat105: 5.53303630e-23 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 8.064428560040692e-21 - syst_JES_EtaIntercalibration_Stat111: 8.064428560040692e-21 + syst_JES_EtaIntercalibration_Stat110: 8.06442856e-21 + syst_JES_EtaIntercalibration_Stat111: 8.06442856e-21 syst_JES_EtaIntercalibration_Stat112: 0.0 - syst_JES_EtaIntercalibration_Stat113: 1.7855485172629726e-22 - syst_JES_EtaIntercalibration_Stat114: 8.715679540739857e-10 - syst_JES_EtaIntercalibration_Stat115: 2.3858814786153985e-08 - syst_JES_EtaIntercalibration_Stat116: 1.6426174478557082e-08 - syst_JES_EtaIntercalibration_Stat117: 1.6801853558461937e-18 - syst_JES_EtaIntercalibration_Stat118: 1.614271352698794e-09 - syst_JES_EtaIntercalibration_Stat119: 6.2178567649954756e-09 - syst_JES_EtaIntercalibration_Stat12: 2.2432485104586607e-21 - syst_JES_EtaIntercalibration_Stat120: 6.294596253930827e-09 - syst_JES_EtaIntercalibration_Stat121: 5.042629671114071e-18 - syst_JES_EtaIntercalibration_Stat122: 1.3981527920796066e-22 - syst_JES_EtaIntercalibration_Stat123: 5.533036304778779e-23 - syst_JES_EtaIntercalibration_Stat124: 5.533036304778779e-23 - syst_JES_EtaIntercalibration_Stat125: 5.533036304778779e-23 + syst_JES_EtaIntercalibration_Stat113: 1.78554852e-22 + syst_JES_EtaIntercalibration_Stat114: 8.71567954e-10 + syst_JES_EtaIntercalibration_Stat115: 2.38588148e-08 + syst_JES_EtaIntercalibration_Stat116: 1.64261745e-08 + syst_JES_EtaIntercalibration_Stat117: 1.68018536e-18 + syst_JES_EtaIntercalibration_Stat118: 1.61427135e-09 + syst_JES_EtaIntercalibration_Stat119: 6.21785676e-09 + syst_JES_EtaIntercalibration_Stat12: 2.24324851e-21 + syst_JES_EtaIntercalibration_Stat120: 6.29459625e-09 + syst_JES_EtaIntercalibration_Stat121: 5.04262967e-18 + syst_JES_EtaIntercalibration_Stat122: 1.39815279e-22 + syst_JES_EtaIntercalibration_Stat123: 5.53303630e-23 + syst_JES_EtaIntercalibration_Stat124: 5.53303630e-23 + syst_JES_EtaIntercalibration_Stat125: 5.53303630e-23 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 6.360956590796702e-19 - syst_JES_EtaIntercalibration_Stat129: 6.334531478396803e-19 - syst_JES_EtaIntercalibration_Stat13: 3.779431245035158e-21 - syst_JES_EtaIntercalibration_Stat130: 8.064428560040692e-21 - syst_JES_EtaIntercalibration_Stat131: 2.292369243817409e-24 - syst_JES_EtaIntercalibration_Stat132: 1.5086485457852667e-19 - syst_JES_EtaIntercalibration_Stat133: 2.433531384321493e-09 - syst_JES_EtaIntercalibration_Stat134: 1.0308687695337366e-08 - syst_JES_EtaIntercalibration_Stat135: 1.676625548864031e-08 - syst_JES_EtaIntercalibration_Stat136: 2.397158318027308e-08 - syst_JES_EtaIntercalibration_Stat137: 4.311871171544901e-09 - syst_JES_EtaIntercalibration_Stat138: 2.2054110999992723e-08 - syst_JES_EtaIntercalibration_Stat139: 2.0660346076481876e-08 - syst_JES_EtaIntercalibration_Stat14: 6.745471870076992e-24 - syst_JES_EtaIntercalibration_Stat140: 3.2959193993371186e-12 - syst_JES_EtaIntercalibration_Stat141: 5.586740823573515e-19 + syst_JES_EtaIntercalibration_Stat128: 6.36095659e-19 + syst_JES_EtaIntercalibration_Stat129: 6.33453148e-19 + syst_JES_EtaIntercalibration_Stat13: 3.77943125e-21 + syst_JES_EtaIntercalibration_Stat130: 8.06442856e-21 + syst_JES_EtaIntercalibration_Stat131: 2.29236924e-24 + syst_JES_EtaIntercalibration_Stat132: 1.50864855e-19 + syst_JES_EtaIntercalibration_Stat133: 2.43353138e-09 + syst_JES_EtaIntercalibration_Stat134: 1.03086877e-08 + syst_JES_EtaIntercalibration_Stat135: 1.67662555e-08 + syst_JES_EtaIntercalibration_Stat136: 2.39715832e-08 + syst_JES_EtaIntercalibration_Stat137: 4.31187117e-09 + syst_JES_EtaIntercalibration_Stat138: 2.20541110e-08 + syst_JES_EtaIntercalibration_Stat139: 2.06603461e-08 + syst_JES_EtaIntercalibration_Stat14: 6.74547187e-24 + syst_JES_EtaIntercalibration_Stat140: 3.29591940e-12 + syst_JES_EtaIntercalibration_Stat141: 5.58674082e-19 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 5.533036304778779e-23 - syst_JES_EtaIntercalibration_Stat144: 5.533036304778779e-23 + syst_JES_EtaIntercalibration_Stat143: 5.53303630e-23 + syst_JES_EtaIntercalibration_Stat144: 5.53303630e-23 syst_JES_EtaIntercalibration_Stat145: 0.0 - syst_JES_EtaIntercalibration_Stat146: 6.360956590796702e-19 - syst_JES_EtaIntercalibration_Stat147: 6.334531478396803e-19 + syst_JES_EtaIntercalibration_Stat146: 6.36095659e-19 + syst_JES_EtaIntercalibration_Stat147: 6.33453148e-19 syst_JES_EtaIntercalibration_Stat148: 0.0 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 5.496014737971506e-22 - syst_JES_EtaIntercalibration_Stat151: 2.434397408512986e-09 - syst_JES_EtaIntercalibration_Stat152: 9.305285001949161e-09 - syst_JES_EtaIntercalibration_Stat153: 1.8415663353515126e-08 - syst_JES_EtaIntercalibration_Stat154: 3.125485695208006e-09 - syst_JES_EtaIntercalibration_Stat155: 4.684336105575688e-09 - syst_JES_EtaIntercalibration_Stat156: 2.9493929460144845e-08 - syst_JES_EtaIntercalibration_Stat157: 2.986885053027652e-08 - syst_JES_EtaIntercalibration_Stat158: 1.600625815111077e-09 - syst_JES_EtaIntercalibration_Stat159: 5.622839208531286e-19 + syst_JES_EtaIntercalibration_Stat150: 5.49601474e-22 + syst_JES_EtaIntercalibration_Stat151: 2.43439741e-09 + syst_JES_EtaIntercalibration_Stat152: 9.30528500e-09 + syst_JES_EtaIntercalibration_Stat153: 1.84156634e-08 + syst_JES_EtaIntercalibration_Stat154: 3.12548570e-09 + syst_JES_EtaIntercalibration_Stat155: 4.68433611e-09 + syst_JES_EtaIntercalibration_Stat156: 2.94939295e-08 + syst_JES_EtaIntercalibration_Stat157: 2.98688505e-08 + syst_JES_EtaIntercalibration_Stat158: 1.60062582e-09 + syst_JES_EtaIntercalibration_Stat159: 5.62283921e-19 syst_JES_EtaIntercalibration_Stat16: 0.0 syst_JES_EtaIntercalibration_Stat160: 0.0 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 - syst_JES_EtaIntercalibration_Stat164: 6.360956590796702e-19 + syst_JES_EtaIntercalibration_Stat164: 6.36095659e-19 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 - syst_JES_EtaIntercalibration_Stat168: 3.822636132304513e-21 - syst_JES_EtaIntercalibration_Stat169: 5.114882267217888e-09 + syst_JES_EtaIntercalibration_Stat168: 3.82263613e-21 + syst_JES_EtaIntercalibration_Stat169: 5.11488227e-09 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 4.3644753121079736e-08 - syst_JES_EtaIntercalibration_Stat171: 5.1364317137483686e-08 - syst_JES_EtaIntercalibration_Stat172: 5.826547777200492e-09 - syst_JES_EtaIntercalibration_Stat173: 8.862716513575283e-09 - syst_JES_EtaIntercalibration_Stat174: 6.920329959618978e-08 - syst_JES_EtaIntercalibration_Stat175: 4.229536942739713e-08 - syst_JES_EtaIntercalibration_Stat176: 4.783058308468562e-09 - syst_JES_EtaIntercalibration_Stat177: 4.0391871298566996e-18 + syst_JES_EtaIntercalibration_Stat170: 4.36447531e-08 + syst_JES_EtaIntercalibration_Stat171: 5.13643171e-08 + syst_JES_EtaIntercalibration_Stat172: 5.82654778e-09 + syst_JES_EtaIntercalibration_Stat173: 8.86271651e-09 + syst_JES_EtaIntercalibration_Stat174: 6.92032996e-08 + syst_JES_EtaIntercalibration_Stat175: 4.22953694e-08 + syst_JES_EtaIntercalibration_Stat176: 4.78305831e-09 + syst_JES_EtaIntercalibration_Stat177: 4.03918713e-18 syst_JES_EtaIntercalibration_Stat178: 0.0 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 @@ -22352,17 +22352,17 @@ bins: syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 syst_JES_EtaIntercalibration_Stat184: 0.0 - syst_JES_EtaIntercalibration_Stat185: 1.0026841995141296e-09 - syst_JES_EtaIntercalibration_Stat186: 2.5892279679472027e-08 - syst_JES_EtaIntercalibration_Stat187: 3.8697357467920213e-07 - syst_JES_EtaIntercalibration_Stat188: 2.758626968257941e-07 - syst_JES_EtaIntercalibration_Stat189: 3.1115854479670005e-08 + syst_JES_EtaIntercalibration_Stat185: 1.00268420e-09 + syst_JES_EtaIntercalibration_Stat186: 2.58922797e-08 + syst_JES_EtaIntercalibration_Stat187: 3.86973575e-07 + syst_JES_EtaIntercalibration_Stat188: 2.75862697e-07 + syst_JES_EtaIntercalibration_Stat189: 3.11158545e-08 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 1.601575807603249e-08 - syst_JES_EtaIntercalibration_Stat191: 2.651367713086965e-07 - syst_JES_EtaIntercalibration_Stat192: 3.751016262294793e-07 - syst_JES_EtaIntercalibration_Stat193: 3.6336057504908263e-08 - syst_JES_EtaIntercalibration_Stat194: 3.312373964394721e-18 + syst_JES_EtaIntercalibration_Stat190: 1.60157581e-08 + syst_JES_EtaIntercalibration_Stat191: 2.65136771e-07 + syst_JES_EtaIntercalibration_Stat192: 3.75101626e-07 + syst_JES_EtaIntercalibration_Stat193: 3.63360575e-08 + syst_JES_EtaIntercalibration_Stat194: 3.31237396e-18 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 syst_JES_EtaIntercalibration_Stat197: 0.0 @@ -22370,70 +22370,70 @@ bins: syst_JES_EtaIntercalibration_Stat199: 0.0 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 1.002770817379404e-09 - syst_JES_EtaIntercalibration_Stat201: 6.67753209127444e-08 - syst_JES_EtaIntercalibration_Stat202: 7.26161860400283e-07 - syst_JES_EtaIntercalibration_Stat203: 6.788195397158217e-07 - syst_JES_EtaIntercalibration_Stat204: 5.195141095292793e-08 - syst_JES_EtaIntercalibration_Stat205: 5.463478447838885e-08 - syst_JES_EtaIntercalibration_Stat206: 6.848035685508655e-07 - syst_JES_EtaIntercalibration_Stat207: 6.443011097305359e-07 - syst_JES_EtaIntercalibration_Stat208: 5.794892643526711e-08 - syst_JES_EtaIntercalibration_Stat209: 3.2831022974502837e-12 + syst_JES_EtaIntercalibration_Stat200: 1.00277082e-09 + syst_JES_EtaIntercalibration_Stat201: 6.67753209e-08 + syst_JES_EtaIntercalibration_Stat202: 7.26161860e-07 + syst_JES_EtaIntercalibration_Stat203: 6.78819540e-07 + syst_JES_EtaIntercalibration_Stat204: 5.19514110e-08 + syst_JES_EtaIntercalibration_Stat205: 5.46347845e-08 + syst_JES_EtaIntercalibration_Stat206: 6.84803569e-07 + syst_JES_EtaIntercalibration_Stat207: 6.44301110e-07 + syst_JES_EtaIntercalibration_Stat208: 5.79489264e-08 + syst_JES_EtaIntercalibration_Stat209: 3.28310230e-12 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 syst_JES_EtaIntercalibration_Stat211: 0.0 syst_JES_EtaIntercalibration_Stat212: 0.0 - syst_JES_EtaIntercalibration_Stat213: 1.0027708019765655e-09 - syst_JES_EtaIntercalibration_Stat214: 6.405450491573563e-08 - syst_JES_EtaIntercalibration_Stat215: 8.145133807986213e-07 - syst_JES_EtaIntercalibration_Stat216: 8.339182393976042e-07 - syst_JES_EtaIntercalibration_Stat217: 6.024841138984496e-08 - syst_JES_EtaIntercalibration_Stat218: 6.656367984869825e-08 - syst_JES_EtaIntercalibration_Stat219: 7.660033420292629e-07 + syst_JES_EtaIntercalibration_Stat213: 1.00277080e-09 + syst_JES_EtaIntercalibration_Stat214: 6.40545049e-08 + syst_JES_EtaIntercalibration_Stat215: 8.14513381e-07 + syst_JES_EtaIntercalibration_Stat216: 8.33918239e-07 + syst_JES_EtaIntercalibration_Stat217: 6.02484114e-08 + syst_JES_EtaIntercalibration_Stat218: 6.65636798e-08 + syst_JES_EtaIntercalibration_Stat219: 7.66003342e-07 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 7.68479946062355e-07 - syst_JES_EtaIntercalibration_Stat221: 4.184364318507651e-08 - syst_JES_EtaIntercalibration_Stat222: 3.281728787250251e-12 + syst_JES_EtaIntercalibration_Stat220: 7.68479946e-07 + syst_JES_EtaIntercalibration_Stat221: 4.18436432e-08 + syst_JES_EtaIntercalibration_Stat222: 3.28172879e-12 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 - syst_JES_EtaIntercalibration_Stat225: 2.206341584501367e-09 - syst_JES_EtaIntercalibration_Stat226: 2.4040866768899995e-07 - syst_JES_EtaIntercalibration_Stat227: 2.22178773738627e-06 - syst_JES_EtaIntercalibration_Stat228: 1.998420876592316e-06 - syst_JES_EtaIntercalibration_Stat229: 1.8135232973413933e-07 + syst_JES_EtaIntercalibration_Stat225: 2.20634158e-09 + syst_JES_EtaIntercalibration_Stat226: 2.40408668e-07 + syst_JES_EtaIntercalibration_Stat227: 2.22178774e-06 + syst_JES_EtaIntercalibration_Stat228: 1.99842088e-06 + syst_JES_EtaIntercalibration_Stat229: 1.81352330e-07 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 1.6720768523007548e-07 - syst_JES_EtaIntercalibration_Stat231: 2.5165358630466602e-06 - syst_JES_EtaIntercalibration_Stat232: 2.2424234100633177e-06 - syst_JES_EtaIntercalibration_Stat233: 1.8619776448711732e-07 - syst_JES_EtaIntercalibration_Stat234: 2.260044253991501e-09 + syst_JES_EtaIntercalibration_Stat230: 1.67207685e-07 + syst_JES_EtaIntercalibration_Stat231: 2.51653586e-06 + syst_JES_EtaIntercalibration_Stat232: 2.24242341e-06 + syst_JES_EtaIntercalibration_Stat233: 1.86197764e-07 + syst_JES_EtaIntercalibration_Stat234: 2.26004425e-09 syst_JES_EtaIntercalibration_Stat235: 0.0 - syst_JES_EtaIntercalibration_Stat236: 1.0027708150420014e-09 - syst_JES_EtaIntercalibration_Stat237: 3.794727548520446e-08 - syst_JES_EtaIntercalibration_Stat238: 5.042053624268588e-07 - syst_JES_EtaIntercalibration_Stat239: 3.1798504681824265e-07 + syst_JES_EtaIntercalibration_Stat236: 1.00277082e-09 + syst_JES_EtaIntercalibration_Stat237: 3.79472755e-08 + syst_JES_EtaIntercalibration_Stat238: 5.04205362e-07 + syst_JES_EtaIntercalibration_Stat239: 3.17985047e-07 syst_JES_EtaIntercalibration_Stat24: 0.0 - syst_JES_EtaIntercalibration_Stat240: 3.438970658133041e-08 - syst_JES_EtaIntercalibration_Stat241: 3.7568045504124914e-08 - syst_JES_EtaIntercalibration_Stat242: 2.458962382794824e-07 - syst_JES_EtaIntercalibration_Stat243: 4.043624858960089e-07 - syst_JES_EtaIntercalibration_Stat244: 3.7881289576781834e-08 - syst_JES_EtaIntercalibration_Stat245: 3.7758707605001524e-14 + syst_JES_EtaIntercalibration_Stat240: 3.43897066e-08 + syst_JES_EtaIntercalibration_Stat241: 3.75680455e-08 + syst_JES_EtaIntercalibration_Stat242: 2.45896238e-07 + syst_JES_EtaIntercalibration_Stat243: 4.04362486e-07 + syst_JES_EtaIntercalibration_Stat244: 3.78812896e-08 + syst_JES_EtaIntercalibration_Stat245: 3.77587076e-14 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 syst_JES_EtaIntercalibration_Stat27: 0.0 - syst_JES_EtaIntercalibration_Stat28: 1.917380243978747e-24 - syst_JES_EtaIntercalibration_Stat29: 5.402044890594671e-23 + syst_JES_EtaIntercalibration_Stat28: 1.91738024e-24 + syst_JES_EtaIntercalibration_Stat29: 5.40204489e-23 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 2.2106141471319684e-22 - syst_JES_EtaIntercalibration_Stat31: 2.208911666409501e-22 - syst_JES_EtaIntercalibration_Stat32: 6.443965173113523e-24 - syst_JES_EtaIntercalibration_Stat33: 7.298375591013387e-23 - syst_JES_EtaIntercalibration_Stat34: 1.6186014796719378e-09 - syst_JES_EtaIntercalibration_Stat35: 5.311649369421217e-19 - syst_JES_EtaIntercalibration_Stat36: 1.1975071899575384e-22 - syst_JES_EtaIntercalibration_Stat37: 1.3994970525156528e-24 + syst_JES_EtaIntercalibration_Stat30: 2.21061415e-22 + syst_JES_EtaIntercalibration_Stat31: 2.20891167e-22 + syst_JES_EtaIntercalibration_Stat32: 6.44396517e-24 + syst_JES_EtaIntercalibration_Stat33: 7.29837559e-23 + syst_JES_EtaIntercalibration_Stat34: 1.61860148e-09 + syst_JES_EtaIntercalibration_Stat35: 5.31164937e-19 + syst_JES_EtaIntercalibration_Stat36: 1.19750719e-22 + syst_JES_EtaIntercalibration_Stat37: 1.39949705e-24 syst_JES_EtaIntercalibration_Stat38: 0.0 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 @@ -22448,20 +22448,20 @@ bins: syst_JES_EtaIntercalibration_Stat48: 0.0 syst_JES_EtaIntercalibration_Stat49: 0.0 syst_JES_EtaIntercalibration_Stat5: 0.0 - syst_JES_EtaIntercalibration_Stat50: 1.941628955284711e-24 - syst_JES_EtaIntercalibration_Stat51: 6.492613726381695e-23 - syst_JES_EtaIntercalibration_Stat52: 2.4374996923076724e-21 - syst_JES_EtaIntercalibration_Stat53: 7.378943519739123e-22 - syst_JES_EtaIntercalibration_Stat54: 1.798481750671938e-23 - syst_JES_EtaIntercalibration_Stat55: 2.3291411429269376e-21 - syst_JES_EtaIntercalibration_Stat56: 1.6168694288657474e-09 - syst_JES_EtaIntercalibration_Stat57: 3.531651601598153e-14 - syst_JES_EtaIntercalibration_Stat58: 8.857284163331332e-23 - syst_JES_EtaIntercalibration_Stat59: 4.224230196142251e-24 + syst_JES_EtaIntercalibration_Stat50: 1.94162896e-24 + syst_JES_EtaIntercalibration_Stat51: 6.49261373e-23 + syst_JES_EtaIntercalibration_Stat52: 2.43749969e-21 + syst_JES_EtaIntercalibration_Stat53: 7.37894352e-22 + syst_JES_EtaIntercalibration_Stat54: 1.79848175e-23 + syst_JES_EtaIntercalibration_Stat55: 2.32914114e-21 + syst_JES_EtaIntercalibration_Stat56: 1.61686943e-09 + syst_JES_EtaIntercalibration_Stat57: 3.53165160e-14 + syst_JES_EtaIntercalibration_Stat58: 8.85728416e-23 + syst_JES_EtaIntercalibration_Stat59: 4.22423020e-24 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 5.533036304778779e-23 - syst_JES_EtaIntercalibration_Stat62: 5.533036304778779e-23 + syst_JES_EtaIntercalibration_Stat61: 5.53303630e-23 + syst_JES_EtaIntercalibration_Stat62: 5.53303630e-23 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 @@ -22469,218 +22469,218 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 1.917380243978747e-24 + syst_JES_EtaIntercalibration_Stat7: 1.91738024e-24 syst_JES_EtaIntercalibration_Stat70: 0.0 syst_JES_EtaIntercalibration_Stat71: 0.0 - syst_JES_EtaIntercalibration_Stat72: 7.077159599726431e-24 - syst_JES_EtaIntercalibration_Stat73: 7.525184755705338e-21 - syst_JES_EtaIntercalibration_Stat74: 8.966826904546449e-10 - syst_JES_EtaIntercalibration_Stat75: 1.1406420637238934e-11 - syst_JES_EtaIntercalibration_Stat76: 9.076983020255134e-23 - syst_JES_EtaIntercalibration_Stat77: 1.9315946779798293e-21 - syst_JES_EtaIntercalibration_Stat78: 1.524204710703538e-09 - syst_JES_EtaIntercalibration_Stat79: 7.316182611218685e-09 - syst_JES_EtaIntercalibration_Stat8: 3.3060363530215455e-23 - syst_JES_EtaIntercalibration_Stat80: 8.09025059871448e-22 - syst_JES_EtaIntercalibration_Stat81: 7.950979232144931e-24 - syst_JES_EtaIntercalibration_Stat82: 5.533036304778779e-23 - syst_JES_EtaIntercalibration_Stat83: 5.533036304778779e-23 - syst_JES_EtaIntercalibration_Stat84: 5.533036304778779e-23 + syst_JES_EtaIntercalibration_Stat72: 7.07715960e-24 + syst_JES_EtaIntercalibration_Stat73: 7.52518476e-21 + syst_JES_EtaIntercalibration_Stat74: 8.96682690e-10 + syst_JES_EtaIntercalibration_Stat75: 1.14064206e-11 + syst_JES_EtaIntercalibration_Stat76: 9.07698302e-23 + syst_JES_EtaIntercalibration_Stat77: 1.93159468e-21 + syst_JES_EtaIntercalibration_Stat78: 1.52420471e-09 + syst_JES_EtaIntercalibration_Stat79: 7.31618261e-09 + syst_JES_EtaIntercalibration_Stat8: 3.30603635e-23 + syst_JES_EtaIntercalibration_Stat80: 8.09025060e-22 + syst_JES_EtaIntercalibration_Stat81: 7.95097923e-24 + syst_JES_EtaIntercalibration_Stat82: 5.53303630e-23 + syst_JES_EtaIntercalibration_Stat83: 5.53303630e-23 + syst_JES_EtaIntercalibration_Stat84: 5.53303630e-23 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 syst_JES_EtaIntercalibration_Stat89: 0.0 - syst_JES_EtaIntercalibration_Stat9: 1.939327911932379e-23 + syst_JES_EtaIntercalibration_Stat9: 1.93932791e-23 syst_JES_EtaIntercalibration_Stat90: 0.0 syst_JES_EtaIntercalibration_Stat91: 0.0 syst_JES_EtaIntercalibration_Stat92: 0.0 - syst_JES_EtaIntercalibration_Stat93: 8.500905363548049e-24 - syst_JES_EtaIntercalibration_Stat94: 1.2262844317286263e-20 - syst_JES_EtaIntercalibration_Stat95: 8.96682690347835e-10 - syst_JES_EtaIntercalibration_Stat96: 3.5114283261100462e-09 - syst_JES_EtaIntercalibration_Stat97: 4.253599758096077e-21 - syst_JES_EtaIntercalibration_Stat98: 1.2834e-21 - syst_JES_EtaIntercalibration_Stat99: 1.5675059808970323e-09 - syst_JES_EtaIntercalibration_TotalStat_MJB: 4.0750353372700955e-05 - syst_JES_Flavour_Comp: 7.635060968977261e-05 - syst_JES_Flavour_Response: 2.2460360638244435e-05 - syst_JES_Gjet_Generator: 9.389299654393825e-05 - syst_JES_Gjet_OOC: 7.775590958248769e-05 - syst_JES_Gjet_Purity: 1.0330586091795565e-05 - syst_JES_Gjet_Stat1: 2.8075295403610625e-07 - syst_JES_Gjet_Stat10: 2.8405958441848075e-06 - syst_JES_Gjet_Stat11: 2.9291365621971265e-06 - syst_JES_Gjet_Stat12: 3.2855171206371763e-06 - syst_JES_Gjet_Stat13: 1.8112356969759625e-05 - syst_JES_Gjet_Stat14: 4.845504179133478e-05 - syst_JES_Gjet_Stat15: 8.140272477012055e-05 - syst_JES_Gjet_Stat2: 4.917544509203756e-07 - syst_JES_Gjet_Stat3: 5.441404506191394e-07 - syst_JES_Gjet_Stat4: 8.078474778694305e-07 - syst_JES_Gjet_Stat5: 8.881320791413855e-07 - syst_JES_Gjet_Stat6: 1.8848490655752785e-06 - syst_JES_Gjet_Stat7: 1.1222944477720632e-06 - syst_JES_Gjet_Stat8: 5.192152034561391e-07 - syst_JES_Gjet_Stat9: 1.2946573948346333e-06 - syst_JES_Gjet_Veto: 8.393645393987049e-05 - syst_JES_Gjet_dPhi: 7.657164929006036e-06 - syst_JES_LArESZee: 0.00013587134088909256 - syst_JES_LArEsmear: 1.260632234238043e-05 - syst_JES_LAr_JVT: 1.630188562712915e-05 - syst_JES_MJB_Alpha: 2.7331613563783607e-06 - syst_JES_MJB_Asym: 3.828874692060319e-05 - syst_JES_MJB_Beta: 2.5386820891951006e-06 - syst_JES_MJB_Fragmentation: 1.0611299013315946e-05 - syst_JES_MJB_Stat1: 5.991829499410009e-09 - syst_JES_MJB_Stat10: 6.510811527759039e-07 - syst_JES_MJB_Stat11: 9.474355954364391e-07 - syst_JES_MJB_Stat12: 1.776576483014452e-06 - syst_JES_MJB_Stat13: 2.956054930139154e-06 - syst_JES_MJB_Stat14: 6.939041918737773e-06 - syst_JES_MJB_Stat15: 6.603249048763797e-06 - syst_JES_MJB_Stat16: 1.5701630488583025e-05 - syst_JES_MJB_Stat2: 5.7700489451996846e-08 - syst_JES_MJB_Stat3: 5.290207247358085e-08 - syst_JES_MJB_Stat4: 5.461294606306732e-08 - syst_JES_MJB_Stat5: 5.343396953249871e-08 - syst_JES_MJB_Stat6: 9.04601575280521e-08 - syst_JES_MJB_Stat7: 1.2373744299927974e-07 - syst_JES_MJB_Stat8: 2.0317718252796005e-07 - syst_JES_MJB_Stat9: 3.5088375211742135e-07 - syst_JES_MJB_Threshold: 1.67750141579672e-05 - syst_JES_Pileup_MuOffset: 2.5110322578573142e-05 - syst_JES_Pileup_NPVOffset: 2.2982106082776662e-05 - syst_JES_Pileup_Pt_term: 9.682384158873267e-06 - syst_JES_Pileup_Rho_topology: 2.7905151406147217e-05 - syst_JES_PunchThrough_MC15: 3.8604504918467746e-05 - syst_JES_SingleParticle_HighPt: 1.6070472146144306e-07 - syst_JES_Zjet_MC: 3.61931941116006e-05 - syst_JES_Zjet_MuScale: 3.250669892499083e-06 - syst_JES_Zjet_MuSmearID: 6.939725120636983e-07 - syst_JES_Zjet_MuSmearMS: 8.596727924041799e-06 - syst_JES_Zjet_OOC: 2.3539789718686952e-05 - syst_JES_Zjet_Stat1: 3.77900026462026e-06 - syst_JES_Zjet_Stat10: 1.8972324580820347e-06 - syst_JES_Zjet_Stat11: 2.479008672836785e-06 - syst_JES_Zjet_Stat12: 5.018639930299841e-06 - syst_JES_Zjet_Stat13: 8.651430575344174e-06 - syst_JES_Zjet_Stat2: 5.537577358376133e-08 - syst_JES_Zjet_Stat3: 1.46394424415686e-06 - syst_JES_Zjet_Stat4: 1.6364956461903588e-06 - syst_JES_Zjet_Stat5: 1.7147559593131613e-06 - syst_JES_Zjet_Stat6: 1.5749219028256608e-06 - syst_JES_Zjet_Stat7: 1.7474850500075818e-06 - syst_JES_Zjet_Stat8: 9.142510090232333e-07 - syst_JES_Zjet_Stat9: 1.4184360225262189e-06 - syst_JES_Zjet_Veto: 4.428027326022278e-06 - syst_JES_Zjet_dPhi: 4.1972877849868715e-06 + syst_JES_EtaIntercalibration_Stat93: 8.50090536e-24 + syst_JES_EtaIntercalibration_Stat94: 1.22628443e-20 + syst_JES_EtaIntercalibration_Stat95: 8.96682690e-10 + syst_JES_EtaIntercalibration_Stat96: 3.51142833e-09 + syst_JES_EtaIntercalibration_Stat97: 4.25359976e-21 + syst_JES_EtaIntercalibration_Stat98: 1.28340000e-21 + syst_JES_EtaIntercalibration_Stat99: 1.56750598e-09 + syst_JES_EtaIntercalibration_TotalStat_MJB: 4.07503534e-05 + syst_JES_Flavour_Comp: 7.63506097e-05 + syst_JES_Flavour_Response: 2.24603606e-05 + syst_JES_Gjet_Generator: 9.38929965e-05 + syst_JES_Gjet_OOC: 7.77559096e-05 + syst_JES_Gjet_Purity: 1.03305861e-05 + syst_JES_Gjet_Stat1: 2.80752954e-07 + syst_JES_Gjet_Stat10: 2.84059584e-06 + syst_JES_Gjet_Stat11: 2.92913656e-06 + syst_JES_Gjet_Stat12: 3.28551712e-06 + syst_JES_Gjet_Stat13: 1.81123570e-05 + syst_JES_Gjet_Stat14: 4.84550418e-05 + syst_JES_Gjet_Stat15: 8.14027248e-05 + syst_JES_Gjet_Stat2: 4.91754451e-07 + syst_JES_Gjet_Stat3: 5.44140451e-07 + syst_JES_Gjet_Stat4: 8.07847478e-07 + syst_JES_Gjet_Stat5: 8.88132079e-07 + syst_JES_Gjet_Stat6: 1.88484907e-06 + syst_JES_Gjet_Stat7: 1.12229445e-06 + syst_JES_Gjet_Stat8: 5.19215203e-07 + syst_JES_Gjet_Stat9: 1.29465739e-06 + syst_JES_Gjet_Veto: 8.39364539e-05 + syst_JES_Gjet_dPhi: 7.65716493e-06 + syst_JES_LArESZee: 1.35871341e-04 + syst_JES_LArEsmear: 1.26063223e-05 + syst_JES_LAr_JVT: 1.63018856e-05 + syst_JES_MJB_Alpha: 2.73316136e-06 + syst_JES_MJB_Asym: 3.82887469e-05 + syst_JES_MJB_Beta: 2.53868209e-06 + syst_JES_MJB_Fragmentation: 1.06112990e-05 + syst_JES_MJB_Stat1: 5.99182950e-09 + syst_JES_MJB_Stat10: 6.51081153e-07 + syst_JES_MJB_Stat11: 9.47435595e-07 + syst_JES_MJB_Stat12: 1.77657648e-06 + syst_JES_MJB_Stat13: 2.95605493e-06 + syst_JES_MJB_Stat14: 6.93904192e-06 + syst_JES_MJB_Stat15: 6.60324905e-06 + syst_JES_MJB_Stat16: 1.57016305e-05 + syst_JES_MJB_Stat2: 5.77004895e-08 + syst_JES_MJB_Stat3: 5.29020725e-08 + syst_JES_MJB_Stat4: 5.46129461e-08 + syst_JES_MJB_Stat5: 5.34339695e-08 + syst_JES_MJB_Stat6: 9.04601575e-08 + syst_JES_MJB_Stat7: 1.23737443e-07 + syst_JES_MJB_Stat8: 2.03177183e-07 + syst_JES_MJB_Stat9: 3.50883752e-07 + syst_JES_MJB_Threshold: 1.67750142e-05 + syst_JES_Pileup_MuOffset: 2.51103226e-05 + syst_JES_Pileup_NPVOffset: 2.29821061e-05 + syst_JES_Pileup_Pt_term: 9.68238416e-06 + syst_JES_Pileup_Rho_topology: 2.79051514e-05 + syst_JES_PunchThrough_MC15: 3.86045049e-05 + syst_JES_SingleParticle_HighPt: 1.60704721e-07 + syst_JES_Zjet_MC: 3.61931941e-05 + syst_JES_Zjet_MuScale: 3.25066989e-06 + syst_JES_Zjet_MuSmearID: 6.93972512e-07 + syst_JES_Zjet_MuSmearMS: 8.59672792e-06 + syst_JES_Zjet_OOC: 2.35397897e-05 + syst_JES_Zjet_Stat1: 3.77900026e-06 + syst_JES_Zjet_Stat10: 1.89723246e-06 + syst_JES_Zjet_Stat11: 2.47900867e-06 + syst_JES_Zjet_Stat12: 5.01863993e-06 + syst_JES_Zjet_Stat13: 8.65143058e-06 + syst_JES_Zjet_Stat2: 5.53757736e-08 + syst_JES_Zjet_Stat3: 1.46394424e-06 + syst_JES_Zjet_Stat4: 1.63649565e-06 + syst_JES_Zjet_Stat5: 1.71475596e-06 + syst_JES_Zjet_Stat6: 1.57492190e-06 + syst_JES_Zjet_Stat7: 1.74748505e-06 + syst_JES_Zjet_Stat8: 9.14251009e-07 + syst_JES_Zjet_Stat9: 1.41843602e-06 + syst_JES_Zjet_Veto: 4.42802733e-06 + syst_JES_Zjet_dPhi: 4.19728778e-06 syst_PRW: 2.2e-06 - syst_Unfolding_bias: 2.402e-06 - syst_cleaning: 1.9156481931711783e-05 - syst_lumi: 6.282e-05 -- stat: 2.3601e-05 + syst_Unfolding_bias: 2.40200000e-06 + syst_cleaning: 1.91564819e-05 + syst_lumi: 6.28200000e-05 +- stat: 2.36010000e-05 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 2.0760531664675644e-06 - syst_JER_NP1: 7.538816402460004e-07 - syst_JER_NP2: 1.8764117352009927e-06 - syst_JER_NP3: 4.0215142359564014e-07 - syst_JER_NP4: 6.360912513154068e-07 - syst_JER_NP5: 1.0717666478762997e-06 - syst_JER_NP6: 8.28117727137875e-07 - syst_JER_NP7: 1.1774481432750354e-07 - syst_JER_NP8: 7.351909734892017e-07 - syst_JES_EtaIntercalibration_Modelling: 1.4795285566693196e-05 - syst_JES_EtaIntercalibration_NonClosure: 1.1705199357550473e-21 + syst_JER_NP0: 2.07605317e-06 + syst_JER_NP1: 7.53881640e-07 + syst_JER_NP2: 1.87641174e-06 + syst_JER_NP3: 4.02151424e-07 + syst_JER_NP4: 6.36091251e-07 + syst_JER_NP5: 1.07176665e-06 + syst_JER_NP6: 8.28117727e-07 + syst_JER_NP7: 1.17744814e-07 + syst_JER_NP8: 7.35190973e-07 + syst_JES_EtaIntercalibration_Modelling: 1.47952856e-05 + syst_JES_EtaIntercalibration_NonClosure: 1.17051994e-21 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 1.1518137870338247e-09 - syst_JES_EtaIntercalibration_Stat101: 2.3474267336809473e-23 - syst_JES_EtaIntercalibration_Stat102: 6.284153890540874e-25 - syst_JES_EtaIntercalibration_Stat103: 3.1696529778510453e-24 - syst_JES_EtaIntercalibration_Stat104: 3.1696529778510453e-24 - syst_JES_EtaIntercalibration_Stat105: 3.1696529778510453e-24 + syst_JES_EtaIntercalibration_Stat100: 1.15181379e-09 + syst_JES_EtaIntercalibration_Stat101: 2.34742673e-23 + syst_JES_EtaIntercalibration_Stat102: 6.28415389e-25 + syst_JES_EtaIntercalibration_Stat103: 3.16965298e-24 + syst_JES_EtaIntercalibration_Stat104: 3.16965298e-24 + syst_JES_EtaIntercalibration_Stat105: 3.16965298e-24 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 1.5371950917173785e-22 - syst_JES_EtaIntercalibration_Stat111: 1.5371950917173785e-22 + syst_JES_EtaIntercalibration_Stat110: 1.53719509e-22 + syst_JES_EtaIntercalibration_Stat111: 1.53719509e-22 syst_JES_EtaIntercalibration_Stat112: 0.0 - syst_JES_EtaIntercalibration_Stat113: 5.578645960266702e-24 - syst_JES_EtaIntercalibration_Stat114: 4.60638905844148e-12 - syst_JES_EtaIntercalibration_Stat115: 4.7353122515838384e-09 - syst_JES_EtaIntercalibration_Stat116: 5.5669387889575365e-09 - syst_JES_EtaIntercalibration_Stat117: 1.4871602292624693e-20 - syst_JES_EtaIntercalibration_Stat118: 1.1096383498694872e-09 - syst_JES_EtaIntercalibration_Stat119: 1.9375889656993816e-09 - syst_JES_EtaIntercalibration_Stat12: 3.881217168299141e-23 - syst_JES_EtaIntercalibration_Stat120: 2.257945904467155e-09 - syst_JES_EtaIntercalibration_Stat121: 3.4568411982617884e-20 - syst_JES_EtaIntercalibration_Stat122: 4.300194008123354e-24 - syst_JES_EtaIntercalibration_Stat123: 3.1696529778510453e-24 - syst_JES_EtaIntercalibration_Stat124: 3.1696529778510453e-24 - syst_JES_EtaIntercalibration_Stat125: 3.1696529778510453e-24 + syst_JES_EtaIntercalibration_Stat113: 5.57864596e-24 + syst_JES_EtaIntercalibration_Stat114: 4.60638906e-12 + syst_JES_EtaIntercalibration_Stat115: 4.73531225e-09 + syst_JES_EtaIntercalibration_Stat116: 5.56693879e-09 + syst_JES_EtaIntercalibration_Stat117: 1.48716023e-20 + syst_JES_EtaIntercalibration_Stat118: 1.10963835e-09 + syst_JES_EtaIntercalibration_Stat119: 1.93758897e-09 + syst_JES_EtaIntercalibration_Stat12: 3.88121717e-23 + syst_JES_EtaIntercalibration_Stat120: 2.25794590e-09 + syst_JES_EtaIntercalibration_Stat121: 3.45684120e-20 + syst_JES_EtaIntercalibration_Stat122: 4.30019401e-24 + syst_JES_EtaIntercalibration_Stat123: 3.16965298e-24 + syst_JES_EtaIntercalibration_Stat124: 3.16965298e-24 + syst_JES_EtaIntercalibration_Stat125: 3.16965298e-24 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 5.837877246910901e-21 - syst_JES_EtaIntercalibration_Stat129: 5.788452011332563e-21 - syst_JES_EtaIntercalibration_Stat13: 7.58255380934913e-23 - syst_JES_EtaIntercalibration_Stat130: 1.5371950917173785e-22 - syst_JES_EtaIntercalibration_Stat131: 1.2217020371187075e-25 - syst_JES_EtaIntercalibration_Stat132: 1.6038616075194894e-21 - syst_JES_EtaIntercalibration_Stat133: 1.28085157219101e-10 - syst_JES_EtaIntercalibration_Stat134: 2.157984420257709e-09 - syst_JES_EtaIntercalibration_Stat135: 3.3280490339229106e-09 - syst_JES_EtaIntercalibration_Stat136: 1.4384681957049215e-09 - syst_JES_EtaIntercalibration_Stat137: 1.6144350766986575e-09 - syst_JES_EtaIntercalibration_Stat138: 2.5976423926322114e-09 - syst_JES_EtaIntercalibration_Stat139: 4.506597053209883e-09 - syst_JES_EtaIntercalibration_Stat14: 3.9932431368500462e-25 - syst_JES_EtaIntercalibration_Stat140: 9.528345761677364e-15 - syst_JES_EtaIntercalibration_Stat141: 4.823822210516217e-21 + syst_JES_EtaIntercalibration_Stat128: 5.83787725e-21 + syst_JES_EtaIntercalibration_Stat129: 5.78845201e-21 + syst_JES_EtaIntercalibration_Stat13: 7.58255381e-23 + syst_JES_EtaIntercalibration_Stat130: 1.53719509e-22 + syst_JES_EtaIntercalibration_Stat131: 1.22170204e-25 + syst_JES_EtaIntercalibration_Stat132: 1.60386161e-21 + syst_JES_EtaIntercalibration_Stat133: 1.28085157e-10 + syst_JES_EtaIntercalibration_Stat134: 2.15798442e-09 + syst_JES_EtaIntercalibration_Stat135: 3.32804903e-09 + syst_JES_EtaIntercalibration_Stat136: 1.43846820e-09 + syst_JES_EtaIntercalibration_Stat137: 1.61443508e-09 + syst_JES_EtaIntercalibration_Stat138: 2.59764239e-09 + syst_JES_EtaIntercalibration_Stat139: 4.50659705e-09 + syst_JES_EtaIntercalibration_Stat14: 3.99324314e-25 + syst_JES_EtaIntercalibration_Stat140: 9.52834576e-15 + syst_JES_EtaIntercalibration_Stat141: 4.82382221e-21 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 3.1696529778510453e-24 - syst_JES_EtaIntercalibration_Stat144: 3.1696529778510453e-24 + syst_JES_EtaIntercalibration_Stat143: 3.16965298e-24 + syst_JES_EtaIntercalibration_Stat144: 3.16965298e-24 syst_JES_EtaIntercalibration_Stat145: 0.0 - syst_JES_EtaIntercalibration_Stat146: 5.837877246910901e-21 - syst_JES_EtaIntercalibration_Stat147: 5.788452011332563e-21 + syst_JES_EtaIntercalibration_Stat146: 5.83787725e-21 + syst_JES_EtaIntercalibration_Stat147: 5.78845201e-21 syst_JES_EtaIntercalibration_Stat148: 0.0 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 1.3256380152590677e-23 - syst_JES_EtaIntercalibration_Stat151: 1.2808515721140463e-10 - syst_JES_EtaIntercalibration_Stat152: 6.91232469940468e-09 - syst_JES_EtaIntercalibration_Stat153: 8.194516749021873e-09 - syst_JES_EtaIntercalibration_Stat154: 6.205938044166497e-10 - syst_JES_EtaIntercalibration_Stat155: 1.541044511849025e-09 - syst_JES_EtaIntercalibration_Stat156: 8.265358612909667e-09 - syst_JES_EtaIntercalibration_Stat157: 5.181092162855241e-09 - syst_JES_EtaIntercalibration_Stat158: 7.903720706097856e-12 - syst_JES_EtaIntercalibration_Stat159: 4.8762985765332296e-21 + syst_JES_EtaIntercalibration_Stat150: 1.32563802e-23 + syst_JES_EtaIntercalibration_Stat151: 1.28085157e-10 + syst_JES_EtaIntercalibration_Stat152: 6.91232470e-09 + syst_JES_EtaIntercalibration_Stat153: 8.19451675e-09 + syst_JES_EtaIntercalibration_Stat154: 6.20593804e-10 + syst_JES_EtaIntercalibration_Stat155: 1.54104451e-09 + syst_JES_EtaIntercalibration_Stat156: 8.26535861e-09 + syst_JES_EtaIntercalibration_Stat157: 5.18109216e-09 + syst_JES_EtaIntercalibration_Stat158: 7.90372071e-12 + syst_JES_EtaIntercalibration_Stat159: 4.87629858e-21 syst_JES_EtaIntercalibration_Stat16: 0.0 syst_JES_EtaIntercalibration_Stat160: 0.0 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 - syst_JES_EtaIntercalibration_Stat164: 5.837877246910901e-21 + syst_JES_EtaIntercalibration_Stat164: 5.83787725e-21 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 - syst_JES_EtaIntercalibration_Stat168: 1.188793071774899e-22 - syst_JES_EtaIntercalibration_Stat169: 1.646205033911329e-09 + syst_JES_EtaIntercalibration_Stat168: 1.18879307e-22 + syst_JES_EtaIntercalibration_Stat169: 1.64620503e-09 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 1.001217074364995e-08 - syst_JES_EtaIntercalibration_Stat171: 1.4575922638035645e-08 - syst_JES_EtaIntercalibration_Stat172: 3.0319433949201623e-09 - syst_JES_EtaIntercalibration_Stat173: 1.9406200059517062e-09 - syst_JES_EtaIntercalibration_Stat174: 8.361634215271559e-09 - syst_JES_EtaIntercalibration_Stat175: 1.6197200591460244e-08 - syst_JES_EtaIntercalibration_Stat176: 2.4317993337735296e-09 - syst_JES_EtaIntercalibration_Stat177: 3.201188561690798e-20 + syst_JES_EtaIntercalibration_Stat170: 1.00121707e-08 + syst_JES_EtaIntercalibration_Stat171: 1.45759226e-08 + syst_JES_EtaIntercalibration_Stat172: 3.03194339e-09 + syst_JES_EtaIntercalibration_Stat173: 1.94062001e-09 + syst_JES_EtaIntercalibration_Stat174: 8.36163422e-09 + syst_JES_EtaIntercalibration_Stat175: 1.61972006e-08 + syst_JES_EtaIntercalibration_Stat176: 2.43179933e-09 + syst_JES_EtaIntercalibration_Stat177: 3.20118856e-20 syst_JES_EtaIntercalibration_Stat178: 0.0 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 @@ -22689,17 +22689,17 @@ bins: syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 syst_JES_EtaIntercalibration_Stat184: 0.0 - syst_JES_EtaIntercalibration_Stat185: 5.0194831725825555e-12 - syst_JES_EtaIntercalibration_Stat186: 3.998725140591686e-09 - syst_JES_EtaIntercalibration_Stat187: 5.5275042062399194e-08 - syst_JES_EtaIntercalibration_Stat188: 5.9316053476272346e-08 - syst_JES_EtaIntercalibration_Stat189: 9.755309598751852e-09 + syst_JES_EtaIntercalibration_Stat185: 5.01948317e-12 + syst_JES_EtaIntercalibration_Stat186: 3.99872514e-09 + syst_JES_EtaIntercalibration_Stat187: 5.52750421e-08 + syst_JES_EtaIntercalibration_Stat188: 5.93160535e-08 + syst_JES_EtaIntercalibration_Stat189: 9.75530960e-09 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 3.924949426425773e-09 - syst_JES_EtaIntercalibration_Stat191: 6.390531824504124e-08 - syst_JES_EtaIntercalibration_Stat192: 9.03394558042055e-08 - syst_JES_EtaIntercalibration_Stat193: 1.1045236484566548e-08 - syst_JES_EtaIntercalibration_Stat194: 2.2923692438174092e-20 + syst_JES_EtaIntercalibration_Stat190: 3.92494943e-09 + syst_JES_EtaIntercalibration_Stat191: 6.39053182e-08 + syst_JES_EtaIntercalibration_Stat192: 9.03394558e-08 + syst_JES_EtaIntercalibration_Stat193: 1.10452365e-08 + syst_JES_EtaIntercalibration_Stat194: 2.29236924e-20 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 syst_JES_EtaIntercalibration_Stat197: 0.0 @@ -22707,70 +22707,70 @@ bins: syst_JES_EtaIntercalibration_Stat199: 0.0 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 5.019483255466957e-12 - syst_JES_EtaIntercalibration_Stat201: 8.715871856371168e-09 - syst_JES_EtaIntercalibration_Stat202: 1.2822870612698236e-07 - syst_JES_EtaIntercalibration_Stat203: 1.3270505378469953e-07 - syst_JES_EtaIntercalibration_Stat204: 1.913990404234044e-08 - syst_JES_EtaIntercalibration_Stat205: 1.0917560991356998e-08 - syst_JES_EtaIntercalibration_Stat206: 1.558975304486893e-07 - syst_JES_EtaIntercalibration_Stat207: 1.3889296985448903e-07 - syst_JES_EtaIntercalibration_Stat208: 1.393136995237726e-08 - syst_JES_EtaIntercalibration_Stat209: 9.488174214656512e-15 + syst_JES_EtaIntercalibration_Stat200: 5.01948326e-12 + syst_JES_EtaIntercalibration_Stat201: 8.71587186e-09 + syst_JES_EtaIntercalibration_Stat202: 1.28228706e-07 + syst_JES_EtaIntercalibration_Stat203: 1.32705054e-07 + syst_JES_EtaIntercalibration_Stat204: 1.91399040e-08 + syst_JES_EtaIntercalibration_Stat205: 1.09175610e-08 + syst_JES_EtaIntercalibration_Stat206: 1.55897530e-07 + syst_JES_EtaIntercalibration_Stat207: 1.38892970e-07 + syst_JES_EtaIntercalibration_Stat208: 1.39313700e-08 + syst_JES_EtaIntercalibration_Stat209: 9.48817421e-15 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 syst_JES_EtaIntercalibration_Stat211: 0.0 syst_JES_EtaIntercalibration_Stat212: 0.0 - syst_JES_EtaIntercalibration_Stat213: 5.0194831710525775e-12 - syst_JES_EtaIntercalibration_Stat214: 8.562565571573744e-09 - syst_JES_EtaIntercalibration_Stat215: 1.4846733883248533e-07 - syst_JES_EtaIntercalibration_Stat216: 1.734511170330131e-07 - syst_JES_EtaIntercalibration_Stat217: 2.0117634726776405e-08 - syst_JES_EtaIntercalibration_Stat218: 2.1024463768429387e-08 - syst_JES_EtaIntercalibration_Stat219: 1.8622005128342112e-07 + syst_JES_EtaIntercalibration_Stat213: 5.01948317e-12 + syst_JES_EtaIntercalibration_Stat214: 8.56256557e-09 + syst_JES_EtaIntercalibration_Stat215: 1.48467339e-07 + syst_JES_EtaIntercalibration_Stat216: 1.73451117e-07 + syst_JES_EtaIntercalibration_Stat217: 2.01176347e-08 + syst_JES_EtaIntercalibration_Stat218: 2.10244638e-08 + syst_JES_EtaIntercalibration_Stat219: 1.86220051e-07 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 1.6056210636386158e-07 - syst_JES_EtaIntercalibration_Stat221: 1.2611889975336765e-08 - syst_JES_EtaIntercalibration_Stat222: 9.484456424122313e-15 + syst_JES_EtaIntercalibration_Stat220: 1.60562106e-07 + syst_JES_EtaIntercalibration_Stat221: 1.26118900e-08 + syst_JES_EtaIntercalibration_Stat222: 9.48445642e-15 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 - syst_JES_EtaIntercalibration_Stat225: 1.259766835569186e-10 - syst_JES_EtaIntercalibration_Stat226: 2.964081097068702e-08 - syst_JES_EtaIntercalibration_Stat227: 4.572173744511466e-07 - syst_JES_EtaIntercalibration_Stat228: 4.5090079840248674e-07 - syst_JES_EtaIntercalibration_Stat229: 3.754563989333515e-08 + syst_JES_EtaIntercalibration_Stat225: 1.25976684e-10 + syst_JES_EtaIntercalibration_Stat226: 2.96408110e-08 + syst_JES_EtaIntercalibration_Stat227: 4.57217374e-07 + syst_JES_EtaIntercalibration_Stat228: 4.50900798e-07 + syst_JES_EtaIntercalibration_Stat229: 3.75456399e-08 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 4.4473732696952704e-08 - syst_JES_EtaIntercalibration_Stat231: 5.763527110199101e-07 - syst_JES_EtaIntercalibration_Stat232: 4.6038945198603325e-07 - syst_JES_EtaIntercalibration_Stat233: 2.7377846427358015e-08 - syst_JES_EtaIntercalibration_Stat234: 5.305823498760583e-12 + syst_JES_EtaIntercalibration_Stat230: 4.44737327e-08 + syst_JES_EtaIntercalibration_Stat231: 5.76352711e-07 + syst_JES_EtaIntercalibration_Stat232: 4.60389452e-07 + syst_JES_EtaIntercalibration_Stat233: 2.73778464e-08 + syst_JES_EtaIntercalibration_Stat234: 5.30582350e-12 syst_JES_EtaIntercalibration_Stat235: 0.0 - syst_JES_EtaIntercalibration_Stat236: 5.019483240334606e-12 - syst_JES_EtaIntercalibration_Stat237: 6.5323968909428654e-09 - syst_JES_EtaIntercalibration_Stat238: 8.976891834036989e-08 - syst_JES_EtaIntercalibration_Stat239: 6.3262657231577e-08 + syst_JES_EtaIntercalibration_Stat236: 5.01948324e-12 + syst_JES_EtaIntercalibration_Stat237: 6.53239689e-09 + syst_JES_EtaIntercalibration_Stat238: 8.97689183e-08 + syst_JES_EtaIntercalibration_Stat239: 6.32626572e-08 syst_JES_EtaIntercalibration_Stat24: 0.0 - syst_JES_EtaIntercalibration_Stat240: 8.843226899723879e-09 - syst_JES_EtaIntercalibration_Stat241: 7.608183160255804e-09 - syst_JES_EtaIntercalibration_Stat242: 6.166449545727265e-08 - syst_JES_EtaIntercalibration_Stat243: 9.473346399240345e-08 - syst_JES_EtaIntercalibration_Stat244: 1.2049135529157267e-08 - syst_JES_EtaIntercalibration_Stat245: 1.1028833517194825e-16 + syst_JES_EtaIntercalibration_Stat240: 8.84322690e-09 + syst_JES_EtaIntercalibration_Stat241: 7.60818316e-09 + syst_JES_EtaIntercalibration_Stat242: 6.16644955e-08 + syst_JES_EtaIntercalibration_Stat243: 9.47334640e-08 + syst_JES_EtaIntercalibration_Stat244: 1.20491355e-08 + syst_JES_EtaIntercalibration_Stat245: 1.10288335e-16 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 syst_JES_EtaIntercalibration_Stat27: 0.0 - syst_JES_EtaIntercalibration_Stat28: 1.2488086322571605e-25 - syst_JES_EtaIntercalibration_Stat29: 2.1337687942933274e-24 + syst_JES_EtaIntercalibration_Stat28: 1.24880863e-25 + syst_JES_EtaIntercalibration_Stat29: 2.13376879e-24 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 3.883199063594345e-24 - syst_JES_EtaIntercalibration_Stat31: 4.549702929862564e-24 - syst_JES_EtaIntercalibration_Stat32: 4.0617741197658937e-25 - syst_JES_EtaIntercalibration_Stat33: 3.365520778052039e-24 - syst_JES_EtaIntercalibration_Stat34: 1.1609070537730158e-09 - syst_JES_EtaIntercalibration_Stat35: 4.473566494801212e-21 - syst_JES_EtaIntercalibration_Stat36: 3.3074272584593603e-24 - syst_JES_EtaIntercalibration_Stat37: 9.115783400235001e-26 + syst_JES_EtaIntercalibration_Stat30: 3.88319906e-24 + syst_JES_EtaIntercalibration_Stat31: 4.54970293e-24 + syst_JES_EtaIntercalibration_Stat32: 4.06177412e-25 + syst_JES_EtaIntercalibration_Stat33: 3.36552078e-24 + syst_JES_EtaIntercalibration_Stat34: 1.16090705e-09 + syst_JES_EtaIntercalibration_Stat35: 4.47356649e-21 + syst_JES_EtaIntercalibration_Stat36: 3.30742726e-24 + syst_JES_EtaIntercalibration_Stat37: 9.11578340e-26 syst_JES_EtaIntercalibration_Stat38: 0.0 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 @@ -22785,20 +22785,20 @@ bins: syst_JES_EtaIntercalibration_Stat48: 0.0 syst_JES_EtaIntercalibration_Stat49: 0.0 syst_JES_EtaIntercalibration_Stat5: 0.0 - syst_JES_EtaIntercalibration_Stat50: 1.2652631149290648e-25 - syst_JES_EtaIntercalibration_Stat51: 3.2891965386701967e-24 - syst_JES_EtaIntercalibration_Stat52: 7.790618765541026e-23 - syst_JES_EtaIntercalibration_Stat53: 1.1322032094549105e-23 - syst_JES_EtaIntercalibration_Stat54: 7.718696311554173e-25 - syst_JES_EtaIntercalibration_Stat55: 4.262430320448066e-23 - syst_JES_EtaIntercalibration_Stat56: 1.1607338486922886e-09 - syst_JES_EtaIntercalibration_Stat57: 1.111456991363948e-16 - syst_JES_EtaIntercalibration_Stat58: 2.322865085944511e-24 - syst_JES_EtaIntercalibration_Stat59: 2.6609041546060996e-25 + syst_JES_EtaIntercalibration_Stat50: 1.26526311e-25 + syst_JES_EtaIntercalibration_Stat51: 3.28919654e-24 + syst_JES_EtaIntercalibration_Stat52: 7.79061877e-23 + syst_JES_EtaIntercalibration_Stat53: 1.13220321e-23 + syst_JES_EtaIntercalibration_Stat54: 7.71869631e-25 + syst_JES_EtaIntercalibration_Stat55: 4.26243032e-23 + syst_JES_EtaIntercalibration_Stat56: 1.16073385e-09 + syst_JES_EtaIntercalibration_Stat57: 1.11145699e-16 + syst_JES_EtaIntercalibration_Stat58: 2.32286509e-24 + syst_JES_EtaIntercalibration_Stat59: 2.66090415e-25 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 3.1696529778510453e-24 - syst_JES_EtaIntercalibration_Stat62: 3.1696529778510453e-24 + syst_JES_EtaIntercalibration_Stat61: 3.16965298e-24 + syst_JES_EtaIntercalibration_Stat62: 3.16965298e-24 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 @@ -22806,129 +22806,129 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 1.2488086322571605e-25 + syst_JES_EtaIntercalibration_Stat7: 1.24880863e-25 syst_JES_EtaIntercalibration_Stat70: 0.0 syst_JES_EtaIntercalibration_Stat71: 0.0 - syst_JES_EtaIntercalibration_Stat72: 5.5884619306209825e-25 - syst_JES_EtaIntercalibration_Stat73: 1.1955359161794344e-22 - syst_JES_EtaIntercalibration_Stat74: 4.6133172599397056e-12 - syst_JES_EtaIntercalibration_Stat75: 1.0661639167167311e-14 - syst_JES_EtaIntercalibration_Stat76: 5.774651569575432e-24 - syst_JES_EtaIntercalibration_Stat77: 3.776793882382252e-23 - syst_JES_EtaIntercalibration_Stat78: 1.1072134787387786e-09 - syst_JES_EtaIntercalibration_Stat79: 1.4523246021469802e-09 - syst_JES_EtaIntercalibration_Stat8: 1.8843208511291276e-24 - syst_JES_EtaIntercalibration_Stat80: 1.9598584719310728e-23 - syst_JES_EtaIntercalibration_Stat81: 4.7016519171457175e-25 - syst_JES_EtaIntercalibration_Stat82: 3.1696529778510453e-24 - syst_JES_EtaIntercalibration_Stat83: 3.1696529778510453e-24 - syst_JES_EtaIntercalibration_Stat84: 3.1696529778510453e-24 + syst_JES_EtaIntercalibration_Stat72: 5.58846193e-25 + syst_JES_EtaIntercalibration_Stat73: 1.19553592e-22 + syst_JES_EtaIntercalibration_Stat74: 4.61331726e-12 + syst_JES_EtaIntercalibration_Stat75: 1.06616392e-14 + syst_JES_EtaIntercalibration_Stat76: 5.77465157e-24 + syst_JES_EtaIntercalibration_Stat77: 3.77679388e-23 + syst_JES_EtaIntercalibration_Stat78: 1.10721348e-09 + syst_JES_EtaIntercalibration_Stat79: 1.45232460e-09 + syst_JES_EtaIntercalibration_Stat8: 1.88432085e-24 + syst_JES_EtaIntercalibration_Stat80: 1.95985847e-23 + syst_JES_EtaIntercalibration_Stat81: 4.70165192e-25 + syst_JES_EtaIntercalibration_Stat82: 3.16965298e-24 + syst_JES_EtaIntercalibration_Stat83: 3.16965298e-24 + syst_JES_EtaIntercalibration_Stat84: 3.16965298e-24 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 syst_JES_EtaIntercalibration_Stat89: 0.0 - syst_JES_EtaIntercalibration_Stat9: 8.77991349615701e-25 + syst_JES_EtaIntercalibration_Stat9: 8.77991350e-25 syst_JES_EtaIntercalibration_Stat90: 0.0 syst_JES_EtaIntercalibration_Stat91: 0.0 syst_JES_EtaIntercalibration_Stat92: 0.0 - syst_JES_EtaIntercalibration_Stat93: 6.258765593150138e-25 - syst_JES_EtaIntercalibration_Stat94: 2.1102619902514476e-22 - syst_JES_EtaIntercalibration_Stat95: 4.613317257716907e-12 - syst_JES_EtaIntercalibration_Stat96: 6.978397800682792e-10 - syst_JES_EtaIntercalibration_Stat97: 6.480863035699797e-23 - syst_JES_EtaIntercalibration_Stat98: 1.8603666090316715e-23 - syst_JES_EtaIntercalibration_Stat99: 1.107473286359884e-09 - syst_JES_EtaIntercalibration_TotalStat_MJB: 1.3016376867239209e-05 - syst_JES_Flavour_Comp: 1.2076441280443507e-05 - syst_JES_Flavour_Response: 1.0000164236151327e-05 - syst_JES_Gjet_Generator: 2.3391671060443718e-05 - syst_JES_Gjet_OOC: 1.9498878813921583e-05 - syst_JES_Gjet_Purity: 5.276518809783586e-07 - syst_JES_Gjet_Stat1: 1.858111070415329e-08 - syst_JES_Gjet_Stat10: 1.2429726103177013e-06 - syst_JES_Gjet_Stat11: 1.2280130567302613e-06 - syst_JES_Gjet_Stat12: 6.327666927865278e-07 - syst_JES_Gjet_Stat13: 5.672775048422069e-06 - syst_JES_Gjet_Stat14: 1.665705481170066e-05 - syst_JES_Gjet_Stat15: 2.6513873255335595e-05 - syst_JES_Gjet_Stat2: 9.06669194083487e-08 - syst_JES_Gjet_Stat3: 1.1553852723226136e-07 - syst_JES_Gjet_Stat4: 4.3028812149535343e-07 - syst_JES_Gjet_Stat5: 4.239125705850205e-07 - syst_JES_Gjet_Stat6: 4.033225442496365e-07 - syst_JES_Gjet_Stat7: 4.614293309922984e-07 - syst_JES_Gjet_Stat8: 8.570521731493364e-08 - syst_JES_Gjet_Stat9: 4.683006806529326e-07 - syst_JES_Gjet_Veto: 2.2726693556256702e-05 - syst_JES_Gjet_dPhi: 1.115800035848718e-06 - syst_JES_LArESZee: 3.0617760777039194e-05 - syst_JES_LArEsmear: 3.008918867301011e-06 - syst_JES_LAr_JVT: 3.9265033996547105e-06 - syst_JES_MJB_Alpha: 6.940789004140668e-07 - syst_JES_MJB_Asym: 1.6976603753401327e-05 - syst_JES_MJB_Beta: 1.2727220709958638e-06 - syst_JES_MJB_Fragmentation: 3.9006820259411045e-06 - syst_JES_MJB_Stat1: 3.07423909284883e-11 - syst_JES_MJB_Stat10: 6.809719579395321e-08 - syst_JES_MJB_Stat11: 7.797600143633936e-08 - syst_JES_MJB_Stat12: 1.8102731838040357e-07 - syst_JES_MJB_Stat13: 3.4601932026983695e-07 - syst_JES_MJB_Stat14: 3.927866852376745e-06 - syst_JES_MJB_Stat15: 6.2007025408416425e-06 - syst_JES_MJB_Stat16: 1.2165762399044297e-05 - syst_JES_MJB_Stat2: 1.0443575523368422e-08 - syst_JES_MJB_Stat3: 8.994275270075017e-09 - syst_JES_MJB_Stat4: 9.48480429314273e-09 - syst_JES_MJB_Stat5: 8.529778953759588e-09 - syst_JES_MJB_Stat6: 1.3351426927486064e-08 - syst_JES_MJB_Stat7: 1.5601083295720204e-08 - syst_JES_MJB_Stat8: 2.4619579098757963e-08 - syst_JES_MJB_Stat9: 3.011953186887207e-08 - syst_JES_MJB_Threshold: 3.906218438592496e-06 - syst_JES_Pileup_MuOffset: 8.41159931285365e-06 - syst_JES_Pileup_NPVOffset: 6.122335073319656e-06 - syst_JES_Pileup_Pt_term: 1.965068128589948e-06 - syst_JES_Pileup_Rho_topology: 8.748806547181164e-06 - syst_JES_PunchThrough_MC15: 1.722500145137875e-05 - syst_JES_SingleParticle_HighPt: 6.083994329385917e-07 - syst_JES_Zjet_MC: 8.93854186934312e-06 - syst_JES_Zjet_MuScale: 1.021621557867687e-06 - syst_JES_Zjet_MuSmearID: 8.684876208098766e-08 - syst_JES_Zjet_MuSmearMS: 1.5912054392818043e-06 - syst_JES_Zjet_OOC: 5.396135098382916e-06 - syst_JES_Zjet_Stat1: 1.1031214019771352e-06 - syst_JES_Zjet_Stat10: 5.855010930818148e-07 - syst_JES_Zjet_Stat11: 5.278467296479159e-07 - syst_JES_Zjet_Stat12: 9.424474773163754e-07 - syst_JES_Zjet_Stat13: 2.0133894307858078e-06 - syst_JES_Zjet_Stat2: 1.2925585818445522e-08 - syst_JES_Zjet_Stat3: 2.1649581982107646e-07 - syst_JES_Zjet_Stat4: 3.522625299403841e-07 - syst_JES_Zjet_Stat5: 2.7845608271323504e-07 - syst_JES_Zjet_Stat6: 5.088749453451211e-07 - syst_JES_Zjet_Stat7: 4.2415105799703006e-07 - syst_JES_Zjet_Stat8: 1.8507481595290052e-07 - syst_JES_Zjet_Stat9: 4.771639969654039e-07 - syst_JES_Zjet_Veto: 9.964524110563435e-07 - syst_JES_Zjet_dPhi: 9.556354744357285e-07 - syst_PRW: 8.247e-08 - syst_Unfolding_bias: 4.769e-07 - syst_cleaning: 3.6234502894340918e-06 - syst_lumi: 1.2472e-05 -- stat: 1.7793e-06 + syst_JES_EtaIntercalibration_Stat93: 6.25876559e-25 + syst_JES_EtaIntercalibration_Stat94: 2.11026199e-22 + syst_JES_EtaIntercalibration_Stat95: 4.61331726e-12 + syst_JES_EtaIntercalibration_Stat96: 6.97839780e-10 + syst_JES_EtaIntercalibration_Stat97: 6.48086304e-23 + syst_JES_EtaIntercalibration_Stat98: 1.86036661e-23 + syst_JES_EtaIntercalibration_Stat99: 1.10747329e-09 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.30163769e-05 + syst_JES_Flavour_Comp: 1.20764413e-05 + syst_JES_Flavour_Response: 1.00001642e-05 + syst_JES_Gjet_Generator: 2.33916711e-05 + syst_JES_Gjet_OOC: 1.94988788e-05 + syst_JES_Gjet_Purity: 5.27651881e-07 + syst_JES_Gjet_Stat1: 1.85811107e-08 + syst_JES_Gjet_Stat10: 1.24297261e-06 + syst_JES_Gjet_Stat11: 1.22801306e-06 + syst_JES_Gjet_Stat12: 6.32766693e-07 + syst_JES_Gjet_Stat13: 5.67277505e-06 + syst_JES_Gjet_Stat14: 1.66570548e-05 + syst_JES_Gjet_Stat15: 2.65138733e-05 + syst_JES_Gjet_Stat2: 9.06669194e-08 + syst_JES_Gjet_Stat3: 1.15538527e-07 + syst_JES_Gjet_Stat4: 4.30288121e-07 + syst_JES_Gjet_Stat5: 4.23912571e-07 + syst_JES_Gjet_Stat6: 4.03322544e-07 + syst_JES_Gjet_Stat7: 4.61429331e-07 + syst_JES_Gjet_Stat8: 8.57052173e-08 + syst_JES_Gjet_Stat9: 4.68300681e-07 + syst_JES_Gjet_Veto: 2.27266936e-05 + syst_JES_Gjet_dPhi: 1.11580004e-06 + syst_JES_LArESZee: 3.06177608e-05 + syst_JES_LArEsmear: 3.00891887e-06 + syst_JES_LAr_JVT: 3.92650340e-06 + syst_JES_MJB_Alpha: 6.94078900e-07 + syst_JES_MJB_Asym: 1.69766038e-05 + syst_JES_MJB_Beta: 1.27272207e-06 + syst_JES_MJB_Fragmentation: 3.90068203e-06 + syst_JES_MJB_Stat1: 3.07423909e-11 + syst_JES_MJB_Stat10: 6.80971958e-08 + syst_JES_MJB_Stat11: 7.79760014e-08 + syst_JES_MJB_Stat12: 1.81027318e-07 + syst_JES_MJB_Stat13: 3.46019320e-07 + syst_JES_MJB_Stat14: 3.92786685e-06 + syst_JES_MJB_Stat15: 6.20070254e-06 + syst_JES_MJB_Stat16: 1.21657624e-05 + syst_JES_MJB_Stat2: 1.04435755e-08 + syst_JES_MJB_Stat3: 8.99427527e-09 + syst_JES_MJB_Stat4: 9.48480429e-09 + syst_JES_MJB_Stat5: 8.52977895e-09 + syst_JES_MJB_Stat6: 1.33514269e-08 + syst_JES_MJB_Stat7: 1.56010833e-08 + syst_JES_MJB_Stat8: 2.46195791e-08 + syst_JES_MJB_Stat9: 3.01195319e-08 + syst_JES_MJB_Threshold: 3.90621844e-06 + syst_JES_Pileup_MuOffset: 8.41159931e-06 + syst_JES_Pileup_NPVOffset: 6.12233507e-06 + syst_JES_Pileup_Pt_term: 1.96506813e-06 + syst_JES_Pileup_Rho_topology: 8.74880655e-06 + syst_JES_PunchThrough_MC15: 1.72250015e-05 + syst_JES_SingleParticle_HighPt: 6.08399433e-07 + syst_JES_Zjet_MC: 8.93854187e-06 + syst_JES_Zjet_MuScale: 1.02162156e-06 + syst_JES_Zjet_MuSmearID: 8.68487621e-08 + syst_JES_Zjet_MuSmearMS: 1.59120544e-06 + syst_JES_Zjet_OOC: 5.39613510e-06 + syst_JES_Zjet_Stat1: 1.10312140e-06 + syst_JES_Zjet_Stat10: 5.85501093e-07 + syst_JES_Zjet_Stat11: 5.27846730e-07 + syst_JES_Zjet_Stat12: 9.42447477e-07 + syst_JES_Zjet_Stat13: 2.01338943e-06 + syst_JES_Zjet_Stat2: 1.29255858e-08 + syst_JES_Zjet_Stat3: 2.16495820e-07 + syst_JES_Zjet_Stat4: 3.52262530e-07 + syst_JES_Zjet_Stat5: 2.78456083e-07 + syst_JES_Zjet_Stat6: 5.08874945e-07 + syst_JES_Zjet_Stat7: 4.24151058e-07 + syst_JES_Zjet_Stat8: 1.85074816e-07 + syst_JES_Zjet_Stat9: 4.77163997e-07 + syst_JES_Zjet_Veto: 9.96452411e-07 + syst_JES_Zjet_dPhi: 9.55635474e-07 + syst_PRW: 8.24700000e-08 + syst_Unfolding_bias: 4.76900000e-07 + syst_cleaning: 3.62345029e-06 + syst_lumi: 1.24720000e-05 +- stat: 1.77930000e-06 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 8.396694036940967e-08 - syst_JER_NP1: 3.1728127505417024e-08 - syst_JER_NP2: 7.700418235394749e-08 - syst_JER_NP3: 1.2896296018624882e-08 - syst_JER_NP4: 2.950198806860311e-08 - syst_JER_NP5: 4.131983543045639e-08 - syst_JER_NP6: 3.132427173933977e-08 - syst_JER_NP7: 2.890792797832456e-09 - syst_JER_NP8: 2.5039143355953694e-08 - syst_JES_EtaIntercalibration_Modelling: 3.934852953732833e-07 + syst_JER_NP0: 8.39669404e-08 + syst_JER_NP1: 3.17281275e-08 + syst_JER_NP2: 7.70041824e-08 + syst_JER_NP3: 1.28962960e-08 + syst_JER_NP4: 2.95019881e-08 + syst_JER_NP5: 4.13198354e-08 + syst_JER_NP6: 3.13242717e-08 + syst_JER_NP7: 2.89079280e-09 + syst_JER_NP8: 2.50391434e-08 + syst_JES_EtaIntercalibration_Modelling: 3.93485295e-07 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 @@ -22949,13 +22949,13 @@ bins: syst_JES_EtaIntercalibration_Stat112: 0.0 syst_JES_EtaIntercalibration_Stat113: 0.0 syst_JES_EtaIntercalibration_Stat114: 0.0 - syst_JES_EtaIntercalibration_Stat115: 1.9892603524928557e-11 - syst_JES_EtaIntercalibration_Stat116: 1.2999041310804423e-11 + syst_JES_EtaIntercalibration_Stat115: 1.98926035e-11 + syst_JES_EtaIntercalibration_Stat116: 1.29990413e-11 syst_JES_EtaIntercalibration_Stat117: 0.0 syst_JES_EtaIntercalibration_Stat118: 0.0 syst_JES_EtaIntercalibration_Stat119: 0.0 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 1.8480982116759922e-11 + syst_JES_EtaIntercalibration_Stat120: 1.84809821e-11 syst_JES_EtaIntercalibration_Stat121: 0.0 syst_JES_EtaIntercalibration_Stat122: 0.0 syst_JES_EtaIntercalibration_Stat123: 0.0 @@ -22971,11 +22971,11 @@ bins: syst_JES_EtaIntercalibration_Stat132: 0.0 syst_JES_EtaIntercalibration_Stat133: 0.0 syst_JES_EtaIntercalibration_Stat134: 0.0 - syst_JES_EtaIntercalibration_Stat135: 3.4108410528050114e-10 - syst_JES_EtaIntercalibration_Stat136: 1.5588457268119893e-11 + syst_JES_EtaIntercalibration_Stat135: 3.41084105e-10 + syst_JES_EtaIntercalibration_Stat136: 1.55884573e-11 syst_JES_EtaIntercalibration_Stat137: 0.0 - syst_JES_EtaIntercalibration_Stat138: 5.871040878753955e-11 - syst_JES_EtaIntercalibration_Stat139: 5.235123565876931e-11 + syst_JES_EtaIntercalibration_Stat138: 5.87104088e-11 + syst_JES_EtaIntercalibration_Stat139: 5.23512357e-11 syst_JES_EtaIntercalibration_Stat14: 0.0 syst_JES_EtaIntercalibration_Stat140: 0.0 syst_JES_EtaIntercalibration_Stat141: 0.0 @@ -22990,12 +22990,12 @@ bins: syst_JES_EtaIntercalibration_Stat15: 0.0 syst_JES_EtaIntercalibration_Stat150: 0.0 syst_JES_EtaIntercalibration_Stat151: 0.0 - syst_JES_EtaIntercalibration_Stat152: 3.54897210470863e-10 - syst_JES_EtaIntercalibration_Stat153: 5.30700367439104e-10 - syst_JES_EtaIntercalibration_Stat154: 1.524204710660612e-11 + syst_JES_EtaIntercalibration_Stat152: 3.54897210e-10 + syst_JES_EtaIntercalibration_Stat153: 5.30700367e-10 + syst_JES_EtaIntercalibration_Stat154: 1.52420471e-11 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 6.447729600409744e-11 - syst_JES_EtaIntercalibration_Stat157: 6.050872994866112e-11 + syst_JES_EtaIntercalibration_Stat156: 6.44772960e-11 + syst_JES_EtaIntercalibration_Stat157: 6.05087299e-11 syst_JES_EtaIntercalibration_Stat158: 0.0 syst_JES_EtaIntercalibration_Stat159: 0.0 syst_JES_EtaIntercalibration_Stat16: 0.0 @@ -23010,12 +23010,12 @@ bins: syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 7.965250069520731e-10 - syst_JES_EtaIntercalibration_Stat171: 9.872186421963475e-10 + syst_JES_EtaIntercalibration_Stat170: 7.96525007e-10 + syst_JES_EtaIntercalibration_Stat171: 9.87218642e-10 syst_JES_EtaIntercalibration_Stat172: 0.0 - syst_JES_EtaIntercalibration_Stat173: 1.897461659691705e-11 - syst_JES_EtaIntercalibration_Stat174: 7.634013934359827e-10 - syst_JES_EtaIntercalibration_Stat175: 6.011948353071573e-10 + syst_JES_EtaIntercalibration_Stat173: 1.89746166e-11 + syst_JES_EtaIntercalibration_Stat174: 7.63401393e-10 + syst_JES_EtaIntercalibration_Stat175: 6.01194835e-10 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 syst_JES_EtaIntercalibration_Stat178: 0.0 @@ -23027,15 +23027,15 @@ bins: syst_JES_EtaIntercalibration_Stat183: 0.0 syst_JES_EtaIntercalibration_Stat184: 0.0 syst_JES_EtaIntercalibration_Stat185: 0.0 - syst_JES_EtaIntercalibration_Stat186: 3.1313479972689077e-10 - syst_JES_EtaIntercalibration_Stat187: 2.5439498815817893e-09 - syst_JES_EtaIntercalibration_Stat188: 2.6035826758526415e-09 - syst_JES_EtaIntercalibration_Stat189: 3.555900307938905e-10 + syst_JES_EtaIntercalibration_Stat186: 3.13134800e-10 + syst_JES_EtaIntercalibration_Stat187: 2.54394988e-09 + syst_JES_EtaIntercalibration_Stat188: 2.60358268e-09 + syst_JES_EtaIntercalibration_Stat189: 3.55590031e-10 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 - syst_JES_EtaIntercalibration_Stat191: 2.7024111456253283e-09 - syst_JES_EtaIntercalibration_Stat192: 2.5201176971522577e-09 - syst_JES_EtaIntercalibration_Stat193: 2.0894453618125552e-10 + syst_JES_EtaIntercalibration_Stat191: 2.70241115e-09 + syst_JES_EtaIntercalibration_Stat192: 2.52011770e-09 + syst_JES_EtaIntercalibration_Stat193: 2.08944536e-10 syst_JES_EtaIntercalibration_Stat194: 0.0 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 @@ -23045,54 +23045,54 @@ bins: syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 - syst_JES_EtaIntercalibration_Stat201: 3.160126698409417e-10 - syst_JES_EtaIntercalibration_Stat202: 5.85229294806745e-09 - syst_JES_EtaIntercalibration_Stat203: 5.5705808770270994e-09 - syst_JES_EtaIntercalibration_Stat204: 4.1266110490328497e-10 - syst_JES_EtaIntercalibration_Stat205: 3.314767374945035e-10 - syst_JES_EtaIntercalibration_Stat206: 4.485989188573686e-09 - syst_JES_EtaIntercalibration_Stat207: 3.321945326160562e-09 - syst_JES_EtaIntercalibration_Stat208: 7.497881484126033e-10 + syst_JES_EtaIntercalibration_Stat201: 3.16012670e-10 + syst_JES_EtaIntercalibration_Stat202: 5.85229295e-09 + syst_JES_EtaIntercalibration_Stat203: 5.57058088e-09 + syst_JES_EtaIntercalibration_Stat204: 4.12661105e-10 + syst_JES_EtaIntercalibration_Stat205: 3.31476737e-10 + syst_JES_EtaIntercalibration_Stat206: 4.48598919e-09 + syst_JES_EtaIntercalibration_Stat207: 3.32194533e-09 + syst_JES_EtaIntercalibration_Stat208: 7.49788148e-10 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 syst_JES_EtaIntercalibration_Stat211: 0.0 syst_JES_EtaIntercalibration_Stat212: 0.0 syst_JES_EtaIntercalibration_Stat213: 0.0 - syst_JES_EtaIntercalibration_Stat214: 3.160126698409417e-10 - syst_JES_EtaIntercalibration_Stat215: 6.374854586576857e-09 - syst_JES_EtaIntercalibration_Stat216: 6.805038335674532e-09 - syst_JES_EtaIntercalibration_Stat217: 6.238154594910261e-10 - syst_JES_EtaIntercalibration_Stat218: 4.763072222841052e-10 - syst_JES_EtaIntercalibration_Stat219: 5.463450558026494e-09 + syst_JES_EtaIntercalibration_Stat214: 3.16012670e-10 + syst_JES_EtaIntercalibration_Stat215: 6.37485459e-09 + syst_JES_EtaIntercalibration_Stat216: 6.80503834e-09 + syst_JES_EtaIntercalibration_Stat217: 6.23815459e-10 + syst_JES_EtaIntercalibration_Stat218: 4.76307222e-10 + syst_JES_EtaIntercalibration_Stat219: 5.46345056e-09 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 4.435874096500035e-09 - syst_JES_EtaIntercalibration_Stat221: 6.534223136685799e-10 + syst_JES_EtaIntercalibration_Stat220: 4.43587410e-09 + syst_JES_EtaIntercalibration_Stat221: 6.53422314e-10 syst_JES_EtaIntercalibration_Stat222: 0.0 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 syst_JES_EtaIntercalibration_Stat225: 0.0 - syst_JES_EtaIntercalibration_Stat226: 1.7019145612148103e-09 - syst_JES_EtaIntercalibration_Stat227: 1.5154607319228036e-08 - syst_JES_EtaIntercalibration_Stat228: 1.620381668002943e-08 - syst_JES_EtaIntercalibration_Stat229: 1.958026013616775e-09 + syst_JES_EtaIntercalibration_Stat226: 1.70191456e-09 + syst_JES_EtaIntercalibration_Stat227: 1.51546073e-08 + syst_JES_EtaIntercalibration_Stat228: 1.62038167e-08 + syst_JES_EtaIntercalibration_Stat229: 1.95802601e-09 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 1.5375060162483915e-09 - syst_JES_EtaIntercalibration_Stat231: 1.855893046487324e-08 - syst_JES_EtaIntercalibration_Stat232: 1.476067749122648e-08 - syst_JES_EtaIntercalibration_Stat233: 1.0417419582123012e-09 + syst_JES_EtaIntercalibration_Stat230: 1.53750602e-09 + syst_JES_EtaIntercalibration_Stat231: 1.85589305e-08 + syst_JES_EtaIntercalibration_Stat232: 1.47606775e-08 + syst_JES_EtaIntercalibration_Stat233: 1.04174196e-09 syst_JES_EtaIntercalibration_Stat234: 0.0 syst_JES_EtaIntercalibration_Stat235: 0.0 syst_JES_EtaIntercalibration_Stat236: 0.0 - syst_JES_EtaIntercalibration_Stat237: 3.2259446290970343e-10 - syst_JES_EtaIntercalibration_Stat238: 3.679916677045827e-09 - syst_JES_EtaIntercalibration_Stat239: 2.6035826758526415e-09 + syst_JES_EtaIntercalibration_Stat237: 3.22594463e-10 + syst_JES_EtaIntercalibration_Stat238: 3.67991668e-09 + syst_JES_EtaIntercalibration_Stat239: 2.60358268e-09 syst_JES_EtaIntercalibration_Stat24: 0.0 - syst_JES_EtaIntercalibration_Stat240: 3.570622739803241e-10 - syst_JES_EtaIntercalibration_Stat241: 1.9251744726128072e-10 - syst_JES_EtaIntercalibration_Stat242: 2.5273786321008575e-09 - syst_JES_EtaIntercalibration_Stat243: 2.647644613614146e-09 - syst_JES_EtaIntercalibration_Stat244: 2.108501094972445e-10 + syst_JES_EtaIntercalibration_Stat240: 3.57062274e-10 + syst_JES_EtaIntercalibration_Stat241: 1.92517447e-10 + syst_JES_EtaIntercalibration_Stat242: 2.52737863e-09 + syst_JES_EtaIntercalibration_Stat243: 2.64764461e-09 + syst_JES_EtaIntercalibration_Stat244: 2.10850109e-10 syst_JES_EtaIntercalibration_Stat245: 0.0 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 @@ -23172,108 +23172,108 @@ bins: syst_JES_EtaIntercalibration_Stat93: 0.0 syst_JES_EtaIntercalibration_Stat94: 0.0 syst_JES_EtaIntercalibration_Stat95: 0.0 - syst_JES_EtaIntercalibration_Stat96: 1.7138642740894042e-11 + syst_JES_EtaIntercalibration_Stat96: 1.71386427e-11 syst_JES_EtaIntercalibration_Stat97: 0.0 syst_JES_EtaIntercalibration_Stat98: 0.0 syst_JES_EtaIntercalibration_Stat99: 0.0 - syst_JES_EtaIntercalibration_TotalStat_MJB: 5.832679487165397e-07 - syst_JES_Flavour_Comp: 1.380677662417988e-07 - syst_JES_Flavour_Response: 5.626715982702521e-07 - syst_JES_Gjet_Generator: 8.365339024809454e-07 - syst_JES_Gjet_OOC: 7.170651713756567e-07 - syst_JES_Gjet_Purity: 6.76809264120993e-08 - syst_JES_Gjet_Stat1: 3.8408881785337096e-09 - syst_JES_Gjet_Stat10: 6.574972908689434e-08 - syst_JES_Gjet_Stat11: 6.298063829463783e-08 - syst_JES_Gjet_Stat12: 1.8757565806895095e-08 - syst_JES_Gjet_Stat13: 2.4705033899996976e-07 - syst_JES_Gjet_Stat14: 7.875509047039434e-07 - syst_JES_Gjet_Stat15: 1.1931832759471614e-06 - syst_JES_Gjet_Stat2: 3.6585006150060985e-09 - syst_JES_Gjet_Stat3: 5.086208877936493e-09 - syst_JES_Gjet_Stat4: 2.4474219088665528e-08 - syst_JES_Gjet_Stat5: 2.3452172607244728e-08 - syst_JES_Gjet_Stat6: 1.2397312128038076e-08 - syst_JES_Gjet_Stat7: 2.4057007295172854e-08 - syst_JES_Gjet_Stat8: 3.627988285537868e-09 - syst_JES_Gjet_Stat9: 2.406142711893873e-08 - syst_JES_Gjet_Veto: 8.781722083395717e-07 - syst_JES_Gjet_dPhi: 9.265474299786276e-09 - syst_JES_LArESZee: 9.498658536867193e-07 - syst_JES_LArEsmear: 1.0684876356327199e-07 - syst_JES_LAr_JVT: 1.4427825997010083e-07 - syst_JES_MJB_Alpha: 1.7578318321159165e-08 - syst_JES_MJB_Asym: 8.61796739376519e-07 - syst_JES_MJB_Beta: 7.075141889036574e-08 - syst_JES_MJB_Fragmentation: 1.8835487782375055e-07 + syst_JES_EtaIntercalibration_TotalStat_MJB: 5.83267949e-07 + syst_JES_Flavour_Comp: 1.38067766e-07 + syst_JES_Flavour_Response: 5.62671598e-07 + syst_JES_Gjet_Generator: 8.36533902e-07 + syst_JES_Gjet_OOC: 7.17065171e-07 + syst_JES_Gjet_Purity: 6.76809264e-08 + syst_JES_Gjet_Stat1: 3.84088818e-09 + syst_JES_Gjet_Stat10: 6.57497291e-08 + syst_JES_Gjet_Stat11: 6.29806383e-08 + syst_JES_Gjet_Stat12: 1.87575658e-08 + syst_JES_Gjet_Stat13: 2.47050339e-07 + syst_JES_Gjet_Stat14: 7.87550905e-07 + syst_JES_Gjet_Stat15: 1.19318328e-06 + syst_JES_Gjet_Stat2: 3.65850062e-09 + syst_JES_Gjet_Stat3: 5.08620888e-09 + syst_JES_Gjet_Stat4: 2.44742191e-08 + syst_JES_Gjet_Stat5: 2.34521726e-08 + syst_JES_Gjet_Stat6: 1.23973121e-08 + syst_JES_Gjet_Stat7: 2.40570073e-08 + syst_JES_Gjet_Stat8: 3.62798829e-09 + syst_JES_Gjet_Stat9: 2.40614271e-08 + syst_JES_Gjet_Veto: 8.78172208e-07 + syst_JES_Gjet_dPhi: 9.26547430e-09 + syst_JES_LArESZee: 9.49865854e-07 + syst_JES_LArEsmear: 1.06848764e-07 + syst_JES_LAr_JVT: 1.44278260e-07 + syst_JES_MJB_Alpha: 1.75783183e-08 + syst_JES_MJB_Asym: 8.61796739e-07 + syst_JES_MJB_Beta: 7.07514189e-08 + syst_JES_MJB_Fragmentation: 1.88354878e-07 syst_JES_MJB_Stat1: 0.0 - syst_JES_MJB_Stat10: 1.0070143395205454e-09 - syst_JES_MJB_Stat11: 2.500842058187602e-09 - syst_JES_MJB_Stat12: 3.7791071696896875e-09 - syst_JES_MJB_Stat13: 6.417241054378431e-09 - syst_JES_MJB_Stat14: 2.516150035272142e-07 - syst_JES_MJB_Stat15: 5.721092727792479e-07 - syst_JES_MJB_Stat16: 7.375427851996115e-07 + syst_JES_MJB_Stat10: 1.00701434e-09 + syst_JES_MJB_Stat11: 2.50084206e-09 + syst_JES_MJB_Stat12: 3.77910717e-09 + syst_JES_MJB_Stat13: 6.41724105e-09 + syst_JES_MJB_Stat14: 2.51615004e-07 + syst_JES_MJB_Stat15: 5.72109273e-07 + syst_JES_MJB_Stat16: 7.37542785e-07 syst_JES_MJB_Stat2: 0.0 - syst_JES_MJB_Stat3: 2.185848119151923e-10 - syst_JES_MJB_Stat4: 2.3183500059309424e-10 - syst_JES_MJB_Stat5: 2.163331458653528e-10 - syst_JES_MJB_Stat6: 2.6768845230977e-10 - syst_JES_MJB_Stat7: 2.908113305908145e-10 - syst_JES_MJB_Stat8: 3.8839058777859176e-10 - syst_JES_MJB_Stat9: 8.154295125883045e-10 - syst_JES_MJB_Threshold: 1.196670455890008e-07 - syst_JES_Pileup_MuOffset: 3.8315725583629494e-07 - syst_JES_Pileup_NPVOffset: 2.3131995158221867e-07 - syst_JES_Pileup_Pt_term: 6.199788464133273e-08 - syst_JES_Pileup_Rho_topology: 3.8865449910556804e-07 - syst_JES_PunchThrough_MC15: 8.927328645793208e-07 - syst_JES_SingleParticle_HighPt: 1.7355278015635473e-07 - syst_JES_Zjet_MC: 3.2065215966838586e-07 - syst_JES_Zjet_MuScale: 4.3790160995365154e-08 - syst_JES_Zjet_MuSmearID: 1.758897595086195e-09 - syst_JES_Zjet_MuSmearMS: 3.535981723651863e-08 - syst_JES_Zjet_OOC: 1.7875720964481403e-07 - syst_JES_Zjet_Stat1: 4.3057618149985955e-08 - syst_JES_Zjet_Stat10: 2.750395380668023e-08 - syst_JES_Zjet_Stat11: 1.640953292296889e-08 - syst_JES_Zjet_Stat12: 2.5998957671414446e-08 - syst_JES_Zjet_Stat13: 7.324770354761983e-08 - syst_JES_Zjet_Stat2: 2.970467134980625e-10 - syst_JES_Zjet_Stat3: 4.951129265127301e-09 - syst_JES_Zjet_Stat4: 1.1029454474270248e-08 - syst_JES_Zjet_Stat5: 6.662083964496395e-09 - syst_JES_Zjet_Stat6: 2.3292717209462703e-08 - syst_JES_Zjet_Stat7: 1.4409168019007897e-08 - syst_JES_Zjet_Stat8: 6.761232931204191e-09 - syst_JES_Zjet_Stat9: 2.338797981870174e-08 - syst_JES_Zjet_Veto: 3.0477517533421253e-08 - syst_JES_Zjet_dPhi: 2.9639049832948428e-08 - syst_PRW: 2.214e-13 - syst_Unfolding_bias: 1.171e-08 - syst_cleaning: 7.116130742896733e-08 - syst_lumi: 3.062e-07 + syst_JES_MJB_Stat3: 2.18584812e-10 + syst_JES_MJB_Stat4: 2.31835001e-10 + syst_JES_MJB_Stat5: 2.16333146e-10 + syst_JES_MJB_Stat6: 2.67688452e-10 + syst_JES_MJB_Stat7: 2.90811331e-10 + syst_JES_MJB_Stat8: 3.88390588e-10 + syst_JES_MJB_Stat9: 8.15429513e-10 + syst_JES_MJB_Threshold: 1.19667046e-07 + syst_JES_Pileup_MuOffset: 3.83157256e-07 + syst_JES_Pileup_NPVOffset: 2.31319952e-07 + syst_JES_Pileup_Pt_term: 6.19978846e-08 + syst_JES_Pileup_Rho_topology: 3.88654499e-07 + syst_JES_PunchThrough_MC15: 8.92732865e-07 + syst_JES_SingleParticle_HighPt: 1.73552780e-07 + syst_JES_Zjet_MC: 3.20652160e-07 + syst_JES_Zjet_MuScale: 4.37901610e-08 + syst_JES_Zjet_MuSmearID: 1.75889760e-09 + syst_JES_Zjet_MuSmearMS: 3.53598172e-08 + syst_JES_Zjet_OOC: 1.78757210e-07 + syst_JES_Zjet_Stat1: 4.30576181e-08 + syst_JES_Zjet_Stat10: 2.75039538e-08 + syst_JES_Zjet_Stat11: 1.64095329e-08 + syst_JES_Zjet_Stat12: 2.59989577e-08 + syst_JES_Zjet_Stat13: 7.32477035e-08 + syst_JES_Zjet_Stat2: 2.97046713e-10 + syst_JES_Zjet_Stat3: 4.95112927e-09 + syst_JES_Zjet_Stat4: 1.10294545e-08 + syst_JES_Zjet_Stat5: 6.66208396e-09 + syst_JES_Zjet_Stat6: 2.32927172e-08 + syst_JES_Zjet_Stat7: 1.44091680e-08 + syst_JES_Zjet_Stat8: 6.76123293e-09 + syst_JES_Zjet_Stat9: 2.33879798e-08 + syst_JES_Zjet_Veto: 3.04775175e-08 + syst_JES_Zjet_dPhi: 2.96390498e-08 + syst_PRW: 2.21400000e-13 + syst_Unfolding_bias: 1.17100000e-08 + syst_cleaning: 7.11613074e-08 + syst_lumi: 3.06200000e-07 - stat: 68.6 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 240.66377059083902 - syst_JER_NP1: 33.90026991042992 - syst_JER_NP2: 28.641689894278237 - syst_JER_NP3: 35.18525650041506 - syst_JER_NP4: 2.555807651213213 - syst_JER_NP5: 22.493739128922076 - syst_JER_NP6: 20.686265975279348 - syst_JER_NP7: 10.22024461546787 - syst_JER_NP8: 27.056705490506417 - syst_JES_EtaIntercalibration_Modelling: 291.03693940804146 + syst_JER_NP0: 2.40663771e+02 + syst_JER_NP1: 3.39002699e+01 + syst_JER_NP2: 2.86416899e+01 + syst_JER_NP3: 3.51852565e+01 + syst_JER_NP4: 2.55580765e+00 + syst_JER_NP5: 2.24937391e+01 + syst_JER_NP6: 2.06862660e+01 + syst_JER_NP7: 1.02202446e+01 + syst_JER_NP8: 2.70567055e+01 + syst_JES_EtaIntercalibration_Modelling: 2.91036939e+02 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 16.157353589000895 - syst_JES_EtaIntercalibration_Stat101: 26.825410994055616 - syst_JES_EtaIntercalibration_Stat102: 7.115081359338065 - syst_JES_EtaIntercalibration_Stat103: 0.31813262564534306 + syst_JES_EtaIntercalibration_Stat100: 1.61573536e+01 + syst_JES_EtaIntercalibration_Stat101: 2.68254110e+01 + syst_JES_EtaIntercalibration_Stat102: 7.11508136e+00 + syst_JES_EtaIntercalibration_Stat103: 3.18132626e-01 syst_JES_EtaIntercalibration_Stat104: 0.0 syst_JES_EtaIntercalibration_Stat105: 0.0 syst_JES_EtaIntercalibration_Stat106: 0.0 @@ -23282,131 +23282,131 @@ bins: syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 syst_JES_EtaIntercalibration_Stat110: 0.0 - syst_JES_EtaIntercalibration_Stat111: 0.0005013421062508115 - syst_JES_EtaIntercalibration_Stat112: 0.45192110138275243 - syst_JES_EtaIntercalibration_Stat113: 1.321891190680988 - syst_JES_EtaIntercalibration_Stat114: 4.622175975663411 - syst_JES_EtaIntercalibration_Stat115: 4.77288096960316 - syst_JES_EtaIntercalibration_Stat116: 0.08392652188074995 + syst_JES_EtaIntercalibration_Stat111: 5.01342106e-04 + syst_JES_EtaIntercalibration_Stat112: 4.51921101e-01 + syst_JES_EtaIntercalibration_Stat113: 1.32189119e+00 + syst_JES_EtaIntercalibration_Stat114: 4.62217598e+00 + syst_JES_EtaIntercalibration_Stat115: 4.77288097e+00 + syst_JES_EtaIntercalibration_Stat116: 8.39265219e-02 syst_JES_EtaIntercalibration_Stat117: 0.0 syst_JES_EtaIntercalibration_Stat118: 0.0 - syst_JES_EtaIntercalibration_Stat119: 0.5627573142127964 + syst_JES_EtaIntercalibration_Stat119: 5.62757314e-01 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 5.246789875724013 - syst_JES_EtaIntercalibration_Stat121: 7.0249025616018335 - syst_JES_EtaIntercalibration_Stat122: 0.991218770340332 - syst_JES_EtaIntercalibration_Stat123: 0.12767346895498688 + syst_JES_EtaIntercalibration_Stat120: 5.24678988e+00 + syst_JES_EtaIntercalibration_Stat121: 7.02490256e+00 + syst_JES_EtaIntercalibration_Stat122: 9.91218770e-01 + syst_JES_EtaIntercalibration_Stat123: 1.27673469e-01 syst_JES_EtaIntercalibration_Stat124: 0.0 syst_JES_EtaIntercalibration_Stat125: 0.0 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 syst_JES_EtaIntercalibration_Stat128: 0.0 syst_JES_EtaIntercalibration_Stat129: 0.0 - syst_JES_EtaIntercalibration_Stat13: 0.1816108752250261 + syst_JES_EtaIntercalibration_Stat13: 1.81610875e-01 syst_JES_EtaIntercalibration_Stat130: 0.0 - syst_JES_EtaIntercalibration_Stat131: 0.08606011663366486 - syst_JES_EtaIntercalibration_Stat132: 4.903513332295528 - syst_JES_EtaIntercalibration_Stat133: 13.026087171518546 - syst_JES_EtaIntercalibration_Stat134: 9.902971473249835 - syst_JES_EtaIntercalibration_Stat135: 0.15548714802195066 + syst_JES_EtaIntercalibration_Stat131: 8.60601166e-02 + syst_JES_EtaIntercalibration_Stat132: 4.90351333e+00 + syst_JES_EtaIntercalibration_Stat133: 1.30260872e+01 + syst_JES_EtaIntercalibration_Stat134: 9.90297147e+00 + syst_JES_EtaIntercalibration_Stat135: 1.55487148e-01 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 - syst_JES_EtaIntercalibration_Stat138: 0.24149922168611643 - syst_JES_EtaIntercalibration_Stat139: 7.338619148041407 - syst_JES_EtaIntercalibration_Stat14: 0.17569822850558284 - syst_JES_EtaIntercalibration_Stat140: 13.069619380456341 - syst_JES_EtaIntercalibration_Stat141: 4.623186644512636 - syst_JES_EtaIntercalibration_Stat142: 0.1909394062916296 + syst_JES_EtaIntercalibration_Stat138: 2.41499222e-01 + syst_JES_EtaIntercalibration_Stat139: 7.33861915e+00 + syst_JES_EtaIntercalibration_Stat14: 1.75698229e-01 + syst_JES_EtaIntercalibration_Stat140: 1.30696194e+01 + syst_JES_EtaIntercalibration_Stat141: 4.62318664e+00 + syst_JES_EtaIntercalibration_Stat142: 1.90939406e-01 syst_JES_EtaIntercalibration_Stat143: 0.0 syst_JES_EtaIntercalibration_Stat144: 0.0 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 syst_JES_EtaIntercalibration_Stat147: 0.0 syst_JES_EtaIntercalibration_Stat148: 0.0 - syst_JES_EtaIntercalibration_Stat149: 0.005120267188340859 - syst_JES_EtaIntercalibration_Stat15: 0.03208048433237877 - syst_JES_EtaIntercalibration_Stat150: 0.21763218397102946 - syst_JES_EtaIntercalibration_Stat151: 0.7983845235849704 - syst_JES_EtaIntercalibration_Stat152: 0.704607385357264 - syst_JES_EtaIntercalibration_Stat153: 0.021312885187137077 + syst_JES_EtaIntercalibration_Stat149: 5.12026719e-03 + syst_JES_EtaIntercalibration_Stat15: 3.20804843e-02 + syst_JES_EtaIntercalibration_Stat150: 2.17632184e-01 + syst_JES_EtaIntercalibration_Stat151: 7.98384524e-01 + syst_JES_EtaIntercalibration_Stat152: 7.04607385e-01 + syst_JES_EtaIntercalibration_Stat153: 2.13128852e-02 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 0.0028464916687588014 - syst_JES_EtaIntercalibration_Stat157: 0.6654225781411388 - syst_JES_EtaIntercalibration_Stat158: 0.9893763035367281 - syst_JES_EtaIntercalibration_Stat159: 0.31115993877747183 + syst_JES_EtaIntercalibration_Stat156: 2.84649167e-03 + syst_JES_EtaIntercalibration_Stat157: 6.65422578e-01 + syst_JES_EtaIntercalibration_Stat158: 9.89376304e-01 + syst_JES_EtaIntercalibration_Stat159: 3.11159939e-01 syst_JES_EtaIntercalibration_Stat16: 0.0 - syst_JES_EtaIntercalibration_Stat160: 0.052922119194151705 + syst_JES_EtaIntercalibration_Stat160: 5.29221192e-02 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 - syst_JES_EtaIntercalibration_Stat167: 3.772406658885015e-08 - syst_JES_EtaIntercalibration_Stat168: 0.0052738525766274505 - syst_JES_EtaIntercalibration_Stat169: 0.013990899720890005 + syst_JES_EtaIntercalibration_Stat167: 3.77240666e-08 + syst_JES_EtaIntercalibration_Stat168: 5.27385258e-03 + syst_JES_EtaIntercalibration_Stat169: 1.39908997e-02 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 0.009532426920779408 - syst_JES_EtaIntercalibration_Stat171: 1.1067846056998745e-05 + syst_JES_EtaIntercalibration_Stat170: 9.53242692e-03 + syst_JES_EtaIntercalibration_Stat171: 1.10678461e-05 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 - syst_JES_EtaIntercalibration_Stat174: 1.2040021306072303e-05 - syst_JES_EtaIntercalibration_Stat175: 0.03995615781078055 - syst_JES_EtaIntercalibration_Stat176: 0.018274114889646503 - syst_JES_EtaIntercalibration_Stat177: 0.007264768045161525 - syst_JES_EtaIntercalibration_Stat178: 7.846444545142723e-07 + syst_JES_EtaIntercalibration_Stat174: 1.20400213e-05 + syst_JES_EtaIntercalibration_Stat175: 3.99561578e-02 + syst_JES_EtaIntercalibration_Stat176: 1.82741149e-02 + syst_JES_EtaIntercalibration_Stat177: 7.26476805e-03 + syst_JES_EtaIntercalibration_Stat178: 7.84644455e-07 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 syst_JES_EtaIntercalibration_Stat180: 0.0 syst_JES_EtaIntercalibration_Stat181: 0.0 syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 - syst_JES_EtaIntercalibration_Stat184: 7.390664774714347e-11 - syst_JES_EtaIntercalibration_Stat185: 3.9624367187376e-05 - syst_JES_EtaIntercalibration_Stat186: 0.0010341014203162086 - syst_JES_EtaIntercalibration_Stat187: 0.0010328589872291376 - syst_JES_EtaIntercalibration_Stat188: 1.6289937845185293e-08 + syst_JES_EtaIntercalibration_Stat184: 7.39066477e-11 + syst_JES_EtaIntercalibration_Stat185: 3.96243672e-05 + syst_JES_EtaIntercalibration_Stat186: 1.03410142e-03 + syst_JES_EtaIntercalibration_Stat187: 1.03285899e-03 + syst_JES_EtaIntercalibration_Stat188: 1.62899378e-08 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 - syst_JES_EtaIntercalibration_Stat191: 1.136138727224805e-15 - syst_JES_EtaIntercalibration_Stat192: 0.00100678209534139 - syst_JES_EtaIntercalibration_Stat193: 0.0015273126726377934 - syst_JES_EtaIntercalibration_Stat194: 0.0003859602967599129 - syst_JES_EtaIntercalibration_Stat195: 1.1215895004412265e-11 - syst_JES_EtaIntercalibration_Stat196: 1.4583867799729947e-39 + syst_JES_EtaIntercalibration_Stat191: 1.13613873e-15 + syst_JES_EtaIntercalibration_Stat192: 1.00678210e-03 + syst_JES_EtaIntercalibration_Stat193: 1.52731267e-03 + syst_JES_EtaIntercalibration_Stat194: 3.85960297e-04 + syst_JES_EtaIntercalibration_Stat195: 1.12158950e-11 + syst_JES_EtaIntercalibration_Stat196: 1.45838678e-39 syst_JES_EtaIntercalibration_Stat197: 0.0 syst_JES_EtaIntercalibration_Stat198: 0.0 - syst_JES_EtaIntercalibration_Stat199: 4.6583506469564955e-22 + syst_JES_EtaIntercalibration_Stat199: 4.65835065e-22 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 1.6554234352575783e-11 - syst_JES_EtaIntercalibration_Stat201: 6.578591186568748e-08 - syst_JES_EtaIntercalibration_Stat202: 5.3778401566056236e-08 - syst_JES_EtaIntercalibration_Stat203: 5.416988781997326e-23 + syst_JES_EtaIntercalibration_Stat200: 1.65542344e-11 + syst_JES_EtaIntercalibration_Stat201: 6.57859119e-08 + syst_JES_EtaIntercalibration_Stat202: 5.37784016e-08 + syst_JES_EtaIntercalibration_Stat203: 5.41698878e-23 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 - syst_JES_EtaIntercalibration_Stat206: 1.5397931351438996e-22 - syst_JES_EtaIntercalibration_Stat207: 3.763871544035476e-08 - syst_JES_EtaIntercalibration_Stat208: 6.049237038668596e-08 - syst_JES_EtaIntercalibration_Stat209: 2.1744402097611622e-08 + syst_JES_EtaIntercalibration_Stat206: 1.53979314e-22 + syst_JES_EtaIntercalibration_Stat207: 3.76387154e-08 + syst_JES_EtaIntercalibration_Stat208: 6.04923704e-08 + syst_JES_EtaIntercalibration_Stat209: 2.17444021e-08 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 2.2404077195324922e-29 + syst_JES_EtaIntercalibration_Stat210: 2.24040772e-29 syst_JES_EtaIntercalibration_Stat211: 0.0 syst_JES_EtaIntercalibration_Stat212: 0.0 - syst_JES_EtaIntercalibration_Stat213: 6.397052661187025e-30 - syst_JES_EtaIntercalibration_Stat214: 8.293925292043568e-23 - syst_JES_EtaIntercalibration_Stat215: 1.1677486544629371e-22 + syst_JES_EtaIntercalibration_Stat213: 6.39705266e-30 + syst_JES_EtaIntercalibration_Stat214: 8.29392529e-23 + syst_JES_EtaIntercalibration_Stat215: 1.16774865e-22 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 - syst_JES_EtaIntercalibration_Stat219: 6.230186754825251e-39 + syst_JES_EtaIntercalibration_Stat219: 6.23018675e-39 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 9.487789560798659e-23 - syst_JES_EtaIntercalibration_Stat221: 7.338695486857452e-17 - syst_JES_EtaIntercalibration_Stat222: 6.175627154386832e-23 - syst_JES_EtaIntercalibration_Stat223: 1.4220137130140483e-39 + syst_JES_EtaIntercalibration_Stat220: 9.48778956e-23 + syst_JES_EtaIntercalibration_Stat221: 7.33869549e-17 + syst_JES_EtaIntercalibration_Stat222: 6.17562715e-23 + syst_JES_EtaIntercalibration_Stat223: 1.42201371e-39 syst_JES_EtaIntercalibration_Stat224: 0.0 syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 @@ -23433,19 +23433,19 @@ bins: syst_JES_EtaIntercalibration_Stat245: 0.0 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 - syst_JES_EtaIntercalibration_Stat27: 0.11190857697245553 - syst_JES_EtaIntercalibration_Stat28: 0.581731442914168 - syst_JES_EtaIntercalibration_Stat29: 1.044682923187701 + syst_JES_EtaIntercalibration_Stat27: 1.11908577e-01 + syst_JES_EtaIntercalibration_Stat28: 5.81731443e-01 + syst_JES_EtaIntercalibration_Stat29: 1.04468292e+00 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 0.7482375608722139 - syst_JES_EtaIntercalibration_Stat31: 0.013354111726356043 + syst_JES_EtaIntercalibration_Stat30: 7.48237561e-01 + syst_JES_EtaIntercalibration_Stat31: 1.33541117e-02 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 - syst_JES_EtaIntercalibration_Stat34: 0.015908886667520137 - syst_JES_EtaIntercalibration_Stat35: 0.37412565278927346 - syst_JES_EtaIntercalibration_Stat36: 0.9021434974548117 - syst_JES_EtaIntercalibration_Stat37: 0.6326480439391241 - syst_JES_EtaIntercalibration_Stat38: 0.042850336603111994 + syst_JES_EtaIntercalibration_Stat34: 1.59088867e-02 + syst_JES_EtaIntercalibration_Stat35: 3.74125653e-01 + syst_JES_EtaIntercalibration_Stat36: 9.02143497e-01 + syst_JES_EtaIntercalibration_Stat37: 6.32648044e-01 + syst_JES_EtaIntercalibration_Stat38: 4.28503366e-02 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 syst_JES_EtaIntercalibration_Stat40: 0.0 @@ -23456,21 +23456,21 @@ bins: syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 syst_JES_EtaIntercalibration_Stat47: 0.0 - syst_JES_EtaIntercalibration_Stat48: 0.03865937402493734 - syst_JES_EtaIntercalibration_Stat49: 0.0510708850520529 - syst_JES_EtaIntercalibration_Stat5: 0.032164183496554054 - syst_JES_EtaIntercalibration_Stat50: 0.9817091766404141 - syst_JES_EtaIntercalibration_Stat51: 2.7292491183473895 - syst_JES_EtaIntercalibration_Stat52: 1.4086306852755976 - syst_JES_EtaIntercalibration_Stat53: 0.08465106319474079 - syst_JES_EtaIntercalibration_Stat54: 0.07675583153741479 + syst_JES_EtaIntercalibration_Stat48: 3.86593740e-02 + syst_JES_EtaIntercalibration_Stat49: 5.10708851e-02 + syst_JES_EtaIntercalibration_Stat5: 3.21641835e-02 + syst_JES_EtaIntercalibration_Stat50: 9.81709177e-01 + syst_JES_EtaIntercalibration_Stat51: 2.72924912e+00 + syst_JES_EtaIntercalibration_Stat52: 1.40863069e+00 + syst_JES_EtaIntercalibration_Stat53: 8.46510632e-02 + syst_JES_EtaIntercalibration_Stat54: 7.67558315e-02 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 0.02083262825473541 - syst_JES_EtaIntercalibration_Stat57: 2.0499471182203703 - syst_JES_EtaIntercalibration_Stat58: 3.0476407268574164 - syst_JES_EtaIntercalibration_Stat59: 0.5351610108182396 - syst_JES_EtaIntercalibration_Stat6: 0.12649491877146687 - syst_JES_EtaIntercalibration_Stat60: 0.14503199371173245 + syst_JES_EtaIntercalibration_Stat56: 2.08326283e-02 + syst_JES_EtaIntercalibration_Stat57: 2.04994712e+00 + syst_JES_EtaIntercalibration_Stat58: 3.04764073e+00 + syst_JES_EtaIntercalibration_Stat59: 5.35161011e-01 + syst_JES_EtaIntercalibration_Stat6: 1.26494919e-01 + syst_JES_EtaIntercalibration_Stat60: 1.45031994e-01 syst_JES_EtaIntercalibration_Stat61: 0.0 syst_JES_EtaIntercalibration_Stat62: 0.0 syst_JES_EtaIntercalibration_Stat63: 0.0 @@ -23480,21 +23480,21 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 0.12616297822657802 - syst_JES_EtaIntercalibration_Stat70: 0.032164183496554054 - syst_JES_EtaIntercalibration_Stat71: 0.1563514310775568 - syst_JES_EtaIntercalibration_Stat72: 6.079665677485893 - syst_JES_EtaIntercalibration_Stat73: 25.44177028038733 - syst_JES_EtaIntercalibration_Stat74: 13.867416017412907 - syst_JES_EtaIntercalibration_Stat75: 0.28728142996023953 - syst_JES_EtaIntercalibration_Stat76: 0.07675583153741479 + syst_JES_EtaIntercalibration_Stat7: 1.26162978e-01 + syst_JES_EtaIntercalibration_Stat70: 3.21641835e-02 + syst_JES_EtaIntercalibration_Stat71: 1.56351431e-01 + syst_JES_EtaIntercalibration_Stat72: 6.07966568e+00 + syst_JES_EtaIntercalibration_Stat73: 2.54417703e+01 + syst_JES_EtaIntercalibration_Stat74: 1.38674160e+01 + syst_JES_EtaIntercalibration_Stat75: 2.87281430e-01 + syst_JES_EtaIntercalibration_Stat76: 7.67558315e-02 syst_JES_EtaIntercalibration_Stat77: 0.0 - syst_JES_EtaIntercalibration_Stat78: 0.6666987531861749 - syst_JES_EtaIntercalibration_Stat79: 13.431705997377996 - syst_JES_EtaIntercalibration_Stat8: 0.05659133038725986 - syst_JES_EtaIntercalibration_Stat80: 28.674983435043163 - syst_JES_EtaIntercalibration_Stat81: 6.006236175842571 - syst_JES_EtaIntercalibration_Stat82: 0.05306699044603905 + syst_JES_EtaIntercalibration_Stat78: 6.66698753e-01 + syst_JES_EtaIntercalibration_Stat79: 1.34317060e+01 + syst_JES_EtaIntercalibration_Stat8: 5.65913304e-02 + syst_JES_EtaIntercalibration_Stat80: 2.86749834e+01 + syst_JES_EtaIntercalibration_Stat81: 6.00623618e+00 + syst_JES_EtaIntercalibration_Stat82: 5.30669904e-02 syst_JES_EtaIntercalibration_Stat83: 0.0 syst_JES_EtaIntercalibration_Stat84: 0.0 syst_JES_EtaIntercalibration_Stat85: 0.0 @@ -23504,45 +23504,45 @@ bins: syst_JES_EtaIntercalibration_Stat89: 0.0 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 0.026968031073847418 - syst_JES_EtaIntercalibration_Stat92: 0.3287540227890755 - syst_JES_EtaIntercalibration_Stat93: 7.119363507364967 - syst_JES_EtaIntercalibration_Stat94: 25.86013921076219 - syst_JES_EtaIntercalibration_Stat95: 16.728185795237927 - syst_JES_EtaIntercalibration_Stat96: 0.2627006180046023 - syst_JES_EtaIntercalibration_Stat97: 0.07675583153741479 + syst_JES_EtaIntercalibration_Stat91: 2.69680311e-02 + syst_JES_EtaIntercalibration_Stat92: 3.28754023e-01 + syst_JES_EtaIntercalibration_Stat93: 7.11936351e+00 + syst_JES_EtaIntercalibration_Stat94: 2.58601392e+01 + syst_JES_EtaIntercalibration_Stat95: 1.67281858e+01 + syst_JES_EtaIntercalibration_Stat96: 2.62700618e-01 + syst_JES_EtaIntercalibration_Stat97: 7.67558315e-02 syst_JES_EtaIntercalibration_Stat98: 0.0 - syst_JES_EtaIntercalibration_Stat99: 0.5904871355076247 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.00021808496217472217 - syst_JES_Flavour_Comp: 19.035419617124283 - syst_JES_Flavour_Response: 408.12563163810233 - syst_JES_Gjet_Generator: 217.00383977017552 - syst_JES_Gjet_OOC: 142.13848837225615 - syst_JES_Gjet_Purity: 57.15617398846777 + syst_JES_EtaIntercalibration_Stat99: 5.90487136e-01 + syst_JES_EtaIntercalibration_TotalStat_MJB: 2.18084962e-04 + syst_JES_Flavour_Comp: 1.90354196e+01 + syst_JES_Flavour_Response: 4.08125632e+02 + syst_JES_Gjet_Generator: 2.17003840e+02 + syst_JES_Gjet_OOC: 1.42138488e+02 + syst_JES_Gjet_Purity: 5.71561740e+01 syst_JES_Gjet_Stat1: 0.0 - syst_JES_Gjet_Stat10: 1.653535850080064 - syst_JES_Gjet_Stat11: 0.47255292825248685 - syst_JES_Gjet_Stat12: 0.008428577978739162 - syst_JES_Gjet_Stat13: 4.309391691410749e-05 - syst_JES_Gjet_Stat14: 2.0542122570853117e-28 - syst_JES_Gjet_Stat15: 1.657572898355147e-22 + syst_JES_Gjet_Stat10: 1.65353585e+00 + syst_JES_Gjet_Stat11: 4.72552928e-01 + syst_JES_Gjet_Stat12: 8.42857798e-03 + syst_JES_Gjet_Stat13: 4.30939169e-05 + syst_JES_Gjet_Stat14: 2.05421226e-28 + syst_JES_Gjet_Stat15: 1.65757290e-22 syst_JES_Gjet_Stat2: 0.0 syst_JES_Gjet_Stat3: 0.0 - syst_JES_Gjet_Stat4: 3.283961194959526 - syst_JES_Gjet_Stat5: 4.272720766677832 - syst_JES_Gjet_Stat6: 13.259863225161864 - syst_JES_Gjet_Stat7: 20.596627757960764 - syst_JES_Gjet_Stat8: 3.541121008946178 - syst_JES_Gjet_Stat9: 1.971156403611849 - syst_JES_Gjet_Veto: 38.10887943773735 - syst_JES_Gjet_dPhi: 24.002013977997766 - syst_JES_LArESZee: 131.81185558495866 - syst_JES_LArEsmear: 8.458134945128268 - syst_JES_LAr_JVT: 22.07549036827948 + syst_JES_Gjet_Stat4: 3.28396119e+00 + syst_JES_Gjet_Stat5: 4.27272077e+00 + syst_JES_Gjet_Stat6: 1.32598632e+01 + syst_JES_Gjet_Stat7: 2.05966278e+01 + syst_JES_Gjet_Stat8: 3.54112101e+00 + syst_JES_Gjet_Stat9: 1.97115640e+00 + syst_JES_Gjet_Veto: 3.81088794e+01 + syst_JES_Gjet_dPhi: 2.40020140e+01 + syst_JES_LArESZee: 1.31811856e+02 + syst_JES_LArEsmear: 8.45813495e+00 + syst_JES_LAr_JVT: 2.20754904e+01 syst_JES_MJB_Alpha: 0.0 - syst_JES_MJB_Asym: 8.425561153418805e-10 + syst_JES_MJB_Asym: 8.42556115e-10 syst_JES_MJB_Beta: 0.0 - syst_JES_MJB_Fragmentation: 0.0018139101884746113 + syst_JES_MJB_Fragmentation: 1.81391019e-03 syst_JES_MJB_Stat1: 0.0 syst_JES_MJB_Stat10: 0.0 syst_JES_MJB_Stat11: 0.0 @@ -23553,64 +23553,64 @@ bins: syst_JES_MJB_Stat16: 0.0 syst_JES_MJB_Stat2: 0.0 syst_JES_MJB_Stat3: 0.0 - syst_JES_MJB_Stat4: 9.868359476123677e-23 + syst_JES_MJB_Stat4: 9.86835948e-23 syst_JES_MJB_Stat5: 0.0 syst_JES_MJB_Stat6: 0.0 syst_JES_MJB_Stat7: 0.0 syst_JES_MJB_Stat8: 0.0 syst_JES_MJB_Stat9: 0.0 - syst_JES_MJB_Threshold: 0.00048107711180225566 + syst_JES_MJB_Threshold: 4.81077112e-04 syst_JES_Pileup_MuOffset: 0.0 - syst_JES_Pileup_NPVOffset: 16.73011562273256 - syst_JES_Pileup_Pt_term: 50.81405054460822 - syst_JES_Pileup_Rho_topology: 125.54911579437746 + syst_JES_Pileup_NPVOffset: 1.67301156e+01 + syst_JES_Pileup_Pt_term: 5.08140505e+01 + syst_JES_Pileup_Rho_topology: 1.25549116e+02 syst_JES_PunchThrough_MC15: 0.0 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 209.79988393705082 - syst_JES_Zjet_MuScale: 11.143917802999086 - syst_JES_Zjet_MuSmearID: 0.4685445843246937 - syst_JES_Zjet_MuSmearMS: 3.058714479973572 - syst_JES_Zjet_OOC: 146.89882394015277 - syst_JES_Zjet_Stat1: 0.30059236517250404 - syst_JES_Zjet_Stat10: 6.504887143525243 - syst_JES_Zjet_Stat11: 5.198188987522482 - syst_JES_Zjet_Stat12: 0.6895664199335697 - syst_JES_Zjet_Stat13: 3.536291984551049e-06 - syst_JES_Zjet_Stat2: 1.7822802809883746e-05 + syst_JES_Zjet_MC: 2.09799884e+02 + syst_JES_Zjet_MuScale: 1.11439178e+01 + syst_JES_Zjet_MuSmearID: 4.68544584e-01 + syst_JES_Zjet_MuSmearMS: 3.05871448e+00 + syst_JES_Zjet_OOC: 1.46898824e+02 + syst_JES_Zjet_Stat1: 3.00592365e-01 + syst_JES_Zjet_Stat10: 6.50488714e+00 + syst_JES_Zjet_Stat11: 5.19818899e+00 + syst_JES_Zjet_Stat12: 6.89566420e-01 + syst_JES_Zjet_Stat13: 3.53629198e-06 + syst_JES_Zjet_Stat2: 1.78228028e-05 syst_JES_Zjet_Stat3: 0.0 syst_JES_Zjet_Stat4: 0.0 - syst_JES_Zjet_Stat5: 2.8059223082615814 - syst_JES_Zjet_Stat6: 5.492406644632205 - syst_JES_Zjet_Stat7: 9.342722555550926 - syst_JES_Zjet_Stat8: 16.140795364541365 - syst_JES_Zjet_Stat9: 19.968670461500434 - syst_JES_Zjet_Veto: 18.667479744196857 - syst_JES_Zjet_dPhi: 32.6005184007862 + syst_JES_Zjet_Stat5: 2.80592231e+00 + syst_JES_Zjet_Stat6: 5.49240664e+00 + syst_JES_Zjet_Stat7: 9.34272256e+00 + syst_JES_Zjet_Stat8: 1.61407954e+01 + syst_JES_Zjet_Stat9: 1.99686705e+01 + syst_JES_Zjet_Veto: 1.86674797e+01 + syst_JES_Zjet_dPhi: 3.26005184e+01 syst_PRW: 0.0 syst_Unfolding_bias: 16.1 - syst_cleaning: 99.83887264988523 + syst_cleaning: 9.98388726e+01 syst_lumi: 208.53 - stat: 44.01 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 96.96688524826402 - syst_JER_NP1: 10.161907731818864 - syst_JER_NP2: 11.084500022554018 - syst_JER_NP3: 12.762037925033761 - syst_JER_NP4: 2.6971423766646065 - syst_JER_NP5: 6.971292043086417 - syst_JER_NP6: 6.52920584757442 - syst_JER_NP7: 3.6545837998327526 - syst_JER_NP8: 7.892652453389799 - syst_JES_EtaIntercalibration_Modelling: 126.30806943639826 + syst_JER_NP0: 9.69668852e+01 + syst_JER_NP1: 1.01619077e+01 + syst_JER_NP2: 1.10845000e+01 + syst_JER_NP3: 1.27620379e+01 + syst_JER_NP4: 2.69714238e+00 + syst_JER_NP5: 6.97129204e+00 + syst_JER_NP6: 6.52920585e+00 + syst_JER_NP7: 3.65458380e+00 + syst_JER_NP8: 7.89265245e+00 + syst_JES_EtaIntercalibration_Modelling: 1.26308069e+02 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 6.603265612558683 - syst_JES_EtaIntercalibration_Stat101: 10.83164862797903 - syst_JES_EtaIntercalibration_Stat102: 3.203081485070275 - syst_JES_EtaIntercalibration_Stat103: 0.23823778037918333 + syst_JES_EtaIntercalibration_Stat100: 6.60326561e+00 + syst_JES_EtaIntercalibration_Stat101: 1.08316486e+01 + syst_JES_EtaIntercalibration_Stat102: 3.20308149e+00 + syst_JES_EtaIntercalibration_Stat103: 2.38237780e-01 syst_JES_EtaIntercalibration_Stat104: 0.0 syst_JES_EtaIntercalibration_Stat105: 0.0 syst_JES_EtaIntercalibration_Stat106: 0.0 @@ -23619,142 +23619,142 @@ bins: syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 syst_JES_EtaIntercalibration_Stat110: 0.0 - syst_JES_EtaIntercalibration_Stat111: 0.00709794420941726 - syst_JES_EtaIntercalibration_Stat112: 0.26348170240075497 - syst_JES_EtaIntercalibration_Stat113: 3.5700011204480036 - syst_JES_EtaIntercalibration_Stat114: 9.317541346836084 - syst_JES_EtaIntercalibration_Stat115: 7.848942349132143 - syst_JES_EtaIntercalibration_Stat116: 0.20308295718745084 + syst_JES_EtaIntercalibration_Stat111: 7.09794421e-03 + syst_JES_EtaIntercalibration_Stat112: 2.63481702e-01 + syst_JES_EtaIntercalibration_Stat113: 3.57000112e+00 + syst_JES_EtaIntercalibration_Stat114: 9.31754135e+00 + syst_JES_EtaIntercalibration_Stat115: 7.84894235e+00 + syst_JES_EtaIntercalibration_Stat116: 2.03082957e-01 syst_JES_EtaIntercalibration_Stat117: 0.0 syst_JES_EtaIntercalibration_Stat118: 0.0 - syst_JES_EtaIntercalibration_Stat119: 0.2822198433845501 + syst_JES_EtaIntercalibration_Stat119: 2.82219843e-01 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 8.10579809457403 - syst_JES_EtaIntercalibration_Stat121: 11.6566960155955 - syst_JES_EtaIntercalibration_Stat122: 3.039758543042523 - syst_JES_EtaIntercalibration_Stat123: 0.3315799316529877 + syst_JES_EtaIntercalibration_Stat120: 8.10579809e+00 + syst_JES_EtaIntercalibration_Stat121: 1.16566960e+01 + syst_JES_EtaIntercalibration_Stat122: 3.03975854e+00 + syst_JES_EtaIntercalibration_Stat123: 3.31579932e-01 syst_JES_EtaIntercalibration_Stat124: 0.0 syst_JES_EtaIntercalibration_Stat125: 0.0 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 syst_JES_EtaIntercalibration_Stat128: 0.0 syst_JES_EtaIntercalibration_Stat129: 0.0 - syst_JES_EtaIntercalibration_Stat13: 0.0492873825131747 + syst_JES_EtaIntercalibration_Stat13: 4.92873825e-02 syst_JES_EtaIntercalibration_Stat130: 0.0 - syst_JES_EtaIntercalibration_Stat131: 0.10689485300986198 - syst_JES_EtaIntercalibration_Stat132: 0.9459404632427985 - syst_JES_EtaIntercalibration_Stat133: 2.4625484259197825 - syst_JES_EtaIntercalibration_Stat134: 2.0950687339560012 - syst_JES_EtaIntercalibration_Stat135: 0.06643156234050197 + syst_JES_EtaIntercalibration_Stat131: 1.06894853e-01 + syst_JES_EtaIntercalibration_Stat132: 9.45940463e-01 + syst_JES_EtaIntercalibration_Stat133: 2.46254843e+00 + syst_JES_EtaIntercalibration_Stat134: 2.09506873e+00 + syst_JES_EtaIntercalibration_Stat135: 6.64315623e-02 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 - syst_JES_EtaIntercalibration_Stat138: 0.10545904797597976 - syst_JES_EtaIntercalibration_Stat139: 1.3593204184444518 - syst_JES_EtaIntercalibration_Stat14: 0.04318362276372838 - syst_JES_EtaIntercalibration_Stat140: 2.8199792552428464 - syst_JES_EtaIntercalibration_Stat141: 0.7616080799860254 - syst_JES_EtaIntercalibration_Stat142: 0.07285539376051714 + syst_JES_EtaIntercalibration_Stat138: 1.05459048e-01 + syst_JES_EtaIntercalibration_Stat139: 1.35932042e+00 + syst_JES_EtaIntercalibration_Stat14: 4.31836228e-02 + syst_JES_EtaIntercalibration_Stat140: 2.81997926e+00 + syst_JES_EtaIntercalibration_Stat141: 7.61608080e-01 + syst_JES_EtaIntercalibration_Stat142: 7.28553938e-02 syst_JES_EtaIntercalibration_Stat143: 0.0 syst_JES_EtaIntercalibration_Stat144: 0.0 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 syst_JES_EtaIntercalibration_Stat147: 0.0 syst_JES_EtaIntercalibration_Stat148: 0.0 - syst_JES_EtaIntercalibration_Stat149: 0.012654336282476454 - syst_JES_EtaIntercalibration_Stat15: 0.015495424122946747 - syst_JES_EtaIntercalibration_Stat150: 0.2865678061122708 - syst_JES_EtaIntercalibration_Stat151: 1.3319293787584985 - syst_JES_EtaIntercalibration_Stat152: 1.104982515698778 - syst_JES_EtaIntercalibration_Stat153: 0.04842814096783614 + syst_JES_EtaIntercalibration_Stat149: 1.26543363e-02 + syst_JES_EtaIntercalibration_Stat15: 1.54954241e-02 + syst_JES_EtaIntercalibration_Stat150: 2.86567806e-01 + syst_JES_EtaIntercalibration_Stat151: 1.33192938e+00 + syst_JES_EtaIntercalibration_Stat152: 1.10498252e+00 + syst_JES_EtaIntercalibration_Stat153: 4.84281410e-02 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 0.0018170893205068372 - syst_JES_EtaIntercalibration_Stat157: 0.8049559242592106 - syst_JES_EtaIntercalibration_Stat158: 1.3562167525878743 - syst_JES_EtaIntercalibration_Stat159: 0.2833755105862184 + syst_JES_EtaIntercalibration_Stat156: 1.81708932e-03 + syst_JES_EtaIntercalibration_Stat157: 8.04955924e-01 + syst_JES_EtaIntercalibration_Stat158: 1.35621675e+00 + syst_JES_EtaIntercalibration_Stat159: 2.83375511e-01 syst_JES_EtaIntercalibration_Stat16: 0.0 - syst_JES_EtaIntercalibration_Stat160: 0.013682755095374616 + syst_JES_EtaIntercalibration_Stat160: 1.36827551e-02 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 - syst_JES_EtaIntercalibration_Stat167: 9.896072289044779e-06 - syst_JES_EtaIntercalibration_Stat168: 0.007705465771126364 - syst_JES_EtaIntercalibration_Stat169: 0.08503419253453284 + syst_JES_EtaIntercalibration_Stat167: 9.89607229e-06 + syst_JES_EtaIntercalibration_Stat168: 7.70546577e-03 + syst_JES_EtaIntercalibration_Stat169: 8.50341925e-02 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 0.07160137842248569 - syst_JES_EtaIntercalibration_Stat171: 0.000197920426779773 + syst_JES_EtaIntercalibration_Stat170: 7.16013784e-02 + syst_JES_EtaIntercalibration_Stat171: 1.97920427e-04 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 - syst_JES_EtaIntercalibration_Stat174: 0.00023751754208900026 - syst_JES_EtaIntercalibration_Stat175: 0.15815722770395288 - syst_JES_EtaIntercalibration_Stat176: 0.0237837717782525 - syst_JES_EtaIntercalibration_Stat177: 0.011648446814382594 - syst_JES_EtaIntercalibration_Stat178: 0.00018684818088490987 + syst_JES_EtaIntercalibration_Stat174: 2.37517542e-04 + syst_JES_EtaIntercalibration_Stat175: 1.58157228e-01 + syst_JES_EtaIntercalibration_Stat176: 2.37837718e-02 + syst_JES_EtaIntercalibration_Stat177: 1.16484468e-02 + syst_JES_EtaIntercalibration_Stat178: 1.86848181e-04 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 syst_JES_EtaIntercalibration_Stat180: 0.0 syst_JES_EtaIntercalibration_Stat181: 0.0 syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 - syst_JES_EtaIntercalibration_Stat184: 3.67721953244871e-07 - syst_JES_EtaIntercalibration_Stat185: 0.0008156849759557914 - syst_JES_EtaIntercalibration_Stat186: 0.004696100589851117 - syst_JES_EtaIntercalibration_Stat187: 0.004205325552201637 - syst_JES_EtaIntercalibration_Stat188: 3.909238672682956e-06 + syst_JES_EtaIntercalibration_Stat184: 3.67721953e-07 + syst_JES_EtaIntercalibration_Stat185: 8.15684976e-04 + syst_JES_EtaIntercalibration_Stat186: 4.69610059e-03 + syst_JES_EtaIntercalibration_Stat187: 4.20532555e-03 + syst_JES_EtaIntercalibration_Stat188: 3.90923867e-06 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 - syst_JES_EtaIntercalibration_Stat191: 2.1615994078459588e-10 - syst_JES_EtaIntercalibration_Stat192: 0.0038462769986052745 - syst_JES_EtaIntercalibration_Stat193: 0.007002606086308155 - syst_JES_EtaIntercalibration_Stat194: 0.0012593371947179197 - syst_JES_EtaIntercalibration_Stat195: 5.639557429444265e-08 - syst_JES_EtaIntercalibration_Stat196: 1.4038271795345753e-27 + syst_JES_EtaIntercalibration_Stat191: 2.16159941e-10 + syst_JES_EtaIntercalibration_Stat192: 3.84627700e-03 + syst_JES_EtaIntercalibration_Stat193: 7.00260609e-03 + syst_JES_EtaIntercalibration_Stat194: 1.25933719e-03 + syst_JES_EtaIntercalibration_Stat195: 5.63955743e-08 + syst_JES_EtaIntercalibration_Stat196: 1.40382718e-27 syst_JES_EtaIntercalibration_Stat197: 0.0 syst_JES_EtaIntercalibration_Stat198: 0.0 - syst_JES_EtaIntercalibration_Stat199: 6.607773830875267e-15 + syst_JES_EtaIntercalibration_Stat199: 6.60777383e-15 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 8.249574049610077e-08 - syst_JES_EtaIntercalibration_Stat201: 1.582423720120499e-05 - syst_JES_EtaIntercalibration_Stat202: 1.3003561771683942e-05 - syst_JES_EtaIntercalibration_Stat203: 7.682485229340766e-16 + syst_JES_EtaIntercalibration_Stat200: 8.24957405e-08 + syst_JES_EtaIntercalibration_Stat201: 1.58242372e-05 + syst_JES_EtaIntercalibration_Stat202: 1.30035618e-05 + syst_JES_EtaIntercalibration_Stat203: 7.68248523e-16 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 - syst_JES_EtaIntercalibration_Stat206: 2.1841088486747004e-15 - syst_JES_EtaIntercalibration_Stat207: 9.09704483609925e-06 - syst_JES_EtaIntercalibration_Stat208: 1.4604992297156474e-05 - syst_JES_EtaIntercalibration_Stat209: 5.2640824021547195e-06 + syst_JES_EtaIntercalibration_Stat206: 2.18410885e-15 + syst_JES_EtaIntercalibration_Stat207: 9.09704484e-06 + syst_JES_EtaIntercalibration_Stat208: 1.46049923e-05 + syst_JES_EtaIntercalibration_Stat209: 5.26408240e-06 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 4.9337466693858406e-20 + syst_JES_EtaIntercalibration_Stat210: 4.93374667e-20 syst_JES_EtaIntercalibration_Stat211: 0.0 - syst_JES_EtaIntercalibration_Stat212: 1.3448051187811564e-35 - syst_JES_EtaIntercalibration_Stat213: 1.4085862442534358e-20 - syst_JES_EtaIntercalibration_Stat214: 1.1764089085007814e-15 - syst_JES_EtaIntercalibration_Stat215: 1.6567065974418401e-15 + syst_JES_EtaIntercalibration_Stat212: 1.34480512e-35 + syst_JES_EtaIntercalibration_Stat213: 1.40858624e-20 + syst_JES_EtaIntercalibration_Stat214: 1.17640891e-15 + syst_JES_EtaIntercalibration_Stat215: 1.65670660e-15 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 - syst_JES_EtaIntercalibration_Stat219: 6.0154124546867105e-27 + syst_JES_EtaIntercalibration_Stat219: 6.01541245e-27 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 1.3456244758475523e-15 - syst_JES_EtaIntercalibration_Stat221: 1.3933811893903978e-11 - syst_JES_EtaIntercalibration_Stat222: 8.759846959299887e-16 - syst_JES_EtaIntercalibration_Stat223: 1.3769803920172576e-27 + syst_JES_EtaIntercalibration_Stat220: 1.34562448e-15 + syst_JES_EtaIntercalibration_Stat221: 1.39338119e-11 + syst_JES_EtaIntercalibration_Stat222: 8.75984696e-16 + syst_JES_EtaIntercalibration_Stat223: 1.37698039e-27 syst_JES_EtaIntercalibration_Stat224: 0.0 syst_JES_EtaIntercalibration_Stat225: 0.0 - syst_JES_EtaIntercalibration_Stat226: 4.500734023467727e-36 - syst_JES_EtaIntercalibration_Stat227: 2.8215107655297013e-36 + syst_JES_EtaIntercalibration_Stat226: 4.50073402e-36 + syst_JES_EtaIntercalibration_Stat227: 2.82151077e-36 syst_JES_EtaIntercalibration_Stat228: 0.0 syst_JES_EtaIntercalibration_Stat229: 0.0 syst_JES_EtaIntercalibration_Stat23: 0.0 syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 - syst_JES_EtaIntercalibration_Stat232: 5.24464984531856e-36 - syst_JES_EtaIntercalibration_Stat233: 5.818824688027643e-36 + syst_JES_EtaIntercalibration_Stat232: 5.24464985e-36 + syst_JES_EtaIntercalibration_Stat233: 5.81882469e-36 syst_JES_EtaIntercalibration_Stat234: 0.0 syst_JES_EtaIntercalibration_Stat235: 0.0 syst_JES_EtaIntercalibration_Stat236: 0.0 @@ -23770,19 +23770,19 @@ bins: syst_JES_EtaIntercalibration_Stat245: 0.0 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 - syst_JES_EtaIntercalibration_Stat27: 0.04099545471146771 - syst_JES_EtaIntercalibration_Stat28: 0.061604943592215064 - syst_JES_EtaIntercalibration_Stat29: 0.1532491761804937 + syst_JES_EtaIntercalibration_Stat27: 4.09954547e-02 + syst_JES_EtaIntercalibration_Stat28: 6.16049436e-02 + syst_JES_EtaIntercalibration_Stat29: 1.53249176e-01 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 0.12273828935992225 - syst_JES_EtaIntercalibration_Stat31: 0.008665450190267092 + syst_JES_EtaIntercalibration_Stat30: 1.22738289e-01 + syst_JES_EtaIntercalibration_Stat31: 8.66545019e-03 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 - syst_JES_EtaIntercalibration_Stat34: 0.003251925391210567 - syst_JES_EtaIntercalibration_Stat35: 0.17117736404311756 - syst_JES_EtaIntercalibration_Stat36: 0.11134717149528316 - syst_JES_EtaIntercalibration_Stat37: 0.1328606318666293 - syst_JES_EtaIntercalibration_Stat38: 0.048304013567715055 + syst_JES_EtaIntercalibration_Stat34: 3.25192539e-03 + syst_JES_EtaIntercalibration_Stat35: 1.71177364e-01 + syst_JES_EtaIntercalibration_Stat36: 1.11347171e-01 + syst_JES_EtaIntercalibration_Stat37: 1.32860632e-01 + syst_JES_EtaIntercalibration_Stat38: 4.83040136e-02 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 syst_JES_EtaIntercalibration_Stat40: 0.0 @@ -23793,21 +23793,21 @@ bins: syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 syst_JES_EtaIntercalibration_Stat47: 0.0 - syst_JES_EtaIntercalibration_Stat48: 0.018134571955246145 - syst_JES_EtaIntercalibration_Stat49: 0.04796884992367443 - syst_JES_EtaIntercalibration_Stat5: 0.01291243877042598 - syst_JES_EtaIntercalibration_Stat50: 0.24301686422962498 - syst_JES_EtaIntercalibration_Stat51: 0.6128003590077277 - syst_JES_EtaIntercalibration_Stat52: 0.4170469368068779 - syst_JES_EtaIntercalibration_Stat53: 0.03673587211432444 - syst_JES_EtaIntercalibration_Stat54: 0.047995127877733586 + syst_JES_EtaIntercalibration_Stat48: 1.81345720e-02 + syst_JES_EtaIntercalibration_Stat49: 4.79688499e-02 + syst_JES_EtaIntercalibration_Stat5: 1.29124388e-02 + syst_JES_EtaIntercalibration_Stat50: 2.43016864e-01 + syst_JES_EtaIntercalibration_Stat51: 6.12800359e-01 + syst_JES_EtaIntercalibration_Stat52: 4.17046937e-01 + syst_JES_EtaIntercalibration_Stat53: 3.67358721e-02 + syst_JES_EtaIntercalibration_Stat54: 4.79951279e-02 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 0.007448776057178791 - syst_JES_EtaIntercalibration_Stat57: 0.5677473205573057 - syst_JES_EtaIntercalibration_Stat58: 1.1818564718272688 - syst_JES_EtaIntercalibration_Stat59: 0.2294622191124282 - syst_JES_EtaIntercalibration_Stat6: 0.0456907935009888 - syst_JES_EtaIntercalibration_Stat60: 0.06154425237176905 + syst_JES_EtaIntercalibration_Stat56: 7.44877606e-03 + syst_JES_EtaIntercalibration_Stat57: 5.67747321e-01 + syst_JES_EtaIntercalibration_Stat58: 1.18185647e+00 + syst_JES_EtaIntercalibration_Stat59: 2.29462219e-01 + syst_JES_EtaIntercalibration_Stat6: 4.56907935e-02 + syst_JES_EtaIntercalibration_Stat60: 6.15442524e-02 syst_JES_EtaIntercalibration_Stat61: 0.0 syst_JES_EtaIntercalibration_Stat62: 0.0 syst_JES_EtaIntercalibration_Stat63: 0.0 @@ -23817,21 +23817,21 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 0.04516692041749138 - syst_JES_EtaIntercalibration_Stat70: 0.01291243877042598 - syst_JES_EtaIntercalibration_Stat71: 0.0766793529706661 - syst_JES_EtaIntercalibration_Stat72: 1.8708145284875248 - syst_JES_EtaIntercalibration_Stat73: 8.04448388649017 - syst_JES_EtaIntercalibration_Stat74: 4.015233924692308 - syst_JES_EtaIntercalibration_Stat75: 0.06901837201064655 - syst_JES_EtaIntercalibration_Stat76: 0.047995127877733586 + syst_JES_EtaIntercalibration_Stat7: 4.51669204e-02 + syst_JES_EtaIntercalibration_Stat70: 1.29124388e-02 + syst_JES_EtaIntercalibration_Stat71: 7.66793530e-02 + syst_JES_EtaIntercalibration_Stat72: 1.87081453e+00 + syst_JES_EtaIntercalibration_Stat73: 8.04448389e+00 + syst_JES_EtaIntercalibration_Stat74: 4.01523392e+00 + syst_JES_EtaIntercalibration_Stat75: 6.90183720e-02 + syst_JES_EtaIntercalibration_Stat76: 4.79951279e-02 syst_JES_EtaIntercalibration_Stat77: 0.0 - syst_JES_EtaIntercalibration_Stat78: 0.1565049330692167 - syst_JES_EtaIntercalibration_Stat79: 4.507172589329146 - syst_JES_EtaIntercalibration_Stat8: 0.03326692952467962 - syst_JES_EtaIntercalibration_Stat80: 8.981943108258925 - syst_JES_EtaIntercalibration_Stat81: 2.1443698375047155 - syst_JES_EtaIntercalibration_Stat82: 0.10872164181983274 + syst_JES_EtaIntercalibration_Stat78: 1.56504933e-01 + syst_JES_EtaIntercalibration_Stat79: 4.50717259e+00 + syst_JES_EtaIntercalibration_Stat8: 3.32669295e-02 + syst_JES_EtaIntercalibration_Stat80: 8.98194311e+00 + syst_JES_EtaIntercalibration_Stat81: 2.14436984e+00 + syst_JES_EtaIntercalibration_Stat82: 1.08721642e-01 syst_JES_EtaIntercalibration_Stat83: 0.0 syst_JES_EtaIntercalibration_Stat84: 0.0 syst_JES_EtaIntercalibration_Stat85: 0.0 @@ -23841,45 +23841,45 @@ bins: syst_JES_EtaIntercalibration_Stat89: 0.0 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 0.010873814969917411 - syst_JES_EtaIntercalibration_Stat92: 0.17622187009562693 - syst_JES_EtaIntercalibration_Stat93: 3.0555672141191725 - syst_JES_EtaIntercalibration_Stat94: 10.310705213514739 - syst_JES_EtaIntercalibration_Stat95: 6.3485012404503784 - syst_JES_EtaIntercalibration_Stat96: 0.12474539630783975 - syst_JES_EtaIntercalibration_Stat97: 0.047995127877733586 + syst_JES_EtaIntercalibration_Stat91: 1.08738150e-02 + syst_JES_EtaIntercalibration_Stat92: 1.76221870e-01 + syst_JES_EtaIntercalibration_Stat93: 3.05556721e+00 + syst_JES_EtaIntercalibration_Stat94: 1.03107052e+01 + syst_JES_EtaIntercalibration_Stat95: 6.34850124e+00 + syst_JES_EtaIntercalibration_Stat96: 1.24745396e-01 + syst_JES_EtaIntercalibration_Stat97: 4.79951279e-02 syst_JES_EtaIntercalibration_Stat98: 0.0 - syst_JES_EtaIntercalibration_Stat99: 0.24203340162052014 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.01654945767714157 - syst_JES_Flavour_Comp: 8.877484821164156 - syst_JES_Flavour_Response: 180.83358171257905 - syst_JES_Gjet_Generator: 105.64879919336519 - syst_JES_Gjet_OOC: 64.36339940330994 - syst_JES_Gjet_Purity: 26.233202244483994 + syst_JES_EtaIntercalibration_Stat99: 2.42033402e-01 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.65494577e-02 + syst_JES_Flavour_Comp: 8.87748482e+00 + syst_JES_Flavour_Response: 1.80833582e+02 + syst_JES_Gjet_Generator: 1.05648799e+02 + syst_JES_Gjet_OOC: 6.43633994e+01 + syst_JES_Gjet_Purity: 2.62332022e+01 syst_JES_Gjet_Stat1: 0.0 - syst_JES_Gjet_Stat10: 0.7936719851424769 - syst_JES_Gjet_Stat11: 0.5164498112111185 - syst_JES_Gjet_Stat12: 0.007552979279727967 - syst_JES_Gjet_Stat13: 0.0008732080679883805 - syst_JES_Gjet_Stat14: 4.522383991145822e-19 - syst_JES_Gjet_Stat15: 2.351319628178293e-15 + syst_JES_Gjet_Stat10: 7.93671985e-01 + syst_JES_Gjet_Stat11: 5.16449811e-01 + syst_JES_Gjet_Stat12: 7.55297928e-03 + syst_JES_Gjet_Stat13: 8.73208068e-04 + syst_JES_Gjet_Stat14: 4.52238399e-19 + syst_JES_Gjet_Stat15: 2.35131963e-15 syst_JES_Gjet_Stat2: 0.0 syst_JES_Gjet_Stat3: 0.0 - syst_JES_Gjet_Stat4: 1.2736901772016616 - syst_JES_Gjet_Stat5: 2.095198498949443 - syst_JES_Gjet_Stat6: 6.089202472409667 - syst_JES_Gjet_Stat7: 10.182213659121478 - syst_JES_Gjet_Stat8: 3.88896453410159 - syst_JES_Gjet_Stat9: 1.3116428887086606 - syst_JES_Gjet_Veto: 19.86160366133611 - syst_JES_Gjet_dPhi: 12.142212102825415 - syst_JES_LArESZee: 66.5658202890192 - syst_JES_LArEsmear: 6.108931228128206 - syst_JES_LAr_JVT: 11.456134208361913 + syst_JES_Gjet_Stat4: 1.27369018e+00 + syst_JES_Gjet_Stat5: 2.09519850e+00 + syst_JES_Gjet_Stat6: 6.08920247e+00 + syst_JES_Gjet_Stat7: 1.01822137e+01 + syst_JES_Gjet_Stat8: 3.88896453e+00 + syst_JES_Gjet_Stat9: 1.31164289e+00 + syst_JES_Gjet_Veto: 1.98616037e+01 + syst_JES_Gjet_dPhi: 1.21422121e+01 + syst_JES_LArESZee: 6.65658203e+01 + syst_JES_LArEsmear: 6.10893123e+00 + syst_JES_LAr_JVT: 1.14561342e+01 syst_JES_MJB_Alpha: 0.0 - syst_JES_MJB_Asym: 4.1984911575469585e-06 + syst_JES_MJB_Asym: 4.19849116e-06 syst_JES_MJB_Beta: 0.0 - syst_JES_MJB_Fragmentation: 0.005490502862898808 + syst_JES_MJB_Fragmentation: 5.49050286e-03 syst_JES_MJB_Stat1: 0.0 syst_JES_MJB_Stat10: 0.0 syst_JES_MJB_Stat11: 0.0 @@ -23890,64 +23890,64 @@ bins: syst_JES_MJB_Stat16: 0.0 syst_JES_MJB_Stat2: 0.0 syst_JES_MJB_Stat3: 0.0 - syst_JES_MJB_Stat4: 1.3994970525156529e-15 + syst_JES_MJB_Stat4: 1.39949705e-15 syst_JES_MJB_Stat5: 0.0 syst_JES_MJB_Stat6: 0.0 syst_JES_MJB_Stat7: 0.0 syst_JES_MJB_Stat8: 0.0 syst_JES_MJB_Stat9: 0.0 - syst_JES_MJB_Threshold: 0.002238675668782774 - syst_JES_Pileup_MuOffset: 3.4391561101526055e-33 - syst_JES_Pileup_NPVOffset: 7.688862383343846 - syst_JES_Pileup_Pt_term: 24.47512359519355 - syst_JES_Pileup_Rho_topology: 55.448903343528805 - syst_JES_PunchThrough_MC15: 4.601192970306723e-34 + syst_JES_MJB_Threshold: 2.23867567e-03 + syst_JES_Pileup_MuOffset: 3.43915611e-33 + syst_JES_Pileup_NPVOffset: 7.68886238e+00 + syst_JES_Pileup_Pt_term: 2.44751236e+01 + syst_JES_Pileup_Rho_topology: 5.54489033e+01 + syst_JES_PunchThrough_MC15: 4.60119297e-34 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 96.54089690903021 - syst_JES_Zjet_MuScale: 6.708574885920258 - syst_JES_Zjet_MuSmearID: 0.9684541961290684 - syst_JES_Zjet_MuSmearMS: 2.8376047557755464 - syst_JES_Zjet_OOC: 58.35991613256483 - syst_JES_Zjet_Stat1: 0.28613389785203713 - syst_JES_Zjet_Stat10: 6.959602197683428 - syst_JES_Zjet_Stat11: 2.1028002758226947 - syst_JES_Zjet_Stat12: 0.9983496419090859 - syst_JES_Zjet_Stat13: 0.0008518958078896739 - syst_JES_Zjet_Stat2: 0.0003623450289434091 + syst_JES_Zjet_MC: 9.65408969e+01 + syst_JES_Zjet_MuScale: 6.70857489e+00 + syst_JES_Zjet_MuSmearID: 9.68454196e-01 + syst_JES_Zjet_MuSmearMS: 2.83760476e+00 + syst_JES_Zjet_OOC: 5.83599161e+01 + syst_JES_Zjet_Stat1: 2.86133898e-01 + syst_JES_Zjet_Stat10: 6.95960220e+00 + syst_JES_Zjet_Stat11: 2.10280028e+00 + syst_JES_Zjet_Stat12: 9.98349642e-01 + syst_JES_Zjet_Stat13: 8.51895808e-04 + syst_JES_Zjet_Stat2: 3.62345029e-04 syst_JES_Zjet_Stat3: 0.0 syst_JES_Zjet_Stat4: 0.0 - syst_JES_Zjet_Stat5: 1.0632193882261554 - syst_JES_Zjet_Stat6: 2.38095878796757 - syst_JES_Zjet_Stat7: 4.082372594460237 - syst_JES_Zjet_Stat8: 7.383581295685719 - syst_JES_Zjet_Stat9: 11.33053117686898 - syst_JES_Zjet_Veto: 8.645496211901317 - syst_JES_Zjet_dPhi: 13.641968333052235 + syst_JES_Zjet_Stat5: 1.06321939e+00 + syst_JES_Zjet_Stat6: 2.38095879e+00 + syst_JES_Zjet_Stat7: 4.08237259e+00 + syst_JES_Zjet_Stat8: 7.38358130e+00 + syst_JES_Zjet_Stat9: 1.13305312e+01 + syst_JES_Zjet_Veto: 8.64549621e+00 + syst_JES_Zjet_dPhi: 1.36419683e+01 syst_PRW: 0.0 syst_Unfolding_bias: 7.657 - syst_cleaning: 40.911040074776885 + syst_cleaning: 4.09110401e+01 syst_lumi: 100.634 - stat: 16.503 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 41.4863191064235 - syst_JER_NP1: 3.760148958153121 - syst_JER_NP2: 2.4522348990257847 - syst_JER_NP3: 6.112588976857515 - syst_JER_NP4: 0.8299649510672124 - syst_JER_NP5: 2.4194972101657815 - syst_JER_NP6: 2.308397008748712 - syst_JER_NP7: 0.8184195501086226 - syst_JER_NP8: 2.9606514485835715 - syst_JES_EtaIntercalibration_Modelling: 62.71803379212393 + syst_JER_NP0: 4.14863191e+01 + syst_JER_NP1: 3.76014896e+00 + syst_JER_NP2: 2.45223490e+00 + syst_JER_NP3: 6.11258898e+00 + syst_JER_NP4: 8.29964951e-01 + syst_JER_NP5: 2.41949721e+00 + syst_JER_NP6: 2.30839701e+00 + syst_JER_NP7: 8.18419550e-01 + syst_JER_NP8: 2.96065145e+00 + syst_JES_EtaIntercalibration_Modelling: 6.27180338e+01 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 2.124278877642952 - syst_JES_EtaIntercalibration_Stat101: 3.459237199152437 - syst_JES_EtaIntercalibration_Stat102: 1.0381137654419192 - syst_JES_EtaIntercalibration_Stat103: 0.0839442390816666 + syst_JES_EtaIntercalibration_Stat100: 2.12427888e+00 + syst_JES_EtaIntercalibration_Stat101: 3.45923720e+00 + syst_JES_EtaIntercalibration_Stat102: 1.03811377e+00 + syst_JES_EtaIntercalibration_Stat103: 8.39442391e-02 syst_JES_EtaIntercalibration_Stat104: 0.0 syst_JES_EtaIntercalibration_Stat105: 0.0 syst_JES_EtaIntercalibration_Stat106: 0.0 @@ -23956,143 +23956,143 @@ bins: syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 syst_JES_EtaIntercalibration_Stat110: 0.0 - syst_JES_EtaIntercalibration_Stat111: 0.002463842273766728 - syst_JES_EtaIntercalibration_Stat112: 0.15003991568912586 - syst_JES_EtaIntercalibration_Stat113: 2.5467537670532656 - syst_JES_EtaIntercalibration_Stat114: 6.865673528503959 - syst_JES_EtaIntercalibration_Stat115: 5.225076554463102 - syst_JES_EtaIntercalibration_Stat116: 0.13180906645599155 + syst_JES_EtaIntercalibration_Stat111: 2.46384227e-03 + syst_JES_EtaIntercalibration_Stat112: 1.50039916e-01 + syst_JES_EtaIntercalibration_Stat113: 2.54675377e+00 + syst_JES_EtaIntercalibration_Stat114: 6.86567353e+00 + syst_JES_EtaIntercalibration_Stat115: 5.22507655e+00 + syst_JES_EtaIntercalibration_Stat116: 1.31809066e-01 syst_JES_EtaIntercalibration_Stat117: 0.0 syst_JES_EtaIntercalibration_Stat118: 0.0 - syst_JES_EtaIntercalibration_Stat119: 0.15477722926839077 + syst_JES_EtaIntercalibration_Stat119: 1.54777229e-01 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 5.7271677991831185 - syst_JES_EtaIntercalibration_Stat121: 8.490083745170008 - syst_JES_EtaIntercalibration_Stat122: 2.225557177427711 - syst_JES_EtaIntercalibration_Stat123: 0.18842892559264887 + syst_JES_EtaIntercalibration_Stat120: 5.72716780e+00 + syst_JES_EtaIntercalibration_Stat121: 8.49008375e+00 + syst_JES_EtaIntercalibration_Stat122: 2.22555718e+00 + syst_JES_EtaIntercalibration_Stat123: 1.88428926e-01 syst_JES_EtaIntercalibration_Stat124: 0.0 syst_JES_EtaIntercalibration_Stat125: 0.0 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 syst_JES_EtaIntercalibration_Stat128: 0.0 syst_JES_EtaIntercalibration_Stat129: 0.0 - syst_JES_EtaIntercalibration_Stat13: 0.02390957992102747 + syst_JES_EtaIntercalibration_Stat13: 2.39095799e-02 syst_JES_EtaIntercalibration_Stat130: 0.0 - syst_JES_EtaIntercalibration_Stat131: 0.09183720637628302 - syst_JES_EtaIntercalibration_Stat132: 1.6515937757208945 - syst_JES_EtaIntercalibration_Stat133: 3.9362891153979027 - syst_JES_EtaIntercalibration_Stat134: 2.927722835242434 - syst_JES_EtaIntercalibration_Stat135: 0.07267860259388591 + syst_JES_EtaIntercalibration_Stat131: 9.18372064e-02 + syst_JES_EtaIntercalibration_Stat132: 1.65159378e+00 + syst_JES_EtaIntercalibration_Stat133: 3.93628912e+00 + syst_JES_EtaIntercalibration_Stat134: 2.92772284e+00 + syst_JES_EtaIntercalibration_Stat135: 7.26786026e-02 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 - syst_JES_EtaIntercalibration_Stat138: 0.024598126976459002 - syst_JES_EtaIntercalibration_Stat139: 2.421258144023475 - syst_JES_EtaIntercalibration_Stat14: 0.010013774163620828 - syst_JES_EtaIntercalibration_Stat140: 3.6395393595893424 - syst_JES_EtaIntercalibration_Stat141: 1.4149194208505302 - syst_JES_EtaIntercalibration_Stat142: 0.07691085277774522 + syst_JES_EtaIntercalibration_Stat138: 2.45981270e-02 + syst_JES_EtaIntercalibration_Stat139: 2.42125814e+00 + syst_JES_EtaIntercalibration_Stat14: 1.00137742e-02 + syst_JES_EtaIntercalibration_Stat140: 3.63953936e+00 + syst_JES_EtaIntercalibration_Stat141: 1.41491942e+00 + syst_JES_EtaIntercalibration_Stat142: 7.69108528e-02 syst_JES_EtaIntercalibration_Stat143: 0.0 syst_JES_EtaIntercalibration_Stat144: 0.0 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 syst_JES_EtaIntercalibration_Stat147: 0.0 syst_JES_EtaIntercalibration_Stat148: 0.0 - syst_JES_EtaIntercalibration_Stat149: 0.015132145518729323 - syst_JES_EtaIntercalibration_Stat15: 0.007111108985770082 - syst_JES_EtaIntercalibration_Stat150: 0.11795265999544054 - syst_JES_EtaIntercalibration_Stat151: 0.9843555607604398 - syst_JES_EtaIntercalibration_Stat152: 0.7592503934803063 - syst_JES_EtaIntercalibration_Stat153: 0.016758427155655956 + syst_JES_EtaIntercalibration_Stat149: 1.51321455e-02 + syst_JES_EtaIntercalibration_Stat15: 7.11110899e-03 + syst_JES_EtaIntercalibration_Stat150: 1.17952660e-01 + syst_JES_EtaIntercalibration_Stat151: 9.84355561e-01 + syst_JES_EtaIntercalibration_Stat152: 7.59250393e-01 + syst_JES_EtaIntercalibration_Stat153: 1.67584272e-02 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 0.0018142461430302119 - syst_JES_EtaIntercalibration_Stat157: 0.5645552652309603 - syst_JES_EtaIntercalibration_Stat158: 0.9349329534784834 - syst_JES_EtaIntercalibration_Stat159: 0.10452382838377094 + syst_JES_EtaIntercalibration_Stat156: 1.81424614e-03 + syst_JES_EtaIntercalibration_Stat157: 5.64555265e-01 + syst_JES_EtaIntercalibration_Stat158: 9.34932953e-01 + syst_JES_EtaIntercalibration_Stat159: 1.04523828e-01 syst_JES_EtaIntercalibration_Stat16: 0.0 - syst_JES_EtaIntercalibration_Stat160: 0.04072079567002589 + syst_JES_EtaIntercalibration_Stat160: 4.07207957e-02 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 - syst_JES_EtaIntercalibration_Stat167: 0.0003010304303554719 - syst_JES_EtaIntercalibration_Stat168: 0.043074749854177904 - syst_JES_EtaIntercalibration_Stat169: 0.2142769411299312 + syst_JES_EtaIntercalibration_Stat167: 3.01030430e-04 + syst_JES_EtaIntercalibration_Stat168: 4.30747499e-02 + syst_JES_EtaIntercalibration_Stat169: 2.14276941e-01 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 0.14158368223421794 - syst_JES_EtaIntercalibration_Stat171: 0.00011021480934974209 + syst_JES_EtaIntercalibration_Stat170: 1.41583682e-01 + syst_JES_EtaIntercalibration_Stat171: 1.10214809e-04 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 - syst_JES_EtaIntercalibration_Stat174: 0.0006425345438184628 - syst_JES_EtaIntercalibration_Stat175: 0.2004050320600758 - syst_JES_EtaIntercalibration_Stat176: 0.1664220763600791 - syst_JES_EtaIntercalibration_Stat177: 0.06196528382893118 - syst_JES_EtaIntercalibration_Stat178: 0.0031966380319798484 + syst_JES_EtaIntercalibration_Stat174: 6.42534544e-04 + syst_JES_EtaIntercalibration_Stat175: 2.00405032e-01 + syst_JES_EtaIntercalibration_Stat176: 1.66422076e-01 + syst_JES_EtaIntercalibration_Stat177: 6.19652838e-02 + syst_JES_EtaIntercalibration_Stat178: 3.19663803e-03 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 syst_JES_EtaIntercalibration_Stat180: 0.0 syst_JES_EtaIntercalibration_Stat181: 0.0 syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 - syst_JES_EtaIntercalibration_Stat184: 5.633366591766242e-05 - syst_JES_EtaIntercalibration_Stat185: 0.002400215198685318 - syst_JES_EtaIntercalibration_Stat186: 0.0061444556105484235 - syst_JES_EtaIntercalibration_Stat187: 0.0011376722682741283 - syst_JES_EtaIntercalibration_Stat188: 7.138647403395128e-05 + syst_JES_EtaIntercalibration_Stat184: 5.63336659e-05 + syst_JES_EtaIntercalibration_Stat185: 2.40021520e-03 + syst_JES_EtaIntercalibration_Stat186: 6.14445561e-03 + syst_JES_EtaIntercalibration_Stat187: 1.13767227e-03 + syst_JES_EtaIntercalibration_Stat188: 7.13864740e-05 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 - syst_JES_EtaIntercalibration_Stat191: 4.654886545336826e-07 - syst_JES_EtaIntercalibration_Stat192: 0.0015433591310838836 - syst_JES_EtaIntercalibration_Stat193: 0.004464438150540335 - syst_JES_EtaIntercalibration_Stat194: 0.00248784016166634 - syst_JES_EtaIntercalibration_Stat195: 9.833718459972302e-06 - syst_JES_EtaIntercalibration_Stat196: 2.3729096063693726e-19 + syst_JES_EtaIntercalibration_Stat191: 4.65488655e-07 + syst_JES_EtaIntercalibration_Stat192: 1.54335913e-03 + syst_JES_EtaIntercalibration_Stat193: 4.46443815e-03 + syst_JES_EtaIntercalibration_Stat194: 2.48784016e-03 + syst_JES_EtaIntercalibration_Stat195: 9.83371846e-06 + syst_JES_EtaIntercalibration_Stat196: 2.37290961e-19 syst_JES_EtaIntercalibration_Stat197: 0.0 syst_JES_EtaIntercalibration_Stat198: 0.0 - syst_JES_EtaIntercalibration_Stat199: 3.253657442018136e-10 + syst_JES_EtaIntercalibration_Stat199: 3.25365744e-10 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 1.2875940470505446e-05 - syst_JES_EtaIntercalibration_Stat201: 0.00029152622523539795 - syst_JES_EtaIntercalibration_Stat202: 0.00024876048721611717 - syst_JES_EtaIntercalibration_Stat203: 3.772761717738181e-11 + syst_JES_EtaIntercalibration_Stat200: 1.28759405e-05 + syst_JES_EtaIntercalibration_Stat201: 2.91526225e-04 + syst_JES_EtaIntercalibration_Stat202: 2.48760487e-04 + syst_JES_EtaIntercalibration_Stat203: 3.77276172e-11 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 - syst_JES_EtaIntercalibration_Stat206: 1.0755490083336417e-10 - syst_JES_EtaIntercalibration_Stat207: 0.0001745509931223538 - syst_JES_EtaIntercalibration_Stat208: 0.0002774666826846063 - syst_JES_EtaIntercalibration_Stat209: 0.00010201418943828353 + syst_JES_EtaIntercalibration_Stat206: 1.07554901e-10 + syst_JES_EtaIntercalibration_Stat207: 1.74550993e-04 + syst_JES_EtaIntercalibration_Stat208: 2.77466683e-04 + syst_JES_EtaIntercalibration_Stat209: 1.02014189e-04 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 9.651843662443766e-14 - syst_JES_EtaIntercalibration_Stat211: 3.193901691080164e-33 - syst_JES_EtaIntercalibration_Stat212: 3.931195333483189e-25 - syst_JES_EtaIntercalibration_Stat213: 2.7556869833128722e-14 - syst_JES_EtaIntercalibration_Stat214: 5.7937099513182214e-11 - syst_JES_EtaIntercalibration_Stat215: 8.15709331558287e-11 - syst_JES_EtaIntercalibration_Stat216: 2.0836571200631386e-32 + syst_JES_EtaIntercalibration_Stat210: 9.65184366e-14 + syst_JES_EtaIntercalibration_Stat211: 3.19390169e-33 + syst_JES_EtaIntercalibration_Stat212: 3.93119533e-25 + syst_JES_EtaIntercalibration_Stat213: 2.75568698e-14 + syst_JES_EtaIntercalibration_Stat214: 5.79370995e-11 + syst_JES_EtaIntercalibration_Stat215: 8.15709332e-11 + syst_JES_EtaIntercalibration_Stat216: 2.08365712e-32 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 - syst_JES_EtaIntercalibration_Stat219: 1.0168004265833025e-18 + syst_JES_EtaIntercalibration_Stat219: 1.01680043e-18 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 6.626661508633137e-11 - syst_JES_EtaIntercalibration_Stat221: 2.8708377678301505e-08 - syst_JES_EtaIntercalibration_Stat222: 4.3136725705420094e-11 - syst_JES_EtaIntercalibration_Stat223: 2.327876285372571e-19 + syst_JES_EtaIntercalibration_Stat220: 6.62666151e-11 + syst_JES_EtaIntercalibration_Stat221: 2.87083777e-08 + syst_JES_EtaIntercalibration_Stat222: 4.31367257e-11 + syst_JES_EtaIntercalibration_Stat223: 2.32787629e-19 syst_JES_EtaIntercalibration_Stat224: 0.0 - syst_JES_EtaIntercalibration_Stat225: 9.53462357673338e-33 - syst_JES_EtaIntercalibration_Stat226: 1.315492588348562e-25 - syst_JES_EtaIntercalibration_Stat227: 8.248025945642994e-26 - syst_JES_EtaIntercalibration_Stat228: 2.586817881104118e-33 + syst_JES_EtaIntercalibration_Stat225: 9.53462358e-33 + syst_JES_EtaIntercalibration_Stat226: 1.31549259e-25 + syst_JES_EtaIntercalibration_Stat227: 8.24802595e-26 + syst_JES_EtaIntercalibration_Stat228: 2.58681788e-33 syst_JES_EtaIntercalibration_Stat229: 0.0 syst_JES_EtaIntercalibration_Stat23: 0.0 syst_JES_EtaIntercalibration_Stat230: 0.0 - syst_JES_EtaIntercalibration_Stat231: 2.1234942900794435e-32 - syst_JES_EtaIntercalibration_Stat232: 1.5328650995097917e-25 - syst_JES_EtaIntercalibration_Stat233: 1.7008738930326374e-25 - syst_JES_EtaIntercalibration_Stat234: 3.461330333845644e-41 + syst_JES_EtaIntercalibration_Stat231: 2.12349429e-32 + syst_JES_EtaIntercalibration_Stat232: 1.53286510e-25 + syst_JES_EtaIntercalibration_Stat233: 1.70087389e-25 + syst_JES_EtaIntercalibration_Stat234: 3.46133033e-41 syst_JES_EtaIntercalibration_Stat235: 0.0 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 @@ -24107,19 +24107,19 @@ bins: syst_JES_EtaIntercalibration_Stat245: 0.0 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 - syst_JES_EtaIntercalibration_Stat27: 0.010212790742495413 - syst_JES_EtaIntercalibration_Stat28: 0.020258659259684487 - syst_JES_EtaIntercalibration_Stat29: 0.054012304848062166 + syst_JES_EtaIntercalibration_Stat27: 1.02127907e-02 + syst_JES_EtaIntercalibration_Stat28: 2.02586593e-02 + syst_JES_EtaIntercalibration_Stat29: 5.40123048e-02 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 0.05182125082193598 - syst_JES_EtaIntercalibration_Stat31: 0.002431799333826704 + syst_JES_EtaIntercalibration_Stat30: 5.18212508e-02 + syst_JES_EtaIntercalibration_Stat31: 2.43179933e-03 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 - syst_JES_EtaIntercalibration_Stat34: 0.0004203687309969665 - syst_JES_EtaIntercalibration_Stat35: 0.05693442514358075 - syst_JES_EtaIntercalibration_Stat36: 0.05623631744700216 - syst_JES_EtaIntercalibration_Stat37: 0.04646439577784263 - syst_JES_EtaIntercalibration_Stat38: 0.014609779900806173 + syst_JES_EtaIntercalibration_Stat34: 4.20368731e-04 + syst_JES_EtaIntercalibration_Stat35: 5.69344251e-02 + syst_JES_EtaIntercalibration_Stat36: 5.62363174e-02 + syst_JES_EtaIntercalibration_Stat37: 4.64643958e-02 + syst_JES_EtaIntercalibration_Stat38: 1.46097799e-02 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 syst_JES_EtaIntercalibration_Stat40: 0.0 @@ -24130,21 +24130,21 @@ bins: syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 syst_JES_EtaIntercalibration_Stat47: 0.0 - syst_JES_EtaIntercalibration_Stat48: 0.005217803057801243 - syst_JES_EtaIntercalibration_Stat49: 0.01796481243987813 - syst_JES_EtaIntercalibration_Stat5: 0.0038070476750363923 - syst_JES_EtaIntercalibration_Stat50: 0.043440120856185475 - syst_JES_EtaIntercalibration_Stat51: 0.09573366218316313 - syst_JES_EtaIntercalibration_Stat52: 0.06354241654202332 - syst_JES_EtaIntercalibration_Stat53: 0.01104875318757732 - syst_JES_EtaIntercalibration_Stat54: 0.011648907706304484 + syst_JES_EtaIntercalibration_Stat48: 5.21780306e-03 + syst_JES_EtaIntercalibration_Stat49: 1.79648124e-02 + syst_JES_EtaIntercalibration_Stat5: 3.80704768e-03 + syst_JES_EtaIntercalibration_Stat50: 4.34401209e-02 + syst_JES_EtaIntercalibration_Stat51: 9.57336622e-02 + syst_JES_EtaIntercalibration_Stat52: 6.35424165e-02 + syst_JES_EtaIntercalibration_Stat53: 1.10487532e-02 + syst_JES_EtaIntercalibration_Stat54: 1.16489077e-02 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 0.0016679706322354718 - syst_JES_EtaIntercalibration_Stat57: 0.14203381173157328 - syst_JES_EtaIntercalibration_Stat58: 0.2171119545303759 - syst_JES_EtaIntercalibration_Stat59: 0.06562004800363987 - syst_JES_EtaIntercalibration_Stat6: 0.011308856562446975 - syst_JES_EtaIntercalibration_Stat60: 0.0164290531376583 + syst_JES_EtaIntercalibration_Stat56: 1.66797063e-03 + syst_JES_EtaIntercalibration_Stat57: 1.42033812e-01 + syst_JES_EtaIntercalibration_Stat58: 2.17111955e-01 + syst_JES_EtaIntercalibration_Stat59: 6.56200480e-02 + syst_JES_EtaIntercalibration_Stat6: 1.13088566e-02 + syst_JES_EtaIntercalibration_Stat60: 1.64290531e-02 syst_JES_EtaIntercalibration_Stat61: 0.0 syst_JES_EtaIntercalibration_Stat62: 0.0 syst_JES_EtaIntercalibration_Stat63: 0.0 @@ -24154,21 +24154,21 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 0.011775322694835161 - syst_JES_EtaIntercalibration_Stat70: 0.0038070476750363923 - syst_JES_EtaIntercalibration_Stat71: 0.04391471848936299 - syst_JES_EtaIntercalibration_Stat72: 0.40752885480662593 - syst_JES_EtaIntercalibration_Stat73: 1.9730696895953779 - syst_JES_EtaIntercalibration_Stat74: 0.8910282318759604 - syst_JES_EtaIntercalibration_Stat75: 0.013935197549729963 - syst_JES_EtaIntercalibration_Stat76: 0.011648907706304484 + syst_JES_EtaIntercalibration_Stat7: 1.17753227e-02 + syst_JES_EtaIntercalibration_Stat70: 3.80704768e-03 + syst_JES_EtaIntercalibration_Stat71: 4.39147185e-02 + syst_JES_EtaIntercalibration_Stat72: 4.07528855e-01 + syst_JES_EtaIntercalibration_Stat73: 1.97306969e+00 + syst_JES_EtaIntercalibration_Stat74: 8.91028232e-01 + syst_JES_EtaIntercalibration_Stat75: 1.39351975e-02 + syst_JES_EtaIntercalibration_Stat76: 1.16489077e-02 syst_JES_EtaIntercalibration_Stat77: 0.0 - syst_JES_EtaIntercalibration_Stat78: 0.027267366193079595 - syst_JES_EtaIntercalibration_Stat79: 1.1354735432849152 - syst_JES_EtaIntercalibration_Stat8: 0.01053264985651759 - syst_JES_EtaIntercalibration_Stat80: 2.2004401832360725 - syst_JES_EtaIntercalibration_Stat81: 0.5114486093440864 - syst_JES_EtaIntercalibration_Stat82: 0.06068605827329701 + syst_JES_EtaIntercalibration_Stat78: 2.72673662e-02 + syst_JES_EtaIntercalibration_Stat79: 1.13547354e+00 + syst_JES_EtaIntercalibration_Stat8: 1.05326499e-02 + syst_JES_EtaIntercalibration_Stat80: 2.20044018e+00 + syst_JES_EtaIntercalibration_Stat81: 5.11448609e-01 + syst_JES_EtaIntercalibration_Stat82: 6.06860583e-02 syst_JES_EtaIntercalibration_Stat83: 0.0 syst_JES_EtaIntercalibration_Stat84: 0.0 syst_JES_EtaIntercalibration_Stat85: 0.0 @@ -24178,113 +24178,113 @@ bins: syst_JES_EtaIntercalibration_Stat89: 0.0 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 0.003231140781519741 - syst_JES_EtaIntercalibration_Stat92: 0.06406011161401454 - syst_JES_EtaIntercalibration_Stat93: 0.9587506597129412 - syst_JES_EtaIntercalibration_Stat94: 3.327900351573045 - syst_JES_EtaIntercalibration_Stat95: 1.9919934738848921 - syst_JES_EtaIntercalibration_Stat96: 0.03365670326992826 - syst_JES_EtaIntercalibration_Stat97: 0.011648907706304484 + syst_JES_EtaIntercalibration_Stat91: 3.23114078e-03 + syst_JES_EtaIntercalibration_Stat92: 6.40601116e-02 + syst_JES_EtaIntercalibration_Stat93: 9.58750660e-01 + syst_JES_EtaIntercalibration_Stat94: 3.32790035e+00 + syst_JES_EtaIntercalibration_Stat95: 1.99199347e+00 + syst_JES_EtaIntercalibration_Stat96: 3.36567033e-02 + syst_JES_EtaIntercalibration_Stat97: 1.16489077e-02 syst_JES_EtaIntercalibration_Stat98: 0.0 - syst_JES_EtaIntercalibration_Stat99: 0.057440998424470306 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.06451764642328486 - syst_JES_Flavour_Comp: 3.583002511860688 - syst_JES_Flavour_Response: 81.65448687457413 - syst_JES_Gjet_Generator: 53.16419774622768 - syst_JES_Gjet_OOC: 29.865553318162384 - syst_JES_Gjet_Purity: 12.24813398032533 - syst_JES_Gjet_Stat1: 1.2609329879101427e-31 - syst_JES_Gjet_Stat10: 0.3187621997665344 - syst_JES_Gjet_Stat11: 0.424435469182301 - syst_JES_Gjet_Stat12: 0.02758176344978689 - syst_JES_Gjet_Stat13: 0.0025845233603123035 - syst_JES_Gjet_Stat14: 8.848068733317235e-13 - syst_JES_Gjet_Stat15: 1.1591541708464624e-10 - syst_JES_Gjet_Stat2: 1.3215547661750532e-31 + syst_JES_EtaIntercalibration_Stat99: 5.74409984e-02 + syst_JES_EtaIntercalibration_TotalStat_MJB: 6.45176464e-02 + syst_JES_Flavour_Comp: 3.58300251e+00 + syst_JES_Flavour_Response: 8.16544869e+01 + syst_JES_Gjet_Generator: 5.31641977e+01 + syst_JES_Gjet_OOC: 2.98655533e+01 + syst_JES_Gjet_Purity: 1.22481340e+01 + syst_JES_Gjet_Stat1: 1.26093299e-31 + syst_JES_Gjet_Stat10: 3.18762200e-01 + syst_JES_Gjet_Stat11: 4.24435469e-01 + syst_JES_Gjet_Stat12: 2.75817634e-02 + syst_JES_Gjet_Stat13: 2.58452336e-03 + syst_JES_Gjet_Stat14: 8.84806873e-13 + syst_JES_Gjet_Stat15: 1.15915417e-10 + syst_JES_Gjet_Stat2: 1.32155477e-31 syst_JES_Gjet_Stat3: 0.0 - syst_JES_Gjet_Stat4: 0.3998667486488468 - syst_JES_Gjet_Stat5: 0.6675226513010626 - syst_JES_Gjet_Stat6: 2.3247472980949992 - syst_JES_Gjet_Stat7: 4.312701473554597 - syst_JES_Gjet_Stat8: 2.3015396477141126 - syst_JES_Gjet_Stat9: 1.6393614610573228 - syst_JES_Gjet_Veto: 10.708509268334225 - syst_JES_Gjet_dPhi: 5.656408047515667 - syst_JES_LArESZee: 36.06545715778465 - syst_JES_LArEsmear: 3.483312647466489 - syst_JES_LAr_JVT: 5.627704216641098 - syst_JES_MJB_Alpha: 7.788166456233456e-40 - syst_JES_MJB_Asym: 0.0006561008459070907 - syst_JES_MJB_Beta: 3.86507137708995e-40 - syst_JES_MJB_Fragmentation: 0.01700678476373474 - syst_JES_MJB_Stat1: 9.504628806534214e-32 + syst_JES_Gjet_Stat4: 3.99866749e-01 + syst_JES_Gjet_Stat5: 6.67522651e-01 + syst_JES_Gjet_Stat6: 2.32474730e+00 + syst_JES_Gjet_Stat7: 4.31270147e+00 + syst_JES_Gjet_Stat8: 2.30153965e+00 + syst_JES_Gjet_Stat9: 1.63936146e+00 + syst_JES_Gjet_Veto: 1.07085093e+01 + syst_JES_Gjet_dPhi: 5.65640805e+00 + syst_JES_LArESZee: 3.60654572e+01 + syst_JES_LArEsmear: 3.48331265e+00 + syst_JES_LAr_JVT: 5.62770422e+00 + syst_JES_MJB_Alpha: 7.78816646e-40 + syst_JES_MJB_Asym: 6.56100846e-04 + syst_JES_MJB_Beta: 3.86507138e-40 + syst_JES_MJB_Fragmentation: 1.70067848e-02 + syst_JES_MJB_Stat1: 9.50462881e-32 syst_JES_MJB_Stat10: 0.0 - syst_JES_MJB_Stat11: 2.884730620005965e-42 + syst_JES_MJB_Stat11: 2.88473062e-42 syst_JES_MJB_Stat12: 0.0 syst_JES_MJB_Stat13: 0.0 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 syst_JES_MJB_Stat2: 0.0 - syst_JES_MJB_Stat3: 1.0008655591536757e-39 - syst_JES_MJB_Stat4: 6.893562214124132e-11 + syst_JES_MJB_Stat3: 1.00086556e-39 + syst_JES_MJB_Stat4: 6.89356221e-11 syst_JES_MJB_Stat5: 0.0 syst_JES_MJB_Stat6: 0.0 syst_JES_MJB_Stat7: 0.0 syst_JES_MJB_Stat8: 0.0 syst_JES_MJB_Stat9: 0.0 - syst_JES_MJB_Threshold: 0.0037680765318660924 - syst_JES_Pileup_MuOffset: 1.0053090109513591e-22 - syst_JES_Pileup_NPVOffset: 3.2537209468545396 - syst_JES_Pileup_Pt_term: 11.7040874911289 - syst_JES_Pileup_Rho_topology: 24.621333737228777 - syst_JES_PunchThrough_MC15: 1.3449374520772333e-23 + syst_JES_MJB_Threshold: 3.76807653e-03 + syst_JES_Pileup_MuOffset: 1.00530901e-22 + syst_JES_Pileup_NPVOffset: 3.25372095e+00 + syst_JES_Pileup_Pt_term: 1.17040875e+01 + syst_JES_Pileup_Rho_topology: 2.46213337e+01 + syst_JES_PunchThrough_MC15: 1.34493745e-23 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 46.33430576527504 - syst_JES_Zjet_MuScale: 3.5307956610373252 - syst_JES_Zjet_MuSmearID: 0.5565189552027855 - syst_JES_Zjet_MuSmearMS: 2.1985437794140013 - syst_JES_Zjet_OOC: 23.28705004932999 - syst_JES_Zjet_Stat1: 0.17991650146665256 - syst_JES_Zjet_Stat10: 5.2794396482960195 - syst_JES_Zjet_Stat11: 0.1875691946989164 - syst_JES_Zjet_Stat12: 0.9140724150744295 - syst_JES_Zjet_Stat13: 0.016022790112836152 - syst_JES_Zjet_Stat2: 0.001249674657660945 - syst_JES_Zjet_Stat3: 2.932362017214109e-31 - syst_JES_Zjet_Stat4: 3.1731170794661832e-40 - syst_JES_Zjet_Stat5: 0.30111703289584935 - syst_JES_Zjet_Stat6: 0.8098248251936958 - syst_JES_Zjet_Stat7: 1.3928168607178764 - syst_JES_Zjet_Stat8: 2.7885402543266253 - syst_JES_Zjet_Stat9: 5.627421323306084 - syst_JES_Zjet_Veto: 3.9430411191743864 - syst_JES_Zjet_dPhi: 5.478929457476159 + syst_JES_Zjet_MC: 4.63343058e+01 + syst_JES_Zjet_MuScale: 3.53079566e+00 + syst_JES_Zjet_MuSmearID: 5.56518955e-01 + syst_JES_Zjet_MuSmearMS: 2.19854378e+00 + syst_JES_Zjet_OOC: 2.32870500e+01 + syst_JES_Zjet_Stat1: 1.79916501e-01 + syst_JES_Zjet_Stat10: 5.27943965e+00 + syst_JES_Zjet_Stat11: 1.87569195e-01 + syst_JES_Zjet_Stat12: 9.14072415e-01 + syst_JES_Zjet_Stat13: 1.60227901e-02 + syst_JES_Zjet_Stat2: 1.24967466e-03 + syst_JES_Zjet_Stat3: 2.93236202e-31 + syst_JES_Zjet_Stat4: 3.17311708e-40 + syst_JES_Zjet_Stat5: 3.01117033e-01 + syst_JES_Zjet_Stat6: 8.09824825e-01 + syst_JES_Zjet_Stat7: 1.39281686e+00 + syst_JES_Zjet_Stat8: 2.78854025e+00 + syst_JES_Zjet_Stat9: 5.62742132e+00 + syst_JES_Zjet_Veto: 3.94304112e+00 + syst_JES_Zjet_dPhi: 5.47892946e+00 syst_PRW: 0.0 syst_Unfolding_bias: 3.458 - syst_cleaning: 15.216066344492587 + syst_cleaning: 1.52160663e+01 syst_lumi: 49.914 - stat: 7.73 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 21.044647775622188 - syst_JER_NP1: 2.507882573008553 - syst_JER_NP2: 0.6860378032586835 - syst_JER_NP3: 4.254029002016795 - syst_JER_NP4: 0.7392517889731481 - syst_JER_NP5: 1.2508925773222896 - syst_JER_NP6: 1.0871972992516121 - syst_JER_NP7: 0.12336796697279241 - syst_JER_NP8: 1.5695723844410616 - syst_JES_EtaIntercalibration_Modelling: 36.97250870579382 + syst_JER_NP0: 2.10446478e+01 + syst_JER_NP1: 2.50788257e+00 + syst_JER_NP2: 6.86037803e-01 + syst_JER_NP3: 4.25402900e+00 + syst_JER_NP4: 7.39251789e-01 + syst_JER_NP5: 1.25089258e+00 + syst_JER_NP6: 1.08719730e+00 + syst_JER_NP7: 1.23367967e-01 + syst_JER_NP8: 1.56957238e+00 + syst_JES_EtaIntercalibration_Modelling: 3.69725087e+01 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 0.5770149564785995 - syst_JES_EtaIntercalibration_Stat101: 0.9069557141889564 - syst_JES_EtaIntercalibration_Stat102: 0.25724406698697644 - syst_JES_EtaIntercalibration_Stat103: 0.013958058604261553 + syst_JES_EtaIntercalibration_Stat100: 5.77014956e-01 + syst_JES_EtaIntercalibration_Stat101: 9.06955714e-01 + syst_JES_EtaIntercalibration_Stat102: 2.57244067e-01 + syst_JES_EtaIntercalibration_Stat103: 1.39580586e-02 syst_JES_EtaIntercalibration_Stat104: 0.0 syst_JES_EtaIntercalibration_Stat105: 0.0 syst_JES_EtaIntercalibration_Stat106: 0.0 @@ -24293,143 +24293,143 @@ bins: syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 syst_JES_EtaIntercalibration_Stat110: 0.0 - syst_JES_EtaIntercalibration_Stat111: 0.0004334457145941115 - syst_JES_EtaIntercalibration_Stat112: 0.06626048143501526 - syst_JES_EtaIntercalibration_Stat113: 1.2542521706180139 - syst_JES_EtaIntercalibration_Stat114: 3.475223589929143 - syst_JES_EtaIntercalibration_Stat115: 2.4778815044307505 - syst_JES_EtaIntercalibration_Stat116: 0.06923007077852802 + syst_JES_EtaIntercalibration_Stat111: 4.33445715e-04 + syst_JES_EtaIntercalibration_Stat112: 6.62604814e-02 + syst_JES_EtaIntercalibration_Stat113: 1.25425217e+00 + syst_JES_EtaIntercalibration_Stat114: 3.47522359e+00 + syst_JES_EtaIntercalibration_Stat115: 2.47788150e+00 + syst_JES_EtaIntercalibration_Stat116: 6.92300708e-02 syst_JES_EtaIntercalibration_Stat117: 0.0 syst_JES_EtaIntercalibration_Stat118: 0.0 - syst_JES_EtaIntercalibration_Stat119: 0.06050647961169117 + syst_JES_EtaIntercalibration_Stat119: 6.05064796e-02 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 2.852201956383874 - syst_JES_EtaIntercalibration_Stat121: 4.221619920125448 - syst_JES_EtaIntercalibration_Stat122: 1.036518176396343 - syst_JES_EtaIntercalibration_Stat123: 0.06176588378708752 + syst_JES_EtaIntercalibration_Stat120: 2.85220196e+00 + syst_JES_EtaIntercalibration_Stat121: 4.22161992e+00 + syst_JES_EtaIntercalibration_Stat122: 1.03651818e+00 + syst_JES_EtaIntercalibration_Stat123: 6.17658838e-02 syst_JES_EtaIntercalibration_Stat124: 0.0 syst_JES_EtaIntercalibration_Stat125: 0.0 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 syst_JES_EtaIntercalibration_Stat128: 0.0 syst_JES_EtaIntercalibration_Stat129: 0.0 - syst_JES_EtaIntercalibration_Stat13: 0.015243519500102332 + syst_JES_EtaIntercalibration_Stat13: 1.52435195e-02 syst_JES_EtaIntercalibration_Stat130: 0.0 - syst_JES_EtaIntercalibration_Stat131: 0.052106052191660035 - syst_JES_EtaIntercalibration_Stat132: 1.9492605649322516 - syst_JES_EtaIntercalibration_Stat133: 5.196522178341972 - syst_JES_EtaIntercalibration_Stat134: 4.034339354838658 - syst_JES_EtaIntercalibration_Stat135: 0.05818648876672316 + syst_JES_EtaIntercalibration_Stat131: 5.21060522e-02 + syst_JES_EtaIntercalibration_Stat132: 1.94926056e+00 + syst_JES_EtaIntercalibration_Stat133: 5.19652218e+00 + syst_JES_EtaIntercalibration_Stat134: 4.03433935e+00 + syst_JES_EtaIntercalibration_Stat135: 5.81864888e-02 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 - syst_JES_EtaIntercalibration_Stat138: 0.01737791342480449 - syst_JES_EtaIntercalibration_Stat139: 2.919794984241188 - syst_JES_EtaIntercalibration_Stat14: 0.002835318853321439 - syst_JES_EtaIntercalibration_Stat140: 4.950576809827315 - syst_JES_EtaIntercalibration_Stat141: 1.7107702212746165 - syst_JES_EtaIntercalibration_Stat142: 0.052576310967963516 + syst_JES_EtaIntercalibration_Stat138: 1.73779134e-02 + syst_JES_EtaIntercalibration_Stat139: 2.91979498e+00 + syst_JES_EtaIntercalibration_Stat14: 2.83531885e-03 + syst_JES_EtaIntercalibration_Stat140: 4.95057681e+00 + syst_JES_EtaIntercalibration_Stat141: 1.71077022e+00 + syst_JES_EtaIntercalibration_Stat142: 5.25763110e-02 syst_JES_EtaIntercalibration_Stat143: 0.0 syst_JES_EtaIntercalibration_Stat144: 0.0 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 syst_JES_EtaIntercalibration_Stat147: 0.0 syst_JES_EtaIntercalibration_Stat148: 0.0 - syst_JES_EtaIntercalibration_Stat149: 0.007315345292602393 - syst_JES_EtaIntercalibration_Stat15: 0.002645654519993682 - syst_JES_EtaIntercalibration_Stat150: 0.03116825428220195 - syst_JES_EtaIntercalibration_Stat151: 0.1598962476107554 - syst_JES_EtaIntercalibration_Stat152: 0.17136752171867342 - syst_JES_EtaIntercalibration_Stat153: 0.01806231976207652 + syst_JES_EtaIntercalibration_Stat149: 7.31534529e-03 + syst_JES_EtaIntercalibration_Stat15: 2.64565452e-03 + syst_JES_EtaIntercalibration_Stat150: 3.11682543e-02 + syst_JES_EtaIntercalibration_Stat151: 1.59896248e-01 + syst_JES_EtaIntercalibration_Stat152: 1.71367522e-01 + syst_JES_EtaIntercalibration_Stat153: 1.80623198e-02 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 0.008072669573435729 - syst_JES_EtaIntercalibration_Stat157: 0.06720190677062296 - syst_JES_EtaIntercalibration_Stat158: 0.05680839902690446 - syst_JES_EtaIntercalibration_Stat159: 0.204090092054955 + syst_JES_EtaIntercalibration_Stat156: 8.07266957e-03 + syst_JES_EtaIntercalibration_Stat157: 6.72019068e-02 + syst_JES_EtaIntercalibration_Stat158: 5.68083990e-02 + syst_JES_EtaIntercalibration_Stat159: 2.04090092e-01 syst_JES_EtaIntercalibration_Stat16: 0.0 - syst_JES_EtaIntercalibration_Stat160: 0.01526648868437009 + syst_JES_EtaIntercalibration_Stat160: 1.52664887e-02 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 - syst_JES_EtaIntercalibration_Stat167: 0.002486358934672386 - syst_JES_EtaIntercalibration_Stat168: 0.06692927012899513 - syst_JES_EtaIntercalibration_Stat169: 0.2701406439246046 + syst_JES_EtaIntercalibration_Stat167: 2.48635893e-03 + syst_JES_EtaIntercalibration_Stat168: 6.69292701e-02 + syst_JES_EtaIntercalibration_Stat169: 2.70140644e-01 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 0.18143678651254821 - syst_JES_EtaIntercalibration_Stat171: 0.003803446693461077 + syst_JES_EtaIntercalibration_Stat170: 1.81436787e-01 + syst_JES_EtaIntercalibration_Stat171: 3.80344669e-03 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 - syst_JES_EtaIntercalibration_Stat174: 0.003457068519714355 - syst_JES_EtaIntercalibration_Stat175: 0.18324868430632726 - syst_JES_EtaIntercalibration_Stat176: 0.3005918661574195 - syst_JES_EtaIntercalibration_Stat177: 0.07686868071588064 - syst_JES_EtaIntercalibration_Stat178: 0.008364964173862312 + syst_JES_EtaIntercalibration_Stat174: 3.45706852e-03 + syst_JES_EtaIntercalibration_Stat175: 1.83248684e-01 + syst_JES_EtaIntercalibration_Stat176: 3.00591866e-01 + syst_JES_EtaIntercalibration_Stat177: 7.68686807e-02 + syst_JES_EtaIntercalibration_Stat178: 8.36496417e-03 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 syst_JES_EtaIntercalibration_Stat180: 0.0 syst_JES_EtaIntercalibration_Stat181: 0.0 syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 - syst_JES_EtaIntercalibration_Stat184: 0.0007512360109970434 - syst_JES_EtaIntercalibration_Stat185: 0.006250231355717962 - syst_JES_EtaIntercalibration_Stat186: 0.031030412098455924 - syst_JES_EtaIntercalibration_Stat187: 0.033518906232155005 - syst_JES_EtaIntercalibration_Stat188: 0.00024906890612840454 + syst_JES_EtaIntercalibration_Stat184: 7.51236011e-04 + syst_JES_EtaIntercalibration_Stat185: 6.25023136e-03 + syst_JES_EtaIntercalibration_Stat186: 3.10304121e-02 + syst_JES_EtaIntercalibration_Stat187: 3.35189062e-02 + syst_JES_EtaIntercalibration_Stat188: 2.49068906e-04 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 - syst_JES_EtaIntercalibration_Stat191: 4.608121155512123e-05 - syst_JES_EtaIntercalibration_Stat192: 0.03555402368227821 - syst_JES_EtaIntercalibration_Stat193: 0.049193011698817554 - syst_JES_EtaIntercalibration_Stat194: 0.01681897440392844 - syst_JES_EtaIntercalibration_Stat195: 0.00023902301144450506 - syst_JES_EtaIntercalibration_Stat196: 9.437944850602941e-14 + syst_JES_EtaIntercalibration_Stat191: 4.60812116e-05 + syst_JES_EtaIntercalibration_Stat192: 3.55540237e-02 + syst_JES_EtaIntercalibration_Stat193: 4.91930117e-02 + syst_JES_EtaIntercalibration_Stat194: 1.68189744e-02 + syst_JES_EtaIntercalibration_Stat195: 2.39023011e-04 + syst_JES_EtaIntercalibration_Stat196: 9.43794485e-14 syst_JES_EtaIntercalibration_Stat197: 0.0 syst_JES_EtaIntercalibration_Stat198: 0.0 - syst_JES_EtaIntercalibration_Stat199: 3.1583946476018477e-07 + syst_JES_EtaIntercalibration_Stat199: 3.15839465e-07 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 0.00018968861325867722 - syst_JES_EtaIntercalibration_Stat201: 0.0008229419952220206 - syst_JES_EtaIntercalibration_Stat202: 0.0008250760737653226 - syst_JES_EtaIntercalibration_Stat203: 3.5199111471846846e-08 + syst_JES_EtaIntercalibration_Stat200: 1.89688613e-04 + syst_JES_EtaIntercalibration_Stat201: 8.22941995e-04 + syst_JES_EtaIntercalibration_Stat202: 8.25076074e-04 + syst_JES_EtaIntercalibration_Stat203: 3.51991115e-08 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 - syst_JES_EtaIntercalibration_Stat206: 1.0441938894557611e-07 - syst_JES_EtaIntercalibration_Stat207: 0.0006167089426950124 - syst_JES_EtaIntercalibration_Stat208: 0.0009504679518531912 - syst_JES_EtaIntercalibration_Stat209: 0.0003603156620242867 + syst_JES_EtaIntercalibration_Stat206: 1.04419389e-07 + syst_JES_EtaIntercalibration_Stat207: 6.16708943e-04 + syst_JES_EtaIntercalibration_Stat208: 9.50467952e-04 + syst_JES_EtaIntercalibration_Stat209: 3.60315662e-04 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 1.4124498030062e-09 - syst_JES_EtaIntercalibration_Stat211: 4.803843461543235e-24 - syst_JES_EtaIntercalibration_Stat212: 7.21658373124015e-18 - syst_JES_EtaIntercalibration_Stat213: 4.035168490905925e-10 - syst_JES_EtaIntercalibration_Stat214: 5.6352273084326714e-08 - syst_JES_EtaIntercalibration_Stat215: 7.93367357940293e-08 - syst_JES_EtaIntercalibration_Stat216: 3.134145536914038e-23 + syst_JES_EtaIntercalibration_Stat210: 1.41244980e-09 + syst_JES_EtaIntercalibration_Stat211: 4.80384346e-24 + syst_JES_EtaIntercalibration_Stat212: 7.21658373e-18 + syst_JES_EtaIntercalibration_Stat213: 4.03516849e-10 + syst_JES_EtaIntercalibration_Stat214: 5.63522731e-08 + syst_JES_EtaIntercalibration_Stat215: 7.93367358e-08 + syst_JES_EtaIntercalibration_Stat216: 3.13414554e-23 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 - syst_JES_EtaIntercalibration_Stat219: 4.044338635570734e-13 + syst_JES_EtaIntercalibration_Stat219: 4.04433864e-13 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 6.430167897302527e-08 - syst_JES_EtaIntercalibration_Stat221: 1.6541761595126438e-06 - syst_JES_EtaIntercalibration_Stat222: 4.195906721413075e-08 - syst_JES_EtaIntercalibration_Stat223: 9.258677591859434e-14 - syst_JES_EtaIntercalibration_Stat224: 1.0130765173470363e-37 - syst_JES_EtaIntercalibration_Stat225: 1.4346674701825505e-23 - syst_JES_EtaIntercalibration_Stat226: 2.4153448511496002e-18 - syst_JES_EtaIntercalibration_Stat227: 1.5138124058151985e-18 - syst_JES_EtaIntercalibration_Stat228: 3.891918164607267e-24 + syst_JES_EtaIntercalibration_Stat220: 6.43016790e-08 + syst_JES_EtaIntercalibration_Stat221: 1.65417616e-06 + syst_JES_EtaIntercalibration_Stat222: 4.19590672e-08 + syst_JES_EtaIntercalibration_Stat223: 9.25867759e-14 + syst_JES_EtaIntercalibration_Stat224: 1.01307652e-37 + syst_JES_EtaIntercalibration_Stat225: 1.43466747e-23 + syst_JES_EtaIntercalibration_Stat226: 2.41534485e-18 + syst_JES_EtaIntercalibration_Stat227: 1.51381241e-18 + syst_JES_EtaIntercalibration_Stat228: 3.89191816e-24 syst_JES_EtaIntercalibration_Stat229: 0.0 syst_JES_EtaIntercalibration_Stat23: 0.0 syst_JES_EtaIntercalibration_Stat230: 0.0 - syst_JES_EtaIntercalibration_Stat231: 3.194767714560794e-23 - syst_JES_EtaIntercalibration_Stat232: 2.814602845199008e-18 - syst_JES_EtaIntercalibration_Stat233: 3.1228876060466856e-18 - syst_JES_EtaIntercalibration_Stat234: 9.099328917563097e-30 + syst_JES_EtaIntercalibration_Stat231: 3.19476771e-23 + syst_JES_EtaIntercalibration_Stat232: 2.81460285e-18 + syst_JES_EtaIntercalibration_Stat233: 3.12288761e-18 + syst_JES_EtaIntercalibration_Stat234: 9.09932892e-30 syst_JES_EtaIntercalibration_Stat235: 0.0 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 @@ -24444,19 +24444,19 @@ bins: syst_JES_EtaIntercalibration_Stat245: 0.0 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 - syst_JES_EtaIntercalibration_Stat27: 0.0018158378231549204 - syst_JES_EtaIntercalibration_Stat28: 0.006980475109188485 - syst_JES_EtaIntercalibration_Stat29: 0.01654915032886885 + syst_JES_EtaIntercalibration_Stat27: 1.81583782e-03 + syst_JES_EtaIntercalibration_Stat28: 6.98047511e-03 + syst_JES_EtaIntercalibration_Stat29: 1.65491503e-02 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 0.016190352065350525 - syst_JES_EtaIntercalibration_Stat31: 0.0004015759797348442 + syst_JES_EtaIntercalibration_Stat30: 1.61903521e-02 + syst_JES_EtaIntercalibration_Stat31: 4.01575980e-04 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 - syst_JES_EtaIntercalibration_Stat34: 4.14999373493503e-05 - syst_JES_EtaIntercalibration_Stat35: 0.008498989631126748 - syst_JES_EtaIntercalibration_Stat36: 0.013913098612458694 - syst_JES_EtaIntercalibration_Stat37: 0.011087618804324038 - syst_JES_EtaIntercalibration_Stat38: 0.0015423414237774981 + syst_JES_EtaIntercalibration_Stat34: 4.14999373e-05 + syst_JES_EtaIntercalibration_Stat35: 8.49898963e-03 + syst_JES_EtaIntercalibration_Stat36: 1.39130986e-02 + syst_JES_EtaIntercalibration_Stat37: 1.10876188e-02 + syst_JES_EtaIntercalibration_Stat38: 1.54234142e-03 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 syst_JES_EtaIntercalibration_Stat40: 0.0 @@ -24467,21 +24467,21 @@ bins: syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 syst_JES_EtaIntercalibration_Stat47: 0.0 - syst_JES_EtaIntercalibration_Stat48: 0.0010111712614587105 - syst_JES_EtaIntercalibration_Stat49: 0.004008287306319246 - syst_JES_EtaIntercalibration_Stat5: 0.0008104265728614777 - syst_JES_EtaIntercalibration_Stat50: 0.01582389322354015 - syst_JES_EtaIntercalibration_Stat51: 0.03698876417238078 - syst_JES_EtaIntercalibration_Stat52: 0.005957131923165711 - syst_JES_EtaIntercalibration_Stat53: 0.001041509341052686 - syst_JES_EtaIntercalibration_Stat54: 0.001035073562603161 + syst_JES_EtaIntercalibration_Stat48: 1.01117126e-03 + syst_JES_EtaIntercalibration_Stat49: 4.00828731e-03 + syst_JES_EtaIntercalibration_Stat5: 8.10426573e-04 + syst_JES_EtaIntercalibration_Stat50: 1.58238932e-02 + syst_JES_EtaIntercalibration_Stat51: 3.69887642e-02 + syst_JES_EtaIntercalibration_Stat52: 5.95713192e-03 + syst_JES_EtaIntercalibration_Stat53: 1.04150934e-03 + syst_JES_EtaIntercalibration_Stat54: 1.03507356e-03 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 0.00025145199840128534 - syst_JES_EtaIntercalibration_Stat57: 0.04710504219295425 - syst_JES_EtaIntercalibration_Stat58: 0.01203941679442987 - syst_JES_EtaIntercalibration_Stat59: 0.0030470626326841396 - syst_JES_EtaIntercalibration_Stat6: 0.002010029104266901 - syst_JES_EtaIntercalibration_Stat60: 0.0040226646330510825 + syst_JES_EtaIntercalibration_Stat56: 2.51451998e-04 + syst_JES_EtaIntercalibration_Stat57: 4.71050422e-02 + syst_JES_EtaIntercalibration_Stat58: 1.20394168e-02 + syst_JES_EtaIntercalibration_Stat59: 3.04706263e-03 + syst_JES_EtaIntercalibration_Stat6: 2.01002910e-03 + syst_JES_EtaIntercalibration_Stat60: 4.02266463e-03 syst_JES_EtaIntercalibration_Stat61: 0.0 syst_JES_EtaIntercalibration_Stat62: 0.0 syst_JES_EtaIntercalibration_Stat63: 0.0 @@ -24491,21 +24491,21 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 0.0027459883466613624 - syst_JES_EtaIntercalibration_Stat70: 0.0008104265728614777 - syst_JES_EtaIntercalibration_Stat71: 0.012120164149053427 - syst_JES_EtaIntercalibration_Stat72: 0.0806298336535553 - syst_JES_EtaIntercalibration_Stat73: 0.44981409901758307 - syst_JES_EtaIntercalibration_Stat74: 0.18188064080599672 - syst_JES_EtaIntercalibration_Stat75: 0.009133063306881213 - syst_JES_EtaIntercalibration_Stat76: 0.001035073562603161 + syst_JES_EtaIntercalibration_Stat7: 2.74598835e-03 + syst_JES_EtaIntercalibration_Stat70: 8.10426573e-04 + syst_JES_EtaIntercalibration_Stat71: 1.21201641e-02 + syst_JES_EtaIntercalibration_Stat72: 8.06298337e-02 + syst_JES_EtaIntercalibration_Stat73: 4.49814099e-01 + syst_JES_EtaIntercalibration_Stat74: 1.81880641e-01 + syst_JES_EtaIntercalibration_Stat75: 9.13306331e-03 + syst_JES_EtaIntercalibration_Stat76: 1.03507356e-03 syst_JES_EtaIntercalibration_Stat77: 0.0 - syst_JES_EtaIntercalibration_Stat78: 0.003127794006564371 - syst_JES_EtaIntercalibration_Stat79: 0.2173838353581057 - syst_JES_EtaIntercalibration_Stat8: 0.0011459134031417905 - syst_JES_EtaIntercalibration_Stat80: 0.4350697185509467 - syst_JES_EtaIntercalibration_Stat81: 0.0632272700264688 - syst_JES_EtaIntercalibration_Stat82: 0.015054497899299066 + syst_JES_EtaIntercalibration_Stat78: 3.12779401e-03 + syst_JES_EtaIntercalibration_Stat79: 2.17383835e-01 + syst_JES_EtaIntercalibration_Stat8: 1.14591340e-03 + syst_JES_EtaIntercalibration_Stat80: 4.35069719e-01 + syst_JES_EtaIntercalibration_Stat81: 6.32272700e-02 + syst_JES_EtaIntercalibration_Stat82: 1.50544979e-02 syst_JES_EtaIntercalibration_Stat83: 0.0 syst_JES_EtaIntercalibration_Stat84: 0.0 syst_JES_EtaIntercalibration_Stat85: 0.0 @@ -24515,113 +24515,113 @@ bins: syst_JES_EtaIntercalibration_Stat89: 0.0 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 0.0006929069255679295 - syst_JES_EtaIntercalibration_Stat92: 0.019541429911856503 - syst_JES_EtaIntercalibration_Stat93: 0.25785088714216203 - syst_JES_EtaIntercalibration_Stat94: 0.9590120228651985 - syst_JES_EtaIntercalibration_Stat95: 0.6007748413507343 - syst_JES_EtaIntercalibration_Stat96: 0.003602976440389251 - syst_JES_EtaIntercalibration_Stat97: 0.001035073562603161 + syst_JES_EtaIntercalibration_Stat91: 6.92906926e-04 + syst_JES_EtaIntercalibration_Stat92: 1.95414299e-02 + syst_JES_EtaIntercalibration_Stat93: 2.57850887e-01 + syst_JES_EtaIntercalibration_Stat94: 9.59012023e-01 + syst_JES_EtaIntercalibration_Stat95: 6.00774841e-01 + syst_JES_EtaIntercalibration_Stat96: 3.60297644e-03 + syst_JES_EtaIntercalibration_Stat97: 1.03507356e-03 syst_JES_EtaIntercalibration_Stat98: 0.0 - syst_JES_EtaIntercalibration_Stat99: 0.004073420430056293 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.09481906177030017 - syst_JES_Flavour_Comp: 1.5077031372256275 - syst_JES_Flavour_Response: 40.069825193030226 - syst_JES_Gjet_Generator: 28.36895618453383 - syst_JES_Gjet_OOC: 15.288311711892847 - syst_JES_Gjet_Purity: 6.0437153101382926 - syst_JES_Gjet_Stat1: 1.8965956342879207e-22 - syst_JES_Gjet_Stat10: 0.18193604006628264 - syst_JES_Gjet_Stat11: 0.33128901894720264 - syst_JES_Gjet_Stat12: 0.10690185966577008 - syst_JES_Gjet_Stat13: 0.006191166671153345 - syst_JES_Gjet_Stat14: 1.2951257365672068e-08 - syst_JES_Gjet_Stat15: 1.1446968428693249e-07 - syst_JES_Gjet_Stat2: 1.9883943270890711e-22 - syst_JES_Gjet_Stat3: 2.7392383521701796e-37 - syst_JES_Gjet_Stat4: 0.11046433179990724 - syst_JES_Gjet_Stat5: 0.16866438176153256 - syst_JES_Gjet_Stat6: 0.8684388565120748 - syst_JES_Gjet_Stat7: 1.7221738443026013 - syst_JES_Gjet_Stat8: 1.1334636032974328 - syst_JES_Gjet_Stat9: 1.2815815541743725 - syst_JES_Gjet_Veto: 6.018506521554995 - syst_JES_Gjet_dPhi: 2.624457039084465 - syst_JES_LArESZee: 21.365853013629014 - syst_JES_LArEsmear: 1.8748967971597799 - syst_JES_LAr_JVT: 2.9663801172472826 - syst_JES_MJB_Alpha: 2.130422490286713e-28 - syst_JES_MJB_Asym: 0.009923785101966108 - syst_JES_MJB_Beta: 1.053606506244148e-28 - syst_JES_MJB_Fragmentation: 0.07037676534197917 - syst_JES_MJB_Stat1: 1.4298079416481083e-22 + syst_JES_EtaIntercalibration_Stat99: 4.07342043e-03 + syst_JES_EtaIntercalibration_TotalStat_MJB: 9.48190618e-02 + syst_JES_Flavour_Comp: 1.50770314e+00 + syst_JES_Flavour_Response: 4.00698252e+01 + syst_JES_Gjet_Generator: 2.83689562e+01 + syst_JES_Gjet_OOC: 1.52883117e+01 + syst_JES_Gjet_Purity: 6.04371531e+00 + syst_JES_Gjet_Stat1: 1.89659563e-22 + syst_JES_Gjet_Stat10: 1.81936040e-01 + syst_JES_Gjet_Stat11: 3.31289019e-01 + syst_JES_Gjet_Stat12: 1.06901860e-01 + syst_JES_Gjet_Stat13: 6.19116667e-03 + syst_JES_Gjet_Stat14: 1.29512574e-08 + syst_JES_Gjet_Stat15: 1.14469684e-07 + syst_JES_Gjet_Stat2: 1.98839433e-22 + syst_JES_Gjet_Stat3: 2.73923835e-37 + syst_JES_Gjet_Stat4: 1.10464332e-01 + syst_JES_Gjet_Stat5: 1.68664382e-01 + syst_JES_Gjet_Stat6: 8.68438857e-01 + syst_JES_Gjet_Stat7: 1.72217384e+00 + syst_JES_Gjet_Stat8: 1.13346360e+00 + syst_JES_Gjet_Stat9: 1.28158155e+00 + syst_JES_Gjet_Veto: 6.01850652e+00 + syst_JES_Gjet_dPhi: 2.62445704e+00 + syst_JES_LArESZee: 2.13658530e+01 + syst_JES_LArEsmear: 1.87489680e+00 + syst_JES_LAr_JVT: 2.96638012e+00 + syst_JES_MJB_Alpha: 2.13042249e-28 + syst_JES_MJB_Asym: 9.92378510e-03 + syst_JES_MJB_Beta: 1.05360651e-28 + syst_JES_MJB_Fragmentation: 7.03767653e-02 + syst_JES_MJB_Stat1: 1.42980794e-22 syst_JES_MJB_Stat10: 0.0 - syst_JES_MJB_Stat11: 7.68770747761999e-31 - syst_JES_MJB_Stat12: 5.12167423798117e-39 + syst_JES_MJB_Stat11: 7.68770748e-31 + syst_JES_MJB_Stat12: 5.12167424e-39 syst_JES_MJB_Stat13: 0.0 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 syst_JES_MJB_Stat2: 0.0 - syst_JES_MJB_Stat3: 2.7349082251512573e-28 - syst_JES_MJB_Stat4: 6.704768676099124e-08 + syst_JES_MJB_Stat3: 2.73490823e-28 + syst_JES_MJB_Stat4: 6.70476868e-08 syst_JES_MJB_Stat5: 0.0 syst_JES_MJB_Stat6: 0.0 syst_JES_MJB_Stat7: 0.0 syst_JES_MJB_Stat8: 0.0 syst_JES_MJB_Stat9: 0.0 - syst_JES_MJB_Threshold: 0.004350911628613348 - syst_JES_Pileup_MuOffset: 1.8455072473442094e-15 - syst_JES_Pileup_NPVOffset: 1.601474945167735 - syst_JES_Pileup_Pt_term: 5.835852208546752 - syst_JES_Pileup_Rho_topology: 11.841653980757926 - syst_JES_PunchThrough_MC15: 2.4690384261894344e-16 + syst_JES_MJB_Threshold: 4.35091163e-03 + syst_JES_Pileup_MuOffset: 1.84550725e-15 + syst_JES_Pileup_NPVOffset: 1.60147495e+00 + syst_JES_Pileup_Pt_term: 5.83585221e+00 + syst_JES_Pileup_Rho_topology: 1.18416540e+01 + syst_JES_PunchThrough_MC15: 2.46903843e-16 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 24.318578803046858 - syst_JES_Zjet_MuScale: 1.8596216685121736 - syst_JES_Zjet_MuSmearID: 0.27143752043518227 - syst_JES_Zjet_MuSmearMS: 1.5079370013365943 - syst_JES_Zjet_OOC: 10.36061488281463 - syst_JES_Zjet_Stat1: 0.10191667380757675 - syst_JES_Zjet_Stat10: 3.4266741893562043 - syst_JES_Zjet_Stat11: 1.355870063833552 - syst_JES_Zjet_Stat12: 0.6463936474780674 - syst_JES_Zjet_Stat13: 0.06216527889425093 - syst_JES_Zjet_Stat2: 0.001565773930042265 - syst_JES_Zjet_Stat3: 4.410667381474145e-22 - syst_JES_Zjet_Stat4: 8.630809174115717e-29 - syst_JES_Zjet_Stat5: 0.08945176395689468 - syst_JES_Zjet_Stat6: 0.2840074294802867 - syst_JES_Zjet_Stat7: 0.4449161803081565 - syst_JES_Zjet_Stat8: 0.9929964551799769 - syst_JES_Zjet_Stat9: 2.586109964792681 - syst_JES_Zjet_Veto: 1.9457422748144213 - syst_JES_Zjet_dPhi: 2.360116681437594 + syst_JES_Zjet_MC: 2.43185788e+01 + syst_JES_Zjet_MuScale: 1.85962167e+00 + syst_JES_Zjet_MuSmearID: 2.71437520e-01 + syst_JES_Zjet_MuSmearMS: 1.50793700e+00 + syst_JES_Zjet_OOC: 1.03606149e+01 + syst_JES_Zjet_Stat1: 1.01916674e-01 + syst_JES_Zjet_Stat10: 3.42667419e+00 + syst_JES_Zjet_Stat11: 1.35587006e+00 + syst_JES_Zjet_Stat12: 6.46393647e-01 + syst_JES_Zjet_Stat13: 6.21652789e-02 + syst_JES_Zjet_Stat2: 1.56577393e-03 + syst_JES_Zjet_Stat3: 4.41066738e-22 + syst_JES_Zjet_Stat4: 8.63080917e-29 + syst_JES_Zjet_Stat5: 8.94517640e-02 + syst_JES_Zjet_Stat6: 2.84007429e-01 + syst_JES_Zjet_Stat7: 4.44916180e-01 + syst_JES_Zjet_Stat8: 9.92996455e-01 + syst_JES_Zjet_Stat9: 2.58610996e+00 + syst_JES_Zjet_Veto: 1.94574227e+00 + syst_JES_Zjet_dPhi: 2.36011668e+00 syst_PRW: 0.0 syst_Unfolding_bias: 1.561 - syst_cleaning: 6.4250424706767495 + syst_cleaning: 6.42504247e+00 syst_lumi: 26.65 - stat: 5.197 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 11.078556799060065 - syst_JER_NP1: 1.74349247202275 - syst_JER_NP2: 1.1638027839801723 - syst_JER_NP3: 2.778028932534721 - syst_JER_NP4: 0.7534006503846411 - syst_JER_NP5: 0.9489866226665157 - syst_JER_NP6: 0.5448261924687542 - syst_JER_NP7: 0.012535801719475307 - syst_JER_NP8: 0.8602342282773919 - syst_JES_EtaIntercalibration_Modelling: 20.095906921559923 + syst_JER_NP0: 1.10785568e+01 + syst_JER_NP1: 1.74349247e+00 + syst_JER_NP2: 1.16380278e+00 + syst_JER_NP3: 2.77802893e+00 + syst_JER_NP4: 7.53400650e-01 + syst_JER_NP5: 9.48986623e-01 + syst_JER_NP6: 5.44826192e-01 + syst_JER_NP7: 1.25358017e-02 + syst_JER_NP8: 8.60234228e-01 + syst_JES_EtaIntercalibration_Modelling: 2.00959069e+01 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 0.12081602739289188 - syst_JES_EtaIntercalibration_Stat101: 0.1992376658666729 - syst_JES_EtaIntercalibration_Stat102: 0.05384748717442626 - syst_JES_EtaIntercalibration_Stat103: 0.0021106352379082465 + syst_JES_EtaIntercalibration_Stat100: 1.20816027e-01 + syst_JES_EtaIntercalibration_Stat101: 1.99237666e-01 + syst_JES_EtaIntercalibration_Stat102: 5.38474872e-02 + syst_JES_EtaIntercalibration_Stat103: 2.11063524e-03 syst_JES_EtaIntercalibration_Stat104: 0.0 syst_JES_EtaIntercalibration_Stat105: 0.0 syst_JES_EtaIntercalibration_Stat106: 0.0 @@ -24630,170 +24630,170 @@ bins: syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 syst_JES_EtaIntercalibration_Stat110: 0.0 - syst_JES_EtaIntercalibration_Stat111: 4.717240374413837e-05 - syst_JES_EtaIntercalibration_Stat112: 0.021679577371341907 - syst_JES_EtaIntercalibration_Stat113: 0.45565272686553737 - syst_JES_EtaIntercalibration_Stat114: 1.2966995449987633 - syst_JES_EtaIntercalibration_Stat115: 0.9110786834845824 - syst_JES_EtaIntercalibration_Stat116: 0.02943620347463312 + syst_JES_EtaIntercalibration_Stat111: 4.71724037e-05 + syst_JES_EtaIntercalibration_Stat112: 2.16795774e-02 + syst_JES_EtaIntercalibration_Stat113: 4.55652727e-01 + syst_JES_EtaIntercalibration_Stat114: 1.29669954e+00 + syst_JES_EtaIntercalibration_Stat115: 9.11078683e-01 + syst_JES_EtaIntercalibration_Stat116: 2.94362035e-02 syst_JES_EtaIntercalibration_Stat117: 0.0 syst_JES_EtaIntercalibration_Stat118: 0.0 - syst_JES_EtaIntercalibration_Stat119: 0.013224829176590522 + syst_JES_EtaIntercalibration_Stat119: 1.32248292e-02 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 1.0826364856220207 - syst_JES_EtaIntercalibration_Stat121: 1.5505711044644164 - syst_JES_EtaIntercalibration_Stat122: 0.36744014896986965 - syst_JES_EtaIntercalibration_Stat123: 0.02069626060427342 + syst_JES_EtaIntercalibration_Stat120: 1.08263649e+00 + syst_JES_EtaIntercalibration_Stat121: 1.55057110e+00 + syst_JES_EtaIntercalibration_Stat122: 3.67440149e-01 + syst_JES_EtaIntercalibration_Stat123: 2.06962606e-02 syst_JES_EtaIntercalibration_Stat124: 0.0 syst_JES_EtaIntercalibration_Stat125: 0.0 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 syst_JES_EtaIntercalibration_Stat128: 0.0 syst_JES_EtaIntercalibration_Stat129: 0.0 - syst_JES_EtaIntercalibration_Stat13: 0.008920443991192366 + syst_JES_EtaIntercalibration_Stat13: 8.92044399e-03 syst_JES_EtaIntercalibration_Stat130: 0.0 - syst_JES_EtaIntercalibration_Stat131: 0.022832090399260423 - syst_JES_EtaIntercalibration_Stat132: 1.23172084499695 - syst_JES_EtaIntercalibration_Stat133: 3.6109769799875493 - syst_JES_EtaIntercalibration_Stat134: 2.8177510535886596 - syst_JES_EtaIntercalibration_Stat135: 0.036573051554389065 + syst_JES_EtaIntercalibration_Stat131: 2.28320904e-02 + syst_JES_EtaIntercalibration_Stat132: 1.23172084e+00 + syst_JES_EtaIntercalibration_Stat133: 3.61097698e+00 + syst_JES_EtaIntercalibration_Stat134: 2.81775105e+00 + syst_JES_EtaIntercalibration_Stat135: 3.65730516e-02 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 - syst_JES_EtaIntercalibration_Stat138: 0.010413035904576531 - syst_JES_EtaIntercalibration_Stat139: 1.966659096030626 - syst_JES_EtaIntercalibration_Stat14: 0.0006487635470647222 - syst_JES_EtaIntercalibration_Stat140: 3.5763004278164328 - syst_JES_EtaIntercalibration_Stat141: 1.1554766581372382 - syst_JES_EtaIntercalibration_Stat142: 0.03572064320179579 + syst_JES_EtaIntercalibration_Stat138: 1.04130359e-02 + syst_JES_EtaIntercalibration_Stat139: 1.96665910e+00 + syst_JES_EtaIntercalibration_Stat14: 6.48763547e-04 + syst_JES_EtaIntercalibration_Stat140: 3.57630043e+00 + syst_JES_EtaIntercalibration_Stat141: 1.15547666e+00 + syst_JES_EtaIntercalibration_Stat142: 3.57206432e-02 syst_JES_EtaIntercalibration_Stat143: 0.0 syst_JES_EtaIntercalibration_Stat144: 0.0 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 syst_JES_EtaIntercalibration_Stat147: 0.0 syst_JES_EtaIntercalibration_Stat148: 0.0 - syst_JES_EtaIntercalibration_Stat149: 0.004549732197338652 - syst_JES_EtaIntercalibration_Stat15: 0.0006349765493596988 - syst_JES_EtaIntercalibration_Stat150: 0.07661726747280928 - syst_JES_EtaIntercalibration_Stat151: 0.5085880725105535 - syst_JES_EtaIntercalibration_Stat152: 0.5212929376799574 - syst_JES_EtaIntercalibration_Stat153: 0.01878289984933104 + syst_JES_EtaIntercalibration_Stat149: 4.54973220e-03 + syst_JES_EtaIntercalibration_Stat15: 6.34976549e-04 + syst_JES_EtaIntercalibration_Stat150: 7.66172675e-02 + syst_JES_EtaIntercalibration_Stat151: 5.08588073e-01 + syst_JES_EtaIntercalibration_Stat152: 5.21292938e-01 + syst_JES_EtaIntercalibration_Stat153: 1.87828998e-02 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 0.009473895406333487 - syst_JES_EtaIntercalibration_Stat157: 0.468209512398029 - syst_JES_EtaIntercalibration_Stat158: 0.7011276114231987 - syst_JES_EtaIntercalibration_Stat159: 0.19654739886348027 + syst_JES_EtaIntercalibration_Stat156: 9.47389541e-03 + syst_JES_EtaIntercalibration_Stat157: 4.68209512e-01 + syst_JES_EtaIntercalibration_Stat158: 7.01127611e-01 + syst_JES_EtaIntercalibration_Stat159: 1.96547399e-01 syst_JES_EtaIntercalibration_Stat16: 0.0 - syst_JES_EtaIntercalibration_Stat160: 0.014828440225458645 + syst_JES_EtaIntercalibration_Stat160: 1.48284402e-02 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 - syst_JES_EtaIntercalibration_Stat167: 0.005499264418739269 - syst_JES_EtaIntercalibration_Stat168: 0.0744150105825431 - syst_JES_EtaIntercalibration_Stat169: 0.1968015321967794 + syst_JES_EtaIntercalibration_Stat167: 5.49926442e-03 + syst_JES_EtaIntercalibration_Stat168: 7.44150106e-02 + syst_JES_EtaIntercalibration_Stat169: 1.96801532e-01 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 0.1419204448802215 - syst_JES_EtaIntercalibration_Stat171: 0.007862199946579836 + syst_JES_EtaIntercalibration_Stat170: 1.41920445e-01 + syst_JES_EtaIntercalibration_Stat171: 7.86219995e-03 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 - syst_JES_EtaIntercalibration_Stat174: 0.007942911478167183 - syst_JES_EtaIntercalibration_Stat175: 0.15232478483490466 - syst_JES_EtaIntercalibration_Stat176: 0.24093492897460925 - syst_JES_EtaIntercalibration_Stat177: 0.056849161618708156 - syst_JES_EtaIntercalibration_Stat178: 0.003692465944325012 + syst_JES_EtaIntercalibration_Stat174: 7.94291148e-03 + syst_JES_EtaIntercalibration_Stat175: 1.52324785e-01 + syst_JES_EtaIntercalibration_Stat176: 2.40934929e-01 + syst_JES_EtaIntercalibration_Stat177: 5.68491616e-02 + syst_JES_EtaIntercalibration_Stat178: 3.69246594e-03 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 syst_JES_EtaIntercalibration_Stat180: 0.0 syst_JES_EtaIntercalibration_Stat181: 0.0 syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 - syst_JES_EtaIntercalibration_Stat184: 0.001514353958994726 - syst_JES_EtaIntercalibration_Stat185: 0.03706520470738021 - syst_JES_EtaIntercalibration_Stat186: 0.10405565530042085 - syst_JES_EtaIntercalibration_Stat187: 0.08756502312567502 - syst_JES_EtaIntercalibration_Stat188: 0.0003245863213384076 + syst_JES_EtaIntercalibration_Stat184: 1.51435396e-03 + syst_JES_EtaIntercalibration_Stat185: 3.70652047e-02 + syst_JES_EtaIntercalibration_Stat186: 1.04055655e-01 + syst_JES_EtaIntercalibration_Stat187: 8.75650231e-02 + syst_JES_EtaIntercalibration_Stat188: 3.24586321e-04 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 - syst_JES_EtaIntercalibration_Stat191: 0.0006003274343789637 - syst_JES_EtaIntercalibration_Stat192: 0.08070581701463655 - syst_JES_EtaIntercalibration_Stat193: 0.1449916894170145 - syst_JES_EtaIntercalibration_Stat194: 0.038261647899691935 - syst_JES_EtaIntercalibration_Stat195: 0.0017008738930326375 - syst_JES_EtaIntercalibration_Stat196: 7.18801092912219e-10 + syst_JES_EtaIntercalibration_Stat191: 6.00327434e-04 + syst_JES_EtaIntercalibration_Stat192: 8.07058170e-02 + syst_JES_EtaIntercalibration_Stat193: 1.44991689e-01 + syst_JES_EtaIntercalibration_Stat194: 3.82616479e-02 + syst_JES_EtaIntercalibration_Stat195: 1.70087389e-03 + syst_JES_EtaIntercalibration_Stat196: 7.18801093e-10 syst_JES_EtaIntercalibration_Stat197: 0.0 syst_JES_EtaIntercalibration_Stat198: 0.0 - syst_JES_EtaIntercalibration_Stat199: 2.2629243800887383e-05 + syst_JES_EtaIntercalibration_Stat199: 2.26292438e-05 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 0.00034715018003740107 - syst_JES_EtaIntercalibration_Stat201: 0.002287206374597623 - syst_JES_EtaIntercalibration_Stat202: 0.0017135836155554242 - syst_JES_EtaIntercalibration_Stat203: 1.7374699997410026e-06 + syst_JES_EtaIntercalibration_Stat200: 3.47150180e-04 + syst_JES_EtaIntercalibration_Stat201: 2.28720637e-03 + syst_JES_EtaIntercalibration_Stat202: 1.71358362e-03 + syst_JES_EtaIntercalibration_Stat203: 1.73747000e-06 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 - syst_JES_EtaIntercalibration_Stat206: 7.502525836010164e-06 - syst_JES_EtaIntercalibration_Stat207: 0.000954959831615969 - syst_JES_EtaIntercalibration_Stat208: 0.0013383349655448744 - syst_JES_EtaIntercalibration_Stat209: 0.0005370863315147761 + syst_JES_EtaIntercalibration_Stat206: 7.50252584e-06 + syst_JES_EtaIntercalibration_Stat207: 9.54959832e-04 + syst_JES_EtaIntercalibration_Stat208: 1.33833497e-03 + syst_JES_EtaIntercalibration_Stat209: 5.37086332e-04 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 8.211382944087479e-07 - syst_JES_EtaIntercalibration_Stat211: 2.3313563684813495e-17 - syst_JES_EtaIntercalibration_Stat212: 1.101266216679691e-12 - syst_JES_EtaIntercalibration_Stat213: 2.3633783510051877e-07 - syst_JES_EtaIntercalibration_Stat214: 4.092845229576487e-06 - syst_JES_EtaIntercalibration_Stat215: 5.76107396161772e-06 - syst_JES_EtaIntercalibration_Stat216: 1.5207289382680724e-16 + syst_JES_EtaIntercalibration_Stat210: 8.21138294e-07 + syst_JES_EtaIntercalibration_Stat211: 2.33135637e-17 + syst_JES_EtaIntercalibration_Stat212: 1.10126622e-12 + syst_JES_EtaIntercalibration_Stat213: 2.36337835e-07 + syst_JES_EtaIntercalibration_Stat214: 4.09284523e-06 + syst_JES_EtaIntercalibration_Stat215: 5.76107396e-06 + syst_JES_EtaIntercalibration_Stat216: 1.52072894e-16 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 - syst_JES_EtaIntercalibration_Stat219: 3.0804523114647907e-09 + syst_JES_EtaIntercalibration_Stat219: 3.08045231e-09 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 4.728915520497274e-06 - syst_JES_EtaIntercalibration_Stat221: 5.785852193713559e-05 - syst_JES_EtaIntercalibration_Stat222: 3.048586648622727e-06 - syst_JES_EtaIntercalibration_Stat223: 7.0511788376129e-10 - syst_JES_EtaIntercalibration_Stat224: 3.658957330989254e-27 - syst_JES_EtaIntercalibration_Stat225: 6.960808142737451e-17 - syst_JES_EtaIntercalibration_Stat226: 3.687536154124055e-13 - syst_JES_EtaIntercalibration_Stat227: 2.3114218027007093e-13 - syst_JES_EtaIntercalibration_Stat228: 1.8888014056538606e-17 + syst_JES_EtaIntercalibration_Stat220: 4.72891552e-06 + syst_JES_EtaIntercalibration_Stat221: 5.78585219e-05 + syst_JES_EtaIntercalibration_Stat222: 3.04858665e-06 + syst_JES_EtaIntercalibration_Stat223: 7.05117884e-10 + syst_JES_EtaIntercalibration_Stat224: 3.65895733e-27 + syst_JES_EtaIntercalibration_Stat225: 6.96080814e-17 + syst_JES_EtaIntercalibration_Stat226: 3.68753615e-13 + syst_JES_EtaIntercalibration_Stat227: 2.31142180e-13 + syst_JES_EtaIntercalibration_Stat228: 1.88880141e-17 syst_JES_EtaIntercalibration_Stat229: 0.0 syst_JES_EtaIntercalibration_Stat23: 0.0 syst_JES_EtaIntercalibration_Stat230: 0.0 - syst_JES_EtaIntercalibration_Stat231: 1.5501854727741453e-16 - syst_JES_EtaIntercalibration_Stat232: 4.2956049726971815e-13 - syst_JES_EtaIntercalibration_Stat233: 4.766603822429597e-13 - syst_JES_EtaIntercalibration_Stat234: 2.6595640150221938e-21 + syst_JES_EtaIntercalibration_Stat231: 1.55018547e-16 + syst_JES_EtaIntercalibration_Stat232: 4.29560497e-13 + syst_JES_EtaIntercalibration_Stat233: 4.76660382e-13 + syst_JES_EtaIntercalibration_Stat234: 2.65956402e-21 syst_JES_EtaIntercalibration_Stat235: 0.0 - syst_JES_EtaIntercalibration_Stat236: 5.610112565715594e-36 - syst_JES_EtaIntercalibration_Stat237: 1.3353840299704052e-35 - syst_JES_EtaIntercalibration_Stat238: 1.1768410045541412e-35 + syst_JES_EtaIntercalibration_Stat236: 5.61011257e-36 + syst_JES_EtaIntercalibration_Stat237: 1.33538403e-35 + syst_JES_EtaIntercalibration_Stat238: 1.17684100e-35 syst_JES_EtaIntercalibration_Stat239: 0.0 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 - syst_JES_EtaIntercalibration_Stat243: 5.745212528705965e-36 - syst_JES_EtaIntercalibration_Stat244: 9.536006711407035e-36 + syst_JES_EtaIntercalibration_Stat243: 5.74521253e-36 + syst_JES_EtaIntercalibration_Stat244: 9.53600671e-36 syst_JES_EtaIntercalibration_Stat245: 0.0 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 - syst_JES_EtaIntercalibration_Stat27: 0.00022181498303766586 - syst_JES_EtaIntercalibration_Stat28: 0.002503990415317119 - syst_JES_EtaIntercalibration_Stat29: 0.004642039718701253 + syst_JES_EtaIntercalibration_Stat27: 2.21814983e-04 + syst_JES_EtaIntercalibration_Stat28: 2.50399042e-03 + syst_JES_EtaIntercalibration_Stat29: 4.64203972e-03 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 0.004370571701734225 - syst_JES_EtaIntercalibration_Stat31: 4.255648834196732e-05 + syst_JES_EtaIntercalibration_Stat30: 4.37057170e-03 + syst_JES_EtaIntercalibration_Stat31: 4.25564883e-05 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 - syst_JES_EtaIntercalibration_Stat34: 3.1142273520088416e-06 - syst_JES_EtaIntercalibration_Stat35: 0.002095632961064509 - syst_JES_EtaIntercalibration_Stat36: 0.003770132513254673 - syst_JES_EtaIntercalibration_Stat37: 0.0023322398906416124 - syst_JES_EtaIntercalibration_Stat38: 0.000106030614800632 + syst_JES_EtaIntercalibration_Stat34: 3.11422735e-06 + syst_JES_EtaIntercalibration_Stat35: 2.09563296e-03 + syst_JES_EtaIntercalibration_Stat36: 3.77013251e-03 + syst_JES_EtaIntercalibration_Stat37: 2.33223989e-03 + syst_JES_EtaIntercalibration_Stat38: 1.06030615e-04 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 syst_JES_EtaIntercalibration_Stat40: 0.0 @@ -24804,21 +24804,21 @@ bins: syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 syst_JES_EtaIntercalibration_Stat47: 0.0 - syst_JES_EtaIntercalibration_Stat48: 0.00013025022072917956 - syst_JES_EtaIntercalibration_Stat49: 0.0007308894867727952 - syst_JES_EtaIntercalibration_Stat5: 0.00011377841754919954 - syst_JES_EtaIntercalibration_Stat50: 0.006743302935505715 - syst_JES_EtaIntercalibration_Stat51: 0.015825720973150006 - syst_JES_EtaIntercalibration_Stat52: 0.00850398971071814 - syst_JES_EtaIntercalibration_Stat53: 0.00019772955488494884 - syst_JES_EtaIntercalibration_Stat54: 0.00011059144406327282 + syst_JES_EtaIntercalibration_Stat48: 1.30250221e-04 + syst_JES_EtaIntercalibration_Stat49: 7.30889487e-04 + syst_JES_EtaIntercalibration_Stat5: 1.13778418e-04 + syst_JES_EtaIntercalibration_Stat50: 6.74330294e-03 + syst_JES_EtaIntercalibration_Stat51: 1.58257210e-02 + syst_JES_EtaIntercalibration_Stat52: 8.50398971e-03 + syst_JES_EtaIntercalibration_Stat53: 1.97729555e-04 + syst_JES_EtaIntercalibration_Stat54: 1.10591444e-04 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 2.55507084050521e-05 - syst_JES_EtaIntercalibration_Stat57: 0.006141535399840988 - syst_JES_EtaIntercalibration_Stat58: 0.01621053592574903 - syst_JES_EtaIntercalibration_Stat59: 0.0065785690693341515 - syst_JES_EtaIntercalibration_Stat6: 0.00024594499141068115 - syst_JES_EtaIntercalibration_Stat60: 0.0010085111600770713 + syst_JES_EtaIntercalibration_Stat56: 2.55507084e-05 + syst_JES_EtaIntercalibration_Stat57: 6.14153540e-03 + syst_JES_EtaIntercalibration_Stat58: 1.62105359e-02 + syst_JES_EtaIntercalibration_Stat59: 6.57856907e-03 + syst_JES_EtaIntercalibration_Stat6: 2.45944991e-04 + syst_JES_EtaIntercalibration_Stat60: 1.00851116e-03 syst_JES_EtaIntercalibration_Stat61: 0.0 syst_JES_EtaIntercalibration_Stat62: 0.0 syst_JES_EtaIntercalibration_Stat63: 0.0 @@ -24828,21 +24828,21 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 0.0006993530867880687 - syst_JES_EtaIntercalibration_Stat70: 0.00011377841754919954 - syst_JES_EtaIntercalibration_Stat71: 0.0021029262609040767 - syst_JES_EtaIntercalibration_Stat72: 0.010054137605980933 - syst_JES_EtaIntercalibration_Stat73: 0.09728431669596083 - syst_JES_EtaIntercalibration_Stat74: 0.03362035395411535 - syst_JES_EtaIntercalibration_Stat75: 0.003232922065253043 - syst_JES_EtaIntercalibration_Stat76: 0.00011059144406327282 + syst_JES_EtaIntercalibration_Stat7: 6.99353087e-04 + syst_JES_EtaIntercalibration_Stat70: 1.13778418e-04 + syst_JES_EtaIntercalibration_Stat71: 2.10292626e-03 + syst_JES_EtaIntercalibration_Stat72: 1.00541376e-02 + syst_JES_EtaIntercalibration_Stat73: 9.72843167e-02 + syst_JES_EtaIntercalibration_Stat74: 3.36203540e-02 + syst_JES_EtaIntercalibration_Stat75: 3.23292207e-03 + syst_JES_EtaIntercalibration_Stat76: 1.10591444e-04 syst_JES_EtaIntercalibration_Stat77: 0.0 - syst_JES_EtaIntercalibration_Stat78: 0.0016084015263608774 - syst_JES_EtaIntercalibration_Stat79: 0.022955343865862694 - syst_JES_EtaIntercalibration_Stat8: 0.0001855226139854654 - syst_JES_EtaIntercalibration_Stat80: 0.05208992416965108 - syst_JES_EtaIntercalibration_Stat81: 0.005947521783692768 - syst_JES_EtaIntercalibration_Stat82: 0.0019663377602792457 + syst_JES_EtaIntercalibration_Stat78: 1.60840153e-03 + syst_JES_EtaIntercalibration_Stat79: 2.29553439e-02 + syst_JES_EtaIntercalibration_Stat8: 1.85522614e-04 + syst_JES_EtaIntercalibration_Stat80: 5.20899242e-02 + syst_JES_EtaIntercalibration_Stat81: 5.94752178e-03 + syst_JES_EtaIntercalibration_Stat82: 1.96633776e-03 syst_JES_EtaIntercalibration_Stat83: 0.0 syst_JES_EtaIntercalibration_Stat84: 0.0 syst_JES_EtaIntercalibration_Stat85: 0.0 @@ -24852,113 +24852,113 @@ bins: syst_JES_EtaIntercalibration_Stat89: 0.0 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 9.776560783322528e-05 - syst_JES_EtaIntercalibration_Stat92: 0.005177130551763206 - syst_JES_EtaIntercalibration_Stat93: 0.058487149656997306 - syst_JES_EtaIntercalibration_Stat94: 0.24880257233396924 - syst_JES_EtaIntercalibration_Stat95: 0.16470000022768672 - syst_JES_EtaIntercalibration_Stat96: 0.0010043471212683392 - syst_JES_EtaIntercalibration_Stat97: 0.00011059144406327282 + syst_JES_EtaIntercalibration_Stat91: 9.77656078e-05 + syst_JES_EtaIntercalibration_Stat92: 5.17713055e-03 + syst_JES_EtaIntercalibration_Stat93: 5.84871497e-02 + syst_JES_EtaIntercalibration_Stat94: 2.48802572e-01 + syst_JES_EtaIntercalibration_Stat95: 1.64700000e-01 + syst_JES_EtaIntercalibration_Stat96: 1.00434712e-03 + syst_JES_EtaIntercalibration_Stat97: 1.10591444e-04 syst_JES_EtaIntercalibration_Stat98: 0.0 - syst_JES_EtaIntercalibration_Stat99: 0.003393355841935826 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.1001660325409767 - syst_JES_Flavour_Comp: 0.6877777747935738 - syst_JES_Flavour_Response: 19.69503173391706 - syst_JES_Gjet_Generator: 14.770819205446934 - syst_JES_Gjet_OOC: 8.135732588402842 - syst_JES_Gjet_Purity: 2.927442740686827 - syst_JES_Gjet_Stat1: 9.202385940613445e-16 - syst_JES_Gjet_Stat10: 0.38833749175169785 - syst_JES_Gjet_Stat11: 0.14694065570835052 - syst_JES_Gjet_Stat12: 0.1609820797480266 - syst_JES_Gjet_Stat13: 0.026999824198501738 - syst_JES_Gjet_Stat14: 7.591709393283899e-06 - syst_JES_Gjet_Stat15: 9.633401631822478e-06 - syst_JES_Gjet_Stat2: 9.647522998158646e-16 - syst_JES_Gjet_Stat3: 9.892608187429641e-27 - syst_JES_Gjet_Stat4: 0.035533290992391914 - syst_JES_Gjet_Stat5: 0.04597173125954689 - syst_JES_Gjet_Stat6: 0.30979507743022644 - syst_JES_Gjet_Stat7: 0.6875756467473233 - syst_JES_Gjet_Stat8: 0.5077175863607641 - syst_JES_Gjet_Stat9: 0.8296741092139733 - syst_JES_Gjet_Veto: 3.281043888764672 - syst_JES_Gjet_dPhi: 1.1852549135101698 - syst_JES_LArESZee: 12.454087391294474 - syst_JES_LArEsmear: 0.998246798141622 - syst_JES_LAr_JVT: 1.5831300483535773 - syst_JES_MJB_Alpha: 6.225855536037737e-20 - syst_JES_MJB_Asym: 0.033577536990055806 - syst_JES_MJB_Beta: 3.079586335857464e-20 - syst_JES_MJB_Fragmentation: 0.10282559360392725 - syst_JES_MJB_Stat1: 6.938595535120923e-16 - syst_JES_MJB_Stat10: 8.38572398484472e-43 - syst_JES_MJB_Stat11: 2.246468749906651e-22 - syst_JES_MJB_Stat12: 1.849830262483561e-28 - syst_JES_MJB_Stat13: 1.0995924551851015e-35 + syst_JES_EtaIntercalibration_Stat99: 3.39335584e-03 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.00166033e-01 + syst_JES_Flavour_Comp: 6.87777775e-01 + syst_JES_Flavour_Response: 1.96950317e+01 + syst_JES_Gjet_Generator: 1.47708192e+01 + syst_JES_Gjet_OOC: 8.13573259e+00 + syst_JES_Gjet_Purity: 2.92744274e+00 + syst_JES_Gjet_Stat1: 9.20238594e-16 + syst_JES_Gjet_Stat10: 3.88337492e-01 + syst_JES_Gjet_Stat11: 1.46940656e-01 + syst_JES_Gjet_Stat12: 1.60982080e-01 + syst_JES_Gjet_Stat13: 2.69998242e-02 + syst_JES_Gjet_Stat14: 7.59170939e-06 + syst_JES_Gjet_Stat15: 9.63340163e-06 + syst_JES_Gjet_Stat2: 9.64752300e-16 + syst_JES_Gjet_Stat3: 9.89260819e-27 + syst_JES_Gjet_Stat4: 3.55332910e-02 + syst_JES_Gjet_Stat5: 4.59717313e-02 + syst_JES_Gjet_Stat6: 3.09795077e-01 + syst_JES_Gjet_Stat7: 6.87575647e-01 + syst_JES_Gjet_Stat8: 5.07717586e-01 + syst_JES_Gjet_Stat9: 8.29674109e-01 + syst_JES_Gjet_Veto: 3.28104389e+00 + syst_JES_Gjet_dPhi: 1.18525491e+00 + syst_JES_LArESZee: 1.24540874e+01 + syst_JES_LArEsmear: 9.98246798e-01 + syst_JES_LAr_JVT: 1.58313005e+00 + syst_JES_MJB_Alpha: 6.22585554e-20 + syst_JES_MJB_Asym: 3.35775370e-02 + syst_JES_MJB_Beta: 3.07958634e-20 + syst_JES_MJB_Fragmentation: 1.02825594e-01 + syst_JES_MJB_Stat1: 6.93859554e-16 + syst_JES_MJB_Stat10: 8.38572398e-43 + syst_JES_MJB_Stat11: 2.24646875e-22 + syst_JES_MJB_Stat12: 1.84983026e-28 + syst_JES_MJB_Stat13: 1.09959246e-35 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 syst_JES_MJB_Stat2: 0.0 - syst_JES_MJB_Stat3: 7.991682426122799e-20 - syst_JES_MJB_Stat4: 4.867062769268545e-06 + syst_JES_MJB_Stat3: 7.99168243e-20 + syst_JES_MJB_Stat4: 4.86706277e-06 syst_JES_MJB_Stat5: 0.0 syst_JES_MJB_Stat6: 0.0 syst_JES_MJB_Stat7: 0.0 syst_JES_MJB_Stat8: 0.0 syst_JES_MJB_Stat9: 0.0 - syst_JES_MJB_Threshold: 0.02688142858361185 - syst_JES_Pileup_MuOffset: 2.81730487345619e-10 - syst_JES_Pileup_NPVOffset: 0.8159765070147547 - syst_JES_Pileup_Pt_term: 2.978023967331358 - syst_JES_Pileup_Rho_topology: 5.7768254906998875 - syst_JES_PunchThrough_MC15: 3.769808582673661e-11 + syst_JES_MJB_Threshold: 2.68814286e-02 + syst_JES_Pileup_MuOffset: 2.81730487e-10 + syst_JES_Pileup_NPVOffset: 8.15976507e-01 + syst_JES_Pileup_Pt_term: 2.97802397e+00 + syst_JES_Pileup_Rho_topology: 5.77682549e+00 + syst_JES_PunchThrough_MC15: 3.76980858e-11 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 12.822685327184786 - syst_JES_Zjet_MuScale: 0.9478839169434198 - syst_JES_Zjet_MuSmearID: 0.1378039720037126 - syst_JES_Zjet_MuSmearMS: 0.972210357895862 - syst_JES_Zjet_OOC: 4.866337919832531 - syst_JES_Zjet_Stat1: 0.05611773605554665 - syst_JES_Zjet_Stat10: 1.8888490543185286 - syst_JES_Zjet_Stat11: 1.5128228581033538 - syst_JES_Zjet_Stat12: 0.19262917743685665 - syst_JES_Zjet_Stat13: 0.0984206547173915 - syst_JES_Zjet_Stat2: 0.0011691342951089922 - syst_JES_Zjet_Stat3: 2.140814798155132e-15 - syst_JES_Zjet_Stat4: 2.52273200122407e-20 - syst_JES_Zjet_Stat5: 0.036277804164529324 - syst_JES_Zjet_Stat6: 0.10485404999331213 - syst_JES_Zjet_Stat7: 0.1516924127140181 - syst_JES_Zjet_Stat8: 0.33522737060091023 - syst_JES_Zjet_Stat9: 1.0609452907666823 - syst_JES_Zjet_Veto: 0.9367067564077884 - syst_JES_Zjet_dPhi: 1.0302641348217456 + syst_JES_Zjet_MC: 1.28226853e+01 + syst_JES_Zjet_MuScale: 9.47883917e-01 + syst_JES_Zjet_MuSmearID: 1.37803972e-01 + syst_JES_Zjet_MuSmearMS: 9.72210358e-01 + syst_JES_Zjet_OOC: 4.86633792e+00 + syst_JES_Zjet_Stat1: 5.61177361e-02 + syst_JES_Zjet_Stat10: 1.88884905e+00 + syst_JES_Zjet_Stat11: 1.51282286e+00 + syst_JES_Zjet_Stat12: 1.92629177e-01 + syst_JES_Zjet_Stat13: 9.84206547e-02 + syst_JES_Zjet_Stat2: 1.16913430e-03 + syst_JES_Zjet_Stat3: 2.14081480e-15 + syst_JES_Zjet_Stat4: 2.52273200e-20 + syst_JES_Zjet_Stat5: 3.62778042e-02 + syst_JES_Zjet_Stat6: 1.04854050e-01 + syst_JES_Zjet_Stat7: 1.51692413e-01 + syst_JES_Zjet_Stat8: 3.35227371e-01 + syst_JES_Zjet_Stat9: 1.06094529e+00 + syst_JES_Zjet_Veto: 9.36706756e-01 + syst_JES_Zjet_dPhi: 1.03026413e+00 syst_PRW: 0.0 syst_Unfolding_bias: 0.7495 - syst_cleaning: 3.7039906519860444 + syst_cleaning: 3.70399065e+00 syst_lumi: 14.51 - stat: 2.4128 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 5.352016512493211 - syst_JER_NP1: 0.8257178498131187 - syst_JER_NP2: 0.7424105602697202 - syst_JER_NP3: 1.3211560042250876 - syst_JER_NP4: 0.2802510793913201 - syst_JER_NP5: 0.6119450547230526 - syst_JER_NP6: 0.21964017733556856 - syst_JER_NP7: 0.0010483752989745609 - syst_JER_NP8: 0.4396169099340925 - syst_JES_EtaIntercalibration_Modelling: 9.261314863452164 + syst_JER_NP0: 5.35201651e+00 + syst_JER_NP1: 8.25717850e-01 + syst_JER_NP2: 7.42410560e-01 + syst_JER_NP3: 1.32115600e+00 + syst_JER_NP4: 2.80251079e-01 + syst_JER_NP5: 6.11945055e-01 + syst_JER_NP6: 2.19640177e-01 + syst_JER_NP7: 1.04837530e-03 + syst_JER_NP8: 4.39616910e-01 + syst_JES_EtaIntercalibration_Modelling: 9.26131486e+00 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 0.019818813486180246 - syst_JES_EtaIntercalibration_Stat101: 0.04344515853348909 - syst_JES_EtaIntercalibration_Stat102: 0.014227064375689035 - syst_JES_EtaIntercalibration_Stat103: 0.002898584611495756 + syst_JES_EtaIntercalibration_Stat100: 1.98188135e-02 + syst_JES_EtaIntercalibration_Stat101: 4.34451585e-02 + syst_JES_EtaIntercalibration_Stat102: 1.42270644e-02 + syst_JES_EtaIntercalibration_Stat103: 2.89858461e-03 syst_JES_EtaIntercalibration_Stat104: 0.0 syst_JES_EtaIntercalibration_Stat105: 0.0 syst_JES_EtaIntercalibration_Stat106: 0.0 @@ -24967,170 +24967,170 @@ bins: syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 syst_JES_EtaIntercalibration_Stat110: 0.0 - syst_JES_EtaIntercalibration_Stat111: 4.071185423190646e-06 - syst_JES_EtaIntercalibration_Stat112: 0.005374420840192923 - syst_JES_EtaIntercalibration_Stat113: 0.13393965460236187 - syst_JES_EtaIntercalibration_Stat114: 0.3947040251884949 - syst_JES_EtaIntercalibration_Stat115: 0.2974725533557676 - syst_JES_EtaIntercalibration_Stat116: 0.007155101887698624 + syst_JES_EtaIntercalibration_Stat111: 4.07118542e-06 + syst_JES_EtaIntercalibration_Stat112: 5.37442084e-03 + syst_JES_EtaIntercalibration_Stat113: 1.33939655e-01 + syst_JES_EtaIntercalibration_Stat114: 3.94704025e-01 + syst_JES_EtaIntercalibration_Stat115: 2.97472553e-01 + syst_JES_EtaIntercalibration_Stat116: 7.15510189e-03 syst_JES_EtaIntercalibration_Stat117: 0.0 syst_JES_EtaIntercalibration_Stat118: 0.0 - syst_JES_EtaIntercalibration_Stat119: 0.0007973566516935818 + syst_JES_EtaIntercalibration_Stat119: 7.97356652e-04 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 0.3559810774465407 - syst_JES_EtaIntercalibration_Stat121: 0.5218714472932965 - syst_JES_EtaIntercalibration_Stat122: 0.1186350474143286 - syst_JES_EtaIntercalibration_Stat123: 0.010485535784474725 + syst_JES_EtaIntercalibration_Stat120: 3.55981077e-01 + syst_JES_EtaIntercalibration_Stat121: 5.21871447e-01 + syst_JES_EtaIntercalibration_Stat122: 1.18635047e-01 + syst_JES_EtaIntercalibration_Stat123: 1.04855358e-02 syst_JES_EtaIntercalibration_Stat124: 0.0 syst_JES_EtaIntercalibration_Stat125: 0.0 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 syst_JES_EtaIntercalibration_Stat128: 0.0 syst_JES_EtaIntercalibration_Stat129: 0.0 - syst_JES_EtaIntercalibration_Stat13: 0.004978285122416654 + syst_JES_EtaIntercalibration_Stat13: 4.97828512e-03 syst_JES_EtaIntercalibration_Stat130: 0.0 - syst_JES_EtaIntercalibration_Stat131: 0.010223695702019892 - syst_JES_EtaIntercalibration_Stat132: 0.5789598086223257 - syst_JES_EtaIntercalibration_Stat133: 1.7496115997557857 - syst_JES_EtaIntercalibration_Stat134: 1.3526536918221161 - syst_JES_EtaIntercalibration_Stat135: 0.015585235537199944 + syst_JES_EtaIntercalibration_Stat131: 1.02236957e-02 + syst_JES_EtaIntercalibration_Stat132: 5.78959809e-01 + syst_JES_EtaIntercalibration_Stat133: 1.74961160e+00 + syst_JES_EtaIntercalibration_Stat134: 1.35265369e+00 + syst_JES_EtaIntercalibration_Stat135: 1.55852355e-02 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 - syst_JES_EtaIntercalibration_Stat138: 0.007256714597529656 - syst_JES_EtaIntercalibration_Stat139: 0.9883020831203383 - syst_JES_EtaIntercalibration_Stat14: 0.0001038464668392719 - syst_JES_EtaIntercalibration_Stat140: 1.860043547877307 - syst_JES_EtaIntercalibration_Stat141: 0.5882518742001593 - syst_JES_EtaIntercalibration_Stat142: 0.020407297714298184 + syst_JES_EtaIntercalibration_Stat138: 7.25671460e-03 + syst_JES_EtaIntercalibration_Stat139: 9.88302083e-01 + syst_JES_EtaIntercalibration_Stat14: 1.03846467e-04 + syst_JES_EtaIntercalibration_Stat140: 1.86004355e+00 + syst_JES_EtaIntercalibration_Stat141: 5.88251874e-01 + syst_JES_EtaIntercalibration_Stat142: 2.04072977e-02 syst_JES_EtaIntercalibration_Stat143: 0.0 syst_JES_EtaIntercalibration_Stat144: 0.0 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 syst_JES_EtaIntercalibration_Stat147: 0.0 syst_JES_EtaIntercalibration_Stat148: 0.0 - syst_JES_EtaIntercalibration_Stat149: 0.0026357482808492924 - syst_JES_EtaIntercalibration_Stat15: 0.00010155966210650516 - syst_JES_EtaIntercalibration_Stat150: 0.09574776864240754 - syst_JES_EtaIntercalibration_Stat151: 0.5220287994929016 - syst_JES_EtaIntercalibration_Stat152: 0.49829084880218294 - syst_JES_EtaIntercalibration_Stat153: 0.011396965692674519 + syst_JES_EtaIntercalibration_Stat149: 2.63574828e-03 + syst_JES_EtaIntercalibration_Stat15: 1.01559662e-04 + syst_JES_EtaIntercalibration_Stat150: 9.57477686e-02 + syst_JES_EtaIntercalibration_Stat151: 5.22028799e-01 + syst_JES_EtaIntercalibration_Stat152: 4.98290849e-01 + syst_JES_EtaIntercalibration_Stat153: 1.13969657e-02 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 0.0018829973581831621 - syst_JES_EtaIntercalibration_Stat157: 0.4787171816427733 - syst_JES_EtaIntercalibration_Stat158: 0.7919228939739021 - syst_JES_EtaIntercalibration_Stat159: 0.14758599764205274 + syst_JES_EtaIntercalibration_Stat156: 1.88299736e-03 + syst_JES_EtaIntercalibration_Stat157: 4.78717182e-01 + syst_JES_EtaIntercalibration_Stat158: 7.91922894e-01 + syst_JES_EtaIntercalibration_Stat159: 1.47585998e-01 syst_JES_EtaIntercalibration_Stat16: 0.0 - syst_JES_EtaIntercalibration_Stat160: 0.01388853076282729 + syst_JES_EtaIntercalibration_Stat160: 1.38885308e-02 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 - syst_JES_EtaIntercalibration_Stat167: 0.0026474002747412413 - syst_JES_EtaIntercalibration_Stat168: 0.026974938368789652 - syst_JES_EtaIntercalibration_Stat169: 0.043932631380330496 + syst_JES_EtaIntercalibration_Stat167: 2.64740027e-03 + syst_JES_EtaIntercalibration_Stat168: 2.69749384e-02 + syst_JES_EtaIntercalibration_Stat169: 4.39326314e-02 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 0.049871477820493754 - syst_JES_EtaIntercalibration_Stat171: 0.0014853596088153199 + syst_JES_EtaIntercalibration_Stat170: 4.98714778e-02 + syst_JES_EtaIntercalibration_Stat171: 1.48535961e-03 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 - syst_JES_EtaIntercalibration_Stat174: 0.0009395675813905032 - syst_JES_EtaIntercalibration_Stat175: 0.09867786378286673 - syst_JES_EtaIntercalibration_Stat176: 0.022906549980300398 - syst_JES_EtaIntercalibration_Stat177: 0.035733195700916535 - syst_JES_EtaIntercalibration_Stat178: 0.0034920695869355184 + syst_JES_EtaIntercalibration_Stat174: 9.39567581e-04 + syst_JES_EtaIntercalibration_Stat175: 9.86778638e-02 + syst_JES_EtaIntercalibration_Stat176: 2.29065500e-02 + syst_JES_EtaIntercalibration_Stat177: 3.57331957e-02 + syst_JES_EtaIntercalibration_Stat178: 3.49206959e-03 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 syst_JES_EtaIntercalibration_Stat180: 0.0 syst_JES_EtaIntercalibration_Stat181: 0.0 syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 - syst_JES_EtaIntercalibration_Stat184: 0.0004919188550970577 - syst_JES_EtaIntercalibration_Stat185: 0.0494802445426455 - syst_JES_EtaIntercalibration_Stat186: 0.136500154944967 - syst_JES_EtaIntercalibration_Stat187: 0.09326370515908103 - syst_JES_EtaIntercalibration_Stat188: 0.00024101486987320928 + syst_JES_EtaIntercalibration_Stat184: 4.91918855e-04 + syst_JES_EtaIntercalibration_Stat185: 4.94802445e-02 + syst_JES_EtaIntercalibration_Stat186: 1.36500155e-01 + syst_JES_EtaIntercalibration_Stat187: 9.32637052e-02 + syst_JES_EtaIntercalibration_Stat188: 2.41014870e-04 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 - syst_JES_EtaIntercalibration_Stat191: 0.0017082990236413726 - syst_JES_EtaIntercalibration_Stat192: 0.07744719960560227 - syst_JES_EtaIntercalibration_Stat193: 0.15696762428921449 - syst_JES_EtaIntercalibration_Stat194: 0.02966705917343342 - syst_JES_EtaIntercalibration_Stat195: 0.003045811345109871 - syst_JES_EtaIntercalibration_Stat196: 1.8974642113049448e-07 + syst_JES_EtaIntercalibration_Stat191: 1.70829902e-03 + syst_JES_EtaIntercalibration_Stat192: 7.74471996e-02 + syst_JES_EtaIntercalibration_Stat193: 1.56967624e-01 + syst_JES_EtaIntercalibration_Stat194: 2.96670592e-02 + syst_JES_EtaIntercalibration_Stat195: 3.04581135e-03 + syst_JES_EtaIntercalibration_Stat196: 1.89746421e-07 syst_JES_EtaIntercalibration_Stat197: 0.0 syst_JES_EtaIntercalibration_Stat198: 0.0 - syst_JES_EtaIntercalibration_Stat199: 0.00019537533109376936 + syst_JES_EtaIntercalibration_Stat199: 1.95375331e-04 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 0.00201334317740419 - syst_JES_EtaIntercalibration_Stat201: 0.012606573959645024 - syst_JES_EtaIntercalibration_Stat202: 0.010334261657225445 - syst_JES_EtaIntercalibration_Stat203: 1.6475288669701665e-05 + syst_JES_EtaIntercalibration_Stat200: 2.01334318e-03 + syst_JES_EtaIntercalibration_Stat201: 1.26065740e-02 + syst_JES_EtaIntercalibration_Stat202: 1.03342617e-02 + syst_JES_EtaIntercalibration_Stat203: 1.64752887e-05 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 - syst_JES_EtaIntercalibration_Stat206: 6.659315955862134e-05 - syst_JES_EtaIntercalibration_Stat207: 0.0081720690770453 - syst_JES_EtaIntercalibration_Stat208: 0.013255770318996933 - syst_JES_EtaIntercalibration_Stat209: 0.004098844372198096 + syst_JES_EtaIntercalibration_Stat206: 6.65931596e-05 + syst_JES_EtaIntercalibration_Stat207: 8.17206908e-03 + syst_JES_EtaIntercalibration_Stat208: 1.32557703e-02 + syst_JES_EtaIntercalibration_Stat209: 4.09884437e-03 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 3.196655043760587e-05 - syst_JES_EtaIntercalibration_Stat211: 7.655933507476332e-13 - syst_JES_EtaIntercalibration_Stat212: 2.7220236497870477e-09 - syst_JES_EtaIntercalibration_Stat213: 9.635120030388828e-06 - syst_JES_EtaIntercalibration_Stat214: 3.5244065303882016e-05 - syst_JES_EtaIntercalibration_Stat215: 4.921138593361805e-05 - syst_JES_EtaIntercalibration_Stat216: 4.995272606442516e-12 + syst_JES_EtaIntercalibration_Stat210: 3.19665504e-05 + syst_JES_EtaIntercalibration_Stat211: 7.65593351e-13 + syst_JES_EtaIntercalibration_Stat212: 2.72202365e-09 + syst_JES_EtaIntercalibration_Stat213: 9.63512003e-06 + syst_JES_EtaIntercalibration_Stat214: 3.52440653e-05 + syst_JES_EtaIntercalibration_Stat215: 4.92113859e-05 + syst_JES_EtaIntercalibration_Stat216: 4.99527261e-12 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 - syst_JES_EtaIntercalibration_Stat219: 8.130230151847036e-07 + syst_JES_EtaIntercalibration_Stat219: 8.13023015e-07 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 6.050742185881002e-05 - syst_JES_EtaIntercalibration_Stat221: 0.0007784119780039359 - syst_JES_EtaIntercalibration_Stat222: 2.6715819513539167e-05 - syst_JES_EtaIntercalibration_Stat223: 1.85935654192519e-07 - syst_JES_EtaIntercalibration_Stat224: 9.744517843382503e-20 - syst_JES_EtaIntercalibration_Stat225: 2.2837216883849924e-12 - syst_JES_EtaIntercalibration_Stat226: 9.161671967556779e-10 - syst_JES_EtaIntercalibration_Stat227: 5.742614453633378e-10 - syst_JES_EtaIntercalibration_Stat228: 6.202473941904149e-13 + syst_JES_EtaIntercalibration_Stat220: 6.05074219e-05 + syst_JES_EtaIntercalibration_Stat221: 7.78411978e-04 + syst_JES_EtaIntercalibration_Stat222: 2.67158195e-05 + syst_JES_EtaIntercalibration_Stat223: 1.85935654e-07 + syst_JES_EtaIntercalibration_Stat224: 9.74451784e-20 + syst_JES_EtaIntercalibration_Stat225: 2.28372169e-12 + syst_JES_EtaIntercalibration_Stat226: 9.16167197e-10 + syst_JES_EtaIntercalibration_Stat227: 5.74261445e-10 + syst_JES_EtaIntercalibration_Stat228: 6.20247394e-13 syst_JES_EtaIntercalibration_Stat229: 0.0 syst_JES_EtaIntercalibration_Stat23: 0.0 syst_JES_EtaIntercalibration_Stat230: 0.0 - syst_JES_EtaIntercalibration_Stat231: 5.088765272637361e-12 - syst_JES_EtaIntercalibration_Stat232: 1.0618118440703136e-09 - syst_JES_EtaIntercalibration_Stat233: 1.1827308940734908e-09 - syst_JES_EtaIntercalibration_Stat234: 1.8870693551849656e-15 - syst_JES_EtaIntercalibration_Stat235: 4.977047995549169e-33 - syst_JES_EtaIntercalibration_Stat236: 1.0398365969287265e-26 - syst_JES_EtaIntercalibration_Stat237: 2.4750806047480555e-26 - syst_JES_EtaIntercalibration_Stat238: 2.181982856829998e-26 + syst_JES_EtaIntercalibration_Stat231: 5.08876527e-12 + syst_JES_EtaIntercalibration_Stat232: 1.06181184e-09 + syst_JES_EtaIntercalibration_Stat233: 1.18273089e-09 + syst_JES_EtaIntercalibration_Stat234: 1.88706936e-15 + syst_JES_EtaIntercalibration_Stat235: 4.97704800e-33 + syst_JES_EtaIntercalibration_Stat236: 1.03983660e-26 + syst_JES_EtaIntercalibration_Stat237: 2.47508060e-26 + syst_JES_EtaIntercalibration_Stat238: 2.18198286e-26 syst_JES_EtaIntercalibration_Stat239: 0.0 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 - syst_JES_EtaIntercalibration_Stat243: 1.0649512908279927e-26 - syst_JES_EtaIntercalibration_Stat244: 1.767454313412372e-26 - syst_JES_EtaIntercalibration_Stat245: 2.1513490535010816e-33 + syst_JES_EtaIntercalibration_Stat243: 1.06495129e-26 + syst_JES_EtaIntercalibration_Stat244: 1.76745431e-26 + syst_JES_EtaIntercalibration_Stat245: 2.15134905e-33 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 - syst_JES_EtaIntercalibration_Stat27: 2.1637611883015186e-05 - syst_JES_EtaIntercalibration_Stat28: 0.0022791595353331452 - syst_JES_EtaIntercalibration_Stat29: 0.0013316008223187607 + syst_JES_EtaIntercalibration_Stat27: 2.16376119e-05 + syst_JES_EtaIntercalibration_Stat28: 2.27915954e-03 + syst_JES_EtaIntercalibration_Stat29: 1.33160082e-03 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 0.0013702667869798203 - syst_JES_EtaIntercalibration_Stat31: 3.630378492664367e-06 + syst_JES_EtaIntercalibration_Stat30: 1.37026679e-03 + syst_JES_EtaIntercalibration_Stat31: 3.63037849e-06 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 - syst_JES_EtaIntercalibration_Stat34: 2.15986735703839e-07 - syst_JES_EtaIntercalibration_Stat35: 0.0023437433199904804 - syst_JES_EtaIntercalibration_Stat36: 0.0016769033089298858 - syst_JES_EtaIntercalibration_Stat37: 0.001416942437080632 - syst_JES_EtaIntercalibration_Stat38: 4.691462112177823e-05 + syst_JES_EtaIntercalibration_Stat34: 2.15986736e-07 + syst_JES_EtaIntercalibration_Stat35: 2.34374332e-03 + syst_JES_EtaIntercalibration_Stat36: 1.67690331e-03 + syst_JES_EtaIntercalibration_Stat37: 1.41694244e-03 + syst_JES_EtaIntercalibration_Stat38: 4.69146211e-05 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 syst_JES_EtaIntercalibration_Stat40: 0.0 @@ -25141,21 +25141,21 @@ bins: syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 syst_JES_EtaIntercalibration_Stat47: 0.0 - syst_JES_EtaIntercalibration_Stat48: 1.3094304105220711e-05 - syst_JES_EtaIntercalibration_Stat49: 0.00010929693259648232 - syst_JES_EtaIntercalibration_Stat5: 1.209491078925347e-05 - syst_JES_EtaIntercalibration_Stat50: 0.0015240787405839634 - syst_JES_EtaIntercalibration_Stat51: 0.004136832967379756 - syst_JES_EtaIntercalibration_Stat52: 0.0039554465446394295 - syst_JES_EtaIntercalibration_Stat53: 5.45650932373436e-05 - syst_JES_EtaIntercalibration_Stat54: 3.9456117396419025e-05 + syst_JES_EtaIntercalibration_Stat48: 1.30943041e-05 + syst_JES_EtaIntercalibration_Stat49: 1.09296933e-04 + syst_JES_EtaIntercalibration_Stat5: 1.20949108e-05 + syst_JES_EtaIntercalibration_Stat50: 1.52407874e-03 + syst_JES_EtaIntercalibration_Stat51: 4.13683297e-03 + syst_JES_EtaIntercalibration_Stat52: 3.95544654e-03 + syst_JES_EtaIntercalibration_Stat53: 5.45650932e-05 + syst_JES_EtaIntercalibration_Stat54: 3.94561174e-05 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 2.13647934696313e-06 - syst_JES_EtaIntercalibration_Stat57: 0.002185812771030492 - syst_JES_EtaIntercalibration_Stat58: 0.005236251211506186 - syst_JES_EtaIntercalibration_Stat59: 0.0026456902218513793 - syst_JES_EtaIntercalibration_Stat6: 2.4021353349676202e-05 - syst_JES_EtaIntercalibration_Stat60: 0.00023091219516301 + syst_JES_EtaIntercalibration_Stat56: 2.13647935e-06 + syst_JES_EtaIntercalibration_Stat57: 2.18581277e-03 + syst_JES_EtaIntercalibration_Stat58: 5.23625121e-03 + syst_JES_EtaIntercalibration_Stat59: 2.64569022e-03 + syst_JES_EtaIntercalibration_Stat6: 2.40213533e-05 + syst_JES_EtaIntercalibration_Stat60: 2.30912195e-04 syst_JES_EtaIntercalibration_Stat61: 0.0 syst_JES_EtaIntercalibration_Stat62: 0.0 syst_JES_EtaIntercalibration_Stat63: 0.0 @@ -25165,21 +25165,21 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 0.0001633595650704298 - syst_JES_EtaIntercalibration_Stat70: 1.209491078925347e-05 - syst_JES_EtaIntercalibration_Stat71: 0.0003851579805742054 - syst_JES_EtaIntercalibration_Stat72: 0.001989101995876531 - syst_JES_EtaIntercalibration_Stat73: 0.013986287105590247 - syst_JES_EtaIntercalibration_Stat74: 0.007957837394669483 - syst_JES_EtaIntercalibration_Stat75: 0.00041610692135555735 - syst_JES_EtaIntercalibration_Stat76: 3.9456117396419025e-05 + syst_JES_EtaIntercalibration_Stat7: 1.63359565e-04 + syst_JES_EtaIntercalibration_Stat70: 1.20949108e-05 + syst_JES_EtaIntercalibration_Stat71: 3.85157981e-04 + syst_JES_EtaIntercalibration_Stat72: 1.98910200e-03 + syst_JES_EtaIntercalibration_Stat73: 1.39862871e-02 + syst_JES_EtaIntercalibration_Stat74: 7.95783739e-03 + syst_JES_EtaIntercalibration_Stat75: 4.16106921e-04 + syst_JES_EtaIntercalibration_Stat76: 3.94561174e-05 syst_JES_EtaIntercalibration_Stat77: 0.0 - syst_JES_EtaIntercalibration_Stat78: 0.0004097228697546672 - syst_JES_EtaIntercalibration_Stat79: 0.004900506172835619 - syst_JES_EtaIntercalibration_Stat8: 4.865023329851564e-05 - syst_JES_EtaIntercalibration_Stat80: 0.0032075514025499264 - syst_JES_EtaIntercalibration_Stat81: 0.003982676019964466 - syst_JES_EtaIntercalibration_Stat82: 0.00029942680240753336 + syst_JES_EtaIntercalibration_Stat78: 4.09722870e-04 + syst_JES_EtaIntercalibration_Stat79: 4.90050617e-03 + syst_JES_EtaIntercalibration_Stat8: 4.86502333e-05 + syst_JES_EtaIntercalibration_Stat80: 3.20755140e-03 + syst_JES_EtaIntercalibration_Stat81: 3.98267602e-03 + syst_JES_EtaIntercalibration_Stat82: 2.99426802e-04 syst_JES_EtaIntercalibration_Stat83: 0.0 syst_JES_EtaIntercalibration_Stat84: 0.0 syst_JES_EtaIntercalibration_Stat85: 0.0 @@ -25189,113 +25189,113 @@ bins: syst_JES_EtaIntercalibration_Stat89: 0.0 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 1.042088368373815e-05 - syst_JES_EtaIntercalibration_Stat92: 0.00042646374532309304 - syst_JES_EtaIntercalibration_Stat93: 0.009896593997431641 - syst_JES_EtaIntercalibration_Stat94: 0.058090207436365726 - syst_JES_EtaIntercalibration_Stat95: 0.03692607886033934 - syst_JES_EtaIntercalibration_Stat96: 0.0006296059779735259 - syst_JES_EtaIntercalibration_Stat97: 3.9456117396419025e-05 + syst_JES_EtaIntercalibration_Stat91: 1.04208837e-05 + syst_JES_EtaIntercalibration_Stat92: 4.26463745e-04 + syst_JES_EtaIntercalibration_Stat93: 9.89659400e-03 + syst_JES_EtaIntercalibration_Stat94: 5.80902074e-02 + syst_JES_EtaIntercalibration_Stat95: 3.69260789e-02 + syst_JES_EtaIntercalibration_Stat96: 6.29605978e-04 + syst_JES_EtaIntercalibration_Stat97: 3.94561174e-05 syst_JES_EtaIntercalibration_Stat98: 0.0 - syst_JES_EtaIntercalibration_Stat99: 0.003561963563822628 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.06669104643803393 - syst_JES_Flavour_Comp: 0.3881973306193643 - syst_JES_Flavour_Response: 9.633023357181274 - syst_JES_Gjet_Generator: 7.572723156170441 - syst_JES_Gjet_OOC: 4.389487754852495 - syst_JES_Gjet_Purity: 1.4425084921760425 - syst_JES_Gjet_Stat1: 3.022428659207691e-11 - syst_JES_Gjet_Stat10: 0.41727958253430036 - syst_JES_Gjet_Stat11: 0.13295111883696203 - syst_JES_Gjet_Stat12: 0.13570035630019547 - syst_JES_Gjet_Stat13: 0.04203814220443144 - syst_JES_Gjet_Stat14: 0.00031159853349301887 - syst_JES_Gjet_Stat15: 0.00016155049883859846 - syst_JES_Gjet_Stat2: 3.167920927043476e-11 - syst_JES_Gjet_Stat3: 2.634449278312262e-19 - syst_JES_Gjet_Stat4: 0.016516379748601085 - syst_JES_Gjet_Stat5: 0.018841035003417408 - syst_JES_Gjet_Stat6: 0.09997959529323971 - syst_JES_Gjet_Stat7: 0.29079292890302544 - syst_JES_Gjet_Stat8: 0.2039141179516514 - syst_JES_Gjet_Stat9: 0.4553739205312487 - syst_JES_Gjet_Veto: 1.7937226652969516 - syst_JES_Gjet_dPhi: 0.5404410675550111 - syst_JES_LArESZee: 7.07083267727359 - syst_JES_LArEsmear: 0.5756035506318563 - syst_JES_LAr_JVT: 0.8794813400521925 - syst_JES_MJB_Alpha: 4.419298560917602e-14 - syst_JES_MJB_Asym: 0.041266196198688 - syst_JES_MJB_Beta: 2.1858481191519234e-14 - syst_JES_MJB_Fragmentation: 0.08324885149357918 - syst_JES_MJB_Stat1: 2.2785128373568583e-11 - syst_JES_MJB_Stat10: 1.4713771610297614e-31 - syst_JES_MJB_Stat11: 1.5943222086740629e-16 - syst_JES_MJB_Stat12: 4.925952496725887e-21 - syst_JES_MJB_Stat13: 2.0386238005085687e-26 - syst_JES_MJB_Stat14: 1.988394327089071e-33 + syst_JES_EtaIntercalibration_Stat99: 3.56196356e-03 + syst_JES_EtaIntercalibration_TotalStat_MJB: 6.66910464e-02 + syst_JES_Flavour_Comp: 3.88197331e-01 + syst_JES_Flavour_Response: 9.63302336e+00 + syst_JES_Gjet_Generator: 7.57272316e+00 + syst_JES_Gjet_OOC: 4.38948775e+00 + syst_JES_Gjet_Purity: 1.44250849e+00 + syst_JES_Gjet_Stat1: 3.02242866e-11 + syst_JES_Gjet_Stat10: 4.17279583e-01 + syst_JES_Gjet_Stat11: 1.32951119e-01 + syst_JES_Gjet_Stat12: 1.35700356e-01 + syst_JES_Gjet_Stat13: 4.20381422e-02 + syst_JES_Gjet_Stat14: 3.11598533e-04 + syst_JES_Gjet_Stat15: 1.61550499e-04 + syst_JES_Gjet_Stat2: 3.16792093e-11 + syst_JES_Gjet_Stat3: 2.63444928e-19 + syst_JES_Gjet_Stat4: 1.65163797e-02 + syst_JES_Gjet_Stat5: 1.88410350e-02 + syst_JES_Gjet_Stat6: 9.99795953e-02 + syst_JES_Gjet_Stat7: 2.90792929e-01 + syst_JES_Gjet_Stat8: 2.03914118e-01 + syst_JES_Gjet_Stat9: 4.55373921e-01 + syst_JES_Gjet_Veto: 1.79372267e+00 + syst_JES_Gjet_dPhi: 5.40441068e-01 + syst_JES_LArESZee: 7.07083268e+00 + syst_JES_LArEsmear: 5.75603551e-01 + syst_JES_LAr_JVT: 8.79481340e-01 + syst_JES_MJB_Alpha: 4.41929856e-14 + syst_JES_MJB_Asym: 4.12661962e-02 + syst_JES_MJB_Beta: 2.18584812e-14 + syst_JES_MJB_Fragmentation: 8.32488515e-02 + syst_JES_MJB_Stat1: 2.27851284e-11 + syst_JES_MJB_Stat10: 1.47137716e-31 + syst_JES_MJB_Stat11: 1.59432221e-16 + syst_JES_MJB_Stat12: 4.92595250e-21 + syst_JES_MJB_Stat13: 2.03862380e-26 + syst_JES_MJB_Stat14: 1.98839433e-33 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 syst_JES_MJB_Stat2: 0.0 - syst_JES_MJB_Stat3: 5.6724663947880727e-14 - syst_JES_MJB_Stat4: 4.135271303070695e-05 + syst_JES_MJB_Stat3: 5.67246639e-14 + syst_JES_MJB_Stat4: 4.13527130e-05 syst_JES_MJB_Stat5: 0.0 - syst_JES_MJB_Stat6: 1.4046932049383594e-39 + syst_JES_MJB_Stat6: 1.40469320e-39 syst_JES_MJB_Stat7: 0.0 syst_JES_MJB_Stat8: 0.0 syst_JES_MJB_Stat9: 0.0 - syst_JES_MJB_Threshold: 0.03513477499454339 - syst_JES_Pileup_MuOffset: 6.993304369180567e-07 - syst_JES_Pileup_NPVOffset: 0.36688296158311845 - syst_JES_Pileup_Pt_term: 1.5521577263603075 - syst_JES_Pileup_Rho_topology: 2.851905152700559 - syst_JES_PunchThrough_MC15: 9.353074360871938e-08 + syst_JES_MJB_Threshold: 3.51347750e-02 + syst_JES_Pileup_MuOffset: 6.99330437e-07 + syst_JES_Pileup_NPVOffset: 3.66882962e-01 + syst_JES_Pileup_Pt_term: 1.55215773e+00 + syst_JES_Pileup_Rho_topology: 2.85190515e+00 + syst_JES_PunchThrough_MC15: 9.35307436e-08 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 6.757421401688665 - syst_JES_Zjet_MuScale: 0.4724855447524294 - syst_JES_Zjet_MuSmearID: 0.07179895316089226 - syst_JES_Zjet_MuSmearMS: 0.6296350847911828 - syst_JES_Zjet_OOC: 2.399876403067458 - syst_JES_Zjet_Stat1: 0.030698981660634932 - syst_JES_Zjet_Stat10: 0.9226794717018473 - syst_JES_Zjet_Stat11: 1.139300385104824 - syst_JES_Zjet_Stat12: 0.244235009775421 - syst_JES_Zjet_Stat13: 0.0872461122342996 - syst_JES_Zjet_Stat2: 0.0006935131433505785 - syst_JES_Zjet_Stat3: 7.030394227922038e-11 - syst_JES_Zjet_Stat4: 1.7900745096224347e-14 - syst_JES_Zjet_Stat5: 0.018498302598418948 - syst_JES_Zjet_Stat6: 0.040364668647221665 - syst_JES_Zjet_Stat7: 0.05230914711596816 - syst_JES_Zjet_Stat8: 0.10520477603226956 - syst_JES_Zjet_Stat9: 0.4173891310276299 - syst_JES_Zjet_Veto: 0.44361274497020486 - syst_JES_Zjet_dPhi: 0.4711285679090157 + syst_JES_Zjet_MC: 6.75742140e+00 + syst_JES_Zjet_MuScale: 4.72485545e-01 + syst_JES_Zjet_MuSmearID: 7.17989532e-02 + syst_JES_Zjet_MuSmearMS: 6.29635085e-01 + syst_JES_Zjet_OOC: 2.39987640e+00 + syst_JES_Zjet_Stat1: 3.06989817e-02 + syst_JES_Zjet_Stat10: 9.22679472e-01 + syst_JES_Zjet_Stat11: 1.13930039e+00 + syst_JES_Zjet_Stat12: 2.44235010e-01 + syst_JES_Zjet_Stat13: 8.72461122e-02 + syst_JES_Zjet_Stat2: 6.93513143e-04 + syst_JES_Zjet_Stat3: 7.03039423e-11 + syst_JES_Zjet_Stat4: 1.79007451e-14 + syst_JES_Zjet_Stat5: 1.84983026e-02 + syst_JES_Zjet_Stat6: 4.03646686e-02 + syst_JES_Zjet_Stat7: 5.23091471e-02 + syst_JES_Zjet_Stat8: 1.05204776e-01 + syst_JES_Zjet_Stat9: 4.17389131e-01 + syst_JES_Zjet_Veto: 4.43612745e-01 + syst_JES_Zjet_dPhi: 4.71128568e-01 syst_PRW: 0.0 syst_Unfolding_bias: 0.39196 - syst_cleaning: 2.035159698893431 + syst_cleaning: 2.03515970e+00 syst_lumi: 7.928 - stat: 1.4126 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 2.4374414864771627 - syst_JER_NP1: 0.2917086388847612 - syst_JER_NP2: 0.3374363051006812 - syst_JER_NP3: 0.5384164071608517 - syst_JER_NP4: 0.08491865637184799 - syst_JER_NP5: 0.28623002987108115 - syst_JER_NP6: 0.06221592963220915 - syst_JER_NP7: 8.356201170388371e-05 - syst_JER_NP8: 0.19877107435439395 - syst_JES_EtaIntercalibration_Modelling: 4.241739383790569 + syst_JER_NP0: 2.43744149e+00 + syst_JER_NP1: 2.91708639e-01 + syst_JER_NP2: 3.37436305e-01 + syst_JER_NP3: 5.38416407e-01 + syst_JER_NP4: 8.49186564e-02 + syst_JER_NP5: 2.86230030e-01 + syst_JER_NP6: 6.22159296e-02 + syst_JER_NP7: 8.35620117e-05 + syst_JER_NP8: 1.98771074e-01 + syst_JES_EtaIntercalibration_Modelling: 4.24173938e+00 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 0.003168051944018595 - syst_JES_EtaIntercalibration_Stat101: 0.00939119006037041 - syst_JES_EtaIntercalibration_Stat102: 0.0031971894168941572 - syst_JES_EtaIntercalibration_Stat103: 0.0018562813815529151 + syst_JES_EtaIntercalibration_Stat100: 3.16805194e-03 + syst_JES_EtaIntercalibration_Stat101: 9.39119006e-03 + syst_JES_EtaIntercalibration_Stat102: 3.19718942e-03 + syst_JES_EtaIntercalibration_Stat103: 1.85628138e-03 syst_JES_EtaIntercalibration_Stat104: 0.0 syst_JES_EtaIntercalibration_Stat105: 0.0 syst_JES_EtaIntercalibration_Stat106: 0.0 @@ -25304,170 +25304,170 @@ bins: syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 syst_JES_EtaIntercalibration_Stat110: 0.0 - syst_JES_EtaIntercalibration_Stat111: 3.293321405511463e-07 - syst_JES_EtaIntercalibration_Stat112: 0.0028058282433311914 - syst_JES_EtaIntercalibration_Stat113: 0.03802695359873046 - syst_JES_EtaIntercalibration_Stat114: 0.11552937061630691 - syst_JES_EtaIntercalibration_Stat115: 0.09074503002919775 - syst_JES_EtaIntercalibration_Stat116: 0.0007732757065617166 + syst_JES_EtaIntercalibration_Stat111: 3.29332141e-07 + syst_JES_EtaIntercalibration_Stat112: 2.80582824e-03 + syst_JES_EtaIntercalibration_Stat113: 3.80269536e-02 + syst_JES_EtaIntercalibration_Stat114: 1.15529371e-01 + syst_JES_EtaIntercalibration_Stat115: 9.07450300e-02 + syst_JES_EtaIntercalibration_Stat116: 7.73275707e-04 syst_JES_EtaIntercalibration_Stat117: 0.0 syst_JES_EtaIntercalibration_Stat118: 0.0 - syst_JES_EtaIntercalibration_Stat119: 0.0010577091531583718 + syst_JES_EtaIntercalibration_Stat119: 1.05770915e-03 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 0.11179678394300974 - syst_JES_EtaIntercalibration_Stat121: 0.1772440337500814 - syst_JES_EtaIntercalibration_Stat122: 0.03616769967802763 - syst_JES_EtaIntercalibration_Stat123: 0.0031210581871378177 + syst_JES_EtaIntercalibration_Stat120: 1.11796784e-01 + syst_JES_EtaIntercalibration_Stat121: 1.77244034e-01 + syst_JES_EtaIntercalibration_Stat122: 3.61676997e-02 + syst_JES_EtaIntercalibration_Stat123: 3.12105819e-03 syst_JES_EtaIntercalibration_Stat124: 0.0 syst_JES_EtaIntercalibration_Stat125: 0.0 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 syst_JES_EtaIntercalibration_Stat128: 0.0 syst_JES_EtaIntercalibration_Stat129: 0.0 - syst_JES_EtaIntercalibration_Stat13: 0.0028071151211104166 + syst_JES_EtaIntercalibration_Stat13: 2.80711512e-03 syst_JES_EtaIntercalibration_Stat130: 0.0 - syst_JES_EtaIntercalibration_Stat131: 0.004602812054331569 - syst_JES_EtaIntercalibration_Stat132: 0.24552490708683714 - syst_JES_EtaIntercalibration_Stat133: 0.711741006265622 - syst_JES_EtaIntercalibration_Stat134: 0.5369095454543531 - syst_JES_EtaIntercalibration_Stat135: 0.00625411553998645 + syst_JES_EtaIntercalibration_Stat131: 4.60281205e-03 + syst_JES_EtaIntercalibration_Stat132: 2.45524907e-01 + syst_JES_EtaIntercalibration_Stat133: 7.11741006e-01 + syst_JES_EtaIntercalibration_Stat134: 5.36909545e-01 + syst_JES_EtaIntercalibration_Stat135: 6.25411554e-03 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 - syst_JES_EtaIntercalibration_Stat138: 0.007212411801887078 - syst_JES_EtaIntercalibration_Stat139: 0.41181021560301295 - syst_JES_EtaIntercalibration_Stat14: 1.2966007982413093e-05 - syst_JES_EtaIntercalibration_Stat140: 0.7917998421318357 - syst_JES_EtaIntercalibration_Stat141: 0.24832017638524662 - syst_JES_EtaIntercalibration_Stat142: 0.00919213897849679 + syst_JES_EtaIntercalibration_Stat138: 7.21241180e-03 + syst_JES_EtaIntercalibration_Stat139: 4.11810216e-01 + syst_JES_EtaIntercalibration_Stat14: 1.29660080e-05 + syst_JES_EtaIntercalibration_Stat140: 7.91799842e-01 + syst_JES_EtaIntercalibration_Stat141: 2.48320176e-01 + syst_JES_EtaIntercalibration_Stat142: 9.19213898e-03 syst_JES_EtaIntercalibration_Stat143: 0.0 syst_JES_EtaIntercalibration_Stat144: 0.0 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 syst_JES_EtaIntercalibration_Stat147: 0.0 syst_JES_EtaIntercalibration_Stat148: 0.0 - syst_JES_EtaIntercalibration_Stat149: 0.0044694593353111515 - syst_JES_EtaIntercalibration_Stat15: 1.26136889827996e-05 - syst_JES_EtaIntercalibration_Stat150: 0.08467130372800456 - syst_JES_EtaIntercalibration_Stat151: 0.3755598701605378 - syst_JES_EtaIntercalibration_Stat152: 0.30200610507074194 - syst_JES_EtaIntercalibration_Stat153: 0.008400337790827224 + syst_JES_EtaIntercalibration_Stat149: 4.46945934e-03 + syst_JES_EtaIntercalibration_Stat15: 1.26136890e-05 + syst_JES_EtaIntercalibration_Stat150: 8.46713037e-02 + syst_JES_EtaIntercalibration_Stat151: 3.75559870e-01 + syst_JES_EtaIntercalibration_Stat152: 3.02006105e-01 + syst_JES_EtaIntercalibration_Stat153: 8.40033779e-03 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 0.00705466369521448 - syst_JES_EtaIntercalibration_Stat157: 0.30667410634091685 - syst_JES_EtaIntercalibration_Stat158: 0.5362705380682403 - syst_JES_EtaIntercalibration_Stat159: 0.09687701894670377 + syst_JES_EtaIntercalibration_Stat156: 7.05466370e-03 + syst_JES_EtaIntercalibration_Stat157: 3.06674106e-01 + syst_JES_EtaIntercalibration_Stat158: 5.36270538e-01 + syst_JES_EtaIntercalibration_Stat159: 9.68770189e-02 syst_JES_EtaIntercalibration_Stat16: 0.0 - syst_JES_EtaIntercalibration_Stat160: 0.007778056384470351 + syst_JES_EtaIntercalibration_Stat160: 7.77805638e-03 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 - syst_JES_EtaIntercalibration_Stat167: 0.0009833182163979267 - syst_JES_EtaIntercalibration_Stat168: 0.03198088296154439 - syst_JES_EtaIntercalibration_Stat169: 0.134786220642171 + syst_JES_EtaIntercalibration_Stat167: 9.83318216e-04 + syst_JES_EtaIntercalibration_Stat168: 3.19808830e-02 + syst_JES_EtaIntercalibration_Stat169: 1.34786221e-01 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 0.08952584249813013 - syst_JES_EtaIntercalibration_Stat171: 0.003449289275705939 + syst_JES_EtaIntercalibration_Stat170: 8.95258425e-02 + syst_JES_EtaIntercalibration_Stat171: 3.44928928e-03 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 - syst_JES_EtaIntercalibration_Stat174: 0.004685676914630372 - syst_JES_EtaIntercalibration_Stat175: 0.10413654341776474 - syst_JES_EtaIntercalibration_Stat176: 0.15220136267458317 - syst_JES_EtaIntercalibration_Stat177: 0.05977724880755219 - syst_JES_EtaIntercalibration_Stat178: 0.004473474823892497 + syst_JES_EtaIntercalibration_Stat174: 4.68567691e-03 + syst_JES_EtaIntercalibration_Stat175: 1.04136543e-01 + syst_JES_EtaIntercalibration_Stat176: 1.52201363e-01 + syst_JES_EtaIntercalibration_Stat177: 5.97772488e-02 + syst_JES_EtaIntercalibration_Stat178: 4.47347482e-03 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 syst_JES_EtaIntercalibration_Stat180: 0.0 syst_JES_EtaIntercalibration_Stat181: 0.0 syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 - syst_JES_EtaIntercalibration_Stat184: 0.0005255149189128697 - syst_JES_EtaIntercalibration_Stat185: 0.021468993339232283 - syst_JES_EtaIntercalibration_Stat186: 0.08635620244082066 - syst_JES_EtaIntercalibration_Stat187: 0.04640395672784811 - syst_JES_EtaIntercalibration_Stat188: 0.000147310921183733 + syst_JES_EtaIntercalibration_Stat184: 5.25514919e-04 + syst_JES_EtaIntercalibration_Stat185: 2.14689933e-02 + syst_JES_EtaIntercalibration_Stat186: 8.63562024e-02 + syst_JES_EtaIntercalibration_Stat187: 4.64039567e-02 + syst_JES_EtaIntercalibration_Stat188: 1.47310921e-04 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 - syst_JES_EtaIntercalibration_Stat191: 0.0020425016596504887 - syst_JES_EtaIntercalibration_Stat192: 0.04464672698810071 - syst_JES_EtaIntercalibration_Stat193: 0.0861713773535041 - syst_JES_EtaIntercalibration_Stat194: 0.017650957481111326 - syst_JES_EtaIntercalibration_Stat195: 0.0013570618077302153 - syst_JES_EtaIntercalibration_Stat196: 4.809293905880266e-06 + syst_JES_EtaIntercalibration_Stat191: 2.04250166e-03 + syst_JES_EtaIntercalibration_Stat192: 4.46467270e-02 + syst_JES_EtaIntercalibration_Stat193: 8.61713774e-02 + syst_JES_EtaIntercalibration_Stat194: 1.76509575e-02 + syst_JES_EtaIntercalibration_Stat195: 1.35706181e-03 + syst_JES_EtaIntercalibration_Stat196: 4.80929391e-06 syst_JES_EtaIntercalibration_Stat197: 0.0 syst_JES_EtaIntercalibration_Stat198: 0.0 - syst_JES_EtaIntercalibration_Stat199: 0.00041889648781053294 + syst_JES_EtaIntercalibration_Stat199: 4.18896488e-04 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 0.006444905895356425 - syst_JES_EtaIntercalibration_Stat201: 0.022562732547278044 - syst_JES_EtaIntercalibration_Stat202: 0.0183275994063598 - syst_JES_EtaIntercalibration_Stat203: 0.0002613584895789689 + syst_JES_EtaIntercalibration_Stat200: 6.44490590e-03 + syst_JES_EtaIntercalibration_Stat201: 2.25627325e-02 + syst_JES_EtaIntercalibration_Stat202: 1.83275994e-02 + syst_JES_EtaIntercalibration_Stat203: 2.61358490e-04 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 - syst_JES_EtaIntercalibration_Stat206: 0.0001730606252155585 - syst_JES_EtaIntercalibration_Stat207: 0.01644483733577198 - syst_JES_EtaIntercalibration_Stat208: 0.028863029553392348 - syst_JES_EtaIntercalibration_Stat209: 0.007628583141711179 + syst_JES_EtaIntercalibration_Stat206: 1.73060625e-04 + syst_JES_EtaIntercalibration_Stat207: 1.64448373e-02 + syst_JES_EtaIntercalibration_Stat208: 2.88630296e-02 + syst_JES_EtaIntercalibration_Stat209: 7.62858314e-03 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 0.00018788953581493035 - syst_JES_EtaIntercalibration_Stat211: 7.655221165733881e-10 - syst_JES_EtaIntercalibration_Stat212: 3.8130011801729097e-07 - syst_JES_EtaIntercalibration_Stat213: 6.594831669572773e-05 - syst_JES_EtaIntercalibration_Stat214: 2.6002875379465248e-05 - syst_JES_EtaIntercalibration_Stat215: 3.97006939485949e-05 - syst_JES_EtaIntercalibration_Stat216: 4.999795487817477e-09 + syst_JES_EtaIntercalibration_Stat210: 1.87889536e-04 + syst_JES_EtaIntercalibration_Stat211: 7.65522117e-10 + syst_JES_EtaIntercalibration_Stat212: 3.81300118e-07 + syst_JES_EtaIntercalibration_Stat213: 6.59483167e-05 + syst_JES_EtaIntercalibration_Stat214: 2.60028754e-05 + syst_JES_EtaIntercalibration_Stat215: 3.97006939e-05 + syst_JES_EtaIntercalibration_Stat216: 4.99979549e-09 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 - syst_JES_EtaIntercalibration_Stat219: 2.0583798543261347e-05 + syst_JES_EtaIntercalibration_Stat219: 2.05837985e-05 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 0.00031034115099354775 - syst_JES_EtaIntercalibration_Stat221: 0.0020967746101274213 - syst_JES_EtaIntercalibration_Stat222: 3.9841660356968055e-05 - syst_JES_EtaIntercalibration_Stat223: 4.6981878155305795e-06 - syst_JES_EtaIntercalibration_Stat224: 1.5709700824649717e-14 - syst_JES_EtaIntercalibration_Stat225: 2.2675089305226567e-09 - syst_JES_EtaIntercalibration_Stat226: 1.3275070471518801e-07 - syst_JES_EtaIntercalibration_Stat227: 8.302587382056893e-08 - syst_JES_EtaIntercalibration_Stat228: 6.207670094326857e-10 + syst_JES_EtaIntercalibration_Stat220: 3.10341151e-04 + syst_JES_EtaIntercalibration_Stat221: 2.09677461e-03 + syst_JES_EtaIntercalibration_Stat222: 3.98416604e-05 + syst_JES_EtaIntercalibration_Stat223: 4.69818782e-06 + syst_JES_EtaIntercalibration_Stat224: 1.57097008e-14 + syst_JES_EtaIntercalibration_Stat225: 2.26750893e-09 + syst_JES_EtaIntercalibration_Stat226: 1.32750705e-07 + syst_JES_EtaIntercalibration_Stat227: 8.30258738e-08 + syst_JES_EtaIntercalibration_Stat228: 6.20767009e-10 syst_JES_EtaIntercalibration_Stat229: 0.0 syst_JES_EtaIntercalibration_Stat23: 0.0 syst_JES_EtaIntercalibration_Stat230: 0.0 - syst_JES_EtaIntercalibration_Stat231: 5.062784510523828e-09 - syst_JES_EtaIntercalibration_Stat232: 1.490636774905275e-07 - syst_JES_EtaIntercalibration_Stat233: 1.6974099931149124e-07 - syst_JES_EtaIntercalibration_Stat234: 1.9277726877635427e-11 - syst_JES_EtaIntercalibration_Stat235: 8.87762641419428e-25 - syst_JES_EtaIntercalibration_Stat236: 4.2660223379620783e-20 - syst_JES_EtaIntercalibration_Stat237: 1.0153004333693549e-19 - syst_JES_EtaIntercalibration_Stat238: 8.950827671226835e-20 - syst_JES_EtaIntercalibration_Stat239: 2.9167735599459893e-39 + syst_JES_EtaIntercalibration_Stat231: 5.06278451e-09 + syst_JES_EtaIntercalibration_Stat232: 1.49063677e-07 + syst_JES_EtaIntercalibration_Stat233: 1.69740999e-07 + syst_JES_EtaIntercalibration_Stat234: 1.92777269e-11 + syst_JES_EtaIntercalibration_Stat235: 8.87762641e-25 + syst_JES_EtaIntercalibration_Stat236: 4.26602234e-20 + syst_JES_EtaIntercalibration_Stat237: 1.01530043e-19 + syst_JES_EtaIntercalibration_Stat238: 8.95082767e-20 + syst_JES_EtaIntercalibration_Stat239: 2.91677356e-39 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 - syst_JES_EtaIntercalibration_Stat243: 4.369071725863536e-20 - syst_JES_EtaIntercalibration_Stat244: 7.251807826328549e-20 - syst_JES_EtaIntercalibration_Stat245: 3.8381071832349863e-25 + syst_JES_EtaIntercalibration_Stat243: 4.36907173e-20 + syst_JES_EtaIntercalibration_Stat244: 7.25180783e-20 + syst_JES_EtaIntercalibration_Stat245: 3.83810718e-25 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 - syst_JES_EtaIntercalibration_Stat27: 1.924318809345271e-06 - syst_JES_EtaIntercalibration_Stat28: 0.0012921541044608417 - syst_JES_EtaIntercalibration_Stat29: 0.0003879704209086048 + syst_JES_EtaIntercalibration_Stat27: 1.92431881e-06 + syst_JES_EtaIntercalibration_Stat28: 1.29215410e-03 + syst_JES_EtaIntercalibration_Stat29: 3.87970421e-04 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 0.00041750538619280114 - syst_JES_EtaIntercalibration_Stat31: 2.9211036869649116e-07 + syst_JES_EtaIntercalibration_Stat30: 4.17505386e-04 + syst_JES_EtaIntercalibration_Stat31: 2.92110369e-07 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 - syst_JES_EtaIntercalibration_Stat34: 1.551917523581714e-08 - syst_JES_EtaIntercalibration_Stat35: 0.001985923263245587 - syst_JES_EtaIntercalibration_Stat36: 0.0005178854796188053 - syst_JES_EtaIntercalibration_Stat37: 0.0005826444702389271 - syst_JES_EtaIntercalibration_Stat38: 7.434423189965715e-06 + syst_JES_EtaIntercalibration_Stat34: 1.55191752e-08 + syst_JES_EtaIntercalibration_Stat35: 1.98592326e-03 + syst_JES_EtaIntercalibration_Stat36: 5.17885480e-04 + syst_JES_EtaIntercalibration_Stat37: 5.82644470e-04 + syst_JES_EtaIntercalibration_Stat38: 7.43442319e-06 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 syst_JES_EtaIntercalibration_Stat40: 0.0 @@ -25478,21 +25478,21 @@ bins: syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 syst_JES_EtaIntercalibration_Stat47: 0.0 - syst_JES_EtaIntercalibration_Stat48: 1.184116534594463e-06 - syst_JES_EtaIntercalibration_Stat49: 1.337853175800693e-05 - syst_JES_EtaIntercalibration_Stat5: 1.1304229595598278e-06 - syst_JES_EtaIntercalibration_Stat50: 0.0010868533238206524 - syst_JES_EtaIntercalibration_Stat51: 0.001220659587067582 - syst_JES_EtaIntercalibration_Stat52: 0.0015385739200636413 - syst_JES_EtaIntercalibration_Stat53: 8.071998389494389e-06 - syst_JES_EtaIntercalibration_Stat54: 6.018876556301849e-06 + syst_JES_EtaIntercalibration_Stat48: 1.18411653e-06 + syst_JES_EtaIntercalibration_Stat49: 1.33785318e-05 + syst_JES_EtaIntercalibration_Stat5: 1.13042296e-06 + syst_JES_EtaIntercalibration_Stat50: 1.08685332e-03 + syst_JES_EtaIntercalibration_Stat51: 1.22065959e-03 + syst_JES_EtaIntercalibration_Stat52: 1.53857392e-03 + syst_JES_EtaIntercalibration_Stat53: 8.07199839e-06 + syst_JES_EtaIntercalibration_Stat54: 6.01887656e-06 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 1.7033692692719333e-07 - syst_JES_EtaIntercalibration_Stat57: 0.0013562330183268655 - syst_JES_EtaIntercalibration_Stat58: 0.001308623062611996 - syst_JES_EtaIntercalibration_Stat59: 0.0006969861888875561 - syst_JES_EtaIntercalibration_Stat6: 2.1386478184123727e-06 - syst_JES_EtaIntercalibration_Stat60: 4.24816242627327e-05 + syst_JES_EtaIntercalibration_Stat56: 1.70336927e-07 + syst_JES_EtaIntercalibration_Stat57: 1.35623302e-03 + syst_JES_EtaIntercalibration_Stat58: 1.30862306e-03 + syst_JES_EtaIntercalibration_Stat59: 6.96986189e-04 + syst_JES_EtaIntercalibration_Stat6: 2.13864782e-06 + syst_JES_EtaIntercalibration_Stat60: 4.24816243e-05 syst_JES_EtaIntercalibration_Stat61: 0.0 syst_JES_EtaIntercalibration_Stat62: 0.0 syst_JES_EtaIntercalibration_Stat63: 0.0 @@ -25502,21 +25502,21 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 2.9196254468681423e-05 - syst_JES_EtaIntercalibration_Stat70: 1.1304229595598278e-06 - syst_JES_EtaIntercalibration_Stat71: 6.657639728161926e-05 - syst_JES_EtaIntercalibration_Stat72: 0.0014983250648640967 - syst_JES_EtaIntercalibration_Stat73: 0.0011072365736372691 - syst_JES_EtaIntercalibration_Stat74: 0.0036536698752026022 - syst_JES_EtaIntercalibration_Stat75: 2.0145739003570955e-05 - syst_JES_EtaIntercalibration_Stat76: 6.018876556301849e-06 + syst_JES_EtaIntercalibration_Stat7: 2.91962545e-05 + syst_JES_EtaIntercalibration_Stat70: 1.13042296e-06 + syst_JES_EtaIntercalibration_Stat71: 6.65763973e-05 + syst_JES_EtaIntercalibration_Stat72: 1.49832506e-03 + syst_JES_EtaIntercalibration_Stat73: 1.10723657e-03 + syst_JES_EtaIntercalibration_Stat74: 3.65366988e-03 + syst_JES_EtaIntercalibration_Stat75: 2.01457390e-05 + syst_JES_EtaIntercalibration_Stat76: 6.01887656e-06 syst_JES_EtaIntercalibration_Stat77: 0.0 - syst_JES_EtaIntercalibration_Stat78: 6.957820114806074e-05 - syst_JES_EtaIntercalibration_Stat79: 0.003636404371078662 - syst_JES_EtaIntercalibration_Stat8: 7.19341620858963e-06 - syst_JES_EtaIntercalibration_Stat80: 0.0028366391570836076 - syst_JES_EtaIntercalibration_Stat81: 0.0013107068627271317 - syst_JES_EtaIntercalibration_Stat82: 5.6389052128937226e-05 + syst_JES_EtaIntercalibration_Stat78: 6.95782011e-05 + syst_JES_EtaIntercalibration_Stat79: 3.63640437e-03 + syst_JES_EtaIntercalibration_Stat8: 7.19341621e-06 + syst_JES_EtaIntercalibration_Stat80: 2.83663916e-03 + syst_JES_EtaIntercalibration_Stat81: 1.31070686e-03 + syst_JES_EtaIntercalibration_Stat82: 5.63890521e-05 syst_JES_EtaIntercalibration_Stat83: 0.0 syst_JES_EtaIntercalibration_Stat84: 0.0 syst_JES_EtaIntercalibration_Stat85: 0.0 @@ -25526,113 +25526,113 @@ bins: syst_JES_EtaIntercalibration_Stat89: 0.0 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 9.753178097420347e-07 - syst_JES_EtaIntercalibration_Stat92: 0.0008716608095325842 - syst_JES_EtaIntercalibration_Stat93: 0.00300871107686913 - syst_JES_EtaIntercalibration_Stat94: 0.01305578035775725 - syst_JES_EtaIntercalibration_Stat95: 0.007840817097088797 - syst_JES_EtaIntercalibration_Stat96: 0.00019642445589844457 - syst_JES_EtaIntercalibration_Stat97: 6.018876556301849e-06 + syst_JES_EtaIntercalibration_Stat91: 9.75317810e-07 + syst_JES_EtaIntercalibration_Stat92: 8.71660810e-04 + syst_JES_EtaIntercalibration_Stat93: 3.00871108e-03 + syst_JES_EtaIntercalibration_Stat94: 1.30557804e-02 + syst_JES_EtaIntercalibration_Stat95: 7.84081710e-03 + syst_JES_EtaIntercalibration_Stat96: 1.96424456e-04 + syst_JES_EtaIntercalibration_Stat97: 6.01887656e-06 syst_JES_EtaIntercalibration_Stat98: 0.0 - syst_JES_EtaIntercalibration_Stat99: 0.002559826879146322 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.03386305631905514 - syst_JES_Flavour_Comp: 0.2656449886596771 - syst_JES_Flavour_Response: 4.925052690073478 - syst_JES_Gjet_Generator: 4.007014288407268 - syst_JES_Gjet_OOC: 2.430389834985326 - syst_JES_Gjet_Purity: 0.7652525204140134 - syst_JES_Gjet_Stat1: 3.02416071001526e-08 - syst_JES_Gjet_Stat10: 0.303744148091778 - syst_JES_Gjet_Stat11: 0.22879407772055638 - syst_JES_Gjet_Stat12: 0.06618350002077558 - syst_JES_Gjet_Stat13: 0.04659774323934583 - syst_JES_Gjet_Stat14: 0.0023471979613999324 - syst_JES_Gjet_Stat15: 0.000883344726975262 - syst_JES_Gjet_Stat2: 3.17051900325483e-08 - syst_JES_Gjet_Stat3: 4.247854605562672e-14 - syst_JES_Gjet_Stat4: 0.00899481376961191 - syst_JES_Gjet_Stat5: 0.009926251596146452 - syst_JES_Gjet_Stat6: 0.03534984337659786 - syst_JES_Gjet_Stat7: 0.11636066861272325 - syst_JES_Gjet_Stat8: 0.07728256255456337 - syst_JES_Gjet_Stat9: 0.21540018570094133 - syst_JES_Gjet_Veto: 1.01163642060772 - syst_JES_Gjet_dPhi: 0.24491992058630102 - syst_JES_LArESZee: 4.137858232225943 - syst_JES_LArEsmear: 0.3410429005271917 - syst_JES_LAr_JVT: 0.5161032648608223 - syst_JES_MJB_Alpha: 4.527112196757664e-10 - syst_JES_MJB_Asym: 0.030193343463927606 - syst_JES_MJB_Beta: 2.2395416941865584e-10 - syst_JES_MJB_Fragmentation: 0.04478389972970197 - syst_JES_MJB_Stat1: 2.280244888164427e-08 - syst_JES_MJB_Stat10: 2.6240569734668493e-23 - syst_JES_MJB_Stat11: 1.633697763017e-12 - syst_JES_MJB_Stat12: 7.942318978107088e-16 - syst_JES_MJB_Stat13: 8.362341298942539e-20 - syst_JES_MJB_Stat14: 3.546374028497276e-25 - syst_JES_MJB_Stat15: 5.601586293185172e-39 + syst_JES_EtaIntercalibration_Stat99: 2.55982688e-03 + syst_JES_EtaIntercalibration_TotalStat_MJB: 3.38630563e-02 + syst_JES_Flavour_Comp: 2.65644989e-01 + syst_JES_Flavour_Response: 4.92505269e+00 + syst_JES_Gjet_Generator: 4.00701429e+00 + syst_JES_Gjet_OOC: 2.43038983e+00 + syst_JES_Gjet_Purity: 7.65252520e-01 + syst_JES_Gjet_Stat1: 3.02416071e-08 + syst_JES_Gjet_Stat10: 3.03744148e-01 + syst_JES_Gjet_Stat11: 2.28794078e-01 + syst_JES_Gjet_Stat12: 6.61835000e-02 + syst_JES_Gjet_Stat13: 4.65977432e-02 + syst_JES_Gjet_Stat14: 2.34719796e-03 + syst_JES_Gjet_Stat15: 8.83344727e-04 + syst_JES_Gjet_Stat2: 3.17051900e-08 + syst_JES_Gjet_Stat3: 4.24785461e-14 + syst_JES_Gjet_Stat4: 8.99481377e-03 + syst_JES_Gjet_Stat5: 9.92625160e-03 + syst_JES_Gjet_Stat6: 3.53498434e-02 + syst_JES_Gjet_Stat7: 1.16360669e-01 + syst_JES_Gjet_Stat8: 7.72825626e-02 + syst_JES_Gjet_Stat9: 2.15400186e-01 + syst_JES_Gjet_Veto: 1.01163642e+00 + syst_JES_Gjet_dPhi: 2.44919921e-01 + syst_JES_LArESZee: 4.13785823e+00 + syst_JES_LArEsmear: 3.41042901e-01 + syst_JES_LAr_JVT: 5.16103265e-01 + syst_JES_MJB_Alpha: 4.52711220e-10 + syst_JES_MJB_Asym: 3.01933435e-02 + syst_JES_MJB_Beta: 2.23954169e-10 + syst_JES_MJB_Fragmentation: 4.47838997e-02 + syst_JES_MJB_Stat1: 2.28024489e-08 + syst_JES_MJB_Stat10: 2.62405697e-23 + syst_JES_MJB_Stat11: 1.63369776e-12 + syst_JES_MJB_Stat12: 7.94231898e-16 + syst_JES_MJB_Stat13: 8.36234130e-20 + syst_JES_MJB_Stat14: 3.54637403e-25 + syst_JES_MJB_Stat15: 5.60158629e-39 syst_JES_MJB_Stat16: 0.0 syst_JES_MJB_Stat2: 0.0 - syst_JES_MJB_Stat3: 5.811896484797368e-10 - syst_JES_MJB_Stat4: 1.5804963619066004e-05 - syst_JES_MJB_Stat5: 5.730490096841631e-37 - syst_JES_MJB_Stat6: 1.9736718643942333e-29 - syst_JES_MJB_Stat7: 4.236596275313474e-37 - syst_JES_MJB_Stat8: 3.982850832004634e-37 + syst_JES_MJB_Stat3: 5.81189648e-10 + syst_JES_MJB_Stat4: 1.58049636e-05 + syst_JES_MJB_Stat5: 5.73049010e-37 + syst_JES_MJB_Stat6: 1.97367186e-29 + syst_JES_MJB_Stat7: 4.23659628e-37 + syst_JES_MJB_Stat8: 3.98285083e-37 syst_JES_MJB_Stat9: 0.0 - syst_JES_MJB_Threshold: 0.027011881677711756 - syst_JES_Pileup_MuOffset: 0.00010074236745282493 - syst_JES_Pileup_NPVOffset: 0.16473211587301367 - syst_JES_Pileup_Pt_term: 0.8163714274152423 - syst_JES_Pileup_Rho_topology: 1.445085875475918 - syst_JES_PunchThrough_MC15: 1.3432054012696643e-05 + syst_JES_MJB_Threshold: 2.70118817e-02 + syst_JES_Pileup_MuOffset: 1.00742367e-04 + syst_JES_Pileup_NPVOffset: 1.64732116e-01 + syst_JES_Pileup_Pt_term: 8.16371427e-01 + syst_JES_Pileup_Rho_topology: 1.44508588e+00 + syst_JES_PunchThrough_MC15: 1.34320540e-05 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 3.6735360009124722 - syst_JES_Zjet_MuScale: 0.2430382840212628 - syst_JES_Zjet_MuSmearID: 0.03929531396998884 - syst_JES_Zjet_MuSmearMS: 0.40110039890281834 - syst_JES_Zjet_OOC: 1.2596370697546178 - syst_JES_Zjet_Stat1: 0.017231076576929252 - syst_JES_Zjet_Stat10: 0.4208349914158755 - syst_JES_Zjet_Stat11: 0.6851267236796416 - syst_JES_Zjet_Stat12: 0.4478249295204545 - syst_JES_Zjet_Stat13: 0.05848667540559986 - syst_JES_Zjet_Stat2: 0.0003958602120698669 - syst_JES_Zjet_Stat3: 7.034724354800035e-08 - syst_JES_Zjet_Stat4: 1.8342418052153493e-10 - syst_JES_Zjet_Stat5: 0.010266704725267995 - syst_JES_Zjet_Stat6: 0.018255264993968182 - syst_JES_Zjet_Stat7: 0.021343223749002865 - syst_JES_Zjet_Stat8: 0.036626360384291526 - syst_JES_Zjet_Stat9: 0.16251636071485231 - syst_JES_Zjet_Veto: 0.22965164924293488 - syst_JES_Zjet_dPhi: 0.23163710302971757 + syst_JES_Zjet_MC: 3.67353600e+00 + syst_JES_Zjet_MuScale: 2.43038284e-01 + syst_JES_Zjet_MuSmearID: 3.92953140e-02 + syst_JES_Zjet_MuSmearMS: 4.01100399e-01 + syst_JES_Zjet_OOC: 1.25963707e+00 + syst_JES_Zjet_Stat1: 1.72310766e-02 + syst_JES_Zjet_Stat10: 4.20834991e-01 + syst_JES_Zjet_Stat11: 6.85126724e-01 + syst_JES_Zjet_Stat12: 4.47824930e-01 + syst_JES_Zjet_Stat13: 5.84866754e-02 + syst_JES_Zjet_Stat2: 3.95860212e-04 + syst_JES_Zjet_Stat3: 7.03472435e-08 + syst_JES_Zjet_Stat4: 1.83424181e-10 + syst_JES_Zjet_Stat5: 1.02667047e-02 + syst_JES_Zjet_Stat6: 1.82552650e-02 + syst_JES_Zjet_Stat7: 2.13432237e-02 + syst_JES_Zjet_Stat8: 3.66263604e-02 + syst_JES_Zjet_Stat9: 1.62516361e-01 + syst_JES_Zjet_Veto: 2.29651649e-01 + syst_JES_Zjet_dPhi: 2.31637103e-01 syst_PRW: 0.0 syst_Unfolding_bias: 0.2179 - syst_cleaning: 1.1358789196036698 + syst_cleaning: 1.13587892e+00 syst_lumi: 4.45 - stat: 0.8121 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 1.1258842424956486 - syst_JER_NP1: 0.10078550292576806 - syst_JER_NP2: 0.1500522575638234 - syst_JER_NP3: 0.23711849358495848 - syst_JER_NP4: 0.06622075429953966 - syst_JER_NP5: 0.125201314190387 - syst_JER_NP6: 0.012755300858858643 - syst_JER_NP7: 6.883663032862663e-06 - syst_JER_NP8: 0.09087054239411141 - syst_JES_EtaIntercalibration_Modelling: 2.286290171872328 + syst_JER_NP0: 1.12588424e+00 + syst_JER_NP1: 1.00785503e-01 + syst_JER_NP2: 1.50052258e-01 + syst_JER_NP3: 2.37118494e-01 + syst_JER_NP4: 6.62207543e-02 + syst_JER_NP5: 1.25201314e-01 + syst_JER_NP6: 1.27553009e-02 + syst_JER_NP7: 6.88366303e-06 + syst_JER_NP8: 9.08705424e-02 + syst_JES_EtaIntercalibration_Modelling: 2.28629017e+00 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 0.0012452031315010415 - syst_JES_EtaIntercalibration_Stat101: 0.0022986198184997884 - syst_JES_EtaIntercalibration_Stat102: 0.0005192645255551355 - syst_JES_EtaIntercalibration_Stat103: 0.0006404633225251857 + syst_JES_EtaIntercalibration_Stat100: 1.24520313e-03 + syst_JES_EtaIntercalibration_Stat101: 2.29861982e-03 + syst_JES_EtaIntercalibration_Stat102: 5.19264526e-04 + syst_JES_EtaIntercalibration_Stat103: 6.40463323e-04 syst_JES_EtaIntercalibration_Stat104: 0.0 syst_JES_EtaIntercalibration_Stat105: 0.0 syst_JES_EtaIntercalibration_Stat106: 0.0 @@ -25641,170 +25641,170 @@ bins: syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 syst_JES_EtaIntercalibration_Stat110: 0.0 - syst_JES_EtaIntercalibration_Stat111: 2.728846047324766e-08 - syst_JES_EtaIntercalibration_Stat112: 0.0011912684584089348 - syst_JES_EtaIntercalibration_Stat113: 0.012254115512757336 - syst_JES_EtaIntercalibration_Stat114: 0.03674598345397766 - syst_JES_EtaIntercalibration_Stat115: 0.02666700348745618 - syst_JES_EtaIntercalibration_Stat116: 7.412850208973266e-05 + syst_JES_EtaIntercalibration_Stat111: 2.72884605e-08 + syst_JES_EtaIntercalibration_Stat112: 1.19126846e-03 + syst_JES_EtaIntercalibration_Stat113: 1.22541155e-02 + syst_JES_EtaIntercalibration_Stat114: 3.67459835e-02 + syst_JES_EtaIntercalibration_Stat115: 2.66670035e-02 + syst_JES_EtaIntercalibration_Stat116: 7.41285021e-05 syst_JES_EtaIntercalibration_Stat117: 0.0 syst_JES_EtaIntercalibration_Stat118: 0.0 - syst_JES_EtaIntercalibration_Stat119: 0.0010799720209834142 + syst_JES_EtaIntercalibration_Stat119: 1.07997202e-03 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 0.032319741258246486 - syst_JES_EtaIntercalibration_Stat121: 0.05300667222152321 - syst_JES_EtaIntercalibration_Stat122: 0.00932776911967701 - syst_JES_EtaIntercalibration_Stat123: 0.000547566187780071 + syst_JES_EtaIntercalibration_Stat120: 3.23197413e-02 + syst_JES_EtaIntercalibration_Stat121: 5.30066722e-02 + syst_JES_EtaIntercalibration_Stat122: 9.32776912e-03 + syst_JES_EtaIntercalibration_Stat123: 5.47566188e-04 syst_JES_EtaIntercalibration_Stat124: 0.0 syst_JES_EtaIntercalibration_Stat125: 0.0 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 syst_JES_EtaIntercalibration_Stat128: 0.0 syst_JES_EtaIntercalibration_Stat129: 0.0 - syst_JES_EtaIntercalibration_Stat13: 0.0015766876818606363 + syst_JES_EtaIntercalibration_Stat13: 1.57668768e-03 syst_JES_EtaIntercalibration_Stat130: 0.0 - syst_JES_EtaIntercalibration_Stat131: 0.002275872744684992 - syst_JES_EtaIntercalibration_Stat132: 0.09732666746580815 - syst_JES_EtaIntercalibration_Stat133: 0.26596072548404587 - syst_JES_EtaIntercalibration_Stat134: 0.19806584763658777 - syst_JES_EtaIntercalibration_Stat135: 0.0026738002917196337 + syst_JES_EtaIntercalibration_Stat131: 2.27587274e-03 + syst_JES_EtaIntercalibration_Stat132: 9.73266675e-02 + syst_JES_EtaIntercalibration_Stat133: 2.65960725e-01 + syst_JES_EtaIntercalibration_Stat134: 1.98065848e-01 + syst_JES_EtaIntercalibration_Stat135: 2.67380029e-03 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 - syst_JES_EtaIntercalibration_Stat138: 0.003595681090906144 - syst_JES_EtaIntercalibration_Stat139: 0.14469444080544352 - syst_JES_EtaIntercalibration_Stat14: 1.4189999999999999e-06 - syst_JES_EtaIntercalibration_Stat140: 0.29607225469469445 - syst_JES_EtaIntercalibration_Stat141: 0.08673522165187565 - syst_JES_EtaIntercalibration_Stat142: 0.003402427368805982 + syst_JES_EtaIntercalibration_Stat138: 3.59568109e-03 + syst_JES_EtaIntercalibration_Stat139: 1.44694441e-01 + syst_JES_EtaIntercalibration_Stat14: 1.41900000e-06 + syst_JES_EtaIntercalibration_Stat140: 2.96072255e-01 + syst_JES_EtaIntercalibration_Stat141: 8.67352217e-02 + syst_JES_EtaIntercalibration_Stat142: 3.40242737e-03 syst_JES_EtaIntercalibration_Stat143: 0.0 syst_JES_EtaIntercalibration_Stat144: 0.0 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 syst_JES_EtaIntercalibration_Stat147: 0.0 syst_JES_EtaIntercalibration_Stat148: 0.0 - syst_JES_EtaIntercalibration_Stat149: 0.0033405891875535965 - syst_JES_EtaIntercalibration_Stat15: 1.3740433134003408e-06 - syst_JES_EtaIntercalibration_Stat150: 0.05181429990842296 - syst_JES_EtaIntercalibration_Stat151: 0.21534755628982652 - syst_JES_EtaIntercalibration_Stat152: 0.1519080513830653 - syst_JES_EtaIntercalibration_Stat153: 0.004273724458829792 + syst_JES_EtaIntercalibration_Stat149: 3.34058919e-03 + syst_JES_EtaIntercalibration_Stat15: 1.37404331e-06 + syst_JES_EtaIntercalibration_Stat150: 5.18142999e-02 + syst_JES_EtaIntercalibration_Stat151: 2.15347556e-01 + syst_JES_EtaIntercalibration_Stat152: 1.51908051e-01 + syst_JES_EtaIntercalibration_Stat153: 4.27372446e-03 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 0.004737160674588365 - syst_JES_EtaIntercalibration_Stat157: 0.14910734388352573 - syst_JES_EtaIntercalibration_Stat158: 0.2747093555014099 - syst_JES_EtaIntercalibration_Stat159: 0.05268651440359288 + syst_JES_EtaIntercalibration_Stat156: 4.73716067e-03 + syst_JES_EtaIntercalibration_Stat157: 1.49107344e-01 + syst_JES_EtaIntercalibration_Stat158: 2.74709356e-01 + syst_JES_EtaIntercalibration_Stat159: 5.26865144e-02 syst_JES_EtaIntercalibration_Stat16: 0.0 - syst_JES_EtaIntercalibration_Stat160: 0.0037553581813190603 + syst_JES_EtaIntercalibration_Stat160: 3.75535818e-03 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 - syst_JES_EtaIntercalibration_Stat167: 0.0017535239938692028 - syst_JES_EtaIntercalibration_Stat168: 0.04514346907361019 - syst_JES_EtaIntercalibration_Stat169: 0.14240112359107285 + syst_JES_EtaIntercalibration_Stat167: 1.75352399e-03 + syst_JES_EtaIntercalibration_Stat168: 4.51434691e-02 + syst_JES_EtaIntercalibration_Stat169: 1.42401124e-01 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 0.09865823166365796 - syst_JES_EtaIntercalibration_Stat171: 0.0030421835496892684 + syst_JES_EtaIntercalibration_Stat170: 9.86582317e-02 + syst_JES_EtaIntercalibration_Stat171: 3.04218355e-03 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 - syst_JES_EtaIntercalibration_Stat174: 0.003992322499347967 - syst_JES_EtaIntercalibration_Stat175: 0.09689392382910293 - syst_JES_EtaIntercalibration_Stat176: 0.15412644159909747 - syst_JES_EtaIntercalibration_Stat177: 0.049112015912605334 - syst_JES_EtaIntercalibration_Stat178: 0.0030555114968692228 + syst_JES_EtaIntercalibration_Stat174: 3.99232250e-03 + syst_JES_EtaIntercalibration_Stat175: 9.68939238e-02 + syst_JES_EtaIntercalibration_Stat176: 1.54126442e-01 + syst_JES_EtaIntercalibration_Stat177: 4.91120159e-02 + syst_JES_EtaIntercalibration_Stat178: 3.05551150e-03 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 syst_JES_EtaIntercalibration_Stat180: 0.0 syst_JES_EtaIntercalibration_Stat181: 0.0 syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 - syst_JES_EtaIntercalibration_Stat184: 0.0003189991161037911 - syst_JES_EtaIntercalibration_Stat185: 0.008280934005291916 - syst_JES_EtaIntercalibration_Stat186: 0.011641956321855877 - syst_JES_EtaIntercalibration_Stat187: 0.013551334805103149 - syst_JES_EtaIntercalibration_Stat188: 8.649861732998972e-05 + syst_JES_EtaIntercalibration_Stat184: 3.18999116e-04 + syst_JES_EtaIntercalibration_Stat185: 8.28093401e-03 + syst_JES_EtaIntercalibration_Stat186: 1.16419563e-02 + syst_JES_EtaIntercalibration_Stat187: 1.35513348e-02 + syst_JES_EtaIntercalibration_Stat188: 8.64986173e-05 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 - syst_JES_EtaIntercalibration_Stat191: 0.0015002795764456703 - syst_JES_EtaIntercalibration_Stat192: 0.017143388463194784 - syst_JES_EtaIntercalibration_Stat193: 0.005499807112072205 - syst_JES_EtaIntercalibration_Stat194: 0.002273408309581673 - syst_JES_EtaIntercalibration_Stat195: 0.0006017144505494247 - syst_JES_EtaIntercalibration_Stat196: 2.171548130543507e-05 + syst_JES_EtaIntercalibration_Stat191: 1.50027958e-03 + syst_JES_EtaIntercalibration_Stat192: 1.71433885e-02 + syst_JES_EtaIntercalibration_Stat193: 5.49980711e-03 + syst_JES_EtaIntercalibration_Stat194: 2.27340831e-03 + syst_JES_EtaIntercalibration_Stat195: 6.01714451e-04 + syst_JES_EtaIntercalibration_Stat196: 2.17154813e-05 syst_JES_EtaIntercalibration_Stat197: 0.0 syst_JES_EtaIntercalibration_Stat198: 0.0 - syst_JES_EtaIntercalibration_Stat199: 0.0003657225280181753 + syst_JES_EtaIntercalibration_Stat199: 3.65722528e-04 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 0.007918676451907856 - syst_JES_EtaIntercalibration_Stat201: 0.022295759686541294 - syst_JES_EtaIntercalibration_Stat202: 0.018404570084628438 - syst_JES_EtaIntercalibration_Stat203: 0.0007216196557051366 + syst_JES_EtaIntercalibration_Stat200: 7.91867645e-03 + syst_JES_EtaIntercalibration_Stat201: 2.22957597e-02 + syst_JES_EtaIntercalibration_Stat202: 1.84045701e-02 + syst_JES_EtaIntercalibration_Stat203: 7.21619656e-04 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 - syst_JES_EtaIntercalibration_Stat206: 0.0002608605901626384 - syst_JES_EtaIntercalibration_Stat207: 0.016861381912524252 - syst_JES_EtaIntercalibration_Stat208: 0.03192438879602866 - syst_JES_EtaIntercalibration_Stat209: 0.010103008017417387 + syst_JES_EtaIntercalibration_Stat206: 2.60860590e-04 + syst_JES_EtaIntercalibration_Stat207: 1.68613819e-02 + syst_JES_EtaIntercalibration_Stat208: 3.19243888e-02 + syst_JES_EtaIntercalibration_Stat209: 1.01030080e-02 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 0.00024998621336985765 - syst_JES_EtaIntercalibration_Stat211: 6.49766563371031e-08 - syst_JES_EtaIntercalibration_Stat212: 6.884069035098354e-06 - syst_JES_EtaIntercalibration_Stat213: 0.00012378318657083442 - syst_JES_EtaIntercalibration_Stat214: 0.0004005209701126771 - syst_JES_EtaIntercalibration_Stat215: 0.0005105420330393962 - syst_JES_EtaIntercalibration_Stat216: 4.2703263048624285e-07 + syst_JES_EtaIntercalibration_Stat210: 2.49986213e-04 + syst_JES_EtaIntercalibration_Stat211: 6.49766563e-08 + syst_JES_EtaIntercalibration_Stat212: 6.88406904e-06 + syst_JES_EtaIntercalibration_Stat213: 1.23783187e-04 + syst_JES_EtaIntercalibration_Stat214: 4.00520970e-04 + syst_JES_EtaIntercalibration_Stat215: 5.10542033e-04 + syst_JES_EtaIntercalibration_Stat216: 4.27032630e-07 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 - syst_JES_EtaIntercalibration_Stat219: 9.228006088684597e-05 + syst_JES_EtaIntercalibration_Stat219: 9.22800609e-05 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 0.0007875032491996462 - syst_JES_EtaIntercalibration_Stat221: 0.0024628604847818725 - syst_JES_EtaIntercalibration_Stat222: 0.00020168031014454533 - syst_JES_EtaIntercalibration_Stat223: 2.1572692808270367e-05 - syst_JES_EtaIntercalibration_Stat224: 6.483932198134093e-11 - syst_JES_EtaIntercalibration_Stat225: 1.8529141237520966e-07 - syst_JES_EtaIntercalibration_Stat226: 2.6837535126898295e-06 - syst_JES_EtaIntercalibration_Stat227: 1.6697728272308384e-06 - syst_JES_EtaIntercalibration_Stat228: 5.2931472679304883e-08 + syst_JES_EtaIntercalibration_Stat220: 7.87503249e-04 + syst_JES_EtaIntercalibration_Stat221: 2.46286048e-03 + syst_JES_EtaIntercalibration_Stat222: 2.01680310e-04 + syst_JES_EtaIntercalibration_Stat223: 2.15726928e-05 + syst_JES_EtaIntercalibration_Stat224: 6.48393220e-11 + syst_JES_EtaIntercalibration_Stat225: 1.85291412e-07 + syst_JES_EtaIntercalibration_Stat226: 2.68375351e-06 + syst_JES_EtaIntercalibration_Stat227: 1.66977283e-06 + syst_JES_EtaIntercalibration_Stat228: 5.29314727e-08 syst_JES_EtaIntercalibration_Stat229: 0.0 syst_JES_EtaIntercalibration_Stat23: 0.0 syst_JES_EtaIntercalibration_Stat230: 0.0 - syst_JES_EtaIntercalibration_Stat231: 4.180304624067485e-07 - syst_JES_EtaIntercalibration_Stat232: 2.7408849679437477e-06 - syst_JES_EtaIntercalibration_Stat233: 3.300419589084709e-06 - syst_JES_EtaIntercalibration_Stat234: 9.42848788393908e-09 - syst_JES_EtaIntercalibration_Stat235: 8.157093278245627e-19 - syst_JES_EtaIntercalibration_Stat236: 2.127651758846397e-15 - syst_JES_EtaIntercalibration_Stat237: 5.06424880905352e-15 - syst_JES_EtaIntercalibration_Stat238: 4.4647023137046885e-15 - syst_JES_EtaIntercalibration_Stat239: 3.8927841900110514e-30 + syst_JES_EtaIntercalibration_Stat231: 4.18030462e-07 + syst_JES_EtaIntercalibration_Stat232: 2.74088497e-06 + syst_JES_EtaIntercalibration_Stat233: 3.30041959e-06 + syst_JES_EtaIntercalibration_Stat234: 9.42848788e-09 + syst_JES_EtaIntercalibration_Stat235: 8.15709328e-19 + syst_JES_EtaIntercalibration_Stat236: 2.12765176e-15 + syst_JES_EtaIntercalibration_Stat237: 5.06424881e-15 + syst_JES_EtaIntercalibration_Stat238: 4.46470231e-15 + syst_JES_EtaIntercalibration_Stat239: 3.89278419e-30 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 - syst_JES_EtaIntercalibration_Stat243: 2.1795431583397173e-15 - syst_JES_EtaIntercalibration_Stat244: 3.617430174861707e-15 - syst_JES_EtaIntercalibration_Stat245: 3.5257888479034023e-19 + syst_JES_EtaIntercalibration_Stat243: 2.17954316e-15 + syst_JES_EtaIntercalibration_Stat244: 3.61743017e-15 + syst_JES_EtaIntercalibration_Stat245: 3.52578885e-19 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 - syst_JES_EtaIntercalibration_Stat27: 1.6959453610007606e-07 - syst_JES_EtaIntercalibration_Stat28: 0.0003083326744329897 - syst_JES_EtaIntercalibration_Stat29: 0.00014374089423333918 + syst_JES_EtaIntercalibration_Stat27: 1.69594536e-07 + syst_JES_EtaIntercalibration_Stat28: 3.08332674e-04 + syst_JES_EtaIntercalibration_Stat29: 1.43740894e-04 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 0.00014291468608928896 - syst_JES_EtaIntercalibration_Stat31: 2.414478825751015e-08 + syst_JES_EtaIntercalibration_Stat30: 1.42914686e-04 + syst_JES_EtaIntercalibration_Stat31: 2.41447883e-08 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 - syst_JES_EtaIntercalibration_Stat34: 1.2233474853858981e-09 - syst_JES_EtaIntercalibration_Stat35: 0.0013901625018950122 - syst_JES_EtaIntercalibration_Stat36: 0.00023662309919997244 - syst_JES_EtaIntercalibration_Stat37: 0.00010724747581178775 - syst_JES_EtaIntercalibration_Stat38: 8.915781559508678e-07 + syst_JES_EtaIntercalibration_Stat34: 1.22334749e-09 + syst_JES_EtaIntercalibration_Stat35: 1.39016250e-03 + syst_JES_EtaIntercalibration_Stat36: 2.36623099e-04 + syst_JES_EtaIntercalibration_Stat37: 1.07247476e-04 + syst_JES_EtaIntercalibration_Stat38: 8.91578156e-07 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 syst_JES_EtaIntercalibration_Stat40: 0.0 @@ -25815,21 +25815,21 @@ bins: syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 syst_JES_EtaIntercalibration_Stat47: 0.0 - syst_JES_EtaIntercalibration_Stat48: 1.0524806732192283e-07 - syst_JES_EtaIntercalibration_Stat49: 1.451774468538416e-06 - syst_JES_EtaIntercalibration_Stat5: 1.0230358094905574e-07 - syst_JES_EtaIntercalibration_Stat50: 0.00043930268571339284 - syst_JES_EtaIntercalibration_Stat51: 0.0007909490043612167 - syst_JES_EtaIntercalibration_Stat52: 0.0005289828352602758 - syst_JES_EtaIntercalibration_Stat53: 9.459977812209708e-07 - syst_JES_EtaIntercalibration_Stat54: 7.11006856507024e-07 + syst_JES_EtaIntercalibration_Stat48: 1.05248067e-07 + syst_JES_EtaIntercalibration_Stat49: 1.45177447e-06 + syst_JES_EtaIntercalibration_Stat5: 1.02303581e-07 + syst_JES_EtaIntercalibration_Stat50: 4.39302686e-04 + syst_JES_EtaIntercalibration_Stat51: 7.90949004e-04 + syst_JES_EtaIntercalibration_Stat52: 5.28982835e-04 + syst_JES_EtaIntercalibration_Stat53: 9.45997781e-07 + syst_JES_EtaIntercalibration_Stat54: 7.11006857e-07 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 1.4027636677288161e-08 - syst_JES_EtaIntercalibration_Stat57: 0.00056090230049448 - syst_JES_EtaIntercalibration_Stat58: 0.0004137511450135214 - syst_JES_EtaIntercalibration_Stat59: 0.00018202326087618582 - syst_JES_EtaIntercalibration_Stat6: 1.88669600293741e-07 - syst_JES_EtaIntercalibration_Stat60: 6.258014281703102e-06 + syst_JES_EtaIntercalibration_Stat56: 1.40276367e-08 + syst_JES_EtaIntercalibration_Stat57: 5.60902300e-04 + syst_JES_EtaIntercalibration_Stat58: 4.13751145e-04 + syst_JES_EtaIntercalibration_Stat59: 1.82023261e-04 + syst_JES_EtaIntercalibration_Stat6: 1.88669600e-07 + syst_JES_EtaIntercalibration_Stat60: 6.25801428e-06 syst_JES_EtaIntercalibration_Stat61: 0.0 syst_JES_EtaIntercalibration_Stat62: 0.0 syst_JES_EtaIntercalibration_Stat63: 0.0 @@ -25839,21 +25839,21 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 4.180681239941644e-06 - syst_JES_EtaIntercalibration_Stat70: 1.0230358094905574e-07 - syst_JES_EtaIntercalibration_Stat71: 9.486329848787676e-06 - syst_JES_EtaIntercalibration_Stat72: 0.0005059610138143056 - syst_JES_EtaIntercalibration_Stat73: 0.0013464747565402034 - syst_JES_EtaIntercalibration_Stat74: 0.0013801806720498589 - syst_JES_EtaIntercalibration_Stat75: 1.3381301085843634e-05 - syst_JES_EtaIntercalibration_Stat76: 7.11006856507024e-07 + syst_JES_EtaIntercalibration_Stat7: 4.18068124e-06 + syst_JES_EtaIntercalibration_Stat70: 1.02303581e-07 + syst_JES_EtaIntercalibration_Stat71: 9.48632985e-06 + syst_JES_EtaIntercalibration_Stat72: 5.05961014e-04 + syst_JES_EtaIntercalibration_Stat73: 1.34647476e-03 + syst_JES_EtaIntercalibration_Stat74: 1.38018067e-03 + syst_JES_EtaIntercalibration_Stat75: 1.33813011e-05 + syst_JES_EtaIntercalibration_Stat76: 7.11006857e-07 syst_JES_EtaIntercalibration_Stat77: 0.0 - syst_JES_EtaIntercalibration_Stat78: 9.486538502003775e-06 - syst_JES_EtaIntercalibration_Stat79: 0.0016053000560642863 - syst_JES_EtaIntercalibration_Stat8: 8.439318496626372e-07 - syst_JES_EtaIntercalibration_Stat80: 0.001334141345585242 - syst_JES_EtaIntercalibration_Stat81: 0.00048485936878645545 - syst_JES_EtaIntercalibration_Stat82: 8.44587994231507e-06 + syst_JES_EtaIntercalibration_Stat78: 9.48653850e-06 + syst_JES_EtaIntercalibration_Stat79: 1.60530006e-03 + syst_JES_EtaIntercalibration_Stat8: 8.43931850e-07 + syst_JES_EtaIntercalibration_Stat80: 1.33414135e-03 + syst_JES_EtaIntercalibration_Stat81: 4.84859369e-04 + syst_JES_EtaIntercalibration_Stat82: 8.44587994e-06 syst_JES_EtaIntercalibration_Stat83: 0.0 syst_JES_EtaIntercalibration_Stat84: 0.0 syst_JES_EtaIntercalibration_Stat85: 0.0 @@ -25863,113 +25863,113 @@ bins: syst_JES_EtaIntercalibration_Stat89: 0.0 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 8.834325144005058e-08 - syst_JES_EtaIntercalibration_Stat92: 0.0004497393919538292 - syst_JES_EtaIntercalibration_Stat93: 0.001379992865017787 - syst_JES_EtaIntercalibration_Stat94: 0.003864781373829573 - syst_JES_EtaIntercalibration_Stat95: 0.003104810622244133 - syst_JES_EtaIntercalibration_Stat96: 4.170690047222402e-05 - syst_JES_EtaIntercalibration_Stat97: 7.11006856507024e-07 + syst_JES_EtaIntercalibration_Stat91: 8.83432514e-08 + syst_JES_EtaIntercalibration_Stat92: 4.49739392e-04 + syst_JES_EtaIntercalibration_Stat93: 1.37999287e-03 + syst_JES_EtaIntercalibration_Stat94: 3.86478137e-03 + syst_JES_EtaIntercalibration_Stat95: 3.10481062e-03 + syst_JES_EtaIntercalibration_Stat96: 4.17069005e-05 + syst_JES_EtaIntercalibration_Stat97: 7.11006857e-07 syst_JES_EtaIntercalibration_Stat98: 0.0 - syst_JES_EtaIntercalibration_Stat99: 0.001552370231660927 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.03599667588819835 - syst_JES_Flavour_Comp: 0.20803011200304636 - syst_JES_Flavour_Response: 2.6897726205015915 - syst_JES_Gjet_Generator: 2.2465146338272537 - syst_JES_Gjet_OOC: 1.4325211167728036 - syst_JES_Gjet_Purity: 0.4352309846506795 - syst_JES_Gjet_Stat1: 2.5790236524700584e-06 - syst_JES_Gjet_Stat10: 0.17853786713187764 - syst_JES_Gjet_Stat11: 0.19975001251564414 - syst_JES_Gjet_Stat12: 0.033622983013855266 - syst_JES_Gjet_Stat13: 0.04032808411950659 - syst_JES_Gjet_Stat14: 0.007369470062358622 - syst_JES_Gjet_Stat15: 0.0019188472340183834 - syst_JES_Gjet_Stat2: 2.7037313106150174e-06 - syst_JES_Gjet_Stat3: 1.7545674680666964e-10 - syst_JES_Gjet_Stat4: 0.005155641764125976 - syst_JES_Gjet_Stat5: 0.005657977200378241 - syst_JES_Gjet_Stat6: 0.01619862885401107 - syst_JES_Gjet_Stat7: 0.04042956344063092 - syst_JES_Gjet_Stat8: 0.028723879873721794 - syst_JES_Gjet_Stat9: 0.0925460300337081 - syst_JES_Gjet_Veto: 0.5949714783079942 - syst_JES_Gjet_dPhi: 0.11505224584944006 - syst_JES_LArESZee: 2.541177827307644 - syst_JES_LArEsmear: 0.19905553873228446 - syst_JES_LAr_JVT: 0.30105519012300724 - syst_JES_MJB_Alpha: 2.2618608907018906e-07 - syst_JES_MJB_Asym: 0.012910841052677396 - syst_JES_MJB_Beta: 1.1195976420125223e-07 - syst_JES_MJB_Fragmentation: 0.018230302657312084 - syst_JES_MJB_Stat1: 1.9442270314960647e-06 - syst_JES_MJB_Stat10: 2.4110147241358773e-17 - syst_JES_MJB_Stat11: 8.148203341074645e-10 - syst_JES_MJB_Stat12: 3.2839683311505915e-12 - syst_JES_MJB_Stat13: 4.170778344625941e-15 - syst_JES_MJB_Stat14: 3.2579875690370588e-19 - syst_JES_MJB_Stat15: 7.475270898101287e-30 - syst_JES_MJB_Stat16: 2.7236498949020596e-37 + syst_JES_EtaIntercalibration_Stat99: 1.55237023e-03 + syst_JES_EtaIntercalibration_TotalStat_MJB: 3.59966759e-02 + syst_JES_Flavour_Comp: 2.08030112e-01 + syst_JES_Flavour_Response: 2.68977262e+00 + syst_JES_Gjet_Generator: 2.24651463e+00 + syst_JES_Gjet_OOC: 1.43252112e+00 + syst_JES_Gjet_Purity: 4.35230985e-01 + syst_JES_Gjet_Stat1: 2.57902365e-06 + syst_JES_Gjet_Stat10: 1.78537867e-01 + syst_JES_Gjet_Stat11: 1.99750013e-01 + syst_JES_Gjet_Stat12: 3.36229830e-02 + syst_JES_Gjet_Stat13: 4.03280841e-02 + syst_JES_Gjet_Stat14: 7.36947006e-03 + syst_JES_Gjet_Stat15: 1.91884723e-03 + syst_JES_Gjet_Stat2: 2.70373131e-06 + syst_JES_Gjet_Stat3: 1.75456747e-10 + syst_JES_Gjet_Stat4: 5.15564176e-03 + syst_JES_Gjet_Stat5: 5.65797720e-03 + syst_JES_Gjet_Stat6: 1.61986289e-02 + syst_JES_Gjet_Stat7: 4.04295634e-02 + syst_JES_Gjet_Stat8: 2.87238799e-02 + syst_JES_Gjet_Stat9: 9.25460300e-02 + syst_JES_Gjet_Veto: 5.94971478e-01 + syst_JES_Gjet_dPhi: 1.15052246e-01 + syst_JES_LArESZee: 2.54117783e+00 + syst_JES_LArEsmear: 1.99055539e-01 + syst_JES_LAr_JVT: 3.01055190e-01 + syst_JES_MJB_Alpha: 2.26186089e-07 + syst_JES_MJB_Asym: 1.29108411e-02 + syst_JES_MJB_Beta: 1.11959764e-07 + syst_JES_MJB_Fragmentation: 1.82303027e-02 + syst_JES_MJB_Stat1: 1.94422703e-06 + syst_JES_MJB_Stat10: 2.41101472e-17 + syst_JES_MJB_Stat11: 8.14820334e-10 + syst_JES_MJB_Stat12: 3.28396833e-12 + syst_JES_MJB_Stat13: 4.17077834e-15 + syst_JES_MJB_Stat14: 3.25798757e-19 + syst_JES_MJB_Stat15: 7.47527090e-30 + syst_JES_MJB_Stat16: 2.72364989e-37 syst_JES_MJB_Stat2: 0.0 - syst_JES_MJB_Stat3: 2.9055152296967917e-07 - syst_JES_MJB_Stat4: 0.0004472155185142841 - syst_JES_MJB_Stat5: 7.647870340820377e-28 - syst_JES_MJB_Stat6: 5.335578399107944e-22 - syst_JES_MJB_Stat7: 5.653413835904813e-28 - syst_JES_MJB_Stat8: 5.314797903025099e-28 - syst_JES_MJB_Stat9: 4.441844296010386e-43 - syst_JES_MJB_Threshold: 0.01662831229883237 - syst_JES_Pileup_MuOffset: 0.0020271888787185073 - syst_JES_Pileup_NPVOffset: 0.0911043427889143 - syst_JES_Pileup_Pt_term: 0.4509905181930104 - syst_JES_Pileup_Rho_topology: 0.7719913519593337 - syst_JES_PunchThrough_MC15: 0.0002674286446885852 + syst_JES_MJB_Stat3: 2.90551523e-07 + syst_JES_MJB_Stat4: 4.47215519e-04 + syst_JES_MJB_Stat5: 7.64787034e-28 + syst_JES_MJB_Stat6: 5.33557840e-22 + syst_JES_MJB_Stat7: 5.65341384e-28 + syst_JES_MJB_Stat8: 5.31479790e-28 + syst_JES_MJB_Stat9: 4.44184430e-43 + syst_JES_MJB_Threshold: 1.66283123e-02 + syst_JES_Pileup_MuOffset: 2.02718888e-03 + syst_JES_Pileup_NPVOffset: 9.11043428e-02 + syst_JES_Pileup_Pt_term: 4.50990518e-01 + syst_JES_Pileup_Rho_topology: 7.71991352e-01 + syst_JES_PunchThrough_MC15: 2.67428645e-04 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 2.1041684224415116 - syst_JES_Zjet_MuScale: 0.13201593653798016 - syst_JES_Zjet_MuSmearID: 0.022527922673872974 - syst_JES_Zjet_MuSmearMS: 0.2527405191100153 - syst_JES_Zjet_OOC: 0.7104682030182632 - syst_JES_Zjet_Stat1: 0.009927656017409145 - syst_JES_Zjet_Stat10: 0.1816161542925078 - syst_JES_Zjet_Stat11: 0.3432377601605045 - syst_JES_Zjet_Stat12: 0.4480504770670376 - syst_JES_Zjet_Stat13: 0.03176219608276481 - syst_JES_Zjet_Stat2: 0.0002286307065990918 - syst_JES_Zjet_Stat3: 5.998957901722414e-06 - syst_JES_Zjet_Stat4: 9.171209025233697e-08 - syst_JES_Zjet_Stat5: 0.005902310382753583 - syst_JES_Zjet_Stat6: 0.009744520036923316 - syst_JES_Zjet_Stat7: 0.011000198941382832 - syst_JES_Zjet_Stat8: 0.01664724333786228 - syst_JES_Zjet_Stat9: 0.06351213801313886 - syst_JES_Zjet_Veto: 0.13265988118116193 - syst_JES_Zjet_dPhi: 0.12343687617563885 + syst_JES_Zjet_MC: 2.10416842e+00 + syst_JES_Zjet_MuScale: 1.32015937e-01 + syst_JES_Zjet_MuSmearID: 2.25279227e-02 + syst_JES_Zjet_MuSmearMS: 2.52740519e-01 + syst_JES_Zjet_OOC: 7.10468203e-01 + syst_JES_Zjet_Stat1: 9.92765602e-03 + syst_JES_Zjet_Stat10: 1.81616154e-01 + syst_JES_Zjet_Stat11: 3.43237760e-01 + syst_JES_Zjet_Stat12: 4.48050477e-01 + syst_JES_Zjet_Stat13: 3.17621961e-02 + syst_JES_Zjet_Stat2: 2.28630707e-04 + syst_JES_Zjet_Stat3: 5.99895790e-06 + syst_JES_Zjet_Stat4: 9.17120903e-08 + syst_JES_Zjet_Stat5: 5.90231038e-03 + syst_JES_Zjet_Stat6: 9.74452004e-03 + syst_JES_Zjet_Stat7: 1.10001989e-02 + syst_JES_Zjet_Stat8: 1.66472433e-02 + syst_JES_Zjet_Stat9: 6.35121380e-02 + syst_JES_Zjet_Veto: 1.32659881e-01 + syst_JES_Zjet_dPhi: 1.23436876e-01 syst_PRW: 0.0 syst_Unfolding_bias: 0.1253 - syst_cleaning: 0.6454487334405421 + syst_cleaning: 6.45448733e-01 syst_lumi: 2.563 - stat: 0.4084 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.5750063217043793 - syst_JER_NP1: 0.043190156285894586 - syst_JER_NP2: 0.08619254260085382 - syst_JER_NP3: 0.1195699368570545 - syst_JER_NP4: 0.043771505285973435 - syst_JER_NP5: 0.06320627975130319 - syst_JER_NP6: 0.002099880710897645 - syst_JER_NP7: 6.17914565291999e-07 - syst_JER_NP8: 0.04878623166427183 - syst_JES_EtaIntercalibration_Modelling: 1.4506205568652335 + syst_JER_NP0: 5.75006322e-01 + syst_JER_NP1: 4.31901563e-02 + syst_JER_NP2: 8.61925426e-02 + syst_JER_NP3: 1.19569937e-01 + syst_JER_NP4: 4.37715053e-02 + syst_JER_NP5: 6.32062798e-02 + syst_JER_NP6: 2.09988071e-03 + syst_JER_NP7: 6.17914565e-07 + syst_JER_NP8: 4.87862317e-02 + syst_JES_EtaIntercalibration_Modelling: 1.45062056e+00 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 0.0002816464228425421 - syst_JES_EtaIntercalibration_Stat101: 0.0007933782641338242 - syst_JES_EtaIntercalibration_Stat102: 0.0002540282070951964 - syst_JES_EtaIntercalibration_Stat103: 0.00015100854088676572 + syst_JES_EtaIntercalibration_Stat100: 2.81646423e-04 + syst_JES_EtaIntercalibration_Stat101: 7.93378264e-04 + syst_JES_EtaIntercalibration_Stat102: 2.54028207e-04 + syst_JES_EtaIntercalibration_Stat103: 1.51008541e-04 syst_JES_EtaIntercalibration_Stat104: 0.0 syst_JES_EtaIntercalibration_Stat105: 0.0 syst_JES_EtaIntercalibration_Stat106: 0.0 @@ -25978,170 +25978,170 @@ bins: syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 syst_JES_EtaIntercalibration_Stat110: 0.0 - syst_JES_EtaIntercalibration_Stat111: 2.449985867306177e-09 - syst_JES_EtaIntercalibration_Stat112: 0.00030661064886921326 - syst_JES_EtaIntercalibration_Stat113: 0.0045439563158111455 - syst_JES_EtaIntercalibration_Stat114: 0.013435419113298996 - syst_JES_EtaIntercalibration_Stat115: 0.009370734016073662 - syst_JES_EtaIntercalibration_Stat116: 5.0476171279129323e-05 + syst_JES_EtaIntercalibration_Stat111: 2.44998587e-09 + syst_JES_EtaIntercalibration_Stat112: 3.06610649e-04 + syst_JES_EtaIntercalibration_Stat113: 4.54395632e-03 + syst_JES_EtaIntercalibration_Stat114: 1.34354191e-02 + syst_JES_EtaIntercalibration_Stat115: 9.37073402e-03 + syst_JES_EtaIntercalibration_Stat116: 5.04761713e-05 syst_JES_EtaIntercalibration_Stat117: 0.0 syst_JES_EtaIntercalibration_Stat118: 0.0 - syst_JES_EtaIntercalibration_Stat119: 0.0006443050029701055 + syst_JES_EtaIntercalibration_Stat119: 6.44305003e-04 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 0.008671460430631049 - syst_JES_EtaIntercalibration_Stat121: 0.014234519591471994 - syst_JES_EtaIntercalibration_Stat122: 0.001982141960102757 - syst_JES_EtaIntercalibration_Stat123: 0.00012672405770018574 + syst_JES_EtaIntercalibration_Stat120: 8.67146043e-03 + syst_JES_EtaIntercalibration_Stat121: 1.42345196e-02 + syst_JES_EtaIntercalibration_Stat122: 1.98214196e-03 + syst_JES_EtaIntercalibration_Stat123: 1.26724058e-04 syst_JES_EtaIntercalibration_Stat124: 0.0 syst_JES_EtaIntercalibration_Stat125: 0.0 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 syst_JES_EtaIntercalibration_Stat128: 0.0 syst_JES_EtaIntercalibration_Stat129: 0.0 - syst_JES_EtaIntercalibration_Stat13: 0.0007569564884280943 + syst_JES_EtaIntercalibration_Stat13: 7.56956488e-04 syst_JES_EtaIntercalibration_Stat130: 0.0 - syst_JES_EtaIntercalibration_Stat131: 0.0010904543640152943 - syst_JES_EtaIntercalibration_Stat132: 0.03716226311730759 - syst_JES_EtaIntercalibration_Stat133: 0.0969538254789361 - syst_JES_EtaIntercalibration_Stat134: 0.07378803358268873 - syst_JES_EtaIntercalibration_Stat135: 0.001026276253013778 + syst_JES_EtaIntercalibration_Stat131: 1.09045436e-03 + syst_JES_EtaIntercalibration_Stat132: 3.71622631e-02 + syst_JES_EtaIntercalibration_Stat133: 9.69538255e-02 + syst_JES_EtaIntercalibration_Stat134: 7.37880336e-02 + syst_JES_EtaIntercalibration_Stat135: 1.02627625e-03 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 - syst_JES_EtaIntercalibration_Stat138: 0.0011628739324084103 - syst_JES_EtaIntercalibration_Stat139: 0.046319804619622484 - syst_JES_EtaIntercalibration_Stat14: 1.493790708231913e-07 - syst_JES_EtaIntercalibration_Stat140: 0.10445718584664244 - syst_JES_EtaIntercalibration_Stat141: 0.02860359592778502 - syst_JES_EtaIntercalibration_Stat142: 0.0009036183109449475 + syst_JES_EtaIntercalibration_Stat138: 1.16287393e-03 + syst_JES_EtaIntercalibration_Stat139: 4.63198046e-02 + syst_JES_EtaIntercalibration_Stat14: 1.49379071e-07 + syst_JES_EtaIntercalibration_Stat140: 1.04457186e-01 + syst_JES_EtaIntercalibration_Stat141: 2.86035959e-02 + syst_JES_EtaIntercalibration_Stat142: 9.03618311e-04 syst_JES_EtaIntercalibration_Stat143: 0.0 syst_JES_EtaIntercalibration_Stat144: 0.0 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 syst_JES_EtaIntercalibration_Stat147: 0.0 syst_JES_EtaIntercalibration_Stat148: 0.0 - syst_JES_EtaIntercalibration_Stat149: 0.0015482812244550408 - syst_JES_EtaIntercalibration_Stat15: 1.442494921020593e-07 - syst_JES_EtaIntercalibration_Stat150: 0.026110665924100825 - syst_JES_EtaIntercalibration_Stat151: 0.10494609854587258 - syst_JES_EtaIntercalibration_Stat152: 0.0696974504555224 - syst_JES_EtaIntercalibration_Stat153: 0.0014209932327425064 + syst_JES_EtaIntercalibration_Stat149: 1.54828122e-03 + syst_JES_EtaIntercalibration_Stat15: 1.44249492e-07 + syst_JES_EtaIntercalibration_Stat150: 2.61106659e-02 + syst_JES_EtaIntercalibration_Stat151: 1.04946099e-01 + syst_JES_EtaIntercalibration_Stat152: 6.96974505e-02 + syst_JES_EtaIntercalibration_Stat153: 1.42099323e-03 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 0.0023304745156498843 - syst_JES_EtaIntercalibration_Stat157: 0.06074358628694884 - syst_JES_EtaIntercalibration_Stat158: 0.11956061809810119 - syst_JES_EtaIntercalibration_Stat159: 0.025996922894835073 + syst_JES_EtaIntercalibration_Stat156: 2.33047452e-03 + syst_JES_EtaIntercalibration_Stat157: 6.07435863e-02 + syst_JES_EtaIntercalibration_Stat158: 1.19560618e-01 + syst_JES_EtaIntercalibration_Stat159: 2.59969229e-02 syst_JES_EtaIntercalibration_Stat16: 0.0 - syst_JES_EtaIntercalibration_Stat160: 0.0015920420848708741 + syst_JES_EtaIntercalibration_Stat160: 1.59204208e-03 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 - syst_JES_EtaIntercalibration_Stat167: 0.0014140210288393876 - syst_JES_EtaIntercalibration_Stat168: 0.03118066548359736 - syst_JES_EtaIntercalibration_Stat169: 0.10037143866658484 + syst_JES_EtaIntercalibration_Stat167: 1.41402103e-03 + syst_JES_EtaIntercalibration_Stat168: 3.11806655e-02 + syst_JES_EtaIntercalibration_Stat169: 1.00371439e-01 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 0.07204051134604751 - syst_JES_EtaIntercalibration_Stat171: 0.0017381475052480441 + syst_JES_EtaIntercalibration_Stat170: 7.20405113e-02 + syst_JES_EtaIntercalibration_Stat171: 1.73814751e-03 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 - syst_JES_EtaIntercalibration_Stat174: 0.002312093462369547 - syst_JES_EtaIntercalibration_Stat175: 0.06526657414021361 - syst_JES_EtaIntercalibration_Stat176: 0.10204882066932473 - syst_JES_EtaIntercalibration_Stat177: 0.032656426626316605 - syst_JES_EtaIntercalibration_Stat178: 0.0019694938149369752 + syst_JES_EtaIntercalibration_Stat174: 2.31209346e-03 + syst_JES_EtaIntercalibration_Stat175: 6.52665741e-02 + syst_JES_EtaIntercalibration_Stat176: 1.02048821e-01 + syst_JES_EtaIntercalibration_Stat177: 3.26564266e-02 + syst_JES_EtaIntercalibration_Stat178: 1.96949381e-03 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 syst_JES_EtaIntercalibration_Stat180: 0.0 syst_JES_EtaIntercalibration_Stat181: 0.0 syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 - syst_JES_EtaIntercalibration_Stat184: 0.000891752566578869 - syst_JES_EtaIntercalibration_Stat185: 0.020220239241908095 - syst_JES_EtaIntercalibration_Stat186: 0.059667965232610365 - syst_JES_EtaIntercalibration_Stat187: 0.044700933715080264 - syst_JES_EtaIntercalibration_Stat188: 5.162377431959039e-05 + syst_JES_EtaIntercalibration_Stat184: 8.91752567e-04 + syst_JES_EtaIntercalibration_Stat185: 2.02202392e-02 + syst_JES_EtaIntercalibration_Stat186: 5.96679652e-02 + syst_JES_EtaIntercalibration_Stat187: 4.47009337e-02 + syst_JES_EtaIntercalibration_Stat188: 5.16237743e-05 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 - syst_JES_EtaIntercalibration_Stat191: 0.0007664518771586381 - syst_JES_EtaIntercalibration_Stat192: 0.03631368440409208 - syst_JES_EtaIntercalibration_Stat193: 0.061290564322740576 - syst_JES_EtaIntercalibration_Stat194: 0.014458623404390891 - syst_JES_EtaIntercalibration_Stat195: 0.0010929240595132037 - syst_JES_EtaIntercalibration_Stat196: 2.294087068677865e-05 + syst_JES_EtaIntercalibration_Stat191: 7.66451877e-04 + syst_JES_EtaIntercalibration_Stat192: 3.63136844e-02 + syst_JES_EtaIntercalibration_Stat193: 6.12905643e-02 + syst_JES_EtaIntercalibration_Stat194: 1.44586234e-02 + syst_JES_EtaIntercalibration_Stat195: 1.09292406e-03 + syst_JES_EtaIntercalibration_Stat196: 2.29408707e-05 syst_JES_EtaIntercalibration_Stat197: 0.0 syst_JES_EtaIntercalibration_Stat198: 0.0 - syst_JES_EtaIntercalibration_Stat199: 0.00019095860166887588 + syst_JES_EtaIntercalibration_Stat199: 1.90958602e-04 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 0.00605315295940884 - syst_JES_EtaIntercalibration_Stat201: 0.012552706600570254 - syst_JES_EtaIntercalibration_Stat202: 0.010469392568339389 - syst_JES_EtaIntercalibration_Stat203: 0.0005554705932810485 + syst_JES_EtaIntercalibration_Stat200: 6.05315296e-03 + syst_JES_EtaIntercalibration_Stat201: 1.25527066e-02 + syst_JES_EtaIntercalibration_Stat202: 1.04693926e-02 + syst_JES_EtaIntercalibration_Stat203: 5.55470593e-04 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 - syst_JES_EtaIntercalibration_Stat206: 0.00027706091387996246 - syst_JES_EtaIntercalibration_Stat207: 0.009401189326356531 - syst_JES_EtaIntercalibration_Stat208: 0.01954408030581127 - syst_JES_EtaIntercalibration_Stat209: 0.008739047202069571 + syst_JES_EtaIntercalibration_Stat206: 2.77060914e-04 + syst_JES_EtaIntercalibration_Stat207: 9.40118933e-03 + syst_JES_EtaIntercalibration_Stat208: 1.95440803e-02 + syst_JES_EtaIntercalibration_Stat209: 8.73904720e-03 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 8.069358338802411e-05 - syst_JES_EtaIntercalibration_Stat211: 9.722484675740045e-07 - syst_JES_EtaIntercalibration_Stat212: 2.8075742198559954e-05 - syst_JES_EtaIntercalibration_Stat213: 0.00024178912299770643 - syst_JES_EtaIntercalibration_Stat214: 0.0014768862786281145 - syst_JES_EtaIntercalibration_Stat215: 0.0013857962936521368 - syst_JES_EtaIntercalibration_Stat216: 6.53948688105573e-06 + syst_JES_EtaIntercalibration_Stat210: 8.06935834e-05 + syst_JES_EtaIntercalibration_Stat211: 9.72248468e-07 + syst_JES_EtaIntercalibration_Stat212: 2.80757422e-05 + syst_JES_EtaIntercalibration_Stat213: 2.41789123e-04 + syst_JES_EtaIntercalibration_Stat214: 1.47688628e-03 + syst_JES_EtaIntercalibration_Stat215: 1.38579629e-03 + syst_JES_EtaIntercalibration_Stat216: 6.53948688e-06 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 - syst_JES_EtaIntercalibration_Stat219: 9.05076265888682e-05 + syst_JES_EtaIntercalibration_Stat219: 9.05076266e-05 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 0.001742462266449406 - syst_JES_EtaIntercalibration_Stat221: 0.0022831246133314755 - syst_JES_EtaIntercalibration_Stat222: 0.0005608384861080772 - syst_JES_EtaIntercalibration_Stat223: 3.256255518229489e-05 - syst_JES_EtaIntercalibration_Stat224: 1.8939975580765673e-08 - syst_JES_EtaIntercalibration_Stat225: 2.440988324429267e-06 - syst_JES_EtaIntercalibration_Stat226: 1.226411551927003e-05 - syst_JES_EtaIntercalibration_Stat227: 7.670364849906098e-06 - syst_JES_EtaIntercalibration_Stat228: 8.029787543889316e-07 + syst_JES_EtaIntercalibration_Stat220: 1.74246227e-03 + syst_JES_EtaIntercalibration_Stat221: 2.28312461e-03 + syst_JES_EtaIntercalibration_Stat222: 5.60838486e-04 + syst_JES_EtaIntercalibration_Stat223: 3.25625552e-05 + syst_JES_EtaIntercalibration_Stat224: 1.89399756e-08 + syst_JES_EtaIntercalibration_Stat225: 2.44098832e-06 + syst_JES_EtaIntercalibration_Stat226: 1.22641155e-05 + syst_JES_EtaIntercalibration_Stat227: 7.67036485e-06 + syst_JES_EtaIntercalibration_Stat228: 8.02978754e-07 syst_JES_EtaIntercalibration_Stat229: 0.0 syst_JES_EtaIntercalibration_Stat23: 0.0 syst_JES_EtaIntercalibration_Stat230: 0.0 - syst_JES_EtaIntercalibration_Stat231: 5.6404234548480485e-06 - syst_JES_EtaIntercalibration_Stat232: 1.2398481630828834e-05 - syst_JES_EtaIntercalibration_Stat233: 1.285060499127862e-05 - syst_JES_EtaIntercalibration_Stat234: 4.890115082170868e-07 - syst_JES_EtaIntercalibration_Stat235: 1.5943527683671515e-14 - syst_JES_EtaIntercalibration_Stat236: 4.297326175156244e-12 - syst_JES_EtaIntercalibration_Stat237: 1.0230558965667517e-11 - syst_JES_EtaIntercalibration_Stat238: 9.021201402806613e-12 - syst_JES_EtaIntercalibration_Stat239: 2.2585942530698158e-23 + syst_JES_EtaIntercalibration_Stat231: 5.64042345e-06 + syst_JES_EtaIntercalibration_Stat232: 1.23984816e-05 + syst_JES_EtaIntercalibration_Stat233: 1.28506050e-05 + syst_JES_EtaIntercalibration_Stat234: 4.89011508e-07 + syst_JES_EtaIntercalibration_Stat235: 1.59435277e-14 + syst_JES_EtaIntercalibration_Stat236: 4.29732618e-12 + syst_JES_EtaIntercalibration_Stat237: 1.02305590e-11 + syst_JES_EtaIntercalibration_Stat238: 9.02120140e-12 + syst_JES_EtaIntercalibration_Stat239: 2.25859425e-23 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 - syst_JES_EtaIntercalibration_Stat243: 4.4050874361356325e-12 - syst_JES_EtaIntercalibration_Stat244: 7.313854865937661e-12 - syst_JES_EtaIntercalibration_Stat245: 6.859561702470501e-15 + syst_JES_EtaIntercalibration_Stat243: 4.40508744e-12 + syst_JES_EtaIntercalibration_Stat244: 7.31385487e-12 + syst_JES_EtaIntercalibration_Stat245: 6.85956170e-15 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 - syst_JES_EtaIntercalibration_Stat27: 1.573670190986663e-08 - syst_JES_EtaIntercalibration_Stat28: 7.794596263277528e-05 - syst_JES_EtaIntercalibration_Stat29: 7.841025698688917e-05 + syst_JES_EtaIntercalibration_Stat27: 1.57367019e-08 + syst_JES_EtaIntercalibration_Stat28: 7.79459626e-05 + syst_JES_EtaIntercalibration_Stat29: 7.84102570e-05 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 7.656618884990946e-05 - syst_JES_EtaIntercalibration_Stat31: 2.1685276110762344e-09 + syst_JES_EtaIntercalibration_Stat30: 7.65661888e-05 + syst_JES_EtaIntercalibration_Stat31: 2.16852761e-09 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 - syst_JES_EtaIntercalibration_Stat34: 1.0947427129239089e-10 - syst_JES_EtaIntercalibration_Stat35: 0.0007224531117657394 - syst_JES_EtaIntercalibration_Stat36: 0.00014418533628632283 - syst_JES_EtaIntercalibration_Stat37: 6.178221838037219e-06 - syst_JES_EtaIntercalibration_Stat38: 9.768743087639269e-08 + syst_JES_EtaIntercalibration_Stat34: 1.09474271e-10 + syst_JES_EtaIntercalibration_Stat35: 7.22453112e-04 + syst_JES_EtaIntercalibration_Stat36: 1.44185336e-04 + syst_JES_EtaIntercalibration_Stat37: 6.17822184e-06 + syst_JES_EtaIntercalibration_Stat38: 9.76874309e-08 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 syst_JES_EtaIntercalibration_Stat40: 0.0 @@ -26152,21 +26152,21 @@ bins: syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 syst_JES_EtaIntercalibration_Stat47: 0.0 - syst_JES_EtaIntercalibration_Stat48: 9.802541545436061e-09 - syst_JES_EtaIntercalibration_Stat49: 1.521739360074517e-07 - syst_JES_EtaIntercalibration_Stat5: 9.610283905795915e-09 - syst_JES_EtaIntercalibration_Stat50: 0.00012876163510533716 - syst_JES_EtaIntercalibration_Stat51: 0.00019872617014374329 - syst_JES_EtaIntercalibration_Stat52: 0.00017153641829069417 - syst_JES_EtaIntercalibration_Stat53: 1.026733335730364e-07 - syst_JES_EtaIntercalibration_Stat54: 7.736204932006391e-08 + syst_JES_EtaIntercalibration_Stat48: 9.80254155e-09 + syst_JES_EtaIntercalibration_Stat49: 1.52173936e-07 + syst_JES_EtaIntercalibration_Stat5: 9.61028391e-09 + syst_JES_EtaIntercalibration_Stat50: 1.28761635e-04 + syst_JES_EtaIntercalibration_Stat51: 1.98726170e-04 + syst_JES_EtaIntercalibration_Stat52: 1.71536418e-04 + syst_JES_EtaIntercalibration_Stat53: 1.02673334e-07 + syst_JES_EtaIntercalibration_Stat54: 7.73620493e-08 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 1.2597175506834856e-09 - syst_JES_EtaIntercalibration_Stat57: 0.00020136016705148016 - syst_JES_EtaIntercalibration_Stat58: 0.0001878153952023103 - syst_JES_EtaIntercalibration_Stat59: 4.766716558596703e-05 - syst_JES_EtaIntercalibration_Stat6: 1.7508457242144436e-08 - syst_JES_EtaIntercalibration_Stat60: 8.07522697823411e-07 + syst_JES_EtaIntercalibration_Stat56: 1.25971755e-09 + syst_JES_EtaIntercalibration_Stat57: 2.01360167e-04 + syst_JES_EtaIntercalibration_Stat58: 1.87815395e-04 + syst_JES_EtaIntercalibration_Stat59: 4.76671656e-05 + syst_JES_EtaIntercalibration_Stat6: 1.75084572e-08 + syst_JES_EtaIntercalibration_Stat60: 8.07522698e-07 syst_JES_EtaIntercalibration_Stat61: 0.0 syst_JES_EtaIntercalibration_Stat62: 0.0 syst_JES_EtaIntercalibration_Stat63: 0.0 @@ -26176,21 +26176,21 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 5.294683630775308e-07 - syst_JES_EtaIntercalibration_Stat70: 9.610283905795915e-09 - syst_JES_EtaIntercalibration_Stat71: 1.1969144111004763e-06 - syst_JES_EtaIntercalibration_Stat72: 0.000207923225013465 - syst_JES_EtaIntercalibration_Stat73: 0.0005455796733750259 - syst_JES_EtaIntercalibration_Stat74: 0.0002799821120625388 - syst_JES_EtaIntercalibration_Stat75: 2.980267308480902e-06 - syst_JES_EtaIntercalibration_Stat76: 7.736204932006391e-08 + syst_JES_EtaIntercalibration_Stat7: 5.29468363e-07 + syst_JES_EtaIntercalibration_Stat70: 9.61028391e-09 + syst_JES_EtaIntercalibration_Stat71: 1.19691441e-06 + syst_JES_EtaIntercalibration_Stat72: 2.07923225e-04 + syst_JES_EtaIntercalibration_Stat73: 5.45579673e-04 + syst_JES_EtaIntercalibration_Stat74: 2.79982112e-04 + syst_JES_EtaIntercalibration_Stat75: 2.98026731e-06 + syst_JES_EtaIntercalibration_Stat76: 7.73620493e-08 syst_JES_EtaIntercalibration_Stat77: 0.0 - syst_JES_EtaIntercalibration_Stat78: 1.1628205826781706e-06 - syst_JES_EtaIntercalibration_Stat79: 0.0005717202200377384 - syst_JES_EtaIntercalibration_Stat8: 9.166249838810853e-08 - syst_JES_EtaIntercalibration_Stat80: 0.0006770945631889241 - syst_JES_EtaIntercalibration_Stat81: 0.00019191712456161905 - syst_JES_EtaIntercalibration_Stat82: 1.0883249181655263e-06 + syst_JES_EtaIntercalibration_Stat78: 1.16282058e-06 + syst_JES_EtaIntercalibration_Stat79: 5.71720220e-04 + syst_JES_EtaIntercalibration_Stat8: 9.16624984e-08 + syst_JES_EtaIntercalibration_Stat80: 6.77094563e-04 + syst_JES_EtaIntercalibration_Stat81: 1.91917125e-04 + syst_JES_EtaIntercalibration_Stat82: 1.08832492e-06 syst_JES_EtaIntercalibration_Stat83: 0.0 syst_JES_EtaIntercalibration_Stat84: 0.0 syst_JES_EtaIntercalibration_Stat85: 0.0 @@ -26200,113 +26200,113 @@ bins: syst_JES_EtaIntercalibration_Stat89: 0.0 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 8.30171952067763e-09 - syst_JES_EtaIntercalibration_Stat92: 0.00010300918458079356 - syst_JES_EtaIntercalibration_Stat93: 0.00034874232274703914 - syst_JES_EtaIntercalibration_Stat94: 0.0016135841584187668 - syst_JES_EtaIntercalibration_Stat95: 0.001365014727942523 - syst_JES_EtaIntercalibration_Stat96: 6.975242366219255e-06 - syst_JES_EtaIntercalibration_Stat97: 7.736204932006391e-08 + syst_JES_EtaIntercalibration_Stat91: 8.30171952e-09 + syst_JES_EtaIntercalibration_Stat92: 1.03009185e-04 + syst_JES_EtaIntercalibration_Stat93: 3.48742323e-04 + syst_JES_EtaIntercalibration_Stat94: 1.61358416e-03 + syst_JES_EtaIntercalibration_Stat95: 1.36501473e-03 + syst_JES_EtaIntercalibration_Stat96: 6.97524237e-06 + syst_JES_EtaIntercalibration_Stat97: 7.73620493e-08 syst_JES_EtaIntercalibration_Stat98: 0.0 - syst_JES_EtaIntercalibration_Stat99: 0.0007542785971661979 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.02740918720032938 - syst_JES_Flavour_Comp: 0.18430629397825785 - syst_JES_Flavour_Response: 1.5683037811597598 - syst_JES_Gjet_Generator: 1.3393684957844871 - syst_JES_Gjet_OOC: 0.893335384947893 - syst_JES_Gjet_Purity: 0.2672569175905462 - syst_JES_Gjet_Stat1: 3.912702774298094e-05 - syst_JES_Gjet_Stat10: 0.09673789472073495 - syst_JES_Gjet_Stat11: 0.13805783462013302 - syst_JES_Gjet_Stat12: 0.06850321653032068 - syst_JES_Gjet_Stat13: 0.024533428215396235 - syst_JES_Gjet_Stat14: 0.014456156845787195 - syst_JES_Gjet_Stat15: 0.0029656336169527077 - syst_JES_Gjet_Stat2: 4.1014963123231013e-05 - syst_JES_Gjet_Stat3: 5.1450569223057405e-08 - syst_JES_Gjet_Stat4: 0.003063864716334584 - syst_JES_Gjet_Stat5: 0.0033593089691185 - syst_JES_Gjet_Stat6: 0.008974439369676528 - syst_JES_Gjet_Stat7: 0.014867385471225262 - syst_JES_Gjet_Stat8: 0.012016025798907058 - syst_JES_Gjet_Stat9: 0.041350229443136106 - syst_JES_Gjet_Veto: 0.3720185004472224 - syst_JES_Gjet_dPhi: 0.06192353894118133 - syst_JES_LArESZee: 1.6181528821468012 - syst_JES_LArEsmear: 0.12105164187238436 - syst_JES_LAr_JVT: 0.17870911420517982 - syst_JES_MJB_Alpha: 1.3047170485109024e-05 - syst_JES_MJB_Asym: 0.004732221756215573 - syst_JES_MJB_Beta: 6.478736045711384e-06 - syst_JES_MJB_Fragmentation: 0.027668891715245843 - syst_JES_MJB_Stat1: 2.949682525289798e-05 - syst_JES_MJB_Stat10: 4.704249993357071e-13 - syst_JES_MJB_Stat11: 4.670148002740384e-08 - syst_JES_MJB_Stat12: 9.69861849698193e-10 - syst_JES_MJB_Stat13: 8.426427179309871e-12 - syst_JES_MJB_Stat14: 6.3574924891831174e-15 - syst_JES_MJB_Stat15: 4.337535821177734e-23 - syst_JES_MJB_Stat16: 5.273227767966557e-29 + syst_JES_EtaIntercalibration_Stat99: 7.54278597e-04 + syst_JES_EtaIntercalibration_TotalStat_MJB: 2.74091872e-02 + syst_JES_Flavour_Comp: 1.84306294e-01 + syst_JES_Flavour_Response: 1.56830378e+00 + syst_JES_Gjet_Generator: 1.33936850e+00 + syst_JES_Gjet_OOC: 8.93335385e-01 + syst_JES_Gjet_Purity: 2.67256918e-01 + syst_JES_Gjet_Stat1: 3.91270277e-05 + syst_JES_Gjet_Stat10: 9.67378947e-02 + syst_JES_Gjet_Stat11: 1.38057835e-01 + syst_JES_Gjet_Stat12: 6.85032165e-02 + syst_JES_Gjet_Stat13: 2.45334282e-02 + syst_JES_Gjet_Stat14: 1.44561568e-02 + syst_JES_Gjet_Stat15: 2.96563362e-03 + syst_JES_Gjet_Stat2: 4.10149631e-05 + syst_JES_Gjet_Stat3: 5.14505692e-08 + syst_JES_Gjet_Stat4: 3.06386472e-03 + syst_JES_Gjet_Stat5: 3.35930897e-03 + syst_JES_Gjet_Stat6: 8.97443937e-03 + syst_JES_Gjet_Stat7: 1.48673855e-02 + syst_JES_Gjet_Stat8: 1.20160258e-02 + syst_JES_Gjet_Stat9: 4.13502294e-02 + syst_JES_Gjet_Veto: 3.72018500e-01 + syst_JES_Gjet_dPhi: 6.19235389e-02 + syst_JES_LArESZee: 1.61815288e+00 + syst_JES_LArEsmear: 1.21051642e-01 + syst_JES_LAr_JVT: 1.78709114e-01 + syst_JES_MJB_Alpha: 1.30471705e-05 + syst_JES_MJB_Asym: 4.73222176e-03 + syst_JES_MJB_Beta: 6.47873605e-06 + syst_JES_MJB_Fragmentation: 2.76688917e-02 + syst_JES_MJB_Stat1: 2.94968253e-05 + syst_JES_MJB_Stat10: 4.70424999e-13 + syst_JES_MJB_Stat11: 4.67014800e-08 + syst_JES_MJB_Stat12: 9.69861850e-10 + syst_JES_MJB_Stat13: 8.42642718e-12 + syst_JES_MJB_Stat14: 6.35749249e-15 + syst_JES_MJB_Stat15: 4.33753582e-23 + syst_JES_MJB_Stat16: 5.27322777e-29 syst_JES_MJB_Stat2: 0.0 - syst_JES_MJB_Stat3: 1.6818213341493798e-05 - syst_JES_MJB_Stat4: 0.0011800462151966762 - syst_JES_MJB_Stat5: 4.437514168991464e-21 - syst_JES_MJB_Stat6: 1.460960984311172e-16 - syst_JES_MJB_Stat7: 3.280504229534462e-21 - syst_JES_MJB_Stat8: 3.0839164628752432e-21 - syst_JES_MJB_Stat9: 4.1283430998404186e-33 - syst_JES_MJB_Threshold: 0.008996964932687023 - syst_JES_Pileup_MuOffset: 0.010811316883247848 - syst_JES_Pileup_NPVOffset: 0.06533686000260495 - syst_JES_Pileup_Pt_term: 0.2668344945841898 - syst_JES_Pileup_Rho_topology: 0.44442058908200915 - syst_JES_PunchThrough_MC15: 0.0013899707721084058 + syst_JES_MJB_Stat3: 1.68182133e-05 + syst_JES_MJB_Stat4: 1.18004622e-03 + syst_JES_MJB_Stat5: 4.43751417e-21 + syst_JES_MJB_Stat6: 1.46096098e-16 + syst_JES_MJB_Stat7: 3.28050423e-21 + syst_JES_MJB_Stat8: 3.08391646e-21 + syst_JES_MJB_Stat9: 4.12834310e-33 + syst_JES_MJB_Threshold: 8.99696493e-03 + syst_JES_Pileup_MuOffset: 1.08113169e-02 + syst_JES_Pileup_NPVOffset: 6.53368600e-02 + syst_JES_Pileup_Pt_term: 2.66834495e-01 + syst_JES_Pileup_Rho_topology: 4.44420589e-01 + syst_JES_PunchThrough_MC15: 1.38997077e-03 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 1.270591012088469 - syst_JES_Zjet_MuScale: 0.0760841363228893 - syst_JES_Zjet_MuSmearID: 0.013447890615260076 - syst_JES_Zjet_MuSmearMS: 0.1673093168356144 - syst_JES_Zjet_OOC: 0.4299814996020177 - syst_JES_Zjet_Stat1: 0.005908016418392894 - syst_JES_Zjet_Stat10: 0.08046597712698206 - syst_JES_Zjet_Stat11: 0.15238001017193822 - syst_JES_Zjet_Stat12: 0.35560323395604826 - syst_JES_Zjet_Stat13: 0.0015551718023099571 - syst_JES_Zjet_Stat2: 0.0001360525909345353 - syst_JES_Zjet_Stat3: 9.101046762755985e-05 - syst_JES_Zjet_Stat4: 5.307003509788499e-06 - syst_JES_Zjet_Stat5: 0.0034780130341439206 - syst_JES_Zjet_Stat6: 0.005686391738176327 - syst_JES_Zjet_Stat7: 0.006369868503352325 - syst_JES_Zjet_Stat8: 0.009170534008442475 - syst_JES_Zjet_Stat9: 0.027915201503840165 - syst_JES_Zjet_Veto: 0.08202706992206901 - syst_JES_Zjet_dPhi: 0.07180097962423633 + syst_JES_Zjet_MC: 1.27059101e+00 + syst_JES_Zjet_MuScale: 7.60841363e-02 + syst_JES_Zjet_MuSmearID: 1.34478906e-02 + syst_JES_Zjet_MuSmearMS: 1.67309317e-01 + syst_JES_Zjet_OOC: 4.29981500e-01 + syst_JES_Zjet_Stat1: 5.90801642e-03 + syst_JES_Zjet_Stat10: 8.04659771e-02 + syst_JES_Zjet_Stat11: 1.52380010e-01 + syst_JES_Zjet_Stat12: 3.55603234e-01 + syst_JES_Zjet_Stat13: 1.55517180e-03 + syst_JES_Zjet_Stat2: 1.36052591e-04 + syst_JES_Zjet_Stat3: 9.10104676e-05 + syst_JES_Zjet_Stat4: 5.30700351e-06 + syst_JES_Zjet_Stat5: 3.47801303e-03 + syst_JES_Zjet_Stat6: 5.68639174e-03 + syst_JES_Zjet_Stat7: 6.36986850e-03 + syst_JES_Zjet_Stat8: 9.17053401e-03 + syst_JES_Zjet_Stat9: 2.79152015e-02 + syst_JES_Zjet_Veto: 8.20270699e-02 + syst_JES_Zjet_dPhi: 7.18009796e-02 syst_PRW: 0.0 syst_Unfolding_bias: 0.07449 - syst_cleaning: 0.37871290907493504 + syst_cleaning: 3.78712909e-01 syst_lumi: 1.524 - stat: 0.27797 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.32567798129440684 - syst_JER_NP1: 0.01906033774622055 - syst_JER_NP2: 0.06553718181307464 - syst_JER_NP3: 0.06598411683882721 - syst_JER_NP4: 0.016994316697060814 - syst_JER_NP5: 0.03553797229724847 - syst_JER_NP6: 0.00027666540712564694 - syst_JER_NP7: 5.57463566074053e-08 - syst_JER_NP8: 0.030682136089262103 - syst_JES_EtaIntercalibration_Modelling: 0.9338433527631922 + syst_JER_NP0: 3.25677981e-01 + syst_JER_NP1: 1.90603377e-02 + syst_JER_NP2: 6.55371818e-02 + syst_JER_NP3: 6.59841168e-02 + syst_JER_NP4: 1.69943167e-02 + syst_JER_NP5: 3.55379723e-02 + syst_JER_NP6: 2.76665407e-04 + syst_JER_NP7: 5.57463566e-08 + syst_JER_NP8: 3.06821361e-02 + syst_JES_EtaIntercalibration_Modelling: 9.33843353e-01 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 0.00026941211011199923 - syst_JES_EtaIntercalibration_Stat101: 0.0006364197887401051 - syst_JES_EtaIntercalibration_Stat102: 7.85779884891437e-05 - syst_JES_EtaIntercalibration_Stat103: 2.5742250615476497e-05 + syst_JES_EtaIntercalibration_Stat100: 2.69412110e-04 + syst_JES_EtaIntercalibration_Stat101: 6.36419789e-04 + syst_JES_EtaIntercalibration_Stat102: 7.85779885e-05 + syst_JES_EtaIntercalibration_Stat103: 2.57422506e-05 syst_JES_EtaIntercalibration_Stat104: 0.0 syst_JES_EtaIntercalibration_Stat105: 0.0 syst_JES_EtaIntercalibration_Stat106: 0.0 @@ -26315,170 +26315,170 @@ bins: syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 syst_JES_EtaIntercalibration_Stat110: 0.0 - syst_JES_EtaIntercalibration_Stat111: 2.2031686272276122e-10 - syst_JES_EtaIntercalibration_Stat112: 8.598486770938244e-05 - syst_JES_EtaIntercalibration_Stat113: 0.0016410977446514269 - syst_JES_EtaIntercalibration_Stat114: 0.004582829693540881 - syst_JES_EtaIntercalibration_Stat115: 0.0034547179334932687 - syst_JES_EtaIntercalibration_Stat116: 1.8536134980086868e-05 + syst_JES_EtaIntercalibration_Stat111: 2.20316863e-10 + syst_JES_EtaIntercalibration_Stat112: 8.59848677e-05 + syst_JES_EtaIntercalibration_Stat113: 1.64109774e-03 + syst_JES_EtaIntercalibration_Stat114: 4.58282969e-03 + syst_JES_EtaIntercalibration_Stat115: 3.45471793e-03 + syst_JES_EtaIntercalibration_Stat116: 1.85361350e-05 syst_JES_EtaIntercalibration_Stat117: 0.0 syst_JES_EtaIntercalibration_Stat118: 0.0 - syst_JES_EtaIntercalibration_Stat119: 0.00017373095826548035 + syst_JES_EtaIntercalibration_Stat119: 1.73730958e-04 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 0.0023901739868679014 - syst_JES_EtaIntercalibration_Stat121: 0.0039636488240004306 - syst_JES_EtaIntercalibration_Stat122: 0.0006073128188997824 - syst_JES_EtaIntercalibration_Stat123: 4.3617492118988226e-05 + syst_JES_EtaIntercalibration_Stat120: 2.39017399e-03 + syst_JES_EtaIntercalibration_Stat121: 3.96364882e-03 + syst_JES_EtaIntercalibration_Stat122: 6.07312819e-04 + syst_JES_EtaIntercalibration_Stat123: 4.36174921e-05 syst_JES_EtaIntercalibration_Stat124: 0.0 syst_JES_EtaIntercalibration_Stat125: 0.0 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 syst_JES_EtaIntercalibration_Stat128: 0.0 syst_JES_EtaIntercalibration_Stat129: 0.0 - syst_JES_EtaIntercalibration_Stat13: 0.00019234072752901616 + syst_JES_EtaIntercalibration_Stat13: 1.92340728e-04 syst_JES_EtaIntercalibration_Stat130: 0.0 - syst_JES_EtaIntercalibration_Stat131: 0.00041075988119581495 - syst_JES_EtaIntercalibration_Stat132: 0.013201319025006555 - syst_JES_EtaIntercalibration_Stat133: 0.033298268723764006 - syst_JES_EtaIntercalibration_Stat134: 0.026370507674294028 - syst_JES_EtaIntercalibration_Stat135: 0.00023469987020661087 + syst_JES_EtaIntercalibration_Stat131: 4.10759881e-04 + syst_JES_EtaIntercalibration_Stat132: 1.32013190e-02 + syst_JES_EtaIntercalibration_Stat133: 3.32982687e-02 + syst_JES_EtaIntercalibration_Stat134: 2.63705077e-02 + syst_JES_EtaIntercalibration_Stat135: 2.34699870e-04 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 - syst_JES_EtaIntercalibration_Stat138: 0.00042782342712852924 - syst_JES_EtaIntercalibration_Stat139: 0.014530534634004352 - syst_JES_EtaIntercalibration_Stat14: 1.4445466659128737e-08 - syst_JES_EtaIntercalibration_Stat140: 0.03491133161310236 - syst_JES_EtaIntercalibration_Stat141: 0.009709184260276452 - syst_JES_EtaIntercalibration_Stat142: 4.680690974631844e-05 + syst_JES_EtaIntercalibration_Stat138: 4.27823427e-04 + syst_JES_EtaIntercalibration_Stat139: 1.45305346e-02 + syst_JES_EtaIntercalibration_Stat14: 1.44454667e-08 + syst_JES_EtaIntercalibration_Stat140: 3.49113316e-02 + syst_JES_EtaIntercalibration_Stat141: 9.70918426e-03 + syst_JES_EtaIntercalibration_Stat142: 4.68069097e-05 syst_JES_EtaIntercalibration_Stat143: 0.0 syst_JES_EtaIntercalibration_Stat144: 0.0 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 syst_JES_EtaIntercalibration_Stat147: 0.0 syst_JES_EtaIntercalibration_Stat148: 0.0 - syst_JES_EtaIntercalibration_Stat149: 0.0005886899587219065 - syst_JES_EtaIntercalibration_Stat15: 1.3931538168097305e-08 - syst_JES_EtaIntercalibration_Stat150: 0.011331076383115595 - syst_JES_EtaIntercalibration_Stat151: 0.043175005211348844 - syst_JES_EtaIntercalibration_Stat152: 0.028378151366852636 - syst_JES_EtaIntercalibration_Stat153: 0.00025087037987773684 + syst_JES_EtaIntercalibration_Stat149: 5.88689959e-04 + syst_JES_EtaIntercalibration_Stat15: 1.39315382e-08 + syst_JES_EtaIntercalibration_Stat150: 1.13310764e-02 + syst_JES_EtaIntercalibration_Stat151: 4.31750052e-02 + syst_JES_EtaIntercalibration_Stat152: 2.83781514e-02 + syst_JES_EtaIntercalibration_Stat153: 2.50870380e-04 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 0.0010445132533752526 - syst_JES_EtaIntercalibration_Stat157: 0.021430534571027386 - syst_JES_EtaIntercalibration_Stat158: 0.04614652180825766 - syst_JES_EtaIntercalibration_Stat159: 0.011719576912158561 + syst_JES_EtaIntercalibration_Stat156: 1.04451325e-03 + syst_JES_EtaIntercalibration_Stat157: 2.14305346e-02 + syst_JES_EtaIntercalibration_Stat158: 4.61465218e-02 + syst_JES_EtaIntercalibration_Stat159: 1.17195769e-02 syst_JES_EtaIntercalibration_Stat16: 0.0 - syst_JES_EtaIntercalibration_Stat160: 0.0005126240801015887 + syst_JES_EtaIntercalibration_Stat160: 5.12624080e-04 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 - syst_JES_EtaIntercalibration_Stat167: 0.000940284233623004 - syst_JES_EtaIntercalibration_Stat168: 0.015406230257593842 - syst_JES_EtaIntercalibration_Stat169: 0.05561151229736519 + syst_JES_EtaIntercalibration_Stat167: 9.40284234e-04 + syst_JES_EtaIntercalibration_Stat168: 1.54062303e-02 + syst_JES_EtaIntercalibration_Stat169: 5.56115123e-02 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 0.03927892819311647 - syst_JES_EtaIntercalibration_Stat171: 0.0007941142282442746 + syst_JES_EtaIntercalibration_Stat170: 3.92789282e-02 + syst_JES_EtaIntercalibration_Stat171: 7.94114228e-04 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 - syst_JES_EtaIntercalibration_Stat174: 0.0011763103448778674 - syst_JES_EtaIntercalibration_Stat175: 0.0349204123686992 - syst_JES_EtaIntercalibration_Stat176: 0.05549747269020455 - syst_JES_EtaIntercalibration_Stat177: 0.019964691332449894 - syst_JES_EtaIntercalibration_Stat178: 0.0010583644303830322 + syst_JES_EtaIntercalibration_Stat174: 1.17631034e-03 + syst_JES_EtaIntercalibration_Stat175: 3.49204124e-02 + syst_JES_EtaIntercalibration_Stat176: 5.54974727e-02 + syst_JES_EtaIntercalibration_Stat177: 1.99646913e-02 + syst_JES_EtaIntercalibration_Stat178: 1.05836443e-03 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 syst_JES_EtaIntercalibration_Stat180: 0.0 syst_JES_EtaIntercalibration_Stat181: 0.0 syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 - syst_JES_EtaIntercalibration_Stat184: 0.0008620248299788122 - syst_JES_EtaIntercalibration_Stat185: 0.021775607339406172 - syst_JES_EtaIntercalibration_Stat186: 0.06823695241582818 - syst_JES_EtaIntercalibration_Stat187: 0.04788686119385985 - syst_JES_EtaIntercalibration_Stat188: 3.0631318531855594e-05 + syst_JES_EtaIntercalibration_Stat184: 8.62024830e-04 + syst_JES_EtaIntercalibration_Stat185: 2.17756073e-02 + syst_JES_EtaIntercalibration_Stat186: 6.82369524e-02 + syst_JES_EtaIntercalibration_Stat187: 4.78868612e-02 + syst_JES_EtaIntercalibration_Stat188: 3.06313185e-05 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 - syst_JES_EtaIntercalibration_Stat191: 0.0003771700554126746 - syst_JES_EtaIntercalibration_Stat192: 0.04167882435961936 - syst_JES_EtaIntercalibration_Stat193: 0.07500207913784791 - syst_JES_EtaIntercalibration_Stat194: 0.01976287428488073 - syst_JES_EtaIntercalibration_Stat195: 0.0008859439012669018 - syst_JES_EtaIntercalibration_Stat196: 3.7289532804126145e-06 + syst_JES_EtaIntercalibration_Stat191: 3.77170055e-04 + syst_JES_EtaIntercalibration_Stat192: 4.16788244e-02 + syst_JES_EtaIntercalibration_Stat193: 7.50020791e-02 + syst_JES_EtaIntercalibration_Stat194: 1.97628743e-02 + syst_JES_EtaIntercalibration_Stat195: 8.85943901e-04 + syst_JES_EtaIntercalibration_Stat196: 3.72895328e-06 syst_JES_EtaIntercalibration_Stat197: 0.0 syst_JES_EtaIntercalibration_Stat198: 0.0 - syst_JES_EtaIntercalibration_Stat199: 7.921552950609031e-05 + syst_JES_EtaIntercalibration_Stat199: 7.92155295e-05 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 0.002363400674875083 - syst_JES_EtaIntercalibration_Stat201: 0.006772409966178953 - syst_JES_EtaIntercalibration_Stat202: 0.0013238150427835455 - syst_JES_EtaIntercalibration_Stat203: 0.00027873314747263195 + syst_JES_EtaIntercalibration_Stat200: 2.36340067e-03 + syst_JES_EtaIntercalibration_Stat201: 6.77240997e-03 + syst_JES_EtaIntercalibration_Stat202: 1.32381504e-03 + syst_JES_EtaIntercalibration_Stat203: 2.78733147e-04 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 - syst_JES_EtaIntercalibration_Stat206: 0.00021979072563463637 - syst_JES_EtaIntercalibration_Stat207: 0.0019240951139431752 - syst_JES_EtaIntercalibration_Stat208: 0.003666866243470029 - syst_JES_EtaIntercalibration_Stat209: 0.002752962540609661 + syst_JES_EtaIntercalibration_Stat206: 2.19790726e-04 + syst_JES_EtaIntercalibration_Stat207: 1.92409511e-03 + syst_JES_EtaIntercalibration_Stat208: 3.66686624e-03 + syst_JES_EtaIntercalibration_Stat209: 2.75296254e-03 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 0.00027790596264743947 - syst_JES_EtaIntercalibration_Stat211: 4.410352079766421e-06 - syst_JES_EtaIntercalibration_Stat212: 4.38708228780815e-05 - syst_JES_EtaIntercalibration_Stat213: 0.0005946378288504693 - syst_JES_EtaIntercalibration_Stat214: 0.0025306011143599854 - syst_JES_EtaIntercalibration_Stat215: 0.0018842698851279241 - syst_JES_EtaIntercalibration_Stat216: 3.207199139436153e-05 + syst_JES_EtaIntercalibration_Stat210: 2.77905963e-04 + syst_JES_EtaIntercalibration_Stat211: 4.41035208e-06 + syst_JES_EtaIntercalibration_Stat212: 4.38708229e-05 + syst_JES_EtaIntercalibration_Stat213: 5.94637829e-04 + syst_JES_EtaIntercalibration_Stat214: 2.53060111e-03 + syst_JES_EtaIntercalibration_Stat215: 1.88426989e-03 + syst_JES_EtaIntercalibration_Stat216: 3.20719914e-05 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 - syst_JES_EtaIntercalibration_Stat219: 3.1479992058448805e-05 + syst_JES_EtaIntercalibration_Stat219: 3.14799921e-05 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 0.0021252850985220787 - syst_JES_EtaIntercalibration_Stat221: 0.0024443289467663714 - syst_JES_EtaIntercalibration_Stat222: 0.0008101880460732558 - syst_JES_EtaIntercalibration_Stat223: 5.465486323283592e-05 - syst_JES_EtaIntercalibration_Stat224: 8.761579010087146e-07 - syst_JES_EtaIntercalibration_Stat225: 8.275140534607253e-06 - syst_JES_EtaIntercalibration_Stat226: 4.65926075144974e-06 - syst_JES_EtaIntercalibration_Stat227: 3.140307747657863e-06 - syst_JES_EtaIntercalibration_Stat228: 3.760282303232033e-06 + syst_JES_EtaIntercalibration_Stat220: 2.12528510e-03 + syst_JES_EtaIntercalibration_Stat221: 2.44432895e-03 + syst_JES_EtaIntercalibration_Stat222: 8.10188046e-04 + syst_JES_EtaIntercalibration_Stat223: 5.46548632e-05 + syst_JES_EtaIntercalibration_Stat224: 8.76157901e-07 + syst_JES_EtaIntercalibration_Stat225: 8.27514053e-06 + syst_JES_EtaIntercalibration_Stat226: 4.65926075e-06 + syst_JES_EtaIntercalibration_Stat227: 3.14030775e-06 + syst_JES_EtaIntercalibration_Stat228: 3.76028230e-06 syst_JES_EtaIntercalibration_Stat229: 0.0 syst_JES_EtaIntercalibration_Stat23: 0.0 syst_JES_EtaIntercalibration_Stat230: 0.0 - syst_JES_EtaIntercalibration_Stat231: 1.8429020592532853e-05 - syst_JES_EtaIntercalibration_Stat232: 4.1073035826439706e-05 - syst_JES_EtaIntercalibration_Stat233: 2.3700270436220764e-05 - syst_JES_EtaIntercalibration_Stat234: 4.026052671895265e-06 - syst_JES_EtaIntercalibration_Stat235: 2.2386756687827738e-11 - syst_JES_EtaIntercalibration_Stat236: 9.49048914479649e-10 - syst_JES_EtaIntercalibration_Stat237: 2.2631740432410404e-09 - syst_JES_EtaIntercalibration_Stat238: 1.9981227608683105e-09 - syst_JES_EtaIntercalibration_Stat239: 3.2259446290970337e-18 + syst_JES_EtaIntercalibration_Stat231: 1.84290206e-05 + syst_JES_EtaIntercalibration_Stat232: 4.10730358e-05 + syst_JES_EtaIntercalibration_Stat233: 2.37002704e-05 + syst_JES_EtaIntercalibration_Stat234: 4.02605267e-06 + syst_JES_EtaIntercalibration_Stat235: 2.23867567e-11 + syst_JES_EtaIntercalibration_Stat236: 9.49048914e-10 + syst_JES_EtaIntercalibration_Stat237: 2.26317404e-09 + syst_JES_EtaIntercalibration_Stat238: 1.99812276e-09 + syst_JES_EtaIntercalibration_Stat239: 3.22594463e-18 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 - syst_JES_EtaIntercalibration_Stat243: 9.780720355372604e-10 - syst_JES_EtaIntercalibration_Stat244: 1.6259175870873653e-09 - syst_JES_EtaIntercalibration_Stat245: 9.273719480337974e-12 + syst_JES_EtaIntercalibration_Stat243: 9.78072036e-10 + syst_JES_EtaIntercalibration_Stat244: 1.62591759e-09 + syst_JES_EtaIntercalibration_Stat245: 9.27371948e-12 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 - syst_JES_EtaIntercalibration_Stat27: 1.4307966967742134e-09 - syst_JES_EtaIntercalibration_Stat28: 7.856963211623178e-05 - syst_JES_EtaIntercalibration_Stat29: 4.646964087444618e-05 + syst_JES_EtaIntercalibration_Stat27: 1.43079670e-09 + syst_JES_EtaIntercalibration_Stat28: 7.85696321e-05 + syst_JES_EtaIntercalibration_Stat29: 4.64696409e-05 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 4.63619108401498e-05 - syst_JES_EtaIntercalibration_Stat31: 1.9520212601301246e-10 + syst_JES_EtaIntercalibration_Stat30: 4.63619108e-05 + syst_JES_EtaIntercalibration_Stat31: 1.95202126e-10 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 - syst_JES_EtaIntercalibration_Stat34: 1.0140291452911991e-11 - syst_JES_EtaIntercalibration_Stat35: 0.0001872646984638322 - syst_JES_EtaIntercalibration_Stat36: 7.954629909681531e-06 - syst_JES_EtaIntercalibration_Stat37: 1.9484366027151104e-06 - syst_JES_EtaIntercalibration_Stat38: 9.603489479699554e-09 + syst_JES_EtaIntercalibration_Stat34: 1.01402915e-11 + syst_JES_EtaIntercalibration_Stat35: 1.87264698e-04 + syst_JES_EtaIntercalibration_Stat36: 7.95462991e-06 + syst_JES_EtaIntercalibration_Stat37: 1.94843660e-06 + syst_JES_EtaIntercalibration_Stat38: 9.60348948e-09 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 syst_JES_EtaIntercalibration_Stat40: 0.0 @@ -26489,21 +26489,21 @@ bins: syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 syst_JES_EtaIntercalibration_Stat47: 0.0 - syst_JES_EtaIntercalibration_Stat48: 8.912267430345659e-10 - syst_JES_EtaIntercalibration_Stat49: 1.4682019615843047e-08 - syst_JES_EtaIntercalibration_Stat5: 8.757248883068244e-10 - syst_JES_EtaIntercalibration_Stat50: 8.308268151666748e-05 - syst_JES_EtaIntercalibration_Stat51: 4.8604859538424754e-05 - syst_JES_EtaIntercalibration_Stat52: 6.284310363914246e-05 - syst_JES_EtaIntercalibration_Stat53: 1.0054998677647849e-08 - syst_JES_EtaIntercalibration_Stat54: 7.578588308517623e-09 + syst_JES_EtaIntercalibration_Stat48: 8.91226743e-10 + syst_JES_EtaIntercalibration_Stat49: 1.46820196e-08 + syst_JES_EtaIntercalibration_Stat5: 8.75724888e-10 + syst_JES_EtaIntercalibration_Stat50: 8.30826815e-05 + syst_JES_EtaIntercalibration_Stat51: 4.86048595e-05 + syst_JES_EtaIntercalibration_Stat52: 6.28431036e-05 + syst_JES_EtaIntercalibration_Stat53: 1.00549987e-08 + syst_JES_EtaIntercalibration_Stat54: 7.57858831e-09 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 1.1362523168293212e-10 - syst_JES_EtaIntercalibration_Stat57: 3.956089830880992e-05 - syst_JES_EtaIntercalibration_Stat58: 2.8309459108220346e-05 - syst_JES_EtaIntercalibration_Stat59: 1.0207317607971253e-05 - syst_JES_EtaIntercalibration_Stat6: 1.5917612886359563e-09 - syst_JES_EtaIntercalibration_Stat60: 8.917300712659633e-08 + syst_JES_EtaIntercalibration_Stat56: 1.13625232e-10 + syst_JES_EtaIntercalibration_Stat57: 3.95608983e-05 + syst_JES_EtaIntercalibration_Stat58: 2.83094591e-05 + syst_JES_EtaIntercalibration_Stat59: 1.02073176e-05 + syst_JES_EtaIntercalibration_Stat6: 1.59176129e-09 + syst_JES_EtaIntercalibration_Stat60: 8.91730071e-08 syst_JES_EtaIntercalibration_Stat61: 0.0 syst_JES_EtaIntercalibration_Stat62: 0.0 syst_JES_EtaIntercalibration_Stat63: 0.0 @@ -26513,21 +26513,21 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 5.7807965714077854e-08 - syst_JES_EtaIntercalibration_Stat70: 8.757248883068244e-10 - syst_JES_EtaIntercalibration_Stat71: 1.3017470213140492e-07 - syst_JES_EtaIntercalibration_Stat72: 9.053029769088357e-05 - syst_JES_EtaIntercalibration_Stat73: 0.00021030224035896525 - syst_JES_EtaIntercalibration_Stat74: 0.00018633520198824485 - syst_JES_EtaIntercalibration_Stat75: 4.440069392194226e-07 - syst_JES_EtaIntercalibration_Stat76: 7.578588308517623e-09 + syst_JES_EtaIntercalibration_Stat7: 5.78079657e-08 + syst_JES_EtaIntercalibration_Stat70: 8.75724888e-10 + syst_JES_EtaIntercalibration_Stat71: 1.30174702e-07 + syst_JES_EtaIntercalibration_Stat72: 9.05302977e-05 + syst_JES_EtaIntercalibration_Stat73: 2.10302240e-04 + syst_JES_EtaIntercalibration_Stat74: 1.86335202e-04 + syst_JES_EtaIntercalibration_Stat75: 4.44006939e-07 + syst_JES_EtaIntercalibration_Stat76: 7.57858831e-09 syst_JES_EtaIntercalibration_Stat77: 0.0 - syst_JES_EtaIntercalibration_Stat78: 1.243557142836629e-07 - syst_JES_EtaIntercalibration_Stat79: 0.00031989495963519025 - syst_JES_EtaIntercalibration_Stat8: 8.979955900086592e-09 - syst_JES_EtaIntercalibration_Stat80: 0.00062755531031137 - syst_JES_EtaIntercalibration_Stat81: 6.814446914460483e-05 - syst_JES_EtaIntercalibration_Stat82: 1.1946894617430925e-07 + syst_JES_EtaIntercalibration_Stat78: 1.24355714e-07 + syst_JES_EtaIntercalibration_Stat79: 3.19894960e-04 + syst_JES_EtaIntercalibration_Stat8: 8.97995590e-09 + syst_JES_EtaIntercalibration_Stat80: 6.27555310e-04 + syst_JES_EtaIntercalibration_Stat81: 6.81444691e-05 + syst_JES_EtaIntercalibration_Stat82: 1.19468946e-07 syst_JES_EtaIntercalibration_Stat83: 0.0 syst_JES_EtaIntercalibration_Stat84: 0.0 syst_JES_EtaIntercalibration_Stat85: 0.0 @@ -26537,113 +26537,113 @@ bins: syst_JES_EtaIntercalibration_Stat89: 0.0 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 7.564731902057072e-10 - syst_JES_EtaIntercalibration_Stat92: 1.0407423585474937e-05 - syst_JES_EtaIntercalibration_Stat93: 6.09707274025823e-05 - syst_JES_EtaIntercalibration_Stat94: 0.0006085540970817631 - syst_JES_EtaIntercalibration_Stat95: 0.0005401082391521166 - syst_JES_EtaIntercalibration_Stat96: 9.267414333566833e-07 - syst_JES_EtaIntercalibration_Stat97: 7.578588308517623e-09 + syst_JES_EtaIntercalibration_Stat91: 7.56473190e-10 + syst_JES_EtaIntercalibration_Stat92: 1.04074236e-05 + syst_JES_EtaIntercalibration_Stat93: 6.09707274e-05 + syst_JES_EtaIntercalibration_Stat94: 6.08554097e-04 + syst_JES_EtaIntercalibration_Stat95: 5.40108239e-04 + syst_JES_EtaIntercalibration_Stat96: 9.26741433e-07 + syst_JES_EtaIntercalibration_Stat97: 7.57858831e-09 syst_JES_EtaIntercalibration_Stat98: 0.0 - syst_JES_EtaIntercalibration_Stat99: 0.00017758131444700503 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.024461551463470177 - syst_JES_Flavour_Comp: 0.16246651193399825 - syst_JES_Flavour_Response: 0.8956550158961876 - syst_JES_Gjet_Generator: 0.7978201348048318 - syst_JES_Gjet_OOC: 0.5516674541786927 - syst_JES_Gjet_Purity: 0.1732511688272261 - syst_JES_Gjet_Stat1: 0.00018316437290040878 - syst_JES_Gjet_Stat10: 0.049555781448787584 - syst_JES_Gjet_Stat11: 0.08314678270985594 - syst_JES_Gjet_Stat12: 0.07741641880118197 - syst_JES_Gjet_Stat13: 0.005230275901661403 - syst_JES_Gjet_Stat14: 0.017867445256667225 - syst_JES_Gjet_Stat15: 0.003473863087399963 - syst_JES_Gjet_Stat2: 0.00019208443455932827 - syst_JES_Gjet_Stat3: 2.4231388929006347e-06 - syst_JES_Gjet_Stat4: 0.001816063324887103 - syst_JES_Gjet_Stat5: 0.001991384631355781 - syst_JES_Gjet_Stat6: 0.005276224478734771 - syst_JES_Gjet_Stat7: 0.007634188496493914 - syst_JES_Gjet_Stat8: 0.005827871738465081 - syst_JES_Gjet_Stat9: 0.01972787558253549 - syst_JES_Gjet_Veto: 0.23977011907241486 - syst_JES_Gjet_dPhi: 0.03657544360633238 - syst_JES_LArESZee: 1.0144634493169284 - syst_JES_LArEsmear: 0.07633679257081738 - syst_JES_LAr_JVT: 0.11018550120138312 - syst_JES_MJB_Alpha: 0.00016888161821820635 - syst_JES_MJB_Asym: 0.013341978414013416 - syst_JES_MJB_Beta: 8.480120753839709e-05 - syst_JES_MJB_Fragmentation: 0.04058811741138039 - syst_JES_MJB_Stat1: 0.00013813105190361796 - syst_JES_MJB_Stat10: 6.515109112670332e-10 - syst_JES_MJB_Stat11: 5.959074119987097e-07 - syst_JES_MJB_Stat12: 4.708580120375993e-08 - syst_JES_MJB_Stat13: 1.865418789351266e-09 - syst_JES_MJB_Stat14: 8.804880284181585e-12 - syst_JES_MJB_Stat15: 6.196625613993474e-18 - syst_JES_MJB_Stat16: 1.3258787647341798e-22 + syst_JES_EtaIntercalibration_Stat99: 1.77581314e-04 + syst_JES_EtaIntercalibration_TotalStat_MJB: 2.44615515e-02 + syst_JES_Flavour_Comp: 1.62466512e-01 + syst_JES_Flavour_Response: 8.95655016e-01 + syst_JES_Gjet_Generator: 7.97820135e-01 + syst_JES_Gjet_OOC: 5.51667454e-01 + syst_JES_Gjet_Purity: 1.73251169e-01 + syst_JES_Gjet_Stat1: 1.83164373e-04 + syst_JES_Gjet_Stat10: 4.95557814e-02 + syst_JES_Gjet_Stat11: 8.31467827e-02 + syst_JES_Gjet_Stat12: 7.74164188e-02 + syst_JES_Gjet_Stat13: 5.23027590e-03 + syst_JES_Gjet_Stat14: 1.78674453e-02 + syst_JES_Gjet_Stat15: 3.47386309e-03 + syst_JES_Gjet_Stat2: 1.92084435e-04 + syst_JES_Gjet_Stat3: 2.42313889e-06 + syst_JES_Gjet_Stat4: 1.81606332e-03 + syst_JES_Gjet_Stat5: 1.99138463e-03 + syst_JES_Gjet_Stat6: 5.27622448e-03 + syst_JES_Gjet_Stat7: 7.63418850e-03 + syst_JES_Gjet_Stat8: 5.82787174e-03 + syst_JES_Gjet_Stat9: 1.97278756e-02 + syst_JES_Gjet_Veto: 2.39770119e-01 + syst_JES_Gjet_dPhi: 3.65754436e-02 + syst_JES_LArESZee: 1.01446345e+00 + syst_JES_LArEsmear: 7.63367926e-02 + syst_JES_LAr_JVT: 1.10185501e-01 + syst_JES_MJB_Alpha: 1.68881618e-04 + syst_JES_MJB_Asym: 1.33419784e-02 + syst_JES_MJB_Beta: 8.48012075e-05 + syst_JES_MJB_Fragmentation: 4.05881174e-02 + syst_JES_MJB_Stat1: 1.38131052e-04 + syst_JES_MJB_Stat10: 6.51510911e-10 + syst_JES_MJB_Stat11: 5.95907412e-07 + syst_JES_MJB_Stat12: 4.70858012e-08 + syst_JES_MJB_Stat13: 1.86541879e-09 + syst_JES_MJB_Stat14: 8.80488028e-12 + syst_JES_MJB_Stat15: 6.19662561e-18 + syst_JES_MJB_Stat16: 1.32587876e-22 syst_JES_MJB_Stat2: 0.0 - syst_JES_MJB_Stat3: 0.00022005705510162586 - syst_JES_MJB_Stat4: 0.001453190627550288 - syst_JES_MJB_Stat5: 6.339305955702091e-16 - syst_JES_MJB_Stat6: 1.729978013704876e-12 - syst_JES_MJB_Stat7: 4.686063459214222e-16 - syst_JES_MJB_Stat8: 4.4054712282867387e-16 - syst_JES_MJB_Stat9: 2.763487063476069e-25 - syst_JES_MJB_Threshold: 0.01066906831686816 - syst_JES_Pileup_MuOffset: 0.024025175857837127 - syst_JES_Pileup_NPVOffset: 0.05188769290496543 - syst_JES_Pileup_Pt_term: 0.15821690807243075 - syst_JES_Pileup_Rho_topology: 0.2624074694058841 - syst_JES_PunchThrough_MC15: 0.002956609391090595 + syst_JES_MJB_Stat3: 2.20057055e-04 + syst_JES_MJB_Stat4: 1.45319063e-03 + syst_JES_MJB_Stat5: 6.33930596e-16 + syst_JES_MJB_Stat6: 1.72997801e-12 + syst_JES_MJB_Stat7: 4.68606346e-16 + syst_JES_MJB_Stat8: 4.40547123e-16 + syst_JES_MJB_Stat9: 2.76348706e-25 + syst_JES_MJB_Threshold: 1.06690683e-02 + syst_JES_Pileup_MuOffset: 2.40251759e-02 + syst_JES_Pileup_NPVOffset: 5.18876929e-02 + syst_JES_Pileup_Pt_term: 1.58216908e-01 + syst_JES_Pileup_Rho_topology: 2.62407469e-01 + syst_JES_PunchThrough_MC15: 2.95660939e-03 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.7592022309635292 - syst_JES_Zjet_MuScale: 0.04452594384176488 - syst_JES_Zjet_MuSmearID: 0.007910618607289824 - syst_JES_Zjet_MuSmearMS: 0.1160751811327469 - syst_JES_Zjet_OOC: 0.2633569203571457 - syst_JES_Zjet_Stat1: 0.003561076663033246 - syst_JES_Zjet_Stat10: 0.03762535149337479 - syst_JES_Zjet_Stat11: 0.06084040844701817 - syst_JES_Zjet_Stat12: 0.24427260898430675 - syst_JES_Zjet_Stat13: 0.03164790040429223 - syst_JES_Zjet_Stat2: 8.066160610848261e-05 - syst_JES_Zjet_Stat3: 0.00042613967087158297 - syst_JES_Zjet_Stat4: 6.946366964492187e-05 - syst_JES_Zjet_Stat5: 0.0019778165404051003 - syst_JES_Zjet_Stat6: 0.0033574423301078456 - syst_JES_Zjet_Stat7: 0.0037557551837147213 - syst_JES_Zjet_Stat8: 0.005333028032928385 - syst_JES_Zjet_Stat9: 0.013865034826858531 - syst_JES_Zjet_Veto: 0.05195505822342999 - syst_JES_Zjet_dPhi: 0.04323522955877533 + syst_JES_Zjet_MC: 7.59202231e-01 + syst_JES_Zjet_MuScale: 4.45259438e-02 + syst_JES_Zjet_MuSmearID: 7.91061861e-03 + syst_JES_Zjet_MuSmearMS: 1.16075181e-01 + syst_JES_Zjet_OOC: 2.63356920e-01 + syst_JES_Zjet_Stat1: 3.56107666e-03 + syst_JES_Zjet_Stat10: 3.76253515e-02 + syst_JES_Zjet_Stat11: 6.08404084e-02 + syst_JES_Zjet_Stat12: 2.44272609e-01 + syst_JES_Zjet_Stat13: 3.16479004e-02 + syst_JES_Zjet_Stat2: 8.06616061e-05 + syst_JES_Zjet_Stat3: 4.26139671e-04 + syst_JES_Zjet_Stat4: 6.94636696e-05 + syst_JES_Zjet_Stat5: 1.97781654e-03 + syst_JES_Zjet_Stat6: 3.35744233e-03 + syst_JES_Zjet_Stat7: 3.75575518e-03 + syst_JES_Zjet_Stat8: 5.33302803e-03 + syst_JES_Zjet_Stat9: 1.38650348e-02 + syst_JES_Zjet_Veto: 5.19550582e-02 + syst_JES_Zjet_dPhi: 4.32352296e-02 syst_PRW: 0.0 syst_Unfolding_bias: 0.04416 - syst_cleaning: 0.2239541694186558 + syst_cleaning: 2.23954169e-01 syst_lumi: 0.9036 - stat: 0.13861 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.2052871890791045 - syst_JER_NP1: 0.0053692085776211 - syst_JER_NP2: 0.05364322697228421 - syst_JER_NP3: 0.040269460823308775 - syst_JER_NP4: 0.0045638253691393585 - syst_JER_NP5: 0.021877684978077547 - syst_JER_NP6: 3.421432448551338e-05 - syst_JER_NP7: 5.711137277285498e-09 - syst_JER_NP8: 0.022640377094916064 - syst_JES_EtaIntercalibration_Modelling: 0.5931712316018031 + syst_JER_NP0: 2.05287189e-01 + syst_JER_NP1: 5.36920858e-03 + syst_JER_NP2: 5.36432270e-02 + syst_JER_NP3: 4.02694608e-02 + syst_JER_NP4: 4.56382537e-03 + syst_JER_NP5: 2.18776850e-02 + syst_JER_NP6: 3.42143245e-05 + syst_JER_NP7: 5.71113728e-09 + syst_JER_NP8: 2.26403771e-02 + syst_JES_EtaIntercalibration_Modelling: 5.93171232e-01 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 0.0001986000042170191 - syst_JES_EtaIntercalibration_Stat101: 0.00040978598935908 - syst_JES_EtaIntercalibration_Stat102: 8.978110910430992e-05 - syst_JES_EtaIntercalibration_Stat103: 3.7969633797944378e-06 + syst_JES_EtaIntercalibration_Stat100: 1.98600004e-04 + syst_JES_EtaIntercalibration_Stat101: 4.09785989e-04 + syst_JES_EtaIntercalibration_Stat102: 8.97811091e-05 + syst_JES_EtaIntercalibration_Stat103: 3.79696338e-06 syst_JES_EtaIntercalibration_Stat104: 0.0 syst_JES_EtaIntercalibration_Stat105: 0.0 syst_JES_EtaIntercalibration_Stat106: 0.0 @@ -26652,170 +26652,170 @@ bins: syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 syst_JES_EtaIntercalibration_Stat110: 0.0 - syst_JES_EtaIntercalibration_Stat111: 2.243005795801696e-11 - syst_JES_EtaIntercalibration_Stat112: 2.6455807845348437e-05 - syst_JES_EtaIntercalibration_Stat113: 0.0005126170575341793 - syst_JES_EtaIntercalibration_Stat114: 0.0013321503030814502 - syst_JES_EtaIntercalibration_Stat115: 0.000993506732488512 - syst_JES_EtaIntercalibration_Stat116: 1.4654328609663425e-05 + syst_JES_EtaIntercalibration_Stat111: 2.24300580e-11 + syst_JES_EtaIntercalibration_Stat112: 2.64558078e-05 + syst_JES_EtaIntercalibration_Stat113: 5.12617058e-04 + syst_JES_EtaIntercalibration_Stat114: 1.33215030e-03 + syst_JES_EtaIntercalibration_Stat115: 9.93506732e-04 + syst_JES_EtaIntercalibration_Stat116: 1.46543286e-05 syst_JES_EtaIntercalibration_Stat117: 0.0 syst_JES_EtaIntercalibration_Stat118: 0.0 - syst_JES_EtaIntercalibration_Stat119: 2.3252151982109457e-05 + syst_JES_EtaIntercalibration_Stat119: 2.32521520e-05 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 0.0008528722577707637 - syst_JES_EtaIntercalibration_Stat121: 0.0013261160846622742 - syst_JES_EtaIntercalibration_Stat122: 0.00034568004617420423 - syst_JES_EtaIntercalibration_Stat123: 1.1279985239352044e-05 + syst_JES_EtaIntercalibration_Stat120: 8.52872258e-04 + syst_JES_EtaIntercalibration_Stat121: 1.32611608e-03 + syst_JES_EtaIntercalibration_Stat122: 3.45680046e-04 + syst_JES_EtaIntercalibration_Stat123: 1.12799852e-05 syst_JES_EtaIntercalibration_Stat124: 0.0 syst_JES_EtaIntercalibration_Stat125: 0.0 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 syst_JES_EtaIntercalibration_Stat128: 0.0 syst_JES_EtaIntercalibration_Stat129: 0.0 - syst_JES_EtaIntercalibration_Stat13: 2.1096739185108738e-05 + syst_JES_EtaIntercalibration_Stat13: 2.10967392e-05 syst_JES_EtaIntercalibration_Stat130: 0.0 - syst_JES_EtaIntercalibration_Stat131: 0.00011537878834517201 - syst_JES_EtaIntercalibration_Stat132: 0.004558852487194557 - syst_JES_EtaIntercalibration_Stat133: 0.011592796588830497 - syst_JES_EtaIntercalibration_Stat134: 0.009559979131776388 - syst_JES_EtaIntercalibration_Stat135: 7.983653596568428e-05 + syst_JES_EtaIntercalibration_Stat131: 1.15378788e-04 + syst_JES_EtaIntercalibration_Stat132: 4.55885249e-03 + syst_JES_EtaIntercalibration_Stat133: 1.15927966e-02 + syst_JES_EtaIntercalibration_Stat134: 9.55997913e-03 + syst_JES_EtaIntercalibration_Stat135: 7.98365360e-05 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 - syst_JES_EtaIntercalibration_Stat138: 0.000198178174304715 - syst_JES_EtaIntercalibration_Stat139: 0.005204555792764643 - syst_JES_EtaIntercalibration_Stat14: 1.479926765079948e-09 - syst_JES_EtaIntercalibration_Stat140: 0.012312795813705351 - syst_JES_EtaIntercalibration_Stat141: 0.003449287752565738 - syst_JES_EtaIntercalibration_Stat142: 0.00012790958056377167 + syst_JES_EtaIntercalibration_Stat138: 1.98178174e-04 + syst_JES_EtaIntercalibration_Stat139: 5.20455579e-03 + syst_JES_EtaIntercalibration_Stat14: 1.47992677e-09 + syst_JES_EtaIntercalibration_Stat140: 1.23127958e-02 + syst_JES_EtaIntercalibration_Stat141: 3.44928775e-03 + syst_JES_EtaIntercalibration_Stat142: 1.27909581e-04 syst_JES_EtaIntercalibration_Stat143: 0.0 syst_JES_EtaIntercalibration_Stat144: 0.0 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 syst_JES_EtaIntercalibration_Stat147: 0.0 syst_JES_EtaIntercalibration_Stat148: 0.0 - syst_JES_EtaIntercalibration_Stat149: 0.00017235613217985604 - syst_JES_EtaIntercalibration_Stat15: 1.4269083685678867e-09 - syst_JES_EtaIntercalibration_Stat150: 0.00438208854314926 - syst_JES_EtaIntercalibration_Stat151: 0.01665290665319421 - syst_JES_EtaIntercalibration_Stat152: 0.011136244104275014 - syst_JES_EtaIntercalibration_Stat153: 7.519581570805652e-05 + syst_JES_EtaIntercalibration_Stat149: 1.72356132e-04 + syst_JES_EtaIntercalibration_Stat15: 1.42690837e-09 + syst_JES_EtaIntercalibration_Stat150: 4.38208854e-03 + syst_JES_EtaIntercalibration_Stat151: 1.66529067e-02 + syst_JES_EtaIntercalibration_Stat152: 1.11362441e-02 + syst_JES_EtaIntercalibration_Stat153: 7.51958157e-05 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 0.00040391424974072507 - syst_JES_EtaIntercalibration_Stat157: 0.008163862933685255 - syst_JES_EtaIntercalibration_Stat158: 0.017663598161190147 - syst_JES_EtaIntercalibration_Stat159: 0.004976220553793813 + syst_JES_EtaIntercalibration_Stat156: 4.03914250e-04 + syst_JES_EtaIntercalibration_Stat157: 8.16386293e-03 + syst_JES_EtaIntercalibration_Stat158: 1.76635982e-02 + syst_JES_EtaIntercalibration_Stat159: 4.97622055e-03 syst_JES_EtaIntercalibration_Stat16: 0.0 - syst_JES_EtaIntercalibration_Stat160: 0.00012705689857304088 + syst_JES_EtaIntercalibration_Stat160: 1.27056899e-04 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 - syst_JES_EtaIntercalibration_Stat167: 0.0004900782386517482 - syst_JES_EtaIntercalibration_Stat168: 0.00621030134131992 - syst_JES_EtaIntercalibration_Stat169: 0.027447378745519578 + syst_JES_EtaIntercalibration_Stat167: 4.90078239e-04 + syst_JES_EtaIntercalibration_Stat168: 6.21030134e-03 + syst_JES_EtaIntercalibration_Stat169: 2.74473787e-02 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 0.018267065308910462 - syst_JES_EtaIntercalibration_Stat171: 0.00039289965640096965 + syst_JES_EtaIntercalibration_Stat170: 1.82670653e-02 + syst_JES_EtaIntercalibration_Stat171: 3.92899656e-04 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 - syst_JES_EtaIntercalibration_Stat174: 0.0005198832978637452 - syst_JES_EtaIntercalibration_Stat175: 0.017055635432313865 - syst_JES_EtaIntercalibration_Stat176: 0.027670336102042566 - syst_JES_EtaIntercalibration_Stat177: 0.010902642558114064 - syst_JES_EtaIntercalibration_Stat178: 0.0004262157700918632 + syst_JES_EtaIntercalibration_Stat174: 5.19883298e-04 + syst_JES_EtaIntercalibration_Stat175: 1.70556354e-02 + syst_JES_EtaIntercalibration_Stat176: 2.76703361e-02 + syst_JES_EtaIntercalibration_Stat177: 1.09026426e-02 + syst_JES_EtaIntercalibration_Stat178: 4.26215770e-04 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 syst_JES_EtaIntercalibration_Stat180: 0.0 syst_JES_EtaIntercalibration_Stat181: 0.0 syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 - syst_JES_EtaIntercalibration_Stat184: 0.0005145771370747052 - syst_JES_EtaIntercalibration_Stat185: 0.017155013115704693 - syst_JES_EtaIntercalibration_Stat186: 0.051552514002713774 - syst_JES_EtaIntercalibration_Stat187: 0.03538025826644006 - syst_JES_EtaIntercalibration_Stat188: 1.874078973789525e-05 + syst_JES_EtaIntercalibration_Stat184: 5.14577137e-04 + syst_JES_EtaIntercalibration_Stat185: 1.71550131e-02 + syst_JES_EtaIntercalibration_Stat186: 5.15525140e-02 + syst_JES_EtaIntercalibration_Stat187: 3.53802583e-02 + syst_JES_EtaIntercalibration_Stat188: 1.87407897e-05 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 - syst_JES_EtaIntercalibration_Stat191: 0.00027849849317366154 - syst_JES_EtaIntercalibration_Stat192: 0.03463531579183305 - syst_JES_EtaIntercalibration_Stat193: 0.06001608346935011 - syst_JES_EtaIntercalibration_Stat194: 0.016626306715563744 - syst_JES_EtaIntercalibration_Stat195: 0.0006558287329886421 - syst_JES_EtaIntercalibration_Stat196: 6.759398993253764e-06 + syst_JES_EtaIntercalibration_Stat191: 2.78498493e-04 + syst_JES_EtaIntercalibration_Stat192: 3.46353158e-02 + syst_JES_EtaIntercalibration_Stat193: 6.00160835e-02 + syst_JES_EtaIntercalibration_Stat194: 1.66263067e-02 + syst_JES_EtaIntercalibration_Stat195: 6.55828733e-04 + syst_JES_EtaIntercalibration_Stat196: 6.75939899e-06 syst_JES_EtaIntercalibration_Stat197: 0.0 syst_JES_EtaIntercalibration_Stat198: 0.0 - syst_JES_EtaIntercalibration_Stat199: 3.621755889083636e-05 + syst_JES_EtaIntercalibration_Stat199: 3.62175589e-05 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 0.0012643899833516556 - syst_JES_EtaIntercalibration_Stat201: 0.010860910735292873 - syst_JES_EtaIntercalibration_Stat202: 0.008160463268099428 - syst_JES_EtaIntercalibration_Stat203: 0.00041798376762740443 + syst_JES_EtaIntercalibration_Stat200: 1.26438998e-03 + syst_JES_EtaIntercalibration_Stat201: 1.08609107e-02 + syst_JES_EtaIntercalibration_Stat202: 8.16046327e-03 + syst_JES_EtaIntercalibration_Stat203: 4.17983768e-04 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 - syst_JES_EtaIntercalibration_Stat206: 0.00027562486734690684 - syst_JES_EtaIntercalibration_Stat207: 0.008473966883933403 - syst_JES_EtaIntercalibration_Stat208: 0.014806835946616007 - syst_JES_EtaIntercalibration_Stat209: 0.002483920439547129 + syst_JES_EtaIntercalibration_Stat206: 2.75624867e-04 + syst_JES_EtaIntercalibration_Stat207: 8.47396688e-03 + syst_JES_EtaIntercalibration_Stat208: 1.48068359e-02 + syst_JES_EtaIntercalibration_Stat209: 2.48392044e-03 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 0.000300528088329527 - syst_JES_EtaIntercalibration_Stat211: 7.888775744689414e-06 - syst_JES_EtaIntercalibration_Stat212: 5.416420220034631e-05 - syst_JES_EtaIntercalibration_Stat213: 0.0007224093766694894 - syst_JES_EtaIntercalibration_Stat214: 0.002527621164257017 - syst_JES_EtaIntercalibration_Stat215: 0.0017675708613801033 - syst_JES_EtaIntercalibration_Stat216: 7.22852023238505e-05 + syst_JES_EtaIntercalibration_Stat210: 3.00528088e-04 + syst_JES_EtaIntercalibration_Stat211: 7.88877574e-06 + syst_JES_EtaIntercalibration_Stat212: 5.41642022e-05 + syst_JES_EtaIntercalibration_Stat213: 7.22409377e-04 + syst_JES_EtaIntercalibration_Stat214: 2.52762116e-03 + syst_JES_EtaIntercalibration_Stat215: 1.76757086e-03 + syst_JES_EtaIntercalibration_Stat216: 7.22852023e-05 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 - syst_JES_EtaIntercalibration_Stat219: 5.324357144294512e-05 + syst_JES_EtaIntercalibration_Stat219: 5.32435714e-05 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 0.001220928158205879 - syst_JES_EtaIntercalibration_Stat221: 0.0020902346758199185 - syst_JES_EtaIntercalibration_Stat222: 0.000928915582816867 - syst_JES_EtaIntercalibration_Stat223: 9.861431272893403e-05 - syst_JES_EtaIntercalibration_Stat224: 8.829128991481026e-06 - syst_JES_EtaIntercalibration_Stat225: 3.079048067179205e-05 - syst_JES_EtaIntercalibration_Stat226: 0.00011908557458819266 - syst_JES_EtaIntercalibration_Stat227: 7.696428767129595e-05 - syst_JES_EtaIntercalibration_Stat228: 7.441756294719681e-06 + syst_JES_EtaIntercalibration_Stat220: 1.22092816e-03 + syst_JES_EtaIntercalibration_Stat221: 2.09023468e-03 + syst_JES_EtaIntercalibration_Stat222: 9.28915583e-04 + syst_JES_EtaIntercalibration_Stat223: 9.86143127e-05 + syst_JES_EtaIntercalibration_Stat224: 8.82912899e-06 + syst_JES_EtaIntercalibration_Stat225: 3.07904807e-05 + syst_JES_EtaIntercalibration_Stat226: 1.19085575e-04 + syst_JES_EtaIntercalibration_Stat227: 7.69642877e-05 + syst_JES_EtaIntercalibration_Stat228: 7.44175629e-06 syst_JES_EtaIntercalibration_Stat229: 0.0 syst_JES_EtaIntercalibration_Stat23: 0.0 syst_JES_EtaIntercalibration_Stat230: 0.0 - syst_JES_EtaIntercalibration_Stat231: 1.0460720852312235e-05 - syst_JES_EtaIntercalibration_Stat232: 0.00014903167138229377 - syst_JES_EtaIntercalibration_Stat233: 0.00020098971783402255 - syst_JES_EtaIntercalibration_Stat234: 5.20953923106449e-06 - syst_JES_EtaIntercalibration_Stat235: 3.4079831689725233e-09 - syst_JES_EtaIntercalibration_Stat236: 3.235476782485079e-08 - syst_JES_EtaIntercalibration_Stat237: 7.74794534054029e-08 - syst_JES_EtaIntercalibration_Stat238: 6.889383789570734e-08 - syst_JES_EtaIntercalibration_Stat239: 1.7381129853953683e-14 + syst_JES_EtaIntercalibration_Stat231: 1.04607209e-05 + syst_JES_EtaIntercalibration_Stat232: 1.49031671e-04 + syst_JES_EtaIntercalibration_Stat233: 2.00989718e-04 + syst_JES_EtaIntercalibration_Stat234: 5.20953923e-06 + syst_JES_EtaIntercalibration_Stat235: 3.40798317e-09 + syst_JES_EtaIntercalibration_Stat236: 3.23547678e-08 + syst_JES_EtaIntercalibration_Stat237: 7.74794534e-08 + syst_JES_EtaIntercalibration_Stat238: 6.88938379e-08 + syst_JES_EtaIntercalibration_Stat239: 1.73811299e-14 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 - syst_JES_EtaIntercalibration_Stat242: 4.341385349171391e-39 - syst_JES_EtaIntercalibration_Stat243: 3.407272798001358e-08 - syst_JES_EtaIntercalibration_Stat244: 5.666379156921994e-08 - syst_JES_EtaIntercalibration_Stat245: 1.1669296754732051e-09 + syst_JES_EtaIntercalibration_Stat242: 4.34138535e-39 + syst_JES_EtaIntercalibration_Stat243: 3.40727280e-08 + syst_JES_EtaIntercalibration_Stat244: 5.66637916e-08 + syst_JES_EtaIntercalibration_Stat245: 1.16692968e-09 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 - syst_JES_EtaIntercalibration_Stat27: 1.4484120986445813e-10 - syst_JES_EtaIntercalibration_Stat28: 2.7674630756322654e-05 - syst_JES_EtaIntercalibration_Stat29: 2.8344908972644456e-05 + syst_JES_EtaIntercalibration_Stat27: 1.44841210e-10 + syst_JES_EtaIntercalibration_Stat28: 2.76746308e-05 + syst_JES_EtaIntercalibration_Stat29: 2.83449090e-05 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 2.8527739147494675e-05 - syst_JES_EtaIntercalibration_Stat31: 1.991858428704209e-11 + syst_JES_EtaIntercalibration_Stat30: 2.85277391e-05 + syst_JES_EtaIntercalibration_Stat31: 1.99185843e-11 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 - syst_JES_EtaIntercalibration_Stat34: 1.0878145096936334e-12 - syst_JES_EtaIntercalibration_Stat35: 2.1453478770914403e-05 - syst_JES_EtaIntercalibration_Stat36: 6.88962282233759e-05 - syst_JES_EtaIntercalibration_Stat37: 6.664855842964648e-07 - syst_JES_EtaIntercalibration_Stat38: 9.857085804875344e-10 + syst_JES_EtaIntercalibration_Stat34: 1.08781451e-12 + syst_JES_EtaIntercalibration_Stat35: 2.14534788e-05 + syst_JES_EtaIntercalibration_Stat36: 6.88962282e-05 + syst_JES_EtaIntercalibration_Stat37: 6.66485584e-07 + syst_JES_EtaIntercalibration_Stat38: 9.85708580e-10 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 syst_JES_EtaIntercalibration_Stat40: 0.0 @@ -26826,21 +26826,21 @@ bins: syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 syst_JES_EtaIntercalibration_Stat47: 0.0 - syst_JES_EtaIntercalibration_Stat48: 9.00233407233924e-11 - syst_JES_EtaIntercalibration_Stat49: 1.5020420866274022e-09 - syst_JES_EtaIntercalibration_Stat5: 8.82479886456343e-11 - syst_JES_EtaIntercalibration_Stat50: 2.8658599578616888e-05 - syst_JES_EtaIntercalibration_Stat51: 2.7610481705323435e-05 - syst_JES_EtaIntercalibration_Stat52: 3.0814812004416e-05 - syst_JES_EtaIntercalibration_Stat53: 1.031593181770314e-09 - syst_JES_EtaIntercalibration_Stat54: 7.769113897350199e-10 + syst_JES_EtaIntercalibration_Stat48: 9.00233407e-11 + syst_JES_EtaIntercalibration_Stat49: 1.50204209e-09 + syst_JES_EtaIntercalibration_Stat5: 8.82479886e-11 + syst_JES_EtaIntercalibration_Stat50: 2.86585996e-05 + syst_JES_EtaIntercalibration_Stat51: 2.76104817e-05 + syst_JES_EtaIntercalibration_Stat52: 3.08148120e-05 + syst_JES_EtaIntercalibration_Stat53: 1.03159318e-09 + syst_JES_EtaIntercalibration_Stat54: 7.76911390e-10 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 1.1640932640901243e-11 - syst_JES_EtaIntercalibration_Stat57: 9.166209552890441e-05 - syst_JES_EtaIntercalibration_Stat58: 6.522251239411129e-05 - syst_JES_EtaIntercalibration_Stat59: 1.861277249632628e-06 - syst_JES_EtaIntercalibration_Stat6: 1.611062962767129e-10 - syst_JES_EtaIntercalibration_Stat60: 9.828232025649373e-09 + syst_JES_EtaIntercalibration_Stat56: 1.16409326e-11 + syst_JES_EtaIntercalibration_Stat57: 9.16620955e-05 + syst_JES_EtaIntercalibration_Stat58: 6.52225124e-05 + syst_JES_EtaIntercalibration_Stat59: 1.86127725e-06 + syst_JES_EtaIntercalibration_Stat6: 1.61106296e-10 + syst_JES_EtaIntercalibration_Stat60: 9.82823203e-09 syst_JES_EtaIntercalibration_Stat61: 0.0 syst_JES_EtaIntercalibration_Stat62: 0.0 syst_JES_EtaIntercalibration_Stat63: 0.0 @@ -26850,21 +26850,21 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 6.333161513020177e-09 - syst_JES_EtaIntercalibration_Stat70: 8.82479886456343e-11 - syst_JES_EtaIntercalibration_Stat71: 1.4214090781685616e-08 - syst_JES_EtaIntercalibration_Stat72: 2.295969661711583e-05 - syst_JES_EtaIntercalibration_Stat73: 0.00010808895364467175 - syst_JES_EtaIntercalibration_Stat74: 0.00016529639341195563 - syst_JES_EtaIntercalibration_Stat75: 5.8060404724304155e-08 - syst_JES_EtaIntercalibration_Stat76: 7.769113897350199e-10 + syst_JES_EtaIntercalibration_Stat7: 6.33316151e-09 + syst_JES_EtaIntercalibration_Stat70: 8.82479886e-11 + syst_JES_EtaIntercalibration_Stat71: 1.42140908e-08 + syst_JES_EtaIntercalibration_Stat72: 2.29596966e-05 + syst_JES_EtaIntercalibration_Stat73: 1.08088954e-04 + syst_JES_EtaIntercalibration_Stat74: 1.65296393e-04 + syst_JES_EtaIntercalibration_Stat75: 5.80604047e-08 + syst_JES_EtaIntercalibration_Stat76: 7.76911390e-10 syst_JES_EtaIntercalibration_Stat77: 0.0 - syst_JES_EtaIntercalibration_Stat78: 1.3465570569047568e-08 - syst_JES_EtaIntercalibration_Stat79: 0.00018239847223866762 - syst_JES_EtaIntercalibration_Stat8: 9.212703466816893e-10 - syst_JES_EtaIntercalibration_Stat80: 0.00040211846513185645 - syst_JES_EtaIntercalibration_Stat81: 2.4363387505640508e-05 - syst_JES_EtaIntercalibration_Stat82: 1.3085681898548505e-08 + syst_JES_EtaIntercalibration_Stat78: 1.34655706e-08 + syst_JES_EtaIntercalibration_Stat79: 1.82398472e-04 + syst_JES_EtaIntercalibration_Stat8: 9.21270347e-10 + syst_JES_EtaIntercalibration_Stat80: 4.02118465e-04 + syst_JES_EtaIntercalibration_Stat81: 2.43633875e-05 + syst_JES_EtaIntercalibration_Stat82: 1.30856819e-08 syst_JES_EtaIntercalibration_Stat83: 0.0 syst_JES_EtaIntercalibration_Stat84: 0.0 syst_JES_EtaIntercalibration_Stat85: 0.0 @@ -26874,113 +26874,113 @@ bins: syst_JES_EtaIntercalibration_Stat89: 0.0 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 7.622755604110629e-11 - syst_JES_EtaIntercalibration_Stat92: 3.979032580917126e-07 - syst_JES_EtaIntercalibration_Stat93: 9.69930444671163e-06 - syst_JES_EtaIntercalibration_Stat94: 0.00014957055550809457 - syst_JES_EtaIntercalibration_Stat95: 0.00027253357132654325 - syst_JES_EtaIntercalibration_Stat96: 1.1510635424250045e-07 - syst_JES_EtaIntercalibration_Stat97: 7.769113897350199e-10 + syst_JES_EtaIntercalibration_Stat91: 7.62275560e-11 + syst_JES_EtaIntercalibration_Stat92: 3.97903258e-07 + syst_JES_EtaIntercalibration_Stat93: 9.69930445e-06 + syst_JES_EtaIntercalibration_Stat94: 1.49570556e-04 + syst_JES_EtaIntercalibration_Stat95: 2.72533571e-04 + syst_JES_EtaIntercalibration_Stat96: 1.15106354e-07 + syst_JES_EtaIntercalibration_Stat97: 7.76911390e-10 syst_JES_EtaIntercalibration_Stat98: 0.0 - syst_JES_EtaIntercalibration_Stat99: 3.190877771073658e-05 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.029999876666413145 - syst_JES_Flavour_Comp: 0.13194254961914295 - syst_JES_Flavour_Response: 0.4962097540355288 - syst_JES_Gjet_Generator: 0.48551614803217413 + syst_JES_EtaIntercalibration_Stat99: 3.19087777e-05 + syst_JES_EtaIntercalibration_TotalStat_MJB: 2.99998767e-02 + syst_JES_Flavour_Comp: 1.31942550e-01 + syst_JES_Flavour_Response: 4.96209754e-01 + syst_JES_Gjet_Generator: 4.85516148e-01 syst_JES_Gjet_OOC: 0.3442 - syst_JES_Gjet_Purity: 0.11602002154800697 - syst_JES_Gjet_Stat1: 0.0003626048365645444 - syst_JES_Gjet_Stat10: 0.026036902177486474 - syst_JES_Gjet_Stat11: 0.04733102259617892 - syst_JES_Gjet_Stat12: 0.06567093782640841 - syst_JES_Gjet_Stat13: 0.016072466168886468 - syst_JES_Gjet_Stat14: 0.014999629995436555 - syst_JES_Gjet_Stat15: 0.0020419562109653577 - syst_JES_Gjet_Stat2: 0.0003801851519365802 - syst_JES_Gjet_Stat3: 2.5738132311518827e-05 - syst_JES_Gjet_Stat4: 0.0011051013528179214 - syst_JES_Gjet_Stat5: 0.0012116471516080908 - syst_JES_Gjet_Stat6: 0.003544084190591414 - syst_JES_Gjet_Stat7: 0.00512093848820702 - syst_JES_Gjet_Stat8: 0.0032827553975281194 - syst_JES_Gjet_Stat9: 0.010222927210442222 - syst_JES_Gjet_Veto: 0.1626507531491939 - syst_JES_Gjet_dPhi: 0.02389525632840125 - syst_JES_LArESZee: 0.6434609758951977 - syst_JES_LArEsmear: 0.04972592960418136 - syst_JES_LAr_JVT: 0.07099625817604756 - syst_JES_MJB_Alpha: 0.0006781111468631083 - syst_JES_MJB_Asym: 0.014496249583944116 - syst_JES_MJB_Beta: 0.0003486618266187813 - syst_JES_MJB_Fragmentation: 0.043843554543398965 - syst_JES_MJB_Stat1: 0.0002734042199747473 - syst_JES_MJB_Stat10: 9.301978862048655e-08 - syst_JES_MJB_Stat11: 2.3985286255327456e-06 - syst_JES_MJB_Stat12: 5.425649154709507e-07 - syst_JES_MJB_Stat13: 6.438936423101e-08 - syst_JES_MJB_Stat14: 1.257469088107921e-09 - syst_JES_MJB_Stat15: 3.343448668665335e-14 - syst_JES_MJB_Stat16: 6.850703587630014e-18 + syst_JES_Gjet_Purity: 1.16020022e-01 + syst_JES_Gjet_Stat1: 3.62604837e-04 + syst_JES_Gjet_Stat10: 2.60369022e-02 + syst_JES_Gjet_Stat11: 4.73310226e-02 + syst_JES_Gjet_Stat12: 6.56709378e-02 + syst_JES_Gjet_Stat13: 1.60724662e-02 + syst_JES_Gjet_Stat14: 1.49996300e-02 + syst_JES_Gjet_Stat15: 2.04195621e-03 + syst_JES_Gjet_Stat2: 3.80185152e-04 + syst_JES_Gjet_Stat3: 2.57381323e-05 + syst_JES_Gjet_Stat4: 1.10510135e-03 + syst_JES_Gjet_Stat5: 1.21164715e-03 + syst_JES_Gjet_Stat6: 3.54408419e-03 + syst_JES_Gjet_Stat7: 5.12093849e-03 + syst_JES_Gjet_Stat8: 3.28275540e-03 + syst_JES_Gjet_Stat9: 1.02229272e-02 + syst_JES_Gjet_Veto: 1.62650753e-01 + syst_JES_Gjet_dPhi: 2.38952563e-02 + syst_JES_LArESZee: 6.43460976e-01 + syst_JES_LArEsmear: 4.97259296e-02 + syst_JES_LAr_JVT: 7.09962582e-02 + syst_JES_MJB_Alpha: 6.78111147e-04 + syst_JES_MJB_Asym: 1.44962496e-02 + syst_JES_MJB_Beta: 3.48661827e-04 + syst_JES_MJB_Fragmentation: 4.38435545e-02 + syst_JES_MJB_Stat1: 2.73404220e-04 + syst_JES_MJB_Stat10: 9.30197886e-08 + syst_JES_MJB_Stat11: 2.39852863e-06 + syst_JES_MJB_Stat12: 5.42564915e-07 + syst_JES_MJB_Stat13: 6.43893642e-08 + syst_JES_MJB_Stat14: 1.25746909e-09 + syst_JES_MJB_Stat15: 3.34344867e-14 + syst_JES_MJB_Stat16: 6.85070359e-18 syst_JES_MJB_Stat2: 0.0 - syst_JES_MJB_Stat3: 0.00090490994441436 - syst_JES_MJB_Stat4: 0.0012027360807758283 - syst_JES_MJB_Stat5: 3.419674511923613e-12 - syst_JES_MJB_Stat6: 1.3197258689708063e-09 - syst_JES_MJB_Stat7: 2.5279281078051682e-12 - syst_JES_MJB_Stat8: 2.376373655156955e-12 - syst_JES_MJB_Stat9: 1.909586015316299e-19 - syst_JES_MJB_Threshold: 0.01414885581063006 - syst_JES_Pileup_MuOffset: 0.029585190129522577 - syst_JES_Pileup_NPVOffset: 0.04097364122213207 - syst_JES_Pileup_Pt_term: 0.09404804344057349 - syst_JES_Pileup_Rho_topology: 0.16036311140658252 - syst_JES_PunchThrough_MC15: 0.0034621786478584095 + syst_JES_MJB_Stat3: 9.04909944e-04 + syst_JES_MJB_Stat4: 1.20273608e-03 + syst_JES_MJB_Stat5: 3.41967451e-12 + syst_JES_MJB_Stat6: 1.31972587e-09 + syst_JES_MJB_Stat7: 2.52792811e-12 + syst_JES_MJB_Stat8: 2.37637366e-12 + syst_JES_MJB_Stat9: 1.90958602e-19 + syst_JES_MJB_Threshold: 1.41488558e-02 + syst_JES_Pileup_MuOffset: 2.95851901e-02 + syst_JES_Pileup_NPVOffset: 4.09736412e-02 + syst_JES_Pileup_Pt_term: 9.40480434e-02 + syst_JES_Pileup_Rho_topology: 1.60363111e-01 + syst_JES_PunchThrough_MC15: 3.46217865e-03 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.45425528890701977 - syst_JES_Zjet_MuScale: 0.02752913865343411 - syst_JES_Zjet_MuSmearID: 0.004728210655205624 - syst_JES_Zjet_MuSmearMS: 0.08242840408499973 - syst_JES_Zjet_OOC: 0.16411559950230203 - syst_JES_Zjet_Stat1: 0.00243179193188891 - syst_JES_Zjet_Stat10: 0.01959143371476421 - syst_JES_Zjet_Stat11: 0.025001935925043888 - syst_JES_Zjet_Stat12: 0.15325471444624467 - syst_JES_Zjet_Stat13: 0.04659617232133986 - syst_JES_Zjet_Stat2: 4.908631988650198e-05 - syst_JES_Zjet_Stat3: 0.0008424289187818757 - syst_JES_Zjet_Stat4: 0.00028558264200072314 - syst_JES_Zjet_Stat5: 0.0013387172965193212 - syst_JES_Zjet_Stat6: 0.0020420592547720057 - syst_JES_Zjet_Stat7: 0.002289971397201284 - syst_JES_Zjet_Stat8: 0.0035223517711892435 - syst_JES_Zjet_Stat9: 0.007735986620981192 - syst_JES_Zjet_Veto: 0.03382812254618929 - syst_JES_Zjet_dPhi: 0.02763093691860629 + syst_JES_Zjet_MC: 4.54255289e-01 + syst_JES_Zjet_MuScale: 2.75291387e-02 + syst_JES_Zjet_MuSmearID: 4.72821066e-03 + syst_JES_Zjet_MuSmearMS: 8.24284041e-02 + syst_JES_Zjet_OOC: 1.64115600e-01 + syst_JES_Zjet_Stat1: 2.43179193e-03 + syst_JES_Zjet_Stat10: 1.95914337e-02 + syst_JES_Zjet_Stat11: 2.50019359e-02 + syst_JES_Zjet_Stat12: 1.53254714e-01 + syst_JES_Zjet_Stat13: 4.65961723e-02 + syst_JES_Zjet_Stat2: 4.90863199e-05 + syst_JES_Zjet_Stat3: 8.42428919e-04 + syst_JES_Zjet_Stat4: 2.85582642e-04 + syst_JES_Zjet_Stat5: 1.33871730e-03 + syst_JES_Zjet_Stat6: 2.04205925e-03 + syst_JES_Zjet_Stat7: 2.28997140e-03 + syst_JES_Zjet_Stat8: 3.52235177e-03 + syst_JES_Zjet_Stat9: 7.73598662e-03 + syst_JES_Zjet_Veto: 3.38281225e-02 + syst_JES_Zjet_dPhi: 2.76309369e-02 syst_PRW: 0.0 syst_Unfolding_bias: 0.02687 - syst_cleaning: 0.13631239855567065 + syst_cleaning: 1.36312399e-01 syst_lumi: 0.5499 - stat: 0.097031 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.12855585430076688 - syst_JER_NP1: 0.0016910844656610148 - syst_JER_NP2: 0.0398738695764532 - syst_JER_NP3: 0.02405208514869345 - syst_JER_NP4: 0.0009584254587603566 - syst_JER_NP5: 0.013653804305027956 - syst_JER_NP6: 4.161736416449268e-06 - syst_JER_NP7: 6.607659854290322e-10 - syst_JER_NP8: 0.01584354341679916 - syst_JES_EtaIntercalibration_Modelling: 0.37547988960795226 + syst_JER_NP0: 1.28555854e-01 + syst_JER_NP1: 1.69108447e-03 + syst_JER_NP2: 3.98738696e-02 + syst_JER_NP3: 2.40520851e-02 + syst_JER_NP4: 9.58425459e-04 + syst_JER_NP5: 1.36538043e-02 + syst_JER_NP6: 4.16173642e-06 + syst_JER_NP7: 6.60765985e-10 + syst_JER_NP8: 1.58435434e-02 + syst_JES_EtaIntercalibration_Modelling: 3.75479890e-01 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 6.839699226391464e-05 - syst_JES_EtaIntercalibration_Stat101: 0.00015947862176479957 - syst_JES_EtaIntercalibration_Stat102: 4.415212052665194e-05 - syst_JES_EtaIntercalibration_Stat103: 5.19983413196998e-07 + syst_JES_EtaIntercalibration_Stat100: 6.83969923e-05 + syst_JES_EtaIntercalibration_Stat101: 1.59478622e-04 + syst_JES_EtaIntercalibration_Stat102: 4.41521205e-05 + syst_JES_EtaIntercalibration_Stat103: 5.19983413e-07 syst_JES_EtaIntercalibration_Stat104: 0.0 syst_JES_EtaIntercalibration_Stat105: 0.0 syst_JES_EtaIntercalibration_Stat106: 0.0 @@ -26989,170 +26989,170 @@ bins: syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 syst_JES_EtaIntercalibration_Stat110: 0.0 - syst_JES_EtaIntercalibration_Stat111: 2.5738275000473516e-12 - syst_JES_EtaIntercalibration_Stat112: 6.262323590329711e-06 - syst_JES_EtaIntercalibration_Stat113: 0.00013579656356108572 - syst_JES_EtaIntercalibration_Stat114: 0.00033464590883499533 - syst_JES_EtaIntercalibration_Stat115: 0.0001731628352158742 - syst_JES_EtaIntercalibration_Stat116: 5.581454512938362e-06 + syst_JES_EtaIntercalibration_Stat111: 2.57382750e-12 + syst_JES_EtaIntercalibration_Stat112: 6.26232359e-06 + syst_JES_EtaIntercalibration_Stat113: 1.35796564e-04 + syst_JES_EtaIntercalibration_Stat114: 3.34645909e-04 + syst_JES_EtaIntercalibration_Stat115: 1.73162835e-04 + syst_JES_EtaIntercalibration_Stat116: 5.58145451e-06 syst_JES_EtaIntercalibration_Stat117: 0.0 syst_JES_EtaIntercalibration_Stat118: 0.0 - syst_JES_EtaIntercalibration_Stat119: 4.7484102539787386e-05 + syst_JES_EtaIntercalibration_Stat119: 4.74841025e-05 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 0.00030370093233310954 - syst_JES_EtaIntercalibration_Stat121: 0.0004708599022002192 - syst_JES_EtaIntercalibration_Stat122: 0.0001533335980794816 - syst_JES_EtaIntercalibration_Stat123: 2.8405314203507765e-06 + syst_JES_EtaIntercalibration_Stat120: 3.03700932e-04 + syst_JES_EtaIntercalibration_Stat121: 4.70859902e-04 + syst_JES_EtaIntercalibration_Stat122: 1.53333598e-04 + syst_JES_EtaIntercalibration_Stat123: 2.84053142e-06 syst_JES_EtaIntercalibration_Stat124: 0.0 syst_JES_EtaIntercalibration_Stat125: 0.0 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 syst_JES_EtaIntercalibration_Stat128: 0.0 syst_JES_EtaIntercalibration_Stat129: 0.0 - syst_JES_EtaIntercalibration_Stat13: 4.7536174161540055e-05 + syst_JES_EtaIntercalibration_Stat13: 4.75361742e-05 syst_JES_EtaIntercalibration_Stat130: 0.0 - syst_JES_EtaIntercalibration_Stat131: 2.238695309214722e-05 - syst_JES_EtaIntercalibration_Stat132: 0.001569060217933015 - syst_JES_EtaIntercalibration_Stat133: 0.004141272630484499 - syst_JES_EtaIntercalibration_Stat134: 0.0035477845463753855 - syst_JES_EtaIntercalibration_Stat135: 0.00011893747730215234 + syst_JES_EtaIntercalibration_Stat131: 2.23869531e-05 + syst_JES_EtaIntercalibration_Stat132: 1.56906022e-03 + syst_JES_EtaIntercalibration_Stat133: 4.14127263e-03 + syst_JES_EtaIntercalibration_Stat134: 3.54778455e-03 + syst_JES_EtaIntercalibration_Stat135: 1.18937477e-04 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 - syst_JES_EtaIntercalibration_Stat138: 8.398309608486699e-05 - syst_JES_EtaIntercalibration_Stat139: 0.002188063241773418 - syst_JES_EtaIntercalibration_Stat14: 1.631991105214731e-10 - syst_JES_EtaIntercalibration_Stat140: 0.004602136894965207 - syst_JES_EtaIntercalibration_Stat141: 0.0011189079084089092 - syst_JES_EtaIntercalibration_Stat142: 7.557450810293111e-05 + syst_JES_EtaIntercalibration_Stat138: 8.39830961e-05 + syst_JES_EtaIntercalibration_Stat139: 2.18806324e-03 + syst_JES_EtaIntercalibration_Stat14: 1.63199111e-10 + syst_JES_EtaIntercalibration_Stat140: 4.60213689e-03 + syst_JES_EtaIntercalibration_Stat141: 1.11890791e-03 + syst_JES_EtaIntercalibration_Stat142: 7.55745081e-05 syst_JES_EtaIntercalibration_Stat143: 0.0 syst_JES_EtaIntercalibration_Stat144: 0.0 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 syst_JES_EtaIntercalibration_Stat147: 0.0 syst_JES_EtaIntercalibration_Stat148: 0.0 - syst_JES_EtaIntercalibration_Stat149: 1.4842283744424239e-05 - syst_JES_EtaIntercalibration_Stat15: 1.5723322849233618e-10 - syst_JES_EtaIntercalibration_Stat150: 0.0015094822787962766 - syst_JES_EtaIntercalibration_Stat151: 0.006388177106968779 - syst_JES_EtaIntercalibration_Stat152: 0.004325789176554955 - syst_JES_EtaIntercalibration_Stat153: 0.00012258412277595335 + syst_JES_EtaIntercalibration_Stat149: 1.48422837e-05 + syst_JES_EtaIntercalibration_Stat15: 1.57233228e-10 + syst_JES_EtaIntercalibration_Stat150: 1.50948228e-03 + syst_JES_EtaIntercalibration_Stat151: 6.38817711e-03 + syst_JES_EtaIntercalibration_Stat152: 4.32578918e-03 + syst_JES_EtaIntercalibration_Stat153: 1.22584123e-04 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 0.00011570965436256709 - syst_JES_EtaIntercalibration_Stat157: 0.0035684958848231844 - syst_JES_EtaIntercalibration_Stat158: 0.006626645757847631 - syst_JES_EtaIntercalibration_Stat159: 0.0019723017010589428 + syst_JES_EtaIntercalibration_Stat156: 1.15709654e-04 + syst_JES_EtaIntercalibration_Stat157: 3.56849588e-03 + syst_JES_EtaIntercalibration_Stat158: 6.62664576e-03 + syst_JES_EtaIntercalibration_Stat159: 1.97230170e-03 syst_JES_EtaIntercalibration_Stat16: 0.0 - syst_JES_EtaIntercalibration_Stat160: 4.0982386455379526e-05 + syst_JES_EtaIntercalibration_Stat160: 4.09823865e-05 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 - syst_JES_EtaIntercalibration_Stat167: 0.00019700215100348524 - syst_JES_EtaIntercalibration_Stat168: 0.0020543088253716867 - syst_JES_EtaIntercalibration_Stat169: 0.012658639529981095 + syst_JES_EtaIntercalibration_Stat167: 1.97002151e-04 + syst_JES_EtaIntercalibration_Stat168: 2.05430883e-03 + syst_JES_EtaIntercalibration_Stat169: 1.26586395e-02 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 0.007957655936266659 - syst_JES_EtaIntercalibration_Stat171: 0.00022337048894325768 + syst_JES_EtaIntercalibration_Stat170: 7.95765594e-03 + syst_JES_EtaIntercalibration_Stat171: 2.23370489e-04 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 - syst_JES_EtaIntercalibration_Stat174: 0.00018290550262664942 - syst_JES_EtaIntercalibration_Stat175: 0.008143070735293904 - syst_JES_EtaIntercalibration_Stat176: 0.012230863951495823 - syst_JES_EtaIntercalibration_Stat177: 0.005071910562105763 - syst_JES_EtaIntercalibration_Stat178: 0.0001177975700088928 + syst_JES_EtaIntercalibration_Stat174: 1.82905503e-04 + syst_JES_EtaIntercalibration_Stat175: 8.14307074e-03 + syst_JES_EtaIntercalibration_Stat176: 1.22308640e-02 + syst_JES_EtaIntercalibration_Stat177: 5.07191056e-03 + syst_JES_EtaIntercalibration_Stat178: 1.17797570e-04 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 syst_JES_EtaIntercalibration_Stat180: 0.0 syst_JES_EtaIntercalibration_Stat181: 0.0 syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 - syst_JES_EtaIntercalibration_Stat184: 0.000276606304158094 - syst_JES_EtaIntercalibration_Stat185: 0.010797998460362921 - syst_JES_EtaIntercalibration_Stat186: 0.03164025600402121 - syst_JES_EtaIntercalibration_Stat187: 0.021420966364755815 - syst_JES_EtaIntercalibration_Stat188: 1.4159515351875579e-05 + syst_JES_EtaIntercalibration_Stat184: 2.76606304e-04 + syst_JES_EtaIntercalibration_Stat185: 1.07979985e-02 + syst_JES_EtaIntercalibration_Stat186: 3.16402560e-02 + syst_JES_EtaIntercalibration_Stat187: 2.14209664e-02 + syst_JES_EtaIntercalibration_Stat188: 1.41595154e-05 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 - syst_JES_EtaIntercalibration_Stat191: 0.000266765304153295 - syst_JES_EtaIntercalibration_Stat192: 0.022450404784769472 - syst_JES_EtaIntercalibration_Stat193: 0.03764193671956851 - syst_JES_EtaIntercalibration_Stat194: 0.010816616106712857 - syst_JES_EtaIntercalibration_Stat195: 0.00046456062350925474 - syst_JES_EtaIntercalibration_Stat196: 4.9990133033929805e-06 + syst_JES_EtaIntercalibration_Stat191: 2.66765304e-04 + syst_JES_EtaIntercalibration_Stat192: 2.24504048e-02 + syst_JES_EtaIntercalibration_Stat193: 3.76419367e-02 + syst_JES_EtaIntercalibration_Stat194: 1.08166161e-02 + syst_JES_EtaIntercalibration_Stat195: 4.64560624e-04 + syst_JES_EtaIntercalibration_Stat196: 4.99901330e-06 syst_JES_EtaIntercalibration_Stat197: 0.0 syst_JES_EtaIntercalibration_Stat198: 0.0 - syst_JES_EtaIntercalibration_Stat199: 2.0321961593310817e-05 + syst_JES_EtaIntercalibration_Stat199: 2.03219616e-05 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 0.0030185749535169737 - syst_JES_EtaIntercalibration_Stat201: 0.012022020244118707 - syst_JES_EtaIntercalibration_Stat202: 0.009580861808835361 - syst_JES_EtaIntercalibration_Stat203: 0.00021813873452461395 + syst_JES_EtaIntercalibration_Stat200: 3.01857495e-03 + syst_JES_EtaIntercalibration_Stat201: 1.20220202e-02 + syst_JES_EtaIntercalibration_Stat202: 9.58086181e-03 + syst_JES_EtaIntercalibration_Stat203: 2.18138735e-04 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 - syst_JES_EtaIntercalibration_Stat206: 0.0003761141585675817 - syst_JES_EtaIntercalibration_Stat207: 0.00957306851276016 - syst_JES_EtaIntercalibration_Stat208: 0.0171200058411205 - syst_JES_EtaIntercalibration_Stat209: 0.004131296051785686 + syst_JES_EtaIntercalibration_Stat206: 3.76114159e-04 + syst_JES_EtaIntercalibration_Stat207: 9.57306851e-03 + syst_JES_EtaIntercalibration_Stat208: 1.71200058e-02 + syst_JES_EtaIntercalibration_Stat209: 4.13129605e-03 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 0.00022516097086306943 - syst_JES_EtaIntercalibration_Stat211: 6.226186714193527e-06 - syst_JES_EtaIntercalibration_Stat212: 8.122572298847206e-05 - syst_JES_EtaIntercalibration_Stat213: 0.0005981094109776237 - syst_JES_EtaIntercalibration_Stat214: 0.0017876444696862967 - syst_JES_EtaIntercalibration_Stat215: 0.001230777100046958 - syst_JES_EtaIntercalibration_Stat216: 9.978553602601933e-05 + syst_JES_EtaIntercalibration_Stat210: 2.25160971e-04 + syst_JES_EtaIntercalibration_Stat211: 6.22618671e-06 + syst_JES_EtaIntercalibration_Stat212: 8.12257230e-05 + syst_JES_EtaIntercalibration_Stat213: 5.98109411e-04 + syst_JES_EtaIntercalibration_Stat214: 1.78764447e-03 + syst_JES_EtaIntercalibration_Stat215: 1.23077710e-03 + syst_JES_EtaIntercalibration_Stat216: 9.97855360e-05 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 - syst_JES_EtaIntercalibration_Stat219: 3.02684997150503e-07 + syst_JES_EtaIntercalibration_Stat219: 3.02684997e-07 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 0.00031318432220499157 - syst_JES_EtaIntercalibration_Stat221: 0.000997745954639757 - syst_JES_EtaIntercalibration_Stat222: 0.0007088611905725972 - syst_JES_EtaIntercalibration_Stat223: 8.593570081752985e-05 - syst_JES_EtaIntercalibration_Stat224: 2.9245677602956603e-05 - syst_JES_EtaIntercalibration_Stat225: 0.00013644912165345732 - syst_JES_EtaIntercalibration_Stat226: 0.00034589093656816163 - syst_JES_EtaIntercalibration_Stat227: 0.00020775034897684287 - syst_JES_EtaIntercalibration_Stat228: 8.480986779261007e-06 + syst_JES_EtaIntercalibration_Stat220: 3.13184322e-04 + syst_JES_EtaIntercalibration_Stat221: 9.97745955e-04 + syst_JES_EtaIntercalibration_Stat222: 7.08861191e-04 + syst_JES_EtaIntercalibration_Stat223: 8.59357008e-05 + syst_JES_EtaIntercalibration_Stat224: 2.92456776e-05 + syst_JES_EtaIntercalibration_Stat225: 1.36449122e-04 + syst_JES_EtaIntercalibration_Stat226: 3.45890937e-04 + syst_JES_EtaIntercalibration_Stat227: 2.07750349e-04 + syst_JES_EtaIntercalibration_Stat228: 8.48098678e-06 syst_JES_EtaIntercalibration_Stat229: 0.0 syst_JES_EtaIntercalibration_Stat23: 0.0 syst_JES_EtaIntercalibration_Stat230: 0.0 - syst_JES_EtaIntercalibration_Stat231: 2.1122359598302458e-05 - syst_JES_EtaIntercalibration_Stat232: 0.0002702420165333289 - syst_JES_EtaIntercalibration_Stat233: 0.0004161754437734163 - syst_JES_EtaIntercalibration_Stat234: 7.225020484400026e-05 - syst_JES_EtaIntercalibration_Stat235: 1.1004584805888863e-07 - syst_JES_EtaIntercalibration_Stat236: 2.6842285204505224e-07 - syst_JES_EtaIntercalibration_Stat237: 6.449421989604959e-07 - syst_JES_EtaIntercalibration_Stat238: 5.915836880780267e-07 - syst_JES_EtaIntercalibration_Stat239: 8.04450997575365e-12 + syst_JES_EtaIntercalibration_Stat231: 2.11223596e-05 + syst_JES_EtaIntercalibration_Stat232: 2.70242017e-04 + syst_JES_EtaIntercalibration_Stat233: 4.16175444e-04 + syst_JES_EtaIntercalibration_Stat234: 7.22502048e-05 + syst_JES_EtaIntercalibration_Stat235: 1.10045848e-07 + syst_JES_EtaIntercalibration_Stat236: 2.68422852e-07 + syst_JES_EtaIntercalibration_Stat237: 6.44942199e-07 + syst_JES_EtaIntercalibration_Stat238: 5.91583688e-07 + syst_JES_EtaIntercalibration_Stat239: 8.04450998e-12 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 - syst_JES_EtaIntercalibration_Stat242: 3.071792107223404e-31 - syst_JES_EtaIntercalibration_Stat243: 3.040976441868631e-07 - syst_JES_EtaIntercalibration_Stat244: 4.954115158128644e-07 - syst_JES_EtaIntercalibration_Stat245: 1.872580520965654e-08 + syst_JES_EtaIntercalibration_Stat242: 3.07179211e-31 + syst_JES_EtaIntercalibration_Stat243: 3.04097644e-07 + syst_JES_EtaIntercalibration_Stat244: 4.95411516e-07 + syst_JES_EtaIntercalibration_Stat245: 1.87258052e-08 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 - syst_JES_EtaIntercalibration_Stat27: 1.634436284319459e-11 - syst_JES_EtaIntercalibration_Stat28: 6.592763214995724e-06 - syst_JES_EtaIntercalibration_Stat29: 1.743537837097535e-05 + syst_JES_EtaIntercalibration_Stat27: 1.63443628e-11 + syst_JES_EtaIntercalibration_Stat28: 6.59276321e-06 + syst_JES_EtaIntercalibration_Stat29: 1.74353784e-05 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 1.7590230196182766e-05 - syst_JES_EtaIntercalibration_Stat31: 2.2923692438174088e-12 + syst_JES_EtaIntercalibration_Stat30: 1.75902302e-05 + syst_JES_EtaIntercalibration_Stat31: 2.29236924e-12 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 - syst_JES_EtaIntercalibration_Stat34: 1.33454514723182e-13 - syst_JES_EtaIntercalibration_Stat35: 4.73696523005637e-05 - syst_JES_EtaIntercalibration_Stat36: 5.677131090850378e-05 - syst_JES_EtaIntercalibration_Stat37: 1.334227833495839e-07 - syst_JES_EtaIntercalibration_Stat38: 1.0781339917267937e-10 + syst_JES_EtaIntercalibration_Stat34: 1.33454515e-13 + syst_JES_EtaIntercalibration_Stat35: 4.73696523e-05 + syst_JES_EtaIntercalibration_Stat36: 5.67713109e-05 + syst_JES_EtaIntercalibration_Stat37: 1.33422783e-07 + syst_JES_EtaIntercalibration_Stat38: 1.07813399e-10 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 syst_JES_EtaIntercalibration_Stat40: 0.0 @@ -27163,21 +27163,21 @@ bins: syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 syst_JES_EtaIntercalibration_Stat47: 0.0 - syst_JES_EtaIntercalibration_Stat48: 1.0119506843221165e-11 - syst_JES_EtaIntercalibration_Stat49: 1.6546963709393938e-10 - syst_JES_EtaIntercalibration_Stat5: 9.86489537450854e-12 - syst_JES_EtaIntercalibration_Stat50: 6.803703481928059e-06 - syst_JES_EtaIntercalibration_Stat51: 1.639958367970053e-05 - syst_JES_EtaIntercalibration_Stat52: 1.7744688890129913e-05 - syst_JES_EtaIntercalibration_Stat53: 1.1303841076377535e-10 - syst_JES_EtaIntercalibration_Stat54: 8.498307287336696e-11 + syst_JES_EtaIntercalibration_Stat48: 1.01195068e-11 + syst_JES_EtaIntercalibration_Stat49: 1.65469637e-10 + syst_JES_EtaIntercalibration_Stat5: 9.86489537e-12 + syst_JES_EtaIntercalibration_Stat50: 6.80370348e-06 + syst_JES_EtaIntercalibration_Stat51: 1.63995837e-05 + syst_JES_EtaIntercalibration_Stat52: 1.77446889e-05 + syst_JES_EtaIntercalibration_Stat53: 1.13038411e-10 + syst_JES_EtaIntercalibration_Stat54: 8.49830729e-11 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 1.3467846598472971e-12 - syst_JES_EtaIntercalibration_Stat57: 6.347605124507588e-05 - syst_JES_EtaIntercalibration_Stat58: 5.522247106703937e-05 - syst_JES_EtaIntercalibration_Stat59: 2.998559820980732e-07 - syst_JES_EtaIntercalibration_Stat6: 1.817539289121421e-11 - syst_JES_EtaIntercalibration_Stat60: 1.116308562853479e-09 + syst_JES_EtaIntercalibration_Stat56: 1.34678466e-12 + syst_JES_EtaIntercalibration_Stat57: 6.34760512e-05 + syst_JES_EtaIntercalibration_Stat58: 5.52224711e-05 + syst_JES_EtaIntercalibration_Stat59: 2.99855982e-07 + syst_JES_EtaIntercalibration_Stat6: 1.81753929e-11 + syst_JES_EtaIntercalibration_Stat60: 1.11630856e-09 syst_JES_EtaIntercalibration_Stat61: 0.0 syst_JES_EtaIntercalibration_Stat62: 0.0 syst_JES_EtaIntercalibration_Stat63: 0.0 @@ -27187,21 +27187,21 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 7.174817140526998e-10 - syst_JES_EtaIntercalibration_Stat70: 9.86489537450854e-12 - syst_JES_EtaIntercalibration_Stat71: 1.6053825673340295e-09 - syst_JES_EtaIntercalibration_Stat72: 3.7269814528650397e-06 - syst_JES_EtaIntercalibration_Stat73: 5.3107905955704944e-05 - syst_JES_EtaIntercalibration_Stat74: 0.00013095627820001605 - syst_JES_EtaIntercalibration_Stat75: 7.245527439048175e-09 - syst_JES_EtaIntercalibration_Stat76: 8.498307287336696e-11 + syst_JES_EtaIntercalibration_Stat7: 7.17481714e-10 + syst_JES_EtaIntercalibration_Stat70: 9.86489537e-12 + syst_JES_EtaIntercalibration_Stat71: 1.60538257e-09 + syst_JES_EtaIntercalibration_Stat72: 3.72698145e-06 + syst_JES_EtaIntercalibration_Stat73: 5.31079060e-05 + syst_JES_EtaIntercalibration_Stat74: 1.30956278e-04 + syst_JES_EtaIntercalibration_Stat75: 7.24552744e-09 + syst_JES_EtaIntercalibration_Stat76: 8.49830729e-11 syst_JES_EtaIntercalibration_Stat77: 0.0 - syst_JES_EtaIntercalibration_Stat78: 1.5175053237138905e-09 - syst_JES_EtaIntercalibration_Stat79: 8.185519572238526e-05 - syst_JES_EtaIntercalibration_Stat8: 1.0093667371178822e-10 - syst_JES_EtaIntercalibration_Stat80: 0.00016210494224421415 - syst_JES_EtaIntercalibration_Stat81: 7.610223830479627e-06 - syst_JES_EtaIntercalibration_Stat82: 1.47786425290011e-09 + syst_JES_EtaIntercalibration_Stat78: 1.51750532e-09 + syst_JES_EtaIntercalibration_Stat79: 8.18551957e-05 + syst_JES_EtaIntercalibration_Stat8: 1.00936674e-10 + syst_JES_EtaIntercalibration_Stat80: 1.62104942e-04 + syst_JES_EtaIntercalibration_Stat81: 7.61022383e-06 + syst_JES_EtaIntercalibration_Stat82: 1.47786425e-09 syst_JES_EtaIntercalibration_Stat83: 0.0 syst_JES_EtaIntercalibration_Stat84: 0.0 syst_JES_EtaIntercalibration_Stat85: 0.0 @@ -27211,113 +27211,113 @@ bins: syst_JES_EtaIntercalibration_Stat89: 0.0 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 8.519091897027524e-12 - syst_JES_EtaIntercalibration_Stat92: 3.894303614293575e-07 - syst_JES_EtaIntercalibration_Stat93: 2.277268264829596e-06 - syst_JES_EtaIntercalibration_Stat94: 2.499386914165152e-05 - syst_JES_EtaIntercalibration_Stat95: 0.000161159985961156 - syst_JES_EtaIntercalibration_Stat96: 1.4034413800369435e-08 - syst_JES_EtaIntercalibration_Stat97: 8.498307287336696e-11 + syst_JES_EtaIntercalibration_Stat91: 8.51909190e-12 + syst_JES_EtaIntercalibration_Stat92: 3.89430361e-07 + syst_JES_EtaIntercalibration_Stat93: 2.27726826e-06 + syst_JES_EtaIntercalibration_Stat94: 2.49938691e-05 + syst_JES_EtaIntercalibration_Stat95: 1.61159986e-04 + syst_JES_EtaIntercalibration_Stat96: 1.40344138e-08 + syst_JES_EtaIntercalibration_Stat97: 8.49830729e-11 syst_JES_EtaIntercalibration_Stat98: 0.0 - syst_JES_EtaIntercalibration_Stat99: 3.767260074591435e-05 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.02890699007160725 - syst_JES_Flavour_Comp: 0.09972122843206456 - syst_JES_Flavour_Response: 0.2632009498463104 - syst_JES_Gjet_Generator: 0.29935368295713355 - syst_JES_Gjet_OOC: 0.21585334720592125 - syst_JES_Gjet_Purity: 0.07620315085349161 - syst_JES_Gjet_Stat1: 0.00041543238619539525 - syst_JES_Gjet_Stat10: 0.013717394313425564 - syst_JES_Gjet_Stat11: 0.025285720772799815 - syst_JES_Gjet_Stat12: 0.04612334875093091 - syst_JES_Gjet_Stat13: 0.02407867261706924 - syst_JES_Gjet_Stat14: 0.009894515791588792 - syst_JES_Gjet_Stat15: 0.0005369681065947958 - syst_JES_Gjet_Stat2: 0.00043543742172838794 - syst_JES_Gjet_Stat3: 9.588945016316798e-05 - syst_JES_Gjet_Stat4: 0.0006794489016842989 - syst_JES_Gjet_Stat5: 0.0007448837140789158 - syst_JES_Gjet_Stat6: 0.0027579062257444505 - syst_JES_Gjet_Stat7: 0.0034056624539140694 - syst_JES_Gjet_Stat8: 0.0019846425370831896 - syst_JES_Gjet_Stat9: 0.005643479157399273 - syst_JES_Gjet_Veto: 0.11346801080040136 - syst_JES_Gjet_dPhi: 0.015830006317118134 - syst_JES_LArESZee: 0.4089006327948148 - syst_JES_LArEsmear: 0.03187553450532241 - syst_JES_LAr_JVT: 0.04452115901456295 - syst_JES_MJB_Alpha: 0.0012285016361405466 - syst_JES_MJB_Asym: 0.011521372834866511 - syst_JES_MJB_Beta: 0.0006557539958058524 - syst_JES_MJB_Fragmentation: 0.0369498887007796 - syst_JES_MJB_Stat1: 0.0003132413885488315 - syst_JES_MJB_Stat10: 2.4984832899181055e-06 - syst_JES_MJB_Stat11: 4.835909602908226e-06 - syst_JES_MJB_Stat12: 2.346062818852044e-06 - syst_JES_MJB_Stat13: 5.803255081893524e-07 - syst_JES_MJB_Stat14: 3.3761698738756e-08 - syst_JES_MJB_Stat15: 1.5599705790494898e-11 - syst_JES_MJB_Stat16: 1.9164493503666486e-14 + syst_JES_EtaIntercalibration_Stat99: 3.76726007e-05 + syst_JES_EtaIntercalibration_TotalStat_MJB: 2.89069901e-02 + syst_JES_Flavour_Comp: 9.97212284e-02 + syst_JES_Flavour_Response: 2.63200950e-01 + syst_JES_Gjet_Generator: 2.99353683e-01 + syst_JES_Gjet_OOC: 2.15853347e-01 + syst_JES_Gjet_Purity: 7.62031509e-02 + syst_JES_Gjet_Stat1: 4.15432386e-04 + syst_JES_Gjet_Stat10: 1.37173943e-02 + syst_JES_Gjet_Stat11: 2.52857208e-02 + syst_JES_Gjet_Stat12: 4.61233488e-02 + syst_JES_Gjet_Stat13: 2.40786726e-02 + syst_JES_Gjet_Stat14: 9.89451579e-03 + syst_JES_Gjet_Stat15: 5.36968107e-04 + syst_JES_Gjet_Stat2: 4.35437422e-04 + syst_JES_Gjet_Stat3: 9.58894502e-05 + syst_JES_Gjet_Stat4: 6.79448902e-04 + syst_JES_Gjet_Stat5: 7.44883714e-04 + syst_JES_Gjet_Stat6: 2.75790623e-03 + syst_JES_Gjet_Stat7: 3.40566245e-03 + syst_JES_Gjet_Stat8: 1.98464254e-03 + syst_JES_Gjet_Stat9: 5.64347916e-03 + syst_JES_Gjet_Veto: 1.13468011e-01 + syst_JES_Gjet_dPhi: 1.58300063e-02 + syst_JES_LArESZee: 4.08900633e-01 + syst_JES_LArEsmear: 3.18755345e-02 + syst_JES_LAr_JVT: 4.45211590e-02 + syst_JES_MJB_Alpha: 1.22850164e-03 + syst_JES_MJB_Asym: 1.15213728e-02 + syst_JES_MJB_Beta: 6.55753996e-04 + syst_JES_MJB_Fragmentation: 3.69498887e-02 + syst_JES_MJB_Stat1: 3.13241389e-04 + syst_JES_MJB_Stat10: 2.49848329e-06 + syst_JES_MJB_Stat11: 4.83590960e-06 + syst_JES_MJB_Stat12: 2.34606282e-06 + syst_JES_MJB_Stat13: 5.80325508e-07 + syst_JES_MJB_Stat14: 3.37616987e-08 + syst_JES_MJB_Stat15: 1.55997058e-11 + syst_JES_MJB_Stat16: 1.91644935e-14 syst_JES_MJB_Stat2: 0.0 - syst_JES_MJB_Stat3: 0.001701739918436422 - syst_JES_MJB_Stat4: 0.000766778892510742 - syst_JES_MJB_Stat5: 1.5926207175595826e-09 - syst_JES_MJB_Stat6: 1.3080289188985847e-07 - syst_JES_MJB_Stat7: 1.1774471294918391e-09 - syst_JES_MJB_Stat8: 1.107039110013073e-09 - syst_JES_MJB_Stat9: 4.2054193510950704e-15 - syst_JES_MJB_Threshold: 0.0135463389149984 - syst_JES_Pileup_MuOffset: 0.02626389917738796 - syst_JES_Pileup_NPVOffset: 0.031130629611365073 - syst_JES_Pileup_Pt_term: 0.05650220526669734 - syst_JES_Pileup_Rho_topology: 0.09921068138058521 - syst_JES_PunchThrough_MC15: 0.0029367943807279053 + syst_JES_MJB_Stat3: 1.70173992e-03 + syst_JES_MJB_Stat4: 7.66778893e-04 + syst_JES_MJB_Stat5: 1.59262072e-09 + syst_JES_MJB_Stat6: 1.30802892e-07 + syst_JES_MJB_Stat7: 1.17744713e-09 + syst_JES_MJB_Stat8: 1.10703911e-09 + syst_JES_MJB_Stat9: 4.20541935e-15 + syst_JES_MJB_Threshold: 1.35463389e-02 + syst_JES_Pileup_MuOffset: 2.62638992e-02 + syst_JES_Pileup_NPVOffset: 3.11306296e-02 + syst_JES_Pileup_Pt_term: 5.65022053e-02 + syst_JES_Pileup_Rho_topology: 9.92106814e-02 + syst_JES_PunchThrough_MC15: 2.93679438e-03 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.26865045598323484 - syst_JES_Zjet_MuScale: 0.017000119852518685 - syst_JES_Zjet_MuSmearID: 0.0028619906970498697 - syst_JES_Zjet_MuSmearMS: 0.05685902566875377 - syst_JES_Zjet_OOC: 0.10189286186971096 - syst_JES_Zjet_Stat1: 0.001999568640982349 - syst_JES_Zjet_Stat10: 0.010574959704414954 - syst_JES_Zjet_Stat11: 0.011095201699383387 - syst_JES_Zjet_Stat12: 0.08816724604409508 - syst_JES_Zjet_Stat13: 0.04388201995122831 - syst_JES_Zjet_Stat2: 3.018098532188769e-05 - syst_JES_Zjet_Stat3: 0.0009568441880996091 - syst_JES_Zjet_Stat4: 0.0005363271481922204 - syst_JES_Zjet_Stat5: 0.0011802651089903489 - syst_JES_Zjet_Stat6: 0.0012551554594949583 - syst_JES_Zjet_Stat7: 0.0014318462094442964 - syst_JES_Zjet_Stat8: 0.0026639903809886397 - syst_JES_Zjet_Stat9: 0.004490524997146771 - syst_JES_Zjet_Veto: 0.02121011786860224 - syst_JES_Zjet_dPhi: 0.017615069542865847 + syst_JES_Zjet_MC: 2.68650456e-01 + syst_JES_Zjet_MuScale: 1.70001199e-02 + syst_JES_Zjet_MuSmearID: 2.86199070e-03 + syst_JES_Zjet_MuSmearMS: 5.68590257e-02 + syst_JES_Zjet_OOC: 1.01892862e-01 + syst_JES_Zjet_Stat1: 1.99956864e-03 + syst_JES_Zjet_Stat10: 1.05749597e-02 + syst_JES_Zjet_Stat11: 1.10952017e-02 + syst_JES_Zjet_Stat12: 8.81672460e-02 + syst_JES_Zjet_Stat13: 4.38820200e-02 + syst_JES_Zjet_Stat2: 3.01809853e-05 + syst_JES_Zjet_Stat3: 9.56844188e-04 + syst_JES_Zjet_Stat4: 5.36327148e-04 + syst_JES_Zjet_Stat5: 1.18026511e-03 + syst_JES_Zjet_Stat6: 1.25515546e-03 + syst_JES_Zjet_Stat7: 1.43184621e-03 + syst_JES_Zjet_Stat8: 2.66399038e-03 + syst_JES_Zjet_Stat9: 4.49052500e-03 + syst_JES_Zjet_Veto: 2.12101179e-02 + syst_JES_Zjet_dPhi: 1.76150695e-02 syst_PRW: 0.0 syst_Unfolding_bias: 0.01652 - syst_cleaning: 0.08764177086298519 + syst_cleaning: 8.76417709e-02 syst_lumi: 0.3381 - stat: 0.06978 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.07545934534568928 - syst_JER_NP1: 0.003080004342529406 - syst_JER_NP2: 0.02634613254350627 - syst_JER_NP3: 0.013297625464721135 - syst_JER_NP4: 0.0001641278998220595 - syst_JER_NP5: 0.007933434439131644 - syst_JER_NP6: 4.865535196666447e-07 - syst_JER_NP7: 8.134196702809687e-11 - syst_JER_NP8: 0.009731387054269293 - syst_JES_EtaIntercalibration_Modelling: 0.24422768065884753 + syst_JER_NP0: 7.54593453e-02 + syst_JER_NP1: 3.08000434e-03 + syst_JER_NP2: 2.63461325e-02 + syst_JER_NP3: 1.32976255e-02 + syst_JER_NP4: 1.64127900e-04 + syst_JER_NP5: 7.93343444e-03 + syst_JER_NP6: 4.86553520e-07 + syst_JER_NP7: 8.13419670e-11 + syst_JER_NP8: 9.73138705e-03 + syst_JES_EtaIntercalibration_Modelling: 2.44227681e-01 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 1.2731245922925218e-05 - syst_JES_EtaIntercalibration_Stat101: 4.714128627859023e-05 - syst_JES_EtaIntercalibration_Stat102: 8.784820814905676e-06 - syst_JES_EtaIntercalibration_Stat103: 6.567814457641141e-08 + syst_JES_EtaIntercalibration_Stat100: 1.27312459e-05 + syst_JES_EtaIntercalibration_Stat101: 4.71412863e-05 + syst_JES_EtaIntercalibration_Stat102: 8.78482081e-06 + syst_JES_EtaIntercalibration_Stat103: 6.56781446e-08 syst_JES_EtaIntercalibration_Stat104: 0.0 syst_JES_EtaIntercalibration_Stat105: 0.0 syst_JES_EtaIntercalibration_Stat106: 0.0 @@ -27326,170 +27326,170 @@ bins: syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 syst_JES_EtaIntercalibration_Stat110: 0.0 - syst_JES_EtaIntercalibration_Stat111: 3.135011961699668e-13 - syst_JES_EtaIntercalibration_Stat112: 1.1563005956497645e-06 - syst_JES_EtaIntercalibration_Stat113: 3.866749636322476e-05 - syst_JES_EtaIntercalibration_Stat114: 7.002088474162549e-05 - syst_JES_EtaIntercalibration_Stat115: 1.1263194973008325e-05 - syst_JES_EtaIntercalibration_Stat116: 1.4340598921093743e-05 + syst_JES_EtaIntercalibration_Stat111: 3.13501196e-13 + syst_JES_EtaIntercalibration_Stat112: 1.15630060e-06 + syst_JES_EtaIntercalibration_Stat113: 3.86674964e-05 + syst_JES_EtaIntercalibration_Stat114: 7.00208847e-05 + syst_JES_EtaIntercalibration_Stat115: 1.12631950e-05 + syst_JES_EtaIntercalibration_Stat116: 1.43405989e-05 syst_JES_EtaIntercalibration_Stat117: 0.0 syst_JES_EtaIntercalibration_Stat118: 0.0 - syst_JES_EtaIntercalibration_Stat119: 2.997313098908689e-05 + syst_JES_EtaIntercalibration_Stat119: 2.99731310e-05 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 9.551274509195095e-05 - syst_JES_EtaIntercalibration_Stat121: 0.00014951564031899807 - syst_JES_EtaIntercalibration_Stat122: 4.955745274930905e-05 - syst_JES_EtaIntercalibration_Stat123: 9.164709324359393e-07 + syst_JES_EtaIntercalibration_Stat120: 9.55127451e-05 + syst_JES_EtaIntercalibration_Stat121: 1.49515640e-04 + syst_JES_EtaIntercalibration_Stat122: 4.95574527e-05 + syst_JES_EtaIntercalibration_Stat123: 9.16470932e-07 syst_JES_EtaIntercalibration_Stat124: 0.0 syst_JES_EtaIntercalibration_Stat125: 0.0 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 syst_JES_EtaIntercalibration_Stat128: 0.0 syst_JES_EtaIntercalibration_Stat129: 0.0 - syst_JES_EtaIntercalibration_Stat13: 3.011170779003297e-05 + syst_JES_EtaIntercalibration_Stat13: 3.01117078e-05 syst_JES_EtaIntercalibration_Stat130: 0.0 - syst_JES_EtaIntercalibration_Stat131: 2.8990161693236553e-06 - syst_JES_EtaIntercalibration_Stat132: 0.0005734540260561434 - syst_JES_EtaIntercalibration_Stat133: 0.0014780856225198862 - syst_JES_EtaIntercalibration_Stat134: 0.0012992509024434041 - syst_JES_EtaIntercalibration_Stat135: 8.203205208179301e-05 + syst_JES_EtaIntercalibration_Stat131: 2.89901617e-06 + syst_JES_EtaIntercalibration_Stat132: 5.73454026e-04 + syst_JES_EtaIntercalibration_Stat133: 1.47808562e-03 + syst_JES_EtaIntercalibration_Stat134: 1.29925090e-03 + syst_JES_EtaIntercalibration_Stat135: 8.20320521e-05 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 - syst_JES_EtaIntercalibration_Stat138: 3.385162237648293e-05 - syst_JES_EtaIntercalibration_Stat139: 0.0009151479812030402 - syst_JES_EtaIntercalibration_Stat14: 1.847358189415361e-11 - syst_JES_EtaIntercalibration_Stat140: 0.0016949778759618075 - syst_JES_EtaIntercalibration_Stat141: 0.00029750457139344935 - syst_JES_EtaIntercalibration_Stat142: 2.105760962217697e-05 + syst_JES_EtaIntercalibration_Stat138: 3.38516224e-05 + syst_JES_EtaIntercalibration_Stat139: 9.15147981e-04 + syst_JES_EtaIntercalibration_Stat14: 1.84735819e-11 + syst_JES_EtaIntercalibration_Stat140: 1.69497788e-03 + syst_JES_EtaIntercalibration_Stat141: 2.97504571e-04 + syst_JES_EtaIntercalibration_Stat142: 2.10576096e-05 syst_JES_EtaIntercalibration_Stat143: 0.0 syst_JES_EtaIntercalibration_Stat144: 0.0 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 syst_JES_EtaIntercalibration_Stat147: 0.0 syst_JES_EtaIntercalibration_Stat148: 0.0 - syst_JES_EtaIntercalibration_Stat149: 1.615136040709884e-05 - syst_JES_EtaIntercalibration_Stat15: 1.779194878891854e-11 - syst_JES_EtaIntercalibration_Stat150: 0.00045284468363888296 - syst_JES_EtaIntercalibration_Stat151: 0.002439899741792683 - syst_JES_EtaIntercalibration_Stat152: 0.0016531185680404173 - syst_JES_EtaIntercalibration_Stat153: 8.419730652906895e-05 + syst_JES_EtaIntercalibration_Stat149: 1.61513604e-05 + syst_JES_EtaIntercalibration_Stat15: 1.77919488e-11 + syst_JES_EtaIntercalibration_Stat150: 4.52844684e-04 + syst_JES_EtaIntercalibration_Stat151: 2.43989974e-03 + syst_JES_EtaIntercalibration_Stat152: 1.65311857e-03 + syst_JES_EtaIntercalibration_Stat153: 8.41973065e-05 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 2.2109628578541076e-05 - syst_JES_EtaIntercalibration_Stat157: 0.0014823509807059866 - syst_JES_EtaIntercalibration_Stat158: 0.002361484861268435 - syst_JES_EtaIntercalibration_Stat159: 0.0007135228868088256 + syst_JES_EtaIntercalibration_Stat156: 2.21096286e-05 + syst_JES_EtaIntercalibration_Stat157: 1.48235098e-03 + syst_JES_EtaIntercalibration_Stat158: 2.36148486e-03 + syst_JES_EtaIntercalibration_Stat159: 7.13522887e-04 syst_JES_EtaIntercalibration_Stat16: 0.0 - syst_JES_EtaIntercalibration_Stat160: 1.8003266891039525e-05 + syst_JES_EtaIntercalibration_Stat160: 1.80032669e-05 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 - syst_JES_EtaIntercalibration_Stat167: 7.67544314194301e-05 - syst_JES_EtaIntercalibration_Stat168: 0.0005804929349268602 - syst_JES_EtaIntercalibration_Stat169: 0.00544137710051417 + syst_JES_EtaIntercalibration_Stat167: 7.67544314e-05 + syst_JES_EtaIntercalibration_Stat168: 5.80492935e-04 + syst_JES_EtaIntercalibration_Stat169: 5.44137710e-03 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 0.0033227944564778603 - syst_JES_EtaIntercalibration_Stat171: 0.00010530281335629168 + syst_JES_EtaIntercalibration_Stat170: 3.32279446e-03 + syst_JES_EtaIntercalibration_Stat171: 1.05302813e-04 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 - syst_JES_EtaIntercalibration_Stat174: 4.9476137089678766e-05 - syst_JES_EtaIntercalibration_Stat175: 0.0037170096852174057 - syst_JES_EtaIntercalibration_Stat176: 0.004693129952387852 - syst_JES_EtaIntercalibration_Stat177: 0.0021044160116288793 - syst_JES_EtaIntercalibration_Stat178: 2.2093530653790942e-05 + syst_JES_EtaIntercalibration_Stat174: 4.94761371e-05 + syst_JES_EtaIntercalibration_Stat175: 3.71700969e-03 + syst_JES_EtaIntercalibration_Stat176: 4.69312995e-03 + syst_JES_EtaIntercalibration_Stat177: 2.10441601e-03 + syst_JES_EtaIntercalibration_Stat178: 2.20935307e-05 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 syst_JES_EtaIntercalibration_Stat180: 0.0 syst_JES_EtaIntercalibration_Stat181: 0.0 syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 - syst_JES_EtaIntercalibration_Stat184: 0.0001616238234295922 - syst_JES_EtaIntercalibration_Stat185: 0.005641318529386547 - syst_JES_EtaIntercalibration_Stat186: 0.016948541972688982 - syst_JES_EtaIntercalibration_Stat187: 0.01134414416119612 - syst_JES_EtaIntercalibration_Stat188: 2.7963960288262628e-05 + syst_JES_EtaIntercalibration_Stat184: 1.61623823e-04 + syst_JES_EtaIntercalibration_Stat185: 5.64131853e-03 + syst_JES_EtaIntercalibration_Stat186: 1.69485420e-02 + syst_JES_EtaIntercalibration_Stat187: 1.13441442e-02 + syst_JES_EtaIntercalibration_Stat188: 2.79639603e-05 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 - syst_JES_EtaIntercalibration_Stat191: 0.0002264485095998647 - syst_JES_EtaIntercalibration_Stat192: 0.01213545478134215 - syst_JES_EtaIntercalibration_Stat193: 0.02017961037780462 - syst_JES_EtaIntercalibration_Stat194: 0.006111640921225657 - syst_JES_EtaIntercalibration_Stat195: 0.00025501803541514475 - syst_JES_EtaIntercalibration_Stat196: 2.3044668971369498e-06 + syst_JES_EtaIntercalibration_Stat191: 2.26448510e-04 + syst_JES_EtaIntercalibration_Stat192: 1.21354548e-02 + syst_JES_EtaIntercalibration_Stat193: 2.01796104e-02 + syst_JES_EtaIntercalibration_Stat194: 6.11164092e-03 + syst_JES_EtaIntercalibration_Stat195: 2.55018035e-04 + syst_JES_EtaIntercalibration_Stat196: 2.30446690e-06 syst_JES_EtaIntercalibration_Stat197: 0.0 syst_JES_EtaIntercalibration_Stat198: 0.0 - syst_JES_EtaIntercalibration_Stat199: 2.249351899436813e-05 + syst_JES_EtaIntercalibration_Stat199: 2.24935190e-05 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 0.0029277134422617253 - syst_JES_EtaIntercalibration_Stat201: 0.010364878713713922 - syst_JES_EtaIntercalibration_Stat202: 0.0076863654609965045 - syst_JES_EtaIntercalibration_Stat203: 7.117566016553692e-05 + syst_JES_EtaIntercalibration_Stat200: 2.92771344e-03 + syst_JES_EtaIntercalibration_Stat201: 1.03648787e-02 + syst_JES_EtaIntercalibration_Stat202: 7.68636546e-03 + syst_JES_EtaIntercalibration_Stat203: 7.11756602e-05 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 - syst_JES_EtaIntercalibration_Stat206: 0.00028957505883621957 - syst_JES_EtaIntercalibration_Stat207: 0.007537222830724856 - syst_JES_EtaIntercalibration_Stat208: 0.013931064603970507 - syst_JES_EtaIntercalibration_Stat209: 0.0035941272473300106 + syst_JES_EtaIntercalibration_Stat206: 2.89575059e-04 + syst_JES_EtaIntercalibration_Stat207: 7.53722283e-03 + syst_JES_EtaIntercalibration_Stat208: 1.39310646e-02 + syst_JES_EtaIntercalibration_Stat209: 3.59412725e-03 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 0.00014759189908324915 - syst_JES_EtaIntercalibration_Stat211: 2.2233779975523734e-06 - syst_JES_EtaIntercalibration_Stat212: 9.095386234239863e-05 - syst_JES_EtaIntercalibration_Stat213: 0.00039624908832702695 - syst_JES_EtaIntercalibration_Stat214: 0.0008033587360575597 - syst_JES_EtaIntercalibration_Stat215: 0.0004912767244639216 - syst_JES_EtaIntercalibration_Stat216: 9.142168602142492e-05 + syst_JES_EtaIntercalibration_Stat210: 1.47591899e-04 + syst_JES_EtaIntercalibration_Stat211: 2.22337800e-06 + syst_JES_EtaIntercalibration_Stat212: 9.09538623e-05 + syst_JES_EtaIntercalibration_Stat213: 3.96249088e-04 + syst_JES_EtaIntercalibration_Stat214: 8.03358736e-04 + syst_JES_EtaIntercalibration_Stat215: 4.91276724e-04 + syst_JES_EtaIntercalibration_Stat216: 9.14216860e-05 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 - syst_JES_EtaIntercalibration_Stat219: 2.950573437621914e-05 + syst_JES_EtaIntercalibration_Stat219: 2.95057344e-05 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 0.0004979181559252485 - syst_JES_EtaIntercalibration_Stat221: 0.00044330318067886676 - syst_JES_EtaIntercalibration_Stat222: 0.00022059475855060564 - syst_JES_EtaIntercalibration_Stat223: 1.7736200269505306e-05 - syst_JES_EtaIntercalibration_Stat224: 4.3491693645751264e-05 - syst_JES_EtaIntercalibration_Stat225: 0.0002542693982275492 - syst_JES_EtaIntercalibration_Stat226: 0.0005984585428415239 - syst_JES_EtaIntercalibration_Stat227: 0.0003151126941270377 - syst_JES_EtaIntercalibration_Stat228: 6.095086791834801e-06 + syst_JES_EtaIntercalibration_Stat220: 4.97918156e-04 + syst_JES_EtaIntercalibration_Stat221: 4.43303181e-04 + syst_JES_EtaIntercalibration_Stat222: 2.20594759e-04 + syst_JES_EtaIntercalibration_Stat223: 1.77362003e-05 + syst_JES_EtaIntercalibration_Stat224: 4.34916936e-05 + syst_JES_EtaIntercalibration_Stat225: 2.54269398e-04 + syst_JES_EtaIntercalibration_Stat226: 5.98458543e-04 + syst_JES_EtaIntercalibration_Stat227: 3.15112694e-04 + syst_JES_EtaIntercalibration_Stat228: 6.09508679e-06 syst_JES_EtaIntercalibration_Stat229: 0.0 syst_JES_EtaIntercalibration_Stat23: 0.0 syst_JES_EtaIntercalibration_Stat230: 0.0 - syst_JES_EtaIntercalibration_Stat231: 3.332379151222142e-05 - syst_JES_EtaIntercalibration_Stat232: 0.00036547404832628 - syst_JES_EtaIntercalibration_Stat233: 0.000527122357712135 - syst_JES_EtaIntercalibration_Stat234: 0.0001828883010883966 - syst_JES_EtaIntercalibration_Stat235: 1.2921099024463826e-06 - syst_JES_EtaIntercalibration_Stat236: 4.964579438381462e-07 - syst_JES_EtaIntercalibration_Stat237: 1.1642784632552472e-06 - syst_JES_EtaIntercalibration_Stat238: 1.369026559274874e-06 - syst_JES_EtaIntercalibration_Stat239: 6.574864865531458e-10 + syst_JES_EtaIntercalibration_Stat231: 3.33237915e-05 + syst_JES_EtaIntercalibration_Stat232: 3.65474048e-04 + syst_JES_EtaIntercalibration_Stat233: 5.27122358e-04 + syst_JES_EtaIntercalibration_Stat234: 1.82888301e-04 + syst_JES_EtaIntercalibration_Stat235: 1.29210990e-06 + syst_JES_EtaIntercalibration_Stat236: 4.96457944e-07 + syst_JES_EtaIntercalibration_Stat237: 1.16427846e-06 + syst_JES_EtaIntercalibration_Stat238: 1.36902656e-06 + syst_JES_EtaIntercalibration_Stat239: 6.57486487e-10 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 - syst_JES_EtaIntercalibration_Stat242: 4.949335182628068e-25 - syst_JES_EtaIntercalibration_Stat243: 7.824874567684776e-07 - syst_JES_EtaIntercalibration_Stat244: 1.0837003368090277e-06 - syst_JES_EtaIntercalibration_Stat245: 2.6914681866966213e-07 + syst_JES_EtaIntercalibration_Stat242: 4.94933518e-25 + syst_JES_EtaIntercalibration_Stat243: 7.82487457e-07 + syst_JES_EtaIntercalibration_Stat244: 1.08370034e-06 + syst_JES_EtaIntercalibration_Stat245: 2.69146819e-07 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 - syst_JES_EtaIntercalibration_Stat27: 1.943357082473522e-12 - syst_JES_EtaIntercalibration_Stat28: 1.2116347656464418e-06 - syst_JES_EtaIntercalibration_Stat29: 1.0714586592201866e-05 + syst_JES_EtaIntercalibration_Stat27: 1.94335708e-12 + syst_JES_EtaIntercalibration_Stat28: 1.21163477e-06 + syst_JES_EtaIntercalibration_Stat29: 1.07145866e-05 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 1.0812940616724019e-05 - syst_JES_EtaIntercalibration_Stat31: 2.803324232050228e-13 + syst_JES_EtaIntercalibration_Stat30: 1.08129406e-05 + syst_JES_EtaIntercalibration_Stat31: 2.80332423e-13 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 - syst_JES_EtaIntercalibration_Stat34: 1.7588975950861948e-14 - syst_JES_EtaIntercalibration_Stat35: 3.000971688491724e-05 - syst_JES_EtaIntercalibration_Stat36: 3.1532260639459385e-05 - syst_JES_EtaIntercalibration_Stat37: 2.093976538837052e-08 - syst_JES_EtaIntercalibration_Stat38: 1.2003459751567461e-11 + syst_JES_EtaIntercalibration_Stat34: 1.75889760e-14 + syst_JES_EtaIntercalibration_Stat35: 3.00097169e-05 + syst_JES_EtaIntercalibration_Stat36: 3.15322606e-05 + syst_JES_EtaIntercalibration_Stat37: 2.09397654e-08 + syst_JES_EtaIntercalibration_Stat38: 1.20034598e-11 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 syst_JES_EtaIntercalibration_Stat40: 0.0 @@ -27500,21 +27500,21 @@ bins: syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 syst_JES_EtaIntercalibration_Stat47: 0.0 - syst_JES_EtaIntercalibration_Stat48: 1.1972801207319865e-12 - syst_JES_EtaIntercalibration_Stat49: 1.8718305558997586e-11 - syst_JES_EtaIntercalibration_Stat5: 1.1578759648597946e-12 - syst_JES_EtaIntercalibration_Stat50: 1.2491098758215787e-06 - syst_JES_EtaIntercalibration_Stat51: 1.007035709731785e-05 - syst_JES_EtaIntercalibration_Stat52: 1.0717727699969802e-05 - syst_JES_EtaIntercalibration_Stat53: 1.2634693966614308e-11 - syst_JES_EtaIntercalibration_Stat54: 9.471719841190405e-12 + syst_JES_EtaIntercalibration_Stat48: 1.19728012e-12 + syst_JES_EtaIntercalibration_Stat49: 1.87183056e-11 + syst_JES_EtaIntercalibration_Stat5: 1.15787596e-12 + syst_JES_EtaIntercalibration_Stat50: 1.24910988e-06 + syst_JES_EtaIntercalibration_Stat51: 1.00703571e-05 + syst_JES_EtaIntercalibration_Stat52: 1.07177277e-05 + syst_JES_EtaIntercalibration_Stat53: 1.26346940e-11 + syst_JES_EtaIntercalibration_Stat54: 9.47171984e-12 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 1.6581352199081954e-13 - syst_JES_EtaIntercalibration_Stat57: 3.249528402564747e-05 - syst_JES_EtaIntercalibration_Stat58: 3.102983888001999e-05 - syst_JES_EtaIntercalibration_Stat59: 4.2530807548763987e-08 - syst_JES_EtaIntercalibration_Stat6: 2.1614073580655727e-12 - syst_JES_EtaIntercalibration_Stat60: 1.260582527048507e-10 + syst_JES_EtaIntercalibration_Stat56: 1.65813522e-13 + syst_JES_EtaIntercalibration_Stat57: 3.24952840e-05 + syst_JES_EtaIntercalibration_Stat58: 3.10298389e-05 + syst_JES_EtaIntercalibration_Stat59: 4.25308075e-08 + syst_JES_EtaIntercalibration_Stat6: 2.16140736e-12 + syst_JES_EtaIntercalibration_Stat60: 1.26058253e-10 syst_JES_EtaIntercalibration_Stat61: 0.0 syst_JES_EtaIntercalibration_Stat62: 0.0 syst_JES_EtaIntercalibration_Stat63: 0.0 @@ -27524,21 +27524,21 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 8.102485791409942e-11 - syst_JES_EtaIntercalibration_Stat70: 1.1578759648597946e-12 - syst_JES_EtaIntercalibration_Stat71: 1.8075958480810916e-10 - syst_JES_EtaIntercalibration_Stat72: 6.566263701679974e-07 - syst_JES_EtaIntercalibration_Stat73: 1.0947470152962283e-05 - syst_JES_EtaIntercalibration_Stat74: 7.757185249818391e-05 - syst_JES_EtaIntercalibration_Stat75: 8.549400556179364e-10 - syst_JES_EtaIntercalibration_Stat76: 9.471719841190405e-12 + syst_JES_EtaIntercalibration_Stat7: 8.10248579e-11 + syst_JES_EtaIntercalibration_Stat70: 1.15787596e-12 + syst_JES_EtaIntercalibration_Stat71: 1.80759585e-10 + syst_JES_EtaIntercalibration_Stat72: 6.56626370e-07 + syst_JES_EtaIntercalibration_Stat73: 1.09474702e-05 + syst_JES_EtaIntercalibration_Stat74: 7.75718525e-05 + syst_JES_EtaIntercalibration_Stat75: 8.54940056e-10 + syst_JES_EtaIntercalibration_Stat76: 9.47171984e-12 syst_JES_EtaIntercalibration_Stat77: 0.0 - syst_JES_EtaIntercalibration_Stat78: 1.709854599081454e-10 - syst_JES_EtaIntercalibration_Stat79: 3.354408789563371e-05 - syst_JES_EtaIntercalibration_Stat8: 1.1275739654231114e-11 - syst_JES_EtaIntercalibration_Stat80: 5.255310701328704e-05 - syst_JES_EtaIntercalibration_Stat81: 1.944900478173626e-06 - syst_JES_EtaIntercalibration_Stat82: 1.6604473516194366e-10 + syst_JES_EtaIntercalibration_Stat78: 1.70985460e-10 + syst_JES_EtaIntercalibration_Stat79: 3.35440879e-05 + syst_JES_EtaIntercalibration_Stat8: 1.12757397e-11 + syst_JES_EtaIntercalibration_Stat80: 5.25531070e-05 + syst_JES_EtaIntercalibration_Stat81: 1.94490048e-06 + syst_JES_EtaIntercalibration_Stat82: 1.66044735e-10 syst_JES_EtaIntercalibration_Stat83: 0.0 syst_JES_EtaIntercalibration_Stat84: 0.0 syst_JES_EtaIntercalibration_Stat85: 0.0 @@ -27548,113 +27548,113 @@ bins: syst_JES_EtaIntercalibration_Stat89: 0.0 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 9.994799185076208e-13 - syst_JES_EtaIntercalibration_Stat92: 9.398527343382047e-08 - syst_JES_EtaIntercalibration_Stat93: 9.864939064687628e-07 - syst_JES_EtaIntercalibration_Stat94: 1.4864519892347684e-05 - syst_JES_EtaIntercalibration_Stat95: 8.401520019871404e-05 - syst_JES_EtaIntercalibration_Stat96: 1.6418696416204912e-09 - syst_JES_EtaIntercalibration_Stat97: 9.471719841190405e-12 + syst_JES_EtaIntercalibration_Stat91: 9.99479919e-13 + syst_JES_EtaIntercalibration_Stat92: 9.39852734e-08 + syst_JES_EtaIntercalibration_Stat93: 9.86493906e-07 + syst_JES_EtaIntercalibration_Stat94: 1.48645199e-05 + syst_JES_EtaIntercalibration_Stat95: 8.40152002e-05 + syst_JES_EtaIntercalibration_Stat96: 1.64186964e-09 + syst_JES_EtaIntercalibration_Stat97: 9.47171984e-12 syst_JES_EtaIntercalibration_Stat98: 0.0 - syst_JES_EtaIntercalibration_Stat99: 1.3042398382852123e-05 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.023938485227766603 - syst_JES_Flavour_Comp: 0.07433969111450492 - syst_JES_Flavour_Response: 0.1340172984170327 - syst_JES_Gjet_Generator: 0.18645838007448204 - syst_JES_Gjet_OOC: 0.1371250308113001 - syst_JES_Gjet_Purity: 0.04860506223635559 - syst_JES_Gjet_Stat1: 0.0003456307386503695 - syst_JES_Gjet_Stat10: 0.006957835439272763 - syst_JES_Gjet_Stat11: 0.012509250696984211 - syst_JES_Gjet_Stat12: 0.028966440927390442 - syst_JES_Gjet_Stat13: 0.02439786056194272 - syst_JES_Gjet_Stat14: 0.0052929737388352875 - syst_JES_Gjet_Stat15: 0.002767492366746474 - syst_JES_Gjet_Stat2: 0.00036233232901854064 - syst_JES_Gjet_Stat3: 0.00017780283080704874 - syst_JES_Gjet_Stat4: 0.00041743406509291977 - syst_JES_Gjet_Stat5: 0.00045769261245949777 - syst_JES_Gjet_Stat6: 0.001981029698793029 - syst_JES_Gjet_Stat7: 0.002103709758973419 - syst_JES_Gjet_Stat8: 0.001240588702995477 - syst_JES_Gjet_Stat9: 0.003275105303650556 - syst_JES_Gjet_Veto: 0.08070642895705397 - syst_JES_Gjet_dPhi: 0.01024714607829907 - syst_JES_LArESZee: 0.2614067089804697 - syst_JES_LArEsmear: 0.020367525009190486 - syst_JES_LAr_JVT: 0.027400005474452007 - syst_JES_MJB_Alpha: 0.0013393695345198802 - syst_JES_MJB_Asym: 0.008028878128356414 - syst_JES_MJB_Beta: 0.000751153494981605 - syst_JES_MJB_Fragmentation: 0.027335564746315374 - syst_JES_MJB_Stat1: 0.0002605870439987376 - syst_JES_MJB_Stat10: 2.105307756600095e-05 - syst_JES_MJB_Stat11: 6.769489345585825e-06 - syst_JES_MJB_Stat12: 5.321726106255375e-06 - syst_JES_MJB_Stat13: 2.1030792982434113e-06 - syst_JES_MJB_Stat14: 2.847822519558935e-07 - syst_JES_MJB_Stat15: 1.3186663717559495e-09 - syst_JES_MJB_Stat16: 7.005916097328029e-12 + syst_JES_EtaIntercalibration_Stat99: 1.30423984e-05 + syst_JES_EtaIntercalibration_TotalStat_MJB: 2.39384852e-02 + syst_JES_Flavour_Comp: 7.43396911e-02 + syst_JES_Flavour_Response: 1.34017298e-01 + syst_JES_Gjet_Generator: 1.86458380e-01 + syst_JES_Gjet_OOC: 1.37125031e-01 + syst_JES_Gjet_Purity: 4.86050622e-02 + syst_JES_Gjet_Stat1: 3.45630739e-04 + syst_JES_Gjet_Stat10: 6.95783544e-03 + syst_JES_Gjet_Stat11: 1.25092507e-02 + syst_JES_Gjet_Stat12: 2.89664409e-02 + syst_JES_Gjet_Stat13: 2.43978606e-02 + syst_JES_Gjet_Stat14: 5.29297374e-03 + syst_JES_Gjet_Stat15: 2.76749237e-03 + syst_JES_Gjet_Stat2: 3.62332329e-04 + syst_JES_Gjet_Stat3: 1.77802831e-04 + syst_JES_Gjet_Stat4: 4.17434065e-04 + syst_JES_Gjet_Stat5: 4.57692612e-04 + syst_JES_Gjet_Stat6: 1.98102970e-03 + syst_JES_Gjet_Stat7: 2.10370976e-03 + syst_JES_Gjet_Stat8: 1.24058870e-03 + syst_JES_Gjet_Stat9: 3.27510530e-03 + syst_JES_Gjet_Veto: 8.07064290e-02 + syst_JES_Gjet_dPhi: 1.02471461e-02 + syst_JES_LArESZee: 2.61406709e-01 + syst_JES_LArEsmear: 2.03675250e-02 + syst_JES_LAr_JVT: 2.74000055e-02 + syst_JES_MJB_Alpha: 1.33936953e-03 + syst_JES_MJB_Asym: 8.02887813e-03 + syst_JES_MJB_Beta: 7.51153495e-04 + syst_JES_MJB_Fragmentation: 2.73355647e-02 + syst_JES_MJB_Stat1: 2.60587044e-04 + syst_JES_MJB_Stat10: 2.10530776e-05 + syst_JES_MJB_Stat11: 6.76948935e-06 + syst_JES_MJB_Stat12: 5.32172611e-06 + syst_JES_MJB_Stat13: 2.10307930e-06 + syst_JES_MJB_Stat14: 2.84782252e-07 + syst_JES_MJB_Stat15: 1.31866637e-09 + syst_JES_MJB_Stat16: 7.00591610e-12 syst_JES_MJB_Stat2: 0.0 - syst_JES_MJB_Stat3: 0.0019520212601301247 - syst_JES_MJB_Stat4: 0.0002827572943356192 - syst_JES_MJB_Stat5: 1.3371432234431734e-07 - syst_JES_MJB_Stat6: 3.0944661522627774e-06 - syst_JES_MJB_Stat7: 9.885478476520885e-08 - syst_JES_MJB_Stat8: 9.293952388620025e-08 - syst_JES_MJB_Stat9: 8.392650932050236e-12 - syst_JES_MJB_Threshold: 0.010992521855789054 - syst_JES_Pileup_MuOffset: 0.020358032198618807 - syst_JES_Pileup_NPVOffset: 0.022966551221287018 - syst_JES_Pileup_Pt_term: 0.03511809611866794 - syst_JES_Pileup_Rho_topology: 0.061611014437355276 - syst_JES_PunchThrough_MC15: 0.0022472117723970745 + syst_JES_MJB_Stat3: 1.95202126e-03 + syst_JES_MJB_Stat4: 2.82757294e-04 + syst_JES_MJB_Stat5: 1.33714322e-07 + syst_JES_MJB_Stat6: 3.09446615e-06 + syst_JES_MJB_Stat7: 9.88547848e-08 + syst_JES_MJB_Stat8: 9.29395239e-08 + syst_JES_MJB_Stat9: 8.39265093e-12 + syst_JES_MJB_Threshold: 1.09925219e-02 + syst_JES_Pileup_MuOffset: 2.03580322e-02 + syst_JES_Pileup_NPVOffset: 2.29665512e-02 + syst_JES_Pileup_Pt_term: 3.51180961e-02 + syst_JES_Pileup_Rho_topology: 6.16110144e-02 + syst_JES_PunchThrough_MC15: 2.24721177e-03 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.15700025477686333 - syst_JES_Zjet_MuScale: 0.010001550517294806 - syst_JES_Zjet_MuSmearID: 0.0017408542385851837 - syst_JES_Zjet_MuSmearMS: 0.03767600927646133 - syst_JES_Zjet_OOC: 0.0624550004002882 - syst_JES_Zjet_Stat1: 0.001694974041099155 - syst_JES_Zjet_Stat10: 0.005599600409850689 - syst_JES_Zjet_Stat11: 0.00545674875727296 - syst_JES_Zjet_Stat12: 0.0473754437973936 - syst_JES_Zjet_Stat13: 0.03397029437611632 - syst_JES_Zjet_Stat2: 1.854160389502483e-05 - syst_JES_Zjet_Stat3: 0.0007751420380001331 - syst_JES_Zjet_Stat4: 0.0006083010441385088 - syst_JES_Zjet_Stat5: 0.0009824867263734406 - syst_JES_Zjet_Stat6: 0.0007727603056575823 - syst_JES_Zjet_Stat7: 0.0009236734975087247 - syst_JES_Zjet_Stat8: 0.0018402194672103652 - syst_JES_Zjet_Stat9: 0.002585280400652896 - syst_JES_Zjet_Veto: 0.012787546940285303 - syst_JES_Zjet_dPhi: 0.010859289939954638 + syst_JES_Zjet_MC: 1.57000255e-01 + syst_JES_Zjet_MuScale: 1.00015505e-02 + syst_JES_Zjet_MuSmearID: 1.74085424e-03 + syst_JES_Zjet_MuSmearMS: 3.76760093e-02 + syst_JES_Zjet_OOC: 6.24550004e-02 + syst_JES_Zjet_Stat1: 1.69497404e-03 + syst_JES_Zjet_Stat10: 5.59960041e-03 + syst_JES_Zjet_Stat11: 5.45674876e-03 + syst_JES_Zjet_Stat12: 4.73754438e-02 + syst_JES_Zjet_Stat13: 3.39702944e-02 + syst_JES_Zjet_Stat2: 1.85416039e-05 + syst_JES_Zjet_Stat3: 7.75142038e-04 + syst_JES_Zjet_Stat4: 6.08301044e-04 + syst_JES_Zjet_Stat5: 9.82486726e-04 + syst_JES_Zjet_Stat6: 7.72760306e-04 + syst_JES_Zjet_Stat7: 9.23673498e-04 + syst_JES_Zjet_Stat8: 1.84021947e-03 + syst_JES_Zjet_Stat9: 2.58528040e-03 + syst_JES_Zjet_Veto: 1.27875469e-02 + syst_JES_Zjet_dPhi: 1.08592899e-02 syst_PRW: 0.0 syst_Unfolding_bias: 0.010151 - syst_cleaning: 0.05412658773652741 + syst_cleaning: 5.41265877e-02 syst_lumi: 0.2077 - stat: 0.04934 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.04358338989798752 - syst_JER_NP1: 0.002570405026450112 - syst_JER_NP2: 0.016341960561695158 - syst_JER_NP3: 0.007134382313837688 - syst_JER_NP4: 2.450014489753071e-05 - syst_JER_NP5: 0.004413864633175784 - syst_JER_NP6: 5.664855404156403e-08 - syst_JER_NP7: 1.0787260402901191e-11 - syst_JER_NP8: 0.00576670755284157 - syst_JES_EtaIntercalibration_Modelling: 0.16406659471080634 + syst_JER_NP0: 4.35833899e-02 + syst_JER_NP1: 2.57040503e-03 + syst_JER_NP2: 1.63419606e-02 + syst_JER_NP3: 7.13438231e-03 + syst_JER_NP4: 2.45001449e-05 + syst_JER_NP5: 4.41386463e-03 + syst_JER_NP6: 5.66485540e-08 + syst_JER_NP7: 1.07872604e-11 + syst_JER_NP8: 5.76670755e-03 + syst_JES_EtaIntercalibration_Modelling: 1.64066595e-01 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 9.399387639628445e-07 - syst_JES_EtaIntercalibration_Stat101: 1.9032888692996657e-05 - syst_JES_EtaIntercalibration_Stat102: 8.310502511882178e-07 - syst_JES_EtaIntercalibration_Stat103: 7.979095609779343e-09 + syst_JES_EtaIntercalibration_Stat100: 9.39938764e-07 + syst_JES_EtaIntercalibration_Stat101: 1.90328887e-05 + syst_JES_EtaIntercalibration_Stat102: 8.31050251e-07 + syst_JES_EtaIntercalibration_Stat103: 7.97909561e-09 syst_JES_EtaIntercalibration_Stat104: 0.0 syst_JES_EtaIntercalibration_Stat105: 0.0 syst_JES_EtaIntercalibration_Stat106: 0.0 @@ -27663,170 +27663,170 @@ bins: syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 syst_JES_EtaIntercalibration_Stat110: 0.0 - syst_JES_EtaIntercalibration_Stat111: 4.106692464745808e-14 - syst_JES_EtaIntercalibration_Stat112: 1.8060219177795156e-07 - syst_JES_EtaIntercalibration_Stat113: 5.146521422281267e-06 - syst_JES_EtaIntercalibration_Stat114: 4.780062133487388e-06 - syst_JES_EtaIntercalibration_Stat115: 6.597212820578096e-05 - syst_JES_EtaIntercalibration_Stat116: 9.278975103384371e-06 + syst_JES_EtaIntercalibration_Stat111: 4.10669246e-14 + syst_JES_EtaIntercalibration_Stat112: 1.80602192e-07 + syst_JES_EtaIntercalibration_Stat113: 5.14652142e-06 + syst_JES_EtaIntercalibration_Stat114: 4.78006213e-06 + syst_JES_EtaIntercalibration_Stat115: 6.59721282e-05 + syst_JES_EtaIntercalibration_Stat116: 9.27897510e-06 syst_JES_EtaIntercalibration_Stat117: 0.0 syst_JES_EtaIntercalibration_Stat118: 0.0 - syst_JES_EtaIntercalibration_Stat119: 1.2912437741876803e-05 + syst_JES_EtaIntercalibration_Stat119: 1.29124377e-05 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 2.983495044406811e-05 - syst_JES_EtaIntercalibration_Stat121: 3.391705876104235e-05 - syst_JES_EtaIntercalibration_Stat122: 1.5024074039687105e-05 - syst_JES_EtaIntercalibration_Stat123: 1.4895802789712276e-06 + syst_JES_EtaIntercalibration_Stat120: 2.98349504e-05 + syst_JES_EtaIntercalibration_Stat121: 3.39170588e-05 + syst_JES_EtaIntercalibration_Stat122: 1.50240740e-05 + syst_JES_EtaIntercalibration_Stat123: 1.48958028e-06 syst_JES_EtaIntercalibration_Stat124: 0.0 syst_JES_EtaIntercalibration_Stat125: 0.0 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 syst_JES_EtaIntercalibration_Stat128: 0.0 syst_JES_EtaIntercalibration_Stat129: 0.0 - syst_JES_EtaIntercalibration_Stat13: 1.296440082956816e-05 + syst_JES_EtaIntercalibration_Stat13: 1.29644008e-05 syst_JES_EtaIntercalibration_Stat130: 0.0 - syst_JES_EtaIntercalibration_Stat131: 4.539233938672912e-07 - syst_JES_EtaIntercalibration_Stat132: 0.0002240023399431354 - syst_JES_EtaIntercalibration_Stat133: 0.0005699523203742572 - syst_JES_EtaIntercalibration_Stat134: 0.0004669582074447348 - syst_JES_EtaIntercalibration_Stat135: 3.8115728967842134e-05 + syst_JES_EtaIntercalibration_Stat131: 4.53923394e-07 + syst_JES_EtaIntercalibration_Stat132: 2.24002340e-04 + syst_JES_EtaIntercalibration_Stat133: 5.69952320e-04 + syst_JES_EtaIntercalibration_Stat134: 4.66958207e-04 + syst_JES_EtaIntercalibration_Stat135: 3.81157290e-05 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 - syst_JES_EtaIntercalibration_Stat138: 1.2540917511963588e-05 - syst_JES_EtaIntercalibration_Stat139: 0.00031534666638478995 - syst_JES_EtaIntercalibration_Stat14: 2.1942572336670102e-12 - syst_JES_EtaIntercalibration_Stat140: 0.0005677493901361763 - syst_JES_EtaIntercalibration_Stat141: 6.235345379367529e-05 - syst_JES_EtaIntercalibration_Stat142: 3.3371593470345403e-06 + syst_JES_EtaIntercalibration_Stat138: 1.25409175e-05 + syst_JES_EtaIntercalibration_Stat139: 3.15346666e-04 + syst_JES_EtaIntercalibration_Stat14: 2.19425723e-12 + syst_JES_EtaIntercalibration_Stat140: 5.67749390e-04 + syst_JES_EtaIntercalibration_Stat141: 6.23534538e-05 + syst_JES_EtaIntercalibration_Stat142: 3.33715935e-06 syst_JES_EtaIntercalibration_Stat143: 0.0 syst_JES_EtaIntercalibration_Stat144: 0.0 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 syst_JES_EtaIntercalibration_Stat147: 0.0 syst_JES_EtaIntercalibration_Stat148: 0.0 - syst_JES_EtaIntercalibration_Stat149: 2.302387636780566e-06 - syst_JES_EtaIntercalibration_Stat15: 2.112406043010434e-12 - syst_JES_EtaIntercalibration_Stat150: 0.00014653149832032702 - syst_JES_EtaIntercalibration_Stat151: 0.0009984465471421092 - syst_JES_EtaIntercalibration_Stat152: 0.0006464132946497929 - syst_JES_EtaIntercalibration_Stat153: 3.918004809529972e-05 + syst_JES_EtaIntercalibration_Stat149: 2.30238764e-06 + syst_JES_EtaIntercalibration_Stat15: 2.11240604e-12 + syst_JES_EtaIntercalibration_Stat150: 1.46531498e-04 + syst_JES_EtaIntercalibration_Stat151: 9.98446547e-04 + syst_JES_EtaIntercalibration_Stat152: 6.46413295e-04 + syst_JES_EtaIntercalibration_Stat153: 3.91800481e-05 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 2.514071749807973e-06 - syst_JES_EtaIntercalibration_Stat157: 0.0005005296625326016 - syst_JES_EtaIntercalibration_Stat158: 0.000797818043165232 - syst_JES_EtaIntercalibration_Stat159: 0.00023633182180992892 + syst_JES_EtaIntercalibration_Stat156: 2.51407175e-06 + syst_JES_EtaIntercalibration_Stat157: 5.00529663e-04 + syst_JES_EtaIntercalibration_Stat158: 7.97818043e-04 + syst_JES_EtaIntercalibration_Stat159: 2.36331822e-04 syst_JES_EtaIntercalibration_Stat16: 0.0 - syst_JES_EtaIntercalibration_Stat160: 6.515278888888794e-06 + syst_JES_EtaIntercalibration_Stat160: 6.51527889e-06 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 - syst_JES_EtaIntercalibration_Stat167: 3.563914841855792e-05 - syst_JES_EtaIntercalibration_Stat168: 0.0001915399370888484 - syst_JES_EtaIntercalibration_Stat169: 0.002201257084031759 + syst_JES_EtaIntercalibration_Stat167: 3.56391484e-05 + syst_JES_EtaIntercalibration_Stat168: 1.91539937e-04 + syst_JES_EtaIntercalibration_Stat169: 2.20125708e-03 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 0.0013172609049368314 - syst_JES_EtaIntercalibration_Stat171: 3.690082105793853e-05 + syst_JES_EtaIntercalibration_Stat170: 1.31726090e-03 + syst_JES_EtaIntercalibration_Stat171: 3.69008211e-05 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 - syst_JES_EtaIntercalibration_Stat174: 1.066078492005347e-05 - syst_JES_EtaIntercalibration_Stat175: 0.0015370662802885243 - syst_JES_EtaIntercalibration_Stat176: 0.0016525693540665701 - syst_JES_EtaIntercalibration_Stat177: 0.0008662067824717144 - syst_JES_EtaIntercalibration_Stat178: 1.6103761889695215e-05 + syst_JES_EtaIntercalibration_Stat174: 1.06607849e-05 + syst_JES_EtaIntercalibration_Stat175: 1.53706628e-03 + syst_JES_EtaIntercalibration_Stat176: 1.65256935e-03 + syst_JES_EtaIntercalibration_Stat177: 8.66206782e-04 + syst_JES_EtaIntercalibration_Stat178: 1.61037619e-05 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 syst_JES_EtaIntercalibration_Stat180: 0.0 syst_JES_EtaIntercalibration_Stat181: 0.0 syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 - syst_JES_EtaIntercalibration_Stat184: 8.577197954460419e-05 - syst_JES_EtaIntercalibration_Stat185: 0.0026451179557819347 - syst_JES_EtaIntercalibration_Stat186: 0.008349577878551704 - syst_JES_EtaIntercalibration_Stat187: 0.005531821648426493 - syst_JES_EtaIntercalibration_Stat188: 6.521171299211925e-05 + syst_JES_EtaIntercalibration_Stat184: 8.57719795e-05 + syst_JES_EtaIntercalibration_Stat185: 2.64511796e-03 + syst_JES_EtaIntercalibration_Stat186: 8.34957788e-03 + syst_JES_EtaIntercalibration_Stat187: 5.53182165e-03 + syst_JES_EtaIntercalibration_Stat188: 6.52117130e-05 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 - syst_JES_EtaIntercalibration_Stat191: 0.0001098469735586739 - syst_JES_EtaIntercalibration_Stat192: 0.006030781955932415 - syst_JES_EtaIntercalibration_Stat193: 0.009982106528684214 - syst_JES_EtaIntercalibration_Stat194: 0.0031992765979202233 - syst_JES_EtaIntercalibration_Stat195: 9.186049463724871e-05 - syst_JES_EtaIntercalibration_Stat196: 1.616333402333813e-06 + syst_JES_EtaIntercalibration_Stat191: 1.09846974e-04 + syst_JES_EtaIntercalibration_Stat192: 6.03078196e-03 + syst_JES_EtaIntercalibration_Stat193: 9.98210653e-03 + syst_JES_EtaIntercalibration_Stat194: 3.19927660e-03 + syst_JES_EtaIntercalibration_Stat195: 9.18604946e-05 + syst_JES_EtaIntercalibration_Stat196: 1.61633340e-06 syst_JES_EtaIntercalibration_Stat197: 0.0 syst_JES_EtaIntercalibration_Stat198: 0.0 - syst_JES_EtaIntercalibration_Stat199: 4.807677721104026e-05 + syst_JES_EtaIntercalibration_Stat199: 4.80767772e-05 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 0.0021176389564795976 - syst_JES_EtaIntercalibration_Stat201: 0.007477523971877322 - syst_JES_EtaIntercalibration_Stat202: 0.004963034051867869 - syst_JES_EtaIntercalibration_Stat203: 1.48368839720475e-05 + syst_JES_EtaIntercalibration_Stat200: 2.11763896e-03 + syst_JES_EtaIntercalibration_Stat201: 7.47752397e-03 + syst_JES_EtaIntercalibration_Stat202: 4.96303405e-03 + syst_JES_EtaIntercalibration_Stat203: 1.48368840e-05 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 - syst_JES_EtaIntercalibration_Stat206: 0.0001322248422196071 - syst_JES_EtaIntercalibration_Stat207: 0.005020351382124562 - syst_JES_EtaIntercalibration_Stat208: 0.009604765522905803 - syst_JES_EtaIntercalibration_Stat209: 0.0023857822092554887 + syst_JES_EtaIntercalibration_Stat206: 1.32224842e-04 + syst_JES_EtaIntercalibration_Stat207: 5.02035138e-03 + syst_JES_EtaIntercalibration_Stat208: 9.60476552e-03 + syst_JES_EtaIntercalibration_Stat209: 2.38578221e-03 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 9.260685976211481e-05 - syst_JES_EtaIntercalibration_Stat211: 2.346096453153621e-06 - syst_JES_EtaIntercalibration_Stat212: 6.152250563818089e-05 - syst_JES_EtaIntercalibration_Stat213: 0.00020919247566535465 - syst_JES_EtaIntercalibration_Stat214: 0.0007211596130538648 - syst_JES_EtaIntercalibration_Stat215: 0.00026230718647227337 - syst_JES_EtaIntercalibration_Stat216: 6.497453833618211e-05 + syst_JES_EtaIntercalibration_Stat210: 9.26068598e-05 + syst_JES_EtaIntercalibration_Stat211: 2.34609645e-06 + syst_JES_EtaIntercalibration_Stat212: 6.15225056e-05 + syst_JES_EtaIntercalibration_Stat213: 2.09192476e-04 + syst_JES_EtaIntercalibration_Stat214: 7.21159613e-04 + syst_JES_EtaIntercalibration_Stat215: 2.62307186e-04 + syst_JES_EtaIntercalibration_Stat216: 6.49745383e-05 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 - syst_JES_EtaIntercalibration_Stat219: 2.7439262763556535e-05 + syst_JES_EtaIntercalibration_Stat219: 2.74392628e-05 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 0.0008223072464109749 - syst_JES_EtaIntercalibration_Stat221: 0.0011699174874750782 - syst_JES_EtaIntercalibration_Stat222: 0.0003391831391372513 - syst_JES_EtaIntercalibration_Stat223: 3.4308462396324325e-05 - syst_JES_EtaIntercalibration_Stat224: 3.4441936757997145e-05 - syst_JES_EtaIntercalibration_Stat225: 0.00021579737440478741 - syst_JES_EtaIntercalibration_Stat226: 0.0006820318760879143 - syst_JES_EtaIntercalibration_Stat227: 0.0003435856916403825 - syst_JES_EtaIntercalibration_Stat228: 1.2730573442331397e-06 + syst_JES_EtaIntercalibration_Stat220: 8.22307246e-04 + syst_JES_EtaIntercalibration_Stat221: 1.16991749e-03 + syst_JES_EtaIntercalibration_Stat222: 3.39183139e-04 + syst_JES_EtaIntercalibration_Stat223: 3.43084624e-05 + syst_JES_EtaIntercalibration_Stat224: 3.44419368e-05 + syst_JES_EtaIntercalibration_Stat225: 2.15797374e-04 + syst_JES_EtaIntercalibration_Stat226: 6.82031876e-04 + syst_JES_EtaIntercalibration_Stat227: 3.43585692e-04 + syst_JES_EtaIntercalibration_Stat228: 1.27305734e-06 syst_JES_EtaIntercalibration_Stat229: 0.0 syst_JES_EtaIntercalibration_Stat23: 0.0 syst_JES_EtaIntercalibration_Stat230: 0.0 - syst_JES_EtaIntercalibration_Stat231: 1.7320508075688774e-05 - syst_JES_EtaIntercalibration_Stat232: 0.00042534555363845056 - syst_JES_EtaIntercalibration_Stat233: 0.0005388827516259914 - syst_JES_EtaIntercalibration_Stat234: 0.00024870014073176557 - syst_JES_EtaIntercalibration_Stat235: 6.350564285951289e-06 - syst_JES_EtaIntercalibration_Stat236: 2.5148480570404253e-06 - syst_JES_EtaIntercalibration_Stat237: 6.208348089467923e-06 - syst_JES_EtaIntercalibration_Stat238: 3.833125226235115e-06 - syst_JES_EtaIntercalibration_Stat239: 1.2747893943706937e-08 + syst_JES_EtaIntercalibration_Stat231: 1.73205081e-05 + syst_JES_EtaIntercalibration_Stat232: 4.25345554e-04 + syst_JES_EtaIntercalibration_Stat233: 5.38882752e-04 + syst_JES_EtaIntercalibration_Stat234: 2.48700141e-04 + syst_JES_EtaIntercalibration_Stat235: 6.35056429e-06 + syst_JES_EtaIntercalibration_Stat236: 2.51484806e-06 + syst_JES_EtaIntercalibration_Stat237: 6.20834809e-06 + syst_JES_EtaIntercalibration_Stat238: 3.83312523e-06 + syst_JES_EtaIntercalibration_Stat239: 1.27478939e-08 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 - syst_JES_EtaIntercalibration_Stat242: 3.441931364800873e-20 - syst_JES_EtaIntercalibration_Stat243: 1.986951888572041e-06 - syst_JES_EtaIntercalibration_Stat244: 4.080737525252022e-06 - syst_JES_EtaIntercalibration_Stat245: 3.349481303127396e-06 + syst_JES_EtaIntercalibration_Stat242: 3.44193136e-20 + syst_JES_EtaIntercalibration_Stat243: 1.98695189e-06 + syst_JES_EtaIntercalibration_Stat244: 4.08073753e-06 + syst_JES_EtaIntercalibration_Stat245: 3.34948130e-06 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 - syst_JES_EtaIntercalibration_Stat27: 2.4758691216419334e-13 - syst_JES_EtaIntercalibration_Stat28: 1.884546923661759e-07 - syst_JES_EtaIntercalibration_Stat29: 6.60249084954008e-06 + syst_JES_EtaIntercalibration_Stat27: 2.47586912e-13 + syst_JES_EtaIntercalibration_Stat28: 1.88454692e-07 + syst_JES_EtaIntercalibration_Stat29: 6.60249085e-06 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 6.663827503477276e-06 - syst_JES_EtaIntercalibration_Stat31: 3.689268220121709e-14 + syst_JES_EtaIntercalibration_Stat30: 6.66382750e-06 + syst_JES_EtaIntercalibration_Stat31: 3.68926822e-14 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 - syst_JES_EtaIntercalibration_Stat34: 2.5123396963786565e-15 - syst_JES_EtaIntercalibration_Stat35: 1.2929993959554072e-05 - syst_JES_EtaIntercalibration_Stat36: 1.3147426513211627e-05 - syst_JES_EtaIntercalibration_Stat37: 2.8820558550928536e-09 - syst_JES_EtaIntercalibration_Stat38: 1.3912073630034454e-12 + syst_JES_EtaIntercalibration_Stat34: 2.51233970e-15 + syst_JES_EtaIntercalibration_Stat35: 1.29299940e-05 + syst_JES_EtaIntercalibration_Stat36: 1.31474265e-05 + syst_JES_EtaIntercalibration_Stat37: 2.88205586e-09 + syst_JES_EtaIntercalibration_Stat38: 1.39120736e-12 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 syst_JES_EtaIntercalibration_Stat40: 0.0 @@ -27837,21 +27837,21 @@ bins: syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 syst_JES_EtaIntercalibration_Stat47: 0.0 - syst_JES_EtaIntercalibration_Stat48: 1.5146784312189832e-13 - syst_JES_EtaIntercalibration_Stat49: 2.221639259645904e-12 - syst_JES_EtaIntercalibration_Stat5: 1.4505925513389345e-13 - syst_JES_EtaIntercalibration_Stat50: 1.9422861703415385e-07 - syst_JES_EtaIntercalibration_Stat51: 6.311464641428326e-06 - syst_JES_EtaIntercalibration_Stat52: 6.577680858432324e-06 - syst_JES_EtaIntercalibration_Stat53: 1.4717495100389876e-12 - syst_JES_EtaIntercalibration_Stat54: 1.09967905772548e-12 + syst_JES_EtaIntercalibration_Stat48: 1.51467843e-13 + syst_JES_EtaIntercalibration_Stat49: 2.22163926e-12 + syst_JES_EtaIntercalibration_Stat5: 1.45059255e-13 + syst_JES_EtaIntercalibration_Stat50: 1.94228617e-07 + syst_JES_EtaIntercalibration_Stat51: 6.31146464e-06 + syst_JES_EtaIntercalibration_Stat52: 6.57768086e-06 + syst_JES_EtaIntercalibration_Stat53: 1.47174951e-12 + syst_JES_EtaIntercalibration_Stat54: 1.09967906e-12 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 2.1984523533613367e-14 - syst_JES_EtaIntercalibration_Stat57: 1.312693782837414e-05 - syst_JES_EtaIntercalibration_Stat58: 1.3009010770180605e-05 - syst_JES_EtaIntercalibration_Stat59: 5.573651832506225e-09 - syst_JES_EtaIntercalibration_Stat6: 2.7526983906705076e-13 - syst_JES_EtaIntercalibration_Stat60: 1.4581555704039265e-11 + syst_JES_EtaIntercalibration_Stat56: 2.19845235e-14 + syst_JES_EtaIntercalibration_Stat57: 1.31269378e-05 + syst_JES_EtaIntercalibration_Stat58: 1.30090108e-05 + syst_JES_EtaIntercalibration_Stat59: 5.57365183e-09 + syst_JES_EtaIntercalibration_Stat6: 2.75269839e-13 + syst_JES_EtaIntercalibration_Stat60: 1.45815557e-11 syst_JES_EtaIntercalibration_Stat61: 0.0 syst_JES_EtaIntercalibration_Stat62: 0.0 syst_JES_EtaIntercalibration_Stat63: 0.0 @@ -27861,21 +27861,21 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 9.383915427474824e-12 - syst_JES_EtaIntercalibration_Stat70: 1.4505925513389345e-13 - syst_JES_EtaIntercalibration_Stat71: 2.086580695779581e-11 - syst_JES_EtaIntercalibration_Stat72: 1.7618732871577343e-07 - syst_JES_EtaIntercalibration_Stat73: 1.4279606113265169e-05 - syst_JES_EtaIntercalibration_Stat74: 3.370927295270546e-05 - syst_JES_EtaIntercalibration_Stat75: 9.937394963973204e-11 - syst_JES_EtaIntercalibration_Stat76: 1.09967905772548e-12 + syst_JES_EtaIntercalibration_Stat7: 9.38391543e-12 + syst_JES_EtaIntercalibration_Stat70: 1.45059255e-13 + syst_JES_EtaIntercalibration_Stat71: 2.08658070e-11 + syst_JES_EtaIntercalibration_Stat72: 1.76187329e-07 + syst_JES_EtaIntercalibration_Stat73: 1.42796061e-05 + syst_JES_EtaIntercalibration_Stat74: 3.37092730e-05 + syst_JES_EtaIntercalibration_Stat75: 9.93739496e-11 + syst_JES_EtaIntercalibration_Stat76: 1.09967906e-12 syst_JES_EtaIntercalibration_Stat77: 0.0 - syst_JES_EtaIntercalibration_Stat78: 1.9810974231470798e-11 - syst_JES_EtaIntercalibration_Stat79: 1.2487105754019824e-05 - syst_JES_EtaIntercalibration_Stat8: 1.313212727436039e-12 - syst_JES_EtaIntercalibration_Stat80: 2.0452862980705173e-05 - syst_JES_EtaIntercalibration_Stat81: 1.7010361636367406e-06 - syst_JES_EtaIntercalibration_Stat82: 1.9086698902638977e-11 + syst_JES_EtaIntercalibration_Stat78: 1.98109742e-11 + syst_JES_EtaIntercalibration_Stat79: 1.24871058e-05 + syst_JES_EtaIntercalibration_Stat8: 1.31321273e-12 + syst_JES_EtaIntercalibration_Stat80: 2.04528630e-05 + syst_JES_EtaIntercalibration_Stat81: 1.70103616e-06 + syst_JES_EtaIntercalibration_Stat82: 1.90866989e-11 syst_JES_EtaIntercalibration_Stat83: 0.0 syst_JES_EtaIntercalibration_Stat84: 0.0 syst_JES_EtaIntercalibration_Stat85: 0.0 @@ -27885,113 +27885,113 @@ bins: syst_JES_EtaIntercalibration_Stat89: 0.0 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 1.2514067084685137e-13 - syst_JES_EtaIntercalibration_Stat92: 1.6230148168734473e-08 - syst_JES_EtaIntercalibration_Stat93: 2.744922094978289e-07 - syst_JES_EtaIntercalibration_Stat94: 1.6198695441300206e-05 - syst_JES_EtaIntercalibration_Stat95: 3.487303542853705e-05 - syst_JES_EtaIntercalibration_Stat96: 1.911156731426023e-10 - syst_JES_EtaIntercalibration_Stat97: 1.09967905772548e-12 + syst_JES_EtaIntercalibration_Stat91: 1.25140671e-13 + syst_JES_EtaIntercalibration_Stat92: 1.62301482e-08 + syst_JES_EtaIntercalibration_Stat93: 2.74492209e-07 + syst_JES_EtaIntercalibration_Stat94: 1.61986954e-05 + syst_JES_EtaIntercalibration_Stat95: 3.48730354e-05 + syst_JES_EtaIntercalibration_Stat96: 1.91115673e-10 + syst_JES_EtaIntercalibration_Stat97: 1.09967906e-12 syst_JES_EtaIntercalibration_Stat98: 0.0 - syst_JES_EtaIntercalibration_Stat99: 2.5539153648279553e-06 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.01780671993939367 - syst_JES_Flavour_Comp: 0.055560895421150294 - syst_JES_Flavour_Response: 0.0665548818645184 - syst_JES_Gjet_Generator: 0.11796339294459107 - syst_JES_Gjet_OOC: 0.08872036519311673 - syst_JES_Gjet_Purity: 0.030263765049973537 - syst_JES_Gjet_Stat1: 0.00024170769019623683 - syst_JES_Gjet_Stat10: 0.0035164550331264013 - syst_JES_Gjet_Stat11: 0.005984378392949429 - syst_JES_Gjet_Stat12: 0.017307670987166356 - syst_JES_Gjet_Stat13: 0.02047596334730066 - syst_JES_Gjet_Stat14: 0.0008625825931468824 - syst_JES_Gjet_Stat15: 0.0039426806553409825 - syst_JES_Gjet_Stat2: 0.0002531322194159211 - syst_JES_Gjet_Stat3: 0.0002012599405017054 - syst_JES_Gjet_Stat4: 0.0002573216469712566 - syst_JES_Gjet_Stat5: 0.0002821011653644841 - syst_JES_Gjet_Stat6: 0.0011858891474332664 - syst_JES_Gjet_Stat7: 0.0012528686044434188 - syst_JES_Gjet_Stat8: 0.0008039960385474546 - syst_JES_Gjet_Stat9: 0.0019631588702904304 - syst_JES_Gjet_Veto: 0.05803086484794105 - syst_JES_Gjet_dPhi: 0.00680701469074366 - syst_JES_LArESZee: 0.17024282657427892 - syst_JES_LArEsmear: 0.013289253139285142 - syst_JES_LAr_JVT: 0.01712658970723594 - syst_JES_MJB_Alpha: 0.001066844415788919 - syst_JES_MJB_Asym: 0.005447104735545297 - syst_JES_MJB_Beta: 0.0006279588899760876 - syst_JES_MJB_Fragmentation: 0.018898441073273743 - syst_JES_MJB_Stat1: 0.00018221174495624588 - syst_JES_MJB_Stat10: 7.265953138833107e-05 - syst_JES_MJB_Stat11: 7.044899857343609e-06 - syst_JES_MJB_Stat12: 7.44435437092667e-06 - syst_JES_MJB_Stat13: 4.153097247838052e-06 - syst_JES_MJB_Stat14: 9.970436536080053e-07 - syst_JES_MJB_Stat15: 2.841428294009898e-08 - syst_JES_MJB_Stat16: 4.899816129968552e-10 + syst_JES_EtaIntercalibration_Stat99: 2.55391536e-06 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.78067199e-02 + syst_JES_Flavour_Comp: 5.55608954e-02 + syst_JES_Flavour_Response: 6.65548819e-02 + syst_JES_Gjet_Generator: 1.17963393e-01 + syst_JES_Gjet_OOC: 8.87203652e-02 + syst_JES_Gjet_Purity: 3.02637650e-02 + syst_JES_Gjet_Stat1: 2.41707690e-04 + syst_JES_Gjet_Stat10: 3.51645503e-03 + syst_JES_Gjet_Stat11: 5.98437839e-03 + syst_JES_Gjet_Stat12: 1.73076710e-02 + syst_JES_Gjet_Stat13: 2.04759633e-02 + syst_JES_Gjet_Stat14: 8.62582593e-04 + syst_JES_Gjet_Stat15: 3.94268066e-03 + syst_JES_Gjet_Stat2: 2.53132219e-04 + syst_JES_Gjet_Stat3: 2.01259941e-04 + syst_JES_Gjet_Stat4: 2.57321647e-04 + syst_JES_Gjet_Stat5: 2.82101165e-04 + syst_JES_Gjet_Stat6: 1.18588915e-03 + syst_JES_Gjet_Stat7: 1.25286860e-03 + syst_JES_Gjet_Stat8: 8.03996039e-04 + syst_JES_Gjet_Stat9: 1.96315887e-03 + syst_JES_Gjet_Veto: 5.80308648e-02 + syst_JES_Gjet_dPhi: 6.80701469e-03 + syst_JES_LArESZee: 1.70242827e-01 + syst_JES_LArEsmear: 1.32892531e-02 + syst_JES_LAr_JVT: 1.71265897e-02 + syst_JES_MJB_Alpha: 1.06684442e-03 + syst_JES_MJB_Asym: 5.44710474e-03 + syst_JES_MJB_Beta: 6.27958890e-04 + syst_JES_MJB_Fragmentation: 1.88984411e-02 + syst_JES_MJB_Stat1: 1.82211745e-04 + syst_JES_MJB_Stat10: 7.26595314e-05 + syst_JES_MJB_Stat11: 7.04489986e-06 + syst_JES_MJB_Stat12: 7.44435437e-06 + syst_JES_MJB_Stat13: 4.15309725e-06 + syst_JES_MJB_Stat14: 9.97043654e-07 + syst_JES_MJB_Stat15: 2.84142829e-08 + syst_JES_MJB_Stat16: 4.89981613e-10 syst_JES_MJB_Stat2: 0.0 - syst_JES_MJB_Stat3: 0.00165064441961314 - syst_JES_MJB_Stat4: 0.00012643970895252803 - syst_JES_MJB_Stat5: 2.8206447401259163e-06 - syst_JES_MJB_Stat6: 2.3491364769846814e-05 - syst_JES_MJB_Stat7: 2.084830032350539e-06 - syst_JES_MJB_Stat8: 1.960036886839633e-06 - syst_JES_MJB_Stat9: 2.3321955468619217e-09 - syst_JES_MJB_Threshold: 0.00815087791283859 - syst_JES_Pileup_MuOffset: 0.014975375621332507 - syst_JES_Pileup_NPVOffset: 0.01621667891400702 - syst_JES_Pileup_Pt_term: 0.022111542234769604 - syst_JES_Pileup_Rho_topology: 0.03818113042786973 - syst_JES_PunchThrough_MC15: 0.0017398810390368649 + syst_JES_MJB_Stat3: 1.65064442e-03 + syst_JES_MJB_Stat4: 1.26439709e-04 + syst_JES_MJB_Stat5: 2.82064474e-06 + syst_JES_MJB_Stat6: 2.34913648e-05 + syst_JES_MJB_Stat7: 2.08483003e-06 + syst_JES_MJB_Stat8: 1.96003689e-06 + syst_JES_MJB_Stat9: 2.33219555e-09 + syst_JES_MJB_Threshold: 8.15087791e-03 + syst_JES_Pileup_MuOffset: 1.49753756e-02 + syst_JES_Pileup_NPVOffset: 1.62166789e-02 + syst_JES_Pileup_Pt_term: 2.21115422e-02 + syst_JES_Pileup_Rho_topology: 3.81811304e-02 + syst_JES_PunchThrough_MC15: 1.73988104e-03 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.09181565375795132 - syst_JES_Zjet_MuScale: 0.0057414743751061014 - syst_JES_Zjet_MuSmearID: 0.001070205746573994 - syst_JES_Zjet_MuSmearMS: 0.023921857682880732 - syst_JES_Zjet_OOC: 0.03756701312321756 - syst_JES_Zjet_Stat1: 0.0012961167800395147 - syst_JES_Zjet_Stat10: 0.0029954089871000924 - syst_JES_Zjet_Stat11: 0.003161575991495381 - syst_JES_Zjet_Stat12: 0.02474669826461704 - syst_JES_Zjet_Stat13: 0.02346863012619186 - syst_JES_Zjet_Stat2: 1.1428071228339453e-05 - syst_JES_Zjet_Stat3: 0.0005300172143430815 - syst_JES_Zjet_Stat4: 0.000494852548038302 - syst_JES_Zjet_Stat5: 0.0007400886568513261 - syst_JES_Zjet_Stat6: 0.0004886653942116221 - syst_JES_Zjet_Stat7: 0.000624212982482742 - syst_JES_Zjet_Stat8: 0.0010554495819317948 - syst_JES_Zjet_Stat9: 0.0015437392914608348 - syst_JES_Zjet_Veto: 0.007811063691969231 - syst_JES_Zjet_dPhi: 0.006644560030581408 + syst_JES_Zjet_MC: 9.18156538e-02 + syst_JES_Zjet_MuScale: 5.74147438e-03 + syst_JES_Zjet_MuSmearID: 1.07020575e-03 + syst_JES_Zjet_MuSmearMS: 2.39218577e-02 + syst_JES_Zjet_OOC: 3.75670131e-02 + syst_JES_Zjet_Stat1: 1.29611678e-03 + syst_JES_Zjet_Stat10: 2.99540899e-03 + syst_JES_Zjet_Stat11: 3.16157599e-03 + syst_JES_Zjet_Stat12: 2.47466983e-02 + syst_JES_Zjet_Stat13: 2.34686301e-02 + syst_JES_Zjet_Stat2: 1.14280712e-05 + syst_JES_Zjet_Stat3: 5.30017214e-04 + syst_JES_Zjet_Stat4: 4.94852548e-04 + syst_JES_Zjet_Stat5: 7.40088657e-04 + syst_JES_Zjet_Stat6: 4.88665394e-04 + syst_JES_Zjet_Stat7: 6.24212982e-04 + syst_JES_Zjet_Stat8: 1.05544958e-03 + syst_JES_Zjet_Stat9: 1.54373929e-03 + syst_JES_Zjet_Veto: 7.81106369e-03 + syst_JES_Zjet_dPhi: 6.64456003e-03 syst_PRW: 0.0 syst_Unfolding_bias: 0.006256 - syst_cleaning: 0.03327529408960948 + syst_cleaning: 3.32752941e-02 syst_lumi: 0.12802 - stat: 0.019554 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.02677522128760097 - syst_JER_NP1: 0.0017844125083623461 - syst_JER_NP2: 0.010498399306560978 - syst_JER_NP3: 0.0038614547453000147 - syst_JER_NP4: 3.4208038528977367e-06 - syst_JER_NP5: 0.0025692971645957965 - syst_JER_NP6: 6.870373843540103e-09 - syst_JER_NP7: 1.5800405058098986e-12 - syst_JER_NP8: 0.003602158623658875 - syst_JES_EtaIntercalibration_Modelling: 0.11392005047400566 + syst_JER_NP0: 2.67752213e-02 + syst_JER_NP1: 1.78441251e-03 + syst_JER_NP2: 1.04983993e-02 + syst_JER_NP3: 3.86145475e-03 + syst_JER_NP4: 3.42080385e-06 + syst_JER_NP5: 2.56929716e-03 + syst_JER_NP6: 6.87037384e-09 + syst_JER_NP7: 1.58004051e-12 + syst_JER_NP8: 3.60215862e-03 + syst_JES_EtaIntercalibration_Modelling: 1.13920050e-01 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 2.407242511152543e-07 - syst_JES_EtaIntercalibration_Stat101: 1.041781026655794e-05 - syst_JES_EtaIntercalibration_Stat102: 8.395745000147397e-07 - syst_JES_EtaIntercalibration_Stat103: 9.805112187017545e-10 + syst_JES_EtaIntercalibration_Stat100: 2.40724251e-07 + syst_JES_EtaIntercalibration_Stat101: 1.04178103e-05 + syst_JES_EtaIntercalibration_Stat102: 8.39574500e-07 + syst_JES_EtaIntercalibration_Stat103: 9.80511219e-10 syst_JES_EtaIntercalibration_Stat104: 0.0 syst_JES_EtaIntercalibration_Stat105: 0.0 syst_JES_EtaIntercalibration_Stat106: 0.0 @@ -28000,170 +28000,170 @@ bins: syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 syst_JES_EtaIntercalibration_Stat110: 0.0 - syst_JES_EtaIntercalibration_Stat111: 5.930541965115836e-15 - syst_JES_EtaIntercalibration_Stat112: 2.5902356553024284e-08 - syst_JES_EtaIntercalibration_Stat113: 1.3166932368627097e-05 - syst_JES_EtaIntercalibration_Stat114: 1.2900720939156852e-05 - syst_JES_EtaIntercalibration_Stat115: 8.872613754131306e-05 - syst_JES_EtaIntercalibration_Stat116: 3.547506667754434e-06 + syst_JES_EtaIntercalibration_Stat111: 5.93054197e-15 + syst_JES_EtaIntercalibration_Stat112: 2.59023566e-08 + syst_JES_EtaIntercalibration_Stat113: 1.31669324e-05 + syst_JES_EtaIntercalibration_Stat114: 1.29007209e-05 + syst_JES_EtaIntercalibration_Stat115: 8.87261375e-05 + syst_JES_EtaIntercalibration_Stat116: 3.54750667e-06 syst_JES_EtaIntercalibration_Stat117: 0.0 syst_JES_EtaIntercalibration_Stat118: 0.0 - syst_JES_EtaIntercalibration_Stat119: 4.172510254473377e-06 + syst_JES_EtaIntercalibration_Stat119: 4.17251025e-06 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 9.842825661363712e-06 - syst_JES_EtaIntercalibration_Stat121: 1.0839085616416174e-06 - syst_JES_EtaIntercalibration_Stat122: 7.5421325067914305e-06 - syst_JES_EtaIntercalibration_Stat123: 1.2928993699433843e-06 + syst_JES_EtaIntercalibration_Stat120: 9.84282566e-06 + syst_JES_EtaIntercalibration_Stat121: 1.08390856e-06 + syst_JES_EtaIntercalibration_Stat122: 7.54213251e-06 + syst_JES_EtaIntercalibration_Stat123: 1.29289937e-06 syst_JES_EtaIntercalibration_Stat124: 0.0 syst_JES_EtaIntercalibration_Stat125: 0.0 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 syst_JES_EtaIntercalibration_Stat128: 0.0 syst_JES_EtaIntercalibration_Stat129: 0.0 - syst_JES_EtaIntercalibration_Stat13: 4.18636687085847e-06 + syst_JES_EtaIntercalibration_Stat13: 4.18636687e-06 syst_JES_EtaIntercalibration_Stat130: 0.0 - syst_JES_EtaIntercalibration_Stat131: 1.1512752711667179e-07 - syst_JES_EtaIntercalibration_Stat132: 8.808181878231171e-05 - syst_JES_EtaIntercalibration_Stat133: 0.00025459031305216623 - syst_JES_EtaIntercalibration_Stat134: 0.00017406145466472466 - syst_JES_EtaIntercalibration_Stat135: 1.4516030111139203e-05 + syst_JES_EtaIntercalibration_Stat131: 1.15127527e-07 + syst_JES_EtaIntercalibration_Stat132: 8.80818188e-05 + syst_JES_EtaIntercalibration_Stat133: 2.54590313e-04 + syst_JES_EtaIntercalibration_Stat134: 1.74061455e-04 + syst_JES_EtaIntercalibration_Stat135: 1.45160301e-05 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 - syst_JES_EtaIntercalibration_Stat138: 3.891078227329797e-06 - syst_JES_EtaIntercalibration_Stat139: 9.806322858237944e-05 - syst_JES_EtaIntercalibration_Stat14: 2.8256402371851943e-13 - syst_JES_EtaIntercalibration_Stat140: 0.00017615001419244903 - syst_JES_EtaIntercalibration_Stat141: 1.422433361356517e-05 - syst_JES_EtaIntercalibration_Stat142: 3.926334579477403e-06 + syst_JES_EtaIntercalibration_Stat138: 3.89107823e-06 + syst_JES_EtaIntercalibration_Stat139: 9.80632286e-05 + syst_JES_EtaIntercalibration_Stat14: 2.82564024e-13 + syst_JES_EtaIntercalibration_Stat140: 1.76150014e-04 + syst_JES_EtaIntercalibration_Stat141: 1.42243336e-05 + syst_JES_EtaIntercalibration_Stat142: 3.92633458e-06 syst_JES_EtaIntercalibration_Stat143: 0.0 syst_JES_EtaIntercalibration_Stat144: 0.0 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 syst_JES_EtaIntercalibration_Stat147: 0.0 syst_JES_EtaIntercalibration_Stat148: 0.0 - syst_JES_EtaIntercalibration_Stat149: 1.1122543265256377e-05 - syst_JES_EtaIntercalibration_Stat15: 2.7199506378029144e-13 - syst_JES_EtaIntercalibration_Stat150: 7.83752990424917e-05 - syst_JES_EtaIntercalibration_Stat151: 0.0004559345128414825 - syst_JES_EtaIntercalibration_Stat152: 0.0002712152788837679 - syst_JES_EtaIntercalibration_Stat153: 1.5090535676376764e-05 + syst_JES_EtaIntercalibration_Stat149: 1.11225433e-05 + syst_JES_EtaIntercalibration_Stat15: 2.71995064e-13 + syst_JES_EtaIntercalibration_Stat150: 7.83752990e-05 + syst_JES_EtaIntercalibration_Stat151: 4.55934513e-04 + syst_JES_EtaIntercalibration_Stat152: 2.71215279e-04 + syst_JES_EtaIntercalibration_Stat153: 1.50905357e-05 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 4.289423863003255e-08 - syst_JES_EtaIntercalibration_Stat157: 0.00013157546760319722 - syst_JES_EtaIntercalibration_Stat158: 0.00027293410688296175 - syst_JES_EtaIntercalibration_Stat159: 9.410867069510652e-05 + syst_JES_EtaIntercalibration_Stat156: 4.28942386e-08 + syst_JES_EtaIntercalibration_Stat157: 1.31575468e-04 + syst_JES_EtaIntercalibration_Stat158: 2.72934107e-04 + syst_JES_EtaIntercalibration_Stat159: 9.41086707e-05 syst_JES_EtaIntercalibration_Stat16: 0.0 - syst_JES_EtaIntercalibration_Stat160: 1.8785197017864892e-06 + syst_JES_EtaIntercalibration_Stat160: 1.87851970e-06 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 - syst_JES_EtaIntercalibration_Stat167: 1.4769855678035586e-05 - syst_JES_EtaIntercalibration_Stat168: 9.945937462099789e-05 - syst_JES_EtaIntercalibration_Stat169: 0.0008762830649966938 + syst_JES_EtaIntercalibration_Stat167: 1.47698557e-05 + syst_JES_EtaIntercalibration_Stat168: 9.94593746e-05 + syst_JES_EtaIntercalibration_Stat169: 8.76283065e-04 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 0.0005063614087783547 - syst_JES_EtaIntercalibration_Stat171: 1.0349406456410918e-05 + syst_JES_EtaIntercalibration_Stat170: 5.06361409e-04 + syst_JES_EtaIntercalibration_Stat171: 1.03494065e-05 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 - syst_JES_EtaIntercalibration_Stat174: 1.9632810862984293e-06 - syst_JES_EtaIntercalibration_Stat175: 0.0005829042352736855 - syst_JES_EtaIntercalibration_Stat176: 0.0005489876205343797 - syst_JES_EtaIntercalibration_Stat177: 0.0003599256416261559 - syst_JES_EtaIntercalibration_Stat178: 9.391965010049814e-06 + syst_JES_EtaIntercalibration_Stat174: 1.96328109e-06 + syst_JES_EtaIntercalibration_Stat175: 5.82904235e-04 + syst_JES_EtaIntercalibration_Stat176: 5.48987621e-04 + syst_JES_EtaIntercalibration_Stat177: 3.59925642e-04 + syst_JES_EtaIntercalibration_Stat178: 9.39196501e-06 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 syst_JES_EtaIntercalibration_Stat180: 0.0 syst_JES_EtaIntercalibration_Stat181: 0.0 syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 - syst_JES_EtaIntercalibration_Stat184: 4.0405656782188304e-05 - syst_JES_EtaIntercalibration_Stat185: 0.0012513168453673115 - syst_JES_EtaIntercalibration_Stat186: 0.0040636065517591635 - syst_JES_EtaIntercalibration_Stat187: 0.0026178790556479112 - syst_JES_EtaIntercalibration_Stat188: 8.623016796468207e-05 + syst_JES_EtaIntercalibration_Stat184: 4.04056568e-05 + syst_JES_EtaIntercalibration_Stat185: 1.25131685e-03 + syst_JES_EtaIntercalibration_Stat186: 4.06360655e-03 + syst_JES_EtaIntercalibration_Stat187: 2.61787906e-03 + syst_JES_EtaIntercalibration_Stat188: 8.62301680e-05 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 - syst_JES_EtaIntercalibration_Stat191: 3.144711274505181e-05 - syst_JES_EtaIntercalibration_Stat192: 0.0029725243060402386 - syst_JES_EtaIntercalibration_Stat193: 0.004817880732230718 - syst_JES_EtaIntercalibration_Stat194: 0.001577440131193574 - syst_JES_EtaIntercalibration_Stat195: 3.2837606775616274e-05 - syst_JES_EtaIntercalibration_Stat196: 1.3067703394246443e-06 + syst_JES_EtaIntercalibration_Stat191: 3.14471127e-05 + syst_JES_EtaIntercalibration_Stat192: 2.97252431e-03 + syst_JES_EtaIntercalibration_Stat193: 4.81788073e-03 + syst_JES_EtaIntercalibration_Stat194: 1.57744013e-03 + syst_JES_EtaIntercalibration_Stat195: 3.28376068e-05 + syst_JES_EtaIntercalibration_Stat196: 1.30677034e-06 syst_JES_EtaIntercalibration_Stat197: 0.0 syst_JES_EtaIntercalibration_Stat198: 0.0 - syst_JES_EtaIntercalibration_Stat199: 5.878866979912031e-05 + syst_JES_EtaIntercalibration_Stat199: 5.87886698e-05 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 0.0013522500018487706 - syst_JES_EtaIntercalibration_Stat201: 0.004726900332141561 - syst_JES_EtaIntercalibration_Stat202: 0.002789963216603402 - syst_JES_EtaIntercalibration_Stat203: 5.710584137152696e-05 + syst_JES_EtaIntercalibration_Stat200: 1.35225000e-03 + syst_JES_EtaIntercalibration_Stat201: 4.72690033e-03 + syst_JES_EtaIntercalibration_Stat202: 2.78996322e-03 + syst_JES_EtaIntercalibration_Stat203: 5.71058414e-05 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 - syst_JES_EtaIntercalibration_Stat206: 3.793185040305838e-05 - syst_JES_EtaIntercalibration_Stat207: 0.0030693768097123557 - syst_JES_EtaIntercalibration_Stat208: 0.00597633884581522 - syst_JES_EtaIntercalibration_Stat209: 0.0013905319953169005 + syst_JES_EtaIntercalibration_Stat206: 3.79318504e-05 + syst_JES_EtaIntercalibration_Stat207: 3.06937681e-03 + syst_JES_EtaIntercalibration_Stat208: 5.97633885e-03 + syst_JES_EtaIntercalibration_Stat209: 1.39053200e-03 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 5.8684664947497146e-05 - syst_JES_EtaIntercalibration_Stat211: 1.5998919557270112e-06 - syst_JES_EtaIntercalibration_Stat212: 2.860324588224211e-05 - syst_JES_EtaIntercalibration_Stat213: 0.0003153707827411252 - syst_JES_EtaIntercalibration_Stat214: 0.0010985990203436376 - syst_JES_EtaIntercalibration_Stat215: 0.0005417635531299609 - syst_JES_EtaIntercalibration_Stat216: 7.168002284458342e-05 + syst_JES_EtaIntercalibration_Stat210: 5.86846649e-05 + syst_JES_EtaIntercalibration_Stat211: 1.59989196e-06 + syst_JES_EtaIntercalibration_Stat212: 2.86032459e-05 + syst_JES_EtaIntercalibration_Stat213: 3.15370783e-04 + syst_JES_EtaIntercalibration_Stat214: 1.09859902e-03 + syst_JES_EtaIntercalibration_Stat215: 5.41763553e-04 + syst_JES_EtaIntercalibration_Stat216: 7.16800228e-05 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 - syst_JES_EtaIntercalibration_Stat219: 1.6446772350525195e-05 + syst_JES_EtaIntercalibration_Stat219: 1.64467724e-05 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 0.0009600449716028932 - syst_JES_EtaIntercalibration_Stat221: 0.0013047348265069038 - syst_JES_EtaIntercalibration_Stat222: 0.0003991980715133779 - syst_JES_EtaIntercalibration_Stat223: 4.6877955106851666e-05 - syst_JES_EtaIntercalibration_Stat224: 1.6974653675627672e-05 - syst_JES_EtaIntercalibration_Stat225: 9.061478190670659e-05 - syst_JES_EtaIntercalibration_Stat226: 0.0005545498782796729 - syst_JES_EtaIntercalibration_Stat227: 0.0003081153355482327 - syst_JES_EtaIntercalibration_Stat228: 8.791024515829523e-06 + syst_JES_EtaIntercalibration_Stat220: 9.60044972e-04 + syst_JES_EtaIntercalibration_Stat221: 1.30473483e-03 + syst_JES_EtaIntercalibration_Stat222: 3.99198072e-04 + syst_JES_EtaIntercalibration_Stat223: 4.68779551e-05 + syst_JES_EtaIntercalibration_Stat224: 1.69746537e-05 + syst_JES_EtaIntercalibration_Stat225: 9.06147819e-05 + syst_JES_EtaIntercalibration_Stat226: 5.54549878e-04 + syst_JES_EtaIntercalibration_Stat227: 3.08115336e-04 + syst_JES_EtaIntercalibration_Stat228: 8.79102452e-06 syst_JES_EtaIntercalibration_Stat229: 0.0 syst_JES_EtaIntercalibration_Stat23: 0.0 syst_JES_EtaIntercalibration_Stat230: 0.0 - syst_JES_EtaIntercalibration_Stat231: 3.6433688737211336e-07 - syst_JES_EtaIntercalibration_Stat232: 0.00037177400941297654 - syst_JES_EtaIntercalibration_Stat233: 0.0004395328656653561 - syst_JES_EtaIntercalibration_Stat234: 0.0002129781855026472 - syst_JES_EtaIntercalibration_Stat235: 1.3813105190363413e-05 - syst_JES_EtaIntercalibration_Stat236: 1.3693338964620718e-05 - syst_JES_EtaIntercalibration_Stat237: 3.204251394631826e-05 - syst_JES_EtaIntercalibration_Stat238: 2.3839129073856705e-05 - syst_JES_EtaIntercalibration_Stat239: 7.417507583411132e-08 + syst_JES_EtaIntercalibration_Stat231: 3.64336887e-07 + syst_JES_EtaIntercalibration_Stat232: 3.71774009e-04 + syst_JES_EtaIntercalibration_Stat233: 4.39532866e-04 + syst_JES_EtaIntercalibration_Stat234: 2.12978186e-04 + syst_JES_EtaIntercalibration_Stat235: 1.38131052e-05 + syst_JES_EtaIntercalibration_Stat236: 1.36933390e-05 + syst_JES_EtaIntercalibration_Stat237: 3.20425139e-05 + syst_JES_EtaIntercalibration_Stat238: 2.38391291e-05 + syst_JES_EtaIntercalibration_Stat239: 7.41750758e-08 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 - syst_JES_EtaIntercalibration_Stat242: 1.8385719322343631e-16 - syst_JES_EtaIntercalibration_Stat243: 1.5883034053668712e-05 - syst_JES_EtaIntercalibration_Stat244: 2.4685953495864812e-05 - syst_JES_EtaIntercalibration_Stat245: 1.3583350792422318e-05 + syst_JES_EtaIntercalibration_Stat242: 1.83857193e-16 + syst_JES_EtaIntercalibration_Stat243: 1.58830341e-05 + syst_JES_EtaIntercalibration_Stat244: 2.46859535e-05 + syst_JES_EtaIntercalibration_Stat245: 1.35833508e-05 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 - syst_JES_EtaIntercalibration_Stat27: 3.471031839381483e-14 - syst_JES_EtaIntercalibration_Stat28: 2.6960306834547026e-08 - syst_JES_EtaIntercalibration_Stat29: 4.13872487969749e-06 + syst_JES_EtaIntercalibration_Stat27: 3.47103184e-14 + syst_JES_EtaIntercalibration_Stat28: 2.69603068e-08 + syst_JES_EtaIntercalibration_Stat29: 4.13872488e-06 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 4.177677415574189e-06 - syst_JES_EtaIntercalibration_Stat31: 5.355501097002969e-15 + syst_JES_EtaIntercalibration_Stat30: 4.17767742e-06 + syst_JES_EtaIntercalibration_Stat31: 5.35550110e-15 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 - syst_JES_EtaIntercalibration_Stat34: 3.975922628774358e-16 - syst_JES_EtaIntercalibration_Stat35: 4.178601383832877e-06 - syst_JES_EtaIntercalibration_Stat36: 4.204701619834482e-06 - syst_JES_EtaIntercalibration_Stat37: 3.7794843388351274e-10 - syst_JES_EtaIntercalibration_Stat38: 1.733062234168179e-13 + syst_JES_EtaIntercalibration_Stat34: 3.97592263e-16 + syst_JES_EtaIntercalibration_Stat35: 4.17860138e-06 + syst_JES_EtaIntercalibration_Stat36: 4.20470162e-06 + syst_JES_EtaIntercalibration_Stat37: 3.77948434e-10 + syst_JES_EtaIntercalibration_Stat38: 1.73306223e-13 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 syst_JES_EtaIntercalibration_Stat40: 0.0 @@ -28174,21 +28174,21 @@ bins: syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 syst_JES_EtaIntercalibration_Stat47: 0.0 - syst_JES_EtaIntercalibration_Stat48: 2.1079058328113238e-14 - syst_JES_EtaIntercalibration_Stat49: 2.8602360042486007e-13 - syst_JES_EtaIntercalibration_Stat5: 1.9961885557231312e-14 - syst_JES_EtaIntercalibration_Stat50: 2.777215020033559e-08 - syst_JES_EtaIntercalibration_Stat51: 4.020944454378846e-06 - syst_JES_EtaIntercalibration_Stat52: 4.119603495122742e-06 - syst_JES_EtaIntercalibration_Stat53: 1.8494362945232796e-13 - syst_JES_EtaIntercalibration_Stat54: 1.3735162904021198e-13 + syst_JES_EtaIntercalibration_Stat48: 2.10790583e-14 + syst_JES_EtaIntercalibration_Stat49: 2.86023600e-13 + syst_JES_EtaIntercalibration_Stat5: 1.99618856e-14 + syst_JES_EtaIntercalibration_Stat50: 2.77721502e-08 + syst_JES_EtaIntercalibration_Stat51: 4.02094445e-06 + syst_JES_EtaIntercalibration_Stat52: 4.11960350e-06 + syst_JES_EtaIntercalibration_Stat53: 1.84943629e-13 + syst_JES_EtaIntercalibration_Stat54: 1.37351629e-13 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 3.219638916089815e-15 - syst_JES_EtaIntercalibration_Stat57: 4.156111577192677e-06 - syst_JES_EtaIntercalibration_Stat58: 4.174740167440724e-06 - syst_JES_EtaIntercalibration_Stat59: 7.155733924622965e-10 - syst_JES_EtaIntercalibration_Stat6: 3.858525454108084e-14 - syst_JES_EtaIntercalibration_Stat60: 1.7938598516885314e-12 + syst_JES_EtaIntercalibration_Stat56: 3.21963892e-15 + syst_JES_EtaIntercalibration_Stat57: 4.15611158e-06 + syst_JES_EtaIntercalibration_Stat58: 4.17474017e-06 + syst_JES_EtaIntercalibration_Stat59: 7.15573392e-10 + syst_JES_EtaIntercalibration_Stat6: 3.85852545e-14 + syst_JES_EtaIntercalibration_Stat60: 1.79385985e-12 syst_JES_EtaIntercalibration_Stat61: 0.0 syst_JES_EtaIntercalibration_Stat62: 0.0 syst_JES_EtaIntercalibration_Stat63: 0.0 @@ -28198,21 +28198,21 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 1.158241869170684e-12 - syst_JES_EtaIntercalibration_Stat70: 1.9961885557231312e-14 - syst_JES_EtaIntercalibration_Stat71: 2.565722266731144e-12 - syst_JES_EtaIntercalibration_Stat72: 3.943141260467345e-08 - syst_JES_EtaIntercalibration_Stat73: 1.039012871671954e-05 - syst_JES_EtaIntercalibration_Stat74: 1.2757936627840726e-05 - syst_JES_EtaIntercalibration_Stat75: 1.1927338855230869e-11 - syst_JES_EtaIntercalibration_Stat76: 1.3735162904021198e-13 + syst_JES_EtaIntercalibration_Stat7: 1.15824187e-12 + syst_JES_EtaIntercalibration_Stat70: 1.99618856e-14 + syst_JES_EtaIntercalibration_Stat71: 2.56572227e-12 + syst_JES_EtaIntercalibration_Stat72: 3.94314126e-08 + syst_JES_EtaIntercalibration_Stat73: 1.03901287e-05 + syst_JES_EtaIntercalibration_Stat74: 1.27579366e-05 + syst_JES_EtaIntercalibration_Stat75: 1.19273389e-11 + syst_JES_EtaIntercalibration_Stat76: 1.37351629e-13 syst_JES_EtaIntercalibration_Stat77: 0.0 - syst_JES_EtaIntercalibration_Stat78: 2.4509188073047213e-12 - syst_JES_EtaIntercalibration_Stat79: 3.8803082101518695e-06 - syst_JES_EtaIntercalibration_Stat8: 1.6487673334949355e-13 - syst_JES_EtaIntercalibration_Stat80: 1.1282101181960744e-05 - syst_JES_EtaIntercalibration_Stat81: 1.3411935919452493e-06 - syst_JES_EtaIntercalibration_Stat82: 2.3327247480146475e-12 + syst_JES_EtaIntercalibration_Stat78: 2.45091881e-12 + syst_JES_EtaIntercalibration_Stat79: 3.88030821e-06 + syst_JES_EtaIntercalibration_Stat8: 1.64876733e-13 + syst_JES_EtaIntercalibration_Stat80: 1.12821012e-05 + syst_JES_EtaIntercalibration_Stat81: 1.34119359e-06 + syst_JES_EtaIntercalibration_Stat82: 2.33272475e-12 syst_JES_EtaIntercalibration_Stat83: 0.0 syst_JES_EtaIntercalibration_Stat84: 0.0 syst_JES_EtaIntercalibration_Stat85: 0.0 @@ -28222,113 +28222,113 @@ bins: syst_JES_EtaIntercalibration_Stat89: 0.0 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 1.72079247731968e-14 - syst_JES_EtaIntercalibration_Stat92: 2.4320550627144526e-09 - syst_JES_EtaIntercalibration_Stat93: 5.7560322538620294e-08 - syst_JES_EtaIntercalibration_Stat94: 1.0624832081026035e-05 - syst_JES_EtaIntercalibration_Stat95: 1.2998189220041382e-05 - syst_JES_EtaIntercalibration_Stat96: 2.3150567746817786e-11 - syst_JES_EtaIntercalibration_Stat97: 1.3735162904021198e-13 + syst_JES_EtaIntercalibration_Stat91: 1.72079248e-14 + syst_JES_EtaIntercalibration_Stat92: 2.43205506e-09 + syst_JES_EtaIntercalibration_Stat93: 5.75603225e-08 + syst_JES_EtaIntercalibration_Stat94: 1.06248321e-05 + syst_JES_EtaIntercalibration_Stat95: 1.29981892e-05 + syst_JES_EtaIntercalibration_Stat96: 2.31505677e-11 + syst_JES_EtaIntercalibration_Stat97: 1.37351629e-13 syst_JES_EtaIntercalibration_Stat98: 0.0 - syst_JES_EtaIntercalibration_Stat99: 2.9392981648699763e-07 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.012790366843839936 - syst_JES_Flavour_Comp: 0.04172856216070714 - syst_JES_Flavour_Response: 0.0337668239548821 - syst_JES_Gjet_Generator: 0.07712392235875973 - syst_JES_Gjet_OOC: 0.05912557885551735 - syst_JES_Gjet_Purity: 0.018900721547073274 - syst_JES_Gjet_Stat1: 0.0001593486742963338 - syst_JES_Gjet_Stat10: 0.0019196267215268702 - syst_JES_Gjet_Stat11: 0.0030074051938506724 - syst_JES_Gjet_Stat12: 0.010200801966022082 - syst_JES_Gjet_Stat13: 0.015743877381382262 - syst_JES_Gjet_Stat14: 0.00340243471649347 - syst_JES_Gjet_Stat15: 0.003994555309418058 - syst_JES_Gjet_Stat2: 0.00016520414527713886 - syst_JES_Gjet_Stat3: 0.00016751465249344606 - syst_JES_Gjet_Stat4: 0.0001623468740074782 - syst_JES_Gjet_Stat5: 0.0001779672652484158 - syst_JES_Gjet_Stat6: 0.0006683010904524995 - syst_JES_Gjet_Stat7: 0.0007652097947621946 - syst_JES_Gjet_Stat8: 0.0005436593119776392 - syst_JES_Gjet_Stat9: 0.001193670954451016 - syst_JES_Gjet_Veto: 0.042689437510934715 - syst_JES_Gjet_dPhi: 0.0048287100762004756 - syst_JES_LArESZee: 0.1139184576791663 - syst_JES_LArEsmear: 0.008826681539514157 - syst_JES_LAr_JVT: 0.011071784363868364 - syst_JES_MJB_Alpha: 0.0007369270248810258 - syst_JES_MJB_Asym: 0.003723840859918694 - syst_JES_MJB_Beta: 0.00044591765952359415 - syst_JES_MJB_Fragmentation: 0.012672160391977367 - syst_JES_MJB_Stat1: 0.00012016968502912871 - syst_JES_MJB_Stat10: 0.00013206888444056747 - syst_JES_MJB_Stat11: 5.862539482809476e-06 - syst_JES_MJB_Stat12: 7.47812933835945e-06 - syst_JES_MJB_Stat13: 8.372980890937231e-06 - syst_JES_MJB_Stat14: 2.184883545523651e-06 - syst_JES_MJB_Stat15: 2.1566447899457156e-07 - syst_JES_MJB_Stat16: 9.422971515795853e-09 + syst_JES_EtaIntercalibration_Stat99: 2.93929816e-07 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.27903668e-02 + syst_JES_Flavour_Comp: 4.17285622e-02 + syst_JES_Flavour_Response: 3.37668240e-02 + syst_JES_Gjet_Generator: 7.71239224e-02 + syst_JES_Gjet_OOC: 5.91255789e-02 + syst_JES_Gjet_Purity: 1.89007215e-02 + syst_JES_Gjet_Stat1: 1.59348674e-04 + syst_JES_Gjet_Stat10: 1.91962672e-03 + syst_JES_Gjet_Stat11: 3.00740519e-03 + syst_JES_Gjet_Stat12: 1.02008020e-02 + syst_JES_Gjet_Stat13: 1.57438774e-02 + syst_JES_Gjet_Stat14: 3.40243472e-03 + syst_JES_Gjet_Stat15: 3.99455531e-03 + syst_JES_Gjet_Stat2: 1.65204145e-04 + syst_JES_Gjet_Stat3: 1.67514652e-04 + syst_JES_Gjet_Stat4: 1.62346874e-04 + syst_JES_Gjet_Stat5: 1.77967265e-04 + syst_JES_Gjet_Stat6: 6.68301090e-04 + syst_JES_Gjet_Stat7: 7.65209795e-04 + syst_JES_Gjet_Stat8: 5.43659312e-04 + syst_JES_Gjet_Stat9: 1.19367095e-03 + syst_JES_Gjet_Veto: 4.26894375e-02 + syst_JES_Gjet_dPhi: 4.82871008e-03 + syst_JES_LArESZee: 1.13918458e-01 + syst_JES_LArEsmear: 8.82668154e-03 + syst_JES_LAr_JVT: 1.10717844e-02 + syst_JES_MJB_Alpha: 7.36927025e-04 + syst_JES_MJB_Asym: 3.72384086e-03 + syst_JES_MJB_Beta: 4.45917660e-04 + syst_JES_MJB_Fragmentation: 1.26721604e-02 + syst_JES_MJB_Stat1: 1.20169685e-04 + syst_JES_MJB_Stat10: 1.32068884e-04 + syst_JES_MJB_Stat11: 5.86253948e-06 + syst_JES_MJB_Stat12: 7.47812934e-06 + syst_JES_MJB_Stat13: 8.37298089e-06 + syst_JES_MJB_Stat14: 2.18488355e-06 + syst_JES_MJB_Stat15: 2.15664479e-07 + syst_JES_MJB_Stat16: 9.42297152e-09 syst_JES_MJB_Stat2: 0.0 - syst_JES_MJB_Stat3: 0.0012217020371187075 - syst_JES_MJB_Stat4: 0.0003206026044809992 - syst_JES_MJB_Stat5: 2.0412218767199218e-05 - syst_JES_MJB_Stat6: 7.76446178108953e-05 - syst_JES_MJB_Stat7: 1.5097627629355383e-05 - syst_JES_MJB_Stat8: 1.4183509582479928e-05 - syst_JES_MJB_Stat9: 1.337039275005798e-07 - syst_JES_MJB_Threshold: 0.005714782498048374 - syst_JES_Pileup_MuOffset: 0.010791467879765013 - syst_JES_Pileup_NPVOffset: 0.011208847487587652 - syst_JES_Pileup_Pt_term: 0.014110700505290301 - syst_JES_Pileup_Rho_topology: 0.024150772244381755 - syst_JES_PunchThrough_MC15: 0.0014642076995768053 + syst_JES_MJB_Stat3: 1.22170204e-03 + syst_JES_MJB_Stat4: 3.20602604e-04 + syst_JES_MJB_Stat5: 2.04122188e-05 + syst_JES_MJB_Stat6: 7.76446178e-05 + syst_JES_MJB_Stat7: 1.50976276e-05 + syst_JES_MJB_Stat8: 1.41835096e-05 + syst_JES_MJB_Stat9: 1.33703928e-07 + syst_JES_MJB_Threshold: 5.71478250e-03 + syst_JES_Pileup_MuOffset: 1.07914679e-02 + syst_JES_Pileup_NPVOffset: 1.12088475e-02 + syst_JES_Pileup_Pt_term: 1.41107005e-02 + syst_JES_Pileup_Rho_topology: 2.41507722e-02 + syst_JES_PunchThrough_MC15: 1.46420770e-03 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.055012488582139245 - syst_JES_Zjet_MuScale: 0.003394010606936873 - syst_JES_Zjet_MuSmearID: 0.0006839045986100692 - syst_JES_Zjet_MuSmearMS: 0.01492204660896085 - syst_JES_Zjet_OOC: 0.02279888374460469 - syst_JES_Zjet_Stat1: 0.0009115625636784346 - syst_JES_Zjet_Stat10: 0.0017355520015257394 - syst_JES_Zjet_Stat11: 0.002107357290541877 - syst_JES_Zjet_Stat12: 0.013045127289528453 - syst_JES_Zjet_Stat13: 0.015408935719250698 - syst_JES_Zjet_Stat2: 7.2096614865054525e-06 - syst_JES_Zjet_Stat3: 0.000363620141768852 - syst_JES_Zjet_Stat4: 0.0003488305140035774 - syst_JES_Zjet_Stat5: 0.0005268188564392888 - syst_JES_Zjet_Stat6: 0.00034976521768180437 - syst_JES_Zjet_Stat7: 0.000452818029124283 - syst_JES_Zjet_Stat8: 0.0005740132293771635 - syst_JES_Zjet_Stat9: 0.0009988874260896472 - syst_JES_Zjet_Veto: 0.004966053060530062 - syst_JES_Zjet_dPhi: 0.004157711325958069 + syst_JES_Zjet_MC: 5.50124886e-02 + syst_JES_Zjet_MuScale: 3.39401061e-03 + syst_JES_Zjet_MuSmearID: 6.83904599e-04 + syst_JES_Zjet_MuSmearMS: 1.49220466e-02 + syst_JES_Zjet_OOC: 2.27988837e-02 + syst_JES_Zjet_Stat1: 9.11562564e-04 + syst_JES_Zjet_Stat10: 1.73555200e-03 + syst_JES_Zjet_Stat11: 2.10735729e-03 + syst_JES_Zjet_Stat12: 1.30451273e-02 + syst_JES_Zjet_Stat13: 1.54089357e-02 + syst_JES_Zjet_Stat2: 7.20966149e-06 + syst_JES_Zjet_Stat3: 3.63620142e-04 + syst_JES_Zjet_Stat4: 3.48830514e-04 + syst_JES_Zjet_Stat5: 5.26818856e-04 + syst_JES_Zjet_Stat6: 3.49765218e-04 + syst_JES_Zjet_Stat7: 4.52818029e-04 + syst_JES_Zjet_Stat8: 5.74013229e-04 + syst_JES_Zjet_Stat9: 9.98887426e-04 + syst_JES_Zjet_Veto: 4.96605306e-03 + syst_JES_Zjet_dPhi: 4.15771133e-03 syst_PRW: 0.0 - syst_Unfolding_bias: 0.0039472 - syst_cleaning: 0.021079058328113236 + syst_Unfolding_bias: 3.94720000e-03 + syst_cleaning: 2.10790583e-02 syst_lumi: 0.08077 - stat: 0.010458 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.016664672213998092 - syst_JER_NP1: 0.0011405230938038914 - syst_JER_NP2: 0.0068764348320914095 - syst_JER_NP3: 0.0019682908194674892 - syst_JER_NP4: 4.4868559147804154e-07 - syst_JER_NP5: 0.0014137670529475498 - syst_JER_NP6: 8.519554448443886e-10 - syst_JER_NP7: 2.4670583697999525e-13 - syst_JER_NP8: 0.0022218498486621455 - syst_JES_EtaIntercalibration_Modelling: 0.07833867547386796 + syst_JER_NP0: 1.66646722e-02 + syst_JER_NP1: 1.14052309e-03 + syst_JER_NP2: 6.87643483e-03 + syst_JER_NP3: 1.96829082e-03 + syst_JER_NP4: 4.48685591e-07 + syst_JER_NP5: 1.41376705e-03 + syst_JER_NP6: 8.51955445e-10 + syst_JER_NP7: 2.46705837e-13 + syst_JER_NP8: 2.22184985e-03 + syst_JES_EtaIntercalibration_Modelling: 7.83386755e-02 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 9.516423527250141e-08 - syst_JES_EtaIntercalibration_Stat101: 6.532512411584076e-06 - syst_JES_EtaIntercalibration_Stat102: 2.7891537551737806e-07 - syst_JES_EtaIntercalibration_Stat103: 1.2023974966707142e-10 + syst_JES_EtaIntercalibration_Stat100: 9.51642353e-08 + syst_JES_EtaIntercalibration_Stat101: 6.53251241e-06 + syst_JES_EtaIntercalibration_Stat102: 2.78915376e-07 + syst_JES_EtaIntercalibration_Stat103: 1.20239750e-10 syst_JES_EtaIntercalibration_Stat104: 0.0 syst_JES_EtaIntercalibration_Stat105: 0.0 syst_JES_EtaIntercalibration_Stat106: 0.0 @@ -28337,170 +28337,170 @@ bins: syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 syst_JES_EtaIntercalibration_Stat110: 0.0 - syst_JES_EtaIntercalibration_Stat111: 9.116649425638786e-16 - syst_JES_EtaIntercalibration_Stat112: 3.4482128947470744e-09 - syst_JES_EtaIntercalibration_Stat113: 6.051364639484222e-06 - syst_JES_EtaIntercalibration_Stat114: 1.0213743424915275e-05 - syst_JES_EtaIntercalibration_Stat115: 6.012949077407856e-05 - syst_JES_EtaIntercalibration_Stat116: 9.452997139676374e-07 + syst_JES_EtaIntercalibration_Stat111: 9.11664943e-16 + syst_JES_EtaIntercalibration_Stat112: 3.44821289e-09 + syst_JES_EtaIntercalibration_Stat113: 6.05136464e-06 + syst_JES_EtaIntercalibration_Stat114: 1.02137434e-05 + syst_JES_EtaIntercalibration_Stat115: 6.01294908e-05 + syst_JES_EtaIntercalibration_Stat116: 9.45299714e-07 syst_JES_EtaIntercalibration_Stat117: 0.0 syst_JES_EtaIntercalibration_Stat118: 0.0 - syst_JES_EtaIntercalibration_Stat119: 1.0281453388423117e-06 + syst_JES_EtaIntercalibration_Stat119: 1.02814534e-06 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 4.174654087466409e-06 - syst_JES_EtaIntercalibration_Stat121: 4.633282529697493e-06 - syst_JES_EtaIntercalibration_Stat122: 5.509237921890831e-06 - syst_JES_EtaIntercalibration_Stat123: 5.430641349785494e-07 + syst_JES_EtaIntercalibration_Stat120: 4.17465409e-06 + syst_JES_EtaIntercalibration_Stat121: 4.63328253e-06 + syst_JES_EtaIntercalibration_Stat122: 5.50923792e-06 + syst_JES_EtaIntercalibration_Stat123: 5.43064135e-07 syst_JES_EtaIntercalibration_Stat124: 0.0 syst_JES_EtaIntercalibration_Stat125: 0.0 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 syst_JES_EtaIntercalibration_Stat128: 0.0 syst_JES_EtaIntercalibration_Stat129: 0.0 - syst_JES_EtaIntercalibration_Stat13: 1.0310898551190347e-06 + syst_JES_EtaIntercalibration_Stat13: 1.03108986e-06 syst_JES_EtaIntercalibration_Stat130: 0.0 - syst_JES_EtaIntercalibration_Stat131: 2.3504218238435417e-08 - syst_JES_EtaIntercalibration_Stat132: 4.1536387360963404e-05 - syst_JES_EtaIntercalibration_Stat133: 0.0001113886110650456 - syst_JES_EtaIntercalibration_Stat134: 7.075617340557641e-05 - syst_JES_EtaIntercalibration_Stat135: 5.368800249590219e-06 + syst_JES_EtaIntercalibration_Stat131: 2.35042182e-08 + syst_JES_EtaIntercalibration_Stat132: 4.15363874e-05 + syst_JES_EtaIntercalibration_Stat133: 1.11388611e-04 + syst_JES_EtaIntercalibration_Stat134: 7.07561734e-05 + syst_JES_EtaIntercalibration_Stat135: 5.36880025e-06 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 - syst_JES_EtaIntercalibration_Stat138: 9.511074419227041e-07 - syst_JES_EtaIntercalibration_Stat139: 2.918958438809981e-05 - syst_JES_EtaIntercalibration_Stat14: 3.8361338284788763e-14 - syst_JES_EtaIntercalibration_Stat140: 5.594584098036243e-05 - syst_JES_EtaIntercalibration_Stat141: 6.8941519239134846e-06 - syst_JES_EtaIntercalibration_Stat142: 3.0772860689372056e-06 + syst_JES_EtaIntercalibration_Stat138: 9.51107442e-07 + syst_JES_EtaIntercalibration_Stat139: 2.91895844e-05 + syst_JES_EtaIntercalibration_Stat14: 3.83613383e-14 + syst_JES_EtaIntercalibration_Stat140: 5.59458410e-05 + syst_JES_EtaIntercalibration_Stat141: 6.89415192e-06 + syst_JES_EtaIntercalibration_Stat142: 3.07728607e-06 syst_JES_EtaIntercalibration_Stat143: 0.0 syst_JES_EtaIntercalibration_Stat144: 0.0 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 syst_JES_EtaIntercalibration_Stat147: 0.0 syst_JES_EtaIntercalibration_Stat148: 0.0 - syst_JES_EtaIntercalibration_Stat149: 7.1519060920848225e-06 - syst_JES_EtaIntercalibration_Stat15: 3.6900066622932735e-14 - syst_JES_EtaIntercalibration_Stat150: 4.492073769429883e-05 - syst_JES_EtaIntercalibration_Stat151: 0.00019519689418635738 - syst_JES_EtaIntercalibration_Stat152: 0.00011456449842774157 - syst_JES_EtaIntercalibration_Stat153: 5.743779197314257e-06 + syst_JES_EtaIntercalibration_Stat149: 7.15190609e-06 + syst_JES_EtaIntercalibration_Stat15: 3.69000666e-14 + syst_JES_EtaIntercalibration_Stat150: 4.49207377e-05 + syst_JES_EtaIntercalibration_Stat151: 1.95196894e-04 + syst_JES_EtaIntercalibration_Stat152: 1.14564498e-04 + syst_JES_EtaIntercalibration_Stat153: 5.74377920e-06 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 5.4750125968391355e-08 - syst_JES_EtaIntercalibration_Stat157: 2.5283952914843043e-05 - syst_JES_EtaIntercalibration_Stat158: 0.00010482470259914882 - syst_JES_EtaIntercalibration_Stat159: 4.4690576489904446e-05 + syst_JES_EtaIntercalibration_Stat156: 5.47501260e-08 + syst_JES_EtaIntercalibration_Stat157: 2.52839529e-05 + syst_JES_EtaIntercalibration_Stat158: 1.04824703e-04 + syst_JES_EtaIntercalibration_Stat159: 4.46905765e-05 syst_JES_EtaIntercalibration_Stat16: 0.0 - syst_JES_EtaIntercalibration_Stat160: 4.295455212198121e-07 + syst_JES_EtaIntercalibration_Stat160: 4.29545521e-07 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 - syst_JES_EtaIntercalibration_Stat167: 5.522244427766666e-06 - syst_JES_EtaIntercalibration_Stat168: 6.0304861329746876e-05 - syst_JES_EtaIntercalibration_Stat169: 0.0003372758366678526 + syst_JES_EtaIntercalibration_Stat167: 5.52224443e-06 + syst_JES_EtaIntercalibration_Stat168: 6.03048613e-05 + syst_JES_EtaIntercalibration_Stat169: 3.37275837e-04 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 0.00019058108912153377 - syst_JES_EtaIntercalibration_Stat171: 4.040948774731004e-06 + syst_JES_EtaIntercalibration_Stat170: 1.90581089e-04 + syst_JES_EtaIntercalibration_Stat171: 4.04094877e-06 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 - syst_JES_EtaIntercalibration_Stat174: 3.135013865805481e-07 - syst_JES_EtaIntercalibration_Stat175: 0.00021238702290865135 - syst_JES_EtaIntercalibration_Stat176: 0.0001612573409181734 - syst_JES_EtaIntercalibration_Stat177: 0.00013072532147598642 - syst_JES_EtaIntercalibration_Stat178: 4.768592114031142e-06 + syst_JES_EtaIntercalibration_Stat174: 3.13501387e-07 + syst_JES_EtaIntercalibration_Stat175: 2.12387023e-04 + syst_JES_EtaIntercalibration_Stat176: 1.61257341e-04 + syst_JES_EtaIntercalibration_Stat177: 1.30725321e-04 + syst_JES_EtaIntercalibration_Stat178: 4.76859211e-06 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 syst_JES_EtaIntercalibration_Stat180: 0.0 syst_JES_EtaIntercalibration_Stat181: 0.0 syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 - syst_JES_EtaIntercalibration_Stat184: 2.0357135573306967e-05 - syst_JES_EtaIntercalibration_Stat185: 0.0005820718254648647 - syst_JES_EtaIntercalibration_Stat186: 0.0019155471150561658 - syst_JES_EtaIntercalibration_Stat187: 0.0011410195528561288 - syst_JES_EtaIntercalibration_Stat188: 6.658087370739294e-05 + syst_JES_EtaIntercalibration_Stat184: 2.03571356e-05 + syst_JES_EtaIntercalibration_Stat185: 5.82071825e-04 + syst_JES_EtaIntercalibration_Stat186: 1.91554712e-03 + syst_JES_EtaIntercalibration_Stat187: 1.14101955e-03 + syst_JES_EtaIntercalibration_Stat188: 6.65808737e-05 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 - syst_JES_EtaIntercalibration_Stat191: 8.94386420010948e-06 - syst_JES_EtaIntercalibration_Stat192: 0.00137244405350455 - syst_JES_EtaIntercalibration_Stat193: 0.00216653363694174 - syst_JES_EtaIntercalibration_Stat194: 0.0007012391229102951 - syst_JES_EtaIntercalibration_Stat195: 2.4715359524595228e-05 - syst_JES_EtaIntercalibration_Stat196: 5.46585101036426e-07 + syst_JES_EtaIntercalibration_Stat191: 8.94386420e-06 + syst_JES_EtaIntercalibration_Stat192: 1.37244405e-03 + syst_JES_EtaIntercalibration_Stat193: 2.16653364e-03 + syst_JES_EtaIntercalibration_Stat194: 7.01239123e-04 + syst_JES_EtaIntercalibration_Stat195: 2.47153595e-05 + syst_JES_EtaIntercalibration_Stat196: 5.46585101e-07 syst_JES_EtaIntercalibration_Stat197: 0.0 syst_JES_EtaIntercalibration_Stat198: 0.0 - syst_JES_EtaIntercalibration_Stat199: 3.526758497544169e-05 + syst_JES_EtaIntercalibration_Stat199: 3.52675850e-05 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 0.0007622140824597772 - syst_JES_EtaIntercalibration_Stat201: 0.002570733504274607 - syst_JES_EtaIntercalibration_Stat202: 0.001361135256871998 - syst_JES_EtaIntercalibration_Stat203: 5.9117890581024627e-05 + syst_JES_EtaIntercalibration_Stat200: 7.62214082e-04 + syst_JES_EtaIntercalibration_Stat201: 2.57073350e-03 + syst_JES_EtaIntercalibration_Stat202: 1.36113526e-03 + syst_JES_EtaIntercalibration_Stat203: 5.91178906e-05 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 - syst_JES_EtaIntercalibration_Stat206: 3.78358665818559e-06 - syst_JES_EtaIntercalibration_Stat207: 0.0016456502514203923 - syst_JES_EtaIntercalibration_Stat208: 0.003239744550115024 - syst_JES_EtaIntercalibration_Stat209: 0.0007487345774705481 + syst_JES_EtaIntercalibration_Stat206: 3.78358666e-06 + syst_JES_EtaIntercalibration_Stat207: 1.64565025e-03 + syst_JES_EtaIntercalibration_Stat208: 3.23974455e-03 + syst_JES_EtaIntercalibration_Stat209: 7.48734577e-04 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 3.64069787266123e-05 - syst_JES_EtaIntercalibration_Stat211: 6.220559377379175e-07 - syst_JES_EtaIntercalibration_Stat212: 1.0669700124652052e-05 - syst_JES_EtaIntercalibration_Stat213: 0.0003325056042760783 - syst_JES_EtaIntercalibration_Stat214: 0.0009929932968051698 - syst_JES_EtaIntercalibration_Stat215: 0.0005441064969286804 - syst_JES_EtaIntercalibration_Stat216: 6.673374165292997e-05 + syst_JES_EtaIntercalibration_Stat210: 3.64069787e-05 + syst_JES_EtaIntercalibration_Stat211: 6.22055938e-07 + syst_JES_EtaIntercalibration_Stat212: 1.06697001e-05 + syst_JES_EtaIntercalibration_Stat213: 3.32505604e-04 + syst_JES_EtaIntercalibration_Stat214: 9.92993297e-04 + syst_JES_EtaIntercalibration_Stat215: 5.44106497e-04 + syst_JES_EtaIntercalibration_Stat216: 6.67337417e-05 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 - syst_JES_EtaIntercalibration_Stat219: 6.43352679329153e-06 + syst_JES_EtaIntercalibration_Stat219: 6.43352679e-06 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 0.0007766165511370461 - syst_JES_EtaIntercalibration_Stat221: 0.0010253539132904306 - syst_JES_EtaIntercalibration_Stat222: 0.00033133920308348665 - syst_JES_EtaIntercalibration_Stat223: 3.771540633481231e-05 - syst_JES_EtaIntercalibration_Stat224: 5.429685695323441e-06 - syst_JES_EtaIntercalibration_Stat225: 0.00011507905804272124 - syst_JES_EtaIntercalibration_Stat226: 0.00025586263892956316 - syst_JES_EtaIntercalibration_Stat227: 0.00017215622991922195 - syst_JES_EtaIntercalibration_Stat228: 3.3141525392001423e-07 + syst_JES_EtaIntercalibration_Stat220: 7.76616551e-04 + syst_JES_EtaIntercalibration_Stat221: 1.02535391e-03 + syst_JES_EtaIntercalibration_Stat222: 3.31339203e-04 + syst_JES_EtaIntercalibration_Stat223: 3.77154063e-05 + syst_JES_EtaIntercalibration_Stat224: 5.42968570e-06 + syst_JES_EtaIntercalibration_Stat225: 1.15079058e-04 + syst_JES_EtaIntercalibration_Stat226: 2.55862639e-04 + syst_JES_EtaIntercalibration_Stat227: 1.72156230e-04 + syst_JES_EtaIntercalibration_Stat228: 3.31415254e-07 syst_JES_EtaIntercalibration_Stat229: 0.0 syst_JES_EtaIntercalibration_Stat23: 0.0 syst_JES_EtaIntercalibration_Stat230: 0.0 - syst_JES_EtaIntercalibration_Stat231: 7.280675569615775e-06 - syst_JES_EtaIntercalibration_Stat232: 0.00019785425823064818 - syst_JES_EtaIntercalibration_Stat233: 0.00022024671152312352 - syst_JES_EtaIntercalibration_Stat234: 0.00010892375532912919 - syst_JES_EtaIntercalibration_Stat235: 1.2643970900538447e-05 - syst_JES_EtaIntercalibration_Stat236: 2.661686072774173e-05 - syst_JES_EtaIntercalibration_Stat237: 6.339698021199431e-05 - syst_JES_EtaIntercalibration_Stat238: 4.871276501082647e-05 - syst_JES_EtaIntercalibration_Stat239: 1.3250188669325373e-07 + syst_JES_EtaIntercalibration_Stat231: 7.28067557e-06 + syst_JES_EtaIntercalibration_Stat232: 1.97854258e-04 + syst_JES_EtaIntercalibration_Stat233: 2.20246712e-04 + syst_JES_EtaIntercalibration_Stat234: 1.08923755e-04 + syst_JES_EtaIntercalibration_Stat235: 1.26439709e-05 + syst_JES_EtaIntercalibration_Stat236: 2.66168607e-05 + syst_JES_EtaIntercalibration_Stat237: 6.33969802e-05 + syst_JES_EtaIntercalibration_Stat238: 4.87127650e-05 + syst_JES_EtaIntercalibration_Stat239: 1.32501887e-07 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 - syst_JES_EtaIntercalibration_Stat242: 1.1706931408358519e-13 - syst_JES_EtaIntercalibration_Stat243: 3.669229210610861e-05 - syst_JES_EtaIntercalibration_Stat244: 4.985278427530402e-05 - syst_JES_EtaIntercalibration_Stat245: 2.459470064871699e-05 + syst_JES_EtaIntercalibration_Stat242: 1.17069314e-13 + syst_JES_EtaIntercalibration_Stat243: 3.66922921e-05 + syst_JES_EtaIntercalibration_Stat244: 4.98527843e-05 + syst_JES_EtaIntercalibration_Stat245: 2.45947006e-05 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 - syst_JES_EtaIntercalibration_Stat27: 5.182402997645011e-15 - syst_JES_EtaIntercalibration_Stat28: 3.583733774442559e-09 - syst_JES_EtaIntercalibration_Stat29: 2.4196736736536015e-06 + syst_JES_EtaIntercalibration_Stat27: 5.18240300e-15 + syst_JES_EtaIntercalibration_Stat28: 3.58373377e-09 + syst_JES_EtaIntercalibration_Stat29: 2.41967367e-06 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 2.4430540735556855e-06 - syst_JES_EtaIntercalibration_Stat31: 8.281800936390586e-16 + syst_JES_EtaIntercalibration_Stat30: 2.44305407e-06 + syst_JES_EtaIntercalibration_Stat31: 8.28180094e-16 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 - syst_JES_EtaIntercalibration_Stat34: 6.716893031752106e-17 - syst_JES_EtaIntercalibration_Stat35: 1.0295345389360728e-06 - syst_JES_EtaIntercalibration_Stat36: 1.032493980245775e-06 - syst_JES_EtaIntercalibration_Stat37: 4.743689538921681e-11 - syst_JES_EtaIntercalibration_Stat38: 2.2562679743051356e-14 + syst_JES_EtaIntercalibration_Stat34: 6.71689303e-17 + syst_JES_EtaIntercalibration_Stat35: 1.02953454e-06 + syst_JES_EtaIntercalibration_Stat36: 1.03249398e-06 + syst_JES_EtaIntercalibration_Stat37: 4.74368954e-11 + syst_JES_EtaIntercalibration_Stat38: 2.25626797e-14 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 syst_JES_EtaIntercalibration_Stat40: 0.0 @@ -28511,21 +28511,21 @@ bins: syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 syst_JES_EtaIntercalibration_Stat47: 0.0 - syst_JES_EtaIntercalibration_Stat48: 3.120289529835333e-15 - syst_JES_EtaIntercalibration_Stat49: 3.881704136072197e-14 - syst_JES_EtaIntercalibration_Stat5: 2.918505610753558e-15 - syst_JES_EtaIntercalibration_Stat50: 3.6908664440074233e-09 - syst_JES_EtaIntercalibration_Stat51: 2.369841155588914e-06 - syst_JES_EtaIntercalibration_Stat52: 2.4084068706564893e-06 - syst_JES_EtaIntercalibration_Stat53: 2.4319805755803233e-14 - syst_JES_EtaIntercalibration_Stat54: 1.7935386112375727e-14 + syst_JES_EtaIntercalibration_Stat48: 3.12028953e-15 + syst_JES_EtaIntercalibration_Stat49: 3.88170414e-14 + syst_JES_EtaIntercalibration_Stat5: 2.91850561e-15 + syst_JES_EtaIntercalibration_Stat50: 3.69086644e-09 + syst_JES_EtaIntercalibration_Stat51: 2.36984116e-06 + syst_JES_EtaIntercalibration_Stat52: 2.40840687e-06 + syst_JES_EtaIntercalibration_Stat53: 2.43198058e-14 + syst_JES_EtaIntercalibration_Stat54: 1.79353861e-14 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 5.028362357666758e-16 - syst_JES_EtaIntercalibration_Stat57: 1.0175271077564997e-06 - syst_JES_EtaIntercalibration_Stat58: 1.0266769331502875e-06 - syst_JES_EtaIntercalibration_Stat59: 8.948618706258526e-11 - syst_JES_EtaIntercalibration_Stat6: 5.760468064315607e-15 - syst_JES_EtaIntercalibration_Stat60: 2.2951086945937876e-13 + syst_JES_EtaIntercalibration_Stat56: 5.02836236e-16 + syst_JES_EtaIntercalibration_Stat57: 1.01752711e-06 + syst_JES_EtaIntercalibration_Stat58: 1.02667693e-06 + syst_JES_EtaIntercalibration_Stat59: 8.94861871e-11 + syst_JES_EtaIntercalibration_Stat6: 5.76046806e-15 + syst_JES_EtaIntercalibration_Stat60: 2.29510869e-13 syst_JES_EtaIntercalibration_Stat61: 0.0 syst_JES_EtaIntercalibration_Stat62: 0.0 syst_JES_EtaIntercalibration_Stat63: 0.0 @@ -28535,21 +28535,21 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 1.4877818279237045e-13 - syst_JES_EtaIntercalibration_Stat70: 2.918505610753558e-15 - syst_JES_EtaIntercalibration_Stat71: 3.280862234230508e-13 - syst_JES_EtaIntercalibration_Stat72: 7.028889243685662e-09 - syst_JES_EtaIntercalibration_Stat73: 4.5912342567113695e-06 - syst_JES_EtaIntercalibration_Stat74: 5.076986384657733e-06 - syst_JES_EtaIntercalibration_Stat75: 1.4528498818529052e-12 - syst_JES_EtaIntercalibration_Stat76: 1.7935386112375727e-14 + syst_JES_EtaIntercalibration_Stat7: 1.48778183e-13 + syst_JES_EtaIntercalibration_Stat70: 2.91850561e-15 + syst_JES_EtaIntercalibration_Stat71: 3.28086223e-13 + syst_JES_EtaIntercalibration_Stat72: 7.02888924e-09 + syst_JES_EtaIntercalibration_Stat73: 4.59123426e-06 + syst_JES_EtaIntercalibration_Stat74: 5.07698638e-06 + syst_JES_EtaIntercalibration_Stat75: 1.45284988e-12 + syst_JES_EtaIntercalibration_Stat76: 1.79353861e-14 syst_JES_EtaIntercalibration_Stat77: 0.0 - syst_JES_EtaIntercalibration_Stat78: 3.1576153581460803e-13 - syst_JES_EtaIntercalibration_Stat79: 9.490232998621305e-07 - syst_JES_EtaIntercalibration_Stat8: 2.1676762183268975e-14 - syst_JES_EtaIntercalibration_Stat80: 6.9463584781380245e-06 - syst_JES_EtaIntercalibration_Stat81: 5.52912100676952e-07 - syst_JES_EtaIntercalibration_Stat82: 2.958368131250741e-13 + syst_JES_EtaIntercalibration_Stat78: 3.15761536e-13 + syst_JES_EtaIntercalibration_Stat79: 9.49023300e-07 + syst_JES_EtaIntercalibration_Stat8: 2.16767622e-14 + syst_JES_EtaIntercalibration_Stat80: 6.94635848e-06 + syst_JES_EtaIntercalibration_Stat81: 5.52912101e-07 + syst_JES_EtaIntercalibration_Stat82: 2.95836813e-13 syst_JES_EtaIntercalibration_Stat83: 0.0 syst_JES_EtaIntercalibration_Stat84: 0.0 syst_JES_EtaIntercalibration_Stat85: 0.0 @@ -28559,113 +28559,113 @@ bins: syst_JES_EtaIntercalibration_Stat89: 0.0 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 2.5149377725900096e-15 - syst_JES_EtaIntercalibration_Stat92: 3.296469711676417e-10 - syst_JES_EtaIntercalibration_Stat93: 9.854869332847595e-09 - syst_JES_EtaIntercalibration_Stat94: 4.61610623252975e-06 - syst_JES_EtaIntercalibration_Stat95: 5.130407074492237e-06 - syst_JES_EtaIntercalibration_Stat96: 2.866029225252248e-12 - syst_JES_EtaIntercalibration_Stat97: 1.7935386112375727e-14 + syst_JES_EtaIntercalibration_Stat91: 2.51493777e-15 + syst_JES_EtaIntercalibration_Stat92: 3.29646971e-10 + syst_JES_EtaIntercalibration_Stat93: 9.85486933e-09 + syst_JES_EtaIntercalibration_Stat94: 4.61610623e-06 + syst_JES_EtaIntercalibration_Stat95: 5.13040707e-06 + syst_JES_EtaIntercalibration_Stat96: 2.86602923e-12 + syst_JES_EtaIntercalibration_Stat97: 1.79353861e-14 syst_JES_EtaIntercalibration_Stat98: 0.0 - syst_JES_EtaIntercalibration_Stat99: 5.221368925333871e-09 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.009010615780844283 - syst_JES_Flavour_Comp: 0.029825704937184637 - syst_JES_Flavour_Response: 0.0177902754335058 - syst_JES_Gjet_Generator: 0.049739162387398526 - syst_JES_Gjet_OOC: 0.03878449388608803 - syst_JES_Gjet_Purity: 0.01147229671861742 - syst_JES_Gjet_Stat1: 0.00010042430581333742 - syst_JES_Gjet_Stat10: 0.0011013032779393693 - syst_JES_Gjet_Stat11: 0.0015865141033095168 - syst_JES_Gjet_Stat12: 0.005664101958828071 - syst_JES_Gjet_Stat13: 0.011074213832141765 - syst_JES_Gjet_Stat14: 0.006187155323733194 - syst_JES_Gjet_Stat15: 0.0031294676863645675 - syst_JES_Gjet_Stat2: 0.0001007013768525535 - syst_JES_Gjet_Stat3: 0.00011662999903541113 - syst_JES_Gjet_Stat4: 0.00010095447525989128 - syst_JES_Gjet_Stat5: 0.00011068773407654527 - syst_JES_Gjet_Stat6: 0.00038030509791481894 - syst_JES_Gjet_Stat7: 0.0004683617912468949 - syst_JES_Gjet_Stat8: 0.0003579747581883393 - syst_JES_Gjet_Stat9: 0.0006928763309566867 - syst_JES_Gjet_Veto: 0.03057536058658998 - syst_JES_Gjet_dPhi: 0.003316888715347562 - syst_JES_LArESZee: 0.07406045706043138 - syst_JES_LArEsmear: 0.005633538142233529 - syst_JES_LAr_JVT: 0.007039863137874202 - syst_JES_MJB_Alpha: 0.00046355957545929306 - syst_JES_MJB_Asym: 0.002480008870951876 - syst_JES_MJB_Beta: 0.0002817284821863064 - syst_JES_MJB_Fragmentation: 0.008022393221476994 - syst_JES_MJB_Stat1: 7.569928054479778e-05 - syst_JES_MJB_Stat10: 0.00014705272472912792 - syst_JES_MJB_Stat11: 4.120908971331447e-06 - syst_JES_MJB_Stat12: 5.86470918512969e-06 - syst_JES_MJB_Stat13: 1.9951362027440635e-05 - syst_JES_MJB_Stat14: 6.127387126663371e-06 - syst_JES_MJB_Stat15: 6.651722389727341e-07 - syst_JES_MJB_Stat16: 6.549252858151073e-08 + syst_JES_EtaIntercalibration_Stat99: 5.22136893e-09 + syst_JES_EtaIntercalibration_TotalStat_MJB: 9.01061578e-03 + syst_JES_Flavour_Comp: 2.98257049e-02 + syst_JES_Flavour_Response: 1.77902754e-02 + syst_JES_Gjet_Generator: 4.97391624e-02 + syst_JES_Gjet_OOC: 3.87844939e-02 + syst_JES_Gjet_Purity: 1.14722967e-02 + syst_JES_Gjet_Stat1: 1.00424306e-04 + syst_JES_Gjet_Stat10: 1.10130328e-03 + syst_JES_Gjet_Stat11: 1.58651410e-03 + syst_JES_Gjet_Stat12: 5.66410196e-03 + syst_JES_Gjet_Stat13: 1.10742138e-02 + syst_JES_Gjet_Stat14: 6.18715532e-03 + syst_JES_Gjet_Stat15: 3.12946769e-03 + syst_JES_Gjet_Stat2: 1.00701377e-04 + syst_JES_Gjet_Stat3: 1.16629999e-04 + syst_JES_Gjet_Stat4: 1.00954475e-04 + syst_JES_Gjet_Stat5: 1.10687734e-04 + syst_JES_Gjet_Stat6: 3.80305098e-04 + syst_JES_Gjet_Stat7: 4.68361791e-04 + syst_JES_Gjet_Stat8: 3.57974758e-04 + syst_JES_Gjet_Stat9: 6.92876331e-04 + syst_JES_Gjet_Veto: 3.05753606e-02 + syst_JES_Gjet_dPhi: 3.31688872e-03 + syst_JES_LArESZee: 7.40604571e-02 + syst_JES_LArEsmear: 5.63353814e-03 + syst_JES_LAr_JVT: 7.03986314e-03 + syst_JES_MJB_Alpha: 4.63559575e-04 + syst_JES_MJB_Asym: 2.48000887e-03 + syst_JES_MJB_Beta: 2.81728482e-04 + syst_JES_MJB_Fragmentation: 8.02239322e-03 + syst_JES_MJB_Stat1: 7.56992805e-05 + syst_JES_MJB_Stat10: 1.47052725e-04 + syst_JES_MJB_Stat11: 4.12090897e-06 + syst_JES_MJB_Stat12: 5.86470919e-06 + syst_JES_MJB_Stat13: 1.99513620e-05 + syst_JES_MJB_Stat14: 6.12738713e-06 + syst_JES_MJB_Stat15: 6.65172239e-07 + syst_JES_MJB_Stat16: 6.54925286e-08 syst_JES_MJB_Stat2: 0.0 - syst_JES_MJB_Stat3: 0.000819260031980079 - syst_JES_MJB_Stat4: 0.0003071792107223404 - syst_JES_MJB_Stat5: 6.277818152033396e-05 - syst_JES_MJB_Stat6: 0.00014108397100663137 - syst_JES_MJB_Stat7: 4.6531700022672714e-05 - syst_JES_MJB_Stat8: 4.364869607158958e-05 - syst_JES_MJB_Stat9: 2.10976576806692e-06 - syst_JES_MJB_Threshold: 0.0037043996814598718 - syst_JES_Pileup_MuOffset: 0.007401537188314331 - syst_JES_Pileup_NPVOffset: 0.00754683099055491 - syst_JES_Pileup_Pt_term: 0.008857076323482824 - syst_JES_Pileup_Rho_topology: 0.015187503909464517 - syst_JES_PunchThrough_MC15: 0.001318964483032049 - syst_JES_SingleParticle_HighPt: 2.6699563198674246e-44 - syst_JES_Zjet_MC: 0.03239037356993587 - syst_JES_Zjet_MuScale: 0.0019833685361021537 - syst_JES_Zjet_MuSmearID: 0.00044173876895740085 - syst_JES_Zjet_MuSmearMS: 0.008953355125314755 - syst_JES_Zjet_OOC: 0.013768249997730285 - syst_JES_Zjet_Stat1: 0.0005885590709521009 - syst_JES_Zjet_Stat10: 0.0010532596261131442 - syst_JES_Zjet_Stat11: 0.0013957176173925727 - syst_JES_Zjet_Stat12: 0.0066839839167969275 - syst_JES_Zjet_Stat13: 0.009541252223895982 - syst_JES_Zjet_Stat2: 4.483413515392039e-06 - syst_JES_Zjet_Stat3: 0.00024659951338151505 - syst_JES_Zjet_Stat4: 0.00023962608372211903 - syst_JES_Zjet_Stat5: 0.0003479504831150547 - syst_JES_Zjet_Stat6: 0.00028210412971099876 - syst_JES_Zjet_Stat7: 0.00032738556397617774 - syst_JES_Zjet_Stat8: 0.00032253306807209707 - syst_JES_Zjet_Stat9: 0.000625936106963003 - syst_JES_Zjet_Veto: 0.003064436122682279 - syst_JES_Zjet_dPhi: 0.002517190695994247 + syst_JES_MJB_Stat3: 8.19260032e-04 + syst_JES_MJB_Stat4: 3.07179211e-04 + syst_JES_MJB_Stat5: 6.27781815e-05 + syst_JES_MJB_Stat6: 1.41083971e-04 + syst_JES_MJB_Stat7: 4.65317000e-05 + syst_JES_MJB_Stat8: 4.36486961e-05 + syst_JES_MJB_Stat9: 2.10976577e-06 + syst_JES_MJB_Threshold: 3.70439968e-03 + syst_JES_Pileup_MuOffset: 7.40153719e-03 + syst_JES_Pileup_NPVOffset: 7.54683099e-03 + syst_JES_Pileup_Pt_term: 8.85707632e-03 + syst_JES_Pileup_Rho_topology: 1.51875039e-02 + syst_JES_PunchThrough_MC15: 1.31896448e-03 + syst_JES_SingleParticle_HighPt: 2.66995632e-44 + syst_JES_Zjet_MC: 3.23903736e-02 + syst_JES_Zjet_MuScale: 1.98336854e-03 + syst_JES_Zjet_MuSmearID: 4.41738769e-04 + syst_JES_Zjet_MuSmearMS: 8.95335513e-03 + syst_JES_Zjet_OOC: 1.37682500e-02 + syst_JES_Zjet_Stat1: 5.88559071e-04 + syst_JES_Zjet_Stat10: 1.05325963e-03 + syst_JES_Zjet_Stat11: 1.39571762e-03 + syst_JES_Zjet_Stat12: 6.68398392e-03 + syst_JES_Zjet_Stat13: 9.54125222e-03 + syst_JES_Zjet_Stat2: 4.48341352e-06 + syst_JES_Zjet_Stat3: 2.46599513e-04 + syst_JES_Zjet_Stat4: 2.39626084e-04 + syst_JES_Zjet_Stat5: 3.47950483e-04 + syst_JES_Zjet_Stat6: 2.82104130e-04 + syst_JES_Zjet_Stat7: 3.27385564e-04 + syst_JES_Zjet_Stat8: 3.22533068e-04 + syst_JES_Zjet_Stat9: 6.25936107e-04 + syst_JES_Zjet_Veto: 3.06443612e-03 + syst_JES_Zjet_dPhi: 2.51719070e-03 syst_PRW: 0.0 syst_Unfolding_bias: 0.002455 - syst_cleaning: 0.01332813096424251 + syst_cleaning: 1.33281310e-02 syst_lumi: 0.05023 - stat: 0.006575 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.010213039900049348 - syst_JER_NP1: 0.0007233407547622352 - syst_JER_NP2: 0.004559532541829261 - syst_JER_NP3: 0.0009719126812630855 - syst_JER_NP4: 5.867274899815075e-08 - syst_JER_NP5: 0.0006715940579695445 - syst_JER_NP6: 1.1252702075501688e-10 - syst_JER_NP7: 4.2221044515738836e-14 - syst_JER_NP8: 0.0013289532299896787 - syst_JES_EtaIntercalibration_Modelling: 0.0550767743699647 + syst_JER_NP0: 1.02130399e-02 + syst_JER_NP1: 7.23340755e-04 + syst_JER_NP2: 4.55953254e-03 + syst_JER_NP3: 9.71912681e-04 + syst_JER_NP4: 5.86727490e-08 + syst_JER_NP5: 6.71594058e-04 + syst_JER_NP6: 1.12527021e-10 + syst_JER_NP7: 4.22210445e-14 + syst_JER_NP8: 1.32895323e-03 + syst_JES_EtaIntercalibration_Modelling: 5.50767744e-02 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 2.148533425385791e-08 - syst_JES_EtaIntercalibration_Stat101: 4.147110537169223e-06 - syst_JES_EtaIntercalibration_Stat102: 6.437617960666817e-08 - syst_JES_EtaIntercalibration_Stat103: 1.5408364059821538e-11 + syst_JES_EtaIntercalibration_Stat100: 2.14853343e-08 + syst_JES_EtaIntercalibration_Stat101: 4.14711054e-06 + syst_JES_EtaIntercalibration_Stat102: 6.43761796e-08 + syst_JES_EtaIntercalibration_Stat103: 1.54083641e-11 syst_JES_EtaIntercalibration_Stat104: 0.0 syst_JES_EtaIntercalibration_Stat105: 0.0 syst_JES_EtaIntercalibration_Stat106: 0.0 @@ -28674,170 +28674,170 @@ bins: syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 syst_JES_EtaIntercalibration_Stat110: 0.0 - syst_JES_EtaIntercalibration_Stat111: 1.5337309901022409e-16 - syst_JES_EtaIntercalibration_Stat112: 4.5392482549426617e-10 - syst_JES_EtaIntercalibration_Stat113: 3.5355399428517277e-06 - syst_JES_EtaIntercalibration_Stat114: 2.4448940161078557e-06 - syst_JES_EtaIntercalibration_Stat115: 2.667324166182281e-05 - syst_JES_EtaIntercalibration_Stat116: 2.0187472219492187e-07 + syst_JES_EtaIntercalibration_Stat111: 1.53373099e-16 + syst_JES_EtaIntercalibration_Stat112: 4.53924825e-10 + syst_JES_EtaIntercalibration_Stat113: 3.53553994e-06 + syst_JES_EtaIntercalibration_Stat114: 2.44489402e-06 + syst_JES_EtaIntercalibration_Stat115: 2.66732417e-05 + syst_JES_EtaIntercalibration_Stat116: 2.01874722e-07 syst_JES_EtaIntercalibration_Stat117: 0.0 syst_JES_EtaIntercalibration_Stat118: 0.0 - syst_JES_EtaIntercalibration_Stat119: 2.1096378508946812e-07 + syst_JES_EtaIntercalibration_Stat119: 2.10963785e-07 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 2.6844323422280546e-06 - syst_JES_EtaIntercalibration_Stat121: 2.283719498975301e-06 - syst_JES_EtaIntercalibration_Stat122: 4.0447843189810495e-06 - syst_JES_EtaIntercalibration_Stat123: 1.5685647872737038e-07 + syst_JES_EtaIntercalibration_Stat120: 2.68443234e-06 + syst_JES_EtaIntercalibration_Stat121: 2.28371950e-06 + syst_JES_EtaIntercalibration_Stat122: 4.04478432e-06 + syst_JES_EtaIntercalibration_Stat123: 1.56856479e-07 syst_JES_EtaIntercalibration_Stat124: 0.0 syst_JES_EtaIntercalibration_Stat125: 0.0 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 syst_JES_EtaIntercalibration_Stat128: 0.0 syst_JES_EtaIntercalibration_Stat129: 0.0 - syst_JES_EtaIntercalibration_Stat13: 2.115700075330658e-07 + syst_JES_EtaIntercalibration_Stat13: 2.11570008e-07 syst_JES_EtaIntercalibration_Stat130: 0.0 - syst_JES_EtaIntercalibration_Stat131: 4.025639328106779e-09 - syst_JES_EtaIntercalibration_Stat132: 1.804481731689185e-05 - syst_JES_EtaIntercalibration_Stat133: 4.605351126678616e-05 - syst_JES_EtaIntercalibration_Stat134: 3.7439493212382026e-05 - syst_JES_EtaIntercalibration_Stat135: 2.1317844051404446e-06 + syst_JES_EtaIntercalibration_Stat131: 4.02563933e-09 + syst_JES_EtaIntercalibration_Stat132: 1.80448173e-05 + syst_JES_EtaIntercalibration_Stat133: 4.60535113e-05 + syst_JES_EtaIntercalibration_Stat134: 3.74394932e-05 + syst_JES_EtaIntercalibration_Stat135: 2.13178441e-06 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 - syst_JES_EtaIntercalibration_Stat138: 1.9524240678172352e-07 - syst_JES_EtaIntercalibration_Stat139: 9.538962941536151e-06 - syst_JES_EtaIntercalibration_Stat14: 5.673221835958823e-15 - syst_JES_EtaIntercalibration_Stat140: 1.8550860539338867e-05 - syst_JES_EtaIntercalibration_Stat141: 1.742435614305447e-06 - syst_JES_EtaIntercalibration_Stat142: 1.9961493998884452e-06 + syst_JES_EtaIntercalibration_Stat138: 1.95242407e-07 + syst_JES_EtaIntercalibration_Stat139: 9.53896294e-06 + syst_JES_EtaIntercalibration_Stat14: 5.67322184e-15 + syst_JES_EtaIntercalibration_Stat140: 1.85508605e-05 + syst_JES_EtaIntercalibration_Stat141: 1.74243561e-06 + syst_JES_EtaIntercalibration_Stat142: 1.99614940e-06 syst_JES_EtaIntercalibration_Stat143: 0.0 syst_JES_EtaIntercalibration_Stat144: 0.0 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 syst_JES_EtaIntercalibration_Stat147: 0.0 syst_JES_EtaIntercalibration_Stat148: 0.0 - syst_JES_EtaIntercalibration_Stat149: 2.372336465428123e-06 - syst_JES_EtaIntercalibration_Stat15: 5.449056446052725e-15 - syst_JES_EtaIntercalibration_Stat150: 1.9364328028620047e-05 - syst_JES_EtaIntercalibration_Stat151: 7.543617219212544e-05 - syst_JES_EtaIntercalibration_Stat152: 5.257063008943302e-05 - syst_JES_EtaIntercalibration_Stat153: 2.361380436841976e-06 + syst_JES_EtaIntercalibration_Stat149: 2.37233647e-06 + syst_JES_EtaIntercalibration_Stat15: 5.44905645e-15 + syst_JES_EtaIntercalibration_Stat150: 1.93643280e-05 + syst_JES_EtaIntercalibration_Stat151: 7.54361722e-05 + syst_JES_EtaIntercalibration_Stat152: 5.25706301e-05 + syst_JES_EtaIntercalibration_Stat153: 2.36138044e-06 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 1.5822284117173742e-08 - syst_JES_EtaIntercalibration_Stat157: 7.343992442806568e-06 - syst_JES_EtaIntercalibration_Stat158: 5.0724219806715605e-05 - syst_JES_EtaIntercalibration_Stat159: 1.917315635484935e-05 + syst_JES_EtaIntercalibration_Stat156: 1.58222841e-08 + syst_JES_EtaIntercalibration_Stat157: 7.34399244e-06 + syst_JES_EtaIntercalibration_Stat158: 5.07242198e-05 + syst_JES_EtaIntercalibration_Stat159: 1.91731564e-05 syst_JES_EtaIntercalibration_Stat16: 0.0 - syst_JES_EtaIntercalibration_Stat160: 8.393400143416255e-08 + syst_JES_EtaIntercalibration_Stat160: 8.39340014e-08 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 - syst_JES_EtaIntercalibration_Stat167: 5.684879132400267e-06 - syst_JES_EtaIntercalibration_Stat168: 3.7872568898874555e-05 - syst_JES_EtaIntercalibration_Stat169: 0.0001357286716209954 + syst_JES_EtaIntercalibration_Stat167: 5.68487913e-06 + syst_JES_EtaIntercalibration_Stat168: 3.78725689e-05 + syst_JES_EtaIntercalibration_Stat169: 1.35728672e-04 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 8.202563623648402e-05 - syst_JES_EtaIntercalibration_Stat171: 2.6830088091543794e-06 + syst_JES_EtaIntercalibration_Stat170: 8.20256362e-05 + syst_JES_EtaIntercalibration_Stat171: 2.68300881e-06 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 - syst_JES_EtaIntercalibration_Stat174: 4.6652814598158264e-08 - syst_JES_EtaIntercalibration_Stat175: 8.301943567623187e-05 - syst_JES_EtaIntercalibration_Stat176: 4.706530861473236e-05 - syst_JES_EtaIntercalibration_Stat177: 4.373865567207113e-05 - syst_JES_EtaIntercalibration_Stat178: 2.365003329807381e-06 + syst_JES_EtaIntercalibration_Stat174: 4.66528146e-08 + syst_JES_EtaIntercalibration_Stat175: 8.30194357e-05 + syst_JES_EtaIntercalibration_Stat176: 4.70653086e-05 + syst_JES_EtaIntercalibration_Stat177: 4.37386557e-05 + syst_JES_EtaIntercalibration_Stat178: 2.36500333e-06 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 syst_JES_EtaIntercalibration_Stat180: 0.0 syst_JES_EtaIntercalibration_Stat181: 0.0 syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 - syst_JES_EtaIntercalibration_Stat184: 1.2865919895211536e-05 - syst_JES_EtaIntercalibration_Stat185: 0.0002625194849911145 - syst_JES_EtaIntercalibration_Stat186: 0.0008670607288419883 - syst_JES_EtaIntercalibration_Stat187: 0.00046731745901474724 - syst_JES_EtaIntercalibration_Stat188: 3.7900077867138965e-05 + syst_JES_EtaIntercalibration_Stat184: 1.28659199e-05 + syst_JES_EtaIntercalibration_Stat185: 2.62519485e-04 + syst_JES_EtaIntercalibration_Stat186: 8.67060729e-04 + syst_JES_EtaIntercalibration_Stat187: 4.67317459e-04 + syst_JES_EtaIntercalibration_Stat188: 3.79000779e-05 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 - syst_JES_EtaIntercalibration_Stat191: 1.130108325559988e-05 - syst_JES_EtaIntercalibration_Stat192: 0.0005939028455900846 - syst_JES_EtaIntercalibration_Stat193: 0.0009211001248507135 - syst_JES_EtaIntercalibration_Stat194: 0.0002896061463436161 - syst_JES_EtaIntercalibration_Stat195: 1.1296431933579737e-05 - syst_JES_EtaIntercalibration_Stat196: 1.576999207450657e-07 + syst_JES_EtaIntercalibration_Stat191: 1.13010833e-05 + syst_JES_EtaIntercalibration_Stat192: 5.93902846e-04 + syst_JES_EtaIntercalibration_Stat193: 9.21100125e-04 + syst_JES_EtaIntercalibration_Stat194: 2.89606146e-04 + syst_JES_EtaIntercalibration_Stat195: 1.12964319e-05 + syst_JES_EtaIntercalibration_Stat196: 1.57699921e-07 syst_JES_EtaIntercalibration_Stat197: 0.0 syst_JES_EtaIntercalibration_Stat198: 0.0 - syst_JES_EtaIntercalibration_Stat199: 1.2589896931667074e-05 + syst_JES_EtaIntercalibration_Stat199: 1.25898969e-05 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 0.000390858004907153 - syst_JES_EtaIntercalibration_Stat201: 0.0012830004988307682 - syst_JES_EtaIntercalibration_Stat202: 0.0006189692460050016 - syst_JES_EtaIntercalibration_Stat203: 4.365714164658516e-05 + syst_JES_EtaIntercalibration_Stat200: 3.90858005e-04 + syst_JES_EtaIntercalibration_Stat201: 1.28300050e-03 + syst_JES_EtaIntercalibration_Stat202: 6.18969246e-04 + syst_JES_EtaIntercalibration_Stat203: 4.36571416e-05 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 - syst_JES_EtaIntercalibration_Stat206: 1.0436923684687936e-05 - syst_JES_EtaIntercalibration_Stat207: 0.0007940310384361558 - syst_JES_EtaIntercalibration_Stat208: 0.0015950902795766764 - syst_JES_EtaIntercalibration_Stat209: 0.0003851200170076855 + syst_JES_EtaIntercalibration_Stat206: 1.04369237e-05 + syst_JES_EtaIntercalibration_Stat207: 7.94031038e-04 + syst_JES_EtaIntercalibration_Stat208: 1.59509028e-03 + syst_JES_EtaIntercalibration_Stat209: 3.85120017e-04 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 2.221488619709766e-05 - syst_JES_EtaIntercalibration_Stat211: 1.7345133842954342e-07 - syst_JES_EtaIntercalibration_Stat212: 4.539842370611561e-06 - syst_JES_EtaIntercalibration_Stat213: 0.00023641066219610315 - syst_JES_EtaIntercalibration_Stat214: 0.0006835855542651556 - syst_JES_EtaIntercalibration_Stat215: 0.0004330403214482457 - syst_JES_EtaIntercalibration_Stat216: 4.7167239425262105e-05 + syst_JES_EtaIntercalibration_Stat210: 2.22148862e-05 + syst_JES_EtaIntercalibration_Stat211: 1.73451338e-07 + syst_JES_EtaIntercalibration_Stat212: 4.53984237e-06 + syst_JES_EtaIntercalibration_Stat213: 2.36410662e-04 + syst_JES_EtaIntercalibration_Stat214: 6.83585554e-04 + syst_JES_EtaIntercalibration_Stat215: 4.33040321e-04 + syst_JES_EtaIntercalibration_Stat216: 4.71672394e-05 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 - syst_JES_EtaIntercalibration_Stat219: 9.486806667683284e-06 + syst_JES_EtaIntercalibration_Stat219: 9.48680667e-06 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 0.0004983720974332331 - syst_JES_EtaIntercalibration_Stat221: 0.0006697156318169675 - syst_JES_EtaIntercalibration_Stat222: 0.00022648266396128425 - syst_JES_EtaIntercalibration_Stat223: 2.5019473915332432e-05 - syst_JES_EtaIntercalibration_Stat224: 2.9651586804081835e-06 - syst_JES_EtaIntercalibration_Stat225: 0.00012362070245310855 - syst_JES_EtaIntercalibration_Stat226: 8.510854995239902e-05 - syst_JES_EtaIntercalibration_Stat227: 4.2870514304705975e-05 - syst_JES_EtaIntercalibration_Stat228: 1.506515176170529e-05 + syst_JES_EtaIntercalibration_Stat220: 4.98372097e-04 + syst_JES_EtaIntercalibration_Stat221: 6.69715632e-04 + syst_JES_EtaIntercalibration_Stat222: 2.26482664e-04 + syst_JES_EtaIntercalibration_Stat223: 2.50194739e-05 + syst_JES_EtaIntercalibration_Stat224: 2.96515868e-06 + syst_JES_EtaIntercalibration_Stat225: 1.23620702e-04 + syst_JES_EtaIntercalibration_Stat226: 8.51085500e-05 + syst_JES_EtaIntercalibration_Stat227: 4.28705143e-05 + syst_JES_EtaIntercalibration_Stat228: 1.50651518e-05 syst_JES_EtaIntercalibration_Stat229: 0.0 syst_JES_EtaIntercalibration_Stat23: 0.0 syst_JES_EtaIntercalibration_Stat230: 0.0 - syst_JES_EtaIntercalibration_Stat231: 7.19753713085247e-06 - syst_JES_EtaIntercalibration_Stat232: 8.140386769066935e-05 - syst_JES_EtaIntercalibration_Stat233: 0.00019318955995343016 - syst_JES_EtaIntercalibration_Stat234: 6.941421666344726e-05 - syst_JES_EtaIntercalibration_Stat235: 2.986923987394229e-06 - syst_JES_EtaIntercalibration_Stat236: 2.4547331321347335e-05 - syst_JES_EtaIntercalibration_Stat237: 6.944166544661785e-05 - syst_JES_EtaIntercalibration_Stat238: 5.068871866599115e-05 - syst_JES_EtaIntercalibration_Stat239: 2.181513904812403e-08 + syst_JES_EtaIntercalibration_Stat231: 7.19753713e-06 + syst_JES_EtaIntercalibration_Stat232: 8.14038677e-05 + syst_JES_EtaIntercalibration_Stat233: 1.93189560e-04 + syst_JES_EtaIntercalibration_Stat234: 6.94142167e-05 + syst_JES_EtaIntercalibration_Stat235: 2.98692399e-06 + syst_JES_EtaIntercalibration_Stat236: 2.45473313e-05 + syst_JES_EtaIntercalibration_Stat237: 6.94416654e-05 + syst_JES_EtaIntercalibration_Stat238: 5.06887187e-05 + syst_JES_EtaIntercalibration_Stat239: 2.18151390e-08 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 - syst_JES_EtaIntercalibration_Stat242: 1.36832013802257e-11 - syst_JES_EtaIntercalibration_Stat243: 4.3102061145611125e-05 - syst_JES_EtaIntercalibration_Stat244: 5.223246380365376e-05 - syst_JES_EtaIntercalibration_Stat245: 2.1560452221602403e-05 + syst_JES_EtaIntercalibration_Stat242: 1.36832014e-11 + syst_JES_EtaIntercalibration_Stat243: 4.31020611e-05 + syst_JES_EtaIntercalibration_Stat244: 5.22324638e-05 + syst_JES_EtaIntercalibration_Stat245: 2.15604522e-05 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 - syst_JES_EtaIntercalibration_Stat27: 8.485628129372628e-16 - syst_JES_EtaIntercalibration_Stat28: 4.713944219051723e-10 - syst_JES_EtaIntercalibration_Stat29: 1.1631585476571311e-06 + syst_JES_EtaIntercalibration_Stat27: 8.48562813e-16 + syst_JES_EtaIntercalibration_Stat28: 4.71394422e-10 + syst_JES_EtaIntercalibration_Stat29: 1.16315855e-06 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 1.17545581463569e-06 - syst_JES_EtaIntercalibration_Stat31: 1.4020951287270062e-16 + syst_JES_EtaIntercalibration_Stat30: 1.17545581e-06 + syst_JES_EtaIntercalibration_Stat31: 1.40209513e-16 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 - syst_JES_EtaIntercalibration_Stat34: 1.2427464544306695e-17 - syst_JES_EtaIntercalibration_Stat35: 2.1122405151631657e-07 - syst_JES_EtaIntercalibration_Stat36: 2.1157237656228985e-07 - syst_JES_EtaIntercalibration_Stat37: 6.029192246793927e-12 - syst_JES_EtaIntercalibration_Stat38: 3.1658301964374213e-15 + syst_JES_EtaIntercalibration_Stat34: 1.24274645e-17 + syst_JES_EtaIntercalibration_Stat35: 2.11224052e-07 + syst_JES_EtaIntercalibration_Stat36: 2.11572377e-07 + syst_JES_EtaIntercalibration_Stat37: 6.02919225e-12 + syst_JES_EtaIntercalibration_Stat38: 3.16583020e-15 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 syst_JES_EtaIntercalibration_Stat40: 0.0 @@ -28848,21 +28848,21 @@ bins: syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 syst_JES_EtaIntercalibration_Stat47: 0.0 - syst_JES_EtaIntercalibration_Stat48: 5.061052459716259e-16 - syst_JES_EtaIntercalibration_Stat49: 5.7384538640647795e-15 - syst_JES_EtaIntercalibration_Stat5: 4.673073078820831e-16 - syst_JES_EtaIntercalibration_Stat50: 4.855003879504114e-10 - syst_JES_EtaIntercalibration_Stat51: 1.1420243478594087e-06 - syst_JES_EtaIntercalibration_Stat52: 1.1574416837249211e-06 - syst_JES_EtaIntercalibration_Stat53: 3.4591112568837684e-15 - syst_JES_EtaIntercalibration_Stat54: 2.5244640520316384e-15 + syst_JES_EtaIntercalibration_Stat48: 5.06105246e-16 + syst_JES_EtaIntercalibration_Stat49: 5.73845386e-15 + syst_JES_EtaIntercalibration_Stat5: 4.67307308e-16 + syst_JES_EtaIntercalibration_Stat50: 4.85500388e-10 + syst_JES_EtaIntercalibration_Stat51: 1.14202435e-06 + syst_JES_EtaIntercalibration_Stat52: 1.15744168e-06 + syst_JES_EtaIntercalibration_Stat53: 3.45911126e-15 + syst_JES_EtaIntercalibration_Stat54: 2.52446405e-15 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 8.605935785839911e-17 - syst_JES_EtaIntercalibration_Stat57: 2.0838144391968496e-07 - syst_JES_EtaIntercalibration_Stat58: 2.1055384224210365e-07 - syst_JES_EtaIntercalibration_Stat59: 1.148135349164026e-11 - syst_JES_EtaIntercalibration_Stat6: 9.428333044605499e-16 - syst_JES_EtaIntercalibration_Stat60: 3.1677531954841436e-14 + syst_JES_EtaIntercalibration_Stat56: 8.60593579e-17 + syst_JES_EtaIntercalibration_Stat57: 2.08381444e-07 + syst_JES_EtaIntercalibration_Stat58: 2.10553842e-07 + syst_JES_EtaIntercalibration_Stat59: 1.14813535e-11 + syst_JES_EtaIntercalibration_Stat6: 9.42833304e-16 + syst_JES_EtaIntercalibration_Stat60: 3.16775320e-14 syst_JES_EtaIntercalibration_Stat61: 0.0 syst_JES_EtaIntercalibration_Stat62: 0.0 syst_JES_EtaIntercalibration_Stat63: 0.0 @@ -28872,21 +28872,21 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 2.0629507992194092e-14 - syst_JES_EtaIntercalibration_Stat70: 4.673073078820831e-16 - syst_JES_EtaIntercalibration_Stat71: 4.523187949886672e-14 - syst_JES_EtaIntercalibration_Stat72: 1.1114326970176826e-09 - syst_JES_EtaIntercalibration_Stat73: 2.092334896712283e-06 - syst_JES_EtaIntercalibration_Stat74: 2.186835960926196e-06 - syst_JES_EtaIntercalibration_Stat75: 1.8710968619702723e-13 - syst_JES_EtaIntercalibration_Stat76: 2.5244640520316384e-15 + syst_JES_EtaIntercalibration_Stat7: 2.06295080e-14 + syst_JES_EtaIntercalibration_Stat70: 4.67307308e-16 + syst_JES_EtaIntercalibration_Stat71: 4.52318795e-14 + syst_JES_EtaIntercalibration_Stat72: 1.11143270e-09 + syst_JES_EtaIntercalibration_Stat73: 2.09233490e-06 + syst_JES_EtaIntercalibration_Stat74: 2.18683596e-06 + syst_JES_EtaIntercalibration_Stat75: 1.87109686e-13 + syst_JES_EtaIntercalibration_Stat76: 2.52446405e-15 syst_JES_EtaIntercalibration_Stat77: 0.0 - syst_JES_EtaIntercalibration_Stat78: 4.390611204604662e-14 - syst_JES_EtaIntercalibration_Stat79: 1.9489386811770835e-07 - syst_JES_EtaIntercalibration_Stat8: 3.0803559859211077e-15 - syst_JES_EtaIntercalibration_Stat80: 4.240726827202e-06 - syst_JES_EtaIntercalibration_Stat81: 1.5858953142231677e-07 - syst_JES_EtaIntercalibration_Stat82: 4.035738687031161e-14 + syst_JES_EtaIntercalibration_Stat78: 4.39061120e-14 + syst_JES_EtaIntercalibration_Stat79: 1.94893868e-07 + syst_JES_EtaIntercalibration_Stat8: 3.08035599e-15 + syst_JES_EtaIntercalibration_Stat80: 4.24072683e-06 + syst_JES_EtaIntercalibration_Stat81: 1.58589531e-07 + syst_JES_EtaIntercalibration_Stat82: 4.03573869e-14 syst_JES_EtaIntercalibration_Stat83: 0.0 syst_JES_EtaIntercalibration_Stat84: 0.0 syst_JES_EtaIntercalibration_Stat85: 0.0 @@ -28896,113 +28896,113 @@ bins: syst_JES_EtaIntercalibration_Stat89: 0.0 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 4.0244200513862867e-16 - syst_JES_EtaIntercalibration_Stat92: 4.3548275274314824e-11 - syst_JES_EtaIntercalibration_Stat93: 1.5240569946035482e-09 - syst_JES_EtaIntercalibration_Stat94: 2.100916685639866e-06 - syst_JES_EtaIntercalibration_Stat95: 2.19368259041731e-06 - syst_JES_EtaIntercalibration_Stat96: 3.7743577847761067e-13 - syst_JES_EtaIntercalibration_Stat97: 2.5244640520316384e-15 + syst_JES_EtaIntercalibration_Stat91: 4.02442005e-16 + syst_JES_EtaIntercalibration_Stat92: 4.35482753e-11 + syst_JES_EtaIntercalibration_Stat93: 1.52405699e-09 + syst_JES_EtaIntercalibration_Stat94: 2.10091669e-06 + syst_JES_EtaIntercalibration_Stat95: 2.19368259e-06 + syst_JES_EtaIntercalibration_Stat96: 3.77435778e-13 + syst_JES_EtaIntercalibration_Stat97: 2.52446405e-15 syst_JES_EtaIntercalibration_Stat98: 0.0 - syst_JES_EtaIntercalibration_Stat99: 6.1981297738539155e-09 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.006432730427275809 - syst_JES_Flavour_Comp: 0.020755570336659025 - syst_JES_Flavour_Response: 0.010220641405997963 - syst_JES_Gjet_Generator: 0.03215492924887256 - syst_JES_Gjet_OOC: 0.025533109387616697 - syst_JES_Gjet_Purity: 0.00696443601449536 - syst_JES_Gjet_Stat1: 6.342769631232844e-05 - syst_JES_Gjet_Stat10: 0.000652362803584018 - syst_JES_Gjet_Stat11: 0.0008970836680600087 - syst_JES_Gjet_Stat12: 0.003102577436583977 - syst_JES_Gjet_Stat13: 0.007426541792786195 - syst_JES_Gjet_Stat14: 0.007012030572523198 - syst_JES_Gjet_Stat15: 0.0018923093695270867 - syst_JES_Gjet_Stat2: 6.32986634929996e-05 - syst_JES_Gjet_Stat3: 8.091978790753223e-05 - syst_JES_Gjet_Stat4: 6.369613547932089e-05 - syst_JES_Gjet_Stat5: 6.984786396161302e-05 - syst_JES_Gjet_Stat6: 0.00022971414845411681 - syst_JES_Gjet_Stat7: 0.00029541672261400504 - syst_JES_Gjet_Stat8: 0.00023282441882242506 - syst_JES_Gjet_Stat9: 0.00040080303142566175 - syst_JES_Gjet_Veto: 0.02158117408761627 - syst_JES_Gjet_dPhi: 0.0022251028627908423 - syst_JES_LArESZee: 0.047923024737593516 - syst_JES_LArEsmear: 0.0036210617227548053 - syst_JES_LAr_JVT: 0.004548928884913458 - syst_JES_MJB_Alpha: 0.0002826028662275031 - syst_JES_MJB_Asym: 0.0017468709168109702 - syst_JES_MJB_Beta: 0.00018463794050790322 - syst_JES_MJB_Fragmentation: 0.005000844928609565 - syst_JES_MJB_Stat1: 4.748417288950077e-05 - syst_JES_MJB_Stat10: 0.00011295486687021282 - syst_JES_MJB_Stat11: 2.8715425732522232e-06 - syst_JES_MJB_Stat12: 4.193294126474644e-06 - syst_JES_MJB_Stat13: 3.4816445826649225e-05 - syst_JES_MJB_Stat14: 1.613606301518434e-05 - syst_JES_MJB_Stat15: 4.766708553079368e-07 - syst_JES_MJB_Stat16: 2.2116301679982575e-07 + syst_JES_EtaIntercalibration_Stat99: 6.19812977e-09 + syst_JES_EtaIntercalibration_TotalStat_MJB: 6.43273043e-03 + syst_JES_Flavour_Comp: 2.07555703e-02 + syst_JES_Flavour_Response: 1.02206414e-02 + syst_JES_Gjet_Generator: 3.21549292e-02 + syst_JES_Gjet_OOC: 2.55331094e-02 + syst_JES_Gjet_Purity: 6.96443601e-03 + syst_JES_Gjet_Stat1: 6.34276963e-05 + syst_JES_Gjet_Stat10: 6.52362804e-04 + syst_JES_Gjet_Stat11: 8.97083668e-04 + syst_JES_Gjet_Stat12: 3.10257744e-03 + syst_JES_Gjet_Stat13: 7.42654179e-03 + syst_JES_Gjet_Stat14: 7.01203057e-03 + syst_JES_Gjet_Stat15: 1.89230937e-03 + syst_JES_Gjet_Stat2: 6.32986635e-05 + syst_JES_Gjet_Stat3: 8.09197879e-05 + syst_JES_Gjet_Stat4: 6.36961355e-05 + syst_JES_Gjet_Stat5: 6.98478640e-05 + syst_JES_Gjet_Stat6: 2.29714148e-04 + syst_JES_Gjet_Stat7: 2.95416723e-04 + syst_JES_Gjet_Stat8: 2.32824419e-04 + syst_JES_Gjet_Stat9: 4.00803031e-04 + syst_JES_Gjet_Veto: 2.15811741e-02 + syst_JES_Gjet_dPhi: 2.22510286e-03 + syst_JES_LArESZee: 4.79230247e-02 + syst_JES_LArEsmear: 3.62106172e-03 + syst_JES_LAr_JVT: 4.54892888e-03 + syst_JES_MJB_Alpha: 2.82602866e-04 + syst_JES_MJB_Asym: 1.74687092e-03 + syst_JES_MJB_Beta: 1.84637941e-04 + syst_JES_MJB_Fragmentation: 5.00084493e-03 + syst_JES_MJB_Stat1: 4.74841729e-05 + syst_JES_MJB_Stat10: 1.12954867e-04 + syst_JES_MJB_Stat11: 2.87154257e-06 + syst_JES_MJB_Stat12: 4.19329413e-06 + syst_JES_MJB_Stat13: 3.48164458e-05 + syst_JES_MJB_Stat14: 1.61360630e-05 + syst_JES_MJB_Stat15: 4.76670855e-07 + syst_JES_MJB_Stat16: 2.21163017e-07 syst_JES_MJB_Stat2: 0.0 - syst_JES_MJB_Stat3: 0.0005054124256485984 - syst_JES_MJB_Stat4: 0.00020853891723129282 - syst_JES_MJB_Stat5: 0.00010358529854665671 - syst_JES_MJB_Stat6: 0.00017192140646237164 - syst_JES_MJB_Stat7: 7.76627288134405e-05 - syst_JES_MJB_Stat8: 7.266253070702947e-05 - syst_JES_MJB_Stat9: 1.2413076986287484e-05 - syst_JES_MJB_Threshold: 0.0023852934305866862 - syst_JES_Pileup_MuOffset: 0.005084508309561506 - syst_JES_Pileup_NPVOffset: 0.005190716207807936 - syst_JES_Pileup_Pt_term: 0.0056552321570382934 - syst_JES_Pileup_Rho_topology: 0.009736386226418918 - syst_JES_PunchThrough_MC15: 0.0011944506802292006 - syst_JES_SingleParticle_HighPt: 3.245563279309156e-36 - syst_JES_Zjet_MC: 0.019178130122616228 - syst_JES_Zjet_MuScale: 0.0011697685925002432 - syst_JES_Zjet_MuSmearID: 0.0002881127904137544 - syst_JES_Zjet_MuSmearMS: 0.005364299837816674 - syst_JES_Zjet_OOC: 0.00855234020604887 - syst_JES_Zjet_Stat1: 0.00037033288376810396 - syst_JES_Zjet_Stat10: 0.0006612544196449655 - syst_JES_Zjet_Stat11: 0.0009102215554468043 - syst_JES_Zjet_Stat12: 0.003497434917192885 - syst_JES_Zjet_Stat13: 0.005824347688797433 - syst_JES_Zjet_Stat2: 2.8223767909334855e-06 - syst_JES_Zjet_Stat3: 0.00016430656560223028 - syst_JES_Zjet_Stat4: 0.00016715019443602213 - syst_JES_Zjet_Stat5: 0.00022529147786811644 - syst_JES_Zjet_Stat6: 0.0002307291268999213 - syst_JES_Zjet_Stat7: 0.00022549093108149607 - syst_JES_Zjet_Stat8: 0.00019880125754129425 - syst_JES_Zjet_Stat9: 0.00038162603095176826 - syst_JES_Zjet_Veto: 0.001895212587020253 - syst_JES_Zjet_dPhi: 0.0015299551464013578 + syst_JES_MJB_Stat3: 5.05412426e-04 + syst_JES_MJB_Stat4: 2.08538917e-04 + syst_JES_MJB_Stat5: 1.03585299e-04 + syst_JES_MJB_Stat6: 1.71921406e-04 + syst_JES_MJB_Stat7: 7.76627288e-05 + syst_JES_MJB_Stat8: 7.26625307e-05 + syst_JES_MJB_Stat9: 1.24130770e-05 + syst_JES_MJB_Threshold: 2.38529343e-03 + syst_JES_Pileup_MuOffset: 5.08450831e-03 + syst_JES_Pileup_NPVOffset: 5.19071621e-03 + syst_JES_Pileup_Pt_term: 5.65523216e-03 + syst_JES_Pileup_Rho_topology: 9.73638623e-03 + syst_JES_PunchThrough_MC15: 1.19445068e-03 + syst_JES_SingleParticle_HighPt: 3.24556328e-36 + syst_JES_Zjet_MC: 1.91781301e-02 + syst_JES_Zjet_MuScale: 1.16976859e-03 + syst_JES_Zjet_MuSmearID: 2.88112790e-04 + syst_JES_Zjet_MuSmearMS: 5.36429984e-03 + syst_JES_Zjet_OOC: 8.55234021e-03 + syst_JES_Zjet_Stat1: 3.70332884e-04 + syst_JES_Zjet_Stat10: 6.61254420e-04 + syst_JES_Zjet_Stat11: 9.10221555e-04 + syst_JES_Zjet_Stat12: 3.49743492e-03 + syst_JES_Zjet_Stat13: 5.82434769e-03 + syst_JES_Zjet_Stat2: 2.82237679e-06 + syst_JES_Zjet_Stat3: 1.64306566e-04 + syst_JES_Zjet_Stat4: 1.67150194e-04 + syst_JES_Zjet_Stat5: 2.25291478e-04 + syst_JES_Zjet_Stat6: 2.30729127e-04 + syst_JES_Zjet_Stat7: 2.25490931e-04 + syst_JES_Zjet_Stat8: 1.98801258e-04 + syst_JES_Zjet_Stat9: 3.81626031e-04 + syst_JES_Zjet_Veto: 1.89521259e-03 + syst_JES_Zjet_dPhi: 1.52995515e-03 syst_PRW: 0.0 syst_Unfolding_bias: 0.001545 - syst_cleaning: 0.008577981624484865 + syst_cleaning: 8.57798162e-03 syst_lumi: 0.03162 - stat: 0.004227 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.006092219689899569 - syst_JER_NP1: 0.00046392694198548113 - syst_JER_NP2: 0.003053659239338928 - syst_JER_NP3: 0.0004957064126073012 - syst_JER_NP4: 7.819377021221064e-09 - syst_JER_NP5: 0.0002587258424433091 - syst_JER_NP6: 1.5931631272408985e-11 - syst_JER_NP7: 7.88819282218684e-15 - syst_JER_NP8: 0.0007759739299744548 - syst_JES_EtaIntercalibration_Modelling: 0.039075950746590926 + syst_JER_NP0: 6.09221969e-03 + syst_JER_NP1: 4.63926942e-04 + syst_JER_NP2: 3.05365924e-03 + syst_JER_NP3: 4.95706413e-04 + syst_JER_NP4: 7.81937702e-09 + syst_JER_NP5: 2.58725842e-04 + syst_JER_NP6: 1.59316313e-11 + syst_JER_NP7: 7.88819282e-15 + syst_JER_NP8: 7.75973930e-04 + syst_JES_EtaIntercalibration_Modelling: 3.90759507e-02 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 3.896183903192969e-09 - syst_JES_EtaIntercalibration_Stat101: 2.3881483129560863e-06 - syst_JES_EtaIntercalibration_Stat102: 1.2255395172331245e-08 - syst_JES_EtaIntercalibration_Stat103: 2.086853523848763e-12 + syst_JES_EtaIntercalibration_Stat100: 3.89618390e-09 + syst_JES_EtaIntercalibration_Stat101: 2.38814831e-06 + syst_JES_EtaIntercalibration_Stat102: 1.22553952e-08 + syst_JES_EtaIntercalibration_Stat103: 2.08685352e-12 syst_JES_EtaIntercalibration_Stat104: 0.0 syst_JES_EtaIntercalibration_Stat105: 0.0 syst_JES_EtaIntercalibration_Stat106: 0.0 @@ -29011,170 +29011,170 @@ bins: syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 syst_JES_EtaIntercalibration_Stat110: 0.0 - syst_JES_EtaIntercalibration_Stat111: 2.812850511491857e-17 - syst_JES_EtaIntercalibration_Stat112: 6.053085659397198e-11 - syst_JES_EtaIntercalibration_Stat113: 5.598441993090578e-06 - syst_JES_EtaIntercalibration_Stat114: 4.082479883600164e-06 - syst_JES_EtaIntercalibration_Stat115: 8.865568058505895e-06 - syst_JES_EtaIntercalibration_Stat116: 3.720501025522063e-08 + syst_JES_EtaIntercalibration_Stat111: 2.81285051e-17 + syst_JES_EtaIntercalibration_Stat112: 6.05308566e-11 + syst_JES_EtaIntercalibration_Stat113: 5.59844199e-06 + syst_JES_EtaIntercalibration_Stat114: 4.08247988e-06 + syst_JES_EtaIntercalibration_Stat115: 8.86556806e-06 + syst_JES_EtaIntercalibration_Stat116: 3.72050103e-08 syst_JES_EtaIntercalibration_Stat117: 0.0 syst_JES_EtaIntercalibration_Stat118: 0.0 - syst_JES_EtaIntercalibration_Stat119: 3.806181592677007e-08 + syst_JES_EtaIntercalibration_Stat119: 3.80618159e-08 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 1.9323126733269643e-06 - syst_JES_EtaIntercalibration_Stat121: 1.3753730066785519e-06 - syst_JES_EtaIntercalibration_Stat122: 2.7830944177501413e-06 - syst_JES_EtaIntercalibration_Stat123: 3.57001178188532e-08 + syst_JES_EtaIntercalibration_Stat120: 1.93231267e-06 + syst_JES_EtaIntercalibration_Stat121: 1.37537301e-06 + syst_JES_EtaIntercalibration_Stat122: 2.78309442e-06 + syst_JES_EtaIntercalibration_Stat123: 3.57001178e-08 syst_JES_EtaIntercalibration_Stat124: 0.0 syst_JES_EtaIntercalibration_Stat125: 0.0 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 syst_JES_EtaIntercalibration_Stat128: 0.0 syst_JES_EtaIntercalibration_Stat129: 0.0 - syst_JES_EtaIntercalibration_Stat13: 3.814841926091851e-08 + syst_JES_EtaIntercalibration_Stat13: 3.81484193e-08 syst_JES_EtaIntercalibration_Stat130: 0.0 - syst_JES_EtaIntercalibration_Stat131: 6.241105250674756e-10 - syst_JES_EtaIntercalibration_Stat132: 5.596991590801258e-06 - syst_JES_EtaIntercalibration_Stat133: 1.7673937733284e-05 - syst_JES_EtaIntercalibration_Stat134: 2.1985797688507916e-05 - syst_JES_EtaIntercalibration_Stat135: 7.960384464961475e-07 + syst_JES_EtaIntercalibration_Stat131: 6.24110525e-10 + syst_JES_EtaIntercalibration_Stat132: 5.59699159e-06 + syst_JES_EtaIntercalibration_Stat133: 1.76739377e-05 + syst_JES_EtaIntercalibration_Stat134: 2.19857977e-05 + syst_JES_EtaIntercalibration_Stat135: 7.96038446e-07 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 - syst_JES_EtaIntercalibration_Stat138: 3.529931060033326e-08 - syst_JES_EtaIntercalibration_Stat139: 2.820295826469273e-06 - syst_JES_EtaIntercalibration_Stat14: 9.138508672097435e-16 - syst_JES_EtaIntercalibration_Stat140: 5.489750551709977e-06 - syst_JES_EtaIntercalibration_Stat141: 3.4065050638447614e-06 - syst_JES_EtaIntercalibration_Stat142: 1.1460278931487663e-06 + syst_JES_EtaIntercalibration_Stat138: 3.52993106e-08 + syst_JES_EtaIntercalibration_Stat139: 2.82029583e-06 + syst_JES_EtaIntercalibration_Stat14: 9.13850867e-16 + syst_JES_EtaIntercalibration_Stat140: 5.48975055e-06 + syst_JES_EtaIntercalibration_Stat141: 3.40650506e-06 + syst_JES_EtaIntercalibration_Stat142: 1.14602789e-06 syst_JES_EtaIntercalibration_Stat143: 0.0 syst_JES_EtaIntercalibration_Stat144: 0.0 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 syst_JES_EtaIntercalibration_Stat147: 0.0 syst_JES_EtaIntercalibration_Stat148: 0.0 - syst_JES_EtaIntercalibration_Stat149: 4.696470141699508e-07 - syst_JES_EtaIntercalibration_Stat15: 8.760709084661755e-16 - syst_JES_EtaIntercalibration_Stat150: 5.861259932813081e-06 - syst_JES_EtaIntercalibration_Stat151: 2.6289071398586908e-05 - syst_JES_EtaIntercalibration_Stat152: 2.564529758064819e-05 - syst_JES_EtaIntercalibration_Stat153: 9.032813520939919e-07 + syst_JES_EtaIntercalibration_Stat149: 4.69647014e-07 + syst_JES_EtaIntercalibration_Stat15: 8.76070908e-16 + syst_JES_EtaIntercalibration_Stat150: 5.86125993e-06 + syst_JES_EtaIntercalibration_Stat151: 2.62890714e-05 + syst_JES_EtaIntercalibration_Stat152: 2.56452976e-05 + syst_JES_EtaIntercalibration_Stat153: 9.03281352e-07 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 3.111629273956318e-09 - syst_JES_EtaIntercalibration_Stat157: 5.1622246173524844e-06 - syst_JES_EtaIntercalibration_Stat158: 2.774878499592369e-05 - syst_JES_EtaIntercalibration_Stat159: 8.198681891011506e-06 + syst_JES_EtaIntercalibration_Stat156: 3.11162927e-09 + syst_JES_EtaIntercalibration_Stat157: 5.16222462e-06 + syst_JES_EtaIntercalibration_Stat158: 2.77487850e-05 + syst_JES_EtaIntercalibration_Stat159: 8.19868189e-06 syst_JES_EtaIntercalibration_Stat16: 0.0 - syst_JES_EtaIntercalibration_Stat160: 1.4661714113636235e-08 + syst_JES_EtaIntercalibration_Stat160: 1.46617141e-08 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 - syst_JES_EtaIntercalibration_Stat167: 8.814217804632468e-06 - syst_JES_EtaIntercalibration_Stat168: 2.328649052025659e-05 - syst_JES_EtaIntercalibration_Stat169: 5.971443460336872e-05 + syst_JES_EtaIntercalibration_Stat167: 8.81421780e-06 + syst_JES_EtaIntercalibration_Stat168: 2.32864905e-05 + syst_JES_EtaIntercalibration_Stat169: 5.97144346e-05 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 3.752542496428255e-05 - syst_JES_EtaIntercalibration_Stat171: 1.7584073106080968e-06 + syst_JES_EtaIntercalibration_Stat170: 3.75254250e-05 + syst_JES_EtaIntercalibration_Stat171: 1.75840731e-06 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 - syst_JES_EtaIntercalibration_Stat174: 6.696978310813305e-09 - syst_JES_EtaIntercalibration_Stat175: 3.292415830359222e-05 - syst_JES_EtaIntercalibration_Stat176: 1.7875035664300087e-05 - syst_JES_EtaIntercalibration_Stat177: 1.8112905012725045e-05 - syst_JES_EtaIntercalibration_Stat178: 1.345018270024612e-06 + syst_JES_EtaIntercalibration_Stat174: 6.69697831e-09 + syst_JES_EtaIntercalibration_Stat175: 3.29241583e-05 + syst_JES_EtaIntercalibration_Stat176: 1.78750357e-05 + syst_JES_EtaIntercalibration_Stat177: 1.81129050e-05 + syst_JES_EtaIntercalibration_Stat178: 1.34501827e-06 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 syst_JES_EtaIntercalibration_Stat180: 0.0 syst_JES_EtaIntercalibration_Stat181: 0.0 syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 - syst_JES_EtaIntercalibration_Stat184: 7.825170157894331e-06 - syst_JES_EtaIntercalibration_Stat185: 0.0001164088539373187 - syst_JES_EtaIntercalibration_Stat186: 0.0003690804079059196 - syst_JES_EtaIntercalibration_Stat187: 0.00018850185012354653 - syst_JES_EtaIntercalibration_Stat188: 1.8013225674695245e-05 + syst_JES_EtaIntercalibration_Stat184: 7.82517016e-06 + syst_JES_EtaIntercalibration_Stat185: 1.16408854e-04 + syst_JES_EtaIntercalibration_Stat186: 3.69080408e-04 + syst_JES_EtaIntercalibration_Stat187: 1.88501850e-04 + syst_JES_EtaIntercalibration_Stat188: 1.80132257e-05 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 - syst_JES_EtaIntercalibration_Stat191: 9.535156002918882e-06 - syst_JES_EtaIntercalibration_Stat192: 0.0002479696906881968 - syst_JES_EtaIntercalibration_Stat193: 0.0003730959762581205 - syst_JES_EtaIntercalibration_Stat194: 0.00011328452972493641 - syst_JES_EtaIntercalibration_Stat195: 3.659014348154432e-06 - syst_JES_EtaIntercalibration_Stat196: 3.588688097296142e-08 + syst_JES_EtaIntercalibration_Stat191: 9.53515600e-06 + syst_JES_EtaIntercalibration_Stat192: 2.47969691e-04 + syst_JES_EtaIntercalibration_Stat193: 3.73095976e-04 + syst_JES_EtaIntercalibration_Stat194: 1.13284530e-04 + syst_JES_EtaIntercalibration_Stat195: 3.65901435e-06 + syst_JES_EtaIntercalibration_Stat196: 3.58868810e-08 syst_JES_EtaIntercalibration_Stat197: 0.0 syst_JES_EtaIntercalibration_Stat198: 0.0 - syst_JES_EtaIntercalibration_Stat199: 5.667308592930157e-06 + syst_JES_EtaIntercalibration_Stat199: 5.66730859e-06 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 0.00018412633570459168 - syst_JES_EtaIntercalibration_Stat201: 0.0006038596256581492 - syst_JES_EtaIntercalibration_Stat202: 0.00027639505693843365 - syst_JES_EtaIntercalibration_Stat203: 2.5577593529298256e-05 + syst_JES_EtaIntercalibration_Stat200: 1.84126336e-04 + syst_JES_EtaIntercalibration_Stat201: 6.03859626e-04 + syst_JES_EtaIntercalibration_Stat202: 2.76395057e-04 + syst_JES_EtaIntercalibration_Stat203: 2.55775935e-05 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 - syst_JES_EtaIntercalibration_Stat206: 8.507693576992532e-06 - syst_JES_EtaIntercalibration_Stat207: 0.00035635433209096814 - syst_JES_EtaIntercalibration_Stat208: 0.0007445962311884208 - syst_JES_EtaIntercalibration_Stat209: 0.00018235418147111406 + syst_JES_EtaIntercalibration_Stat206: 8.50769358e-06 + syst_JES_EtaIntercalibration_Stat207: 3.56354332e-04 + syst_JES_EtaIntercalibration_Stat208: 7.44596231e-04 + syst_JES_EtaIntercalibration_Stat209: 1.82354181e-04 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 1.2351556855311805e-05 - syst_JES_EtaIntercalibration_Stat211: 3.874384700784758e-08 - syst_JES_EtaIntercalibration_Stat212: 2.538522995759542e-06 - syst_JES_EtaIntercalibration_Stat213: 0.00013173748014517356 - syst_JES_EtaIntercalibration_Stat214: 0.00039945463759981554 - syst_JES_EtaIntercalibration_Stat215: 0.0002869614782510015 - syst_JES_EtaIntercalibration_Stat216: 2.6214524003879984e-05 + syst_JES_EtaIntercalibration_Stat210: 1.23515569e-05 + syst_JES_EtaIntercalibration_Stat211: 3.87438470e-08 + syst_JES_EtaIntercalibration_Stat212: 2.53852300e-06 + syst_JES_EtaIntercalibration_Stat213: 1.31737480e-04 + syst_JES_EtaIntercalibration_Stat214: 3.99454638e-04 + syst_JES_EtaIntercalibration_Stat215: 2.86961478e-04 + syst_JES_EtaIntercalibration_Stat216: 2.62145240e-05 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 - syst_JES_EtaIntercalibration_Stat219: 8.592014010114276e-06 + syst_JES_EtaIntercalibration_Stat219: 8.59201401e-06 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 0.00028375089427171857 - syst_JES_EtaIntercalibration_Stat221: 0.0003860350761265095 - syst_JES_EtaIntercalibration_Stat222: 0.00012942831635697033 - syst_JES_EtaIntercalibration_Stat223: 1.3908367984778084e-05 - syst_JES_EtaIntercalibration_Stat224: 1.418137407834657e-06 - syst_JES_EtaIntercalibration_Stat225: 0.00011720521618085093 - syst_JES_EtaIntercalibration_Stat226: 0.00027141320435822573 - syst_JES_EtaIntercalibration_Stat227: 0.00017026061435340825 - syst_JES_EtaIntercalibration_Stat228: 1.69652859925054e-05 + syst_JES_EtaIntercalibration_Stat220: 2.83750894e-04 + syst_JES_EtaIntercalibration_Stat221: 3.86035076e-04 + syst_JES_EtaIntercalibration_Stat222: 1.29428316e-04 + syst_JES_EtaIntercalibration_Stat223: 1.39083680e-05 + syst_JES_EtaIntercalibration_Stat224: 1.41813741e-06 + syst_JES_EtaIntercalibration_Stat225: 1.17205216e-04 + syst_JES_EtaIntercalibration_Stat226: 2.71413204e-04 + syst_JES_EtaIntercalibration_Stat227: 1.70260614e-04 + syst_JES_EtaIntercalibration_Stat228: 1.69652860e-05 syst_JES_EtaIntercalibration_Stat229: 0.0 syst_JES_EtaIntercalibration_Stat23: 0.0 syst_JES_EtaIntercalibration_Stat230: 0.0 - syst_JES_EtaIntercalibration_Stat231: 5.275826759854801e-06 - syst_JES_EtaIntercalibration_Stat232: 0.00016086865162299338 - syst_JES_EtaIntercalibration_Stat233: 0.00030898574400771303 - syst_JES_EtaIntercalibration_Stat234: 8.767240900077972e-05 - syst_JES_EtaIntercalibration_Stat235: 4.212999926570504e-06 - syst_JES_EtaIntercalibration_Stat236: 9.789083511749198e-06 - syst_JES_EtaIntercalibration_Stat237: 3.9573620948808806e-05 - syst_JES_EtaIntercalibration_Stat238: 2.8530748325271808e-05 - syst_JES_EtaIntercalibration_Stat239: 1.0031611692562815e-07 + syst_JES_EtaIntercalibration_Stat231: 5.27582676e-06 + syst_JES_EtaIntercalibration_Stat232: 1.60868652e-04 + syst_JES_EtaIntercalibration_Stat233: 3.08985744e-04 + syst_JES_EtaIntercalibration_Stat234: 8.76724090e-05 + syst_JES_EtaIntercalibration_Stat235: 4.21299993e-06 + syst_JES_EtaIntercalibration_Stat236: 9.78908351e-06 + syst_JES_EtaIntercalibration_Stat237: 3.95736209e-05 + syst_JES_EtaIntercalibration_Stat238: 2.85307483e-05 + syst_JES_EtaIntercalibration_Stat239: 1.00316117e-07 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 - syst_JES_EtaIntercalibration_Stat242: 4.1170848008951544e-10 - syst_JES_EtaIntercalibration_Stat243: 2.7115689494276188e-05 - syst_JES_EtaIntercalibration_Stat244: 2.6492441846685253e-05 - syst_JES_EtaIntercalibration_Stat245: 4.162995195769507e-06 + syst_JES_EtaIntercalibration_Stat242: 4.11708480e-10 + syst_JES_EtaIntercalibration_Stat243: 2.71156895e-05 + syst_JES_EtaIntercalibration_Stat244: 2.64924418e-05 + syst_JES_EtaIntercalibration_Stat245: 4.16299520e-06 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 - syst_JES_EtaIntercalibration_Stat27: 1.519148797847005e-16 - syst_JES_EtaIntercalibration_Stat28: 6.285865618423472e-11 - syst_JES_EtaIntercalibration_Stat29: 3.4634085512595845e-07 + syst_JES_EtaIntercalibration_Stat27: 1.51914880e-16 + syst_JES_EtaIntercalibration_Stat28: 6.28586562e-11 + syst_JES_EtaIntercalibration_Stat29: 3.46340855e-07 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 3.515196471370657e-07 - syst_JES_EtaIntercalibration_Stat31: 2.5911480081230407e-17 + syst_JES_EtaIntercalibration_Stat30: 3.51519647e-07 + syst_JES_EtaIntercalibration_Stat31: 2.59114801e-17 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 - syst_JES_EtaIntercalibration_Stat34: 2.5062775185521655e-18 - syst_JES_EtaIntercalibration_Stat35: 3.8105179832073595e-08 - syst_JES_EtaIntercalibration_Stat36: 3.81400758451094e-08 - syst_JES_EtaIntercalibration_Stat37: 7.902919555649988e-13 - syst_JES_EtaIntercalibration_Stat38: 4.78372871382774e-16 + syst_JES_EtaIntercalibration_Stat34: 2.50627752e-18 + syst_JES_EtaIntercalibration_Stat35: 3.81051798e-08 + syst_JES_EtaIntercalibration_Stat36: 3.81400758e-08 + syst_JES_EtaIntercalibration_Stat37: 7.90291956e-13 + syst_JES_EtaIntercalibration_Stat38: 4.78372871e-16 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 syst_JES_EtaIntercalibration_Stat40: 0.0 @@ -29185,21 +29185,21 @@ bins: syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 syst_JES_EtaIntercalibration_Stat47: 0.0 - syst_JES_EtaIntercalibration_Stat48: 8.969425106995431e-17 - syst_JES_EtaIntercalibration_Stat49: 9.242816927214344e-16 - syst_JES_EtaIntercalibration_Stat5: 8.173547760917533e-17 - syst_JES_EtaIntercalibration_Stat50: 6.473639162016987e-11 - syst_JES_EtaIntercalibration_Stat51: 3.3918757031914876e-07 - syst_JES_EtaIntercalibration_Stat52: 3.445480320165974e-07 - syst_JES_EtaIntercalibration_Stat53: 5.31976269841992e-16 - syst_JES_EtaIntercalibration_Stat54: 3.827832284727219e-16 + syst_JES_EtaIntercalibration_Stat48: 8.96942511e-17 + syst_JES_EtaIntercalibration_Stat49: 9.24281693e-16 + syst_JES_EtaIntercalibration_Stat5: 8.17354776e-17 + syst_JES_EtaIntercalibration_Stat50: 6.47363916e-11 + syst_JES_EtaIntercalibration_Stat51: 3.39187570e-07 + syst_JES_EtaIntercalibration_Stat52: 3.44548032e-07 + syst_JES_EtaIntercalibration_Stat53: 5.31976270e-16 + syst_JES_EtaIntercalibration_Stat54: 3.82783228e-16 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 1.6076472770791483e-17 - syst_JES_EtaIntercalibration_Stat57: 3.7561619455371844e-08 - syst_JES_EtaIntercalibration_Stat58: 3.796963226530764e-08 - syst_JES_EtaIntercalibration_Stat59: 1.5357893735795935e-12 - syst_JES_EtaIntercalibration_Stat6: 1.687640921523296e-16 - syst_JES_EtaIntercalibration_Stat60: 4.7316673770986906e-15 + syst_JES_EtaIntercalibration_Stat56: 1.60764728e-17 + syst_JES_EtaIntercalibration_Stat57: 3.75616195e-08 + syst_JES_EtaIntercalibration_Stat58: 3.79696323e-08 + syst_JES_EtaIntercalibration_Stat59: 1.53578937e-12 + syst_JES_EtaIntercalibration_Stat6: 1.68764092e-16 + syst_JES_EtaIntercalibration_Stat60: 4.73166738e-15 syst_JES_EtaIntercalibration_Stat61: 0.0 syst_JES_EtaIntercalibration_Stat62: 0.0 syst_JES_EtaIntercalibration_Stat63: 0.0 @@ -29209,21 +29209,21 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 3.09706619238272e-15 - syst_JES_EtaIntercalibration_Stat70: 8.173547760917533e-17 - syst_JES_EtaIntercalibration_Stat71: 6.744758316648566e-15 - syst_JES_EtaIntercalibration_Stat72: 1.6471967095644648e-10 - syst_JES_EtaIntercalibration_Stat73: 1.1839561507399673e-06 - syst_JES_EtaIntercalibration_Stat74: 8.411493726294991e-07 - syst_JES_EtaIntercalibration_Stat75: 2.563327823513801e-14 - syst_JES_EtaIntercalibration_Stat76: 3.827832284727219e-16 + syst_JES_EtaIntercalibration_Stat7: 3.09706619e-15 + syst_JES_EtaIntercalibration_Stat70: 8.17354776e-17 + syst_JES_EtaIntercalibration_Stat71: 6.74475832e-15 + syst_JES_EtaIntercalibration_Stat72: 1.64719671e-10 + syst_JES_EtaIntercalibration_Stat73: 1.18395615e-06 + syst_JES_EtaIntercalibration_Stat74: 8.41149373e-07 + syst_JES_EtaIntercalibration_Stat75: 2.56332782e-14 + syst_JES_EtaIntercalibration_Stat76: 3.82783228e-16 syst_JES_EtaIntercalibration_Stat77: 0.0 - syst_JES_EtaIntercalibration_Stat78: 6.60221296233316e-15 - syst_JES_EtaIntercalibration_Stat79: 3.5243663072221936e-08 - syst_JES_EtaIntercalibration_Stat8: 4.733912546720735e-16 - syst_JES_EtaIntercalibration_Stat80: 2.3151056116973324e-06 - syst_JES_EtaIntercalibration_Stat81: 3.5994673839750235e-08 - syst_JES_EtaIntercalibration_Stat82: 5.939964204437599e-15 + syst_JES_EtaIntercalibration_Stat78: 6.60221296e-15 + syst_JES_EtaIntercalibration_Stat79: 3.52436631e-08 + syst_JES_EtaIntercalibration_Stat8: 4.73391255e-16 + syst_JES_EtaIntercalibration_Stat80: 2.31510561e-06 + syst_JES_EtaIntercalibration_Stat81: 3.59946738e-08 + syst_JES_EtaIntercalibration_Stat82: 5.93996420e-15 syst_JES_EtaIntercalibration_Stat83: 0.0 syst_JES_EtaIntercalibration_Stat84: 0.0 syst_JES_EtaIntercalibration_Stat85: 0.0 @@ -29233,113 +29233,113 @@ bins: syst_JES_EtaIntercalibration_Stat89: 0.0 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 7.033858329537211e-17 - syst_JES_EtaIntercalibration_Stat92: 5.770894555844441e-12 - syst_JES_EtaIntercalibration_Stat93: 2.2343569497061116e-10 - syst_JES_EtaIntercalibration_Stat94: 1.1894691846365756e-06 - syst_JES_EtaIntercalibration_Stat95: 8.44032659320716e-07 - syst_JES_EtaIntercalibration_Stat96: 5.326878042531104e-14 - syst_JES_EtaIntercalibration_Stat97: 3.827832284727219e-16 + syst_JES_EtaIntercalibration_Stat91: 7.03385833e-17 + syst_JES_EtaIntercalibration_Stat92: 5.77089456e-12 + syst_JES_EtaIntercalibration_Stat93: 2.23435695e-10 + syst_JES_EtaIntercalibration_Stat94: 1.18946918e-06 + syst_JES_EtaIntercalibration_Stat95: 8.44032659e-07 + syst_JES_EtaIntercalibration_Stat96: 5.32687804e-14 + syst_JES_EtaIntercalibration_Stat97: 3.82783228e-16 syst_JES_EtaIntercalibration_Stat98: 0.0 - syst_JES_EtaIntercalibration_Stat99: 1.835971764003845e-09 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.004556062773931017 - syst_JES_Flavour_Comp: 0.01407137519931865 - syst_JES_Flavour_Response: 0.006074013829421201 - syst_JES_Gjet_Generator: 0.020744061800910638 - syst_JES_Gjet_OOC: 0.01672106156917078 - syst_JES_Gjet_Purity: 0.004240021314804915 - syst_JES_Gjet_Stat1: 4.030443793584857e-05 - syst_JES_Gjet_Stat10: 0.00038060459797537916 - syst_JES_Gjet_Stat11: 0.0005216240887842508 - syst_JES_Gjet_Stat12: 0.001736638347497832 - syst_JES_Gjet_Stat13: 0.0047888183041330775 - syst_JES_Gjet_Stat14: 0.006378126370651494 - syst_JES_Gjet_Stat15: 0.0006243879563220291 - syst_JES_Gjet_Stat2: 4.4867762090391806e-05 - syst_JES_Gjet_Stat3: 5.656334568428568e-05 - syst_JES_Gjet_Stat4: 4.122298479004159e-05 - syst_JES_Gjet_Stat5: 4.5307545453268597e-05 - syst_JES_Gjet_Stat6: 0.000143941009010636 - syst_JES_Gjet_Stat7: 0.0001902528514898003 - syst_JES_Gjet_Stat8: 0.0001498282349892703 - syst_JES_Gjet_Stat9: 0.00023979962468694566 - syst_JES_Gjet_Veto: 0.014893005069494874 - syst_JES_Gjet_dPhi: 0.0014948253242436055 - syst_JES_LArESZee: 0.03108965865042587 - syst_JES_LArEsmear: 0.002380295097251599 - syst_JES_LAr_JVT: 0.003014278810926421 - syst_JES_MJB_Alpha: 0.00017086374688622512 - syst_JES_MJB_Asym: 0.0013145664760673002 - syst_JES_MJB_Beta: 0.00014097643446689948 - syst_JES_MJB_Fragmentation: 0.003087203062644244 - syst_JES_MJB_Stat1: 2.8518216546621563e-05 - syst_JES_MJB_Stat10: 5.234680392106093e-05 - syst_JES_MJB_Stat11: 3.7707899702847414e-06 - syst_JES_MJB_Stat12: 4.074443857755313e-06 - syst_JES_MJB_Stat13: 4.465941446100699e-05 - syst_JES_MJB_Stat14: 2.8069710735061016e-05 - syst_JES_MJB_Stat15: 4.801249498828404e-06 - syst_JES_MJB_Stat16: 4.41201756569486e-07 + syst_JES_EtaIntercalibration_Stat99: 1.83597176e-09 + syst_JES_EtaIntercalibration_TotalStat_MJB: 4.55606277e-03 + syst_JES_Flavour_Comp: 1.40713752e-02 + syst_JES_Flavour_Response: 6.07401383e-03 + syst_JES_Gjet_Generator: 2.07440618e-02 + syst_JES_Gjet_OOC: 1.67210616e-02 + syst_JES_Gjet_Purity: 4.24002131e-03 + syst_JES_Gjet_Stat1: 4.03044379e-05 + syst_JES_Gjet_Stat10: 3.80604598e-04 + syst_JES_Gjet_Stat11: 5.21624089e-04 + syst_JES_Gjet_Stat12: 1.73663835e-03 + syst_JES_Gjet_Stat13: 4.78881830e-03 + syst_JES_Gjet_Stat14: 6.37812637e-03 + syst_JES_Gjet_Stat15: 6.24387956e-04 + syst_JES_Gjet_Stat2: 4.48677621e-05 + syst_JES_Gjet_Stat3: 5.65633457e-05 + syst_JES_Gjet_Stat4: 4.12229848e-05 + syst_JES_Gjet_Stat5: 4.53075455e-05 + syst_JES_Gjet_Stat6: 1.43941009e-04 + syst_JES_Gjet_Stat7: 1.90252851e-04 + syst_JES_Gjet_Stat8: 1.49828235e-04 + syst_JES_Gjet_Stat9: 2.39799625e-04 + syst_JES_Gjet_Veto: 1.48930051e-02 + syst_JES_Gjet_dPhi: 1.49482532e-03 + syst_JES_LArESZee: 3.10896587e-02 + syst_JES_LArEsmear: 2.38029510e-03 + syst_JES_LAr_JVT: 3.01427881e-03 + syst_JES_MJB_Alpha: 1.70863747e-04 + syst_JES_MJB_Asym: 1.31456648e-03 + syst_JES_MJB_Beta: 1.40976434e-04 + syst_JES_MJB_Fragmentation: 3.08720306e-03 + syst_JES_MJB_Stat1: 2.85182165e-05 + syst_JES_MJB_Stat10: 5.23468039e-05 + syst_JES_MJB_Stat11: 3.77078997e-06 + syst_JES_MJB_Stat12: 4.07444386e-06 + syst_JES_MJB_Stat13: 4.46594145e-05 + syst_JES_MJB_Stat14: 2.80697107e-05 + syst_JES_MJB_Stat15: 4.80124950e-06 + syst_JES_MJB_Stat16: 4.41201757e-07 syst_JES_MJB_Stat2: 0.0 - syst_JES_MJB_Stat3: 0.00028085203844729347 - syst_JES_MJB_Stat4: 0.0001106434055874999 - syst_JES_MJB_Stat5: 0.00010776820124693554 - syst_JES_MJB_Stat6: 0.0001531166467109308 - syst_JES_MJB_Stat7: 8.497136046927811e-05 - syst_JES_MJB_Stat8: 8.040196934777157e-05 - syst_JES_MJB_Stat9: 3.412822368656183e-05 - syst_JES_MJB_Threshold: 0.0015758511985590519 - syst_JES_Pileup_MuOffset: 0.00351230020784101 - syst_JES_Pileup_NPVOffset: 0.0035911010498174516 - syst_JES_Pileup_Pt_term: 0.003634710011472717 - syst_JES_Pileup_Rho_topology: 0.006278781490066365 - syst_JES_PunchThrough_MC15: 0.0010221112414996716 - syst_JES_SingleParticle_HighPt: 9.570122608932448e-30 - syst_JES_Zjet_MC: 0.011403493094223368 - syst_JES_Zjet_MuScale: 0.0006976726506750856 - syst_JES_Zjet_MuSmearID: 0.0001791527002308366 - syst_JES_Zjet_MuSmearMS: 0.003212565446804158 - syst_JES_Zjet_OOC: 0.005376560308412805 - syst_JES_Zjet_Stat1: 0.000233238590289 - syst_JES_Zjet_Stat10: 0.0004106530743827447 - syst_JES_Zjet_Stat11: 0.000579153321668796 - syst_JES_Zjet_Stat12: 0.001928748817238782 - syst_JES_Zjet_Stat13: 0.003520764796177103 - syst_JES_Zjet_Stat2: 1.7918065604300037e-06 - syst_JES_Zjet_Stat3: 0.00010839390976895335 - syst_JES_Zjet_Stat4: 0.00011421329782472792 - syst_JES_Zjet_Stat5: 0.00014584493366243478 - syst_JES_Zjet_Stat6: 0.00017374218687469088 - syst_JES_Zjet_Stat7: 0.00014458816298369654 - syst_JES_Zjet_Stat8: 0.00013309646464125183 - syst_JES_Zjet_Stat9: 0.00023527226780902162 - syst_JES_Zjet_Veto: 0.0011863003867065036 - syst_JES_Zjet_dPhi: 0.0009504214959690253 + syst_JES_MJB_Stat3: 2.80852038e-04 + syst_JES_MJB_Stat4: 1.10643406e-04 + syst_JES_MJB_Stat5: 1.07768201e-04 + syst_JES_MJB_Stat6: 1.53116647e-04 + syst_JES_MJB_Stat7: 8.49713605e-05 + syst_JES_MJB_Stat8: 8.04019693e-05 + syst_JES_MJB_Stat9: 3.41282237e-05 + syst_JES_MJB_Threshold: 1.57585120e-03 + syst_JES_Pileup_MuOffset: 3.51230021e-03 + syst_JES_Pileup_NPVOffset: 3.59110105e-03 + syst_JES_Pileup_Pt_term: 3.63471001e-03 + syst_JES_Pileup_Rho_topology: 6.27878149e-03 + syst_JES_PunchThrough_MC15: 1.02211124e-03 + syst_JES_SingleParticle_HighPt: 9.57012261e-30 + syst_JES_Zjet_MC: 1.14034931e-02 + syst_JES_Zjet_MuScale: 6.97672651e-04 + syst_JES_Zjet_MuSmearID: 1.79152700e-04 + syst_JES_Zjet_MuSmearMS: 3.21256545e-03 + syst_JES_Zjet_OOC: 5.37656031e-03 + syst_JES_Zjet_Stat1: 2.33238590e-04 + syst_JES_Zjet_Stat10: 4.10653074e-04 + syst_JES_Zjet_Stat11: 5.79153322e-04 + syst_JES_Zjet_Stat12: 1.92874882e-03 + syst_JES_Zjet_Stat13: 3.52076480e-03 + syst_JES_Zjet_Stat2: 1.79180656e-06 + syst_JES_Zjet_Stat3: 1.08393910e-04 + syst_JES_Zjet_Stat4: 1.14213298e-04 + syst_JES_Zjet_Stat5: 1.45844934e-04 + syst_JES_Zjet_Stat6: 1.73742187e-04 + syst_JES_Zjet_Stat7: 1.44588163e-04 + syst_JES_Zjet_Stat8: 1.33096465e-04 + syst_JES_Zjet_Stat9: 2.35272268e-04 + syst_JES_Zjet_Veto: 1.18630039e-03 + syst_JES_Zjet_dPhi: 9.50421496e-04 syst_PRW: 0.0 syst_Unfolding_bias: 0.000981 - syst_cleaning: 0.005426515180113293 + syst_cleaning: 5.42651518e-03 syst_lumi: 0.02007 -- stat: 0.0025952 +- stat: 2.59520000e-03 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.003702760152912959 - syst_JER_NP1: 0.00030925581643681337 - syst_JER_NP2: 0.002131469680760202 - syst_JER_NP3: 0.00027277732677038975 - syst_JER_NP4: 1.0651991492204639e-09 - syst_JER_NP5: 7.967350983074612e-05 - syst_JER_NP6: 2.396002295491388e-12 - syst_JER_NP7: 1.5805355896024613e-15 - syst_JER_NP8: 0.00044848840286009623 - syst_JES_EtaIntercalibration_Modelling: 0.027054212241349778 + syst_JER_NP0: 3.70276015e-03 + syst_JER_NP1: 3.09255816e-04 + syst_JER_NP2: 2.13146968e-03 + syst_JER_NP3: 2.72777327e-04 + syst_JER_NP4: 1.06519915e-09 + syst_JER_NP5: 7.96735098e-05 + syst_JER_NP6: 2.39600230e-12 + syst_JER_NP7: 1.58053559e-15 + syst_JER_NP8: 4.48488403e-04 + syst_JES_EtaIntercalibration_Modelling: 2.70542122e-02 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 6.25564826436877e-10 - syst_JES_EtaIntercalibration_Stat101: 1.1472090478464463e-06 - syst_JES_EtaIntercalibration_Stat102: 2.0606200452291054e-09 - syst_JES_EtaIntercalibration_Stat103: 2.971005006727522e-13 + syst_JES_EtaIntercalibration_Stat100: 6.25564826e-10 + syst_JES_EtaIntercalibration_Stat101: 1.14720905e-06 + syst_JES_EtaIntercalibration_Stat102: 2.06062005e-09 + syst_JES_EtaIntercalibration_Stat103: 2.97100501e-13 syst_JES_EtaIntercalibration_Stat104: 0.0 syst_JES_EtaIntercalibration_Stat105: 0.0 syst_JES_EtaIntercalibration_Stat106: 0.0 @@ -29348,170 +29348,170 @@ bins: syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 syst_JES_EtaIntercalibration_Stat110: 0.0 - syst_JES_EtaIntercalibration_Stat111: 5.526974126952287e-18 - syst_JES_EtaIntercalibration_Stat112: 8.213348475956684e-12 - syst_JES_EtaIntercalibration_Stat113: 3.522842992527484e-06 - syst_JES_EtaIntercalibration_Stat114: 3.0840603106943286e-06 - syst_JES_EtaIntercalibration_Stat115: 3.1520812172277543e-06 - syst_JES_EtaIntercalibration_Stat116: 6.16617821489355e-09 + syst_JES_EtaIntercalibration_Stat111: 5.52697413e-18 + syst_JES_EtaIntercalibration_Stat112: 8.21334848e-12 + syst_JES_EtaIntercalibration_Stat113: 3.52284299e-06 + syst_JES_EtaIntercalibration_Stat114: 3.08406031e-06 + syst_JES_EtaIntercalibration_Stat115: 3.15208122e-06 + syst_JES_EtaIntercalibration_Stat116: 6.16617821e-09 syst_JES_EtaIntercalibration_Stat117: 0.0 syst_JES_EtaIntercalibration_Stat118: 0.0 - syst_JES_EtaIntercalibration_Stat119: 6.231918699169438e-09 + syst_JES_EtaIntercalibration_Stat119: 6.23191870e-09 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 1.4950569025542137e-06 - syst_JES_EtaIntercalibration_Stat121: 1.1523200336712021e-06 - syst_JES_EtaIntercalibration_Stat122: 1.812912375320773e-06 - syst_JES_EtaIntercalibration_Stat123: 6.863811033784365e-09 + syst_JES_EtaIntercalibration_Stat120: 1.49505690e-06 + syst_JES_EtaIntercalibration_Stat121: 1.15232003e-06 + syst_JES_EtaIntercalibration_Stat122: 1.81291238e-06 + syst_JES_EtaIntercalibration_Stat123: 6.86381103e-09 syst_JES_EtaIntercalibration_Stat124: 0.0 syst_JES_EtaIntercalibration_Stat125: 0.0 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 syst_JES_EtaIntercalibration_Stat128: 0.0 syst_JES_EtaIntercalibration_Stat129: 0.0 - syst_JES_EtaIntercalibration_Stat13: 6.245775250983687e-09 + syst_JES_EtaIntercalibration_Stat13: 6.24577525e-09 syst_JES_EtaIntercalibration_Stat130: 0.0 - syst_JES_EtaIntercalibration_Stat131: 9.094464401491711e-11 - syst_JES_EtaIntercalibration_Stat132: 9.394641504602503e-07 - syst_JES_EtaIntercalibration_Stat133: 5.4491414002574755e-06 - syst_JES_EtaIntercalibration_Stat134: 1.0246339480516931e-05 - syst_JES_EtaIntercalibration_Stat135: 2.490601629867771e-07 + syst_JES_EtaIntercalibration_Stat131: 9.09446440e-11 + syst_JES_EtaIntercalibration_Stat132: 9.39464150e-07 + syst_JES_EtaIntercalibration_Stat133: 5.44914140e-06 + syst_JES_EtaIntercalibration_Stat134: 1.02463395e-05 + syst_JES_EtaIntercalibration_Stat135: 2.49060163e-07 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 - syst_JES_EtaIntercalibration_Stat138: 5.791756912296195e-09 - syst_JES_EtaIntercalibration_Stat139: 1.2100225700374352e-06 - syst_JES_EtaIntercalibration_Stat14: 1.5799739895010931e-16 - syst_JES_EtaIntercalibration_Stat140: 1.3624944431079342e-06 - syst_JES_EtaIntercalibration_Stat141: 3.1124067006096746e-06 - syst_JES_EtaIntercalibration_Stat142: 5.492121781258019e-07 + syst_JES_EtaIntercalibration_Stat138: 5.79175691e-09 + syst_JES_EtaIntercalibration_Stat139: 1.21002257e-06 + syst_JES_EtaIntercalibration_Stat14: 1.57997399e-16 + syst_JES_EtaIntercalibration_Stat140: 1.36249444e-06 + syst_JES_EtaIntercalibration_Stat141: 3.11240670e-06 + syst_JES_EtaIntercalibration_Stat142: 5.49212178e-07 syst_JES_EtaIntercalibration_Stat143: 0.0 syst_JES_EtaIntercalibration_Stat144: 0.0 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 syst_JES_EtaIntercalibration_Stat147: 0.0 syst_JES_EtaIntercalibration_Stat148: 0.0 - syst_JES_EtaIntercalibration_Stat149: 4.405576276365556e-08 - syst_JES_EtaIntercalibration_Stat15: 1.510586643002893e-16 - syst_JES_EtaIntercalibration_Stat150: 9.62847043927539e-07 - syst_JES_EtaIntercalibration_Stat151: 7.752708220357581e-06 - syst_JES_EtaIntercalibration_Stat152: 1.0666975391365634e-05 - syst_JES_EtaIntercalibration_Stat153: 2.8645076792181934e-07 + syst_JES_EtaIntercalibration_Stat149: 4.40557628e-08 + syst_JES_EtaIntercalibration_Stat15: 1.51058664e-16 + syst_JES_EtaIntercalibration_Stat150: 9.62847044e-07 + syst_JES_EtaIntercalibration_Stat151: 7.75270822e-06 + syst_JES_EtaIntercalibration_Stat152: 1.06669754e-05 + syst_JES_EtaIntercalibration_Stat153: 2.86450768e-07 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 5.171037682351783e-10 - syst_JES_EtaIntercalibration_Stat157: 2.686873834030917e-06 - syst_JES_EtaIntercalibration_Stat158: 1.4183728027214846e-05 - syst_JES_EtaIntercalibration_Stat159: 3.716406429603737e-06 + syst_JES_EtaIntercalibration_Stat156: 5.17103768e-10 + syst_JES_EtaIntercalibration_Stat157: 2.68687383e-06 + syst_JES_EtaIntercalibration_Stat158: 1.41837280e-05 + syst_JES_EtaIntercalibration_Stat159: 3.71640643e-06 syst_JES_EtaIntercalibration_Stat16: 0.0 - syst_JES_EtaIntercalibration_Stat160: 2.351125425727007e-09 + syst_JES_EtaIntercalibration_Stat160: 2.35112543e-09 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 - syst_JES_EtaIntercalibration_Stat167: 6.505742880717005e-06 - syst_JES_EtaIntercalibration_Stat168: 1.2542719750915268e-05 - syst_JES_EtaIntercalibration_Stat169: 2.5943971843185458e-05 + syst_JES_EtaIntercalibration_Stat167: 6.50574288e-06 + syst_JES_EtaIntercalibration_Stat168: 1.25427198e-05 + syst_JES_EtaIntercalibration_Stat169: 2.59439718e-05 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 1.4826809392111304e-05 - syst_JES_EtaIntercalibration_Stat171: 1.1185994572356988e-06 + syst_JES_EtaIntercalibration_Stat170: 1.48268094e-05 + syst_JES_EtaIntercalibration_Stat171: 1.11859946e-06 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 - syst_JES_EtaIntercalibration_Stat174: 9.40850608932232e-10 - syst_JES_EtaIntercalibration_Stat175: 1.1800544521334598e-05 - syst_JES_EtaIntercalibration_Stat176: 9.415821406016576e-06 - syst_JES_EtaIntercalibration_Stat177: 9.161075238202119e-06 - syst_JES_EtaIntercalibration_Stat178: 1.4052552321553549e-06 + syst_JES_EtaIntercalibration_Stat174: 9.40850609e-10 + syst_JES_EtaIntercalibration_Stat175: 1.18005445e-05 + syst_JES_EtaIntercalibration_Stat176: 9.41582141e-06 + syst_JES_EtaIntercalibration_Stat177: 9.16107524e-06 + syst_JES_EtaIntercalibration_Stat178: 1.40525523e-06 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 syst_JES_EtaIntercalibration_Stat180: 0.0 syst_JES_EtaIntercalibration_Stat181: 0.0 syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 - syst_JES_EtaIntercalibration_Stat184: 3.902221770991495e-06 - syst_JES_EtaIntercalibration_Stat185: 5.0057835300779844e-05 - syst_JES_EtaIntercalibration_Stat186: 0.0001512500165289247 - syst_JES_EtaIntercalibration_Stat187: 7.741663048079526e-05 - syst_JES_EtaIntercalibration_Stat188: 6.895942437948564e-06 + syst_JES_EtaIntercalibration_Stat184: 3.90222177e-06 + syst_JES_EtaIntercalibration_Stat185: 5.00578353e-05 + syst_JES_EtaIntercalibration_Stat186: 1.51250017e-04 + syst_JES_EtaIntercalibration_Stat187: 7.74166305e-05 + syst_JES_EtaIntercalibration_Stat188: 6.89594244e-06 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 - syst_JES_EtaIntercalibration_Stat191: 5.220285624369609e-06 - syst_JES_EtaIntercalibration_Stat192: 0.00010693605788039878 - syst_JES_EtaIntercalibration_Stat193: 0.0001492083107604935 - syst_JES_EtaIntercalibration_Stat194: 4.4809205527435996e-05 - syst_JES_EtaIntercalibration_Stat195: 2.6111834802441597e-06 - syst_JES_EtaIntercalibration_Stat196: 6.899627091372403e-09 + syst_JES_EtaIntercalibration_Stat191: 5.22028562e-06 + syst_JES_EtaIntercalibration_Stat192: 1.06936058e-04 + syst_JES_EtaIntercalibration_Stat193: 1.49208311e-04 + syst_JES_EtaIntercalibration_Stat194: 4.48092055e-05 + syst_JES_EtaIntercalibration_Stat195: 2.61118348e-06 + syst_JES_EtaIntercalibration_Stat196: 6.89962709e-09 syst_JES_EtaIntercalibration_Stat197: 0.0 syst_JES_EtaIntercalibration_Stat198: 0.0 - syst_JES_EtaIntercalibration_Stat199: 4.075737502281028e-06 + syst_JES_EtaIntercalibration_Stat199: 4.07573750e-06 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 8.17485123717857e-05 - syst_JES_EtaIntercalibration_Stat201: 0.00026731681578232226 - syst_JES_EtaIntercalibration_Stat202: 0.00012777969351583215 - syst_JES_EtaIntercalibration_Stat203: 1.117513493207129e-05 + syst_JES_EtaIntercalibration_Stat200: 8.17485124e-05 + syst_JES_EtaIntercalibration_Stat201: 2.67316816e-04 + syst_JES_EtaIntercalibration_Stat202: 1.27779694e-04 + syst_JES_EtaIntercalibration_Stat203: 1.11751349e-05 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 - syst_JES_EtaIntercalibration_Stat206: 3.1539588087830196e-06 - syst_JES_EtaIntercalibration_Stat207: 0.0001581642421661736 - syst_JES_EtaIntercalibration_Stat208: 0.00034028774221238117 - syst_JES_EtaIntercalibration_Stat209: 8.141711552247476e-05 + syst_JES_EtaIntercalibration_Stat206: 3.15395881e-06 + syst_JES_EtaIntercalibration_Stat207: 1.58164242e-04 + syst_JES_EtaIntercalibration_Stat208: 3.40287742e-04 + syst_JES_EtaIntercalibration_Stat209: 8.14171155e-05 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 5.705630267551517e-06 - syst_JES_EtaIntercalibration_Stat211: 7.371518347667596e-09 - syst_JES_EtaIntercalibration_Stat212: 1.5650112803107843e-06 - syst_JES_EtaIntercalibration_Stat213: 6.52001784890195e-05 - syst_JES_EtaIntercalibration_Stat214: 0.00020580453712199835 - syst_JES_EtaIntercalibration_Stat215: 0.00015780572708238444 - syst_JES_EtaIntercalibration_Stat216: 1.0917978309536065e-05 + syst_JES_EtaIntercalibration_Stat210: 5.70563027e-06 + syst_JES_EtaIntercalibration_Stat211: 7.37151835e-09 + syst_JES_EtaIntercalibration_Stat212: 1.56501128e-06 + syst_JES_EtaIntercalibration_Stat213: 6.52001785e-05 + syst_JES_EtaIntercalibration_Stat214: 2.05804537e-04 + syst_JES_EtaIntercalibration_Stat215: 1.57805727e-04 + syst_JES_EtaIntercalibration_Stat216: 1.09179783e-05 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 - syst_JES_EtaIntercalibration_Stat219: 4.217787423519588e-06 + syst_JES_EtaIntercalibration_Stat219: 4.21778742e-06 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 0.00015761196020607065 - syst_JES_EtaIntercalibration_Stat221: 0.00020525620575271287 - syst_JES_EtaIntercalibration_Stat222: 6.677717031291457e-05 - syst_JES_EtaIntercalibration_Stat223: 5.85519775498659e-06 - syst_JES_EtaIntercalibration_Stat224: 1.460952709048106e-06 - syst_JES_EtaIntercalibration_Stat225: 0.00010010235798921024 - syst_JES_EtaIntercalibration_Stat226: 0.00029555373030973575 - syst_JES_EtaIntercalibration_Stat227: 0.00019544003556078268 - syst_JES_EtaIntercalibration_Stat228: 8.815521379220858e-06 + syst_JES_EtaIntercalibration_Stat220: 1.57611960e-04 + syst_JES_EtaIntercalibration_Stat221: 2.05256206e-04 + syst_JES_EtaIntercalibration_Stat222: 6.67771703e-05 + syst_JES_EtaIntercalibration_Stat223: 5.85519775e-06 + syst_JES_EtaIntercalibration_Stat224: 1.46095271e-06 + syst_JES_EtaIntercalibration_Stat225: 1.00102358e-04 + syst_JES_EtaIntercalibration_Stat226: 2.95553730e-04 + syst_JES_EtaIntercalibration_Stat227: 1.95440036e-04 + syst_JES_EtaIntercalibration_Stat228: 8.81552138e-06 syst_JES_EtaIntercalibration_Stat229: 0.0 syst_JES_EtaIntercalibration_Stat23: 0.0 syst_JES_EtaIntercalibration_Stat230: 0.0 - syst_JES_EtaIntercalibration_Stat231: 3.4779580215983056e-06 - syst_JES_EtaIntercalibration_Stat232: 0.000188822687990612 - syst_JES_EtaIntercalibration_Stat233: 0.0003092156529026304 - syst_JES_EtaIntercalibration_Stat234: 8.238365068385838e-05 - syst_JES_EtaIntercalibration_Stat235: 5.460232605821386e-06 - syst_JES_EtaIntercalibration_Stat236: 1.1628906827384938e-05 - syst_JES_EtaIntercalibration_Stat237: 2.1752222139358545e-06 - syst_JES_EtaIntercalibration_Stat238: 1.4718362230560844e-05 - syst_JES_EtaIntercalibration_Stat239: 4.2346958470089675e-08 + syst_JES_EtaIntercalibration_Stat231: 3.47795802e-06 + syst_JES_EtaIntercalibration_Stat232: 1.88822688e-04 + syst_JES_EtaIntercalibration_Stat233: 3.09215653e-04 + syst_JES_EtaIntercalibration_Stat234: 8.23836507e-05 + syst_JES_EtaIntercalibration_Stat235: 5.46023261e-06 + syst_JES_EtaIntercalibration_Stat236: 1.16289068e-05 + syst_JES_EtaIntercalibration_Stat237: 2.17522221e-06 + syst_JES_EtaIntercalibration_Stat238: 1.47183622e-05 + syst_JES_EtaIntercalibration_Stat239: 4.23469585e-08 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 - syst_JES_EtaIntercalibration_Stat242: 4.184637613308197e-09 - syst_JES_EtaIntercalibration_Stat243: 1.3898297980328383e-05 - syst_JES_EtaIntercalibration_Stat244: 7.561647836285421e-06 - syst_JES_EtaIntercalibration_Stat245: 1.164297015370219e-05 + syst_JES_EtaIntercalibration_Stat242: 4.18463761e-09 + syst_JES_EtaIntercalibration_Stat243: 1.38982980e-05 + syst_JES_EtaIntercalibration_Stat244: 7.56164784e-06 + syst_JES_EtaIntercalibration_Stat245: 1.16429702e-05 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 - syst_JES_EtaIntercalibration_Stat27: 2.9212942388605776e-17 - syst_JES_EtaIntercalibration_Stat28: 8.531624604073563e-12 - syst_JES_EtaIntercalibration_Stat29: 5.397932684284364e-09 + syst_JES_EtaIntercalibration_Stat27: 2.92129424e-17 + syst_JES_EtaIntercalibration_Stat28: 8.53162460e-12 + syst_JES_EtaIntercalibration_Stat29: 5.39793268e-09 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 6.942916300455722e-09 - syst_JES_EtaIntercalibration_Stat31: 5.1294684666152296e-18 + syst_JES_EtaIntercalibration_Stat30: 6.94291630e-09 + syst_JES_EtaIntercalibration_Stat31: 5.12946847e-18 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 - syst_JES_EtaIntercalibration_Stat34: 5.405730570422466e-19 - syst_JES_EtaIntercalibration_Stat35: 6.23885590876828e-09 - syst_JES_EtaIntercalibration_Stat36: 6.2432212755583005e-09 - syst_JES_EtaIntercalibration_Stat37: 1.0670366509975183e-13 - syst_JES_EtaIntercalibration_Stat38: 7.65795623567411e-17 + syst_JES_EtaIntercalibration_Stat34: 5.40573057e-19 + syst_JES_EtaIntercalibration_Stat35: 6.23885591e-09 + syst_JES_EtaIntercalibration_Stat36: 6.24322128e-09 + syst_JES_EtaIntercalibration_Stat37: 1.06703665e-13 + syst_JES_EtaIntercalibration_Stat38: 7.65795624e-17 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 syst_JES_EtaIntercalibration_Stat40: 0.0 @@ -29522,21 +29522,21 @@ bins: syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 syst_JES_EtaIntercalibration_Stat47: 0.0 - syst_JES_EtaIntercalibration_Stat48: 1.707802096262913e-17 - syst_JES_EtaIntercalibration_Stat49: 1.5987451329089323e-16 - syst_JES_EtaIntercalibration_Stat5: 1.53546304090981e-17 - syst_JES_EtaIntercalibration_Stat50: 8.787909350351766e-12 - syst_JES_EtaIntercalibration_Stat51: 4.1062809394968335e-09 - syst_JES_EtaIntercalibration_Stat52: 5.268007070566101e-09 - syst_JES_EtaIntercalibration_Stat53: 8.710310170567979e-17 - syst_JES_EtaIntercalibration_Stat54: 6.147048316061945e-17 + syst_JES_EtaIntercalibration_Stat48: 1.70780210e-17 + syst_JES_EtaIntercalibration_Stat49: 1.59874513e-16 + syst_JES_EtaIntercalibration_Stat5: 1.53546304e-17 + syst_JES_EtaIntercalibration_Stat50: 8.78790935e-12 + syst_JES_EtaIntercalibration_Stat51: 4.10628094e-09 + syst_JES_EtaIntercalibration_Stat52: 5.26800707e-09 + syst_JES_EtaIntercalibration_Stat53: 8.71031017e-17 + syst_JES_EtaIntercalibration_Stat54: 6.14704832e-17 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 3.2212547244823716e-18 - syst_JES_EtaIntercalibration_Stat57: 6.149932666952883e-09 - syst_JES_EtaIntercalibration_Stat58: 6.217617953742414e-09 - syst_JES_EtaIntercalibration_Stat59: 2.1363265199870546e-13 - syst_JES_EtaIntercalibration_Stat6: 3.2451293021234146e-17 - syst_JES_EtaIntercalibration_Stat60: 7.557922383168539e-16 + syst_JES_EtaIntercalibration_Stat56: 3.22125472e-18 + syst_JES_EtaIntercalibration_Stat57: 6.14993267e-09 + syst_JES_EtaIntercalibration_Stat58: 6.21761795e-09 + syst_JES_EtaIntercalibration_Stat59: 2.13632652e-13 + syst_JES_EtaIntercalibration_Stat6: 3.24512930e-17 + syst_JES_EtaIntercalibration_Stat60: 7.55792238e-16 syst_JES_EtaIntercalibration_Stat61: 0.0 syst_JES_EtaIntercalibration_Stat62: 0.0 syst_JES_EtaIntercalibration_Stat63: 0.0 @@ -29546,21 +29546,21 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 4.973878441417724e-16 - syst_JES_EtaIntercalibration_Stat70: 1.53546304090981e-17 - syst_JES_EtaIntercalibration_Stat71: 1.0747697846515784e-15 - syst_JES_EtaIntercalibration_Stat72: 2.3458791273209283e-11 - syst_JES_EtaIntercalibration_Stat73: 7.065001325058262e-07 - syst_JES_EtaIntercalibration_Stat74: 2.838773356905232e-07 - syst_JES_EtaIntercalibration_Stat75: 3.700419614043791e-15 - syst_JES_EtaIntercalibration_Stat76: 6.147048316061945e-17 + syst_JES_EtaIntercalibration_Stat7: 4.97387844e-16 + syst_JES_EtaIntercalibration_Stat70: 1.53546304e-17 + syst_JES_EtaIntercalibration_Stat71: 1.07476978e-15 + syst_JES_EtaIntercalibration_Stat72: 2.34587913e-11 + syst_JES_EtaIntercalibration_Stat73: 7.06500133e-07 + syst_JES_EtaIntercalibration_Stat74: 2.83877336e-07 + syst_JES_EtaIntercalibration_Stat75: 3.70041961e-15 + syst_JES_EtaIntercalibration_Stat76: 6.14704832e-17 syst_JES_EtaIntercalibration_Stat77: 0.0 - syst_JES_EtaIntercalibration_Stat78: 1.0597722538357003e-15 - syst_JES_EtaIntercalibration_Stat79: 5.784013399315458e-09 - syst_JES_EtaIntercalibration_Stat8: 7.746709285238474e-17 - syst_JES_EtaIntercalibration_Stat80: 1.0106825064698132e-06 - syst_JES_EtaIntercalibration_Stat81: 6.91125764785795e-09 - syst_JES_EtaIntercalibration_Stat82: 9.31653212037612e-16 + syst_JES_EtaIntercalibration_Stat78: 1.05977225e-15 + syst_JES_EtaIntercalibration_Stat79: 5.78401340e-09 + syst_JES_EtaIntercalibration_Stat8: 7.74670929e-17 + syst_JES_EtaIntercalibration_Stat80: 1.01068251e-06 + syst_JES_EtaIntercalibration_Stat81: 6.91125765e-09 + syst_JES_EtaIntercalibration_Stat82: 9.31653212e-16 syst_JES_EtaIntercalibration_Stat83: 0.0 syst_JES_EtaIntercalibration_Stat84: 0.0 syst_JES_EtaIntercalibration_Stat85: 0.0 @@ -29570,113 +29570,113 @@ bins: syst_JES_EtaIntercalibration_Stat89: 0.0 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 1.320688740771269e-17 - syst_JES_EtaIntercalibration_Stat92: 7.720538741065937e-13 - syst_JES_EtaIntercalibration_Stat93: 3.1679656357156086e-11 - syst_JES_EtaIntercalibration_Stat94: 7.098793691003305e-07 - syst_JES_EtaIntercalibration_Stat95: 2.8883396768169425e-07 - syst_JES_EtaIntercalibration_Stat96: 7.973351834078314e-15 - syst_JES_EtaIntercalibration_Stat97: 6.147048316061945e-17 + syst_JES_EtaIntercalibration_Stat91: 1.32068874e-17 + syst_JES_EtaIntercalibration_Stat92: 7.72053874e-13 + syst_JES_EtaIntercalibration_Stat93: 3.16796564e-11 + syst_JES_EtaIntercalibration_Stat94: 7.09879369e-07 + syst_JES_EtaIntercalibration_Stat95: 2.88833968e-07 + syst_JES_EtaIntercalibration_Stat96: 7.97335183e-15 + syst_JES_EtaIntercalibration_Stat97: 6.14704832e-17 syst_JES_EtaIntercalibration_Stat98: 0.0 - syst_JES_EtaIntercalibration_Stat99: 3.66241811285238e-10 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0031188127548796513 - syst_JES_Flavour_Comp: 0.00926401403280457 - syst_JES_Flavour_Response: 0.0034244349533901204 - syst_JES_Gjet_Generator: 0.01328195490129371 - syst_JES_Gjet_OOC: 0.010789519359081757 - syst_JES_Gjet_Purity: 0.0025493086807995614 - syst_JES_Gjet_Stat1: 2.5399710774488655e-05 - syst_JES_Gjet_Stat10: 0.0002184181025006856 - syst_JES_Gjet_Stat11: 0.0002970993562766503 - syst_JES_Gjet_Stat12: 0.0009873124163606978 - syst_JES_Gjet_Stat13: 0.002947054800983518 - syst_JES_Gjet_Stat14: 0.005029183507290224 - syst_JES_Gjet_Stat15: 0.000445463474933692 - syst_JES_Gjet_Stat2: 3.243353318711978e-05 - syst_JES_Gjet_Stat3: 3.784734345697198e-05 - syst_JES_Gjet_Stat4: 2.791574958692673e-05 - syst_JES_Gjet_Stat5: 3.100225475671084e-05 - syst_JES_Gjet_Stat6: 9.045121267843788e-05 - syst_JES_Gjet_Stat7: 0.00012114230309846351 - syst_JES_Gjet_Stat8: 9.468575024785938e-05 - syst_JES_Gjet_Stat9: 0.0001491834776374381 - syst_JES_Gjet_Veto: 0.009991882843088185 - syst_JES_Gjet_dPhi: 0.0009970148394081203 - syst_JES_LArESZee: 0.020127950715360964 - syst_JES_LArEsmear: 0.0015566579585766427 - syst_JES_LAr_JVT: 0.0019782903603869683 - syst_JES_MJB_Alpha: 0.00010359624800155651 - syst_JES_MJB_Asym: 0.0010067486516007853 - syst_JES_MJB_Beta: 0.00011081941391290606 - syst_JES_MJB_Fragmentation: 0.0018562938883700502 - syst_JES_MJB_Stat1: 1.4246117892254016e-05 - syst_JES_MJB_Stat10: 1.0386379771123334e-05 - syst_JES_MJB_Stat11: 1.1317885800802197e-05 - syst_JES_MJB_Stat12: 8.449221857662397e-06 - syst_JES_MJB_Stat13: 4.3927009558470966e-05 - syst_JES_MJB_Stat14: 3.704488628677378e-05 - syst_JES_MJB_Stat15: 1.605678361316487e-05 - syst_JES_MJB_Stat16: 5.573641807651438e-07 + syst_JES_EtaIntercalibration_Stat99: 3.66241811e-10 + syst_JES_EtaIntercalibration_TotalStat_MJB: 3.11881275e-03 + syst_JES_Flavour_Comp: 9.26401403e-03 + syst_JES_Flavour_Response: 3.42443495e-03 + syst_JES_Gjet_Generator: 1.32819549e-02 + syst_JES_Gjet_OOC: 1.07895194e-02 + syst_JES_Gjet_Purity: 2.54930868e-03 + syst_JES_Gjet_Stat1: 2.53997108e-05 + syst_JES_Gjet_Stat10: 2.18418103e-04 + syst_JES_Gjet_Stat11: 2.97099356e-04 + syst_JES_Gjet_Stat12: 9.87312416e-04 + syst_JES_Gjet_Stat13: 2.94705480e-03 + syst_JES_Gjet_Stat14: 5.02918351e-03 + syst_JES_Gjet_Stat15: 4.45463475e-04 + syst_JES_Gjet_Stat2: 3.24335332e-05 + syst_JES_Gjet_Stat3: 3.78473435e-05 + syst_JES_Gjet_Stat4: 2.79157496e-05 + syst_JES_Gjet_Stat5: 3.10022548e-05 + syst_JES_Gjet_Stat6: 9.04512127e-05 + syst_JES_Gjet_Stat7: 1.21142303e-04 + syst_JES_Gjet_Stat8: 9.46857502e-05 + syst_JES_Gjet_Stat9: 1.49183478e-04 + syst_JES_Gjet_Veto: 9.99188284e-03 + syst_JES_Gjet_dPhi: 9.97014839e-04 + syst_JES_LArESZee: 2.01279507e-02 + syst_JES_LArEsmear: 1.55665796e-03 + syst_JES_LAr_JVT: 1.97829036e-03 + syst_JES_MJB_Alpha: 1.03596248e-04 + syst_JES_MJB_Asym: 1.00674865e-03 + syst_JES_MJB_Beta: 1.10819414e-04 + syst_JES_MJB_Fragmentation: 1.85629389e-03 + syst_JES_MJB_Stat1: 1.42461179e-05 + syst_JES_MJB_Stat10: 1.03863798e-05 + syst_JES_MJB_Stat11: 1.13178858e-05 + syst_JES_MJB_Stat12: 8.44922186e-06 + syst_JES_MJB_Stat13: 4.39270096e-05 + syst_JES_MJB_Stat14: 3.70448863e-05 + syst_JES_MJB_Stat15: 1.60567836e-05 + syst_JES_MJB_Stat16: 5.57364181e-07 syst_JES_MJB_Stat2: 0.0 - syst_JES_MJB_Stat3: 0.0001393434874689162 - syst_JES_MJB_Stat4: 4.7588095937954906e-05 - syst_JES_MJB_Stat5: 7.930194622454105e-05 - syst_JES_MJB_Stat6: 0.00010752520355711958 - syst_JES_MJB_Stat7: 7.27172653157419e-05 - syst_JES_MJB_Stat8: 7.322649981393348e-05 - syst_JES_MJB_Stat9: 5.2186243021988084e-05 - syst_JES_MJB_Threshold: 0.0010515781426028215 - syst_JES_Pileup_MuOffset: 0.002356610012284595 - syst_JES_Pileup_NPVOffset: 0.002407565315832573 - syst_JES_Pileup_Pt_term: 0.0022613168729746828 - syst_JES_Pileup_Rho_topology: 0.003977340160207572 - syst_JES_PunchThrough_MC15: 0.0008200106142605717 - syst_JES_SingleParticle_HighPt: 1.3033670357961336e-24 - syst_JES_Zjet_MC: 0.006743051534728177 - syst_JES_Zjet_MuScale: 0.0004168220333667595 - syst_JES_Zjet_MuSmearID: 0.00010415005712912498 - syst_JES_Zjet_MuSmearMS: 0.0018986827012431539 - syst_JES_Zjet_OOC: 0.003316156623261332 - syst_JES_Zjet_Stat1: 0.0001493379389170749 - syst_JES_Zjet_Stat10: 0.00024589759555554826 - syst_JES_Zjet_Stat11: 0.000349903458113806 - syst_JES_Zjet_Stat12: 0.0011053646050059682 - syst_JES_Zjet_Stat13: 0.002080908215179132 - syst_JES_Zjet_Stat2: 1.1293837290752863e-06 - syst_JES_Zjet_Stat3: 7.196386923310891e-05 - syst_JES_Zjet_Stat4: 7.663683497509536e-05 - syst_JES_Zjet_Stat5: 9.492848610928124e-05 - syst_JES_Zjet_Stat6: 0.00011798140446697522 - syst_JES_Zjet_Stat7: 8.890904734615033e-05 - syst_JES_Zjet_Stat8: 9.365158020556834e-05 - syst_JES_Zjet_Stat9: 0.0001482050859451186 - syst_JES_Zjet_Veto: 0.0007334848941866492 - syst_JES_Zjet_dPhi: 0.0005945340612614217 + syst_JES_MJB_Stat3: 1.39343487e-04 + syst_JES_MJB_Stat4: 4.75880959e-05 + syst_JES_MJB_Stat5: 7.93019462e-05 + syst_JES_MJB_Stat6: 1.07525204e-04 + syst_JES_MJB_Stat7: 7.27172653e-05 + syst_JES_MJB_Stat8: 7.32264998e-05 + syst_JES_MJB_Stat9: 5.21862430e-05 + syst_JES_MJB_Threshold: 1.05157814e-03 + syst_JES_Pileup_MuOffset: 2.35661001e-03 + syst_JES_Pileup_NPVOffset: 2.40756532e-03 + syst_JES_Pileup_Pt_term: 2.26131687e-03 + syst_JES_Pileup_Rho_topology: 3.97734016e-03 + syst_JES_PunchThrough_MC15: 8.20010614e-04 + syst_JES_SingleParticle_HighPt: 1.30336704e-24 + syst_JES_Zjet_MC: 6.74305153e-03 + syst_JES_Zjet_MuScale: 4.16822033e-04 + syst_JES_Zjet_MuSmearID: 1.04150057e-04 + syst_JES_Zjet_MuSmearMS: 1.89868270e-03 + syst_JES_Zjet_OOC: 3.31615662e-03 + syst_JES_Zjet_Stat1: 1.49337939e-04 + syst_JES_Zjet_Stat10: 2.45897596e-04 + syst_JES_Zjet_Stat11: 3.49903458e-04 + syst_JES_Zjet_Stat12: 1.10536461e-03 + syst_JES_Zjet_Stat13: 2.08090822e-03 + syst_JES_Zjet_Stat2: 1.12938373e-06 + syst_JES_Zjet_Stat3: 7.19638692e-05 + syst_JES_Zjet_Stat4: 7.66368350e-05 + syst_JES_Zjet_Stat5: 9.49284861e-05 + syst_JES_Zjet_Stat6: 1.17981404e-04 + syst_JES_Zjet_Stat7: 8.89090473e-05 + syst_JES_Zjet_Stat8: 9.36515802e-05 + syst_JES_Zjet_Stat9: 1.48205086e-04 + syst_JES_Zjet_Veto: 7.33484894e-04 + syst_JES_Zjet_dPhi: 5.94534061e-04 syst_PRW: 0.0 - syst_Unfolding_bias: 0.0006183 - syst_cleaning: 0.003581015044648653 + syst_Unfolding_bias: 6.18300000e-04 + syst_cleaning: 3.58101504e-03 syst_lumi: 0.012652 -- stat: 0.0018088 +- stat: 1.80880000e-03 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.0024051415758744848 - syst_JER_NP1: 0.0002311121967789671 - syst_JER_NP2: 0.0015410463028410276 - syst_JER_NP3: 0.00016377712752396167 - syst_JER_NP4: 1.533391339482521e-10 - syst_JER_NP5: 2.0648566907173e-05 - syst_JER_NP6: 3.9150789197026407e-13 - syst_JER_NP7: 3.4525788550009975e-16 - syst_JER_NP8: 0.00026318394707884444 - syst_JES_EtaIntercalibration_Modelling: 0.01848781220155592 + syst_JER_NP0: 2.40514158e-03 + syst_JER_NP1: 2.31112197e-04 + syst_JER_NP2: 1.54104630e-03 + syst_JER_NP3: 1.63777128e-04 + syst_JER_NP4: 1.53339134e-10 + syst_JER_NP5: 2.06485669e-05 + syst_JER_NP6: 3.91507892e-13 + syst_JER_NP7: 3.45257886e-16 + syst_JER_NP8: 2.63183947e-04 + syst_JES_EtaIntercalibration_Modelling: 1.84878122e-02 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 9.612194518943111e-11 - syst_JES_EtaIntercalibration_Stat101: 4.5423226189995573e-07 - syst_JES_EtaIntercalibration_Stat102: 3.286384177492796e-10 - syst_JES_EtaIntercalibration_Stat103: 4.564903366994749e-14 + syst_JES_EtaIntercalibration_Stat100: 9.61219452e-11 + syst_JES_EtaIntercalibration_Stat101: 4.54232262e-07 + syst_JES_EtaIntercalibration_Stat102: 3.28638418e-10 + syst_JES_EtaIntercalibration_Stat103: 4.56490337e-14 syst_JES_EtaIntercalibration_Stat104: 0.0 syst_JES_EtaIntercalibration_Stat105: 0.0 syst_JES_EtaIntercalibration_Stat106: 0.0 @@ -29685,170 +29685,170 @@ bins: syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 syst_JES_EtaIntercalibration_Stat110: 0.0 - syst_JES_EtaIntercalibration_Stat111: 1.1829907015695434e-18 - syst_JES_EtaIntercalibration_Stat112: 1.1732156473023193e-12 - syst_JES_EtaIntercalibration_Stat113: 1.5241185411574782e-06 - syst_JES_EtaIntercalibration_Stat114: 1.5008536537584202e-06 - syst_JES_EtaIntercalibration_Stat115: 2.0089997529865453e-06 - syst_JES_EtaIntercalibration_Stat116: 9.775809185438916e-10 + syst_JES_EtaIntercalibration_Stat111: 1.18299070e-18 + syst_JES_EtaIntercalibration_Stat112: 1.17321565e-12 + syst_JES_EtaIntercalibration_Stat113: 1.52411854e-06 + syst_JES_EtaIntercalibration_Stat114: 1.50085365e-06 + syst_JES_EtaIntercalibration_Stat115: 2.00899975e-06 + syst_JES_EtaIntercalibration_Stat116: 9.77580919e-10 syst_JES_EtaIntercalibration_Stat117: 0.0 syst_JES_EtaIntercalibration_Stat118: 0.0 - syst_JES_EtaIntercalibration_Stat119: 9.81466568354348e-10 + syst_JES_EtaIntercalibration_Stat119: 9.81466568e-10 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 1.159562040165165e-06 - syst_JES_EtaIntercalibration_Stat121: 5.835856749441337e-07 - syst_JES_EtaIntercalibration_Stat122: 1.1694401536654996e-06 - syst_JES_EtaIntercalibration_Stat123: 1.20632749152127e-09 + syst_JES_EtaIntercalibration_Stat120: 1.15956204e-06 + syst_JES_EtaIntercalibration_Stat121: 5.83585675e-07 + syst_JES_EtaIntercalibration_Stat122: 1.16944015e-06 + syst_JES_EtaIntercalibration_Stat123: 1.20632749e-09 syst_JES_EtaIntercalibration_Stat124: 0.0 syst_JES_EtaIntercalibration_Stat125: 0.0 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 syst_JES_EtaIntercalibration_Stat128: 0.0 syst_JES_EtaIntercalibration_Stat129: 0.0 - syst_JES_EtaIntercalibration_Stat13: 9.835450584651838e-10 + syst_JES_EtaIntercalibration_Stat13: 9.83545058e-10 syst_JES_EtaIntercalibration_Stat130: 0.0 - syst_JES_EtaIntercalibration_Stat131: 1.3161028407765102e-11 - syst_JES_EtaIntercalibration_Stat132: 2.5511130644289366e-07 - syst_JES_EtaIntercalibration_Stat133: 1.0943341491518941e-06 - syst_JES_EtaIntercalibration_Stat134: 3.447381325005982e-06 - syst_JES_EtaIntercalibration_Stat135: 6.60384076101741e-08 + syst_JES_EtaIntercalibration_Stat131: 1.31610284e-11 + syst_JES_EtaIntercalibration_Stat132: 2.55111306e-07 + syst_JES_EtaIntercalibration_Stat133: 1.09433415e-06 + syst_JES_EtaIntercalibration_Stat134: 3.44738133e-06 + syst_JES_EtaIntercalibration_Stat135: 6.60384076e-08 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 - syst_JES_EtaIntercalibration_Stat138: 9.136447894976294e-10 - syst_JES_EtaIntercalibration_Stat139: 1.5649744055415093e-06 - syst_JES_EtaIntercalibration_Stat14: 2.990628821836638e-17 - syst_JES_EtaIntercalibration_Stat140: 2.9608148992296023e-07 - syst_JES_EtaIntercalibration_Stat141: 1.8049344254016545e-06 - syst_JES_EtaIntercalibration_Stat142: 2.1727031677038903e-07 + syst_JES_EtaIntercalibration_Stat138: 9.13644789e-10 + syst_JES_EtaIntercalibration_Stat139: 1.56497441e-06 + syst_JES_EtaIntercalibration_Stat14: 2.99062882e-17 + syst_JES_EtaIntercalibration_Stat140: 2.96081490e-07 + syst_JES_EtaIntercalibration_Stat141: 1.80493443e-06 + syst_JES_EtaIntercalibration_Stat142: 2.17270317e-07 syst_JES_EtaIntercalibration_Stat143: 0.0 syst_JES_EtaIntercalibration_Stat144: 0.0 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 syst_JES_EtaIntercalibration_Stat147: 0.0 syst_JES_EtaIntercalibration_Stat148: 0.0 - syst_JES_EtaIntercalibration_Stat149: 5.686300716799543e-09 - syst_JES_EtaIntercalibration_Stat15: 2.847457790292378e-17 - syst_JES_EtaIntercalibration_Stat150: 2.5591050681830165e-07 - syst_JES_EtaIntercalibration_Stat151: 1.623652056322413e-06 - syst_JES_EtaIntercalibration_Stat152: 3.1515375465794475e-06 - syst_JES_EtaIntercalibration_Stat153: 7.651874298497068e-08 + syst_JES_EtaIntercalibration_Stat149: 5.68630072e-09 + syst_JES_EtaIntercalibration_Stat15: 2.84745779e-17 + syst_JES_EtaIntercalibration_Stat150: 2.55910507e-07 + syst_JES_EtaIntercalibration_Stat151: 1.62365206e-06 + syst_JES_EtaIntercalibration_Stat152: 3.15153755e-06 + syst_JES_EtaIntercalibration_Stat153: 7.65187430e-08 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 8.059232399751589e-11 - syst_JES_EtaIntercalibration_Stat157: 1.3283947718957645e-06 - syst_JES_EtaIntercalibration_Stat158: 6.565294433610727e-06 - syst_JES_EtaIntercalibration_Stat159: 1.5855150582697094e-06 + syst_JES_EtaIntercalibration_Stat156: 8.05923240e-11 + syst_JES_EtaIntercalibration_Stat157: 1.32839477e-06 + syst_JES_EtaIntercalibration_Stat158: 6.56529443e-06 + syst_JES_EtaIntercalibration_Stat159: 1.58551506e-06 syst_JES_EtaIntercalibration_Stat16: 0.0 - syst_JES_EtaIntercalibration_Stat160: 3.653982961098752e-10 + syst_JES_EtaIntercalibration_Stat160: 3.65398296e-10 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 - syst_JES_EtaIntercalibration_Stat167: 3.1400202629720402e-06 - syst_JES_EtaIntercalibration_Stat168: 5.533396259757654e-06 - syst_JES_EtaIntercalibration_Stat169: 1.0349737424205504e-05 + syst_JES_EtaIntercalibration_Stat167: 3.14002026e-06 + syst_JES_EtaIntercalibration_Stat168: 5.53339626e-06 + syst_JES_EtaIntercalibration_Stat169: 1.03497374e-05 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 6.2266815399536855e-06 - syst_JES_EtaIntercalibration_Stat171: 7.081864359580745e-07 + syst_JES_EtaIntercalibration_Stat170: 6.22668154e-06 + syst_JES_EtaIntercalibration_Stat171: 7.08186436e-07 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 - syst_JES_EtaIntercalibration_Stat174: 1.349268629010888e-10 - syst_JES_EtaIntercalibration_Stat175: 3.48054410509334e-06 - syst_JES_EtaIntercalibration_Stat176: 5.750136694027369e-06 - syst_JES_EtaIntercalibration_Stat177: 4.4222362250336655e-06 - syst_JES_EtaIntercalibration_Stat178: 1.0148904115716141e-06 + syst_JES_EtaIntercalibration_Stat174: 1.34926863e-10 + syst_JES_EtaIntercalibration_Stat175: 3.48054411e-06 + syst_JES_EtaIntercalibration_Stat176: 5.75013669e-06 + syst_JES_EtaIntercalibration_Stat177: 4.42223623e-06 + syst_JES_EtaIntercalibration_Stat178: 1.01489041e-06 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 syst_JES_EtaIntercalibration_Stat180: 0.0 syst_JES_EtaIntercalibration_Stat181: 0.0 syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 - syst_JES_EtaIntercalibration_Stat184: 1.7327315775964838e-06 - syst_JES_EtaIntercalibration_Stat185: 2.0181380032098894e-05 - syst_JES_EtaIntercalibration_Stat186: 6.514492977200911e-05 - syst_JES_EtaIntercalibration_Stat187: 3.580704751861007e-05 - syst_JES_EtaIntercalibration_Stat188: 1.938367465162372e-06 + syst_JES_EtaIntercalibration_Stat184: 1.73273158e-06 + syst_JES_EtaIntercalibration_Stat185: 2.01813800e-05 + syst_JES_EtaIntercalibration_Stat186: 6.51449298e-05 + syst_JES_EtaIntercalibration_Stat187: 3.58070475e-05 + syst_JES_EtaIntercalibration_Stat188: 1.93836747e-06 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 - syst_JES_EtaIntercalibration_Stat191: 2.328196183207077e-06 - syst_JES_EtaIntercalibration_Stat192: 5.231863243625544e-05 - syst_JES_EtaIntercalibration_Stat193: 6.788325419424145e-05 - syst_JES_EtaIntercalibration_Stat194: 2.023706253387581e-05 - syst_JES_EtaIntercalibration_Stat195: 1.5891847178663657e-06 - syst_JES_EtaIntercalibration_Stat196: 1.2123999595327442e-09 + syst_JES_EtaIntercalibration_Stat191: 2.32819618e-06 + syst_JES_EtaIntercalibration_Stat192: 5.23186324e-05 + syst_JES_EtaIntercalibration_Stat193: 6.78832542e-05 + syst_JES_EtaIntercalibration_Stat194: 2.02370625e-05 + syst_JES_EtaIntercalibration_Stat195: 1.58918472e-06 + syst_JES_EtaIntercalibration_Stat196: 1.21239996e-09 syst_JES_EtaIntercalibration_Stat197: 0.0 syst_JES_EtaIntercalibration_Stat198: 0.0 - syst_JES_EtaIntercalibration_Stat199: 2.249878309486982e-06 + syst_JES_EtaIntercalibration_Stat199: 2.24987831e-06 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 3.693879667774791e-05 - syst_JES_EtaIntercalibration_Stat201: 0.0001201373591977117 - syst_JES_EtaIntercalibration_Stat202: 6.708271964522608e-05 - syst_JES_EtaIntercalibration_Stat203: 3.564408252080561e-06 + syst_JES_EtaIntercalibration_Stat200: 3.69387967e-05 + syst_JES_EtaIntercalibration_Stat201: 1.20137359e-04 + syst_JES_EtaIntercalibration_Stat202: 6.70827196e-05 + syst_JES_EtaIntercalibration_Stat203: 3.56440825e-06 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 - syst_JES_EtaIntercalibration_Stat206: 5.062817076490123e-07 - syst_JES_EtaIntercalibration_Stat207: 7.934696638813611e-05 - syst_JES_EtaIntercalibration_Stat208: 0.00016334292148728087 - syst_JES_EtaIntercalibration_Stat209: 3.85867344433291e-05 + syst_JES_EtaIntercalibration_Stat206: 5.06281708e-07 + syst_JES_EtaIntercalibration_Stat207: 7.93469664e-05 + syst_JES_EtaIntercalibration_Stat208: 1.63342921e-04 + syst_JES_EtaIntercalibration_Stat209: 3.85867344e-05 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 2.438896215504055e-06 - syst_JES_EtaIntercalibration_Stat211: 1.2874738121123084e-09 - syst_JES_EtaIntercalibration_Stat212: 9.970975579149716e-07 - syst_JES_EtaIntercalibration_Stat213: 3.388003947754489e-05 - syst_JES_EtaIntercalibration_Stat214: 0.00010337354448793945 - syst_JES_EtaIntercalibration_Stat215: 8.000780883763785e-05 - syst_JES_EtaIntercalibration_Stat216: 3.3428766336046562e-06 + syst_JES_EtaIntercalibration_Stat210: 2.43889622e-06 + syst_JES_EtaIntercalibration_Stat211: 1.28747381e-09 + syst_JES_EtaIntercalibration_Stat212: 9.97097558e-07 + syst_JES_EtaIntercalibration_Stat213: 3.38800395e-05 + syst_JES_EtaIntercalibration_Stat214: 1.03373544e-04 + syst_JES_EtaIntercalibration_Stat215: 8.00078088e-05 + syst_JES_EtaIntercalibration_Stat216: 3.34287663e-06 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 - syst_JES_EtaIntercalibration_Stat219: 1.4424323450339013e-06 + syst_JES_EtaIntercalibration_Stat219: 1.44243235e-06 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 9.468033005857129e-05 - syst_JES_EtaIntercalibration_Stat221: 0.000113091616289626 - syst_JES_EtaIntercalibration_Stat222: 3.553675430804001e-05 - syst_JES_EtaIntercalibration_Stat223: 1.865418719751681e-06 - syst_JES_EtaIntercalibration_Stat224: 2.7608250340035587e-06 - syst_JES_EtaIntercalibration_Stat225: 7.57737175741035e-05 - syst_JES_EtaIntercalibration_Stat226: 0.00023636770083917982 - syst_JES_EtaIntercalibration_Stat227: 0.00016238900055114572 - syst_JES_EtaIntercalibration_Stat228: 2.4246799788838114e-06 + syst_JES_EtaIntercalibration_Stat220: 9.46803301e-05 + syst_JES_EtaIntercalibration_Stat221: 1.13091616e-04 + syst_JES_EtaIntercalibration_Stat222: 3.55367543e-05 + syst_JES_EtaIntercalibration_Stat223: 1.86541872e-06 + syst_JES_EtaIntercalibration_Stat224: 2.76082503e-06 + syst_JES_EtaIntercalibration_Stat225: 7.57737176e-05 + syst_JES_EtaIntercalibration_Stat226: 2.36367701e-04 + syst_JES_EtaIntercalibration_Stat227: 1.62389001e-04 + syst_JES_EtaIntercalibration_Stat228: 2.42467998e-06 syst_JES_EtaIntercalibration_Stat229: 0.0 syst_JES_EtaIntercalibration_Stat23: 0.0 syst_JES_EtaIntercalibration_Stat230: 0.0 - syst_JES_EtaIntercalibration_Stat231: 2.2473359228206184e-06 - syst_JES_EtaIntercalibration_Stat232: 0.0001667972122069191 - syst_JES_EtaIntercalibration_Stat233: 0.0002469673409582733 - syst_JES_EtaIntercalibration_Stat234: 6.63668537373891e-05 - syst_JES_EtaIntercalibration_Stat235: 4.117688209116858e-06 - syst_JES_EtaIntercalibration_Stat236: 1.3494918923431885e-05 - syst_JES_EtaIntercalibration_Stat237: 2.151446722556708e-05 - syst_JES_EtaIntercalibration_Stat238: 1.9071995254823234e-05 - syst_JES_EtaIntercalibration_Stat239: 1.914079675144167e-07 + syst_JES_EtaIntercalibration_Stat231: 2.24733592e-06 + syst_JES_EtaIntercalibration_Stat232: 1.66797212e-04 + syst_JES_EtaIntercalibration_Stat233: 2.46967341e-04 + syst_JES_EtaIntercalibration_Stat234: 6.63668537e-05 + syst_JES_EtaIntercalibration_Stat235: 4.11768821e-06 + syst_JES_EtaIntercalibration_Stat236: 1.34949189e-05 + syst_JES_EtaIntercalibration_Stat237: 2.15144672e-05 + syst_JES_EtaIntercalibration_Stat238: 1.90719953e-05 + syst_JES_EtaIntercalibration_Stat239: 1.91407968e-07 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 - syst_JES_EtaIntercalibration_Stat242: 1.8637362108637908e-08 - syst_JES_EtaIntercalibration_Stat243: 1.9988963830073833e-05 - syst_JES_EtaIntercalibration_Stat244: 2.57452150894103e-05 - syst_JES_EtaIntercalibration_Stat245: 1.578087167269286e-05 + syst_JES_EtaIntercalibration_Stat242: 1.86373621e-08 + syst_JES_EtaIntercalibration_Stat243: 1.99889638e-05 + syst_JES_EtaIntercalibration_Stat244: 2.57452151e-05 + syst_JES_EtaIntercalibration_Stat245: 1.57808717e-05 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 - syst_JES_EtaIntercalibration_Stat27: 6.142821237021308e-18 - syst_JES_EtaIntercalibration_Stat28: 1.2194356655850075e-12 - syst_JES_EtaIntercalibration_Stat29: 5.016019198388622e-08 + syst_JES_EtaIntercalibration_Stat27: 6.14282124e-18 + syst_JES_EtaIntercalibration_Stat28: 1.21943567e-12 + syst_JES_EtaIntercalibration_Stat29: 5.01601920e-08 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 4.9857083972443624e-08 - syst_JES_EtaIntercalibration_Stat31: 1.1067804660365126e-18 + syst_JES_EtaIntercalibration_Stat30: 4.98570840e-08 + syst_JES_EtaIntercalibration_Stat31: 1.10678047e-18 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 - syst_JES_EtaIntercalibration_Stat34: 1.2669951657366337e-19 - syst_JES_EtaIntercalibration_Stat35: 9.824205961958925e-10 - syst_JES_EtaIntercalibration_Stat36: 9.83118626119231e-10 - syst_JES_EtaIntercalibration_Stat37: 1.527572288657725e-14 - syst_JES_EtaIntercalibration_Stat38: 1.3211048886727352e-17 + syst_JES_EtaIntercalibration_Stat34: 1.26699517e-19 + syst_JES_EtaIntercalibration_Stat35: 9.82420596e-10 + syst_JES_EtaIntercalibration_Stat36: 9.83118626e-10 + syst_JES_EtaIntercalibration_Stat37: 1.52757229e-14 + syst_JES_EtaIntercalibration_Stat38: 1.32110489e-17 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 syst_JES_EtaIntercalibration_Stat40: 0.0 @@ -29859,21 +29859,21 @@ bins: syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 syst_JES_EtaIntercalibration_Stat47: 0.0 - syst_JES_EtaIntercalibration_Stat48: 3.551570180919983e-18 - syst_JES_EtaIntercalibration_Stat49: 3.0271324302051935e-17 - syst_JES_EtaIntercalibration_Stat5: 3.1540645205829256e-18 - syst_JES_EtaIntercalibration_Stat50: 1.256334286724676e-12 - syst_JES_EtaIntercalibration_Stat51: 5.0005368651833405e-08 - syst_JES_EtaIntercalibration_Stat52: 4.997833006469694e-08 - syst_JES_EtaIntercalibration_Stat53: 1.546715781098777e-17 - syst_JES_EtaIntercalibration_Stat54: 1.0630461831453984e-17 + syst_JES_EtaIntercalibration_Stat48: 3.55157018e-18 + syst_JES_EtaIntercalibration_Stat49: 3.02713243e-17 + syst_JES_EtaIntercalibration_Stat5: 3.15406452e-18 + syst_JES_EtaIntercalibration_Stat50: 1.25633429e-12 + syst_JES_EtaIntercalibration_Stat51: 5.00053687e-08 + syst_JES_EtaIntercalibration_Stat52: 4.99783301e-08 + syst_JES_EtaIntercalibration_Stat53: 1.54671578e-17 + syst_JES_EtaIntercalibration_Stat54: 1.06304618e-17 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 7.037325255379349e-19 - syst_JES_EtaIntercalibration_Stat57: 9.685175255116488e-10 - syst_JES_EtaIntercalibration_Stat58: 9.791895359469482e-10 - syst_JES_EtaIntercalibration_Stat59: 3.183618695761162e-14 - syst_JES_EtaIntercalibration_Stat6: 6.822472773855532e-18 - syst_JES_EtaIntercalibration_Stat60: 1.318863571412904e-16 + syst_JES_EtaIntercalibration_Stat56: 7.03732526e-19 + syst_JES_EtaIntercalibration_Stat57: 9.68517526e-10 + syst_JES_EtaIntercalibration_Stat58: 9.79189536e-10 + syst_JES_EtaIntercalibration_Stat59: 3.18361870e-14 + syst_JES_EtaIntercalibration_Stat6: 6.82247277e-18 + syst_JES_EtaIntercalibration_Stat60: 1.31886357e-16 syst_JES_EtaIntercalibration_Stat61: 0.0 syst_JES_EtaIntercalibration_Stat62: 0.0 syst_JES_EtaIntercalibration_Stat63: 0.0 @@ -29883,21 +29883,21 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 8.724672257454718e-17 - syst_JES_EtaIntercalibration_Stat70: 3.1540645205829256e-18 - syst_JES_EtaIntercalibration_Stat71: 1.8686859019107518e-16 - syst_JES_EtaIntercalibration_Stat72: 3.368017400118355e-12 - syst_JES_EtaIntercalibration_Stat73: 3.984665402414612e-07 - syst_JES_EtaIntercalibration_Stat74: 1.0415349382041872e-07 - syst_JES_EtaIntercalibration_Stat75: 5.753574793558783e-16 - syst_JES_EtaIntercalibration_Stat76: 1.0630461831453984e-17 + syst_JES_EtaIntercalibration_Stat7: 8.72467226e-17 + syst_JES_EtaIntercalibration_Stat70: 3.15406452e-18 + syst_JES_EtaIntercalibration_Stat71: 1.86868590e-16 + syst_JES_EtaIntercalibration_Stat72: 3.36801740e-12 + syst_JES_EtaIntercalibration_Stat73: 3.98466540e-07 + syst_JES_EtaIntercalibration_Stat74: 1.04153494e-07 + syst_JES_EtaIntercalibration_Stat75: 5.75357479e-16 + syst_JES_EtaIntercalibration_Stat76: 1.06304618e-17 syst_JES_EtaIntercalibration_Stat77: 0.0 - syst_JES_EtaIntercalibration_Stat78: 1.8530199000550426e-16 - syst_JES_EtaIntercalibration_Stat79: 9.124584683254178e-10 - syst_JES_EtaIntercalibration_Stat8: 1.3750483937211083e-17 - syst_JES_EtaIntercalibration_Stat80: 3.4115781581928725e-07 - syst_JES_EtaIntercalibration_Stat81: 1.2135340352955702e-09 - syst_JES_EtaIntercalibration_Stat82: 1.5905190190626455e-16 + syst_JES_EtaIntercalibration_Stat78: 1.85301990e-16 + syst_JES_EtaIntercalibration_Stat79: 9.12458468e-10 + syst_JES_EtaIntercalibration_Stat8: 1.37504839e-17 + syst_JES_EtaIntercalibration_Stat80: 3.41157816e-07 + syst_JES_EtaIntercalibration_Stat81: 1.21353404e-09 + syst_JES_EtaIntercalibration_Stat82: 1.59051902e-16 syst_JES_EtaIntercalibration_Stat83: 0.0 syst_JES_EtaIntercalibration_Stat84: 0.0 syst_JES_EtaIntercalibration_Stat85: 0.0 @@ -29907,113 +29907,113 @@ bins: syst_JES_EtaIntercalibration_Stat89: 0.0 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 2.7097934884415084e-18 - syst_JES_EtaIntercalibration_Stat92: 1.0790924780206513e-13 - syst_JES_EtaIntercalibration_Stat93: 4.551962902693738e-12 - syst_JES_EtaIntercalibration_Stat94: 4.004008829598157e-07 - syst_JES_EtaIntercalibration_Stat95: 1.0731049936981935e-07 - syst_JES_EtaIntercalibration_Stat96: 1.2957936679888508e-15 - syst_JES_EtaIntercalibration_Stat97: 1.0630461831453984e-17 + syst_JES_EtaIntercalibration_Stat91: 2.70979349e-18 + syst_JES_EtaIntercalibration_Stat92: 1.07909248e-13 + syst_JES_EtaIntercalibration_Stat93: 4.55196290e-12 + syst_JES_EtaIntercalibration_Stat94: 4.00400883e-07 + syst_JES_EtaIntercalibration_Stat95: 1.07310499e-07 + syst_JES_EtaIntercalibration_Stat96: 1.29579367e-15 + syst_JES_EtaIntercalibration_Stat97: 1.06304618e-17 syst_JES_EtaIntercalibration_Stat98: 0.0 - syst_JES_EtaIntercalibration_Stat99: 6.331506002660814e-11 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0021361579412580898 - syst_JES_Flavour_Comp: 0.006145745906722795 - syst_JES_Flavour_Response: 0.001789657159905215 - syst_JES_Gjet_Generator: 0.008687313206624935 - syst_JES_Gjet_OOC: 0.007084949117671911 - syst_JES_Gjet_Purity: 0.0015498873346150037 - syst_JES_Gjet_Stat1: 1.6128026967983404e-05 - syst_JES_Gjet_Stat10: 0.00013411021549457 - syst_JES_Gjet_Stat11: 0.0001733147642297101 - syst_JES_Gjet_Stat12: 0.0005779062467217326 - syst_JES_Gjet_Stat13: 0.001794369736146929 - syst_JES_Gjet_Stat14: 0.0036938207861237663 - syst_JES_Gjet_Stat15: 0.001079328620022651 - syst_JES_Gjet_Stat2: 2.2513788552795817e-05 - syst_JES_Gjet_Stat3: 2.479783206250095e-05 - syst_JES_Gjet_Stat4: 2.0594227346516307e-05 - syst_JES_Gjet_Stat5: 2.320831316576024e-05 - syst_JES_Gjet_Stat6: 5.835748538105459e-05 - syst_JES_Gjet_Stat7: 7.706446311368165e-05 - syst_JES_Gjet_Stat8: 6.08468635181798e-05 - syst_JES_Gjet_Stat9: 9.651087140835483e-05 - syst_JES_Gjet_Veto: 0.00675948272799036 - syst_JES_Gjet_dPhi: 0.0006720158089658307 - syst_JES_LArESZee: 0.013280577321788388 - syst_JES_LArEsmear: 0.0010320636257033769 - syst_JES_LAr_JVT: 0.0013030223789329174 - syst_JES_MJB_Alpha: 6.580506420481633e-05 - syst_JES_MJB_Asym: 0.0007961694087943846 - syst_JES_MJB_Beta: 8.371083128843006e-05 - syst_JES_MJB_Fragmentation: 0.0011199419929174904 - syst_JES_MJB_Stat1: 4.5734801573856205e-06 - syst_JES_MJB_Stat10: 4.037932732228213e-05 - syst_JES_MJB_Stat11: 2.6505739001205002e-05 - syst_JES_MJB_Stat12: 1.8941589479238538e-05 - syst_JES_MJB_Stat13: 3.4366661795990604e-05 - syst_JES_MJB_Stat14: 4.186068650894297e-05 - syst_JES_MJB_Stat15: 2.8401603387837102e-05 - syst_JES_MJB_Stat16: 6.340423559983986e-07 + syst_JES_EtaIntercalibration_Stat99: 6.33150600e-11 + syst_JES_EtaIntercalibration_TotalStat_MJB: 2.13615794e-03 + syst_JES_Flavour_Comp: 6.14574591e-03 + syst_JES_Flavour_Response: 1.78965716e-03 + syst_JES_Gjet_Generator: 8.68731321e-03 + syst_JES_Gjet_OOC: 7.08494912e-03 + syst_JES_Gjet_Purity: 1.54988733e-03 + syst_JES_Gjet_Stat1: 1.61280270e-05 + syst_JES_Gjet_Stat10: 1.34110215e-04 + syst_JES_Gjet_Stat11: 1.73314764e-04 + syst_JES_Gjet_Stat12: 5.77906247e-04 + syst_JES_Gjet_Stat13: 1.79436974e-03 + syst_JES_Gjet_Stat14: 3.69382079e-03 + syst_JES_Gjet_Stat15: 1.07932862e-03 + syst_JES_Gjet_Stat2: 2.25137886e-05 + syst_JES_Gjet_Stat3: 2.47978321e-05 + syst_JES_Gjet_Stat4: 2.05942273e-05 + syst_JES_Gjet_Stat5: 2.32083132e-05 + syst_JES_Gjet_Stat6: 5.83574854e-05 + syst_JES_Gjet_Stat7: 7.70644631e-05 + syst_JES_Gjet_Stat8: 6.08468635e-05 + syst_JES_Gjet_Stat9: 9.65108714e-05 + syst_JES_Gjet_Veto: 6.75948273e-03 + syst_JES_Gjet_dPhi: 6.72015809e-04 + syst_JES_LArESZee: 1.32805773e-02 + syst_JES_LArEsmear: 1.03206363e-03 + syst_JES_LAr_JVT: 1.30302238e-03 + syst_JES_MJB_Alpha: 6.58050642e-05 + syst_JES_MJB_Asym: 7.96169409e-04 + syst_JES_MJB_Beta: 8.37108313e-05 + syst_JES_MJB_Fragmentation: 1.11994199e-03 + syst_JES_MJB_Stat1: 4.57348016e-06 + syst_JES_MJB_Stat10: 4.03793273e-05 + syst_JES_MJB_Stat11: 2.65057390e-05 + syst_JES_MJB_Stat12: 1.89415895e-05 + syst_JES_MJB_Stat13: 3.43666618e-05 + syst_JES_MJB_Stat14: 4.18606865e-05 + syst_JES_MJB_Stat15: 2.84016034e-05 + syst_JES_MJB_Stat16: 6.34042356e-07 syst_JES_MJB_Stat2: 0.0 - syst_JES_MJB_Stat3: 6.38607132750645e-05 - syst_JES_MJB_Stat4: 1.84376808465707e-05 - syst_JES_MJB_Stat5: 4.6410301388808067e-05 - syst_JES_MJB_Stat6: 6.634550926777185e-05 - syst_JES_MJB_Stat7: 5.618747725249817e-05 - syst_JES_MJB_Stat8: 6.269367013503038e-05 - syst_JES_MJB_Stat9: 5.442163609264242e-05 - syst_JES_MJB_Threshold: 0.0007243141376502325 - syst_JES_Pileup_MuOffset: 0.0015771242817229083 - syst_JES_Pileup_NPVOffset: 0.0016120750602872066 - syst_JES_Pileup_Pt_term: 0.001391688243645106 - syst_JES_Pileup_Rho_topology: 0.0025452324058914547 - syst_JES_PunchThrough_MC15: 0.0006623771357768927 - syst_JES_SingleParticle_HighPt: 1.461954062205786e-20 - syst_JES_Zjet_MC: 0.004080889759599002 - syst_JES_Zjet_MuScale: 0.00026009922625798025 - syst_JES_Zjet_MuSmearID: 6.061005918987375e-05 - syst_JES_Zjet_MuSmearMS: 0.0011417101252069197 - syst_JES_Zjet_OOC: 0.002064503027365182 - syst_JES_Zjet_Stat1: 0.00010234872092508045 - syst_JES_Zjet_Stat10: 0.00015248035939097206 - syst_JES_Zjet_Stat11: 0.00021177577765174184 - syst_JES_Zjet_Stat12: 0.0006654101592251204 - syst_JES_Zjet_Stat13: 0.0012458909211885284 - syst_JES_Zjet_Stat2: 7.20533135948653e-07 - syst_JES_Zjet_Stat3: 5.037058069945194e-05 - syst_JES_Zjet_Stat4: 5.331844521364065e-05 - syst_JES_Zjet_Stat5: 6.465995205689531e-05 - syst_JES_Zjet_Stat6: 7.595102171794662e-05 - syst_JES_Zjet_Stat7: 5.715663740984069e-05 - syst_JES_Zjet_Stat8: 6.87674943196275e-05 - syst_JES_Zjet_Stat9: 9.73389392792011e-05 - syst_JES_Zjet_Veto: 0.0004581298833300443 - syst_JES_Zjet_dPhi: 0.00038146767136940974 + syst_JES_MJB_Stat3: 6.38607133e-05 + syst_JES_MJB_Stat4: 1.84376808e-05 + syst_JES_MJB_Stat5: 4.64103014e-05 + syst_JES_MJB_Stat6: 6.63455093e-05 + syst_JES_MJB_Stat7: 5.61874773e-05 + syst_JES_MJB_Stat8: 6.26936701e-05 + syst_JES_MJB_Stat9: 5.44216361e-05 + syst_JES_MJB_Threshold: 7.24314138e-04 + syst_JES_Pileup_MuOffset: 1.57712428e-03 + syst_JES_Pileup_NPVOffset: 1.61207506e-03 + syst_JES_Pileup_Pt_term: 1.39168824e-03 + syst_JES_Pileup_Rho_topology: 2.54523241e-03 + syst_JES_PunchThrough_MC15: 6.62377136e-04 + syst_JES_SingleParticle_HighPt: 1.46195406e-20 + syst_JES_Zjet_MC: 4.08088976e-03 + syst_JES_Zjet_MuScale: 2.60099226e-04 + syst_JES_Zjet_MuSmearID: 6.06100592e-05 + syst_JES_Zjet_MuSmearMS: 1.14171013e-03 + syst_JES_Zjet_OOC: 2.06450303e-03 + syst_JES_Zjet_Stat1: 1.02348721e-04 + syst_JES_Zjet_Stat10: 1.52480359e-04 + syst_JES_Zjet_Stat11: 2.11775778e-04 + syst_JES_Zjet_Stat12: 6.65410159e-04 + syst_JES_Zjet_Stat13: 1.24589092e-03 + syst_JES_Zjet_Stat2: 7.20533136e-07 + syst_JES_Zjet_Stat3: 5.03705807e-05 + syst_JES_Zjet_Stat4: 5.33184452e-05 + syst_JES_Zjet_Stat5: 6.46599521e-05 + syst_JES_Zjet_Stat6: 7.59510217e-05 + syst_JES_Zjet_Stat7: 5.71566374e-05 + syst_JES_Zjet_Stat8: 6.87674943e-05 + syst_JES_Zjet_Stat9: 9.73389393e-05 + syst_JES_Zjet_Veto: 4.58129883e-04 + syst_JES_Zjet_dPhi: 3.81467671e-04 syst_PRW: 0.0 - syst_Unfolding_bias: 0.00039446 - syst_cleaning: 0.0022811109135682114 + syst_Unfolding_bias: 3.94460000e-04 + syst_cleaning: 2.28111091e-03 syst_lumi: 0.008072 -- stat: 0.0013506 +- stat: 1.35060000e-03 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.0015582948012170226 - syst_JER_NP1: 0.00018224030838428693 - syst_JER_NP2: 0.0010477790797682495 - syst_JER_NP3: 0.00010144430134315086 - syst_JER_NP4: 2.3081175771610944e-11 - syst_JER_NP5: 4.605363673660854e-06 - syst_JER_NP6: 6.830349679921227e-14 - syst_JER_NP7: 8.042189129832748e-17 - syst_JER_NP8: 0.00015326189187139772 - syst_JES_EtaIntercalibration_Modelling: 0.012271552581071394 + syst_JER_NP0: 1.55829480e-03 + syst_JER_NP1: 1.82240308e-04 + syst_JER_NP2: 1.04777908e-03 + syst_JER_NP3: 1.01444301e-04 + syst_JER_NP4: 2.30811758e-11 + syst_JER_NP5: 4.60536367e-06 + syst_JER_NP6: 6.83034968e-14 + syst_JER_NP7: 8.04218913e-17 + syst_JER_NP8: 1.53261892e-04 + syst_JES_EtaIntercalibration_Modelling: 1.22715526e-02 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 1.4382104113098333e-11 - syst_JES_EtaIntercalibration_Stat101: 1.4646507961861593e-07 - syst_JES_EtaIntercalibration_Stat102: 5.056440691583359e-11 - syst_JES_EtaIntercalibration_Stat103: 7.45669316788615e-15 + syst_JES_EtaIntercalibration_Stat100: 1.43821041e-11 + syst_JES_EtaIntercalibration_Stat101: 1.46465080e-07 + syst_JES_EtaIntercalibration_Stat102: 5.05644069e-11 + syst_JES_EtaIntercalibration_Stat103: 7.45669317e-15 syst_JES_EtaIntercalibration_Stat104: 0.0 syst_JES_EtaIntercalibration_Stat105: 0.0 syst_JES_EtaIntercalibration_Stat106: 0.0 @@ -30022,170 +30022,170 @@ bins: syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 syst_JES_EtaIntercalibration_Stat110: 0.0 - syst_JES_EtaIntercalibration_Stat111: 2.697669132788526e-19 - syst_JES_EtaIntercalibration_Stat112: 1.748013981637447e-13 - syst_JES_EtaIntercalibration_Stat113: 5.986750934354961e-07 - syst_JES_EtaIntercalibration_Stat114: 5.753258728755382e-07 - syst_JES_EtaIntercalibration_Stat115: 1.1476860230481155e-06 - syst_JES_EtaIntercalibration_Stat116: 1.5017058997943678e-10 + syst_JES_EtaIntercalibration_Stat111: 2.69766913e-19 + syst_JES_EtaIntercalibration_Stat112: 1.74801398e-13 + syst_JES_EtaIntercalibration_Stat113: 5.98675093e-07 + syst_JES_EtaIntercalibration_Stat114: 5.75325873e-07 + syst_JES_EtaIntercalibration_Stat115: 1.14768602e-06 + syst_JES_EtaIntercalibration_Stat116: 1.50170590e-10 syst_JES_EtaIntercalibration_Stat117: 0.0 syst_JES_EtaIntercalibration_Stat118: 0.0 - syst_JES_EtaIntercalibration_Stat119: 1.5025540280212123e-10 + syst_JES_EtaIntercalibration_Stat119: 1.50255403e-10 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 7.758152751802454e-07 - syst_JES_EtaIntercalibration_Stat121: 3.3913370151018613e-07 - syst_JES_EtaIntercalibration_Stat122: 7.42883314853563e-07 - syst_JES_EtaIntercalibration_Stat123: 1.9845583009009841e-10 + syst_JES_EtaIntercalibration_Stat120: 7.75815275e-07 + syst_JES_EtaIntercalibration_Stat121: 3.39133702e-07 + syst_JES_EtaIntercalibration_Stat122: 7.42883315e-07 + syst_JES_EtaIntercalibration_Stat123: 1.98455830e-10 syst_JES_EtaIntercalibration_Stat124: 0.0 syst_JES_EtaIntercalibration_Stat125: 0.0 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 syst_JES_EtaIntercalibration_Stat128: 0.0 syst_JES_EtaIntercalibration_Stat129: 0.0 - syst_JES_EtaIntercalibration_Stat13: 1.5060181922384342e-10 + syst_JES_EtaIntercalibration_Stat13: 1.50601819e-10 syst_JES_EtaIntercalibration_Stat130: 0.0 - syst_JES_EtaIntercalibration_Stat131: 1.901054452139654e-12 - syst_JES_EtaIntercalibration_Stat132: 2.842881031401068e-07 - syst_JES_EtaIntercalibration_Stat133: 4.678496633535178e-07 - syst_JES_EtaIntercalibration_Stat134: 8.864747937758862e-07 - syst_JES_EtaIntercalibration_Stat135: 1.5014487260226373e-08 + syst_JES_EtaIntercalibration_Stat131: 1.90105445e-12 + syst_JES_EtaIntercalibration_Stat132: 2.84288103e-07 + syst_JES_EtaIntercalibration_Stat133: 4.67849663e-07 + syst_JES_EtaIntercalibration_Stat134: 8.86474794e-07 + syst_JES_EtaIntercalibration_Stat135: 1.50144873e-08 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 - syst_JES_EtaIntercalibration_Stat138: 1.400846118487234e-10 - syst_JES_EtaIntercalibration_Stat139: 6.212129485933144e-07 - syst_JES_EtaIntercalibration_Stat14: 6.067557004264567e-18 - syst_JES_EtaIntercalibration_Stat140: 5.740831917718894e-08 - syst_JES_EtaIntercalibration_Stat141: 7.815712171645013e-07 - syst_JES_EtaIntercalibration_Stat142: 7.005054007236852e-08 + syst_JES_EtaIntercalibration_Stat138: 1.40084612e-10 + syst_JES_EtaIntercalibration_Stat139: 6.21212949e-07 + syst_JES_EtaIntercalibration_Stat14: 6.06755700e-18 + syst_JES_EtaIntercalibration_Stat140: 5.74083192e-08 + syst_JES_EtaIntercalibration_Stat141: 7.81571217e-07 + syst_JES_EtaIntercalibration_Stat142: 7.00505401e-08 syst_JES_EtaIntercalibration_Stat143: 0.0 syst_JES_EtaIntercalibration_Stat144: 0.0 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 syst_JES_EtaIntercalibration_Stat147: 0.0 syst_JES_EtaIntercalibration_Stat148: 0.0 - syst_JES_EtaIntercalibration_Stat149: 3.7051414297837537e-09 - syst_JES_EtaIntercalibration_Stat15: 5.746902673760449e-18 - syst_JES_EtaIntercalibration_Stat150: 2.878668442179474e-07 - syst_JES_EtaIntercalibration_Stat151: 5.948499033369678e-07 - syst_JES_EtaIntercalibration_Stat152: 3.5023447859969475e-07 - syst_JES_EtaIntercalibration_Stat153: 1.7471638229713892e-08 + syst_JES_EtaIntercalibration_Stat149: 3.70514143e-09 + syst_JES_EtaIntercalibration_Stat15: 5.74690267e-18 + syst_JES_EtaIntercalibration_Stat150: 2.87866844e-07 + syst_JES_EtaIntercalibration_Stat151: 5.94849903e-07 + syst_JES_EtaIntercalibration_Stat152: 3.50234479e-07 + syst_JES_EtaIntercalibration_Stat153: 1.74716382e-08 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 1.208971461874238e-11 - syst_JES_EtaIntercalibration_Stat157: 8.654769364344725e-07 - syst_JES_EtaIntercalibration_Stat158: 3.1528403067710236e-06 - syst_JES_EtaIntercalibration_Stat159: 6.856460602964186e-07 + syst_JES_EtaIntercalibration_Stat156: 1.20897146e-11 + syst_JES_EtaIntercalibration_Stat157: 8.65476936e-07 + syst_JES_EtaIntercalibration_Stat158: 3.15284031e-06 + syst_JES_EtaIntercalibration_Stat159: 6.85646060e-07 syst_JES_EtaIntercalibration_Stat16: 0.0 - syst_JES_EtaIntercalibration_Stat160: 5.5540936506328375e-11 + syst_JES_EtaIntercalibration_Stat160: 5.55409365e-11 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 - syst_JES_EtaIntercalibration_Stat167: 1.1103418187261072e-06 - syst_JES_EtaIntercalibration_Stat168: 2.12151641697631e-06 - syst_JES_EtaIntercalibration_Stat169: 4.397804737309287e-06 + syst_JES_EtaIntercalibration_Stat167: 1.11034182e-06 + syst_JES_EtaIntercalibration_Stat168: 2.12151642e-06 + syst_JES_EtaIntercalibration_Stat169: 4.39780474e-06 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 3.6718752702127563e-06 - syst_JES_EtaIntercalibration_Stat171: 4.380950867962342e-07 + syst_JES_EtaIntercalibration_Stat170: 3.67187527e-06 + syst_JES_EtaIntercalibration_Stat171: 4.38095087e-07 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 - syst_JES_EtaIntercalibration_Stat174: 1.9728078007764865e-11 - syst_JES_EtaIntercalibration_Stat175: 1.1673927391842043e-06 - syst_JES_EtaIntercalibration_Stat176: 3.6056195029425944e-06 - syst_JES_EtaIntercalibration_Stat177: 2.090386152723941e-06 - syst_JES_EtaIntercalibration_Stat178: 4.4099554136068094e-07 + syst_JES_EtaIntercalibration_Stat174: 1.97280780e-11 + syst_JES_EtaIntercalibration_Stat175: 1.16739274e-06 + syst_JES_EtaIntercalibration_Stat176: 3.60561950e-06 + syst_JES_EtaIntercalibration_Stat177: 2.09038615e-06 + syst_JES_EtaIntercalibration_Stat178: 4.40995541e-07 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 syst_JES_EtaIntercalibration_Stat180: 0.0 syst_JES_EtaIntercalibration_Stat181: 0.0 syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 - syst_JES_EtaIntercalibration_Stat184: 8.129758668004849e-07 - syst_JES_EtaIntercalibration_Stat185: 8.011869881619399e-06 - syst_JES_EtaIntercalibration_Stat186: 3.130469094241309e-05 - syst_JES_EtaIntercalibration_Stat187: 2.0002801678764903e-05 - syst_JES_EtaIntercalibration_Stat188: 7.51548539683233e-08 + syst_JES_EtaIntercalibration_Stat184: 8.12975867e-07 + syst_JES_EtaIntercalibration_Stat185: 8.01186988e-06 + syst_JES_EtaIntercalibration_Stat186: 3.13046909e-05 + syst_JES_EtaIntercalibration_Stat187: 2.00028017e-05 + syst_JES_EtaIntercalibration_Stat188: 7.51548540e-08 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 - syst_JES_EtaIntercalibration_Stat191: 1.1460455782821205e-06 - syst_JES_EtaIntercalibration_Stat192: 2.832535436671534e-05 - syst_JES_EtaIntercalibration_Stat193: 3.59864415023214e-05 - syst_JES_EtaIntercalibration_Stat194: 1.0228573605346936e-05 - syst_JES_EtaIntercalibration_Stat195: 7.254882700636861e-07 - syst_JES_EtaIntercalibration_Stat196: 1.994148140811008e-10 + syst_JES_EtaIntercalibration_Stat191: 1.14604558e-06 + syst_JES_EtaIntercalibration_Stat192: 2.83253544e-05 + syst_JES_EtaIntercalibration_Stat193: 3.59864415e-05 + syst_JES_EtaIntercalibration_Stat194: 1.02285736e-05 + syst_JES_EtaIntercalibration_Stat195: 7.25488270e-07 + syst_JES_EtaIntercalibration_Stat196: 1.99414814e-10 syst_JES_EtaIntercalibration_Stat197: 0.0 syst_JES_EtaIntercalibration_Stat198: 0.0 - syst_JES_EtaIntercalibration_Stat199: 7.665484785713165e-07 + syst_JES_EtaIntercalibration_Stat199: 7.66548479e-07 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 1.842614107728474e-05 - syst_JES_EtaIntercalibration_Stat201: 6.0428949188282265e-05 - syst_JES_EtaIntercalibration_Stat202: 4.011547707244674e-05 - syst_JES_EtaIntercalibration_Stat203: 8.03129608157986e-07 + syst_JES_EtaIntercalibration_Stat200: 1.84261411e-05 + syst_JES_EtaIntercalibration_Stat201: 6.04289492e-05 + syst_JES_EtaIntercalibration_Stat202: 4.01154771e-05 + syst_JES_EtaIntercalibration_Stat203: 8.03129608e-07 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 - syst_JES_EtaIntercalibration_Stat206: 6.09811731192505e-07 - syst_JES_EtaIntercalibration_Stat207: 4.598083160404996e-05 - syst_JES_EtaIntercalibration_Stat208: 8.591065475248107e-05 - syst_JES_EtaIntercalibration_Stat209: 2.009060974684442e-05 + syst_JES_EtaIntercalibration_Stat206: 6.09811731e-07 + syst_JES_EtaIntercalibration_Stat207: 4.59808316e-05 + syst_JES_EtaIntercalibration_Stat208: 8.59106548e-05 + syst_JES_EtaIntercalibration_Stat209: 2.00906097e-05 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 1.2367016859372352e-06 - syst_JES_EtaIntercalibration_Stat211: 2.109316407630681e-10 - syst_JES_EtaIntercalibration_Stat212: 6.284349190648146e-07 - syst_JES_EtaIntercalibration_Stat213: 1.9452929727935586e-05 - syst_JES_EtaIntercalibration_Stat214: 5.5958645444649566e-05 - syst_JES_EtaIntercalibration_Stat215: 4.28747556844351e-05 - syst_JES_EtaIntercalibration_Stat216: 7.497255547865499e-07 + syst_JES_EtaIntercalibration_Stat210: 1.23670169e-06 + syst_JES_EtaIntercalibration_Stat211: 2.10931641e-10 + syst_JES_EtaIntercalibration_Stat212: 6.28434919e-07 + syst_JES_EtaIntercalibration_Stat213: 1.94529297e-05 + syst_JES_EtaIntercalibration_Stat214: 5.59586454e-05 + syst_JES_EtaIntercalibration_Stat215: 4.28747557e-05 + syst_JES_EtaIntercalibration_Stat216: 7.49725555e-07 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 - syst_JES_EtaIntercalibration_Stat219: 5.771253070174623e-07 + syst_JES_EtaIntercalibration_Stat219: 5.77125307e-07 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 5.952330887979935e-05 - syst_JES_EtaIntercalibration_Stat221: 6.818458623472023e-05 - syst_JES_EtaIntercalibration_Stat222: 1.9844724109949226e-05 - syst_JES_EtaIntercalibration_Stat223: 6.543687950995218e-07 - syst_JES_EtaIntercalibration_Stat224: 2.4314828644683063e-06 - syst_JES_EtaIntercalibration_Stat225: 5.360032719116554e-05 - syst_JES_EtaIntercalibration_Stat226: 0.0001624192414709538 - syst_JES_EtaIntercalibration_Stat227: 0.00011640641047639945 - syst_JES_EtaIntercalibration_Stat228: 2.2003114143229817e-06 + syst_JES_EtaIntercalibration_Stat220: 5.95233089e-05 + syst_JES_EtaIntercalibration_Stat221: 6.81845862e-05 + syst_JES_EtaIntercalibration_Stat222: 1.98447241e-05 + syst_JES_EtaIntercalibration_Stat223: 6.54368795e-07 + syst_JES_EtaIntercalibration_Stat224: 2.43148286e-06 + syst_JES_EtaIntercalibration_Stat225: 5.36003272e-05 + syst_JES_EtaIntercalibration_Stat226: 1.62419241e-04 + syst_JES_EtaIntercalibration_Stat227: 1.16406410e-04 + syst_JES_EtaIntercalibration_Stat228: 2.20031141e-06 syst_JES_EtaIntercalibration_Stat229: 0.0 syst_JES_EtaIntercalibration_Stat23: 0.0 syst_JES_EtaIntercalibration_Stat230: 0.0 - syst_JES_EtaIntercalibration_Stat231: 1.4280758908405393e-06 - syst_JES_EtaIntercalibration_Stat232: 0.00012701144859814803 - syst_JES_EtaIntercalibration_Stat233: 0.0001733563598487232 - syst_JES_EtaIntercalibration_Stat234: 4.9744964318009115e-05 - syst_JES_EtaIntercalibration_Stat235: 2.560082709601391e-06 - syst_JES_EtaIntercalibration_Stat236: 1.0300988144348094e-05 - syst_JES_EtaIntercalibration_Stat237: 2.686857039367744e-05 - syst_JES_EtaIntercalibration_Stat238: 1.851472719215706e-05 - syst_JES_EtaIntercalibration_Stat239: 5.85744882606754e-08 + syst_JES_EtaIntercalibration_Stat231: 1.42807589e-06 + syst_JES_EtaIntercalibration_Stat232: 1.27011449e-04 + syst_JES_EtaIntercalibration_Stat233: 1.73356360e-04 + syst_JES_EtaIntercalibration_Stat234: 4.97449643e-05 + syst_JES_EtaIntercalibration_Stat235: 2.56008271e-06 + syst_JES_EtaIntercalibration_Stat236: 1.03009881e-05 + syst_JES_EtaIntercalibration_Stat237: 2.68685704e-05 + syst_JES_EtaIntercalibration_Stat238: 1.85147272e-05 + syst_JES_EtaIntercalibration_Stat239: 5.85744883e-08 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 - syst_JES_EtaIntercalibration_Stat242: 4.3626188624150974e-08 - syst_JES_EtaIntercalibration_Stat243: 1.9485509359521498e-05 - syst_JES_EtaIntercalibration_Stat244: 2.732890914398158e-05 - syst_JES_EtaIntercalibration_Stat245: 1.192443218773959e-05 + syst_JES_EtaIntercalibration_Stat242: 4.36261886e-08 + syst_JES_EtaIntercalibration_Stat243: 1.94855094e-05 + syst_JES_EtaIntercalibration_Stat244: 2.73289091e-05 + syst_JES_EtaIntercalibration_Stat245: 1.19244322e-05 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 - syst_JES_EtaIntercalibration_Stat27: 1.3813870447850596e-18 - syst_JES_EtaIntercalibration_Stat28: 1.8187888924370165e-13 - syst_JES_EtaIntercalibration_Stat29: 2.856151792070497e-08 + syst_JES_EtaIntercalibration_Stat27: 1.38138704e-18 + syst_JES_EtaIntercalibration_Stat28: 1.81878889e-13 + syst_JES_EtaIntercalibration_Stat29: 2.85615179e-08 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 2.8535537302900143e-08 - syst_JES_EtaIntercalibration_Stat31: 2.545248661722465e-19 + syst_JES_EtaIntercalibration_Stat30: 2.85355373e-08 + syst_JES_EtaIntercalibration_Stat31: 2.54524866e-19 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 - syst_JES_EtaIntercalibration_Stat34: 3.156662596794279e-20 - syst_JES_EtaIntercalibration_Stat35: 1.5042883959511747e-10 - syst_JES_EtaIntercalibration_Stat36: 1.5051625472561228e-10 - syst_JES_EtaIntercalibration_Stat37: 2.29014683343121e-15 - syst_JES_EtaIntercalibration_Stat38: 2.3979638758746973e-18 + syst_JES_EtaIntercalibration_Stat34: 3.15666260e-20 + syst_JES_EtaIntercalibration_Stat35: 1.50428840e-10 + syst_JES_EtaIntercalibration_Stat36: 1.50516255e-10 + syst_JES_EtaIntercalibration_Stat37: 2.29014683e-15 + syst_JES_EtaIntercalibration_Stat38: 2.39796388e-18 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 syst_JES_EtaIntercalibration_Stat40: 0.0 @@ -30196,21 +30196,21 @@ bins: syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 syst_JES_EtaIntercalibration_Stat47: 0.0 - syst_JES_EtaIntercalibration_Stat48: 7.89988373332165e-19 - syst_JES_EtaIntercalibration_Stat49: 6.146137893018672e-18 - syst_JES_EtaIntercalibration_Stat5: 6.927337204871725e-19 - syst_JES_EtaIntercalibration_Stat50: 1.874344490081799e-13 - syst_JES_EtaIntercalibration_Stat51: 2.8353825644826603e-08 - syst_JES_EtaIntercalibration_Stat52: 2.8448935188086635e-08 - syst_JES_EtaIntercalibration_Stat53: 2.9175726910395907e-18 - syst_JES_EtaIntercalibration_Stat54: 1.932968701246867e-18 + syst_JES_EtaIntercalibration_Stat48: 7.89988373e-19 + syst_JES_EtaIntercalibration_Stat49: 6.14613789e-18 + syst_JES_EtaIntercalibration_Stat5: 6.92733720e-19 + syst_JES_EtaIntercalibration_Stat50: 1.87434449e-13 + syst_JES_EtaIntercalibration_Stat51: 2.83538256e-08 + syst_JES_EtaIntercalibration_Stat52: 2.84489352e-08 + syst_JES_EtaIntercalibration_Stat53: 2.91757269e-18 + syst_JES_EtaIntercalibration_Stat54: 1.93296870e-18 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 1.6394416938397046e-19 - syst_JES_EtaIntercalibration_Stat57: 1.48356396762636e-10 - syst_JES_EtaIntercalibration_Stat58: 1.4991832103343166e-10 - syst_JES_EtaIntercalibration_Stat59: 5.018093163742578e-15 - syst_JES_EtaIntercalibration_Stat6: 1.5341124363944124e-18 - syst_JES_EtaIntercalibration_Stat60: 2.4663290777996354e-17 + syst_JES_EtaIntercalibration_Stat56: 1.63944169e-19 + syst_JES_EtaIntercalibration_Stat57: 1.48356397e-10 + syst_JES_EtaIntercalibration_Stat58: 1.49918321e-10 + syst_JES_EtaIntercalibration_Stat59: 5.01809316e-15 + syst_JES_EtaIntercalibration_Stat6: 1.53411244e-18 + syst_JES_EtaIntercalibration_Stat60: 2.46632908e-17 syst_JES_EtaIntercalibration_Stat61: 0.0 syst_JES_EtaIntercalibration_Stat62: 0.0 syst_JES_EtaIntercalibration_Stat63: 0.0 @@ -30220,21 +30220,21 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 1.6398807883501775e-17 - syst_JES_EtaIntercalibration_Stat70: 6.927337204871725e-19 - syst_JES_EtaIntercalibration_Stat71: 3.481010305931311e-17 - syst_JES_EtaIntercalibration_Stat72: 4.882341703271085e-13 - syst_JES_EtaIntercalibration_Stat73: 1.9213712373789195e-07 - syst_JES_EtaIntercalibration_Stat74: 3.775175591942711e-08 - syst_JES_EtaIntercalibration_Stat75: 9.457725071072854e-17 - syst_JES_EtaIntercalibration_Stat76: 1.932968701246867e-18 + syst_JES_EtaIntercalibration_Stat7: 1.63988079e-17 + syst_JES_EtaIntercalibration_Stat70: 6.92733720e-19 + syst_JES_EtaIntercalibration_Stat71: 3.48101031e-17 + syst_JES_EtaIntercalibration_Stat72: 4.88234170e-13 + syst_JES_EtaIntercalibration_Stat73: 1.92137124e-07 + syst_JES_EtaIntercalibration_Stat74: 3.77517559e-08 + syst_JES_EtaIntercalibration_Stat75: 9.45772507e-17 + syst_JES_EtaIntercalibration_Stat76: 1.93296870e-18 syst_JES_EtaIntercalibration_Stat77: 0.0 - syst_JES_EtaIntercalibration_Stat78: 3.45788838454916e-17 - syst_JES_EtaIntercalibration_Stat79: 1.3987838318375387e-10 - syst_JES_EtaIntercalibration_Stat8: 2.593217862039362e-18 - syst_JES_EtaIntercalibration_Stat80: 8.630007958226352e-08 - syst_JES_EtaIntercalibration_Stat81: 1.9953451041663822e-10 - syst_JES_EtaIntercalibration_Stat82: 2.9023095544755385e-17 + syst_JES_EtaIntercalibration_Stat78: 3.45788838e-17 + syst_JES_EtaIntercalibration_Stat79: 1.39878383e-10 + syst_JES_EtaIntercalibration_Stat8: 2.59321786e-18 + syst_JES_EtaIntercalibration_Stat80: 8.63000796e-08 + syst_JES_EtaIntercalibration_Stat81: 1.99534510e-10 + syst_JES_EtaIntercalibration_Stat82: 2.90230955e-17 syst_JES_EtaIntercalibration_Stat83: 0.0 syst_JES_EtaIntercalibration_Stat84: 0.0 syst_JES_EtaIntercalibration_Stat85: 0.0 @@ -30244,113 +30244,113 @@ bins: syst_JES_EtaIntercalibration_Stat89: 0.0 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 5.947862473191525e-19 - syst_JES_EtaIntercalibration_Stat92: 1.561496661399889e-14 - syst_JES_EtaIntercalibration_Stat93: 6.627668608756777e-13 - syst_JES_EtaIntercalibration_Stat94: 1.9314874844095547e-07 - syst_JES_EtaIntercalibration_Stat95: 3.8821170770598867e-08 - syst_JES_EtaIntercalibration_Stat96: 2.245546926697369e-16 - syst_JES_EtaIntercalibration_Stat97: 1.932968701246867e-18 + syst_JES_EtaIntercalibration_Stat91: 5.94786247e-19 + syst_JES_EtaIntercalibration_Stat92: 1.56149666e-14 + syst_JES_EtaIntercalibration_Stat93: 6.62766861e-13 + syst_JES_EtaIntercalibration_Stat94: 1.93148748e-07 + syst_JES_EtaIntercalibration_Stat95: 3.88211708e-08 + syst_JES_EtaIntercalibration_Stat96: 2.24554693e-16 + syst_JES_EtaIntercalibration_Stat97: 1.93296870e-18 syst_JES_EtaIntercalibration_Stat98: 0.0 - syst_JES_EtaIntercalibration_Stat99: 1.0110836087225558e-11 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0014602219009451952 - syst_JES_Flavour_Comp: 0.004053193432344428 - syst_JES_Flavour_Response: 0.0008451121981725266 - syst_JES_Gjet_Generator: 0.005665818806668635 - syst_JES_Gjet_OOC: 0.00464457368872537 - syst_JES_Gjet_Purity: 0.0009434553659288817 - syst_JES_Gjet_Stat1: 9.980001086548036e-06 - syst_JES_Gjet_Stat10: 8.807436460173869e-05 - syst_JES_Gjet_Stat11: 0.00010570512511226689 - syst_JES_Gjet_Stat12: 0.00034265035750747437 - syst_JES_Gjet_Stat13: 0.0010839656636628303 - syst_JES_Gjet_Stat14: 0.0025468189472359435 - syst_JES_Gjet_Stat15: 0.0012957185303915351 - syst_JES_Gjet_Stat2: 1.480411323754314e-05 - syst_JES_Gjet_Stat3: 1.588727792921116e-05 - syst_JES_Gjet_Stat4: 1.565704846866101e-05 - syst_JES_Gjet_Stat5: 1.765193119746392e-05 - syst_JES_Gjet_Stat6: 3.900102653456701e-05 - syst_JES_Gjet_Stat7: 4.9416984934332047e-05 - syst_JES_Gjet_Stat8: 3.982889999736372e-05 - syst_JES_Gjet_Stat9: 6.215464805627976e-05 - syst_JES_Gjet_Veto: 0.004528063824638519 - syst_JES_Gjet_dPhi: 0.0004495624873140552 - syst_JES_LArESZee: 0.008695494695530555 - syst_JES_LArEsmear: 0.0006840500328923317 - syst_JES_LAr_JVT: 0.0008529248091127377 - syst_JES_MJB_Alpha: 4.343711086156629e-05 - syst_JES_MJB_Asym: 0.0006273805603459515 - syst_JES_MJB_Beta: 5.915207096966259e-05 - syst_JES_MJB_Fragmentation: 0.0006721666962145625 - syst_JES_MJB_Stat1: 2.992117770075236e-07 - syst_JES_MJB_Stat10: 5.024721584326837e-05 - syst_JES_MJB_Stat11: 3.972752203133238e-05 - syst_JES_MJB_Stat12: 3.2135830014953716e-05 - syst_JES_MJB_Stat13: 1.8077402329980932e-05 - syst_JES_MJB_Stat14: 3.765834795566582e-05 - syst_JES_MJB_Stat15: 3.40224440627066e-05 - syst_JES_MJB_Stat16: 3.2366938872868407e-06 + syst_JES_EtaIntercalibration_Stat99: 1.01108361e-11 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.46022190e-03 + syst_JES_Flavour_Comp: 4.05319343e-03 + syst_JES_Flavour_Response: 8.45112198e-04 + syst_JES_Gjet_Generator: 5.66581881e-03 + syst_JES_Gjet_OOC: 4.64457369e-03 + syst_JES_Gjet_Purity: 9.43455366e-04 + syst_JES_Gjet_Stat1: 9.98000109e-06 + syst_JES_Gjet_Stat10: 8.80743646e-05 + syst_JES_Gjet_Stat11: 1.05705125e-04 + syst_JES_Gjet_Stat12: 3.42650358e-04 + syst_JES_Gjet_Stat13: 1.08396566e-03 + syst_JES_Gjet_Stat14: 2.54681895e-03 + syst_JES_Gjet_Stat15: 1.29571853e-03 + syst_JES_Gjet_Stat2: 1.48041132e-05 + syst_JES_Gjet_Stat3: 1.58872779e-05 + syst_JES_Gjet_Stat4: 1.56570485e-05 + syst_JES_Gjet_Stat5: 1.76519312e-05 + syst_JES_Gjet_Stat6: 3.90010265e-05 + syst_JES_Gjet_Stat7: 4.94169849e-05 + syst_JES_Gjet_Stat8: 3.98289000e-05 + syst_JES_Gjet_Stat9: 6.21546481e-05 + syst_JES_Gjet_Veto: 4.52806382e-03 + syst_JES_Gjet_dPhi: 4.49562487e-04 + syst_JES_LArESZee: 8.69549470e-03 + syst_JES_LArEsmear: 6.84050033e-04 + syst_JES_LAr_JVT: 8.52924809e-04 + syst_JES_MJB_Alpha: 4.34371109e-05 + syst_JES_MJB_Asym: 6.27380560e-04 + syst_JES_MJB_Beta: 5.91520710e-05 + syst_JES_MJB_Fragmentation: 6.72166696e-04 + syst_JES_MJB_Stat1: 2.99211777e-07 + syst_JES_MJB_Stat10: 5.02472158e-05 + syst_JES_MJB_Stat11: 3.97275220e-05 + syst_JES_MJB_Stat12: 3.21358300e-05 + syst_JES_MJB_Stat13: 1.80774023e-05 + syst_JES_MJB_Stat14: 3.76583480e-05 + syst_JES_MJB_Stat15: 3.40224441e-05 + syst_JES_MJB_Stat16: 3.23669389e-06 syst_JES_MJB_Stat2: 0.0 - syst_JES_MJB_Stat3: 2.690740929558251e-05 - syst_JES_MJB_Stat4: 7.231312121600062e-06 - syst_JES_MJB_Stat5: 2.2698525833190136e-05 - syst_JES_MJB_Stat6: 3.7498262293071654e-05 - syst_JES_MJB_Stat7: 3.9257741593219546e-05 - syst_JES_MJB_Stat8: 4.814429015989331e-05 - syst_JES_MJB_Stat9: 4.560078508096105e-05 - syst_JES_MJB_Threshold: 0.0005028114557167529 - syst_JES_Pileup_MuOffset: 0.0010514030816009625 - syst_JES_Pileup_NPVOffset: 0.0010764011241168414 - syst_JES_Pileup_Pt_term: 0.0008500030117593703 - syst_JES_Pileup_Rho_topology: 0.0016285812076774066 - syst_JES_PunchThrough_MC15: 0.0005439761276931185 - syst_JES_SingleParticle_HighPt: 2.0983376158283016e-17 - syst_JES_Zjet_MC: 0.0024854929088613392 - syst_JES_Zjet_MuScale: 0.0001689436222531055 - syst_JES_Zjet_MuSmearID: 3.6502742184663334e-05 - syst_JES_Zjet_MuSmearMS: 0.0006913037031580259 - syst_JES_Zjet_OOC: 0.001295520400263925 - syst_JES_Zjet_Stat1: 7.350232836448108e-05 - syst_JES_Zjet_Stat10: 0.00010060423984604227 - syst_JES_Zjet_Stat11: 0.00013285007216783887 - syst_JES_Zjet_Stat12: 0.00041186229191320724 - syst_JES_Zjet_Stat13: 0.0007503839867028081 - syst_JES_Zjet_Stat2: 4.5613558017326383e-07 - syst_JES_Zjet_Stat3: 3.6553629241841365e-05 - syst_JES_Zjet_Stat4: 3.811948419115873e-05 - syst_JES_Zjet_Stat5: 4.525905102849595e-05 - syst_JES_Zjet_Stat6: 4.8029070363687035e-05 - syst_JES_Zjet_Stat7: 3.900679684362713e-05 - syst_JES_Zjet_Stat8: 4.908062423197162e-05 - syst_JES_Zjet_Stat9: 6.487269128839962e-05 - syst_JES_Zjet_Veto: 0.00028813505080083535 - syst_JES_Zjet_dPhi: 0.00024672713673205875 + syst_JES_MJB_Stat3: 2.69074093e-05 + syst_JES_MJB_Stat4: 7.23131212e-06 + syst_JES_MJB_Stat5: 2.26985258e-05 + syst_JES_MJB_Stat6: 3.74982623e-05 + syst_JES_MJB_Stat7: 3.92577416e-05 + syst_JES_MJB_Stat8: 4.81442902e-05 + syst_JES_MJB_Stat9: 4.56007851e-05 + syst_JES_MJB_Threshold: 5.02811456e-04 + syst_JES_Pileup_MuOffset: 1.05140308e-03 + syst_JES_Pileup_NPVOffset: 1.07640112e-03 + syst_JES_Pileup_Pt_term: 8.50003012e-04 + syst_JES_Pileup_Rho_topology: 1.62858121e-03 + syst_JES_PunchThrough_MC15: 5.43976128e-04 + syst_JES_SingleParticle_HighPt: 2.09833762e-17 + syst_JES_Zjet_MC: 2.48549291e-03 + syst_JES_Zjet_MuScale: 1.68943622e-04 + syst_JES_Zjet_MuSmearID: 3.65027422e-05 + syst_JES_Zjet_MuSmearMS: 6.91303703e-04 + syst_JES_Zjet_OOC: 1.29552040e-03 + syst_JES_Zjet_Stat1: 7.35023284e-05 + syst_JES_Zjet_Stat10: 1.00604240e-04 + syst_JES_Zjet_Stat11: 1.32850072e-04 + syst_JES_Zjet_Stat12: 4.11862292e-04 + syst_JES_Zjet_Stat13: 7.50383987e-04 + syst_JES_Zjet_Stat2: 4.56135580e-07 + syst_JES_Zjet_Stat3: 3.65536292e-05 + syst_JES_Zjet_Stat4: 3.81194842e-05 + syst_JES_Zjet_Stat5: 4.52590510e-05 + syst_JES_Zjet_Stat6: 4.80290704e-05 + syst_JES_Zjet_Stat7: 3.90067968e-05 + syst_JES_Zjet_Stat8: 4.90806242e-05 + syst_JES_Zjet_Stat9: 6.48726913e-05 + syst_JES_Zjet_Veto: 2.88135051e-04 + syst_JES_Zjet_dPhi: 2.46727137e-04 syst_PRW: 0.0 - syst_Unfolding_bias: 0.0002497 - syst_cleaning: 0.0015016880501622168 + syst_Unfolding_bias: 2.49700000e-04 + syst_cleaning: 1.50168805e-03 syst_lumi: 0.00511 -- stat: 0.00097057 +- stat: 9.70570000e-04 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.000982351946860187 - syst_JER_NP1: 0.0001380728021733462 - syst_JER_NP2: 0.000668049189805661 - syst_JER_NP3: 6.370441016915547e-05 - syst_JER_NP4: 3.6873152116411205e-12 - syst_JER_NP5: 9.263003962909386e-07 - syst_JER_NP6: 1.2818835623799847e-14 - syst_JER_NP7: 2.0055450007416937e-17 - syst_JER_NP8: 8.939752177773163e-05 - syst_JES_EtaIntercalibration_Modelling: 0.008044491453783763 + syst_JER_NP0: 9.82351947e-04 + syst_JER_NP1: 1.38072802e-04 + syst_JER_NP2: 6.68049190e-04 + syst_JER_NP3: 6.37044102e-05 + syst_JER_NP4: 3.68731521e-12 + syst_JER_NP5: 9.26300396e-07 + syst_JER_NP6: 1.28188356e-14 + syst_JER_NP7: 2.00554500e-17 + syst_JER_NP8: 8.93975218e-05 + syst_JES_EtaIntercalibration_Modelling: 8.04449145e-03 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 2.162347894003183e-12 - syst_JES_EtaIntercalibration_Stat101: 3.993953747394053e-08 - syst_JES_EtaIntercalibration_Stat102: 7.75965235497055e-12 - syst_JES_EtaIntercalibration_Stat103: 1.3074477274445811e-15 + syst_JES_EtaIntercalibration_Stat100: 2.16234789e-12 + syst_JES_EtaIntercalibration_Stat101: 3.99395375e-08 + syst_JES_EtaIntercalibration_Stat102: 7.75965235e-12 + syst_JES_EtaIntercalibration_Stat103: 1.30744773e-15 syst_JES_EtaIntercalibration_Stat104: 0.0 syst_JES_EtaIntercalibration_Stat105: 0.0 syst_JES_EtaIntercalibration_Stat106: 0.0 @@ -30359,170 +30359,170 @@ bins: syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 syst_JES_EtaIntercalibration_Stat110: 0.0 - syst_JES_EtaIntercalibration_Stat111: 6.580927043357949e-20 - syst_JES_EtaIntercalibration_Stat112: 2.757255648226149e-14 - syst_JES_EtaIntercalibration_Stat113: 3.2918591415034755e-07 - syst_JES_EtaIntercalibration_Stat114: 1.626582807606179e-07 - syst_JES_EtaIntercalibration_Stat115: 4.1734629505963024e-07 - syst_JES_EtaIntercalibration_Stat116: 2.307121315480798e-11 + syst_JES_EtaIntercalibration_Stat111: 6.58092704e-20 + syst_JES_EtaIntercalibration_Stat112: 2.75725565e-14 + syst_JES_EtaIntercalibration_Stat113: 3.29185914e-07 + syst_JES_EtaIntercalibration_Stat114: 1.62658281e-07 + syst_JES_EtaIntercalibration_Stat115: 4.17346295e-07 + syst_JES_EtaIntercalibration_Stat116: 2.30712132e-11 syst_JES_EtaIntercalibration_Stat117: 0.0 syst_JES_EtaIntercalibration_Stat118: 0.0 - syst_JES_EtaIntercalibration_Stat119: 2.306225538728136e-11 + syst_JES_EtaIntercalibration_Stat119: 2.30622554e-11 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 4.420696450390398e-07 - syst_JES_EtaIntercalibration_Stat121: 4.846361418631508e-07 - syst_JES_EtaIntercalibration_Stat122: 4.702528138643684e-07 - syst_JES_EtaIntercalibration_Stat123: 3.1781122397265956e-11 + syst_JES_EtaIntercalibration_Stat120: 4.42069645e-07 + syst_JES_EtaIntercalibration_Stat121: 4.84636142e-07 + syst_JES_EtaIntercalibration_Stat122: 4.70252814e-07 + syst_JES_EtaIntercalibration_Stat123: 3.17811224e-11 syst_JES_EtaIntercalibration_Stat124: 0.0 syst_JES_EtaIntercalibration_Stat125: 0.0 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 syst_JES_EtaIntercalibration_Stat128: 0.0 syst_JES_EtaIntercalibration_Stat129: 0.0 - syst_JES_EtaIntercalibration_Stat13: 2.3105558103934882e-11 + syst_JES_EtaIntercalibration_Stat13: 2.31055581e-11 syst_JES_EtaIntercalibration_Stat130: 0.0 - syst_JES_EtaIntercalibration_Stat131: 2.8079124683650664e-13 - syst_JES_EtaIntercalibration_Stat132: 1.3702328535875755e-07 - syst_JES_EtaIntercalibration_Stat133: 3.0063620053978864e-07 - syst_JES_EtaIntercalibration_Stat134: 5.85732675800147e-07 - syst_JES_EtaIntercalibration_Stat135: 3.0620625158869632e-09 + syst_JES_EtaIntercalibration_Stat131: 2.80791247e-13 + syst_JES_EtaIntercalibration_Stat132: 1.37023285e-07 + syst_JES_EtaIntercalibration_Stat133: 3.00636201e-07 + syst_JES_EtaIntercalibration_Stat134: 5.85732676e-07 + syst_JES_EtaIntercalibration_Stat135: 3.06206252e-09 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 - syst_JES_EtaIntercalibration_Stat138: 2.1519352585569926e-11 - syst_JES_EtaIntercalibration_Stat139: 4.5910251913379876e-07 - syst_JES_EtaIntercalibration_Stat14: 1.326572828758376e-18 - syst_JES_EtaIntercalibration_Stat140: 1.037076066400146e-08 - syst_JES_EtaIntercalibration_Stat141: 2.189352294629624e-07 - syst_JES_EtaIntercalibration_Stat142: 1.9095518848372576e-08 + syst_JES_EtaIntercalibration_Stat138: 2.15193526e-11 + syst_JES_EtaIntercalibration_Stat139: 4.59102519e-07 + syst_JES_EtaIntercalibration_Stat14: 1.32657283e-18 + syst_JES_EtaIntercalibration_Stat140: 1.03707607e-08 + syst_JES_EtaIntercalibration_Stat141: 2.18935229e-07 + syst_JES_EtaIntercalibration_Stat142: 1.90955188e-08 syst_JES_EtaIntercalibration_Stat143: 0.0 syst_JES_EtaIntercalibration_Stat144: 0.0 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 syst_JES_EtaIntercalibration_Stat147: 0.0 syst_JES_EtaIntercalibration_Stat148: 0.0 - syst_JES_EtaIntercalibration_Stat149: 1.0581774821040184e-09 - syst_JES_EtaIntercalibration_Stat15: 1.2482318785077554e-18 - syst_JES_EtaIntercalibration_Stat150: 1.3830425698437486e-07 - syst_JES_EtaIntercalibration_Stat151: 6.43764300093598e-07 - syst_JES_EtaIntercalibration_Stat152: 4.5283654344034557e-07 - syst_JES_EtaIntercalibration_Stat153: 3.5735296581496283e-09 + syst_JES_EtaIntercalibration_Stat149: 1.05817748e-09 + syst_JES_EtaIntercalibration_Stat15: 1.24823188e-18 + syst_JES_EtaIntercalibration_Stat150: 1.38304257e-07 + syst_JES_EtaIntercalibration_Stat151: 6.43764300e-07 + syst_JES_EtaIntercalibration_Stat152: 4.52836543e-07 + syst_JES_EtaIntercalibration_Stat153: 3.57352966e-09 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 1.807395013246753e-12 - syst_JES_EtaIntercalibration_Stat157: 8.848638313322566e-07 - syst_JES_EtaIntercalibration_Stat158: 1.8545726407989522e-06 - syst_JES_EtaIntercalibration_Stat159: 4.5398205118704856e-07 + syst_JES_EtaIntercalibration_Stat156: 1.80739501e-12 + syst_JES_EtaIntercalibration_Stat157: 8.84863831e-07 + syst_JES_EtaIntercalibration_Stat158: 1.85457264e-06 + syst_JES_EtaIntercalibration_Stat159: 4.53982051e-07 syst_JES_EtaIntercalibration_Stat16: 0.0 - syst_JES_EtaIntercalibration_Stat160: 8.496086385507153e-12 + syst_JES_EtaIntercalibration_Stat160: 8.49608639e-12 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 - syst_JES_EtaIntercalibration_Stat167: 3.15045578726317e-07 - syst_JES_EtaIntercalibration_Stat168: 9.437318316131972e-07 - syst_JES_EtaIntercalibration_Stat169: 2.4123160551635846e-06 + syst_JES_EtaIntercalibration_Stat167: 3.15045579e-07 + syst_JES_EtaIntercalibration_Stat168: 9.43731832e-07 + syst_JES_EtaIntercalibration_Stat169: 2.41231606e-06 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 2.3763739183891077e-06 - syst_JES_EtaIntercalibration_Stat171: 2.6696033356427693e-07 + syst_JES_EtaIntercalibration_Stat170: 2.37637392e-06 + syst_JES_EtaIntercalibration_Stat171: 2.66960334e-07 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 - syst_JES_EtaIntercalibration_Stat174: 2.999915817612097e-12 - syst_JES_EtaIntercalibration_Stat175: 9.334755955567343e-07 - syst_JES_EtaIntercalibration_Stat176: 2.296411766212671e-06 - syst_JES_EtaIntercalibration_Stat177: 1.225428994270986e-06 - syst_JES_EtaIntercalibration_Stat178: 2.1579260297795194e-07 + syst_JES_EtaIntercalibration_Stat174: 2.99991582e-12 + syst_JES_EtaIntercalibration_Stat175: 9.33475596e-07 + syst_JES_EtaIntercalibration_Stat176: 2.29641177e-06 + syst_JES_EtaIntercalibration_Stat177: 1.22542899e-06 + syst_JES_EtaIntercalibration_Stat178: 2.15792603e-07 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 syst_JES_EtaIntercalibration_Stat180: 0.0 syst_JES_EtaIntercalibration_Stat181: 0.0 syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 - syst_JES_EtaIntercalibration_Stat184: 5.083515196200361e-07 - syst_JES_EtaIntercalibration_Stat185: 4.161342451661483e-06 - syst_JES_EtaIntercalibration_Stat186: 1.761429249217805e-05 - syst_JES_EtaIntercalibration_Stat187: 1.2673779665119638e-05 - syst_JES_EtaIntercalibration_Stat188: 6.420650434340745e-07 + syst_JES_EtaIntercalibration_Stat184: 5.08351520e-07 + syst_JES_EtaIntercalibration_Stat185: 4.16134245e-06 + syst_JES_EtaIntercalibration_Stat186: 1.76142925e-05 + syst_JES_EtaIntercalibration_Stat187: 1.26737797e-05 + syst_JES_EtaIntercalibration_Stat188: 6.42065043e-07 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 - syst_JES_EtaIntercalibration_Stat191: 6.851965518739861e-07 - syst_JES_EtaIntercalibration_Stat192: 1.608204278069176e-05 - syst_JES_EtaIntercalibration_Stat193: 2.0455538980921526e-05 - syst_JES_EtaIntercalibration_Stat194: 5.6805774988111905e-06 - syst_JES_EtaIntercalibration_Stat195: 2.7258226038207254e-07 - syst_JES_EtaIntercalibration_Stat196: 3.1941771083762716e-11 + syst_JES_EtaIntercalibration_Stat191: 6.85196552e-07 + syst_JES_EtaIntercalibration_Stat192: 1.60820428e-05 + syst_JES_EtaIntercalibration_Stat193: 2.04555390e-05 + syst_JES_EtaIntercalibration_Stat194: 5.68057750e-06 + syst_JES_EtaIntercalibration_Stat195: 2.72582260e-07 + syst_JES_EtaIntercalibration_Stat196: 3.19417711e-11 syst_JES_EtaIntercalibration_Stat197: 0.0 syst_JES_EtaIntercalibration_Stat198: 0.0 - syst_JES_EtaIntercalibration_Stat199: 2.0327590628256956e-07 + syst_JES_EtaIntercalibration_Stat199: 2.03275906e-07 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 1.0584870712483926e-05 - syst_JES_EtaIntercalibration_Stat201: 3.594109473499659e-05 - syst_JES_EtaIntercalibration_Stat202: 2.6101089536645784e-05 - syst_JES_EtaIntercalibration_Stat203: 3.643022920597673e-07 + syst_JES_EtaIntercalibration_Stat200: 1.05848707e-05 + syst_JES_EtaIntercalibration_Stat201: 3.59410947e-05 + syst_JES_EtaIntercalibration_Stat202: 2.61010895e-05 + syst_JES_EtaIntercalibration_Stat203: 3.64302292e-07 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 - syst_JES_EtaIntercalibration_Stat206: 5.388689335079543e-07 - syst_JES_EtaIntercalibration_Stat207: 2.8189336192964886e-05 - syst_JES_EtaIntercalibration_Stat208: 5.091167916107266e-05 - syst_JES_EtaIntercalibration_Stat209: 1.1510387254562723e-05 + syst_JES_EtaIntercalibration_Stat206: 5.38868934e-07 + syst_JES_EtaIntercalibration_Stat207: 2.81893362e-05 + syst_JES_EtaIntercalibration_Stat208: 5.09116792e-05 + syst_JES_EtaIntercalibration_Stat209: 1.15103873e-05 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 7.357588378674088e-07 - syst_JES_EtaIntercalibration_Stat211: 3.371694318095133e-11 - syst_JES_EtaIntercalibration_Stat212: 3.855037062078651e-07 - syst_JES_EtaIntercalibration_Stat213: 1.195903921726156e-05 - syst_JES_EtaIntercalibration_Stat214: 3.448778744715294e-05 - syst_JES_EtaIntercalibration_Stat215: 2.6762522302653014e-05 - syst_JES_EtaIntercalibration_Stat216: 3.9813971165911096e-07 + syst_JES_EtaIntercalibration_Stat210: 7.35758838e-07 + syst_JES_EtaIntercalibration_Stat211: 3.37169432e-11 + syst_JES_EtaIntercalibration_Stat212: 3.85503706e-07 + syst_JES_EtaIntercalibration_Stat213: 1.19590392e-05 + syst_JES_EtaIntercalibration_Stat214: 3.44877874e-05 + syst_JES_EtaIntercalibration_Stat215: 2.67625223e-05 + syst_JES_EtaIntercalibration_Stat216: 3.98139712e-07 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 - syst_JES_EtaIntercalibration_Stat219: 4.6593336634651956e-07 + syst_JES_EtaIntercalibration_Stat219: 4.65933366e-07 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 3.681112196062489e-05 - syst_JES_EtaIntercalibration_Stat221: 4.4140574395900195e-05 - syst_JES_EtaIntercalibration_Stat222: 1.167881299619101e-05 - syst_JES_EtaIntercalibration_Stat223: 4.865330718460976e-07 - syst_JES_EtaIntercalibration_Stat224: 1.5372824069065254e-06 - syst_JES_EtaIntercalibration_Stat225: 3.722739852245924e-05 - syst_JES_EtaIntercalibration_Stat226: 0.00010696296976056715 - syst_JES_EtaIntercalibration_Stat227: 7.971943552233671e-05 - syst_JES_EtaIntercalibration_Stat228: 2.231384341613968e-06 + syst_JES_EtaIntercalibration_Stat220: 3.68111220e-05 + syst_JES_EtaIntercalibration_Stat221: 4.41405744e-05 + syst_JES_EtaIntercalibration_Stat222: 1.16788130e-05 + syst_JES_EtaIntercalibration_Stat223: 4.86533072e-07 + syst_JES_EtaIntercalibration_Stat224: 1.53728241e-06 + syst_JES_EtaIntercalibration_Stat225: 3.72273985e-05 + syst_JES_EtaIntercalibration_Stat226: 1.06962970e-04 + syst_JES_EtaIntercalibration_Stat227: 7.97194355e-05 + syst_JES_EtaIntercalibration_Stat228: 2.23138434e-06 syst_JES_EtaIntercalibration_Stat229: 0.0 syst_JES_EtaIntercalibration_Stat23: 0.0 syst_JES_EtaIntercalibration_Stat230: 0.0 - syst_JES_EtaIntercalibration_Stat231: 9.036109063087016e-07 - syst_JES_EtaIntercalibration_Stat232: 8.98154445237566e-05 - syst_JES_EtaIntercalibration_Stat233: 0.00011413287289383371 - syst_JES_EtaIntercalibration_Stat234: 3.6056648041658e-05 - syst_JES_EtaIntercalibration_Stat235: 1.7189074633324505e-06 - syst_JES_EtaIntercalibration_Stat236: 6.909953020824382e-06 - syst_JES_EtaIntercalibration_Stat237: 2.3257390223324714e-05 - syst_JES_EtaIntercalibration_Stat238: 1.4052441736225058e-05 - syst_JES_EtaIntercalibration_Stat239: 1.9831654167012897e-07 + syst_JES_EtaIntercalibration_Stat231: 9.03610906e-07 + syst_JES_EtaIntercalibration_Stat232: 8.98154445e-05 + syst_JES_EtaIntercalibration_Stat233: 1.14132873e-04 + syst_JES_EtaIntercalibration_Stat234: 3.60566480e-05 + syst_JES_EtaIntercalibration_Stat235: 1.71890746e-06 + syst_JES_EtaIntercalibration_Stat236: 6.90995302e-06 + syst_JES_EtaIntercalibration_Stat237: 2.32573902e-05 + syst_JES_EtaIntercalibration_Stat238: 1.40524417e-05 + syst_JES_EtaIntercalibration_Stat239: 1.98316542e-07 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 - syst_JES_EtaIntercalibration_Stat242: 6.407720697307273e-08 - syst_JES_EtaIntercalibration_Stat243: 1.4451009203512397e-05 - syst_JES_EtaIntercalibration_Stat244: 2.1547617037621585e-05 - syst_JES_EtaIntercalibration_Stat245: 7.394737368561509e-06 + syst_JES_EtaIntercalibration_Stat242: 6.40772070e-08 + syst_JES_EtaIntercalibration_Stat243: 1.44510092e-05 + syst_JES_EtaIntercalibration_Stat244: 2.15476170e-05 + syst_JES_EtaIntercalibration_Stat245: 7.39473737e-06 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 - syst_JES_EtaIntercalibration_Stat27: 3.3339585885250586e-19 - syst_JES_EtaIntercalibration_Stat28: 2.8702834587968276e-14 - syst_JES_EtaIntercalibration_Stat29: 1.0161942107457533e-08 + syst_JES_EtaIntercalibration_Stat27: 3.33395859e-19 + syst_JES_EtaIntercalibration_Stat28: 2.87028346e-14 + syst_JES_EtaIntercalibration_Stat29: 1.01619421e-08 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 1.016800431069321e-08 - syst_JES_EtaIntercalibration_Stat31: 6.265693796380413e-20 + syst_JES_EtaIntercalibration_Stat30: 1.01680043e-08 + syst_JES_EtaIntercalibration_Stat31: 6.26569380e-20 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 - syst_JES_EtaIntercalibration_Stat34: 8.385723984844719e-21 - syst_JES_EtaIntercalibration_Stat35: 2.3088277367921456e-11 - syst_JES_EtaIntercalibration_Stat36: 2.310573326391432e-11 - syst_JES_EtaIntercalibration_Stat37: 3.6304748147177667e-16 - syst_JES_EtaIntercalibration_Stat38: 4.587706507613582e-19 + syst_JES_EtaIntercalibration_Stat34: 8.38572398e-21 + syst_JES_EtaIntercalibration_Stat35: 2.30882774e-11 + syst_JES_EtaIntercalibration_Stat36: 2.31057333e-11 + syst_JES_EtaIntercalibration_Stat37: 3.63047481e-16 + syst_JES_EtaIntercalibration_Stat38: 4.58770651e-19 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 syst_JES_EtaIntercalibration_Stat40: 0.0 @@ -30533,21 +30533,21 @@ bins: syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 syst_JES_EtaIntercalibration_Stat47: 0.0 - syst_JES_EtaIntercalibration_Stat48: 1.8862033294425074e-19 - syst_JES_EtaIntercalibration_Stat49: 1.3459053412108891e-18 - syst_JES_EtaIntercalibration_Stat5: 1.6341899369412357e-19 - syst_JES_EtaIntercalibration_Stat50: 2.958658398666531e-14 - syst_JES_EtaIntercalibration_Stat51: 1.0075362575454169e-08 - syst_JES_EtaIntercalibration_Stat52: 1.0119506964782272e-08 - syst_JES_EtaIntercalibration_Stat53: 5.873011727384851e-19 - syst_JES_EtaIntercalibration_Stat54: 3.6970624487557687e-19 + syst_JES_EtaIntercalibration_Stat48: 1.88620333e-19 + syst_JES_EtaIntercalibration_Stat49: 1.34590534e-18 + syst_JES_EtaIntercalibration_Stat5: 1.63418994e-19 + syst_JES_EtaIntercalibration_Stat50: 2.95865840e-14 + syst_JES_EtaIntercalibration_Stat51: 1.00753626e-08 + syst_JES_EtaIntercalibration_Stat52: 1.01195070e-08 + syst_JES_EtaIntercalibration_Stat53: 5.87301173e-19 + syst_JES_EtaIntercalibration_Stat54: 3.69706245e-19 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 4.087339324059112e-20 - syst_JES_EtaIntercalibration_Stat57: 2.276881003326438e-11 - syst_JES_EtaIntercalibration_Stat58: 2.3011805434548602e-11 - syst_JES_EtaIntercalibration_Stat59: 8.459668255906966e-16 - syst_JES_EtaIntercalibration_Stat6: 3.702180583115848e-19 - syst_JES_EtaIntercalibration_Stat60: 4.977248537093561e-18 + syst_JES_EtaIntercalibration_Stat56: 4.08733932e-20 + syst_JES_EtaIntercalibration_Stat57: 2.27688100e-11 + syst_JES_EtaIntercalibration_Stat58: 2.30118054e-11 + syst_JES_EtaIntercalibration_Stat59: 8.45966826e-16 + syst_JES_EtaIntercalibration_Stat6: 3.70218058e-19 + syst_JES_EtaIntercalibration_Stat60: 4.97724854e-18 syst_JES_EtaIntercalibration_Stat61: 0.0 syst_JES_EtaIntercalibration_Stat62: 0.0 syst_JES_EtaIntercalibration_Stat63: 0.0 @@ -30557,21 +30557,21 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 3.324150530586724e-18 - syst_JES_EtaIntercalibration_Stat70: 1.6341899369412357e-19 - syst_JES_EtaIntercalibration_Stat71: 6.991753052704307e-18 - syst_JES_EtaIntercalibration_Stat72: 7.30478930223179e-14 - syst_JES_EtaIntercalibration_Stat73: 7.718434444238027e-08 - syst_JES_EtaIntercalibration_Stat74: 1.1682360549135604e-08 - syst_JES_EtaIntercalibration_Stat75: 1.6538362917773936e-17 - syst_JES_EtaIntercalibration_Stat76: 3.6970624487557687e-19 + syst_JES_EtaIntercalibration_Stat7: 3.32415053e-18 + syst_JES_EtaIntercalibration_Stat70: 1.63418994e-19 + syst_JES_EtaIntercalibration_Stat71: 6.99175305e-18 + syst_JES_EtaIntercalibration_Stat72: 7.30478930e-14 + syst_JES_EtaIntercalibration_Stat73: 7.71843444e-08 + syst_JES_EtaIntercalibration_Stat74: 1.16823605e-08 + syst_JES_EtaIntercalibration_Stat75: 1.65383629e-17 + syst_JES_EtaIntercalibration_Stat76: 3.69706245e-19 syst_JES_EtaIntercalibration_Stat77: 0.0 - syst_JES_EtaIntercalibration_Stat78: 6.926052122241068e-18 - syst_JES_EtaIntercalibration_Stat79: 2.148855350652716e-11 - syst_JES_EtaIntercalibration_Stat8: 5.22380091504261e-19 - syst_JES_EtaIntercalibration_Stat80: 1.6376639057102662e-08 - syst_JES_EtaIntercalibration_Stat81: 3.1952949514752156e-11 - syst_JES_EtaIntercalibration_Stat82: 5.704078102550841e-18 + syst_JES_EtaIntercalibration_Stat78: 6.92605212e-18 + syst_JES_EtaIntercalibration_Stat79: 2.14885535e-11 + syst_JES_EtaIntercalibration_Stat8: 5.22380092e-19 + syst_JES_EtaIntercalibration_Stat80: 1.63766391e-08 + syst_JES_EtaIntercalibration_Stat81: 3.19529495e-11 + syst_JES_EtaIntercalibration_Stat82: 5.70407810e-18 syst_JES_EtaIntercalibration_Stat83: 0.0 syst_JES_EtaIntercalibration_Stat84: 0.0 syst_JES_EtaIntercalibration_Stat85: 0.0 @@ -30581,113 +30581,113 @@ bins: syst_JES_EtaIntercalibration_Stat89: 0.0 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 1.4020951287270061e-19 - syst_JES_EtaIntercalibration_Stat92: 2.3694877513241123e-15 - syst_JES_EtaIntercalibration_Stat93: 9.990273545804439e-14 - syst_JES_EtaIntercalibration_Stat94: 7.757777611971098e-08 - syst_JES_EtaIntercalibration_Stat95: 1.1957111388207437e-08 - syst_JES_EtaIntercalibration_Stat96: 4.179389787995372e-17 - syst_JES_EtaIntercalibration_Stat97: 3.6970624487557687e-19 + syst_JES_EtaIntercalibration_Stat91: 1.40209513e-19 + syst_JES_EtaIntercalibration_Stat92: 2.36948775e-15 + syst_JES_EtaIntercalibration_Stat93: 9.99027355e-14 + syst_JES_EtaIntercalibration_Stat94: 7.75777761e-08 + syst_JES_EtaIntercalibration_Stat95: 1.19571114e-08 + syst_JES_EtaIntercalibration_Stat96: 4.17938979e-17 + syst_JES_EtaIntercalibration_Stat97: 3.69706245e-19 syst_JES_EtaIntercalibration_Stat98: 0.0 - syst_JES_EtaIntercalibration_Stat99: 1.5692359711051149e-12 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.001006702740385661 - syst_JES_Flavour_Comp: 0.002683149082701146 - syst_JES_Flavour_Response: 0.0003756032214984318 - syst_JES_Gjet_Generator: 0.0036902951101504067 - syst_JES_Gjet_OOC: 0.003039055609889362 - syst_JES_Gjet_Purity: 0.0005813020041252224 - syst_JES_Gjet_Stat1: 6.239579052307936e-06 - syst_JES_Gjet_Stat10: 5.938081508366149e-05 - syst_JES_Gjet_Stat11: 6.640531661696977e-05 - syst_JES_Gjet_Stat12: 0.00020993205448430213 - syst_JES_Gjet_Stat13: 0.0006627472425442448 - syst_JES_Gjet_Stat14: 0.00168977357950703 - syst_JES_Gjet_Stat15: 0.0012252952980812421 - syst_JES_Gjet_Stat2: 9.540110062258192e-06 - syst_JES_Gjet_Stat3: 1.031198967222136e-05 - syst_JES_Gjet_Stat4: 1.1891049606742039e-05 - syst_JES_Gjet_Stat5: 1.2960232328164493e-05 - syst_JES_Gjet_Stat6: 2.767669236017917e-05 - syst_JES_Gjet_Stat7: 3.349256148759005e-05 - syst_JES_Gjet_Stat8: 2.6908022967137514e-05 - syst_JES_Gjet_Stat9: 4.0115920468063544e-05 - syst_JES_Gjet_Veto: 0.0030065519702809065 - syst_JES_Gjet_dPhi: 0.00030027338793173127 - syst_JES_LArESZee: 0.005658580807057544 - syst_JES_LArEsmear: 0.00045566997926130704 - syst_JES_LAr_JVT: 0.0005625604500851442 - syst_JES_MJB_Alpha: 2.9527957514870547e-05 - syst_JES_MJB_Asym: 0.0004847129872409032 - syst_JES_MJB_Beta: 4.018505692418514e-05 - syst_JES_MJB_Fragmentation: 0.00040477879428151866 - syst_JES_MJB_Stat1: 1.5190085582379054e-06 - syst_JES_MJB_Stat10: 4.5285928001974294e-05 - syst_JES_MJB_Stat11: 4.262052791789421e-05 - syst_JES_MJB_Stat12: 4.251114089271188e-05 - syst_JES_MJB_Stat13: 4.739615464359952e-06 - syst_JES_MJB_Stat14: 2.3616233294071265e-05 - syst_JES_MJB_Stat15: 2.9106378596452015e-05 - syst_JES_MJB_Stat16: 9.33117467149769e-06 + syst_JES_EtaIntercalibration_Stat99: 1.56923597e-12 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.00670274e-03 + syst_JES_Flavour_Comp: 2.68314908e-03 + syst_JES_Flavour_Response: 3.75603221e-04 + syst_JES_Gjet_Generator: 3.69029511e-03 + syst_JES_Gjet_OOC: 3.03905561e-03 + syst_JES_Gjet_Purity: 5.81302004e-04 + syst_JES_Gjet_Stat1: 6.23957905e-06 + syst_JES_Gjet_Stat10: 5.93808151e-05 + syst_JES_Gjet_Stat11: 6.64053166e-05 + syst_JES_Gjet_Stat12: 2.09932054e-04 + syst_JES_Gjet_Stat13: 6.62747243e-04 + syst_JES_Gjet_Stat14: 1.68977358e-03 + syst_JES_Gjet_Stat15: 1.22529530e-03 + syst_JES_Gjet_Stat2: 9.54011006e-06 + syst_JES_Gjet_Stat3: 1.03119897e-05 + syst_JES_Gjet_Stat4: 1.18910496e-05 + syst_JES_Gjet_Stat5: 1.29602323e-05 + syst_JES_Gjet_Stat6: 2.76766924e-05 + syst_JES_Gjet_Stat7: 3.34925615e-05 + syst_JES_Gjet_Stat8: 2.69080230e-05 + syst_JES_Gjet_Stat9: 4.01159205e-05 + syst_JES_Gjet_Veto: 3.00655197e-03 + syst_JES_Gjet_dPhi: 3.00273388e-04 + syst_JES_LArESZee: 5.65858081e-03 + syst_JES_LArEsmear: 4.55669979e-04 + syst_JES_LAr_JVT: 5.62560450e-04 + syst_JES_MJB_Alpha: 2.95279575e-05 + syst_JES_MJB_Asym: 4.84712987e-04 + syst_JES_MJB_Beta: 4.01850569e-05 + syst_JES_MJB_Fragmentation: 4.04778794e-04 + syst_JES_MJB_Stat1: 1.51900856e-06 + syst_JES_MJB_Stat10: 4.52859280e-05 + syst_JES_MJB_Stat11: 4.26205279e-05 + syst_JES_MJB_Stat12: 4.25111409e-05 + syst_JES_MJB_Stat13: 4.73961546e-06 + syst_JES_MJB_Stat14: 2.36162333e-05 + syst_JES_MJB_Stat15: 2.91063786e-05 + syst_JES_MJB_Stat16: 9.33117467e-06 syst_JES_MJB_Stat2: 0.0 - syst_JES_MJB_Stat3: 1.0766427819848141e-05 - syst_JES_MJB_Stat4: 3.281370254939238e-06 - syst_JES_MJB_Stat5: 9.941105610041571e-06 - syst_JES_MJB_Stat6: 2.0528655581893324e-05 - syst_JES_MJB_Stat7: 2.5419682826502773e-05 - syst_JES_MJB_Stat8: 3.2988756796823976e-05 - syst_JES_MJB_Stat9: 3.422706933115951e-05 - syst_JES_MJB_Threshold: 0.0003520618695627233 - syst_JES_Pileup_MuOffset: 0.0007033946402980335 - syst_JES_Pileup_NPVOffset: 0.00072152364306376 - syst_JES_Pileup_Pt_term: 0.0005275128150102138 - syst_JES_Pileup_Rho_topology: 0.0010455204768439496 - syst_JES_PunchThrough_MC15: 0.0004527161030933183 - syst_JES_SingleParticle_HighPt: 5.661146438664169e-15 - syst_JES_Zjet_MC: 0.0015305123325213687 - syst_JES_Zjet_MuScale: 0.00011252332558185436 - syst_JES_Zjet_MuSmearID: 2.3496201288718993e-05 - syst_JES_Zjet_MuSmearMS: 0.00042426491723921746 - syst_JES_Zjet_OOC: 0.0008282195647894343 - syst_JES_Zjet_Stat1: 5.3293544637226e-05 - syst_JES_Zjet_Stat10: 6.86518411989074e-05 - syst_JES_Zjet_Stat11: 8.81629502682391e-05 - syst_JES_Zjet_Stat12: 0.00026313420530216133 - syst_JES_Zjet_Stat13: 0.0004570730877004246 - syst_JES_Zjet_Stat2: 2.884730620005965e-07 - syst_JES_Zjet_Stat3: 2.683187656501125e-05 - syst_JES_Zjet_Stat4: 2.7485037293043645e-05 - syst_JES_Zjet_Stat5: 3.225838495647295e-05 - syst_JES_Zjet_Stat6: 3.1458154348276696e-05 - syst_JES_Zjet_Stat7: 2.801973010219763e-05 - syst_JES_Zjet_Stat8: 3.2759832111901914e-05 - syst_JES_Zjet_Stat9: 4.3550902114652e-05 - syst_JES_Zjet_Veto: 0.00018540264291535868 - syst_JES_Zjet_dPhi: 0.00016250221536951427 + syst_JES_MJB_Stat3: 1.07664278e-05 + syst_JES_MJB_Stat4: 3.28137025e-06 + syst_JES_MJB_Stat5: 9.94110561e-06 + syst_JES_MJB_Stat6: 2.05286556e-05 + syst_JES_MJB_Stat7: 2.54196828e-05 + syst_JES_MJB_Stat8: 3.29887568e-05 + syst_JES_MJB_Stat9: 3.42270693e-05 + syst_JES_MJB_Threshold: 3.52061870e-04 + syst_JES_Pileup_MuOffset: 7.03394640e-04 + syst_JES_Pileup_NPVOffset: 7.21523643e-04 + syst_JES_Pileup_Pt_term: 5.27512815e-04 + syst_JES_Pileup_Rho_topology: 1.04552048e-03 + syst_JES_PunchThrough_MC15: 4.52716103e-04 + syst_JES_SingleParticle_HighPt: 5.66114644e-15 + syst_JES_Zjet_MC: 1.53051233e-03 + syst_JES_Zjet_MuScale: 1.12523326e-04 + syst_JES_Zjet_MuSmearID: 2.34962013e-05 + syst_JES_Zjet_MuSmearMS: 4.24264917e-04 + syst_JES_Zjet_OOC: 8.28219565e-04 + syst_JES_Zjet_Stat1: 5.32935446e-05 + syst_JES_Zjet_Stat10: 6.86518412e-05 + syst_JES_Zjet_Stat11: 8.81629503e-05 + syst_JES_Zjet_Stat12: 2.63134205e-04 + syst_JES_Zjet_Stat13: 4.57073088e-04 + syst_JES_Zjet_Stat2: 2.88473062e-07 + syst_JES_Zjet_Stat3: 2.68318766e-05 + syst_JES_Zjet_Stat4: 2.74850373e-05 + syst_JES_Zjet_Stat5: 3.22583850e-05 + syst_JES_Zjet_Stat6: 3.14581543e-05 + syst_JES_Zjet_Stat7: 2.80197301e-05 + syst_JES_Zjet_Stat8: 3.27598321e-05 + syst_JES_Zjet_Stat9: 4.35509021e-05 + syst_JES_Zjet_Veto: 1.85402643e-04 + syst_JES_Zjet_dPhi: 1.62502215e-04 syst_PRW: 0.0 - syst_Unfolding_bias: 0.0001579 - syst_cleaning: 0.0009639728769524586 + syst_Unfolding_bias: 1.57900000e-04 + syst_cleaning: 9.63972877e-04 syst_lumi: 0.003231 -- stat: 0.0007866 +- stat: 7.86600000e-04 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.0006151057043305646 - syst_JER_NP1: 9.723802998312954e-05 - syst_JER_NP2: 0.0004204683816888019 - syst_JER_NP3: 4.023950391095794e-05 - syst_JER_NP4: 6.308688829701462e-13 - syst_JER_NP5: 1.74960253366779e-07 - syst_JER_NP6: 2.601080160241126e-15 - syst_JER_NP7: 5.36563088089369e-18 - syst_JER_NP8: 5.303965497625338e-05 - syst_JES_EtaIntercalibration_Modelling: 0.005298393247013664 + syst_JER_NP0: 6.15105704e-04 + syst_JER_NP1: 9.72380300e-05 + syst_JER_NP2: 4.20468382e-04 + syst_JER_NP3: 4.02395039e-05 + syst_JER_NP4: 6.30868883e-13 + syst_JER_NP5: 1.74960253e-07 + syst_JER_NP6: 2.60108016e-15 + syst_JER_NP7: 5.36563088e-18 + syst_JER_NP8: 5.30396550e-05 + syst_JES_EtaIntercalibration_Modelling: 5.29839325e-03 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 3.3423950933424966e-13 - syst_JES_EtaIntercalibration_Stat101: 9.59828475789685e-09 - syst_JES_EtaIntercalibration_Stat102: 1.216848309856245e-12 - syst_JES_EtaIntercalibration_Stat103: 2.4753346501028903e-16 + syst_JES_EtaIntercalibration_Stat100: 3.34239509e-13 + syst_JES_EtaIntercalibration_Stat101: 9.59828476e-09 + syst_JES_EtaIntercalibration_Stat102: 1.21684831e-12 + syst_JES_EtaIntercalibration_Stat103: 2.47533465e-16 syst_JES_EtaIntercalibration_Stat104: 0.0 syst_JES_EtaIntercalibration_Stat105: 0.0 syst_JES_EtaIntercalibration_Stat106: 0.0 @@ -30696,170 +30696,170 @@ bins: syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 syst_JES_EtaIntercalibration_Stat110: 0.0 - syst_JES_EtaIntercalibration_Stat111: 1.721658502723464e-20 - syst_JES_EtaIntercalibration_Stat112: 4.648043176165644e-15 - syst_JES_EtaIntercalibration_Stat113: 2.2830438015947042e-07 - syst_JES_EtaIntercalibration_Stat114: 3.313836447382399e-08 - syst_JES_EtaIntercalibration_Stat115: 1.370536685937301e-07 - syst_JES_EtaIntercalibration_Stat116: 3.62869915699925e-12 + syst_JES_EtaIntercalibration_Stat111: 1.72165850e-20 + syst_JES_EtaIntercalibration_Stat112: 4.64804318e-15 + syst_JES_EtaIntercalibration_Stat113: 2.28304380e-07 + syst_JES_EtaIntercalibration_Stat114: 3.31383645e-08 + syst_JES_EtaIntercalibration_Stat115: 1.37053669e-07 + syst_JES_EtaIntercalibration_Stat116: 3.62869916e-12 syst_JES_EtaIntercalibration_Stat117: 0.0 syst_JES_EtaIntercalibration_Stat118: 0.0 - syst_JES_EtaIntercalibration_Stat119: 3.6303782107731852e-12 + syst_JES_EtaIntercalibration_Stat119: 3.63037821e-12 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 2.2749907756825038e-07 - syst_JES_EtaIntercalibration_Stat121: 5.111885366476834e-07 - syst_JES_EtaIntercalibration_Stat122: 2.9877892737857085e-07 - syst_JES_EtaIntercalibration_Stat123: 5.105846690087257e-12 + syst_JES_EtaIntercalibration_Stat120: 2.27499078e-07 + syst_JES_EtaIntercalibration_Stat121: 5.11188537e-07 + syst_JES_EtaIntercalibration_Stat122: 2.98778927e-07 + syst_JES_EtaIntercalibration_Stat123: 5.10584669e-12 syst_JES_EtaIntercalibration_Stat124: 0.0 syst_JES_EtaIntercalibration_Stat125: 0.0 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 syst_JES_EtaIntercalibration_Stat128: 0.0 syst_JES_EtaIntercalibration_Stat129: 0.0 - syst_JES_EtaIntercalibration_Stat13: 3.6373067746163584e-12 + syst_JES_EtaIntercalibration_Stat13: 3.63730677e-12 syst_JES_EtaIntercalibration_Stat130: 0.0 - syst_JES_EtaIntercalibration_Stat131: 4.3122748057144965e-14 - syst_JES_EtaIntercalibration_Stat132: 6.852073575436855e-08 - syst_JES_EtaIntercalibration_Stat133: 1.2578815620220373e-07 - syst_JES_EtaIntercalibration_Stat134: 5.333082411467124e-07 - syst_JES_EtaIntercalibration_Stat135: 5.841999946668521e-10 + syst_JES_EtaIntercalibration_Stat131: 4.31227481e-14 + syst_JES_EtaIntercalibration_Stat132: 6.85207358e-08 + syst_JES_EtaIntercalibration_Stat133: 1.25788156e-07 + syst_JES_EtaIntercalibration_Stat134: 5.33308241e-07 + syst_JES_EtaIntercalibration_Stat135: 5.84199995e-10 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 - syst_JES_EtaIntercalibration_Stat138: 3.3897439473960273e-12 - syst_JES_EtaIntercalibration_Stat139: 6.171746835378134e-07 - syst_JES_EtaIntercalibration_Stat14: 3.1346096547257683e-19 - syst_JES_EtaIntercalibration_Stat140: 1.8092597386983991e-09 - syst_JES_EtaIntercalibration_Stat141: 2.62824159991048e-07 - syst_JES_EtaIntercalibration_Stat142: 4.588148147703763e-09 + syst_JES_EtaIntercalibration_Stat138: 3.38974395e-12 + syst_JES_EtaIntercalibration_Stat139: 6.17174684e-07 + syst_JES_EtaIntercalibration_Stat14: 3.13460965e-19 + syst_JES_EtaIntercalibration_Stat140: 1.80925974e-09 + syst_JES_EtaIntercalibration_Stat141: 2.62824160e-07 + syst_JES_EtaIntercalibration_Stat142: 4.58814815e-09 syst_JES_EtaIntercalibration_Stat143: 0.0 syst_JES_EtaIntercalibration_Stat144: 0.0 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 syst_JES_EtaIntercalibration_Stat147: 0.0 syst_JES_EtaIntercalibration_Stat148: 0.0 - syst_JES_EtaIntercalibration_Stat149: 2.374981532068618e-10 - syst_JES_EtaIntercalibration_Stat15: 2.9258167715699495e-19 - syst_JES_EtaIntercalibration_Stat150: 6.925605154064155e-08 - syst_JES_EtaIntercalibration_Stat151: 4.911976340659634e-07 - syst_JES_EtaIntercalibration_Stat152: 5.095098554522769e-07 - syst_JES_EtaIntercalibration_Stat153: 6.828717898167049e-10 + syst_JES_EtaIntercalibration_Stat149: 2.37498153e-10 + syst_JES_EtaIntercalibration_Stat15: 2.92581677e-19 + syst_JES_EtaIntercalibration_Stat150: 6.92560515e-08 + syst_JES_EtaIntercalibration_Stat151: 4.91197634e-07 + syst_JES_EtaIntercalibration_Stat152: 5.09509855e-07 + syst_JES_EtaIntercalibration_Stat153: 6.82871790e-10 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 2.7565588484881304e-13 - syst_JES_EtaIntercalibration_Stat157: 1.197355686502553e-06 - syst_JES_EtaIntercalibration_Stat158: 1.2565710962774848e-06 - syst_JES_EtaIntercalibration_Stat159: 4.051022432670548e-07 + syst_JES_EtaIntercalibration_Stat156: 2.75655885e-13 + syst_JES_EtaIntercalibration_Stat157: 1.19735569e-06 + syst_JES_EtaIntercalibration_Stat158: 1.25657110e-06 + syst_JES_EtaIntercalibration_Stat159: 4.05102243e-07 syst_JES_EtaIntercalibration_Stat16: 0.0 - syst_JES_EtaIntercalibration_Stat160: 1.3377230031194798e-12 + syst_JES_EtaIntercalibration_Stat160: 1.33772300e-12 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 - syst_JES_EtaIntercalibration_Stat167: 7.678234032041482e-08 - syst_JES_EtaIntercalibration_Stat168: 4.4977959802552186e-07 - syst_JES_EtaIntercalibration_Stat169: 1.5877231339248035e-06 + syst_JES_EtaIntercalibration_Stat167: 7.67823403e-08 + syst_JES_EtaIntercalibration_Stat168: 4.49779598e-07 + syst_JES_EtaIntercalibration_Stat169: 1.58772313e-06 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 1.28968293777967e-06 - syst_JES_EtaIntercalibration_Stat171: 1.5284150366637983e-07 + syst_JES_EtaIntercalibration_Stat170: 1.28968294e-06 + syst_JES_EtaIntercalibration_Stat171: 1.52841504e-07 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 - syst_JES_EtaIntercalibration_Stat174: 4.815975422686262e-13 - syst_JES_EtaIntercalibration_Stat175: 8.699028149741787e-07 - syst_JES_EtaIntercalibration_Stat176: 1.5300129305009159e-06 - syst_JES_EtaIntercalibration_Stat177: 1.0966427255492101e-06 - syst_JES_EtaIntercalibration_Stat178: 1.9895446715266286e-07 + syst_JES_EtaIntercalibration_Stat174: 4.81597542e-13 + syst_JES_EtaIntercalibration_Stat175: 8.69902815e-07 + syst_JES_EtaIntercalibration_Stat176: 1.53001293e-06 + syst_JES_EtaIntercalibration_Stat177: 1.09664273e-06 + syst_JES_EtaIntercalibration_Stat178: 1.98954467e-07 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 syst_JES_EtaIntercalibration_Stat180: 0.0 syst_JES_EtaIntercalibration_Stat181: 0.0 syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 - syst_JES_EtaIntercalibration_Stat184: 3.580375818262658e-07 - syst_JES_EtaIntercalibration_Stat185: 2.8479640096040542e-06 - syst_JES_EtaIntercalibration_Stat186: 1.1286615214491897e-05 - syst_JES_EtaIntercalibration_Stat187: 8.284706633309355e-06 - syst_JES_EtaIntercalibration_Stat188: 8.377740551604591e-07 + syst_JES_EtaIntercalibration_Stat184: 3.58037582e-07 + syst_JES_EtaIntercalibration_Stat185: 2.84796401e-06 + syst_JES_EtaIntercalibration_Stat186: 1.12866152e-05 + syst_JES_EtaIntercalibration_Stat187: 8.28470663e-06 + syst_JES_EtaIntercalibration_Stat188: 8.37774055e-07 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 - syst_JES_EtaIntercalibration_Stat191: 4.4337172091908387e-07 - syst_JES_EtaIntercalibration_Stat192: 9.567699462253192e-06 - syst_JES_EtaIntercalibration_Stat193: 1.2570786490908195e-05 - syst_JES_EtaIntercalibration_Stat194: 3.4288924786292145e-06 - syst_JES_EtaIntercalibration_Stat195: 2.727341700264197e-07 - syst_JES_EtaIntercalibration_Stat196: 5.131726683096051e-12 + syst_JES_EtaIntercalibration_Stat191: 4.43371721e-07 + syst_JES_EtaIntercalibration_Stat192: 9.56769946e-06 + syst_JES_EtaIntercalibration_Stat193: 1.25707865e-05 + syst_JES_EtaIntercalibration_Stat194: 3.42889248e-06 + syst_JES_EtaIntercalibration_Stat195: 2.72734170e-07 + syst_JES_EtaIntercalibration_Stat196: 5.13172668e-12 syst_JES_EtaIntercalibration_Stat197: 0.0 syst_JES_EtaIntercalibration_Stat198: 0.0 - syst_JES_EtaIntercalibration_Stat199: 1.5424163275523247e-07 + syst_JES_EtaIntercalibration_Stat199: 1.54241633e-07 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 6.485886909282338e-06 - syst_JES_EtaIntercalibration_Stat201: 2.3426504220647174e-05 - syst_JES_EtaIntercalibration_Stat202: 1.7202327604135435e-05 - syst_JES_EtaIntercalibration_Stat203: 2.8103816022028037e-07 + syst_JES_EtaIntercalibration_Stat200: 6.48588691e-06 + syst_JES_EtaIntercalibration_Stat201: 2.34265042e-05 + syst_JES_EtaIntercalibration_Stat202: 1.72023276e-05 + syst_JES_EtaIntercalibration_Stat203: 2.81038160e-07 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 - syst_JES_EtaIntercalibration_Stat206: 7.231470994894468e-07 - syst_JES_EtaIntercalibration_Stat207: 1.7417608905931952e-05 - syst_JES_EtaIntercalibration_Stat208: 3.3176610737084036e-05 - syst_JES_EtaIntercalibration_Stat209: 7.178286477286902e-06 + syst_JES_EtaIntercalibration_Stat206: 7.23147099e-07 + syst_JES_EtaIntercalibration_Stat207: 1.74176089e-05 + syst_JES_EtaIntercalibration_Stat208: 3.31766107e-05 + syst_JES_EtaIntercalibration_Stat209: 7.17828648e-06 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 4.302467315390089e-07 - syst_JES_EtaIntercalibration_Stat211: 5.411425690148577e-12 - syst_JES_EtaIntercalibration_Stat212: 2.3042475452954267e-07 - syst_JES_EtaIntercalibration_Stat213: 7.546130183743188e-06 - syst_JES_EtaIntercalibration_Stat214: 2.2854707939503408e-05 - syst_JES_EtaIntercalibration_Stat215: 1.7929681397057784e-05 - syst_JES_EtaIntercalibration_Stat216: 3.0025109491890285e-07 + syst_JES_EtaIntercalibration_Stat210: 4.30246732e-07 + syst_JES_EtaIntercalibration_Stat211: 5.41142569e-12 + syst_JES_EtaIntercalibration_Stat212: 2.30424755e-07 + syst_JES_EtaIntercalibration_Stat213: 7.54613018e-06 + syst_JES_EtaIntercalibration_Stat214: 2.28547079e-05 + syst_JES_EtaIntercalibration_Stat215: 1.79296814e-05 + syst_JES_EtaIntercalibration_Stat216: 3.00251095e-07 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 - syst_JES_EtaIntercalibration_Stat219: 7.490450106413833e-07 + syst_JES_EtaIntercalibration_Stat219: 7.49045011e-07 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 2.248736700905644e-05 - syst_JES_EtaIntercalibration_Stat221: 2.8866601375984666e-05 - syst_JES_EtaIntercalibration_Stat222: 7.3023619980113275e-06 - syst_JES_EtaIntercalibration_Stat223: 4.428853914953619e-07 - syst_JES_EtaIntercalibration_Stat224: 8.396256017755295e-07 - syst_JES_EtaIntercalibration_Stat225: 2.5209141199176146e-05 - syst_JES_EtaIntercalibration_Stat226: 7.168062552042915e-05 - syst_JES_EtaIntercalibration_Stat227: 5.4531285515747746e-05 - syst_JES_EtaIntercalibration_Stat228: 1.4691870507188662e-06 + syst_JES_EtaIntercalibration_Stat220: 2.24873670e-05 + syst_JES_EtaIntercalibration_Stat221: 2.88666014e-05 + syst_JES_EtaIntercalibration_Stat222: 7.30236200e-06 + syst_JES_EtaIntercalibration_Stat223: 4.42885391e-07 + syst_JES_EtaIntercalibration_Stat224: 8.39625602e-07 + syst_JES_EtaIntercalibration_Stat225: 2.52091412e-05 + syst_JES_EtaIntercalibration_Stat226: 7.16806255e-05 + syst_JES_EtaIntercalibration_Stat227: 5.45312855e-05 + syst_JES_EtaIntercalibration_Stat228: 1.46918705e-06 syst_JES_EtaIntercalibration_Stat229: 0.0 syst_JES_EtaIntercalibration_Stat23: 0.0 syst_JES_EtaIntercalibration_Stat230: 0.0 - syst_JES_EtaIntercalibration_Stat231: 5.741748427319113e-07 - syst_JES_EtaIntercalibration_Stat232: 6.119274528079288e-05 - syst_JES_EtaIntercalibration_Stat233: 7.352126291080697e-05 - syst_JES_EtaIntercalibration_Stat234: 2.595168732471937e-05 - syst_JES_EtaIntercalibration_Stat235: 1.5812826336553502e-06 - syst_JES_EtaIntercalibration_Stat236: 4.655604042441754e-06 - syst_JES_EtaIntercalibration_Stat237: 1.6981378035954563e-05 - syst_JES_EtaIntercalibration_Stat238: 9.467654976286365e-06 - syst_JES_EtaIntercalibration_Stat239: 2.5444051623120083e-07 + syst_JES_EtaIntercalibration_Stat231: 5.74174843e-07 + syst_JES_EtaIntercalibration_Stat232: 6.11927453e-05 + syst_JES_EtaIntercalibration_Stat233: 7.35212629e-05 + syst_JES_EtaIntercalibration_Stat234: 2.59516873e-05 + syst_JES_EtaIntercalibration_Stat235: 1.58128263e-06 + syst_JES_EtaIntercalibration_Stat236: 4.65560404e-06 + syst_JES_EtaIntercalibration_Stat237: 1.69813780e-05 + syst_JES_EtaIntercalibration_Stat238: 9.46765498e-06 + syst_JES_EtaIntercalibration_Stat239: 2.54440516e-07 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 - syst_JES_EtaIntercalibration_Stat242: 6.918013729930001e-08 - syst_JES_EtaIntercalibration_Stat243: 9.746856877988924e-06 - syst_JES_EtaIntercalibration_Stat244: 1.5060244046827395e-05 - syst_JES_EtaIntercalibration_Stat245: 4.649644798261475e-06 + syst_JES_EtaIntercalibration_Stat242: 6.91801373e-08 + syst_JES_EtaIntercalibration_Stat243: 9.74685688e-06 + syst_JES_EtaIntercalibration_Stat244: 1.50602440e-05 + syst_JES_EtaIntercalibration_Stat245: 4.64964480e-06 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 - syst_JES_EtaIntercalibration_Stat27: 8.658704334367816e-20 - syst_JES_EtaIntercalibration_Stat28: 4.842552531154077e-15 - syst_JES_EtaIntercalibration_Stat29: 2.8396973029452597e-09 + syst_JES_EtaIntercalibration_Stat27: 8.65870433e-20 + syst_JES_EtaIntercalibration_Stat28: 4.84255253e-15 + syst_JES_EtaIntercalibration_Stat29: 2.83969730e-09 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 2.843161409388489e-09 - syst_JES_EtaIntercalibration_Stat31: 1.6541085212282776e-20 + syst_JES_EtaIntercalibration_Stat30: 2.84316141e-09 + syst_JES_EtaIntercalibration_Stat31: 1.65410852e-20 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 - syst_JES_EtaIntercalibration_Stat34: 2.381569860407206e-21 - syst_JES_EtaIntercalibration_Stat35: 3.633850244234989e-12 - syst_JES_EtaIntercalibration_Stat36: 3.636472596195056e-12 - syst_JES_EtaIntercalibration_Stat37: 6.12802828873203e-17 - syst_JES_EtaIntercalibration_Stat38: 9.230045859447286e-20 + syst_JES_EtaIntercalibration_Stat34: 2.38156986e-21 + syst_JES_EtaIntercalibration_Stat35: 3.63385024e-12 + syst_JES_EtaIntercalibration_Stat36: 3.63647260e-12 + syst_JES_EtaIntercalibration_Stat37: 6.12802829e-17 + syst_JES_EtaIntercalibration_Stat38: 9.23004586e-20 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 syst_JES_EtaIntercalibration_Stat40: 0.0 @@ -30870,21 +30870,21 @@ bins: syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 syst_JES_EtaIntercalibration_Stat47: 0.0 - syst_JES_EtaIntercalibration_Stat48: 4.84454610877015e-20 - syst_JES_EtaIntercalibration_Stat49: 3.185744448319733e-19 - syst_JES_EtaIntercalibration_Stat5: 4.151725785742598e-20 - syst_JES_EtaIntercalibration_Stat50: 4.9942030062363305e-15 - syst_JES_EtaIntercalibration_Stat51: 2.813720149106149e-09 - syst_JES_EtaIntercalibration_Stat52: 2.8275729670621955e-09 - syst_JES_EtaIntercalibration_Stat53: 1.2656519298369517e-19 - syst_JES_EtaIntercalibration_Stat54: 7.406249253164519e-20 + syst_JES_EtaIntercalibration_Stat48: 4.84454611e-20 + syst_JES_EtaIntercalibration_Stat49: 3.18574445e-19 + syst_JES_EtaIntercalibration_Stat5: 4.15172579e-20 + syst_JES_EtaIntercalibration_Stat50: 4.99420301e-15 + syst_JES_EtaIntercalibration_Stat51: 2.81372015e-09 + syst_JES_EtaIntercalibration_Stat52: 2.82757297e-09 + syst_JES_EtaIntercalibration_Stat53: 1.26565193e-19 + syst_JES_EtaIntercalibration_Stat54: 7.40624925e-20 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 1.0936452166950669e-20 - syst_JES_EtaIntercalibration_Stat57: 3.5846515184612784e-12 - syst_JES_EtaIntercalibration_Stat58: 3.622847034595168e-12 - syst_JES_EtaIntercalibration_Stat59: 1.5376946218284043e-16 - syst_JES_EtaIntercalibration_Stat6: 9.615121892103086e-20 - syst_JES_EtaIntercalibration_Stat60: 1.0881704884231146e-18 + syst_JES_EtaIntercalibration_Stat56: 1.09364522e-20 + syst_JES_EtaIntercalibration_Stat57: 3.58465152e-12 + syst_JES_EtaIntercalibration_Stat58: 3.62284703e-12 + syst_JES_EtaIntercalibration_Stat59: 1.53769462e-16 + syst_JES_EtaIntercalibration_Stat6: 9.61512189e-20 + syst_JES_EtaIntercalibration_Stat60: 1.08817049e-18 syst_JES_EtaIntercalibration_Stat61: 0.0 syst_JES_EtaIntercalibration_Stat62: 0.0 syst_JES_EtaIntercalibration_Stat63: 0.0 @@ -30894,21 +30894,21 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 7.298575665840562e-19 - syst_JES_EtaIntercalibration_Stat70: 4.151725785742598e-20 - syst_JES_EtaIntercalibration_Stat71: 1.5215728704206053e-18 - syst_JES_EtaIntercalibration_Stat72: 1.1462721666340853e-14 - syst_JES_EtaIntercalibration_Stat73: 2.610121687577612e-08 - syst_JES_EtaIntercalibration_Stat74: 3.0861775191974937e-09 - syst_JES_EtaIntercalibration_Stat75: 3.0861596633194466e-18 - syst_JES_EtaIntercalibration_Stat76: 7.406249253164519e-20 + syst_JES_EtaIntercalibration_Stat7: 7.29857567e-19 + syst_JES_EtaIntercalibration_Stat70: 4.15172579e-20 + syst_JES_EtaIntercalibration_Stat71: 1.52157287e-18 + syst_JES_EtaIntercalibration_Stat72: 1.14627217e-14 + syst_JES_EtaIntercalibration_Stat73: 2.61012169e-08 + syst_JES_EtaIntercalibration_Stat74: 3.08617752e-09 + syst_JES_EtaIntercalibration_Stat75: 3.08615966e-18 + syst_JES_EtaIntercalibration_Stat76: 7.40624925e-20 syst_JES_EtaIntercalibration_Stat77: 0.0 - syst_JES_EtaIntercalibration_Stat78: 1.4929606391328607e-18 - syst_JES_EtaIntercalibration_Stat79: 3.3853726143080614e-12 - syst_JES_EtaIntercalibration_Stat8: 1.127680835830777e-19 - syst_JES_EtaIntercalibration_Stat80: 2.202318464979492e-09 - syst_JES_EtaIntercalibration_Stat81: 5.132427468040829e-12 - syst_JES_EtaIntercalibration_Stat82: 1.2148439364790852e-18 + syst_JES_EtaIntercalibration_Stat78: 1.49296064e-18 + syst_JES_EtaIntercalibration_Stat79: 3.38537261e-12 + syst_JES_EtaIntercalibration_Stat8: 1.12768084e-19 + syst_JES_EtaIntercalibration_Stat80: 2.20231846e-09 + syst_JES_EtaIntercalibration_Stat81: 5.13242747e-12 + syst_JES_EtaIntercalibration_Stat82: 1.21484394e-18 syst_JES_EtaIntercalibration_Stat83: 0.0 syst_JES_EtaIntercalibration_Stat84: 0.0 syst_JES_EtaIntercalibration_Stat85: 0.0 @@ -30918,113 +30918,113 @@ bins: syst_JES_EtaIntercalibration_Stat89: 0.0 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 3.559364409554043e-20 - syst_JES_EtaIntercalibration_Stat92: 3.8052719003755827e-16 - syst_JES_EtaIntercalibration_Stat93: 1.584107917630614e-14 - syst_JES_EtaIntercalibration_Stat94: 2.6230260084865244e-08 - syst_JES_EtaIntercalibration_Stat95: 3.14704904752055e-09 - syst_JES_EtaIntercalibration_Stat96: 8.394142187859341e-18 - syst_JES_EtaIntercalibration_Stat97: 7.406249253164519e-20 + syst_JES_EtaIntercalibration_Stat91: 3.55936441e-20 + syst_JES_EtaIntercalibration_Stat92: 3.80527190e-16 + syst_JES_EtaIntercalibration_Stat93: 1.58410792e-14 + syst_JES_EtaIntercalibration_Stat94: 2.62302601e-08 + syst_JES_EtaIntercalibration_Stat95: 3.14704905e-09 + syst_JES_EtaIntercalibration_Stat96: 8.39414219e-18 + syst_JES_EtaIntercalibration_Stat97: 7.40624925e-20 syst_JES_EtaIntercalibration_Stat98: 0.0 - syst_JES_EtaIntercalibration_Stat99: 2.443919356496645e-13 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0007060167473226113 - syst_JES_Flavour_Comp: 0.0018136887136441027 - syst_JES_Flavour_Response: 0.00016730292884465593 - syst_JES_Gjet_Generator: 0.002426504893875139 - syst_JES_Gjet_OOC: 0.0020016360183609805 - syst_JES_Gjet_Purity: 0.00036667351963292906 - syst_JES_Gjet_Stat1: 4.692280625665947e-06 - syst_JES_Gjet_Stat10: 3.969783256992755e-05 - syst_JES_Gjet_Stat11: 4.187722412003928e-05 - syst_JES_Gjet_Stat12: 0.00013436493246007307 - syst_JES_Gjet_Stat13: 0.00041595668269063784 - syst_JES_Gjet_Stat14: 0.0011102242205969027 - syst_JES_Gjet_Stat15: 0.0010403191962085484 - syst_JES_Gjet_Stat2: 6.253120401047785e-06 - syst_JES_Gjet_Stat3: 7.316357085326002e-06 - syst_JES_Gjet_Stat4: 8.900736865563436e-06 - syst_JES_Gjet_Stat5: 9.074113221136266e-06 - syst_JES_Gjet_Stat6: 2.021774158999961e-05 - syst_JES_Gjet_Stat7: 2.367543188624022e-05 - syst_JES_Gjet_Stat8: 1.8592123836452897e-05 - syst_JES_Gjet_Stat9: 2.590162687940663e-05 - syst_JES_Gjet_Veto: 0.0019996201514287655 - syst_JES_Gjet_dPhi: 0.00020127649515032798 - syst_JES_LArESZee: 0.0036995441611095818 - syst_JES_LArEsmear: 0.00030723827886511794 - syst_JES_LAr_JVT: 0.0003786143170496858 - syst_JES_MJB_Alpha: 2.054888013980324e-05 - syst_JES_MJB_Asym: 0.00036741458446147725 - syst_JES_MJB_Beta: 2.6935974086711623e-05 - syst_JES_MJB_Fragmentation: 0.00024708825852314394 - syst_JES_MJB_Stat1: 1.1761491008796461e-06 - syst_JES_MJB_Stat10: 3.4372234070540134e-05 - syst_JES_MJB_Stat11: 3.695500372074126e-05 - syst_JES_MJB_Stat12: 4.589784751761241e-05 - syst_JES_MJB_Stat13: 2.0117493898346284e-05 - syst_JES_MJB_Stat14: 4.879720586263111e-06 - syst_JES_MJB_Stat15: 1.5438898924469967e-05 - syst_JES_MJB_Stat16: 1.677806529371012e-05 + syst_JES_EtaIntercalibration_Stat99: 2.44391936e-13 + syst_JES_EtaIntercalibration_TotalStat_MJB: 7.06016747e-04 + syst_JES_Flavour_Comp: 1.81368871e-03 + syst_JES_Flavour_Response: 1.67302929e-04 + syst_JES_Gjet_Generator: 2.42650489e-03 + syst_JES_Gjet_OOC: 2.00163602e-03 + syst_JES_Gjet_Purity: 3.66673520e-04 + syst_JES_Gjet_Stat1: 4.69228063e-06 + syst_JES_Gjet_Stat10: 3.96978326e-05 + syst_JES_Gjet_Stat11: 4.18772241e-05 + syst_JES_Gjet_Stat12: 1.34364932e-04 + syst_JES_Gjet_Stat13: 4.15956683e-04 + syst_JES_Gjet_Stat14: 1.11022422e-03 + syst_JES_Gjet_Stat15: 1.04031920e-03 + syst_JES_Gjet_Stat2: 6.25312040e-06 + syst_JES_Gjet_Stat3: 7.31635709e-06 + syst_JES_Gjet_Stat4: 8.90073687e-06 + syst_JES_Gjet_Stat5: 9.07411322e-06 + syst_JES_Gjet_Stat6: 2.02177416e-05 + syst_JES_Gjet_Stat7: 2.36754319e-05 + syst_JES_Gjet_Stat8: 1.85921238e-05 + syst_JES_Gjet_Stat9: 2.59016269e-05 + syst_JES_Gjet_Veto: 1.99962015e-03 + syst_JES_Gjet_dPhi: 2.01276495e-04 + syst_JES_LArESZee: 3.69954416e-03 + syst_JES_LArEsmear: 3.07238279e-04 + syst_JES_LAr_JVT: 3.78614317e-04 + syst_JES_MJB_Alpha: 2.05488801e-05 + syst_JES_MJB_Asym: 3.67414584e-04 + syst_JES_MJB_Beta: 2.69359741e-05 + syst_JES_MJB_Fragmentation: 2.47088259e-04 + syst_JES_MJB_Stat1: 1.17614910e-06 + syst_JES_MJB_Stat10: 3.43722341e-05 + syst_JES_MJB_Stat11: 3.69550037e-05 + syst_JES_MJB_Stat12: 4.58978475e-05 + syst_JES_MJB_Stat13: 2.01174939e-05 + syst_JES_MJB_Stat14: 4.87972059e-06 + syst_JES_MJB_Stat15: 1.54388989e-05 + syst_JES_MJB_Stat16: 1.67780653e-05 syst_JES_MJB_Stat2: 0.0 - syst_JES_MJB_Stat3: 4.3604379080546485e-06 - syst_JES_MJB_Stat4: 1.7675578491240392e-06 - syst_JES_MJB_Stat5: 4.255648834196731e-06 - syst_JES_MJB_Stat6: 1.1331773735827943e-05 - syst_JES_MJB_Stat7: 1.5985695949817137e-05 - syst_JES_MJB_Stat8: 2.0877219043732815e-05 - syst_JES_MJB_Stat9: 2.4242563808310375e-05 - syst_JES_MJB_Threshold: 0.00025179295065589106 - syst_JES_Pileup_MuOffset: 0.0004737940137865822 - syst_JES_Pileup_NPVOffset: 0.00048720329175817363 - syst_JES_Pileup_Pt_term: 0.00033881835841642345 - syst_JES_Pileup_Rho_topology: 0.000676227506095397 - syst_JES_PunchThrough_MC15: 0.00038012054808310485 - syst_JES_SingleParticle_HighPt: 3.937540698202369e-13 - syst_JES_Zjet_MC: 0.0009645504963453183 - syst_JES_Zjet_MuScale: 7.502020711115106e-05 - syst_JES_Zjet_MuSmearID: 1.6340217256817608e-05 - syst_JES_Zjet_MuSmearMS: 0.0002667769855141181 - syst_JES_Zjet_OOC: 0.0005419461666069796 - syst_JES_Zjet_Stat1: 3.861502686778814e-05 - syst_JES_Zjet_Stat10: 4.6481100191368105e-05 - syst_JES_Zjet_Stat11: 6.12111199048016e-05 - syst_JES_Zjet_Stat12: 0.00017395551155396027 - syst_JES_Zjet_Stat13: 0.0002842682667833327 - syst_JES_Zjet_Stat2: 1.832509754407872e-07 - syst_JES_Zjet_Stat3: 1.960343847390044e-05 - syst_JES_Zjet_Stat4: 1.971207941846826e-05 - syst_JES_Zjet_Stat5: 2.3371676769115216e-05 - syst_JES_Zjet_Stat6: 2.1225999976443983e-05 - syst_JES_Zjet_Stat7: 2.0451977899459994e-05 - syst_JES_Zjet_Stat8: 2.0986231200479994e-05 - syst_JES_Zjet_Stat9: 2.8925656431617937e-05 - syst_JES_Zjet_Veto: 0.00012191827426600165 - syst_JES_Zjet_dPhi: 0.00010905832969104194 + syst_JES_MJB_Stat3: 4.36043791e-06 + syst_JES_MJB_Stat4: 1.76755785e-06 + syst_JES_MJB_Stat5: 4.25564883e-06 + syst_JES_MJB_Stat6: 1.13317737e-05 + syst_JES_MJB_Stat7: 1.59856959e-05 + syst_JES_MJB_Stat8: 2.08772190e-05 + syst_JES_MJB_Stat9: 2.42425638e-05 + syst_JES_MJB_Threshold: 2.51792951e-04 + syst_JES_Pileup_MuOffset: 4.73794014e-04 + syst_JES_Pileup_NPVOffset: 4.87203292e-04 + syst_JES_Pileup_Pt_term: 3.38818358e-04 + syst_JES_Pileup_Rho_topology: 6.76227506e-04 + syst_JES_PunchThrough_MC15: 3.80120548e-04 + syst_JES_SingleParticle_HighPt: 3.93754070e-13 + syst_JES_Zjet_MC: 9.64550496e-04 + syst_JES_Zjet_MuScale: 7.50202071e-05 + syst_JES_Zjet_MuSmearID: 1.63402173e-05 + syst_JES_Zjet_MuSmearMS: 2.66776986e-04 + syst_JES_Zjet_OOC: 5.41946167e-04 + syst_JES_Zjet_Stat1: 3.86150269e-05 + syst_JES_Zjet_Stat10: 4.64811002e-05 + syst_JES_Zjet_Stat11: 6.12111199e-05 + syst_JES_Zjet_Stat12: 1.73955512e-04 + syst_JES_Zjet_Stat13: 2.84268267e-04 + syst_JES_Zjet_Stat2: 1.83250975e-07 + syst_JES_Zjet_Stat3: 1.96034385e-05 + syst_JES_Zjet_Stat4: 1.97120794e-05 + syst_JES_Zjet_Stat5: 2.33716768e-05 + syst_JES_Zjet_Stat6: 2.12260000e-05 + syst_JES_Zjet_Stat7: 2.04519779e-05 + syst_JES_Zjet_Stat8: 2.09862312e-05 + syst_JES_Zjet_Stat9: 2.89256564e-05 + syst_JES_Zjet_Veto: 1.21918274e-04 + syst_JES_Zjet_dPhi: 1.09058330e-04 syst_PRW: 0.0 - syst_Unfolding_bias: 0.00010032 - syst_cleaning: 0.0006090756664815958 + syst_Unfolding_bias: 1.00320000e-04 + syst_cleaning: 6.09075666e-04 syst_lumi: 0.002053 -- stat: 0.0005878 +- stat: 5.87800000e-04 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.00038200576893549653 - syst_JER_NP1: 6.390519462453737e-05 - syst_JER_NP2: 0.0002649156988553151 - syst_JER_NP3: 2.435095686004967e-05 - syst_JER_NP4: 1.1157312624462935e-13 - syst_JER_NP5: 3.072026613658604e-08 - syst_JER_NP6: 5.502280254585367e-16 - syst_JER_NP7: 1.4905377385359956e-18 - syst_JER_NP8: 3.182754585261012e-05 - syst_JES_EtaIntercalibration_Modelling: 0.0034732179603359187 + syst_JER_NP0: 3.82005769e-04 + syst_JER_NP1: 6.39051946e-05 + syst_JER_NP2: 2.64915699e-04 + syst_JER_NP3: 2.43509569e-05 + syst_JER_NP4: 1.11573126e-13 + syst_JER_NP5: 3.07202661e-08 + syst_JER_NP6: 5.50228025e-16 + syst_JER_NP7: 1.49053774e-18 + syst_JER_NP8: 3.18275459e-05 + syst_JES_EtaIntercalibration_Modelling: 3.47321796e-03 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 5.1574246945544446e-14 - syst_JES_EtaIntercalibration_Stat101: 2.0340418715095244e-09 - syst_JES_EtaIntercalibration_Stat102: 1.8987004482210983e-13 - syst_JES_EtaIntercalibration_Stat103: 4.881278725907793e-17 + syst_JES_EtaIntercalibration_Stat100: 5.15742469e-14 + syst_JES_EtaIntercalibration_Stat101: 2.03404187e-09 + syst_JES_EtaIntercalibration_Stat102: 1.89870045e-13 + syst_JES_EtaIntercalibration_Stat103: 4.88127873e-17 syst_JES_EtaIntercalibration_Stat104: 0.0 syst_JES_EtaIntercalibration_Stat105: 0.0 syst_JES_EtaIntercalibration_Stat106: 0.0 @@ -31033,170 +31033,170 @@ bins: syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 syst_JES_EtaIntercalibration_Stat110: 0.0 - syst_JES_EtaIntercalibration_Stat111: 4.6722070534170464e-21 - syst_JES_EtaIntercalibration_Stat112: 8.0854697297064945e-16 - syst_JES_EtaIntercalibration_Stat113: 8.096150314110713e-08 - syst_JES_EtaIntercalibration_Stat114: 4.1018151357051667e-08 - syst_JES_EtaIntercalibration_Stat115: 1.7393041712133046e-08 - syst_JES_EtaIntercalibration_Stat116: 5.689017561334162e-13 + syst_JES_EtaIntercalibration_Stat111: 4.67220705e-21 + syst_JES_EtaIntercalibration_Stat112: 8.08546973e-16 + syst_JES_EtaIntercalibration_Stat113: 8.09615031e-08 + syst_JES_EtaIntercalibration_Stat114: 4.10181514e-08 + syst_JES_EtaIntercalibration_Stat115: 1.73930417e-08 + syst_JES_EtaIntercalibration_Stat116: 5.68901756e-13 syst_JES_EtaIntercalibration_Stat117: 0.0 syst_JES_EtaIntercalibration_Stat118: 0.0 - syst_JES_EtaIntercalibration_Stat119: 5.702776542603168e-13 + syst_JES_EtaIntercalibration_Stat119: 5.70277654e-13 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 1.079231730597219e-07 - syst_JES_EtaIntercalibration_Stat121: 3.6525619543000225e-07 - syst_JES_EtaIntercalibration_Stat122: 1.8775433416210233e-07 - syst_JES_EtaIntercalibration_Stat123: 8.046150188208023e-13 + syst_JES_EtaIntercalibration_Stat120: 1.07923173e-07 + syst_JES_EtaIntercalibration_Stat121: 3.65256195e-07 + syst_JES_EtaIntercalibration_Stat122: 1.87754334e-07 + syst_JES_EtaIntercalibration_Stat123: 8.04615019e-13 syst_JES_EtaIntercalibration_Stat124: 0.0 syst_JES_EtaIntercalibration_Stat125: 0.0 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 syst_JES_EtaIntercalibration_Stat128: 0.0 syst_JES_EtaIntercalibration_Stat129: 0.0 - syst_JES_EtaIntercalibration_Stat13: 5.714035809862627e-13 + syst_JES_EtaIntercalibration_Stat13: 5.71403581e-13 syst_JES_EtaIntercalibration_Stat130: 0.0 - syst_JES_EtaIntercalibration_Stat131: 6.664031362471217e-15 - syst_JES_EtaIntercalibration_Stat132: 2.9325353007599073e-08 - syst_JES_EtaIntercalibration_Stat133: 3.9587348888249644e-08 - syst_JES_EtaIntercalibration_Stat134: 2.878806188335714e-07 - syst_JES_EtaIntercalibration_Stat135: 1.0332153664975904e-10 + syst_JES_EtaIntercalibration_Stat131: 6.66403136e-15 + syst_JES_EtaIntercalibration_Stat132: 2.93253530e-08 + syst_JES_EtaIntercalibration_Stat133: 3.95873489e-08 + syst_JES_EtaIntercalibration_Stat134: 2.87880619e-07 + syst_JES_EtaIntercalibration_Stat135: 1.03321537e-10 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 - syst_JES_EtaIntercalibration_Stat138: 5.32967078876435e-13 - syst_JES_EtaIntercalibration_Stat139: 4.0452573465726503e-07 - syst_JES_EtaIntercalibration_Stat14: 7.73636456935685e-20 - syst_JES_EtaIntercalibration_Stat140: 3.0030628831244943e-10 - syst_JES_EtaIntercalibration_Stat141: 2.613319274409462e-07 - syst_JES_EtaIntercalibration_Stat142: 9.721046624042015e-10 + syst_JES_EtaIntercalibration_Stat138: 5.32967079e-13 + syst_JES_EtaIntercalibration_Stat139: 4.04525735e-07 + syst_JES_EtaIntercalibration_Stat14: 7.73636457e-20 + syst_JES_EtaIntercalibration_Stat140: 3.00306288e-10 + syst_JES_EtaIntercalibration_Stat141: 2.61331927e-07 + syst_JES_EtaIntercalibration_Stat142: 9.72104662e-10 syst_JES_EtaIntercalibration_Stat143: 0.0 syst_JES_EtaIntercalibration_Stat144: 0.0 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 syst_JES_EtaIntercalibration_Stat147: 0.0 syst_JES_EtaIntercalibration_Stat148: 0.0 - syst_JES_EtaIntercalibration_Stat149: 4.591209579316e-11 - syst_JES_EtaIntercalibration_Stat15: 7.149747270274663e-20 - syst_JES_EtaIntercalibration_Stat150: 2.7418364283815328e-08 - syst_JES_EtaIntercalibration_Stat151: 3.2754371560449757e-07 - syst_JES_EtaIntercalibration_Stat152: 2.827069647510475e-07 - syst_JES_EtaIntercalibration_Stat153: 1.20901876754995e-10 + syst_JES_EtaIntercalibration_Stat149: 4.59120958e-11 + syst_JES_EtaIntercalibration_Stat15: 7.14974727e-20 + syst_JES_EtaIntercalibration_Stat150: 2.74183643e-08 + syst_JES_EtaIntercalibration_Stat151: 3.27543716e-07 + syst_JES_EtaIntercalibration_Stat152: 2.82706965e-07 + syst_JES_EtaIntercalibration_Stat153: 1.20901877e-10 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 4.164716134580335e-14 - syst_JES_EtaIntercalibration_Stat157: 9.56345684101727e-07 - syst_JES_EtaIntercalibration_Stat158: 9.845465491788593e-07 - syst_JES_EtaIntercalibration_Stat159: 2.969988092147845e-07 + syst_JES_EtaIntercalibration_Stat156: 4.16471613e-14 + syst_JES_EtaIntercalibration_Stat157: 9.56345684e-07 + syst_JES_EtaIntercalibration_Stat158: 9.84546549e-07 + syst_JES_EtaIntercalibration_Stat159: 2.96998809e-07 syst_JES_EtaIntercalibration_Stat16: 0.0 - syst_JES_EtaIntercalibration_Stat160: 2.1060063408024203e-13 + syst_JES_EtaIntercalibration_Stat160: 2.10600634e-13 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 - syst_JES_EtaIntercalibration_Stat167: 1.6278521892358656e-08 - syst_JES_EtaIntercalibration_Stat168: 1.0045711361073442e-07 - syst_JES_EtaIntercalibration_Stat169: 1.0970484446914823e-06 + syst_JES_EtaIntercalibration_Stat167: 1.62785219e-08 + syst_JES_EtaIntercalibration_Stat168: 1.00457114e-07 + syst_JES_EtaIntercalibration_Stat169: 1.09704844e-06 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 6.691952405688493e-07 - syst_JES_EtaIntercalibration_Stat171: 7.175940862876449e-08 + syst_JES_EtaIntercalibration_Stat170: 6.69195241e-07 + syst_JES_EtaIntercalibration_Stat171: 7.17594086e-08 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 - syst_JES_EtaIntercalibration_Stat174: 7.898169817252588e-14 - syst_JES_EtaIntercalibration_Stat175: 7.917640557640894e-07 - syst_JES_EtaIntercalibration_Stat176: 1.0931149562145786e-06 - syst_JES_EtaIntercalibration_Stat177: 1.0525021235132972e-06 - syst_JES_EtaIntercalibration_Stat178: 1.5709656862898056e-07 + syst_JES_EtaIntercalibration_Stat174: 7.89816982e-14 + syst_JES_EtaIntercalibration_Stat175: 7.91764056e-07 + syst_JES_EtaIntercalibration_Stat176: 1.09311496e-06 + syst_JES_EtaIntercalibration_Stat177: 1.05250212e-06 + syst_JES_EtaIntercalibration_Stat178: 1.57096569e-07 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 syst_JES_EtaIntercalibration_Stat180: 0.0 syst_JES_EtaIntercalibration_Stat181: 0.0 syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 - syst_JES_EtaIntercalibration_Stat184: 1.501233115641938e-07 - syst_JES_EtaIntercalibration_Stat185: 1.9783343164136843e-06 - syst_JES_EtaIntercalibration_Stat186: 7.577763456324036e-06 - syst_JES_EtaIntercalibration_Stat187: 5.387645380869086e-06 - syst_JES_EtaIntercalibration_Stat188: 6.866757380306952e-07 + syst_JES_EtaIntercalibration_Stat184: 1.50123312e-07 + syst_JES_EtaIntercalibration_Stat185: 1.97833432e-06 + syst_JES_EtaIntercalibration_Stat186: 7.57776346e-06 + syst_JES_EtaIntercalibration_Stat187: 5.38764538e-06 + syst_JES_EtaIntercalibration_Stat188: 6.86675738e-07 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 - syst_JES_EtaIntercalibration_Stat191: 2.9010654508300913e-07 - syst_JES_EtaIntercalibration_Stat192: 6.188190426126202e-06 - syst_JES_EtaIntercalibration_Stat193: 8.616725291547827e-06 - syst_JES_EtaIntercalibration_Stat194: 2.3769650817797046e-06 - syst_JES_EtaIntercalibration_Stat195: 2.472319558633147e-07 - syst_JES_EtaIntercalibration_Stat196: 8.08634483249385e-13 + syst_JES_EtaIntercalibration_Stat191: 2.90106545e-07 + syst_JES_EtaIntercalibration_Stat192: 6.18819043e-06 + syst_JES_EtaIntercalibration_Stat193: 8.61672529e-06 + syst_JES_EtaIntercalibration_Stat194: 2.37696508e-06 + syst_JES_EtaIntercalibration_Stat195: 2.47231956e-07 + syst_JES_EtaIntercalibration_Stat196: 8.08634483e-13 syst_JES_EtaIntercalibration_Stat197: 0.0 syst_JES_EtaIntercalibration_Stat198: 0.0 - syst_JES_EtaIntercalibration_Stat199: 3.0819414059972e-07 + syst_JES_EtaIntercalibration_Stat199: 3.08194141e-07 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 3.990719484002853e-06 - syst_JES_EtaIntercalibration_Stat201: 1.5182262677216461e-05 - syst_JES_EtaIntercalibration_Stat202: 1.0945058371246816e-05 - syst_JES_EtaIntercalibration_Stat203: 1.5980100124842772e-07 + syst_JES_EtaIntercalibration_Stat200: 3.99071948e-06 + syst_JES_EtaIntercalibration_Stat201: 1.51822627e-05 + syst_JES_EtaIntercalibration_Stat202: 1.09450584e-05 + syst_JES_EtaIntercalibration_Stat203: 1.59801001e-07 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 - syst_JES_EtaIntercalibration_Stat206: 5.353776120646063e-07 - syst_JES_EtaIntercalibration_Stat207: 1.141334990263595e-05 - syst_JES_EtaIntercalibration_Stat208: 2.2330738904030923e-05 - syst_JES_EtaIntercalibration_Stat209: 4.701057105322164e-06 + syst_JES_EtaIntercalibration_Stat206: 5.35377612e-07 + syst_JES_EtaIntercalibration_Stat207: 1.14133499e-05 + syst_JES_EtaIntercalibration_Stat208: 2.23307389e-05 + syst_JES_EtaIntercalibration_Stat209: 4.70105711e-06 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 2.3959433277938777e-07 - syst_JES_EtaIntercalibration_Stat211: 8.526242240870242e-13 - syst_JES_EtaIntercalibration_Stat212: 1.379549458156539e-07 - syst_JES_EtaIntercalibration_Stat213: 4.784855771076073e-06 - syst_JES_EtaIntercalibration_Stat214: 1.5231279493200826e-05 - syst_JES_EtaIntercalibration_Stat215: 1.180070763768004e-05 - syst_JES_EtaIntercalibration_Stat216: 1.618323438006136e-07 + syst_JES_EtaIntercalibration_Stat210: 2.39594333e-07 + syst_JES_EtaIntercalibration_Stat211: 8.52624224e-13 + syst_JES_EtaIntercalibration_Stat212: 1.37954946e-07 + syst_JES_EtaIntercalibration_Stat213: 4.78485577e-06 + syst_JES_EtaIntercalibration_Stat214: 1.52312795e-05 + syst_JES_EtaIntercalibration_Stat215: 1.18007076e-05 + syst_JES_EtaIntercalibration_Stat216: 1.61832344e-07 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 - syst_JES_EtaIntercalibration_Stat219: 5.914979305754164e-07 + syst_JES_EtaIntercalibration_Stat219: 5.91497931e-07 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 1.4002103663378587e-05 - syst_JES_EtaIntercalibration_Stat221: 1.8664420698216165e-05 - syst_JES_EtaIntercalibration_Stat222: 4.7573447426059e-06 - syst_JES_EtaIntercalibration_Stat223: 3.0137684051698464e-07 - syst_JES_EtaIntercalibration_Stat224: 4.782214285808224e-07 - syst_JES_EtaIntercalibration_Stat225: 1.6251500699935375e-05 - syst_JES_EtaIntercalibration_Stat226: 4.781960058386101e-05 - syst_JES_EtaIntercalibration_Stat227: 3.6371026422139915e-05 - syst_JES_EtaIntercalibration_Stat228: 7.137919865058726e-07 + syst_JES_EtaIntercalibration_Stat220: 1.40021037e-05 + syst_JES_EtaIntercalibration_Stat221: 1.86644207e-05 + syst_JES_EtaIntercalibration_Stat222: 4.75734474e-06 + syst_JES_EtaIntercalibration_Stat223: 3.01376841e-07 + syst_JES_EtaIntercalibration_Stat224: 4.78221429e-07 + syst_JES_EtaIntercalibration_Stat225: 1.62515007e-05 + syst_JES_EtaIntercalibration_Stat226: 4.78196006e-05 + syst_JES_EtaIntercalibration_Stat227: 3.63710264e-05 + syst_JES_EtaIntercalibration_Stat228: 7.13791987e-07 syst_JES_EtaIntercalibration_Stat229: 0.0 syst_JES_EtaIntercalibration_Stat23: 0.0 syst_JES_EtaIntercalibration_Stat230: 0.0 - syst_JES_EtaIntercalibration_Stat231: 3.606129846252577e-07 - syst_JES_EtaIntercalibration_Stat232: 4.09344866829914e-05 - syst_JES_EtaIntercalibration_Stat233: 4.745631965291872e-05 - syst_JES_EtaIntercalibration_Stat234: 1.895025857343377e-05 - syst_JES_EtaIntercalibration_Stat235: 1.261647209008921e-06 - syst_JES_EtaIntercalibration_Stat236: 3.1498342813551317e-06 - syst_JES_EtaIntercalibration_Stat237: 1.1415284621944386e-05 - syst_JES_EtaIntercalibration_Stat238: 6.1646713416045144e-06 - syst_JES_EtaIntercalibration_Stat239: 1.4624560463480603e-07 + syst_JES_EtaIntercalibration_Stat231: 3.60612985e-07 + syst_JES_EtaIntercalibration_Stat232: 4.09344867e-05 + syst_JES_EtaIntercalibration_Stat233: 4.74563197e-05 + syst_JES_EtaIntercalibration_Stat234: 1.89502586e-05 + syst_JES_EtaIntercalibration_Stat235: 1.26164721e-06 + syst_JES_EtaIntercalibration_Stat236: 3.14983428e-06 + syst_JES_EtaIntercalibration_Stat237: 1.14152846e-05 + syst_JES_EtaIntercalibration_Stat238: 6.16467134e-06 + syst_JES_EtaIntercalibration_Stat239: 1.46245605e-07 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 - syst_JES_EtaIntercalibration_Stat242: 6.262362393697764e-08 - syst_JES_EtaIntercalibration_Stat243: 6.563154024552524e-06 - syst_JES_EtaIntercalibration_Stat244: 9.806485137397598e-06 - syst_JES_EtaIntercalibration_Stat245: 3.1434027342992493e-06 + syst_JES_EtaIntercalibration_Stat242: 6.26236239e-08 + syst_JES_EtaIntercalibration_Stat243: 6.56315402e-06 + syst_JES_EtaIntercalibration_Stat244: 9.80648514e-06 + syst_JES_EtaIntercalibration_Stat245: 3.14340273e-06 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 - syst_JES_EtaIntercalibration_Stat27: 2.340074094446584e-20 - syst_JES_EtaIntercalibration_Stat28: 8.426946838262762e-16 - syst_JES_EtaIntercalibration_Stat29: 6.609505889985132e-10 + syst_JES_EtaIntercalibration_Stat27: 2.34007409e-20 + syst_JES_EtaIntercalibration_Stat28: 8.42694684e-16 + syst_JES_EtaIntercalibration_Stat29: 6.60950589e-10 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 6.620764229795251e-10 - syst_JES_EtaIntercalibration_Stat31: 4.533642988811537e-21 + syst_JES_EtaIntercalibration_Stat30: 6.62076423e-10 + syst_JES_EtaIntercalibration_Stat31: 4.53364299e-21 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 - syst_JES_EtaIntercalibration_Stat34: 7.001815389597187e-22 - syst_JES_EtaIntercalibration_Stat35: 5.707988638137764e-13 - syst_JES_EtaIntercalibration_Stat36: 5.714096007560905e-13 - syst_JES_EtaIntercalibration_Stat37: 1.0587691046092154e-17 - syst_JES_EtaIntercalibration_Stat38: 1.8639099139979915e-20 + syst_JES_EtaIntercalibration_Stat34: 7.00181539e-22 + syst_JES_EtaIntercalibration_Stat35: 5.70798864e-13 + syst_JES_EtaIntercalibration_Stat36: 5.71409601e-13 + syst_JES_EtaIntercalibration_Stat37: 1.05876910e-17 + syst_JES_EtaIntercalibration_Stat38: 1.86390991e-20 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 syst_JES_EtaIntercalibration_Stat40: 0.0 @@ -31207,21 +31207,21 @@ bins: syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 syst_JES_EtaIntercalibration_Stat47: 0.0 - syst_JES_EtaIntercalibration_Stat48: 1.2947079786577358e-20 - syst_JES_EtaIntercalibration_Stat49: 7.880059454090432e-20 - syst_JES_EtaIntercalibration_Stat5: 1.097687199296776e-20 - syst_JES_EtaIntercalibration_Stat50: 8.695554294005644e-16 - syst_JES_EtaIntercalibration_Stat51: 6.54715780303924e-10 - syst_JES_EtaIntercalibration_Stat52: 6.580927091537831e-10 - syst_JES_EtaIntercalibration_Stat53: 2.8155110845990287e-20 - syst_JES_EtaIntercalibration_Stat54: 1.477439338856252e-20 + syst_JES_EtaIntercalibration_Stat48: 1.29470798e-20 + syst_JES_EtaIntercalibration_Stat49: 7.88005945e-20 + syst_JES_EtaIntercalibration_Stat5: 1.09768720e-20 + syst_JES_EtaIntercalibration_Stat50: 8.69555429e-16 + syst_JES_EtaIntercalibration_Stat51: 6.54715780e-10 + syst_JES_EtaIntercalibration_Stat52: 6.58092709e-10 + syst_JES_EtaIntercalibration_Stat53: 2.81551108e-20 + syst_JES_EtaIntercalibration_Stat54: 1.47743934e-20 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 3.037928735174675e-21 - syst_JES_EtaIntercalibration_Stat57: 5.633801891341495e-13 - syst_JES_EtaIntercalibration_Stat58: 5.691992827267155e-13 - syst_JES_EtaIntercalibration_Stat59: 2.907290491161831e-17 - syst_JES_EtaIntercalibration_Stat6: 2.598245694213694e-20 - syst_JES_EtaIntercalibration_Stat60: 2.4886219540139078e-19 + syst_JES_EtaIntercalibration_Stat56: 3.03792874e-21 + syst_JES_EtaIntercalibration_Stat57: 5.63380189e-13 + syst_JES_EtaIntercalibration_Stat58: 5.69199283e-13 + syst_JES_EtaIntercalibration_Stat59: 2.90729049e-17 + syst_JES_EtaIntercalibration_Stat6: 2.59824569e-20 + syst_JES_EtaIntercalibration_Stat60: 2.48862195e-19 syst_JES_EtaIntercalibration_Stat61: 0.0 syst_JES_EtaIntercalibration_Stat62: 0.0 syst_JES_EtaIntercalibration_Stat63: 0.0 @@ -31231,21 +31231,21 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 1.67513432297234e-19 - syst_JES_EtaIntercalibration_Stat70: 1.097687199296776e-20 - syst_JES_EtaIntercalibration_Stat71: 3.4674386050801245e-19 - syst_JES_EtaIntercalibration_Stat72: 1.8259437970540056e-15 - syst_JES_EtaIntercalibration_Stat73: 7.390717742929167e-09 - syst_JES_EtaIntercalibration_Stat74: 6.986363516701661e-10 - syst_JES_EtaIntercalibration_Stat75: 5.901682159139036e-19 - syst_JES_EtaIntercalibration_Stat76: 1.477439338856252e-20 + syst_JES_EtaIntercalibration_Stat7: 1.67513432e-19 + syst_JES_EtaIntercalibration_Stat70: 1.09768720e-20 + syst_JES_EtaIntercalibration_Stat71: 3.46743861e-19 + syst_JES_EtaIntercalibration_Stat72: 1.82594380e-15 + syst_JES_EtaIntercalibration_Stat73: 7.39071774e-09 + syst_JES_EtaIntercalibration_Stat74: 6.98636352e-10 + syst_JES_EtaIntercalibration_Stat75: 5.90168216e-19 + syst_JES_EtaIntercalibration_Stat76: 1.47743934e-20 syst_JES_EtaIntercalibration_Stat77: 0.0 - syst_JES_EtaIntercalibration_Stat78: 3.3404831985807084e-19 - syst_JES_EtaIntercalibration_Stat79: 5.321622041754093e-13 - syst_JES_EtaIntercalibration_Stat8: 2.5189319537256258e-20 - syst_JES_EtaIntercalibration_Stat80: 1.1445652433808952e-10 - syst_JES_EtaIntercalibration_Stat81: 8.088856092098252e-13 - syst_JES_EtaIntercalibration_Stat82: 2.713682507221506e-19 + syst_JES_EtaIntercalibration_Stat78: 3.34048320e-19 + syst_JES_EtaIntercalibration_Stat79: 5.32162204e-13 + syst_JES_EtaIntercalibration_Stat8: 2.51893195e-20 + syst_JES_EtaIntercalibration_Stat80: 1.14456524e-10 + syst_JES_EtaIntercalibration_Stat81: 8.08885609e-13 + syst_JES_EtaIntercalibration_Stat82: 2.71368251e-19 syst_JES_EtaIntercalibration_Stat83: 0.0 syst_JES_EtaIntercalibration_Stat84: 0.0 syst_JES_EtaIntercalibration_Stat85: 0.0 @@ -31255,113 +31255,113 @@ bins: syst_JES_EtaIntercalibration_Stat89: 0.0 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 9.403303834291434e-21 - syst_JES_EtaIntercalibration_Stat92: 6.221533269771608e-17 - syst_JES_EtaIntercalibration_Stat93: 2.5571161505688396e-15 - syst_JES_EtaIntercalibration_Stat94: 7.42781449064279e-09 - syst_JES_EtaIntercalibration_Stat95: 7.109176225660747e-10 - syst_JES_EtaIntercalibration_Stat96: 1.754138740236929e-18 - syst_JES_EtaIntercalibration_Stat97: 1.477439338856252e-20 + syst_JES_EtaIntercalibration_Stat91: 9.40330383e-21 + syst_JES_EtaIntercalibration_Stat92: 6.22153327e-17 + syst_JES_EtaIntercalibration_Stat93: 2.55711615e-15 + syst_JES_EtaIntercalibration_Stat94: 7.42781449e-09 + syst_JES_EtaIntercalibration_Stat95: 7.10917623e-10 + syst_JES_EtaIntercalibration_Stat96: 1.75413874e-18 + syst_JES_EtaIntercalibration_Stat97: 1.47743934e-20 syst_JES_EtaIntercalibration_Stat98: 0.0 - syst_JES_EtaIntercalibration_Stat99: 3.731694062852769e-14 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0004944493983210011 - syst_JES_Flavour_Comp: 0.0012422984303298464 - syst_JES_Flavour_Response: 7.173371226278479e-05 - syst_JES_Gjet_Generator: 0.0015935648716007768 - syst_JES_Gjet_OOC: 0.0013156482613145507 - syst_JES_Gjet_Purity: 0.0002342550052827047 - syst_JES_Gjet_Stat1: 4.06652219347196e-06 - syst_JES_Gjet_Stat10: 2.6093736317361682e-05 - syst_JES_Gjet_Stat11: 2.643691500534811e-05 - syst_JES_Gjet_Stat12: 8.68914821774839e-05 - syst_JES_Gjet_Stat13: 0.0002650892444064829 - syst_JES_Gjet_Stat14: 0.0007217388360757649 - syst_JES_Gjet_Stat15: 0.0008235509941709743 - syst_JES_Gjet_Stat2: 4.288549026185896e-06 - syst_JES_Gjet_Stat3: 5.9529322948862775e-06 - syst_JES_Gjet_Stat4: 6.320585653244485e-06 - syst_JES_Gjet_Stat5: 6.015733766549182e-06 - syst_JES_Gjet_Stat6: 1.4291389951645712e-05 - syst_JES_Gjet_Stat7: 1.610752962902754e-05 - syst_JES_Gjet_Stat8: 1.2957726912927282e-05 - syst_JES_Gjet_Stat9: 1.6232358885879775e-05 - syst_JES_Gjet_Veto: 0.0013234677593353 - syst_JES_Gjet_dPhi: 0.0001342039887633747 - syst_JES_LArESZee: 0.002412150078249693 - syst_JES_LArEsmear: 0.00020733245645580914 - syst_JES_LAr_JVT: 0.0002566613089267644 - syst_JES_MJB_Alpha: 1.4875993034080112e-05 - syst_JES_MJB_Asym: 0.0002700878884733635 - syst_JES_MJB_Beta: 1.7791017396427895e-05 - syst_JES_MJB_Fragmentation: 0.0001517437642870375 - syst_JES_MJB_Stat1: 6.085560512393249e-07 - syst_JES_MJB_Stat10: 2.353687479254627e-05 - syst_JES_MJB_Stat11: 2.8109621128716763e-05 - syst_JES_MJB_Stat12: 4.146962502844703e-05 - syst_JES_MJB_Stat13: 2.962208762055774e-05 - syst_JES_MJB_Stat14: 1.1669366853004493e-05 - syst_JES_MJB_Stat15: 4.438208281502795e-06 - syst_JES_MJB_Stat16: 2.0962724059625455e-05 + syst_JES_EtaIntercalibration_Stat99: 3.73169406e-14 + syst_JES_EtaIntercalibration_TotalStat_MJB: 4.94449398e-04 + syst_JES_Flavour_Comp: 1.24229843e-03 + syst_JES_Flavour_Response: 7.17337123e-05 + syst_JES_Gjet_Generator: 1.59356487e-03 + syst_JES_Gjet_OOC: 1.31564826e-03 + syst_JES_Gjet_Purity: 2.34255005e-04 + syst_JES_Gjet_Stat1: 4.06652219e-06 + syst_JES_Gjet_Stat10: 2.60937363e-05 + syst_JES_Gjet_Stat11: 2.64369150e-05 + syst_JES_Gjet_Stat12: 8.68914822e-05 + syst_JES_Gjet_Stat13: 2.65089244e-04 + syst_JES_Gjet_Stat14: 7.21738836e-04 + syst_JES_Gjet_Stat15: 8.23550994e-04 + syst_JES_Gjet_Stat2: 4.28854903e-06 + syst_JES_Gjet_Stat3: 5.95293229e-06 + syst_JES_Gjet_Stat4: 6.32058565e-06 + syst_JES_Gjet_Stat5: 6.01573377e-06 + syst_JES_Gjet_Stat6: 1.42913900e-05 + syst_JES_Gjet_Stat7: 1.61075296e-05 + syst_JES_Gjet_Stat8: 1.29577269e-05 + syst_JES_Gjet_Stat9: 1.62323589e-05 + syst_JES_Gjet_Veto: 1.32346776e-03 + syst_JES_Gjet_dPhi: 1.34203989e-04 + syst_JES_LArESZee: 2.41215008e-03 + syst_JES_LArEsmear: 2.07332456e-04 + syst_JES_LAr_JVT: 2.56661309e-04 + syst_JES_MJB_Alpha: 1.48759930e-05 + syst_JES_MJB_Asym: 2.70087888e-04 + syst_JES_MJB_Beta: 1.77910174e-05 + syst_JES_MJB_Fragmentation: 1.51743764e-04 + syst_JES_MJB_Stat1: 6.08556051e-07 + syst_JES_MJB_Stat10: 2.35368748e-05 + syst_JES_MJB_Stat11: 2.81096211e-05 + syst_JES_MJB_Stat12: 4.14696250e-05 + syst_JES_MJB_Stat13: 2.96220876e-05 + syst_JES_MJB_Stat14: 1.16693669e-05 + syst_JES_MJB_Stat15: 4.43820828e-06 + syst_JES_MJB_Stat16: 2.09627241e-05 syst_JES_MJB_Stat2: 0.0 - syst_JES_MJB_Stat3: 1.9017917867106272e-06 - syst_JES_MJB_Stat4: 1.0421749709141936e-06 - syst_JES_MJB_Stat5: 1.9191122947863162e-06 - syst_JES_MJB_Stat6: 6.171414829680468e-06 - syst_JES_MJB_Stat7: 9.877381877299268e-06 - syst_JES_MJB_Stat8: 1.280322688817159e-05 - syst_JES_MJB_Stat9: 1.7007010319277166e-05 - syst_JES_MJB_Threshold: 0.0001818338458593449 - syst_JES_Pileup_MuOffset: 0.0003175540268993609 - syst_JES_Pileup_NPVOffset: 0.00032727777193081723 - syst_JES_Pileup_Pt_term: 0.00022219326609958278 - syst_JES_Pileup_Rho_topology: 0.0004365348869219962 - syst_JES_PunchThrough_MC15: 0.0003136515702176541 - syst_JES_SingleParticle_HighPt: 9.494783449347332e-12 - syst_JES_Zjet_MC: 0.0006159740578952981 - syst_JES_Zjet_MuScale: 4.920855819875238e-05 - syst_JES_Zjet_MuSmearID: 1.2199987540977244e-05 - syst_JES_Zjet_MuSmearMS: 0.00017063020688025903 - syst_JES_Zjet_OOC: 0.0003584311091409338 - syst_JES_Zjet_Stat1: 2.8403251134333197e-05 - syst_JES_Zjet_Stat10: 3.0825000811030005e-05 - syst_JES_Zjet_Stat11: 4.2921945435872316e-05 - syst_JES_Zjet_Stat12: 0.00011539595346024919 - syst_JES_Zjet_Stat13: 0.0001794750400473559 - syst_JES_Zjet_Stat2: 1.1514673768717896e-07 - syst_JES_Zjet_Stat3: 1.4553079674075862e-05 - syst_JES_Zjet_Stat4: 1.4266087165021808e-05 - syst_JES_Zjet_Stat5: 1.7154570819463832e-05 - syst_JES_Zjet_Stat6: 1.4075424354171351e-05 - syst_JES_Zjet_Stat7: 1.4491501328364844e-05 - syst_JES_Zjet_Stat8: 1.3464107842705362e-05 - syst_JES_Zjet_Stat9: 1.8508665538066216e-05 - syst_JES_Zjet_Veto: 7.959388717106358e-05 - syst_JES_Zjet_dPhi: 7.266898857146699e-05 + syst_JES_MJB_Stat3: 1.90179179e-06 + syst_JES_MJB_Stat4: 1.04217497e-06 + syst_JES_MJB_Stat5: 1.91911229e-06 + syst_JES_MJB_Stat6: 6.17141483e-06 + syst_JES_MJB_Stat7: 9.87738188e-06 + syst_JES_MJB_Stat8: 1.28032269e-05 + syst_JES_MJB_Stat9: 1.70070103e-05 + syst_JES_MJB_Threshold: 1.81833846e-04 + syst_JES_Pileup_MuOffset: 3.17554027e-04 + syst_JES_Pileup_NPVOffset: 3.27277772e-04 + syst_JES_Pileup_Pt_term: 2.22193266e-04 + syst_JES_Pileup_Rho_topology: 4.36534887e-04 + syst_JES_PunchThrough_MC15: 3.13651570e-04 + syst_JES_SingleParticle_HighPt: 9.49478345e-12 + syst_JES_Zjet_MC: 6.15974058e-04 + syst_JES_Zjet_MuScale: 4.92085582e-05 + syst_JES_Zjet_MuSmearID: 1.21999875e-05 + syst_JES_Zjet_MuSmearMS: 1.70630207e-04 + syst_JES_Zjet_OOC: 3.58431109e-04 + syst_JES_Zjet_Stat1: 2.84032511e-05 + syst_JES_Zjet_Stat10: 3.08250008e-05 + syst_JES_Zjet_Stat11: 4.29219454e-05 + syst_JES_Zjet_Stat12: 1.15395953e-04 + syst_JES_Zjet_Stat13: 1.79475040e-04 + syst_JES_Zjet_Stat2: 1.15146738e-07 + syst_JES_Zjet_Stat3: 1.45530797e-05 + syst_JES_Zjet_Stat4: 1.42660872e-05 + syst_JES_Zjet_Stat5: 1.71545708e-05 + syst_JES_Zjet_Stat6: 1.40754244e-05 + syst_JES_Zjet_Stat7: 1.44915013e-05 + syst_JES_Zjet_Stat8: 1.34641078e-05 + syst_JES_Zjet_Stat9: 1.85086655e-05 + syst_JES_Zjet_Veto: 7.95938872e-05 + syst_JES_Zjet_dPhi: 7.26689886e-05 syst_PRW: 0.0 - syst_Unfolding_bias: 6.304e-05 - syst_cleaning: 0.0003816573954478021 + syst_Unfolding_bias: 6.30400000e-05 + syst_cleaning: 3.81657395e-04 syst_lumi: 0.00129 -- stat: 0.0004201 +- stat: 4.20100000e-04 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.00023671130095540436 - syst_JER_NP1: 4.048953568516192e-05 - syst_JER_NP2: 0.00016830339234549018 - syst_JER_NP3: 1.2431215336804362e-05 - syst_JER_NP4: 2.0715102582415565e-14 - syst_JER_NP5: 5.190612153255216e-09 - syst_JER_NP6: 1.2288607437378738e-16 - syst_JER_NP7: 4.341101588306822e-19 - syst_JER_NP8: 1.9537299583105135e-05 - syst_JES_EtaIntercalibration_Modelling: 0.0022645809214951887 + syst_JER_NP0: 2.36711301e-04 + syst_JER_NP1: 4.04895357e-05 + syst_JER_NP2: 1.68303392e-04 + syst_JER_NP3: 1.24312153e-05 + syst_JER_NP4: 2.07151026e-14 + syst_JER_NP5: 5.19061215e-09 + syst_JER_NP6: 1.22886074e-16 + syst_JER_NP7: 4.34110159e-19 + syst_JER_NP8: 1.95372996e-05 + syst_JES_EtaIntercalibration_Modelling: 2.26458092e-03 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 8.116627444326862e-15 - syst_JES_EtaIntercalibration_Stat101: 3.950405527520373e-10 - syst_JES_EtaIntercalibration_Stat102: 3.017880078382837e-14 - syst_JES_EtaIntercalibration_Stat103: 1.0153720894332283e-17 + syst_JES_EtaIntercalibration_Stat100: 8.11662744e-15 + syst_JES_EtaIntercalibration_Stat101: 3.95040553e-10 + syst_JES_EtaIntercalibration_Stat102: 3.01788008e-14 + syst_JES_EtaIntercalibration_Stat103: 1.01537209e-17 syst_JES_EtaIntercalibration_Stat104: 0.0 syst_JES_EtaIntercalibration_Stat105: 0.0 syst_JES_EtaIntercalibration_Stat106: 0.0 @@ -31370,170 +31370,170 @@ bins: syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 syst_JES_EtaIntercalibration_Stat110: 0.0 - syst_JES_EtaIntercalibration_Stat111: 1.3284829694053289e-21 - syst_JES_EtaIntercalibration_Stat112: 1.4739891451432064e-16 - syst_JES_EtaIntercalibration_Stat113: 5.331870130931095e-08 - syst_JES_EtaIntercalibration_Stat114: 1.0153240416048218e-07 - syst_JES_EtaIntercalibration_Stat115: 1.7781908652335384e-07 - syst_JES_EtaIntercalibration_Stat116: 9.100379883289284e-14 + syst_JES_EtaIntercalibration_Stat111: 1.32848297e-21 + syst_JES_EtaIntercalibration_Stat112: 1.47398915e-16 + syst_JES_EtaIntercalibration_Stat113: 5.33187013e-08 + syst_JES_EtaIntercalibration_Stat114: 1.01532404e-07 + syst_JES_EtaIntercalibration_Stat115: 1.77819087e-07 + syst_JES_EtaIntercalibration_Stat116: 9.10037988e-14 syst_JES_EtaIntercalibration_Stat117: 0.0 syst_JES_EtaIntercalibration_Stat118: 0.0 - syst_JES_EtaIntercalibration_Stat119: 9.150422365928736e-14 + syst_JES_EtaIntercalibration_Stat119: 9.15042237e-14 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 4.703369418906527e-08 - syst_JES_EtaIntercalibration_Stat121: 1.9552206591776284e-07 - syst_JES_EtaIntercalibration_Stat122: 1.1701735707711992e-07 - syst_JES_EtaIntercalibration_Stat123: 1.276790470946584e-13 + syst_JES_EtaIntercalibration_Stat120: 4.70336942e-08 + syst_JES_EtaIntercalibration_Stat121: 1.95522066e-07 + syst_JES_EtaIntercalibration_Stat122: 1.17017357e-07 + syst_JES_EtaIntercalibration_Stat123: 1.27679047e-13 syst_JES_EtaIntercalibration_Stat124: 0.0 syst_JES_EtaIntercalibration_Stat125: 0.0 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 syst_JES_EtaIntercalibration_Stat128: 0.0 syst_JES_EtaIntercalibration_Stat129: 0.0 - syst_JES_EtaIntercalibration_Stat13: 9.169477489400166e-14 + syst_JES_EtaIntercalibration_Stat13: 9.16947749e-14 syst_JES_EtaIntercalibration_Stat130: 0.0 - syst_JES_EtaIntercalibration_Stat131: 1.0547537627332742e-15 - syst_JES_EtaIntercalibration_Stat132: 1.3267398580901558e-07 - syst_JES_EtaIntercalibration_Stat133: 1.0306394805168294e-08 - syst_JES_EtaIntercalibration_Stat134: 2.0881134326228546e-08 - syst_JES_EtaIntercalibration_Stat135: 1.7540845925789897e-11 + syst_JES_EtaIntercalibration_Stat131: 1.05475376e-15 + syst_JES_EtaIntercalibration_Stat132: 1.32673986e-07 + syst_JES_EtaIntercalibration_Stat133: 1.03063948e-08 + syst_JES_EtaIntercalibration_Stat134: 2.08811343e-08 + syst_JES_EtaIntercalibration_Stat135: 1.75408459e-11 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 - syst_JES_EtaIntercalibration_Stat138: 8.558626862702728e-14 - syst_JES_EtaIntercalibration_Stat139: 1.8431857767192109e-07 - syst_JES_EtaIntercalibration_Stat14: 2.0151434955109277e-20 - syst_JES_EtaIntercalibration_Stat140: 4.889310790643196e-11 - syst_JES_EtaIntercalibration_Stat141: 1.854406542178656e-07 - syst_JES_EtaIntercalibration_Stat142: 1.88792042735186e-10 + syst_JES_EtaIntercalibration_Stat138: 8.55862686e-14 + syst_JES_EtaIntercalibration_Stat139: 1.84318578e-07 + syst_JES_EtaIntercalibration_Stat14: 2.01514350e-20 + syst_JES_EtaIntercalibration_Stat140: 4.88931079e-11 + syst_JES_EtaIntercalibration_Stat141: 1.85440654e-07 + syst_JES_EtaIntercalibration_Stat142: 1.88792043e-10 syst_JES_EtaIntercalibration_Stat143: 0.0 syst_JES_EtaIntercalibration_Stat144: 0.0 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 syst_JES_EtaIntercalibration_Stat147: 0.0 syst_JES_EtaIntercalibration_Stat148: 0.0 - syst_JES_EtaIntercalibration_Stat149: 8.176954729052298e-12 - syst_JES_EtaIntercalibration_Stat15: 1.8413398048160473e-20 - syst_JES_EtaIntercalibration_Stat150: 1.2739233689669092e-07 - syst_JES_EtaIntercalibration_Stat151: 2.0631861004152653e-07 - syst_JES_EtaIntercalibration_Stat152: 1.9608888542699202e-08 - syst_JES_EtaIntercalibration_Stat153: 2.053590134803133e-11 + syst_JES_EtaIntercalibration_Stat149: 8.17695473e-12 + syst_JES_EtaIntercalibration_Stat15: 1.84133980e-20 + syst_JES_EtaIntercalibration_Stat150: 1.27392337e-07 + syst_JES_EtaIntercalibration_Stat151: 2.06318610e-07 + syst_JES_EtaIntercalibration_Stat152: 1.96088885e-08 + syst_JES_EtaIntercalibration_Stat153: 2.05359013e-11 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 6.3540282950171845e-15 - syst_JES_EtaIntercalibration_Stat157: 4.905637038142956e-07 - syst_JES_EtaIntercalibration_Stat158: 7.726651085690359e-07 - syst_JES_EtaIntercalibration_Stat159: 1.8729302176803064e-07 + syst_JES_EtaIntercalibration_Stat156: 6.35402830e-15 + syst_JES_EtaIntercalibration_Stat157: 4.90563704e-07 + syst_JES_EtaIntercalibration_Stat158: 7.72665109e-07 + syst_JES_EtaIntercalibration_Stat159: 1.87293022e-07 syst_JES_EtaIntercalibration_Stat16: 0.0 - syst_JES_EtaIntercalibration_Stat160: 3.3961313917456136e-14 + syst_JES_EtaIntercalibration_Stat160: 3.39613139e-14 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 - syst_JES_EtaIntercalibration_Stat167: 3.1433045956004645e-09 - syst_JES_EtaIntercalibration_Stat168: 1.1809578612296038e-07 - syst_JES_EtaIntercalibration_Stat169: 7.340671682482468e-07 + syst_JES_EtaIntercalibration_Stat167: 3.14330460e-09 + syst_JES_EtaIntercalibration_Stat168: 1.18095786e-07 + syst_JES_EtaIntercalibration_Stat169: 7.34067168e-07 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 5.082936823333534e-07 - syst_JES_EtaIntercalibration_Stat171: 2.323683925838452e-08 + syst_JES_EtaIntercalibration_Stat170: 5.08293682e-07 + syst_JES_EtaIntercalibration_Stat171: 2.32368393e-08 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 - syst_JES_EtaIntercalibration_Stat174: 1.3484058030439163e-14 - syst_JES_EtaIntercalibration_Stat175: 6.144757358919878e-07 - syst_JES_EtaIntercalibration_Stat176: 8.278887651731964e-07 - syst_JES_EtaIntercalibration_Stat177: 7.988071448572553e-07 - syst_JES_EtaIntercalibration_Stat178: 1.071460688732909e-07 + syst_JES_EtaIntercalibration_Stat174: 1.34840580e-14 + syst_JES_EtaIntercalibration_Stat175: 6.14475736e-07 + syst_JES_EtaIntercalibration_Stat176: 8.27888765e-07 + syst_JES_EtaIntercalibration_Stat177: 7.98807145e-07 + syst_JES_EtaIntercalibration_Stat178: 1.07146069e-07 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 syst_JES_EtaIntercalibration_Stat180: 0.0 syst_JES_EtaIntercalibration_Stat181: 0.0 syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 - syst_JES_EtaIntercalibration_Stat184: 7.564277543162995e-08 - syst_JES_EtaIntercalibration_Stat185: 1.3085273860336283e-06 - syst_JES_EtaIntercalibration_Stat186: 5.095090848061494e-06 - syst_JES_EtaIntercalibration_Stat187: 3.6500419011293555e-06 - syst_JES_EtaIntercalibration_Stat188: 4.2390695992752937e-07 + syst_JES_EtaIntercalibration_Stat184: 7.56427754e-08 + syst_JES_EtaIntercalibration_Stat185: 1.30852739e-06 + syst_JES_EtaIntercalibration_Stat186: 5.09509085e-06 + syst_JES_EtaIntercalibration_Stat187: 3.65004190e-06 + syst_JES_EtaIntercalibration_Stat188: 4.23906960e-07 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 - syst_JES_EtaIntercalibration_Stat191: 1.7935239056115196e-07 - syst_JES_EtaIntercalibration_Stat192: 4.424469770492278e-06 - syst_JES_EtaIntercalibration_Stat193: 6.489634273208314e-06 - syst_JES_EtaIntercalibration_Stat194: 1.7750247885593036e-06 - syst_JES_EtaIntercalibration_Stat195: 1.661374938868406e-07 - syst_JES_EtaIntercalibration_Stat196: 1.2828908132319758e-13 + syst_JES_EtaIntercalibration_Stat191: 1.79352391e-07 + syst_JES_EtaIntercalibration_Stat192: 4.42446977e-06 + syst_JES_EtaIntercalibration_Stat193: 6.48963427e-06 + syst_JES_EtaIntercalibration_Stat194: 1.77502479e-06 + syst_JES_EtaIntercalibration_Stat195: 1.66137494e-07 + syst_JES_EtaIntercalibration_Stat196: 1.28289081e-13 syst_JES_EtaIntercalibration_Stat197: 0.0 syst_JES_EtaIntercalibration_Stat198: 0.0 - syst_JES_EtaIntercalibration_Stat199: 3.7842371754423636e-07 + syst_JES_EtaIntercalibration_Stat199: 3.78423718e-07 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 2.508086122923214e-06 - syst_JES_EtaIntercalibration_Stat201: 9.602831457440039e-06 - syst_JES_EtaIntercalibration_Stat202: 7.009969240303412e-06 - syst_JES_EtaIntercalibration_Stat203: 7.170879356815315e-08 + syst_JES_EtaIntercalibration_Stat200: 2.50808612e-06 + syst_JES_EtaIntercalibration_Stat201: 9.60283146e-06 + syst_JES_EtaIntercalibration_Stat202: 7.00996924e-06 + syst_JES_EtaIntercalibration_Stat203: 7.17087936e-08 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 - syst_JES_EtaIntercalibration_Stat206: 2.457270168296518e-07 - syst_JES_EtaIntercalibration_Stat207: 7.978749150086121e-06 - syst_JES_EtaIntercalibration_Stat208: 1.514016512459491e-05 - syst_JES_EtaIntercalibration_Stat209: 3.2468449300821255e-06 + syst_JES_EtaIntercalibration_Stat206: 2.45727017e-07 + syst_JES_EtaIntercalibration_Stat207: 7.97874915e-06 + syst_JES_EtaIntercalibration_Stat208: 1.51401651e-05 + syst_JES_EtaIntercalibration_Stat209: 3.24684493e-06 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 1.3775946329744464e-07 - syst_JES_EtaIntercalibration_Stat211: 1.3538974143837488e-13 - syst_JES_EtaIntercalibration_Stat212: 9.233640276185769e-08 - syst_JES_EtaIntercalibration_Stat213: 3.1067160716743977e-06 - syst_JES_EtaIntercalibration_Stat214: 1.0164236223150266e-05 - syst_JES_EtaIntercalibration_Stat215: 7.931784288544413e-06 - syst_JES_EtaIntercalibration_Stat216: 6.764047900480894e-08 + syst_JES_EtaIntercalibration_Stat210: 1.37759463e-07 + syst_JES_EtaIntercalibration_Stat211: 1.35389741e-13 + syst_JES_EtaIntercalibration_Stat212: 9.23364028e-08 + syst_JES_EtaIntercalibration_Stat213: 3.10671607e-06 + syst_JES_EtaIntercalibration_Stat214: 1.01642362e-05 + syst_JES_EtaIntercalibration_Stat215: 7.93178429e-06 + syst_JES_EtaIntercalibration_Stat216: 6.76404790e-08 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 - syst_JES_EtaIntercalibration_Stat219: 2.859149420282193e-07 + syst_JES_EtaIntercalibration_Stat219: 2.85914942e-07 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 8.952677630184166e-06 - syst_JES_EtaIntercalibration_Stat221: 1.2447140103252634e-05 - syst_JES_EtaIntercalibration_Stat222: 3.2688393582432283e-06 - syst_JES_EtaIntercalibration_Stat223: 1.4306739670518926e-07 - syst_JES_EtaIntercalibration_Stat224: 3.089116114057575e-07 - syst_JES_EtaIntercalibration_Stat225: 1.0242616011058892e-05 - syst_JES_EtaIntercalibration_Stat226: 3.124486317780892e-05 - syst_JES_EtaIntercalibration_Stat227: 2.3473314103466514e-05 - syst_JES_EtaIntercalibration_Stat228: 2.7142888571410375e-07 + syst_JES_EtaIntercalibration_Stat220: 8.95267763e-06 + syst_JES_EtaIntercalibration_Stat221: 1.24471401e-05 + syst_JES_EtaIntercalibration_Stat222: 3.26883936e-06 + syst_JES_EtaIntercalibration_Stat223: 1.43067397e-07 + syst_JES_EtaIntercalibration_Stat224: 3.08911611e-07 + syst_JES_EtaIntercalibration_Stat225: 1.02426160e-05 + syst_JES_EtaIntercalibration_Stat226: 3.12448632e-05 + syst_JES_EtaIntercalibration_Stat227: 2.34733141e-05 + syst_JES_EtaIntercalibration_Stat228: 2.71428886e-07 syst_JES_EtaIntercalibration_Stat229: 0.0 syst_JES_EtaIntercalibration_Stat23: 0.0 syst_JES_EtaIntercalibration_Stat230: 0.0 - syst_JES_EtaIntercalibration_Stat231: 2.2265565353119682e-07 - syst_JES_EtaIntercalibration_Stat232: 2.7351919036879296e-05 - syst_JES_EtaIntercalibration_Stat233: 3.158815917396897e-05 - syst_JES_EtaIntercalibration_Stat234: 1.413653567002892e-05 - syst_JES_EtaIntercalibration_Stat235: 7.019536808080716e-07 - syst_JES_EtaIntercalibration_Stat236: 2.1198292384057732e-06 - syst_JES_EtaIntercalibration_Stat237: 7.58090210660974e-06 - syst_JES_EtaIntercalibration_Stat238: 4.213057885906625e-06 - syst_JES_EtaIntercalibration_Stat239: 5.999905561756785e-08 + syst_JES_EtaIntercalibration_Stat231: 2.22655654e-07 + syst_JES_EtaIntercalibration_Stat232: 2.73519190e-05 + syst_JES_EtaIntercalibration_Stat233: 3.15881592e-05 + syst_JES_EtaIntercalibration_Stat234: 1.41365357e-05 + syst_JES_EtaIntercalibration_Stat235: 7.01953681e-07 + syst_JES_EtaIntercalibration_Stat236: 2.11982924e-06 + syst_JES_EtaIntercalibration_Stat237: 7.58090211e-06 + syst_JES_EtaIntercalibration_Stat238: 4.21305789e-06 + syst_JES_EtaIntercalibration_Stat239: 5.99990556e-08 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 - syst_JES_EtaIntercalibration_Stat242: 5.0192056144374074e-08 - syst_JES_EtaIntercalibration_Stat243: 4.6153451387734806e-06 - syst_JES_EtaIntercalibration_Stat244: 6.560790196310197e-06 - syst_JES_EtaIntercalibration_Stat245: 2.2442287650772144e-06 + syst_JES_EtaIntercalibration_Stat242: 5.01920561e-08 + syst_JES_EtaIntercalibration_Stat243: 4.61534514e-06 + syst_JES_EtaIntercalibration_Stat244: 6.56079020e-06 + syst_JES_EtaIntercalibration_Stat245: 2.24422877e-06 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 - syst_JES_EtaIntercalibration_Stat27: 6.643628733606356e-21 - syst_JES_EtaIntercalibration_Stat28: 1.5366643659466395e-16 - syst_JES_EtaIntercalibration_Stat29: 1.3639900128091664e-10 + syst_JES_EtaIntercalibration_Stat27: 6.64362873e-21 + syst_JES_EtaIntercalibration_Stat28: 1.53666437e-16 + syst_JES_EtaIntercalibration_Stat29: 1.36399001e-10 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 1.3665880910190175e-10 - syst_JES_EtaIntercalibration_Stat31: 1.3025022072917956e-21 + syst_JES_EtaIntercalibration_Stat30: 1.36658809e-10 + syst_JES_EtaIntercalibration_Stat31: 1.30250221e-21 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 - syst_JES_EtaIntercalibration_Stat34: 2.1520731284043303e-22 - syst_JES_EtaIntercalibration_Stat35: 9.159982560232733e-14 - syst_JES_EtaIntercalibration_Stat36: 9.172195521943177e-14 - syst_JES_EtaIntercalibration_Stat37: 1.894098477343509e-18 - syst_JES_EtaIntercalibration_Stat38: 3.7639296629320795e-21 + syst_JES_EtaIntercalibration_Stat34: 2.15207313e-22 + syst_JES_EtaIntercalibration_Stat35: 9.15998256e-14 + syst_JES_EtaIntercalibration_Stat36: 9.17219552e-14 + syst_JES_EtaIntercalibration_Stat37: 1.89409848e-18 + syst_JES_EtaIntercalibration_Stat38: 3.76392966e-21 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 syst_JES_EtaIntercalibration_Stat40: 0.0 @@ -31544,21 +31544,21 @@ bins: syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 syst_JES_EtaIntercalibration_Stat47: 0.0 - syst_JES_EtaIntercalibration_Stat48: 3.635574645087073e-21 - syst_JES_EtaIntercalibration_Stat49: 2.058478245573657e-20 - syst_JES_EtaIntercalibration_Stat5: 3.051873522936362e-21 - syst_JES_EtaIntercalibration_Stat50: 1.5861660403312134e-16 - syst_JES_EtaIntercalibration_Stat51: 1.3510005756061132e-10 - syst_JES_EtaIntercalibration_Stat52: 1.3579278434743432e-10 - syst_JES_EtaIntercalibration_Stat53: 6.547353110227063e-21 - syst_JES_EtaIntercalibration_Stat54: 2.8925248486400253e-21 + syst_JES_EtaIntercalibration_Stat48: 3.63557465e-21 + syst_JES_EtaIntercalibration_Stat49: 2.05847825e-20 + syst_JES_EtaIntercalibration_Stat5: 3.05187352e-21 + syst_JES_EtaIntercalibration_Stat50: 1.58616604e-16 + syst_JES_EtaIntercalibration_Stat51: 1.35100058e-10 + syst_JES_EtaIntercalibration_Stat52: 1.35792784e-10 + syst_JES_EtaIntercalibration_Stat53: 6.54735311e-21 + syst_JES_EtaIntercalibration_Stat54: 2.89252485e-21 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 8.848003221066322e-22 - syst_JES_EtaIntercalibration_Stat57: 9.044476168258281e-14 - syst_JES_EtaIntercalibration_Stat58: 9.13573553620171e-14 - syst_JES_EtaIntercalibration_Stat59: 5.801448504468518e-18 - syst_JES_EtaIntercalibration_Stat6: 7.378176197408139e-21 - syst_JES_EtaIntercalibration_Stat60: 6.025769660383643e-20 + syst_JES_EtaIntercalibration_Stat56: 8.84800322e-22 + syst_JES_EtaIntercalibration_Stat57: 9.04447617e-14 + syst_JES_EtaIntercalibration_Stat58: 9.13573554e-14 + syst_JES_EtaIntercalibration_Stat59: 5.80144850e-18 + syst_JES_EtaIntercalibration_Stat6: 7.37817620e-21 + syst_JES_EtaIntercalibration_Stat60: 6.02576966e-20 syst_JES_EtaIntercalibration_Stat61: 0.0 syst_JES_EtaIntercalibration_Stat62: 0.0 syst_JES_EtaIntercalibration_Stat63: 0.0 @@ -31568,21 +31568,21 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 4.0675086576429067e-20 - syst_JES_EtaIntercalibration_Stat70: 3.051873522936362e-21 - syst_JES_EtaIntercalibration_Stat71: 8.374803340974641e-20 - syst_JES_EtaIntercalibration_Stat72: 3.0090103157018255e-16 - syst_JES_EtaIntercalibration_Stat73: 1.8175064999417938e-09 - syst_JES_EtaIntercalibration_Stat74: 1.4206921798897886e-10 - syst_JES_EtaIntercalibration_Stat75: 1.1662885009722082e-19 - syst_JES_EtaIntercalibration_Stat76: 2.8925248486400253e-21 + syst_JES_EtaIntercalibration_Stat7: 4.06750866e-20 + syst_JES_EtaIntercalibration_Stat70: 3.05187352e-21 + syst_JES_EtaIntercalibration_Stat71: 8.37480334e-20 + syst_JES_EtaIntercalibration_Stat72: 3.00901032e-16 + syst_JES_EtaIntercalibration_Stat73: 1.81750650e-09 + syst_JES_EtaIntercalibration_Stat74: 1.42069218e-10 + syst_JES_EtaIntercalibration_Stat75: 1.16628850e-19 + syst_JES_EtaIntercalibration_Stat76: 2.89252485e-21 syst_JES_EtaIntercalibration_Stat77: 0.0 - syst_JES_EtaIntercalibration_Stat78: 7.836764431192252e-20 - syst_JES_EtaIntercalibration_Stat79: 8.54650544732758e-14 - syst_JES_EtaIntercalibration_Stat8: 5.899163055044334e-21 - syst_JES_EtaIntercalibration_Stat80: 3.90486394739339e-11 - syst_JES_EtaIntercalibration_Stat81: 1.283529918345011e-13 - syst_JES_EtaIntercalibration_Stat82: 6.45492567501749e-20 + syst_JES_EtaIntercalibration_Stat78: 7.83676443e-20 + syst_JES_EtaIntercalibration_Stat79: 8.54650545e-14 + syst_JES_EtaIntercalibration_Stat8: 5.89916306e-21 + syst_JES_EtaIntercalibration_Stat80: 3.90486395e-11 + syst_JES_EtaIntercalibration_Stat81: 1.28352992e-13 + syst_JES_EtaIntercalibration_Stat82: 6.45492568e-20 syst_JES_EtaIntercalibration_Stat83: 0.0 syst_JES_EtaIntercalibration_Stat84: 0.0 syst_JES_EtaIntercalibration_Stat85: 0.0 @@ -31592,113 +31592,113 @@ bins: syst_JES_EtaIntercalibration_Stat89: 0.0 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 2.6127986432176512e-21 - syst_JES_EtaIntercalibration_Stat92: 1.0482360549394397e-17 - syst_JES_EtaIntercalibration_Stat93: 4.28306697939689e-16 - syst_JES_EtaIntercalibration_Stat94: 1.827009685222464e-09 - syst_JES_EtaIntercalibration_Stat95: 1.4429224095563835e-10 - syst_JES_EtaIntercalibration_Stat96: 3.86109554498461e-19 - syst_JES_EtaIntercalibration_Stat97: 2.8925248486400253e-21 + syst_JES_EtaIntercalibration_Stat91: 2.61279864e-21 + syst_JES_EtaIntercalibration_Stat92: 1.04823605e-17 + syst_JES_EtaIntercalibration_Stat93: 4.28306698e-16 + syst_JES_EtaIntercalibration_Stat94: 1.82700969e-09 + syst_JES_EtaIntercalibration_Stat95: 1.44292241e-10 + syst_JES_EtaIntercalibration_Stat96: 3.86109554e-19 + syst_JES_EtaIntercalibration_Stat97: 2.89252485e-21 syst_JES_EtaIntercalibration_Stat98: 0.0 - syst_JES_EtaIntercalibration_Stat99: 5.7209425914323755e-15 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0003403801808272626 - syst_JES_Flavour_Comp: 0.0008524106756722372 - syst_JES_Flavour_Response: 2.177198831067112e-05 - syst_JES_Gjet_Generator: 0.0010429376815035496 - syst_JES_Gjet_OOC: 0.0008632919016763681 - syst_JES_Gjet_Purity: 0.0001516748083895279 - syst_JES_Gjet_Stat1: 3.3590360224326263e-06 - syst_JES_Gjet_Stat10: 1.731900112593102e-05 - syst_JES_Gjet_Stat11: 1.725148399413801e-05 - syst_JES_Gjet_Stat12: 5.5555038250369336e-05 - syst_JES_Gjet_Stat13: 0.00017166026768008957 - syst_JES_Gjet_Stat14: 0.00046474716513390373 - syst_JES_Gjet_Stat15: 0.0006145565230310391 - syst_JES_Gjet_Stat2: 3.150251537576008e-06 - syst_JES_Gjet_Stat3: 4.981381635650897e-06 - syst_JES_Gjet_Stat4: 4.237843083456489e-06 - syst_JES_Gjet_Stat5: 3.853507683591665e-06 - syst_JES_Gjet_Stat6: 9.781935289092849e-06 - syst_JES_Gjet_Stat7: 1.0287729049697995e-05 - syst_JES_Gjet_Stat8: 9.086506644470139e-06 - syst_JES_Gjet_Stat9: 1.0125379647203357e-05 - syst_JES_Gjet_Veto: 0.0008719513676232178 - syst_JES_Gjet_dPhi: 8.971584085321833e-05 - syst_JES_LArESZee: 0.0015710603903096789 - syst_JES_LArEsmear: 0.00013977430692012032 - syst_JES_LAr_JVT: 0.00017422683490208964 - syst_JES_MJB_Alpha: 1.1482883903880594e-05 - syst_JES_MJB_Asym: 0.0001924006496870528 - syst_JES_MJB_Beta: 1.1761461505697324e-05 - syst_JES_MJB_Fragmentation: 9.461588489783308e-05 - syst_JES_MJB_Stat1: 2.576425576258705e-07 - syst_JES_MJB_Stat10: 1.547278901814408e-05 - syst_JES_MJB_Stat11: 1.994108071294031e-05 - syst_JES_MJB_Stat12: 3.2402458240078016e-05 - syst_JES_MJB_Stat13: 3.0061358502236722e-05 - syst_JES_MJB_Stat14: 1.9535103659822234e-05 - syst_JES_MJB_Stat15: 1.684160475578263e-05 - syst_JES_MJB_Stat16: 1.9692196423964493e-05 + syst_JES_EtaIntercalibration_Stat99: 5.72094259e-15 + syst_JES_EtaIntercalibration_TotalStat_MJB: 3.40380181e-04 + syst_JES_Flavour_Comp: 8.52410676e-04 + syst_JES_Flavour_Response: 2.17719883e-05 + syst_JES_Gjet_Generator: 1.04293768e-03 + syst_JES_Gjet_OOC: 8.63291902e-04 + syst_JES_Gjet_Purity: 1.51674808e-04 + syst_JES_Gjet_Stat1: 3.35903602e-06 + syst_JES_Gjet_Stat10: 1.73190011e-05 + syst_JES_Gjet_Stat11: 1.72514840e-05 + syst_JES_Gjet_Stat12: 5.55550383e-05 + syst_JES_Gjet_Stat13: 1.71660268e-04 + syst_JES_Gjet_Stat14: 4.64747165e-04 + syst_JES_Gjet_Stat15: 6.14556523e-04 + syst_JES_Gjet_Stat2: 3.15025154e-06 + syst_JES_Gjet_Stat3: 4.98138164e-06 + syst_JES_Gjet_Stat4: 4.23784308e-06 + syst_JES_Gjet_Stat5: 3.85350768e-06 + syst_JES_Gjet_Stat6: 9.78193529e-06 + syst_JES_Gjet_Stat7: 1.02877290e-05 + syst_JES_Gjet_Stat8: 9.08650664e-06 + syst_JES_Gjet_Stat9: 1.01253796e-05 + syst_JES_Gjet_Veto: 8.71951368e-04 + syst_JES_Gjet_dPhi: 8.97158409e-05 + syst_JES_LArESZee: 1.57106039e-03 + syst_JES_LArEsmear: 1.39774307e-04 + syst_JES_LAr_JVT: 1.74226835e-04 + syst_JES_MJB_Alpha: 1.14828839e-05 + syst_JES_MJB_Asym: 1.92400650e-04 + syst_JES_MJB_Beta: 1.17614615e-05 + syst_JES_MJB_Fragmentation: 9.46158849e-05 + syst_JES_MJB_Stat1: 2.57642558e-07 + syst_JES_MJB_Stat10: 1.54727890e-05 + syst_JES_MJB_Stat11: 1.99410807e-05 + syst_JES_MJB_Stat12: 3.24024582e-05 + syst_JES_MJB_Stat13: 3.00613585e-05 + syst_JES_MJB_Stat14: 1.95351037e-05 + syst_JES_MJB_Stat15: 1.68416048e-05 + syst_JES_MJB_Stat16: 1.96921964e-05 syst_JES_MJB_Stat2: 0.0 - syst_JES_MJB_Stat3: 9.471719841190406e-07 - syst_JES_MJB_Stat4: 6.361822616200487e-07 - syst_JES_MJB_Stat5: 9.717671055865186e-07 - syst_JES_MJB_Stat6: 3.2648021486760875e-06 - syst_JES_MJB_Stat7: 5.97641587826684e-06 - syst_JES_MJB_Stat8: 7.897232600727928e-06 - syst_JES_MJB_Stat9: 1.1835892995460883e-05 - syst_JES_MJB_Threshold: 0.00013131732815969112 - syst_JES_Pileup_MuOffset: 0.00021198724018204492 - syst_JES_Pileup_NPVOffset: 0.00021876660508404842 - syst_JES_Pileup_Pt_term: 0.0001465147774117 - syst_JES_Pileup_Rho_topology: 0.00028217829470035424 - syst_JES_PunchThrough_MC15: 0.0002486271907897444 - syst_JES_SingleParticle_HighPt: 9.403198112876278e-11 - syst_JES_Zjet_MC: 0.00039730786888129966 - syst_JES_Zjet_MuScale: 3.210146881374744e-05 - syst_JES_Zjet_MuSmearID: 9.318003259819135e-06 - syst_JES_Zjet_MuSmearMS: 0.00011108994733998213 - syst_JES_Zjet_OOC: 0.0002391914870976808 - syst_JES_Zjet_Stat1: 2.148364668765524e-05 - syst_JES_Zjet_Stat10: 2.0432589165350533e-05 - syst_JES_Zjet_Stat11: 2.9801639216660548e-05 - syst_JES_Zjet_Stat12: 7.541683764253179e-05 - syst_JES_Zjet_Stat13: 0.00011514284867068383 - syst_JES_Zjet_Stat2: 7.175886495757859e-08 - syst_JES_Zjet_Stat3: 1.1350923872090763e-05 - syst_JES_Zjet_Stat4: 1.085422000882606e-05 - syst_JES_Zjet_Stat5: 1.2654926580190024e-05 - syst_JES_Zjet_Stat6: 9.23149417754244e-06 - syst_JES_Zjet_Stat7: 1.0064252431253898e-05 - syst_JES_Zjet_Stat8: 8.908232035594941e-06 - syst_JES_Zjet_Stat9: 1.1716928127713339e-05 - syst_JES_Zjet_Veto: 5.164224724002626e-05 - syst_JES_Zjet_dPhi: 4.8005074731740604e-05 + syst_JES_MJB_Stat3: 9.47171984e-07 + syst_JES_MJB_Stat4: 6.36182262e-07 + syst_JES_MJB_Stat5: 9.71767106e-07 + syst_JES_MJB_Stat6: 3.26480215e-06 + syst_JES_MJB_Stat7: 5.97641588e-06 + syst_JES_MJB_Stat8: 7.89723260e-06 + syst_JES_MJB_Stat9: 1.18358930e-05 + syst_JES_MJB_Threshold: 1.31317328e-04 + syst_JES_Pileup_MuOffset: 2.11987240e-04 + syst_JES_Pileup_NPVOffset: 2.18766605e-04 + syst_JES_Pileup_Pt_term: 1.46514777e-04 + syst_JES_Pileup_Rho_topology: 2.82178295e-04 + syst_JES_PunchThrough_MC15: 2.48627191e-04 + syst_JES_SingleParticle_HighPt: 9.40319811e-11 + syst_JES_Zjet_MC: 3.97307869e-04 + syst_JES_Zjet_MuScale: 3.21014688e-05 + syst_JES_Zjet_MuSmearID: 9.31800326e-06 + syst_JES_Zjet_MuSmearMS: 1.11089947e-04 + syst_JES_Zjet_OOC: 2.39191487e-04 + syst_JES_Zjet_Stat1: 2.14836467e-05 + syst_JES_Zjet_Stat10: 2.04325892e-05 + syst_JES_Zjet_Stat11: 2.98016392e-05 + syst_JES_Zjet_Stat12: 7.54168376e-05 + syst_JES_Zjet_Stat13: 1.15142849e-04 + syst_JES_Zjet_Stat2: 7.17588650e-08 + syst_JES_Zjet_Stat3: 1.13509239e-05 + syst_JES_Zjet_Stat4: 1.08542200e-05 + syst_JES_Zjet_Stat5: 1.26549266e-05 + syst_JES_Zjet_Stat6: 9.23149418e-06 + syst_JES_Zjet_Stat7: 1.00642524e-05 + syst_JES_Zjet_Stat8: 8.90823204e-06 + syst_JES_Zjet_Stat9: 1.17169281e-05 + syst_JES_Zjet_Veto: 5.16422472e-05 + syst_JES_Zjet_dPhi: 4.80050747e-05 syst_PRW: 0.0 - syst_Unfolding_bias: 3.9285e-05 - syst_cleaning: 0.0002532258280665699 - syst_lumi: 0.0008039 -- stat: 0.00030723 + syst_Unfolding_bias: 3.92850000e-05 + syst_cleaning: 2.53225828e-04 + syst_lumi: 8.03900000e-04 +- stat: 3.07230000e-04 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.00014828420912221232 - syst_JER_NP1: 2.5599574215209127e-05 - syst_JER_NP2: 0.00010925072082142067 - syst_JER_NP3: 3.430688997854513e-06 - syst_JER_NP4: 4.2005971203508666e-15 - syst_JER_NP5: 8.954173714391517e-10 - syst_JER_NP6: 2.9962421464227486e-17 - syst_JER_NP7: 1.3629329367213928e-19 - syst_JER_NP8: 1.234645775111226e-05 - syst_JES_EtaIntercalibration_Modelling: 0.0014608410890647894 + syst_JER_NP0: 1.48284209e-04 + syst_JER_NP1: 2.55995742e-05 + syst_JER_NP2: 1.09250721e-04 + syst_JER_NP3: 3.43068900e-06 + syst_JER_NP4: 4.20059712e-15 + syst_JER_NP5: 8.95417371e-10 + syst_JER_NP6: 2.99624215e-17 + syst_JER_NP7: 1.36293294e-19 + syst_JER_NP8: 1.23464578e-05 + syst_JES_EtaIntercalibration_Modelling: 1.46084109e-03 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 1.365903200038348e-15 - syst_JES_EtaIntercalibration_Stat101: 7.502555283990031e-11 - syst_JES_EtaIntercalibration_Stat102: 5.130932898362636e-15 - syst_JES_EtaIntercalibration_Stat103: 2.309404383710224e-18 + syst_JES_EtaIntercalibration_Stat100: 1.36590320e-15 + syst_JES_EtaIntercalibration_Stat101: 7.50255528e-11 + syst_JES_EtaIntercalibration_Stat102: 5.13093290e-15 + syst_JES_EtaIntercalibration_Stat103: 2.30940438e-18 syst_JES_EtaIntercalibration_Stat104: 0.0 syst_JES_EtaIntercalibration_Stat105: 0.0 syst_JES_EtaIntercalibration_Stat106: 0.0 @@ -31707,170 +31707,170 @@ bins: syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 syst_JES_EtaIntercalibration_Stat110: 0.0 - syst_JES_EtaIntercalibration_Stat111: 4.0729174739982144e-22 - syst_JES_EtaIntercalibration_Stat112: 2.9325745698106294e-17 - syst_JES_EtaIntercalibration_Stat113: 9.12388944062783e-08 - syst_JES_EtaIntercalibration_Stat114: 1.0157031236230927e-07 - syst_JES_EtaIntercalibration_Stat115: 2.2109893304129718e-07 - syst_JES_EtaIntercalibration_Stat116: 1.5597499880991393e-14 + syst_JES_EtaIntercalibration_Stat111: 4.07291747e-22 + syst_JES_EtaIntercalibration_Stat112: 2.93257457e-17 + syst_JES_EtaIntercalibration_Stat113: 9.12388944e-08 + syst_JES_EtaIntercalibration_Stat114: 1.01570312e-07 + syst_JES_EtaIntercalibration_Stat115: 2.21098933e-07 + syst_JES_EtaIntercalibration_Stat116: 1.55974999e-14 syst_JES_EtaIntercalibration_Stat117: 0.0 syst_JES_EtaIntercalibration_Stat118: 0.0 - syst_JES_EtaIntercalibration_Stat119: 1.575299595761514e-14 + syst_JES_EtaIntercalibration_Stat119: 1.57529960e-14 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 1.8654162504376543e-08 - syst_JES_EtaIntercalibration_Stat121: 8.670378077108287e-08 - syst_JES_EtaIntercalibration_Stat122: 7.246900662208698e-08 - syst_JES_EtaIntercalibration_Stat123: 2.1495336175726583e-14 + syst_JES_EtaIntercalibration_Stat120: 1.86541625e-08 + syst_JES_EtaIntercalibration_Stat121: 8.67037808e-08 + syst_JES_EtaIntercalibration_Stat122: 7.24690066e-08 + syst_JES_EtaIntercalibration_Stat123: 2.14953362e-14 syst_JES_EtaIntercalibration_Stat124: 0.0 syst_JES_EtaIntercalibration_Stat125: 0.0 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 syst_JES_EtaIntercalibration_Stat128: 0.0 syst_JES_EtaIntercalibration_Stat129: 0.0 - syst_JES_EtaIntercalibration_Stat13: 1.5778984326886806e-14 + syst_JES_EtaIntercalibration_Stat13: 1.57789843e-14 syst_JES_EtaIntercalibration_Stat130: 0.0 - syst_JES_EtaIntercalibration_Stat131: 1.7866300141607384e-16 - syst_JES_EtaIntercalibration_Stat132: 1.484365661954902e-07 - syst_JES_EtaIntercalibration_Stat133: 2.4252103816112533e-09 - syst_JES_EtaIntercalibration_Stat134: 1.0636196086509265e-07 - syst_JES_EtaIntercalibration_Stat135: 3.0335967800080157e-12 + syst_JES_EtaIntercalibration_Stat131: 1.78663001e-16 + syst_JES_EtaIntercalibration_Stat132: 1.48436566e-07 + syst_JES_EtaIntercalibration_Stat133: 2.42521038e-09 + syst_JES_EtaIntercalibration_Stat134: 1.06361961e-07 + syst_JES_EtaIntercalibration_Stat135: 3.03359678e-12 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 - syst_JES_EtaIntercalibration_Stat138: 1.4745474106758147e-14 - syst_JES_EtaIntercalibration_Stat139: 6.711755861918698e-08 - syst_JES_EtaIntercalibration_Stat14: 5.711581392224049e-21 - syst_JES_EtaIntercalibration_Stat140: 8.26670010871932e-12 - syst_JES_EtaIntercalibration_Stat141: 1.1939067380139038e-07 - syst_JES_EtaIntercalibration_Stat142: 3.586183788205316e-11 + syst_JES_EtaIntercalibration_Stat138: 1.47454741e-14 + syst_JES_EtaIntercalibration_Stat139: 6.71175586e-08 + syst_JES_EtaIntercalibration_Stat14: 5.71158139e-21 + syst_JES_EtaIntercalibration_Stat140: 8.26670011e-12 + syst_JES_EtaIntercalibration_Stat141: 1.19390674e-07 + syst_JES_EtaIntercalibration_Stat142: 3.58618379e-11 syst_JES_EtaIntercalibration_Stat143: 0.0 syst_JES_EtaIntercalibration_Stat144: 0.0 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 syst_JES_EtaIntercalibration_Stat147: 0.0 syst_JES_EtaIntercalibration_Stat148: 0.0 - syst_JES_EtaIntercalibration_Stat149: 1.445654634036342e-12 - syst_JES_EtaIntercalibration_Stat15: 5.149030695072617e-21 - syst_JES_EtaIntercalibration_Stat150: 1.3865066714588864e-07 - syst_JES_EtaIntercalibration_Stat151: 1.2129847319227508e-07 - syst_JES_EtaIntercalibration_Stat152: 1.0659414907950015e-07 - syst_JES_EtaIntercalibration_Stat153: 3.552970627967532e-12 + syst_JES_EtaIntercalibration_Stat149: 1.44565463e-12 + syst_JES_EtaIntercalibration_Stat15: 5.14903070e-21 + syst_JES_EtaIntercalibration_Stat150: 1.38650667e-07 + syst_JES_EtaIntercalibration_Stat151: 1.21298473e-07 + syst_JES_EtaIntercalibration_Stat152: 1.06594149e-07 + syst_JES_EtaIntercalibration_Stat153: 3.55297063e-12 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 1.0238152036914125e-15 - syst_JES_EtaIntercalibration_Stat157: 1.6228185873658214e-07 - syst_JES_EtaIntercalibration_Stat158: 5.294818775935584e-07 - syst_JES_EtaIntercalibration_Stat159: 1.154400593381691e-07 + syst_JES_EtaIntercalibration_Stat156: 1.02381520e-15 + syst_JES_EtaIntercalibration_Stat157: 1.62281859e-07 + syst_JES_EtaIntercalibration_Stat158: 5.29481878e-07 + syst_JES_EtaIntercalibration_Stat159: 1.15440059e-07 syst_JES_EtaIntercalibration_Stat16: 0.0 - syst_JES_EtaIntercalibration_Stat160: 5.885386981329265e-15 + syst_JES_EtaIntercalibration_Stat160: 5.88538698e-15 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 - syst_JES_EtaIntercalibration_Stat167: 5.920100510869726e-10 - syst_JES_EtaIntercalibration_Stat168: 1.570913212115806e-07 - syst_JES_EtaIntercalibration_Stat169: 4.744219087478992e-07 + syst_JES_EtaIntercalibration_Stat167: 5.92010051e-10 + syst_JES_EtaIntercalibration_Stat168: 1.57091321e-07 + syst_JES_EtaIntercalibration_Stat169: 4.74421909e-07 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 4.566685313222272e-07 - syst_JES_EtaIntercalibration_Stat171: 2.9853964070454697e-09 + syst_JES_EtaIntercalibration_Stat170: 4.56668531e-07 + syst_JES_EtaIntercalibration_Stat171: 2.98539641e-09 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 - syst_JES_EtaIntercalibration_Stat174: 2.501092206068681e-15 - syst_JES_EtaIntercalibration_Stat175: 4.218821435839635e-07 - syst_JES_EtaIntercalibration_Stat176: 6.15234727563391e-07 - syst_JES_EtaIntercalibration_Stat177: 4.764021564812653e-07 - syst_JES_EtaIntercalibration_Stat178: 6.830921899714562e-08 + syst_JES_EtaIntercalibration_Stat174: 2.50109221e-15 + syst_JES_EtaIntercalibration_Stat175: 4.21882144e-07 + syst_JES_EtaIntercalibration_Stat176: 6.15234728e-07 + syst_JES_EtaIntercalibration_Stat177: 4.76402156e-07 + syst_JES_EtaIntercalibration_Stat178: 6.83092190e-08 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 syst_JES_EtaIntercalibration_Stat180: 0.0 syst_JES_EtaIntercalibration_Stat181: 0.0 syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 - syst_JES_EtaIntercalibration_Stat184: 1.144143787948001e-07 - syst_JES_EtaIntercalibration_Stat185: 8.413007354685958e-07 - syst_JES_EtaIntercalibration_Stat186: 3.368025951132206e-06 - syst_JES_EtaIntercalibration_Stat187: 2.5750077184350337e-06 - syst_JES_EtaIntercalibration_Stat188: 2.1998334664242203e-07 + syst_JES_EtaIntercalibration_Stat184: 1.14414379e-07 + syst_JES_EtaIntercalibration_Stat185: 8.41300735e-07 + syst_JES_EtaIntercalibration_Stat186: 3.36802595e-06 + syst_JES_EtaIntercalibration_Stat187: 2.57500772e-06 + syst_JES_EtaIntercalibration_Stat188: 2.19983347e-07 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 - syst_JES_EtaIntercalibration_Stat191: 9.466002152440069e-08 - syst_JES_EtaIntercalibration_Stat192: 3.2020575806815215e-06 - syst_JES_EtaIntercalibration_Stat193: 4.863445769205204e-06 - syst_JES_EtaIntercalibration_Stat194: 1.2117837760920882e-06 - syst_JES_EtaIntercalibration_Stat195: 1.0230747418932793e-07 - syst_JES_EtaIntercalibration_Stat196: 2.1602857312575573e-14 + syst_JES_EtaIntercalibration_Stat191: 9.46600215e-08 + syst_JES_EtaIntercalibration_Stat192: 3.20205758e-06 + syst_JES_EtaIntercalibration_Stat193: 4.86344577e-06 + syst_JES_EtaIntercalibration_Stat194: 1.21178378e-06 + syst_JES_EtaIntercalibration_Stat195: 1.02307474e-07 + syst_JES_EtaIntercalibration_Stat196: 2.16028573e-14 syst_JES_EtaIntercalibration_Stat197: 0.0 syst_JES_EtaIntercalibration_Stat198: 0.0 - syst_JES_EtaIntercalibration_Stat199: 2.864150304627884e-07 + syst_JES_EtaIntercalibration_Stat199: 2.86415030e-07 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 1.645694610187443e-06 - syst_JES_EtaIntercalibration_Stat201: 6.077850010488906e-06 - syst_JES_EtaIntercalibration_Stat202: 4.6643928597406975e-06 - syst_JES_EtaIntercalibration_Stat203: 2.977532199657965e-08 + syst_JES_EtaIntercalibration_Stat200: 1.64569461e-06 + syst_JES_EtaIntercalibration_Stat201: 6.07785001e-06 + syst_JES_EtaIntercalibration_Stat202: 4.66439286e-06 + syst_JES_EtaIntercalibration_Stat203: 2.97753220e-08 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 - syst_JES_EtaIntercalibration_Stat206: 6.928884619294797e-08 - syst_JES_EtaIntercalibration_Stat207: 5.344564037412219e-06 - syst_JES_EtaIntercalibration_Stat208: 9.996095775351494e-06 - syst_JES_EtaIntercalibration_Stat209: 2.3483581498570444e-06 + syst_JES_EtaIntercalibration_Stat206: 6.92888462e-08 + syst_JES_EtaIntercalibration_Stat207: 5.34456404e-06 + syst_JES_EtaIntercalibration_Stat208: 9.99609578e-06 + syst_JES_EtaIntercalibration_Stat209: 2.34835815e-06 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 8.305098193278633e-08 - syst_JES_EtaIntercalibration_Stat211: 2.2806492552944217e-14 - syst_JES_EtaIntercalibration_Stat212: 7.160827518520469e-08 - syst_JES_EtaIntercalibration_Stat213: 2.0615491141372305e-06 - syst_JES_EtaIntercalibration_Stat214: 6.772099822064054e-06 - syst_JES_EtaIntercalibration_Stat215: 5.528407795197456e-06 - syst_JES_EtaIntercalibration_Stat216: 4.519584936694962e-08 + syst_JES_EtaIntercalibration_Stat210: 8.30509819e-08 + syst_JES_EtaIntercalibration_Stat211: 2.28064926e-14 + syst_JES_EtaIntercalibration_Stat212: 7.16082752e-08 + syst_JES_EtaIntercalibration_Stat213: 2.06154911e-06 + syst_JES_EtaIntercalibration_Stat214: 6.77209982e-06 + syst_JES_EtaIntercalibration_Stat215: 5.52840780e-06 + syst_JES_EtaIntercalibration_Stat216: 4.51958494e-08 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 - syst_JES_EtaIntercalibration_Stat219: 7.655265708647871e-08 + syst_JES_EtaIntercalibration_Stat219: 7.65526571e-08 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 5.668052310979495e-06 - syst_JES_EtaIntercalibration_Stat221: 8.364776326955791e-06 - syst_JES_EtaIntercalibration_Stat222: 2.353755031858668e-06 - syst_JES_EtaIntercalibration_Stat223: 4.882651226536665e-08 - syst_JES_EtaIntercalibration_Stat224: 2.0775955348862172e-07 - syst_JES_EtaIntercalibration_Stat225: 6.501747822701215e-06 - syst_JES_EtaIntercalibration_Stat226: 2.022850216896941e-05 - syst_JES_EtaIntercalibration_Stat227: 1.5063368647151938e-05 - syst_JES_EtaIntercalibration_Stat228: 9.375335447332005e-08 + syst_JES_EtaIntercalibration_Stat220: 5.66805231e-06 + syst_JES_EtaIntercalibration_Stat221: 8.36477633e-06 + syst_JES_EtaIntercalibration_Stat222: 2.35375503e-06 + syst_JES_EtaIntercalibration_Stat223: 4.88265123e-08 + syst_JES_EtaIntercalibration_Stat224: 2.07759553e-07 + syst_JES_EtaIntercalibration_Stat225: 6.50174782e-06 + syst_JES_EtaIntercalibration_Stat226: 2.02285022e-05 + syst_JES_EtaIntercalibration_Stat227: 1.50633686e-05 + syst_JES_EtaIntercalibration_Stat228: 9.37533545e-08 syst_JES_EtaIntercalibration_Stat229: 0.0 syst_JES_EtaIntercalibration_Stat23: 0.0 syst_JES_EtaIntercalibration_Stat230: 0.0 - syst_JES_EtaIntercalibration_Stat231: 1.290516446322172e-07 - syst_JES_EtaIntercalibration_Stat232: 1.7977582568298775e-05 - syst_JES_EtaIntercalibration_Stat233: 2.108240202159137e-05 - syst_JES_EtaIntercalibration_Stat234: 1.0111661782318473e-05 - syst_JES_EtaIntercalibration_Stat235: 2.9132691259133617e-07 - syst_JES_EtaIntercalibration_Stat236: 1.4186257434573785e-06 - syst_JES_EtaIntercalibration_Stat237: 5.040065550168965e-06 - syst_JES_EtaIntercalibration_Stat238: 3.0201180026614853e-06 - syst_JES_EtaIntercalibration_Stat239: 6.070695759136674e-08 + syst_JES_EtaIntercalibration_Stat231: 1.29051645e-07 + syst_JES_EtaIntercalibration_Stat232: 1.79775826e-05 + syst_JES_EtaIntercalibration_Stat233: 2.10824020e-05 + syst_JES_EtaIntercalibration_Stat234: 1.01116618e-05 + syst_JES_EtaIntercalibration_Stat235: 2.91326913e-07 + syst_JES_EtaIntercalibration_Stat236: 1.41862574e-06 + syst_JES_EtaIntercalibration_Stat237: 5.04006555e-06 + syst_JES_EtaIntercalibration_Stat238: 3.02011800e-06 + syst_JES_EtaIntercalibration_Stat239: 6.07069576e-08 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 - syst_JES_EtaIntercalibration_Stat242: 3.195499139414686e-08 - syst_JES_EtaIntercalibration_Stat243: 3.240074497600325e-06 - syst_JES_EtaIntercalibration_Stat244: 4.622852146402695e-06 - syst_JES_EtaIntercalibration_Stat245: 1.5713849838597795e-06 + syst_JES_EtaIntercalibration_Stat242: 3.19549914e-08 + syst_JES_EtaIntercalibration_Stat243: 3.24007450e-06 + syst_JES_EtaIntercalibration_Stat244: 4.62285215e-06 + syst_JES_EtaIntercalibration_Stat245: 1.57138498e-06 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 - syst_JES_EtaIntercalibration_Stat27: 2.0386381410147317e-21 - syst_JES_EtaIntercalibration_Stat28: 3.053623627038989e-17 - syst_JES_EtaIntercalibration_Stat29: 2.690740934052923e-11 + syst_JES_EtaIntercalibration_Stat27: 2.03863814e-21 + syst_JES_EtaIntercalibration_Stat28: 3.05362363e-17 + syst_JES_EtaIntercalibration_Stat29: 2.69074093e-11 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 2.6968031164491414e-11 - syst_JES_EtaIntercalibration_Stat31: 4.0330803054241313e-22 + syst_JES_EtaIntercalibration_Stat30: 2.69680312e-11 + syst_JES_EtaIntercalibration_Stat31: 4.03308031e-22 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 - syst_JES_EtaIntercalibration_Stat34: 7.105738438051319e-23 - syst_JES_EtaIntercalibration_Stat35: 1.5761735356170933e-14 - syst_JES_EtaIntercalibration_Stat36: 1.5796566423331182e-14 - syst_JES_EtaIntercalibration_Stat37: 3.632378706853128e-19 - syst_JES_EtaIntercalibration_Stat38: 7.702504186951151e-22 + syst_JES_EtaIntercalibration_Stat34: 7.10573844e-23 + syst_JES_EtaIntercalibration_Stat35: 1.57617354e-14 + syst_JES_EtaIntercalibration_Stat36: 1.57965664e-14 + syst_JES_EtaIntercalibration_Stat37: 3.63237871e-19 + syst_JES_EtaIntercalibration_Stat38: 7.70250419e-22 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 syst_JES_EtaIntercalibration_Stat40: 0.0 @@ -31881,21 +31881,21 @@ bins: syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 syst_JES_EtaIntercalibration_Stat47: 0.0 - syst_JES_EtaIntercalibration_Stat48: 1.1034895695021316e-21 - syst_JES_EtaIntercalibration_Stat49: 5.850446262465796e-21 - syst_JES_EtaIntercalibration_Stat5: 9.179869280115049e-22 - syst_JES_EtaIntercalibration_Stat50: 3.15546421782913e-17 - syst_JES_EtaIntercalibration_Stat51: 2.664761848404268e-11 - syst_JES_EtaIntercalibration_Stat52: 2.679482623551992e-11 - syst_JES_EtaIntercalibration_Stat53: 1.6484833961857183e-21 - syst_JES_EtaIntercalibration_Stat54: 5.443835688188981e-22 + syst_JES_EtaIntercalibration_Stat48: 1.10348957e-21 + syst_JES_EtaIntercalibration_Stat49: 5.85044626e-21 + syst_JES_EtaIntercalibration_Stat5: 9.17986928e-22 + syst_JES_EtaIntercalibration_Stat50: 3.15546422e-17 + syst_JES_EtaIntercalibration_Stat51: 2.66476185e-11 + syst_JES_EtaIntercalibration_Stat52: 2.67948262e-11 + syst_JES_EtaIntercalibration_Stat53: 1.64848340e-21 + syst_JES_EtaIntercalibration_Stat54: 5.44383569e-22 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 2.7780095392204833e-22 - syst_JES_EtaIntercalibration_Stat57: 1.557230595659489e-14 - syst_JES_EtaIntercalibration_Stat58: 1.5728890525879056e-14 - syst_JES_EtaIntercalibration_Stat59: 1.267430537544366e-18 - syst_JES_EtaIntercalibration_Stat6: 2.264459376981623e-21 - syst_JES_EtaIntercalibration_Stat60: 1.5940690449287318e-20 + syst_JES_EtaIntercalibration_Stat56: 2.77800954e-22 + syst_JES_EtaIntercalibration_Stat57: 1.55723060e-14 + syst_JES_EtaIntercalibration_Stat58: 1.57288905e-14 + syst_JES_EtaIntercalibration_Stat59: 1.26743054e-18 + syst_JES_EtaIntercalibration_Stat6: 2.26445938e-21 + syst_JES_EtaIntercalibration_Stat60: 1.59406904e-20 syst_JES_EtaIntercalibration_Stat61: 0.0 syst_JES_EtaIntercalibration_Stat62: 0.0 syst_JES_EtaIntercalibration_Stat63: 0.0 @@ -31905,21 +31905,21 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 1.0784757333848546e-20 - syst_JES_EtaIntercalibration_Stat70: 9.179869280115049e-22 - syst_JES_EtaIntercalibration_Stat71: 2.2152394904389008e-20 - syst_JES_EtaIntercalibration_Stat72: 5.365993174613625e-17 - syst_JES_EtaIntercalibration_Stat73: 4.1408570976732276e-10 - syst_JES_EtaIntercalibration_Stat74: 2.7793738085223444e-11 - syst_JES_EtaIntercalibration_Stat75: 2.4548155674103095e-20 - syst_JES_EtaIntercalibration_Stat76: 5.443835688188981e-22 + syst_JES_EtaIntercalibration_Stat7: 1.07847573e-20 + syst_JES_EtaIntercalibration_Stat70: 9.17986928e-22 + syst_JES_EtaIntercalibration_Stat71: 2.21523949e-20 + syst_JES_EtaIntercalibration_Stat72: 5.36599317e-17 + syst_JES_EtaIntercalibration_Stat73: 4.14085710e-10 + syst_JES_EtaIntercalibration_Stat74: 2.77937381e-11 + syst_JES_EtaIntercalibration_Stat75: 2.45481557e-20 + syst_JES_EtaIntercalibration_Stat76: 5.44383569e-22 syst_JES_EtaIntercalibration_Stat77: 0.0 - syst_JES_EtaIntercalibration_Stat78: 1.9879657944743414e-20 - syst_JES_EtaIntercalibration_Stat79: 1.4725374657914378e-14 - syst_JES_EtaIntercalibration_Stat8: 1.5025678420623808e-21 - syst_JES_EtaIntercalibration_Stat80: 1.7043296953993148e-11 - syst_JES_EtaIntercalibration_Stat81: 2.1615157945948486e-14 - syst_JES_EtaIntercalibration_Stat82: 1.6949155930311102e-20 + syst_JES_EtaIntercalibration_Stat78: 1.98796579e-20 + syst_JES_EtaIntercalibration_Stat79: 1.47253747e-14 + syst_JES_EtaIntercalibration_Stat8: 1.50256784e-21 + syst_JES_EtaIntercalibration_Stat80: 1.70432970e-11 + syst_JES_EtaIntercalibration_Stat81: 2.16151579e-14 + syst_JES_EtaIntercalibration_Stat82: 1.69491559e-20 syst_JES_EtaIntercalibration_Stat83: 0.0 syst_JES_EtaIntercalibration_Stat84: 0.0 syst_JES_EtaIntercalibration_Stat85: 0.0 @@ -31929,113 +31929,113 @@ bins: syst_JES_EtaIntercalibration_Stat89: 0.0 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 7.852252336113506e-22 - syst_JES_EtaIntercalibration_Stat92: 1.888726782570735e-18 - syst_JES_EtaIntercalibration_Stat93: 7.780749647688196e-17 - syst_JES_EtaIntercalibration_Stat94: 4.1624687976424525e-10 - syst_JES_EtaIntercalibration_Stat95: 2.8214269771695315e-11 - syst_JES_EtaIntercalibration_Stat96: 9.252274891479392e-20 - syst_JES_EtaIntercalibration_Stat97: 5.443835688188981e-22 + syst_JES_EtaIntercalibration_Stat91: 7.85225234e-22 + syst_JES_EtaIntercalibration_Stat92: 1.88872678e-18 + syst_JES_EtaIntercalibration_Stat93: 7.78074965e-17 + syst_JES_EtaIntercalibration_Stat94: 4.16246880e-10 + syst_JES_EtaIntercalibration_Stat95: 2.82142698e-11 + syst_JES_EtaIntercalibration_Stat96: 9.25227489e-20 + syst_JES_EtaIntercalibration_Stat97: 5.44383569e-22 syst_JES_EtaIntercalibration_Stat98: 0.0 - syst_JES_EtaIntercalibration_Stat99: 9.252564059866664e-16 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.00022772808346798162 - syst_JES_Flavour_Comp: 0.0005745183809069994 - syst_JES_Flavour_Response: 8.560121202412965e-06 - syst_JES_Gjet_Generator: 0.0006747938500016135 - syst_JES_Gjet_OOC: 0.0005602964639367271 - syst_JES_Gjet_Purity: 9.830289568471522e-05 - syst_JES_Gjet_Stat1: 2.551228870564144e-06 - syst_JES_Gjet_Stat10: 1.1663473367740845e-05 - syst_JES_Gjet_Stat11: 1.1644649704907401e-05 - syst_JES_Gjet_Stat12: 3.478272092577002e-05 - syst_JES_Gjet_Stat13: 0.00011148759605893384 - syst_JES_Gjet_Stat14: 0.0002955974078032485 - syst_JES_Gjet_Stat15: 0.00043348432497611724 - syst_JES_Gjet_Stat2: 2.3466522963575157e-06 - syst_JES_Gjet_Stat3: 3.703861768478948e-06 - syst_JES_Gjet_Stat4: 2.7327820988875054e-06 - syst_JES_Gjet_Stat5: 2.4578540945304297e-06 - syst_JES_Gjet_Stat6: 6.792155916938303e-06 - syst_JES_Gjet_Stat7: 6.365317274103468e-06 - syst_JES_Gjet_Stat8: 6.030498569770165e-06 - syst_JES_Gjet_Stat9: 6.52424524370444e-06 - syst_JES_Gjet_Veto: 0.0005674652125901641 - syst_JES_Gjet_dPhi: 5.990900683536658e-05 - syst_JES_LArESZee: 0.0010154197789584364 - syst_JES_LArEsmear: 9.298301834206071e-05 - syst_JES_LAr_JVT: 0.00011651683601523 - syst_JES_MJB_Alpha: 9.020479920713753e-06 - syst_JES_MJB_Asym: 0.00013290602949076467 - syst_JES_MJB_Beta: 7.890292960340573e-06 - syst_JES_MJB_Fragmentation: 5.975244492905709e-05 - syst_JES_MJB_Stat1: 1.035246767683918e-07 - syst_JES_MJB_Stat10: 9.950455705644843e-06 - syst_JES_MJB_Stat11: 1.344165268856475e-05 - syst_JES_MJB_Stat12: 2.2655072279734622e-05 - syst_JES_MJB_Stat13: 2.4601042660830455e-05 - syst_JES_MJB_Stat14: 1.965787628407504e-05 - syst_JES_MJB_Stat15: 2.460634674225331e-05 - syst_JES_MJB_Stat16: 1.470395769852457e-05 + syst_JES_EtaIntercalibration_Stat99: 9.25256406e-16 + syst_JES_EtaIntercalibration_TotalStat_MJB: 2.27728083e-04 + syst_JES_Flavour_Comp: 5.74518381e-04 + syst_JES_Flavour_Response: 8.56012120e-06 + syst_JES_Gjet_Generator: 6.74793850e-04 + syst_JES_Gjet_OOC: 5.60296464e-04 + syst_JES_Gjet_Purity: 9.83028957e-05 + syst_JES_Gjet_Stat1: 2.55122887e-06 + syst_JES_Gjet_Stat10: 1.16634734e-05 + syst_JES_Gjet_Stat11: 1.16446497e-05 + syst_JES_Gjet_Stat12: 3.47827209e-05 + syst_JES_Gjet_Stat13: 1.11487596e-04 + syst_JES_Gjet_Stat14: 2.95597408e-04 + syst_JES_Gjet_Stat15: 4.33484325e-04 + syst_JES_Gjet_Stat2: 2.34665230e-06 + syst_JES_Gjet_Stat3: 3.70386177e-06 + syst_JES_Gjet_Stat4: 2.73278210e-06 + syst_JES_Gjet_Stat5: 2.45785409e-06 + syst_JES_Gjet_Stat6: 6.79215592e-06 + syst_JES_Gjet_Stat7: 6.36531727e-06 + syst_JES_Gjet_Stat8: 6.03049857e-06 + syst_JES_Gjet_Stat9: 6.52424524e-06 + syst_JES_Gjet_Veto: 5.67465213e-04 + syst_JES_Gjet_dPhi: 5.99090068e-05 + syst_JES_LArESZee: 1.01541978e-03 + syst_JES_LArEsmear: 9.29830183e-05 + syst_JES_LAr_JVT: 1.16516836e-04 + syst_JES_MJB_Alpha: 9.02047992e-06 + syst_JES_MJB_Asym: 1.32906029e-04 + syst_JES_MJB_Beta: 7.89029296e-06 + syst_JES_MJB_Fragmentation: 5.97524449e-05 + syst_JES_MJB_Stat1: 1.03524677e-07 + syst_JES_MJB_Stat10: 9.95045571e-06 + syst_JES_MJB_Stat11: 1.34416527e-05 + syst_JES_MJB_Stat12: 2.26550723e-05 + syst_JES_MJB_Stat13: 2.46010427e-05 + syst_JES_MJB_Stat14: 1.96578763e-05 + syst_JES_MJB_Stat15: 2.46063467e-05 + syst_JES_MJB_Stat16: 1.47039577e-05 syst_JES_MJB_Stat2: 0.0 - syst_JES_MJB_Stat3: 5.290549191719136e-07 - syst_JES_MJB_Stat4: 3.917032901317016e-07 - syst_JES_MJB_Stat5: 5.463754272476023e-07 - syst_JES_MJB_Stat6: 1.7125454738487967e-06 - syst_JES_MJB_Stat7: 3.4686135367751763e-06 - syst_JES_MJB_Stat8: 4.703154978309774e-06 - syst_JES_MJB_Stat9: 7.5969489928523285e-06 - syst_JES_MJB_Threshold: 9.28908621716905e-05 - syst_JES_Pileup_MuOffset: 0.00014000183097016982 - syst_JES_Pileup_NPVOffset: 0.00014457118488827575 - syst_JES_Pileup_Pt_term: 9.501209225672277e-05 - syst_JES_Pileup_Rho_topology: 0.00018137317194116663 - syst_JES_PunchThrough_MC15: 0.00018600344082838897 - syst_JES_SingleParticle_HighPt: 4.4350110484642537e-10 - syst_JES_Zjet_MC: 0.0002558978458291511 - syst_JES_Zjet_MuScale: 2.0794943495955935e-05 - syst_JES_Zjet_MuSmearID: 6.574375008318282e-06 - syst_JES_Zjet_MuSmearMS: 7.245053208914343e-05 - syst_JES_Zjet_OOC: 0.00015880403017555947 - syst_JES_Zjet_Stat1: 1.6133477616434717e-05 - syst_JES_Zjet_Stat10: 1.34771363705351e-05 - syst_JES_Zjet_Stat11: 2.0083402973599867e-05 - syst_JES_Zjet_Stat12: 4.813946068455691e-05 - syst_JES_Zjet_Stat13: 7.396882045835258e-05 - syst_JES_Zjet_Stat2: 4.444442372221739e-08 - syst_JES_Zjet_Stat3: 8.8656885801386e-06 - syst_JES_Zjet_Stat4: 8.413396519836682e-06 - syst_JES_Zjet_Stat5: 9.122048344533151e-06 - syst_JES_Zjet_Stat6: 6.2032456827051436e-06 - syst_JES_Zjet_Stat7: 7.101197416633339e-06 - syst_JES_Zjet_Stat8: 5.9715983413153296e-06 - syst_JES_Zjet_Stat9: 7.62747053419415e-06 - syst_JES_Zjet_Veto: 3.348719568730712e-05 - syst_JES_Zjet_dPhi: 3.146046089935747e-05 + syst_JES_MJB_Stat3: 5.29054919e-07 + syst_JES_MJB_Stat4: 3.91703290e-07 + syst_JES_MJB_Stat5: 5.46375427e-07 + syst_JES_MJB_Stat6: 1.71254547e-06 + syst_JES_MJB_Stat7: 3.46861354e-06 + syst_JES_MJB_Stat8: 4.70315498e-06 + syst_JES_MJB_Stat9: 7.59694899e-06 + syst_JES_MJB_Threshold: 9.28908622e-05 + syst_JES_Pileup_MuOffset: 1.40001831e-04 + syst_JES_Pileup_NPVOffset: 1.44571185e-04 + syst_JES_Pileup_Pt_term: 9.50120923e-05 + syst_JES_Pileup_Rho_topology: 1.81373172e-04 + syst_JES_PunchThrough_MC15: 1.86003441e-04 + syst_JES_SingleParticle_HighPt: 4.43501105e-10 + syst_JES_Zjet_MC: 2.55897846e-04 + syst_JES_Zjet_MuScale: 2.07949435e-05 + syst_JES_Zjet_MuSmearID: 6.57437501e-06 + syst_JES_Zjet_MuSmearMS: 7.24505321e-05 + syst_JES_Zjet_OOC: 1.58804030e-04 + syst_JES_Zjet_Stat1: 1.61334776e-05 + syst_JES_Zjet_Stat10: 1.34771364e-05 + syst_JES_Zjet_Stat11: 2.00834030e-05 + syst_JES_Zjet_Stat12: 4.81394607e-05 + syst_JES_Zjet_Stat13: 7.39688205e-05 + syst_JES_Zjet_Stat2: 4.44444237e-08 + syst_JES_Zjet_Stat3: 8.86568858e-06 + syst_JES_Zjet_Stat4: 8.41339652e-06 + syst_JES_Zjet_Stat5: 9.12204834e-06 + syst_JES_Zjet_Stat6: 6.20324568e-06 + syst_JES_Zjet_Stat7: 7.10119742e-06 + syst_JES_Zjet_Stat8: 5.97159834e-06 + syst_JES_Zjet_Stat9: 7.62747053e-06 + syst_JES_Zjet_Veto: 3.34871957e-05 + syst_JES_Zjet_dPhi: 3.14604609e-05 syst_PRW: 0.0 - syst_Unfolding_bias: 2.433e-05 - syst_cleaning: 0.00015727021332725405 - syst_lumi: 0.0004979 -- stat: 0.00023734 + syst_Unfolding_bias: 2.43300000e-05 + syst_cleaning: 1.57270213e-04 + syst_lumi: 4.97900000e-04 +- stat: 2.37340000e-04 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 9.766198889537321e-05 - syst_JER_NP1: 1.7340849892666738e-05 - syst_JER_NP2: 7.54778987518863e-05 - syst_JER_NP3: 3.2538328456606375e-06 - syst_JER_NP4: 9.542941737221286e-16 - syst_JER_NP5: 1.6389919062432099e-10 - syst_JER_NP6: 8.194404127207785e-18 - syst_JER_NP7: 4.755616127275203e-20 - syst_JER_NP8: 8.27466567300456e-06 - syst_JES_EtaIntercalibration_Modelling: 0.0009594995674829666 + syst_JER_NP0: 9.76619889e-05 + syst_JER_NP1: 1.73408499e-05 + syst_JER_NP2: 7.54778988e-05 + syst_JER_NP3: 3.25383285e-06 + syst_JER_NP4: 9.54294174e-16 + syst_JER_NP5: 1.63899191e-10 + syst_JER_NP6: 8.19440413e-18 + syst_JER_NP7: 4.75561613e-20 + syst_JER_NP8: 8.27466567e-06 + syst_JES_EtaIntercalibration_Modelling: 9.59499567e-04 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 2.5214156737832817e-16 - syst_JES_EtaIntercalibration_Stat101: 1.4608548831917288e-11 - syst_JES_EtaIntercalibration_Stat102: 9.599897377967122e-16 - syst_JES_EtaIntercalibration_Stat103: 5.891836291004698e-19 + syst_JES_EtaIntercalibration_Stat100: 2.52141567e-16 + syst_JES_EtaIntercalibration_Stat101: 1.46085488e-11 + syst_JES_EtaIntercalibration_Stat102: 9.59989738e-16 + syst_JES_EtaIntercalibration_Stat103: 5.89183629e-19 syst_JES_EtaIntercalibration_Stat104: 0.0 syst_JES_EtaIntercalibration_Stat105: 0.0 syst_JES_EtaIntercalibration_Stat106: 0.0 @@ -32044,170 +32044,170 @@ bins: syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 syst_JES_EtaIntercalibration_Stat110: 0.0 - syst_JES_EtaIntercalibration_Stat111: 1.3873726968626708e-22 - syst_JES_EtaIntercalibration_Stat112: 6.5311783584587554e-18 - syst_JES_EtaIntercalibration_Stat113: 6.793241409571848e-08 - syst_JES_EtaIntercalibration_Stat114: 6.366614264407883e-08 - syst_JES_EtaIntercalibration_Stat115: 1.7257996160331014e-07 - syst_JES_EtaIntercalibration_Stat116: 2.9489038055834103e-15 + syst_JES_EtaIntercalibration_Stat111: 1.38737270e-22 + syst_JES_EtaIntercalibration_Stat112: 6.53117836e-18 + syst_JES_EtaIntercalibration_Stat113: 6.79324141e-08 + syst_JES_EtaIntercalibration_Stat114: 6.36661426e-08 + syst_JES_EtaIntercalibration_Stat115: 1.72579962e-07 + syst_JES_EtaIntercalibration_Stat116: 2.94890381e-15 syst_JES_EtaIntercalibration_Stat117: 0.0 syst_JES_EtaIntercalibration_Stat118: 0.0 - syst_JES_EtaIntercalibration_Stat119: 2.9921157233741314e-15 + syst_JES_EtaIntercalibration_Stat119: 2.99211572e-15 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 6.874505053771549e-09 - syst_JES_EtaIntercalibration_Stat121: 3.263423366267393e-08 - syst_JES_EtaIntercalibration_Stat122: 4.5847385047878955e-08 - syst_JES_EtaIntercalibration_Stat123: 3.956691919811296e-15 + syst_JES_EtaIntercalibration_Stat120: 6.87450505e-09 + syst_JES_EtaIntercalibration_Stat121: 3.26342337e-08 + syst_JES_EtaIntercalibration_Stat122: 4.58473850e-08 + syst_JES_EtaIntercalibration_Stat123: 3.95669192e-15 syst_JES_EtaIntercalibration_Stat124: 0.0 syst_JES_EtaIntercalibration_Stat125: 0.0 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 syst_JES_EtaIntercalibration_Stat128: 0.0 syst_JES_EtaIntercalibration_Stat129: 0.0 - syst_JES_EtaIntercalibration_Stat13: 2.9981804187311666e-15 + syst_JES_EtaIntercalibration_Stat13: 2.99818042e-15 syst_JES_EtaIntercalibration_Stat130: 0.0 - syst_JES_EtaIntercalibration_Stat131: 3.3133149563541345e-17 - syst_JES_EtaIntercalibration_Stat132: 1.049535835817867e-07 - syst_JES_EtaIntercalibration_Stat133: 5.524575972868868e-10 - syst_JES_EtaIntercalibration_Stat134: 1.1734993944608579e-07 - syst_JES_EtaIntercalibration_Stat135: 5.561730159912022e-13 + syst_JES_EtaIntercalibration_Stat131: 3.31331496e-17 + syst_JES_EtaIntercalibration_Stat132: 1.04953584e-07 + syst_JES_EtaIntercalibration_Stat133: 5.52457597e-10 + syst_JES_EtaIntercalibration_Stat134: 1.17349939e-07 + syst_JES_EtaIntercalibration_Stat135: 5.56173016e-13 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 - syst_JES_EtaIntercalibration_Stat138: 2.8053304956625324e-15 - syst_JES_EtaIntercalibration_Stat139: 3.020613182782595e-08 - syst_JES_EtaIntercalibration_Stat14: 1.8124660569235495e-21 - syst_JES_EtaIntercalibration_Stat140: 1.5031941759799364e-12 - syst_JES_EtaIntercalibration_Stat141: 7.538888979688916e-08 - syst_JES_EtaIntercalibration_Stat142: 6.983572912669332e-12 + syst_JES_EtaIntercalibration_Stat138: 2.80533050e-15 + syst_JES_EtaIntercalibration_Stat139: 3.02061318e-08 + syst_JES_EtaIntercalibration_Stat14: 1.81246606e-21 + syst_JES_EtaIntercalibration_Stat140: 1.50319418e-12 + syst_JES_EtaIntercalibration_Stat141: 7.53888898e-08 + syst_JES_EtaIntercalibration_Stat142: 6.98357291e-12 syst_JES_EtaIntercalibration_Stat143: 0.0 syst_JES_EtaIntercalibration_Stat144: 0.0 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 syst_JES_EtaIntercalibration_Stat147: 0.0 syst_JES_EtaIntercalibration_Stat148: 0.0 - syst_JES_EtaIntercalibration_Stat149: 2.661869378619235e-13 - syst_JES_EtaIntercalibration_Stat15: 1.6089215830176436e-21 - syst_JES_EtaIntercalibration_Stat150: 9.151290441790164e-08 - syst_JES_EtaIntercalibration_Stat151: 6.032237860624187e-08 - syst_JES_EtaIntercalibration_Stat152: 1.1736993509489715e-07 - syst_JES_EtaIntercalibration_Stat153: 6.513895879448796e-13 + syst_JES_EtaIntercalibration_Stat149: 2.66186938e-13 + syst_JES_EtaIntercalibration_Stat15: 1.60892158e-21 + syst_JES_EtaIntercalibration_Stat150: 9.15129044e-08 + syst_JES_EtaIntercalibration_Stat151: 6.03223786e-08 + syst_JES_EtaIntercalibration_Stat152: 1.17369935e-07 + syst_JES_EtaIntercalibration_Stat153: 6.51389588e-13 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 1.7788160807329653e-16 - syst_JES_EtaIntercalibration_Stat157: 2.6320989096156703e-08 - syst_JES_EtaIntercalibration_Stat158: 3.317074404396139e-07 - syst_JES_EtaIntercalibration_Stat159: 7.181365242765472e-08 + syst_JES_EtaIntercalibration_Stat156: 1.77881608e-16 + syst_JES_EtaIntercalibration_Stat157: 2.63209891e-08 + syst_JES_EtaIntercalibration_Stat158: 3.31707440e-07 + syst_JES_EtaIntercalibration_Stat159: 7.18136524e-08 syst_JES_EtaIntercalibration_Stat16: 0.0 - syst_JES_EtaIntercalibration_Stat160: 1.1274149802424128e-15 + syst_JES_EtaIntercalibration_Stat160: 1.12741498e-15 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 - syst_JES_EtaIntercalibration_Stat167: 1.1430320595678846e-10 - syst_JES_EtaIntercalibration_Stat168: 1.0995861585160119e-07 - syst_JES_EtaIntercalibration_Stat169: 3.15071971936572e-07 + syst_JES_EtaIntercalibration_Stat167: 1.14303206e-10 + syst_JES_EtaIntercalibration_Stat168: 1.09958616e-07 + syst_JES_EtaIntercalibration_Stat169: 3.15071972e-07 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 3.6683439042707e-07 - syst_JES_EtaIntercalibration_Stat171: 2.0108997545128895e-09 + syst_JES_EtaIntercalibration_Stat170: 3.66834390e-07 + syst_JES_EtaIntercalibration_Stat171: 2.01089975e-09 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 - syst_JES_EtaIntercalibration_Stat174: 5.181460917347792e-16 - syst_JES_EtaIntercalibration_Stat175: 2.7998238283863505e-07 - syst_JES_EtaIntercalibration_Stat176: 4.3889479377181044e-07 - syst_JES_EtaIntercalibration_Stat177: 2.5703979691868725e-07 - syst_JES_EtaIntercalibration_Stat178: 4.3571931331994e-08 + syst_JES_EtaIntercalibration_Stat174: 5.18146092e-16 + syst_JES_EtaIntercalibration_Stat175: 2.79982383e-07 + syst_JES_EtaIntercalibration_Stat176: 4.38894794e-07 + syst_JES_EtaIntercalibration_Stat177: 2.57039797e-07 + syst_JES_EtaIntercalibration_Stat178: 4.35719313e-08 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 syst_JES_EtaIntercalibration_Stat180: 0.0 syst_JES_EtaIntercalibration_Stat181: 0.0 syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 - syst_JES_EtaIntercalibration_Stat184: 8.349013878896119e-08 - syst_JES_EtaIntercalibration_Stat185: 5.520761813373223e-07 - syst_JES_EtaIntercalibration_Stat186: 2.222005119256029e-06 - syst_JES_EtaIntercalibration_Stat187: 1.8106525639945396e-06 - syst_JES_EtaIntercalibration_Stat188: 1.0423651123766566e-07 + syst_JES_EtaIntercalibration_Stat184: 8.34901388e-08 + syst_JES_EtaIntercalibration_Stat185: 5.52076181e-07 + syst_JES_EtaIntercalibration_Stat186: 2.22200512e-06 + syst_JES_EtaIntercalibration_Stat187: 1.81065256e-06 + syst_JES_EtaIntercalibration_Stat188: 1.04236511e-07 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 - syst_JES_EtaIntercalibration_Stat191: 3.940352395408309e-08 - syst_JES_EtaIntercalibration_Stat192: 2.195730857823882e-06 - syst_JES_EtaIntercalibration_Stat193: 3.463125466973439e-06 - syst_JES_EtaIntercalibration_Stat194: 7.740425182120167e-07 - syst_JES_EtaIntercalibration_Stat195: 6.300090535063762e-08 - syst_JES_EtaIntercalibration_Stat196: 3.977201049419051e-15 + syst_JES_EtaIntercalibration_Stat191: 3.94035240e-08 + syst_JES_EtaIntercalibration_Stat192: 2.19573086e-06 + syst_JES_EtaIntercalibration_Stat193: 3.46312547e-06 + syst_JES_EtaIntercalibration_Stat194: 7.74042518e-07 + syst_JES_EtaIntercalibration_Stat195: 6.30009054e-08 + syst_JES_EtaIntercalibration_Stat196: 3.97720105e-15 syst_JES_EtaIntercalibration_Stat197: 0.0 syst_JES_EtaIntercalibration_Stat198: 0.0 - syst_JES_EtaIntercalibration_Stat199: 1.5506500669074247e-07 + syst_JES_EtaIntercalibration_Stat199: 1.55065007e-07 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 1.1418422077940541e-06 - syst_JES_EtaIntercalibration_Stat201: 4.060098085945707e-06 - syst_JES_EtaIntercalibration_Stat202: 3.239500694551554e-06 - syst_JES_EtaIntercalibration_Stat203: 9.74441849509246e-09 + syst_JES_EtaIntercalibration_Stat200: 1.14184221e-06 + syst_JES_EtaIntercalibration_Stat201: 4.06009809e-06 + syst_JES_EtaIntercalibration_Stat202: 3.23950069e-06 + syst_JES_EtaIntercalibration_Stat203: 9.74441850e-09 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 - syst_JES_EtaIntercalibration_Stat206: 1.2745732645379785e-08 - syst_JES_EtaIntercalibration_Stat207: 3.4278236171075084e-06 - syst_JES_EtaIntercalibration_Stat208: 6.549285972531663e-06 - syst_JES_EtaIntercalibration_Stat209: 1.7386164039258346e-06 + syst_JES_EtaIntercalibration_Stat206: 1.27457326e-08 + syst_JES_EtaIntercalibration_Stat207: 3.42782362e-06 + syst_JES_EtaIntercalibration_Stat208: 6.54928597e-06 + syst_JES_EtaIntercalibration_Stat209: 1.73861640e-06 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 5.241590479043551e-08 - syst_JES_EtaIntercalibration_Stat211: 4.205801491689782e-15 - syst_JES_EtaIntercalibration_Stat212: 5.503713201103415e-08 - syst_JES_EtaIntercalibration_Stat213: 1.3917228199250022e-06 - syst_JES_EtaIntercalibration_Stat214: 4.548873569357583e-06 - syst_JES_EtaIntercalibration_Stat215: 3.911227045314551e-06 - syst_JES_EtaIntercalibration_Stat216: 4.268305436221148e-08 + syst_JES_EtaIntercalibration_Stat210: 5.24159048e-08 + syst_JES_EtaIntercalibration_Stat211: 4.20580149e-15 + syst_JES_EtaIntercalibration_Stat212: 5.50371320e-08 + syst_JES_EtaIntercalibration_Stat213: 1.39172282e-06 + syst_JES_EtaIntercalibration_Stat214: 4.54887357e-06 + syst_JES_EtaIntercalibration_Stat215: 3.91122705e-06 + syst_JES_EtaIntercalibration_Stat216: 4.26830544e-08 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 - syst_JES_EtaIntercalibration_Stat219: 1.4124882653229372e-08 + syst_JES_EtaIntercalibration_Stat219: 1.41248827e-08 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 3.618511676090047e-06 - syst_JES_EtaIntercalibration_Stat221: 5.631923561271051e-06 - syst_JES_EtaIntercalibration_Stat222: 1.7328285402774276e-06 - syst_JES_EtaIntercalibration_Stat223: 1.2160728719941081e-08 - syst_JES_EtaIntercalibration_Stat224: 1.405559339807789e-07 - syst_JES_EtaIntercalibration_Stat225: 4.27808099502569e-06 - syst_JES_EtaIntercalibration_Stat226: 1.3479801435852088e-05 - syst_JES_EtaIntercalibration_Stat227: 1.0083295245107127e-05 - syst_JES_EtaIntercalibration_Stat228: 4.226153925261123e-08 + syst_JES_EtaIntercalibration_Stat220: 3.61851168e-06 + syst_JES_EtaIntercalibration_Stat221: 5.63192356e-06 + syst_JES_EtaIntercalibration_Stat222: 1.73282854e-06 + syst_JES_EtaIntercalibration_Stat223: 1.21607287e-08 + syst_JES_EtaIntercalibration_Stat224: 1.40555934e-07 + syst_JES_EtaIntercalibration_Stat225: 4.27808100e-06 + syst_JES_EtaIntercalibration_Stat226: 1.34798014e-05 + syst_JES_EtaIntercalibration_Stat227: 1.00832952e-05 + syst_JES_EtaIntercalibration_Stat228: 4.22615393e-08 syst_JES_EtaIntercalibration_Stat229: 0.0 syst_JES_EtaIntercalibration_Stat23: 0.0 syst_JES_EtaIntercalibration_Stat230: 0.0 - syst_JES_EtaIntercalibration_Stat231: 6.130646652050662e-08 - syst_JES_EtaIntercalibration_Stat232: 1.1894617805965857e-05 - syst_JES_EtaIntercalibration_Stat233: 1.406217603182381e-05 - syst_JES_EtaIntercalibration_Stat234: 6.834849010768271e-06 - syst_JES_EtaIntercalibration_Stat235: 1.525185951777684e-07 - syst_JES_EtaIntercalibration_Stat236: 9.619222980573846e-07 - syst_JES_EtaIntercalibration_Stat237: 3.3791410151102013e-06 - syst_JES_EtaIntercalibration_Stat238: 2.197451876606175e-06 - syst_JES_EtaIntercalibration_Stat239: 4.172624932821065e-08 + syst_JES_EtaIntercalibration_Stat231: 6.13064665e-08 + syst_JES_EtaIntercalibration_Stat232: 1.18946178e-05 + syst_JES_EtaIntercalibration_Stat233: 1.40621760e-05 + syst_JES_EtaIntercalibration_Stat234: 6.83484901e-06 + syst_JES_EtaIntercalibration_Stat235: 1.52518595e-07 + syst_JES_EtaIntercalibration_Stat236: 9.61922298e-07 + syst_JES_EtaIntercalibration_Stat237: 3.37914102e-06 + syst_JES_EtaIntercalibration_Stat238: 2.19745188e-06 + syst_JES_EtaIntercalibration_Stat239: 4.17262493e-08 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 - syst_JES_EtaIntercalibration_Stat242: 1.670576417737303e-08 - syst_JES_EtaIntercalibration_Stat243: 2.1846832150222607e-06 - syst_JES_EtaIntercalibration_Stat244: 3.2309123711422443e-06 - syst_JES_EtaIntercalibration_Stat245: 1.0894447702843865e-06 + syst_JES_EtaIntercalibration_Stat242: 1.67057642e-08 + syst_JES_EtaIntercalibration_Stat243: 2.18468322e-06 + syst_JES_EtaIntercalibration_Stat244: 3.23091237e-06 + syst_JES_EtaIntercalibration_Stat245: 1.08944477e-06 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 - syst_JES_EtaIntercalibration_Stat27: 6.965704899721204e-22 - syst_JES_EtaIntercalibration_Stat28: 6.786188019110637e-18 - syst_JES_EtaIntercalibration_Stat29: 5.367625464907324e-12 + syst_JES_EtaIntercalibration_Stat27: 6.96570490e-22 + syst_JES_EtaIntercalibration_Stat28: 6.78618802e-18 + syst_JES_EtaIntercalibration_Stat29: 5.36762546e-12 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 5.378883806899826e-12 - syst_JES_EtaIntercalibration_Stat31: 1.388238722266455e-22 + syst_JES_EtaIntercalibration_Stat30: 5.37888381e-12 + syst_JES_EtaIntercalibration_Stat31: 1.38823872e-22 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 - syst_JES_EtaIntercalibration_Stat34: 2.5998082621608846e-23 - syst_JES_EtaIntercalibration_Stat35: 2.9947346221881917e-15 - syst_JES_EtaIntercalibration_Stat36: 3.001708573956537e-15 - syst_JES_EtaIntercalibration_Stat37: 7.608494071102375e-20 - syst_JES_EtaIntercalibration_Stat38: 1.615786334884659e-22 + syst_JES_EtaIntercalibration_Stat34: 2.59980826e-23 + syst_JES_EtaIntercalibration_Stat35: 2.99473462e-15 + syst_JES_EtaIntercalibration_Stat36: 3.00170857e-15 + syst_JES_EtaIntercalibration_Stat37: 7.60849407e-20 + syst_JES_EtaIntercalibration_Stat38: 1.61578633e-22 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 syst_JES_EtaIntercalibration_Stat40: 0.0 @@ -32218,21 +32218,21 @@ bins: syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 syst_JES_EtaIntercalibration_Stat47: 0.0 - syst_JES_EtaIntercalibration_Stat48: 3.729971414099577e-22 - syst_JES_EtaIntercalibration_Stat49: 1.8617400644289738e-21 - syst_JES_EtaIntercalibration_Stat5: 3.0769882596461104e-22 - syst_JES_EtaIntercalibration_Stat50: 7.022220673512048e-18 - syst_JES_EtaIntercalibration_Stat51: 5.3148012147144984e-12 - syst_JES_EtaIntercalibration_Stat52: 5.344242830493244e-12 - syst_JES_EtaIntercalibration_Stat53: 4.645460445424113e-22 - syst_JES_EtaIntercalibration_Stat54: 8.39351821347878e-23 + syst_JES_EtaIntercalibration_Stat48: 3.72997141e-22 + syst_JES_EtaIntercalibration_Stat49: 1.86174006e-21 + syst_JES_EtaIntercalibration_Stat5: 3.07698826e-22 + syst_JES_EtaIntercalibration_Stat50: 7.02222067e-18 + syst_JES_EtaIntercalibration_Stat51: 5.31480121e-12 + syst_JES_EtaIntercalibration_Stat52: 5.34424283e-12 + syst_JES_EtaIntercalibration_Stat53: 4.64546045e-22 + syst_JES_EtaIntercalibration_Stat54: 8.39351821e-23 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 9.692665719501524e-23 - syst_JES_EtaIntercalibration_Stat57: 2.961208120795073e-15 - syst_JES_EtaIntercalibration_Stat58: 2.9890898221824983e-15 - syst_JES_EtaIntercalibration_Stat59: 3.112256255516245e-19 - syst_JES_EtaIntercalibration_Stat6: 7.737379789050037e-22 - syst_JES_EtaIntercalibration_Stat60: 4.737617201716491e-21 + syst_JES_EtaIntercalibration_Stat56: 9.69266572e-23 + syst_JES_EtaIntercalibration_Stat57: 2.96120812e-15 + syst_JES_EtaIntercalibration_Stat58: 2.98908982e-15 + syst_JES_EtaIntercalibration_Stat59: 3.11225626e-19 + syst_JES_EtaIntercalibration_Stat6: 7.73737979e-22 + syst_JES_EtaIntercalibration_Stat60: 4.73761720e-21 syst_JES_EtaIntercalibration_Stat61: 0.0 syst_JES_EtaIntercalibration_Stat62: 0.0 syst_JES_EtaIntercalibration_Stat63: 0.0 @@ -32242,21 +32242,21 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 3.2117781290120273e-21 - syst_JES_EtaIntercalibration_Stat70: 3.0769882596461104e-22 - syst_JES_EtaIntercalibration_Stat71: 6.6020728563080845e-21 - syst_JES_EtaIntercalibration_Stat72: 1.0631131207449187e-17 - syst_JES_EtaIntercalibration_Stat73: 9.254361346665514e-11 - syst_JES_EtaIntercalibration_Stat74: 5.5188923481075435e-12 - syst_JES_EtaIntercalibration_Stat75: 5.59284068318596e-21 - syst_JES_EtaIntercalibration_Stat76: 8.39351821347878e-23 + syst_JES_EtaIntercalibration_Stat7: 3.21177813e-21 + syst_JES_EtaIntercalibration_Stat70: 3.07698826e-22 + syst_JES_EtaIntercalibration_Stat71: 6.60207286e-21 + syst_JES_EtaIntercalibration_Stat72: 1.06311312e-17 + syst_JES_EtaIntercalibration_Stat73: 9.25436135e-11 + syst_JES_EtaIntercalibration_Stat74: 5.51889235e-12 + syst_JES_EtaIntercalibration_Stat75: 5.59284068e-21 + syst_JES_EtaIntercalibration_Stat76: 8.39351821e-23 syst_JES_EtaIntercalibration_Stat77: 0.0 - syst_JES_EtaIntercalibration_Stat78: 5.598670980688185e-21 - syst_JES_EtaIntercalibration_Stat79: 2.79967112447815e-15 - syst_JES_EtaIntercalibration_Stat8: 4.311611154777296e-22 - syst_JES_EtaIntercalibration_Stat80: 4.796031438067056e-12 - syst_JES_EtaIntercalibration_Stat81: 3.980371244394171e-15 - syst_JES_EtaIntercalibration_Stat82: 5.063791736436244e-21 + syst_JES_EtaIntercalibration_Stat78: 5.59867098e-21 + syst_JES_EtaIntercalibration_Stat79: 2.79967112e-15 + syst_JES_EtaIntercalibration_Stat8: 4.31161115e-22 + syst_JES_EtaIntercalibration_Stat80: 4.79603144e-12 + syst_JES_EtaIntercalibration_Stat81: 3.98037124e-15 + syst_JES_EtaIntercalibration_Stat82: 5.06379174e-21 syst_JES_EtaIntercalibration_Stat83: 0.0 syst_JES_EtaIntercalibration_Stat84: 0.0 syst_JES_EtaIntercalibration_Stat85: 0.0 @@ -32266,113 +32266,113 @@ bins: syst_JES_EtaIntercalibration_Stat89: 0.0 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 2.6301191512933403e-22 - syst_JES_EtaIntercalibration_Stat92: 3.7006975599202917e-19 - syst_JES_EtaIntercalibration_Stat93: 1.574260499409167e-17 - syst_JES_EtaIntercalibration_Stat94: 9.301056045493059e-11 - syst_JES_EtaIntercalibration_Stat95: 5.597889485109545e-12 - syst_JES_EtaIntercalibration_Stat96: 2.4786576745286956e-20 - syst_JES_EtaIntercalibration_Stat97: 8.39351821347878e-23 + syst_JES_EtaIntercalibration_Stat91: 2.63011915e-22 + syst_JES_EtaIntercalibration_Stat92: 3.70069756e-19 + syst_JES_EtaIntercalibration_Stat93: 1.57426050e-17 + syst_JES_EtaIntercalibration_Stat94: 9.30105605e-11 + syst_JES_EtaIntercalibration_Stat95: 5.59788949e-12 + syst_JES_EtaIntercalibration_Stat96: 2.47865767e-20 + syst_JES_EtaIntercalibration_Stat97: 8.39351821e-23 syst_JES_EtaIntercalibration_Stat98: 0.0 - syst_JES_EtaIntercalibration_Stat99: 1.620319919905431e-16 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.00015401041360895047 - syst_JES_Flavour_Comp: 0.0003896720429733188 - syst_JES_Flavour_Response: 2.0933496482909873e-05 - syst_JES_Gjet_Generator: 0.00044443486305644386 - syst_JES_Gjet_OOC: 0.00036973862051454674 - syst_JES_Gjet_Purity: 6.486719721862507e-05 - syst_JES_Gjet_Stat1: 1.8894588510999651e-06 - syst_JES_Gjet_Stat10: 8.185129015476788e-06 - syst_JES_Gjet_Stat11: 8.259566862130242e-06 - syst_JES_Gjet_Stat12: 2.201528559887425e-05 - syst_JES_Gjet_Stat13: 7.388873036532702e-05 - syst_JES_Gjet_Stat14: 0.00019258084016848614 - syst_JES_Gjet_Stat15: 0.00030287599772844335 - syst_JES_Gjet_Stat2: 1.727563257163106e-06 - syst_JES_Gjet_Stat3: 2.4993163400218068e-06 - syst_JES_Gjet_Stat4: 1.8013591396498368e-06 - syst_JES_Gjet_Stat5: 1.6813426182667234e-06 - syst_JES_Gjet_Stat6: 5.157979328186572e-06 - syst_JES_Gjet_Stat7: 4.125041498882163e-06 - syst_JES_Gjet_Stat8: 3.803108202510152e-06 - syst_JES_Gjet_Stat9: 4.455766793718002e-06 - syst_JES_Gjet_Veto: 0.00037558428890862834 - syst_JES_Gjet_dPhi: 4.0741078863967265e-05 - syst_JES_LArESZee: 0.0006688850125395246 - syst_JES_LArEsmear: 6.23180447382618e-05 - syst_JES_LAr_JVT: 7.829228106908114e-05 - syst_JES_MJB_Alpha: 7.167845282928476e-06 - syst_JES_MJB_Asym: 9.335846346207718e-05 - syst_JES_MJB_Beta: 5.5848083897301264e-06 - syst_JES_MJB_Fragmentation: 3.9013875416318226e-05 - syst_JES_MJB_Stat1: 4.45050455004823e-08 - syst_JES_MJB_Stat10: 6.387851047104965e-06 - syst_JES_MJB_Stat11: 8.783240916654855e-06 - syst_JES_MJB_Stat12: 1.5112240072206369e-05 - syst_JES_MJB_Stat13: 1.8233142214111096e-05 - syst_JES_MJB_Stat14: 1.644156014494975e-05 - syst_JES_MJB_Stat15: 2.6379777766311834e-05 - syst_JES_MJB_Stat16: 8.720036969531723e-06 + syst_JES_EtaIntercalibration_Stat99: 1.62031992e-16 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.54010414e-04 + syst_JES_Flavour_Comp: 3.89672043e-04 + syst_JES_Flavour_Response: 2.09334965e-05 + syst_JES_Gjet_Generator: 4.44434863e-04 + syst_JES_Gjet_OOC: 3.69738621e-04 + syst_JES_Gjet_Purity: 6.48671972e-05 + syst_JES_Gjet_Stat1: 1.88945885e-06 + syst_JES_Gjet_Stat10: 8.18512902e-06 + syst_JES_Gjet_Stat11: 8.25956686e-06 + syst_JES_Gjet_Stat12: 2.20152856e-05 + syst_JES_Gjet_Stat13: 7.38887304e-05 + syst_JES_Gjet_Stat14: 1.92580840e-04 + syst_JES_Gjet_Stat15: 3.02875998e-04 + syst_JES_Gjet_Stat2: 1.72756326e-06 + syst_JES_Gjet_Stat3: 2.49931634e-06 + syst_JES_Gjet_Stat4: 1.80135914e-06 + syst_JES_Gjet_Stat5: 1.68134262e-06 + syst_JES_Gjet_Stat6: 5.15797933e-06 + syst_JES_Gjet_Stat7: 4.12504150e-06 + syst_JES_Gjet_Stat8: 3.80310820e-06 + syst_JES_Gjet_Stat9: 4.45576679e-06 + syst_JES_Gjet_Veto: 3.75584289e-04 + syst_JES_Gjet_dPhi: 4.07410789e-05 + syst_JES_LArESZee: 6.68885013e-04 + syst_JES_LArEsmear: 6.23180447e-05 + syst_JES_LAr_JVT: 7.82922811e-05 + syst_JES_MJB_Alpha: 7.16784528e-06 + syst_JES_MJB_Asym: 9.33584635e-05 + syst_JES_MJB_Beta: 5.58480839e-06 + syst_JES_MJB_Fragmentation: 3.90138754e-05 + syst_JES_MJB_Stat1: 4.45050455e-08 + syst_JES_MJB_Stat10: 6.38785105e-06 + syst_JES_MJB_Stat11: 8.78324092e-06 + syst_JES_MJB_Stat12: 1.51122401e-05 + syst_JES_MJB_Stat13: 1.82331422e-05 + syst_JES_MJB_Stat14: 1.64415601e-05 + syst_JES_MJB_Stat15: 2.63797778e-05 + syst_JES_MJB_Stat16: 8.72003697e-06 syst_JES_MJB_Stat2: 0.0 - syst_JES_MJB_Stat3: 3.2250786036932496e-07 - syst_JES_MJB_Stat4: 2.482028807246201e-07 - syst_JES_MJB_Stat5: 3.337228893483334e-07 - syst_JES_MJB_Stat6: 9.577704356994948e-07 - syst_JES_MJB_Stat7: 1.949059965727068e-06 - syst_JES_MJB_Stat8: 2.6866582867942104e-06 - syst_JES_MJB_Stat9: 4.515723059488923e-06 - syst_JES_MJB_Threshold: 6.579299886766069e-05 - syst_JES_Pileup_MuOffset: 9.425730900041651e-05 - syst_JES_Pileup_NPVOffset: 9.71813411874934e-05 - syst_JES_Pileup_Pt_term: 6.178216085570334e-05 - syst_JES_Pileup_Rho_topology: 0.00011905019645090889 - syst_JES_PunchThrough_MC15: 0.00013679254475299448 - syst_JES_SingleParticle_HighPt: 1.3078838509210212e-09 - syst_JES_Zjet_MC: 0.00016872056039499158 - syst_JES_Zjet_MuScale: 1.3771666565815482e-05 - syst_JES_Zjet_MuSmearID: 4.372051778055699e-06 - syst_JES_Zjet_MuSmearMS: 4.801564016026445e-05 - syst_JES_Zjet_OOC: 0.0001071068488706488 - syst_JES_Zjet_Stat1: 1.2143057522716425e-05 - syst_JES_Zjet_Stat10: 9.004120945433819e-06 - syst_JES_Zjet_Stat11: 1.3480843297064172e-05 - syst_JES_Zjet_Stat12: 3.100167858358641e-05 - syst_JES_Zjet_Stat13: 4.8262385975001275e-05 - syst_JES_Zjet_Stat2: 2.821510765529701e-08 - syst_JES_Zjet_Stat3: 6.799513273021826e-06 - syst_JES_Zjet_Stat4: 6.521100578123297e-06 - syst_JES_Zjet_Stat5: 6.596274933627312e-06 - syst_JES_Zjet_Stat6: 4.473191589905355e-06 - syst_JES_Zjet_Stat7: 5.3175540194717346e-06 - syst_JES_Zjet_Stat8: 4.126245958192507e-06 - syst_JES_Zjet_Stat9: 5.281186112039605e-06 - syst_JES_Zjet_Veto: 2.231550357935039e-05 - syst_JES_Zjet_dPhi: 2.101408277798486e-05 + syst_JES_MJB_Stat3: 3.22507860e-07 + syst_JES_MJB_Stat4: 2.48202881e-07 + syst_JES_MJB_Stat5: 3.33722889e-07 + syst_JES_MJB_Stat6: 9.57770436e-07 + syst_JES_MJB_Stat7: 1.94905997e-06 + syst_JES_MJB_Stat8: 2.68665829e-06 + syst_JES_MJB_Stat9: 4.51572306e-06 + syst_JES_MJB_Threshold: 6.57929989e-05 + syst_JES_Pileup_MuOffset: 9.42573090e-05 + syst_JES_Pileup_NPVOffset: 9.71813412e-05 + syst_JES_Pileup_Pt_term: 6.17821609e-05 + syst_JES_Pileup_Rho_topology: 1.19050196e-04 + syst_JES_PunchThrough_MC15: 1.36792545e-04 + syst_JES_SingleParticle_HighPt: 1.30788385e-09 + syst_JES_Zjet_MC: 1.68720560e-04 + syst_JES_Zjet_MuScale: 1.37716666e-05 + syst_JES_Zjet_MuSmearID: 4.37205178e-06 + syst_JES_Zjet_MuSmearMS: 4.80156402e-05 + syst_JES_Zjet_OOC: 1.07106849e-04 + syst_JES_Zjet_Stat1: 1.21430575e-05 + syst_JES_Zjet_Stat10: 9.00412095e-06 + syst_JES_Zjet_Stat11: 1.34808433e-05 + syst_JES_Zjet_Stat12: 3.10016786e-05 + syst_JES_Zjet_Stat13: 4.82623860e-05 + syst_JES_Zjet_Stat2: 2.82151077e-08 + syst_JES_Zjet_Stat3: 6.79951327e-06 + syst_JES_Zjet_Stat4: 6.52110058e-06 + syst_JES_Zjet_Stat5: 6.59627493e-06 + syst_JES_Zjet_Stat6: 4.47319159e-06 + syst_JES_Zjet_Stat7: 5.31755402e-06 + syst_JES_Zjet_Stat8: 4.12624596e-06 + syst_JES_Zjet_Stat9: 5.28118611e-06 + syst_JES_Zjet_Veto: 2.23155036e-05 + syst_JES_Zjet_dPhi: 2.10140828e-05 syst_PRW: 0.0 - syst_Unfolding_bias: 1.545e-05 - syst_cleaning: 9.710742852634911e-05 - syst_lumi: 0.0003161 -- stat: 0.00016897 + syst_Unfolding_bias: 1.54500000e-05 + syst_cleaning: 9.71074285e-05 + syst_lumi: 3.16100000e-04 +- stat: 1.68970000e-04 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 5.9706841107196425e-05 - syst_JER_NP1: 1.1857528863553316e-05 - syst_JER_NP2: 4.92124890144768e-05 - syst_JER_NP3: 5.772667039592705e-06 - syst_JER_NP4: 1.8930580418994026e-16 - syst_JER_NP5: 2.410719347862117e-11 - syst_JER_NP6: 2.0098365605192876e-18 - syst_JER_NP7: 1.5245368968968903e-20 - syst_JER_NP8: 5.274149435691029e-06 - syst_JES_EtaIntercalibration_Modelling: 0.0005705397707434601 + syst_JER_NP0: 5.97068411e-05 + syst_JER_NP1: 1.18575289e-05 + syst_JER_NP2: 4.92124890e-05 + syst_JER_NP3: 5.77266704e-06 + syst_JER_NP4: 1.89305804e-16 + syst_JER_NP5: 2.41071935e-11 + syst_JER_NP6: 2.00983656e-18 + syst_JER_NP7: 1.52453690e-20 + syst_JER_NP8: 5.27414944e-06 + syst_JES_EtaIntercalibration_Modelling: 5.70539771e-04 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 3.8523206911548786e-17 - syst_JES_EtaIntercalibration_Stat101: 2.2254799423452285e-12 - syst_JES_EtaIntercalibration_Stat102: 1.4990063554485017e-16 - syst_JES_EtaIntercalibration_Stat103: 1.3359609678055716e-19 + syst_JES_EtaIntercalibration_Stat100: 3.85232069e-17 + syst_JES_EtaIntercalibration_Stat101: 2.22547994e-12 + syst_JES_EtaIntercalibration_Stat102: 1.49900636e-16 + syst_JES_EtaIntercalibration_Stat103: 1.33596097e-19 syst_JES_EtaIntercalibration_Stat104: 0.0 syst_JES_EtaIntercalibration_Stat105: 0.0 syst_JES_EtaIntercalibration_Stat106: 0.0 @@ -32381,170 +32381,170 @@ bins: syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 syst_JES_EtaIntercalibration_Stat110: 0.0 - syst_JES_EtaIntercalibration_Stat111: 4.321466764884349e-23 - syst_JES_EtaIntercalibration_Stat112: 1.2663365222167448e-18 - syst_JES_EtaIntercalibration_Stat113: 2.972229443061025e-08 - syst_JES_EtaIntercalibration_Stat114: 2.10092102648848e-08 - syst_JES_EtaIntercalibration_Stat115: 8.695397465326125e-08 - syst_JES_EtaIntercalibration_Stat116: 4.669778800616194e-16 + syst_JES_EtaIntercalibration_Stat111: 4.32146676e-23 + syst_JES_EtaIntercalibration_Stat112: 1.26633652e-18 + syst_JES_EtaIntercalibration_Stat113: 2.97222944e-08 + syst_JES_EtaIntercalibration_Stat114: 2.10092103e-08 + syst_JES_EtaIntercalibration_Stat115: 8.69539747e-08 + syst_JES_EtaIntercalibration_Stat116: 4.66977880e-16 syst_JES_EtaIntercalibration_Stat117: 0.0 syst_JES_EtaIntercalibration_Stat118: 0.0 - syst_JES_EtaIntercalibration_Stat119: 4.771793722181614e-16 + syst_JES_EtaIntercalibration_Stat119: 4.77179372e-16 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 1.892264793665142e-09 - syst_JES_EtaIntercalibration_Stat121: 3.4756464146975595e-09 - syst_JES_EtaIntercalibration_Stat122: 2.528794182079629e-08 - syst_JES_EtaIntercalibration_Stat123: 6.034174849405674e-16 + syst_JES_EtaIntercalibration_Stat120: 1.89226479e-09 + syst_JES_EtaIntercalibration_Stat121: 3.47564641e-09 + syst_JES_EtaIntercalibration_Stat122: 2.52879418e-08 + syst_JES_EtaIntercalibration_Stat123: 6.03417485e-16 syst_JES_EtaIntercalibration_Stat124: 0.0 syst_JES_EtaIntercalibration_Stat125: 0.0 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 syst_JES_EtaIntercalibration_Stat128: 0.0 syst_JES_EtaIntercalibration_Stat129: 0.0 - syst_JES_EtaIntercalibration_Stat13: 4.782193661587137e-16 + syst_JES_EtaIntercalibration_Stat13: 4.78219366e-16 syst_JES_EtaIntercalibration_Stat130: 0.0 - syst_JES_EtaIntercalibration_Stat131: 5.048060815798479e-18 - syst_JES_EtaIntercalibration_Stat132: 4.75361289519968e-08 - syst_JES_EtaIntercalibration_Stat133: 9.522478063377201e-11 - syst_JES_EtaIntercalibration_Stat134: 7.68723275613655e-08 - syst_JES_EtaIntercalibration_Stat135: 8.181006632858514e-14 + syst_JES_EtaIntercalibration_Stat131: 5.04806082e-18 + syst_JES_EtaIntercalibration_Stat132: 4.75361290e-08 + syst_JES_EtaIntercalibration_Stat133: 9.52247806e-11 + syst_JES_EtaIntercalibration_Stat134: 7.68723276e-08 + syst_JES_EtaIntercalibration_Stat135: 8.18100663e-14 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 - syst_JES_EtaIntercalibration_Stat138: 4.483577503867503e-16 - syst_JES_EtaIntercalibration_Stat139: 1.6558775407619972e-08 - syst_JES_EtaIntercalibration_Stat14: 5.255505494241253e-22 - syst_JES_EtaIntercalibration_Stat140: 2.2246200641907376e-13 - syst_JES_EtaIntercalibration_Stat141: 3.581532014000014e-08 - syst_JES_EtaIntercalibration_Stat142: 1.0637292379472566e-12 + syst_JES_EtaIntercalibration_Stat138: 4.48357750e-16 + syst_JES_EtaIntercalibration_Stat139: 1.65587754e-08 + syst_JES_EtaIntercalibration_Stat14: 5.25550549e-22 + syst_JES_EtaIntercalibration_Stat140: 2.22462006e-13 + syst_JES_EtaIntercalibration_Stat141: 3.58153201e-08 + syst_JES_EtaIntercalibration_Stat142: 1.06372924e-12 syst_JES_EtaIntercalibration_Stat143: 0.0 syst_JES_EtaIntercalibration_Stat144: 0.0 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 syst_JES_EtaIntercalibration_Stat147: 0.0 syst_JES_EtaIntercalibration_Stat148: 0.0 - syst_JES_EtaIntercalibration_Stat149: 3.868413760737984e-14 - syst_JES_EtaIntercalibration_Stat15: 4.575657157379146e-22 - syst_JES_EtaIntercalibration_Stat150: 3.3910090710580703e-08 - syst_JES_EtaIntercalibration_Stat151: 1.0390253057397014e-08 - syst_JES_EtaIntercalibration_Stat152: 7.685938843730562e-08 - syst_JES_EtaIntercalibration_Stat153: 9.57975964475101e-14 + syst_JES_EtaIntercalibration_Stat149: 3.86841376e-14 + syst_JES_EtaIntercalibration_Stat15: 4.57565716e-22 + syst_JES_EtaIntercalibration_Stat150: 3.39100907e-08 + syst_JES_EtaIntercalibration_Stat151: 1.03902531e-08 + syst_JES_EtaIntercalibration_Stat152: 7.68593884e-08 + syst_JES_EtaIntercalibration_Stat153: 9.57975964e-14 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 2.4482535052492363e-17 - syst_JES_EtaIntercalibration_Stat157: 2.80238947150463e-08 - syst_JES_EtaIntercalibration_Stat158: 1.6665314498082537e-07 - syst_JES_EtaIntercalibration_Stat159: 3.381041509283788e-08 + syst_JES_EtaIntercalibration_Stat156: 2.44825351e-17 + syst_JES_EtaIntercalibration_Stat157: 2.80238947e-08 + syst_JES_EtaIntercalibration_Stat158: 1.66653145e-07 + syst_JES_EtaIntercalibration_Stat159: 3.38104151e-08 syst_JES_EtaIntercalibration_Stat16: 0.0 - syst_JES_EtaIntercalibration_Stat160: 1.8186435020366142e-16 + syst_JES_EtaIntercalibration_Stat160: 1.81864350e-16 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 - syst_JES_EtaIntercalibration_Stat167: 1.72611870614299e-11 - syst_JES_EtaIntercalibration_Stat168: 5.4153257519746684e-08 - syst_JES_EtaIntercalibration_Stat169: 1.9773118115259413e-07 + syst_JES_EtaIntercalibration_Stat167: 1.72611871e-11 + syst_JES_EtaIntercalibration_Stat168: 5.41532575e-08 + syst_JES_EtaIntercalibration_Stat169: 1.97731181e-07 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 2.3154655579386189e-07 - syst_JES_EtaIntercalibration_Stat171: 1.6798187671475061e-09 + syst_JES_EtaIntercalibration_Stat170: 2.31546556e-07 + syst_JES_EtaIntercalibration_Stat171: 1.67981877e-09 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 - syst_JES_EtaIntercalibration_Stat174: 9.22065183361933e-17 - syst_JES_EtaIntercalibration_Stat175: 1.6515305651122537e-07 - syst_JES_EtaIntercalibration_Stat176: 2.6197324290850776e-07 - syst_JES_EtaIntercalibration_Stat177: 1.2415620916812819e-07 - syst_JES_EtaIntercalibration_Stat178: 2.423027793381661e-08 + syst_JES_EtaIntercalibration_Stat174: 9.22065183e-17 + syst_JES_EtaIntercalibration_Stat175: 1.65153057e-07 + syst_JES_EtaIntercalibration_Stat176: 2.61973243e-07 + syst_JES_EtaIntercalibration_Stat177: 1.24156209e-07 + syst_JES_EtaIntercalibration_Stat178: 2.42302779e-08 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 syst_JES_EtaIntercalibration_Stat180: 0.0 syst_JES_EtaIntercalibration_Stat181: 0.0 syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 - syst_JES_EtaIntercalibration_Stat184: 3.821729211692006e-08 - syst_JES_EtaIntercalibration_Stat185: 3.2710641617064007e-07 - syst_JES_EtaIntercalibration_Stat186: 1.2631609596563694e-06 - syst_JES_EtaIntercalibration_Stat187: 1.0637975218527255e-06 - syst_JES_EtaIntercalibration_Stat188: 3.743675566872749e-08 + syst_JES_EtaIntercalibration_Stat184: 3.82172921e-08 + syst_JES_EtaIntercalibration_Stat185: 3.27106416e-07 + syst_JES_EtaIntercalibration_Stat186: 1.26316096e-06 + syst_JES_EtaIntercalibration_Stat187: 1.06379752e-06 + syst_JES_EtaIntercalibration_Stat188: 3.74367557e-08 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 - syst_JES_EtaIntercalibration_Stat191: 9.64478584521191e-09 - syst_JES_EtaIntercalibration_Stat192: 1.2649354766153096e-06 - syst_JES_EtaIntercalibration_Stat193: 2.0713169723632354e-06 - syst_JES_EtaIntercalibration_Stat194: 4.228645261783022e-07 - syst_JES_EtaIntercalibration_Stat195: 2.8325084289371493e-08 - syst_JES_EtaIntercalibration_Stat196: 6.065558509321298e-16 + syst_JES_EtaIntercalibration_Stat191: 9.64478585e-09 + syst_JES_EtaIntercalibration_Stat192: 1.26493548e-06 + syst_JES_EtaIntercalibration_Stat193: 2.07131697e-06 + syst_JES_EtaIntercalibration_Stat194: 4.22864526e-07 + syst_JES_EtaIntercalibration_Stat195: 2.83250843e-08 + syst_JES_EtaIntercalibration_Stat196: 6.06555851e-16 syst_JES_EtaIntercalibration_Stat197: 0.0 syst_JES_EtaIntercalibration_Stat198: 0.0 - syst_JES_EtaIntercalibration_Stat199: 4.851163780991114e-08 + syst_JES_EtaIntercalibration_Stat199: 4.85116378e-08 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 7.134460806536119e-07 - syst_JES_EtaIntercalibration_Stat201: 2.527665128137032e-06 - syst_JES_EtaIntercalibration_Stat202: 2.028251155552487e-06 - syst_JES_EtaIntercalibration_Stat203: 2.8483877031577007e-08 + syst_JES_EtaIntercalibration_Stat200: 7.13446081e-07 + syst_JES_EtaIntercalibration_Stat201: 2.52766513e-06 + syst_JES_EtaIntercalibration_Stat202: 2.02825116e-06 + syst_JES_EtaIntercalibration_Stat203: 2.84838770e-08 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 - syst_JES_EtaIntercalibration_Stat206: 1.84681904979887e-08 - syst_JES_EtaIntercalibration_Stat207: 1.956475594021045e-06 - syst_JES_EtaIntercalibration_Stat208: 3.871098648962591e-06 - syst_JES_EtaIntercalibration_Stat209: 1.1046320925991605e-06 + syst_JES_EtaIntercalibration_Stat206: 1.84681905e-08 + syst_JES_EtaIntercalibration_Stat207: 1.95647559e-06 + syst_JES_EtaIntercalibration_Stat208: 3.87109865e-06 + syst_JES_EtaIntercalibration_Stat209: 1.10463209e-06 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 3.0121273989491216e-08 - syst_JES_EtaIntercalibration_Stat211: 6.427500045118631e-16 - syst_JES_EtaIntercalibration_Stat212: 2.8038529686843425e-08 - syst_JES_EtaIntercalibration_Stat213: 8.079880862364246e-07 - syst_JES_EtaIntercalibration_Stat214: 2.663227177692508e-06 - syst_JES_EtaIntercalibration_Stat215: 2.416830310551405e-06 - syst_JES_EtaIntercalibration_Stat216: 4.3640791411247343e-08 + syst_JES_EtaIntercalibration_Stat210: 3.01212740e-08 + syst_JES_EtaIntercalibration_Stat211: 6.42750005e-16 + syst_JES_EtaIntercalibration_Stat212: 2.80385297e-08 + syst_JES_EtaIntercalibration_Stat213: 8.07988086e-07 + syst_JES_EtaIntercalibration_Stat214: 2.66322718e-06 + syst_JES_EtaIntercalibration_Stat215: 2.41683031e-06 + syst_JES_EtaIntercalibration_Stat216: 4.36407914e-08 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 - syst_JES_EtaIntercalibration_Stat219: 2.1756791767170086e-08 + syst_JES_EtaIntercalibration_Stat219: 2.17567918e-08 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 2.1329500697390923e-06 - syst_JES_EtaIntercalibration_Stat221: 3.3819072651390076e-06 - syst_JES_EtaIntercalibration_Stat222: 1.0904735989468061e-06 - syst_JES_EtaIntercalibration_Stat223: 1.1082527091875344e-09 - syst_JES_EtaIntercalibration_Stat224: 8.438551702773188e-08 - syst_JES_EtaIntercalibration_Stat225: 2.5307182280925703e-06 - syst_JES_EtaIntercalibration_Stat226: 8.100831238212535e-06 - syst_JES_EtaIntercalibration_Stat227: 6.170253053967884e-06 - syst_JES_EtaIntercalibration_Stat228: 1.495732847135477e-08 + syst_JES_EtaIntercalibration_Stat220: 2.13295007e-06 + syst_JES_EtaIntercalibration_Stat221: 3.38190727e-06 + syst_JES_EtaIntercalibration_Stat222: 1.09047360e-06 + syst_JES_EtaIntercalibration_Stat223: 1.10825271e-09 + syst_JES_EtaIntercalibration_Stat224: 8.43855170e-08 + syst_JES_EtaIntercalibration_Stat225: 2.53071823e-06 + syst_JES_EtaIntercalibration_Stat226: 8.10083124e-06 + syst_JES_EtaIntercalibration_Stat227: 6.17025305e-06 + syst_JES_EtaIntercalibration_Stat228: 1.49573285e-08 syst_JES_EtaIntercalibration_Stat229: 0.0 syst_JES_EtaIntercalibration_Stat23: 0.0 syst_JES_EtaIntercalibration_Stat230: 0.0 - syst_JES_EtaIntercalibration_Stat231: 6.723863621460507e-09 - syst_JES_EtaIntercalibration_Stat232: 7.10757426974914e-06 - syst_JES_EtaIntercalibration_Stat233: 8.347798197728548e-06 - syst_JES_EtaIntercalibration_Stat234: 3.85892951477479e-06 - syst_JES_EtaIntercalibration_Stat235: 8.716102727136711e-08 - syst_JES_EtaIntercalibration_Stat236: 5.696561835879604e-07 - syst_JES_EtaIntercalibration_Stat237: 1.966567250312076e-06 - syst_JES_EtaIntercalibration_Stat238: 1.3871579145865117e-06 - syst_JES_EtaIntercalibration_Stat239: 1.3610235376362895e-08 + syst_JES_EtaIntercalibration_Stat231: 6.72386362e-09 + syst_JES_EtaIntercalibration_Stat232: 7.10757427e-06 + syst_JES_EtaIntercalibration_Stat233: 8.34779820e-06 + syst_JES_EtaIntercalibration_Stat234: 3.85892951e-06 + syst_JES_EtaIntercalibration_Stat235: 8.71610273e-08 + syst_JES_EtaIntercalibration_Stat236: 5.69656184e-07 + syst_JES_EtaIntercalibration_Stat237: 1.96656725e-06 + syst_JES_EtaIntercalibration_Stat238: 1.38715791e-06 + syst_JES_EtaIntercalibration_Stat239: 1.36102354e-08 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 - syst_JES_EtaIntercalibration_Stat242: 1.0976850219894595e-08 - syst_JES_EtaIntercalibration_Stat243: 1.2565258085292162e-06 - syst_JES_EtaIntercalibration_Stat244: 1.922590440005359e-06 - syst_JES_EtaIntercalibration_Stat245: 6.776736437991373e-07 + syst_JES_EtaIntercalibration_Stat242: 1.09768502e-08 + syst_JES_EtaIntercalibration_Stat243: 1.25652581e-06 + syst_JES_EtaIntercalibration_Stat244: 1.92259044e-06 + syst_JES_EtaIntercalibration_Stat245: 6.77673644e-07 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 - syst_JES_EtaIntercalibration_Stat27: 2.184310131368712e-22 - syst_JES_EtaIntercalibration_Stat28: 1.3092627305269939e-18 - syst_JES_EtaIntercalibration_Stat29: 8.2999874998432e-13 + syst_JES_EtaIntercalibration_Stat27: 2.18431013e-22 + syst_JES_EtaIntercalibration_Stat28: 1.30926273e-18 + syst_JES_EtaIntercalibration_Stat29: 8.29998750e-13 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 8.318174060189669e-13 - syst_JES_EtaIntercalibration_Stat31: 4.3794904669379064e-23 + syst_JES_EtaIntercalibration_Stat30: 8.31817406e-13 + syst_JES_EtaIntercalibration_Stat31: 4.37949047e-23 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 - syst_JES_EtaIntercalibration_Stat34: 8.767641187913656e-24 - syst_JES_EtaIntercalibration_Stat35: 4.776173087146068e-16 - syst_JES_EtaIntercalibration_Stat36: 4.790992615290101e-16 - syst_JES_EtaIntercalibration_Stat37: 1.316084794950538e-20 - syst_JES_EtaIntercalibration_Stat38: 3.3730017417724525e-23 + syst_JES_EtaIntercalibration_Stat34: 8.76764119e-24 + syst_JES_EtaIntercalibration_Stat35: 4.77617309e-16 + syst_JES_EtaIntercalibration_Stat36: 4.79099262e-16 + syst_JES_EtaIntercalibration_Stat37: 1.31608479e-20 + syst_JES_EtaIntercalibration_Stat38: 3.37300174e-23 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 syst_JES_EtaIntercalibration_Stat40: 0.0 @@ -32555,21 +32555,21 @@ bins: syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 syst_JES_EtaIntercalibration_Stat47: 0.0 - syst_JES_EtaIntercalibration_Stat48: 1.1557975038907118e-22 - syst_JES_EtaIntercalibration_Stat49: 5.414081669129124e-22 - syst_JES_EtaIntercalibration_Stat5: 9.45093523149958e-23 - syst_JES_EtaIntercalibration_Stat50: 1.357228152918661e-18 - syst_JES_EtaIntercalibration_Stat51: 8.21858659562419e-13 - syst_JES_EtaIntercalibration_Stat52: 8.264480577762027e-13 - syst_JES_EtaIntercalibration_Stat53: 1.191762417598407e-22 - syst_JES_EtaIntercalibration_Stat54: 5.276692785258585e-24 + syst_JES_EtaIntercalibration_Stat48: 1.15579750e-22 + syst_JES_EtaIntercalibration_Stat49: 5.41408167e-22 + syst_JES_EtaIntercalibration_Stat5: 9.45093523e-23 + syst_JES_EtaIntercalibration_Stat50: 1.35722815e-18 + syst_JES_EtaIntercalibration_Stat51: 8.21858660e-13 + syst_JES_EtaIntercalibration_Stat52: 8.26448058e-13 + syst_JES_EtaIntercalibration_Stat53: 1.19176242e-22 + syst_JES_EtaIntercalibration_Stat54: 5.27669279e-24 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 3.106703719378467e-23 - syst_JES_EtaIntercalibration_Stat57: 4.728166391671088e-16 - syst_JES_EtaIntercalibration_Stat58: 4.770096595778407e-16 - syst_JES_EtaIntercalibration_Stat59: 6.770909613929283e-20 - syst_JES_EtaIntercalibration_Stat6: 2.426888338490257e-22 - syst_JES_EtaIntercalibration_Stat60: 1.2810175759918363e-21 + syst_JES_EtaIntercalibration_Stat56: 3.10670372e-23 + syst_JES_EtaIntercalibration_Stat57: 4.72816639e-16 + syst_JES_EtaIntercalibration_Stat58: 4.77009660e-16 + syst_JES_EtaIntercalibration_Stat59: 6.77090961e-20 + syst_JES_EtaIntercalibration_Stat6: 2.42688834e-22 + syst_JES_EtaIntercalibration_Stat60: 1.28101758e-21 syst_JES_EtaIntercalibration_Stat61: 0.0 syst_JES_EtaIntercalibration_Stat62: 0.0 syst_JES_EtaIntercalibration_Stat63: 0.0 @@ -32579,21 +32579,21 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 8.698495085358156e-22 - syst_JES_EtaIntercalibration_Stat70: 9.45093523149958e-23 - syst_JES_EtaIntercalibration_Stat71: 1.796947879043797e-21 - syst_JES_EtaIntercalibration_Stat72: 1.789190226750638e-18 - syst_JES_EtaIntercalibration_Stat73: 1.5751790898056856e-11 - syst_JES_EtaIntercalibration_Stat74: 8.511006193747011e-13 - syst_JES_EtaIntercalibration_Stat75: 1.0434251386659226e-21 - syst_JES_EtaIntercalibration_Stat76: 5.276692785258585e-24 + syst_JES_EtaIntercalibration_Stat7: 8.69849509e-22 + syst_JES_EtaIntercalibration_Stat70: 9.45093523e-23 + syst_JES_EtaIntercalibration_Stat71: 1.79694788e-21 + syst_JES_EtaIntercalibration_Stat72: 1.78919023e-18 + syst_JES_EtaIntercalibration_Stat73: 1.57517909e-11 + syst_JES_EtaIntercalibration_Stat74: 8.51100619e-13 + syst_JES_EtaIntercalibration_Stat75: 1.04342514e-21 + syst_JES_EtaIntercalibration_Stat76: 5.27669279e-24 syst_JES_EtaIntercalibration_Stat77: 0.0 - syst_JES_EtaIntercalibration_Stat78: 1.3981811148774682e-21 - syst_JES_EtaIntercalibration_Stat79: 4.473515919268422e-16 - syst_JES_EtaIntercalibration_Stat8: 1.1381743407756125e-22 - syst_JES_EtaIntercalibration_Stat80: 9.12787693157349e-13 - syst_JES_EtaIntercalibration_Stat81: 6.07309526672355e-16 - syst_JES_EtaIntercalibration_Stat82: 1.4002102984909088e-21 + syst_JES_EtaIntercalibration_Stat78: 1.39818111e-21 + syst_JES_EtaIntercalibration_Stat79: 4.47351592e-16 + syst_JES_EtaIntercalibration_Stat8: 1.13817434e-22 + syst_JES_EtaIntercalibration_Stat80: 9.12787693e-13 + syst_JES_EtaIntercalibration_Stat81: 6.07309527e-16 + syst_JES_EtaIntercalibration_Stat82: 1.40021030e-21 syst_JES_EtaIntercalibration_Stat83: 0.0 syst_JES_EtaIntercalibration_Stat84: 0.0 syst_JES_EtaIntercalibration_Stat85: 0.0 @@ -32603,113 +32603,113 @@ bins: syst_JES_EtaIntercalibration_Stat89: 0.0 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 8.072222788674754e-23 - syst_JES_EtaIntercalibration_Stat92: 5.881070390828102e-20 - syst_JES_EtaIntercalibration_Stat93: 2.721570507997175e-18 - syst_JES_EtaIntercalibration_Stat94: 1.5829629325877684e-11 - syst_JES_EtaIntercalibration_Stat95: 8.630488646073291e-13 - syst_JES_EtaIntercalibration_Stat96: 5.907965411840188e-21 - syst_JES_EtaIntercalibration_Stat97: 5.276692785258585e-24 + syst_JES_EtaIntercalibration_Stat91: 8.07222279e-23 + syst_JES_EtaIntercalibration_Stat92: 5.88107039e-20 + syst_JES_EtaIntercalibration_Stat93: 2.72157051e-18 + syst_JES_EtaIntercalibration_Stat94: 1.58296293e-11 + syst_JES_EtaIntercalibration_Stat95: 8.63048865e-13 + syst_JES_EtaIntercalibration_Stat96: 5.90796541e-21 + syst_JES_EtaIntercalibration_Stat97: 5.27669279e-24 syst_JES_EtaIntercalibration_Stat98: 0.0 - syst_JES_EtaIntercalibration_Stat99: 2.2871421442086822e-17 - syst_JES_EtaIntercalibration_TotalStat_MJB: 9.572640845137773e-05 - syst_JES_Flavour_Comp: 0.0002373853196808935 - syst_JES_Flavour_Response: 2.475544940008159e-05 - syst_JES_Gjet_Generator: 0.00026603535479330565 - syst_JES_Gjet_OOC: 0.00022152775785440522 - syst_JES_Gjet_Purity: 3.8255796694749416e-05 - syst_JES_Gjet_Stat1: 1.2515597388858434e-06 - syst_JES_Gjet_Stat10: 5.42127316688617e-06 - syst_JES_Gjet_Stat11: 5.530069687626007e-06 - syst_JES_Gjet_Stat12: 1.2485999999999999e-05 - syst_JES_Gjet_Stat13: 4.459307008942085e-05 - syst_JES_Gjet_Stat14: 0.00011590436434837128 - syst_JES_Gjet_Stat15: 0.0001913122251713152 - syst_JES_Gjet_Stat2: 1.1084047218863693e-06 - syst_JES_Gjet_Stat3: 1.419105802961851e-06 - syst_JES_Gjet_Stat4: 1.121383226198787e-06 - syst_JES_Gjet_Stat5: 1.1585553968196772e-06 - syst_JES_Gjet_Stat6: 3.80097338684448e-06 - syst_JES_Gjet_Stat7: 2.6091823910949576e-06 - syst_JES_Gjet_Stat8: 2.054519651889463e-06 - syst_JES_Gjet_Stat9: 2.8393580260333497e-06 - syst_JES_Gjet_Veto: 0.0002264374692934012 - syst_JES_Gjet_dPhi: 2.4870176416744617e-05 - syst_JES_LArESZee: 0.0003996661943109525 - syst_JES_LArEsmear: 3.7317442999219544e-05 - syst_JES_LAr_JVT: 4.7103745074038436e-05 - syst_JES_MJB_Alpha: 5.216073307575344e-06 - syst_JES_MJB_Asym: 6.177739453068574e-05 - syst_JES_MJB_Beta: 3.813451039412988e-06 - syst_JES_MJB_Fragmentation: 2.3440121586715372e-05 - syst_JES_MJB_Stat1: 1.7381129853953683e-08 - syst_JES_MJB_Stat10: 3.5874982926825206e-06 - syst_JES_MJB_Stat11: 4.78033897856627e-06 - syst_JES_MJB_Stat12: 8.64035559164089e-06 - syst_JES_MJB_Stat13: 1.1403308116507244e-05 - syst_JES_MJB_Stat14: 1.1528653466472135e-05 - syst_JES_MJB_Stat15: 2.1668748810210524e-05 - syst_JES_MJB_Stat16: 1.5472466408107016e-06 + syst_JES_EtaIntercalibration_Stat99: 2.28714214e-17 + syst_JES_EtaIntercalibration_TotalStat_MJB: 9.57264085e-05 + syst_JES_Flavour_Comp: 2.37385320e-04 + syst_JES_Flavour_Response: 2.47554494e-05 + syst_JES_Gjet_Generator: 2.66035355e-04 + syst_JES_Gjet_OOC: 2.21527758e-04 + syst_JES_Gjet_Purity: 3.82557967e-05 + syst_JES_Gjet_Stat1: 1.25155974e-06 + syst_JES_Gjet_Stat10: 5.42127317e-06 + syst_JES_Gjet_Stat11: 5.53006969e-06 + syst_JES_Gjet_Stat12: 1.24860000e-05 + syst_JES_Gjet_Stat13: 4.45930701e-05 + syst_JES_Gjet_Stat14: 1.15904364e-04 + syst_JES_Gjet_Stat15: 1.91312225e-04 + syst_JES_Gjet_Stat2: 1.10840472e-06 + syst_JES_Gjet_Stat3: 1.41910580e-06 + syst_JES_Gjet_Stat4: 1.12138323e-06 + syst_JES_Gjet_Stat5: 1.15855540e-06 + syst_JES_Gjet_Stat6: 3.80097339e-06 + syst_JES_Gjet_Stat7: 2.60918239e-06 + syst_JES_Gjet_Stat8: 2.05451965e-06 + syst_JES_Gjet_Stat9: 2.83935803e-06 + syst_JES_Gjet_Veto: 2.26437469e-04 + syst_JES_Gjet_dPhi: 2.48701764e-05 + syst_JES_LArESZee: 3.99666194e-04 + syst_JES_LArEsmear: 3.73174430e-05 + syst_JES_LAr_JVT: 4.71037451e-05 + syst_JES_MJB_Alpha: 5.21607331e-06 + syst_JES_MJB_Asym: 6.17773945e-05 + syst_JES_MJB_Beta: 3.81345104e-06 + syst_JES_MJB_Fragmentation: 2.34401216e-05 + syst_JES_MJB_Stat1: 1.73811299e-08 + syst_JES_MJB_Stat10: 3.58749829e-06 + syst_JES_MJB_Stat11: 4.78033898e-06 + syst_JES_MJB_Stat12: 8.64035559e-06 + syst_JES_MJB_Stat13: 1.14033081e-05 + syst_JES_MJB_Stat14: 1.15286535e-05 + syst_JES_MJB_Stat15: 2.16687488e-05 + syst_JES_MJB_Stat16: 1.54724664e-06 syst_JES_MJB_Stat2: 0.0 - syst_JES_MJB_Stat3: 1.8255815511775967e-07 - syst_JES_MJB_Stat4: 1.4272098654367548e-07 - syst_JES_MJB_Stat5: 1.8905334564614294e-07 - syst_JES_MJB_Stat6: 5.171031110910086e-07 - syst_JES_MJB_Stat7: 9.034727389357136e-07 - syst_JES_MJB_Stat8: 1.2703297554178598e-06 - syst_JES_MJB_Stat9: 2.17736325632633e-06 - syst_JES_MJB_Threshold: 4.1950702020347646e-05 - syst_JES_Pileup_MuOffset: 5.829363001220631e-05 - syst_JES_Pileup_NPVOffset: 5.962761671406966e-05 - syst_JES_Pileup_Pt_term: 3.552820851098462e-05 - syst_JES_Pileup_Rho_topology: 7.139610143418197e-05 - syst_JES_PunchThrough_MC15: 9.082092600276657e-05 - syst_JES_SingleParticle_HighPt: 3.098812837200724e-09 - syst_JES_Zjet_MC: 0.00010142474291315704 - syst_JES_Zjet_MuScale: 8.384146110368069e-06 - syst_JES_Zjet_MuSmearID: 2.55267756483266e-06 - syst_JES_Zjet_MuSmearMS: 2.847890930144622e-05 - syst_JES_Zjet_OOC: 6.544269554350585e-05 - syst_JES_Zjet_Stat1: 8.296339433750284e-06 - syst_JES_Zjet_Stat10: 5.409004621924445e-06 - syst_JES_Zjet_Stat11: 8.053273045787036e-06 - syst_JES_Zjet_Stat12: 1.7890139742327335e-05 - syst_JES_Zjet_Stat13: 2.814842269115625e-05 - syst_JES_Zjet_Stat2: 1.622931606692038e-08 - syst_JES_Zjet_Stat3: 4.517828100979496e-06 - syst_JES_Zjet_Stat4: 4.457719904839245e-06 - syst_JES_Zjet_Stat5: 4.326215089428633e-06 - syst_JES_Zjet_Stat6: 3.076060305000538e-06 - syst_JES_Zjet_Stat7: 3.7420523780406923e-06 - syst_JES_Zjet_Stat8: 2.6263255700693317e-06 - syst_JES_Zjet_Stat9: 3.3979771923896133e-06 - syst_JES_Zjet_Veto: 1.351646936148638e-05 - syst_JES_Zjet_dPhi: 1.2716283222703087e-05 + syst_JES_MJB_Stat3: 1.82558155e-07 + syst_JES_MJB_Stat4: 1.42720987e-07 + syst_JES_MJB_Stat5: 1.89053346e-07 + syst_JES_MJB_Stat6: 5.17103111e-07 + syst_JES_MJB_Stat7: 9.03472739e-07 + syst_JES_MJB_Stat8: 1.27032976e-06 + syst_JES_MJB_Stat9: 2.17736326e-06 + syst_JES_MJB_Threshold: 4.19507020e-05 + syst_JES_Pileup_MuOffset: 5.82936300e-05 + syst_JES_Pileup_NPVOffset: 5.96276167e-05 + syst_JES_Pileup_Pt_term: 3.55282085e-05 + syst_JES_Pileup_Rho_topology: 7.13961014e-05 + syst_JES_PunchThrough_MC15: 9.08209260e-05 + syst_JES_SingleParticle_HighPt: 3.09881284e-09 + syst_JES_Zjet_MC: 1.01424743e-04 + syst_JES_Zjet_MuScale: 8.38414611e-06 + syst_JES_Zjet_MuSmearID: 2.55267756e-06 + syst_JES_Zjet_MuSmearMS: 2.84789093e-05 + syst_JES_Zjet_OOC: 6.54426955e-05 + syst_JES_Zjet_Stat1: 8.29633943e-06 + syst_JES_Zjet_Stat10: 5.40900462e-06 + syst_JES_Zjet_Stat11: 8.05327305e-06 + syst_JES_Zjet_Stat12: 1.78901397e-05 + syst_JES_Zjet_Stat13: 2.81484227e-05 + syst_JES_Zjet_Stat2: 1.62293161e-08 + syst_JES_Zjet_Stat3: 4.51782810e-06 + syst_JES_Zjet_Stat4: 4.45771990e-06 + syst_JES_Zjet_Stat5: 4.32621509e-06 + syst_JES_Zjet_Stat6: 3.07606031e-06 + syst_JES_Zjet_Stat7: 3.74205238e-06 + syst_JES_Zjet_Stat8: 2.62632557e-06 + syst_JES_Zjet_Stat9: 3.39797719e-06 + syst_JES_Zjet_Veto: 1.35164694e-05 + syst_JES_Zjet_dPhi: 1.27162832e-05 syst_PRW: 0.0 - syst_Unfolding_bias: 8.884e-06 - syst_cleaning: 5.587595905217198e-05 - syst_lumi: 0.0001818 -- stat: 9.7091e-05 + syst_Unfolding_bias: 8.88400000e-06 + syst_cleaning: 5.58759591e-05 + syst_lumi: 1.81800000e-04 +- stat: 9.70910000e-05 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 2.814610807909328e-05 - syst_JER_NP1: 7.713182919521615e-06 - syst_JER_NP2: 2.5540393007939404e-05 - syst_JER_NP3: 4.8995924320294235e-06 - syst_JER_NP4: 2.0591010174345504e-17 - syst_JER_NP5: 1.5797581499394141e-12 - syst_JER_NP6: 2.9657344368638265e-19 - syst_JER_NP7: 3.241574116073856e-21 - syst_JER_NP8: 3.0385262875282156e-06 - syst_JES_EtaIntercalibration_Modelling: 0.00025662517413535253 + syst_JER_NP0: 2.81461081e-05 + syst_JER_NP1: 7.71318292e-06 + syst_JER_NP2: 2.55403930e-05 + syst_JER_NP3: 4.89959243e-06 + syst_JER_NP4: 2.05910102e-17 + syst_JER_NP5: 1.57975815e-12 + syst_JER_NP6: 2.96573444e-19 + syst_JER_NP7: 3.24157412e-21 + syst_JER_NP8: 3.03852629e-06 + syst_JES_EtaIntercalibration_Modelling: 2.56625174e-04 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 2.738418717070127e-18 - syst_JES_EtaIntercalibration_Stat101: 1.4547652454123035e-13 - syst_JES_EtaIntercalibration_Stat102: 1.1235531739530621e-17 - syst_JES_EtaIntercalibration_Stat103: 1.7616839816493762e-20 + syst_JES_EtaIntercalibration_Stat100: 2.73841872e-18 + syst_JES_EtaIntercalibration_Stat101: 1.45476525e-13 + syst_JES_EtaIntercalibration_Stat102: 1.12355317e-17 + syst_JES_EtaIntercalibration_Stat103: 1.76168398e-20 syst_JES_EtaIntercalibration_Stat104: 0.0 syst_JES_EtaIntercalibration_Stat105: 0.0 syst_JES_EtaIntercalibration_Stat106: 0.0 @@ -32718,170 +32718,170 @@ bins: syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 syst_JES_EtaIntercalibration_Stat110: 0.0 - syst_JES_EtaIntercalibration_Stat111: 8.818736686736938e-24 - syst_JES_EtaIntercalibration_Stat112: 1.3326355390728554e-19 - syst_JES_EtaIntercalibration_Stat113: 4.807330861446617e-09 - syst_JES_EtaIntercalibration_Stat114: 1.2479778118708774e-09 - syst_JES_EtaIntercalibration_Stat115: 1.5868269054754367e-08 - syst_JES_EtaIntercalibration_Stat116: 3.595903668632757e-17 + syst_JES_EtaIntercalibration_Stat111: 8.81873669e-24 + syst_JES_EtaIntercalibration_Stat112: 1.33263554e-19 + syst_JES_EtaIntercalibration_Stat113: 4.80733086e-09 + syst_JES_EtaIntercalibration_Stat114: 1.24797781e-09 + syst_JES_EtaIntercalibration_Stat115: 1.58682691e-08 + syst_JES_EtaIntercalibration_Stat116: 3.59590367e-17 syst_JES_EtaIntercalibration_Stat117: 0.0 syst_JES_EtaIntercalibration_Stat118: 0.0 - syst_JES_EtaIntercalibration_Stat119: 3.719566635768921e-17 + syst_JES_EtaIntercalibration_Stat119: 3.71956664e-17 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 2.2603257738703347e-10 - syst_JES_EtaIntercalibration_Stat121: 9.446490016402918e-09 - syst_JES_EtaIntercalibration_Stat122: 6.031866940137402e-09 - syst_JES_EtaIntercalibration_Stat123: 4.3497869792755374e-17 + syst_JES_EtaIntercalibration_Stat120: 2.26032577e-10 + syst_JES_EtaIntercalibration_Stat121: 9.44649002e-09 + syst_JES_EtaIntercalibration_Stat122: 6.03186694e-09 + syst_JES_EtaIntercalibration_Stat123: 4.34978698e-17 syst_JES_EtaIntercalibration_Stat124: 0.0 syst_JES_EtaIntercalibration_Stat125: 0.0 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 syst_JES_EtaIntercalibration_Stat128: 0.0 syst_JES_EtaIntercalibration_Stat129: 0.0 - syst_JES_EtaIntercalibration_Stat13: 3.727375968592152e-17 + syst_JES_EtaIntercalibration_Stat13: 3.72737597e-17 syst_JES_EtaIntercalibration_Stat130: 0.0 - syst_JES_EtaIntercalibration_Stat131: 3.4742855765610293e-19 - syst_JES_EtaIntercalibration_Stat132: 8.952104190098092e-09 - syst_JES_EtaIntercalibration_Stat133: 6.848235391748739e-12 - syst_JES_EtaIntercalibration_Stat134: 2.966105965137395e-08 - syst_JES_EtaIntercalibration_Stat135: 5.353373551210489e-15 + syst_JES_EtaIntercalibration_Stat131: 3.47428558e-19 + syst_JES_EtaIntercalibration_Stat132: 8.95210419e-09 + syst_JES_EtaIntercalibration_Stat133: 6.84823539e-12 + syst_JES_EtaIntercalibration_Stat134: 2.96610597e-08 + syst_JES_EtaIntercalibration_Stat135: 5.35337355e-15 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 - syst_JES_EtaIntercalibration_Stat138: 3.511483783856619e-17 - syst_JES_EtaIntercalibration_Stat139: 1.5423045443426535e-08 - syst_JES_EtaIntercalibration_Stat14: 9.824755200512633e-23 - syst_JES_EtaIntercalibration_Stat140: 1.502086362763473e-14 - syst_JES_EtaIntercalibration_Stat141: 2.7316726151389367e-09 - syst_JES_EtaIntercalibration_Stat142: 6.951498452014267e-14 + syst_JES_EtaIntercalibration_Stat138: 3.51148378e-17 + syst_JES_EtaIntercalibration_Stat139: 1.54230454e-08 + syst_JES_EtaIntercalibration_Stat14: 9.82475520e-23 + syst_JES_EtaIntercalibration_Stat140: 1.50208636e-14 + syst_JES_EtaIntercalibration_Stat141: 2.73167262e-09 + syst_JES_EtaIntercalibration_Stat142: 6.95149845e-14 syst_JES_EtaIntercalibration_Stat143: 0.0 syst_JES_EtaIntercalibration_Stat144: 0.0 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 syst_JES_EtaIntercalibration_Stat147: 0.0 syst_JES_EtaIntercalibration_Stat148: 0.0 - syst_JES_EtaIntercalibration_Stat149: 2.419959339957337e-15 - syst_JES_EtaIntercalibration_Stat15: 8.283339174511689e-23 - syst_JES_EtaIntercalibration_Stat150: 1.1605606050329864e-09 - syst_JES_EtaIntercalibration_Stat151: 9.868323513499654e-09 - syst_JES_EtaIntercalibration_Stat152: 2.966134604460322e-08 - syst_JES_EtaIntercalibration_Stat153: 6.264709604347196e-15 + syst_JES_EtaIntercalibration_Stat149: 2.41995934e-15 + syst_JES_EtaIntercalibration_Stat15: 8.28333917e-23 + syst_JES_EtaIntercalibration_Stat150: 1.16056061e-09 + syst_JES_EtaIntercalibration_Stat151: 9.86832351e-09 + syst_JES_EtaIntercalibration_Stat152: 2.96613460e-08 + syst_JES_EtaIntercalibration_Stat153: 6.26470960e-15 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 1.307697712794806e-18 - syst_JES_EtaIntercalibration_Stat157: 2.6808448295266922e-08 - syst_JES_EtaIntercalibration_Stat158: 5.792625743132383e-08 - syst_JES_EtaIntercalibration_Stat159: 4.433118202800372e-09 + syst_JES_EtaIntercalibration_Stat156: 1.30769771e-18 + syst_JES_EtaIntercalibration_Stat157: 2.68084483e-08 + syst_JES_EtaIntercalibration_Stat158: 5.79262574e-08 + syst_JES_EtaIntercalibration_Stat159: 4.43311820e-09 syst_JES_EtaIntercalibration_Stat16: 0.0 - syst_JES_EtaIntercalibration_Stat160: 1.4461632964503007e-17 + syst_JES_EtaIntercalibration_Stat160: 1.44616330e-17 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 - syst_JES_EtaIntercalibration_Stat167: 1.1186520174866715e-12 - syst_JES_EtaIntercalibration_Stat168: 2.154286584347589e-08 - syst_JES_EtaIntercalibration_Stat169: 1.0093015852558639e-07 + syst_JES_EtaIntercalibration_Stat167: 1.11865202e-12 + syst_JES_EtaIntercalibration_Stat168: 2.15428658e-08 + syst_JES_EtaIntercalibration_Stat169: 1.00930159e-07 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 9.67864663834774e-08 - syst_JES_EtaIntercalibration_Stat171: 3.9930653157861577e-10 + syst_JES_EtaIntercalibration_Stat170: 9.67864664e-08 + syst_JES_EtaIntercalibration_Stat171: 3.99306532e-10 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 - syst_JES_EtaIntercalibration_Stat174: 8.553857050692104e-18 - syst_JES_EtaIntercalibration_Stat175: 7.59306464808512e-08 - syst_JES_EtaIntercalibration_Stat176: 1.0275012704006744e-07 - syst_JES_EtaIntercalibration_Stat177: 4.473801976850898e-08 - syst_JES_EtaIntercalibration_Stat178: 5.869736514529421e-09 + syst_JES_EtaIntercalibration_Stat174: 8.55385705e-18 + syst_JES_EtaIntercalibration_Stat175: 7.59306465e-08 + syst_JES_EtaIntercalibration_Stat176: 1.02750127e-07 + syst_JES_EtaIntercalibration_Stat177: 4.47380198e-08 + syst_JES_EtaIntercalibration_Stat178: 5.86973651e-09 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 syst_JES_EtaIntercalibration_Stat180: 0.0 syst_JES_EtaIntercalibration_Stat181: 0.0 syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 - syst_JES_EtaIntercalibration_Stat184: 8.88981725065257e-09 - syst_JES_EtaIntercalibration_Stat185: 1.3582515479468447e-07 - syst_JES_EtaIntercalibration_Stat186: 4.901865435729545e-07 - syst_JES_EtaIntercalibration_Stat187: 4.08801452419142e-07 - syst_JES_EtaIntercalibration_Stat188: 8.649399786545884e-09 + syst_JES_EtaIntercalibration_Stat184: 8.88981725e-09 + syst_JES_EtaIntercalibration_Stat185: 1.35825155e-07 + syst_JES_EtaIntercalibration_Stat186: 4.90186544e-07 + syst_JES_EtaIntercalibration_Stat187: 4.08801452e-07 + syst_JES_EtaIntercalibration_Stat188: 8.64939979e-09 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 - syst_JES_EtaIntercalibration_Stat191: 4.022062250885732e-09 - syst_JES_EtaIntercalibration_Stat192: 5.146379771256684e-07 - syst_JES_EtaIntercalibration_Stat193: 8.46213169065573e-07 - syst_JES_EtaIntercalibration_Stat194: 1.6050524313865887e-07 - syst_JES_EtaIntercalibration_Stat195: 1.7786499676721106e-08 - syst_JES_EtaIntercalibration_Stat196: 4.372792836857813e-17 + syst_JES_EtaIntercalibration_Stat191: 4.02206225e-09 + syst_JES_EtaIntercalibration_Stat192: 5.14637977e-07 + syst_JES_EtaIntercalibration_Stat193: 8.46213169e-07 + syst_JES_EtaIntercalibration_Stat194: 1.60505243e-07 + syst_JES_EtaIntercalibration_Stat195: 1.77864997e-08 + syst_JES_EtaIntercalibration_Stat196: 4.37279284e-17 syst_JES_EtaIntercalibration_Stat197: 0.0 syst_JES_EtaIntercalibration_Stat198: 0.0 - syst_JES_EtaIntercalibration_Stat199: 5.507612254870526e-09 + syst_JES_EtaIntercalibration_Stat199: 5.50761225e-09 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 3.1011779616784326e-07 - syst_JES_EtaIntercalibration_Stat201: 1.1715679013612486e-06 - syst_JES_EtaIntercalibration_Stat202: 9.07258055902509e-07 - syst_JES_EtaIntercalibration_Stat203: 2.6561574727414034e-08 + syst_JES_EtaIntercalibration_Stat200: 3.10117796e-07 + syst_JES_EtaIntercalibration_Stat201: 1.17156790e-06 + syst_JES_EtaIntercalibration_Stat202: 9.07258056e-07 + syst_JES_EtaIntercalibration_Stat203: 2.65615747e-08 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 - syst_JES_EtaIntercalibration_Stat206: 1.4104442943625955e-08 - syst_JES_EtaIntercalibration_Stat207: 8.727598867959044e-07 - syst_JES_EtaIntercalibration_Stat208: 1.7476174495581118e-06 - syst_JES_EtaIntercalibration_Stat209: 4.443967492005314e-07 + syst_JES_EtaIntercalibration_Stat206: 1.41044429e-08 + syst_JES_EtaIntercalibration_Stat207: 8.72759887e-07 + syst_JES_EtaIntercalibration_Stat208: 1.74761745e-06 + syst_JES_EtaIntercalibration_Stat209: 4.44396749e-07 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 1.2892883725140781e-08 - syst_JES_EtaIntercalibration_Stat211: 4.6515940261457685e-17 - syst_JES_EtaIntercalibration_Stat212: 5.138321978039134e-09 - syst_JES_EtaIntercalibration_Stat213: 2.9923933564957664e-07 - syst_JES_EtaIntercalibration_Stat214: 1.0795990644679162e-06 - syst_JES_EtaIntercalibration_Stat215: 1.0543118087169468e-06 - syst_JES_EtaIntercalibration_Stat216: 3.395770255774086e-08 + syst_JES_EtaIntercalibration_Stat210: 1.28928837e-08 + syst_JES_EtaIntercalibration_Stat211: 4.65159403e-17 + syst_JES_EtaIntercalibration_Stat212: 5.13832198e-09 + syst_JES_EtaIntercalibration_Stat213: 2.99239336e-07 + syst_JES_EtaIntercalibration_Stat214: 1.07959906e-06 + syst_JES_EtaIntercalibration_Stat215: 1.05431181e-06 + syst_JES_EtaIntercalibration_Stat216: 3.39577026e-08 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 - syst_JES_EtaIntercalibration_Stat219: 1.6279424951453292e-08 + syst_JES_EtaIntercalibration_Stat219: 1.62794250e-08 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 1.0237060808650109e-06 - syst_JES_EtaIntercalibration_Stat221: 1.4668353690854336e-06 - syst_JES_EtaIntercalibration_Stat222: 4.2986396394673517e-07 - syst_JES_EtaIntercalibration_Stat223: 2.520138841188619e-10 - syst_JES_EtaIntercalibration_Stat224: 3.8183060176004716e-08 - syst_JES_EtaIntercalibration_Stat225: 1.062610187227659e-06 - syst_JES_EtaIntercalibration_Stat226: 3.518979823755743e-06 - syst_JES_EtaIntercalibration_Stat227: 2.7783239551931306e-06 - syst_JES_EtaIntercalibration_Stat228: 1.860210439708368e-08 + syst_JES_EtaIntercalibration_Stat220: 1.02370608e-06 + syst_JES_EtaIntercalibration_Stat221: 1.46683537e-06 + syst_JES_EtaIntercalibration_Stat222: 4.29863964e-07 + syst_JES_EtaIntercalibration_Stat223: 2.52013884e-10 + syst_JES_EtaIntercalibration_Stat224: 3.81830602e-08 + syst_JES_EtaIntercalibration_Stat225: 1.06261019e-06 + syst_JES_EtaIntercalibration_Stat226: 3.51897982e-06 + syst_JES_EtaIntercalibration_Stat227: 2.77832396e-06 + syst_JES_EtaIntercalibration_Stat228: 1.86021044e-08 syst_JES_EtaIntercalibration_Stat229: 0.0 syst_JES_EtaIntercalibration_Stat23: 0.0 syst_JES_EtaIntercalibration_Stat230: 0.0 - syst_JES_EtaIntercalibration_Stat231: 1.9357045229063243e-08 - syst_JES_EtaIntercalibration_Stat232: 3.1901399655814477e-06 - syst_JES_EtaIntercalibration_Stat233: 3.7020687122202363e-06 - syst_JES_EtaIntercalibration_Stat234: 1.4609252787189358e-06 - syst_JES_EtaIntercalibration_Stat235: 6.022469636287095e-08 - syst_JES_EtaIntercalibration_Stat236: 2.3507557827218036e-07 - syst_JES_EtaIntercalibration_Stat237: 7.865546818244744e-07 - syst_JES_EtaIntercalibration_Stat238: 5.805697890865491e-07 - syst_JES_EtaIntercalibration_Stat239: 3.360514140723113e-09 + syst_JES_EtaIntercalibration_Stat231: 1.93570452e-08 + syst_JES_EtaIntercalibration_Stat232: 3.19013997e-06 + syst_JES_EtaIntercalibration_Stat233: 3.70206871e-06 + syst_JES_EtaIntercalibration_Stat234: 1.46092528e-06 + syst_JES_EtaIntercalibration_Stat235: 6.02246964e-08 + syst_JES_EtaIntercalibration_Stat236: 2.35075578e-07 + syst_JES_EtaIntercalibration_Stat237: 7.86554682e-07 + syst_JES_EtaIntercalibration_Stat238: 5.80569789e-07 + syst_JES_EtaIntercalibration_Stat239: 3.36051414e-09 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 - syst_JES_EtaIntercalibration_Stat242: 5.665395424857827e-09 - syst_JES_EtaIntercalibration_Stat243: 5.164627576118147e-07 - syst_JES_EtaIntercalibration_Stat244: 8.007498532625528e-07 - syst_JES_EtaIntercalibration_Stat245: 3.058474251975975e-07 + syst_JES_EtaIntercalibration_Stat242: 5.66539542e-09 + syst_JES_EtaIntercalibration_Stat243: 5.16462758e-07 + syst_JES_EtaIntercalibration_Stat244: 8.00749853e-07 + syst_JES_EtaIntercalibration_Stat245: 3.05847425e-07 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 - syst_JES_EtaIntercalibration_Stat27: 4.5176375117421714e-23 - syst_JES_EtaIntercalibration_Stat28: 1.3616891767918258e-19 - syst_JES_EtaIntercalibration_Stat29: 5.450763935586554e-14 + syst_JES_EtaIntercalibration_Stat27: 4.51763751e-23 + syst_JES_EtaIntercalibration_Stat28: 1.36168918e-19 + syst_JES_EtaIntercalibration_Stat29: 5.45076394e-14 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 5.462888327179593e-14 - syst_JES_EtaIntercalibration_Stat31: 9.104525069985803e-24 + syst_JES_EtaIntercalibration_Stat30: 5.46288833e-14 + syst_JES_EtaIntercalibration_Stat31: 9.10452507e-24 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 - syst_JES_EtaIntercalibration_Stat34: 1.996188555723131e-24 - syst_JES_EtaIntercalibration_Stat35: 3.723100689637685e-17 - syst_JES_EtaIntercalibration_Stat36: 3.7405379379667666e-17 - syst_JES_EtaIntercalibration_Stat37: 1.0297294826797958e-21 - syst_JES_EtaIntercalibration_Stat38: 1.0943112114476392e-23 + syst_JES_EtaIntercalibration_Stat34: 1.99618856e-24 + syst_JES_EtaIntercalibration_Stat35: 3.72310069e-17 + syst_JES_EtaIntercalibration_Stat36: 3.74053794e-17 + syst_JES_EtaIntercalibration_Stat37: 1.02972948e-21 + syst_JES_EtaIntercalibration_Stat38: 1.09431121e-23 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 syst_JES_EtaIntercalibration_Stat40: 0.0 @@ -32892,21 +32892,21 @@ bins: syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 syst_JES_EtaIntercalibration_Stat47: 0.0 - syst_JES_EtaIntercalibration_Stat48: 2.3503929458709666e-23 - syst_JES_EtaIntercalibration_Stat49: 1.015249121354951e-22 - syst_JES_EtaIntercalibration_Stat5: 1.9000597359030582e-23 - syst_JES_EtaIntercalibration_Stat50: 1.4163345326228546e-19 - syst_JES_EtaIntercalibration_Stat51: 5.3970748659200837e-14 - syst_JES_EtaIntercalibration_Stat52: 5.4273814116311545e-14 - syst_JES_EtaIntercalibration_Stat53: 2.0006109066982515e-23 - syst_JES_EtaIntercalibration_Stat54: 8.895812947673754e-24 + syst_JES_EtaIntercalibration_Stat48: 2.35039295e-23 + syst_JES_EtaIntercalibration_Stat49: 1.01524912e-22 + syst_JES_EtaIntercalibration_Stat5: 1.90005974e-23 + syst_JES_EtaIntercalibration_Stat50: 1.41633453e-19 + syst_JES_EtaIntercalibration_Stat51: 5.39707487e-14 + syst_JES_EtaIntercalibration_Stat52: 5.42738141e-14 + syst_JES_EtaIntercalibration_Stat53: 2.00061091e-23 + syst_JES_EtaIntercalibration_Stat54: 8.89581295e-24 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 6.607045406231139e-24 - syst_JES_EtaIntercalibration_Stat57: 3.69331610281746e-17 - syst_JES_EtaIntercalibration_Stat58: 3.72233708533698e-17 - syst_JES_EtaIntercalibration_Stat59: 8.450721078700917e-21 - syst_JES_EtaIntercalibration_Stat6: 5.021220350422793e-23 - syst_JES_EtaIntercalibration_Stat60: 2.1831552183708794e-22 + syst_JES_EtaIntercalibration_Stat56: 6.60704541e-24 + syst_JES_EtaIntercalibration_Stat57: 3.69331610e-17 + syst_JES_EtaIntercalibration_Stat58: 3.72233709e-17 + syst_JES_EtaIntercalibration_Stat59: 8.45072108e-21 + syst_JES_EtaIntercalibration_Stat6: 5.02122035e-23 + syst_JES_EtaIntercalibration_Stat60: 2.18315522e-22 syst_JES_EtaIntercalibration_Stat61: 0.0 syst_JES_EtaIntercalibration_Stat62: 0.0 syst_JES_EtaIntercalibration_Stat63: 0.0 @@ -32916,21 +32916,21 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 1.4858894036905976e-22 - syst_JES_EtaIntercalibration_Stat70: 1.9000597359030582e-23 - syst_JES_EtaIntercalibration_Stat71: 3.115117527477896e-22 - syst_JES_EtaIntercalibration_Stat72: 1.5229643561160583e-19 - syst_JES_EtaIntercalibration_Stat73: 1.1232474390443452e-12 - syst_JES_EtaIntercalibration_Stat74: 5.588025895385597e-14 - syst_JES_EtaIntercalibration_Stat75: 8.218140589573775e-23 - syst_JES_EtaIntercalibration_Stat76: 8.895812947673754e-24 + syst_JES_EtaIntercalibration_Stat7: 1.48588940e-22 + syst_JES_EtaIntercalibration_Stat70: 1.90005974e-23 + syst_JES_EtaIntercalibration_Stat71: 3.11511753e-22 + syst_JES_EtaIntercalibration_Stat72: 1.52296436e-19 + syst_JES_EtaIntercalibration_Stat73: 1.12324744e-12 + syst_JES_EtaIntercalibration_Stat74: 5.58802590e-14 + syst_JES_EtaIntercalibration_Stat75: 8.21814059e-23 + syst_JES_EtaIntercalibration_Stat76: 8.89581295e-24 syst_JES_EtaIntercalibration_Stat77: 0.0 - syst_JES_EtaIntercalibration_Stat78: 2.0400002450980241e-22 - syst_JES_EtaIntercalibration_Stat79: 3.50110625888886e-17 - syst_JES_EtaIntercalibration_Stat8: 1.9983487258233984e-23 - syst_JES_EtaIntercalibration_Stat80: 6.82078731132771e-14 - syst_JES_EtaIntercalibration_Stat81: 4.3818717144703124e-17 - syst_JES_EtaIntercalibration_Stat82: 2.535095643166151e-22 + syst_JES_EtaIntercalibration_Stat78: 2.04000025e-22 + syst_JES_EtaIntercalibration_Stat79: 3.50110626e-17 + syst_JES_EtaIntercalibration_Stat8: 1.99834873e-23 + syst_JES_EtaIntercalibration_Stat80: 6.82078731e-14 + syst_JES_EtaIntercalibration_Stat81: 4.38187171e-17 + syst_JES_EtaIntercalibration_Stat82: 2.53509564e-22 syst_JES_EtaIntercalibration_Stat83: 0.0 syst_JES_EtaIntercalibration_Stat84: 0.0 syst_JES_EtaIntercalibration_Stat85: 0.0 @@ -32940,113 +32940,113 @@ bins: syst_JES_EtaIntercalibration_Stat89: 0.0 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 1.621199555884469e-23 - syst_JES_EtaIntercalibration_Stat92: 3.860812060548272e-21 - syst_JES_EtaIntercalibration_Stat93: 2.4142647302025517e-19 - syst_JES_EtaIntercalibration_Stat94: 1.1289563110676016e-12 - syst_JES_EtaIntercalibration_Stat95: 5.665388043858956e-14 - syst_JES_EtaIntercalibration_Stat96: 8.27182840655559e-22 - syst_JES_EtaIntercalibration_Stat97: 8.895812947673754e-24 + syst_JES_EtaIntercalibration_Stat91: 1.62119956e-23 + syst_JES_EtaIntercalibration_Stat92: 3.86081206e-21 + syst_JES_EtaIntercalibration_Stat93: 2.41426473e-19 + syst_JES_EtaIntercalibration_Stat94: 1.12895631e-12 + syst_JES_EtaIntercalibration_Stat95: 5.66538804e-14 + syst_JES_EtaIntercalibration_Stat96: 8.27182841e-22 + syst_JES_EtaIntercalibration_Stat97: 8.89581295e-24 syst_JES_EtaIntercalibration_Stat98: 0.0 - syst_JES_EtaIntercalibration_Stat99: 1.384738410144052e-18 - syst_JES_EtaIntercalibration_TotalStat_MJB: 4.7912704995648067e-05 - syst_JES_Flavour_Comp: 0.00010763687147070003 - syst_JES_Flavour_Response: 2.105501068629508e-05 - syst_JES_Gjet_Generator: 0.0001227271326968898 - syst_JES_Gjet_OOC: 0.00010226465567340459 - syst_JES_Gjet_Purity: 1.611512565883369e-05 - syst_JES_Gjet_Stat1: 5.904829887473474e-07 - syst_JES_Gjet_Stat10: 2.9761881660943417e-06 - syst_JES_Gjet_Stat11: 3.0582784372911507e-06 - syst_JES_Gjet_Stat12: 5.121658593658894e-06 - syst_JES_Gjet_Stat13: 2.154056173826486e-05 - syst_JES_Gjet_Stat14: 5.691515856957617e-05 - syst_JES_Gjet_Stat15: 9.616166387911557e-05 - syst_JES_Gjet_Stat2: 5.022047490814878e-07 - syst_JES_Gjet_Stat3: 5.853953279622241e-07 - syst_JES_Gjet_Stat4: 5.91593363299488e-07 - syst_JES_Gjet_Stat5: 7.227630784012144e-07 - syst_JES_Gjet_Stat6: 2.1093456331289096e-06 - syst_JES_Gjet_Stat7: 1.4566278419692518e-06 - syst_JES_Gjet_Stat8: 7.528772858175494e-07 - syst_JES_Gjet_Stat9: 1.4954674879448234e-06 - syst_JES_Gjet_Veto: 0.0001065217033050073 - syst_JES_Gjet_dPhi: 1.105850183117044e-05 - syst_JES_LArESZee: 0.00018209689728273788 - syst_JES_LArEsmear: 1.684085508517902e-05 - syst_JES_LAr_JVT: 2.159104212399207e-05 - syst_JES_MJB_Alpha: 2.9863646796732643e-06 - syst_JES_MJB_Asym: 3.656503350196742e-05 - syst_JES_MJB_Beta: 2.3105925646898457e-06 - syst_JES_MJB_Fragmentation: 1.1704679609028177e-05 - syst_JES_MJB_Stat1: 3.9031764948564655e-09 - syst_JES_MJB_Stat10: 1.4123124680820459e-06 - syst_JES_MJB_Stat11: 1.608423329692777e-06 - syst_JES_MJB_Stat12: 3.2535882883364325e-06 - syst_JES_MJB_Stat13: 4.827044437334299e-06 - syst_JES_MJB_Stat14: 6.7667543734053185e-06 - syst_JES_MJB_Stat15: 1.070301130523555e-05 - syst_JES_MJB_Stat16: 7.119215318418175e-06 + syst_JES_EtaIntercalibration_Stat99: 1.38473841e-18 + syst_JES_EtaIntercalibration_TotalStat_MJB: 4.79127050e-05 + syst_JES_Flavour_Comp: 1.07636871e-04 + syst_JES_Flavour_Response: 2.10550107e-05 + syst_JES_Gjet_Generator: 1.22727133e-04 + syst_JES_Gjet_OOC: 1.02264656e-04 + syst_JES_Gjet_Purity: 1.61151257e-05 + syst_JES_Gjet_Stat1: 5.90482989e-07 + syst_JES_Gjet_Stat10: 2.97618817e-06 + syst_JES_Gjet_Stat11: 3.05827844e-06 + syst_JES_Gjet_Stat12: 5.12165859e-06 + syst_JES_Gjet_Stat13: 2.15405617e-05 + syst_JES_Gjet_Stat14: 5.69151586e-05 + syst_JES_Gjet_Stat15: 9.61616639e-05 + syst_JES_Gjet_Stat2: 5.02204749e-07 + syst_JES_Gjet_Stat3: 5.85395328e-07 + syst_JES_Gjet_Stat4: 5.91593363e-07 + syst_JES_Gjet_Stat5: 7.22763078e-07 + syst_JES_Gjet_Stat6: 2.10934563e-06 + syst_JES_Gjet_Stat7: 1.45662784e-06 + syst_JES_Gjet_Stat8: 7.52877286e-07 + syst_JES_Gjet_Stat9: 1.49546749e-06 + syst_JES_Gjet_Veto: 1.06521703e-04 + syst_JES_Gjet_dPhi: 1.10585018e-05 + syst_JES_LArESZee: 1.82096897e-04 + syst_JES_LArEsmear: 1.68408551e-05 + syst_JES_LAr_JVT: 2.15910421e-05 + syst_JES_MJB_Alpha: 2.98636468e-06 + syst_JES_MJB_Asym: 3.65650335e-05 + syst_JES_MJB_Beta: 2.31059256e-06 + syst_JES_MJB_Fragmentation: 1.17046796e-05 + syst_JES_MJB_Stat1: 3.90317649e-09 + syst_JES_MJB_Stat10: 1.41231247e-06 + syst_JES_MJB_Stat11: 1.60842333e-06 + syst_JES_MJB_Stat12: 3.25358829e-06 + syst_JES_MJB_Stat13: 4.82704444e-06 + syst_JES_MJB_Stat14: 6.76675437e-06 + syst_JES_MJB_Stat15: 1.07030113e-05 + syst_JES_MJB_Stat16: 7.11921532e-06 syst_JES_MJB_Stat2: 0.0 - syst_JES_MJB_Stat3: 7.775176075176691e-08 - syst_JES_MJB_Stat4: 6.108077172891645e-08 - syst_JES_MJB_Stat5: 8.053170229791495e-08 - syst_JES_MJB_Stat6: 2.0339933628210295e-07 - syst_JES_MJB_Stat7: 2.6011414321408976e-07 - syst_JES_MJB_Stat8: 3.798990227678929e-07 - syst_JES_MJB_Stat9: 6.302528917030052e-07 - syst_JES_MJB_Threshold: 2.079058200243562e-05 - syst_JES_Pileup_MuOffset: 2.9375926793890265e-05 - syst_JES_Pileup_NPVOffset: 2.8780500343114256e-05 - syst_JES_Pileup_Pt_term: 1.4886412428788879e-05 - syst_JES_Pileup_Rho_topology: 3.414675789881083e-05 - syst_JES_PunchThrough_MC15: 4.804700198763707e-05 - syst_JES_SingleParticle_HighPt: 6.9062067736203795e-09 - syst_JES_Zjet_MC: 4.71451914303039e-05 - syst_JES_Zjet_MuScale: 4.010198932721417e-06 - syst_JES_Zjet_MuSmearID: 1.063624260488637e-06 - syst_JES_Zjet_MuSmearMS: 1.2453510619500029e-05 - syst_JES_Zjet_OOC: 3.072509845386993e-05 - syst_JES_Zjet_Stat1: 4.420418305997748e-06 - syst_JES_Zjet_Stat10: 2.418612567154979e-06 - syst_JES_Zjet_Stat11: 3.5090113992405325e-06 - syst_JES_Zjet_Stat12: 7.501480037299307e-06 - syst_JES_Zjet_Stat13: 1.2194295223587132e-05 - syst_JES_Zjet_Stat2: 6.947255789158767e-09 - syst_JES_Zjet_Stat3: 2.0511409020347674e-06 - syst_JES_Zjet_Stat4: 2.147476891610245e-06 - syst_JES_Zjet_Stat5: 2.0759741689144403e-06 - syst_JES_Zjet_Stat6: 1.676625405390244e-06 - syst_JES_Zjet_Stat7: 1.9945452489226712e-06 - syst_JES_Zjet_Stat8: 1.2574072609938277e-06 - syst_JES_Zjet_Stat9: 1.6134673067651542e-06 - syst_JES_Zjet_Veto: 6.102901502564169e-06 - syst_JES_Zjet_dPhi: 5.7511364746456854e-06 + syst_JES_MJB_Stat3: 7.77517608e-08 + syst_JES_MJB_Stat4: 6.10807717e-08 + syst_JES_MJB_Stat5: 8.05317023e-08 + syst_JES_MJB_Stat6: 2.03399336e-07 + syst_JES_MJB_Stat7: 2.60114143e-07 + syst_JES_MJB_Stat8: 3.79899023e-07 + syst_JES_MJB_Stat9: 6.30252892e-07 + syst_JES_MJB_Threshold: 2.07905820e-05 + syst_JES_Pileup_MuOffset: 2.93759268e-05 + syst_JES_Pileup_NPVOffset: 2.87805003e-05 + syst_JES_Pileup_Pt_term: 1.48864124e-05 + syst_JES_Pileup_Rho_topology: 3.41467579e-05 + syst_JES_PunchThrough_MC15: 4.80470020e-05 + syst_JES_SingleParticle_HighPt: 6.90620677e-09 + syst_JES_Zjet_MC: 4.71451914e-05 + syst_JES_Zjet_MuScale: 4.01019893e-06 + syst_JES_Zjet_MuSmearID: 1.06362426e-06 + syst_JES_Zjet_MuSmearMS: 1.24535106e-05 + syst_JES_Zjet_OOC: 3.07250985e-05 + syst_JES_Zjet_Stat1: 4.42041831e-06 + syst_JES_Zjet_Stat10: 2.41861257e-06 + syst_JES_Zjet_Stat11: 3.50901140e-06 + syst_JES_Zjet_Stat12: 7.50148004e-06 + syst_JES_Zjet_Stat13: 1.21942952e-05 + syst_JES_Zjet_Stat2: 6.94725579e-09 + syst_JES_Zjet_Stat3: 2.05114090e-06 + syst_JES_Zjet_Stat4: 2.14747689e-06 + syst_JES_Zjet_Stat5: 2.07597417e-06 + syst_JES_Zjet_Stat6: 1.67662541e-06 + syst_JES_Zjet_Stat7: 1.99454525e-06 + syst_JES_Zjet_Stat8: 1.25740726e-06 + syst_JES_Zjet_Stat9: 1.61346731e-06 + syst_JES_Zjet_Veto: 6.10290150e-06 + syst_JES_Zjet_dPhi: 5.75113647e-06 syst_PRW: 0.0 - syst_Unfolding_bias: 3.8036e-06 - syst_cleaning: 2.3902301144450504e-05 - syst_lumi: 7.783e-05 -- stat: 4.314e-05 + syst_Unfolding_bias: 3.80360000e-06 + syst_cleaning: 2.39023011e-05 + syst_lumi: 7.78300000e-05 +- stat: 4.31400000e-05 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 9.58480391035727e-06 - syst_JER_NP1: 3.765519187310032e-06 - syst_JER_NP2: 9.511022868230314e-06 - syst_JER_NP3: 2.2877964835185845e-06 - syst_JER_NP4: 1.1884829100580286e-18 - syst_JER_NP5: 4.066216564778e-14 - syst_JER_NP6: 2.6060780878553888e-20 - syst_JER_NP7: 4.563610933241351e-22 - syst_JER_NP8: 1.530198538589029e-06 - syst_JES_EtaIntercalibration_Modelling: 8.169421705359564e-05 + syst_JER_NP0: 9.58480391e-06 + syst_JER_NP1: 3.76551919e-06 + syst_JER_NP2: 9.51102287e-06 + syst_JER_NP3: 2.28779648e-06 + syst_JER_NP4: 1.18848291e-18 + syst_JER_NP5: 4.06621656e-14 + syst_JER_NP6: 2.60607809e-20 + syst_JER_NP7: 4.56361093e-22 + syst_JER_NP8: 1.53019854e-06 + syst_JES_EtaIntercalibration_Modelling: 8.16942171e-05 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 7.691532552099093e-20 - syst_JES_EtaIntercalibration_Stat101: 3.4429475551510733e-15 - syst_JES_EtaIntercalibration_Stat102: 3.697143852692237e-19 - syst_JES_EtaIntercalibration_Stat103: 1.3263009913517933e-21 + syst_JES_EtaIntercalibration_Stat100: 7.69153255e-20 + syst_JES_EtaIntercalibration_Stat101: 3.44294756e-15 + syst_JES_EtaIntercalibration_Stat102: 3.69714385e-19 + syst_JES_EtaIntercalibration_Stat103: 1.32630099e-21 syst_JES_EtaIntercalibration_Stat104: 0.0 syst_JES_EtaIntercalibration_Stat105: 0.0 syst_JES_EtaIntercalibration_Stat106: 0.0 @@ -33055,170 +33055,170 @@ bins: syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 syst_JES_EtaIntercalibration_Stat110: 0.0 - syst_JES_EtaIntercalibration_Stat111: 1.1701735255935335e-24 - syst_JES_EtaIntercalibration_Stat112: 7.402092592638922e-21 - syst_JES_EtaIntercalibration_Stat113: 1.5666452324986082e-10 - syst_JES_EtaIntercalibration_Stat114: 1.0478050084179542e-09 - syst_JES_EtaIntercalibration_Stat115: 4.2528193883587394e-09 - syst_JES_EtaIntercalibration_Stat116: 1.2488657426415499e-18 + syst_JES_EtaIntercalibration_Stat111: 1.17017353e-24 + syst_JES_EtaIntercalibration_Stat112: 7.40209259e-21 + syst_JES_EtaIntercalibration_Stat113: 1.56664523e-10 + syst_JES_EtaIntercalibration_Stat114: 1.04780501e-09 + syst_JES_EtaIntercalibration_Stat115: 4.25281939e-09 + syst_JES_EtaIntercalibration_Stat116: 1.24886574e-18 syst_JES_EtaIntercalibration_Stat117: 0.0 syst_JES_EtaIntercalibration_Stat118: 0.0 - syst_JES_EtaIntercalibration_Stat119: 1.3189404672193624e-18 + syst_JES_EtaIntercalibration_Stat119: 1.31894047e-18 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 8.134574880213082e-12 - syst_JES_EtaIntercalibration_Stat121: 5.99769419627166e-09 - syst_JES_EtaIntercalibration_Stat122: 2.9696011094499964e-09 - syst_JES_EtaIntercalibration_Stat123: 1.3549373693274534e-18 + syst_JES_EtaIntercalibration_Stat120: 8.13457488e-12 + syst_JES_EtaIntercalibration_Stat121: 5.99769420e-09 + syst_JES_EtaIntercalibration_Stat122: 2.96960111e-09 + syst_JES_EtaIntercalibration_Stat123: 1.35493737e-18 syst_JES_EtaIntercalibration_Stat124: 0.0 syst_JES_EtaIntercalibration_Stat125: 0.0 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 syst_JES_EtaIntercalibration_Stat128: 0.0 syst_JES_EtaIntercalibration_Stat129: 0.0 - syst_JES_EtaIntercalibration_Stat13: 1.3215580345872598e-18 + syst_JES_EtaIntercalibration_Stat13: 1.32155803e-18 syst_JES_EtaIntercalibration_Stat130: 0.0 - syst_JES_EtaIntercalibration_Stat131: 8.73764150100014e-21 - syst_JES_EtaIntercalibration_Stat132: 4.55096336037277e-10 - syst_JES_EtaIntercalibration_Stat133: 1.6386324086871955e-13 - syst_JES_EtaIntercalibration_Stat134: 7.637470683447598e-09 - syst_JES_EtaIntercalibration_Stat135: 1.3723846735397294e-16 + syst_JES_EtaIntercalibration_Stat131: 8.73764150e-21 + syst_JES_EtaIntercalibration_Stat132: 4.55096336e-10 + syst_JES_EtaIntercalibration_Stat133: 1.63863241e-13 + syst_JES_EtaIntercalibration_Stat134: 7.63747068e-09 + syst_JES_EtaIntercalibration_Stat135: 1.37238467e-16 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 - syst_JES_EtaIntercalibration_Stat138: 1.2595851116456878e-18 - syst_JES_EtaIntercalibration_Stat139: 1.5548792975662132e-08 - syst_JES_EtaIntercalibration_Stat14: 1.188287081264456e-23 - syst_JES_EtaIntercalibration_Stat140: 4.1563990505604724e-16 - syst_JES_EtaIntercalibration_Stat141: 4.270407496019869e-09 - syst_JES_EtaIntercalibration_Stat142: 1.6454104426794585e-15 + syst_JES_EtaIntercalibration_Stat138: 1.25958511e-18 + syst_JES_EtaIntercalibration_Stat139: 1.55487930e-08 + syst_JES_EtaIntercalibration_Stat14: 1.18828708e-23 + syst_JES_EtaIntercalibration_Stat140: 4.15639905e-16 + syst_JES_EtaIntercalibration_Stat141: 4.27040750e-09 + syst_JES_EtaIntercalibration_Stat142: 1.64541044e-15 syst_JES_EtaIntercalibration_Stat143: 0.0 syst_JES_EtaIntercalibration_Stat144: 0.0 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 syst_JES_EtaIntercalibration_Stat147: 0.0 syst_JES_EtaIntercalibration_Stat148: 0.0 - syst_JES_EtaIntercalibration_Stat149: 5.507172569177399e-17 - syst_JES_EtaIntercalibration_Stat15: 9.506740347248368e-24 - syst_JES_EtaIntercalibration_Stat150: 9.394881365820591e-10 - syst_JES_EtaIntercalibration_Stat151: 1.7155972613611544e-09 - syst_JES_EtaIntercalibration_Stat152: 7.638343440438737e-09 - syst_JES_EtaIntercalibration_Stat153: 1.6025381810836053e-16 + syst_JES_EtaIntercalibration_Stat149: 5.50717257e-17 + syst_JES_EtaIntercalibration_Stat15: 9.50674035e-24 + syst_JES_EtaIntercalibration_Stat150: 9.39488137e-10 + syst_JES_EtaIntercalibration_Stat151: 1.71559726e-09 + syst_JES_EtaIntercalibration_Stat152: 7.63834344e-09 + syst_JES_EtaIntercalibration_Stat153: 1.60253818e-16 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 6.179075305653488e-22 - syst_JES_EtaIntercalibration_Stat157: 7.18042622342156e-09 - syst_JES_EtaIntercalibration_Stat158: 1.550174270848281e-08 - syst_JES_EtaIntercalibration_Stat159: 4.89740040735899e-09 + syst_JES_EtaIntercalibration_Stat156: 6.17907531e-22 + syst_JES_EtaIntercalibration_Stat157: 7.18042622e-09 + syst_JES_EtaIntercalibration_Stat158: 1.55017427e-08 + syst_JES_EtaIntercalibration_Stat159: 4.89740041e-09 syst_JES_EtaIntercalibration_Stat16: 0.0 - syst_JES_EtaIntercalibration_Stat160: 5.316510726736099e-19 + syst_JES_EtaIntercalibration_Stat160: 5.31651073e-19 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 - syst_JES_EtaIntercalibration_Stat167: 2.634110051859451e-14 - syst_JES_EtaIntercalibration_Stat168: 5.944792920489326e-09 - syst_JES_EtaIntercalibration_Stat169: 3.531004531291344e-08 + syst_JES_EtaIntercalibration_Stat167: 2.63411005e-14 + syst_JES_EtaIntercalibration_Stat168: 5.94479292e-09 + syst_JES_EtaIntercalibration_Stat169: 3.53100453e-08 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 2.7156326610939113e-08 - syst_JES_EtaIntercalibration_Stat171: 2.2793374986169045e-11 + syst_JES_EtaIntercalibration_Stat170: 2.71563266e-08 + syst_JES_EtaIntercalibration_Stat171: 2.27933750e-11 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 - syst_JES_EtaIntercalibration_Stat174: 3.9535226645402242e-19 - syst_JES_EtaIntercalibration_Stat175: 2.7427733172830743e-08 - syst_JES_EtaIntercalibration_Stat176: 2.5915123152321694e-08 - syst_JES_EtaIntercalibration_Stat177: 7.058177735270981e-09 - syst_JES_EtaIntercalibration_Stat178: 2.9706597250232145e-09 + syst_JES_EtaIntercalibration_Stat174: 3.95352266e-19 + syst_JES_EtaIntercalibration_Stat175: 2.74277332e-08 + syst_JES_EtaIntercalibration_Stat176: 2.59151232e-08 + syst_JES_EtaIntercalibration_Stat177: 7.05817774e-09 + syst_JES_EtaIntercalibration_Stat178: 2.97065973e-09 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 syst_JES_EtaIntercalibration_Stat180: 0.0 syst_JES_EtaIntercalibration_Stat181: 0.0 syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 - syst_JES_EtaIntercalibration_Stat184: 2.243264752542597e-09 - syst_JES_EtaIntercalibration_Stat185: 3.3652678942396245e-08 - syst_JES_EtaIntercalibration_Stat186: 1.4439230000245858e-07 - syst_JES_EtaIntercalibration_Stat187: 1.017461482071926e-07 - syst_JES_EtaIntercalibration_Stat188: 3.6737688968551084e-09 + syst_JES_EtaIntercalibration_Stat184: 2.24326475e-09 + syst_JES_EtaIntercalibration_Stat185: 3.36526789e-08 + syst_JES_EtaIntercalibration_Stat186: 1.44392300e-07 + syst_JES_EtaIntercalibration_Stat187: 1.01746148e-07 + syst_JES_EtaIntercalibration_Stat188: 3.67376890e-09 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 - syst_JES_EtaIntercalibration_Stat191: 3.5135983702608927e-09 - syst_JES_EtaIntercalibration_Stat192: 1.4044101964881913e-07 - syst_JES_EtaIntercalibration_Stat193: 2.211747499150841e-07 - syst_JES_EtaIntercalibration_Stat194: 3.89921437599935e-08 - syst_JES_EtaIntercalibration_Stat195: 4.8314379846997934e-09 - syst_JES_EtaIntercalibration_Stat196: 1.3636510736988403e-18 + syst_JES_EtaIntercalibration_Stat191: 3.51359837e-09 + syst_JES_EtaIntercalibration_Stat192: 1.40441020e-07 + syst_JES_EtaIntercalibration_Stat193: 2.21174750e-07 + syst_JES_EtaIntercalibration_Stat194: 3.89921438e-08 + syst_JES_EtaIntercalibration_Stat195: 4.83143798e-09 + syst_JES_EtaIntercalibration_Stat196: 1.36365107e-18 syst_JES_EtaIntercalibration_Stat197: 0.0 syst_JES_EtaIntercalibration_Stat198: 0.0 - syst_JES_EtaIntercalibration_Stat199: 5.778063927476054e-09 + syst_JES_EtaIntercalibration_Stat199: 5.77806393e-09 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 8.649196190976361e-08 - syst_JES_EtaIntercalibration_Stat201: 3.4132380520555555e-07 - syst_JES_EtaIntercalibration_Stat202: 2.544402483884969e-07 - syst_JES_EtaIntercalibration_Stat203: 3.5493086914919077e-09 + syst_JES_EtaIntercalibration_Stat200: 8.64919619e-08 + syst_JES_EtaIntercalibration_Stat201: 3.41323805e-07 + syst_JES_EtaIntercalibration_Stat202: 2.54440248e-07 + syst_JES_EtaIntercalibration_Stat203: 3.54930869e-09 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 - syst_JES_EtaIntercalibration_Stat206: 1.3265538238232175e-08 - syst_JES_EtaIntercalibration_Stat207: 2.4545367689240264e-07 - syst_JES_EtaIntercalibration_Stat208: 5.252377818664609e-07 - syst_JES_EtaIntercalibration_Stat209: 9.733057934174645e-08 + syst_JES_EtaIntercalibration_Stat206: 1.32655382e-08 + syst_JES_EtaIntercalibration_Stat207: 2.45453677e-07 + syst_JES_EtaIntercalibration_Stat208: 5.25237782e-07 + syst_JES_EtaIntercalibration_Stat209: 9.73305793e-08 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 3.841063915115186e-09 - syst_JES_EtaIntercalibration_Stat211: 1.459747464734911e-18 - syst_JES_EtaIntercalibration_Stat212: 7.722698152200436e-09 - syst_JES_EtaIntercalibration_Stat213: 6.613215008602095e-08 - syst_JES_EtaIntercalibration_Stat214: 3.044861080574941e-07 - syst_JES_EtaIntercalibration_Stat215: 3.0876330740552703e-07 - syst_JES_EtaIntercalibration_Stat216: 1.3039213933362703e-08 + syst_JES_EtaIntercalibration_Stat210: 3.84106392e-09 + syst_JES_EtaIntercalibration_Stat211: 1.45974746e-18 + syst_JES_EtaIntercalibration_Stat212: 7.72269815e-09 + syst_JES_EtaIntercalibration_Stat213: 6.61321501e-08 + syst_JES_EtaIntercalibration_Stat214: 3.04486108e-07 + syst_JES_EtaIntercalibration_Stat215: 3.08763307e-07 + syst_JES_EtaIntercalibration_Stat216: 1.30392139e-08 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 - syst_JES_EtaIntercalibration_Stat219: 1.987299280430605e-08 + syst_JES_EtaIntercalibration_Stat219: 1.98729928e-08 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 3.2267601010921156e-07 - syst_JES_EtaIntercalibration_Stat221: 3.7580524354378025e-07 - syst_JES_EtaIntercalibration_Stat222: 9.146671676079775e-08 - syst_JES_EtaIntercalibration_Stat223: 2.7824890309756837e-11 - syst_JES_EtaIntercalibration_Stat224: 1.2747893947648507e-08 - syst_JES_EtaIntercalibration_Stat225: 3.0045376932233683e-07 - syst_JES_EtaIntercalibration_Stat226: 1.0860171775805392e-06 - syst_JES_EtaIntercalibration_Stat227: 8.593772439970702e-07 - syst_JES_EtaIntercalibration_Stat228: 1.9420933937377985e-08 + syst_JES_EtaIntercalibration_Stat220: 3.22676010e-07 + syst_JES_EtaIntercalibration_Stat221: 3.75805244e-07 + syst_JES_EtaIntercalibration_Stat222: 9.14667168e-08 + syst_JES_EtaIntercalibration_Stat223: 2.78248903e-11 + syst_JES_EtaIntercalibration_Stat224: 1.27478939e-08 + syst_JES_EtaIntercalibration_Stat225: 3.00453769e-07 + syst_JES_EtaIntercalibration_Stat226: 1.08601718e-06 + syst_JES_EtaIntercalibration_Stat227: 8.59377244e-07 + syst_JES_EtaIntercalibration_Stat228: 1.94209339e-08 syst_JES_EtaIntercalibration_Stat229: 0.0 syst_JES_EtaIntercalibration_Stat23: 0.0 syst_JES_EtaIntercalibration_Stat230: 0.0 - syst_JES_EtaIntercalibration_Stat231: 1.8266454582102133e-08 - syst_JES_EtaIntercalibration_Stat232: 9.483002636296164e-07 - syst_JES_EtaIntercalibration_Stat233: 1.1176406969594477e-06 - syst_JES_EtaIntercalibration_Stat234: 3.5346146536786727e-07 - syst_JES_EtaIntercalibration_Stat235: 4.14463737858935e-08 - syst_JES_EtaIntercalibration_Stat236: 6.841061083633151e-08 - syst_JES_EtaIntercalibration_Stat237: 2.2512005685855713e-07 - syst_JES_EtaIntercalibration_Stat238: 1.2263541280967744e-07 - syst_JES_EtaIntercalibration_Stat239: 3.5190651680292527e-09 + syst_JES_EtaIntercalibration_Stat231: 1.82664546e-08 + syst_JES_EtaIntercalibration_Stat232: 9.48300264e-07 + syst_JES_EtaIntercalibration_Stat233: 1.11764070e-06 + syst_JES_EtaIntercalibration_Stat234: 3.53461465e-07 + syst_JES_EtaIntercalibration_Stat235: 4.14463738e-08 + syst_JES_EtaIntercalibration_Stat236: 6.84106108e-08 + syst_JES_EtaIntercalibration_Stat237: 2.25120057e-07 + syst_JES_EtaIntercalibration_Stat238: 1.22635413e-07 + syst_JES_EtaIntercalibration_Stat239: 3.51906517e-09 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 - syst_JES_EtaIntercalibration_Stat242: 3.5464840599528997e-09 - syst_JES_EtaIntercalibration_Stat243: 1.4082563687056415e-07 - syst_JES_EtaIntercalibration_Stat244: 2.1793064837236637e-07 - syst_JES_EtaIntercalibration_Stat245: 7.37731699196937e-08 + syst_JES_EtaIntercalibration_Stat242: 3.54648406e-09 + syst_JES_EtaIntercalibration_Stat243: 1.40825637e-07 + syst_JES_EtaIntercalibration_Stat244: 2.17930648e-07 + syst_JES_EtaIntercalibration_Stat245: 7.37731699e-08 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 - syst_JES_EtaIntercalibration_Stat27: 6.15253531074792e-24 - syst_JES_EtaIntercalibration_Stat28: 7.287503116177722e-21 - syst_JES_EtaIntercalibration_Stat29: 1.2669952047914975e-15 + syst_JES_EtaIntercalibration_Stat27: 6.15253531e-24 + syst_JES_EtaIntercalibration_Stat28: 7.28750312e-21 + syst_JES_EtaIntercalibration_Stat29: 1.26699520e-15 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 1.2704593341223442e-15 - syst_JES_EtaIntercalibration_Stat31: 1.241880429026885e-24 + syst_JES_EtaIntercalibration_Stat30: 1.27045933e-15 + syst_JES_EtaIntercalibration_Stat31: 1.24188043e-24 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 - syst_JES_EtaIntercalibration_Stat34: 3.0613998023779907e-25 - syst_JES_EtaIntercalibration_Stat35: 1.3198669463255301e-18 - syst_JES_EtaIntercalibration_Stat36: 1.3303367124091065e-18 - syst_JES_EtaIntercalibration_Stat37: 4.221846397016357e-23 - syst_JES_EtaIntercalibration_Stat38: 2.54853316782419e-24 + syst_JES_EtaIntercalibration_Stat34: 3.06139980e-25 + syst_JES_EtaIntercalibration_Stat35: 1.31986695e-18 + syst_JES_EtaIntercalibration_Stat36: 1.33033671e-18 + syst_JES_EtaIntercalibration_Stat37: 4.22184640e-23 + syst_JES_EtaIntercalibration_Stat38: 2.54853317e-24 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 syst_JES_EtaIntercalibration_Stat40: 0.0 @@ -33229,21 +33229,21 @@ bins: syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 syst_JES_EtaIntercalibration_Stat47: 0.0 - syst_JES_EtaIntercalibration_Stat48: 3.1280837584693923e-24 - syst_JES_EtaIntercalibration_Stat49: 1.2278486582229913e-23 - syst_JES_EtaIntercalibration_Stat5: 2.4967512391105366e-24 - syst_JES_EtaIntercalibration_Stat50: 7.649942006806326e-21 - syst_JES_EtaIntercalibration_Stat51: 1.2548725069252706e-15 - syst_JES_EtaIntercalibration_Stat52: 1.2617991765598001e-15 - syst_JES_EtaIntercalibration_Stat53: 2.5425522034955347e-24 - syst_JES_EtaIntercalibration_Stat54: 2.3495269204671817e-24 + syst_JES_EtaIntercalibration_Stat48: 3.12808376e-24 + syst_JES_EtaIntercalibration_Stat49: 1.22784866e-23 + syst_JES_EtaIntercalibration_Stat5: 2.49675124e-24 + syst_JES_EtaIntercalibration_Stat50: 7.64994201e-21 + syst_JES_EtaIntercalibration_Stat51: 1.25487251e-15 + syst_JES_EtaIntercalibration_Stat52: 1.26179918e-15 + syst_JES_EtaIntercalibration_Stat53: 2.54255220e-24 + syst_JES_EtaIntercalibration_Stat54: 2.34952692e-24 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 9.301320981452043e-25 - syst_JES_EtaIntercalibration_Stat57: 1.3158263171465705e-18 - syst_JES_EtaIntercalibration_Stat58: 1.3239268880972054e-18 - syst_JES_EtaIntercalibration_Stat59: 5.931892172823104e-22 - syst_JES_EtaIntercalibration_Stat6: 6.84209456233981e-24 - syst_JES_EtaIntercalibration_Stat60: 2.357778778320816e-23 + syst_JES_EtaIntercalibration_Stat56: 9.30132098e-25 + syst_JES_EtaIntercalibration_Stat57: 1.31582632e-18 + syst_JES_EtaIntercalibration_Stat58: 1.32392689e-18 + syst_JES_EtaIntercalibration_Stat59: 5.93189217e-22 + syst_JES_EtaIntercalibration_Stat6: 6.84209456e-24 + syst_JES_EtaIntercalibration_Stat60: 2.35777878e-23 syst_JES_EtaIntercalibration_Stat61: 0.0 syst_JES_EtaIntercalibration_Stat62: 0.0 syst_JES_EtaIntercalibration_Stat63: 0.0 @@ -33253,21 +33253,21 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 1.6125081418399102e-23 - syst_JES_EtaIntercalibration_Stat70: 2.4967512391105366e-24 - syst_JES_EtaIntercalibration_Stat71: 3.479342610321668e-23 - syst_JES_EtaIntercalibration_Stat72: 6.279753816830721e-21 - syst_JES_EtaIntercalibration_Stat73: 2.689712736724632e-14 - syst_JES_EtaIntercalibration_Stat74: 1.3058216982038551e-15 - syst_JES_EtaIntercalibration_Stat75: 4.104755138860295e-24 - syst_JES_EtaIntercalibration_Stat76: 2.3495269204671817e-24 + syst_JES_EtaIntercalibration_Stat7: 1.61250814e-23 + syst_JES_EtaIntercalibration_Stat70: 2.49675124e-24 + syst_JES_EtaIntercalibration_Stat71: 3.47934261e-23 + syst_JES_EtaIntercalibration_Stat72: 6.27975382e-21 + syst_JES_EtaIntercalibration_Stat73: 2.68971274e-14 + syst_JES_EtaIntercalibration_Stat74: 1.30582170e-15 + syst_JES_EtaIntercalibration_Stat75: 4.10475514e-24 + syst_JES_EtaIntercalibration_Stat76: 2.34952692e-24 syst_JES_EtaIntercalibration_Stat77: 0.0 - syst_JES_EtaIntercalibration_Stat78: 1.5803520968442445e-23 - syst_JES_EtaIntercalibration_Stat79: 1.2539877301500004e-18 - syst_JES_EtaIntercalibration_Stat8: 2.5944253699037093e-24 - syst_JES_EtaIntercalibration_Stat80: 1.5640285255790544e-15 - syst_JES_EtaIntercalibration_Stat81: 1.3679022783810253e-18 - syst_JES_EtaIntercalibration_Stat82: 3.072494932054404e-23 + syst_JES_EtaIntercalibration_Stat78: 1.58035210e-23 + syst_JES_EtaIntercalibration_Stat79: 1.25398773e-18 + syst_JES_EtaIntercalibration_Stat8: 2.59442537e-24 + syst_JES_EtaIntercalibration_Stat80: 1.56402853e-15 + syst_JES_EtaIntercalibration_Stat81: 1.36790228e-18 + syst_JES_EtaIntercalibration_Stat82: 3.07249493e-23 syst_JES_EtaIntercalibration_Stat83: 0.0 syst_JES_EtaIntercalibration_Stat84: 0.0 syst_JES_EtaIntercalibration_Stat85: 0.0 @@ -33277,105 +33277,105 @@ bins: syst_JES_EtaIntercalibration_Stat89: 0.0 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 2.1278244170983655e-24 - syst_JES_EtaIntercalibration_Stat92: 1.772611844144115e-23 - syst_JES_EtaIntercalibration_Stat93: 1.0511062886311736e-20 - syst_JES_EtaIntercalibration_Stat94: 2.703550994522071e-14 - syst_JES_EtaIntercalibration_Stat95: 1.3247100626174771e-15 - syst_JES_EtaIntercalibration_Stat96: 6.563062022219506e-23 - syst_JES_EtaIntercalibration_Stat97: 2.3495269204671817e-24 + syst_JES_EtaIntercalibration_Stat91: 2.12782442e-24 + syst_JES_EtaIntercalibration_Stat92: 1.77261184e-23 + syst_JES_EtaIntercalibration_Stat93: 1.05110629e-20 + syst_JES_EtaIntercalibration_Stat94: 2.70355099e-14 + syst_JES_EtaIntercalibration_Stat95: 1.32471006e-15 + syst_JES_EtaIntercalibration_Stat96: 6.56306202e-23 + syst_JES_EtaIntercalibration_Stat97: 2.34952692e-24 syst_JES_EtaIntercalibration_Stat98: 0.0 - syst_JES_EtaIntercalibration_Stat99: 2.521760280712033e-20 - syst_JES_EtaIntercalibration_TotalStat_MJB: 1.7778284506667115e-05 - syst_JES_Flavour_Comp: 3.308483640582193e-05 - syst_JES_Flavour_Response: 1.1185697597825538e-05 - syst_JES_Gjet_Generator: 4.108551174075845e-05 - syst_JES_Gjet_OOC: 3.4236478717882185e-05 - syst_JES_Gjet_Purity: 4.330881780884812e-06 - syst_JES_Gjet_Stat1: 1.4364586593424817e-07 - syst_JES_Gjet_Stat10: 1.2198868636066215e-06 - syst_JES_Gjet_Stat11: 1.2531233568567782e-06 - syst_JES_Gjet_Stat12: 1.3862871879592627e-06 - syst_JES_Gjet_Stat13: 8.127526314937405e-06 - syst_JES_Gjet_Stat14: 2.1667244287172286e-05 - syst_JES_Gjet_Stat15: 3.613829374776845e-05 - syst_JES_Gjet_Stat2: 1.4057729653112552e-07 - syst_JES_Gjet_Stat3: 1.7416427783848212e-07 - syst_JES_Gjet_Stat4: 2.2222382298034564e-07 - syst_JES_Gjet_Stat5: 3.2090551179435983e-07 - syst_JES_Gjet_Stat6: 6.683288169007827e-07 - syst_JES_Gjet_Stat7: 5.954130667024364e-07 - syst_JES_Gjet_Stat8: 1.5630036564256657e-07 - syst_JES_Gjet_Stat9: 5.824812700851418e-07 - syst_JES_Gjet_Veto: 3.688228029826789e-05 - syst_JES_Gjet_dPhi: 3.255462793521069e-06 - syst_JES_LArESZee: 5.9500010714284755e-05 - syst_JES_LArEsmear: 5.632752147041445e-06 - syst_JES_LAr_JVT: 7.2984844145891e-06 - syst_JES_MJB_Alpha: 1.131949427978123e-06 - syst_JES_MJB_Asym: 1.7317485383276636e-05 - syst_JES_MJB_Beta: 1.083209024150002e-06 - syst_JES_MJB_Fragmentation: 4.911189977999222e-06 - syst_JES_MJB_Stat1: 2.9843235414411753e-10 - syst_JES_MJB_Stat10: 3.795371490381409e-07 - syst_JES_MJB_Stat11: 3.192791093620126e-07 - syst_JES_MJB_Stat12: 6.486861953209734e-07 - syst_JES_MJB_Stat13: 1.1624005591877528e-06 - syst_JES_MJB_Stat14: 3.3679059888898323e-06 - syst_JES_MJB_Stat15: 2.984455144159483e-06 - syst_JES_MJB_Stat16: 7.873397662381852e-06 + syst_JES_EtaIntercalibration_Stat99: 2.52176028e-20 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.77782845e-05 + syst_JES_Flavour_Comp: 3.30848364e-05 + syst_JES_Flavour_Response: 1.11856976e-05 + syst_JES_Gjet_Generator: 4.10855117e-05 + syst_JES_Gjet_OOC: 3.42364787e-05 + syst_JES_Gjet_Purity: 4.33088178e-06 + syst_JES_Gjet_Stat1: 1.43645866e-07 + syst_JES_Gjet_Stat10: 1.21988686e-06 + syst_JES_Gjet_Stat11: 1.25312336e-06 + syst_JES_Gjet_Stat12: 1.38628719e-06 + syst_JES_Gjet_Stat13: 8.12752631e-06 + syst_JES_Gjet_Stat14: 2.16672443e-05 + syst_JES_Gjet_Stat15: 3.61382937e-05 + syst_JES_Gjet_Stat2: 1.40577297e-07 + syst_JES_Gjet_Stat3: 1.74164278e-07 + syst_JES_Gjet_Stat4: 2.22223823e-07 + syst_JES_Gjet_Stat5: 3.20905512e-07 + syst_JES_Gjet_Stat6: 6.68328817e-07 + syst_JES_Gjet_Stat7: 5.95413067e-07 + syst_JES_Gjet_Stat8: 1.56300366e-07 + syst_JES_Gjet_Stat9: 5.82481270e-07 + syst_JES_Gjet_Veto: 3.68822803e-05 + syst_JES_Gjet_dPhi: 3.25546279e-06 + syst_JES_LArESZee: 5.95000107e-05 + syst_JES_LArEsmear: 5.63275215e-06 + syst_JES_LAr_JVT: 7.29848441e-06 + syst_JES_MJB_Alpha: 1.13194943e-06 + syst_JES_MJB_Asym: 1.73174854e-05 + syst_JES_MJB_Beta: 1.08320902e-06 + syst_JES_MJB_Fragmentation: 4.91118998e-06 + syst_JES_MJB_Stat1: 2.98432354e-10 + syst_JES_MJB_Stat10: 3.79537149e-07 + syst_JES_MJB_Stat11: 3.19279109e-07 + syst_JES_MJB_Stat12: 6.48686195e-07 + syst_JES_MJB_Stat13: 1.16240056e-06 + syst_JES_MJB_Stat14: 3.36790599e-06 + syst_JES_MJB_Stat15: 2.98445514e-06 + syst_JES_MJB_Stat16: 7.87339766e-06 syst_JES_MJB_Stat2: 0.0 - syst_JES_MJB_Stat3: 2.3183500059309423e-08 - syst_JES_MJB_Stat4: 1.8229834749662432e-08 - syst_JES_MJB_Stat5: 2.4014884446942483e-08 - syst_JES_MJB_Stat6: 4.15004996957868e-08 - syst_JES_MJB_Stat7: 5.281727061293494e-08 - syst_JES_MJB_Stat8: 7.693193615137994e-08 - syst_JES_MJB_Stat9: 1.0861907889500812e-07 - syst_JES_MJB_Threshold: 7.513748382132583e-06 - syst_JES_Pileup_MuOffset: 1.1443888008452374e-05 - syst_JES_Pileup_NPVOffset: 1.021451529687043e-05 - syst_JES_Pileup_Pt_term: 4.5103201660192585e-06 - syst_JES_Pileup_Rho_topology: 1.2584362389489583e-05 - syst_JES_PunchThrough_MC15: 1.8523586990645196e-05 - syst_JES_SingleParticle_HighPt: 6.463634329848803e-09 - syst_JES_Zjet_MC: 1.5942148537759896e-05 - syst_JES_Zjet_MuScale: 1.3689828340779149e-06 - syst_JES_Zjet_MuSmearID: 2.456984076057474e-07 - syst_JES_Zjet_MuSmearMS: 3.821193923370025e-06 - syst_JES_Zjet_OOC: 1.0381708566030932e-05 - syst_JES_Zjet_Stat1: 1.6150746112796152e-06 - syst_JES_Zjet_Stat10: 7.295721674378758e-07 - syst_JES_Zjet_Stat11: 9.947680973473165e-07 - syst_JES_Zjet_Stat12: 2.0933707268422384e-06 - syst_JES_Zjet_Stat13: 3.866842995261122e-06 - syst_JES_Zjet_Stat2: 2.0576763593918264e-09 - syst_JES_Zjet_Stat3: 5.173125457593311e-07 - syst_JES_Zjet_Stat4: 5.858527694736965e-07 - syst_JES_Zjet_Stat5: 5.740076197229441e-07 - syst_JES_Zjet_Stat6: 5.86054287161181e-07 - syst_JES_Zjet_Stat7: 6.339484363889543e-07 - syst_JES_Zjet_Stat8: 3.742853546426843e-07 - syst_JES_Zjet_Stat9: 4.822558527379424e-07 - syst_JES_Zjet_Veto: 1.870388729649535e-06 - syst_JES_Zjet_dPhi: 1.7699877824437097e-06 + syst_JES_MJB_Stat3: 2.31835001e-08 + syst_JES_MJB_Stat4: 1.82298347e-08 + syst_JES_MJB_Stat5: 2.40148844e-08 + syst_JES_MJB_Stat6: 4.15004997e-08 + syst_JES_MJB_Stat7: 5.28172706e-08 + syst_JES_MJB_Stat8: 7.69319362e-08 + syst_JES_MJB_Stat9: 1.08619079e-07 + syst_JES_MJB_Threshold: 7.51374838e-06 + syst_JES_Pileup_MuOffset: 1.14438880e-05 + syst_JES_Pileup_NPVOffset: 1.02145153e-05 + syst_JES_Pileup_Pt_term: 4.51032017e-06 + syst_JES_Pileup_Rho_topology: 1.25843624e-05 + syst_JES_PunchThrough_MC15: 1.85235870e-05 + syst_JES_SingleParticle_HighPt: 6.46363433e-09 + syst_JES_Zjet_MC: 1.59421485e-05 + syst_JES_Zjet_MuScale: 1.36898283e-06 + syst_JES_Zjet_MuSmearID: 2.45698408e-07 + syst_JES_Zjet_MuSmearMS: 3.82119392e-06 + syst_JES_Zjet_OOC: 1.03817086e-05 + syst_JES_Zjet_Stat1: 1.61507461e-06 + syst_JES_Zjet_Stat10: 7.29572167e-07 + syst_JES_Zjet_Stat11: 9.94768097e-07 + syst_JES_Zjet_Stat12: 2.09337073e-06 + syst_JES_Zjet_Stat13: 3.86684300e-06 + syst_JES_Zjet_Stat2: 2.05767636e-09 + syst_JES_Zjet_Stat3: 5.17312546e-07 + syst_JES_Zjet_Stat4: 5.85852769e-07 + syst_JES_Zjet_Stat5: 5.74007620e-07 + syst_JES_Zjet_Stat6: 5.86054287e-07 + syst_JES_Zjet_Stat7: 6.33948436e-07 + syst_JES_Zjet_Stat8: 3.74285355e-07 + syst_JES_Zjet_Stat9: 4.82255853e-07 + syst_JES_Zjet_Veto: 1.87038873e-06 + syst_JES_Zjet_dPhi: 1.76998778e-06 syst_PRW: 0.0 - syst_Unfolding_bias: 1.1312e-06 - syst_cleaning: 7.114398692089164e-06 - syst_lumi: 2.323e-05 -- stat: 5.319e-06 + syst_Unfolding_bias: 1.13120000e-06 + syst_cleaning: 7.11439869e-06 + syst_lumi: 2.32300000e-05 +- stat: 5.31900000e-06 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 7.350554723964716e-07 - syst_JER_NP1: 3.902411914444707e-07 - syst_JER_NP2: 9.39251372104401e-07 - syst_JER_NP3: 2.522150421763143e-07 + syst_JER_NP0: 7.35055472e-07 + syst_JER_NP1: 3.90241191e-07 + syst_JER_NP2: 9.39251372e-07 + syst_JER_NP3: 2.52215042e-07 syst_JER_NP4: 0.0 syst_JER_NP5: 0.0 syst_JER_NP6: 0.0 syst_JER_NP7: 0.0 - syst_JER_NP8: 1.7144400689437937e-07 - syst_JES_EtaIntercalibration_Modelling: 5.9624464777472014e-06 + syst_JER_NP8: 1.71444007e-07 + syst_JES_EtaIntercalibration_Modelling: 5.96244648e-06 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 @@ -33396,7 +33396,7 @@ bins: syst_JES_EtaIntercalibration_Stat112: 0.0 syst_JES_EtaIntercalibration_Stat113: 0.0 syst_JES_EtaIntercalibration_Stat114: 0.0 - syst_JES_EtaIntercalibration_Stat115: 7.475531285467274e-10 + syst_JES_EtaIntercalibration_Stat115: 7.47553129e-10 syst_JES_EtaIntercalibration_Stat116: 0.0 syst_JES_EtaIntercalibration_Stat117: 0.0 syst_JES_EtaIntercalibration_Stat118: 0.0 @@ -33417,15 +33417,15 @@ bins: syst_JES_EtaIntercalibration_Stat131: 0.0 syst_JES_EtaIntercalibration_Stat132: 0.0 syst_JES_EtaIntercalibration_Stat133: 0.0 - syst_JES_EtaIntercalibration_Stat134: 4.6540205199375736e-10 + syst_JES_EtaIntercalibration_Stat134: 4.65402052e-10 syst_JES_EtaIntercalibration_Stat135: 0.0 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 syst_JES_EtaIntercalibration_Stat138: 0.0 - syst_JES_EtaIntercalibration_Stat139: 1.1213069784853745e-09 + syst_JES_EtaIntercalibration_Stat139: 1.12130698e-09 syst_JES_EtaIntercalibration_Stat14: 0.0 syst_JES_EtaIntercalibration_Stat140: 0.0 - syst_JES_EtaIntercalibration_Stat141: 4.0235540259825017e-10 + syst_JES_EtaIntercalibration_Stat141: 4.02355403e-10 syst_JES_EtaIntercalibration_Stat142: 0.0 syst_JES_EtaIntercalibration_Stat143: 0.0 syst_JES_EtaIntercalibration_Stat144: 0.0 @@ -33435,16 +33435,16 @@ bins: syst_JES_EtaIntercalibration_Stat148: 0.0 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 1.105654633011593e-10 - syst_JES_EtaIntercalibration_Stat151: 1.772754001546746e-09 - syst_JES_EtaIntercalibration_Stat152: 4.654886545341357e-10 + syst_JES_EtaIntercalibration_Stat150: 1.10565463e-10 + syst_JES_EtaIntercalibration_Stat151: 1.77275400e-09 + syst_JES_EtaIntercalibration_Stat152: 4.65488655e-10 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 syst_JES_EtaIntercalibration_Stat156: 0.0 - syst_JES_EtaIntercalibration_Stat157: 1.1130713487912622e-09 - syst_JES_EtaIntercalibration_Stat158: 1.4405814798198678e-09 - syst_JES_EtaIntercalibration_Stat159: 4.0235540259825017e-10 + syst_JES_EtaIntercalibration_Stat157: 1.11307135e-09 + syst_JES_EtaIntercalibration_Stat158: 1.44058148e-09 + syst_JES_EtaIntercalibration_Stat159: 4.02355403e-10 syst_JES_EtaIntercalibration_Stat16: 0.0 syst_JES_EtaIntercalibration_Stat160: 0.0 syst_JES_EtaIntercalibration_Stat161: 0.0 @@ -33454,16 +33454,16 @@ bins: syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 - syst_JES_EtaIntercalibration_Stat168: 3.5631588401304817e-09 - syst_JES_EtaIntercalibration_Stat169: 4.805613046220014e-09 + syst_JES_EtaIntercalibration_Stat168: 3.56315884e-09 + syst_JES_EtaIntercalibration_Stat169: 4.80561305e-09 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 6.9210156046638134e-09 + syst_JES_EtaIntercalibration_Stat170: 6.92101560e-09 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 - syst_JES_EtaIntercalibration_Stat175: 2.5168309438657177e-09 - syst_JES_EtaIntercalibration_Stat176: 4.629663351691999e-09 + syst_JES_EtaIntercalibration_Stat175: 2.51683094e-09 + syst_JES_EtaIntercalibration_Stat176: 4.62966335e-09 syst_JES_EtaIntercalibration_Stat177: 0.0 syst_JES_EtaIntercalibration_Stat178: 0.0 syst_JES_EtaIntercalibration_Stat179: 0.0 @@ -33472,75 +33472,75 @@ bins: syst_JES_EtaIntercalibration_Stat181: 0.0 syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 - syst_JES_EtaIntercalibration_Stat184: 9.597109652780882e-10 - syst_JES_EtaIntercalibration_Stat185: 5.685456775844841e-09 - syst_JES_EtaIntercalibration_Stat186: 1.9885499742274522e-08 - syst_JES_EtaIntercalibration_Stat187: 1.6874408878535565e-08 - syst_JES_EtaIntercalibration_Stat188: 7.345627474899609e-10 + syst_JES_EtaIntercalibration_Stat184: 9.59710965e-10 + syst_JES_EtaIntercalibration_Stat185: 5.68545678e-09 + syst_JES_EtaIntercalibration_Stat186: 1.98854997e-08 + syst_JES_EtaIntercalibration_Stat187: 1.68744089e-08 + syst_JES_EtaIntercalibration_Stat188: 7.34562747e-10 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 - syst_JES_EtaIntercalibration_Stat191: 1.1988389664587984e-09 - syst_JES_EtaIntercalibration_Stat192: 1.4103090468049902e-08 - syst_JES_EtaIntercalibration_Stat193: 1.8002029573078696e-08 - syst_JES_EtaIntercalibration_Stat194: 3.9738538913754744e-09 + syst_JES_EtaIntercalibration_Stat191: 1.19883897e-09 + syst_JES_EtaIntercalibration_Stat192: 1.41030905e-08 + syst_JES_EtaIntercalibration_Stat193: 1.80020296e-08 + syst_JES_EtaIntercalibration_Stat194: 3.97385389e-09 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 syst_JES_EtaIntercalibration_Stat197: 0.0 syst_JES_EtaIntercalibration_Stat198: 0.0 - syst_JES_EtaIntercalibration_Stat199: 7.925409321132884e-10 + syst_JES_EtaIntercalibration_Stat199: 7.92540932e-10 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 9.624591666663059e-09 - syst_JES_EtaIntercalibration_Stat201: 2.4087537752954326e-08 - syst_JES_EtaIntercalibration_Stat202: 2.973420252840153e-08 - syst_JES_EtaIntercalibration_Stat203: 7.175886495757859e-10 + syst_JES_EtaIntercalibration_Stat200: 9.62459167e-09 + syst_JES_EtaIntercalibration_Stat201: 2.40875378e-08 + syst_JES_EtaIntercalibration_Stat202: 2.97342025e-08 + syst_JES_EtaIntercalibration_Stat203: 7.17588650e-10 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 - syst_JES_EtaIntercalibration_Stat206: 1.1424994048138493e-09 - syst_JES_EtaIntercalibration_Stat207: 2.8986408452928416e-08 - syst_JES_EtaIntercalibration_Stat208: 3.89923386705645e-08 - syst_JES_EtaIntercalibration_Stat209: 6.775005147599521e-09 + syst_JES_EtaIntercalibration_Stat206: 1.14249940e-09 + syst_JES_EtaIntercalibration_Stat207: 2.89864085e-08 + syst_JES_EtaIntercalibration_Stat208: 3.89923387e-08 + syst_JES_EtaIntercalibration_Stat209: 6.77500515e-09 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 1.4098893573610662e-09 + syst_JES_EtaIntercalibration_Stat210: 1.40988936e-09 syst_JES_EtaIntercalibration_Stat211: 0.0 - syst_JES_EtaIntercalibration_Stat212: 1.0263267060249383e-10 - syst_JES_EtaIntercalibration_Stat213: 9.896561663022165e-09 - syst_JES_EtaIntercalibration_Stat214: 3.402199445579286e-08 - syst_JES_EtaIntercalibration_Stat215: 3.088757800475784e-08 - syst_JES_EtaIntercalibration_Stat216: 1.4679130594146237e-09 + syst_JES_EtaIntercalibration_Stat212: 1.02632671e-10 + syst_JES_EtaIntercalibration_Stat213: 9.89656166e-09 + syst_JES_EtaIntercalibration_Stat214: 3.40219945e-08 + syst_JES_EtaIntercalibration_Stat215: 3.08875780e-08 + syst_JES_EtaIntercalibration_Stat216: 1.46791306e-09 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 - syst_JES_EtaIntercalibration_Stat219: 1.1982327486761495e-09 + syst_JES_EtaIntercalibration_Stat219: 1.19823275e-09 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 3.465646368283989e-08 - syst_JES_EtaIntercalibration_Stat221: 3.301714504617261e-08 - syst_JES_EtaIntercalibration_Stat222: 6.823100669783497e-09 - syst_JES_EtaIntercalibration_Stat223: 1.4090233319572817e-09 - syst_JES_EtaIntercalibration_Stat224: 8.877626414194279e-10 - syst_JES_EtaIntercalibration_Stat225: 2.4946727240261396e-08 - syst_JES_EtaIntercalibration_Stat226: 8.879987091769897e-08 - syst_JES_EtaIntercalibration_Stat227: 8.204451398478754e-08 - syst_JES_EtaIntercalibration_Stat228: 2.9240123118755848e-09 + syst_JES_EtaIntercalibration_Stat220: 3.46564637e-08 + syst_JES_EtaIntercalibration_Stat221: 3.30171450e-08 + syst_JES_EtaIntercalibration_Stat222: 6.82310067e-09 + syst_JES_EtaIntercalibration_Stat223: 1.40902333e-09 + syst_JES_EtaIntercalibration_Stat224: 8.87762641e-10 + syst_JES_EtaIntercalibration_Stat225: 2.49467272e-08 + syst_JES_EtaIntercalibration_Stat226: 8.87998709e-08 + syst_JES_EtaIntercalibration_Stat227: 8.20445140e-08 + syst_JES_EtaIntercalibration_Stat228: 2.92401231e-09 syst_JES_EtaIntercalibration_Stat229: 0.0 syst_JES_EtaIntercalibration_Stat23: 0.0 syst_JES_EtaIntercalibration_Stat230: 0.0 - syst_JES_EtaIntercalibration_Stat231: 2.1239442083068e-09 - syst_JES_EtaIntercalibration_Stat232: 9.31743831479447e-08 - syst_JES_EtaIntercalibration_Stat233: 9.152169906639628e-08 - syst_JES_EtaIntercalibration_Stat234: 2.4572283166201712e-08 - syst_JES_EtaIntercalibration_Stat235: 4.054730940518742e-10 - syst_JES_EtaIntercalibration_Stat236: 8.024561467768815e-09 - syst_JES_EtaIntercalibration_Stat237: 2.7913928422921775e-08 - syst_JES_EtaIntercalibration_Stat238: 2.1735028755444517e-08 - syst_JES_EtaIntercalibration_Stat239: 7.34995760191853e-10 + syst_JES_EtaIntercalibration_Stat231: 2.12394421e-09 + syst_JES_EtaIntercalibration_Stat232: 9.31743831e-08 + syst_JES_EtaIntercalibration_Stat233: 9.15216991e-08 + syst_JES_EtaIntercalibration_Stat234: 2.45722832e-08 + syst_JES_EtaIntercalibration_Stat235: 4.05473094e-10 + syst_JES_EtaIntercalibration_Stat236: 8.02456147e-09 + syst_JES_EtaIntercalibration_Stat237: 2.79139284e-08 + syst_JES_EtaIntercalibration_Stat238: 2.17350288e-08 + syst_JES_EtaIntercalibration_Stat239: 7.34995760e-10 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 - syst_JES_EtaIntercalibration_Stat242: 1.1990987740799338e-09 - syst_JES_EtaIntercalibration_Stat243: 1.459255299801923e-08 - syst_JES_EtaIntercalibration_Stat244: 1.8122009180827603e-08 - syst_JES_EtaIntercalibration_Stat245: 3.5139247288466492e-09 + syst_JES_EtaIntercalibration_Stat242: 1.19909877e-09 + syst_JES_EtaIntercalibration_Stat243: 1.45925530e-08 + syst_JES_EtaIntercalibration_Stat244: 1.81220092e-08 + syst_JES_EtaIntercalibration_Stat245: 3.51392473e-09 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 syst_JES_EtaIntercalibration_Stat27: 0.0 @@ -33623,244 +33623,244 @@ bins: syst_JES_EtaIntercalibration_Stat97: 0.0 syst_JES_EtaIntercalibration_Stat98: 0.0 syst_JES_EtaIntercalibration_Stat99: 0.0 - syst_JES_EtaIntercalibration_TotalStat_MJB: 2.1989222360056302e-06 - syst_JES_Flavour_Comp: 1.547140588311224e-06 - syst_JES_Flavour_Response: 1.997362448330297e-06 - syst_JES_Gjet_Generator: 3.744084583379494e-06 - syst_JES_Gjet_OOC: 3.118487774547144e-06 - syst_JES_Gjet_Purity: 1.0506623054054999e-08 - syst_JES_Gjet_Stat1: 6.463765311333634e-09 - syst_JES_Gjet_Stat10: 2.3104194424389696e-07 - syst_JES_Gjet_Stat11: 2.254842067640215e-07 - syst_JES_Gjet_Stat12: 1.0111369491814647e-07 - syst_JES_Gjet_Stat13: 9.50531235678239e-07 - syst_JES_Gjet_Stat14: 2.840880145307084e-06 - syst_JES_Gjet_Stat15: 4.526270070378038e-06 - syst_JES_Gjet_Stat2: 2.0666017395715122e-08 - syst_JES_Gjet_Stat3: 2.5237319092962308e-08 - syst_JES_Gjet_Stat4: 8.901608548459092e-08 - syst_JES_Gjet_Stat5: 8.799023056567132e-08 - syst_JES_Gjet_Stat6: 7.226864240457267e-08 - syst_JES_Gjet_Stat7: 6.843527215551934e-08 - syst_JES_Gjet_Stat8: 1.733782858376446e-08 - syst_JES_Gjet_Stat9: 6.636873567426157e-08 - syst_JES_Gjet_Veto: 3.7161594085830067e-06 - syst_JES_Gjet_dPhi: 1.4485316427334269e-07 - syst_JES_LArESZee: 4.728722316863192e-06 - syst_JES_LArEsmear: 4.821549206427328e-07 - syst_JES_LAr_JVT: 6.273411571864228e-07 - syst_JES_MJB_Alpha: 1.1342936160888856e-07 - syst_JES_MJB_Asym: 2.9907387047350025e-06 - syst_JES_MJB_Beta: 2.3834917138517597e-07 - syst_JES_MJB_Fragmentation: 6.793008979826245e-07 + syst_JES_EtaIntercalibration_TotalStat_MJB: 2.19892224e-06 + syst_JES_Flavour_Comp: 1.54714059e-06 + syst_JES_Flavour_Response: 1.99736245e-06 + syst_JES_Gjet_Generator: 3.74408458e-06 + syst_JES_Gjet_OOC: 3.11848777e-06 + syst_JES_Gjet_Purity: 1.05066231e-08 + syst_JES_Gjet_Stat1: 6.46376531e-09 + syst_JES_Gjet_Stat10: 2.31041944e-07 + syst_JES_Gjet_Stat11: 2.25484207e-07 + syst_JES_Gjet_Stat12: 1.01113695e-07 + syst_JES_Gjet_Stat13: 9.50531236e-07 + syst_JES_Gjet_Stat14: 2.84088015e-06 + syst_JES_Gjet_Stat15: 4.52627007e-06 + syst_JES_Gjet_Stat2: 2.06660174e-08 + syst_JES_Gjet_Stat3: 2.52373191e-08 + syst_JES_Gjet_Stat4: 8.90160855e-08 + syst_JES_Gjet_Stat5: 8.79902306e-08 + syst_JES_Gjet_Stat6: 7.22686424e-08 + syst_JES_Gjet_Stat7: 6.84352722e-08 + syst_JES_Gjet_Stat8: 1.73378286e-08 + syst_JES_Gjet_Stat9: 6.63687357e-08 + syst_JES_Gjet_Veto: 3.71615941e-06 + syst_JES_Gjet_dPhi: 1.44853164e-07 + syst_JES_LArESZee: 4.72872232e-06 + syst_JES_LArEsmear: 4.82154921e-07 + syst_JES_LAr_JVT: 6.27341157e-07 + syst_JES_MJB_Alpha: 1.13429362e-07 + syst_JES_MJB_Asym: 2.99073870e-06 + syst_JES_MJB_Beta: 2.38349171e-07 + syst_JES_MJB_Fragmentation: 6.79300898e-07 syst_JES_MJB_Stat1: 0.0 - syst_JES_MJB_Stat10: 1.3856070582961101e-08 - syst_JES_MJB_Stat11: 1.710847158573787e-08 - syst_JES_MJB_Stat12: 3.2601314007260504e-08 - syst_JES_MJB_Stat13: 5.368200326925216e-08 - syst_JES_MJB_Stat14: 7.407484778924624e-07 - syst_JES_MJB_Stat15: 1.3492752304478135e-06 - syst_JES_MJB_Stat16: 2.2676708314920843e-06 + syst_JES_MJB_Stat10: 1.38560706e-08 + syst_JES_MJB_Stat11: 1.71084716e-08 + syst_JES_MJB_Stat12: 3.26013140e-08 + syst_JES_MJB_Stat13: 5.36820033e-08 + syst_JES_MJB_Stat14: 7.40748478e-07 + syst_JES_MJB_Stat15: 1.34927523e-06 + syst_JES_MJB_Stat16: 2.26767083e-06 syst_JES_MJB_Stat2: 0.0 - syst_JES_MJB_Stat3: 1.4713771610297614e-09 - syst_JES_MJB_Stat4: 1.1573563496175238e-09 - syst_JES_MJB_Stat5: 1.524204710660612e-09 - syst_JES_MJB_Stat6: 3.176948968743439e-09 - syst_JES_MJB_Stat7: 5.22399279765966e-09 - syst_JES_MJB_Stat8: 5.233626180766066e-09 - syst_JES_MJB_Stat9: 8.291564553810095e-09 - syst_JES_MJB_Threshold: 6.090630262953088e-07 - syst_JES_Pileup_MuOffset: 1.389387702371084e-06 - syst_JES_Pileup_NPVOffset: 9.943897073079547e-07 - syst_JES_Pileup_Pt_term: 3.3606548469011215e-07 - syst_JES_Pileup_Rho_topology: 1.4398021070619392e-06 - syst_JES_PunchThrough_MC15: 1.9775031605537323e-06 - syst_JES_SingleParticle_HighPt: 3.200663485904133e-08 - syst_JES_Zjet_MC: 1.3876158357052572e-06 - syst_JES_Zjet_MuScale: 1.7700350279019903e-07 - syst_JES_Zjet_MuSmearID: 1.5277341089011527e-08 - syst_JES_Zjet_MuSmearMS: 2.326398289201572e-07 - syst_JES_Zjet_OOC: 8.355593381083118e-07 - syst_JES_Zjet_Stat1: 1.855420976490241e-07 - syst_JES_Zjet_Stat10: 1.0761110491022756e-07 - syst_JES_Zjet_Stat11: 8.663965950994959e-08 - syst_JES_Zjet_Stat12: 1.4430992620052163e-07 - syst_JES_Zjet_Stat13: 3.363144473554474e-07 - syst_JES_Zjet_Stat2: 2.829304994163761e-09 - syst_JES_Zjet_Stat3: 4.1879200983304354e-08 - syst_JES_Zjet_Stat4: 6.244297458481619e-08 - syst_JES_Zjet_Stat5: 5.0421579457609214e-08 - syst_JES_Zjet_Stat6: 9.244630373898137e-08 - syst_JES_Zjet_Stat7: 7.569168431868854e-08 - syst_JES_Zjet_Stat8: 2.8465728077813156e-08 - syst_JES_Zjet_Stat9: 9.026809070762492e-08 - syst_JES_Zjet_Veto: 1.5702314319870178e-07 - syst_JES_Zjet_dPhi: 1.5191372551550436e-07 + syst_JES_MJB_Stat3: 1.47137716e-09 + syst_JES_MJB_Stat4: 1.15735635e-09 + syst_JES_MJB_Stat5: 1.52420471e-09 + syst_JES_MJB_Stat6: 3.17694897e-09 + syst_JES_MJB_Stat7: 5.22399280e-09 + syst_JES_MJB_Stat8: 5.23362618e-09 + syst_JES_MJB_Stat9: 8.29156455e-09 + syst_JES_MJB_Threshold: 6.09063026e-07 + syst_JES_Pileup_MuOffset: 1.38938770e-06 + syst_JES_Pileup_NPVOffset: 9.94389707e-07 + syst_JES_Pileup_Pt_term: 3.36065485e-07 + syst_JES_Pileup_Rho_topology: 1.43980211e-06 + syst_JES_PunchThrough_MC15: 1.97750316e-06 + syst_JES_SingleParticle_HighPt: 3.20066349e-08 + syst_JES_Zjet_MC: 1.38761584e-06 + syst_JES_Zjet_MuScale: 1.77003503e-07 + syst_JES_Zjet_MuSmearID: 1.52773411e-08 + syst_JES_Zjet_MuSmearMS: 2.32639829e-07 + syst_JES_Zjet_OOC: 8.35559338e-07 + syst_JES_Zjet_Stat1: 1.85542098e-07 + syst_JES_Zjet_Stat10: 1.07611105e-07 + syst_JES_Zjet_Stat11: 8.66396595e-08 + syst_JES_Zjet_Stat12: 1.44309926e-07 + syst_JES_Zjet_Stat13: 3.36314447e-07 + syst_JES_Zjet_Stat2: 2.82930499e-09 + syst_JES_Zjet_Stat3: 4.18792010e-08 + syst_JES_Zjet_Stat4: 6.24429746e-08 + syst_JES_Zjet_Stat5: 5.04215795e-08 + syst_JES_Zjet_Stat6: 9.24463037e-08 + syst_JES_Zjet_Stat7: 7.56916843e-08 + syst_JES_Zjet_Stat8: 2.84657281e-08 + syst_JES_Zjet_Stat9: 9.02680907e-08 + syst_JES_Zjet_Veto: 1.57023143e-07 + syst_JES_Zjet_dPhi: 1.51913726e-07 syst_PRW: 0.0 - syst_Unfolding_bias: 7.108e-07 - syst_cleaning: 4.2469885801588867e-07 - syst_lumi: 1.475e-06 + syst_Unfolding_bias: 7.10800000e-07 + syst_cleaning: 4.24698858e-07 + syst_lumi: 1.47500000e-06 - stat: 65.18 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 229.93613787310602 - syst_JER_NP1: 35.6600655495752 - syst_JER_NP2: 9.138523882444035 - syst_JER_NP3: 49.480643922649186 - syst_JER_NP4: 5.019012751527934 - syst_JER_NP5: 15.655344135470163 - syst_JER_NP6: 23.095789118365275 - syst_JER_NP7: 6.708573022633055 - syst_JER_NP8: 30.187633229519665 - syst_JES_EtaIntercalibration_Modelling: 252.5814626511613 - syst_JES_EtaIntercalibration_NonClosure: 7.20359930867896e-40 - syst_JES_EtaIntercalibration_Stat0: 0.00938684935161953 + syst_JER_NP0: 2.29936138e+02 + syst_JER_NP1: 3.56600655e+01 + syst_JER_NP2: 9.13852388e+00 + syst_JER_NP3: 4.94806439e+01 + syst_JER_NP4: 5.01901275e+00 + syst_JER_NP5: 1.56553441e+01 + syst_JER_NP6: 2.30957891e+01 + syst_JER_NP7: 6.70857302e+00 + syst_JER_NP8: 3.01876332e+01 + syst_JES_EtaIntercalibration_Modelling: 2.52581463e+02 + syst_JES_EtaIntercalibration_NonClosure: 7.20359931e-40 + syst_JES_EtaIntercalibration_Stat0: 9.38684935e-03 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 0.1639170832996671 - syst_JES_EtaIntercalibration_Stat101: 5.325654701536704 - syst_JES_EtaIntercalibration_Stat102: 20.120367789878994 - syst_JES_EtaIntercalibration_Stat103: 17.623214803207727 - syst_JES_EtaIntercalibration_Stat104: 2.762118163656291 - syst_JES_EtaIntercalibration_Stat105: 0.05254203745573634 - syst_JES_EtaIntercalibration_Stat106: 0.00938684935161953 - syst_JES_EtaIntercalibration_Stat107: 0.00938684935161953 - syst_JES_EtaIntercalibration_Stat108: 0.00938684935161953 - syst_JES_EtaIntercalibration_Stat109: 0.00938684935161953 + syst_JES_EtaIntercalibration_Stat100: 1.63917083e-01 + syst_JES_EtaIntercalibration_Stat101: 5.32565470e+00 + syst_JES_EtaIntercalibration_Stat102: 2.01203678e+01 + syst_JES_EtaIntercalibration_Stat103: 1.76232148e+01 + syst_JES_EtaIntercalibration_Stat104: 2.76211816e+00 + syst_JES_EtaIntercalibration_Stat105: 5.25420375e-02 + syst_JES_EtaIntercalibration_Stat106: 9.38684935e-03 + syst_JES_EtaIntercalibration_Stat107: 9.38684935e-03 + syst_JES_EtaIntercalibration_Stat108: 9.38684935e-03 + syst_JES_EtaIntercalibration_Stat109: 9.38684935e-03 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 0.020233702257328904 - syst_JES_EtaIntercalibration_Stat111: 0.6243860606027332 - syst_JES_EtaIntercalibration_Stat112: 4.459474520613387 - syst_JES_EtaIntercalibration_Stat113: 4.440708811665092 - syst_JES_EtaIntercalibration_Stat114: 1.3237045317970322 - syst_JES_EtaIntercalibration_Stat115: 0.2979680310033276 - syst_JES_EtaIntercalibration_Stat116: 0.009431394869662706 - syst_JES_EtaIntercalibration_Stat117: 0.00938684935161953 - syst_JES_EtaIntercalibration_Stat118: 0.00938684935161953 - syst_JES_EtaIntercalibration_Stat119: 0.00938684935161953 + syst_JES_EtaIntercalibration_Stat110: 2.02337023e-02 + syst_JES_EtaIntercalibration_Stat111: 6.24386061e-01 + syst_JES_EtaIntercalibration_Stat112: 4.45947452e+00 + syst_JES_EtaIntercalibration_Stat113: 4.44070881e+00 + syst_JES_EtaIntercalibration_Stat114: 1.32370453e+00 + syst_JES_EtaIntercalibration_Stat115: 2.97968031e-01 + syst_JES_EtaIntercalibration_Stat116: 9.43139487e-03 + syst_JES_EtaIntercalibration_Stat117: 9.38684935e-03 + syst_JES_EtaIntercalibration_Stat118: 9.38684935e-03 + syst_JES_EtaIntercalibration_Stat119: 9.38684935e-03 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 0.05399668392595975 - syst_JES_EtaIntercalibration_Stat121: 1.9220198542158715 - syst_JES_EtaIntercalibration_Stat122: 3.872004487342441 - syst_JES_EtaIntercalibration_Stat123: 3.185823303323648 - syst_JES_EtaIntercalibration_Stat124: 0.27747951275724847 - syst_JES_EtaIntercalibration_Stat125: 0.0018273136019851654 - syst_JES_EtaIntercalibration_Stat126: 0.00938684935161953 - syst_JES_EtaIntercalibration_Stat127: 0.00938684935161953 - syst_JES_EtaIntercalibration_Stat128: 0.00938684935161953 - syst_JES_EtaIntercalibration_Stat129: 0.09931404226734504 + syst_JES_EtaIntercalibration_Stat120: 5.39966839e-02 + syst_JES_EtaIntercalibration_Stat121: 1.92201985e+00 + syst_JES_EtaIntercalibration_Stat122: 3.87200449e+00 + syst_JES_EtaIntercalibration_Stat123: 3.18582330e+00 + syst_JES_EtaIntercalibration_Stat124: 2.77479513e-01 + syst_JES_EtaIntercalibration_Stat125: 1.82731360e-03 + syst_JES_EtaIntercalibration_Stat126: 9.38684935e-03 + syst_JES_EtaIntercalibration_Stat127: 9.38684935e-03 + syst_JES_EtaIntercalibration_Stat128: 9.38684935e-03 + syst_JES_EtaIntercalibration_Stat129: 9.93140423e-02 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 2.6831060359218006 - syst_JES_EtaIntercalibration_Stat131: 7.243124256838343 - syst_JES_EtaIntercalibration_Stat132: 11.613345512814126 - syst_JES_EtaIntercalibration_Stat133: 2.8737913546393727 - syst_JES_EtaIntercalibration_Stat134: 0.17050527117951517 - syst_JES_EtaIntercalibration_Stat135: 0.00013120284867334245 + syst_JES_EtaIntercalibration_Stat130: 2.68310604e+00 + syst_JES_EtaIntercalibration_Stat131: 7.24312426e+00 + syst_JES_EtaIntercalibration_Stat132: 1.16133455e+01 + syst_JES_EtaIntercalibration_Stat133: 2.87379135e+00 + syst_JES_EtaIntercalibration_Stat134: 1.70505271e-01 + syst_JES_EtaIntercalibration_Stat135: 1.31202849e-04 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 syst_JES_EtaIntercalibration_Stat138: 0.0 - syst_JES_EtaIntercalibration_Stat139: 0.030929106788751593 - syst_JES_EtaIntercalibration_Stat14: 0.04250540671491099 - syst_JES_EtaIntercalibration_Stat140: 3.1904815859051747 - syst_JES_EtaIntercalibration_Stat141: 10.941543618246925 - syst_JES_EtaIntercalibration_Stat142: 6.076053879780856 - syst_JES_EtaIntercalibration_Stat143: 1.5511923438116886 - syst_JES_EtaIntercalibration_Stat144: 0.024292142944642756 + syst_JES_EtaIntercalibration_Stat139: 3.09291068e-02 + syst_JES_EtaIntercalibration_Stat14: 4.25054067e-02 + syst_JES_EtaIntercalibration_Stat140: 3.19048159e+00 + syst_JES_EtaIntercalibration_Stat141: 1.09415436e+01 + syst_JES_EtaIntercalibration_Stat142: 6.07605388e+00 + syst_JES_EtaIntercalibration_Stat143: 1.55119234e+00 + syst_JES_EtaIntercalibration_Stat144: 2.42921429e-02 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 5.4783315738649734e-08 - syst_JES_EtaIntercalibration_Stat148: 0.1105950210226482 - syst_JES_EtaIntercalibration_Stat149: 0.44939671505252465 - syst_JES_EtaIntercalibration_Stat15: 0.07581143185562451 - syst_JES_EtaIntercalibration_Stat150: 0.5865619234147406 - syst_JES_EtaIntercalibration_Stat151: 0.2654832574758717 - syst_JES_EtaIntercalibration_Stat152: 0.027132952290526736 + syst_JES_EtaIntercalibration_Stat147: 5.47833157e-08 + syst_JES_EtaIntercalibration_Stat148: 1.10595021e-01 + syst_JES_EtaIntercalibration_Stat149: 4.49396715e-01 + syst_JES_EtaIntercalibration_Stat15: 7.58114319e-02 + syst_JES_EtaIntercalibration_Stat150: 5.86561923e-01 + syst_JES_EtaIntercalibration_Stat151: 2.65483257e-01 + syst_JES_EtaIntercalibration_Stat152: 2.71329523e-02 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 syst_JES_EtaIntercalibration_Stat156: 0.0 - syst_JES_EtaIntercalibration_Stat157: 1.0536931088335725e-05 - syst_JES_EtaIntercalibration_Stat158: 0.21834071425183163 - syst_JES_EtaIntercalibration_Stat159: 0.7713437025736323 - syst_JES_EtaIntercalibration_Stat16: 0.10644452123054526 - syst_JES_EtaIntercalibration_Stat160: 0.441740557341071 - syst_JES_EtaIntercalibration_Stat161: 0.06988865483753426 - syst_JES_EtaIntercalibration_Stat162: 0.0004183964746505401 + syst_JES_EtaIntercalibration_Stat157: 1.05369311e-05 + syst_JES_EtaIntercalibration_Stat158: 2.18340714e-01 + syst_JES_EtaIntercalibration_Stat159: 7.71343703e-01 + syst_JES_EtaIntercalibration_Stat16: 1.06444521e-01 + syst_JES_EtaIntercalibration_Stat160: 4.41740557e-01 + syst_JES_EtaIntercalibration_Stat161: 6.98886548e-02 + syst_JES_EtaIntercalibration_Stat162: 4.18396475e-04 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 5.261104327963915e-12 - syst_JES_EtaIntercalibration_Stat166: 0.0002461007110920243 - syst_JES_EtaIntercalibration_Stat167: 0.01055551362120764 - syst_JES_EtaIntercalibration_Stat168: 0.04800449048526606 - syst_JES_EtaIntercalibration_Stat169: 0.004081800338086124 - syst_JES_EtaIntercalibration_Stat17: 0.0073386992716693335 - syst_JES_EtaIntercalibration_Stat170: 0.0007910276038167063 + syst_JES_EtaIntercalibration_Stat165: 5.26110433e-12 + syst_JES_EtaIntercalibration_Stat166: 2.46100711e-04 + syst_JES_EtaIntercalibration_Stat167: 1.05555136e-02 + syst_JES_EtaIntercalibration_Stat168: 4.80044905e-02 + syst_JES_EtaIntercalibration_Stat169: 4.08180034e-03 + syst_JES_EtaIntercalibration_Stat17: 7.33869927e-03 + syst_JES_EtaIntercalibration_Stat170: 7.91027604e-04 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 - syst_JES_EtaIntercalibration_Stat175: 1.1842031371348413e-07 - syst_JES_EtaIntercalibration_Stat176: 0.004183811095161922 - syst_JES_EtaIntercalibration_Stat177: 0.016330055113195425 - syst_JES_EtaIntercalibration_Stat178: 0.011707292342809246 - syst_JES_EtaIntercalibration_Stat179: 0.0011566634125794765 + syst_JES_EtaIntercalibration_Stat175: 1.18420314e-07 + syst_JES_EtaIntercalibration_Stat176: 4.18381110e-03 + syst_JES_EtaIntercalibration_Stat177: 1.63300551e-02 + syst_JES_EtaIntercalibration_Stat178: 1.17072923e-02 + syst_JES_EtaIntercalibration_Stat179: 1.15666341e-03 syst_JES_EtaIntercalibration_Stat18: 0.0 - syst_JES_EtaIntercalibration_Stat180: 4.505823629902529e-08 + syst_JES_EtaIntercalibration_Stat180: 4.50582363e-08 syst_JES_EtaIntercalibration_Stat181: 0.0 - syst_JES_EtaIntercalibration_Stat182: 4.476485312046735e-12 - syst_JES_EtaIntercalibration_Stat183: 1.222114045414748e-07 - syst_JES_EtaIntercalibration_Stat184: 0.0003414506125342287 - syst_JES_EtaIntercalibration_Stat185: 0.0007866914563537601 - syst_JES_EtaIntercalibration_Stat186: 2.6929947549150555e-05 - syst_JES_EtaIntercalibration_Stat187: 1.0765535929400873e-16 + syst_JES_EtaIntercalibration_Stat182: 4.47648531e-12 + syst_JES_EtaIntercalibration_Stat183: 1.22211405e-07 + syst_JES_EtaIntercalibration_Stat184: 3.41450613e-04 + syst_JES_EtaIntercalibration_Stat185: 7.86691456e-04 + syst_JES_EtaIntercalibration_Stat186: 2.69299475e-05 + syst_JES_EtaIntercalibration_Stat187: 1.07655359e-16 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 - syst_JES_EtaIntercalibration_Stat192: 1.346669502884802e-11 - syst_JES_EtaIntercalibration_Stat193: 0.00033835085547401824 - syst_JES_EtaIntercalibration_Stat194: 0.0012988885046454142 - syst_JES_EtaIntercalibration_Stat195: 0.0008861635402113992 - syst_JES_EtaIntercalibration_Stat196: 1.857624491240539e-05 - syst_JES_EtaIntercalibration_Stat197: 3.4866297959529274e-08 - syst_JES_EtaIntercalibration_Stat198: 2.1821747218188253e-08 - syst_JES_EtaIntercalibration_Stat199: 4.133195222827008e-08 + syst_JES_EtaIntercalibration_Stat192: 1.34666950e-11 + syst_JES_EtaIntercalibration_Stat193: 3.38350855e-04 + syst_JES_EtaIntercalibration_Stat194: 1.29888850e-03 + syst_JES_EtaIntercalibration_Stat195: 8.86163540e-04 + syst_JES_EtaIntercalibration_Stat196: 1.85762449e-05 + syst_JES_EtaIntercalibration_Stat197: 3.48662980e-08 + syst_JES_EtaIntercalibration_Stat198: 2.18217472e-08 + syst_JES_EtaIntercalibration_Stat199: 4.13319522e-08 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 4.6864267838087476e-08 - syst_JES_EtaIntercalibration_Stat201: 3.0733309963493794e-08 - syst_JES_EtaIntercalibration_Stat202: 3.0284908369798246e-29 + syst_JES_EtaIntercalibration_Stat200: 4.68642678e-08 + syst_JES_EtaIntercalibration_Stat201: 3.07333100e-08 + syst_JES_EtaIntercalibration_Stat202: 3.02849084e-29 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 - syst_JES_EtaIntercalibration_Stat207: 1.3553297569240869e-11 - syst_JES_EtaIntercalibration_Stat208: 6.764524430750325e-12 - syst_JES_EtaIntercalibration_Stat209: 4.636710199052772e-08 + syst_JES_EtaIntercalibration_Stat207: 1.35532976e-11 + syst_JES_EtaIntercalibration_Stat208: 6.76452443e-12 + syst_JES_EtaIntercalibration_Stat209: 4.63671020e-08 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 1.9929245324585174e-08 - syst_JES_EtaIntercalibration_Stat211: 4.262577037427007e-12 - syst_JES_EtaIntercalibration_Stat212: 8.137509493082019e-23 - syst_JES_EtaIntercalibration_Stat213: 1.4186880233159087e-22 - syst_JES_EtaIntercalibration_Stat214: 7.02779606386688e-23 - syst_JES_EtaIntercalibration_Stat215: 4.012295695733304e-39 + syst_JES_EtaIntercalibration_Stat210: 1.99292453e-08 + syst_JES_EtaIntercalibration_Stat211: 4.26257704e-12 + syst_JES_EtaIntercalibration_Stat212: 8.13750949e-23 + syst_JES_EtaIntercalibration_Stat213: 1.41868802e-22 + syst_JES_EtaIntercalibration_Stat214: 7.02779606e-23 + syst_JES_EtaIntercalibration_Stat215: 4.01229570e-39 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 syst_JES_EtaIntercalibration_Stat219: 0.0 - syst_JES_EtaIntercalibration_Stat22: 0.00938684935161953 + syst_JES_EtaIntercalibration_Stat22: 9.38684935e-03 syst_JES_EtaIntercalibration_Stat220: 0.0 - syst_JES_EtaIntercalibration_Stat221: 5.499174756270254e-23 - syst_JES_EtaIntercalibration_Stat222: 5.4897314071074036e-17 - syst_JES_EtaIntercalibration_Stat223: 1.156540145217623e-22 + syst_JES_EtaIntercalibration_Stat221: 5.49917476e-23 + syst_JES_EtaIntercalibration_Stat222: 5.48973141e-17 + syst_JES_EtaIntercalibration_Stat223: 1.15654015e-22 syst_JES_EtaIntercalibration_Stat224: 0.0 syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 syst_JES_EtaIntercalibration_Stat227: 0.0 syst_JES_EtaIntercalibration_Stat228: 0.0 syst_JES_EtaIntercalibration_Stat229: 0.0 - syst_JES_EtaIntercalibration_Stat23: 0.00938684935161953 + syst_JES_EtaIntercalibration_Stat23: 9.38684935e-03 syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 syst_JES_EtaIntercalibration_Stat232: 0.0 @@ -33878,119 +33878,119 @@ bins: syst_JES_EtaIntercalibration_Stat243: 0.0 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 - syst_JES_EtaIntercalibration_Stat25: 0.0027574248856496526 - syst_JES_EtaIntercalibration_Stat26: 0.062241101372003366 - syst_JES_EtaIntercalibration_Stat27: 0.5408476194826044 - syst_JES_EtaIntercalibration_Stat28: 1.0063934916323733 - syst_JES_EtaIntercalibration_Stat29: 0.5085035176869478 + syst_JES_EtaIntercalibration_Stat25: 2.75742489e-03 + syst_JES_EtaIntercalibration_Stat26: 6.22411014e-02 + syst_JES_EtaIntercalibration_Stat27: 5.40847619e-01 + syst_JES_EtaIntercalibration_Stat28: 1.00639349e+00 + syst_JES_EtaIntercalibration_Stat29: 5.08503518e-01 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 0.009413433061322527 + syst_JES_EtaIntercalibration_Stat30: 9.41343306e-03 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 0.01746174220259823 - syst_JES_EtaIntercalibration_Stat36: 0.07345489704573821 - syst_JES_EtaIntercalibration_Stat37: 1.056860222546009 - syst_JES_EtaIntercalibration_Stat38: 0.966066100222961 - syst_JES_EtaIntercalibration_Stat39: 0.15602984607760145 - syst_JES_EtaIntercalibration_Stat4: 0.0037802008875190748 - syst_JES_EtaIntercalibration_Stat40: 0.030423472434947328 + syst_JES_EtaIntercalibration_Stat35: 1.74617422e-02 + syst_JES_EtaIntercalibration_Stat36: 7.34548970e-02 + syst_JES_EtaIntercalibration_Stat37: 1.05686022e+00 + syst_JES_EtaIntercalibration_Stat38: 9.66066100e-01 + syst_JES_EtaIntercalibration_Stat39: 1.56029846e-01 + syst_JES_EtaIntercalibration_Stat4: 3.78020089e-03 + syst_JES_EtaIntercalibration_Stat40: 3.04234724e-02 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 - syst_JES_EtaIntercalibration_Stat44: 0.00938684935161953 + syst_JES_EtaIntercalibration_Stat44: 9.38684935e-03 syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 - syst_JES_EtaIntercalibration_Stat47: 0.0027582909110534367 - syst_JES_EtaIntercalibration_Stat48: 0.4437991550239816 - syst_JES_EtaIntercalibration_Stat49: 3.23821104160924 - syst_JES_EtaIntercalibration_Stat5: 0.0576225170831681 - syst_JES_EtaIntercalibration_Stat50: 3.865450038481936 - syst_JES_EtaIntercalibration_Stat51: 1.3872386627758038 - syst_JES_EtaIntercalibration_Stat52: 0.218335381237215 + syst_JES_EtaIntercalibration_Stat47: 2.75829091e-03 + syst_JES_EtaIntercalibration_Stat48: 4.43799155e-01 + syst_JES_EtaIntercalibration_Stat49: 3.23821104e+00 + syst_JES_EtaIntercalibration_Stat5: 5.76225171e-02 + syst_JES_EtaIntercalibration_Stat50: 3.86545004e+00 + syst_JES_EtaIntercalibration_Stat51: 1.38723866e+00 + syst_JES_EtaIntercalibration_Stat52: 2.18335381e-01 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 syst_JES_EtaIntercalibration_Stat56: 0.0 - syst_JES_EtaIntercalibration_Stat57: 0.021308486572255664 - syst_JES_EtaIntercalibration_Stat58: 0.8381642485217322 - syst_JES_EtaIntercalibration_Stat59: 3.153446685770983 - syst_JES_EtaIntercalibration_Stat6: 0.6033019393305478 - syst_JES_EtaIntercalibration_Stat60: 2.9771535062875074 - syst_JES_EtaIntercalibration_Stat61: 0.2628223925010957 - syst_JES_EtaIntercalibration_Stat62: 0.007485923590312688 + syst_JES_EtaIntercalibration_Stat57: 2.13084866e-02 + syst_JES_EtaIntercalibration_Stat58: 8.38164249e-01 + syst_JES_EtaIntercalibration_Stat59: 3.15344669e+00 + syst_JES_EtaIntercalibration_Stat6: 6.03301939e-01 + syst_JES_EtaIntercalibration_Stat60: 2.97715351e+00 + syst_JES_EtaIntercalibration_Stat61: 2.62822393e-01 + syst_JES_EtaIntercalibration_Stat62: 7.48592359e-03 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 - syst_JES_EtaIntercalibration_Stat69: 0.007726541399617297 - syst_JES_EtaIntercalibration_Stat7: 0.056420821511211625 - syst_JES_EtaIntercalibration_Stat70: 3.36238022091494 - syst_JES_EtaIntercalibration_Stat71: 13.181635217225516 - syst_JES_EtaIntercalibration_Stat72: 18.77718296230827 - syst_JES_EtaIntercalibration_Stat73: 6.3592521736050065 - syst_JES_EtaIntercalibration_Stat74: 0.3192090537563119 + syst_JES_EtaIntercalibration_Stat69: 7.72654140e-03 + syst_JES_EtaIntercalibration_Stat7: 5.64208215e-02 + syst_JES_EtaIntercalibration_Stat70: 3.36238022e+00 + syst_JES_EtaIntercalibration_Stat71: 1.31816352e+01 + syst_JES_EtaIntercalibration_Stat72: 1.87771830e+01 + syst_JES_EtaIntercalibration_Stat73: 6.35925217e+00 + syst_JES_EtaIntercalibration_Stat74: 3.19209054e-01 syst_JES_EtaIntercalibration_Stat75: 0.0 syst_JES_EtaIntercalibration_Stat76: 0.0 syst_JES_EtaIntercalibration_Stat77: 0.0 syst_JES_EtaIntercalibration_Stat78: 0.0 - syst_JES_EtaIntercalibration_Stat79: 0.16574406414710602 + syst_JES_EtaIntercalibration_Stat79: 1.65744064e-01 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 5.733820781119688 - syst_JES_EtaIntercalibration_Stat81: 18.45078047129714 - syst_JES_EtaIntercalibration_Stat82: 15.622966267645849 - syst_JES_EtaIntercalibration_Stat83: 3.5517906399448713 - syst_JES_EtaIntercalibration_Stat84: 0.03388813472293806 - syst_JES_EtaIntercalibration_Stat85: 0.00938684935161953 - syst_JES_EtaIntercalibration_Stat86: 0.00938684935161953 - syst_JES_EtaIntercalibration_Stat87: 0.00938684935161953 - syst_JES_EtaIntercalibration_Stat88: 0.00938684935161953 - syst_JES_EtaIntercalibration_Stat89: 0.00938684935161953 + syst_JES_EtaIntercalibration_Stat80: 5.73382078e+00 + syst_JES_EtaIntercalibration_Stat81: 1.84507805e+01 + syst_JES_EtaIntercalibration_Stat82: 1.56229663e+01 + syst_JES_EtaIntercalibration_Stat83: 3.55179064e+00 + syst_JES_EtaIntercalibration_Stat84: 3.38881347e-02 + syst_JES_EtaIntercalibration_Stat85: 9.38684935e-03 + syst_JES_EtaIntercalibration_Stat86: 9.38684935e-03 + syst_JES_EtaIntercalibration_Stat87: 9.38684935e-03 + syst_JES_EtaIntercalibration_Stat88: 9.38684935e-03 + syst_JES_EtaIntercalibration_Stat89: 9.38684935e-03 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 3.6527690865971807 - syst_JES_EtaIntercalibration_Stat92: 15.005050216510439 - syst_JES_EtaIntercalibration_Stat93: 18.69135361604397 - syst_JES_EtaIntercalibration_Stat94: 6.48815050688561 - syst_JES_EtaIntercalibration_Stat95: 0.3939497778905326 - syst_JES_EtaIntercalibration_Stat96: 0.009431394869662706 - syst_JES_EtaIntercalibration_Stat97: 0.00938684935161953 - syst_JES_EtaIntercalibration_Stat98: 0.00938684935161953 - syst_JES_EtaIntercalibration_Stat99: 0.00938684935161953 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.004939808903186438 - syst_JES_Flavour_Comp: 21.190834693329094 - syst_JES_Flavour_Response: 355.26500767033053 - syst_JES_Gjet_Generator: 183.14001446980396 - syst_JES_Gjet_OOC: 117.80819036892129 - syst_JES_Gjet_Purity: 48.51243209735005 + syst_JES_EtaIntercalibration_Stat91: 3.65276909e+00 + syst_JES_EtaIntercalibration_Stat92: 1.50050502e+01 + syst_JES_EtaIntercalibration_Stat93: 1.86913536e+01 + syst_JES_EtaIntercalibration_Stat94: 6.48815051e+00 + syst_JES_EtaIntercalibration_Stat95: 3.93949778e-01 + syst_JES_EtaIntercalibration_Stat96: 9.43139487e-03 + syst_JES_EtaIntercalibration_Stat97: 9.38684935e-03 + syst_JES_EtaIntercalibration_Stat98: 9.38684935e-03 + syst_JES_EtaIntercalibration_Stat99: 9.38684935e-03 + syst_JES_EtaIntercalibration_TotalStat_MJB: 4.93980890e-03 + syst_JES_Flavour_Comp: 2.11908347e+01 + syst_JES_Flavour_Response: 3.55265008e+02 + syst_JES_Gjet_Generator: 1.83140014e+02 + syst_JES_Gjet_OOC: 1.17808190e+02 + syst_JES_Gjet_Purity: 4.85124321e+01 syst_JES_Gjet_Stat1: 0.0 - syst_JES_Gjet_Stat10: 1.3918540036584297 - syst_JES_Gjet_Stat11: 0.20537473718790245 - syst_JES_Gjet_Stat12: 0.020457044630151248 - syst_JES_Gjet_Stat13: 3.8705693056706794e-05 - syst_JES_Gjet_Stat14: 2.3543498040860454e-28 - syst_JES_Gjet_Stat15: 7.03732243115453e-17 - syst_JES_Gjet_Stat2: 1.4575207545692104 + syst_JES_Gjet_Stat10: 1.39185400e+00 + syst_JES_Gjet_Stat11: 2.05374737e-01 + syst_JES_Gjet_Stat12: 2.04570446e-02 + syst_JES_Gjet_Stat13: 3.87056931e-05 + syst_JES_Gjet_Stat14: 2.35434980e-28 + syst_JES_Gjet_Stat15: 7.03732243e-17 + syst_JES_Gjet_Stat2: 1.45752075e+00 syst_JES_Gjet_Stat3: 0.0 - syst_JES_Gjet_Stat4: 1.3968989763042996 - syst_JES_Gjet_Stat5: 5.44114206761779 - syst_JES_Gjet_Stat6: 14.227234473009856 - syst_JES_Gjet_Stat7: 20.292358167546716 - syst_JES_Gjet_Stat8: 5.366331707973334 - syst_JES_Gjet_Stat9: 0.28189817310511256 - syst_JES_Gjet_Veto: 33.91599143471999 - syst_JES_Gjet_dPhi: 22.21409631292707 - syst_JES_LArESZee: 109.67520394669891 - syst_JES_LArEsmear: 11.249661417127184 - syst_JES_LAr_JVT: 20.578753606572 - syst_JES_MJB_Alpha: 4.4929397948336674e-08 - syst_JES_MJB_Asym: 1.7606296458937638e-37 - syst_JES_MJB_Beta: 1.2220484472802214e-28 - syst_JES_MJB_Fragmentation: 6.50904693484384e-37 - syst_JES_MJB_Stat1: 0.0004360437908054649 + syst_JES_Gjet_Stat4: 1.39689898e+00 + syst_JES_Gjet_Stat5: 5.44114207e+00 + syst_JES_Gjet_Stat6: 1.42272345e+01 + syst_JES_Gjet_Stat7: 2.02923582e+01 + syst_JES_Gjet_Stat8: 5.36633171e+00 + syst_JES_Gjet_Stat9: 2.81898173e-01 + syst_JES_Gjet_Veto: 3.39159914e+01 + syst_JES_Gjet_dPhi: 2.22140963e+01 + syst_JES_LArESZee: 1.09675204e+02 + syst_JES_LArEsmear: 1.12496614e+01 + syst_JES_LAr_JVT: 2.05787536e+01 + syst_JES_MJB_Alpha: 4.49293979e-08 + syst_JES_MJB_Asym: 1.76062965e-37 + syst_JES_MJB_Beta: 1.22204845e-28 + syst_JES_MJB_Fragmentation: 6.50904693e-37 + syst_JES_MJB_Stat1: 4.36043791e-04 syst_JES_MJB_Stat10: 0.0 syst_JES_MJB_Stat11: 0.0 syst_JES_MJB_Stat12: 0.0 @@ -33998,212 +33998,212 @@ bins: syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 6.008484251456436e-08 - syst_JES_MJB_Stat3: 2.5989422367571005e-15 - syst_JES_MJB_Stat4: 8.019395239043901e-29 + syst_JES_MJB_Stat2: 6.00848425e-08 + syst_JES_MJB_Stat3: 2.59894224e-15 + syst_JES_MJB_Stat4: 8.01939524e-29 syst_JES_MJB_Stat5: 0.0 syst_JES_MJB_Stat6: 0.0 syst_JES_MJB_Stat7: 0.0 syst_JES_MJB_Stat8: 0.0 syst_JES_MJB_Stat9: 0.0 - syst_JES_MJB_Threshold: 6.547152052610356e-10 - syst_JES_Pileup_MuOffset: 6.1505124176770834e-37 - syst_JES_Pileup_NPVOffset: 14.288209081266974 - syst_JES_Pileup_Pt_term: 48.246614005544465 - syst_JES_Pileup_Rho_topology: 106.30485201062085 - syst_JES_PunchThrough_MC15: 0.306313185318556 + syst_JES_MJB_Threshold: 6.54715205e-10 + syst_JES_Pileup_MuOffset: 6.15051242e-37 + syst_JES_Pileup_NPVOffset: 1.42882091e+01 + syst_JES_Pileup_Pt_term: 4.82466140e+01 + syst_JES_Pileup_Rho_topology: 1.06304852e+02 + syst_JES_PunchThrough_MC15: 3.06313185e-01 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 176.40004846938112 - syst_JES_Zjet_MuScale: 12.329006569874151 - syst_JES_Zjet_MuSmearID: 2.7109347244631326 - syst_JES_Zjet_MuSmearMS: 3.986305016867124 - syst_JES_Zjet_OOC: 122.3916935774238 - syst_JES_Zjet_Stat1: 3.5744502562911684 - syst_JES_Zjet_Stat10: 3.876941674825661 - syst_JES_Zjet_Stat11: 3.8337034715141964 - syst_JES_Zjet_Stat12: 0.7863796204760141 - syst_JES_Zjet_Stat13: 0.0008295292419009411 - syst_JES_Zjet_Stat2: 0.6127129731774904 - syst_JES_Zjet_Stat3: 0.3354462799359772 - syst_JES_Zjet_Stat4: 0.342729553584463 - syst_JES_Zjet_Stat5: 0.023642493523315176 - syst_JES_Zjet_Stat6: 5.845490740733407 - syst_JES_Zjet_Stat7: 9.555255451844289 - syst_JES_Zjet_Stat8: 16.482665894812037 - syst_JES_Zjet_Stat9: 19.723566487833786 - syst_JES_Zjet_Veto: 18.140542990770697 - syst_JES_Zjet_dPhi: 28.475527650949683 - syst_PRW: 6.341e-09 + syst_JES_Zjet_MC: 1.76400048e+02 + syst_JES_Zjet_MuScale: 1.23290066e+01 + syst_JES_Zjet_MuSmearID: 2.71093472e+00 + syst_JES_Zjet_MuSmearMS: 3.98630502e+00 + syst_JES_Zjet_OOC: 1.22391694e+02 + syst_JES_Zjet_Stat1: 3.57445026e+00 + syst_JES_Zjet_Stat10: 3.87694167e+00 + syst_JES_Zjet_Stat11: 3.83370347e+00 + syst_JES_Zjet_Stat12: 7.86379620e-01 + syst_JES_Zjet_Stat13: 8.29529242e-04 + syst_JES_Zjet_Stat2: 6.12712973e-01 + syst_JES_Zjet_Stat3: 3.35446280e-01 + syst_JES_Zjet_Stat4: 3.42729554e-01 + syst_JES_Zjet_Stat5: 2.36424935e-02 + syst_JES_Zjet_Stat6: 5.84549074e+00 + syst_JES_Zjet_Stat7: 9.55525545e+00 + syst_JES_Zjet_Stat8: 1.64826659e+01 + syst_JES_Zjet_Stat9: 1.97235665e+01 + syst_JES_Zjet_Veto: 1.81405430e+01 + syst_JES_Zjet_dPhi: 2.84755277e+01 + syst_PRW: 6.34100000e-09 syst_Unfolding_bias: 4.324 - syst_cleaning: 82.76085168725609 + syst_cleaning: 8.27608517e+01 syst_lumi: 173.13 - stat: 38.84 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 99.35424224460674 - syst_JER_NP1: 15.050397835273326 - syst_JER_NP2: 4.358149005024955 - syst_JER_NP3: 21.75335146592359 - syst_JER_NP4: 2.4000066666574074 - syst_JER_NP5: 6.325709821830275 - syst_JER_NP6: 9.641006210453346 - syst_JER_NP7: 3.207771305751082 - syst_JER_NP8: 11.952700197026612 - syst_JES_EtaIntercalibration_Modelling: 109.58819642073684 - syst_JES_EtaIntercalibration_NonClosure: 6.869313502818167e-28 - syst_JES_EtaIntercalibration_Stat0: 0.003232006806923525 + syst_JER_NP0: 9.93542422e+01 + syst_JER_NP1: 1.50503978e+01 + syst_JER_NP2: 4.35814901e+00 + syst_JER_NP3: 2.17533515e+01 + syst_JER_NP4: 2.40000667e+00 + syst_JER_NP5: 6.32570982e+00 + syst_JER_NP6: 9.64100621e+00 + syst_JER_NP7: 3.20777131e+00 + syst_JER_NP8: 1.19527002e+01 + syst_JES_EtaIntercalibration_Modelling: 1.09588196e+02 + syst_JES_EtaIntercalibration_NonClosure: 6.86931350e-28 + syst_JES_EtaIntercalibration_Stat0: 3.23200681e-03 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 0.103543487099624 - syst_JES_EtaIntercalibration_Stat101: 2.2638875303336072 - syst_JES_EtaIntercalibration_Stat102: 8.083027403145435 - syst_JES_EtaIntercalibration_Stat103: 6.870363673052541 - syst_JES_EtaIntercalibration_Stat104: 1.143248993001962 - syst_JES_EtaIntercalibration_Stat105: 0.010641500176196963 - syst_JES_EtaIntercalibration_Stat106: 0.003232006806923525 - syst_JES_EtaIntercalibration_Stat107: 0.003232006806923525 - syst_JES_EtaIntercalibration_Stat108: 0.003232006806923525 - syst_JES_EtaIntercalibration_Stat109: 0.003232006806923525 + syst_JES_EtaIntercalibration_Stat100: 1.03543487e-01 + syst_JES_EtaIntercalibration_Stat101: 2.26388753e+00 + syst_JES_EtaIntercalibration_Stat102: 8.08302740e+00 + syst_JES_EtaIntercalibration_Stat103: 6.87036367e+00 + syst_JES_EtaIntercalibration_Stat104: 1.14324899e+00 + syst_JES_EtaIntercalibration_Stat105: 1.06415002e-02 + syst_JES_EtaIntercalibration_Stat106: 3.23200681e-03 + syst_JES_EtaIntercalibration_Stat107: 3.23200681e-03 + syst_JES_EtaIntercalibration_Stat108: 3.23200681e-03 + syst_JES_EtaIntercalibration_Stat109: 3.23200681e-03 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 0.00973139363709022 - syst_JES_EtaIntercalibration_Stat111: 1.198005855578344 - syst_JES_EtaIntercalibration_Stat112: 7.268428630041021 - syst_JES_EtaIntercalibration_Stat113: 8.146977905947702 - syst_JES_EtaIntercalibration_Stat114: 1.7355877246627438 - syst_JES_EtaIntercalibration_Stat115: 0.09734258407808989 - syst_JES_EtaIntercalibration_Stat116: 0.004752991058270571 - syst_JES_EtaIntercalibration_Stat117: 0.003232006806923525 - syst_JES_EtaIntercalibration_Stat118: 0.003232006806923525 - syst_JES_EtaIntercalibration_Stat119: 0.003232006806923525 + syst_JES_EtaIntercalibration_Stat110: 9.73139364e-03 + syst_JES_EtaIntercalibration_Stat111: 1.19800586e+00 + syst_JES_EtaIntercalibration_Stat112: 7.26842863e+00 + syst_JES_EtaIntercalibration_Stat113: 8.14697791e+00 + syst_JES_EtaIntercalibration_Stat114: 1.73558772e+00 + syst_JES_EtaIntercalibration_Stat115: 9.73425841e-02 + syst_JES_EtaIntercalibration_Stat116: 4.75299106e-03 + syst_JES_EtaIntercalibration_Stat117: 3.23200681e-03 + syst_JES_EtaIntercalibration_Stat118: 3.23200681e-03 + syst_JES_EtaIntercalibration_Stat119: 3.23200681e-03 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 0.025946121097381782 - syst_JES_EtaIntercalibration_Stat121: 2.8925540185102854 - syst_JES_EtaIntercalibration_Stat122: 7.172535587224367 - syst_JES_EtaIntercalibration_Stat123: 6.168911147844488 - syst_JES_EtaIntercalibration_Stat124: 0.853545679796928 - syst_JES_EtaIntercalibration_Stat125: 0.009199787864402093 - syst_JES_EtaIntercalibration_Stat126: 0.003232006806923525 - syst_JES_EtaIntercalibration_Stat127: 0.003232006806923525 - syst_JES_EtaIntercalibration_Stat128: 0.003232006806923525 - syst_JES_EtaIntercalibration_Stat129: 0.08693083040555866 + syst_JES_EtaIntercalibration_Stat120: 2.59461211e-02 + syst_JES_EtaIntercalibration_Stat121: 2.89255402e+00 + syst_JES_EtaIntercalibration_Stat122: 7.17253559e+00 + syst_JES_EtaIntercalibration_Stat123: 6.16891115e+00 + syst_JES_EtaIntercalibration_Stat124: 8.53545680e-01 + syst_JES_EtaIntercalibration_Stat125: 9.19978786e-03 + syst_JES_EtaIntercalibration_Stat126: 3.23200681e-03 + syst_JES_EtaIntercalibration_Stat127: 3.23200681e-03 + syst_JES_EtaIntercalibration_Stat128: 3.23200681e-03 + syst_JES_EtaIntercalibration_Stat129: 8.69308304e-02 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 0.5685691925350862 - syst_JES_EtaIntercalibration_Stat131: 1.9812378756726816 - syst_JES_EtaIntercalibration_Stat132: 2.0352402192370316 - syst_JES_EtaIntercalibration_Stat133: 0.5585825878954697 - syst_JES_EtaIntercalibration_Stat134: 0.0587309279681498 - syst_JES_EtaIntercalibration_Stat135: 0.002570363398432214 + syst_JES_EtaIntercalibration_Stat130: 5.68569193e-01 + syst_JES_EtaIntercalibration_Stat131: 1.98123788e+00 + syst_JES_EtaIntercalibration_Stat132: 2.03524022e+00 + syst_JES_EtaIntercalibration_Stat133: 5.58582588e-01 + syst_JES_EtaIntercalibration_Stat134: 5.87309280e-02 + syst_JES_EtaIntercalibration_Stat135: 2.57036340e-03 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 syst_JES_EtaIntercalibration_Stat138: 0.0 - syst_JES_EtaIntercalibration_Stat139: 0.044860922713983495 - syst_JES_EtaIntercalibration_Stat14: 0.015414415939308243 - syst_JES_EtaIntercalibration_Stat140: 0.6215849961992326 - syst_JES_EtaIntercalibration_Stat141: 2.2182765269460885 - syst_JES_EtaIntercalibration_Stat142: 1.757795423250385 - syst_JES_EtaIntercalibration_Stat143: 0.4451347745346346 - syst_JES_EtaIntercalibration_Stat144: 0.0032915571889418844 + syst_JES_EtaIntercalibration_Stat139: 4.48609227e-02 + syst_JES_EtaIntercalibration_Stat14: 1.54144159e-02 + syst_JES_EtaIntercalibration_Stat140: 6.21584996e-01 + syst_JES_EtaIntercalibration_Stat141: 2.21827653e+00 + syst_JES_EtaIntercalibration_Stat142: 1.75779542e+00 + syst_JES_EtaIntercalibration_Stat143: 4.45134775e-01 + syst_JES_EtaIntercalibration_Stat144: 3.29155719e-03 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 1.2939993967154698e-05 - syst_JES_EtaIntercalibration_Stat148: 0.1394222065346837 - syst_JES_EtaIntercalibration_Stat149: 0.6616767847673061 - syst_JES_EtaIntercalibration_Stat15: 0.024762747182007088 - syst_JES_EtaIntercalibration_Stat150: 0.9816842262153345 - syst_JES_EtaIntercalibration_Stat151: 0.4137507311171788 - syst_JES_EtaIntercalibration_Stat152: 0.02528320193329951 + syst_JES_EtaIntercalibration_Stat147: 1.29399940e-05 + syst_JES_EtaIntercalibration_Stat148: 1.39422207e-01 + syst_JES_EtaIntercalibration_Stat149: 6.61676785e-01 + syst_JES_EtaIntercalibration_Stat15: 2.47627472e-02 + syst_JES_EtaIntercalibration_Stat150: 9.81684226e-01 + syst_JES_EtaIntercalibration_Stat151: 4.13750731e-01 + syst_JES_EtaIntercalibration_Stat152: 2.52832019e-02 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 syst_JES_EtaIntercalibration_Stat156: 0.0 - syst_JES_EtaIntercalibration_Stat157: 0.00021226291895924026 - syst_JES_EtaIntercalibration_Stat158: 0.2852293287865047 - syst_JES_EtaIntercalibration_Stat159: 1.0412021453589115 - syst_JES_EtaIntercalibration_Stat16: 0.03360932590814639 - syst_JES_EtaIntercalibration_Stat160: 0.6597764223583622 - syst_JES_EtaIntercalibration_Stat161: 0.12217381184198191 - syst_JES_EtaIntercalibration_Stat162: 0.001984053025375078 + syst_JES_EtaIntercalibration_Stat157: 2.12262919e-04 + syst_JES_EtaIntercalibration_Stat158: 2.85229329e-01 + syst_JES_EtaIntercalibration_Stat159: 1.04120215e+00 + syst_JES_EtaIntercalibration_Stat16: 3.36093259e-02 + syst_JES_EtaIntercalibration_Stat160: 6.59776422e-01 + syst_JES_EtaIntercalibration_Stat161: 1.22173812e-01 + syst_JES_EtaIntercalibration_Stat162: 1.98405303e-03 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 2.633583215591445e-08 - syst_JES_EtaIntercalibration_Stat166: 0.004957575692815996 - syst_JES_EtaIntercalibration_Stat167: 0.0173043137685376 - syst_JES_EtaIntercalibration_Stat168: 0.06379070680749666 - syst_JES_EtaIntercalibration_Stat169: 0.045278402136117835 - syst_JES_EtaIntercalibration_Stat17: 0.0025998082621608845 - syst_JES_EtaIntercalibration_Stat170: 0.007058107040843174 + syst_JES_EtaIntercalibration_Stat165: 2.63358322e-08 + syst_JES_EtaIntercalibration_Stat166: 4.95757569e-03 + syst_JES_EtaIntercalibration_Stat167: 1.73043138e-02 + syst_JES_EtaIntercalibration_Stat168: 6.37907068e-02 + syst_JES_EtaIntercalibration_Stat169: 4.52784021e-02 + syst_JES_EtaIntercalibration_Stat17: 2.59980826e-03 + syst_JES_EtaIntercalibration_Stat170: 7.05810704e-03 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 - syst_JES_EtaIntercalibration_Stat175: 2.8163146131069947e-05 - syst_JES_EtaIntercalibration_Stat176: 0.0051043890447339535 - syst_JES_EtaIntercalibration_Stat177: 0.007203239041396586 - syst_JES_EtaIntercalibration_Stat178: 0.013550291509779412 - syst_JES_EtaIntercalibration_Stat179: 0.0009103196732467118 + syst_JES_EtaIntercalibration_Stat175: 2.81631461e-05 + syst_JES_EtaIntercalibration_Stat176: 5.10438904e-03 + syst_JES_EtaIntercalibration_Stat177: 7.20323904e-03 + syst_JES_EtaIntercalibration_Stat178: 1.35502915e-02 + syst_JES_EtaIntercalibration_Stat179: 9.10319673e-04 syst_JES_EtaIntercalibration_Stat18: 0.0 - syst_JES_EtaIntercalibration_Stat180: 1.0670759837987171e-05 + syst_JES_EtaIntercalibration_Stat180: 1.06707598e-05 syst_JES_EtaIntercalibration_Stat181: 0.0 - syst_JES_EtaIntercalibration_Stat182: 2.241273583307231e-08 - syst_JES_EtaIntercalibration_Stat183: 2.8656634048680595e-05 - syst_JES_EtaIntercalibration_Stat184: 0.0016984829076266857 - syst_JES_EtaIntercalibration_Stat185: 0.0031809135087266993 - syst_JES_EtaIntercalibration_Stat186: 0.00047228811122025925 - syst_JES_EtaIntercalibration_Stat187: 2.029600249498967e-11 + syst_JES_EtaIntercalibration_Stat182: 2.24127358e-08 + syst_JES_EtaIntercalibration_Stat183: 2.86566340e-05 + syst_JES_EtaIntercalibration_Stat184: 1.69848291e-03 + syst_JES_EtaIntercalibration_Stat185: 3.18091351e-03 + syst_JES_EtaIntercalibration_Stat186: 4.72288111e-04 + syst_JES_EtaIntercalibration_Stat187: 2.02960025e-11 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 - syst_JES_EtaIntercalibration_Stat192: 6.653673177275841e-08 - syst_JES_EtaIntercalibration_Stat193: 0.001086022914122902 - syst_JES_EtaIntercalibration_Stat194: 0.003950898220658183 - syst_JES_EtaIntercalibration_Stat195: 0.002837278052993749 - syst_JES_EtaIntercalibration_Stat196: 0.00017675555313635406 - syst_JES_EtaIntercalibration_Stat197: 8.253422627461895e-06 - syst_JES_EtaIntercalibration_Stat198: 5.1244048978076475e-06 - syst_JES_EtaIntercalibration_Stat199: 9.878737166257638e-06 + syst_JES_EtaIntercalibration_Stat192: 6.65367318e-08 + syst_JES_EtaIntercalibration_Stat193: 1.08602291e-03 + syst_JES_EtaIntercalibration_Stat194: 3.95089822e-03 + syst_JES_EtaIntercalibration_Stat195: 2.83727805e-03 + syst_JES_EtaIntercalibration_Stat196: 1.76755553e-04 + syst_JES_EtaIntercalibration_Stat197: 8.25342263e-06 + syst_JES_EtaIntercalibration_Stat198: 5.12440490e-06 + syst_JES_EtaIntercalibration_Stat199: 9.87873717e-06 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 1.1216460348523503e-05 - syst_JES_EtaIntercalibration_Stat201: 7.326664456265211e-06 - syst_JES_EtaIntercalibration_Stat202: 6.607773778913745e-20 + syst_JES_EtaIntercalibration_Stat200: 1.12164603e-05 + syst_JES_EtaIntercalibration_Stat201: 7.32666446e-06 + syst_JES_EtaIntercalibration_Stat202: 6.60777378e-20 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 - syst_JES_EtaIntercalibration_Stat207: 6.680519985037947e-08 - syst_JES_EtaIntercalibration_Stat208: 3.3031100083856896e-08 - syst_JES_EtaIntercalibration_Stat209: 1.1093668318009153e-05 + syst_JES_EtaIntercalibration_Stat207: 6.68051999e-08 + syst_JES_EtaIntercalibration_Stat208: 3.30311001e-08 + syst_JES_EtaIntercalibration_Stat209: 1.10936683e-05 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 4.70861784844555e-06 - syst_JES_EtaIntercalibration_Stat211: 2.107039807416956e-08 - syst_JES_EtaIntercalibration_Stat212: 1.1437318566866974e-15 - syst_JES_EtaIntercalibration_Stat213: 1.993239253075255e-15 - syst_JES_EtaIntercalibration_Stat214: 9.877866593458565e-16 - syst_JES_EtaIntercalibration_Stat215: 3.837358564168847e-27 + syst_JES_EtaIntercalibration_Stat210: 4.70861785e-06 + syst_JES_EtaIntercalibration_Stat211: 2.10703981e-08 + syst_JES_EtaIntercalibration_Stat212: 1.14373186e-15 + syst_JES_EtaIntercalibration_Stat213: 1.99323925e-15 + syst_JES_EtaIntercalibration_Stat214: 9.87786659e-16 + syst_JES_EtaIntercalibration_Stat215: 3.83735856e-27 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 syst_JES_EtaIntercalibration_Stat219: 0.0 - syst_JES_EtaIntercalibration_Stat22: 0.003232006806923525 - syst_JES_EtaIntercalibration_Stat220: 1.6852854357645174e-35 - syst_JES_EtaIntercalibration_Stat221: 7.729744804972543e-16 - syst_JES_EtaIntercalibration_Stat222: 1.0350225926184753e-11 - syst_JES_EtaIntercalibration_Stat223: 1.6258491958050723e-15 - syst_JES_EtaIntercalibration_Stat224: 2.6784652321805484e-36 - syst_JES_EtaIntercalibration_Stat225: 4.398175843460559e-36 + syst_JES_EtaIntercalibration_Stat22: 3.23200681e-03 + syst_JES_EtaIntercalibration_Stat220: 1.68528544e-35 + syst_JES_EtaIntercalibration_Stat221: 7.72974480e-16 + syst_JES_EtaIntercalibration_Stat222: 1.03502259e-11 + syst_JES_EtaIntercalibration_Stat223: 1.62584920e-15 + syst_JES_EtaIntercalibration_Stat224: 2.67846523e-36 + syst_JES_EtaIntercalibration_Stat225: 4.39817584e-36 syst_JES_EtaIntercalibration_Stat226: 0.0 syst_JES_EtaIntercalibration_Stat227: 0.0 syst_JES_EtaIntercalibration_Stat228: 0.0 syst_JES_EtaIntercalibration_Stat229: 0.0 - syst_JES_EtaIntercalibration_Stat23: 0.003232006806923525 + syst_JES_EtaIntercalibration_Stat23: 3.23200681e-03 syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 syst_JES_EtaIntercalibration_Stat232: 0.0 syst_JES_EtaIntercalibration_Stat233: 0.0 - syst_JES_EtaIntercalibration_Stat234: 5.717719541040816e-36 - syst_JES_EtaIntercalibration_Stat235: 5.4140517867859376e-36 + syst_JES_EtaIntercalibration_Stat234: 5.71771954e-36 + syst_JES_EtaIntercalibration_Stat235: 5.41405179e-36 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 @@ -34215,119 +34215,119 @@ bins: syst_JES_EtaIntercalibration_Stat243: 0.0 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 - syst_JES_EtaIntercalibration_Stat25: 0.001772754001546746 - syst_JES_EtaIntercalibration_Stat26: 0.025797213027767166 - syst_JES_EtaIntercalibration_Stat27: 0.09456683594553643 - syst_JES_EtaIntercalibration_Stat28: 0.20333537487363088 - syst_JES_EtaIntercalibration_Stat29: 0.06927002454164427 + syst_JES_EtaIntercalibration_Stat25: 1.77275400e-03 + syst_JES_EtaIntercalibration_Stat26: 2.57972130e-02 + syst_JES_EtaIntercalibration_Stat27: 9.45668359e-02 + syst_JES_EtaIntercalibration_Stat28: 2.03335375e-01 + syst_JES_EtaIntercalibration_Stat29: 6.92700245e-02 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 0.0043014854039040975 + syst_JES_EtaIntercalibration_Stat30: 4.30148540e-03 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 0.0052111209926464 - syst_JES_EtaIntercalibration_Stat36: 0.042118552622330226 - syst_JES_EtaIntercalibration_Stat37: 0.2324417346347252 - syst_JES_EtaIntercalibration_Stat38: 0.17364641171069445 - syst_JES_EtaIntercalibration_Stat39: 0.034858142674990586 - syst_JES_EtaIntercalibration_Stat4: 0.0024309333084229193 - syst_JES_EtaIntercalibration_Stat40: 0.006160904722522497 + syst_JES_EtaIntercalibration_Stat35: 5.21112099e-03 + syst_JES_EtaIntercalibration_Stat36: 4.21185526e-02 + syst_JES_EtaIntercalibration_Stat37: 2.32441735e-01 + syst_JES_EtaIntercalibration_Stat38: 1.73646412e-01 + syst_JES_EtaIntercalibration_Stat39: 3.48581427e-02 + syst_JES_EtaIntercalibration_Stat4: 2.43093331e-03 + syst_JES_EtaIntercalibration_Stat40: 6.16090472e-03 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 - syst_JES_EtaIntercalibration_Stat44: 0.003232006806923525 + syst_JES_EtaIntercalibration_Stat44: 3.23200681e-03 syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 - syst_JES_EtaIntercalibration_Stat47: 0.0017736200269505304 - syst_JES_EtaIntercalibration_Stat48: 0.0650010544145247 - syst_JES_EtaIntercalibration_Stat49: 0.9147307472693808 - syst_JES_EtaIntercalibration_Stat5: 0.048752042777713424 - syst_JES_EtaIntercalibration_Stat50: 0.912455198900198 - syst_JES_EtaIntercalibration_Stat51: 0.2704967790935781 - syst_JES_EtaIntercalibration_Stat52: 0.028363743031377224 + syst_JES_EtaIntercalibration_Stat47: 1.77362003e-03 + syst_JES_EtaIntercalibration_Stat48: 6.50010544e-02 + syst_JES_EtaIntercalibration_Stat49: 9.14730747e-01 + syst_JES_EtaIntercalibration_Stat5: 4.87520428e-02 + syst_JES_EtaIntercalibration_Stat50: 9.12455199e-01 + syst_JES_EtaIntercalibration_Stat51: 2.70496779e-01 + syst_JES_EtaIntercalibration_Stat52: 2.83637430e-02 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 syst_JES_EtaIntercalibration_Stat56: 0.0 - syst_JES_EtaIntercalibration_Stat57: 0.010509659877940865 - syst_JES_EtaIntercalibration_Stat58: 0.11951106517808299 - syst_JES_EtaIntercalibration_Stat59: 0.8072320670042785 - syst_JES_EtaIntercalibration_Stat6: 0.10626961277806558 - syst_JES_EtaIntercalibration_Stat60: 0.7447527643453229 - syst_JES_EtaIntercalibration_Stat61: 0.027855890413878356 - syst_JES_EtaIntercalibration_Stat62: 0.002652635811791736 + syst_JES_EtaIntercalibration_Stat57: 1.05096599e-02 + syst_JES_EtaIntercalibration_Stat58: 1.19511065e-01 + syst_JES_EtaIntercalibration_Stat59: 8.07232067e-01 + syst_JES_EtaIntercalibration_Stat6: 1.06269613e-01 + syst_JES_EtaIntercalibration_Stat60: 7.44752764e-01 + syst_JES_EtaIntercalibration_Stat61: 2.78558904e-02 + syst_JES_EtaIntercalibration_Stat62: 2.65263581e-03 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 - syst_JES_EtaIntercalibration_Stat69: 0.003084901416577198 - syst_JES_EtaIntercalibration_Stat7: 0.016416105750146716 - syst_JES_EtaIntercalibration_Stat70: 0.9958475586152732 - syst_JES_EtaIntercalibration_Stat71: 4.359314252264913 - syst_JES_EtaIntercalibration_Stat72: 5.40081945171286 - syst_JES_EtaIntercalibration_Stat73: 1.7868775748494914 - syst_JES_EtaIntercalibration_Stat74: 0.05342977069714973 + syst_JES_EtaIntercalibration_Stat69: 3.08490142e-03 + syst_JES_EtaIntercalibration_Stat7: 1.64161058e-02 + syst_JES_EtaIntercalibration_Stat70: 9.95847559e-01 + syst_JES_EtaIntercalibration_Stat71: 4.35931425e+00 + syst_JES_EtaIntercalibration_Stat72: 5.40081945e+00 + syst_JES_EtaIntercalibration_Stat73: 1.78687757e+00 + syst_JES_EtaIntercalibration_Stat74: 5.34297707e-02 syst_JES_EtaIntercalibration_Stat75: 0.0 syst_JES_EtaIntercalibration_Stat76: 0.0 syst_JES_EtaIntercalibration_Stat77: 0.0 syst_JES_EtaIntercalibration_Stat78: 0.0 - syst_JES_EtaIntercalibration_Stat79: 0.1000683851173786 + syst_JES_EtaIntercalibration_Stat79: 1.00068385e-01 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 1.891211516462397 - syst_JES_EtaIntercalibration_Stat81: 5.715205245658287 - syst_JES_EtaIntercalibration_Stat82: 4.541529588145385 - syst_JES_EtaIntercalibration_Stat83: 0.9467703734274747 - syst_JES_EtaIntercalibration_Stat84: 0.005782684908414084 - syst_JES_EtaIntercalibration_Stat85: 0.003232006806923525 - syst_JES_EtaIntercalibration_Stat86: 0.003232006806923525 - syst_JES_EtaIntercalibration_Stat87: 0.003232006806923525 - syst_JES_EtaIntercalibration_Stat88: 0.003232006806923525 - syst_JES_EtaIntercalibration_Stat89: 0.003232006806923525 + syst_JES_EtaIntercalibration_Stat80: 1.89121152e+00 + syst_JES_EtaIntercalibration_Stat81: 5.71520525e+00 + syst_JES_EtaIntercalibration_Stat82: 4.54152959e+00 + syst_JES_EtaIntercalibration_Stat83: 9.46770373e-01 + syst_JES_EtaIntercalibration_Stat84: 5.78268491e-03 + syst_JES_EtaIntercalibration_Stat85: 3.23200681e-03 + syst_JES_EtaIntercalibration_Stat86: 3.23200681e-03 + syst_JES_EtaIntercalibration_Stat87: 3.23200681e-03 + syst_JES_EtaIntercalibration_Stat88: 3.23200681e-03 + syst_JES_EtaIntercalibration_Stat89: 3.23200681e-03 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 1.3699311542920687 - syst_JES_EtaIntercalibration_Stat92: 6.40292331673588 - syst_JES_EtaIntercalibration_Stat93: 7.403764633617144 - syst_JES_EtaIntercalibration_Stat94: 2.248839867576169 - syst_JES_EtaIntercalibration_Stat95: 0.07256827681569956 - syst_JES_EtaIntercalibration_Stat96: 0.004752991058270571 - syst_JES_EtaIntercalibration_Stat97: 0.003232006806923525 - syst_JES_EtaIntercalibration_Stat98: 0.003232006806923525 - syst_JES_EtaIntercalibration_Stat99: 0.003232006806923525 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.004660082697764065 - syst_JES_Flavour_Comp: 9.438265452401728 - syst_JES_Flavour_Response: 154.84212185319598 - syst_JES_Gjet_Generator: 87.8341702684667 - syst_JES_Gjet_OOC: 54.034929008929026 - syst_JES_Gjet_Purity: 22.801754318472955 + syst_JES_EtaIntercalibration_Stat91: 1.36993115e+00 + syst_JES_EtaIntercalibration_Stat92: 6.40292332e+00 + syst_JES_EtaIntercalibration_Stat93: 7.40376463e+00 + syst_JES_EtaIntercalibration_Stat94: 2.24883987e+00 + syst_JES_EtaIntercalibration_Stat95: 7.25682768e-02 + syst_JES_EtaIntercalibration_Stat96: 4.75299106e-03 + syst_JES_EtaIntercalibration_Stat97: 3.23200681e-03 + syst_JES_EtaIntercalibration_Stat98: 3.23200681e-03 + syst_JES_EtaIntercalibration_Stat99: 3.23200681e-03 + syst_JES_EtaIntercalibration_TotalStat_MJB: 4.66008270e-03 + syst_JES_Flavour_Comp: 9.43826545e+00 + syst_JES_Flavour_Response: 1.54842122e+02 + syst_JES_Gjet_Generator: 8.78341703e+01 + syst_JES_Gjet_OOC: 5.40349290e+01 + syst_JES_Gjet_Purity: 2.28017543e+01 syst_JES_Gjet_Stat1: 0.0 - syst_JES_Gjet_Stat10: 0.8903157347256085 - syst_JES_Gjet_Stat11: 0.2449598742651539 - syst_JES_Gjet_Stat12: 0.0427925612694543 - syst_JES_Gjet_Stat13: 0.0007764210632768795 - syst_JES_Gjet_Stat14: 5.136148630053457e-19 - syst_JES_Gjet_Stat15: 1.3276169487589107e-11 - syst_JES_Gjet_Stat2: 0.5458558120053316 + syst_JES_Gjet_Stat10: 8.90315735e-01 + syst_JES_Gjet_Stat11: 2.44959874e-01 + syst_JES_Gjet_Stat12: 4.27925613e-02 + syst_JES_Gjet_Stat13: 7.76421063e-04 + syst_JES_Gjet_Stat14: 5.13614863e-19 + syst_JES_Gjet_Stat15: 1.32761695e-11 + syst_JES_Gjet_Stat2: 5.45855812e-01 syst_JES_Gjet_Stat3: 0.0 - syst_JES_Gjet_Stat4: 0.6482200147326524 - syst_JES_Gjet_Stat5: 1.80906633377552 - syst_JES_Gjet_Stat6: 5.447562574216105 - syst_JES_Gjet_Stat7: 8.717495210781593 - syst_JES_Gjet_Stat8: 3.013231280535897 - syst_JES_Gjet_Stat9: 0.9402434511869784 - syst_JES_Gjet_Veto: 17.368744197552108 - syst_JES_Gjet_dPhi: 10.575662851566324 - syst_JES_LArESZee: 56.01108515954676 - syst_JES_LArEsmear: 5.595886055844955 - syst_JES_LAr_JVT: 9.825749487952562 - syst_JES_MJB_Alpha: 1.024508052676991e-05 - syst_JES_MJB_Asym: 1.6844194044977413e-25 - syst_JES_MJB_Beta: 2.6664922182522868e-19 - syst_JES_MJB_Fragmentation: 6.227588666599239e-25 - syst_JES_MJB_Stat1: 0.008783229645181778 + syst_JES_Gjet_Stat4: 6.48220015e-01 + syst_JES_Gjet_Stat5: 1.80906633e+00 + syst_JES_Gjet_Stat6: 5.44756257e+00 + syst_JES_Gjet_Stat7: 8.71749521e+00 + syst_JES_Gjet_Stat8: 3.01323128e+00 + syst_JES_Gjet_Stat9: 9.40243451e-01 + syst_JES_Gjet_Veto: 1.73687442e+01 + syst_JES_Gjet_dPhi: 1.05756629e+01 + syst_JES_LArESZee: 5.60110852e+01 + syst_JES_LArEsmear: 5.59588606e+00 + syst_JES_LAr_JVT: 9.82574949e+00 + syst_JES_MJB_Alpha: 1.02450805e-05 + syst_JES_MJB_Asym: 1.68441940e-25 + syst_JES_MJB_Beta: 2.66649222e-19 + syst_JES_MJB_Fragmentation: 6.22758867e-25 + syst_JES_MJB_Stat1: 8.78322965e-03 syst_JES_MJB_Stat10: 0.0 syst_JES_MJB_Stat11: 0.0 syst_JES_MJB_Stat12: 0.0 @@ -34335,212 +34335,212 @@ bins: syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 1.3882387222664552e-05 - syst_JES_MJB_Stat3: 4.900837760016138e-10 - syst_JES_MJB_Stat4: 1.749371315644566e-19 + syst_JES_MJB_Stat2: 1.38823872e-05 + syst_JES_MJB_Stat3: 4.90083776e-10 + syst_JES_MJB_Stat4: 1.74937132e-19 syst_JES_MJB_Stat5: 0.0 syst_JES_MJB_Stat6: 0.0 syst_JES_MJB_Stat7: 0.0 syst_JES_MJB_Stat8: 0.0 syst_JES_MJB_Stat9: 0.0 - syst_JES_MJB_Threshold: 3.2328728323273093e-06 - syst_JES_Pileup_MuOffset: 5.883776585762622e-25 - syst_JES_Pileup_NPVOffset: 6.74259643979973 - syst_JES_Pileup_Pt_term: 23.907032438176007 - syst_JES_Pileup_Rho_topology: 47.206261300806275 - syst_JES_PunchThrough_MC15: 0.28890607470248875 + syst_JES_MJB_Threshold: 3.23287283e-06 + syst_JES_Pileup_MuOffset: 5.88377659e-25 + syst_JES_Pileup_NPVOffset: 6.74259644e+00 + syst_JES_Pileup_Pt_term: 2.39070324e+01 + syst_JES_Pileup_Rho_topology: 4.72062613e+01 + syst_JES_PunchThrough_MC15: 2.88906075e-01 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 80.94148053223391 - syst_JES_Zjet_MuScale: 5.816652882027602 - syst_JES_Zjet_MuSmearID: 0.8916608099496132 - syst_JES_Zjet_MuSmearMS: 2.6073387045031184 - syst_JES_Zjet_OOC: 49.57185900034414 - syst_JES_Zjet_Stat1: 1.066017814250775 - syst_JES_Zjet_Stat10: 5.0715177954927855 - syst_JES_Zjet_Stat11: 1.8779179960797008 - syst_JES_Zjet_Stat12: 0.7401452154813946 - syst_JES_Zjet_Stat13: 0.016410719758743062 - syst_JES_Zjet_Stat2: 0.10241616425154772 - syst_JES_Zjet_Stat3: 0.1603880732235267 - syst_JES_Zjet_Stat4: 0.16385218797348033 - syst_JES_Zjet_Stat5: 0.07796826710271301 - syst_JES_Zjet_Stat6: 2.1075556339038832 - syst_JES_Zjet_Stat7: 3.439921783994514 - syst_JES_Zjet_Stat8: 6.339361225707208 - syst_JES_Zjet_Stat9: 9.755255967938515 - syst_JES_Zjet_Veto: 7.591923076533376 - syst_JES_Zjet_dPhi: 11.57330707922329 - syst_PRW: 3.131e-05 + syst_JES_Zjet_MC: 8.09414805e+01 + syst_JES_Zjet_MuScale: 5.81665288e+00 + syst_JES_Zjet_MuSmearID: 8.91660810e-01 + syst_JES_Zjet_MuSmearMS: 2.60733870e+00 + syst_JES_Zjet_OOC: 4.95718590e+01 + syst_JES_Zjet_Stat1: 1.06601781e+00 + syst_JES_Zjet_Stat10: 5.07151780e+00 + syst_JES_Zjet_Stat11: 1.87791800e+00 + syst_JES_Zjet_Stat12: 7.40145215e-01 + syst_JES_Zjet_Stat13: 1.64107198e-02 + syst_JES_Zjet_Stat2: 1.02416164e-01 + syst_JES_Zjet_Stat3: 1.60388073e-01 + syst_JES_Zjet_Stat4: 1.63852188e-01 + syst_JES_Zjet_Stat5: 7.79682671e-02 + syst_JES_Zjet_Stat6: 2.10755563e+00 + syst_JES_Zjet_Stat7: 3.43992178e+00 + syst_JES_Zjet_Stat8: 6.33936123e+00 + syst_JES_Zjet_Stat9: 9.75525597e+00 + syst_JES_Zjet_Veto: 7.59192308e+00 + syst_JES_Zjet_dPhi: 1.15733071e+01 + syst_PRW: 3.13100000e-05 syst_Unfolding_bias: 19.01 - syst_cleaning: 33.86765546579804 + syst_cleaning: 3.38676555e+01 syst_lumi: 82.787 - stat: 14.485 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 41.20574179346853 - syst_JER_NP1: 5.541035710947909 - syst_JER_NP2: 1.964225228938881 - syst_JER_NP3: 8.654106193016123 - syst_JER_NP4: 1.1995033347181658 - syst_JER_NP5: 2.2500673323258575 - syst_JER_NP6: 3.5342887191060095 - syst_JER_NP7: 1.604140268181059 - syst_JER_NP8: 3.724469882748416 - syst_JES_EtaIntercalibration_Modelling: 48.88229414624481 - syst_JES_EtaIntercalibration_NonClosure: 1.1698271154320197e-19 - syst_JES_EtaIntercalibration_Stat0: 0.0007172422394142721 + syst_JER_NP0: 4.12057418e+01 + syst_JER_NP1: 5.54103571e+00 + syst_JER_NP2: 1.96422523e+00 + syst_JER_NP3: 8.65410619e+00 + syst_JER_NP4: 1.19950333e+00 + syst_JER_NP5: 2.25006733e+00 + syst_JER_NP6: 3.53428872e+00 + syst_JER_NP7: 1.60414027e+00 + syst_JER_NP8: 3.72446988e+00 + syst_JES_EtaIntercalibration_Modelling: 4.88822941e+01 + syst_JES_EtaIntercalibration_NonClosure: 1.16982712e-19 + syst_JES_EtaIntercalibration_Stat0: 7.17242239e-04 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 0.02687362586268366 - syst_JES_EtaIntercalibration_Stat101: 0.6868467569261719 - syst_JES_EtaIntercalibration_Stat102: 2.6284360368858133 - syst_JES_EtaIntercalibration_Stat103: 2.203913110809952 - syst_JES_EtaIntercalibration_Stat104: 0.4211200778875308 - syst_JES_EtaIntercalibration_Stat105: 0.0013856074588425107 - syst_JES_EtaIntercalibration_Stat106: 0.0007172422394142721 - syst_JES_EtaIntercalibration_Stat107: 0.0007172422394142721 - syst_JES_EtaIntercalibration_Stat108: 0.0007172422394142721 - syst_JES_EtaIntercalibration_Stat109: 0.0007172422394142721 + syst_JES_EtaIntercalibration_Stat100: 2.68736259e-02 + syst_JES_EtaIntercalibration_Stat101: 6.86846757e-01 + syst_JES_EtaIntercalibration_Stat102: 2.62843604e+00 + syst_JES_EtaIntercalibration_Stat103: 2.20391311e+00 + syst_JES_EtaIntercalibration_Stat104: 4.21120078e-01 + syst_JES_EtaIntercalibration_Stat105: 1.38560746e-03 + syst_JES_EtaIntercalibration_Stat106: 7.17242239e-04 + syst_JES_EtaIntercalibration_Stat107: 7.17242239e-04 + syst_JES_EtaIntercalibration_Stat108: 7.17242239e-04 + syst_JES_EtaIntercalibration_Stat109: 7.17242239e-04 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 0.004863812573485948 - syst_JES_EtaIntercalibration_Stat111: 0.9042761856866518 - syst_JES_EtaIntercalibration_Stat112: 5.516470066990304 - syst_JES_EtaIntercalibration_Stat113: 6.220142502386903 - syst_JES_EtaIntercalibration_Stat114: 1.4684388547025033 - syst_JES_EtaIntercalibration_Stat115: 0.05175154007370215 - syst_JES_EtaIntercalibration_Stat116: 0.008007354424527493 - syst_JES_EtaIntercalibration_Stat117: 0.0007172422394142721 - syst_JES_EtaIntercalibration_Stat118: 0.0007172422394142721 - syst_JES_EtaIntercalibration_Stat119: 0.0007172422394142721 + syst_JES_EtaIntercalibration_Stat110: 4.86381257e-03 + syst_JES_EtaIntercalibration_Stat111: 9.04276186e-01 + syst_JES_EtaIntercalibration_Stat112: 5.51647007e+00 + syst_JES_EtaIntercalibration_Stat113: 6.22014250e+00 + syst_JES_EtaIntercalibration_Stat114: 1.46843885e+00 + syst_JES_EtaIntercalibration_Stat115: 5.17515401e-02 + syst_JES_EtaIntercalibration_Stat116: 8.00735442e-03 + syst_JES_EtaIntercalibration_Stat117: 7.17242239e-04 + syst_JES_EtaIntercalibration_Stat118: 7.17242239e-04 + syst_JES_EtaIntercalibration_Stat119: 7.17242239e-04 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 0.01514678431218983 - syst_JES_EtaIntercalibration_Stat121: 2.0903279048991337 - syst_JES_EtaIntercalibration_Stat122: 5.370060334856584 - syst_JES_EtaIntercalibration_Stat123: 4.68680837564328 - syst_JES_EtaIntercalibration_Stat124: 0.7034160699756582 - syst_JES_EtaIntercalibration_Stat125: 0.01396032950900515 - syst_JES_EtaIntercalibration_Stat126: 0.0007172422394142721 - syst_JES_EtaIntercalibration_Stat127: 0.0007172422394142721 - syst_JES_EtaIntercalibration_Stat128: 0.0007172422394142721 - syst_JES_EtaIntercalibration_Stat129: 0.024670016214019805 + syst_JES_EtaIntercalibration_Stat120: 1.51467843e-02 + syst_JES_EtaIntercalibration_Stat121: 2.09032790e+00 + syst_JES_EtaIntercalibration_Stat122: 5.37006033e+00 + syst_JES_EtaIntercalibration_Stat123: 4.68680838e+00 + syst_JES_EtaIntercalibration_Stat124: 7.03416070e-01 + syst_JES_EtaIntercalibration_Stat125: 1.39603295e-02 + syst_JES_EtaIntercalibration_Stat126: 7.17242239e-04 + syst_JES_EtaIntercalibration_Stat127: 7.17242239e-04 + syst_JES_EtaIntercalibration_Stat128: 7.17242239e-04 + syst_JES_EtaIntercalibration_Stat129: 2.46700162e-02 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 1.0531143242782335 - syst_JES_EtaIntercalibration_Stat131: 2.1137116052101335 - syst_JES_EtaIntercalibration_Stat132: 3.8503237201565272 - syst_JES_EtaIntercalibration_Stat133: 0.9794634449534092 - syst_JES_EtaIntercalibration_Stat134: 0.03386742830508393 - syst_JES_EtaIntercalibration_Stat135: 0.0077396690336215285 + syst_JES_EtaIntercalibration_Stat130: 1.05311432e+00 + syst_JES_EtaIntercalibration_Stat131: 2.11371161e+00 + syst_JES_EtaIntercalibration_Stat132: 3.85032372e+00 + syst_JES_EtaIntercalibration_Stat133: 9.79463445e-01 + syst_JES_EtaIntercalibration_Stat134: 3.38674283e-02 + syst_JES_EtaIntercalibration_Stat135: 7.73966903e-03 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 syst_JES_EtaIntercalibration_Stat138: 0.0 - syst_JES_EtaIntercalibration_Stat139: 0.006902928708164383 - syst_JES_EtaIntercalibration_Stat14: 0.0067434433835763755 - syst_JES_EtaIntercalibration_Stat140: 1.1223651544840476 - syst_JES_EtaIntercalibration_Stat141: 3.3241580512965982 - syst_JES_EtaIntercalibration_Stat142: 1.4236397121463 - syst_JES_EtaIntercalibration_Stat143: 0.30928602862075744 - syst_JES_EtaIntercalibration_Stat144: 0.003925134742910108 + syst_JES_EtaIntercalibration_Stat139: 6.90292871e-03 + syst_JES_EtaIntercalibration_Stat14: 6.74344338e-03 + syst_JES_EtaIntercalibration_Stat140: 1.12236515e+00 + syst_JES_EtaIntercalibration_Stat141: 3.32415805e+00 + syst_JES_EtaIntercalibration_Stat142: 1.42363971e+00 + syst_JES_EtaIntercalibration_Stat143: 3.09286029e-01 + syst_JES_EtaIntercalibration_Stat144: 3.92513474e-03 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 0.00022455007352203203 - syst_JES_EtaIntercalibration_Stat148: 0.07708057472541315 - syst_JES_EtaIntercalibration_Stat149: 0.5162437868875519 - syst_JES_EtaIntercalibration_Stat15: 0.008402890975729722 - syst_JES_EtaIntercalibration_Stat150: 0.7017145929792253 - syst_JES_EtaIntercalibration_Stat151: 0.2582564810416188 - syst_JES_EtaIntercalibration_Stat152: 0.0158425755481866 + syst_JES_EtaIntercalibration_Stat147: 2.24550074e-04 + syst_JES_EtaIntercalibration_Stat148: 7.70805747e-02 + syst_JES_EtaIntercalibration_Stat149: 5.16243787e-01 + syst_JES_EtaIntercalibration_Stat15: 8.40289098e-03 + syst_JES_EtaIntercalibration_Stat150: 7.01714593e-01 + syst_JES_EtaIntercalibration_Stat151: 2.58256481e-01 + syst_JES_EtaIntercalibration_Stat152: 1.58425755e-02 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 syst_JES_EtaIntercalibration_Stat156: 0.0 - syst_JES_EtaIntercalibration_Stat157: 0.000737621478821455 - syst_JES_EtaIntercalibration_Stat158: 0.2105429409882934 - syst_JES_EtaIntercalibration_Stat159: 0.6978018128380006 - syst_JES_EtaIntercalibration_Stat16: 0.009248835061779403 - syst_JES_EtaIntercalibration_Stat160: 0.602732467600676 - syst_JES_EtaIntercalibration_Stat161: 0.14925366620287758 - syst_JES_EtaIntercalibration_Stat162: 0.0034534571200465197 + syst_JES_EtaIntercalibration_Stat157: 7.37621479e-04 + syst_JES_EtaIntercalibration_Stat158: 2.10542941e-01 + syst_JES_EtaIntercalibration_Stat159: 6.97801813e-01 + syst_JES_EtaIntercalibration_Stat16: 9.24883506e-03 + syst_JES_EtaIntercalibration_Stat160: 6.02732468e-01 + syst_JES_EtaIntercalibration_Stat161: 1.49253666e-01 + syst_JES_EtaIntercalibration_Stat162: 3.45345712e-03 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 4.880900593993656e-06 - syst_JES_EtaIntercalibration_Stat166: 0.017230905373775342 - syst_JES_EtaIntercalibration_Stat167: 0.07872433343636515 - syst_JES_EtaIntercalibration_Stat168: 0.1483232932507568 - syst_JES_EtaIntercalibration_Stat169: 0.07797070395347216 - syst_JES_EtaIntercalibration_Stat17: 0.0005867322110639572 - syst_JES_EtaIntercalibration_Stat170: 0.013917028238903456 + syst_JES_EtaIntercalibration_Stat165: 4.88090059e-06 + syst_JES_EtaIntercalibration_Stat166: 1.72309054e-02 + syst_JES_EtaIntercalibration_Stat167: 7.87243334e-02 + syst_JES_EtaIntercalibration_Stat168: 1.48323293e-01 + syst_JES_EtaIntercalibration_Stat169: 7.79707040e-02 + syst_JES_EtaIntercalibration_Stat17: 5.86732211e-04 + syst_JES_EtaIntercalibration_Stat170: 1.39170282e-02 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 - syst_JES_EtaIntercalibration_Stat175: 0.000518229601624608 - syst_JES_EtaIntercalibration_Stat176: 0.03396113182742884 - syst_JES_EtaIntercalibration_Stat177: 0.1120369421217841 - syst_JES_EtaIntercalibration_Stat178: 0.09255890921461857 - syst_JES_EtaIntercalibration_Stat179: 0.01942678159140108 + syst_JES_EtaIntercalibration_Stat175: 5.18229602e-04 + syst_JES_EtaIntercalibration_Stat176: 3.39611318e-02 + syst_JES_EtaIntercalibration_Stat177: 1.12036942e-01 + syst_JES_EtaIntercalibration_Stat178: 9.25589092e-02 + syst_JES_EtaIntercalibration_Stat179: 1.94267816e-02 syst_JES_EtaIntercalibration_Stat18: 0.0 - syst_JES_EtaIntercalibration_Stat180: 0.00019087068678820223 + syst_JES_EtaIntercalibration_Stat180: 1.90870687e-04 syst_JES_EtaIntercalibration_Stat181: 0.0 - syst_JES_EtaIntercalibration_Stat182: 4.165501946700181e-06 - syst_JES_EtaIntercalibration_Stat183: 0.0004612922148703574 - syst_JES_EtaIntercalibration_Stat184: 0.003440814293157944 - syst_JES_EtaIntercalibration_Stat185: 0.0015263706070283193 - syst_JES_EtaIntercalibration_Stat186: 0.0021824075581797276 - syst_JES_EtaIntercalibration_Stat187: 4.3859966569840204e-08 + syst_JES_EtaIntercalibration_Stat182: 4.16550195e-06 + syst_JES_EtaIntercalibration_Stat183: 4.61292215e-04 + syst_JES_EtaIntercalibration_Stat184: 3.44081429e-03 + syst_JES_EtaIntercalibration_Stat185: 1.52637061e-03 + syst_JES_EtaIntercalibration_Stat186: 2.18240756e-03 + syst_JES_EtaIntercalibration_Stat187: 4.38599666e-08 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 - syst_JES_EtaIntercalibration_Stat192: 1.053606506244148e-05 - syst_JES_EtaIntercalibration_Stat193: 0.0009438409098333257 - syst_JES_EtaIntercalibration_Stat194: 0.004481134315103711 - syst_JES_EtaIntercalibration_Stat195: 0.004145482722192917 - syst_JES_EtaIntercalibration_Stat196: 0.009593326656479648 - syst_JES_EtaIntercalibration_Stat197: 0.00014717556692603564 - syst_JES_EtaIntercalibration_Stat198: 8.35508831596052e-05 - syst_JES_EtaIntercalibration_Stat199: 0.000187636530291945 + syst_JES_EtaIntercalibration_Stat192: 1.05360651e-05 + syst_JES_EtaIntercalibration_Stat193: 9.43840910e-04 + syst_JES_EtaIntercalibration_Stat194: 4.48113432e-03 + syst_JES_EtaIntercalibration_Stat195: 4.14548272e-03 + syst_JES_EtaIntercalibration_Stat196: 9.59332666e-03 + syst_JES_EtaIntercalibration_Stat197: 1.47175567e-04 + syst_JES_EtaIntercalibration_Stat198: 8.35508832e-05 + syst_JES_EtaIntercalibration_Stat199: 1.87636530e-04 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 0.00021554194487384583 - syst_JES_EtaIntercalibration_Stat201: 0.0001360251119279084 - syst_JES_EtaIntercalibration_Stat202: 1.3025013225049123e-13 + syst_JES_EtaIntercalibration_Stat200: 2.15541945e-04 + syst_JES_EtaIntercalibration_Stat201: 1.36025112e-04 + syst_JES_EtaIntercalibration_Stat202: 1.30250132e-13 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 - syst_JES_EtaIntercalibration_Stat207: 1.029272196413841e-05 - syst_JES_EtaIntercalibration_Stat208: 4.434433678693594e-06 - syst_JES_EtaIntercalibration_Stat209: 0.0002132304387276826 + syst_JES_EtaIntercalibration_Stat207: 1.02927220e-05 + syst_JES_EtaIntercalibration_Stat208: 4.43443368e-06 + syst_JES_EtaIntercalibration_Stat209: 2.13230439e-04 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 8.334032802311255e-05 - syst_JES_EtaIntercalibration_Stat211: 3.3619108031093438e-06 - syst_JES_EtaIntercalibration_Stat212: 5.675450554801795e-11 - syst_JES_EtaIntercalibration_Stat213: 9.892387578335171e-11 - syst_JES_EtaIntercalibration_Stat214: 4.899594119682689e-11 - syst_JES_EtaIntercalibration_Stat215: 6.535027696957364e-19 + syst_JES_EtaIntercalibration_Stat210: 8.33403280e-05 + syst_JES_EtaIntercalibration_Stat211: 3.36191080e-06 + syst_JES_EtaIntercalibration_Stat212: 5.67545055e-11 + syst_JES_EtaIntercalibration_Stat213: 9.89238758e-11 + syst_JES_EtaIntercalibration_Stat214: 4.89959412e-11 + syst_JES_EtaIntercalibration_Stat215: 6.53502770e-19 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 syst_JES_EtaIntercalibration_Stat219: 0.0 - syst_JES_EtaIntercalibration_Stat22: 0.0007172422394142721 - syst_JES_EtaIntercalibration_Stat220: 4.964057614492402e-25 - syst_JES_EtaIntercalibration_Stat221: 3.8355205200858984e-11 - syst_JES_EtaIntercalibration_Stat222: 2.2456868330486334e-08 - syst_JES_EtaIntercalibration_Stat223: 8.06636919561707e-11 - syst_JES_EtaIntercalibration_Stat224: 7.888365229881283e-26 - syst_JES_EtaIntercalibration_Stat225: 1.2952447915355616e-25 - syst_JES_EtaIntercalibration_Stat226: 7.173288419546506e-42 + syst_JES_EtaIntercalibration_Stat22: 7.17242239e-04 + syst_JES_EtaIntercalibration_Stat220: 4.96405761e-25 + syst_JES_EtaIntercalibration_Stat221: 3.83552052e-11 + syst_JES_EtaIntercalibration_Stat222: 2.24568683e-08 + syst_JES_EtaIntercalibration_Stat223: 8.06636920e-11 + syst_JES_EtaIntercalibration_Stat224: 7.88836523e-26 + syst_JES_EtaIntercalibration_Stat225: 1.29524479e-25 + syst_JES_EtaIntercalibration_Stat226: 7.17328842e-42 syst_JES_EtaIntercalibration_Stat227: 0.0 syst_JES_EtaIntercalibration_Stat228: 0.0 syst_JES_EtaIntercalibration_Stat229: 0.0 - syst_JES_EtaIntercalibration_Stat23: 0.0007172422394142721 + syst_JES_EtaIntercalibration_Stat23: 7.17242239e-04 syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 syst_JES_EtaIntercalibration_Stat232: 0.0 - syst_JES_EtaIntercalibration_Stat233: 7.550009470192737e-33 - syst_JES_EtaIntercalibration_Stat234: 1.684371099253368e-25 - syst_JES_EtaIntercalibration_Stat235: 1.5950350309632703e-25 + syst_JES_EtaIntercalibration_Stat233: 7.55000947e-33 + syst_JES_EtaIntercalibration_Stat234: 1.68437110e-25 + syst_JES_EtaIntercalibration_Stat235: 1.59503503e-25 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 @@ -34552,332 +34552,332 @@ bins: syst_JES_EtaIntercalibration_Stat243: 0.0 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 - syst_JES_EtaIntercalibration_Stat25: 0.00050142870879119 - syst_JES_EtaIntercalibration_Stat26: 0.00887414293044686 - syst_JES_EtaIntercalibration_Stat27: 0.017081424669798475 - syst_JES_EtaIntercalibration_Stat28: 0.029466456777155953 - syst_JES_EtaIntercalibration_Stat29: 0.015020000890479335 + syst_JES_EtaIntercalibration_Stat25: 5.01428709e-04 + syst_JES_EtaIntercalibration_Stat26: 8.87414293e-03 + syst_JES_EtaIntercalibration_Stat27: 1.70814247e-02 + syst_JES_EtaIntercalibration_Stat28: 2.94664568e-02 + syst_JES_EtaIntercalibration_Stat29: 1.50200009e-02 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 0.0016586635305269118 + syst_JES_EtaIntercalibration_Stat30: 1.65866353e-03 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 0.0010634380658975867 - syst_JES_EtaIntercalibration_Stat36: 0.01834396562905633 - syst_JES_EtaIntercalibration_Stat37: 0.04242111511971367 - syst_JES_EtaIntercalibration_Stat38: 0.03135347349178397 - syst_JES_EtaIntercalibration_Stat39: 0.008414018941623557 - syst_JES_EtaIntercalibration_Stat4: 0.0006875375680644659 - syst_JES_EtaIntercalibration_Stat40: 0.0008023725366062824 + syst_JES_EtaIntercalibration_Stat35: 1.06343807e-03 + syst_JES_EtaIntercalibration_Stat36: 1.83439656e-02 + syst_JES_EtaIntercalibration_Stat37: 4.24211151e-02 + syst_JES_EtaIntercalibration_Stat38: 3.13534735e-02 + syst_JES_EtaIntercalibration_Stat39: 8.41401894e-03 + syst_JES_EtaIntercalibration_Stat4: 6.87537568e-04 + syst_JES_EtaIntercalibration_Stat40: 8.02372537e-04 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 - syst_JES_EtaIntercalibration_Stat44: 0.0007172422394142721 + syst_JES_EtaIntercalibration_Stat44: 7.17242239e-04 syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 - syst_JES_EtaIntercalibration_Stat47: 0.0005016885164123254 - syst_JES_EtaIntercalibration_Stat48: 0.0112036437264847 - syst_JES_EtaIntercalibration_Stat49: 0.15801456159164573 - syst_JES_EtaIntercalibration_Stat5: 0.03209763497128722 - syst_JES_EtaIntercalibration_Stat50: 0.13783784712480096 - syst_JES_EtaIntercalibration_Stat51: 0.028653011547654116 - syst_JES_EtaIntercalibration_Stat52: 0.021485293695630507 + syst_JES_EtaIntercalibration_Stat47: 5.01688516e-04 + syst_JES_EtaIntercalibration_Stat48: 1.12036437e-02 + syst_JES_EtaIntercalibration_Stat49: 1.58014562e-01 + syst_JES_EtaIntercalibration_Stat5: 3.20976350e-02 + syst_JES_EtaIntercalibration_Stat50: 1.37837847e-01 + syst_JES_EtaIntercalibration_Stat51: 2.86530115e-02 + syst_JES_EtaIntercalibration_Stat52: 2.14852937e-02 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 syst_JES_EtaIntercalibration_Stat56: 0.0 - syst_JES_EtaIntercalibration_Stat57: 0.005914446186034665 - syst_JES_EtaIntercalibration_Stat58: 0.022549728821429315 - syst_JES_EtaIntercalibration_Stat59: 0.1618046661873507 - syst_JES_EtaIntercalibration_Stat6: 0.027870114293809412 - syst_JES_EtaIntercalibration_Stat60: 0.1729577714356889 - syst_JES_EtaIntercalibration_Stat61: 0.03310710497763282 - syst_JES_EtaIntercalibration_Stat62: 0.0005985101565554256 + syst_JES_EtaIntercalibration_Stat57: 5.91444619e-03 + syst_JES_EtaIntercalibration_Stat58: 2.25497288e-02 + syst_JES_EtaIntercalibration_Stat59: 1.61804666e-01 + syst_JES_EtaIntercalibration_Stat6: 2.78701143e-02 + syst_JES_EtaIntercalibration_Stat60: 1.72957771e-01 + syst_JES_EtaIntercalibration_Stat61: 3.31071050e-02 + syst_JES_EtaIntercalibration_Stat62: 5.98510157e-04 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 - syst_JES_EtaIntercalibration_Stat69: 0.0007721971558481681 - syst_JES_EtaIntercalibration_Stat7: 0.022395180910186906 - syst_JES_EtaIntercalibration_Stat70: 0.21480563307325068 - syst_JES_EtaIntercalibration_Stat71: 1.077729098614304 - syst_JES_EtaIntercalibration_Stat72: 1.3027638773008712 - syst_JES_EtaIntercalibration_Stat73: 0.42012620425296016 - syst_JES_EtaIntercalibration_Stat74: 0.024110332157604133 + syst_JES_EtaIntercalibration_Stat69: 7.72197156e-04 + syst_JES_EtaIntercalibration_Stat7: 2.23951809e-02 + syst_JES_EtaIntercalibration_Stat70: 2.14805633e-01 + syst_JES_EtaIntercalibration_Stat71: 1.07772910e+00 + syst_JES_EtaIntercalibration_Stat72: 1.30276388e+00 + syst_JES_EtaIntercalibration_Stat73: 4.20126204e-01 + syst_JES_EtaIntercalibration_Stat74: 2.41103322e-02 syst_JES_EtaIntercalibration_Stat75: 0.0 syst_JES_EtaIntercalibration_Stat76: 0.0 syst_JES_EtaIntercalibration_Stat77: 0.0 syst_JES_EtaIntercalibration_Stat78: 0.0 - syst_JES_EtaIntercalibration_Stat79: 0.02563696963371451 + syst_JES_EtaIntercalibration_Stat79: 2.56369696e-02 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 0.42698628397174543 - syst_JES_EtaIntercalibration_Stat81: 1.3977833415805183 - syst_JES_EtaIntercalibration_Stat82: 1.0161418060487424 - syst_JES_EtaIntercalibration_Stat83: 0.23400822100943375 - syst_JES_EtaIntercalibration_Stat84: 0.0005509100176072314 - syst_JES_EtaIntercalibration_Stat85: 0.0007172422394142721 - syst_JES_EtaIntercalibration_Stat86: 0.0007172422394142721 - syst_JES_EtaIntercalibration_Stat87: 0.0007172422394142721 - syst_JES_EtaIntercalibration_Stat88: 0.0007172422394142721 - syst_JES_EtaIntercalibration_Stat89: 0.0007172422394142721 + syst_JES_EtaIntercalibration_Stat80: 4.26986284e-01 + syst_JES_EtaIntercalibration_Stat81: 1.39778334e+00 + syst_JES_EtaIntercalibration_Stat82: 1.01614181e+00 + syst_JES_EtaIntercalibration_Stat83: 2.34008221e-01 + syst_JES_EtaIntercalibration_Stat84: 5.50910018e-04 + syst_JES_EtaIntercalibration_Stat85: 7.17242239e-04 + syst_JES_EtaIntercalibration_Stat86: 7.17242239e-04 + syst_JES_EtaIntercalibration_Stat87: 7.17242239e-04 + syst_JES_EtaIntercalibration_Stat88: 7.17242239e-04 + syst_JES_EtaIntercalibration_Stat89: 7.17242239e-04 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 0.4285761863426385 - syst_JES_EtaIntercalibration_Stat92: 2.1782907863735734 - syst_JES_EtaIntercalibration_Stat93: 2.4909770673372322 - syst_JES_EtaIntercalibration_Stat94: 0.7746256563657056 - syst_JES_EtaIntercalibration_Stat95: 0.004830561328665645 - syst_JES_EtaIntercalibration_Stat96: 0.008007354424527493 - syst_JES_EtaIntercalibration_Stat97: 0.0007172422394142721 - syst_JES_EtaIntercalibration_Stat98: 0.0007172422394142721 - syst_JES_EtaIntercalibration_Stat99: 0.0007172422394142721 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0029522806015011512 - syst_JES_Flavour_Comp: 3.9189670514052555 - syst_JES_Flavour_Response: 70.25057464533654 - syst_JES_Gjet_Generator: 44.53796383704581 - syst_JES_Gjet_OOC: 25.99592419976639 - syst_JES_Gjet_Purity: 10.903873577770424 + syst_JES_EtaIntercalibration_Stat91: 4.28576186e-01 + syst_JES_EtaIntercalibration_Stat92: 2.17829079e+00 + syst_JES_EtaIntercalibration_Stat93: 2.49097707e+00 + syst_JES_EtaIntercalibration_Stat94: 7.74625656e-01 + syst_JES_EtaIntercalibration_Stat95: 4.83056133e-03 + syst_JES_EtaIntercalibration_Stat96: 8.00735442e-03 + syst_JES_EtaIntercalibration_Stat97: 7.17242239e-04 + syst_JES_EtaIntercalibration_Stat98: 7.17242239e-04 + syst_JES_EtaIntercalibration_Stat99: 7.17242239e-04 + syst_JES_EtaIntercalibration_TotalStat_MJB: 2.95228060e-03 + syst_JES_Flavour_Comp: 3.91896705e+00 + syst_JES_Flavour_Response: 7.02505746e+01 + syst_JES_Gjet_Generator: 4.45379638e+01 + syst_JES_Gjet_OOC: 2.59959242e+01 + syst_JES_Gjet_Purity: 1.09038736e+01 syst_JES_Gjet_Stat1: 0.0 - syst_JES_Gjet_Stat10: 0.3663600779288049 - syst_JES_Gjet_Stat11: 0.2743453845064648 - syst_JES_Gjet_Stat12: 0.04523377720244021 - syst_JES_Gjet_Stat13: 0.0022079513128690133 - syst_JES_Gjet_Stat14: 1.012471002053886e-12 - syst_JES_Gjet_Stat15: 2.8916681995262205e-08 - syst_JES_Gjet_Stat2: 0.23131538535082358 + syst_JES_Gjet_Stat10: 3.66360078e-01 + syst_JES_Gjet_Stat11: 2.74345385e-01 + syst_JES_Gjet_Stat12: 4.52337772e-02 + syst_JES_Gjet_Stat13: 2.20795131e-03 + syst_JES_Gjet_Stat14: 1.01247100e-12 + syst_JES_Gjet_Stat15: 2.89166820e-08 + syst_JES_Gjet_Stat2: 2.31315385e-01 syst_JES_Gjet_Stat3: 0.0 - syst_JES_Gjet_Stat4: 0.2635315303716047 - syst_JES_Gjet_Stat5: 0.5646563268927393 - syst_JES_Gjet_Stat6: 1.9440989558147495 - syst_JES_Gjet_Stat7: 3.558811037411231 - syst_JES_Gjet_Stat8: 1.722093711155116 - syst_JES_Gjet_Stat9: 1.1735955095346946 - syst_JES_Gjet_Veto: 9.255013884376403 - syst_JES_Gjet_dPhi: 4.865517932348004 - syst_JES_LArESZee: 30.766112445351297 - syst_JES_LArEsmear: 2.9571068631349795 - syst_JES_LAr_JVT: 4.973306948098015 - syst_JES_MJB_Alpha: 0.0001241880429026885 - syst_JES_MJB_Asym: 2.868274409906217e-17 - syst_JES_MJB_Beta: 5.255908175567758e-13 - syst_JES_MJB_Fragmentation: 1.060534355559181e-16 - syst_JES_MJB_Stat1: 0.03051873522936362 - syst_JES_MJB_Stat10: 4.577846764582668e-42 + syst_JES_Gjet_Stat4: 2.63531530e-01 + syst_JES_Gjet_Stat5: 5.64656327e-01 + syst_JES_Gjet_Stat6: 1.94409896e+00 + syst_JES_Gjet_Stat7: 3.55881104e+00 + syst_JES_Gjet_Stat8: 1.72209371e+00 + syst_JES_Gjet_Stat9: 1.17359551e+00 + syst_JES_Gjet_Veto: 9.25501388e+00 + syst_JES_Gjet_dPhi: 4.86551793e+00 + syst_JES_LArESZee: 3.07661124e+01 + syst_JES_LArEsmear: 2.95710686e+00 + syst_JES_LAr_JVT: 4.97330695e+00 + syst_JES_MJB_Alpha: 1.24188043e-04 + syst_JES_MJB_Asym: 2.86827441e-17 + syst_JES_MJB_Beta: 5.25590818e-13 + syst_JES_MJB_Fragmentation: 1.06053436e-16 + syst_JES_MJB_Stat1: 3.05187352e-02 + syst_JES_MJB_Stat10: 4.57784676e-42 syst_JES_MJB_Stat11: 0.0 syst_JES_MJB_Stat12: 0.0 syst_JES_MJB_Stat13: 0.0 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 0.00019355667774582203 - syst_JES_MJB_Stat3: 1.0633925933069122e-06 - syst_JES_MJB_Stat4: 3.4489461705715266e-13 + syst_JES_MJB_Stat2: 1.93556678e-04 + syst_JES_MJB_Stat3: 1.06339259e-06 + syst_JES_MJB_Stat4: 3.44894617e-13 syst_JES_MJB_Stat5: 0.0 syst_JES_MJB_Stat6: 0.0 syst_JES_MJB_Stat7: 0.0 syst_JES_MJB_Stat8: 0.0 - syst_JES_MJB_Stat9: 2.391096139848835e-42 - syst_JES_MJB_Threshold: 0.0005090497323445049 - syst_JES_Pileup_MuOffset: 1.0020777723238478e-16 - syst_JES_Pileup_NPVOffset: 3.0599896650152263 - syst_JES_Pileup_Pt_term: 11.251258685142743 - syst_JES_Pileup_Rho_topology: 21.788636373118898 - syst_JES_PunchThrough_MC15: 0.1830777703600303 + syst_JES_MJB_Stat9: 2.39109614e-42 + syst_JES_MJB_Threshold: 5.09049732e-04 + syst_JES_Pileup_MuOffset: 1.00207777e-16 + syst_JES_Pileup_NPVOffset: 3.05998967e+00 + syst_JES_Pileup_Pt_term: 1.12512587e+01 + syst_JES_Pileup_Rho_topology: 2.17886364e+01 + syst_JES_PunchThrough_MC15: 1.83077770e-01 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 39.30917990431751 - syst_JES_Zjet_MuScale: 2.8672781518366857 - syst_JES_Zjet_MuSmearID: 0.37871560239842245 - syst_JES_Zjet_MuSmearMS: 1.8734159728955018 - syst_JES_Zjet_OOC: 20.506005827561836 - syst_JES_Zjet_Stat1: 0.27962850726454913 - syst_JES_Zjet_Stat10: 4.475866033517984 - syst_JES_Zjet_Stat11: 0.10122148164668407 - syst_JES_Zjet_Stat12: 0.6409299961774296 - syst_JES_Zjet_Stat13: 0.054838829309167426 - syst_JES_Zjet_Stat2: 0.008507833566778325 - syst_JES_Zjet_Stat3: 0.08019453018910204 - syst_JES_Zjet_Stat4: 0.081937312979443 - syst_JES_Zjet_Stat5: 0.09122711603465276 - syst_JES_Zjet_Stat6: 0.6752356681189169 - syst_JES_Zjet_Stat7: 1.161506895158182 - syst_JES_Zjet_Stat8: 2.254418494867357 - syst_JES_Zjet_Stat9: 4.574441605267248 - syst_JES_Zjet_Veto: 3.3315753030661037 - syst_JES_Zjet_dPhi: 4.604654683035417 + syst_JES_Zjet_MC: 3.93091799e+01 + syst_JES_Zjet_MuScale: 2.86727815e+00 + syst_JES_Zjet_MuSmearID: 3.78715602e-01 + syst_JES_Zjet_MuSmearMS: 1.87341597e+00 + syst_JES_Zjet_OOC: 2.05060058e+01 + syst_JES_Zjet_Stat1: 2.79628507e-01 + syst_JES_Zjet_Stat10: 4.47586603e+00 + syst_JES_Zjet_Stat11: 1.01221482e-01 + syst_JES_Zjet_Stat12: 6.40929996e-01 + syst_JES_Zjet_Stat13: 5.48388293e-02 + syst_JES_Zjet_Stat2: 8.50783357e-03 + syst_JES_Zjet_Stat3: 8.01945302e-02 + syst_JES_Zjet_Stat4: 8.19373130e-02 + syst_JES_Zjet_Stat5: 9.12271160e-02 + syst_JES_Zjet_Stat6: 6.75235668e-01 + syst_JES_Zjet_Stat7: 1.16150690e+00 + syst_JES_Zjet_Stat8: 2.25441849e+00 + syst_JES_Zjet_Stat9: 4.57444161e+00 + syst_JES_Zjet_Veto: 3.33157530e+00 + syst_JES_Zjet_dPhi: 4.60465468e+00 syst_PRW: 0.00493 syst_Unfolding_bias: 9.99 - syst_cleaning: 12.661291403328493 + syst_cleaning: 1.26612914e+01 syst_lumi: 41.375 - stat: 7.185 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 17.87617059104102 - syst_JER_NP1: 2.253833345658015 - syst_JER_NP2: 0.39327929960779784 - syst_JER_NP3: 3.7845746960523847 - syst_JER_NP4: 0.6306517481938824 - syst_JER_NP5: 0.8999363685839127 - syst_JER_NP6: 1.4357553656525193 - syst_JER_NP7: 0.8561314428871305 - syst_JER_NP8: 1.1279931859280004 - syst_JES_EtaIntercalibration_Modelling: 23.393116508922024 - syst_JES_EtaIntercalibration_NonClosure: 4.58127438601968e-14 - syst_JES_EtaIntercalibration_Stat0: 0.00010562045824555014 + syst_JER_NP0: 1.78761706e+01 + syst_JER_NP1: 2.25383335e+00 + syst_JER_NP2: 3.93279300e-01 + syst_JER_NP3: 3.78457470e+00 + syst_JER_NP4: 6.30651748e-01 + syst_JER_NP5: 8.99936369e-01 + syst_JER_NP6: 1.43575537e+00 + syst_JER_NP7: 8.56131443e-01 + syst_JER_NP8: 1.12799319e+00 + syst_JES_EtaIntercalibration_Modelling: 2.33931165e+01 + syst_JES_EtaIntercalibration_NonClosure: 4.58127439e-14 + syst_JES_EtaIntercalibration_Stat0: 1.05620458e-04 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 0.002524118459977661 - syst_JES_EtaIntercalibration_Stat101: 0.15015611975540658 - syst_JES_EtaIntercalibration_Stat102: 0.6568003806332637 - syst_JES_EtaIntercalibration_Stat103: 0.5745818892899427 - syst_JES_EtaIntercalibration_Stat104: 0.10593647849065024 - syst_JES_EtaIntercalibration_Stat105: 0.00013472322294244598 - syst_JES_EtaIntercalibration_Stat106: 0.00010562045824555014 - syst_JES_EtaIntercalibration_Stat107: 0.00010562045824555014 - syst_JES_EtaIntercalibration_Stat108: 0.00010562045824555014 - syst_JES_EtaIntercalibration_Stat109: 0.00010562045824555014 + syst_JES_EtaIntercalibration_Stat100: 2.52411846e-03 + syst_JES_EtaIntercalibration_Stat101: 1.50156120e-01 + syst_JES_EtaIntercalibration_Stat102: 6.56800381e-01 + syst_JES_EtaIntercalibration_Stat103: 5.74581889e-01 + syst_JES_EtaIntercalibration_Stat104: 1.05936478e-01 + syst_JES_EtaIntercalibration_Stat105: 1.34723223e-04 + syst_JES_EtaIntercalibration_Stat106: 1.05620458e-04 + syst_JES_EtaIntercalibration_Stat107: 1.05620458e-04 + syst_JES_EtaIntercalibration_Stat108: 1.05620458e-04 + syst_JES_EtaIntercalibration_Stat109: 1.05620458e-04 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 0.0020652670214768836 - syst_JES_EtaIntercalibration_Stat111: 0.4160611506437485 - syst_JES_EtaIntercalibration_Stat112: 2.771813981853761 - syst_JES_EtaIntercalibration_Stat113: 3.1806770898662444 - syst_JES_EtaIntercalibration_Stat114: 0.8084732695024617 - syst_JES_EtaIntercalibration_Stat115: 0.02053399376643521 - syst_JES_EtaIntercalibration_Stat116: 0.00636056989358658 - syst_JES_EtaIntercalibration_Stat117: 0.00010562045824555014 - syst_JES_EtaIntercalibration_Stat118: 0.00010562045824555014 - syst_JES_EtaIntercalibration_Stat119: 0.00010562045824555014 + syst_JES_EtaIntercalibration_Stat110: 2.06526702e-03 + syst_JES_EtaIntercalibration_Stat111: 4.16061151e-01 + syst_JES_EtaIntercalibration_Stat112: 2.77181398e+00 + syst_JES_EtaIntercalibration_Stat113: 3.18067709e+00 + syst_JES_EtaIntercalibration_Stat114: 8.08473270e-01 + syst_JES_EtaIntercalibration_Stat115: 2.05339938e-02 + syst_JES_EtaIntercalibration_Stat116: 6.36056989e-03 + syst_JES_EtaIntercalibration_Stat117: 1.05620458e-04 + syst_JES_EtaIntercalibration_Stat118: 1.05620458e-04 + syst_JES_EtaIntercalibration_Stat119: 1.05620458e-04 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 0.01322420791578838 - syst_JES_EtaIntercalibration_Stat121: 0.9564968622530865 - syst_JES_EtaIntercalibration_Stat122: 2.611552986251667 - syst_JES_EtaIntercalibration_Stat123: 2.373930706655104 - syst_JES_EtaIntercalibration_Stat124: 0.3663981850391729 - syst_JES_EtaIntercalibration_Stat125: 0.002857017807084863 - syst_JES_EtaIntercalibration_Stat126: 0.00010562045824555014 - syst_JES_EtaIntercalibration_Stat127: 0.00010562045824555014 - syst_JES_EtaIntercalibration_Stat128: 0.00010562045824555014 - syst_JES_EtaIntercalibration_Stat129: 0.01232597756772257 + syst_JES_EtaIntercalibration_Stat120: 1.32242079e-02 + syst_JES_EtaIntercalibration_Stat121: 9.56496862e-01 + syst_JES_EtaIntercalibration_Stat122: 2.61155299e+00 + syst_JES_EtaIntercalibration_Stat123: 2.37393071e+00 + syst_JES_EtaIntercalibration_Stat124: 3.66398185e-01 + syst_JES_EtaIntercalibration_Stat125: 2.85701781e-03 + syst_JES_EtaIntercalibration_Stat126: 1.05620458e-04 + syst_JES_EtaIntercalibration_Stat127: 1.05620458e-04 + syst_JES_EtaIntercalibration_Stat128: 1.05620458e-04 + syst_JES_EtaIntercalibration_Stat129: 1.23259776e-02 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 1.094090457869001 - syst_JES_EtaIntercalibration_Stat131: 3.038378844054836 - syst_JES_EtaIntercalibration_Stat132: 4.772713693487177 - syst_JES_EtaIntercalibration_Stat133: 1.2194555865221166 - syst_JES_EtaIntercalibration_Stat134: 0.03174987677141441 - syst_JES_EtaIntercalibration_Stat135: 0.006324583523837755 + syst_JES_EtaIntercalibration_Stat130: 1.09409046e+00 + syst_JES_EtaIntercalibration_Stat131: 3.03837884e+00 + syst_JES_EtaIntercalibration_Stat132: 4.77271369e+00 + syst_JES_EtaIntercalibration_Stat133: 1.21945559e+00 + syst_JES_EtaIntercalibration_Stat134: 3.17498768e-02 + syst_JES_EtaIntercalibration_Stat135: 6.32458352e-03 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 syst_JES_EtaIntercalibration_Stat138: 0.0 - syst_JES_EtaIntercalibration_Stat139: 0.010822384245165203 - syst_JES_EtaIntercalibration_Stat14: 0.0034466038040185296 - syst_JES_EtaIntercalibration_Stat140: 1.2190382961580821 - syst_JES_EtaIntercalibration_Stat141: 4.27141156410852 - syst_JES_EtaIntercalibration_Stat142: 2.2233609693434846 - syst_JES_EtaIntercalibration_Stat143: 0.5786990992735344 - syst_JES_EtaIntercalibration_Stat144: 0.00933183486780601 + syst_JES_EtaIntercalibration_Stat139: 1.08223842e-02 + syst_JES_EtaIntercalibration_Stat14: 3.44660380e-03 + syst_JES_EtaIntercalibration_Stat140: 1.21903830e+00 + syst_JES_EtaIntercalibration_Stat141: 4.27141156e+00 + syst_JES_EtaIntercalibration_Stat142: 2.22336097e+00 + syst_JES_EtaIntercalibration_Stat143: 5.78699099e-01 + syst_JES_EtaIntercalibration_Stat144: 9.33183487e-03 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 0.0005441110918560198 - syst_JES_EtaIntercalibration_Stat148: 0.05846247024373842 - syst_JES_EtaIntercalibration_Stat149: 0.05561216233882657 - syst_JES_EtaIntercalibration_Stat15: 0.0036521132676848892 - syst_JES_EtaIntercalibration_Stat150: 0.06774968487011582 - syst_JES_EtaIntercalibration_Stat151: 0.04961113887021744 - syst_JES_EtaIntercalibration_Stat152: 0.008793104741784895 + syst_JES_EtaIntercalibration_Stat147: 5.44111092e-04 + syst_JES_EtaIntercalibration_Stat148: 5.84624702e-02 + syst_JES_EtaIntercalibration_Stat149: 5.56121623e-02 + syst_JES_EtaIntercalibration_Stat15: 3.65211327e-03 + syst_JES_EtaIntercalibration_Stat150: 6.77496849e-02 + syst_JES_EtaIntercalibration_Stat151: 4.96111389e-02 + syst_JES_EtaIntercalibration_Stat152: 8.79310474e-03 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 syst_JES_EtaIntercalibration_Stat156: 0.0 - syst_JES_EtaIntercalibration_Stat157: 0.0009313912446979518 - syst_JES_EtaIntercalibration_Stat158: 0.07636507839718035 - syst_JES_EtaIntercalibration_Stat159: 0.0172082755672961 - syst_JES_EtaIntercalibration_Stat16: 0.003501308979153368 - syst_JES_EtaIntercalibration_Stat160: 0.13280233836420202 - syst_JES_EtaIntercalibration_Stat161: 0.03166440746327018 - syst_JES_EtaIntercalibration_Stat162: 0.00038820763452049735 + syst_JES_EtaIntercalibration_Stat157: 9.31391245e-04 + syst_JES_EtaIntercalibration_Stat158: 7.63650784e-02 + syst_JES_EtaIntercalibration_Stat159: 1.72082756e-02 + syst_JES_EtaIntercalibration_Stat16: 3.50130898e-03 + syst_JES_EtaIntercalibration_Stat160: 1.32802338e-01 + syst_JES_EtaIntercalibration_Stat161: 3.16644075e-02 + syst_JES_EtaIntercalibration_Stat162: 3.88207635e-04 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 0.00013560089394024362 - syst_JES_EtaIntercalibration_Stat166: 0.02154419353329337 - syst_JES_EtaIntercalibration_Stat167: 0.12191169703929151 - syst_JES_EtaIntercalibration_Stat168: 0.2041412716723397 - syst_JES_EtaIntercalibration_Stat169: 0.02399078496006331 - syst_JES_EtaIntercalibration_Stat17: 8.707885435052531e-05 - syst_JES_EtaIntercalibration_Stat170: 0.0003815720541457617 + syst_JES_EtaIntercalibration_Stat165: 1.35600894e-04 + syst_JES_EtaIntercalibration_Stat166: 2.15441935e-02 + syst_JES_EtaIntercalibration_Stat167: 1.21911697e-01 + syst_JES_EtaIntercalibration_Stat168: 2.04141272e-01 + syst_JES_EtaIntercalibration_Stat169: 2.39907850e-02 + syst_JES_EtaIntercalibration_Stat17: 8.70788544e-05 + syst_JES_EtaIntercalibration_Stat170: 3.81572054e-04 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 - syst_JES_EtaIntercalibration_Stat175: 0.001780548230180806 - syst_JES_EtaIntercalibration_Stat176: 0.05841794501692095 - syst_JES_EtaIntercalibration_Stat177: 0.2335118198293183 - syst_JES_EtaIntercalibration_Stat178: 0.14135710125423484 - syst_JES_EtaIntercalibration_Stat179: 0.04195030512403933 + syst_JES_EtaIntercalibration_Stat175: 1.78054823e-03 + syst_JES_EtaIntercalibration_Stat176: 5.84179450e-02 + syst_JES_EtaIntercalibration_Stat177: 2.33511820e-01 + syst_JES_EtaIntercalibration_Stat178: 1.41357101e-01 + syst_JES_EtaIntercalibration_Stat179: 4.19503051e-02 syst_JES_EtaIntercalibration_Stat18: 0.0 - syst_JES_EtaIntercalibration_Stat180: 0.0006458142999345866 + syst_JES_EtaIntercalibration_Stat180: 6.45814300e-04 syst_JES_EtaIntercalibration_Stat181: 0.0 - syst_JES_EtaIntercalibration_Stat182: 0.0001165244721773392 - syst_JES_EtaIntercalibration_Stat183: 0.0001471081574896511 - syst_JES_EtaIntercalibration_Stat184: 0.006616725549696012 - syst_JES_EtaIntercalibration_Stat185: 0.019481129638704218 - syst_JES_EtaIntercalibration_Stat186: 0.00827407401163417 - syst_JES_EtaIntercalibration_Stat187: 4.146414618378148e-06 + syst_JES_EtaIntercalibration_Stat182: 1.16524472e-04 + syst_JES_EtaIntercalibration_Stat183: 1.47108157e-04 + syst_JES_EtaIntercalibration_Stat184: 6.61672555e-03 + syst_JES_EtaIntercalibration_Stat185: 1.94811296e-02 + syst_JES_EtaIntercalibration_Stat186: 8.27407401e-03 + syst_JES_EtaIntercalibration_Stat187: 4.14641462e-06 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 - syst_JES_EtaIntercalibration_Stat192: 0.00016203335304806847 - syst_JES_EtaIntercalibration_Stat193: 0.009503295901948967 - syst_JES_EtaIntercalibration_Stat194: 0.03435410647942979 - syst_JES_EtaIntercalibration_Stat195: 0.02401240929186407 - syst_JES_EtaIntercalibration_Stat196: 0.035683460454810155 - syst_JES_EtaIntercalibration_Stat197: 0.000506525191871046 - syst_JES_EtaIntercalibration_Stat198: 7.705214127459405e-05 - syst_JES_EtaIntercalibration_Stat199: 0.0005920764878797333 + syst_JES_EtaIntercalibration_Stat192: 1.62033353e-04 + syst_JES_EtaIntercalibration_Stat193: 9.50329590e-03 + syst_JES_EtaIntercalibration_Stat194: 3.43541065e-02 + syst_JES_EtaIntercalibration_Stat195: 2.40124093e-02 + syst_JES_EtaIntercalibration_Stat196: 3.56834605e-02 + syst_JES_EtaIntercalibration_Stat197: 5.06525192e-04 + syst_JES_EtaIntercalibration_Stat198: 7.70521413e-05 + syst_JES_EtaIntercalibration_Stat199: 5.92076488e-04 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 0.000733075594669472 - syst_JES_EtaIntercalibration_Stat201: 0.0003589782671694764 - syst_JES_EtaIntercalibration_Stat202: 1.876642394224537e-09 + syst_JES_EtaIntercalibration_Stat200: 7.33075595e-04 + syst_JES_EtaIntercalibration_Stat201: 3.58978267e-04 + syst_JES_EtaIntercalibration_Stat202: 1.87664239e-09 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 - syst_JES_EtaIntercalibration_Stat207: 0.00013415689580377176 - syst_JES_EtaIntercalibration_Stat208: 3.58902451928097e-06 - syst_JES_EtaIntercalibration_Stat209: 0.0007954013200894252 + syst_JES_EtaIntercalibration_Stat207: 1.34156896e-04 + syst_JES_EtaIntercalibration_Stat208: 3.58902452e-06 + syst_JES_EtaIntercalibration_Stat209: 7.95401320e-04 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 0.00030813699875217843 - syst_JES_EtaIntercalibration_Stat211: 5.307271445729252e-05 - syst_JES_EtaIntercalibration_Stat212: 5.435246084585315e-08 - syst_JES_EtaIntercalibration_Stat213: 9.473525320597397e-08 - syst_JES_EtaIntercalibration_Stat214: 4.659865600980354e-08 - syst_JES_EtaIntercalibration_Stat215: 2.559105068168204e-13 + syst_JES_EtaIntercalibration_Stat210: 3.08136999e-04 + syst_JES_EtaIntercalibration_Stat211: 5.30727145e-05 + syst_JES_EtaIntercalibration_Stat212: 5.43524608e-08 + syst_JES_EtaIntercalibration_Stat213: 9.47352532e-08 + syst_JES_EtaIntercalibration_Stat214: 4.65986560e-08 + syst_JES_EtaIntercalibration_Stat215: 2.55910507e-13 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 syst_JES_EtaIntercalibration_Stat219: 0.0 - syst_JES_EtaIntercalibration_Stat22: 0.00010562045824555014 - syst_JES_EtaIntercalibration_Stat220: 8.97288920861057e-18 - syst_JES_EtaIntercalibration_Stat221: 3.672614429803379e-08 - syst_JES_EtaIntercalibration_Stat222: 2.1847955181892884e-06 - syst_JES_EtaIntercalibration_Stat223: 7.724160973853406e-08 - syst_JES_EtaIntercalibration_Stat224: 1.4257351393228685e-18 - syst_JES_EtaIntercalibration_Stat225: 2.341874196023348e-18 - syst_JES_EtaIntercalibration_Stat226: 1.8983276850954892e-30 + syst_JES_EtaIntercalibration_Stat22: 1.05620458e-04 + syst_JES_EtaIntercalibration_Stat220: 8.97288921e-18 + syst_JES_EtaIntercalibration_Stat221: 3.67261443e-08 + syst_JES_EtaIntercalibration_Stat222: 2.18479552e-06 + syst_JES_EtaIntercalibration_Stat223: 7.72416097e-08 + syst_JES_EtaIntercalibration_Stat224: 1.42573514e-18 + syst_JES_EtaIntercalibration_Stat225: 2.34187420e-18 + syst_JES_EtaIntercalibration_Stat226: 1.89832769e-30 syst_JES_EtaIntercalibration_Stat227: 0.0 syst_JES_EtaIntercalibration_Stat228: 0.0 syst_JES_EtaIntercalibration_Stat229: 0.0 - syst_JES_EtaIntercalibration_Stat23: 0.00010562045824555014 + syst_JES_EtaIntercalibration_Stat23: 1.05620458e-04 syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 - syst_JES_EtaIntercalibration_Stat232: 5.773791367030853e-39 - syst_JES_EtaIntercalibration_Stat233: 1.1182986039068457e-23 - syst_JES_EtaIntercalibration_Stat234: 3.0441505793899225e-18 - syst_JES_EtaIntercalibration_Stat235: 2.882066055800942e-18 + syst_JES_EtaIntercalibration_Stat232: 5.77379137e-39 + syst_JES_EtaIntercalibration_Stat233: 1.11829860e-23 + syst_JES_EtaIntercalibration_Stat234: 3.04415058e-18 + syst_JES_EtaIntercalibration_Stat235: 2.88206606e-18 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 @@ -34888,335 +34888,335 @@ bins: syst_JES_EtaIntercalibration_Stat242: 0.0 syst_JES_EtaIntercalibration_Stat243: 0.0 syst_JES_EtaIntercalibration_Stat244: 0.0 - syst_JES_EtaIntercalibration_Stat245: 5.812762510201152e-39 - syst_JES_EtaIntercalibration_Stat25: 8.151031100419136e-05 - syst_JES_EtaIntercalibration_Stat26: 0.0025003281284663417 - syst_JES_EtaIntercalibration_Stat27: 0.0076051832818151074 - syst_JES_EtaIntercalibration_Stat28: 0.03604381018635516 - syst_JES_EtaIntercalibration_Stat29: 0.005819383730258729 + syst_JES_EtaIntercalibration_Stat245: 5.81276251e-39 + syst_JES_EtaIntercalibration_Stat25: 8.15103110e-05 + syst_JES_EtaIntercalibration_Stat26: 2.50032813e-03 + syst_JES_EtaIntercalibration_Stat27: 7.60518328e-03 + syst_JES_EtaIntercalibration_Stat28: 3.60438102e-02 + syst_JES_EtaIntercalibration_Stat29: 5.81938373e-03 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 0.00041954481056854934 + syst_JES_EtaIntercalibration_Stat30: 4.19544811e-04 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 0.00015057996837229047 - syst_JES_EtaIntercalibration_Stat36: 0.005961559087185163 - syst_JES_EtaIntercalibration_Stat37: 0.013789876023735676 - syst_JES_EtaIntercalibration_Stat38: 0.01269112149299659 - syst_JES_EtaIntercalibration_Stat39: 0.00431876426191567 - syst_JES_EtaIntercalibration_Stat4: 0.0001117605783583818 - syst_JES_EtaIntercalibration_Stat40: 7.799424786482655e-05 + syst_JES_EtaIntercalibration_Stat35: 1.50579968e-04 + syst_JES_EtaIntercalibration_Stat36: 5.96155909e-03 + syst_JES_EtaIntercalibration_Stat37: 1.37898760e-02 + syst_JES_EtaIntercalibration_Stat38: 1.26911215e-02 + syst_JES_EtaIntercalibration_Stat39: 4.31876426e-03 + syst_JES_EtaIntercalibration_Stat4: 1.11760578e-04 + syst_JES_EtaIntercalibration_Stat40: 7.79942479e-05 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 - syst_JES_EtaIntercalibration_Stat44: 0.00010562045824555014 + syst_JES_EtaIntercalibration_Stat44: 1.05620458e-04 syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 - syst_JES_EtaIntercalibration_Stat47: 8.154495202034276e-05 - syst_JES_EtaIntercalibration_Stat48: 0.0034332176143524605 - syst_JES_EtaIntercalibration_Stat49: 0.01665916686842412 - syst_JES_EtaIntercalibration_Stat5: 0.009293524842598743 - syst_JES_EtaIntercalibration_Stat50: 0.01887093425562179 - syst_JES_EtaIntercalibration_Stat51: 0.0020362982394531506 - syst_JES_EtaIntercalibration_Stat52: 0.008281405027530052 + syst_JES_EtaIntercalibration_Stat47: 8.15449520e-05 + syst_JES_EtaIntercalibration_Stat48: 3.43321761e-03 + syst_JES_EtaIntercalibration_Stat49: 1.66591669e-02 + syst_JES_EtaIntercalibration_Stat5: 9.29352484e-03 + syst_JES_EtaIntercalibration_Stat50: 1.88709343e-02 + syst_JES_EtaIntercalibration_Stat51: 2.03629824e-03 + syst_JES_EtaIntercalibration_Stat52: 8.28140503e-03 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 syst_JES_EtaIntercalibration_Stat56: 0.0 - syst_JES_EtaIntercalibration_Stat57: 0.003341583863978278 - syst_JES_EtaIntercalibration_Stat58: 0.013556753593689014 - syst_JES_EtaIntercalibration_Stat59: 0.015130934166468374 - syst_JES_EtaIntercalibration_Stat6: 0.016866874331659672 - syst_JES_EtaIntercalibration_Stat60: 0.037376022350565884 - syst_JES_EtaIntercalibration_Stat61: 0.010922813190748984 - syst_JES_EtaIntercalibration_Stat62: 8.882822566616987e-05 + syst_JES_EtaIntercalibration_Stat57: 3.34158386e-03 + syst_JES_EtaIntercalibration_Stat58: 1.35567536e-02 + syst_JES_EtaIntercalibration_Stat59: 1.51309342e-02 + syst_JES_EtaIntercalibration_Stat6: 1.68668743e-02 + syst_JES_EtaIntercalibration_Stat60: 3.73760224e-02 + syst_JES_EtaIntercalibration_Stat61: 1.09228132e-02 + syst_JES_EtaIntercalibration_Stat62: 8.88282257e-05 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 - syst_JES_EtaIntercalibration_Stat69: 0.00012078628595581536 - syst_JES_EtaIntercalibration_Stat7: 0.008060612867983426 - syst_JES_EtaIntercalibration_Stat70: 0.02977763716281062 - syst_JES_EtaIntercalibration_Stat71: 0.23078376784340793 - syst_JES_EtaIntercalibration_Stat72: 0.3235637495146822 - syst_JES_EtaIntercalibration_Stat73: 0.10086728855283066 - syst_JES_EtaIntercalibration_Stat74: 0.012199807908323802 + syst_JES_EtaIntercalibration_Stat69: 1.20786286e-04 + syst_JES_EtaIntercalibration_Stat7: 8.06061287e-03 + syst_JES_EtaIntercalibration_Stat70: 2.97776372e-02 + syst_JES_EtaIntercalibration_Stat71: 2.30783768e-01 + syst_JES_EtaIntercalibration_Stat72: 3.23563750e-01 + syst_JES_EtaIntercalibration_Stat73: 1.00867289e-01 + syst_JES_EtaIntercalibration_Stat74: 1.21998079e-02 syst_JES_EtaIntercalibration_Stat75: 0.0 syst_JES_EtaIntercalibration_Stat76: 0.0 syst_JES_EtaIntercalibration_Stat77: 0.0 syst_JES_EtaIntercalibration_Stat78: 0.0 - syst_JES_EtaIntercalibration_Stat79: 0.002599947762456007 + syst_JES_EtaIntercalibration_Stat79: 2.59994776e-03 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 0.04997358001984649 - syst_JES_EtaIntercalibration_Stat81: 0.2614946796781915 - syst_JES_EtaIntercalibration_Stat82: 0.1731257563160375 - syst_JES_EtaIntercalibration_Stat83: 0.04171302074892203 - syst_JES_EtaIntercalibration_Stat84: 4.442568932498403e-05 - syst_JES_EtaIntercalibration_Stat85: 0.00010562045824555014 - syst_JES_EtaIntercalibration_Stat86: 0.00010562045824555014 - syst_JES_EtaIntercalibration_Stat87: 0.00010562045824555014 - syst_JES_EtaIntercalibration_Stat88: 0.00010562045824555014 - syst_JES_EtaIntercalibration_Stat89: 0.00010562045824555014 + syst_JES_EtaIntercalibration_Stat80: 4.99735800e-02 + syst_JES_EtaIntercalibration_Stat81: 2.61494680e-01 + syst_JES_EtaIntercalibration_Stat82: 1.73125756e-01 + syst_JES_EtaIntercalibration_Stat83: 4.17130207e-02 + syst_JES_EtaIntercalibration_Stat84: 4.44256893e-05 + syst_JES_EtaIntercalibration_Stat85: 1.05620458e-04 + syst_JES_EtaIntercalibration_Stat86: 1.05620458e-04 + syst_JES_EtaIntercalibration_Stat87: 1.05620458e-04 + syst_JES_EtaIntercalibration_Stat88: 1.05620458e-04 + syst_JES_EtaIntercalibration_Stat89: 1.05620458e-04 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 0.12775858513227203 - syst_JES_EtaIntercalibration_Stat92: 0.6321026736219362 - syst_JES_EtaIntercalibration_Stat93: 0.7669219305118351 - syst_JES_EtaIntercalibration_Stat94: 0.2562737745068738 - syst_JES_EtaIntercalibration_Stat95: 0.002200885503609854 - syst_JES_EtaIntercalibration_Stat96: 0.00636056989358658 - syst_JES_EtaIntercalibration_Stat97: 0.00010562045824555014 - syst_JES_EtaIntercalibration_Stat98: 0.00010562045824555014 - syst_JES_EtaIntercalibration_Stat99: 0.00010562045824555014 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.001646314292593728 - syst_JES_Flavour_Comp: 1.5702901005865124 - syst_JES_Flavour_Response: 34.401573728537485 - syst_JES_Gjet_Generator: 23.480674500533414 - syst_JES_Gjet_OOC: 13.098923114134228 - syst_JES_Gjet_Purity: 5.04877341539507 + syst_JES_EtaIntercalibration_Stat91: 1.27758585e-01 + syst_JES_EtaIntercalibration_Stat92: 6.32102674e-01 + syst_JES_EtaIntercalibration_Stat93: 7.66921931e-01 + syst_JES_EtaIntercalibration_Stat94: 2.56273775e-01 + syst_JES_EtaIntercalibration_Stat95: 2.20088550e-03 + syst_JES_EtaIntercalibration_Stat96: 6.36056989e-03 + syst_JES_EtaIntercalibration_Stat97: 1.05620458e-04 + syst_JES_EtaIntercalibration_Stat98: 1.05620458e-04 + syst_JES_EtaIntercalibration_Stat99: 1.05620458e-04 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.64631429e-03 + syst_JES_Flavour_Comp: 1.57029010e+00 + syst_JES_Flavour_Response: 3.44015737e+01 + syst_JES_Gjet_Generator: 2.34806745e+01 + syst_JES_Gjet_OOC: 1.30989231e+01 + syst_JES_Gjet_Purity: 5.04877342e+00 syst_JES_Gjet_Stat1: 0.0 - syst_JES_Gjet_Stat10: 0.2633728678129165 - syst_JES_Gjet_Stat11: 0.23253464258041207 - syst_JES_Gjet_Stat12: 0.06928552807044196 - syst_JES_Gjet_Stat13: 0.006901689720640881 - syst_JES_Gjet_Stat14: 1.460494802284486e-08 - syst_JES_Gjet_Stat15: 2.9311183006434165e-06 - syst_JES_Gjet_Stat2: 0.10941364951412598 + syst_JES_Gjet_Stat10: 2.63372868e-01 + syst_JES_Gjet_Stat11: 2.32534643e-01 + syst_JES_Gjet_Stat12: 6.92855281e-02 + syst_JES_Gjet_Stat13: 6.90168972e-03 + syst_JES_Gjet_Stat14: 1.46049480e-08 + syst_JES_Gjet_Stat15: 2.93111830e-06 + syst_JES_Gjet_Stat2: 1.09413650e-01 syst_JES_Gjet_Stat3: 0.0 - syst_JES_Gjet_Stat4: 0.08851645652080747 - syst_JES_Gjet_Stat5: 0.18260128696151073 - syst_JES_Gjet_Stat6: 0.67340230917335 - syst_JES_Gjet_Stat7: 1.3943779285043205 - syst_JES_Gjet_Stat8: 0.9268175912767302 - syst_JES_Gjet_Stat9: 0.9843653437621622 - syst_JES_Gjet_Veto: 5.061454410542487 - syst_JES_Gjet_dPhi: 2.1599307280558793 - syst_JES_LArESZee: 17.856020693312377 - syst_JES_LArEsmear: 1.533547113720345 - syst_JES_LAr_JVT: 2.5593782448086877 - syst_JES_MJB_Alpha: 0.00040703193977868616 - syst_JES_MJB_Asym: 1.1233769370439812e-11 - syst_JES_MJB_Beta: 7.576856257710053e-09 - syst_JES_MJB_Fragmentation: 4.1533938700814204e-11 - syst_JES_MJB_Stat1: 0.03765478455654739 - syst_JES_MJB_Stat10: 1.2490811452824031e-30 + syst_JES_Gjet_Stat4: 8.85164565e-02 + syst_JES_Gjet_Stat5: 1.82601287e-01 + syst_JES_Gjet_Stat6: 6.73402309e-01 + syst_JES_Gjet_Stat7: 1.39437793e+00 + syst_JES_Gjet_Stat8: 9.26817591e-01 + syst_JES_Gjet_Stat9: 9.84365344e-01 + syst_JES_Gjet_Veto: 5.06145441e+00 + syst_JES_Gjet_dPhi: 2.15993073e+00 + syst_JES_LArESZee: 1.78560207e+01 + syst_JES_LArEsmear: 1.53354711e+00 + syst_JES_LAr_JVT: 2.55937824e+00 + syst_JES_MJB_Alpha: 4.07031940e-04 + syst_JES_MJB_Asym: 1.12337694e-11 + syst_JES_MJB_Beta: 7.57685626e-09 + syst_JES_MJB_Fragmentation: 4.15339387e-11 + syst_JES_MJB_Stat1: 3.76547846e-02 + syst_JES_MJB_Stat10: 1.24908115e-30 syst_JES_MJB_Stat11: 0.0 - syst_JES_MJB_Stat12: 6.608639856279051e-39 + syst_JES_MJB_Stat12: 6.60863986e-39 syst_JES_MJB_Stat13: 0.0 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 0.0003040615192687164 - syst_JES_MJB_Stat3: 0.00010363726007088377 - syst_JES_MJB_Stat4: 4.971851843126462e-09 + syst_JES_MJB_Stat2: 3.04061519e-04 + syst_JES_MJB_Stat3: 1.03637260e-04 + syst_JES_MJB_Stat4: 4.97185184e-09 syst_JES_MJB_Stat5: 0.0 syst_JES_MJB_Stat6: 0.0 syst_JES_MJB_Stat7: 0.0 syst_JES_MJB_Stat8: 0.0 - syst_JES_MJB_Stat9: 9.534939695666669e-31 - syst_JES_MJB_Threshold: 0.007581186389370872 - syst_JES_Pileup_MuOffset: 3.9247869364719446e-11 - syst_JES_Pileup_NPVOffset: 1.3661284712646904 - syst_JES_Pileup_Pt_term: 5.642425542264602 - syst_JES_Pileup_Rho_topology: 10.169721566985006 - syst_JES_PunchThrough_MC15: 0.10209573484701771 + syst_JES_MJB_Stat9: 9.53493970e-31 + syst_JES_MJB_Threshold: 7.58118639e-03 + syst_JES_Pileup_MuOffset: 3.92478694e-11 + syst_JES_Pileup_NPVOffset: 1.36612847e+00 + syst_JES_Pileup_Pt_term: 5.64242554e+00 + syst_JES_Pileup_Rho_topology: 1.01697216e+01 + syst_JES_PunchThrough_MC15: 1.02095735e-01 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 20.353071021347123 - syst_JES_Zjet_MuScale: 1.4355236631626802 - syst_JES_Zjet_MuSmearID: 0.22358244005288072 - syst_JES_Zjet_MuSmearMS: 1.2603612894721894 - syst_JES_Zjet_OOC: 8.931924540657517 - syst_JES_Zjet_Stat1: 0.104537837527854 - syst_JES_Zjet_Stat10: 2.92555375100168 - syst_JES_Zjet_Stat11: 1.0407800572167012 - syst_JES_Zjet_Stat12: 0.4320595169843502 - syst_JES_Zjet_Stat13: 0.08106314945769133 - syst_JES_Zjet_Stat2: 0.00024222730543850752 - syst_JES_Zjet_Stat3: 0.04255908599147778 - syst_JES_Zjet_Stat4: 0.04350991000622732 - syst_JES_Zjet_Stat5: 0.06419846318254037 - syst_JES_Zjet_Stat6: 0.20114697984309882 - syst_JES_Zjet_Stat7: 0.3811156345192362 - syst_JES_Zjet_Stat8: 0.7894401101413584 - syst_JES_Zjet_Stat9: 1.9821005902829454 - syst_JES_Zjet_Veto: 1.5312357754441348 - syst_JES_Zjet_dPhi: 1.8965581325126843 + syst_JES_Zjet_MC: 2.03530710e+01 + syst_JES_Zjet_MuScale: 1.43552366e+00 + syst_JES_Zjet_MuSmearID: 2.23582440e-01 + syst_JES_Zjet_MuSmearMS: 1.26036129e+00 + syst_JES_Zjet_OOC: 8.93192454e+00 + syst_JES_Zjet_Stat1: 1.04537838e-01 + syst_JES_Zjet_Stat10: 2.92555375e+00 + syst_JES_Zjet_Stat11: 1.04078006e+00 + syst_JES_Zjet_Stat12: 4.32059517e-01 + syst_JES_Zjet_Stat13: 8.10631495e-02 + syst_JES_Zjet_Stat2: 2.42227305e-04 + syst_JES_Zjet_Stat3: 4.25590860e-02 + syst_JES_Zjet_Stat4: 4.35099100e-02 + syst_JES_Zjet_Stat5: 6.41984632e-02 + syst_JES_Zjet_Stat6: 2.01146980e-01 + syst_JES_Zjet_Stat7: 3.81115635e-01 + syst_JES_Zjet_Stat8: 7.89440110e-01 + syst_JES_Zjet_Stat9: 1.98210059e+00 + syst_JES_Zjet_Veto: 1.53123578e+00 + syst_JES_Zjet_dPhi: 1.89655813e+00 syst_PRW: 0.07342 syst_Unfolding_bias: 3.302 - syst_cleaning: 5.096559501271421 + syst_cleaning: 5.09655950e+00 syst_lumi: 21.75 - stat: 4.338 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 8.410951595984843 - syst_JER_NP1: 1.0290697388904215 - syst_JER_NP2: 0.3515163865312683 - syst_JER_NP3: 1.947540500220727 - syst_JER_NP4: 0.33305090827079276 - syst_JER_NP5: 0.42889015784930296 - syst_JER_NP6: 0.6618245292371687 - syst_JER_NP7: 0.48832008713547714 - syst_JER_NP8: 0.42148886995981283 - syst_JES_EtaIntercalibration_Modelling: 11.275892193081663 - syst_JES_EtaIntercalibration_NonClosure: 3.3908358659775914e-10 - syst_JES_EtaIntercalibration_Stat0: 1.0367190108703515e-05 + syst_JER_NP0: 8.41095160e+00 + syst_JER_NP1: 1.02906974e+00 + syst_JER_NP2: 3.51516387e-01 + syst_JER_NP3: 1.94754050e+00 + syst_JER_NP4: 3.33050908e-01 + syst_JER_NP5: 4.28890158e-01 + syst_JER_NP6: 6.61824529e-01 + syst_JER_NP7: 4.88320087e-01 + syst_JER_NP8: 4.21488870e-01 + syst_JES_EtaIntercalibration_Modelling: 1.12758922e+01 + syst_JES_EtaIntercalibration_NonClosure: 3.39083587e-10 + syst_JES_EtaIntercalibration_Stat0: 1.03671901e-05 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 0.0010506474462444574 - syst_JES_EtaIntercalibration_Stat101: 0.02279644873659053 - syst_JES_EtaIntercalibration_Stat102: 0.1102054593702145 - syst_JES_EtaIntercalibration_Stat103: 0.13552836188414588 - syst_JES_EtaIntercalibration_Stat104: 0.01390996286839041 - syst_JES_EtaIntercalibration_Stat105: 9.804583402037029e-06 - syst_JES_EtaIntercalibration_Stat106: 1.0367190108703515e-05 - syst_JES_EtaIntercalibration_Stat107: 1.0367190108703515e-05 - syst_JES_EtaIntercalibration_Stat108: 1.0367190108703515e-05 - syst_JES_EtaIntercalibration_Stat109: 1.0367190108703515e-05 + syst_JES_EtaIntercalibration_Stat100: 1.05064745e-03 + syst_JES_EtaIntercalibration_Stat101: 2.27964487e-02 + syst_JES_EtaIntercalibration_Stat102: 1.10205459e-01 + syst_JES_EtaIntercalibration_Stat103: 1.35528362e-01 + syst_JES_EtaIntercalibration_Stat104: 1.39099629e-02 + syst_JES_EtaIntercalibration_Stat105: 9.80458340e-06 + syst_JES_EtaIntercalibration_Stat106: 1.03671901e-05 + syst_JES_EtaIntercalibration_Stat107: 1.03671901e-05 + syst_JES_EtaIntercalibration_Stat108: 1.03671901e-05 + syst_JES_EtaIntercalibration_Stat109: 1.03671901e-05 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 0.0005374614474546057 - syst_JES_EtaIntercalibration_Stat111: 0.14034987246164496 - syst_JES_EtaIntercalibration_Stat112: 1.0359383138005853 - syst_JES_EtaIntercalibration_Stat113: 1.2219137571858334 - syst_JES_EtaIntercalibration_Stat114: 0.3363799451513125 - syst_JES_EtaIntercalibration_Stat115: 0.007550302041640454 - syst_JES_EtaIntercalibration_Stat116: 0.0018905503519162745 - syst_JES_EtaIntercalibration_Stat117: 1.0367190108703515e-05 - syst_JES_EtaIntercalibration_Stat118: 1.0367190108703515e-05 - syst_JES_EtaIntercalibration_Stat119: 1.0367190108703515e-05 + syst_JES_EtaIntercalibration_Stat110: 5.37461447e-04 + syst_JES_EtaIntercalibration_Stat111: 1.40349872e-01 + syst_JES_EtaIntercalibration_Stat112: 1.03593831e+00 + syst_JES_EtaIntercalibration_Stat113: 1.22191376e+00 + syst_JES_EtaIntercalibration_Stat114: 3.36379945e-01 + syst_JES_EtaIntercalibration_Stat115: 7.55030204e-03 + syst_JES_EtaIntercalibration_Stat116: 1.89055035e-03 + syst_JES_EtaIntercalibration_Stat117: 1.03671901e-05 + syst_JES_EtaIntercalibration_Stat118: 1.03671901e-05 + syst_JES_EtaIntercalibration_Stat119: 1.03671901e-05 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 0.008401312442112839 - syst_JES_EtaIntercalibration_Stat121: 0.3303213132693681 - syst_JES_EtaIntercalibration_Stat122: 0.9289053275226706 - syst_JES_EtaIntercalibration_Stat123: 0.9123555707617507 - syst_JES_EtaIntercalibration_Stat124: 0.16274430619840438 - syst_JES_EtaIntercalibration_Stat125: 0.0013856406460551018 - syst_JES_EtaIntercalibration_Stat126: 1.0367190108703515e-05 - syst_JES_EtaIntercalibration_Stat127: 1.0367190108703515e-05 - syst_JES_EtaIntercalibration_Stat128: 1.0367190108703515e-05 - syst_JES_EtaIntercalibration_Stat129: 0.025500724239715233 + syst_JES_EtaIntercalibration_Stat120: 8.40131244e-03 + syst_JES_EtaIntercalibration_Stat121: 3.30321313e-01 + syst_JES_EtaIntercalibration_Stat122: 9.28905328e-01 + syst_JES_EtaIntercalibration_Stat123: 9.12355571e-01 + syst_JES_EtaIntercalibration_Stat124: 1.62744306e-01 + syst_JES_EtaIntercalibration_Stat125: 1.38564065e-03 + syst_JES_EtaIntercalibration_Stat126: 1.03671901e-05 + syst_JES_EtaIntercalibration_Stat127: 1.03671901e-05 + syst_JES_EtaIntercalibration_Stat128: 1.03671901e-05 + syst_JES_EtaIntercalibration_Stat129: 2.55007242e-02 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 0.5964835873685043 - syst_JES_EtaIntercalibration_Stat131: 2.0855346436825255 - syst_JES_EtaIntercalibration_Stat132: 3.183065307215672 - syst_JES_EtaIntercalibration_Stat133: 0.8244689245205061 - syst_JES_EtaIntercalibration_Stat134: 0.017399554038825246 - syst_JES_EtaIntercalibration_Stat135: 0.0018870693548462918 + syst_JES_EtaIntercalibration_Stat130: 5.96483587e-01 + syst_JES_EtaIntercalibration_Stat131: 2.08553464e+00 + syst_JES_EtaIntercalibration_Stat132: 3.18306531e+00 + syst_JES_EtaIntercalibration_Stat133: 8.24468925e-01 + syst_JES_EtaIntercalibration_Stat134: 1.73995540e-02 + syst_JES_EtaIntercalibration_Stat135: 1.88706935e-03 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 syst_JES_EtaIntercalibration_Stat138: 0.0 - syst_JES_EtaIntercalibration_Stat139: 0.0023732860526072285 - syst_JES_EtaIntercalibration_Stat14: 0.0015603364600718997 - syst_JES_EtaIntercalibration_Stat140: 0.7195029308487909 - syst_JES_EtaIntercalibration_Stat141: 2.8662147512006144 - syst_JES_EtaIntercalibration_Stat142: 1.6739106158932144 - syst_JES_EtaIntercalibration_Stat143: 0.4801234710988414 - syst_JES_EtaIntercalibration_Stat144: 0.006737362169276638 + syst_JES_EtaIntercalibration_Stat139: 2.37328605e-03 + syst_JES_EtaIntercalibration_Stat14: 1.56033646e-03 + syst_JES_EtaIntercalibration_Stat140: 7.19502931e-01 + syst_JES_EtaIntercalibration_Stat141: 2.86621475e+00 + syst_JES_EtaIntercalibration_Stat142: 1.67391062e+00 + syst_JES_EtaIntercalibration_Stat143: 4.80123471e-01 + syst_JES_EtaIntercalibration_Stat144: 6.73736217e-03 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 0.0005250373391483696 - syst_JES_EtaIntercalibration_Stat148: 0.0390795803457509 - syst_JES_EtaIntercalibration_Stat149: 0.29569881636557155 - syst_JES_EtaIntercalibration_Stat15: 0.0015812267086980285 - syst_JES_EtaIntercalibration_Stat150: 0.45915126047959404 - syst_JES_EtaIntercalibration_Stat151: 0.2123138243261611 - syst_JES_EtaIntercalibration_Stat152: 0.004689694446336563 + syst_JES_EtaIntercalibration_Stat147: 5.25037339e-04 + syst_JES_EtaIntercalibration_Stat148: 3.90795803e-02 + syst_JES_EtaIntercalibration_Stat149: 2.95698816e-01 + syst_JES_EtaIntercalibration_Stat15: 1.58122671e-03 + syst_JES_EtaIntercalibration_Stat150: 4.59151260e-01 + syst_JES_EtaIntercalibration_Stat151: 2.12313824e-01 + syst_JES_EtaIntercalibration_Stat152: 4.68969445e-03 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 syst_JES_EtaIntercalibration_Stat156: 0.0 - syst_JES_EtaIntercalibration_Stat157: 0.0011440952888636506 - syst_JES_EtaIntercalibration_Stat158: 0.117277244489287 - syst_JES_EtaIntercalibration_Stat159: 0.4786700115946267 - syst_JES_EtaIntercalibration_Stat16: 0.0015417401424607845 - syst_JES_EtaIntercalibration_Stat160: 0.34770592326706196 - syst_JES_EtaIntercalibration_Stat161: 0.09734605937068022 - syst_JES_EtaIntercalibration_Stat162: 0.003282717025194222 + syst_JES_EtaIntercalibration_Stat157: 1.14409529e-03 + syst_JES_EtaIntercalibration_Stat158: 1.17277244e-01 + syst_JES_EtaIntercalibration_Stat159: 4.78670012e-01 + syst_JES_EtaIntercalibration_Stat16: 1.54174014e-03 + syst_JES_EtaIntercalibration_Stat160: 3.47705923e-01 + syst_JES_EtaIntercalibration_Stat161: 9.73460594e-02 + syst_JES_EtaIntercalibration_Stat162: 3.28271703e-03 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 0.0009892986553852179 - syst_JES_EtaIntercalibration_Stat166: 0.018604846142873638 - syst_JES_EtaIntercalibration_Stat167: 0.10128411573390964 - syst_JES_EtaIntercalibration_Stat168: 0.158983966723063 - syst_JES_EtaIntercalibration_Stat169: 0.04311121518816189 - syst_JES_EtaIntercalibration_Stat17: 8.581445726100002e-06 - syst_JES_EtaIntercalibration_Stat170: 0.006713581365582513 + syst_JES_EtaIntercalibration_Stat165: 9.89298655e-04 + syst_JES_EtaIntercalibration_Stat166: 1.86048461e-02 + syst_JES_EtaIntercalibration_Stat167: 1.01284116e-01 + syst_JES_EtaIntercalibration_Stat168: 1.58983967e-01 + syst_JES_EtaIntercalibration_Stat169: 4.31112152e-02 + syst_JES_EtaIntercalibration_Stat17: 8.58144573e-06 + syst_JES_EtaIntercalibration_Stat170: 6.71358137e-03 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 - syst_JES_EtaIntercalibration_Stat175: 0.0022499339990321226 - syst_JES_EtaIntercalibration_Stat176: 0.04650309044300174 - syst_JES_EtaIntercalibration_Stat177: 0.19476655256999337 - syst_JES_EtaIntercalibration_Stat178: 0.10226781409612705 - syst_JES_EtaIntercalibration_Stat179: 0.011633986075288212 + syst_JES_EtaIntercalibration_Stat175: 2.24993400e-03 + syst_JES_EtaIntercalibration_Stat176: 4.65030904e-02 + syst_JES_EtaIntercalibration_Stat177: 1.94766553e-01 + syst_JES_EtaIntercalibration_Stat178: 1.02267814e-01 + syst_JES_EtaIntercalibration_Stat179: 1.16339861e-02 syst_JES_EtaIntercalibration_Stat18: 0.0 - syst_JES_EtaIntercalibration_Stat180: 0.0010082143075755272 + syst_JES_EtaIntercalibration_Stat180: 1.00821431e-03 syst_JES_EtaIntercalibration_Stat181: 0.0 - syst_JES_EtaIntercalibration_Stat182: 0.0008499571812744451 - syst_JES_EtaIntercalibration_Stat183: 0.00959790939475884 - syst_JES_EtaIntercalibration_Stat184: 0.04771141870663668 - syst_JES_EtaIntercalibration_Stat185: 0.06058785583761815 - syst_JES_EtaIntercalibration_Stat186: 0.018524299581900525 - syst_JES_EtaIntercalibration_Stat187: 5.347876026984919e-05 + syst_JES_EtaIntercalibration_Stat182: 8.49957181e-04 + syst_JES_EtaIntercalibration_Stat183: 9.59790939e-03 + syst_JES_EtaIntercalibration_Stat184: 4.77114187e-02 + syst_JES_EtaIntercalibration_Stat185: 6.05878558e-02 + syst_JES_EtaIntercalibration_Stat186: 1.85242996e-02 + syst_JES_EtaIntercalibration_Stat187: 5.34787603e-05 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 - syst_JES_EtaIntercalibration_Stat192: 0.0005888106720330398 - syst_JES_EtaIntercalibration_Stat193: 0.024798674863790605 - syst_JES_EtaIntercalibration_Stat194: 0.06992859554574224 - syst_JES_EtaIntercalibration_Stat195: 0.053384232690936 - syst_JES_EtaIntercalibration_Stat196: 0.03989727833762599 - syst_JES_EtaIntercalibration_Stat197: 0.0008671633107437145 - syst_JES_EtaIntercalibration_Stat198: 0.0015743902565755418 - syst_JES_EtaIntercalibration_Stat199: 0.0011442704750189092 + syst_JES_EtaIntercalibration_Stat192: 5.88810672e-04 + syst_JES_EtaIntercalibration_Stat193: 2.47986749e-02 + syst_JES_EtaIntercalibration_Stat194: 6.99285955e-02 + syst_JES_EtaIntercalibration_Stat195: 5.33842327e-02 + syst_JES_EtaIntercalibration_Stat196: 3.98972783e-02 + syst_JES_EtaIntercalibration_Stat197: 8.67163311e-04 + syst_JES_EtaIntercalibration_Stat198: 1.57439026e-03 + syst_JES_EtaIntercalibration_Stat199: 1.14427048e-03 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 0.0014323040764795724 - syst_JES_EtaIntercalibration_Stat201: 0.0012853570515619385 - syst_JES_EtaIntercalibration_Stat202: 1.0554287286805242e-06 + syst_JES_EtaIntercalibration_Stat200: 1.43230408e-03 + syst_JES_EtaIntercalibration_Stat201: 1.28535705e-03 + syst_JES_EtaIntercalibration_Stat202: 1.05542873e-06 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 - syst_JES_EtaIntercalibration_Stat207: 0.0002994283395417842 - syst_JES_EtaIntercalibration_Stat208: 0.0007222806379794492 - syst_JES_EtaIntercalibration_Stat209: 0.0019062866206318503 + syst_JES_EtaIntercalibration_Stat207: 2.99428340e-04 + syst_JES_EtaIntercalibration_Stat208: 7.22280638e-04 + syst_JES_EtaIntercalibration_Stat209: 1.90628662e-03 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 0.0003862892310173816 - syst_JES_EtaIntercalibration_Stat211: 0.00014682528599239985 - syst_JES_EtaIntercalibration_Stat212: 3.830282887725135e-06 - syst_JES_EtaIntercalibration_Stat213: 6.67240067367061e-06 - syst_JES_EtaIntercalibration_Stat214: 3.117077392313993e-06 - syst_JES_EtaIntercalibration_Stat215: 1.8905334494899252e-09 + syst_JES_EtaIntercalibration_Stat210: 3.86289231e-04 + syst_JES_EtaIntercalibration_Stat211: 1.46825286e-04 + syst_JES_EtaIntercalibration_Stat212: 3.83028289e-06 + syst_JES_EtaIntercalibration_Stat213: 6.67240067e-06 + syst_JES_EtaIntercalibration_Stat214: 3.11707739e-06 + syst_JES_EtaIntercalibration_Stat215: 1.89053345e-09 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 syst_JES_EtaIntercalibration_Stat219: 0.0 - syst_JES_EtaIntercalibration_Stat22: 1.0367190108703515e-05 - syst_JES_EtaIntercalibration_Stat220: 1.3276169440015445e-12 - syst_JES_EtaIntercalibration_Stat221: 2.5870757623231678e-06 - syst_JES_EtaIntercalibration_Stat222: 2.6576323052672284e-05 - syst_JES_EtaIntercalibration_Stat223: 5.438525972172975e-06 - syst_JES_EtaIntercalibration_Stat224: 2.1104399422869156e-13 - syst_JES_EtaIntercalibration_Stat225: 3.465702382995401e-13 - syst_JES_EtaIntercalibration_Stat226: 5.380615833714188e-22 - syst_JES_EtaIntercalibration_Stat227: 6.872777604433305e-36 + syst_JES_EtaIntercalibration_Stat22: 1.03671901e-05 + syst_JES_EtaIntercalibration_Stat220: 1.32761694e-12 + syst_JES_EtaIntercalibration_Stat221: 2.58707576e-06 + syst_JES_EtaIntercalibration_Stat222: 2.65763231e-05 + syst_JES_EtaIntercalibration_Stat223: 5.43852597e-06 + syst_JES_EtaIntercalibration_Stat224: 2.11043994e-13 + syst_JES_EtaIntercalibration_Stat225: 3.46570238e-13 + syst_JES_EtaIntercalibration_Stat226: 5.38061583e-22 + syst_JES_EtaIntercalibration_Stat227: 6.87277760e-36 syst_JES_EtaIntercalibration_Stat228: 0.0 syst_JES_EtaIntercalibration_Stat229: 0.0 - syst_JES_EtaIntercalibration_Stat23: 1.0367190108703515e-05 + syst_JES_EtaIntercalibration_Stat23: 1.03671901e-05 syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 - syst_JES_EtaIntercalibration_Stat232: 2.0221692874997966e-28 - syst_JES_EtaIntercalibration_Stat233: 5.2628363787980334e-17 - syst_JES_EtaIntercalibration_Stat234: 4.5069666073757415e-13 - syst_JES_EtaIntercalibration_Stat235: 4.2607038042440826e-13 - syst_JES_EtaIntercalibration_Stat236: 1.710852161935683e-35 - syst_JES_EtaIntercalibration_Stat237: 1.2973060548690891e-35 + syst_JES_EtaIntercalibration_Stat232: 2.02216929e-28 + syst_JES_EtaIntercalibration_Stat233: 5.26283638e-17 + syst_JES_EtaIntercalibration_Stat234: 4.50696661e-13 + syst_JES_EtaIntercalibration_Stat235: 4.26070380e-13 + syst_JES_EtaIntercalibration_Stat236: 1.71085216e-35 + syst_JES_EtaIntercalibration_Stat237: 1.29730605e-35 syst_JES_EtaIntercalibration_Stat238: 0.0 syst_JES_EtaIntercalibration_Stat239: 0.0 syst_JES_EtaIntercalibration_Stat24: 0.0 @@ -35225,335 +35225,335 @@ bins: syst_JES_EtaIntercalibration_Stat242: 0.0 syst_JES_EtaIntercalibration_Stat243: 0.0 syst_JES_EtaIntercalibration_Stat244: 0.0 - syst_JES_EtaIntercalibration_Stat245: 2.036025689558052e-28 - syst_JES_EtaIntercalibration_Stat25: 8.377929756210659e-06 - syst_JES_EtaIntercalibration_Stat26: 0.0004982732382940106 - syst_JES_EtaIntercalibration_Stat27: 0.0027230884611962203 - syst_JES_EtaIntercalibration_Stat28: 0.01622678609583549 - syst_JES_EtaIntercalibration_Stat29: 0.0024168508435565483 + syst_JES_EtaIntercalibration_Stat245: 2.03602569e-28 + syst_JES_EtaIntercalibration_Stat25: 8.37792976e-06 + syst_JES_EtaIntercalibration_Stat26: 4.98273238e-04 + syst_JES_EtaIntercalibration_Stat27: 2.72308846e-03 + syst_JES_EtaIntercalibration_Stat28: 1.62267861e-02 + syst_JES_EtaIntercalibration_Stat29: 2.41685084e-03 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 6.358514879278022e-05 + syst_JES_EtaIntercalibration_Stat30: 6.35851488e-05 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 1.4504161704490198e-05 - syst_JES_EtaIntercalibration_Stat36: 0.001597414820107789 - syst_JES_EtaIntercalibration_Stat37: 0.004824510622850778 - syst_JES_EtaIntercalibration_Stat38: 0.00460143868806268 - syst_JES_EtaIntercalibration_Stat39: 0.002595985432836633 - syst_JES_EtaIntercalibration_Stat4: 1.1487826981200577e-05 - syst_JES_EtaIntercalibration_Stat40: 5.676796521806995e-06 + syst_JES_EtaIntercalibration_Stat35: 1.45041617e-05 + syst_JES_EtaIntercalibration_Stat36: 1.59741482e-03 + syst_JES_EtaIntercalibration_Stat37: 4.82451062e-03 + syst_JES_EtaIntercalibration_Stat38: 4.60143869e-03 + syst_JES_EtaIntercalibration_Stat39: 2.59598543e-03 + syst_JES_EtaIntercalibration_Stat4: 1.14878270e-05 + syst_JES_EtaIntercalibration_Stat40: 5.67679652e-06 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 - syst_JES_EtaIntercalibration_Stat44: 1.0367190108703515e-05 + syst_JES_EtaIntercalibration_Stat44: 1.03671901e-05 syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 - syst_JES_EtaIntercalibration_Stat47: 8.381393857825797e-06 - syst_JES_EtaIntercalibration_Stat48: 0.0006645879074283551 - syst_JES_EtaIntercalibration_Stat49: 0.0038135414888919193 - syst_JES_EtaIntercalibration_Stat5: 0.00103214871384893 - syst_JES_EtaIntercalibration_Stat50: 0.00429522930121315 - syst_JES_EtaIntercalibration_Stat51: 0.0024492515183214647 - syst_JES_EtaIntercalibration_Stat52: 0.0010680779126543158 + syst_JES_EtaIntercalibration_Stat47: 8.38139386e-06 + syst_JES_EtaIntercalibration_Stat48: 6.64587907e-04 + syst_JES_EtaIntercalibration_Stat49: 3.81354149e-03 + syst_JES_EtaIntercalibration_Stat5: 1.03214871e-03 + syst_JES_EtaIntercalibration_Stat50: 4.29522930e-03 + syst_JES_EtaIntercalibration_Stat51: 2.44925152e-03 + syst_JES_EtaIntercalibration_Stat52: 1.06807791e-03 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 syst_JES_EtaIntercalibration_Stat56: 0.0 - syst_JES_EtaIntercalibration_Stat57: 0.0015508982532310106 - syst_JES_EtaIntercalibration_Stat58: 0.00411131742875687 - syst_JES_EtaIntercalibration_Stat59: 0.0042222045189687345 - syst_JES_EtaIntercalibration_Stat6: 0.004218105750215374 - syst_JES_EtaIntercalibration_Stat60: 0.0075440756060633435 - syst_JES_EtaIntercalibration_Stat61: 0.0019209497514706103 - syst_JES_EtaIntercalibration_Stat62: 8.753784781453107e-06 + syst_JES_EtaIntercalibration_Stat57: 1.55089825e-03 + syst_JES_EtaIntercalibration_Stat58: 4.11131743e-03 + syst_JES_EtaIntercalibration_Stat59: 4.22220452e-03 + syst_JES_EtaIntercalibration_Stat6: 4.21810575e-03 + syst_JES_EtaIntercalibration_Stat60: 7.54407561e-03 + syst_JES_EtaIntercalibration_Stat61: 1.92094975e-03 + syst_JES_EtaIntercalibration_Stat62: 8.75378478e-06 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 - syst_JES_EtaIntercalibration_Stat69: 1.2220464516539459e-05 - syst_JES_EtaIntercalibration_Stat7: 0.0010116649159059535 - syst_JES_EtaIntercalibration_Stat70: 0.001380955353188509 - syst_JES_EtaIntercalibration_Stat71: 0.05151639512572673 - syst_JES_EtaIntercalibration_Stat72: 0.0849184472008291 - syst_JES_EtaIntercalibration_Stat73: 0.04220395084586276 - syst_JES_EtaIntercalibration_Stat74: 0.003110407489381415 + syst_JES_EtaIntercalibration_Stat69: 1.22204645e-05 + syst_JES_EtaIntercalibration_Stat7: 1.01166492e-03 + syst_JES_EtaIntercalibration_Stat70: 1.38095535e-03 + syst_JES_EtaIntercalibration_Stat71: 5.15163951e-02 + syst_JES_EtaIntercalibration_Stat72: 8.49184472e-02 + syst_JES_EtaIntercalibration_Stat73: 4.22039508e-02 + syst_JES_EtaIntercalibration_Stat74: 3.11040749e-03 syst_JES_EtaIntercalibration_Stat75: 0.0 syst_JES_EtaIntercalibration_Stat76: 0.0 syst_JES_EtaIntercalibration_Stat77: 0.0 syst_JES_EtaIntercalibration_Stat78: 0.0 - syst_JES_EtaIntercalibration_Stat79: 0.0011733863845724475 + syst_JES_EtaIntercalibration_Stat79: 1.17338638e-03 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 0.006682433164648937 - syst_JES_EtaIntercalibration_Stat81: 0.03170415863889152 - syst_JES_EtaIntercalibration_Stat82: 0.01768635844372719 - syst_JES_EtaIntercalibration_Stat83: 0.00499422825569677 - syst_JES_EtaIntercalibration_Stat84: 4.368896322871487e-06 - syst_JES_EtaIntercalibration_Stat85: 1.0367190108703515e-05 - syst_JES_EtaIntercalibration_Stat86: 1.0367190108703515e-05 - syst_JES_EtaIntercalibration_Stat87: 1.0367190108703515e-05 - syst_JES_EtaIntercalibration_Stat88: 1.0367190108703515e-05 - syst_JES_EtaIntercalibration_Stat89: 1.0367190108703515e-05 + syst_JES_EtaIntercalibration_Stat80: 6.68243316e-03 + syst_JES_EtaIntercalibration_Stat81: 3.17041586e-02 + syst_JES_EtaIntercalibration_Stat82: 1.76863584e-02 + syst_JES_EtaIntercalibration_Stat83: 4.99422826e-03 + syst_JES_EtaIntercalibration_Stat84: 4.36889632e-06 + syst_JES_EtaIntercalibration_Stat85: 1.03671901e-05 + syst_JES_EtaIntercalibration_Stat86: 1.03671901e-05 + syst_JES_EtaIntercalibration_Stat87: 1.03671901e-05 + syst_JES_EtaIntercalibration_Stat88: 1.03671901e-05 + syst_JES_EtaIntercalibration_Stat89: 1.03671901e-05 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 0.0337572581084424 - syst_JES_EtaIntercalibration_Stat92: 0.15072068230670932 - syst_JES_EtaIntercalibration_Stat93: 0.2104722012523269 - syst_JES_EtaIntercalibration_Stat94: 0.07158391771201127 - syst_JES_EtaIntercalibration_Stat95: 0.0016023239372860907 - syst_JES_EtaIntercalibration_Stat96: 0.0018905503519162745 - syst_JES_EtaIntercalibration_Stat97: 1.0367190108703515e-05 - syst_JES_EtaIntercalibration_Stat98: 1.0367190108703515e-05 - syst_JES_EtaIntercalibration_Stat99: 1.0367190108703515e-05 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0008794487250279275 - syst_JES_Flavour_Comp: 0.6999228671789486 - syst_JES_Flavour_Response: 16.96122858168004 - syst_JES_Gjet_Generator: 12.049078636974697 - syst_JES_Gjet_OOC: 6.656870191764295 - syst_JES_Gjet_Purity: 2.226898066818506 + syst_JES_EtaIntercalibration_Stat91: 3.37572581e-02 + syst_JES_EtaIntercalibration_Stat92: 1.50720682e-01 + syst_JES_EtaIntercalibration_Stat93: 2.10472201e-01 + syst_JES_EtaIntercalibration_Stat94: 7.15839177e-02 + syst_JES_EtaIntercalibration_Stat95: 1.60232394e-03 + syst_JES_EtaIntercalibration_Stat96: 1.89055035e-03 + syst_JES_EtaIntercalibration_Stat97: 1.03671901e-05 + syst_JES_EtaIntercalibration_Stat98: 1.03671901e-05 + syst_JES_EtaIntercalibration_Stat99: 1.03671901e-05 + syst_JES_EtaIntercalibration_TotalStat_MJB: 8.79448725e-04 + syst_JES_Flavour_Comp: 6.99922867e-01 + syst_JES_Flavour_Response: 1.69612286e+01 + syst_JES_Gjet_Generator: 1.20490786e+01 + syst_JES_Gjet_OOC: 6.65687019e+00 + syst_JES_Gjet_Purity: 2.22689807e+00 syst_JES_Gjet_Stat1: 0.0 - syst_JES_Gjet_Stat10: 0.4535258302456432 - syst_JES_Gjet_Stat11: 0.1038493884189984 - syst_JES_Gjet_Stat12: 0.08776247660589347 - syst_JES_Gjet_Stat13: 0.02789239177177174 - syst_JES_Gjet_Stat14: 8.342821510136724e-06 - syst_JES_Gjet_Stat15: 4.498795606326209e-05 - syst_JES_Gjet_Stat2: 0.04046936711884682 + syst_JES_Gjet_Stat10: 4.53525830e-01 + syst_JES_Gjet_Stat11: 1.03849388e-01 + syst_JES_Gjet_Stat12: 8.77624766e-02 + syst_JES_Gjet_Stat13: 2.78923918e-02 + syst_JES_Gjet_Stat14: 8.34282151e-06 + syst_JES_Gjet_Stat15: 4.49879561e-05 + syst_JES_Gjet_Stat2: 4.04693671e-02 syst_JES_Gjet_Stat3: 0.0 - syst_JES_Gjet_Stat4: 0.02967869058769271 - syst_JES_Gjet_Stat5: 0.06074111293020568 - syst_JES_Gjet_Stat6: 0.24448858869076076 - syst_JES_Gjet_Stat7: 0.5159657619454996 - syst_JES_Gjet_Stat8: 0.4124815632243458 - syst_JES_Gjet_Stat9: 0.6216442873541106 - syst_JES_Gjet_Veto: 2.6876895282007554 - syst_JES_Gjet_dPhi: 0.952556182070118 - syst_JES_LArESZee: 10.242692163196159 - syst_JES_LArEsmear: 0.8076373815023672 - syst_JES_LAr_JVT: 1.2547704202363075 - syst_JES_MJB_Alpha: 0.002701133234403664 - syst_JES_MJB_Asym: 8.309232469974288e-08 - syst_JES_MJB_Beta: 4.305012282212445e-06 - syst_JES_MJB_Fragmentation: 3.072578182767812e-07 - syst_JES_MJB_Stat1: 0.02673420421482562 - syst_JES_MJB_Stat10: 3.5405371061464675e-22 + syst_JES_Gjet_Stat4: 2.96786906e-02 + syst_JES_Gjet_Stat5: 6.07411129e-02 + syst_JES_Gjet_Stat6: 2.44488589e-01 + syst_JES_Gjet_Stat7: 5.15965762e-01 + syst_JES_Gjet_Stat8: 4.12481563e-01 + syst_JES_Gjet_Stat9: 6.21644287e-01 + syst_JES_Gjet_Veto: 2.68768953e+00 + syst_JES_Gjet_dPhi: 9.52556182e-01 + syst_JES_LArESZee: 1.02426922e+01 + syst_JES_LArEsmear: 8.07637382e-01 + syst_JES_LAr_JVT: 1.25477042e+00 + syst_JES_MJB_Alpha: 2.70113323e-03 + syst_JES_MJB_Asym: 8.30923247e-08 + syst_JES_MJB_Beta: 4.30501228e-06 + syst_JES_MJB_Fragmentation: 3.07257818e-07 + syst_JES_MJB_Stat1: 2.67342042e-02 + syst_JES_MJB_Stat10: 3.54053711e-22 syst_JES_MJB_Stat11: 0.0 - syst_JES_MJB_Stat12: 2.3148859043158046e-28 - syst_JES_MJB_Stat13: 1.3345451472318199e-35 + syst_JES_MJB_Stat12: 2.31488590e-28 + syst_JES_MJB_Stat13: 1.33454515e-35 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 0.004699919866338149 - syst_JES_MJB_Stat3: 0.0013094304105220713 - syst_JES_MJB_Stat4: 2.824974867144839e-06 + syst_JES_MJB_Stat2: 4.69991987e-03 + syst_JES_MJB_Stat3: 1.30943041e-03 + syst_JES_MJB_Stat4: 2.82497487e-06 syst_JES_MJB_Stat5: 0.0 syst_JES_MJB_Stat6: 0.0 syst_JES_MJB_Stat7: 0.0 syst_JES_MJB_Stat8: 0.0 - syst_JES_MJB_Stat9: 2.7019992598074482e-22 - syst_JES_MJB_Threshold: 0.024872283946333094 - syst_JES_Pileup_MuOffset: 2.9031884189426975e-07 - syst_JES_Pileup_NPVOffset: 0.5626550519634567 - syst_JES_Pileup_Pt_term: 2.914780266160727 - syst_JES_Pileup_Rho_topology: 4.620052028927813 - syst_JES_PunchThrough_MC15: 0.054524921467367246 + syst_JES_MJB_Stat9: 2.70199926e-22 + syst_JES_MJB_Threshold: 2.48722839e-02 + syst_JES_Pileup_MuOffset: 2.90318842e-07 + syst_JES_Pileup_NPVOffset: 5.62655052e-01 + syst_JES_Pileup_Pt_term: 2.91478027e+00 + syst_JES_Pileup_Rho_topology: 4.62005203e+00 + syst_JES_PunchThrough_MC15: 5.45249215e-02 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 10.552016620058934 - syst_JES_Zjet_MuScale: 0.745148387906731 - syst_JES_Zjet_MuSmearID: 0.13283750251717322 - syst_JES_Zjet_MuSmearMS: 0.7694547598787079 - syst_JES_Zjet_OOC: 3.9413824563850692 - syst_JES_Zjet_Stat1: 0.05203160073455361 - syst_JES_Zjet_Stat10: 1.5126033022574028 - syst_JES_Zjet_Stat11: 1.1781024350624187 - syst_JES_Zjet_Stat12: 0.36789355457795125 - syst_JES_Zjet_Stat13: 0.08487402827131513 - syst_JES_Zjet_Stat2: 2.602406338372238e-05 - syst_JES_Zjet_Stat3: 0.023836612070510358 - syst_JES_Zjet_Stat4: 0.024460357724285228 - syst_JES_Zjet_Stat5: 0.036650195079399046 - syst_JES_Zjet_Stat6: 0.06493543004400602 - syst_JES_Zjet_Stat7: 0.13790854650818418 - syst_JES_Zjet_Stat8: 0.2704481281133223 - syst_JES_Zjet_Stat9: 0.7817303675181104 - syst_JES_Zjet_Veto: 0.7520958981406559 - syst_JES_Zjet_dPhi: 0.8452621250239478 + syst_JES_Zjet_MC: 1.05520166e+01 + syst_JES_Zjet_MuScale: 7.45148388e-01 + syst_JES_Zjet_MuSmearID: 1.32837503e-01 + syst_JES_Zjet_MuSmearMS: 7.69454760e-01 + syst_JES_Zjet_OOC: 3.94138246e+00 + syst_JES_Zjet_Stat1: 5.20316007e-02 + syst_JES_Zjet_Stat10: 1.51260330e+00 + syst_JES_Zjet_Stat11: 1.17810244e+00 + syst_JES_Zjet_Stat12: 3.67893555e-01 + syst_JES_Zjet_Stat13: 8.48740283e-02 + syst_JES_Zjet_Stat2: 2.60240634e-05 + syst_JES_Zjet_Stat3: 2.38366121e-02 + syst_JES_Zjet_Stat4: 2.44603577e-02 + syst_JES_Zjet_Stat5: 3.66501951e-02 + syst_JES_Zjet_Stat6: 6.49354300e-02 + syst_JES_Zjet_Stat7: 1.37908547e-01 + syst_JES_Zjet_Stat8: 2.70448128e-01 + syst_JES_Zjet_Stat9: 7.81730368e-01 + syst_JES_Zjet_Veto: 7.52095898e-01 + syst_JES_Zjet_dPhi: 8.45262125e-01 syst_PRW: 0.2409 syst_Unfolding_bias: 0.7309 - syst_cleaning: 2.8457594768356653 + syst_cleaning: 2.84575948e+00 syst_lumi: 11.488 - stat: 2.0823 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 4.293721462787263 - syst_JER_NP1: 0.44370731343983955 - syst_JER_NP2: 0.406394598881432 - syst_JER_NP3: 1.0346248341790372 - syst_JER_NP4: 0.18130049641410254 - syst_JER_NP5: 0.24091830565567243 - syst_JER_NP6: 0.3322934245512541 - syst_JER_NP7: 0.29521708537955593 - syst_JER_NP8: 0.20650435225437744 - syst_JES_EtaIntercalibration_Modelling: 5.601520597123606 - syst_JES_EtaIntercalibration_NonClosure: 9.072482130035407e-08 - syst_JES_EtaIntercalibration_Stat0: 8.622148920077871e-07 + syst_JER_NP0: 4.29372146e+00 + syst_JER_NP1: 4.43707313e-01 + syst_JER_NP2: 4.06394599e-01 + syst_JER_NP3: 1.03462483e+00 + syst_JER_NP4: 1.81300496e-01 + syst_JER_NP5: 2.40918306e-01 + syst_JER_NP6: 3.32293425e-01 + syst_JER_NP7: 2.95217085e-01 + syst_JER_NP8: 2.06504352e-01 + syst_JES_EtaIntercalibration_Modelling: 5.60152060e+00 + syst_JES_EtaIntercalibration_NonClosure: 9.07248213e-08 + syst_JES_EtaIntercalibration_Stat0: 8.62214892e-07 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 0.0002835998566202036 - syst_JES_EtaIntercalibration_Stat101: 0.0062178126982082695 - syst_JES_EtaIntercalibration_Stat102: 0.012321863688176397 - syst_JES_EtaIntercalibration_Stat103: 0.03855570612762785 - syst_JES_EtaIntercalibration_Stat104: 0.0006785524058611832 - syst_JES_EtaIntercalibration_Stat105: 6.773720894013866e-07 - syst_JES_EtaIntercalibration_Stat106: 8.621282894674088e-07 - syst_JES_EtaIntercalibration_Stat107: 8.621282894674088e-07 - syst_JES_EtaIntercalibration_Stat108: 8.621282894674088e-07 - syst_JES_EtaIntercalibration_Stat109: 8.621282894674088e-07 + syst_JES_EtaIntercalibration_Stat100: 2.83599857e-04 + syst_JES_EtaIntercalibration_Stat101: 6.21781270e-03 + syst_JES_EtaIntercalibration_Stat102: 1.23218637e-02 + syst_JES_EtaIntercalibration_Stat103: 3.85557061e-02 + syst_JES_EtaIntercalibration_Stat104: 6.78552406e-04 + syst_JES_EtaIntercalibration_Stat105: 6.77372089e-07 + syst_JES_EtaIntercalibration_Stat106: 8.62128289e-07 + syst_JES_EtaIntercalibration_Stat107: 8.62128289e-07 + syst_JES_EtaIntercalibration_Stat108: 8.62128289e-07 + syst_JES_EtaIntercalibration_Stat109: 8.62128289e-07 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 9.083984409387766e-05 - syst_JES_EtaIntercalibration_Stat111: 0.040660527234653514 - syst_JES_EtaIntercalibration_Stat112: 0.3352554361975358 - syst_JES_EtaIntercalibration_Stat113: 0.40179435271666025 - syst_JES_EtaIntercalibration_Stat114: 0.11373267373538704 - syst_JES_EtaIntercalibration_Stat115: 0.002359919473202423 - syst_JES_EtaIntercalibration_Stat116: 0.000237839533278611 - syst_JES_EtaIntercalibration_Stat117: 8.621282894674088e-07 - syst_JES_EtaIntercalibration_Stat118: 8.621282894674088e-07 - syst_JES_EtaIntercalibration_Stat119: 8.621282894674088e-07 + syst_JES_EtaIntercalibration_Stat110: 9.08398441e-05 + syst_JES_EtaIntercalibration_Stat111: 4.06605272e-02 + syst_JES_EtaIntercalibration_Stat112: 3.35255436e-01 + syst_JES_EtaIntercalibration_Stat113: 4.01794353e-01 + syst_JES_EtaIntercalibration_Stat114: 1.13732674e-01 + syst_JES_EtaIntercalibration_Stat115: 2.35991947e-03 + syst_JES_EtaIntercalibration_Stat116: 2.37839533e-04 + syst_JES_EtaIntercalibration_Stat117: 8.62128289e-07 + syst_JES_EtaIntercalibration_Stat118: 8.62128289e-07 + syst_JES_EtaIntercalibration_Stat119: 8.62128289e-07 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 0.0028881947216211025 - syst_JES_EtaIntercalibration_Stat121: 0.10985168216736602 - syst_JES_EtaIntercalibration_Stat122: 0.29188012950524744 - syst_JES_EtaIntercalibration_Stat123: 0.29685738579324583 - syst_JES_EtaIntercalibration_Stat124: 0.06440409303763232 - syst_JES_EtaIntercalibration_Stat125: 0.0007271149290174147 - syst_JES_EtaIntercalibration_Stat126: 8.621282894674088e-07 - syst_JES_EtaIntercalibration_Stat127: 8.621282894674088e-07 - syst_JES_EtaIntercalibration_Stat128: 8.621282894674088e-07 - syst_JES_EtaIntercalibration_Stat129: 0.01605241541793633 + syst_JES_EtaIntercalibration_Stat120: 2.88819472e-03 + syst_JES_EtaIntercalibration_Stat121: 1.09851682e-01 + syst_JES_EtaIntercalibration_Stat122: 2.91880130e-01 + syst_JES_EtaIntercalibration_Stat123: 2.96857386e-01 + syst_JES_EtaIntercalibration_Stat124: 6.44040930e-02 + syst_JES_EtaIntercalibration_Stat125: 7.27114929e-04 + syst_JES_EtaIntercalibration_Stat126: 8.62128289e-07 + syst_JES_EtaIntercalibration_Stat127: 8.62128289e-07 + syst_JES_EtaIntercalibration_Stat128: 8.62128289e-07 + syst_JES_EtaIntercalibration_Stat129: 1.60524154e-02 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 0.2616764175465569 - syst_JES_EtaIntercalibration_Stat131: 1.0272038940736157 - syst_JES_EtaIntercalibration_Stat132: 1.5295001634521 - syst_JES_EtaIntercalibration_Stat133: 0.3859463455909384 - syst_JES_EtaIntercalibration_Stat134: 0.006747615949355743 - syst_JES_EtaIntercalibration_Stat135: 0.0002375507682580715 + syst_JES_EtaIntercalibration_Stat130: 2.61676418e-01 + syst_JES_EtaIntercalibration_Stat131: 1.02720389e+00 + syst_JES_EtaIntercalibration_Stat132: 1.52950016e+00 + syst_JES_EtaIntercalibration_Stat133: 3.85946346e-01 + syst_JES_EtaIntercalibration_Stat134: 6.74761595e-03 + syst_JES_EtaIntercalibration_Stat135: 2.37550768e-04 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 syst_JES_EtaIntercalibration_Stat138: 0.0 - syst_JES_EtaIntercalibration_Stat139: 0.007650251891277829 - syst_JES_EtaIntercalibration_Stat14: 0.0003075355701495845 - syst_JES_EtaIntercalibration_Stat140: 0.36579927214252356 - syst_JES_EtaIntercalibration_Stat141: 1.4053314226544569 - syst_JES_EtaIntercalibration_Stat142: 0.8864053756605946 - syst_JES_EtaIntercalibration_Stat143: 0.2513026064329616 - syst_JES_EtaIntercalibration_Stat144: 0.01187473961819795 + syst_JES_EtaIntercalibration_Stat139: 7.65025189e-03 + syst_JES_EtaIntercalibration_Stat14: 3.07535570e-04 + syst_JES_EtaIntercalibration_Stat140: 3.65799272e-01 + syst_JES_EtaIntercalibration_Stat141: 1.40533142e+00 + syst_JES_EtaIntercalibration_Stat142: 8.86405376e-01 + syst_JES_EtaIntercalibration_Stat143: 2.51302606e-01 + syst_JES_EtaIntercalibration_Stat144: 1.18747396e-02 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 0.0019869007901754934 - syst_JES_EtaIntercalibration_Stat148: 0.04023750582478988 - syst_JES_EtaIntercalibration_Stat149: 0.34008831206026474 - syst_JES_EtaIntercalibration_Stat15: 0.00031111300166177566 - syst_JES_EtaIntercalibration_Stat150: 0.456725418057721 - syst_JES_EtaIntercalibration_Stat151: 0.17179642021881597 - syst_JES_EtaIntercalibration_Stat152: 0.0025554741609924367 + syst_JES_EtaIntercalibration_Stat147: 1.98690079e-03 + syst_JES_EtaIntercalibration_Stat148: 4.02375058e-02 + syst_JES_EtaIntercalibration_Stat149: 3.40088312e-01 + syst_JES_EtaIntercalibration_Stat15: 3.11113002e-04 + syst_JES_EtaIntercalibration_Stat150: 4.56725418e-01 + syst_JES_EtaIntercalibration_Stat151: 1.71796420e-01 + syst_JES_EtaIntercalibration_Stat152: 2.55547416e-03 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 syst_JES_EtaIntercalibration_Stat156: 0.0 - syst_JES_EtaIntercalibration_Stat157: 0.00225910180547491 - syst_JES_EtaIntercalibration_Stat158: 0.1376187748819179 - syst_JES_EtaIntercalibration_Stat159: 0.5307682804199965 - syst_JES_EtaIntercalibration_Stat16: 0.00030981460467310125 - syst_JES_EtaIntercalibration_Stat160: 0.3919664808054383 - syst_JES_EtaIntercalibration_Stat161: 0.09621333106695766 - syst_JES_EtaIntercalibration_Stat162: 0.004093067994487753 + syst_JES_EtaIntercalibration_Stat157: 2.25910181e-03 + syst_JES_EtaIntercalibration_Stat158: 1.37618775e-01 + syst_JES_EtaIntercalibration_Stat159: 5.30768280e-01 + syst_JES_EtaIntercalibration_Stat16: 3.09814605e-04 + syst_JES_EtaIntercalibration_Stat160: 3.91966481e-01 + syst_JES_EtaIntercalibration_Stat161: 9.62133311e-02 + syst_JES_EtaIntercalibration_Stat162: 4.09306799e-03 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 0.0013556780195440952 - syst_JES_EtaIntercalibration_Stat166: 0.011307507859824815 - syst_JES_EtaIntercalibration_Stat167: 0.042554992033837814 - syst_JES_EtaIntercalibration_Stat168: 0.06514181759822181 - syst_JES_EtaIntercalibration_Stat169: 0.04330662305006013 - syst_JES_EtaIntercalibration_Stat17: 7.149905733644326e-07 - syst_JES_EtaIntercalibration_Stat170: 0.0019997468081922273 + syst_JES_EtaIntercalibration_Stat165: 1.35567802e-03 + syst_JES_EtaIntercalibration_Stat166: 1.13075079e-02 + syst_JES_EtaIntercalibration_Stat167: 4.25549920e-02 + syst_JES_EtaIntercalibration_Stat168: 6.51418176e-02 + syst_JES_EtaIntercalibration_Stat169: 4.33066231e-02 + syst_JES_EtaIntercalibration_Stat17: 7.14990573e-07 + syst_JES_EtaIntercalibration_Stat170: 1.99974681e-03 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 - syst_JES_EtaIntercalibration_Stat175: 0.0016645008310129227 - syst_JES_EtaIntercalibration_Stat176: 0.013790190526240018 - syst_JES_EtaIntercalibration_Stat177: 0.012959772789289172 - syst_JES_EtaIntercalibration_Stat178: 0.007758587629684929 - syst_JES_EtaIntercalibration_Stat179: 0.01983046898083855 + syst_JES_EtaIntercalibration_Stat175: 1.66450083e-03 + syst_JES_EtaIntercalibration_Stat176: 1.37901905e-02 + syst_JES_EtaIntercalibration_Stat177: 1.29597728e-02 + syst_JES_EtaIntercalibration_Stat178: 7.75858763e-03 + syst_JES_EtaIntercalibration_Stat179: 1.98304690e-02 syst_JES_EtaIntercalibration_Stat18: 0.0 - syst_JES_EtaIntercalibration_Stat180: 0.000816540054130843 + syst_JES_EtaIntercalibration_Stat180: 8.16540054e-04 syst_JES_EtaIntercalibration_Stat181: 0.0 - syst_JES_EtaIntercalibration_Stat182: 0.0011471406932020152 - syst_JES_EtaIntercalibration_Stat183: 0.022149794581440254 - syst_JES_EtaIntercalibration_Stat184: 0.07738500290754016 - syst_JES_EtaIntercalibration_Stat185: 0.07630935460348226 - syst_JES_EtaIntercalibration_Stat186: 0.02114731188591117 - syst_JES_EtaIntercalibration_Stat187: 0.0003161182319955621 + syst_JES_EtaIntercalibration_Stat182: 1.14714069e-03 + syst_JES_EtaIntercalibration_Stat183: 2.21497946e-02 + syst_JES_EtaIntercalibration_Stat184: 7.73850029e-02 + syst_JES_EtaIntercalibration_Stat185: 7.63093546e-02 + syst_JES_EtaIntercalibration_Stat186: 2.11473119e-02 + syst_JES_EtaIntercalibration_Stat187: 3.16118232e-04 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 - syst_JES_EtaIntercalibration_Stat192: 0.0008459336144166397 - syst_JES_EtaIntercalibration_Stat193: 0.03144235519168372 - syst_JES_EtaIntercalibration_Stat194: 0.10093933376043256 - syst_JES_EtaIntercalibration_Stat195: 0.06990488466480724 - syst_JES_EtaIntercalibration_Stat196: 0.01597551210446789 - syst_JES_EtaIntercalibration_Stat197: 0.0007695150225954006 - syst_JES_EtaIntercalibration_Stat198: 0.0026032540924773367 - syst_JES_EtaIntercalibration_Stat199: 0.0076417633436269145 + syst_JES_EtaIntercalibration_Stat192: 8.45933614e-04 + syst_JES_EtaIntercalibration_Stat193: 3.14423552e-02 + syst_JES_EtaIntercalibration_Stat194: 1.00939334e-01 + syst_JES_EtaIntercalibration_Stat195: 6.99048847e-02 + syst_JES_EtaIntercalibration_Stat196: 1.59755121e-02 + syst_JES_EtaIntercalibration_Stat197: 7.69515023e-04 + syst_JES_EtaIntercalibration_Stat198: 2.60325409e-03 + syst_JES_EtaIntercalibration_Stat199: 7.64176334e-03 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 0.008901131950488096 - syst_JES_EtaIntercalibration_Stat201: 0.005674977422862579 - syst_JES_EtaIntercalibration_Stat202: 4.032327382501947e-05 + syst_JES_EtaIntercalibration_Stat200: 8.90113195e-03 + syst_JES_EtaIntercalibration_Stat201: 5.67497742e-03 + syst_JES_EtaIntercalibration_Stat202: 4.03232738e-05 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 - syst_JES_EtaIntercalibration_Stat207: 0.0005683062634486796 - syst_JES_EtaIntercalibration_Stat208: 0.0028946725203380084 - syst_JES_EtaIntercalibration_Stat209: 0.008469591769973332 + syst_JES_EtaIntercalibration_Stat207: 5.68306263e-04 + syst_JES_EtaIntercalibration_Stat208: 2.89467252e-03 + syst_JES_EtaIntercalibration_Stat209: 8.46959177e-03 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 0.0025131268869677073 - syst_JES_EtaIntercalibration_Stat211: 0.0004428941634295941 - syst_JES_EtaIntercalibration_Stat212: 3.259542452553732e-05 - syst_JES_EtaIntercalibration_Stat213: 5.717461674554539e-05 - syst_JES_EtaIntercalibration_Stat214: 2.1444745071170698e-05 - syst_JES_EtaIntercalibration_Stat215: 4.968385460693274e-07 + syst_JES_EtaIntercalibration_Stat210: 2.51312689e-03 + syst_JES_EtaIntercalibration_Stat211: 4.42894163e-04 + syst_JES_EtaIntercalibration_Stat212: 3.25954245e-05 + syst_JES_EtaIntercalibration_Stat213: 5.71746167e-05 + syst_JES_EtaIntercalibration_Stat214: 2.14447451e-05 + syst_JES_EtaIntercalibration_Stat215: 4.96838546e-07 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 syst_JES_EtaIntercalibration_Stat219: 0.0 - syst_JES_EtaIntercalibration_Stat22: 8.622148920077871e-07 - syst_JES_EtaIntercalibration_Stat220: 3.2701119246900407e-09 - syst_JES_EtaIntercalibration_Stat221: 2.2290017945259714e-05 - syst_JES_EtaIntercalibration_Stat222: 3.127923036137558e-05 - syst_JES_EtaIntercalibration_Stat223: 4.611140531365315e-05 - syst_JES_EtaIntercalibration_Stat224: 5.218369165745176e-10 - syst_JES_EtaIntercalibration_Stat225: 8.536185023182195e-10 - syst_JES_EtaIntercalibration_Stat226: 3.804449601540317e-16 - syst_JES_EtaIntercalibration_Stat227: 1.2695934455795577e-26 + syst_JES_EtaIntercalibration_Stat22: 8.62214892e-07 + syst_JES_EtaIntercalibration_Stat220: 3.27011192e-09 + syst_JES_EtaIntercalibration_Stat221: 2.22900179e-05 + syst_JES_EtaIntercalibration_Stat222: 3.12792304e-05 + syst_JES_EtaIntercalibration_Stat223: 4.61114053e-05 + syst_JES_EtaIntercalibration_Stat224: 5.21836917e-10 + syst_JES_EtaIntercalibration_Stat225: 8.53618502e-10 + syst_JES_EtaIntercalibration_Stat226: 3.80444960e-16 + syst_JES_EtaIntercalibration_Stat227: 1.26959345e-26 syst_JES_EtaIntercalibration_Stat228: 0.0 syst_JES_EtaIntercalibration_Stat229: 0.0 - syst_JES_EtaIntercalibration_Stat23: 8.622148920077871e-07 + syst_JES_EtaIntercalibration_Stat23: 8.62214892e-07 syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 - syst_JES_EtaIntercalibration_Stat232: 5.366753824091204e-21 - syst_JES_EtaIntercalibration_Stat233: 1.7225245281272486e-12 - syst_JES_EtaIntercalibration_Stat234: 1.114089972802915e-09 - syst_JES_EtaIntercalibration_Stat235: 1.0339944716970203e-09 - syst_JES_EtaIntercalibration_Stat236: 3.159795557864464e-26 - syst_JES_EtaIntercalibration_Stat237: 2.3954262073429507e-26 + syst_JES_EtaIntercalibration_Stat232: 5.36675382e-21 + syst_JES_EtaIntercalibration_Stat233: 1.72252453e-12 + syst_JES_EtaIntercalibration_Stat234: 1.11408997e-09 + syst_JES_EtaIntercalibration_Stat235: 1.03399447e-09 + syst_JES_EtaIntercalibration_Stat236: 3.15979556e-26 + syst_JES_EtaIntercalibration_Stat237: 2.39542621e-26 syst_JES_EtaIntercalibration_Stat238: 0.0 syst_JES_EtaIntercalibration_Stat239: 0.0 syst_JES_EtaIntercalibration_Stat24: 0.0 @@ -35561,8275 +35561,8275 @@ bins: syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 syst_JES_EtaIntercalibration_Stat243: 0.0 - syst_JES_EtaIntercalibration_Stat244: 4.14624022458902e-33 - syst_JES_EtaIntercalibration_Stat245: 5.402260051589578e-21 - syst_JES_EtaIntercalibration_Stat25: 7.120460869915655e-07 - syst_JES_EtaIntercalibration_Stat26: 7.374119811882635e-05 - syst_JES_EtaIntercalibration_Stat27: 0.0013049040271223013 - syst_JES_EtaIntercalibration_Stat28: 0.004105311924811561 - syst_JES_EtaIntercalibration_Stat29: 0.0010688073388127534 + syst_JES_EtaIntercalibration_Stat244: 4.14624022e-33 + syst_JES_EtaIntercalibration_Stat245: 5.40226005e-21 + syst_JES_EtaIntercalibration_Stat25: 7.12046087e-07 + syst_JES_EtaIntercalibration_Stat26: 7.37411981e-05 + syst_JES_EtaIntercalibration_Stat27: 1.30490403e-03 + syst_JES_EtaIntercalibration_Stat28: 4.10531192e-03 + syst_JES_EtaIntercalibration_Stat29: 1.06880734e-03 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 7.112201475998835e-06 + syst_JES_EtaIntercalibration_Stat30: 7.11220148e-06 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 1.1949986221226365e-06 - syst_JES_EtaIntercalibration_Stat36: 0.000246399969713878 - syst_JES_EtaIntercalibration_Stat37: 0.0012440286602405913 - syst_JES_EtaIntercalibration_Stat38: 0.0012436481616598803 - syst_JES_EtaIntercalibration_Stat39: 0.0008652246928255111 - syst_JES_EtaIntercalibration_Stat4: 9.762704376861976e-07 - syst_JES_EtaIntercalibration_Stat40: 3.9222290537397225e-07 + syst_JES_EtaIntercalibration_Stat35: 1.19499862e-06 + syst_JES_EtaIntercalibration_Stat36: 2.46399970e-04 + syst_JES_EtaIntercalibration_Stat37: 1.24402866e-03 + syst_JES_EtaIntercalibration_Stat38: 1.24364816e-03 + syst_JES_EtaIntercalibration_Stat39: 8.65224693e-04 + syst_JES_EtaIntercalibration_Stat4: 9.76270438e-07 + syst_JES_EtaIntercalibration_Stat40: 3.92222905e-07 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 - syst_JES_EtaIntercalibration_Stat44: 8.622148920077871e-07 + syst_JES_EtaIntercalibration_Stat44: 8.62214892e-07 syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 - syst_JES_EtaIntercalibration_Stat47: 7.123058946127008e-07 - syst_JES_EtaIntercalibration_Stat48: 0.0003431818614087872 - syst_JES_EtaIntercalibration_Stat49: 0.0021357312565020905 - syst_JES_EtaIntercalibration_Stat5: 4.2758115019256875e-05 - syst_JES_EtaIntercalibration_Stat50: 0.0027030228911350345 - syst_JES_EtaIntercalibration_Stat51: 0.0015181090433496534 - syst_JES_EtaIntercalibration_Stat52: 2.111060987909871e-05 + syst_JES_EtaIntercalibration_Stat47: 7.12305895e-07 + syst_JES_EtaIntercalibration_Stat48: 3.43181861e-04 + syst_JES_EtaIntercalibration_Stat49: 2.13573126e-03 + syst_JES_EtaIntercalibration_Stat5: 4.27581150e-05 + syst_JES_EtaIntercalibration_Stat50: 2.70302289e-03 + syst_JES_EtaIntercalibration_Stat51: 1.51810904e-03 + syst_JES_EtaIntercalibration_Stat52: 2.11106099e-05 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 syst_JES_EtaIntercalibration_Stat56: 0.0 - syst_JES_EtaIntercalibration_Stat57: 0.0003067931888736572 - syst_JES_EtaIntercalibration_Stat58: 0.000882654824945743 - syst_JES_EtaIntercalibration_Stat59: 0.0019942242269865244 - syst_JES_EtaIntercalibration_Stat6: 0.00045415505061597634 - syst_JES_EtaIntercalibration_Stat60: 0.002550598727750016 - syst_JES_EtaIntercalibration_Stat61: 0.0003758140480343969 - syst_JES_EtaIntercalibration_Stat62: 7.293665950672542e-07 + syst_JES_EtaIntercalibration_Stat57: 3.06793189e-04 + syst_JES_EtaIntercalibration_Stat58: 8.82654825e-04 + syst_JES_EtaIntercalibration_Stat59: 1.99422423e-03 + syst_JES_EtaIntercalibration_Stat6: 4.54155051e-04 + syst_JES_EtaIntercalibration_Stat60: 2.55059873e-03 + syst_JES_EtaIntercalibration_Stat61: 3.75814048e-04 + syst_JES_EtaIntercalibration_Stat62: 7.29366595e-07 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 - syst_JES_EtaIntercalibration_Stat69: 1.031402792317337e-06 - syst_JES_EtaIntercalibration_Stat7: 2.5150172703184368e-06 - syst_JES_EtaIntercalibration_Stat70: 0.0019625103184442113 - syst_JES_EtaIntercalibration_Stat71: 0.010371225807492574 - syst_JES_EtaIntercalibration_Stat72: 0.019044844361401327 - syst_JES_EtaIntercalibration_Stat73: 0.013635874281009633 - syst_JES_EtaIntercalibration_Stat74: 0.0005759155667283182 + syst_JES_EtaIntercalibration_Stat69: 1.03140279e-06 + syst_JES_EtaIntercalibration_Stat7: 2.51501727e-06 + syst_JES_EtaIntercalibration_Stat70: 1.96251032e-03 + syst_JES_EtaIntercalibration_Stat71: 1.03712258e-02 + syst_JES_EtaIntercalibration_Stat72: 1.90448444e-02 + syst_JES_EtaIntercalibration_Stat73: 1.36358743e-02 + syst_JES_EtaIntercalibration_Stat74: 5.75915567e-04 syst_JES_EtaIntercalibration_Stat75: 0.0 syst_JES_EtaIntercalibration_Stat76: 0.0 syst_JES_EtaIntercalibration_Stat77: 0.0 syst_JES_EtaIntercalibration_Stat78: 0.0 - syst_JES_EtaIntercalibration_Stat79: 0.00030986064738846723 + syst_JES_EtaIntercalibration_Stat79: 3.09860647e-04 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 0.004055341015253834 - syst_JES_EtaIntercalibration_Stat81: 0.0023318561276373805 - syst_JES_EtaIntercalibration_Stat82: 0.0018089903592888492 - syst_JES_EtaIntercalibration_Stat83: 0.0031549274761870517 - syst_JES_EtaIntercalibration_Stat84: 4.1175571337869736e-07 - syst_JES_EtaIntercalibration_Stat85: 8.621282894674088e-07 - syst_JES_EtaIntercalibration_Stat86: 8.621282894674088e-07 - syst_JES_EtaIntercalibration_Stat87: 8.621282894674088e-07 - syst_JES_EtaIntercalibration_Stat88: 8.621282894674088e-07 - syst_JES_EtaIntercalibration_Stat89: 8.621282894674088e-07 + syst_JES_EtaIntercalibration_Stat80: 4.05534102e-03 + syst_JES_EtaIntercalibration_Stat81: 2.33185613e-03 + syst_JES_EtaIntercalibration_Stat82: 1.80899036e-03 + syst_JES_EtaIntercalibration_Stat83: 3.15492748e-03 + syst_JES_EtaIntercalibration_Stat84: 4.11755713e-07 + syst_JES_EtaIntercalibration_Stat85: 8.62128289e-07 + syst_JES_EtaIntercalibration_Stat86: 8.62128289e-07 + syst_JES_EtaIntercalibration_Stat87: 8.62128289e-07 + syst_JES_EtaIntercalibration_Stat88: 8.62128289e-07 + syst_JES_EtaIntercalibration_Stat89: 8.62128289e-07 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 0.006286653004580418 - syst_JES_EtaIntercalibration_Stat92: 0.026838063920484278 - syst_JES_EtaIntercalibration_Stat93: 0.048773268036907264 - syst_JES_EtaIntercalibration_Stat94: 0.014306939531220505 - syst_JES_EtaIntercalibration_Stat95: 0.0008149290582621287 - syst_JES_EtaIntercalibration_Stat96: 0.000237839533278611 - syst_JES_EtaIntercalibration_Stat97: 8.621282894674088e-07 - syst_JES_EtaIntercalibration_Stat98: 8.621282894674088e-07 - syst_JES_EtaIntercalibration_Stat99: 8.621282894674088e-07 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0005400474736971625 - syst_JES_Flavour_Comp: 0.37999277295759193 - syst_JES_Flavour_Response: 8.45314491772145 - syst_JES_Gjet_Generator: 6.153947899519463 - syst_JES_Gjet_OOC: 3.494495779078864 - syst_JES_Gjet_Purity: 1.092570016063044 + syst_JES_EtaIntercalibration_Stat91: 6.28665300e-03 + syst_JES_EtaIntercalibration_Stat92: 2.68380639e-02 + syst_JES_EtaIntercalibration_Stat93: 4.87732680e-02 + syst_JES_EtaIntercalibration_Stat94: 1.43069395e-02 + syst_JES_EtaIntercalibration_Stat95: 8.14929058e-04 + syst_JES_EtaIntercalibration_Stat96: 2.37839533e-04 + syst_JES_EtaIntercalibration_Stat97: 8.62128289e-07 + syst_JES_EtaIntercalibration_Stat98: 8.62128289e-07 + syst_JES_EtaIntercalibration_Stat99: 8.62128289e-07 + syst_JES_EtaIntercalibration_TotalStat_MJB: 5.40047474e-04 + syst_JES_Flavour_Comp: 3.79992773e-01 + syst_JES_Flavour_Response: 8.45314492e+00 + syst_JES_Gjet_Generator: 6.15394790e+00 + syst_JES_Gjet_OOC: 3.49449578e+00 + syst_JES_Gjet_Purity: 1.09257002e+00 syst_JES_Gjet_Stat1: 0.0 - syst_JES_Gjet_Stat10: 0.3843373095342163 - syst_JES_Gjet_Stat11: 0.08234713961147087 - syst_JES_Gjet_Stat12: 0.06512600920523229 - syst_JES_Gjet_Stat13: 0.03762299429869983 - syst_JES_Gjet_Stat14: 0.00035076966801592184 - syst_JES_Gjet_Stat15: 0.0002293333645046006 - syst_JES_Gjet_Stat2: 0.009339217954411387 + syst_JES_Gjet_Stat10: 3.84337310e-01 + syst_JES_Gjet_Stat11: 8.23471396e-02 + syst_JES_Gjet_Stat12: 6.51260092e-02 + syst_JES_Gjet_Stat13: 3.76229943e-02 + syst_JES_Gjet_Stat14: 3.50769668e-04 + syst_JES_Gjet_Stat15: 2.29333365e-04 + syst_JES_Gjet_Stat2: 9.33921795e-03 syst_JES_Gjet_Stat3: 0.0 - syst_JES_Gjet_Stat4: 0.013198227153674845 - syst_JES_Gjet_Stat5: 0.02320960792430583 - syst_JES_Gjet_Stat6: 0.0951228263877814 - syst_JES_Gjet_Stat7: 0.17940445925338644 - syst_JES_Gjet_Stat8: 0.15690006373485002 - syst_JES_Gjet_Stat9: 0.304622007576603 - syst_JES_Gjet_Veto: 1.4208766193797406 - syst_JES_Gjet_dPhi: 0.41157072524051075 - syst_JES_LArESZee: 5.832509644226917 - syst_JES_LArEsmear: 0.4590711056034784 - syst_JES_LAr_JVT: 0.680696011447107 - syst_JES_MJB_Alpha: 0.0037265073124844402 - syst_JES_MJB_Asym: 2.213632455675682e-05 - syst_JES_MJB_Beta: 0.00017502373410483525 - syst_JES_MJB_Fragmentation: 8.196291762419149e-05 - syst_JES_MJB_Stat1: 0.011283444985907451 - syst_JES_MJB_Stat10: 2.504088007638709e-16 + syst_JES_Gjet_Stat4: 1.31982272e-02 + syst_JES_Gjet_Stat5: 2.32096079e-02 + syst_JES_Gjet_Stat6: 9.51228264e-02 + syst_JES_Gjet_Stat7: 1.79404459e-01 + syst_JES_Gjet_Stat8: 1.56900064e-01 + syst_JES_Gjet_Stat9: 3.04622008e-01 + syst_JES_Gjet_Veto: 1.42087662e+00 + syst_JES_Gjet_dPhi: 4.11570725e-01 + syst_JES_LArESZee: 5.83250964e+00 + syst_JES_LArEsmear: 4.59071106e-01 + syst_JES_LAr_JVT: 6.80696011e-01 + syst_JES_MJB_Alpha: 3.72650731e-03 + syst_JES_MJB_Asym: 2.21363246e-05 + syst_JES_MJB_Beta: 1.75023734e-04 + syst_JES_MJB_Fragmentation: 8.19629176e-05 + syst_JES_MJB_Stat1: 1.12834450e-02 + syst_JES_MJB_Stat10: 2.50408801e-16 syst_JES_MJB_Stat11: 0.0 - syst_JES_MJB_Stat12: 6.1427181890430234e-21 - syst_JES_MJB_Stat13: 2.464708299170512e-26 - syst_JES_MJB_Stat14: 1.4116214081686353e-33 + syst_JES_MJB_Stat12: 6.14271819e-21 + syst_JES_MJB_Stat13: 2.46470830e-26 + syst_JES_MJB_Stat14: 1.41162141e-33 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 0.010400099074047325 - syst_JES_MJB_Stat3: 0.003713516931427673 - syst_JES_MJB_Stat4: 0.00011483496854181656 + syst_JES_MJB_Stat2: 1.04000991e-02 + syst_JES_MJB_Stat3: 3.71351693e-03 + syst_JES_MJB_Stat4: 1.14834969e-04 syst_JES_MJB_Stat5: 0.0 - syst_JES_MJB_Stat6: 3.6130579845886784e-40 + syst_JES_MJB_Stat6: 3.61305798e-40 syst_JES_MJB_Stat7: 0.0 syst_JES_MJB_Stat8: 0.0 - syst_JES_MJB_Stat9: 1.911318066152256e-16 - syst_JES_MJB_Threshold: 0.030501956962450786 - syst_JES_Pileup_MuOffset: 7.737180171747004e-05 - syst_JES_Pileup_NPVOffset: 0.25455421328275046 - syst_JES_Pileup_Pt_term: 1.5348107472910135 - syst_JES_Pileup_Rho_topology: 2.2022615648464647 - syst_JES_PunchThrough_MC15: 0.029729170651471258 + syst_JES_MJB_Stat9: 1.91131807e-16 + syst_JES_MJB_Threshold: 3.05019570e-02 + syst_JES_Pileup_MuOffset: 7.73718017e-05 + syst_JES_Pileup_NPVOffset: 2.54554213e-01 + syst_JES_Pileup_Pt_term: 1.53481075e+00 + syst_JES_Pileup_Rho_topology: 2.20226156e+00 + syst_JES_PunchThrough_MC15: 2.97291707e-02 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 5.501783597161924 - syst_JES_Zjet_MuScale: 0.37726346231778135 - syst_JES_Zjet_MuSmearID: 0.07468468517708299 - syst_JES_Zjet_MuSmearMS: 0.4716253465410865 - syst_JES_Zjet_OOC: 1.8910528813335707 - syst_JES_Zjet_Stat1: 0.028132946432963612 - syst_JES_Zjet_Stat10: 0.6974000143389733 - syst_JES_Zjet_Stat11: 0.8911890708486051 - syst_JES_Zjet_Stat12: 0.2698541340706123 - syst_JES_Zjet_Stat13: 0.06105561460668462 - syst_JES_Zjet_Stat2: 4.1759744970485626e-06 - syst_JES_Zjet_Stat3: 0.014420414236421921 - syst_JES_Zjet_Stat4: 0.01489727099169509 - syst_JES_Zjet_Stat5: 0.020238992033013152 - syst_JES_Zjet_Stat6: 0.028766867660557 - syst_JES_Zjet_Stat7: 0.05757761609340908 - syst_JES_Zjet_Stat8: 0.09218410966647125 - syst_JES_Zjet_Stat9: 0.28360089474470984 - syst_JES_Zjet_Veto: 0.38287171154317473 - syst_JES_Zjet_dPhi: 0.3869066554092861 + syst_JES_Zjet_MC: 5.50178360e+00 + syst_JES_Zjet_MuScale: 3.77263462e-01 + syst_JES_Zjet_MuSmearID: 7.46846852e-02 + syst_JES_Zjet_MuSmearMS: 4.71625347e-01 + syst_JES_Zjet_OOC: 1.89105288e+00 + syst_JES_Zjet_Stat1: 2.81329464e-02 + syst_JES_Zjet_Stat10: 6.97400014e-01 + syst_JES_Zjet_Stat11: 8.91189071e-01 + syst_JES_Zjet_Stat12: 2.69854134e-01 + syst_JES_Zjet_Stat13: 6.10556146e-02 + syst_JES_Zjet_Stat2: 4.17597450e-06 + syst_JES_Zjet_Stat3: 1.44204142e-02 + syst_JES_Zjet_Stat4: 1.48972710e-02 + syst_JES_Zjet_Stat5: 2.02389920e-02 + syst_JES_Zjet_Stat6: 2.87668677e-02 + syst_JES_Zjet_Stat7: 5.75776161e-02 + syst_JES_Zjet_Stat8: 9.21841097e-02 + syst_JES_Zjet_Stat9: 2.83600895e-01 + syst_JES_Zjet_Veto: 3.82871712e-01 + syst_JES_Zjet_dPhi: 3.86906655e-01 syst_PRW: 0.2953 syst_Unfolding_bias: 0.11509 - syst_cleaning: 1.565773930042265 + syst_cleaning: 1.56577393e+00 syst_lumi: 6.252 - stat: 1.2459 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 2.2576245812800675 - syst_JER_NP1: 0.16780482710577788 - syst_JER_NP2: 0.3316044744873024 - syst_JER_NP3: 0.5604815853353257 - syst_JER_NP4: 0.10254028184084535 - syst_JER_NP5: 0.1619606356495306 - syst_JER_NP6: 0.1815559624468445 - syst_JER_NP7: 0.17815395027896516 - syst_JER_NP8: 0.11447830580507383 - syst_JES_EtaIntercalibration_Modelling: 3.0981015154445792 - syst_JES_EtaIntercalibration_NonClosure: 2.5184018573291995e-06 - syst_JES_EtaIntercalibration_Stat0: 6.923007077852803e-08 + syst_JER_NP0: 2.25762458e+00 + syst_JER_NP1: 1.67804827e-01 + syst_JER_NP2: 3.31604474e-01 + syst_JER_NP3: 5.60481585e-01 + syst_JER_NP4: 1.02540282e-01 + syst_JER_NP5: 1.61960636e-01 + syst_JER_NP6: 1.81555962e-01 + syst_JER_NP7: 1.78153950e-01 + syst_JER_NP8: 1.14478306e-01 + syst_JES_EtaIntercalibration_Modelling: 3.09810152e+00 + syst_JES_EtaIntercalibration_NonClosure: 2.51840186e-06 + syst_JES_EtaIntercalibration_Stat0: 6.92300708e-08 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 0.00011440937561231596 - syst_JES_EtaIntercalibration_Stat101: 0.003456730815380336 - syst_JES_EtaIntercalibration_Stat102: 0.001778081347970334 - syst_JES_EtaIntercalibration_Stat103: 0.010337835593101682 - syst_JES_EtaIntercalibration_Stat104: 0.0014390547826611743 - syst_JES_EtaIntercalibration_Stat105: 4.908825190409616e-08 - syst_JES_EtaIntercalibration_Stat106: 6.923007077852803e-08 - syst_JES_EtaIntercalibration_Stat107: 6.923007077852803e-08 - syst_JES_EtaIntercalibration_Stat108: 6.923007077852803e-08 - syst_JES_EtaIntercalibration_Stat109: 6.923007077852803e-08 + syst_JES_EtaIntercalibration_Stat100: 1.14409376e-04 + syst_JES_EtaIntercalibration_Stat101: 3.45673082e-03 + syst_JES_EtaIntercalibration_Stat102: 1.77808135e-03 + syst_JES_EtaIntercalibration_Stat103: 1.03378356e-02 + syst_JES_EtaIntercalibration_Stat104: 1.43905478e-03 + syst_JES_EtaIntercalibration_Stat105: 4.90882519e-08 + syst_JES_EtaIntercalibration_Stat106: 6.92300708e-08 + syst_JES_EtaIntercalibration_Stat107: 6.92300708e-08 + syst_JES_EtaIntercalibration_Stat108: 6.92300708e-08 + syst_JES_EtaIntercalibration_Stat109: 6.92300708e-08 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 1.1727276356852856e-05 - syst_JES_EtaIntercalibration_Stat111: 0.011438842194470557 - syst_JES_EtaIntercalibration_Stat112: 0.10049899651240306 - syst_JES_EtaIntercalibration_Stat113: 0.11954921120609704 - syst_JES_EtaIntercalibration_Stat114: 0.036159380525667195 - syst_JES_EtaIntercalibration_Stat115: 0.0006558352831885457 - syst_JES_EtaIntercalibration_Stat116: 9.226771522043882e-07 - syst_JES_EtaIntercalibration_Stat117: 6.923007077852803e-08 - syst_JES_EtaIntercalibration_Stat118: 6.923007077852803e-08 - syst_JES_EtaIntercalibration_Stat119: 6.923007077852803e-08 + syst_JES_EtaIntercalibration_Stat110: 1.17272764e-05 + syst_JES_EtaIntercalibration_Stat111: 1.14388422e-02 + syst_JES_EtaIntercalibration_Stat112: 1.00498997e-01 + syst_JES_EtaIntercalibration_Stat113: 1.19549211e-01 + syst_JES_EtaIntercalibration_Stat114: 3.61593805e-02 + syst_JES_EtaIntercalibration_Stat115: 6.55835283e-04 + syst_JES_EtaIntercalibration_Stat116: 9.22677152e-07 + syst_JES_EtaIntercalibration_Stat117: 6.92300708e-08 + syst_JES_EtaIntercalibration_Stat118: 6.92300708e-08 + syst_JES_EtaIntercalibration_Stat119: 6.92300708e-08 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 0.0006905686569777113 - syst_JES_EtaIntercalibration_Stat121: 0.03517152683634875 - syst_JES_EtaIntercalibration_Stat122: 0.08603360201107473 - syst_JES_EtaIntercalibration_Stat123: 0.09089408561617196 - syst_JES_EtaIntercalibration_Stat124: 0.02145561931056757 - syst_JES_EtaIntercalibration_Stat125: 0.00016627687752661223 - syst_JES_EtaIntercalibration_Stat126: 6.923007077852803e-08 - syst_JES_EtaIntercalibration_Stat127: 6.923007077852803e-08 - syst_JES_EtaIntercalibration_Stat128: 6.923007077852803e-08 - syst_JES_EtaIntercalibration_Stat129: 0.005010759415497815 + syst_JES_EtaIntercalibration_Stat120: 6.90568657e-04 + syst_JES_EtaIntercalibration_Stat121: 3.51715268e-02 + syst_JES_EtaIntercalibration_Stat122: 8.60336020e-02 + syst_JES_EtaIntercalibration_Stat123: 9.08940856e-02 + syst_JES_EtaIntercalibration_Stat124: 2.14556193e-02 + syst_JES_EtaIntercalibration_Stat125: 1.66276878e-04 + syst_JES_EtaIntercalibration_Stat126: 6.92300708e-08 + syst_JES_EtaIntercalibration_Stat127: 6.92300708e-08 + syst_JES_EtaIntercalibration_Stat128: 6.92300708e-08 + syst_JES_EtaIntercalibration_Stat129: 5.01075942e-03 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 0.10463532959760771 - syst_JES_EtaIntercalibration_Stat131: 0.45092206366510834 - syst_JES_EtaIntercalibration_Stat132: 0.6360508686418092 - syst_JES_EtaIntercalibration_Stat133: 0.1488084927011896 - syst_JES_EtaIntercalibration_Stat134: 0.0033704878222595614 - syst_JES_EtaIntercalibration_Stat135: 8.972889208610568e-07 + syst_JES_EtaIntercalibration_Stat130: 1.04635330e-01 + syst_JES_EtaIntercalibration_Stat131: 4.50922064e-01 + syst_JES_EtaIntercalibration_Stat132: 6.36050869e-01 + syst_JES_EtaIntercalibration_Stat133: 1.48808493e-01 + syst_JES_EtaIntercalibration_Stat134: 3.37048782e-03 + syst_JES_EtaIntercalibration_Stat135: 8.97288921e-07 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 syst_JES_EtaIntercalibration_Stat138: 0.0 - syst_JES_EtaIntercalibration_Stat139: 0.003671145189174626 - syst_JES_EtaIntercalibration_Stat14: 0.00011840855413275977 - syst_JES_EtaIntercalibration_Stat140: 0.1667844342257394 - syst_JES_EtaIntercalibration_Stat141: 0.5855195876313618 - syst_JES_EtaIntercalibration_Stat142: 0.3887038169030502 - syst_JES_EtaIntercalibration_Stat143: 0.10516632968778553 - syst_JES_EtaIntercalibration_Stat144: 0.0041996137545612456 + syst_JES_EtaIntercalibration_Stat139: 3.67114519e-03 + syst_JES_EtaIntercalibration_Stat14: 1.18408554e-04 + syst_JES_EtaIntercalibration_Stat140: 1.66784434e-01 + syst_JES_EtaIntercalibration_Stat141: 5.85519588e-01 + syst_JES_EtaIntercalibration_Stat142: 3.88703817e-01 + syst_JES_EtaIntercalibration_Stat143: 1.05166330e-01 + syst_JES_EtaIntercalibration_Stat144: 4.19961375e-03 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 0.0017775164556200318 - syst_JES_EtaIntercalibration_Stat148: 0.028581883685299677 - syst_JES_EtaIntercalibration_Stat149: 0.2515544622939534 - syst_JES_EtaIntercalibration_Stat15: 0.00011733755940056022 - syst_JES_EtaIntercalibration_Stat150: 0.3164836607156837 - syst_JES_EtaIntercalibration_Stat151: 0.09880125252242504 - syst_JES_EtaIntercalibration_Stat152: 0.001445034266029702 + syst_JES_EtaIntercalibration_Stat147: 1.77751646e-03 + syst_JES_EtaIntercalibration_Stat148: 2.85818837e-02 + syst_JES_EtaIntercalibration_Stat149: 2.51554462e-01 + syst_JES_EtaIntercalibration_Stat15: 1.17337559e-04 + syst_JES_EtaIntercalibration_Stat150: 3.16483661e-01 + syst_JES_EtaIntercalibration_Stat151: 9.88012525e-02 + syst_JES_EtaIntercalibration_Stat152: 1.44503427e-03 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 syst_JES_EtaIntercalibration_Stat156: 0.0 - syst_JES_EtaIntercalibration_Stat157: 0.0025602767584774894 - syst_JES_EtaIntercalibration_Stat158: 0.10419698796030528 - syst_JES_EtaIntercalibration_Stat159: 0.3608880539724196 - syst_JES_EtaIntercalibration_Stat16: 0.00011586204947776254 - syst_JES_EtaIntercalibration_Stat160: 0.26502262167596186 - syst_JES_EtaIntercalibration_Stat161: 0.05843510823982445 - syst_JES_EtaIntercalibration_Stat162: 0.001847587396444347 + syst_JES_EtaIntercalibration_Stat157: 2.56027676e-03 + syst_JES_EtaIntercalibration_Stat158: 1.04196988e-01 + syst_JES_EtaIntercalibration_Stat159: 3.60888054e-01 + syst_JES_EtaIntercalibration_Stat16: 1.15862049e-04 + syst_JES_EtaIntercalibration_Stat160: 2.65022622e-01 + syst_JES_EtaIntercalibration_Stat161: 5.84351082e-02 + syst_JES_EtaIntercalibration_Stat162: 1.84758740e-03 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 0.0005002629983318775 - syst_JES_EtaIntercalibration_Stat166: 0.007386129348312282 - syst_JES_EtaIntercalibration_Stat167: 0.07241771520146159 - syst_JES_EtaIntercalibration_Stat168: 0.1011479978793451 - syst_JES_EtaIntercalibration_Stat169: 0.030100960117577645 - syst_JES_EtaIntercalibration_Stat17: 5.74607855410975e-08 - syst_JES_EtaIntercalibration_Stat170: 0.0007963622856464262 + syst_JES_EtaIntercalibration_Stat165: 5.00262998e-04 + syst_JES_EtaIntercalibration_Stat166: 7.38612935e-03 + syst_JES_EtaIntercalibration_Stat167: 7.24177152e-02 + syst_JES_EtaIntercalibration_Stat168: 1.01147998e-01 + syst_JES_EtaIntercalibration_Stat169: 3.01009601e-02 + syst_JES_EtaIntercalibration_Stat17: 5.74607855e-08 + syst_JES_EtaIntercalibration_Stat170: 7.96362286e-04 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 - syst_JES_EtaIntercalibration_Stat175: 0.0010258986759526648 - syst_JES_EtaIntercalibration_Stat176: 0.028812165833203167 - syst_JES_EtaIntercalibration_Stat177: 0.12402368886628069 - syst_JES_EtaIntercalibration_Stat178: 0.06748810561869402 - syst_JES_EtaIntercalibration_Stat179: 0.021020475732009495 + syst_JES_EtaIntercalibration_Stat175: 1.02589868e-03 + syst_JES_EtaIntercalibration_Stat176: 2.88121658e-02 + syst_JES_EtaIntercalibration_Stat177: 1.24023689e-01 + syst_JES_EtaIntercalibration_Stat178: 6.74881056e-02 + syst_JES_EtaIntercalibration_Stat179: 2.10204757e-02 syst_JES_EtaIntercalibration_Stat18: 0.0 - syst_JES_EtaIntercalibration_Stat180: 0.0006550816742971826 + syst_JES_EtaIntercalibration_Stat180: 6.55081674e-04 syst_JES_EtaIntercalibration_Stat181: 0.0 - syst_JES_EtaIntercalibration_Stat182: 0.0006181302231730786 - syst_JES_EtaIntercalibration_Stat183: 0.01758258442322971 - syst_JES_EtaIntercalibration_Stat184: 0.048164356893869144 - syst_JES_EtaIntercalibration_Stat185: 0.03200475081921433 - syst_JES_EtaIntercalibration_Stat186: 0.0167296785297118 - syst_JES_EtaIntercalibration_Stat187: 0.0009068120574297631 + syst_JES_EtaIntercalibration_Stat182: 6.18130223e-04 + syst_JES_EtaIntercalibration_Stat183: 1.75825844e-02 + syst_JES_EtaIntercalibration_Stat184: 4.81643569e-02 + syst_JES_EtaIntercalibration_Stat185: 3.20047508e-02 + syst_JES_EtaIntercalibration_Stat186: 1.67296785e-02 + syst_JES_EtaIntercalibration_Stat187: 9.06812057e-04 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 - syst_JES_EtaIntercalibration_Stat192: 0.000745301462496888 - syst_JES_EtaIntercalibration_Stat193: 0.01882198918153977 - syst_JES_EtaIntercalibration_Stat194: 0.0727627272372332 - syst_JES_EtaIntercalibration_Stat195: 0.047299488369325945 - syst_JES_EtaIntercalibration_Stat196: 0.0060068583109226074 - syst_JES_EtaIntercalibration_Stat197: 0.000571200997898288 - syst_JES_EtaIntercalibration_Stat198: 0.0024256708927634847 - syst_JES_EtaIntercalibration_Stat199: 0.014987175142434282 + syst_JES_EtaIntercalibration_Stat192: 7.45301462e-04 + syst_JES_EtaIntercalibration_Stat193: 1.88219892e-02 + syst_JES_EtaIntercalibration_Stat194: 7.27627272e-02 + syst_JES_EtaIntercalibration_Stat195: 4.72994884e-02 + syst_JES_EtaIntercalibration_Stat196: 6.00685831e-03 + syst_JES_EtaIntercalibration_Stat197: 5.71200998e-04 + syst_JES_EtaIntercalibration_Stat198: 2.42567089e-03 + syst_JES_EtaIntercalibration_Stat199: 1.49871751e-02 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 0.01691359987554394 - syst_JES_EtaIntercalibration_Stat201: 0.006460382090093434 - syst_JES_EtaIntercalibration_Stat202: 0.00022306476164277945 + syst_JES_EtaIntercalibration_Stat200: 1.69135999e-02 + syst_JES_EtaIntercalibration_Stat201: 6.46038209e-03 + syst_JES_EtaIntercalibration_Stat202: 2.23064762e-04 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 - syst_JES_EtaIntercalibration_Stat207: 0.0013888375253696885 - syst_JES_EtaIntercalibration_Stat208: 0.005753209082764157 - syst_JES_EtaIntercalibration_Stat209: 0.0171425873193051 + syst_JES_EtaIntercalibration_Stat207: 1.38883753e-03 + syst_JES_EtaIntercalibration_Stat208: 5.75320908e-03 + syst_JES_EtaIntercalibration_Stat209: 1.71425873e-02 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 0.008737701113565283 - syst_JES_EtaIntercalibration_Stat211: 0.0023324893890433887 - syst_JES_EtaIntercalibration_Stat212: 1.526207622671306e-05 - syst_JES_EtaIntercalibration_Stat213: 4.221935338206875e-05 - syst_JES_EtaIntercalibration_Stat214: 1.6373980907219847e-05 - syst_JES_EtaIntercalibration_Stat215: 1.2661061288243016e-05 + syst_JES_EtaIntercalibration_Stat210: 8.73770111e-03 + syst_JES_EtaIntercalibration_Stat211: 2.33248939e-03 + syst_JES_EtaIntercalibration_Stat212: 1.52620762e-05 + syst_JES_EtaIntercalibration_Stat213: 4.22193534e-05 + syst_JES_EtaIntercalibration_Stat214: 1.63739809e-05 + syst_JES_EtaIntercalibration_Stat215: 1.26610613e-05 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 syst_JES_EtaIntercalibration_Stat219: 0.0 - syst_JES_EtaIntercalibration_Stat22: 6.923007077852803e-08 - syst_JES_EtaIntercalibration_Stat220: 4.615915402171058e-07 - syst_JES_EtaIntercalibration_Stat221: 2.0013597252867862e-05 - syst_JES_EtaIntercalibration_Stat222: 0.0002870530961337989 - syst_JES_EtaIntercalibration_Stat223: 2.167118932476942e-05 - syst_JES_EtaIntercalibration_Stat224: 7.557384120844989e-08 - syst_JES_EtaIntercalibration_Stat225: 1.2093349411970201e-07 - syst_JES_EtaIntercalibration_Stat226: 3.922230176918223e-12 - syst_JES_EtaIntercalibration_Stat227: 5.2507486483812e-20 + syst_JES_EtaIntercalibration_Stat22: 6.92300708e-08 + syst_JES_EtaIntercalibration_Stat220: 4.61591540e-07 + syst_JES_EtaIntercalibration_Stat221: 2.00135973e-05 + syst_JES_EtaIntercalibration_Stat222: 2.87053096e-04 + syst_JES_EtaIntercalibration_Stat223: 2.16711893e-05 + syst_JES_EtaIntercalibration_Stat224: 7.55738412e-08 + syst_JES_EtaIntercalibration_Stat225: 1.20933494e-07 + syst_JES_EtaIntercalibration_Stat226: 3.92223018e-12 + syst_JES_EtaIntercalibration_Stat227: 5.25074865e-20 syst_JES_EtaIntercalibration_Stat228: 0.0 syst_JES_EtaIntercalibration_Stat229: 0.0 - syst_JES_EtaIntercalibration_Stat23: 6.923007077852803e-08 + syst_JES_EtaIntercalibration_Stat23: 6.92300708e-08 syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 - syst_JES_EtaIntercalibration_Stat232: 8.723242168549827e-16 - syst_JES_EtaIntercalibration_Stat233: 1.7372469599915837e-09 - syst_JES_EtaIntercalibration_Stat234: 1.6123572805057816e-07 - syst_JES_EtaIntercalibration_Stat235: 1.363482306449189e-07 - syst_JES_EtaIntercalibration_Stat236: 1.3067031618542905e-19 - syst_JES_EtaIntercalibration_Stat237: 9.908185937783301e-20 + syst_JES_EtaIntercalibration_Stat232: 8.72324217e-16 + syst_JES_EtaIntercalibration_Stat233: 1.73724696e-09 + syst_JES_EtaIntercalibration_Stat234: 1.61235728e-07 + syst_JES_EtaIntercalibration_Stat235: 1.36348231e-07 + syst_JES_EtaIntercalibration_Stat236: 1.30670316e-19 + syst_JES_EtaIntercalibration_Stat237: 9.90818594e-20 syst_JES_EtaIntercalibration_Stat238: 0.0 syst_JES_EtaIntercalibration_Stat239: 0.0 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 - syst_JES_EtaIntercalibration_Stat243: 4.31737756861732e-38 - syst_JES_EtaIntercalibration_Stat244: 7.457212414837061e-25 - syst_JES_EtaIntercalibration_Stat245: 8.781232247403228e-16 - syst_JES_EtaIntercalibration_Stat25: 5.776389443242205e-08 - syst_JES_EtaIntercalibration_Stat26: 8.909175551082154e-06 - syst_JES_EtaIntercalibration_Stat27: 0.0004988035932859746 - syst_JES_EtaIntercalibration_Stat28: 0.0008437704945659099 - syst_JES_EtaIntercalibration_Stat29: 0.00043280107150976417 + syst_JES_EtaIntercalibration_Stat243: 4.31737757e-38 + syst_JES_EtaIntercalibration_Stat244: 7.45721241e-25 + syst_JES_EtaIntercalibration_Stat245: 8.78123225e-16 + syst_JES_EtaIntercalibration_Stat25: 5.77638944e-08 + syst_JES_EtaIntercalibration_Stat26: 8.90917555e-06 + syst_JES_EtaIntercalibration_Stat27: 4.98803593e-04 + syst_JES_EtaIntercalibration_Stat28: 8.43770495e-04 + syst_JES_EtaIntercalibration_Stat29: 4.32801072e-04 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 6.894335542289409e-07 + syst_JES_EtaIntercalibration_Stat30: 6.89433554e-07 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 9.554038063562444e-08 - syst_JES_EtaIntercalibration_Stat36: 0.00013025679128168328 - syst_JES_EtaIntercalibration_Stat37: 0.00023038749548315331 - syst_JES_EtaIntercalibration_Stat38: 0.0002551228901073951 - syst_JES_EtaIntercalibration_Stat39: 0.00017879933721353668 - syst_JES_EtaIntercalibration_Stat4: 7.919802317608691e-08 - syst_JES_EtaIntercalibration_Stat40: 2.8422953752205274e-08 + syst_JES_EtaIntercalibration_Stat35: 9.55403806e-08 + syst_JES_EtaIntercalibration_Stat36: 1.30256791e-04 + syst_JES_EtaIntercalibration_Stat37: 2.30387495e-04 + syst_JES_EtaIntercalibration_Stat38: 2.55122890e-04 + syst_JES_EtaIntercalibration_Stat39: 1.78799337e-04 + syst_JES_EtaIntercalibration_Stat4: 7.91980232e-08 + syst_JES_EtaIntercalibration_Stat40: 2.84229538e-08 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 - syst_JES_EtaIntercalibration_Stat44: 6.923007077852803e-08 + syst_JES_EtaIntercalibration_Stat44: 6.92300708e-08 syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 - syst_JES_EtaIntercalibration_Stat47: 5.7781214940497754e-08 - syst_JES_EtaIntercalibration_Stat48: 9.156245573377769e-05 - syst_JES_EtaIntercalibration_Stat49: 0.0008237181602344334 - syst_JES_EtaIntercalibration_Stat5: 2.5004890896582614e-05 - syst_JES_EtaIntercalibration_Stat50: 0.0010011578646746976 - syst_JES_EtaIntercalibration_Stat51: 0.001025258006552497 - syst_JES_EtaIntercalibration_Stat52: 1.8872367862830568e-05 + syst_JES_EtaIntercalibration_Stat47: 5.77812149e-08 + syst_JES_EtaIntercalibration_Stat48: 9.15624557e-05 + syst_JES_EtaIntercalibration_Stat49: 8.23718160e-04 + syst_JES_EtaIntercalibration_Stat5: 2.50048909e-05 + syst_JES_EtaIntercalibration_Stat50: 1.00115786e-03 + syst_JES_EtaIntercalibration_Stat51: 1.02525801e-03 + syst_JES_EtaIntercalibration_Stat52: 1.88723679e-05 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 syst_JES_EtaIntercalibration_Stat56: 0.0 - syst_JES_EtaIntercalibration_Stat57: 0.00011843569071306166 - syst_JES_EtaIntercalibration_Stat58: 0.000153582706301849 - syst_JES_EtaIntercalibration_Stat59: 0.00108673273163184 - syst_JES_EtaIntercalibration_Stat6: 2.9395048902833957e-05 - syst_JES_EtaIntercalibration_Stat60: 0.0008361236451626039 - syst_JES_EtaIntercalibration_Stat61: 0.00017263891884508546 - syst_JES_EtaIntercalibration_Stat62: 5.862125958216866e-08 + syst_JES_EtaIntercalibration_Stat57: 1.18435691e-04 + syst_JES_EtaIntercalibration_Stat58: 1.53582706e-04 + syst_JES_EtaIntercalibration_Stat59: 1.08673273e-03 + syst_JES_EtaIntercalibration_Stat6: 2.93950489e-05 + syst_JES_EtaIntercalibration_Stat60: 8.36123645e-04 + syst_JES_EtaIntercalibration_Stat61: 1.72638919e-04 + syst_JES_EtaIntercalibration_Stat62: 5.86212596e-08 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 - syst_JES_EtaIntercalibration_Stat69: 8.339960836238981e-08 - syst_JES_EtaIntercalibration_Stat7: 1.920175822027764e-05 - syst_JES_EtaIntercalibration_Stat70: 0.0007242844744987981 - syst_JES_EtaIntercalibration_Stat71: 0.0012300778308708762 - syst_JES_EtaIntercalibration_Stat72: 0.003804993017076379 - syst_JES_EtaIntercalibration_Stat73: 0.0020453120250954375 - syst_JES_EtaIntercalibration_Stat74: 0.00013393412214592664 + syst_JES_EtaIntercalibration_Stat69: 8.33996084e-08 + syst_JES_EtaIntercalibration_Stat7: 1.92017582e-05 + syst_JES_EtaIntercalibration_Stat70: 7.24284474e-04 + syst_JES_EtaIntercalibration_Stat71: 1.23007783e-03 + syst_JES_EtaIntercalibration_Stat72: 3.80499302e-03 + syst_JES_EtaIntercalibration_Stat73: 2.04531203e-03 + syst_JES_EtaIntercalibration_Stat74: 1.33934122e-04 syst_JES_EtaIntercalibration_Stat75: 0.0 syst_JES_EtaIntercalibration_Stat76: 0.0 syst_JES_EtaIntercalibration_Stat77: 0.0 syst_JES_EtaIntercalibration_Stat78: 0.0 - syst_JES_EtaIntercalibration_Stat79: 0.00010853510818163863 + syst_JES_EtaIntercalibration_Stat79: 1.08535108e-04 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 0.0011298940835317265 - syst_JES_EtaIntercalibration_Stat81: 0.0010337191639899108 - syst_JES_EtaIntercalibration_Stat82: 0.0018892839933424515 - syst_JES_EtaIntercalibration_Stat83: 0.0016285054866349083 - syst_JES_EtaIntercalibration_Stat84: 3.5561979697424047e-08 - syst_JES_EtaIntercalibration_Stat85: 6.923007077852803e-08 - syst_JES_EtaIntercalibration_Stat86: 6.923007077852803e-08 - syst_JES_EtaIntercalibration_Stat87: 6.923007077852803e-08 - syst_JES_EtaIntercalibration_Stat88: 6.923007077852803e-08 - syst_JES_EtaIntercalibration_Stat89: 6.923007077852803e-08 + syst_JES_EtaIntercalibration_Stat80: 1.12989408e-03 + syst_JES_EtaIntercalibration_Stat81: 1.03371916e-03 + syst_JES_EtaIntercalibration_Stat82: 1.88928399e-03 + syst_JES_EtaIntercalibration_Stat83: 1.62850549e-03 + syst_JES_EtaIntercalibration_Stat84: 3.55619797e-08 + syst_JES_EtaIntercalibration_Stat85: 6.92300708e-08 + syst_JES_EtaIntercalibration_Stat86: 6.92300708e-08 + syst_JES_EtaIntercalibration_Stat87: 6.92300708e-08 + syst_JES_EtaIntercalibration_Stat88: 6.92300708e-08 + syst_JES_EtaIntercalibration_Stat89: 6.92300708e-08 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 0.000421408820594681 - syst_JES_EtaIntercalibration_Stat92: 0.0035162435506517465 - syst_JES_EtaIntercalibration_Stat93: 0.010413948854781264 - syst_JES_EtaIntercalibration_Stat94: 0.0017744413205288026 - syst_JES_EtaIntercalibration_Stat95: 0.0003561202184656187 - syst_JES_EtaIntercalibration_Stat96: 9.226771522043882e-07 - syst_JES_EtaIntercalibration_Stat97: 6.923007077852803e-08 - syst_JES_EtaIntercalibration_Stat98: 6.923007077852803e-08 - syst_JES_EtaIntercalibration_Stat99: 6.923007077852803e-08 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0019403018194793819 - syst_JES_Flavour_Comp: 0.2376241307190833 - syst_JES_Flavour_Response: 4.386793589855808 - syst_JES_Gjet_Generator: 3.2954113552028677 - syst_JES_Gjet_OOC: 1.9594861571340583 - syst_JES_Gjet_Purity: 0.6168988977133937 + syst_JES_EtaIntercalibration_Stat91: 4.21408821e-04 + syst_JES_EtaIntercalibration_Stat92: 3.51624355e-03 + syst_JES_EtaIntercalibration_Stat93: 1.04139489e-02 + syst_JES_EtaIntercalibration_Stat94: 1.77444132e-03 + syst_JES_EtaIntercalibration_Stat95: 3.56120218e-04 + syst_JES_EtaIntercalibration_Stat96: 9.22677152e-07 + syst_JES_EtaIntercalibration_Stat97: 6.92300708e-08 + syst_JES_EtaIntercalibration_Stat98: 6.92300708e-08 + syst_JES_EtaIntercalibration_Stat99: 6.92300708e-08 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.94030182e-03 + syst_JES_Flavour_Comp: 2.37624131e-01 + syst_JES_Flavour_Response: 4.38679359e+00 + syst_JES_Gjet_Generator: 3.29541136e+00 + syst_JES_Gjet_OOC: 1.95948616e+00 + syst_JES_Gjet_Purity: 6.16898898e-01 syst_JES_Gjet_Stat1: 0.0 - syst_JES_Gjet_Stat10: 0.25043074891075173 - syst_JES_Gjet_Stat11: 0.16120160568369038 - syst_JES_Gjet_Stat12: 0.024498228752299622 - syst_JES_Gjet_Stat13: 0.03458342955809906 - syst_JES_Gjet_Stat14: 0.0027759316904419676 - syst_JES_Gjet_Stat15: 0.0008328666339816957 - syst_JES_Gjet_Stat2: 0.0013475355282885867 + syst_JES_Gjet_Stat10: 2.50430749e-01 + syst_JES_Gjet_Stat11: 1.61201606e-01 + syst_JES_Gjet_Stat12: 2.44982288e-02 + syst_JES_Gjet_Stat13: 3.45834296e-02 + syst_JES_Gjet_Stat14: 2.77593169e-03 + syst_JES_Gjet_Stat15: 8.32866634e-04 + syst_JES_Gjet_Stat2: 1.34753553e-03 syst_JES_Gjet_Stat3: 0.0 - syst_JES_Gjet_Stat4: 0.007112666641281597 - syst_JES_Gjet_Stat5: 0.012373637167381303 - syst_JES_Gjet_Stat6: 0.03614497613777051 - syst_JES_Gjet_Stat7: 0.06194302139870156 - syst_JES_Gjet_Stat8: 0.059276980987563795 - syst_JES_Gjet_Stat9: 0.1466876528546285 - syst_JES_Gjet_Veto: 0.8120005341747011 - syst_JES_Gjet_dPhi: 0.1806093574541474 - syst_JES_LArESZee: 3.449090133643944 - syst_JES_LArEsmear: 0.27983543378207126 - syst_JES_LAr_JVT: 0.4219931151097136 - syst_JES_MJB_Alpha: 0.0029332280426530226 - syst_JES_MJB_Asym: 0.000603809802069327 - syst_JES_MJB_Beta: 0.0012323541496152177 - syst_JES_MJB_Fragmentation: 0.0022465389427016396 - syst_JES_MJB_Stat1: 0.0030414812180909485 - syst_JES_MJB_Stat10: 2.586554464920467e-12 + syst_JES_Gjet_Stat4: 7.11266664e-03 + syst_JES_Gjet_Stat5: 1.23736372e-02 + syst_JES_Gjet_Stat6: 3.61449761e-02 + syst_JES_Gjet_Stat7: 6.19430214e-02 + syst_JES_Gjet_Stat8: 5.92769810e-02 + syst_JES_Gjet_Stat9: 1.46687653e-01 + syst_JES_Gjet_Veto: 8.12000534e-01 + syst_JES_Gjet_dPhi: 1.80609357e-01 + syst_JES_LArESZee: 3.44909013e+00 + syst_JES_LArEsmear: 2.79835434e-01 + syst_JES_LAr_JVT: 4.21993115e-01 + syst_JES_MJB_Alpha: 2.93322804e-03 + syst_JES_MJB_Asym: 6.03809802e-04 + syst_JES_MJB_Beta: 1.23235415e-03 + syst_JES_MJB_Fragmentation: 2.24653894e-03 + syst_JES_MJB_Stat1: 3.04148122e-03 + syst_JES_MJB_Stat10: 2.58655446e-12 syst_JES_MJB_Stat11: 0.0 - syst_JES_MJB_Stat12: 9.984406880230795e-16 - syst_JES_MJB_Stat13: 1.0196583104157981e-19 - syst_JES_MJB_Stat14: 2.539186483895974e-25 - syst_JES_MJB_Stat15: 4.544901319060734e-39 + syst_JES_MJB_Stat12: 9.98440688e-16 + syst_JES_MJB_Stat13: 1.01965831e-19 + syst_JES_MJB_Stat14: 2.53918648e-25 + syst_JES_MJB_Stat15: 4.54490132e-39 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 0.011279980884292313 - syst_JES_MJB_Stat3: 0.004477351337565548 - syst_JES_MJB_Stat4: 0.0008080017017308812 + syst_JES_MJB_Stat2: 1.12799809e-02 + syst_JES_MJB_Stat3: 4.47735134e-03 + syst_JES_MJB_Stat4: 8.08001702e-04 syst_JES_MJB_Stat5: 0.0 - syst_JES_MJB_Stat6: 5.119076161769817e-30 + syst_JES_MJB_Stat6: 5.11907616e-30 syst_JES_MJB_Stat7: 0.0 syst_JES_MJB_Stat8: 0.0 - syst_JES_MJB_Stat9: 1.9745379206285203e-12 - syst_JES_MJB_Threshold: 0.023545393865467616 - syst_JES_Pileup_MuOffset: 0.002110719910285351 - syst_JES_Pileup_NPVOffset: 0.13959656899437034 - syst_JES_Pileup_Pt_term: 0.8234476789693442 - syst_JES_Pileup_Rho_topology: 1.1485120406421518 - syst_JES_PunchThrough_MC15: 0.017178223025316096 + syst_JES_MJB_Stat9: 1.97453792e-12 + syst_JES_MJB_Threshold: 2.35453939e-02 + syst_JES_Pileup_MuOffset: 2.11071991e-03 + syst_JES_Pileup_NPVOffset: 1.39596569e-01 + syst_JES_Pileup_Pt_term: 8.23447679e-01 + syst_JES_Pileup_Rho_topology: 1.14851204e+00 + syst_JES_PunchThrough_MC15: 1.71782230e-02 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 3.0203342116394998 - syst_JES_Zjet_MuScale: 0.1965142997341415 - syst_JES_Zjet_MuSmearID: 0.03916654056717289 - syst_JES_Zjet_MuSmearMS: 0.31499296420713907 - syst_JES_Zjet_OOC: 1.019215757335021 - syst_JES_Zjet_Stat1: 0.015904341388438565 - syst_JES_Zjet_Stat10: 0.3186406596779513 - syst_JES_Zjet_Stat11: 0.5571393183037794 - syst_JES_Zjet_Stat12: 0.330557529032391 - syst_JES_Zjet_Stat13: 0.034956328468533415 - syst_JES_Zjet_Stat2: 4.125745023629066e-07 - syst_JES_Zjet_Stat3: 0.008762954467529772 - syst_JES_Zjet_Stat4: 0.009092940888403487 - syst_JES_Zjet_Stat5: 0.011472570176167011 - syst_JES_Zjet_Stat6: 0.015506155809871122 - syst_JES_Zjet_Stat7: 0.02553281564966935 - syst_JES_Zjet_Stat8: 0.035520222578131457 - syst_JES_Zjet_Stat9: 0.10869011029067917 - syst_JES_Zjet_Veto: 0.20059758223867005 - syst_JES_Zjet_dPhi: 0.18355309858457852 + syst_JES_Zjet_MC: 3.02033421e+00 + syst_JES_Zjet_MuScale: 1.96514300e-01 + syst_JES_Zjet_MuSmearID: 3.91665406e-02 + syst_JES_Zjet_MuSmearMS: 3.14992964e-01 + syst_JES_Zjet_OOC: 1.01921576e+00 + syst_JES_Zjet_Stat1: 1.59043414e-02 + syst_JES_Zjet_Stat10: 3.18640660e-01 + syst_JES_Zjet_Stat11: 5.57139318e-01 + syst_JES_Zjet_Stat12: 3.30557529e-01 + syst_JES_Zjet_Stat13: 3.49563285e-02 + syst_JES_Zjet_Stat2: 4.12574502e-07 + syst_JES_Zjet_Stat3: 8.76295447e-03 + syst_JES_Zjet_Stat4: 9.09294089e-03 + syst_JES_Zjet_Stat5: 1.14725702e-02 + syst_JES_Zjet_Stat6: 1.55061558e-02 + syst_JES_Zjet_Stat7: 2.55328156e-02 + syst_JES_Zjet_Stat8: 3.55202226e-02 + syst_JES_Zjet_Stat9: 1.08690110e-01 + syst_JES_Zjet_Veto: 2.00597582e-01 + syst_JES_Zjet_dPhi: 1.83553099e-01 syst_PRW: 0.2261 syst_Unfolding_bias: 0.01439 - syst_cleaning: 0.8747722603626614 + syst_cleaning: 8.74772260e-01 syst_lumi: 3.538 - stat: 0.696 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 1.1924614375316296 - syst_JER_NP1: 0.06549282327095085 - syst_JER_NP2: 0.2589557684238758 - syst_JER_NP3: 0.3118273079767069 - syst_JER_NP4: 0.05837515460364966 - syst_JER_NP5: 0.1137643195382454 - syst_JER_NP6: 0.10490982163267651 - syst_JER_NP7: 0.10639018140787242 - syst_JER_NP8: 0.065701306493859 - syst_JES_EtaIntercalibration_Modelling: 1.8930316954557311 - syst_JES_EtaIntercalibration_NonClosure: 1.4696380782305065e-05 - syst_JES_EtaIntercalibration_Stat0: 5.691518953671331e-09 + syst_JER_NP0: 1.19246144e+00 + syst_JER_NP1: 6.54928233e-02 + syst_JER_NP2: 2.58955768e-01 + syst_JER_NP3: 3.11827308e-01 + syst_JER_NP4: 5.83751546e-02 + syst_JER_NP5: 1.13764320e-01 + syst_JER_NP6: 1.04909822e-01 + syst_JER_NP7: 1.06390181e-01 + syst_JER_NP8: 6.57013065e-02 + syst_JES_EtaIntercalibration_Modelling: 1.89303170e+00 + syst_JES_EtaIntercalibration_NonClosure: 1.46963808e-05 + syst_JES_EtaIntercalibration_Stat0: 5.69151895e-09 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 8.545666182614143e-05 - syst_JES_EtaIntercalibration_Stat101: 0.0017641956261990903 - syst_JES_EtaIntercalibration_Stat102: 0.0014181588794983447 - syst_JES_EtaIntercalibration_Stat103: 0.004175108348294688 - syst_JES_EtaIntercalibration_Stat104: 0.0011737205459563193 - syst_JES_EtaIntercalibration_Stat105: 3.862884155653649e-09 - syst_JES_EtaIntercalibration_Stat106: 5.691518953671331e-09 - syst_JES_EtaIntercalibration_Stat107: 5.691518953671331e-09 - syst_JES_EtaIntercalibration_Stat108: 5.691518953671331e-09 - syst_JES_EtaIntercalibration_Stat109: 5.691518953671331e-09 + syst_JES_EtaIntercalibration_Stat100: 8.54566618e-05 + syst_JES_EtaIntercalibration_Stat101: 1.76419563e-03 + syst_JES_EtaIntercalibration_Stat102: 1.41815888e-03 + syst_JES_EtaIntercalibration_Stat103: 4.17510835e-03 + syst_JES_EtaIntercalibration_Stat104: 1.17372055e-03 + syst_JES_EtaIntercalibration_Stat105: 3.86288416e-09 + syst_JES_EtaIntercalibration_Stat106: 5.69151895e-09 + syst_JES_EtaIntercalibration_Stat107: 5.69151895e-09 + syst_JES_EtaIntercalibration_Stat108: 5.69151895e-09 + syst_JES_EtaIntercalibration_Stat109: 5.69151895e-09 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 1.2964580700894263e-06 - syst_JES_EtaIntercalibration_Stat111: 0.005158227838124253 - syst_JES_EtaIntercalibration_Stat112: 0.030821977142941364 - syst_JES_EtaIntercalibration_Stat113: 0.035708980663132904 - syst_JES_EtaIntercalibration_Stat114: 0.012405431582577044 - syst_JES_EtaIntercalibration_Stat115: 0.00031792480242975695 - syst_JES_EtaIntercalibration_Stat116: 5.2799944914164445e-06 - syst_JES_EtaIntercalibration_Stat117: 5.691518953671331e-09 - syst_JES_EtaIntercalibration_Stat118: 5.691518953671331e-09 - syst_JES_EtaIntercalibration_Stat119: 5.691518953671331e-09 + syst_JES_EtaIntercalibration_Stat110: 1.29645807e-06 + syst_JES_EtaIntercalibration_Stat111: 5.15822784e-03 + syst_JES_EtaIntercalibration_Stat112: 3.08219771e-02 + syst_JES_EtaIntercalibration_Stat113: 3.57089807e-02 + syst_JES_EtaIntercalibration_Stat114: 1.24054316e-02 + syst_JES_EtaIntercalibration_Stat115: 3.17924802e-04 + syst_JES_EtaIntercalibration_Stat116: 5.27999449e-06 + syst_JES_EtaIntercalibration_Stat117: 5.69151895e-09 + syst_JES_EtaIntercalibration_Stat118: 5.69151895e-09 + syst_JES_EtaIntercalibration_Stat119: 5.69151895e-09 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 0.00016237976320958224 - syst_JES_EtaIntercalibration_Stat121: 0.010020114408029482 - syst_JES_EtaIntercalibration_Stat122: 0.02432768176378506 - syst_JES_EtaIntercalibration_Stat123: 0.027538311495079 - syst_JES_EtaIntercalibration_Stat124: 0.007257644314789751 - syst_JES_EtaIntercalibration_Stat125: 2.616262744832789e-05 - syst_JES_EtaIntercalibration_Stat126: 5.691518953671331e-09 - syst_JES_EtaIntercalibration_Stat127: 5.691518953671331e-09 - syst_JES_EtaIntercalibration_Stat128: 5.691518953671331e-09 - syst_JES_EtaIntercalibration_Stat129: 0.0009227139766471515 + syst_JES_EtaIntercalibration_Stat120: 1.62379763e-04 + syst_JES_EtaIntercalibration_Stat121: 1.00201144e-02 + syst_JES_EtaIntercalibration_Stat122: 2.43276818e-02 + syst_JES_EtaIntercalibration_Stat123: 2.75383115e-02 + syst_JES_EtaIntercalibration_Stat124: 7.25764431e-03 + syst_JES_EtaIntercalibration_Stat125: 2.61626274e-05 + syst_JES_EtaIntercalibration_Stat126: 5.69151895e-09 + syst_JES_EtaIntercalibration_Stat127: 5.69151895e-09 + syst_JES_EtaIntercalibration_Stat128: 5.69151895e-09 + syst_JES_EtaIntercalibration_Stat129: 9.22713977e-04 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 0.03807912945433496 - syst_JES_EtaIntercalibration_Stat131: 0.18228304227217623 - syst_JES_EtaIntercalibration_Stat132: 0.24174399682308556 - syst_JES_EtaIntercalibration_Stat133: 0.054368286712016226 - syst_JES_EtaIntercalibration_Stat134: 0.0018955845819957492 - syst_JES_EtaIntercalibration_Stat135: 5.281888937681292e-06 + syst_JES_EtaIntercalibration_Stat130: 3.80791295e-02 + syst_JES_EtaIntercalibration_Stat131: 1.82283042e-01 + syst_JES_EtaIntercalibration_Stat132: 2.41743997e-01 + syst_JES_EtaIntercalibration_Stat133: 5.43682867e-02 + syst_JES_EtaIntercalibration_Stat134: 1.89558458e-03 + syst_JES_EtaIntercalibration_Stat135: 5.28188894e-06 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 syst_JES_EtaIntercalibration_Stat138: 0.0 - syst_JES_EtaIntercalibration_Stat139: 0.0015116033705969301 - syst_JES_EtaIntercalibration_Stat14: 8.72265160207687e-05 - syst_JES_EtaIntercalibration_Stat140: 0.06684780680770312 - syst_JES_EtaIntercalibration_Stat141: 0.2208476114881028 - syst_JES_EtaIntercalibration_Stat142: 0.14791709671298986 - syst_JES_EtaIntercalibration_Stat143: 0.038320889381641444 - syst_JES_EtaIntercalibration_Stat144: 0.0001854146434346543 + syst_JES_EtaIntercalibration_Stat139: 1.51160337e-03 + syst_JES_EtaIntercalibration_Stat14: 8.72265160e-05 + syst_JES_EtaIntercalibration_Stat140: 6.68478068e-02 + syst_JES_EtaIntercalibration_Stat141: 2.20847611e-01 + syst_JES_EtaIntercalibration_Stat142: 1.47917097e-01 + syst_JES_EtaIntercalibration_Stat143: 3.83208894e-02 + syst_JES_EtaIntercalibration_Stat144: 1.85414643e-04 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 0.000993077352223884 - syst_JES_EtaIntercalibration_Stat148: 0.01827810895579737 - syst_JES_EtaIntercalibration_Stat149: 0.13892828032837665 - syst_JES_EtaIntercalibration_Stat15: 8.691926720645241e-05 - syst_JES_EtaIntercalibration_Stat150: 0.16788456599699686 - syst_JES_EtaIntercalibration_Stat151: 0.05052054928442485 - syst_JES_EtaIntercalibration_Stat152: 0.0008092228741205972 + syst_JES_EtaIntercalibration_Stat147: 9.93077352e-04 + syst_JES_EtaIntercalibration_Stat148: 1.82781090e-02 + syst_JES_EtaIntercalibration_Stat149: 1.38928280e-01 + syst_JES_EtaIntercalibration_Stat15: 8.69192672e-05 + syst_JES_EtaIntercalibration_Stat150: 1.67884566e-01 + syst_JES_EtaIntercalibration_Stat151: 5.05205493e-02 + syst_JES_EtaIntercalibration_Stat152: 8.09222874e-04 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 syst_JES_EtaIntercalibration_Stat156: 0.0 - syst_JES_EtaIntercalibration_Stat157: 0.0016246762231287809 - syst_JES_EtaIntercalibration_Stat158: 0.058225536279196265 - syst_JES_EtaIntercalibration_Stat159: 0.18788778565941958 - syst_JES_EtaIntercalibration_Stat16: 8.63516218351242e-05 - syst_JES_EtaIntercalibration_Stat160: 0.1377848782522959 - syst_JES_EtaIntercalibration_Stat161: 0.027760685780434172 - syst_JES_EtaIntercalibration_Stat162: 0.0006567050507457667 + syst_JES_EtaIntercalibration_Stat157: 1.62467622e-03 + syst_JES_EtaIntercalibration_Stat158: 5.82255363e-02 + syst_JES_EtaIntercalibration_Stat159: 1.87887786e-01 + syst_JES_EtaIntercalibration_Stat16: 8.63516218e-05 + syst_JES_EtaIntercalibration_Stat160: 1.37784878e-01 + syst_JES_EtaIntercalibration_Stat161: 2.77606858e-02 + syst_JES_EtaIntercalibration_Stat162: 6.56705051e-04 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 0.0010744621945419951 - syst_JES_EtaIntercalibration_Stat166: 0.014885946493253295 - syst_JES_EtaIntercalibration_Stat167: 0.07700101038298134 - syst_JES_EtaIntercalibration_Stat168: 0.09235313151160604 - syst_JES_EtaIntercalibration_Stat169: 0.02131602917993874 - syst_JES_EtaIntercalibration_Stat17: 4.725900628451681e-09 - syst_JES_EtaIntercalibration_Stat170: 0.0011867410869688467 + syst_JES_EtaIntercalibration_Stat165: 1.07446219e-03 + syst_JES_EtaIntercalibration_Stat166: 1.48859465e-02 + syst_JES_EtaIntercalibration_Stat167: 7.70010104e-02 + syst_JES_EtaIntercalibration_Stat168: 9.23531315e-02 + syst_JES_EtaIntercalibration_Stat169: 2.13160292e-02 + syst_JES_EtaIntercalibration_Stat17: 4.72590063e-09 + syst_JES_EtaIntercalibration_Stat170: 1.18674109e-03 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 - syst_JES_EtaIntercalibration_Stat175: 0.0006017935897589804 - syst_JES_EtaIntercalibration_Stat176: 0.03245423046383938 - syst_JES_EtaIntercalibration_Stat177: 0.1312659041792651 - syst_JES_EtaIntercalibration_Stat178: 0.08385711225054199 - syst_JES_EtaIntercalibration_Stat179: 0.01483993634588774 + syst_JES_EtaIntercalibration_Stat175: 6.01793590e-04 + syst_JES_EtaIntercalibration_Stat176: 3.24542305e-02 + syst_JES_EtaIntercalibration_Stat177: 1.31265904e-01 + syst_JES_EtaIntercalibration_Stat178: 8.38571123e-02 + syst_JES_EtaIntercalibration_Stat179: 1.48399363e-02 syst_JES_EtaIntercalibration_Stat18: 0.0 - syst_JES_EtaIntercalibration_Stat180: 0.000776942473739208 + syst_JES_EtaIntercalibration_Stat180: 7.76942474e-04 syst_JES_EtaIntercalibration_Stat181: 0.0 - syst_JES_EtaIntercalibration_Stat182: 0.0010013693224779757 - syst_JES_EtaIntercalibration_Stat183: 0.0032310578376129385 - syst_JES_EtaIntercalibration_Stat184: 0.010088409327044577 - syst_JES_EtaIntercalibration_Stat185: 0.023150742428699776 - syst_JES_EtaIntercalibration_Stat186: 0.01639069451701178 - syst_JES_EtaIntercalibration_Stat187: 0.0012064667452938767 + syst_JES_EtaIntercalibration_Stat182: 1.00136932e-03 + syst_JES_EtaIntercalibration_Stat183: 3.23105784e-03 + syst_JES_EtaIntercalibration_Stat184: 1.00884093e-02 + syst_JES_EtaIntercalibration_Stat185: 2.31507424e-02 + syst_JES_EtaIntercalibration_Stat186: 1.63906945e-02 + syst_JES_EtaIntercalibration_Stat187: 1.20646675e-03 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 - syst_JES_EtaIntercalibration_Stat192: 0.0005085301171022223 - syst_JES_EtaIntercalibration_Stat193: 0.009632216635203967 - syst_JES_EtaIntercalibration_Stat194: 0.004998301558279573 - syst_JES_EtaIntercalibration_Stat195: 0.0030804418514232663 - syst_JES_EtaIntercalibration_Stat196: 0.005448499242910841 - syst_JES_EtaIntercalibration_Stat197: 0.0005135516794831851 - syst_JES_EtaIntercalibration_Stat198: 0.003280788409818591 - syst_JES_EtaIntercalibration_Stat199: 0.015492820111264443 + syst_JES_EtaIntercalibration_Stat192: 5.08530117e-04 + syst_JES_EtaIntercalibration_Stat193: 9.63221664e-03 + syst_JES_EtaIntercalibration_Stat194: 4.99830156e-03 + syst_JES_EtaIntercalibration_Stat195: 3.08044185e-03 + syst_JES_EtaIntercalibration_Stat196: 5.44849924e-03 + syst_JES_EtaIntercalibration_Stat197: 5.13551679e-04 + syst_JES_EtaIntercalibration_Stat198: 3.28078841e-03 + syst_JES_EtaIntercalibration_Stat199: 1.54928201e-02 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 0.017150504365761376 - syst_JES_EtaIntercalibration_Stat201: 0.003152876332414578 - syst_JES_EtaIntercalibration_Stat202: 0.00020654689337533012 + syst_JES_EtaIntercalibration_Stat200: 1.71505044e-02 + syst_JES_EtaIntercalibration_Stat201: 3.15287633e-03 + syst_JES_EtaIntercalibration_Stat202: 2.06546893e-04 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 - syst_JES_EtaIntercalibration_Stat207: 0.0013906628858479685 - syst_JES_EtaIntercalibration_Stat208: 0.006381510381563287 - syst_JES_EtaIntercalibration_Stat209: 0.018211120229134722 + syst_JES_EtaIntercalibration_Stat207: 1.39066289e-03 + syst_JES_EtaIntercalibration_Stat208: 6.38151038e-03 + syst_JES_EtaIntercalibration_Stat209: 1.82111202e-02 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 0.01223418832616206 - syst_JES_EtaIntercalibration_Stat211: 0.0039320746432386046 - syst_JES_EtaIntercalibration_Stat212: 0.0003592152697199828 - syst_JES_EtaIntercalibration_Stat213: 0.0005103258248413459 - syst_JES_EtaIntercalibration_Stat214: 0.00024063213147873665 - syst_JES_EtaIntercalibration_Stat215: 5.667911789453568e-05 + syst_JES_EtaIntercalibration_Stat210: 1.22341883e-02 + syst_JES_EtaIntercalibration_Stat211: 3.93207464e-03 + syst_JES_EtaIntercalibration_Stat212: 3.59215270e-04 + syst_JES_EtaIntercalibration_Stat213: 5.10325825e-04 + syst_JES_EtaIntercalibration_Stat214: 2.40632131e-04 + syst_JES_EtaIntercalibration_Stat215: 5.66791179e-05 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 syst_JES_EtaIntercalibration_Stat219: 0.0 - syst_JES_EtaIntercalibration_Stat22: 5.691518953671331e-09 - syst_JES_EtaIntercalibration_Stat220: 8.273140682352742e-06 - syst_JES_EtaIntercalibration_Stat221: 0.0001745249838848295 - syst_JES_EtaIntercalibration_Stat222: 0.0009516569760160433 - syst_JES_EtaIntercalibration_Stat223: 0.0004905193032644078 - syst_JES_EtaIntercalibration_Stat224: 1.4809348424221774e-06 - syst_JES_EtaIntercalibration_Stat225: 2.2584333220177214e-06 - syst_JES_EtaIntercalibration_Stat226: 1.9260964497576e-09 - syst_JES_EtaIntercalibration_Stat227: 2.6148667979073556e-15 + syst_JES_EtaIntercalibration_Stat22: 5.69151895e-09 + syst_JES_EtaIntercalibration_Stat220: 8.27314068e-06 + syst_JES_EtaIntercalibration_Stat221: 1.74524984e-04 + syst_JES_EtaIntercalibration_Stat222: 9.51656976e-04 + syst_JES_EtaIntercalibration_Stat223: 4.90519303e-04 + syst_JES_EtaIntercalibration_Stat224: 1.48093484e-06 + syst_JES_EtaIntercalibration_Stat225: 2.25843332e-06 + syst_JES_EtaIntercalibration_Stat226: 1.92609645e-09 + syst_JES_EtaIntercalibration_Stat227: 2.61486680e-15 syst_JES_EtaIntercalibration_Stat228: 0.0 syst_JES_EtaIntercalibration_Stat229: 0.0 - syst_JES_EtaIntercalibration_Stat23: 5.691518953671331e-09 + syst_JES_EtaIntercalibration_Stat23: 5.69151895e-09 syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 - syst_JES_EtaIntercalibration_Stat232: 3.596316914442234e-12 - syst_JES_EtaIntercalibration_Stat233: 1.4774393388562525e-07 - syst_JES_EtaIntercalibration_Stat234: 3.1413119472602527e-06 - syst_JES_EtaIntercalibration_Stat235: 3.4065931295063695e-06 - syst_JES_EtaIntercalibration_Stat236: 6.5089486094145804e-15 - syst_JES_EtaIntercalibration_Stat237: 4.9327825004962495e-15 - syst_JES_EtaIntercalibration_Stat238: 2.8267069179524077e-36 + syst_JES_EtaIntercalibration_Stat232: 3.59631691e-12 + syst_JES_EtaIntercalibration_Stat233: 1.47743934e-07 + syst_JES_EtaIntercalibration_Stat234: 3.14131195e-06 + syst_JES_EtaIntercalibration_Stat235: 3.40659313e-06 + syst_JES_EtaIntercalibration_Stat236: 6.50894861e-15 + syst_JES_EtaIntercalibration_Stat237: 4.93278250e-15 + syst_JES_EtaIntercalibration_Stat238: 2.82670692e-36 syst_JES_EtaIntercalibration_Stat239: 0.0 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 - syst_JES_EtaIntercalibration_Stat243: 5.753076265790329e-29 - syst_JES_EtaIntercalibration_Stat244: 6.840386100213934e-19 - syst_JES_EtaIntercalibration_Stat245: 3.620398325658483e-12 - syst_JES_EtaIntercalibration_Stat25: 4.767469847833335e-09 - syst_JES_EtaIntercalibration_Stat26: 9.514110363034475e-07 - syst_JES_EtaIntercalibration_Stat27: 0.00014126402514440822 - syst_JES_EtaIntercalibration_Stat28: 0.0002843149507148718 - syst_JES_EtaIntercalibration_Stat29: 0.0001337011954882977 + syst_JES_EtaIntercalibration_Stat243: 5.75307627e-29 + syst_JES_EtaIntercalibration_Stat244: 6.84038610e-19 + syst_JES_EtaIntercalibration_Stat245: 3.62039833e-12 + syst_JES_EtaIntercalibration_Stat25: 4.76746985e-09 + syst_JES_EtaIntercalibration_Stat26: 9.51411036e-07 + syst_JES_EtaIntercalibration_Stat27: 1.41264025e-04 + syst_JES_EtaIntercalibration_Stat28: 2.84314951e-04 + syst_JES_EtaIntercalibration_Stat29: 1.33701195e-04 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 6.319838644356358e-08 + syst_JES_EtaIntercalibration_Stat30: 6.31983864e-08 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 7.841116901787651e-09 - syst_JES_EtaIntercalibration_Stat36: 8.632291316185987e-05 - syst_JES_EtaIntercalibration_Stat37: 3.472576385049003e-05 - syst_JES_EtaIntercalibration_Stat38: 3.5340798632741736e-05 - syst_JES_EtaIntercalibration_Stat39: 2.7166157626493665e-05 - syst_JES_EtaIntercalibration_Stat4: 6.5367597477649435e-09 - syst_JES_EtaIntercalibration_Stat40: 2.2360775925714206e-09 + syst_JES_EtaIntercalibration_Stat35: 7.84111690e-09 + syst_JES_EtaIntercalibration_Stat36: 8.63229132e-05 + syst_JES_EtaIntercalibration_Stat37: 3.47257639e-05 + syst_JES_EtaIntercalibration_Stat38: 3.53407986e-05 + syst_JES_EtaIntercalibration_Stat39: 2.71661576e-05 + syst_JES_EtaIntercalibration_Stat4: 6.53675975e-09 + syst_JES_EtaIntercalibration_Stat40: 2.23607759e-09 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 - syst_JES_EtaIntercalibration_Stat44: 5.691518953671331e-09 + syst_JES_EtaIntercalibration_Stat44: 5.69151895e-09 syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 - syst_JES_EtaIntercalibration_Stat47: 4.770067924044687e-09 - syst_JES_EtaIntercalibration_Stat48: 1.7579322029020348e-05 - syst_JES_EtaIntercalibration_Stat49: 0.0002403555023293621 - syst_JES_EtaIntercalibration_Stat5: 4.784743700554921e-06 - syst_JES_EtaIntercalibration_Stat50: 0.0003576044567675297 - syst_JES_EtaIntercalibration_Stat51: 0.0007370859837902224 - syst_JES_EtaIntercalibration_Stat52: 3.943216041507236e-06 + syst_JES_EtaIntercalibration_Stat47: 4.77006792e-09 + syst_JES_EtaIntercalibration_Stat48: 1.75793220e-05 + syst_JES_EtaIntercalibration_Stat49: 2.40355502e-04 + syst_JES_EtaIntercalibration_Stat5: 4.78474370e-06 + syst_JES_EtaIntercalibration_Stat50: 3.57604457e-04 + syst_JES_EtaIntercalibration_Stat51: 7.37085984e-04 + syst_JES_EtaIntercalibration_Stat52: 3.94321604e-06 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 syst_JES_EtaIntercalibration_Stat56: 0.0 - syst_JES_EtaIntercalibration_Stat57: 8.721938908967264e-05 - syst_JES_EtaIntercalibration_Stat58: 7.498920122257605e-05 - syst_JES_EtaIntercalibration_Stat59: 0.0004764528756340967 - syst_JES_EtaIntercalibration_Stat6: 1.5154394519989903e-05 - syst_JES_EtaIntercalibration_Stat60: 0.00025548389381720323 - syst_JES_EtaIntercalibration_Stat61: 7.596145313907574e-05 - syst_JES_EtaIntercalibration_Stat62: 4.82116342286797e-09 + syst_JES_EtaIntercalibration_Stat57: 8.72193891e-05 + syst_JES_EtaIntercalibration_Stat58: 7.49892012e-05 + syst_JES_EtaIntercalibration_Stat59: 4.76452876e-04 + syst_JES_EtaIntercalibration_Stat6: 1.51543945e-05 + syst_JES_EtaIntercalibration_Stat60: 2.55483894e-04 + syst_JES_EtaIntercalibration_Stat61: 7.59614531e-05 + syst_JES_EtaIntercalibration_Stat62: 4.82116342e-09 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 - syst_JES_EtaIntercalibration_Stat69: 6.875853547015091e-09 - syst_JES_EtaIntercalibration_Stat7: 3.971831775727038e-06 - syst_JES_EtaIntercalibration_Stat70: 0.0001903347894500635 - syst_JES_EtaIntercalibration_Stat71: 0.0011425771702602847 - syst_JES_EtaIntercalibration_Stat72: 0.001042443172312045 - syst_JES_EtaIntercalibration_Stat73: 0.00022360127459386273 - syst_JES_EtaIntercalibration_Stat74: 2.7998582160530915e-05 + syst_JES_EtaIntercalibration_Stat69: 6.87585355e-09 + syst_JES_EtaIntercalibration_Stat7: 3.97183178e-06 + syst_JES_EtaIntercalibration_Stat70: 1.90334789e-04 + syst_JES_EtaIntercalibration_Stat71: 1.14257717e-03 + syst_JES_EtaIntercalibration_Stat72: 1.04244317e-03 + syst_JES_EtaIntercalibration_Stat73: 2.23601275e-04 + syst_JES_EtaIntercalibration_Stat74: 2.79985822e-05 syst_JES_EtaIntercalibration_Stat75: 0.0 syst_JES_EtaIntercalibration_Stat76: 0.0 syst_JES_EtaIntercalibration_Stat77: 0.0 syst_JES_EtaIntercalibration_Stat78: 0.0 - syst_JES_EtaIntercalibration_Stat79: 8.420455784390475e-05 + syst_JES_EtaIntercalibration_Stat79: 8.42045578e-05 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 0.00045348645790144605 - syst_JES_EtaIntercalibration_Stat81: 0.0007710805194660283 - syst_JES_EtaIntercalibration_Stat82: 0.0011877461134434412 - syst_JES_EtaIntercalibration_Stat83: 0.0010892778158027455 - syst_JES_EtaIntercalibration_Stat84: 3.012305761372839e-09 - syst_JES_EtaIntercalibration_Stat85: 5.691518953671331e-09 - syst_JES_EtaIntercalibration_Stat86: 5.691518953671331e-09 - syst_JES_EtaIntercalibration_Stat87: 5.691518953671331e-09 - syst_JES_EtaIntercalibration_Stat88: 5.691518953671331e-09 - syst_JES_EtaIntercalibration_Stat89: 5.691518953671331e-09 + syst_JES_EtaIntercalibration_Stat80: 4.53486458e-04 + syst_JES_EtaIntercalibration_Stat81: 7.71080519e-04 + syst_JES_EtaIntercalibration_Stat82: 1.18774611e-03 + syst_JES_EtaIntercalibration_Stat83: 1.08927782e-03 + syst_JES_EtaIntercalibration_Stat84: 3.01230576e-09 + syst_JES_EtaIntercalibration_Stat85: 5.69151895e-09 + syst_JES_EtaIntercalibration_Stat86: 5.69151895e-09 + syst_JES_EtaIntercalibration_Stat87: 5.69151895e-09 + syst_JES_EtaIntercalibration_Stat88: 5.69151895e-09 + syst_JES_EtaIntercalibration_Stat89: 5.69151895e-09 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 0.00023590639563182683 - syst_JES_EtaIntercalibration_Stat92: 0.0015315046286250656 - syst_JES_EtaIntercalibration_Stat93: 0.0032640312142349372 - syst_JES_EtaIntercalibration_Stat94: 0.0005746568899787073 - syst_JES_EtaIntercalibration_Stat95: 0.00011519625051189816 - syst_JES_EtaIntercalibration_Stat96: 5.2799944914164445e-06 - syst_JES_EtaIntercalibration_Stat97: 5.691518953671331e-09 - syst_JES_EtaIntercalibration_Stat98: 5.691518953671331e-09 - syst_JES_EtaIntercalibration_Stat99: 5.691518953671331e-09 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.009850059530276963 - syst_JES_Flavour_Comp: 0.17851238052303262 - syst_JES_Flavour_Response: 2.3641270587682044 - syst_JES_Gjet_Generator: 1.8635972606762439 - syst_JES_Gjet_OOC: 1.168260322017315 - syst_JES_Gjet_Purity: 0.3650423973663881 - syst_JES_Gjet_Stat1: 1.794404636641357e-35 - syst_JES_Gjet_Stat10: 0.1421190655753126 - syst_JES_Gjet_Stat11: 0.1560075853925058 - syst_JES_Gjet_Stat12: 0.04599834861166214 - syst_JES_Gjet_Stat13: 0.024766963883366893 - syst_JES_Gjet_Stat14: 0.007847000127437238 - syst_JES_Gjet_Stat15: 0.001669630728394755 - syst_JES_Gjet_Stat2: 0.00012704592673517712 - syst_JES_Gjet_Stat3: 1.1771883313641875e-43 - syst_JES_Gjet_Stat4: 0.004054730940678611 - syst_JES_Gjet_Stat5: 0.007285516335168015 - syst_JES_Gjet_Stat6: 0.015179330378840826 - syst_JES_Gjet_Stat7: 0.024222772343396204 - syst_JES_Gjet_Stat8: 0.0233787996911732 - syst_JES_Gjet_Stat9: 0.07179855569577985 - syst_JES_Gjet_Veto: 0.4885658067241301 - syst_JES_Gjet_dPhi: 0.09020632516625429 - syst_JES_LArESZee: 2.104298160907812 - syst_JES_LArEsmear: 0.17056400558148252 - syst_JES_LAr_JVT: 0.2554665535838302 - syst_JES_MJB_Alpha: 0.0015908888116092494 - syst_JES_MJB_Asym: 0.0034998914536739562 - syst_JES_MJB_Beta: 0.002617994919193339 - syst_JES_MJB_Fragmentation: 0.012936088551026542 - syst_JES_MJB_Stat1: 0.009210180169247505 - syst_JES_MJB_Stat10: 1.2914380618132642e-09 - syst_JES_MJB_Stat11: 3.5314783915521835e-43 - syst_JES_MJB_Stat12: 4.117084769591222e-12 - syst_JES_MJB_Stat13: 5.077506942388164e-15 - syst_JES_MJB_Stat14: 2.32960833618014e-19 - syst_JES_MJB_Stat15: 6.0552496232607954e-30 + syst_JES_EtaIntercalibration_Stat91: 2.35906396e-04 + syst_JES_EtaIntercalibration_Stat92: 1.53150463e-03 + syst_JES_EtaIntercalibration_Stat93: 3.26403121e-03 + syst_JES_EtaIntercalibration_Stat94: 5.74656890e-04 + syst_JES_EtaIntercalibration_Stat95: 1.15196251e-04 + syst_JES_EtaIntercalibration_Stat96: 5.27999449e-06 + syst_JES_EtaIntercalibration_Stat97: 5.69151895e-09 + syst_JES_EtaIntercalibration_Stat98: 5.69151895e-09 + syst_JES_EtaIntercalibration_Stat99: 5.69151895e-09 + syst_JES_EtaIntercalibration_TotalStat_MJB: 9.85005953e-03 + syst_JES_Flavour_Comp: 1.78512381e-01 + syst_JES_Flavour_Response: 2.36412706e+00 + syst_JES_Gjet_Generator: 1.86359726e+00 + syst_JES_Gjet_OOC: 1.16826032e+00 + syst_JES_Gjet_Purity: 3.65042397e-01 + syst_JES_Gjet_Stat1: 1.79440464e-35 + syst_JES_Gjet_Stat10: 1.42119066e-01 + syst_JES_Gjet_Stat11: 1.56007585e-01 + syst_JES_Gjet_Stat12: 4.59983486e-02 + syst_JES_Gjet_Stat13: 2.47669639e-02 + syst_JES_Gjet_Stat14: 7.84700013e-03 + syst_JES_Gjet_Stat15: 1.66963073e-03 + syst_JES_Gjet_Stat2: 1.27045927e-04 + syst_JES_Gjet_Stat3: 1.17718833e-43 + syst_JES_Gjet_Stat4: 4.05473094e-03 + syst_JES_Gjet_Stat5: 7.28551634e-03 + syst_JES_Gjet_Stat6: 1.51793304e-02 + syst_JES_Gjet_Stat7: 2.42227723e-02 + syst_JES_Gjet_Stat8: 2.33787997e-02 + syst_JES_Gjet_Stat9: 7.17985557e-02 + syst_JES_Gjet_Veto: 4.88565807e-01 + syst_JES_Gjet_dPhi: 9.02063252e-02 + syst_JES_LArESZee: 2.10429816e+00 + syst_JES_LArEsmear: 1.70564006e-01 + syst_JES_LAr_JVT: 2.55466554e-01 + syst_JES_MJB_Alpha: 1.59088881e-03 + syst_JES_MJB_Asym: 3.49989145e-03 + syst_JES_MJB_Beta: 2.61799492e-03 + syst_JES_MJB_Fragmentation: 1.29360886e-02 + syst_JES_MJB_Stat1: 9.21018017e-03 + syst_JES_MJB_Stat10: 1.29143806e-09 + syst_JES_MJB_Stat11: 3.53147839e-43 + syst_JES_MJB_Stat12: 4.11708477e-12 + syst_JES_MJB_Stat13: 5.07750694e-15 + syst_JES_MJB_Stat14: 2.32960834e-19 + syst_JES_MJB_Stat15: 6.05524962e-30 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 0.007997744603949291 - syst_JES_MJB_Stat3: 0.003012902379766062 - syst_JES_MJB_Stat4: 0.001709534147070482 + syst_JES_MJB_Stat2: 7.99774460e-03 + syst_JES_MJB_Stat3: 3.01290238e-03 + syst_JES_MJB_Stat4: 1.70953415e-03 syst_JES_MJB_Stat5: 0.0 - syst_JES_MJB_Stat6: 1.3813105190361798e-22 + syst_JES_MJB_Stat6: 1.38131052e-22 syst_JES_MJB_Stat7: 0.0 - syst_JES_MJB_Stat8: 4.708580120375993e-43 - syst_JES_MJB_Stat9: 9.854503069663127e-10 - syst_JES_MJB_Threshold: 0.015514521222068053 - syst_JES_Pileup_MuOffset: 0.011934989400916952 - syst_JES_Pileup_NPVOffset: 0.09136337709936078 - syst_JES_Pileup_Pt_term: 0.4427775246102719 - syst_JES_Pileup_Rho_topology: 0.6326335017211783 - syst_JES_PunchThrough_MC15: 0.012715677203751281 + syst_JES_MJB_Stat8: 4.70858012e-43 + syst_JES_MJB_Stat9: 9.85450307e-10 + syst_JES_MJB_Threshold: 1.55145212e-02 + syst_JES_Pileup_MuOffset: 1.19349894e-02 + syst_JES_Pileup_NPVOffset: 9.13633771e-02 + syst_JES_Pileup_Pt_term: 4.42777525e-01 + syst_JES_Pileup_Rho_topology: 6.32633502e-01 + syst_JES_PunchThrough_MC15: 1.27156772e-02 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 1.744433719004537 - syst_JES_Zjet_MuScale: 0.10888562164032495 - syst_JES_Zjet_MuSmearID: 0.019885534315174938 - syst_JES_Zjet_MuSmearMS: 0.20806164350980216 - syst_JES_Zjet_OOC: 0.5873173588444327 - syst_JES_Zjet_Stat1: 0.009144660682605998 - syst_JES_Zjet_Stat10: 0.1449675952583887 - syst_JES_Zjet_Stat11: 0.28465826880665174 - syst_JES_Zjet_Stat12: 0.3455362897005176 - syst_JES_Zjet_Stat13: 0.008314400925502691 - syst_JES_Zjet_Stat2: 3.6442348991249175e-08 - syst_JES_Zjet_Stat3: 0.00496272183383272 - syst_JES_Zjet_Stat4: 0.005160827162383952 - syst_JES_Zjet_Stat5: 0.006541762263144389 - syst_JES_Zjet_Stat6: 0.00884323521116565 - syst_JES_Zjet_Stat7: 0.012304200624177093 - syst_JES_Zjet_Stat8: 0.01624884303573642 - syst_JES_Zjet_Stat9: 0.04752347869211596 - syst_JES_Zjet_Veto: 0.1105242836439124 - syst_JES_Zjet_dPhi: 0.09798664858030404 + syst_JES_Zjet_MC: 1.74443372e+00 + syst_JES_Zjet_MuScale: 1.08885622e-01 + syst_JES_Zjet_MuSmearID: 1.98855343e-02 + syst_JES_Zjet_MuSmearMS: 2.08061644e-01 + syst_JES_Zjet_OOC: 5.87317359e-01 + syst_JES_Zjet_Stat1: 9.14466068e-03 + syst_JES_Zjet_Stat10: 1.44967595e-01 + syst_JES_Zjet_Stat11: 2.84658269e-01 + syst_JES_Zjet_Stat12: 3.45536290e-01 + syst_JES_Zjet_Stat13: 8.31440093e-03 + syst_JES_Zjet_Stat2: 3.64423490e-08 + syst_JES_Zjet_Stat3: 4.96272183e-03 + syst_JES_Zjet_Stat4: 5.16082716e-03 + syst_JES_Zjet_Stat5: 6.54176226e-03 + syst_JES_Zjet_Stat6: 8.84323521e-03 + syst_JES_Zjet_Stat7: 1.23042006e-02 + syst_JES_Zjet_Stat8: 1.62488430e-02 + syst_JES_Zjet_Stat9: 4.75234787e-02 + syst_JES_Zjet_Veto: 1.10524284e-01 + syst_JES_Zjet_dPhi: 9.79866486e-02 syst_PRW: 0.1425 syst_Unfolding_bias: 0.001567 - syst_cleaning: 0.4916426217284258 + syst_cleaning: 4.91642622e-01 syst_lumi: 2.035 - stat: 0.3728 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.621287507922057 - syst_JER_NP1: 0.030091581463924422 - syst_JER_NP2: 0.18128827871652375 - syst_JER_NP3: 0.16660591226003954 - syst_JER_NP4: 0.03039008226379126 - syst_JER_NP5: 0.07535035152539103 - syst_JER_NP6: 0.05661737895734842 - syst_JER_NP7: 0.05939453931128686 - syst_JER_NP8: 0.03838143394924166 - syst_JES_EtaIntercalibration_Modelling: 1.1540880328207204 - syst_JES_EtaIntercalibration_NonClosure: 2.6704680623207233e-05 - syst_JES_EtaIntercalibration_Stat0: 4.865330718460976e-10 + syst_JER_NP0: 6.21287508e-01 + syst_JER_NP1: 3.00915815e-02 + syst_JER_NP2: 1.81288279e-01 + syst_JER_NP3: 1.66605912e-01 + syst_JER_NP4: 3.03900823e-02 + syst_JER_NP5: 7.53503515e-02 + syst_JER_NP6: 5.66173790e-02 + syst_JER_NP7: 5.93945393e-02 + syst_JER_NP8: 3.83814339e-02 + syst_JES_EtaIntercalibration_Modelling: 1.15408803e+00 + syst_JES_EtaIntercalibration_NonClosure: 2.67046806e-05 + syst_JES_EtaIntercalibration_Stat0: 4.86533072e-10 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 2.4937424940640424e-05 - syst_JES_EtaIntercalibration_Stat101: 0.0007085155802803492 - syst_JES_EtaIntercalibration_Stat102: 0.0007961636562290443 - syst_JES_EtaIntercalibration_Stat103: 0.001268333326653526 - syst_JES_EtaIntercalibration_Stat104: 0.0006981418314891323 - syst_JES_EtaIntercalibration_Stat105: 3.2921456027946275e-10 - syst_JES_EtaIntercalibration_Stat106: 4.865330718460976e-10 - syst_JES_EtaIntercalibration_Stat107: 4.865330718460976e-10 - syst_JES_EtaIntercalibration_Stat108: 4.865330718460976e-10 - syst_JES_EtaIntercalibration_Stat109: 4.865330718460976e-10 + syst_JES_EtaIntercalibration_Stat100: 2.49374249e-05 + syst_JES_EtaIntercalibration_Stat101: 7.08515580e-04 + syst_JES_EtaIntercalibration_Stat102: 7.96163656e-04 + syst_JES_EtaIntercalibration_Stat103: 1.26833333e-03 + syst_JES_EtaIntercalibration_Stat104: 6.98141831e-04 + syst_JES_EtaIntercalibration_Stat105: 3.29214560e-10 + syst_JES_EtaIntercalibration_Stat106: 4.86533072e-10 + syst_JES_EtaIntercalibration_Stat107: 4.86533072e-10 + syst_JES_EtaIntercalibration_Stat108: 4.86533072e-10 + syst_JES_EtaIntercalibration_Stat109: 4.86533072e-10 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 1.3074765189096133e-07 - syst_JES_EtaIntercalibration_Stat111: 0.0018936697672772833 - syst_JES_EtaIntercalibration_Stat112: 0.009703561343651104 - syst_JES_EtaIntercalibration_Stat113: 0.011535373335961 - syst_JES_EtaIntercalibration_Stat114: 0.004141766893488816 - syst_JES_EtaIntercalibration_Stat115: 0.00022896476819589515 - syst_JES_EtaIntercalibration_Stat116: 1.195992197982257e-06 - syst_JES_EtaIntercalibration_Stat117: 4.865330718460976e-10 - syst_JES_EtaIntercalibration_Stat118: 4.865330718460976e-10 - syst_JES_EtaIntercalibration_Stat119: 4.865330718460976e-10 + syst_JES_EtaIntercalibration_Stat110: 1.30747652e-07 + syst_JES_EtaIntercalibration_Stat111: 1.89366977e-03 + syst_JES_EtaIntercalibration_Stat112: 9.70356134e-03 + syst_JES_EtaIntercalibration_Stat113: 1.15353733e-02 + syst_JES_EtaIntercalibration_Stat114: 4.14176689e-03 + syst_JES_EtaIntercalibration_Stat115: 2.28964768e-04 + syst_JES_EtaIntercalibration_Stat116: 1.19599220e-06 + syst_JES_EtaIntercalibration_Stat117: 4.86533072e-10 + syst_JES_EtaIntercalibration_Stat118: 4.86533072e-10 + syst_JES_EtaIntercalibration_Stat119: 4.86533072e-10 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 4.438380194395248e-05 - syst_JES_EtaIntercalibration_Stat121: 0.002465668671983322 - syst_JES_EtaIntercalibration_Stat122: 0.007160070041556856 - syst_JES_EtaIntercalibration_Stat123: 0.008097262176192643 - syst_JES_EtaIntercalibration_Stat124: 0.00201769050684861 - syst_JES_EtaIntercalibration_Stat125: 3.3005960189032526e-06 - syst_JES_EtaIntercalibration_Stat126: 4.865330718460976e-10 - syst_JES_EtaIntercalibration_Stat127: 4.865330718460976e-10 - syst_JES_EtaIntercalibration_Stat128: 4.865330718460976e-10 - syst_JES_EtaIntercalibration_Stat129: 0.00034070277468051236 + syst_JES_EtaIntercalibration_Stat120: 4.43838019e-05 + syst_JES_EtaIntercalibration_Stat121: 2.46566867e-03 + syst_JES_EtaIntercalibration_Stat122: 7.16007004e-03 + syst_JES_EtaIntercalibration_Stat123: 8.09726218e-03 + syst_JES_EtaIntercalibration_Stat124: 2.01769051e-03 + syst_JES_EtaIntercalibration_Stat125: 3.30059602e-06 + syst_JES_EtaIntercalibration_Stat126: 4.86533072e-10 + syst_JES_EtaIntercalibration_Stat127: 4.86533072e-10 + syst_JES_EtaIntercalibration_Stat128: 4.86533072e-10 + syst_JES_EtaIntercalibration_Stat129: 3.40702775e-04 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 0.012815594992039972 - syst_JES_EtaIntercalibration_Stat131: 0.06557096518276974 - syst_JES_EtaIntercalibration_Stat132: 0.0829408299632937 - syst_JES_EtaIntercalibration_Stat133: 0.019678340250132886 - syst_JES_EtaIntercalibration_Stat134: 0.0006651274069680185 - syst_JES_EtaIntercalibration_Stat135: 1.1961542877070666e-06 + syst_JES_EtaIntercalibration_Stat130: 1.28155950e-02 + syst_JES_EtaIntercalibration_Stat131: 6.55709652e-02 + syst_JES_EtaIntercalibration_Stat132: 8.29408300e-02 + syst_JES_EtaIntercalibration_Stat133: 1.96783403e-02 + syst_JES_EtaIntercalibration_Stat134: 6.65127407e-04 + syst_JES_EtaIntercalibration_Stat135: 1.19615429e-06 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 syst_JES_EtaIntercalibration_Stat138: 0.0 - syst_JES_EtaIntercalibration_Stat139: 0.0006576652126082084 - syst_JES_EtaIntercalibration_Stat14: 2.53139598381192e-05 - syst_JES_EtaIntercalibration_Stat140: 0.024182795537323637 - syst_JES_EtaIntercalibration_Stat141: 0.07806711263393824 - syst_JES_EtaIntercalibration_Stat142: 0.050401906709964854 - syst_JES_EtaIntercalibration_Stat143: 0.012470030904131714 - syst_JES_EtaIntercalibration_Stat144: 0.0004724094929983943 + syst_JES_EtaIntercalibration_Stat139: 6.57665213e-04 + syst_JES_EtaIntercalibration_Stat14: 2.53139598e-05 + syst_JES_EtaIntercalibration_Stat140: 2.41827955e-02 + syst_JES_EtaIntercalibration_Stat141: 7.80671126e-02 + syst_JES_EtaIntercalibration_Stat142: 5.04019067e-02 + syst_JES_EtaIntercalibration_Stat143: 1.24700309e-02 + syst_JES_EtaIntercalibration_Stat144: 4.72409493e-04 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 0.00028657224429452343 - syst_JES_EtaIntercalibration_Stat148: 0.011056304660690209 - syst_JES_EtaIntercalibration_Stat149: 0.06137840886663649 - syst_JES_EtaIntercalibration_Stat15: 2.525372457789678e-05 - syst_JES_EtaIntercalibration_Stat150: 0.07152020046811948 - syst_JES_EtaIntercalibration_Stat151: 0.022585521911171327 - syst_JES_EtaIntercalibration_Stat152: 0.0003688420088601622 + syst_JES_EtaIntercalibration_Stat147: 2.86572244e-04 + syst_JES_EtaIntercalibration_Stat148: 1.10563047e-02 + syst_JES_EtaIntercalibration_Stat149: 6.13784089e-02 + syst_JES_EtaIntercalibration_Stat15: 2.52537246e-05 + syst_JES_EtaIntercalibration_Stat150: 7.15202005e-02 + syst_JES_EtaIntercalibration_Stat151: 2.25855219e-02 + syst_JES_EtaIntercalibration_Stat152: 3.68842009e-04 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 syst_JES_EtaIntercalibration_Stat156: 0.0 - syst_JES_EtaIntercalibration_Stat157: 0.0005064103050639865 - syst_JES_EtaIntercalibration_Stat158: 0.0269345484461871 - syst_JES_EtaIntercalibration_Stat159: 0.08295150676750844 - syst_JES_EtaIntercalibration_Stat16: 2.512415627116013e-05 - syst_JES_EtaIntercalibration_Stat160: 0.06090968293301155 - syst_JES_EtaIntercalibration_Stat161: 0.011501466721683805 - syst_JES_EtaIntercalibration_Stat162: 0.0005145184253260518 + syst_JES_EtaIntercalibration_Stat157: 5.06410305e-04 + syst_JES_EtaIntercalibration_Stat158: 2.69345484e-02 + syst_JES_EtaIntercalibration_Stat159: 8.29515068e-02 + syst_JES_EtaIntercalibration_Stat16: 2.51241563e-05 + syst_JES_EtaIntercalibration_Stat160: 6.09096829e-02 + syst_JES_EtaIntercalibration_Stat161: 1.15014667e-02 + syst_JES_EtaIntercalibration_Stat162: 5.14518425e-04 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 0.00040430579614939976 - syst_JES_EtaIntercalibration_Stat166: 0.01236213234033676 - syst_JES_EtaIntercalibration_Stat167: 0.05390124581120552 - syst_JES_EtaIntercalibration_Stat168: 0.052108865848337176 - syst_JES_EtaIntercalibration_Stat169: 0.015105056131971174 - syst_JES_EtaIntercalibration_Stat17: 4.0400085086544057e-10 - syst_JES_EtaIntercalibration_Stat170: 0.0007369683354798902 + syst_JES_EtaIntercalibration_Stat165: 4.04305796e-04 + syst_JES_EtaIntercalibration_Stat166: 1.23621323e-02 + syst_JES_EtaIntercalibration_Stat167: 5.39012458e-02 + syst_JES_EtaIntercalibration_Stat168: 5.21088658e-02 + syst_JES_EtaIntercalibration_Stat169: 1.51050561e-02 + syst_JES_EtaIntercalibration_Stat17: 4.04000851e-10 + syst_JES_EtaIntercalibration_Stat170: 7.36968335e-04 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 - syst_JES_EtaIntercalibration_Stat175: 0.0003469379173209524 - syst_JES_EtaIntercalibration_Stat176: 0.02411641919937535 - syst_JES_EtaIntercalibration_Stat177: 0.09081677598329507 - syst_JES_EtaIntercalibration_Stat178: 0.0622107072777669 - syst_JES_EtaIntercalibration_Stat179: 0.009820782084437063 + syst_JES_EtaIntercalibration_Stat175: 3.46937917e-04 + syst_JES_EtaIntercalibration_Stat176: 2.41164192e-02 + syst_JES_EtaIntercalibration_Stat177: 9.08167760e-02 + syst_JES_EtaIntercalibration_Stat178: 6.22107073e-02 + syst_JES_EtaIntercalibration_Stat179: 9.82078208e-03 syst_JES_EtaIntercalibration_Stat18: 0.0 - syst_JES_EtaIntercalibration_Stat180: 0.0005656821550897641 + syst_JES_EtaIntercalibration_Stat180: 5.65682155e-04 syst_JES_EtaIntercalibration_Stat181: 0.0 - syst_JES_EtaIntercalibration_Stat182: 0.0003051206795269701 - syst_JES_EtaIntercalibration_Stat183: 0.00867953931669187 - syst_JES_EtaIntercalibration_Stat184: 0.03196794331826807 - syst_JES_EtaIntercalibration_Stat185: 0.041146458839127334 - syst_JES_EtaIntercalibration_Stat186: 0.01286064177053385 - syst_JES_EtaIntercalibration_Stat187: 0.0007913102872451488 + syst_JES_EtaIntercalibration_Stat182: 3.05120680e-04 + syst_JES_EtaIntercalibration_Stat183: 8.67953932e-03 + syst_JES_EtaIntercalibration_Stat184: 3.19679433e-02 + syst_JES_EtaIntercalibration_Stat185: 4.11464588e-02 + syst_JES_EtaIntercalibration_Stat186: 1.28606418e-02 + syst_JES_EtaIntercalibration_Stat187: 7.91310287e-04 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 - syst_JES_EtaIntercalibration_Stat192: 0.0003040615192687164 - syst_JES_EtaIntercalibration_Stat193: 0.018519449235870917 - syst_JES_EtaIntercalibration_Stat194: 0.05077022823466524 - syst_JES_EtaIntercalibration_Stat195: 0.033702155717401816 - syst_JES_EtaIntercalibration_Stat196: 0.0038158220608408874 - syst_JES_EtaIntercalibration_Stat197: 0.00012567023991383162 - syst_JES_EtaIntercalibration_Stat198: 0.0025901722852930075 - syst_JES_EtaIntercalibration_Stat199: 0.008664888747121915 + syst_JES_EtaIntercalibration_Stat192: 3.04061519e-04 + syst_JES_EtaIntercalibration_Stat193: 1.85194492e-02 + syst_JES_EtaIntercalibration_Stat194: 5.07702282e-02 + syst_JES_EtaIntercalibration_Stat195: 3.37021557e-02 + syst_JES_EtaIntercalibration_Stat196: 3.81582206e-03 + syst_JES_EtaIntercalibration_Stat197: 1.25670240e-04 + syst_JES_EtaIntercalibration_Stat198: 2.59017229e-03 + syst_JES_EtaIntercalibration_Stat199: 8.66488875e-03 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 0.010166692714447506 - syst_JES_EtaIntercalibration_Stat201: 0.003961236928031444 - syst_JES_EtaIntercalibration_Stat202: 0.00022857863389870892 + syst_JES_EtaIntercalibration_Stat200: 1.01666927e-02 + syst_JES_EtaIntercalibration_Stat201: 3.96123693e-03 + syst_JES_EtaIntercalibration_Stat202: 2.28578634e-04 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 - syst_JES_EtaIntercalibration_Stat207: 0.0004525160349368849 - syst_JES_EtaIntercalibration_Stat208: 0.004087686020231985 - syst_JES_EtaIntercalibration_Stat209: 0.011624664984419981 + syst_JES_EtaIntercalibration_Stat207: 4.52516035e-04 + syst_JES_EtaIntercalibration_Stat208: 4.08768602e-03 + syst_JES_EtaIntercalibration_Stat209: 1.16246650e-02 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 0.00879968272155309 - syst_JES_EtaIntercalibration_Stat211: 0.0032693893630921355 - syst_JES_EtaIntercalibration_Stat212: 0.000967366873269909 - syst_JES_EtaIntercalibration_Stat213: 0.0014553098467336774 - syst_JES_EtaIntercalibration_Stat214: 0.0005639894214433458 - syst_JES_EtaIntercalibration_Stat215: 5.889788330891018e-05 + syst_JES_EtaIntercalibration_Stat210: 8.79968272e-03 + syst_JES_EtaIntercalibration_Stat211: 3.26938936e-03 + syst_JES_EtaIntercalibration_Stat212: 9.67366873e-04 + syst_JES_EtaIntercalibration_Stat213: 1.45530985e-03 + syst_JES_EtaIntercalibration_Stat214: 5.63989421e-04 + syst_JES_EtaIntercalibration_Stat215: 5.88978833e-05 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 syst_JES_EtaIntercalibration_Stat219: 0.0 - syst_JES_EtaIntercalibration_Stat22: 4.865330718460976e-10 - syst_JES_EtaIntercalibration_Stat220: 3.0224286592076907e-05 - syst_JES_EtaIntercalibration_Stat221: 0.00047460594970986193 - syst_JES_EtaIntercalibration_Stat222: 0.0013824225719728394 - syst_JES_EtaIntercalibration_Stat223: 0.001236091723942847 - syst_JES_EtaIntercalibration_Stat224: 6.051614887779956e-06 - syst_JES_EtaIntercalibration_Stat225: 1.0946183878754276e-05 - syst_JES_EtaIntercalibration_Stat226: 9.793446634697869e-08 - syst_JES_EtaIntercalibration_Stat227: 5.037013659729344e-12 + syst_JES_EtaIntercalibration_Stat22: 4.86533072e-10 + syst_JES_EtaIntercalibration_Stat220: 3.02242866e-05 + syst_JES_EtaIntercalibration_Stat221: 4.74605950e-04 + syst_JES_EtaIntercalibration_Stat222: 1.38242257e-03 + syst_JES_EtaIntercalibration_Stat223: 1.23609172e-03 + syst_JES_EtaIntercalibration_Stat224: 6.05161489e-06 + syst_JES_EtaIntercalibration_Stat225: 1.09461839e-05 + syst_JES_EtaIntercalibration_Stat226: 9.79344663e-08 + syst_JES_EtaIntercalibration_Stat227: 5.03701366e-12 syst_JES_EtaIntercalibration_Stat228: 0.0 syst_JES_EtaIntercalibration_Stat229: 0.0 - syst_JES_EtaIntercalibration_Stat23: 4.865330718460976e-10 + syst_JES_EtaIntercalibration_Stat23: 4.86533072e-10 syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 - syst_JES_EtaIntercalibration_Stat232: 1.0023883711849164e-09 - syst_JES_EtaIntercalibration_Stat233: 2.0801930198902217e-06 - syst_JES_EtaIntercalibration_Stat234: 1.2227559149315125e-05 - syst_JES_EtaIntercalibration_Stat235: 4.6699922515995677e-05 - syst_JES_EtaIntercalibration_Stat236: 1.2526097425275759e-11 - syst_JES_EtaIntercalibration_Stat237: 9.464702398012682e-12 - syst_JES_EtaIntercalibration_Stat238: 5.212606905378536e-28 + syst_JES_EtaIntercalibration_Stat232: 1.00238837e-09 + syst_JES_EtaIntercalibration_Stat233: 2.08019302e-06 + syst_JES_EtaIntercalibration_Stat234: 1.22275591e-05 + syst_JES_EtaIntercalibration_Stat235: 4.66999225e-05 + syst_JES_EtaIntercalibration_Stat236: 1.25260974e-11 + syst_JES_EtaIntercalibration_Stat237: 9.46470240e-12 + syst_JES_EtaIntercalibration_Stat238: 5.21260691e-28 syst_JES_EtaIntercalibration_Stat239: 0.0 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 - syst_JES_EtaIntercalibration_Stat243: 3.178876221245489e-22 - syst_JES_EtaIntercalibration_Stat244: 1.2706875422384529e-14 - syst_JES_EtaIntercalibration_Stat245: 1.0088198136529388e-09 - syst_JES_EtaIntercalibration_Stat25: 4.077247601017137e-10 - syst_JES_EtaIntercalibration_Stat26: 9.422928366489898e-08 - syst_JES_EtaIntercalibration_Stat27: 2.939373465128241e-05 - syst_JES_EtaIntercalibration_Stat28: 0.00012094524329216093 - syst_JES_EtaIntercalibration_Stat29: 2.9647391432468388e-05 + syst_JES_EtaIntercalibration_Stat243: 3.17887622e-22 + syst_JES_EtaIntercalibration_Stat244: 1.27068754e-14 + syst_JES_EtaIntercalibration_Stat245: 1.00881981e-09 + syst_JES_EtaIntercalibration_Stat25: 4.07724760e-10 + syst_JES_EtaIntercalibration_Stat26: 9.42292837e-08 + syst_JES_EtaIntercalibration_Stat27: 2.93937347e-05 + syst_JES_EtaIntercalibration_Stat28: 1.20945243e-04 + syst_JES_EtaIntercalibration_Stat29: 2.96473914e-05 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 5.6902270243637906e-09 + syst_JES_EtaIntercalibration_Stat30: 5.69022702e-09 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 6.702518561518499e-10 - syst_JES_EtaIntercalibration_Stat36: 2.471246074918481e-05 - syst_JES_EtaIntercalibration_Stat37: 4.2462749934501415e-05 - syst_JES_EtaIntercalibration_Stat38: 4.040856553690071e-05 - syst_JES_EtaIntercalibration_Stat39: 3.376795995003992e-06 - syst_JES_EtaIntercalibration_Stat4: 5.590193981428552e-10 - syst_JES_EtaIntercalibration_Stat40: 1.9061219137295494e-10 + syst_JES_EtaIntercalibration_Stat35: 6.70251856e-10 + syst_JES_EtaIntercalibration_Stat36: 2.47124607e-05 + syst_JES_EtaIntercalibration_Stat37: 4.24627499e-05 + syst_JES_EtaIntercalibration_Stat38: 4.04085655e-05 + syst_JES_EtaIntercalibration_Stat39: 3.37679600e-06 + syst_JES_EtaIntercalibration_Stat4: 5.59019398e-10 + syst_JES_EtaIntercalibration_Stat40: 1.90612191e-10 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 - syst_JES_EtaIntercalibration_Stat44: 4.865330718460976e-10 + syst_JES_EtaIntercalibration_Stat44: 4.86533072e-10 syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 - syst_JES_EtaIntercalibration_Stat47: 4.078979651824706e-10 - syst_JES_EtaIntercalibration_Stat48: 2.6816388179618817e-06 - syst_JES_EtaIntercalibration_Stat49: 5.459514538857828e-05 - syst_JES_EtaIntercalibration_Stat5: 6.4497588379334e-07 - syst_JES_EtaIntercalibration_Stat50: 0.000138740198572728 - syst_JES_EtaIntercalibration_Stat51: 0.00038669332590568457 - syst_JES_EtaIntercalibration_Stat52: 5.466820168068454e-07 + syst_JES_EtaIntercalibration_Stat47: 4.07897965e-10 + syst_JES_EtaIntercalibration_Stat48: 2.68163882e-06 + syst_JES_EtaIntercalibration_Stat49: 5.45951454e-05 + syst_JES_EtaIntercalibration_Stat5: 6.44975884e-07 + syst_JES_EtaIntercalibration_Stat50: 1.38740199e-04 + syst_JES_EtaIntercalibration_Stat51: 3.86693326e-04 + syst_JES_EtaIntercalibration_Stat52: 5.46682017e-07 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 syst_JES_EtaIntercalibration_Stat56: 0.0 - syst_JES_EtaIntercalibration_Stat57: 2.531409099904348e-05 - syst_JES_EtaIntercalibration_Stat58: 2.21684915758831e-05 - syst_JES_EtaIntercalibration_Stat59: 0.0002547710090944415 - syst_JES_EtaIntercalibration_Stat6: 3.059477622078645e-06 - syst_JES_EtaIntercalibration_Stat60: 8.996529275226087e-05 - syst_JES_EtaIntercalibration_Stat61: 2.3631197792748466e-05 - syst_JES_EtaIntercalibration_Stat62: 4.121414896610143e-10 + syst_JES_EtaIntercalibration_Stat57: 2.53140910e-05 + syst_JES_EtaIntercalibration_Stat58: 2.21684916e-05 + syst_JES_EtaIntercalibration_Stat59: 2.54771009e-04 + syst_JES_EtaIntercalibration_Stat6: 3.05947762e-06 + syst_JES_EtaIntercalibration_Stat60: 8.99652928e-05 + syst_JES_EtaIntercalibration_Stat61: 2.36311978e-05 + syst_JES_EtaIntercalibration_Stat62: 4.12141490e-10 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 - syst_JES_EtaIntercalibration_Stat69: 5.878865281667883e-10 - syst_JES_EtaIntercalibration_Stat7: 5.486233728998428e-07 - syst_JES_EtaIntercalibration_Stat70: 3.7924393205429145e-05 - syst_JES_EtaIntercalibration_Stat71: 0.0005449625744030502 - syst_JES_EtaIntercalibration_Stat72: 0.0003263660455301684 - syst_JES_EtaIntercalibration_Stat73: 0.00016429787179084214 - syst_JES_EtaIntercalibration_Stat74: 4.504224100774738e-06 + syst_JES_EtaIntercalibration_Stat69: 5.87886528e-10 + syst_JES_EtaIntercalibration_Stat7: 5.48623373e-07 + syst_JES_EtaIntercalibration_Stat70: 3.79243932e-05 + syst_JES_EtaIntercalibration_Stat71: 5.44962574e-04 + syst_JES_EtaIntercalibration_Stat72: 3.26366046e-04 + syst_JES_EtaIntercalibration_Stat73: 1.64297872e-04 + syst_JES_EtaIntercalibration_Stat74: 4.50422410e-06 syst_JES_EtaIntercalibration_Stat75: 0.0 syst_JES_EtaIntercalibration_Stat76: 0.0 syst_JES_EtaIntercalibration_Stat77: 0.0 syst_JES_EtaIntercalibration_Stat78: 0.0 - syst_JES_EtaIntercalibration_Stat79: 2.471672753152559e-05 + syst_JES_EtaIntercalibration_Stat79: 2.47167275e-05 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 0.00023930275280489356 - syst_JES_EtaIntercalibration_Stat81: 0.0004112071831814225 - syst_JES_EtaIntercalibration_Stat82: 0.00031208378181988243 - syst_JES_EtaIntercalibration_Stat83: 0.0006212400555944537 - syst_JES_EtaIntercalibration_Stat84: 2.5806913041857606e-10 - syst_JES_EtaIntercalibration_Stat85: 4.865330718460976e-10 - syst_JES_EtaIntercalibration_Stat86: 4.865330718460976e-10 - syst_JES_EtaIntercalibration_Stat87: 4.865330718460976e-10 - syst_JES_EtaIntercalibration_Stat88: 4.865330718460976e-10 - syst_JES_EtaIntercalibration_Stat89: 4.865330718460976e-10 + syst_JES_EtaIntercalibration_Stat80: 2.39302753e-04 + syst_JES_EtaIntercalibration_Stat81: 4.11207183e-04 + syst_JES_EtaIntercalibration_Stat82: 3.12083782e-04 + syst_JES_EtaIntercalibration_Stat83: 6.21240056e-04 + syst_JES_EtaIntercalibration_Stat84: 2.58069130e-10 + syst_JES_EtaIntercalibration_Stat85: 4.86533072e-10 + syst_JES_EtaIntercalibration_Stat86: 4.86533072e-10 + syst_JES_EtaIntercalibration_Stat87: 4.86533072e-10 + syst_JES_EtaIntercalibration_Stat88: 4.86533072e-10 + syst_JES_EtaIntercalibration_Stat89: 4.86533072e-10 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 0.00012740429820064944 - syst_JES_EtaIntercalibration_Stat92: 0.0010700698610371193 - syst_JES_EtaIntercalibration_Stat93: 0.0012477549549090158 - syst_JES_EtaIntercalibration_Stat94: 0.0002668091218455621 - syst_JES_EtaIntercalibration_Stat95: 2.619423606444746e-05 - syst_JES_EtaIntercalibration_Stat96: 1.195992197982257e-06 - syst_JES_EtaIntercalibration_Stat97: 4.865330718460976e-10 - syst_JES_EtaIntercalibration_Stat98: 4.865330718460976e-10 - syst_JES_EtaIntercalibration_Stat99: 4.865330718460976e-10 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0207181532719497 - syst_JES_Flavour_Comp: 0.15443594141261288 - syst_JES_Flavour_Response: 1.2662743067755897 - syst_JES_Gjet_Generator: 1.0585741636748933 - syst_JES_Gjet_OOC: 0.6997547641852824 - syst_JES_Gjet_Purity: 0.218579339142564 - syst_JES_Gjet_Stat1: 3.3083902475373126e-27 - syst_JES_Gjet_Stat10: 0.0732654802755022 - syst_JES_Gjet_Stat11: 0.10945157045469928 - syst_JES_Gjet_Stat12: 0.06551320324942142 - syst_JES_Gjet_Stat13: 0.013649748276067217 - syst_JES_Gjet_Stat14: 0.011652258922629553 - syst_JES_Gjet_Stat15: 0.0018209096270820253 - syst_JES_Gjet_Stat2: 7.179350597372996e-06 - syst_JES_Gjet_Stat3: 1.0250276679192617e-33 - syst_JES_Gjet_Stat4: 0.0022932355764871716 - syst_JES_Gjet_Stat5: 0.004164849995414001 - syst_JES_Gjet_Stat6: 0.007522359470272608 - syst_JES_Gjet_Stat7: 0.010781802122094434 - syst_JES_Gjet_Stat8: 0.00950833334501899 - syst_JES_Gjet_Stat9: 0.032863576722566276 - syst_JES_Gjet_Veto: 0.2963485574454514 - syst_JES_Gjet_dPhi: 0.05059179973078641 - syst_JES_LArESZee: 1.2700967079321166 - syst_JES_LArEsmear: 0.10056043904040993 - syst_JES_LAr_JVT: 0.14608490365195165 - syst_JES_MJB_Alpha: 0.0003177908859714464 - syst_JES_MJB_Asym: 0.00794161852206463 - syst_JES_MJB_Beta: 0.002055112790836689 - syst_JES_MJB_Fragmentation: 0.026953690410591268 - syst_JES_MJB_Stat1: 0.00815362917663049 - syst_JES_MJB_Stat10: 7.116104552351658e-08 - syst_JES_MJB_Stat11: 3.0492754189775556e-33 - syst_JES_MJB_Stat12: 1.1498219286045992e-09 - syst_JES_MJB_Stat13: 9.770498605496036e-12 - syst_JES_MJB_Stat14: 4.329260993518409e-15 - syst_JES_MJB_Stat15: 3.346322160223071e-23 - syst_JES_MJB_Stat16: 2.3339384631990622e-35 - syst_JES_MJB_Stat2: 0.003093442742318015 - syst_JES_MJB_Stat3: 0.00012358182512003937 - syst_JES_MJB_Stat4: 0.0013076983597145023 + syst_JES_EtaIntercalibration_Stat91: 1.27404298e-04 + syst_JES_EtaIntercalibration_Stat92: 1.07006986e-03 + syst_JES_EtaIntercalibration_Stat93: 1.24775495e-03 + syst_JES_EtaIntercalibration_Stat94: 2.66809122e-04 + syst_JES_EtaIntercalibration_Stat95: 2.61942361e-05 + syst_JES_EtaIntercalibration_Stat96: 1.19599220e-06 + syst_JES_EtaIntercalibration_Stat97: 4.86533072e-10 + syst_JES_EtaIntercalibration_Stat98: 4.86533072e-10 + syst_JES_EtaIntercalibration_Stat99: 4.86533072e-10 + syst_JES_EtaIntercalibration_TotalStat_MJB: 2.07181533e-02 + syst_JES_Flavour_Comp: 1.54435941e-01 + syst_JES_Flavour_Response: 1.26627431e+00 + syst_JES_Gjet_Generator: 1.05857416e+00 + syst_JES_Gjet_OOC: 6.99754764e-01 + syst_JES_Gjet_Purity: 2.18579339e-01 + syst_JES_Gjet_Stat1: 3.30839025e-27 + syst_JES_Gjet_Stat10: 7.32654803e-02 + syst_JES_Gjet_Stat11: 1.09451570e-01 + syst_JES_Gjet_Stat12: 6.55132032e-02 + syst_JES_Gjet_Stat13: 1.36497483e-02 + syst_JES_Gjet_Stat14: 1.16522589e-02 + syst_JES_Gjet_Stat15: 1.82090963e-03 + syst_JES_Gjet_Stat2: 7.17935060e-06 + syst_JES_Gjet_Stat3: 1.02502767e-33 + syst_JES_Gjet_Stat4: 2.29323558e-03 + syst_JES_Gjet_Stat5: 4.16485000e-03 + syst_JES_Gjet_Stat6: 7.52235947e-03 + syst_JES_Gjet_Stat7: 1.07818021e-02 + syst_JES_Gjet_Stat8: 9.50833335e-03 + syst_JES_Gjet_Stat9: 3.28635767e-02 + syst_JES_Gjet_Veto: 2.96348557e-01 + syst_JES_Gjet_dPhi: 5.05917997e-02 + syst_JES_LArESZee: 1.27009671e+00 + syst_JES_LArEsmear: 1.00560439e-01 + syst_JES_LAr_JVT: 1.46084904e-01 + syst_JES_MJB_Alpha: 3.17790886e-04 + syst_JES_MJB_Asym: 7.94161852e-03 + syst_JES_MJB_Beta: 2.05511279e-03 + syst_JES_MJB_Fragmentation: 2.69536904e-02 + syst_JES_MJB_Stat1: 8.15362918e-03 + syst_JES_MJB_Stat10: 7.11610455e-08 + syst_JES_MJB_Stat11: 3.04927542e-33 + syst_JES_MJB_Stat12: 1.14982193e-09 + syst_JES_MJB_Stat13: 9.77049861e-12 + syst_JES_MJB_Stat14: 4.32926099e-15 + syst_JES_MJB_Stat15: 3.34632216e-23 + syst_JES_MJB_Stat16: 2.33393846e-35 + syst_JES_MJB_Stat2: 3.09344274e-03 + syst_JES_MJB_Stat3: 1.23581825e-04 + syst_JES_MJB_Stat4: 1.30769836e-03 syst_JES_MJB_Stat5: 0.0 - syst_JES_MJB_Stat6: 3.6026656797432646e-17 - syst_JES_MJB_Stat7: 1.604745073212565e-41 - syst_JES_MJB_Stat8: 4.7388910032932725e-33 - syst_JES_MJB_Stat9: 5.430845307132215e-08 - syst_JES_MJB_Threshold: 0.010840165681390668 - syst_JES_Pileup_MuOffset: 0.02346661800835391 - syst_JES_Pileup_NPVOffset: 0.062065604605127306 - syst_JES_Pileup_Pt_term: 0.24437431841337173 - syst_JES_Pileup_Rho_topology: 0.35131687619583546 - syst_JES_PunchThrough_MC15: 0.014305508335952273 + syst_JES_MJB_Stat6: 3.60266568e-17 + syst_JES_MJB_Stat7: 1.60474507e-41 + syst_JES_MJB_Stat8: 4.73889100e-33 + syst_JES_MJB_Stat9: 5.43084531e-08 + syst_JES_MJB_Threshold: 1.08401657e-02 + syst_JES_Pileup_MuOffset: 2.34666180e-02 + syst_JES_Pileup_NPVOffset: 6.20656046e-02 + syst_JES_Pileup_Pt_term: 2.44374318e-01 + syst_JES_Pileup_Rho_topology: 3.51316876e-01 + syst_JES_PunchThrough_MC15: 1.43055083e-02 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 1.001367289010381 - syst_JES_Zjet_MuScale: 0.06123502592471077 - syst_JES_Zjet_MuSmearID: 0.010369974963807772 - syst_JES_Zjet_MuSmearMS: 0.1345966964676325 - syst_JES_Zjet_OOC: 0.3405685246760187 - syst_JES_Zjet_Stat1: 0.005182222303220888 - syst_JES_Zjet_Stat10: 0.06377702309609629 - syst_JES_Zjet_Stat11: 0.11881601859597889 - syst_JES_Zjet_Stat12: 0.273598880662915 - syst_JES_Zjet_Stat13: 0.020219922125220956 - syst_JES_Zjet_Stat2: 3.1306818346807457e-09 - syst_JES_Zjet_Stat3: 0.0021759802819648895 - syst_JES_Zjet_Stat4: 0.0022502655529292536 - syst_JES_Zjet_Stat5: 0.0035402367604441373 - syst_JES_Zjet_Stat6: 0.0050035749219932745 - syst_JES_Zjet_Stat7: 0.006079904440038511 - syst_JES_Zjet_Stat8: 0.008035852848329167 - syst_JES_Zjet_Stat9: 0.021484209899365628 - syst_JES_Zjet_Veto: 0.06562936614047099 - syst_JES_Zjet_dPhi: 0.05773211476292896 + syst_JES_Zjet_MC: 1.00136729e+00 + syst_JES_Zjet_MuScale: 6.12350259e-02 + syst_JES_Zjet_MuSmearID: 1.03699750e-02 + syst_JES_Zjet_MuSmearMS: 1.34596696e-01 + syst_JES_Zjet_OOC: 3.40568525e-01 + syst_JES_Zjet_Stat1: 5.18222230e-03 + syst_JES_Zjet_Stat10: 6.37770231e-02 + syst_JES_Zjet_Stat11: 1.18816019e-01 + syst_JES_Zjet_Stat12: 2.73598881e-01 + syst_JES_Zjet_Stat13: 2.02199221e-02 + syst_JES_Zjet_Stat2: 3.13068183e-09 + syst_JES_Zjet_Stat3: 2.17598028e-03 + syst_JES_Zjet_Stat4: 2.25026555e-03 + syst_JES_Zjet_Stat5: 3.54023676e-03 + syst_JES_Zjet_Stat6: 5.00357492e-03 + syst_JES_Zjet_Stat7: 6.07990444e-03 + syst_JES_Zjet_Stat8: 8.03585285e-03 + syst_JES_Zjet_Stat9: 2.14842099e-02 + syst_JES_Zjet_Veto: 6.56293661e-02 + syst_JES_Zjet_dPhi: 5.77321148e-02 syst_PRW: 0.08257 - syst_Unfolding_bias: 0.0001569 - syst_cleaning: 0.27158556662679995 + syst_Unfolding_bias: 1.56900000e-04 + syst_cleaning: 2.71585567e-01 syst_lumi: 1.1524 - stat: 0.23454 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.33987506528134714 - syst_JER_NP1: 0.016405486887014355 - syst_JER_NP2: 0.11997882479837849 - syst_JER_NP3: 0.08273812467659633 - syst_JER_NP4: 0.013225534951373423 - syst_JER_NP5: 0.050646636610934 - syst_JER_NP6: 0.0253639601600381 - syst_JER_NP7: 0.027795744278576173 - syst_JER_NP8: 0.027372299866836182 - syst_JES_EtaIntercalibration_Modelling: 0.7083006917969232 - syst_JES_EtaIntercalibration_NonClosure: 8.478439877123622e-06 - syst_JES_EtaIntercalibration_Stat0: 4.337921247556253e-11 + syst_JER_NP0: 3.39875065e-01 + syst_JER_NP1: 1.64054869e-02 + syst_JER_NP2: 1.19978825e-01 + syst_JER_NP3: 8.27381247e-02 + syst_JER_NP4: 1.32255350e-02 + syst_JER_NP5: 5.06466366e-02 + syst_JER_NP6: 2.53639602e-02 + syst_JER_NP7: 2.77957443e-02 + syst_JER_NP8: 2.73722999e-02 + syst_JES_EtaIntercalibration_Modelling: 7.08300692e-01 + syst_JES_EtaIntercalibration_NonClosure: 8.47843988e-06 + syst_JES_EtaIntercalibration_Stat0: 4.33792125e-11 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 4.808512907117828e-06 - syst_JES_EtaIntercalibration_Stat101: 0.00034219190054704686 - syst_JES_EtaIntercalibration_Stat102: 0.000336522301192655 - syst_JES_EtaIntercalibration_Stat103: 0.00023194992455269307 - syst_JES_EtaIntercalibration_Stat104: 0.0002921621595963447 - syst_JES_EtaIntercalibration_Stat105: 3.0120841488909304e-11 - syst_JES_EtaIntercalibration_Stat106: 4.337921247556253e-11 - syst_JES_EtaIntercalibration_Stat107: 4.337921247556253e-11 - syst_JES_EtaIntercalibration_Stat108: 4.337921247556253e-11 - syst_JES_EtaIntercalibration_Stat109: 4.337921247556253e-11 + syst_JES_EtaIntercalibration_Stat100: 4.80851291e-06 + syst_JES_EtaIntercalibration_Stat101: 3.42191901e-04 + syst_JES_EtaIntercalibration_Stat102: 3.36522301e-04 + syst_JES_EtaIntercalibration_Stat103: 2.31949925e-04 + syst_JES_EtaIntercalibration_Stat104: 2.92162160e-04 + syst_JES_EtaIntercalibration_Stat105: 3.01208415e-11 + syst_JES_EtaIntercalibration_Stat106: 4.33792125e-11 + syst_JES_EtaIntercalibration_Stat107: 4.33792125e-11 + syst_JES_EtaIntercalibration_Stat108: 4.33792125e-11 + syst_JES_EtaIntercalibration_Stat109: 4.33792125e-11 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 1.2525981668116876e-08 - syst_JES_EtaIntercalibration_Stat111: 0.0004955544067002128 - syst_JES_EtaIntercalibration_Stat112: 0.0027475139217117716 - syst_JES_EtaIntercalibration_Stat113: 0.003864468398111181 - syst_JES_EtaIntercalibration_Stat114: 0.0013222509018715018 - syst_JES_EtaIntercalibration_Stat115: 5.121806029126835e-05 - syst_JES_EtaIntercalibration_Stat116: 1.7881979082097172e-07 - syst_JES_EtaIntercalibration_Stat117: 4.337921247556253e-11 - syst_JES_EtaIntercalibration_Stat118: 4.337921247556253e-11 - syst_JES_EtaIntercalibration_Stat119: 4.337921247556253e-11 + syst_JES_EtaIntercalibration_Stat110: 1.25259817e-08 + syst_JES_EtaIntercalibration_Stat111: 4.95554407e-04 + syst_JES_EtaIntercalibration_Stat112: 2.74751392e-03 + syst_JES_EtaIntercalibration_Stat113: 3.86446840e-03 + syst_JES_EtaIntercalibration_Stat114: 1.32225090e-03 + syst_JES_EtaIntercalibration_Stat115: 5.12180603e-05 + syst_JES_EtaIntercalibration_Stat116: 1.78819791e-07 + syst_JES_EtaIntercalibration_Stat117: 4.33792125e-11 + syst_JES_EtaIntercalibration_Stat118: 4.33792125e-11 + syst_JES_EtaIntercalibration_Stat119: 4.33792125e-11 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 1.2012638375893948e-05 - syst_JES_EtaIntercalibration_Stat121: 0.00075182360131882 - syst_JES_EtaIntercalibration_Stat122: 0.002607165702443939 - syst_JES_EtaIntercalibration_Stat123: 0.002515456370124515 - syst_JES_EtaIntercalibration_Stat124: 0.0003588625136107141 - syst_JES_EtaIntercalibration_Stat125: 3.6433688737211336e-07 - syst_JES_EtaIntercalibration_Stat126: 4.337921247556253e-11 - syst_JES_EtaIntercalibration_Stat127: 4.337921247556253e-11 - syst_JES_EtaIntercalibration_Stat128: 4.337921247556253e-11 - syst_JES_EtaIntercalibration_Stat129: 0.0003568232706466886 + syst_JES_EtaIntercalibration_Stat120: 1.20126384e-05 + syst_JES_EtaIntercalibration_Stat121: 7.51823601e-04 + syst_JES_EtaIntercalibration_Stat122: 2.60716570e-03 + syst_JES_EtaIntercalibration_Stat123: 2.51545637e-03 + syst_JES_EtaIntercalibration_Stat124: 3.58862514e-04 + syst_JES_EtaIntercalibration_Stat125: 3.64336887e-07 + syst_JES_EtaIntercalibration_Stat126: 4.33792125e-11 + syst_JES_EtaIntercalibration_Stat127: 4.33792125e-11 + syst_JES_EtaIntercalibration_Stat128: 4.33792125e-11 + syst_JES_EtaIntercalibration_Stat129: 3.56823271e-04 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 0.004207136912438196 - syst_JES_EtaIntercalibration_Stat131: 0.02285331267015791 - syst_JES_EtaIntercalibration_Stat132: 0.027204734882001695 - syst_JES_EtaIntercalibration_Stat133: 0.0072085699518004255 - syst_JES_EtaIntercalibration_Stat134: 0.00031485015483559794 - syst_JES_EtaIntercalibration_Stat135: 1.7883424588148658e-07 + syst_JES_EtaIntercalibration_Stat130: 4.20713691e-03 + syst_JES_EtaIntercalibration_Stat131: 2.28533127e-02 + syst_JES_EtaIntercalibration_Stat132: 2.72047349e-02 + syst_JES_EtaIntercalibration_Stat133: 7.20856995e-03 + syst_JES_EtaIntercalibration_Stat134: 3.14850155e-04 + syst_JES_EtaIntercalibration_Stat135: 1.78834246e-07 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 syst_JES_EtaIntercalibration_Stat138: 0.0 - syst_JES_EtaIntercalibration_Stat139: 0.00043700366954981055 - syst_JES_EtaIntercalibration_Stat14: 4.869664257340876e-06 - syst_JES_EtaIntercalibration_Stat140: 0.00856448286529899 - syst_JES_EtaIntercalibration_Stat141: 0.02721353156060418 - syst_JES_EtaIntercalibration_Stat142: 0.017205429375636055 - syst_JES_EtaIntercalibration_Stat143: 0.004083801262304521 - syst_JES_EtaIntercalibration_Stat144: 0.00021978058443463723 + syst_JES_EtaIntercalibration_Stat139: 4.37003670e-04 + syst_JES_EtaIntercalibration_Stat14: 4.86966426e-06 + syst_JES_EtaIntercalibration_Stat140: 8.56448287e-03 + syst_JES_EtaIntercalibration_Stat141: 2.72135316e-02 + syst_JES_EtaIntercalibration_Stat142: 1.72054294e-02 + syst_JES_EtaIntercalibration_Stat143: 4.08380126e-03 + syst_JES_EtaIntercalibration_Stat144: 2.19780584e-04 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 5.1856225277202735e-05 - syst_JES_EtaIntercalibration_Stat148: 0.005472339353512354 - syst_JES_EtaIntercalibration_Stat149: 0.025012772737143717 - syst_JES_EtaIntercalibration_Stat15: 4.858440289546769e-06 - syst_JES_EtaIntercalibration_Stat150: 0.028034981719273513 - syst_JES_EtaIntercalibration_Stat151: 0.009313509260745919 - syst_JES_EtaIntercalibration_Stat152: 0.0001071964803526683 + syst_JES_EtaIntercalibration_Stat147: 5.18562253e-05 + syst_JES_EtaIntercalibration_Stat148: 5.47233935e-03 + syst_JES_EtaIntercalibration_Stat149: 2.50127727e-02 + syst_JES_EtaIntercalibration_Stat15: 4.85844029e-06 + syst_JES_EtaIntercalibration_Stat150: 2.80349817e-02 + syst_JES_EtaIntercalibration_Stat151: 9.31350926e-03 + syst_JES_EtaIntercalibration_Stat152: 1.07196480e-04 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 syst_JES_EtaIntercalibration_Stat156: 0.0 - syst_JES_EtaIntercalibration_Stat157: 3.888898288728441e-05 - syst_JES_EtaIntercalibration_Stat158: 0.010813126039679738 - syst_JES_EtaIntercalibration_Stat159: 0.03404057578831474 - syst_JES_EtaIntercalibration_Stat16: 4.836819809210859e-06 - syst_JES_EtaIntercalibration_Stat160: 0.025444152569893148 - syst_JES_EtaIntercalibration_Stat161: 0.00483128492225412 - syst_JES_EtaIntercalibration_Stat162: 0.00022171181040936904 + syst_JES_EtaIntercalibration_Stat157: 3.88889829e-05 + syst_JES_EtaIntercalibration_Stat158: 1.08131260e-02 + syst_JES_EtaIntercalibration_Stat159: 3.40405758e-02 + syst_JES_EtaIntercalibration_Stat16: 4.83681981e-06 + syst_JES_EtaIntercalibration_Stat160: 2.54441526e-02 + syst_JES_EtaIntercalibration_Stat161: 4.83128492e-03 + syst_JES_EtaIntercalibration_Stat162: 2.21711810e-04 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 0.00026468561176422117 - syst_JES_EtaIntercalibration_Stat166: 0.007450850374789444 - syst_JES_EtaIntercalibration_Stat167: 0.030856822179219947 - syst_JES_EtaIntercalibration_Stat168: 0.028062763139078087 - syst_JES_EtaIntercalibration_Stat169: 0.009746531831887688 - syst_JES_EtaIntercalibration_Stat17: 3.600933628935696e-11 - syst_JES_EtaIntercalibration_Stat170: 0.0005086882222933808 + syst_JES_EtaIntercalibration_Stat165: 2.64685612e-04 + syst_JES_EtaIntercalibration_Stat166: 7.45085037e-03 + syst_JES_EtaIntercalibration_Stat167: 3.08568222e-02 + syst_JES_EtaIntercalibration_Stat168: 2.80627631e-02 + syst_JES_EtaIntercalibration_Stat169: 9.74653183e-03 + syst_JES_EtaIntercalibration_Stat17: 3.60093363e-11 + syst_JES_EtaIntercalibration_Stat170: 5.08688222e-04 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 - syst_JES_EtaIntercalibration_Stat175: 0.00022452625698345392 - syst_JES_EtaIntercalibration_Stat176: 0.013997976880606711 - syst_JES_EtaIntercalibration_Stat177: 0.05088000786163461 - syst_JES_EtaIntercalibration_Stat178: 0.03586641151551127 - syst_JES_EtaIntercalibration_Stat179: 0.006208337357940529 + syst_JES_EtaIntercalibration_Stat175: 2.24526257e-04 + syst_JES_EtaIntercalibration_Stat176: 1.39979769e-02 + syst_JES_EtaIntercalibration_Stat177: 5.08800079e-02 + syst_JES_EtaIntercalibration_Stat178: 3.58664115e-02 + syst_JES_EtaIntercalibration_Stat179: 6.20833736e-03 syst_JES_EtaIntercalibration_Stat18: 0.0 - syst_JES_EtaIntercalibration_Stat180: 0.0002651211708389204 + syst_JES_EtaIntercalibration_Stat180: 2.65121171e-04 syst_JES_EtaIntercalibration_Stat181: 0.0 - syst_JES_EtaIntercalibration_Stat182: 0.00044628320120188253 - syst_JES_EtaIntercalibration_Stat183: 0.009363925605748905 - syst_JES_EtaIntercalibration_Stat184: 0.035747885626285655 - syst_JES_EtaIntercalibration_Stat185: 0.04426738387345699 - syst_JES_EtaIntercalibration_Stat186: 0.009510334521981864 - syst_JES_EtaIntercalibration_Stat187: 0.0007819493893469065 + syst_JES_EtaIntercalibration_Stat182: 4.46283201e-04 + syst_JES_EtaIntercalibration_Stat183: 9.36392561e-03 + syst_JES_EtaIntercalibration_Stat184: 3.57478856e-02 + syst_JES_EtaIntercalibration_Stat185: 4.42673839e-02 + syst_JES_EtaIntercalibration_Stat186: 9.51033452e-03 + syst_JES_EtaIntercalibration_Stat187: 7.81949389e-04 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 - syst_JES_EtaIntercalibration_Stat192: 0.00018073950176979639 - syst_JES_EtaIntercalibration_Stat193: 0.019132647490611433 - syst_JES_EtaIntercalibration_Stat194: 0.05648818637555998 - syst_JES_EtaIntercalibration_Stat195: 0.038791913809452606 - syst_JES_EtaIntercalibration_Stat196: 0.005231952694740273 - syst_JES_EtaIntercalibration_Stat197: 0.00022968115263338436 - syst_JES_EtaIntercalibration_Stat198: 0.0019672078563283545 - syst_JES_EtaIntercalibration_Stat199: 0.0028744781700336497 + syst_JES_EtaIntercalibration_Stat192: 1.80739502e-04 + syst_JES_EtaIntercalibration_Stat193: 1.91326475e-02 + syst_JES_EtaIntercalibration_Stat194: 5.64881864e-02 + syst_JES_EtaIntercalibration_Stat195: 3.87919138e-02 + syst_JES_EtaIntercalibration_Stat196: 5.23195269e-03 + syst_JES_EtaIntercalibration_Stat197: 2.29681153e-04 + syst_JES_EtaIntercalibration_Stat198: 1.96720786e-03 + syst_JES_EtaIntercalibration_Stat199: 2.87447817e-03 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 0.0015779300554840826 - syst_JES_EtaIntercalibration_Stat201: 0.003756885245785397 - syst_JES_EtaIntercalibration_Stat202: 0.0004065815072958926 + syst_JES_EtaIntercalibration_Stat200: 1.57793006e-03 + syst_JES_EtaIntercalibration_Stat201: 3.75688525e-03 + syst_JES_EtaIntercalibration_Stat202: 4.06581507e-04 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 - syst_JES_EtaIntercalibration_Stat207: 0.00021812834478810865 - syst_JES_EtaIntercalibration_Stat208: 0.001020249278362891 - syst_JES_EtaIntercalibration_Stat209: 0.0018647447860431197 + syst_JES_EtaIntercalibration_Stat207: 2.18128345e-04 + syst_JES_EtaIntercalibration_Stat208: 1.02024928e-03 + syst_JES_EtaIntercalibration_Stat209: 1.86474479e-03 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 0.002566669437227942 - syst_JES_EtaIntercalibration_Stat211: 0.0009654764782220228 - syst_JES_EtaIntercalibration_Stat212: 0.0012931155661811517 - syst_JES_EtaIntercalibration_Stat213: 0.002149623920596344 - syst_JES_EtaIntercalibration_Stat214: 0.0006820251809867433 - syst_JES_EtaIntercalibration_Stat215: 2.0300852001824945e-05 + syst_JES_EtaIntercalibration_Stat210: 2.56666944e-03 + syst_JES_EtaIntercalibration_Stat211: 9.65476478e-04 + syst_JES_EtaIntercalibration_Stat212: 1.29311557e-03 + syst_JES_EtaIntercalibration_Stat213: 2.14962392e-03 + syst_JES_EtaIntercalibration_Stat214: 6.82025181e-04 + syst_JES_EtaIntercalibration_Stat215: 2.03008520e-05 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 syst_JES_EtaIntercalibration_Stat219: 0.0 - syst_JES_EtaIntercalibration_Stat22: 4.337921247556253e-11 - syst_JES_EtaIntercalibration_Stat220: 2.74356847918751e-05 - syst_JES_EtaIntercalibration_Stat221: 0.0006440044176867112 - syst_JES_EtaIntercalibration_Stat222: 0.0013730974792417324 - syst_JES_EtaIntercalibration_Stat223: 0.0015075085505561817 - syst_JES_EtaIntercalibration_Stat224: 3.8235615229782825e-06 - syst_JES_EtaIntercalibration_Stat225: 3.4892652335412966e-05 - syst_JES_EtaIntercalibration_Stat226: 9.03073791046446e-07 - syst_JES_EtaIntercalibration_Stat227: 1.1088214153776072e-09 + syst_JES_EtaIntercalibration_Stat22: 4.33792125e-11 + syst_JES_EtaIntercalibration_Stat220: 2.74356848e-05 + syst_JES_EtaIntercalibration_Stat221: 6.44004418e-04 + syst_JES_EtaIntercalibration_Stat222: 1.37309748e-03 + syst_JES_EtaIntercalibration_Stat223: 1.50750855e-03 + syst_JES_EtaIntercalibration_Stat224: 3.82356152e-06 + syst_JES_EtaIntercalibration_Stat225: 3.48926523e-05 + syst_JES_EtaIntercalibration_Stat226: 9.03073791e-07 + syst_JES_EtaIntercalibration_Stat227: 1.10882142e-09 syst_JES_EtaIntercalibration_Stat228: 0.0 syst_JES_EtaIntercalibration_Stat229: 0.0 - syst_JES_EtaIntercalibration_Stat23: 4.337921247556253e-11 + syst_JES_EtaIntercalibration_Stat23: 4.33792125e-11 syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 - syst_JES_EtaIntercalibration_Stat232: 4.6282879804523834e-08 - syst_JES_EtaIntercalibration_Stat233: 7.217455715139501e-06 - syst_JES_EtaIntercalibration_Stat234: 1.4677419962309454e-05 - syst_JES_EtaIntercalibration_Stat235: 0.0002216737224362644 - syst_JES_EtaIntercalibration_Stat236: 2.7371755821466772e-09 - syst_JES_EtaIntercalibration_Stat237: 2.0335686769462075e-09 - syst_JES_EtaIntercalibration_Stat238: 1.2947079786577358e-21 + syst_JES_EtaIntercalibration_Stat232: 4.62828798e-08 + syst_JES_EtaIntercalibration_Stat233: 7.21745572e-06 + syst_JES_EtaIntercalibration_Stat234: 1.46774200e-05 + syst_JES_EtaIntercalibration_Stat235: 2.21673722e-04 + syst_JES_EtaIntercalibration_Stat236: 2.73717558e-09 + syst_JES_EtaIntercalibration_Stat237: 2.03356868e-09 + syst_JES_EtaIntercalibration_Stat238: 1.29470798e-21 syst_JES_EtaIntercalibration_Stat239: 0.0 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 - syst_JES_EtaIntercalibration_Stat243: 4.486488382632903e-17 - syst_JES_EtaIntercalibration_Stat244: 1.732219024834908e-11 - syst_JES_EtaIntercalibration_Stat245: 4.6521290510367404e-08 - syst_JES_EtaIntercalibration_Stat25: 3.6260483656454444e-11 - syst_JES_EtaIntercalibration_Stat26: 8.948279988355305e-09 - syst_JES_EtaIntercalibration_Stat27: 4.800900135130911e-06 - syst_JES_EtaIntercalibration_Stat28: 6.398627740969153e-05 - syst_JES_EtaIntercalibration_Stat29: 5.053369975323398e-06 + syst_JES_EtaIntercalibration_Stat243: 4.48648838e-17 + syst_JES_EtaIntercalibration_Stat244: 1.73221902e-11 + syst_JES_EtaIntercalibration_Stat245: 4.65212905e-08 + syst_JES_EtaIntercalibration_Stat25: 3.62604837e-11 + syst_JES_EtaIntercalibration_Stat26: 8.94827999e-09 + syst_JES_EtaIntercalibration_Stat27: 4.80090014e-06 + syst_JES_EtaIntercalibration_Stat28: 6.39862774e-05 + syst_JES_EtaIntercalibration_Stat29: 5.05336998e-06 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 5.129023108221975e-10 + syst_JES_EtaIntercalibration_Stat30: 5.12902311e-10 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 5.980899286896578e-11 - syst_JES_EtaIntercalibration_Stat36: 4.7390726058665745e-06 - syst_JES_EtaIntercalibration_Stat37: 3.7802598684581194e-05 - syst_JES_EtaIntercalibration_Stat38: 3.7475280055090984e-05 - syst_JES_EtaIntercalibration_Stat39: 3.700817090481506e-07 - syst_JES_EtaIntercalibration_Stat4: 4.9718518431264624e-11 - syst_JES_EtaIntercalibration_Stat40: 1.7441751632218594e-11 + syst_JES_EtaIntercalibration_Stat35: 5.98089929e-11 + syst_JES_EtaIntercalibration_Stat36: 4.73907261e-06 + syst_JES_EtaIntercalibration_Stat37: 3.78025987e-05 + syst_JES_EtaIntercalibration_Stat38: 3.74752801e-05 + syst_JES_EtaIntercalibration_Stat39: 3.70081709e-07 + syst_JES_EtaIntercalibration_Stat4: 4.97185184e-11 + syst_JES_EtaIntercalibration_Stat40: 1.74417516e-11 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 - syst_JES_EtaIntercalibration_Stat44: 4.337921247556253e-11 + syst_JES_EtaIntercalibration_Stat44: 4.33792125e-11 syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 - syst_JES_EtaIntercalibration_Stat47: 3.627780416453013e-11 - syst_JES_EtaIntercalibration_Stat48: 3.456546831738288e-07 - syst_JES_EtaIntercalibration_Stat49: 1.0060219020975637e-05 - syst_JES_EtaIntercalibration_Stat5: 7.317507626917788e-08 - syst_JES_EtaIntercalibration_Stat50: 4.296676011756064e-06 - syst_JES_EtaIntercalibration_Stat51: 8.939434854620285e-05 - syst_JES_EtaIntercalibration_Stat52: 6.279946072021637e-08 + syst_JES_EtaIntercalibration_Stat47: 3.62778042e-11 + syst_JES_EtaIntercalibration_Stat48: 3.45654683e-07 + syst_JES_EtaIntercalibration_Stat49: 1.00602190e-05 + syst_JES_EtaIntercalibration_Stat5: 7.31750763e-08 + syst_JES_EtaIntercalibration_Stat50: 4.29667601e-06 + syst_JES_EtaIntercalibration_Stat51: 8.93943485e-05 + syst_JES_EtaIntercalibration_Stat52: 6.27994607e-08 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 syst_JES_EtaIntercalibration_Stat56: 0.0 - syst_JES_EtaIntercalibration_Stat57: 4.869675879866569e-06 - syst_JES_EtaIntercalibration_Stat58: 4.326349778681793e-06 - syst_JES_EtaIntercalibration_Stat59: 0.0001663424780385335 - syst_JES_EtaIntercalibration_Stat6: 4.406698764381337e-07 - syst_JES_EtaIntercalibration_Stat60: 3.7930916150285644e-05 - syst_JES_EtaIntercalibration_Stat61: 5.396428466298335e-06 - syst_JES_EtaIntercalibration_Stat62: 3.673679762853589e-11 + syst_JES_EtaIntercalibration_Stat57: 4.86967588e-06 + syst_JES_EtaIntercalibration_Stat58: 4.32634978e-06 + syst_JES_EtaIntercalibration_Stat59: 1.66342478e-04 + syst_JES_EtaIntercalibration_Stat6: 4.40669876e-07 + syst_JES_EtaIntercalibration_Stat60: 3.79309162e-05 + syst_JES_EtaIntercalibration_Stat61: 5.39642847e-06 + syst_JES_EtaIntercalibration_Stat62: 3.67367976e-11 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 - syst_JES_EtaIntercalibration_Stat69: 5.2322991839152315e-11 - syst_JES_EtaIntercalibration_Stat7: 6.292861832243797e-08 - syst_JES_EtaIntercalibration_Stat70: 6.055026506960973e-06 - syst_JES_EtaIntercalibration_Stat71: 0.00010973443158371032 - syst_JES_EtaIntercalibration_Stat72: 7.952837040955888e-05 - syst_JES_EtaIntercalibration_Stat73: 3.0078741662509753e-05 - syst_JES_EtaIntercalibration_Stat74: 5.953511799769948e-07 + syst_JES_EtaIntercalibration_Stat69: 5.23229918e-11 + syst_JES_EtaIntercalibration_Stat7: 6.29286183e-08 + syst_JES_EtaIntercalibration_Stat70: 6.05502651e-06 + syst_JES_EtaIntercalibration_Stat71: 1.09734432e-04 + syst_JES_EtaIntercalibration_Stat72: 7.95283704e-05 + syst_JES_EtaIntercalibration_Stat73: 3.00787417e-05 + syst_JES_EtaIntercalibration_Stat74: 5.95351180e-07 syst_JES_EtaIntercalibration_Stat75: 0.0 syst_JES_EtaIntercalibration_Stat76: 0.0 syst_JES_EtaIntercalibration_Stat77: 0.0 syst_JES_EtaIntercalibration_Stat78: 0.0 - syst_JES_EtaIntercalibration_Stat79: 4.776022112726029e-06 + syst_JES_EtaIntercalibration_Stat79: 4.77602211e-06 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 5.192276090502122e-05 - syst_JES_EtaIntercalibration_Stat81: 0.00011663892864305638 - syst_JES_EtaIntercalibration_Stat82: 0.00019600979771429796 - syst_JES_EtaIntercalibration_Stat83: 0.00023726741769572996 - syst_JES_EtaIntercalibration_Stat84: 2.2600861996835428e-11 - syst_JES_EtaIntercalibration_Stat85: 4.337921247556253e-11 - syst_JES_EtaIntercalibration_Stat86: 4.337921247556253e-11 - syst_JES_EtaIntercalibration_Stat87: 4.337921247556253e-11 - syst_JES_EtaIntercalibration_Stat88: 4.337921247556253e-11 - syst_JES_EtaIntercalibration_Stat89: 4.337921247556253e-11 + syst_JES_EtaIntercalibration_Stat80: 5.19227609e-05 + syst_JES_EtaIntercalibration_Stat81: 1.16638929e-04 + syst_JES_EtaIntercalibration_Stat82: 1.96009798e-04 + syst_JES_EtaIntercalibration_Stat83: 2.37267418e-04 + syst_JES_EtaIntercalibration_Stat84: 2.26008620e-11 + syst_JES_EtaIntercalibration_Stat85: 4.33792125e-11 + syst_JES_EtaIntercalibration_Stat86: 4.33792125e-11 + syst_JES_EtaIntercalibration_Stat87: 4.33792125e-11 + syst_JES_EtaIntercalibration_Stat88: 4.33792125e-11 + syst_JES_EtaIntercalibration_Stat89: 4.33792125e-11 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 5.9615588565407956e-05 - syst_JES_EtaIntercalibration_Stat92: 0.0005309590662188565 - syst_JES_EtaIntercalibration_Stat93: 0.0003506412526714448 - syst_JES_EtaIntercalibration_Stat94: 7.680329289815639e-05 - syst_JES_EtaIntercalibration_Stat95: 4.525584802818305e-06 - syst_JES_EtaIntercalibration_Stat96: 1.7881979082097172e-07 - syst_JES_EtaIntercalibration_Stat97: 4.337921247556253e-11 - syst_JES_EtaIntercalibration_Stat98: 4.337921247556253e-11 - syst_JES_EtaIntercalibration_Stat99: 4.337921247556253e-11 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.028009219910593724 - syst_JES_Flavour_Comp: 0.13717917079498623 - syst_JES_Flavour_Response: 0.6850815626624321 - syst_JES_Gjet_Generator: 0.6253580954141396 - syst_JES_Gjet_OOC: 0.43050281067607443 - syst_JES_Gjet_Purity: 0.13883524651542922 - syst_JES_Gjet_Stat1: 8.215116980299185e-21 - syst_JES_Gjet_Stat10: 0.03749451259851233 - syst_JES_Gjet_Stat11: 0.06634830574325165 - syst_JES_Gjet_Stat12: 0.06496787417639582 - syst_JES_Gjet_Stat13: 0.002562739902428649 - syst_JES_Gjet_Stat14: 0.012456645003772082 - syst_JES_Gjet_Stat15: 0.0014176120299644753 - syst_JES_Gjet_Stat2: 2.147743001385408e-08 - syst_JES_Gjet_Stat3: 6.777514810017017e-26 - syst_JES_Gjet_Stat4: 0.0013432721273462826 - syst_JES_Gjet_Stat5: 0.0024086507556312516 - syst_JES_Gjet_Stat6: 0.004250804159215055 - syst_JES_Gjet_Stat7: 0.005833605488889353 - syst_JES_Gjet_Stat8: 0.00437694194044198 - syst_JES_Gjet_Stat9: 0.015135609502098022 - syst_JES_Gjet_Veto: 0.19149242152106177 - syst_JES_Gjet_dPhi: 0.031020465422040334 - syst_JES_LArESZee: 0.7953688515399632 - syst_JES_LArEsmear: 0.06215209952205959 - syst_JES_LAr_JVT: 0.08713659090760896 - syst_JES_MJB_Alpha: 0.002311277535710662 - syst_JES_MJB_Asym: 0.011802229482178357 - syst_JES_MJB_Beta: 0.00012031950616171927 - syst_JES_MJB_Fragmentation: 0.03519274357023049 - syst_JES_MJB_Stat1: 0.005640423454848048 - syst_JES_MJB_Stat10: 9.201029548371203e-07 - syst_JES_MJB_Stat11: 2.0161063715581364e-25 - syst_JES_MJB_Stat12: 5.350304944580262e-08 - syst_JES_MJB_Stat13: 2.1364846711362103e-09 - syst_JES_MJB_Stat14: 5.9236137618855605e-12 - syst_JES_MJB_Stat15: 4.722436526836569e-18 - syst_JES_MJB_Stat16: 1.5432572695438695e-27 - syst_JES_MJB_Stat2: 0.0012973060548690891 - syst_JES_MJB_Stat3: 0.0032094901464251296 - syst_JES_MJB_Stat4: 8.05230420438771e-06 + syst_JES_EtaIntercalibration_Stat91: 5.96155886e-05 + syst_JES_EtaIntercalibration_Stat92: 5.30959066e-04 + syst_JES_EtaIntercalibration_Stat93: 3.50641253e-04 + syst_JES_EtaIntercalibration_Stat94: 7.68032929e-05 + syst_JES_EtaIntercalibration_Stat95: 4.52558480e-06 + syst_JES_EtaIntercalibration_Stat96: 1.78819791e-07 + syst_JES_EtaIntercalibration_Stat97: 4.33792125e-11 + syst_JES_EtaIntercalibration_Stat98: 4.33792125e-11 + syst_JES_EtaIntercalibration_Stat99: 4.33792125e-11 + syst_JES_EtaIntercalibration_TotalStat_MJB: 2.80092199e-02 + syst_JES_Flavour_Comp: 1.37179171e-01 + syst_JES_Flavour_Response: 6.85081563e-01 + syst_JES_Gjet_Generator: 6.25358095e-01 + syst_JES_Gjet_OOC: 4.30502811e-01 + syst_JES_Gjet_Purity: 1.38835247e-01 + syst_JES_Gjet_Stat1: 8.21511698e-21 + syst_JES_Gjet_Stat10: 3.74945126e-02 + syst_JES_Gjet_Stat11: 6.63483057e-02 + syst_JES_Gjet_Stat12: 6.49678742e-02 + syst_JES_Gjet_Stat13: 2.56273990e-03 + syst_JES_Gjet_Stat14: 1.24566450e-02 + syst_JES_Gjet_Stat15: 1.41761203e-03 + syst_JES_Gjet_Stat2: 2.14774300e-08 + syst_JES_Gjet_Stat3: 6.77751481e-26 + syst_JES_Gjet_Stat4: 1.34327213e-03 + syst_JES_Gjet_Stat5: 2.40865076e-03 + syst_JES_Gjet_Stat6: 4.25080416e-03 + syst_JES_Gjet_Stat7: 5.83360549e-03 + syst_JES_Gjet_Stat8: 4.37694194e-03 + syst_JES_Gjet_Stat9: 1.51356095e-02 + syst_JES_Gjet_Veto: 1.91492422e-01 + syst_JES_Gjet_dPhi: 3.10204654e-02 + syst_JES_LArESZee: 7.95368852e-01 + syst_JES_LArEsmear: 6.21520995e-02 + syst_JES_LAr_JVT: 8.71365909e-02 + syst_JES_MJB_Alpha: 2.31127754e-03 + syst_JES_MJB_Asym: 1.18022295e-02 + syst_JES_MJB_Beta: 1.20319506e-04 + syst_JES_MJB_Fragmentation: 3.51927436e-02 + syst_JES_MJB_Stat1: 5.64042345e-03 + syst_JES_MJB_Stat10: 9.20102955e-07 + syst_JES_MJB_Stat11: 2.01610637e-25 + syst_JES_MJB_Stat12: 5.35030494e-08 + syst_JES_MJB_Stat13: 2.13648467e-09 + syst_JES_MJB_Stat14: 5.92361376e-12 + syst_JES_MJB_Stat15: 4.72243653e-18 + syst_JES_MJB_Stat16: 1.54325727e-27 + syst_JES_MJB_Stat2: 1.29730605e-03 + syst_JES_MJB_Stat3: 3.20949015e-03 + syst_JES_MJB_Stat4: 8.05230420e-06 syst_JES_MJB_Stat5: 0.0 - syst_JES_MJB_Stat6: 4.215811665622647e-13 - syst_JES_MJB_Stat7: 4.43491609278011e-32 - syst_JES_MJB_Stat8: 3.133279739101564e-25 - syst_JES_MJB_Stat9: 7.022599999287891e-07 - syst_JES_MJB_Threshold: 0.013082603668612759 - syst_JES_Pileup_MuOffset: 0.02752405130063523 - syst_JES_Pileup_NPVOffset: 0.04399616320487504 - syst_JES_Pileup_Pt_term: 0.14287342755040214 - syst_JES_Pileup_Rho_topology: 0.20533292478314333 - syst_JES_PunchThrough_MC15: 0.014747227095288118 + syst_JES_MJB_Stat6: 4.21581167e-13 + syst_JES_MJB_Stat7: 4.43491609e-32 + syst_JES_MJB_Stat8: 3.13327974e-25 + syst_JES_MJB_Stat9: 7.02260000e-07 + syst_JES_MJB_Threshold: 1.30826037e-02 + syst_JES_Pileup_MuOffset: 2.75240513e-02 + syst_JES_Pileup_NPVOffset: 4.39961632e-02 + syst_JES_Pileup_Pt_term: 1.42873428e-01 + syst_JES_Pileup_Rho_topology: 2.05332925e-01 + syst_JES_PunchThrough_MC15: 1.47472271e-02 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.5892619175714651 - syst_JES_Zjet_MuScale: 0.03655736132436257 - syst_JES_Zjet_MuSmearID: 0.005831908328326157 - syst_JES_Zjet_MuSmearMS: 0.09285961501104772 - syst_JES_Zjet_OOC: 0.20612566555380726 - syst_JES_Zjet_Stat1: 0.003068993809052081 - syst_JES_Zjet_Stat10: 0.029375637865414937 - syst_JES_Zjet_Stat11: 0.044983946025221044 - syst_JES_Zjet_Stat12: 0.18884567111797929 - syst_JES_Zjet_Stat13: 0.03578643737507269 - syst_JES_Zjet_Stat2: 2.677750548501484e-10 - syst_JES_Zjet_Stat3: 0.0020732397352935337 - syst_JES_Zjet_Stat4: 0.002048845223534467 - syst_JES_Zjet_Stat5: 0.0023949936847515903 - syst_JES_Zjet_Stat6: 0.0029497799917959987 - syst_JES_Zjet_Stat7: 0.0032526067622754523 - syst_JES_Zjet_Stat8: 0.004345033141415609 - syst_JES_Zjet_Stat9: 0.010086413175653673 - syst_JES_Zjet_Veto: 0.04250559684323936 - syst_JES_Zjet_dPhi: 0.03592339186379816 + syst_JES_Zjet_MC: 5.89261918e-01 + syst_JES_Zjet_MuScale: 3.65573613e-02 + syst_JES_Zjet_MuSmearID: 5.83190833e-03 + syst_JES_Zjet_MuSmearMS: 9.28596150e-02 + syst_JES_Zjet_OOC: 2.06125666e-01 + syst_JES_Zjet_Stat1: 3.06899381e-03 + syst_JES_Zjet_Stat10: 2.93756379e-02 + syst_JES_Zjet_Stat11: 4.49839460e-02 + syst_JES_Zjet_Stat12: 1.88845671e-01 + syst_JES_Zjet_Stat13: 3.57864374e-02 + syst_JES_Zjet_Stat2: 2.67775055e-10 + syst_JES_Zjet_Stat3: 2.07323974e-03 + syst_JES_Zjet_Stat4: 2.04884522e-03 + syst_JES_Zjet_Stat5: 2.39499368e-03 + syst_JES_Zjet_Stat6: 2.94977999e-03 + syst_JES_Zjet_Stat7: 3.25260676e-03 + syst_JES_Zjet_Stat8: 4.34503314e-03 + syst_JES_Zjet_Stat9: 1.00864132e-02 + syst_JES_Zjet_Veto: 4.25055968e-02 + syst_JES_Zjet_dPhi: 3.59233919e-02 syst_PRW: 0.0486 - syst_Unfolding_bias: 1.498e-05 - syst_cleaning: 0.1589156615944445 + syst_Unfolding_bias: 1.49800000e-05 + syst_cleaning: 1.58915662e-01 syst_lumi: 0.6749 - stat: 0.11683 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.1938582149407138 - syst_JER_NP1: 0.009449353628688048 - syst_JER_NP2: 0.07562239879823966 - syst_JER_NP3: 0.03539985134149577 - syst_JER_NP4: 0.0043330113085474405 - syst_JER_NP5: 0.03283943779969444 - syst_JER_NP6: 0.008443116530641987 - syst_JER_NP7: 0.00957729204942608 - syst_JER_NP8: 0.022871783380401276 - syst_JES_EtaIntercalibration_Modelling: 0.440656737154897 - syst_JES_EtaIntercalibration_NonClosure: 7.370775179721601e-05 - syst_JES_EtaIntercalibration_Stat0: 4.28076357090648e-12 + syst_JER_NP0: 1.93858215e-01 + syst_JER_NP1: 9.44935363e-03 + syst_JER_NP2: 7.56223988e-02 + syst_JER_NP3: 3.53998513e-02 + syst_JER_NP4: 4.33301131e-03 + syst_JER_NP5: 3.28394378e-02 + syst_JER_NP6: 8.44311653e-03 + syst_JER_NP7: 9.57729205e-03 + syst_JER_NP8: 2.28717834e-02 + syst_JES_EtaIntercalibration_Modelling: 4.40656737e-01 + syst_JES_EtaIntercalibration_NonClosure: 7.37077518e-05 + syst_JES_EtaIntercalibration_Stat0: 4.28076357e-12 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 7.353726197422417e-07 - syst_JES_EtaIntercalibration_Stat101: 0.00022882042730217508 - syst_JES_EtaIntercalibration_Stat102: 7.237798076763402e-05 - syst_JES_EtaIntercalibration_Stat103: 6.861600839454303e-05 - syst_JES_EtaIntercalibration_Stat104: 9.549394431062109e-05 - syst_JES_EtaIntercalibration_Stat105: 3.1116161492060684e-12 - syst_JES_EtaIntercalibration_Stat106: 4.28076357090648e-12 - syst_JES_EtaIntercalibration_Stat107: 4.28076357090648e-12 - syst_JES_EtaIntercalibration_Stat108: 4.28076357090648e-12 - syst_JES_EtaIntercalibration_Stat109: 4.28076357090648e-12 + syst_JES_EtaIntercalibration_Stat100: 7.35372620e-07 + syst_JES_EtaIntercalibration_Stat101: 2.28820427e-04 + syst_JES_EtaIntercalibration_Stat102: 7.23779808e-05 + syst_JES_EtaIntercalibration_Stat103: 6.86160084e-05 + syst_JES_EtaIntercalibration_Stat104: 9.54939443e-05 + syst_JES_EtaIntercalibration_Stat105: 3.11161615e-12 + syst_JES_EtaIntercalibration_Stat106: 4.28076357e-12 + syst_JES_EtaIntercalibration_Stat107: 4.28076357e-12 + syst_JES_EtaIntercalibration_Stat108: 4.28076357e-12 + syst_JES_EtaIntercalibration_Stat109: 4.28076357e-12 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 1.2364171585674472e-09 - syst_JES_EtaIntercalibration_Stat111: 0.00016445834388987383 - syst_JES_EtaIntercalibration_Stat112: 0.0006488586498614317 - syst_JES_EtaIntercalibration_Stat113: 0.001235451083612783 - syst_JES_EtaIntercalibration_Stat114: 0.00045165582028797104 - syst_JES_EtaIntercalibration_Stat115: 2.9907860170864783e-05 - syst_JES_EtaIntercalibration_Stat116: 2.2619156985726432e-08 - syst_JES_EtaIntercalibration_Stat117: 4.28076357090648e-12 - syst_JES_EtaIntercalibration_Stat118: 4.28076357090648e-12 - syst_JES_EtaIntercalibration_Stat119: 4.28076357090648e-12 + syst_JES_EtaIntercalibration_Stat110: 1.23641716e-09 + syst_JES_EtaIntercalibration_Stat111: 1.64458344e-04 + syst_JES_EtaIntercalibration_Stat112: 6.48858650e-04 + syst_JES_EtaIntercalibration_Stat113: 1.23545108e-03 + syst_JES_EtaIntercalibration_Stat114: 4.51655820e-04 + syst_JES_EtaIntercalibration_Stat115: 2.99078602e-05 + syst_JES_EtaIntercalibration_Stat116: 2.26191570e-08 + syst_JES_EtaIntercalibration_Stat117: 4.28076357e-12 + syst_JES_EtaIntercalibration_Stat118: 4.28076357e-12 + syst_JES_EtaIntercalibration_Stat119: 4.28076357e-12 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 2.7175877170755687e-06 - syst_JES_EtaIntercalibration_Stat121: 0.0005256434980811615 - syst_JES_EtaIntercalibration_Stat122: 0.0010807977331582445 - syst_JES_EtaIntercalibration_Stat123: 0.0007817429244962821 - syst_JES_EtaIntercalibration_Stat124: 4.8387533847779435e-05 - syst_JES_EtaIntercalibration_Stat125: 3.884123935973208e-08 - syst_JES_EtaIntercalibration_Stat126: 4.28076357090648e-12 - syst_JES_EtaIntercalibration_Stat127: 4.28076357090648e-12 - syst_JES_EtaIntercalibration_Stat128: 4.28076357090648e-12 - syst_JES_EtaIntercalibration_Stat129: 0.00022781472889170268 + syst_JES_EtaIntercalibration_Stat120: 2.71758772e-06 + syst_JES_EtaIntercalibration_Stat121: 5.25643498e-04 + syst_JES_EtaIntercalibration_Stat122: 1.08079773e-03 + syst_JES_EtaIntercalibration_Stat123: 7.81742924e-04 + syst_JES_EtaIntercalibration_Stat124: 4.83875338e-05 + syst_JES_EtaIntercalibration_Stat125: 3.88412394e-08 + syst_JES_EtaIntercalibration_Stat126: 4.28076357e-12 + syst_JES_EtaIntercalibration_Stat127: 4.28076357e-12 + syst_JES_EtaIntercalibration_Stat128: 4.28076357e-12 + syst_JES_EtaIntercalibration_Stat129: 2.27814729e-04 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 0.0013604045969857644 - syst_JES_EtaIntercalibration_Stat131: 0.007913895816852784 - syst_JES_EtaIntercalibration_Stat132: 0.008628789182150645 - syst_JES_EtaIntercalibration_Stat133: 0.0024408516444061074 - syst_JES_EtaIntercalibration_Stat134: 0.00016957703470694375 - syst_JES_EtaIntercalibration_Stat135: 2.262058354684954e-08 + syst_JES_EtaIntercalibration_Stat130: 1.36040460e-03 + syst_JES_EtaIntercalibration_Stat131: 7.91389582e-03 + syst_JES_EtaIntercalibration_Stat132: 8.62878918e-03 + syst_JES_EtaIntercalibration_Stat133: 2.44085164e-03 + syst_JES_EtaIntercalibration_Stat134: 1.69577035e-04 + syst_JES_EtaIntercalibration_Stat135: 2.26205835e-08 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 syst_JES_EtaIntercalibration_Stat138: 0.0 - syst_JES_EtaIntercalibration_Stat139: 0.0003680546523679431 - syst_JES_EtaIntercalibration_Stat14: 7.438295717257266e-07 - syst_JES_EtaIntercalibration_Stat140: 0.0029810596689767883 - syst_JES_EtaIntercalibration_Stat141: 0.009349908381904071 - syst_JES_EtaIntercalibration_Stat142: 0.006264114143276764 - syst_JES_EtaIntercalibration_Stat143: 0.0015392511840177352 - syst_JES_EtaIntercalibration_Stat144: 5.975223860869147e-05 + syst_JES_EtaIntercalibration_Stat139: 3.68054652e-04 + syst_JES_EtaIntercalibration_Stat14: 7.43829572e-07 + syst_JES_EtaIntercalibration_Stat140: 2.98105967e-03 + syst_JES_EtaIntercalibration_Stat141: 9.34990838e-03 + syst_JES_EtaIntercalibration_Stat142: 6.26411414e-03 + syst_JES_EtaIntercalibration_Stat143: 1.53925118e-03 + syst_JES_EtaIntercalibration_Stat144: 5.97522386e-05 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 5.244029384690746e-05 - syst_JES_EtaIntercalibration_Stat148: 0.002249465714341963 - syst_JES_EtaIntercalibration_Stat149: 0.009683972570696387 - syst_JES_EtaIntercalibration_Stat15: 7.422740995884155e-07 - syst_JES_EtaIntercalibration_Stat150: 0.010367382360075278 - syst_JES_EtaIntercalibration_Stat151: 0.003469543053487015 - syst_JES_EtaIntercalibration_Stat152: 4.7959337724785156e-05 + syst_JES_EtaIntercalibration_Stat147: 5.24402938e-05 + syst_JES_EtaIntercalibration_Stat148: 2.24946571e-03 + syst_JES_EtaIntercalibration_Stat149: 9.68397257e-03 + syst_JES_EtaIntercalibration_Stat15: 7.42274100e-07 + syst_JES_EtaIntercalibration_Stat150: 1.03673824e-02 + syst_JES_EtaIntercalibration_Stat151: 3.46954305e-03 + syst_JES_EtaIntercalibration_Stat152: 4.79593377e-05 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 syst_JES_EtaIntercalibration_Stat156: 0.0 - syst_JES_EtaIntercalibration_Stat157: 4.4206633834753804e-05 - syst_JES_EtaIntercalibration_Stat158: 0.003704623158973123 - syst_JES_EtaIntercalibration_Stat159: 0.01320752281845464 - syst_JES_EtaIntercalibration_Stat16: 7.391594258272482e-07 - syst_JES_EtaIntercalibration_Stat160: 0.010139320132533543 - syst_JES_EtaIntercalibration_Stat161: 0.0020192178560026653 - syst_JES_EtaIntercalibration_Stat162: 6.014930333761148e-05 + syst_JES_EtaIntercalibration_Stat157: 4.42066338e-05 + syst_JES_EtaIntercalibration_Stat158: 3.70462316e-03 + syst_JES_EtaIntercalibration_Stat159: 1.32075228e-02 + syst_JES_EtaIntercalibration_Stat16: 7.39159426e-07 + syst_JES_EtaIntercalibration_Stat160: 1.01393201e-02 + syst_JES_EtaIntercalibration_Stat161: 2.01921786e-03 + syst_JES_EtaIntercalibration_Stat162: 6.01493033e-05 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 0.00014869706475919423 - syst_JES_EtaIntercalibration_Stat166: 0.0034472559387866753 - syst_JES_EtaIntercalibration_Stat167: 0.015219415231867484 - syst_JES_EtaIntercalibration_Stat168: 0.015553619152788845 - syst_JES_EtaIntercalibration_Stat169: 0.0051179957747149426 - syst_JES_EtaIntercalibration_Stat17: 3.5524362063237675e-12 - syst_JES_EtaIntercalibration_Stat170: 0.00030554676810596443 + syst_JES_EtaIntercalibration_Stat165: 1.48697065e-04 + syst_JES_EtaIntercalibration_Stat166: 3.44725594e-03 + syst_JES_EtaIntercalibration_Stat167: 1.52194152e-02 + syst_JES_EtaIntercalibration_Stat168: 1.55536192e-02 + syst_JES_EtaIntercalibration_Stat169: 5.11799577e-03 + syst_JES_EtaIntercalibration_Stat17: 3.55243621e-12 + syst_JES_EtaIntercalibration_Stat170: 3.05546768e-04 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 - syst_JES_EtaIntercalibration_Stat175: 0.00017585487958825596 - syst_JES_EtaIntercalibration_Stat176: 0.006535034429901651 - syst_JES_EtaIntercalibration_Stat177: 0.0243729911992763 - syst_JES_EtaIntercalibration_Stat178: 0.017599558943337187 - syst_JES_EtaIntercalibration_Stat179: 0.0033316847089723245 + syst_JES_EtaIntercalibration_Stat175: 1.75854880e-04 + syst_JES_EtaIntercalibration_Stat176: 6.53503443e-03 + syst_JES_EtaIntercalibration_Stat177: 2.43729912e-02 + syst_JES_EtaIntercalibration_Stat178: 1.75995589e-02 + syst_JES_EtaIntercalibration_Stat179: 3.33168471e-03 syst_JES_EtaIntercalibration_Stat18: 0.0 - syst_JES_EtaIntercalibration_Stat180: 9.85720223833822e-05 + syst_JES_EtaIntercalibration_Stat180: 9.85720224e-05 syst_JES_EtaIntercalibration_Stat181: 0.0 - syst_JES_EtaIntercalibration_Stat182: 0.00033436682894689176 - syst_JES_EtaIntercalibration_Stat183: 0.006665151367373437 - syst_JES_EtaIntercalibration_Stat184: 0.026512357496080954 - syst_JES_EtaIntercalibration_Stat185: 0.03444308457441058 - syst_JES_EtaIntercalibration_Stat186: 0.007194467132686531 - syst_JES_EtaIntercalibration_Stat187: 0.0006026115830284048 + syst_JES_EtaIntercalibration_Stat182: 3.34366829e-04 + syst_JES_EtaIntercalibration_Stat183: 6.66515137e-03 + syst_JES_EtaIntercalibration_Stat184: 2.65123575e-02 + syst_JES_EtaIntercalibration_Stat185: 3.44430846e-02 + syst_JES_EtaIntercalibration_Stat186: 7.19446713e-03 + syst_JES_EtaIntercalibration_Stat187: 6.02611583e-04 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 - syst_JES_EtaIntercalibration_Stat192: 0.00010684155398194983 - syst_JES_EtaIntercalibration_Stat193: 0.013792340945249287 - syst_JES_EtaIntercalibration_Stat194: 0.041989884496149786 - syst_JES_EtaIntercalibration_Stat195: 0.0300020015998933 - syst_JES_EtaIntercalibration_Stat196: 0.004681243531370698 - syst_JES_EtaIntercalibration_Stat197: 0.00022664842267264951 - syst_JES_EtaIntercalibration_Stat198: 0.0023019803664453783 - syst_JES_EtaIntercalibration_Stat199: 0.00632603388783209 + syst_JES_EtaIntercalibration_Stat192: 1.06841554e-04 + syst_JES_EtaIntercalibration_Stat193: 1.37923409e-02 + syst_JES_EtaIntercalibration_Stat194: 4.19898845e-02 + syst_JES_EtaIntercalibration_Stat195: 3.00020016e-02 + syst_JES_EtaIntercalibration_Stat196: 4.68124353e-03 + syst_JES_EtaIntercalibration_Stat197: 2.26648423e-04 + syst_JES_EtaIntercalibration_Stat198: 2.30198037e-03 + syst_JES_EtaIntercalibration_Stat199: 6.32603389e-03 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 0.006971435863579325 - syst_JES_EtaIntercalibration_Stat201: 0.002516479149029453 - syst_JES_EtaIntercalibration_Stat202: 0.00025963278433202536 + syst_JES_EtaIntercalibration_Stat200: 6.97143586e-03 + syst_JES_EtaIntercalibration_Stat201: 2.51647915e-03 + syst_JES_EtaIntercalibration_Stat202: 2.59632784e-04 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 - syst_JES_EtaIntercalibration_Stat207: 0.00030058295872354443 - syst_JES_EtaIntercalibration_Stat208: 0.0026691187216008206 - syst_JES_EtaIntercalibration_Stat209: 0.008596250694343435 + syst_JES_EtaIntercalibration_Stat207: 3.00582959e-04 + syst_JES_EtaIntercalibration_Stat208: 2.66911872e-03 + syst_JES_EtaIntercalibration_Stat209: 8.59625069e-03 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 0.005896058238348737 - syst_JES_EtaIntercalibration_Stat211: 0.0016676430313469367 - syst_JES_EtaIntercalibration_Stat212: 0.0011064920921543 - syst_JES_EtaIntercalibration_Stat213: 0.0019981156122707215 - syst_JES_EtaIntercalibration_Stat214: 0.0004769082930711103 - syst_JES_EtaIntercalibration_Stat215: 3.159264662464985e-05 + syst_JES_EtaIntercalibration_Stat210: 5.89605824e-03 + syst_JES_EtaIntercalibration_Stat211: 1.66764303e-03 + syst_JES_EtaIntercalibration_Stat212: 1.10649209e-03 + syst_JES_EtaIntercalibration_Stat213: 1.99811561e-03 + syst_JES_EtaIntercalibration_Stat214: 4.76908293e-04 + syst_JES_EtaIntercalibration_Stat215: 3.15926466e-05 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 syst_JES_EtaIntercalibration_Stat219: 0.0 - syst_JES_EtaIntercalibration_Stat22: 4.28076357090648e-12 - syst_JES_EtaIntercalibration_Stat220: 5.765131195669571e-06 - syst_JES_EtaIntercalibration_Stat221: 0.0006227084952046182 - syst_JES_EtaIntercalibration_Stat222: 0.001034059054164703 - syst_JES_EtaIntercalibration_Stat223: 0.0012178262068127783 - syst_JES_EtaIntercalibration_Stat224: 6.25897148100229e-05 - syst_JES_EtaIntercalibration_Stat225: 0.00011897612323487431 - syst_JES_EtaIntercalibration_Stat226: 2.2954602517795856e-06 - syst_JES_EtaIntercalibration_Stat227: 3.787519758364304e-08 + syst_JES_EtaIntercalibration_Stat22: 4.28076357e-12 + syst_JES_EtaIntercalibration_Stat220: 5.76513120e-06 + syst_JES_EtaIntercalibration_Stat221: 6.22708495e-04 + syst_JES_EtaIntercalibration_Stat222: 1.03405905e-03 + syst_JES_EtaIntercalibration_Stat223: 1.21782621e-03 + syst_JES_EtaIntercalibration_Stat224: 6.25897148e-05 + syst_JES_EtaIntercalibration_Stat225: 1.18976123e-04 + syst_JES_EtaIntercalibration_Stat226: 2.29546025e-06 + syst_JES_EtaIntercalibration_Stat227: 3.78751976e-08 syst_JES_EtaIntercalibration_Stat228: 0.0 syst_JES_EtaIntercalibration_Stat229: 0.0 - syst_JES_EtaIntercalibration_Stat23: 4.28076357090648e-12 + syst_JES_EtaIntercalibration_Stat23: 4.28076357e-12 syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 - syst_JES_EtaIntercalibration_Stat232: 4.6415653186721394e-07 - syst_JES_EtaIntercalibration_Stat233: 8.456738068513341e-06 - syst_JES_EtaIntercalibration_Stat234: 0.0001524444215935762 - syst_JES_EtaIntercalibration_Stat235: 0.0004288449953071622 - syst_JES_EtaIntercalibration_Stat236: 9.0247172254869e-08 - syst_JES_EtaIntercalibration_Stat237: 6.260951573417175e-08 - syst_JES_EtaIntercalibration_Stat238: 6.439764902541085e-17 + syst_JES_EtaIntercalibration_Stat232: 4.64156532e-07 + syst_JES_EtaIntercalibration_Stat233: 8.45673807e-06 + syst_JES_EtaIntercalibration_Stat234: 1.52444422e-04 + syst_JES_EtaIntercalibration_Stat235: 4.28844995e-04 + syst_JES_EtaIntercalibration_Stat236: 9.02471723e-08 + syst_JES_EtaIntercalibration_Stat237: 6.26095157e-08 + syst_JES_EtaIntercalibration_Stat238: 6.43976490e-17 syst_JES_EtaIntercalibration_Stat239: 0.0 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 - syst_JES_EtaIntercalibration_Stat243: 2.3291025698324236e-13 - syst_JES_EtaIntercalibration_Stat244: 2.336507650319168e-09 - syst_JES_EtaIntercalibration_Stat245: 4.649352264563313e-07 - syst_JES_EtaIntercalibration_Stat25: 3.5628285111691803e-12 - syst_JES_EtaIntercalibration_Stat26: 8.809290550322426e-10 - syst_JES_EtaIntercalibration_Stat27: 6.729246094474477e-07 - syst_JES_EtaIntercalibration_Stat28: 3.725920432255633e-05 - syst_JES_EtaIntercalibration_Stat29: 7.267501845201005e-07 + syst_JES_EtaIntercalibration_Stat243: 2.32910257e-13 + syst_JES_EtaIntercalibration_Stat244: 2.33650765e-09 + syst_JES_EtaIntercalibration_Stat245: 4.64935226e-07 + syst_JES_EtaIntercalibration_Stat25: 3.56282851e-12 + syst_JES_EtaIntercalibration_Stat26: 8.80929055e-10 + syst_JES_EtaIntercalibration_Stat27: 6.72924609e-07 + syst_JES_EtaIntercalibration_Stat28: 3.72592043e-05 + syst_JES_EtaIntercalibration_Stat29: 7.26750185e-07 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 4.965047917623756e-11 + syst_JES_EtaIntercalibration_Stat30: 4.96504792e-11 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 5.913305765813231e-12 - syst_JES_EtaIntercalibration_Stat36: 7.232275538687669e-07 - syst_JES_EtaIntercalibration_Stat37: 2.4777635248870603e-05 - syst_JES_EtaIntercalibration_Stat38: 2.4724924545947558e-05 - syst_JES_EtaIntercalibration_Stat39: 3.9332210988323554e-08 - syst_JES_EtaIntercalibration_Stat4: 4.885249302748018e-12 - syst_JES_EtaIntercalibration_Stat40: 1.8013328398716324e-12 + syst_JES_EtaIntercalibration_Stat35: 5.91330577e-12 + syst_JES_EtaIntercalibration_Stat36: 7.23227554e-07 + syst_JES_EtaIntercalibration_Stat37: 2.47776352e-05 + syst_JES_EtaIntercalibration_Stat38: 2.47249245e-05 + syst_JES_EtaIntercalibration_Stat39: 3.93322110e-08 + syst_JES_EtaIntercalibration_Stat4: 4.88524930e-12 + syst_JES_EtaIntercalibration_Stat40: 1.80133284e-12 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 - syst_JES_EtaIntercalibration_Stat44: 4.28076357090648e-12 + syst_JES_EtaIntercalibration_Stat44: 4.28076357e-12 syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 - syst_JES_EtaIntercalibration_Stat47: 3.5645605619767495e-12 - syst_JES_EtaIntercalibration_Stat48: 4.104278834338622e-08 - syst_JES_EtaIntercalibration_Stat49: 1.5847399628961214e-06 - syst_JES_EtaIntercalibration_Stat5: 7.881243929735965e-09 - syst_JES_EtaIntercalibration_Stat50: 4.4411527516710115e-05 - syst_JES_EtaIntercalibration_Stat51: 2.228167535779121e-05 - syst_JES_EtaIntercalibration_Stat52: 6.8021097462478505e-09 + syst_JES_EtaIntercalibration_Stat47: 3.56456056e-12 + syst_JES_EtaIntercalibration_Stat48: 4.10427883e-08 + syst_JES_EtaIntercalibration_Stat49: 1.58473996e-06 + syst_JES_EtaIntercalibration_Stat5: 7.88124393e-09 + syst_JES_EtaIntercalibration_Stat50: 4.44115275e-05 + syst_JES_EtaIntercalibration_Stat51: 2.22816754e-05 + syst_JES_EtaIntercalibration_Stat52: 6.80210975e-09 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 syst_JES_EtaIntercalibration_Stat56: 0.0 - syst_JES_EtaIntercalibration_Stat57: 7.437441034589061e-07 - syst_JES_EtaIntercalibration_Stat58: 6.658323203329798e-07 - syst_JES_EtaIntercalibration_Stat59: 0.00013545900966713143 - syst_JES_EtaIntercalibration_Stat6: 5.4857303506461196e-08 - syst_JES_EtaIntercalibration_Stat60: 2.2040326381430924e-05 - syst_JES_EtaIntercalibration_Stat61: 9.710025698301473e-07 - syst_JES_EtaIntercalibration_Stat62: 3.6234502894340913e-12 + syst_JES_EtaIntercalibration_Stat57: 7.43744103e-07 + syst_JES_EtaIntercalibration_Stat58: 6.65832320e-07 + syst_JES_EtaIntercalibration_Stat59: 1.35459010e-04 + syst_JES_EtaIntercalibration_Stat6: 5.48573035e-08 + syst_JES_EtaIntercalibration_Stat60: 2.20403264e-05 + syst_JES_EtaIntercalibration_Stat61: 9.71002570e-07 + syst_JES_EtaIntercalibration_Stat62: 3.62345029e-12 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 - syst_JES_EtaIntercalibration_Stat69: 5.1481399310819055e-12 - syst_JES_EtaIntercalibration_Stat7: 6.811616321200185e-09 - syst_JES_EtaIntercalibration_Stat70: 8.384607012257641e-07 - syst_JES_EtaIntercalibration_Stat71: 1.4413044673142451e-05 - syst_JES_EtaIntercalibration_Stat72: 5.2447360991760106e-05 - syst_JES_EtaIntercalibration_Stat73: 4.394286461702286e-05 - syst_JES_EtaIntercalibration_Stat74: 7.147198104851998e-08 + syst_JES_EtaIntercalibration_Stat69: 5.14813993e-12 + syst_JES_EtaIntercalibration_Stat7: 6.81161632e-09 + syst_JES_EtaIntercalibration_Stat70: 8.38460701e-07 + syst_JES_EtaIntercalibration_Stat71: 1.44130447e-05 + syst_JES_EtaIntercalibration_Stat72: 5.24473610e-05 + syst_JES_EtaIntercalibration_Stat73: 4.39428646e-05 + syst_JES_EtaIntercalibration_Stat74: 7.14719810e-08 syst_JES_EtaIntercalibration_Stat75: 0.0 syst_JES_EtaIntercalibration_Stat76: 0.0 syst_JES_EtaIntercalibration_Stat77: 0.0 syst_JES_EtaIntercalibration_Stat78: 0.0 - syst_JES_EtaIntercalibration_Stat79: 7.309970128001071e-07 + syst_JES_EtaIntercalibration_Stat79: 7.30997013e-07 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 5.9549042944702314e-05 - syst_JES_EtaIntercalibration_Stat81: 7.135933300381947e-05 - syst_JES_EtaIntercalibration_Stat82: 0.00019039781590133852 - syst_JES_EtaIntercalibration_Stat83: 6.22153160162351e-05 - syst_JES_EtaIntercalibration_Stat84: 2.1609573960400055e-12 - syst_JES_EtaIntercalibration_Stat85: 4.28076357090648e-12 - syst_JES_EtaIntercalibration_Stat86: 4.28076357090648e-12 - syst_JES_EtaIntercalibration_Stat87: 4.28076357090648e-12 - syst_JES_EtaIntercalibration_Stat88: 4.28076357090648e-12 - syst_JES_EtaIntercalibration_Stat89: 4.28076357090648e-12 + syst_JES_EtaIntercalibration_Stat80: 5.95490429e-05 + syst_JES_EtaIntercalibration_Stat81: 7.13593330e-05 + syst_JES_EtaIntercalibration_Stat82: 1.90397816e-04 + syst_JES_EtaIntercalibration_Stat83: 6.22153160e-05 + syst_JES_EtaIntercalibration_Stat84: 2.16095740e-12 + syst_JES_EtaIntercalibration_Stat85: 4.28076357e-12 + syst_JES_EtaIntercalibration_Stat86: 4.28076357e-12 + syst_JES_EtaIntercalibration_Stat87: 4.28076357e-12 + syst_JES_EtaIntercalibration_Stat88: 4.28076357e-12 + syst_JES_EtaIntercalibration_Stat89: 4.28076357e-12 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 2.290339380965188e-05 - syst_JES_EtaIntercalibration_Stat92: 0.0001754783749497356 - syst_JES_EtaIntercalibration_Stat93: 5.4325119887120365e-05 - syst_JES_EtaIntercalibration_Stat94: 4.9998910738135085e-05 - syst_JES_EtaIntercalibration_Stat95: 6.556641595168978e-07 - syst_JES_EtaIntercalibration_Stat96: 2.2619156985726432e-08 - syst_JES_EtaIntercalibration_Stat97: 4.28076357090648e-12 - syst_JES_EtaIntercalibration_Stat98: 4.28076357090648e-12 - syst_JES_EtaIntercalibration_Stat99: 4.28076357090648e-12 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.028426776109858113 - syst_JES_Flavour_Comp: 0.10960313909738169 - syst_JES_Flavour_Response: 0.3560597246249567 - syst_JES_Gjet_Generator: 0.37342327146952153 - syst_JES_Gjet_OOC: 0.2634251838758018 - syst_JES_Gjet_Purity: 0.08956169828671183 - syst_JES_Gjet_Stat1: 4.0876399058625503e-16 - syst_JES_Gjet_Stat10: 0.01889694353592665 - syst_JES_Gjet_Stat11: 0.035784489307519825 - syst_JES_Gjet_Stat12: 0.050570033369575704 - syst_JES_Gjet_Stat13: 0.011385127173202766 - syst_JES_Gjet_Stat14: 0.01044563147923571 - syst_JES_Gjet_Stat15: 0.0007671182568548345 - syst_JES_Gjet_Stat2: 6.577462941742812e-08 - syst_JES_Gjet_Stat3: 4.509394277505572e-20 - syst_JES_Gjet_Stat4: 0.0007889649434840246 - syst_JES_Gjet_Stat5: 0.0012815592221853845 - syst_JES_Gjet_Stat6: 0.0025078682182283823 - syst_JES_Gjet_Stat7: 0.0036921390480316417 - syst_JES_Gjet_Stat8: 0.00229258385888063 - syst_JES_Gjet_Stat9: 0.007473837484853413 - syst_JES_Gjet_Veto: 0.12802304743677992 - syst_JES_Gjet_dPhi: 0.018915804899607102 - syst_JES_LArESZee: 0.4991605227779937 - syst_JES_LArEsmear: 0.03942263766860356 - syst_JES_LAr_JVT: 0.05309490064968574 - syst_JES_MJB_Alpha: 0.002907558023853522 - syst_JES_MJB_Asym: 0.011687190637616897 - syst_JES_MJB_Beta: 0.001061066600548712 - syst_JES_MJB_Fragmentation: 0.03439212409840369 - syst_JES_MJB_Stat1: 0.0033555886320435642 - syst_JES_MJB_Stat10: 3.6421533465794654e-06 - syst_JES_MJB_Stat11: 1.3414635127021101e-19 - syst_JES_MJB_Stat12: 5.472414526513868e-07 - syst_JES_MJB_Stat13: 7.100542285628612e-08 - syst_JES_MJB_Stat14: 8.142370846381291e-10 - syst_JES_MJB_Stat15: 2.4525839435498995e-14 - syst_JES_MJB_Stat16: 1.0267597187268304e-21 - syst_JES_MJB_Stat2: 0.0031176914536239792 - syst_JES_MJB_Stat3: 0.003844286767399123 - syst_JES_MJB_Stat4: 0.0008029787543889315 + syst_JES_EtaIntercalibration_Stat91: 2.29033938e-05 + syst_JES_EtaIntercalibration_Stat92: 1.75478375e-04 + syst_JES_EtaIntercalibration_Stat93: 5.43251199e-05 + syst_JES_EtaIntercalibration_Stat94: 4.99989107e-05 + syst_JES_EtaIntercalibration_Stat95: 6.55664160e-07 + syst_JES_EtaIntercalibration_Stat96: 2.26191570e-08 + syst_JES_EtaIntercalibration_Stat97: 4.28076357e-12 + syst_JES_EtaIntercalibration_Stat98: 4.28076357e-12 + syst_JES_EtaIntercalibration_Stat99: 4.28076357e-12 + syst_JES_EtaIntercalibration_TotalStat_MJB: 2.84267761e-02 + syst_JES_Flavour_Comp: 1.09603139e-01 + syst_JES_Flavour_Response: 3.56059725e-01 + syst_JES_Gjet_Generator: 3.73423271e-01 + syst_JES_Gjet_OOC: 2.63425184e-01 + syst_JES_Gjet_Purity: 8.95616983e-02 + syst_JES_Gjet_Stat1: 4.08763991e-16 + syst_JES_Gjet_Stat10: 1.88969435e-02 + syst_JES_Gjet_Stat11: 3.57844893e-02 + syst_JES_Gjet_Stat12: 5.05700334e-02 + syst_JES_Gjet_Stat13: 1.13851272e-02 + syst_JES_Gjet_Stat14: 1.04456315e-02 + syst_JES_Gjet_Stat15: 7.67118257e-04 + syst_JES_Gjet_Stat2: 6.57746294e-08 + syst_JES_Gjet_Stat3: 4.50939428e-20 + syst_JES_Gjet_Stat4: 7.88964943e-04 + syst_JES_Gjet_Stat5: 1.28155922e-03 + syst_JES_Gjet_Stat6: 2.50786822e-03 + syst_JES_Gjet_Stat7: 3.69213905e-03 + syst_JES_Gjet_Stat8: 2.29258386e-03 + syst_JES_Gjet_Stat9: 7.47383748e-03 + syst_JES_Gjet_Veto: 1.28023047e-01 + syst_JES_Gjet_dPhi: 1.89158049e-02 + syst_JES_LArESZee: 4.99160523e-01 + syst_JES_LArEsmear: 3.94226377e-02 + syst_JES_LAr_JVT: 5.30949006e-02 + syst_JES_MJB_Alpha: 2.90755802e-03 + syst_JES_MJB_Asym: 1.16871906e-02 + syst_JES_MJB_Beta: 1.06106660e-03 + syst_JES_MJB_Fragmentation: 3.43921241e-02 + syst_JES_MJB_Stat1: 3.35558863e-03 + syst_JES_MJB_Stat10: 3.64215335e-06 + syst_JES_MJB_Stat11: 1.34146351e-19 + syst_JES_MJB_Stat12: 5.47241453e-07 + syst_JES_MJB_Stat13: 7.10054229e-08 + syst_JES_MJB_Stat14: 8.14237085e-10 + syst_JES_MJB_Stat15: 2.45258394e-14 + syst_JES_MJB_Stat16: 1.02675972e-21 + syst_JES_MJB_Stat2: 3.11769145e-03 + syst_JES_MJB_Stat3: 3.84428677e-03 + syst_JES_MJB_Stat4: 8.02978754e-04 syst_JES_MJB_Stat5: 0.0 - syst_JES_MJB_Stat6: 3.0995049201445064e-10 - syst_JES_MJB_Stat7: 5.679394598018349e-25 - syst_JES_MJB_Stat8: 2.0845209472139031e-19 - syst_JES_MJB_Stat9: 2.77994154554183e-06 - syst_JES_MJB_Threshold: 0.013877029473197786 - syst_JES_Pileup_MuOffset: 0.02493484910722341 - syst_JES_Pileup_NPVOffset: 0.032096658315157976 - syst_JES_Pileup_Pt_term: 0.08302242272422554 - syst_JES_Pileup_Rho_topology: 0.1229584298655444 - syst_JES_PunchThrough_MC15: 0.011322628879814086 + syst_JES_MJB_Stat6: 3.09950492e-10 + syst_JES_MJB_Stat7: 5.67939460e-25 + syst_JES_MJB_Stat8: 2.08452095e-19 + syst_JES_MJB_Stat9: 2.77994155e-06 + syst_JES_MJB_Threshold: 1.38770295e-02 + syst_JES_Pileup_MuOffset: 2.49348491e-02 + syst_JES_Pileup_NPVOffset: 3.20966583e-02 + syst_JES_Pileup_Pt_term: 8.30224227e-02 + syst_JES_Pileup_Rho_topology: 1.22958430e-01 + syst_JES_PunchThrough_MC15: 1.13226289e-02 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.34315668068682564 - syst_JES_Zjet_MuScale: 0.021711179148079452 - syst_JES_Zjet_MuSmearID: 0.0033128344359475616 - syst_JES_Zjet_MuSmearMS: 0.06490611527429445 - syst_JES_Zjet_OOC: 0.1255875418781656 - syst_JES_Zjet_Stat1: 0.0019499463454156884 - syst_JES_Zjet_Stat10: 0.014295393488813101 - syst_JES_Zjet_Stat11: 0.017232443239424872 - syst_JES_Zjet_Stat12: 0.11559917852216771 - syst_JES_Zjet_Stat13: 0.039938294242493635 - syst_JES_Zjet_Stat2: 2.4395935624607638e-11 - syst_JES_Zjet_Stat3: 0.0021980355957081314 - syst_JES_Zjet_Stat4: 0.0021857846989124983 - syst_JES_Zjet_Stat5: 0.0021292282052424536 - syst_JES_Zjet_Stat6: 0.00180145295525584 - syst_JES_Zjet_Stat7: 0.001833102493042874 - syst_JES_Zjet_Stat8: 0.0024205083660256165 - syst_JES_Zjet_Stat9: 0.005281400950505462 - syst_JES_Zjet_Veto: 0.026734552549088977 - syst_JES_Zjet_dPhi: 0.021775841545161923 + syst_JES_Zjet_MC: 3.43156681e-01 + syst_JES_Zjet_MuScale: 2.17111791e-02 + syst_JES_Zjet_MuSmearID: 3.31283444e-03 + syst_JES_Zjet_MuSmearMS: 6.49061153e-02 + syst_JES_Zjet_OOC: 1.25587542e-01 + syst_JES_Zjet_Stat1: 1.94994635e-03 + syst_JES_Zjet_Stat10: 1.42953935e-02 + syst_JES_Zjet_Stat11: 1.72324432e-02 + syst_JES_Zjet_Stat12: 1.15599179e-01 + syst_JES_Zjet_Stat13: 3.99382942e-02 + syst_JES_Zjet_Stat2: 2.43959356e-11 + syst_JES_Zjet_Stat3: 2.19803560e-03 + syst_JES_Zjet_Stat4: 2.18578470e-03 + syst_JES_Zjet_Stat5: 2.12922821e-03 + syst_JES_Zjet_Stat6: 1.80145296e-03 + syst_JES_Zjet_Stat7: 1.83310249e-03 + syst_JES_Zjet_Stat8: 2.42050837e-03 + syst_JES_Zjet_Stat9: 5.28140095e-03 + syst_JES_Zjet_Veto: 2.67345525e-02 + syst_JES_Zjet_dPhi: 2.17758415e-02 syst_PRW: 0.0285 - syst_Unfolding_bias: 1.477e-06 - syst_cleaning: 0.09331423725777326 + syst_Unfolding_bias: 1.47700000e-06 + syst_cleaning: 9.33142373e-02 syst_lumi: 0.39546 - stat: 0.07817 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.11776127419487274 - syst_JER_NP1: 0.005767579279905912 - syst_JER_NP2: 0.04884707872534447 - syst_JER_NP3: 0.014463108612950398 - syst_JER_NP4: 0.0011447031536603715 - syst_JER_NP5: 0.020773078731858692 - syst_JER_NP6: 0.0022490799785690146 - syst_JER_NP7: 0.002609196571743877 - syst_JER_NP8: 0.017826954310818214 - syst_JES_EtaIntercalibration_Modelling: 0.3051985706060892 - syst_JES_EtaIntercalibration_NonClosure: 0.00035771564125713034 - syst_JES_EtaIntercalibration_Stat0: 4.936344801571301e-13 + syst_JER_NP0: 1.17761274e-01 + syst_JER_NP1: 5.76757928e-03 + syst_JER_NP2: 4.88470787e-02 + syst_JER_NP3: 1.44631086e-02 + syst_JER_NP4: 1.14470315e-03 + syst_JER_NP5: 2.07730787e-02 + syst_JER_NP6: 2.24907998e-03 + syst_JER_NP7: 2.60919657e-03 + syst_JER_NP8: 1.78269543e-02 + syst_JES_EtaIntercalibration_Modelling: 3.05198571e-01 + syst_JES_EtaIntercalibration_NonClosure: 3.57715641e-04 + syst_JES_EtaIntercalibration_Stat0: 4.93634480e-13 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 1.0445636312335919e-07 - syst_JES_EtaIntercalibration_Stat101: 0.000132017524120853 - syst_JES_EtaIntercalibration_Stat102: 4.986412212202276e-05 - syst_JES_EtaIntercalibration_Stat103: 4.115877207534258e-05 - syst_JES_EtaIntercalibration_Stat104: 2.9509609756823285e-05 - syst_JES_EtaIntercalibration_Stat105: 3.8032792101027765e-13 - syst_JES_EtaIntercalibration_Stat106: 4.936344801571301e-13 - syst_JES_EtaIntercalibration_Stat107: 4.936344801571301e-13 - syst_JES_EtaIntercalibration_Stat108: 4.936344801571301e-13 - syst_JES_EtaIntercalibration_Stat109: 4.936344801571301e-13 + syst_JES_EtaIntercalibration_Stat100: 1.04456363e-07 + syst_JES_EtaIntercalibration_Stat101: 1.32017524e-04 + syst_JES_EtaIntercalibration_Stat102: 4.98641221e-05 + syst_JES_EtaIntercalibration_Stat103: 4.11587721e-05 + syst_JES_EtaIntercalibration_Stat104: 2.95096098e-05 + syst_JES_EtaIntercalibration_Stat105: 3.80327921e-13 + syst_JES_EtaIntercalibration_Stat106: 4.93634480e-13 + syst_JES_EtaIntercalibration_Stat107: 4.93634480e-13 + syst_JES_EtaIntercalibration_Stat108: 4.93634480e-13 + syst_JES_EtaIntercalibration_Stat109: 4.93634480e-13 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 1.3567668213440362e-10 - syst_JES_EtaIntercalibration_Stat111: 4.6900770857204466e-05 - syst_JES_EtaIntercalibration_Stat112: 0.0001444236448785309 - syst_JES_EtaIntercalibration_Stat113: 0.0003962124051566281 - syst_JES_EtaIntercalibration_Stat114: 0.00014565561849788012 - syst_JES_EtaIntercalibration_Stat115: 2.3686315003182745e-05 - syst_JES_EtaIntercalibration_Stat116: 2.817016132128994e-09 - syst_JES_EtaIntercalibration_Stat117: 4.936344801571301e-13 - syst_JES_EtaIntercalibration_Stat118: 4.936344801571301e-13 - syst_JES_EtaIntercalibration_Stat119: 4.936344801571301e-13 + syst_JES_EtaIntercalibration_Stat110: 1.35676682e-10 + syst_JES_EtaIntercalibration_Stat111: 4.69007709e-05 + syst_JES_EtaIntercalibration_Stat112: 1.44423645e-04 + syst_JES_EtaIntercalibration_Stat113: 3.96212405e-04 + syst_JES_EtaIntercalibration_Stat114: 1.45655618e-04 + syst_JES_EtaIntercalibration_Stat115: 2.36863150e-05 + syst_JES_EtaIntercalibration_Stat116: 2.81701613e-09 + syst_JES_EtaIntercalibration_Stat117: 4.93634480e-13 + syst_JES_EtaIntercalibration_Stat118: 4.93634480e-13 + syst_JES_EtaIntercalibration_Stat119: 4.93634480e-13 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 5.365027376444597e-07 - syst_JES_EtaIntercalibration_Stat121: 0.00029124444629898097 - syst_JES_EtaIntercalibration_Stat122: 0.00042431239376195467 - syst_JES_EtaIntercalibration_Stat123: 0.0001948501154734069 - syst_JES_EtaIntercalibration_Stat124: 2.8330285914547353e-05 - syst_JES_EtaIntercalibration_Stat125: 4.3994090512249485e-09 - syst_JES_EtaIntercalibration_Stat126: 4.936344801571301e-13 - syst_JES_EtaIntercalibration_Stat127: 4.936344801571301e-13 - syst_JES_EtaIntercalibration_Stat128: 4.936344801571301e-13 - syst_JES_EtaIntercalibration_Stat129: 9.348610533523151e-05 + syst_JES_EtaIntercalibration_Stat120: 5.36502738e-07 + syst_JES_EtaIntercalibration_Stat121: 2.91244446e-04 + syst_JES_EtaIntercalibration_Stat122: 4.24312394e-04 + syst_JES_EtaIntercalibration_Stat123: 1.94850115e-04 + syst_JES_EtaIntercalibration_Stat124: 2.83302859e-05 + syst_JES_EtaIntercalibration_Stat125: 4.39940905e-09 + syst_JES_EtaIntercalibration_Stat126: 4.93634480e-13 + syst_JES_EtaIntercalibration_Stat127: 4.93634480e-13 + syst_JES_EtaIntercalibration_Stat128: 4.93634480e-13 + syst_JES_EtaIntercalibration_Stat129: 9.34861053e-05 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 0.0004636997304290784 - syst_JES_EtaIntercalibration_Stat131: 0.0027672984569792974 - syst_JES_EtaIntercalibration_Stat132: 0.0029350122657324624 - syst_JES_EtaIntercalibration_Stat133: 0.000822618166283726 - syst_JES_EtaIntercalibration_Stat134: 5.979751478536267e-05 - syst_JES_EtaIntercalibration_Stat135: 2.8171806385107787e-09 + syst_JES_EtaIntercalibration_Stat130: 4.63699730e-04 + syst_JES_EtaIntercalibration_Stat131: 2.76729846e-03 + syst_JES_EtaIntercalibration_Stat132: 2.93501227e-03 + syst_JES_EtaIntercalibration_Stat133: 8.22618166e-04 + syst_JES_EtaIntercalibration_Stat134: 5.97975148e-05 + syst_JES_EtaIntercalibration_Stat135: 2.81718064e-09 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 syst_JES_EtaIntercalibration_Stat138: 0.0 - syst_JES_EtaIntercalibration_Stat139: 0.00022571407371938508 - syst_JES_EtaIntercalibration_Stat14: 1.0558586029979912e-07 - syst_JES_EtaIntercalibration_Stat140: 0.0010331387648810785 - syst_JES_EtaIntercalibration_Stat141: 0.0033426562416736783 - syst_JES_EtaIntercalibration_Stat142: 0.0023261655143175003 - syst_JES_EtaIntercalibration_Stat143: 0.0005908152742609148 - syst_JES_EtaIntercalibration_Stat144: 1.2774367773005441e-05 + syst_JES_EtaIntercalibration_Stat139: 2.25714074e-04 + syst_JES_EtaIntercalibration_Stat14: 1.05585860e-07 + syst_JES_EtaIntercalibration_Stat140: 1.03313876e-03 + syst_JES_EtaIntercalibration_Stat141: 3.34265624e-03 + syst_JES_EtaIntercalibration_Stat142: 2.32616551e-03 + syst_JES_EtaIntercalibration_Stat143: 5.90815274e-04 + syst_JES_EtaIntercalibration_Stat144: 1.27743678e-05 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 1.780178089405664e-05 - syst_JES_EtaIntercalibration_Stat148: 0.0008332113582399126 - syst_JES_EtaIntercalibration_Stat149: 0.003725969193377745 - syst_JES_EtaIntercalibration_Stat15: 1.0536974043405729e-07 - syst_JES_EtaIntercalibration_Stat150: 0.0037889639744922354 - syst_JES_EtaIntercalibration_Stat151: 0.0012567371194883996 - syst_JES_EtaIntercalibration_Stat152: 2.3619768732991436e-05 + syst_JES_EtaIntercalibration_Stat147: 1.78017809e-05 + syst_JES_EtaIntercalibration_Stat148: 8.33211358e-04 + syst_JES_EtaIntercalibration_Stat149: 3.72596919e-03 + syst_JES_EtaIntercalibration_Stat15: 1.05369740e-07 + syst_JES_EtaIntercalibration_Stat150: 3.78896397e-03 + syst_JES_EtaIntercalibration_Stat151: 1.25673712e-03 + syst_JES_EtaIntercalibration_Stat152: 2.36197687e-05 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 syst_JES_EtaIntercalibration_Stat156: 0.0 - syst_JES_EtaIntercalibration_Stat157: 1.9386832722237018e-05 - syst_JES_EtaIntercalibration_Stat158: 0.0012744257844221451 - syst_JES_EtaIntercalibration_Stat159: 0.00517235292202688 - syst_JES_EtaIntercalibration_Stat16: 1.0495440246103742e-07 - syst_JES_EtaIntercalibration_Stat160: 0.003916438305399435 - syst_JES_EtaIntercalibration_Stat161: 0.000773635616747316 - syst_JES_EtaIntercalibration_Stat162: 1.2870523843988441e-05 + syst_JES_EtaIntercalibration_Stat157: 1.93868327e-05 + syst_JES_EtaIntercalibration_Stat158: 1.27442578e-03 + syst_JES_EtaIntercalibration_Stat159: 5.17235292e-03 + syst_JES_EtaIntercalibration_Stat16: 1.04954402e-07 + syst_JES_EtaIntercalibration_Stat160: 3.91643831e-03 + syst_JES_EtaIntercalibration_Stat161: 7.73635617e-04 + syst_JES_EtaIntercalibration_Stat162: 1.28705238e-05 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 4.469820357687767e-05 - syst_JES_EtaIntercalibration_Stat166: 0.001574666633767287 - syst_JES_EtaIntercalibration_Stat167: 0.007049705100215185 - syst_JES_EtaIntercalibration_Stat168: 0.007816487906182673 - syst_JES_EtaIntercalibration_Stat169: 0.0023815173209531773 - syst_JES_EtaIntercalibration_Stat17: 4.0945681090928254e-13 - syst_JES_EtaIntercalibration_Stat170: 0.00011864705887947667 + syst_JES_EtaIntercalibration_Stat165: 4.46982036e-05 + syst_JES_EtaIntercalibration_Stat166: 1.57466663e-03 + syst_JES_EtaIntercalibration_Stat167: 7.04970510e-03 + syst_JES_EtaIntercalibration_Stat168: 7.81648791e-03 + syst_JES_EtaIntercalibration_Stat169: 2.38151732e-03 + syst_JES_EtaIntercalibration_Stat17: 4.09456811e-13 + syst_JES_EtaIntercalibration_Stat170: 1.18647059e-04 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 - syst_JES_EtaIntercalibration_Stat175: 0.00013651262652223785 - syst_JES_EtaIntercalibration_Stat176: 0.0028278505971850777 - syst_JES_EtaIntercalibration_Stat177: 0.011128572988034 - syst_JES_EtaIntercalibration_Stat178: 0.0082484711765272 - syst_JES_EtaIntercalibration_Stat179: 0.0015546609759043931 + syst_JES_EtaIntercalibration_Stat175: 1.36512627e-04 + syst_JES_EtaIntercalibration_Stat176: 2.82785060e-03 + syst_JES_EtaIntercalibration_Stat177: 1.11285730e-02 + syst_JES_EtaIntercalibration_Stat178: 8.24847118e-03 + syst_JES_EtaIntercalibration_Stat179: 1.55466098e-03 syst_JES_EtaIntercalibration_Stat18: 0.0 - syst_JES_EtaIntercalibration_Stat180: 4.0349471210498846e-05 + syst_JES_EtaIntercalibration_Stat180: 4.03494712e-05 syst_JES_EtaIntercalibration_Stat181: 0.0 - syst_JES_EtaIntercalibration_Stat182: 0.00013908252046896475 - syst_JES_EtaIntercalibration_Stat183: 0.003972790801187498 - syst_JES_EtaIntercalibration_Stat184: 0.016531361105486746 - syst_JES_EtaIntercalibration_Stat185: 0.022405010042399 - syst_JES_EtaIntercalibration_Stat186: 0.005025189909844204 - syst_JES_EtaIntercalibration_Stat187: 0.00025876384987088126 + syst_JES_EtaIntercalibration_Stat182: 1.39082520e-04 + syst_JES_EtaIntercalibration_Stat183: 3.97279080e-03 + syst_JES_EtaIntercalibration_Stat184: 1.65313611e-02 + syst_JES_EtaIntercalibration_Stat185: 2.24050100e-02 + syst_JES_EtaIntercalibration_Stat186: 5.02518991e-03 + syst_JES_EtaIntercalibration_Stat187: 2.58763850e-04 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 - syst_JES_EtaIntercalibration_Stat192: 6.984491032913085e-05 - syst_JES_EtaIntercalibration_Stat193: 0.008475307251067656 - syst_JES_EtaIntercalibration_Stat194: 0.026664860772184804 - syst_JES_EtaIntercalibration_Stat195: 0.018984741241323252 - syst_JES_EtaIntercalibration_Stat196: 0.003253422313503121 - syst_JES_EtaIntercalibration_Stat197: 0.00010436619411955193 - syst_JES_EtaIntercalibration_Stat198: 0.0019732835598311764 - syst_JES_EtaIntercalibration_Stat199: 0.007035804484918551 + syst_JES_EtaIntercalibration_Stat192: 6.98449103e-05 + syst_JES_EtaIntercalibration_Stat193: 8.47530725e-03 + syst_JES_EtaIntercalibration_Stat194: 2.66648608e-02 + syst_JES_EtaIntercalibration_Stat195: 1.89847412e-02 + syst_JES_EtaIntercalibration_Stat196: 3.25342231e-03 + syst_JES_EtaIntercalibration_Stat197: 1.04366194e-04 + syst_JES_EtaIntercalibration_Stat198: 1.97328356e-03 + syst_JES_EtaIntercalibration_Stat199: 7.03580448e-03 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 0.00891785775845298 - syst_JES_EtaIntercalibration_Stat201: 0.002263899456689718 - syst_JES_EtaIntercalibration_Stat202: 0.0001692824267311879 + syst_JES_EtaIntercalibration_Stat200: 8.91785776e-03 + syst_JES_EtaIntercalibration_Stat201: 2.26389946e-03 + syst_JES_EtaIntercalibration_Stat202: 1.69282427e-04 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 - syst_JES_EtaIntercalibration_Stat207: 0.00016248316466637398 - syst_JES_EtaIntercalibration_Stat208: 0.003742831281262889 - syst_JES_EtaIntercalibration_Stat209: 0.011556830307225248 + syst_JES_EtaIntercalibration_Stat207: 1.62483165e-04 + syst_JES_EtaIntercalibration_Stat208: 3.74283128e-03 + syst_JES_EtaIntercalibration_Stat209: 1.15568303e-02 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 0.00683096991649063 - syst_JES_EtaIntercalibration_Stat211: 0.001904610030294916 - syst_JES_EtaIntercalibration_Stat212: 0.0007872754965702921 - syst_JES_EtaIntercalibration_Stat213: 0.0012121950039081996 - syst_JES_EtaIntercalibration_Stat214: 0.0003917860289430954 - syst_JES_EtaIntercalibration_Stat215: 3.750850912459731e-05 + syst_JES_EtaIntercalibration_Stat210: 6.83096992e-03 + syst_JES_EtaIntercalibration_Stat211: 1.90461003e-03 + syst_JES_EtaIntercalibration_Stat212: 7.87275497e-04 + syst_JES_EtaIntercalibration_Stat213: 1.21219500e-03 + syst_JES_EtaIntercalibration_Stat214: 3.91786029e-04 + syst_JES_EtaIntercalibration_Stat215: 3.75085091e-05 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 syst_JES_EtaIntercalibration_Stat219: 0.0 - syst_JES_EtaIntercalibration_Stat22: 4.936344801571301e-13 - syst_JES_EtaIntercalibration_Stat220: 1.1783180006429285e-05 - syst_JES_EtaIntercalibration_Stat221: 0.0004526683885583353 - syst_JES_EtaIntercalibration_Stat222: 0.0005518521065466726 - syst_JES_EtaIntercalibration_Stat223: 0.0007956926165297752 - syst_JES_EtaIntercalibration_Stat224: 0.00016173235815692544 - syst_JES_EtaIntercalibration_Stat225: 0.0002564341387179172 - syst_JES_EtaIntercalibration_Stat226: 2.6655586187514244e-05 - syst_JES_EtaIntercalibration_Stat227: 3.6931186319965403e-07 + syst_JES_EtaIntercalibration_Stat22: 4.93634480e-13 + syst_JES_EtaIntercalibration_Stat220: 1.17831800e-05 + syst_JES_EtaIntercalibration_Stat221: 4.52668389e-04 + syst_JES_EtaIntercalibration_Stat222: 5.51852107e-04 + syst_JES_EtaIntercalibration_Stat223: 7.95692617e-04 + syst_JES_EtaIntercalibration_Stat224: 1.61732358e-04 + syst_JES_EtaIntercalibration_Stat225: 2.56434139e-04 + syst_JES_EtaIntercalibration_Stat226: 2.66555862e-05 + syst_JES_EtaIntercalibration_Stat227: 3.69311863e-07 syst_JES_EtaIntercalibration_Stat228: 0.0 syst_JES_EtaIntercalibration_Stat229: 0.0 - syst_JES_EtaIntercalibration_Stat23: 4.936344801571301e-13 + syst_JES_EtaIntercalibration_Stat23: 4.93634480e-13 syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 - syst_JES_EtaIntercalibration_Stat232: 1.6803368434632389e-06 - syst_JES_EtaIntercalibration_Stat233: 7.970031946566364e-05 - syst_JES_EtaIntercalibration_Stat234: 0.000329426835579617 - syst_JES_EtaIntercalibration_Stat235: 0.0005223896725625422 - syst_JES_EtaIntercalibration_Stat236: 7.405388899308395e-07 - syst_JES_EtaIntercalibration_Stat237: 3.9804493926565627e-07 - syst_JES_EtaIntercalibration_Stat238: 1.7909405350262192e-13 + syst_JES_EtaIntercalibration_Stat232: 1.68033684e-06 + syst_JES_EtaIntercalibration_Stat233: 7.97003195e-05 + syst_JES_EtaIntercalibration_Stat234: 3.29426836e-04 + syst_JES_EtaIntercalibration_Stat235: 5.22389673e-04 + syst_JES_EtaIntercalibration_Stat236: 7.40538890e-07 + syst_JES_EtaIntercalibration_Stat237: 3.98044939e-07 + syst_JES_EtaIntercalibration_Stat238: 1.79094054e-13 syst_JES_EtaIntercalibration_Stat239: 0.0 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 - syst_JES_EtaIntercalibration_Stat243: 1.0786164390899112e-10 - syst_JES_EtaIntercalibration_Stat244: 5.7894707011954036e-08 - syst_JES_EtaIntercalibration_Stat245: 1.6828572154226274e-06 - syst_JES_EtaIntercalibration_Stat25: 4.0850418296511974e-13 - syst_JES_EtaIntercalibration_Stat26: 9.682476168315625e-11 - syst_JES_EtaIntercalibration_Stat27: 9.106421727962087e-08 - syst_JES_EtaIntercalibration_Stat28: 2.2912801446080308e-05 - syst_JES_EtaIntercalibration_Stat29: 9.987523701473754e-08 + syst_JES_EtaIntercalibration_Stat243: 1.07861644e-10 + syst_JES_EtaIntercalibration_Stat244: 5.78947070e-08 + syst_JES_EtaIntercalibration_Stat245: 1.68285722e-06 + syst_JES_EtaIntercalibration_Stat25: 4.08504183e-13 + syst_JES_EtaIntercalibration_Stat26: 9.68247617e-11 + syst_JES_EtaIntercalibration_Stat27: 9.10642173e-08 + syst_JES_EtaIntercalibration_Stat28: 2.29128014e-05 + syst_JES_EtaIntercalibration_Stat29: 9.98752370e-08 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 5.5016364364682436e-12 + syst_JES_EtaIntercalibration_Stat30: 5.50163644e-12 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 6.835818195907495e-13 - syst_JES_EtaIntercalibration_Stat36: 1.0263804534707147e-07 - syst_JES_EtaIntercalibration_Stat37: 1.56038896009281e-05 - syst_JES_EtaIntercalibration_Stat38: 1.5586484307523714e-05 - syst_JES_EtaIntercalibration_Stat39: 4.451684909680266e-09 - syst_JES_EtaIntercalibration_Stat4: 5.60145231167775e-13 - syst_JES_EtaIntercalibration_Stat40: 2.2014365764200434e-13 + syst_JES_EtaIntercalibration_Stat35: 6.83581820e-13 + syst_JES_EtaIntercalibration_Stat36: 1.02638045e-07 + syst_JES_EtaIntercalibration_Stat37: 1.56038896e-05 + syst_JES_EtaIntercalibration_Stat38: 1.55864843e-05 + syst_JES_EtaIntercalibration_Stat39: 4.45168491e-09 + syst_JES_EtaIntercalibration_Stat4: 5.60145231e-13 + syst_JES_EtaIntercalibration_Stat40: 2.20143658e-13 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 - syst_JES_EtaIntercalibration_Stat44: 4.936344801571301e-13 + syst_JES_EtaIntercalibration_Stat44: 4.93634480e-13 syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 - syst_JES_EtaIntercalibration_Stat47: 4.0867738804587664e-13 - syst_JES_EtaIntercalibration_Stat48: 4.970384391573754e-09 - syst_JES_EtaIntercalibration_Stat49: 2.362243848547393e-07 - syst_JES_EtaIntercalibration_Stat5: 8.938620714629299e-10 - syst_JES_EtaIntercalibration_Stat50: 2.4474440832216678e-05 - syst_JES_EtaIntercalibration_Stat51: 2.2430026677425064e-05 - syst_JES_EtaIntercalibration_Stat52: 7.730730346319163e-10 + syst_JES_EtaIntercalibration_Stat47: 4.08677388e-13 + syst_JES_EtaIntercalibration_Stat48: 4.97038439e-09 + syst_JES_EtaIntercalibration_Stat49: 2.36224385e-07 + syst_JES_EtaIntercalibration_Stat5: 8.93862071e-10 + syst_JES_EtaIntercalibration_Stat50: 2.44744408e-05 + syst_JES_EtaIntercalibration_Stat51: 2.24300267e-05 + syst_JES_EtaIntercalibration_Stat52: 7.73073035e-10 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 syst_JES_EtaIntercalibration_Stat56: 0.0 - syst_JES_EtaIntercalibration_Stat57: 1.055773289113911e-07 - syst_JES_EtaIntercalibration_Stat58: 9.490306407461247e-08 - syst_JES_EtaIntercalibration_Stat59: 8.085325658252734e-05 - syst_JES_EtaIntercalibration_Stat6: 6.7799299465407466e-09 - syst_JES_EtaIntercalibration_Stat60: 1.4735885407738486e-05 - syst_JES_EtaIntercalibration_Stat61: 1.570860267237987e-07 - syst_JES_EtaIntercalibration_Stat62: 4.176840522452347e-13 + syst_JES_EtaIntercalibration_Stat57: 1.05577329e-07 + syst_JES_EtaIntercalibration_Stat58: 9.49030641e-08 + syst_JES_EtaIntercalibration_Stat59: 8.08532566e-05 + syst_JES_EtaIntercalibration_Stat6: 6.77992995e-09 + syst_JES_EtaIntercalibration_Stat60: 1.47358854e-05 + syst_JES_EtaIntercalibration_Stat61: 1.57086027e-07 + syst_JES_EtaIntercalibration_Stat62: 4.17684052e-13 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 - syst_JES_EtaIntercalibration_Stat69: 5.91336655383378e-13 - syst_JES_EtaIntercalibration_Stat7: 7.740326128505698e-10 - syst_JES_EtaIntercalibration_Stat70: 1.1272850970362378e-07 - syst_JES_EtaIntercalibration_Stat71: 2.7694396353188493e-05 - syst_JES_EtaIntercalibration_Stat72: 2.021504667320855e-05 - syst_JES_EtaIntercalibration_Stat73: 2.422258037451832e-05 - syst_JES_EtaIntercalibration_Stat74: 8.697188669334476e-09 + syst_JES_EtaIntercalibration_Stat69: 5.91336655e-13 + syst_JES_EtaIntercalibration_Stat7: 7.74032613e-10 + syst_JES_EtaIntercalibration_Stat70: 1.12728510e-07 + syst_JES_EtaIntercalibration_Stat71: 2.76943964e-05 + syst_JES_EtaIntercalibration_Stat72: 2.02150467e-05 + syst_JES_EtaIntercalibration_Stat73: 2.42225804e-05 + syst_JES_EtaIntercalibration_Stat74: 8.69718867e-09 syst_JES_EtaIntercalibration_Stat75: 0.0 syst_JES_EtaIntercalibration_Stat76: 0.0 syst_JES_EtaIntercalibration_Stat77: 0.0 syst_JES_EtaIntercalibration_Stat78: 0.0 - syst_JES_EtaIntercalibration_Stat79: 1.038893272485729e-07 + syst_JES_EtaIntercalibration_Stat79: 1.03889327e-07 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 3.786530436956766e-05 - syst_JES_EtaIntercalibration_Stat81: 4.962917967284973e-05 - syst_JES_EtaIntercalibration_Stat82: 8.271994000844053e-05 - syst_JES_EtaIntercalibration_Stat83: 1.3166454648081997e-05 - syst_JES_EtaIntercalibration_Stat84: 2.3911373862662097e-13 - syst_JES_EtaIntercalibration_Stat85: 4.936344801571301e-13 - syst_JES_EtaIntercalibration_Stat86: 4.936344801571301e-13 - syst_JES_EtaIntercalibration_Stat87: 4.936344801571301e-13 - syst_JES_EtaIntercalibration_Stat88: 4.936344801571301e-13 - syst_JES_EtaIntercalibration_Stat89: 4.936344801571301e-13 + syst_JES_EtaIntercalibration_Stat80: 3.78653044e-05 + syst_JES_EtaIntercalibration_Stat81: 4.96291797e-05 + syst_JES_EtaIntercalibration_Stat82: 8.27199400e-05 + syst_JES_EtaIntercalibration_Stat83: 1.31664546e-05 + syst_JES_EtaIntercalibration_Stat84: 2.39113739e-13 + syst_JES_EtaIntercalibration_Stat85: 4.93634480e-13 + syst_JES_EtaIntercalibration_Stat86: 4.93634480e-13 + syst_JES_EtaIntercalibration_Stat87: 4.93634480e-13 + syst_JES_EtaIntercalibration_Stat88: 4.93634480e-13 + syst_JES_EtaIntercalibration_Stat89: 4.93634480e-13 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 7.179906213175769e-06 - syst_JES_EtaIntercalibration_Stat92: 5.043002553043177e-05 - syst_JES_EtaIntercalibration_Stat93: 2.0325803182162325e-06 - syst_JES_EtaIntercalibration_Stat94: 2.5060115736963386e-05 - syst_JES_EtaIntercalibration_Stat95: 9.049374020754143e-08 - syst_JES_EtaIntercalibration_Stat96: 2.817016132128994e-09 - syst_JES_EtaIntercalibration_Stat97: 4.936344801571301e-13 - syst_JES_EtaIntercalibration_Stat98: 4.936344801571301e-13 - syst_JES_EtaIntercalibration_Stat99: 4.936344801571301e-13 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.024402481431198754 - syst_JES_Flavour_Comp: 0.08440684850768924 - syst_JES_Flavour_Response: 0.1851798247650105 - syst_JES_Gjet_Generator: 0.23546460455873192 - syst_JES_Gjet_OOC: 0.16965178307344725 - syst_JES_Gjet_Purity: 0.05921016889014927 - syst_JES_Gjet_Stat1: 1.1387368034361584e-12 - syst_JES_Gjet_Stat10: 0.009931510408794825 - syst_JES_Gjet_Stat11: 0.0187012352533195 - syst_JES_Gjet_Stat12: 0.034723942748484074 - syst_JES_Gjet_Stat13: 0.017907346955928452 - syst_JES_Gjet_Stat14: 0.007601972572957626 - syst_JES_Gjet_Stat15: 0.0009531241419668269 - syst_JES_Gjet_Stat2: 1.2082786433600488e-08 - syst_JES_Gjet_Stat3: 9.89434023823721e-16 - syst_JES_Gjet_Stat4: 0.0005023930934039599 - syst_JES_Gjet_Stat5: 0.0005927765076239542 - syst_JES_Gjet_Stat6: 0.0015923567439490435 - syst_JES_Gjet_Stat7: 0.0024424550661168777 - syst_JES_Gjet_Stat8: 0.001353682336259139 - syst_JES_Gjet_Stat9: 0.0042063211955341686 - syst_JES_Gjet_Veto: 0.09229000433416396 - syst_JES_Gjet_dPhi: 0.012219369245177919 - syst_JES_LArESZee: 0.32582969477934326 - syst_JES_LArEsmear: 0.025671406272349005 - syst_JES_LAr_JVT: 0.03329761365323348 - syst_JES_MJB_Alpha: 0.002361199667541904 - syst_JES_MJB_Asym: 0.009027779793504047 - syst_JES_MJB_Beta: 0.0011604708397887473 - syst_JES_MJB_Fragmentation: 0.028308600724868054 - syst_JES_MJB_Stat1: 0.0016852854357645177 - syst_JES_MJB_Stat10: 6.8245382994016535e-06 - syst_JES_MJB_Stat11: 2.9433917877931233e-15 - syst_JES_MJB_Stat12: 2.0308295718745085e-06 - syst_JES_MJB_Stat13: 6.373946971853469e-07 - syst_JES_MJB_Stat14: 2.1780538905178632e-08 - syst_JES_MJB_Stat15: 1.1382171957167619e-11 - syst_JES_MJB_Stat16: 2.2533981006471093e-17 - syst_JES_MJB_Stat2: 0.0029245677885800492 - syst_JES_MJB_Stat3: 0.002971333160384409 - syst_JES_MJB_Stat4: 0.0008726071968532004 + syst_JES_EtaIntercalibration_Stat91: 7.17990621e-06 + syst_JES_EtaIntercalibration_Stat92: 5.04300255e-05 + syst_JES_EtaIntercalibration_Stat93: 2.03258032e-06 + syst_JES_EtaIntercalibration_Stat94: 2.50601157e-05 + syst_JES_EtaIntercalibration_Stat95: 9.04937402e-08 + syst_JES_EtaIntercalibration_Stat96: 2.81701613e-09 + syst_JES_EtaIntercalibration_Stat97: 4.93634480e-13 + syst_JES_EtaIntercalibration_Stat98: 4.93634480e-13 + syst_JES_EtaIntercalibration_Stat99: 4.93634480e-13 + syst_JES_EtaIntercalibration_TotalStat_MJB: 2.44024814e-02 + syst_JES_Flavour_Comp: 8.44068485e-02 + syst_JES_Flavour_Response: 1.85179825e-01 + syst_JES_Gjet_Generator: 2.35464605e-01 + syst_JES_Gjet_OOC: 1.69651783e-01 + syst_JES_Gjet_Purity: 5.92101689e-02 + syst_JES_Gjet_Stat1: 1.13873680e-12 + syst_JES_Gjet_Stat10: 9.93151041e-03 + syst_JES_Gjet_Stat11: 1.87012353e-02 + syst_JES_Gjet_Stat12: 3.47239427e-02 + syst_JES_Gjet_Stat13: 1.79073470e-02 + syst_JES_Gjet_Stat14: 7.60197257e-03 + syst_JES_Gjet_Stat15: 9.53124142e-04 + syst_JES_Gjet_Stat2: 1.20827864e-08 + syst_JES_Gjet_Stat3: 9.89434024e-16 + syst_JES_Gjet_Stat4: 5.02393093e-04 + syst_JES_Gjet_Stat5: 5.92776508e-04 + syst_JES_Gjet_Stat6: 1.59235674e-03 + syst_JES_Gjet_Stat7: 2.44245507e-03 + syst_JES_Gjet_Stat8: 1.35368234e-03 + syst_JES_Gjet_Stat9: 4.20632120e-03 + syst_JES_Gjet_Veto: 9.22900043e-02 + syst_JES_Gjet_dPhi: 1.22193692e-02 + syst_JES_LArESZee: 3.25829695e-01 + syst_JES_LArEsmear: 2.56714063e-02 + syst_JES_LAr_JVT: 3.32976137e-02 + syst_JES_MJB_Alpha: 2.36119967e-03 + syst_JES_MJB_Asym: 9.02777979e-03 + syst_JES_MJB_Beta: 1.16047084e-03 + syst_JES_MJB_Fragmentation: 2.83086007e-02 + syst_JES_MJB_Stat1: 1.68528544e-03 + syst_JES_MJB_Stat10: 6.82453830e-06 + syst_JES_MJB_Stat11: 2.94339179e-15 + syst_JES_MJB_Stat12: 2.03082957e-06 + syst_JES_MJB_Stat13: 6.37394697e-07 + syst_JES_MJB_Stat14: 2.17805389e-08 + syst_JES_MJB_Stat15: 1.13821720e-11 + syst_JES_MJB_Stat16: 2.25339810e-17 + syst_JES_MJB_Stat2: 2.92456779e-03 + syst_JES_MJB_Stat3: 2.97133316e-03 + syst_JES_MJB_Stat4: 8.72607197e-04 syst_JES_MJB_Stat5: 0.0 - syst_JES_MJB_Stat6: 3.0752562088385417e-08 - syst_JES_MJB_Stat7: 1.3198227153674846e-19 - syst_JES_MJB_Stat8: 4.573429035305271e-15 - syst_JES_MJB_Stat9: 5.209141115304725e-06 - syst_JES_MJB_Threshold: 0.011294045864967964 - syst_JES_Pileup_MuOffset: 0.0201893313410821 - syst_JES_Pileup_NPVOffset: 0.02392083349300354 - syst_JES_Pileup_Pt_term: 0.050860751813161395 - syst_JES_Pileup_Rho_topology: 0.07749932322285144 - syst_JES_PunchThrough_MC15: 0.007921804213687687 + syst_JES_MJB_Stat6: 3.07525621e-08 + syst_JES_MJB_Stat7: 1.31982272e-19 + syst_JES_MJB_Stat8: 4.57342904e-15 + syst_JES_MJB_Stat9: 5.20914112e-06 + syst_JES_MJB_Threshold: 1.12940459e-02 + syst_JES_Pileup_MuOffset: 2.01893313e-02 + syst_JES_Pileup_NPVOffset: 2.39208335e-02 + syst_JES_Pileup_Pt_term: 5.08607518e-02 + syst_JES_Pileup_Rho_topology: 7.74993232e-02 + syst_JES_PunchThrough_MC15: 7.92180421e-03 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.20647674808558955 - syst_JES_Zjet_MuScale: 0.012783598505506966 - syst_JES_Zjet_MuSmearID: 0.0019718034891946005 - syst_JES_Zjet_MuSmearMS: 0.045250019889498394 - syst_JES_Zjet_OOC: 0.07914220286926565 - syst_JES_Zjet_Stat1: 0.0014936387615484541 - syst_JES_Zjet_Stat10: 0.007432016280929422 - syst_JES_Zjet_Stat11: 0.007840722925853203 - syst_JES_Zjet_Stat12: 0.06751017923246834 - syst_JES_Zjet_Stat13: 0.03544149263222417 - syst_JES_Zjet_Stat2: 2.5010813661294586e-12 - syst_JES_Zjet_Stat3: 0.0015732977809365905 - syst_JES_Zjet_Stat4: 0.0015694539711313615 - syst_JES_Zjet_Stat5: 0.0016842607243238797 - syst_JES_Zjet_Stat6: 0.0012167510016433108 - syst_JES_Zjet_Stat7: 0.0011090214459152717 - syst_JES_Zjet_Stat8: 0.0014285340842976062 - syst_JES_Zjet_Stat9: 0.00318459805156004 - syst_JES_Zjet_Veto: 0.016636444181374818 - syst_JES_Zjet_dPhi: 0.0135265029848812 + syst_JES_Zjet_MC: 2.06476748e-01 + syst_JES_Zjet_MuScale: 1.27835985e-02 + syst_JES_Zjet_MuSmearID: 1.97180349e-03 + syst_JES_Zjet_MuSmearMS: 4.52500199e-02 + syst_JES_Zjet_OOC: 7.91422029e-02 + syst_JES_Zjet_Stat1: 1.49363876e-03 + syst_JES_Zjet_Stat10: 7.43201628e-03 + syst_JES_Zjet_Stat11: 7.84072293e-03 + syst_JES_Zjet_Stat12: 6.75101792e-02 + syst_JES_Zjet_Stat13: 3.54414926e-02 + syst_JES_Zjet_Stat2: 2.50108137e-12 + syst_JES_Zjet_Stat3: 1.57329778e-03 + syst_JES_Zjet_Stat4: 1.56945397e-03 + syst_JES_Zjet_Stat5: 1.68426072e-03 + syst_JES_Zjet_Stat6: 1.21675100e-03 + syst_JES_Zjet_Stat7: 1.10902145e-03 + syst_JES_Zjet_Stat8: 1.42853408e-03 + syst_JES_Zjet_Stat9: 3.18459805e-03 + syst_JES_Zjet_Veto: 1.66364442e-02 + syst_JES_Zjet_dPhi: 1.35265030e-02 syst_PRW: 0.01746 - syst_Unfolding_bias: 1.623e-07 - syst_cleaning: 0.06094220766431095 + syst_Unfolding_bias: 1.62300000e-07 + syst_cleaning: 6.09422077e-02 syst_lumi: 0.2422 - stat: 0.05673 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.06829486272773377 - syst_JER_NP1: 0.003466737767700349 - syst_JER_NP2: 0.029862506174130797 - syst_JER_NP3: 0.006049591556460651 - syst_JER_NP4: 0.00023455052227611858 - syst_JER_NP5: 0.01148213885780868 - syst_JER_NP6: 0.00046309164049894056 - syst_JER_NP7: 0.0005449555096519348 - syst_JER_NP8: 0.010829877238454739 - syst_JES_EtaIntercalibration_Modelling: 0.21771460102620588 - syst_JES_EtaIntercalibration_NonClosure: 0.0008162608502647913 - syst_JES_EtaIntercalibration_Stat0: 5.953058625614231e-14 + syst_JER_NP0: 6.82948627e-02 + syst_JER_NP1: 3.46673777e-03 + syst_JER_NP2: 2.98625062e-02 + syst_JER_NP3: 6.04959156e-03 + syst_JER_NP4: 2.34550522e-04 + syst_JER_NP5: 1.14821389e-02 + syst_JER_NP6: 4.63091640e-04 + syst_JER_NP7: 5.44955510e-04 + syst_JER_NP8: 1.08298772e-02 + syst_JES_EtaIntercalibration_Modelling: 2.17714601e-01 + syst_JES_EtaIntercalibration_NonClosure: 8.16260850e-04 + syst_JES_EtaIntercalibration_Stat0: 5.95305863e-14 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 1.3183387074251708e-08 - syst_JES_EtaIntercalibration_Stat101: 5.185537677039866e-05 - syst_JES_EtaIntercalibration_Stat102: 3.30438538158006e-05 - syst_JES_EtaIntercalibration_Stat103: 2.2476678847196266e-05 - syst_JES_EtaIntercalibration_Stat104: 8.105393649138825e-06 - syst_JES_EtaIntercalibration_Stat105: 4.9063757245037805e-14 - syst_JES_EtaIntercalibration_Stat106: 5.953058625614231e-14 - syst_JES_EtaIntercalibration_Stat107: 5.953058625614231e-14 - syst_JES_EtaIntercalibration_Stat108: 5.953058625614231e-14 - syst_JES_EtaIntercalibration_Stat109: 5.953058625614231e-14 + syst_JES_EtaIntercalibration_Stat100: 1.31833871e-08 + syst_JES_EtaIntercalibration_Stat101: 5.18553768e-05 + syst_JES_EtaIntercalibration_Stat102: 3.30438538e-05 + syst_JES_EtaIntercalibration_Stat103: 2.24766788e-05 + syst_JES_EtaIntercalibration_Stat104: 8.10539365e-06 + syst_JES_EtaIntercalibration_Stat105: 4.90637572e-14 + syst_JES_EtaIntercalibration_Stat106: 5.95305863e-14 + syst_JES_EtaIntercalibration_Stat107: 5.95305863e-14 + syst_JES_EtaIntercalibration_Stat108: 5.95305863e-14 + syst_JES_EtaIntercalibration_Stat109: 5.95305863e-14 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 1.4997920755891465e-11 - syst_JES_EtaIntercalibration_Stat111: 1.0581638436461528e-05 - syst_JES_EtaIntercalibration_Stat112: 4.631323813986666e-05 - syst_JES_EtaIntercalibration_Stat113: 0.00011138508607529108 - syst_JES_EtaIntercalibration_Stat114: 5.3881742926059845e-05 - syst_JES_EtaIntercalibration_Stat115: 7.624988641871869e-06 - syst_JES_EtaIntercalibration_Stat116: 3.2534590551425527e-10 - syst_JES_EtaIntercalibration_Stat117: 5.953058625614231e-14 - syst_JES_EtaIntercalibration_Stat118: 5.953058625614231e-14 - syst_JES_EtaIntercalibration_Stat119: 5.953058625614231e-14 + syst_JES_EtaIntercalibration_Stat110: 1.49979208e-11 + syst_JES_EtaIntercalibration_Stat111: 1.05816384e-05 + syst_JES_EtaIntercalibration_Stat112: 4.63132381e-05 + syst_JES_EtaIntercalibration_Stat113: 1.11385086e-04 + syst_JES_EtaIntercalibration_Stat114: 5.38817429e-05 + syst_JES_EtaIntercalibration_Stat115: 7.62498864e-06 + syst_JES_EtaIntercalibration_Stat116: 3.25345906e-10 + syst_JES_EtaIntercalibration_Stat117: 5.95305863e-14 + syst_JES_EtaIntercalibration_Stat118: 5.95305863e-14 + syst_JES_EtaIntercalibration_Stat119: 5.95305863e-14 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 8.743392476607693e-08 - syst_JES_EtaIntercalibration_Stat121: 9.626653974772337e-05 - syst_JES_EtaIntercalibration_Stat122: 0.00011770069530380864 - syst_JES_EtaIntercalibration_Stat123: 1.826202069870692e-05 - syst_JES_EtaIntercalibration_Stat124: 1.6626541281938345e-05 - syst_JES_EtaIntercalibration_Stat125: 4.856670464423132e-10 - syst_JES_EtaIntercalibration_Stat126: 5.953058625614231e-14 - syst_JES_EtaIntercalibration_Stat127: 5.953058625614231e-14 - syst_JES_EtaIntercalibration_Stat128: 5.953058625614231e-14 - syst_JES_EtaIntercalibration_Stat129: 2.6073816809205362e-05 + syst_JES_EtaIntercalibration_Stat120: 8.74339248e-08 + syst_JES_EtaIntercalibration_Stat121: 9.62665397e-05 + syst_JES_EtaIntercalibration_Stat122: 1.17700695e-04 + syst_JES_EtaIntercalibration_Stat123: 1.82620207e-05 + syst_JES_EtaIntercalibration_Stat124: 1.66265413e-05 + syst_JES_EtaIntercalibration_Stat125: 4.85667046e-10 + syst_JES_EtaIntercalibration_Stat126: 5.95305863e-14 + syst_JES_EtaIntercalibration_Stat127: 5.95305863e-14 + syst_JES_EtaIntercalibration_Stat128: 5.95305863e-14 + syst_JES_EtaIntercalibration_Stat129: 2.60738168e-05 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 0.00014720663945624193 - syst_JES_EtaIntercalibration_Stat131: 0.0008984004786285457 - syst_JES_EtaIntercalibration_Stat132: 0.0010358306847646484 - syst_JES_EtaIntercalibration_Stat133: 0.0003136488163535772 - syst_JES_EtaIntercalibration_Stat134: 9.977046055822335e-06 - syst_JES_EtaIntercalibration_Stat135: 3.253657442018136e-10 + syst_JES_EtaIntercalibration_Stat130: 1.47206639e-04 + syst_JES_EtaIntercalibration_Stat131: 8.98400479e-04 + syst_JES_EtaIntercalibration_Stat132: 1.03583068e-03 + syst_JES_EtaIntercalibration_Stat133: 3.13648816e-04 + syst_JES_EtaIntercalibration_Stat134: 9.97704606e-06 + syst_JES_EtaIntercalibration_Stat135: 3.25365744e-10 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 syst_JES_EtaIntercalibration_Stat138: 0.0 - syst_JES_EtaIntercalibration_Stat139: 8.976456539191844e-05 - syst_JES_EtaIntercalibration_Stat14: 1.332813652124812e-08 - syst_JES_EtaIntercalibration_Stat140: 0.00032452415934718944 - syst_JES_EtaIntercalibration_Stat141: 0.0011730216792540536 - syst_JES_EtaIntercalibration_Stat142: 0.0007523719293009276 - syst_JES_EtaIntercalibration_Stat143: 0.0001683957252893899 - syst_JES_EtaIntercalibration_Stat144: 2.1732656602449687e-06 + syst_JES_EtaIntercalibration_Stat139: 8.97645654e-05 + syst_JES_EtaIntercalibration_Stat14: 1.33281365e-08 + syst_JES_EtaIntercalibration_Stat140: 3.24524159e-04 + syst_JES_EtaIntercalibration_Stat141: 1.17302168e-03 + syst_JES_EtaIntercalibration_Stat142: 7.52371929e-04 + syst_JES_EtaIntercalibration_Stat143: 1.68395725e-04 + syst_JES_EtaIntercalibration_Stat144: 2.17326566e-06 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 3.3313453543576056e-06 - syst_JES_EtaIntercalibration_Stat148: 0.00024074004652321557 - syst_JES_EtaIntercalibration_Stat149: 0.0012950370757240889 - syst_JES_EtaIntercalibration_Stat15: 1.3302201962386204e-08 - syst_JES_EtaIntercalibration_Stat150: 0.0012845433692561727 - syst_JES_EtaIntercalibration_Stat151: 0.00042603752792447756 - syst_JES_EtaIntercalibration_Stat152: 5.983341878081178e-06 + syst_JES_EtaIntercalibration_Stat147: 3.33134535e-06 + syst_JES_EtaIntercalibration_Stat148: 2.40740047e-04 + syst_JES_EtaIntercalibration_Stat149: 1.29503708e-03 + syst_JES_EtaIntercalibration_Stat15: 1.33022020e-08 + syst_JES_EtaIntercalibration_Stat150: 1.28454337e-03 + syst_JES_EtaIntercalibration_Stat151: 4.26037528e-04 + syst_JES_EtaIntercalibration_Stat152: 5.98334188e-06 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 syst_JES_EtaIntercalibration_Stat156: 0.0 - syst_JES_EtaIntercalibration_Stat157: 6.3913419561153196e-06 - syst_JES_EtaIntercalibration_Stat158: 0.0004809702797470962 - syst_JES_EtaIntercalibration_Stat159: 0.0019426746382243216 - syst_JES_EtaIntercalibration_Stat16: 1.325028414552012e-08 - syst_JES_EtaIntercalibration_Stat160: 0.0012626453500488568 - syst_JES_EtaIntercalibration_Stat161: 0.00022200492674713323 - syst_JES_EtaIntercalibration_Stat162: 2.1824811096719714e-06 + syst_JES_EtaIntercalibration_Stat157: 6.39134196e-06 + syst_JES_EtaIntercalibration_Stat158: 4.80970280e-04 + syst_JES_EtaIntercalibration_Stat159: 1.94267464e-03 + syst_JES_EtaIntercalibration_Stat16: 1.32502841e-08 + syst_JES_EtaIntercalibration_Stat160: 1.26264535e-03 + syst_JES_EtaIntercalibration_Stat161: 2.22004927e-04 + syst_JES_EtaIntercalibration_Stat162: 2.18248111e-06 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 7.827479318401296e-06 - syst_JES_EtaIntercalibration_Stat166: 0.0007710774069443352 - syst_JES_EtaIntercalibration_Stat167: 0.002959972086017029 - syst_JES_EtaIntercalibration_Stat168: 0.0033354402093276983 - syst_JES_EtaIntercalibration_Stat169: 0.0009660533253915128 - syst_JES_EtaIntercalibration_Stat17: 4.9346127507637315e-14 - syst_JES_EtaIntercalibration_Stat170: 2.7510598448597954e-05 + syst_JES_EtaIntercalibration_Stat165: 7.82747932e-06 + syst_JES_EtaIntercalibration_Stat166: 7.71077407e-04 + syst_JES_EtaIntercalibration_Stat167: 2.95997209e-03 + syst_JES_EtaIntercalibration_Stat168: 3.33544021e-03 + syst_JES_EtaIntercalibration_Stat169: 9.66053325e-04 + syst_JES_EtaIntercalibration_Stat17: 4.93461275e-14 + syst_JES_EtaIntercalibration_Stat170: 2.75105984e-05 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 - syst_JES_EtaIntercalibration_Stat175: 7.187811419340382e-05 - syst_JES_EtaIntercalibration_Stat176: 0.001165848729467078 - syst_JES_EtaIntercalibration_Stat177: 0.004699539631708621 - syst_JES_EtaIntercalibration_Stat178: 0.0035554837575216118 - syst_JES_EtaIntercalibration_Stat179: 0.0006032550766466869 + syst_JES_EtaIntercalibration_Stat175: 7.18781142e-05 + syst_JES_EtaIntercalibration_Stat176: 1.16584873e-03 + syst_JES_EtaIntercalibration_Stat177: 4.69953963e-03 + syst_JES_EtaIntercalibration_Stat178: 3.55548376e-03 + syst_JES_EtaIntercalibration_Stat179: 6.03255077e-04 syst_JES_EtaIntercalibration_Stat18: 0.0 - syst_JES_EtaIntercalibration_Stat180: 1.951071100441803e-05 + syst_JES_EtaIntercalibration_Stat180: 1.95107110e-05 syst_JES_EtaIntercalibration_Stat181: 0.0 - syst_JES_EtaIntercalibration_Stat182: 3.893959552948644e-05 - syst_JES_EtaIntercalibration_Stat183: 0.0019791136905190666 - syst_JES_EtaIntercalibration_Stat184: 0.008795628274887474 - syst_JES_EtaIntercalibration_Stat185: 0.012340369564968466 - syst_JES_EtaIntercalibration_Stat186: 0.0028448062653720373 - syst_JES_EtaIntercalibration_Stat187: 8.525582135549456e-05 + syst_JES_EtaIntercalibration_Stat182: 3.89395955e-05 + syst_JES_EtaIntercalibration_Stat183: 1.97911369e-03 + syst_JES_EtaIntercalibration_Stat184: 8.79562827e-03 + syst_JES_EtaIntercalibration_Stat185: 1.23403696e-02 + syst_JES_EtaIntercalibration_Stat186: 2.84480627e-03 + syst_JES_EtaIntercalibration_Stat187: 8.52558214e-05 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 - syst_JES_EtaIntercalibration_Stat192: 4.9455548894390524e-05 - syst_JES_EtaIntercalibration_Stat193: 0.0045451178202550475 - syst_JES_EtaIntercalibration_Stat194: 0.01433580024798058 - syst_JES_EtaIntercalibration_Stat195: 0.009777149277780308 - syst_JES_EtaIntercalibration_Stat196: 0.0017711625419480845 - syst_JES_EtaIntercalibration_Stat197: 2.2509125327297813e-05 - syst_JES_EtaIntercalibration_Stat198: 0.001215034265977713 - syst_JES_EtaIntercalibration_Stat199: 0.005982060347405399 + syst_JES_EtaIntercalibration_Stat192: 4.94555489e-05 + syst_JES_EtaIntercalibration_Stat193: 4.54511782e-03 + syst_JES_EtaIntercalibration_Stat194: 1.43358002e-02 + syst_JES_EtaIntercalibration_Stat195: 9.77714928e-03 + syst_JES_EtaIntercalibration_Stat196: 1.77116254e-03 + syst_JES_EtaIntercalibration_Stat197: 2.25091253e-05 + syst_JES_EtaIntercalibration_Stat198: 1.21503427e-03 + syst_JES_EtaIntercalibration_Stat199: 5.98206035e-03 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 0.007767747228122192 - syst_JES_EtaIntercalibration_Stat201: 0.002083198502303609 - syst_JES_EtaIntercalibration_Stat202: 0.00013452155366334422 + syst_JES_EtaIntercalibration_Stat200: 7.76774723e-03 + syst_JES_EtaIntercalibration_Stat201: 2.08319850e-03 + syst_JES_EtaIntercalibration_Stat202: 1.34521554e-04 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 - syst_JES_EtaIntercalibration_Stat207: 3.728157393069665e-05 - syst_JES_EtaIntercalibration_Stat208: 0.003339414132748438 - syst_JES_EtaIntercalibration_Stat209: 0.009353987104438407 + syst_JES_EtaIntercalibration_Stat207: 3.72815739e-05 + syst_JES_EtaIntercalibration_Stat208: 3.33941413e-03 + syst_JES_EtaIntercalibration_Stat209: 9.35398710e-03 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 0.005329100369668411 - syst_JES_EtaIntercalibration_Stat211: 0.0013653617542614851 - syst_JES_EtaIntercalibration_Stat212: 0.000682682371238631 - syst_JES_EtaIntercalibration_Stat213: 0.0001995726120989551 - syst_JES_EtaIntercalibration_Stat214: 0.00033991126415580875 - syst_JES_EtaIntercalibration_Stat215: 1.3285831249869163e-05 + syst_JES_EtaIntercalibration_Stat210: 5.32910037e-03 + syst_JES_EtaIntercalibration_Stat211: 1.36536175e-03 + syst_JES_EtaIntercalibration_Stat212: 6.82682371e-04 + syst_JES_EtaIntercalibration_Stat213: 1.99572612e-04 + syst_JES_EtaIntercalibration_Stat214: 3.39911264e-04 + syst_JES_EtaIntercalibration_Stat215: 1.32858312e-05 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 syst_JES_EtaIntercalibration_Stat219: 0.0 - syst_JES_EtaIntercalibration_Stat22: 5.953058625614231e-14 - syst_JES_EtaIntercalibration_Stat220: 5.378336629868081e-06 - syst_JES_EtaIntercalibration_Stat221: 0.0001712358954045559 - syst_JES_EtaIntercalibration_Stat222: 0.00023475789124116788 - syst_JES_EtaIntercalibration_Stat223: 0.00035502733345476375 - syst_JES_EtaIntercalibration_Stat224: 0.0002575812299062181 - syst_JES_EtaIntercalibration_Stat225: 0.0003797111369185792 - syst_JES_EtaIntercalibration_Stat226: 9.412630171742645e-05 - syst_JES_EtaIntercalibration_Stat227: 1.5595440487527118e-06 + syst_JES_EtaIntercalibration_Stat22: 5.95305863e-14 + syst_JES_EtaIntercalibration_Stat220: 5.37833663e-06 + syst_JES_EtaIntercalibration_Stat221: 1.71235895e-04 + syst_JES_EtaIntercalibration_Stat222: 2.34757891e-04 + syst_JES_EtaIntercalibration_Stat223: 3.55027333e-04 + syst_JES_EtaIntercalibration_Stat224: 2.57581230e-04 + syst_JES_EtaIntercalibration_Stat225: 3.79711137e-04 + syst_JES_EtaIntercalibration_Stat226: 9.41263017e-05 + syst_JES_EtaIntercalibration_Stat227: 1.55954405e-06 syst_JES_EtaIntercalibration_Stat228: 0.0 syst_JES_EtaIntercalibration_Stat229: 0.0 - syst_JES_EtaIntercalibration_Stat23: 5.953058625614231e-14 + syst_JES_EtaIntercalibration_Stat23: 5.95305863e-14 syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 - syst_JES_EtaIntercalibration_Stat232: 3.077074259747398e-06 - syst_JES_EtaIntercalibration_Stat233: 0.00016393916493224583 - syst_JES_EtaIntercalibration_Stat234: 0.0003895497015786304 - syst_JES_EtaIntercalibration_Stat235: 0.00046350647244671785 - syst_JES_EtaIntercalibration_Stat236: 1.1464268958376717e-06 - syst_JES_EtaIntercalibration_Stat237: 6.492129980792128e-07 - syst_JES_EtaIntercalibration_Stat238: 6.335841854086952e-11 + syst_JES_EtaIntercalibration_Stat232: 3.07707426e-06 + syst_JES_EtaIntercalibration_Stat233: 1.63939165e-04 + syst_JES_EtaIntercalibration_Stat234: 3.89549702e-04 + syst_JES_EtaIntercalibration_Stat235: 4.63506472e-04 + syst_JES_EtaIntercalibration_Stat236: 1.14642690e-06 + syst_JES_EtaIntercalibration_Stat237: 6.49212998e-07 + syst_JES_EtaIntercalibration_Stat238: 6.33584185e-11 syst_JES_EtaIntercalibration_Stat239: 0.0 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 - syst_JES_EtaIntercalibration_Stat243: 8.789767517261193e-09 - syst_JES_EtaIntercalibration_Stat244: 3.3484657930909195e-07 - syst_JES_EtaIntercalibration_Stat245: 3.054745979619255e-06 - syst_JES_EtaIntercalibration_Stat25: 4.89131148057451e-14 - syst_JES_EtaIntercalibration_Stat26: 1.0754181454206545e-11 - syst_JES_EtaIntercalibration_Stat27: 1.1185250042243134e-08 - syst_JES_EtaIntercalibration_Stat28: 1.3803427227623582e-05 - syst_JES_EtaIntercalibration_Stat29: 1.238118721084533e-08 + syst_JES_EtaIntercalibration_Stat243: 8.78976752e-09 + syst_JES_EtaIntercalibration_Stat244: 3.34846579e-07 + syst_JES_EtaIntercalibration_Stat245: 3.05474598e-06 + syst_JES_EtaIntercalibration_Stat25: 4.89131148e-14 + syst_JES_EtaIntercalibration_Stat26: 1.07541815e-11 + syst_JES_EtaIntercalibration_Stat27: 1.11852500e-08 + syst_JES_EtaIntercalibration_Stat28: 1.38034272e-05 + syst_JES_EtaIntercalibration_Stat29: 1.23811872e-08 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 6.276877840286124e-13 + syst_JES_EtaIntercalibration_Stat30: 6.27687784e-13 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 8.268747426303454e-14 - syst_JES_EtaIntercalibration_Stat36: 1.2952507285644546e-08 - syst_JES_EtaIntercalibration_Stat37: 9.458520708708295e-06 - syst_JES_EtaIntercalibration_Stat38: 9.450717157567207e-06 - syst_JES_EtaIntercalibration_Stat39: 4.917722254001338e-10 - syst_JES_EtaIntercalibration_Stat4: 6.706500726906693e-14 - syst_JES_EtaIntercalibration_Stat40: 2.840563324412959e-14 + syst_JES_EtaIntercalibration_Stat35: 8.26874743e-14 + syst_JES_EtaIntercalibration_Stat36: 1.29525073e-08 + syst_JES_EtaIntercalibration_Stat37: 9.45852071e-06 + syst_JES_EtaIntercalibration_Stat38: 9.45071716e-06 + syst_JES_EtaIntercalibration_Stat39: 4.91772225e-10 + syst_JES_EtaIntercalibration_Stat4: 6.70650073e-14 + syst_JES_EtaIntercalibration_Stat40: 2.84056332e-14 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 - syst_JES_EtaIntercalibration_Stat44: 5.953058625614231e-14 + syst_JES_EtaIntercalibration_Stat44: 5.95305863e-14 syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 - syst_JES_EtaIntercalibration_Stat47: 4.893043531382078e-14 - syst_JES_EtaIntercalibration_Stat48: 5.687719402361547e-10 - syst_JES_EtaIntercalibration_Stat49: 3.12421638175079e-08 - syst_JES_EtaIntercalibration_Stat5: 9.821045209141438e-11 - syst_JES_EtaIntercalibration_Stat50: 3.6332900370979197e-06 - syst_JES_EtaIntercalibration_Stat51: 7.456072584491114e-06 - syst_JES_EtaIntercalibration_Stat52: 8.49369598408137e-11 + syst_JES_EtaIntercalibration_Stat47: 4.89304353e-14 + syst_JES_EtaIntercalibration_Stat48: 5.68771940e-10 + syst_JES_EtaIntercalibration_Stat49: 3.12421638e-08 + syst_JES_EtaIntercalibration_Stat5: 9.82104521e-11 + syst_JES_EtaIntercalibration_Stat50: 3.63329004e-06 + syst_JES_EtaIntercalibration_Stat51: 7.45607258e-06 + syst_JES_EtaIntercalibration_Stat52: 8.49369598e-11 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 syst_JES_EtaIntercalibration_Stat56: 0.0 - syst_JES_EtaIntercalibration_Stat57: 1.3328151772076152e-08 - syst_JES_EtaIntercalibration_Stat58: 1.2004991844541171e-08 - syst_JES_EtaIntercalibration_Stat59: 3.975414892498643e-05 - syst_JES_EtaIntercalibration_Stat6: 7.805627374369084e-10 - syst_JES_EtaIntercalibration_Stat60: 9.314836183207947e-06 - syst_JES_EtaIntercalibration_Stat61: 2.1871750935603555e-08 - syst_JES_EtaIntercalibration_Stat62: 5.033339646795157e-14 + syst_JES_EtaIntercalibration_Stat57: 1.33281518e-08 + syst_JES_EtaIntercalibration_Stat58: 1.20049918e-08 + syst_JES_EtaIntercalibration_Stat59: 3.97541489e-05 + syst_JES_EtaIntercalibration_Stat6: 7.80562737e-10 + syst_JES_EtaIntercalibration_Stat60: 9.31483618e-06 + syst_JES_EtaIntercalibration_Stat61: 2.18717509e-08 + syst_JES_EtaIntercalibration_Stat62: 5.03333965e-14 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 - syst_JES_EtaIntercalibration_Stat69: 7.096240606828379e-14 - syst_JES_EtaIntercalibration_Stat7: 8.505920600775674e-11 - syst_JES_EtaIntercalibration_Stat70: 1.3791988544078769e-08 - syst_JES_EtaIntercalibration_Stat71: 2.1547576053859862e-05 - syst_JES_EtaIntercalibration_Stat72: 1.8337927990915442e-05 - syst_JES_EtaIntercalibration_Stat73: 3.556018434640068e-06 - syst_JES_EtaIntercalibration_Stat74: 9.969500288379553e-10 + syst_JES_EtaIntercalibration_Stat69: 7.09624061e-14 + syst_JES_EtaIntercalibration_Stat7: 8.50592060e-11 + syst_JES_EtaIntercalibration_Stat70: 1.37919885e-08 + syst_JES_EtaIntercalibration_Stat71: 2.15475761e-05 + syst_JES_EtaIntercalibration_Stat72: 1.83379280e-05 + syst_JES_EtaIntercalibration_Stat73: 3.55601843e-06 + syst_JES_EtaIntercalibration_Stat74: 9.96950029e-10 syst_JES_EtaIntercalibration_Stat75: 0.0 syst_JES_EtaIntercalibration_Stat76: 0.0 syst_JES_EtaIntercalibration_Stat77: 0.0 syst_JES_EtaIntercalibration_Stat78: 0.0 - syst_JES_EtaIntercalibration_Stat79: 1.3114614834464287e-08 + syst_JES_EtaIntercalibration_Stat79: 1.31146148e-08 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 1.5556628064911753e-05 - syst_JES_EtaIntercalibration_Stat81: 2.2617930646944694e-05 - syst_JES_EtaIntercalibration_Stat82: 2.2118982503722908e-05 - syst_JES_EtaIntercalibration_Stat83: 2.2251208658183044e-06 - syst_JES_EtaIntercalibration_Stat84: 2.7472576781219486e-14 - syst_JES_EtaIntercalibration_Stat85: 5.953058625614231e-14 - syst_JES_EtaIntercalibration_Stat86: 5.953058625614231e-14 - syst_JES_EtaIntercalibration_Stat87: 5.953058625614231e-14 - syst_JES_EtaIntercalibration_Stat88: 5.953058625614231e-14 - syst_JES_EtaIntercalibration_Stat89: 5.953058625614231e-14 + syst_JES_EtaIntercalibration_Stat80: 1.55566281e-05 + syst_JES_EtaIntercalibration_Stat81: 2.26179306e-05 + syst_JES_EtaIntercalibration_Stat82: 2.21189825e-05 + syst_JES_EtaIntercalibration_Stat83: 2.22512087e-06 + syst_JES_EtaIntercalibration_Stat84: 2.74725768e-14 + syst_JES_EtaIntercalibration_Stat85: 5.95305863e-14 + syst_JES_EtaIntercalibration_Stat86: 5.95305863e-14 + syst_JES_EtaIntercalibration_Stat87: 5.95305863e-14 + syst_JES_EtaIntercalibration_Stat88: 5.95305863e-14 + syst_JES_EtaIntercalibration_Stat89: 5.95305863e-14 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 1.7318970531760828e-06 - syst_JES_EtaIntercalibration_Stat92: 2.113004639725147e-05 - syst_JES_EtaIntercalibration_Stat93: 2.060592115752169e-05 - syst_JES_EtaIntercalibration_Stat94: 3.6618272761013726e-06 - syst_JES_EtaIntercalibration_Stat95: 1.1243770842115202e-08 - syst_JES_EtaIntercalibration_Stat96: 3.2534590551425527e-10 - syst_JES_EtaIntercalibration_Stat97: 5.953058625614231e-14 - syst_JES_EtaIntercalibration_Stat98: 5.953058625614231e-14 - syst_JES_EtaIntercalibration_Stat99: 5.953058625614231e-14 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.018616210677793697 - syst_JES_Flavour_Comp: 0.061408678539763416 - syst_JES_Flavour_Response: 0.09039502240167874 - syst_JES_Gjet_Generator: 0.14597098170526907 - syst_JES_Gjet_OOC: 0.1077287343284047 - syst_JES_Gjet_Purity: 0.037055421668090616 - syst_JES_Gjet_Stat1: 4.064257219960371e-10 - syst_JES_Gjet_Stat10: 0.005195861117274017 - syst_JES_Gjet_Stat11: 0.009190521462354571 - syst_JES_Gjet_Stat12: 0.020890234560674514 - syst_JES_Gjet_Stat13: 0.018361764621081494 - syst_JES_Gjet_Stat14: 0.0037823144700037835 - syst_JES_Gjet_Stat15: 0.0021635343768935124 - syst_JES_Gjet_Stat2: 1.603013022404996e-09 - syst_JES_Gjet_Stat3: 1.932968701246867e-12 - syst_JES_Gjet_Stat4: 0.00037491015923818335 - syst_JES_Gjet_Stat5: 0.00020793072325380583 - syst_JES_Gjet_Stat6: 0.0010044107824988737 - syst_JES_Gjet_Stat7: 0.0014714283808599045 - syst_JES_Gjet_Stat8: 0.000806904980465482 - syst_JES_Gjet_Stat9: 0.002407193542281135 - syst_JES_Gjet_Veto: 0.06581509306382541 - syst_JES_Gjet_dPhi: 0.007968077999116223 - syst_JES_LArESZee: 0.2065011561710975 - syst_JES_LArEsmear: 0.0157009259281101 - syst_JES_LAr_JVT: 0.02023901368644233 - syst_JES_MJB_Alpha: 0.0014812802165694377 - syst_JES_MJB_Asym: 0.00601204247739485 - syst_JES_MJB_Beta: 0.0008463116846056186 - syst_JES_MJB_Fragmentation: 0.020229142344647243 - syst_JES_MJB_Stat1: 0.0006258765593150137 - syst_JES_MJB_Stat10: 7.654485662015444e-06 - syst_JES_MJB_Stat11: 5.749004223232119e-12 - syst_JES_MJB_Stat12: 3.6935983471406305e-06 - syst_JES_MJB_Stat13: 2.2473359228206184e-06 - syst_JES_MJB_Stat14: 1.7978687382564948e-07 - syst_JES_MJB_Stat15: 9.355682777472326e-10 - syst_JES_MJB_Stat16: 4.4063372544552616e-14 - syst_JES_MJB_Stat2: 0.0020230353432404485 - syst_JES_MJB_Stat3: 0.0019017917867106273 - syst_JES_MJB_Stat4: 0.0006426774521484319 + syst_JES_EtaIntercalibration_Stat91: 1.73189705e-06 + syst_JES_EtaIntercalibration_Stat92: 2.11300464e-05 + syst_JES_EtaIntercalibration_Stat93: 2.06059212e-05 + syst_JES_EtaIntercalibration_Stat94: 3.66182728e-06 + syst_JES_EtaIntercalibration_Stat95: 1.12437708e-08 + syst_JES_EtaIntercalibration_Stat96: 3.25345906e-10 + syst_JES_EtaIntercalibration_Stat97: 5.95305863e-14 + syst_JES_EtaIntercalibration_Stat98: 5.95305863e-14 + syst_JES_EtaIntercalibration_Stat99: 5.95305863e-14 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.86162107e-02 + syst_JES_Flavour_Comp: 6.14086785e-02 + syst_JES_Flavour_Response: 9.03950224e-02 + syst_JES_Gjet_Generator: 1.45970982e-01 + syst_JES_Gjet_OOC: 1.07728734e-01 + syst_JES_Gjet_Purity: 3.70554217e-02 + syst_JES_Gjet_Stat1: 4.06425722e-10 + syst_JES_Gjet_Stat10: 5.19586112e-03 + syst_JES_Gjet_Stat11: 9.19052146e-03 + syst_JES_Gjet_Stat12: 2.08902346e-02 + syst_JES_Gjet_Stat13: 1.83617646e-02 + syst_JES_Gjet_Stat14: 3.78231447e-03 + syst_JES_Gjet_Stat15: 2.16353438e-03 + syst_JES_Gjet_Stat2: 1.60301302e-09 + syst_JES_Gjet_Stat3: 1.93296870e-12 + syst_JES_Gjet_Stat4: 3.74910159e-04 + syst_JES_Gjet_Stat5: 2.07930723e-04 + syst_JES_Gjet_Stat6: 1.00441078e-03 + syst_JES_Gjet_Stat7: 1.47142838e-03 + syst_JES_Gjet_Stat8: 8.06904980e-04 + syst_JES_Gjet_Stat9: 2.40719354e-03 + syst_JES_Gjet_Veto: 6.58150931e-02 + syst_JES_Gjet_dPhi: 7.96807800e-03 + syst_JES_LArESZee: 2.06501156e-01 + syst_JES_LArEsmear: 1.57009259e-02 + syst_JES_LAr_JVT: 2.02390137e-02 + syst_JES_MJB_Alpha: 1.48128022e-03 + syst_JES_MJB_Asym: 6.01204248e-03 + syst_JES_MJB_Beta: 8.46311685e-04 + syst_JES_MJB_Fragmentation: 2.02291423e-02 + syst_JES_MJB_Stat1: 6.25876559e-04 + syst_JES_MJB_Stat10: 7.65448566e-06 + syst_JES_MJB_Stat11: 5.74900422e-12 + syst_JES_MJB_Stat12: 3.69359835e-06 + syst_JES_MJB_Stat13: 2.24733592e-06 + syst_JES_MJB_Stat14: 1.79786874e-07 + syst_JES_MJB_Stat15: 9.35568278e-10 + syst_JES_MJB_Stat16: 4.40633725e-14 + syst_JES_MJB_Stat2: 2.02303534e-03 + syst_JES_MJB_Stat3: 1.90179179e-03 + syst_JES_MJB_Stat4: 6.42677452e-04 syst_JES_MJB_Stat5: 0.0 - syst_JES_MJB_Stat6: 7.227848019984925e-07 - syst_JES_MJB_Stat7: 1.8143232209283986e-15 - syst_JES_MJB_Stat8: 8.929751549694259e-12 - syst_JES_MJB_Stat9: 5.841604869024265e-06 - syst_JES_MJB_Threshold: 0.008075025572714927 - syst_JES_Pileup_MuOffset: 0.014919001935451311 - syst_JES_Pileup_NPVOffset: 0.0170836961750085 - syst_JES_Pileup_Pt_term: 0.03157760440565434 - syst_JES_Pileup_Rho_topology: 0.04732506391966101 - syst_JES_PunchThrough_MC15: 0.005552952795585426 + syst_JES_MJB_Stat6: 7.22784802e-07 + syst_JES_MJB_Stat7: 1.81432322e-15 + syst_JES_MJB_Stat8: 8.92975155e-12 + syst_JES_MJB_Stat9: 5.84160487e-06 + syst_JES_MJB_Threshold: 8.07502557e-03 + syst_JES_Pileup_MuOffset: 1.49190019e-02 + syst_JES_Pileup_NPVOffset: 1.70836962e-02 + syst_JES_Pileup_Pt_term: 3.15776044e-02 + syst_JES_Pileup_Rho_topology: 4.73250639e-02 + syst_JES_PunchThrough_MC15: 5.55295280e-03 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.12033510990147471 - syst_JES_Zjet_MuScale: 0.007163734134513927 - syst_JES_Zjet_MuSmearID: 0.001164062833355657 - syst_JES_Zjet_MuSmearMS: 0.028941672377386905 - syst_JES_Zjet_OOC: 0.047580134510108306 - syst_JES_Zjet_Stat1: 0.001203194572793611 - syst_JES_Zjet_Stat10: 0.004000203008285954 - syst_JES_Zjet_Stat11: 0.004183002151565308 - syst_JES_Zjet_Stat12: 0.03568520246544778 - syst_JES_Zjet_Stat13: 0.02611368032277335 - syst_JES_Zjet_Stat2: 2.548712763337603e-13 - syst_JES_Zjet_Stat3: 0.0009255914690077906 - syst_JES_Zjet_Stat4: 0.0009246537568192755 - syst_JES_Zjet_Stat5: 0.0011081691973701489 - syst_JES_Zjet_Stat6: 0.0008252487867304017 - syst_JES_Zjet_Stat7: 0.0006648912448664068 - syst_JES_Zjet_Stat8: 0.0008397817261050635 - syst_JES_Zjet_Stat9: 0.001948260955313738 - syst_JES_Zjet_Veto: 0.009800116121761007 - syst_JES_Zjet_dPhi: 0.00810901231655249 + syst_JES_Zjet_MC: 1.20335110e-01 + syst_JES_Zjet_MuScale: 7.16373413e-03 + syst_JES_Zjet_MuSmearID: 1.16406283e-03 + syst_JES_Zjet_MuSmearMS: 2.89416724e-02 + syst_JES_Zjet_OOC: 4.75801345e-02 + syst_JES_Zjet_Stat1: 1.20319457e-03 + syst_JES_Zjet_Stat10: 4.00020301e-03 + syst_JES_Zjet_Stat11: 4.18300215e-03 + syst_JES_Zjet_Stat12: 3.56852025e-02 + syst_JES_Zjet_Stat13: 2.61136803e-02 + syst_JES_Zjet_Stat2: 2.54871276e-13 + syst_JES_Zjet_Stat3: 9.25591469e-04 + syst_JES_Zjet_Stat4: 9.24653757e-04 + syst_JES_Zjet_Stat5: 1.10816920e-03 + syst_JES_Zjet_Stat6: 8.25248787e-04 + syst_JES_Zjet_Stat7: 6.64891245e-04 + syst_JES_Zjet_Stat8: 8.39781726e-04 + syst_JES_Zjet_Stat9: 1.94826096e-03 + syst_JES_Zjet_Veto: 9.80011612e-03 + syst_JES_Zjet_dPhi: 8.10901232e-03 syst_PRW: 0.010503 - syst_Unfolding_bias: 1.798e-08 - syst_cleaning: 0.03713516931427673 + syst_Unfolding_bias: 1.79800000e-08 + syst_cleaning: 3.71351693e-02 syst_lumi: 0.1457 - stat: 0.04533 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.039258905995964787 - syst_JER_NP1: 0.002134268668654441 - syst_JER_NP2: 0.018198843369840845 - syst_JER_NP3: 0.003043687894643601 - syst_JER_NP4: 4.09351032122798e-05 - syst_JER_NP5: 0.005828483057365785 - syst_JER_NP6: 8.103697350592506e-05 - syst_JER_NP7: 9.623469280877869e-05 - syst_JER_NP8: 0.005617932960618167 - syst_JES_EtaIntercalibration_Modelling: 0.15928580445224869 - syst_JES_EtaIntercalibration_NonClosure: 0.0007052421086938868 - syst_JES_EtaIntercalibration_Stat0: 7.893821555495158e-15 + syst_JER_NP0: 3.92589060e-02 + syst_JER_NP1: 2.13426867e-03 + syst_JER_NP2: 1.81988434e-02 + syst_JER_NP3: 3.04368789e-03 + syst_JER_NP4: 4.09351032e-05 + syst_JER_NP5: 5.82848306e-03 + syst_JER_NP6: 8.10369735e-05 + syst_JER_NP7: 9.62346928e-05 + syst_JER_NP8: 5.61793296e-03 + syst_JES_EtaIntercalibration_Modelling: 1.59285804e-01 + syst_JES_EtaIntercalibration_NonClosure: 7.05242109e-04 + syst_JES_EtaIntercalibration_Stat0: 7.89382156e-15 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 1.6154324461095457e-09 - syst_JES_EtaIntercalibration_Stat101: 1.4901787032097863e-05 - syst_JES_EtaIntercalibration_Stat102: 1.264847748742907e-05 - syst_JES_EtaIntercalibration_Stat103: 9.091749047900518e-06 - syst_JES_EtaIntercalibration_Stat104: 1.9741780758267476e-06 - syst_JES_EtaIntercalibration_Stat105: 7.0023390377787344e-15 - syst_JES_EtaIntercalibration_Stat106: 7.892955530091373e-15 - syst_JES_EtaIntercalibration_Stat107: 7.892955530091373e-15 - syst_JES_EtaIntercalibration_Stat108: 7.892955530091373e-15 - syst_JES_EtaIntercalibration_Stat109: 7.892955530091373e-15 + syst_JES_EtaIntercalibration_Stat100: 1.61543245e-09 + syst_JES_EtaIntercalibration_Stat101: 1.49017870e-05 + syst_JES_EtaIntercalibration_Stat102: 1.26484775e-05 + syst_JES_EtaIntercalibration_Stat103: 9.09174905e-06 + syst_JES_EtaIntercalibration_Stat104: 1.97417808e-06 + syst_JES_EtaIntercalibration_Stat105: 7.00233904e-15 + syst_JES_EtaIntercalibration_Stat106: 7.89295553e-15 + syst_JES_EtaIntercalibration_Stat107: 7.89295553e-15 + syst_JES_EtaIntercalibration_Stat108: 7.89295553e-15 + syst_JES_EtaIntercalibration_Stat109: 7.89295553e-15 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 1.7729463387254563e-12 - syst_JES_EtaIntercalibration_Stat111: 3.239502098702824e-06 - syst_JES_EtaIntercalibration_Stat112: 2.501154683341276e-05 - syst_JES_EtaIntercalibration_Stat113: 2.643097516173022e-05 - syst_JES_EtaIntercalibration_Stat114: 3.7475555272737454e-05 - syst_JES_EtaIntercalibration_Stat115: 1.4654813138586073e-06 - syst_JES_EtaIntercalibration_Stat116: 3.7730096591563966e-11 - syst_JES_EtaIntercalibration_Stat117: 7.892955530091373e-15 - syst_JES_EtaIntercalibration_Stat118: 7.892955530091373e-15 - syst_JES_EtaIntercalibration_Stat119: 7.892955530091373e-15 + syst_JES_EtaIntercalibration_Stat110: 1.77294634e-12 + syst_JES_EtaIntercalibration_Stat111: 3.23950210e-06 + syst_JES_EtaIntercalibration_Stat112: 2.50115468e-05 + syst_JES_EtaIntercalibration_Stat113: 2.64309752e-05 + syst_JES_EtaIntercalibration_Stat114: 3.74755553e-05 + syst_JES_EtaIntercalibration_Stat115: 1.46548131e-06 + syst_JES_EtaIntercalibration_Stat116: 3.77300966e-11 + syst_JES_EtaIntercalibration_Stat117: 7.89295553e-15 + syst_JES_EtaIntercalibration_Stat118: 7.89295553e-15 + syst_JES_EtaIntercalibration_Stat119: 7.89295553e-15 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 1.2843156738123224e-08 - syst_JES_EtaIntercalibration_Stat121: 2.2592810250165867e-05 - syst_JES_EtaIntercalibration_Stat122: 3.386826833482928e-05 - syst_JES_EtaIntercalibration_Stat123: 2.7450440797917982e-05 - syst_JES_EtaIntercalibration_Stat124: 9.676907602638356e-06 - syst_JES_EtaIntercalibration_Stat125: 5.590193981428551e-11 - syst_JES_EtaIntercalibration_Stat126: 7.892955530091373e-15 - syst_JES_EtaIntercalibration_Stat127: 7.892955530091373e-15 - syst_JES_EtaIntercalibration_Stat128: 7.892955530091373e-15 - syst_JES_EtaIntercalibration_Stat129: 5.635539678398157e-06 + syst_JES_EtaIntercalibration_Stat120: 1.28431567e-08 + syst_JES_EtaIntercalibration_Stat121: 2.25928103e-05 + syst_JES_EtaIntercalibration_Stat122: 3.38682683e-05 + syst_JES_EtaIntercalibration_Stat123: 2.74504408e-05 + syst_JES_EtaIntercalibration_Stat124: 9.67690760e-06 + syst_JES_EtaIntercalibration_Stat125: 5.59019398e-11 + syst_JES_EtaIntercalibration_Stat126: 7.89295553e-15 + syst_JES_EtaIntercalibration_Stat127: 7.89295553e-15 + syst_JES_EtaIntercalibration_Stat128: 7.89295553e-15 + syst_JES_EtaIntercalibration_Stat129: 5.63553968e-06 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 6.362381851948214e-05 - syst_JES_EtaIntercalibration_Stat131: 0.0003012416430376119 - syst_JES_EtaIntercalibration_Stat132: 0.00038122674027407893 - syst_JES_EtaIntercalibration_Stat133: 0.00014379394310957608 - syst_JES_EtaIntercalibration_Stat134: 3.0203686873459667e-06 - syst_JES_EtaIntercalibration_Stat135: 3.7732726842887996e-11 + syst_JES_EtaIntercalibration_Stat130: 6.36238185e-05 + syst_JES_EtaIntercalibration_Stat131: 3.01241643e-04 + syst_JES_EtaIntercalibration_Stat132: 3.81226740e-04 + syst_JES_EtaIntercalibration_Stat133: 1.43793943e-04 + syst_JES_EtaIntercalibration_Stat134: 3.02036869e-06 + syst_JES_EtaIntercalibration_Stat135: 3.77327268e-11 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 syst_JES_EtaIntercalibration_Stat138: 0.0 - syst_JES_EtaIntercalibration_Stat139: 2.5818356972317194e-05 - syst_JES_EtaIntercalibration_Stat14: 1.6315926540106952e-09 - syst_JES_EtaIntercalibration_Stat140: 0.00010902389864153639 - syst_JES_EtaIntercalibration_Stat141: 0.00044245380267322827 - syst_JES_EtaIntercalibration_Stat142: 0.0002575553144472076 - syst_JES_EtaIntercalibration_Stat143: 3.329562746067417e-05 - syst_JES_EtaIntercalibration_Stat144: 3.2776754243670923e-07 + syst_JES_EtaIntercalibration_Stat139: 2.58183570e-05 + syst_JES_EtaIntercalibration_Stat14: 1.63159265e-09 + syst_JES_EtaIntercalibration_Stat140: 1.09023899e-04 + syst_JES_EtaIntercalibration_Stat141: 4.42453803e-04 + syst_JES_EtaIntercalibration_Stat142: 2.57555314e-04 + syst_JES_EtaIntercalibration_Stat143: 3.32956275e-05 + syst_JES_EtaIntercalibration_Stat144: 3.27767542e-07 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 3.8113833118698513e-07 - syst_JES_EtaIntercalibration_Stat148: 7.229723853647523e-05 - syst_JES_EtaIntercalibration_Stat149: 0.0004350688681117048 - syst_JES_EtaIntercalibration_Stat15: 1.6281346181515224e-09 - syst_JES_EtaIntercalibration_Stat150: 0.00043702274540348586 - syst_JES_EtaIntercalibration_Stat151: 0.00014822549949317088 - syst_JES_EtaIntercalibration_Stat152: 8.008848528346631e-07 + syst_JES_EtaIntercalibration_Stat147: 3.81138331e-07 + syst_JES_EtaIntercalibration_Stat148: 7.22972385e-05 + syst_JES_EtaIntercalibration_Stat149: 4.35068868e-04 + syst_JES_EtaIntercalibration_Stat15: 1.62813462e-09 + syst_JES_EtaIntercalibration_Stat150: 4.37022745e-04 + syst_JES_EtaIntercalibration_Stat151: 1.48225499e-04 + syst_JES_EtaIntercalibration_Stat152: 8.00884853e-07 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 syst_JES_EtaIntercalibration_Stat156: 0.0 - syst_JES_EtaIntercalibration_Stat157: 2.130067614108763e-06 - syst_JES_EtaIntercalibration_Stat158: 0.00019500132326474094 - syst_JES_EtaIntercalibration_Stat159: 0.0007602326749094648 - syst_JES_EtaIntercalibration_Stat16: 1.6220783815477373e-09 - syst_JES_EtaIntercalibration_Stat160: 0.0003429257791417845 - syst_JES_EtaIntercalibration_Stat161: 4.45938927993509e-05 - syst_JES_EtaIntercalibration_Stat162: 3.272250336924117e-07 + syst_JES_EtaIntercalibration_Stat157: 2.13006761e-06 + syst_JES_EtaIntercalibration_Stat158: 1.95001323e-04 + syst_JES_EtaIntercalibration_Stat159: 7.60232675e-04 + syst_JES_EtaIntercalibration_Stat16: 1.62207838e-09 + syst_JES_EtaIntercalibration_Stat160: 3.42925779e-04 + syst_JES_EtaIntercalibration_Stat161: 4.45938928e-05 + syst_JES_EtaIntercalibration_Stat162: 3.27225034e-07 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 7.751840104130116e-07 - syst_JES_EtaIntercalibration_Stat166: 0.0003668198842756483 - syst_JES_EtaIntercalibration_Stat167: 0.0012302089690373746 - syst_JES_EtaIntercalibration_Stat168: 0.001398616640648895 - syst_JES_EtaIntercalibration_Stat169: 0.00035118904481774485 - syst_JES_EtaIntercalibration_Stat17: 6.538491798572511e-15 - syst_JES_EtaIntercalibration_Stat170: 4.50298868752743e-06 + syst_JES_EtaIntercalibration_Stat165: 7.75184010e-07 + syst_JES_EtaIntercalibration_Stat166: 3.66819884e-04 + syst_JES_EtaIntercalibration_Stat167: 1.23020897e-03 + syst_JES_EtaIntercalibration_Stat168: 1.39861664e-03 + syst_JES_EtaIntercalibration_Stat169: 3.51189045e-04 + syst_JES_EtaIntercalibration_Stat17: 6.53849180e-15 + syst_JES_EtaIntercalibration_Stat170: 4.50298869e-06 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 - syst_JES_EtaIntercalibration_Stat175: 3.053210891831745e-05 - syst_JES_EtaIntercalibration_Stat176: 0.0005488436389355352 - syst_JES_EtaIntercalibration_Stat177: 0.002048258284494414 - syst_JES_EtaIntercalibration_Stat178: 0.0015448575177018753 - syst_JES_EtaIntercalibration_Stat179: 0.0002077371115135666 + syst_JES_EtaIntercalibration_Stat175: 3.05321089e-05 + syst_JES_EtaIntercalibration_Stat176: 5.48843639e-04 + syst_JES_EtaIntercalibration_Stat177: 2.04825828e-03 + syst_JES_EtaIntercalibration_Stat178: 1.54485752e-03 + syst_JES_EtaIntercalibration_Stat179: 2.07737112e-04 syst_JES_EtaIntercalibration_Stat18: 0.0 - syst_JES_EtaIntercalibration_Stat180: 1.1010549010862005e-05 + syst_JES_EtaIntercalibration_Stat180: 1.10105490e-05 syst_JES_EtaIntercalibration_Stat181: 0.0 - syst_JES_EtaIntercalibration_Stat182: 1.1516693405661194e-05 - syst_JES_EtaIntercalibration_Stat183: 0.0009661223680259142 - syst_JES_EtaIntercalibration_Stat184: 0.004292838687861448 - syst_JES_EtaIntercalibration_Stat185: 0.0063142052548202775 - syst_JES_EtaIntercalibration_Stat186: 0.0014060463559925755 - syst_JES_EtaIntercalibration_Stat187: 3.807449351928401e-05 + syst_JES_EtaIntercalibration_Stat182: 1.15166934e-05 + syst_JES_EtaIntercalibration_Stat183: 9.66122368e-04 + syst_JES_EtaIntercalibration_Stat184: 4.29283869e-03 + syst_JES_EtaIntercalibration_Stat185: 6.31420525e-03 + syst_JES_EtaIntercalibration_Stat186: 1.40604636e-03 + syst_JES_EtaIntercalibration_Stat187: 3.80744935e-05 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 - syst_JES_EtaIntercalibration_Stat192: 2.6980146757708714e-05 - syst_JES_EtaIntercalibration_Stat193: 0.002343291275108581 - syst_JES_EtaIntercalibration_Stat194: 0.007082292337230933 - syst_JES_EtaIntercalibration_Stat195: 0.0046741761840991825 - syst_JES_EtaIntercalibration_Stat196: 0.0008413717534479037 - syst_JES_EtaIntercalibration_Stat197: 5.830900166355106e-06 - syst_JES_EtaIntercalibration_Stat198: 0.0006616138677506692 - syst_JES_EtaIntercalibration_Stat199: 0.00456491979666675 + syst_JES_EtaIntercalibration_Stat192: 2.69801468e-05 + syst_JES_EtaIntercalibration_Stat193: 2.34329128e-03 + syst_JES_EtaIntercalibration_Stat194: 7.08229234e-03 + syst_JES_EtaIntercalibration_Stat195: 4.67417618e-03 + syst_JES_EtaIntercalibration_Stat196: 8.41371753e-04 + syst_JES_EtaIntercalibration_Stat197: 5.83090017e-06 + syst_JES_EtaIntercalibration_Stat198: 6.61613868e-04 + syst_JES_EtaIntercalibration_Stat199: 4.56491980e-03 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 0.005690142594874051 - syst_JES_EtaIntercalibration_Stat201: 0.001513904554455135 - syst_JES_EtaIntercalibration_Stat202: 9.236168943344422e-05 + syst_JES_EtaIntercalibration_Stat200: 5.69014259e-03 + syst_JES_EtaIntercalibration_Stat201: 1.51390455e-03 + syst_JES_EtaIntercalibration_Stat202: 9.23616894e-05 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 - syst_JES_EtaIntercalibration_Stat207: 1.241331188684148e-05 - syst_JES_EtaIntercalibration_Stat208: 0.0022962057290234253 - syst_JES_EtaIntercalibration_Stat209: 0.0061364790189488965 + syst_JES_EtaIntercalibration_Stat207: 1.24133119e-05 + syst_JES_EtaIntercalibration_Stat208: 2.29620573e-03 + syst_JES_EtaIntercalibration_Stat209: 6.13647902e-03 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 0.0037177259218506144 - syst_JES_EtaIntercalibration_Stat211: 0.0008011172620159922 - syst_JES_EtaIntercalibration_Stat212: 0.0006739769144414369 - syst_JES_EtaIntercalibration_Stat213: 0.0005672991626998932 - syst_JES_EtaIntercalibration_Stat214: 0.0002300957685399712 - syst_JES_EtaIntercalibration_Stat215: 7.0707899535695445e-06 + syst_JES_EtaIntercalibration_Stat210: 3.71772592e-03 + syst_JES_EtaIntercalibration_Stat211: 8.01117262e-04 + syst_JES_EtaIntercalibration_Stat212: 6.73976914e-04 + syst_JES_EtaIntercalibration_Stat213: 5.67299163e-04 + syst_JES_EtaIntercalibration_Stat214: 2.30095769e-04 + syst_JES_EtaIntercalibration_Stat215: 7.07078995e-06 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 syst_JES_EtaIntercalibration_Stat219: 0.0 - syst_JES_EtaIntercalibration_Stat22: 7.893821555495158e-15 - syst_JES_EtaIntercalibration_Stat220: 7.622867198108596e-06 - syst_JES_EtaIntercalibration_Stat221: 0.00013260379962504846 - syst_JES_EtaIntercalibration_Stat222: 0.000790196943805783 - syst_JES_EtaIntercalibration_Stat223: 0.0006586397706637521 - syst_JES_EtaIntercalibration_Stat224: 0.00030660313109947195 - syst_JES_EtaIntercalibration_Stat225: 0.0004469304727807223 - syst_JES_EtaIntercalibration_Stat226: 0.00016166984876593408 - syst_JES_EtaIntercalibration_Stat227: 3.6036507877428972e-06 + syst_JES_EtaIntercalibration_Stat22: 7.89382156e-15 + syst_JES_EtaIntercalibration_Stat220: 7.62286720e-06 + syst_JES_EtaIntercalibration_Stat221: 1.32603800e-04 + syst_JES_EtaIntercalibration_Stat222: 7.90196944e-04 + syst_JES_EtaIntercalibration_Stat223: 6.58639771e-04 + syst_JES_EtaIntercalibration_Stat224: 3.06603131e-04 + syst_JES_EtaIntercalibration_Stat225: 4.46930473e-04 + syst_JES_EtaIntercalibration_Stat226: 1.61669849e-04 + syst_JES_EtaIntercalibration_Stat227: 3.60365079e-06 syst_JES_EtaIntercalibration_Stat228: 0.0 syst_JES_EtaIntercalibration_Stat229: 0.0 - syst_JES_EtaIntercalibration_Stat23: 7.893821555495158e-15 + syst_JES_EtaIntercalibration_Stat23: 7.89382156e-15 syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 - syst_JES_EtaIntercalibration_Stat232: 3.805414037920184e-06 - syst_JES_EtaIntercalibration_Stat233: 0.00017843992605615146 - syst_JES_EtaIntercalibration_Stat234: 0.00033134173824014385 - syst_JES_EtaIntercalibration_Stat235: 0.0003196335714533128 - syst_JES_EtaIntercalibration_Stat236: 8.678983160918103e-06 - syst_JES_EtaIntercalibration_Stat237: 1.1453784231859792e-05 - syst_JES_EtaIntercalibration_Stat238: 4.241792427736181e-09 + syst_JES_EtaIntercalibration_Stat232: 3.80541404e-06 + syst_JES_EtaIntercalibration_Stat233: 1.78439926e-04 + syst_JES_EtaIntercalibration_Stat234: 3.31341738e-04 + syst_JES_EtaIntercalibration_Stat235: 3.19633571e-04 + syst_JES_EtaIntercalibration_Stat236: 8.67898316e-06 + syst_JES_EtaIntercalibration_Stat237: 1.14537842e-05 + syst_JES_EtaIntercalibration_Stat238: 4.24179243e-09 syst_JES_EtaIntercalibration_Stat239: 0.0 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 - syst_JES_EtaIntercalibration_Stat243: 1.8050207150265617e-07 - syst_JES_EtaIntercalibration_Stat244: 5.767006936011088e-07 - syst_JES_EtaIntercalibration_Stat245: 1.1453003841787534e-06 - syst_JES_EtaIntercalibration_Stat25: 6.430238623099458e-15 - syst_JES_EtaIntercalibration_Stat26: 1.2808902246094315e-12 - syst_JES_EtaIntercalibration_Stat27: 1.3513419978536152e-09 - syst_JES_EtaIntercalibration_Stat28: 8.50659500660439e-06 - syst_JES_EtaIntercalibration_Stat29: 1.5026016795877741e-09 + syst_JES_EtaIntercalibration_Stat243: 1.80502072e-07 + syst_JES_EtaIntercalibration_Stat244: 5.76700694e-07 + syst_JES_EtaIntercalibration_Stat245: 1.14530038e-06 + syst_JES_EtaIntercalibration_Stat25: 6.43023862e-15 + syst_JES_EtaIntercalibration_Stat26: 1.28089022e-12 + syst_JES_EtaIntercalibration_Stat27: 1.35134200e-09 + syst_JES_EtaIntercalibration_Stat28: 8.50659501e-06 + syst_JES_EtaIntercalibration_Stat29: 1.50260168e-09 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 7.786999843770065e-14 + syst_JES_EtaIntercalibration_Stat30: 7.78699984e-14 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 1.100419466703493e-14 - syst_JES_EtaIntercalibration_Stat36: 1.5863430971498568e-09 - syst_JES_EtaIntercalibration_Stat37: 6.0205844886884075e-06 - syst_JES_EtaIntercalibration_Stat38: 6.016253290720125e-06 - syst_JES_EtaIntercalibration_Stat39: 5.6698743568155906e-11 - syst_JES_EtaIntercalibration_Stat4: 8.81700463592937e-15 - syst_JES_EtaIntercalibration_Stat40: 4.054730940518742e-15 + syst_JES_EtaIntercalibration_Stat35: 1.10041947e-14 + syst_JES_EtaIntercalibration_Stat36: 1.58634310e-09 + syst_JES_EtaIntercalibration_Stat37: 6.02058449e-06 + syst_JES_EtaIntercalibration_Stat38: 6.01625329e-06 + syst_JES_EtaIntercalibration_Stat39: 5.66987436e-11 + syst_JES_EtaIntercalibration_Stat4: 8.81700464e-15 + syst_JES_EtaIntercalibration_Stat40: 4.05473094e-15 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 - syst_JES_EtaIntercalibration_Stat44: 7.893821555495158e-15 + syst_JES_EtaIntercalibration_Stat44: 7.89382156e-15 syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 - syst_JES_EtaIntercalibration_Stat47: 6.4328366993108105e-15 - syst_JES_EtaIntercalibration_Stat48: 6.616158005217227e-11 - syst_JES_EtaIntercalibration_Stat49: 3.970732918177701e-09 - syst_JES_EtaIntercalibration_Stat5: 1.1192140599880793e-11 - syst_JES_EtaIntercalibration_Stat50: 3.6154188321359114e-06 - syst_JES_EtaIntercalibration_Stat51: 1.447420490010041e-06 - syst_JES_EtaIntercalibration_Stat52: 9.664081870902172e-12 + syst_JES_EtaIntercalibration_Stat47: 6.43283670e-15 + syst_JES_EtaIntercalibration_Stat48: 6.61615801e-11 + syst_JES_EtaIntercalibration_Stat49: 3.97073292e-09 + syst_JES_EtaIntercalibration_Stat5: 1.11921406e-11 + syst_JES_EtaIntercalibration_Stat50: 3.61541883e-06 + syst_JES_EtaIntercalibration_Stat51: 1.44742049e-06 + syst_JES_EtaIntercalibration_Stat52: 9.66408187e-12 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 syst_JES_EtaIntercalibration_Stat56: 0.0 - syst_JES_EtaIntercalibration_Stat57: 1.6315946308752866e-09 - syst_JES_EtaIntercalibration_Stat58: 1.4720681411113414e-09 - syst_JES_EtaIntercalibration_Stat59: 2.150920500622931e-05 - syst_JES_EtaIntercalibration_Stat6: 9.050229233975237e-11 - syst_JES_EtaIntercalibration_Stat60: 6.025008501958732e-06 - syst_JES_EtaIntercalibration_Stat61: 2.864768189174824e-09 - syst_JES_EtaIntercalibration_Stat62: 6.6692616345439614e-15 + syst_JES_EtaIntercalibration_Stat57: 1.63159463e-09 + syst_JES_EtaIntercalibration_Stat58: 1.47206814e-09 + syst_JES_EtaIntercalibration_Stat59: 2.15092050e-05 + syst_JES_EtaIntercalibration_Stat6: 9.05022923e-11 + syst_JES_EtaIntercalibration_Stat60: 6.02500850e-06 + syst_JES_EtaIntercalibration_Stat61: 2.86476819e-09 + syst_JES_EtaIntercalibration_Stat62: 6.66926163e-15 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 - syst_JES_EtaIntercalibration_Stat69: 9.35512356946716e-15 - syst_JES_EtaIntercalibration_Stat7: 9.679523680429733e-12 - syst_JES_EtaIntercalibration_Stat70: 1.6637782627201259e-09 - syst_JES_EtaIntercalibration_Stat71: 1.4449826251269425e-05 - syst_JES_EtaIntercalibration_Stat72: 2.8211502454672634e-05 - syst_JES_EtaIntercalibration_Stat73: 3.6398135127366067e-06 - syst_JES_EtaIntercalibration_Stat74: 1.1596324503910711e-10 + syst_JES_EtaIntercalibration_Stat69: 9.35512357e-15 + syst_JES_EtaIntercalibration_Stat7: 9.67952368e-12 + syst_JES_EtaIntercalibration_Stat70: 1.66377826e-09 + syst_JES_EtaIntercalibration_Stat71: 1.44498263e-05 + syst_JES_EtaIntercalibration_Stat72: 2.82115025e-05 + syst_JES_EtaIntercalibration_Stat73: 3.63981351e-06 + syst_JES_EtaIntercalibration_Stat74: 1.15963245e-10 syst_JES_EtaIntercalibration_Stat75: 0.0 syst_JES_EtaIntercalibration_Stat76: 0.0 syst_JES_EtaIntercalibration_Stat77: 0.0 syst_JES_EtaIntercalibration_Stat78: 0.0 - syst_JES_EtaIntercalibration_Stat79: 1.6068338963776809e-09 + syst_JES_EtaIntercalibration_Stat79: 1.60683390e-09 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 5.1833079206236635e-06 - syst_JES_EtaIntercalibration_Stat81: 6.3521073731479064e-06 - syst_JES_EtaIntercalibration_Stat82: 6.319225294771108e-06 - syst_JES_EtaIntercalibration_Stat83: 3.33360601601329e-07 - syst_JES_EtaIntercalibration_Stat84: 3.460943910264944e-15 - syst_JES_EtaIntercalibration_Stat85: 7.892955530091373e-15 - syst_JES_EtaIntercalibration_Stat86: 7.892955530091373e-15 - syst_JES_EtaIntercalibration_Stat87: 7.892955530091373e-15 - syst_JES_EtaIntercalibration_Stat88: 7.892955530091373e-15 - syst_JES_EtaIntercalibration_Stat89: 7.892955530091373e-15 + syst_JES_EtaIntercalibration_Stat80: 5.18330792e-06 + syst_JES_EtaIntercalibration_Stat81: 6.35210737e-06 + syst_JES_EtaIntercalibration_Stat82: 6.31922529e-06 + syst_JES_EtaIntercalibration_Stat83: 3.33360602e-07 + syst_JES_EtaIntercalibration_Stat84: 3.46094391e-15 + syst_JES_EtaIntercalibration_Stat85: 7.89295553e-15 + syst_JES_EtaIntercalibration_Stat86: 7.89295553e-15 + syst_JES_EtaIntercalibration_Stat87: 7.89295553e-15 + syst_JES_EtaIntercalibration_Stat88: 7.89295553e-15 + syst_JES_EtaIntercalibration_Stat89: 7.89295553e-15 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 3.482745530468742e-07 - syst_JES_EtaIntercalibration_Stat92: 1.348444893822139e-05 - syst_JES_EtaIntercalibration_Stat93: 2.875413097278372e-05 - syst_JES_EtaIntercalibration_Stat94: 3.715878668632764e-06 - syst_JES_EtaIntercalibration_Stat95: 1.3665387178927644e-09 - syst_JES_EtaIntercalibration_Stat96: 3.7730096591563966e-11 - syst_JES_EtaIntercalibration_Stat97: 7.892955530091373e-15 - syst_JES_EtaIntercalibration_Stat98: 7.892955530091373e-15 - syst_JES_EtaIntercalibration_Stat99: 7.892955530091373e-15 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.014216915101385392 - syst_JES_Flavour_Comp: 0.0448462314470235 - syst_JES_Flavour_Response: 0.043780146185228755 - syst_JES_Gjet_Generator: 0.09179330735407674 - syst_JES_Gjet_OOC: 0.06951057545438678 - syst_JES_Gjet_Purity: 0.023430721286379554 - syst_JES_Gjet_Stat1: 2.811118460684288e-08 - syst_JES_Gjet_Stat10: 0.0028780421730753005 - syst_JES_Gjet_Stat11: 0.0045550028540056915 - syst_JES_Gjet_Stat12: 0.012410778218951462 - syst_JES_Gjet_Stat13: 0.016125075968813296 - syst_JES_Gjet_Stat14: 0.002279417071862892 - syst_JES_Gjet_Stat15: 0.0028086345436884454 - syst_JES_Gjet_Stat2: 1.9104520407484715e-10 - syst_JES_Gjet_Stat3: 5.366759427252167e-10 - syst_JES_Gjet_Stat4: 0.0003152360544100246 - syst_JES_Gjet_Stat5: 5.7356633981048545e-05 - syst_JES_Gjet_Stat6: 0.0006416480402058437 - syst_JES_Gjet_Stat7: 0.0008761144274579663 - syst_JES_Gjet_Stat8: 0.000501400548464 - syst_JES_Gjet_Stat9: 0.0014215742356627036 - syst_JES_Gjet_Veto: 0.047255025923175625 - syst_JES_Gjet_dPhi: 0.005405199788166945 - syst_JES_LArESZee: 0.13245204669992836 - syst_JES_LArEsmear: 0.009800323872199326 - syst_JES_LAr_JVT: 0.013017317494399527 - syst_JES_MJB_Alpha: 0.0008870108905757584 - syst_JES_MJB_Asym: 0.004090877373803815 - syst_JES_MJB_Beta: 0.0005869464605055558 - syst_JES_MJB_Fragmentation: 0.014199534076863227 - syst_JES_MJB_Stat1: 0.00017900745096224348 - syst_JES_MJB_Stat10: 6.4011426323743175e-06 - syst_JES_MJB_Stat11: 1.5926593376095844e-09 - syst_JES_MJB_Stat12: 4.221007818040014e-06 - syst_JES_MJB_Stat13: 4.100630286919317e-06 - syst_JES_MJB_Stat14: 6.198143814885227e-07 - syst_JES_MJB_Stat15: 1.972082635603206e-08 - syst_JES_MJB_Stat16: 1.2288900479991447e-11 - syst_JES_MJB_Stat2: 0.001260066962506358 - syst_JES_MJB_Stat3: 0.0012462105560458073 - syst_JES_MJB_Stat4: 0.0004239194351524827 + syst_JES_EtaIntercalibration_Stat91: 3.48274553e-07 + syst_JES_EtaIntercalibration_Stat92: 1.34844489e-05 + syst_JES_EtaIntercalibration_Stat93: 2.87541310e-05 + syst_JES_EtaIntercalibration_Stat94: 3.71587867e-06 + syst_JES_EtaIntercalibration_Stat95: 1.36653872e-09 + syst_JES_EtaIntercalibration_Stat96: 3.77300966e-11 + syst_JES_EtaIntercalibration_Stat97: 7.89295553e-15 + syst_JES_EtaIntercalibration_Stat98: 7.89295553e-15 + syst_JES_EtaIntercalibration_Stat99: 7.89295553e-15 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.42169151e-02 + syst_JES_Flavour_Comp: 4.48462314e-02 + syst_JES_Flavour_Response: 4.37801462e-02 + syst_JES_Gjet_Generator: 9.17933074e-02 + syst_JES_Gjet_OOC: 6.95105755e-02 + syst_JES_Gjet_Purity: 2.34307213e-02 + syst_JES_Gjet_Stat1: 2.81111846e-08 + syst_JES_Gjet_Stat10: 2.87804217e-03 + syst_JES_Gjet_Stat11: 4.55500285e-03 + syst_JES_Gjet_Stat12: 1.24107782e-02 + syst_JES_Gjet_Stat13: 1.61250760e-02 + syst_JES_Gjet_Stat14: 2.27941707e-03 + syst_JES_Gjet_Stat15: 2.80863454e-03 + syst_JES_Gjet_Stat2: 1.91045204e-10 + syst_JES_Gjet_Stat3: 5.36675943e-10 + syst_JES_Gjet_Stat4: 3.15236054e-04 + syst_JES_Gjet_Stat5: 5.73566340e-05 + syst_JES_Gjet_Stat6: 6.41648040e-04 + syst_JES_Gjet_Stat7: 8.76114427e-04 + syst_JES_Gjet_Stat8: 5.01400548e-04 + syst_JES_Gjet_Stat9: 1.42157424e-03 + syst_JES_Gjet_Veto: 4.72550259e-02 + syst_JES_Gjet_dPhi: 5.40519979e-03 + syst_JES_LArESZee: 1.32452047e-01 + syst_JES_LArEsmear: 9.80032387e-03 + syst_JES_LAr_JVT: 1.30173175e-02 + syst_JES_MJB_Alpha: 8.87010891e-04 + syst_JES_MJB_Asym: 4.09087737e-03 + syst_JES_MJB_Beta: 5.86946461e-04 + syst_JES_MJB_Fragmentation: 1.41995341e-02 + syst_JES_MJB_Stat1: 1.79007451e-04 + syst_JES_MJB_Stat10: 6.40114263e-06 + syst_JES_MJB_Stat11: 1.59265934e-09 + syst_JES_MJB_Stat12: 4.22100782e-06 + syst_JES_MJB_Stat13: 4.10063029e-06 + syst_JES_MJB_Stat14: 6.19814381e-07 + syst_JES_MJB_Stat15: 1.97208264e-08 + syst_JES_MJB_Stat16: 1.22889005e-11 + syst_JES_MJB_Stat2: 1.26006696e-03 + syst_JES_MJB_Stat3: 1.24621056e-03 + syst_JES_MJB_Stat4: 4.23919435e-04 syst_JES_MJB_Stat5: 0.0 - syst_JES_MJB_Stat6: 5.621370895964792e-06 - syst_JES_MJB_Stat7: 2.504545467744597e-12 - syst_JES_MJB_Stat8: 2.4698020522300973e-09 - syst_JES_MJB_Stat9: 4.844999388028858e-06 - syst_JES_MJB_Threshold: 0.005966234490866076 - syst_JES_Pileup_MuOffset: 0.011238851275819962 - syst_JES_Pileup_NPVOffset: 0.012617532920503912 - syst_JES_Pileup_Pt_term: 0.020263071706925383 - syst_JES_Pileup_Rho_topology: 0.02948506867890933 - syst_JES_PunchThrough_MC15: 0.004335973593093021 + syst_JES_MJB_Stat6: 5.62137090e-06 + syst_JES_MJB_Stat7: 2.50454547e-12 + syst_JES_MJB_Stat8: 2.46980205e-09 + syst_JES_MJB_Stat9: 4.84499939e-06 + syst_JES_MJB_Threshold: 5.96623449e-03 + syst_JES_Pileup_MuOffset: 1.12388513e-02 + syst_JES_Pileup_NPVOffset: 1.26175329e-02 + syst_JES_Pileup_Pt_term: 2.02630717e-02 + syst_JES_Pileup_Rho_topology: 2.94850687e-02 + syst_JES_PunchThrough_MC15: 4.33597359e-03 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.07081500317729288 - syst_JES_Zjet_MuScale: 0.004270871339668288 - syst_JES_Zjet_MuSmearID: 0.0007105113721820361 - syst_JES_Zjet_MuSmearMS: 0.018280547037766676 - syst_JES_Zjet_OOC: 0.028855021660016127 - syst_JES_Zjet_Stat1: 0.0009395200516753221 - syst_JES_Zjet_Stat10: 0.0024185050651177064 - syst_JES_Zjet_Stat11: 0.002674248445825481 - syst_JES_Zjet_Stat12: 0.018409108479228428 - syst_JES_Zjet_Stat13: 0.01804013858039899 - syst_JES_Zjet_Stat2: 2.6560999129652e-14 - syst_JES_Zjet_Stat3: 0.0005422830142093702 - syst_JES_Zjet_Stat4: 0.0005420888672533315 - syst_JES_Zjet_Stat5: 0.0006867879439827115 - syst_JES_Zjet_Stat6: 0.0005576241386453782 - syst_JES_Zjet_Stat7: 0.0004091191635697355 - syst_JES_Zjet_Stat8: 0.0005157230337109252 - syst_JES_Zjet_Stat9: 0.0012319462924575892 - syst_JES_Zjet_Veto: 0.005851206029529297 - syst_JES_Zjet_dPhi: 0.004930152330303801 + syst_JES_Zjet_MC: 7.08150032e-02 + syst_JES_Zjet_MuScale: 4.27087134e-03 + syst_JES_Zjet_MuSmearID: 7.10511372e-04 + syst_JES_Zjet_MuSmearMS: 1.82805470e-02 + syst_JES_Zjet_OOC: 2.88550217e-02 + syst_JES_Zjet_Stat1: 9.39520052e-04 + syst_JES_Zjet_Stat10: 2.41850507e-03 + syst_JES_Zjet_Stat11: 2.67424845e-03 + syst_JES_Zjet_Stat12: 1.84091085e-02 + syst_JES_Zjet_Stat13: 1.80401386e-02 + syst_JES_Zjet_Stat2: 2.65609991e-14 + syst_JES_Zjet_Stat3: 5.42283014e-04 + syst_JES_Zjet_Stat4: 5.42088867e-04 + syst_JES_Zjet_Stat5: 6.86787944e-04 + syst_JES_Zjet_Stat6: 5.57624139e-04 + syst_JES_Zjet_Stat7: 4.09119164e-04 + syst_JES_Zjet_Stat8: 5.15723034e-04 + syst_JES_Zjet_Stat9: 1.23194629e-03 + syst_JES_Zjet_Veto: 5.85120603e-03 + syst_JES_Zjet_dPhi: 4.93015233e-03 syst_PRW: 0.006467 - syst_Unfolding_bias: 2.134e-09 - syst_cleaning: 0.022707186087227983 + syst_Unfolding_bias: 2.13400000e-09 + syst_cleaning: 2.27071861e-02 syst_lumi: 0.08972 - stat: 0.016125 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.0225776172347748 - syst_JER_NP1: 0.0012742077960442718 - syst_JER_NP2: 0.01115571453336809 - syst_JER_NP3: 0.0017275145751917695 - syst_JER_NP4: 6.076016458173892e-06 - syst_JER_NP5: 0.0028200756638785424 - syst_JER_NP6: 1.204706050246283e-05 - syst_JER_NP7: 1.4388727905899119e-05 - syst_JER_NP8: 0.0027025637827810837 - syst_JES_EtaIntercalibration_Modelling: 0.11078777312952906 - syst_JES_EtaIntercalibration_NonClosure: 0.00013720752603264878 - syst_JES_EtaIntercalibration_Stat0: 1.0956087383276933e-15 + syst_JER_NP0: 2.25776172e-02 + syst_JER_NP1: 1.27420780e-03 + syst_JER_NP2: 1.11557145e-02 + syst_JER_NP3: 1.72751458e-03 + syst_JER_NP4: 6.07601646e-06 + syst_JER_NP5: 2.82007566e-03 + syst_JER_NP6: 1.20470605e-05 + syst_JER_NP7: 1.43887279e-05 + syst_JER_NP8: 2.70256378e-03 + syst_JES_EtaIntercalibration_Modelling: 1.10787773e-01 + syst_JES_EtaIntercalibration_NonClosure: 1.37207526e-04 + syst_JES_EtaIntercalibration_Stat0: 1.09560874e-15 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 1.8839662868699556e-10 - syst_JES_EtaIntercalibration_Stat101: 3.1896493020393322e-06 - syst_JES_EtaIntercalibration_Stat102: 4.463560910304686e-06 - syst_JES_EtaIntercalibration_Stat103: 4.144633638815378e-06 - syst_JES_EtaIntercalibration_Stat104: 3.960418781123406e-07 - syst_JES_EtaIntercalibration_Stat105: 1.0495346159131675e-15 - syst_JES_EtaIntercalibration_Stat106: 1.0956087383276933e-15 - syst_JES_EtaIntercalibration_Stat107: 1.0956087383276933e-15 - syst_JES_EtaIntercalibration_Stat108: 1.0956087383276933e-15 - syst_JES_EtaIntercalibration_Stat109: 1.0956087383276933e-15 + syst_JES_EtaIntercalibration_Stat100: 1.88396629e-10 + syst_JES_EtaIntercalibration_Stat101: 3.18964930e-06 + syst_JES_EtaIntercalibration_Stat102: 4.46356091e-06 + syst_JES_EtaIntercalibration_Stat103: 4.14463364e-06 + syst_JES_EtaIntercalibration_Stat104: 3.96041878e-07 + syst_JES_EtaIntercalibration_Stat105: 1.04953462e-15 + syst_JES_EtaIntercalibration_Stat106: 1.09560874e-15 + syst_JES_EtaIntercalibration_Stat107: 1.09560874e-15 + syst_JES_EtaIntercalibration_Stat108: 1.09560874e-15 + syst_JES_EtaIntercalibration_Stat109: 1.09560874e-15 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 2.1523886730792837e-13 - syst_JES_EtaIntercalibration_Stat111: 9.299990362898232e-07 - syst_JES_EtaIntercalibration_Stat112: 1.3084213426874386e-05 - syst_JES_EtaIntercalibration_Stat113: 8.612791249502103e-06 - syst_JES_EtaIntercalibration_Stat114: 2.2605646971498074e-05 - syst_JES_EtaIntercalibration_Stat115: 1.571725395869377e-07 - syst_JES_EtaIntercalibration_Stat116: 4.278666441872807e-12 - syst_JES_EtaIntercalibration_Stat117: 1.0956087383276933e-15 - syst_JES_EtaIntercalibration_Stat118: 1.0956087383276933e-15 - syst_JES_EtaIntercalibration_Stat119: 1.0956087383276933e-15 + syst_JES_EtaIntercalibration_Stat110: 2.15238867e-13 + syst_JES_EtaIntercalibration_Stat111: 9.29999036e-07 + syst_JES_EtaIntercalibration_Stat112: 1.30842134e-05 + syst_JES_EtaIntercalibration_Stat113: 8.61279125e-06 + syst_JES_EtaIntercalibration_Stat114: 2.26056470e-05 + syst_JES_EtaIntercalibration_Stat115: 1.57172540e-07 + syst_JES_EtaIntercalibration_Stat116: 4.27866644e-12 + syst_JES_EtaIntercalibration_Stat117: 1.09560874e-15 + syst_JES_EtaIntercalibration_Stat118: 1.09560874e-15 + syst_JES_EtaIntercalibration_Stat119: 1.09560874e-15 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 1.6861514611683021e-09 - syst_JES_EtaIntercalibration_Stat121: 1.3275088728517036e-05 - syst_JES_EtaIntercalibration_Stat122: 2.1829815093124357e-05 - syst_JES_EtaIntercalibration_Stat123: 1.6612310758892035e-05 - syst_JES_EtaIntercalibration_Stat124: 6.192651350592894e-06 - syst_JES_EtaIntercalibration_Stat125: 6.477003994903817e-12 - syst_JES_EtaIntercalibration_Stat126: 1.0956087383276933e-15 - syst_JES_EtaIntercalibration_Stat127: 1.0956087383276933e-15 - syst_JES_EtaIntercalibration_Stat128: 1.0956087383276933e-15 - syst_JES_EtaIntercalibration_Stat129: 9.66032535515756e-07 + syst_JES_EtaIntercalibration_Stat120: 1.68615146e-09 + syst_JES_EtaIntercalibration_Stat121: 1.32750887e-05 + syst_JES_EtaIntercalibration_Stat122: 2.18298151e-05 + syst_JES_EtaIntercalibration_Stat123: 1.66123108e-05 + syst_JES_EtaIntercalibration_Stat124: 6.19265135e-06 + syst_JES_EtaIntercalibration_Stat125: 6.47700399e-12 + syst_JES_EtaIntercalibration_Stat126: 1.09560874e-15 + syst_JES_EtaIntercalibration_Stat127: 1.09560874e-15 + syst_JES_EtaIntercalibration_Stat128: 1.09560874e-15 + syst_JES_EtaIntercalibration_Stat129: 9.66032536e-07 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 2.834212700204415e-05 - syst_JES_EtaIntercalibration_Stat131: 0.00010311097225804827 - syst_JES_EtaIntercalibration_Stat132: 0.00014144228531454093 - syst_JES_EtaIntercalibration_Stat133: 4.6551695208123195e-05 - syst_JES_EtaIntercalibration_Stat134: 4.0346636848782085e-06 - syst_JES_EtaIntercalibration_Stat135: 4.2790315200989115e-12 + syst_JES_EtaIntercalibration_Stat130: 2.83421270e-05 + syst_JES_EtaIntercalibration_Stat131: 1.03110972e-04 + syst_JES_EtaIntercalibration_Stat132: 1.41442285e-04 + syst_JES_EtaIntercalibration_Stat133: 4.65516952e-05 + syst_JES_EtaIntercalibration_Stat134: 4.03466368e-06 + syst_JES_EtaIntercalibration_Stat135: 4.27903152e-12 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 syst_JES_EtaIntercalibration_Stat138: 0.0 - syst_JES_EtaIntercalibration_Stat139: 5.511938588191998e-06 - syst_JES_EtaIntercalibration_Stat14: 1.90352502628537e-10 - syst_JES_EtaIntercalibration_Stat140: 2.5108151997906978e-05 - syst_JES_EtaIntercalibration_Stat141: 0.0001714743931320359 - syst_JES_EtaIntercalibration_Stat142: 8.41471009601638e-05 - syst_JES_EtaIntercalibration_Stat143: 7.328929090834537e-06 - syst_JES_EtaIntercalibration_Stat144: 4.3753723270140105e-08 + syst_JES_EtaIntercalibration_Stat139: 5.51193859e-06 + syst_JES_EtaIntercalibration_Stat14: 1.90352503e-10 + syst_JES_EtaIntercalibration_Stat140: 2.51081520e-05 + syst_JES_EtaIntercalibration_Stat141: 1.71474393e-04 + syst_JES_EtaIntercalibration_Stat142: 8.41471010e-05 + syst_JES_EtaIntercalibration_Stat143: 7.32892909e-06 + syst_JES_EtaIntercalibration_Stat144: 4.37537233e-08 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 3.858262141171851e-08 - syst_JES_EtaIntercalibration_Stat148: 2.6671398281070677e-05 - syst_JES_EtaIntercalibration_Stat149: 0.0001448959223028723 - syst_JES_EtaIntercalibration_Stat15: 1.9000692479392106e-10 - syst_JES_EtaIntercalibration_Stat150: 0.0001447302604848067 - syst_JES_EtaIntercalibration_Stat151: 3.39298936485218e-05 - syst_JES_EtaIntercalibration_Stat152: 1.6361867466765523e-07 + syst_JES_EtaIntercalibration_Stat147: 3.85826214e-08 + syst_JES_EtaIntercalibration_Stat148: 2.66713983e-05 + syst_JES_EtaIntercalibration_Stat149: 1.44895922e-04 + syst_JES_EtaIntercalibration_Stat15: 1.90006925e-10 + syst_JES_EtaIntercalibration_Stat150: 1.44730260e-04 + syst_JES_EtaIntercalibration_Stat151: 3.39298936e-05 + syst_JES_EtaIntercalibration_Stat152: 1.63618675e-07 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 syst_JES_EtaIntercalibration_Stat156: 0.0 - syst_JES_EtaIntercalibration_Stat157: 6.12357090838344e-07 - syst_JES_EtaIntercalibration_Stat158: 5.682795328885248e-05 - syst_JES_EtaIntercalibration_Stat159: 0.0002852737763973408 - syst_JES_EtaIntercalibration_Stat16: 1.892283501074501e-10 - syst_JES_EtaIntercalibration_Stat160: 0.00010890576695014822 - syst_JES_EtaIntercalibration_Stat161: 2.420994578680423e-06 - syst_JES_EtaIntercalibration_Stat162: 4.3373927744671684e-08 + syst_JES_EtaIntercalibration_Stat157: 6.12357091e-07 + syst_JES_EtaIntercalibration_Stat158: 5.68279533e-05 + syst_JES_EtaIntercalibration_Stat159: 2.85273776e-04 + syst_JES_EtaIntercalibration_Stat16: 1.89228350e-10 + syst_JES_EtaIntercalibration_Stat160: 1.08905767e-04 + syst_JES_EtaIntercalibration_Stat161: 2.42099458e-06 + syst_JES_EtaIntercalibration_Stat162: 4.33739277e-08 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 4.4429486830257225e-08 - syst_JES_EtaIntercalibration_Stat166: 0.00013555109848319193 - syst_JES_EtaIntercalibration_Stat167: 0.0004616518493410375 - syst_JES_EtaIntercalibration_Stat168: 0.0005938875590547423 - syst_JES_EtaIntercalibration_Stat169: 0.00010627502481768706 - syst_JES_EtaIntercalibration_Stat17: 9.067285977623072e-16 - syst_JES_EtaIntercalibration_Stat170: 3.696047179081999e-06 + syst_JES_EtaIntercalibration_Stat165: 4.44294868e-08 + syst_JES_EtaIntercalibration_Stat166: 1.35551098e-04 + syst_JES_EtaIntercalibration_Stat167: 4.61651849e-04 + syst_JES_EtaIntercalibration_Stat168: 5.93887559e-04 + syst_JES_EtaIntercalibration_Stat169: 1.06275025e-04 + syst_JES_EtaIntercalibration_Stat17: 9.06728598e-16 + syst_JES_EtaIntercalibration_Stat170: 3.69604718e-06 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 - syst_JES_EtaIntercalibration_Stat175: 2.6368937156245035e-05 - syst_JES_EtaIntercalibration_Stat176: 0.00031012331015259077 - syst_JES_EtaIntercalibration_Stat177: 0.0009170646814701785 - syst_JES_EtaIntercalibration_Stat178: 0.0006449342369575367 - syst_JES_EtaIntercalibration_Stat179: 5.4203784000750357e-05 + syst_JES_EtaIntercalibration_Stat175: 2.63689372e-05 + syst_JES_EtaIntercalibration_Stat176: 3.10123310e-04 + syst_JES_EtaIntercalibration_Stat177: 9.17064681e-04 + syst_JES_EtaIntercalibration_Stat178: 6.44934237e-04 + syst_JES_EtaIntercalibration_Stat179: 5.42037840e-05 syst_JES_EtaIntercalibration_Stat18: 0.0 - syst_JES_EtaIntercalibration_Stat180: 6.11845825066613e-06 + syst_JES_EtaIntercalibration_Stat180: 6.11845825e-06 syst_JES_EtaIntercalibration_Stat181: 0.0 - syst_JES_EtaIntercalibration_Stat182: 5.269646827587215e-06 - syst_JES_EtaIntercalibration_Stat183: 0.00045468139119607696 - syst_JES_EtaIntercalibration_Stat184: 0.0018675836661311855 - syst_JES_EtaIntercalibration_Stat185: 0.0029765663103650153 - syst_JES_EtaIntercalibration_Stat186: 0.0006117307495949506 - syst_JES_EtaIntercalibration_Stat187: 1.4905949709763548e-05 + syst_JES_EtaIntercalibration_Stat182: 5.26964683e-06 + syst_JES_EtaIntercalibration_Stat183: 4.54681391e-04 + syst_JES_EtaIntercalibration_Stat184: 1.86758367e-03 + syst_JES_EtaIntercalibration_Stat185: 2.97656631e-03 + syst_JES_EtaIntercalibration_Stat186: 6.11730750e-04 + syst_JES_EtaIntercalibration_Stat187: 1.49059497e-05 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 - syst_JES_EtaIntercalibration_Stat192: 2.204540938608308e-06 - syst_JES_EtaIntercalibration_Stat193: 0.0010989264431707885 - syst_JES_EtaIntercalibration_Stat194: 0.003149128887486189 - syst_JES_EtaIntercalibration_Stat195: 0.002131112561550891 - syst_JES_EtaIntercalibration_Stat196: 0.00035205120376871315 - syst_JES_EtaIntercalibration_Stat197: 5.212015541035925e-06 - syst_JES_EtaIntercalibration_Stat198: 0.00035302465919535993 - syst_JES_EtaIntercalibration_Stat199: 0.002921820793614831 + syst_JES_EtaIntercalibration_Stat192: 2.20454094e-06 + syst_JES_EtaIntercalibration_Stat193: 1.09892644e-03 + syst_JES_EtaIntercalibration_Stat194: 3.14912889e-03 + syst_JES_EtaIntercalibration_Stat195: 2.13111256e-03 + syst_JES_EtaIntercalibration_Stat196: 3.52051204e-04 + syst_JES_EtaIntercalibration_Stat197: 5.21201554e-06 + syst_JES_EtaIntercalibration_Stat198: 3.53024659e-04 + syst_JES_EtaIntercalibration_Stat199: 2.92182079e-03 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 0.003493976352238235 - syst_JES_EtaIntercalibration_Stat201: 0.000906356254460684 - syst_JES_EtaIntercalibration_Stat202: 5.445988043275527e-05 + syst_JES_EtaIntercalibration_Stat200: 3.49397635e-03 + syst_JES_EtaIntercalibration_Stat201: 9.06356254e-04 + syst_JES_EtaIntercalibration_Stat202: 5.44598804e-05 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 - syst_JES_EtaIntercalibration_Stat207: 9.407346955970105e-06 - syst_JES_EtaIntercalibration_Stat208: 0.0012375074979570832 - syst_JES_EtaIntercalibration_Stat209: 0.003474645017839952 + syst_JES_EtaIntercalibration_Stat207: 9.40734696e-06 + syst_JES_EtaIntercalibration_Stat208: 1.23750750e-03 + syst_JES_EtaIntercalibration_Stat209: 3.47464502e-03 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 0.0023161672543234005 - syst_JES_EtaIntercalibration_Stat211: 0.0004019448603975426 - syst_JES_EtaIntercalibration_Stat212: 0.0006050153799697988 - syst_JES_EtaIntercalibration_Stat213: 0.0008524977653929657 - syst_JES_EtaIntercalibration_Stat214: 0.00011311118280258588 - syst_JES_EtaIntercalibration_Stat215: 5.386327977388677e-06 + syst_JES_EtaIntercalibration_Stat210: 2.31616725e-03 + syst_JES_EtaIntercalibration_Stat211: 4.01944860e-04 + syst_JES_EtaIntercalibration_Stat212: 6.05015380e-04 + syst_JES_EtaIntercalibration_Stat213: 8.52497765e-04 + syst_JES_EtaIntercalibration_Stat214: 1.13111183e-04 + syst_JES_EtaIntercalibration_Stat215: 5.38632798e-06 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 syst_JES_EtaIntercalibration_Stat219: 0.0 - syst_JES_EtaIntercalibration_Stat22: 1.0956087383276933e-15 - syst_JES_EtaIntercalibration_Stat220: 4.764306743903041e-06 - syst_JES_EtaIntercalibration_Stat221: 0.00019263652301679452 - syst_JES_EtaIntercalibration_Stat222: 0.0009171248442823911 - syst_JES_EtaIntercalibration_Stat223: 0.0007837814539142911 - syst_JES_EtaIntercalibration_Stat224: 0.00024379039419140366 - syst_JES_EtaIntercalibration_Stat225: 0.00032818219890024507 - syst_JES_EtaIntercalibration_Stat226: 0.0001335206478414481 - syst_JES_EtaIntercalibration_Stat227: 4.723498537101499e-06 + syst_JES_EtaIntercalibration_Stat22: 1.09560874e-15 + syst_JES_EtaIntercalibration_Stat220: 4.76430674e-06 + syst_JES_EtaIntercalibration_Stat221: 1.92636523e-04 + syst_JES_EtaIntercalibration_Stat222: 9.17124844e-04 + syst_JES_EtaIntercalibration_Stat223: 7.83781454e-04 + syst_JES_EtaIntercalibration_Stat224: 2.43790394e-04 + syst_JES_EtaIntercalibration_Stat225: 3.28182199e-04 + syst_JES_EtaIntercalibration_Stat226: 1.33520648e-04 + syst_JES_EtaIntercalibration_Stat227: 4.72349854e-06 syst_JES_EtaIntercalibration_Stat228: 0.0 syst_JES_EtaIntercalibration_Stat229: 0.0 - syst_JES_EtaIntercalibration_Stat23: 1.0956087383276933e-15 + syst_JES_EtaIntercalibration_Stat23: 1.09560874e-15 syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 - syst_JES_EtaIntercalibration_Stat232: 3.3057287774407625e-06 - syst_JES_EtaIntercalibration_Stat233: 0.0001111889503278091 - syst_JES_EtaIntercalibration_Stat234: 0.00020149178643309512 - syst_JES_EtaIntercalibration_Stat235: 0.00017941931334168016 - syst_JES_EtaIntercalibration_Stat236: 3.55241680937077e-05 - syst_JES_EtaIntercalibration_Stat237: 3.178957064824877e-05 - syst_JES_EtaIntercalibration_Stat238: 6.819084029398671e-08 + syst_JES_EtaIntercalibration_Stat232: 3.30572878e-06 + syst_JES_EtaIntercalibration_Stat233: 1.11188950e-04 + syst_JES_EtaIntercalibration_Stat234: 2.01491786e-04 + syst_JES_EtaIntercalibration_Stat235: 1.79419313e-04 + syst_JES_EtaIntercalibration_Stat236: 3.55241681e-05 + syst_JES_EtaIntercalibration_Stat237: 3.17895706e-05 + syst_JES_EtaIntercalibration_Stat238: 6.81908403e-08 syst_JES_EtaIntercalibration_Stat239: 0.0 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 - syst_JES_EtaIntercalibration_Stat243: 1.1663957887762626e-06 - syst_JES_EtaIntercalibration_Stat244: 8.443451945146606e-06 - syst_JES_EtaIntercalibration_Stat245: 2.22243396977278e-05 - syst_JES_EtaIntercalibration_Stat25: 8.839521296427766e-16 - syst_JES_EtaIntercalibration_Stat26: 1.5707631902995433e-13 - syst_JES_EtaIntercalibration_Stat27: 1.5695845985721827e-10 - syst_JES_EtaIntercalibration_Stat28: 5.082554906283322e-06 - syst_JES_EtaIntercalibration_Stat29: 1.7486472714644312e-10 + syst_JES_EtaIntercalibration_Stat243: 1.16639579e-06 + syst_JES_EtaIntercalibration_Stat244: 8.44345195e-06 + syst_JES_EtaIntercalibration_Stat245: 2.22243397e-05 + syst_JES_EtaIntercalibration_Stat25: 8.83952130e-16 + syst_JES_EtaIntercalibration_Stat26: 1.57076319e-13 + syst_JES_EtaIntercalibration_Stat27: 1.56958460e-10 + syst_JES_EtaIntercalibration_Stat28: 5.08255491e-06 + syst_JES_EtaIntercalibration_Stat29: 1.74864727e-10 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 1.0036001633957618e-14 + syst_JES_EtaIntercalibration_Stat30: 1.00360016e-14 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 1.533468313986305e-15 - syst_JES_EtaIntercalibration_Stat36: 1.850634461062138e-10 - syst_JES_EtaIntercalibration_Stat37: 4.555290812505952e-06 - syst_JES_EtaIntercalibration_Stat38: 4.552692612453595e-06 - syst_JES_EtaIntercalibration_Stat39: 6.588967319717105e-12 - syst_JES_EtaIntercalibration_Stat4: 1.2120025525963218e-15 - syst_JES_EtaIntercalibration_Stat40: 6.076900258355406e-16 + syst_JES_EtaIntercalibration_Stat35: 1.53346831e-15 + syst_JES_EtaIntercalibration_Stat36: 1.85063446e-10 + syst_JES_EtaIntercalibration_Stat37: 4.55529081e-06 + syst_JES_EtaIntercalibration_Stat38: 4.55269261e-06 + syst_JES_EtaIntercalibration_Stat39: 6.58896732e-12 + syst_JES_EtaIntercalibration_Stat4: 1.21200255e-15 + syst_JES_EtaIntercalibration_Stat40: 6.07690026e-16 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 - syst_JES_EtaIntercalibration_Stat44: 1.0956087383276933e-15 + syst_JES_EtaIntercalibration_Stat44: 1.09560874e-15 syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 - syst_JES_EtaIntercalibration_Stat47: 8.843851423446686e-16 - syst_JES_EtaIntercalibration_Stat48: 7.59670263996163e-12 - syst_JES_EtaIntercalibration_Stat49: 4.74965922461812e-10 - syst_JES_EtaIntercalibration_Stat5: 1.2771493373916772e-12 - syst_JES_EtaIntercalibration_Stat50: 4.007072321985138e-06 - syst_JES_EtaIntercalibration_Stat51: 1.5628288341884246e-07 - syst_JES_EtaIntercalibration_Stat52: 1.0994749417335532e-12 + syst_JES_EtaIntercalibration_Stat47: 8.84385142e-16 + syst_JES_EtaIntercalibration_Stat48: 7.59670264e-12 + syst_JES_EtaIntercalibration_Stat49: 4.74965922e-10 + syst_JES_EtaIntercalibration_Stat5: 1.27714934e-12 + syst_JES_EtaIntercalibration_Stat50: 4.00707232e-06 + syst_JES_EtaIntercalibration_Stat51: 1.56282883e-07 + syst_JES_EtaIntercalibration_Stat52: 1.09947494e-12 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 syst_JES_EtaIntercalibration_Stat56: 0.0 - syst_JES_EtaIntercalibration_Stat57: 1.9035277000228465e-10 - syst_JES_EtaIntercalibration_Stat58: 1.7172558363563653e-10 - syst_JES_EtaIntercalibration_Stat59: 1.2471435537559419e-05 - syst_JES_EtaIntercalibration_Stat6: 1.0281349993434714e-11 - syst_JES_EtaIntercalibration_Stat60: 4.574079848811309e-06 - syst_JES_EtaIntercalibration_Stat61: 3.4807234291271976e-10 - syst_JES_EtaIntercalibration_Stat62: 9.249151312417804e-16 + syst_JES_EtaIntercalibration_Stat57: 1.90352770e-10 + syst_JES_EtaIntercalibration_Stat58: 1.71725584e-10 + syst_JES_EtaIntercalibration_Stat59: 1.24714355e-05 + syst_JES_EtaIntercalibration_Stat6: 1.02813500e-11 + syst_JES_EtaIntercalibration_Stat60: 4.57407985e-06 + syst_JES_EtaIntercalibration_Stat61: 3.48072343e-10 + syst_JES_EtaIntercalibration_Stat62: 9.24915131e-16 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 - syst_JES_EtaIntercalibration_Stat69: 1.2900214213337699e-15 - syst_JES_EtaIntercalibration_Stat7: 1.1018434016719437e-12 - syst_JES_EtaIntercalibration_Stat70: 1.9315891145634467e-10 - syst_JES_EtaIntercalibration_Stat71: 8.879742507622336e-06 - syst_JES_EtaIntercalibration_Stat72: 2.3951677389433498e-05 - syst_JES_EtaIntercalibration_Stat73: 4.0132685739607255e-06 - syst_JES_EtaIntercalibration_Stat74: 1.3301781346872307e-11 + syst_JES_EtaIntercalibration_Stat69: 1.29002142e-15 + syst_JES_EtaIntercalibration_Stat7: 1.10184340e-12 + syst_JES_EtaIntercalibration_Stat70: 1.93158911e-10 + syst_JES_EtaIntercalibration_Stat71: 8.87974251e-06 + syst_JES_EtaIntercalibration_Stat72: 2.39516774e-05 + syst_JES_EtaIntercalibration_Stat73: 4.01326857e-06 + syst_JES_EtaIntercalibration_Stat74: 1.33017813e-11 syst_JES_EtaIntercalibration_Stat75: 0.0 syst_JES_EtaIntercalibration_Stat76: 0.0 syst_JES_EtaIntercalibration_Stat77: 0.0 syst_JES_EtaIntercalibration_Stat78: 0.0 - syst_JES_EtaIntercalibration_Stat79: 1.8745173031921444e-10 + syst_JES_EtaIntercalibration_Stat79: 1.87451730e-10 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 1.3197149190260751e-06 - syst_JES_EtaIntercalibration_Stat81: 2.796714635067368e-06 - syst_JES_EtaIntercalibration_Stat82: 4.4029672665147085e-06 - syst_JES_EtaIntercalibration_Stat83: 4.4204643271380436e-08 - syst_JES_EtaIntercalibration_Stat84: 4.584883095565252e-16 - syst_JES_EtaIntercalibration_Stat85: 1.0956087383276933e-15 - syst_JES_EtaIntercalibration_Stat86: 1.0956087383276933e-15 - syst_JES_EtaIntercalibration_Stat87: 1.0956087383276933e-15 - syst_JES_EtaIntercalibration_Stat88: 1.0956087383276933e-15 - syst_JES_EtaIntercalibration_Stat89: 1.0956087383276933e-15 + syst_JES_EtaIntercalibration_Stat80: 1.31971492e-06 + syst_JES_EtaIntercalibration_Stat81: 2.79671464e-06 + syst_JES_EtaIntercalibration_Stat82: 4.40296727e-06 + syst_JES_EtaIntercalibration_Stat83: 4.42046433e-08 + syst_JES_EtaIntercalibration_Stat84: 4.58488310e-16 + syst_JES_EtaIntercalibration_Stat85: 1.09560874e-15 + syst_JES_EtaIntercalibration_Stat86: 1.09560874e-15 + syst_JES_EtaIntercalibration_Stat87: 1.09560874e-15 + syst_JES_EtaIntercalibration_Stat88: 1.09560874e-15 + syst_JES_EtaIntercalibration_Stat89: 1.09560874e-15 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 5.795348913799324e-08 - syst_JES_EtaIntercalibration_Stat92: 8.580751626023214e-06 - syst_JES_EtaIntercalibration_Stat93: 2.4052611433064813e-05 - syst_JES_EtaIntercalibration_Stat94: 4.0368097293864055e-06 - syst_JES_EtaIntercalibration_Stat95: 1.5901353110663256e-10 - syst_JES_EtaIntercalibration_Stat96: 4.278666441872807e-12 - syst_JES_EtaIntercalibration_Stat97: 1.0956087383276933e-15 - syst_JES_EtaIntercalibration_Stat98: 1.0956087383276933e-15 - syst_JES_EtaIntercalibration_Stat99: 1.0956087383276933e-15 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.010225401752498529 - syst_JES_Flavour_Comp: 0.03124677263334567 - syst_JES_Flavour_Response: 0.020512607708431416 - syst_JES_Gjet_Generator: 0.05589764283938993 - syst_JES_Gjet_OOC: 0.04339950690964127 - syst_JES_Gjet_Purity: 0.014228676783172776 - syst_JES_Gjet_Stat1: 4.968387741511325e-07 - syst_JES_Gjet_Stat10: 0.0015874308646363156 - syst_JES_Gjet_Stat11: 0.0022119653591320095 - syst_JES_Gjet_Stat12: 0.0071595038061307015 - syst_JES_Gjet_Stat13: 0.01209463364472029 - syst_JES_Gjet_Stat14: 0.004503500721660872 - syst_JES_Gjet_Stat15: 0.002506583880503503 - syst_JES_Gjet_Stat2: 2.0620064864107484e-11 - syst_JES_Gjet_Stat3: 2.9150415091384204e-08 - syst_JES_Gjet_Stat4: 0.00018072458908516018 - syst_JES_Gjet_Stat5: 1.2236046245173678e-05 - syst_JES_Gjet_Stat6: 0.000390691473544023 - syst_JES_Gjet_Stat7: 0.0005100076077863937 - syst_JES_Gjet_Stat8: 0.00031573837270753143 - syst_JES_Gjet_Stat9: 0.000817630605775004 - syst_JES_Gjet_Veto: 0.03249944114904132 - syst_JES_Gjet_dPhi: 0.003622761377733841 - syst_JES_LArESZee: 0.08230828436433359 - syst_JES_LArEsmear: 0.006182967006219586 - syst_JES_LAr_JVT: 0.008334686136862024 - syst_JES_MJB_Alpha: 0.0005295933038662781 - syst_JES_MJB_Asym: 0.0027936662291691183 - syst_JES_MJB_Beta: 0.0003884130887341465 - syst_JES_MJB_Fragmentation: 0.009398587699755746 - syst_JES_MJB_Stat1: 3.907506621875391e-05 - syst_JES_MJB_Stat10: 4.352882722977958e-06 - syst_JES_MJB_Stat11: 8.588659375449698e-08 - syst_JES_MJB_Stat12: 3.4250438424099714e-06 - syst_JES_MJB_Stat13: 4.503332099679078e-06 - syst_JES_MJB_Stat14: 1.06832893810848e-06 - syst_JES_MJB_Stat15: 1.357358600500251e-07 - syst_JES_MJB_Stat16: 6.769720688192763e-10 - syst_JES_MJB_Stat2: 0.0006934265408102 - syst_JES_MJB_Stat3: 0.0008391786162671211 - syst_JES_MJB_Stat4: 0.00026500377355803825 + syst_JES_EtaIntercalibration_Stat91: 5.79534891e-08 + syst_JES_EtaIntercalibration_Stat92: 8.58075163e-06 + syst_JES_EtaIntercalibration_Stat93: 2.40526114e-05 + syst_JES_EtaIntercalibration_Stat94: 4.03680973e-06 + syst_JES_EtaIntercalibration_Stat95: 1.59013531e-10 + syst_JES_EtaIntercalibration_Stat96: 4.27866644e-12 + syst_JES_EtaIntercalibration_Stat97: 1.09560874e-15 + syst_JES_EtaIntercalibration_Stat98: 1.09560874e-15 + syst_JES_EtaIntercalibration_Stat99: 1.09560874e-15 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.02254018e-02 + syst_JES_Flavour_Comp: 3.12467726e-02 + syst_JES_Flavour_Response: 2.05126077e-02 + syst_JES_Gjet_Generator: 5.58976428e-02 + syst_JES_Gjet_OOC: 4.33995069e-02 + syst_JES_Gjet_Purity: 1.42286768e-02 + syst_JES_Gjet_Stat1: 4.96838774e-07 + syst_JES_Gjet_Stat10: 1.58743086e-03 + syst_JES_Gjet_Stat11: 2.21196536e-03 + syst_JES_Gjet_Stat12: 7.15950381e-03 + syst_JES_Gjet_Stat13: 1.20946336e-02 + syst_JES_Gjet_Stat14: 4.50350072e-03 + syst_JES_Gjet_Stat15: 2.50658388e-03 + syst_JES_Gjet_Stat2: 2.06200649e-11 + syst_JES_Gjet_Stat3: 2.91504151e-08 + syst_JES_Gjet_Stat4: 1.80724589e-04 + syst_JES_Gjet_Stat5: 1.22360462e-05 + syst_JES_Gjet_Stat6: 3.90691474e-04 + syst_JES_Gjet_Stat7: 5.10007608e-04 + syst_JES_Gjet_Stat8: 3.15738373e-04 + syst_JES_Gjet_Stat9: 8.17630606e-04 + syst_JES_Gjet_Veto: 3.24994411e-02 + syst_JES_Gjet_dPhi: 3.62276138e-03 + syst_JES_LArESZee: 8.23082844e-02 + syst_JES_LArEsmear: 6.18296701e-03 + syst_JES_LAr_JVT: 8.33468614e-03 + syst_JES_MJB_Alpha: 5.29593304e-04 + syst_JES_MJB_Asym: 2.79366623e-03 + syst_JES_MJB_Beta: 3.88413089e-04 + syst_JES_MJB_Fragmentation: 9.39858770e-03 + syst_JES_MJB_Stat1: 3.90750662e-05 + syst_JES_MJB_Stat10: 4.35288272e-06 + syst_JES_MJB_Stat11: 8.58865938e-08 + syst_JES_MJB_Stat12: 3.42504384e-06 + syst_JES_MJB_Stat13: 4.50333210e-06 + syst_JES_MJB_Stat14: 1.06832894e-06 + syst_JES_MJB_Stat15: 1.35735860e-07 + syst_JES_MJB_Stat16: 6.76972069e-10 + syst_JES_MJB_Stat2: 6.93426541e-04 + syst_JES_MJB_Stat3: 8.39178616e-04 + syst_JES_MJB_Stat4: 2.65003774e-04 syst_JES_MJB_Stat5: 0.0 - syst_JES_MJB_Stat6: 1.780548230180806e-05 - syst_JES_MJB_Stat7: 5.036803748410295e-10 - syst_JES_MJB_Stat8: 1.324811543172462e-07 - syst_JES_MJB_Stat9: 3.3197595345898178e-06 - syst_JES_MJB_Threshold: 0.004216196508703075 - syst_JES_Pileup_MuOffset: 0.008077449024908792 - syst_JES_Pileup_NPVOffset: 0.00884630606524554 - syst_JES_Pileup_Pt_term: 0.012064153886617992 - syst_JES_Pileup_Rho_topology: 0.017929530808138847 - syst_JES_PunchThrough_MC15: 0.0035393703889251265 + syst_JES_MJB_Stat6: 1.78054823e-05 + syst_JES_MJB_Stat7: 5.03680375e-10 + syst_JES_MJB_Stat8: 1.32481154e-07 + syst_JES_MJB_Stat9: 3.31975953e-06 + syst_JES_MJB_Threshold: 4.21619651e-03 + syst_JES_Pileup_MuOffset: 8.07744902e-03 + syst_JES_Pileup_NPVOffset: 8.84630607e-03 + syst_JES_Pileup_Pt_term: 1.20641539e-02 + syst_JES_Pileup_Rho_topology: 1.79295308e-02 + syst_JES_PunchThrough_MC15: 3.53937039e-03 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.04020090406943605 - syst_JES_Zjet_MuScale: 0.002536297054763105 - syst_JES_Zjet_MuSmearID: 0.0004231653902435785 - syst_JES_Zjet_MuSmearMS: 0.011031301736422586 - syst_JES_Zjet_OOC: 0.016988827946624218 - syst_JES_Zjet_Stat1: 0.00064758023441115 - syst_JES_Zjet_Stat10: 0.0014630580986413357 - syst_JES_Zjet_Stat11: 0.0017055763688559947 - syst_JES_Zjet_Stat12: 0.009201788847827361 - syst_JES_Zjet_Stat13: 0.011464745123638816 - syst_JES_Zjet_Stat2: 2.556344509201909e-15 - syst_JES_Zjet_Stat3: 0.0003150117462889281 - syst_JES_Zjet_Stat4: 0.00031495790972763327 - syst_JES_Zjet_Stat5: 0.00040408636453114817 - syst_JES_Zjet_Stat6: 0.00036193540860214276 - syst_JES_Zjet_Stat7: 0.00024435582661356777 - syst_JES_Zjet_Stat8: 0.0003194917369823514 - syst_JES_Zjet_Stat9: 0.0007502914900223779 - syst_JES_Zjet_Veto: 0.0034641273071294595 - syst_JES_Zjet_dPhi: 0.002939402447777439 - syst_PRW: 0.0038639 - syst_Unfolding_bias: 2.603e-10 - syst_cleaning: 0.013683201379794133 + syst_JES_Zjet_MC: 4.02009041e-02 + syst_JES_Zjet_MuScale: 2.53629705e-03 + syst_JES_Zjet_MuSmearID: 4.23165390e-04 + syst_JES_Zjet_MuSmearMS: 1.10313017e-02 + syst_JES_Zjet_OOC: 1.69888279e-02 + syst_JES_Zjet_Stat1: 6.47580234e-04 + syst_JES_Zjet_Stat10: 1.46305810e-03 + syst_JES_Zjet_Stat11: 1.70557637e-03 + syst_JES_Zjet_Stat12: 9.20178885e-03 + syst_JES_Zjet_Stat13: 1.14647451e-02 + syst_JES_Zjet_Stat2: 2.55634451e-15 + syst_JES_Zjet_Stat3: 3.15011746e-04 + syst_JES_Zjet_Stat4: 3.14957910e-04 + syst_JES_Zjet_Stat5: 4.04086365e-04 + syst_JES_Zjet_Stat6: 3.61935409e-04 + syst_JES_Zjet_Stat7: 2.44355827e-04 + syst_JES_Zjet_Stat8: 3.19491737e-04 + syst_JES_Zjet_Stat9: 7.50291490e-04 + syst_JES_Zjet_Veto: 3.46412731e-03 + syst_JES_Zjet_dPhi: 2.93940245e-03 + syst_PRW: 3.86390000e-03 + syst_Unfolding_bias: 2.60300000e-10 + syst_cleaning: 1.36832014e-02 syst_lumi: 0.0536 - stat: 0.009228 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.014012257598260174 - syst_JER_NP1: 0.000757674803263247 - syst_JER_NP2: 0.00734009419217492 - syst_JER_NP3: 0.0010834389449802884 - syst_JER_NP4: 8.410023305556293e-07 - syst_JER_NP5: 0.0014868806904052524 - syst_JER_NP6: 1.669281881528701e-06 - syst_JER_NP7: 2.000553610878749e-06 - syst_JER_NP8: 0.0014176610340627975 - syst_JES_EtaIntercalibration_Modelling: 0.07619585421792972 - syst_JES_EtaIntercalibration_NonClosure: 0.0006095137715220224 - syst_JES_EtaIntercalibration_Stat0: 1.6696969784963975e-16 + syst_JER_NP0: 1.40122576e-02 + syst_JER_NP1: 7.57674803e-04 + syst_JER_NP2: 7.34009419e-03 + syst_JER_NP3: 1.08343894e-03 + syst_JER_NP4: 8.41002331e-07 + syst_JER_NP5: 1.48688069e-03 + syst_JER_NP6: 1.66928188e-06 + syst_JER_NP7: 2.00055361e-06 + syst_JER_NP8: 1.41766103e-03 + syst_JES_EtaIntercalibration_Modelling: 7.61958542e-02 + syst_JES_EtaIntercalibration_NonClosure: 6.09513772e-04 + syst_JES_EtaIntercalibration_Stat0: 1.66969698e-16 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 2.2512796331642143e-11 - syst_JES_EtaIntercalibration_Stat101: 5.709972591878178e-07 - syst_JES_EtaIntercalibration_Stat102: 3.629285156886959e-06 - syst_JES_EtaIntercalibration_Stat103: 3.6610182668214044e-06 - syst_JES_EtaIntercalibration_Stat104: 6.980497409210894e-08 - syst_JES_EtaIntercalibration_Stat105: 1.7293565508593072e-16 - syst_JES_EtaIntercalibration_Stat106: 1.6696969784963975e-16 - syst_JES_EtaIntercalibration_Stat107: 1.6696969784963975e-16 - syst_JES_EtaIntercalibration_Stat108: 1.6696969784963975e-16 - syst_JES_EtaIntercalibration_Stat109: 1.6696969784963975e-16 + syst_JES_EtaIntercalibration_Stat100: 2.25127963e-11 + syst_JES_EtaIntercalibration_Stat101: 5.70997259e-07 + syst_JES_EtaIntercalibration_Stat102: 3.62928516e-06 + syst_JES_EtaIntercalibration_Stat103: 3.66101827e-06 + syst_JES_EtaIntercalibration_Stat104: 6.98049741e-08 + syst_JES_EtaIntercalibration_Stat105: 1.72935655e-16 + syst_JES_EtaIntercalibration_Stat106: 1.66969698e-16 + syst_JES_EtaIntercalibration_Stat107: 1.66969698e-16 + syst_JES_EtaIntercalibration_Stat108: 1.66969698e-16 + syst_JES_EtaIntercalibration_Stat109: 1.66969698e-16 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 2.8326273259114052e-14 - syst_JES_EtaIntercalibration_Stat111: 2.1415732534751175e-07 - syst_JES_EtaIntercalibration_Stat112: 7.667182843130845e-06 - syst_JES_EtaIntercalibration_Stat113: 4.783124083692582e-06 - syst_JES_EtaIntercalibration_Stat114: 8.921915123447432e-06 - syst_JES_EtaIntercalibration_Stat115: 2.19811297689632e-09 - syst_JES_EtaIntercalibration_Stat116: 5.06482626571613e-13 - syst_JES_EtaIntercalibration_Stat117: 1.6696969784963975e-16 - syst_JES_EtaIntercalibration_Stat118: 1.6696969784963975e-16 - syst_JES_EtaIntercalibration_Stat119: 1.6696969784963975e-16 + syst_JES_EtaIntercalibration_Stat110: 2.83262733e-14 + syst_JES_EtaIntercalibration_Stat111: 2.14157325e-07 + syst_JES_EtaIntercalibration_Stat112: 7.66718284e-06 + syst_JES_EtaIntercalibration_Stat113: 4.78312408e-06 + syst_JES_EtaIntercalibration_Stat114: 8.92191512e-06 + syst_JES_EtaIntercalibration_Stat115: 2.19811298e-09 + syst_JES_EtaIntercalibration_Stat116: 5.06482627e-13 + syst_JES_EtaIntercalibration_Stat117: 1.66969698e-16 + syst_JES_EtaIntercalibration_Stat118: 1.66969698e-16 + syst_JES_EtaIntercalibration_Stat119: 1.66969698e-16 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 2.1494750521929767e-10 - syst_JES_EtaIntercalibration_Stat121: 1.2203894081398774e-05 - syst_JES_EtaIntercalibration_Stat122: 8.526335833756491e-06 - syst_JES_EtaIntercalibration_Stat123: 7.695778371938735e-06 - syst_JES_EtaIntercalibration_Stat124: 4.465290891980051e-06 - syst_JES_EtaIntercalibration_Stat125: 8.015931137428764e-13 - syst_JES_EtaIntercalibration_Stat126: 1.6696969784963975e-16 - syst_JES_EtaIntercalibration_Stat127: 1.6696969784963975e-16 - syst_JES_EtaIntercalibration_Stat128: 1.6696969784963975e-16 - syst_JES_EtaIntercalibration_Stat129: 1.4666248222364163e-07 + syst_JES_EtaIntercalibration_Stat120: 2.14947505e-10 + syst_JES_EtaIntercalibration_Stat121: 1.22038941e-05 + syst_JES_EtaIntercalibration_Stat122: 8.52633583e-06 + syst_JES_EtaIntercalibration_Stat123: 7.69577837e-06 + syst_JES_EtaIntercalibration_Stat124: 4.46529089e-06 + syst_JES_EtaIntercalibration_Stat125: 8.01593114e-13 + syst_JES_EtaIntercalibration_Stat126: 1.66969698e-16 + syst_JES_EtaIntercalibration_Stat127: 1.66969698e-16 + syst_JES_EtaIntercalibration_Stat128: 1.66969698e-16 + syst_JES_EtaIntercalibration_Stat129: 1.46662482e-07 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 1.2421572847268578e-05 - syst_JES_EtaIntercalibration_Stat131: 4.2954879524915445e-05 - syst_JES_EtaIntercalibration_Stat132: 6.632051824850286e-05 - syst_JES_EtaIntercalibration_Stat133: 1.1023590919024525e-05 - syst_JES_EtaIntercalibration_Stat134: 2.902774745149027e-06 - syst_JES_EtaIntercalibration_Stat135: 5.065382586735181e-13 + syst_JES_EtaIntercalibration_Stat130: 1.24215728e-05 + syst_JES_EtaIntercalibration_Stat131: 4.29548795e-05 + syst_JES_EtaIntercalibration_Stat132: 6.63205182e-05 + syst_JES_EtaIntercalibration_Stat133: 1.10235909e-05 + syst_JES_EtaIntercalibration_Stat134: 2.90277475e-06 + syst_JES_EtaIntercalibration_Stat135: 5.06538259e-13 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 syst_JES_EtaIntercalibration_Stat138: 0.0 - syst_JES_EtaIntercalibration_Stat139: 9.838131568036688e-07 - syst_JES_EtaIntercalibration_Stat14: 2.2741846687167947e-11 - syst_JES_EtaIntercalibration_Stat140: 1.5183484448571086e-05 - syst_JES_EtaIntercalibration_Stat141: 6.875414242065711e-05 - syst_JES_EtaIntercalibration_Stat142: 5.265995999808584e-05 - syst_JES_EtaIntercalibration_Stat143: 7.441842564177235e-06 - syst_JES_EtaIntercalibration_Stat144: 5.635507674557812e-09 + syst_JES_EtaIntercalibration_Stat139: 9.83813157e-07 + syst_JES_EtaIntercalibration_Stat14: 2.27418467e-11 + syst_JES_EtaIntercalibration_Stat140: 1.51834844e-05 + syst_JES_EtaIntercalibration_Stat141: 6.87541424e-05 + syst_JES_EtaIntercalibration_Stat142: 5.26599600e-05 + syst_JES_EtaIntercalibration_Stat143: 7.44184256e-06 + syst_JES_EtaIntercalibration_Stat144: 5.63550767e-09 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 1.0922669579823424e-08 - syst_JES_EtaIntercalibration_Stat148: 8.451646940093984e-06 - syst_JES_EtaIntercalibration_Stat149: 5.731752960482509e-05 - syst_JES_EtaIntercalibration_Stat15: 2.2698670665201457e-11 - syst_JES_EtaIntercalibration_Stat150: 5.868132134674542e-05 - syst_JES_EtaIntercalibration_Stat151: 5.327273599131173e-06 - syst_JES_EtaIntercalibration_Stat152: 6.010333850960361e-08 + syst_JES_EtaIntercalibration_Stat147: 1.09226696e-08 + syst_JES_EtaIntercalibration_Stat148: 8.45164694e-06 + syst_JES_EtaIntercalibration_Stat149: 5.73175296e-05 + syst_JES_EtaIntercalibration_Stat15: 2.26986707e-11 + syst_JES_EtaIntercalibration_Stat150: 5.86813213e-05 + syst_JES_EtaIntercalibration_Stat151: 5.32727360e-06 + syst_JES_EtaIntercalibration_Stat152: 6.01033385e-08 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 syst_JES_EtaIntercalibration_Stat156: 0.0 - syst_JES_EtaIntercalibration_Stat157: 1.4654873465165094e-07 - syst_JES_EtaIntercalibration_Stat158: 1.5041678762691353e-05 - syst_JES_EtaIntercalibration_Stat159: 0.00010016756099157052 - syst_JES_EtaIntercalibration_Stat16: 2.261220132950729e-11 - syst_JES_EtaIntercalibration_Stat160: 5.8649797876953506e-05 - syst_JES_EtaIntercalibration_Stat161: 5.882185031941787e-06 - syst_JES_EtaIntercalibration_Stat162: 5.552370081325631e-09 + syst_JES_EtaIntercalibration_Stat157: 1.46548735e-07 + syst_JES_EtaIntercalibration_Stat158: 1.50416788e-05 + syst_JES_EtaIntercalibration_Stat159: 1.00167561e-04 + syst_JES_EtaIntercalibration_Stat16: 2.26122013e-11 + syst_JES_EtaIntercalibration_Stat160: 5.86497979e-05 + syst_JES_EtaIntercalibration_Stat161: 5.88218503e-06 + syst_JES_EtaIntercalibration_Stat162: 5.55237008e-09 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 2.3049391244672818e-08 - syst_JES_EtaIntercalibration_Stat166: 5.22944887798896e-05 - syst_JES_EtaIntercalibration_Stat167: 0.00016392885865521058 - syst_JES_EtaIntercalibration_Stat168: 0.0002691063415733639 - syst_JES_EtaIntercalibration_Stat169: 3.69057864704168e-05 - syst_JES_EtaIntercalibration_Stat17: 1.3804444936323952e-16 - syst_JES_EtaIntercalibration_Stat170: 2.735977024757335e-06 + syst_JES_EtaIntercalibration_Stat165: 2.30493912e-08 + syst_JES_EtaIntercalibration_Stat166: 5.22944888e-05 + syst_JES_EtaIntercalibration_Stat167: 1.63928859e-04 + syst_JES_EtaIntercalibration_Stat168: 2.69106342e-04 + syst_JES_EtaIntercalibration_Stat169: 3.69057865e-05 + syst_JES_EtaIntercalibration_Stat17: 1.38044449e-16 + syst_JES_EtaIntercalibration_Stat170: 2.73597702e-06 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 - syst_JES_EtaIntercalibration_Stat175: 2.935050862847184e-05 - syst_JES_EtaIntercalibration_Stat176: 0.0001736633601972506 - syst_JES_EtaIntercalibration_Stat177: 0.0004122940061412487 - syst_JES_EtaIntercalibration_Stat178: 0.0002580125578339163 - syst_JES_EtaIntercalibration_Stat179: 9.262667708063374e-06 + syst_JES_EtaIntercalibration_Stat175: 2.93505086e-05 + syst_JES_EtaIntercalibration_Stat176: 1.73663360e-04 + syst_JES_EtaIntercalibration_Stat177: 4.12294006e-04 + syst_JES_EtaIntercalibration_Stat178: 2.58012558e-04 + syst_JES_EtaIntercalibration_Stat179: 9.26266771e-06 syst_JES_EtaIntercalibration_Stat18: 0.0 - syst_JES_EtaIntercalibration_Stat180: 3.3173955601618936e-06 + syst_JES_EtaIntercalibration_Stat180: 3.31739556e-06 syst_JES_EtaIntercalibration_Stat181: 0.0 - syst_JES_EtaIntercalibration_Stat182: 3.090638424338894e-06 - syst_JES_EtaIntercalibration_Stat183: 0.00020894915051275034 - syst_JES_EtaIntercalibration_Stat184: 0.0007814728786080806 - syst_JES_EtaIntercalibration_Stat185: 0.0013800872255042432 - syst_JES_EtaIntercalibration_Stat186: 0.00026122968949757603 - syst_JES_EtaIntercalibration_Stat187: 2.3824056644492765e-06 + syst_JES_EtaIntercalibration_Stat182: 3.09063842e-06 + syst_JES_EtaIntercalibration_Stat183: 2.08949151e-04 + syst_JES_EtaIntercalibration_Stat184: 7.81472879e-04 + syst_JES_EtaIntercalibration_Stat185: 1.38008723e-03 + syst_JES_EtaIntercalibration_Stat186: 2.61229689e-04 + syst_JES_EtaIntercalibration_Stat187: 2.38240566e-06 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 - syst_JES_EtaIntercalibration_Stat192: 8.814517457013742e-06 - syst_JES_EtaIntercalibration_Stat193: 0.000484942738887799 - syst_JES_EtaIntercalibration_Stat194: 0.0013254595080574888 - syst_JES_EtaIntercalibration_Stat195: 0.0009477624333133278 - syst_JES_EtaIntercalibration_Stat196: 0.00015637500143884892 - syst_JES_EtaIntercalibration_Stat197: 4.079535390212959e-06 - syst_JES_EtaIntercalibration_Stat198: 0.00020794626108684908 - syst_JES_EtaIntercalibration_Stat199: 0.00162255631643404 + syst_JES_EtaIntercalibration_Stat192: 8.81451746e-06 + syst_JES_EtaIntercalibration_Stat193: 4.84942739e-04 + syst_JES_EtaIntercalibration_Stat194: 1.32545951e-03 + syst_JES_EtaIntercalibration_Stat195: 9.47762433e-04 + syst_JES_EtaIntercalibration_Stat196: 1.56375001e-04 + syst_JES_EtaIntercalibration_Stat197: 4.07953539e-06 + syst_JES_EtaIntercalibration_Stat198: 2.07946261e-04 + syst_JES_EtaIntercalibration_Stat199: 1.62255632e-03 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 0.0019213887555619763 - syst_JES_EtaIntercalibration_Stat201: 0.0005261255743641437 - syst_JES_EtaIntercalibration_Stat202: 3.4959643519349565e-05 + syst_JES_EtaIntercalibration_Stat200: 1.92138876e-03 + syst_JES_EtaIntercalibration_Stat201: 5.26125574e-04 + syst_JES_EtaIntercalibration_Stat202: 3.49596435e-05 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 - syst_JES_EtaIntercalibration_Stat207: 5.514278009630998e-06 - syst_JES_EtaIntercalibration_Stat208: 0.0006131564298774008 - syst_JES_EtaIntercalibration_Stat209: 0.0018334810470795708 + syst_JES_EtaIntercalibration_Stat207: 5.51427801e-06 + syst_JES_EtaIntercalibration_Stat208: 6.13156430e-04 + syst_JES_EtaIntercalibration_Stat209: 1.83348105e-03 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 0.0012752441060440154 - syst_JES_EtaIntercalibration_Stat211: 0.0002235750880576814 - syst_JES_EtaIntercalibration_Stat212: 0.000492749680365193 - syst_JES_EtaIntercalibration_Stat213: 0.000768026991713182 - syst_JES_EtaIntercalibration_Stat214: 0.0001085565220288491 - syst_JES_EtaIntercalibration_Stat215: 4.338120676053168e-06 + syst_JES_EtaIntercalibration_Stat210: 1.27524411e-03 + syst_JES_EtaIntercalibration_Stat211: 2.23575088e-04 + syst_JES_EtaIntercalibration_Stat212: 4.92749680e-04 + syst_JES_EtaIntercalibration_Stat213: 7.68026992e-04 + syst_JES_EtaIntercalibration_Stat214: 1.08556522e-04 + syst_JES_EtaIntercalibration_Stat215: 4.33812068e-06 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 syst_JES_EtaIntercalibration_Stat219: 0.0 - syst_JES_EtaIntercalibration_Stat22: 1.6696969784963975e-16 - syst_JES_EtaIntercalibration_Stat220: 9.364829843622359e-06 - syst_JES_EtaIntercalibration_Stat221: 0.00017158760881835262 - syst_JES_EtaIntercalibration_Stat222: 0.0007058111078751877 - syst_JES_EtaIntercalibration_Stat223: 0.0006143901915720986 - syst_JES_EtaIntercalibration_Stat224: 0.00017599922585057019 - syst_JES_EtaIntercalibration_Stat225: 0.00016119204966436775 - syst_JES_EtaIntercalibration_Stat226: 6.173605272130297e-05 - syst_JES_EtaIntercalibration_Stat227: 4.09597177114296e-06 + syst_JES_EtaIntercalibration_Stat22: 1.66969698e-16 + syst_JES_EtaIntercalibration_Stat220: 9.36482984e-06 + syst_JES_EtaIntercalibration_Stat221: 1.71587609e-04 + syst_JES_EtaIntercalibration_Stat222: 7.05811108e-04 + syst_JES_EtaIntercalibration_Stat223: 6.14390192e-04 + syst_JES_EtaIntercalibration_Stat224: 1.75999226e-04 + syst_JES_EtaIntercalibration_Stat225: 1.61192050e-04 + syst_JES_EtaIntercalibration_Stat226: 6.17360527e-05 + syst_JES_EtaIntercalibration_Stat227: 4.09597177e-06 syst_JES_EtaIntercalibration_Stat228: 0.0 syst_JES_EtaIntercalibration_Stat229: 0.0 - syst_JES_EtaIntercalibration_Stat23: 1.6696969784963975e-16 + syst_JES_EtaIntercalibration_Stat23: 1.66969698e-16 syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 - syst_JES_EtaIntercalibration_Stat232: 1.9774862955783033e-06 - syst_JES_EtaIntercalibration_Stat233: 4.5642557717551274e-05 - syst_JES_EtaIntercalibration_Stat234: 7.34960561441905e-05 - syst_JES_EtaIntercalibration_Stat235: 9.809924872291327e-05 - syst_JES_EtaIntercalibration_Stat236: 5.781243183779766e-05 - syst_JES_EtaIntercalibration_Stat237: 3.804612036725952e-05 - syst_JES_EtaIntercalibration_Stat238: 3.4245242541848055e-07 + syst_JES_EtaIntercalibration_Stat232: 1.97748630e-06 + syst_JES_EtaIntercalibration_Stat233: 4.56425577e-05 + syst_JES_EtaIntercalibration_Stat234: 7.34960561e-05 + syst_JES_EtaIntercalibration_Stat235: 9.80992487e-05 + syst_JES_EtaIntercalibration_Stat236: 5.78124318e-05 + syst_JES_EtaIntercalibration_Stat237: 3.80461204e-05 + syst_JES_EtaIntercalibration_Stat238: 3.42452425e-07 syst_JES_EtaIntercalibration_Stat239: 0.0 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 - syst_JES_EtaIntercalibration_Stat243: 3.138714336714955e-06 - syst_JES_EtaIntercalibration_Stat244: 2.111152765670926e-05 - syst_JES_EtaIntercalibration_Stat245: 6.063900230049963e-05 - syst_JES_EtaIntercalibration_Stat25: 1.332813096424251e-16 - syst_JES_EtaIntercalibration_Stat26: 2.091630464494147e-14 - syst_JES_EtaIntercalibration_Stat27: 1.8809668348152765e-11 - syst_JES_EtaIntercalibration_Stat28: 3.0830325371432474e-06 - syst_JES_EtaIntercalibration_Stat29: 2.0929090060248676e-11 + syst_JES_EtaIntercalibration_Stat243: 3.13871434e-06 + syst_JES_EtaIntercalibration_Stat244: 2.11115277e-05 + syst_JES_EtaIntercalibration_Stat245: 6.06390023e-05 + syst_JES_EtaIntercalibration_Stat25: 1.33281310e-16 + syst_JES_EtaIntercalibration_Stat26: 2.09163046e-14 + syst_JES_EtaIntercalibration_Stat27: 1.88096683e-11 + syst_JES_EtaIntercalibration_Stat28: 3.08303254e-06 + syst_JES_EtaIntercalibration_Stat29: 2.09290901e-11 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 1.414228621263196e-15 + syst_JES_EtaIntercalibration_Stat30: 1.41422862e-15 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 2.348048951789549e-16 - syst_JES_EtaIntercalibration_Stat36: 2.2111777146753153e-11 - syst_JES_EtaIntercalibration_Stat37: 4.060792767489596e-06 - syst_JES_EtaIntercalibration_Stat38: 4.0599267267571725e-06 - syst_JES_EtaIntercalibration_Stat39: 8.18775613996289e-13 - syst_JES_EtaIntercalibration_Stat4: 1.82817962738895e-16 - syst_JES_EtaIntercalibration_Stat40: 1.001125366774811e-16 + syst_JES_EtaIntercalibration_Stat35: 2.34804895e-16 + syst_JES_EtaIntercalibration_Stat36: 2.21117771e-11 + syst_JES_EtaIntercalibration_Stat37: 4.06079277e-06 + syst_JES_EtaIntercalibration_Stat38: 4.05992673e-06 + syst_JES_EtaIntercalibration_Stat39: 8.18775614e-13 + syst_JES_EtaIntercalibration_Stat4: 1.82817963e-16 + syst_JES_EtaIntercalibration_Stat40: 1.00112537e-16 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 - syst_JES_EtaIntercalibration_Stat44: 1.6696969784963975e-16 + syst_JES_EtaIntercalibration_Stat44: 1.66969698e-16 syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 - syst_JES_EtaIntercalibration_Stat47: 1.3336791218280356e-16 - syst_JES_EtaIntercalibration_Stat48: 9.184107309232618e-13 - syst_JES_EtaIntercalibration_Stat49: 5.7566511749453775e-11 - syst_JES_EtaIntercalibration_Stat5: 1.5479161769294874e-13 - syst_JES_EtaIntercalibration_Stat50: 2.877799130224296e-06 - syst_JES_EtaIntercalibration_Stat51: 2.34332934322088e-09 - syst_JES_EtaIntercalibration_Stat52: 1.3268718245181033e-13 + syst_JES_EtaIntercalibration_Stat47: 1.33367912e-16 + syst_JES_EtaIntercalibration_Stat48: 9.18410731e-13 + syst_JES_EtaIntercalibration_Stat49: 5.75665117e-11 + syst_JES_EtaIntercalibration_Stat5: 1.54791618e-13 + syst_JES_EtaIntercalibration_Stat50: 2.87779913e-06 + syst_JES_EtaIntercalibration_Stat51: 2.34332934e-09 + syst_JES_EtaIntercalibration_Stat52: 1.32687182e-13 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 syst_JES_EtaIntercalibration_Stat56: 0.0 - syst_JES_EtaIntercalibration_Stat57: 2.2741886282397923e-11 - syst_JES_EtaIntercalibration_Stat58: 2.051506454486556e-11 - syst_JES_EtaIntercalibration_Stat59: 7.451776333692978e-06 - syst_JES_EtaIntercalibration_Stat6: 1.221178473934093e-12 - syst_JES_EtaIntercalibration_Stat60: 4.073639124572773e-06 - syst_JES_EtaIntercalibration_Stat61: 4.239942946255292e-11 - syst_JES_EtaIntercalibration_Stat62: 1.4081573065534972e-16 + syst_JES_EtaIntercalibration_Stat57: 2.27418863e-11 + syst_JES_EtaIntercalibration_Stat58: 2.05150645e-11 + syst_JES_EtaIntercalibration_Stat59: 7.45177633e-06 + syst_JES_EtaIntercalibration_Stat6: 1.22117847e-12 + syst_JES_EtaIntercalibration_Stat60: 4.07363912e-06 + syst_JES_EtaIntercalibration_Stat61: 4.23994295e-11 + syst_JES_EtaIntercalibration_Stat62: 1.40815731e-16 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 - syst_JES_EtaIntercalibration_Stat69: 1.9525677965182155e-16 - syst_JES_EtaIntercalibration_Stat7: 1.3305941138555366e-13 - syst_JES_EtaIntercalibration_Stat70: 2.315039344698055e-11 - syst_JES_EtaIntercalibration_Stat71: 5.429055725809081e-06 - syst_JES_EtaIntercalibration_Stat72: 1.6507942924553016e-05 - syst_JES_EtaIntercalibration_Stat73: 2.879326941158056e-06 - syst_JES_EtaIntercalibration_Stat74: 1.60432819818764e-12 + syst_JES_EtaIntercalibration_Stat69: 1.95256780e-16 + syst_JES_EtaIntercalibration_Stat7: 1.33059411e-13 + syst_JES_EtaIntercalibration_Stat70: 2.31503934e-11 + syst_JES_EtaIntercalibration_Stat71: 5.42905573e-06 + syst_JES_EtaIntercalibration_Stat72: 1.65079429e-05 + syst_JES_EtaIntercalibration_Stat73: 2.87932694e-06 + syst_JES_EtaIntercalibration_Stat74: 1.60432820e-12 syst_JES_EtaIntercalibration_Stat75: 0.0 syst_JES_EtaIntercalibration_Stat76: 0.0 syst_JES_EtaIntercalibration_Stat77: 0.0 syst_JES_EtaIntercalibration_Stat78: 0.0 - syst_JES_EtaIntercalibration_Stat79: 2.2401265822341378e-11 + syst_JES_EtaIntercalibration_Stat79: 2.24012658e-11 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 2.7622208023979545e-07 - syst_JES_EtaIntercalibration_Stat81: 3.5001032484771075e-06 - syst_JES_EtaIntercalibration_Stat82: 3.883155257004283e-06 - syst_JES_EtaIntercalibration_Stat83: 5.6633979861916824e-09 - syst_JES_EtaIntercalibration_Stat84: 6.755730363920691e-17 - syst_JES_EtaIntercalibration_Stat85: 1.6696969784963975e-16 - syst_JES_EtaIntercalibration_Stat86: 1.6696969784963975e-16 - syst_JES_EtaIntercalibration_Stat87: 1.6696969784963975e-16 - syst_JES_EtaIntercalibration_Stat88: 1.6696969784963975e-16 - syst_JES_EtaIntercalibration_Stat89: 1.6696969784963975e-16 + syst_JES_EtaIntercalibration_Stat80: 2.76222080e-07 + syst_JES_EtaIntercalibration_Stat81: 3.50010325e-06 + syst_JES_EtaIntercalibration_Stat82: 3.88315526e-06 + syst_JES_EtaIntercalibration_Stat83: 5.66339799e-09 + syst_JES_EtaIntercalibration_Stat84: 6.75573036e-17 + syst_JES_EtaIntercalibration_Stat85: 1.66969698e-16 + syst_JES_EtaIntercalibration_Stat86: 1.66969698e-16 + syst_JES_EtaIntercalibration_Stat87: 1.66969698e-16 + syst_JES_EtaIntercalibration_Stat88: 1.66969698e-16 + syst_JES_EtaIntercalibration_Stat89: 1.66969698e-16 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 8.743270847914984e-09 - syst_JES_EtaIntercalibration_Stat92: 5.365008311009406e-06 - syst_JES_EtaIntercalibration_Stat93: 1.6536708977263283e-05 - syst_JES_EtaIntercalibration_Stat94: 2.8849376629014016e-06 - syst_JES_EtaIntercalibration_Stat95: 1.9038521128228423e-11 - syst_JES_EtaIntercalibration_Stat96: 5.06482626571613e-13 - syst_JES_EtaIntercalibration_Stat97: 1.6696969784963975e-16 - syst_JES_EtaIntercalibration_Stat98: 1.6696969784963975e-16 - syst_JES_EtaIntercalibration_Stat99: 1.6696969784963975e-16 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.00716287553989318 - syst_JES_Flavour_Comp: 0.021492037479029297 - syst_JES_Flavour_Response: 0.010138233709576831 - syst_JES_Gjet_Generator: 0.03482072191956967 - syst_JES_Gjet_OOC: 0.02755042467912246 - syst_JES_Gjet_Purity: 0.008534994669008292 - syst_JES_Gjet_Stat1: 3.135877987103452e-06 - syst_JES_Gjet_Stat10: 0.000869526323638336 - syst_JES_Gjet_Stat11: 0.001112244874117206 - syst_JES_Gjet_Stat12: 0.004074499781261498 - syst_JES_Gjet_Stat13: 0.0083104833794431 - syst_JES_Gjet_Stat14: 0.005664554417604265 - syst_JES_Gjet_Stat15: 0.0018244442304438905 - syst_JES_Gjet_Stat2: 2.1572692808271644e-12 - syst_JES_Gjet_Stat3: 4.490341718622314e-07 - syst_JES_Gjet_Stat4: 6.736766799251701e-05 - syst_JES_Gjet_Stat5: 2.22481592381433e-06 - syst_JES_Gjet_Stat6: 0.0002387297007077251 - syst_JES_Gjet_Stat7: 0.0003056353709896811 - syst_JES_Gjet_Stat8: 0.00021515166743485862 - syst_JES_Gjet_Stat9: 0.00048146402513583506 - syst_JES_Gjet_Veto: 0.022425097547167993 - syst_JES_Gjet_dPhi: 0.002477523107863981 - syst_JES_LArESZee: 0.05196414533118004 - syst_JES_LArEsmear: 0.004053850716294324 - syst_JES_LAr_JVT: 0.005313748653257886 - syst_JES_MJB_Alpha: 0.0003256483225812778 - syst_JES_MJB_Asym: 0.001952782822026044 - syst_JES_MJB_Beta: 0.00025043268057503993 - syst_JES_MJB_Fragmentation: 0.005964870660793912 - syst_JES_MJB_Stat1: 7.207063410410867e-06 - syst_JES_MJB_Stat10: 2.874126084569012e-06 - syst_JES_MJB_Stat11: 1.3013384264191233e-06 - syst_JES_MJB_Stat12: 2.469887674250279e-06 - syst_JES_MJB_Stat13: 3.698794499511434e-06 - syst_JES_MJB_Stat14: 1.1768419211313132e-06 - syst_JES_MJB_Stat15: 4.2483473998720955e-07 - syst_JES_MJB_Stat16: 1.0810629188196833e-08 - syst_JES_MJB_Stat2: 0.00034401993139933037 - syst_JES_MJB_Stat3: 0.0005598854235466396 - syst_JES_MJB_Stat4: 0.00017970027128527103 + syst_JES_EtaIntercalibration_Stat91: 8.74327085e-09 + syst_JES_EtaIntercalibration_Stat92: 5.36500831e-06 + syst_JES_EtaIntercalibration_Stat93: 1.65367090e-05 + syst_JES_EtaIntercalibration_Stat94: 2.88493766e-06 + syst_JES_EtaIntercalibration_Stat95: 1.90385211e-11 + syst_JES_EtaIntercalibration_Stat96: 5.06482627e-13 + syst_JES_EtaIntercalibration_Stat97: 1.66969698e-16 + syst_JES_EtaIntercalibration_Stat98: 1.66969698e-16 + syst_JES_EtaIntercalibration_Stat99: 1.66969698e-16 + syst_JES_EtaIntercalibration_TotalStat_MJB: 7.16287554e-03 + syst_JES_Flavour_Comp: 2.14920375e-02 + syst_JES_Flavour_Response: 1.01382337e-02 + syst_JES_Gjet_Generator: 3.48207219e-02 + syst_JES_Gjet_OOC: 2.75504247e-02 + syst_JES_Gjet_Purity: 8.53499467e-03 + syst_JES_Gjet_Stat1: 3.13587799e-06 + syst_JES_Gjet_Stat10: 8.69526324e-04 + syst_JES_Gjet_Stat11: 1.11224487e-03 + syst_JES_Gjet_Stat12: 4.07449978e-03 + syst_JES_Gjet_Stat13: 8.31048338e-03 + syst_JES_Gjet_Stat14: 5.66455442e-03 + syst_JES_Gjet_Stat15: 1.82444423e-03 + syst_JES_Gjet_Stat2: 2.15726928e-12 + syst_JES_Gjet_Stat3: 4.49034172e-07 + syst_JES_Gjet_Stat4: 6.73676680e-05 + syst_JES_Gjet_Stat5: 2.22481592e-06 + syst_JES_Gjet_Stat6: 2.38729701e-04 + syst_JES_Gjet_Stat7: 3.05635371e-04 + syst_JES_Gjet_Stat8: 2.15151667e-04 + syst_JES_Gjet_Stat9: 4.81464025e-04 + syst_JES_Gjet_Veto: 2.24250975e-02 + syst_JES_Gjet_dPhi: 2.47752311e-03 + syst_JES_LArESZee: 5.19641453e-02 + syst_JES_LArEsmear: 4.05385072e-03 + syst_JES_LAr_JVT: 5.31374865e-03 + syst_JES_MJB_Alpha: 3.25648323e-04 + syst_JES_MJB_Asym: 1.95278282e-03 + syst_JES_MJB_Beta: 2.50432681e-04 + syst_JES_MJB_Fragmentation: 5.96487066e-03 + syst_JES_MJB_Stat1: 7.20706341e-06 + syst_JES_MJB_Stat10: 2.87412608e-06 + syst_JES_MJB_Stat11: 1.30133843e-06 + syst_JES_MJB_Stat12: 2.46988767e-06 + syst_JES_MJB_Stat13: 3.69879450e-06 + syst_JES_MJB_Stat14: 1.17684192e-06 + syst_JES_MJB_Stat15: 4.24834740e-07 + syst_JES_MJB_Stat16: 1.08106292e-08 + syst_JES_MJB_Stat2: 3.44019931e-04 + syst_JES_MJB_Stat3: 5.59885424e-04 + syst_JES_MJB_Stat4: 1.79700271e-04 syst_JES_MJB_Stat5: 0.0 - syst_JES_MJB_Stat6: 3.0224286592076907e-05 - syst_JES_MJB_Stat7: 2.232613490956283e-08 - syst_JES_MJB_Stat8: 1.9738350314046003e-06 - syst_JES_MJB_Stat9: 1.3315503257481483e-05 - syst_JES_MJB_Threshold: 0.002824446981269077 - syst_JES_Pileup_MuOffset: 0.0056016748388316865 - syst_JES_Pileup_NPVOffset: 0.005971659966039593 - syst_JES_Pileup_Pt_term: 0.007011096971943834 - syst_JES_Pileup_Rho_topology: 0.011120137903821155 - syst_JES_PunchThrough_MC15: 0.0029887881741602227 + syst_JES_MJB_Stat6: 3.02242866e-05 + syst_JES_MJB_Stat7: 2.23261349e-08 + syst_JES_MJB_Stat8: 1.97383503e-06 + syst_JES_MJB_Stat9: 1.33155033e-05 + syst_JES_MJB_Threshold: 2.82444698e-03 + syst_JES_Pileup_MuOffset: 5.60167484e-03 + syst_JES_Pileup_NPVOffset: 5.97165997e-03 + syst_JES_Pileup_Pt_term: 7.01109697e-03 + syst_JES_Pileup_Rho_topology: 1.11201379e-02 + syst_JES_PunchThrough_MC15: 2.98878817e-03 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.023133561658335276 - syst_JES_Zjet_MuScale: 0.0014706062525366877 - syst_JES_Zjet_MuSmearID: 0.000256450828620225 - syst_JES_Zjet_MuSmearMS: 0.006558461157161793 - syst_JES_Zjet_OOC: 0.010208239025414716 - syst_JES_Zjet_Stat1: 0.00042159576610777296 - syst_JES_Zjet_Stat10: 0.000852422646050655 - syst_JES_Zjet_Stat11: 0.001034122110778026 - syst_JES_Zjet_Stat12: 0.004737744822170143 - syst_JES_Zjet_Stat13: 0.007009963391487861 - syst_JES_Zjet_Stat2: 1.5003413344969205e-15 - syst_JES_Zjet_Stat3: 0.0001893869152687165 - syst_JES_Zjet_Stat4: 0.00018936326221049318 - syst_JES_Zjet_Stat5: 0.00024243652133084238 - syst_JES_Zjet_Stat6: 0.00025795218064594844 - syst_JES_Zjet_Stat7: 0.00014823230712297507 - syst_JES_Zjet_Stat8: 0.00021177230106886026 - syst_JES_Zjet_Stat9: 0.00045801666727314635 - syst_JES_Zjet_Veto: 0.0021473085479269158 - syst_JES_Zjet_dPhi: 0.0018069683865524597 + syst_JES_Zjet_MC: 2.31335617e-02 + syst_JES_Zjet_MuScale: 1.47060625e-03 + syst_JES_Zjet_MuSmearID: 2.56450829e-04 + syst_JES_Zjet_MuSmearMS: 6.55846116e-03 + syst_JES_Zjet_OOC: 1.02082390e-02 + syst_JES_Zjet_Stat1: 4.21595766e-04 + syst_JES_Zjet_Stat10: 8.52422646e-04 + syst_JES_Zjet_Stat11: 1.03412211e-03 + syst_JES_Zjet_Stat12: 4.73774482e-03 + syst_JES_Zjet_Stat13: 7.00996339e-03 + syst_JES_Zjet_Stat2: 1.50034133e-15 + syst_JES_Zjet_Stat3: 1.89386915e-04 + syst_JES_Zjet_Stat4: 1.89363262e-04 + syst_JES_Zjet_Stat5: 2.42436521e-04 + syst_JES_Zjet_Stat6: 2.57952181e-04 + syst_JES_Zjet_Stat7: 1.48232307e-04 + syst_JES_Zjet_Stat8: 2.11772301e-04 + syst_JES_Zjet_Stat9: 4.58016667e-04 + syst_JES_Zjet_Veto: 2.14730855e-03 + syst_JES_Zjet_dPhi: 1.80696839e-03 syst_PRW: 0.002343 - syst_Unfolding_bias: 3.445e-11 - syst_cleaning: 0.008474058576030731 + syst_Unfolding_bias: 3.44500000e-11 + syst_cleaning: 8.47405858e-03 syst_lumi: 0.03251 - stat: 0.005487 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.008793674772243968 - syst_JER_NP1: 0.00038038023660542616 - syst_JER_NP2: 0.004906345686964994 - syst_JER_NP3: 0.0006665330751733181 - syst_JER_NP4: 1.1123530768150912e-07 - syst_JER_NP5: 0.0008516585466018644 - syst_JER_NP6: 2.2084670588442112e-07 - syst_JER_NP7: 2.652397170485597e-07 - syst_JER_NP8: 0.0008256585371689679 - syst_JES_EtaIntercalibration_Modelling: 0.051542202126024846 - syst_JES_EtaIntercalibration_NonClosure: 0.0004993808441460285 - syst_JES_EtaIntercalibration_Stat0: 2.756558860245868e-17 + syst_JER_NP0: 8.79367477e-03 + syst_JER_NP1: 3.80380237e-04 + syst_JER_NP2: 4.90634569e-03 + syst_JER_NP3: 6.66533075e-04 + syst_JER_NP4: 1.11235308e-07 + syst_JER_NP5: 8.51658547e-04 + syst_JER_NP6: 2.20846706e-07 + syst_JER_NP7: 2.65239717e-07 + syst_JER_NP8: 8.25658537e-04 + syst_JES_EtaIntercalibration_Modelling: 5.15422021e-02 + syst_JES_EtaIntercalibration_NonClosure: 4.99380844e-04 + syst_JES_EtaIntercalibration_Stat0: 2.75655886e-17 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 2.771100680918685e-12 - syst_JES_EtaIntercalibration_Stat101: 8.966260131738316e-08 - syst_JES_EtaIntercalibration_Stat102: 2.0207407057809277e-06 - syst_JES_EtaIntercalibration_Stat103: 2.0634172505821506e-06 - syst_JES_EtaIntercalibration_Stat104: 1.1030794837635228e-08 - syst_JES_EtaIntercalibration_Stat105: 3.083120943135381e-17 - syst_JES_EtaIntercalibration_Stat106: 2.756558860245868e-17 - syst_JES_EtaIntercalibration_Stat107: 2.756558860245868e-17 - syst_JES_EtaIntercalibration_Stat108: 2.756558860245868e-17 - syst_JES_EtaIntercalibration_Stat109: 2.756558860245868e-17 + syst_JES_EtaIntercalibration_Stat100: 2.77110068e-12 + syst_JES_EtaIntercalibration_Stat101: 8.96626013e-08 + syst_JES_EtaIntercalibration_Stat102: 2.02074071e-06 + syst_JES_EtaIntercalibration_Stat103: 2.06341725e-06 + syst_JES_EtaIntercalibration_Stat104: 1.10307948e-08 + syst_JES_EtaIntercalibration_Stat105: 3.08312094e-17 + syst_JES_EtaIntercalibration_Stat106: 2.75655886e-17 + syst_JES_EtaIntercalibration_Stat107: 2.75655886e-17 + syst_JES_EtaIntercalibration_Stat108: 2.75655886e-17 + syst_JES_EtaIntercalibration_Stat109: 2.75655886e-17 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 4.006065494971344e-15 - syst_JES_EtaIntercalibration_Stat111: 4.0809491543022194e-08 - syst_JES_EtaIntercalibration_Stat112: 4.353911152056276e-06 - syst_JES_EtaIntercalibration_Stat113: 2.4705809094219116e-06 - syst_JES_EtaIntercalibration_Stat114: 1.9758130554280687e-06 - syst_JES_EtaIntercalibration_Stat115: 3.2538901744680938e-09 - syst_JES_EtaIntercalibration_Stat116: 6.253517153219997e-14 - syst_JES_EtaIntercalibration_Stat117: 2.756558860245868e-17 - syst_JES_EtaIntercalibration_Stat118: 2.756558860245868e-17 - syst_JES_EtaIntercalibration_Stat119: 2.756558860245868e-17 + syst_JES_EtaIntercalibration_Stat110: 4.00606549e-15 + syst_JES_EtaIntercalibration_Stat111: 4.08094915e-08 + syst_JES_EtaIntercalibration_Stat112: 4.35391115e-06 + syst_JES_EtaIntercalibration_Stat113: 2.47058091e-06 + syst_JES_EtaIntercalibration_Stat114: 1.97581306e-06 + syst_JES_EtaIntercalibration_Stat115: 3.25389017e-09 + syst_JES_EtaIntercalibration_Stat116: 6.25351715e-14 + syst_JES_EtaIntercalibration_Stat117: 2.75655886e-17 + syst_JES_EtaIntercalibration_Stat118: 2.75655886e-17 + syst_JES_EtaIntercalibration_Stat119: 2.75655886e-17 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 2.707195412230155e-11 - syst_JES_EtaIntercalibration_Stat121: 8.668037032685082e-06 - syst_JES_EtaIntercalibration_Stat122: 3.854607762146494e-06 - syst_JES_EtaIntercalibration_Stat123: 8.690270421569169e-06 - syst_JES_EtaIntercalibration_Stat124: 1.6603174899699152e-06 - syst_JES_EtaIntercalibration_Stat125: 1.054385929107554e-13 - syst_JES_EtaIntercalibration_Stat126: 2.756558860245868e-17 - syst_JES_EtaIntercalibration_Stat127: 2.756558860245868e-17 - syst_JES_EtaIntercalibration_Stat128: 2.756558860245868e-17 - syst_JES_EtaIntercalibration_Stat129: 2.049153041502757e-08 + syst_JES_EtaIntercalibration_Stat120: 2.70719541e-11 + syst_JES_EtaIntercalibration_Stat121: 8.66803703e-06 + syst_JES_EtaIntercalibration_Stat122: 3.85460776e-06 + syst_JES_EtaIntercalibration_Stat123: 8.69027042e-06 + syst_JES_EtaIntercalibration_Stat124: 1.66031749e-06 + syst_JES_EtaIntercalibration_Stat125: 1.05438593e-13 + syst_JES_EtaIntercalibration_Stat126: 2.75655886e-17 + syst_JES_EtaIntercalibration_Stat127: 2.75655886e-17 + syst_JES_EtaIntercalibration_Stat128: 2.75655886e-17 + syst_JES_EtaIntercalibration_Stat129: 2.04915304e-08 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 2.1577775603615865e-05 - syst_JES_EtaIntercalibration_Stat131: 2.204083158027392e-05 - syst_JES_EtaIntercalibration_Stat132: 3.456833190580651e-05 - syst_JES_EtaIntercalibration_Stat133: 7.486979547855063e-06 - syst_JES_EtaIntercalibration_Stat134: 1.841367281885936e-06 - syst_JES_EtaIntercalibration_Stat135: 6.254435466131216e-14 + syst_JES_EtaIntercalibration_Stat130: 2.15777756e-05 + syst_JES_EtaIntercalibration_Stat131: 2.20408316e-05 + syst_JES_EtaIntercalibration_Stat132: 3.45683319e-05 + syst_JES_EtaIntercalibration_Stat133: 7.48697955e-06 + syst_JES_EtaIntercalibration_Stat134: 1.84136728e-06 + syst_JES_EtaIntercalibration_Stat135: 6.25443547e-14 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 syst_JES_EtaIntercalibration_Stat138: 0.0 - syst_JES_EtaIntercalibration_Stat139: 1.5400564502640804e-07 - syst_JES_EtaIntercalibration_Stat14: 2.7998636219782594e-12 - syst_JES_EtaIntercalibration_Stat140: 1.2681098059710762e-05 - syst_JES_EtaIntercalibration_Stat141: 3.0121414309424454e-05 - syst_JES_EtaIntercalibration_Stat142: 3.148819313647577e-05 - syst_JES_EtaIntercalibration_Stat143: 7.3626827311789e-06 - syst_JES_EtaIntercalibration_Stat144: 7.130440886088321e-10 + syst_JES_EtaIntercalibration_Stat139: 1.54005645e-07 + syst_JES_EtaIntercalibration_Stat14: 2.79986362e-12 + syst_JES_EtaIntercalibration_Stat140: 1.26810981e-05 + syst_JES_EtaIntercalibration_Stat141: 3.01214143e-05 + syst_JES_EtaIntercalibration_Stat142: 3.14881931e-05 + syst_JES_EtaIntercalibration_Stat143: 7.36268273e-06 + syst_JES_EtaIntercalibration_Stat144: 7.13044089e-10 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 2.395798196843799e-09 - syst_JES_EtaIntercalibration_Stat148: 1.1130388223238218e-05 - syst_JES_EtaIntercalibration_Stat149: 2.6585237082824744e-05 - syst_JES_EtaIntercalibration_Stat15: 2.793821835519078e-12 - syst_JES_EtaIntercalibration_Stat150: 2.9481436108168137e-05 - syst_JES_EtaIntercalibration_Stat151: 1.08482632135287e-05 - syst_JES_EtaIntercalibration_Stat152: 1.4392381343961117e-08 + syst_JES_EtaIntercalibration_Stat147: 2.39579820e-09 + syst_JES_EtaIntercalibration_Stat148: 1.11303882e-05 + syst_JES_EtaIntercalibration_Stat149: 2.65852371e-05 + syst_JES_EtaIntercalibration_Stat15: 2.79382184e-12 + syst_JES_EtaIntercalibration_Stat150: 2.94814361e-05 + syst_JES_EtaIntercalibration_Stat151: 1.08482632e-05 + syst_JES_EtaIntercalibration_Stat152: 1.43923813e-08 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 syst_JES_EtaIntercalibration_Stat156: 0.0 - syst_JES_EtaIntercalibration_Stat157: 2.91827833319579e-08 - syst_JES_EtaIntercalibration_Stat158: 1.2074100629032374e-05 - syst_JES_EtaIntercalibration_Stat159: 3.5114555112517086e-05 - syst_JES_EtaIntercalibration_Stat16: 2.783452214178154e-12 - syst_JES_EtaIntercalibration_Stat160: 2.8931643519682737e-05 - syst_JES_EtaIntercalibration_Stat161: 6.8798868268308015e-06 - syst_JES_EtaIntercalibration_Stat162: 6.993253599541489e-10 + syst_JES_EtaIntercalibration_Stat157: 2.91827833e-08 + syst_JES_EtaIntercalibration_Stat158: 1.20741006e-05 + syst_JES_EtaIntercalibration_Stat159: 3.51145551e-05 + syst_JES_EtaIntercalibration_Stat16: 2.78345221e-12 + syst_JES_EtaIntercalibration_Stat160: 2.89316435e-05 + syst_JES_EtaIntercalibration_Stat161: 6.87988683e-06 + syst_JES_EtaIntercalibration_Stat162: 6.99325360e-10 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 5.422902699431367e-09 - syst_JES_EtaIntercalibration_Stat166: 2.5565931446947126e-05 - syst_JES_EtaIntercalibration_Stat167: 5.9908740597679066e-05 - syst_JES_EtaIntercalibration_Stat168: 0.00012187657814362856 - syst_JES_EtaIntercalibration_Stat169: 2.135288270936737e-05 - syst_JES_EtaIntercalibration_Stat17: 2.276780786549289e-17 - syst_JES_EtaIntercalibration_Stat170: 1.7809149860394797e-06 + syst_JES_EtaIntercalibration_Stat165: 5.42290270e-09 + syst_JES_EtaIntercalibration_Stat166: 2.55659314e-05 + syst_JES_EtaIntercalibration_Stat167: 5.99087406e-05 + syst_JES_EtaIntercalibration_Stat168: 1.21876578e-04 + syst_JES_EtaIntercalibration_Stat169: 2.13528827e-05 + syst_JES_EtaIntercalibration_Stat17: 2.27678079e-17 + syst_JES_EtaIntercalibration_Stat170: 1.78091499e-06 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 - syst_JES_EtaIntercalibration_Stat175: 1.967913397688018e-05 - syst_JES_EtaIntercalibration_Stat176: 7.25889734532732e-05 - syst_JES_EtaIntercalibration_Stat177: 0.0001675133726005181 - syst_JES_EtaIntercalibration_Stat178: 9.893260572227944e-05 - syst_JES_EtaIntercalibration_Stat179: 5.7165844417799e-06 + syst_JES_EtaIntercalibration_Stat175: 1.96791340e-05 + syst_JES_EtaIntercalibration_Stat176: 7.25889735e-05 + syst_JES_EtaIntercalibration_Stat177: 1.67513373e-04 + syst_JES_EtaIntercalibration_Stat178: 9.89326057e-05 + syst_JES_EtaIntercalibration_Stat179: 5.71658444e-06 syst_JES_EtaIntercalibration_Stat18: 0.0 - syst_JES_EtaIntercalibration_Stat180: 1.9520210892345047e-06 + syst_JES_EtaIntercalibration_Stat180: 1.95202109e-06 syst_JES_EtaIntercalibration_Stat181: 0.0 - syst_JES_EtaIntercalibration_Stat182: 1.862966706170564e-06 - syst_JES_EtaIntercalibration_Stat183: 9.008370149477652e-05 - syst_JES_EtaIntercalibration_Stat184: 0.0003062608487874348 - syst_JES_EtaIntercalibration_Stat185: 0.0006123216862891596 - syst_JES_EtaIntercalibration_Stat186: 0.00011007687177604567 - syst_JES_EtaIntercalibration_Stat187: 1.6958895650587041e-06 + syst_JES_EtaIntercalibration_Stat182: 1.86296671e-06 + syst_JES_EtaIntercalibration_Stat183: 9.00837015e-05 + syst_JES_EtaIntercalibration_Stat184: 3.06260849e-04 + syst_JES_EtaIntercalibration_Stat185: 6.12321686e-04 + syst_JES_EtaIntercalibration_Stat186: 1.10076872e-04 + syst_JES_EtaIntercalibration_Stat187: 1.69588957e-06 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 - syst_JES_EtaIntercalibration_Stat192: 7.298249293494982e-06 - syst_JES_EtaIntercalibration_Stat193: 0.00019950406010906145 - syst_JES_EtaIntercalibration_Stat194: 0.0005262195620651136 - syst_JES_EtaIntercalibration_Stat195: 0.00038530532049272303 - syst_JES_EtaIntercalibration_Stat196: 7.449600173834834e-05 - syst_JES_EtaIntercalibration_Stat197: 2.0461174819643178e-06 - syst_JES_EtaIntercalibration_Stat198: 0.00012447944127445305 - syst_JES_EtaIntercalibration_Stat199: 0.0008007342677193226 + syst_JES_EtaIntercalibration_Stat192: 7.29824929e-06 + syst_JES_EtaIntercalibration_Stat193: 1.99504060e-04 + syst_JES_EtaIntercalibration_Stat194: 5.26219562e-04 + syst_JES_EtaIntercalibration_Stat195: 3.85305320e-04 + syst_JES_EtaIntercalibration_Stat196: 7.44960017e-05 + syst_JES_EtaIntercalibration_Stat197: 2.04611748e-06 + syst_JES_EtaIntercalibration_Stat198: 1.24479441e-04 + syst_JES_EtaIntercalibration_Stat199: 8.00734268e-04 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 0.0009499474235451139 - syst_JES_EtaIntercalibration_Stat201: 0.0002886737951390808 - syst_JES_EtaIntercalibration_Stat202: 2.5957347105395803e-05 + syst_JES_EtaIntercalibration_Stat200: 9.49947424e-04 + syst_JES_EtaIntercalibration_Stat201: 2.88673795e-04 + syst_JES_EtaIntercalibration_Stat202: 2.59573471e-05 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 - syst_JES_EtaIntercalibration_Stat207: 5.952340212051055e-06 - syst_JES_EtaIntercalibration_Stat208: 0.00030726429584317154 - syst_JES_EtaIntercalibration_Stat209: 0.000895300541717696 + syst_JES_EtaIntercalibration_Stat207: 5.95234021e-06 + syst_JES_EtaIntercalibration_Stat208: 3.07264296e-04 + syst_JES_EtaIntercalibration_Stat209: 8.95300542e-04 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 0.00061290053842365 - syst_JES_EtaIntercalibration_Stat211: 0.00014935117910481994 - syst_JES_EtaIntercalibration_Stat212: 0.00034670587073195057 - syst_JES_EtaIntercalibration_Stat213: 0.0005298334714794829 - syst_JES_EtaIntercalibration_Stat214: 0.00010678726270019285 - syst_JES_EtaIntercalibration_Stat215: 3.6087054119171327e-06 + syst_JES_EtaIntercalibration_Stat210: 6.12900538e-04 + syst_JES_EtaIntercalibration_Stat211: 1.49351179e-04 + syst_JES_EtaIntercalibration_Stat212: 3.46705871e-04 + syst_JES_EtaIntercalibration_Stat213: 5.29833471e-04 + syst_JES_EtaIntercalibration_Stat214: 1.06787263e-04 + syst_JES_EtaIntercalibration_Stat215: 3.60870541e-06 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 syst_JES_EtaIntercalibration_Stat219: 0.0 - syst_JES_EtaIntercalibration_Stat22: 2.756558860245868e-17 - syst_JES_EtaIntercalibration_Stat220: 7.321663523407778e-06 - syst_JES_EtaIntercalibration_Stat221: 0.00012859480267491373 - syst_JES_EtaIntercalibration_Stat222: 0.0004450194462043204 - syst_JES_EtaIntercalibration_Stat223: 0.0004020794044713059 - syst_JES_EtaIntercalibration_Stat224: 0.00019566738409862794 - syst_JES_EtaIntercalibration_Stat225: 0.0002231409751704066 - syst_JES_EtaIntercalibration_Stat226: 7.389810004830977e-05 - syst_JES_EtaIntercalibration_Stat227: 2.7097536327127602e-06 + syst_JES_EtaIntercalibration_Stat22: 2.75655886e-17 + syst_JES_EtaIntercalibration_Stat220: 7.32166352e-06 + syst_JES_EtaIntercalibration_Stat221: 1.28594803e-04 + syst_JES_EtaIntercalibration_Stat222: 4.45019446e-04 + syst_JES_EtaIntercalibration_Stat223: 4.02079404e-04 + syst_JES_EtaIntercalibration_Stat224: 1.95667384e-04 + syst_JES_EtaIntercalibration_Stat225: 2.23140975e-04 + syst_JES_EtaIntercalibration_Stat226: 7.38981000e-05 + syst_JES_EtaIntercalibration_Stat227: 2.70975363e-06 syst_JES_EtaIntercalibration_Stat228: 0.0 syst_JES_EtaIntercalibration_Stat229: 0.0 - syst_JES_EtaIntercalibration_Stat23: 2.756558860245868e-17 + syst_JES_EtaIntercalibration_Stat23: 2.75655886e-17 syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 - syst_JES_EtaIntercalibration_Stat232: 4.85292929579651e-06 - syst_JES_EtaIntercalibration_Stat233: 3.763623456192184e-05 - syst_JES_EtaIntercalibration_Stat234: 0.00015277037245487097 - syst_JES_EtaIntercalibration_Stat235: 0.0001673669844981381 - syst_JES_EtaIntercalibration_Stat236: 5.2879505245416203e-05 - syst_JES_EtaIntercalibration_Stat237: 2.402825836385151e-05 - syst_JES_EtaIntercalibration_Stat238: 5.882044542503908e-07 + syst_JES_EtaIntercalibration_Stat232: 4.85292930e-06 + syst_JES_EtaIntercalibration_Stat233: 3.76362346e-05 + syst_JES_EtaIntercalibration_Stat234: 1.52770372e-04 + syst_JES_EtaIntercalibration_Stat235: 1.67366984e-04 + syst_JES_EtaIntercalibration_Stat236: 5.28795052e-05 + syst_JES_EtaIntercalibration_Stat237: 2.40282584e-05 + syst_JES_EtaIntercalibration_Stat238: 5.88204454e-07 syst_JES_EtaIntercalibration_Stat239: 0.0 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 - syst_JES_EtaIntercalibration_Stat243: 4.232757357185355e-06 - syst_JES_EtaIntercalibration_Stat244: 2.0125696428943768e-05 - syst_JES_EtaIntercalibration_Stat245: 7.386943581076006e-05 - syst_JES_EtaIntercalibration_Stat25: 2.1754558143065098e-17 - syst_JES_EtaIntercalibration_Stat26: 2.999388604365896e-15 - syst_JES_EtaIntercalibration_Stat27: 2.3350812158627377e-12 - syst_JES_EtaIntercalibration_Stat28: 1.8697466453443945e-06 - syst_JES_EtaIntercalibration_Stat29: 2.5904818446574762e-12 + syst_JES_EtaIntercalibration_Stat243: 4.23275736e-06 + syst_JES_EtaIntercalibration_Stat244: 2.01256964e-05 + syst_JES_EtaIntercalibration_Stat245: 7.38694358e-05 + syst_JES_EtaIntercalibration_Stat25: 2.17545581e-17 + syst_JES_EtaIntercalibration_Stat26: 2.99938860e-15 + syst_JES_EtaIntercalibration_Stat27: 2.33508122e-12 + syst_JES_EtaIntercalibration_Stat28: 1.86974665e-06 + syst_JES_EtaIntercalibration_Stat29: 2.59048184e-12 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 2.1523782648677253e-16 + syst_JES_EtaIntercalibration_Stat30: 2.15237826e-16 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 3.893941995908516e-17 - syst_JES_EtaIntercalibration_Stat36: 2.7226182945001676e-12 - syst_JES_EtaIntercalibration_Stat37: 1.937298781615892e-06 - syst_JES_EtaIntercalibration_Stat38: 1.936432754191382e-06 - syst_JES_EtaIntercalibration_Stat39: 1.0827262842819508e-13 - syst_JES_EtaIntercalibration_Stat4: 2.9825914906336065e-17 - syst_JES_EtaIntercalibration_Stat40: 1.784878357199728e-17 + syst_JES_EtaIntercalibration_Stat35: 3.89394200e-17 + syst_JES_EtaIntercalibration_Stat36: 2.72261829e-12 + syst_JES_EtaIntercalibration_Stat37: 1.93729878e-06 + syst_JES_EtaIntercalibration_Stat38: 1.93643275e-06 + syst_JES_EtaIntercalibration_Stat39: 1.08272628e-13 + syst_JES_EtaIntercalibration_Stat4: 2.98259149e-17 + syst_JES_EtaIntercalibration_Stat40: 1.78487836e-17 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 - syst_JES_EtaIntercalibration_Stat44: 2.756558860245868e-17 + syst_JES_EtaIntercalibration_Stat44: 2.75655886e-17 syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 - syst_JES_EtaIntercalibration_Stat47: 2.1763218397102943e-17 - syst_JES_EtaIntercalibration_Stat48: 1.1685868677595175e-13 - syst_JES_EtaIntercalibration_Stat49: 7.1236670858484115e-12 - syst_JES_EtaIntercalibration_Stat5: 1.980865979817918e-14 - syst_JES_EtaIntercalibration_Stat50: 1.8351074134840352e-06 - syst_JES_EtaIntercalibration_Stat51: 3.197904306973045e-09 - syst_JES_EtaIntercalibration_Stat52: 1.688867903856012e-14 + syst_JES_EtaIntercalibration_Stat47: 2.17632184e-17 + syst_JES_EtaIntercalibration_Stat48: 1.16858687e-13 + syst_JES_EtaIntercalibration_Stat49: 7.12366709e-12 + syst_JES_EtaIntercalibration_Stat5: 1.98086598e-14 + syst_JES_EtaIntercalibration_Stat50: 1.83510741e-06 + syst_JES_EtaIntercalibration_Stat51: 3.19790431e-09 + syst_JES_EtaIntercalibration_Stat52: 1.68886790e-14 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 syst_JES_EtaIntercalibration_Stat56: 0.0 - syst_JES_EtaIntercalibration_Stat57: 2.799003923010382e-12 - syst_JES_EtaIntercalibration_Stat58: 2.5237781587730724e-12 - syst_JES_EtaIntercalibration_Stat59: 2.1581841800691502e-06 - syst_JES_EtaIntercalibration_Stat6: 1.5153450786866996e-13 - syst_JES_EtaIntercalibration_Stat60: 1.9442088629622804e-06 - syst_JES_EtaIntercalibration_Stat61: 5.230461808299054e-12 - syst_JES_EtaIntercalibration_Stat62: 2.3226801329498644e-17 + syst_JES_EtaIntercalibration_Stat57: 2.79900392e-12 + syst_JES_EtaIntercalibration_Stat58: 2.52377816e-12 + syst_JES_EtaIntercalibration_Stat59: 2.15818418e-06 + syst_JES_EtaIntercalibration_Stat6: 1.51534508e-13 + syst_JES_EtaIntercalibration_Stat60: 1.94420886e-06 + syst_JES_EtaIntercalibration_Stat61: 5.23046181e-12 + syst_JES_EtaIntercalibration_Stat62: 2.32268013e-17 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 - syst_JES_EtaIntercalibration_Stat69: 3.198122066150696e-17 - syst_JES_EtaIntercalibration_Stat7: 1.695121541564203e-14 - syst_JES_EtaIntercalibration_Stat70: 2.8760519379872126e-12 - syst_JES_EtaIntercalibration_Stat71: 3.299289896770616e-06 - syst_JES_EtaIntercalibration_Stat72: 9.779268784105896e-06 - syst_JES_EtaIntercalibration_Stat73: 1.8350817041208398e-06 - syst_JES_EtaIntercalibration_Stat74: 2.0334795075190702e-13 + syst_JES_EtaIntercalibration_Stat69: 3.19812207e-17 + syst_JES_EtaIntercalibration_Stat7: 1.69512154e-14 + syst_JES_EtaIntercalibration_Stat70: 2.87605194e-12 + syst_JES_EtaIntercalibration_Stat71: 3.29928990e-06 + syst_JES_EtaIntercalibration_Stat72: 9.77926878e-06 + syst_JES_EtaIntercalibration_Stat73: 1.83508170e-06 + syst_JES_EtaIntercalibration_Stat74: 2.03347951e-13 syst_JES_EtaIntercalibration_Stat75: 0.0 syst_JES_EtaIntercalibration_Stat76: 0.0 syst_JES_EtaIntercalibration_Stat77: 0.0 syst_JES_EtaIntercalibration_Stat78: 0.0 - syst_JES_EtaIntercalibration_Stat79: 2.7565336141086238e-12 + syst_JES_EtaIntercalibration_Stat79: 2.75653361e-12 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 4.927575881455302e-08 - syst_JES_EtaIntercalibration_Stat81: 1.9820239655463306e-06 - syst_JES_EtaIntercalibration_Stat82: 1.9512315982476298e-06 - syst_JES_EtaIntercalibration_Stat83: 7.139269640516458e-10 - syst_JES_EtaIntercalibration_Stat84: 1.1023030847616276e-17 - syst_JES_EtaIntercalibration_Stat85: 2.756558860245868e-17 - syst_JES_EtaIntercalibration_Stat86: 2.756558860245868e-17 - syst_JES_EtaIntercalibration_Stat87: 2.756558860245868e-17 - syst_JES_EtaIntercalibration_Stat88: 2.756558860245868e-17 - syst_JES_EtaIntercalibration_Stat89: 2.756558860245868e-17 + syst_JES_EtaIntercalibration_Stat80: 4.92757588e-08 + syst_JES_EtaIntercalibration_Stat81: 1.98202397e-06 + syst_JES_EtaIntercalibration_Stat82: 1.95123160e-06 + syst_JES_EtaIntercalibration_Stat83: 7.13926964e-10 + syst_JES_EtaIntercalibration_Stat84: 1.10230308e-17 + syst_JES_EtaIntercalibration_Stat85: 2.75655886e-17 + syst_JES_EtaIntercalibration_Stat86: 2.75655886e-17 + syst_JES_EtaIntercalibration_Stat87: 2.75655886e-17 + syst_JES_EtaIntercalibration_Stat88: 2.75655886e-17 + syst_JES_EtaIntercalibration_Stat89: 2.75655886e-17 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 1.2280710695537943e-09 - syst_JES_EtaIntercalibration_Stat92: 3.2881578214131923e-06 - syst_JES_EtaIntercalibration_Stat93: 9.787391030565807e-06 - syst_JES_EtaIntercalibration_Stat94: 1.835772651139151e-06 - syst_JES_EtaIntercalibration_Stat95: 2.354421556879736e-12 - syst_JES_EtaIntercalibration_Stat96: 6.253517153219997e-14 - syst_JES_EtaIntercalibration_Stat97: 2.756558860245868e-17 - syst_JES_EtaIntercalibration_Stat98: 2.756558860245868e-17 - syst_JES_EtaIntercalibration_Stat99: 2.756558860245868e-17 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0048671460580097655 - syst_JES_Flavour_Comp: 0.014356633031459709 - syst_JES_Flavour_Response: 0.005318593117545278 - syst_JES_Gjet_Generator: 0.021927573395157066 - syst_JES_Gjet_OOC: 0.017526214651201782 - syst_JES_Gjet_Purity: 0.005000793736998158 - syst_JES_Gjet_Stat1: 8.93911421786297e-06 - syst_JES_Gjet_Stat10: 0.00047137300251499345 - syst_JES_Gjet_Stat11: 0.0005775201035461882 - syst_JES_Gjet_Stat12: 0.0022176239536945844 - syst_JES_Gjet_Stat13: 0.005354534036683304 - syst_JES_Gjet_Stat14: 0.0055435092450540745 - syst_JES_Gjet_Stat15: 0.001020284983472755 - syst_JES_Gjet_Stat2: 2.128690554017378e-13 - syst_JES_Gjet_Stat3: 2.5599710935867885e-06 - syst_JES_Gjet_Stat4: 4.5036443853839086e-05 - syst_JES_Gjet_Stat5: 3.5732163646661995e-07 - syst_JES_Gjet_Stat6: 0.00014531543990574435 - syst_JES_Gjet_Stat7: 0.0001847065984203055 - syst_JES_Gjet_Stat8: 0.00014972387518361925 - syst_JES_Gjet_Stat9: 0.00029354506894172145 - syst_JES_Gjet_Veto: 0.015206882487873706 - syst_JES_Gjet_dPhi: 0.0016362275972492337 - syst_JES_LArESZee: 0.03289324550724662 - syst_JES_LArEsmear: 0.002642998675746925 - syst_JES_LAr_JVT: 0.003333349179129003 - syst_JES_MJB_Alpha: 0.00019994364205945636 - syst_JES_MJB_Asym: 0.001401397840550641 - syst_JES_MJB_Beta: 0.00015902773343036744 - syst_JES_MJB_Fragmentation: 0.0035892613097962094 - syst_JES_MJB_Stat1: 1.1680951150560054e-06 - syst_JES_MJB_Stat10: 3.2258002108004146e-06 - syst_JES_MJB_Stat11: 7.25121498440089e-06 - syst_JES_MJB_Stat12: 2.896702577115702e-06 - syst_JES_MJB_Stat13: 2.5582389366045347e-06 - syst_JES_MJB_Stat14: 9.6405933350991e-07 - syst_JES_MJB_Stat15: 9.6774662360558e-07 - syst_JES_MJB_Stat16: 6.603184920048109e-08 - syst_JES_MJB_Stat2: 0.00015302668884871067 - syst_JES_MJB_Stat3: 0.0003364941706404436 - syst_JES_MJB_Stat4: 0.0001320688740771269 + syst_JES_EtaIntercalibration_Stat91: 1.22807107e-09 + syst_JES_EtaIntercalibration_Stat92: 3.28815782e-06 + syst_JES_EtaIntercalibration_Stat93: 9.78739103e-06 + syst_JES_EtaIntercalibration_Stat94: 1.83577265e-06 + syst_JES_EtaIntercalibration_Stat95: 2.35442156e-12 + syst_JES_EtaIntercalibration_Stat96: 6.25351715e-14 + syst_JES_EtaIntercalibration_Stat97: 2.75655886e-17 + syst_JES_EtaIntercalibration_Stat98: 2.75655886e-17 + syst_JES_EtaIntercalibration_Stat99: 2.75655886e-17 + syst_JES_EtaIntercalibration_TotalStat_MJB: 4.86714606e-03 + syst_JES_Flavour_Comp: 1.43566330e-02 + syst_JES_Flavour_Response: 5.31859312e-03 + syst_JES_Gjet_Generator: 2.19275734e-02 + syst_JES_Gjet_OOC: 1.75262147e-02 + syst_JES_Gjet_Purity: 5.00079374e-03 + syst_JES_Gjet_Stat1: 8.93911422e-06 + syst_JES_Gjet_Stat10: 4.71373003e-04 + syst_JES_Gjet_Stat11: 5.77520104e-04 + syst_JES_Gjet_Stat12: 2.21762395e-03 + syst_JES_Gjet_Stat13: 5.35453404e-03 + syst_JES_Gjet_Stat14: 5.54350925e-03 + syst_JES_Gjet_Stat15: 1.02028498e-03 + syst_JES_Gjet_Stat2: 2.12869055e-13 + syst_JES_Gjet_Stat3: 2.55997109e-06 + syst_JES_Gjet_Stat4: 4.50364439e-05 + syst_JES_Gjet_Stat5: 3.57321636e-07 + syst_JES_Gjet_Stat6: 1.45315440e-04 + syst_JES_Gjet_Stat7: 1.84706598e-04 + syst_JES_Gjet_Stat8: 1.49723875e-04 + syst_JES_Gjet_Stat9: 2.93545069e-04 + syst_JES_Gjet_Veto: 1.52068825e-02 + syst_JES_Gjet_dPhi: 1.63622760e-03 + syst_JES_LArESZee: 3.28932455e-02 + syst_JES_LArEsmear: 2.64299868e-03 + syst_JES_LAr_JVT: 3.33334918e-03 + syst_JES_MJB_Alpha: 1.99943642e-04 + syst_JES_MJB_Asym: 1.40139784e-03 + syst_JES_MJB_Beta: 1.59027733e-04 + syst_JES_MJB_Fragmentation: 3.58926131e-03 + syst_JES_MJB_Stat1: 1.16809512e-06 + syst_JES_MJB_Stat10: 3.22580021e-06 + syst_JES_MJB_Stat11: 7.25121498e-06 + syst_JES_MJB_Stat12: 2.89670258e-06 + syst_JES_MJB_Stat13: 2.55823894e-06 + syst_JES_MJB_Stat14: 9.64059334e-07 + syst_JES_MJB_Stat15: 9.67746624e-07 + syst_JES_MJB_Stat16: 6.60318492e-08 + syst_JES_MJB_Stat2: 1.53026689e-04 + syst_JES_MJB_Stat3: 3.36494171e-04 + syst_JES_MJB_Stat4: 1.32068874e-04 syst_JES_MJB_Stat5: 0.0 - syst_JES_MJB_Stat6: 3.286566407361945e-05 - syst_JES_MJB_Stat7: 2.949682525289798e-07 - syst_JES_MJB_Stat8: 1.0487435972033392e-05 - syst_JES_MJB_Stat9: 3.82502591233053e-05 - syst_JES_MJB_Threshold: 0.0018060199334448109 - syst_JES_Pileup_MuOffset: 0.003746939651235392 - syst_JES_Pileup_NPVOffset: 0.0039003914428554476 - syst_JES_Pileup_Pt_term: 0.004166384043748248 - syst_JES_Pileup_Rho_topology: 0.006947967832395312 - syst_JES_PunchThrough_MC15: 0.002391572495242408 + syst_JES_MJB_Stat6: 3.28656641e-05 + syst_JES_MJB_Stat7: 2.94968253e-07 + syst_JES_MJB_Stat8: 1.04874360e-05 + syst_JES_MJB_Stat9: 3.82502591e-05 + syst_JES_MJB_Threshold: 1.80601993e-03 + syst_JES_Pileup_MuOffset: 3.74693965e-03 + syst_JES_Pileup_NPVOffset: 3.90039144e-03 + syst_JES_Pileup_Pt_term: 4.16638404e-03 + syst_JES_Pileup_Rho_topology: 6.94796783e-03 + syst_JES_PunchThrough_MC15: 2.39157250e-03 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.013298530548523022 - syst_JES_Zjet_MuScale: 0.0008376479615566434 - syst_JES_Zjet_MuSmearID: 0.00015582316997160597 - syst_JES_Zjet_MuSmearMS: 0.00378228141040563 - syst_JES_Zjet_OOC: 0.00618132760820845 - syst_JES_Zjet_Stat1: 0.00026699844568835976 - syst_JES_Zjet_Stat10: 0.00047914836950573047 - syst_JES_Zjet_Stat11: 0.0006103386498494095 - syst_JES_Zjet_Stat12: 0.002463189548126575 - syst_JES_Zjet_Stat13: 0.004115817415775389 - syst_JES_Zjet_Stat2: 6.719491513783061e-13 - syst_JES_Zjet_Stat3: 0.0001162220405086746 - syst_JES_Zjet_Stat4: 0.00011620548900546823 - syst_JES_Zjet_Stat5: 0.00014774526007625422 - syst_JES_Zjet_Stat6: 0.0001959674654119913 - syst_JES_Zjet_Stat7: 9.022117323555486e-05 - syst_JES_Zjet_Stat8: 0.00014319981424568959 - syst_JES_Zjet_Stat9: 0.0002834228466443734 - syst_JES_Zjet_Veto: 0.0013177079304610717 - syst_JES_Zjet_dPhi: 0.0011036043256076884 + syst_JES_Zjet_MC: 1.32985305e-02 + syst_JES_Zjet_MuScale: 8.37647962e-04 + syst_JES_Zjet_MuSmearID: 1.55823170e-04 + syst_JES_Zjet_MuSmearMS: 3.78228141e-03 + syst_JES_Zjet_OOC: 6.18132761e-03 + syst_JES_Zjet_Stat1: 2.66998446e-04 + syst_JES_Zjet_Stat10: 4.79148370e-04 + syst_JES_Zjet_Stat11: 6.10338650e-04 + syst_JES_Zjet_Stat12: 2.46318955e-03 + syst_JES_Zjet_Stat13: 4.11581742e-03 + syst_JES_Zjet_Stat2: 6.71949151e-13 + syst_JES_Zjet_Stat3: 1.16222041e-04 + syst_JES_Zjet_Stat4: 1.16205489e-04 + syst_JES_Zjet_Stat5: 1.47745260e-04 + syst_JES_Zjet_Stat6: 1.95967465e-04 + syst_JES_Zjet_Stat7: 9.02211732e-05 + syst_JES_Zjet_Stat8: 1.43199814e-04 + syst_JES_Zjet_Stat9: 2.83422847e-04 + syst_JES_Zjet_Veto: 1.31770793e-03 + syst_JES_Zjet_dPhi: 1.10360433e-03 syst_PRW: 0.001421 - syst_Unfolding_bias: 4.905e-12 - syst_cleaning: 0.005297477394949412 + syst_Unfolding_bias: 4.90500000e-12 + syst_cleaning: 5.29747739e-03 syst_lumi: 0.01971 - stat: 0.003105 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.005395127130105462 - syst_JER_NP1: 5.49017331238277e-05 - syst_JER_NP2: 0.0032889706596441384 - syst_JER_NP3: 0.0003374332729222179 - syst_JER_NP4: 1.4275043782769985e-08 - syst_JER_NP5: 0.0005053100310700352 - syst_JER_NP6: 2.8353779289540928e-08 - syst_JER_NP7: 3.4081330666510075e-08 - syst_JER_NP8: 0.0005160247353567462 - syst_JES_EtaIntercalibration_Modelling: 0.03421347979963453 - syst_JES_EtaIntercalibration_NonClosure: 0.00022534174646523 - syst_JES_EtaIntercalibration_Stat0: 4.846278159577719e-18 + syst_JER_NP0: 5.39512713e-03 + syst_JER_NP1: 5.49017331e-05 + syst_JER_NP2: 3.28897066e-03 + syst_JER_NP3: 3.37433273e-04 + syst_JER_NP4: 1.42750438e-08 + syst_JER_NP5: 5.05310031e-04 + syst_JER_NP6: 2.83537793e-08 + syst_JER_NP7: 3.40813307e-08 + syst_JER_NP8: 5.16024735e-04 + syst_JES_EtaIntercalibration_Modelling: 3.42134798e-02 + syst_JES_EtaIntercalibration_NonClosure: 2.25341746e-04 + syst_JES_EtaIntercalibration_Stat0: 4.84627816e-18 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 3.5110417117859407e-13 - syst_JES_EtaIntercalibration_Stat101: 1.2793382537468346e-08 - syst_JES_EtaIntercalibration_Stat102: 1.4523218789235397e-06 - syst_JES_EtaIntercalibration_Stat103: 1.607915181220701e-06 - syst_JES_EtaIntercalibration_Stat104: 1.5969782252350844e-09 - syst_JES_EtaIntercalibration_Stat105: 5.843722507956721e-18 - syst_JES_EtaIntercalibration_Stat106: 4.846278159577719e-18 - syst_JES_EtaIntercalibration_Stat107: 4.846278159577719e-18 - syst_JES_EtaIntercalibration_Stat108: 4.846278159577719e-18 - syst_JES_EtaIntercalibration_Stat109: 4.846278159577719e-18 + syst_JES_EtaIntercalibration_Stat100: 3.51104171e-13 + syst_JES_EtaIntercalibration_Stat101: 1.27933825e-08 + syst_JES_EtaIntercalibration_Stat102: 1.45232188e-06 + syst_JES_EtaIntercalibration_Stat103: 1.60791518e-06 + syst_JES_EtaIntercalibration_Stat104: 1.59697823e-09 + syst_JES_EtaIntercalibration_Stat105: 5.84372251e-18 + syst_JES_EtaIntercalibration_Stat106: 4.84627816e-18 + syst_JES_EtaIntercalibration_Stat107: 4.84627816e-18 + syst_JES_EtaIntercalibration_Stat108: 4.84627816e-18 + syst_JES_EtaIntercalibration_Stat109: 4.84627816e-18 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 6.013497713477574e-16 - syst_JES_EtaIntercalibration_Stat111: 6.722099579000597e-09 - syst_JES_EtaIntercalibration_Stat112: 1.9978973115503207e-06 - syst_JES_EtaIntercalibration_Stat113: 9.028907076717536e-07 - syst_JES_EtaIntercalibration_Stat114: 5.019626450992145e-07 - syst_JES_EtaIntercalibration_Stat115: 8.929400573558956e-10 - syst_JES_EtaIntercalibration_Stat116: 8.001326634903239e-15 - syst_JES_EtaIntercalibration_Stat117: 4.846278159577719e-18 - syst_JES_EtaIntercalibration_Stat118: 4.846278159577719e-18 - syst_JES_EtaIntercalibration_Stat119: 4.846278159577719e-18 + syst_JES_EtaIntercalibration_Stat110: 6.01349771e-16 + syst_JES_EtaIntercalibration_Stat111: 6.72209958e-09 + syst_JES_EtaIntercalibration_Stat112: 1.99789731e-06 + syst_JES_EtaIntercalibration_Stat113: 9.02890708e-07 + syst_JES_EtaIntercalibration_Stat114: 5.01962645e-07 + syst_JES_EtaIntercalibration_Stat115: 8.92940057e-10 + syst_JES_EtaIntercalibration_Stat116: 8.00132663e-15 + syst_JES_EtaIntercalibration_Stat117: 4.84627816e-18 + syst_JES_EtaIntercalibration_Stat118: 4.84627816e-18 + syst_JES_EtaIntercalibration_Stat119: 4.84627816e-18 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 3.3987166971520297e-12 - syst_JES_EtaIntercalibration_Stat121: 5.6224863717042475e-06 - syst_JES_EtaIntercalibration_Stat122: 2.9116945444191086e-06 - syst_JES_EtaIntercalibration_Stat123: 5.7375751629063645e-06 - syst_JES_EtaIntercalibration_Stat124: 3.68397193087841e-06 - syst_JES_EtaIntercalibration_Stat125: 1.4601188307805636e-14 - syst_JES_EtaIntercalibration_Stat126: 4.846278159577719e-18 - syst_JES_EtaIntercalibration_Stat127: 4.846278159577719e-18 - syst_JES_EtaIntercalibration_Stat128: 4.846278159577719e-18 - syst_JES_EtaIntercalibration_Stat129: 2.704701589362494e-09 + syst_JES_EtaIntercalibration_Stat120: 3.39871670e-12 + syst_JES_EtaIntercalibration_Stat121: 5.62248637e-06 + syst_JES_EtaIntercalibration_Stat122: 2.91169454e-06 + syst_JES_EtaIntercalibration_Stat123: 5.73757516e-06 + syst_JES_EtaIntercalibration_Stat124: 3.68397193e-06 + syst_JES_EtaIntercalibration_Stat125: 1.46011883e-14 + syst_JES_EtaIntercalibration_Stat126: 4.84627816e-18 + syst_JES_EtaIntercalibration_Stat127: 4.84627816e-18 + syst_JES_EtaIntercalibration_Stat128: 4.84627816e-18 + syst_JES_EtaIntercalibration_Stat129: 2.70470159e-09 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 1.532838775303848e-05 - syst_JES_EtaIntercalibration_Stat131: 8.84655910123347e-06 - syst_JES_EtaIntercalibration_Stat132: 1.4287881884660159e-05 - syst_JES_EtaIntercalibration_Stat133: 7.029363609175443e-06 - syst_JES_EtaIntercalibration_Stat134: 1.1116248405295142e-06 - syst_JES_EtaIntercalibration_Stat135: 8.002940756371998e-15 + syst_JES_EtaIntercalibration_Stat130: 1.53283878e-05 + syst_JES_EtaIntercalibration_Stat131: 8.84655910e-06 + syst_JES_EtaIntercalibration_Stat132: 1.42878819e-05 + syst_JES_EtaIntercalibration_Stat133: 7.02936361e-06 + syst_JES_EtaIntercalibration_Stat134: 1.11162484e-06 + syst_JES_EtaIntercalibration_Stat135: 8.00294076e-15 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 syst_JES_EtaIntercalibration_Stat138: 0.0 - syst_JES_EtaIntercalibration_Stat139: 2.1915882522727667e-08 - syst_JES_EtaIntercalibration_Stat14: 3.5463806478675326e-13 - syst_JES_EtaIntercalibration_Stat140: 2.2268832479499234e-06 - syst_JES_EtaIntercalibration_Stat141: 1.791790534632885e-05 - syst_JES_EtaIntercalibration_Stat142: 1.4050243378674975e-05 - syst_JES_EtaIntercalibration_Stat143: 4.91928470410079e-06 - syst_JES_EtaIntercalibration_Stat144: 8.943978644876117e-11 + syst_JES_EtaIntercalibration_Stat139: 2.19158825e-08 + syst_JES_EtaIntercalibration_Stat14: 3.54638065e-13 + syst_JES_EtaIntercalibration_Stat140: 2.22688325e-06 + syst_JES_EtaIntercalibration_Stat141: 1.79179053e-05 + syst_JES_EtaIntercalibration_Stat142: 1.40502434e-05 + syst_JES_EtaIntercalibration_Stat143: 4.91928470e-06 + syst_JES_EtaIntercalibration_Stat144: 8.94397864e-11 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 4.0955908914343484e-10 - syst_JES_EtaIntercalibration_Stat148: 6.102992764210031e-06 - syst_JES_EtaIntercalibration_Stat149: 9.309607334361639e-06 - syst_JES_EtaIntercalibration_Stat15: 3.5394877717523007e-13 - syst_JES_EtaIntercalibration_Stat150: 1.2893815988682326e-05 - syst_JES_EtaIntercalibration_Stat151: 1.3177087728326012e-05 - syst_JES_EtaIntercalibration_Stat152: 2.6670413326380976e-09 + syst_JES_EtaIntercalibration_Stat147: 4.09559089e-10 + syst_JES_EtaIntercalibration_Stat148: 6.10299276e-06 + syst_JES_EtaIntercalibration_Stat149: 9.30960733e-06 + syst_JES_EtaIntercalibration_Stat15: 3.53948777e-13 + syst_JES_EtaIntercalibration_Stat150: 1.28938160e-05 + syst_JES_EtaIntercalibration_Stat151: 1.31770877e-05 + syst_JES_EtaIntercalibration_Stat152: 2.66704133e-09 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 syst_JES_EtaIntercalibration_Stat156: 0.0 - syst_JES_EtaIntercalibration_Stat157: 4.987419844719311e-09 - syst_JES_EtaIntercalibration_Stat158: 3.8068956841500133e-06 - syst_JES_EtaIntercalibration_Stat159: 1.745305918743187e-05 - syst_JES_EtaIntercalibration_Stat16: 3.5256725073412063e-13 - syst_JES_EtaIntercalibration_Stat160: 1.3910590533834285e-05 - syst_JES_EtaIntercalibration_Stat161: 4.5003719846252706e-06 - syst_JES_EtaIntercalibration_Stat162: 8.751869785937174e-11 + syst_JES_EtaIntercalibration_Stat157: 4.98741984e-09 + syst_JES_EtaIntercalibration_Stat158: 3.80689568e-06 + syst_JES_EtaIntercalibration_Stat159: 1.74530592e-05 + syst_JES_EtaIntercalibration_Stat16: 3.52567251e-13 + syst_JES_EtaIntercalibration_Stat160: 1.39105905e-05 + syst_JES_EtaIntercalibration_Stat161: 4.50037198e-06 + syst_JES_EtaIntercalibration_Stat162: 8.75186979e-11 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 9.415694291978685e-10 - syst_JES_EtaIntercalibration_Stat166: 1.0186131782354869e-05 - syst_JES_EtaIntercalibration_Stat167: 2.392806302231754e-05 - syst_JES_EtaIntercalibration_Stat168: 4.9662721431673474e-05 - syst_JES_EtaIntercalibration_Stat169: 1.3291091405524228e-05 - syst_JES_EtaIntercalibration_Stat17: 3.999305314676537e-18 - syst_JES_EtaIntercalibration_Stat170: 1.095808132236205e-06 + syst_JES_EtaIntercalibration_Stat165: 9.41569429e-10 + syst_JES_EtaIntercalibration_Stat166: 1.01861318e-05 + syst_JES_EtaIntercalibration_Stat167: 2.39280630e-05 + syst_JES_EtaIntercalibration_Stat168: 4.96627214e-05 + syst_JES_EtaIntercalibration_Stat169: 1.32910914e-05 + syst_JES_EtaIntercalibration_Stat17: 3.99930531e-18 + syst_JES_EtaIntercalibration_Stat170: 1.09580813e-06 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 - syst_JES_EtaIntercalibration_Stat175: 8.498227428860857e-06 - syst_JES_EtaIntercalibration_Stat176: 1.882581952399417e-05 - syst_JES_EtaIntercalibration_Stat177: 6.506741638485424e-05 - syst_JES_EtaIntercalibration_Stat178: 3.912547124316844e-05 - syst_JES_EtaIntercalibration_Stat179: 3.92365460635872e-06 + syst_JES_EtaIntercalibration_Stat175: 8.49822743e-06 + syst_JES_EtaIntercalibration_Stat176: 1.88258195e-05 + syst_JES_EtaIntercalibration_Stat177: 6.50674164e-05 + syst_JES_EtaIntercalibration_Stat178: 3.91254712e-05 + syst_JES_EtaIntercalibration_Stat179: 3.92365461e-06 syst_JES_EtaIntercalibration_Stat18: 0.0 - syst_JES_EtaIntercalibration_Stat180: 1.2730573210002778e-06 + syst_JES_EtaIntercalibration_Stat180: 1.27305732e-06 syst_JES_EtaIntercalibration_Stat181: 0.0 - syst_JES_EtaIntercalibration_Stat182: 1.0097019289810234e-06 - syst_JES_EtaIntercalibration_Stat183: 3.532057683560675e-05 - syst_JES_EtaIntercalibration_Stat184: 0.0001120161250668849 - syst_JES_EtaIntercalibration_Stat185: 0.00025250086633514746 - syst_JES_EtaIntercalibration_Stat186: 4.175474194627479e-05 - syst_JES_EtaIntercalibration_Stat187: 1.0578814574776326e-06 + syst_JES_EtaIntercalibration_Stat182: 1.00970193e-06 + syst_JES_EtaIntercalibration_Stat183: 3.53205768e-05 + syst_JES_EtaIntercalibration_Stat184: 1.12016125e-04 + syst_JES_EtaIntercalibration_Stat185: 2.52500866e-04 + syst_JES_EtaIntercalibration_Stat186: 4.17547419e-05 + syst_JES_EtaIntercalibration_Stat187: 1.05788146e-06 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 - syst_JES_EtaIntercalibration_Stat192: 2.2859297889480332e-06 - syst_JES_EtaIntercalibration_Stat193: 8.322656712252405e-05 - syst_JES_EtaIntercalibration_Stat194: 0.00021430956581543437 - syst_JES_EtaIntercalibration_Stat195: 0.0001551115082771101 - syst_JES_EtaIntercalibration_Stat196: 3.536340905512363e-05 - syst_JES_EtaIntercalibration_Stat197: 1.1195357028697209e-06 - syst_JES_EtaIntercalibration_Stat198: 6.831136270782482e-05 - syst_JES_EtaIntercalibration_Stat199: 0.0003647585528469483 + syst_JES_EtaIntercalibration_Stat192: 2.28592979e-06 + syst_JES_EtaIntercalibration_Stat193: 8.32265671e-05 + syst_JES_EtaIntercalibration_Stat194: 2.14309566e-04 + syst_JES_EtaIntercalibration_Stat195: 1.55111508e-04 + syst_JES_EtaIntercalibration_Stat196: 3.53634091e-05 + syst_JES_EtaIntercalibration_Stat197: 1.11953570e-06 + syst_JES_EtaIntercalibration_Stat198: 6.83113627e-05 + syst_JES_EtaIntercalibration_Stat199: 3.64758553e-04 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 0.000419234099281058 - syst_JES_EtaIntercalibration_Stat201: 0.0001394607912640682 - syst_JES_EtaIntercalibration_Stat202: 1.651923130982492e-05 + syst_JES_EtaIntercalibration_Stat200: 4.19234099e-04 + syst_JES_EtaIntercalibration_Stat201: 1.39460791e-04 + syst_JES_EtaIntercalibration_Stat202: 1.65192313e-05 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 - syst_JES_EtaIntercalibration_Stat207: 1.6893445970257222e-06 - syst_JES_EtaIntercalibration_Stat208: 0.0001567664594229263 - syst_JES_EtaIntercalibration_Stat209: 0.0004186132433404371 + syst_JES_EtaIntercalibration_Stat207: 1.68934460e-06 + syst_JES_EtaIntercalibration_Stat208: 1.56766459e-04 + syst_JES_EtaIntercalibration_Stat209: 4.18613243e-04 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 0.0002755803149718789 - syst_JES_EtaIntercalibration_Stat211: 9.306540818155799e-05 - syst_JES_EtaIntercalibration_Stat212: 0.00021097338102234607 - syst_JES_EtaIntercalibration_Stat213: 0.0002973333608931228 - syst_JES_EtaIntercalibration_Stat214: 7.014343233689096e-05 - syst_JES_EtaIntercalibration_Stat215: 2.3215934183228555e-06 + syst_JES_EtaIntercalibration_Stat210: 2.75580315e-04 + syst_JES_EtaIntercalibration_Stat211: 9.30654082e-05 + syst_JES_EtaIntercalibration_Stat212: 2.10973381e-04 + syst_JES_EtaIntercalibration_Stat213: 2.97333361e-04 + syst_JES_EtaIntercalibration_Stat214: 7.01434323e-05 + syst_JES_EtaIntercalibration_Stat215: 2.32159342e-06 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 syst_JES_EtaIntercalibration_Stat219: 0.0 - syst_JES_EtaIntercalibration_Stat22: 4.846278159577719e-18 - syst_JES_EtaIntercalibration_Stat220: 3.478319421789782e-06 - syst_JES_EtaIntercalibration_Stat221: 8.721825726302951e-05 - syst_JES_EtaIntercalibration_Stat222: 0.00026384573144168925 - syst_JES_EtaIntercalibration_Stat223: 0.00023858597506978485 - syst_JES_EtaIntercalibration_Stat224: 0.00020576168253588908 - syst_JES_EtaIntercalibration_Stat225: 0.00025811648533171993 - syst_JES_EtaIntercalibration_Stat226: 7.763342321448927e-05 - syst_JES_EtaIntercalibration_Stat227: 1.5997744028456013e-06 + syst_JES_EtaIntercalibration_Stat22: 4.84627816e-18 + syst_JES_EtaIntercalibration_Stat220: 3.47831942e-06 + syst_JES_EtaIntercalibration_Stat221: 8.72182573e-05 + syst_JES_EtaIntercalibration_Stat222: 2.63845731e-04 + syst_JES_EtaIntercalibration_Stat223: 2.38585975e-04 + syst_JES_EtaIntercalibration_Stat224: 2.05761683e-04 + syst_JES_EtaIntercalibration_Stat225: 2.58116485e-04 + syst_JES_EtaIntercalibration_Stat226: 7.76334232e-05 + syst_JES_EtaIntercalibration_Stat227: 1.59977440e-06 syst_JES_EtaIntercalibration_Stat228: 0.0 syst_JES_EtaIntercalibration_Stat229: 0.0 - syst_JES_EtaIntercalibration_Stat23: 4.846278159577719e-18 + syst_JES_EtaIntercalibration_Stat23: 4.84627816e-18 syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 - syst_JES_EtaIntercalibration_Stat232: 7.681595524856799e-06 - syst_JES_EtaIntercalibration_Stat233: 6.206936019486587e-05 - syst_JES_EtaIntercalibration_Stat234: 0.00023038256769990217 - syst_JES_EtaIntercalibration_Stat235: 0.00023861250491120537 - syst_JES_EtaIntercalibration_Stat236: 2.7343146248191704e-05 - syst_JES_EtaIntercalibration_Stat237: 1.132143987088215e-05 - syst_JES_EtaIntercalibration_Stat238: 2.3044935994703912e-07 + syst_JES_EtaIntercalibration_Stat232: 7.68159552e-06 + syst_JES_EtaIntercalibration_Stat233: 6.20693602e-05 + syst_JES_EtaIntercalibration_Stat234: 2.30382568e-04 + syst_JES_EtaIntercalibration_Stat235: 2.38612505e-04 + syst_JES_EtaIntercalibration_Stat236: 2.73431462e-05 + syst_JES_EtaIntercalibration_Stat237: 1.13214399e-05 + syst_JES_EtaIntercalibration_Stat238: 2.30449360e-07 syst_JES_EtaIntercalibration_Stat239: 0.0 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 - syst_JES_EtaIntercalibration_Stat243: 3.3440106890977482e-06 - syst_JES_EtaIntercalibration_Stat244: 5.6718625688569005e-06 - syst_JES_EtaIntercalibration_Stat245: 4.6736862881455796e-05 - syst_JES_EtaIntercalibration_Stat25: 3.7776028113077216e-18 - syst_JES_EtaIntercalibration_Stat26: 4.573398736169852e-16 - syst_JES_EtaIntercalibration_Stat27: 2.996728718319361e-13 - syst_JES_EtaIntercalibration_Stat28: 1.1157002515779993e-06 - syst_JES_EtaIntercalibration_Stat29: 3.310498788324804e-13 + syst_JES_EtaIntercalibration_Stat243: 3.34401069e-06 + syst_JES_EtaIntercalibration_Stat244: 5.67186257e-06 + syst_JES_EtaIntercalibration_Stat245: 4.67368629e-05 + syst_JES_EtaIntercalibration_Stat25: 3.77760281e-18 + syst_JES_EtaIntercalibration_Stat26: 4.57339874e-16 + syst_JES_EtaIntercalibration_Stat27: 2.99672872e-13 + syst_JES_EtaIntercalibration_Stat28: 1.11570025e-06 + syst_JES_EtaIntercalibration_Stat29: 3.31049879e-13 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 3.4882427628642765e-17 + syst_JES_EtaIntercalibration_Stat30: 3.48824276e-17 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 6.880924405921054e-18 - syst_JES_EtaIntercalibration_Stat36: 3.4500622741824167e-13 - syst_JES_EtaIntercalibration_Stat37: 7.041652623613926e-07 - syst_JES_EtaIntercalibration_Stat38: 7.044250702625428e-07 - syst_JES_EtaIntercalibration_Stat39: 1.509346258111438e-14 - syst_JES_EtaIntercalibration_Stat4: 5.178831914630943e-18 - syst_JES_EtaIntercalibration_Stat40: 3.3833880475050447e-18 + syst_JES_EtaIntercalibration_Stat35: 6.88092441e-18 + syst_JES_EtaIntercalibration_Stat36: 3.45006227e-13 + syst_JES_EtaIntercalibration_Stat37: 7.04165262e-07 + syst_JES_EtaIntercalibration_Stat38: 7.04425070e-07 + syst_JES_EtaIntercalibration_Stat39: 1.50934626e-14 + syst_JES_EtaIntercalibration_Stat4: 5.17883191e-18 + syst_JES_EtaIntercalibration_Stat40: 3.38338805e-18 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 - syst_JES_EtaIntercalibration_Stat44: 4.846278159577719e-18 + syst_JES_EtaIntercalibration_Stat44: 4.84627816e-18 syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 - syst_JES_EtaIntercalibration_Stat47: 3.778468836711506e-18 - syst_JES_EtaIntercalibration_Stat48: 1.554603733270958e-14 - syst_JES_EtaIntercalibration_Stat49: 9.017195628353641e-13 - syst_JES_EtaIntercalibration_Stat5: 2.64913111934838e-15 - syst_JES_EtaIntercalibration_Stat50: 1.1104177173645274e-06 - syst_JES_EtaIntercalibration_Stat51: 8.815265280238139e-10 - syst_JES_EtaIntercalibration_Stat52: 2.2438885406142613e-15 + syst_JES_EtaIntercalibration_Stat47: 3.77846884e-18 + syst_JES_EtaIntercalibration_Stat48: 1.55460373e-14 + syst_JES_EtaIntercalibration_Stat49: 9.01719563e-13 + syst_JES_EtaIntercalibration_Stat5: 2.64913112e-15 + syst_JES_EtaIntercalibration_Stat50: 1.11041772e-06 + syst_JES_EtaIntercalibration_Stat51: 8.81526528e-10 + syst_JES_EtaIntercalibration_Stat52: 2.24388854e-15 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 syst_JES_EtaIntercalibration_Stat56: 0.0 - syst_JES_EtaIntercalibration_Stat57: 3.546391383986095e-13 - syst_JES_EtaIntercalibration_Stat58: 3.194246432259102e-13 - syst_JES_EtaIntercalibration_Stat59: 2.8055230921509095e-06 - syst_JES_EtaIntercalibration_Stat6: 1.9522235399666712e-14 - syst_JES_EtaIntercalibration_Stat60: 7.015694572821632e-07 - syst_JES_EtaIntercalibration_Stat61: 6.559162730690176e-13 - syst_JES_EtaIntercalibration_Stat62: 4.0789796518247064e-18 + syst_JES_EtaIntercalibration_Stat57: 3.54639138e-13 + syst_JES_EtaIntercalibration_Stat58: 3.19424643e-13 + syst_JES_EtaIntercalibration_Stat59: 2.80552309e-06 + syst_JES_EtaIntercalibration_Stat6: 1.95222354e-14 + syst_JES_EtaIntercalibration_Stat60: 7.01569457e-07 + syst_JES_EtaIntercalibration_Stat61: 6.55916273e-13 + syst_JES_EtaIntercalibration_Stat62: 4.07897965e-18 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 - syst_JES_EtaIntercalibration_Stat69: 5.5773458741591414e-18 - syst_JES_EtaIntercalibration_Stat7: 2.253604820964625e-15 - syst_JES_EtaIntercalibration_Stat70: 3.6957167099224477e-13 - syst_JES_EtaIntercalibration_Stat71: 1.9702068958315656e-06 - syst_JES_EtaIntercalibration_Stat72: 4.444084357290743e-06 - syst_JES_EtaIntercalibration_Stat73: 1.1104144977516422e-06 - syst_JES_EtaIntercalibration_Stat74: 2.6955490628070565e-14 + syst_JES_EtaIntercalibration_Stat69: 5.57734587e-18 + syst_JES_EtaIntercalibration_Stat7: 2.25360482e-15 + syst_JES_EtaIntercalibration_Stat70: 3.69571671e-13 + syst_JES_EtaIntercalibration_Stat71: 1.97020690e-06 + syst_JES_EtaIntercalibration_Stat72: 4.44408436e-06 + syst_JES_EtaIntercalibration_Stat73: 1.11041450e-06 + syst_JES_EtaIntercalibration_Stat74: 2.69554906e-14 syst_JES_EtaIntercalibration_Stat75: 0.0 syst_JES_EtaIntercalibration_Stat76: 0.0 syst_JES_EtaIntercalibration_Stat77: 0.0 syst_JES_EtaIntercalibration_Stat78: 0.0 - syst_JES_EtaIntercalibration_Stat79: 3.4922337390539885e-13 + syst_JES_EtaIntercalibration_Stat79: 3.49223374e-13 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 7.757474202341892e-09 - syst_JES_EtaIntercalibration_Stat81: 1.4436261799718098e-06 - syst_JES_EtaIntercalibration_Stat82: 1.4255861987266853e-06 - syst_JES_EtaIntercalibration_Stat83: 8.945082825217438e-11 - syst_JES_EtaIntercalibration_Stat84: 1.971580256418693e-18 - syst_JES_EtaIntercalibration_Stat85: 4.846278159577719e-18 - syst_JES_EtaIntercalibration_Stat86: 4.846278159577719e-18 - syst_JES_EtaIntercalibration_Stat87: 4.846278159577719e-18 - syst_JES_EtaIntercalibration_Stat88: 4.846278159577719e-18 - syst_JES_EtaIntercalibration_Stat89: 4.846278159577719e-18 + syst_JES_EtaIntercalibration_Stat80: 7.75747420e-09 + syst_JES_EtaIntercalibration_Stat81: 1.44362618e-06 + syst_JES_EtaIntercalibration_Stat82: 1.42558620e-06 + syst_JES_EtaIntercalibration_Stat83: 8.94508283e-11 + syst_JES_EtaIntercalibration_Stat84: 1.97158026e-18 + syst_JES_EtaIntercalibration_Stat85: 4.84627816e-18 + syst_JES_EtaIntercalibration_Stat86: 4.84627816e-18 + syst_JES_EtaIntercalibration_Stat87: 4.84627816e-18 + syst_JES_EtaIntercalibration_Stat88: 4.84627816e-18 + syst_JES_EtaIntercalibration_Stat89: 4.84627816e-18 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 1.63747256795343e-10 - syst_JES_EtaIntercalibration_Stat92: 1.968912018114319e-06 - syst_JES_EtaIntercalibration_Stat93: 4.447570891331217e-06 - syst_JES_EtaIntercalibration_Stat94: 1.110651798284929e-06 - syst_JES_EtaIntercalibration_Stat95: 3.005198075002711e-13 - syst_JES_EtaIntercalibration_Stat96: 8.001326634903239e-15 - syst_JES_EtaIntercalibration_Stat97: 4.846278159577719e-18 - syst_JES_EtaIntercalibration_Stat98: 4.846278159577719e-18 - syst_JES_EtaIntercalibration_Stat99: 4.846278159577719e-18 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0031974516415420582 - syst_JES_Flavour_Comp: 0.009316948427462717 - syst_JES_Flavour_Response: 0.002777302828285025 - syst_JES_Gjet_Generator: 0.013777817062219979 - syst_JES_Gjet_OOC: 0.011073936190442855 - syst_JES_Gjet_Purity: 0.00286580407564788 - syst_JES_Gjet_Stat1: 1.3994970525116438e-05 - syst_JES_Gjet_Stat10: 0.00027193805820443736 - syst_JES_Gjet_Stat11: 0.0003252464142769294 - syst_JES_Gjet_Stat12: 0.0011692471937105515 - syst_JES_Gjet_Stat13: 0.0032550273040329483 - syst_JES_Gjet_Stat14: 0.004602782202103419 - syst_JES_Gjet_Stat15: 0.00016215001541782228 - syst_JES_Gjet_Stat2: 1.809064384343465e-14 - syst_JES_Gjet_Stat3: 6.754998149436465e-06 - syst_JES_Gjet_Stat4: 3.874409987340008e-05 - syst_JES_Gjet_Stat5: 5.2169307624036784e-08 - syst_JES_Gjet_Stat6: 8.775392982653255e-05 - syst_JES_Gjet_Stat7: 0.00011078786350498866 - syst_JES_Gjet_Stat8: 9.880326765851422e-05 - syst_JES_Gjet_Stat9: 0.00018529707903796003 - syst_JES_Gjet_Veto: 0.010058016541545355 - syst_JES_Gjet_dPhi: 0.0010316651237199017 - syst_JES_LArESZee: 0.020736964580188682 - syst_JES_LArEsmear: 0.0016826618049982593 - syst_JES_LAr_JVT: 0.0020750409032113076 - syst_JES_MJB_Alpha: 0.00012215827601926935 - syst_JES_MJB_Asym: 0.0010294165665560274 - syst_JES_MJB_Beta: 0.00010458262188337029 - syst_JES_MJB_Fragmentation: 0.00208040975531264 - syst_JES_MJB_Stat1: 1.7156390819459107e-07 - syst_JES_MJB_Stat10: 8.99634207608848e-06 - syst_JES_MJB_Stat11: 1.8973413787455332e-05 - syst_JES_MJB_Stat12: 7.935330568413643e-06 - syst_JES_MJB_Stat13: 1.6038466928242007e-06 - syst_JES_MJB_Stat14: 6.5692239852216e-07 - syst_JES_MJB_Stat15: 2.875345627920233e-06 - syst_JES_MJB_Stat16: 1.9154594478349052e-07 - syst_JES_MJB_Stat2: 6.561008459113315e-05 - syst_JES_MJB_Stat3: 0.00017900745096224348 - syst_JES_MJB_Stat4: 9.24049105837996e-05 + syst_JES_EtaIntercalibration_Stat91: 1.63747257e-10 + syst_JES_EtaIntercalibration_Stat92: 1.96891202e-06 + syst_JES_EtaIntercalibration_Stat93: 4.44757089e-06 + syst_JES_EtaIntercalibration_Stat94: 1.11065180e-06 + syst_JES_EtaIntercalibration_Stat95: 3.00519808e-13 + syst_JES_EtaIntercalibration_Stat96: 8.00132663e-15 + syst_JES_EtaIntercalibration_Stat97: 4.84627816e-18 + syst_JES_EtaIntercalibration_Stat98: 4.84627816e-18 + syst_JES_EtaIntercalibration_Stat99: 4.84627816e-18 + syst_JES_EtaIntercalibration_TotalStat_MJB: 3.19745164e-03 + syst_JES_Flavour_Comp: 9.31694843e-03 + syst_JES_Flavour_Response: 2.77730283e-03 + syst_JES_Gjet_Generator: 1.37778171e-02 + syst_JES_Gjet_OOC: 1.10739362e-02 + syst_JES_Gjet_Purity: 2.86580408e-03 + syst_JES_Gjet_Stat1: 1.39949705e-05 + syst_JES_Gjet_Stat10: 2.71938058e-04 + syst_JES_Gjet_Stat11: 3.25246414e-04 + syst_JES_Gjet_Stat12: 1.16924719e-03 + syst_JES_Gjet_Stat13: 3.25502730e-03 + syst_JES_Gjet_Stat14: 4.60278220e-03 + syst_JES_Gjet_Stat15: 1.62150015e-04 + syst_JES_Gjet_Stat2: 1.80906438e-14 + syst_JES_Gjet_Stat3: 6.75499815e-06 + syst_JES_Gjet_Stat4: 3.87440999e-05 + syst_JES_Gjet_Stat5: 5.21693076e-08 + syst_JES_Gjet_Stat6: 8.77539298e-05 + syst_JES_Gjet_Stat7: 1.10787864e-04 + syst_JES_Gjet_Stat8: 9.88032677e-05 + syst_JES_Gjet_Stat9: 1.85297079e-04 + syst_JES_Gjet_Veto: 1.00580165e-02 + syst_JES_Gjet_dPhi: 1.03166512e-03 + syst_JES_LArESZee: 2.07369646e-02 + syst_JES_LArEsmear: 1.68266180e-03 + syst_JES_LAr_JVT: 2.07504090e-03 + syst_JES_MJB_Alpha: 1.22158276e-04 + syst_JES_MJB_Asym: 1.02941657e-03 + syst_JES_MJB_Beta: 1.04582622e-04 + syst_JES_MJB_Fragmentation: 2.08040976e-03 + syst_JES_MJB_Stat1: 1.71563908e-07 + syst_JES_MJB_Stat10: 8.99634208e-06 + syst_JES_MJB_Stat11: 1.89734138e-05 + syst_JES_MJB_Stat12: 7.93533057e-06 + syst_JES_MJB_Stat13: 1.60384669e-06 + syst_JES_MJB_Stat14: 6.56922399e-07 + syst_JES_MJB_Stat15: 2.87534563e-06 + syst_JES_MJB_Stat16: 1.91545945e-07 + syst_JES_MJB_Stat2: 6.56100846e-05 + syst_JES_MJB_Stat3: 1.79007451e-04 + syst_JES_MJB_Stat4: 9.24049106e-05 syst_JES_MJB_Stat5: 0.0 - syst_JES_MJB_Stat6: 2.6422435069463223e-05 - syst_JES_MJB_Stat7: 1.49649189773951e-06 - syst_JES_MJB_Stat8: 2.4417211895505188e-05 - syst_JES_MJB_Stat9: 5.647425681671251e-05 - syst_JES_MJB_Threshold: 0.0011374962274662717 - syst_JES_Pileup_MuOffset: 0.0024315297139866497 - syst_JES_Pileup_NPVOffset: 0.00248929287147977 - syst_JES_Pileup_Pt_term: 0.002520525540437946 - syst_JES_Pileup_Rho_topology: 0.004286014932311832 - syst_JES_PunchThrough_MC15: 0.0017655488523402574 + syst_JES_MJB_Stat6: 2.64224351e-05 + syst_JES_MJB_Stat7: 1.49649190e-06 + syst_JES_MJB_Stat8: 2.44172119e-05 + syst_JES_MJB_Stat9: 5.64742568e-05 + syst_JES_MJB_Threshold: 1.13749623e-03 + syst_JES_Pileup_MuOffset: 2.43152971e-03 + syst_JES_Pileup_NPVOffset: 2.48929287e-03 + syst_JES_Pileup_Pt_term: 2.52052554e-03 + syst_JES_Pileup_Rho_topology: 4.28601493e-03 + syst_JES_PunchThrough_MC15: 1.76554885e-03 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.007558385806506572 - syst_JES_Zjet_MuScale: 0.0004909207140669459 - syst_JES_Zjet_MuSmearID: 9.355238145018009e-05 - syst_JES_Zjet_MuSmearMS: 0.0021409460525664815 - syst_JES_Zjet_OOC: 0.0036808423967890826 - syst_JES_Zjet_Stat1: 0.00016732000239062873 - syst_JES_Zjet_Stat10: 0.00027987198859478595 - syst_JES_Zjet_Stat11: 0.00036983279357028355 - syst_JES_Zjet_Stat12: 0.0012877796968037663 - syst_JES_Zjet_Stat13: 0.0023476479719072023 - syst_JES_Zjet_Stat2: 5.695849287208474e-11 - syst_JES_Zjet_Stat3: 7.317661016335752e-05 - syst_JES_Zjet_Stat4: 7.313531568264404e-05 - syst_JES_Zjet_Stat5: 9.147097244481443e-05 - syst_JES_Zjet_Stat6: 0.00013772943149523273 - syst_JES_Zjet_Stat7: 5.543569856148653e-05 - syst_JES_Zjet_Stat8: 9.294494176661795e-05 - syst_JES_Zjet_Stat9: 0.00017748856301181776 - syst_JES_Zjet_Veto: 0.0007772069013460959 - syst_JES_Zjet_dPhi: 0.0006541119858250573 - syst_PRW: 0.0008482 - syst_Unfolding_bias: 7.419e-13 - syst_cleaning: 0.003160992723813201 + syst_JES_Zjet_MC: 7.55838581e-03 + syst_JES_Zjet_MuScale: 4.90920714e-04 + syst_JES_Zjet_MuSmearID: 9.35523815e-05 + syst_JES_Zjet_MuSmearMS: 2.14094605e-03 + syst_JES_Zjet_OOC: 3.68084240e-03 + syst_JES_Zjet_Stat1: 1.67320002e-04 + syst_JES_Zjet_Stat10: 2.79871989e-04 + syst_JES_Zjet_Stat11: 3.69832794e-04 + syst_JES_Zjet_Stat12: 1.28777970e-03 + syst_JES_Zjet_Stat13: 2.34764797e-03 + syst_JES_Zjet_Stat2: 5.69584929e-11 + syst_JES_Zjet_Stat3: 7.31766102e-05 + syst_JES_Zjet_Stat4: 7.31353157e-05 + syst_JES_Zjet_Stat5: 9.14709724e-05 + syst_JES_Zjet_Stat6: 1.37729431e-04 + syst_JES_Zjet_Stat7: 5.54356986e-05 + syst_JES_Zjet_Stat8: 9.29449418e-05 + syst_JES_Zjet_Stat9: 1.77488563e-04 + syst_JES_Zjet_Veto: 7.77206901e-04 + syst_JES_Zjet_dPhi: 6.54111986e-04 + syst_PRW: 8.48200000e-04 + syst_Unfolding_bias: 7.41900000e-13 + syst_cleaning: 3.16099272e-03 syst_lumi: 0.011766 - stat: 0.002121 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.003474032347287515 - syst_JER_NP1: 0.00018759325680844713 - syst_JER_NP2: 0.002344873290819783 - syst_JER_NP3: 0.00013227278660026787 - syst_JER_NP4: 1.896004746829501e-09 - syst_JER_NP5: 0.00031386242208967933 - syst_JER_NP6: 3.765193321729975e-09 - syst_JER_NP7: 4.527032444107288e-09 - syst_JER_NP8: 0.00034243797613582523 - syst_JES_EtaIntercalibration_Modelling: 0.023087777610675306 - syst_JES_EtaIntercalibration_NonClosure: 6.844876386758201e-05 - syst_JES_EtaIntercalibration_Stat0: 9.428418571001185e-19 + syst_JER_NP0: 3.47403235e-03 + syst_JER_NP1: 1.87593257e-04 + syst_JER_NP2: 2.34487329e-03 + syst_JER_NP3: 1.32272787e-04 + syst_JER_NP4: 1.89600475e-09 + syst_JER_NP5: 3.13862422e-04 + syst_JER_NP6: 3.76519332e-09 + syst_JER_NP7: 4.52703244e-09 + syst_JER_NP8: 3.42437976e-04 + syst_JES_EtaIntercalibration_Modelling: 2.30877776e-02 + syst_JES_EtaIntercalibration_NonClosure: 6.84487639e-05 + syst_JES_EtaIntercalibration_Stat0: 9.42841857e-19 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 4.814251898197761e-14 - syst_JES_EtaIntercalibration_Stat101: 1.7964838177673628e-09 - syst_JES_EtaIntercalibration_Stat102: 1.8486107128057004e-06 - syst_JES_EtaIntercalibration_Stat103: 1.7007504424518018e-06 - syst_JES_EtaIntercalibration_Stat104: 2.2785717435874165e-10 - syst_JES_EtaIntercalibration_Stat105: 1.2223067976167031e-18 - syst_JES_EtaIntercalibration_Stat106: 9.428418571001185e-19 - syst_JES_EtaIntercalibration_Stat107: 9.428418571001185e-19 - syst_JES_EtaIntercalibration_Stat108: 9.428418571001185e-19 - syst_JES_EtaIntercalibration_Stat109: 9.428418571001185e-19 + syst_JES_EtaIntercalibration_Stat100: 4.81425190e-14 + syst_JES_EtaIntercalibration_Stat101: 1.79648382e-09 + syst_JES_EtaIntercalibration_Stat102: 1.84861071e-06 + syst_JES_EtaIntercalibration_Stat103: 1.70075044e-06 + syst_JES_EtaIntercalibration_Stat104: 2.27857174e-10 + syst_JES_EtaIntercalibration_Stat105: 1.22230680e-18 + syst_JES_EtaIntercalibration_Stat106: 9.42841857e-19 + syst_JES_EtaIntercalibration_Stat107: 9.42841857e-19 + syst_JES_EtaIntercalibration_Stat108: 9.42841857e-19 + syst_JES_EtaIntercalibration_Stat109: 9.42841857e-19 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 9.985103604870608e-17 - syst_JES_EtaIntercalibration_Stat111: 1.0454615954208935e-09 - syst_JES_EtaIntercalibration_Stat112: 1.0206578368875634e-06 - syst_JES_EtaIntercalibration_Stat113: 1.4070038592697605e-07 - syst_JES_EtaIntercalibration_Stat114: 1.0644154660187911e-06 - syst_JES_EtaIntercalibration_Stat115: 1.7199494731261728e-10 - syst_JES_EtaIntercalibration_Stat116: 1.110103848016377e-15 - syst_JES_EtaIntercalibration_Stat117: 9.428418571001185e-19 - syst_JES_EtaIntercalibration_Stat118: 9.428418571001185e-19 - syst_JES_EtaIntercalibration_Stat119: 9.428418571001185e-19 + syst_JES_EtaIntercalibration_Stat110: 9.98510360e-17 + syst_JES_EtaIntercalibration_Stat111: 1.04546160e-09 + syst_JES_EtaIntercalibration_Stat112: 1.02065784e-06 + syst_JES_EtaIntercalibration_Stat113: 1.40700386e-07 + syst_JES_EtaIntercalibration_Stat114: 1.06441547e-06 + syst_JES_EtaIntercalibration_Stat115: 1.71994947e-10 + syst_JES_EtaIntercalibration_Stat116: 1.11010385e-15 + syst_JES_EtaIntercalibration_Stat117: 9.42841857e-19 + syst_JES_EtaIntercalibration_Stat118: 9.42841857e-19 + syst_JES_EtaIntercalibration_Stat119: 9.42841857e-19 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 4.508528252101788e-13 - syst_JES_EtaIntercalibration_Stat121: 3.3450763817886132e-06 - syst_JES_EtaIntercalibration_Stat122: 2.5205224592334026e-06 - syst_JES_EtaIntercalibration_Stat123: 3.9816268973875495e-06 - syst_JES_EtaIntercalibration_Stat124: 4.6621081677176905e-06 - syst_JES_EtaIntercalibration_Stat125: 2.2256852877260072e-15 - syst_JES_EtaIntercalibration_Stat126: 9.428418571001185e-19 - syst_JES_EtaIntercalibration_Stat127: 9.428418571001185e-19 - syst_JES_EtaIntercalibration_Stat128: 9.428418571001185e-19 - syst_JES_EtaIntercalibration_Stat129: 3.625299022149759e-10 + syst_JES_EtaIntercalibration_Stat120: 4.50852825e-13 + syst_JES_EtaIntercalibration_Stat121: 3.34507638e-06 + syst_JES_EtaIntercalibration_Stat122: 2.52052246e-06 + syst_JES_EtaIntercalibration_Stat123: 3.98162690e-06 + syst_JES_EtaIntercalibration_Stat124: 4.66210817e-06 + syst_JES_EtaIntercalibration_Stat125: 2.22568529e-15 + syst_JES_EtaIntercalibration_Stat126: 9.42841857e-19 + syst_JES_EtaIntercalibration_Stat127: 9.42841857e-19 + syst_JES_EtaIntercalibration_Stat128: 9.42841857e-19 + syst_JES_EtaIntercalibration_Stat129: 3.62529902e-10 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 6.903239010058973e-06 - syst_JES_EtaIntercalibration_Stat131: 3.0678442382233163e-06 - syst_JES_EtaIntercalibration_Stat132: 4.282131969883694e-06 - syst_JES_EtaIntercalibration_Stat133: 4.4661399440680315e-06 - syst_JES_EtaIntercalibration_Stat134: 6.81549387267938e-07 - syst_JES_EtaIntercalibration_Stat135: 1.1104177727324073e-15 + syst_JES_EtaIntercalibration_Stat130: 6.90323901e-06 + syst_JES_EtaIntercalibration_Stat131: 3.06784424e-06 + syst_JES_EtaIntercalibration_Stat132: 4.28213197e-06 + syst_JES_EtaIntercalibration_Stat133: 4.46613994e-06 + syst_JES_EtaIntercalibration_Stat134: 6.81549387e-07 + syst_JES_EtaIntercalibration_Stat135: 1.11041777e-15 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 syst_JES_EtaIntercalibration_Stat138: 0.0 - syst_JES_EtaIntercalibration_Stat139: 3.070370672655014e-09 - syst_JES_EtaIntercalibration_Stat14: 4.8636125126705064e-14 - syst_JES_EtaIntercalibration_Stat140: 2.82592051374415e-06 - syst_JES_EtaIntercalibration_Stat141: 1.0468172810954164e-05 - syst_JES_EtaIntercalibration_Stat142: 4.242093076241963e-06 - syst_JES_EtaIntercalibration_Stat143: 3.0781736013421986e-06 - syst_JES_EtaIntercalibration_Stat144: 1.1799576973349511e-11 + syst_JES_EtaIntercalibration_Stat139: 3.07037067e-09 + syst_JES_EtaIntercalibration_Stat14: 4.86361251e-14 + syst_JES_EtaIntercalibration_Stat140: 2.82592051e-06 + syst_JES_EtaIntercalibration_Stat141: 1.04681728e-05 + syst_JES_EtaIntercalibration_Stat142: 4.24209308e-06 + syst_JES_EtaIntercalibration_Stat143: 3.07817360e-06 + syst_JES_EtaIntercalibration_Stat144: 1.17995770e-11 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 6.361011476172638e-11 - syst_JES_EtaIntercalibration_Stat148: 2.004576730260032e-06 - syst_JES_EtaIntercalibration_Stat149: 2.0876015586073888e-06 - syst_JES_EtaIntercalibration_Stat15: 4.853287890143374e-14 - syst_JES_EtaIntercalibration_Stat150: 4.928195207172703e-06 - syst_JES_EtaIntercalibration_Stat151: 8.282478297587022e-06 - syst_JES_EtaIntercalibration_Stat152: 4.4242809890421746e-10 + syst_JES_EtaIntercalibration_Stat147: 6.36101148e-11 + syst_JES_EtaIntercalibration_Stat148: 2.00457673e-06 + syst_JES_EtaIntercalibration_Stat149: 2.08760156e-06 + syst_JES_EtaIntercalibration_Stat15: 4.85328789e-14 + syst_JES_EtaIntercalibration_Stat150: 4.92819521e-06 + syst_JES_EtaIntercalibration_Stat151: 8.28247830e-06 + syst_JES_EtaIntercalibration_Stat152: 4.42428099e-10 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 syst_JES_EtaIntercalibration_Stat156: 0.0 - syst_JES_EtaIntercalibration_Stat157: 7.967765727448316e-10 - syst_JES_EtaIntercalibration_Stat158: 3.0964303641451392e-06 - syst_JES_EtaIntercalibration_Stat159: 1.0653213634861547e-05 - syst_JES_EtaIntercalibration_Stat16: 4.834317966898689e-14 - syst_JES_EtaIntercalibration_Stat160: 7.36730188060731e-06 - syst_JES_EtaIntercalibration_Stat161: 2.6758569482504107e-06 - syst_JES_EtaIntercalibration_Stat162: 1.1544166448903966e-11 + syst_JES_EtaIntercalibration_Stat157: 7.96776573e-10 + syst_JES_EtaIntercalibration_Stat158: 3.09643036e-06 + syst_JES_EtaIntercalibration_Stat159: 1.06532136e-05 + syst_JES_EtaIntercalibration_Stat16: 4.83431797e-14 + syst_JES_EtaIntercalibration_Stat160: 7.36730188e-06 + syst_JES_EtaIntercalibration_Stat161: 2.67585695e-06 + syst_JES_EtaIntercalibration_Stat162: 1.15441664e-11 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 1.4686818682069986e-10 - syst_JES_EtaIntercalibration_Stat166: 3.6294355439241513e-06 - syst_JES_EtaIntercalibration_Stat167: 1.0646535633716725e-05 - syst_JES_EtaIntercalibration_Stat168: 1.791743583077668e-05 - syst_JES_EtaIntercalibration_Stat169: 7.187452034622562e-06 - syst_JES_EtaIntercalibration_Stat17: 7.771711973561552e-19 - syst_JES_EtaIntercalibration_Stat170: 6.782070134190224e-07 + syst_JES_EtaIntercalibration_Stat165: 1.46868187e-10 + syst_JES_EtaIntercalibration_Stat166: 3.62943554e-06 + syst_JES_EtaIntercalibration_Stat167: 1.06465356e-05 + syst_JES_EtaIntercalibration_Stat168: 1.79174358e-05 + syst_JES_EtaIntercalibration_Stat169: 7.18745203e-06 + syst_JES_EtaIntercalibration_Stat17: 7.77171197e-19 + syst_JES_EtaIntercalibration_Stat170: 6.78207013e-07 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 - syst_JES_EtaIntercalibration_Stat175: 2.73830628680723e-06 - syst_JES_EtaIntercalibration_Stat176: 2.8545169468756006e-06 - syst_JES_EtaIntercalibration_Stat177: 2.854591170377993e-05 - syst_JES_EtaIntercalibration_Stat178: 1.8149845040660817e-05 - syst_JES_EtaIntercalibration_Stat179: 1.0736548921790465e-06 + syst_JES_EtaIntercalibration_Stat175: 2.73830629e-06 + syst_JES_EtaIntercalibration_Stat176: 2.85451695e-06 + syst_JES_EtaIntercalibration_Stat177: 2.85459117e-05 + syst_JES_EtaIntercalibration_Stat178: 1.81498450e-05 + syst_JES_EtaIntercalibration_Stat179: 1.07365489e-06 syst_JES_EtaIntercalibration_Stat18: 0.0 - syst_JES_EtaIntercalibration_Stat180: 4.944138997616825e-07 + syst_JES_EtaIntercalibration_Stat180: 4.94413900e-07 syst_JES_EtaIntercalibration_Stat181: 0.0 - syst_JES_EtaIntercalibration_Stat182: 4.71999763638712e-07 - syst_JES_EtaIntercalibration_Stat183: 1.334833573896012e-05 - syst_JES_EtaIntercalibration_Stat184: 4.5803948519751e-05 - syst_JES_EtaIntercalibration_Stat185: 0.00010358432458630022 - syst_JES_EtaIntercalibration_Stat186: 1.3521882524264142e-05 - syst_JES_EtaIntercalibration_Stat187: 4.1068809414810165e-07 + syst_JES_EtaIntercalibration_Stat182: 4.71999764e-07 + syst_JES_EtaIntercalibration_Stat183: 1.33483357e-05 + syst_JES_EtaIntercalibration_Stat184: 4.58039485e-05 + syst_JES_EtaIntercalibration_Stat185: 1.03584325e-04 + syst_JES_EtaIntercalibration_Stat186: 1.35218825e-05 + syst_JES_EtaIntercalibration_Stat187: 4.10688094e-07 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 - syst_JES_EtaIntercalibration_Stat192: 1.6920907392926656e-06 - syst_JES_EtaIntercalibration_Stat193: 3.968910020396029e-05 - syst_JES_EtaIntercalibration_Stat194: 0.00010424225007164801 - syst_JES_EtaIntercalibration_Stat195: 7.439277787527496e-05 - syst_JES_EtaIntercalibration_Stat196: 1.7873264020597915e-05 - syst_JES_EtaIntercalibration_Stat197: 1.637374398236396e-06 - syst_JES_EtaIntercalibration_Stat198: 3.53847689691483e-05 - syst_JES_EtaIntercalibration_Stat199: 0.00016611600615232716 + syst_JES_EtaIntercalibration_Stat192: 1.69209074e-06 + syst_JES_EtaIntercalibration_Stat193: 3.96891002e-05 + syst_JES_EtaIntercalibration_Stat194: 1.04242250e-04 + syst_JES_EtaIntercalibration_Stat195: 7.43927779e-05 + syst_JES_EtaIntercalibration_Stat196: 1.78732640e-05 + syst_JES_EtaIntercalibration_Stat197: 1.63737440e-06 + syst_JES_EtaIntercalibration_Stat198: 3.53847690e-05 + syst_JES_EtaIntercalibration_Stat199: 1.66116006e-04 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 0.00017544433533175132 - syst_JES_EtaIntercalibration_Stat201: 6.145641606048957e-05 - syst_JES_EtaIntercalibration_Stat202: 7.6161953932065055e-06 + syst_JES_EtaIntercalibration_Stat200: 1.75444335e-04 + syst_JES_EtaIntercalibration_Stat201: 6.14564161e-05 + syst_JES_EtaIntercalibration_Stat202: 7.61619539e-06 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 - syst_JES_EtaIntercalibration_Stat207: 1.999353563029811e-06 - syst_JES_EtaIntercalibration_Stat208: 8.32786599315815e-05 - syst_JES_EtaIntercalibration_Stat209: 0.00020662721868137317 + syst_JES_EtaIntercalibration_Stat207: 1.99935356e-06 + syst_JES_EtaIntercalibration_Stat208: 8.32786599e-05 + syst_JES_EtaIntercalibration_Stat209: 2.06627219e-04 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 0.0001322015940713273 - syst_JES_EtaIntercalibration_Stat211: 5.165522916414174e-05 - syst_JES_EtaIntercalibration_Stat212: 0.00011936066060474029 - syst_JES_EtaIntercalibration_Stat213: 0.00014977053673870572 - syst_JES_EtaIntercalibration_Stat214: 3.6468497364163496e-05 - syst_JES_EtaIntercalibration_Stat215: 1.2618875415424307e-06 + syst_JES_EtaIntercalibration_Stat210: 1.32201594e-04 + syst_JES_EtaIntercalibration_Stat211: 5.16552292e-05 + syst_JES_EtaIntercalibration_Stat212: 1.19360661e-04 + syst_JES_EtaIntercalibration_Stat213: 1.49770537e-04 + syst_JES_EtaIntercalibration_Stat214: 3.64684974e-05 + syst_JES_EtaIntercalibration_Stat215: 1.26188754e-06 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 syst_JES_EtaIntercalibration_Stat219: 0.0 - syst_JES_EtaIntercalibration_Stat22: 9.428418571001185e-19 - syst_JES_EtaIntercalibration_Stat220: 1.8087743778592176e-06 - syst_JES_EtaIntercalibration_Stat221: 5.409708379386083e-05 - syst_JES_EtaIntercalibration_Stat222: 0.00015976309805458832 - syst_JES_EtaIntercalibration_Stat223: 0.00014066132197587225 - syst_JES_EtaIntercalibration_Stat224: 0.00018790005321979024 - syst_JES_EtaIntercalibration_Stat225: 0.000225230831592835 - syst_JES_EtaIntercalibration_Stat226: 6.16995581426642e-05 - syst_JES_EtaIntercalibration_Stat227: 9.851446429332093e-07 + syst_JES_EtaIntercalibration_Stat22: 9.42841857e-19 + syst_JES_EtaIntercalibration_Stat220: 1.80877438e-06 + syst_JES_EtaIntercalibration_Stat221: 5.40970838e-05 + syst_JES_EtaIntercalibration_Stat222: 1.59763098e-04 + syst_JES_EtaIntercalibration_Stat223: 1.40661322e-04 + syst_JES_EtaIntercalibration_Stat224: 1.87900053e-04 + syst_JES_EtaIntercalibration_Stat225: 2.25230832e-04 + syst_JES_EtaIntercalibration_Stat226: 6.16995581e-05 + syst_JES_EtaIntercalibration_Stat227: 9.85144643e-07 syst_JES_EtaIntercalibration_Stat228: 0.0 syst_JES_EtaIntercalibration_Stat229: 0.0 - syst_JES_EtaIntercalibration_Stat23: 9.428418571001185e-19 + syst_JES_EtaIntercalibration_Stat23: 9.42841857e-19 syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 - syst_JES_EtaIntercalibration_Stat232: 6.6056486030896315e-06 - syst_JES_EtaIntercalibration_Stat233: 6.68109173339208e-05 - syst_JES_EtaIntercalibration_Stat234: 0.0002286888005565642 - syst_JES_EtaIntercalibration_Stat235: 0.00023171053061956423 - syst_JES_EtaIntercalibration_Stat236: 1.6053653415967347e-05 - syst_JES_EtaIntercalibration_Stat237: 5.587698005440164e-06 - syst_JES_EtaIntercalibration_Stat238: 3.2094901464251297e-07 + syst_JES_EtaIntercalibration_Stat232: 6.60564860e-06 + syst_JES_EtaIntercalibration_Stat233: 6.68109173e-05 + syst_JES_EtaIntercalibration_Stat234: 2.28688801e-04 + syst_JES_EtaIntercalibration_Stat235: 2.31710531e-04 + syst_JES_EtaIntercalibration_Stat236: 1.60536534e-05 + syst_JES_EtaIntercalibration_Stat237: 5.58769801e-06 + syst_JES_EtaIntercalibration_Stat238: 3.20949015e-07 syst_JES_EtaIntercalibration_Stat239: 0.0 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 - syst_JES_EtaIntercalibration_Stat243: 1.8833713767337552e-06 - syst_JES_EtaIntercalibration_Stat244: 1.0694512050579961e-05 - syst_JES_EtaIntercalibration_Stat245: 3.095370198780753e-05 - syst_JES_EtaIntercalibration_Stat25: 7.253828782098457e-19 - syst_JES_EtaIntercalibration_Stat26: 7.724992297730788e-17 - syst_JES_EtaIntercalibration_Stat27: 4.178993183770464e-14 - syst_JES_EtaIntercalibration_Stat28: 6.821681733392386e-07 - syst_JES_EtaIntercalibration_Stat29: 4.590698866185845e-14 + syst_JES_EtaIntercalibration_Stat243: 1.88337138e-06 + syst_JES_EtaIntercalibration_Stat244: 1.06945121e-05 + syst_JES_EtaIntercalibration_Stat245: 3.09537020e-05 + syst_JES_EtaIntercalibration_Stat25: 7.25382878e-19 + syst_JES_EtaIntercalibration_Stat26: 7.72499230e-17 + syst_JES_EtaIntercalibration_Stat27: 4.17899318e-14 + syst_JES_EtaIntercalibration_Stat28: 6.82168173e-07 + syst_JES_EtaIntercalibration_Stat29: 4.59069887e-14 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 6.259673799392425e-18 + syst_JES_EtaIntercalibration_Stat30: 6.25967380e-18 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 1.3461484613518674e-18 - syst_JES_EtaIntercalibration_Stat36: 4.731760604877956e-14 - syst_JES_EtaIntercalibration_Stat37: 1.4687790858310802e-06 - syst_JES_EtaIntercalibration_Stat38: 1.4687790858732269e-06 - syst_JES_EtaIntercalibration_Stat39: 2.3170375536878982e-15 - syst_JES_EtaIntercalibration_Stat4: 9.946301762464278e-19 - syst_JES_EtaIntercalibration_Stat40: 7.078025625130217e-19 + syst_JES_EtaIntercalibration_Stat35: 1.34614846e-18 + syst_JES_EtaIntercalibration_Stat36: 4.73176060e-14 + syst_JES_EtaIntercalibration_Stat37: 1.46877909e-06 + syst_JES_EtaIntercalibration_Stat38: 1.46877909e-06 + syst_JES_EtaIntercalibration_Stat39: 2.31703755e-15 + syst_JES_EtaIntercalibration_Stat4: 9.94630176e-19 + syst_JES_EtaIntercalibration_Stat40: 7.07802563e-19 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 - syst_JES_EtaIntercalibration_Stat44: 9.428418571001185e-19 + syst_JES_EtaIntercalibration_Stat44: 9.42841857e-19 syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 - syst_JES_EtaIntercalibration_Stat47: 7.257292883713596e-19 - syst_JES_EtaIntercalibration_Stat48: 2.266847129274491e-15 - syst_JES_EtaIntercalibration_Stat49: 1.2302759477044165e-13 - syst_JES_EtaIntercalibration_Stat5: 3.859267011687582e-16 - syst_JES_EtaIntercalibration_Stat50: 6.813021771118423e-07 - syst_JES_EtaIntercalibration_Stat51: 1.7005191479929026e-10 - syst_JES_EtaIntercalibration_Stat52: 3.242962509804885e-16 + syst_JES_EtaIntercalibration_Stat47: 7.25729288e-19 + syst_JES_EtaIntercalibration_Stat48: 2.26684713e-15 + syst_JES_EtaIntercalibration_Stat49: 1.23027595e-13 + syst_JES_EtaIntercalibration_Stat5: 3.85926701e-16 + syst_JES_EtaIntercalibration_Stat50: 6.81302177e-07 + syst_JES_EtaIntercalibration_Stat51: 1.70051915e-10 + syst_JES_EtaIntercalibration_Stat52: 3.24296251e-16 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 syst_JES_EtaIntercalibration_Stat56: 0.0 - syst_JES_EtaIntercalibration_Stat57: 4.862766600054192e-14 - syst_JES_EtaIntercalibration_Stat58: 4.375061744421443e-14 - syst_JES_EtaIntercalibration_Stat59: 4.402963082490494e-06 - syst_JES_EtaIntercalibration_Stat6: 2.7325538018491056e-15 - syst_JES_EtaIntercalibration_Stat60: 1.4670473355611326e-06 - syst_JES_EtaIntercalibration_Stat61: 8.820982751466812e-14 - syst_JES_EtaIntercalibration_Stat62: 7.927596546242751e-19 + syst_JES_EtaIntercalibration_Stat57: 4.86276660e-14 + syst_JES_EtaIntercalibration_Stat58: 4.37506174e-14 + syst_JES_EtaIntercalibration_Stat59: 4.40296308e-06 + syst_JES_EtaIntercalibration_Stat6: 2.73255380e-15 + syst_JES_EtaIntercalibration_Stat60: 1.46704734e-06 + syst_JES_EtaIntercalibration_Stat61: 8.82098275e-14 + syst_JES_EtaIntercalibration_Stat62: 7.92759655e-19 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 - syst_JES_EtaIntercalibration_Stat69: 1.0760833517901855e-18 - syst_JES_EtaIntercalibration_Stat7: 3.2601649761745183e-16 - syst_JES_EtaIntercalibration_Stat70: 5.1618108256696126e-14 - syst_JES_EtaIntercalibration_Stat71: 1.2047278159980355e-06 - syst_JES_EtaIntercalibration_Stat72: 1.2660783128062842e-06 - syst_JES_EtaIntercalibration_Stat73: 6.813883541086478e-07 - syst_JES_EtaIntercalibration_Stat74: 3.910949341272525e-15 + syst_JES_EtaIntercalibration_Stat69: 1.07608335e-18 + syst_JES_EtaIntercalibration_Stat7: 3.26016498e-16 + syst_JES_EtaIntercalibration_Stat70: 5.16181083e-14 + syst_JES_EtaIntercalibration_Stat71: 1.20472782e-06 + syst_JES_EtaIntercalibration_Stat72: 1.26607831e-06 + syst_JES_EtaIntercalibration_Stat73: 6.81388354e-07 + syst_JES_EtaIntercalibration_Stat74: 3.91094934e-15 syst_JES_EtaIntercalibration_Stat75: 0.0 syst_JES_EtaIntercalibration_Stat76: 0.0 syst_JES_EtaIntercalibration_Stat77: 0.0 syst_JES_EtaIntercalibration_Stat78: 0.0 - syst_JES_EtaIntercalibration_Stat79: 4.787832604030633e-14 + syst_JES_EtaIntercalibration_Stat79: 4.78783260e-14 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 1.1695851946309855e-09 - syst_JES_EtaIntercalibration_Stat81: 1.8492200599171533e-06 - syst_JES_EtaIntercalibration_Stat82: 1.6477652836493432e-06 - syst_JES_EtaIntercalibration_Stat83: 1.1813412663155385e-11 - syst_JES_EtaIntercalibration_Stat84: 4.018575206152051e-19 - syst_JES_EtaIntercalibration_Stat85: 9.428418571001185e-19 - syst_JES_EtaIntercalibration_Stat86: 9.428418571001185e-19 - syst_JES_EtaIntercalibration_Stat87: 9.428418571001185e-19 - syst_JES_EtaIntercalibration_Stat88: 9.428418571001185e-19 - syst_JES_EtaIntercalibration_Stat89: 9.428418571001185e-19 + syst_JES_EtaIntercalibration_Stat80: 1.16958519e-09 + syst_JES_EtaIntercalibration_Stat81: 1.84922006e-06 + syst_JES_EtaIntercalibration_Stat82: 1.64776528e-06 + syst_JES_EtaIntercalibration_Stat83: 1.18134127e-11 + syst_JES_EtaIntercalibration_Stat84: 4.01857521e-19 + syst_JES_EtaIntercalibration_Stat85: 9.42841857e-19 + syst_JES_EtaIntercalibration_Stat86: 9.42841857e-19 + syst_JES_EtaIntercalibration_Stat87: 9.42841857e-19 + syst_JES_EtaIntercalibration_Stat88: 9.42841857e-19 + syst_JES_EtaIntercalibration_Stat89: 9.42841857e-19 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 2.2184358288837204e-11 - syst_JES_EtaIntercalibration_Stat92: 1.2044908927248392e-06 - syst_JES_EtaIntercalibration_Stat93: 1.2676753069070437e-06 - syst_JES_EtaIntercalibration_Stat94: 6.813853658112919e-07 - syst_JES_EtaIntercalibration_Stat95: 4.1615780141071484e-14 - syst_JES_EtaIntercalibration_Stat96: 1.110103848016377e-15 - syst_JES_EtaIntercalibration_Stat97: 9.428418571001185e-19 - syst_JES_EtaIntercalibration_Stat98: 9.428418571001185e-19 - syst_JES_EtaIntercalibration_Stat99: 9.428418571001185e-19 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.002148906931442123 + syst_JES_EtaIntercalibration_Stat91: 2.21843583e-11 + syst_JES_EtaIntercalibration_Stat92: 1.20449089e-06 + syst_JES_EtaIntercalibration_Stat93: 1.26767531e-06 + syst_JES_EtaIntercalibration_Stat94: 6.81385366e-07 + syst_JES_EtaIntercalibration_Stat95: 4.16157801e-14 + syst_JES_EtaIntercalibration_Stat96: 1.11010385e-15 + syst_JES_EtaIntercalibration_Stat97: 9.42841857e-19 + syst_JES_EtaIntercalibration_Stat98: 9.42841857e-19 + syst_JES_EtaIntercalibration_Stat99: 9.42841857e-19 + syst_JES_EtaIntercalibration_TotalStat_MJB: 2.14890693e-03 syst_JES_Flavour_Comp: 0.006171 - syst_JES_Flavour_Response: 0.0013807501873981404 - syst_JES_Gjet_Generator: 0.008913418914759925 - syst_JES_Gjet_OOC: 0.007223502803349632 - syst_JES_Gjet_Purity: 0.0016842003295332775 - syst_JES_Gjet_Stat1: 1.49389381796706e-05 - syst_JES_Gjet_Stat10: 0.00017555411558832794 - syst_JES_Gjet_Stat11: 0.0002054166680189317 - syst_JES_Gjet_Stat12: 0.0006464645620604428 - syst_JES_Gjet_Stat13: 0.0019564975721937405 - syst_JES_Gjet_Stat14: 0.003531559535106268 - syst_JES_Gjet_Stat15: 0.0005462100969407284 - syst_JES_Gjet_Stat2: 2.0293538690718164e-13 - syst_JES_Gjet_Stat3: 1.0488433592256265e-05 - syst_JES_Gjet_Stat4: 2.759300047113398e-05 - syst_JES_Gjet_Stat5: 7.473789497698159e-09 - syst_JES_Gjet_Stat6: 5.594119948660379e-05 - syst_JES_Gjet_Stat7: 6.953280376915632e-05 - syst_JES_Gjet_Stat8: 6.306277091121196e-05 - syst_JES_Gjet_Stat9: 0.00012014109486349789 - syst_JES_Gjet_Veto: 0.00678000368731463 - syst_JES_Gjet_dPhi: 0.0006696376389510973 - syst_JES_LArESZee: 0.013489264796496508 - syst_JES_LArEsmear: 0.0010905956079134008 - syst_JES_LAr_JVT: 0.001330882589674987 - syst_JES_MJB_Alpha: 7.872147864464945e-05 - syst_JES_MJB_Asym: 0.0007811835507740802 - syst_JES_MJB_Beta: 7.632257251298597e-05 - syst_JES_MJB_Fragmentation: 0.001229547567196975 - syst_JES_MJB_Stat1: 2.475977049949171e-08 - syst_JES_MJB_Stat10: 2.1040377254222417e-05 - syst_JES_MJB_Stat11: 3.088419660603138e-05 - syst_JES_MJB_Stat12: 1.810152557106721e-05 - syst_JES_MJB_Stat13: 1.0032674239487445e-06 - syst_JES_MJB_Stat14: 4.198500535905647e-07 - syst_JES_MJB_Stat15: 6.727917243099829e-06 - syst_JES_MJB_Stat16: 3.1017168322559684e-07 - syst_JES_MJB_Stat2: 3.138476072864179e-05 - syst_JES_MJB_Stat3: 8.850779626676963e-05 - syst_JES_MJB_Stat4: 5.672466394788074e-05 + syst_JES_Flavour_Response: 1.38075019e-03 + syst_JES_Gjet_Generator: 8.91341891e-03 + syst_JES_Gjet_OOC: 7.22350280e-03 + syst_JES_Gjet_Purity: 1.68420033e-03 + syst_JES_Gjet_Stat1: 1.49389382e-05 + syst_JES_Gjet_Stat10: 1.75554116e-04 + syst_JES_Gjet_Stat11: 2.05416668e-04 + syst_JES_Gjet_Stat12: 6.46464562e-04 + syst_JES_Gjet_Stat13: 1.95649757e-03 + syst_JES_Gjet_Stat14: 3.53155954e-03 + syst_JES_Gjet_Stat15: 5.46210097e-04 + syst_JES_Gjet_Stat2: 2.02935387e-13 + syst_JES_Gjet_Stat3: 1.04884336e-05 + syst_JES_Gjet_Stat4: 2.75930005e-05 + syst_JES_Gjet_Stat5: 7.47378950e-09 + syst_JES_Gjet_Stat6: 5.59411995e-05 + syst_JES_Gjet_Stat7: 6.95328038e-05 + syst_JES_Gjet_Stat8: 6.30627709e-05 + syst_JES_Gjet_Stat9: 1.20141095e-04 + syst_JES_Gjet_Veto: 6.78000369e-03 + syst_JES_Gjet_dPhi: 6.69637639e-04 + syst_JES_LArESZee: 1.34892648e-02 + syst_JES_LArEsmear: 1.09059561e-03 + syst_JES_LAr_JVT: 1.33088259e-03 + syst_JES_MJB_Alpha: 7.87214786e-05 + syst_JES_MJB_Asym: 7.81183551e-04 + syst_JES_MJB_Beta: 7.63225725e-05 + syst_JES_MJB_Fragmentation: 1.22954757e-03 + syst_JES_MJB_Stat1: 2.47597705e-08 + syst_JES_MJB_Stat10: 2.10403773e-05 + syst_JES_MJB_Stat11: 3.08841966e-05 + syst_JES_MJB_Stat12: 1.81015256e-05 + syst_JES_MJB_Stat13: 1.00326742e-06 + syst_JES_MJB_Stat14: 4.19850054e-07 + syst_JES_MJB_Stat15: 6.72791724e-06 + syst_JES_MJB_Stat16: 3.10171683e-07 + syst_JES_MJB_Stat2: 3.13847607e-05 + syst_JES_MJB_Stat3: 8.85077963e-05 + syst_JES_MJB_Stat4: 5.67246639e-05 syst_JES_MJB_Stat5: 0.0 - syst_JES_MJB_Stat6: 1.8472321862722078e-05 - syst_JES_MJB_Stat7: 3.806181649632608e-06 - syst_JES_MJB_Stat8: 3.130678859289148e-05 - syst_JES_MJB_Stat9: 5.295270224455028e-05 - syst_JES_MJB_Threshold: 0.0007490298325167029 - syst_JES_Pileup_MuOffset: 0.0016027372679263436 - syst_JES_Pileup_NPVOffset: 0.001630581108071598 - syst_JES_Pileup_Pt_term: 0.0015618681122297107 - syst_JES_Pileup_Rho_topology: 0.0026943566950201675 - syst_JES_PunchThrough_MC15: 0.0012751727441801758 + syst_JES_MJB_Stat6: 1.84723219e-05 + syst_JES_MJB_Stat7: 3.80618165e-06 + syst_JES_MJB_Stat8: 3.13067886e-05 + syst_JES_MJB_Stat9: 5.29527022e-05 + syst_JES_MJB_Threshold: 7.49029833e-04 + syst_JES_Pileup_MuOffset: 1.60273727e-03 + syst_JES_Pileup_NPVOffset: 1.63058111e-03 + syst_JES_Pileup_Pt_term: 1.56186811e-03 + syst_JES_Pileup_Rho_topology: 2.69435670e-03 + syst_JES_PunchThrough_MC15: 1.27517274e-03 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.004445027221513946 - syst_JES_Zjet_MuScale: 0.0003062420733668057 - syst_JES_Zjet_MuSmearID: 5.7616191083757004e-05 - syst_JES_Zjet_MuSmearMS: 0.0012577748238456676 - syst_JES_Zjet_OOC: 0.0022296822643596555 - syst_JES_Zjet_Stat1: 0.00010849012708537122 - syst_JES_Zjet_Stat10: 0.00017953425160676165 - syst_JES_Zjet_Stat11: 0.0002395381963278508 - syst_JES_Zjet_Stat12: 0.0007213967753601342 - syst_JES_Zjet_Stat13: 0.0013730046858987772 - syst_JES_Zjet_Stat2: 1.3639900117783076e-09 - syst_JES_Zjet_Stat3: 4.939862447477662e-05 - syst_JES_Zjet_Stat4: 4.938493368427257e-05 - syst_JES_Zjet_Stat5: 6.050828930816009e-05 - syst_JES_Zjet_Stat6: 8.983935162277164e-05 - syst_JES_Zjet_Stat7: 3.754797564450046e-05 - syst_JES_Zjet_Stat8: 5.9881897254095077e-05 - syst_JES_Zjet_Stat9: 0.00011287736387336479 - syst_JES_Zjet_Veto: 0.00047537651130446064 - syst_JES_Zjet_dPhi: 0.0004002180059667481 - syst_PRW: 0.0005186 - syst_Unfolding_bias: 1.2422e-13 - syst_cleaning: 0.0020455520037388443 + syst_JES_Zjet_MC: 4.44502722e-03 + syst_JES_Zjet_MuScale: 3.06242073e-04 + syst_JES_Zjet_MuSmearID: 5.76161911e-05 + syst_JES_Zjet_MuSmearMS: 1.25777482e-03 + syst_JES_Zjet_OOC: 2.22968226e-03 + syst_JES_Zjet_Stat1: 1.08490127e-04 + syst_JES_Zjet_Stat10: 1.79534252e-04 + syst_JES_Zjet_Stat11: 2.39538196e-04 + syst_JES_Zjet_Stat12: 7.21396775e-04 + syst_JES_Zjet_Stat13: 1.37300469e-03 + syst_JES_Zjet_Stat2: 1.36399001e-09 + syst_JES_Zjet_Stat3: 4.93986245e-05 + syst_JES_Zjet_Stat4: 4.93849337e-05 + syst_JES_Zjet_Stat5: 6.05082893e-05 + syst_JES_Zjet_Stat6: 8.98393516e-05 + syst_JES_Zjet_Stat7: 3.75479756e-05 + syst_JES_Zjet_Stat8: 5.98818973e-05 + syst_JES_Zjet_Stat9: 1.12877364e-04 + syst_JES_Zjet_Veto: 4.75376511e-04 + syst_JES_Zjet_dPhi: 4.00218006e-04 + syst_PRW: 5.18600000e-04 + syst_Unfolding_bias: 1.24220000e-13 + syst_cleaning: 2.04555200e-03 syst_lumi: 0.007194 -- stat: 0.0013453 +- stat: 1.34530000e-03 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.002192385629856208 - syst_JER_NP1: 0.0002534706491884218 - syst_JER_NP2: 0.0015982962022103413 - syst_JER_NP3: 8.328335728103185e-05 - syst_JER_NP4: 2.4930064179620555e-10 - syst_JER_NP5: 0.00018869597240004886 - syst_JER_NP6: 4.949745852061498e-10 - syst_JER_NP7: 5.947389847655861e-10 - syst_JER_NP8: 0.00020993657970920645 - syst_JES_EtaIntercalibration_Modelling: 0.014651020672635746 - syst_JES_EtaIntercalibration_NonClosure: 1.3652696171452731e-05 - syst_JES_EtaIntercalibration_Stat0: 1.9017917867106274e-19 + syst_JER_NP0: 2.19238563e-03 + syst_JER_NP1: 2.53470649e-04 + syst_JER_NP2: 1.59829620e-03 + syst_JER_NP3: 8.32833573e-05 + syst_JER_NP4: 2.49300642e-10 + syst_JER_NP5: 1.88695972e-04 + syst_JER_NP6: 4.94974585e-10 + syst_JER_NP7: 5.94738985e-10 + syst_JER_NP8: 2.09936580e-04 + syst_JES_EtaIntercalibration_Modelling: 1.46510207e-02 + syst_JES_EtaIntercalibration_NonClosure: 1.36526962e-05 + syst_JES_EtaIntercalibration_Stat0: 1.90179179e-19 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 6.759783529191079e-15 - syst_JES_EtaIntercalibration_Stat101: 2.4046159776563075e-10 - syst_JES_EtaIntercalibration_Stat102: 1.1285947767024264e-06 - syst_JES_EtaIntercalibration_Stat103: 8.354752958645756e-07 - syst_JES_EtaIntercalibration_Stat104: 3.093688216364894e-11 - syst_JES_EtaIntercalibration_Stat105: 2.6430237811075406e-19 - syst_JES_EtaIntercalibration_Stat106: 1.9017917867106274e-19 - syst_JES_EtaIntercalibration_Stat107: 1.9017917867106274e-19 - syst_JES_EtaIntercalibration_Stat108: 1.9017917867106274e-19 - syst_JES_EtaIntercalibration_Stat109: 1.9017917867106274e-19 + syst_JES_EtaIntercalibration_Stat100: 6.75978353e-15 + syst_JES_EtaIntercalibration_Stat101: 2.40461598e-10 + syst_JES_EtaIntercalibration_Stat102: 1.12859478e-06 + syst_JES_EtaIntercalibration_Stat103: 8.35475296e-07 + syst_JES_EtaIntercalibration_Stat104: 3.09368822e-11 + syst_JES_EtaIntercalibration_Stat105: 2.64302378e-19 + syst_JES_EtaIntercalibration_Stat106: 1.90179179e-19 + syst_JES_EtaIntercalibration_Stat107: 1.90179179e-19 + syst_JES_EtaIntercalibration_Stat108: 1.90179179e-19 + syst_JES_EtaIntercalibration_Stat109: 1.90179179e-19 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 1.7219939568709295e-17 - syst_JES_EtaIntercalibration_Stat111: 1.4970956816449642e-10 - syst_JES_EtaIntercalibration_Stat112: 5.402666481238686e-07 - syst_JES_EtaIntercalibration_Stat113: 3.4902204428946894e-07 - syst_JES_EtaIntercalibration_Stat114: 1.2391980013503694e-06 - syst_JES_EtaIntercalibration_Stat115: 2.7363492344122944e-11 - syst_JES_EtaIntercalibration_Stat116: 1.5720692251971606e-16 - syst_JES_EtaIntercalibration_Stat117: 1.9017917867106274e-19 - syst_JES_EtaIntercalibration_Stat118: 1.9017917867106274e-19 - syst_JES_EtaIntercalibration_Stat119: 1.9017917867106274e-19 + syst_JES_EtaIntercalibration_Stat110: 1.72199396e-17 + syst_JES_EtaIntercalibration_Stat111: 1.49709568e-10 + syst_JES_EtaIntercalibration_Stat112: 5.40266648e-07 + syst_JES_EtaIntercalibration_Stat113: 3.49022044e-07 + syst_JES_EtaIntercalibration_Stat114: 1.23919800e-06 + syst_JES_EtaIntercalibration_Stat115: 2.73634923e-11 + syst_JES_EtaIntercalibration_Stat116: 1.57206923e-16 + syst_JES_EtaIntercalibration_Stat117: 1.90179179e-19 + syst_JES_EtaIntercalibration_Stat118: 1.90179179e-19 + syst_JES_EtaIntercalibration_Stat119: 1.90179179e-19 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 6.020608607109418e-14 - syst_JES_EtaIntercalibration_Stat121: 1.530249622610638e-06 - syst_JES_EtaIntercalibration_Stat122: 1.5048436222744207e-06 - syst_JES_EtaIntercalibration_Stat123: 2.995840002403333e-06 - syst_JES_EtaIntercalibration_Stat124: 2.969085157081218e-06 - syst_JES_EtaIntercalibration_Stat125: 3.5091349361345457e-16 - syst_JES_EtaIntercalibration_Stat126: 1.9017917867106274e-19 - syst_JES_EtaIntercalibration_Stat127: 1.9017917867106274e-19 - syst_JES_EtaIntercalibration_Stat128: 1.9017917867106274e-19 - syst_JES_EtaIntercalibration_Stat129: 4.7462555101363854e-11 + syst_JES_EtaIntercalibration_Stat120: 6.02060861e-14 + syst_JES_EtaIntercalibration_Stat121: 1.53024962e-06 + syst_JES_EtaIntercalibration_Stat122: 1.50484362e-06 + syst_JES_EtaIntercalibration_Stat123: 2.99584000e-06 + syst_JES_EtaIntercalibration_Stat124: 2.96908516e-06 + syst_JES_EtaIntercalibration_Stat125: 3.50913494e-16 + syst_JES_EtaIntercalibration_Stat126: 1.90179179e-19 + syst_JES_EtaIntercalibration_Stat127: 1.90179179e-19 + syst_JES_EtaIntercalibration_Stat128: 1.90179179e-19 + syst_JES_EtaIntercalibration_Stat129: 4.74625551e-11 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 2.1210755802658233e-06 - syst_JES_EtaIntercalibration_Stat131: 1.151715251266562e-06 - syst_JES_EtaIntercalibration_Stat132: 1.107707175881785e-06 - syst_JES_EtaIntercalibration_Stat133: 1.9925049830552494e-06 - syst_JES_EtaIntercalibration_Stat134: 4.013145090838255e-07 - syst_JES_EtaIntercalibration_Stat135: 1.5727021332725405e-16 + syst_JES_EtaIntercalibration_Stat130: 2.12107558e-06 + syst_JES_EtaIntercalibration_Stat131: 1.15171525e-06 + syst_JES_EtaIntercalibration_Stat132: 1.10770718e-06 + syst_JES_EtaIntercalibration_Stat133: 1.99250498e-06 + syst_JES_EtaIntercalibration_Stat134: 4.01314509e-07 + syst_JES_EtaIntercalibration_Stat135: 1.57270213e-16 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 syst_JES_EtaIntercalibration_Stat138: 0.0 - syst_JES_EtaIntercalibration_Stat139: 4.104593280703948e-10 - syst_JES_EtaIntercalibration_Stat14: 6.8269081970561035e-15 - syst_JES_EtaIntercalibration_Stat140: 2.53355071145221e-06 - syst_JES_EtaIntercalibration_Stat141: 4.630013039938441e-06 - syst_JES_EtaIntercalibration_Stat142: 1.806144479270692e-07 - syst_JES_EtaIntercalibration_Stat143: 2.673005624292624e-06 - syst_JES_EtaIntercalibration_Stat144: 1.5610723261591693e-12 + syst_JES_EtaIntercalibration_Stat139: 4.10459328e-10 + syst_JES_EtaIntercalibration_Stat14: 6.82690820e-15 + syst_JES_EtaIntercalibration_Stat140: 2.53355071e-06 + syst_JES_EtaIntercalibration_Stat141: 4.63001304e-06 + syst_JES_EtaIntercalibration_Stat142: 1.80614448e-07 + syst_JES_EtaIntercalibration_Stat143: 2.67300562e-06 + syst_JES_EtaIntercalibration_Stat144: 1.56107233e-12 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 8.96815555172857e-12 - syst_JES_EtaIntercalibration_Stat148: 3.662594505265359e-07 - syst_JES_EtaIntercalibration_Stat149: 5.329305466005866e-07 - syst_JES_EtaIntercalibration_Stat15: 6.812320098161914e-15 - syst_JES_EtaIntercalibration_Stat150: 2.3049818806229257e-06 - syst_JES_EtaIntercalibration_Stat151: 3.3222247064279085e-06 - syst_JES_EtaIntercalibration_Stat152: 6.564645040480103e-11 + syst_JES_EtaIntercalibration_Stat147: 8.96815555e-12 + syst_JES_EtaIntercalibration_Stat148: 3.66259451e-07 + syst_JES_EtaIntercalibration_Stat149: 5.32930547e-07 + syst_JES_EtaIntercalibration_Stat15: 6.81232010e-15 + syst_JES_EtaIntercalibration_Stat150: 2.30498188e-06 + syst_JES_EtaIntercalibration_Stat151: 3.32222471e-06 + syst_JES_EtaIntercalibration_Stat152: 6.56464504e-11 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 syst_JES_EtaIntercalibration_Stat156: 0.0 - syst_JES_EtaIntercalibration_Stat157: 1.162346961571716e-10 - syst_JES_EtaIntercalibration_Stat158: 2.5401531464657795e-06 - syst_JES_EtaIntercalibration_Stat159: 5.688684975457861e-06 - syst_JES_EtaIntercalibration_Stat16: 6.7856453829753e-15 - syst_JES_EtaIntercalibration_Stat160: 3.319504179843731e-06 - syst_JES_EtaIntercalibration_Stat161: 2.4987874434413186e-06 - syst_JES_EtaIntercalibration_Stat162: 1.5285603709045972e-12 + syst_JES_EtaIntercalibration_Stat157: 1.16234696e-10 + syst_JES_EtaIntercalibration_Stat158: 2.54015315e-06 + syst_JES_EtaIntercalibration_Stat159: 5.68868498e-06 + syst_JES_EtaIntercalibration_Stat16: 6.78564538e-15 + syst_JES_EtaIntercalibration_Stat160: 3.31950418e-06 + syst_JES_EtaIntercalibration_Stat161: 2.49878744e-06 + syst_JES_EtaIntercalibration_Stat162: 1.52856037e-12 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 2.073395448895362e-11 - syst_JES_EtaIntercalibration_Stat166: 1.5872699927863566e-06 - syst_JES_EtaIntercalibration_Stat167: 4.296275005164357e-06 - syst_JES_EtaIntercalibration_Stat168: 5.504516236691468e-06 - syst_JES_EtaIntercalibration_Stat169: 2.7972498547680724e-06 - syst_JES_EtaIntercalibration_Stat17: 1.5657739300422653e-19 - syst_JES_EtaIntercalibration_Stat170: 4.007663000063129e-07 + syst_JES_EtaIntercalibration_Stat165: 2.07339545e-11 + syst_JES_EtaIntercalibration_Stat166: 1.58726999e-06 + syst_JES_EtaIntercalibration_Stat167: 4.29627501e-06 + syst_JES_EtaIntercalibration_Stat168: 5.50451624e-06 + syst_JES_EtaIntercalibration_Stat169: 2.79724985e-06 + syst_JES_EtaIntercalibration_Stat17: 1.56577393e-19 + syst_JES_EtaIntercalibration_Stat170: 4.00766300e-07 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 - syst_JES_EtaIntercalibration_Stat175: 6.7255813347373e-07 - syst_JES_EtaIntercalibration_Stat176: 2.641233879742572e-06 - syst_JES_EtaIntercalibration_Stat177: 1.321493064681007e-05 - syst_JES_EtaIntercalibration_Stat178: 9.249464025012476e-06 - syst_JES_EtaIntercalibration_Stat179: 5.588562784831176e-07 + syst_JES_EtaIntercalibration_Stat175: 6.72558133e-07 + syst_JES_EtaIntercalibration_Stat176: 2.64123388e-06 + syst_JES_EtaIntercalibration_Stat177: 1.32149306e-05 + syst_JES_EtaIntercalibration_Stat178: 9.24946403e-06 + syst_JES_EtaIntercalibration_Stat179: 5.58856278e-07 syst_JES_EtaIntercalibration_Stat18: 0.0 - syst_JES_EtaIntercalibration_Stat180: 2.0481500848057132e-07 + syst_JES_EtaIntercalibration_Stat180: 2.04815008e-07 syst_JES_EtaIntercalibration_Stat181: 0.0 - syst_JES_EtaIntercalibration_Stat182: 1.727091134651556e-07 - syst_JES_EtaIntercalibration_Stat183: 4.661342590928069e-06 - syst_JES_EtaIntercalibration_Stat184: 2.2832995861253075e-05 - syst_JES_EtaIntercalibration_Stat185: 4.295279123642607e-05 - syst_JES_EtaIntercalibration_Stat186: 4.212615903450017e-06 - syst_JES_EtaIntercalibration_Stat187: 9.644070095176362e-07 + syst_JES_EtaIntercalibration_Stat182: 1.72709113e-07 + syst_JES_EtaIntercalibration_Stat183: 4.66134259e-06 + syst_JES_EtaIntercalibration_Stat184: 2.28329959e-05 + syst_JES_EtaIntercalibration_Stat185: 4.29527912e-05 + syst_JES_EtaIntercalibration_Stat186: 4.21261590e-06 + syst_JES_EtaIntercalibration_Stat187: 9.64407010e-07 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 - syst_JES_EtaIntercalibration_Stat192: 2.1433077325246602e-06 - syst_JES_EtaIntercalibration_Stat193: 1.930167868347207e-05 - syst_JES_EtaIntercalibration_Stat194: 5.5252169866893005e-05 - syst_JES_EtaIntercalibration_Stat195: 3.9868892635737955e-05 - syst_JES_EtaIntercalibration_Stat196: 8.69897758360142e-06 - syst_JES_EtaIntercalibration_Stat197: 9.900242724297218e-07 - syst_JES_EtaIntercalibration_Stat198: 1.672080831628663e-05 - syst_JES_EtaIntercalibration_Stat199: 7.371701838788652e-05 + syst_JES_EtaIntercalibration_Stat192: 2.14330773e-06 + syst_JES_EtaIntercalibration_Stat193: 1.93016787e-05 + syst_JES_EtaIntercalibration_Stat194: 5.52521699e-05 + syst_JES_EtaIntercalibration_Stat195: 3.98688926e-05 + syst_JES_EtaIntercalibration_Stat196: 8.69897758e-06 + syst_JES_EtaIntercalibration_Stat197: 9.90024272e-07 + syst_JES_EtaIntercalibration_Stat198: 1.67208083e-05 + syst_JES_EtaIntercalibration_Stat199: 7.37170184e-05 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 7.353385121833345e-05 - syst_JES_EtaIntercalibration_Stat201: 2.4264465273316867e-05 - syst_JES_EtaIntercalibration_Stat202: 2.4345193504057426e-06 + syst_JES_EtaIntercalibration_Stat200: 7.35338512e-05 + syst_JES_EtaIntercalibration_Stat201: 2.42644653e-05 + syst_JES_EtaIntercalibration_Stat202: 2.43451935e-06 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 - syst_JES_EtaIntercalibration_Stat207: 2.3005199819823344e-06 - syst_JES_EtaIntercalibration_Stat208: 4.204379621299675e-05 - syst_JES_EtaIntercalibration_Stat209: 0.00010240532847464532 + syst_JES_EtaIntercalibration_Stat207: 2.30051998e-06 + syst_JES_EtaIntercalibration_Stat208: 4.20437962e-05 + syst_JES_EtaIntercalibration_Stat209: 1.02405328e-04 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 6.894629866787628e-05 - syst_JES_EtaIntercalibration_Stat211: 2.6243902148880223e-05 - syst_JES_EtaIntercalibration_Stat212: 6.126778496893779e-05 - syst_JES_EtaIntercalibration_Stat213: 7.286518578855063e-05 - syst_JES_EtaIntercalibration_Stat214: 1.549904251074885e-05 - syst_JES_EtaIntercalibration_Stat215: 5.861856766417958e-07 + syst_JES_EtaIntercalibration_Stat210: 6.89462987e-05 + syst_JES_EtaIntercalibration_Stat211: 2.62439021e-05 + syst_JES_EtaIntercalibration_Stat212: 6.12677850e-05 + syst_JES_EtaIntercalibration_Stat213: 7.28651858e-05 + syst_JES_EtaIntercalibration_Stat214: 1.54990425e-05 + syst_JES_EtaIntercalibration_Stat215: 5.86185677e-07 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 syst_JES_EtaIntercalibration_Stat219: 0.0 - syst_JES_EtaIntercalibration_Stat22: 1.9017917867106274e-19 - syst_JES_EtaIntercalibration_Stat220: 2.2470276071957816e-06 - syst_JES_EtaIntercalibration_Stat221: 2.9162506750963643e-05 - syst_JES_EtaIntercalibration_Stat222: 9.079085017225028e-05 - syst_JES_EtaIntercalibration_Stat223: 8.11174646731516e-05 - syst_JES_EtaIntercalibration_Stat224: 0.000141855490112297 - syst_JES_EtaIntercalibration_Stat225: 0.00015969957756675502 - syst_JES_EtaIntercalibration_Stat226: 4.161762457180852e-05 - syst_JES_EtaIntercalibration_Stat227: 6.034766834766691e-07 + syst_JES_EtaIntercalibration_Stat22: 1.90179179e-19 + syst_JES_EtaIntercalibration_Stat220: 2.24702761e-06 + syst_JES_EtaIntercalibration_Stat221: 2.91625068e-05 + syst_JES_EtaIntercalibration_Stat222: 9.07908502e-05 + syst_JES_EtaIntercalibration_Stat223: 8.11174647e-05 + syst_JES_EtaIntercalibration_Stat224: 1.41855490e-04 + syst_JES_EtaIntercalibration_Stat225: 1.59699578e-04 + syst_JES_EtaIntercalibration_Stat226: 4.16176246e-05 + syst_JES_EtaIntercalibration_Stat227: 6.03476683e-07 syst_JES_EtaIntercalibration_Stat228: 0.0 syst_JES_EtaIntercalibration_Stat229: 0.0 - syst_JES_EtaIntercalibration_Stat23: 1.9017917867106274e-19 + syst_JES_EtaIntercalibration_Stat23: 1.90179179e-19 syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 - syst_JES_EtaIntercalibration_Stat232: 3.1422747663913797e-06 - syst_JES_EtaIntercalibration_Stat233: 5.0380674866460453e-05 - syst_JES_EtaIntercalibration_Stat234: 0.0001708020125759647 - syst_JES_EtaIntercalibration_Stat235: 0.00017013130223448005 - syst_JES_EtaIntercalibration_Stat236: 2.6240073837548553e-05 - syst_JES_EtaIntercalibration_Stat237: 2.49217033928261e-06 - syst_JES_EtaIntercalibration_Stat238: 4.143065531704755e-07 + syst_JES_EtaIntercalibration_Stat232: 3.14227477e-06 + syst_JES_EtaIntercalibration_Stat233: 5.03806749e-05 + syst_JES_EtaIntercalibration_Stat234: 1.70802013e-04 + syst_JES_EtaIntercalibration_Stat235: 1.70131302e-04 + syst_JES_EtaIntercalibration_Stat236: 2.62400738e-05 + syst_JES_EtaIntercalibration_Stat237: 2.49217034e-06 + syst_JES_EtaIntercalibration_Stat238: 4.14306553e-07 syst_JES_EtaIntercalibration_Stat239: 0.0 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 - syst_JES_EtaIntercalibration_Stat243: 8.288673698940018e-07 - syst_JES_EtaIntercalibration_Stat244: 1.2681660409820159e-05 - syst_JES_EtaIntercalibration_Stat245: 3.490929062584915e-05 - syst_JES_EtaIntercalibration_Stat25: 1.4436643481086593e-19 - syst_JES_EtaIntercalibration_Stat26: 1.3579066352293887e-17 - syst_JES_EtaIntercalibration_Stat27: 5.987210108222359e-15 - syst_JES_EtaIntercalibration_Stat28: 4.0140276954453765e-07 - syst_JES_EtaIntercalibration_Stat29: 6.533966231929884e-15 + syst_JES_EtaIntercalibration_Stat243: 8.28867370e-07 + syst_JES_EtaIntercalibration_Stat244: 1.26816604e-05 + syst_JES_EtaIntercalibration_Stat245: 3.49092906e-05 + syst_JES_EtaIntercalibration_Stat25: 1.44366435e-19 + syst_JES_EtaIntercalibration_Stat26: 1.35790664e-17 + syst_JES_EtaIntercalibration_Stat27: 5.98721011e-15 + syst_JES_EtaIntercalibration_Stat28: 4.01402770e-07 + syst_JES_EtaIntercalibration_Stat29: 6.53396623e-15 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 1.1671970094204319e-18 + syst_JES_EtaIntercalibration_Stat30: 1.16719701e-18 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 2.7302406487341e-19 - syst_JES_EtaIntercalibration_Stat36: 6.6454261320700865e-15 - syst_JES_EtaIntercalibration_Stat37: 8.817004637554611e-07 - syst_JES_EtaIntercalibration_Stat38: 8.817004637620429e-07 - syst_JES_EtaIntercalibration_Stat39: 3.6866846851439576e-16 - syst_JES_EtaIntercalibration_Stat4: 1.9797340730512265e-19 - syst_JES_EtaIntercalibration_Stat40: 1.5302668884871032e-19 + syst_JES_EtaIntercalibration_Stat35: 2.73024065e-19 + syst_JES_EtaIntercalibration_Stat36: 6.64542613e-15 + syst_JES_EtaIntercalibration_Stat37: 8.81700464e-07 + syst_JES_EtaIntercalibration_Stat38: 8.81700464e-07 + syst_JES_EtaIntercalibration_Stat39: 3.68668469e-16 + syst_JES_EtaIntercalibration_Stat4: 1.97973407e-19 + syst_JES_EtaIntercalibration_Stat40: 1.53026689e-19 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 - syst_JES_EtaIntercalibration_Stat44: 1.9017917867106274e-19 + syst_JES_EtaIntercalibration_Stat44: 1.90179179e-19 syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 - syst_JES_EtaIntercalibration_Stat47: 1.4445303735124437e-19 - syst_JES_EtaIntercalibration_Stat48: 3.4147868161863344e-16 - syst_JES_EtaIntercalibration_Stat49: 1.7150373173782546e-14 - syst_JES_EtaIntercalibration_Stat5: 5.751433027515838e-17 - syst_JES_EtaIntercalibration_Stat50: 4.0131617090762415e-07 - syst_JES_EtaIntercalibration_Stat51: 2.7084341884334202e-11 - syst_JES_EtaIntercalibration_Stat52: 4.7877812092346076e-17 + syst_JES_EtaIntercalibration_Stat47: 1.44453037e-19 + syst_JES_EtaIntercalibration_Stat48: 3.41478682e-16 + syst_JES_EtaIntercalibration_Stat49: 1.71503732e-14 + syst_JES_EtaIntercalibration_Stat5: 5.75143303e-17 + syst_JES_EtaIntercalibration_Stat50: 4.01316171e-07 + syst_JES_EtaIntercalibration_Stat51: 2.70843419e-11 + syst_JES_EtaIntercalibration_Stat52: 4.78778121e-17 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 syst_JES_EtaIntercalibration_Stat56: 0.0 - syst_JES_EtaIntercalibration_Stat57: 6.826947167569357e-15 - syst_JES_EtaIntercalibration_Stat58: 6.132547350612142e-15 - syst_JES_EtaIntercalibration_Stat59: 3.0155147629885922e-06 - syst_JES_EtaIntercalibration_Stat6: 3.911722838788556e-16 - syst_JES_EtaIntercalibration_Stat60: 8.81440696129407e-07 - syst_JES_EtaIntercalibration_Stat61: 1.2069560428187723e-14 - syst_JES_EtaIntercalibration_Stat62: 1.5978168699822894e-19 + syst_JES_EtaIntercalibration_Stat57: 6.82694717e-15 + syst_JES_EtaIntercalibration_Stat58: 6.13254735e-15 + syst_JES_EtaIntercalibration_Stat59: 3.01551476e-06 + syst_JES_EtaIntercalibration_Stat6: 3.91172284e-16 + syst_JES_EtaIntercalibration_Stat60: 8.81440696e-07 + syst_JES_EtaIntercalibration_Stat61: 1.20695604e-14 + syst_JES_EtaIntercalibration_Stat62: 1.59781687e-19 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 - syst_JES_EtaIntercalibration_Stat69: 2.1525210800361513e-19 - syst_JES_EtaIntercalibration_Stat7: 4.81806615897914e-17 - syst_JES_EtaIntercalibration_Stat70: 7.405213501311086e-15 - syst_JES_EtaIntercalibration_Stat71: 7.091881858558909e-07 - syst_JES_EtaIntercalibration_Stat72: 5.2569529619774046e-08 - syst_JES_EtaIntercalibration_Stat73: 4.013161144364501e-07 - syst_JES_EtaIntercalibration_Stat74: 5.860593549291744e-16 + syst_JES_EtaIntercalibration_Stat69: 2.15252108e-19 + syst_JES_EtaIntercalibration_Stat7: 4.81806616e-17 + syst_JES_EtaIntercalibration_Stat70: 7.40521350e-15 + syst_JES_EtaIntercalibration_Stat71: 7.09188186e-07 + syst_JES_EtaIntercalibration_Stat72: 5.25695296e-08 + syst_JES_EtaIntercalibration_Stat73: 4.01316114e-07 + syst_JES_EtaIntercalibration_Stat74: 5.86059355e-16 syst_JES_EtaIntercalibration_Stat75: 0.0 syst_JES_EtaIntercalibration_Stat76: 0.0 syst_JES_EtaIntercalibration_Stat77: 0.0 syst_JES_EtaIntercalibration_Stat78: 0.0 - syst_JES_EtaIntercalibration_Stat79: 6.720726104828853e-15 + syst_JES_EtaIntercalibration_Stat79: 6.72072610e-15 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 1.6411337910115678e-10 - syst_JES_EtaIntercalibration_Stat81: 1.1295594838254423e-06 - syst_JES_EtaIntercalibration_Stat82: 8.323870058452378e-07 - syst_JES_EtaIntercalibration_Stat83: 1.567225563695284e-12 - syst_JES_EtaIntercalibration_Stat84: 8.698933900197196e-20 - syst_JES_EtaIntercalibration_Stat85: 1.9017917867106274e-19 - syst_JES_EtaIntercalibration_Stat86: 1.9017917867106274e-19 - syst_JES_EtaIntercalibration_Stat87: 1.9017917867106274e-19 - syst_JES_EtaIntercalibration_Stat88: 1.9017917867106274e-19 - syst_JES_EtaIntercalibration_Stat89: 1.9017917867106274e-19 + syst_JES_EtaIntercalibration_Stat80: 1.64113379e-10 + syst_JES_EtaIntercalibration_Stat81: 1.12955948e-06 + syst_JES_EtaIntercalibration_Stat82: 8.32387006e-07 + syst_JES_EtaIntercalibration_Stat83: 1.56722556e-12 + syst_JES_EtaIntercalibration_Stat84: 8.69893390e-20 + syst_JES_EtaIntercalibration_Stat85: 1.90179179e-19 + syst_JES_EtaIntercalibration_Stat86: 1.90179179e-19 + syst_JES_EtaIntercalibration_Stat87: 1.90179179e-19 + syst_JES_EtaIntercalibration_Stat88: 1.90179179e-19 + syst_JES_EtaIntercalibration_Stat89: 1.90179179e-19 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 2.929345638308153e-12 - syst_JES_EtaIntercalibration_Stat92: 7.091794018911788e-07 - syst_JES_EtaIntercalibration_Stat93: 5.280971957274414e-08 - syst_JES_EtaIntercalibration_Stat94: 4.013157220711928e-07 - syst_JES_EtaIntercalibration_Stat95: 5.912342429189974e-15 - syst_JES_EtaIntercalibration_Stat96: 1.5720692251971606e-16 - syst_JES_EtaIntercalibration_Stat97: 1.9017917867106274e-19 - syst_JES_EtaIntercalibration_Stat98: 1.9017917867106274e-19 - syst_JES_EtaIntercalibration_Stat99: 1.9017917867106274e-19 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0013893877023710842 - syst_JES_Flavour_Comp: 0.00387815061949636 - syst_JES_Flavour_Response: 0.0005662723373077657 - syst_JES_Gjet_Generator: 0.00547672475116287 - syst_JES_Gjet_OOC: 0.004484002007136036 - syst_JES_Gjet_Purity: 0.0009532346195979246 - syst_JES_Gjet_Stat1: 1.1770145544191004e-05 - syst_JES_Gjet_Stat10: 0.00010774410471111634 - syst_JES_Gjet_Stat11: 0.00012366663818508207 - syst_JES_Gjet_Stat12: 0.00035651490852417375 - syst_JES_Gjet_Stat13: 0.0011066441467337184 - syst_JES_Gjet_Stat14: 0.0023951507259460728 - syst_JES_Gjet_Stat15: 0.0008759430161260491 - syst_JES_Gjet_Stat2: 3.254517624679154e-11 - syst_JES_Gjet_Stat3: 1.0626119984276305e-05 - syst_JES_Gjet_Stat4: 1.7100636501311875e-05 - syst_JES_Gjet_Stat5: 1.0158462291221396e-09 - syst_JES_Gjet_Stat6: 3.589325110657991e-05 - syst_JES_Gjet_Stat7: 4.355331560283327e-05 - syst_JES_Gjet_Stat8: 3.6899719172373116e-05 - syst_JES_Gjet_Stat9: 7.126245715662631e-05 - syst_JES_Gjet_Veto: 0.004314000927213623 - syst_JES_Gjet_dPhi: 0.0004235779827847524 - syst_JES_LArESZee: 0.008339929136389588 - syst_JES_LArEsmear: 0.000673149077099568 - syst_JES_LAr_JVT: 0.0008175465858285998 - syst_JES_MJB_Alpha: 5.0125487279427026e-05 - syst_JES_MJB_Asym: 0.000563184203880045 - syst_JES_MJB_Beta: 5.386070993776446e-05 - syst_JES_MJB_Fragmentation: 0.0006906478317492932 - syst_JES_MJB_Stat1: 4.847274356532752e-09 - syst_JES_MJB_Stat10: 3.000018833274218e-05 - syst_JES_MJB_Stat11: 3.494284619203192e-05 - syst_JES_MJB_Stat12: 2.5047452699825586e-05 - syst_JES_MJB_Stat13: 7.397129358744513e-07 - syst_JES_MJB_Stat14: 2.63218559376044e-07 - syst_JES_MJB_Stat15: 9.594088402109917e-06 - syst_JES_MJB_Stat16: 7.065998089442142e-07 - syst_JES_MJB_Stat2: 1.615137872847765e-05 - syst_JES_MJB_Stat3: 3.706588728197397e-05 - syst_JES_MJB_Stat4: 2.6994011835960952e-05 + syst_JES_EtaIntercalibration_Stat91: 2.92934564e-12 + syst_JES_EtaIntercalibration_Stat92: 7.09179402e-07 + syst_JES_EtaIntercalibration_Stat93: 5.28097196e-08 + syst_JES_EtaIntercalibration_Stat94: 4.01315722e-07 + syst_JES_EtaIntercalibration_Stat95: 5.91234243e-15 + syst_JES_EtaIntercalibration_Stat96: 1.57206923e-16 + syst_JES_EtaIntercalibration_Stat97: 1.90179179e-19 + syst_JES_EtaIntercalibration_Stat98: 1.90179179e-19 + syst_JES_EtaIntercalibration_Stat99: 1.90179179e-19 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.38938770e-03 + syst_JES_Flavour_Comp: 3.87815062e-03 + syst_JES_Flavour_Response: 5.66272337e-04 + syst_JES_Gjet_Generator: 5.47672475e-03 + syst_JES_Gjet_OOC: 4.48400201e-03 + syst_JES_Gjet_Purity: 9.53234620e-04 + syst_JES_Gjet_Stat1: 1.17701455e-05 + syst_JES_Gjet_Stat10: 1.07744105e-04 + syst_JES_Gjet_Stat11: 1.23666638e-04 + syst_JES_Gjet_Stat12: 3.56514909e-04 + syst_JES_Gjet_Stat13: 1.10664415e-03 + syst_JES_Gjet_Stat14: 2.39515073e-03 + syst_JES_Gjet_Stat15: 8.75943016e-04 + syst_JES_Gjet_Stat2: 3.25451762e-11 + syst_JES_Gjet_Stat3: 1.06261200e-05 + syst_JES_Gjet_Stat4: 1.71006365e-05 + syst_JES_Gjet_Stat5: 1.01584623e-09 + syst_JES_Gjet_Stat6: 3.58932511e-05 + syst_JES_Gjet_Stat7: 4.35533156e-05 + syst_JES_Gjet_Stat8: 3.68997192e-05 + syst_JES_Gjet_Stat9: 7.12624572e-05 + syst_JES_Gjet_Veto: 4.31400093e-03 + syst_JES_Gjet_dPhi: 4.23577983e-04 + syst_JES_LArESZee: 8.33992914e-03 + syst_JES_LArEsmear: 6.73149077e-04 + syst_JES_LAr_JVT: 8.17546586e-04 + syst_JES_MJB_Alpha: 5.01254873e-05 + syst_JES_MJB_Asym: 5.63184204e-04 + syst_JES_MJB_Beta: 5.38607099e-05 + syst_JES_MJB_Fragmentation: 6.90647832e-04 + syst_JES_MJB_Stat1: 4.84727436e-09 + syst_JES_MJB_Stat10: 3.00001883e-05 + syst_JES_MJB_Stat11: 3.49428462e-05 + syst_JES_MJB_Stat12: 2.50474527e-05 + syst_JES_MJB_Stat13: 7.39712936e-07 + syst_JES_MJB_Stat14: 2.63218559e-07 + syst_JES_MJB_Stat15: 9.59408840e-06 + syst_JES_MJB_Stat16: 7.06599809e-07 + syst_JES_MJB_Stat2: 1.61513787e-05 + syst_JES_MJB_Stat3: 3.70658873e-05 + syst_JES_MJB_Stat4: 2.69940118e-05 syst_JES_MJB_Stat5: 0.0 - syst_JES_MJB_Stat6: 1.1455784041260553e-05 - syst_JES_MJB_Stat7: 5.507055542665245e-06 - syst_JES_MJB_Stat8: 2.4615916151953394e-05 - syst_JES_MJB_Stat9: 3.527438022134478e-05 - syst_JES_MJB_Threshold: 0.0004819356051382799 - syst_JES_Pileup_MuOffset: 0.0010056403880115395 - syst_JES_Pileup_NPVOffset: 0.0010261019247618628 - syst_JES_Pileup_Pt_term: 0.0009277101419624558 - syst_JES_Pileup_Rho_topology: 0.0016099697978533634 - syst_JES_PunchThrough_MC15: 0.0008653163641119934 + syst_JES_MJB_Stat6: 1.14557840e-05 + syst_JES_MJB_Stat7: 5.50705554e-06 + syst_JES_MJB_Stat8: 2.46159162e-05 + syst_JES_MJB_Stat9: 3.52743802e-05 + syst_JES_MJB_Threshold: 4.81935605e-04 + syst_JES_Pileup_MuOffset: 1.00564039e-03 + syst_JES_Pileup_NPVOffset: 1.02610192e-03 + syst_JES_Pileup_Pt_term: 9.27710142e-04 + syst_JES_Pileup_Rho_topology: 1.60996980e-03 + syst_JES_PunchThrough_MC15: 8.65316364e-04 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.0025325719634395386 - syst_JES_Zjet_MuScale: 0.00017971095542565008 - syst_JES_Zjet_MuSmearID: 3.402452754998958e-05 - syst_JES_Zjet_MuSmearMS: 0.0007136478753559069 - syst_JES_Zjet_OOC: 0.0012979935593060545 - syst_JES_Zjet_Stat1: 6.781997419639734e-05 - syst_JES_Zjet_Stat10: 0.00010993347113140747 - syst_JES_Zjet_Stat11: 0.00014749700022373337 - syst_JES_Zjet_Stat12: 0.00040987098884893037 - syst_JES_Zjet_Stat13: 0.0007735105865468165 - syst_JES_Zjet_Stat2: 1.1376975729767203e-08 - syst_JES_Zjet_Stat3: 3.2459750780774636e-05 - syst_JES_Zjet_Stat4: 3.227754313373309e-05 - syst_JES_Zjet_Stat5: 3.967190945744861e-05 - syst_JES_Zjet_Stat6: 5.268296380235265e-05 - syst_JES_Zjet_Stat7: 2.6583163844809742e-05 - syst_JES_Zjet_Stat8: 3.676238668802666e-05 - syst_JES_Zjet_Stat9: 6.689461189064483e-05 - syst_JES_Zjet_Veto: 0.00028639910527094876 - syst_JES_Zjet_dPhi: 0.00024115755741838156 - syst_PRW: 0.0003052 - syst_Unfolding_bias: 2.162e-14 - syst_cleaning: 0.0011999647994837184 + syst_JES_Zjet_MC: 2.53257196e-03 + syst_JES_Zjet_MuScale: 1.79710955e-04 + syst_JES_Zjet_MuSmearID: 3.40245275e-05 + syst_JES_Zjet_MuSmearMS: 7.13647875e-04 + syst_JES_Zjet_OOC: 1.29799356e-03 + syst_JES_Zjet_Stat1: 6.78199742e-05 + syst_JES_Zjet_Stat10: 1.09933471e-04 + syst_JES_Zjet_Stat11: 1.47497000e-04 + syst_JES_Zjet_Stat12: 4.09870989e-04 + syst_JES_Zjet_Stat13: 7.73510587e-04 + syst_JES_Zjet_Stat2: 1.13769757e-08 + syst_JES_Zjet_Stat3: 3.24597508e-05 + syst_JES_Zjet_Stat4: 3.22775431e-05 + syst_JES_Zjet_Stat5: 3.96719095e-05 + syst_JES_Zjet_Stat6: 5.26829638e-05 + syst_JES_Zjet_Stat7: 2.65831638e-05 + syst_JES_Zjet_Stat8: 3.67623867e-05 + syst_JES_Zjet_Stat9: 6.68946119e-05 + syst_JES_Zjet_Veto: 2.86399105e-04 + syst_JES_Zjet_dPhi: 2.41157557e-04 + syst_PRW: 3.05200000e-04 + syst_Unfolding_bias: 2.16200000e-14 + syst_cleaning: 1.19996480e-03 syst_lumi: 0.004233 -- stat: 0.0009143 +- stat: 9.14300000e-04 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.0013541273019919509 - syst_JER_NP1: 0.00020973457035024056 - syst_JER_NP2: 0.0010285866322289046 - syst_JER_NP3: 7.71693182229829e-05 - syst_JER_NP4: 3.410508869655671e-11 - syst_JER_NP5: 0.00011316767239366548 - syst_JER_NP6: 6.769404460512017e-11 - syst_JER_NP7: 8.12746098114288e-11 - syst_JER_NP8: 0.00011412132348952145 - syst_JES_EtaIntercalibration_Modelling: 0.009061682666591233 - syst_JES_EtaIntercalibration_NonClosure: 3.5469249710136245e-06 - syst_JES_EtaIntercalibration_Stat0: 4.115352718783652e-20 + syst_JER_NP0: 1.35412730e-03 + syst_JER_NP1: 2.09734570e-04 + syst_JER_NP2: 1.02858663e-03 + syst_JER_NP3: 7.71693182e-05 + syst_JER_NP4: 3.41050887e-11 + syst_JER_NP5: 1.13167672e-04 + syst_JER_NP6: 6.76940446e-11 + syst_JER_NP7: 8.12746098e-11 + syst_JER_NP8: 1.14121323e-04 + syst_JES_EtaIntercalibration_Modelling: 9.06168267e-03 + syst_JES_EtaIntercalibration_NonClosure: 3.54692497e-06 + syst_JES_EtaIntercalibration_Stat0: 4.11535272e-20 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 1.0123515067860571e-15 - syst_JES_EtaIntercalibration_Stat101: 3.2564544645979624e-11 - syst_JES_EtaIntercalibration_Stat102: 4.833708514174185e-07 - syst_JES_EtaIntercalibration_Stat103: 3.922716246429252e-07 - syst_JES_EtaIntercalibration_Stat104: 4.236989080030771e-12 - syst_JES_EtaIntercalibration_Stat105: 6.108268658138736e-20 - syst_JES_EtaIntercalibration_Stat106: 4.114486693379868e-20 - syst_JES_EtaIntercalibration_Stat107: 4.114486693379868e-20 - syst_JES_EtaIntercalibration_Stat108: 4.114486693379868e-20 - syst_JES_EtaIntercalibration_Stat109: 4.114486693379868e-20 + syst_JES_EtaIntercalibration_Stat100: 1.01235151e-15 + syst_JES_EtaIntercalibration_Stat101: 3.25645446e-11 + syst_JES_EtaIntercalibration_Stat102: 4.83370851e-07 + syst_JES_EtaIntercalibration_Stat103: 3.92271625e-07 + syst_JES_EtaIntercalibration_Stat104: 4.23698908e-12 + syst_JES_EtaIntercalibration_Stat105: 6.10826866e-20 + syst_JES_EtaIntercalibration_Stat106: 4.11448669e-20 + syst_JES_EtaIntercalibration_Stat107: 4.11448669e-20 + syst_JES_EtaIntercalibration_Stat108: 4.11448669e-20 + syst_JES_EtaIntercalibration_Stat109: 4.11448669e-20 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 3.1981195537377896e-18 - syst_JES_EtaIntercalibration_Stat111: 2.1071584539374345e-11 - syst_JES_EtaIntercalibration_Stat112: 1.9661712107545466e-07 - syst_JES_EtaIntercalibration_Stat113: 1.7286958306191404e-07 - syst_JES_EtaIntercalibration_Stat114: 8.081272667550993e-07 - syst_JES_EtaIntercalibration_Stat115: 4.049579467768073e-12 - syst_JES_EtaIntercalibration_Stat116: 2.3576848956128023e-17 - syst_JES_EtaIntercalibration_Stat117: 4.114486693379868e-20 - syst_JES_EtaIntercalibration_Stat118: 4.114486693379868e-20 - syst_JES_EtaIntercalibration_Stat119: 4.114486693379868e-20 + syst_JES_EtaIntercalibration_Stat110: 3.19811955e-18 + syst_JES_EtaIntercalibration_Stat111: 2.10715845e-11 + syst_JES_EtaIntercalibration_Stat112: 1.96617121e-07 + syst_JES_EtaIntercalibration_Stat113: 1.72869583e-07 + syst_JES_EtaIntercalibration_Stat114: 8.08127267e-07 + syst_JES_EtaIntercalibration_Stat115: 4.04957947e-12 + syst_JES_EtaIntercalibration_Stat116: 2.35768490e-17 + syst_JES_EtaIntercalibration_Stat117: 4.11448669e-20 + syst_JES_EtaIntercalibration_Stat118: 4.11448669e-20 + syst_JES_EtaIntercalibration_Stat119: 4.11448669e-20 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 8.474924601434516e-15 - syst_JES_EtaIntercalibration_Stat121: 5.451498203934402e-07 - syst_JES_EtaIntercalibration_Stat122: 6.571554363314664e-07 - syst_JES_EtaIntercalibration_Stat123: 1.7188256688797732e-06 - syst_JES_EtaIntercalibration_Stat124: 1.2812145604854793e-06 - syst_JES_EtaIntercalibration_Stat125: 5.940934269961248e-17 - syst_JES_EtaIntercalibration_Stat126: 4.114486693379868e-20 - syst_JES_EtaIntercalibration_Stat127: 4.114486693379868e-20 - syst_JES_EtaIntercalibration_Stat128: 4.114486693379868e-20 - syst_JES_EtaIntercalibration_Stat129: 6.404890241057999e-12 + syst_JES_EtaIntercalibration_Stat120: 8.47492460e-15 + syst_JES_EtaIntercalibration_Stat121: 5.45149820e-07 + syst_JES_EtaIntercalibration_Stat122: 6.57155436e-07 + syst_JES_EtaIntercalibration_Stat123: 1.71882567e-06 + syst_JES_EtaIntercalibration_Stat124: 1.28121456e-06 + syst_JES_EtaIntercalibration_Stat125: 5.94093427e-17 + syst_JES_EtaIntercalibration_Stat126: 4.11448669e-20 + syst_JES_EtaIntercalibration_Stat127: 4.11448669e-20 + syst_JES_EtaIntercalibration_Stat128: 4.11448669e-20 + syst_JES_EtaIntercalibration_Stat129: 6.40489024e-12 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 4.6863940850082164e-07 - syst_JES_EtaIntercalibration_Stat131: 3.920275755606996e-07 - syst_JES_EtaIntercalibration_Stat132: 5.700244446512798e-07 - syst_JES_EtaIntercalibration_Stat133: 7.041773285188895e-07 - syst_JES_EtaIntercalibration_Stat134: 2.3573189150528447e-07 - syst_JES_EtaIntercalibration_Stat135: 2.3590531999088108e-17 + syst_JES_EtaIntercalibration_Stat130: 4.68639409e-07 + syst_JES_EtaIntercalibration_Stat131: 3.92027576e-07 + syst_JES_EtaIntercalibration_Stat132: 5.70024445e-07 + syst_JES_EtaIntercalibration_Stat133: 7.04177329e-07 + syst_JES_EtaIntercalibration_Stat134: 2.35731892e-07 + syst_JES_EtaIntercalibration_Stat135: 2.35905320e-17 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 syst_JES_EtaIntercalibration_Stat138: 0.0 - syst_JES_EtaIntercalibration_Stat139: 5.552993517014044e-11 - syst_JES_EtaIntercalibration_Stat14: 1.0221767038171145e-15 - syst_JES_EtaIntercalibration_Stat140: 1.1839398295521608e-06 - syst_JES_EtaIntercalibration_Stat141: 1.7507982265241192e-06 - syst_JES_EtaIntercalibration_Stat142: 8.712926087142024e-07 - syst_JES_EtaIntercalibration_Stat143: 1.659400828823464e-06 - syst_JES_EtaIntercalibration_Stat144: 2.1689822498121095e-13 + syst_JES_EtaIntercalibration_Stat139: 5.55299352e-11 + syst_JES_EtaIntercalibration_Stat14: 1.02217670e-15 + syst_JES_EtaIntercalibration_Stat140: 1.18393983e-06 + syst_JES_EtaIntercalibration_Stat141: 1.75079823e-06 + syst_JES_EtaIntercalibration_Stat142: 8.71292609e-07 + syst_JES_EtaIntercalibration_Stat143: 1.65940083e-06 + syst_JES_EtaIntercalibration_Stat144: 2.16898225e-13 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 1.236952303041633e-12 - syst_JES_EtaIntercalibration_Stat148: 2.9151399623345703e-08 - syst_JES_EtaIntercalibration_Stat149: 2.952321628820275e-07 - syst_JES_EtaIntercalibration_Stat15: 1.0199536213601653e-15 - syst_JES_EtaIntercalibration_Stat150: 1.2142601781743483e-06 - syst_JES_EtaIntercalibration_Stat151: 1.0014253941257931e-06 - syst_JES_EtaIntercalibration_Stat152: 9.407008000421812e-12 + syst_JES_EtaIntercalibration_Stat147: 1.23695230e-12 + syst_JES_EtaIntercalibration_Stat148: 2.91513996e-08 + syst_JES_EtaIntercalibration_Stat149: 2.95232163e-07 + syst_JES_EtaIntercalibration_Stat15: 1.01995362e-15 + syst_JES_EtaIntercalibration_Stat150: 1.21426018e-06 + syst_JES_EtaIntercalibration_Stat151: 1.00142539e-06 + syst_JES_EtaIntercalibration_Stat152: 9.40700800e-12 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 syst_JES_EtaIntercalibration_Stat156: 0.0 - syst_JES_EtaIntercalibration_Stat157: 1.655530507360103e-11 - syst_JES_EtaIntercalibration_Stat158: 1.269039723570543e-06 - syst_JES_EtaIntercalibration_Stat159: 2.6318561890802466e-06 - syst_JES_EtaIntercalibration_Stat16: 1.0158350895537168e-15 - syst_JES_EtaIntercalibration_Stat160: 1.287935662212985e-06 - syst_JES_EtaIntercalibration_Stat161: 1.5917336358511746e-06 - syst_JES_EtaIntercalibration_Stat162: 2.1291718376108116e-13 + syst_JES_EtaIntercalibration_Stat157: 1.65553051e-11 + syst_JES_EtaIntercalibration_Stat158: 1.26903972e-06 + syst_JES_EtaIntercalibration_Stat159: 2.63185619e-06 + syst_JES_EtaIntercalibration_Stat16: 1.01583509e-15 + syst_JES_EtaIntercalibration_Stat160: 1.28793566e-06 + syst_JES_EtaIntercalibration_Stat161: 1.59173364e-06 + syst_JES_EtaIntercalibration_Stat162: 2.12917184e-13 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 2.856579358253504e-12 - syst_JES_EtaIntercalibration_Stat166: 7.815208442517704e-07 - syst_JES_EtaIntercalibration_Stat167: 1.254779640696724e-06 - syst_JES_EtaIntercalibration_Stat168: 1.6389487484360211e-06 - syst_JES_EtaIntercalibration_Stat169: 9.64894118543584e-07 - syst_JES_EtaIntercalibration_Stat17: 3.384167470368451e-20 - syst_JES_EtaIntercalibration_Stat170: 2.3562918065019026e-07 + syst_JES_EtaIntercalibration_Stat165: 2.85657936e-12 + syst_JES_EtaIntercalibration_Stat166: 7.81520844e-07 + syst_JES_EtaIntercalibration_Stat167: 1.25477964e-06 + syst_JES_EtaIntercalibration_Stat168: 1.63894875e-06 + syst_JES_EtaIntercalibration_Stat169: 9.64894119e-07 + syst_JES_EtaIntercalibration_Stat17: 3.38416747e-20 + syst_JES_EtaIntercalibration_Stat170: 2.35629181e-07 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 - syst_JES_EtaIntercalibration_Stat175: 1.3948459018539466e-07 - syst_JES_EtaIntercalibration_Stat176: 1.1098070179990755e-06 - syst_JES_EtaIntercalibration_Stat177: 6.630885517787198e-06 - syst_JES_EtaIntercalibration_Stat178: 4.836918337123338e-06 - syst_JES_EtaIntercalibration_Stat179: 3.1685933787723536e-07 + syst_JES_EtaIntercalibration_Stat175: 1.39484590e-07 + syst_JES_EtaIntercalibration_Stat176: 1.10980702e-06 + syst_JES_EtaIntercalibration_Stat177: 6.63088552e-06 + syst_JES_EtaIntercalibration_Stat178: 4.83691834e-06 + syst_JES_EtaIntercalibration_Stat179: 3.16859338e-07 syst_JES_EtaIntercalibration_Stat18: 0.0 - syst_JES_EtaIntercalibration_Stat180: 3.62171823940277e-07 + syst_JES_EtaIntercalibration_Stat180: 3.62171824e-07 syst_JES_EtaIntercalibration_Stat181: 0.0 - syst_JES_EtaIntercalibration_Stat182: 5.173593100242326e-08 - syst_JES_EtaIntercalibration_Stat183: 2.3443185593046013e-06 - syst_JES_EtaIntercalibration_Stat184: 1.2670035516919437e-05 - syst_JES_EtaIntercalibration_Stat185: 1.982394763915603e-05 - syst_JES_EtaIntercalibration_Stat186: 2.4445584267664784e-06 - syst_JES_EtaIntercalibration_Stat187: 6.914525278035506e-07 + syst_JES_EtaIntercalibration_Stat182: 5.17359310e-08 + syst_JES_EtaIntercalibration_Stat183: 2.34431856e-06 + syst_JES_EtaIntercalibration_Stat184: 1.26700355e-05 + syst_JES_EtaIntercalibration_Stat185: 1.98239476e-05 + syst_JES_EtaIntercalibration_Stat186: 2.44455843e-06 + syst_JES_EtaIntercalibration_Stat187: 6.91452528e-07 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 - syst_JES_EtaIntercalibration_Stat192: 1.1729785224427598e-06 - syst_JES_EtaIntercalibration_Stat193: 1.0068894775495472e-05 - syst_JES_EtaIntercalibration_Stat194: 3.0178148965766607e-05 - syst_JES_EtaIntercalibration_Stat195: 2.264209078243438e-05 - syst_JES_EtaIntercalibration_Stat196: 4.237521297881581e-06 - syst_JES_EtaIntercalibration_Stat197: 3.9816311669967625e-07 - syst_JES_EtaIntercalibration_Stat198: 7.571692743369873e-06 - syst_JES_EtaIntercalibration_Stat199: 3.397282443365579e-05 + syst_JES_EtaIntercalibration_Stat192: 1.17297852e-06 + syst_JES_EtaIntercalibration_Stat193: 1.00688948e-05 + syst_JES_EtaIntercalibration_Stat194: 3.01781490e-05 + syst_JES_EtaIntercalibration_Stat195: 2.26420908e-05 + syst_JES_EtaIntercalibration_Stat196: 4.23752130e-06 + syst_JES_EtaIntercalibration_Stat197: 3.98163117e-07 + syst_JES_EtaIntercalibration_Stat198: 7.57169274e-06 + syst_JES_EtaIntercalibration_Stat199: 3.39728244e-05 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 3.6571301590181335e-05 - syst_JES_EtaIntercalibration_Stat201: 1.0148264531435904e-05 - syst_JES_EtaIntercalibration_Stat202: 5.925777417352089e-07 + syst_JES_EtaIntercalibration_Stat200: 3.65713016e-05 + syst_JES_EtaIntercalibration_Stat201: 1.01482645e-05 + syst_JES_EtaIntercalibration_Stat202: 5.92577742e-07 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 - syst_JES_EtaIntercalibration_Stat207: 1.1608461859781425e-06 - syst_JES_EtaIntercalibration_Stat208: 2.0932235308251243e-05 - syst_JES_EtaIntercalibration_Stat209: 5.240238615750241e-05 + syst_JES_EtaIntercalibration_Stat207: 1.16084619e-06 + syst_JES_EtaIntercalibration_Stat208: 2.09322353e-05 + syst_JES_EtaIntercalibration_Stat209: 5.24023862e-05 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 3.750639545464213e-05 - syst_JES_EtaIntercalibration_Stat211: 1.4040898146130111e-05 - syst_JES_EtaIntercalibration_Stat212: 3.060224991728549e-05 - syst_JES_EtaIntercalibration_Stat213: 3.910232058331066e-05 - syst_JES_EtaIntercalibration_Stat214: 7.077414994191028e-06 - syst_JES_EtaIntercalibration_Stat215: 2.6926828085572947e-07 + syst_JES_EtaIntercalibration_Stat210: 3.75063955e-05 + syst_JES_EtaIntercalibration_Stat211: 1.40408981e-05 + syst_JES_EtaIntercalibration_Stat212: 3.06022499e-05 + syst_JES_EtaIntercalibration_Stat213: 3.91023206e-05 + syst_JES_EtaIntercalibration_Stat214: 7.07741499e-06 + syst_JES_EtaIntercalibration_Stat215: 2.69268281e-07 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 syst_JES_EtaIntercalibration_Stat219: 0.0 - syst_JES_EtaIntercalibration_Stat22: 4.115352718783652e-20 - syst_JES_EtaIntercalibration_Stat220: 1.528065249752117e-06 - syst_JES_EtaIntercalibration_Stat221: 1.5373115331643094e-05 - syst_JES_EtaIntercalibration_Stat222: 5.0025706141942665e-05 - syst_JES_EtaIntercalibration_Stat223: 4.631295364150293e-05 - syst_JES_EtaIntercalibration_Stat224: 9.257113589018988e-05 - syst_JES_EtaIntercalibration_Stat225: 0.0001046877542981986 - syst_JES_EtaIntercalibration_Stat226: 2.607242365028614e-05 - syst_JES_EtaIntercalibration_Stat227: 3.698931568710078e-07 + syst_JES_EtaIntercalibration_Stat22: 4.11535272e-20 + syst_JES_EtaIntercalibration_Stat220: 1.52806525e-06 + syst_JES_EtaIntercalibration_Stat221: 1.53731153e-05 + syst_JES_EtaIntercalibration_Stat222: 5.00257061e-05 + syst_JES_EtaIntercalibration_Stat223: 4.63129536e-05 + syst_JES_EtaIntercalibration_Stat224: 9.25711359e-05 + syst_JES_EtaIntercalibration_Stat225: 1.04687754e-04 + syst_JES_EtaIntercalibration_Stat226: 2.60724237e-05 + syst_JES_EtaIntercalibration_Stat227: 3.69893157e-07 syst_JES_EtaIntercalibration_Stat228: 0.0 syst_JES_EtaIntercalibration_Stat229: 0.0 - syst_JES_EtaIntercalibration_Stat23: 4.115352718783652e-20 + syst_JES_EtaIntercalibration_Stat23: 4.11535272e-20 syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 - syst_JES_EtaIntercalibration_Stat232: 1.1736855711816517e-06 - syst_JES_EtaIntercalibration_Stat233: 3.2311475902533455e-05 - syst_JES_EtaIntercalibration_Stat234: 0.00011096158975068805 - syst_JES_EtaIntercalibration_Stat235: 0.00011007282714185186 - syst_JES_EtaIntercalibration_Stat236: 2.3550152865745906e-05 - syst_JES_EtaIntercalibration_Stat237: 2.8948308702754985e-06 - syst_JES_EtaIntercalibration_Stat238: 2.1061737820037547e-07 + syst_JES_EtaIntercalibration_Stat232: 1.17368557e-06 + syst_JES_EtaIntercalibration_Stat233: 3.23114759e-05 + syst_JES_EtaIntercalibration_Stat234: 1.10961590e-04 + syst_JES_EtaIntercalibration_Stat235: 1.10072827e-04 + syst_JES_EtaIntercalibration_Stat236: 2.35501529e-05 + syst_JES_EtaIntercalibration_Stat237: 2.89483087e-06 + syst_JES_EtaIntercalibration_Stat238: 2.10617378e-07 syst_JES_EtaIntercalibration_Stat239: 0.0 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 - syst_JES_EtaIntercalibration_Stat243: 3.417321477414731e-07 - syst_JES_EtaIntercalibration_Stat244: 9.20350209159535e-06 - syst_JES_EtaIntercalibration_Stat245: 3.0011367846201217e-05 - syst_JES_EtaIntercalibration_Stat25: 3.0804523612612484e-20 - syst_JES_EtaIntercalibration_Stat26: 2.57181706192334e-18 - syst_JES_EtaIntercalibration_Stat27: 9.177113778716052e-16 - syst_JES_EtaIntercalibration_Stat28: 2.3581871670572083e-07 - syst_JES_EtaIntercalibration_Stat29: 9.94043694965166e-16 + syst_JES_EtaIntercalibration_Stat243: 3.41732148e-07 + syst_JES_EtaIntercalibration_Stat244: 9.20350209e-06 + syst_JES_EtaIntercalibration_Stat245: 3.00113678e-05 + syst_JES_EtaIntercalibration_Stat25: 3.08045236e-20 + syst_JES_EtaIntercalibration_Stat26: 2.57181706e-18 + syst_JES_EtaIntercalibration_Stat27: 9.17711378e-16 + syst_JES_EtaIntercalibration_Stat28: 2.35818717e-07 + syst_JES_EtaIntercalibration_Stat29: 9.94043695e-16 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 2.340181910087333e-19 + syst_JES_EtaIntercalibration_Stat30: 2.34018191e-19 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 5.939426882073723e-20 - syst_JES_EtaIntercalibration_Stat36: 9.9534472401676e-16 - syst_JES_EtaIntercalibration_Stat37: 3.193901689437862e-07 - syst_JES_EtaIntercalibration_Stat38: 3.1947677148526156e-07 - syst_JES_EtaIntercalibration_Stat39: 6.306436974036925e-17 - syst_JES_EtaIntercalibration_Stat4: 4.223605894256707e-20 - syst_JES_EtaIntercalibration_Stat40: 3.5368477490556476e-20 + syst_JES_EtaIntercalibration_Stat35: 5.93942688e-20 + syst_JES_EtaIntercalibration_Stat36: 9.95344724e-16 + syst_JES_EtaIntercalibration_Stat37: 3.19390169e-07 + syst_JES_EtaIntercalibration_Stat38: 3.19476771e-07 + syst_JES_EtaIntercalibration_Stat39: 6.30643697e-17 + syst_JES_EtaIntercalibration_Stat4: 4.22360589e-20 + syst_JES_EtaIntercalibration_Stat40: 3.53684775e-20 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 - syst_JES_EtaIntercalibration_Stat44: 4.115352718783652e-20 + syst_JES_EtaIntercalibration_Stat44: 4.11535272e-20 syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 - syst_JES_EtaIntercalibration_Stat47: 3.082184412068817e-20 - syst_JES_EtaIntercalibration_Stat48: 5.52203719201528e-17 - syst_JES_EtaIntercalibration_Stat49: 2.5485518927422296e-15 - syst_JES_EtaIntercalibration_Stat5: 9.06974744686973e-18 - syst_JES_EtaIntercalibration_Stat50: 2.357321147161634e-07 - syst_JES_EtaIntercalibration_Stat51: 4.008967227138182e-12 - syst_JES_EtaIntercalibration_Stat52: 7.465230175118515e-18 + syst_JES_EtaIntercalibration_Stat47: 3.08218441e-20 + syst_JES_EtaIntercalibration_Stat48: 5.52203719e-17 + syst_JES_EtaIntercalibration_Stat49: 2.54855189e-15 + syst_JES_EtaIntercalibration_Stat5: 9.06974745e-18 + syst_JES_EtaIntercalibration_Stat50: 2.35732115e-07 + syst_JES_EtaIntercalibration_Stat51: 4.00896723e-12 + syst_JES_EtaIntercalibration_Stat52: 7.46523018e-18 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 syst_JES_EtaIntercalibration_Stat56: 0.0 - syst_JES_EtaIntercalibration_Stat57: 1.0220981762126976e-15 - syst_JES_EtaIntercalibration_Stat58: 9.166417031070536e-16 - syst_JES_EtaIntercalibration_Stat59: 1.3535998218283666e-06 - syst_JES_EtaIntercalibration_Stat6: 5.945342476888948e-17 - syst_JES_EtaIntercalibration_Stat60: 3.193035720073748e-07 - syst_JES_EtaIntercalibration_Stat61: 1.754755880991712e-15 - syst_JES_EtaIntercalibration_Stat62: 3.4521504645655293e-20 + syst_JES_EtaIntercalibration_Stat57: 1.02209818e-15 + syst_JES_EtaIntercalibration_Stat58: 9.16641703e-16 + syst_JES_EtaIntercalibration_Stat59: 1.35359982e-06 + syst_JES_EtaIntercalibration_Stat6: 5.94534248e-17 + syst_JES_EtaIntercalibration_Stat60: 3.19303572e-07 + syst_JES_EtaIntercalibration_Stat61: 1.75475588e-15 + syst_JES_EtaIntercalibration_Stat62: 3.45215046e-20 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 - syst_JES_EtaIntercalibration_Stat69: 4.61577393293909e-20 - syst_JES_EtaIntercalibration_Stat7: 7.518642115892668e-18 - syst_JES_EtaIntercalibration_Stat70: 1.136205028813022e-15 - syst_JES_EtaIntercalibration_Stat71: 4.201089207864153e-07 - syst_JES_EtaIntercalibration_Stat72: 9.520311173528682e-08 - syst_JES_EtaIntercalibration_Stat73: 2.3573210682722153e-07 - syst_JES_EtaIntercalibration_Stat74: 9.426091501783758e-17 + syst_JES_EtaIntercalibration_Stat69: 4.61577393e-20 + syst_JES_EtaIntercalibration_Stat7: 7.51864212e-18 + syst_JES_EtaIntercalibration_Stat70: 1.13620503e-15 + syst_JES_EtaIntercalibration_Stat71: 4.20108921e-07 + syst_JES_EtaIntercalibration_Stat72: 9.52031117e-08 + syst_JES_EtaIntercalibration_Stat73: 2.35732107e-07 + syst_JES_EtaIntercalibration_Stat74: 9.42609150e-17 syst_JES_EtaIntercalibration_Stat75: 0.0 syst_JES_EtaIntercalibration_Stat76: 0.0 syst_JES_EtaIntercalibration_Stat77: 0.0 syst_JES_EtaIntercalibration_Stat78: 0.0 - syst_JES_EtaIntercalibration_Stat79: 1.0062696288901648e-15 + syst_JES_EtaIntercalibration_Stat79: 1.00626963e-15 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 2.280228295587966e-11 - syst_JES_EtaIntercalibration_Stat81: 4.83827117884064e-07 - syst_JES_EtaIntercalibration_Stat82: 4.005382753245936e-07 - syst_JES_EtaIntercalibration_Stat83: 2.1868953953035797e-13 - syst_JES_EtaIntercalibration_Stat84: 2.051235968873401e-20 - syst_JES_EtaIntercalibration_Stat85: 4.114486693379868e-20 - syst_JES_EtaIntercalibration_Stat86: 4.114486693379868e-20 - syst_JES_EtaIntercalibration_Stat87: 4.114486693379868e-20 - syst_JES_EtaIntercalibration_Stat88: 4.114486693379868e-20 - syst_JES_EtaIntercalibration_Stat89: 4.114486693379868e-20 + syst_JES_EtaIntercalibration_Stat80: 2.28022830e-11 + syst_JES_EtaIntercalibration_Stat81: 4.83827118e-07 + syst_JES_EtaIntercalibration_Stat82: 4.00538275e-07 + syst_JES_EtaIntercalibration_Stat83: 2.18689540e-13 + syst_JES_EtaIntercalibration_Stat84: 2.05123597e-20 + syst_JES_EtaIntercalibration_Stat85: 4.11448669e-20 + syst_JES_EtaIntercalibration_Stat86: 4.11448669e-20 + syst_JES_EtaIntercalibration_Stat87: 4.11448669e-20 + syst_JES_EtaIntercalibration_Stat88: 4.11448669e-20 + syst_JES_EtaIntercalibration_Stat89: 4.11448669e-20 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 3.98050138915627e-13 - syst_JES_EtaIntercalibration_Stat92: 4.201077190369801e-07 - syst_JES_EtaIntercalibration_Stat93: 9.515394167006e-08 - syst_JES_EtaIntercalibration_Stat94: 2.3573205327804742e-07 - syst_JES_EtaIntercalibration_Stat95: 8.977166744023417e-16 - syst_JES_EtaIntercalibration_Stat96: 2.3576848956128023e-17 - syst_JES_EtaIntercalibration_Stat97: 4.114486693379868e-20 - syst_JES_EtaIntercalibration_Stat98: 4.114486693379868e-20 - syst_JES_EtaIntercalibration_Stat99: 4.114486693379868e-20 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0008844700489558707 - syst_JES_Flavour_Comp: 0.002389675867141818 - syst_JES_Flavour_Response: 0.00016941235934842536 - syst_JES_Gjet_Generator: 0.003299788326544598 - syst_JES_Gjet_OOC: 0.002719194549862146 - syst_JES_Gjet_Purity: 0.000540308381852438 - syst_JES_Gjet_Stat1: 7.925626655680419e-06 - syst_JES_Gjet_Stat10: 6.110613880781537e-05 - syst_JES_Gjet_Stat11: 6.897833337360363e-05 - syst_JES_Gjet_Stat12: 0.00019885152124135232 - syst_JES_Gjet_Stat13: 0.0006221875340281257 - syst_JES_Gjet_Stat14: 0.0015110026472511555 - syst_JES_Gjet_Stat15: 0.0008754786919165994 - syst_JES_Gjet_Stat2: 1.3535976785581516e-09 - syst_JES_Gjet_Stat3: 8.331542951641116e-06 - syst_JES_Gjet_Stat4: 1.0204121520248572e-05 - syst_JES_Gjet_Stat5: 1.3899680482907946e-10 - syst_JES_Gjet_Stat6: 2.375958069916218e-05 - syst_JES_Gjet_Stat7: 2.7909551680383545e-05 - syst_JES_Gjet_Stat8: 2.1038234241494698e-05 - syst_JES_Gjet_Stat9: 4.017297692479361e-05 - syst_JES_Gjet_Veto: 0.0026661083998967485 - syst_JES_Gjet_dPhi: 0.00026740543655655167 - syst_JES_LArESZee: 0.0050524709548893 - syst_JES_LArEsmear: 0.00041219510853478117 - syst_JES_LAr_JVT: 0.000499052449648331 - syst_JES_MJB_Alpha: 3.189712682985726e-05 - syst_JES_MJB_Asym: 0.0003976907777406964 - syst_JES_MJB_Beta: 3.562493007712436e-05 - syst_JES_MJB_Fragmentation: 0.0003810154467997328 - syst_JES_MJB_Stat1: 9.687443118155585e-09 - syst_JES_MJB_Stat10: 3.01382062339483e-05 - syst_JES_MJB_Stat11: 3.1423346018525776e-05 - syst_JES_MJB_Stat12: 2.5849804641428146e-05 - syst_JES_MJB_Stat13: 1.6660038055178623e-06 - syst_JES_MJB_Stat14: 1.2434728465069111e-06 - syst_JES_MJB_Stat15: 9.687411664113382e-06 - syst_JES_MJB_Stat16: 2.8273805456641313e-06 - syst_JES_MJB_Stat2: 8.65427352929605e-06 - syst_JES_MJB_Stat3: 1.3163586137523467e-05 - syst_JES_MJB_Stat4: 1.0244214501366124e-05 + syst_JES_EtaIntercalibration_Stat91: 3.98050139e-13 + syst_JES_EtaIntercalibration_Stat92: 4.20107719e-07 + syst_JES_EtaIntercalibration_Stat93: 9.51539417e-08 + syst_JES_EtaIntercalibration_Stat94: 2.35732053e-07 + syst_JES_EtaIntercalibration_Stat95: 8.97716674e-16 + syst_JES_EtaIntercalibration_Stat96: 2.35768490e-17 + syst_JES_EtaIntercalibration_Stat97: 4.11448669e-20 + syst_JES_EtaIntercalibration_Stat98: 4.11448669e-20 + syst_JES_EtaIntercalibration_Stat99: 4.11448669e-20 + syst_JES_EtaIntercalibration_TotalStat_MJB: 8.84470049e-04 + syst_JES_Flavour_Comp: 2.38967587e-03 + syst_JES_Flavour_Response: 1.69412359e-04 + syst_JES_Gjet_Generator: 3.29978833e-03 + syst_JES_Gjet_OOC: 2.71919455e-03 + syst_JES_Gjet_Purity: 5.40308382e-04 + syst_JES_Gjet_Stat1: 7.92562666e-06 + syst_JES_Gjet_Stat10: 6.11061388e-05 + syst_JES_Gjet_Stat11: 6.89783334e-05 + syst_JES_Gjet_Stat12: 1.98851521e-04 + syst_JES_Gjet_Stat13: 6.22187534e-04 + syst_JES_Gjet_Stat14: 1.51100265e-03 + syst_JES_Gjet_Stat15: 8.75478692e-04 + syst_JES_Gjet_Stat2: 1.35359768e-09 + syst_JES_Gjet_Stat3: 8.33154295e-06 + syst_JES_Gjet_Stat4: 1.02041215e-05 + syst_JES_Gjet_Stat5: 1.38996805e-10 + syst_JES_Gjet_Stat6: 2.37595807e-05 + syst_JES_Gjet_Stat7: 2.79095517e-05 + syst_JES_Gjet_Stat8: 2.10382342e-05 + syst_JES_Gjet_Stat9: 4.01729769e-05 + syst_JES_Gjet_Veto: 2.66610840e-03 + syst_JES_Gjet_dPhi: 2.67405437e-04 + syst_JES_LArESZee: 5.05247095e-03 + syst_JES_LArEsmear: 4.12195109e-04 + syst_JES_LAr_JVT: 4.99052450e-04 + syst_JES_MJB_Alpha: 3.18971268e-05 + syst_JES_MJB_Asym: 3.97690778e-04 + syst_JES_MJB_Beta: 3.56249301e-05 + syst_JES_MJB_Fragmentation: 3.81015447e-04 + syst_JES_MJB_Stat1: 9.68744312e-09 + syst_JES_MJB_Stat10: 3.01382062e-05 + syst_JES_MJB_Stat11: 3.14233460e-05 + syst_JES_MJB_Stat12: 2.58498046e-05 + syst_JES_MJB_Stat13: 1.66600381e-06 + syst_JES_MJB_Stat14: 1.24347285e-06 + syst_JES_MJB_Stat15: 9.68741166e-06 + syst_JES_MJB_Stat16: 2.82738055e-06 + syst_JES_MJB_Stat2: 8.65427353e-06 + syst_JES_MJB_Stat3: 1.31635861e-05 + syst_JES_MJB_Stat4: 1.02442145e-05 syst_JES_MJB_Stat5: 0.0 - syst_JES_MJB_Stat6: 6.851992994742479e-06 - syst_JES_MJB_Stat7: 5.492333110800909e-06 - syst_JES_MJB_Stat8: 1.4618287887095396e-05 - syst_JES_MJB_Stat9: 2.1819447747365194e-05 - syst_JES_MJB_Threshold: 0.0003108350366351901 - syst_JES_Pileup_MuOffset: 0.0006215369236819322 - syst_JES_Pileup_NPVOffset: 0.0006381527168319508 - syst_JES_Pileup_Pt_term: 0.0005522130091730909 - syst_JES_Pileup_Rho_topology: 0.0009483407760399212 - syst_JES_PunchThrough_MC15: 0.0006061163254689648 + syst_JES_MJB_Stat6: 6.85199299e-06 + syst_JES_MJB_Stat7: 5.49233311e-06 + syst_JES_MJB_Stat8: 1.46182879e-05 + syst_JES_MJB_Stat9: 2.18194477e-05 + syst_JES_MJB_Threshold: 3.10835037e-04 + syst_JES_Pileup_MuOffset: 6.21536924e-04 + syst_JES_Pileup_NPVOffset: 6.38152717e-04 + syst_JES_Pileup_Pt_term: 5.52213009e-04 + syst_JES_Pileup_Rho_topology: 9.48340776e-04 + syst_JES_PunchThrough_MC15: 6.06116325e-04 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.0014360006963786613 - syst_JES_Zjet_MuScale: 0.00010087297408126719 - syst_JES_Zjet_MuSmearID: 1.9965264836710785e-05 - syst_JES_Zjet_MuSmearMS: 0.0004017667341567741 - syst_JES_Zjet_OOC: 0.0007575213181818713 - syst_JES_Zjet_Stat1: 4.2233935111471675e-05 - syst_JES_Zjet_Stat10: 6.414559279482885e-05 - syst_JES_Zjet_Stat11: 8.653702372395298e-05 - syst_JES_Zjet_Stat12: 0.0002413120541953924 - syst_JES_Zjet_Stat13: 0.0004340345925153892 - syst_JES_Zjet_Stat2: 4.302414206008415e-08 - syst_JES_Zjet_Stat3: 2.1387889096402198e-05 - syst_JES_Zjet_Stat4: 2.0713946769024968e-05 - syst_JES_Zjet_Stat5: 2.6131097852941425e-05 - syst_JES_Zjet_Stat6: 3.0416265385480842e-05 - syst_JES_Zjet_Stat7: 1.9005847277877404e-05 - syst_JES_Zjet_Stat8: 2.3061413660051286e-05 - syst_JES_Zjet_Stat9: 3.902925921664412e-05 - syst_JES_Zjet_Veto: 0.00017130706348542665 - syst_JES_Zjet_dPhi: 0.0001459989383523045 - syst_PRW: 0.0001795 - syst_Unfolding_bias: 4.053e-15 - syst_cleaning: 0.0007352555678129884 + syst_JES_Zjet_MC: 1.43600070e-03 + syst_JES_Zjet_MuScale: 1.00872974e-04 + syst_JES_Zjet_MuSmearID: 1.99652648e-05 + syst_JES_Zjet_MuSmearMS: 4.01766734e-04 + syst_JES_Zjet_OOC: 7.57521318e-04 + syst_JES_Zjet_Stat1: 4.22339351e-05 + syst_JES_Zjet_Stat10: 6.41455928e-05 + syst_JES_Zjet_Stat11: 8.65370237e-05 + syst_JES_Zjet_Stat12: 2.41312054e-04 + syst_JES_Zjet_Stat13: 4.34034593e-04 + syst_JES_Zjet_Stat2: 4.30241421e-08 + syst_JES_Zjet_Stat3: 2.13878891e-05 + syst_JES_Zjet_Stat4: 2.07139468e-05 + syst_JES_Zjet_Stat5: 2.61310979e-05 + syst_JES_Zjet_Stat6: 3.04162654e-05 + syst_JES_Zjet_Stat7: 1.90058473e-05 + syst_JES_Zjet_Stat8: 2.30614137e-05 + syst_JES_Zjet_Stat9: 3.90292592e-05 + syst_JES_Zjet_Veto: 1.71307063e-04 + syst_JES_Zjet_dPhi: 1.45998938e-04 + syst_PRW: 1.79500000e-04 + syst_Unfolding_bias: 4.05300000e-15 + syst_cleaning: 7.35255568e-04 syst_lumi: 0.002486 -- stat: 0.0006315 +- stat: 6.31500000e-04 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.0008123457761323069 - syst_JER_NP1: 0.00014086961728847 - syst_JER_NP2: 0.0006315280575714748 - syst_JER_NP3: 5.732395136415493e-05 - syst_JER_NP4: 4.915013021345925e-12 - syst_JER_NP5: 6.76000059171595e-05 - syst_JER_NP6: 9.752429581904193e-12 - syst_JER_NP7: 1.1694328999562139e-11 - syst_JER_NP8: 5.237497398567373e-05 - syst_JES_EtaIntercalibration_Modelling: 0.005570340115289191 - syst_JES_EtaIntercalibration_NonClosure: 1.728438312465909e-06 - syst_JES_EtaIntercalibration_Stat0: 9.54273392430073e-21 + syst_JER_NP0: 8.12345776e-04 + syst_JER_NP1: 1.40869617e-04 + syst_JER_NP2: 6.31528058e-04 + syst_JER_NP3: 5.73239514e-05 + syst_JER_NP4: 4.91501302e-12 + syst_JER_NP5: 6.76000059e-05 + syst_JER_NP6: 9.75242958e-12 + syst_JER_NP7: 1.16943290e-11 + syst_JER_NP8: 5.23749740e-05 + syst_JES_EtaIntercalibration_Modelling: 5.57034012e-03 + syst_JES_EtaIntercalibration_NonClosure: 1.72843831e-06 + syst_JES_EtaIntercalibration_Stat0: 9.54273392e-21 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 1.6249596792373034e-16 - syst_JES_EtaIntercalibration_Stat101: 4.547743286510354e-12 - syst_JES_EtaIntercalibration_Stat102: 1.8604963551428958e-07 - syst_JES_EtaIntercalibration_Stat103: 2.0476061437688648e-07 - syst_JES_EtaIntercalibration_Stat104: 5.966805734450805e-13 - syst_JES_EtaIntercalibration_Stat105: 1.5072668078346315e-20 - syst_JES_EtaIntercalibration_Stat106: 9.54273392430073e-21 - syst_JES_EtaIntercalibration_Stat107: 9.54273392430073e-21 - syst_JES_EtaIntercalibration_Stat108: 9.54273392430073e-21 - syst_JES_EtaIntercalibration_Stat109: 9.54273392430073e-21 + syst_JES_EtaIntercalibration_Stat100: 1.62495968e-16 + syst_JES_EtaIntercalibration_Stat101: 4.54774329e-12 + syst_JES_EtaIntercalibration_Stat102: 1.86049636e-07 + syst_JES_EtaIntercalibration_Stat103: 2.04760614e-07 + syst_JES_EtaIntercalibration_Stat104: 5.96680573e-13 + syst_JES_EtaIntercalibration_Stat105: 1.50726681e-20 + syst_JES_EtaIntercalibration_Stat106: 9.54273392e-21 + syst_JES_EtaIntercalibration_Stat107: 9.54273392e-21 + syst_JES_EtaIntercalibration_Stat108: 9.54273392e-21 + syst_JES_EtaIntercalibration_Stat109: 9.54273392e-21 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 6.396873826331109e-19 - syst_JES_EtaIntercalibration_Stat111: 2.9872463490646366e-12 - syst_JES_EtaIntercalibration_Stat112: 1.491162079554064e-08 - syst_JES_EtaIntercalibration_Stat113: 1.007639102990252e-08 - syst_JES_EtaIntercalibration_Stat114: 3.480750275147901e-07 - syst_JES_EtaIntercalibration_Stat115: 5.83264631711685e-13 - syst_JES_EtaIntercalibration_Stat116: 3.74325579766742e-18 - syst_JES_EtaIntercalibration_Stat117: 9.54273392430073e-21 - syst_JES_EtaIntercalibration_Stat118: 9.54273392430073e-21 - syst_JES_EtaIntercalibration_Stat119: 9.54273392430073e-21 + syst_JES_EtaIntercalibration_Stat110: 6.39687383e-19 + syst_JES_EtaIntercalibration_Stat111: 2.98724635e-12 + syst_JES_EtaIntercalibration_Stat112: 1.49116208e-08 + syst_JES_EtaIntercalibration_Stat113: 1.00763910e-08 + syst_JES_EtaIntercalibration_Stat114: 3.48075028e-07 + syst_JES_EtaIntercalibration_Stat115: 5.83264632e-13 + syst_JES_EtaIntercalibration_Stat116: 3.74325580e-18 + syst_JES_EtaIntercalibration_Stat117: 9.54273392e-21 + syst_JES_EtaIntercalibration_Stat118: 9.54273392e-21 + syst_JES_EtaIntercalibration_Stat119: 9.54273392e-21 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 1.2695932419479869e-15 - syst_JES_EtaIntercalibration_Stat121: 1.6699407796386074e-07 - syst_JES_EtaIntercalibration_Stat122: 2.609700580526433e-07 - syst_JES_EtaIntercalibration_Stat123: 6.906238171935573e-07 - syst_JES_EtaIntercalibration_Stat124: 4.337844971872554e-07 - syst_JES_EtaIntercalibration_Stat125: 1.0819255369478993e-17 - syst_JES_EtaIntercalibration_Stat126: 9.54273392430073e-21 - syst_JES_EtaIntercalibration_Stat127: 9.54273392430073e-21 - syst_JES_EtaIntercalibration_Stat128: 9.54273392430073e-21 - syst_JES_EtaIntercalibration_Stat129: 9.040564594509572e-13 + syst_JES_EtaIntercalibration_Stat120: 1.26959324e-15 + syst_JES_EtaIntercalibration_Stat121: 1.66994078e-07 + syst_JES_EtaIntercalibration_Stat122: 2.60970058e-07 + syst_JES_EtaIntercalibration_Stat123: 6.90623817e-07 + syst_JES_EtaIntercalibration_Stat124: 4.33784497e-07 + syst_JES_EtaIntercalibration_Stat125: 1.08192554e-17 + syst_JES_EtaIntercalibration_Stat126: 9.54273392e-21 + syst_JES_EtaIntercalibration_Stat127: 9.54273392e-21 + syst_JES_EtaIntercalibration_Stat128: 9.54273392e-21 + syst_JES_EtaIntercalibration_Stat129: 9.04056459e-13 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 3.179298989950458e-08 - syst_JES_EtaIntercalibration_Stat131: 1.91217531361536e-08 - syst_JES_EtaIntercalibration_Stat132: 4.7058515666667595e-07 - syst_JES_EtaIntercalibration_Stat133: 2.1054569830561727e-07 - syst_JES_EtaIntercalibration_Stat134: 1.3847743099794164e-07 - syst_JES_EtaIntercalibration_Stat135: 3.7464258967714815e-18 + syst_JES_EtaIntercalibration_Stat130: 3.17929899e-08 + syst_JES_EtaIntercalibration_Stat131: 1.91217531e-08 + syst_JES_EtaIntercalibration_Stat132: 4.70585157e-07 + syst_JES_EtaIntercalibration_Stat133: 2.10545698e-07 + syst_JES_EtaIntercalibration_Stat134: 1.38477431e-07 + syst_JES_EtaIntercalibration_Stat135: 3.74642590e-18 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 syst_JES_EtaIntercalibration_Stat138: 0.0 - syst_JES_EtaIntercalibration_Stat139: 7.755089361187272e-12 - syst_JES_EtaIntercalibration_Stat14: 1.6402691906129439e-16 - syst_JES_EtaIntercalibration_Stat140: 4.591373990111783e-07 - syst_JES_EtaIntercalibration_Stat141: 8.159060305574411e-07 - syst_JES_EtaIntercalibration_Stat142: 4.860717308175821e-07 - syst_JES_EtaIntercalibration_Stat143: 6.959117665875466e-07 - syst_JES_EtaIntercalibration_Stat144: 3.1978320828336186e-14 + syst_JES_EtaIntercalibration_Stat139: 7.75508936e-12 + syst_JES_EtaIntercalibration_Stat14: 1.64026919e-16 + syst_JES_EtaIntercalibration_Stat140: 4.59137399e-07 + syst_JES_EtaIntercalibration_Stat141: 8.15906031e-07 + syst_JES_EtaIntercalibration_Stat142: 4.86071731e-07 + syst_JES_EtaIntercalibration_Stat143: 6.95911767e-07 + syst_JES_EtaIntercalibration_Stat144: 3.19783208e-14 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 1.7139069607186966e-13 - syst_JES_EtaIntercalibration_Stat148: 8.747418658524352e-08 - syst_JES_EtaIntercalibration_Stat149: 1.8291816177460345e-07 - syst_JES_EtaIntercalibration_Stat15: 1.6360042189533864e-16 - syst_JES_EtaIntercalibration_Stat150: 5.252981773002834e-07 - syst_JES_EtaIntercalibration_Stat151: 2.3218619146441503e-07 - syst_JES_EtaIntercalibration_Stat152: 1.341434214516314e-12 + syst_JES_EtaIntercalibration_Stat147: 1.71390696e-13 + syst_JES_EtaIntercalibration_Stat148: 8.74741866e-08 + syst_JES_EtaIntercalibration_Stat149: 1.82918162e-07 + syst_JES_EtaIntercalibration_Stat15: 1.63600422e-16 + syst_JES_EtaIntercalibration_Stat150: 5.25298177e-07 + syst_JES_EtaIntercalibration_Stat151: 2.32186191e-07 + syst_JES_EtaIntercalibration_Stat152: 1.34143421e-12 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 syst_JES_EtaIntercalibration_Stat156: 0.0 - syst_JES_EtaIntercalibration_Stat157: 2.364151931391043e-12 - syst_JES_EtaIntercalibration_Stat158: 9.446931088983343e-07 - syst_JES_EtaIntercalibration_Stat159: 9.803780737552221e-07 - syst_JES_EtaIntercalibration_Stat16: 1.6300338687080914e-16 - syst_JES_EtaIntercalibration_Stat160: 4.904186351220761e-07 - syst_JES_EtaIntercalibration_Stat161: 6.722411825379341e-07 - syst_JES_EtaIntercalibration_Stat162: 3.1493516297009455e-14 + syst_JES_EtaIntercalibration_Stat157: 2.36415193e-12 + syst_JES_EtaIntercalibration_Stat158: 9.44693109e-07 + syst_JES_EtaIntercalibration_Stat159: 9.80378074e-07 + syst_JES_EtaIntercalibration_Stat16: 1.63003387e-16 + syst_JES_EtaIntercalibration_Stat160: 4.90418635e-07 + syst_JES_EtaIntercalibration_Stat161: 6.72241183e-07 + syst_JES_EtaIntercalibration_Stat162: 3.14935163e-14 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 3.950451770051117e-13 - syst_JES_EtaIntercalibration_Stat166: 4.335616075023248e-07 - syst_JES_EtaIntercalibration_Stat167: 1.571773021145229e-07 - syst_JES_EtaIntercalibration_Stat168: 7.23020876254621e-07 - syst_JES_EtaIntercalibration_Stat169: 5.275750809837402e-07 - syst_JES_EtaIntercalibration_Stat17: 7.839261955056739e-21 - syst_JES_EtaIntercalibration_Stat170: 1.3846151722861735e-07 + syst_JES_EtaIntercalibration_Stat165: 3.95045177e-13 + syst_JES_EtaIntercalibration_Stat166: 4.33561608e-07 + syst_JES_EtaIntercalibration_Stat167: 1.57177302e-07 + syst_JES_EtaIntercalibration_Stat168: 7.23020876e-07 + syst_JES_EtaIntercalibration_Stat169: 5.27575081e-07 + syst_JES_EtaIntercalibration_Stat17: 7.83926196e-21 + syst_JES_EtaIntercalibration_Stat170: 1.38461517e-07 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 - syst_JES_EtaIntercalibration_Stat175: 2.5825777888936373e-08 - syst_JES_EtaIntercalibration_Stat176: 7.257111546614122e-07 - syst_JES_EtaIntercalibration_Stat177: 3.4362511560565537e-06 - syst_JES_EtaIntercalibration_Stat178: 2.2537229199704206e-06 - syst_JES_EtaIntercalibration_Stat179: 1.5746149624590768e-07 + syst_JES_EtaIntercalibration_Stat175: 2.58257779e-08 + syst_JES_EtaIntercalibration_Stat176: 7.25711155e-07 + syst_JES_EtaIntercalibration_Stat177: 3.43625116e-06 + syst_JES_EtaIntercalibration_Stat178: 2.25372292e-06 + syst_JES_EtaIntercalibration_Stat179: 1.57461496e-07 syst_JES_EtaIntercalibration_Stat18: 0.0 - syst_JES_EtaIntercalibration_Stat180: 2.1815179922664843e-07 + syst_JES_EtaIntercalibration_Stat180: 2.18151799e-07 syst_JES_EtaIntercalibration_Stat181: 0.0 - syst_JES_EtaIntercalibration_Stat182: 1.3110326955391186e-08 - syst_JES_EtaIntercalibration_Stat183: 1.7907878733953946e-06 - syst_JES_EtaIntercalibration_Stat184: 6.881204618378966e-06 - syst_JES_EtaIntercalibration_Stat185: 9.5791123153453e-06 - syst_JES_EtaIntercalibration_Stat186: 1.6509888453590471e-06 - syst_JES_EtaIntercalibration_Stat187: 3.005262306403038e-07 + syst_JES_EtaIntercalibration_Stat182: 1.31103270e-08 + syst_JES_EtaIntercalibration_Stat183: 1.79078787e-06 + syst_JES_EtaIntercalibration_Stat184: 6.88120462e-06 + syst_JES_EtaIntercalibration_Stat185: 9.57911232e-06 + syst_JES_EtaIntercalibration_Stat186: 1.65098885e-06 + syst_JES_EtaIntercalibration_Stat187: 3.00526231e-07 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 - syst_JES_EtaIntercalibration_Stat192: 4.0120075195686013e-07 - syst_JES_EtaIntercalibration_Stat193: 5.114005352949878e-06 - syst_JES_EtaIntercalibration_Stat194: 1.6456997539040953e-05 - syst_JES_EtaIntercalibration_Stat195: 1.2631060555234465e-05 - syst_JES_EtaIntercalibration_Stat196: 2.285462043001371e-06 - syst_JES_EtaIntercalibration_Stat197: 1.4003338566213414e-07 - syst_JES_EtaIntercalibration_Stat198: 3.5312038977521536e-06 - syst_JES_EtaIntercalibration_Stat199: 1.6131028857453575e-05 + syst_JES_EtaIntercalibration_Stat192: 4.01200752e-07 + syst_JES_EtaIntercalibration_Stat193: 5.11400535e-06 + syst_JES_EtaIntercalibration_Stat194: 1.64569975e-05 + syst_JES_EtaIntercalibration_Stat195: 1.26310606e-05 + syst_JES_EtaIntercalibration_Stat196: 2.28546204e-06 + syst_JES_EtaIntercalibration_Stat197: 1.40033386e-07 + syst_JES_EtaIntercalibration_Stat198: 3.53120390e-06 + syst_JES_EtaIntercalibration_Stat199: 1.61310289e-05 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 2.0287180681405686e-05 - syst_JES_EtaIntercalibration_Stat201: 4.648234503550783e-06 - syst_JES_EtaIntercalibration_Stat202: 1.3282991676576479e-07 + syst_JES_EtaIntercalibration_Stat200: 2.02871807e-05 + syst_JES_EtaIntercalibration_Stat201: 4.64823450e-06 + syst_JES_EtaIntercalibration_Stat202: 1.32829917e-07 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 - syst_JES_EtaIntercalibration_Stat207: 4.1824971010151334e-07 - syst_JES_EtaIntercalibration_Stat208: 1.0697821962904412e-05 - syst_JES_EtaIntercalibration_Stat209: 2.775823256261104e-05 + syst_JES_EtaIntercalibration_Stat207: 4.18249710e-07 + syst_JES_EtaIntercalibration_Stat208: 1.06978220e-05 + syst_JES_EtaIntercalibration_Stat209: 2.77582326e-05 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 1.9346053260290588e-05 - syst_JES_EtaIntercalibration_Stat211: 7.976705084181061e-06 - syst_JES_EtaIntercalibration_Stat212: 1.5347299045760462e-05 - syst_JES_EtaIntercalibration_Stat213: 2.216729742210358e-05 - syst_JES_EtaIntercalibration_Stat214: 3.7089475596184967e-06 - syst_JES_EtaIntercalibration_Stat215: 1.3574728284573508e-07 + syst_JES_EtaIntercalibration_Stat210: 1.93460533e-05 + syst_JES_EtaIntercalibration_Stat211: 7.97670508e-06 + syst_JES_EtaIntercalibration_Stat212: 1.53472990e-05 + syst_JES_EtaIntercalibration_Stat213: 2.21672974e-05 + syst_JES_EtaIntercalibration_Stat214: 3.70894756e-06 + syst_JES_EtaIntercalibration_Stat215: 1.35747283e-07 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 syst_JES_EtaIntercalibration_Stat219: 0.0 - syst_JES_EtaIntercalibration_Stat22: 9.54273392430073e-21 - syst_JES_EtaIntercalibration_Stat220: 7.125692387410502e-07 - syst_JES_EtaIntercalibration_Stat221: 8.531309439353375e-06 - syst_JES_EtaIntercalibration_Stat222: 2.7339213595127422e-05 - syst_JES_EtaIntercalibration_Stat223: 2.536483146011422e-05 - syst_JES_EtaIntercalibration_Stat224: 5.339162481138779e-05 - syst_JES_EtaIntercalibration_Stat225: 6.813158078307005e-05 - syst_JES_EtaIntercalibration_Stat226: 1.5294792144713834e-05 - syst_JES_EtaIntercalibration_Stat227: 2.2483481647645234e-07 + syst_JES_EtaIntercalibration_Stat22: 9.54273392e-21 + syst_JES_EtaIntercalibration_Stat220: 7.12569239e-07 + syst_JES_EtaIntercalibration_Stat221: 8.53130944e-06 + syst_JES_EtaIntercalibration_Stat222: 2.73392136e-05 + syst_JES_EtaIntercalibration_Stat223: 2.53648315e-05 + syst_JES_EtaIntercalibration_Stat224: 5.33916248e-05 + syst_JES_EtaIntercalibration_Stat225: 6.81315808e-05 + syst_JES_EtaIntercalibration_Stat226: 1.52947921e-05 + syst_JES_EtaIntercalibration_Stat227: 2.24834816e-07 syst_JES_EtaIntercalibration_Stat228: 0.0 syst_JES_EtaIntercalibration_Stat229: 0.0 - syst_JES_EtaIntercalibration_Stat23: 9.54273392430073e-21 + syst_JES_EtaIntercalibration_Stat23: 9.54273392e-21 syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 - syst_JES_EtaIntercalibration_Stat232: 1.2322727070042693e-06 - syst_JES_EtaIntercalibration_Stat233: 1.9847969039677587e-05 - syst_JES_EtaIntercalibration_Stat234: 6.761439251372447e-05 - syst_JES_EtaIntercalibration_Stat235: 6.840481763004709e-05 - syst_JES_EtaIntercalibration_Stat236: 1.56759146702832e-05 - syst_JES_EtaIntercalibration_Stat237: 2.438678552003113e-06 - syst_JES_EtaIntercalibration_Stat238: 4.143931557108539e-08 + syst_JES_EtaIntercalibration_Stat232: 1.23227271e-06 + syst_JES_EtaIntercalibration_Stat233: 1.98479690e-05 + syst_JES_EtaIntercalibration_Stat234: 6.76143925e-05 + syst_JES_EtaIntercalibration_Stat235: 6.84048176e-05 + syst_JES_EtaIntercalibration_Stat236: 1.56759147e-05 + syst_JES_EtaIntercalibration_Stat237: 2.43867855e-06 + syst_JES_EtaIntercalibration_Stat238: 4.14393156e-08 syst_JES_EtaIntercalibration_Stat239: 0.0 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 - syst_JES_EtaIntercalibration_Stat243: 1.4569642909831387e-07 - syst_JES_EtaIntercalibration_Stat244: 5.087545650900835e-06 - syst_JES_EtaIntercalibration_Stat245: 2.1057751541890696e-05 - syst_JES_EtaIntercalibration_Stat25: 7.04338460897884e-21 - syst_JES_EtaIntercalibration_Stat26: 5.253265912744185e-19 - syst_JES_EtaIntercalibration_Stat27: 1.5116837442649834e-16 - syst_JES_EtaIntercalibration_Stat28: 1.384774619491998e-07 - syst_JES_EtaIntercalibration_Stat29: 1.6240893163554769e-16 + syst_JES_EtaIntercalibration_Stat243: 1.45696429e-07 + syst_JES_EtaIntercalibration_Stat244: 5.08754565e-06 + syst_JES_EtaIntercalibration_Stat245: 2.10577515e-05 + syst_JES_EtaIntercalibration_Stat25: 7.04338461e-21 + syst_JES_EtaIntercalibration_Stat26: 5.25326591e-19 + syst_JES_EtaIntercalibration_Stat27: 1.51168374e-16 + syst_JES_EtaIntercalibration_Stat28: 1.38477462e-07 + syst_JES_EtaIntercalibration_Stat29: 1.62408932e-16 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 5.0436709845111827e-20 + syst_JES_EtaIntercalibration_Stat30: 5.04367098e-20 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 1.3852283855018277e-20 - syst_JES_EtaIntercalibration_Stat36: 1.5981275743857246e-16 - syst_JES_EtaIntercalibration_Stat37: 8.216849031630122e-08 - syst_JES_EtaIntercalibration_Stat38: 8.216849031649752e-08 - syst_JES_EtaIntercalibration_Stat39: 1.1621036409460215e-17 - syst_JES_EtaIntercalibration_Stat4: 9.657915303004059e-21 - syst_JES_EtaIntercalibration_Stat40: 8.727804019339573e-21 + syst_JES_EtaIntercalibration_Stat35: 1.38522839e-20 + syst_JES_EtaIntercalibration_Stat36: 1.59812757e-16 + syst_JES_EtaIntercalibration_Stat37: 8.21684903e-08 + syst_JES_EtaIntercalibration_Stat38: 8.21684903e-08 + syst_JES_EtaIntercalibration_Stat39: 1.16210364e-17 + syst_JES_EtaIntercalibration_Stat4: 9.65791530e-21 + syst_JES_EtaIntercalibration_Stat40: 8.72780402e-21 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 - syst_JES_EtaIntercalibration_Stat44: 9.54273392430073e-21 + syst_JES_EtaIntercalibration_Stat44: 9.54273392e-21 syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 - syst_JES_EtaIntercalibration_Stat47: 7.046848710593976e-21 - syst_JES_EtaIntercalibration_Stat48: 9.61509910245339e-18 - syst_JES_EtaIntercalibration_Stat49: 4.0610711641142173e-16 - syst_JES_EtaIntercalibration_Stat5: 1.5108577795411453e-18 - syst_JES_EtaIntercalibration_Stat50: 1.3847746203159058e-07 - syst_JES_EtaIntercalibration_Stat51: 5.777827689524044e-13 - syst_JES_EtaIntercalibration_Stat52: 1.2261404188346456e-18 + syst_JES_EtaIntercalibration_Stat47: 7.04684871e-21 + syst_JES_EtaIntercalibration_Stat48: 9.61509910e-18 + syst_JES_EtaIntercalibration_Stat49: 4.06107116e-16 + syst_JES_EtaIntercalibration_Stat5: 1.51085778e-18 + syst_JES_EtaIntercalibration_Stat50: 1.38477462e-07 + syst_JES_EtaIntercalibration_Stat51: 5.77782769e-13 + syst_JES_EtaIntercalibration_Stat52: 1.22614042e-18 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 syst_JES_EtaIntercalibration_Stat56: 0.0 - syst_JES_EtaIntercalibration_Stat57: 1.6402870965174442e-16 - syst_JES_EtaIntercalibration_Stat58: 1.4679898405217253e-16 - syst_JES_EtaIntercalibration_Stat59: 4.5457703894179967e-07 - syst_JES_EtaIntercalibration_Stat6: 9.599158439675845e-18 - syst_JES_EtaIntercalibration_Stat60: 8.213385013496083e-08 - syst_JES_EtaIntercalibration_Stat61: 2.7278298068382124e-16 - syst_JES_EtaIntercalibration_Stat62: 7.996878578545508e-21 + syst_JES_EtaIntercalibration_Stat57: 1.64028710e-16 + syst_JES_EtaIntercalibration_Stat58: 1.46798984e-16 + syst_JES_EtaIntercalibration_Stat59: 4.54577039e-07 + syst_JES_EtaIntercalibration_Stat6: 9.59915844e-18 + syst_JES_EtaIntercalibration_Stat60: 8.21338501e-08 + syst_JES_EtaIntercalibration_Stat61: 2.72782981e-16 + syst_JES_EtaIntercalibration_Stat62: 7.99687858e-21 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 - syst_JES_EtaIntercalibration_Stat69: 1.061176907965868e-20 - syst_JES_EtaIntercalibration_Stat7: 1.234787102094932e-18 - syst_JES_EtaIntercalibration_Stat70: 1.8727105355606884e-16 - syst_JES_EtaIntercalibration_Stat71: 2.647439655220767e-07 - syst_JES_EtaIntercalibration_Stat72: 1.5883037949803907e-08 - syst_JES_EtaIntercalibration_Stat73: 1.3847746086135646e-07 - syst_JES_EtaIntercalibration_Stat74: 1.632840031203302e-17 + syst_JES_EtaIntercalibration_Stat69: 1.06117691e-20 + syst_JES_EtaIntercalibration_Stat7: 1.23478710e-18 + syst_JES_EtaIntercalibration_Stat70: 1.87271054e-16 + syst_JES_EtaIntercalibration_Stat71: 2.64743966e-07 + syst_JES_EtaIntercalibration_Stat72: 1.58830379e-08 + syst_JES_EtaIntercalibration_Stat73: 1.38477461e-07 + syst_JES_EtaIntercalibration_Stat74: 1.63284003e-17 syst_JES_EtaIntercalibration_Stat75: 0.0 syst_JES_EtaIntercalibration_Stat76: 0.0 syst_JES_EtaIntercalibration_Stat77: 0.0 syst_JES_EtaIntercalibration_Stat78: 0.0 - syst_JES_EtaIntercalibration_Stat79: 1.6148936983828842e-16 + syst_JES_EtaIntercalibration_Stat79: 1.61489370e-16 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 3.2124658753051367e-12 - syst_JES_EtaIntercalibration_Stat81: 1.8615720963744595e-07 - syst_JES_EtaIntercalibration_Stat82: 2.0821660524559513e-07 - syst_JES_EtaIntercalibration_Stat83: 3.2401496520222643e-14 - syst_JES_EtaIntercalibration_Stat84: 5.223947048688377e-21 - syst_JES_EtaIntercalibration_Stat85: 9.54273392430073e-21 - syst_JES_EtaIntercalibration_Stat86: 9.54273392430073e-21 - syst_JES_EtaIntercalibration_Stat87: 9.54273392430073e-21 - syst_JES_EtaIntercalibration_Stat88: 9.54273392430073e-21 - syst_JES_EtaIntercalibration_Stat89: 9.54273392430073e-21 + syst_JES_EtaIntercalibration_Stat80: 3.21246588e-12 + syst_JES_EtaIntercalibration_Stat81: 1.86157210e-07 + syst_JES_EtaIntercalibration_Stat82: 2.08216605e-07 + syst_JES_EtaIntercalibration_Stat83: 3.24014965e-14 + syst_JES_EtaIntercalibration_Stat84: 5.22394705e-21 + syst_JES_EtaIntercalibration_Stat85: 9.54273392e-21 + syst_JES_EtaIntercalibration_Stat86: 9.54273392e-21 + syst_JES_EtaIntercalibration_Stat87: 9.54273392e-21 + syst_JES_EtaIntercalibration_Stat88: 9.54273392e-21 + syst_JES_EtaIntercalibration_Stat89: 9.54273392e-21 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 5.6465262892064895e-14 - syst_JES_EtaIntercalibration_Stat92: 2.647437985923505e-07 - syst_JES_EtaIntercalibration_Stat93: 1.585745377793739e-08 - syst_JES_EtaIntercalibration_Stat94: 1.3847745317393986e-07 - syst_JES_EtaIntercalibration_Stat95: 1.4635858251226677e-16 - syst_JES_EtaIntercalibration_Stat96: 3.74325579766742e-18 - syst_JES_EtaIntercalibration_Stat97: 9.54273392430073e-21 - syst_JES_EtaIntercalibration_Stat98: 9.54273392430073e-21 - syst_JES_EtaIntercalibration_Stat99: 9.54273392430073e-21 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0005562000179791439 - syst_JES_Flavour_Comp: 0.00147413118480005 - syst_JES_Flavour_Response: 2.3430960287619453e-05 - syst_JES_Gjet_Generator: 0.0019880188630895836 - syst_JES_Gjet_OOC: 0.001638664700297166 - syst_JES_Gjet_Purity: 0.0003082577938998461 - syst_JES_Gjet_Stat1: 4.9243335404093004e-06 - syst_JES_Gjet_Stat10: 3.2969071491323504e-05 - syst_JES_Gjet_Stat11: 3.649979495832819e-05 - syst_JES_Gjet_Stat12: 0.00010978929182757305 - syst_JES_Gjet_Stat13: 0.00035280819151487967 - syst_JES_Gjet_Stat14: 0.0009139523619970572 - syst_JES_Gjet_Stat15: 0.0007301548654223979 - syst_JES_Gjet_Stat2: 1.9121840907333166e-08 - syst_JES_Gjet_Stat3: 5.612787724640493e-06 - syst_JES_Gjet_Stat4: 6.021342769681859e-06 - syst_JES_Gjet_Stat5: 1.952016156407123e-11 - syst_JES_Gjet_Stat6: 1.6018973125640732e-05 - syst_JES_Gjet_Stat7: 1.777242808397322e-05 - syst_JES_Gjet_Stat8: 1.2006609762959734e-05 - syst_JES_Gjet_Stat9: 2.2389262493436447e-05 - syst_JES_Gjet_Veto: 0.0016295523925299242 - syst_JES_Gjet_dPhi: 0.00016522185085514568 - syst_JES_LArESZee: 0.0030581994702765874 - syst_JES_LArEsmear: 0.00025196080548371013 - syst_JES_LAr_JVT: 0.0003054665734577189 - syst_JES_MJB_Alpha: 1.9884367603723284e-05 - syst_JES_MJB_Asym: 0.0002768092484004102 - syst_JES_MJB_Beta: 2.2169151427152102e-05 - syst_JES_MJB_Fragmentation: 0.00021011718159160615 - syst_JES_MJB_Stat1: 1.903086403858414e-08 - syst_JES_MJB_Stat10: 2.4568327171380634e-05 - syst_JES_MJB_Stat11: 2.4471505879287445e-05 - syst_JES_MJB_Stat12: 2.4943281159462562e-05 - syst_JES_MJB_Stat13: 5.074850201483784e-06 - syst_JES_MJB_Stat14: 4.364628255361504e-06 - syst_JES_MJB_Stat15: 8.112379228685011e-06 - syst_JES_MJB_Stat16: 6.03515774441729e-06 - syst_JES_MJB_Stat2: 4.334137280233604e-06 - syst_JES_MJB_Stat3: 3.9482098158532555e-06 - syst_JES_MJB_Stat4: 3.1791792572926745e-06 + syst_JES_EtaIntercalibration_Stat91: 5.64652629e-14 + syst_JES_EtaIntercalibration_Stat92: 2.64743799e-07 + syst_JES_EtaIntercalibration_Stat93: 1.58574538e-08 + syst_JES_EtaIntercalibration_Stat94: 1.38477453e-07 + syst_JES_EtaIntercalibration_Stat95: 1.46358583e-16 + syst_JES_EtaIntercalibration_Stat96: 3.74325580e-18 + syst_JES_EtaIntercalibration_Stat97: 9.54273392e-21 + syst_JES_EtaIntercalibration_Stat98: 9.54273392e-21 + syst_JES_EtaIntercalibration_Stat99: 9.54273392e-21 + syst_JES_EtaIntercalibration_TotalStat_MJB: 5.56200018e-04 + syst_JES_Flavour_Comp: 1.47413118e-03 + syst_JES_Flavour_Response: 2.34309603e-05 + syst_JES_Gjet_Generator: 1.98801886e-03 + syst_JES_Gjet_OOC: 1.63866470e-03 + syst_JES_Gjet_Purity: 3.08257794e-04 + syst_JES_Gjet_Stat1: 4.92433354e-06 + syst_JES_Gjet_Stat10: 3.29690715e-05 + syst_JES_Gjet_Stat11: 3.64997950e-05 + syst_JES_Gjet_Stat12: 1.09789292e-04 + syst_JES_Gjet_Stat13: 3.52808192e-04 + syst_JES_Gjet_Stat14: 9.13952362e-04 + syst_JES_Gjet_Stat15: 7.30154865e-04 + syst_JES_Gjet_Stat2: 1.91218409e-08 + syst_JES_Gjet_Stat3: 5.61278772e-06 + syst_JES_Gjet_Stat4: 6.02134277e-06 + syst_JES_Gjet_Stat5: 1.95201616e-11 + syst_JES_Gjet_Stat6: 1.60189731e-05 + syst_JES_Gjet_Stat7: 1.77724281e-05 + syst_JES_Gjet_Stat8: 1.20066098e-05 + syst_JES_Gjet_Stat9: 2.23892625e-05 + syst_JES_Gjet_Veto: 1.62955239e-03 + syst_JES_Gjet_dPhi: 1.65221851e-04 + syst_JES_LArESZee: 3.05819947e-03 + syst_JES_LArEsmear: 2.51960805e-04 + syst_JES_LAr_JVT: 3.05466573e-04 + syst_JES_MJB_Alpha: 1.98843676e-05 + syst_JES_MJB_Asym: 2.76809248e-04 + syst_JES_MJB_Beta: 2.21691514e-05 + syst_JES_MJB_Fragmentation: 2.10117182e-04 + syst_JES_MJB_Stat1: 1.90308640e-08 + syst_JES_MJB_Stat10: 2.45683272e-05 + syst_JES_MJB_Stat11: 2.44715059e-05 + syst_JES_MJB_Stat12: 2.49432812e-05 + syst_JES_MJB_Stat13: 5.07485020e-06 + syst_JES_MJB_Stat14: 4.36462826e-06 + syst_JES_MJB_Stat15: 8.11237923e-06 + syst_JES_MJB_Stat16: 6.03515774e-06 + syst_JES_MJB_Stat2: 4.33413728e-06 + syst_JES_MJB_Stat3: 3.94820982e-06 + syst_JES_MJB_Stat4: 3.17917926e-06 syst_JES_MJB_Stat5: 0.0 - syst_JES_MJB_Stat6: 4.047802737288466e-06 - syst_JES_MJB_Stat7: 4.2946199773670315e-06 - syst_JES_MJB_Stat8: 7.846664195694881e-06 - syst_JES_MJB_Stat9: 1.4462382480075682e-05 - syst_JES_MJB_Threshold: 0.00020000582491517592 - syst_JES_Pileup_MuOffset: 0.0003818825233956118 - syst_JES_Pileup_NPVOffset: 0.00039447603146452385 - syst_JES_Pileup_Pt_term: 0.000325525851507987 - syst_JES_Pileup_Rho_topology: 0.0005583001612036307 - syst_JES_PunchThrough_MC15: 0.00046306516550049414 + syst_JES_MJB_Stat6: 4.04780274e-06 + syst_JES_MJB_Stat7: 4.29461998e-06 + syst_JES_MJB_Stat8: 7.84666420e-06 + syst_JES_MJB_Stat9: 1.44623825e-05 + syst_JES_MJB_Threshold: 2.00005825e-04 + syst_JES_Pileup_MuOffset: 3.81882523e-04 + syst_JES_Pileup_NPVOffset: 3.94476031e-04 + syst_JES_Pileup_Pt_term: 3.25525852e-04 + syst_JES_Pileup_Rho_topology: 5.58300161e-04 + syst_JES_PunchThrough_MC15: 4.63065166e-04 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.0008154294742649423 - syst_JES_Zjet_MuScale: 5.683557226772684e-05 - syst_JES_Zjet_MuSmearID: 1.170814898905886e-05 - syst_JES_Zjet_MuSmearMS: 0.00022565399952139114 - syst_JES_Zjet_OOC: 0.0004477613063899113 - syst_JES_Zjet_Stat1: 2.6643300752722062e-05 - syst_JES_Zjet_Stat10: 3.713329604277002e-05 - syst_JES_Zjet_Stat11: 5.019204991828885e-05 - syst_JES_Zjet_Stat12: 0.0001435978718505257 - syst_JES_Zjet_Stat13: 0.00024336406369881316 - syst_JES_Zjet_Stat2: 8.931319989231055e-08 - syst_JES_Zjet_Stat3: 1.4326267369765233e-05 - syst_JES_Zjet_Stat4: 1.3860348507523178e-05 - syst_JES_Zjet_Stat5: 1.7132898178650336e-05 - syst_JES_Zjet_Stat6: 1.7966843768453043e-05 - syst_JES_Zjet_Stat7: 1.3155152631193603e-05 - syst_JES_Zjet_Stat8: 1.5230508855583256e-05 - syst_JES_Zjet_Stat9: 2.3138800206579423e-05 - syst_JES_Zjet_Veto: 9.934412312764154e-05 - syst_JES_Zjet_dPhi: 8.675746480851086e-05 - syst_PRW: 0.00010708 - syst_Unfolding_bias: 8.189e-16 - syst_cleaning: 0.0004396810975013595 + syst_JES_Zjet_MC: 8.15429474e-04 + syst_JES_Zjet_MuScale: 5.68355723e-05 + syst_JES_Zjet_MuSmearID: 1.17081490e-05 + syst_JES_Zjet_MuSmearMS: 2.25654000e-04 + syst_JES_Zjet_OOC: 4.47761306e-04 + syst_JES_Zjet_Stat1: 2.66433008e-05 + syst_JES_Zjet_Stat10: 3.71332960e-05 + syst_JES_Zjet_Stat11: 5.01920499e-05 + syst_JES_Zjet_Stat12: 1.43597872e-04 + syst_JES_Zjet_Stat13: 2.43364064e-04 + syst_JES_Zjet_Stat2: 8.93131999e-08 + syst_JES_Zjet_Stat3: 1.43262674e-05 + syst_JES_Zjet_Stat4: 1.38603485e-05 + syst_JES_Zjet_Stat5: 1.71328982e-05 + syst_JES_Zjet_Stat6: 1.79668438e-05 + syst_JES_Zjet_Stat7: 1.31551526e-05 + syst_JES_Zjet_Stat8: 1.52305089e-05 + syst_JES_Zjet_Stat9: 2.31388002e-05 + syst_JES_Zjet_Veto: 9.93441231e-05 + syst_JES_Zjet_dPhi: 8.67574648e-05 + syst_PRW: 1.07080000e-04 + syst_Unfolding_bias: 8.18900000e-16 + syst_cleaning: 4.39681098e-04 syst_lumi: 0.001461 -- stat: 0.0004644 +- stat: 4.64400000e-04 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.0004870660607145606 - syst_JER_NP1: 8.968857285072608e-05 - syst_JER_NP2: 0.00038773744660530274 - syst_JER_NP3: 3.814097181509669e-05 - syst_JER_NP4: 7.538019103186195e-13 - syst_JER_NP5: 4.030695070332163e-05 - syst_JER_NP6: 1.494740335309113e-12 - syst_JER_NP7: 1.7893386348033734e-12 - syst_JER_NP8: 2.005037343791881e-05 - syst_JES_EtaIntercalibration_Modelling: 0.003469476437447011 - syst_JES_EtaIntercalibration_NonClosure: 6.588025557782848e-07 - syst_JES_EtaIntercalibration_Stat0: 2.372909606369362e-21 + syst_JER_NP0: 4.87066061e-04 + syst_JER_NP1: 8.96885729e-05 + syst_JER_NP2: 3.87737447e-04 + syst_JER_NP3: 3.81409718e-05 + syst_JER_NP4: 7.53801910e-13 + syst_JER_NP5: 4.03069507e-05 + syst_JER_NP6: 1.49474034e-12 + syst_JER_NP7: 1.78933863e-12 + syst_JER_NP8: 2.00503734e-05 + syst_JES_EtaIntercalibration_Modelling: 3.46947644e-03 + syst_JES_EtaIntercalibration_NonClosure: 6.58802556e-07 + syst_JES_EtaIntercalibration_Stat0: 2.37290961e-21 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 2.8084578843429364e-17 - syst_JES_EtaIntercalibration_Stat101: 6.649355683071856e-13 - syst_JES_EtaIntercalibration_Stat102: 7.617117614294793e-08 - syst_JES_EtaIntercalibration_Stat103: 7.854344148304173e-08 - syst_JES_EtaIntercalibration_Stat104: 8.779020530218619e-14 - syst_JES_EtaIntercalibration_Stat105: 3.973110116772502e-21 - syst_JES_EtaIntercalibration_Stat106: 2.372909606369362e-21 - syst_JES_EtaIntercalibration_Stat107: 2.372909606369362e-21 - syst_JES_EtaIntercalibration_Stat108: 2.372909606369362e-21 - syst_JES_EtaIntercalibration_Stat109: 2.372909606369362e-21 + syst_JES_EtaIntercalibration_Stat100: 2.80845788e-17 + syst_JES_EtaIntercalibration_Stat101: 6.64935568e-13 + syst_JES_EtaIntercalibration_Stat102: 7.61711761e-08 + syst_JES_EtaIntercalibration_Stat103: 7.85434415e-08 + syst_JES_EtaIntercalibration_Stat104: 8.77902053e-14 + syst_JES_EtaIntercalibration_Stat105: 3.97311012e-21 + syst_JES_EtaIntercalibration_Stat106: 2.37290961e-21 + syst_JES_EtaIntercalibration_Stat107: 2.37290961e-21 + syst_JES_EtaIntercalibration_Stat108: 2.37290961e-21 + syst_JES_EtaIntercalibration_Stat109: 2.37290961e-21 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 1.3794898866972528e-19 - syst_JES_EtaIntercalibration_Stat111: 4.3525907227764937e-13 - syst_JES_EtaIntercalibration_Stat112: 1.0173265894858937e-07 - syst_JES_EtaIntercalibration_Stat113: 9.856612429274002e-08 - syst_JES_EtaIntercalibration_Stat114: 1.0317257860577717e-07 - syst_JES_EtaIntercalibration_Stat115: 8.427204362462086e-14 - syst_JES_EtaIntercalibration_Stat116: 6.279474585504746e-19 - syst_JES_EtaIntercalibration_Stat117: 2.372909606369362e-21 - syst_JES_EtaIntercalibration_Stat118: 2.372909606369362e-21 - syst_JES_EtaIntercalibration_Stat119: 2.372909606369362e-21 + syst_JES_EtaIntercalibration_Stat110: 1.37948989e-19 + syst_JES_EtaIntercalibration_Stat111: 4.35259072e-13 + syst_JES_EtaIntercalibration_Stat112: 1.01732659e-07 + syst_JES_EtaIntercalibration_Stat113: 9.85661243e-08 + syst_JES_EtaIntercalibration_Stat114: 1.03172579e-07 + syst_JES_EtaIntercalibration_Stat115: 8.42720436e-14 + syst_JES_EtaIntercalibration_Stat116: 6.27947459e-19 + syst_JES_EtaIntercalibration_Stat117: 2.37290961e-21 + syst_JES_EtaIntercalibration_Stat118: 2.37290961e-21 + syst_JES_EtaIntercalibration_Stat119: 2.37290961e-21 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 2.0403558513161376e-16 - syst_JES_EtaIntercalibration_Stat121: 5.944369392963395e-08 - syst_JES_EtaIntercalibration_Stat122: 1.1114606909378308e-07 - syst_JES_EtaIntercalibration_Stat123: 1.9703863522352664e-07 - syst_JES_EtaIntercalibration_Stat124: 1.2407586822182629e-07 - syst_JES_EtaIntercalibration_Stat125: 2.122628264675659e-18 - syst_JES_EtaIntercalibration_Stat126: 2.372909606369362e-21 - syst_JES_EtaIntercalibration_Stat127: 2.372909606369362e-21 - syst_JES_EtaIntercalibration_Stat128: 2.372909606369362e-21 - syst_JES_EtaIntercalibration_Stat129: 1.3507953645445338e-13 + syst_JES_EtaIntercalibration_Stat120: 2.04035585e-16 + syst_JES_EtaIntercalibration_Stat121: 5.94436939e-08 + syst_JES_EtaIntercalibration_Stat122: 1.11146069e-07 + syst_JES_EtaIntercalibration_Stat123: 1.97038635e-07 + syst_JES_EtaIntercalibration_Stat124: 1.24075868e-07 + syst_JES_EtaIntercalibration_Stat125: 2.12262826e-18 + syst_JES_EtaIntercalibration_Stat126: 2.37290961e-21 + syst_JES_EtaIntercalibration_Stat127: 2.37290961e-21 + syst_JES_EtaIntercalibration_Stat128: 2.37290961e-21 + syst_JES_EtaIntercalibration_Stat129: 1.35079536e-13 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 7.657246953540156e-08 - syst_JES_EtaIntercalibration_Stat131: 1.4553651191367754e-07 - syst_JES_EtaIntercalibration_Stat132: 3.6206718823997293e-07 - syst_JES_EtaIntercalibration_Stat133: 1.264915122646575e-07 - syst_JES_EtaIntercalibration_Stat134: 8.16661910475607e-08 - syst_JES_EtaIntercalibration_Stat135: 6.287344431475024e-19 + syst_JES_EtaIntercalibration_Stat130: 7.65724695e-08 + syst_JES_EtaIntercalibration_Stat131: 1.45536512e-07 + syst_JES_EtaIntercalibration_Stat132: 3.62067188e-07 + syst_JES_EtaIntercalibration_Stat133: 1.26491512e-07 + syst_JES_EtaIntercalibration_Stat134: 8.16661910e-08 + syst_JES_EtaIntercalibration_Stat135: 6.28734443e-19 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 syst_JES_EtaIntercalibration_Stat138: 0.0 - syst_JES_EtaIntercalibration_Stat139: 1.13452210533775e-12 - syst_JES_EtaIntercalibration_Stat14: 2.831948077689386e-17 - syst_JES_EtaIntercalibration_Stat140: 1.8118797442159345e-07 - syst_JES_EtaIntercalibration_Stat141: 4.794482532036174e-07 - syst_JES_EtaIntercalibration_Stat142: 1.96300698101153e-07 - syst_JES_EtaIntercalibration_Stat143: 2.1432351900806405e-07 - syst_JES_EtaIntercalibration_Stat144: 5.039719114196743e-15 + syst_JES_EtaIntercalibration_Stat139: 1.13452211e-12 + syst_JES_EtaIntercalibration_Stat14: 2.83194808e-17 + syst_JES_EtaIntercalibration_Stat140: 1.81187974e-07 + syst_JES_EtaIntercalibration_Stat141: 4.79448253e-07 + syst_JES_EtaIntercalibration_Stat142: 1.96300698e-07 + syst_JES_EtaIntercalibration_Stat143: 2.14323519e-07 + syst_JES_EtaIntercalibration_Stat144: 5.03971911e-15 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 2.435166415257898e-14 - syst_JES_EtaIntercalibration_Stat148: 1.0321610631470023e-07 - syst_JES_EtaIntercalibration_Stat149: 1.8920923517365635e-07 - syst_JES_EtaIntercalibration_Stat15: 2.825179134977297e-17 - syst_JES_EtaIntercalibration_Stat150: 1.8619185669625834e-07 - syst_JES_EtaIntercalibration_Stat151: 1.1499983130422409e-07 - syst_JES_EtaIntercalibration_Stat152: 1.950220610597683e-13 + syst_JES_EtaIntercalibration_Stat147: 2.43516642e-14 + syst_JES_EtaIntercalibration_Stat148: 1.03216106e-07 + syst_JES_EtaIntercalibration_Stat149: 1.89209235e-07 + syst_JES_EtaIntercalibration_Stat15: 2.82517913e-17 + syst_JES_EtaIntercalibration_Stat150: 1.86191857e-07 + syst_JES_EtaIntercalibration_Stat151: 1.14999831e-07 + syst_JES_EtaIntercalibration_Stat152: 1.95022061e-13 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 syst_JES_EtaIntercalibration_Stat156: 0.0 - syst_JES_EtaIntercalibration_Stat157: 3.4576865606753597e-13 - syst_JES_EtaIntercalibration_Stat158: 7.148686573070608e-07 - syst_JES_EtaIntercalibration_Stat159: 3.3347048969886376e-07 - syst_JES_EtaIntercalibration_Stat16: 2.813289860480208e-17 - syst_JES_EtaIntercalibration_Stat160: 2.0733859915606646e-07 - syst_JES_EtaIntercalibration_Stat161: 2.0704900386140474e-07 - syst_JES_EtaIntercalibration_Stat162: 4.981096147435824e-15 + syst_JES_EtaIntercalibration_Stat157: 3.45768656e-13 + syst_JES_EtaIntercalibration_Stat158: 7.14868657e-07 + syst_JES_EtaIntercalibration_Stat159: 3.33470490e-07 + syst_JES_EtaIntercalibration_Stat16: 2.81328986e-17 + syst_JES_EtaIntercalibration_Stat160: 2.07338599e-07 + syst_JES_EtaIntercalibration_Stat161: 2.07049004e-07 + syst_JES_EtaIntercalibration_Stat162: 4.98109615e-15 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 5.592573411900822e-14 - syst_JES_EtaIntercalibration_Stat166: 3.6184660949081727e-07 - syst_JES_EtaIntercalibration_Stat167: 3.6892618164071793e-07 - syst_JES_EtaIntercalibration_Stat168: 3.8349881199294474e-07 - syst_JES_EtaIntercalibration_Stat169: 6.494010163219643e-07 - syst_JES_EtaIntercalibration_Stat17: 1.9468251077074182e-21 - syst_JES_EtaIntercalibration_Stat170: 8.165509342336644e-08 + syst_JES_EtaIntercalibration_Stat165: 5.59257341e-14 + syst_JES_EtaIntercalibration_Stat166: 3.61846609e-07 + syst_JES_EtaIntercalibration_Stat167: 3.68926182e-07 + syst_JES_EtaIntercalibration_Stat168: 3.83498812e-07 + syst_JES_EtaIntercalibration_Stat169: 6.49401016e-07 + syst_JES_EtaIntercalibration_Stat17: 1.94682511e-21 + syst_JES_EtaIntercalibration_Stat170: 8.16550934e-08 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 - syst_JES_EtaIntercalibration_Stat175: 4.46678452993963e-09 - syst_JES_EtaIntercalibration_Stat176: 5.911762913886178e-07 - syst_JES_EtaIntercalibration_Stat177: 1.6572033429848012e-06 - syst_JES_EtaIntercalibration_Stat178: 8.753735816781314e-07 - syst_JES_EtaIntercalibration_Stat179: 1.195591347409306e-07 + syst_JES_EtaIntercalibration_Stat175: 4.46678453e-09 + syst_JES_EtaIntercalibration_Stat176: 5.91176291e-07 + syst_JES_EtaIntercalibration_Stat177: 1.65720334e-06 + syst_JES_EtaIntercalibration_Stat178: 8.75373582e-07 + syst_JES_EtaIntercalibration_Stat179: 1.19559135e-07 syst_JES_EtaIntercalibration_Stat18: 0.0 - syst_JES_EtaIntercalibration_Stat180: 8.272274657196555e-08 + syst_JES_EtaIntercalibration_Stat180: 8.27227466e-08 syst_JES_EtaIntercalibration_Stat181: 0.0 - syst_JES_EtaIntercalibration_Stat182: 2.9243798805214084e-09 - syst_JES_EtaIntercalibration_Stat183: 1.2739944927275e-06 - syst_JES_EtaIntercalibration_Stat184: 3.6819305737615424e-06 - syst_JES_EtaIntercalibration_Stat185: 4.738021396110405e-06 - syst_JES_EtaIntercalibration_Stat186: 1.0363068597186839e-06 - syst_JES_EtaIntercalibration_Stat187: 8.445708450916692e-08 + syst_JES_EtaIntercalibration_Stat182: 2.92437988e-09 + syst_JES_EtaIntercalibration_Stat183: 1.27399449e-06 + syst_JES_EtaIntercalibration_Stat184: 3.68193057e-06 + syst_JES_EtaIntercalibration_Stat185: 4.73802140e-06 + syst_JES_EtaIntercalibration_Stat186: 1.03630686e-06 + syst_JES_EtaIntercalibration_Stat187: 8.44570845e-08 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 - syst_JES_EtaIntercalibration_Stat192: 8.610658810200007e-08 - syst_JES_EtaIntercalibration_Stat193: 2.2641778126949302e-06 - syst_JES_EtaIntercalibration_Stat194: 9.165848283165065e-06 - syst_JES_EtaIntercalibration_Stat195: 6.739397154048721e-06 - syst_JES_EtaIntercalibration_Stat196: 1.5179782178937879e-06 - syst_JES_EtaIntercalibration_Stat197: 5.208444969470255e-08 - syst_JES_EtaIntercalibration_Stat198: 1.9085667397290565e-06 - syst_JES_EtaIntercalibration_Stat199: 8.092151629820094e-06 + syst_JES_EtaIntercalibration_Stat192: 8.61065881e-08 + syst_JES_EtaIntercalibration_Stat193: 2.26417781e-06 + syst_JES_EtaIntercalibration_Stat194: 9.16584828e-06 + syst_JES_EtaIntercalibration_Stat195: 6.73939715e-06 + syst_JES_EtaIntercalibration_Stat196: 1.51797822e-06 + syst_JES_EtaIntercalibration_Stat197: 5.20844497e-08 + syst_JES_EtaIntercalibration_Stat198: 1.90856674e-06 + syst_JES_EtaIntercalibration_Stat199: 8.09215163e-06 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 1.2656549727315103e-05 - syst_JES_EtaIntercalibration_Stat201: 2.4352646673411083e-06 - syst_JES_EtaIntercalibration_Stat202: 5.859491680171582e-08 + syst_JES_EtaIntercalibration_Stat200: 1.26565497e-05 + syst_JES_EtaIntercalibration_Stat201: 2.43526467e-06 + syst_JES_EtaIntercalibration_Stat202: 5.85949168e-08 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 - syst_JES_EtaIntercalibration_Stat207: 1.6845955093137344e-07 - syst_JES_EtaIntercalibration_Stat208: 5.830155486777347e-06 - syst_JES_EtaIntercalibration_Stat209: 1.5361175475854703e-05 + syst_JES_EtaIntercalibration_Stat207: 1.68459551e-07 + syst_JES_EtaIntercalibration_Stat208: 5.83015549e-06 + syst_JES_EtaIntercalibration_Stat209: 1.53611755e-05 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 1.0002218491414794e-05 - syst_JES_EtaIntercalibration_Stat211: 4.500880663825692e-06 - syst_JES_EtaIntercalibration_Stat212: 8.077777215917754e-06 - syst_JES_EtaIntercalibration_Stat213: 1.4027558162417293e-05 - syst_JES_EtaIntercalibration_Stat214: 2.21637694221899e-06 - syst_JES_EtaIntercalibration_Stat215: 7.641793962643851e-08 + syst_JES_EtaIntercalibration_Stat210: 1.00022185e-05 + syst_JES_EtaIntercalibration_Stat211: 4.50088066e-06 + syst_JES_EtaIntercalibration_Stat212: 8.07777722e-06 + syst_JES_EtaIntercalibration_Stat213: 1.40275582e-05 + syst_JES_EtaIntercalibration_Stat214: 2.21637694e-06 + syst_JES_EtaIntercalibration_Stat215: 7.64179396e-08 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 syst_JES_EtaIntercalibration_Stat219: 0.0 - syst_JES_EtaIntercalibration_Stat22: 2.372909606369362e-21 - syst_JES_EtaIntercalibration_Stat220: 2.668583000395528e-07 - syst_JES_EtaIntercalibration_Stat221: 5.007489390902391e-06 - syst_JES_EtaIntercalibration_Stat222: 1.5281317245250816e-05 - syst_JES_EtaIntercalibration_Stat223: 1.375701554662202e-05 - syst_JES_EtaIntercalibration_Stat224: 2.9036788303805226e-05 - syst_JES_EtaIntercalibration_Stat225: 4.565893861009036e-05 - syst_JES_EtaIntercalibration_Stat226: 8.954674030918156e-06 - syst_JES_EtaIntercalibration_Stat227: 1.41103762086629e-07 + syst_JES_EtaIntercalibration_Stat22: 2.37290961e-21 + syst_JES_EtaIntercalibration_Stat220: 2.66858300e-07 + syst_JES_EtaIntercalibration_Stat221: 5.00748939e-06 + syst_JES_EtaIntercalibration_Stat222: 1.52813172e-05 + syst_JES_EtaIntercalibration_Stat223: 1.37570155e-05 + syst_JES_EtaIntercalibration_Stat224: 2.90367883e-05 + syst_JES_EtaIntercalibration_Stat225: 4.56589386e-05 + syst_JES_EtaIntercalibration_Stat226: 8.95467403e-06 + syst_JES_EtaIntercalibration_Stat227: 1.41103762e-07 syst_JES_EtaIntercalibration_Stat228: 0.0 syst_JES_EtaIntercalibration_Stat229: 0.0 - syst_JES_EtaIntercalibration_Stat23: 2.372909606369362e-21 + syst_JES_EtaIntercalibration_Stat23: 2.37290961e-21 syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 - syst_JES_EtaIntercalibration_Stat232: 9.205865412876727e-07 - syst_JES_EtaIntercalibration_Stat233: 1.2408313050128933e-05 - syst_JES_EtaIntercalibration_Stat234: 4.076561035971373e-05 - syst_JES_EtaIntercalibration_Stat235: 4.220036255768427e-05 - syst_JES_EtaIntercalibration_Stat236: 9.456134622561167e-06 - syst_JES_EtaIntercalibration_Stat237: 1.7145598174167033e-06 - syst_JES_EtaIntercalibration_Stat238: 2.3270102599687864e-08 + syst_JES_EtaIntercalibration_Stat232: 9.20586541e-07 + syst_JES_EtaIntercalibration_Stat233: 1.24083131e-05 + syst_JES_EtaIntercalibration_Stat234: 4.07656104e-05 + syst_JES_EtaIntercalibration_Stat235: 4.22003626e-05 + syst_JES_EtaIntercalibration_Stat236: 9.45613462e-06 + syst_JES_EtaIntercalibration_Stat237: 1.71455982e-06 + syst_JES_EtaIntercalibration_Stat238: 2.32701026e-08 syst_JES_EtaIntercalibration_Stat239: 0.0 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 - syst_JES_EtaIntercalibration_Stat243: 6.640817241123264e-08 - syst_JES_EtaIntercalibration_Stat244: 2.2880988150645945e-06 - syst_JES_EtaIntercalibration_Stat245: 1.3389629597192001e-05 - syst_JES_EtaIntercalibration_Stat25: 1.7259886297423864e-21 - syst_JES_EtaIntercalibration_Stat26: 1.1580989368357094e-19 - syst_JES_EtaIntercalibration_Stat27: 2.6868986341133156e-17 - syst_JES_EtaIntercalibration_Stat28: 8.166619555751112e-08 - syst_JES_EtaIntercalibration_Stat29: 2.861364644710632e-17 + syst_JES_EtaIntercalibration_Stat243: 6.64081724e-08 + syst_JES_EtaIntercalibration_Stat244: 2.28809882e-06 + syst_JES_EtaIntercalibration_Stat245: 1.33896296e-05 + syst_JES_EtaIntercalibration_Stat25: 1.72598863e-21 + syst_JES_EtaIntercalibration_Stat26: 1.15809894e-19 + syst_JES_EtaIntercalibration_Stat27: 2.68689863e-17 + syst_JES_EtaIntercalibration_Stat28: 8.16661956e-08 + syst_JES_EtaIntercalibration_Stat29: 2.86136464e-17 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 1.1692307599443319e-20 + syst_JES_EtaIntercalibration_Stat30: 1.16923076e-20 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 3.463211382517677e-21 - syst_JES_EtaIntercalibration_Stat36: 2.7604494678720347e-17 - syst_JES_EtaIntercalibration_Stat37: 1.6203335305861086e-08 - syst_JES_EtaIntercalibration_Stat38: 1.620333530589833e-08 - syst_JES_EtaIntercalibration_Stat39: 2.311173350502943e-18 - syst_JES_EtaIntercalibration_Stat4: 2.3668474285428708e-21 - syst_JES_EtaIntercalibration_Stat40: 2.3001634724514692e-21 + syst_JES_EtaIntercalibration_Stat35: 3.46321138e-21 + syst_JES_EtaIntercalibration_Stat36: 2.76044947e-17 + syst_JES_EtaIntercalibration_Stat37: 1.62033353e-08 + syst_JES_EtaIntercalibration_Stat38: 1.62033353e-08 + syst_JES_EtaIntercalibration_Stat39: 2.31117335e-18 + syst_JES_EtaIntercalibration_Stat4: 2.36684743e-21 + syst_JES_EtaIntercalibration_Stat40: 2.30016347e-21 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 - syst_JES_EtaIntercalibration_Stat44: 2.372909606369362e-21 + syst_JES_EtaIntercalibration_Stat44: 2.37290961e-21 syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 - syst_JES_EtaIntercalibration_Stat47: 1.7268546551461707e-21 - syst_JES_EtaIntercalibration_Stat48: 1.8064971713235533e-18 - syst_JES_EtaIntercalibration_Stat49: 6.974096930786092e-17 - syst_JES_EtaIntercalibration_Stat5: 2.6474211239430724e-19 - syst_JES_EtaIntercalibration_Stat50: 8.165753531658203e-08 - syst_JES_EtaIntercalibration_Stat51: 8.351696561065945e-14 - syst_JES_EtaIntercalibration_Stat52: 2.108724369731616e-19 + syst_JES_EtaIntercalibration_Stat47: 1.72685466e-21 + syst_JES_EtaIntercalibration_Stat48: 1.80649717e-18 + syst_JES_EtaIntercalibration_Stat49: 6.97409693e-17 + syst_JES_EtaIntercalibration_Stat5: 2.64742112e-19 + syst_JES_EtaIntercalibration_Stat50: 8.16575353e-08 + syst_JES_EtaIntercalibration_Stat51: 8.35169656e-14 + syst_JES_EtaIntercalibration_Stat52: 2.10872437e-19 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 syst_JES_EtaIntercalibration_Stat56: 0.0 - syst_JES_EtaIntercalibration_Stat57: 2.831990549747077e-17 - syst_JES_EtaIntercalibration_Stat58: 2.5307306667245333e-17 - syst_JES_EtaIntercalibration_Stat59: 1.2418808683910617e-07 - syst_JES_EtaIntercalibration_Stat6: 1.6457524327796086e-18 - syst_JES_EtaIntercalibration_Stat60: 1.6203335438954186e-08 - syst_JES_EtaIntercalibration_Stat61: 4.5602224784625366e-17 - syst_JES_EtaIntercalibration_Stat62: 1.9857962508777176e-21 + syst_JES_EtaIntercalibration_Stat57: 2.83199055e-17 + syst_JES_EtaIntercalibration_Stat58: 2.53073067e-17 + syst_JES_EtaIntercalibration_Stat59: 1.24188087e-07 + syst_JES_EtaIntercalibration_Stat6: 1.64575243e-18 + syst_JES_EtaIntercalibration_Stat60: 1.62033354e-08 + syst_JES_EtaIntercalibration_Stat61: 4.56022248e-17 + syst_JES_EtaIntercalibration_Stat62: 1.98579625e-21 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 - syst_JES_EtaIntercalibration_Stat69: 2.615338362430376e-21 - syst_JES_EtaIntercalibration_Stat7: 2.123839961502514e-19 - syst_JES_EtaIntercalibration_Stat70: 3.3257301453966467e-17 - syst_JES_EtaIntercalibration_Stat71: 1.8862033287289026e-07 - syst_JES_EtaIntercalibration_Stat72: 2.897719061459696e-08 - syst_JES_EtaIntercalibration_Stat73: 8.166619538496134e-08 - syst_JES_EtaIntercalibration_Stat74: 3.0550958528334264e-18 + syst_JES_EtaIntercalibration_Stat69: 2.61533836e-21 + syst_JES_EtaIntercalibration_Stat7: 2.12383996e-19 + syst_JES_EtaIntercalibration_Stat70: 3.32573015e-17 + syst_JES_EtaIntercalibration_Stat71: 1.88620333e-07 + syst_JES_EtaIntercalibration_Stat72: 2.89771906e-08 + syst_JES_EtaIntercalibration_Stat73: 8.16661954e-08 + syst_JES_EtaIntercalibration_Stat74: 3.05509585e-18 syst_JES_EtaIntercalibration_Stat75: 0.0 syst_JES_EtaIntercalibration_Stat76: 0.0 syst_JES_EtaIntercalibration_Stat77: 0.0 syst_JES_EtaIntercalibration_Stat78: 0.0 - syst_JES_EtaIntercalibration_Stat79: 2.789289753983082e-17 + syst_JES_EtaIntercalibration_Stat79: 2.78928975e-17 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 4.672646680415715e-13 - syst_JES_EtaIntercalibration_Stat81: 7.617734440107505e-08 - syst_JES_EtaIntercalibration_Stat82: 7.951690323446959e-08 - syst_JES_EtaIntercalibration_Stat83: 5.138115092862362e-15 - syst_JES_EtaIntercalibration_Stat84: 1.4282376377900142e-21 - syst_JES_EtaIntercalibration_Stat85: 2.372909606369362e-21 - syst_JES_EtaIntercalibration_Stat86: 2.372909606369362e-21 - syst_JES_EtaIntercalibration_Stat87: 2.372909606369362e-21 - syst_JES_EtaIntercalibration_Stat88: 2.372909606369362e-21 - syst_JES_EtaIntercalibration_Stat89: 2.372909606369362e-21 + syst_JES_EtaIntercalibration_Stat80: 4.67264668e-13 + syst_JES_EtaIntercalibration_Stat81: 7.61773444e-08 + syst_JES_EtaIntercalibration_Stat82: 7.95169032e-08 + syst_JES_EtaIntercalibration_Stat83: 5.13811509e-15 + syst_JES_EtaIntercalibration_Stat84: 1.42823764e-21 + syst_JES_EtaIntercalibration_Stat85: 2.37290961e-21 + syst_JES_EtaIntercalibration_Stat86: 2.37290961e-21 + syst_JES_EtaIntercalibration_Stat87: 2.37290961e-21 + syst_JES_EtaIntercalibration_Stat88: 2.37290961e-21 + syst_JES_EtaIntercalibration_Stat89: 2.37290961e-21 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 8.46697816269181e-15 - syst_JES_EtaIntercalibration_Stat92: 1.8870691146109672e-07 - syst_JES_EtaIntercalibration_Stat93: 2.8985793218090942e-08 - syst_JES_EtaIntercalibration_Stat94: 8.166619421143928e-08 - syst_JES_EtaIntercalibration_Stat95: 2.5723024861007306e-17 - syst_JES_EtaIntercalibration_Stat96: 6.279474585504746e-19 - syst_JES_EtaIntercalibration_Stat97: 2.372909606369362e-21 - syst_JES_EtaIntercalibration_Stat98: 2.372909606369362e-21 - syst_JES_EtaIntercalibration_Stat99: 2.372909606369362e-21 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.00035488837681727474 - syst_JES_Flavour_Comp: 0.000934512507941975 - syst_JES_Flavour_Response: 4.928393145843785e-05 - syst_JES_Gjet_Generator: 0.0012242367448741277 - syst_JES_Gjet_OOC: 0.0010073168369485344 - syst_JES_Gjet_Purity: 0.00017879269420197235 - syst_JES_Gjet_Stat1: 2.947336357098558e-06 - syst_JES_Gjet_Stat10: 1.8488845285739183e-05 - syst_JES_Gjet_Stat11: 1.996282232050368e-05 - syst_JES_Gjet_Stat12: 6.0797452249251375e-05 - syst_JES_Gjet_Stat13: 0.00020469460178519606 - syst_JES_Gjet_Stat14: 0.0005525751442111743 - syst_JES_Gjet_Stat15: 0.0005664309843220089 - syst_JES_Gjet_Stat2: 1.1506013514456272e-07 - syst_JES_Gjet_Stat3: 3.474882111309677e-06 - syst_JES_Gjet_Stat4: 3.5540465317719186e-06 - syst_JES_Gjet_Stat5: 2.8604715800528686e-12 - syst_JES_Gjet_Stat6: 1.0816921327253887e-05 - syst_JES_Gjet_Stat7: 1.1070207529671701e-05 - syst_JES_Gjet_Stat8: 6.988502897616914e-06 - syst_JES_Gjet_Stat9: 1.2727630494322184e-05 - syst_JES_Gjet_Veto: 0.0010115501865948127 - syst_JES_Gjet_dPhi: 9.977355398601374e-05 - syst_JES_LArESZee: 0.0018845738908304978 - syst_JES_LArEsmear: 0.00015488837916383526 - syst_JES_LAr_JVT: 0.0001896116293901827 - syst_JES_MJB_Alpha: 1.21594352150912e-05 - syst_JES_MJB_Asym: 0.00019211501763266714 - syst_JES_MJB_Beta: 1.3446799870229348e-05 - syst_JES_MJB_Fragmentation: 0.00011962120714990298 - syst_JES_MJB_Stat1: 2.322129078484374e-08 - syst_JES_MJB_Stat10: 1.8160198236803474e-05 - syst_JES_MJB_Stat11: 1.8145607595228108e-05 - syst_JES_MJB_Stat12: 2.3094481483679166e-05 - syst_JES_MJB_Stat13: 1.0008867405955581e-05 - syst_JES_MJB_Stat14: 8.69807914139668e-06 - syst_JES_MJB_Stat15: 8.119391029350662e-06 - syst_JES_MJB_Stat16: 8.126523734045204e-06 - syst_JES_MJB_Stat2: 1.835190585874666e-06 - syst_JES_MJB_Stat3: 1.0231224120309357e-06 - syst_JES_MJB_Stat4: 8.386590010248502e-07 + syst_JES_EtaIntercalibration_Stat91: 8.46697816e-15 + syst_JES_EtaIntercalibration_Stat92: 1.88706911e-07 + syst_JES_EtaIntercalibration_Stat93: 2.89857932e-08 + syst_JES_EtaIntercalibration_Stat94: 8.16661942e-08 + syst_JES_EtaIntercalibration_Stat95: 2.57230249e-17 + syst_JES_EtaIntercalibration_Stat96: 6.27947459e-19 + syst_JES_EtaIntercalibration_Stat97: 2.37290961e-21 + syst_JES_EtaIntercalibration_Stat98: 2.37290961e-21 + syst_JES_EtaIntercalibration_Stat99: 2.37290961e-21 + syst_JES_EtaIntercalibration_TotalStat_MJB: 3.54888377e-04 + syst_JES_Flavour_Comp: 9.34512508e-04 + syst_JES_Flavour_Response: 4.92839315e-05 + syst_JES_Gjet_Generator: 1.22423674e-03 + syst_JES_Gjet_OOC: 1.00731684e-03 + syst_JES_Gjet_Purity: 1.78792694e-04 + syst_JES_Gjet_Stat1: 2.94733636e-06 + syst_JES_Gjet_Stat10: 1.84888453e-05 + syst_JES_Gjet_Stat11: 1.99628223e-05 + syst_JES_Gjet_Stat12: 6.07974522e-05 + syst_JES_Gjet_Stat13: 2.04694602e-04 + syst_JES_Gjet_Stat14: 5.52575144e-04 + syst_JES_Gjet_Stat15: 5.66430984e-04 + syst_JES_Gjet_Stat2: 1.15060135e-07 + syst_JES_Gjet_Stat3: 3.47488211e-06 + syst_JES_Gjet_Stat4: 3.55404653e-06 + syst_JES_Gjet_Stat5: 2.86047158e-12 + syst_JES_Gjet_Stat6: 1.08169213e-05 + syst_JES_Gjet_Stat7: 1.10702075e-05 + syst_JES_Gjet_Stat8: 6.98850290e-06 + syst_JES_Gjet_Stat9: 1.27276305e-05 + syst_JES_Gjet_Veto: 1.01155019e-03 + syst_JES_Gjet_dPhi: 9.97735540e-05 + syst_JES_LArESZee: 1.88457389e-03 + syst_JES_LArEsmear: 1.54888379e-04 + syst_JES_LAr_JVT: 1.89611629e-04 + syst_JES_MJB_Alpha: 1.21594352e-05 + syst_JES_MJB_Asym: 1.92115018e-04 + syst_JES_MJB_Beta: 1.34467999e-05 + syst_JES_MJB_Fragmentation: 1.19621207e-04 + syst_JES_MJB_Stat1: 2.32212908e-08 + syst_JES_MJB_Stat10: 1.81601982e-05 + syst_JES_MJB_Stat11: 1.81456076e-05 + syst_JES_MJB_Stat12: 2.30944815e-05 + syst_JES_MJB_Stat13: 1.00088674e-05 + syst_JES_MJB_Stat14: 8.69807914e-06 + syst_JES_MJB_Stat15: 8.11939103e-06 + syst_JES_MJB_Stat16: 8.12652373e-06 + syst_JES_MJB_Stat2: 1.83519059e-06 + syst_JES_MJB_Stat3: 1.02312241e-06 + syst_JES_MJB_Stat4: 8.38659001e-07 syst_JES_MJB_Stat5: 0.0 - syst_JES_MJB_Stat6: 2.391096139848835e-06 - syst_JES_MJB_Stat7: 2.912443432927067e-06 - syst_JES_MJB_Stat8: 4.304194106624374e-06 - syst_JES_MJB_Stat9: 1.0044497847080261e-05 - syst_JES_MJB_Threshold: 0.00013022271489644195 - syst_JES_Pileup_MuOffset: 0.0002375410438219046 - syst_JES_Pileup_NPVOffset: 0.000246322836943715 - syst_JES_Pileup_Pt_term: 0.00018807691910492365 - syst_JES_Pileup_Rho_topology: 0.00033426386283892553 - syst_JES_PunchThrough_MC15: 0.0003762243249711533 + syst_JES_MJB_Stat6: 2.39109614e-06 + syst_JES_MJB_Stat7: 2.91244343e-06 + syst_JES_MJB_Stat8: 4.30419411e-06 + syst_JES_MJB_Stat9: 1.00444978e-05 + syst_JES_MJB_Threshold: 1.30222715e-04 + syst_JES_Pileup_MuOffset: 2.37541044e-04 + syst_JES_Pileup_NPVOffset: 2.46322837e-04 + syst_JES_Pileup_Pt_term: 1.88076919e-04 + syst_JES_Pileup_Rho_topology: 3.34263863e-04 + syst_JES_PunchThrough_MC15: 3.76224325e-04 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.00047355558279889385 - syst_JES_Zjet_MuScale: 3.4177376654740487e-05 - syst_JES_Zjet_MuSmearID: 6.947828635624226e-06 - syst_JES_Zjet_MuSmearMS: 0.00012974663617990254 - syst_JES_Zjet_OOC: 0.00027178470799513356 - syst_JES_Zjet_Stat1: 1.778430768964595e-05 - syst_JES_Zjet_Stat10: 2.2633716000692416e-05 - syst_JES_Zjet_Stat11: 3.058167261612746e-05 - syst_JES_Zjet_Stat12: 8.568493624902804e-05 - syst_JES_Zjet_Stat13: 0.0001389496738931042 - syst_JES_Zjet_Stat2: 1.192690186091993e-07 - syst_JES_Zjet_Stat3: 9.608653638777911e-06 - syst_JES_Zjet_Stat4: 9.920238202785255e-06 - syst_JES_Zjet_Stat5: 1.1534356538186255e-05 - syst_JES_Zjet_Stat6: 1.0831062413263068e-05 - syst_JES_Zjet_Stat7: 9.20752804774441e-06 - syst_JES_Zjet_Stat8: 1.029901126322328e-05 - syst_JES_Zjet_Stat9: 1.4323732640272227e-05 - syst_JES_Zjet_Veto: 5.612503608016657e-05 - syst_JES_Zjet_dPhi: 5.042718983841952e-05 - syst_PRW: 6.801e-05 - syst_Unfolding_bias: 1.784e-16 - syst_cleaning: 0.00025772916016624897 - syst_lumi: 0.0008612 -- stat: 0.00033448 + syst_JES_Zjet_MC: 4.73555583e-04 + syst_JES_Zjet_MuScale: 3.41773767e-05 + syst_JES_Zjet_MuSmearID: 6.94782864e-06 + syst_JES_Zjet_MuSmearMS: 1.29746636e-04 + syst_JES_Zjet_OOC: 2.71784708e-04 + syst_JES_Zjet_Stat1: 1.77843077e-05 + syst_JES_Zjet_Stat10: 2.26337160e-05 + syst_JES_Zjet_Stat11: 3.05816726e-05 + syst_JES_Zjet_Stat12: 8.56849362e-05 + syst_JES_Zjet_Stat13: 1.38949674e-04 + syst_JES_Zjet_Stat2: 1.19269019e-07 + syst_JES_Zjet_Stat3: 9.60865364e-06 + syst_JES_Zjet_Stat4: 9.92023820e-06 + syst_JES_Zjet_Stat5: 1.15343565e-05 + syst_JES_Zjet_Stat6: 1.08310624e-05 + syst_JES_Zjet_Stat7: 9.20752805e-06 + syst_JES_Zjet_Stat8: 1.02990113e-05 + syst_JES_Zjet_Stat9: 1.43237326e-05 + syst_JES_Zjet_Veto: 5.61250361e-05 + syst_JES_Zjet_dPhi: 5.04271898e-05 + syst_PRW: 6.80100000e-05 + syst_Unfolding_bias: 1.78400000e-16 + syst_cleaning: 2.57729160e-04 + syst_lumi: 8.61200000e-04 +- stat: 3.34480000e-04 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.00029345069006563945 - syst_JER_NP1: 5.923885295986073e-05 - syst_JER_NP2: 0.00024182475059430952 - syst_JER_NP3: 2.5941755930352905e-05 - syst_JER_NP4: 1.178203063991942e-13 - syst_JER_NP5: 2.3428189750810882e-05 - syst_JER_NP6: 2.335093306486916e-13 - syst_JER_NP7: 2.790103044692077e-13 - syst_JER_NP8: 6.250393907586945e-06 - syst_JES_EtaIntercalibration_Modelling: 0.002136365839457278 - syst_JES_EtaIntercalibration_NonClosure: 1.957414243332259e-07 - syst_JES_EtaIntercalibration_Stat0: 6.065641928106209e-22 + syst_JER_NP0: 2.93450690e-04 + syst_JER_NP1: 5.92388530e-05 + syst_JER_NP2: 2.41824751e-04 + syst_JER_NP3: 2.59417559e-05 + syst_JER_NP4: 1.17820306e-13 + syst_JER_NP5: 2.34281898e-05 + syst_JER_NP6: 2.33509331e-13 + syst_JER_NP7: 2.79010304e-13 + syst_JER_NP8: 6.25039391e-06 + syst_JES_EtaIntercalibration_Modelling: 2.13636584e-03 + syst_JES_EtaIntercalibration_NonClosure: 1.95741424e-07 + syst_JES_EtaIntercalibration_Stat0: 6.06564193e-22 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 4.99315019572564e-18 - syst_JES_EtaIntercalibration_Stat101: 9.77893464289439e-14 - syst_JES_EtaIntercalibration_Stat102: 3.363037930205367e-08 - syst_JES_EtaIntercalibration_Stat103: 2.124443999614958e-08 - syst_JES_EtaIntercalibration_Stat104: 1.2968729855598813e-14 - syst_JES_EtaIntercalibration_Stat105: 1.074111432766638e-21 - syst_JES_EtaIntercalibration_Stat106: 6.065641928106209e-22 - syst_JES_EtaIntercalibration_Stat107: 6.065641928106209e-22 - syst_JES_EtaIntercalibration_Stat108: 6.065641928106209e-22 - syst_JES_EtaIntercalibration_Stat109: 6.065641928106209e-22 + syst_JES_EtaIntercalibration_Stat100: 4.99315020e-18 + syst_JES_EtaIntercalibration_Stat101: 9.77893464e-14 + syst_JES_EtaIntercalibration_Stat102: 3.36303793e-08 + syst_JES_EtaIntercalibration_Stat103: 2.12444400e-08 + syst_JES_EtaIntercalibration_Stat104: 1.29687299e-14 + syst_JES_EtaIntercalibration_Stat105: 1.07411143e-21 + syst_JES_EtaIntercalibration_Stat106: 6.06564193e-22 + syst_JES_EtaIntercalibration_Stat107: 6.06564193e-22 + syst_JES_EtaIntercalibration_Stat108: 6.06564193e-22 + syst_JES_EtaIntercalibration_Stat109: 6.06564193e-22 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 3.070585688024354e-20 - syst_JES_EtaIntercalibration_Stat111: 6.28266287094891e-14 - syst_JES_EtaIntercalibration_Stat112: 9.880034199778866e-08 - syst_JES_EtaIntercalibration_Stat113: 1.0040933960203541e-07 - syst_JES_EtaIntercalibration_Stat114: 1.4506362908958908e-08 - syst_JES_EtaIntercalibration_Stat115: 1.1822279796641382e-14 - syst_JES_EtaIntercalibration_Stat116: 1.0541982132464465e-19 - syst_JES_EtaIntercalibration_Stat117: 6.065641928106209e-22 - syst_JES_EtaIntercalibration_Stat118: 6.065641928106209e-22 - syst_JES_EtaIntercalibration_Stat119: 6.065641928106209e-22 + syst_JES_EtaIntercalibration_Stat110: 3.07058569e-20 + syst_JES_EtaIntercalibration_Stat111: 6.28266287e-14 + syst_JES_EtaIntercalibration_Stat112: 9.88003420e-08 + syst_JES_EtaIntercalibration_Stat113: 1.00409340e-07 + syst_JES_EtaIntercalibration_Stat114: 1.45063629e-08 + syst_JES_EtaIntercalibration_Stat115: 1.18222798e-14 + syst_JES_EtaIntercalibration_Stat116: 1.05419821e-19 + syst_JES_EtaIntercalibration_Stat117: 6.06564193e-22 + syst_JES_EtaIntercalibration_Stat118: 6.06564193e-22 + syst_JES_EtaIntercalibration_Stat119: 6.06564193e-22 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 3.3675397826157896e-17 - syst_JES_EtaIntercalibration_Stat121: 2.7785842492175754e-08 - syst_JES_EtaIntercalibration_Stat122: 4.828764438238834e-08 - syst_JES_EtaIntercalibration_Stat123: 3.3107982704326764e-08 - syst_JES_EtaIntercalibration_Stat124: 2.929342246989928e-08 - syst_JES_EtaIntercalibration_Stat125: 4.2911558757518933e-19 - syst_JES_EtaIntercalibration_Stat126: 6.065641928106209e-22 - syst_JES_EtaIntercalibration_Stat127: 6.065641928106209e-22 - syst_JES_EtaIntercalibration_Stat128: 6.065641928106209e-22 - syst_JES_EtaIntercalibration_Stat129: 2.045343364816773e-14 + syst_JES_EtaIntercalibration_Stat120: 3.36753978e-17 + syst_JES_EtaIntercalibration_Stat121: 2.77858425e-08 + syst_JES_EtaIntercalibration_Stat122: 4.82876444e-08 + syst_JES_EtaIntercalibration_Stat123: 3.31079827e-08 + syst_JES_EtaIntercalibration_Stat124: 2.92934225e-08 + syst_JES_EtaIntercalibration_Stat125: 4.29115588e-19 + syst_JES_EtaIntercalibration_Stat126: 6.06564193e-22 + syst_JES_EtaIntercalibration_Stat127: 6.06564193e-22 + syst_JES_EtaIntercalibration_Stat128: 6.06564193e-22 + syst_JES_EtaIntercalibration_Stat129: 2.04534336e-14 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 7.302286929982141e-08 - syst_JES_EtaIntercalibration_Stat131: 1.290089464920941e-07 - syst_JES_EtaIntercalibration_Stat132: 2.1580154123638693e-07 - syst_JES_EtaIntercalibration_Stat133: 1.04052021003919e-07 - syst_JES_EtaIntercalibration_Stat134: 4.7189723587972614e-08 - syst_JES_EtaIntercalibration_Stat135: 1.0562045824555015e-19 + syst_JES_EtaIntercalibration_Stat130: 7.30228693e-08 + syst_JES_EtaIntercalibration_Stat131: 1.29008946e-07 + syst_JES_EtaIntercalibration_Stat132: 2.15801541e-07 + syst_JES_EtaIntercalibration_Stat133: 1.04052021e-07 + syst_JES_EtaIntercalibration_Stat134: 4.71897236e-08 + syst_JES_EtaIntercalibration_Stat135: 1.05620458e-19 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 syst_JES_EtaIntercalibration_Stat138: 0.0 - syst_JES_EtaIntercalibration_Stat139: 1.6697512292254798e-13 - syst_JES_EtaIntercalibration_Stat14: 5.028265153846152e-18 - syst_JES_EtaIntercalibration_Stat140: 5.339714107515495e-08 - syst_JES_EtaIntercalibration_Stat141: 2.3780014192594585e-07 - syst_JES_EtaIntercalibration_Stat142: 8.697709238644392e-08 - syst_JES_EtaIntercalibration_Stat143: 4.907884068516696e-08 - syst_JES_EtaIntercalibration_Stat144: 8.126235097971261e-16 + syst_JES_EtaIntercalibration_Stat139: 1.66975123e-13 + syst_JES_EtaIntercalibration_Stat14: 5.02826515e-18 + syst_JES_EtaIntercalibration_Stat140: 5.33971411e-08 + syst_JES_EtaIntercalibration_Stat141: 2.37800142e-07 + syst_JES_EtaIntercalibration_Stat142: 8.69770924e-08 + syst_JES_EtaIntercalibration_Stat143: 4.90788407e-08 + syst_JES_EtaIntercalibration_Stat144: 8.12623510e-16 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 3.414278294164083e-15 - syst_JES_EtaIntercalibration_Stat148: 7.893331326089052e-08 - syst_JES_EtaIntercalibration_Stat149: 1.3948885932216954e-07 - syst_JES_EtaIntercalibration_Stat15: 5.015674677371629e-18 - syst_JES_EtaIntercalibration_Stat150: 8.902210736665358e-08 - syst_JES_EtaIntercalibration_Stat151: 1.0511890695778758e-07 - syst_JES_EtaIntercalibration_Stat152: 2.7880254876883746e-14 + syst_JES_EtaIntercalibration_Stat147: 3.41427829e-15 + syst_JES_EtaIntercalibration_Stat148: 7.89333133e-08 + syst_JES_EtaIntercalibration_Stat149: 1.39488859e-07 + syst_JES_EtaIntercalibration_Stat15: 5.01567468e-18 + syst_JES_EtaIntercalibration_Stat150: 8.90221074e-08 + syst_JES_EtaIntercalibration_Stat151: 1.05118907e-07 + syst_JES_EtaIntercalibration_Stat152: 2.78802549e-14 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 syst_JES_EtaIntercalibration_Stat156: 0.0 - syst_JES_EtaIntercalibration_Stat157: 4.9980114165535876e-14 - syst_JES_EtaIntercalibration_Stat158: 3.729172927071095e-07 - syst_JES_EtaIntercalibration_Stat159: 1.6782875222976546e-07 - syst_JES_EtaIntercalibration_Stat16: 4.994643236800824e-18 - syst_JES_EtaIntercalibration_Stat160: 1.0498744591616657e-07 - syst_JES_EtaIntercalibration_Stat161: 4.716382379536248e-08 - syst_JES_EtaIntercalibration_Stat162: 8.063843116498485e-16 + syst_JES_EtaIntercalibration_Stat157: 4.99801142e-14 + syst_JES_EtaIntercalibration_Stat158: 3.72917293e-07 + syst_JES_EtaIntercalibration_Stat159: 1.67828752e-07 + syst_JES_EtaIntercalibration_Stat16: 4.99464324e-18 + syst_JES_EtaIntercalibration_Stat160: 1.04987446e-07 + syst_JES_EtaIntercalibration_Stat161: 4.71638238e-08 + syst_JES_EtaIntercalibration_Stat162: 8.06384312e-16 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 7.79779206442439e-15 - syst_JES_EtaIntercalibration_Stat166: 2.4785339921009756e-07 - syst_JES_EtaIntercalibration_Stat167: 2.854441873203937e-07 - syst_JES_EtaIntercalibration_Stat168: 5.9438345962434046e-08 - syst_JES_EtaIntercalibration_Stat169: 6.927182188126714e-07 - syst_JES_EtaIntercalibration_Stat17: 4.971851843126462e-22 - syst_JES_EtaIntercalibration_Stat170: 4.718070460858463e-08 + syst_JES_EtaIntercalibration_Stat165: 7.79779206e-15 + syst_JES_EtaIntercalibration_Stat166: 2.47853399e-07 + syst_JES_EtaIntercalibration_Stat167: 2.85444187e-07 + syst_JES_EtaIntercalibration_Stat168: 5.94383460e-08 + syst_JES_EtaIntercalibration_Stat169: 6.92718219e-07 + syst_JES_EtaIntercalibration_Stat17: 4.97185184e-22 + syst_JES_EtaIntercalibration_Stat170: 4.71807046e-08 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 - syst_JES_EtaIntercalibration_Stat175: 7.108953912657474e-10 - syst_JES_EtaIntercalibration_Stat176: 2.954844163403546e-07 - syst_JES_EtaIntercalibration_Stat177: 7.026074348453765e-07 - syst_JES_EtaIntercalibration_Stat178: 4.1216873668438265e-07 - syst_JES_EtaIntercalibration_Stat179: 2.188109729309753e-07 + syst_JES_EtaIntercalibration_Stat175: 7.10895391e-10 + syst_JES_EtaIntercalibration_Stat176: 2.95484416e-07 + syst_JES_EtaIntercalibration_Stat177: 7.02607435e-07 + syst_JES_EtaIntercalibration_Stat178: 4.12168737e-07 + syst_JES_EtaIntercalibration_Stat179: 2.18810973e-07 syst_JES_EtaIntercalibration_Stat18: 0.0 - syst_JES_EtaIntercalibration_Stat180: 2.1979724748522768e-08 + syst_JES_EtaIntercalibration_Stat180: 2.19797247e-08 syst_JES_EtaIntercalibration_Stat181: 0.0 - syst_JES_EtaIntercalibration_Stat182: 5.697314474482113e-10 - syst_JES_EtaIntercalibration_Stat183: 8.04263974078163e-07 - syst_JES_EtaIntercalibration_Stat184: 1.9567454484423875e-06 - syst_JES_EtaIntercalibration_Stat185: 2.683117776021023e-06 - syst_JES_EtaIntercalibration_Stat186: 6.120387079262225e-07 - syst_JES_EtaIntercalibration_Stat187: 7.649066783120573e-09 + syst_JES_EtaIntercalibration_Stat182: 5.69731447e-10 + syst_JES_EtaIntercalibration_Stat183: 8.04263974e-07 + syst_JES_EtaIntercalibration_Stat184: 1.95674545e-06 + syst_JES_EtaIntercalibration_Stat185: 2.68311778e-06 + syst_JES_EtaIntercalibration_Stat186: 6.12038708e-07 + syst_JES_EtaIntercalibration_Stat187: 7.64906678e-09 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 - syst_JES_EtaIntercalibration_Stat192: 1.1216812782604513e-09 - syst_JES_EtaIntercalibration_Stat193: 8.311656453439352e-07 - syst_JES_EtaIntercalibration_Stat194: 5.292668325145644e-06 - syst_JES_EtaIntercalibration_Stat195: 3.4675987008303023e-06 - syst_JES_EtaIntercalibration_Stat196: 1.1958436383992684e-06 - syst_JES_EtaIntercalibration_Stat197: 1.872303415581994e-08 - syst_JES_EtaIntercalibration_Stat198: 1.042447201300862e-06 - syst_JES_EtaIntercalibration_Stat199: 4.375584846623363e-06 + syst_JES_EtaIntercalibration_Stat192: 1.12168128e-09 + syst_JES_EtaIntercalibration_Stat193: 8.31165645e-07 + syst_JES_EtaIntercalibration_Stat194: 5.29266833e-06 + syst_JES_EtaIntercalibration_Stat195: 3.46759870e-06 + syst_JES_EtaIntercalibration_Stat196: 1.19584364e-06 + syst_JES_EtaIntercalibration_Stat197: 1.87230342e-08 + syst_JES_EtaIntercalibration_Stat198: 1.04244720e-06 + syst_JES_EtaIntercalibration_Stat199: 4.37558485e-06 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 8.684723297261691e-06 - syst_JES_EtaIntercalibration_Stat201: 1.7894945515424183e-06 - syst_JES_EtaIntercalibration_Stat202: 3.746790993637089e-08 + syst_JES_EtaIntercalibration_Stat200: 8.68472330e-06 + syst_JES_EtaIntercalibration_Stat201: 1.78949455e-06 + syst_JES_EtaIntercalibration_Stat202: 3.74679099e-08 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 - syst_JES_EtaIntercalibration_Stat207: 9.057969198446194e-08 - syst_JES_EtaIntercalibration_Stat208: 3.417875656017931e-06 - syst_JES_EtaIntercalibration_Stat209: 8.907697850735621e-06 + syst_JES_EtaIntercalibration_Stat207: 9.05796920e-08 + syst_JES_EtaIntercalibration_Stat208: 3.41787566e-06 + syst_JES_EtaIntercalibration_Stat209: 8.90769785e-06 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 5.522052335862093e-06 - syst_JES_EtaIntercalibration_Stat211: 2.3971806606928897e-06 - syst_JES_EtaIntercalibration_Stat212: 4.504422937513749e-06 - syst_JES_EtaIntercalibration_Stat213: 9.761157052317108e-06 - syst_JES_EtaIntercalibration_Stat214: 1.7481420851864416e-06 - syst_JES_EtaIntercalibration_Stat215: 4.446976763959983e-08 + syst_JES_EtaIntercalibration_Stat210: 5.52205234e-06 + syst_JES_EtaIntercalibration_Stat211: 2.39718066e-06 + syst_JES_EtaIntercalibration_Stat212: 4.50442294e-06 + syst_JES_EtaIntercalibration_Stat213: 9.76115705e-06 + syst_JES_EtaIntercalibration_Stat214: 1.74814209e-06 + syst_JES_EtaIntercalibration_Stat215: 4.44697676e-08 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 syst_JES_EtaIntercalibration_Stat219: 0.0 - syst_JES_EtaIntercalibration_Stat22: 6.065641928106209e-22 - syst_JES_EtaIntercalibration_Stat220: 9.845503440657566e-08 - syst_JES_EtaIntercalibration_Stat221: 2.9291596064400455e-06 - syst_JES_EtaIntercalibration_Stat222: 8.89591213704362e-06 - syst_JES_EtaIntercalibration_Stat223: 7.628090390130416e-06 - syst_JES_EtaIntercalibration_Stat224: 1.5960265505310367e-05 - syst_JES_EtaIntercalibration_Stat225: 3.0153412327628862e-05 - syst_JES_EtaIntercalibration_Stat226: 5.781403008786016e-06 - syst_JES_EtaIntercalibration_Stat227: 9.3472569238253e-08 + syst_JES_EtaIntercalibration_Stat22: 6.06564193e-22 + syst_JES_EtaIntercalibration_Stat220: 9.84550344e-08 + syst_JES_EtaIntercalibration_Stat221: 2.92915961e-06 + syst_JES_EtaIntercalibration_Stat222: 8.89591214e-06 + syst_JES_EtaIntercalibration_Stat223: 7.62809039e-06 + syst_JES_EtaIntercalibration_Stat224: 1.59602655e-05 + syst_JES_EtaIntercalibration_Stat225: 3.01534123e-05 + syst_JES_EtaIntercalibration_Stat226: 5.78140301e-06 + syst_JES_EtaIntercalibration_Stat227: 9.34725692e-08 syst_JES_EtaIntercalibration_Stat228: 0.0 syst_JES_EtaIntercalibration_Stat229: 0.0 - syst_JES_EtaIntercalibration_Stat23: 6.065641928106209e-22 + syst_JES_EtaIntercalibration_Stat23: 6.06564193e-22 syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 - syst_JES_EtaIntercalibration_Stat232: 4.5768730318854157e-07 - syst_JES_EtaIntercalibration_Stat233: 7.964520512874581e-06 - syst_JES_EtaIntercalibration_Stat234: 2.4722623242690087e-05 - syst_JES_EtaIntercalibration_Stat235: 2.5427451209273807e-05 - syst_JES_EtaIntercalibration_Stat236: 5.7214203656085255e-06 - syst_JES_EtaIntercalibration_Stat237: 1.2244011546466296e-06 - syst_JES_EtaIntercalibration_Stat238: 3.141940164929943e-08 + syst_JES_EtaIntercalibration_Stat232: 4.57687303e-07 + syst_JES_EtaIntercalibration_Stat233: 7.96452051e-06 + syst_JES_EtaIntercalibration_Stat234: 2.47226232e-05 + syst_JES_EtaIntercalibration_Stat235: 2.54274512e-05 + syst_JES_EtaIntercalibration_Stat236: 5.72142037e-06 + syst_JES_EtaIntercalibration_Stat237: 1.22440115e-06 + syst_JES_EtaIntercalibration_Stat238: 3.14194016e-08 syst_JES_EtaIntercalibration_Stat239: 0.0 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 - syst_JES_EtaIntercalibration_Stat243: 3.15621917033656e-08 - syst_JES_EtaIntercalibration_Stat244: 8.419008062117533e-07 - syst_JES_EtaIntercalibration_Stat245: 7.961253230490786e-06 - syst_JES_EtaIntercalibration_Stat25: 4.349179577805451e-22 - syst_JES_EtaIntercalibration_Stat26: 2.6391045829978013e-20 - syst_JES_EtaIntercalibration_Stat27: 4.9263897450364196e-18 - syst_JES_EtaIntercalibration_Stat28: 4.71897242489018e-08 - syst_JES_EtaIntercalibration_Stat29: 5.197511549530217e-18 + syst_JES_EtaIntercalibration_Stat243: 3.15621917e-08 + syst_JES_EtaIntercalibration_Stat244: 8.41900806e-07 + syst_JES_EtaIntercalibration_Stat245: 7.96125323e-06 + syst_JES_EtaIntercalibration_Stat25: 4.34917958e-22 + syst_JES_EtaIntercalibration_Stat26: 2.63910458e-20 + syst_JES_EtaIntercalibration_Stat27: 4.92638975e-18 + syst_JES_EtaIntercalibration_Stat28: 4.71897242e-08 + syst_JES_EtaIntercalibration_Stat29: 5.19751155e-18 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 2.7938052166892377e-21 + syst_JES_EtaIntercalibration_Stat30: 2.79380522e-21 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 8.907152785823311e-22 - syst_JES_EtaIntercalibration_Stat36: 4.905397845669605e-18 - syst_JES_EtaIntercalibration_Stat37: 2.3945602416834526e-09 - syst_JES_EtaIntercalibration_Stat38: 2.394560241690756e-09 - syst_JES_EtaIntercalibration_Stat39: 4.744509879850605e-19 - syst_JES_EtaIntercalibration_Stat4: 5.9634509304596445e-22 - syst_JES_EtaIntercalibration_Stat40: 6.218928424576055e-22 + syst_JES_EtaIntercalibration_Stat35: 8.90715279e-22 + syst_JES_EtaIntercalibration_Stat36: 4.90539785e-18 + syst_JES_EtaIntercalibration_Stat37: 2.39456024e-09 + syst_JES_EtaIntercalibration_Stat38: 2.39456024e-09 + syst_JES_EtaIntercalibration_Stat39: 4.74450988e-19 + syst_JES_EtaIntercalibration_Stat4: 5.96345093e-22 + syst_JES_EtaIntercalibration_Stat40: 6.21892842e-22 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 - syst_JES_EtaIntercalibration_Stat44: 6.065641928106209e-22 + syst_JES_EtaIntercalibration_Stat44: 6.06564193e-22 syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 - syst_JES_EtaIntercalibration_Stat47: 4.35091162861302e-22 - syst_JES_EtaIntercalibration_Stat48: 3.501288155807802e-19 - syst_JES_EtaIntercalibration_Stat49: 1.234161394429432e-17 - syst_JES_EtaIntercalibration_Stat5: 4.6215081953838404e-20 - syst_JES_EtaIntercalibration_Stat50: 4.718106399697533e-08 - syst_JES_EtaIntercalibration_Stat51: 1.1722486233767593e-14 - syst_JES_EtaIntercalibration_Stat52: 3.578930212717203e-20 + syst_JES_EtaIntercalibration_Stat47: 4.35091163e-22 + syst_JES_EtaIntercalibration_Stat48: 3.50128816e-19 + syst_JES_EtaIntercalibration_Stat49: 1.23416139e-17 + syst_JES_EtaIntercalibration_Stat5: 4.62150820e-20 + syst_JES_EtaIntercalibration_Stat50: 4.71810640e-08 + syst_JES_EtaIntercalibration_Stat51: 1.17224862e-14 + syst_JES_EtaIntercalibration_Stat52: 3.57893021e-20 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 syst_JES_EtaIntercalibration_Stat56: 0.0 - syst_JES_EtaIntercalibration_Stat57: 5.0283684991636566e-18 - syst_JES_EtaIntercalibration_Stat58: 4.487006845325734e-18 - syst_JES_EtaIntercalibration_Stat59: 2.8067889488326165e-08 - syst_JES_EtaIntercalibration_Stat6: 2.845687738930609e-19 - syst_JES_EtaIntercalibration_Stat60: 2.392828212601489e-09 - syst_JES_EtaIntercalibration_Stat61: 7.83995412661962e-18 - syst_JES_EtaIntercalibration_Stat62: 5.071444764561672e-22 + syst_JES_EtaIntercalibration_Stat57: 5.02836850e-18 + syst_JES_EtaIntercalibration_Stat58: 4.48700685e-18 + syst_JES_EtaIntercalibration_Stat59: 2.80678895e-08 + syst_JES_EtaIntercalibration_Stat6: 2.84568774e-19 + syst_JES_EtaIntercalibration_Stat60: 2.39282821e-09 + syst_JES_EtaIntercalibration_Stat61: 7.83995413e-18 + syst_JES_EtaIntercalibration_Stat62: 5.07144476e-22 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 - syst_JES_EtaIntercalibration_Stat69: 6.627926598869364e-22 - syst_JES_EtaIntercalibration_Stat7: 3.595373442008493e-20 - syst_JES_EtaIntercalibration_Stat70: 6.084349842012702e-18 - syst_JES_EtaIntercalibration_Stat71: 1.1604740409452855e-07 - syst_JES_EtaIntercalibration_Stat72: 3.295745990420763e-08 - syst_JES_EtaIntercalibration_Stat73: 4.718106396684054e-08 - syst_JES_EtaIntercalibration_Stat74: 5.905024364894696e-19 + syst_JES_EtaIntercalibration_Stat69: 6.62792660e-22 + syst_JES_EtaIntercalibration_Stat7: 3.59537344e-20 + syst_JES_EtaIntercalibration_Stat70: 6.08434984e-18 + syst_JES_EtaIntercalibration_Stat71: 1.16047404e-07 + syst_JES_EtaIntercalibration_Stat72: 3.29574599e-08 + syst_JES_EtaIntercalibration_Stat73: 4.71810640e-08 + syst_JES_EtaIntercalibration_Stat74: 5.90502436e-19 syst_JES_EtaIntercalibration_Stat75: 0.0 syst_JES_EtaIntercalibration_Stat76: 0.0 syst_JES_EtaIntercalibration_Stat77: 0.0 syst_JES_EtaIntercalibration_Stat78: 0.0 - syst_JES_EtaIntercalibration_Stat79: 4.956830685233761e-18 + syst_JES_EtaIntercalibration_Stat79: 4.95683069e-18 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 6.758972314634821e-14 - syst_JES_EtaIntercalibration_Stat81: 3.3630637817323656e-08 - syst_JES_EtaIntercalibration_Stat82: 2.1484173407417843e-08 - syst_JES_EtaIntercalibration_Stat83: 8.342228284457336e-16 - syst_JES_EtaIntercalibration_Stat84: 4.0112412044154114e-22 - syst_JES_EtaIntercalibration_Stat85: 6.065641928106209e-22 - syst_JES_EtaIntercalibration_Stat86: 6.065641928106209e-22 - syst_JES_EtaIntercalibration_Stat87: 6.065641928106209e-22 - syst_JES_EtaIntercalibration_Stat88: 6.065641928106209e-22 - syst_JES_EtaIntercalibration_Stat89: 6.065641928106209e-22 + syst_JES_EtaIntercalibration_Stat80: 6.75897231e-14 + syst_JES_EtaIntercalibration_Stat81: 3.36306378e-08 + syst_JES_EtaIntercalibration_Stat82: 2.14841734e-08 + syst_JES_EtaIntercalibration_Stat83: 8.34222828e-16 + syst_JES_EtaIntercalibration_Stat84: 4.01124120e-22 + syst_JES_EtaIntercalibration_Stat85: 6.06564193e-22 + syst_JES_EtaIntercalibration_Stat86: 6.06564193e-22 + syst_JES_EtaIntercalibration_Stat87: 6.06564193e-22 + syst_JES_EtaIntercalibration_Stat88: 6.06564193e-22 + syst_JES_EtaIntercalibration_Stat89: 6.06564193e-22 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 1.2866146723378372e-15 - syst_JES_EtaIntercalibration_Stat92: 1.1604740068083002e-07 - syst_JES_EtaIntercalibration_Stat93: 3.296437983575465e-08 - syst_JES_EtaIntercalibration_Stat94: 4.718106378449889e-08 - syst_JES_EtaIntercalibration_Stat95: 4.660220883177105e-18 - syst_JES_EtaIntercalibration_Stat96: 1.0541982132464465e-19 - syst_JES_EtaIntercalibration_Stat97: 6.065641928106209e-22 - syst_JES_EtaIntercalibration_Stat98: 6.065641928106209e-22 - syst_JES_EtaIntercalibration_Stat99: 6.065641928106209e-22 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0002289925053358734 - syst_JES_Flavour_Comp: 0.0005955537822061077 - syst_JES_Flavour_Response: 5.3219839345868e-05 - syst_JES_Gjet_Generator: 0.0007517484020601574 - syst_JES_Gjet_OOC: 0.0006204376257932781 - syst_JES_Gjet_Purity: 0.00010420597619618561 - syst_JES_Gjet_Stat1: 1.6729166984640926e-06 - syst_JES_Gjet_Stat10: 1.128206562425516e-05 - syst_JES_Gjet_Stat11: 1.1817458387910658e-05 - syst_JES_Gjet_Stat12: 3.418566366183345e-05 - syst_JES_Gjet_Stat13: 0.00012012797634189965 - syst_JES_Gjet_Stat14: 0.0003342996672149106 - syst_JES_Gjet_Stat15: 0.00041363431322244046 - syst_JES_Gjet_Stat2: 3.548106079299052e-07 - syst_JES_Gjet_Stat3: 1.9830068154194526e-06 - syst_JES_Gjet_Stat4: 2.054152562493838e-06 - syst_JES_Gjet_Stat5: 4.202799657469976e-13 - syst_JES_Gjet_Stat6: 6.953560436927258e-06 - syst_JES_Gjet_Stat7: 6.615332247892013e-06 - syst_JES_Gjet_Stat8: 4.1205907671109495e-06 - syst_JES_Gjet_Stat9: 7.256513418991245e-06 - syst_JES_Gjet_Veto: 0.0006270330992060946 - syst_JES_Gjet_dPhi: 5.956381703685553e-05 - syst_JES_LArESZee: 0.0011522619233490276 - syst_JES_LArEsmear: 9.467664482331425e-05 - syst_JES_LAr_JVT: 0.00011747939255460933 - syst_JES_MJB_Alpha: 7.283104901070697e-06 - syst_JES_MJB_Asym: 0.00013118301747939783 - syst_JES_MJB_Beta: 8.11845065267998e-06 - syst_JES_MJB_Fragmentation: 6.966419507178705e-05 - syst_JES_MJB_Stat1: 1.874125166364296e-08 - syst_JES_MJB_Stat10: 1.2256588462945145e-05 - syst_JES_MJB_Stat11: 1.2912509157789589e-05 - syst_JES_MJB_Stat12: 1.8955739895873232e-05 - syst_JES_MJB_Stat13: 1.310325603619192e-05 - syst_JES_MJB_Stat14: 1.1745416840197711e-05 - syst_JES_MJB_Stat15: 1.1373410867017862e-05 - syst_JES_MJB_Stat16: 7.783410306543012e-06 - syst_JES_MJB_Stat2: 5.656809033074654e-07 - syst_JES_MJB_Stat3: 2.2629243800887383e-07 - syst_JES_MJB_Stat4: 1.8732129483857407e-07 + syst_JES_EtaIntercalibration_Stat91: 1.28661467e-15 + syst_JES_EtaIntercalibration_Stat92: 1.16047401e-07 + syst_JES_EtaIntercalibration_Stat93: 3.29643798e-08 + syst_JES_EtaIntercalibration_Stat94: 4.71810638e-08 + syst_JES_EtaIntercalibration_Stat95: 4.66022088e-18 + syst_JES_EtaIntercalibration_Stat96: 1.05419821e-19 + syst_JES_EtaIntercalibration_Stat97: 6.06564193e-22 + syst_JES_EtaIntercalibration_Stat98: 6.06564193e-22 + syst_JES_EtaIntercalibration_Stat99: 6.06564193e-22 + syst_JES_EtaIntercalibration_TotalStat_MJB: 2.28992505e-04 + syst_JES_Flavour_Comp: 5.95553782e-04 + syst_JES_Flavour_Response: 5.32198393e-05 + syst_JES_Gjet_Generator: 7.51748402e-04 + syst_JES_Gjet_OOC: 6.20437626e-04 + syst_JES_Gjet_Purity: 1.04205976e-04 + syst_JES_Gjet_Stat1: 1.67291670e-06 + syst_JES_Gjet_Stat10: 1.12820656e-05 + syst_JES_Gjet_Stat11: 1.18174584e-05 + syst_JES_Gjet_Stat12: 3.41856637e-05 + syst_JES_Gjet_Stat13: 1.20127976e-04 + syst_JES_Gjet_Stat14: 3.34299667e-04 + syst_JES_Gjet_Stat15: 4.13634313e-04 + syst_JES_Gjet_Stat2: 3.54810608e-07 + syst_JES_Gjet_Stat3: 1.98300682e-06 + syst_JES_Gjet_Stat4: 2.05415256e-06 + syst_JES_Gjet_Stat5: 4.20279966e-13 + syst_JES_Gjet_Stat6: 6.95356044e-06 + syst_JES_Gjet_Stat7: 6.61533225e-06 + syst_JES_Gjet_Stat8: 4.12059077e-06 + syst_JES_Gjet_Stat9: 7.25651342e-06 + syst_JES_Gjet_Veto: 6.27033099e-04 + syst_JES_Gjet_dPhi: 5.95638170e-05 + syst_JES_LArESZee: 1.15226192e-03 + syst_JES_LArEsmear: 9.46766448e-05 + syst_JES_LAr_JVT: 1.17479393e-04 + syst_JES_MJB_Alpha: 7.28310490e-06 + syst_JES_MJB_Asym: 1.31183017e-04 + syst_JES_MJB_Beta: 8.11845065e-06 + syst_JES_MJB_Fragmentation: 6.96641951e-05 + syst_JES_MJB_Stat1: 1.87412517e-08 + syst_JES_MJB_Stat10: 1.22565885e-05 + syst_JES_MJB_Stat11: 1.29125092e-05 + syst_JES_MJB_Stat12: 1.89557399e-05 + syst_JES_MJB_Stat13: 1.31032560e-05 + syst_JES_MJB_Stat14: 1.17454168e-05 + syst_JES_MJB_Stat15: 1.13734109e-05 + syst_JES_MJB_Stat16: 7.78341031e-06 + syst_JES_MJB_Stat2: 5.65680903e-07 + syst_JES_MJB_Stat3: 2.26292438e-07 + syst_JES_MJB_Stat4: 1.87321295e-07 syst_JES_MJB_Stat5: 0.0 - syst_JES_MJB_Stat6: 1.382176544439964e-06 - syst_JES_MJB_Stat7: 1.7900745096224345e-06 - syst_JES_MJB_Stat8: 2.4050037422008307e-06 - syst_JES_MJB_Stat9: 6.858272304305217e-06 - syst_JES_MJB_Threshold: 8.583981287840741e-05 - syst_JES_Pileup_MuOffset: 0.00014743137386594485 - syst_JES_Pileup_NPVOffset: 0.00015301532602978043 - syst_JES_Pileup_Pt_term: 0.0001061118221500319 - syst_JES_Pileup_Rho_topology: 0.00020000731861609465 - syst_JES_PunchThrough_MC15: 0.00029778292009448765 + syst_JES_MJB_Stat6: 1.38217654e-06 + syst_JES_MJB_Stat7: 1.79007451e-06 + syst_JES_MJB_Stat8: 2.40500374e-06 + syst_JES_MJB_Stat9: 6.85827230e-06 + syst_JES_MJB_Threshold: 8.58398129e-05 + syst_JES_Pileup_MuOffset: 1.47431374e-04 + syst_JES_Pileup_NPVOffset: 1.53015326e-04 + syst_JES_Pileup_Pt_term: 1.06111822e-04 + syst_JES_Pileup_Rho_topology: 2.00007319e-04 + syst_JES_PunchThrough_MC15: 2.97782920e-04 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.0002798898488691578 - syst_JES_Zjet_MuScale: 2.147747832032429e-05 - syst_JES_Zjet_MuSmearID: 4.1887964858656e-06 - syst_JES_Zjet_MuSmearMS: 7.642521491628269e-05 - syst_JES_Zjet_OOC: 0.00016670755081879166 - syst_JES_Zjet_Stat1: 1.2633580994714049e-05 - syst_JES_Zjet_Stat10: 1.4416458476338771e-05 - syst_JES_Zjet_Stat11: 1.9263750932775267e-05 - syst_JES_Zjet_Stat12: 5.065287454824257e-05 - syst_JES_Zjet_Stat13: 8.066079019573266e-05 - syst_JES_Zjet_Stat2: 1.1417678923494232e-07 - syst_JES_Zjet_Stat3: 6.27433972621821e-06 - syst_JES_Zjet_Stat4: 6.909693390447944e-06 - syst_JES_Zjet_Stat5: 7.999008000996124e-06 - syst_JES_Zjet_Stat6: 6.405192502961952e-06 - syst_JES_Zjet_Stat7: 6.4652482357601715e-06 - syst_JES_Zjet_Stat8: 6.602788653288852e-06 - syst_JES_Zjet_Stat9: 9.084878920492005e-06 - syst_JES_Zjet_Veto: 3.1534544153990876e-05 - syst_JES_Zjet_dPhi: 2.8818443313267288e-05 - syst_PRW: 4.721e-05 - syst_Unfolding_bias: 4.014e-17 - syst_cleaning: 0.0001485233567490312 - syst_lumi: 0.0004975 -- stat: 0.00022037 + syst_JES_Zjet_MC: 2.79889849e-04 + syst_JES_Zjet_MuScale: 2.14774783e-05 + syst_JES_Zjet_MuSmearID: 4.18879649e-06 + syst_JES_Zjet_MuSmearMS: 7.64252149e-05 + syst_JES_Zjet_OOC: 1.66707551e-04 + syst_JES_Zjet_Stat1: 1.26335810e-05 + syst_JES_Zjet_Stat10: 1.44164585e-05 + syst_JES_Zjet_Stat11: 1.92637509e-05 + syst_JES_Zjet_Stat12: 5.06528745e-05 + syst_JES_Zjet_Stat13: 8.06607902e-05 + syst_JES_Zjet_Stat2: 1.14176789e-07 + syst_JES_Zjet_Stat3: 6.27433973e-06 + syst_JES_Zjet_Stat4: 6.90969339e-06 + syst_JES_Zjet_Stat5: 7.99900800e-06 + syst_JES_Zjet_Stat6: 6.40519250e-06 + syst_JES_Zjet_Stat7: 6.46524824e-06 + syst_JES_Zjet_Stat8: 6.60278865e-06 + syst_JES_Zjet_Stat9: 9.08487892e-06 + syst_JES_Zjet_Veto: 3.15345442e-05 + syst_JES_Zjet_dPhi: 2.88184433e-05 + syst_PRW: 4.72100000e-05 + syst_Unfolding_bias: 4.01400000e-17 + syst_cleaning: 1.48523357e-04 + syst_lumi: 4.97500000e-04 +- stat: 2.20370000e-04 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.00017072682126719282 - syst_JER_NP1: 3.9363826033555226e-05 - syst_JER_NP2: 0.0001468469784333338 - syst_JER_NP3: 1.917230033146779e-05 - syst_JER_NP4: 1.815004958670912e-14 - syst_JER_NP5: 1.2651377276802713e-05 - syst_JER_NP6: 3.593688527126412e-14 - syst_JER_NP7: 4.28492497017159e-14 - syst_JER_NP8: 1.5538979591659161e-06 - syst_JES_EtaIntercalibration_Modelling: 0.0012284822536365756 - syst_JES_EtaIntercalibration_NonClosure: 4.6911645409215824e-08 - syst_JES_EtaIntercalibration_Stat0: 1.5311329138908874e-22 + syst_JER_NP0: 1.70726821e-04 + syst_JER_NP1: 3.93638260e-05 + syst_JER_NP2: 1.46846978e-04 + syst_JER_NP3: 1.91723003e-05 + syst_JER_NP4: 1.81500496e-14 + syst_JER_NP5: 1.26513773e-05 + syst_JER_NP6: 3.59368853e-14 + syst_JER_NP7: 4.28492497e-14 + syst_JER_NP8: 1.55389796e-06 + syst_JES_EtaIntercalibration_Modelling: 1.22848225e-03 + syst_JES_EtaIntercalibration_NonClosure: 4.69116454e-08 + syst_JES_EtaIntercalibration_Stat0: 1.53113291e-22 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 8.799451270545227e-19 - syst_JES_EtaIntercalibration_Stat101: 1.4020328767543223e-14 - syst_JES_EtaIntercalibration_Stat102: 1.5295206905024203e-08 - syst_JES_EtaIntercalibration_Stat103: 4.071875514735194e-09 - syst_JES_EtaIntercalibration_Stat104: 1.8683721863897994e-15 - syst_JES_EtaIntercalibration_Stat105: 2.858581355760231e-22 - syst_JES_EtaIntercalibration_Stat106: 1.5311329138908874e-22 - syst_JES_EtaIntercalibration_Stat107: 1.5311329138908874e-22 - syst_JES_EtaIntercalibration_Stat108: 1.5311329138908874e-22 - syst_JES_EtaIntercalibration_Stat109: 1.5311329138908874e-22 + syst_JES_EtaIntercalibration_Stat100: 8.79945127e-19 + syst_JES_EtaIntercalibration_Stat101: 1.40203288e-14 + syst_JES_EtaIntercalibration_Stat102: 1.52952069e-08 + syst_JES_EtaIntercalibration_Stat103: 4.07187551e-09 + syst_JES_EtaIntercalibration_Stat104: 1.86837219e-15 + syst_JES_EtaIntercalibration_Stat105: 2.85858136e-22 + syst_JES_EtaIntercalibration_Stat106: 1.53113291e-22 + syst_JES_EtaIntercalibration_Stat107: 1.53113291e-22 + syst_JES_EtaIntercalibration_Stat108: 1.53113291e-22 + syst_JES_EtaIntercalibration_Stat109: 1.53113291e-22 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 6.781900618558193e-21 - syst_JES_EtaIntercalibration_Stat111: 8.733300006297734e-15 - syst_JES_EtaIntercalibration_Stat112: 4.124022254833623e-08 - syst_JES_EtaIntercalibration_Stat113: 5.041042343192954e-08 - syst_JES_EtaIntercalibration_Stat114: 6.306336515237487e-09 - syst_JES_EtaIntercalibration_Stat115: 1.5679324019494589e-15 - syst_JES_EtaIntercalibration_Stat116: 1.68197565880128e-20 - syst_JES_EtaIntercalibration_Stat117: 1.5311329138908874e-22 - syst_JES_EtaIntercalibration_Stat118: 1.5311329138908874e-22 - syst_JES_EtaIntercalibration_Stat119: 1.5311329138908874e-22 + syst_JES_EtaIntercalibration_Stat110: 6.78190062e-21 + syst_JES_EtaIntercalibration_Stat111: 8.73330001e-15 + syst_JES_EtaIntercalibration_Stat112: 4.12402225e-08 + syst_JES_EtaIntercalibration_Stat113: 5.04104234e-08 + syst_JES_EtaIntercalibration_Stat114: 6.30633652e-09 + syst_JES_EtaIntercalibration_Stat115: 1.56793240e-15 + syst_JES_EtaIntercalibration_Stat116: 1.68197566e-20 + syst_JES_EtaIntercalibration_Stat117: 1.53113291e-22 + syst_JES_EtaIntercalibration_Stat118: 1.53113291e-22 + syst_JES_EtaIntercalibration_Stat119: 1.53113291e-22 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 5.510519644280383e-18 - syst_JES_EtaIntercalibration_Stat121: 1.3492356465792029e-08 - syst_JES_EtaIntercalibration_Stat122: 1.9785977022881634e-08 - syst_JES_EtaIntercalibration_Stat123: 2.7824818251877223e-09 - syst_JES_EtaIntercalibration_Stat124: 5.503642611943476e-09 - syst_JES_EtaIntercalibration_Stat125: 8.596168157964338e-20 - syst_JES_EtaIntercalibration_Stat126: 1.5311329138908874e-22 - syst_JES_EtaIntercalibration_Stat127: 1.5311329138908874e-22 - syst_JES_EtaIntercalibration_Stat128: 1.5311329138908874e-22 - syst_JES_EtaIntercalibration_Stat129: 3.0402108347941925e-15 + syst_JES_EtaIntercalibration_Stat120: 5.51051964e-18 + syst_JES_EtaIntercalibration_Stat121: 1.34923565e-08 + syst_JES_EtaIntercalibration_Stat122: 1.97859770e-08 + syst_JES_EtaIntercalibration_Stat123: 2.78248183e-09 + syst_JES_EtaIntercalibration_Stat124: 5.50364261e-09 + syst_JES_EtaIntercalibration_Stat125: 8.59616816e-20 + syst_JES_EtaIntercalibration_Stat126: 1.53113291e-22 + syst_JES_EtaIntercalibration_Stat127: 1.53113291e-22 + syst_JES_EtaIntercalibration_Stat128: 1.53113291e-22 + syst_JES_EtaIntercalibration_Stat129: 3.04021083e-15 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 8.43497708835507e-09 - syst_JES_EtaIntercalibration_Stat131: 6.042624181595278e-08 - syst_JES_EtaIntercalibration_Stat132: 9.300701818680136e-08 - syst_JES_EtaIntercalibration_Stat133: 4.309161824531541e-08 - syst_JES_EtaIntercalibration_Stat134: 2.5513108300746386e-08 - syst_JES_EtaIntercalibration_Stat135: 1.6870174865720865e-20 + syst_JES_EtaIntercalibration_Stat130: 8.43497709e-09 + syst_JES_EtaIntercalibration_Stat131: 6.04262418e-08 + syst_JES_EtaIntercalibration_Stat132: 9.30070182e-08 + syst_JES_EtaIntercalibration_Stat133: 4.30916182e-08 + syst_JES_EtaIntercalibration_Stat134: 2.55131083e-08 + syst_JES_EtaIntercalibration_Stat135: 1.68701749e-20 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 syst_JES_EtaIntercalibration_Stat138: 0.0 - syst_JES_EtaIntercalibration_Stat139: 2.3981765823224942e-14 - syst_JES_EtaIntercalibration_Stat14: 8.845041274289787e-19 - syst_JES_EtaIntercalibration_Stat140: 2.0538122479915247e-08 - syst_JES_EtaIntercalibration_Stat141: 5.680059924859947e-08 - syst_JES_EtaIntercalibration_Stat142: 9.600328887595466e-09 - syst_JES_EtaIntercalibration_Stat143: 8.154748969159015e-09 - syst_JES_EtaIntercalibration_Stat144: 1.2938602242900892e-16 + syst_JES_EtaIntercalibration_Stat139: 2.39817658e-14 + syst_JES_EtaIntercalibration_Stat14: 8.84504127e-19 + syst_JES_EtaIntercalibration_Stat140: 2.05381225e-08 + syst_JES_EtaIntercalibration_Stat141: 5.68005992e-08 + syst_JES_EtaIntercalibration_Stat142: 9.60032889e-09 + syst_JES_EtaIntercalibration_Stat143: 8.15474897e-09 + syst_JES_EtaIntercalibration_Stat144: 1.29386022e-16 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 4.583523535447374e-16 - syst_JES_EtaIntercalibration_Stat148: 9.736501221177964e-09 - syst_JES_EtaIntercalibration_Stat149: 6.234044273182538e-08 - syst_JES_EtaIntercalibration_Stat15: 8.821784436751942e-19 - syst_JES_EtaIntercalibration_Stat150: 7.875222321147511e-08 - syst_JES_EtaIntercalibration_Stat151: 5.202507714554587e-08 - syst_JES_EtaIntercalibration_Stat152: 3.81632858648204e-15 + syst_JES_EtaIntercalibration_Stat147: 4.58352354e-16 + syst_JES_EtaIntercalibration_Stat148: 9.73650122e-09 + syst_JES_EtaIntercalibration_Stat149: 6.23404427e-08 + syst_JES_EtaIntercalibration_Stat15: 8.82178444e-19 + syst_JES_EtaIntercalibration_Stat150: 7.87522232e-08 + syst_JES_EtaIntercalibration_Stat151: 5.20250771e-08 + syst_JES_EtaIntercalibration_Stat152: 3.81632859e-15 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 syst_JES_EtaIntercalibration_Stat156: 0.0 - syst_JES_EtaIntercalibration_Stat157: 6.945249795363735e-15 - syst_JES_EtaIntercalibration_Stat158: 1.4483870364995675e-07 - syst_JES_EtaIntercalibration_Stat159: 4.55332260552665e-08 - syst_JES_EtaIntercalibration_Stat16: 8.784421425735377e-19 - syst_JES_EtaIntercalibration_Stat160: 4.6422840722536574e-08 - syst_JES_EtaIntercalibration_Stat161: 7.734808930251608e-09 - syst_JES_EtaIntercalibration_Stat162: 1.289469079699083e-16 + syst_JES_EtaIntercalibration_Stat157: 6.94524980e-15 + syst_JES_EtaIntercalibration_Stat158: 1.44838704e-07 + syst_JES_EtaIntercalibration_Stat159: 4.55332261e-08 + syst_JES_EtaIntercalibration_Stat16: 8.78442143e-19 + syst_JES_EtaIntercalibration_Stat160: 4.64228407e-08 + syst_JES_EtaIntercalibration_Stat161: 7.73480893e-09 + syst_JES_EtaIntercalibration_Stat162: 1.28946908e-16 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 1.0376436996869397e-15 - syst_JES_EtaIntercalibration_Stat166: 1.0740300589368996e-07 - syst_JES_EtaIntercalibration_Stat167: 1.3292627543115772e-07 - syst_JES_EtaIntercalibration_Stat168: 7.631584267372011e-08 - syst_JES_EtaIntercalibration_Stat169: 4.6374285460802526e-07 - syst_JES_EtaIntercalibration_Stat17: 1.254004784679867e-22 - syst_JES_EtaIntercalibration_Stat170: 2.5513058686018807e-08 + syst_JES_EtaIntercalibration_Stat165: 1.03764370e-15 + syst_JES_EtaIntercalibration_Stat166: 1.07403006e-07 + syst_JES_EtaIntercalibration_Stat167: 1.32926275e-07 + syst_JES_EtaIntercalibration_Stat168: 7.63158427e-08 + syst_JES_EtaIntercalibration_Stat169: 4.63742855e-07 + syst_JES_EtaIntercalibration_Stat17: 1.25400478e-22 + syst_JES_EtaIntercalibration_Stat170: 2.55130587e-08 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 - syst_JES_EtaIntercalibration_Stat175: 1.026564087411306e-10 - syst_JES_EtaIntercalibration_Stat176: 1.0322686229853158e-07 - syst_JES_EtaIntercalibration_Stat177: 2.698630949203688e-07 - syst_JES_EtaIntercalibration_Stat178: 2.7650966470450904e-07 - syst_JES_EtaIntercalibration_Stat179: 2.1695969203690808e-07 + syst_JES_EtaIntercalibration_Stat175: 1.02656409e-10 + syst_JES_EtaIntercalibration_Stat176: 1.03226862e-07 + syst_JES_EtaIntercalibration_Stat177: 2.69863095e-07 + syst_JES_EtaIntercalibration_Stat178: 2.76509665e-07 + syst_JES_EtaIntercalibration_Stat179: 2.16959692e-07 syst_JES_EtaIntercalibration_Stat18: 0.0 - syst_JES_EtaIntercalibration_Stat180: 4.154323862043932e-09 + syst_JES_EtaIntercalibration_Stat180: 4.15432386e-09 syst_JES_EtaIntercalibration_Stat181: 0.0 - syst_JES_EtaIntercalibration_Stat182: 9.582210303310766e-11 - syst_JES_EtaIntercalibration_Stat183: 4.4148013262206937e-07 - syst_JES_EtaIntercalibration_Stat184: 1.0041562166814484e-06 - syst_JES_EtaIntercalibration_Stat185: 1.8026665158869512e-06 - syst_JES_EtaIntercalibration_Stat186: 3.3246101651171074e-07 - syst_JES_EtaIntercalibration_Stat187: 8.015885816457639e-09 + syst_JES_EtaIntercalibration_Stat182: 9.58221030e-11 + syst_JES_EtaIntercalibration_Stat183: 4.41480133e-07 + syst_JES_EtaIntercalibration_Stat184: 1.00415622e-06 + syst_JES_EtaIntercalibration_Stat185: 1.80266652e-06 + syst_JES_EtaIntercalibration_Stat186: 3.32461017e-07 + syst_JES_EtaIntercalibration_Stat187: 8.01588582e-09 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 - syst_JES_EtaIntercalibration_Stat192: 1.0241330869701458e-08 - syst_JES_EtaIntercalibration_Stat193: 3.494887261057215e-07 - syst_JES_EtaIntercalibration_Stat194: 3.0151237122214404e-06 - syst_JES_EtaIntercalibration_Stat195: 1.6586713809552512e-06 - syst_JES_EtaIntercalibration_Stat196: 8.150512515786967e-07 - syst_JES_EtaIntercalibration_Stat197: 5.598739182173071e-09 - syst_JES_EtaIntercalibration_Stat198: 5.253654823073172e-07 - syst_JES_EtaIntercalibration_Stat199: 2.3614529489278418e-06 + syst_JES_EtaIntercalibration_Stat192: 1.02413309e-08 + syst_JES_EtaIntercalibration_Stat193: 3.49488726e-07 + syst_JES_EtaIntercalibration_Stat194: 3.01512371e-06 + syst_JES_EtaIntercalibration_Stat195: 1.65867138e-06 + syst_JES_EtaIntercalibration_Stat196: 8.15051252e-07 + syst_JES_EtaIntercalibration_Stat197: 5.59873918e-09 + syst_JES_EtaIntercalibration_Stat198: 5.25365482e-07 + syst_JES_EtaIntercalibration_Stat199: 2.36145295e-06 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 5.445836460085815e-06 - syst_JES_EtaIntercalibration_Stat201: 1.3194173969976293e-06 - syst_JES_EtaIntercalibration_Stat202: 2.2172168381779894e-08 + syst_JES_EtaIntercalibration_Stat200: 5.44583646e-06 + syst_JES_EtaIntercalibration_Stat201: 1.31941740e-06 + syst_JES_EtaIntercalibration_Stat202: 2.21721684e-08 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 - syst_JES_EtaIntercalibration_Stat207: 5.6268486739915084e-08 - syst_JES_EtaIntercalibration_Stat208: 2.0211127504421913e-06 - syst_JES_EtaIntercalibration_Stat209: 5.326022343175064e-06 + syst_JES_EtaIntercalibration_Stat207: 5.62684867e-08 + syst_JES_EtaIntercalibration_Stat208: 2.02111275e-06 + syst_JES_EtaIntercalibration_Stat209: 5.32602234e-06 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 3.0048661783846548e-06 - syst_JES_EtaIntercalibration_Stat211: 1.1272326645373616e-06 - syst_JES_EtaIntercalibration_Stat212: 2.5521075114500954e-06 - syst_JES_EtaIntercalibration_Stat213: 6.136788410887245e-06 - syst_JES_EtaIntercalibration_Stat214: 1.3108778003688978e-06 - syst_JES_EtaIntercalibration_Stat215: 2.4355107391405094e-08 + syst_JES_EtaIntercalibration_Stat210: 3.00486618e-06 + syst_JES_EtaIntercalibration_Stat211: 1.12723266e-06 + syst_JES_EtaIntercalibration_Stat212: 2.55210751e-06 + syst_JES_EtaIntercalibration_Stat213: 6.13678841e-06 + syst_JES_EtaIntercalibration_Stat214: 1.31087780e-06 + syst_JES_EtaIntercalibration_Stat215: 2.43551074e-08 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 syst_JES_EtaIntercalibration_Stat219: 0.0 - syst_JES_EtaIntercalibration_Stat22: 1.5311329138908874e-22 - syst_JES_EtaIntercalibration_Stat220: 5.129421677928224e-08 - syst_JES_EtaIntercalibration_Stat221: 1.6237771614356448e-06 - syst_JES_EtaIntercalibration_Stat222: 5.3453840834873595e-06 - syst_JES_EtaIntercalibration_Stat223: 4.27099648794049e-06 - syst_JES_EtaIntercalibration_Stat224: 9.043142263616114e-06 - syst_JES_EtaIntercalibration_Stat225: 1.7981620477587664e-05 - syst_JES_EtaIntercalibration_Stat226: 4.103889797497003e-06 - syst_JES_EtaIntercalibration_Stat227: 5.716964491756092e-08 + syst_JES_EtaIntercalibration_Stat22: 1.53113291e-22 + syst_JES_EtaIntercalibration_Stat220: 5.12942168e-08 + syst_JES_EtaIntercalibration_Stat221: 1.62377716e-06 + syst_JES_EtaIntercalibration_Stat222: 5.34538408e-06 + syst_JES_EtaIntercalibration_Stat223: 4.27099649e-06 + syst_JES_EtaIntercalibration_Stat224: 9.04314226e-06 + syst_JES_EtaIntercalibration_Stat225: 1.79816205e-05 + syst_JES_EtaIntercalibration_Stat226: 4.10388980e-06 + syst_JES_EtaIntercalibration_Stat227: 5.71696449e-08 syst_JES_EtaIntercalibration_Stat228: 0.0 syst_JES_EtaIntercalibration_Stat229: 0.0 - syst_JES_EtaIntercalibration_Stat23: 1.5311329138908874e-22 + syst_JES_EtaIntercalibration_Stat23: 1.53113291e-22 syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 - syst_JES_EtaIntercalibration_Stat232: 1.707961658673871e-07 - syst_JES_EtaIntercalibration_Stat233: 5.020601955941139e-06 - syst_JES_EtaIntercalibration_Stat234: 1.4728903115982535e-05 - syst_JES_EtaIntercalibration_Stat235: 1.4291273281272036e-05 - syst_JES_EtaIntercalibration_Stat236: 3.433841580504261e-06 - syst_JES_EtaIntercalibration_Stat237: 7.977820049988592e-07 - syst_JES_EtaIntercalibration_Stat238: 2.1780538905178632e-08 + syst_JES_EtaIntercalibration_Stat232: 1.70796166e-07 + syst_JES_EtaIntercalibration_Stat233: 5.02060196e-06 + syst_JES_EtaIntercalibration_Stat234: 1.47289031e-05 + syst_JES_EtaIntercalibration_Stat235: 1.42912733e-05 + syst_JES_EtaIntercalibration_Stat236: 3.43384158e-06 + syst_JES_EtaIntercalibration_Stat237: 7.97782005e-07 + syst_JES_EtaIntercalibration_Stat238: 2.17805389e-08 syst_JES_EtaIntercalibration_Stat239: 0.0 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 - syst_JES_EtaIntercalibration_Stat243: 1.4990915693722652e-08 - syst_JES_EtaIntercalibration_Stat244: 3.568275038446448e-07 - syst_JES_EtaIntercalibration_Stat245: 4.437110630804691e-06 - syst_JES_EtaIntercalibration_Stat25: 1.0815791267863855e-22 - syst_JES_EtaIntercalibration_Stat26: 5.9707780690626904e-21 - syst_JES_EtaIntercalibration_Stat27: 8.975496302712178e-19 - syst_JES_EtaIntercalibration_Stat28: 2.55131083949304e-08 - syst_JES_EtaIntercalibration_Stat29: 9.374997119999558e-19 + syst_JES_EtaIntercalibration_Stat243: 1.49909157e-08 + syst_JES_EtaIntercalibration_Stat244: 3.56827504e-07 + syst_JES_EtaIntercalibration_Stat245: 4.43711063e-06 + syst_JES_EtaIntercalibration_Stat25: 1.08157913e-22 + syst_JES_EtaIntercalibration_Stat26: 5.97077807e-21 + syst_JES_EtaIntercalibration_Stat27: 8.97549630e-19 + syst_JES_EtaIntercalibration_Stat28: 2.55131084e-08 + syst_JES_EtaIntercalibration_Stat29: 9.37499712e-19 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 6.610194300283464e-22 + syst_JES_EtaIntercalibration_Stat30: 6.61019430e-22 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 2.261653754998762e-22 - syst_JES_EtaIntercalibration_Stat36: 8.637325232493853e-19 - syst_JES_EtaIntercalibration_Stat37: 2.401488445148623e-10 - syst_JES_EtaIntercalibration_Stat38: 2.4014884451627684e-10 - syst_JES_EtaIntercalibration_Stat39: 9.672068988587705e-20 - syst_JES_EtaIntercalibration_Stat4: 1.482635491278959e-22 - syst_JES_EtaIntercalibration_Stat40: 1.6549745466320625e-22 + syst_JES_EtaIntercalibration_Stat35: 2.26165375e-22 + syst_JES_EtaIntercalibration_Stat36: 8.63732523e-19 + syst_JES_EtaIntercalibration_Stat37: 2.40148845e-10 + syst_JES_EtaIntercalibration_Stat38: 2.40148845e-10 + syst_JES_EtaIntercalibration_Stat39: 9.67206899e-20 + syst_JES_EtaIntercalibration_Stat4: 1.48263549e-22 + syst_JES_EtaIntercalibration_Stat40: 1.65497455e-22 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 - syst_JES_EtaIntercalibration_Stat44: 1.5311329138908874e-22 + syst_JES_EtaIntercalibration_Stat44: 1.53113291e-22 syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 - syst_JES_EtaIntercalibration_Stat47: 1.0820987420286562e-22 - syst_JES_EtaIntercalibration_Stat48: 6.731590326215642e-20 - syst_JES_EtaIntercalibration_Stat49: 2.168509338232141e-18 - syst_JES_EtaIntercalibration_Stat5: 7.639781852252066e-21 - syst_JES_EtaIntercalibration_Stat50: 2.5513108395260993e-08 - syst_JES_EtaIntercalibration_Stat51: 1.5556354712888232e-15 - syst_JES_EtaIntercalibration_Stat52: 5.6221892417456024e-21 + syst_JES_EtaIntercalibration_Stat47: 1.08209874e-22 + syst_JES_EtaIntercalibration_Stat48: 6.73159033e-20 + syst_JES_EtaIntercalibration_Stat49: 2.16850934e-18 + syst_JES_EtaIntercalibration_Stat5: 7.63978185e-21 + syst_JES_EtaIntercalibration_Stat50: 2.55131084e-08 + syst_JES_EtaIntercalibration_Stat51: 1.55563547e-15 + syst_JES_EtaIntercalibration_Stat52: 5.62218924e-21 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 syst_JES_EtaIntercalibration_Stat56: 0.0 - syst_JES_EtaIntercalibration_Stat57: 8.846154909921641e-19 - syst_JES_EtaIntercalibration_Stat58: 7.883903295164141e-19 - syst_JES_EtaIntercalibration_Stat59: 5.25764103986236e-09 - syst_JES_EtaIntercalibration_Stat6: 4.7391809967546084e-20 - syst_JES_EtaIntercalibration_Stat60: 2.39715835318237e-10 - syst_JES_EtaIntercalibration_Stat61: 1.336510723750468e-18 - syst_JES_EtaIntercalibration_Stat62: 1.279119521389616e-22 + syst_JES_EtaIntercalibration_Stat57: 8.84615491e-19 + syst_JES_EtaIntercalibration_Stat58: 7.88390330e-19 + syst_JES_EtaIntercalibration_Stat59: 5.25764104e-09 + syst_JES_EtaIntercalibration_Stat6: 4.73918100e-20 + syst_JES_EtaIntercalibration_Stat60: 2.39715835e-10 + syst_JES_EtaIntercalibration_Stat61: 1.33651072e-18 + syst_JES_EtaIntercalibration_Stat62: 1.27911952e-22 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 - syst_JES_EtaIntercalibration_Stat69: 1.6583584503960535e-22 - syst_JES_EtaIntercalibration_Stat7: 5.60913965662293e-21 - syst_JES_EtaIntercalibration_Stat70: 1.103305400829707e-18 - syst_JES_EtaIntercalibration_Stat71: 2.2707186085036648e-08 - syst_JES_EtaIntercalibration_Stat72: 2.243871780069277e-08 - syst_JES_EtaIntercalibration_Stat73: 2.5513108390431975e-08 - syst_JES_EtaIntercalibration_Stat74: 1.135629423304539e-19 + syst_JES_EtaIntercalibration_Stat69: 1.65835845e-22 + syst_JES_EtaIntercalibration_Stat7: 5.60913966e-21 + syst_JES_EtaIntercalibration_Stat70: 1.10330540e-18 + syst_JES_EtaIntercalibration_Stat71: 2.27071861e-08 + syst_JES_EtaIntercalibration_Stat72: 2.24387178e-08 + syst_JES_EtaIntercalibration_Stat73: 2.55131084e-08 + syst_JES_EtaIntercalibration_Stat74: 1.13562942e-19 syst_JES_EtaIntercalibration_Stat75: 0.0 syst_JES_EtaIntercalibration_Stat76: 0.0 syst_JES_EtaIntercalibration_Stat77: 0.0 syst_JES_EtaIntercalibration_Stat78: 0.0 - syst_JES_EtaIntercalibration_Stat79: 8.730058713846086e-19 + syst_JES_EtaIntercalibration_Stat79: 8.73005871e-19 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 9.447522254538488e-15 - syst_JES_EtaIntercalibration_Stat81: 1.5288140076542992e-08 - syst_JES_EtaIntercalibration_Stat82: 4.1233938291169815e-09 - syst_JES_EtaIntercalibration_Stat83: 1.3385249605442552e-16 - syst_JES_EtaIntercalibration_Stat84: 1.1086635772406342e-22 - syst_JES_EtaIntercalibration_Stat85: 1.5311329138908874e-22 - syst_JES_EtaIntercalibration_Stat86: 1.5311329138908874e-22 - syst_JES_EtaIntercalibration_Stat87: 1.5311329138908874e-22 - syst_JES_EtaIntercalibration_Stat88: 1.5311329138908874e-22 - syst_JES_EtaIntercalibration_Stat89: 1.5311329138908874e-22 + syst_JES_EtaIntercalibration_Stat80: 9.44752225e-15 + syst_JES_EtaIntercalibration_Stat81: 1.52881401e-08 + syst_JES_EtaIntercalibration_Stat82: 4.12339383e-09 + syst_JES_EtaIntercalibration_Stat83: 1.33852496e-16 + syst_JES_EtaIntercalibration_Stat84: 1.10866358e-22 + syst_JES_EtaIntercalibration_Stat85: 1.53113291e-22 + syst_JES_EtaIntercalibration_Stat86: 1.53113291e-22 + syst_JES_EtaIntercalibration_Stat87: 1.53113291e-22 + syst_JES_EtaIntercalibration_Stat88: 1.53113291e-22 + syst_JES_EtaIntercalibration_Stat89: 1.53113291e-22 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 1.919717842079924e-16 - syst_JES_EtaIntercalibration_Stat92: 2.2707185616398875e-08 - syst_JES_EtaIntercalibration_Stat93: 2.243871666186976e-08 - syst_JES_EtaIntercalibration_Stat94: 2.5513108362557504e-08 - syst_JES_EtaIntercalibration_Stat95: 8.383316333647443e-19 - syst_JES_EtaIntercalibration_Stat96: 1.68197565880128e-20 - syst_JES_EtaIntercalibration_Stat97: 1.5311329138908874e-22 - syst_JES_EtaIntercalibration_Stat98: 1.5311329138908874e-22 - syst_JES_EtaIntercalibration_Stat99: 1.5311329138908874e-22 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.00014144170071092897 - syst_JES_Flavour_Comp: 0.0003570087779032891 - syst_JES_Flavour_Response: 4.3421991985628667e-05 - syst_JES_Gjet_Generator: 0.0004328159510692738 - syst_JES_Gjet_OOC: 0.0003601937395347121 - syst_JES_Gjet_Purity: 5.8792057924519025e-05 - syst_JES_Gjet_Stat1: 8.801580128022469e-07 - syst_JES_Gjet_Stat10: 6.994453570508564e-06 - syst_JES_Gjet_Stat11: 7.1767537229585915e-06 - syst_JES_Gjet_Stat12: 1.9226416072684998e-05 - syst_JES_Gjet_Stat13: 6.851910299325291e-05 - syst_JES_Gjet_Stat14: 0.00019305337992379205 - syst_JES_Gjet_Stat15: 0.00027053282148382663 - syst_JES_Gjet_Stat2: 6.061311801085869e-07 - syst_JES_Gjet_Stat3: 1.1011378421887062e-06 - syst_JES_Gjet_Stat4: 1.1082882871798293e-06 - syst_JES_Gjet_Stat5: 6.00930524488913e-14 - syst_JES_Gjet_Stat6: 4.016848764890209e-06 - syst_JES_Gjet_Stat7: 3.670820115451042e-06 - syst_JES_Gjet_Stat8: 2.401039930946589e-06 - syst_JES_Gjet_Stat9: 4.009220965474465e-06 - syst_JES_Gjet_Veto: 0.0003656150996266429 - syst_JES_Gjet_dPhi: 3.4835064231317274e-05 - syst_JES_LArESZee: 0.0006587049168633859 - syst_JES_LArEsmear: 5.550460949326641e-05 - syst_JES_LAr_JVT: 6.940646565702651e-05 - syst_JES_MJB_Alpha: 4.330650448546962e-06 - syst_JES_MJB_Asym: 8.418182865084365e-05 - syst_JES_MJB_Beta: 4.89430536440055e-06 - syst_JES_MJB_Fragmentation: 3.9223995675479064e-05 - syst_JES_MJB_Stat1: 1.019838103233334e-08 - syst_JES_MJB_Stat10: 7.069188973991288e-06 - syst_JES_MJB_Stat11: 8.01578667380813e-06 - syst_JES_MJB_Stat12: 1.3038656986054968e-05 - syst_JES_MJB_Stat13: 1.2020253023543222e-05 - syst_JES_MJB_Stat14: 1.1614635853095008e-05 - syst_JES_MJB_Stat15: 1.3442913997716416e-05 - syst_JES_MJB_Stat16: 5.4347585962947795e-06 - syst_JES_MJB_Stat2: 7.872247932293545e-08 - syst_JES_MJB_Stat3: 4.214079614815079e-08 - syst_JES_MJB_Stat4: 3.5091349361345455e-08 + syst_JES_EtaIntercalibration_Stat91: 1.91971784e-16 + syst_JES_EtaIntercalibration_Stat92: 2.27071856e-08 + syst_JES_EtaIntercalibration_Stat93: 2.24387167e-08 + syst_JES_EtaIntercalibration_Stat94: 2.55131084e-08 + syst_JES_EtaIntercalibration_Stat95: 8.38331633e-19 + syst_JES_EtaIntercalibration_Stat96: 1.68197566e-20 + syst_JES_EtaIntercalibration_Stat97: 1.53113291e-22 + syst_JES_EtaIntercalibration_Stat98: 1.53113291e-22 + syst_JES_EtaIntercalibration_Stat99: 1.53113291e-22 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.41441701e-04 + syst_JES_Flavour_Comp: 3.57008778e-04 + syst_JES_Flavour_Response: 4.34219920e-05 + syst_JES_Gjet_Generator: 4.32815951e-04 + syst_JES_Gjet_OOC: 3.60193740e-04 + syst_JES_Gjet_Purity: 5.87920579e-05 + syst_JES_Gjet_Stat1: 8.80158013e-07 + syst_JES_Gjet_Stat10: 6.99445357e-06 + syst_JES_Gjet_Stat11: 7.17675372e-06 + syst_JES_Gjet_Stat12: 1.92264161e-05 + syst_JES_Gjet_Stat13: 6.85191030e-05 + syst_JES_Gjet_Stat14: 1.93053380e-04 + syst_JES_Gjet_Stat15: 2.70532821e-04 + syst_JES_Gjet_Stat2: 6.06131180e-07 + syst_JES_Gjet_Stat3: 1.10113784e-06 + syst_JES_Gjet_Stat4: 1.10828829e-06 + syst_JES_Gjet_Stat5: 6.00930524e-14 + syst_JES_Gjet_Stat6: 4.01684876e-06 + syst_JES_Gjet_Stat7: 3.67082012e-06 + syst_JES_Gjet_Stat8: 2.40103993e-06 + syst_JES_Gjet_Stat9: 4.00922097e-06 + syst_JES_Gjet_Veto: 3.65615100e-04 + syst_JES_Gjet_dPhi: 3.48350642e-05 + syst_JES_LArESZee: 6.58704917e-04 + syst_JES_LArEsmear: 5.55046095e-05 + syst_JES_LAr_JVT: 6.94064657e-05 + syst_JES_MJB_Alpha: 4.33065045e-06 + syst_JES_MJB_Asym: 8.41818287e-05 + syst_JES_MJB_Beta: 4.89430536e-06 + syst_JES_MJB_Fragmentation: 3.92239957e-05 + syst_JES_MJB_Stat1: 1.01983810e-08 + syst_JES_MJB_Stat10: 7.06918897e-06 + syst_JES_MJB_Stat11: 8.01578667e-06 + syst_JES_MJB_Stat12: 1.30386570e-05 + syst_JES_MJB_Stat13: 1.20202530e-05 + syst_JES_MJB_Stat14: 1.16146359e-05 + syst_JES_MJB_Stat15: 1.34429140e-05 + syst_JES_MJB_Stat16: 5.43475860e-06 + syst_JES_MJB_Stat2: 7.87224793e-08 + syst_JES_MJB_Stat3: 4.21407961e-08 + syst_JES_MJB_Stat4: 3.50913494e-08 syst_JES_MJB_Stat5: 0.0 - syst_JES_MJB_Stat6: 7.455612701180232e-07 - syst_JES_MJB_Stat7: 9.89607228904478e-07 - syst_JES_MJB_Stat8: 1.281083669203538e-06 - syst_JES_MJB_Stat9: 4.192179236387681e-06 - syst_JES_MJB_Threshold: 5.466258866903396e-05 - syst_JES_Pileup_MuOffset: 8.714991394143771e-05 - syst_JES_Pileup_NPVOffset: 9.01492333578051e-05 - syst_JES_Pileup_Pt_term: 5.802711176682844e-05 - syst_JES_Pileup_Rho_topology: 0.00011445557522462591 - syst_JES_PunchThrough_MC15: 0.00021079095687434032 + syst_JES_MJB_Stat6: 7.45561270e-07 + syst_JES_MJB_Stat7: 9.89607229e-07 + syst_JES_MJB_Stat8: 1.28108367e-06 + syst_JES_MJB_Stat9: 4.19217924e-06 + syst_JES_MJB_Threshold: 5.46625887e-05 + syst_JES_Pileup_MuOffset: 8.71499139e-05 + syst_JES_Pileup_NPVOffset: 9.01492334e-05 + syst_JES_Pileup_Pt_term: 5.80271118e-05 + syst_JES_Pileup_Rho_topology: 1.14455575e-04 + syst_JES_PunchThrough_MC15: 2.10790957e-04 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.00016087767868787762 - syst_JES_Zjet_MuScale: 1.3090669453851473e-05 - syst_JES_Zjet_MuSmearID: 2.5405536306088875e-06 - syst_JES_Zjet_MuSmearMS: 4.3890899683191724e-05 - syst_JES_Zjet_OOC: 9.83768746962415e-05 - syst_JES_Zjet_Stat1: 8.946763548904151e-06 - syst_JES_Zjet_Stat10: 8.843646532963651e-06 - syst_JES_Zjet_Stat11: 1.1707572197086804e-05 - syst_JES_Zjet_Stat12: 2.8735432831262522e-05 - syst_JES_Zjet_Stat13: 4.5433158320768323e-05 - syst_JES_Zjet_Stat2: 8.188270192781924e-08 - syst_JES_Zjet_Stat3: 3.854323124752257e-06 - syst_JES_Zjet_Stat4: 4.3160114399755706e-06 - syst_JES_Zjet_Stat5: 5.3326710708612064e-06 - syst_JES_Zjet_Stat6: 3.5569308047809984e-06 - syst_JES_Zjet_Stat7: 4.14250440554986e-06 - syst_JES_Zjet_Stat8: 3.7855991269546754e-06 - syst_JES_Zjet_Stat9: 5.501948268568144e-06 - syst_JES_Zjet_Veto: 1.797354931559151e-05 - syst_JES_Zjet_dPhi: 1.63311818310862e-05 - syst_PRW: 3.277e-05 + syst_JES_Zjet_MC: 1.60877679e-04 + syst_JES_Zjet_MuScale: 1.30906695e-05 + syst_JES_Zjet_MuSmearID: 2.54055363e-06 + syst_JES_Zjet_MuSmearMS: 4.38908997e-05 + syst_JES_Zjet_OOC: 9.83768747e-05 + syst_JES_Zjet_Stat1: 8.94676355e-06 + syst_JES_Zjet_Stat10: 8.84364653e-06 + syst_JES_Zjet_Stat11: 1.17075722e-05 + syst_JES_Zjet_Stat12: 2.87354328e-05 + syst_JES_Zjet_Stat13: 4.54331583e-05 + syst_JES_Zjet_Stat2: 8.18827019e-08 + syst_JES_Zjet_Stat3: 3.85432312e-06 + syst_JES_Zjet_Stat4: 4.31601144e-06 + syst_JES_Zjet_Stat5: 5.33267107e-06 + syst_JES_Zjet_Stat6: 3.55693080e-06 + syst_JES_Zjet_Stat7: 4.14250441e-06 + syst_JES_Zjet_Stat8: 3.78559913e-06 + syst_JES_Zjet_Stat9: 5.50194827e-06 + syst_JES_Zjet_Veto: 1.79735493e-05 + syst_JES_Zjet_dPhi: 1.63311818e-05 + syst_PRW: 3.27700000e-05 syst_Unfolding_bias: 8.96e-18 - syst_cleaning: 8.597034183368123e-05 - syst_lumi: 0.0002684 -- stat: 0.00015794 + syst_cleaning: 8.59703418e-05 + syst_lumi: 2.68400000e-04 +- stat: 1.57940000e-04 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.00010121230397041657 - syst_JER_NP1: 2.63883724393908e-05 - syst_JER_NP2: 9.080634049998933e-05 - syst_JER_NP3: 1.4646103474986102e-05 - syst_JER_NP4: 3.0730081353618317e-15 - syst_JER_NP5: 6.7617355760189256e-06 - syst_JER_NP6: 6.080938167750105e-15 - syst_JER_NP7: 7.23363122850481e-15 - syst_JER_NP8: 3.504708020292133e-07 - syst_JES_EtaIntercalibration_Modelling: 0.0007031001280045396 - syst_JES_EtaIntercalibration_NonClosure: 1.0508350715026598e-08 - syst_JES_EtaIntercalibration_Stat0: 4.2010892337583116e-23 + syst_JER_NP0: 1.01212304e-04 + syst_JER_NP1: 2.63883724e-05 + syst_JER_NP2: 9.08063405e-05 + syst_JER_NP3: 1.46461035e-05 + syst_JER_NP4: 3.07300814e-15 + syst_JER_NP5: 6.76173558e-06 + syst_JER_NP6: 6.08093817e-15 + syst_JER_NP7: 7.23363123e-15 + syst_JER_NP8: 3.50470802e-07 + syst_JES_EtaIntercalibration_Modelling: 7.03100128e-04 + syst_JES_EtaIntercalibration_NonClosure: 1.05083507e-08 + syst_JES_EtaIntercalibration_Stat0: 4.20108923e-23 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 1.7065898914345971e-19 - syst_JES_EtaIntercalibration_Stat101: 2.1955664417184007e-15 - syst_JES_EtaIntercalibration_Stat102: 7.652157779046427e-09 - syst_JES_EtaIntercalibration_Stat103: 6.290057419229176e-10 - syst_JES_EtaIntercalibration_Stat104: 2.938692316333066e-16 - syst_JES_EtaIntercalibration_Stat105: 8.236078800011569e-23 - syst_JES_EtaIntercalibration_Stat106: 4.2010892337583116e-23 - syst_JES_EtaIntercalibration_Stat107: 4.2010892337583116e-23 - syst_JES_EtaIntercalibration_Stat108: 4.2010892337583116e-23 - syst_JES_EtaIntercalibration_Stat109: 4.2010892337583116e-23 + syst_JES_EtaIntercalibration_Stat100: 1.70658989e-19 + syst_JES_EtaIntercalibration_Stat101: 2.19556644e-15 + syst_JES_EtaIntercalibration_Stat102: 7.65215778e-09 + syst_JES_EtaIntercalibration_Stat103: 6.29005742e-10 + syst_JES_EtaIntercalibration_Stat104: 2.93869232e-16 + syst_JES_EtaIntercalibration_Stat105: 8.23607880e-23 + syst_JES_EtaIntercalibration_Stat106: 4.20108923e-23 + syst_JES_EtaIntercalibration_Stat107: 4.20108923e-23 + syst_JES_EtaIntercalibration_Stat108: 4.20108923e-23 + syst_JES_EtaIntercalibration_Stat109: 4.20108923e-23 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 1.6392867107373256e-21 - syst_JES_EtaIntercalibration_Stat111: 1.3136977125655658e-15 - syst_JES_EtaIntercalibration_Stat112: 1.970034484284159e-09 - syst_JES_EtaIntercalibration_Stat113: 1.1166394355848828e-08 - syst_JES_EtaIntercalibration_Stat114: 7.463398053096134e-09 - syst_JES_EtaIntercalibration_Stat115: 2.2093674466730858e-16 - syst_JES_EtaIntercalibration_Stat116: 2.7696852429608313e-21 - syst_JES_EtaIntercalibration_Stat117: 4.2010892337583116e-23 - syst_JES_EtaIntercalibration_Stat118: 4.2010892337583116e-23 - syst_JES_EtaIntercalibration_Stat119: 4.2010892337583116e-23 + syst_JES_EtaIntercalibration_Stat110: 1.63928671e-21 + syst_JES_EtaIntercalibration_Stat111: 1.31369771e-15 + syst_JES_EtaIntercalibration_Stat112: 1.97003448e-09 + syst_JES_EtaIntercalibration_Stat113: 1.11663944e-08 + syst_JES_EtaIntercalibration_Stat114: 7.46339805e-09 + syst_JES_EtaIntercalibration_Stat115: 2.20936745e-16 + syst_JES_EtaIntercalibration_Stat116: 2.76968524e-21 + syst_JES_EtaIntercalibration_Stat117: 4.20108923e-23 + syst_JES_EtaIntercalibration_Stat118: 4.20108923e-23 + syst_JES_EtaIntercalibration_Stat119: 4.20108923e-23 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 9.95669406730969e-19 - syst_JES_EtaIntercalibration_Stat121: 7.055628444724113e-09 - syst_JES_EtaIntercalibration_Stat122: 8.749117826958328e-09 - syst_JES_EtaIntercalibration_Stat123: 5.657288367654596e-09 - syst_JES_EtaIntercalibration_Stat124: 9.412426294532138e-10 - syst_JES_EtaIntercalibration_Stat125: 1.8862033294425075e-20 - syst_JES_EtaIntercalibration_Stat126: 4.2010892337583116e-23 - syst_JES_EtaIntercalibration_Stat127: 4.2010892337583116e-23 - syst_JES_EtaIntercalibration_Stat128: 4.2010892337583116e-23 - syst_JES_EtaIntercalibration_Stat129: 4.954712789859772e-16 + syst_JES_EtaIntercalibration_Stat120: 9.95669407e-19 + syst_JES_EtaIntercalibration_Stat121: 7.05562844e-09 + syst_JES_EtaIntercalibration_Stat122: 8.74911783e-09 + syst_JES_EtaIntercalibration_Stat123: 5.65728837e-09 + syst_JES_EtaIntercalibration_Stat124: 9.41242629e-10 + syst_JES_EtaIntercalibration_Stat125: 1.88620333e-20 + syst_JES_EtaIntercalibration_Stat126: 4.20108923e-23 + syst_JES_EtaIntercalibration_Stat127: 4.20108923e-23 + syst_JES_EtaIntercalibration_Stat128: 4.20108923e-23 + syst_JES_EtaIntercalibration_Stat129: 4.95471279e-16 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 3.8457322204146906e-08 - syst_JES_EtaIntercalibration_Stat131: 1.425865361806647e-08 - syst_JES_EtaIntercalibration_Stat132: 3.267035911832008e-08 - syst_JES_EtaIntercalibration_Stat133: 9.39145860609522e-10 - syst_JES_EtaIntercalibration_Stat134: 1.3986310256419346e-08 - syst_JES_EtaIntercalibration_Stat135: 2.783405647763186e-21 + syst_JES_EtaIntercalibration_Stat130: 3.84573222e-08 + syst_JES_EtaIntercalibration_Stat131: 1.42586536e-08 + syst_JES_EtaIntercalibration_Stat132: 3.26703591e-08 + syst_JES_EtaIntercalibration_Stat133: 9.39145861e-10 + syst_JES_EtaIntercalibration_Stat134: 1.39863103e-08 + syst_JES_EtaIntercalibration_Stat135: 2.78340565e-21 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 syst_JES_EtaIntercalibration_Stat138: 0.0 - syst_JES_EtaIntercalibration_Stat139: 3.760527722275159e-15 - syst_JES_EtaIntercalibration_Stat14: 1.7104934637540149e-19 - syst_JES_EtaIntercalibration_Stat140: 1.7289034906552766e-08 - syst_JES_EtaIntercalibration_Stat141: 2.981118828560848e-08 - syst_JES_EtaIntercalibration_Stat142: 4.309555982639047e-08 - syst_JES_EtaIntercalibration_Stat143: 1.071824276642398e-09 - syst_JES_EtaIntercalibration_Stat144: 2.2673165350254914e-17 + syst_JES_EtaIntercalibration_Stat139: 3.76052772e-15 + syst_JES_EtaIntercalibration_Stat14: 1.71049346e-19 + syst_JES_EtaIntercalibration_Stat140: 1.72890349e-08 + syst_JES_EtaIntercalibration_Stat141: 2.98111883e-08 + syst_JES_EtaIntercalibration_Stat142: 4.30955598e-08 + syst_JES_EtaIntercalibration_Stat143: 1.07182428e-09 + syst_JES_EtaIntercalibration_Stat144: 2.26731654e-17 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 6.606899632202687e-17 - syst_JES_EtaIntercalibration_Stat148: 3.814910815403588e-08 - syst_JES_EtaIntercalibration_Stat149: 1.4404836791855714e-08 - syst_JES_EtaIntercalibration_Stat15: 1.705564619932416e-19 - syst_JES_EtaIntercalibration_Stat150: 6.274783620173687e-08 - syst_JES_EtaIntercalibration_Stat151: 1.167256164986932e-08 - syst_JES_EtaIntercalibration_Stat152: 5.625960102062581e-16 + syst_JES_EtaIntercalibration_Stat147: 6.60689963e-17 + syst_JES_EtaIntercalibration_Stat148: 3.81491082e-08 + syst_JES_EtaIntercalibration_Stat149: 1.44048368e-08 + syst_JES_EtaIntercalibration_Stat15: 1.70556462e-19 + syst_JES_EtaIntercalibration_Stat150: 6.27478362e-08 + syst_JES_EtaIntercalibration_Stat151: 1.16725616e-08 + syst_JES_EtaIntercalibration_Stat152: 5.62596010e-16 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 syst_JES_EtaIntercalibration_Stat156: 0.0 - syst_JES_EtaIntercalibration_Stat157: 1.0436332557018053e-15 - syst_JES_EtaIntercalibration_Stat158: 5.6698891523556265e-08 - syst_JES_EtaIntercalibration_Stat159: 3.377484863030477e-08 - syst_JES_EtaIntercalibration_Stat16: 1.698223967316664e-19 - syst_JES_EtaIntercalibration_Stat160: 6.368143430388483e-08 - syst_JES_EtaIntercalibration_Stat161: 9.809634848836118e-10 - syst_JES_EtaIntercalibration_Stat162: 2.2688692133968414e-17 + syst_JES_EtaIntercalibration_Stat157: 1.04363326e-15 + syst_JES_EtaIntercalibration_Stat158: 5.66988915e-08 + syst_JES_EtaIntercalibration_Stat159: 3.37748486e-08 + syst_JES_EtaIntercalibration_Stat16: 1.69822397e-19 + syst_JES_EtaIntercalibration_Stat160: 6.36814343e-08 + syst_JES_EtaIntercalibration_Stat161: 9.80963485e-10 + syst_JES_EtaIntercalibration_Stat162: 2.26886921e-17 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 1.4760937470228642e-16 - syst_JES_EtaIntercalibration_Stat166: 3.093706353227468e-08 - syst_JES_EtaIntercalibration_Stat167: 4.8867194517385584e-08 - syst_JES_EtaIntercalibration_Stat168: 5.1813629615261473e-08 - syst_JES_EtaIntercalibration_Stat169: 2.2200182448574605e-07 - syst_JES_EtaIntercalibration_Stat17: 3.435003161570597e-23 - syst_JES_EtaIntercalibration_Stat170: 1.3986302973426513e-08 + syst_JES_EtaIntercalibration_Stat165: 1.47609375e-16 + syst_JES_EtaIntercalibration_Stat166: 3.09370635e-08 + syst_JES_EtaIntercalibration_Stat167: 4.88671945e-08 + syst_JES_EtaIntercalibration_Stat168: 5.18136296e-08 + syst_JES_EtaIntercalibration_Stat169: 2.22001824e-07 + syst_JES_EtaIntercalibration_Stat17: 3.43500316e-23 + syst_JES_EtaIntercalibration_Stat170: 1.39863030e-08 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 - syst_JES_EtaIntercalibration_Stat175: 1.5298650373242078e-11 - syst_JES_EtaIntercalibration_Stat176: 4.326321532202618e-08 - syst_JES_EtaIntercalibration_Stat177: 1.146156153192051e-07 - syst_JES_EtaIntercalibration_Stat178: 1.7309926537972367e-07 - syst_JES_EtaIntercalibration_Stat179: 1.2440965426766527e-07 + syst_JES_EtaIntercalibration_Stat175: 1.52986504e-11 + syst_JES_EtaIntercalibration_Stat176: 4.32632153e-08 + syst_JES_EtaIntercalibration_Stat177: 1.14615615e-07 + syst_JES_EtaIntercalibration_Stat178: 1.73099265e-07 + syst_JES_EtaIntercalibration_Stat179: 1.24409654e-07 syst_JES_EtaIntercalibration_Stat18: 0.0 - syst_JES_EtaIntercalibration_Stat180: 6.341038006697529e-10 + syst_JES_EtaIntercalibration_Stat180: 6.34103801e-10 syst_JES_EtaIntercalibration_Stat181: 0.0 - syst_JES_EtaIntercalibration_Stat182: 1.5882382606373226e-11 - syst_JES_EtaIntercalibration_Stat183: 2.2733285618229493e-07 - syst_JES_EtaIntercalibration_Stat184: 5.514405566332603e-07 - syst_JES_EtaIntercalibration_Stat185: 1.280944849515388e-06 - syst_JES_EtaIntercalibration_Stat186: 1.8010104406971106e-07 - syst_JES_EtaIntercalibration_Stat187: 7.200128553126566e-09 + syst_JES_EtaIntercalibration_Stat182: 1.58823826e-11 + syst_JES_EtaIntercalibration_Stat183: 2.27332856e-07 + syst_JES_EtaIntercalibration_Stat184: 5.51440557e-07 + syst_JES_EtaIntercalibration_Stat185: 1.28094485e-06 + syst_JES_EtaIntercalibration_Stat186: 1.80101044e-07 + syst_JES_EtaIntercalibration_Stat187: 7.20012855e-09 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 - syst_JES_EtaIntercalibration_Stat192: 7.473472351000488e-09 - syst_JES_EtaIntercalibration_Stat193: 3.9814900263594787e-07 - syst_JES_EtaIntercalibration_Stat194: 1.7033801689581805e-06 - syst_JES_EtaIntercalibration_Stat195: 7.641292822553e-07 - syst_JES_EtaIntercalibration_Stat196: 4.383501142922173e-07 - syst_JES_EtaIntercalibration_Stat197: 1.4945128393142028e-09 - syst_JES_EtaIntercalibration_Stat198: 2.99417634751195e-07 - syst_JES_EtaIntercalibration_Stat199: 1.4044250807714877e-06 + syst_JES_EtaIntercalibration_Stat192: 7.47347235e-09 + syst_JES_EtaIntercalibration_Stat193: 3.98149003e-07 + syst_JES_EtaIntercalibration_Stat194: 1.70338017e-06 + syst_JES_EtaIntercalibration_Stat195: 7.64129282e-07 + syst_JES_EtaIntercalibration_Stat196: 4.38350114e-07 + syst_JES_EtaIntercalibration_Stat197: 1.49451284e-09 + syst_JES_EtaIntercalibration_Stat198: 2.99417635e-07 + syst_JES_EtaIntercalibration_Stat199: 1.40442508e-06 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 3.2119283927260895e-06 - syst_JES_EtaIntercalibration_Stat201: 8.940301672762502e-07 - syst_JES_EtaIntercalibration_Stat202: 1.2548601784661113e-08 + syst_JES_EtaIntercalibration_Stat200: 3.21192839e-06 + syst_JES_EtaIntercalibration_Stat201: 8.94030167e-07 + syst_JES_EtaIntercalibration_Stat202: 1.25486018e-08 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 - syst_JES_EtaIntercalibration_Stat207: 2.392189366981636e-08 - syst_JES_EtaIntercalibration_Stat208: 1.2328078763538136e-06 - syst_JES_EtaIntercalibration_Stat209: 3.4239893034295537e-06 + syst_JES_EtaIntercalibration_Stat207: 2.39218937e-08 + syst_JES_EtaIntercalibration_Stat208: 1.23280788e-06 + syst_JES_EtaIntercalibration_Stat209: 3.42398930e-06 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 1.5961356670095435e-06 - syst_JES_EtaIntercalibration_Stat211: 4.613268323780874e-07 - syst_JES_EtaIntercalibration_Stat212: 1.5285552026341738e-06 - syst_JES_EtaIntercalibration_Stat213: 3.5993967202852203e-06 - syst_JES_EtaIntercalibration_Stat214: 8.93042652956733e-07 - syst_JES_EtaIntercalibration_Stat215: 1.3142369393715761e-08 + syst_JES_EtaIntercalibration_Stat210: 1.59613567e-06 + syst_JES_EtaIntercalibration_Stat211: 4.61326832e-07 + syst_JES_EtaIntercalibration_Stat212: 1.52855520e-06 + syst_JES_EtaIntercalibration_Stat213: 3.59939672e-06 + syst_JES_EtaIntercalibration_Stat214: 8.93042653e-07 + syst_JES_EtaIntercalibration_Stat215: 1.31423694e-08 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 syst_JES_EtaIntercalibration_Stat219: 0.0 - syst_JES_EtaIntercalibration_Stat22: 4.2010892337583116e-23 - syst_JES_EtaIntercalibration_Stat220: 2.2405151193419785e-08 - syst_JES_EtaIntercalibration_Stat221: 9.312819283117225e-07 - syst_JES_EtaIntercalibration_Stat222: 3.4523623795887944e-06 - syst_JES_EtaIntercalibration_Stat223: 2.514332055934538e-06 - syst_JES_EtaIntercalibration_Stat224: 5.603913989347088e-06 - syst_JES_EtaIntercalibration_Stat225: 1.0471931758276504e-05 - syst_JES_EtaIntercalibration_Stat226: 3.039603715947196e-06 - syst_JES_EtaIntercalibration_Stat227: 4.115469718027336e-08 + syst_JES_EtaIntercalibration_Stat22: 4.20108923e-23 + syst_JES_EtaIntercalibration_Stat220: 2.24051512e-08 + syst_JES_EtaIntercalibration_Stat221: 9.31281928e-07 + syst_JES_EtaIntercalibration_Stat222: 3.45236238e-06 + syst_JES_EtaIntercalibration_Stat223: 2.51433206e-06 + syst_JES_EtaIntercalibration_Stat224: 5.60391399e-06 + syst_JES_EtaIntercalibration_Stat225: 1.04719318e-05 + syst_JES_EtaIntercalibration_Stat226: 3.03960372e-06 + syst_JES_EtaIntercalibration_Stat227: 4.11546972e-08 syst_JES_EtaIntercalibration_Stat228: 0.0 syst_JES_EtaIntercalibration_Stat229: 0.0 - syst_JES_EtaIntercalibration_Stat23: 4.2010892337583116e-23 + syst_JES_EtaIntercalibration_Stat23: 4.20108923e-23 syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 - syst_JES_EtaIntercalibration_Stat232: 6.499776073065902e-08 - syst_JES_EtaIntercalibration_Stat233: 3.1421404340831108e-06 - syst_JES_EtaIntercalibration_Stat234: 9.080153123708872e-06 - syst_JES_EtaIntercalibration_Stat235: 7.93806449961198e-06 - syst_JES_EtaIntercalibration_Stat236: 2.132585461359052e-06 - syst_JES_EtaIntercalibration_Stat237: 4.867973294914425e-07 - syst_JES_EtaIntercalibration_Stat238: 1.2695932419479872e-08 + syst_JES_EtaIntercalibration_Stat232: 6.49977607e-08 + syst_JES_EtaIntercalibration_Stat233: 3.14214043e-06 + syst_JES_EtaIntercalibration_Stat234: 9.08015312e-06 + syst_JES_EtaIntercalibration_Stat235: 7.93806450e-06 + syst_JES_EtaIntercalibration_Stat236: 2.13258546e-06 + syst_JES_EtaIntercalibration_Stat237: 4.86797329e-07 + syst_JES_EtaIntercalibration_Stat238: 1.26959324e-08 syst_JES_EtaIntercalibration_Stat239: 0.0 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 - syst_JES_EtaIntercalibration_Stat243: 7.65341511821017e-09 - syst_JES_EtaIntercalibration_Stat244: 4.013356040460402e-07 - syst_JES_EtaIntercalibration_Stat245: 2.606775162916817e-06 - syst_JES_EtaIntercalibration_Stat25: 2.9237017631762646e-23 - syst_JES_EtaIntercalibration_Stat26: 1.4795484674386304e-21 - syst_JES_EtaIntercalibration_Stat27: 1.8011144857282117e-19 - syst_JES_EtaIntercalibration_Stat28: 1.3986310271015394e-08 - syst_JES_EtaIntercalibration_Stat29: 1.8625742267088312e-19 + syst_JES_EtaIntercalibration_Stat243: 7.65341512e-09 + syst_JES_EtaIntercalibration_Stat244: 4.01335604e-07 + syst_JES_EtaIntercalibration_Stat245: 2.60677516e-06 + syst_JES_EtaIntercalibration_Stat25: 2.92370176e-23 + syst_JES_EtaIntercalibration_Stat26: 1.47954847e-21 + syst_JES_EtaIntercalibration_Stat27: 1.80111449e-19 + syst_JES_EtaIntercalibration_Stat28: 1.39863103e-08 + syst_JES_EtaIntercalibration_Stat29: 1.86257423e-19 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 1.7058533157044892e-22 + syst_JES_EtaIntercalibration_Stat30: 1.70585332e-22 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 6.239556909749282e-23 - syst_JES_EtaIntercalibration_Stat36: 1.6722130643775632e-19 - syst_JES_EtaIntercalibration_Stat37: 1.172425192677696e-11 - syst_JES_EtaIntercalibration_Stat38: 1.1725983977873204e-11 - syst_JES_EtaIntercalibration_Stat39: 2.1644678779552262e-20 - syst_JES_EtaIntercalibration_Stat4: 4.0088315941181665e-23 - syst_JES_EtaIntercalibration_Stat40: 4.768335873237119e-23 + syst_JES_EtaIntercalibration_Stat35: 6.23955691e-23 + syst_JES_EtaIntercalibration_Stat36: 1.67221306e-19 + syst_JES_EtaIntercalibration_Stat37: 1.17242519e-11 + syst_JES_EtaIntercalibration_Stat38: 1.17259840e-11 + syst_JES_EtaIntercalibration_Stat39: 2.16446788e-20 + syst_JES_EtaIntercalibration_Stat4: 4.00883159e-23 + syst_JES_EtaIntercalibration_Stat40: 4.76833587e-23 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 - syst_JES_EtaIntercalibration_Stat44: 4.2010892337583116e-23 + syst_JES_EtaIntercalibration_Stat44: 4.20108923e-23 syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 - syst_JES_EtaIntercalibration_Stat47: 2.924567788580049e-23 - syst_JES_EtaIntercalibration_Stat48: 1.4209730495333118e-20 - syst_JES_EtaIntercalibration_Stat49: 4.197005956631465e-19 - syst_JES_EtaIntercalibration_Stat5: 1.3190787808163694e-21 - syst_JES_EtaIntercalibration_Stat50: 1.3986310271070966e-08 - syst_JES_EtaIntercalibration_Stat51: 2.1959251456164782e-16 - syst_JES_EtaIntercalibration_Stat52: 8.631442289675579e-22 + syst_JES_EtaIntercalibration_Stat47: 2.92456779e-23 + syst_JES_EtaIntercalibration_Stat48: 1.42097305e-20 + syst_JES_EtaIntercalibration_Stat49: 4.19700596e-19 + syst_JES_EtaIntercalibration_Stat5: 1.31907878e-21 + syst_JES_EtaIntercalibration_Stat50: 1.39863103e-08 + syst_JES_EtaIntercalibration_Stat51: 2.19592515e-16 + syst_JES_EtaIntercalibration_Stat52: 8.63144229e-22 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 syst_JES_EtaIntercalibration_Stat56: 0.0 - syst_JES_EtaIntercalibration_Stat57: 1.710557818302295e-19 - syst_JES_EtaIntercalibration_Stat58: 1.5239309720259642e-19 - syst_JES_EtaIntercalibration_Stat59: 9.39377869687806e-10 - syst_JES_EtaIntercalibration_Stat6: 8.338700303404603e-21 - syst_JES_EtaIntercalibration_Stat60: 1.1641980135561566e-11 - syst_JES_EtaIntercalibration_Stat61: 2.5079201623656208e-19 - syst_JES_EtaIntercalibration_Stat62: 3.503938783711839e-23 + syst_JES_EtaIntercalibration_Stat57: 1.71055782e-19 + syst_JES_EtaIntercalibration_Stat58: 1.52393097e-19 + syst_JES_EtaIntercalibration_Stat59: 9.39377870e-10 + syst_JES_EtaIntercalibration_Stat6: 8.33870030e-21 + syst_JES_EtaIntercalibration_Stat60: 1.16419801e-11 + syst_JES_EtaIntercalibration_Stat61: 2.50792016e-19 + syst_JES_EtaIntercalibration_Stat62: 3.50393878e-23 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 - syst_JES_EtaIntercalibration_Stat69: 4.5107738526776097e-23 - syst_JES_EtaIntercalibration_Stat7: 8.447593799420045e-22 - syst_JES_EtaIntercalibration_Stat70: 2.197230913559155e-19 - syst_JES_EtaIntercalibration_Stat71: 3.4197611145057335e-08 - syst_JES_EtaIntercalibration_Stat72: 1.3388752677930795e-08 - syst_JES_EtaIntercalibration_Stat73: 1.3986310270220327e-08 - syst_JES_EtaIntercalibration_Stat74: 2.4066928943053786e-20 + syst_JES_EtaIntercalibration_Stat69: 4.51077385e-23 + syst_JES_EtaIntercalibration_Stat7: 8.44759380e-22 + syst_JES_EtaIntercalibration_Stat70: 2.19723091e-19 + syst_JES_EtaIntercalibration_Stat71: 3.41976111e-08 + syst_JES_EtaIntercalibration_Stat72: 1.33887527e-08 + syst_JES_EtaIntercalibration_Stat73: 1.39863103e-08 + syst_JES_EtaIntercalibration_Stat74: 2.40669289e-20 syst_JES_EtaIntercalibration_Stat75: 0.0 syst_JES_EtaIntercalibration_Stat76: 0.0 syst_JES_EtaIntercalibration_Stat77: 0.0 syst_JES_EtaIntercalibration_Stat78: 0.0 - syst_JES_EtaIntercalibration_Stat79: 1.6920930574882694e-19 + syst_JES_EtaIntercalibration_Stat79: 1.69209306e-19 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 1.4326314948373849e-15 - syst_JES_EtaIntercalibration_Stat81: 7.652464915921585e-09 - syst_JES_EtaIntercalibration_Stat82: 6.397440292560378e-10 - syst_JES_EtaIntercalibration_Stat83: 2.365789525718634e-17 - syst_JES_EtaIntercalibration_Stat84: 3.3090003022060907e-23 - syst_JES_EtaIntercalibration_Stat85: 4.2010892337583116e-23 - syst_JES_EtaIntercalibration_Stat86: 4.2010892337583116e-23 - syst_JES_EtaIntercalibration_Stat87: 4.2010892337583116e-23 - syst_JES_EtaIntercalibration_Stat88: 4.2010892337583116e-23 - syst_JES_EtaIntercalibration_Stat89: 4.2010892337583116e-23 + syst_JES_EtaIntercalibration_Stat80: 1.43263149e-15 + syst_JES_EtaIntercalibration_Stat81: 7.65246492e-09 + syst_JES_EtaIntercalibration_Stat82: 6.39744029e-10 + syst_JES_EtaIntercalibration_Stat83: 2.36578953e-17 + syst_JES_EtaIntercalibration_Stat84: 3.30900030e-23 + syst_JES_EtaIntercalibration_Stat85: 4.20108923e-23 + syst_JES_EtaIntercalibration_Stat86: 4.20108923e-23 + syst_JES_EtaIntercalibration_Stat87: 4.20108923e-23 + syst_JES_EtaIntercalibration_Stat88: 4.20108923e-23 + syst_JES_EtaIntercalibration_Stat89: 4.20108923e-23 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 3.1406614012139226e-17 - syst_JES_EtaIntercalibration_Stat92: 3.41976112144993e-08 - syst_JES_EtaIntercalibration_Stat93: 1.3388752508940389e-08 - syst_JES_EtaIntercalibration_Stat94: 1.3986310265544366e-08 - syst_JES_EtaIntercalibration_Stat95: 1.661163781058328e-19 - syst_JES_EtaIntercalibration_Stat96: 2.7696852429608313e-21 - syst_JES_EtaIntercalibration_Stat97: 4.2010892337583116e-23 - syst_JES_EtaIntercalibration_Stat98: 4.2010892337583116e-23 - syst_JES_EtaIntercalibration_Stat99: 4.2010892337583116e-23 - syst_JES_EtaIntercalibration_TotalStat_MJB: 8.737795645928096e-05 - syst_JES_Flavour_Comp: 0.00021214450263912097 - syst_JES_Flavour_Response: 3.2925816618574554e-05 - syst_JES_Gjet_Generator: 0.00024872379761494475 - syst_JES_Gjet_OOC: 0.00020870253951497573 - syst_JES_Gjet_Purity: 3.417696702459128e-05 - syst_JES_Gjet_Stat1: 5.163685892848247e-07 - syst_JES_Gjet_Stat10: 4.452544441103312e-06 - syst_JES_Gjet_Stat11: 4.5717037305582264e-06 - syst_JES_Gjet_Stat12: 1.1461524505928521e-05 - syst_JES_Gjet_Stat13: 4.035380913866745e-05 - syst_JES_Gjet_Stat14: 0.00011258846954728533 - syst_JES_Gjet_Stat15: 0.00016979146032707298 - syst_JES_Gjet_Stat2: 6.870179528221585e-07 - syst_JES_Gjet_Stat3: 7.927321237341149e-07 - syst_JES_Gjet_Stat4: 5.993379096970256e-07 - syst_JES_Gjet_Stat5: 9.3702917875934e-15 - syst_JES_Gjet_Stat6: 2.297406146069954e-06 - syst_JES_Gjet_Stat7: 2.0514050672648734e-06 - syst_JES_Gjet_Stat8: 1.480454054504901e-06 - syst_JES_Gjet_Stat9: 2.353249402422106e-06 - syst_JES_Gjet_Veto: 0.00021251134087384608 - syst_JES_Gjet_dPhi: 2.122501060070407e-05 - syst_JES_LArESZee: 0.00037557520844699004 - syst_JES_LArEsmear: 3.313370300766276e-05 - syst_JES_LAr_JVT: 4.150697863010508e-05 - syst_JES_MJB_Alpha: 2.8930365967266986e-06 - syst_JES_MJB_Asym: 5.39918834177879e-05 - syst_JES_MJB_Beta: 3.1689043453534536e-06 - syst_JES_MJB_Fragmentation: 2.2658585017604254e-05 - syst_JES_MJB_Stat1: 4.329271238695914e-09 - syst_JES_MJB_Stat10: 3.8051763099756625e-06 - syst_JES_MJB_Stat11: 4.635611798889117e-06 - syst_JES_MJB_Stat12: 8.184503940374151e-06 - syst_JES_MJB_Stat13: 9.103106763627459e-06 - syst_JES_MJB_Stat14: 9.655971869780896e-06 - syst_JES_MJB_Stat15: 1.2610257650024443e-05 - syst_JES_MJB_Stat16: 2.8162909562046324e-06 - syst_JES_MJB_Stat2: 3.779025280082154e-08 - syst_JES_MJB_Stat3: 7.549143444788951e-09 - syst_JES_MJB_Stat4: 6.3072630157620665e-09 + syst_JES_EtaIntercalibration_Stat91: 3.14066140e-17 + syst_JES_EtaIntercalibration_Stat92: 3.41976112e-08 + syst_JES_EtaIntercalibration_Stat93: 1.33887525e-08 + syst_JES_EtaIntercalibration_Stat94: 1.39863103e-08 + syst_JES_EtaIntercalibration_Stat95: 1.66116378e-19 + syst_JES_EtaIntercalibration_Stat96: 2.76968524e-21 + syst_JES_EtaIntercalibration_Stat97: 4.20108923e-23 + syst_JES_EtaIntercalibration_Stat98: 4.20108923e-23 + syst_JES_EtaIntercalibration_Stat99: 4.20108923e-23 + syst_JES_EtaIntercalibration_TotalStat_MJB: 8.73779565e-05 + syst_JES_Flavour_Comp: 2.12144503e-04 + syst_JES_Flavour_Response: 3.29258166e-05 + syst_JES_Gjet_Generator: 2.48723798e-04 + syst_JES_Gjet_OOC: 2.08702540e-04 + syst_JES_Gjet_Purity: 3.41769670e-05 + syst_JES_Gjet_Stat1: 5.16368589e-07 + syst_JES_Gjet_Stat10: 4.45254444e-06 + syst_JES_Gjet_Stat11: 4.57170373e-06 + syst_JES_Gjet_Stat12: 1.14615245e-05 + syst_JES_Gjet_Stat13: 4.03538091e-05 + syst_JES_Gjet_Stat14: 1.12588470e-04 + syst_JES_Gjet_Stat15: 1.69791460e-04 + syst_JES_Gjet_Stat2: 6.87017953e-07 + syst_JES_Gjet_Stat3: 7.92732124e-07 + syst_JES_Gjet_Stat4: 5.99337910e-07 + syst_JES_Gjet_Stat5: 9.37029179e-15 + syst_JES_Gjet_Stat6: 2.29740615e-06 + syst_JES_Gjet_Stat7: 2.05140507e-06 + syst_JES_Gjet_Stat8: 1.48045405e-06 + syst_JES_Gjet_Stat9: 2.35324940e-06 + syst_JES_Gjet_Veto: 2.12511341e-04 + syst_JES_Gjet_dPhi: 2.12250106e-05 + syst_JES_LArESZee: 3.75575208e-04 + syst_JES_LArEsmear: 3.31337030e-05 + syst_JES_LAr_JVT: 4.15069786e-05 + syst_JES_MJB_Alpha: 2.89303660e-06 + syst_JES_MJB_Asym: 5.39918834e-05 + syst_JES_MJB_Beta: 3.16890435e-06 + syst_JES_MJB_Fragmentation: 2.26585850e-05 + syst_JES_MJB_Stat1: 4.32927124e-09 + syst_JES_MJB_Stat10: 3.80517631e-06 + syst_JES_MJB_Stat11: 4.63561180e-06 + syst_JES_MJB_Stat12: 8.18450394e-06 + syst_JES_MJB_Stat13: 9.10310676e-06 + syst_JES_MJB_Stat14: 9.65597187e-06 + syst_JES_MJB_Stat15: 1.26102577e-05 + syst_JES_MJB_Stat16: 2.81629096e-06 + syst_JES_MJB_Stat2: 3.77902528e-08 + syst_JES_MJB_Stat3: 7.54914344e-09 + syst_JES_MJB_Stat4: 6.30726302e-09 syst_JES_MJB_Stat5: 0.0 - syst_JES_MJB_Stat6: 4.030482229212778e-07 - syst_JES_MJB_Stat7: 5.395338265577053e-07 - syst_JES_MJB_Stat8: 6.894585756229304e-07 - syst_JES_MJB_Stat9: 2.364965489705928e-06 - syst_JES_MJB_Threshold: 3.501925577450212e-05 - syst_JES_Pileup_MuOffset: 5.230774703617047e-05 - syst_JES_Pileup_NPVOffset: 5.374847974594258e-05 - syst_JES_Pileup_Pt_term: 3.3229750224760946e-05 - syst_JES_Pileup_Rho_topology: 6.68647358478294e-05 - syst_JES_PunchThrough_MC15: 0.00014254788248164194 + syst_JES_MJB_Stat6: 4.03048223e-07 + syst_JES_MJB_Stat7: 5.39533827e-07 + syst_JES_MJB_Stat8: 6.89458576e-07 + syst_JES_MJB_Stat9: 2.36496549e-06 + syst_JES_MJB_Threshold: 3.50192558e-05 + syst_JES_Pileup_MuOffset: 5.23077470e-05 + syst_JES_Pileup_NPVOffset: 5.37484797e-05 + syst_JES_Pileup_Pt_term: 3.32297502e-05 + syst_JES_Pileup_Rho_topology: 6.68647358e-05 + syst_JES_PunchThrough_MC15: 1.42547882e-04 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 9.467174908598657e-05 - syst_JES_Zjet_MuScale: 8.11326215218022e-06 - syst_JES_Zjet_MuSmearID: 1.6469335953522838e-06 - syst_JES_Zjet_MuSmearMS: 2.5769703141479916e-05 - syst_JES_Zjet_OOC: 5.901017030987116e-05 - syst_JES_Zjet_Stat1: 6.445513478381687e-06 - syst_JES_Zjet_Stat10: 5.38604370108524e-06 - syst_JES_Zjet_Stat11: 7.208777618292855e-06 - syst_JES_Zjet_Stat12: 1.680874995352123e-05 - syst_JES_Zjet_Stat13: 2.6183298111582508e-05 - syst_JES_Zjet_Stat2: 5.108683856924421e-08 - syst_JES_Zjet_Stat3: 2.3854384817051983e-06 - syst_JES_Zjet_Stat4: 2.635200751366013e-06 - syst_JES_Zjet_Stat5: 3.536102656880877e-06 - syst_JES_Zjet_Stat6: 2.0375148465716763e-06 - syst_JES_Zjet_Stat7: 2.5850711789039776e-06 - syst_JES_Zjet_Stat8: 2.1193915990208134e-06 - syst_JES_Zjet_Stat9: 3.330738943162613e-06 - syst_JES_Zjet_Veto: 1.1183226938142677e-05 - syst_JES_Zjet_dPhi: 9.978963611016928e-06 - syst_PRW: 2.215e-05 - syst_Unfolding_bias: 2.189e-18 - syst_cleaning: 4.649690392918651e-05 - syst_lumi: 0.0001451 -- stat: 0.00011602 + syst_JES_Zjet_MC: 9.46717491e-05 + syst_JES_Zjet_MuScale: 8.11326215e-06 + syst_JES_Zjet_MuSmearID: 1.64693360e-06 + syst_JES_Zjet_MuSmearMS: 2.57697031e-05 + syst_JES_Zjet_OOC: 5.90101703e-05 + syst_JES_Zjet_Stat1: 6.44551348e-06 + syst_JES_Zjet_Stat10: 5.38604370e-06 + syst_JES_Zjet_Stat11: 7.20877762e-06 + syst_JES_Zjet_Stat12: 1.68087500e-05 + syst_JES_Zjet_Stat13: 2.61832981e-05 + syst_JES_Zjet_Stat2: 5.10868386e-08 + syst_JES_Zjet_Stat3: 2.38543848e-06 + syst_JES_Zjet_Stat4: 2.63520075e-06 + syst_JES_Zjet_Stat5: 3.53610266e-06 + syst_JES_Zjet_Stat6: 2.03751485e-06 + syst_JES_Zjet_Stat7: 2.58507118e-06 + syst_JES_Zjet_Stat8: 2.11939160e-06 + syst_JES_Zjet_Stat9: 3.33073894e-06 + syst_JES_Zjet_Veto: 1.11832269e-05 + syst_JES_Zjet_dPhi: 9.97896361e-06 + syst_PRW: 2.21500000e-05 + syst_Unfolding_bias: 2.18900000e-18 + syst_cleaning: 4.64969039e-05 + syst_lumi: 1.45100000e-04 +- stat: 1.16020000e-04 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 6.237429338277108e-05 - syst_JER_NP1: 1.7716632721823866e-05 - syst_JER_NP2: 5.8151508148972376e-05 - syst_JER_NP3: 1.0748482532432196e-05 - syst_JER_NP4: 5.912016914725465e-16 - syst_JER_NP5: 3.618725293525332e-06 - syst_JER_NP6: 1.1687013433722062e-15 - syst_JER_NP7: 1.386572998438957e-15 - syst_JER_NP8: 7.674868256198278e-08 - syst_JES_EtaIntercalibration_Modelling: 0.0004165917573596482 - syst_JES_EtaIntercalibration_NonClosure: 2.3495142732062727e-09 - syst_JES_EtaIntercalibration_Stat0: 1.2999041310804423e-23 + syst_JER_NP0: 6.23742934e-05 + syst_JER_NP1: 1.77166327e-05 + syst_JER_NP2: 5.81515081e-05 + syst_JER_NP3: 1.07484825e-05 + syst_JER_NP4: 5.91201691e-16 + syst_JER_NP5: 3.61872529e-06 + syst_JER_NP6: 1.16870134e-15 + syst_JER_NP7: 1.38657300e-15 + syst_JER_NP8: 7.67486826e-08 + syst_JES_EtaIntercalibration_Modelling: 4.16591757e-04 + syst_JES_EtaIntercalibration_NonClosure: 2.34951427e-09 + syst_JES_EtaIntercalibration_Stat0: 1.29990413e-23 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 3.761125206221537e-20 - syst_JES_EtaIntercalibration_Stat101: 3.882619734148581e-16 - syst_JES_EtaIntercalibration_Stat102: 4.34131572045296e-09 - syst_JES_EtaIntercalibration_Stat103: 7.778560020980748e-11 - syst_JES_EtaIntercalibration_Stat104: 5.225604534405565e-17 - syst_JES_EtaIntercalibration_Stat105: 2.668335437590259e-23 - syst_JES_EtaIntercalibration_Stat106: 1.2999041310804423e-23 - syst_JES_EtaIntercalibration_Stat107: 1.2999041310804423e-23 - syst_JES_EtaIntercalibration_Stat108: 1.2999041310804423e-23 - syst_JES_EtaIntercalibration_Stat109: 1.2999041310804423e-23 + syst_JES_EtaIntercalibration_Stat100: 3.76112521e-20 + syst_JES_EtaIntercalibration_Stat101: 3.88261973e-16 + syst_JES_EtaIntercalibration_Stat102: 4.34131572e-09 + syst_JES_EtaIntercalibration_Stat103: 7.77856002e-11 + syst_JES_EtaIntercalibration_Stat104: 5.22560453e-17 + syst_JES_EtaIntercalibration_Stat105: 2.66833544e-23 + syst_JES_EtaIntercalibration_Stat106: 1.29990413e-23 + syst_JES_EtaIntercalibration_Stat107: 1.29990413e-23 + syst_JES_EtaIntercalibration_Stat108: 1.29990413e-23 + syst_JES_EtaIntercalibration_Stat109: 1.29990413e-23 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 4.495137039067885e-22 - syst_JES_EtaIntercalibration_Stat111: 2.2127455795911107e-16 - syst_JES_EtaIntercalibration_Stat112: 2.0645577149006922e-08 - syst_JES_EtaIntercalibration_Stat113: 1.1396050502124234e-08 - syst_JES_EtaIntercalibration_Stat114: 5.5364989682158895e-09 - syst_JES_EtaIntercalibration_Stat115: 3.418293018452339e-17 - syst_JES_EtaIntercalibration_Stat116: 4.60106457328084e-22 - syst_JES_EtaIntercalibration_Stat117: 1.2999041310804423e-23 - syst_JES_EtaIntercalibration_Stat118: 1.2999041310804423e-23 - syst_JES_EtaIntercalibration_Stat119: 1.2999041310804423e-23 + syst_JES_EtaIntercalibration_Stat110: 4.49513704e-22 + syst_JES_EtaIntercalibration_Stat111: 2.21274558e-16 + syst_JES_EtaIntercalibration_Stat112: 2.06455771e-08 + syst_JES_EtaIntercalibration_Stat113: 1.13960505e-08 + syst_JES_EtaIntercalibration_Stat114: 5.53649897e-09 + syst_JES_EtaIntercalibration_Stat115: 3.41829302e-17 + syst_JES_EtaIntercalibration_Stat116: 4.60106457e-22 + syst_JES_EtaIntercalibration_Stat117: 1.29990413e-23 + syst_JES_EtaIntercalibration_Stat118: 1.29990413e-23 + syst_JES_EtaIntercalibration_Stat119: 1.29990413e-23 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 2.0533462323729043e-19 - syst_JES_EtaIntercalibration_Stat121: 4.155821370980711e-09 - syst_JES_EtaIntercalibration_Stat122: 4.6020123283189925e-09 - syst_JES_EtaIntercalibration_Stat123: 4.0986650176649895e-09 - syst_JES_EtaIntercalibration_Stat124: 1.6191423748392232e-10 - syst_JES_EtaIntercalibration_Stat125: 4.692991663107873e-21 - syst_JES_EtaIntercalibration_Stat126: 1.2999041310804423e-23 - syst_JES_EtaIntercalibration_Stat127: 1.2999041310804423e-23 - syst_JES_EtaIntercalibration_Stat128: 1.2999041310804423e-23 - syst_JES_EtaIntercalibration_Stat129: 9.144622505467352e-17 + syst_JES_EtaIntercalibration_Stat120: 2.05334623e-19 + syst_JES_EtaIntercalibration_Stat121: 4.15582137e-09 + syst_JES_EtaIntercalibration_Stat122: 4.60201233e-09 + syst_JES_EtaIntercalibration_Stat123: 4.09866502e-09 + syst_JES_EtaIntercalibration_Stat124: 1.61914237e-10 + syst_JES_EtaIntercalibration_Stat125: 4.69299166e-21 + syst_JES_EtaIntercalibration_Stat126: 1.29990413e-23 + syst_JES_EtaIntercalibration_Stat127: 1.29990413e-23 + syst_JES_EtaIntercalibration_Stat128: 1.29990413e-23 + syst_JES_EtaIntercalibration_Stat129: 9.14462251e-17 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 4.466910883783857e-08 - syst_JES_EtaIntercalibration_Stat131: 1.0935779200404515e-08 - syst_JES_EtaIntercalibration_Stat132: 1.0205822638082635e-08 - syst_JES_EtaIntercalibration_Stat133: 1.98213809669937e-08 - syst_JES_EtaIntercalibration_Stat134: 8.279202857620416e-09 - syst_JES_EtaIntercalibration_Stat135: 4.642762189688376e-22 + syst_JES_EtaIntercalibration_Stat130: 4.46691088e-08 + syst_JES_EtaIntercalibration_Stat131: 1.09357792e-08 + syst_JES_EtaIntercalibration_Stat132: 1.02058226e-08 + syst_JES_EtaIntercalibration_Stat133: 1.98213810e-08 + syst_JES_EtaIntercalibration_Stat134: 8.27920286e-09 + syst_JES_EtaIntercalibration_Stat135: 4.64276219e-22 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 syst_JES_EtaIntercalibration_Stat138: 0.0 - syst_JES_EtaIntercalibration_Stat139: 6.659009141756752e-16 - syst_JES_EtaIntercalibration_Stat14: 3.75625454524368e-20 - syst_JES_EtaIntercalibration_Stat140: 2.0916648871174367e-09 - syst_JES_EtaIntercalibration_Stat141: 4.663843130938261e-08 - syst_JES_EtaIntercalibration_Stat142: 4.816293789834669e-08 - syst_JES_EtaIntercalibration_Stat143: 9.893155752842466e-11 - syst_JES_EtaIntercalibration_Stat144: 4.513650712006856e-18 + syst_JES_EtaIntercalibration_Stat139: 6.65900914e-16 + syst_JES_EtaIntercalibration_Stat14: 3.75625455e-20 + syst_JES_EtaIntercalibration_Stat140: 2.09166489e-09 + syst_JES_EtaIntercalibration_Stat141: 4.66384313e-08 + syst_JES_EtaIntercalibration_Stat142: 4.81629379e-08 + syst_JES_EtaIntercalibration_Stat143: 9.89315575e-11 + syst_JES_EtaIntercalibration_Stat144: 4.51365071e-18 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 1.0556533273286264e-17 - syst_JES_EtaIntercalibration_Stat148: 4.4591759707294824e-08 - syst_JES_EtaIntercalibration_Stat149: 1.0897722757874693e-08 - syst_JES_EtaIntercalibration_Stat15: 3.74407656852999e-20 - syst_JES_EtaIntercalibration_Stat150: 4.573610031769215e-08 - syst_JES_EtaIntercalibration_Stat151: 1.123575861903414e-08 - syst_JES_EtaIntercalibration_Stat152: 9.250133551468326e-17 + syst_JES_EtaIntercalibration_Stat147: 1.05565333e-17 + syst_JES_EtaIntercalibration_Stat148: 4.45917597e-08 + syst_JES_EtaIntercalibration_Stat149: 1.08977228e-08 + syst_JES_EtaIntercalibration_Stat15: 3.74407657e-20 + syst_JES_EtaIntercalibration_Stat150: 4.57361003e-08 + syst_JES_EtaIntercalibration_Stat151: 1.12357586e-08 + syst_JES_EtaIntercalibration_Stat152: 9.25013355e-17 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 syst_JES_EtaIntercalibration_Stat156: 0.0 - syst_JES_EtaIntercalibration_Stat157: 1.7567365244395642e-16 - syst_JES_EtaIntercalibration_Stat158: 2.624551413099008e-08 - syst_JES_EtaIntercalibration_Stat159: 5.073228040409774e-08 - syst_JES_EtaIntercalibration_Stat16: 3.7281969693714883e-20 - syst_JES_EtaIntercalibration_Stat160: 6.427505328663679e-08 - syst_JES_EtaIntercalibration_Stat161: 7.54385001640409e-11 - syst_JES_EtaIntercalibration_Stat162: 4.536098562366122e-18 + syst_JES_EtaIntercalibration_Stat157: 1.75673652e-16 + syst_JES_EtaIntercalibration_Stat158: 2.62455141e-08 + syst_JES_EtaIntercalibration_Stat159: 5.07322804e-08 + syst_JES_EtaIntercalibration_Stat16: 3.72819697e-20 + syst_JES_EtaIntercalibration_Stat160: 6.42750533e-08 + syst_JES_EtaIntercalibration_Stat161: 7.54385002e-11 + syst_JES_EtaIntercalibration_Stat162: 4.53609856e-18 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 2.3114191917521148e-17 - syst_JES_EtaIntercalibration_Stat166: 2.0660409162211672e-08 - syst_JES_EtaIntercalibration_Stat167: 1.778908302864428e-08 - syst_JES_EtaIntercalibration_Stat168: 4.206182661163802e-09 - syst_JES_EtaIntercalibration_Stat169: 8.342300037010177e-08 - syst_JES_EtaIntercalibration_Stat17: 1.0614873374185865e-23 - syst_JES_EtaIntercalibration_Stat170: 8.279201677477883e-09 + syst_JES_EtaIntercalibration_Stat165: 2.31141919e-17 + syst_JES_EtaIntercalibration_Stat166: 2.06604092e-08 + syst_JES_EtaIntercalibration_Stat167: 1.77890830e-08 + syst_JES_EtaIntercalibration_Stat168: 4.20618266e-09 + syst_JES_EtaIntercalibration_Stat169: 8.34230004e-08 + syst_JES_EtaIntercalibration_Stat17: 1.06148734e-23 + syst_JES_EtaIntercalibration_Stat170: 8.27920168e-09 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 - syst_JES_EtaIntercalibration_Stat175: 2.4628295738521472e-12 - syst_JES_EtaIntercalibration_Stat176: 2.6470254692909548e-08 - syst_JES_EtaIntercalibration_Stat177: 5.7306321003882286e-08 - syst_JES_EtaIntercalibration_Stat178: 1.0291083069823117e-07 - syst_JES_EtaIntercalibration_Stat179: 5.8477051909274637e-08 + syst_JES_EtaIntercalibration_Stat175: 2.46282957e-12 + syst_JES_EtaIntercalibration_Stat176: 2.64702547e-08 + syst_JES_EtaIntercalibration_Stat177: 5.73063210e-08 + syst_JES_EtaIntercalibration_Stat178: 1.02910831e-07 + syst_JES_EtaIntercalibration_Stat179: 5.84770519e-08 syst_JES_EtaIntercalibration_Stat18: 0.0 - syst_JES_EtaIntercalibration_Stat180: 7.708492119531291e-11 + syst_JES_EtaIntercalibration_Stat180: 7.70849212e-11 syst_JES_EtaIntercalibration_Stat181: 0.0 - syst_JES_EtaIntercalibration_Stat182: 2.7391541848484763e-12 - syst_JES_EtaIntercalibration_Stat183: 1.139891489353263e-07 - syst_JES_EtaIntercalibration_Stat184: 3.604706229361832e-07 - syst_JES_EtaIntercalibration_Stat185: 8.655846810104718e-07 - syst_JES_EtaIntercalibration_Stat186: 1.0131151797796734e-07 - syst_JES_EtaIntercalibration_Stat187: 4.8540713033715935e-09 + syst_JES_EtaIntercalibration_Stat182: 2.73915418e-12 + syst_JES_EtaIntercalibration_Stat183: 1.13989149e-07 + syst_JES_EtaIntercalibration_Stat184: 3.60470623e-07 + syst_JES_EtaIntercalibration_Stat185: 8.65584681e-07 + syst_JES_EtaIntercalibration_Stat186: 1.01311518e-07 + syst_JES_EtaIntercalibration_Stat187: 4.85407130e-09 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 - syst_JES_EtaIntercalibration_Stat192: 4.527377475894868e-09 - syst_JES_EtaIntercalibration_Stat193: 4.007804511200615e-07 - syst_JES_EtaIntercalibration_Stat194: 9.478542292989992e-07 - syst_JES_EtaIntercalibration_Stat195: 3.5463408476202624e-07 - syst_JES_EtaIntercalibration_Stat196: 1.9167222229629417e-07 - syst_JES_EtaIntercalibration_Stat197: 3.772265363041153e-10 - syst_JES_EtaIntercalibration_Stat198: 2.0749782528980877e-07 - syst_JES_EtaIntercalibration_Stat199: 9.37875108956411e-07 + syst_JES_EtaIntercalibration_Stat192: 4.52737748e-09 + syst_JES_EtaIntercalibration_Stat193: 4.00780451e-07 + syst_JES_EtaIntercalibration_Stat194: 9.47854229e-07 + syst_JES_EtaIntercalibration_Stat195: 3.54634085e-07 + syst_JES_EtaIntercalibration_Stat196: 1.91672222e-07 + syst_JES_EtaIntercalibration_Stat197: 3.77226536e-10 + syst_JES_EtaIntercalibration_Stat198: 2.07497825e-07 + syst_JES_EtaIntercalibration_Stat199: 9.37875109e-07 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 1.9009094533932962e-06 - syst_JES_EtaIntercalibration_Stat201: 5.826121072377401e-07 - syst_JES_EtaIntercalibration_Stat202: 6.9229481487297014e-09 + syst_JES_EtaIntercalibration_Stat200: 1.90090945e-06 + syst_JES_EtaIntercalibration_Stat201: 5.82612107e-07 + syst_JES_EtaIntercalibration_Stat202: 6.92294815e-09 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 - syst_JES_EtaIntercalibration_Stat207: 1.6316015713096136e-09 - syst_JES_EtaIntercalibration_Stat208: 8.135238333939578e-07 - syst_JES_EtaIntercalibration_Stat209: 2.28557799035605e-06 + syst_JES_EtaIntercalibration_Stat207: 1.63160157e-09 + syst_JES_EtaIntercalibration_Stat208: 8.13523833e-07 + syst_JES_EtaIntercalibration_Stat209: 2.28557799e-06 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 8.536159836249553e-07 - syst_JES_EtaIntercalibration_Stat211: 1.5372052298489618e-07 - syst_JES_EtaIntercalibration_Stat212: 9.708586753487864e-07 - syst_JES_EtaIntercalibration_Stat213: 2.1256479012291754e-06 - syst_JES_EtaIntercalibration_Stat214: 5.829765068165269e-07 - syst_JES_EtaIntercalibration_Stat215: 7.071291955519638e-09 + syst_JES_EtaIntercalibration_Stat210: 8.53615984e-07 + syst_JES_EtaIntercalibration_Stat211: 1.53720523e-07 + syst_JES_EtaIntercalibration_Stat212: 9.70858675e-07 + syst_JES_EtaIntercalibration_Stat213: 2.12564790e-06 + syst_JES_EtaIntercalibration_Stat214: 5.82976507e-07 + syst_JES_EtaIntercalibration_Stat215: 7.07129196e-09 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 syst_JES_EtaIntercalibration_Stat219: 0.0 - syst_JES_EtaIntercalibration_Stat22: 1.2999041310804423e-23 - syst_JES_EtaIntercalibration_Stat220: 6.075511892013709e-09 - syst_JES_EtaIntercalibration_Stat221: 5.624660523089372e-07 - syst_JES_EtaIntercalibration_Stat222: 2.309245980834437e-06 - syst_JES_EtaIntercalibration_Stat223: 1.5080933881892062e-06 - syst_JES_EtaIntercalibration_Stat224: 3.6515059181110466e-06 - syst_JES_EtaIntercalibration_Stat225: 6.357153195416955e-06 - syst_JES_EtaIntercalibration_Stat226: 2.2035686397296547e-06 - syst_JES_EtaIntercalibration_Stat227: 3.60972131992208e-08 + syst_JES_EtaIntercalibration_Stat22: 1.29990413e-23 + syst_JES_EtaIntercalibration_Stat220: 6.07551189e-09 + syst_JES_EtaIntercalibration_Stat221: 5.62466052e-07 + syst_JES_EtaIntercalibration_Stat222: 2.30924598e-06 + syst_JES_EtaIntercalibration_Stat223: 1.50809339e-06 + syst_JES_EtaIntercalibration_Stat224: 3.65150592e-06 + syst_JES_EtaIntercalibration_Stat225: 6.35715320e-06 + syst_JES_EtaIntercalibration_Stat226: 2.20356864e-06 + syst_JES_EtaIntercalibration_Stat227: 3.60972132e-08 syst_JES_EtaIntercalibration_Stat228: 0.0 syst_JES_EtaIntercalibration_Stat229: 0.0 - syst_JES_EtaIntercalibration_Stat23: 1.2999041310804423e-23 + syst_JES_EtaIntercalibration_Stat23: 1.29990413e-23 syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 - syst_JES_EtaIntercalibration_Stat232: 3.0689057443166936e-08 - syst_JES_EtaIntercalibration_Stat233: 1.933052939652714e-06 - syst_JES_EtaIntercalibration_Stat234: 5.745034094763929e-06 - syst_JES_EtaIntercalibration_Stat235: 4.4839314223123445e-06 - syst_JES_EtaIntercalibration_Stat236: 1.3863982788145694e-06 - syst_JES_EtaIntercalibration_Stat237: 2.939611198781227e-07 - syst_JES_EtaIntercalibration_Stat238: 7.009609618231246e-09 + syst_JES_EtaIntercalibration_Stat232: 3.06890574e-08 + syst_JES_EtaIntercalibration_Stat233: 1.93305294e-06 + syst_JES_EtaIntercalibration_Stat234: 5.74503409e-06 + syst_JES_EtaIntercalibration_Stat235: 4.48393142e-06 + syst_JES_EtaIntercalibration_Stat236: 1.38639828e-06 + syst_JES_EtaIntercalibration_Stat237: 2.93961120e-07 + syst_JES_EtaIntercalibration_Stat238: 7.00960962e-09 syst_JES_EtaIntercalibration_Stat239: 0.0 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 - syst_JES_EtaIntercalibration_Stat243: 4.370481160361522e-09 - syst_JES_EtaIntercalibration_Stat244: 4.019739763653861e-07 - syst_JES_EtaIntercalibration_Stat245: 1.6637553906749633e-06 - syst_JES_EtaIntercalibration_Stat25: 8.911401404941875e-24 - syst_JES_EtaIntercalibration_Stat26: 4.161387028383685e-22 - syst_JES_EtaIntercalibration_Stat27: 4.117213198268945e-20 - syst_JES_EtaIntercalibration_Stat28: 8.279202860157684e-09 - syst_JES_EtaIntercalibration_Stat29: 4.2123293460981894e-20 + syst_JES_EtaIntercalibration_Stat243: 4.37048116e-09 + syst_JES_EtaIntercalibration_Stat244: 4.01973976e-07 + syst_JES_EtaIntercalibration_Stat245: 1.66375539e-06 + syst_JES_EtaIntercalibration_Stat25: 8.91140140e-24 + syst_JES_EtaIntercalibration_Stat26: 4.16138703e-22 + syst_JES_EtaIntercalibration_Stat27: 4.11721320e-20 + syst_JES_EtaIntercalibration_Stat28: 8.27920286e-09 + syst_JES_EtaIntercalibration_Stat29: 4.21232935e-20 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 4.979926291623201e-23 + syst_JES_EtaIntercalibration_Stat30: 4.97992629e-23 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 1.940846400414005e-23 - syst_JES_EtaIntercalibration_Stat36: 3.675568777220064e-20 - syst_JES_EtaIntercalibration_Stat37: 2.517535846122458e-12 - syst_JES_EtaIntercalibration_Stat38: 2.516669820652567e-12 - syst_JES_EtaIntercalibration_Stat39: 5.50296086484358e-21 - syst_JES_EtaIntercalibration_Stat4: 1.2218752421994646e-23 - syst_JES_EtaIntercalibration_Stat40: 1.5449893203514384e-23 + syst_JES_EtaIntercalibration_Stat35: 1.94084640e-23 + syst_JES_EtaIntercalibration_Stat36: 3.67556878e-20 + syst_JES_EtaIntercalibration_Stat37: 2.51753585e-12 + syst_JES_EtaIntercalibration_Stat38: 2.51666982e-12 + syst_JES_EtaIntercalibration_Stat39: 5.50296086e-21 + syst_JES_EtaIntercalibration_Stat4: 1.22187524e-23 + syst_JES_EtaIntercalibration_Stat40: 1.54498932e-23 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 - syst_JES_EtaIntercalibration_Stat44: 1.2999041310804423e-23 + syst_JES_EtaIntercalibration_Stat44: 1.29990413e-23 syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 - syst_JES_EtaIntercalibration_Stat47: 8.914865506557012e-24 - syst_JES_EtaIntercalibration_Stat48: 3.401264470752017e-21 - syst_JES_EtaIntercalibration_Stat49: 9.244500027043108e-20 - syst_JES_EtaIntercalibration_Stat5: 2.565160813672313e-22 - syst_JES_EtaIntercalibration_Stat50: 8.279202860167933e-09 - syst_JES_EtaIntercalibration_Stat51: 3.4040885350003386e-17 - syst_JES_EtaIntercalibration_Stat52: 1.1617386313194546e-22 + syst_JES_EtaIntercalibration_Stat47: 8.91486551e-24 + syst_JES_EtaIntercalibration_Stat48: 3.40126447e-21 + syst_JES_EtaIntercalibration_Stat49: 9.24450003e-20 + syst_JES_EtaIntercalibration_Stat5: 2.56516081e-22 + syst_JES_EtaIntercalibration_Stat50: 8.27920286e-09 + syst_JES_EtaIntercalibration_Stat51: 3.40408854e-17 + syst_JES_EtaIntercalibration_Stat52: 1.16173863e-22 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 syst_JES_EtaIntercalibration_Stat56: 0.0 - syst_JES_EtaIntercalibration_Stat57: 3.7573086277817265e-20 - syst_JES_EtaIntercalibration_Stat58: 3.347573371862072e-20 - syst_JES_EtaIntercalibration_Stat59: 1.7052041957104516e-10 - syst_JES_EtaIntercalibration_Stat6: 1.5644280328605725e-21 - syst_JES_EtaIntercalibration_Stat60: 2.5339902034747385e-12 - syst_JES_EtaIntercalibration_Stat61: 5.3567765260462383e-20 - syst_JES_EtaIntercalibration_Stat62: 1.082878164892062e-23 + syst_JES_EtaIntercalibration_Stat57: 3.75730863e-20 + syst_JES_EtaIntercalibration_Stat58: 3.34757337e-20 + syst_JES_EtaIntercalibration_Stat59: 1.70520420e-10 + syst_JES_EtaIntercalibration_Stat6: 1.56442803e-21 + syst_JES_EtaIntercalibration_Stat60: 2.53399020e-12 + syst_JES_EtaIntercalibration_Stat61: 5.35677653e-20 + syst_JES_EtaIntercalibration_Stat62: 1.08287816e-23 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 - syst_JES_EtaIntercalibration_Stat69: 1.3837546097484192e-23 - syst_JES_EtaIntercalibration_Stat7: 1.0586405763997524e-22 - syst_JES_EtaIntercalibration_Stat70: 4.9622584575977094e-20 - syst_JES_EtaIntercalibration_Stat71: 4.3474475270068453e-08 - syst_JES_EtaIntercalibration_Stat72: 8.17008364786191e-09 - syst_JES_EtaIntercalibration_Stat73: 8.279202859997973e-09 - syst_JES_EtaIntercalibration_Stat74: 5.8165349193054796e-21 + syst_JES_EtaIntercalibration_Stat69: 1.38375461e-23 + syst_JES_EtaIntercalibration_Stat7: 1.05864058e-22 + syst_JES_EtaIntercalibration_Stat70: 4.96225846e-20 + syst_JES_EtaIntercalibration_Stat71: 4.34744753e-08 + syst_JES_EtaIntercalibration_Stat72: 8.17008365e-09 + syst_JES_EtaIntercalibration_Stat73: 8.27920286e-09 + syst_JES_EtaIntercalibration_Stat74: 5.81653492e-21 syst_JES_EtaIntercalibration_Stat75: 0.0 syst_JES_EtaIntercalibration_Stat76: 0.0 syst_JES_EtaIntercalibration_Stat77: 0.0 syst_JES_EtaIntercalibration_Stat78: 0.0 - syst_JES_EtaIntercalibration_Stat79: 3.726232869628521e-20 + syst_JES_EtaIntercalibration_Stat79: 3.72623287e-20 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 2.4410273964050466e-16 - syst_JES_EtaIntercalibration_Stat81: 4.341375952784872e-09 - syst_JES_EtaIntercalibration_Stat82: 8.006864581719864e-11 - syst_JES_EtaIntercalibration_Stat83: 4.7516340039506414e-18 - syst_JES_EtaIntercalibration_Stat84: 1.1078531344451756e-23 - syst_JES_EtaIntercalibration_Stat85: 1.2999041310804423e-23 - syst_JES_EtaIntercalibration_Stat86: 1.2999041310804423e-23 - syst_JES_EtaIntercalibration_Stat87: 1.2999041310804423e-23 - syst_JES_EtaIntercalibration_Stat88: 1.2999041310804423e-23 - syst_JES_EtaIntercalibration_Stat89: 1.2999041310804423e-23 + syst_JES_EtaIntercalibration_Stat80: 2.44102740e-16 + syst_JES_EtaIntercalibration_Stat81: 4.34137595e-09 + syst_JES_EtaIntercalibration_Stat82: 8.00686458e-11 + syst_JES_EtaIntercalibration_Stat83: 4.75163400e-18 + syst_JES_EtaIntercalibration_Stat84: 1.10785313e-23 + syst_JES_EtaIntercalibration_Stat85: 1.29990413e-23 + syst_JES_EtaIntercalibration_Stat86: 1.29990413e-23 + syst_JES_EtaIntercalibration_Stat87: 1.29990413e-23 + syst_JES_EtaIntercalibration_Stat88: 1.29990413e-23 + syst_JES_EtaIntercalibration_Stat89: 1.29990413e-23 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 5.827347568791482e-18 - syst_JES_EtaIntercalibration_Stat92: 4.3474475281528716e-08 - syst_JES_EtaIntercalibration_Stat93: 8.17008361987226e-09 - syst_JES_EtaIntercalibration_Stat94: 8.279202859108825e-09 - syst_JES_EtaIntercalibration_Stat95: 3.744529977180047e-20 - syst_JES_EtaIntercalibration_Stat96: 4.60106457328084e-22 - syst_JES_EtaIntercalibration_Stat97: 1.2999041310804423e-23 - syst_JES_EtaIntercalibration_Stat98: 1.2999041310804423e-23 - syst_JES_EtaIntercalibration_Stat99: 1.2999041310804423e-23 - syst_JES_EtaIntercalibration_TotalStat_MJB: 5.522768395469794e-05 - syst_JES_Flavour_Comp: 0.00012943304523961414 - syst_JES_Flavour_Response: 2.4841455271380536e-05 - syst_JES_Gjet_Generator: 0.00014845666034233695 - syst_JES_Gjet_OOC: 0.0001251969272785878 - syst_JES_Gjet_Purity: 2.0751049973435083e-05 - syst_JES_Gjet_Stat1: 3.5987300093227335e-07 - syst_JES_Gjet_Stat10: 2.968422308230418e-06 - syst_JES_Gjet_Stat11: 3.0852401851395623e-06 - syst_JES_Gjet_Stat12: 7.16204138147777e-06 - syst_JES_Gjet_Stat13: 2.504290867690892e-05 - syst_JES_Gjet_Stat14: 6.831334477977199e-05 - syst_JES_Gjet_Stat15: 0.00010788745385817574 - syst_JES_Gjet_Stat2: 6.064775902702318e-07 - syst_JES_Gjet_Stat3: 6.411366210683961e-07 - syst_JES_Gjet_Stat4: 3.392346201377448e-07 - syst_JES_Gjet_Stat5: 1.6488855179937572e-15 - syst_JES_Gjet_Stat6: 1.4313322465451549e-06 - syst_JES_Gjet_Stat7: 1.1976293781884278e-06 - syst_JES_Gjet_Stat8: 9.590364161490427e-07 - syst_JES_Gjet_Stat9: 1.5176459007291524e-06 - syst_JES_Gjet_Veto: 0.00012791370870629935 - syst_JES_Gjet_dPhi: 1.3500564460421646e-05 - syst_JES_LArESZee: 0.00022242632488084677 - syst_JES_LArEsmear: 2.0504599484018215e-05 - syst_JES_LAr_JVT: 2.575137035188613e-05 - syst_JES_MJB_Alpha: 2.1692468739173054e-06 - syst_JES_MJB_Asym: 3.593101828504169e-05 - syst_JES_MJB_Beta: 2.1903143039299176e-06 - syst_JES_MJB_Fragmentation: 1.3870458211609307e-05 - syst_JES_MJB_Stat1: 1.5865603364552683e-09 - syst_JES_MJB_Stat10: 2.0697185195093554e-06 - syst_JES_MJB_Stat11: 2.6823307029521916e-06 - syst_JES_MJB_Stat12: 4.949022529752719e-06 - syst_JES_MJB_Stat13: 6.314647317942627e-06 - syst_JES_MJB_Stat14: 7.354322334518659e-06 - syst_JES_MJB_Stat15: 1.0192357430938144e-05 - syst_JES_MJB_Stat16: 4.3337993435321857e-07 - syst_JES_MJB_Stat2: 4.476626554393386e-08 - syst_JES_MJB_Stat3: 1.3787124428248263e-09 - syst_JES_MJB_Stat4: 1.1544118632446569e-09 + syst_JES_EtaIntercalibration_Stat91: 5.82734757e-18 + syst_JES_EtaIntercalibration_Stat92: 4.34744753e-08 + syst_JES_EtaIntercalibration_Stat93: 8.17008362e-09 + syst_JES_EtaIntercalibration_Stat94: 8.27920286e-09 + syst_JES_EtaIntercalibration_Stat95: 3.74452998e-20 + syst_JES_EtaIntercalibration_Stat96: 4.60106457e-22 + syst_JES_EtaIntercalibration_Stat97: 1.29990413e-23 + syst_JES_EtaIntercalibration_Stat98: 1.29990413e-23 + syst_JES_EtaIntercalibration_Stat99: 1.29990413e-23 + syst_JES_EtaIntercalibration_TotalStat_MJB: 5.52276840e-05 + syst_JES_Flavour_Comp: 1.29433045e-04 + syst_JES_Flavour_Response: 2.48414553e-05 + syst_JES_Gjet_Generator: 1.48456660e-04 + syst_JES_Gjet_OOC: 1.25196927e-04 + syst_JES_Gjet_Purity: 2.07510500e-05 + syst_JES_Gjet_Stat1: 3.59873001e-07 + syst_JES_Gjet_Stat10: 2.96842231e-06 + syst_JES_Gjet_Stat11: 3.08524019e-06 + syst_JES_Gjet_Stat12: 7.16204138e-06 + syst_JES_Gjet_Stat13: 2.50429087e-05 + syst_JES_Gjet_Stat14: 6.83133448e-05 + syst_JES_Gjet_Stat15: 1.07887454e-04 + syst_JES_Gjet_Stat2: 6.06477590e-07 + syst_JES_Gjet_Stat3: 6.41136621e-07 + syst_JES_Gjet_Stat4: 3.39234620e-07 + syst_JES_Gjet_Stat5: 1.64888552e-15 + syst_JES_Gjet_Stat6: 1.43133225e-06 + syst_JES_Gjet_Stat7: 1.19762938e-06 + syst_JES_Gjet_Stat8: 9.59036416e-07 + syst_JES_Gjet_Stat9: 1.51764590e-06 + syst_JES_Gjet_Veto: 1.27913709e-04 + syst_JES_Gjet_dPhi: 1.35005645e-05 + syst_JES_LArESZee: 2.22426325e-04 + syst_JES_LArEsmear: 2.05045995e-05 + syst_JES_LAr_JVT: 2.57513704e-05 + syst_JES_MJB_Alpha: 2.16924687e-06 + syst_JES_MJB_Asym: 3.59310183e-05 + syst_JES_MJB_Beta: 2.19031430e-06 + syst_JES_MJB_Fragmentation: 1.38704582e-05 + syst_JES_MJB_Stat1: 1.58656034e-09 + syst_JES_MJB_Stat10: 2.06971852e-06 + syst_JES_MJB_Stat11: 2.68233070e-06 + syst_JES_MJB_Stat12: 4.94902253e-06 + syst_JES_MJB_Stat13: 6.31464732e-06 + syst_JES_MJB_Stat14: 7.35432233e-06 + syst_JES_MJB_Stat15: 1.01923574e-05 + syst_JES_MJB_Stat16: 4.33379934e-07 + syst_JES_MJB_Stat2: 4.47662655e-08 + syst_JES_MJB_Stat3: 1.37871244e-09 + syst_JES_MJB_Stat4: 1.15441186e-09 syst_JES_MJB_Stat5: 0.0 - syst_JES_MJB_Stat6: 2.2637904054925227e-07 - syst_JES_MJB_Stat7: 3.0380171164758106e-07 - syst_JES_MJB_Stat8: 3.867648768955113e-07 - syst_JES_MJB_Stat9: 1.268522711661088e-06 - syst_JES_MJB_Threshold: 2.2941801912665885e-05 - syst_JES_Pileup_MuOffset: 3.285534659686305e-05 - syst_JES_Pileup_NPVOffset: 3.3446993885848694e-05 - syst_JES_Pileup_Pt_term: 2.0215357404705958e-05 - syst_JES_Pileup_Rho_topology: 4.092106600517636e-05 - syst_JES_PunchThrough_MC15: 9.735066859041083e-05 + syst_JES_MJB_Stat6: 2.26379041e-07 + syst_JES_MJB_Stat7: 3.03801712e-07 + syst_JES_MJB_Stat8: 3.86764877e-07 + syst_JES_MJB_Stat9: 1.26852271e-06 + syst_JES_MJB_Threshold: 2.29418019e-05 + syst_JES_Pileup_MuOffset: 3.28553466e-05 + syst_JES_Pileup_NPVOffset: 3.34469939e-05 + syst_JES_Pileup_Pt_term: 2.02153574e-05 + syst_JES_Pileup_Rho_topology: 4.09210660e-05 + syst_JES_PunchThrough_MC15: 9.73506686e-05 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 5.8001035335586896e-05 - syst_JES_Zjet_MuScale: 5.199544114631589e-06 - syst_JES_Zjet_MuSmearID: 1.1209265575852864e-06 - syst_JES_Zjet_MuSmearMS: 1.5744294204568206e-05 - syst_JES_Zjet_OOC: 3.668752376489861e-05 - syst_JES_Zjet_Stat1: 4.6764859403188624e-06 - syst_JES_Zjet_Stat10: 3.327172222774168e-06 - syst_JES_Zjet_Stat11: 4.556182256012154e-06 - syst_JES_Zjet_Stat12: 1.0281494772162267e-05 - syst_JES_Zjet_Stat13: 1.5763965237211097e-05 - syst_JES_Zjet_Stat2: 3.072658132627194e-08 - syst_JES_Zjet_Stat3: 1.5412893401305285e-06 - syst_JES_Zjet_Stat4: 1.6853708048972488e-06 - syst_JES_Zjet_Stat5: 2.3750618413001375e-06 - syst_JES_Zjet_Stat6: 1.2776936800344596e-06 - syst_JES_Zjet_Stat7: 1.7043740053169082e-06 - syst_JES_Zjet_Stat8: 1.220957553521006e-06 - syst_JES_Zjet_Stat9: 2.0756648934738958e-06 - syst_JES_Zjet_Veto: 7.396408097853985e-06 - syst_JES_Zjet_dPhi: 6.525697721316855e-06 - syst_PRW: 1.459e-05 - syst_Unfolding_bias: 6.065e-19 - syst_cleaning: 2.5409185347035432e-05 - syst_lumi: 8.159e-05 -- stat: 7.561e-05 + syst_JES_Zjet_MC: 5.80010353e-05 + syst_JES_Zjet_MuScale: 5.19954411e-06 + syst_JES_Zjet_MuSmearID: 1.12092656e-06 + syst_JES_Zjet_MuSmearMS: 1.57442942e-05 + syst_JES_Zjet_OOC: 3.66875238e-05 + syst_JES_Zjet_Stat1: 4.67648594e-06 + syst_JES_Zjet_Stat10: 3.32717222e-06 + syst_JES_Zjet_Stat11: 4.55618226e-06 + syst_JES_Zjet_Stat12: 1.02814948e-05 + syst_JES_Zjet_Stat13: 1.57639652e-05 + syst_JES_Zjet_Stat2: 3.07265813e-08 + syst_JES_Zjet_Stat3: 1.54128934e-06 + syst_JES_Zjet_Stat4: 1.68537080e-06 + syst_JES_Zjet_Stat5: 2.37506184e-06 + syst_JES_Zjet_Stat6: 1.27769368e-06 + syst_JES_Zjet_Stat7: 1.70437401e-06 + syst_JES_Zjet_Stat8: 1.22095755e-06 + syst_JES_Zjet_Stat9: 2.07566489e-06 + syst_JES_Zjet_Veto: 7.39640810e-06 + syst_JES_Zjet_dPhi: 6.52569772e-06 + syst_PRW: 1.45900000e-05 + syst_Unfolding_bias: 6.06500000e-19 + syst_cleaning: 2.54091853e-05 + syst_lumi: 8.15900000e-05 +- stat: 7.56100000e-05 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 3.49682537167643e-05 - syst_JER_NP1: 1.045562920153541e-05 - syst_JER_NP2: 3.391547545000659e-05 - syst_JER_NP3: 6.627660296062254e-06 - syst_JER_NP4: 9.926025790818801e-17 - syst_JER_NP5: 1.5933934699251156e-06 - syst_JER_NP6: 1.9596190956407828e-16 - syst_JER_NP7: 2.3183448298301095e-16 - syst_JER_NP8: 1.271812828210189e-08 - syst_JES_EtaIntercalibration_Modelling: 0.00022653526767371122 - syst_JES_EtaIntercalibration_NonClosure: 4.0737724531446276e-10 - syst_JES_EtaIntercalibration_Stat0: 3.716981033042811e-24 + syst_JER_NP0: 3.49682537e-05 + syst_JER_NP1: 1.04556292e-05 + syst_JER_NP2: 3.39154755e-05 + syst_JER_NP3: 6.62766030e-06 + syst_JER_NP4: 9.92602579e-17 + syst_JER_NP5: 1.59339347e-06 + syst_JER_NP6: 1.95961910e-16 + syst_JER_NP7: 2.31834483e-16 + syst_JER_NP8: 1.27181283e-08 + syst_JES_EtaIntercalibration_Modelling: 2.26535268e-04 + syst_JES_EtaIntercalibration_NonClosure: 4.07377245e-10 + syst_JES_EtaIntercalibration_Stat0: 3.71698103e-24 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 7.375329523490798e-21 - syst_JES_EtaIntercalibration_Stat101: 5.883202762951485e-17 - syst_JES_EtaIntercalibration_Stat102: 2.4834371335234156e-09 - syst_JES_EtaIntercalibration_Stat103: 3.1042531964226115e-12 - syst_JES_EtaIntercalibration_Stat104: 7.984795031026155e-18 - syst_JES_EtaIntercalibration_Stat105: 8.022153700846176e-24 - syst_JES_EtaIntercalibration_Stat106: 3.716981033042811e-24 - syst_JES_EtaIntercalibration_Stat107: 3.716981033042811e-24 - syst_JES_EtaIntercalibration_Stat108: 3.716981033042811e-24 - syst_JES_EtaIntercalibration_Stat109: 3.716981033042811e-24 + syst_JES_EtaIntercalibration_Stat100: 7.37532952e-21 + syst_JES_EtaIntercalibration_Stat101: 5.88320276e-17 + syst_JES_EtaIntercalibration_Stat102: 2.48343713e-09 + syst_JES_EtaIntercalibration_Stat103: 3.10425320e-12 + syst_JES_EtaIntercalibration_Stat104: 7.98479503e-18 + syst_JES_EtaIntercalibration_Stat105: 8.02215370e-24 + syst_JES_EtaIntercalibration_Stat106: 3.71698103e-24 + syst_JES_EtaIntercalibration_Stat107: 3.71698103e-24 + syst_JES_EtaIntercalibration_Stat108: 3.71698103e-24 + syst_JES_EtaIntercalibration_Stat109: 3.71698103e-24 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 1.1268995474309144e-22 - syst_JES_EtaIntercalibration_Stat111: 3.1474121115608615e-17 - syst_JES_EtaIntercalibration_Stat112: 2.84142311737527e-08 - syst_JES_EtaIntercalibration_Stat113: 2.824975158447037e-08 - syst_JES_EtaIntercalibration_Stat114: 3.3813093935566787e-09 - syst_JES_EtaIntercalibration_Stat115: 4.278526951510298e-18 - syst_JES_EtaIntercalibration_Stat116: 4.418466569976512e-23 - syst_JES_EtaIntercalibration_Stat117: 3.716981033042811e-24 - syst_JES_EtaIntercalibration_Stat118: 3.716981033042811e-24 - syst_JES_EtaIntercalibration_Stat119: 3.716981033042811e-24 + syst_JES_EtaIntercalibration_Stat110: 1.12689955e-22 + syst_JES_EtaIntercalibration_Stat111: 3.14741211e-17 + syst_JES_EtaIntercalibration_Stat112: 2.84142312e-08 + syst_JES_EtaIntercalibration_Stat113: 2.82497516e-08 + syst_JES_EtaIntercalibration_Stat114: 3.38130939e-09 + syst_JES_EtaIntercalibration_Stat115: 4.27852695e-18 + syst_JES_EtaIntercalibration_Stat116: 4.41846657e-23 + syst_JES_EtaIntercalibration_Stat117: 3.71698103e-24 + syst_JES_EtaIntercalibration_Stat118: 3.71698103e-24 + syst_JES_EtaIntercalibration_Stat119: 3.71698103e-24 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 3.754220125405542e-20 - syst_JES_EtaIntercalibration_Stat121: 2.443834767900645e-09 - syst_JES_EtaIntercalibration_Stat122: 2.5478424809041866e-09 - syst_JES_EtaIntercalibration_Stat123: 2.4956243316948986e-09 - syst_JES_EtaIntercalibration_Stat124: 2.3245839799843753e-11 - syst_JES_EtaIntercalibration_Stat125: 1.0518744554365792e-21 - syst_JES_EtaIntercalibration_Stat126: 3.716981033042811e-24 - syst_JES_EtaIntercalibration_Stat127: 3.716981033042811e-24 - syst_JES_EtaIntercalibration_Stat128: 3.716981033042811e-24 - syst_JES_EtaIntercalibration_Stat129: 1.459293130894201e-17 + syst_JES_EtaIntercalibration_Stat120: 3.75422013e-20 + syst_JES_EtaIntercalibration_Stat121: 2.44383477e-09 + syst_JES_EtaIntercalibration_Stat122: 2.54784248e-09 + syst_JES_EtaIntercalibration_Stat123: 2.49562433e-09 + syst_JES_EtaIntercalibration_Stat124: 2.32458398e-11 + syst_JES_EtaIntercalibration_Stat125: 1.05187446e-21 + syst_JES_EtaIntercalibration_Stat126: 3.71698103e-24 + syst_JES_EtaIntercalibration_Stat127: 3.71698103e-24 + syst_JES_EtaIntercalibration_Stat128: 3.71698103e-24 + syst_JES_EtaIntercalibration_Stat129: 1.45929313e-17 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 2.623184539537703e-08 - syst_JES_EtaIntercalibration_Stat131: 2.9325297779732776e-08 - syst_JES_EtaIntercalibration_Stat132: 2.3198752804407393e-09 - syst_JES_EtaIntercalibration_Stat133: 2.7327769664925093e-08 - syst_JES_EtaIntercalibration_Stat134: 4.8341538035479e-09 - syst_JES_EtaIntercalibration_Stat135: 4.5284468363888293e-23 + syst_JES_EtaIntercalibration_Stat130: 2.62318454e-08 + syst_JES_EtaIntercalibration_Stat131: 2.93252978e-08 + syst_JES_EtaIntercalibration_Stat132: 2.31987528e-09 + syst_JES_EtaIntercalibration_Stat133: 2.73277697e-08 + syst_JES_EtaIntercalibration_Stat134: 4.83415380e-09 + syst_JES_EtaIntercalibration_Stat135: 4.52844684e-23 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 syst_JES_EtaIntercalibration_Stat138: 0.0 - syst_JES_EtaIntercalibration_Stat139: 1.0106221202803747e-16 - syst_JES_EtaIntercalibration_Stat14: 7.319689599034016e-21 - syst_JES_EtaIntercalibration_Stat140: 1.137593374486244e-08 - syst_JES_EtaIntercalibration_Stat141: 2.9743241047337126e-08 - syst_JES_EtaIntercalibration_Stat142: 2.864173262915496e-08 - syst_JES_EtaIntercalibration_Stat143: 9.465985527138734e-12 - syst_JES_EtaIntercalibration_Stat144: 7.871370020523745e-19 + syst_JES_EtaIntercalibration_Stat139: 1.01062212e-16 + syst_JES_EtaIntercalibration_Stat14: 7.31968960e-21 + syst_JES_EtaIntercalibration_Stat140: 1.13759337e-08 + syst_JES_EtaIntercalibration_Stat141: 2.97432410e-08 + syst_JES_EtaIntercalibration_Stat142: 2.86417326e-08 + syst_JES_EtaIntercalibration_Stat143: 9.46598553e-12 + syst_JES_EtaIntercalibration_Stat144: 7.87137002e-19 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 1.3893241630375541e-18 - syst_JES_EtaIntercalibration_Stat148: 2.6214603544908153e-08 - syst_JES_EtaIntercalibration_Stat149: 2.8156377174052418e-08 - syst_JES_EtaIntercalibration_Stat15: 7.292521995184039e-21 - syst_JES_EtaIntercalibration_Stat150: 3.881398752264833e-08 - syst_JES_EtaIntercalibration_Stat151: 2.8202570848686825e-08 - syst_JES_EtaIntercalibration_Stat152: 1.2733886877147921e-17 + syst_JES_EtaIntercalibration_Stat147: 1.38932416e-18 + syst_JES_EtaIntercalibration_Stat148: 2.62146035e-08 + syst_JES_EtaIntercalibration_Stat149: 2.81563772e-08 + syst_JES_EtaIntercalibration_Stat15: 7.29252200e-21 + syst_JES_EtaIntercalibration_Stat150: 3.88139875e-08 + syst_JES_EtaIntercalibration_Stat151: 2.82025708e-08 + syst_JES_EtaIntercalibration_Stat152: 1.27338869e-17 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 syst_JES_EtaIntercalibration_Stat156: 0.0 - syst_JES_EtaIntercalibration_Stat157: 2.4989428794342215e-17 - syst_JES_EtaIntercalibration_Stat158: 1.1760816770956003e-08 - syst_JES_EtaIntercalibration_Stat159: 3.2550382286541584e-08 - syst_JES_EtaIntercalibration_Stat16: 7.261263501751951e-21 - syst_JES_EtaIntercalibration_Stat160: 3.846608376219237e-08 - syst_JES_EtaIntercalibration_Stat161: 8.762595663814462e-12 - syst_JES_EtaIntercalibration_Stat162: 7.953736457162758e-19 + syst_JES_EtaIntercalibration_Stat157: 2.49894288e-17 + syst_JES_EtaIntercalibration_Stat158: 1.17608168e-08 + syst_JES_EtaIntercalibration_Stat159: 3.25503823e-08 + syst_JES_EtaIntercalibration_Stat16: 7.26126350e-21 + syst_JES_EtaIntercalibration_Stat160: 3.84660838e-08 + syst_JES_EtaIntercalibration_Stat161: 8.76259566e-12 + syst_JES_EtaIntercalibration_Stat162: 7.95373646e-19 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 2.9256824003127886e-18 - syst_JES_EtaIntercalibration_Stat166: 2.7996256334553017e-08 - syst_JES_EtaIntercalibration_Stat167: 7.141255544370331e-09 - syst_JES_EtaIntercalibration_Stat168: 1.9657093112326325e-08 - syst_JES_EtaIntercalibration_Stat169: 2.5217324897776134e-08 - syst_JES_EtaIntercalibration_Stat17: 3.0319549386493193e-24 - syst_JES_EtaIntercalibration_Stat170: 4.8332876197207816e-09 + syst_JES_EtaIntercalibration_Stat165: 2.92568240e-18 + syst_JES_EtaIntercalibration_Stat166: 2.79962563e-08 + syst_JES_EtaIntercalibration_Stat167: 7.14125554e-09 + syst_JES_EtaIntercalibration_Stat168: 1.96570931e-08 + syst_JES_EtaIntercalibration_Stat169: 2.52173249e-08 + syst_JES_EtaIntercalibration_Stat17: 3.03195494e-24 + syst_JES_EtaIntercalibration_Stat170: 4.83328762e-09 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 - syst_JES_EtaIntercalibration_Stat175: 3.2121175087787496e-13 - syst_JES_EtaIntercalibration_Stat176: 1.5165504704858162e-08 - syst_JES_EtaIntercalibration_Stat177: 2.7951102518505418e-08 - syst_JES_EtaIntercalibration_Stat178: 4.7827524502110706e-08 - syst_JES_EtaIntercalibration_Stat179: 2.629404820011555e-08 + syst_JES_EtaIntercalibration_Stat175: 3.21211751e-13 + syst_JES_EtaIntercalibration_Stat176: 1.51655047e-08 + syst_JES_EtaIntercalibration_Stat177: 2.79511025e-08 + syst_JES_EtaIntercalibration_Stat178: 4.78275245e-08 + syst_JES_EtaIntercalibration_Stat179: 2.62940482e-08 syst_JES_EtaIntercalibration_Stat18: 0.0 - syst_JES_EtaIntercalibration_Stat180: 2.679482600259949e-12 + syst_JES_EtaIntercalibration_Stat180: 2.67948260e-12 syst_JES_EtaIntercalibration_Stat181: 0.0 - syst_JES_EtaIntercalibration_Stat182: 3.718601108709172e-13 - syst_JES_EtaIntercalibration_Stat183: 4.856666655227637e-08 - syst_JES_EtaIntercalibration_Stat184: 2.587521375274029e-07 - syst_JES_EtaIntercalibration_Stat185: 4.937142164248462e-07 - syst_JES_EtaIntercalibration_Stat186: 5.1933151984065055e-08 - syst_JES_EtaIntercalibration_Stat187: 3.738631520711054e-09 + syst_JES_EtaIntercalibration_Stat182: 3.71860111e-13 + syst_JES_EtaIntercalibration_Stat183: 4.85666666e-08 + syst_JES_EtaIntercalibration_Stat184: 2.58752138e-07 + syst_JES_EtaIntercalibration_Stat185: 4.93714216e-07 + syst_JES_EtaIntercalibration_Stat186: 5.19331520e-08 + syst_JES_EtaIntercalibration_Stat187: 3.73863152e-09 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 - syst_JES_EtaIntercalibration_Stat192: 2.3945331187773036e-09 - syst_JES_EtaIntercalibration_Stat193: 2.633670633222765e-07 - syst_JES_EtaIntercalibration_Stat194: 4.6775592994637705e-07 - syst_JES_EtaIntercalibration_Stat195: 1.482034638596548e-07 - syst_JES_EtaIntercalibration_Stat196: 5.519908581670533e-08 - syst_JES_EtaIntercalibration_Stat197: 7.108898661654631e-11 - syst_JES_EtaIntercalibration_Stat198: 1.4171813821808414e-07 - syst_JES_EtaIntercalibration_Stat199: 5.733901355098464e-07 + syst_JES_EtaIntercalibration_Stat192: 2.39453312e-09 + syst_JES_EtaIntercalibration_Stat193: 2.63367063e-07 + syst_JES_EtaIntercalibration_Stat194: 4.67755930e-07 + syst_JES_EtaIntercalibration_Stat195: 1.48203464e-07 + syst_JES_EtaIntercalibration_Stat196: 5.51990858e-08 + syst_JES_EtaIntercalibration_Stat197: 7.10889866e-11 + syst_JES_EtaIntercalibration_Stat198: 1.41718138e-07 + syst_JES_EtaIntercalibration_Stat199: 5.73390136e-07 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 1.001665283415573e-06 - syst_JES_EtaIntercalibration_Stat201: 3.3885709008371066e-07 - syst_JES_EtaIntercalibration_Stat202: 3.094625161772424e-09 + syst_JES_EtaIntercalibration_Stat200: 1.00166528e-06 + syst_JES_EtaIntercalibration_Stat201: 3.38857090e-07 + syst_JES_EtaIntercalibration_Stat202: 3.09462516e-09 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 - syst_JES_EtaIntercalibration_Stat207: 1.432819038326892e-08 - syst_JES_EtaIntercalibration_Stat208: 4.828685224779102e-07 - syst_JES_EtaIntercalibration_Stat209: 1.3259454098868473e-06 + syst_JES_EtaIntercalibration_Stat207: 1.43281904e-08 + syst_JES_EtaIntercalibration_Stat208: 4.82868522e-07 + syst_JES_EtaIntercalibration_Stat209: 1.32594541e-06 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 4.1986153372272626e-07 - syst_JES_EtaIntercalibration_Stat211: 2.5008121240908922e-08 - syst_JES_EtaIntercalibration_Stat212: 5.626068876222545e-07 - syst_JES_EtaIntercalibration_Stat213: 1.121921392077003e-06 - syst_JES_EtaIntercalibration_Stat214: 3.3920596619163407e-07 - syst_JES_EtaIntercalibration_Stat215: 3.121064431143623e-09 + syst_JES_EtaIntercalibration_Stat210: 4.19861534e-07 + syst_JES_EtaIntercalibration_Stat211: 2.50081212e-08 + syst_JES_EtaIntercalibration_Stat212: 5.62606888e-07 + syst_JES_EtaIntercalibration_Stat213: 1.12192139e-06 + syst_JES_EtaIntercalibration_Stat214: 3.39205966e-07 + syst_JES_EtaIntercalibration_Stat215: 3.12106443e-09 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 syst_JES_EtaIntercalibration_Stat219: 0.0 - syst_JES_EtaIntercalibration_Stat22: 3.716981033042811e-24 - syst_JES_EtaIntercalibration_Stat220: 1.4894978575009767e-08 - syst_JES_EtaIntercalibration_Stat221: 3.109458594353686e-07 - syst_JES_EtaIntercalibration_Stat222: 1.3363019671840641e-06 - syst_JES_EtaIntercalibration_Stat223: 7.757169329078745e-07 - syst_JES_EtaIntercalibration_Stat224: 2.05415578766558e-06 - syst_JES_EtaIntercalibration_Stat225: 3.555174081532436e-06 - syst_JES_EtaIntercalibration_Stat226: 1.3435663614053457e-06 - syst_JES_EtaIntercalibration_Stat227: 1.9998489942993196e-08 + syst_JES_EtaIntercalibration_Stat22: 3.71698103e-24 + syst_JES_EtaIntercalibration_Stat220: 1.48949786e-08 + syst_JES_EtaIntercalibration_Stat221: 3.10945859e-07 + syst_JES_EtaIntercalibration_Stat222: 1.33630197e-06 + syst_JES_EtaIntercalibration_Stat223: 7.75716933e-07 + syst_JES_EtaIntercalibration_Stat224: 2.05415579e-06 + syst_JES_EtaIntercalibration_Stat225: 3.55517408e-06 + syst_JES_EtaIntercalibration_Stat226: 1.34356636e-06 + syst_JES_EtaIntercalibration_Stat227: 1.99984899e-08 syst_JES_EtaIntercalibration_Stat228: 0.0 syst_JES_EtaIntercalibration_Stat229: 0.0 - syst_JES_EtaIntercalibration_Stat23: 3.716981033042811e-24 + syst_JES_EtaIntercalibration_Stat23: 3.71698103e-24 syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 - syst_JES_EtaIntercalibration_Stat232: 1.4877944725918967e-08 - syst_JES_EtaIntercalibration_Stat233: 1.038118089380972e-06 - syst_JES_EtaIntercalibration_Stat234: 3.162048505320562e-06 - syst_JES_EtaIntercalibration_Stat235: 2.2544357941622555e-06 - syst_JES_EtaIntercalibration_Stat236: 8.210461862769962e-07 - syst_JES_EtaIntercalibration_Stat237: 1.5753790020182444e-07 - syst_JES_EtaIntercalibration_Stat238: 3.1237536314504702e-09 + syst_JES_EtaIntercalibration_Stat232: 1.48779447e-08 + syst_JES_EtaIntercalibration_Stat233: 1.03811809e-06 + syst_JES_EtaIntercalibration_Stat234: 3.16204851e-06 + syst_JES_EtaIntercalibration_Stat235: 2.25443579e-06 + syst_JES_EtaIntercalibration_Stat236: 8.21046186e-07 + syst_JES_EtaIntercalibration_Stat237: 1.57537900e-07 + syst_JES_EtaIntercalibration_Stat238: 3.12375363e-09 syst_JES_EtaIntercalibration_Stat239: 0.0 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 - syst_JES_EtaIntercalibration_Stat243: 2.500286305128521e-09 - syst_JES_EtaIntercalibration_Stat244: 2.6371093283508366e-07 - syst_JES_EtaIntercalibration_Stat245: 9.550195966575763e-07 - syst_JES_EtaIntercalibration_Stat25: 2.5054114931483812e-24 - syst_JES_EtaIntercalibration_Stat26: 1.074758852022164e-22 - syst_JES_EtaIntercalibration_Stat27: 8.42702386299576e-21 - syst_JES_EtaIntercalibration_Stat28: 4.8332877785170285e-09 - syst_JES_EtaIntercalibration_Stat29: 8.516485718886635e-21 + syst_JES_EtaIntercalibration_Stat243: 2.50028631e-09 + syst_JES_EtaIntercalibration_Stat244: 2.63710933e-07 + syst_JES_EtaIntercalibration_Stat245: 9.55019597e-07 + syst_JES_EtaIntercalibration_Stat25: 2.50541149e-24 + syst_JES_EtaIntercalibration_Stat26: 1.07475885e-22 + syst_JES_EtaIntercalibration_Stat27: 8.42702386e-21 + syst_JES_EtaIntercalibration_Stat28: 4.83328778e-09 + syst_JES_EtaIntercalibration_Stat29: 8.51648572e-21 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 1.337023511386393e-23 + syst_JES_EtaIntercalibration_Stat30: 1.33702351e-23 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 5.5879875196711034e-24 - syst_JES_EtaIntercalibration_Stat36: 7.1722416997756e-21 - syst_JES_EtaIntercalibration_Stat37: 9.273400017404671e-13 - syst_JES_EtaIntercalibration_Stat38: 9.27340001727188e-13 - syst_JES_EtaIntercalibration_Stat39: 1.2690431486754104e-21 - syst_JES_EtaIntercalibration_Stat4: 3.435695981893625e-24 - syst_JES_EtaIntercalibration_Stat40: 4.644494240495945e-24 + syst_JES_EtaIntercalibration_Stat35: 5.58798752e-24 + syst_JES_EtaIntercalibration_Stat36: 7.17224170e-21 + syst_JES_EtaIntercalibration_Stat37: 9.27340002e-13 + syst_JES_EtaIntercalibration_Stat38: 9.27340002e-13 + syst_JES_EtaIntercalibration_Stat39: 1.26904315e-21 + syst_JES_EtaIntercalibration_Stat4: 3.43569598e-24 + syst_JES_EtaIntercalibration_Stat40: 4.64449424e-24 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 - syst_JES_EtaIntercalibration_Stat44: 3.716981033042811e-24 + syst_JES_EtaIntercalibration_Stat44: 3.71698103e-24 syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 - syst_JES_EtaIntercalibration_Stat47: 2.50714354395595e-24 - syst_JES_EtaIntercalibration_Stat48: 7.296829311420131e-22 - syst_JES_EtaIntercalibration_Stat49: 1.8105034520817683e-20 - syst_JES_EtaIntercalibration_Stat5: 5.766913409268427e-23 - syst_JES_EtaIntercalibration_Stat50: 4.83328777851856e-09 - syst_JES_EtaIntercalibration_Stat51: 4.279148245480635e-18 - syst_JES_EtaIntercalibration_Stat52: 1.4246074865730558e-23 + syst_JES_EtaIntercalibration_Stat47: 2.50714354e-24 + syst_JES_EtaIntercalibration_Stat48: 7.29682931e-22 + syst_JES_EtaIntercalibration_Stat49: 1.81050345e-20 + syst_JES_EtaIntercalibration_Stat5: 5.76691341e-23 + syst_JES_EtaIntercalibration_Stat50: 4.83328778e-09 + syst_JES_EtaIntercalibration_Stat51: 4.27914825e-18 + syst_JES_EtaIntercalibration_Stat52: 1.42460749e-23 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 syst_JES_EtaIntercalibration_Stat56: 0.0 - syst_JES_EtaIntercalibration_Stat57: 7.323656920515051e-21 - syst_JES_EtaIntercalibration_Stat58: 6.5386826654915744e-21 - syst_JES_EtaIntercalibration_Stat59: 2.3997566113746047e-11 - syst_JES_EtaIntercalibration_Stat6: 2.216177113860713e-22 - syst_JES_EtaIntercalibration_Stat60: 9.298514532784328e-13 - syst_JES_EtaIntercalibration_Stat61: 1.0139370632835157e-20 - syst_JES_EtaIntercalibration_Stat62: 3.093442742318015e-24 + syst_JES_EtaIntercalibration_Stat57: 7.32365692e-21 + syst_JES_EtaIntercalibration_Stat58: 6.53868267e-21 + syst_JES_EtaIntercalibration_Stat59: 2.39975661e-11 + syst_JES_EtaIntercalibration_Stat6: 2.21617711e-22 + syst_JES_EtaIntercalibration_Stat60: 9.29851453e-13 + syst_JES_EtaIntercalibration_Stat61: 1.01393706e-20 + syst_JES_EtaIntercalibration_Stat62: 3.09344274e-24 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 - syst_JES_EtaIntercalibration_Stat69: 3.920229223846483e-24 - syst_JES_EtaIntercalibration_Stat7: 1.518081539312036e-23 - syst_JES_EtaIntercalibration_Stat70: 9.948659055370226e-21 - syst_JES_EtaIntercalibration_Stat71: 2.598942236758784e-08 - syst_JES_EtaIntercalibration_Stat72: 4.822895471937714e-09 - syst_JES_EtaIntercalibration_Stat73: 4.833287778488871e-09 - syst_JES_EtaIntercalibration_Stat74: 1.272303881743666e-21 + syst_JES_EtaIntercalibration_Stat69: 3.92022922e-24 + syst_JES_EtaIntercalibration_Stat7: 1.51808154e-23 + syst_JES_EtaIntercalibration_Stat70: 9.94865906e-21 + syst_JES_EtaIntercalibration_Stat71: 2.59894224e-08 + syst_JES_EtaIntercalibration_Stat72: 4.82289547e-09 + syst_JES_EtaIntercalibration_Stat73: 4.83328778e-09 + syst_JES_EtaIntercalibration_Stat74: 1.27230388e-21 syst_JES_EtaIntercalibration_Stat75: 0.0 syst_JES_EtaIntercalibration_Stat76: 0.0 syst_JES_EtaIntercalibration_Stat77: 0.0 syst_JES_EtaIntercalibration_Stat78: 0.0 - syst_JES_EtaIntercalibration_Stat79: 7.299183676211676e-21 + syst_JES_EtaIntercalibration_Stat79: 7.29918368e-21 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 3.528870119457501e-17 - syst_JES_EtaIntercalibration_Stat81: 2.4834463039498215e-09 - syst_JES_EtaIntercalibration_Stat82: 3.4663149290709294e-12 - syst_JES_EtaIntercalibration_Stat83: 8.384644938815239e-19 - syst_JES_EtaIntercalibration_Stat84: 3.446503554328648e-24 - syst_JES_EtaIntercalibration_Stat85: 3.716981033042811e-24 - syst_JES_EtaIntercalibration_Stat86: 3.716981033042811e-24 - syst_JES_EtaIntercalibration_Stat87: 3.716981033042811e-24 - syst_JES_EtaIntercalibration_Stat88: 3.716981033042811e-24 - syst_JES_EtaIntercalibration_Stat89: 3.716981033042811e-24 + syst_JES_EtaIntercalibration_Stat80: 3.52887012e-17 + syst_JES_EtaIntercalibration_Stat81: 2.48344630e-09 + syst_JES_EtaIntercalibration_Stat82: 3.46631493e-12 + syst_JES_EtaIntercalibration_Stat83: 8.38464494e-19 + syst_JES_EtaIntercalibration_Stat84: 3.44650355e-24 + syst_JES_EtaIntercalibration_Stat85: 3.71698103e-24 + syst_JES_EtaIntercalibration_Stat86: 3.71698103e-24 + syst_JES_EtaIntercalibration_Stat87: 3.71698103e-24 + syst_JES_EtaIntercalibration_Stat88: 3.71698103e-24 + syst_JES_EtaIntercalibration_Stat89: 3.71698103e-24 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 9.367972729865306e-19 - syst_JES_EtaIntercalibration_Stat92: 2.5989422369161027e-08 - syst_JES_EtaIntercalibration_Stat93: 4.822895468055034e-09 - syst_JES_EtaIntercalibration_Stat94: 4.833287778342146e-09 - syst_JES_EtaIntercalibration_Stat95: 7.542876573297485e-21 - syst_JES_EtaIntercalibration_Stat96: 4.418466569976512e-23 - syst_JES_EtaIntercalibration_Stat97: 3.716981033042811e-24 - syst_JES_EtaIntercalibration_Stat98: 3.716981033042811e-24 - syst_JES_EtaIntercalibration_Stat99: 3.716981033042811e-24 - syst_JES_EtaIntercalibration_TotalStat_MJB: 3.182031426620422e-05 - syst_JES_Flavour_Comp: 7.182392428710645e-05 - syst_JES_Flavour_Response: 1.7103654580235185e-05 - syst_JES_Gjet_Generator: 8.154080006352647e-05 - syst_JES_Gjet_OOC: 6.893928415642276e-05 - syst_JES_Gjet_Purity: 1.1285556875936605e-05 - syst_JES_Gjet_Stat1: 2.345112950371474e-07 - syst_JES_Gjet_Stat10: 1.8439069933160946e-06 - syst_JES_Gjet_Stat11: 1.9353621754080037e-06 - syst_JES_Gjet_Stat12: 3.931989827046861e-06 - syst_JES_Gjet_Stat13: 1.4391256677232882e-05 - syst_JES_Gjet_Stat14: 3.8319579368777e-05 - syst_JES_Gjet_Stat15: 6.27173731911661e-05 - syst_JES_Gjet_Stat2: 4.00709954331057e-07 - syst_JES_Gjet_Stat3: 4.2675784702803067e-07 - syst_JES_Gjet_Stat4: 1.8781380859777056e-07 - syst_JES_Gjet_Stat5: 2.483697096265486e-16 - syst_JES_Gjet_Stat6: 9.142544175447007e-07 - syst_JES_Gjet_Stat7: 6.38473445023362e-07 - syst_JES_Gjet_Stat8: 5.436384092390823e-07 - syst_JES_Gjet_Stat9: 9.300632397853384e-07 - syst_JES_Gjet_Veto: 7.093325084190066e-05 - syst_JES_Gjet_dPhi: 7.687406389673958e-06 - syst_JES_LArESZee: 0.00012123156519652792 - syst_JES_LArEsmear: 1.1459620238035814e-05 - syst_JES_LAr_JVT: 1.456247918453448e-05 - syst_JES_MJB_Alpha: 1.5285502935788537e-06 - syst_JES_MJB_Asym: 2.2520537293768106e-05 - syst_JES_MJB_Beta: 1.4157519980561566e-06 - syst_JES_MJB_Fragmentation: 7.93860848952762e-06 - syst_JES_MJB_Stat1: 4.197627827798505e-10 - syst_JES_MJB_Stat10: 1.0050868656489348e-06 - syst_JES_MJB_Stat11: 1.3671587938129207e-06 - syst_JES_MJB_Stat12: 2.5321155186918307e-06 - syst_JES_MJB_Stat13: 3.6095033938202636e-06 - syst_JES_MJB_Stat14: 4.791582828252058e-06 - syst_JES_MJB_Stat15: 6.455518414503981e-06 - syst_JES_MJB_Stat16: 1.8298393372096905e-06 - syst_JES_MJB_Stat2: 2.9205505422779454e-08 - syst_JES_MJB_Stat3: 1.9563513871490468e-10 - syst_JES_MJB_Stat4: 1.640252114767727e-10 + syst_JES_EtaIntercalibration_Stat91: 9.36797273e-19 + syst_JES_EtaIntercalibration_Stat92: 2.59894224e-08 + syst_JES_EtaIntercalibration_Stat93: 4.82289547e-09 + syst_JES_EtaIntercalibration_Stat94: 4.83328778e-09 + syst_JES_EtaIntercalibration_Stat95: 7.54287657e-21 + syst_JES_EtaIntercalibration_Stat96: 4.41846657e-23 + syst_JES_EtaIntercalibration_Stat97: 3.71698103e-24 + syst_JES_EtaIntercalibration_Stat98: 3.71698103e-24 + syst_JES_EtaIntercalibration_Stat99: 3.71698103e-24 + syst_JES_EtaIntercalibration_TotalStat_MJB: 3.18203143e-05 + syst_JES_Flavour_Comp: 7.18239243e-05 + syst_JES_Flavour_Response: 1.71036546e-05 + syst_JES_Gjet_Generator: 8.15408001e-05 + syst_JES_Gjet_OOC: 6.89392842e-05 + syst_JES_Gjet_Purity: 1.12855569e-05 + syst_JES_Gjet_Stat1: 2.34511295e-07 + syst_JES_Gjet_Stat10: 1.84390699e-06 + syst_JES_Gjet_Stat11: 1.93536218e-06 + syst_JES_Gjet_Stat12: 3.93198983e-06 + syst_JES_Gjet_Stat13: 1.43912567e-05 + syst_JES_Gjet_Stat14: 3.83195794e-05 + syst_JES_Gjet_Stat15: 6.27173732e-05 + syst_JES_Gjet_Stat2: 4.00709954e-07 + syst_JES_Gjet_Stat3: 4.26757847e-07 + syst_JES_Gjet_Stat4: 1.87813809e-07 + syst_JES_Gjet_Stat5: 2.48369710e-16 + syst_JES_Gjet_Stat6: 9.14254418e-07 + syst_JES_Gjet_Stat7: 6.38473445e-07 + syst_JES_Gjet_Stat8: 5.43638409e-07 + syst_JES_Gjet_Stat9: 9.30063240e-07 + syst_JES_Gjet_Veto: 7.09332508e-05 + syst_JES_Gjet_dPhi: 7.68740639e-06 + syst_JES_LArESZee: 1.21231565e-04 + syst_JES_LArEsmear: 1.14596202e-05 + syst_JES_LAr_JVT: 1.45624792e-05 + syst_JES_MJB_Alpha: 1.52855029e-06 + syst_JES_MJB_Asym: 2.25205373e-05 + syst_JES_MJB_Beta: 1.41575200e-06 + syst_JES_MJB_Fragmentation: 7.93860849e-06 + syst_JES_MJB_Stat1: 4.19762783e-10 + syst_JES_MJB_Stat10: 1.00508687e-06 + syst_JES_MJB_Stat11: 1.36715879e-06 + syst_JES_MJB_Stat12: 2.53211552e-06 + syst_JES_MJB_Stat13: 3.60950339e-06 + syst_JES_MJB_Stat14: 4.79158283e-06 + syst_JES_MJB_Stat15: 6.45551841e-06 + syst_JES_MJB_Stat16: 1.82983934e-06 + syst_JES_MJB_Stat2: 2.92055054e-08 + syst_JES_MJB_Stat3: 1.95635139e-10 + syst_JES_MJB_Stat4: 1.64025211e-10 syst_JES_MJB_Stat5: 0.0 - syst_JES_MJB_Stat6: 1.144539173641514e-07 - syst_JES_MJB_Stat7: 1.5371950917173786e-07 - syst_JES_MJB_Stat8: 1.9658516602226122e-07 - syst_JES_MJB_Stat9: 5.605917832969014e-07 - syst_JES_MJB_Threshold: 1.3586332249728034e-05 - syst_JES_Pileup_MuOffset: 1.9108141589385403e-05 - syst_JES_Pileup_NPVOffset: 1.91731394142952e-05 - syst_JES_Pileup_Pt_term: 1.1282537480549311e-05 - syst_JES_Pileup_Rho_topology: 2.306156542821844e-05 - syst_JES_PunchThrough_MC15: 6.114676769870997e-05 + syst_JES_MJB_Stat6: 1.14453917e-07 + syst_JES_MJB_Stat7: 1.53719509e-07 + syst_JES_MJB_Stat8: 1.96585166e-07 + syst_JES_MJB_Stat9: 5.60591783e-07 + syst_JES_MJB_Threshold: 1.35863322e-05 + syst_JES_Pileup_MuOffset: 1.91081416e-05 + syst_JES_Pileup_NPVOffset: 1.91731394e-05 + syst_JES_Pileup_Pt_term: 1.12825375e-05 + syst_JES_Pileup_Rho_topology: 2.30615654e-05 + syst_JES_PunchThrough_MC15: 6.11467677e-05 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 3.2390521761774695e-05 - syst_JES_Zjet_MuScale: 2.978263252299904e-06 - syst_JES_Zjet_MuSmearID: 6.763490297176451e-07 - syst_JES_Zjet_MuSmearMS: 8.677214645264919e-06 - syst_JES_Zjet_OOC: 2.0727799569660064e-05 - syst_JES_Zjet_Stat1: 2.9581374207429918e-06 - syst_JES_Zjet_Stat10: 1.8288019985772106e-06 - syst_JES_Zjet_Stat11: 2.5500192156138745e-06 - syst_JES_Zjet_Stat12: 5.570831446023116e-06 - syst_JES_Zjet_Stat13: 8.606086683272485e-06 - syst_JES_Zjet_Stat2: 1.6263957083071776e-08 - syst_JES_Zjet_Stat3: 9.341257557202885e-07 - syst_JES_Zjet_Stat4: 1.0296334626943706e-06 - syst_JES_Zjet_Stat5: 1.4163815446411324e-06 - syst_JES_Zjet_Stat6: 7.838883641820434e-07 - syst_JES_Zjet_Stat7: 1.08033609006642e-06 - syst_JES_Zjet_Stat8: 6.346959665855771e-07 - syst_JES_Zjet_Stat9: 1.1778307009073927e-06 - syst_JES_Zjet_Veto: 4.327917368665903e-06 - syst_JES_Zjet_dPhi: 3.845277720789488e-06 - syst_PRW: 8.466e-06 - syst_Unfolding_bias: 1.539e-19 - syst_cleaning: 1.3025022072917958e-05 - syst_lumi: 4.182e-05 -- stat: 3.551e-05 + syst_JES_Zjet_MC: 3.23905218e-05 + syst_JES_Zjet_MuScale: 2.97826325e-06 + syst_JES_Zjet_MuSmearID: 6.76349030e-07 + syst_JES_Zjet_MuSmearMS: 8.67721465e-06 + syst_JES_Zjet_OOC: 2.07277996e-05 + syst_JES_Zjet_Stat1: 2.95813742e-06 + syst_JES_Zjet_Stat10: 1.82880200e-06 + syst_JES_Zjet_Stat11: 2.55001922e-06 + syst_JES_Zjet_Stat12: 5.57083145e-06 + syst_JES_Zjet_Stat13: 8.60608668e-06 + syst_JES_Zjet_Stat2: 1.62639571e-08 + syst_JES_Zjet_Stat3: 9.34125756e-07 + syst_JES_Zjet_Stat4: 1.02963346e-06 + syst_JES_Zjet_Stat5: 1.41638154e-06 + syst_JES_Zjet_Stat6: 7.83888364e-07 + syst_JES_Zjet_Stat7: 1.08033609e-06 + syst_JES_Zjet_Stat8: 6.34695967e-07 + syst_JES_Zjet_Stat9: 1.17783070e-06 + syst_JES_Zjet_Veto: 4.32791737e-06 + syst_JES_Zjet_dPhi: 3.84527772e-06 + syst_PRW: 8.46600000e-06 + syst_Unfolding_bias: 1.53900000e-19 + syst_cleaning: 1.30250221e-05 + syst_lumi: 4.18200000e-05 +- stat: 3.55100000e-05 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 1.2237059481346001e-05 - syst_JER_NP1: 3.6791596866675953e-06 - syst_JER_NP2: 1.2599935823249258e-05 - syst_JER_NP3: 2.342528708468692e-06 - syst_JER_NP4: 7.522520770991597e-18 - syst_JER_NP5: 3.0871541506701605e-07 - syst_JER_NP6: 1.482714830134237e-17 - syst_JER_NP7: 1.7451202680617745e-17 - syst_JER_NP8: 7.400242614266102e-10 - syst_JES_EtaIntercalibration_Modelling: 8.002364447461762e-05 - syst_JES_EtaIntercalibration_NonClosure: 2.563382563625648e-11 - syst_JES_EtaIntercalibration_Stat0: 5.942666320768818e-25 + syst_JER_NP0: 1.22370595e-05 + syst_JER_NP1: 3.67915969e-06 + syst_JER_NP2: 1.25999358e-05 + syst_JER_NP3: 2.34252871e-06 + syst_JER_NP4: 7.52252077e-18 + syst_JER_NP5: 3.08715415e-07 + syst_JER_NP6: 1.48271483e-17 + syst_JER_NP7: 1.74512027e-17 + syst_JER_NP8: 7.40024261e-10 + syst_JES_EtaIntercalibration_Modelling: 8.00236445e-05 + syst_JES_EtaIntercalibration_NonClosure: 2.56338256e-11 + syst_JES_EtaIntercalibration_Stat0: 5.94266632e-25 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 6.972685889531738e-22 - syst_JES_EtaIntercalibration_Stat101: 3.811195088158044e-18 - syst_JES_EtaIntercalibration_Stat102: 1.0224914138906826e-09 - syst_JES_EtaIntercalibration_Stat103: 4.638852013160153e-13 - syst_JES_EtaIntercalibration_Stat104: 5.264099535533119e-19 - syst_JES_EtaIntercalibration_Stat105: 1.3700936719801315e-24 - syst_JES_EtaIntercalibration_Stat106: 5.942666320768818e-25 - syst_JES_EtaIntercalibration_Stat107: 5.942666320768818e-25 - syst_JES_EtaIntercalibration_Stat108: 5.942666320768818e-25 - syst_JES_EtaIntercalibration_Stat109: 5.942666320768818e-25 + syst_JES_EtaIntercalibration_Stat100: 6.97268589e-22 + syst_JES_EtaIntercalibration_Stat101: 3.81119509e-18 + syst_JES_EtaIntercalibration_Stat102: 1.02249141e-09 + syst_JES_EtaIntercalibration_Stat103: 4.63885201e-13 + syst_JES_EtaIntercalibration_Stat104: 5.26409954e-19 + syst_JES_EtaIntercalibration_Stat105: 1.37009367e-24 + syst_JES_EtaIntercalibration_Stat106: 5.94266632e-25 + syst_JES_EtaIntercalibration_Stat107: 5.94266632e-25 + syst_JES_EtaIntercalibration_Stat108: 5.94266632e-25 + syst_JES_EtaIntercalibration_Stat109: 5.94266632e-25 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 1.5067104922645223e-23 - syst_JES_EtaIntercalibration_Stat111: 1.8356947097761108e-18 - syst_JES_EtaIntercalibration_Stat112: 1.8169209961095214e-08 - syst_JES_EtaIntercalibration_Stat113: 1.9347007664362315e-08 - syst_JES_EtaIntercalibration_Stat114: 1.4116213979957236e-09 - syst_JES_EtaIntercalibration_Stat115: 1.9109526474510037e-19 - syst_JES_EtaIntercalibration_Stat116: 4.921345576161057e-24 - syst_JES_EtaIntercalibration_Stat117: 5.942666320768818e-25 - syst_JES_EtaIntercalibration_Stat118: 5.942666320768818e-25 - syst_JES_EtaIntercalibration_Stat119: 5.942666320768818e-25 + syst_JES_EtaIntercalibration_Stat110: 1.50671049e-23 + syst_JES_EtaIntercalibration_Stat111: 1.83569471e-18 + syst_JES_EtaIntercalibration_Stat112: 1.81692100e-08 + syst_JES_EtaIntercalibration_Stat113: 1.93470077e-08 + syst_JES_EtaIntercalibration_Stat114: 1.41162140e-09 + syst_JES_EtaIntercalibration_Stat115: 1.91095265e-19 + syst_JES_EtaIntercalibration_Stat116: 4.92134558e-24 + syst_JES_EtaIntercalibration_Stat117: 5.94266632e-25 + syst_JES_EtaIntercalibration_Stat118: 5.94266632e-25 + syst_JES_EtaIntercalibration_Stat119: 5.94266632e-25 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 3.2510593658067828e-21 - syst_JES_EtaIntercalibration_Stat121: 1.0203295428806322e-09 - syst_JES_EtaIntercalibration_Stat122: 1.0339145163285986e-09 - syst_JES_EtaIntercalibration_Stat123: 1.032982446736371e-09 - syst_JES_EtaIntercalibration_Stat124: 1.4368281873627062e-12 - syst_JES_EtaIntercalibration_Stat125: 1.1939892241976055e-22 - syst_JES_EtaIntercalibration_Stat126: 5.942666320768818e-25 - syst_JES_EtaIntercalibration_Stat127: 5.942666320768818e-25 - syst_JES_EtaIntercalibration_Stat128: 5.942666320768818e-25 - syst_JES_EtaIntercalibration_Stat129: 1.0226967481614478e-18 + syst_JES_EtaIntercalibration_Stat120: 3.25105937e-21 + syst_JES_EtaIntercalibration_Stat121: 1.02032954e-09 + syst_JES_EtaIntercalibration_Stat122: 1.03391452e-09 + syst_JES_EtaIntercalibration_Stat123: 1.03298245e-09 + syst_JES_EtaIntercalibration_Stat124: 1.43682819e-12 + syst_JES_EtaIntercalibration_Stat125: 1.19398922e-22 + syst_JES_EtaIntercalibration_Stat126: 5.94266632e-25 + syst_JES_EtaIntercalibration_Stat127: 5.94266632e-25 + syst_JES_EtaIntercalibration_Stat128: 5.94266632e-25 + syst_JES_EtaIntercalibration_Stat129: 1.02269675e-18 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 4.784787251216009e-09 - syst_JES_EtaIntercalibration_Stat131: 2.361586533388702e-08 - syst_JES_EtaIntercalibration_Stat132: 1.8598619510060416e-10 - syst_JES_EtaIntercalibration_Stat133: 1.43416184841482e-08 - syst_JES_EtaIntercalibration_Stat134: 2.0117770129685378e-09 - syst_JES_EtaIntercalibration_Stat135: 4.6912596123003045e-24 + syst_JES_EtaIntercalibration_Stat130: 4.78478725e-09 + syst_JES_EtaIntercalibration_Stat131: 2.36158653e-08 + syst_JES_EtaIntercalibration_Stat132: 1.85986195e-10 + syst_JES_EtaIntercalibration_Stat133: 1.43416185e-08 + syst_JES_EtaIntercalibration_Stat134: 2.01177701e-09 + syst_JES_EtaIntercalibration_Stat135: 4.69125961e-24 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 syst_JES_EtaIntercalibration_Stat138: 0.0 - syst_JES_EtaIntercalibration_Stat139: 6.558811553932617e-18 - syst_JES_EtaIntercalibration_Stat14: 6.823235724243795e-22 - syst_JES_EtaIntercalibration_Stat140: 8.061624782267841e-09 - syst_JES_EtaIntercalibration_Stat141: 6.680499546254008e-09 - syst_JES_EtaIntercalibration_Stat142: 5.850973829201426e-09 - syst_JES_EtaIntercalibration_Stat143: 1.699859900109418e-12 - syst_JES_EtaIntercalibration_Stat144: 6.278595762588956e-20 + syst_JES_EtaIntercalibration_Stat139: 6.55881155e-18 + syst_JES_EtaIntercalibration_Stat14: 6.82323572e-22 + syst_JES_EtaIntercalibration_Stat140: 8.06162478e-09 + syst_JES_EtaIntercalibration_Stat141: 6.68049955e-09 + syst_JES_EtaIntercalibration_Stat142: 5.85097383e-09 + syst_JES_EtaIntercalibration_Stat143: 1.69985990e-12 + syst_JES_EtaIntercalibration_Stat144: 6.27859576e-20 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 6.960123184973094e-20 - syst_JES_EtaIntercalibration_Stat148: 4.781326962125736e-09 - syst_JES_EtaIntercalibration_Stat149: 1.9337713996236135e-08 - syst_JES_EtaIntercalibration_Stat15: 6.791265142247062e-22 - syst_JES_EtaIntercalibration_Stat150: 2.06996513887608e-08 - syst_JES_EtaIntercalibration_Stat151: 1.9338590776246318e-08 - syst_JES_EtaIntercalibration_Stat152: 7.029291909573823e-19 + syst_JES_EtaIntercalibration_Stat147: 6.96012318e-20 + syst_JES_EtaIntercalibration_Stat148: 4.78132696e-09 + syst_JES_EtaIntercalibration_Stat149: 1.93377140e-08 + syst_JES_EtaIntercalibration_Stat15: 6.79126514e-22 + syst_JES_EtaIntercalibration_Stat150: 2.06996514e-08 + syst_JES_EtaIntercalibration_Stat151: 1.93385908e-08 + syst_JES_EtaIntercalibration_Stat152: 7.02929191e-19 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 syst_JES_EtaIntercalibration_Stat156: 0.0 - syst_JES_EtaIntercalibration_Stat157: 1.4640875392885494e-18 - syst_JES_EtaIntercalibration_Stat158: 3.3329160736620714e-09 - syst_JES_EtaIntercalibration_Stat159: 7.354917181722715e-09 - syst_JES_EtaIntercalibration_Stat16: 6.761978172901773e-22 - syst_JES_EtaIntercalibration_Stat160: 8.305088485380515e-09 - syst_JES_EtaIntercalibration_Stat161: 1.7697313763111057e-12 - syst_JES_EtaIntercalibration_Stat162: 6.399111740702768e-20 + syst_JES_EtaIntercalibration_Stat157: 1.46408754e-18 + syst_JES_EtaIntercalibration_Stat158: 3.33291607e-09 + syst_JES_EtaIntercalibration_Stat159: 7.35491718e-09 + syst_JES_EtaIntercalibration_Stat16: 6.76197817e-22 + syst_JES_EtaIntercalibration_Stat160: 8.30508849e-09 + syst_JES_EtaIntercalibration_Stat161: 1.76973138e-12 + syst_JES_EtaIntercalibration_Stat162: 6.39911174e-20 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 1.2971543740048828e-19 - syst_JES_EtaIntercalibration_Stat166: 1.813364496922778e-08 - syst_JES_EtaIntercalibration_Stat167: 2.0411496833892414e-09 - syst_JES_EtaIntercalibration_Stat168: 1.1270372652363781e-08 - syst_JES_EtaIntercalibration_Stat169: 6.618951484185393e-09 - syst_JES_EtaIntercalibration_Stat17: 4.839349956347443e-25 - syst_JES_EtaIntercalibration_Stat170: 2.0117770046081253e-09 + syst_JES_EtaIntercalibration_Stat165: 1.29715437e-19 + syst_JES_EtaIntercalibration_Stat166: 1.81336450e-08 + syst_JES_EtaIntercalibration_Stat167: 2.04114968e-09 + syst_JES_EtaIntercalibration_Stat168: 1.12703727e-08 + syst_JES_EtaIntercalibration_Stat169: 6.61895148e-09 + syst_JES_EtaIntercalibration_Stat17: 4.83934996e-25 + syst_JES_EtaIntercalibration_Stat170: 2.01177700e-09 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 - syst_JES_EtaIntercalibration_Stat175: 1.5765668894108767e-14 - syst_JES_EtaIntercalibration_Stat176: 5.2136853667127825e-09 - syst_JES_EtaIntercalibration_Stat177: 8.805076119347294e-09 - syst_JES_EtaIntercalibration_Stat178: 9.153096893947972e-09 - syst_JES_EtaIntercalibration_Stat179: 6.462033193972312e-09 + syst_JES_EtaIntercalibration_Stat175: 1.57656689e-14 + syst_JES_EtaIntercalibration_Stat176: 5.21368537e-09 + syst_JES_EtaIntercalibration_Stat177: 8.80507612e-09 + syst_JES_EtaIntercalibration_Stat178: 9.15309689e-09 + syst_JES_EtaIntercalibration_Stat179: 6.46203319e-09 syst_JES_EtaIntercalibration_Stat18: 0.0 - syst_JES_EtaIntercalibration_Stat180: 4.826359574278293e-13 + syst_JES_EtaIntercalibration_Stat180: 4.82635957e-13 syst_JES_EtaIntercalibration_Stat181: 0.0 - syst_JES_EtaIntercalibration_Stat182: 1.823792118976579e-14 - syst_JES_EtaIntercalibration_Stat183: 1.2487334503407844e-08 - syst_JES_EtaIntercalibration_Stat184: 1.1317569173634416e-07 - syst_JES_EtaIntercalibration_Stat185: 1.526979733820983e-07 - syst_JES_EtaIntercalibration_Stat186: 1.676711289995985e-08 - syst_JES_EtaIntercalibration_Stat187: 4.973583885972371e-09 + syst_JES_EtaIntercalibration_Stat182: 1.82379212e-14 + syst_JES_EtaIntercalibration_Stat183: 1.24873345e-08 + syst_JES_EtaIntercalibration_Stat184: 1.13175692e-07 + syst_JES_EtaIntercalibration_Stat185: 1.52697973e-07 + syst_JES_EtaIntercalibration_Stat186: 1.67671129e-08 + syst_JES_EtaIntercalibration_Stat187: 4.97358389e-09 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 - syst_JES_EtaIntercalibration_Stat192: 8.600485355301735e-10 - syst_JES_EtaIntercalibration_Stat193: 6.279447586786596e-08 - syst_JES_EtaIntercalibration_Stat194: 1.6368833189937515e-07 - syst_JES_EtaIntercalibration_Stat195: 3.4809631928533806e-08 - syst_JES_EtaIntercalibration_Stat196: 5.0302223360404255e-09 - syst_JES_EtaIntercalibration_Stat197: 4.7117523889419315e-12 - syst_JES_EtaIntercalibration_Stat198: 5.4507620338811345e-08 - syst_JES_EtaIntercalibration_Stat199: 1.8597749191770494e-07 + syst_JES_EtaIntercalibration_Stat192: 8.60048536e-10 + syst_JES_EtaIntercalibration_Stat193: 6.27944759e-08 + syst_JES_EtaIntercalibration_Stat194: 1.63688332e-07 + syst_JES_EtaIntercalibration_Stat195: 3.48096319e-08 + syst_JES_EtaIntercalibration_Stat196: 5.03022234e-09 + syst_JES_EtaIntercalibration_Stat197: 4.71175239e-12 + syst_JES_EtaIntercalibration_Stat198: 5.45076203e-08 + syst_JES_EtaIntercalibration_Stat199: 1.85977492e-07 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 3.1985344690967453e-07 - syst_JES_EtaIntercalibration_Stat201: 1.245788957849603e-07 - syst_JES_EtaIntercalibration_Stat202: 6.036982743457197e-10 + syst_JES_EtaIntercalibration_Stat200: 3.19853447e-07 + syst_JES_EtaIntercalibration_Stat201: 1.24578896e-07 + syst_JES_EtaIntercalibration_Stat202: 6.03698274e-10 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 - syst_JES_EtaIntercalibration_Stat207: 8.660156296856741e-09 - syst_JES_EtaIntercalibration_Stat208: 1.6409049332609127e-07 - syst_JES_EtaIntercalibration_Stat209: 4.433450659475078e-07 + syst_JES_EtaIntercalibration_Stat207: 8.66015630e-09 + syst_JES_EtaIntercalibration_Stat208: 1.64090493e-07 + syst_JES_EtaIntercalibration_Stat209: 4.43345066e-07 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 1.4265124009275206e-07 - syst_JES_EtaIntercalibration_Stat211: 3.442236077029e-09 - syst_JES_EtaIntercalibration_Stat212: 1.770308094654713e-07 - syst_JES_EtaIntercalibration_Stat213: 3.575767994431406e-07 - syst_JES_EtaIntercalibration_Stat214: 1.2467100093847004e-07 - syst_JES_EtaIntercalibration_Stat215: 6.053472857996103e-10 + syst_JES_EtaIntercalibration_Stat210: 1.42651240e-07 + syst_JES_EtaIntercalibration_Stat211: 3.44223608e-09 + syst_JES_EtaIntercalibration_Stat212: 1.77030809e-07 + syst_JES_EtaIntercalibration_Stat213: 3.57576799e-07 + syst_JES_EtaIntercalibration_Stat214: 1.24671001e-07 + syst_JES_EtaIntercalibration_Stat215: 6.05347286e-10 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 syst_JES_EtaIntercalibration_Stat219: 0.0 - syst_JES_EtaIntercalibration_Stat22: 5.942666320768818e-25 - syst_JES_EtaIntercalibration_Stat220: 8.709741239985262e-09 - syst_JES_EtaIntercalibration_Stat221: 1.2752141731881748e-07 - syst_JES_EtaIntercalibration_Stat222: 4.4291478582228437e-07 - syst_JES_EtaIntercalibration_Stat223: 2.2364672605473125e-07 - syst_JES_EtaIntercalibration_Stat224: 6.161888996079043e-07 - syst_JES_EtaIntercalibration_Stat225: 1.2146782536951917e-06 - syst_JES_EtaIntercalibration_Stat226: 4.490122576277846e-07 - syst_JES_EtaIntercalibration_Stat227: 9.420561169590695e-09 + syst_JES_EtaIntercalibration_Stat22: 5.94266632e-25 + syst_JES_EtaIntercalibration_Stat220: 8.70974124e-09 + syst_JES_EtaIntercalibration_Stat221: 1.27521417e-07 + syst_JES_EtaIntercalibration_Stat222: 4.42914786e-07 + syst_JES_EtaIntercalibration_Stat223: 2.23646726e-07 + syst_JES_EtaIntercalibration_Stat224: 6.16188900e-07 + syst_JES_EtaIntercalibration_Stat225: 1.21467825e-06 + syst_JES_EtaIntercalibration_Stat226: 4.49012258e-07 + syst_JES_EtaIntercalibration_Stat227: 9.42056117e-09 syst_JES_EtaIntercalibration_Stat228: 0.0 syst_JES_EtaIntercalibration_Stat229: 0.0 - syst_JES_EtaIntercalibration_Stat23: 5.942666320768818e-25 + syst_JES_EtaIntercalibration_Stat23: 5.94266632e-25 syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 - syst_JES_EtaIntercalibration_Stat232: 4.742012874895534e-09 - syst_JES_EtaIntercalibration_Stat233: 3.8434103020624796e-07 - syst_JES_EtaIntercalibration_Stat234: 1.0233708553110157e-06 - syst_JES_EtaIntercalibration_Stat235: 7.019858118224328e-07 - syst_JES_EtaIntercalibration_Stat236: 2.9012885068534635e-07 - syst_JES_EtaIntercalibration_Stat237: 5.2091663440516083e-08 - syst_JES_EtaIntercalibration_Stat238: 6.078632309162975e-10 + syst_JES_EtaIntercalibration_Stat232: 4.74201287e-09 + syst_JES_EtaIntercalibration_Stat233: 3.84341030e-07 + syst_JES_EtaIntercalibration_Stat234: 1.02337086e-06 + syst_JES_EtaIntercalibration_Stat235: 7.01985812e-07 + syst_JES_EtaIntercalibration_Stat236: 2.90128851e-07 + syst_JES_EtaIntercalibration_Stat237: 5.20916634e-08 + syst_JES_EtaIntercalibration_Stat238: 6.07863231e-10 syst_JES_EtaIntercalibration_Stat239: 0.0 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 - syst_JES_EtaIntercalibration_Stat243: 1.0262435982333416e-09 - syst_JES_EtaIntercalibration_Stat244: 6.284635127091706e-08 - syst_JES_EtaIntercalibration_Stat245: 3.1462808202701806e-07 - syst_JES_EtaIntercalibration_Stat25: 3.9083726472791715e-25 - syst_JES_EtaIntercalibration_Stat26: 1.5016957106884203e-23 - syst_JES_EtaIntercalibration_Stat27: 8.488695518600017e-22 - syst_JES_EtaIntercalibration_Stat28: 2.011777012990928e-09 - syst_JES_EtaIntercalibration_Stat29: 8.423647473036844e-22 + syst_JES_EtaIntercalibration_Stat243: 1.02624360e-09 + syst_JES_EtaIntercalibration_Stat244: 6.28463513e-08 + syst_JES_EtaIntercalibration_Stat245: 3.14628082e-07 + syst_JES_EtaIntercalibration_Stat25: 3.90837265e-25 + syst_JES_EtaIntercalibration_Stat26: 1.50169571e-23 + syst_JES_EtaIntercalibration_Stat27: 8.48869552e-22 + syst_JES_EtaIntercalibration_Stat28: 2.01177701e-09 + syst_JES_EtaIntercalibration_Stat29: 8.42364747e-22 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 1.963219597370605e-24 + syst_JES_EtaIntercalibration_Stat30: 1.96321960e-24 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 9.014344291183913e-25 - syst_JES_EtaIntercalibration_Stat36: 6.701611760427487e-22 - syst_JES_EtaIntercalibration_Stat37: 7.198403148456252e-14 - syst_JES_EtaIntercalibration_Stat38: 7.197537122931224e-14 - syst_JES_EtaIntercalibration_Stat39: 1.510127362410204e-22 - syst_JES_EtaIntercalibration_Stat4: 5.358965198618106e-25 - syst_JES_EtaIntercalibration_Stat40: 7.934524749473027e-25 + syst_JES_EtaIntercalibration_Stat35: 9.01434429e-25 + syst_JES_EtaIntercalibration_Stat36: 6.70161176e-22 + syst_JES_EtaIntercalibration_Stat37: 7.19840315e-14 + syst_JES_EtaIntercalibration_Stat38: 7.19753712e-14 + syst_JES_EtaIntercalibration_Stat39: 1.51012736e-22 + syst_JES_EtaIntercalibration_Stat4: 5.35896520e-25 + syst_JES_EtaIntercalibration_Stat40: 7.93452475e-25 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 - syst_JES_EtaIntercalibration_Stat44: 5.942666320768818e-25 + syst_JES_EtaIntercalibration_Stat44: 5.94266632e-25 syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 - syst_JES_EtaIntercalibration_Stat47: 3.9101046980867404e-25 - syst_JES_EtaIntercalibration_Stat48: 7.755713684117021e-23 - syst_JES_EtaIntercalibration_Stat49: 1.701511901221969e-21 - syst_JES_EtaIntercalibration_Stat5: 1.188318243359076e-23 - syst_JES_EtaIntercalibration_Stat50: 2.0117770129910015e-09 - syst_JES_EtaIntercalibration_Stat51: 1.9368391035912093e-19 - syst_JES_EtaIntercalibration_Stat52: 6.692464140359662e-24 + syst_JES_EtaIntercalibration_Stat47: 3.91010470e-25 + syst_JES_EtaIntercalibration_Stat48: 7.75571368e-23 + syst_JES_EtaIntercalibration_Stat49: 1.70151190e-21 + syst_JES_EtaIntercalibration_Stat5: 1.18831824e-23 + syst_JES_EtaIntercalibration_Stat50: 2.01177701e-09 + syst_JES_EtaIntercalibration_Stat51: 1.93683910e-19 + syst_JES_EtaIntercalibration_Stat52: 6.69246414e-24 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 syst_JES_EtaIntercalibration_Stat56: 0.0 - syst_JES_EtaIntercalibration_Stat57: 6.8308886778693e-22 - syst_JES_EtaIntercalibration_Stat58: 6.150290785808425e-22 - syst_JES_EtaIntercalibration_Stat59: 1.2006577137993991e-12 - syst_JES_EtaIntercalibration_Stat6: 9.423604976334693e-24 - syst_JES_EtaIntercalibration_Stat60: 7.211393350828902e-14 - syst_JES_EtaIntercalibration_Stat61: 9.110468938534394e-22 - syst_JES_EtaIntercalibration_Stat62: 4.936344801571301e-25 + syst_JES_EtaIntercalibration_Stat57: 6.83088868e-22 + syst_JES_EtaIntercalibration_Stat58: 6.15029079e-22 + syst_JES_EtaIntercalibration_Stat59: 1.20065771e-12 + syst_JES_EtaIntercalibration_Stat6: 9.42360498e-24 + syst_JES_EtaIntercalibration_Stat60: 7.21139335e-14 + syst_JES_EtaIntercalibration_Stat61: 9.11046894e-22 + syst_JES_EtaIntercalibration_Stat62: 4.93634480e-25 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 - syst_JES_EtaIntercalibration_Stat69: 6.183503274843477e-25 - syst_JES_EtaIntercalibration_Stat7: 7.49612920112774e-24 - syst_JES_EtaIntercalibration_Stat70: 9.545230052230276e-22 - syst_JES_EtaIntercalibration_Stat71: 4.766603822430988e-09 - syst_JES_EtaIntercalibration_Stat72: 2.0126430382820535e-09 - syst_JES_EtaIntercalibration_Stat73: 2.011777012988647e-09 - syst_JES_EtaIntercalibration_Stat74: 1.421130290253149e-22 + syst_JES_EtaIntercalibration_Stat69: 6.18350327e-25 + syst_JES_EtaIntercalibration_Stat7: 7.49612920e-24 + syst_JES_EtaIntercalibration_Stat70: 9.54523005e-22 + syst_JES_EtaIntercalibration_Stat71: 4.76660382e-09 + syst_JES_EtaIntercalibration_Stat72: 2.01264304e-09 + syst_JES_EtaIntercalibration_Stat73: 2.01177701e-09 + syst_JES_EtaIntercalibration_Stat74: 1.42113029e-22 syst_JES_EtaIntercalibration_Stat75: 0.0 syst_JES_EtaIntercalibration_Stat76: 0.0 syst_JES_EtaIntercalibration_Stat77: 0.0 syst_JES_EtaIntercalibration_Stat78: 0.0 - syst_JES_EtaIntercalibration_Stat79: 6.887074342563756e-22 + syst_JES_EtaIntercalibration_Stat79: 6.88707434e-22 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 2.123049153340544e-18 - syst_JES_EtaIntercalibration_Stat81: 1.022491904544196e-09 - syst_JES_EtaIntercalibration_Stat82: 4.416266480863672e-13 - syst_JES_EtaIntercalibration_Stat83: 6.820882127701666e-20 - syst_JES_EtaIntercalibration_Stat84: 6.152039255401416e-25 - syst_JES_EtaIntercalibration_Stat85: 5.942666320768818e-25 - syst_JES_EtaIntercalibration_Stat86: 5.942666320768818e-25 - syst_JES_EtaIntercalibration_Stat87: 5.942666320768818e-25 - syst_JES_EtaIntercalibration_Stat88: 5.942666320768818e-25 - syst_JES_EtaIntercalibration_Stat89: 5.942666320768818e-25 + syst_JES_EtaIntercalibration_Stat80: 2.12304915e-18 + syst_JES_EtaIntercalibration_Stat81: 1.02249190e-09 + syst_JES_EtaIntercalibration_Stat82: 4.41626648e-13 + syst_JES_EtaIntercalibration_Stat83: 6.82088213e-20 + syst_JES_EtaIntercalibration_Stat84: 6.15203926e-25 + syst_JES_EtaIntercalibration_Stat85: 5.94266632e-25 + syst_JES_EtaIntercalibration_Stat86: 5.94266632e-25 + syst_JES_EtaIntercalibration_Stat87: 5.94266632e-25 + syst_JES_EtaIntercalibration_Stat88: 5.94266632e-25 + syst_JES_EtaIntercalibration_Stat89: 5.94266632e-25 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 6.651168270875426e-20 - syst_JES_EtaIntercalibration_Stat92: 4.766603822514883e-09 - syst_JES_EtaIntercalibration_Stat93: 2.0126430380664365e-09 - syst_JES_EtaIntercalibration_Stat94: 2.0117770129779056e-09 - syst_JES_EtaIntercalibration_Stat95: 7.419274947729057e-22 - syst_JES_EtaIntercalibration_Stat96: 4.921345576161057e-24 - syst_JES_EtaIntercalibration_Stat97: 5.942666320768818e-25 - syst_JES_EtaIntercalibration_Stat98: 5.942666320768818e-25 - syst_JES_EtaIntercalibration_Stat99: 5.942666320768818e-25 - syst_JES_EtaIntercalibration_TotalStat_MJB: 1.248298573058545e-05 - syst_JES_Flavour_Comp: 2.511123055527148e-05 - syst_JES_Flavour_Response: 8.2083583468316e-06 - syst_JES_Gjet_Generator: 2.9304212581129013e-05 - syst_JES_Gjet_OOC: 2.4751539346068963e-05 - syst_JES_Gjet_Purity: 3.542361359319515e-06 - syst_JES_Gjet_Stat1: 9.198490351682715e-08 - syst_JES_Gjet_Stat10: 8.048363187630142e-07 - syst_JES_Gjet_Stat11: 8.370806815952688e-07 - syst_JES_Gjet_Stat12: 1.2316614175576013e-06 - syst_JES_Gjet_Stat13: 5.509843441514468e-06 - syst_JES_Gjet_Stat14: 1.4731415410611434e-05 - syst_JES_Gjet_Stat15: 2.455195053351159e-05 - syst_JES_Gjet_Stat2: 1.2074126179562604e-07 - syst_JES_Gjet_Stat3: 1.3543715175312864e-07 - syst_JES_Gjet_Stat4: 1.103638817729786e-07 - syst_JES_Gjet_Stat5: 1.5968713304224567e-17 - syst_JES_Gjet_Stat6: 4.293180027671796e-07 - syst_JES_Gjet_Stat7: 2.1293607021826997e-07 - syst_JES_Gjet_Stat8: 1.53852873551325e-07 - syst_JES_Gjet_Stat9: 3.805766628420613e-07 - syst_JES_Gjet_Veto: 2.603048021070683e-05 - syst_JES_Gjet_dPhi: 2.5863480044263187e-06 - syst_JES_LArESZee: 4.293243994929708e-05 - syst_JES_LArEsmear: 4.027631761655973e-06 - syst_JES_LAr_JVT: 5.244345621714877e-06 - syst_JES_MJB_Alpha: 7.187967932594023e-07 - syst_JES_MJB_Asym: 1.0415818402794856e-05 - syst_JES_MJB_Beta: 6.740500927230854e-07 - syst_JES_MJB_Fragmentation: 3.117550761415121e-06 - syst_JES_MJB_Stat1: 3.977656400666058e-11 - syst_JES_MJB_Stat10: 2.6086013014640627e-07 - syst_JES_MJB_Stat11: 3.661045069375683e-07 - syst_JES_MJB_Stat12: 7.087501746031531e-07 - syst_JES_MJB_Stat13: 1.1047023852603922e-06 - syst_JES_MJB_Stat14: 2.1035010696455567e-06 - syst_JES_MJB_Stat15: 1.593015693582458e-06 - syst_JES_MJB_Stat16: 3.0417588250878804e-06 - syst_JES_MJB_Stat2: 1.0319043305946535e-08 - syst_JES_MJB_Stat3: 9.896938314448565e-12 - syst_JES_MJB_Stat4: 8.299121444466276e-12 + syst_JES_EtaIntercalibration_Stat91: 6.65116827e-20 + syst_JES_EtaIntercalibration_Stat92: 4.76660382e-09 + syst_JES_EtaIntercalibration_Stat93: 2.01264304e-09 + syst_JES_EtaIntercalibration_Stat94: 2.01177701e-09 + syst_JES_EtaIntercalibration_Stat95: 7.41927495e-22 + syst_JES_EtaIntercalibration_Stat96: 4.92134558e-24 + syst_JES_EtaIntercalibration_Stat97: 5.94266632e-25 + syst_JES_EtaIntercalibration_Stat98: 5.94266632e-25 + syst_JES_EtaIntercalibration_Stat99: 5.94266632e-25 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.24829857e-05 + syst_JES_Flavour_Comp: 2.51112306e-05 + syst_JES_Flavour_Response: 8.20835835e-06 + syst_JES_Gjet_Generator: 2.93042126e-05 + syst_JES_Gjet_OOC: 2.47515393e-05 + syst_JES_Gjet_Purity: 3.54236136e-06 + syst_JES_Gjet_Stat1: 9.19849035e-08 + syst_JES_Gjet_Stat10: 8.04836319e-07 + syst_JES_Gjet_Stat11: 8.37080682e-07 + syst_JES_Gjet_Stat12: 1.23166142e-06 + syst_JES_Gjet_Stat13: 5.50984344e-06 + syst_JES_Gjet_Stat14: 1.47314154e-05 + syst_JES_Gjet_Stat15: 2.45519505e-05 + syst_JES_Gjet_Stat2: 1.20741262e-07 + syst_JES_Gjet_Stat3: 1.35437152e-07 + syst_JES_Gjet_Stat4: 1.10363882e-07 + syst_JES_Gjet_Stat5: 1.59687133e-17 + syst_JES_Gjet_Stat6: 4.29318003e-07 + syst_JES_Gjet_Stat7: 2.12936070e-07 + syst_JES_Gjet_Stat8: 1.53852874e-07 + syst_JES_Gjet_Stat9: 3.80576663e-07 + syst_JES_Gjet_Veto: 2.60304802e-05 + syst_JES_Gjet_dPhi: 2.58634800e-06 + syst_JES_LArESZee: 4.29324399e-05 + syst_JES_LArEsmear: 4.02763176e-06 + syst_JES_LAr_JVT: 5.24434562e-06 + syst_JES_MJB_Alpha: 7.18796793e-07 + syst_JES_MJB_Asym: 1.04158184e-05 + syst_JES_MJB_Beta: 6.74050093e-07 + syst_JES_MJB_Fragmentation: 3.11755076e-06 + syst_JES_MJB_Stat1: 3.97765640e-11 + syst_JES_MJB_Stat10: 2.60860130e-07 + syst_JES_MJB_Stat11: 3.66104507e-07 + syst_JES_MJB_Stat12: 7.08750175e-07 + syst_JES_MJB_Stat13: 1.10470239e-06 + syst_JES_MJB_Stat14: 2.10350107e-06 + syst_JES_MJB_Stat15: 1.59301569e-06 + syst_JES_MJB_Stat16: 3.04175883e-06 + syst_JES_MJB_Stat2: 1.03190433e-08 + syst_JES_MJB_Stat3: 9.89693831e-12 + syst_JES_MJB_Stat4: 8.29912144e-12 syst_JES_MJB_Stat5: 0.0 - syst_JES_MJB_Stat6: 3.153198495179141e-08 - syst_JES_MJB_Stat7: 4.2262039704680604e-08 - syst_JES_MJB_Stat8: 5.820188721167038e-08 - syst_JES_MJB_Stat9: 1.221536704319604e-07 - syst_JES_MJB_Threshold: 5.144754513093894e-06 - syst_JES_Pileup_MuOffset: 7.45492821897032e-06 - syst_JES_Pileup_NPVOffset: 7.146547890415343e-06 - syst_JES_Pileup_Pt_term: 3.864675148055784e-06 - syst_JES_Pileup_Rho_topology: 8.573000466581115e-06 - syst_JES_PunchThrough_MC15: 2.6161485049591508e-05 + syst_JES_MJB_Stat6: 3.15319850e-08 + syst_JES_MJB_Stat7: 4.22620397e-08 + syst_JES_MJB_Stat8: 5.82018872e-08 + syst_JES_MJB_Stat9: 1.22153670e-07 + syst_JES_MJB_Threshold: 5.14475451e-06 + syst_JES_Pileup_MuOffset: 7.45492822e-06 + syst_JES_Pileup_NPVOffset: 7.14654789e-06 + syst_JES_Pileup_Pt_term: 3.86467515e-06 + syst_JES_Pileup_Rho_topology: 8.57300047e-06 + syst_JES_PunchThrough_MC15: 2.61614850e-05 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 1.1561908438921317e-05 - syst_JES_Zjet_MuScale: 1.0606400932927248e-06 - syst_JES_Zjet_MuSmearID: 2.1238262423042053e-07 - syst_JES_Zjet_MuSmearMS: 2.879223680091562e-06 - syst_JES_Zjet_OOC: 7.403510704388831e-06 - syst_JES_Zjet_Stat1: 1.1535833162368464e-06 - syst_JES_Zjet_Stat10: 6.20204756511912e-07 - syst_JES_Zjet_Stat11: 8.392691642137222e-07 - syst_JES_Zjet_Stat12: 1.7515647290351563e-06 - syst_JES_Zjet_Stat13: 2.8838548420473592e-06 - syst_JES_Zjet_Stat2: 5.300941496564552e-09 - syst_JES_Zjet_Stat3: 3.69916179694806e-07 - syst_JES_Zjet_Stat4: 4.1711372549941335e-07 - syst_JES_Zjet_Stat5: 5.090222784908339e-07 - syst_JES_Zjet_Stat6: 3.434419419639948e-07 - syst_JES_Zjet_Stat7: 4.566134114324721e-07 - syst_JES_Zjet_Stat8: 1.9271328444090202e-07 - syst_JES_Zjet_Stat9: 4.375217108898712e-07 - syst_JES_Zjet_Veto: 1.4830411322684209e-06 - syst_JES_Zjet_dPhi: 1.3601506414732156e-06 - syst_PRW: 3.429e-06 + syst_JES_Zjet_MC: 1.15619084e-05 + syst_JES_Zjet_MuScale: 1.06064009e-06 + syst_JES_Zjet_MuSmearID: 2.12382624e-07 + syst_JES_Zjet_MuSmearMS: 2.87922368e-06 + syst_JES_Zjet_OOC: 7.40351070e-06 + syst_JES_Zjet_Stat1: 1.15358332e-06 + syst_JES_Zjet_Stat10: 6.20204757e-07 + syst_JES_Zjet_Stat11: 8.39269164e-07 + syst_JES_Zjet_Stat12: 1.75156473e-06 + syst_JES_Zjet_Stat13: 2.88385484e-06 + syst_JES_Zjet_Stat2: 5.30094150e-09 + syst_JES_Zjet_Stat3: 3.69916180e-07 + syst_JES_Zjet_Stat4: 4.17113725e-07 + syst_JES_Zjet_Stat5: 5.09022278e-07 + syst_JES_Zjet_Stat6: 3.43441942e-07 + syst_JES_Zjet_Stat7: 4.56613411e-07 + syst_JES_Zjet_Stat8: 1.92713284e-07 + syst_JES_Zjet_Stat9: 4.37521711e-07 + syst_JES_Zjet_Veto: 1.48304113e-06 + syst_JES_Zjet_dPhi: 1.36015064e-06 + syst_PRW: 3.42900000e-06 syst_Unfolding_bias: 2.09e-20 - syst_cleaning: 4.203687309969665e-06 - syst_lumi: 1.3436e-05 -- stat: 1.1494e-05 + syst_cleaning: 4.20368731e-06 + syst_lumi: 1.34360000e-05 +- stat: 1.14940000e-05 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 2.1244545182234423e-06 - syst_JER_NP1: 6.291565524573355e-07 - syst_JER_NP2: 2.4153554603825912e-06 - syst_JER_NP3: 4.1788554653158325e-07 - syst_JER_NP4: 2.0025061173439646e-19 - syst_JER_NP5: 1.2680922166782666e-08 - syst_JER_NP6: 3.935024650494581e-19 - syst_JER_NP7: 4.594939254223063e-19 - syst_JER_NP8: 9.485912436344752e-12 - syst_JES_EtaIntercalibration_Modelling: 1.468508086460541e-05 - syst_JES_EtaIntercalibration_NonClosure: 3.575602187044862e-13 - syst_JES_EtaIntercalibration_Stat0: 4.2755674184837735e-26 + syst_JER_NP0: 2.12445452e-06 + syst_JER_NP1: 6.29156552e-07 + syst_JER_NP2: 2.41535546e-06 + syst_JER_NP3: 4.17885547e-07 + syst_JER_NP4: 2.00250612e-19 + syst_JER_NP5: 1.26809222e-08 + syst_JER_NP6: 3.93502465e-19 + syst_JER_NP7: 4.59493925e-19 + syst_JER_NP8: 9.48591244e-12 + syst_JES_EtaIntercalibration_Modelling: 1.46850809e-05 + syst_JES_EtaIntercalibration_NonClosure: 3.57560219e-13 + syst_JES_EtaIntercalibration_Stat0: 4.27556742e-26 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 2.507223367008811e-23 - syst_JES_EtaIntercalibration_Stat101: 8.045938525119368e-20 - syst_JES_EtaIntercalibration_Stat102: 2.0455487330704877e-10 - syst_JES_EtaIntercalibration_Stat103: 1.2071165780797643e-14 - syst_JES_EtaIntercalibration_Stat104: 1.1545230639740376e-20 - syst_JES_EtaIntercalibration_Stat105: 1.071417019652012e-25 - syst_JES_EtaIntercalibration_Stat106: 4.2755674184837735e-26 - syst_JES_EtaIntercalibration_Stat107: 4.2755674184837735e-26 - syst_JES_EtaIntercalibration_Stat108: 4.2755674184837735e-26 - syst_JES_EtaIntercalibration_Stat109: 4.2755674184837735e-26 + syst_JES_EtaIntercalibration_Stat100: 2.50722337e-23 + syst_JES_EtaIntercalibration_Stat101: 8.04593853e-20 + syst_JES_EtaIntercalibration_Stat102: 2.04554873e-10 + syst_JES_EtaIntercalibration_Stat103: 1.20711658e-14 + syst_JES_EtaIntercalibration_Stat104: 1.15452306e-20 + syst_JES_EtaIntercalibration_Stat105: 1.07141702e-25 + syst_JES_EtaIntercalibration_Stat106: 4.27556742e-26 + syst_JES_EtaIntercalibration_Stat107: 4.27556742e-26 + syst_JES_EtaIntercalibration_Stat108: 4.27556742e-26 + syst_JES_EtaIntercalibration_Stat109: 4.27556742e-26 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 8.623001855502526e-25 - syst_JES_EtaIntercalibration_Stat111: 3.2619231087657476e-20 - syst_JES_EtaIntercalibration_Stat112: 1.776218066855215e-09 - syst_JES_EtaIntercalibration_Stat113: 1.0148085491338021e-10 - syst_JES_EtaIntercalibration_Stat114: 3.490948401110949e-10 - syst_JES_EtaIntercalibration_Stat115: 1.5915284375404667e-21 - syst_JES_EtaIntercalibration_Stat116: 8.868230870218706e-25 - syst_JES_EtaIntercalibration_Stat117: 4.2755674184837735e-26 - syst_JES_EtaIntercalibration_Stat118: 4.2755674184837735e-26 - syst_JES_EtaIntercalibration_Stat119: 4.2755674184837735e-26 + syst_JES_EtaIntercalibration_Stat110: 8.62300186e-25 + syst_JES_EtaIntercalibration_Stat111: 3.26192311e-20 + syst_JES_EtaIntercalibration_Stat112: 1.77621807e-09 + syst_JES_EtaIntercalibration_Stat113: 1.01480855e-10 + syst_JES_EtaIntercalibration_Stat114: 3.49094840e-10 + syst_JES_EtaIntercalibration_Stat115: 1.59152844e-21 + syst_JES_EtaIntercalibration_Stat116: 8.86823087e-25 + syst_JES_EtaIntercalibration_Stat117: 4.27556742e-26 + syst_JES_EtaIntercalibration_Stat118: 4.27556742e-26 + syst_JES_EtaIntercalibration_Stat119: 4.27556742e-26 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 1.0659906695182653e-22 - syst_JES_EtaIntercalibration_Stat121: 2.0459582949383402e-10 - syst_JES_EtaIntercalibration_Stat122: 2.0543648061429475e-10 - syst_JES_EtaIntercalibration_Stat123: 2.0542107018224274e-10 - syst_JES_EtaIntercalibration_Stat124: 2.1776907493948722e-14 - syst_JES_EtaIntercalibration_Stat125: 5.40832864663382e-24 - syst_JES_EtaIntercalibration_Stat126: 4.2755674184837735e-26 - syst_JES_EtaIntercalibration_Stat127: 4.2755674184837735e-26 - syst_JES_EtaIntercalibration_Stat128: 4.2755674184837735e-26 - syst_JES_EtaIntercalibration_Stat129: 2.4186438364298288e-20 + syst_JES_EtaIntercalibration_Stat120: 1.06599067e-22 + syst_JES_EtaIntercalibration_Stat121: 2.04595829e-10 + syst_JES_EtaIntercalibration_Stat122: 2.05436481e-10 + syst_JES_EtaIntercalibration_Stat123: 2.05421070e-10 + syst_JES_EtaIntercalibration_Stat124: 2.17769075e-14 + syst_JES_EtaIntercalibration_Stat125: 5.40832865e-24 + syst_JES_EtaIntercalibration_Stat126: 4.27556742e-26 + syst_JES_EtaIntercalibration_Stat127: 4.27556742e-26 + syst_JES_EtaIntercalibration_Stat128: 4.27556742e-26 + syst_JES_EtaIntercalibration_Stat129: 2.41864384e-20 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 9.091530910466481e-11 - syst_JES_EtaIntercalibration_Stat131: 2.4716768473846953e-09 - syst_JES_EtaIntercalibration_Stat132: 3.038150114078466e-12 - syst_JES_EtaIntercalibration_Stat133: 7.506679774593576e-10 - syst_JES_EtaIntercalibration_Stat134: 4.0408745340543156e-10 - syst_JES_EtaIntercalibration_Stat135: 8.716545689090376e-25 + syst_JES_EtaIntercalibration_Stat130: 9.09153091e-11 + syst_JES_EtaIntercalibration_Stat131: 2.47167685e-09 + syst_JES_EtaIntercalibration_Stat132: 3.03815011e-12 + syst_JES_EtaIntercalibration_Stat133: 7.50667977e-10 + syst_JES_EtaIntercalibration_Stat134: 4.04087453e-10 + syst_JES_EtaIntercalibration_Stat135: 8.71654569e-25 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 syst_JES_EtaIntercalibration_Stat138: 0.0 - syst_JES_EtaIntercalibration_Stat139: 1.3865581560107747e-19 - syst_JES_EtaIntercalibration_Stat14: 2.3689295310776976e-23 - syst_JES_EtaIntercalibration_Stat140: 6.1969158337167e-10 - syst_JES_EtaIntercalibration_Stat141: 5.829671609962263e-10 - syst_JES_EtaIntercalibration_Stat142: 2.873530363507579e-10 - syst_JES_EtaIntercalibration_Stat143: 3.307570399477538e-14 - syst_JES_EtaIntercalibration_Stat144: 1.773263657779068e-21 + syst_JES_EtaIntercalibration_Stat139: 1.38655816e-19 + syst_JES_EtaIntercalibration_Stat14: 2.36892953e-23 + syst_JES_EtaIntercalibration_Stat140: 6.19691583e-10 + syst_JES_EtaIntercalibration_Stat141: 5.82967161e-10 + syst_JES_EtaIntercalibration_Stat142: 2.87353036e-10 + syst_JES_EtaIntercalibration_Stat143: 3.30757040e-14 + syst_JES_EtaIntercalibration_Stat144: 1.77326366e-21 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 9.551814696695072e-22 - syst_JES_EtaIntercalibration_Stat148: 9.065554827193606e-11 - syst_JES_EtaIntercalibration_Stat149: 1.0144903170664407e-10 - syst_JES_EtaIntercalibration_Stat15: 2.352326251473369e-23 - syst_JES_EtaIntercalibration_Stat150: 1.6284181192801804e-11 - syst_JES_EtaIntercalibration_Stat151: 1.0185899674862083e-10 - syst_JES_EtaIntercalibration_Stat152: 1.1461916462791028e-20 + syst_JES_EtaIntercalibration_Stat147: 9.55181470e-22 + syst_JES_EtaIntercalibration_Stat148: 9.06555483e-11 + syst_JES_EtaIntercalibration_Stat149: 1.01449032e-10 + syst_JES_EtaIntercalibration_Stat15: 2.35232625e-23 + syst_JES_EtaIntercalibration_Stat150: 1.62841812e-11 + syst_JES_EtaIntercalibration_Stat151: 1.01858997e-10 + syst_JES_EtaIntercalibration_Stat152: 1.14619165e-20 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 syst_JES_EtaIntercalibration_Stat156: 0.0 - syst_JES_EtaIntercalibration_Stat157: 2.6601055674540437e-20 - syst_JES_EtaIntercalibration_Stat158: 4.85184079232563e-10 - syst_JES_EtaIntercalibration_Stat159: 6.452369100377007e-10 - syst_JES_EtaIntercalibration_Stat16: 2.3421581394090365e-23 - syst_JES_EtaIntercalibration_Stat160: 4.412997315600815e-10 - syst_JES_EtaIntercalibration_Stat161: 3.408745356799185e-14 - syst_JES_EtaIntercalibration_Stat162: 1.8356586610805397e-21 + syst_JES_EtaIntercalibration_Stat157: 2.66010557e-20 + syst_JES_EtaIntercalibration_Stat158: 4.85184079e-10 + syst_JES_EtaIntercalibration_Stat159: 6.45236910e-10 + syst_JES_EtaIntercalibration_Stat16: 2.34215814e-23 + syst_JES_EtaIntercalibration_Stat160: 4.41299732e-10 + syst_JES_EtaIntercalibration_Stat161: 3.40874536e-14 + syst_JES_EtaIntercalibration_Stat162: 1.83565866e-21 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 8.829268415333174e-22 - syst_JES_EtaIntercalibration_Stat166: 1.7753920148144044e-09 - syst_JES_EtaIntercalibration_Stat167: 1.590055119893647e-10 - syst_JES_EtaIntercalibration_Stat168: 5.407452390660688e-10 - syst_JES_EtaIntercalibration_Stat169: 1.9329702196360914e-10 - syst_JES_EtaIntercalibration_Stat17: 3.472761869175599e-26 - syst_JES_EtaIntercalibration_Stat170: 4.040008507375864e-10 + syst_JES_EtaIntercalibration_Stat165: 8.82926842e-22 + syst_JES_EtaIntercalibration_Stat166: 1.77539201e-09 + syst_JES_EtaIntercalibration_Stat167: 1.59005512e-10 + syst_JES_EtaIntercalibration_Stat168: 5.40745239e-10 + syst_JES_EtaIntercalibration_Stat169: 1.93297022e-10 + syst_JES_EtaIntercalibration_Stat17: 3.47276187e-26 + syst_JES_EtaIntercalibration_Stat170: 4.04000851e-10 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 - syst_JES_EtaIntercalibration_Stat175: 2.0754032356852172e-16 - syst_JES_EtaIntercalibration_Stat176: 8.285514383674378e-10 - syst_JES_EtaIntercalibration_Stat177: 1.35506958558177e-09 - syst_JES_EtaIntercalibration_Stat178: 6.065366121471976e-10 - syst_JES_EtaIntercalibration_Stat179: 4.4124971388092707e-10 + syst_JES_EtaIntercalibration_Stat175: 2.07540324e-16 + syst_JES_EtaIntercalibration_Stat176: 8.28551438e-10 + syst_JES_EtaIntercalibration_Stat177: 1.35506959e-09 + syst_JES_EtaIntercalibration_Stat178: 6.06536612e-10 + syst_JES_EtaIntercalibration_Stat179: 4.41249714e-10 syst_JES_EtaIntercalibration_Stat18: 0.0 - syst_JES_EtaIntercalibration_Stat180: 1.2358182507743092e-14 + syst_JES_EtaIntercalibration_Stat180: 1.23581825e-14 syst_JES_EtaIntercalibration_Stat181: 0.0 - syst_JES_EtaIntercalibration_Stat182: 2.2004939184459672e-16 - syst_JES_EtaIntercalibration_Stat183: 1.8500468665144674e-09 - syst_JES_EtaIntercalibration_Stat184: 9.533792569067149e-09 - syst_JES_EtaIntercalibration_Stat185: 1.2202777747299998e-08 - syst_JES_EtaIntercalibration_Stat186: 6.159277431647319e-09 - syst_JES_EtaIntercalibration_Stat187: 2.885596645284291e-09 + syst_JES_EtaIntercalibration_Stat182: 2.20049392e-16 + syst_JES_EtaIntercalibration_Stat183: 1.85004687e-09 + syst_JES_EtaIntercalibration_Stat184: 9.53379257e-09 + syst_JES_EtaIntercalibration_Stat185: 1.22027777e-08 + syst_JES_EtaIntercalibration_Stat186: 6.15927743e-09 + syst_JES_EtaIntercalibration_Stat187: 2.88559665e-09 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 - syst_JES_EtaIntercalibration_Stat192: 1.8593563934596155e-10 - syst_JES_EtaIntercalibration_Stat193: 1.3129059862640585e-09 - syst_JES_EtaIntercalibration_Stat194: 3.471722483148675e-08 - syst_JES_EtaIntercalibration_Stat195: 2.2403473547644346e-09 - syst_JES_EtaIntercalibration_Stat196: 6.970847572569638e-10 - syst_JES_EtaIntercalibration_Stat197: 6.632526037544067e-14 - syst_JES_EtaIntercalibration_Stat198: 4.013066906992704e-09 - syst_JES_EtaIntercalibration_Stat199: 1.903839076707903e-08 + syst_JES_EtaIntercalibration_Stat192: 1.85935639e-10 + syst_JES_EtaIntercalibration_Stat193: 1.31290599e-09 + syst_JES_EtaIntercalibration_Stat194: 3.47172248e-08 + syst_JES_EtaIntercalibration_Stat195: 2.24034735e-09 + syst_JES_EtaIntercalibration_Stat196: 6.97084757e-10 + syst_JES_EtaIntercalibration_Stat197: 6.63252604e-14 + syst_JES_EtaIntercalibration_Stat198: 4.01306691e-09 + syst_JES_EtaIntercalibration_Stat199: 1.90383908e-08 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 5.425001658985922e-08 - syst_JES_EtaIntercalibration_Stat201: 2.60651205253304e-08 - syst_JES_EtaIntercalibration_Stat202: 2.485773834429985e-11 + syst_JES_EtaIntercalibration_Stat200: 5.42500166e-08 + syst_JES_EtaIntercalibration_Stat201: 2.60651205e-08 + syst_JES_EtaIntercalibration_Stat202: 2.48577383e-11 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 - syst_JES_EtaIntercalibration_Stat207: 6.217346788066493e-10 - syst_JES_EtaIntercalibration_Stat208: 3.460185074529973e-08 - syst_JES_EtaIntercalibration_Stat209: 7.522287019251525e-08 + syst_JES_EtaIntercalibration_Stat207: 6.21734679e-10 + syst_JES_EtaIntercalibration_Stat208: 3.46018507e-08 + syst_JES_EtaIntercalibration_Stat209: 7.52228702e-08 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 2.6455381305133366e-08 - syst_JES_EtaIntercalibration_Stat211: 5.747592887461672e-10 - syst_JES_EtaIntercalibration_Stat212: 1.610274686971139e-08 - syst_JES_EtaIntercalibration_Stat213: 6.081509187693463e-08 - syst_JES_EtaIntercalibration_Stat214: 2.6065021786869854e-08 - syst_JES_EtaIntercalibration_Stat215: 2.487219549943951e-11 + syst_JES_EtaIntercalibration_Stat210: 2.64553813e-08 + syst_JES_EtaIntercalibration_Stat211: 5.74759289e-10 + syst_JES_EtaIntercalibration_Stat212: 1.61027469e-08 + syst_JES_EtaIntercalibration_Stat213: 6.08150919e-08 + syst_JES_EtaIntercalibration_Stat214: 2.60650218e-08 + syst_JES_EtaIntercalibration_Stat215: 2.48721955e-11 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 syst_JES_EtaIntercalibration_Stat219: 0.0 - syst_JES_EtaIntercalibration_Stat22: 4.2755674184837735e-26 - syst_JES_EtaIntercalibration_Stat220: 6.227359726264413e-10 - syst_JES_EtaIntercalibration_Stat221: 3.6016046434193745e-08 - syst_JES_EtaIntercalibration_Stat222: 7.513432770711401e-08 - syst_JES_EtaIntercalibration_Stat223: 3.233181521350139e-08 - syst_JES_EtaIntercalibration_Stat224: 6.873435876619494e-08 - syst_JES_EtaIntercalibration_Stat225: 1.8211509410260315e-07 - syst_JES_EtaIntercalibration_Stat226: 6.766300244594529e-08 - syst_JES_EtaIntercalibration_Stat227: 8.315594206068499e-10 + syst_JES_EtaIntercalibration_Stat22: 4.27556742e-26 + syst_JES_EtaIntercalibration_Stat220: 6.22735973e-10 + syst_JES_EtaIntercalibration_Stat221: 3.60160464e-08 + syst_JES_EtaIntercalibration_Stat222: 7.51343277e-08 + syst_JES_EtaIntercalibration_Stat223: 3.23318152e-08 + syst_JES_EtaIntercalibration_Stat224: 6.87343588e-08 + syst_JES_EtaIntercalibration_Stat225: 1.82115094e-07 + syst_JES_EtaIntercalibration_Stat226: 6.76630024e-08 + syst_JES_EtaIntercalibration_Stat227: 8.31559421e-10 syst_JES_EtaIntercalibration_Stat228: 0.0 syst_JES_EtaIntercalibration_Stat229: 0.0 - syst_JES_EtaIntercalibration_Stat23: 4.2755674184837735e-26 + syst_JES_EtaIntercalibration_Stat23: 4.27556742e-26 syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 - syst_JES_EtaIntercalibration_Stat232: 7.421337792411487e-10 - syst_JES_EtaIntercalibration_Stat233: 9.429551795817232e-08 - syst_JES_EtaIntercalibration_Stat234: 1.9007193164694256e-07 - syst_JES_EtaIntercalibration_Stat235: 1.1829709971085513e-07 - syst_JES_EtaIntercalibration_Stat236: 4.4402918822978294e-08 - syst_JES_EtaIntercalibration_Stat237: 1.238350962974552e-08 - syst_JES_EtaIntercalibration_Stat238: 2.5002153407256742e-11 + syst_JES_EtaIntercalibration_Stat232: 7.42133779e-10 + syst_JES_EtaIntercalibration_Stat233: 9.42955180e-08 + syst_JES_EtaIntercalibration_Stat234: 1.90071932e-07 + syst_JES_EtaIntercalibration_Stat235: 1.18297100e-07 + syst_JES_EtaIntercalibration_Stat236: 4.44029188e-08 + syst_JES_EtaIntercalibration_Stat237: 1.23835096e-08 + syst_JES_EtaIntercalibration_Stat238: 2.50021534e-11 syst_JES_EtaIntercalibration_Stat239: 0.0 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 - syst_JES_EtaIntercalibration_Stat243: 2.047284471104971e-10 - syst_JES_EtaIntercalibration_Stat244: 1.3163697948223935e-09 - syst_JES_EtaIntercalibration_Stat245: 5.7143110477117e-08 - syst_JES_EtaIntercalibration_Stat25: 2.717587717075568e-26 - syst_JES_EtaIntercalibration_Stat26: 9.15560062202366e-25 - syst_JES_EtaIntercalibration_Stat27: 3.330160982595286e-23 - syst_JES_EtaIntercalibration_Stat28: 4.04000850865432e-10 - syst_JES_EtaIntercalibration_Stat29: 3.220901468145215e-23 + syst_JES_EtaIntercalibration_Stat243: 2.04728447e-10 + syst_JES_EtaIntercalibration_Stat244: 1.31636979e-09 + syst_JES_EtaIntercalibration_Stat245: 5.71431105e-08 + syst_JES_EtaIntercalibration_Stat25: 2.71758772e-26 + syst_JES_EtaIntercalibration_Stat26: 9.15560062e-25 + syst_JES_EtaIntercalibration_Stat27: 3.33016098e-23 + syst_JES_EtaIntercalibration_Stat28: 4.04000851e-10 + syst_JES_EtaIntercalibration_Stat29: 3.22090147e-23 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 1.2680491098829729e-25 + syst_JES_EtaIntercalibration_Stat30: 1.26804911e-25 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 6.565338433774759e-26 - syst_JES_EtaIntercalibration_Stat36: 2.337192187219528e-23 - syst_JES_EtaIntercalibration_Stat37: 9.522815299414418e-16 - syst_JES_EtaIntercalibration_Stat38: 9.5228152990911e-16 - syst_JES_EtaIntercalibration_Stat39: 7.421276250585204e-24 - syst_JES_EtaIntercalibration_Stat4: 3.725641287080655e-26 - syst_JES_EtaIntercalibration_Stat40: 6.203339967307934e-26 + syst_JES_EtaIntercalibration_Stat35: 6.56533843e-26 + syst_JES_EtaIntercalibration_Stat36: 2.33719219e-23 + syst_JES_EtaIntercalibration_Stat37: 9.52281530e-16 + syst_JES_EtaIntercalibration_Stat38: 9.52281530e-16 + syst_JES_EtaIntercalibration_Stat39: 7.42127625e-24 + syst_JES_EtaIntercalibration_Stat4: 3.72564129e-26 + syst_JES_EtaIntercalibration_Stat40: 6.20333997e-26 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 - syst_JES_EtaIntercalibration_Stat44: 4.2755674184837735e-26 + syst_JES_EtaIntercalibration_Stat44: 4.27556742e-26 syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 - syst_JES_EtaIntercalibration_Stat47: 2.718453742479353e-26 - syst_JES_EtaIntercalibration_Stat48: 3.157316646695418e-24 - syst_JES_EtaIntercalibration_Stat49: 5.915020456431237e-23 - syst_JES_EtaIntercalibration_Stat5: 1.145838473564228e-24 - syst_JES_EtaIntercalibration_Stat50: 4.0400085086543075e-10 - syst_JES_EtaIntercalibration_Stat51: 1.7525107585119128e-21 - syst_JES_EtaIntercalibration_Stat52: 7.444139921567501e-25 + syst_JES_EtaIntercalibration_Stat47: 2.71845374e-26 + syst_JES_EtaIntercalibration_Stat48: 3.15731665e-24 + syst_JES_EtaIntercalibration_Stat49: 5.91502046e-23 + syst_JES_EtaIntercalibration_Stat5: 1.14583847e-24 + syst_JES_EtaIntercalibration_Stat50: 4.04000851e-10 + syst_JES_EtaIntercalibration_Stat51: 1.75251076e-21 + syst_JES_EtaIntercalibration_Stat52: 7.44413992e-25 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 syst_JES_EtaIntercalibration_Stat56: 0.0 - syst_JES_EtaIntercalibration_Stat57: 2.3745706461343702e-23 - syst_JES_EtaIntercalibration_Stat58: 2.2028106835359227e-23 - syst_JES_EtaIntercalibration_Stat59: 1.4254778779067866e-14 - syst_JES_EtaIntercalibration_Stat6: 1.5997514650719967e-24 - syst_JES_EtaIntercalibration_Stat60: 9.539269281997187e-16 - syst_JES_EtaIntercalibration_Stat61: 3.039855112912456e-23 - syst_JES_EtaIntercalibration_Stat62: 3.5429099268821386e-26 + syst_JES_EtaIntercalibration_Stat57: 2.37457065e-23 + syst_JES_EtaIntercalibration_Stat58: 2.20281068e-23 + syst_JES_EtaIntercalibration_Stat59: 1.42547788e-14 + syst_JES_EtaIntercalibration_Stat6: 1.59975147e-24 + syst_JES_EtaIntercalibration_Stat60: 9.53926928e-16 + syst_JES_EtaIntercalibration_Stat61: 3.03985511e-23 + syst_JES_EtaIntercalibration_Stat62: 3.54290993e-26 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 - syst_JES_EtaIntercalibration_Stat69: 4.3695121867320614e-26 - syst_JES_EtaIntercalibration_Stat7: 8.293082539080386e-25 - syst_JES_EtaIntercalibration_Stat70: 3.289453831185354e-23 - syst_JES_EtaIntercalibration_Stat71: 9.06295585060801e-11 - syst_JES_EtaIntercalibration_Stat72: 4.0408745340342916e-10 - syst_JES_EtaIntercalibration_Stat73: 4.0400085086536664e-10 - syst_JES_EtaIntercalibration_Stat74: 6.584883452271574e-24 + syst_JES_EtaIntercalibration_Stat69: 4.36951219e-26 + syst_JES_EtaIntercalibration_Stat7: 8.29308254e-25 + syst_JES_EtaIntercalibration_Stat70: 3.28945383e-23 + syst_JES_EtaIntercalibration_Stat71: 9.06295585e-11 + syst_JES_EtaIntercalibration_Stat72: 4.04087453e-10 + syst_JES_EtaIntercalibration_Stat73: 4.04000851e-10 + syst_JES_EtaIntercalibration_Stat74: 6.58488345e-24 syst_JES_EtaIntercalibration_Stat75: 0.0 syst_JES_EtaIntercalibration_Stat76: 0.0 syst_JES_EtaIntercalibration_Stat77: 0.0 syst_JES_EtaIntercalibration_Stat78: 0.0 - syst_JES_EtaIntercalibration_Stat79: 2.4676284993237942e-23 + syst_JES_EtaIntercalibration_Stat79: 2.46762850e-23 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 4.0147716832716654e-20 - syst_JES_EtaIntercalibration_Stat81: 2.0455487928254831e-10 - syst_JES_EtaIntercalibration_Stat82: 1.1774673622652986e-14 - syst_JES_EtaIntercalibration_Stat83: 1.995048051319817e-21 - syst_JES_EtaIntercalibration_Stat84: 5.0637099048029995e-26 - syst_JES_EtaIntercalibration_Stat85: 4.2755674184837735e-26 - syst_JES_EtaIntercalibration_Stat86: 4.2755674184837735e-26 - syst_JES_EtaIntercalibration_Stat87: 4.2755674184837735e-26 - syst_JES_EtaIntercalibration_Stat88: 4.2755674184837735e-26 - syst_JES_EtaIntercalibration_Stat89: 4.2755674184837735e-26 + syst_JES_EtaIntercalibration_Stat80: 4.01477168e-20 + syst_JES_EtaIntercalibration_Stat81: 2.04554879e-10 + syst_JES_EtaIntercalibration_Stat82: 1.17746736e-14 + syst_JES_EtaIntercalibration_Stat83: 1.99504805e-21 + syst_JES_EtaIntercalibration_Stat84: 5.06370990e-26 + syst_JES_EtaIntercalibration_Stat85: 4.27556742e-26 + syst_JES_EtaIntercalibration_Stat86: 4.27556742e-26 + syst_JES_EtaIntercalibration_Stat87: 4.27556742e-26 + syst_JES_EtaIntercalibration_Stat88: 4.27556742e-26 + syst_JES_EtaIntercalibration_Stat89: 4.27556742e-26 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 1.6084146363132704e-21 - syst_JES_EtaIntercalibration_Stat92: 9.064687901526303e-11 - syst_JES_EtaIntercalibration_Stat93: 4.0417405594038646e-10 - syst_JES_EtaIntercalibration_Stat94: 4.040874534054813e-10 - syst_JES_EtaIntercalibration_Stat95: 2.812852233498944e-23 - syst_JES_EtaIntercalibration_Stat96: 8.868230870218706e-25 - syst_JES_EtaIntercalibration_Stat97: 4.2755674184837735e-26 - syst_JES_EtaIntercalibration_Stat98: 4.2755674184837735e-26 - syst_JES_EtaIntercalibration_Stat99: 4.2755674184837735e-26 - syst_JES_EtaIntercalibration_TotalStat_MJB: 2.7783453708997376e-06 - syst_JES_Flavour_Comp: 4.181862966430153e-06 - syst_JES_Flavour_Response: 2.1567653442134124e-06 - syst_JES_Gjet_Generator: 5.5684741850887665e-06 - syst_JES_Gjet_OOC: 4.677235374663114e-06 - syst_JES_Gjet_Purity: 4.3675516024427236e-07 - syst_JES_Gjet_Stat1: 1.5939673044011912e-08 - syst_JES_Gjet_Stat10: 2.138612342150863e-07 - syst_JES_Gjet_Stat11: 2.1560521793314745e-07 - syst_JES_Gjet_Stat12: 1.9837420214080257e-07 - syst_JES_Gjet_Stat13: 1.1424872997105919e-06 - syst_JES_Gjet_Stat14: 3.2789675204246835e-06 - syst_JES_Gjet_Stat15: 5.307875916974699e-06 - syst_JES_Gjet_Stat2: 5.980771438535311e-09 - syst_JES_Gjet_Stat3: 1.4624176446897788e-08 - syst_JES_Gjet_Stat4: 5.544636911466791e-08 - syst_JES_Gjet_Stat5: 3.3465085665539165e-19 - syst_JES_Gjet_Stat6: 9.349046515554408e-08 - syst_JES_Gjet_Stat7: 4.177869642533142e-08 - syst_JES_Gjet_Stat8: 7.642125959934186e-09 - syst_JES_Gjet_Stat9: 8.170867946552557e-08 - syst_JES_Gjet_Veto: 5.137499781021893e-06 - syst_JES_Gjet_dPhi: 3.7661511852287605e-07 - syst_JES_LArESZee: 7.865633016483798e-06 - syst_JES_LArEsmear: 7.251031030136335e-07 - syst_JES_LAr_JVT: 9.470153153460612e-07 - syst_JES_MJB_Alpha: 1.8097742621664173e-07 - syst_JES_MJB_Asym: 2.8605353956908135e-06 - syst_JES_MJB_Beta: 2.046962811093548e-07 - syst_JES_MJB_Fragmentation: 7.075222593671523e-07 - syst_JES_MJB_Stat1: 7.539620731646684e-13 - syst_JES_MJB_Stat10: 2.138762960217892e-08 - syst_JES_MJB_Stat11: 3.027777196228282e-08 - syst_JES_MJB_Stat12: 8.474032378389879e-08 - syst_JES_MJB_Stat13: 1.4412204272768271e-07 - syst_JES_MJB_Stat14: 5.636945449443343e-07 - syst_JES_MJB_Stat15: 2.950506863235536e-07 - syst_JES_MJB_Stat16: 1.4885485380060672e-06 - syst_JES_MJB_Stat2: 1.684814520206898e-09 - syst_JES_MJB_Stat3: 1.186108393023167e-13 - syst_JES_MJB_Stat4: 9.933311381407511e-14 + syst_JES_EtaIntercalibration_Stat91: 1.60841464e-21 + syst_JES_EtaIntercalibration_Stat92: 9.06468790e-11 + syst_JES_EtaIntercalibration_Stat93: 4.04174056e-10 + syst_JES_EtaIntercalibration_Stat94: 4.04087453e-10 + syst_JES_EtaIntercalibration_Stat95: 2.81285223e-23 + syst_JES_EtaIntercalibration_Stat96: 8.86823087e-25 + syst_JES_EtaIntercalibration_Stat97: 4.27556742e-26 + syst_JES_EtaIntercalibration_Stat98: 4.27556742e-26 + syst_JES_EtaIntercalibration_Stat99: 4.27556742e-26 + syst_JES_EtaIntercalibration_TotalStat_MJB: 2.77834537e-06 + syst_JES_Flavour_Comp: 4.18186297e-06 + syst_JES_Flavour_Response: 2.15676534e-06 + syst_JES_Gjet_Generator: 5.56847419e-06 + syst_JES_Gjet_OOC: 4.67723537e-06 + syst_JES_Gjet_Purity: 4.36755160e-07 + syst_JES_Gjet_Stat1: 1.59396730e-08 + syst_JES_Gjet_Stat10: 2.13861234e-07 + syst_JES_Gjet_Stat11: 2.15605218e-07 + syst_JES_Gjet_Stat12: 1.98374202e-07 + syst_JES_Gjet_Stat13: 1.14248730e-06 + syst_JES_Gjet_Stat14: 3.27896752e-06 + syst_JES_Gjet_Stat15: 5.30787592e-06 + syst_JES_Gjet_Stat2: 5.98077144e-09 + syst_JES_Gjet_Stat3: 1.46241764e-08 + syst_JES_Gjet_Stat4: 5.54463691e-08 + syst_JES_Gjet_Stat5: 3.34650857e-19 + syst_JES_Gjet_Stat6: 9.34904652e-08 + syst_JES_Gjet_Stat7: 4.17786964e-08 + syst_JES_Gjet_Stat8: 7.64212596e-09 + syst_JES_Gjet_Stat9: 8.17086795e-08 + syst_JES_Gjet_Veto: 5.13749978e-06 + syst_JES_Gjet_dPhi: 3.76615119e-07 + syst_JES_LArESZee: 7.86563302e-06 + syst_JES_LArEsmear: 7.25103103e-07 + syst_JES_LAr_JVT: 9.47015315e-07 + syst_JES_MJB_Alpha: 1.80977426e-07 + syst_JES_MJB_Asym: 2.86053540e-06 + syst_JES_MJB_Beta: 2.04696281e-07 + syst_JES_MJB_Fragmentation: 7.07522259e-07 + syst_JES_MJB_Stat1: 7.53962073e-13 + syst_JES_MJB_Stat10: 2.13876296e-08 + syst_JES_MJB_Stat11: 3.02777720e-08 + syst_JES_MJB_Stat12: 8.47403238e-08 + syst_JES_MJB_Stat13: 1.44122043e-07 + syst_JES_MJB_Stat14: 5.63694545e-07 + syst_JES_MJB_Stat15: 2.95050686e-07 + syst_JES_MJB_Stat16: 1.48854854e-06 + syst_JES_MJB_Stat2: 1.68481452e-09 + syst_JES_MJB_Stat3: 1.18610839e-13 + syst_JES_MJB_Stat4: 9.93331138e-14 syst_JES_MJB_Stat5: 0.0 - syst_JES_MJB_Stat6: 2.1234942900794432e-09 - syst_JES_MJB_Stat7: 2.7721473175139883e-09 - syst_JES_MJB_Stat8: 7.792446791605318e-09 - syst_JES_MJB_Stat9: 1.0283071173049421e-08 - syst_JES_MJB_Threshold: 9.626136192678764e-07 - syst_JES_Pileup_MuOffset: 1.5915076971224486e-06 - syst_JES_Pileup_NPVOffset: 1.3585660896695458e-06 - syst_JES_Pileup_Pt_term: 5.947218089157316e-07 - syst_JES_Pileup_Rho_topology: 1.7420005740527182e-06 - syst_JES_PunchThrough_MC15: 5.989579451013234e-06 + syst_JES_MJB_Stat6: 2.12349429e-09 + syst_JES_MJB_Stat7: 2.77214732e-09 + syst_JES_MJB_Stat8: 7.79244679e-09 + syst_JES_MJB_Stat9: 1.02830712e-08 + syst_JES_MJB_Threshold: 9.62613619e-07 + syst_JES_Pileup_MuOffset: 1.59150770e-06 + syst_JES_Pileup_NPVOffset: 1.35856609e-06 + syst_JES_Pileup_Pt_term: 5.94721809e-07 + syst_JES_Pileup_Rho_topology: 1.74200057e-06 + syst_JES_PunchThrough_MC15: 5.98957945e-06 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 2.1149077403045265e-06 - syst_JES_Zjet_MuScale: 2.1299635560262524e-07 - syst_JES_Zjet_MuSmearID: 1.2759457786285434e-08 - syst_JES_Zjet_MuSmearMS: 4.4212146521063646e-07 - syst_JES_Zjet_OOC: 1.3157598033075794e-06 - syst_JES_Zjet_Stat1: 2.3926873489864903e-07 - syst_JES_Zjet_Stat10: 1.1641391497583096e-07 - syst_JES_Zjet_Stat11: 1.3299274416298055e-07 - syst_JES_Zjet_Stat12: 2.662672905183812e-07 - syst_JES_Zjet_Stat13: 4.738153437785653e-07 - syst_JES_Zjet_Stat2: 8.496575236529131e-10 - syst_JES_Zjet_Stat3: 7.162234916560612e-08 - syst_JES_Zjet_Stat4: 8.187077668496861e-08 - syst_JES_Zjet_Stat5: 8.501772697502562e-08 - syst_JES_Zjet_Stat6: 8.466768258904929e-08 - syst_JES_Zjet_Stat7: 9.253364077458534e-08 - syst_JES_Zjet_Stat8: 3.1951757181726325e-08 - syst_JES_Zjet_Stat9: 8.92354189769959e-08 - syst_JES_Zjet_Veto: 2.499186817746925e-07 - syst_JES_Zjet_dPhi: 2.391089866567127e-07 - syst_PRW: 8.508e-07 - syst_Unfolding_bias: 1.221e-21 - syst_cleaning: 6.746337895480777e-07 - syst_lumi: 2.147e-06 -- stat: 2.2598e-06 + syst_JES_Zjet_MC: 2.11490774e-06 + syst_JES_Zjet_MuScale: 2.12996356e-07 + syst_JES_Zjet_MuSmearID: 1.27594578e-08 + syst_JES_Zjet_MuSmearMS: 4.42121465e-07 + syst_JES_Zjet_OOC: 1.31575980e-06 + syst_JES_Zjet_Stat1: 2.39268735e-07 + syst_JES_Zjet_Stat10: 1.16413915e-07 + syst_JES_Zjet_Stat11: 1.32992744e-07 + syst_JES_Zjet_Stat12: 2.66267291e-07 + syst_JES_Zjet_Stat13: 4.73815344e-07 + syst_JES_Zjet_Stat2: 8.49657524e-10 + syst_JES_Zjet_Stat3: 7.16223492e-08 + syst_JES_Zjet_Stat4: 8.18707767e-08 + syst_JES_Zjet_Stat5: 8.50177270e-08 + syst_JES_Zjet_Stat6: 8.46676826e-08 + syst_JES_Zjet_Stat7: 9.25336408e-08 + syst_JES_Zjet_Stat8: 3.19517572e-08 + syst_JES_Zjet_Stat9: 8.92354190e-08 + syst_JES_Zjet_Veto: 2.49918682e-07 + syst_JES_Zjet_dPhi: 2.39108987e-07 + syst_PRW: 8.50800000e-07 + syst_Unfolding_bias: 1.22100000e-21 + syst_cleaning: 6.74633790e-07 + syst_lumi: 2.14700000e-06 +- stat: 2.25980000e-06 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 2.5034058799962907e-07 - syst_JER_NP1: 1.1356907270467606e-07 - syst_JER_NP2: 3.3983475219582827e-07 - syst_JER_NP3: 8.668366109019622e-08 + syst_JER_NP0: 2.50340588e-07 + syst_JER_NP1: 1.13569073e-07 + syst_JER_NP2: 3.39834752e-07 + syst_JER_NP3: 8.66836611e-08 syst_JER_NP4: 0.0 syst_JER_NP5: 0.0 syst_JER_NP6: 0.0 syst_JER_NP7: 0.0 syst_JER_NP8: 0.0 - syst_JES_EtaIntercalibration_Modelling: 1.2202153283334874e-06 + syst_JES_EtaIntercalibration_Modelling: 1.22021533e-06 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 syst_JES_EtaIntercalibration_Stat100: 0.0 syst_JES_EtaIntercalibration_Stat101: 0.0 - syst_JES_EtaIntercalibration_Stat102: 1.388238722266455e-11 + syst_JES_EtaIntercalibration_Stat102: 1.38823872e-11 syst_JES_EtaIntercalibration_Stat103: 0.0 syst_JES_EtaIntercalibration_Stat104: 0.0 syst_JES_EtaIntercalibration_Stat105: 0.0 @@ -43840,9 +43840,9 @@ bins: syst_JES_EtaIntercalibration_Stat11: 0.0 syst_JES_EtaIntercalibration_Stat110: 0.0 syst_JES_EtaIntercalibration_Stat111: 0.0 - syst_JES_EtaIntercalibration_Stat112: 3.864205351686165e-11 + syst_JES_EtaIntercalibration_Stat112: 3.86420535e-11 syst_JES_EtaIntercalibration_Stat113: 0.0 - syst_JES_EtaIntercalibration_Stat114: 2.8596158832962164e-11 + syst_JES_EtaIntercalibration_Stat114: 2.85961588e-11 syst_JES_EtaIntercalibration_Stat115: 0.0 syst_JES_EtaIntercalibration_Stat116: 0.0 syst_JES_EtaIntercalibration_Stat117: 0.0 @@ -43850,9 +43850,9 @@ bins: syst_JES_EtaIntercalibration_Stat119: 0.0 syst_JES_EtaIntercalibration_Stat12: 0.0 syst_JES_EtaIntercalibration_Stat120: 0.0 - syst_JES_EtaIntercalibration_Stat121: 1.3891047476702395e-11 - syst_JES_EtaIntercalibration_Stat122: 1.3925688492853775e-11 - syst_JES_EtaIntercalibration_Stat123: 1.3925688492853775e-11 + syst_JES_EtaIntercalibration_Stat121: 1.38910475e-11 + syst_JES_EtaIntercalibration_Stat122: 1.39256885e-11 + syst_JES_EtaIntercalibration_Stat123: 1.39256885e-11 syst_JES_EtaIntercalibration_Stat124: 0.0 syst_JES_EtaIntercalibration_Stat125: 0.0 syst_JES_EtaIntercalibration_Stat126: 0.0 @@ -43861,19 +43861,19 @@ bins: syst_JES_EtaIntercalibration_Stat129: 0.0 syst_JES_EtaIntercalibration_Stat13: 0.0 syst_JES_EtaIntercalibration_Stat130: 0.0 - syst_JES_EtaIntercalibration_Stat131: 5.416122875267879e-11 + syst_JES_EtaIntercalibration_Stat131: 5.41612288e-11 syst_JES_EtaIntercalibration_Stat132: 0.0 syst_JES_EtaIntercalibration_Stat133: 0.0 - syst_JES_EtaIntercalibration_Stat134: 2.7453005299966705e-11 + syst_JES_EtaIntercalibration_Stat134: 2.74530053e-11 syst_JES_EtaIntercalibration_Stat135: 0.0 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 syst_JES_EtaIntercalibration_Stat138: 0.0 syst_JES_EtaIntercalibration_Stat139: 0.0 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 1.3137605375409935e-11 - syst_JES_EtaIntercalibration_Stat141: 1.3492675790961553e-11 - syst_JES_EtaIntercalibration_Stat142: 1.453190627550288e-11 + syst_JES_EtaIntercalibration_Stat140: 1.31376054e-11 + syst_JES_EtaIntercalibration_Stat141: 1.34926758e-11 + syst_JES_EtaIntercalibration_Stat142: 1.45319063e-11 syst_JES_EtaIntercalibration_Stat143: 0.0 syst_JES_EtaIntercalibration_Stat144: 0.0 syst_JES_EtaIntercalibration_Stat145: 0.0 @@ -43882,7 +43882,7 @@ bins: syst_JES_EtaIntercalibration_Stat148: 0.0 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 3.523857367998881e-10 + syst_JES_EtaIntercalibration_Stat150: 3.52385737e-10 syst_JES_EtaIntercalibration_Stat151: 0.0 syst_JES_EtaIntercalibration_Stat152: 0.0 syst_JES_EtaIntercalibration_Stat153: 0.0 @@ -43890,108 +43890,108 @@ bins: syst_JES_EtaIntercalibration_Stat155: 0.0 syst_JES_EtaIntercalibration_Stat156: 0.0 syst_JES_EtaIntercalibration_Stat157: 0.0 - syst_JES_EtaIntercalibration_Stat158: 1.3215547661750534e-11 - syst_JES_EtaIntercalibration_Stat159: 1.3847746206513175e-11 + syst_JES_EtaIntercalibration_Stat158: 1.32155477e-11 + syst_JES_EtaIntercalibration_Stat159: 1.38477462e-11 syst_JES_EtaIntercalibration_Stat16: 0.0 - syst_JES_EtaIntercalibration_Stat160: 1.4298079416481082e-11 + syst_JES_EtaIntercalibration_Stat160: 1.42980794e-11 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 syst_JES_EtaIntercalibration_Stat165: 0.0 - syst_JES_EtaIntercalibration_Stat166: 3.865071377089949e-11 + syst_JES_EtaIntercalibration_Stat166: 3.86507138e-11 syst_JES_EtaIntercalibration_Stat167: 0.0 - syst_JES_EtaIntercalibration_Stat168: 1.738979010799153e-11 + syst_JES_EtaIntercalibration_Stat168: 1.73897901e-11 syst_JES_EtaIntercalibration_Stat169: 0.0 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 2.7453005299966705e-11 + syst_JES_EtaIntercalibration_Stat170: 2.74530053e-11 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 syst_JES_EtaIntercalibration_Stat175: 0.0 - syst_JES_EtaIntercalibration_Stat176: 2.3997563938866794e-11 - syst_JES_EtaIntercalibration_Stat177: 2.77647744453291e-11 - syst_JES_EtaIntercalibration_Stat178: 1.3492675790961553e-11 - syst_JES_EtaIntercalibration_Stat179: 1.459252805376779e-11 + syst_JES_EtaIntercalibration_Stat176: 2.39975639e-11 + syst_JES_EtaIntercalibration_Stat177: 2.77647744e-11 + syst_JES_EtaIntercalibration_Stat178: 1.34926758e-11 + syst_JES_EtaIntercalibration_Stat179: 1.45925281e-11 syst_JES_EtaIntercalibration_Stat18: 0.0 syst_JES_EtaIntercalibration_Stat180: 0.0 syst_JES_EtaIntercalibration_Stat181: 0.0 syst_JES_EtaIntercalibration_Stat182: 0.0 - syst_JES_EtaIntercalibration_Stat183: 1.184895957457869e-10 - syst_JES_EtaIntercalibration_Stat184: 3.3987845724611614e-09 + syst_JES_EtaIntercalibration_Stat183: 1.18489596e-10 + syst_JES_EtaIntercalibration_Stat184: 3.39878457e-09 syst_JES_EtaIntercalibration_Stat185: 0.0 - syst_JES_EtaIntercalibration_Stat186: 4.924952502174513e-09 - syst_JES_EtaIntercalibration_Stat187: 2.980859439826038e-10 + syst_JES_EtaIntercalibration_Stat186: 4.92495250e-09 + syst_JES_EtaIntercalibration_Stat187: 2.98085944e-10 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 - syst_JES_EtaIntercalibration_Stat192: 1.4471284497237969e-11 - syst_JES_EtaIntercalibration_Stat193: 3.264915772267334e-11 - syst_JES_EtaIntercalibration_Stat194: 3.4934108747755397e-09 - syst_JES_EtaIntercalibration_Stat195: 3.1644568254283386e-11 - syst_JES_EtaIntercalibration_Stat196: 1.3059663089069336e-11 + syst_JES_EtaIntercalibration_Stat192: 1.44712845e-11 + syst_JES_EtaIntercalibration_Stat193: 3.26491577e-11 + syst_JES_EtaIntercalibration_Stat194: 3.49341087e-09 + syst_JES_EtaIntercalibration_Stat195: 3.16445683e-11 + syst_JES_EtaIntercalibration_Stat196: 1.30596631e-11 syst_JES_EtaIntercalibration_Stat197: 0.0 - syst_JES_EtaIntercalibration_Stat198: 1.3800274227347804e-10 - syst_JES_EtaIntercalibration_Stat199: 4.618513478382412e-09 + syst_JES_EtaIntercalibration_Stat198: 1.38002742e-10 + syst_JES_EtaIntercalibration_Stat199: 4.61851348e-09 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 1.1897638084930975e-08 - syst_JES_EtaIntercalibration_Stat201: 6.625960364354741e-09 + syst_JES_EtaIntercalibration_Stat200: 1.18976381e-08 + syst_JES_EtaIntercalibration_Stat201: 6.62596036e-09 syst_JES_EtaIntercalibration_Stat202: 0.0 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 - syst_JES_EtaIntercalibration_Stat207: 1.3206887407712687e-11 - syst_JES_EtaIntercalibration_Stat208: 5.222714152622179e-09 - syst_JES_EtaIntercalibration_Stat209: 5.812603095859893e-09 + syst_JES_EtaIntercalibration_Stat207: 1.32068874e-11 + syst_JES_EtaIntercalibration_Stat208: 5.22271415e-09 + syst_JES_EtaIntercalibration_Stat209: 5.81260310e-09 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 3.633209766515003e-09 - syst_JES_EtaIntercalibration_Stat211: 1.357927833134e-11 - syst_JES_EtaIntercalibration_Stat212: 4.915238408002199e-09 - syst_JES_EtaIntercalibration_Stat213: 1.1743887974176184e-08 - syst_JES_EtaIntercalibration_Stat214: 6.625960364354741e-09 + syst_JES_EtaIntercalibration_Stat210: 3.63320977e-09 + syst_JES_EtaIntercalibration_Stat211: 1.35792783e-11 + syst_JES_EtaIntercalibration_Stat212: 4.91523841e-09 + syst_JES_EtaIntercalibration_Stat213: 1.17438880e-08 + syst_JES_EtaIntercalibration_Stat214: 6.62596036e-09 syst_JES_EtaIntercalibration_Stat215: 0.0 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 syst_JES_EtaIntercalibration_Stat219: 0.0 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 1.3206887407712687e-11 - syst_JES_EtaIntercalibration_Stat221: 3.3637730734994596e-09 - syst_JES_EtaIntercalibration_Stat222: 5.8054065103143295e-09 - syst_JES_EtaIntercalibration_Stat223: 3.6459407520556333e-09 - syst_JES_EtaIntercalibration_Stat224: 5.844041580960902e-09 - syst_JES_EtaIntercalibration_Stat225: 1.9316875394328142e-08 - syst_JES_EtaIntercalibration_Stat226: 1.1693616410247089e-08 - syst_JES_EtaIntercalibration_Stat227: 3.242399111768939e-10 + syst_JES_EtaIntercalibration_Stat220: 1.32068874e-11 + syst_JES_EtaIntercalibration_Stat221: 3.36377307e-09 + syst_JES_EtaIntercalibration_Stat222: 5.80540651e-09 + syst_JES_EtaIntercalibration_Stat223: 3.64594075e-09 + syst_JES_EtaIntercalibration_Stat224: 5.84404158e-09 + syst_JES_EtaIntercalibration_Stat225: 1.93168754e-08 + syst_JES_EtaIntercalibration_Stat226: 1.16936164e-08 + syst_JES_EtaIntercalibration_Stat227: 3.24239911e-10 syst_JES_EtaIntercalibration_Stat228: 0.0 syst_JES_EtaIntercalibration_Stat229: 0.0 syst_JES_EtaIntercalibration_Stat23: 0.0 syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 - syst_JES_EtaIntercalibration_Stat232: 2.3755076825807152e-11 - syst_JES_EtaIntercalibration_Stat233: 1.0186514991890015e-08 - syst_JES_EtaIntercalibration_Stat234: 1.7350616149001742e-08 - syst_JES_EtaIntercalibration_Stat235: 5.595388190286711e-09 - syst_JES_EtaIntercalibration_Stat236: 6.296160318003347e-09 - syst_JES_EtaIntercalibration_Stat237: 6.546695196814955e-09 + syst_JES_EtaIntercalibration_Stat232: 2.37550768e-11 + syst_JES_EtaIntercalibration_Stat233: 1.01865150e-08 + syst_JES_EtaIntercalibration_Stat234: 1.73506161e-08 + syst_JES_EtaIntercalibration_Stat235: 5.59538819e-09 + syst_JES_EtaIntercalibration_Stat236: 6.29616032e-09 + syst_JES_EtaIntercalibration_Stat237: 6.54669520e-09 syst_JES_EtaIntercalibration_Stat238: 0.0 syst_JES_EtaIntercalibration_Stat239: 0.0 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 - syst_JES_EtaIntercalibration_Stat243: 1.3891047476702395e-11 - syst_JES_EtaIntercalibration_Stat244: 3.2588535944408424e-11 - syst_JES_EtaIntercalibration_Stat245: 4.901706114201462e-09 + syst_JES_EtaIntercalibration_Stat243: 1.38910475e-11 + syst_JES_EtaIntercalibration_Stat244: 3.25885359e-11 + syst_JES_EtaIntercalibration_Stat245: 4.90170611e-09 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 syst_JES_EtaIntercalibration_Stat27: 0.0 - syst_JES_EtaIntercalibration_Stat28: 2.7453005299966705e-11 + syst_JES_EtaIntercalibration_Stat28: 2.74530053e-11 syst_JES_EtaIntercalibration_Stat29: 0.0 syst_JES_EtaIntercalibration_Stat3: 0.0 syst_JES_EtaIntercalibration_Stat30: 0.0 @@ -44016,7 +44016,7 @@ bins: syst_JES_EtaIntercalibration_Stat48: 0.0 syst_JES_EtaIntercalibration_Stat49: 0.0 syst_JES_EtaIntercalibration_Stat5: 0.0 - syst_JES_EtaIntercalibration_Stat50: 2.7453005299966705e-11 + syst_JES_EtaIntercalibration_Stat50: 2.74530053e-11 syst_JES_EtaIntercalibration_Stat51: 0.0 syst_JES_EtaIntercalibration_Stat52: 0.0 syst_JES_EtaIntercalibration_Stat53: 0.0 @@ -44040,8 +44040,8 @@ bins: syst_JES_EtaIntercalibration_Stat7: 0.0 syst_JES_EtaIntercalibration_Stat70: 0.0 syst_JES_EtaIntercalibration_Stat71: 0.0 - syst_JES_EtaIntercalibration_Stat72: 2.7453005299966705e-11 - syst_JES_EtaIntercalibration_Stat73: 2.7453005299966705e-11 + syst_JES_EtaIntercalibration_Stat72: 2.74530053e-11 + syst_JES_EtaIntercalibration_Stat73: 2.74530053e-11 syst_JES_EtaIntercalibration_Stat74: 0.0 syst_JES_EtaIntercalibration_Stat75: 0.0 syst_JES_EtaIntercalibration_Stat76: 0.0 @@ -44050,7 +44050,7 @@ bins: syst_JES_EtaIntercalibration_Stat79: 0.0 syst_JES_EtaIntercalibration_Stat8: 0.0 syst_JES_EtaIntercalibration_Stat80: 0.0 - syst_JES_EtaIntercalibration_Stat81: 1.388238722266455e-11 + syst_JES_EtaIntercalibration_Stat81: 1.38823872e-11 syst_JES_EtaIntercalibration_Stat82: 0.0 syst_JES_EtaIntercalibration_Stat83: 0.0 syst_JES_EtaIntercalibration_Stat84: 0.0 @@ -44063,201 +44063,201 @@ bins: syst_JES_EtaIntercalibration_Stat90: 0.0 syst_JES_EtaIntercalibration_Stat91: 0.0 syst_JES_EtaIntercalibration_Stat92: 0.0 - syst_JES_EtaIntercalibration_Stat93: 2.7453005299966705e-11 - syst_JES_EtaIntercalibration_Stat94: 2.7453005299966705e-11 + syst_JES_EtaIntercalibration_Stat93: 2.74530053e-11 + syst_JES_EtaIntercalibration_Stat94: 2.74530053e-11 syst_JES_EtaIntercalibration_Stat95: 0.0 syst_JES_EtaIntercalibration_Stat96: 0.0 syst_JES_EtaIntercalibration_Stat97: 0.0 syst_JES_EtaIntercalibration_Stat98: 0.0 syst_JES_EtaIntercalibration_Stat99: 0.0 - syst_JES_EtaIntercalibration_TotalStat_MJB: 2.6712935068988584e-07 - syst_JES_Flavour_Comp: 2.0967390753262552e-07 - syst_JES_Flavour_Response: 3.0770253086381987e-07 - syst_JES_Gjet_Generator: 5.191181079484706e-07 - syst_JES_Gjet_OOC: 4.3698806619860913e-07 - syst_JES_Gjet_Purity: 6.891830163316562e-09 - syst_JES_Gjet_Stat1: 1.1525906591240448e-09 - syst_JES_Gjet_Stat10: 3.670752647618742e-08 - syst_JES_Gjet_Stat11: 3.668968894662368e-08 - syst_JES_Gjet_Stat12: 1.521178727171794e-08 - syst_JES_Gjet_Stat13: 1.2410220102802368e-07 - syst_JES_Gjet_Stat14: 4.0330111182589124e-07 - syst_JES_Gjet_Stat15: 6.370050078296088e-07 - syst_JES_Gjet_Stat2: 1.157616157238659e-10 - syst_JES_Gjet_Stat3: 8.635820891351327e-09 - syst_JES_Gjet_Stat4: 1.6021469970012115e-08 + syst_JES_EtaIntercalibration_TotalStat_MJB: 2.67129351e-07 + syst_JES_Flavour_Comp: 2.09673908e-07 + syst_JES_Flavour_Response: 3.07702531e-07 + syst_JES_Gjet_Generator: 5.19118108e-07 + syst_JES_Gjet_OOC: 4.36988066e-07 + syst_JES_Gjet_Purity: 6.89183016e-09 + syst_JES_Gjet_Stat1: 1.15259066e-09 + syst_JES_Gjet_Stat10: 3.67075265e-08 + syst_JES_Gjet_Stat11: 3.66896889e-08 + syst_JES_Gjet_Stat12: 1.52117873e-08 + syst_JES_Gjet_Stat13: 1.24102201e-07 + syst_JES_Gjet_Stat14: 4.03301112e-07 + syst_JES_Gjet_Stat15: 6.37005008e-07 + syst_JES_Gjet_Stat2: 1.15761616e-10 + syst_JES_Gjet_Stat3: 8.63582089e-09 + syst_JES_Gjet_Stat4: 1.60214700e-08 syst_JES_Gjet_Stat5: 0.0 - syst_JES_Gjet_Stat6: 1.028983304043365e-08 - syst_JES_Gjet_Stat7: 1.5545155997930673e-08 - syst_JES_Gjet_Stat8: 1.4800374150676056e-10 - syst_JES_Gjet_Stat9: 1.474977683729486e-08 - syst_JES_Gjet_Veto: 5.13641088212382e-07 - syst_JES_Gjet_dPhi: 2.262058354684954e-08 - syst_JES_LArESZee: 6.71990602612864e-07 - syst_JES_LArEsmear: 6.290469139897278e-08 - syst_JES_LAr_JVT: 8.138050995170773e-08 - syst_JES_MJB_Alpha: 1.7588605743492006e-08 - syst_JES_MJB_Asym: 4.2620972243720585e-07 - syst_JES_MJB_Beta: 3.7186538895143227e-08 - syst_JES_MJB_Fragmentation: 8.863843565293783e-08 + syst_JES_Gjet_Stat6: 1.02898330e-08 + syst_JES_Gjet_Stat7: 1.55451560e-08 + syst_JES_Gjet_Stat8: 1.48003742e-10 + syst_JES_Gjet_Stat9: 1.47497768e-08 + syst_JES_Gjet_Veto: 5.13641088e-07 + syst_JES_Gjet_dPhi: 2.26205835e-08 + syst_JES_LArESZee: 6.71990603e-07 + syst_JES_LArEsmear: 6.29046914e-08 + syst_JES_LAr_JVT: 8.13805100e-08 + syst_JES_MJB_Alpha: 1.75886057e-08 + syst_JES_MJB_Asym: 4.26209722e-07 + syst_JES_MJB_Beta: 3.71865389e-08 + syst_JES_MJB_Fragmentation: 8.86384357e-08 syst_JES_MJB_Stat1: 0.0 - syst_JES_MJB_Stat10: 1.4714928576109365e-09 - syst_JES_MJB_Stat11: 2.001833176740759e-09 - syst_JES_MJB_Stat12: 4.390165600521238e-09 - syst_JES_MJB_Stat13: 9.568262694972374e-09 - syst_JES_MJB_Stat14: 1.0039104342519803e-07 - syst_JES_MJB_Stat15: 1.8140005512678324e-07 - syst_JES_MJB_Stat16: 3.2216649034311436e-07 - syst_JES_MJB_Stat2: 1.0710722244554753e-10 + syst_JES_MJB_Stat10: 1.47149286e-09 + syst_JES_MJB_Stat11: 2.00183318e-09 + syst_JES_MJB_Stat12: 4.39016560e-09 + syst_JES_MJB_Stat13: 9.56826269e-09 + syst_JES_MJB_Stat14: 1.00391043e-07 + syst_JES_MJB_Stat15: 1.81400055e-07 + syst_JES_MJB_Stat16: 3.22166490e-07 + syst_JES_MJB_Stat2: 1.07107222e-10 syst_JES_MJB_Stat3: 0.0 syst_JES_MJB_Stat4: 0.0 syst_JES_MJB_Stat5: 0.0 - syst_JES_MJB_Stat6: 2.5686313476246448e-11 - syst_JES_MJB_Stat7: 4.318868688672996e-11 - syst_JES_MJB_Stat8: 5.420149644382524e-10 - syst_JES_MJB_Stat9: 7.273084952068139e-10 - syst_JES_MJB_Threshold: 7.877619992738924e-08 - syst_JES_Pileup_MuOffset: 1.9454444222336448e-07 - syst_JES_Pileup_NPVOffset: 1.2635185426023633e-07 - syst_JES_Pileup_Pt_term: 4.2869941392542163e-08 - syst_JES_Pileup_Rho_topology: 1.9910305748531338e-07 - syst_JES_PunchThrough_MC15: 7.690699886876356e-07 + syst_JES_MJB_Stat6: 2.56863135e-11 + syst_JES_MJB_Stat7: 4.31886869e-11 + syst_JES_MJB_Stat8: 5.42014964e-10 + syst_JES_MJB_Stat9: 7.27308495e-10 + syst_JES_MJB_Threshold: 7.87761999e-08 + syst_JES_Pileup_MuOffset: 1.94544442e-07 + syst_JES_Pileup_NPVOffset: 1.26351854e-07 + syst_JES_Pileup_Pt_term: 4.28699414e-08 + syst_JES_Pileup_Rho_topology: 1.99103057e-07 + syst_JES_PunchThrough_MC15: 7.69069989e-07 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 1.9263506949670405e-07 - syst_JES_Zjet_MuScale: 2.570884187881671e-08 - syst_JES_Zjet_MuSmearID: 2.638779405331184e-10 - syst_JES_Zjet_MuSmearMS: 3.4099156514494605e-08 - syst_JES_Zjet_OOC: 1.1372445064716734e-07 - syst_JES_Zjet_Stat1: 2.527917812647397e-08 - syst_JES_Zjet_Stat10: 1.6981923352494556e-08 - syst_JES_Zjet_Stat11: 1.54671302687344e-08 - syst_JES_Zjet_Stat12: 2.4439236894796858e-08 - syst_JES_Zjet_Stat13: 4.326835564243226e-08 - syst_JES_Zjet_Stat2: 5.3927401893656996e-11 - syst_JES_Zjet_Stat3: 9.638862744120802e-09 - syst_JES_Zjet_Stat4: 1.1147478997513294e-08 - syst_JES_Zjet_Stat5: 1.0570842480616197e-08 - syst_JES_Zjet_Stat6: 1.7456031249972027e-08 - syst_JES_Zjet_Stat7: 1.031978753415011e-08 - syst_JES_Zjet_Stat8: 1.0174066443659586e-08 - syst_JES_Zjet_Stat9: 1.4572223577752297e-08 - syst_JES_Zjet_Veto: 2.469904451593219e-08 - syst_JES_Zjet_dPhi: 2.4863589342651232e-08 - syst_PRW: 7.018e-08 + syst_JES_Zjet_MC: 1.92635069e-07 + syst_JES_Zjet_MuScale: 2.57088419e-08 + syst_JES_Zjet_MuSmearID: 2.63877941e-10 + syst_JES_Zjet_MuSmearMS: 3.40991565e-08 + syst_JES_Zjet_OOC: 1.13724451e-07 + syst_JES_Zjet_Stat1: 2.52791781e-08 + syst_JES_Zjet_Stat10: 1.69819234e-08 + syst_JES_Zjet_Stat11: 1.54671303e-08 + syst_JES_Zjet_Stat12: 2.44392369e-08 + syst_JES_Zjet_Stat13: 4.32683556e-08 + syst_JES_Zjet_Stat2: 5.39274019e-11 + syst_JES_Zjet_Stat3: 9.63886274e-09 + syst_JES_Zjet_Stat4: 1.11474790e-08 + syst_JES_Zjet_Stat5: 1.05708425e-08 + syst_JES_Zjet_Stat6: 1.74560312e-08 + syst_JES_Zjet_Stat7: 1.03197875e-08 + syst_JES_Zjet_Stat8: 1.01740664e-08 + syst_JES_Zjet_Stat9: 1.45722236e-08 + syst_JES_Zjet_Veto: 2.46990445e-08 + syst_JES_Zjet_dPhi: 2.48635893e-08 + syst_PRW: 7.01800000e-08 syst_Unfolding_bias: 0.0 - syst_cleaning: 4.0919700328814725e-08 - syst_lumi: 1.3622e-07 + syst_cleaning: 4.09197003e-08 + syst_lumi: 1.36220000e-07 - stat: 62.71 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 186.41985087431007 - syst_JER_NP1: 44.79688440896309 - syst_JER_NP2: 26.163078947249307 - syst_JER_NP3: 40.64922202207565 - syst_JER_NP4: 4.9414241621216854 - syst_JER_NP5: 16.808868938747782 - syst_JER_NP6: 9.838982099282426 - syst_JER_NP7: 12.348081662752316 - syst_JER_NP8: 17.013982485003325 - syst_JES_EtaIntercalibration_Modelling: 247.80916745552412 - syst_JES_EtaIntercalibration_NonClosure: 233.2954472337598 + syst_JER_NP0: 1.86419851e+02 + syst_JER_NP1: 4.47968844e+01 + syst_JER_NP2: 2.61630789e+01 + syst_JER_NP3: 4.06492220e+01 + syst_JER_NP4: 4.94142416e+00 + syst_JER_NP5: 1.68088689e+01 + syst_JER_NP6: 9.83898210e+00 + syst_JER_NP7: 1.23480817e+01 + syst_JER_NP8: 1.70139825e+01 + syst_JES_EtaIntercalibration_Modelling: 2.47809167e+02 + syst_JES_EtaIntercalibration_NonClosure: 2.33295447e+02 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 0.3020696608400122 + syst_JES_EtaIntercalibration_Stat100: 3.02069661e-01 syst_JES_EtaIntercalibration_Stat101: 0.0 - syst_JES_EtaIntercalibration_Stat102: 1.1429566078815065 - syst_JES_EtaIntercalibration_Stat103: 9.545608885765223 - syst_JES_EtaIntercalibration_Stat104: 18.438137107636443 - syst_JES_EtaIntercalibration_Stat105: 8.261657506215082 - syst_JES_EtaIntercalibration_Stat106: 0.15470114192209442 + syst_JES_EtaIntercalibration_Stat102: 1.14295661e+00 + syst_JES_EtaIntercalibration_Stat103: 9.54560889e+00 + syst_JES_EtaIntercalibration_Stat104: 1.84381371e+01 + syst_JES_EtaIntercalibration_Stat105: 8.26165751e+00 + syst_JES_EtaIntercalibration_Stat106: 1.54701142e-01 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 0.11832731330931164 + syst_JES_EtaIntercalibration_Stat109: 1.18327313e-01 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 0.7736921917015835 - syst_JES_EtaIntercalibration_Stat111: 3.960704104070386 - syst_JES_EtaIntercalibration_Stat112: 2.5074841475072183 - syst_JES_EtaIntercalibration_Stat113: 1.0545544936132984 - syst_JES_EtaIntercalibration_Stat114: 9.249151312417805e-08 + syst_JES_EtaIntercalibration_Stat110: 7.73692192e-01 + syst_JES_EtaIntercalibration_Stat111: 3.96070410e+00 + syst_JES_EtaIntercalibration_Stat112: 2.50748415e+00 + syst_JES_EtaIntercalibration_Stat113: 1.05455449e+00 + syst_JES_EtaIntercalibration_Stat114: 9.24915131e-08 syst_JES_EtaIntercalibration_Stat115: 0.0 - syst_JES_EtaIntercalibration_Stat116: 0.011118034133784623 - syst_JES_EtaIntercalibration_Stat117: 0.10720528473447566 - syst_JES_EtaIntercalibration_Stat118: 0.3020696608400122 - syst_JES_EtaIntercalibration_Stat119: 0.3020696608400122 + syst_JES_EtaIntercalibration_Stat116: 1.11180341e-02 + syst_JES_EtaIntercalibration_Stat117: 1.07205285e-01 + syst_JES_EtaIntercalibration_Stat118: 3.02069661e-01 + syst_JES_EtaIntercalibration_Stat119: 3.02069661e-01 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 0.3020696608400122 - syst_JES_EtaIntercalibration_Stat121: 0.011063474533346204 - syst_JES_EtaIntercalibration_Stat122: 0.712122439753165 - syst_JES_EtaIntercalibration_Stat123: 2.5269170702656627 - syst_JES_EtaIntercalibration_Stat124: 4.3478798281461275 - syst_JES_EtaIntercalibration_Stat125: 3.5888652160815404 - syst_JES_EtaIntercalibration_Stat126: 0.05629828127927175 + syst_JES_EtaIntercalibration_Stat120: 3.02069661e-01 + syst_JES_EtaIntercalibration_Stat121: 1.10634745e-02 + syst_JES_EtaIntercalibration_Stat122: 7.12122440e-01 + syst_JES_EtaIntercalibration_Stat123: 2.52691707e+00 + syst_JES_EtaIntercalibration_Stat124: 4.34787983e+00 + syst_JES_EtaIntercalibration_Stat125: 3.58886522e+00 + syst_JES_EtaIntercalibration_Stat126: 5.62982813e-02 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 0.07108637773863569 - syst_JES_EtaIntercalibration_Stat129: 4.495328769956655 + syst_JES_EtaIntercalibration_Stat128: 7.10863777e-02 + syst_JES_EtaIntercalibration_Stat129: 4.49532877e+00 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 12.099634746553305 - syst_JES_EtaIntercalibration_Stat131: 3.8195935320397645 - syst_JES_EtaIntercalibration_Stat132: 0.5144269117182731 - syst_JES_EtaIntercalibration_Stat133: 0.00021323303547534563 + syst_JES_EtaIntercalibration_Stat130: 1.20996347e+01 + syst_JES_EtaIntercalibration_Stat131: 3.81959353e+00 + syst_JES_EtaIntercalibration_Stat132: 5.14426912e-01 + syst_JES_EtaIntercalibration_Stat133: 2.13233035e-04 syst_JES_EtaIntercalibration_Stat134: 0.0 - syst_JES_EtaIntercalibration_Stat135: 0.011118034133784623 - syst_JES_EtaIntercalibration_Stat136: 0.011118034133784623 - syst_JES_EtaIntercalibration_Stat137: 0.3020696608400122 - syst_JES_EtaIntercalibration_Stat138: 0.3020696608400122 - syst_JES_EtaIntercalibration_Stat139: 0.3020696608400122 + syst_JES_EtaIntercalibration_Stat135: 1.11180341e-02 + syst_JES_EtaIntercalibration_Stat136: 1.11180341e-02 + syst_JES_EtaIntercalibration_Stat137: 3.02069661e-01 + syst_JES_EtaIntercalibration_Stat138: 3.02069661e-01 + syst_JES_EtaIntercalibration_Stat139: 3.02069661e-01 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 0.027591569364572216 - syst_JES_EtaIntercalibration_Stat141: 0.5838415260154078 - syst_JES_EtaIntercalibration_Stat142: 3.291547470415701 - syst_JES_EtaIntercalibration_Stat143: 9.085698693551311 - syst_JES_EtaIntercalibration_Stat144: 5.249716278047797 - syst_JES_EtaIntercalibration_Stat145: 0.07207085732111142 - syst_JES_EtaIntercalibration_Stat146: 0.0013056109173486565 - syst_JES_EtaIntercalibration_Stat147: 0.13506538296321527 - syst_JES_EtaIntercalibration_Stat148: 0.4487764114790348 - syst_JES_EtaIntercalibration_Stat149: 0.239893476359821 + syst_JES_EtaIntercalibration_Stat140: 2.75915694e-02 + syst_JES_EtaIntercalibration_Stat141: 5.83841526e-01 + syst_JES_EtaIntercalibration_Stat142: 3.29154747e+00 + syst_JES_EtaIntercalibration_Stat143: 9.08569869e+00 + syst_JES_EtaIntercalibration_Stat144: 5.24971628e+00 + syst_JES_EtaIntercalibration_Stat145: 7.20708573e-02 + syst_JES_EtaIntercalibration_Stat146: 1.30561092e-03 + syst_JES_EtaIntercalibration_Stat147: 1.35065383e-01 + syst_JES_EtaIntercalibration_Stat148: 4.48776411e-01 + syst_JES_EtaIntercalibration_Stat149: 2.39893476e-01 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 0.028452773151311634 - syst_JES_EtaIntercalibration_Stat151: 9.214510296266427e-08 + syst_JES_EtaIntercalibration_Stat150: 2.84527732e-02 + syst_JES_EtaIntercalibration_Stat151: 9.21451030e-08 syst_JES_EtaIntercalibration_Stat152: 0.0 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 0.3020696608400122 + syst_JES_EtaIntercalibration_Stat156: 3.02069661e-01 syst_JES_EtaIntercalibration_Stat157: 0.0 syst_JES_EtaIntercalibration_Stat158: 0.0 - syst_JES_EtaIntercalibration_Stat159: 0.028654944193803624 - syst_JES_EtaIntercalibration_Stat16: 0.048116464957434275 - syst_JES_EtaIntercalibration_Stat160: 0.20826316885133578 - syst_JES_EtaIntercalibration_Stat161: 0.3872402968442205 - syst_JES_EtaIntercalibration_Stat162: 0.21734785483183405 - syst_JES_EtaIntercalibration_Stat163: 0.0010588846584968542 - syst_JES_EtaIntercalibration_Stat164: 6.619558910342894e-06 - syst_JES_EtaIntercalibration_Stat165: 0.01569870734423698 - syst_JES_EtaIntercalibration_Stat166: 0.013060076071753945 - syst_JES_EtaIntercalibration_Stat167: 0.003874612847756534 - syst_JES_EtaIntercalibration_Stat168: 0.00019543788157598183 - syst_JES_EtaIntercalibration_Stat169: 9.214510296266427e-08 - syst_JES_EtaIntercalibration_Stat17: 0.10300152371688488 + syst_JES_EtaIntercalibration_Stat159: 2.86549442e-02 + syst_JES_EtaIntercalibration_Stat16: 4.81164650e-02 + syst_JES_EtaIntercalibration_Stat160: 2.08263169e-01 + syst_JES_EtaIntercalibration_Stat161: 3.87240297e-01 + syst_JES_EtaIntercalibration_Stat162: 2.17347855e-01 + syst_JES_EtaIntercalibration_Stat163: 1.05888466e-03 + syst_JES_EtaIntercalibration_Stat164: 6.61955891e-06 + syst_JES_EtaIntercalibration_Stat165: 1.56987073e-02 + syst_JES_EtaIntercalibration_Stat166: 1.30600761e-02 + syst_JES_EtaIntercalibration_Stat167: 3.87461285e-03 + syst_JES_EtaIntercalibration_Stat168: 1.95437882e-04 + syst_JES_EtaIntercalibration_Stat169: 9.21451030e-08 + syst_JES_EtaIntercalibration_Stat17: 1.03001524e-01 syst_JES_EtaIntercalibration_Stat170: 0.0 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 syst_JES_EtaIntercalibration_Stat175: 0.0 - syst_JES_EtaIntercalibration_Stat176: 4.324064841095702e-23 - syst_JES_EtaIntercalibration_Stat177: 4.1976251321431745e-07 - syst_JES_EtaIntercalibration_Stat178: 0.004760922852504543 - syst_JES_EtaIntercalibration_Stat179: 0.008280915936658214 - syst_JES_EtaIntercalibration_Stat18: 0.030801929594588714 - syst_JES_EtaIntercalibration_Stat180: 0.003113015552434769 - syst_JES_EtaIntercalibration_Stat181: 2.896854975658947e-07 - syst_JES_EtaIntercalibration_Stat182: 0.00026920452610422436 - syst_JES_EtaIntercalibration_Stat183: 0.0007223119547674675 - syst_JES_EtaIntercalibration_Stat184: 3.0430949705850455e-05 - syst_JES_EtaIntercalibration_Stat185: 2.4854156206759463e-07 + syst_JES_EtaIntercalibration_Stat176: 4.32406484e-23 + syst_JES_EtaIntercalibration_Stat177: 4.19762513e-07 + syst_JES_EtaIntercalibration_Stat178: 4.76092285e-03 + syst_JES_EtaIntercalibration_Stat179: 8.28091594e-03 + syst_JES_EtaIntercalibration_Stat18: 3.08019296e-02 + syst_JES_EtaIntercalibration_Stat180: 3.11301555e-03 + syst_JES_EtaIntercalibration_Stat181: 2.89685498e-07 + syst_JES_EtaIntercalibration_Stat182: 2.69204526e-04 + syst_JES_EtaIntercalibration_Stat183: 7.22311955e-04 + syst_JES_EtaIntercalibration_Stat184: 3.04309497e-05 + syst_JES_EtaIntercalibration_Stat185: 2.48541562e-07 syst_JES_EtaIntercalibration_Stat186: 0.0 syst_JES_EtaIntercalibration_Stat187: 0.0 syst_JES_EtaIntercalibration_Stat188: 0.0 @@ -44266,16 +44266,16 @@ bins: syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 syst_JES_EtaIntercalibration_Stat192: 0.0 - syst_JES_EtaIntercalibration_Stat193: 8.603824754578628e-22 - syst_JES_EtaIntercalibration_Stat194: 2.3872784477248398e-08 - syst_JES_EtaIntercalibration_Stat195: 2.398930334544961e-05 - syst_JES_EtaIntercalibration_Stat196: 0.000676970876404591 - syst_JES_EtaIntercalibration_Stat197: 3.3450179117607126e-05 - syst_JES_EtaIntercalibration_Stat198: 3.390026991042992e-08 - syst_JES_EtaIntercalibration_Stat199: 2.0305897542339764e-08 + syst_JES_EtaIntercalibration_Stat193: 8.60382475e-22 + syst_JES_EtaIntercalibration_Stat194: 2.38727845e-08 + syst_JES_EtaIntercalibration_Stat195: 2.39893033e-05 + syst_JES_EtaIntercalibration_Stat196: 6.76970876e-04 + syst_JES_EtaIntercalibration_Stat197: 3.34501791e-05 + syst_JES_EtaIntercalibration_Stat198: 3.39002699e-08 + syst_JES_EtaIntercalibration_Stat199: 2.03058975e-08 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 6.08729256320082e-17 + syst_JES_EtaIntercalibration_Stat200: 6.08729256e-17 syst_JES_EtaIntercalibration_Stat201: 0.0 syst_JES_EtaIntercalibration_Stat202: 0.0 syst_JES_EtaIntercalibration_Stat203: 0.0 @@ -44286,9 +44286,9 @@ bins: syst_JES_EtaIntercalibration_Stat208: 0.0 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 1.313383085775053e-11 - syst_JES_EtaIntercalibration_Stat211: 3.894731569697711e-08 - syst_JES_EtaIntercalibration_Stat212: 3.0137684018038944e-30 + syst_JES_EtaIntercalibration_Stat210: 1.31338309e-11 + syst_JES_EtaIntercalibration_Stat211: 3.89473157e-08 + syst_JES_EtaIntercalibration_Stat212: 3.01376840e-30 syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 syst_JES_EtaIntercalibration_Stat215: 0.0 @@ -44300,7 +44300,7 @@ bins: syst_JES_EtaIntercalibration_Stat220: 0.0 syst_JES_EtaIntercalibration_Stat221: 0.0 syst_JES_EtaIntercalibration_Stat222: 0.0 - syst_JES_EtaIntercalibration_Stat223: 6.036197064377537e-23 + syst_JES_EtaIntercalibration_Stat223: 6.03619706e-23 syst_JES_EtaIntercalibration_Stat224: 0.0 syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 @@ -44318,126 +44318,126 @@ bins: syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 syst_JES_EtaIntercalibration_Stat239: 0.0 - syst_JES_EtaIntercalibration_Stat24: 0.03169652977851046 + syst_JES_EtaIntercalibration_Stat24: 3.16965298e-02 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 syst_JES_EtaIntercalibration_Stat243: 0.0 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 - syst_JES_EtaIntercalibration_Stat25: 0.39114348635858687 - syst_JES_EtaIntercalibration_Stat26: 0.6026702311380578 - syst_JES_EtaIntercalibration_Stat27: 0.6302014140510953 - syst_JES_EtaIntercalibration_Stat28: 0.2096967738712258 + syst_JES_EtaIntercalibration_Stat25: 3.91143486e-01 + syst_JES_EtaIntercalibration_Stat26: 6.02670231e-01 + syst_JES_EtaIntercalibration_Stat27: 6.30201414e-01 + syst_JES_EtaIntercalibration_Stat28: 2.09696774e-01 syst_JES_EtaIntercalibration_Stat29: 0.0 - syst_JES_EtaIntercalibration_Stat3: 0.045713235807586405 + syst_JES_EtaIntercalibration_Stat3: 4.57132358e-02 syst_JES_EtaIntercalibration_Stat30: 0.0 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 0.00983545051077987 - syst_JES_EtaIntercalibration_Stat36: 0.00983545051077987 - syst_JES_EtaIntercalibration_Stat37: 0.034440070775188604 - syst_JES_EtaIntercalibration_Stat38: 0.6962273510140203 - syst_JES_EtaIntercalibration_Stat39: 0.765649724284981 - syst_JES_EtaIntercalibration_Stat4: 0.14158975836902893 - syst_JES_EtaIntercalibration_Stat40: 0.21989597540655445 + syst_JES_EtaIntercalibration_Stat35: 9.83545051e-03 + syst_JES_EtaIntercalibration_Stat36: 9.83545051e-03 + syst_JES_EtaIntercalibration_Stat37: 3.44400708e-02 + syst_JES_EtaIntercalibration_Stat38: 6.96227351e-01 + syst_JES_EtaIntercalibration_Stat39: 7.65649724e-01 + syst_JES_EtaIntercalibration_Stat4: 1.41589758e-01 + syst_JES_EtaIntercalibration_Stat40: 2.19895975e-01 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 syst_JES_EtaIntercalibration_Stat44: 0.0 syst_JES_EtaIntercalibration_Stat45: 0.0 - syst_JES_EtaIntercalibration_Stat46: 0.1433924519457004 - syst_JES_EtaIntercalibration_Stat47: 0.9594378510356989 - syst_JES_EtaIntercalibration_Stat48: 2.5669396175212227 - syst_JES_EtaIntercalibration_Stat49: 1.6818420704691626 - syst_JES_EtaIntercalibration_Stat5: 0.16852143860277838 - syst_JES_EtaIntercalibration_Stat50: 0.3796704819287378 + syst_JES_EtaIntercalibration_Stat46: 1.43392452e-01 + syst_JES_EtaIntercalibration_Stat47: 9.59437851e-01 + syst_JES_EtaIntercalibration_Stat48: 2.56693962e+00 + syst_JES_EtaIntercalibration_Stat49: 1.68184207e+00 + syst_JES_EtaIntercalibration_Stat5: 1.68521439e-01 + syst_JES_EtaIntercalibration_Stat50: 3.79670482e-01 syst_JES_EtaIntercalibration_Stat51: 0.0 syst_JES_EtaIntercalibration_Stat52: 0.0 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 0.3020696608400122 - syst_JES_EtaIntercalibration_Stat57: 0.00983545051077987 - syst_JES_EtaIntercalibration_Stat58: 0.00983545051077987 - syst_JES_EtaIntercalibration_Stat59: 0.17693773389246284 + syst_JES_EtaIntercalibration_Stat56: 3.02069661e-01 + syst_JES_EtaIntercalibration_Stat57: 9.83545051e-03 + syst_JES_EtaIntercalibration_Stat58: 9.83545051e-03 + syst_JES_EtaIntercalibration_Stat59: 1.76937734e-01 syst_JES_EtaIntercalibration_Stat6: 0.0 - syst_JES_EtaIntercalibration_Stat60: 2.6510790765271413 - syst_JES_EtaIntercalibration_Stat61: 3.6623766873438894 - syst_JES_EtaIntercalibration_Stat62: 0.5122548977803921 - syst_JES_EtaIntercalibration_Stat63: 0.012839380826192515 + syst_JES_EtaIntercalibration_Stat60: 2.65107908e+00 + syst_JES_EtaIntercalibration_Stat61: 3.66237669e+00 + syst_JES_EtaIntercalibration_Stat62: 5.12254898e-01 + syst_JES_EtaIntercalibration_Stat63: 1.28393808e-02 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 0.18282810526557453 - syst_JES_EtaIntercalibration_Stat69: 9.375500026665243 + syst_JES_EtaIntercalibration_Stat68: 1.82828105e-01 + syst_JES_EtaIntercalibration_Stat69: 9.37550003e+00 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 19.26951672979891 - syst_JES_EtaIntercalibration_Stat71: 8.06606558366593 - syst_JES_EtaIntercalibration_Stat72: 1.4940327974981005 + syst_JES_EtaIntercalibration_Stat70: 1.92695167e+01 + syst_JES_EtaIntercalibration_Stat71: 8.06606558e+00 + syst_JES_EtaIntercalibration_Stat72: 1.49403280e+00 syst_JES_EtaIntercalibration_Stat73: 0.0 syst_JES_EtaIntercalibration_Stat74: 0.0 syst_JES_EtaIntercalibration_Stat75: 0.0 - syst_JES_EtaIntercalibration_Stat76: 0.07213991613524373 - syst_JES_EtaIntercalibration_Stat77: 0.3020696608400122 - syst_JES_EtaIntercalibration_Stat78: 0.3020696608400122 - syst_JES_EtaIntercalibration_Stat79: 0.00983545051077987 + syst_JES_EtaIntercalibration_Stat76: 7.21399161e-02 + syst_JES_EtaIntercalibration_Stat77: 3.02069661e-01 + syst_JES_EtaIntercalibration_Stat78: 3.02069661e-01 + syst_JES_EtaIntercalibration_Stat79: 9.83545051e-03 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 0.009851904993451774 - syst_JES_EtaIntercalibration_Stat81: 0.9775482289892402 - syst_JES_EtaIntercalibration_Stat82: 8.361652393516486 - syst_JES_EtaIntercalibration_Stat83: 19.452927800205295 - syst_JES_EtaIntercalibration_Stat84: 8.491089726884296 - syst_JES_EtaIntercalibration_Stat85: 0.11804044592850367 + syst_JES_EtaIntercalibration_Stat80: 9.85190499e-03 + syst_JES_EtaIntercalibration_Stat81: 9.77548229e-01 + syst_JES_EtaIntercalibration_Stat82: 8.36165239e+00 + syst_JES_EtaIntercalibration_Stat83: 1.94529278e+01 + syst_JES_EtaIntercalibration_Stat84: 8.49108973e+00 + syst_JES_EtaIntercalibration_Stat85: 1.18040446e-01 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 0.22531620003896746 + syst_JES_EtaIntercalibration_Stat89: 2.25316200e-01 syst_JES_EtaIntercalibration_Stat9: 0.0 - syst_JES_EtaIntercalibration_Stat90: 7.53120820320352 - syst_JES_EtaIntercalibration_Stat91: 20.400019607833713 - syst_JES_EtaIntercalibration_Stat92: 9.05519480740199 - syst_JES_EtaIntercalibration_Stat93: 1.3655720120154777 + syst_JES_EtaIntercalibration_Stat90: 7.53120820e+00 + syst_JES_EtaIntercalibration_Stat91: 2.04000196e+01 + syst_JES_EtaIntercalibration_Stat92: 9.05519481e+00 + syst_JES_EtaIntercalibration_Stat93: 1.36557201e+00 syst_JES_EtaIntercalibration_Stat94: 0.0 syst_JES_EtaIntercalibration_Stat95: 0.0 - syst_JES_EtaIntercalibration_Stat96: 0.10720528473447566 - syst_JES_EtaIntercalibration_Stat97: 0.07213991613524373 - syst_JES_EtaIntercalibration_Stat98: 0.3020696608400122 - syst_JES_EtaIntercalibration_Stat99: 0.3020696608400122 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.00316975750935667 - syst_JES_Flavour_Comp: 20.736557091282055 - syst_JES_Flavour_Response: 288.73352641319644 - syst_JES_Gjet_Generator: 150.73719713461574 - syst_JES_Gjet_OOC: 96.66561002109282 - syst_JES_Gjet_Purity: 41.35643255891398 - syst_JES_Gjet_Stat1: 0.018368398814267942 - syst_JES_Gjet_Stat10: 1.3909265796583228 - syst_JES_Gjet_Stat11: 0.05192890909695677 - syst_JES_Gjet_Stat12: 0.004676537180435969 - syst_JES_Gjet_Stat13: 2.2967168881778935e-05 - syst_JES_Gjet_Stat14: 6.431970673907892e-16 + syst_JES_EtaIntercalibration_Stat96: 1.07205285e-01 + syst_JES_EtaIntercalibration_Stat97: 7.21399161e-02 + syst_JES_EtaIntercalibration_Stat98: 3.02069661e-01 + syst_JES_EtaIntercalibration_Stat99: 3.02069661e-01 + syst_JES_EtaIntercalibration_TotalStat_MJB: 3.16975751e-03 + syst_JES_Flavour_Comp: 2.07365571e+01 + syst_JES_Flavour_Response: 2.88733526e+02 + syst_JES_Gjet_Generator: 1.50737197e+02 + syst_JES_Gjet_OOC: 9.66656100e+01 + syst_JES_Gjet_Purity: 4.13564326e+01 + syst_JES_Gjet_Stat1: 1.83683988e-02 + syst_JES_Gjet_Stat10: 1.39092658e+00 + syst_JES_Gjet_Stat11: 5.19289091e-02 + syst_JES_Gjet_Stat12: 4.67653718e-03 + syst_JES_Gjet_Stat13: 2.29671689e-05 + syst_JES_Gjet_Stat14: 6.43197067e-16 syst_JES_Gjet_Stat15: 0.0 syst_JES_Gjet_Stat2: 0.0 - syst_JES_Gjet_Stat3: 2.451717918113746 - syst_JES_Gjet_Stat4: 3.917169226622715 - syst_JES_Gjet_Stat5: 4.639986422393928 - syst_JES_Gjet_Stat6: 11.29310129016826 - syst_JES_Gjet_Stat7: 15.727822481195545 - syst_JES_Gjet_Stat8: 4.569748433995027 - syst_JES_Gjet_Stat9: 1.5402885326037943 - syst_JES_Gjet_Veto: 28.936686057667348 - syst_JES_Gjet_dPhi: 18.6468891507404 - syst_JES_LArESZee: 90.45660768981999 - syst_JES_LArEsmear: 8.940234602626488 - syst_JES_LAr_JVT: 17.15558436777949 + syst_JES_Gjet_Stat3: 2.45171792e+00 + syst_JES_Gjet_Stat4: 3.91716923e+00 + syst_JES_Gjet_Stat5: 4.63998642e+00 + syst_JES_Gjet_Stat6: 1.12931013e+01 + syst_JES_Gjet_Stat7: 1.57278225e+01 + syst_JES_Gjet_Stat8: 4.56974843e+00 + syst_JES_Gjet_Stat9: 1.54028853e+00 + syst_JES_Gjet_Veto: 2.89366861e+01 + syst_JES_Gjet_dPhi: 1.86468892e+01 + syst_JES_LArESZee: 9.04566077e+01 + syst_JES_LArEsmear: 8.94023460e+00 + syst_JES_LAr_JVT: 1.71555844e+01 syst_JES_MJB_Alpha: 0.0 - syst_JES_MJB_Asym: 0.0002909845356715714 + syst_JES_MJB_Asym: 2.90984536e-04 syst_JES_MJB_Beta: 0.0 - syst_JES_MJB_Fragmentation: 0.003797878904693612 - syst_JES_MJB_Stat1: 5.251578048548837e-38 + syst_JES_MJB_Fragmentation: 3.79787890e-03 + syst_JES_MJB_Stat1: 5.25157805e-38 syst_JES_MJB_Stat10: 0.0 syst_JES_MJB_Stat11: 0.0 syst_JES_MJB_Stat12: 0.0 @@ -44445,157 +44445,157 @@ bins: syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 2.039489825912353e-07 - syst_JES_MJB_Stat3: 5.887240694926614e-12 + syst_JES_MJB_Stat2: 2.03948983e-07 + syst_JES_MJB_Stat3: 5.88724069e-12 syst_JES_MJB_Stat4: 0.0 syst_JES_MJB_Stat5: 0.0 syst_JES_MJB_Stat6: 0.0 syst_JES_MJB_Stat7: 0.0 syst_JES_MJB_Stat8: 0.0 syst_JES_MJB_Stat9: 0.0 - syst_JES_MJB_Threshold: 0.00034600696524781114 - syst_JES_Pileup_MuOffset: 1.0324754863918077e-27 - syst_JES_Pileup_NPVOffset: 11.2311047875977 - syst_JES_Pileup_Pt_term: 50.91853388256579 - syst_JES_Pileup_Rho_topology: 81.69716831537065 - syst_JES_PunchThrough_MC15: 1.0786346404135184e-37 + syst_JES_MJB_Threshold: 3.46006965e-04 + syst_JES_Pileup_MuOffset: 1.03247549e-27 + syst_JES_Pileup_NPVOffset: 1.12311048e+01 + syst_JES_Pileup_Pt_term: 5.09185339e+01 + syst_JES_Pileup_Rho_topology: 8.16971683e+01 + syst_JES_PunchThrough_MC15: 1.07863464e-37 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 142.2400520906471 - syst_JES_Zjet_MuScale: 9.973330988190456 - syst_JES_Zjet_MuSmearID: 1.6699888472681483 - syst_JES_Zjet_MuSmearMS: 4.023519230723274 - syst_JES_Zjet_OOC: 99.37427180110554 - syst_JES_Zjet_Stat1: 3.5115349806032117 - syst_JES_Zjet_Stat10: 5.190404680754671 - syst_JES_Zjet_Stat11: 3.2633502340386324 - syst_JES_Zjet_Stat12: 0.44640229334088327 - syst_JES_Zjet_Stat13: 0.0036581982952677674 - syst_JES_Zjet_Stat2: 0.06321985447626402 - syst_JES_Zjet_Stat3: 3.6832060422952175e-38 - syst_JES_Zjet_Stat4: 1.1751574054142704 - syst_JES_Zjet_Stat5: 3.4252801345291455 - syst_JES_Zjet_Stat6: 5.327027384010711 - syst_JES_Zjet_Stat7: 8.224498221776207 - syst_JES_Zjet_Stat8: 12.981487848085827 - syst_JES_Zjet_Stat9: 14.932791935870531 - syst_JES_Zjet_Veto: 14.25845180936556 - syst_JES_Zjet_dPhi: 23.154037984766287 + syst_JES_Zjet_MC: 1.42240052e+02 + syst_JES_Zjet_MuScale: 9.97333099e+00 + syst_JES_Zjet_MuSmearID: 1.66998885e+00 + syst_JES_Zjet_MuSmearMS: 4.02351923e+00 + syst_JES_Zjet_OOC: 9.93742718e+01 + syst_JES_Zjet_Stat1: 3.51153498e+00 + syst_JES_Zjet_Stat10: 5.19040468e+00 + syst_JES_Zjet_Stat11: 3.26335023e+00 + syst_JES_Zjet_Stat12: 4.46402293e-01 + syst_JES_Zjet_Stat13: 3.65819830e-03 + syst_JES_Zjet_Stat2: 6.32198545e-02 + syst_JES_Zjet_Stat3: 3.68320604e-38 + syst_JES_Zjet_Stat4: 1.17515741e+00 + syst_JES_Zjet_Stat5: 3.42528013e+00 + syst_JES_Zjet_Stat6: 5.32702738e+00 + syst_JES_Zjet_Stat7: 8.22449822e+00 + syst_JES_Zjet_Stat8: 1.29814878e+01 + syst_JES_Zjet_Stat9: 1.49327919e+01 + syst_JES_Zjet_Veto: 1.42584518e+01 + syst_JES_Zjet_dPhi: 2.31540380e+01 syst_PRW: 0.0 syst_Unfolding_bias: 0.0 - syst_cleaning: 66.42588052107402 + syst_cleaning: 6.64258805e+01 syst_lumi: 139.573 - stat: 36.0 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 78.70422205161552 - syst_JER_NP1: 17.828731727186877 - syst_JER_NP2: 10.138209149055863 - syst_JER_NP3: 18.46106172461378 - syst_JER_NP4: 1.9326191425110122 - syst_JER_NP5: 7.8469215619884976 - syst_JER_NP6: 4.468064793621507 - syst_JER_NP7: 5.386688314725477 - syst_JER_NP8: 5.915178441940699 - syst_JES_EtaIntercalibration_Modelling: 97.22483528785224 - syst_JES_EtaIntercalibration_NonClosure: 165.14167576659744 + syst_JER_NP0: 7.87042221e+01 + syst_JER_NP1: 1.78287317e+01 + syst_JER_NP2: 1.01382091e+01 + syst_JER_NP3: 1.84610617e+01 + syst_JER_NP4: 1.93261914e+00 + syst_JER_NP5: 7.84692156e+00 + syst_JER_NP6: 4.46806479e+00 + syst_JER_NP7: 5.38668831e+00 + syst_JER_NP8: 5.91517844e+00 + syst_JES_EtaIntercalibration_Modelling: 9.72248353e+01 + syst_JES_EtaIntercalibration_NonClosure: 1.65141676e+02 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 0.05377151732097579 + syst_JES_EtaIntercalibration_Stat100: 5.37715173e-02 syst_JES_EtaIntercalibration_Stat101: 0.0 - syst_JES_EtaIntercalibration_Stat102: 0.39925560994806325 - syst_JES_EtaIntercalibration_Stat103: 3.6942845423708226 - syst_JES_EtaIntercalibration_Stat104: 7.1158727328417 - syst_JES_EtaIntercalibration_Stat105: 3.1123513619127263 - syst_JES_EtaIntercalibration_Stat106: 0.02839088446579289 + syst_JES_EtaIntercalibration_Stat102: 3.99255610e-01 + syst_JES_EtaIntercalibration_Stat103: 3.69428454e+00 + syst_JES_EtaIntercalibration_Stat104: 7.11587273e+00 + syst_JES_EtaIntercalibration_Stat105: 3.11235136e+00 + syst_JES_EtaIntercalibration_Stat106: 2.83908845e-02 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 0.07264037720166382 + syst_JES_EtaIntercalibration_Stat109: 7.26403772e-02 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 2.2435691988436637 - syst_JES_EtaIntercalibration_Stat111: 6.014359878657078 - syst_JES_EtaIntercalibration_Stat112: 3.7661984480374904 - syst_JES_EtaIntercalibration_Stat113: 0.6640846086907903 - syst_JES_EtaIntercalibration_Stat114: 2.0819250706977905e-05 + syst_JES_EtaIntercalibration_Stat110: 2.24356920e+00 + syst_JES_EtaIntercalibration_Stat111: 6.01435988e+00 + syst_JES_EtaIntercalibration_Stat112: 3.76619845e+00 + syst_JES_EtaIntercalibration_Stat113: 6.64084609e-01 + syst_JES_EtaIntercalibration_Stat114: 2.08192507e-05 syst_JES_EtaIntercalibration_Stat115: 0.0 - syst_JES_EtaIntercalibration_Stat116: 0.007466005006025646 - syst_JES_EtaIntercalibration_Stat117: 0.0385727714845589 - syst_JES_EtaIntercalibration_Stat118: 0.05377151732097579 - syst_JES_EtaIntercalibration_Stat119: 0.05377151732097579 + syst_JES_EtaIntercalibration_Stat116: 7.46600501e-03 + syst_JES_EtaIntercalibration_Stat117: 3.85727715e-02 + syst_JES_EtaIntercalibration_Stat118: 5.37715173e-02 + syst_JES_EtaIntercalibration_Stat119: 5.37715173e-02 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 0.05377151732097579 - syst_JES_EtaIntercalibration_Stat121: 0.004454834677067153 - syst_JES_EtaIntercalibration_Stat122: 0.3970442135329515 - syst_JES_EtaIntercalibration_Stat123: 3.387270693345898 - syst_JES_EtaIntercalibration_Stat124: 7.139404106786505 - syst_JES_EtaIntercalibration_Stat125: 2.2336263675915005 - syst_JES_EtaIntercalibration_Stat126: 0.051753282898285784 + syst_JES_EtaIntercalibration_Stat120: 5.37715173e-02 + syst_JES_EtaIntercalibration_Stat121: 4.45483468e-03 + syst_JES_EtaIntercalibration_Stat122: 3.97044214e-01 + syst_JES_EtaIntercalibration_Stat123: 3.38727069e+00 + syst_JES_EtaIntercalibration_Stat124: 7.13940411e+00 + syst_JES_EtaIntercalibration_Stat125: 2.23362637e+00 + syst_JES_EtaIntercalibration_Stat126: 5.17532829e-02 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 0.06371655991969434 - syst_JES_EtaIntercalibration_Stat129: 1.0719358702832926 + syst_JES_EtaIntercalibration_Stat128: 6.37165599e-02 + syst_JES_EtaIntercalibration_Stat129: 1.07193587e+00 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 1.5690073390523067 - syst_JES_EtaIntercalibration_Stat131: 0.6787892014462222 - syst_JES_EtaIntercalibration_Stat132: 0.07174277721833747 - syst_JES_EtaIntercalibration_Stat133: 6.856585812195454e-05 + syst_JES_EtaIntercalibration_Stat130: 1.56900734e+00 + syst_JES_EtaIntercalibration_Stat131: 6.78789201e-01 + syst_JES_EtaIntercalibration_Stat132: 7.17427772e-02 + syst_JES_EtaIntercalibration_Stat133: 6.85658581e-05 syst_JES_EtaIntercalibration_Stat134: 0.0 - syst_JES_EtaIntercalibration_Stat135: 0.007466005006025646 - syst_JES_EtaIntercalibration_Stat136: 0.007466005006025646 - syst_JES_EtaIntercalibration_Stat137: 0.05377151732097579 - syst_JES_EtaIntercalibration_Stat138: 0.05377151732097579 - syst_JES_EtaIntercalibration_Stat139: 0.05377151732097579 + syst_JES_EtaIntercalibration_Stat135: 7.46600501e-03 + syst_JES_EtaIntercalibration_Stat136: 7.46600501e-03 + syst_JES_EtaIntercalibration_Stat137: 5.37715173e-02 + syst_JES_EtaIntercalibration_Stat138: 5.37715173e-02 + syst_JES_EtaIntercalibration_Stat139: 5.37715173e-02 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 0.003990645060638693 - syst_JES_EtaIntercalibration_Stat141: 0.1966756178965761 - syst_JES_EtaIntercalibration_Stat142: 0.7655039777819577 - syst_JES_EtaIntercalibration_Stat143: 2.1985710700361727 - syst_JES_EtaIntercalibration_Stat144: 1.209582220231432 - syst_JES_EtaIntercalibration_Stat145: 0.059390284559008466 - syst_JES_EtaIntercalibration_Stat146: 0.007827652904926227 - syst_JES_EtaIntercalibration_Stat147: 0.31703731641559174 - syst_JES_EtaIntercalibration_Stat148: 0.6972420383195495 - syst_JES_EtaIntercalibration_Stat149: 0.28657063701642566 + syst_JES_EtaIntercalibration_Stat140: 3.99064506e-03 + syst_JES_EtaIntercalibration_Stat141: 1.96675618e-01 + syst_JES_EtaIntercalibration_Stat142: 7.65503978e-01 + syst_JES_EtaIntercalibration_Stat143: 2.19857107e+00 + syst_JES_EtaIntercalibration_Stat144: 1.20958222e+00 + syst_JES_EtaIntercalibration_Stat145: 5.93902846e-02 + syst_JES_EtaIntercalibration_Stat146: 7.82765290e-03 + syst_JES_EtaIntercalibration_Stat147: 3.17037316e-01 + syst_JES_EtaIntercalibration_Stat148: 6.97242038e-01 + syst_JES_EtaIntercalibration_Stat149: 2.86570637e-01 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 0.02565758778120032 - syst_JES_EtaIntercalibration_Stat151: 2.0741308420637303e-05 + syst_JES_EtaIntercalibration_Stat150: 2.56575878e-02 + syst_JES_EtaIntercalibration_Stat151: 2.07413084e-05 syst_JES_EtaIntercalibration_Stat152: 0.0 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 0.05377151732097579 + syst_JES_EtaIntercalibration_Stat156: 5.37715173e-02 syst_JES_EtaIntercalibration_Stat157: 0.0 syst_JES_EtaIntercalibration_Stat158: 0.0 - syst_JES_EtaIntercalibration_Stat159: 0.019239737524197154 - syst_JES_EtaIntercalibration_Stat16: 0.011344868884213691 - syst_JES_EtaIntercalibration_Stat160: 0.4253866564667961 - syst_JES_EtaIntercalibration_Stat161: 0.8203906752273578 - syst_JES_EtaIntercalibration_Stat162: 0.3427004235480312 - syst_JES_EtaIntercalibration_Stat163: 0.0033479779072598435 - syst_JES_EtaIntercalibration_Stat164: 0.00016839164676432143 - syst_JES_EtaIntercalibration_Stat165: 0.004752128444181618 - syst_JES_EtaIntercalibration_Stat166: 0.01916320432776053 - syst_JES_EtaIntercalibration_Stat167: 0.00540441680479957 - syst_JES_EtaIntercalibration_Stat168: 0.0035032429361949763 - syst_JES_EtaIntercalibration_Stat169: 2.0741308420637303e-05 - syst_JES_EtaIntercalibration_Stat17: 0.02221647109691366 + syst_JES_EtaIntercalibration_Stat159: 1.92397375e-02 + syst_JES_EtaIntercalibration_Stat16: 1.13448689e-02 + syst_JES_EtaIntercalibration_Stat160: 4.25386656e-01 + syst_JES_EtaIntercalibration_Stat161: 8.20390675e-01 + syst_JES_EtaIntercalibration_Stat162: 3.42700424e-01 + syst_JES_EtaIntercalibration_Stat163: 3.34797791e-03 + syst_JES_EtaIntercalibration_Stat164: 1.68391647e-04 + syst_JES_EtaIntercalibration_Stat165: 4.75212844e-03 + syst_JES_EtaIntercalibration_Stat166: 1.91632043e-02 + syst_JES_EtaIntercalibration_Stat167: 5.40441680e-03 + syst_JES_EtaIntercalibration_Stat168: 3.50324294e-03 + syst_JES_EtaIntercalibration_Stat169: 2.07413084e-05 + syst_JES_EtaIntercalibration_Stat17: 2.22164711e-02 syst_JES_EtaIntercalibration_Stat170: 0.0 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 syst_JES_EtaIntercalibration_Stat175: 0.0 - syst_JES_EtaIntercalibration_Stat176: 5.826618916661703e-16 - syst_JES_EtaIntercalibration_Stat177: 9.570446737221831e-05 - syst_JES_EtaIntercalibration_Stat178: 0.008957519299448928 - syst_JES_EtaIntercalibration_Stat179: 0.006961212017314226 - syst_JES_EtaIntercalibration_Stat18: 0.006748253329566104 - syst_JES_EtaIntercalibration_Stat180: 0.0037806692635034868 - syst_JES_EtaIntercalibration_Stat181: 6.605175754663913e-05 - syst_JES_EtaIntercalibration_Stat182: 0.0011471750291476884 - syst_JES_EtaIntercalibration_Stat183: 0.002767782641393648 - syst_JES_EtaIntercalibration_Stat184: 0.0005837907844425089 - syst_JES_EtaIntercalibration_Stat185: 5.6664864554677975e-05 - syst_JES_EtaIntercalibration_Stat186: 2.3235461583536488e-36 + syst_JES_EtaIntercalibration_Stat176: 5.82661892e-16 + syst_JES_EtaIntercalibration_Stat177: 9.57044674e-05 + syst_JES_EtaIntercalibration_Stat178: 8.95751930e-03 + syst_JES_EtaIntercalibration_Stat179: 6.96121202e-03 + syst_JES_EtaIntercalibration_Stat18: 6.74825333e-03 + syst_JES_EtaIntercalibration_Stat180: 3.78066926e-03 + syst_JES_EtaIntercalibration_Stat181: 6.60517575e-05 + syst_JES_EtaIntercalibration_Stat182: 1.14717503e-03 + syst_JES_EtaIntercalibration_Stat183: 2.76778264e-03 + syst_JES_EtaIntercalibration_Stat184: 5.83790784e-04 + syst_JES_EtaIntercalibration_Stat185: 5.66648646e-05 + syst_JES_EtaIntercalibration_Stat186: 2.32354616e-36 syst_JES_EtaIntercalibration_Stat187: 0.0 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 @@ -44603,17 +44603,17 @@ bins: syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 syst_JES_EtaIntercalibration_Stat192: 0.0 - syst_JES_EtaIntercalibration_Stat193: 1.1593407914306301e-14 - syst_JES_EtaIntercalibration_Stat194: 5.436054803504101e-06 - syst_JES_EtaIntercalibration_Stat195: 0.00047430999093419913 - syst_JES_EtaIntercalibration_Stat196: 0.0023852925921152737 - syst_JES_EtaIntercalibration_Stat197: 0.0006421493809854527 - syst_JES_EtaIntercalibration_Stat198: 7.76202525118284e-06 - syst_JES_EtaIntercalibration_Stat199: 4.631663281155054e-06 + syst_JES_EtaIntercalibration_Stat193: 1.15934079e-14 + syst_JES_EtaIntercalibration_Stat194: 5.43605480e-06 + syst_JES_EtaIntercalibration_Stat195: 4.74309991e-04 + syst_JES_EtaIntercalibration_Stat196: 2.38529259e-03 + syst_JES_EtaIntercalibration_Stat197: 6.42149381e-04 + syst_JES_EtaIntercalibration_Stat198: 7.76202525e-06 + syst_JES_EtaIntercalibration_Stat199: 4.63166328e-06 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 1.0974273916756415e-11 - syst_JES_EtaIntercalibration_Stat201: 2.3235461583536488e-36 + syst_JES_EtaIntercalibration_Stat200: 1.09742739e-11 + syst_JES_EtaIntercalibration_Stat201: 2.32354616e-36 syst_JES_EtaIntercalibration_Stat202: 0.0 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 @@ -44623,11 +44623,11 @@ bins: syst_JES_EtaIntercalibration_Stat208: 0.0 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 6.217416565584133e-08 - syst_JES_EtaIntercalibration_Stat211: 8.968896253162927e-06 - syst_JES_EtaIntercalibration_Stat212: 6.304661852753544e-21 - syst_JES_EtaIntercalibration_Stat213: 2.406684597116955e-35 - syst_JES_EtaIntercalibration_Stat214: 2.3235461583536488e-36 + syst_JES_EtaIntercalibration_Stat210: 6.21741657e-08 + syst_JES_EtaIntercalibration_Stat211: 8.96889625e-06 + syst_JES_EtaIntercalibration_Stat212: 6.30466185e-21 + syst_JES_EtaIntercalibration_Stat213: 2.40668460e-35 + syst_JES_EtaIntercalibration_Stat214: 2.32354616e-36 syst_JES_EtaIntercalibration_Stat215: 0.0 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 @@ -44637,7 +44637,7 @@ bins: syst_JES_EtaIntercalibration_Stat220: 0.0 syst_JES_EtaIntercalibration_Stat221: 0.0 syst_JES_EtaIntercalibration_Stat222: 0.0 - syst_JES_EtaIntercalibration_Stat223: 8.134576617713348e-16 + syst_JES_EtaIntercalibration_Stat223: 8.13457662e-16 syst_JES_EtaIntercalibration_Stat224: 0.0 syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 @@ -44650,131 +44650,131 @@ bins: syst_JES_EtaIntercalibration_Stat232: 0.0 syst_JES_EtaIntercalibration_Stat233: 0.0 syst_JES_EtaIntercalibration_Stat234: 0.0 - syst_JES_EtaIntercalibration_Stat235: 2.0516141815653354e-36 + syst_JES_EtaIntercalibration_Stat235: 2.05161418e-36 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 syst_JES_EtaIntercalibration_Stat239: 0.0 - syst_JES_EtaIntercalibration_Stat24: 0.01895729608884136 + syst_JES_EtaIntercalibration_Stat24: 1.89572961e-02 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 syst_JES_EtaIntercalibration_Stat243: 0.0 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 - syst_JES_EtaIntercalibration_Stat25: 0.12593768727033225 - syst_JES_EtaIntercalibration_Stat26: 0.2076787933323959 - syst_JES_EtaIntercalibration_Stat27: 0.11009535726814278 - syst_JES_EtaIntercalibration_Stat28: 0.03099348426685841 + syst_JES_EtaIntercalibration_Stat25: 1.25937687e-01 + syst_JES_EtaIntercalibration_Stat26: 2.07678793e-01 + syst_JES_EtaIntercalibration_Stat27: 1.10095357e-01 + syst_JES_EtaIntercalibration_Stat28: 3.09934843e-02 syst_JES_EtaIntercalibration_Stat29: 0.0 - syst_JES_EtaIntercalibration_Stat3: 0.009929477377989236 + syst_JES_EtaIntercalibration_Stat3: 9.92947738e-03 syst_JES_EtaIntercalibration_Stat30: 0.0 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 0.02716721691671784 - syst_JES_EtaIntercalibration_Stat36: 0.02716721691671784 - syst_JES_EtaIntercalibration_Stat37: 0.009504269093412707 - syst_JES_EtaIntercalibration_Stat38: 0.1325003417467291 - syst_JES_EtaIntercalibration_Stat39: 0.1414611384329633 - syst_JES_EtaIntercalibration_Stat4: 0.02538282826538445 - syst_JES_EtaIntercalibration_Stat40: 0.11004960824555443 + syst_JES_EtaIntercalibration_Stat35: 2.71672169e-02 + syst_JES_EtaIntercalibration_Stat36: 2.71672169e-02 + syst_JES_EtaIntercalibration_Stat37: 9.50426909e-03 + syst_JES_EtaIntercalibration_Stat38: 1.32500342e-01 + syst_JES_EtaIntercalibration_Stat39: 1.41461138e-01 + syst_JES_EtaIntercalibration_Stat4: 2.53828283e-02 + syst_JES_EtaIntercalibration_Stat40: 1.10049608e-01 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 syst_JES_EtaIntercalibration_Stat44: 0.0 syst_JES_EtaIntercalibration_Stat45: 0.0 - syst_JES_EtaIntercalibration_Stat46: 0.03761639536159732 - syst_JES_EtaIntercalibration_Stat47: 0.18326590190212688 - syst_JES_EtaIntercalibration_Stat48: 0.6891430239797831 - syst_JES_EtaIntercalibration_Stat49: 0.4478532879191577 - syst_JES_EtaIntercalibration_Stat5: 0.029902957913892067 - syst_JES_EtaIntercalibration_Stat50: 0.06195298055783918 + syst_JES_EtaIntercalibration_Stat46: 3.76163954e-02 + syst_JES_EtaIntercalibration_Stat47: 1.83265902e-01 + syst_JES_EtaIntercalibration_Stat48: 6.89143024e-01 + syst_JES_EtaIntercalibration_Stat49: 4.47853288e-01 + syst_JES_EtaIntercalibration_Stat5: 2.99029579e-02 + syst_JES_EtaIntercalibration_Stat50: 6.19529806e-02 syst_JES_EtaIntercalibration_Stat51: 0.0 syst_JES_EtaIntercalibration_Stat52: 0.0 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 0.05377151732097579 - syst_JES_EtaIntercalibration_Stat57: 0.02716721691671784 - syst_JES_EtaIntercalibration_Stat58: 0.02716721691671784 - syst_JES_EtaIntercalibration_Stat59: 0.03729342905593424 + syst_JES_EtaIntercalibration_Stat56: 5.37715173e-02 + syst_JES_EtaIntercalibration_Stat57: 2.71672169e-02 + syst_JES_EtaIntercalibration_Stat58: 2.71672169e-02 + syst_JES_EtaIntercalibration_Stat59: 3.72934291e-02 syst_JES_EtaIntercalibration_Stat6: 0.0 - syst_JES_EtaIntercalibration_Stat60: 0.6721227175895782 - syst_JES_EtaIntercalibration_Stat61: 1.015556921102899 - syst_JES_EtaIntercalibration_Stat62: 0.11465267931888902 - syst_JES_EtaIntercalibration_Stat63: 0.005737770705378528 + syst_JES_EtaIntercalibration_Stat60: 6.72122718e-01 + syst_JES_EtaIntercalibration_Stat61: 1.01555692e+00 + syst_JES_EtaIntercalibration_Stat62: 1.14652679e-01 + syst_JES_EtaIntercalibration_Stat63: 5.73777071e-03 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 0.0633857531311256 - syst_JES_EtaIntercalibration_Stat69: 2.6552169402894368 + syst_JES_EtaIntercalibration_Stat68: 6.33857531e-02 + syst_JES_EtaIntercalibration_Stat69: 2.65521694e+00 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 5.225183920207977 - syst_JES_EtaIntercalibration_Stat71: 2.2575249168060143 - syst_JES_EtaIntercalibration_Stat72: 0.37751229119063134 + syst_JES_EtaIntercalibration_Stat70: 5.22518392e+00 + syst_JES_EtaIntercalibration_Stat71: 2.25752492e+00 + syst_JES_EtaIntercalibration_Stat72: 3.77512291e-01 syst_JES_EtaIntercalibration_Stat73: 0.0 syst_JES_EtaIntercalibration_Stat74: 0.0 syst_JES_EtaIntercalibration_Stat75: 0.0 - syst_JES_EtaIntercalibration_Stat76: 0.031765811810813206 - syst_JES_EtaIntercalibration_Stat77: 0.05377151732097579 - syst_JES_EtaIntercalibration_Stat78: 0.05377151732097579 - syst_JES_EtaIntercalibration_Stat79: 0.02716721691671784 + syst_JES_EtaIntercalibration_Stat76: 3.17658118e-02 + syst_JES_EtaIntercalibration_Stat77: 5.37715173e-02 + syst_JES_EtaIntercalibration_Stat78: 5.37715173e-02 + syst_JES_EtaIntercalibration_Stat79: 2.71672169e-02 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 0.027219178440944906 - syst_JES_EtaIntercalibration_Stat81: 0.2283566235080559 - syst_JES_EtaIntercalibration_Stat82: 2.5964410257119264 - syst_JES_EtaIntercalibration_Stat83: 5.843954825287409 - syst_JES_EtaIntercalibration_Stat84: 2.409572731834422 - syst_JES_EtaIntercalibration_Stat85: 0.03911430596022382 + syst_JES_EtaIntercalibration_Stat80: 2.72191784e-02 + syst_JES_EtaIntercalibration_Stat81: 2.28356624e-01 + syst_JES_EtaIntercalibration_Stat82: 2.59644103e+00 + syst_JES_EtaIntercalibration_Stat83: 5.84395483e+00 + syst_JES_EtaIntercalibration_Stat84: 2.40957273e+00 + syst_JES_EtaIntercalibration_Stat85: 3.91143060e-02 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 0.10349374473851063 + syst_JES_EtaIntercalibration_Stat89: 1.03493745e-01 syst_JES_EtaIntercalibration_Stat9: 0.0 - syst_JES_EtaIntercalibration_Stat90: 2.944066575334192 - syst_JES_EtaIntercalibration_Stat91: 7.434601721006983 - syst_JES_EtaIntercalibration_Stat92: 3.213061001599565 - syst_JES_EtaIntercalibration_Stat93: 0.4714381779989822 + syst_JES_EtaIntercalibration_Stat90: 2.94406658e+00 + syst_JES_EtaIntercalibration_Stat91: 7.43460172e+00 + syst_JES_EtaIntercalibration_Stat92: 3.21306100e+00 + syst_JES_EtaIntercalibration_Stat93: 4.71438178e-01 syst_JES_EtaIntercalibration_Stat94: 0.0 syst_JES_EtaIntercalibration_Stat95: 0.0 - syst_JES_EtaIntercalibration_Stat96: 0.0385727714845589 - syst_JES_EtaIntercalibration_Stat97: 0.031765811810813206 - syst_JES_EtaIntercalibration_Stat98: 0.05377151732097579 - syst_JES_EtaIntercalibration_Stat99: 0.05377151732097579 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0031493941905547484 - syst_JES_Flavour_Comp: 8.86325995331289 - syst_JES_Flavour_Response: 118.55250925539282 - syst_JES_Gjet_Generator: 68.76178446637347 - syst_JES_Gjet_OOC: 41.967440057740006 - syst_JES_Gjet_Purity: 18.2251659800398 - syst_JES_Gjet_Stat1: 0.1431539992455677 - syst_JES_Gjet_Stat10: 0.5081156831864178 - syst_JES_Gjet_Stat11: 0.2695803188291015 - syst_JES_Gjet_Stat12: 0.005820556738835213 - syst_JES_Gjet_Stat13: 0.0004418157267422132 - syst_JES_Gjet_Stat14: 1.1627257089344446e-10 + syst_JES_EtaIntercalibration_Stat96: 3.85727715e-02 + syst_JES_EtaIntercalibration_Stat97: 3.17658118e-02 + syst_JES_EtaIntercalibration_Stat98: 5.37715173e-02 + syst_JES_EtaIntercalibration_Stat99: 5.37715173e-02 + syst_JES_EtaIntercalibration_TotalStat_MJB: 3.14939419e-03 + syst_JES_Flavour_Comp: 8.86325995e+00 + syst_JES_Flavour_Response: 1.18552509e+02 + syst_JES_Gjet_Generator: 6.87617845e+01 + syst_JES_Gjet_OOC: 4.19674401e+01 + syst_JES_Gjet_Purity: 1.82251660e+01 + syst_JES_Gjet_Stat1: 1.43153999e-01 + syst_JES_Gjet_Stat10: 5.08115683e-01 + syst_JES_Gjet_Stat11: 2.69580319e-01 + syst_JES_Gjet_Stat12: 5.82055674e-03 + syst_JES_Gjet_Stat13: 4.41815727e-04 + syst_JES_Gjet_Stat14: 1.16272571e-10 syst_JES_Gjet_Stat15: 0.0 syst_JES_Gjet_Stat2: 0.0 - syst_JES_Gjet_Stat3: 0.803671574711959 - syst_JES_Gjet_Stat4: 1.3166691944068563 - syst_JES_Gjet_Stat5: 1.5876397576276553 - syst_JES_Gjet_Stat6: 4.245500529972879 - syst_JES_Gjet_Stat7: 6.620789756516967 - syst_JES_Gjet_Stat8: 2.318019143579276 - syst_JES_Gjet_Stat9: 0.7188531891144394 - syst_JES_Gjet_Veto: 13.850092382363377 - syst_JES_Gjet_dPhi: 7.857022527650026 - syst_JES_LArESZee: 43.67505364335572 - syst_JES_LArEsmear: 4.383225153924904 - syst_JES_LAr_JVT: 7.431427773315165 + syst_JES_Gjet_Stat3: 8.03671575e-01 + syst_JES_Gjet_Stat4: 1.31666919e+00 + syst_JES_Gjet_Stat5: 1.58763976e+00 + syst_JES_Gjet_Stat6: 4.24550053e+00 + syst_JES_Gjet_Stat7: 6.62078976e+00 + syst_JES_Gjet_Stat8: 2.31801914e+00 + syst_JES_Gjet_Stat9: 7.18853189e-01 + syst_JES_Gjet_Veto: 1.38500924e+01 + syst_JES_Gjet_dPhi: 7.85702253e+00 + syst_JES_LArESZee: 4.36750536e+01 + syst_JES_LArEsmear: 4.38322515e+00 + syst_JES_LAr_JVT: 7.43142777e+00 syst_JES_MJB_Alpha: 0.0 - syst_JES_MJB_Asym: 0.0009201519915209662 + syst_JES_MJB_Asym: 9.20151992e-04 syst_JES_MJB_Beta: 0.0 - syst_JES_MJB_Fragmentation: 0.005622049520192792 - syst_JES_MJB_Stat1: 4.816833295849048e-26 + syst_JES_MJB_Fragmentation: 5.62204952e-03 + syst_JES_MJB_Stat1: 4.81683330e-26 syst_JES_MJB_Stat10: 0.0 syst_JES_MJB_Stat11: 0.0 syst_JES_MJB_Stat12: 0.0 @@ -44782,157 +44782,157 @@ bins: syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 4.649690392918651e-05 - syst_JES_MJB_Stat3: 2.7868697493783236e-08 + syst_JES_MJB_Stat2: 4.64969039e-05 + syst_JES_MJB_Stat3: 2.78686975e-08 syst_JES_MJB_Stat4: 0.0 - syst_JES_MJB_Stat5: 7.155967911470816e-35 + syst_JES_MJB_Stat5: 7.15596791e-35 syst_JES_MJB_Stat6: 0.0 syst_JES_MJB_Stat7: 0.0 syst_JES_MJB_Stat8: 0.0 syst_JES_MJB_Stat9: 0.0 - syst_JES_MJB_Threshold: 0.001048171608468766 - syst_JES_Pileup_MuOffset: 2.1598673570383894e-18 - syst_JES_Pileup_NPVOffset: 4.816708731073533 - syst_JES_Pileup_Pt_term: 23.946930387838854 - syst_JES_Pileup_Rho_topology: 34.77807786522998 - syst_JES_PunchThrough_MC15: 9.892608187429642e-26 + syst_JES_MJB_Threshold: 1.04817161e-03 + syst_JES_Pileup_MuOffset: 2.15986736e-18 + syst_JES_Pileup_NPVOffset: 4.81670873e+00 + syst_JES_Pileup_Pt_term: 2.39469304e+01 + syst_JES_Pileup_Rho_topology: 3.47780779e+01 + syst_JES_PunchThrough_MC15: 9.89260819e-26 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 62.306717830022144 - syst_JES_Zjet_MuScale: 4.525548889361378 - syst_JES_Zjet_MuSmearID: 0.777079307406908 - syst_JES_Zjet_MuSmearMS: 2.3256536178029608 - syst_JES_Zjet_OOC: 38.35013307669219 - syst_JES_Zjet_Stat1: 1.1678488461697427 - syst_JES_Zjet_Stat10: 4.115924926429053 - syst_JES_Zjet_Stat11: 0.5633492056442433 - syst_JES_Zjet_Stat12: 0.5783392149076526 - syst_JES_Zjet_Stat13: 0.008834481011921415 - syst_JES_Zjet_Stat2: 0.028985870264663798 - syst_JES_Zjet_Stat3: 3.3784517027034735e-26 - syst_JES_Zjet_Stat4: 0.4663557357854624 - syst_JES_Zjet_Stat5: 1.0420937481819954 - syst_JES_Zjet_Stat6: 1.7677162526831052 - syst_JES_Zjet_Stat7: 2.805520406270466 - syst_JES_Zjet_Stat8: 4.917866508965041 - syst_JES_Zjet_Stat9: 7.246571102942412 - syst_JES_Zjet_Veto: 5.751797523383451 - syst_JES_Zjet_dPhi: 8.625046825959846 + syst_JES_Zjet_MC: 6.23067178e+01 + syst_JES_Zjet_MuScale: 4.52554889e+00 + syst_JES_Zjet_MuSmearID: 7.77079307e-01 + syst_JES_Zjet_MuSmearMS: 2.32565362e+00 + syst_JES_Zjet_OOC: 3.83501331e+01 + syst_JES_Zjet_Stat1: 1.16784885e+00 + syst_JES_Zjet_Stat10: 4.11592493e+00 + syst_JES_Zjet_Stat11: 5.63349206e-01 + syst_JES_Zjet_Stat12: 5.78339215e-01 + syst_JES_Zjet_Stat13: 8.83448101e-03 + syst_JES_Zjet_Stat2: 2.89858703e-02 + syst_JES_Zjet_Stat3: 3.37845170e-26 + syst_JES_Zjet_Stat4: 4.66355736e-01 + syst_JES_Zjet_Stat5: 1.04209375e+00 + syst_JES_Zjet_Stat6: 1.76771625e+00 + syst_JES_Zjet_Stat7: 2.80552041e+00 + syst_JES_Zjet_Stat8: 4.91786651e+00 + syst_JES_Zjet_Stat9: 7.24657110e+00 + syst_JES_Zjet_Veto: 5.75179752e+00 + syst_JES_Zjet_dPhi: 8.62504683e+00 syst_PRW: 0.0 syst_Unfolding_bias: 0.0 - syst_cleaning: 26.153967194290047 + syst_cleaning: 2.61539672e+01 syst_lumi: 63.988 - stat: 13.501 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 33.45914934662865 - syst_JER_NP1: 6.533234114892868 - syst_JER_NP2: 3.7814965291535048 - syst_JER_NP3: 8.548145105810967 - syst_JER_NP4: 0.09008302947836513 - syst_JER_NP5: 3.2440642333344756 - syst_JER_NP6: 2.033830376408023 - syst_JER_NP7: 1.9270419689254306 - syst_JER_NP8: 2.353494582530412 - syst_JES_EtaIntercalibration_Modelling: 37.91699139897574 - syst_JES_EtaIntercalibration_NonClosure: 89.42734350298012 + syst_JER_NP0: 3.34591493e+01 + syst_JER_NP1: 6.53323411e+00 + syst_JER_NP2: 3.78149653e+00 + syst_JER_NP3: 8.54814511e+00 + syst_JER_NP4: 9.00830295e-02 + syst_JER_NP5: 3.24406423e+00 + syst_JER_NP6: 2.03383038e+00 + syst_JER_NP7: 1.92704197e+00 + syst_JER_NP8: 2.35349458e+00 + syst_JES_EtaIntercalibration_Modelling: 3.79169914e+01 + syst_JES_EtaIntercalibration_NonClosure: 8.94273435e+01 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 0.005720097791996217 + syst_JES_EtaIntercalibration_Stat100: 5.72009779e-03 syst_JES_EtaIntercalibration_Stat101: 0.0 - syst_JES_EtaIntercalibration_Stat102: 0.11547229711060572 - syst_JES_EtaIntercalibration_Stat103: 1.1926983136988165 - syst_JES_EtaIntercalibration_Stat104: 2.3576125635905494 - syst_JES_EtaIntercalibration_Stat105: 1.0346376986655763 - syst_JES_EtaIntercalibration_Stat106: 0.0034398424382520772 + syst_JES_EtaIntercalibration_Stat102: 1.15472297e-01 + syst_JES_EtaIntercalibration_Stat103: 1.19269831e+00 + syst_JES_EtaIntercalibration_Stat104: 2.35761256e+00 + syst_JES_EtaIntercalibration_Stat105: 1.03463770e+00 + syst_JES_EtaIntercalibration_Stat106: 3.43984244e-03 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 0.04018099550782683 + syst_JES_EtaIntercalibration_Stat109: 4.01809955e-02 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 1.7313320738668248 - syst_JES_EtaIntercalibration_Stat111: 4.503267563669741 - syst_JES_EtaIntercalibration_Stat112: 2.6947212750115734 - syst_JES_EtaIntercalibration_Stat113: 0.35552671840524164 - syst_JES_EtaIntercalibration_Stat114: 0.0003326923191178299 + syst_JES_EtaIntercalibration_Stat110: 1.73133207e+00 + syst_JES_EtaIntercalibration_Stat111: 4.50326756e+00 + syst_JES_EtaIntercalibration_Stat112: 2.69472128e+00 + syst_JES_EtaIntercalibration_Stat113: 3.55526718e-01 + syst_JES_EtaIntercalibration_Stat114: 3.32692319e-04 syst_JES_EtaIntercalibration_Stat115: 0.0 - syst_JES_EtaIntercalibration_Stat116: 0.0015978168699822895 - syst_JES_EtaIntercalibration_Stat117: 0.010346405499012687 - syst_JES_EtaIntercalibration_Stat118: 0.005720097791996217 - syst_JES_EtaIntercalibration_Stat119: 0.005720097791996217 + syst_JES_EtaIntercalibration_Stat116: 1.59781687e-03 + syst_JES_EtaIntercalibration_Stat117: 1.03464055e-02 + syst_JES_EtaIntercalibration_Stat118: 5.72009779e-03 + syst_JES_EtaIntercalibration_Stat119: 5.72009779e-03 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 0.005720097791996217 - syst_JES_EtaIntercalibration_Stat121: 0.002011777012991251 - syst_JES_EtaIntercalibration_Stat122: 0.2248719802465394 - syst_JES_EtaIntercalibration_Stat123: 2.5899034731047412 - syst_JES_EtaIntercalibration_Stat124: 4.829314961772529 - syst_JES_EtaIntercalibration_Stat125: 1.7228999586453069 - syst_JES_EtaIntercalibration_Stat126: 0.04209476804485327 + syst_JES_EtaIntercalibration_Stat120: 5.72009779e-03 + syst_JES_EtaIntercalibration_Stat121: 2.01177701e-03 + syst_JES_EtaIntercalibration_Stat122: 2.24871980e-01 + syst_JES_EtaIntercalibration_Stat123: 2.58990347e+00 + syst_JES_EtaIntercalibration_Stat124: 4.82931496e+00 + syst_JES_EtaIntercalibration_Stat125: 1.72289996e+00 + syst_JES_EtaIntercalibration_Stat126: 4.20947680e-02 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 0.039333671793388425 - syst_JES_EtaIntercalibration_Stat129: 0.8860873207534345 + syst_JES_EtaIntercalibration_Stat128: 3.93336718e-02 + syst_JES_EtaIntercalibration_Stat129: 8.86087321e-01 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 4.551572777623137 - syst_JES_EtaIntercalibration_Stat131: 1.12354365625017 - syst_JES_EtaIntercalibration_Stat132: 0.2702352817453709 - syst_JES_EtaIntercalibration_Stat133: 0.0018653092719439317 + syst_JES_EtaIntercalibration_Stat130: 4.55157278e+00 + syst_JES_EtaIntercalibration_Stat131: 1.12354366e+00 + syst_JES_EtaIntercalibration_Stat132: 2.70235282e-01 + syst_JES_EtaIntercalibration_Stat133: 1.86530927e-03 syst_JES_EtaIntercalibration_Stat134: 0.0 - syst_JES_EtaIntercalibration_Stat135: 0.0015978168699822895 - syst_JES_EtaIntercalibration_Stat136: 0.0015978168699822895 - syst_JES_EtaIntercalibration_Stat137: 0.005720097791996217 - syst_JES_EtaIntercalibration_Stat138: 0.005720097791996217 - syst_JES_EtaIntercalibration_Stat139: 0.005720097791996217 + syst_JES_EtaIntercalibration_Stat135: 1.59781687e-03 + syst_JES_EtaIntercalibration_Stat136: 1.59781687e-03 + syst_JES_EtaIntercalibration_Stat137: 5.72009779e-03 + syst_JES_EtaIntercalibration_Stat138: 5.72009779e-03 + syst_JES_EtaIntercalibration_Stat139: 5.72009779e-03 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 0.014150855097837728 - syst_JES_EtaIntercalibration_Stat141: 0.18608173150527166 - syst_JES_EtaIntercalibration_Stat142: 0.9592921387669139 - syst_JES_EtaIntercalibration_Stat143: 2.3166814088259957 - syst_JES_EtaIntercalibration_Stat144: 1.2999748728340867 - syst_JES_EtaIntercalibration_Stat145: 0.02161537024318575 - syst_JES_EtaIntercalibration_Stat146: 0.016794770704001885 - syst_JES_EtaIntercalibration_Stat147: 0.32941934248006743 - syst_JES_EtaIntercalibration_Stat148: 0.5600157775232765 - syst_JES_EtaIntercalibration_Stat149: 0.09928635757242785 + syst_JES_EtaIntercalibration_Stat140: 1.41508551e-02 + syst_JES_EtaIntercalibration_Stat141: 1.86081732e-01 + syst_JES_EtaIntercalibration_Stat142: 9.59292139e-01 + syst_JES_EtaIntercalibration_Stat143: 2.31668141e+00 + syst_JES_EtaIntercalibration_Stat144: 1.29997487e+00 + syst_JES_EtaIntercalibration_Stat145: 2.16153702e-02 + syst_JES_EtaIntercalibration_Stat146: 1.67947707e-02 + syst_JES_EtaIntercalibration_Stat147: 3.29419342e-01 + syst_JES_EtaIntercalibration_Stat148: 5.60015778e-01 + syst_JES_EtaIntercalibration_Stat149: 9.92863576e-02 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 0.018026298309691872 - syst_JES_EtaIntercalibration_Stat151: 0.00033133265923388834 + syst_JES_EtaIntercalibration_Stat150: 1.80262983e-02 + syst_JES_EtaIntercalibration_Stat151: 3.31332659e-04 syst_JES_EtaIntercalibration_Stat152: 0.0 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 0.005720097791996217 + syst_JES_EtaIntercalibration_Stat156: 5.72009779e-03 syst_JES_EtaIntercalibration_Stat157: 0.0 syst_JES_EtaIntercalibration_Stat158: 0.0 - syst_JES_EtaIntercalibration_Stat159: 0.05306049943225186 - syst_JES_EtaIntercalibration_Stat16: 0.0016902502499630044 - syst_JES_EtaIntercalibration_Stat160: 0.3181964782960365 - syst_JES_EtaIntercalibration_Stat161: 0.7210678400816389 - syst_JES_EtaIntercalibration_Stat162: 0.19955482329425164 - syst_JES_EtaIntercalibration_Stat163: 0.0037886441836097514 - syst_JES_EtaIntercalibration_Stat164: 0.0017507362758279728 - syst_JES_EtaIntercalibration_Stat165: 0.05182790368131824 - syst_JES_EtaIntercalibration_Stat166: 0.10181217154643153 - syst_JES_EtaIntercalibration_Stat167: 0.03245149149114721 - syst_JES_EtaIntercalibration_Stat168: 0.007802200122401373 - syst_JES_EtaIntercalibration_Stat169: 0.00033133265923388834 - syst_JES_EtaIntercalibration_Stat17: 0.004312155350575858 + syst_JES_EtaIntercalibration_Stat159: 5.30604994e-02 + syst_JES_EtaIntercalibration_Stat16: 1.69025025e-03 + syst_JES_EtaIntercalibration_Stat160: 3.18196478e-01 + syst_JES_EtaIntercalibration_Stat161: 7.21067840e-01 + syst_JES_EtaIntercalibration_Stat162: 1.99554823e-01 + syst_JES_EtaIntercalibration_Stat163: 3.78864418e-03 + syst_JES_EtaIntercalibration_Stat164: 1.75073628e-03 + syst_JES_EtaIntercalibration_Stat165: 5.18279037e-02 + syst_JES_EtaIntercalibration_Stat166: 1.01812172e-01 + syst_JES_EtaIntercalibration_Stat167: 3.24514915e-02 + syst_JES_EtaIntercalibration_Stat168: 7.80220012e-03 + syst_JES_EtaIntercalibration_Stat169: 3.31332659e-04 + syst_JES_EtaIntercalibration_Stat17: 4.31215535e-03 syst_JES_EtaIntercalibration_Stat170: 0.0 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 syst_JES_EtaIntercalibration_Stat175: 0.0 - syst_JES_EtaIntercalibration_Stat176: 2.7963960288199523e-11 - syst_JES_EtaIntercalibration_Stat177: 0.0017034719692439909 - syst_JES_EtaIntercalibration_Stat178: 0.05502653428119929 - syst_JES_EtaIntercalibration_Stat179: 0.07938430071493985 - syst_JES_EtaIntercalibration_Stat18: 0.0010179583623606617 - syst_JES_EtaIntercalibration_Stat180: 0.02569829602814163 - syst_JES_EtaIntercalibration_Stat181: 0.0011754562805566186 - syst_JES_EtaIntercalibration_Stat182: 0.001056775652633992 - syst_JES_EtaIntercalibration_Stat183: 0.00460169364120429 - syst_JES_EtaIntercalibration_Stat184: 0.0013832700495564848 - syst_JES_EtaIntercalibration_Stat185: 0.0010083732976928733 - syst_JES_EtaIntercalibration_Stat186: 6.619898186528248e-26 + syst_JES_EtaIntercalibration_Stat176: 2.79639603e-11 + syst_JES_EtaIntercalibration_Stat177: 1.70347197e-03 + syst_JES_EtaIntercalibration_Stat178: 5.50265343e-02 + syst_JES_EtaIntercalibration_Stat179: 7.93843007e-02 + syst_JES_EtaIntercalibration_Stat18: 1.01795836e-03 + syst_JES_EtaIntercalibration_Stat180: 2.56982960e-02 + syst_JES_EtaIntercalibration_Stat181: 1.17545628e-03 + syst_JES_EtaIntercalibration_Stat182: 1.05677565e-03 + syst_JES_EtaIntercalibration_Stat183: 4.60169364e-03 + syst_JES_EtaIntercalibration_Stat184: 1.38327005e-03 + syst_JES_EtaIntercalibration_Stat185: 1.00837330e-03 + syst_JES_EtaIntercalibration_Stat186: 6.61989819e-26 syst_JES_EtaIntercalibration_Stat187: 0.0 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 @@ -44940,31 +44940,31 @@ bins: syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 syst_JES_EtaIntercalibration_Stat192: 0.0 - syst_JES_EtaIntercalibration_Stat193: 5.561307379339861e-10 - syst_JES_EtaIntercalibration_Stat194: 9.464928595610218e-05 - syst_JES_EtaIntercalibration_Stat195: 0.0014630953591615278 - syst_JES_EtaIntercalibration_Stat196: 0.003862849207515095 - syst_JES_EtaIntercalibration_Stat197: 0.00158355390419777 - syst_JES_EtaIntercalibration_Stat198: 0.00014188382809538232 - syst_JES_EtaIntercalibration_Stat199: 8.197003049895737e-05 + syst_JES_EtaIntercalibration_Stat193: 5.56130738e-10 + syst_JES_EtaIntercalibration_Stat194: 9.46492860e-05 + syst_JES_EtaIntercalibration_Stat195: 1.46309536e-03 + syst_JES_EtaIntercalibration_Stat196: 3.86284921e-03 + syst_JES_EtaIntercalibration_Stat197: 1.58355390e-03 + syst_JES_EtaIntercalibration_Stat198: 1.41883828e-04 + syst_JES_EtaIntercalibration_Stat199: 8.19700305e-05 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 2.1633314587777735e-08 - syst_JES_EtaIntercalibration_Stat201: 6.619898186528248e-26 + syst_JES_EtaIntercalibration_Stat200: 2.16333146e-08 + syst_JES_EtaIntercalibration_Stat201: 6.61989819e-26 syst_JES_EtaIntercalibration_Stat202: 0.0 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 syst_JES_EtaIntercalibration_Stat207: 0.0 - syst_JES_EtaIntercalibration_Stat208: 1.7874764334110814e-42 - syst_JES_EtaIntercalibration_Stat209: 2.019571241625311e-40 + syst_JES_EtaIntercalibration_Stat208: 1.78747643e-42 + syst_JES_EtaIntercalibration_Stat209: 2.01957124e-40 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 9.465369881837688e-06 - syst_JES_EtaIntercalibration_Stat211: 0.0001706472018522425 - syst_JES_EtaIntercalibration_Stat212: 1.2017326257422686e-14 - syst_JES_EtaIntercalibration_Stat213: 6.854591070953832e-25 - syst_JES_EtaIntercalibration_Stat214: 6.619898186528248e-26 + syst_JES_EtaIntercalibration_Stat210: 9.46536988e-06 + syst_JES_EtaIntercalibration_Stat211: 1.70647202e-04 + syst_JES_EtaIntercalibration_Stat212: 1.20173263e-14 + syst_JES_EtaIntercalibration_Stat213: 6.85459107e-25 + syst_JES_EtaIntercalibration_Stat214: 6.61989819e-26 syst_JES_EtaIntercalibration_Stat215: 0.0 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 @@ -44974,9 +44974,9 @@ bins: syst_JES_EtaIntercalibration_Stat220: 0.0 syst_JES_EtaIntercalibration_Stat221: 0.0 syst_JES_EtaIntercalibration_Stat222: 0.0 - syst_JES_EtaIntercalibration_Stat223: 3.9049084898631335e-11 - syst_JES_EtaIntercalibration_Stat224: 8.830861010814635e-33 - syst_JES_EtaIntercalibration_Stat225: 4.128e-42 + syst_JES_EtaIntercalibration_Stat223: 3.90490849e-11 + syst_JES_EtaIntercalibration_Stat224: 8.83086101e-33 + syst_JES_EtaIntercalibration_Stat225: 4.12800000e-42 syst_JES_EtaIntercalibration_Stat226: 0.0 syst_JES_EtaIntercalibration_Stat227: 0.0 syst_JES_EtaIntercalibration_Stat228: 0.0 @@ -44986,132 +44986,132 @@ bins: syst_JES_EtaIntercalibration_Stat231: 0.0 syst_JES_EtaIntercalibration_Stat232: 0.0 syst_JES_EtaIntercalibration_Stat233: 0.0 - syst_JES_EtaIntercalibration_Stat234: 3.574952866822163e-42 - syst_JES_EtaIntercalibration_Stat235: 5.845671475544961e-26 + syst_JES_EtaIntercalibration_Stat234: 3.57495287e-42 + syst_JES_EtaIntercalibration_Stat235: 5.84567148e-26 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 syst_JES_EtaIntercalibration_Stat239: 0.0 - syst_JES_EtaIntercalibration_Stat24: 0.004809905092618772 + syst_JES_EtaIntercalibration_Stat24: 4.80990509e-03 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 syst_JES_EtaIntercalibration_Stat243: 0.0 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 - syst_JES_EtaIntercalibration_Stat25: 0.02283583525952138 - syst_JES_EtaIntercalibration_Stat26: 0.0541665474878176 - syst_JES_EtaIntercalibration_Stat27: 0.008289415706188224 - syst_JES_EtaIntercalibration_Stat28: 0.001532673437983447 + syst_JES_EtaIntercalibration_Stat25: 2.28358353e-02 + syst_JES_EtaIntercalibration_Stat26: 5.41665475e-02 + syst_JES_EtaIntercalibration_Stat27: 8.28941571e-03 + syst_JES_EtaIntercalibration_Stat28: 1.53267344e-03 syst_JES_EtaIntercalibration_Stat29: 0.0 - syst_JES_EtaIntercalibration_Stat3: 0.0018084072411932 + syst_JES_EtaIntercalibration_Stat3: 1.80840724e-03 syst_JES_EtaIntercalibration_Stat30: 0.0 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 0.020308295718745085 - syst_JES_EtaIntercalibration_Stat36: 0.020308295718745085 - syst_JES_EtaIntercalibration_Stat37: 0.002721470742080466 - syst_JES_EtaIntercalibration_Stat38: 0.015686681508528182 - syst_JES_EtaIntercalibration_Stat39: 0.01682002378119603 - syst_JES_EtaIntercalibration_Stat4: 0.0022893026159728205 - syst_JES_EtaIntercalibration_Stat40: 0.02145895120922735 + syst_JES_EtaIntercalibration_Stat35: 2.03082957e-02 + syst_JES_EtaIntercalibration_Stat36: 2.03082957e-02 + syst_JES_EtaIntercalibration_Stat37: 2.72147074e-03 + syst_JES_EtaIntercalibration_Stat38: 1.56866815e-02 + syst_JES_EtaIntercalibration_Stat39: 1.68200238e-02 + syst_JES_EtaIntercalibration_Stat4: 2.28930262e-03 + syst_JES_EtaIntercalibration_Stat40: 2.14589512e-02 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 syst_JES_EtaIntercalibration_Stat44: 0.0 syst_JES_EtaIntercalibration_Stat45: 0.0 - syst_JES_EtaIntercalibration_Stat46: 0.006517130561067501 - syst_JES_EtaIntercalibration_Stat47: 0.05007408411543839 - syst_JES_EtaIntercalibration_Stat48: 0.15385611679423083 - syst_JES_EtaIntercalibration_Stat49: 0.11308216614479934 - syst_JES_EtaIntercalibration_Stat5: 0.0019785803673341147 - syst_JES_EtaIntercalibration_Stat50: 0.013687839886190956 + syst_JES_EtaIntercalibration_Stat46: 6.51713056e-03 + syst_JES_EtaIntercalibration_Stat47: 5.00740841e-02 + syst_JES_EtaIntercalibration_Stat48: 1.53856117e-01 + syst_JES_EtaIntercalibration_Stat49: 1.13082166e-01 + syst_JES_EtaIntercalibration_Stat5: 1.97858037e-03 + syst_JES_EtaIntercalibration_Stat50: 1.36878399e-02 syst_JES_EtaIntercalibration_Stat51: 0.0 syst_JES_EtaIntercalibration_Stat52: 0.0 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 0.005720097791996217 - syst_JES_EtaIntercalibration_Stat57: 0.020308295718745085 - syst_JES_EtaIntercalibration_Stat58: 0.020308295718745085 - syst_JES_EtaIntercalibration_Stat59: 0.018307576812620508 + syst_JES_EtaIntercalibration_Stat56: 5.72009779e-03 + syst_JES_EtaIntercalibration_Stat57: 2.03082957e-02 + syst_JES_EtaIntercalibration_Stat58: 2.03082957e-02 + syst_JES_EtaIntercalibration_Stat59: 1.83075768e-02 syst_JES_EtaIntercalibration_Stat6: 0.0 - syst_JES_EtaIntercalibration_Stat60: 0.13190869067275285 - syst_JES_EtaIntercalibration_Stat61: 0.20426208654569258 - syst_JES_EtaIntercalibration_Stat62: 0.06097258743689659 - syst_JES_EtaIntercalibration_Stat63: 0.0021052083390249053 + syst_JES_EtaIntercalibration_Stat60: 1.31908691e-01 + syst_JES_EtaIntercalibration_Stat61: 2.04262087e-01 + syst_JES_EtaIntercalibration_Stat62: 6.09725874e-02 + syst_JES_EtaIntercalibration_Stat63: 2.10520834e-03 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 0.01890671708018079 - syst_JES_EtaIntercalibration_Stat69: 0.6434972649514527 + syst_JES_EtaIntercalibration_Stat68: 1.89067171e-02 + syst_JES_EtaIntercalibration_Stat69: 6.43497265e-01 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 1.1435143724501236 - syst_JES_EtaIntercalibration_Stat71: 0.5593483440576186 - syst_JES_EtaIntercalibration_Stat72: 0.08475989794708344 + syst_JES_EtaIntercalibration_Stat70: 1.14351437e+00 + syst_JES_EtaIntercalibration_Stat71: 5.59348344e-01 + syst_JES_EtaIntercalibration_Stat72: 8.47598979e-02 syst_JES_EtaIntercalibration_Stat73: 0.0 syst_JES_EtaIntercalibration_Stat74: 0.0 syst_JES_EtaIntercalibration_Stat75: 0.0 - syst_JES_EtaIntercalibration_Stat76: 0.011513807743314113 - syst_JES_EtaIntercalibration_Stat77: 0.005720097791996217 - syst_JES_EtaIntercalibration_Stat78: 0.005720097791996217 - syst_JES_EtaIntercalibration_Stat79: 0.020308295718745085 + syst_JES_EtaIntercalibration_Stat76: 1.15138077e-02 + syst_JES_EtaIntercalibration_Stat77: 5.72009779e-03 + syst_JES_EtaIntercalibration_Stat78: 5.72009779e-03 + syst_JES_EtaIntercalibration_Stat79: 2.03082957e-02 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 0.02035159698893431 - syst_JES_EtaIntercalibration_Stat81: 0.0609716678056292 - syst_JES_EtaIntercalibration_Stat82: 0.6102082492887161 - syst_JES_EtaIntercalibration_Stat83: 1.4606163082753798 - syst_JES_EtaIntercalibration_Stat84: 0.5545758446777139 - syst_JES_EtaIntercalibration_Stat85: 0.0077022921750606165 + syst_JES_EtaIntercalibration_Stat80: 2.03515970e-02 + syst_JES_EtaIntercalibration_Stat81: 6.09716678e-02 + syst_JES_EtaIntercalibration_Stat82: 6.10208249e-01 + syst_JES_EtaIntercalibration_Stat83: 1.46061631e+00 + syst_JES_EtaIntercalibration_Stat84: 5.54575845e-01 + syst_JES_EtaIntercalibration_Stat85: 7.70229218e-03 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 0.037235749958876886 + syst_JES_EtaIntercalibration_Stat89: 3.72357500e-02 syst_JES_EtaIntercalibration_Stat9: 0.0 - syst_JES_EtaIntercalibration_Stat90: 0.955656852641156 - syst_JES_EtaIntercalibration_Stat91: 2.3769259033465895 - syst_JES_EtaIntercalibration_Stat92: 1.0593504094491115 - syst_JES_EtaIntercalibration_Stat93: 0.13843894349134567 + syst_JES_EtaIntercalibration_Stat90: 9.55656853e-01 + syst_JES_EtaIntercalibration_Stat91: 2.37692590e+00 + syst_JES_EtaIntercalibration_Stat92: 1.05935041e+00 + syst_JES_EtaIntercalibration_Stat93: 1.38438943e-01 syst_JES_EtaIntercalibration_Stat94: 0.0 syst_JES_EtaIntercalibration_Stat95: 0.0 - syst_JES_EtaIntercalibration_Stat96: 0.010346405499012687 - syst_JES_EtaIntercalibration_Stat97: 0.011513807743314113 - syst_JES_EtaIntercalibration_Stat98: 0.005720097791996217 - syst_JES_EtaIntercalibration_Stat99: 0.005720097791996217 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.012496948137445398 - syst_JES_Flavour_Comp: 3.853703770400626 - syst_JES_Flavour_Response: 50.094722823367334 - syst_JES_Gjet_Generator: 32.940437155569136 - syst_JES_Gjet_OOC: 19.084026697738608 - syst_JES_Gjet_Purity: 8.03083437445948 - syst_JES_Gjet_Stat1: 0.042461225547551024 - syst_JES_Gjet_Stat10: 0.2987583429797401 - syst_JES_Gjet_Stat11: 0.31512570932089945 - syst_JES_Gjet_Stat12: 0.00957304481343322 - syst_JES_Gjet_Stat13: 0.0012742959261882619 - syst_JES_Gjet_Stat14: 2.439597019653772e-07 - syst_JES_Gjet_Stat15: 7.131719200164852e-40 + syst_JES_EtaIntercalibration_Stat96: 1.03464055e-02 + syst_JES_EtaIntercalibration_Stat97: 1.15138077e-02 + syst_JES_EtaIntercalibration_Stat98: 5.72009779e-03 + syst_JES_EtaIntercalibration_Stat99: 5.72009779e-03 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.24969481e-02 + syst_JES_Flavour_Comp: 3.85370377e+00 + syst_JES_Flavour_Response: 5.00947228e+01 + syst_JES_Gjet_Generator: 3.29404372e+01 + syst_JES_Gjet_OOC: 1.90840267e+01 + syst_JES_Gjet_Purity: 8.03083437e+00 + syst_JES_Gjet_Stat1: 4.24612255e-02 + syst_JES_Gjet_Stat10: 2.98758343e-01 + syst_JES_Gjet_Stat11: 3.15125709e-01 + syst_JES_Gjet_Stat12: 9.57304481e-03 + syst_JES_Gjet_Stat13: 1.27429593e-03 + syst_JES_Gjet_Stat14: 2.43959702e-07 + syst_JES_Gjet_Stat15: 7.13171920e-40 syst_JES_Gjet_Stat2: 0.0 - syst_JES_Gjet_Stat3: 0.23980243430791104 - syst_JES_Gjet_Stat4: 0.3991652981848497 - syst_JES_Gjet_Stat5: 0.4744787034209228 - syst_JES_Gjet_Stat6: 1.525743343423133 - syst_JES_Gjet_Stat7: 2.708769600759725 - syst_JES_Gjet_Stat8: 1.2983639118136334 - syst_JES_Gjet_Stat9: 0.717428440682414 - syst_JES_Gjet_Veto: 6.947596994644983 - syst_JES_Gjet_dPhi: 3.5797058021574903 - syst_JES_LArESZee: 22.6148800571659 - syst_JES_LArEsmear: 2.340288443760726 - syst_JES_LAr_JVT: 3.681515007439193 - syst_JES_MJB_Alpha: 4.376026365322768e-31 - syst_JES_MJB_Asym: 0.0010413089455103988 + syst_JES_Gjet_Stat3: 2.39802434e-01 + syst_JES_Gjet_Stat4: 3.99165298e-01 + syst_JES_Gjet_Stat5: 4.74478703e-01 + syst_JES_Gjet_Stat6: 1.52574334e+00 + syst_JES_Gjet_Stat7: 2.70876960e+00 + syst_JES_Gjet_Stat8: 1.29836391e+00 + syst_JES_Gjet_Stat9: 7.17428441e-01 + syst_JES_Gjet_Veto: 6.94759699e+00 + syst_JES_Gjet_dPhi: 3.57970580e+00 + syst_JES_LArESZee: 2.26148801e+01 + syst_JES_LArEsmear: 2.34028844e+00 + syst_JES_LAr_JVT: 3.68151501e+00 + syst_JES_MJB_Alpha: 4.37602637e-31 + syst_JES_MJB_Asym: 1.04130895e-03 syst_JES_MJB_Beta: 0.0 - syst_JES_MJB_Fragmentation: 0.01696048763302518 - syst_JES_MJB_Stat1: 7.932792698665459e-18 + syst_JES_MJB_Fragmentation: 1.69604876e-02 + syst_JES_MJB_Stat1: 7.93279270e-18 syst_JES_MJB_Stat10: 0.0 syst_JES_MJB_Stat11: 0.0 syst_JES_MJB_Stat12: 0.0 @@ -45119,157 +45119,157 @@ bins: syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 0.0008274872733160312 - syst_JES_MJB_Stat3: 4.244390503947534e-06 + syst_JES_MJB_Stat2: 8.27487273e-04 + syst_JES_MJB_Stat3: 4.24439050e-06 syst_JES_MJB_Stat4: 0.0 - syst_JES_MJB_Stat5: 2.0386238005085685e-24 + syst_JES_MJB_Stat5: 2.03862380e-24 syst_JES_MJB_Stat6: 0.0 syst_JES_MJB_Stat7: 0.0 syst_JES_MJB_Stat8: 0.0 syst_JES_MJB_Stat9: 0.0 - syst_JES_MJB_Threshold: 0.0013939457198901251 - syst_JES_Pileup_MuOffset: 4.1170847695727864e-12 - syst_JES_Pileup_NPVOffset: 2.1161252325890354 - syst_JES_Pileup_Pt_term: 11.662710523287457 - syst_JES_Pileup_Rho_topology: 15.051172711785616 - syst_JES_PunchThrough_MC15: 1.629859809922287e-17 + syst_JES_MJB_Threshold: 1.39394572e-03 + syst_JES_Pileup_MuOffset: 4.11708477e-12 + syst_JES_Pileup_NPVOffset: 2.11612523e+00 + syst_JES_Pileup_Pt_term: 1.16627105e+01 + syst_JES_Pileup_Rho_topology: 1.50511727e+01 + syst_JES_PunchThrough_MC15: 1.62985981e-17 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 28.764019190648586 - syst_JES_Zjet_MuScale: 2.2514744058061154 - syst_JES_Zjet_MuSmearID: 0.38647663254070097 - syst_JES_Zjet_MuSmearMS: 1.627643081268126 - syst_JES_Zjet_OOC: 15.145943351273965 - syst_JES_Zjet_Stat1: 0.3444072298892693 - syst_JES_Zjet_Stat10: 3.369187253626607 - syst_JES_Zjet_Stat11: 0.6303654713735517 - syst_JES_Zjet_Stat12: 0.5683794925047876 - syst_JES_Zjet_Stat13: 0.033546104106885494 - syst_JES_Zjet_Stat2: 0.014012290967789566 - syst_JES_Zjet_Stat3: 5.565079244718803e-18 - syst_JES_Zjet_Stat4: 0.15492936293679133 - syst_JES_Zjet_Stat5: 0.2693567708449149 - syst_JES_Zjet_Stat6: 0.5438197380566469 - syst_JES_Zjet_Stat7: 0.9470554616810992 - syst_JES_Zjet_Stat8: 1.7727370786442076 - syst_JES_Zjet_Stat9: 3.524696689078367 - syst_JES_Zjet_Veto: 2.594035273468732 - syst_JES_Zjet_dPhi: 3.4341413410050556 + syst_JES_Zjet_MC: 2.87640192e+01 + syst_JES_Zjet_MuScale: 2.25147441e+00 + syst_JES_Zjet_MuSmearID: 3.86476633e-01 + syst_JES_Zjet_MuSmearMS: 1.62764308e+00 + syst_JES_Zjet_OOC: 1.51459434e+01 + syst_JES_Zjet_Stat1: 3.44407230e-01 + syst_JES_Zjet_Stat10: 3.36918725e+00 + syst_JES_Zjet_Stat11: 6.30365471e-01 + syst_JES_Zjet_Stat12: 5.68379493e-01 + syst_JES_Zjet_Stat13: 3.35461041e-02 + syst_JES_Zjet_Stat2: 1.40122910e-02 + syst_JES_Zjet_Stat3: 5.56507924e-18 + syst_JES_Zjet_Stat4: 1.54929363e-01 + syst_JES_Zjet_Stat5: 2.69356771e-01 + syst_JES_Zjet_Stat6: 5.43819738e-01 + syst_JES_Zjet_Stat7: 9.47055462e-01 + syst_JES_Zjet_Stat8: 1.77273708e+00 + syst_JES_Zjet_Stat9: 3.52469669e+00 + syst_JES_Zjet_Veto: 2.59403527e+00 + syst_JES_Zjet_dPhi: 3.43414134e+00 syst_PRW: 0.0 syst_Unfolding_bias: 0.0 - syst_cleaning: 9.471719841190405 + syst_cleaning: 9.47171984e+00 syst_lumi: 30.93 - stat: 5.854 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 14.945516886344212 - syst_JER_NP1: 1.9621255693762312 - syst_JER_NP2: 1.4540587161459473 - syst_JER_NP3: 4.38951987693415 - syst_JER_NP4: 0.88168939542222 - syst_JER_NP5: 1.271965923285683 - syst_JER_NP6: 0.9432757006835275 - syst_JER_NP7: 0.4664088442557667 - syst_JER_NP8: 1.1040887645474886 - syst_JES_EtaIntercalibration_Modelling: 17.932029305128854 - syst_JES_EtaIntercalibration_NonClosure: 34.22044125957466 + syst_JER_NP0: 1.49455169e+01 + syst_JER_NP1: 1.96212557e+00 + syst_JER_NP2: 1.45405872e+00 + syst_JER_NP3: 4.38951988e+00 + syst_JER_NP4: 8.81689395e-01 + syst_JER_NP5: 1.27196592e+00 + syst_JER_NP6: 9.43275701e-01 + syst_JER_NP7: 4.66408844e-01 + syst_JER_NP8: 1.10408876e+00 + syst_JES_EtaIntercalibration_Modelling: 1.79320293e+01 + syst_JES_EtaIntercalibration_NonClosure: 3.42204413e+01 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 0.0004188098852701545 + syst_JES_EtaIntercalibration_Stat100: 4.18809885e-04 syst_JES_EtaIntercalibration_Stat101: 0.0 - syst_JES_EtaIntercalibration_Stat102: 0.028033841602605948 - syst_JES_EtaIntercalibration_Stat103: 0.33439746933851044 - syst_JES_EtaIntercalibration_Stat104: 0.6856503336249462 - syst_JES_EtaIntercalibration_Stat105: 0.3112737862397025 - syst_JES_EtaIntercalibration_Stat106: 0.0012184481269528877 + syst_JES_EtaIntercalibration_Stat102: 2.80338416e-02 + syst_JES_EtaIntercalibration_Stat103: 3.34397469e-01 + syst_JES_EtaIntercalibration_Stat104: 6.85650334e-01 + syst_JES_EtaIntercalibration_Stat105: 3.11273786e-01 + syst_JES_EtaIntercalibration_Stat106: 1.21844813e-03 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 0.023477755261796216 + syst_JES_EtaIntercalibration_Stat109: 2.34777553e-02 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 0.9130284045417207 - syst_JES_EtaIntercalibration_Stat111: 2.3416889204162024 - syst_JES_EtaIntercalibration_Stat112: 1.3908045899766075 - syst_JES_EtaIntercalibration_Stat113: 0.14261298783771414 - syst_JES_EtaIntercalibration_Stat114: 0.0006553214230436848 + syst_JES_EtaIntercalibration_Stat110: 9.13028405e-01 + syst_JES_EtaIntercalibration_Stat111: 2.34168892e+00 + syst_JES_EtaIntercalibration_Stat112: 1.39080459e+00 + syst_JES_EtaIntercalibration_Stat113: 1.42612988e-01 + syst_JES_EtaIntercalibration_Stat114: 6.55321423e-04 syst_JES_EtaIntercalibration_Stat115: 0.0 - syst_JES_EtaIntercalibration_Stat116: 0.014306739670518926 - syst_JES_EtaIntercalibration_Stat117: 0.0001829911678196519 - syst_JES_EtaIntercalibration_Stat118: 0.0004188098852701545 - syst_JES_EtaIntercalibration_Stat119: 0.0004188098852701545 + syst_JES_EtaIntercalibration_Stat116: 1.43067397e-02 + syst_JES_EtaIntercalibration_Stat117: 1.82991168e-04 + syst_JES_EtaIntercalibration_Stat118: 4.18809885e-04 + syst_JES_EtaIntercalibration_Stat119: 4.18809885e-04 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 0.0004188098852701545 - syst_JES_EtaIntercalibration_Stat121: 0.0010239884374347202 - syst_JES_EtaIntercalibration_Stat122: 0.11018411534790302 - syst_JES_EtaIntercalibration_Stat123: 1.286892096292459 - syst_JES_EtaIntercalibration_Stat124: 2.2725027502733632 - syst_JES_EtaIntercalibration_Stat125: 0.9715462366763612 - syst_JES_EtaIntercalibration_Stat126: 0.017550484095887497 + syst_JES_EtaIntercalibration_Stat120: 4.18809885e-04 + syst_JES_EtaIntercalibration_Stat121: 1.02398844e-03 + syst_JES_EtaIntercalibration_Stat122: 1.10184115e-01 + syst_JES_EtaIntercalibration_Stat123: 1.28689210e+00 + syst_JES_EtaIntercalibration_Stat124: 2.27250275e+00 + syst_JES_EtaIntercalibration_Stat125: 9.71546237e-01 + syst_JES_EtaIntercalibration_Stat126: 1.75504841e-02 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 0.019848205158149692 - syst_JES_EtaIntercalibration_Stat129: 1.4148108106739927 + syst_JES_EtaIntercalibration_Stat128: 1.98482052e-02 + syst_JES_EtaIntercalibration_Stat129: 1.41481081e+00 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 5.228616906027826 - syst_JES_EtaIntercalibration_Stat131: 1.2993955633293506 - syst_JES_EtaIntercalibration_Stat132: 0.20947002172148646 - syst_JES_EtaIntercalibration_Stat133: 0.002561047246733258 + syst_JES_EtaIntercalibration_Stat130: 5.22861691e+00 + syst_JES_EtaIntercalibration_Stat131: 1.29939556e+00 + syst_JES_EtaIntercalibration_Stat132: 2.09470022e-01 + syst_JES_EtaIntercalibration_Stat133: 2.56104725e-03 syst_JES_EtaIntercalibration_Stat134: 0.0 - syst_JES_EtaIntercalibration_Stat135: 0.014306739670518926 - syst_JES_EtaIntercalibration_Stat136: 0.014306739670518926 - syst_JES_EtaIntercalibration_Stat137: 0.0004188098852701545 - syst_JES_EtaIntercalibration_Stat138: 0.0004188098852701545 - syst_JES_EtaIntercalibration_Stat139: 0.0004188098852701545 + syst_JES_EtaIntercalibration_Stat135: 1.43067397e-02 + syst_JES_EtaIntercalibration_Stat136: 1.43067397e-02 + syst_JES_EtaIntercalibration_Stat137: 4.18809885e-04 + syst_JES_EtaIntercalibration_Stat138: 4.18809885e-04 + syst_JES_EtaIntercalibration_Stat139: 4.18809885e-04 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 0.005146788974690919 - syst_JES_EtaIntercalibration_Stat141: 0.21139140829276865 - syst_JES_EtaIntercalibration_Stat142: 1.1440946114723205 - syst_JES_EtaIntercalibration_Stat143: 3.3978582960447308 - syst_JES_EtaIntercalibration_Stat144: 1.8616124059535057 - syst_JES_EtaIntercalibration_Stat145: 0.038271982898721094 - syst_JES_EtaIntercalibration_Stat146: 0.0008503324879128165 - syst_JES_EtaIntercalibration_Stat147: 0.06030574588710432 - syst_JES_EtaIntercalibration_Stat148: 0.17914775096271793 - syst_JES_EtaIntercalibration_Stat149: 0.11144736066861341 + syst_JES_EtaIntercalibration_Stat140: 5.14678897e-03 + syst_JES_EtaIntercalibration_Stat141: 2.11391408e-01 + syst_JES_EtaIntercalibration_Stat142: 1.14409461e+00 + syst_JES_EtaIntercalibration_Stat143: 3.39785830e+00 + syst_JES_EtaIntercalibration_Stat144: 1.86161241e+00 + syst_JES_EtaIntercalibration_Stat145: 3.82719829e-02 + syst_JES_EtaIntercalibration_Stat146: 8.50332488e-04 + syst_JES_EtaIntercalibration_Stat147: 6.03057459e-02 + syst_JES_EtaIntercalibration_Stat148: 1.79147751e-01 + syst_JES_EtaIntercalibration_Stat149: 1.11447361e-01 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 0.010511962364373266 - syst_JES_EtaIntercalibration_Stat151: 0.000651337706186276 + syst_JES_EtaIntercalibration_Stat150: 1.05119624e-02 + syst_JES_EtaIntercalibration_Stat151: 6.51337706e-04 syst_JES_EtaIntercalibration_Stat152: 0.0 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 0.0004188098852701545 + syst_JES_EtaIntercalibration_Stat156: 4.18809885e-04 syst_JES_EtaIntercalibration_Stat157: 0.0 syst_JES_EtaIntercalibration_Stat158: 0.0 - syst_JES_EtaIntercalibration_Stat159: 0.06583559523540439 - syst_JES_EtaIntercalibration_Stat16: 0.0005902677443330272 - syst_JES_EtaIntercalibration_Stat160: 0.09180885074435907 - syst_JES_EtaIntercalibration_Stat161: 0.14028679303483987 - syst_JES_EtaIntercalibration_Stat162: 0.15170927031661577 - syst_JES_EtaIntercalibration_Stat163: 0.00260486352809509 - syst_JES_EtaIntercalibration_Stat164: 0.004485768384569136 - syst_JES_EtaIntercalibration_Stat165: 0.07481774037619687 - syst_JES_EtaIntercalibration_Stat166: 0.15740406602118 - syst_JES_EtaIntercalibration_Stat167: 0.04900868570978006 - syst_JES_EtaIntercalibration_Stat168: 0.009896604171128599 - syst_JES_EtaIntercalibration_Stat169: 0.000651337706186276 - syst_JES_EtaIntercalibration_Stat17: 0.0013014216895668367 + syst_JES_EtaIntercalibration_Stat159: 6.58355952e-02 + syst_JES_EtaIntercalibration_Stat16: 5.90267744e-04 + syst_JES_EtaIntercalibration_Stat160: 9.18088507e-02 + syst_JES_EtaIntercalibration_Stat161: 1.40286793e-01 + syst_JES_EtaIntercalibration_Stat162: 1.51709270e-01 + syst_JES_EtaIntercalibration_Stat163: 2.60486353e-03 + syst_JES_EtaIntercalibration_Stat164: 4.48576838e-03 + syst_JES_EtaIntercalibration_Stat165: 7.48177404e-02 + syst_JES_EtaIntercalibration_Stat166: 1.57404066e-01 + syst_JES_EtaIntercalibration_Stat167: 4.90086857e-02 + syst_JES_EtaIntercalibration_Stat168: 9.89660417e-03 + syst_JES_EtaIntercalibration_Stat169: 6.51337706e-04 + syst_JES_EtaIntercalibration_Stat17: 1.30142169e-03 syst_JES_EtaIntercalibration_Stat170: 0.0 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 syst_JES_EtaIntercalibration_Stat175: 0.0 - syst_JES_EtaIntercalibration_Stat176: 2.616262744832789e-08 - syst_JES_EtaIntercalibration_Stat177: 0.005717499715784864 - syst_JES_EtaIntercalibration_Stat178: 0.08386335612172935 - syst_JES_EtaIntercalibration_Stat179: 0.1552727396389978 - syst_JES_EtaIntercalibration_Stat18: 0.00011685757485075583 - syst_JES_EtaIntercalibration_Stat180: 0.045263417090957686 - syst_JES_EtaIntercalibration_Stat181: 0.003945611739641902 - syst_JES_EtaIntercalibration_Stat182: 0.009464578596007326 - syst_JES_EtaIntercalibration_Stat183: 0.025938083969329735 - syst_JES_EtaIntercalibration_Stat184: 0.006226431642602366 - syst_JES_EtaIntercalibration_Stat185: 0.003383562028395519 - syst_JES_EtaIntercalibration_Stat186: 1.1690476925686137e-18 + syst_JES_EtaIntercalibration_Stat176: 2.61626274e-08 + syst_JES_EtaIntercalibration_Stat177: 5.71749972e-03 + syst_JES_EtaIntercalibration_Stat178: 8.38633561e-02 + syst_JES_EtaIntercalibration_Stat179: 1.55272740e-01 + syst_JES_EtaIntercalibration_Stat18: 1.16857575e-04 + syst_JES_EtaIntercalibration_Stat180: 4.52634171e-02 + syst_JES_EtaIntercalibration_Stat181: 3.94561174e-03 + syst_JES_EtaIntercalibration_Stat182: 9.46457860e-03 + syst_JES_EtaIntercalibration_Stat183: 2.59380840e-02 + syst_JES_EtaIntercalibration_Stat184: 6.22643164e-03 + syst_JES_EtaIntercalibration_Stat185: 3.38356203e-03 + syst_JES_EtaIntercalibration_Stat186: 1.16904769e-18 syst_JES_EtaIntercalibration_Stat187: 0.0 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 @@ -45277,31 +45277,31 @@ bins: syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 syst_JES_EtaIntercalibration_Stat192: 0.0 - syst_JES_EtaIntercalibration_Stat193: 5.170306461661631e-07 - syst_JES_EtaIntercalibration_Stat194: 0.00019412982460199156 - syst_JES_EtaIntercalibration_Stat195: 0.004273403415311969 - syst_JES_EtaIntercalibration_Stat196: 0.02267044128375096 - syst_JES_EtaIntercalibration_Stat197: 0.006223125449697684 - syst_JES_EtaIntercalibration_Stat198: 0.0004764831030582302 - syst_JES_EtaIntercalibration_Stat199: 0.00019810554636354836 + syst_JES_EtaIntercalibration_Stat193: 5.17030646e-07 + syst_JES_EtaIntercalibration_Stat194: 1.94129825e-04 + syst_JES_EtaIntercalibration_Stat195: 4.27340342e-03 + syst_JES_EtaIntercalibration_Stat196: 2.26704413e-02 + syst_JES_EtaIntercalibration_Stat197: 6.22312545e-03 + syst_JES_EtaIntercalibration_Stat198: 4.76483103e-04 + syst_JES_EtaIntercalibration_Stat199: 1.98105546e-04 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 8.33376721510797e-07 - syst_JES_EtaIntercalibration_Stat201: 1.1690476925686137e-18 + syst_JES_EtaIntercalibration_Stat200: 8.33376722e-07 + syst_JES_EtaIntercalibration_Stat201: 1.16904769e-18 syst_JES_EtaIntercalibration_Stat202: 0.0 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 syst_JES_EtaIntercalibration_Stat207: 0.0 - syst_JES_EtaIntercalibration_Stat208: 4.762273695410628e-31 - syst_JES_EtaIntercalibration_Stat209: 5.304405567502181e-29 + syst_JES_EtaIntercalibration_Stat208: 4.76227370e-31 + syst_JES_EtaIntercalibration_Stat209: 5.30440557e-29 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 0.00013413175127463295 - syst_JES_EtaIntercalibration_Stat211: 0.0005773333352578908 - syst_JES_EtaIntercalibration_Stat212: 1.6876794368253114e-10 - syst_JES_EtaIntercalibration_Stat213: 1.2106169119502667e-17 - syst_JES_EtaIntercalibration_Stat214: 1.1690476925686137e-18 + syst_JES_EtaIntercalibration_Stat210: 1.34131751e-04 + syst_JES_EtaIntercalibration_Stat211: 5.77333335e-04 + syst_JES_EtaIntercalibration_Stat212: 1.68767944e-10 + syst_JES_EtaIntercalibration_Stat213: 1.21061691e-17 + syst_JES_EtaIntercalibration_Stat214: 1.16904769e-18 syst_JES_EtaIntercalibration_Stat215: 0.0 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 @@ -45310,10 +45310,10 @@ bins: syst_JES_EtaIntercalibration_Stat22: 0.0 syst_JES_EtaIntercalibration_Stat220: 0.0 syst_JES_EtaIntercalibration_Stat221: 0.0 - syst_JES_EtaIntercalibration_Stat222: 4.101496312323101e-37 - syst_JES_EtaIntercalibration_Stat223: 3.663266105206346e-08 - syst_JES_EtaIntercalibration_Stat224: 1.2782526594074816e-23 - syst_JES_EtaIntercalibration_Stat225: 9.12840763769892e-31 + syst_JES_EtaIntercalibration_Stat222: 4.10149631e-37 + syst_JES_EtaIntercalibration_Stat223: 3.66326611e-08 + syst_JES_EtaIntercalibration_Stat224: 1.27825266e-23 + syst_JES_EtaIntercalibration_Stat225: 9.12840764e-31 syst_JES_EtaIntercalibration_Stat226: 0.0 syst_JES_EtaIntercalibration_Stat227: 0.0 syst_JES_EtaIntercalibration_Stat228: 0.0 @@ -45323,132 +45323,132 @@ bins: syst_JES_EtaIntercalibration_Stat231: 0.0 syst_JES_EtaIntercalibration_Stat232: 0.0 syst_JES_EtaIntercalibration_Stat233: 0.0 - syst_JES_EtaIntercalibration_Stat234: 1.0458988801504664e-30 - syst_JES_EtaIntercalibration_Stat235: 1.0323888838514292e-18 + syst_JES_EtaIntercalibration_Stat234: 1.04589888e-30 + syst_JES_EtaIntercalibration_Stat235: 1.03238888e-18 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 syst_JES_EtaIntercalibration_Stat239: 0.0 - syst_JES_EtaIntercalibration_Stat24: 0.0006683118041004513 + syst_JES_EtaIntercalibration_Stat24: 6.68311804e-04 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 syst_JES_EtaIntercalibration_Stat243: 0.0 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 - syst_JES_EtaIntercalibration_Stat25: 0.0032478189400734765 - syst_JES_EtaIntercalibration_Stat26: 0.011922061262634075 - syst_JES_EtaIntercalibration_Stat27: 0.005999787058721335 - syst_JES_EtaIntercalibration_Stat28: 0.001904655246363499 + syst_JES_EtaIntercalibration_Stat25: 3.24781894e-03 + syst_JES_EtaIntercalibration_Stat26: 1.19220613e-02 + syst_JES_EtaIntercalibration_Stat27: 5.99978706e-03 + syst_JES_EtaIntercalibration_Stat28: 1.90465525e-03 syst_JES_EtaIntercalibration_Stat29: 0.0 - syst_JES_EtaIntercalibration_Stat3: 0.0005214963734293844 + syst_JES_EtaIntercalibration_Stat3: 5.21496373e-04 syst_JES_EtaIntercalibration_Stat30: 0.0 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 0.005892436847349321 - syst_JES_EtaIntercalibration_Stat36: 0.005892436847349321 - syst_JES_EtaIntercalibration_Stat37: 0.0012843082992412685 - syst_JES_EtaIntercalibration_Stat38: 0.0026934256194482147 - syst_JES_EtaIntercalibration_Stat39: 0.011442460732180817 - syst_JES_EtaIntercalibration_Stat4: 0.0009710517596915212 - syst_JES_EtaIntercalibration_Stat40: 0.0049082831010446 + syst_JES_EtaIntercalibration_Stat35: 5.89243685e-03 + syst_JES_EtaIntercalibration_Stat36: 5.89243685e-03 + syst_JES_EtaIntercalibration_Stat37: 1.28430830e-03 + syst_JES_EtaIntercalibration_Stat38: 2.69342562e-03 + syst_JES_EtaIntercalibration_Stat39: 1.14424607e-02 + syst_JES_EtaIntercalibration_Stat4: 9.71051760e-04 + syst_JES_EtaIntercalibration_Stat40: 4.90828310e-03 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 syst_JES_EtaIntercalibration_Stat44: 0.0 syst_JES_EtaIntercalibration_Stat45: 0.0 - syst_JES_EtaIntercalibration_Stat46: 0.0008655359499610631 - syst_JES_EtaIntercalibration_Stat47: 0.019426064623335317 - syst_JES_EtaIntercalibration_Stat48: 0.03268199925035186 - syst_JES_EtaIntercalibration_Stat49: 0.020124088749555843 - syst_JES_EtaIntercalibration_Stat5: 0.0008626327032260023 - syst_JES_EtaIntercalibration_Stat50: 0.004906371775558799 + syst_JES_EtaIntercalibration_Stat46: 8.65535950e-04 + syst_JES_EtaIntercalibration_Stat47: 1.94260646e-02 + syst_JES_EtaIntercalibration_Stat48: 3.26819993e-02 + syst_JES_EtaIntercalibration_Stat49: 2.01240887e-02 + syst_JES_EtaIntercalibration_Stat5: 8.62632703e-04 + syst_JES_EtaIntercalibration_Stat50: 4.90637178e-03 syst_JES_EtaIntercalibration_Stat51: 0.0 syst_JES_EtaIntercalibration_Stat52: 0.0 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 0.0004188098852701545 - syst_JES_EtaIntercalibration_Stat57: 0.005892436847349321 - syst_JES_EtaIntercalibration_Stat58: 0.005892436847349321 - syst_JES_EtaIntercalibration_Stat59: 0.003337988765709076 + syst_JES_EtaIntercalibration_Stat56: 4.18809885e-04 + syst_JES_EtaIntercalibration_Stat57: 5.89243685e-03 + syst_JES_EtaIntercalibration_Stat58: 5.89243685e-03 + syst_JES_EtaIntercalibration_Stat59: 3.33798877e-03 syst_JES_EtaIntercalibration_Stat6: 0.0 - syst_JES_EtaIntercalibration_Stat60: 0.021865041207370272 - syst_JES_EtaIntercalibration_Stat61: 0.04666855981279046 - syst_JES_EtaIntercalibration_Stat62: 0.026563440604522596 - syst_JES_EtaIntercalibration_Stat63: 0.0005147923477315877 + syst_JES_EtaIntercalibration_Stat60: 2.18650412e-02 + syst_JES_EtaIntercalibration_Stat61: 4.66685598e-02 + syst_JES_EtaIntercalibration_Stat62: 2.65634406e-02 + syst_JES_EtaIntercalibration_Stat63: 5.14792348e-04 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 0.00423057343719501 - syst_JES_EtaIntercalibration_Stat69: 0.15814664081162141 + syst_JES_EtaIntercalibration_Stat68: 4.23057344e-03 + syst_JES_EtaIntercalibration_Stat69: 1.58146641e-01 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 0.249546483645833 - syst_JES_EtaIntercalibration_Stat71: 0.11225613702599961 - syst_JES_EtaIntercalibration_Stat72: 0.01288444659269462 + syst_JES_EtaIntercalibration_Stat70: 2.49546484e-01 + syst_JES_EtaIntercalibration_Stat71: 1.12256137e-01 + syst_JES_EtaIntercalibration_Stat72: 1.28844466e-02 syst_JES_EtaIntercalibration_Stat73: 0.0 syst_JES_EtaIntercalibration_Stat74: 0.0 syst_JES_EtaIntercalibration_Stat75: 0.0 - syst_JES_EtaIntercalibration_Stat76: 0.002808520384472934 - syst_JES_EtaIntercalibration_Stat77: 0.0004188098852701545 - syst_JES_EtaIntercalibration_Stat78: 0.0004188098852701545 - syst_JES_EtaIntercalibration_Stat79: 0.005892436847349321 + syst_JES_EtaIntercalibration_Stat76: 2.80852038e-03 + syst_JES_EtaIntercalibration_Stat77: 4.18809885e-04 + syst_JES_EtaIntercalibration_Stat78: 4.18809885e-04 + syst_JES_EtaIntercalibration_Stat79: 5.89243685e-03 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 0.005910623380828794 - syst_JES_EtaIntercalibration_Stat81: 0.009449250452152277 - syst_JES_EtaIntercalibration_Stat82: 0.12122537389094744 - syst_JES_EtaIntercalibration_Stat83: 0.3360864323354931 - syst_JES_EtaIntercalibration_Stat84: 0.11737491757185604 - syst_JES_EtaIntercalibration_Stat85: 0.0008214525716680179 + syst_JES_EtaIntercalibration_Stat80: 5.91062338e-03 + syst_JES_EtaIntercalibration_Stat81: 9.44925045e-03 + syst_JES_EtaIntercalibration_Stat82: 1.21225374e-01 + syst_JES_EtaIntercalibration_Stat83: 3.36086432e-01 + syst_JES_EtaIntercalibration_Stat84: 1.17374918e-01 + syst_JES_EtaIntercalibration_Stat85: 8.21452572e-04 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 0.008023023292375512 + syst_JES_EtaIntercalibration_Stat89: 8.02302329e-03 syst_JES_EtaIntercalibration_Stat9: 0.0 - syst_JES_EtaIntercalibration_Stat90: 0.2619814306396543 - syst_JES_EtaIntercalibration_Stat91: 0.6939732181431787 - syst_JES_EtaIntercalibration_Stat92: 0.3218217014124436 - syst_JES_EtaIntercalibration_Stat93: 0.028231143706906388 + syst_JES_EtaIntercalibration_Stat90: 2.61981431e-01 + syst_JES_EtaIntercalibration_Stat91: 6.93973218e-01 + syst_JES_EtaIntercalibration_Stat92: 3.21821701e-01 + syst_JES_EtaIntercalibration_Stat93: 2.82311437e-02 syst_JES_EtaIntercalibration_Stat94: 0.0 syst_JES_EtaIntercalibration_Stat95: 0.0 - syst_JES_EtaIntercalibration_Stat96: 0.0001829911678196519 - syst_JES_EtaIntercalibration_Stat97: 0.002808520384472934 - syst_JES_EtaIntercalibration_Stat98: 0.0004188098852701545 - syst_JES_EtaIntercalibration_Stat99: 0.0004188098852701545 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.03994117948621448 - syst_JES_Flavour_Comp: 1.6367203999156361 - syst_JES_Flavour_Response: 23.74773831336365 - syst_JES_Gjet_Generator: 16.90605808578688 - syst_JES_Gjet_OOC: 9.514363194665211 - syst_JES_Gjet_Purity: 3.6641625520028445 - syst_JES_Gjet_Stat1: 0.00200571483516476 - syst_JES_Gjet_Stat10: 0.44291748291865835 - syst_JES_Gjet_Stat11: 0.2378545353782433 - syst_JES_Gjet_Stat12: 0.048125031701975796 - syst_JES_Gjet_Stat13: 0.005602159672840466 - syst_JES_Gjet_Stat14: 2.3240335614996505e-05 - syst_JES_Gjet_Stat15: 1.8732129405972858e-28 + syst_JES_EtaIntercalibration_Stat96: 1.82991168e-04 + syst_JES_EtaIntercalibration_Stat97: 2.80852038e-03 + syst_JES_EtaIntercalibration_Stat98: 4.18809885e-04 + syst_JES_EtaIntercalibration_Stat99: 4.18809885e-04 + syst_JES_EtaIntercalibration_TotalStat_MJB: 3.99411795e-02 + syst_JES_Flavour_Comp: 1.63672040e+00 + syst_JES_Flavour_Response: 2.37477383e+01 + syst_JES_Gjet_Generator: 1.69060581e+01 + syst_JES_Gjet_OOC: 9.51436319e+00 + syst_JES_Gjet_Purity: 3.66416255e+00 + syst_JES_Gjet_Stat1: 2.00571484e-03 + syst_JES_Gjet_Stat10: 4.42917483e-01 + syst_JES_Gjet_Stat11: 2.37854535e-01 + syst_JES_Gjet_Stat12: 4.81250317e-02 + syst_JES_Gjet_Stat13: 5.60215967e-03 + syst_JES_Gjet_Stat14: 2.32403356e-05 + syst_JES_Gjet_Stat15: 1.87321294e-28 syst_JES_Gjet_Stat2: 0.0 - syst_JES_Gjet_Stat3: 0.05442969662785197 - syst_JES_Gjet_Stat4: 0.10168552146200559 - syst_JES_Gjet_Stat5: 0.12480450713015134 - syst_JES_Gjet_Stat6: 0.5180243623614628 - syst_JES_Gjet_Stat7: 1.0895434032198992 - syst_JES_Gjet_Stat8: 0.7236718247935316 - syst_JES_Gjet_Stat9: 0.6874087648553807 - syst_JES_Gjet_Veto: 3.620300065947573 - syst_JES_Gjet_dPhi: 1.6748143180663342 - syst_JES_LArESZee: 12.85172536082218 - syst_JES_LArEsmear: 1.280437300300175 - syst_JES_LAr_JVT: 1.9234133071183634 - syst_JES_MJB_Alpha: 6.3332437778756e-22 - syst_JES_MJB_Asym: 0.0007159431974002229 + syst_JES_Gjet_Stat3: 5.44296966e-02 + syst_JES_Gjet_Stat4: 1.01685521e-01 + syst_JES_Gjet_Stat5: 1.24804507e-01 + syst_JES_Gjet_Stat6: 5.18024362e-01 + syst_JES_Gjet_Stat7: 1.08954340e+00 + syst_JES_Gjet_Stat8: 7.23671825e-01 + syst_JES_Gjet_Stat9: 6.87408765e-01 + syst_JES_Gjet_Veto: 3.62030007e+00 + syst_JES_Gjet_dPhi: 1.67481432e+00 + syst_JES_LArESZee: 1.28517254e+01 + syst_JES_LArEsmear: 1.28043730e+00 + syst_JES_LAr_JVT: 1.92341331e+00 + syst_JES_MJB_Alpha: 6.33324378e-22 + syst_JES_MJB_Asym: 7.15943197e-04 syst_JES_MJB_Beta: 0.0 - syst_JES_MJB_Fragmentation: 0.05098283287539052 - syst_JES_MJB_Stat1: 3.0354190402644577e-12 + syst_JES_MJB_Fragmentation: 5.09828329e-02 + syst_JES_MJB_Stat1: 3.03541904e-12 syst_JES_MJB_Stat10: 0.0 syst_JES_MJB_Stat11: 0.0 syst_JES_MJB_Stat12: 0.0 @@ -45456,157 +45456,157 @@ bins: syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 0.0027782094953405514 - syst_JES_MJB_Stat3: 6.176493179790617e-05 - syst_JES_MJB_Stat4: 6.4189802928502594e-37 - syst_JES_MJB_Stat5: 3.600067603531912e-17 + syst_JES_MJB_Stat2: 2.77820950e-03 + syst_JES_MJB_Stat3: 6.17649318e-05 + syst_JES_MJB_Stat4: 6.41898029e-37 + syst_JES_MJB_Stat5: 3.60006760e-17 syst_JES_MJB_Stat6: 0.0 syst_JES_MJB_Stat7: 0.0 syst_JES_MJB_Stat8: 0.0 syst_JES_MJB_Stat9: 0.0 - syst_JES_MJB_Threshold: 0.0013705744005707973 - syst_JES_Pileup_MuOffset: 5.7997720965904913e-08 - syst_JES_Pileup_NPVOffset: 0.9551484910735084 - syst_JES_Pileup_Pt_term: 5.575514415728831 - syst_JES_Pileup_Rho_topology: 6.826759168888265 - syst_JES_PunchThrough_MC15: 6.235382906866243e-12 + syst_JES_MJB_Threshold: 1.37057440e-03 + syst_JES_Pileup_MuOffset: 5.79977210e-08 + syst_JES_Pileup_NPVOffset: 9.55148491e-01 + syst_JES_Pileup_Pt_term: 5.57551442e+00 + syst_JES_Pileup_Rho_topology: 6.82675917e+00 + syst_JES_PunchThrough_MC15: 6.23538291e-12 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 14.638370810988496 - syst_JES_Zjet_MuScale: 1.1847046245794772 - syst_JES_Zjet_MuSmearID: 0.20606141681547274 - syst_JES_Zjet_MuSmearMS: 1.045902877900238 - syst_JES_Zjet_OOC: 6.452675937159714 - syst_JES_Zjet_Stat1: 0.09599847954525113 - syst_JES_Zjet_Stat10: 2.134037195083535 - syst_JES_Zjet_Stat11: 0.6995392251332302 - syst_JES_Zjet_Stat12: 0.41818221805810923 - syst_JES_Zjet_Stat13: 0.04840224788168418 - syst_JES_Zjet_Stat2: 0.007196609850670774 - syst_JES_Zjet_Stat3: 2.1295564679059347e-12 - syst_JES_Zjet_Stat4: 0.037524973124573986 - syst_JES_Zjet_Stat5: 0.05656810408702063 - syst_JES_Zjet_Stat6: 0.16378541662797697 - syst_JES_Zjet_Stat7: 0.3219448205826582 - syst_JES_Zjet_Stat8: 0.6529335092488362 - syst_JES_Zjet_Stat9: 1.6088631288894653 - syst_JES_Zjet_Veto: 1.2882181181771972 - syst_JES_Zjet_dPhi: 1.5288487065435874 + syst_JES_Zjet_MC: 1.46383708e+01 + syst_JES_Zjet_MuScale: 1.18470462e+00 + syst_JES_Zjet_MuSmearID: 2.06061417e-01 + syst_JES_Zjet_MuSmearMS: 1.04590288e+00 + syst_JES_Zjet_OOC: 6.45267594e+00 + syst_JES_Zjet_Stat1: 9.59984795e-02 + syst_JES_Zjet_Stat10: 2.13403720e+00 + syst_JES_Zjet_Stat11: 6.99539225e-01 + syst_JES_Zjet_Stat12: 4.18182218e-01 + syst_JES_Zjet_Stat13: 4.84022479e-02 + syst_JES_Zjet_Stat2: 7.19660985e-03 + syst_JES_Zjet_Stat3: 2.12955647e-12 + syst_JES_Zjet_Stat4: 3.75249731e-02 + syst_JES_Zjet_Stat5: 5.65681041e-02 + syst_JES_Zjet_Stat6: 1.63785417e-01 + syst_JES_Zjet_Stat7: 3.21944821e-01 + syst_JES_Zjet_Stat8: 6.52933509e-01 + syst_JES_Zjet_Stat9: 1.60886313e+00 + syst_JES_Zjet_Veto: 1.28821812e+00 + syst_JES_Zjet_dPhi: 1.52884871e+00 syst_PRW: 0.0 syst_Unfolding_bias: 0.0 - syst_cleaning: 3.7074547536011817 + syst_cleaning: 3.70745475e+00 syst_lumi: 15.89 - stat: 3.91 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 6.757851433702874 - syst_JER_NP1: 0.42499494996999665 - syst_JER_NP2: 0.6239323375775614 - syst_JER_NP3: 2.1287973130385147 - syst_JER_NP4: 0.6373366045505311 - syst_JER_NP5: 0.5351976527414894 - syst_JER_NP6: 0.4528386108758837 - syst_JER_NP7: 0.06835081491833145 - syst_JER_NP8: 0.5351384493754864 - syst_JES_EtaIntercalibration_Modelling: 9.767842277084537 - syst_JES_EtaIntercalibration_NonClosure: 9.623821070655875 + syst_JER_NP0: 6.75785143e+00 + syst_JER_NP1: 4.24994950e-01 + syst_JER_NP2: 6.23932338e-01 + syst_JER_NP3: 2.12879731e+00 + syst_JER_NP4: 6.37336605e-01 + syst_JER_NP5: 5.35197653e-01 + syst_JER_NP6: 4.52838611e-01 + syst_JER_NP7: 6.83508149e-02 + syst_JER_NP8: 5.35138449e-01 + syst_JES_EtaIntercalibration_Modelling: 9.76784228e+00 + syst_JES_EtaIntercalibration_NonClosure: 9.62382107e+00 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 2.0672026388334553e-05 + syst_JES_EtaIntercalibration_Stat100: 2.06720264e-05 syst_JES_EtaIntercalibration_Stat101: 0.0 - syst_JES_EtaIntercalibration_Stat102: 0.004756898580745653 - syst_JES_EtaIntercalibration_Stat103: 0.06524405470998872 - syst_JES_EtaIntercalibration_Stat104: 0.15539526215428834 - syst_JES_EtaIntercalibration_Stat105: 0.07613320103607886 - syst_JES_EtaIntercalibration_Stat106: 0.0006756400224971875 + syst_JES_EtaIntercalibration_Stat102: 4.75689858e-03 + syst_JES_EtaIntercalibration_Stat103: 6.52440547e-02 + syst_JES_EtaIntercalibration_Stat104: 1.55395262e-01 + syst_JES_EtaIntercalibration_Stat105: 7.61332010e-02 + syst_JES_EtaIntercalibration_Stat106: 6.75640022e-04 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 0.012363828331063158 + syst_JES_EtaIntercalibration_Stat109: 1.23638283e-02 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 0.3240511379396777 - syst_JES_EtaIntercalibration_Stat111: 0.8684934124678206 - syst_JES_EtaIntercalibration_Stat112: 0.5241871302311799 - syst_JES_EtaIntercalibration_Stat113: 0.0377231920540932 - syst_JES_EtaIntercalibration_Stat114: 0.00018870693548462918 + syst_JES_EtaIntercalibration_Stat110: 3.24051138e-01 + syst_JES_EtaIntercalibration_Stat111: 8.68493412e-01 + syst_JES_EtaIntercalibration_Stat112: 5.24187130e-01 + syst_JES_EtaIntercalibration_Stat113: 3.77231921e-02 + syst_JES_EtaIntercalibration_Stat114: 1.88706935e-04 syst_JES_EtaIntercalibration_Stat115: 0.0 - syst_JES_EtaIntercalibration_Stat116: 0.01695677740609931 - syst_JES_EtaIntercalibration_Stat117: 0.005953058625614231 - syst_JES_EtaIntercalibration_Stat118: 2.0672026388334553e-05 - syst_JES_EtaIntercalibration_Stat119: 2.0672026388334553e-05 + syst_JES_EtaIntercalibration_Stat116: 1.69567774e-02 + syst_JES_EtaIntercalibration_Stat117: 5.95305863e-03 + syst_JES_EtaIntercalibration_Stat118: 2.06720264e-05 + syst_JES_EtaIntercalibration_Stat119: 2.06720264e-05 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 2.0672026388334553e-05 - syst_JES_EtaIntercalibration_Stat121: 0.0004230534097486983 - syst_JES_EtaIntercalibration_Stat122: 0.04553638545163636 - syst_JES_EtaIntercalibration_Stat123: 0.4818392548350539 - syst_JES_EtaIntercalibration_Stat124: 0.8340286805620056 - syst_JES_EtaIntercalibration_Stat125: 0.3837711134256981 - syst_JES_EtaIntercalibration_Stat126: 0.003776639908701914 + syst_JES_EtaIntercalibration_Stat120: 2.06720264e-05 + syst_JES_EtaIntercalibration_Stat121: 4.23053410e-04 + syst_JES_EtaIntercalibration_Stat122: 4.55363855e-02 + syst_JES_EtaIntercalibration_Stat123: 4.81839255e-01 + syst_JES_EtaIntercalibration_Stat124: 8.34028681e-01 + syst_JES_EtaIntercalibration_Stat125: 3.83771113e-01 + syst_JES_EtaIntercalibration_Stat126: 3.77663991e-03 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 0.012284585982034558 - syst_JES_EtaIntercalibration_Stat129: 1.2117084498756292 + syst_JES_EtaIntercalibration_Stat128: 1.22845860e-02 + syst_JES_EtaIntercalibration_Stat129: 1.21170845e+00 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 3.312176135111175 - syst_JES_EtaIntercalibration_Stat131: 0.9708029305683002 - syst_JES_EtaIntercalibration_Stat132: 0.10990693915763462 - syst_JES_EtaIntercalibration_Stat133: 0.0008080488165946411 + syst_JES_EtaIntercalibration_Stat130: 3.31217614e+00 + syst_JES_EtaIntercalibration_Stat131: 9.70802931e-01 + syst_JES_EtaIntercalibration_Stat132: 1.09906939e-01 + syst_JES_EtaIntercalibration_Stat133: 8.08048817e-04 syst_JES_EtaIntercalibration_Stat134: 0.0 - syst_JES_EtaIntercalibration_Stat135: 0.01695677740609931 - syst_JES_EtaIntercalibration_Stat136: 0.01695677740609931 - syst_JES_EtaIntercalibration_Stat137: 2.0672026388334553e-05 - syst_JES_EtaIntercalibration_Stat138: 2.0672026388334553e-05 - syst_JES_EtaIntercalibration_Stat139: 2.0672026388334553e-05 + syst_JES_EtaIntercalibration_Stat135: 1.69567774e-02 + syst_JES_EtaIntercalibration_Stat136: 1.69567774e-02 + syst_JES_EtaIntercalibration_Stat137: 2.06720264e-05 + syst_JES_EtaIntercalibration_Stat138: 2.06720264e-05 + syst_JES_EtaIntercalibration_Stat139: 2.06720264e-05 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 0.0006664065482121256 - syst_JES_EtaIntercalibration_Stat141: 0.1321271368795979 - syst_JES_EtaIntercalibration_Stat142: 0.7713723274139408 - syst_JES_EtaIntercalibration_Stat143: 2.3725329818571543 - syst_JES_EtaIntercalibration_Stat144: 1.293824667410542 - syst_JES_EtaIntercalibration_Stat145: 0.021606936918499114 - syst_JES_EtaIntercalibration_Stat146: 0.007401636221133811 - syst_JES_EtaIntercalibration_Stat147: 0.1764452155061168 - syst_JES_EtaIntercalibration_Stat148: 0.3341533864484991 - syst_JES_EtaIntercalibration_Stat149: 0.1648050723582257 + syst_JES_EtaIntercalibration_Stat140: 6.66406548e-04 + syst_JES_EtaIntercalibration_Stat141: 1.32127137e-01 + syst_JES_EtaIntercalibration_Stat142: 7.71372327e-01 + syst_JES_EtaIntercalibration_Stat143: 2.37253298e+00 + syst_JES_EtaIntercalibration_Stat144: 1.29382467e+00 + syst_JES_EtaIntercalibration_Stat145: 2.16069369e-02 + syst_JES_EtaIntercalibration_Stat146: 7.40163622e-03 + syst_JES_EtaIntercalibration_Stat147: 1.76445216e-01 + syst_JES_EtaIntercalibration_Stat148: 3.34153386e-01 + syst_JES_EtaIntercalibration_Stat149: 1.64805072e-01 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 0.015016752203788938 - syst_JES_EtaIntercalibration_Stat151: 0.0001921710371560297 + syst_JES_EtaIntercalibration_Stat150: 1.50167522e-02 + syst_JES_EtaIntercalibration_Stat151: 1.92171037e-04 syst_JES_EtaIntercalibration_Stat152: 0.0 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 2.0672026388334553e-05 + syst_JES_EtaIntercalibration_Stat156: 2.06720264e-05 syst_JES_EtaIntercalibration_Stat157: 0.0 syst_JES_EtaIntercalibration_Stat158: 0.0 - syst_JES_EtaIntercalibration_Stat159: 0.03298407911402105 - syst_JES_EtaIntercalibration_Stat16: 0.0003702383452588346 - syst_JES_EtaIntercalibration_Stat160: 0.19191855876907787 - syst_JES_EtaIntercalibration_Stat161: 0.374712556501647 - syst_JES_EtaIntercalibration_Stat162: 0.11699994049143786 - syst_JES_EtaIntercalibration_Stat163: 0.0014508648041771503 - syst_JES_EtaIntercalibration_Stat164: 0.004858522692135953 - syst_JES_EtaIntercalibration_Stat165: 0.06316325286113754 - syst_JES_EtaIntercalibration_Stat166: 0.14374584341816637 - syst_JES_EtaIntercalibration_Stat167: 0.04096824501977111 - syst_JES_EtaIntercalibration_Stat168: 0.015696086797351752 - syst_JES_EtaIntercalibration_Stat169: 0.0001921710371560297 - syst_JES_EtaIntercalibration_Stat17: 0.0005694372952195878 + syst_JES_EtaIntercalibration_Stat159: 3.29840791e-02 + syst_JES_EtaIntercalibration_Stat16: 3.70238345e-04 + syst_JES_EtaIntercalibration_Stat160: 1.91918559e-01 + syst_JES_EtaIntercalibration_Stat161: 3.74712557e-01 + syst_JES_EtaIntercalibration_Stat162: 1.16999940e-01 + syst_JES_EtaIntercalibration_Stat163: 1.45086480e-03 + syst_JES_EtaIntercalibration_Stat164: 4.85852269e-03 + syst_JES_EtaIntercalibration_Stat165: 6.31632529e-02 + syst_JES_EtaIntercalibration_Stat166: 1.43745843e-01 + syst_JES_EtaIntercalibration_Stat167: 4.09682450e-02 + syst_JES_EtaIntercalibration_Stat168: 1.56960868e-02 + syst_JES_EtaIntercalibration_Stat169: 1.92171037e-04 + syst_JES_EtaIntercalibration_Stat17: 5.69437295e-04 syst_JES_EtaIntercalibration_Stat170: 0.0 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 syst_JES_EtaIntercalibration_Stat175: 0.0 - syst_JES_EtaIntercalibration_Stat176: 1.8021988652754169e-06 - syst_JES_EtaIntercalibration_Stat177: 0.007046848710593978 - syst_JES_EtaIntercalibration_Stat178: 0.03298991664130117 - syst_JES_EtaIntercalibration_Stat179: 0.09454841021931569 - syst_JES_EtaIntercalibration_Stat18: 9.776902628133308e-06 - syst_JES_EtaIntercalibration_Stat180: 0.05023175489667866 - syst_JES_EtaIntercalibration_Stat181: 0.004846278159577719 - syst_JES_EtaIntercalibration_Stat182: 0.02837996828750871 - syst_JES_EtaIntercalibration_Stat183: 0.06438718408969288 - syst_JES_EtaIntercalibration_Stat184: 0.025855975614932806 - syst_JES_EtaIntercalibration_Stat185: 0.00404087527647167 - syst_JES_EtaIntercalibration_Stat186: 1.6878835119758712e-13 + syst_JES_EtaIntercalibration_Stat176: 1.80219887e-06 + syst_JES_EtaIntercalibration_Stat177: 7.04684871e-03 + syst_JES_EtaIntercalibration_Stat178: 3.29899166e-02 + syst_JES_EtaIntercalibration_Stat179: 9.45484102e-02 + syst_JES_EtaIntercalibration_Stat18: 9.77690263e-06 + syst_JES_EtaIntercalibration_Stat180: 5.02317549e-02 + syst_JES_EtaIntercalibration_Stat181: 4.84627816e-03 + syst_JES_EtaIntercalibration_Stat182: 2.83799683e-02 + syst_JES_EtaIntercalibration_Stat183: 6.43871841e-02 + syst_JES_EtaIntercalibration_Stat184: 2.58559756e-02 + syst_JES_EtaIntercalibration_Stat185: 4.04087528e-03 + syst_JES_EtaIntercalibration_Stat186: 1.68788351e-13 syst_JES_EtaIntercalibration_Stat187: 0.0 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 @@ -45614,31 +45614,31 @@ bins: syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 syst_JES_EtaIntercalibration_Stat192: 0.0 - syst_JES_EtaIntercalibration_Stat193: 3.3859755507091305e-05 - syst_JES_EtaIntercalibration_Stat194: 0.0010408901707192743 - syst_JES_EtaIntercalibration_Stat195: 0.022197082578573248 - syst_JES_EtaIntercalibration_Stat196: 0.05369617002170639 - syst_JES_EtaIntercalibration_Stat197: 0.02525142467267936 - syst_JES_EtaIntercalibration_Stat198: 0.0016093137264063832 - syst_JES_EtaIntercalibration_Stat199: 0.0007019556164744321 + syst_JES_EtaIntercalibration_Stat193: 3.38597555e-05 + syst_JES_EtaIntercalibration_Stat194: 1.04089017e-03 + syst_JES_EtaIntercalibration_Stat195: 2.21970826e-02 + syst_JES_EtaIntercalibration_Stat196: 5.36961700e-02 + syst_JES_EtaIntercalibration_Stat197: 2.52514247e-02 + syst_JES_EtaIntercalibration_Stat198: 1.60931373e-03 + syst_JES_EtaIntercalibration_Stat199: 7.01955616e-04 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 6.694033149204408e-05 - syst_JES_EtaIntercalibration_Stat201: 1.6878835119758712e-13 + syst_JES_EtaIntercalibration_Stat200: 6.69403315e-05 + syst_JES_EtaIntercalibration_Stat201: 1.68788351e-13 syst_JES_EtaIntercalibration_Stat202: 0.0 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 syst_JES_EtaIntercalibration_Stat207: 0.0 - syst_JES_EtaIntercalibration_Stat208: 1.3172246391561313e-22 - syst_JES_EtaIntercalibration_Stat209: 1.467045985834421e-20 + syst_JES_EtaIntercalibration_Stat208: 1.31722464e-22 + syst_JES_EtaIntercalibration_Stat209: 1.46704599e-20 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 0.00019184676176573843 - syst_JES_EtaIntercalibration_Stat211: 0.000989698159794187 - syst_JES_EtaIntercalibration_Stat212: 8.992268679677004e-08 - syst_JES_EtaIntercalibration_Stat213: 1.7485052902407819e-12 - syst_JES_EtaIntercalibration_Stat214: 1.6878835119758712e-13 + syst_JES_EtaIntercalibration_Stat210: 1.91846762e-04 + syst_JES_EtaIntercalibration_Stat211: 9.89698160e-04 + syst_JES_EtaIntercalibration_Stat212: 8.99226868e-08 + syst_JES_EtaIntercalibration_Stat213: 1.74850529e-12 + syst_JES_EtaIntercalibration_Stat214: 1.68788351e-13 syst_JES_EtaIntercalibration_Stat215: 0.0 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 @@ -45647,10 +45647,10 @@ bins: syst_JES_EtaIntercalibration_Stat22: 0.0 syst_JES_EtaIntercalibration_Stat220: 0.0 syst_JES_EtaIntercalibration_Stat221: 0.0 - syst_JES_EtaIntercalibration_Stat222: 1.4012291033232216e-26 - syst_JES_EtaIntercalibration_Stat223: 2.5644997619845374e-06 - syst_JES_EtaIntercalibration_Stat224: 5.868822911388712e-17 - syst_JES_EtaIntercalibration_Stat225: 2.524114498195357e-22 + syst_JES_EtaIntercalibration_Stat222: 1.40122910e-26 + syst_JES_EtaIntercalibration_Stat223: 2.56449976e-06 + syst_JES_EtaIntercalibration_Stat224: 5.86882291e-17 + syst_JES_EtaIntercalibration_Stat225: 2.52411450e-22 syst_JES_EtaIntercalibration_Stat226: 0.0 syst_JES_EtaIntercalibration_Stat227: 0.0 syst_JES_EtaIntercalibration_Stat228: 0.0 @@ -45660,290 +45660,290 @@ bins: syst_JES_EtaIntercalibration_Stat231: 0.0 syst_JES_EtaIntercalibration_Stat232: 0.0 syst_JES_EtaIntercalibration_Stat233: 0.0 - syst_JES_EtaIntercalibration_Stat234: 2.892524848640025e-22 - syst_JES_EtaIntercalibration_Stat235: 1.4912957453168032e-13 + syst_JES_EtaIntercalibration_Stat234: 2.89252485e-22 + syst_JES_EtaIntercalibration_Stat235: 1.49129575e-13 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 syst_JES_EtaIntercalibration_Stat239: 0.0 - syst_JES_EtaIntercalibration_Stat24: 5.47674465353279e-05 + syst_JES_EtaIntercalibration_Stat24: 5.47674465e-05 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 syst_JES_EtaIntercalibration_Stat243: 0.0 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 - syst_JES_EtaIntercalibration_Stat25: 0.0009297910128087923 - syst_JES_EtaIntercalibration_Stat26: 0.007153711257102848 - syst_JES_EtaIntercalibration_Stat27: 0.0017508985885824455 - syst_JES_EtaIntercalibration_Stat28: 0.0004910650050655208 + syst_JES_EtaIntercalibration_Stat25: 9.29791013e-04 + syst_JES_EtaIntercalibration_Stat26: 7.15371126e-03 + syst_JES_EtaIntercalibration_Stat27: 1.75089859e-03 + syst_JES_EtaIntercalibration_Stat28: 4.91065005e-04 syst_JES_EtaIntercalibration_Stat29: 0.0 - syst_JES_EtaIntercalibration_Stat3: 0.00012293328221031112 + syst_JES_EtaIntercalibration_Stat3: 1.22933282e-04 syst_JES_EtaIntercalibration_Stat30: 0.0 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 0.0006547152052610356 - syst_JES_EtaIntercalibration_Stat36: 0.0006547152052610356 - syst_JES_EtaIntercalibration_Stat37: 0.0005121172290599097 - syst_JES_EtaIntercalibration_Stat38: 0.00124390092350637 - syst_JES_EtaIntercalibration_Stat39: 0.0034260334481000035 - syst_JES_EtaIntercalibration_Stat4: 0.0006302493648350627 - syst_JES_EtaIntercalibration_Stat40: 0.0021973584323000195 + syst_JES_EtaIntercalibration_Stat35: 6.54715205e-04 + syst_JES_EtaIntercalibration_Stat36: 6.54715205e-04 + syst_JES_EtaIntercalibration_Stat37: 5.12117229e-04 + syst_JES_EtaIntercalibration_Stat38: 1.24390092e-03 + syst_JES_EtaIntercalibration_Stat39: 3.42603345e-03 + syst_JES_EtaIntercalibration_Stat4: 6.30249365e-04 + syst_JES_EtaIntercalibration_Stat40: 2.19735843e-03 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 syst_JES_EtaIntercalibration_Stat44: 0.0 syst_JES_EtaIntercalibration_Stat45: 0.0 - syst_JES_EtaIntercalibration_Stat46: 0.00015521461368054232 - syst_JES_EtaIntercalibration_Stat47: 0.004145896646082727 - syst_JES_EtaIntercalibration_Stat48: 0.011486830502797541 - syst_JES_EtaIntercalibration_Stat49: 0.003393768225365427 - syst_JES_EtaIntercalibration_Stat5: 0.0006277611169449729 - syst_JES_EtaIntercalibration_Stat50: 0.0009225078251700633 + syst_JES_EtaIntercalibration_Stat46: 1.55214614e-04 + syst_JES_EtaIntercalibration_Stat47: 4.14589665e-03 + syst_JES_EtaIntercalibration_Stat48: 1.14868305e-02 + syst_JES_EtaIntercalibration_Stat49: 3.39376823e-03 + syst_JES_EtaIntercalibration_Stat5: 6.27761117e-04 + syst_JES_EtaIntercalibration_Stat50: 9.22507825e-04 syst_JES_EtaIntercalibration_Stat51: 0.0 syst_JES_EtaIntercalibration_Stat52: 0.0 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 2.0672026388334553e-05 - syst_JES_EtaIntercalibration_Stat57: 0.0006547152052610356 - syst_JES_EtaIntercalibration_Stat58: 0.0006547152052610356 - syst_JES_EtaIntercalibration_Stat59: 0.0007709784481423589 + syst_JES_EtaIntercalibration_Stat56: 2.06720264e-05 + syst_JES_EtaIntercalibration_Stat57: 6.54715205e-04 + syst_JES_EtaIntercalibration_Stat58: 6.54715205e-04 + syst_JES_EtaIntercalibration_Stat59: 7.70978448e-04 syst_JES_EtaIntercalibration_Stat6: 0.0 - syst_JES_EtaIntercalibration_Stat60: 0.002585687155148511 - syst_JES_EtaIntercalibration_Stat61: 0.00868437055652711 - syst_JES_EtaIntercalibration_Stat62: 0.00572434546476713 - syst_JES_EtaIntercalibration_Stat63: 7.575168659429306e-05 + syst_JES_EtaIntercalibration_Stat60: 2.58568716e-03 + syst_JES_EtaIntercalibration_Stat61: 8.68437056e-03 + syst_JES_EtaIntercalibration_Stat62: 5.72434546e-03 + syst_JES_EtaIntercalibration_Stat63: 7.57516866e-05 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 0.0005216600497450422 - syst_JES_EtaIntercalibration_Stat69: 0.03462378316634391 + syst_JES_EtaIntercalibration_Stat68: 5.21660050e-04 + syst_JES_EtaIntercalibration_Stat69: 3.46237832e-02 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 0.06966784839508107 - syst_JES_EtaIntercalibration_Stat71: 0.013946886821079463 - syst_JES_EtaIntercalibration_Stat72: 0.0036984583274656483 + syst_JES_EtaIntercalibration_Stat70: 6.96678484e-02 + syst_JES_EtaIntercalibration_Stat71: 1.39468868e-02 + syst_JES_EtaIntercalibration_Stat72: 3.69845833e-03 syst_JES_EtaIntercalibration_Stat73: 0.0 syst_JES_EtaIntercalibration_Stat74: 0.0 syst_JES_EtaIntercalibration_Stat75: 0.0 - syst_JES_EtaIntercalibration_Stat76: 0.0004133539252263126 - syst_JES_EtaIntercalibration_Stat77: 2.0672026388334553e-05 - syst_JES_EtaIntercalibration_Stat78: 2.0672026388334553e-05 - syst_JES_EtaIntercalibration_Stat79: 0.0006547152052610356 + syst_JES_EtaIntercalibration_Stat76: 4.13353925e-04 + syst_JES_EtaIntercalibration_Stat77: 2.06720264e-05 + syst_JES_EtaIntercalibration_Stat78: 2.06720264e-05 + syst_JES_EtaIntercalibration_Stat79: 6.54715205e-04 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 0.0006601711653048776 - syst_JES_EtaIntercalibration_Stat81: 0.0011050401893143978 - syst_JES_EtaIntercalibration_Stat82: 0.023171628141975695 - syst_JES_EtaIntercalibration_Stat83: 0.05566820165049344 - syst_JES_EtaIntercalibration_Stat84: 0.0177025446405312 - syst_JES_EtaIntercalibration_Stat85: 9.386993807923813e-05 + syst_JES_EtaIntercalibration_Stat80: 6.60171165e-04 + syst_JES_EtaIntercalibration_Stat81: 1.10504019e-03 + syst_JES_EtaIntercalibration_Stat82: 2.31716281e-02 + syst_JES_EtaIntercalibration_Stat83: 5.56682017e-02 + syst_JES_EtaIntercalibration_Stat84: 1.77025446e-02 + syst_JES_EtaIntercalibration_Stat85: 9.38699381e-05 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 0.0007614475753458015 + syst_JES_EtaIntercalibration_Stat89: 7.61447575e-04 syst_JES_EtaIntercalibration_Stat9: 0.0 - syst_JES_EtaIntercalibration_Stat90: 0.05475616198200893 - syst_JES_EtaIntercalibration_Stat91: 0.16753017250632796 - syst_JES_EtaIntercalibration_Stat92: 0.08017527798517445 - syst_JES_EtaIntercalibration_Stat93: 0.00837021008483658 + syst_JES_EtaIntercalibration_Stat90: 5.47561620e-02 + syst_JES_EtaIntercalibration_Stat91: 1.67530173e-01 + syst_JES_EtaIntercalibration_Stat92: 8.01752780e-02 + syst_JES_EtaIntercalibration_Stat93: 8.37021008e-03 syst_JES_EtaIntercalibration_Stat94: 0.0 syst_JES_EtaIntercalibration_Stat95: 0.0 - syst_JES_EtaIntercalibration_Stat96: 0.005953058625614231 - syst_JES_EtaIntercalibration_Stat97: 0.0004133539252263126 - syst_JES_EtaIntercalibration_Stat98: 2.0672026388334553e-05 - syst_JES_EtaIntercalibration_Stat99: 2.0672026388334553e-05 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.04901233646346091 - syst_JES_Flavour_Comp: 0.7119940870540991 - syst_JES_Flavour_Response: 11.845542737671416 - syst_JES_Gjet_Generator: 8.595433555091914 - syst_JES_Gjet_OOC: 4.765510255995679 - syst_JES_Gjet_Purity: 1.6653849404867331 - syst_JES_Gjet_Stat1: 0.002941022271251954 - syst_JES_Gjet_Stat10: 0.31974867798788476 - syst_JES_Gjet_Stat11: 0.10007035062894504 - syst_JES_Gjet_Stat12: 0.061860293348716615 - syst_JES_Gjet_Stat13: 0.020045767633094024 - syst_JES_Gjet_Stat14: 0.00028911257654891116 - syst_JES_Gjet_Stat15: 5.178829252763e-20 + syst_JES_EtaIntercalibration_Stat96: 5.95305863e-03 + syst_JES_EtaIntercalibration_Stat97: 4.13353925e-04 + syst_JES_EtaIntercalibration_Stat98: 2.06720264e-05 + syst_JES_EtaIntercalibration_Stat99: 2.06720264e-05 + syst_JES_EtaIntercalibration_TotalStat_MJB: 4.90123365e-02 + syst_JES_Flavour_Comp: 7.11994087e-01 + syst_JES_Flavour_Response: 1.18455427e+01 + syst_JES_Gjet_Generator: 8.59543356e+00 + syst_JES_Gjet_OOC: 4.76551026e+00 + syst_JES_Gjet_Purity: 1.66538494e+00 + syst_JES_Gjet_Stat1: 2.94102227e-03 + syst_JES_Gjet_Stat10: 3.19748678e-01 + syst_JES_Gjet_Stat11: 1.00070351e-01 + syst_JES_Gjet_Stat12: 6.18602933e-02 + syst_JES_Gjet_Stat13: 2.00457676e-02 + syst_JES_Gjet_Stat14: 2.89112577e-04 + syst_JES_Gjet_Stat15: 5.17882925e-20 syst_JES_Gjet_Stat2: 0.0 - syst_JES_Gjet_Stat3: 0.007811549142135637 - syst_JES_Gjet_Stat4: 0.015076514542492902 - syst_JES_Gjet_Stat5: 0.039742561568172734 - syst_JES_Gjet_Stat6: 0.1568120265636536 - syst_JES_Gjet_Stat7: 0.3755837057168482 - syst_JES_Gjet_Stat8: 0.30909019719169356 - syst_JES_Gjet_Stat9: 0.41231098396719923 - syst_JES_Gjet_Veto: 1.8705822622916106 - syst_JES_Gjet_dPhi: 0.7092102791133248 - syst_JES_LArESZee: 7.372804215493586 - syst_JES_LArEsmear: 0.6467101881832387 - syst_JES_LAr_JVT: 1.0157660200558 - syst_JES_MJB_Alpha: 2.908113305908145e-15 - syst_JES_MJB_Asym: 0.0004119400714324393 + syst_JES_Gjet_Stat3: 7.81154914e-03 + syst_JES_Gjet_Stat4: 1.50765145e-02 + syst_JES_Gjet_Stat5: 3.97425616e-02 + syst_JES_Gjet_Stat6: 1.56812027e-01 + syst_JES_Gjet_Stat7: 3.75583706e-01 + syst_JES_Gjet_Stat8: 3.09090197e-01 + syst_JES_Gjet_Stat9: 4.12310984e-01 + syst_JES_Gjet_Veto: 1.87058226e+00 + syst_JES_Gjet_dPhi: 7.09210279e-01 + syst_JES_LArESZee: 7.37280422e+00 + syst_JES_LArEsmear: 6.46710188e-01 + syst_JES_LAr_JVT: 1.01576602e+00 + syst_JES_MJB_Alpha: 2.90811331e-15 + syst_JES_MJB_Asym: 4.11940071e-04 syst_JES_MJB_Beta: 0.0 - syst_JES_MJB_Fragmentation: 0.06211538763261483 - syst_JES_MJB_Stat1: 2.191910296978414e-08 + syst_JES_MJB_Fragmentation: 6.21153876e-02 + syst_JES_MJB_Stat1: 2.19191030e-08 syst_JES_MJB_Stat10: 0.0 - syst_JES_MJB_Stat11: 1.2973060548690891e-35 + syst_JES_MJB_Stat11: 1.29730605e-35 syst_JES_MJB_Stat12: 0.0 syst_JES_MJB_Stat13: 0.0 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 0.0034252170849578727 - syst_JES_MJB_Stat3: 0.00019771359968091525 - syst_JES_MJB_Stat4: 2.1936423477859832e-26 - syst_JES_MJB_Stat5: 5.200482549725555e-12 + syst_JES_MJB_Stat2: 3.42521708e-03 + syst_JES_MJB_Stat3: 1.97713600e-04 + syst_JES_MJB_Stat4: 2.19364235e-26 + syst_JES_MJB_Stat5: 5.20048255e-12 syst_JES_MJB_Stat6: 0.0 syst_JES_MJB_Stat7: 0.0 syst_JES_MJB_Stat8: 0.0 syst_JES_MJB_Stat9: 0.0 - syst_JES_MJB_Threshold: 0.0009381353900157483 - syst_JES_Pileup_MuOffset: 3.214681596357409e-05 - syst_JES_Pileup_NPVOffset: 0.4293731098939476 - syst_JES_Pileup_Pt_term: 2.6003407469022206 - syst_JES_Pileup_Rho_topology: 3.0733299123263675 - syst_JES_PunchThrough_MC15: 4.5024658989917815e-08 + syst_JES_MJB_Threshold: 9.38135390e-04 + syst_JES_Pileup_MuOffset: 3.21468160e-05 + syst_JES_Pileup_NPVOffset: 4.29373110e-01 + syst_JES_Pileup_Pt_term: 2.60034075e+00 + syst_JES_Pileup_Rho_topology: 3.07332991e+00 + syst_JES_PunchThrough_MC15: 4.50246590e-08 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 7.604991568042663 - syst_JES_Zjet_MuScale: 0.5422309540223612 - syst_JES_Zjet_MuSmearID: 0.10239446176429659 - syst_JES_Zjet_MuSmearMS: 0.5932304864047363 - syst_JES_Zjet_OOC: 2.8119251412510966 - syst_JES_Zjet_Stat1: 0.03732067527524121 - syst_JES_Zjet_Stat10: 1.1186685031768795 - syst_JES_Zjet_Stat11: 0.598632798550163 - syst_JES_Zjet_Stat12: 0.17798395341996423 - syst_JES_Zjet_Stat13: 0.05050783181844178 - syst_JES_Zjet_Stat2: 0.0037041224438556296 - syst_JES_Zjet_Stat3: 1.5380611171211632e-08 - syst_JES_Zjet_Stat4: 0.005584237272895914 - syst_JES_Zjet_Stat5: 0.007988139896120999 - syst_JES_Zjet_Stat6: 0.05636627604339318 - syst_JES_Zjet_Stat7: 0.10585636057885232 - syst_JES_Zjet_Stat8: 0.20961278586956475 - syst_JES_Zjet_Stat9: 0.6083098121023529 - syst_JES_Zjet_Veto: 0.5738921915307786 - syst_JES_Zjet_dPhi: 0.7071586172846936 + syst_JES_Zjet_MC: 7.60499157e+00 + syst_JES_Zjet_MuScale: 5.42230954e-01 + syst_JES_Zjet_MuSmearID: 1.02394462e-01 + syst_JES_Zjet_MuSmearMS: 5.93230486e-01 + syst_JES_Zjet_OOC: 2.81192514e+00 + syst_JES_Zjet_Stat1: 3.73206753e-02 + syst_JES_Zjet_Stat10: 1.11866850e+00 + syst_JES_Zjet_Stat11: 5.98632799e-01 + syst_JES_Zjet_Stat12: 1.77983953e-01 + syst_JES_Zjet_Stat13: 5.05078318e-02 + syst_JES_Zjet_Stat2: 3.70412244e-03 + syst_JES_Zjet_Stat3: 1.53806112e-08 + syst_JES_Zjet_Stat4: 5.58423727e-03 + syst_JES_Zjet_Stat5: 7.98813990e-03 + syst_JES_Zjet_Stat6: 5.63662760e-02 + syst_JES_Zjet_Stat7: 1.05856361e-01 + syst_JES_Zjet_Stat8: 2.09612786e-01 + syst_JES_Zjet_Stat9: 6.08309812e-01 + syst_JES_Zjet_Veto: 5.73892192e-01 + syst_JES_Zjet_dPhi: 7.07158617e-01 syst_PRW: 0.0 syst_Unfolding_bias: 0.0 - syst_cleaning: 2.0611404610069637 + syst_cleaning: 2.06114046e+00 syst_lumi: 8.187 - stat: 1.7133 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 3.228914368638475 - syst_JER_NP1: 0.29707589939273094 - syst_JER_NP2: 0.31978227014642324 - syst_JER_NP3: 0.9860124276600168 - syst_JER_NP4: 0.27563172440776845 - syst_JER_NP5: 0.26405000946790363 - syst_JER_NP6: 0.24015896298077236 - syst_JER_NP7: 0.007484234630207688 - syst_JER_NP8: 0.27376141072108756 - syst_JES_EtaIntercalibration_Modelling: 5.482503693569207 - syst_JES_EtaIntercalibration_NonClosure: 3.7373630115363423 + syst_JER_NP0: 3.22891437e+00 + syst_JER_NP1: 2.97075899e-01 + syst_JER_NP2: 3.19782270e-01 + syst_JER_NP3: 9.86012428e-01 + syst_JER_NP4: 2.75631724e-01 + syst_JER_NP5: 2.64050009e-01 + syst_JER_NP6: 2.40158963e-01 + syst_JER_NP7: 7.48423463e-03 + syst_JER_NP8: 2.73761411e-01 + syst_JES_EtaIntercalibration_Modelling: 5.48250369e+00 + syst_JES_EtaIntercalibration_NonClosure: 3.73736301e+00 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 9.181601330922619e-07 + syst_JES_EtaIntercalibration_Stat100: 9.18160133e-07 syst_JES_EtaIntercalibration_Stat101: 0.0 - syst_JES_EtaIntercalibration_Stat102: 0.000743660169365013 - syst_JES_EtaIntercalibration_Stat103: 0.007410531070712814 - syst_JES_EtaIntercalibration_Stat104: 0.0353073675031147 - syst_JES_EtaIntercalibration_Stat105: 0.013918314939316468 - syst_JES_EtaIntercalibration_Stat106: 0.0002841651943412493 + syst_JES_EtaIntercalibration_Stat102: 7.43660169e-04 + syst_JES_EtaIntercalibration_Stat103: 7.41053107e-03 + syst_JES_EtaIntercalibration_Stat104: 3.53073675e-02 + syst_JES_EtaIntercalibration_Stat105: 1.39183149e-02 + syst_JES_EtaIntercalibration_Stat106: 2.84165194e-04 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 0.004911751496920421 + syst_JES_EtaIntercalibration_Stat109: 4.91175150e-03 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 0.09952993167886734 - syst_JES_EtaIntercalibration_Stat111: 0.2897287697140206 - syst_JES_EtaIntercalibration_Stat112: 0.17310929351135368 - syst_JES_EtaIntercalibration_Stat113: 0.007232916631622405 - syst_JES_EtaIntercalibration_Stat114: 0.0005525242076144718 + syst_JES_EtaIntercalibration_Stat110: 9.95299317e-02 + syst_JES_EtaIntercalibration_Stat111: 2.89728770e-01 + syst_JES_EtaIntercalibration_Stat112: 1.73109294e-01 + syst_JES_EtaIntercalibration_Stat113: 7.23291663e-03 + syst_JES_EtaIntercalibration_Stat114: 5.52524208e-04 syst_JES_EtaIntercalibration_Stat115: 0.0 - syst_JES_EtaIntercalibration_Stat116: 0.008814406559718017 - syst_JES_EtaIntercalibration_Stat117: 0.005006492859277839 - syst_JES_EtaIntercalibration_Stat118: 9.181601330922619e-07 - syst_JES_EtaIntercalibration_Stat119: 9.181601330922619e-07 + syst_JES_EtaIntercalibration_Stat116: 8.81440656e-03 + syst_JES_EtaIntercalibration_Stat117: 5.00649286e-03 + syst_JES_EtaIntercalibration_Stat118: 9.18160133e-07 + syst_JES_EtaIntercalibration_Stat119: 9.18160133e-07 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 9.181601330922619e-07 - syst_JES_EtaIntercalibration_Stat121: 0.00011535458378408724 - syst_JES_EtaIntercalibration_Stat122: 0.013619217185653511 - syst_JES_EtaIntercalibration_Stat123: 0.16591693704983826 - syst_JES_EtaIntercalibration_Stat124: 0.26904677567293017 - syst_JES_EtaIntercalibration_Stat125: 0.1159678278661802 - syst_JES_EtaIntercalibration_Stat126: 0.0010479666033204492 + syst_JES_EtaIntercalibration_Stat120: 9.18160133e-07 + syst_JES_EtaIntercalibration_Stat121: 1.15354584e-04 + syst_JES_EtaIntercalibration_Stat122: 1.36192172e-02 + syst_JES_EtaIntercalibration_Stat123: 1.65916937e-01 + syst_JES_EtaIntercalibration_Stat124: 2.69046776e-01 + syst_JES_EtaIntercalibration_Stat125: 1.15967828e-01 + syst_JES_EtaIntercalibration_Stat126: 1.04796660e-03 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 0.00603653979942152 - syst_JES_EtaIntercalibration_Stat129: 0.6852302149642848 + syst_JES_EtaIntercalibration_Stat128: 6.03653980e-03 + syst_JES_EtaIntercalibration_Stat129: 6.85230215e-01 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 1.5966316889001047 - syst_JES_EtaIntercalibration_Stat131: 0.5457236113638478 - syst_JES_EtaIntercalibration_Stat132: 0.05329195811752464 - syst_JES_EtaIntercalibration_Stat133: 0.0016889142162940071 + syst_JES_EtaIntercalibration_Stat130: 1.59663169e+00 + syst_JES_EtaIntercalibration_Stat131: 5.45723611e-01 + syst_JES_EtaIntercalibration_Stat132: 5.32919581e-02 + syst_JES_EtaIntercalibration_Stat133: 1.68891422e-03 syst_JES_EtaIntercalibration_Stat134: 0.0 - syst_JES_EtaIntercalibration_Stat135: 0.008814406559718017 - syst_JES_EtaIntercalibration_Stat136: 0.008814406559718017 - syst_JES_EtaIntercalibration_Stat137: 9.181601330922619e-07 - syst_JES_EtaIntercalibration_Stat138: 9.181601330922619e-07 - syst_JES_EtaIntercalibration_Stat139: 9.181601330922619e-07 + syst_JES_EtaIntercalibration_Stat135: 8.81440656e-03 + syst_JES_EtaIntercalibration_Stat136: 8.81440656e-03 + syst_JES_EtaIntercalibration_Stat137: 9.18160133e-07 + syst_JES_EtaIntercalibration_Stat138: 9.18160133e-07 + syst_JES_EtaIntercalibration_Stat139: 9.18160133e-07 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 1.5025540755660012e-05 - syst_JES_EtaIntercalibration_Stat141: 0.06426292146331351 - syst_JES_EtaIntercalibration_Stat142: 0.40580946267922346 - syst_JES_EtaIntercalibration_Stat143: 1.1789009882089334 - syst_JES_EtaIntercalibration_Stat144: 0.6433921587958622 - syst_JES_EtaIntercalibration_Stat145: 0.008876874154227938 - syst_JES_EtaIntercalibration_Stat146: 0.0073364064173135875 - syst_JES_EtaIntercalibration_Stat147: 0.1772799765201925 - syst_JES_EtaIntercalibration_Stat148: 0.4063695608679371 - syst_JES_EtaIntercalibration_Stat149: 0.13978625218525603 + syst_JES_EtaIntercalibration_Stat140: 1.50255408e-05 + syst_JES_EtaIntercalibration_Stat141: 6.42629215e-02 + syst_JES_EtaIntercalibration_Stat142: 4.05809463e-01 + syst_JES_EtaIntercalibration_Stat143: 1.17890099e+00 + syst_JES_EtaIntercalibration_Stat144: 6.43392159e-01 + syst_JES_EtaIntercalibration_Stat145: 8.87687415e-03 + syst_JES_EtaIntercalibration_Stat146: 7.33640642e-03 + syst_JES_EtaIntercalibration_Stat147: 1.77279977e-01 + syst_JES_EtaIntercalibration_Stat148: 4.06369561e-01 + syst_JES_EtaIntercalibration_Stat149: 1.39786252e-01 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 0.014978270527667738 - syst_JES_EtaIntercalibration_Stat151: 0.0005539099843709867 + syst_JES_EtaIntercalibration_Stat150: 1.49782705e-02 + syst_JES_EtaIntercalibration_Stat151: 5.53909984e-04 syst_JES_EtaIntercalibration_Stat152: 0.0 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 9.181601330922619e-07 + syst_JES_EtaIntercalibration_Stat156: 9.18160133e-07 syst_JES_EtaIntercalibration_Stat157: 0.0 syst_JES_EtaIntercalibration_Stat158: 0.0 - syst_JES_EtaIntercalibration_Stat159: 0.01191446192658317 - syst_JES_EtaIntercalibration_Stat16: 0.0002060068193701364 - syst_JES_EtaIntercalibration_Stat160: 0.20633078951043635 - syst_JES_EtaIntercalibration_Stat161: 0.40932846224028935 - syst_JES_EtaIntercalibration_Stat162: 0.10628446782103207 - syst_JES_EtaIntercalibration_Stat163: 0.0007871376690262003 - syst_JES_EtaIntercalibration_Stat164: 0.002381539004509479 - syst_JES_EtaIntercalibration_Stat165: 0.016699423543344243 - syst_JES_EtaIntercalibration_Stat166: 0.03153895887232171 - syst_JES_EtaIntercalibration_Stat167: 0.019645922242287332 - syst_JES_EtaIntercalibration_Stat168: 0.007188126219236485 - syst_JES_EtaIntercalibration_Stat169: 0.0005539099843709867 - syst_JES_EtaIntercalibration_Stat17: 0.00022962777923613684 + syst_JES_EtaIntercalibration_Stat159: 1.19144619e-02 + syst_JES_EtaIntercalibration_Stat16: 2.06006819e-04 + syst_JES_EtaIntercalibration_Stat160: 2.06330790e-01 + syst_JES_EtaIntercalibration_Stat161: 4.09328462e-01 + syst_JES_EtaIntercalibration_Stat162: 1.06284468e-01 + syst_JES_EtaIntercalibration_Stat163: 7.87137669e-04 + syst_JES_EtaIntercalibration_Stat164: 2.38153900e-03 + syst_JES_EtaIntercalibration_Stat165: 1.66994235e-02 + syst_JES_EtaIntercalibration_Stat166: 3.15389589e-02 + syst_JES_EtaIntercalibration_Stat167: 1.96459222e-02 + syst_JES_EtaIntercalibration_Stat168: 7.18812622e-03 + syst_JES_EtaIntercalibration_Stat169: 5.53909984e-04 + syst_JES_EtaIntercalibration_Stat17: 2.29627779e-04 syst_JES_EtaIntercalibration_Stat170: 0.0 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 syst_JES_EtaIntercalibration_Stat175: 0.0 - syst_JES_EtaIntercalibration_Stat176: 1.622931606692038e-05 - syst_JES_EtaIntercalibration_Stat177: 0.005008224910085409 - syst_JES_EtaIntercalibration_Stat178: 0.027911468086612712 - syst_JES_EtaIntercalibration_Stat179: 0.05581830220232428 - syst_JES_EtaIntercalibration_Stat18: 7.432082211601267e-07 - syst_JES_EtaIntercalibration_Stat180: 0.02615027533315854 - syst_JES_EtaIntercalibration_Stat181: 0.003368405808022522 - syst_JES_EtaIntercalibration_Stat182: 0.03218072870523599 - syst_JES_EtaIntercalibration_Stat183: 0.07086598055484733 - syst_JES_EtaIntercalibration_Stat184: 0.0313799725143283 - syst_JES_EtaIntercalibration_Stat185: 0.002105253620707016 - syst_JES_EtaIntercalibration_Stat186: 4.083309778843628e-10 + syst_JES_EtaIntercalibration_Stat176: 1.62293161e-05 + syst_JES_EtaIntercalibration_Stat177: 5.00822491e-03 + syst_JES_EtaIntercalibration_Stat178: 2.79114681e-02 + syst_JES_EtaIntercalibration_Stat179: 5.58183022e-02 + syst_JES_EtaIntercalibration_Stat18: 7.43208221e-07 + syst_JES_EtaIntercalibration_Stat180: 2.61502753e-02 + syst_JES_EtaIntercalibration_Stat181: 3.36840581e-03 + syst_JES_EtaIntercalibration_Stat182: 3.21807287e-02 + syst_JES_EtaIntercalibration_Stat183: 7.08659806e-02 + syst_JES_EtaIntercalibration_Stat184: 3.13799725e-02 + syst_JES_EtaIntercalibration_Stat185: 2.10525362e-03 + syst_JES_EtaIntercalibration_Stat186: 4.08330978e-10 syst_JES_EtaIntercalibration_Stat187: 0.0 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 @@ -45951,31 +45951,31 @@ bins: syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 syst_JES_EtaIntercalibration_Stat192: 0.0 - syst_JES_EtaIntercalibration_Stat193: 0.00024423026900857313 - syst_JES_EtaIntercalibration_Stat194: 0.0033493675641828266 - syst_JES_EtaIntercalibration_Stat195: 0.036547515647441756 - syst_JES_EtaIntercalibration_Stat196: 0.07034785764328576 - syst_JES_EtaIntercalibration_Stat197: 0.03399204759940184 - syst_JES_EtaIntercalibration_Stat198: 0.006598716314556945 - syst_JES_EtaIntercalibration_Stat199: 0.0030020403061917743 + syst_JES_EtaIntercalibration_Stat193: 2.44230269e-04 + syst_JES_EtaIntercalibration_Stat194: 3.34936756e-03 + syst_JES_EtaIntercalibration_Stat195: 3.65475156e-02 + syst_JES_EtaIntercalibration_Stat196: 7.03478576e-02 + syst_JES_EtaIntercalibration_Stat197: 3.39920476e-02 + syst_JES_EtaIntercalibration_Stat198: 6.59871631e-03 + syst_JES_EtaIntercalibration_Stat199: 3.00204031e-03 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 0.000766746767653441 - syst_JES_EtaIntercalibration_Stat201: 4.083309778843628e-10 + syst_JES_EtaIntercalibration_Stat200: 7.66746768e-04 + syst_JES_EtaIntercalibration_Stat201: 4.08330978e-10 syst_JES_EtaIntercalibration_Stat202: 0.0 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 syst_JES_EtaIntercalibration_Stat207: 0.0 - syst_JES_EtaIntercalibration_Stat208: 9.150424416386379e-17 - syst_JES_EtaIntercalibration_Stat209: 1.0191979688839783e-14 + syst_JES_EtaIntercalibration_Stat208: 9.15042442e-17 + syst_JES_EtaIntercalibration_Stat209: 1.01919797e-14 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 0.0017322084170214623 - syst_JES_EtaIntercalibration_Stat211: 0.007665363526930736 - syst_JES_EtaIntercalibration_Stat212: 2.8738425439644395e-06 - syst_JES_EtaIntercalibration_Stat213: 4.229668072083198e-09 - syst_JES_EtaIntercalibration_Stat214: 4.083309778843628e-10 + syst_JES_EtaIntercalibration_Stat210: 1.73220842e-03 + syst_JES_EtaIntercalibration_Stat211: 7.66536353e-03 + syst_JES_EtaIntercalibration_Stat212: 2.87384254e-06 + syst_JES_EtaIntercalibration_Stat213: 4.22966807e-09 + syst_JES_EtaIntercalibration_Stat214: 4.08330978e-10 syst_JES_EtaIntercalibration_Stat215: 0.0 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 @@ -45983,11 +45983,11 @@ bins: syst_JES_EtaIntercalibration_Stat219: 0.0 syst_JES_EtaIntercalibration_Stat22: 0.0 syst_JES_EtaIntercalibration_Stat220: 0.0 - syst_JES_EtaIntercalibration_Stat221: 4.300682155193522e-42 - syst_JES_EtaIntercalibration_Stat222: 3.653761178566746e-19 - syst_JES_EtaIntercalibration_Stat223: 2.246282343579052e-05 - syst_JES_EtaIntercalibration_Stat224: 1.8854680660957902e-12 - syst_JES_EtaIntercalibration_Stat225: 1.753575418965492e-16 + syst_JES_EtaIntercalibration_Stat221: 4.30068216e-42 + syst_JES_EtaIntercalibration_Stat222: 3.65376118e-19 + syst_JES_EtaIntercalibration_Stat223: 2.24628234e-05 + syst_JES_EtaIntercalibration_Stat224: 1.88546807e-12 + syst_JES_EtaIntercalibration_Stat225: 1.75357542e-16 syst_JES_EtaIntercalibration_Stat226: 0.0 syst_JES_EtaIntercalibration_Stat227: 0.0 syst_JES_EtaIntercalibration_Stat228: 0.0 @@ -45996,291 +45996,291 @@ bins: syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 syst_JES_EtaIntercalibration_Stat232: 0.0 - syst_JES_EtaIntercalibration_Stat233: 4.300682155193522e-42 - syst_JES_EtaIntercalibration_Stat234: 2.0091789367798977e-16 - syst_JES_EtaIntercalibration_Stat235: 3.6217182386265283e-10 + syst_JES_EtaIntercalibration_Stat233: 4.30068216e-42 + syst_JES_EtaIntercalibration_Stat234: 2.00917894e-16 + syst_JES_EtaIntercalibration_Stat235: 3.62171824e-10 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 syst_JES_EtaIntercalibration_Stat239: 0.0 - syst_JES_EtaIntercalibration_Stat24: 3.576684917629732e-06 + syst_JES_EtaIntercalibration_Stat24: 3.57668492e-06 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 syst_JES_EtaIntercalibration_Stat243: 0.0 - syst_JES_EtaIntercalibration_Stat244: 4.300682155193522e-42 + syst_JES_EtaIntercalibration_Stat244: 4.30068216e-42 syst_JES_EtaIntercalibration_Stat245: 0.0 - syst_JES_EtaIntercalibration_Stat25: 0.0002012098158639384 - syst_JES_EtaIntercalibration_Stat26: 0.0037423599142118865 - syst_JES_EtaIntercalibration_Stat27: 0.001640883965276034 - syst_JES_EtaIntercalibration_Stat28: 7.772281744764533e-05 + syst_JES_EtaIntercalibration_Stat25: 2.01209816e-04 + syst_JES_EtaIntercalibration_Stat26: 3.74235991e-03 + syst_JES_EtaIntercalibration_Stat27: 1.64088397e-03 + syst_JES_EtaIntercalibration_Stat28: 7.77228174e-05 syst_JES_EtaIntercalibration_Stat29: 0.0 - syst_JES_EtaIntercalibration_Stat3: 1.9713800624689297e-05 + syst_JES_EtaIntercalibration_Stat3: 1.97138006e-05 syst_JES_EtaIntercalibration_Stat30: 0.0 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 2.558239042779232e-06 - syst_JES_EtaIntercalibration_Stat36: 2.558239042779232e-06 - syst_JES_EtaIntercalibration_Stat37: 0.00013495881568834252 - syst_JES_EtaIntercalibration_Stat38: 0.00042276128902727126 - syst_JES_EtaIntercalibration_Stat39: 0.000661367802361137 - syst_JES_EtaIntercalibration_Stat4: 0.00034913226238884025 - syst_JES_EtaIntercalibration_Stat40: 0.0005827120959787947 + syst_JES_EtaIntercalibration_Stat35: 2.55823904e-06 + syst_JES_EtaIntercalibration_Stat36: 2.55823904e-06 + syst_JES_EtaIntercalibration_Stat37: 1.34958816e-04 + syst_JES_EtaIntercalibration_Stat38: 4.22761289e-04 + syst_JES_EtaIntercalibration_Stat39: 6.61367802e-04 + syst_JES_EtaIntercalibration_Stat4: 3.49132262e-04 + syst_JES_EtaIntercalibration_Stat40: 5.82712096e-04 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 syst_JES_EtaIntercalibration_Stat44: 0.0 syst_JES_EtaIntercalibration_Stat45: 0.0 - syst_JES_EtaIntercalibration_Stat46: 2.5645592213867863e-05 - syst_JES_EtaIntercalibration_Stat47: 0.0006468645630949341 - syst_JES_EtaIntercalibration_Stat48: 0.003632546747118336 - syst_JES_EtaIntercalibration_Stat49: 0.0012145960099967396 - syst_JES_EtaIntercalibration_Stat5: 0.0003490610390534584 - syst_JES_EtaIntercalibration_Stat50: 0.00015680797771478337 + syst_JES_EtaIntercalibration_Stat46: 2.56455922e-05 + syst_JES_EtaIntercalibration_Stat47: 6.46864563e-04 + syst_JES_EtaIntercalibration_Stat48: 3.63254675e-03 + syst_JES_EtaIntercalibration_Stat49: 1.21459601e-03 + syst_JES_EtaIntercalibration_Stat5: 3.49061039e-04 + syst_JES_EtaIntercalibration_Stat50: 1.56807978e-04 syst_JES_EtaIntercalibration_Stat51: 0.0 syst_JES_EtaIntercalibration_Stat52: 0.0 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 9.181601330922619e-07 - syst_JES_EtaIntercalibration_Stat57: 2.558239042779232e-06 - syst_JES_EtaIntercalibration_Stat58: 2.558239042779232e-06 - syst_JES_EtaIntercalibration_Stat59: 0.0001797980163961772 + syst_JES_EtaIntercalibration_Stat56: 9.18160133e-07 + syst_JES_EtaIntercalibration_Stat57: 2.55823904e-06 + syst_JES_EtaIntercalibration_Stat58: 2.55823904e-06 + syst_JES_EtaIntercalibration_Stat59: 1.79798016e-04 syst_JES_EtaIntercalibration_Stat6: 0.0 - syst_JES_EtaIntercalibration_Stat60: 0.0005977176151829558 - syst_JES_EtaIntercalibration_Stat61: 0.0006523640318104608 - syst_JES_EtaIntercalibration_Stat62: 0.0007101050837728174 - syst_JES_EtaIntercalibration_Stat63: 8.306909063789912e-06 + syst_JES_EtaIntercalibration_Stat60: 5.97717615e-04 + syst_JES_EtaIntercalibration_Stat61: 6.52364032e-04 + syst_JES_EtaIntercalibration_Stat62: 7.10105084e-04 + syst_JES_EtaIntercalibration_Stat63: 8.30690906e-06 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 7.859942557042005e-05 - syst_JES_EtaIntercalibration_Stat69: 0.006028142499974598 + syst_JES_EtaIntercalibration_Stat68: 7.85994256e-05 + syst_JES_EtaIntercalibration_Stat69: 6.02814250e-03 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 0.019401095329903414 - syst_JES_EtaIntercalibration_Stat71: 0.0007928009144797956 - syst_JES_EtaIntercalibration_Stat72: 0.0016093246783356054 + syst_JES_EtaIntercalibration_Stat70: 1.94010953e-02 + syst_JES_EtaIntercalibration_Stat71: 7.92800914e-04 + syst_JES_EtaIntercalibration_Stat72: 1.60932468e-03 syst_JES_EtaIntercalibration_Stat73: 0.0 syst_JES_EtaIntercalibration_Stat74: 0.0 syst_JES_EtaIntercalibration_Stat75: 0.0 - syst_JES_EtaIntercalibration_Stat76: 4.53450901421532e-05 - syst_JES_EtaIntercalibration_Stat77: 9.181601330922619e-07 - syst_JES_EtaIntercalibration_Stat78: 9.181601330922619e-07 - syst_JES_EtaIntercalibration_Stat79: 2.558239042779232e-06 + syst_JES_EtaIntercalibration_Stat76: 4.53450901e-05 + syst_JES_EtaIntercalibration_Stat77: 9.18160133e-07 + syst_JES_EtaIntercalibration_Stat78: 9.18160133e-07 + syst_JES_EtaIntercalibration_Stat79: 2.55823904e-06 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 1.3700521887869821e-06 - syst_JES_EtaIntercalibration_Stat81: 0.00036486692094515774 - syst_JES_EtaIntercalibration_Stat82: 0.006637181235283545 - syst_JES_EtaIntercalibration_Stat83: 0.0042060635694197495 - syst_JES_EtaIntercalibration_Stat84: 0.0016467426848175157 - syst_JES_EtaIntercalibration_Stat85: 1.9516679039990385e-05 + syst_JES_EtaIntercalibration_Stat80: 1.37005219e-06 + syst_JES_EtaIntercalibration_Stat81: 3.64866921e-04 + syst_JES_EtaIntercalibration_Stat82: 6.63718124e-03 + syst_JES_EtaIntercalibration_Stat83: 4.20606357e-03 + syst_JES_EtaIntercalibration_Stat84: 1.64674268e-03 + syst_JES_EtaIntercalibration_Stat85: 1.95166790e-05 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 7.762670803273832e-05 + syst_JES_EtaIntercalibration_Stat89: 7.76267080e-05 syst_JES_EtaIntercalibration_Stat9: 0.0 - syst_JES_EtaIntercalibration_Stat90: 0.009227879062926648 - syst_JES_EtaIntercalibration_Stat91: 0.035004260812078296 - syst_JES_EtaIntercalibration_Stat92: 0.018109717695204416 - syst_JES_EtaIntercalibration_Stat93: 0.0037856606513923035 + syst_JES_EtaIntercalibration_Stat90: 9.22787906e-03 + syst_JES_EtaIntercalibration_Stat91: 3.50042608e-02 + syst_JES_EtaIntercalibration_Stat92: 1.81097177e-02 + syst_JES_EtaIntercalibration_Stat93: 3.78566065e-03 syst_JES_EtaIntercalibration_Stat94: 0.0 syst_JES_EtaIntercalibration_Stat95: 0.0 - syst_JES_EtaIntercalibration_Stat96: 0.005006492859277839 - syst_JES_EtaIntercalibration_Stat97: 4.53450901421532e-05 - syst_JES_EtaIntercalibration_Stat98: 9.181601330922619e-07 - syst_JES_EtaIntercalibration_Stat99: 9.181601330922619e-07 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.03556778499945562 - syst_JES_Flavour_Comp: 0.3724903220219285 - syst_JES_Flavour_Response: 6.07218517092488 - syst_JES_Gjet_Generator: 4.512560332006654 - syst_JES_Gjet_OOC: 2.575187954305472 - syst_JES_Gjet_Purity: 0.8457052367698807 - syst_JES_Gjet_Stat1: 0.0020178391908177423 - syst_JES_Gjet_Stat10: 0.24722979189410002 - syst_JES_Gjet_Stat11: 0.07609746119286767 - syst_JES_Gjet_Stat12: 0.04311950808062054 - syst_JES_Gjet_Stat13: 0.024575171922084287 - syst_JES_Gjet_Stat14: 0.0009433778816041852 - syst_JES_Gjet_Stat15: 3.59826616057569e-14 + syst_JES_EtaIntercalibration_Stat96: 5.00649286e-03 + syst_JES_EtaIntercalibration_Stat97: 4.53450901e-05 + syst_JES_EtaIntercalibration_Stat98: 9.18160133e-07 + syst_JES_EtaIntercalibration_Stat99: 9.18160133e-07 + syst_JES_EtaIntercalibration_TotalStat_MJB: 3.55677850e-02 + syst_JES_Flavour_Comp: 3.72490322e-01 + syst_JES_Flavour_Response: 6.07218517e+00 + syst_JES_Gjet_Generator: 4.51256033e+00 + syst_JES_Gjet_OOC: 2.57518795e+00 + syst_JES_Gjet_Purity: 8.45705237e-01 + syst_JES_Gjet_Stat1: 2.01783919e-03 + syst_JES_Gjet_Stat10: 2.47229792e-01 + syst_JES_Gjet_Stat11: 7.60974612e-02 + syst_JES_Gjet_Stat12: 4.31195081e-02 + syst_JES_Gjet_Stat13: 2.45751719e-02 + syst_JES_Gjet_Stat14: 9.43377882e-04 + syst_JES_Gjet_Stat15: 3.59826616e-14 syst_JES_Gjet_Stat2: 0.0 - syst_JES_Gjet_Stat3: 0.0008492245109510206 - syst_JES_Gjet_Stat4: 0.00265677905884174 - syst_JES_Gjet_Stat5: 0.013123957749093829 - syst_JES_Gjet_Stat6: 0.057074297849382255 - syst_JES_Gjet_Stat7: 0.1164841049242342 - syst_JES_Gjet_Stat8: 0.11095319643885884 - syst_JES_Gjet_Stat9: 0.23188748888200073 - syst_JES_Gjet_Veto: 1.091093170861224 - syst_JES_Gjet_dPhi: 0.3037697606741 - syst_JES_LArESZee: 4.336661936328447 - syst_JES_LArEsmear: 0.3360920558418482 - syst_JES_LAr_JVT: 0.5452543878778052 - syst_JES_MJB_Alpha: 9.348744233853016e-11 - syst_JES_MJB_Asym: 0.0007384405257026458 + syst_JES_Gjet_Stat3: 8.49224511e-04 + syst_JES_Gjet_Stat4: 2.65677906e-03 + syst_JES_Gjet_Stat5: 1.31239577e-02 + syst_JES_Gjet_Stat6: 5.70742978e-02 + syst_JES_Gjet_Stat7: 1.16484105e-01 + syst_JES_Gjet_Stat8: 1.10953196e-01 + syst_JES_Gjet_Stat9: 2.31887489e-01 + syst_JES_Gjet_Veto: 1.09109317e+00 + syst_JES_Gjet_dPhi: 3.03769761e-01 + syst_JES_LArESZee: 4.33666194e+00 + syst_JES_LArEsmear: 3.36092056e-01 + syst_JES_LAr_JVT: 5.45254388e-01 + syst_JES_MJB_Alpha: 9.34874423e-11 + syst_JES_MJB_Asym: 7.38440526e-04 syst_JES_MJB_Beta: 0.0 - syst_JES_MJB_Fragmentation: 0.04499870458877122 - syst_JES_MJB_Stat1: 5.762533036781655e-06 + syst_JES_MJB_Fragmentation: 4.49987046e-02 + syst_JES_MJB_Stat1: 5.76253304e-06 syst_JES_MJB_Stat10: 0.0 - syst_JES_MJB_Stat11: 2.3547230728898886e-26 + syst_JES_MJB_Stat11: 2.35472307e-26 syst_JES_MJB_Stat12: 0.0 syst_JES_MJB_Stat13: 0.0 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 0.0024898484201199404 - syst_JES_MJB_Stat3: 0.0002381568872851209 - syst_JES_MJB_Stat4: 5.718365741188647e-19 - syst_JES_MJB_Stat5: 1.2626650387177116e-08 + syst_JES_MJB_Stat2: 2.48984842e-03 + syst_JES_MJB_Stat3: 2.38156887e-04 + syst_JES_MJB_Stat4: 5.71836574e-19 + syst_JES_MJB_Stat5: 1.26266504e-08 syst_JES_MJB_Stat6: 0.0 - syst_JES_MJB_Stat7: 2.7357742505550418e-39 + syst_JES_MJB_Stat7: 2.73577425e-39 syst_JES_MJB_Stat8: 0.0 syst_JES_MJB_Stat9: 0.0 - syst_JES_MJB_Threshold: 0.0005420465754895975 - syst_JES_Pileup_MuOffset: 0.001285067329344304 - syst_JES_Pileup_NPVOffset: 0.21697047610216463 - syst_JES_Pileup_Pt_term: 1.374031909200074 - syst_JES_Pileup_Rho_topology: 1.548675805325311 - syst_JES_PunchThrough_MC15: 1.1835912845208742e-05 + syst_JES_MJB_Threshold: 5.42046575e-04 + syst_JES_Pileup_MuOffset: 1.28506733e-03 + syst_JES_Pileup_NPVOffset: 2.16970476e-01 + syst_JES_Pileup_Pt_term: 1.37403191e+00 + syst_JES_Pileup_Rho_topology: 1.54867581e+00 + syst_JES_PunchThrough_MC15: 1.18359128e-05 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 4.09207062500148 - syst_JES_Zjet_MuScale: 0.26769954706722987 - syst_JES_Zjet_MuSmearID: 0.04837219797311261 - syst_JES_Zjet_MuSmearMS: 0.3573644778094207 - syst_JES_Zjet_OOC: 1.420496346352218 - syst_JES_Zjet_Stat1: 0.019907662913247755 - syst_JES_Zjet_Stat10: 0.5465607079730486 - syst_JES_Zjet_Stat11: 0.48445640412734764 - syst_JES_Zjet_Stat12: 0.1773822223335811 - syst_JES_Zjet_Stat13: 0.03605414539272842 - syst_JES_Zjet_Stat2: 0.0019481812925585236 - syst_JES_Zjet_Stat3: 4.041740559461975e-06 - syst_JES_Zjet_Stat4: 0.0006180737861089079 - syst_JES_Zjet_Stat5: 0.0008691875214819871 - syst_JES_Zjet_Stat6: 0.026526908979374136 - syst_JES_Zjet_Stat7: 0.042049794149317775 - syst_JES_Zjet_Stat8: 0.07088371516081815 - syst_JES_Zjet_Stat9: 0.22857335802757064 - syst_JES_Zjet_Veto: 0.2707846515222013 - syst_JES_Zjet_dPhi: 0.35854919704274896 + syst_JES_Zjet_MC: 4.09207063e+00 + syst_JES_Zjet_MuScale: 2.67699547e-01 + syst_JES_Zjet_MuSmearID: 4.83721980e-02 + syst_JES_Zjet_MuSmearMS: 3.57364478e-01 + syst_JES_Zjet_OOC: 1.42049635e+00 + syst_JES_Zjet_Stat1: 1.99076629e-02 + syst_JES_Zjet_Stat10: 5.46560708e-01 + syst_JES_Zjet_Stat11: 4.84456404e-01 + syst_JES_Zjet_Stat12: 1.77382222e-01 + syst_JES_Zjet_Stat13: 3.60541454e-02 + syst_JES_Zjet_Stat2: 1.94818129e-03 + syst_JES_Zjet_Stat3: 4.04174056e-06 + syst_JES_Zjet_Stat4: 6.18073786e-04 + syst_JES_Zjet_Stat5: 8.69187521e-04 + syst_JES_Zjet_Stat6: 2.65269090e-02 + syst_JES_Zjet_Stat7: 4.20497941e-02 + syst_JES_Zjet_Stat8: 7.08837152e-02 + syst_JES_Zjet_Stat9: 2.28573358e-01 + syst_JES_Zjet_Veto: 2.70784652e-01 + syst_JES_Zjet_dPhi: 3.58549197e-01 syst_PRW: 0.0 syst_Unfolding_bias: 0.0 - syst_cleaning: 1.0938766875201245 + syst_cleaning: 1.09387669e+00 syst_lumi: 4.378 - stat: 1.1017 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 1.5282742252292285 - syst_JER_NP1: 0.19517196436732404 - syst_JER_NP2: 0.14574505240316052 - syst_JER_NP3: 0.47293964466938065 - syst_JER_NP4: 0.1123382089940907 - syst_JER_NP5: 0.13288486623765705 - syst_JER_NP6: 0.12978350001059458 - syst_JER_NP7: 0.0006983852232113736 - syst_JER_NP8: 0.12576085827871883 - syst_JES_EtaIntercalibration_Modelling: 2.9922620206125 - syst_JES_EtaIntercalibration_NonClosure: 2.1952860861400274 + syst_JER_NP0: 1.52827423e+00 + syst_JER_NP1: 1.95171964e-01 + syst_JER_NP2: 1.45745052e-01 + syst_JER_NP3: 4.72939645e-01 + syst_JER_NP4: 1.12338209e-01 + syst_JER_NP5: 1.32884866e-01 + syst_JER_NP6: 1.29783500e-01 + syst_JER_NP7: 6.98385223e-04 + syst_JER_NP8: 1.25760858e-01 + syst_JES_EtaIntercalibration_Modelling: 2.99226202e+00 + syst_JES_EtaIntercalibration_NonClosure: 2.19528609e+00 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 4.2539167833891626e-08 + syst_JES_EtaIntercalibration_Stat100: 4.25391678e-08 syst_JES_EtaIntercalibration_Stat101: 0.0 - syst_JES_EtaIntercalibration_Stat102: 0.00032686836417738564 - syst_JES_EtaIntercalibration_Stat103: 0.000876945578414077 - syst_JES_EtaIntercalibration_Stat104: 0.009696186918062172 - syst_JES_EtaIntercalibration_Stat105: 0.001637561562201556 - syst_JES_EtaIntercalibration_Stat106: 7.690855397808491e-05 + syst_JES_EtaIntercalibration_Stat102: 3.26868364e-04 + syst_JES_EtaIntercalibration_Stat103: 8.76945578e-04 + syst_JES_EtaIntercalibration_Stat104: 9.69618692e-03 + syst_JES_EtaIntercalibration_Stat105: 1.63756156e-03 + syst_JES_EtaIntercalibration_Stat106: 7.69085540e-05 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 0.0012919150929917955 + syst_JES_EtaIntercalibration_Stat109: 1.29191509e-03 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 0.029542130508817405 - syst_JES_EtaIntercalibration_Stat111: 0.09481617688981138 - syst_JES_EtaIntercalibration_Stat112: 0.05482680981964936 - syst_JES_EtaIntercalibration_Stat113: 0.0008745838839128011 - syst_JES_EtaIntercalibration_Stat114: 0.0002545248661722465 + syst_JES_EtaIntercalibration_Stat110: 2.95421305e-02 + syst_JES_EtaIntercalibration_Stat111: 9.48161769e-02 + syst_JES_EtaIntercalibration_Stat112: 5.48268098e-02 + syst_JES_EtaIntercalibration_Stat113: 8.74583884e-04 + syst_JES_EtaIntercalibration_Stat114: 2.54524866e-04 syst_JES_EtaIntercalibration_Stat115: 0.0 - syst_JES_EtaIntercalibration_Stat116: 0.0024751006040159254 - syst_JES_EtaIntercalibration_Stat117: 0.0016982758168212844 - syst_JES_EtaIntercalibration_Stat118: 4.2539167833891626e-08 - syst_JES_EtaIntercalibration_Stat119: 4.2539167833891626e-08 + syst_JES_EtaIntercalibration_Stat116: 2.47510060e-03 + syst_JES_EtaIntercalibration_Stat117: 1.69827582e-03 + syst_JES_EtaIntercalibration_Stat118: 4.25391678e-08 + syst_JES_EtaIntercalibration_Stat119: 4.25391678e-08 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 4.2539167833891626e-08 - syst_JES_EtaIntercalibration_Stat121: 2.1217622392718747e-05 - syst_JES_EtaIntercalibration_Stat122: 0.0025750834452498814 - syst_JES_EtaIntercalibration_Stat123: 0.05200006538457427 - syst_JES_EtaIntercalibration_Stat124: 0.07818347907326714 - syst_JES_EtaIntercalibration_Stat125: 0.03226569811735057 - syst_JES_EtaIntercalibration_Stat126: 0.00042030624644418495 + syst_JES_EtaIntercalibration_Stat120: 4.25391678e-08 + syst_JES_EtaIntercalibration_Stat121: 2.12176224e-05 + syst_JES_EtaIntercalibration_Stat122: 2.57508345e-03 + syst_JES_EtaIntercalibration_Stat123: 5.20000654e-02 + syst_JES_EtaIntercalibration_Stat124: 7.81834791e-02 + syst_JES_EtaIntercalibration_Stat125: 3.22656981e-02 + syst_JES_EtaIntercalibration_Stat126: 4.20306246e-04 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 0.004102883711488787 - syst_JES_EtaIntercalibration_Stat129: 0.2931502132013552 + syst_JES_EtaIntercalibration_Stat128: 4.10288371e-03 + syst_JES_EtaIntercalibration_Stat129: 2.93150213e-01 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 0.6431290908519066 - syst_JES_EtaIntercalibration_Stat131: 0.24350537468400982 - syst_JES_EtaIntercalibration_Stat132: 0.023683762370028966 - syst_JES_EtaIntercalibration_Stat133: 0.0007062388901781041 + syst_JES_EtaIntercalibration_Stat130: 6.43129091e-01 + syst_JES_EtaIntercalibration_Stat131: 2.43505375e-01 + syst_JES_EtaIntercalibration_Stat132: 2.36837624e-02 + syst_JES_EtaIntercalibration_Stat133: 7.06238890e-04 syst_JES_EtaIntercalibration_Stat134: 0.0 - syst_JES_EtaIntercalibration_Stat135: 0.0024751006040159254 - syst_JES_EtaIntercalibration_Stat136: 0.0024751006040159254 - syst_JES_EtaIntercalibration_Stat137: 4.2539167833891626e-08 - syst_JES_EtaIntercalibration_Stat138: 4.2539167833891626e-08 - syst_JES_EtaIntercalibration_Stat139: 4.2539167833891626e-08 + syst_JES_EtaIntercalibration_Stat135: 2.47510060e-03 + syst_JES_EtaIntercalibration_Stat136: 2.47510060e-03 + syst_JES_EtaIntercalibration_Stat137: 4.25391678e-08 + syst_JES_EtaIntercalibration_Stat138: 4.25391678e-08 + syst_JES_EtaIntercalibration_Stat139: 4.25391678e-08 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 8.414302823169605e-06 - syst_JES_EtaIntercalibration_Stat141: 0.022662547848818763 - syst_JES_EtaIntercalibration_Stat142: 0.1805072851715409 - syst_JES_EtaIntercalibration_Stat143: 0.4901761596609937 - syst_JES_EtaIntercalibration_Stat144: 0.2634500094894665 - syst_JES_EtaIntercalibration_Stat145: 0.003633269739504625 - syst_JES_EtaIntercalibration_Stat146: 0.003077202747626487 - syst_JES_EtaIntercalibration_Stat147: 0.11888280952265555 - syst_JES_EtaIntercalibration_Stat148: 0.2832203382527463 - syst_JES_EtaIntercalibration_Stat149: 0.09815121140362966 + syst_JES_EtaIntercalibration_Stat140: 8.41430282e-06 + syst_JES_EtaIntercalibration_Stat141: 2.26625478e-02 + syst_JES_EtaIntercalibration_Stat142: 1.80507285e-01 + syst_JES_EtaIntercalibration_Stat143: 4.90176160e-01 + syst_JES_EtaIntercalibration_Stat144: 2.63450009e-01 + syst_JES_EtaIntercalibration_Stat145: 3.63326974e-03 + syst_JES_EtaIntercalibration_Stat146: 3.07720275e-03 + syst_JES_EtaIntercalibration_Stat147: 1.18882810e-01 + syst_JES_EtaIntercalibration_Stat148: 2.83220338e-01 + syst_JES_EtaIntercalibration_Stat149: 9.81512114e-02 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 0.007038247420345494 - syst_JES_EtaIntercalibration_Stat151: 0.0002548031947983673 + syst_JES_EtaIntercalibration_Stat150: 7.03824742e-03 + syst_JES_EtaIntercalibration_Stat151: 2.54803195e-04 syst_JES_EtaIntercalibration_Stat152: 0.0 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 4.2539167833891626e-08 + syst_JES_EtaIntercalibration_Stat156: 4.25391678e-08 syst_JES_EtaIntercalibration_Stat157: 0.0 syst_JES_EtaIntercalibration_Stat158: 0.0 - syst_JES_EtaIntercalibration_Stat159: 0.0076666213386341175 - syst_JES_EtaIntercalibration_Stat16: 0.00011306944341788368 - syst_JES_EtaIntercalibration_Stat160: 0.13482007565640955 - syst_JES_EtaIntercalibration_Stat161: 0.26570993112791247 - syst_JES_EtaIntercalibration_Stat162: 0.07973090163167602 - syst_JES_EtaIntercalibration_Stat163: 0.00043107791639099307 - syst_JES_EtaIntercalibration_Stat164: 0.0029827850660079417 - syst_JES_EtaIntercalibration_Stat165: 0.0467358478579345 - syst_JES_EtaIntercalibration_Stat166: 0.08895567477682353 - syst_JES_EtaIntercalibration_Stat167: 0.044747542357094876 - syst_JES_EtaIntercalibration_Stat168: 0.00608628053494086 - syst_JES_EtaIntercalibration_Stat169: 0.0002548031947983673 - syst_JES_EtaIntercalibration_Stat17: 6.463396387881142e-05 + syst_JES_EtaIntercalibration_Stat159: 7.66662134e-03 + syst_JES_EtaIntercalibration_Stat16: 1.13069443e-04 + syst_JES_EtaIntercalibration_Stat160: 1.34820076e-01 + syst_JES_EtaIntercalibration_Stat161: 2.65709931e-01 + syst_JES_EtaIntercalibration_Stat162: 7.97309016e-02 + syst_JES_EtaIntercalibration_Stat163: 4.31077916e-04 + syst_JES_EtaIntercalibration_Stat164: 2.98278507e-03 + syst_JES_EtaIntercalibration_Stat165: 4.67358479e-02 + syst_JES_EtaIntercalibration_Stat166: 8.89556748e-02 + syst_JES_EtaIntercalibration_Stat167: 4.47475424e-02 + syst_JES_EtaIntercalibration_Stat168: 6.08628053e-03 + syst_JES_EtaIntercalibration_Stat169: 2.54803195e-04 + syst_JES_EtaIntercalibration_Stat17: 6.46339639e-05 syst_JES_EtaIntercalibration_Stat170: 0.0 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 syst_JES_EtaIntercalibration_Stat175: 0.0 - syst_JES_EtaIntercalibration_Stat176: 3.9871809590235554e-05 - syst_JES_EtaIntercalibration_Stat177: 0.0022456038720130495 - syst_JES_EtaIntercalibration_Stat178: 0.038893457997457616 - syst_JES_EtaIntercalibration_Stat179: 0.07408720857880934 - syst_JES_EtaIntercalibration_Stat18: 5.5488910664654425e-08 - syst_JES_EtaIntercalibration_Stat180: 0.033688145140390265 - syst_JES_EtaIntercalibration_Stat181: 0.0016878835413254739 - syst_JES_EtaIntercalibration_Stat182: 0.019786724716334435 - syst_JES_EtaIntercalibration_Stat183: 0.03845571739026592 - syst_JES_EtaIntercalibration_Stat184: 0.0182529031937388 - syst_JES_EtaIntercalibration_Stat185: 0.0028369453642959007 - syst_JES_EtaIntercalibration_Stat186: 5.55468693987339e-08 + syst_JES_EtaIntercalibration_Stat176: 3.98718096e-05 + syst_JES_EtaIntercalibration_Stat177: 2.24560387e-03 + syst_JES_EtaIntercalibration_Stat178: 3.88934580e-02 + syst_JES_EtaIntercalibration_Stat179: 7.40872086e-02 + syst_JES_EtaIntercalibration_Stat18: 5.54889107e-08 + syst_JES_EtaIntercalibration_Stat180: 3.36881451e-02 + syst_JES_EtaIntercalibration_Stat181: 1.68788354e-03 + syst_JES_EtaIntercalibration_Stat182: 1.97867247e-02 + syst_JES_EtaIntercalibration_Stat183: 3.84557174e-02 + syst_JES_EtaIntercalibration_Stat184: 1.82529032e-02 + syst_JES_EtaIntercalibration_Stat185: 2.83694536e-03 + syst_JES_EtaIntercalibration_Stat186: 5.55468694e-08 syst_JES_EtaIntercalibration_Stat187: 0.0 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 @@ -46288,31 +46288,31 @@ bins: syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 syst_JES_EtaIntercalibration_Stat192: 0.0 - syst_JES_EtaIntercalibration_Stat193: 0.00028272106938641837 - syst_JES_EtaIntercalibration_Stat194: 0.004367288679203609 - syst_JES_EtaIntercalibration_Stat195: 0.027512829734507502 - syst_JES_EtaIntercalibration_Stat196: 0.04322943788669938 - syst_JES_EtaIntercalibration_Stat197: 0.02631461191049566 - syst_JES_EtaIntercalibration_Stat198: 0.011961995851445527 - syst_JES_EtaIntercalibration_Stat199: 0.005558069876314978 + syst_JES_EtaIntercalibration_Stat193: 2.82721069e-04 + syst_JES_EtaIntercalibration_Stat194: 4.36728868e-03 + syst_JES_EtaIntercalibration_Stat195: 2.75128297e-02 + syst_JES_EtaIntercalibration_Stat196: 4.32294379e-02 + syst_JES_EtaIntercalibration_Stat197: 2.63146119e-02 + syst_JES_EtaIntercalibration_Stat198: 1.19619959e-02 + syst_JES_EtaIntercalibration_Stat199: 5.55806988e-03 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 0.0018684850021006326 - syst_JES_EtaIntercalibration_Stat201: 5.55468693987339e-08 + syst_JES_EtaIntercalibration_Stat200: 1.86848500e-03 + syst_JES_EtaIntercalibration_Stat201: 5.55468694e-08 syst_JES_EtaIntercalibration_Stat202: 0.0 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 syst_JES_EtaIntercalibration_Stat207: 0.0 - syst_JES_EtaIntercalibration_Stat208: 9.114917374831217e-13 - syst_JES_EtaIntercalibration_Stat209: 1.0148139103264202e-10 + syst_JES_EtaIntercalibration_Stat208: 9.11491737e-13 + syst_JES_EtaIntercalibration_Stat209: 1.01481391e-10 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 0.00516550159713459 - syst_JES_EtaIntercalibration_Stat211: 0.01453520811684511 - syst_JES_EtaIntercalibration_Stat212: 2.377735680747547e-05 - syst_JES_EtaIntercalibration_Stat213: 5.759934960570302e-07 - syst_JES_EtaIntercalibration_Stat214: 5.55468693987339e-08 + syst_JES_EtaIntercalibration_Stat210: 5.16550160e-03 + syst_JES_EtaIntercalibration_Stat211: 1.45352081e-02 + syst_JES_EtaIntercalibration_Stat212: 2.37773568e-05 + syst_JES_EtaIntercalibration_Stat213: 5.75993496e-07 + syst_JES_EtaIntercalibration_Stat214: 5.55468694e-08 syst_JES_EtaIntercalibration_Stat215: 0.0 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 @@ -46320,11 +46320,11 @@ bins: syst_JES_EtaIntercalibration_Stat219: 0.0 syst_JES_EtaIntercalibration_Stat22: 0.0 syst_JES_EtaIntercalibration_Stat220: 0.0 - syst_JES_EtaIntercalibration_Stat221: 5.895034923560674e-32 - syst_JES_EtaIntercalibration_Stat222: 5.726159970168281e-14 - syst_JES_EtaIntercalibration_Stat223: 2.61957897380476e-05 - syst_JES_EtaIntercalibration_Stat224: 1.8231486150818861e-09 - syst_JES_EtaIntercalibration_Stat225: 1.7445517332541333e-12 + syst_JES_EtaIntercalibration_Stat221: 5.89503492e-32 + syst_JES_EtaIntercalibration_Stat222: 5.72615997e-14 + syst_JES_EtaIntercalibration_Stat223: 2.61957897e-05 + syst_JES_EtaIntercalibration_Stat224: 1.82314862e-09 + syst_JES_EtaIntercalibration_Stat225: 1.74455173e-12 syst_JES_EtaIntercalibration_Stat226: 0.0 syst_JES_EtaIntercalibration_Stat227: 0.0 syst_JES_EtaIntercalibration_Stat228: 0.0 @@ -46333,291 +46333,291 @@ bins: syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 syst_JES_EtaIntercalibration_Stat232: 0.0 - syst_JES_EtaIntercalibration_Stat233: 5.895034923560674e-32 - syst_JES_EtaIntercalibration_Stat234: 1.9996526573382688e-12 - syst_JES_EtaIntercalibration_Stat235: 5.0532582313029786e-08 + syst_JES_EtaIntercalibration_Stat233: 5.89503492e-32 + syst_JES_EtaIntercalibration_Stat234: 1.99965266e-12 + syst_JES_EtaIntercalibration_Stat235: 5.05325823e-08 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 syst_JES_EtaIntercalibration_Stat239: 0.0 - syst_JES_EtaIntercalibration_Stat24: 2.1676615856724498e-07 + syst_JES_EtaIntercalibration_Stat24: 2.16766159e-07 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 syst_JES_EtaIntercalibration_Stat243: 0.0 - syst_JES_EtaIntercalibration_Stat244: 5.895034923560674e-32 + syst_JES_EtaIntercalibration_Stat244: 5.89503492e-32 syst_JES_EtaIntercalibration_Stat245: 0.0 - syst_JES_EtaIntercalibration_Stat25: 3.196348033303006e-05 - syst_JES_EtaIntercalibration_Stat26: 0.0010047463398788772 - syst_JES_EtaIntercalibration_Stat27: 0.0007066187222965437 - syst_JES_EtaIntercalibration_Stat28: 9.34480032973819e-06 + syst_JES_EtaIntercalibration_Stat25: 3.19634803e-05 + syst_JES_EtaIntercalibration_Stat26: 1.00474634e-03 + syst_JES_EtaIntercalibration_Stat27: 7.06618722e-04 + syst_JES_EtaIntercalibration_Stat28: 9.34480033e-06 syst_JES_EtaIntercalibration_Stat29: 0.0 - syst_JES_EtaIntercalibration_Stat3: 2.4065607528587346e-06 + syst_JES_EtaIntercalibration_Stat3: 2.40656075e-06 syst_JES_EtaIntercalibration_Stat30: 0.0 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 1.1900921098805757e-05 - syst_JES_EtaIntercalibration_Stat36: 1.1900921098805757e-05 - syst_JES_EtaIntercalibration_Stat37: 2.436015153909146e-05 - syst_JES_EtaIntercalibration_Stat38: 0.00011159896969394477 - syst_JES_EtaIntercalibration_Stat39: 0.00018462758921677984 - syst_JES_EtaIntercalibration_Stat4: 0.0001914973354780361 - syst_JES_EtaIntercalibration_Stat40: 0.00012045320937193829 + syst_JES_EtaIntercalibration_Stat35: 1.19009211e-05 + syst_JES_EtaIntercalibration_Stat36: 1.19009211e-05 + syst_JES_EtaIntercalibration_Stat37: 2.43601515e-05 + syst_JES_EtaIntercalibration_Stat38: 1.11598970e-04 + syst_JES_EtaIntercalibration_Stat39: 1.84627589e-04 + syst_JES_EtaIntercalibration_Stat4: 1.91497335e-04 + syst_JES_EtaIntercalibration_Stat40: 1.20453209e-04 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 syst_JES_EtaIntercalibration_Stat44: 0.0 syst_JES_EtaIntercalibration_Stat45: 0.0 - syst_JES_EtaIntercalibration_Stat46: 3.2011561583278004e-06 - syst_JES_EtaIntercalibration_Stat47: 0.00015171337548153095 - syst_JES_EtaIntercalibration_Stat48: 0.0006816583082454141 - syst_JES_EtaIntercalibration_Stat49: 0.0004555137978151705 - syst_JES_EtaIntercalibration_Stat5: 0.00019137539042550977 - syst_JES_EtaIntercalibration_Stat50: 2.5125307460805328e-05 + syst_JES_EtaIntercalibration_Stat46: 3.20115616e-06 + syst_JES_EtaIntercalibration_Stat47: 1.51713375e-04 + syst_JES_EtaIntercalibration_Stat48: 6.81658308e-04 + syst_JES_EtaIntercalibration_Stat49: 4.55513798e-04 + syst_JES_EtaIntercalibration_Stat5: 1.91375390e-04 + syst_JES_EtaIntercalibration_Stat50: 2.51253075e-05 syst_JES_EtaIntercalibration_Stat51: 0.0 syst_JES_EtaIntercalibration_Stat52: 0.0 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 4.2539167833891626e-08 - syst_JES_EtaIntercalibration_Stat57: 1.1900921098805757e-05 - syst_JES_EtaIntercalibration_Stat58: 1.1900921098805757e-05 - syst_JES_EtaIntercalibration_Stat59: 3.064472879631993e-05 + syst_JES_EtaIntercalibration_Stat56: 4.25391678e-08 + syst_JES_EtaIntercalibration_Stat57: 1.19009211e-05 + syst_JES_EtaIntercalibration_Stat58: 1.19009211e-05 + syst_JES_EtaIntercalibration_Stat59: 3.06447288e-05 syst_JES_EtaIntercalibration_Stat6: 0.0 - syst_JES_EtaIntercalibration_Stat60: 0.000281472036799395 - syst_JES_EtaIntercalibration_Stat61: 0.0006168792649295322 - syst_JES_EtaIntercalibration_Stat62: 0.0001534899119649236 - syst_JES_EtaIntercalibration_Stat63: 7.757068079809536e-07 + syst_JES_EtaIntercalibration_Stat60: 2.81472037e-04 + syst_JES_EtaIntercalibration_Stat61: 6.16879265e-04 + syst_JES_EtaIntercalibration_Stat62: 1.53489912e-04 + syst_JES_EtaIntercalibration_Stat63: 7.75706808e-07 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 1.566538311054026e-05 - syst_JES_EtaIntercalibration_Stat69: 0.0009282939512891378 + syst_JES_EtaIntercalibration_Stat68: 1.56653831e-05 + syst_JES_EtaIntercalibration_Stat69: 9.28293951e-04 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 0.0029605958859662018 - syst_JES_EtaIntercalibration_Stat71: 0.0004409989115632826 - syst_JES_EtaIntercalibration_Stat72: 0.0004589515085496505 + syst_JES_EtaIntercalibration_Stat70: 2.96059589e-03 + syst_JES_EtaIntercalibration_Stat71: 4.40998912e-04 + syst_JES_EtaIntercalibration_Stat72: 4.58951509e-04 syst_JES_EtaIntercalibration_Stat73: 0.0 syst_JES_EtaIntercalibration_Stat74: 0.0 syst_JES_EtaIntercalibration_Stat75: 0.0 - syst_JES_EtaIntercalibration_Stat76: 4.2357302499096896e-06 - syst_JES_EtaIntercalibration_Stat77: 4.2539167833891626e-08 - syst_JES_EtaIntercalibration_Stat78: 4.2539167833891626e-08 - syst_JES_EtaIntercalibration_Stat79: 1.1900921098805757e-05 + syst_JES_EtaIntercalibration_Stat76: 4.23573025e-06 + syst_JES_EtaIntercalibration_Stat77: 4.25391678e-08 + syst_JES_EtaIntercalibration_Stat78: 4.25391678e-08 + syst_JES_EtaIntercalibration_Stat79: 1.19009211e-05 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 1.1704333332146688e-05 - syst_JES_EtaIntercalibration_Stat81: 9.40272051057565e-05 - syst_JES_EtaIntercalibration_Stat82: 0.0015711227927822828 - syst_JES_EtaIntercalibration_Stat83: 0.0010617140113396827 - syst_JES_EtaIntercalibration_Stat84: 0.000528511293635245 - syst_JES_EtaIntercalibration_Stat85: 2.710752701280587e-06 + syst_JES_EtaIntercalibration_Stat80: 1.17043333e-05 + syst_JES_EtaIntercalibration_Stat81: 9.40272051e-05 + syst_JES_EtaIntercalibration_Stat82: 1.57112279e-03 + syst_JES_EtaIntercalibration_Stat83: 1.06171401e-03 + syst_JES_EtaIntercalibration_Stat84: 5.28511294e-04 + syst_JES_EtaIntercalibration_Stat85: 2.71075270e-06 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 2.1979639595543873e-05 + syst_JES_EtaIntercalibration_Stat89: 2.19796396e-05 syst_JES_EtaIntercalibration_Stat9: 0.0 - syst_JES_EtaIntercalibration_Stat90: 0.0012922132592958486 - syst_JES_EtaIntercalibration_Stat91: 0.0053266697851471895 - syst_JES_EtaIntercalibration_Stat92: 0.004147955408089629 - syst_JES_EtaIntercalibration_Stat93: 0.000978855745245437 + syst_JES_EtaIntercalibration_Stat90: 1.29221326e-03 + syst_JES_EtaIntercalibration_Stat91: 5.32666979e-03 + syst_JES_EtaIntercalibration_Stat92: 4.14795541e-03 + syst_JES_EtaIntercalibration_Stat93: 9.78855745e-04 syst_JES_EtaIntercalibration_Stat94: 0.0 syst_JES_EtaIntercalibration_Stat95: 0.0 - syst_JES_EtaIntercalibration_Stat96: 0.0016982758168212844 - syst_JES_EtaIntercalibration_Stat97: 4.2357302499096896e-06 - syst_JES_EtaIntercalibration_Stat98: 4.2539167833891626e-08 - syst_JES_EtaIntercalibration_Stat99: 4.2539167833891626e-08 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.020312755075321515 - syst_JES_Flavour_Comp: 0.21318857849331424 - syst_JES_Flavour_Response: 3.0600099264544878 - syst_JES_Gjet_Generator: 2.443563944323946 - syst_JES_Gjet_OOC: 1.468082422754254 - syst_JES_Gjet_Purity: 0.45437881497710697 - syst_JES_Gjet_Stat1: 0.0011401224440822134 - syst_JES_Gjet_Stat10: 0.15621158303723828 - syst_JES_Gjet_Stat11: 0.13314700400309426 - syst_JES_Gjet_Stat12: 0.01124895198451838 - syst_JES_Gjet_Stat13: 0.01777027011612373 - syst_JES_Gjet_Stat14: 0.002522825500802622 - syst_JES_Gjet_Stat15: 3.5833927390628003e-10 + syst_JES_EtaIntercalibration_Stat96: 1.69827582e-03 + syst_JES_EtaIntercalibration_Stat97: 4.23573025e-06 + syst_JES_EtaIntercalibration_Stat98: 4.25391678e-08 + syst_JES_EtaIntercalibration_Stat99: 4.25391678e-08 + syst_JES_EtaIntercalibration_TotalStat_MJB: 2.03127551e-02 + syst_JES_Flavour_Comp: 2.13188578e-01 + syst_JES_Flavour_Response: 3.06000993e+00 + syst_JES_Gjet_Generator: 2.44356394e+00 + syst_JES_Gjet_OOC: 1.46808242e+00 + syst_JES_Gjet_Purity: 4.54378815e-01 + syst_JES_Gjet_Stat1: 1.14012244e-03 + syst_JES_Gjet_Stat10: 1.56211583e-01 + syst_JES_Gjet_Stat11: 1.33147004e-01 + syst_JES_Gjet_Stat12: 1.12489520e-02 + syst_JES_Gjet_Stat13: 1.77702701e-02 + syst_JES_Gjet_Stat14: 2.52282550e-03 + syst_JES_Gjet_Stat15: 3.58339274e-10 syst_JES_Gjet_Stat2: 0.0 - syst_JES_Gjet_Stat3: 7.902481809533001e-05 - syst_JES_Gjet_Stat4: 0.002856937996540177 - syst_JES_Gjet_Stat5: 0.001350156571476064 - syst_JES_Gjet_Stat6: 0.025910204553418716 - syst_JES_Gjet_Stat7: 0.0395050816351517 - syst_JES_Gjet_Stat8: 0.0420813153311538 - syst_JES_Gjet_Stat9: 0.11780038741447331 - syst_JES_Gjet_Veto: 0.6352500983864544 - syst_JES_Gjet_dPhi: 0.13455395599907122 - syst_JES_LArESZee: 2.582632523221219 - syst_JES_LArEsmear: 0.18121260303853043 - syst_JES_LAr_JVT: 0.28238990775167583 - syst_JES_MJB_Alpha: 9.095864815947958e-08 - syst_JES_MJB_Asym: 0.0035892915735559854 - syst_JES_MJB_Beta: 5.179697940034727e-37 - syst_JES_MJB_Fragmentation: 0.025448395249013246 - syst_JES_MJB_Stat1: 0.00015441232949476541 + syst_JES_Gjet_Stat3: 7.90248181e-05 + syst_JES_Gjet_Stat4: 2.85693800e-03 + syst_JES_Gjet_Stat5: 1.35015657e-03 + syst_JES_Gjet_Stat6: 2.59102046e-02 + syst_JES_Gjet_Stat7: 3.95050816e-02 + syst_JES_Gjet_Stat8: 4.20813153e-02 + syst_JES_Gjet_Stat9: 1.17800387e-01 + syst_JES_Gjet_Veto: 6.35250098e-01 + syst_JES_Gjet_dPhi: 1.34553956e-01 + syst_JES_LArESZee: 2.58263252e+00 + syst_JES_LArEsmear: 1.81212603e-01 + syst_JES_LAr_JVT: 2.82389908e-01 + syst_JES_MJB_Alpha: 9.09586482e-08 + syst_JES_MJB_Asym: 3.58929157e-03 + syst_JES_MJB_Beta: 5.17969794e-37 + syst_JES_MJB_Fragmentation: 2.54483952e-02 + syst_JES_MJB_Stat1: 1.54412329e-04 syst_JES_MJB_Stat10: 0.0 - syst_JES_MJB_Stat11: 9.390313453234669e-20 + syst_JES_MJB_Stat11: 9.39031345e-20 syst_JES_MJB_Stat12: 0.0 syst_JES_MJB_Stat13: 0.0 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 0.0014836162269266267 - syst_JES_MJB_Stat3: 0.0001758806445788379 - syst_JES_MJB_Stat4: 8.96336292916894e-14 - syst_JES_MJB_Stat5: 1.7640937475089017e-06 + syst_JES_MJB_Stat2: 1.48361623e-03 + syst_JES_MJB_Stat3: 1.75880645e-04 + syst_JES_MJB_Stat4: 8.96336293e-14 + syst_JES_MJB_Stat5: 1.76409375e-06 syst_JES_MJB_Stat6: 0.0 - syst_JES_MJB_Stat7: 3.736899617329852e-29 + syst_JES_MJB_Stat7: 3.73689962e-29 syst_JES_MJB_Stat8: 0.0 syst_JES_MJB_Stat9: 0.0 - syst_JES_MJB_Threshold: 0.0003009925082124138 - syst_JES_Pileup_MuOffset: 0.008800114344984388 - syst_JES_Pileup_NPVOffset: 0.11935315705920811 - syst_JES_Pileup_Pt_term: 0.7684757445749345 - syst_JES_Pileup_Rho_topology: 0.813217547769353 - syst_JES_PunchThrough_MC15: 0.0003171703238979137 + syst_JES_MJB_Threshold: 3.00992508e-04 + syst_JES_Pileup_MuOffset: 8.80011434e-03 + syst_JES_Pileup_NPVOffset: 1.19353157e-01 + syst_JES_Pileup_Pt_term: 7.68475745e-01 + syst_JES_Pileup_Rho_topology: 8.13217548e-01 + syst_JES_PunchThrough_MC15: 3.17170324e-04 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 2.2455250499604764 - syst_JES_Zjet_MuScale: 0.13975452872805233 - syst_JES_Zjet_MuSmearID: 0.024110310553785905 - syst_JES_Zjet_MuSmearMS: 0.22132082482224757 - syst_JES_Zjet_OOC: 0.7696747023905619 - syst_JES_Zjet_Stat1: 0.010942293290288832 - syst_JES_Zjet_Stat10: 0.24428663491890013 - syst_JES_Zjet_Stat11: 0.32656472559050215 - syst_JES_Zjet_Stat12: 0.28157266824036736 - syst_JES_Zjet_Stat13: 0.019955895789214775 - syst_JES_Zjet_Stat2: 0.0010232466271627774 - syst_JES_Zjet_Stat3: 0.00010832245750535758 - syst_JES_Zjet_Stat4: 5.802438501828348e-05 - syst_JES_Zjet_Stat5: 8.110761431579651e-05 - syst_JES_Zjet_Stat6: 0.014125487708394354 - syst_JES_Zjet_Stat7: 0.020028291864260417 - syst_JES_Zjet_Stat8: 0.029375531910077815 - syst_JES_Zjet_Stat9: 0.0929842696373962 - syst_JES_Zjet_Veto: 0.1364866589634313 - syst_JES_Zjet_dPhi: 0.1771282868431804 + syst_JES_Zjet_MC: 2.24552505e+00 + syst_JES_Zjet_MuScale: 1.39754529e-01 + syst_JES_Zjet_MuSmearID: 2.41103106e-02 + syst_JES_Zjet_MuSmearMS: 2.21320825e-01 + syst_JES_Zjet_OOC: 7.69674702e-01 + syst_JES_Zjet_Stat1: 1.09422933e-02 + syst_JES_Zjet_Stat10: 2.44286635e-01 + syst_JES_Zjet_Stat11: 3.26564726e-01 + syst_JES_Zjet_Stat12: 2.81572668e-01 + syst_JES_Zjet_Stat13: 1.99558958e-02 + syst_JES_Zjet_Stat2: 1.02324663e-03 + syst_JES_Zjet_Stat3: 1.08322458e-04 + syst_JES_Zjet_Stat4: 5.80243850e-05 + syst_JES_Zjet_Stat5: 8.11076143e-05 + syst_JES_Zjet_Stat6: 1.41254877e-02 + syst_JES_Zjet_Stat7: 2.00282919e-02 + syst_JES_Zjet_Stat8: 2.93755319e-02 + syst_JES_Zjet_Stat9: 9.29842696e-02 + syst_JES_Zjet_Veto: 1.36486659e-01 + syst_JES_Zjet_dPhi: 1.77128287e-01 syst_PRW: 0.0 syst_Unfolding_bias: 0.0 - syst_cleaning: 0.5852599678775237 + syst_cleaning: 5.85259968e-01 syst_lumi: 2.389 - stat: 0.5589 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.7167769579862344 - syst_JER_NP1: 0.1100736783931563 - syst_JER_NP2: 0.05623643547558825 - syst_JER_NP3: 0.2304454978948385 - syst_JER_NP4: 0.05337635501792905 - syst_JER_NP5: 0.06188610183231773 - syst_JER_NP6: 0.057984927998575624 - syst_JER_NP7: 6.146327928120984e-05 - syst_JER_NP8: 0.03201352682851422 - syst_JES_EtaIntercalibration_Modelling: 1.6334111546086614 - syst_JES_EtaIntercalibration_NonClosure: 1.193953504119821 + syst_JER_NP0: 7.16776958e-01 + syst_JER_NP1: 1.10073678e-01 + syst_JER_NP2: 5.62364355e-02 + syst_JER_NP3: 2.30445498e-01 + syst_JER_NP4: 5.33763550e-02 + syst_JER_NP5: 6.18861018e-02 + syst_JER_NP6: 5.79849280e-02 + syst_JER_NP7: 6.14632793e-05 + syst_JER_NP8: 3.20135268e-02 + syst_JES_EtaIntercalibration_Modelling: 1.63341115e+00 + syst_JES_EtaIntercalibration_NonClosure: 1.19395350e+00 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 2.463842273766728e-09 + syst_JES_EtaIntercalibration_Stat100: 2.46384227e-09 syst_JES_EtaIntercalibration_Stat101: 0.0 - syst_JES_EtaIntercalibration_Stat102: 0.00013434943245135055 - syst_JES_EtaIntercalibration_Stat103: 0.00034024216375987267 - syst_JES_EtaIntercalibration_Stat104: 0.002398707568671096 - syst_JES_EtaIntercalibration_Stat105: 0.00015633520940594282 - syst_JES_EtaIntercalibration_Stat106: 1.4768130382685547e-05 + syst_JES_EtaIntercalibration_Stat102: 1.34349432e-04 + syst_JES_EtaIntercalibration_Stat103: 3.40242164e-04 + syst_JES_EtaIntercalibration_Stat104: 2.39870757e-03 + syst_JES_EtaIntercalibration_Stat105: 1.56335209e-04 + syst_JES_EtaIntercalibration_Stat106: 1.47681304e-05 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 0.00023482453023481175 + syst_JES_EtaIntercalibration_Stat109: 2.34824530e-04 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 0.006955536715451943 - syst_JES_EtaIntercalibration_Stat111: 0.029571694236211764 - syst_JES_EtaIntercalibration_Stat112: 0.016556161239852676 - syst_JES_EtaIntercalibration_Stat113: 0.00015694649024428677 - syst_JES_EtaIntercalibration_Stat114: 6.182555357617108e-05 + syst_JES_EtaIntercalibration_Stat110: 6.95553672e-03 + syst_JES_EtaIntercalibration_Stat111: 2.95716942e-02 + syst_JES_EtaIntercalibration_Stat112: 1.65561612e-02 + syst_JES_EtaIntercalibration_Stat113: 1.56946490e-04 + syst_JES_EtaIntercalibration_Stat114: 6.18255536e-05 syst_JES_EtaIntercalibration_Stat115: 0.0 - syst_JES_EtaIntercalibration_Stat116: 0.0004131807201455557 - syst_JES_EtaIntercalibration_Stat117: 0.0002974797261999547 - syst_JES_EtaIntercalibration_Stat118: 2.463842273766728e-09 - syst_JES_EtaIntercalibration_Stat119: 2.463842273766728e-09 + syst_JES_EtaIntercalibration_Stat116: 4.13180720e-04 + syst_JES_EtaIntercalibration_Stat117: 2.97479726e-04 + syst_JES_EtaIntercalibration_Stat118: 2.46384227e-09 + syst_JES_EtaIntercalibration_Stat119: 2.46384227e-09 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 2.463842273766728e-09 - syst_JES_EtaIntercalibration_Stat121: 2.981725465229822e-06 - syst_JES_EtaIntercalibration_Stat122: 0.0002582147871443462 - syst_JES_EtaIntercalibration_Stat123: 0.015436722450053961 - syst_JES_EtaIntercalibration_Stat124: 0.02324000430292559 - syst_JES_EtaIntercalibration_Stat125: 0.009116592784587891 - syst_JES_EtaIntercalibration_Stat126: 0.0005651306110095258 + syst_JES_EtaIntercalibration_Stat120: 2.46384227e-09 + syst_JES_EtaIntercalibration_Stat121: 2.98172547e-06 + syst_JES_EtaIntercalibration_Stat122: 2.58214787e-04 + syst_JES_EtaIntercalibration_Stat123: 1.54367225e-02 + syst_JES_EtaIntercalibration_Stat124: 2.32400043e-02 + syst_JES_EtaIntercalibration_Stat125: 9.11659278e-03 + syst_JES_EtaIntercalibration_Stat126: 5.65130611e-04 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 0.0023260440064624744 - syst_JES_EtaIntercalibration_Stat129: 0.10716223401926632 + syst_JES_EtaIntercalibration_Stat128: 2.32604401e-03 + syst_JES_EtaIntercalibration_Stat129: 1.07162234e-01 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 0.22372543440565715 - syst_JES_EtaIntercalibration_Stat131: 0.09195458376285545 - syst_JES_EtaIntercalibration_Stat132: 0.0085487962164272 - syst_JES_EtaIntercalibration_Stat133: 0.00011391649781748032 + syst_JES_EtaIntercalibration_Stat130: 2.23725434e-01 + syst_JES_EtaIntercalibration_Stat131: 9.19545838e-02 + syst_JES_EtaIntercalibration_Stat132: 8.54879622e-03 + syst_JES_EtaIntercalibration_Stat133: 1.13916498e-04 syst_JES_EtaIntercalibration_Stat134: 0.0 - syst_JES_EtaIntercalibration_Stat135: 0.0004131807201455557 - syst_JES_EtaIntercalibration_Stat136: 0.0004131807201455557 - syst_JES_EtaIntercalibration_Stat137: 2.463842273766728e-09 - syst_JES_EtaIntercalibration_Stat138: 2.463842273766728e-09 - syst_JES_EtaIntercalibration_Stat139: 2.463842273766728e-09 + syst_JES_EtaIntercalibration_Stat135: 4.13180720e-04 + syst_JES_EtaIntercalibration_Stat136: 4.13180720e-04 + syst_JES_EtaIntercalibration_Stat137: 2.46384227e-09 + syst_JES_EtaIntercalibration_Stat138: 2.46384227e-09 + syst_JES_EtaIntercalibration_Stat139: 2.46384227e-09 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 1.8177873225435368e-06 - syst_JES_EtaIntercalibration_Stat141: 0.006094743636938308 - syst_JES_EtaIntercalibration_Stat142: 0.06927930481031114 - syst_JES_EtaIntercalibration_Stat143: 0.18400524449047642 - syst_JES_EtaIntercalibration_Stat144: 0.09842854921210613 - syst_JES_EtaIntercalibration_Stat145: 0.0012783085337663986 - syst_JES_EtaIntercalibration_Stat146: 0.002077199075678593 - syst_JES_EtaIntercalibration_Stat147: 0.06113722434000419 - syst_JES_EtaIntercalibration_Stat148: 0.1451961321798897 - syst_JES_EtaIntercalibration_Stat149: 0.05502847512879128 + syst_JES_EtaIntercalibration_Stat140: 1.81778732e-06 + syst_JES_EtaIntercalibration_Stat141: 6.09474364e-03 + syst_JES_EtaIntercalibration_Stat142: 6.92793048e-02 + syst_JES_EtaIntercalibration_Stat143: 1.84005244e-01 + syst_JES_EtaIntercalibration_Stat144: 9.84285492e-02 + syst_JES_EtaIntercalibration_Stat145: 1.27830853e-03 + syst_JES_EtaIntercalibration_Stat146: 2.07719908e-03 + syst_JES_EtaIntercalibration_Stat147: 6.11372243e-02 + syst_JES_EtaIntercalibration_Stat148: 1.45196132e-01 + syst_JES_EtaIntercalibration_Stat149: 5.50284751e-02 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 0.0026668683882036625 - syst_JES_EtaIntercalibration_Stat151: 6.21932435645545e-05 + syst_JES_EtaIntercalibration_Stat150: 2.66686839e-03 + syst_JES_EtaIntercalibration_Stat151: 6.21932436e-05 syst_JES_EtaIntercalibration_Stat152: 0.0 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 2.463842273766728e-09 + syst_JES_EtaIntercalibration_Stat156: 2.46384227e-09 syst_JES_EtaIntercalibration_Stat157: 0.0 syst_JES_EtaIntercalibration_Stat158: 0.0 - syst_JES_EtaIntercalibration_Stat159: 0.004776278258225749 - syst_JES_EtaIntercalibration_Stat16: 6.253052617001258e-05 - syst_JES_EtaIntercalibration_Stat160: 0.0684517879605785 - syst_JES_EtaIntercalibration_Stat161: 0.1360218379525876 - syst_JES_EtaIntercalibration_Stat162: 0.04746341083403088 - syst_JES_EtaIntercalibration_Stat163: 0.0002488255814822905 - syst_JES_EtaIntercalibration_Stat164: 0.002054402102802662 - syst_JES_EtaIntercalibration_Stat165: 0.04190311715135283 - syst_JES_EtaIntercalibration_Stat166: 0.08724965558671278 - syst_JES_EtaIntercalibration_Stat167: 0.03890863239693731 - syst_JES_EtaIntercalibration_Stat168: 0.004229922339712634 - syst_JES_EtaIntercalibration_Stat169: 6.21932435645545e-05 - syst_JES_EtaIntercalibration_Stat17: 1.2867279506764436e-05 + syst_JES_EtaIntercalibration_Stat159: 4.77627826e-03 + syst_JES_EtaIntercalibration_Stat16: 6.25305262e-05 + syst_JES_EtaIntercalibration_Stat160: 6.84517880e-02 + syst_JES_EtaIntercalibration_Stat161: 1.36021838e-01 + syst_JES_EtaIntercalibration_Stat162: 4.74634108e-02 + syst_JES_EtaIntercalibration_Stat163: 2.48825581e-04 + syst_JES_EtaIntercalibration_Stat164: 2.05440210e-03 + syst_JES_EtaIntercalibration_Stat165: 4.19031172e-02 + syst_JES_EtaIntercalibration_Stat166: 8.72496556e-02 + syst_JES_EtaIntercalibration_Stat167: 3.89086324e-02 + syst_JES_EtaIntercalibration_Stat168: 4.22992234e-03 + syst_JES_EtaIntercalibration_Stat169: 6.21932436e-05 + syst_JES_EtaIntercalibration_Stat17: 1.28672795e-05 syst_JES_EtaIntercalibration_Stat170: 0.0 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 syst_JES_EtaIntercalibration_Stat175: 0.0 - syst_JES_EtaIntercalibration_Stat176: 4.5249827347736924e-05 - syst_JES_EtaIntercalibration_Stat177: 4.7510153651614304e-05 - syst_JES_EtaIntercalibration_Stat178: 0.040020025924529336 - syst_JES_EtaIntercalibration_Stat179: 0.08491718598140191 - syst_JES_EtaIntercalibration_Stat18: 4.319085277000213e-09 - syst_JES_EtaIntercalibration_Stat180: 0.03745470998419291 - syst_JES_EtaIntercalibration_Stat181: 0.0007141385815618695 - syst_JES_EtaIntercalibration_Stat182: 0.006611207756529816 - syst_JES_EtaIntercalibration_Stat183: 0.008883144094294542 - syst_JES_EtaIntercalibration_Stat184: 0.00476000785188428 - syst_JES_EtaIntercalibration_Stat185: 0.003766643864237765 - syst_JES_EtaIntercalibration_Stat186: 9.536671746474238e-07 + syst_JES_EtaIntercalibration_Stat176: 4.52498273e-05 + syst_JES_EtaIntercalibration_Stat177: 4.75101537e-05 + syst_JES_EtaIntercalibration_Stat178: 4.00200259e-02 + syst_JES_EtaIntercalibration_Stat179: 8.49171860e-02 + syst_JES_EtaIntercalibration_Stat18: 4.31908528e-09 + syst_JES_EtaIntercalibration_Stat180: 3.74547100e-02 + syst_JES_EtaIntercalibration_Stat181: 7.14138582e-04 + syst_JES_EtaIntercalibration_Stat182: 6.61120776e-03 + syst_JES_EtaIntercalibration_Stat183: 8.88314409e-03 + syst_JES_EtaIntercalibration_Stat184: 4.76000785e-03 + syst_JES_EtaIntercalibration_Stat185: 3.76664386e-03 + syst_JES_EtaIntercalibration_Stat186: 9.53667175e-07 syst_JES_EtaIntercalibration_Stat187: 0.0 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 @@ -46625,31 +46625,31 @@ bins: syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 syst_JES_EtaIntercalibration_Stat192: 0.0 - syst_JES_EtaIntercalibration_Stat193: 0.00010882770373392979 - syst_JES_EtaIntercalibration_Stat194: 0.0028960327877114926 - syst_JES_EtaIntercalibration_Stat195: 0.005409167773327057 - syst_JES_EtaIntercalibration_Stat196: 0.01089389942812031 - syst_JES_EtaIntercalibration_Stat197: 0.006164519097829124 - syst_JES_EtaIntercalibration_Stat198: 0.010845910335236967 - syst_JES_EtaIntercalibration_Stat199: 0.007543268986321514 + syst_JES_EtaIntercalibration_Stat193: 1.08827704e-04 + syst_JES_EtaIntercalibration_Stat194: 2.89603279e-03 + syst_JES_EtaIntercalibration_Stat195: 5.40916777e-03 + syst_JES_EtaIntercalibration_Stat196: 1.08938994e-02 + syst_JES_EtaIntercalibration_Stat197: 6.16451910e-03 + syst_JES_EtaIntercalibration_Stat198: 1.08459103e-02 + syst_JES_EtaIntercalibration_Stat199: 7.54326899e-03 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 0.0016297586286011803 - syst_JES_EtaIntercalibration_Stat201: 9.536671746474238e-07 + syst_JES_EtaIntercalibration_Stat200: 1.62975863e-03 + syst_JES_EtaIntercalibration_Stat201: 9.53667175e-07 syst_JES_EtaIntercalibration_Stat202: 0.0 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 syst_JES_EtaIntercalibration_Stat207: 0.0 - syst_JES_EtaIntercalibration_Stat208: 4.371696238303846e-10 - syst_JES_EtaIntercalibration_Stat209: 4.852938264276087e-08 + syst_JES_EtaIntercalibration_Stat208: 4.37169624e-10 + syst_JES_EtaIntercalibration_Stat209: 4.85293826e-08 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 0.006043150233942558 - syst_JES_EtaIntercalibration_Stat211: 0.013560762036109918 - syst_JES_EtaIntercalibration_Stat212: 0.0001410821041096283 - syst_JES_EtaIntercalibration_Stat213: 9.932445356003728e-06 - syst_JES_EtaIntercalibration_Stat214: 9.536671746474238e-07 + syst_JES_EtaIntercalibration_Stat210: 6.04315023e-03 + syst_JES_EtaIntercalibration_Stat211: 1.35607620e-02 + syst_JES_EtaIntercalibration_Stat212: 1.41082104e-04 + syst_JES_EtaIntercalibration_Stat213: 9.93244536e-06 + syst_JES_EtaIntercalibration_Stat214: 9.53667175e-07 syst_JES_EtaIntercalibration_Stat215: 0.0 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 @@ -46657,11 +46657,11 @@ bins: syst_JES_EtaIntercalibration_Stat219: 0.0 syst_JES_EtaIntercalibration_Stat22: 0.0 syst_JES_EtaIntercalibration_Stat220: 0.0 - syst_JES_EtaIntercalibration_Stat221: 1.5285348376795342e-24 - syst_JES_EtaIntercalibration_Stat222: 2.2663885121591042e-10 - syst_JES_EtaIntercalibration_Stat223: 0.00029010419175703057 - syst_JES_EtaIntercalibration_Stat224: 1.4565060487344362e-07 - syst_JES_EtaIntercalibration_Stat225: 8.282698035664466e-10 + syst_JES_EtaIntercalibration_Stat221: 1.52853484e-24 + syst_JES_EtaIntercalibration_Stat222: 2.26638851e-10 + syst_JES_EtaIntercalibration_Stat223: 2.90104192e-04 + syst_JES_EtaIntercalibration_Stat224: 1.45650605e-07 + syst_JES_EtaIntercalibration_Stat225: 8.28269804e-10 syst_JES_EtaIntercalibration_Stat226: 0.0 syst_JES_EtaIntercalibration_Stat227: 0.0 syst_JES_EtaIntercalibration_Stat228: 0.0 @@ -46670,291 +46670,291 @@ bins: syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 syst_JES_EtaIntercalibration_Stat232: 0.0 - syst_JES_EtaIntercalibration_Stat233: 1.5285348376795342e-24 - syst_JES_EtaIntercalibration_Stat234: 9.500298679515293e-10 - syst_JES_EtaIntercalibration_Stat235: 9.44141000832074e-07 - syst_JES_EtaIntercalibration_Stat236: 3.0969068439331524e-35 + syst_JES_EtaIntercalibration_Stat233: 1.52853484e-24 + syst_JES_EtaIntercalibration_Stat234: 9.50029868e-10 + syst_JES_EtaIntercalibration_Stat235: 9.44141001e-07 + syst_JES_EtaIntercalibration_Stat236: 3.09690684e-35 syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 syst_JES_EtaIntercalibration_Stat239: 0.0 - syst_JES_EtaIntercalibration_Stat24: 1.3813105190361796e-08 + syst_JES_EtaIntercalibration_Stat24: 1.38131052e-08 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 syst_JES_EtaIntercalibration_Stat243: 0.0 - syst_JES_EtaIntercalibration_Stat244: 1.5285348376795342e-24 - syst_JES_EtaIntercalibration_Stat245: 7.645272264609025e-44 - syst_JES_EtaIntercalibration_Stat25: 4.153903465416595e-06 - syst_JES_EtaIntercalibration_Stat26: 0.00011204113920788203 - syst_JES_EtaIntercalibration_Stat27: 0.00010935959582953844 - syst_JES_EtaIntercalibration_Stat28: 9.719495604252054e-07 + syst_JES_EtaIntercalibration_Stat244: 1.52853484e-24 + syst_JES_EtaIntercalibration_Stat245: 7.64527226e-44 + syst_JES_EtaIntercalibration_Stat25: 4.15390347e-06 + syst_JES_EtaIntercalibration_Stat26: 1.12041139e-04 + syst_JES_EtaIntercalibration_Stat27: 1.09359596e-04 + syst_JES_EtaIntercalibration_Stat28: 9.71949560e-07 syst_JES_EtaIntercalibration_Stat29: 0.0 - syst_JES_EtaIntercalibration_Stat3: 2.528491832906525e-07 + syst_JES_EtaIntercalibration_Stat3: 2.52849183e-07 syst_JES_EtaIntercalibration_Stat30: 0.0 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 2.2949673200287624e-06 - syst_JES_EtaIntercalibration_Stat36: 2.2949673200287624e-06 - syst_JES_EtaIntercalibration_Stat37: 3.3883681883763383e-06 - syst_JES_EtaIntercalibration_Stat38: 5.280083782479214e-05 - syst_JES_EtaIntercalibration_Stat39: 2.660559903478965e-05 - syst_JES_EtaIntercalibration_Stat4: 0.00010571975186048584 - syst_JES_EtaIntercalibration_Stat40: 2.040215299300542e-05 + syst_JES_EtaIntercalibration_Stat35: 2.29496732e-06 + syst_JES_EtaIntercalibration_Stat36: 2.29496732e-06 + syst_JES_EtaIntercalibration_Stat37: 3.38836819e-06 + syst_JES_EtaIntercalibration_Stat38: 5.28008378e-05 + syst_JES_EtaIntercalibration_Stat39: 2.66055990e-05 + syst_JES_EtaIntercalibration_Stat4: 1.05719752e-04 + syst_JES_EtaIntercalibration_Stat40: 2.04021530e-05 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 syst_JES_EtaIntercalibration_Stat44: 0.0 syst_JES_EtaIntercalibration_Stat45: 0.0 - syst_JES_EtaIntercalibration_Stat46: 3.395838335374639e-07 - syst_JES_EtaIntercalibration_Stat47: 3.130808322143022e-05 - syst_JES_EtaIntercalibration_Stat48: 2.2227070589711098e-05 - syst_JES_EtaIntercalibration_Stat49: 0.0001821968693474177 - syst_JES_EtaIntercalibration_Stat5: 0.00010565381212200537 - syst_JES_EtaIntercalibration_Stat50: 3.391412638930863e-06 + syst_JES_EtaIntercalibration_Stat46: 3.39583834e-07 + syst_JES_EtaIntercalibration_Stat47: 3.13080832e-05 + syst_JES_EtaIntercalibration_Stat48: 2.22270706e-05 + syst_JES_EtaIntercalibration_Stat49: 1.82196869e-04 + syst_JES_EtaIntercalibration_Stat5: 1.05653812e-04 + syst_JES_EtaIntercalibration_Stat50: 3.39141264e-06 syst_JES_EtaIntercalibration_Stat51: 0.0 syst_JES_EtaIntercalibration_Stat52: 0.0 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 2.463842273766728e-09 - syst_JES_EtaIntercalibration_Stat57: 2.2949673200287624e-06 - syst_JES_EtaIntercalibration_Stat58: 2.2949673200287624e-06 - syst_JES_EtaIntercalibration_Stat59: 4.14683957580951e-06 + syst_JES_EtaIntercalibration_Stat56: 2.46384227e-09 + syst_JES_EtaIntercalibration_Stat57: 2.29496732e-06 + syst_JES_EtaIntercalibration_Stat58: 2.29496732e-06 + syst_JES_EtaIntercalibration_Stat59: 4.14683958e-06 syst_JES_EtaIntercalibration_Stat6: 0.0 - syst_JES_EtaIntercalibration_Stat60: 0.0002893991735907343 - syst_JES_EtaIntercalibration_Stat61: 0.00026151521117327 - syst_JES_EtaIntercalibration_Stat62: 3.9676765241133255e-05 - syst_JES_EtaIntercalibration_Stat63: 6.828602989768478e-08 + syst_JES_EtaIntercalibration_Stat60: 2.89399174e-04 + syst_JES_EtaIntercalibration_Stat61: 2.61515211e-04 + syst_JES_EtaIntercalibration_Stat62: 3.96767652e-05 + syst_JES_EtaIntercalibration_Stat63: 6.82860299e-08 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 2.3561950746913975e-06 - syst_JES_EtaIntercalibration_Stat69: 0.0007266758424497129 + syst_JES_EtaIntercalibration_Stat68: 2.35619507e-06 + syst_JES_EtaIntercalibration_Stat69: 7.26675842e-04 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 0.00037072015336639034 - syst_JES_EtaIntercalibration_Stat71: 0.00024399086048456818 - syst_JES_EtaIntercalibration_Stat72: 0.0001496336874771186 + syst_JES_EtaIntercalibration_Stat70: 3.70720153e-04 + syst_JES_EtaIntercalibration_Stat71: 2.43990860e-04 + syst_JES_EtaIntercalibration_Stat72: 1.49633687e-04 syst_JES_EtaIntercalibration_Stat73: 0.0 syst_JES_EtaIntercalibration_Stat74: 0.0 syst_JES_EtaIntercalibration_Stat75: 0.0 - syst_JES_EtaIntercalibration_Stat76: 3.729105388695793e-07 - syst_JES_EtaIntercalibration_Stat77: 2.463842273766728e-09 - syst_JES_EtaIntercalibration_Stat78: 2.463842273766728e-09 - syst_JES_EtaIntercalibration_Stat79: 2.2949673200287624e-06 + syst_JES_EtaIntercalibration_Stat76: 3.72910539e-07 + syst_JES_EtaIntercalibration_Stat77: 2.46384227e-09 + syst_JES_EtaIntercalibration_Stat78: 2.46384227e-09 + syst_JES_EtaIntercalibration_Stat79: 2.29496732e-06 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 2.2681205325114447e-06 - syst_JES_EtaIntercalibration_Stat81: 1.7353048723495248e-05 - syst_JES_EtaIntercalibration_Stat82: 0.0004813587351186223 - syst_JES_EtaIntercalibration_Stat83: 0.0010582825898596273 - syst_JES_EtaIntercalibration_Stat84: 0.0004443553532928348 - syst_JES_EtaIntercalibration_Stat85: 3.009962821614247e-07 + syst_JES_EtaIntercalibration_Stat80: 2.26812053e-06 + syst_JES_EtaIntercalibration_Stat81: 1.73530487e-05 + syst_JES_EtaIntercalibration_Stat82: 4.81358735e-04 + syst_JES_EtaIntercalibration_Stat83: 1.05828259e-03 + syst_JES_EtaIntercalibration_Stat84: 4.44355353e-04 + syst_JES_EtaIntercalibration_Stat85: 3.00996282e-07 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 3.611044119087996e-06 + syst_JES_EtaIntercalibration_Stat89: 3.61104412e-06 syst_JES_EtaIntercalibration_Stat9: 0.0 - syst_JES_EtaIntercalibration_Stat90: 0.0008510840308101192 - syst_JES_EtaIntercalibration_Stat91: 0.0007999103496642609 - syst_JES_EtaIntercalibration_Stat92: 0.0010670304904265857 - syst_JES_EtaIntercalibration_Stat93: 0.00010185826328776668 + syst_JES_EtaIntercalibration_Stat90: 8.51084031e-04 + syst_JES_EtaIntercalibration_Stat91: 7.99910350e-04 + syst_JES_EtaIntercalibration_Stat92: 1.06703049e-03 + syst_JES_EtaIntercalibration_Stat93: 1.01858263e-04 syst_JES_EtaIntercalibration_Stat94: 0.0 syst_JES_EtaIntercalibration_Stat95: 0.0 - syst_JES_EtaIntercalibration_Stat96: 0.0002974797261999547 - syst_JES_EtaIntercalibration_Stat97: 3.729105388695793e-07 - syst_JES_EtaIntercalibration_Stat98: 2.463842273766728e-09 - syst_JES_EtaIntercalibration_Stat99: 2.463842273766728e-09 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.009080250037856888 - syst_JES_Flavour_Comp: 0.15074762751035256 - syst_JES_Flavour_Response: 1.51353121870677 - syst_JES_Gjet_Generator: 1.3411826301812888 - syst_JES_Gjet_OOC: 0.8412570400894129 - syst_JES_Gjet_Purity: 0.2563624192427587 - syst_JES_Gjet_Stat1: 0.0006330645701664246 - syst_JES_Gjet_Stat10: 0.08530662503580833 - syst_JES_Gjet_Stat11: 0.11447264258328275 - syst_JES_Gjet_Stat12: 0.024291146535311996 - syst_JES_Gjet_Stat13: 0.009129357959352892 - syst_JES_Gjet_Stat14: 0.005053767381864741 - syst_JES_Gjet_Stat15: 1.7147938370763407e-07 - syst_JES_Gjet_Stat2: 4.3154045870578575e-35 - syst_JES_Gjet_Stat3: 6.947255789158767e-06 - syst_JES_Gjet_Stat4: 0.0017812231912795208 - syst_JES_Gjet_Stat5: 0.001388455545516312 - syst_JES_Gjet_Stat6: 0.012704910891068854 - syst_JES_Gjet_Stat7: 0.017309884459464193 - syst_JES_Gjet_Stat8: 0.019055715677979666 - syst_JES_Gjet_Stat9: 0.05272985563226966 - syst_JES_Gjet_Veto: 0.35861069420752084 - syst_JES_Gjet_dPhi: 0.06472792036671655 - syst_JES_LArESZee: 1.533189078359222 - syst_JES_LArEsmear: 0.10851008570635265 - syst_JES_LAr_JVT: 0.16185326688083873 - syst_JES_MJB_Alpha: 7.440024243912113e-06 - syst_JES_MJB_Asym: 0.0076448551462732104 - syst_JES_MJB_Beta: 6.631156516777447e-28 - syst_JES_MJB_Fragmentation: 0.010344960355168114 - syst_JES_MJB_Stat1: 0.0008820468737544509 + syst_JES_EtaIntercalibration_Stat96: 2.97479726e-04 + syst_JES_EtaIntercalibration_Stat97: 3.72910539e-07 + syst_JES_EtaIntercalibration_Stat98: 2.46384227e-09 + syst_JES_EtaIntercalibration_Stat99: 2.46384227e-09 + syst_JES_EtaIntercalibration_TotalStat_MJB: 9.08025004e-03 + syst_JES_Flavour_Comp: 1.50747628e-01 + syst_JES_Flavour_Response: 1.51353122e+00 + syst_JES_Gjet_Generator: 1.34118263e+00 + syst_JES_Gjet_OOC: 8.41257040e-01 + syst_JES_Gjet_Purity: 2.56362419e-01 + syst_JES_Gjet_Stat1: 6.33064570e-04 + syst_JES_Gjet_Stat10: 8.53066250e-02 + syst_JES_Gjet_Stat11: 1.14472643e-01 + syst_JES_Gjet_Stat12: 2.42911465e-02 + syst_JES_Gjet_Stat13: 9.12935796e-03 + syst_JES_Gjet_Stat14: 5.05376738e-03 + syst_JES_Gjet_Stat15: 1.71479384e-07 + syst_JES_Gjet_Stat2: 4.31540459e-35 + syst_JES_Gjet_Stat3: 6.94725579e-06 + syst_JES_Gjet_Stat4: 1.78122319e-03 + syst_JES_Gjet_Stat5: 1.38845555e-03 + syst_JES_Gjet_Stat6: 1.27049109e-02 + syst_JES_Gjet_Stat7: 1.73098845e-02 + syst_JES_Gjet_Stat8: 1.90557157e-02 + syst_JES_Gjet_Stat9: 5.27298556e-02 + syst_JES_Gjet_Veto: 3.58610694e-01 + syst_JES_Gjet_dPhi: 6.47279204e-02 + syst_JES_LArESZee: 1.53318908e+00 + syst_JES_LArEsmear: 1.08510086e-01 + syst_JES_LAr_JVT: 1.61853267e-01 + syst_JES_MJB_Alpha: 7.44002424e-06 + syst_JES_MJB_Asym: 7.64485515e-03 + syst_JES_MJB_Beta: 6.63115652e-28 + syst_JES_MJB_Fragmentation: 1.03449604e-02 + syst_JES_MJB_Stat1: 8.82046874e-04 syst_JES_MJB_Stat10: 0.0 - syst_JES_MJB_Stat11: 4.492939794833668e-15 + syst_JES_MJB_Stat11: 4.49293979e-15 syst_JES_MJB_Stat12: 0.0 syst_JES_MJB_Stat13: 0.0 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 0.0009211038310092951 - syst_JES_MJB_Stat3: 0.00011409883467853648 - syst_JES_MJB_Stat4: 3.551570180919983e-10 - syst_JES_MJB_Stat5: 3.36866561564071e-05 + syst_JES_MJB_Stat2: 9.21103831e-04 + syst_JES_MJB_Stat3: 1.14098835e-04 + syst_JES_MJB_Stat4: 3.55157018e-10 + syst_JES_MJB_Stat5: 3.36866562e-05 syst_JES_MJB_Stat6: 0.0 - syst_JES_MJB_Stat7: 9.691690293751651e-22 + syst_JES_MJB_Stat7: 9.69169029e-22 syst_JES_MJB_Stat8: 0.0 syst_JES_MJB_Stat9: 0.0 - syst_JES_MJB_Threshold: 0.00020951445654178615 - syst_JES_Pileup_MuOffset: 0.01941152796742183 - syst_JES_Pileup_NPVOffset: 0.0695808831504746 - syst_JES_Pileup_Pt_term: 0.42111958812194905 - syst_JES_Pileup_Rho_topology: 0.42630293219728155 - syst_JES_PunchThrough_MC15: 0.0018072865034838832 + syst_JES_MJB_Threshold: 2.09514457e-04 + syst_JES_Pileup_MuOffset: 1.94115280e-02 + syst_JES_Pileup_NPVOffset: 6.95808832e-02 + syst_JES_Pileup_Pt_term: 4.21119588e-01 + syst_JES_Pileup_Rho_topology: 4.26302932e-01 + syst_JES_PunchThrough_MC15: 1.80728650e-03 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 1.2410798201566249 - syst_JES_Zjet_MuScale: 0.07386217892128555 - syst_JES_Zjet_MuSmearID: 0.012878079592858556 - syst_JES_Zjet_MuSmearMS: 0.14587363435521855 - syst_JES_Zjet_OOC: 0.41927216399374767 - syst_JES_Zjet_Stat1: 0.006056585494347186 - syst_JES_Zjet_Stat10: 0.10211420603912073 - syst_JES_Zjet_Stat11: 0.17278544498886472 - syst_JES_Zjet_Stat12: 0.25970972257503183 - syst_JES_Zjet_Stat13: 0.005938286874175075 - syst_JES_Zjet_Stat2: 0.0005752936358938799 - syst_JES_Zjet_Stat3: 0.0006186885484636029 - syst_JES_Zjet_Stat4: 5.122815931692256e-06 - syst_JES_Zjet_Stat5: 7.145340276536871e-06 - syst_JES_Zjet_Stat6: 0.0077907869307278586 - syst_JES_Zjet_Stat7: 0.009714963342699756 - syst_JES_Zjet_Stat8: 0.013802692155880316 - syst_JES_Zjet_Stat9: 0.038255752508609735 - syst_JES_Zjet_Veto: 0.07193091685777403 - syst_JES_Zjet_dPhi: 0.08428744434967761 + syst_JES_Zjet_MC: 1.24107982e+00 + syst_JES_Zjet_MuScale: 7.38621789e-02 + syst_JES_Zjet_MuSmearID: 1.28780796e-02 + syst_JES_Zjet_MuSmearMS: 1.45873634e-01 + syst_JES_Zjet_OOC: 4.19272164e-01 + syst_JES_Zjet_Stat1: 6.05658549e-03 + syst_JES_Zjet_Stat10: 1.02114206e-01 + syst_JES_Zjet_Stat11: 1.72785445e-01 + syst_JES_Zjet_Stat12: 2.59709723e-01 + syst_JES_Zjet_Stat13: 5.93828687e-03 + syst_JES_Zjet_Stat2: 5.75293636e-04 + syst_JES_Zjet_Stat3: 6.18688548e-04 + syst_JES_Zjet_Stat4: 5.12281593e-06 + syst_JES_Zjet_Stat5: 7.14534028e-06 + syst_JES_Zjet_Stat6: 7.79078693e-03 + syst_JES_Zjet_Stat7: 9.71496334e-03 + syst_JES_Zjet_Stat8: 1.38026922e-02 + syst_JES_Zjet_Stat9: 3.82557525e-02 + syst_JES_Zjet_Veto: 7.19309169e-02 + syst_JES_Zjet_dPhi: 8.42874443e-02 syst_PRW: 0.0 syst_Unfolding_bias: 0.0 - syst_cleaning: 0.31272177330656076 + syst_cleaning: 3.12721773e-01 syst_lumi: 1.3199 - stat: 0.31641 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.377288043144757 - syst_JER_NP1: 0.053477826246024616 - syst_JER_NP2: 0.027888097761410692 - syst_JER_NP3: 0.11577607125395124 - syst_JER_NP4: 0.029365341816501984 - syst_JER_NP5: 0.03039866896757159 - syst_JER_NP6: 0.019238843520336665 - syst_JER_NP7: 5.621530285429405e-06 - syst_JER_NP8: 0.0006188030603511912 - syst_JES_EtaIntercalibration_Modelling: 0.97234901527178 - syst_JES_EtaIntercalibration_NonClosure: 0.6059343281247563 + syst_JER_NP0: 3.77288043e-01 + syst_JER_NP1: 5.34778262e-02 + syst_JER_NP2: 2.78880978e-02 + syst_JER_NP3: 1.15776071e-01 + syst_JER_NP4: 2.93653418e-02 + syst_JER_NP5: 3.03986690e-02 + syst_JER_NP6: 1.92388435e-02 + syst_JER_NP7: 5.62153029e-06 + syst_JER_NP8: 6.18803060e-04 + syst_JES_EtaIntercalibration_Modelling: 9.72349015e-01 + syst_JES_EtaIntercalibration_NonClosure: 6.05934328e-01 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 2.086255197716713e-10 + syst_JES_EtaIntercalibration_Stat100: 2.08625520e-10 syst_JES_EtaIntercalibration_Stat101: 0.0 - syst_JES_EtaIntercalibration_Stat102: 4.2248153509946446e-05 - syst_JES_EtaIntercalibration_Stat103: 0.0002660458795020137 - syst_JES_EtaIntercalibration_Stat104: 0.0007074972420440944 - syst_JES_EtaIntercalibration_Stat105: 0.00016193893316617842 - syst_JES_EtaIntercalibration_Stat106: 2.3161102629192767e-06 + syst_JES_EtaIntercalibration_Stat102: 4.22481535e-05 + syst_JES_EtaIntercalibration_Stat103: 2.66045880e-04 + syst_JES_EtaIntercalibration_Stat104: 7.07497242e-04 + syst_JES_EtaIntercalibration_Stat105: 1.61938933e-04 + syst_JES_EtaIntercalibration_Stat106: 2.31611026e-06 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 4.0448596119024955e-05 + syst_JES_EtaIntercalibration_Stat109: 4.04485961e-05 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 0.0009718688427457689 - syst_JES_EtaIntercalibration_Stat111: 0.009232201958362914 - syst_JES_EtaIntercalibration_Stat112: 0.004591077732951164 - syst_JES_EtaIntercalibration_Stat113: 0.00013992919352301007 - syst_JES_EtaIntercalibration_Stat114: 1.0902393808242298e-05 + syst_JES_EtaIntercalibration_Stat110: 9.71868843e-04 + syst_JES_EtaIntercalibration_Stat111: 9.23220196e-03 + syst_JES_EtaIntercalibration_Stat112: 4.59107773e-03 + syst_JES_EtaIntercalibration_Stat113: 1.39929194e-04 + syst_JES_EtaIntercalibration_Stat114: 1.09023938e-05 syst_JES_EtaIntercalibration_Stat115: 0.0 - syst_JES_EtaIntercalibration_Stat116: 4.040874534058191e-05 - syst_JES_EtaIntercalibration_Stat117: 2.5409185347035432e-05 - syst_JES_EtaIntercalibration_Stat118: 2.086255197716713e-10 - syst_JES_EtaIntercalibration_Stat119: 2.086255197716713e-10 + syst_JES_EtaIntercalibration_Stat116: 4.04087453e-05 + syst_JES_EtaIntercalibration_Stat117: 2.54091853e-05 + syst_JES_EtaIntercalibration_Stat118: 2.08625520e-10 + syst_JES_EtaIntercalibration_Stat119: 2.08625520e-10 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 2.086255197716713e-10 - syst_JES_EtaIntercalibration_Stat121: 3.693598347140631e-07 - syst_JES_EtaIntercalibration_Stat122: 9.656916588642567e-05 - syst_JES_EtaIntercalibration_Stat123: 0.004830092623335499 - syst_JES_EtaIntercalibration_Stat124: 0.007705166497227688 - syst_JES_EtaIntercalibration_Stat125: 0.003184725972513177 - syst_JES_EtaIntercalibration_Stat126: 0.00027239303235398663 + syst_JES_EtaIntercalibration_Stat120: 2.08625520e-10 + syst_JES_EtaIntercalibration_Stat121: 3.69359835e-07 + syst_JES_EtaIntercalibration_Stat122: 9.65691659e-05 + syst_JES_EtaIntercalibration_Stat123: 4.83009262e-03 + syst_JES_EtaIntercalibration_Stat124: 7.70516650e-03 + syst_JES_EtaIntercalibration_Stat125: 3.18472597e-03 + syst_JES_EtaIntercalibration_Stat126: 2.72393032e-04 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 0.0007966676780188839 - syst_JES_EtaIntercalibration_Stat129: 0.03815528272729741 + syst_JES_EtaIntercalibration_Stat128: 7.96667678e-04 + syst_JES_EtaIntercalibration_Stat129: 3.81552827e-02 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 0.07462500033500837 - syst_JES_EtaIntercalibration_Stat131: 0.03204570954121627 - syst_JES_EtaIntercalibration_Stat132: 0.002409730430981856 - syst_JES_EtaIntercalibration_Stat133: 2.7129001211802838e-05 + syst_JES_EtaIntercalibration_Stat130: 7.46250003e-02 + syst_JES_EtaIntercalibration_Stat131: 3.20457095e-02 + syst_JES_EtaIntercalibration_Stat132: 2.40973043e-03 + syst_JES_EtaIntercalibration_Stat133: 2.71290012e-05 syst_JES_EtaIntercalibration_Stat134: 0.0 - syst_JES_EtaIntercalibration_Stat135: 4.040874534058191e-05 - syst_JES_EtaIntercalibration_Stat136: 4.040874534058191e-05 - syst_JES_EtaIntercalibration_Stat137: 2.086255197716713e-10 - syst_JES_EtaIntercalibration_Stat138: 2.086255197716713e-10 - syst_JES_EtaIntercalibration_Stat139: 2.086255197716713e-10 + syst_JES_EtaIntercalibration_Stat135: 4.04087453e-05 + syst_JES_EtaIntercalibration_Stat136: 4.04087453e-05 + syst_JES_EtaIntercalibration_Stat137: 2.08625520e-10 + syst_JES_EtaIntercalibration_Stat138: 2.08625520e-10 + syst_JES_EtaIntercalibration_Stat139: 2.08625520e-10 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 2.6067364653911604e-07 - syst_JES_EtaIntercalibration_Stat141: 0.00165757362430753 - syst_JES_EtaIntercalibration_Stat142: 0.025844159881876605 - syst_JES_EtaIntercalibration_Stat143: 0.06786191476078464 - syst_JES_EtaIntercalibration_Stat144: 0.03731108832505426 - syst_JES_EtaIntercalibration_Stat145: 0.0003329392201288398 - syst_JES_EtaIntercalibration_Stat146: 0.0013963572134307182 - syst_JES_EtaIntercalibration_Stat147: 0.027856059933163556 - syst_JES_EtaIntercalibration_Stat148: 0.06487140568077741 - syst_JES_EtaIntercalibration_Stat149: 0.025745428234931346 + syst_JES_EtaIntercalibration_Stat140: 2.60673647e-07 + syst_JES_EtaIntercalibration_Stat141: 1.65757362e-03 + syst_JES_EtaIntercalibration_Stat142: 2.58441599e-02 + syst_JES_EtaIntercalibration_Stat143: 6.78619148e-02 + syst_JES_EtaIntercalibration_Stat144: 3.73110883e-02 + syst_JES_EtaIntercalibration_Stat145: 3.32939220e-04 + syst_JES_EtaIntercalibration_Stat146: 1.39635721e-03 + syst_JES_EtaIntercalibration_Stat147: 2.78560599e-02 + syst_JES_EtaIntercalibration_Stat148: 6.48714057e-02 + syst_JES_EtaIntercalibration_Stat149: 2.57454282e-02 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 0.001203775410946743 - syst_JES_EtaIntercalibration_Stat151: 1.2515537263737422e-05 + syst_JES_EtaIntercalibration_Stat150: 1.20377541e-03 + syst_JES_EtaIntercalibration_Stat151: 1.25155373e-05 syst_JES_EtaIntercalibration_Stat152: 0.0 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 2.086255197716713e-10 + syst_JES_EtaIntercalibration_Stat156: 2.08625520e-10 syst_JES_EtaIntercalibration_Stat157: 0.0 syst_JES_EtaIntercalibration_Stat158: 0.0 - syst_JES_EtaIntercalibration_Stat159: 0.002694886407624633 - syst_JES_EtaIntercalibration_Stat16: 3.599231898699149e-05 - syst_JES_EtaIntercalibration_Stat160: 0.03092051543878271 - syst_JES_EtaIntercalibration_Stat161: 0.06344197092619365 - syst_JES_EtaIntercalibration_Stat162: 0.024891221344080325 - syst_JES_EtaIntercalibration_Stat163: 0.00018521058285098075 - syst_JES_EtaIntercalibration_Stat164: 0.0013188618606586515 - syst_JES_EtaIntercalibration_Stat165: 0.027028393866450888 - syst_JES_EtaIntercalibration_Stat166: 0.062499011192178065 - syst_JES_EtaIntercalibration_Stat167: 0.026642687552122065 - syst_JES_EtaIntercalibration_Stat168: 0.0023084969135781837 - syst_JES_EtaIntercalibration_Stat169: 1.2515537263737422e-05 - syst_JES_EtaIntercalibration_Stat17: 2.063577074046469e-06 + syst_JES_EtaIntercalibration_Stat159: 2.69488641e-03 + syst_JES_EtaIntercalibration_Stat16: 3.59923190e-05 + syst_JES_EtaIntercalibration_Stat160: 3.09205154e-02 + syst_JES_EtaIntercalibration_Stat161: 6.34419709e-02 + syst_JES_EtaIntercalibration_Stat162: 2.48912213e-02 + syst_JES_EtaIntercalibration_Stat163: 1.85210583e-04 + syst_JES_EtaIntercalibration_Stat164: 1.31886186e-03 + syst_JES_EtaIntercalibration_Stat165: 2.70283939e-02 + syst_JES_EtaIntercalibration_Stat166: 6.24990112e-02 + syst_JES_EtaIntercalibration_Stat167: 2.66426876e-02 + syst_JES_EtaIntercalibration_Stat168: 2.30849691e-03 + syst_JES_EtaIntercalibration_Stat169: 1.25155373e-05 + syst_JES_EtaIntercalibration_Stat17: 2.06357707e-06 syst_JES_EtaIntercalibration_Stat170: 0.0 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 syst_JES_EtaIntercalibration_Stat175: 0.0 - syst_JES_EtaIntercalibration_Stat176: 3.467565716752893e-05 - syst_JES_EtaIntercalibration_Stat177: 0.0010319558711495375 - syst_JES_EtaIntercalibration_Stat178: 0.03014162362912788 - syst_JES_EtaIntercalibration_Stat179: 0.06656824824944699 - syst_JES_EtaIntercalibration_Stat18: 3.747803073802037e-10 - syst_JES_EtaIntercalibration_Stat180: 0.028868347285565206 - syst_JES_EtaIntercalibration_Stat181: 0.00031956538669065834 - syst_JES_EtaIntercalibration_Stat182: 0.014874046255138511 - syst_JES_EtaIntercalibration_Stat183: 0.038378206054999496 - syst_JES_EtaIntercalibration_Stat184: 0.011930234322929285 - syst_JES_EtaIntercalibration_Stat185: 0.003059207904016986 - syst_JES_EtaIntercalibration_Stat186: 3.4944125042702103e-06 + syst_JES_EtaIntercalibration_Stat176: 3.46756572e-05 + syst_JES_EtaIntercalibration_Stat177: 1.03195587e-03 + syst_JES_EtaIntercalibration_Stat178: 3.01416236e-02 + syst_JES_EtaIntercalibration_Stat179: 6.65682482e-02 + syst_JES_EtaIntercalibration_Stat18: 3.74780307e-10 + syst_JES_EtaIntercalibration_Stat180: 2.88683473e-02 + syst_JES_EtaIntercalibration_Stat181: 3.19565387e-04 + syst_JES_EtaIntercalibration_Stat182: 1.48740463e-02 + syst_JES_EtaIntercalibration_Stat183: 3.83782061e-02 + syst_JES_EtaIntercalibration_Stat184: 1.19302343e-02 + syst_JES_EtaIntercalibration_Stat185: 3.05920790e-03 + syst_JES_EtaIntercalibration_Stat186: 3.49441250e-06 syst_JES_EtaIntercalibration_Stat187: 0.0 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 @@ -46962,31 +46962,31 @@ bins: syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 syst_JES_EtaIntercalibration_Stat192: 0.0 - syst_JES_EtaIntercalibration_Stat193: 0.0002403069899274676 - syst_JES_EtaIntercalibration_Stat194: 0.00256419461039914 - syst_JES_EtaIntercalibration_Stat195: 0.01741897456798189 - syst_JES_EtaIntercalibration_Stat196: 0.03967568079756162 - syst_JES_EtaIntercalibration_Stat197: 0.014908189049981892 - syst_JES_EtaIntercalibration_Stat198: 0.007016488451319506 - syst_JES_EtaIntercalibration_Stat199: 0.0069433321071370345 + syst_JES_EtaIntercalibration_Stat193: 2.40306990e-04 + syst_JES_EtaIntercalibration_Stat194: 2.56419461e-03 + syst_JES_EtaIntercalibration_Stat195: 1.74189746e-02 + syst_JES_EtaIntercalibration_Stat196: 3.96756808e-02 + syst_JES_EtaIntercalibration_Stat197: 1.49081890e-02 + syst_JES_EtaIntercalibration_Stat198: 7.01648845e-03 + syst_JES_EtaIntercalibration_Stat199: 6.94333211e-03 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 0.0008267343043566052 - syst_JES_EtaIntercalibration_Stat201: 3.4944125042702103e-06 + syst_JES_EtaIntercalibration_Stat200: 8.26734304e-04 + syst_JES_EtaIntercalibration_Stat201: 3.49441250e-06 syst_JES_EtaIntercalibration_Stat202: 0.0 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 syst_JES_EtaIntercalibration_Stat207: 0.0 - syst_JES_EtaIntercalibration_Stat208: 2.448253816498608e-08 - syst_JES_EtaIntercalibration_Stat209: 2.6826695435703593e-06 + syst_JES_EtaIntercalibration_Stat208: 2.44825382e-08 + syst_JES_EtaIntercalibration_Stat209: 2.68266954e-06 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 0.004333662048429711 - syst_JES_EtaIntercalibration_Stat211: 0.00780721550874574 - syst_JES_EtaIntercalibration_Stat212: 0.0003680358334456035 - syst_JES_EtaIntercalibration_Stat213: 3.6910002709292775e-05 - syst_JES_EtaIntercalibration_Stat214: 3.4944125042702103e-06 + syst_JES_EtaIntercalibration_Stat210: 4.33366205e-03 + syst_JES_EtaIntercalibration_Stat211: 7.80721551e-03 + syst_JES_EtaIntercalibration_Stat212: 3.68035833e-04 + syst_JES_EtaIntercalibration_Stat213: 3.69100027e-05 + syst_JES_EtaIntercalibration_Stat214: 3.49441250e-06 syst_JES_EtaIntercalibration_Stat215: 0.0 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 @@ -46994,11 +46994,11 @@ bins: syst_JES_EtaIntercalibration_Stat219: 0.0 syst_JES_EtaIntercalibration_Stat22: 0.0 syst_JES_EtaIntercalibration_Stat220: 0.0 - syst_JES_EtaIntercalibration_Stat221: 4.049534788096035e-19 - syst_JES_EtaIntercalibration_Stat222: 6.381746950916935e-08 - syst_JES_EtaIntercalibration_Stat223: 0.0006820592838419547 - syst_JES_EtaIntercalibration_Stat224: 2.2015247823951467e-06 - syst_JES_EtaIntercalibration_Stat225: 4.4322329586789546e-08 + syst_JES_EtaIntercalibration_Stat221: 4.04953479e-19 + syst_JES_EtaIntercalibration_Stat222: 6.38174695e-08 + syst_JES_EtaIntercalibration_Stat223: 6.82059284e-04 + syst_JES_EtaIntercalibration_Stat224: 2.20152478e-06 + syst_JES_EtaIntercalibration_Stat225: 4.43223296e-08 syst_JES_EtaIntercalibration_Stat226: 0.0 syst_JES_EtaIntercalibration_Stat227: 0.0 syst_JES_EtaIntercalibration_Stat228: 0.0 @@ -47007,291 +47007,291 @@ bins: syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 syst_JES_EtaIntercalibration_Stat232: 0.0 - syst_JES_EtaIntercalibration_Stat233: 4.049534788096035e-19 - syst_JES_EtaIntercalibration_Stat234: 5.071444764561673e-08 - syst_JES_EtaIntercalibration_Stat235: 3.6349151848080124e-06 - syst_JES_EtaIntercalibration_Stat236: 5.802370205355719e-27 + syst_JES_EtaIntercalibration_Stat233: 4.04953479e-19 + syst_JES_EtaIntercalibration_Stat234: 5.07144476e-08 + syst_JES_EtaIntercalibration_Stat235: 3.63491518e-06 + syst_JES_EtaIntercalibration_Stat236: 5.80237021e-27 syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 syst_JES_EtaIntercalibration_Stat239: 0.0 - syst_JES_EtaIntercalibration_Stat24: 1.0442534318832762e-09 + syst_JES_EtaIntercalibration_Stat24: 1.04425343e-09 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 syst_JES_EtaIntercalibration_Stat243: 0.0 - syst_JES_EtaIntercalibration_Stat244: 4.049534788096035e-19 - syst_JES_EtaIntercalibration_Stat245: 8.669206088650795e-34 - syst_JES_EtaIntercalibration_Stat25: 4.937168621791239e-07 - syst_JES_EtaIntercalibration_Stat26: 3.145514458319974e-05 - syst_JES_EtaIntercalibration_Stat27: 2.3565321194501042e-05 - syst_JES_EtaIntercalibration_Stat28: 9.841052193475045e-08 + syst_JES_EtaIntercalibration_Stat244: 4.04953479e-19 + syst_JES_EtaIntercalibration_Stat245: 8.66920609e-34 + syst_JES_EtaIntercalibration_Stat25: 4.93716862e-07 + syst_JES_EtaIntercalibration_Stat26: 3.14551446e-05 + syst_JES_EtaIntercalibration_Stat27: 2.35653212e-05 + syst_JES_EtaIntercalibration_Stat28: 9.84105219e-08 syst_JES_EtaIntercalibration_Stat29: 0.0 - syst_JES_EtaIntercalibration_Stat3: 2.5754560758630693e-08 + syst_JES_EtaIntercalibration_Stat3: 2.57545608e-08 syst_JES_EtaIntercalibration_Stat30: 0.0 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 3.1791792572926744e-07 - syst_JES_EtaIntercalibration_Stat36: 3.1791792572926744e-07 - syst_JES_EtaIntercalibration_Stat37: 4.172925237842993e-07 - syst_JES_EtaIntercalibration_Stat38: 3.406185888570969e-05 - syst_JES_EtaIntercalibration_Stat39: 1.8416828411808587e-05 - syst_JES_EtaIntercalibration_Stat4: 5.892316537380836e-05 - syst_JES_EtaIntercalibration_Stat40: 3.0195361915863837e-06 + syst_JES_EtaIntercalibration_Stat35: 3.17917926e-07 + syst_JES_EtaIntercalibration_Stat36: 3.17917926e-07 + syst_JES_EtaIntercalibration_Stat37: 4.17292524e-07 + syst_JES_EtaIntercalibration_Stat38: 3.40618589e-05 + syst_JES_EtaIntercalibration_Stat39: 1.84168284e-05 + syst_JES_EtaIntercalibration_Stat4: 5.89231654e-05 + syst_JES_EtaIntercalibration_Stat40: 3.01953619e-06 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 syst_JES_EtaIntercalibration_Stat44: 0.0 syst_JES_EtaIntercalibration_Stat45: 0.0 - syst_JES_EtaIntercalibration_Stat46: 3.4724194375103944e-08 - syst_JES_EtaIntercalibration_Stat47: 5.0995879000170194e-06 - syst_JES_EtaIntercalibration_Stat48: 0.00011653408363221466 - syst_JES_EtaIntercalibration_Stat49: 7.922297034793634e-05 - syst_JES_EtaIntercalibration_Stat5: 5.8880955356972926e-05 - syst_JES_EtaIntercalibration_Stat50: 4.131605589840347e-07 + syst_JES_EtaIntercalibration_Stat46: 3.47241944e-08 + syst_JES_EtaIntercalibration_Stat47: 5.09958790e-06 + syst_JES_EtaIntercalibration_Stat48: 1.16534084e-04 + syst_JES_EtaIntercalibration_Stat49: 7.92229703e-05 + syst_JES_EtaIntercalibration_Stat5: 5.88809554e-05 + syst_JES_EtaIntercalibration_Stat50: 4.13160559e-07 syst_JES_EtaIntercalibration_Stat51: 0.0 syst_JES_EtaIntercalibration_Stat52: 0.0 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 2.086255197716713e-10 - syst_JES_EtaIntercalibration_Stat57: 3.1791792572926744e-07 - syst_JES_EtaIntercalibration_Stat58: 3.1791792572926744e-07 - syst_JES_EtaIntercalibration_Stat59: 5.040639121182949e-07 + syst_JES_EtaIntercalibration_Stat56: 2.08625520e-10 + syst_JES_EtaIntercalibration_Stat57: 3.17917926e-07 + syst_JES_EtaIntercalibration_Stat58: 3.17917926e-07 + syst_JES_EtaIntercalibration_Stat59: 5.04063912e-07 syst_JES_EtaIntercalibration_Stat6: 0.0 - syst_JES_EtaIntercalibration_Stat60: 0.00032170680362715365 - syst_JES_EtaIntercalibration_Stat61: 0.0001091054955387216 - syst_JES_EtaIntercalibration_Stat62: 7.84684501885949e-06 - syst_JES_EtaIntercalibration_Stat63: 6.245946160516836e-09 + syst_JES_EtaIntercalibration_Stat60: 3.21706804e-04 + syst_JES_EtaIntercalibration_Stat61: 1.09105496e-04 + syst_JES_EtaIntercalibration_Stat62: 7.84684502e-06 + syst_JES_EtaIntercalibration_Stat63: 6.24594616e-09 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 3.00944338208912e-07 - syst_JES_EtaIntercalibration_Stat69: 0.00038141255844655926 + syst_JES_EtaIntercalibration_Stat68: 3.00944338e-07 + syst_JES_EtaIntercalibration_Stat69: 3.81412558e-04 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 0.0004778729407488982 - syst_JES_EtaIntercalibration_Stat71: 0.00010749203784467015 - syst_JES_EtaIntercalibration_Stat72: 6.763145246850758e-05 + syst_JES_EtaIntercalibration_Stat70: 4.77872941e-04 + syst_JES_EtaIntercalibration_Stat71: 1.07492038e-04 + syst_JES_EtaIntercalibration_Stat72: 6.76314525e-05 syst_JES_EtaIntercalibration_Stat73: 0.0 syst_JES_EtaIntercalibration_Stat74: 0.0 syst_JES_EtaIntercalibration_Stat75: 0.0 - syst_JES_EtaIntercalibration_Stat76: 3.411533873128039e-08 - syst_JES_EtaIntercalibration_Stat77: 2.086255197716713e-10 - syst_JES_EtaIntercalibration_Stat78: 2.086255197716713e-10 - syst_JES_EtaIntercalibration_Stat79: 3.1791792572926744e-07 + syst_JES_EtaIntercalibration_Stat76: 3.41153387e-08 + syst_JES_EtaIntercalibration_Stat77: 2.08625520e-10 + syst_JES_EtaIntercalibration_Stat78: 2.08625520e-10 + syst_JES_EtaIntercalibration_Stat79: 3.17917926e-07 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 3.14713631735265e-07 - syst_JES_EtaIntercalibration_Stat81: 2.649488063758733e-06 - syst_JES_EtaIntercalibration_Stat82: 0.00020047919468114392 - syst_JES_EtaIntercalibration_Stat83: 0.00045840084947565266 - syst_JES_EtaIntercalibration_Stat84: 0.00024190985650650944 - syst_JES_EtaIntercalibration_Stat85: 3.141224396234691e-08 + syst_JES_EtaIntercalibration_Stat80: 3.14713632e-07 + syst_JES_EtaIntercalibration_Stat81: 2.64948806e-06 + syst_JES_EtaIntercalibration_Stat82: 2.00479195e-04 + syst_JES_EtaIntercalibration_Stat83: 4.58400849e-04 + syst_JES_EtaIntercalibration_Stat84: 2.41909857e-04 + syst_JES_EtaIntercalibration_Stat85: 3.14122440e-08 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 4.7490585119579224e-07 + syst_JES_EtaIntercalibration_Stat89: 4.74905851e-07 syst_JES_EtaIntercalibration_Stat9: 0.0 - syst_JES_EtaIntercalibration_Stat90: 0.000421323910637647 - syst_JES_EtaIntercalibration_Stat91: 0.0006464518719904831 - syst_JES_EtaIntercalibration_Stat92: 3.570555792870348e-05 - syst_JES_EtaIntercalibration_Stat93: 3.562801982639507e-05 + syst_JES_EtaIntercalibration_Stat90: 4.21323911e-04 + syst_JES_EtaIntercalibration_Stat91: 6.46451872e-04 + syst_JES_EtaIntercalibration_Stat92: 3.57055579e-05 + syst_JES_EtaIntercalibration_Stat93: 3.56280198e-05 syst_JES_EtaIntercalibration_Stat94: 0.0 syst_JES_EtaIntercalibration_Stat95: 0.0 - syst_JES_EtaIntercalibration_Stat96: 2.5409185347035432e-05 - syst_JES_EtaIntercalibration_Stat97: 3.411533873128039e-08 - syst_JES_EtaIntercalibration_Stat98: 2.086255197716713e-10 - syst_JES_EtaIntercalibration_Stat99: 2.086255197716713e-10 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.014788671441343203 - syst_JES_Flavour_Comp: 0.128994896410672 - syst_JES_Flavour_Response: 0.7773740846593742 - syst_JES_Gjet_Generator: 0.7761438204353623 - syst_JES_Gjet_OOC: 0.5036846831103761 - syst_JES_Gjet_Purity: 0.15953034194158802 - syst_JES_Gjet_Stat1: 0.0003645966949932486 - syst_JES_Gjet_Stat10: 0.0460343141037205 - syst_JES_Gjet_Stat11: 0.07977143646067807 - syst_JES_Gjet_Stat12: 0.04320410483970244 - syst_JES_Gjet_Stat13: 0.007376388886169166 - syst_JES_Gjet_Stat14: 0.006671284808790582 - syst_JES_Gjet_Stat15: 9.511430915876958e-06 - syst_JES_Gjet_Stat2: 8.086079195135303e-27 - syst_JES_Gjet_Stat3: 6.351430311355074e-07 - syst_JES_Gjet_Stat4: 0.0010477551094510349 - syst_JES_Gjet_Stat5: 0.00129078915927302 - syst_JES_Gjet_Stat6: 0.0068410710236044186 - syst_JES_Gjet_Stat7: 0.009274037241137217 - syst_JES_Gjet_Stat8: 0.009816565629078228 - syst_JES_Gjet_Stat9: 0.023446459754086543 - syst_JES_Gjet_Veto: 0.21735415224927265 - syst_JES_Gjet_dPhi: 0.035324260784905324 - syst_JES_LArESZee: 0.9437546079357705 - syst_JES_LArEsmear: 0.07182473877432483 - syst_JES_LAr_JVT: 0.10215670450342454 - syst_JES_MJB_Alpha: 0.00010923178417933124 - syst_JES_MJB_Asym: 0.009931442833244321 - syst_JES_MJB_Beta: 3.723909236273086e-21 - syst_JES_MJB_Fragmentation: 0.018596064099695938 - syst_JES_MJB_Stat1: 0.0018905334564614296 + syst_JES_EtaIntercalibration_Stat96: 2.54091853e-05 + syst_JES_EtaIntercalibration_Stat97: 3.41153387e-08 + syst_JES_EtaIntercalibration_Stat98: 2.08625520e-10 + syst_JES_EtaIntercalibration_Stat99: 2.08625520e-10 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.47886714e-02 + syst_JES_Flavour_Comp: 1.28994896e-01 + syst_JES_Flavour_Response: 7.77374085e-01 + syst_JES_Gjet_Generator: 7.76143820e-01 + syst_JES_Gjet_OOC: 5.03684683e-01 + syst_JES_Gjet_Purity: 1.59530342e-01 + syst_JES_Gjet_Stat1: 3.64596695e-04 + syst_JES_Gjet_Stat10: 4.60343141e-02 + syst_JES_Gjet_Stat11: 7.97714365e-02 + syst_JES_Gjet_Stat12: 4.32041048e-02 + syst_JES_Gjet_Stat13: 7.37638889e-03 + syst_JES_Gjet_Stat14: 6.67128481e-03 + syst_JES_Gjet_Stat15: 9.51143092e-06 + syst_JES_Gjet_Stat2: 8.08607920e-27 + syst_JES_Gjet_Stat3: 6.35143031e-07 + syst_JES_Gjet_Stat4: 1.04775511e-03 + syst_JES_Gjet_Stat5: 1.29078916e-03 + syst_JES_Gjet_Stat6: 6.84107102e-03 + syst_JES_Gjet_Stat7: 9.27403724e-03 + syst_JES_Gjet_Stat8: 9.81656563e-03 + syst_JES_Gjet_Stat9: 2.34464598e-02 + syst_JES_Gjet_Veto: 2.17354152e-01 + syst_JES_Gjet_dPhi: 3.53242608e-02 + syst_JES_LArESZee: 9.43754608e-01 + syst_JES_LArEsmear: 7.18247388e-02 + syst_JES_LAr_JVT: 1.02156705e-01 + syst_JES_MJB_Alpha: 1.09231784e-04 + syst_JES_MJB_Asym: 9.93144283e-03 + syst_JES_MJB_Beta: 3.72390924e-21 + syst_JES_MJB_Fragmentation: 1.85960641e-02 + syst_JES_MJB_Stat1: 1.89053346e-03 syst_JES_MJB_Stat10: 0.0 - syst_JES_MJB_Stat11: 8.784961695989346e-12 + syst_JES_MJB_Stat11: 8.78496170e-12 syst_JES_MJB_Stat12: 0.0 syst_JES_MJB_Stat13: 0.0 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 - syst_JES_MJB_Stat16: 3.956004044487316e-43 - syst_JES_MJB_Stat2: 0.0012657269561402254 - syst_JES_MJB_Stat3: 0.00034618985409020877 - syst_JES_MJB_Stat4: 1.0077937623839513e-07 - syst_JES_MJB_Stat5: 0.00016939456898023623 + syst_JES_MJB_Stat16: 3.95600404e-43 + syst_JES_MJB_Stat2: 1.26572696e-03 + syst_JES_MJB_Stat3: 3.46189854e-04 + syst_JES_MJB_Stat4: 1.00779376e-07 + syst_JES_MJB_Stat5: 1.69394569e-04 syst_JES_MJB_Stat6: 0.0 - syst_JES_MJB_Stat7: 2.5677653222208606e-16 + syst_JES_MJB_Stat7: 2.56776532e-16 syst_JES_MJB_Stat8: 0.0 syst_JES_MJB_Stat9: 0.0 - syst_JES_MJB_Threshold: 0.0008584263320169064 - syst_JES_Pileup_MuOffset: 0.02285740691220244 - syst_JES_Pileup_NPVOffset: 0.046538952233586006 - syst_JES_Pileup_Pt_term: 0.23260477209206176 - syst_JES_Pileup_Rho_topology: 0.23970504792348452 - syst_JES_PunchThrough_MC15: 0.003821951596697687 + syst_JES_MJB_Threshold: 8.58426332e-04 + syst_JES_Pileup_MuOffset: 2.28574069e-02 + syst_JES_Pileup_NPVOffset: 4.65389522e-02 + syst_JES_Pileup_Pt_term: 2.32604772e-01 + syst_JES_Pileup_Rho_topology: 2.39705048e-01 + syst_JES_PunchThrough_MC15: 3.82195160e-03 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.7211048814146248 - syst_JES_Zjet_MuScale: 0.04232019139843297 - syst_JES_Zjet_MuSmearID: 0.007356502752667194 - syst_JES_Zjet_MuSmearMS: 0.10036586708139378 - syst_JES_Zjet_OOC: 0.2449255192910694 - syst_JES_Zjet_Stat1: 0.003490674218609853 - syst_JES_Zjet_Stat10: 0.043299370376484694 - syst_JES_Zjet_Stat11: 0.0797726983372131 - syst_JES_Zjet_Stat12: 0.20005281177729045 - syst_JES_Zjet_Stat13: 0.019348472807950504 - syst_JES_Zjet_Stat2: 0.0003442261284388505 - syst_JES_Zjet_Stat3: 0.0013258848931939756 - syst_JES_Zjet_Stat4: 4.6921181642729337e-07 - syst_JES_Zjet_Stat5: 6.540614497124869e-07 - syst_JES_Zjet_Stat6: 0.004557445775870516 - syst_JES_Zjet_Stat7: 0.004789145095943533 - syst_JES_Zjet_Stat8: 0.0070936004081143455 - syst_JES_Zjet_Stat9: 0.018101861782700693 - syst_JES_Zjet_Veto: 0.043250279478865804 - syst_JES_Zjet_dPhi: 0.04376630762355901 + syst_JES_Zjet_MC: 7.21104881e-01 + syst_JES_Zjet_MuScale: 4.23201914e-02 + syst_JES_Zjet_MuSmearID: 7.35650275e-03 + syst_JES_Zjet_MuSmearMS: 1.00365867e-01 + syst_JES_Zjet_OOC: 2.44925519e-01 + syst_JES_Zjet_Stat1: 3.49067422e-03 + syst_JES_Zjet_Stat10: 4.32993704e-02 + syst_JES_Zjet_Stat11: 7.97726983e-02 + syst_JES_Zjet_Stat12: 2.00052812e-01 + syst_JES_Zjet_Stat13: 1.93484728e-02 + syst_JES_Zjet_Stat2: 3.44226128e-04 + syst_JES_Zjet_Stat3: 1.32588489e-03 + syst_JES_Zjet_Stat4: 4.69211816e-07 + syst_JES_Zjet_Stat5: 6.54061450e-07 + syst_JES_Zjet_Stat6: 4.55744578e-03 + syst_JES_Zjet_Stat7: 4.78914510e-03 + syst_JES_Zjet_Stat8: 7.09360041e-03 + syst_JES_Zjet_Stat9: 1.81018618e-02 + syst_JES_Zjet_Veto: 4.32502795e-02 + syst_JES_Zjet_dPhi: 4.37663076e-02 syst_PRW: 0.0 syst_Unfolding_bias: 0.0 - syst_cleaning: 0.17285867059537396 + syst_cleaning: 1.72858671e-01 syst_lumi: 0.7596 - stat: 0.19395 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.19401706110546052 - syst_JER_NP1: 0.027559406742526226 - syst_JER_NP2: 0.014701952616914532 - syst_JER_NP3: 0.05739037441069713 - syst_JER_NP4: 0.015908929662299724 - syst_JER_NP5: 0.015719143130272718 - syst_JER_NP6: 0.004166697583218633 - syst_JER_NP7: 4.651508250019557e-07 - syst_JER_NP8: 0.00554597374227466 - syst_JES_EtaIntercalibration_Modelling: 0.565772489610444 - syst_JES_EtaIntercalibration_NonClosure: 0.3049369893928908 + syst_JER_NP0: 1.94017061e-01 + syst_JER_NP1: 2.75594067e-02 + syst_JER_NP2: 1.47019526e-02 + syst_JER_NP3: 5.73903744e-02 + syst_JER_NP4: 1.59089297e-02 + syst_JER_NP5: 1.57191431e-02 + syst_JER_NP6: 4.16669758e-03 + syst_JER_NP7: 4.65150825e-07 + syst_JER_NP8: 5.54597374e-03 + syst_JES_EtaIntercalibration_Modelling: 5.65772490e-01 + syst_JES_EtaIntercalibration_NonClosure: 3.04936989e-01 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 2.0819250706977904e-11 + syst_JES_EtaIntercalibration_Stat100: 2.08192507e-11 syst_JES_EtaIntercalibration_Stat101: 0.0 - syst_JES_EtaIntercalibration_Stat102: 8.915229834390137e-06 - syst_JES_EtaIntercalibration_Stat103: 0.00020879028425671535 - syst_JES_EtaIntercalibration_Stat104: 0.00030400035670209334 - syst_JES_EtaIntercalibration_Stat105: 9.938692305831789e-05 - syst_JES_EtaIntercalibration_Stat106: 2.739120955251885e-07 + syst_JES_EtaIntercalibration_Stat102: 8.91522983e-06 + syst_JES_EtaIntercalibration_Stat103: 2.08790284e-04 + syst_JES_EtaIntercalibration_Stat104: 3.04000357e-04 + syst_JES_EtaIntercalibration_Stat105: 9.93869231e-05 + syst_JES_EtaIntercalibration_Stat106: 2.73912096e-07 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 7.260687708475004e-06 + syst_JES_EtaIntercalibration_Stat109: 7.26068771e-06 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 0.00018202191427613872 - syst_JES_EtaIntercalibration_Stat111: 0.002739153896278922 - syst_JES_EtaIntercalibration_Stat112: 0.0010025314197071333 - syst_JES_EtaIntercalibration_Stat113: 7.127625603944136e-05 - syst_JES_EtaIntercalibration_Stat114: 1.376114366613473e-06 + syst_JES_EtaIntercalibration_Stat110: 1.82021914e-04 + syst_JES_EtaIntercalibration_Stat111: 2.73915390e-03 + syst_JES_EtaIntercalibration_Stat112: 1.00253142e-03 + syst_JES_EtaIntercalibration_Stat113: 7.12762560e-05 + syst_JES_EtaIntercalibration_Stat114: 1.37611437e-06 syst_JES_EtaIntercalibration_Stat115: 0.0 - syst_JES_EtaIntercalibration_Stat116: 9.13310390831069e-08 - syst_JES_EtaIntercalibration_Stat117: 1.474841262644899e-06 - syst_JES_EtaIntercalibration_Stat118: 2.0819250706977904e-11 - syst_JES_EtaIntercalibration_Stat119: 2.0819250706977904e-11 + syst_JES_EtaIntercalibration_Stat116: 9.13310391e-08 + syst_JES_EtaIntercalibration_Stat117: 1.47484126e-06 + syst_JES_EtaIntercalibration_Stat118: 2.08192507e-11 + syst_JES_EtaIntercalibration_Stat119: 2.08192507e-11 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 2.0819250706977904e-11 - syst_JES_EtaIntercalibration_Stat121: 3.6771438644687264e-08 - syst_JES_EtaIntercalibration_Stat122: 5.340050631782437e-05 - syst_JES_EtaIntercalibration_Stat123: 0.0013004357846506686 - syst_JES_EtaIntercalibration_Stat124: 0.0022794878262451853 - syst_JES_EtaIntercalibration_Stat125: 0.0010956071946984466 - syst_JES_EtaIntercalibration_Stat126: 6.154060669184209e-05 + syst_JES_EtaIntercalibration_Stat120: 2.08192507e-11 + syst_JES_EtaIntercalibration_Stat121: 3.67714386e-08 + syst_JES_EtaIntercalibration_Stat122: 5.34005063e-05 + syst_JES_EtaIntercalibration_Stat123: 1.30043578e-03 + syst_JES_EtaIntercalibration_Stat124: 2.27948783e-03 + syst_JES_EtaIntercalibration_Stat125: 1.09560719e-03 + syst_JES_EtaIntercalibration_Stat126: 6.15406067e-05 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 0.000155835880656542 - syst_JES_EtaIntercalibration_Stat129: 0.012682251170435001 + syst_JES_EtaIntercalibration_Stat128: 1.55835881e-04 + syst_JES_EtaIntercalibration_Stat129: 1.26822512e-02 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 0.023040110676817504 - syst_JES_EtaIntercalibration_Stat131: 0.010215666057580387 - syst_JES_EtaIntercalibration_Stat132: 0.0005250661363104652 - syst_JES_EtaIntercalibration_Stat133: 2.5411105190447737e-05 + syst_JES_EtaIntercalibration_Stat130: 2.30401107e-02 + syst_JES_EtaIntercalibration_Stat131: 1.02156661e-02 + syst_JES_EtaIntercalibration_Stat132: 5.25066136e-04 + syst_JES_EtaIntercalibration_Stat133: 2.54111052e-05 syst_JES_EtaIntercalibration_Stat134: 0.0 - syst_JES_EtaIntercalibration_Stat135: 9.13310390831069e-08 - syst_JES_EtaIntercalibration_Stat136: 9.13310390831069e-08 - syst_JES_EtaIntercalibration_Stat137: 2.0819250706977904e-11 - syst_JES_EtaIntercalibration_Stat138: 2.0819250706977904e-11 - syst_JES_EtaIntercalibration_Stat139: 2.0819250706977904e-11 + syst_JES_EtaIntercalibration_Stat135: 9.13310391e-08 + syst_JES_EtaIntercalibration_Stat136: 9.13310391e-08 + syst_JES_EtaIntercalibration_Stat137: 2.08192507e-11 + syst_JES_EtaIntercalibration_Stat138: 2.08192507e-11 + syst_JES_EtaIntercalibration_Stat139: 2.08192507e-11 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 2.767817190495066e-08 - syst_JES_EtaIntercalibration_Stat141: 0.0004071191742905264 - syst_JES_EtaIntercalibration_Stat142: 0.008905467197177247 - syst_JES_EtaIntercalibration_Stat143: 0.022261326892168847 - syst_JES_EtaIntercalibration_Stat144: 0.012634114294243185 - syst_JES_EtaIntercalibration_Stat145: 4.730779296268216e-05 - syst_JES_EtaIntercalibration_Stat146: 0.0007404925293850033 - syst_JES_EtaIntercalibration_Stat147: 0.0111606114527834 - syst_JES_EtaIntercalibration_Stat148: 0.02490868121759962 - syst_JES_EtaIntercalibration_Stat149: 0.010120551603050101 + syst_JES_EtaIntercalibration_Stat140: 2.76781719e-08 + syst_JES_EtaIntercalibration_Stat141: 4.07119174e-04 + syst_JES_EtaIntercalibration_Stat142: 8.90546720e-03 + syst_JES_EtaIntercalibration_Stat143: 2.22613269e-02 + syst_JES_EtaIntercalibration_Stat144: 1.26341143e-02 + syst_JES_EtaIntercalibration_Stat145: 4.73077930e-05 + syst_JES_EtaIntercalibration_Stat146: 7.40492529e-04 + syst_JES_EtaIntercalibration_Stat147: 1.11606115e-02 + syst_JES_EtaIntercalibration_Stat148: 2.49086812e-02 + syst_JES_EtaIntercalibration_Stat149: 1.01205516e-02 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 0.0005833097183315225 - syst_JES_EtaIntercalibration_Stat151: 3.3659986631013386e-06 + syst_JES_EtaIntercalibration_Stat150: 5.83309718e-04 + syst_JES_EtaIntercalibration_Stat151: 3.36599866e-06 syst_JES_EtaIntercalibration_Stat152: 0.0 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 2.0819250706977904e-11 + syst_JES_EtaIntercalibration_Stat156: 2.08192507e-11 syst_JES_EtaIntercalibration_Stat157: 0.0 syst_JES_EtaIntercalibration_Stat158: 0.0 - syst_JES_EtaIntercalibration_Stat159: 0.001245718751364047 - syst_JES_EtaIntercalibration_Stat16: 1.9347032395808637e-05 - syst_JES_EtaIntercalibration_Stat160: 0.011582165460310087 - syst_JES_EtaIntercalibration_Stat161: 0.024765213506045124 - syst_JES_EtaIntercalibration_Stat162: 0.01025143443621428 - syst_JES_EtaIntercalibration_Stat163: 0.00014806230951866175 - syst_JES_EtaIntercalibration_Stat164: 0.0007868382362341067 - syst_JES_EtaIntercalibration_Stat165: 0.013882368205749335 - syst_JES_EtaIntercalibration_Stat166: 0.03312078916632271 - syst_JES_EtaIntercalibration_Stat167: 0.014848948615979518 - syst_JES_EtaIntercalibration_Stat168: 0.0011467409155951488 - syst_JES_EtaIntercalibration_Stat169: 3.3651996597527464e-06 - syst_JES_EtaIntercalibration_Stat17: 2.4758345021599543e-07 + syst_JES_EtaIntercalibration_Stat159: 1.24571875e-03 + syst_JES_EtaIntercalibration_Stat16: 1.93470324e-05 + syst_JES_EtaIntercalibration_Stat160: 1.15821655e-02 + syst_JES_EtaIntercalibration_Stat161: 2.47652135e-02 + syst_JES_EtaIntercalibration_Stat162: 1.02514344e-02 + syst_JES_EtaIntercalibration_Stat163: 1.48062310e-04 + syst_JES_EtaIntercalibration_Stat164: 7.86838236e-04 + syst_JES_EtaIntercalibration_Stat165: 1.38823682e-02 + syst_JES_EtaIntercalibration_Stat166: 3.31207892e-02 + syst_JES_EtaIntercalibration_Stat167: 1.48489486e-02 + syst_JES_EtaIntercalibration_Stat168: 1.14674092e-03 + syst_JES_EtaIntercalibration_Stat169: 3.36519966e-06 + syst_JES_EtaIntercalibration_Stat17: 2.47583450e-07 syst_JES_EtaIntercalibration_Stat170: 0.0 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 syst_JES_EtaIntercalibration_Stat175: 0.0 - syst_JES_EtaIntercalibration_Stat176: 1.8870693548462917e-05 - syst_JES_EtaIntercalibration_Stat177: 0.0009431882672664963 - syst_JES_EtaIntercalibration_Stat178: 0.015287563573048519 - syst_JES_EtaIntercalibration_Stat179: 0.03544266778898 - syst_JES_EtaIntercalibration_Stat18: 3.0940137309811665e-11 - syst_JES_EtaIntercalibration_Stat180: 0.01585778909558328 - syst_JES_EtaIntercalibration_Stat181: 0.0001613145984559364 - syst_JES_EtaIntercalibration_Stat182: 0.017040845049468643 - syst_JES_EtaIntercalibration_Stat183: 0.04119142993390737 - syst_JES_EtaIntercalibration_Stat184: 0.014842192391961505 - syst_JES_EtaIntercalibration_Stat185: 0.0018616814980012021 - syst_JES_EtaIntercalibration_Stat186: 2.64570760856146e-06 + syst_JES_EtaIntercalibration_Stat176: 1.88706935e-05 + syst_JES_EtaIntercalibration_Stat177: 9.43188267e-04 + syst_JES_EtaIntercalibration_Stat178: 1.52875636e-02 + syst_JES_EtaIntercalibration_Stat179: 3.54426678e-02 + syst_JES_EtaIntercalibration_Stat18: 3.09401373e-11 + syst_JES_EtaIntercalibration_Stat180: 1.58577891e-02 + syst_JES_EtaIntercalibration_Stat181: 1.61314598e-04 + syst_JES_EtaIntercalibration_Stat182: 1.70408450e-02 + syst_JES_EtaIntercalibration_Stat183: 4.11914299e-02 + syst_JES_EtaIntercalibration_Stat184: 1.48421924e-02 + syst_JES_EtaIntercalibration_Stat185: 1.86168150e-03 + syst_JES_EtaIntercalibration_Stat186: 2.64570761e-06 syst_JES_EtaIntercalibration_Stat187: 0.0 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 @@ -47299,31 +47299,31 @@ bins: syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 syst_JES_EtaIntercalibration_Stat192: 0.0 - syst_JES_EtaIntercalibration_Stat193: 0.00011526823532526212 - syst_JES_EtaIntercalibration_Stat194: 0.0022207338877046926 - syst_JES_EtaIntercalibration_Stat195: 0.019719413657611626 - syst_JES_EtaIntercalibration_Stat196: 0.0400747072727924 - syst_JES_EtaIntercalibration_Stat197: 0.01708693653057797 - syst_JES_EtaIntercalibration_Stat198: 0.004754191433619391 - syst_JES_EtaIntercalibration_Stat199: 0.0021575056778604315 + syst_JES_EtaIntercalibration_Stat193: 1.15268235e-04 + syst_JES_EtaIntercalibration_Stat194: 2.22073389e-03 + syst_JES_EtaIntercalibration_Stat195: 1.97194137e-02 + syst_JES_EtaIntercalibration_Stat196: 4.00747073e-02 + syst_JES_EtaIntercalibration_Stat197: 1.70869365e-02 + syst_JES_EtaIntercalibration_Stat198: 4.75419143e-03 + syst_JES_EtaIntercalibration_Stat199: 2.15750568e-03 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 0.0008027065762157427 - syst_JES_EtaIntercalibration_Stat201: 2.64570760856146e-06 + syst_JES_EtaIntercalibration_Stat200: 8.02706576e-04 + syst_JES_EtaIntercalibration_Stat201: 2.64570761e-06 syst_JES_EtaIntercalibration_Stat202: 0.0 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 syst_JES_EtaIntercalibration_Stat207: 0.0 - syst_JES_EtaIntercalibration_Stat208: 2.906381255100576e-07 - syst_JES_EtaIntercalibration_Stat209: 3.0894903657399546e-05 + syst_JES_EtaIntercalibration_Stat208: 2.90638126e-07 + syst_JES_EtaIntercalibration_Stat209: 3.08949037e-05 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 0.0012729758952941723 - syst_JES_EtaIntercalibration_Stat211: 0.003902316843876212 - syst_JES_EtaIntercalibration_Stat212: 0.0006792676258294665 - syst_JES_EtaIntercalibration_Stat213: 2.936692144233031e-05 - syst_JES_EtaIntercalibration_Stat214: 2.64570760856146e-06 + syst_JES_EtaIntercalibration_Stat210: 1.27297590e-03 + syst_JES_EtaIntercalibration_Stat211: 3.90231684e-03 + syst_JES_EtaIntercalibration_Stat212: 6.79267626e-04 + syst_JES_EtaIntercalibration_Stat213: 2.93669214e-05 + syst_JES_EtaIntercalibration_Stat214: 2.64570761e-06 syst_JES_EtaIntercalibration_Stat215: 0.0 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 @@ -47331,11 +47331,11 @@ bins: syst_JES_EtaIntercalibration_Stat219: 0.0 syst_JES_EtaIntercalibration_Stat22: 0.0 syst_JES_EtaIntercalibration_Stat220: 0.0 - syst_JES_EtaIntercalibration_Stat221: 4.346581501594097e-15 - syst_JES_EtaIntercalibration_Stat222: 2.636253563553785e-06 - syst_JES_EtaIntercalibration_Stat223: 0.0008577535004300477 - syst_JES_EtaIntercalibration_Stat224: 1.263045204060409e-05 - syst_JES_EtaIntercalibration_Stat225: 4.683809000162154e-07 + syst_JES_EtaIntercalibration_Stat221: 4.34658150e-15 + syst_JES_EtaIntercalibration_Stat222: 2.63625356e-06 + syst_JES_EtaIntercalibration_Stat223: 8.57753500e-04 + syst_JES_EtaIntercalibration_Stat224: 1.26304520e-05 + syst_JES_EtaIntercalibration_Stat225: 4.68380900e-07 syst_JES_EtaIntercalibration_Stat226: 0.0 syst_JES_EtaIntercalibration_Stat227: 0.0 syst_JES_EtaIntercalibration_Stat228: 0.0 @@ -47344,291 +47344,291 @@ bins: syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 syst_JES_EtaIntercalibration_Stat232: 0.0 - syst_JES_EtaIntercalibration_Stat233: 4.346581501594097e-15 - syst_JES_EtaIntercalibration_Stat234: 4.702517942549502e-07 - syst_JES_EtaIntercalibration_Stat235: 5.096291854868596e-06 - syst_JES_EtaIntercalibration_Stat236: 1.3224207915739273e-20 + syst_JES_EtaIntercalibration_Stat233: 4.34658150e-15 + syst_JES_EtaIntercalibration_Stat234: 4.70251794e-07 + syst_JES_EtaIntercalibration_Stat235: 5.09629185e-06 + syst_JES_EtaIntercalibration_Stat236: 1.32242079e-20 syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 syst_JES_EtaIntercalibration_Stat239: 0.0 - syst_JES_EtaIntercalibration_Stat24: 8.188270192781867e-11 + syst_JES_EtaIntercalibration_Stat24: 8.18827019e-11 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 syst_JES_EtaIntercalibration_Stat243: 0.0 - syst_JES_EtaIntercalibration_Stat244: 4.346581501594097e-15 - syst_JES_EtaIntercalibration_Stat245: 5.262364286136033e-26 - syst_JES_EtaIntercalibration_Stat25: 4.806449417189367e-08 - syst_JES_EtaIntercalibration_Stat26: 2.4392325094586616e-05 - syst_JES_EtaIntercalibration_Stat27: 2.5161766370974434e-05 - syst_JES_EtaIntercalibration_Stat28: 8.59841566613728e-09 + syst_JES_EtaIntercalibration_Stat244: 4.34658150e-15 + syst_JES_EtaIntercalibration_Stat245: 5.26236429e-26 + syst_JES_EtaIntercalibration_Stat25: 4.80644942e-08 + syst_JES_EtaIntercalibration_Stat26: 2.43923251e-05 + syst_JES_EtaIntercalibration_Stat27: 2.51617664e-05 + syst_JES_EtaIntercalibration_Stat28: 8.59841567e-09 syst_JES_EtaIntercalibration_Stat29: 0.0 - syst_JES_EtaIntercalibration_Stat3: 2.2574725098658457e-09 + syst_JES_EtaIntercalibration_Stat3: 2.25747251e-09 syst_JES_EtaIntercalibration_Stat30: 0.0 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 3.3238921022650537e-08 - syst_JES_EtaIntercalibration_Stat36: 3.3238921022650537e-08 - syst_JES_EtaIntercalibration_Stat37: 4.1414284737452607e-08 - syst_JES_EtaIntercalibration_Stat38: 1.911035926160207e-05 - syst_JES_EtaIntercalibration_Stat39: 1.655838101710128e-05 - syst_JES_EtaIntercalibration_Stat4: 2.4794208065426264e-05 - syst_JES_EtaIntercalibration_Stat40: 3.4718526033048985e-07 + syst_JES_EtaIntercalibration_Stat35: 3.32389210e-08 + syst_JES_EtaIntercalibration_Stat36: 3.32389210e-08 + syst_JES_EtaIntercalibration_Stat37: 4.14142847e-08 + syst_JES_EtaIntercalibration_Stat38: 1.91103593e-05 + syst_JES_EtaIntercalibration_Stat39: 1.65583810e-05 + syst_JES_EtaIntercalibration_Stat4: 2.47942081e-05 + syst_JES_EtaIntercalibration_Stat40: 3.47185260e-07 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 syst_JES_EtaIntercalibration_Stat44: 0.0 syst_JES_EtaIntercalibration_Stat45: 0.0 - syst_JES_EtaIntercalibration_Stat46: 3.0486351044360824e-09 - syst_JES_EtaIntercalibration_Stat47: 6.135440061641871e-07 - syst_JES_EtaIntercalibration_Stat48: 7.321293307025747e-05 - syst_JES_EtaIntercalibration_Stat49: 3.2900108916992965e-05 - syst_JES_EtaIntercalibration_Stat5: 2.4776977671491743e-05 - syst_JES_EtaIntercalibration_Stat50: 4.0747358083070866e-08 + syst_JES_EtaIntercalibration_Stat46: 3.04863510e-09 + syst_JES_EtaIntercalibration_Stat47: 6.13544006e-07 + syst_JES_EtaIntercalibration_Stat48: 7.32129331e-05 + syst_JES_EtaIntercalibration_Stat49: 3.29001089e-05 + syst_JES_EtaIntercalibration_Stat5: 2.47769777e-05 + syst_JES_EtaIntercalibration_Stat50: 4.07473581e-08 syst_JES_EtaIntercalibration_Stat51: 0.0 syst_JES_EtaIntercalibration_Stat52: 0.0 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 2.0819250706977904e-11 - syst_JES_EtaIntercalibration_Stat57: 3.3238921022650537e-08 - syst_JES_EtaIntercalibration_Stat58: 3.3238921022650537e-08 - syst_JES_EtaIntercalibration_Stat59: 4.96788393659715e-08 + syst_JES_EtaIntercalibration_Stat56: 2.08192507e-11 + syst_JES_EtaIntercalibration_Stat57: 3.32389210e-08 + syst_JES_EtaIntercalibration_Stat58: 3.32389210e-08 + syst_JES_EtaIntercalibration_Stat59: 4.96788394e-08 syst_JES_EtaIntercalibration_Stat6: 0.0 - syst_JES_EtaIntercalibration_Stat60: 0.00012734471445647049 - syst_JES_EtaIntercalibration_Stat61: 4.7571002459481555e-05 - syst_JES_EtaIntercalibration_Stat62: 1.1131948526650667e-06 - syst_JES_EtaIntercalibration_Stat63: 5.167959587387947e-10 + syst_JES_EtaIntercalibration_Stat60: 1.27344714e-04 + syst_JES_EtaIntercalibration_Stat61: 4.75710025e-05 + syst_JES_EtaIntercalibration_Stat62: 1.11319485e-06 + syst_JES_EtaIntercalibration_Stat63: 5.16795959e-10 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 3.036206545592707e-08 - syst_JES_EtaIntercalibration_Stat69: 0.0003779209540366874 + syst_JES_EtaIntercalibration_Stat68: 3.03620655e-08 + syst_JES_EtaIntercalibration_Stat69: 3.77920954e-04 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 0.00026971734033057643 - syst_JES_EtaIntercalibration_Stat71: 4.49951272361797e-05 - syst_JES_EtaIntercalibration_Stat72: 3.064369872371806e-05 + syst_JES_EtaIntercalibration_Stat70: 2.69717340e-04 + syst_JES_EtaIntercalibration_Stat71: 4.49951272e-05 + syst_JES_EtaIntercalibration_Stat72: 3.06436987e-05 syst_JES_EtaIntercalibration_Stat73: 0.0 syst_JES_EtaIntercalibration_Stat74: 0.0 syst_JES_EtaIntercalibration_Stat75: 0.0 - syst_JES_EtaIntercalibration_Stat76: 2.82324281633727e-09 - syst_JES_EtaIntercalibration_Stat77: 2.0819250706977904e-11 - syst_JES_EtaIntercalibration_Stat78: 2.0819250706977904e-11 - syst_JES_EtaIntercalibration_Stat79: 3.3238921022650537e-08 + syst_JES_EtaIntercalibration_Stat76: 2.82324282e-09 + syst_JES_EtaIntercalibration_Stat77: 2.08192507e-11 + syst_JES_EtaIntercalibration_Stat78: 2.08192507e-11 + syst_JES_EtaIntercalibration_Stat79: 3.32389210e-08 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 3.292715187728814e-08 - syst_JES_EtaIntercalibration_Stat81: 3.082394645401526e-07 - syst_JES_EtaIntercalibration_Stat82: 7.027506723582697e-05 - syst_JES_EtaIntercalibration_Stat83: 9.649322294855737e-05 - syst_JES_EtaIntercalibration_Stat84: 5.683599827574071e-05 - syst_JES_EtaIntercalibration_Stat85: 2.7788231087998384e-09 + syst_JES_EtaIntercalibration_Stat80: 3.29271519e-08 + syst_JES_EtaIntercalibration_Stat81: 3.08239465e-07 + syst_JES_EtaIntercalibration_Stat82: 7.02750672e-05 + syst_JES_EtaIntercalibration_Stat83: 9.64932229e-05 + syst_JES_EtaIntercalibration_Stat84: 5.68359983e-05 + syst_JES_EtaIntercalibration_Stat85: 2.77882311e-09 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 4.850361210260531e-08 + syst_JES_EtaIntercalibration_Stat89: 4.85036121e-08 syst_JES_EtaIntercalibration_Stat9: 0.0 - syst_JES_EtaIntercalibration_Stat90: 0.0003604959639163801 - syst_JES_EtaIntercalibration_Stat91: 0.0004082216599777626 - syst_JES_EtaIntercalibration_Stat92: 0.0002650980520486712 - syst_JES_EtaIntercalibration_Stat93: 2.8434133946368048e-05 + syst_JES_EtaIntercalibration_Stat90: 3.60495964e-04 + syst_JES_EtaIntercalibration_Stat91: 4.08221660e-04 + syst_JES_EtaIntercalibration_Stat92: 2.65098052e-04 + syst_JES_EtaIntercalibration_Stat93: 2.84341339e-05 syst_JES_EtaIntercalibration_Stat94: 0.0 syst_JES_EtaIntercalibration_Stat95: 0.0 - syst_JES_EtaIntercalibration_Stat96: 1.474841262644899e-06 - syst_JES_EtaIntercalibration_Stat97: 2.82324281633727e-09 - syst_JES_EtaIntercalibration_Stat98: 2.0819250706977904e-11 - syst_JES_EtaIntercalibration_Stat99: 2.0819250706977904e-11 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.02092724719116205 - syst_JES_Flavour_Comp: 0.10313159021366829 - syst_JES_Flavour_Response: 0.3746565663043956 - syst_JES_Gjet_Generator: 0.42952981270221513 - syst_JES_Gjet_OOC: 0.290186164384176 - syst_JES_Gjet_Purity: 0.09651614320930982 - syst_JES_Gjet_Stat1: 0.00019606815141679691 - syst_JES_Gjet_Stat10: 0.023033165218875152 - syst_JES_Gjet_Stat11: 0.043632736276791075 - syst_JES_Gjet_Stat12: 0.041328228549019616 - syst_JES_Gjet_Stat13: 0.008182690923528763 - syst_JES_Gjet_Stat14: 0.005961711394390037 - syst_JES_Gjet_Stat15: 0.00011015832288120586 - syst_JES_Gjet_Stat2: 1.8437680846570698e-20 - syst_JES_Gjet_Stat3: 5.2567742009715423e-08 - syst_JES_Gjet_Stat4: 0.0005655391765202206 - syst_JES_Gjet_Stat5: 0.0007728750707019623 - syst_JES_Gjet_Stat6: 0.0035904441229463522 - syst_JES_Gjet_Stat7: 0.0048632841527099764 - syst_JES_Gjet_Stat8: 0.004712875237050096 - syst_JES_Gjet_Stat9: 0.010546869523702283 - syst_JES_Gjet_Veto: 0.13318992979951602 - syst_JES_Gjet_dPhi: 0.01918201501406982 - syst_JES_LArESZee: 0.5492982864528162 - syst_JES_LArEsmear: 0.04268363887955197 - syst_JES_LAr_JVT: 0.05843479956327394 - syst_JES_MJB_Alpha: 0.0004638432062669454 - syst_JES_MJB_Asym: 0.009702265044823294 - syst_JES_MJB_Beta: 4.824627524483108e-16 - syst_JES_MJB_Fragmentation: 0.025525047992119423 - syst_JES_MJB_Stat1: 0.0020299635464707242 + syst_JES_EtaIntercalibration_Stat96: 1.47484126e-06 + syst_JES_EtaIntercalibration_Stat97: 2.82324282e-09 + syst_JES_EtaIntercalibration_Stat98: 2.08192507e-11 + syst_JES_EtaIntercalibration_Stat99: 2.08192507e-11 + syst_JES_EtaIntercalibration_TotalStat_MJB: 2.09272472e-02 + syst_JES_Flavour_Comp: 1.03131590e-01 + syst_JES_Flavour_Response: 3.74656566e-01 + syst_JES_Gjet_Generator: 4.29529813e-01 + syst_JES_Gjet_OOC: 2.90186164e-01 + syst_JES_Gjet_Purity: 9.65161432e-02 + syst_JES_Gjet_Stat1: 1.96068151e-04 + syst_JES_Gjet_Stat10: 2.30331652e-02 + syst_JES_Gjet_Stat11: 4.36327363e-02 + syst_JES_Gjet_Stat12: 4.13282285e-02 + syst_JES_Gjet_Stat13: 8.18269092e-03 + syst_JES_Gjet_Stat14: 5.96171139e-03 + syst_JES_Gjet_Stat15: 1.10158323e-04 + syst_JES_Gjet_Stat2: 1.84376808e-20 + syst_JES_Gjet_Stat3: 5.25677420e-08 + syst_JES_Gjet_Stat4: 5.65539177e-04 + syst_JES_Gjet_Stat5: 7.72875071e-04 + syst_JES_Gjet_Stat6: 3.59044412e-03 + syst_JES_Gjet_Stat7: 4.86328415e-03 + syst_JES_Gjet_Stat8: 4.71287524e-03 + syst_JES_Gjet_Stat9: 1.05468695e-02 + syst_JES_Gjet_Veto: 1.33189930e-01 + syst_JES_Gjet_dPhi: 1.91820150e-02 + syst_JES_LArESZee: 5.49298286e-01 + syst_JES_LArEsmear: 4.26836389e-02 + syst_JES_LAr_JVT: 5.84347996e-02 + syst_JES_MJB_Alpha: 4.63843206e-04 + syst_JES_MJB_Asym: 9.70226504e-03 + syst_JES_MJB_Beta: 4.82462752e-16 + syst_JES_MJB_Fragmentation: 2.55250480e-02 + syst_JES_MJB_Stat1: 2.02996355e-03 syst_JES_MJB_Stat10: 0.0 - syst_JES_MJB_Stat11: 1.763227722105117e-09 + syst_JES_MJB_Stat11: 1.76322772e-09 syst_JES_MJB_Stat12: 0.0 syst_JES_MJB_Stat13: 0.0 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 - syst_JES_MJB_Stat16: 1.0265865136460735e-33 - syst_JES_MJB_Stat2: 0.002068381674159777 - syst_JES_MJB_Stat3: 0.0013051276441406027 - syst_JES_MJB_Stat4: 4.305012282212445e-06 - syst_JES_MJB_Stat5: 0.0003267513848478687 + syst_JES_MJB_Stat16: 1.02658651e-33 + syst_JES_MJB_Stat2: 2.06838167e-03 + syst_JES_MJB_Stat3: 1.30512764e-03 + syst_JES_MJB_Stat4: 4.30501228e-06 + syst_JES_MJB_Stat5: 3.26751385e-04 syst_JES_MJB_Stat6: 0.0 - syst_JES_MJB_Stat7: 2.757424885649653e-12 + syst_JES_MJB_Stat7: 2.75742489e-12 syst_JES_MJB_Stat8: 0.0 syst_JES_MJB_Stat9: 0.0 - syst_JES_MJB_Threshold: 0.0033278165138721214 - syst_JES_Pileup_MuOffset: 0.02006458751133449 - syst_JES_Pileup_NPVOffset: 0.03291669902951996 - syst_JES_Pileup_Pt_term: 0.12285287654344933 - syst_JES_Pileup_Rho_topology: 0.1329250047018995 - syst_JES_PunchThrough_MC15: 0.003978373623416986 + syst_JES_MJB_Threshold: 3.32781651e-03 + syst_JES_Pileup_MuOffset: 2.00645875e-02 + syst_JES_Pileup_NPVOffset: 3.29166990e-02 + syst_JES_Pileup_Pt_term: 1.22852877e-01 + syst_JES_Pileup_Rho_topology: 1.32925005e-01 + syst_JES_PunchThrough_MC15: 3.97837362e-03 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.39615040587509176 - syst_JES_Zjet_MuScale: 0.02329502682977635 - syst_JES_Zjet_MuSmearID: 0.004005411183636456 - syst_JES_Zjet_MuSmearMS: 0.06377528576964592 - syst_JES_Zjet_OOC: 0.13992667034915107 - syst_JES_Zjet_Stat1: 0.0019268838230776103 - syst_JES_Zjet_Stat10: 0.01806670141448073 - syst_JES_Zjet_Stat11: 0.031153989712394782 - syst_JES_Zjet_Stat12: 0.1258295302184666 - syst_JES_Zjet_Stat13: 0.029617435321107735 - syst_JES_Zjet_Stat2: 0.00018226916689336129 - syst_JES_Zjet_Stat3: 0.0014237457638216172 - syst_JES_Zjet_Stat4: 3.88378425861942e-08 - syst_JES_Zjet_Stat5: 5.41471034382265e-08 - syst_JES_Zjet_Stat6: 0.0025733897392350032 - syst_JES_Zjet_Stat7: 0.001919049960266798 - syst_JES_Zjet_Stat8: 0.003573425150678267 - syst_JES_Zjet_Stat9: 0.009080753534261351 - syst_JES_Zjet_Veto: 0.0256734235153787 - syst_JES_Zjet_dPhi: 0.022947315202437084 + syst_JES_Zjet_MC: 3.96150406e-01 + syst_JES_Zjet_MuScale: 2.32950268e-02 + syst_JES_Zjet_MuSmearID: 4.00541118e-03 + syst_JES_Zjet_MuSmearMS: 6.37752858e-02 + syst_JES_Zjet_OOC: 1.39926670e-01 + syst_JES_Zjet_Stat1: 1.92688382e-03 + syst_JES_Zjet_Stat10: 1.80667014e-02 + syst_JES_Zjet_Stat11: 3.11539897e-02 + syst_JES_Zjet_Stat12: 1.25829530e-01 + syst_JES_Zjet_Stat13: 2.96174353e-02 + syst_JES_Zjet_Stat2: 1.82269167e-04 + syst_JES_Zjet_Stat3: 1.42374576e-03 + syst_JES_Zjet_Stat4: 3.88378426e-08 + syst_JES_Zjet_Stat5: 5.41471034e-08 + syst_JES_Zjet_Stat6: 2.57338974e-03 + syst_JES_Zjet_Stat7: 1.91904996e-03 + syst_JES_Zjet_Stat8: 3.57342515e-03 + syst_JES_Zjet_Stat9: 9.08075353e-03 + syst_JES_Zjet_Veto: 2.56734235e-02 + syst_JES_Zjet_dPhi: 2.29473152e-02 syst_PRW: 0.0 syst_Unfolding_bias: 0.0 - syst_cleaning: 0.09366064741928704 + syst_cleaning: 9.36606474e-02 syst_lumi: 0.4084 - stat: 0.08995 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.0974210207039528 - syst_JER_NP1: 0.031819282078639044 - syst_JER_NP2: 0.005916366536988729 - syst_JER_NP3: 0.032293531860110934 - syst_JER_NP4: 0.009881488994579714 - syst_JER_NP5: 0.008105257286940372 - syst_JER_NP6: 0.0007267206409618485 - syst_JER_NP7: 4.281812787827137e-08 - syst_JER_NP8: 0.011692880269634167 - syst_JES_EtaIntercalibration_Modelling: 0.3412796031115836 - syst_JES_EtaIntercalibration_NonClosure: 0.16773385913404604 + syst_JER_NP0: 9.74210207e-02 + syst_JER_NP1: 3.18192821e-02 + syst_JER_NP2: 5.91636654e-03 + syst_JER_NP3: 3.22935319e-02 + syst_JER_NP4: 9.88148899e-03 + syst_JER_NP5: 8.10525729e-03 + syst_JER_NP6: 7.26720641e-04 + syst_JER_NP7: 4.28181279e-08 + syst_JER_NP8: 1.16928803e-02 + syst_JES_EtaIntercalibration_Modelling: 3.41279603e-01 + syst_JES_EtaIntercalibration_NonClosure: 1.67733859e-01 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 2.592014033526825e-12 + syst_JES_EtaIntercalibration_Stat100: 2.59201403e-12 syst_JES_EtaIntercalibration_Stat101: 0.0 - syst_JES_EtaIntercalibration_Stat102: 1.5360588164194754e-06 - syst_JES_EtaIntercalibration_Stat103: 7.49800213390207e-05 - syst_JES_EtaIntercalibration_Stat104: 0.00011262614028279581 - syst_JES_EtaIntercalibration_Stat105: 2.751931685198599e-05 - syst_JES_EtaIntercalibration_Stat106: 3.083405206504653e-08 + syst_JES_EtaIntercalibration_Stat102: 1.53605882e-06 + syst_JES_EtaIntercalibration_Stat103: 7.49800213e-05 + syst_JES_EtaIntercalibration_Stat104: 1.12626140e-04 + syst_JES_EtaIntercalibration_Stat105: 2.75193169e-05 + syst_JES_EtaIntercalibration_Stat106: 3.08340521e-08 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 1.2663206416622926e-06 + syst_JES_EtaIntercalibration_Stat109: 1.26632064e-06 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 0.00015211045591937458 - syst_JES_EtaIntercalibration_Stat111: 0.000751368869247988 - syst_JES_EtaIntercalibration_Stat112: 0.00025948528257880064 - syst_JES_EtaIntercalibration_Stat113: 2.9214987164125192e-05 - syst_JES_EtaIntercalibration_Stat114: 1.6047450732125649e-07 + syst_JES_EtaIntercalibration_Stat110: 1.52110456e-04 + syst_JES_EtaIntercalibration_Stat111: 7.51368869e-04 + syst_JES_EtaIntercalibration_Stat112: 2.59485283e-04 + syst_JES_EtaIntercalibration_Stat113: 2.92149872e-05 + syst_JES_EtaIntercalibration_Stat114: 1.60474507e-07 syst_JES_EtaIntercalibration_Stat115: 0.0 - syst_JES_EtaIntercalibration_Stat116: 6.302066863339361e-07 - syst_JES_EtaIntercalibration_Stat117: 7.953577308356285e-07 - syst_JES_EtaIntercalibration_Stat118: 2.592014033526825e-12 - syst_JES_EtaIntercalibration_Stat119: 2.592014033526825e-12 + syst_JES_EtaIntercalibration_Stat116: 6.30206686e-07 + syst_JES_EtaIntercalibration_Stat117: 7.95357731e-07 + syst_JES_EtaIntercalibration_Stat118: 2.59201403e-12 + syst_JES_EtaIntercalibration_Stat119: 2.59201403e-12 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 2.592014033526825e-12 - syst_JES_EtaIntercalibration_Stat121: 3.6953303979481996e-09 - syst_JES_EtaIntercalibration_Stat122: 1.9368639601169718e-05 - syst_JES_EtaIntercalibration_Stat123: 0.0003403493609513613 - syst_JES_EtaIntercalibration_Stat124: 0.0006680494349222968 - syst_JES_EtaIntercalibration_Stat125: 0.0003157612710577407 - syst_JES_EtaIntercalibration_Stat126: 8.461871780522323e-06 + syst_JES_EtaIntercalibration_Stat120: 2.59201403e-12 + syst_JES_EtaIntercalibration_Stat121: 3.69533040e-09 + syst_JES_EtaIntercalibration_Stat122: 1.93686396e-05 + syst_JES_EtaIntercalibration_Stat123: 3.40349361e-04 + syst_JES_EtaIntercalibration_Stat124: 6.68049435e-04 + syst_JES_EtaIntercalibration_Stat125: 3.15761271e-04 + syst_JES_EtaIntercalibration_Stat126: 8.46187178e-06 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 5.143116564885536e-05 - syst_JES_EtaIntercalibration_Stat129: 0.004364890376630323 + syst_JES_EtaIntercalibration_Stat128: 5.14311656e-05 + syst_JES_EtaIntercalibration_Stat129: 4.36489038e-03 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 0.007937934806988527 - syst_JES_EtaIntercalibration_Stat131: 0.003673859919417179 - syst_JES_EtaIntercalibration_Stat132: 0.00020437049609716175 - syst_JES_EtaIntercalibration_Stat133: 1.1886540876449295e-05 + syst_JES_EtaIntercalibration_Stat130: 7.93793481e-03 + syst_JES_EtaIntercalibration_Stat131: 3.67385992e-03 + syst_JES_EtaIntercalibration_Stat132: 2.04370496e-04 + syst_JES_EtaIntercalibration_Stat133: 1.18865409e-05 syst_JES_EtaIntercalibration_Stat134: 0.0 - syst_JES_EtaIntercalibration_Stat135: 6.302066863339361e-07 - syst_JES_EtaIntercalibration_Stat136: 6.302066863339361e-07 - syst_JES_EtaIntercalibration_Stat137: 2.592014033526825e-12 - syst_JES_EtaIntercalibration_Stat138: 2.592014033526825e-12 - syst_JES_EtaIntercalibration_Stat139: 2.592014033526825e-12 + syst_JES_EtaIntercalibration_Stat135: 6.30206686e-07 + syst_JES_EtaIntercalibration_Stat136: 6.30206686e-07 + syst_JES_EtaIntercalibration_Stat137: 2.59201403e-12 + syst_JES_EtaIntercalibration_Stat138: 2.59201403e-12 + syst_JES_EtaIntercalibration_Stat139: 2.59201403e-12 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 2.857017807084863e-09 - syst_JES_EtaIntercalibration_Stat141: 5.518989286998118e-05 - syst_JES_EtaIntercalibration_Stat142: 0.003251155333108524 - syst_JES_EtaIntercalibration_Stat143: 0.007462416816956823 - syst_JES_EtaIntercalibration_Stat144: 0.004352039866545343 - syst_JES_EtaIntercalibration_Stat145: 2.4050737010536704e-06 - syst_JES_EtaIntercalibration_Stat146: 0.0002780785793620214 - syst_JES_EtaIntercalibration_Stat147: 0.004287189289033084 - syst_JES_EtaIntercalibration_Stat148: 0.0097855134765632 - syst_JES_EtaIntercalibration_Stat149: 0.004019442682760882 + syst_JES_EtaIntercalibration_Stat140: 2.85701781e-09 + syst_JES_EtaIntercalibration_Stat141: 5.51898929e-05 + syst_JES_EtaIntercalibration_Stat142: 3.25115533e-03 + syst_JES_EtaIntercalibration_Stat143: 7.46241682e-03 + syst_JES_EtaIntercalibration_Stat144: 4.35203987e-03 + syst_JES_EtaIntercalibration_Stat145: 2.40507370e-06 + syst_JES_EtaIntercalibration_Stat146: 2.78078579e-04 + syst_JES_EtaIntercalibration_Stat147: 4.28718929e-03 + syst_JES_EtaIntercalibration_Stat148: 9.78551348e-03 + syst_JES_EtaIntercalibration_Stat149: 4.01944268e-03 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 0.0002832025953270909 - syst_JES_EtaIntercalibration_Stat151: 1.3604868687348658e-06 + syst_JES_EtaIntercalibration_Stat150: 2.83202595e-04 + syst_JES_EtaIntercalibration_Stat151: 1.36048687e-06 syst_JES_EtaIntercalibration_Stat152: 0.0 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 2.592014033526825e-12 + syst_JES_EtaIntercalibration_Stat156: 2.59201403e-12 syst_JES_EtaIntercalibration_Stat157: 0.0 syst_JES_EtaIntercalibration_Stat158: 0.0 - syst_JES_EtaIntercalibration_Stat159: 0.0004848519774116632 - syst_JES_EtaIntercalibration_Stat16: 1.0778554519545256e-05 - syst_JES_EtaIntercalibration_Stat160: 0.004300351613531154 - syst_JES_EtaIntercalibration_Stat161: 0.009266919269638643 - syst_JES_EtaIntercalibration_Stat162: 0.003921513355835984 - syst_JES_EtaIntercalibration_Stat163: 9.948429165828141e-05 - syst_JES_EtaIntercalibration_Stat164: 0.0003586824047817233 - syst_JES_EtaIntercalibration_Stat165: 0.006844988732642296 - syst_JES_EtaIntercalibration_Stat166: 0.01600790742102165 - syst_JES_EtaIntercalibration_Stat167: 0.007446785078139425 - syst_JES_EtaIntercalibration_Stat168: 0.0005820270869985348 - syst_JES_EtaIntercalibration_Stat169: 1.3604868687348658e-06 - syst_JES_EtaIntercalibration_Stat17: 2.809262503509394e-08 + syst_JES_EtaIntercalibration_Stat159: 4.84851977e-04 + syst_JES_EtaIntercalibration_Stat16: 1.07785545e-05 + syst_JES_EtaIntercalibration_Stat160: 4.30035161e-03 + syst_JES_EtaIntercalibration_Stat161: 9.26691927e-03 + syst_JES_EtaIntercalibration_Stat162: 3.92151336e-03 + syst_JES_EtaIntercalibration_Stat163: 9.94842917e-05 + syst_JES_EtaIntercalibration_Stat164: 3.58682405e-04 + syst_JES_EtaIntercalibration_Stat165: 6.84498873e-03 + syst_JES_EtaIntercalibration_Stat166: 1.60079074e-02 + syst_JES_EtaIntercalibration_Stat167: 7.44678508e-03 + syst_JES_EtaIntercalibration_Stat168: 5.82027087e-04 + syst_JES_EtaIntercalibration_Stat169: 1.36048687e-06 + syst_JES_EtaIntercalibration_Stat17: 2.80926250e-08 syst_JES_EtaIntercalibration_Stat170: 0.0 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 syst_JES_EtaIntercalibration_Stat175: 0.0 - syst_JES_EtaIntercalibration_Stat176: 8.0973375253845e-06 - syst_JES_EtaIntercalibration_Stat177: 0.0005983369548743958 - syst_JES_EtaIntercalibration_Stat178: 0.006591157011481368 - syst_JES_EtaIntercalibration_Stat179: 0.016311268344307253 - syst_JES_EtaIntercalibration_Stat18: 2.948422152185809e-12 - syst_JES_EtaIntercalibration_Stat180: 0.00751925554825742 - syst_JES_EtaIntercalibration_Stat181: 0.00014781308627790708 - syst_JES_EtaIntercalibration_Stat182: 0.013324046269808583 - syst_JES_EtaIntercalibration_Stat183: 0.031248473162700283 - syst_JES_EtaIntercalibration_Stat184: 0.013032426136372306 - syst_JES_EtaIntercalibration_Stat185: 0.0010675654300791124 - syst_JES_EtaIntercalibration_Stat186: 1.405559230342144e-06 + syst_JES_EtaIntercalibration_Stat176: 8.09733753e-06 + syst_JES_EtaIntercalibration_Stat177: 5.98336955e-04 + syst_JES_EtaIntercalibration_Stat178: 6.59115701e-03 + syst_JES_EtaIntercalibration_Stat179: 1.63112683e-02 + syst_JES_EtaIntercalibration_Stat18: 2.94842215e-12 + syst_JES_EtaIntercalibration_Stat180: 7.51925555e-03 + syst_JES_EtaIntercalibration_Stat181: 1.47813086e-04 + syst_JES_EtaIntercalibration_Stat182: 1.33240463e-02 + syst_JES_EtaIntercalibration_Stat183: 3.12484732e-02 + syst_JES_EtaIntercalibration_Stat184: 1.30324261e-02 + syst_JES_EtaIntercalibration_Stat185: 1.06756543e-03 + syst_JES_EtaIntercalibration_Stat186: 1.40555923e-06 syst_JES_EtaIntercalibration_Stat187: 0.0 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 @@ -47636,31 +47636,31 @@ bins: syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 syst_JES_EtaIntercalibration_Stat192: 0.0 - syst_JES_EtaIntercalibration_Stat193: 2.9160167124864016e-05 - syst_JES_EtaIntercalibration_Stat194: 0.0014707197829634303 - syst_JES_EtaIntercalibration_Stat195: 0.01437738067243126 - syst_JES_EtaIntercalibration_Stat196: 0.028816163866830016 - syst_JES_EtaIntercalibration_Stat197: 0.012494507433268427 - syst_JES_EtaIntercalibration_Stat198: 0.0064764995753879276 - syst_JES_EtaIntercalibration_Stat199: 0.0029672724849598834 + syst_JES_EtaIntercalibration_Stat193: 2.91601671e-05 + syst_JES_EtaIntercalibration_Stat194: 1.47071978e-03 + syst_JES_EtaIntercalibration_Stat195: 1.43773807e-02 + syst_JES_EtaIntercalibration_Stat196: 2.88161639e-02 + syst_JES_EtaIntercalibration_Stat197: 1.24945074e-02 + syst_JES_EtaIntercalibration_Stat198: 6.47649958e-03 + syst_JES_EtaIntercalibration_Stat199: 2.96727248e-03 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 0.0005061947722961983 - syst_JES_EtaIntercalibration_Stat201: 1.405559230342144e-06 + syst_JES_EtaIntercalibration_Stat200: 5.06194772e-04 + syst_JES_EtaIntercalibration_Stat201: 1.40555923e-06 syst_JES_EtaIntercalibration_Stat202: 0.0 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 syst_JES_EtaIntercalibration_Stat207: 0.0 - syst_JES_EtaIntercalibration_Stat208: 1.0937034824393676e-06 - syst_JES_EtaIntercalibration_Stat209: 0.00011568937980644549 + syst_JES_EtaIntercalibration_Stat208: 1.09370348e-06 + syst_JES_EtaIntercalibration_Stat209: 1.15689380e-04 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 0.0018564478231288917 - syst_JES_EtaIntercalibration_Stat211: 0.005087942413196125 - syst_JES_EtaIntercalibration_Stat212: 0.0008026976812598876 - syst_JES_EtaIntercalibration_Stat213: 1.354463731518862e-05 - syst_JES_EtaIntercalibration_Stat214: 1.405559230342144e-06 + syst_JES_EtaIntercalibration_Stat210: 1.85644782e-03 + syst_JES_EtaIntercalibration_Stat211: 5.08794241e-03 + syst_JES_EtaIntercalibration_Stat212: 8.02697681e-04 + syst_JES_EtaIntercalibration_Stat213: 1.35446373e-05 + syst_JES_EtaIntercalibration_Stat214: 1.40555923e-06 syst_JES_EtaIntercalibration_Stat215: 0.0 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 @@ -47668,11 +47668,11 @@ bins: syst_JES_EtaIntercalibration_Stat219: 0.0 syst_JES_EtaIntercalibration_Stat22: 0.0 syst_JES_EtaIntercalibration_Stat220: 0.0 - syst_JES_EtaIntercalibration_Stat221: 3.017232506784984e-12 - syst_JES_EtaIntercalibration_Stat222: 2.3218935849161996e-05 - syst_JES_EtaIntercalibration_Stat223: 0.0008145962604259856 - syst_JES_EtaIntercalibration_Stat224: 2.2139236662541014e-05 - syst_JES_EtaIntercalibration_Stat225: 1.8538270975201545e-06 + syst_JES_EtaIntercalibration_Stat221: 3.01723251e-12 + syst_JES_EtaIntercalibration_Stat222: 2.32189358e-05 + syst_JES_EtaIntercalibration_Stat223: 8.14596260e-04 + syst_JES_EtaIntercalibration_Stat224: 2.21392367e-05 + syst_JES_EtaIntercalibration_Stat225: 1.85382710e-06 syst_JES_EtaIntercalibration_Stat226: 0.0 syst_JES_EtaIntercalibration_Stat227: 0.0 syst_JES_EtaIntercalibration_Stat228: 0.0 @@ -47681,291 +47681,291 @@ bins: syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 syst_JES_EtaIntercalibration_Stat232: 0.0 - syst_JES_EtaIntercalibration_Stat233: 3.017232506784984e-12 - syst_JES_EtaIntercalibration_Stat234: 1.8662847451554652e-07 - syst_JES_EtaIntercalibration_Stat235: 4.3431322372223484e-05 - syst_JES_EtaIntercalibration_Stat236: 6.257033536364107e-16 + syst_JES_EtaIntercalibration_Stat233: 3.01723251e-12 + syst_JES_EtaIntercalibration_Stat234: 1.86628475e-07 + syst_JES_EtaIntercalibration_Stat235: 4.34313224e-05 + syst_JES_EtaIntercalibration_Stat236: 6.25703354e-16 syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 syst_JES_EtaIntercalibration_Stat239: 0.0 - syst_JES_EtaIntercalibration_Stat24: 8.010734985006058e-12 + syst_JES_EtaIntercalibration_Stat24: 8.01073499e-12 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 syst_JES_EtaIntercalibration_Stat243: 0.0 - syst_JES_EtaIntercalibration_Stat244: 3.017232506784984e-12 - syst_JES_EtaIntercalibration_Stat245: 3.328157260407026e-20 - syst_JES_EtaIntercalibration_Stat25: 4.778778714274182e-09 - syst_JES_EtaIntercalibration_Stat26: 6.93556135206805e-06 - syst_JES_EtaIntercalibration_Stat27: 1.184319157914369e-05 - syst_JES_EtaIntercalibration_Stat28: 8.046073904748514e-10 + syst_JES_EtaIntercalibration_Stat244: 3.01723251e-12 + syst_JES_EtaIntercalibration_Stat245: 3.32815726e-20 + syst_JES_EtaIntercalibration_Stat25: 4.77877871e-09 + syst_JES_EtaIntercalibration_Stat26: 6.93556135e-06 + syst_JES_EtaIntercalibration_Stat27: 1.18431916e-05 + syst_JES_EtaIntercalibration_Stat28: 8.04607390e-10 syst_JES_EtaIntercalibration_Stat29: 0.0 - syst_JES_EtaIntercalibration_Stat3: 2.116197461178895e-10 + syst_JES_EtaIntercalibration_Stat3: 2.11619746e-10 syst_JES_EtaIntercalibration_Stat30: 0.0 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 3.4072903486494955e-09 - syst_JES_EtaIntercalibration_Stat36: 3.4072903486494955e-09 - syst_JES_EtaIntercalibration_Stat37: 4.1554288074590756e-09 - syst_JES_EtaIntercalibration_Stat38: 1.0749199174993223e-05 - syst_JES_EtaIntercalibration_Stat39: 1.038058605411443e-05 - syst_JES_EtaIntercalibration_Stat4: 5.495788049928379e-06 - syst_JES_EtaIntercalibration_Stat40: 3.8540227975843626e-08 + syst_JES_EtaIntercalibration_Stat35: 3.40729035e-09 + syst_JES_EtaIntercalibration_Stat36: 3.40729035e-09 + syst_JES_EtaIntercalibration_Stat37: 4.15542881e-09 + syst_JES_EtaIntercalibration_Stat38: 1.07491992e-05 + syst_JES_EtaIntercalibration_Stat39: 1.03805861e-05 + syst_JES_EtaIntercalibration_Stat4: 5.49578805e-06 + syst_JES_EtaIntercalibration_Stat40: 3.85402280e-08 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 syst_JES_EtaIntercalibration_Stat44: 0.0 syst_JES_EtaIntercalibration_Stat45: 0.0 - syst_JES_EtaIntercalibration_Stat46: 2.8562249123624704e-10 - syst_JES_EtaIntercalibration_Stat47: 6.951432280472852e-08 - syst_JES_EtaIntercalibration_Stat48: 3.832164614157382e-06 - syst_JES_EtaIntercalibration_Stat49: 1.2801201991610007e-05 - syst_JES_EtaIntercalibration_Stat5: 5.487136105343711e-06 - syst_JES_EtaIntercalibration_Stat50: 4.073554070771615e-09 + syst_JES_EtaIntercalibration_Stat46: 2.85622491e-10 + syst_JES_EtaIntercalibration_Stat47: 6.95143228e-08 + syst_JES_EtaIntercalibration_Stat48: 3.83216461e-06 + syst_JES_EtaIntercalibration_Stat49: 1.28012020e-05 + syst_JES_EtaIntercalibration_Stat5: 5.48713611e-06 + syst_JES_EtaIntercalibration_Stat50: 4.07355407e-09 syst_JES_EtaIntercalibration_Stat51: 0.0 syst_JES_EtaIntercalibration_Stat52: 0.0 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 2.592014033526825e-12 - syst_JES_EtaIntercalibration_Stat57: 3.4072903486494955e-09 - syst_JES_EtaIntercalibration_Stat58: 3.4072903486494955e-09 - syst_JES_EtaIntercalibration_Stat59: 4.970484892593478e-09 + syst_JES_EtaIntercalibration_Stat56: 2.59201403e-12 + syst_JES_EtaIntercalibration_Stat57: 3.40729035e-09 + syst_JES_EtaIntercalibration_Stat58: 3.40729035e-09 + syst_JES_EtaIntercalibration_Stat59: 4.97048489e-09 syst_JES_EtaIntercalibration_Stat6: 0.0 - syst_JES_EtaIntercalibration_Stat60: 2.8887841192273264e-05 - syst_JES_EtaIntercalibration_Stat61: 2.086119009069233e-05 - syst_JES_EtaIntercalibration_Stat62: 1.430567310545016e-07 - syst_JES_EtaIntercalibration_Stat63: 4.7566997719006826e-11 + syst_JES_EtaIntercalibration_Stat60: 2.88878412e-05 + syst_JES_EtaIntercalibration_Stat61: 2.08611901e-05 + syst_JES_EtaIntercalibration_Stat62: 1.43056731e-07 + syst_JES_EtaIntercalibration_Stat63: 4.75669977e-11 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 3.0644896292041843e-09 - syst_JES_EtaIntercalibration_Stat69: 0.00019113124077450026 + syst_JES_EtaIntercalibration_Stat68: 3.06448963e-09 + syst_JES_EtaIntercalibration_Stat69: 1.91131241e-04 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 0.00012165846744061838 - syst_JES_EtaIntercalibration_Stat71: 1.5716964425422613e-05 - syst_JES_EtaIntercalibration_Stat72: 1.2447527217029895e-05 + syst_JES_EtaIntercalibration_Stat70: 1.21658467e-04 + syst_JES_EtaIntercalibration_Stat71: 1.57169644e-05 + syst_JES_EtaIntercalibration_Stat72: 1.24475272e-05 syst_JES_EtaIntercalibration_Stat73: 0.0 syst_JES_EtaIntercalibration_Stat74: 0.0 syst_JES_EtaIntercalibration_Stat75: 0.0 - syst_JES_EtaIntercalibration_Stat76: 2.598076211353316e-10 - syst_JES_EtaIntercalibration_Stat77: 2.592014033526825e-12 - syst_JES_EtaIntercalibration_Stat78: 2.592014033526825e-12 - syst_JES_EtaIntercalibration_Stat79: 3.4072903486494955e-09 + syst_JES_EtaIntercalibration_Stat76: 2.59807621e-10 + syst_JES_EtaIntercalibration_Stat77: 2.59201403e-12 + syst_JES_EtaIntercalibration_Stat78: 2.59201403e-12 + syst_JES_EtaIntercalibration_Stat79: 3.40729035e-09 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 3.3762000366536344e-09 - syst_JES_EtaIntercalibration_Stat81: 3.434076986615181e-08 - syst_JES_EtaIntercalibration_Stat82: 2.159306543777423e-05 - syst_JES_EtaIntercalibration_Stat83: 3.0833317612608605e-05 - syst_JES_EtaIntercalibration_Stat84: 8.313412701772962e-06 - syst_JES_EtaIntercalibration_Stat85: 2.602702961826416e-10 + syst_JES_EtaIntercalibration_Stat80: 3.37620004e-09 + syst_JES_EtaIntercalibration_Stat81: 3.43407699e-08 + syst_JES_EtaIntercalibration_Stat82: 2.15930654e-05 + syst_JES_EtaIntercalibration_Stat83: 3.08333176e-05 + syst_JES_EtaIntercalibration_Stat84: 8.31341270e-06 + syst_JES_EtaIntercalibration_Stat85: 2.60270296e-10 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 4.919521989736402e-09 + syst_JES_EtaIntercalibration_Stat89: 4.91952199e-09 syst_JES_EtaIntercalibration_Stat9: 0.0 - syst_JES_EtaIntercalibration_Stat90: 0.00017648559339220865 - syst_JES_EtaIntercalibration_Stat91: 0.00023628742560703481 - syst_JES_EtaIntercalibration_Stat92: 0.00013573521724298378 - syst_JES_EtaIntercalibration_Stat93: 1.2600750851834187e-05 + syst_JES_EtaIntercalibration_Stat90: 1.76485593e-04 + syst_JES_EtaIntercalibration_Stat91: 2.36287426e-04 + syst_JES_EtaIntercalibration_Stat92: 1.35735217e-04 + syst_JES_EtaIntercalibration_Stat93: 1.26007509e-05 syst_JES_EtaIntercalibration_Stat94: 0.0 syst_JES_EtaIntercalibration_Stat95: 0.0 - syst_JES_EtaIntercalibration_Stat96: 7.953577308356285e-07 - syst_JES_EtaIntercalibration_Stat97: 2.598076211353316e-10 - syst_JES_EtaIntercalibration_Stat98: 2.592014033526825e-12 - syst_JES_EtaIntercalibration_Stat99: 2.592014033526825e-12 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.020745852597567543 - syst_JES_Flavour_Comp: 0.07781248807228823 - syst_JES_Flavour_Response: 0.18431568028792342 - syst_JES_Gjet_Generator: 0.24740327402845744 - syst_JES_Gjet_OOC: 0.1744656054928879 - syst_JES_Gjet_Purity: 0.06008327283861957 - syst_JES_Gjet_Stat1: 0.00010921446367125557 - syst_JES_Gjet_Stat10: 0.01212840698525573 - syst_JES_Gjet_Stat11: 0.021941710849430134 - syst_JES_Gjet_Stat12: 0.0314245811427933 - syst_JES_Gjet_Stat13: 0.011365447549480838 - syst_JES_Gjet_Stat14: 0.0042037528471593096 - syst_JES_Gjet_Stat15: 0.0004097878597518477 - syst_JES_Gjet_Stat2: 8.7208758161093e-16 - syst_JES_Gjet_Stat3: 4.841082007155012e-09 - syst_JES_Gjet_Stat4: 0.00031523551169904384 - syst_JES_Gjet_Stat5: 0.00044055025338727725 - syst_JES_Gjet_Stat6: 0.001979317559160227 - syst_JES_Gjet_Stat7: 0.0026874878139258604 - syst_JES_Gjet_Stat8: 0.0023301332043469103 - syst_JES_Gjet_Stat9: 0.0056486438195375716 - syst_JES_Gjet_Veto: 0.08798465590658408 - syst_JES_Gjet_dPhi: 0.01146062790600934 - syst_JES_LArESZee: 0.32970945922129685 - syst_JES_LArEsmear: 0.024784140089984964 - syst_JES_LAr_JVT: 0.034366963787917024 - syst_JES_MJB_Alpha: 0.0008404776543727977 - syst_JES_MJB_Asym: 0.008032362214815764 - syst_JES_MJB_Beta: 2.3824358858109906e-12 - syst_JES_MJB_Fragmentation: 0.02376012784056517 - syst_JES_MJB_Stat1: 0.0015294008630833186 + syst_JES_EtaIntercalibration_Stat96: 7.95357731e-07 + syst_JES_EtaIntercalibration_Stat97: 2.59807621e-10 + syst_JES_EtaIntercalibration_Stat98: 2.59201403e-12 + syst_JES_EtaIntercalibration_Stat99: 2.59201403e-12 + syst_JES_EtaIntercalibration_TotalStat_MJB: 2.07458526e-02 + syst_JES_Flavour_Comp: 7.78124881e-02 + syst_JES_Flavour_Response: 1.84315680e-01 + syst_JES_Gjet_Generator: 2.47403274e-01 + syst_JES_Gjet_OOC: 1.74465605e-01 + syst_JES_Gjet_Purity: 6.00832728e-02 + syst_JES_Gjet_Stat1: 1.09214464e-04 + syst_JES_Gjet_Stat10: 1.21284070e-02 + syst_JES_Gjet_Stat11: 2.19417108e-02 + syst_JES_Gjet_Stat12: 3.14245811e-02 + syst_JES_Gjet_Stat13: 1.13654475e-02 + syst_JES_Gjet_Stat14: 4.20375285e-03 + syst_JES_Gjet_Stat15: 4.09787860e-04 + syst_JES_Gjet_Stat2: 8.72087582e-16 + syst_JES_Gjet_Stat3: 4.84108201e-09 + syst_JES_Gjet_Stat4: 3.15235512e-04 + syst_JES_Gjet_Stat5: 4.40550253e-04 + syst_JES_Gjet_Stat6: 1.97931756e-03 + syst_JES_Gjet_Stat7: 2.68748781e-03 + syst_JES_Gjet_Stat8: 2.33013320e-03 + syst_JES_Gjet_Stat9: 5.64864382e-03 + syst_JES_Gjet_Veto: 8.79846559e-02 + syst_JES_Gjet_dPhi: 1.14606279e-02 + syst_JES_LArESZee: 3.29709459e-01 + syst_JES_LArEsmear: 2.47841401e-02 + syst_JES_LAr_JVT: 3.43669638e-02 + syst_JES_MJB_Alpha: 8.40477654e-04 + syst_JES_MJB_Asym: 8.03236221e-03 + syst_JES_MJB_Beta: 2.38243589e-12 + syst_JES_MJB_Fragmentation: 2.37601278e-02 + syst_JES_MJB_Stat1: 1.52940086e-03 syst_JES_MJB_Stat10: 0.0 - syst_JES_MJB_Stat11: 5.572007447949078e-08 + syst_JES_MJB_Stat11: 5.57200745e-08 syst_JES_MJB_Stat12: 0.0 syst_JES_MJB_Stat13: 0.0 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 - syst_JES_MJB_Stat16: 1.2496746576609448e-26 - syst_JES_MJB_Stat2: 0.0021343574841155358 - syst_JES_MJB_Stat3: 0.002108774762747316 - syst_JES_MJB_Stat4: 4.185500776490192e-05 - syst_JES_MJB_Stat5: 0.00034935464788664257 + syst_JES_MJB_Stat16: 1.24967466e-26 + syst_JES_MJB_Stat2: 2.13435748e-03 + syst_JES_MJB_Stat3: 2.10877476e-03 + syst_JES_MJB_Stat4: 4.18550078e-05 + syst_JES_MJB_Stat5: 3.49354648e-04 syst_JES_MJB_Stat6: 0.0 - syst_JES_MJB_Stat7: 1.9217103709976693e-09 + syst_JES_MJB_Stat7: 1.92171037e-09 syst_JES_MJB_Stat8: 0.0 syst_JES_MJB_Stat9: 0.0 - syst_JES_MJB_Threshold: 0.005856416737220807 - syst_JES_Pileup_MuOffset: 0.017414921044897103 - syst_JES_Pileup_NPVOffset: 0.02409335800589034 - syst_JES_Pileup_Pt_term: 0.07055389287629704 - syst_JES_Pileup_Rho_topology: 0.07798360212249751 - syst_JES_PunchThrough_MC15: 0.003075300473124537 + syst_JES_MJB_Threshold: 5.85641674e-03 + syst_JES_Pileup_MuOffset: 1.74149210e-02 + syst_JES_Pileup_NPVOffset: 2.40933580e-02 + syst_JES_Pileup_Pt_term: 7.05538929e-02 + syst_JES_Pileup_Rho_topology: 7.79836021e-02 + syst_JES_PunchThrough_MC15: 3.07530047e-03 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.2229036338869333 - syst_JES_Zjet_MuScale: 0.013128623461734287 - syst_JES_Zjet_MuSmearID: 0.0023420277538919133 - syst_JES_Zjet_MuSmearMS: 0.04206782945434671 - syst_JES_Zjet_OOC: 0.08283956240830827 - syst_JES_Zjet_Stat1: 0.0012410123127631918 - syst_JES_Zjet_Stat10: 0.00878713394685662 - syst_JES_Zjet_Stat11: 0.01245618083523196 - syst_JES_Zjet_Stat12: 0.07302876419603443 - syst_JES_Zjet_Stat13: 0.029047417699341195 - syst_JES_Zjet_Stat2: 9.829500025433643e-05 - syst_JES_Zjet_Stat3: 0.0010729188727485412 - syst_JES_Zjet_Stat4: 3.5729888619333816e-09 - syst_JES_Zjet_Stat5: 4.986362008518836e-09 - syst_JES_Zjet_Stat6: 0.001524690404639578 - syst_JES_Zjet_Stat7: 0.0006083140595736713 - syst_JES_Zjet_Stat8: 0.0019389081334606857 - syst_JES_Zjet_Stat9: 0.004928896123880072 - syst_JES_Zjet_Veto: 0.015535014483417774 - syst_JES_Zjet_dPhi: 0.012951835120939427 + syst_JES_Zjet_MC: 2.22903634e-01 + syst_JES_Zjet_MuScale: 1.31286235e-02 + syst_JES_Zjet_MuSmearID: 2.34202775e-03 + syst_JES_Zjet_MuSmearMS: 4.20678295e-02 + syst_JES_Zjet_OOC: 8.28395624e-02 + syst_JES_Zjet_Stat1: 1.24101231e-03 + syst_JES_Zjet_Stat10: 8.78713395e-03 + syst_JES_Zjet_Stat11: 1.24561808e-02 + syst_JES_Zjet_Stat12: 7.30287642e-02 + syst_JES_Zjet_Stat13: 2.90474177e-02 + syst_JES_Zjet_Stat2: 9.82950003e-05 + syst_JES_Zjet_Stat3: 1.07291887e-03 + syst_JES_Zjet_Stat4: 3.57298886e-09 + syst_JES_Zjet_Stat5: 4.98636201e-09 + syst_JES_Zjet_Stat6: 1.52469040e-03 + syst_JES_Zjet_Stat7: 6.08314060e-04 + syst_JES_Zjet_Stat8: 1.93890813e-03 + syst_JES_Zjet_Stat9: 4.92889612e-03 + syst_JES_Zjet_Veto: 1.55350145e-02 + syst_JES_Zjet_dPhi: 1.29518351e-02 syst_PRW: 0.0 syst_Unfolding_bias: 0.0 - syst_cleaning: 0.052065447275520454 + syst_cleaning: 5.20654473e-02 syst_lumi: 0.2275 - stat: 0.05875 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.048586811739401055 - syst_JER_NP1: 0.027800003597122067 - syst_JER_NP2: 2.9397947207245608e-05 - syst_JER_NP3: 0.018859673247434594 - syst_JER_NP4: 0.0073787439818711695 - syst_JER_NP5: 0.0035845857763903487 - syst_JER_NP6: 0.00011260606822014522 - syst_JER_NP7: 4.493454239223985e-09 - syst_JER_NP8: 0.010065802054481302 - syst_JES_EtaIntercalibration_Modelling: 0.21312322140020315 - syst_JES_EtaIntercalibration_NonClosure: 0.09260787007592822 + syst_JER_NP0: 4.85868117e-02 + syst_JER_NP1: 2.78000036e-02 + syst_JER_NP2: 2.93979472e-05 + syst_JER_NP3: 1.88596732e-02 + syst_JER_NP4: 7.37874398e-03 + syst_JER_NP5: 3.58458578e-03 + syst_JER_NP6: 1.12606068e-04 + syst_JER_NP7: 4.49345424e-09 + syst_JER_NP8: 1.00658021e-02 + syst_JES_EtaIntercalibration_Modelling: 2.13123221e-01 + syst_JES_EtaIntercalibration_NonClosure: 9.26078701e-02 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 3.7620143540396015e-13 + syst_JES_EtaIntercalibration_Stat100: 3.76201435e-13 syst_JES_EtaIntercalibration_Stat101: 0.0 - syst_JES_EtaIntercalibration_Stat102: 2.3655090361273194e-07 - syst_JES_EtaIntercalibration_Stat103: 1.6097708431637096e-05 - syst_JES_EtaIntercalibration_Stat104: 3.7182702547690105e-05 - syst_JES_EtaIntercalibration_Stat105: 5.388385286892541e-06 - syst_JES_EtaIntercalibration_Stat106: 3.525910913508735e-09 + syst_JES_EtaIntercalibration_Stat102: 2.36550904e-07 + syst_JES_EtaIntercalibration_Stat103: 1.60977084e-05 + syst_JES_EtaIntercalibration_Stat104: 3.71827025e-05 + syst_JES_EtaIntercalibration_Stat105: 5.38838529e-06 + syst_JES_EtaIntercalibration_Stat106: 3.52591091e-09 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 1.9971539750354756e-07 + syst_JES_EtaIntercalibration_Stat109: 1.99715398e-07 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 6.954227131752313e-05 - syst_JES_EtaIntercalibration_Stat111: 0.00015663434872338825 - syst_JES_EtaIntercalibration_Stat112: 0.00011918194158512437 - syst_JES_EtaIntercalibration_Stat113: 9.767053512062887e-06 - syst_JES_EtaIntercalibration_Stat114: 1.8706148721743877e-08 + syst_JES_EtaIntercalibration_Stat110: 6.95422713e-05 + syst_JES_EtaIntercalibration_Stat111: 1.56634349e-04 + syst_JES_EtaIntercalibration_Stat112: 1.19181942e-04 + syst_JES_EtaIntercalibration_Stat113: 9.76705351e-06 + syst_JES_EtaIntercalibration_Stat114: 1.87061487e-08 syst_JES_EtaIntercalibration_Stat115: 0.0 - syst_JES_EtaIntercalibration_Stat116: 1.450592551338935e-07 - syst_JES_EtaIntercalibration_Stat117: 1.6350559623450202e-07 - syst_JES_EtaIntercalibration_Stat118: 3.7620143540396015e-13 - syst_JES_EtaIntercalibration_Stat119: 3.7620143540396015e-13 + syst_JES_EtaIntercalibration_Stat116: 1.45059255e-07 + syst_JES_EtaIntercalibration_Stat117: 1.63505596e-07 + syst_JES_EtaIntercalibration_Stat118: 3.76201435e-13 + syst_JES_EtaIntercalibration_Stat119: 3.76201435e-13 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 3.7620143540396015e-13 - syst_JES_EtaIntercalibration_Stat121: 3.950807892064609e-10 - syst_JES_EtaIntercalibration_Stat122: 5.079446426531143e-06 - syst_JES_EtaIntercalibration_Stat123: 0.00012156826053977863 - syst_JES_EtaIntercalibration_Stat124: 0.0002672386025633273 - syst_JES_EtaIntercalibration_Stat125: 8.090749949788338e-05 - syst_JES_EtaIntercalibration_Stat126: 6.165394218539476e-07 + syst_JES_EtaIntercalibration_Stat120: 3.76201435e-13 + syst_JES_EtaIntercalibration_Stat121: 3.95080789e-10 + syst_JES_EtaIntercalibration_Stat122: 5.07944643e-06 + syst_JES_EtaIntercalibration_Stat123: 1.21568261e-04 + syst_JES_EtaIntercalibration_Stat124: 2.67238603e-04 + syst_JES_EtaIntercalibration_Stat125: 8.09074995e-05 + syst_JES_EtaIntercalibration_Stat126: 6.16539422e-07 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 3.1603393409569165e-05 - syst_JES_EtaIntercalibration_Stat129: 0.001435573902660535 + syst_JES_EtaIntercalibration_Stat128: 3.16033934e-05 + syst_JES_EtaIntercalibration_Stat129: 1.43557390e-03 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 0.002975479457163164 - syst_JES_EtaIntercalibration_Stat131: 0.0014134965581847024 - syst_JES_EtaIntercalibration_Stat132: 9.77903820360162e-05 - syst_JES_EtaIntercalibration_Stat133: 4.093003432917568e-06 + syst_JES_EtaIntercalibration_Stat130: 2.97547946e-03 + syst_JES_EtaIntercalibration_Stat131: 1.41349656e-03 + syst_JES_EtaIntercalibration_Stat132: 9.77903820e-05 + syst_JES_EtaIntercalibration_Stat133: 4.09300343e-06 syst_JES_EtaIntercalibration_Stat134: 0.0 - syst_JES_EtaIntercalibration_Stat135: 1.450592551338935e-07 - syst_JES_EtaIntercalibration_Stat136: 1.450592551338935e-07 - syst_JES_EtaIntercalibration_Stat137: 3.7620143540396015e-13 - syst_JES_EtaIntercalibration_Stat138: 3.7620143540396015e-13 - syst_JES_EtaIntercalibration_Stat139: 3.7620143540396015e-13 + syst_JES_EtaIntercalibration_Stat135: 1.45059255e-07 + syst_JES_EtaIntercalibration_Stat136: 1.45059255e-07 + syst_JES_EtaIntercalibration_Stat137: 3.76201435e-13 + syst_JES_EtaIntercalibration_Stat138: 3.76201435e-13 + syst_JES_EtaIntercalibration_Stat139: 3.76201435e-13 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 3.0752562088385417e-10 - syst_JES_EtaIntercalibration_Stat141: 4.622891600502871e-05 - syst_JES_EtaIntercalibration_Stat142: 0.0011841763498313923 - syst_JES_EtaIntercalibration_Stat143: 0.0026819239362815646 - syst_JES_EtaIntercalibration_Stat144: 0.001562745670286755 - syst_JES_EtaIntercalibration_Stat145: 1.032164754290709e-06 - syst_JES_EtaIntercalibration_Stat146: 0.00012901585251433252 - syst_JES_EtaIntercalibration_Stat147: 0.0015034268148134116 - syst_JES_EtaIntercalibration_Stat148: 0.003975163392868273 - syst_JES_EtaIntercalibration_Stat149: 0.0015484757021019093 + syst_JES_EtaIntercalibration_Stat140: 3.07525621e-10 + syst_JES_EtaIntercalibration_Stat141: 4.62289160e-05 + syst_JES_EtaIntercalibration_Stat142: 1.18417635e-03 + syst_JES_EtaIntercalibration_Stat143: 2.68192394e-03 + syst_JES_EtaIntercalibration_Stat144: 1.56274567e-03 + syst_JES_EtaIntercalibration_Stat145: 1.03216475e-06 + syst_JES_EtaIntercalibration_Stat146: 1.29015853e-04 + syst_JES_EtaIntercalibration_Stat147: 1.50342681e-03 + syst_JES_EtaIntercalibration_Stat148: 3.97516339e-03 + syst_JES_EtaIntercalibration_Stat149: 1.54847570e-03 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 0.00011544210756911881 - syst_JES_EtaIntercalibration_Stat151: 2.671570546340673e-06 + syst_JES_EtaIntercalibration_Stat150: 1.15442108e-04 + syst_JES_EtaIntercalibration_Stat151: 2.67157055e-06 syst_JES_EtaIntercalibration_Stat152: 0.0 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 3.7620143540396015e-13 + syst_JES_EtaIntercalibration_Stat156: 3.76201435e-13 syst_JES_EtaIntercalibration_Stat157: 0.0 syst_JES_EtaIntercalibration_Stat158: 0.0 - syst_JES_EtaIntercalibration_Stat159: 0.0001632834345547643 - syst_JES_EtaIntercalibration_Stat16: 6.2501055965239535e-06 - syst_JES_EtaIntercalibration_Stat160: 0.0017045306538751362 - syst_JES_EtaIntercalibration_Stat161: 0.003518893966859473 - syst_JES_EtaIntercalibration_Stat162: 0.0015344900227762968 - syst_JES_EtaIntercalibration_Stat163: 5.429764083272864e-05 - syst_JES_EtaIntercalibration_Stat164: 0.0001627034255171046 - syst_JES_EtaIntercalibration_Stat165: 0.003365880679703308 - syst_JES_EtaIntercalibration_Stat166: 0.007597213173262942 - syst_JES_EtaIntercalibration_Stat167: 0.0033956130521600953 - syst_JES_EtaIntercalibration_Stat168: 0.0002732839320194292 - syst_JES_EtaIntercalibration_Stat169: 2.671570546340673e-06 - syst_JES_EtaIntercalibration_Stat17: 3.2266754328750184e-09 + syst_JES_EtaIntercalibration_Stat159: 1.63283435e-04 + syst_JES_EtaIntercalibration_Stat16: 6.25010560e-06 + syst_JES_EtaIntercalibration_Stat160: 1.70453065e-03 + syst_JES_EtaIntercalibration_Stat161: 3.51889397e-03 + syst_JES_EtaIntercalibration_Stat162: 1.53449002e-03 + syst_JES_EtaIntercalibration_Stat163: 5.42976408e-05 + syst_JES_EtaIntercalibration_Stat164: 1.62703426e-04 + syst_JES_EtaIntercalibration_Stat165: 3.36588068e-03 + syst_JES_EtaIntercalibration_Stat166: 7.59721317e-03 + syst_JES_EtaIntercalibration_Stat167: 3.39561305e-03 + syst_JES_EtaIntercalibration_Stat168: 2.73283932e-04 + syst_JES_EtaIntercalibration_Stat169: 2.67157055e-06 + syst_JES_EtaIntercalibration_Stat17: 3.22667543e-09 syst_JES_EtaIntercalibration_Stat170: 0.0 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 syst_JES_EtaIntercalibration_Stat175: 0.0 - syst_JES_EtaIntercalibration_Stat176: 2.738372326766395e-06 - syst_JES_EtaIntercalibration_Stat177: 0.00031991010352054827 - syst_JES_EtaIntercalibration_Stat178: 0.0027694459283401796 - syst_JES_EtaIntercalibration_Stat179: 0.007387780231571592 - syst_JES_EtaIntercalibration_Stat18: 3.2863554049280797e-13 - syst_JES_EtaIntercalibration_Stat180: 0.003462579529772566 - syst_JES_EtaIntercalibration_Stat181: 0.00017485261965438209 - syst_JES_EtaIntercalibration_Stat182: 0.008980849333442802 - syst_JES_EtaIntercalibration_Stat183: 0.019663399375489474 - syst_JES_EtaIntercalibration_Stat184: 0.00900803574593263 - syst_JES_EtaIntercalibration_Stat185: 0.0005699394616974684 - syst_JES_EtaIntercalibration_Stat186: 2.6777505485014848e-06 + syst_JES_EtaIntercalibration_Stat176: 2.73837233e-06 + syst_JES_EtaIntercalibration_Stat177: 3.19910104e-04 + syst_JES_EtaIntercalibration_Stat178: 2.76944593e-03 + syst_JES_EtaIntercalibration_Stat179: 7.38778023e-03 + syst_JES_EtaIntercalibration_Stat18: 3.28635540e-13 + syst_JES_EtaIntercalibration_Stat180: 3.46257953e-03 + syst_JES_EtaIntercalibration_Stat181: 1.74852620e-04 + syst_JES_EtaIntercalibration_Stat182: 8.98084933e-03 + syst_JES_EtaIntercalibration_Stat183: 1.96633994e-02 + syst_JES_EtaIntercalibration_Stat184: 9.00803575e-03 + syst_JES_EtaIntercalibration_Stat185: 5.69939462e-04 + syst_JES_EtaIntercalibration_Stat186: 2.67775055e-06 syst_JES_EtaIntercalibration_Stat187: 0.0 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 @@ -47973,31 +47973,31 @@ bins: syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 syst_JES_EtaIntercalibration_Stat192: 0.0 - syst_JES_EtaIntercalibration_Stat193: 4.163043209900661e-06 - syst_JES_EtaIntercalibration_Stat194: 0.0009015628208838251 - syst_JES_EtaIntercalibration_Stat195: 0.008534518893880311 - syst_JES_EtaIntercalibration_Stat196: 0.017760948032129367 - syst_JES_EtaIntercalibration_Stat197: 0.007836049690373334 - syst_JES_EtaIntercalibration_Stat198: 0.007918870626547702 - syst_JES_EtaIntercalibration_Stat199: 0.004583320057556531 + syst_JES_EtaIntercalibration_Stat193: 4.16304321e-06 + syst_JES_EtaIntercalibration_Stat194: 9.01562821e-04 + syst_JES_EtaIntercalibration_Stat195: 8.53451889e-03 + syst_JES_EtaIntercalibration_Stat196: 1.77609480e-02 + syst_JES_EtaIntercalibration_Stat197: 7.83604969e-03 + syst_JES_EtaIntercalibration_Stat198: 7.91887063e-03 + syst_JES_EtaIntercalibration_Stat199: 4.58332006e-03 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 0.00027427674322661773 - syst_JES_EtaIntercalibration_Stat201: 2.6777505485014848e-06 + syst_JES_EtaIntercalibration_Stat200: 2.74276743e-04 + syst_JES_EtaIntercalibration_Stat201: 2.67775055e-06 syst_JES_EtaIntercalibration_Stat202: 0.0 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 syst_JES_EtaIntercalibration_Stat207: 0.0 - syst_JES_EtaIntercalibration_Stat208: 1.9398969044771426e-06 - syst_JES_EtaIntercalibration_Stat209: 0.0002233846178679275 + syst_JES_EtaIntercalibration_Stat208: 1.93989690e-06 + syst_JES_EtaIntercalibration_Stat209: 2.23384618e-04 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 0.002557448093314897 - syst_JES_EtaIntercalibration_Stat211: 0.006878426200810763 - syst_JES_EtaIntercalibration_Stat212: 0.0006646801787325992 - syst_JES_EtaIntercalibration_Stat213: 2.9037831788892172e-05 - syst_JES_EtaIntercalibration_Stat214: 2.6777505485014848e-06 + syst_JES_EtaIntercalibration_Stat210: 2.55744809e-03 + syst_JES_EtaIntercalibration_Stat211: 6.87842620e-03 + syst_JES_EtaIntercalibration_Stat212: 6.64680179e-04 + syst_JES_EtaIntercalibration_Stat213: 2.90378318e-05 + syst_JES_EtaIntercalibration_Stat214: 2.67775055e-06 syst_JES_EtaIntercalibration_Stat215: 0.0 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 @@ -48005,11 +48005,11 @@ bins: syst_JES_EtaIntercalibration_Stat219: 0.0 syst_JES_EtaIntercalibration_Stat22: 0.0 syst_JES_EtaIntercalibration_Stat220: 0.0 - syst_JES_EtaIntercalibration_Stat221: 2.7487646316118087e-10 - syst_JES_EtaIntercalibration_Stat222: 6.611231257209205e-05 - syst_JES_EtaIntercalibration_Stat223: 0.0005704355002977987 - syst_JES_EtaIntercalibration_Stat224: 2.424265395434254e-05 - syst_JES_EtaIntercalibration_Stat225: 5.561417153028534e-06 + syst_JES_EtaIntercalibration_Stat221: 2.74876463e-10 + syst_JES_EtaIntercalibration_Stat222: 6.61123126e-05 + syst_JES_EtaIntercalibration_Stat223: 5.70435500e-04 + syst_JES_EtaIntercalibration_Stat224: 2.42426540e-05 + syst_JES_EtaIntercalibration_Stat225: 5.56141715e-06 syst_JES_EtaIntercalibration_Stat226: 0.0 syst_JES_EtaIntercalibration_Stat227: 0.0 syst_JES_EtaIntercalibration_Stat228: 0.0 @@ -48018,291 +48018,291 @@ bins: syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 syst_JES_EtaIntercalibration_Stat232: 0.0 - syst_JES_EtaIntercalibration_Stat233: 2.7487646316118087e-10 - syst_JES_EtaIntercalibration_Stat234: 9.961890219732398e-06 - syst_JES_EtaIntercalibration_Stat235: 8.402641913112804e-05 - syst_JES_EtaIntercalibration_Stat236: 1.6489122372852218e-12 + syst_JES_EtaIntercalibration_Stat233: 2.74876463e-10 + syst_JES_EtaIntercalibration_Stat234: 9.96189022e-06 + syst_JES_EtaIntercalibration_Stat235: 8.40264191e-05 + syst_JES_EtaIntercalibration_Stat236: 1.64891224e-12 syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 syst_JES_EtaIntercalibration_Stat239: 0.0 - syst_JES_EtaIntercalibration_Stat24: 9.561786483183987e-13 + syst_JES_EtaIntercalibration_Stat24: 9.56178648e-13 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 syst_JES_EtaIntercalibration_Stat243: 0.0 - syst_JES_EtaIntercalibration_Stat244: 2.7487646316118087e-10 - syst_JES_EtaIntercalibration_Stat245: 6.913035203150639e-16 - syst_JES_EtaIntercalibration_Stat25: 5.087663903993659e-10 - syst_JES_EtaIntercalibration_Stat26: 1.5033455505212365e-06 - syst_JES_EtaIntercalibration_Stat27: 4.080959760659617e-06 - syst_JES_EtaIntercalibration_Stat28: 8.355710357658108e-11 + syst_JES_EtaIntercalibration_Stat244: 2.74876463e-10 + syst_JES_EtaIntercalibration_Stat245: 6.91303520e-16 + syst_JES_EtaIntercalibration_Stat25: 5.08766390e-10 + syst_JES_EtaIntercalibration_Stat26: 1.50334555e-06 + syst_JES_EtaIntercalibration_Stat27: 4.08095976e-06 + syst_JES_EtaIntercalibration_Stat28: 8.35571036e-11 syst_JES_EtaIntercalibration_Stat29: 0.0 - syst_JES_EtaIntercalibration_Stat3: 2.198512956591341e-11 + syst_JES_EtaIntercalibration_Stat3: 2.19851296e-11 syst_JES_EtaIntercalibration_Stat30: 0.0 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 3.657225280181684e-10 - syst_JES_EtaIntercalibration_Stat36: 3.657225280181684e-10 - syst_JES_EtaIntercalibration_Stat37: 4.4401191880969534e-10 - syst_JES_EtaIntercalibration_Stat38: 6.2456278608072705e-06 - syst_JES_EtaIntercalibration_Stat39: 6.187300685225182e-06 - syst_JES_EtaIntercalibration_Stat4: 9.503772460447125e-07 - syst_JES_EtaIntercalibration_Stat40: 4.37914948546804e-09 + syst_JES_EtaIntercalibration_Stat35: 3.65722528e-10 + syst_JES_EtaIntercalibration_Stat36: 3.65722528e-10 + syst_JES_EtaIntercalibration_Stat37: 4.44011919e-10 + syst_JES_EtaIntercalibration_Stat38: 6.24562786e-06 + syst_JES_EtaIntercalibration_Stat39: 6.18730069e-06 + syst_JES_EtaIntercalibration_Stat4: 9.50377246e-07 + syst_JES_EtaIntercalibration_Stat40: 4.37914949e-09 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 syst_JES_EtaIntercalibration_Stat44: 0.0 syst_JES_EtaIntercalibration_Stat45: 0.0 - syst_JES_EtaIntercalibration_Stat46: 2.963135501457873e-11 - syst_JES_EtaIntercalibration_Stat47: 7.965607117476985e-09 - syst_JES_EtaIntercalibration_Stat48: 2.124450866216197e-05 - syst_JES_EtaIntercalibration_Stat49: 4.187748902080329e-06 - syst_JES_EtaIntercalibration_Stat5: 9.534074596333076e-07 - syst_JES_EtaIntercalibration_Stat50: 4.3398222313822946e-10 + syst_JES_EtaIntercalibration_Stat46: 2.96313550e-11 + syst_JES_EtaIntercalibration_Stat47: 7.96560712e-09 + syst_JES_EtaIntercalibration_Stat48: 2.12445087e-05 + syst_JES_EtaIntercalibration_Stat49: 4.18774890e-06 + syst_JES_EtaIntercalibration_Stat5: 9.53407460e-07 + syst_JES_EtaIntercalibration_Stat50: 4.33982223e-10 syst_JES_EtaIntercalibration_Stat51: 0.0 syst_JES_EtaIntercalibration_Stat52: 0.0 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 3.7620143540396015e-13 - syst_JES_EtaIntercalibration_Stat57: 3.657225280181684e-10 - syst_JES_EtaIntercalibration_Stat58: 3.657225280181684e-10 - syst_JES_EtaIntercalibration_Stat59: 5.305859685291347e-10 + syst_JES_EtaIntercalibration_Stat56: 3.76201435e-13 + syst_JES_EtaIntercalibration_Stat57: 3.65722528e-10 + syst_JES_EtaIntercalibration_Stat58: 3.65722528e-10 + syst_JES_EtaIntercalibration_Stat59: 5.30585969e-10 syst_JES_EtaIntercalibration_Stat6: 0.0 - syst_JES_EtaIntercalibration_Stat60: 6.378975995408667e-06 - syst_JES_EtaIntercalibration_Stat61: 9.02669766581334e-06 - syst_JES_EtaIntercalibration_Stat62: 1.7923561887917257e-08 - syst_JES_EtaIntercalibration_Stat63: 4.991388363491665e-12 + syst_JES_EtaIntercalibration_Stat60: 6.37897600e-06 + syst_JES_EtaIntercalibration_Stat61: 9.02669767e-06 + syst_JES_EtaIntercalibration_Stat62: 1.79235619e-08 + syst_JES_EtaIntercalibration_Stat63: 4.99138836e-12 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 3.270999521553007e-10 - syst_JES_EtaIntercalibration_Stat69: 6.299286388155408e-05 + syst_JES_EtaIntercalibration_Stat68: 3.27099952e-10 + syst_JES_EtaIntercalibration_Stat69: 6.29928639e-05 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 4.9807334178010364e-05 - syst_JES_EtaIntercalibration_Stat71: 2.3503304421931822e-06 - syst_JES_EtaIntercalibration_Stat72: 4.1406930188435846e-06 + syst_JES_EtaIntercalibration_Stat70: 4.98073342e-05 + syst_JES_EtaIntercalibration_Stat71: 2.35033044e-06 + syst_JES_EtaIntercalibration_Stat72: 4.14069302e-06 syst_JES_EtaIntercalibration_Stat73: 0.0 syst_JES_EtaIntercalibration_Stat74: 0.0 syst_JES_EtaIntercalibration_Stat75: 0.0 - syst_JES_EtaIntercalibration_Stat76: 2.7262479711134127e-11 - syst_JES_EtaIntercalibration_Stat77: 3.7620143540396015e-13 - syst_JES_EtaIntercalibration_Stat78: 3.7620143540396015e-13 - syst_JES_EtaIntercalibration_Stat79: 3.657225280181684e-10 + syst_JES_EtaIntercalibration_Stat76: 2.72624797e-11 + syst_JES_EtaIntercalibration_Stat77: 3.76201435e-13 + syst_JES_EtaIntercalibration_Stat78: 3.76201435e-13 + syst_JES_EtaIntercalibration_Stat79: 3.65722528e-10 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 3.6243163148378757e-10 - syst_JES_EtaIntercalibration_Stat81: 3.904853134242055e-09 - syst_JES_EtaIntercalibration_Stat82: 5.1928990698837965e-06 - syst_JES_EtaIntercalibration_Stat83: 2.5313576806725677e-05 - syst_JES_EtaIntercalibration_Stat84: 1.0673931142273684e-06 - syst_JES_EtaIntercalibration_Stat85: 2.68464280678082e-11 + syst_JES_EtaIntercalibration_Stat80: 3.62431631e-10 + syst_JES_EtaIntercalibration_Stat81: 3.90485313e-09 + syst_JES_EtaIntercalibration_Stat82: 5.19289907e-06 + syst_JES_EtaIntercalibration_Stat83: 2.53135768e-05 + syst_JES_EtaIntercalibration_Stat84: 1.06739311e-06 + syst_JES_EtaIntercalibration_Stat85: 2.68464281e-11 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 5.259008443375995e-10 + syst_JES_EtaIntercalibration_Stat89: 5.25900844e-10 syst_JES_EtaIntercalibration_Stat9: 0.0 - syst_JES_EtaIntercalibration_Stat90: 7.92277148477728e-05 - syst_JES_EtaIntercalibration_Stat91: 0.00014345426414017815 - syst_JES_EtaIntercalibration_Stat92: 4.113358964094916e-05 - syst_JES_EtaIntercalibration_Stat93: 4.257327121656351e-06 + syst_JES_EtaIntercalibration_Stat90: 7.92277148e-05 + syst_JES_EtaIntercalibration_Stat91: 1.43454264e-04 + syst_JES_EtaIntercalibration_Stat92: 4.11335896e-05 + syst_JES_EtaIntercalibration_Stat93: 4.25732712e-06 syst_JES_EtaIntercalibration_Stat94: 0.0 syst_JES_EtaIntercalibration_Stat95: 0.0 - syst_JES_EtaIntercalibration_Stat96: 1.6350559623450202e-07 - syst_JES_EtaIntercalibration_Stat97: 2.7262479711134127e-11 - syst_JES_EtaIntercalibration_Stat98: 3.7620143540396015e-13 - syst_JES_EtaIntercalibration_Stat99: 3.7620143540396015e-13 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.01700339598433207 - syst_JES_Flavour_Comp: 0.05581903170066639 - syst_JES_Flavour_Response: 0.0895464505159194 - syst_JES_Gjet_Generator: 0.14640245899574228 - syst_JES_Gjet_OOC: 0.1070583068939538 - syst_JES_Gjet_Purity: 0.037009611008493454 - syst_JES_Gjet_Stat1: 6.333243777875599e-05 - syst_JES_Gjet_Stat10: 0.0062806689731269875 - syst_JES_Gjet_Stat11: 0.010684500584959506 - syst_JES_Gjet_Stat12: 0.020956769789259033 - syst_JES_Gjet_Stat13: 0.013440875975917642 - syst_JES_Gjet_Stat14: 0.0024646120891531798 - syst_JES_Gjet_Stat15: 0.0008134977443115623 - syst_JES_Gjet_Stat2: 2.3001634724521134e-12 - syst_JES_Gjet_Stat3: 5.085301171022231e-10 - syst_JES_Gjet_Stat4: 0.0001828182006661795 - syst_JES_Gjet_Stat5: 0.00025660365579965367 - syst_JES_Gjet_Stat6: 0.0011068828393285353 - syst_JES_Gjet_Stat7: 0.001566395464114985 - syst_JES_Gjet_Stat8: 0.0011805959977909464 - syst_JES_Gjet_Stat9: 0.003202732075900199 - syst_JES_Gjet_Veto: 0.060553344251164196 - syst_JES_Gjet_dPhi: 0.007484807596057497 - syst_JES_LArESZee: 0.20298692076091995 - syst_JES_LArEsmear: 0.014936387615484544 - syst_JES_LAr_JVT: 0.021240340745854337 - syst_JES_MJB_Alpha: 0.0009081142384083624 - syst_JES_MJB_Asym: 0.005707092429600207 - syst_JES_MJB_Beta: 1.0465050979331158e-09 - syst_JES_MJB_Fragmentation: 0.018502980840934796 - syst_JES_MJB_Stat1: 0.0009934177406811296 + syst_JES_EtaIntercalibration_Stat96: 1.63505596e-07 + syst_JES_EtaIntercalibration_Stat97: 2.72624797e-11 + syst_JES_EtaIntercalibration_Stat98: 3.76201435e-13 + syst_JES_EtaIntercalibration_Stat99: 3.76201435e-13 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.70033960e-02 + syst_JES_Flavour_Comp: 5.58190317e-02 + syst_JES_Flavour_Response: 8.95464505e-02 + syst_JES_Gjet_Generator: 1.46402459e-01 + syst_JES_Gjet_OOC: 1.07058307e-01 + syst_JES_Gjet_Purity: 3.70096110e-02 + syst_JES_Gjet_Stat1: 6.33324378e-05 + syst_JES_Gjet_Stat10: 6.28066897e-03 + syst_JES_Gjet_Stat11: 1.06845006e-02 + syst_JES_Gjet_Stat12: 2.09567698e-02 + syst_JES_Gjet_Stat13: 1.34408760e-02 + syst_JES_Gjet_Stat14: 2.46461209e-03 + syst_JES_Gjet_Stat15: 8.13497744e-04 + syst_JES_Gjet_Stat2: 2.30016347e-12 + syst_JES_Gjet_Stat3: 5.08530117e-10 + syst_JES_Gjet_Stat4: 1.82818201e-04 + syst_JES_Gjet_Stat5: 2.56603656e-04 + syst_JES_Gjet_Stat6: 1.10688284e-03 + syst_JES_Gjet_Stat7: 1.56639546e-03 + syst_JES_Gjet_Stat8: 1.18059600e-03 + syst_JES_Gjet_Stat9: 3.20273208e-03 + syst_JES_Gjet_Veto: 6.05533443e-02 + syst_JES_Gjet_dPhi: 7.48480760e-03 + syst_JES_LArESZee: 2.02986921e-01 + syst_JES_LArEsmear: 1.49363876e-02 + syst_JES_LAr_JVT: 2.12403407e-02 + syst_JES_MJB_Alpha: 9.08114238e-04 + syst_JES_MJB_Asym: 5.70709243e-03 + syst_JES_MJB_Beta: 1.04650510e-09 + syst_JES_MJB_Fragmentation: 1.85029808e-02 + syst_JES_MJB_Stat1: 9.93417741e-04 syst_JES_MJB_Stat10: 0.0 - syst_JES_MJB_Stat11: 4.7354269078933106e-07 + syst_JES_MJB_Stat11: 4.73542691e-07 syst_JES_MJB_Stat12: 0.0 syst_JES_MJB_Stat13: 0.0 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 - syst_JES_MJB_Stat16: 2.7496306570155925e-21 - syst_JES_MJB_Stat2: 0.0015878259098528404 - syst_JES_MJB_Stat3: 0.0019836514310735136 - syst_JES_MJB_Stat4: 0.00014705111356259768 - syst_JES_MJB_Stat5: 0.0002726247971113413 - syst_JES_MJB_Stat6: 3.966395940857582e-37 - syst_JES_MJB_Stat7: 1.783146306392159e-07 - syst_JES_MJB_Stat8: 1.2981720802728736e-43 - syst_JES_MJB_Stat9: 1.5294008630833188e-43 - syst_JES_MJB_Threshold: 0.006197282307592578 - syst_JES_Pileup_MuOffset: 0.01344927875389606 - syst_JES_Pileup_NPVOffset: 0.016670755081879162 - syst_JES_Pileup_Pt_term: 0.0426735644163925 - syst_JES_Pileup_Rho_topology: 0.046355258601371206 - syst_JES_PunchThrough_MC15: 0.002373380447800141 + syst_JES_MJB_Stat16: 2.74963066e-21 + syst_JES_MJB_Stat2: 1.58782591e-03 + syst_JES_MJB_Stat3: 1.98365143e-03 + syst_JES_MJB_Stat4: 1.47051114e-04 + syst_JES_MJB_Stat5: 2.72624797e-04 + syst_JES_MJB_Stat6: 3.96639594e-37 + syst_JES_MJB_Stat7: 1.78314631e-07 + syst_JES_MJB_Stat8: 1.29817208e-43 + syst_JES_MJB_Stat9: 1.52940086e-43 + syst_JES_MJB_Threshold: 6.19728231e-03 + syst_JES_Pileup_MuOffset: 1.34492788e-02 + syst_JES_Pileup_NPVOffset: 1.66707551e-02 + syst_JES_Pileup_Pt_term: 4.26735644e-02 + syst_JES_Pileup_Rho_topology: 4.63552586e-02 + syst_JES_PunchThrough_MC15: 2.37338045e-03 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.1269150049245557 - syst_JES_Zjet_MuScale: 0.0074322994254806506 - syst_JES_Zjet_MuSmearID: 0.0014232261485793466 - syst_JES_Zjet_MuSmearMS: 0.027848879241362662 - syst_JES_Zjet_OOC: 0.04879695764082019 - syst_JES_Zjet_Stat1: 0.0009547061854503899 - syst_JES_Zjet_Stat10: 0.0048142420743041165 - syst_JES_Zjet_Stat11: 0.005489161206413964 - syst_JES_Zjet_Stat12: 0.039934017337978904 - syst_JES_Zjet_Stat13: 0.02323952828695109 - syst_JES_Zjet_Stat2: 5.636873867668141e-05 - syst_JES_Zjet_Stat3: 0.0006968040398849594 - syst_JES_Zjet_Stat4: 3.746282087617002e-10 - syst_JES_Zjet_Stat5: 5.236210487318095e-10 - syst_JES_Zjet_Stat6: 0.0009206005974362606 - syst_JES_Zjet_Stat7: 0.00015386011197431905 - syst_JES_Zjet_Stat8: 0.001096185498672556 - syst_JES_Zjet_Stat9: 0.002663657776442011 - syst_JES_Zjet_Veto: 0.009484803582573547 - syst_JES_Zjet_dPhi: 0.0076838725100043135 + syst_JES_Zjet_MC: 1.26915005e-01 + syst_JES_Zjet_MuScale: 7.43229943e-03 + syst_JES_Zjet_MuSmearID: 1.42322615e-03 + syst_JES_Zjet_MuSmearMS: 2.78488792e-02 + syst_JES_Zjet_OOC: 4.87969576e-02 + syst_JES_Zjet_Stat1: 9.54706185e-04 + syst_JES_Zjet_Stat10: 4.81424207e-03 + syst_JES_Zjet_Stat11: 5.48916121e-03 + syst_JES_Zjet_Stat12: 3.99340173e-02 + syst_JES_Zjet_Stat13: 2.32395283e-02 + syst_JES_Zjet_Stat2: 5.63687387e-05 + syst_JES_Zjet_Stat3: 6.96804040e-04 + syst_JES_Zjet_Stat4: 3.74628209e-10 + syst_JES_Zjet_Stat5: 5.23621049e-10 + syst_JES_Zjet_Stat6: 9.20600597e-04 + syst_JES_Zjet_Stat7: 1.53860112e-04 + syst_JES_Zjet_Stat8: 1.09618550e-03 + syst_JES_Zjet_Stat9: 2.66365778e-03 + syst_JES_Zjet_Veto: 9.48480358e-03 + syst_JES_Zjet_dPhi: 7.68387251e-03 syst_PRW: 0.0 syst_Unfolding_bias: 0.0 - syst_cleaning: 0.033290882546877607 + syst_cleaning: 3.32908825e-02 syst_lumi: 0.13192 - stat: 0.04088 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.02479016891834342 - syst_JER_NP1: 0.020033163304880235 - syst_JER_NP2: 0.0024666870605219602 - syst_JER_NP3: 0.00996746611481574 - syst_JER_NP4: 0.00545853678264606 - syst_JER_NP5: 0.0011716170478018831 - syst_JER_NP6: 1.466174446476271e-05 - syst_JER_NP7: 4.762587741973895e-10 - syst_JER_NP8: 0.005728984268611671 - syst_JES_EtaIntercalibration_Modelling: 0.13029991366075422 - syst_JES_EtaIntercalibration_NonClosure: 0.045376130288952585 + syst_JER_NP0: 2.47901689e-02 + syst_JER_NP1: 2.00331633e-02 + syst_JER_NP2: 2.46668706e-03 + syst_JER_NP3: 9.96746611e-03 + syst_JER_NP4: 5.45853678e-03 + syst_JER_NP5: 1.17161705e-03 + syst_JER_NP6: 1.46617445e-05 + syst_JER_NP7: 4.76258774e-10 + syst_JER_NP8: 5.72898427e-03 + syst_JES_EtaIntercalibration_Modelling: 1.30299914e-01 + syst_JES_EtaIntercalibration_NonClosure: 4.53761303e-02 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 5.5053234918576763e-14 + syst_JES_EtaIntercalibration_Stat100: 5.50532349e-14 syst_JES_EtaIntercalibration_Stat101: 0.0 - syst_JES_EtaIntercalibration_Stat102: 3.069229354414557e-08 - syst_JES_EtaIntercalibration_Stat103: 1.6820084445388494e-06 - syst_JES_EtaIntercalibration_Stat104: 2.4408525150037226e-05 - syst_JES_EtaIntercalibration_Stat105: 9.023336027767114e-07 - syst_JES_EtaIntercalibration_Stat106: 3.740658514219121e-10 + syst_JES_EtaIntercalibration_Stat102: 3.06922935e-08 + syst_JES_EtaIntercalibration_Stat103: 1.68200844e-06 + syst_JES_EtaIntercalibration_Stat104: 2.44085252e-05 + syst_JES_EtaIntercalibration_Stat105: 9.02333603e-07 + syst_JES_EtaIntercalibration_Stat106: 3.74065851e-10 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 2.6314731140560794e-08 + syst_JES_EtaIntercalibration_Stat109: 2.63147311e-08 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 2.9197051220970928e-05 - syst_JES_EtaIntercalibration_Stat111: 2.5326634201962174e-05 - syst_JES_EtaIntercalibration_Stat112: 5.460710645145007e-05 - syst_JES_EtaIntercalibration_Stat113: 2.422927840444284e-06 - syst_JES_EtaIntercalibration_Stat114: 2.0031167589534065e-09 + syst_JES_EtaIntercalibration_Stat110: 2.91970512e-05 + syst_JES_EtaIntercalibration_Stat111: 2.53266342e-05 + syst_JES_EtaIntercalibration_Stat112: 5.46071065e-05 + syst_JES_EtaIntercalibration_Stat113: 2.42292784e-06 + syst_JES_EtaIntercalibration_Stat114: 2.00311676e-09 syst_JES_EtaIntercalibration_Stat115: 0.0 - syst_JES_EtaIntercalibration_Stat116: 2.2092308050541032e-08 - syst_JES_EtaIntercalibration_Stat117: 2.404952546309386e-08 - syst_JES_EtaIntercalibration_Stat118: 5.5053234918576763e-14 - syst_JES_EtaIntercalibration_Stat119: 5.5053234918576763e-14 + syst_JES_EtaIntercalibration_Stat116: 2.20923081e-08 + syst_JES_EtaIntercalibration_Stat117: 2.40495255e-08 + syst_JES_EtaIntercalibration_Stat118: 5.50532349e-14 + syst_JES_EtaIntercalibration_Stat119: 5.50532349e-14 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 5.5053234918576763e-14 - syst_JES_EtaIntercalibration_Stat121: 4.0529988897111735e-11 - syst_JES_EtaIntercalibration_Stat122: 2.1546825172168636e-06 - syst_JES_EtaIntercalibration_Stat123: 3.6287829915827155e-05 - syst_JES_EtaIntercalibration_Stat124: 0.0001114919932381133 - syst_JES_EtaIntercalibration_Stat125: 2.5639103548096217e-05 - syst_JES_EtaIntercalibration_Stat126: 4.3825653660270716e-08 + syst_JES_EtaIntercalibration_Stat120: 5.50532349e-14 + syst_JES_EtaIntercalibration_Stat121: 4.05299889e-11 + syst_JES_EtaIntercalibration_Stat122: 2.15468252e-06 + syst_JES_EtaIntercalibration_Stat123: 3.62878299e-05 + syst_JES_EtaIntercalibration_Stat124: 1.11491993e-04 + syst_JES_EtaIntercalibration_Stat125: 2.56391035e-05 + syst_JES_EtaIntercalibration_Stat126: 4.38256537e-08 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 1.5576629513473062e-05 - syst_JES_EtaIntercalibration_Stat129: 0.00038017952009544124 + syst_JES_EtaIntercalibration_Stat128: 1.55766295e-05 + syst_JES_EtaIntercalibration_Stat129: 3.80179520e-04 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 0.00099354315834794 - syst_JES_EtaIntercalibration_Stat131: 0.00045505868577580186 - syst_JES_EtaIntercalibration_Stat132: 3.139353112903995e-05 - syst_JES_EtaIntercalibration_Stat133: 1.0178116514889924e-06 + syst_JES_EtaIntercalibration_Stat130: 9.93543158e-04 + syst_JES_EtaIntercalibration_Stat131: 4.55058686e-04 + syst_JES_EtaIntercalibration_Stat132: 3.13935311e-05 + syst_JES_EtaIntercalibration_Stat133: 1.01781165e-06 syst_JES_EtaIntercalibration_Stat134: 0.0 - syst_JES_EtaIntercalibration_Stat135: 2.2092308050541032e-08 - syst_JES_EtaIntercalibration_Stat136: 2.2092308050541032e-08 - syst_JES_EtaIntercalibration_Stat137: 5.5053234918576763e-14 - syst_JES_EtaIntercalibration_Stat138: 5.5053234918576763e-14 - syst_JES_EtaIntercalibration_Stat139: 5.5053234918576763e-14 + syst_JES_EtaIntercalibration_Stat135: 2.20923081e-08 + syst_JES_EtaIntercalibration_Stat136: 2.20923081e-08 + syst_JES_EtaIntercalibration_Stat137: 5.50532349e-14 + syst_JES_EtaIntercalibration_Stat138: 5.50532349e-14 + syst_JES_EtaIntercalibration_Stat139: 5.50532349e-14 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 3.1341459362958834e-11 - syst_JES_EtaIntercalibration_Stat141: 4.504465201330786e-05 - syst_JES_EtaIntercalibration_Stat142: 0.00036353281237736987 - syst_JES_EtaIntercalibration_Stat143: 0.0009569478721435143 - syst_JES_EtaIntercalibration_Stat144: 0.0005068984217769868 - syst_JES_EtaIntercalibration_Stat145: 3.3146648985983486e-07 - syst_JES_EtaIntercalibration_Stat146: 6.883797117143997e-05 - syst_JES_EtaIntercalibration_Stat147: 0.0004155675997957492 - syst_JES_EtaIntercalibration_Stat148: 0.0014142131663932422 - syst_JES_EtaIntercalibration_Stat149: 0.0004574460152575383 + syst_JES_EtaIntercalibration_Stat140: 3.13414594e-11 + syst_JES_EtaIntercalibration_Stat141: 4.50446520e-05 + syst_JES_EtaIntercalibration_Stat142: 3.63532812e-04 + syst_JES_EtaIntercalibration_Stat143: 9.56947872e-04 + syst_JES_EtaIntercalibration_Stat144: 5.06898422e-04 + syst_JES_EtaIntercalibration_Stat145: 3.31466490e-07 + syst_JES_EtaIntercalibration_Stat146: 6.88379712e-05 + syst_JES_EtaIntercalibration_Stat147: 4.15567600e-04 + syst_JES_EtaIntercalibration_Stat148: 1.41421317e-03 + syst_JES_EtaIntercalibration_Stat149: 4.57446015e-04 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 3.138305434466186e-05 - syst_JES_EtaIntercalibration_Stat151: 1.5027532944389109e-06 + syst_JES_EtaIntercalibration_Stat150: 3.13830543e-05 + syst_JES_EtaIntercalibration_Stat151: 1.50275329e-06 syst_JES_EtaIntercalibration_Stat152: 0.0 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 5.5053234918576763e-14 + syst_JES_EtaIntercalibration_Stat156: 5.50532349e-14 syst_JES_EtaIntercalibration_Stat157: 0.0 syst_JES_EtaIntercalibration_Stat158: 0.0 - syst_JES_EtaIntercalibration_Stat159: 4.3166828410250384e-05 - syst_JES_EtaIntercalibration_Stat16: 3.4900824062862342e-06 - syst_JES_EtaIntercalibration_Stat160: 0.0006504767943593376 - syst_JES_EtaIntercalibration_Stat161: 0.0012858530738385316 - syst_JES_EtaIntercalibration_Stat162: 0.0005486716026003168 - syst_JES_EtaIntercalibration_Stat163: 2.1249101316291002e-05 - syst_JES_EtaIntercalibration_Stat164: 8.052366064083277e-05 - syst_JES_EtaIntercalibration_Stat165: 0.0014767623370061955 - syst_JES_EtaIntercalibration_Stat166: 0.0031824334635621216 - syst_JES_EtaIntercalibration_Stat167: 0.0013208030284641234 - syst_JES_EtaIntercalibration_Stat168: 0.00010346982313699003 - syst_JES_EtaIntercalibration_Stat169: 1.5027532944389109e-06 - syst_JES_EtaIntercalibration_Stat17: 3.4308681479050217e-10 + syst_JES_EtaIntercalibration_Stat159: 4.31668284e-05 + syst_JES_EtaIntercalibration_Stat16: 3.49008241e-06 + syst_JES_EtaIntercalibration_Stat160: 6.50476794e-04 + syst_JES_EtaIntercalibration_Stat161: 1.28585307e-03 + syst_JES_EtaIntercalibration_Stat162: 5.48671603e-04 + syst_JES_EtaIntercalibration_Stat163: 2.12491013e-05 + syst_JES_EtaIntercalibration_Stat164: 8.05236606e-05 + syst_JES_EtaIntercalibration_Stat165: 1.47676234e-03 + syst_JES_EtaIntercalibration_Stat166: 3.18243346e-03 + syst_JES_EtaIntercalibration_Stat167: 1.32080303e-03 + syst_JES_EtaIntercalibration_Stat168: 1.03469823e-04 + syst_JES_EtaIntercalibration_Stat169: 1.50275329e-06 + syst_JES_EtaIntercalibration_Stat17: 3.43086815e-10 syst_JES_EtaIntercalibration_Stat170: 0.0 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 syst_JES_EtaIntercalibration_Stat175: 0.0 - syst_JES_EtaIntercalibration_Stat176: 6.776648784613232e-07 - syst_JES_EtaIntercalibration_Stat177: 0.00012861174259007108 - syst_JES_EtaIntercalibration_Stat178: 0.00107534354510547 - syst_JES_EtaIntercalibration_Stat179: 0.0033041470911568086 - syst_JES_EtaIntercalibration_Stat18: 3.7728161322147674e-14 - syst_JES_EtaIntercalibration_Stat180: 0.0015468552962381453 - syst_JES_EtaIntercalibration_Stat181: 0.0001398799238632907 - syst_JES_EtaIntercalibration_Stat182: 0.0051401660479015645 - syst_JES_EtaIntercalibration_Stat183: 0.010278398549871474 - syst_JES_EtaIntercalibration_Stat184: 0.004789592988970983 - syst_JES_EtaIntercalibration_Stat185: 0.00023759446016268982 - syst_JES_EtaIntercalibration_Stat186: 1.5034201009697855e-06 + syst_JES_EtaIntercalibration_Stat176: 6.77664878e-07 + syst_JES_EtaIntercalibration_Stat177: 1.28611743e-04 + syst_JES_EtaIntercalibration_Stat178: 1.07534355e-03 + syst_JES_EtaIntercalibration_Stat179: 3.30414709e-03 + syst_JES_EtaIntercalibration_Stat18: 3.77281613e-14 + syst_JES_EtaIntercalibration_Stat180: 1.54685530e-03 + syst_JES_EtaIntercalibration_Stat181: 1.39879924e-04 + syst_JES_EtaIntercalibration_Stat182: 5.14016605e-03 + syst_JES_EtaIntercalibration_Stat183: 1.02783985e-02 + syst_JES_EtaIntercalibration_Stat184: 4.78959299e-03 + syst_JES_EtaIntercalibration_Stat185: 2.37594460e-04 + syst_JES_EtaIntercalibration_Stat186: 1.50342010e-06 syst_JES_EtaIntercalibration_Stat187: 0.0 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 @@ -48310,31 +48310,31 @@ bins: syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 syst_JES_EtaIntercalibration_Stat192: 0.0 - syst_JES_EtaIntercalibration_Stat193: 1.9418384974039424e-06 - syst_JES_EtaIntercalibration_Stat194: 0.0004911018911590547 - syst_JES_EtaIntercalibration_Stat195: 0.004373387331348551 - syst_JES_EtaIntercalibration_Stat196: 0.009543050809358607 - syst_JES_EtaIntercalibration_Stat197: 0.004446515321855981 - syst_JES_EtaIntercalibration_Stat198: 0.006979283398028769 - syst_JES_EtaIntercalibration_Stat199: 0.003503421157597242 + syst_JES_EtaIntercalibration_Stat193: 1.94183850e-06 + syst_JES_EtaIntercalibration_Stat194: 4.91101891e-04 + syst_JES_EtaIntercalibration_Stat195: 4.37338733e-03 + syst_JES_EtaIntercalibration_Stat196: 9.54305081e-03 + syst_JES_EtaIntercalibration_Stat197: 4.44651532e-03 + syst_JES_EtaIntercalibration_Stat198: 6.97928340e-03 + syst_JES_EtaIntercalibration_Stat199: 3.50342116e-03 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 0.00017908375135673252 - syst_JES_EtaIntercalibration_Stat201: 1.5034201009697855e-06 + syst_JES_EtaIntercalibration_Stat200: 1.79083751e-04 + syst_JES_EtaIntercalibration_Stat201: 1.50342010e-06 syst_JES_EtaIntercalibration_Stat202: 0.0 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 syst_JES_EtaIntercalibration_Stat207: 0.0 - syst_JES_EtaIntercalibration_Stat208: 2.019571241625311e-06 - syst_JES_EtaIntercalibration_Stat209: 0.000247049812790862 + syst_JES_EtaIntercalibration_Stat208: 2.01957124e-06 + syst_JES_EtaIntercalibration_Stat209: 2.47049813e-04 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 0.0022537246393470518 - syst_JES_EtaIntercalibration_Stat211: 0.006581608390051782 - syst_JES_EtaIntercalibration_Stat212: 0.00036223266004047734 - syst_JES_EtaIntercalibration_Stat213: 2.374641657105801e-05 - syst_JES_EtaIntercalibration_Stat214: 1.5034201009697855e-06 + syst_JES_EtaIntercalibration_Stat210: 2.25372464e-03 + syst_JES_EtaIntercalibration_Stat211: 6.58160839e-03 + syst_JES_EtaIntercalibration_Stat212: 3.62232660e-04 + syst_JES_EtaIntercalibration_Stat213: 2.37464166e-05 + syst_JES_EtaIntercalibration_Stat214: 1.50342010e-06 syst_JES_EtaIntercalibration_Stat215: 0.0 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 @@ -48342,11 +48342,11 @@ bins: syst_JES_EtaIntercalibration_Stat219: 0.0 syst_JES_EtaIntercalibration_Stat22: 0.0 syst_JES_EtaIntercalibration_Stat220: 0.0 - syst_JES_EtaIntercalibration_Stat221: 5.289683166315351e-09 - syst_JES_EtaIntercalibration_Stat222: 8.032554968377123e-05 - syst_JES_EtaIntercalibration_Stat223: 0.00021667950266464987 - syst_JES_EtaIntercalibration_Stat224: 0.00011884776312577364 - syst_JES_EtaIntercalibration_Stat225: 9.11651956615023e-06 + syst_JES_EtaIntercalibration_Stat221: 5.28968317e-09 + syst_JES_EtaIntercalibration_Stat222: 8.03255497e-05 + syst_JES_EtaIntercalibration_Stat223: 2.16679503e-04 + syst_JES_EtaIntercalibration_Stat224: 1.18847763e-04 + syst_JES_EtaIntercalibration_Stat225: 9.11651957e-06 syst_JES_EtaIntercalibration_Stat226: 0.0 syst_JES_EtaIntercalibration_Stat227: 0.0 syst_JES_EtaIntercalibration_Stat228: 0.0 @@ -48355,291 +48355,291 @@ bins: syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 syst_JES_EtaIntercalibration_Stat232: 0.0 - syst_JES_EtaIntercalibration_Stat233: 5.289683166315351e-09 - syst_JES_EtaIntercalibration_Stat234: 2.3936942160601885e-05 - syst_JES_EtaIntercalibration_Stat235: 0.00011900447554609029 - syst_JES_EtaIntercalibration_Stat236: 5.445550952744458e-10 + syst_JES_EtaIntercalibration_Stat233: 5.28968317e-09 + syst_JES_EtaIntercalibration_Stat234: 2.39369422e-05 + syst_JES_EtaIntercalibration_Stat235: 1.19004476e-04 + syst_JES_EtaIntercalibration_Stat236: 5.44555095e-10 syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 syst_JES_EtaIntercalibration_Stat239: 0.0 - syst_JES_EtaIntercalibration_Stat24: 1.1938160191168486e-13 + syst_JES_EtaIntercalibration_Stat24: 1.19381602e-13 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 syst_JES_EtaIntercalibration_Stat243: 0.0 - syst_JES_EtaIntercalibration_Stat244: 5.289683166315351e-09 - syst_JES_EtaIntercalibration_Stat245: 1.2530205703319478e-12 - syst_JES_EtaIntercalibration_Stat25: 5.221274557040646e-11 - syst_JES_EtaIntercalibration_Stat26: 2.5704443820106644e-06 - syst_JES_EtaIntercalibration_Stat27: 1.0150049697001822e-06 - syst_JES_EtaIntercalibration_Stat28: 8.586012242774582e-12 + syst_JES_EtaIntercalibration_Stat244: 5.28968317e-09 + syst_JES_EtaIntercalibration_Stat245: 1.25302057e-12 + syst_JES_EtaIntercalibration_Stat25: 5.22127456e-11 + syst_JES_EtaIntercalibration_Stat26: 2.57044438e-06 + syst_JES_EtaIntercalibration_Stat27: 1.01500497e-06 + syst_JES_EtaIntercalibration_Stat28: 8.58601224e-12 syst_JES_EtaIntercalibration_Stat29: 0.0 - syst_JES_EtaIntercalibration_Stat3: 2.2593209347224223e-12 + syst_JES_EtaIntercalibration_Stat3: 2.25932093e-12 syst_JES_EtaIntercalibration_Stat30: 0.0 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 3.728239363292009e-11 - syst_JES_EtaIntercalibration_Stat36: 3.728239363292009e-11 - syst_JES_EtaIntercalibration_Stat37: 4.554969473898892e-11 - syst_JES_EtaIntercalibration_Stat38: 3.4885181367086344e-06 - syst_JES_EtaIntercalibration_Stat39: 3.4764547194067734e-06 - syst_JES_EtaIntercalibration_Stat4: 1.174590358729509e-06 - syst_JES_EtaIntercalibration_Stat40: 4.63694607269429e-10 + syst_JES_EtaIntercalibration_Stat35: 3.72823936e-11 + syst_JES_EtaIntercalibration_Stat36: 3.72823936e-11 + syst_JES_EtaIntercalibration_Stat37: 4.55496947e-11 + syst_JES_EtaIntercalibration_Stat38: 3.48851814e-06 + syst_JES_EtaIntercalibration_Stat39: 3.47645472e-06 + syst_JES_EtaIntercalibration_Stat4: 1.17459036e-06 + syst_JES_EtaIntercalibration_Stat40: 4.63694607e-10 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 syst_JES_EtaIntercalibration_Stat44: 0.0 syst_JES_EtaIntercalibration_Stat45: 0.0 - syst_JES_EtaIntercalibration_Stat46: 3.037478024611866e-12 - syst_JES_EtaIntercalibration_Stat47: 8.445001065719292e-10 - syst_JES_EtaIntercalibration_Stat48: 1.2595623102590518e-05 - syst_JES_EtaIntercalibration_Stat49: 1.0239547155670509e-06 - syst_JES_EtaIntercalibration_Stat5: 1.1753696883103958e-06 - syst_JES_EtaIntercalibration_Stat50: 4.440797338316623e-11 + syst_JES_EtaIntercalibration_Stat46: 3.03747802e-12 + syst_JES_EtaIntercalibration_Stat47: 8.44500107e-10 + syst_JES_EtaIntercalibration_Stat48: 1.25956231e-05 + syst_JES_EtaIntercalibration_Stat49: 1.02395472e-06 + syst_JES_EtaIntercalibration_Stat5: 1.17536969e-06 + syst_JES_EtaIntercalibration_Stat50: 4.44079734e-11 syst_JES_EtaIntercalibration_Stat51: 0.0 syst_JES_EtaIntercalibration_Stat52: 0.0 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 5.5053234918576763e-14 - syst_JES_EtaIntercalibration_Stat57: 3.728239363292009e-11 - syst_JES_EtaIntercalibration_Stat58: 3.728239363292009e-11 - syst_JES_EtaIntercalibration_Stat59: 5.4457212855598847e-11 + syst_JES_EtaIntercalibration_Stat56: 5.50532349e-14 + syst_JES_EtaIntercalibration_Stat57: 3.72823936e-11 + syst_JES_EtaIntercalibration_Stat58: 3.72823936e-11 + syst_JES_EtaIntercalibration_Stat59: 5.44572129e-11 syst_JES_EtaIntercalibration_Stat6: 0.0 - syst_JES_EtaIntercalibration_Stat60: 3.3706355939941056e-06 - syst_JES_EtaIntercalibration_Stat61: 4.014434867761588e-06 - syst_JES_EtaIntercalibration_Stat62: 2.0151805049424234e-09 - syst_JES_EtaIntercalibration_Stat63: 5.289760485038524e-13 + syst_JES_EtaIntercalibration_Stat60: 3.37063559e-06 + syst_JES_EtaIntercalibration_Stat61: 4.01443487e-06 + syst_JES_EtaIntercalibration_Stat62: 2.01518050e-09 + syst_JES_EtaIntercalibration_Stat63: 5.28976049e-13 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 3.3363743656100705e-11 - syst_JES_EtaIntercalibration_Stat69: 1.780160405693824e-05 + syst_JES_EtaIntercalibration_Stat68: 3.33637437e-11 + syst_JES_EtaIntercalibration_Stat69: 1.78016041e-05 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 2.899245591528941e-05 - syst_JES_EtaIntercalibration_Stat71: 1.0478018093489819e-06 - syst_JES_EtaIntercalibration_Stat72: 1.0187266283538424e-06 + syst_JES_EtaIntercalibration_Stat70: 2.89924559e-05 + syst_JES_EtaIntercalibration_Stat71: 1.04780181e-06 + syst_JES_EtaIntercalibration_Stat72: 1.01872663e-06 syst_JES_EtaIntercalibration_Stat73: 0.0 syst_JES_EtaIntercalibration_Stat74: 0.0 syst_JES_EtaIntercalibration_Stat75: 0.0 - syst_JES_EtaIntercalibration_Stat76: 2.8890607470248872e-12 - syst_JES_EtaIntercalibration_Stat77: 5.5053234918576763e-14 - syst_JES_EtaIntercalibration_Stat78: 5.5053234918576763e-14 - syst_JES_EtaIntercalibration_Stat79: 3.728239363292009e-11 + syst_JES_EtaIntercalibration_Stat76: 2.88906075e-12 + syst_JES_EtaIntercalibration_Stat77: 5.50532349e-14 + syst_JES_EtaIntercalibration_Stat78: 5.50532349e-14 + syst_JES_EtaIntercalibration_Stat79: 3.72823936e-11 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 3.693598347140631e-11 - syst_JES_EtaIntercalibration_Stat81: 4.1292004295626046e-10 - syst_JES_EtaIntercalibration_Stat82: 2.0965888366582515e-06 - syst_JES_EtaIntercalibration_Stat83: 1.3320399810347286e-05 - syst_JES_EtaIntercalibration_Stat84: 2.0424940636388642e-07 - syst_JES_EtaIntercalibration_Stat85: 2.721503108118747e-12 + syst_JES_EtaIntercalibration_Stat80: 3.69359835e-11 + syst_JES_EtaIntercalibration_Stat81: 4.12920043e-10 + syst_JES_EtaIntercalibration_Stat82: 2.09658884e-06 + syst_JES_EtaIntercalibration_Stat83: 1.33203998e-05 + syst_JES_EtaIntercalibration_Stat84: 2.04249406e-07 + syst_JES_EtaIntercalibration_Stat85: 2.72150311e-12 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 5.360169206284443e-11 + syst_JES_EtaIntercalibration_Stat89: 5.36016921e-11 syst_JES_EtaIntercalibration_Stat9: 0.0 - syst_JES_EtaIntercalibration_Stat90: 4.1286252469799194e-05 - syst_JES_EtaIntercalibration_Stat91: 7.181385381665574e-05 - syst_JES_EtaIntercalibration_Stat92: 8.454119795697244e-06 - syst_JES_EtaIntercalibration_Stat93: 1.0511741055671178e-06 + syst_JES_EtaIntercalibration_Stat90: 4.12862525e-05 + syst_JES_EtaIntercalibration_Stat91: 7.18138538e-05 + syst_JES_EtaIntercalibration_Stat92: 8.45411980e-06 + syst_JES_EtaIntercalibration_Stat93: 1.05117411e-06 syst_JES_EtaIntercalibration_Stat94: 0.0 syst_JES_EtaIntercalibration_Stat95: 0.0 - syst_JES_EtaIntercalibration_Stat96: 2.404952546309386e-08 - syst_JES_EtaIntercalibration_Stat97: 2.8890607470248872e-12 - syst_JES_EtaIntercalibration_Stat98: 5.5053234918576763e-14 - syst_JES_EtaIntercalibration_Stat99: 5.5053234918576763e-14 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.011621689464101165 - syst_JES_Flavour_Comp: 0.037462563323269804 - syst_JES_Flavour_Response: 0.03929800975876514 - syst_JES_Gjet_Generator: 0.0842719471413827 - syst_JES_Gjet_OOC: 0.06320936065963648 - syst_JES_Gjet_Purity: 0.021101319271552666 - syst_JES_Gjet_Stat1: 3.536847749051856e-05 - syst_JES_Gjet_Stat10: 0.0029024408693373925 - syst_JES_Gjet_Stat11: 0.004680526332582693 - syst_JES_Gjet_Stat12: 0.012056436994402616 - syst_JES_Gjet_Stat13: 0.011787296382122576 - syst_JES_Gjet_Stat14: 0.0011291305537890646 - syst_JES_Gjet_Stat15: 0.001128447366960462 - syst_JES_Gjet_Stat2: 7.621023554062853e-10 - syst_JES_Gjet_Stat3: 5.3962042986884635e-11 - syst_JES_Gjet_Stat4: 0.00010211308061643568 - syst_JES_Gjet_Stat5: 0.00014350044426175108 - syst_JES_Gjet_Stat6: 0.0005745288047609101 - syst_JES_Gjet_Stat7: 0.0008577224070175618 - syst_JES_Gjet_Stat8: 0.0005349722492802782 - syst_JES_Gjet_Stat9: 0.0015715994241536232 - syst_JES_Gjet_Veto: 0.04044197102948866 - syst_JES_Gjet_dPhi: 0.004748787950624875 - syst_JES_LArESZee: 0.12125073525550267 - syst_JES_LArEsmear: 0.009110919862999566 - syst_JES_LAr_JVT: 0.01276167272539145 - syst_JES_MJB_Alpha: 0.0006868447477414383 - syst_JES_MJB_Asym: 0.0035489726795229068 - syst_JES_MJB_Beta: 7.987352299103877e-08 - syst_JES_MJB_Fragmentation: 0.0123689482576329 - syst_JES_MJB_Stat1: 0.000574781060491732 + syst_JES_EtaIntercalibration_Stat96: 2.40495255e-08 + syst_JES_EtaIntercalibration_Stat97: 2.88906075e-12 + syst_JES_EtaIntercalibration_Stat98: 5.50532349e-14 + syst_JES_EtaIntercalibration_Stat99: 5.50532349e-14 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.16216895e-02 + syst_JES_Flavour_Comp: 3.74625633e-02 + syst_JES_Flavour_Response: 3.92980098e-02 + syst_JES_Gjet_Generator: 8.42719471e-02 + syst_JES_Gjet_OOC: 6.32093607e-02 + syst_JES_Gjet_Purity: 2.11013193e-02 + syst_JES_Gjet_Stat1: 3.53684775e-05 + syst_JES_Gjet_Stat10: 2.90244087e-03 + syst_JES_Gjet_Stat11: 4.68052633e-03 + syst_JES_Gjet_Stat12: 1.20564370e-02 + syst_JES_Gjet_Stat13: 1.17872964e-02 + syst_JES_Gjet_Stat14: 1.12913055e-03 + syst_JES_Gjet_Stat15: 1.12844737e-03 + syst_JES_Gjet_Stat2: 7.62102355e-10 + syst_JES_Gjet_Stat3: 5.39620430e-11 + syst_JES_Gjet_Stat4: 1.02113081e-04 + syst_JES_Gjet_Stat5: 1.43500444e-04 + syst_JES_Gjet_Stat6: 5.74528805e-04 + syst_JES_Gjet_Stat7: 8.57722407e-04 + syst_JES_Gjet_Stat8: 5.34972249e-04 + syst_JES_Gjet_Stat9: 1.57159942e-03 + syst_JES_Gjet_Veto: 4.04419710e-02 + syst_JES_Gjet_dPhi: 4.74878795e-03 + syst_JES_LArESZee: 1.21250735e-01 + syst_JES_LArEsmear: 9.11091986e-03 + syst_JES_LAr_JVT: 1.27616727e-02 + syst_JES_MJB_Alpha: 6.86844748e-04 + syst_JES_MJB_Asym: 3.54897268e-03 + syst_JES_MJB_Beta: 7.98735230e-08 + syst_JES_MJB_Fragmentation: 1.23689483e-02 + syst_JES_MJB_Stat1: 5.74781060e-04 syst_JES_MJB_Stat10: 0.0 - syst_JES_MJB_Stat11: 1.5501854727741452e-06 + syst_JES_MJB_Stat11: 1.55018547e-06 syst_JES_MJB_Stat12: 0.0 syst_JES_MJB_Stat13: 0.0 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 - syst_JES_MJB_Stat16: 3.51000096153833e-17 - syst_JES_MJB_Stat2: 0.0009078700523064961 - syst_JES_MJB_Stat3: 0.0013200035255634735 - syst_JES_MJB_Stat4: 0.000248376085805377 - syst_JES_MJB_Stat5: 0.00017181944011083263 - syst_JES_MJB_Stat6: 1.0504858149127933e-29 - syst_JES_MJB_Stat7: 3.7403637189449903e-06 - syst_JES_MJB_Stat8: 9.433614723423889e-35 - syst_JES_MJB_Stat9: 1.1136220667264098e-34 - syst_JES_MJB_Threshold: 0.004751927082773893 - syst_JES_Pileup_MuOffset: 0.008912547783883125 - syst_JES_Pileup_NPVOffset: 0.0107155771193156 - syst_JES_Pileup_Pt_term: 0.02465032859821548 - syst_JES_Pileup_Rho_topology: 0.026003084432428398 - syst_JES_PunchThrough_MC15: 0.001765261099667695 + syst_JES_MJB_Stat16: 3.51000096e-17 + syst_JES_MJB_Stat2: 9.07870052e-04 + syst_JES_MJB_Stat3: 1.32000353e-03 + syst_JES_MJB_Stat4: 2.48376086e-04 + syst_JES_MJB_Stat5: 1.71819440e-04 + syst_JES_MJB_Stat6: 1.05048581e-29 + syst_JES_MJB_Stat7: 3.74036372e-06 + syst_JES_MJB_Stat8: 9.43361472e-35 + syst_JES_MJB_Stat9: 1.11362207e-34 + syst_JES_MJB_Threshold: 4.75192708e-03 + syst_JES_Pileup_MuOffset: 8.91254778e-03 + syst_JES_Pileup_NPVOffset: 1.07155771e-02 + syst_JES_Pileup_Pt_term: 2.46503286e-02 + syst_JES_Pileup_Rho_topology: 2.60030844e-02 + syst_JES_PunchThrough_MC15: 1.76526110e-03 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.06884256241599378 - syst_JES_Zjet_MuScale: 0.0039724898992949 - syst_JES_Zjet_MuSmearID: 0.0007680536569797712 - syst_JES_Zjet_MuSmearMS: 0.016722125313488115 - syst_JES_Zjet_OOC: 0.026803956331109033 - syst_JES_Zjet_Stat1: 0.0007018269639106215 - syst_JES_Zjet_Stat10: 0.002515618611793131 - syst_JES_Zjet_Stat11: 0.002516559556219562 - syst_JES_Zjet_Stat12: 0.019589441033373057 - syst_JES_Zjet_Stat13: 0.01550987024446046 - syst_JES_Zjet_Stat2: 3.147790909113882e-05 - syst_JES_Zjet_Stat3: 0.0004040008508654406 - syst_JES_Zjet_Stat4: 3.963795771731939e-11 - syst_JES_Zjet_Stat5: 5.552755262029833e-11 - syst_JES_Zjet_Stat6: 0.0005191365427322565 - syst_JES_Zjet_Stat7: 2.947354486229982e-05 - syst_JES_Zjet_Stat8: 0.0005538871432882335 - syst_JES_Zjet_Stat9: 0.001244340575365121 - syst_JES_Zjet_Veto: 0.005422982827743418 - syst_JES_Zjet_dPhi: 0.00437889061292926 - syst_PRW: 1.999e-39 + syst_JES_Zjet_MC: 6.88425624e-02 + syst_JES_Zjet_MuScale: 3.97248990e-03 + syst_JES_Zjet_MuSmearID: 7.68053657e-04 + syst_JES_Zjet_MuSmearMS: 1.67221253e-02 + syst_JES_Zjet_OOC: 2.68039563e-02 + syst_JES_Zjet_Stat1: 7.01826964e-04 + syst_JES_Zjet_Stat10: 2.51561861e-03 + syst_JES_Zjet_Stat11: 2.51655956e-03 + syst_JES_Zjet_Stat12: 1.95894410e-02 + syst_JES_Zjet_Stat13: 1.55098702e-02 + syst_JES_Zjet_Stat2: 3.14779091e-05 + syst_JES_Zjet_Stat3: 4.04000851e-04 + syst_JES_Zjet_Stat4: 3.96379577e-11 + syst_JES_Zjet_Stat5: 5.55275526e-11 + syst_JES_Zjet_Stat6: 5.19136543e-04 + syst_JES_Zjet_Stat7: 2.94735449e-05 + syst_JES_Zjet_Stat8: 5.53887143e-04 + syst_JES_Zjet_Stat9: 1.24434058e-03 + syst_JES_Zjet_Veto: 5.42298283e-03 + syst_JES_Zjet_dPhi: 4.37889061e-03 + syst_PRW: 1.99900000e-39 syst_Unfolding_bias: 0.0 - syst_cleaning: 0.01893131532672783 + syst_cleaning: 1.89313153e-02 syst_lumi: 0.07368 - stat: 0.03015 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.01428191314215291 - syst_JER_NP1: 0.014293001670397999 - syst_JER_NP2: 0.0025237238274573286 - syst_JER_NP3: 0.005126363330861363 - syst_JER_NP4: 0.0038071869864770235 - syst_JER_NP5: 0.0003019106416818559 - syst_JER_NP6: 1.7989723920894395e-06 - syst_JER_NP7: 5.515541383218877e-11 - syst_JER_NP8: 0.002805212291431791 - syst_JES_EtaIntercalibration_Modelling: 0.08217341784299836 - syst_JES_EtaIntercalibration_NonClosure: 0.02041934377006274 + syst_JER_NP0: 1.42819131e-02 + syst_JER_NP1: 1.42930017e-02 + syst_JER_NP2: 2.52372383e-03 + syst_JER_NP3: 5.12636333e-03 + syst_JER_NP4: 3.80718699e-03 + syst_JER_NP5: 3.01910642e-04 + syst_JER_NP6: 1.79897239e-06 + syst_JER_NP7: 5.51554138e-11 + syst_JER_NP8: 2.80521229e-03 + syst_JES_EtaIntercalibration_Modelling: 8.21734178e-02 + syst_JES_EtaIntercalibration_NonClosure: 2.04193438e-02 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 8.680172622131429e-15 + syst_JES_EtaIntercalibration_Stat100: 8.68017262e-15 syst_JES_EtaIntercalibration_Stat101: 0.0 - syst_JES_EtaIntercalibration_Stat102: 3.759469883840008e-09 - syst_JES_EtaIntercalibration_Stat103: 1.4598457610566261e-06 - syst_JES_EtaIntercalibration_Stat104: 1.2942755917887041e-05 - syst_JES_EtaIntercalibration_Stat105: 1.659616832283886e-07 - syst_JES_EtaIntercalibration_Stat106: 4.056947713491018e-11 + syst_JES_EtaIntercalibration_Stat102: 3.75946988e-09 + syst_JES_EtaIntercalibration_Stat103: 1.45984576e-06 + syst_JES_EtaIntercalibration_Stat104: 1.29427559e-05 + syst_JES_EtaIntercalibration_Stat105: 1.65961683e-07 + syst_JES_EtaIntercalibration_Stat106: 4.05694771e-11 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 3.2488753053941604e-09 + syst_JES_EtaIntercalibration_Stat109: 3.24887531e-09 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 1.4562395433100973e-05 - syst_JES_EtaIntercalibration_Stat111: 4.846719586483212e-06 - syst_JES_EtaIntercalibration_Stat112: 2.0772275753484497e-05 - syst_JES_EtaIntercalibration_Stat113: 4.90500636773287e-07 - syst_JES_EtaIntercalibration_Stat114: 2.1763218397102944e-10 + syst_JES_EtaIntercalibration_Stat110: 1.45623954e-05 + syst_JES_EtaIntercalibration_Stat111: 4.84671959e-06 + syst_JES_EtaIntercalibration_Stat112: 2.07722758e-05 + syst_JES_EtaIntercalibration_Stat113: 4.90500637e-07 + syst_JES_EtaIntercalibration_Stat114: 2.17632184e-10 syst_JES_EtaIntercalibration_Stat115: 0.0 - syst_JES_EtaIntercalibration_Stat116: 2.9107113821194982e-09 - syst_JES_EtaIntercalibration_Stat117: 3.1246196568542545e-09 - syst_JES_EtaIntercalibration_Stat118: 8.680172622131429e-15 - syst_JES_EtaIntercalibration_Stat119: 8.680172622131429e-15 + syst_JES_EtaIntercalibration_Stat116: 2.91071138e-09 + syst_JES_EtaIntercalibration_Stat117: 3.12461966e-09 + syst_JES_EtaIntercalibration_Stat118: 8.68017262e-15 + syst_JES_EtaIntercalibration_Stat119: 8.68017262e-15 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 8.680172622131429e-15 - syst_JES_EtaIntercalibration_Stat121: 4.3673661112849246e-12 - syst_JES_EtaIntercalibration_Stat122: 1.6451859492166836e-06 - syst_JES_EtaIntercalibration_Stat123: 8.384781988817599e-06 - syst_JES_EtaIntercalibration_Stat124: 3.815250999279078e-05 - syst_JES_EtaIntercalibration_Stat125: 1.0820790913791838e-05 - syst_JES_EtaIntercalibration_Stat126: 2.163509855460566e-08 + syst_JES_EtaIntercalibration_Stat120: 8.68017262e-15 + syst_JES_EtaIntercalibration_Stat121: 4.36736611e-12 + syst_JES_EtaIntercalibration_Stat122: 1.64518595e-06 + syst_JES_EtaIntercalibration_Stat123: 8.38478199e-06 + syst_JES_EtaIntercalibration_Stat124: 3.81525100e-05 + syst_JES_EtaIntercalibration_Stat125: 1.08207909e-05 + syst_JES_EtaIntercalibration_Stat126: 2.16350986e-08 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 6.740962023331685e-06 - syst_JES_EtaIntercalibration_Stat129: 7.810250108031112e-05 + syst_JES_EtaIntercalibration_Stat128: 6.74096202e-06 + syst_JES_EtaIntercalibration_Stat129: 7.81025011e-05 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 0.0003258835183006345 - syst_JES_EtaIntercalibration_Stat131: 0.00010954340817685015 - syst_JES_EtaIntercalibration_Stat132: 5.435812358792382e-06 - syst_JES_EtaIntercalibration_Stat133: 2.0523357265593758e-07 + syst_JES_EtaIntercalibration_Stat130: 3.25883518e-04 + syst_JES_EtaIntercalibration_Stat131: 1.09543408e-04 + syst_JES_EtaIntercalibration_Stat132: 5.43581236e-06 + syst_JES_EtaIntercalibration_Stat133: 2.05233573e-07 syst_JES_EtaIntercalibration_Stat134: 0.0 - syst_JES_EtaIntercalibration_Stat135: 2.9107113821194982e-09 - syst_JES_EtaIntercalibration_Stat136: 2.9107113821194982e-09 - syst_JES_EtaIntercalibration_Stat137: 8.680172622131429e-15 - syst_JES_EtaIntercalibration_Stat138: 8.680172622131429e-15 - syst_JES_EtaIntercalibration_Stat139: 8.680172622131429e-15 + syst_JES_EtaIntercalibration_Stat135: 2.91071138e-09 + syst_JES_EtaIntercalibration_Stat136: 2.91071138e-09 + syst_JES_EtaIntercalibration_Stat137: 8.68017262e-15 + syst_JES_EtaIntercalibration_Stat138: 8.68017262e-15 + syst_JES_EtaIntercalibration_Stat139: 8.68017262e-15 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 3.3196485777865104e-12 - syst_JES_EtaIntercalibration_Stat141: 2.1672042053069203e-05 - syst_JES_EtaIntercalibration_Stat142: 0.00010249866486935329 - syst_JES_EtaIntercalibration_Stat143: 0.0003532255193215802 - syst_JES_EtaIntercalibration_Stat144: 0.00015494940166067115 - syst_JES_EtaIntercalibration_Stat145: 6.571780692475974e-08 - syst_JES_EtaIntercalibration_Stat146: 2.9255729490135775e-05 - syst_JES_EtaIntercalibration_Stat147: 8.877802473022252e-05 - syst_JES_EtaIntercalibration_Stat148: 0.0004714231240350859 - syst_JES_EtaIntercalibration_Stat149: 8.512463391991769e-05 + syst_JES_EtaIntercalibration_Stat140: 3.31964858e-12 + syst_JES_EtaIntercalibration_Stat141: 2.16720421e-05 + syst_JES_EtaIntercalibration_Stat142: 1.02498665e-04 + syst_JES_EtaIntercalibration_Stat143: 3.53225519e-04 + syst_JES_EtaIntercalibration_Stat144: 1.54949402e-04 + syst_JES_EtaIntercalibration_Stat145: 6.57178069e-08 + syst_JES_EtaIntercalibration_Stat146: 2.92557295e-05 + syst_JES_EtaIntercalibration_Stat147: 8.87780247e-05 + syst_JES_EtaIntercalibration_Stat148: 4.71423124e-04 + syst_JES_EtaIntercalibration_Stat149: 8.51246339e-05 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 6.024677577057547e-06 - syst_JES_EtaIntercalibration_Stat151: 5.078513390394747e-07 + syst_JES_EtaIntercalibration_Stat150: 6.02467758e-06 + syst_JES_EtaIntercalibration_Stat151: 5.07851339e-07 syst_JES_EtaIntercalibration_Stat152: 0.0 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 8.680172622131429e-15 + syst_JES_EtaIntercalibration_Stat156: 8.68017262e-15 syst_JES_EtaIntercalibration_Stat157: 0.0 syst_JES_EtaIntercalibration_Stat158: 0.0 - syst_JES_EtaIntercalibration_Stat159: 1.032156997505709e-05 - syst_JES_EtaIntercalibration_Stat16: 1.9797340766729446e-06 - syst_JES_EtaIntercalibration_Stat160: 0.00022409151590365933 - syst_JES_EtaIntercalibration_Stat161: 0.0005043615246031363 - syst_JES_EtaIntercalibration_Stat162: 0.00014841832871987208 - syst_JES_EtaIntercalibration_Stat163: 6.3007157331528605e-06 - syst_JES_EtaIntercalibration_Stat164: 3.507606295965954e-05 - syst_JES_EtaIntercalibration_Stat165: 0.0005928684677059491 - syst_JES_EtaIntercalibration_Stat166: 0.0012873706964196443 - syst_JES_EtaIntercalibration_Stat167: 0.0005119363900915816 - syst_JES_EtaIntercalibration_Stat168: 5.093584741613709e-05 - syst_JES_EtaIntercalibration_Stat169: 5.078513390394747e-07 - syst_JES_EtaIntercalibration_Stat17: 3.7237222123740653e-11 + syst_JES_EtaIntercalibration_Stat159: 1.03215700e-05 + syst_JES_EtaIntercalibration_Stat16: 1.97973408e-06 + syst_JES_EtaIntercalibration_Stat160: 2.24091516e-04 + syst_JES_EtaIntercalibration_Stat161: 5.04361525e-04 + syst_JES_EtaIntercalibration_Stat162: 1.48418329e-04 + syst_JES_EtaIntercalibration_Stat163: 6.30071573e-06 + syst_JES_EtaIntercalibration_Stat164: 3.50760630e-05 + syst_JES_EtaIntercalibration_Stat165: 5.92868468e-04 + syst_JES_EtaIntercalibration_Stat166: 1.28737070e-03 + syst_JES_EtaIntercalibration_Stat167: 5.11936390e-04 + syst_JES_EtaIntercalibration_Stat168: 5.09358474e-05 + syst_JES_EtaIntercalibration_Stat169: 5.07851339e-07 + syst_JES_EtaIntercalibration_Stat17: 3.72372221e-11 syst_JES_EtaIntercalibration_Stat170: 0.0 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 syst_JES_EtaIntercalibration_Stat175: 0.0 - syst_JES_EtaIntercalibration_Stat176: 1.3648560363642756e-07 - syst_JES_EtaIntercalibration_Stat177: 4.7084516406988825e-05 - syst_JES_EtaIntercalibration_Stat178: 0.0004170981029685942 - syst_JES_EtaIntercalibration_Stat179: 0.0015455598298027803 - syst_JES_EtaIntercalibration_Stat18: 4.801649687347048e-15 - syst_JES_EtaIntercalibration_Stat180: 0.0007082147326199873 - syst_JES_EtaIntercalibration_Stat181: 7.805358207667346e-05 - syst_JES_EtaIntercalibration_Stat182: 0.0028262844867422672 - syst_JES_EtaIntercalibration_Stat183: 0.0052765648626734414 - syst_JES_EtaIntercalibration_Stat184: 0.002309981980449198 - syst_JES_EtaIntercalibration_Stat185: 8.761020074740155e-05 - syst_JES_EtaIntercalibration_Stat186: 5.079238993195733e-07 + syst_JES_EtaIntercalibration_Stat176: 1.36485604e-07 + syst_JES_EtaIntercalibration_Stat177: 4.70845164e-05 + syst_JES_EtaIntercalibration_Stat178: 4.17098103e-04 + syst_JES_EtaIntercalibration_Stat179: 1.54555983e-03 + syst_JES_EtaIntercalibration_Stat18: 4.80164969e-15 + syst_JES_EtaIntercalibration_Stat180: 7.08214733e-04 + syst_JES_EtaIntercalibration_Stat181: 7.80535821e-05 + syst_JES_EtaIntercalibration_Stat182: 2.82628449e-03 + syst_JES_EtaIntercalibration_Stat183: 5.27656486e-03 + syst_JES_EtaIntercalibration_Stat184: 2.30998198e-03 + syst_JES_EtaIntercalibration_Stat185: 8.76102007e-05 + syst_JES_EtaIntercalibration_Stat186: 5.07923899e-07 syst_JES_EtaIntercalibration_Stat187: 0.0 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 @@ -48647,31 +48647,31 @@ bins: syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 syst_JES_EtaIntercalibration_Stat192: 0.0 - syst_JES_EtaIntercalibration_Stat193: 1.6085516639439187e-06 - syst_JES_EtaIntercalibration_Stat194: 0.00024128661380192645 - syst_JES_EtaIntercalibration_Stat195: 0.002295233975001242 - syst_JES_EtaIntercalibration_Stat196: 0.004930124820935064 - syst_JES_EtaIntercalibration_Stat197: 0.0024652985620407116 - syst_JES_EtaIntercalibration_Stat198: 0.005260739563027236 - syst_JES_EtaIntercalibration_Stat199: 0.0022485112852729913 + syst_JES_EtaIntercalibration_Stat193: 1.60855166e-06 + syst_JES_EtaIntercalibration_Stat194: 2.41286614e-04 + syst_JES_EtaIntercalibration_Stat195: 2.29523398e-03 + syst_JES_EtaIntercalibration_Stat196: 4.93012482e-03 + syst_JES_EtaIntercalibration_Stat197: 2.46529856e-03 + syst_JES_EtaIntercalibration_Stat198: 5.26073956e-03 + syst_JES_EtaIntercalibration_Stat199: 2.24851129e-03 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 0.00011456527517096968 - syst_JES_EtaIntercalibration_Stat201: 5.079238993195733e-07 + syst_JES_EtaIntercalibration_Stat200: 1.14565275e-04 + syst_JES_EtaIntercalibration_Stat201: 5.07923899e-07 syst_JES_EtaIntercalibration_Stat202: 0.0 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 syst_JES_EtaIntercalibration_Stat207: 0.0 - syst_JES_EtaIntercalibration_Stat208: 1.5510514981779297e-06 - syst_JES_EtaIntercalibration_Stat209: 0.00017531957698728342 + syst_JES_EtaIntercalibration_Stat208: 1.55105150e-06 + syst_JES_EtaIntercalibration_Stat209: 1.75319577e-04 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 0.0018309415610554042 - syst_JES_EtaIntercalibration_Stat211: 0.00526411158221404 - syst_JES_EtaIntercalibration_Stat212: 0.000306149350481101 - syst_JES_EtaIntercalibration_Stat213: 3.321293934485958e-05 - syst_JES_EtaIntercalibration_Stat214: 5.079238993195733e-07 + syst_JES_EtaIntercalibration_Stat210: 1.83094156e-03 + syst_JES_EtaIntercalibration_Stat211: 5.26411158e-03 + syst_JES_EtaIntercalibration_Stat212: 3.06149350e-04 + syst_JES_EtaIntercalibration_Stat213: 3.32129393e-05 + syst_JES_EtaIntercalibration_Stat214: 5.07923899e-07 syst_JES_EtaIntercalibration_Stat215: 0.0 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 @@ -48679,11 +48679,11 @@ bins: syst_JES_EtaIntercalibration_Stat219: 0.0 syst_JES_EtaIntercalibration_Stat22: 0.0 syst_JES_EtaIntercalibration_Stat220: 0.0 - syst_JES_EtaIntercalibration_Stat221: 1.9892603524928556e-08 - syst_JES_EtaIntercalibration_Stat222: 6.440982766628086e-05 - syst_JES_EtaIntercalibration_Stat223: 0.00024484172438536694 - syst_JES_EtaIntercalibration_Stat224: 0.00019129654335612028 - syst_JES_EtaIntercalibration_Stat225: 1.0105541746982197e-05 + syst_JES_EtaIntercalibration_Stat221: 1.98926035e-08 + syst_JES_EtaIntercalibration_Stat222: 6.44098277e-05 + syst_JES_EtaIntercalibration_Stat223: 2.44841724e-04 + syst_JES_EtaIntercalibration_Stat224: 1.91296543e-04 + syst_JES_EtaIntercalibration_Stat225: 1.01055417e-05 syst_JES_EtaIntercalibration_Stat226: 0.0 syst_JES_EtaIntercalibration_Stat227: 0.0 syst_JES_EtaIntercalibration_Stat228: 0.0 @@ -48692,291 +48692,291 @@ bins: syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 syst_JES_EtaIntercalibration_Stat232: 0.0 - syst_JES_EtaIntercalibration_Stat233: 1.9892603524928556e-08 - syst_JES_EtaIntercalibration_Stat234: 1.5882905905406603e-05 - syst_JES_EtaIntercalibration_Stat235: 0.00017547728307390676 - syst_JES_EtaIntercalibration_Stat236: 3.468215953489844e-08 + syst_JES_EtaIntercalibration_Stat233: 1.98926035e-08 + syst_JES_EtaIntercalibration_Stat234: 1.58829059e-05 + syst_JES_EtaIntercalibration_Stat235: 1.75477283e-04 + syst_JES_EtaIntercalibration_Stat236: 3.46821595e-08 syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 syst_JES_EtaIntercalibration_Stat239: 0.0 - syst_JES_EtaIntercalibration_Stat24: 1.6480463434017867e-14 + syst_JES_EtaIntercalibration_Stat24: 1.64804634e-14 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 syst_JES_EtaIntercalibration_Stat243: 0.0 - syst_JES_EtaIntercalibration_Stat244: 1.9892603524928556e-08 - syst_JES_EtaIntercalibration_Stat245: 3.2303771838594944e-10 - syst_JES_EtaIntercalibration_Stat25: 5.648777279199455e-12 - syst_JES_EtaIntercalibration_Stat26: 7.726591390014031e-07 - syst_JES_EtaIntercalibration_Stat27: 2.0472157631243146e-07 - syst_JES_EtaIntercalibration_Stat28: 9.491294797659327e-13 + syst_JES_EtaIntercalibration_Stat244: 1.98926035e-08 + syst_JES_EtaIntercalibration_Stat245: 3.23037718e-10 + syst_JES_EtaIntercalibration_Stat25: 5.64877728e-12 + syst_JES_EtaIntercalibration_Stat26: 7.72659139e-07 + syst_JES_EtaIntercalibration_Stat27: 2.04721576e-07 + syst_JES_EtaIntercalibration_Stat28: 9.49129480e-13 syst_JES_EtaIntercalibration_Stat29: 0.0 - syst_JES_EtaIntercalibration_Stat3: 2.495849842598709e-13 + syst_JES_EtaIntercalibration_Stat3: 2.49584984e-13 syst_JES_EtaIntercalibration_Stat30: 0.0 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 3.956004044487316e-12 - syst_JES_EtaIntercalibration_Stat36: 3.956004044487316e-12 - syst_JES_EtaIntercalibration_Stat37: 4.91018382045754e-12 - syst_JES_EtaIntercalibration_Stat38: 1.9797522746877894e-06 - syst_JES_EtaIntercalibration_Stat39: 1.9745626786496506e-06 - syst_JES_EtaIntercalibration_Stat4: 4.5423033642661557e-07 - syst_JES_EtaIntercalibration_Stat40: 5.03399174133957e-11 + syst_JES_EtaIntercalibration_Stat35: 3.95600404e-12 + syst_JES_EtaIntercalibration_Stat36: 3.95600404e-12 + syst_JES_EtaIntercalibration_Stat37: 4.91018382e-12 + syst_JES_EtaIntercalibration_Stat38: 1.97975227e-06 + syst_JES_EtaIntercalibration_Stat39: 1.97456268e-06 + syst_JES_EtaIntercalibration_Stat4: 4.54230336e-07 + syst_JES_EtaIntercalibration_Stat40: 5.03399174e-11 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 syst_JES_EtaIntercalibration_Stat44: 0.0 syst_JES_EtaIntercalibration_Stat45: 0.0 - syst_JES_EtaIntercalibration_Stat46: 3.345818584442378e-13 - syst_JES_EtaIntercalibration_Stat47: 9.138364405078187e-11 - syst_JES_EtaIntercalibration_Stat48: 1.1427388402608664e-06 - syst_JES_EtaIntercalibration_Stat49: 2.051663118769441e-07 - syst_JES_EtaIntercalibration_Stat5: 4.5440353062836005e-07 - syst_JES_EtaIntercalibration_Stat50: 4.776674261450115e-12 + syst_JES_EtaIntercalibration_Stat46: 3.34581858e-13 + syst_JES_EtaIntercalibration_Stat47: 9.13836441e-11 + syst_JES_EtaIntercalibration_Stat48: 1.14273884e-06 + syst_JES_EtaIntercalibration_Stat49: 2.05166312e-07 + syst_JES_EtaIntercalibration_Stat5: 4.54403531e-07 + syst_JES_EtaIntercalibration_Stat50: 4.77667426e-12 syst_JES_EtaIntercalibration_Stat51: 0.0 syst_JES_EtaIntercalibration_Stat52: 0.0 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 8.680172622131429e-15 - syst_JES_EtaIntercalibration_Stat57: 3.956004044487316e-12 - syst_JES_EtaIntercalibration_Stat58: 3.956004044487316e-12 - syst_JES_EtaIntercalibration_Stat59: 5.880565677509265e-12 + syst_JES_EtaIntercalibration_Stat56: 8.68017262e-15 + syst_JES_EtaIntercalibration_Stat57: 3.95600404e-12 + syst_JES_EtaIntercalibration_Stat58: 3.95600404e-12 + syst_JES_EtaIntercalibration_Stat59: 5.88056568e-12 syst_JES_EtaIntercalibration_Stat6: 0.0 - syst_JES_EtaIntercalibration_Stat60: 1.979140816288725e-06 - syst_JES_EtaIntercalibration_Stat61: 2.059643724045496e-06 - syst_JES_EtaIntercalibration_Stat62: 2.2522753755924254e-10 - syst_JES_EtaIntercalibration_Stat63: 6.122927112909314e-14 + syst_JES_EtaIntercalibration_Stat60: 1.97914082e-06 + syst_JES_EtaIntercalibration_Stat61: 2.05964372e-06 + syst_JES_EtaIntercalibration_Stat62: 2.25227538e-10 + syst_JES_EtaIntercalibration_Stat63: 6.12292711e-14 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 3.5607628631376172e-12 - syst_JES_EtaIntercalibration_Stat69: 8.959969334768955e-06 + syst_JES_EtaIntercalibration_Stat68: 3.56076286e-12 + syst_JES_EtaIntercalibration_Stat69: 8.95996933e-06 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 1.6637415845016316e-05 - syst_JES_EtaIntercalibration_Stat71: 1.4171165180029307e-06 - syst_JES_EtaIntercalibration_Stat72: 2.046348006141934e-07 + syst_JES_EtaIntercalibration_Stat70: 1.66374158e-05 + syst_JES_EtaIntercalibration_Stat71: 1.41711652e-06 + syst_JES_EtaIntercalibration_Stat72: 2.04634801e-07 syst_JES_EtaIntercalibration_Stat73: 0.0 syst_JES_EtaIntercalibration_Stat74: 0.0 syst_JES_EtaIntercalibration_Stat75: 0.0 - syst_JES_EtaIntercalibration_Stat76: 3.34467671195588e-13 - syst_JES_EtaIntercalibration_Stat77: 8.680172622131429e-15 - syst_JES_EtaIntercalibration_Stat78: 8.680172622131429e-15 - syst_JES_EtaIntercalibration_Stat79: 3.956004044487316e-12 + syst_JES_EtaIntercalibration_Stat76: 3.34467671e-13 + syst_JES_EtaIntercalibration_Stat77: 8.68017262e-15 + syst_JES_EtaIntercalibration_Stat78: 8.68017262e-15 + syst_JES_EtaIntercalibration_Stat79: 3.95600404e-12 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 3.919630977528369e-12 - syst_JES_EtaIntercalibration_Stat81: 4.472524790316986e-11 - syst_JES_EtaIntercalibration_Stat82: 1.628641381642994e-06 - syst_JES_EtaIntercalibration_Stat83: 3.3996916194708017e-06 - syst_JES_EtaIntercalibration_Stat84: 4.087203567232736e-08 - syst_JES_EtaIntercalibration_Stat85: 2.948264689609805e-13 + syst_JES_EtaIntercalibration_Stat80: 3.91963098e-12 + syst_JES_EtaIntercalibration_Stat81: 4.47252479e-11 + syst_JES_EtaIntercalibration_Stat82: 1.62864138e-06 + syst_JES_EtaIntercalibration_Stat83: 3.39969162e-06 + syst_JES_EtaIntercalibration_Stat84: 4.08720357e-08 + syst_JES_EtaIntercalibration_Stat85: 2.94826469e-13 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 5.7056380070505704e-12 + syst_JES_EtaIntercalibration_Stat89: 5.70563801e-12 syst_JES_EtaIntercalibration_Stat9: 0.0 - syst_JES_EtaIntercalibration_Stat90: 2.009529467313182e-05 - syst_JES_EtaIntercalibration_Stat91: 2.7872771659811658e-05 - syst_JES_EtaIntercalibration_Stat92: 1.4069848142393008e-06 - syst_JES_EtaIntercalibration_Stat93: 2.113867166796502e-07 + syst_JES_EtaIntercalibration_Stat90: 2.00952947e-05 + syst_JES_EtaIntercalibration_Stat91: 2.78727717e-05 + syst_JES_EtaIntercalibration_Stat92: 1.40698481e-06 + syst_JES_EtaIntercalibration_Stat93: 2.11386717e-07 syst_JES_EtaIntercalibration_Stat94: 0.0 syst_JES_EtaIntercalibration_Stat95: 0.0 - syst_JES_EtaIntercalibration_Stat96: 3.1246196568542545e-09 - syst_JES_EtaIntercalibration_Stat97: 3.34467671195588e-13 - syst_JES_EtaIntercalibration_Stat98: 8.680172622131429e-15 - syst_JES_EtaIntercalibration_Stat99: 8.680172622131429e-15 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.00796141802695977 - syst_JES_Flavour_Comp: 0.025550473576824363 - syst_JES_Flavour_Response: 0.017378178126604645 - syst_JES_Gjet_Generator: 0.05093041208354788 - syst_JES_Gjet_OOC: 0.03870875607340024 - syst_JES_Gjet_Purity: 0.012353053499034155 - syst_JES_Gjet_Stat1: 2.0316955923967966e-05 - syst_JES_Gjet_Stat10: 0.001380081340899876 - syst_JES_Gjet_Stat11: 0.002087352569644141 - syst_JES_Gjet_Stat12: 0.006931989090441503 - syst_JES_Gjet_Stat13: 0.009194457895928395 - syst_JES_Gjet_Stat14: 0.001970604528437911 - syst_JES_Gjet_Stat15: 0.0012140786177179796 - syst_JES_Gjet_Stat2: 4.9172923039449095e-08 - syst_JES_Gjet_Stat3: 6.259387357565974e-12 - syst_JES_Gjet_Stat4: 5.865590352866191e-05 - syst_JES_Gjet_Stat5: 8.242830197105746e-05 - syst_JES_Gjet_Stat6: 0.0003160406837734661 - syst_JES_Gjet_Stat7: 0.0004555429370542364 - syst_JES_Gjet_Stat8: 0.0002550340516480103 - syst_JES_Gjet_Stat9: 0.0007526418670257455 - syst_JES_Gjet_Veto: 0.02745985205713971 - syst_JES_Gjet_dPhi: 0.003030143395946799 - syst_JES_LArESZee: 0.0749709948913578 - syst_JES_LArEsmear: 0.006015861783651617 - syst_JES_LAr_JVT: 0.007990704724866262 - syst_JES_MJB_Alpha: 0.0004476485312161764 - syst_JES_MJB_Asym: 0.0023842621500162267 - syst_JES_MJB_Beta: 1.5709700824649715e-06 - syst_JES_MJB_Fragmentation: 0.008170824606488627 - syst_JES_MJB_Stat1: 0.0003257121543633274 - syst_JES_MJB_Stat10: 9.647522998158647e-40 - syst_JES_MJB_Stat11: 2.6387794053311846e-06 + syst_JES_EtaIntercalibration_Stat96: 3.12461966e-09 + syst_JES_EtaIntercalibration_Stat97: 3.34467671e-13 + syst_JES_EtaIntercalibration_Stat98: 8.68017262e-15 + syst_JES_EtaIntercalibration_Stat99: 8.68017262e-15 + syst_JES_EtaIntercalibration_TotalStat_MJB: 7.96141803e-03 + syst_JES_Flavour_Comp: 2.55504736e-02 + syst_JES_Flavour_Response: 1.73781781e-02 + syst_JES_Gjet_Generator: 5.09304121e-02 + syst_JES_Gjet_OOC: 3.87087561e-02 + syst_JES_Gjet_Purity: 1.23530535e-02 + syst_JES_Gjet_Stat1: 2.03169559e-05 + syst_JES_Gjet_Stat10: 1.38008134e-03 + syst_JES_Gjet_Stat11: 2.08735257e-03 + syst_JES_Gjet_Stat12: 6.93198909e-03 + syst_JES_Gjet_Stat13: 9.19445790e-03 + syst_JES_Gjet_Stat14: 1.97060453e-03 + syst_JES_Gjet_Stat15: 1.21407862e-03 + syst_JES_Gjet_Stat2: 4.91729230e-08 + syst_JES_Gjet_Stat3: 6.25938736e-12 + syst_JES_Gjet_Stat4: 5.86559035e-05 + syst_JES_Gjet_Stat5: 8.24283020e-05 + syst_JES_Gjet_Stat6: 3.16040684e-04 + syst_JES_Gjet_Stat7: 4.55542937e-04 + syst_JES_Gjet_Stat8: 2.55034052e-04 + syst_JES_Gjet_Stat9: 7.52641867e-04 + syst_JES_Gjet_Veto: 2.74598521e-02 + syst_JES_Gjet_dPhi: 3.03014340e-03 + syst_JES_LArESZee: 7.49709949e-02 + syst_JES_LArEsmear: 6.01586178e-03 + syst_JES_LAr_JVT: 7.99070472e-03 + syst_JES_MJB_Alpha: 4.47648531e-04 + syst_JES_MJB_Asym: 2.38426215e-03 + syst_JES_MJB_Beta: 1.57097008e-06 + syst_JES_MJB_Fragmentation: 8.17082461e-03 + syst_JES_MJB_Stat1: 3.25712154e-04 + syst_JES_MJB_Stat10: 9.64752300e-40 + syst_JES_MJB_Stat11: 2.63877941e-06 syst_JES_MJB_Stat12: 0.0 syst_JES_MJB_Stat13: 0.0 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 - syst_JES_MJB_Stat16: 4.5189205569472003e-14 - syst_JES_MJB_Stat2: 0.00047562785039881756 - syst_JES_MJB_Stat3: 0.000780573473479595 - syst_JES_MJB_Stat4: 0.0002647439659369029 - syst_JES_MJB_Stat5: 0.00010284917695343993 - syst_JES_MJB_Stat6: 7.508105072251138e-24 - syst_JES_MJB_Stat7: 2.449985867306177e-05 - syst_JES_MJB_Stat8: 1.0542127240267761e-27 - syst_JES_MJB_Stat9: 1.244478505238153e-27 - syst_JES_MJB_Threshold: 0.0033863617644900256 - syst_JES_Pileup_MuOffset: 0.006161930054779914 - syst_JES_Pileup_NPVOffset: 0.007160412331004409 - syst_JES_Pileup_Pt_term: 0.014216451412008554 - syst_JES_Pileup_Rho_topology: 0.015313702197705165 - syst_JES_PunchThrough_MC15: 0.0013418318337258214 + syst_JES_MJB_Stat16: 4.51892056e-14 + syst_JES_MJB_Stat2: 4.75627850e-04 + syst_JES_MJB_Stat3: 7.80573473e-04 + syst_JES_MJB_Stat4: 2.64743966e-04 + syst_JES_MJB_Stat5: 1.02849177e-04 + syst_JES_MJB_Stat6: 7.50810507e-24 + syst_JES_MJB_Stat7: 2.44998587e-05 + syst_JES_MJB_Stat8: 1.05421272e-27 + syst_JES_MJB_Stat9: 1.24447851e-27 + syst_JES_MJB_Threshold: 3.38636176e-03 + syst_JES_Pileup_MuOffset: 6.16193005e-03 + syst_JES_Pileup_NPVOffset: 7.16041233e-03 + syst_JES_Pileup_Pt_term: 1.42164514e-02 + syst_JES_Pileup_Rho_topology: 1.53137022e-02 + syst_JES_PunchThrough_MC15: 1.34183183e-03 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.03837017954088826 - syst_JES_Zjet_MuScale: 0.0021765203307113857 - syst_JES_Zjet_MuSmearID: 0.0004131705943070005 - syst_JES_Zjet_MuSmearMS: 0.010015095955606217 - syst_JES_Zjet_OOC: 0.01534695735316939 - syst_JES_Zjet_Stat1: 0.0004779594176434571 - syst_JES_Zjet_Stat10: 0.001301551697013991 - syst_JES_Zjet_Stat11: 0.0012771890414108634 - syst_JES_Zjet_Stat12: 0.009765500640008171 - syst_JES_Zjet_Stat13: 0.009918641779497837 - syst_JES_Zjet_Stat2: 1.8102090176275227e-05 - syst_JES_Zjet_Stat3: 0.000234519679344826 - syst_JES_Zjet_Stat4: 4.5810753440103996e-12 - syst_JES_Zjet_Stat5: 6.4367264636226385e-12 - syst_JES_Zjet_Stat6: 0.00029589671897471253 - syst_JES_Zjet_Stat7: 4.815496133058358e-06 - syst_JES_Zjet_Stat8: 0.0002402959425375302 - syst_JES_Zjet_Stat9: 0.0005600820006927558 - syst_JES_Zjet_Veto: 0.0031476009912312585 - syst_JES_Zjet_dPhi: 0.002521915343543474 - syst_PRW: 4.858e-31 + syst_JES_Zjet_MC: 3.83701795e-02 + syst_JES_Zjet_MuScale: 2.17652033e-03 + syst_JES_Zjet_MuSmearID: 4.13170594e-04 + syst_JES_Zjet_MuSmearMS: 1.00150960e-02 + syst_JES_Zjet_OOC: 1.53469574e-02 + syst_JES_Zjet_Stat1: 4.77959418e-04 + syst_JES_Zjet_Stat10: 1.30155170e-03 + syst_JES_Zjet_Stat11: 1.27718904e-03 + syst_JES_Zjet_Stat12: 9.76550064e-03 + syst_JES_Zjet_Stat13: 9.91864178e-03 + syst_JES_Zjet_Stat2: 1.81020902e-05 + syst_JES_Zjet_Stat3: 2.34519679e-04 + syst_JES_Zjet_Stat4: 4.58107534e-12 + syst_JES_Zjet_Stat5: 6.43672646e-12 + syst_JES_Zjet_Stat6: 2.95896719e-04 + syst_JES_Zjet_Stat7: 4.81549613e-06 + syst_JES_Zjet_Stat8: 2.40295943e-04 + syst_JES_Zjet_Stat9: 5.60082001e-04 + syst_JES_Zjet_Veto: 3.14760099e-03 + syst_JES_Zjet_dPhi: 2.52191534e-03 + syst_PRW: 4.85800000e-31 syst_Unfolding_bias: 0.0 - syst_cleaning: 0.010853030360226586 + syst_cleaning: 1.08530304e-02 syst_lumi: 0.04233 - stat: 0.010017 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.007845419746578255 - syst_JER_NP1: 0.009061840486347129 - syst_JER_NP2: 0.0017415906753731455 - syst_JER_NP3: 0.002443444034554506 - syst_JER_NP4: 0.0021830869771953657 - syst_JER_NP5: 5.983829166904751e-05 - syst_JER_NP6: 2.0347460941110072e-07 - syst_JER_NP7: 6.605685127221853e-12 - syst_JER_NP8: 0.001309511767797449 - syst_JES_EtaIntercalibration_Modelling: 0.04902450611683916 - syst_JES_EtaIntercalibration_NonClosure: 0.010429460101079058 + syst_JER_NP0: 7.84541975e-03 + syst_JER_NP1: 9.06184049e-03 + syst_JER_NP2: 1.74159068e-03 + syst_JER_NP3: 2.44344403e-03 + syst_JER_NP4: 2.18308698e-03 + syst_JER_NP5: 5.98382917e-05 + syst_JER_NP6: 2.03474609e-07 + syst_JER_NP7: 6.60568513e-12 + syst_JER_NP8: 1.30951177e-03 + syst_JES_EtaIntercalibration_Modelling: 4.90245061e-02 + syst_JES_EtaIntercalibration_NonClosure: 1.04294601e-02 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 1.3899707730740241e-15 + syst_JES_EtaIntercalibration_Stat100: 1.38997077e-15 syst_JES_EtaIntercalibration_Stat101: 0.0 - syst_JES_EtaIntercalibration_Stat102: 4.246335129261467e-10 - syst_JES_EtaIntercalibration_Stat103: 7.81343998297165e-07 - syst_JES_EtaIntercalibration_Stat104: 1.1409077075732287e-05 - syst_JES_EtaIntercalibration_Stat105: 2.8071453026161644e-08 - syst_JES_EtaIntercalibration_Stat106: 4.328047221322799e-12 + syst_JES_EtaIntercalibration_Stat102: 4.24633513e-10 + syst_JES_EtaIntercalibration_Stat103: 7.81343998e-07 + syst_JES_EtaIntercalibration_Stat104: 1.14090771e-05 + syst_JES_EtaIntercalibration_Stat105: 2.80714530e-08 + syst_JES_EtaIntercalibration_Stat106: 4.32804722e-12 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 3.679023613677956e-10 + syst_JES_EtaIntercalibration_Stat109: 3.67902361e-10 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 8.254803268400767e-06 - syst_JES_EtaIntercalibration_Stat111: 5.267862090070316e-06 - syst_JES_EtaIntercalibration_Stat112: 7.64896182497991e-06 - syst_JES_EtaIntercalibration_Stat113: 7.990652460844483e-08 - syst_JES_EtaIntercalibration_Stat114: 2.3140198789120202e-11 + syst_JES_EtaIntercalibration_Stat110: 8.25480327e-06 + syst_JES_EtaIntercalibration_Stat111: 5.26786209e-06 + syst_JES_EtaIntercalibration_Stat112: 7.64896182e-06 + syst_JES_EtaIntercalibration_Stat113: 7.99065246e-08 + syst_JES_EtaIntercalibration_Stat114: 2.31401988e-11 syst_JES_EtaIntercalibration_Stat115: 0.0 - syst_JES_EtaIntercalibration_Stat116: 3.3878047770643455e-10 - syst_JES_EtaIntercalibration_Stat117: 3.620852213222738e-10 - syst_JES_EtaIntercalibration_Stat118: 1.3899707730740241e-15 - syst_JES_EtaIntercalibration_Stat119: 1.3899707730740241e-15 + syst_JES_EtaIntercalibration_Stat116: 3.38780478e-10 + syst_JES_EtaIntercalibration_Stat117: 3.62085221e-10 + syst_JES_EtaIntercalibration_Stat118: 1.38997077e-15 + syst_JES_EtaIntercalibration_Stat119: 1.38997077e-15 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 1.3899707730740241e-15 - syst_JES_EtaIntercalibration_Stat121: 4.727632679259251e-13 - syst_JES_EtaIntercalibration_Stat122: 8.014163669404313e-07 - syst_JES_EtaIntercalibration_Stat123: 1.6037022150948098e-05 - syst_JES_EtaIntercalibration_Stat124: 1.1432462672145491e-05 - syst_JES_EtaIntercalibration_Stat125: 3.841639363605074e-06 - syst_JES_EtaIntercalibration_Stat126: 4.13006253604894e-09 + syst_JES_EtaIntercalibration_Stat120: 1.38997077e-15 + syst_JES_EtaIntercalibration_Stat121: 4.72763268e-13 + syst_JES_EtaIntercalibration_Stat122: 8.01416367e-07 + syst_JES_EtaIntercalibration_Stat123: 1.60370222e-05 + syst_JES_EtaIntercalibration_Stat124: 1.14324627e-05 + syst_JES_EtaIntercalibration_Stat125: 3.84163936e-06 + syst_JES_EtaIntercalibration_Stat126: 4.13006254e-09 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 2.4346972604412237e-06 - syst_JES_EtaIntercalibration_Stat129: 7.642805554899327e-06 + syst_JES_EtaIntercalibration_Stat128: 2.43469726e-06 + syst_JES_EtaIntercalibration_Stat129: 7.64280555e-06 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 0.00014051222037602282 - syst_JES_EtaIntercalibration_Stat131: 1.807731984642635e-05 - syst_JES_EtaIntercalibration_Stat132: 5.19656588527462e-06 - syst_JES_EtaIntercalibration_Stat133: 3.33037442952842e-08 + syst_JES_EtaIntercalibration_Stat130: 1.40512220e-04 + syst_JES_EtaIntercalibration_Stat131: 1.80773198e-05 + syst_JES_EtaIntercalibration_Stat132: 5.19656589e-06 + syst_JES_EtaIntercalibration_Stat133: 3.33037443e-08 syst_JES_EtaIntercalibration_Stat134: 0.0 - syst_JES_EtaIntercalibration_Stat135: 3.3878047770643455e-10 - syst_JES_EtaIntercalibration_Stat136: 3.3878047770643455e-10 - syst_JES_EtaIntercalibration_Stat137: 1.3899707730740241e-15 - syst_JES_EtaIntercalibration_Stat138: 1.3899707730740241e-15 - syst_JES_EtaIntercalibration_Stat139: 1.3899707730740241e-15 + syst_JES_EtaIntercalibration_Stat135: 3.38780478e-10 + syst_JES_EtaIntercalibration_Stat136: 3.38780478e-10 + syst_JES_EtaIntercalibration_Stat137: 1.38997077e-15 + syst_JES_EtaIntercalibration_Stat138: 1.38997077e-15 + syst_JES_EtaIntercalibration_Stat139: 1.38997077e-15 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 3.4952785296739947e-13 - syst_JES_EtaIntercalibration_Stat141: 8.676139228222424e-06 - syst_JES_EtaIntercalibration_Stat142: 3.843680809783768e-05 - syst_JES_EtaIntercalibration_Stat143: 0.0001406457275390902 - syst_JES_EtaIntercalibration_Stat144: 8.066891673222097e-05 - syst_JES_EtaIntercalibration_Stat145: 9.941089071122943e-09 - syst_JES_EtaIntercalibration_Stat146: 8.582733873888903e-06 - syst_JES_EtaIntercalibration_Stat147: 9.892847163481299e-06 - syst_JES_EtaIntercalibration_Stat148: 0.0001799774994270117 - syst_JES_EtaIntercalibration_Stat149: 1.1904423327066287e-05 + syst_JES_EtaIntercalibration_Stat140: 3.49527853e-13 + syst_JES_EtaIntercalibration_Stat141: 8.67613923e-06 + syst_JES_EtaIntercalibration_Stat142: 3.84368081e-05 + syst_JES_EtaIntercalibration_Stat143: 1.40645728e-04 + syst_JES_EtaIntercalibration_Stat144: 8.06689167e-05 + syst_JES_EtaIntercalibration_Stat145: 9.94108907e-09 + syst_JES_EtaIntercalibration_Stat146: 8.58273387e-06 + syst_JES_EtaIntercalibration_Stat147: 9.89284716e-06 + syst_JES_EtaIntercalibration_Stat148: 1.79977499e-04 + syst_JES_EtaIntercalibration_Stat149: 1.19044233e-05 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 6.2512821748822065e-06 - syst_JES_EtaIntercalibration_Stat151: 1.1700963542320224e-07 + syst_JES_EtaIntercalibration_Stat150: 6.25128217e-06 + syst_JES_EtaIntercalibration_Stat151: 1.17009635e-07 syst_JES_EtaIntercalibration_Stat152: 0.0 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 1.3899707730740241e-15 + syst_JES_EtaIntercalibration_Stat156: 1.38997077e-15 syst_JES_EtaIntercalibration_Stat157: 0.0 syst_JES_EtaIntercalibration_Stat158: 0.0 - syst_JES_EtaIntercalibration_Stat159: 1.5726191528784072e-05 - syst_JES_EtaIntercalibration_Stat16: 8.684502753861529e-07 - syst_JES_EtaIntercalibration_Stat160: 5.963441623760561e-05 - syst_JES_EtaIntercalibration_Stat161: 0.0002110646050383626 - syst_JES_EtaIntercalibration_Stat162: 2.4778028387060984e-05 - syst_JES_EtaIntercalibration_Stat163: 1.4335513271243553e-06 - syst_JES_EtaIntercalibration_Stat164: 1.3124613775269733e-05 - syst_JES_EtaIntercalibration_Stat165: 0.00022004324734015357 - syst_JES_EtaIntercalibration_Stat166: 0.0005277543557375913 - syst_JES_EtaIntercalibration_Stat167: 0.00020873238847864508 - syst_JES_EtaIntercalibration_Stat168: 3.663981783087902e-05 - syst_JES_EtaIntercalibration_Stat169: 1.1700963542320224e-07 - syst_JES_EtaIntercalibration_Stat17: 3.970485664269237e-12 + syst_JES_EtaIntercalibration_Stat159: 1.57261915e-05 + syst_JES_EtaIntercalibration_Stat16: 8.68450275e-07 + syst_JES_EtaIntercalibration_Stat160: 5.96344162e-05 + syst_JES_EtaIntercalibration_Stat161: 2.11064605e-04 + syst_JES_EtaIntercalibration_Stat162: 2.47780284e-05 + syst_JES_EtaIntercalibration_Stat163: 1.43355133e-06 + syst_JES_EtaIntercalibration_Stat164: 1.31246138e-05 + syst_JES_EtaIntercalibration_Stat165: 2.20043247e-04 + syst_JES_EtaIntercalibration_Stat166: 5.27754356e-04 + syst_JES_EtaIntercalibration_Stat167: 2.08732388e-04 + syst_JES_EtaIntercalibration_Stat168: 3.66398178e-05 + syst_JES_EtaIntercalibration_Stat169: 1.17009635e-07 + syst_JES_EtaIntercalibration_Stat17: 3.97048566e-12 syst_JES_EtaIntercalibration_Stat170: 0.0 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 syst_JES_EtaIntercalibration_Stat175: 0.0 - syst_JES_EtaIntercalibration_Stat176: 2.2126949066692407e-08 - syst_JES_EtaIntercalibration_Stat177: 2.916671590473463e-05 - syst_JES_EtaIntercalibration_Stat178: 0.00016438010828564387 - syst_JES_EtaIntercalibration_Stat179: 0.0006484428193757719 - syst_JES_EtaIntercalibration_Stat18: 6.384863036902201e-16 - syst_JES_EtaIntercalibration_Stat180: 0.00032151878638735873 - syst_JES_EtaIntercalibration_Stat181: 3.040094200843125e-05 - syst_JES_EtaIntercalibration_Stat182: 0.001487215319817544 - syst_JES_EtaIntercalibration_Stat183: 0.0026832826910335034 - syst_JES_EtaIntercalibration_Stat184: 0.0010478272376685004 - syst_JES_EtaIntercalibration_Stat185: 4.570090918132811e-05 - syst_JES_EtaIntercalibration_Stat186: 1.1701735255935335e-07 + syst_JES_EtaIntercalibration_Stat176: 2.21269491e-08 + syst_JES_EtaIntercalibration_Stat177: 2.91667159e-05 + syst_JES_EtaIntercalibration_Stat178: 1.64380108e-04 + syst_JES_EtaIntercalibration_Stat179: 6.48442819e-04 + syst_JES_EtaIntercalibration_Stat18: 6.38486304e-16 + syst_JES_EtaIntercalibration_Stat180: 3.21518786e-04 + syst_JES_EtaIntercalibration_Stat181: 3.04009420e-05 + syst_JES_EtaIntercalibration_Stat182: 1.48721532e-03 + syst_JES_EtaIntercalibration_Stat183: 2.68328269e-03 + syst_JES_EtaIntercalibration_Stat184: 1.04782724e-03 + syst_JES_EtaIntercalibration_Stat185: 4.57009092e-05 + syst_JES_EtaIntercalibration_Stat186: 1.17017353e-07 syst_JES_EtaIntercalibration_Stat187: 0.0 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 @@ -48984,31 +48984,31 @@ bins: syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 syst_JES_EtaIntercalibration_Stat192: 0.0 - syst_JES_EtaIntercalibration_Stat193: 7.630748534834246e-07 - syst_JES_EtaIntercalibration_Stat194: 0.00010980145388381702 - syst_JES_EtaIntercalibration_Stat195: 0.0011470194015359985 - syst_JES_EtaIntercalibration_Stat196: 0.002297513166447583 - syst_JES_EtaIntercalibration_Stat197: 0.0012444075487958116 - syst_JES_EtaIntercalibration_Stat198: 0.0033819391996308865 - syst_JES_EtaIntercalibration_Stat199: 0.0013836886165246862 + syst_JES_EtaIntercalibration_Stat193: 7.63074853e-07 + syst_JES_EtaIntercalibration_Stat194: 1.09801454e-04 + syst_JES_EtaIntercalibration_Stat195: 1.14701940e-03 + syst_JES_EtaIntercalibration_Stat196: 2.29751317e-03 + syst_JES_EtaIntercalibration_Stat197: 1.24440755e-03 + syst_JES_EtaIntercalibration_Stat198: 3.38193920e-03 + syst_JES_EtaIntercalibration_Stat199: 1.38368862e-03 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 6.2945885290462e-05 - syst_JES_EtaIntercalibration_Stat201: 1.1701735255935335e-07 + syst_JES_EtaIntercalibration_Stat200: 6.29458853e-05 + syst_JES_EtaIntercalibration_Stat201: 1.17017353e-07 syst_JES_EtaIntercalibration_Stat202: 0.0 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 syst_JES_EtaIntercalibration_Stat207: 0.0 - syst_JES_EtaIntercalibration_Stat208: 7.517966530252712e-07 - syst_JES_EtaIntercalibration_Stat209: 0.00010547313117566955 + syst_JES_EtaIntercalibration_Stat208: 7.51796653e-07 + syst_JES_EtaIntercalibration_Stat209: 1.05473131e-04 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 0.0012441838569922051 - syst_JES_EtaIntercalibration_Stat211: 0.003462661115385102 - syst_JES_EtaIntercalibration_Stat212: 0.0003531382448843512 - syst_JES_EtaIntercalibration_Stat213: 4.793433509075935e-05 - syst_JES_EtaIntercalibration_Stat214: 1.1701735255935335e-07 + syst_JES_EtaIntercalibration_Stat210: 1.24418386e-03 + syst_JES_EtaIntercalibration_Stat211: 3.46266112e-03 + syst_JES_EtaIntercalibration_Stat212: 3.53138245e-04 + syst_JES_EtaIntercalibration_Stat213: 4.79343351e-05 + syst_JES_EtaIntercalibration_Stat214: 1.17017353e-07 syst_JES_EtaIntercalibration_Stat215: 0.0 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 @@ -49016,11 +49016,11 @@ bins: syst_JES_EtaIntercalibration_Stat219: 0.0 syst_JES_EtaIntercalibration_Stat22: 0.0 syst_JES_EtaIntercalibration_Stat220: 0.0 - syst_JES_EtaIntercalibration_Stat221: 1.1097249524093797e-07 - syst_JES_EtaIntercalibration_Stat222: 4.378355056411026e-05 - syst_JES_EtaIntercalibration_Stat223: 0.0003823405942350354 - syst_JES_EtaIntercalibration_Stat224: 0.00018015956816111654 - syst_JES_EtaIntercalibration_Stat225: 2.30293896304266e-05 + syst_JES_EtaIntercalibration_Stat221: 1.10972495e-07 + syst_JES_EtaIntercalibration_Stat222: 4.37835506e-05 + syst_JES_EtaIntercalibration_Stat223: 3.82340594e-04 + syst_JES_EtaIntercalibration_Stat224: 1.80159568e-04 + syst_JES_EtaIntercalibration_Stat225: 2.30293896e-05 syst_JES_EtaIntercalibration_Stat226: 0.0 syst_JES_EtaIntercalibration_Stat227: 0.0 syst_JES_EtaIntercalibration_Stat228: 0.0 @@ -49029,291 +49029,291 @@ bins: syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 syst_JES_EtaIntercalibration_Stat232: 0.0 - syst_JES_EtaIntercalibration_Stat233: 1.1097249524093797e-07 - syst_JES_EtaIntercalibration_Stat234: 4.122280922013928e-06 - syst_JES_EtaIntercalibration_Stat235: 0.00017273674095281527 - syst_JES_EtaIntercalibration_Stat236: 5.478812028668327e-07 + syst_JES_EtaIntercalibration_Stat233: 1.10972495e-07 + syst_JES_EtaIntercalibration_Stat234: 4.12228092e-06 + syst_JES_EtaIntercalibration_Stat235: 1.72736741e-04 + syst_JES_EtaIntercalibration_Stat236: 5.47881203e-07 syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 syst_JES_EtaIntercalibration_Stat239: 0.0 - syst_JES_EtaIntercalibration_Stat24: 2.3477948696596134e-15 + syst_JES_EtaIntercalibration_Stat24: 2.34779487e-15 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 syst_JES_EtaIntercalibration_Stat243: 0.0 - syst_JES_EtaIntercalibration_Stat244: 1.1097249524093797e-07 - syst_JES_EtaIntercalibration_Stat245: 1.6044652403526854e-08 - syst_JES_EtaIntercalibration_Stat25: 6.156659869604622e-13 - syst_JES_EtaIntercalibration_Stat26: 4.105825494509178e-06 - syst_JES_EtaIntercalibration_Stat27: 3.3212201606591225e-08 - syst_JES_EtaIntercalibration_Stat28: 1.0726260898575049e-13 + syst_JES_EtaIntercalibration_Stat244: 1.10972495e-07 + syst_JES_EtaIntercalibration_Stat245: 1.60446524e-08 + syst_JES_EtaIntercalibration_Stat25: 6.15665987e-13 + syst_JES_EtaIntercalibration_Stat26: 4.10582549e-06 + syst_JES_EtaIntercalibration_Stat27: 3.32122016e-08 + syst_JES_EtaIntercalibration_Stat28: 1.07262609e-13 syst_JES_EtaIntercalibration_Stat29: 0.0 - syst_JES_EtaIntercalibration_Stat3: 2.8189146697266307e-14 + syst_JES_EtaIntercalibration_Stat3: 2.81891467e-14 syst_JES_EtaIntercalibration_Stat30: 0.0 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 4.18117064947127e-13 - syst_JES_EtaIntercalibration_Stat36: 4.18117064947127e-13 - syst_JES_EtaIntercalibration_Stat37: 5.319583834549466e-13 - syst_JES_EtaIntercalibration_Stat38: 8.681058078432488e-07 - syst_JES_EtaIntercalibration_Stat39: 8.658548196169616e-07 - syst_JES_EtaIntercalibration_Stat4: 1.0960417657779988e-07 - syst_JES_EtaIntercalibration_Stat40: 5.387995264242537e-12 + syst_JES_EtaIntercalibration_Stat35: 4.18117065e-13 + syst_JES_EtaIntercalibration_Stat36: 4.18117065e-13 + syst_JES_EtaIntercalibration_Stat37: 5.31958383e-13 + syst_JES_EtaIntercalibration_Stat38: 8.68105808e-07 + syst_JES_EtaIntercalibration_Stat39: 8.65854820e-07 + syst_JES_EtaIntercalibration_Stat4: 1.09604177e-07 + syst_JES_EtaIntercalibration_Stat40: 5.38799526e-12 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 syst_JES_EtaIntercalibration_Stat44: 0.0 syst_JES_EtaIntercalibration_Stat45: 0.0 - syst_JES_EtaIntercalibration_Stat46: 3.765065373602429e-14 - syst_JES_EtaIntercalibration_Stat47: 9.708639181162311e-12 - syst_JES_EtaIntercalibration_Stat48: 4.4028218287945326e-06 - syst_JES_EtaIntercalibration_Stat49: 3.319545018866742e-08 - syst_JES_EtaIntercalibration_Stat5: 1.0963015602623942e-07 - syst_JES_EtaIntercalibration_Stat50: 5.161942536487596e-13 + syst_JES_EtaIntercalibration_Stat46: 3.76506537e-14 + syst_JES_EtaIntercalibration_Stat47: 9.70863918e-12 + syst_JES_EtaIntercalibration_Stat48: 4.40282183e-06 + syst_JES_EtaIntercalibration_Stat49: 3.31954502e-08 + syst_JES_EtaIntercalibration_Stat5: 1.09630156e-07 + syst_JES_EtaIntercalibration_Stat50: 5.16194254e-13 syst_JES_EtaIntercalibration_Stat51: 0.0 syst_JES_EtaIntercalibration_Stat52: 0.0 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 1.3899707730740241e-15 - syst_JES_EtaIntercalibration_Stat57: 4.18117064947127e-13 - syst_JES_EtaIntercalibration_Stat58: 4.18117064947127e-13 - syst_JES_EtaIntercalibration_Stat59: 6.387502876711681e-13 + syst_JES_EtaIntercalibration_Stat56: 1.38997077e-15 + syst_JES_EtaIntercalibration_Stat57: 4.18117065e-13 + syst_JES_EtaIntercalibration_Stat58: 4.18117065e-13 + syst_JES_EtaIntercalibration_Stat59: 6.38750288e-13 syst_JES_EtaIntercalibration_Stat6: 0.0 - syst_JES_EtaIntercalibration_Stat60: 8.686651413339609e-07 - syst_JES_EtaIntercalibration_Stat61: 8.761759179525537e-07 - syst_JES_EtaIntercalibration_Stat62: 2.41814322776795e-11 - syst_JES_EtaIntercalibration_Stat63: 7.331358530606726e-15 + syst_JES_EtaIntercalibration_Stat60: 8.68665141e-07 + syst_JES_EtaIntercalibration_Stat61: 8.76175918e-07 + syst_JES_EtaIntercalibration_Stat62: 2.41814323e-11 + syst_JES_EtaIntercalibration_Stat63: 7.33135853e-15 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 3.8008008037780674e-13 - syst_JES_EtaIntercalibration_Stat69: 7.4074618931993165e-06 + syst_JES_EtaIntercalibration_Stat68: 3.80080080e-13 + syst_JES_EtaIntercalibration_Stat69: 7.40746189e-06 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 9.22070424371154e-06 - syst_JES_EtaIntercalibration_Stat71: 4.355625041735888e-06 - syst_JES_EtaIntercalibration_Stat72: 3.314984200517298e-08 + syst_JES_EtaIntercalibration_Stat70: 9.22070424e-06 + syst_JES_EtaIntercalibration_Stat71: 4.35562504e-06 + syst_JES_EtaIntercalibration_Stat72: 3.31498420e-08 syst_JES_EtaIntercalibration_Stat73: 0.0 syst_JES_EtaIntercalibration_Stat74: 0.0 syst_JES_EtaIntercalibration_Stat75: 0.0 - syst_JES_EtaIntercalibration_Stat76: 4.0045014670992444e-14 - syst_JES_EtaIntercalibration_Stat77: 1.3899707730740241e-15 - syst_JES_EtaIntercalibration_Stat78: 1.3899707730740241e-15 - syst_JES_EtaIntercalibration_Stat79: 4.18117064947127e-13 + syst_JES_EtaIntercalibration_Stat76: 4.00450147e-14 + syst_JES_EtaIntercalibration_Stat77: 1.38997077e-15 + syst_JES_EtaIntercalibration_Stat78: 1.38997077e-15 + syst_JES_EtaIntercalibration_Stat79: 4.18117065e-13 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 4.1404674554934005e-13 - syst_JES_EtaIntercalibration_Stat81: 4.7697474775924984e-12 - syst_JES_EtaIntercalibration_Stat82: 7.942416664183516e-07 - syst_JES_EtaIntercalibration_Stat83: 4.2568325630684604e-07 - syst_JES_EtaIntercalibration_Stat84: 6.43137829318102e-09 - syst_JES_EtaIntercalibration_Stat85: 3.244696883762796e-14 + syst_JES_EtaIntercalibration_Stat80: 4.14046746e-13 + syst_JES_EtaIntercalibration_Stat81: 4.76974748e-12 + syst_JES_EtaIntercalibration_Stat82: 7.94241666e-07 + syst_JES_EtaIntercalibration_Stat83: 4.25683256e-07 + syst_JES_EtaIntercalibration_Stat84: 6.43137829e-09 + syst_JES_EtaIntercalibration_Stat85: 3.24469688e-14 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 6.064538105247587e-13 + syst_JES_EtaIntercalibration_Stat89: 6.06453811e-13 syst_JES_EtaIntercalibration_Stat9: 0.0 - syst_JES_EtaIntercalibration_Stat90: 9.764988312845029e-06 - syst_JES_EtaIntercalibration_Stat91: 1.0748214305176465e-05 - syst_JES_EtaIntercalibration_Stat92: 1.9308543264575917e-07 - syst_JES_EtaIntercalibration_Stat93: 3.424329469878195e-08 + syst_JES_EtaIntercalibration_Stat90: 9.76498831e-06 + syst_JES_EtaIntercalibration_Stat91: 1.07482143e-05 + syst_JES_EtaIntercalibration_Stat92: 1.93085433e-07 + syst_JES_EtaIntercalibration_Stat93: 3.42432947e-08 syst_JES_EtaIntercalibration_Stat94: 0.0 syst_JES_EtaIntercalibration_Stat95: 0.0 - syst_JES_EtaIntercalibration_Stat96: 3.620852213222738e-10 - syst_JES_EtaIntercalibration_Stat97: 4.0045014670992444e-14 - syst_JES_EtaIntercalibration_Stat98: 1.3899707730740241e-15 - syst_JES_EtaIntercalibration_Stat99: 1.3899707730740241e-15 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.005449969976981525 - syst_JES_Flavour_Comp: 0.01636512373922055 - syst_JES_Flavour_Response: 0.0075773348216902755 - syst_JES_Gjet_Generator: 0.02978097043415476 - syst_JES_Gjet_OOC: 0.02293508829283201 - syst_JES_Gjet_Purity: 0.007035340130370386 - syst_JES_Gjet_Stat1: 1.1272177539326995e-05 - syst_JES_Gjet_Stat10: 0.0006822469201103072 - syst_JES_Gjet_Stat11: 0.0009652633565509467 - syst_JES_Gjet_Stat12: 0.0038163987370294526 - syst_JES_Gjet_Stat13: 0.0062953431002607 - syst_JES_Gjet_Stat14: 0.003045344151323459 - syst_JES_Gjet_Stat15: 0.0009678778060788459 - syst_JES_Gjet_Stat2: 8.062701670757747e-07 - syst_JES_Gjet_Stat3: 1.954104470083419e-12 - syst_JES_Gjet_Stat4: 3.254523502605647e-05 - syst_JES_Gjet_Stat5: 4.572614180392658e-05 - syst_JES_Gjet_Stat6: 0.00017804905805704225 - syst_JES_Gjet_Stat7: 0.00023196395129416122 - syst_JES_Gjet_Stat8: 0.000139460426913874 - syst_JES_Gjet_Stat9: 0.00038293833707269374 - syst_JES_Gjet_Veto: 0.01758002275311383 - syst_JES_Gjet_dPhi: 0.001872467890245384 - syst_JES_LArESZee: 0.044227091245072854 - syst_JES_LArEsmear: 0.003740840162316482 - syst_JES_LAr_JVT: 0.004710565013881032 - syst_JES_MJB_Alpha: 0.0002595478135141963 - syst_JES_MJB_Asym: 0.001668518129958437 - syst_JES_MJB_Beta: 1.0017315845574601e-05 - syst_JES_MJB_Fragmentation: 0.005023064502870732 - syst_JES_MJB_Stat1: 0.00016082091748277025 - syst_JES_MJB_Stat10: 7.56646395286464e-32 - syst_JES_MJB_Stat11: 2.690740929558251e-06 + syst_JES_EtaIntercalibration_Stat96: 3.62085221e-10 + syst_JES_EtaIntercalibration_Stat97: 4.00450147e-14 + syst_JES_EtaIntercalibration_Stat98: 1.38997077e-15 + syst_JES_EtaIntercalibration_Stat99: 1.38997077e-15 + syst_JES_EtaIntercalibration_TotalStat_MJB: 5.44996998e-03 + syst_JES_Flavour_Comp: 1.63651237e-02 + syst_JES_Flavour_Response: 7.57733482e-03 + syst_JES_Gjet_Generator: 2.97809704e-02 + syst_JES_Gjet_OOC: 2.29350883e-02 + syst_JES_Gjet_Purity: 7.03534013e-03 + syst_JES_Gjet_Stat1: 1.12721775e-05 + syst_JES_Gjet_Stat10: 6.82246920e-04 + syst_JES_Gjet_Stat11: 9.65263357e-04 + syst_JES_Gjet_Stat12: 3.81639874e-03 + syst_JES_Gjet_Stat13: 6.29534310e-03 + syst_JES_Gjet_Stat14: 3.04534415e-03 + syst_JES_Gjet_Stat15: 9.67877806e-04 + syst_JES_Gjet_Stat2: 8.06270167e-07 + syst_JES_Gjet_Stat3: 1.95410447e-12 + syst_JES_Gjet_Stat4: 3.25452350e-05 + syst_JES_Gjet_Stat5: 4.57261418e-05 + syst_JES_Gjet_Stat6: 1.78049058e-04 + syst_JES_Gjet_Stat7: 2.31963951e-04 + syst_JES_Gjet_Stat8: 1.39460427e-04 + syst_JES_Gjet_Stat9: 3.82938337e-04 + syst_JES_Gjet_Veto: 1.75800228e-02 + syst_JES_Gjet_dPhi: 1.87246789e-03 + syst_JES_LArESZee: 4.42270912e-02 + syst_JES_LArEsmear: 3.74084016e-03 + syst_JES_LAr_JVT: 4.71056501e-03 + syst_JES_MJB_Alpha: 2.59547814e-04 + syst_JES_MJB_Asym: 1.66851813e-03 + syst_JES_MJB_Beta: 1.00173158e-05 + syst_JES_MJB_Fragmentation: 5.02306450e-03 + syst_JES_MJB_Stat1: 1.60820917e-04 + syst_JES_MJB_Stat10: 7.56646395e-32 + syst_JES_MJB_Stat11: 2.69074093e-06 syst_JES_MJB_Stat12: 0.0 syst_JES_MJB_Stat13: 0.0 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 - syst_JES_MJB_Stat16: 8.439417559879354e-12 - syst_JES_MJB_Stat2: 0.00023747227643453457 - syst_JES_MJB_Stat3: 0.0004126536804634123 - syst_JES_MJB_Stat4: 0.00019935904795117778 - syst_JES_MJB_Stat5: 5.7746573924346286e-05 - syst_JES_MJB_Stat6: 2.564917095714727e-19 - syst_JES_MJB_Stat7: 5.7711932908194994e-05 - syst_JES_MJB_Stat8: 3.51606313934828e-22 - syst_JES_MJB_Stat9: 4.150859760271986e-22 - syst_JES_MJB_Threshold: 0.002274936207896828 - syst_JES_Pileup_MuOffset: 0.004315169869194026 - syst_JES_Pileup_NPVOffset: 0.004544624379417952 - syst_JES_Pileup_Pt_term: 0.007497836537962135 - syst_JES_Pileup_Rho_topology: 0.00893767647378221 - syst_JES_PunchThrough_MC15: 0.001001336061220208 + syst_JES_MJB_Stat16: 8.43941756e-12 + syst_JES_MJB_Stat2: 2.37472276e-04 + syst_JES_MJB_Stat3: 4.12653680e-04 + syst_JES_MJB_Stat4: 1.99359048e-04 + syst_JES_MJB_Stat5: 5.77465739e-05 + syst_JES_MJB_Stat6: 2.56491710e-19 + syst_JES_MJB_Stat7: 5.77119329e-05 + syst_JES_MJB_Stat8: 3.51606314e-22 + syst_JES_MJB_Stat9: 4.15085976e-22 + syst_JES_MJB_Threshold: 2.27493621e-03 + syst_JES_Pileup_MuOffset: 4.31516987e-03 + syst_JES_Pileup_NPVOffset: 4.54462438e-03 + syst_JES_Pileup_Pt_term: 7.49783654e-03 + syst_JES_Pileup_Rho_topology: 8.93767647e-03 + syst_JES_PunchThrough_MC15: 1.00133606e-03 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.020350122849752038 - syst_JES_Zjet_MuScale: 0.0011512897810716466 - syst_JES_Zjet_MuSmearID: 0.00023188152723966604 - syst_JES_Zjet_MuSmearMS: 0.005713509845095219 - syst_JES_Zjet_OOC: 0.008679732527560973 - syst_JES_Zjet_Stat1: 0.0002867410108682681 - syst_JES_Zjet_Stat10: 0.0006549778374113127 - syst_JES_Zjet_Stat11: 0.000665374616287697 - syst_JES_Zjet_Stat12: 0.004779810116521367 - syst_JES_Zjet_Stat13: 0.00589700423944226 - syst_JES_Zjet_Stat2: 1.0017605053105258e-05 - syst_JES_Zjet_Stat3: 0.00013042342580993647 - syst_JES_Zjet_Stat4: 5.474462233863707e-13 - syst_JES_Zjet_Stat5: 7.719484616864003e-13 - syst_JES_Zjet_Stat6: 0.0001652929072888489 - syst_JES_Zjet_Stat7: 6.649622973334653e-07 - syst_JES_Zjet_Stat8: 7.874981952360272e-05 - syst_JES_Zjet_Stat9: 0.00027688010040448916 - syst_JES_Zjet_Veto: 0.001799881871123769 - syst_JES_Zjet_dPhi: 0.0013905596427338167 - syst_PRW: 2.089e-24 - syst_Unfolding_bias: 4.238e-37 - syst_cleaning: 0.006048321420030519 + syst_JES_Zjet_MC: 2.03501228e-02 + syst_JES_Zjet_MuScale: 1.15128978e-03 + syst_JES_Zjet_MuSmearID: 2.31881527e-04 + syst_JES_Zjet_MuSmearMS: 5.71350985e-03 + syst_JES_Zjet_OOC: 8.67973253e-03 + syst_JES_Zjet_Stat1: 2.86741011e-04 + syst_JES_Zjet_Stat10: 6.54977837e-04 + syst_JES_Zjet_Stat11: 6.65374616e-04 + syst_JES_Zjet_Stat12: 4.77981012e-03 + syst_JES_Zjet_Stat13: 5.89700424e-03 + syst_JES_Zjet_Stat2: 1.00176051e-05 + syst_JES_Zjet_Stat3: 1.30423426e-04 + syst_JES_Zjet_Stat4: 5.47446223e-13 + syst_JES_Zjet_Stat5: 7.71948462e-13 + syst_JES_Zjet_Stat6: 1.65292907e-04 + syst_JES_Zjet_Stat7: 6.64962297e-07 + syst_JES_Zjet_Stat8: 7.87498195e-05 + syst_JES_Zjet_Stat9: 2.76880100e-04 + syst_JES_Zjet_Veto: 1.79988187e-03 + syst_JES_Zjet_dPhi: 1.39055964e-03 + syst_PRW: 2.08900000e-24 + syst_Unfolding_bias: 4.23800000e-37 + syst_cleaning: 6.04832142e-03 syst_lumi: 0.02348 - stat: 0.005387 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.004107938990540147 - syst_JER_NP1: 0.005238106814489372 - syst_JER_NP2: 0.0010346419961717796 - syst_JER_NP3: 0.00114189914615959 - syst_JER_NP4: 0.0010492947762664217 - syst_JER_NP5: 9.675295838457603e-06 - syst_JER_NP6: 2.2052593384906e-08 - syst_JER_NP7: 8.282163410003452e-13 - syst_JER_NP8: 0.0006384259628179293 - syst_JES_EtaIntercalibration_Modelling: 0.028079264591509515 - syst_JES_EtaIntercalibration_NonClosure: 0.008361179522053093 + syst_JER_NP0: 4.10793899e-03 + syst_JER_NP1: 5.23810681e-03 + syst_JER_NP2: 1.03464200e-03 + syst_JER_NP3: 1.14189915e-03 + syst_JER_NP4: 1.04929478e-03 + syst_JER_NP5: 9.67529584e-06 + syst_JER_NP6: 2.20525934e-08 + syst_JER_NP7: 8.28216341e-13 + syst_JER_NP8: 6.38425963e-04 + syst_JES_EtaIntercalibration_Modelling: 2.80792646e-02 + syst_JES_EtaIntercalibration_NonClosure: 8.36117952e-03 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 2.285441040587134e-16 + syst_JES_EtaIntercalibration_Stat100: 2.28544104e-16 syst_JES_EtaIntercalibration_Stat101: 0.0 - syst_JES_EtaIntercalibration_Stat102: 4.599886750779849e-11 - syst_JES_EtaIntercalibration_Stat103: 3.0915862298017824e-07 - syst_JES_EtaIntercalibration_Stat104: 1.5923687167471606e-05 - syst_JES_EtaIntercalibration_Stat105: 4.0930549715340996e-09 - syst_JES_EtaIntercalibration_Stat106: 4.657337594323606e-13 + syst_JES_EtaIntercalibration_Stat102: 4.59988675e-11 + syst_JES_EtaIntercalibration_Stat103: 3.09158623e-07 + syst_JES_EtaIntercalibration_Stat104: 1.59236872e-05 + syst_JES_EtaIntercalibration_Stat105: 4.09305497e-09 + syst_JES_EtaIntercalibration_Stat106: 4.65733759e-13 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 3.981504615092139e-11 + syst_JES_EtaIntercalibration_Stat109: 3.98150462e-11 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 3.457493709321826e-06 - syst_JES_EtaIntercalibration_Stat111: 3.174260386294735e-06 - syst_JES_EtaIntercalibration_Stat112: 2.5318168871385623e-06 - syst_JES_EtaIntercalibration_Stat113: 1.1106258190767943e-08 - syst_JES_EtaIntercalibration_Stat114: 2.472502527804572e-12 + syst_JES_EtaIntercalibration_Stat110: 3.45749371e-06 + syst_JES_EtaIntercalibration_Stat111: 3.17426039e-06 + syst_JES_EtaIntercalibration_Stat112: 2.53181689e-06 + syst_JES_EtaIntercalibration_Stat113: 1.11062582e-08 + syst_JES_EtaIntercalibration_Stat114: 2.47250253e-12 syst_JES_EtaIntercalibration_Stat115: 0.0 - syst_JES_EtaIntercalibration_Stat116: 3.6840720676990024e-11 - syst_JES_EtaIntercalibration_Stat117: 3.939549561815411e-11 - syst_JES_EtaIntercalibration_Stat118: 2.285441040587134e-16 - syst_JES_EtaIntercalibration_Stat119: 2.285441040587134e-16 + syst_JES_EtaIntercalibration_Stat116: 3.68407207e-11 + syst_JES_EtaIntercalibration_Stat117: 3.93954956e-11 + syst_JES_EtaIntercalibration_Stat118: 2.28544104e-16 + syst_JES_EtaIntercalibration_Stat119: 2.28544104e-16 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 2.285441040587134e-16 - syst_JES_EtaIntercalibration_Stat121: 5.24638189612613e-14 - syst_JES_EtaIntercalibration_Stat122: 3.0424134642582685e-07 - syst_JES_EtaIntercalibration_Stat123: 1.6769240179790497e-05 - syst_JES_EtaIntercalibration_Stat124: 4.748547641911157e-06 - syst_JES_EtaIntercalibration_Stat125: 1.092975498353005e-06 - syst_JES_EtaIntercalibration_Stat126: 5.88280161864226e-10 + syst_JES_EtaIntercalibration_Stat120: 2.28544104e-16 + syst_JES_EtaIntercalibration_Stat121: 5.24638190e-14 + syst_JES_EtaIntercalibration_Stat122: 3.04241346e-07 + syst_JES_EtaIntercalibration_Stat123: 1.67692402e-05 + syst_JES_EtaIntercalibration_Stat124: 4.74854764e-06 + syst_JES_EtaIntercalibration_Stat125: 1.09297550e-06 + syst_JES_EtaIntercalibration_Stat126: 5.88280162e-10 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 7.195061292303215e-07 - syst_JES_EtaIntercalibration_Stat129: 3.1300488814074447e-06 + syst_JES_EtaIntercalibration_Stat128: 7.19506129e-07 + syst_JES_EtaIntercalibration_Stat129: 3.13004888e-06 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 7.376077730576054e-05 - syst_JES_EtaIntercalibration_Stat131: 7.660080292007388e-06 - syst_JES_EtaIntercalibration_Stat132: 2.218547639785993e-06 - syst_JES_EtaIntercalibration_Stat133: 4.6141354333361316e-09 + syst_JES_EtaIntercalibration_Stat130: 7.37607773e-05 + syst_JES_EtaIntercalibration_Stat131: 7.66008029e-06 + syst_JES_EtaIntercalibration_Stat132: 2.21854764e-06 + syst_JES_EtaIntercalibration_Stat133: 4.61413543e-09 syst_JES_EtaIntercalibration_Stat134: 0.0 - syst_JES_EtaIntercalibration_Stat135: 3.6840720676990024e-11 - syst_JES_EtaIntercalibration_Stat136: 3.6840720676990024e-11 - syst_JES_EtaIntercalibration_Stat137: 2.285441040587134e-16 - syst_JES_EtaIntercalibration_Stat138: 2.285441040587134e-16 - syst_JES_EtaIntercalibration_Stat139: 2.285441040587134e-16 + syst_JES_EtaIntercalibration_Stat135: 3.68407207e-11 + syst_JES_EtaIntercalibration_Stat136: 3.68407207e-11 + syst_JES_EtaIntercalibration_Stat137: 2.28544104e-16 + syst_JES_EtaIntercalibration_Stat138: 2.28544104e-16 + syst_JES_EtaIntercalibration_Stat139: 2.28544104e-16 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 3.7334355157147146e-14 - syst_JES_EtaIntercalibration_Stat141: 1.5493637750702704e-05 - syst_JES_EtaIntercalibration_Stat142: 2.0915306852876915e-05 - syst_JES_EtaIntercalibration_Stat143: 6.2244459608868e-05 - syst_JES_EtaIntercalibration_Stat144: 4.036138291424118e-05 - syst_JES_EtaIntercalibration_Stat145: 1.2821925415911605e-09 - syst_JES_EtaIntercalibration_Stat146: 2.603575946174799e-06 - syst_JES_EtaIntercalibration_Stat147: 2.670844576159384e-06 - syst_JES_EtaIntercalibration_Stat148: 8.655082614857006e-05 - syst_JES_EtaIntercalibration_Stat149: 1.0048216820909072e-05 + syst_JES_EtaIntercalibration_Stat140: 3.73343552e-14 + syst_JES_EtaIntercalibration_Stat141: 1.54936378e-05 + syst_JES_EtaIntercalibration_Stat142: 2.09153069e-05 + syst_JES_EtaIntercalibration_Stat143: 6.22444596e-05 + syst_JES_EtaIntercalibration_Stat144: 4.03613829e-05 + syst_JES_EtaIntercalibration_Stat145: 1.28219254e-09 + syst_JES_EtaIntercalibration_Stat146: 2.60357595e-06 + syst_JES_EtaIntercalibration_Stat147: 2.67084458e-06 + syst_JES_EtaIntercalibration_Stat148: 8.65508261e-05 + syst_JES_EtaIntercalibration_Stat149: 1.00482168e-05 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 2.425959902198509e-06 - syst_JES_EtaIntercalibration_Stat151: 2.067120206368154e-08 + syst_JES_EtaIntercalibration_Stat150: 2.42595990e-06 + syst_JES_EtaIntercalibration_Stat151: 2.06712021e-08 syst_JES_EtaIntercalibration_Stat152: 0.0 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 2.285441040587134e-16 + syst_JES_EtaIntercalibration_Stat156: 2.28544104e-16 syst_JES_EtaIntercalibration_Stat157: 0.0 syst_JES_EtaIntercalibration_Stat158: 0.0 - syst_JES_EtaIntercalibration_Stat159: 1.586150359541932e-05 - syst_JES_EtaIntercalibration_Stat16: 2.886462670168345e-07 - syst_JES_EtaIntercalibration_Stat160: 1.380255826830664e-05 - syst_JES_EtaIntercalibration_Stat161: 8.730260978344231e-05 - syst_JES_EtaIntercalibration_Stat162: 2.145001864801054e-05 - syst_JES_EtaIntercalibration_Stat163: 2.762913365905634e-07 - syst_JES_EtaIntercalibration_Stat164: 4.152212994295933e-06 - syst_JES_EtaIntercalibration_Stat165: 9.83954525117904e-05 - syst_JES_EtaIntercalibration_Stat166: 0.0002337500106951869 - syst_JES_EtaIntercalibration_Stat167: 9.33254354396485e-05 - syst_JES_EtaIntercalibration_Stat168: 2.199697753669808e-05 - syst_JES_EtaIntercalibration_Stat169: 2.067120206368154e-08 - syst_JES_EtaIntercalibration_Stat17: 4.2674471443869144e-13 + syst_JES_EtaIntercalibration_Stat159: 1.58615036e-05 + syst_JES_EtaIntercalibration_Stat16: 2.88646267e-07 + syst_JES_EtaIntercalibration_Stat160: 1.38025583e-05 + syst_JES_EtaIntercalibration_Stat161: 8.73026098e-05 + syst_JES_EtaIntercalibration_Stat162: 2.14500186e-05 + syst_JES_EtaIntercalibration_Stat163: 2.76291337e-07 + syst_JES_EtaIntercalibration_Stat164: 4.15221299e-06 + syst_JES_EtaIntercalibration_Stat165: 9.83954525e-05 + syst_JES_EtaIntercalibration_Stat166: 2.33750011e-04 + syst_JES_EtaIntercalibration_Stat167: 9.33254354e-05 + syst_JES_EtaIntercalibration_Stat168: 2.19969775e-05 + syst_JES_EtaIntercalibration_Stat169: 2.06712021e-08 + syst_JES_EtaIntercalibration_Stat17: 4.26744714e-13 syst_JES_EtaIntercalibration_Stat170: 0.0 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 syst_JES_EtaIntercalibration_Stat175: 0.0 - syst_JES_EtaIntercalibration_Stat176: 3.064863903993128e-09 - syst_JES_EtaIntercalibration_Stat177: 1.9722149155391253e-05 - syst_JES_EtaIntercalibration_Stat178: 7.393014067347635e-05 - syst_JES_EtaIntercalibration_Stat179: 0.0002459162662371076 - syst_JES_EtaIntercalibration_Stat18: 8.944862254389388e-17 - syst_JES_EtaIntercalibration_Stat180: 0.00015461336835797867 - syst_JES_EtaIntercalibration_Stat181: 8.996298280404001e-06 - syst_JES_EtaIntercalibration_Stat182: 0.0007288366535102361 - syst_JES_EtaIntercalibration_Stat183: 0.0013112000076266016 - syst_JES_EtaIntercalibration_Stat184: 0.00046286357331291476 - syst_JES_EtaIntercalibration_Stat185: 3.378688135948626e-05 - syst_JES_EtaIntercalibration_Stat186: 2.067202638833455e-08 + syst_JES_EtaIntercalibration_Stat176: 3.06486390e-09 + syst_JES_EtaIntercalibration_Stat177: 1.97221492e-05 + syst_JES_EtaIntercalibration_Stat178: 7.39301407e-05 + syst_JES_EtaIntercalibration_Stat179: 2.45916266e-04 + syst_JES_EtaIntercalibration_Stat18: 8.94486225e-17 + syst_JES_EtaIntercalibration_Stat180: 1.54613368e-04 + syst_JES_EtaIntercalibration_Stat181: 8.99629828e-06 + syst_JES_EtaIntercalibration_Stat182: 7.28836654e-04 + syst_JES_EtaIntercalibration_Stat183: 1.31120001e-03 + syst_JES_EtaIntercalibration_Stat184: 4.62863573e-04 + syst_JES_EtaIntercalibration_Stat185: 3.37868814e-05 + syst_JES_EtaIntercalibration_Stat186: 2.06720264e-08 syst_JES_EtaIntercalibration_Stat187: 0.0 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 @@ -49321,31 +49321,31 @@ bins: syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 syst_JES_EtaIntercalibration_Stat192: 0.0 - syst_JES_EtaIntercalibration_Stat193: 3.267433726213892e-07 - syst_JES_EtaIntercalibration_Stat194: 5.212041730454583e-05 - syst_JES_EtaIntercalibration_Stat195: 0.0005155196674230771 - syst_JES_EtaIntercalibration_Stat196: 0.0009999010000995101 - syst_JES_EtaIntercalibration_Stat197: 0.0005867296736999076 - syst_JES_EtaIntercalibration_Stat198: 0.0019055295195824179 - syst_JES_EtaIntercalibration_Stat199: 0.000800786432202744 + syst_JES_EtaIntercalibration_Stat193: 3.26743373e-07 + syst_JES_EtaIntercalibration_Stat194: 5.21204173e-05 + syst_JES_EtaIntercalibration_Stat195: 5.15519667e-04 + syst_JES_EtaIntercalibration_Stat196: 9.99901000e-04 + syst_JES_EtaIntercalibration_Stat197: 5.86729674e-04 + syst_JES_EtaIntercalibration_Stat198: 1.90552952e-03 + syst_JES_EtaIntercalibration_Stat199: 8.00786432e-04 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 3.4878219564650946e-05 - syst_JES_EtaIntercalibration_Stat201: 2.067202638833455e-08 + syst_JES_EtaIntercalibration_Stat200: 3.48782196e-05 + syst_JES_EtaIntercalibration_Stat201: 2.06720264e-08 syst_JES_EtaIntercalibration_Stat202: 0.0 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 syst_JES_EtaIntercalibration_Stat207: 0.0 - syst_JES_EtaIntercalibration_Stat208: 3.236336933942447e-07 - syst_JES_EtaIntercalibration_Stat209: 6.707900416672865e-05 + syst_JES_EtaIntercalibration_Stat208: 3.23633693e-07 + syst_JES_EtaIntercalibration_Stat209: 6.70790042e-05 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 0.0006893658172552508 - syst_JES_EtaIntercalibration_Stat211: 0.0019480513340258774 - syst_JES_EtaIntercalibration_Stat212: 0.0003105898702469222 - syst_JES_EtaIntercalibration_Stat213: 4.654213167729535e-05 - syst_JES_EtaIntercalibration_Stat214: 2.067202638833455e-08 + syst_JES_EtaIntercalibration_Stat210: 6.89365817e-04 + syst_JES_EtaIntercalibration_Stat211: 1.94805133e-03 + syst_JES_EtaIntercalibration_Stat212: 3.10589870e-04 + syst_JES_EtaIntercalibration_Stat213: 4.65421317e-05 + syst_JES_EtaIntercalibration_Stat214: 2.06720264e-08 syst_JES_EtaIntercalibration_Stat215: 0.0 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 @@ -49353,11 +49353,11 @@ bins: syst_JES_EtaIntercalibration_Stat219: 0.0 syst_JES_EtaIntercalibration_Stat22: 0.0 syst_JES_EtaIntercalibration_Stat220: 0.0 - syst_JES_EtaIntercalibration_Stat221: 6.877107731452227e-07 - syst_JES_EtaIntercalibration_Stat222: 2.066185980859419e-05 - syst_JES_EtaIntercalibration_Stat223: 0.0003524584230799428 - syst_JES_EtaIntercalibration_Stat224: 0.00011375744467157962 - syst_JES_EtaIntercalibration_Stat225: 2.2848315211411103e-05 + syst_JES_EtaIntercalibration_Stat221: 6.87710773e-07 + syst_JES_EtaIntercalibration_Stat222: 2.06618598e-05 + syst_JES_EtaIntercalibration_Stat223: 3.52458423e-04 + syst_JES_EtaIntercalibration_Stat224: 1.13757445e-04 + syst_JES_EtaIntercalibration_Stat225: 2.28483152e-05 syst_JES_EtaIntercalibration_Stat226: 0.0 syst_JES_EtaIntercalibration_Stat227: 0.0 syst_JES_EtaIntercalibration_Stat228: 0.0 @@ -49366,291 +49366,291 @@ bins: syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 syst_JES_EtaIntercalibration_Stat232: 0.0 - syst_JES_EtaIntercalibration_Stat233: 6.877107731452227e-07 - syst_JES_EtaIntercalibration_Stat234: 1.1886198666941421e-05 - syst_JES_EtaIntercalibration_Stat235: 0.0001038117348858018 - syst_JES_EtaIntercalibration_Stat236: 2.8115497296108776e-06 + syst_JES_EtaIntercalibration_Stat233: 6.87710773e-07 + syst_JES_EtaIntercalibration_Stat234: 1.18861987e-05 + syst_JES_EtaIntercalibration_Stat235: 1.03811735e-04 + syst_JES_EtaIntercalibration_Stat236: 2.81154973e-06 syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 syst_JES_EtaIntercalibration_Stat239: 0.0 - syst_JES_EtaIntercalibration_Stat24: 3.472761869175599e-16 + syst_JES_EtaIntercalibration_Stat24: 3.47276187e-16 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 syst_JES_EtaIntercalibration_Stat243: 0.0 - syst_JES_EtaIntercalibration_Stat244: 6.877107731452227e-07 - syst_JES_EtaIntercalibration_Stat245: 2.1110449278733978e-07 - syst_JES_EtaIntercalibration_Stat25: 6.89584962133021e-14 - syst_JES_EtaIntercalibration_Stat26: 1.529400758149936e-06 - syst_JES_EtaIntercalibration_Stat27: 4.6011111078653296e-09 - syst_JES_EtaIntercalibration_Stat28: 1.2589108038983541e-14 + syst_JES_EtaIntercalibration_Stat244: 6.87710773e-07 + syst_JES_EtaIntercalibration_Stat245: 2.11104493e-07 + syst_JES_EtaIntercalibration_Stat25: 6.89584962e-14 + syst_JES_EtaIntercalibration_Stat26: 1.52940076e-06 + syst_JES_EtaIntercalibration_Stat27: 4.60111111e-09 + syst_JES_EtaIntercalibration_Stat28: 1.25891080e-14 syst_JES_EtaIntercalibration_Stat29: 0.0 - syst_JES_EtaIntercalibration_Stat3: 3.3071787111524533e-15 + syst_JES_EtaIntercalibration_Stat3: 3.30717871e-15 syst_JES_EtaIntercalibration_Stat30: 0.0 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 4.488609667814745e-14 - syst_JES_EtaIntercalibration_Stat36: 4.488609667814745e-14 - syst_JES_EtaIntercalibration_Stat37: 5.909335731298401e-14 - syst_JES_EtaIntercalibration_Stat38: 2.8881926270004026e-07 - syst_JES_EtaIntercalibration_Stat39: 2.898584241339522e-07 - syst_JES_EtaIntercalibration_Stat4: 1.976269990217294e-08 - syst_JES_EtaIntercalibration_Stat40: 5.829329866073801e-13 + syst_JES_EtaIntercalibration_Stat35: 4.48860967e-14 + syst_JES_EtaIntercalibration_Stat36: 4.48860967e-14 + syst_JES_EtaIntercalibration_Stat37: 5.90933573e-14 + syst_JES_EtaIntercalibration_Stat38: 2.88819263e-07 + syst_JES_EtaIntercalibration_Stat39: 2.89858424e-07 + syst_JES_EtaIntercalibration_Stat4: 1.97626999e-08 + syst_JES_EtaIntercalibration_Stat40: 5.82932987e-13 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 syst_JES_EtaIntercalibration_Stat44: 0.0 syst_JES_EtaIntercalibration_Stat45: 0.0 - syst_JES_EtaIntercalibration_Stat46: 4.397756473475993e-15 - syst_JES_EtaIntercalibration_Stat47: 1.038895599904052e-12 - syst_JES_EtaIntercalibration_Stat48: 1.8195138048759284e-06 - syst_JES_EtaIntercalibration_Stat49: 4.593319269761574e-09 - syst_JES_EtaIntercalibration_Stat5: 1.976269973597111e-08 - syst_JES_EtaIntercalibration_Stat50: 5.717847912457973e-14 + syst_JES_EtaIntercalibration_Stat46: 4.39775647e-15 + syst_JES_EtaIntercalibration_Stat47: 1.03889560e-12 + syst_JES_EtaIntercalibration_Stat48: 1.81951380e-06 + syst_JES_EtaIntercalibration_Stat49: 4.59331927e-09 + syst_JES_EtaIntercalibration_Stat5: 1.97626997e-08 + syst_JES_EtaIntercalibration_Stat50: 5.71784791e-14 syst_JES_EtaIntercalibration_Stat51: 0.0 syst_JES_EtaIntercalibration_Stat52: 0.0 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 2.285441040587134e-16 - syst_JES_EtaIntercalibration_Stat57: 4.488609667814745e-14 - syst_JES_EtaIntercalibration_Stat58: 4.488609667814745e-14 - syst_JES_EtaIntercalibration_Stat59: 7.123069435819084e-14 + syst_JES_EtaIntercalibration_Stat56: 2.28544104e-16 + syst_JES_EtaIntercalibration_Stat57: 4.48860967e-14 + syst_JES_EtaIntercalibration_Stat58: 4.48860967e-14 + syst_JES_EtaIntercalibration_Stat59: 7.12306944e-14 syst_JES_EtaIntercalibration_Stat6: 0.0 - syst_JES_EtaIntercalibration_Stat60: 2.8959929620598183e-07 - syst_JES_EtaIntercalibration_Stat61: 2.897164770650782e-07 - syst_JES_EtaIntercalibration_Stat62: 2.5706553308446466e-12 - syst_JES_EtaIntercalibration_Stat63: 9.188439851264197e-16 + syst_JES_EtaIntercalibration_Stat60: 2.89599296e-07 + syst_JES_EtaIntercalibration_Stat61: 2.89716477e-07 + syst_JES_EtaIntercalibration_Stat62: 2.57065533e-12 + syst_JES_EtaIntercalibration_Stat63: 9.18843985e-16 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 4.140674582721999e-14 - syst_JES_EtaIntercalibration_Stat69: 2.6234961406512493e-06 + syst_JES_EtaIntercalibration_Stat68: 4.14067458e-14 + syst_JES_EtaIntercalibration_Stat69: 2.62349614e-06 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 2.934028556013046e-06 - syst_JES_EtaIntercalibration_Stat71: 1.6098873949244673e-06 - syst_JES_EtaIntercalibration_Stat72: 4.588988137672299e-09 + syst_JES_EtaIntercalibration_Stat70: 2.93402856e-06 + syst_JES_EtaIntercalibration_Stat71: 1.60988739e-06 + syst_JES_EtaIntercalibration_Stat72: 4.58898814e-09 syst_JES_EtaIntercalibration_Stat73: 0.0 syst_JES_EtaIntercalibration_Stat74: 0.0 syst_JES_EtaIntercalibration_Stat75: 0.0 - syst_JES_EtaIntercalibration_Stat76: 5.018617214930822e-15 - syst_JES_EtaIntercalibration_Stat77: 2.285441040587134e-16 - syst_JES_EtaIntercalibration_Stat78: 2.285441040587134e-16 - syst_JES_EtaIntercalibration_Stat79: 4.488609667814745e-14 + syst_JES_EtaIntercalibration_Stat76: 5.01861721e-15 + syst_JES_EtaIntercalibration_Stat77: 2.28544104e-16 + syst_JES_EtaIntercalibration_Stat78: 2.28544104e-16 + syst_JES_EtaIntercalibration_Stat79: 4.48860967e-14 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 4.4444423722217396e-14 - syst_JES_EtaIntercalibration_Stat81: 5.135727285399801e-13 - syst_JES_EtaIntercalibration_Stat82: 3.0760906288339424e-07 - syst_JES_EtaIntercalibration_Stat83: 4.5505655165045146e-07 - syst_JES_EtaIntercalibration_Stat84: 8.522799232059852e-10 - syst_JES_EtaIntercalibration_Stat85: 3.682390553363399e-15 + syst_JES_EtaIntercalibration_Stat80: 4.44444237e-14 + syst_JES_EtaIntercalibration_Stat81: 5.13572729e-13 + syst_JES_EtaIntercalibration_Stat82: 3.07609063e-07 + syst_JES_EtaIntercalibration_Stat83: 4.55056552e-07 + syst_JES_EtaIntercalibration_Stat84: 8.52279923e-10 + syst_JES_EtaIntercalibration_Stat85: 3.68239055e-15 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 6.563387768523203e-14 + syst_JES_EtaIntercalibration_Stat89: 6.56338777e-14 syst_JES_EtaIntercalibration_Stat9: 0.0 - syst_JES_EtaIntercalibration_Stat90: 2.991343087561171e-06 - syst_JES_EtaIntercalibration_Stat91: 3.0804939031752685e-06 - syst_JES_EtaIntercalibration_Stat92: 2.340773185829845e-08 - syst_JES_EtaIntercalibration_Stat93: 4.740504484437018e-09 + syst_JES_EtaIntercalibration_Stat90: 2.99134309e-06 + syst_JES_EtaIntercalibration_Stat91: 3.08049390e-06 + syst_JES_EtaIntercalibration_Stat92: 2.34077319e-08 + syst_JES_EtaIntercalibration_Stat93: 4.74050448e-09 syst_JES_EtaIntercalibration_Stat94: 0.0 syst_JES_EtaIntercalibration_Stat95: 0.0 - syst_JES_EtaIntercalibration_Stat96: 3.939549561815411e-11 - syst_JES_EtaIntercalibration_Stat97: 5.018617214930822e-15 - syst_JES_EtaIntercalibration_Stat98: 2.285441040587134e-16 - syst_JES_EtaIntercalibration_Stat99: 2.285441040587134e-16 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0035750044755216742 - syst_JES_Flavour_Comp: 0.009990090089683875 - syst_JES_Flavour_Response: 0.003161446939298523 - syst_JES_Gjet_Generator: 0.01689191818592548 - syst_JES_Gjet_OOC: 0.013263694847213578 - syst_JES_Gjet_Purity: 0.0038644439121301786 - syst_JES_Gjet_Stat1: 6.077407025940033e-06 - syst_JES_Gjet_Stat10: 0.00035327726717126876 - syst_JES_Gjet_Stat11: 0.0004681232636816932 - syst_JES_Gjet_Stat12: 0.0019199845702505007 - syst_JES_Gjet_Stat13: 0.003898606770373232 - syst_JES_Gjet_Stat14: 0.003232289088246904 - syst_JES_Gjet_Stat15: 0.0005341606008495947 - syst_JES_Gjet_Stat2: 4.497339467993783e-06 - syst_JES_Gjet_Stat3: 2.1168808720256393e-10 - syst_JES_Gjet_Stat4: 1.7545674724926625e-05 - syst_JES_Gjet_Stat5: 2.4655743306537953e-05 - syst_JES_Gjet_Stat6: 9.8083825511651e-05 - syst_JES_Gjet_Stat7: 0.00011247311545431648 - syst_JES_Gjet_Stat8: 7.875620124274342e-05 - syst_JES_Gjet_Stat9: 0.00020061452788868508 - syst_JES_Gjet_Veto: 0.010846126220914082 - syst_JES_Gjet_dPhi: 0.0011555017990033593 - syst_JES_LArESZee: 0.025218760873603606 - syst_JES_LArEsmear: 0.002107094385641042 - syst_JES_LAr_JVT: 0.002583303505204141 - syst_JES_MJB_Alpha: 0.00014185496113989105 - syst_JES_MJB_Asym: 0.0011315570809729398 - syst_JES_MJB_Beta: 2.6994011835960952e-05 - syst_JES_MJB_Fragmentation: 0.0028073216328023407 - syst_JES_MJB_Stat1: 6.314191218992343e-05 - syst_JES_MJB_Stat10: 1.3102964359258558e-25 - syst_JES_MJB_Stat11: 1.965011641186891e-06 + syst_JES_EtaIntercalibration_Stat96: 3.93954956e-11 + syst_JES_EtaIntercalibration_Stat97: 5.01861721e-15 + syst_JES_EtaIntercalibration_Stat98: 2.28544104e-16 + syst_JES_EtaIntercalibration_Stat99: 2.28544104e-16 + syst_JES_EtaIntercalibration_TotalStat_MJB: 3.57500448e-03 + syst_JES_Flavour_Comp: 9.99009009e-03 + syst_JES_Flavour_Response: 3.16144694e-03 + syst_JES_Gjet_Generator: 1.68919182e-02 + syst_JES_Gjet_OOC: 1.32636948e-02 + syst_JES_Gjet_Purity: 3.86444391e-03 + syst_JES_Gjet_Stat1: 6.07740703e-06 + syst_JES_Gjet_Stat10: 3.53277267e-04 + syst_JES_Gjet_Stat11: 4.68123264e-04 + syst_JES_Gjet_Stat12: 1.91998457e-03 + syst_JES_Gjet_Stat13: 3.89860677e-03 + syst_JES_Gjet_Stat14: 3.23228909e-03 + syst_JES_Gjet_Stat15: 5.34160601e-04 + syst_JES_Gjet_Stat2: 4.49733947e-06 + syst_JES_Gjet_Stat3: 2.11688087e-10 + syst_JES_Gjet_Stat4: 1.75456747e-05 + syst_JES_Gjet_Stat5: 2.46557433e-05 + syst_JES_Gjet_Stat6: 9.80838255e-05 + syst_JES_Gjet_Stat7: 1.12473115e-04 + syst_JES_Gjet_Stat8: 7.87562012e-05 + syst_JES_Gjet_Stat9: 2.00614528e-04 + syst_JES_Gjet_Veto: 1.08461262e-02 + syst_JES_Gjet_dPhi: 1.15550180e-03 + syst_JES_LArESZee: 2.52187609e-02 + syst_JES_LArEsmear: 2.10709439e-03 + syst_JES_LAr_JVT: 2.58330351e-03 + syst_JES_MJB_Alpha: 1.41854961e-04 + syst_JES_MJB_Asym: 1.13155708e-03 + syst_JES_MJB_Beta: 2.69940118e-05 + syst_JES_MJB_Fragmentation: 2.80732163e-03 + syst_JES_MJB_Stat1: 6.31419122e-05 + syst_JES_MJB_Stat10: 1.31029644e-25 + syst_JES_MJB_Stat11: 1.96501164e-06 syst_JES_MJB_Stat12: 0.0 syst_JES_MJB_Stat13: 0.0 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 - syst_JES_MJB_Stat16: 3.326316973395651e-10 - syst_JES_MJB_Stat2: 0.0001199414289174095 - syst_JES_MJB_Stat3: 0.00020522899405298463 - syst_JES_MJB_Stat4: 0.00012245599209511964 - syst_JES_MJB_Stat5: 3.122887606022529e-05 - syst_JES_MJB_Stat6: 7.256580376975094e-16 - syst_JES_MJB_Stat7: 5.5486247620466887e-05 - syst_JES_MJB_Stat8: 6.562740507013375e-18 - syst_JES_MJB_Stat9: 7.747463250679716e-18 - syst_JES_MJB_Threshold: 0.0014200450697072963 - syst_JES_Pileup_MuOffset: 0.0028362910199766175 - syst_JES_Pileup_NPVOffset: 0.0027377894367536736 - syst_JES_Pileup_Pt_term: 0.0038113214243881348 - syst_JES_Pileup_Rho_topology: 0.005110689459358687 - syst_JES_PunchThrough_MC15: 0.0007208865791509785 + syst_JES_MJB_Stat16: 3.32631697e-10 + syst_JES_MJB_Stat2: 1.19941429e-04 + syst_JES_MJB_Stat3: 2.05228994e-04 + syst_JES_MJB_Stat4: 1.22455992e-04 + syst_JES_MJB_Stat5: 3.12288761e-05 + syst_JES_MJB_Stat6: 7.25658038e-16 + syst_JES_MJB_Stat7: 5.54862476e-05 + syst_JES_MJB_Stat8: 6.56274051e-18 + syst_JES_MJB_Stat9: 7.74746325e-18 + syst_JES_MJB_Threshold: 1.42004507e-03 + syst_JES_Pileup_MuOffset: 2.83629102e-03 + syst_JES_Pileup_NPVOffset: 2.73778944e-03 + syst_JES_Pileup_Pt_term: 3.81132142e-03 + syst_JES_Pileup_Rho_topology: 5.11068946e-03 + syst_JES_PunchThrough_MC15: 7.20886579e-04 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.010412744919088338 - syst_JES_Zjet_MuScale: 0.000606712607005986 - syst_JES_Zjet_MuSmearID: 0.00013027543762352133 - syst_JES_Zjet_MuSmearMS: 0.003064787268310804 - syst_JES_Zjet_OOC: 0.00478200823399542 - syst_JES_Zjet_Stat1: 0.00015917546917474385 - syst_JES_Zjet_Stat10: 0.0003329002553318336 - syst_JES_Zjet_Stat11: 0.0003599144481678945 - syst_JES_Zjet_Stat12: 0.0022398256628586074 - syst_JES_Zjet_Stat13: 0.003249330238679965 - syst_JES_Zjet_Stat2: 5.26473558215415e-06 - syst_JES_Zjet_Stat3: 7.038188456556133e-05 - syst_JES_Zjet_Stat4: 6.84584623841348e-14 - syst_JES_Zjet_Stat5: 9.699329603122063e-14 - syst_JES_Zjet_Stat6: 9.121855261266756e-05 - syst_JES_Zjet_Stat7: 8.193237765377007e-08 - syst_JES_Zjet_Stat8: 1.96033485659976e-05 - syst_JES_Zjet_Stat9: 0.00015446043789592206 - syst_JES_Zjet_Veto: 0.001026756858998273 - syst_JES_Zjet_dPhi: 0.0007709998832684736 - syst_PRW: 3.245e-19 - syst_Unfolding_bias: 1.747e-29 - syst_cleaning: 0.003346841775465342 + syst_JES_Zjet_MC: 1.04127449e-02 + syst_JES_Zjet_MuScale: 6.06712607e-04 + syst_JES_Zjet_MuSmearID: 1.30275438e-04 + syst_JES_Zjet_MuSmearMS: 3.06478727e-03 + syst_JES_Zjet_OOC: 4.78200823e-03 + syst_JES_Zjet_Stat1: 1.59175469e-04 + syst_JES_Zjet_Stat10: 3.32900255e-04 + syst_JES_Zjet_Stat11: 3.59914448e-04 + syst_JES_Zjet_Stat12: 2.23982566e-03 + syst_JES_Zjet_Stat13: 3.24933024e-03 + syst_JES_Zjet_Stat2: 5.26473558e-06 + syst_JES_Zjet_Stat3: 7.03818846e-05 + syst_JES_Zjet_Stat4: 6.84584624e-14 + syst_JES_Zjet_Stat5: 9.69932960e-14 + syst_JES_Zjet_Stat6: 9.12185526e-05 + syst_JES_Zjet_Stat7: 8.19323777e-08 + syst_JES_Zjet_Stat8: 1.96033486e-05 + syst_JES_Zjet_Stat9: 1.54460438e-04 + syst_JES_Zjet_Veto: 1.02675686e-03 + syst_JES_Zjet_dPhi: 7.70999883e-04 + syst_PRW: 3.24500000e-19 + syst_Unfolding_bias: 1.74700000e-29 + syst_cleaning: 3.34684178e-03 syst_lumi: 0.012661 -- stat: 0.0031704 +- stat: 3.17040000e-03 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.0022592131373555704 - syst_JER_NP1: 0.003064019255814167 - syst_JER_NP2: 0.0005862127544199771 - syst_JER_NP3: 0.0005669105072231419 - syst_JER_NP4: 0.0005088922552957551 - syst_JER_NP5: 1.3764189718352475e-06 - syst_JER_NP6: 2.4096429196044796e-09 - syst_JER_NP7: 1.1178379220620492e-13 - syst_JER_NP8: 0.0003293515295243063 - syst_JES_EtaIntercalibration_Modelling: 0.016017118186490355 - syst_JES_EtaIntercalibration_NonClosure: 0.007199313213772547 + syst_JER_NP0: 2.25921314e-03 + syst_JER_NP1: 3.06401926e-03 + syst_JER_NP2: 5.86212754e-04 + syst_JER_NP3: 5.66910507e-04 + syst_JER_NP4: 5.08892255e-04 + syst_JER_NP5: 1.37641897e-06 + syst_JER_NP6: 2.40964292e-09 + syst_JER_NP7: 1.11783792e-13 + syst_JER_NP8: 3.29351530e-04 + syst_JES_EtaIntercalibration_Modelling: 1.60171182e-02 + syst_JES_EtaIntercalibration_NonClosure: 7.19931321e-03 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 3.970726476351652e-17 + syst_JES_EtaIntercalibration_Stat100: 3.97072648e-17 syst_JES_EtaIntercalibration_Stat101: 0.0 - syst_JES_EtaIntercalibration_Stat102: 5.024319512879331e-12 - syst_JES_EtaIntercalibration_Stat103: 8.898832431059425e-07 - syst_JES_EtaIntercalibration_Stat104: 8.121931394736106e-06 - syst_JES_EtaIntercalibration_Stat105: 5.386999419899728e-10 - syst_JES_EtaIntercalibration_Stat106: 5.2577047539777276e-14 + syst_JES_EtaIntercalibration_Stat102: 5.02431951e-12 + syst_JES_EtaIntercalibration_Stat103: 8.89883243e-07 + syst_JES_EtaIntercalibration_Stat104: 8.12193139e-06 + syst_JES_EtaIntercalibration_Stat105: 5.38699942e-10 + syst_JES_EtaIntercalibration_Stat106: 5.25770475e-14 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 4.331473738809921e-12 + syst_JES_EtaIntercalibration_Stat109: 4.33147374e-12 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 1.4166843923400863e-06 - syst_JES_EtaIntercalibration_Stat111: 1.4703425204692952e-06 - syst_JES_EtaIntercalibration_Stat112: 2.69835313293127e-06 - syst_JES_EtaIntercalibration_Stat113: 1.4139668198016528e-09 - syst_JES_EtaIntercalibration_Stat114: 2.760022961861006e-13 + syst_JES_EtaIntercalibration_Stat110: 1.41668439e-06 + syst_JES_EtaIntercalibration_Stat111: 1.47034252e-06 + syst_JES_EtaIntercalibration_Stat112: 2.69835313e-06 + syst_JES_EtaIntercalibration_Stat113: 1.41396682e-09 + syst_JES_EtaIntercalibration_Stat114: 2.76002296e-13 syst_JES_EtaIntercalibration_Stat115: 0.0 - syst_JES_EtaIntercalibration_Stat116: 3.962932247717591e-12 - syst_JES_EtaIntercalibration_Stat117: 4.258246910408085e-12 - syst_JES_EtaIntercalibration_Stat118: 3.970726476351652e-17 - syst_JES_EtaIntercalibration_Stat119: 3.970726476351652e-17 + syst_JES_EtaIntercalibration_Stat116: 3.96293225e-12 + syst_JES_EtaIntercalibration_Stat117: 4.25824691e-12 + syst_JES_EtaIntercalibration_Stat118: 3.97072648e-17 + syst_JES_EtaIntercalibration_Stat119: 3.97072648e-17 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 3.970726476351652e-17 - syst_JES_EtaIntercalibration_Stat121: 6.1773592051944006e-15 - syst_JES_EtaIntercalibration_Stat122: 8.878619039244264e-07 - syst_JES_EtaIntercalibration_Stat123: 8.35288968680899e-06 - syst_JES_EtaIntercalibration_Stat124: 2.631159197008041e-06 - syst_JES_EtaIntercalibration_Stat125: 2.62807860755724e-07 - syst_JES_EtaIntercalibration_Stat126: 7.379731308624995e-11 + syst_JES_EtaIntercalibration_Stat120: 3.97072648e-17 + syst_JES_EtaIntercalibration_Stat121: 6.17735921e-15 + syst_JES_EtaIntercalibration_Stat122: 8.87861904e-07 + syst_JES_EtaIntercalibration_Stat123: 8.35288969e-06 + syst_JES_EtaIntercalibration_Stat124: 2.63115920e-06 + syst_JES_EtaIntercalibration_Stat125: 2.62807861e-07 + syst_JES_EtaIntercalibration_Stat126: 7.37973131e-11 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 1.7482205238470342e-07 - syst_JES_EtaIntercalibration_Stat129: 3.352296497552089e-06 + syst_JES_EtaIntercalibration_Stat128: 1.74822052e-07 + syst_JES_EtaIntercalibration_Stat129: 3.35229650e-06 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 3.420270923114133e-05 - syst_JES_EtaIntercalibration_Stat131: 4.034435152533748e-06 - syst_JES_EtaIntercalibration_Stat132: 2.4720091837764274e-06 - syst_JES_EtaIntercalibration_Stat133: 5.860440663397251e-10 + syst_JES_EtaIntercalibration_Stat130: 3.42027092e-05 + syst_JES_EtaIntercalibration_Stat131: 4.03443515e-06 + syst_JES_EtaIntercalibration_Stat132: 2.47200918e-06 + syst_JES_EtaIntercalibration_Stat133: 5.86044066e-10 syst_JES_EtaIntercalibration_Stat134: 0.0 - syst_JES_EtaIntercalibration_Stat135: 3.962932247717591e-12 - syst_JES_EtaIntercalibration_Stat136: 3.962932247717591e-12 - syst_JES_EtaIntercalibration_Stat137: 3.970726476351652e-17 - syst_JES_EtaIntercalibration_Stat138: 3.970726476351652e-17 - syst_JES_EtaIntercalibration_Stat139: 3.970726476351652e-17 + syst_JES_EtaIntercalibration_Stat135: 3.96293225e-12 + syst_JES_EtaIntercalibration_Stat136: 3.96293225e-12 + syst_JES_EtaIntercalibration_Stat137: 3.97072648e-17 + syst_JES_EtaIntercalibration_Stat138: 3.97072648e-17 + syst_JES_EtaIntercalibration_Stat139: 3.97072648e-17 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 4.18117064947127e-15 - syst_JES_EtaIntercalibration_Stat141: 8.405032716622822e-06 - syst_JES_EtaIntercalibration_Stat142: 9.034264275523493e-06 - syst_JES_EtaIntercalibration_Stat143: 2.7832605196064565e-05 - syst_JES_EtaIntercalibration_Stat144: 1.4257046082551604e-05 - syst_JES_EtaIntercalibration_Stat145: 1.5357135100906678e-10 - syst_JES_EtaIntercalibration_Stat146: 1.5840697806599306e-06 - syst_JES_EtaIntercalibration_Stat147: 3.267485511444542e-06 - syst_JES_EtaIntercalibration_Stat148: 3.951882441002009e-05 - syst_JES_EtaIntercalibration_Stat149: 4.795173073779506e-06 + syst_JES_EtaIntercalibration_Stat140: 4.18117065e-15 + syst_JES_EtaIntercalibration_Stat141: 8.40503272e-06 + syst_JES_EtaIntercalibration_Stat142: 9.03426428e-06 + syst_JES_EtaIntercalibration_Stat143: 2.78326052e-05 + syst_JES_EtaIntercalibration_Stat144: 1.42570461e-05 + syst_JES_EtaIntercalibration_Stat145: 1.53571351e-10 + syst_JES_EtaIntercalibration_Stat146: 1.58406978e-06 + syst_JES_EtaIntercalibration_Stat147: 3.26748551e-06 + syst_JES_EtaIntercalibration_Stat148: 3.95188244e-05 + syst_JES_EtaIntercalibration_Stat149: 4.79517307e-06 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 2.431851233499903e-06 - syst_JES_EtaIntercalibration_Stat151: 3.10460902498574e-09 + syst_JES_EtaIntercalibration_Stat150: 2.43185123e-06 + syst_JES_EtaIntercalibration_Stat151: 3.10460902e-09 syst_JES_EtaIntercalibration_Stat152: 0.0 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 3.970726476351652e-17 + syst_JES_EtaIntercalibration_Stat156: 3.97072648e-17 syst_JES_EtaIntercalibration_Stat157: 0.0 syst_JES_EtaIntercalibration_Stat158: 0.0 - syst_JES_EtaIntercalibration_Stat159: 7.846964827243716e-06 - syst_JES_EtaIntercalibration_Stat16: 8.831727067698384e-07 - syst_JES_EtaIntercalibration_Stat160: 3.774943594464293e-06 - syst_JES_EtaIntercalibration_Stat161: 3.3164254672764766e-05 - syst_JES_EtaIntercalibration_Stat162: 1.4109138058364867e-05 - syst_JES_EtaIntercalibration_Stat163: 4.836117052127151e-08 - syst_JES_EtaIntercalibration_Stat164: 1.1319770080703935e-06 - syst_JES_EtaIntercalibration_Stat165: 5.0519933894948836e-05 - syst_JES_EtaIntercalibration_Stat166: 0.00011281486205283414 - syst_JES_EtaIntercalibration_Stat167: 4.812870557162327e-05 - syst_JES_EtaIntercalibration_Stat168: 9.636178547536362e-06 - syst_JES_EtaIntercalibration_Stat169: 3.10460902498574e-09 - syst_JES_EtaIntercalibration_Stat17: 4.805964865859404e-14 + syst_JES_EtaIntercalibration_Stat159: 7.84696483e-06 + syst_JES_EtaIntercalibration_Stat16: 8.83172707e-07 + syst_JES_EtaIntercalibration_Stat160: 3.77494359e-06 + syst_JES_EtaIntercalibration_Stat161: 3.31642547e-05 + syst_JES_EtaIntercalibration_Stat162: 1.41091381e-05 + syst_JES_EtaIntercalibration_Stat163: 4.83611705e-08 + syst_JES_EtaIntercalibration_Stat164: 1.13197701e-06 + syst_JES_EtaIntercalibration_Stat165: 5.05199339e-05 + syst_JES_EtaIntercalibration_Stat166: 1.12814862e-04 + syst_JES_EtaIntercalibration_Stat167: 4.81287056e-05 + syst_JES_EtaIntercalibration_Stat168: 9.63617855e-06 + syst_JES_EtaIntercalibration_Stat169: 3.10460902e-09 + syst_JES_EtaIntercalibration_Stat17: 4.80596487e-14 syst_JES_EtaIntercalibration_Stat170: 0.0 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 syst_JES_EtaIntercalibration_Stat175: 0.0 - syst_JES_EtaIntercalibration_Stat176: 3.8927841900110514e-10 - syst_JES_EtaIntercalibration_Stat177: 8.474305210529061e-06 - syst_JES_EtaIntercalibration_Stat178: 3.9783944940138854e-05 - syst_JES_EtaIntercalibration_Stat179: 9.294774593824209e-05 - syst_JES_EtaIntercalibration_Stat18: 1.3530460773750464e-17 - syst_JES_EtaIntercalibration_Stat180: 7.357409394617102e-05 - syst_JES_EtaIntercalibration_Stat181: 2.253963133571621e-06 - syst_JES_EtaIntercalibration_Stat182: 0.00032996970694292526 - syst_JES_EtaIntercalibration_Stat183: 0.0006092859509294466 - syst_JES_EtaIntercalibration_Stat184: 0.00020712286208914745 - syst_JES_EtaIntercalibration_Stat185: 2.4190736672329763e-05 - syst_JES_EtaIntercalibration_Stat186: 3.1047010725672124e-09 + syst_JES_EtaIntercalibration_Stat176: 3.89278419e-10 + syst_JES_EtaIntercalibration_Stat177: 8.47430521e-06 + syst_JES_EtaIntercalibration_Stat178: 3.97839449e-05 + syst_JES_EtaIntercalibration_Stat179: 9.29477459e-05 + syst_JES_EtaIntercalibration_Stat18: 1.35304608e-17 + syst_JES_EtaIntercalibration_Stat180: 7.35740939e-05 + syst_JES_EtaIntercalibration_Stat181: 2.25396313e-06 + syst_JES_EtaIntercalibration_Stat182: 3.29969707e-04 + syst_JES_EtaIntercalibration_Stat183: 6.09285951e-04 + syst_JES_EtaIntercalibration_Stat184: 2.07122862e-04 + syst_JES_EtaIntercalibration_Stat185: 2.41907367e-05 + syst_JES_EtaIntercalibration_Stat186: 3.10470107e-09 syst_JES_EtaIntercalibration_Stat187: 0.0 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 @@ -49658,31 +49658,31 @@ bins: syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 syst_JES_EtaIntercalibration_Stat192: 0.0 - syst_JES_EtaIntercalibration_Stat193: 8.97368749566041e-07 - syst_JES_EtaIntercalibration_Stat194: 2.3397397034713073e-05 - syst_JES_EtaIntercalibration_Stat195: 0.0002112004261359337 - syst_JES_EtaIntercalibration_Stat196: 0.0004460547135722254 - syst_JES_EtaIntercalibration_Stat197: 0.00025847404124979364 - syst_JES_EtaIntercalibration_Stat198: 0.0009878589815859346 - syst_JES_EtaIntercalibration_Stat199: 0.0004095238942967797 + syst_JES_EtaIntercalibration_Stat193: 8.97368750e-07 + syst_JES_EtaIntercalibration_Stat194: 2.33973970e-05 + syst_JES_EtaIntercalibration_Stat195: 2.11200426e-04 + syst_JES_EtaIntercalibration_Stat196: 4.46054714e-04 + syst_JES_EtaIntercalibration_Stat197: 2.58474041e-04 + syst_JES_EtaIntercalibration_Stat198: 9.87858982e-04 + syst_JES_EtaIntercalibration_Stat199: 4.09523894e-04 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 2.5759928183129706e-05 - syst_JES_EtaIntercalibration_Stat201: 3.1047010725672124e-09 + syst_JES_EtaIntercalibration_Stat200: 2.57599282e-05 + syst_JES_EtaIntercalibration_Stat201: 3.10470107e-09 syst_JES_EtaIntercalibration_Stat202: 0.0 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 syst_JES_EtaIntercalibration_Stat207: 0.0 - syst_JES_EtaIntercalibration_Stat208: 8.945176395689467e-07 - syst_JES_EtaIntercalibration_Stat209: 3.4593392530221725e-05 + syst_JES_EtaIntercalibration_Stat208: 8.94517640e-07 + syst_JES_EtaIntercalibration_Stat209: 3.45933925e-05 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 0.0003380471084035478 - syst_JES_EtaIntercalibration_Stat211: 0.0010121206845035823 - syst_JES_EtaIntercalibration_Stat212: 0.00021118541616314324 - syst_JES_EtaIntercalibration_Stat213: 3.223348344609995e-05 - syst_JES_EtaIntercalibration_Stat214: 3.1047010725672124e-09 + syst_JES_EtaIntercalibration_Stat210: 3.38047108e-04 + syst_JES_EtaIntercalibration_Stat211: 1.01212068e-03 + syst_JES_EtaIntercalibration_Stat212: 2.11185416e-04 + syst_JES_EtaIntercalibration_Stat213: 3.22334834e-05 + syst_JES_EtaIntercalibration_Stat214: 3.10470107e-09 syst_JES_EtaIntercalibration_Stat215: 0.0 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 @@ -49690,11 +49690,11 @@ bins: syst_JES_EtaIntercalibration_Stat219: 0.0 syst_JES_EtaIntercalibration_Stat22: 0.0 syst_JES_EtaIntercalibration_Stat220: 0.0 - syst_JES_EtaIntercalibration_Stat221: 1.0119506843221165e-06 - syst_JES_EtaIntercalibration_Stat222: 5.380606006761692e-06 - syst_JES_EtaIntercalibration_Stat223: 0.00024200929734206493 - syst_JES_EtaIntercalibration_Stat224: 7.587824062272398e-05 - syst_JES_EtaIntercalibration_Stat225: 3.1505500960149795e-06 + syst_JES_EtaIntercalibration_Stat221: 1.01195068e-06 + syst_JES_EtaIntercalibration_Stat222: 5.38060601e-06 + syst_JES_EtaIntercalibration_Stat223: 2.42009297e-04 + syst_JES_EtaIntercalibration_Stat224: 7.58782406e-05 + syst_JES_EtaIntercalibration_Stat225: 3.15055010e-06 syst_JES_EtaIntercalibration_Stat226: 0.0 syst_JES_EtaIntercalibration_Stat227: 0.0 syst_JES_EtaIntercalibration_Stat228: 0.0 @@ -49703,291 +49703,291 @@ bins: syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 syst_JES_EtaIntercalibration_Stat232: 0.0 - syst_JES_EtaIntercalibration_Stat233: 1.0119506843221165e-06 - syst_JES_EtaIntercalibration_Stat234: 1.323286816982622e-05 - syst_JES_EtaIntercalibration_Stat235: 9.985142062084043e-05 - syst_JES_EtaIntercalibration_Stat236: 5.916285090113559e-06 + syst_JES_EtaIntercalibration_Stat233: 1.01195068e-06 + syst_JES_EtaIntercalibration_Stat234: 1.32328682e-05 + syst_JES_EtaIntercalibration_Stat235: 9.98514206e-05 + syst_JES_EtaIntercalibration_Stat236: 5.91628509e-06 syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 syst_JES_EtaIntercalibration_Stat239: 0.0 - syst_JES_EtaIntercalibration_Stat24: 5.467218374091162e-17 + syst_JES_EtaIntercalibration_Stat24: 5.46721837e-17 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 syst_JES_EtaIntercalibration_Stat243: 0.0 - syst_JES_EtaIntercalibration_Stat244: 1.0119506843221165e-06 - syst_JES_EtaIntercalibration_Stat245: 9.7802440954968e-07 - syst_JES_EtaIntercalibration_Stat25: 8.214466674714799e-15 - syst_JES_EtaIntercalibration_Stat26: 2.692472992726889e-06 - syst_JES_EtaIntercalibration_Stat27: 5.844709212190686e-10 - syst_JES_EtaIntercalibration_Stat28: 1.5802782224342648e-15 + syst_JES_EtaIntercalibration_Stat244: 1.01195068e-06 + syst_JES_EtaIntercalibration_Stat245: 9.78024410e-07 + syst_JES_EtaIntercalibration_Stat25: 8.21446667e-15 + syst_JES_EtaIntercalibration_Stat26: 2.69247299e-06 + syst_JES_EtaIntercalibration_Stat27: 5.84470921e-10 + syst_JES_EtaIntercalibration_Stat28: 1.58027822e-15 syst_JES_EtaIntercalibration_Stat29: 0.0 - syst_JES_EtaIntercalibration_Stat3: 4.154627709855601e-16 + syst_JES_EtaIntercalibration_Stat3: 4.15462771e-16 syst_JES_EtaIntercalibration_Stat30: 0.0 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 5.062784510523828e-15 - syst_JES_EtaIntercalibration_Stat36: 5.062784510523828e-15 - syst_JES_EtaIntercalibration_Stat37: 6.9679925690169186e-15 - syst_JES_EtaIntercalibration_Stat38: 8.83172683084918e-07 - syst_JES_EtaIntercalibration_Stat39: 8.836056885959143e-07 - syst_JES_EtaIntercalibration_Stat4: 2.9973139482650853e-09 - syst_JES_EtaIntercalibration_Stat40: 6.626736574664788e-14 + syst_JES_EtaIntercalibration_Stat35: 5.06278451e-15 + syst_JES_EtaIntercalibration_Stat36: 5.06278451e-15 + syst_JES_EtaIntercalibration_Stat37: 6.96799257e-15 + syst_JES_EtaIntercalibration_Stat38: 8.83172683e-07 + syst_JES_EtaIntercalibration_Stat39: 8.83605689e-07 + syst_JES_EtaIntercalibration_Stat4: 2.99731395e-09 + syst_JES_EtaIntercalibration_Stat40: 6.62673657e-14 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 syst_JES_EtaIntercalibration_Stat44: 0.0 syst_JES_EtaIntercalibration_Stat45: 0.0 - syst_JES_EtaIntercalibration_Stat46: 5.499723265765288e-16 - syst_JES_EtaIntercalibration_Stat47: 1.1637361943327192e-13 - syst_JES_EtaIntercalibration_Stat48: 2.5920146400338505e-06 - syst_JES_EtaIntercalibration_Stat49: 5.830767355122995e-10 - syst_JES_EtaIntercalibration_Stat5: 2.9981799510246142e-09 - syst_JES_EtaIntercalibration_Stat50: 6.720545569371583e-15 + syst_JES_EtaIntercalibration_Stat46: 5.49972327e-16 + syst_JES_EtaIntercalibration_Stat47: 1.16373619e-13 + syst_JES_EtaIntercalibration_Stat48: 2.59201464e-06 + syst_JES_EtaIntercalibration_Stat49: 5.83076736e-10 + syst_JES_EtaIntercalibration_Stat5: 2.99817995e-09 + syst_JES_EtaIntercalibration_Stat50: 6.72054557e-15 syst_JES_EtaIntercalibration_Stat51: 0.0 syst_JES_EtaIntercalibration_Stat52: 0.0 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 3.970726476351652e-17 - syst_JES_EtaIntercalibration_Stat57: 5.062784510523828e-15 - syst_JES_EtaIntercalibration_Stat58: 5.062784510523828e-15 - syst_JES_EtaIntercalibration_Stat59: 8.438419816529632e-15 + syst_JES_EtaIntercalibration_Stat56: 3.97072648e-17 + syst_JES_EtaIntercalibration_Stat57: 5.06278451e-15 + syst_JES_EtaIntercalibration_Stat58: 5.06278451e-15 + syst_JES_EtaIntercalibration_Stat59: 8.43841982e-15 syst_JES_EtaIntercalibration_Stat6: 0.0 - syst_JES_EtaIntercalibration_Stat60: 8.837617106166289e-07 - syst_JES_EtaIntercalibration_Stat61: 8.840778087407636e-07 - syst_JES_EtaIntercalibration_Stat62: 2.822680414074537e-13 - syst_JES_EtaIntercalibration_Stat63: 1.239455477995075e-16 + syst_JES_EtaIntercalibration_Stat60: 8.83761711e-07 + syst_JES_EtaIntercalibration_Stat61: 8.84077809e-07 + syst_JES_EtaIntercalibration_Stat62: 2.82268041e-13 + syst_JES_EtaIntercalibration_Stat63: 1.23945548e-16 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 4.7606380874836516e-15 - syst_JES_EtaIntercalibration_Stat69: 2.3988091203592566e-06 + syst_JES_EtaIntercalibration_Stat68: 4.76063809e-15 + syst_JES_EtaIntercalibration_Stat69: 2.39880912e-06 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 2.360365345041949e-06 - syst_JES_EtaIntercalibration_Stat71: 2.6699622810621906e-06 - syst_JES_EtaIntercalibration_Stat72: 5.827393264612602e-10 + syst_JES_EtaIntercalibration_Stat70: 2.36036535e-06 + syst_JES_EtaIntercalibration_Stat71: 2.66996228e-06 + syst_JES_EtaIntercalibration_Stat72: 5.82739326e-10 syst_JES_EtaIntercalibration_Stat73: 0.0 syst_JES_EtaIntercalibration_Stat74: 0.0 syst_JES_EtaIntercalibration_Stat75: 0.0 - syst_JES_EtaIntercalibration_Stat76: 6.770586606786741e-16 - syst_JES_EtaIntercalibration_Stat77: 3.970726476351652e-17 - syst_JES_EtaIntercalibration_Stat78: 3.970726476351652e-17 - syst_JES_EtaIntercalibration_Stat79: 5.062784510523828e-15 + syst_JES_EtaIntercalibration_Stat76: 6.77058661e-16 + syst_JES_EtaIntercalibration_Stat77: 3.97072648e-17 + syst_JES_EtaIntercalibration_Stat78: 3.97072648e-17 + syst_JES_EtaIntercalibration_Stat79: 5.06278451e-15 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 5.009090935489193e-15 - syst_JES_EtaIntercalibration_Stat81: 5.799647920348268e-14 - syst_JES_EtaIntercalibration_Stat82: 8.892584611104244e-07 - syst_JES_EtaIntercalibration_Stat83: 5.3634641156625635e-08 - syst_JES_EtaIntercalibration_Stat84: 1.0371838638833522e-10 - syst_JES_EtaIntercalibration_Stat85: 4.438612733726609e-16 + syst_JES_EtaIntercalibration_Stat80: 5.00909094e-15 + syst_JES_EtaIntercalibration_Stat81: 5.79964792e-14 + syst_JES_EtaIntercalibration_Stat82: 8.89258461e-07 + syst_JES_EtaIntercalibration_Stat83: 5.36346412e-08 + syst_JES_EtaIntercalibration_Stat84: 1.03718386e-10 + syst_JES_EtaIntercalibration_Stat85: 4.43861273e-16 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 7.481006884103235e-15 + syst_JES_EtaIntercalibration_Stat89: 7.48100688e-15 syst_JES_EtaIntercalibration_Stat9: 0.0 - syst_JES_EtaIntercalibration_Stat90: 2.3634260486632536e-06 - syst_JES_EtaIntercalibration_Stat91: 2.343803176612746e-06 - syst_JES_EtaIntercalibration_Stat92: 2.694453881587139e-09 - syst_JES_EtaIntercalibration_Stat93: 6.019605184888126e-10 + syst_JES_EtaIntercalibration_Stat90: 2.36342605e-06 + syst_JES_EtaIntercalibration_Stat91: 2.34380318e-06 + syst_JES_EtaIntercalibration_Stat92: 2.69445388e-09 + syst_JES_EtaIntercalibration_Stat93: 6.01960518e-10 syst_JES_EtaIntercalibration_Stat94: 0.0 syst_JES_EtaIntercalibration_Stat95: 0.0 - syst_JES_EtaIntercalibration_Stat96: 4.258246910408085e-12 - syst_JES_EtaIntercalibration_Stat97: 6.770586606786741e-16 - syst_JES_EtaIntercalibration_Stat98: 3.970726476351652e-17 - syst_JES_EtaIntercalibration_Stat99: 3.970726476351652e-17 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0022306474396461672 - syst_JES_Flavour_Comp: 0.0060326558620561145 - syst_JES_Flavour_Response: 0.0012019331844990385 - syst_JES_Gjet_Generator: 0.009590130238948792 - syst_JES_Gjet_OOC: 0.007663588372949059 - syst_JES_Gjet_Purity: 0.002094242345097625 - syst_JES_Gjet_Stat1: 3.260731476781705e-06 - syst_JES_Gjet_Stat10: 0.00018924444509681122 - syst_JES_Gjet_Stat11: 0.0002325034838448663 - syst_JES_Gjet_Stat12: 0.0008868109198132372 - syst_JES_Gjet_Stat13: 0.002281632967854383 - syst_JES_Gjet_Stat14: 0.002750159404470948 - syst_JES_Gjet_Stat15: 8.883022177164707e-05 - syst_JES_Gjet_Stat2: 1.1073465588225396e-05 - syst_JES_Gjet_Stat3: 6.681390248166034e-09 - syst_JES_Gjet_Stat4: 9.425820500782726e-06 - syst_JES_Gjet_Stat5: 1.3241528432079762e-05 - syst_JES_Gjet_Stat6: 5.187743903921531e-05 - syst_JES_Gjet_Stat7: 4.660969841942769e-05 - syst_JES_Gjet_Stat8: 4.3449299266501415e-05 - syst_JES_Gjet_Stat9: 0.00011310808138678687 - syst_JES_Gjet_Veto: 0.006648061446767772 - syst_JES_Gjet_dPhi: 0.0007078052486383526 - syst_JES_LArESZee: 0.014400165511201598 - syst_JES_LArEsmear: 0.0011510436166800979 - syst_JES_LAr_JVT: 0.0014150559988919166 - syst_JES_MJB_Alpha: 7.64440623920524e-05 - syst_JES_MJB_Asym: 0.0007352343163917201 - syst_JES_MJB_Beta: 3.930023282373783e-05 - syst_JES_MJB_Fragmentation: 0.001460412527336026 - syst_JES_MJB_Stat1: 1.8913994818652142e-05 - syst_JES_MJB_Stat10: 1.0142889529123346e-20 - syst_JES_MJB_Stat11: 1.203775311260374e-06 + syst_JES_EtaIntercalibration_Stat96: 4.25824691e-12 + syst_JES_EtaIntercalibration_Stat97: 6.77058661e-16 + syst_JES_EtaIntercalibration_Stat98: 3.97072648e-17 + syst_JES_EtaIntercalibration_Stat99: 3.97072648e-17 + syst_JES_EtaIntercalibration_TotalStat_MJB: 2.23064744e-03 + syst_JES_Flavour_Comp: 6.03265586e-03 + syst_JES_Flavour_Response: 1.20193318e-03 + syst_JES_Gjet_Generator: 9.59013024e-03 + syst_JES_Gjet_OOC: 7.66358837e-03 + syst_JES_Gjet_Purity: 2.09424235e-03 + syst_JES_Gjet_Stat1: 3.26073148e-06 + syst_JES_Gjet_Stat10: 1.89244445e-04 + syst_JES_Gjet_Stat11: 2.32503484e-04 + syst_JES_Gjet_Stat12: 8.86810920e-04 + syst_JES_Gjet_Stat13: 2.28163297e-03 + syst_JES_Gjet_Stat14: 2.75015940e-03 + syst_JES_Gjet_Stat15: 8.88302218e-05 + syst_JES_Gjet_Stat2: 1.10734656e-05 + syst_JES_Gjet_Stat3: 6.68139025e-09 + syst_JES_Gjet_Stat4: 9.42582050e-06 + syst_JES_Gjet_Stat5: 1.32415284e-05 + syst_JES_Gjet_Stat6: 5.18774390e-05 + syst_JES_Gjet_Stat7: 4.66096984e-05 + syst_JES_Gjet_Stat8: 4.34492993e-05 + syst_JES_Gjet_Stat9: 1.13108081e-04 + syst_JES_Gjet_Veto: 6.64806145e-03 + syst_JES_Gjet_dPhi: 7.07805249e-04 + syst_JES_LArESZee: 1.44001655e-02 + syst_JES_LArEsmear: 1.15104362e-03 + syst_JES_LAr_JVT: 1.41505600e-03 + syst_JES_MJB_Alpha: 7.64440624e-05 + syst_JES_MJB_Asym: 7.35234316e-04 + syst_JES_MJB_Beta: 3.93002328e-05 + syst_JES_MJB_Fragmentation: 1.46041253e-03 + syst_JES_MJB_Stat1: 1.89139948e-05 + syst_JES_MJB_Stat10: 1.01428895e-20 + syst_JES_MJB_Stat11: 1.20377531e-06 syst_JES_MJB_Stat12: 0.0 syst_JES_MJB_Stat13: 0.0 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 - syst_JES_MJB_Stat16: 3.891918164607267e-09 - syst_JES_MJB_Stat2: 6.262453832165153e-05 - syst_JES_MJB_Stat3: 0.0001029899961161277 - syst_JES_MJB_Stat4: 6.894428239534768e-05 - syst_JES_MJB_Stat5: 1.6783572232908646e-05 - syst_JES_MJB_Stat6: 2.7485372473372086e-13 - syst_JES_MJB_Stat7: 1.8047969411065563e-05 - syst_JES_MJB_Stat8: 1.1891394597603905e-14 - syst_JES_MJB_Stat9: 1.4038270899298362e-14 - syst_JES_MJB_Threshold: 0.000823714785286752 - syst_JES_Pileup_MuOffset: 0.0017415541909455471 - syst_JES_Pileup_NPVOffset: 0.001663109963291664 - syst_JES_Pileup_Pt_term: 0.0020581943542824135 - syst_JES_Pileup_Rho_topology: 0.0029201230710365618 - syst_JES_PunchThrough_MC15: 0.0004966020136890306 + syst_JES_MJB_Stat16: 3.89191816e-09 + syst_JES_MJB_Stat2: 6.26245383e-05 + syst_JES_MJB_Stat3: 1.02989996e-04 + syst_JES_MJB_Stat4: 6.89442824e-05 + syst_JES_MJB_Stat5: 1.67835722e-05 + syst_JES_MJB_Stat6: 2.74853725e-13 + syst_JES_MJB_Stat7: 1.80479694e-05 + syst_JES_MJB_Stat8: 1.18913946e-14 + syst_JES_MJB_Stat9: 1.40382709e-14 + syst_JES_MJB_Threshold: 8.23714785e-04 + syst_JES_Pileup_MuOffset: 1.74155419e-03 + syst_JES_Pileup_NPVOffset: 1.66310996e-03 + syst_JES_Pileup_Pt_term: 2.05819435e-03 + syst_JES_Pileup_Rho_topology: 2.92012307e-03 + syst_JES_PunchThrough_MC15: 4.96602014e-04 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.005421147549181815 - syst_JES_Zjet_MuScale: 0.0003372228195125591 - syst_JES_Zjet_MuSmearID: 7.1584479239567e-05 - syst_JES_Zjet_MuSmearMS: 0.0015844641838804686 - syst_JES_Zjet_OOC: 0.0026258413889646876 - syst_JES_Zjet_Stat1: 8.624746995736122e-05 - syst_JES_Zjet_Stat10: 0.00017219346677502023 - syst_JES_Zjet_Stat11: 0.00021079546959078605 - syst_JES_Zjet_Stat12: 0.0010193252768375756 - syst_JES_Zjet_Stat13: 0.0017075879918762606 - syst_JES_Zjet_Stat2: 2.5266438371879797e-06 - syst_JES_Zjet_Stat3: 3.781066912922859e-05 - syst_JES_Zjet_Stat4: 9.214469206091037e-15 - syst_JES_Zjet_Stat5: 1.3128486279842014e-14 - syst_JES_Zjet_Stat6: 4.989532242605513e-05 - syst_JES_Zjet_Stat7: 9.604160071031719e-09 - syst_JES_Zjet_Stat8: 3.941250404376764e-06 - syst_JES_Zjet_Stat9: 9.65421207297623e-05 - syst_JES_Zjet_Veto: 0.0005755496742245625 - syst_JES_Zjet_dPhi: 0.00044437723839098694 - syst_PRW: 3.397e-15 - syst_Unfolding_bias: 1.886e-23 - syst_cleaning: 0.0018463661608684235 + syst_JES_Zjet_MC: 5.42114755e-03 + syst_JES_Zjet_MuScale: 3.37222820e-04 + syst_JES_Zjet_MuSmearID: 7.15844792e-05 + syst_JES_Zjet_MuSmearMS: 1.58446418e-03 + syst_JES_Zjet_OOC: 2.62584139e-03 + syst_JES_Zjet_Stat1: 8.62474700e-05 + syst_JES_Zjet_Stat10: 1.72193467e-04 + syst_JES_Zjet_Stat11: 2.10795470e-04 + syst_JES_Zjet_Stat12: 1.01932528e-03 + syst_JES_Zjet_Stat13: 1.70758799e-03 + syst_JES_Zjet_Stat2: 2.52664384e-06 + syst_JES_Zjet_Stat3: 3.78106691e-05 + syst_JES_Zjet_Stat4: 9.21446921e-15 + syst_JES_Zjet_Stat5: 1.31284863e-14 + syst_JES_Zjet_Stat6: 4.98953224e-05 + syst_JES_Zjet_Stat7: 9.60416007e-09 + syst_JES_Zjet_Stat8: 3.94125040e-06 + syst_JES_Zjet_Stat9: 9.65421207e-05 + syst_JES_Zjet_Veto: 5.75549674e-04 + syst_JES_Zjet_dPhi: 4.44377238e-04 + syst_PRW: 3.39700000e-15 + syst_Unfolding_bias: 1.88600000e-23 + syst_cleaning: 1.84636616e-03 syst_lumi: 0.006801 -- stat: 0.0018538 +- stat: 1.85380000e-03 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.001278145422086235 - syst_JER_NP1: 0.0018874088607135444 - syst_JER_NP2: 0.000326578198109534 - syst_JER_NP3: 0.0002968599796200222 - syst_JER_NP4: 0.0002683289206831794 - syst_JER_NP5: 1.818882008512578e-07 - syst_JER_NP6: 2.7320918725401606e-10 - syst_JER_NP7: 1.6414508064514148e-14 - syst_JER_NP8: 0.00017559626277344287 - syst_JES_EtaIntercalibration_Modelling: 0.009173852230660792 - syst_JES_EtaIntercalibration_NonClosure: 0.005330604749932226 + syst_JER_NP0: 1.27814542e-03 + syst_JER_NP1: 1.88740886e-03 + syst_JER_NP2: 3.26578198e-04 + syst_JER_NP3: 2.96859980e-04 + syst_JER_NP4: 2.68328921e-04 + syst_JER_NP5: 1.81888201e-07 + syst_JER_NP6: 2.73209187e-10 + syst_JER_NP7: 1.64145081e-14 + syst_JER_NP8: 1.75596263e-04 + syst_JES_EtaIntercalibration_Modelling: 9.17385223e-03 + syst_JES_EtaIntercalibration_NonClosure: 5.33060475e-03 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 7.37334028782071e-18 + syst_JES_EtaIntercalibration_Stat100: 7.37334029e-18 syst_JES_EtaIntercalibration_Stat101: 0.0 - syst_JES_EtaIntercalibration_Stat102: 5.695307068762843e-13 - syst_JES_EtaIntercalibration_Stat103: 1.5268492985618292e-07 - syst_JES_EtaIntercalibration_Stat104: 2.4539945847281324e-06 - syst_JES_EtaIntercalibration_Stat105: 6.715122839531681e-11 - syst_JES_EtaIntercalibration_Stat106: 6.3443539466205695e-15 + syst_JES_EtaIntercalibration_Stat102: 5.69530707e-13 + syst_JES_EtaIntercalibration_Stat103: 1.52684930e-07 + syst_JES_EtaIntercalibration_Stat104: 2.45399458e-06 + syst_JES_EtaIntercalibration_Stat105: 6.71512284e-11 + syst_JES_EtaIntercalibration_Stat106: 6.34435395e-15 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 4.877468605742122e-13 + syst_JES_EtaIntercalibration_Stat109: 4.87746861e-13 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 2.867475887867237e-06 - syst_JES_EtaIntercalibration_Stat111: 2.865123543584116e-06 - syst_JES_EtaIntercalibration_Stat112: 3.1220891190835663e-06 - syst_JES_EtaIntercalibration_Stat113: 1.7291394991440104e-10 - syst_JES_EtaIntercalibration_Stat114: 3.284834356554376e-14 + syst_JES_EtaIntercalibration_Stat110: 2.86747589e-06 + syst_JES_EtaIntercalibration_Stat111: 2.86512354e-06 + syst_JES_EtaIntercalibration_Stat112: 3.12208912e-06 + syst_JES_EtaIntercalibration_Stat113: 1.72913950e-10 + syst_JES_EtaIntercalibration_Stat114: 3.28483436e-14 syst_JES_EtaIntercalibration_Stat115: 0.0 - syst_JES_EtaIntercalibration_Stat116: 4.350045603209235e-13 - syst_JES_EtaIntercalibration_Stat117: 4.716374349010053e-13 - syst_JES_EtaIntercalibration_Stat118: 7.37334028782071e-18 - syst_JES_EtaIntercalibration_Stat119: 7.37334028782071e-18 + syst_JES_EtaIntercalibration_Stat116: 4.35004560e-13 + syst_JES_EtaIntercalibration_Stat117: 4.71637435e-13 + syst_JES_EtaIntercalibration_Stat118: 7.37334029e-18 + syst_JES_EtaIntercalibration_Stat119: 7.37334029e-18 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 7.37334028782071e-18 - syst_JES_EtaIntercalibration_Stat121: 7.840994005864309e-16 - syst_JES_EtaIntercalibration_Stat122: 1.5187066712596842e-07 - syst_JES_EtaIntercalibration_Stat123: 2.6029422333198255e-06 - syst_JES_EtaIntercalibration_Stat124: 2.6073670028402217e-06 - syst_JES_EtaIntercalibration_Stat125: 5.5242652678885726e-08 - syst_JES_EtaIntercalibration_Stat126: 8.79240437920709e-12 + syst_JES_EtaIntercalibration_Stat120: 7.37334029e-18 + syst_JES_EtaIntercalibration_Stat121: 7.84099401e-16 + syst_JES_EtaIntercalibration_Stat122: 1.51870667e-07 + syst_JES_EtaIntercalibration_Stat123: 2.60294223e-06 + syst_JES_EtaIntercalibration_Stat124: 2.60736700e-06 + syst_JES_EtaIntercalibration_Stat125: 5.52426527e-08 + syst_JES_EtaIntercalibration_Stat126: 8.79240438e-12 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 3.5678181736181565e-08 - syst_JES_EtaIntercalibration_Stat129: 3.050899211707919e-06 + syst_JES_EtaIntercalibration_Stat128: 3.56781817e-08 + syst_JES_EtaIntercalibration_Stat129: 3.05089921e-06 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 1.1451436940401847e-05 - syst_JES_EtaIntercalibration_Stat131: 2.3037110821455023e-06 - syst_JES_EtaIntercalibration_Stat132: 3.07556970821261e-06 - syst_JES_EtaIntercalibration_Stat133: 7.157052832322254e-11 + syst_JES_EtaIntercalibration_Stat130: 1.14514369e-05 + syst_JES_EtaIntercalibration_Stat131: 2.30371108e-06 + syst_JES_EtaIntercalibration_Stat132: 3.07556971e-06 + syst_JES_EtaIntercalibration_Stat133: 7.15705283e-11 syst_JES_EtaIntercalibration_Stat134: 0.0 - syst_JES_EtaIntercalibration_Stat135: 4.350045603209235e-13 - syst_JES_EtaIntercalibration_Stat136: 4.350045603209235e-13 - syst_JES_EtaIntercalibration_Stat137: 7.37334028782071e-18 - syst_JES_EtaIntercalibration_Stat138: 7.37334028782071e-18 - syst_JES_EtaIntercalibration_Stat139: 7.37334028782071e-18 + syst_JES_EtaIntercalibration_Stat135: 4.35004560e-13 + syst_JES_EtaIntercalibration_Stat136: 4.35004560e-13 + syst_JES_EtaIntercalibration_Stat137: 7.37334029e-18 + syst_JES_EtaIntercalibration_Stat138: 7.37334029e-18 + syst_JES_EtaIntercalibration_Stat139: 7.37334029e-18 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 4.981378122568091e-16 - syst_JES_EtaIntercalibration_Stat141: 2.494195908504382e-06 - syst_JES_EtaIntercalibration_Stat142: 3.069345695746897e-06 - syst_JES_EtaIntercalibration_Stat143: 1.1581190571598198e-05 - syst_JES_EtaIntercalibration_Stat144: 4.5603335404332e-06 - syst_JES_EtaIntercalibration_Stat145: 1.79623142848437e-11 - syst_JES_EtaIntercalibration_Stat146: 3.0275150198141046e-07 - syst_JES_EtaIntercalibration_Stat147: 3.036982178084027e-06 - syst_JES_EtaIntercalibration_Stat148: 1.3524261791314156e-05 - syst_JES_EtaIntercalibration_Stat149: 2.473271669267248e-06 + syst_JES_EtaIntercalibration_Stat140: 4.98137812e-16 + syst_JES_EtaIntercalibration_Stat141: 2.49419591e-06 + syst_JES_EtaIntercalibration_Stat142: 3.06934570e-06 + syst_JES_EtaIntercalibration_Stat143: 1.15811906e-05 + syst_JES_EtaIntercalibration_Stat144: 4.56033354e-06 + syst_JES_EtaIntercalibration_Stat145: 1.79623143e-11 + syst_JES_EtaIntercalibration_Stat146: 3.02751502e-07 + syst_JES_EtaIntercalibration_Stat147: 3.03698218e-06 + syst_JES_EtaIntercalibration_Stat148: 1.35242618e-05 + syst_JES_EtaIntercalibration_Stat149: 2.47327167e-06 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 3.0694441250289927e-06 - syst_JES_EtaIntercalibration_Stat151: 4.2399508360375114e-10 + syst_JES_EtaIntercalibration_Stat150: 3.06944413e-06 + syst_JES_EtaIntercalibration_Stat151: 4.23995084e-10 syst_JES_EtaIntercalibration_Stat152: 0.0 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 7.37334028782071e-18 + syst_JES_EtaIntercalibration_Stat156: 7.37334029e-18 syst_JES_EtaIntercalibration_Stat157: 0.0 syst_JES_EtaIntercalibration_Stat158: 0.0 - syst_JES_EtaIntercalibration_Stat159: 2.274349408072559e-06 - syst_JES_EtaIntercalibration_Stat16: 1.5034201009544483e-07 - syst_JES_EtaIntercalibration_Stat160: 1.7505524842174825e-06 - syst_JES_EtaIntercalibration_Stat161: 1.1567218593940378e-05 - syst_JES_EtaIntercalibration_Stat162: 6.029467886969794e-06 - syst_JES_EtaIntercalibration_Stat163: 7.809542872025225e-09 - syst_JES_EtaIntercalibration_Stat164: 2.8385250687769167e-06 - syst_JES_EtaIntercalibration_Stat165: 2.159606817802722e-05 - syst_JES_EtaIntercalibration_Stat166: 5.510261767829184e-05 - syst_JES_EtaIntercalibration_Stat167: 2.7396147758398443e-05 - syst_JES_EtaIntercalibration_Stat168: 4.244783475043221e-06 - syst_JES_EtaIntercalibration_Stat169: 4.2399508360375114e-10 - syst_JES_EtaIntercalibration_Stat17: 5.785159212602796e-15 + syst_JES_EtaIntercalibration_Stat159: 2.27434941e-06 + syst_JES_EtaIntercalibration_Stat16: 1.50342010e-07 + syst_JES_EtaIntercalibration_Stat160: 1.75055248e-06 + syst_JES_EtaIntercalibration_Stat161: 1.15672186e-05 + syst_JES_EtaIntercalibration_Stat162: 6.02946789e-06 + syst_JES_EtaIntercalibration_Stat163: 7.80954287e-09 + syst_JES_EtaIntercalibration_Stat164: 2.83852507e-06 + syst_JES_EtaIntercalibration_Stat165: 2.15960682e-05 + syst_JES_EtaIntercalibration_Stat166: 5.51026177e-05 + syst_JES_EtaIntercalibration_Stat167: 2.73961478e-05 + syst_JES_EtaIntercalibration_Stat168: 4.24478348e-06 + syst_JES_EtaIntercalibration_Stat169: 4.23995084e-10 + syst_JES_EtaIntercalibration_Stat17: 5.78515921e-15 syst_JES_EtaIntercalibration_Stat170: 0.0 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 syst_JES_EtaIntercalibration_Stat175: 0.0 - syst_JES_EtaIntercalibration_Stat176: 4.754479466776568e-11 - syst_JES_EtaIntercalibration_Stat177: 2.4000416663049836e-06 - syst_JES_EtaIntercalibration_Stat178: 2.248905066915898e-05 - syst_JES_EtaIntercalibration_Stat179: 3.624310693083583e-05 - syst_JES_EtaIntercalibration_Stat18: 2.2303152484570426e-18 - syst_JES_EtaIntercalibration_Stat180: 2.904358044783735e-05 - syst_JES_EtaIntercalibration_Stat181: 5.177225527973453e-07 - syst_JES_EtaIntercalibration_Stat182: 0.00014242232549709332 - syst_JES_EtaIntercalibration_Stat183: 0.0002695969398936123 - syst_JES_EtaIntercalibration_Stat184: 9.521107432961777e-05 - syst_JES_EtaIntercalibration_Stat185: 1.3396317432414027e-05 - syst_JES_EtaIntercalibration_Stat186: 4.240060376928612e-10 + syst_JES_EtaIntercalibration_Stat176: 4.75447947e-11 + syst_JES_EtaIntercalibration_Stat177: 2.40004167e-06 + syst_JES_EtaIntercalibration_Stat178: 2.24890507e-05 + syst_JES_EtaIntercalibration_Stat179: 3.62431069e-05 + syst_JES_EtaIntercalibration_Stat18: 2.23031525e-18 + syst_JES_EtaIntercalibration_Stat180: 2.90435804e-05 + syst_JES_EtaIntercalibration_Stat181: 5.17722553e-07 + syst_JES_EtaIntercalibration_Stat182: 1.42422325e-04 + syst_JES_EtaIntercalibration_Stat183: 2.69596940e-04 + syst_JES_EtaIntercalibration_Stat184: 9.52110743e-05 + syst_JES_EtaIntercalibration_Stat185: 1.33963174e-05 + syst_JES_EtaIntercalibration_Stat186: 4.24006038e-10 syst_JES_EtaIntercalibration_Stat187: 0.0 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 @@ -49995,31 +49995,31 @@ bins: syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 syst_JES_EtaIntercalibration_Stat192: 0.0 - syst_JES_EtaIntercalibration_Stat193: 1.5500616995676036e-07 - syst_JES_EtaIntercalibration_Stat194: 1.1644882609970785e-05 - syst_JES_EtaIntercalibration_Stat195: 8.16010911385381e-05 - syst_JES_EtaIntercalibration_Stat196: 0.0002120182067653625 - syst_JES_EtaIntercalibration_Stat197: 0.00011014460166072598 - syst_JES_EtaIntercalibration_Stat198: 0.0004767164566070695 - syst_JES_EtaIntercalibration_Stat199: 0.00018867752250864437 + syst_JES_EtaIntercalibration_Stat193: 1.55006170e-07 + syst_JES_EtaIntercalibration_Stat194: 1.16448826e-05 + syst_JES_EtaIntercalibration_Stat195: 8.16010911e-05 + syst_JES_EtaIntercalibration_Stat196: 2.12018207e-04 + syst_JES_EtaIntercalibration_Stat197: 1.10144602e-04 + syst_JES_EtaIntercalibration_Stat198: 4.76716457e-04 + syst_JES_EtaIntercalibration_Stat199: 1.88677523e-04 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 2.0734739852479464e-05 - syst_JES_EtaIntercalibration_Stat201: 4.240060376928612e-10 + syst_JES_EtaIntercalibration_Stat200: 2.07347399e-05 + syst_JES_EtaIntercalibration_Stat201: 4.24006038e-10 syst_JES_EtaIntercalibration_Stat202: 0.0 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 syst_JES_EtaIntercalibration_Stat207: 0.0 - syst_JES_EtaIntercalibration_Stat208: 1.5380611171211632e-07 - syst_JES_EtaIntercalibration_Stat209: 1.4315520353797832e-05 + syst_JES_EtaIntercalibration_Stat208: 1.53806112e-07 + syst_JES_EtaIntercalibration_Stat209: 1.43155204e-05 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 0.00015673691332931115 - syst_JES_EtaIntercalibration_Stat211: 0.0005055590239279683 - syst_JES_EtaIntercalibration_Stat212: 0.00012001809894761706 - syst_JES_EtaIntercalibration_Stat213: 1.6206598902916057e-05 - syst_JES_EtaIntercalibration_Stat214: 4.240060376928612e-10 + syst_JES_EtaIntercalibration_Stat210: 1.56736913e-04 + syst_JES_EtaIntercalibration_Stat211: 5.05559024e-04 + syst_JES_EtaIntercalibration_Stat212: 1.20018099e-04 + syst_JES_EtaIntercalibration_Stat213: 1.62065989e-05 + syst_JES_EtaIntercalibration_Stat214: 4.24006038e-10 syst_JES_EtaIntercalibration_Stat215: 0.0 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 @@ -50027,11 +50027,11 @@ bins: syst_JES_EtaIntercalibration_Stat219: 0.0 syst_JES_EtaIntercalibration_Stat22: 0.0 syst_JES_EtaIntercalibration_Stat220: 0.0 - syst_JES_EtaIntercalibration_Stat221: 1.8368398814267945e-07 - syst_JES_EtaIntercalibration_Stat222: 5.33225915419534e-06 - syst_JES_EtaIntercalibration_Stat223: 0.00013915252207559876 - syst_JES_EtaIntercalibration_Stat224: 9.31944401506871e-05 - syst_JES_EtaIntercalibration_Stat225: 1.887777663682882e-05 + syst_JES_EtaIntercalibration_Stat221: 1.83683988e-07 + syst_JES_EtaIntercalibration_Stat222: 5.33225915e-06 + syst_JES_EtaIntercalibration_Stat223: 1.39152522e-04 + syst_JES_EtaIntercalibration_Stat224: 9.31944402e-05 + syst_JES_EtaIntercalibration_Stat225: 1.88777766e-05 syst_JES_EtaIntercalibration_Stat226: 0.0 syst_JES_EtaIntercalibration_Stat227: 0.0 syst_JES_EtaIntercalibration_Stat228: 0.0 @@ -50040,291 +50040,291 @@ bins: syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 syst_JES_EtaIntercalibration_Stat232: 0.0 - syst_JES_EtaIntercalibration_Stat233: 1.8368398814267945e-07 - syst_JES_EtaIntercalibration_Stat234: 1.2288900479701186e-05 - syst_JES_EtaIntercalibration_Stat235: 0.0001561050417987837 - syst_JES_EtaIntercalibration_Stat236: 6.152306315521033e-06 + syst_JES_EtaIntercalibration_Stat233: 1.83683988e-07 + syst_JES_EtaIntercalibration_Stat234: 1.22889005e-05 + syst_JES_EtaIntercalibration_Stat235: 1.56105042e-04 + syst_JES_EtaIntercalibration_Stat236: 6.15230632e-06 syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 syst_JES_EtaIntercalibration_Stat239: 0.0 - syst_JES_EtaIntercalibration_Stat24: 9.246553236206451e-18 + syst_JES_EtaIntercalibration_Stat24: 9.24655324e-18 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 syst_JES_EtaIntercalibration_Stat243: 0.0 - syst_JES_EtaIntercalibration_Stat244: 1.8368398814267945e-07 - syst_JES_EtaIntercalibration_Stat245: 2.0033969071304868e-06 - syst_JES_EtaIntercalibration_Stat25: 1.0569662376348642e-15 - syst_JES_EtaIntercalibration_Stat26: 3.1315478616543455e-06 - syst_JES_EtaIntercalibration_Stat27: 7.137659421083333e-11 - syst_JES_EtaIntercalibration_Stat28: 2.148776583896055e-16 + syst_JES_EtaIntercalibration_Stat244: 1.83683988e-07 + syst_JES_EtaIntercalibration_Stat245: 2.00339691e-06 + syst_JES_EtaIntercalibration_Stat25: 1.05696624e-15 + syst_JES_EtaIntercalibration_Stat26: 3.13154786e-06 + syst_JES_EtaIntercalibration_Stat27: 7.13765942e-11 + syst_JES_EtaIntercalibration_Stat28: 2.14877658e-16 syst_JES_EtaIntercalibration_Stat29: 0.0 - syst_JES_EtaIntercalibration_Stat3: 5.659233934023226e-17 + syst_JES_EtaIntercalibration_Stat3: 5.65923393e-17 syst_JES_EtaIntercalibration_Stat30: 0.0 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 6.082096410778112e-16 - syst_JES_EtaIntercalibration_Stat36: 6.082096410778112e-16 - syst_JES_EtaIntercalibration_Stat37: 8.858777503508879e-16 - syst_JES_EtaIntercalibration_Stat38: 1.5034200722985733e-07 - syst_JES_EtaIntercalibration_Stat39: 1.505152115346556e-07 - syst_JES_EtaIntercalibration_Stat4: 4.115352757264049e-10 - syst_JES_EtaIntercalibration_Stat40: 8.065309657415516e-15 + syst_JES_EtaIntercalibration_Stat35: 6.08209641e-16 + syst_JES_EtaIntercalibration_Stat36: 6.08209641e-16 + syst_JES_EtaIntercalibration_Stat37: 8.85877750e-16 + syst_JES_EtaIntercalibration_Stat38: 1.50342007e-07 + syst_JES_EtaIntercalibration_Stat39: 1.50515212e-07 + syst_JES_EtaIntercalibration_Stat4: 4.11535276e-10 + syst_JES_EtaIntercalibration_Stat40: 8.06530966e-15 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 syst_JES_EtaIntercalibration_Stat44: 0.0 syst_JES_EtaIntercalibration_Stat45: 0.0 - syst_JES_EtaIntercalibration_Stat46: 7.46098952887618e-17 - syst_JES_EtaIntercalibration_Stat47: 1.3906410140650964e-14 - syst_JES_EtaIntercalibration_Stat48: 3.106433191646457e-06 - syst_JES_EtaIntercalibration_Stat49: 7.119230810436757e-11 - syst_JES_EtaIntercalibration_Stat5: 4.116218749094914e-10 - syst_JES_EtaIntercalibration_Stat50: 8.512553612165976e-16 + syst_JES_EtaIntercalibration_Stat46: 7.46098953e-17 + syst_JES_EtaIntercalibration_Stat47: 1.39064101e-14 + syst_JES_EtaIntercalibration_Stat48: 3.10643319e-06 + syst_JES_EtaIntercalibration_Stat49: 7.11923081e-11 + syst_JES_EtaIntercalibration_Stat5: 4.11621875e-10 + syst_JES_EtaIntercalibration_Stat50: 8.51255361e-16 syst_JES_EtaIntercalibration_Stat51: 0.0 syst_JES_EtaIntercalibration_Stat52: 0.0 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 7.37334028782071e-18 - syst_JES_EtaIntercalibration_Stat57: 6.082096410778112e-16 - syst_JES_EtaIntercalibration_Stat58: 6.082096410778112e-16 - syst_JES_EtaIntercalibration_Stat59: 1.0789231796101146e-15 + syst_JES_EtaIntercalibration_Stat56: 7.37334029e-18 + syst_JES_EtaIntercalibration_Stat57: 6.08209641e-16 + syst_JES_EtaIntercalibration_Stat58: 6.08209641e-16 + syst_JES_EtaIntercalibration_Stat59: 1.07892318e-15 syst_JES_EtaIntercalibration_Stat6: 0.0 - syst_JES_EtaIntercalibration_Stat60: 1.5058815968261474e-07 - syst_JES_EtaIntercalibration_Stat61: 1.5074808559603102e-07 - syst_JES_EtaIntercalibration_Stat62: 3.275895478720284e-14 - syst_JES_EtaIntercalibration_Stat63: 1.8190800407554914e-17 + syst_JES_EtaIntercalibration_Stat60: 1.50588160e-07 + syst_JES_EtaIntercalibration_Stat61: 1.50748086e-07 + syst_JES_EtaIntercalibration_Stat62: 3.27589548e-14 + syst_JES_EtaIntercalibration_Stat63: 1.81908004e-17 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 5.865400071606369e-16 - syst_JES_EtaIntercalibration_Stat69: 3.0641273423924336e-06 + syst_JES_EtaIntercalibration_Stat68: 5.86540007e-16 + syst_JES_EtaIntercalibration_Stat69: 3.06412734e-06 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 3.058205244965092e-06 - syst_JES_EtaIntercalibration_Stat71: 3.125486358335789e-06 - syst_JES_EtaIntercalibration_Stat72: 7.116885086902042e-11 + syst_JES_EtaIntercalibration_Stat70: 3.05820524e-06 + syst_JES_EtaIntercalibration_Stat71: 3.12548636e-06 + syst_JES_EtaIntercalibration_Stat72: 7.11688509e-11 syst_JES_EtaIntercalibration_Stat73: 0.0 syst_JES_EtaIntercalibration_Stat74: 0.0 syst_JES_EtaIntercalibration_Stat75: 0.0 - syst_JES_EtaIntercalibration_Stat76: 9.935909457618864e-17 - syst_JES_EtaIntercalibration_Stat77: 7.37334028782071e-18 - syst_JES_EtaIntercalibration_Stat78: 7.37334028782071e-18 - syst_JES_EtaIntercalibration_Stat79: 6.082096410778112e-16 + syst_JES_EtaIntercalibration_Stat76: 9.93590946e-17 + syst_JES_EtaIntercalibration_Stat77: 7.37334029e-18 + syst_JES_EtaIntercalibration_Stat78: 7.37334029e-18 + syst_JES_EtaIntercalibration_Stat79: 6.08209641e-16 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 6.014546429282927e-16 - syst_JES_EtaIntercalibration_Stat81: 6.998656067417515e-15 - syst_JES_EtaIntercalibration_Stat82: 1.5239165424985547e-07 - syst_JES_EtaIntercalibration_Stat83: 7.638766745691021e-08 - syst_JES_EtaIntercalibration_Stat84: 1.222998850162992e-11 - syst_JES_EtaIntercalibration_Stat85: 5.751439471993077e-17 + syst_JES_EtaIntercalibration_Stat80: 6.01454643e-16 + syst_JES_EtaIntercalibration_Stat81: 6.99865607e-15 + syst_JES_EtaIntercalibration_Stat82: 1.52391654e-07 + syst_JES_EtaIntercalibration_Stat83: 7.63876675e-08 + syst_JES_EtaIntercalibration_Stat84: 1.22299885e-11 + syst_JES_EtaIntercalibration_Stat85: 5.75143947e-17 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 9.107102653972888e-16 + syst_JES_EtaIntercalibration_Stat89: 9.10710265e-16 syst_JES_EtaIntercalibration_Stat9: 0.0 - syst_JES_EtaIntercalibration_Stat90: 3.0602274678199988e-06 - syst_JES_EtaIntercalibration_Stat91: 3.0544581150958675e-06 - syst_JES_EtaIntercalibration_Stat92: 3.081254382146985e-10 - syst_JES_EtaIntercalibration_Stat93: 7.350652747535282e-11 + syst_JES_EtaIntercalibration_Stat90: 3.06022747e-06 + syst_JES_EtaIntercalibration_Stat91: 3.05445812e-06 + syst_JES_EtaIntercalibration_Stat92: 3.08125438e-10 + syst_JES_EtaIntercalibration_Stat93: 7.35065275e-11 syst_JES_EtaIntercalibration_Stat94: 0.0 syst_JES_EtaIntercalibration_Stat95: 0.0 - syst_JES_EtaIntercalibration_Stat96: 4.716374349010053e-13 - syst_JES_EtaIntercalibration_Stat97: 9.935909457618864e-17 - syst_JES_EtaIntercalibration_Stat98: 7.37334028782071e-18 - syst_JES_EtaIntercalibration_Stat99: 7.37334028782071e-18 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0013520195144671545 - syst_JES_Flavour_Comp: 0.003614767489064822 - syst_JES_Flavour_Response: 0.00038822605206245497 - syst_JES_Gjet_Generator: 0.005476658926754523 - syst_JES_Gjet_OOC: 0.004421950559425106 - syst_JES_Gjet_Purity: 0.0011303050959807267 - syst_JES_Gjet_Stat1: 1.7447811366185733e-06 - syst_JES_Gjet_Stat10: 0.00010274654446744183 - syst_JES_Gjet_Stat11: 0.00011707539056095436 - syst_JES_Gjet_Stat12: 0.00040297286509143515 - syst_JES_Gjet_Stat13: 0.0012812417882663678 - syst_JES_Gjet_Stat14: 0.002018445193707275 - syst_JES_Gjet_Stat15: 0.0002623531732226618 - syst_JES_Gjet_Stat2: 1.4554232066573454e-05 - syst_JES_Gjet_Stat3: 6.754132186843946e-08 - syst_JES_Gjet_Stat4: 5.0956934767512715e-06 - syst_JES_Gjet_Stat5: 7.1576999634870686e-06 - syst_JES_Gjet_Stat6: 2.508285506934966e-05 - syst_JES_Gjet_Stat7: 1.5487581409229137e-05 - syst_JES_Gjet_Stat8: 2.36800135293458e-05 - syst_JES_Gjet_Stat9: 6.546625695730588e-05 - syst_JES_Gjet_Veto: 0.00403052622711973 - syst_JES_Gjet_dPhi: 0.00041647233026336823 - syst_JES_LArESZee: 0.008258773032357771 - syst_JES_LArEsmear: 0.000653477145736559 - syst_JES_LAr_JVT: 0.0008068421329479516 - syst_JES_MJB_Alpha: 4.131807201455557e-05 - syst_JES_MJB_Asym: 0.0004764425253899992 - syst_JES_MJB_Beta: 3.7550861508093255e-05 - syst_JES_MJB_Fragmentation: 0.0007459622426772013 - syst_JES_MJB_Stat1: 4.256514859600516e-06 - syst_JES_MJB_Stat10: 6.259631618553922e-17 - syst_JES_MJB_Stat11: 6.827744283704463e-07 + syst_JES_EtaIntercalibration_Stat96: 4.71637435e-13 + syst_JES_EtaIntercalibration_Stat97: 9.93590946e-17 + syst_JES_EtaIntercalibration_Stat98: 7.37334029e-18 + syst_JES_EtaIntercalibration_Stat99: 7.37334029e-18 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.35201951e-03 + syst_JES_Flavour_Comp: 3.61476749e-03 + syst_JES_Flavour_Response: 3.88226052e-04 + syst_JES_Gjet_Generator: 5.47665893e-03 + syst_JES_Gjet_OOC: 4.42195056e-03 + syst_JES_Gjet_Purity: 1.13030510e-03 + syst_JES_Gjet_Stat1: 1.74478114e-06 + syst_JES_Gjet_Stat10: 1.02746544e-04 + syst_JES_Gjet_Stat11: 1.17075391e-04 + syst_JES_Gjet_Stat12: 4.02972865e-04 + syst_JES_Gjet_Stat13: 1.28124179e-03 + syst_JES_Gjet_Stat14: 2.01844519e-03 + syst_JES_Gjet_Stat15: 2.62353173e-04 + syst_JES_Gjet_Stat2: 1.45542321e-05 + syst_JES_Gjet_Stat3: 6.75413219e-08 + syst_JES_Gjet_Stat4: 5.09569348e-06 + syst_JES_Gjet_Stat5: 7.15769996e-06 + syst_JES_Gjet_Stat6: 2.50828551e-05 + syst_JES_Gjet_Stat7: 1.54875814e-05 + syst_JES_Gjet_Stat8: 2.36800135e-05 + syst_JES_Gjet_Stat9: 6.54662570e-05 + syst_JES_Gjet_Veto: 4.03052623e-03 + syst_JES_Gjet_dPhi: 4.16472330e-04 + syst_JES_LArESZee: 8.25877303e-03 + syst_JES_LArEsmear: 6.53477146e-04 + syst_JES_LAr_JVT: 8.06842133e-04 + syst_JES_MJB_Alpha: 4.13180720e-05 + syst_JES_MJB_Asym: 4.76442525e-04 + syst_JES_MJB_Beta: 3.75508615e-05 + syst_JES_MJB_Fragmentation: 7.45962243e-04 + syst_JES_MJB_Stat1: 4.25651486e-06 + syst_JES_MJB_Stat10: 6.25963162e-17 + syst_JES_MJB_Stat11: 6.82774428e-07 syst_JES_MJB_Stat12: 0.0 syst_JES_MJB_Stat13: 0.0 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 - syst_JES_MJB_Stat16: 1.786610408007297e-08 - syst_JES_MJB_Stat2: 3.333358816569257e-05 - syst_JES_MJB_Stat3: 5.334619574065239e-05 - syst_JES_MJB_Stat4: 3.7585502543138424e-05 - syst_JES_MJB_Stat5: 9.063814786168813e-06 - syst_JES_MJB_Stat6: 2.052629378991736e-11 - syst_JES_MJB_Stat7: 1.0704075039244161e-05 - syst_JES_MJB_Stat8: 3.2796368355251404e-12 - syst_JES_MJB_Stat9: 3.871128026819191e-12 - syst_JES_MJB_Threshold: 0.00045968280368097306 - syst_JES_Pileup_MuOffset: 0.0010344726905530178 - syst_JES_Pileup_NPVOffset: 0.0010193833172560752 - syst_JES_Pileup_Pt_term: 0.0011691328880841564 - syst_JES_Pileup_Rho_topology: 0.0016679534615809876 - syst_JES_PunchThrough_MC15: 0.00034204418939663337 + syst_JES_MJB_Stat16: 1.78661041e-08 + syst_JES_MJB_Stat2: 3.33335882e-05 + syst_JES_MJB_Stat3: 5.33461957e-05 + syst_JES_MJB_Stat4: 3.75855025e-05 + syst_JES_MJB_Stat5: 9.06381479e-06 + syst_JES_MJB_Stat6: 2.05262938e-11 + syst_JES_MJB_Stat7: 1.07040750e-05 + syst_JES_MJB_Stat8: 3.27963684e-12 + syst_JES_MJB_Stat9: 3.87112803e-12 + syst_JES_MJB_Threshold: 4.59682804e-04 + syst_JES_Pileup_MuOffset: 1.03447269e-03 + syst_JES_Pileup_NPVOffset: 1.01938332e-03 + syst_JES_Pileup_Pt_term: 1.16913289e-03 + syst_JES_Pileup_Rho_topology: 1.66795346e-03 + syst_JES_PunchThrough_MC15: 3.42044189e-04 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.0028952662658208142 - syst_JES_Zjet_MuScale: 0.0001900445934511161 - syst_JES_Zjet_MuSmearID: 3.896958003366215e-05 - syst_JES_Zjet_MuSmearMS: 0.0008169824049512939 - syst_JES_Zjet_OOC: 0.0014525790856266655 - syst_JES_Zjet_Stat1: 4.647092316625776e-05 - syst_JES_Zjet_Stat10: 8.840087556127484e-05 - syst_JES_Zjet_Stat11: 0.00012508857381871456 - syst_JES_Zjet_Stat12: 0.0004781378880615925 - syst_JES_Zjet_Stat13: 0.0008872896426759415 - syst_JES_Zjet_Stat2: 1.0366254772095851e-06 - syst_JES_Zjet_Stat3: 2.0420879021237066e-05 - syst_JES_Zjet_Stat4: 1.3493630969831655e-15 - syst_JES_Zjet_Stat5: 1.9348135743528368e-15 - syst_JES_Zjet_Stat6: 2.7176180223129225e-05 - syst_JES_Zjet_Stat7: 1.1156856966345853e-09 - syst_JES_Zjet_Stat8: 6.778162582883358e-07 - syst_JES_Zjet_Stat9: 5.9008550863413005e-05 - syst_JES_Zjet_Veto: 0.0003028096885834401 - syst_JES_Zjet_dPhi: 0.0002473793190628513 - syst_PRW: 3.992e-12 - syst_Unfolding_bias: 1.0401e-18 - syst_cleaning: 0.0009941105610041573 + syst_JES_Zjet_MC: 2.89526627e-03 + syst_JES_Zjet_MuScale: 1.90044593e-04 + syst_JES_Zjet_MuSmearID: 3.89695800e-05 + syst_JES_Zjet_MuSmearMS: 8.16982405e-04 + syst_JES_Zjet_OOC: 1.45257909e-03 + syst_JES_Zjet_Stat1: 4.64709232e-05 + syst_JES_Zjet_Stat10: 8.84008756e-05 + syst_JES_Zjet_Stat11: 1.25088574e-04 + syst_JES_Zjet_Stat12: 4.78137888e-04 + syst_JES_Zjet_Stat13: 8.87289643e-04 + syst_JES_Zjet_Stat2: 1.03662548e-06 + syst_JES_Zjet_Stat3: 2.04208790e-05 + syst_JES_Zjet_Stat4: 1.34936310e-15 + syst_JES_Zjet_Stat5: 1.93481357e-15 + syst_JES_Zjet_Stat6: 2.71761802e-05 + syst_JES_Zjet_Stat7: 1.11568570e-09 + syst_JES_Zjet_Stat8: 6.77816258e-07 + syst_JES_Zjet_Stat9: 5.90085509e-05 + syst_JES_Zjet_Veto: 3.02809689e-04 + syst_JES_Zjet_dPhi: 2.47379319e-04 + syst_PRW: 3.99200000e-12 + syst_Unfolding_bias: 1.04010000e-18 + syst_cleaning: 9.94110561e-04 syst_lumi: 0.003673 -- stat: 0.0010623 +- stat: 1.06230000e-03 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.0006732732042046527 - syst_JER_NP1: 0.0011582379418755026 - syst_JER_NP2: 0.00017069360920392242 - syst_JER_NP3: 0.0001450572939324321 - syst_JER_NP4: 0.00013299841882800714 - syst_JER_NP5: 2.168679819136979e-08 - syst_JER_NP6: 3.054276141739643e-11 - syst_JER_NP7: 2.4549425146019206e-15 - syst_JER_NP8: 8.903972526350248e-05 - syst_JES_EtaIntercalibration_Modelling: 0.004953041565543339 - syst_JES_EtaIntercalibration_NonClosure: 0.0030704978016601807 + syst_JER_NP0: 6.73273204e-04 + syst_JER_NP1: 1.15823794e-03 + syst_JER_NP2: 1.70693609e-04 + syst_JER_NP3: 1.45057294e-04 + syst_JER_NP4: 1.32998419e-04 + syst_JER_NP5: 2.16867982e-08 + syst_JER_NP6: 3.05427614e-11 + syst_JER_NP7: 2.45494251e-15 + syst_JER_NP8: 8.90397253e-05 + syst_JES_EtaIntercalibration_Modelling: 4.95304157e-03 + syst_JES_EtaIntercalibration_NonClosure: 3.07049780e-03 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 1.3717842395945507e-18 + syst_JES_EtaIntercalibration_Stat100: 1.37178424e-18 syst_JES_EtaIntercalibration_Stat101: 0.0 - syst_JES_EtaIntercalibration_Stat102: 6.367152238638558e-14 - syst_JES_EtaIntercalibration_Stat103: 6.81485650370071e-07 - syst_JES_EtaIntercalibration_Stat104: 4.7627387402103007e-07 - syst_JES_EtaIntercalibration_Stat105: 7.68403058296881e-12 - syst_JES_EtaIntercalibration_Stat106: 7.718109825598493e-16 + syst_JES_EtaIntercalibration_Stat102: 6.36715224e-14 + syst_JES_EtaIntercalibration_Stat103: 6.81485650e-07 + syst_JES_EtaIntercalibration_Stat104: 4.76273874e-07 + syst_JES_EtaIntercalibration_Stat105: 7.68403058e-12 + syst_JES_EtaIntercalibration_Stat106: 7.71810983e-16 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 5.404352574545817e-14 + syst_JES_EtaIntercalibration_Stat109: 5.40435257e-14 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 2.2761322131798496e-06 - syst_JES_EtaIntercalibration_Stat111: 2.273786084502014e-06 - syst_JES_EtaIntercalibration_Stat112: 1.4807136007682242e-06 - syst_JES_EtaIntercalibration_Stat113: 1.9627019845101295e-11 - syst_JES_EtaIntercalibration_Stat114: 3.931755333181351e-15 + syst_JES_EtaIntercalibration_Stat110: 2.27613221e-06 + syst_JES_EtaIntercalibration_Stat111: 2.27378608e-06 + syst_JES_EtaIntercalibration_Stat112: 1.48071360e-06 + syst_JES_EtaIntercalibration_Stat113: 1.96270198e-11 + syst_JES_EtaIntercalibration_Stat114: 3.93175533e-15 syst_JES_EtaIntercalibration_Stat115: 0.0 - syst_JES_EtaIntercalibration_Stat116: 4.6323698848429624e-14 - syst_JES_EtaIntercalibration_Stat117: 5.089631298041146e-14 - syst_JES_EtaIntercalibration_Stat118: 1.3717842395945507e-18 - syst_JES_EtaIntercalibration_Stat119: 1.3717842395945507e-18 + syst_JES_EtaIntercalibration_Stat116: 4.63236988e-14 + syst_JES_EtaIntercalibration_Stat117: 5.08963130e-14 + syst_JES_EtaIntercalibration_Stat118: 1.37178424e-18 + syst_JES_EtaIntercalibration_Stat119: 1.37178424e-18 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 1.3717842395945507e-18 - syst_JES_EtaIntercalibration_Stat121: 1.0091794030300062e-16 - syst_JES_EtaIntercalibration_Stat122: 6.817386245018487e-07 - syst_JES_EtaIntercalibration_Stat123: 6.082095362619696e-07 - syst_JES_EtaIntercalibration_Stat124: 2.4671576419029247e-06 - syst_JES_EtaIntercalibration_Stat125: 9.692997059733382e-09 - syst_JES_EtaIntercalibration_Stat126: 9.688090901720525e-13 + syst_JES_EtaIntercalibration_Stat120: 1.37178424e-18 + syst_JES_EtaIntercalibration_Stat121: 1.00917940e-16 + syst_JES_EtaIntercalibration_Stat122: 6.81738625e-07 + syst_JES_EtaIntercalibration_Stat123: 6.08209536e-07 + syst_JES_EtaIntercalibration_Stat124: 2.46715764e-06 + syst_JES_EtaIntercalibration_Stat125: 9.69299706e-09 + syst_JES_EtaIntercalibration_Stat126: 9.68809090e-13 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 5.931725634248435e-09 - syst_JES_EtaIntercalibration_Stat129: 2.4442506965325795e-06 + syst_JES_EtaIntercalibration_Stat128: 5.93172563e-09 + syst_JES_EtaIntercalibration_Stat129: 2.44425070e-06 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 2.8591942693703062e-06 - syst_JES_EtaIntercalibration_Stat131: 8.179982090444941e-07 - syst_JES_EtaIntercalibration_Stat132: 1.472043760310389e-06 - syst_JES_EtaIntercalibration_Stat133: 8.11768677440444e-12 + syst_JES_EtaIntercalibration_Stat130: 2.85919427e-06 + syst_JES_EtaIntercalibration_Stat131: 8.17998209e-07 + syst_JES_EtaIntercalibration_Stat132: 1.47204376e-06 + syst_JES_EtaIntercalibration_Stat133: 8.11768677e-12 syst_JES_EtaIntercalibration_Stat134: 0.0 - syst_JES_EtaIntercalibration_Stat135: 4.6323698848429624e-14 - syst_JES_EtaIntercalibration_Stat136: 4.6323698848429624e-14 - syst_JES_EtaIntercalibration_Stat137: 1.3717842395945507e-18 - syst_JES_EtaIntercalibration_Stat138: 1.3717842395945507e-18 - syst_JES_EtaIntercalibration_Stat139: 1.3717842395945507e-18 + syst_JES_EtaIntercalibration_Stat135: 4.63236988e-14 + syst_JES_EtaIntercalibration_Stat136: 4.63236988e-14 + syst_JES_EtaIntercalibration_Stat137: 1.37178424e-18 + syst_JES_EtaIntercalibration_Stat138: 1.37178424e-18 + syst_JES_EtaIntercalibration_Stat139: 1.37178424e-18 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 5.920149660270423e-17 - syst_JES_EtaIntercalibration_Stat141: 6.395908125512749e-07 - syst_JES_EtaIntercalibration_Stat142: 1.1002052717561391e-06 - syst_JES_EtaIntercalibration_Stat143: 3.968006838451769e-06 - syst_JES_EtaIntercalibration_Stat144: 1.936661836124211e-06 - syst_JES_EtaIntercalibration_Stat145: 1.9768232850459853e-12 - syst_JES_EtaIntercalibration_Stat146: 7.891805558238036e-07 - syst_JES_EtaIntercalibration_Stat147: 2.441973826129183e-06 - syst_JES_EtaIntercalibration_Stat148: 3.280560703218278e-06 - syst_JES_EtaIntercalibration_Stat149: 8.446792231373992e-07 + syst_JES_EtaIntercalibration_Stat140: 5.92014966e-17 + syst_JES_EtaIntercalibration_Stat141: 6.39590813e-07 + syst_JES_EtaIntercalibration_Stat142: 1.10020527e-06 + syst_JES_EtaIntercalibration_Stat143: 3.96800684e-06 + syst_JES_EtaIntercalibration_Stat144: 1.93666184e-06 + syst_JES_EtaIntercalibration_Stat145: 1.97682329e-12 + syst_JES_EtaIntercalibration_Stat146: 7.89180556e-07 + syst_JES_EtaIntercalibration_Stat147: 2.44197383e-06 + syst_JES_EtaIntercalibration_Stat148: 3.28056070e-06 + syst_JES_EtaIntercalibration_Stat149: 8.44679223e-07 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 1.4709741747573274e-06 - syst_JES_EtaIntercalibration_Stat151: 5.1561841512229976e-11 + syst_JES_EtaIntercalibration_Stat150: 1.47097417e-06 + syst_JES_EtaIntercalibration_Stat151: 5.15618415e-11 syst_JES_EtaIntercalibration_Stat152: 0.0 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 1.3717842395945507e-18 + syst_JES_EtaIntercalibration_Stat156: 1.37178424e-18 syst_JES_EtaIntercalibration_Stat157: 0.0 syst_JES_EtaIntercalibration_Stat158: 0.0 - syst_JES_EtaIntercalibration_Stat159: 8.141871575381179e-07 - syst_JES_EtaIntercalibration_Stat16: 6.821682105612536e-07 - syst_JES_EtaIntercalibration_Stat160: 9.820853768894026e-07 - syst_JES_EtaIntercalibration_Stat161: 3.6156105210600323e-06 - syst_JES_EtaIntercalibration_Stat162: 1.49518025669148e-06 - syst_JES_EtaIntercalibration_Stat163: 1.0988379987514084e-09 - syst_JES_EtaIntercalibration_Stat164: 2.2734641511798683e-06 - syst_JES_EtaIntercalibration_Stat165: 7.731686038633489e-06 - syst_JES_EtaIntercalibration_Stat166: 2.422848891284803e-05 - syst_JES_EtaIntercalibration_Stat167: 1.2147578742593109e-05 - syst_JES_EtaIntercalibration_Stat168: 1.6040519216970503e-06 - syst_JES_EtaIntercalibration_Stat169: 5.1561841512229976e-11 - syst_JES_EtaIntercalibration_Stat17: 7.017046167150605e-16 + syst_JES_EtaIntercalibration_Stat159: 8.14187158e-07 + syst_JES_EtaIntercalibration_Stat16: 6.82168211e-07 + syst_JES_EtaIntercalibration_Stat160: 9.82085377e-07 + syst_JES_EtaIntercalibration_Stat161: 3.61561052e-06 + syst_JES_EtaIntercalibration_Stat162: 1.49518026e-06 + syst_JES_EtaIntercalibration_Stat163: 1.09883800e-09 + syst_JES_EtaIntercalibration_Stat164: 2.27346415e-06 + syst_JES_EtaIntercalibration_Stat165: 7.73168604e-06 + syst_JES_EtaIntercalibration_Stat166: 2.42284889e-05 + syst_JES_EtaIntercalibration_Stat167: 1.21475787e-05 + syst_JES_EtaIntercalibration_Stat168: 1.60405192e-06 + syst_JES_EtaIntercalibration_Stat169: 5.15618415e-11 + syst_JES_EtaIntercalibration_Stat17: 7.01704617e-16 syst_JES_EtaIntercalibration_Stat170: 0.0 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 syst_JES_EtaIntercalibration_Stat175: 0.0 - syst_JES_EtaIntercalibration_Stat176: 5.3927401893656994e-12 - syst_JES_EtaIntercalibration_Stat177: 1.6064857671327188e-06 - syst_JES_EtaIntercalibration_Stat178: 9.990438866736537e-06 - syst_JES_EtaIntercalibration_Stat179: 1.3363849557668628e-05 - syst_JES_EtaIntercalibration_Stat18: 3.740206812463717e-19 - syst_JES_EtaIntercalibration_Stat180: 7.896415497395005e-06 - syst_JES_EtaIntercalibration_Stat181: 1.0570539050052036e-07 - syst_JES_EtaIntercalibration_Stat182: 5.806804176997878e-05 - syst_JES_EtaIntercalibration_Stat183: 0.0001104319885721524 - syst_JES_EtaIntercalibration_Stat184: 4.197891613655598e-05 - syst_JES_EtaIntercalibration_Stat185: 4.583810423654102e-06 - syst_JES_EtaIntercalibration_Stat186: 5.156315254132547e-11 + syst_JES_EtaIntercalibration_Stat176: 5.39274019e-12 + syst_JES_EtaIntercalibration_Stat177: 1.60648577e-06 + syst_JES_EtaIntercalibration_Stat178: 9.99043887e-06 + syst_JES_EtaIntercalibration_Stat179: 1.33638496e-05 + syst_JES_EtaIntercalibration_Stat18: 3.74020681e-19 + syst_JES_EtaIntercalibration_Stat180: 7.89641550e-06 + syst_JES_EtaIntercalibration_Stat181: 1.05705391e-07 + syst_JES_EtaIntercalibration_Stat182: 5.80680418e-05 + syst_JES_EtaIntercalibration_Stat183: 1.10431989e-04 + syst_JES_EtaIntercalibration_Stat184: 4.19789161e-05 + syst_JES_EtaIntercalibration_Stat185: 4.58381042e-06 + syst_JES_EtaIntercalibration_Stat186: 5.15631525e-11 syst_JES_EtaIntercalibration_Stat187: 0.0 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 @@ -50332,31 +50332,31 @@ bins: syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 syst_JES_EtaIntercalibration_Stat192: 0.0 - syst_JES_EtaIntercalibration_Stat193: 6.80957227044016e-07 - syst_JES_EtaIntercalibration_Stat194: 5.567284221907483e-06 - syst_JES_EtaIntercalibration_Stat195: 3.023164401748605e-05 - syst_JES_EtaIntercalibration_Stat196: 9.697506483627635e-05 - syst_JES_EtaIntercalibration_Stat197: 4.628331650821924e-05 - syst_JES_EtaIntercalibration_Stat198: 0.0002076257390113278 - syst_JES_EtaIntercalibration_Stat199: 8.046396522667771e-05 + syst_JES_EtaIntercalibration_Stat193: 6.80957227e-07 + syst_JES_EtaIntercalibration_Stat194: 5.56728422e-06 + syst_JES_EtaIntercalibration_Stat195: 3.02316440e-05 + syst_JES_EtaIntercalibration_Stat196: 9.69750648e-05 + syst_JES_EtaIntercalibration_Stat197: 4.62833165e-05 + syst_JES_EtaIntercalibration_Stat198: 2.07625739e-04 + syst_JES_EtaIntercalibration_Stat199: 8.04639652e-05 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 1.0951254482934819e-05 - syst_JES_EtaIntercalibration_Stat201: 5.156315254132547e-11 + syst_JES_EtaIntercalibration_Stat200: 1.09512545e-05 + syst_JES_EtaIntercalibration_Stat201: 5.15631525e-11 syst_JES_EtaIntercalibration_Stat202: 0.0 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 syst_JES_EtaIntercalibration_Stat207: 0.0 - syst_JES_EtaIntercalibration_Stat208: 6.813021851572179e-07 - syst_JES_EtaIntercalibration_Stat209: 5.785922808852534e-06 + syst_JES_EtaIntercalibration_Stat208: 6.81302185e-07 + syst_JES_EtaIntercalibration_Stat209: 5.78592281e-06 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 6.719741364070494e-05 - syst_JES_EtaIntercalibration_Stat211: 0.00022666206122772288 - syst_JES_EtaIntercalibration_Stat212: 6.104664937570284e-05 - syst_JES_EtaIntercalibration_Stat213: 5.04841054194288e-06 - syst_JES_EtaIntercalibration_Stat214: 5.156315254132547e-11 + syst_JES_EtaIntercalibration_Stat210: 6.71974136e-05 + syst_JES_EtaIntercalibration_Stat211: 2.26662061e-04 + syst_JES_EtaIntercalibration_Stat212: 6.10466494e-05 + syst_JES_EtaIntercalibration_Stat213: 5.04841054e-06 + syst_JES_EtaIntercalibration_Stat214: 5.15631525e-11 syst_JES_EtaIntercalibration_Stat215: 0.0 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 @@ -50364,11 +50364,11 @@ bins: syst_JES_EtaIntercalibration_Stat219: 0.0 syst_JES_EtaIntercalibration_Stat22: 0.0 syst_JES_EtaIntercalibration_Stat220: 0.0 - syst_JES_EtaIntercalibration_Stat221: 6.754998149518622e-07 - syst_JES_EtaIntercalibration_Stat222: 4.1586739172481415e-06 - syst_JES_EtaIntercalibration_Stat223: 6.931466132788935e-05 - syst_JES_EtaIntercalibration_Stat224: 9.297474226907004e-05 - syst_JES_EtaIntercalibration_Stat225: 1.635347658083748e-05 + syst_JES_EtaIntercalibration_Stat221: 6.75499815e-07 + syst_JES_EtaIntercalibration_Stat222: 4.15867392e-06 + syst_JES_EtaIntercalibration_Stat223: 6.93146613e-05 + syst_JES_EtaIntercalibration_Stat224: 9.29747423e-05 + syst_JES_EtaIntercalibration_Stat225: 1.63534766e-05 syst_JES_EtaIntercalibration_Stat226: 0.0 syst_JES_EtaIntercalibration_Stat227: 0.0 syst_JES_EtaIntercalibration_Stat228: 0.0 @@ -50377,291 +50377,291 @@ bins: syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 syst_JES_EtaIntercalibration_Stat232: 0.0 - syst_JES_EtaIntercalibration_Stat233: 6.754998149518622e-07 - syst_JES_EtaIntercalibration_Stat234: 8.24282979322645e-06 - syst_JES_EtaIntercalibration_Stat235: 0.00014730977564303058 - syst_JES_EtaIntercalibration_Stat236: 4.399418825254081e-06 + syst_JES_EtaIntercalibration_Stat233: 6.75499815e-07 + syst_JES_EtaIntercalibration_Stat234: 8.24282979e-06 + syst_JES_EtaIntercalibration_Stat235: 1.47309776e-04 + syst_JES_EtaIntercalibration_Stat236: 4.39941883e-06 syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 syst_JES_EtaIntercalibration_Stat239: 0.0 - syst_JES_EtaIntercalibration_Stat24: 1.5735681586763251e-18 + syst_JES_EtaIntercalibration_Stat24: 1.57356816e-18 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 syst_JES_EtaIntercalibration_Stat243: 0.0 - syst_JES_EtaIntercalibration_Stat244: 6.754998149518622e-07 - syst_JES_EtaIntercalibration_Stat245: 2.0624124902647386e-06 - syst_JES_EtaIntercalibration_Stat25: 1.3811430727842788e-16 - syst_JES_EtaIntercalibration_Stat26: 1.4835015168847294e-06 - syst_JES_EtaIntercalibration_Stat27: 8.09458282616906e-12 - syst_JES_EtaIntercalibration_Stat28: 2.9690521270390317e-17 + syst_JES_EtaIntercalibration_Stat244: 6.75499815e-07 + syst_JES_EtaIntercalibration_Stat245: 2.06241249e-06 + syst_JES_EtaIntercalibration_Stat25: 1.38114307e-16 + syst_JES_EtaIntercalibration_Stat26: 1.48350152e-06 + syst_JES_EtaIntercalibration_Stat27: 8.09458283e-12 + syst_JES_EtaIntercalibration_Stat28: 2.96905213e-17 syst_JES_EtaIntercalibration_Stat29: 0.0 - syst_JES_EtaIntercalibration_Stat3: 7.844974147025598e-18 + syst_JES_EtaIntercalibration_Stat3: 7.84497415e-18 syst_JES_EtaIntercalibration_Stat30: 0.0 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 7.30492428092174e-17 - syst_JES_EtaIntercalibration_Stat36: 7.30492428092174e-17 - syst_JES_EtaIntercalibration_Stat37: 1.1421100214457231e-16 - syst_JES_EtaIntercalibration_Stat38: 6.821682109109343e-07 - syst_JES_EtaIntercalibration_Stat39: 6.821682109919943e-07 - syst_JES_EtaIntercalibration_Stat4: 5.017751248099225e-11 - syst_JES_EtaIntercalibration_Stat40: 9.911286840264486e-16 + syst_JES_EtaIntercalibration_Stat35: 7.30492428e-17 + syst_JES_EtaIntercalibration_Stat36: 7.30492428e-17 + syst_JES_EtaIntercalibration_Stat37: 1.14211002e-16 + syst_JES_EtaIntercalibration_Stat38: 6.82168211e-07 + syst_JES_EtaIntercalibration_Stat39: 6.82168211e-07 + syst_JES_EtaIntercalibration_Stat4: 5.01775125e-11 + syst_JES_EtaIntercalibration_Stat40: 9.91128684e-16 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 syst_JES_EtaIntercalibration_Stat44: 0.0 syst_JES_EtaIntercalibration_Stat45: 0.0 - syst_JES_EtaIntercalibration_Stat46: 1.0307751743227036e-17 - syst_JES_EtaIntercalibration_Stat47: 1.67153554254763e-15 - syst_JES_EtaIntercalibration_Stat48: 1.4791713972184497e-06 - syst_JES_EtaIntercalibration_Stat49: 8.075105959812044e-12 - syst_JES_EtaIntercalibration_Stat5: 5.018617222774126e-11 - syst_JES_EtaIntercalibration_Stat50: 1.0926285004520064e-16 + syst_JES_EtaIntercalibration_Stat46: 1.03077517e-17 + syst_JES_EtaIntercalibration_Stat47: 1.67153554e-15 + syst_JES_EtaIntercalibration_Stat48: 1.47917140e-06 + syst_JES_EtaIntercalibration_Stat49: 8.07510596e-12 + syst_JES_EtaIntercalibration_Stat5: 5.01861722e-11 + syst_JES_EtaIntercalibration_Stat50: 1.09262850e-16 syst_JES_EtaIntercalibration_Stat51: 0.0 syst_JES_EtaIntercalibration_Stat52: 0.0 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 1.3717842395945507e-18 - syst_JES_EtaIntercalibration_Stat57: 7.30492428092174e-17 - syst_JES_EtaIntercalibration_Stat58: 7.30492428092174e-17 - syst_JES_EtaIntercalibration_Stat59: 1.4001892836327522e-16 + syst_JES_EtaIntercalibration_Stat56: 1.37178424e-18 + syst_JES_EtaIntercalibration_Stat57: 7.30492428e-17 + syst_JES_EtaIntercalibration_Stat58: 7.30492428e-17 + syst_JES_EtaIntercalibration_Stat59: 1.40018928e-16 syst_JES_EtaIntercalibration_Stat6: 0.0 - syst_JES_EtaIntercalibration_Stat60: 6.820832035430214e-07 - syst_JES_EtaIntercalibration_Stat61: 6.820846642790493e-07 - syst_JES_EtaIntercalibration_Stat62: 3.796443961129941e-15 - syst_JES_EtaIntercalibration_Stat63: 2.7190550918103886e-18 + syst_JES_EtaIntercalibration_Stat60: 6.82083204e-07 + syst_JES_EtaIntercalibration_Stat61: 6.82084664e-07 + syst_JES_EtaIntercalibration_Stat62: 3.79644396e-15 + syst_JES_EtaIntercalibration_Stat63: 2.71905509e-18 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 7.27375851950008e-17 - syst_JES_EtaIntercalibration_Stat69: 1.4705282981638698e-06 + syst_JES_EtaIntercalibration_Stat68: 7.27375852e-17 + syst_JES_EtaIntercalibration_Stat69: 1.47052830e-06 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 1.469763996215946e-06 - syst_JES_EtaIntercalibration_Stat71: 1.4826355661901717e-06 - syst_JES_EtaIntercalibration_Stat72: 8.072086023666054e-12 + syst_JES_EtaIntercalibration_Stat70: 1.46976400e-06 + syst_JES_EtaIntercalibration_Stat71: 1.48263557e-06 + syst_JES_EtaIntercalibration_Stat72: 8.07208602e-12 syst_JES_EtaIntercalibration_Stat73: 0.0 syst_JES_EtaIntercalibration_Stat74: 0.0 syst_JES_EtaIntercalibration_Stat75: 0.0 - syst_JES_EtaIntercalibration_Stat76: 1.485233567490312e-17 - syst_JES_EtaIntercalibration_Stat77: 1.3717842395945507e-18 - syst_JES_EtaIntercalibration_Stat78: 1.3717842395945507e-18 - syst_JES_EtaIntercalibration_Stat79: 7.30492428092174e-17 + syst_JES_EtaIntercalibration_Stat76: 1.48523357e-17 + syst_JES_EtaIntercalibration_Stat77: 1.37178424e-18 + syst_JES_EtaIntercalibration_Stat78: 1.37178424e-18 + syst_JES_EtaIntercalibration_Stat79: 7.30492428e-17 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 7.216589689735728e-17 - syst_JES_EtaIntercalibration_Stat81: 8.507753684140132e-16 - syst_JES_EtaIntercalibration_Stat82: 6.815652620869786e-07 - syst_JES_EtaIntercalibration_Stat83: 6.755676701947538e-08 - syst_JES_EtaIntercalibration_Stat84: 1.3505469558664e-12 - syst_JES_EtaIntercalibration_Stat85: 7.508734297469848e-18 + syst_JES_EtaIntercalibration_Stat80: 7.21658969e-17 + syst_JES_EtaIntercalibration_Stat81: 8.50775368e-16 + syst_JES_EtaIntercalibration_Stat82: 6.81565262e-07 + syst_JES_EtaIntercalibration_Stat83: 6.75567670e-08 + syst_JES_EtaIntercalibration_Stat84: 1.35054696e-12 + syst_JES_EtaIntercalibration_Stat85: 7.50873430e-18 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 1.1116132061108306e-16 + syst_JES_EtaIntercalibration_Stat89: 1.11161321e-16 syst_JES_EtaIntercalibration_Stat9: 0.0 - syst_JES_EtaIntercalibration_Stat90: 1.470623155481126e-06 - syst_JES_EtaIntercalibration_Stat91: 1.4685393946595373e-06 - syst_JES_EtaIntercalibration_Stat92: 3.366655561161551e-11 - syst_JES_EtaIntercalibration_Stat93: 8.336146102140083e-12 + syst_JES_EtaIntercalibration_Stat90: 1.47062316e-06 + syst_JES_EtaIntercalibration_Stat91: 1.46853939e-06 + syst_JES_EtaIntercalibration_Stat92: 3.36665556e-11 + syst_JES_EtaIntercalibration_Stat93: 8.33614610e-12 syst_JES_EtaIntercalibration_Stat94: 0.0 syst_JES_EtaIntercalibration_Stat95: 0.0 - syst_JES_EtaIntercalibration_Stat96: 5.089631298041146e-14 - syst_JES_EtaIntercalibration_Stat97: 1.485233567490312e-17 - syst_JES_EtaIntercalibration_Stat98: 1.3717842395945507e-18 - syst_JES_EtaIntercalibration_Stat99: 1.3717842395945507e-18 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0007672006435737656 - syst_JES_Flavour_Comp: 0.002017844889975441 - syst_JES_Flavour_Response: 6.5627537665221e-05 - syst_JES_Gjet_Generator: 0.0029400062499933565 - syst_JES_Gjet_OOC: 0.002387112691097762 - syst_JES_Gjet_Purity: 0.0005701297396207288 - syst_JES_Gjet_Stat1: 8.641884486036595e-07 - syst_JES_Gjet_Stat10: 5.1756103746321555e-05 - syst_JES_Gjet_Stat11: 5.6532965604149936e-05 - syst_JES_Gjet_Stat12: 0.000183729366188424 - syst_JES_Gjet_Stat13: 0.0006533872722206946 - syst_JES_Gjet_Stat14: 0.0012484172569698 - syst_JES_Gjet_Stat15: 0.0003851480332287834 - syst_JES_Gjet_Stat2: 1.0938414146026837e-05 - syst_JES_Gjet_Stat3: 2.6465736349069027e-07 - syst_JES_Gjet_Stat4: 2.6335832530412685e-06 - syst_JES_Gjet_Stat5: 3.677143864649956e-06 - syst_JES_Gjet_Stat6: 9.686170434402856e-06 - syst_JES_Gjet_Stat7: 3.878945604155851e-06 - syst_JES_Gjet_Stat8: 1.1963603251111264e-05 - syst_JES_Gjet_Stat9: 3.4542882045365006e-05 - syst_JES_Gjet_Veto: 0.002256965385201997 - syst_JES_Gjet_dPhi: 0.0002193560290942558 - syst_JES_LArESZee: 0.004455195057458203 - syst_JES_LArEsmear: 0.00036278038811380086 - syst_JES_LAr_JVT: 0.0004463535006023813 - syst_JES_MJB_Alpha: 2.102709680388617e-05 - syst_JES_MJB_Asym: 0.00030296063688208734 - syst_JES_MJB_Beta: 2.566899296817076e-05 - syst_JES_MJB_Fragmentation: 0.00036969658843435385 - syst_JES_MJB_Stat1: 6.457085410616774e-07 - syst_JES_MJB_Stat10: 4.62803975782404e-14 - syst_JES_MJB_Stat11: 3.529919743943161e-07 + syst_JES_EtaIntercalibration_Stat96: 5.08963130e-14 + syst_JES_EtaIntercalibration_Stat97: 1.48523357e-17 + syst_JES_EtaIntercalibration_Stat98: 1.37178424e-18 + syst_JES_EtaIntercalibration_Stat99: 1.37178424e-18 + syst_JES_EtaIntercalibration_TotalStat_MJB: 7.67200644e-04 + syst_JES_Flavour_Comp: 2.01784489e-03 + syst_JES_Flavour_Response: 6.56275377e-05 + syst_JES_Gjet_Generator: 2.94000625e-03 + syst_JES_Gjet_OOC: 2.38711269e-03 + syst_JES_Gjet_Purity: 5.70129740e-04 + syst_JES_Gjet_Stat1: 8.64188449e-07 + syst_JES_Gjet_Stat10: 5.17561037e-05 + syst_JES_Gjet_Stat11: 5.65329656e-05 + syst_JES_Gjet_Stat12: 1.83729366e-04 + syst_JES_Gjet_Stat13: 6.53387272e-04 + syst_JES_Gjet_Stat14: 1.24841726e-03 + syst_JES_Gjet_Stat15: 3.85148033e-04 + syst_JES_Gjet_Stat2: 1.09384141e-05 + syst_JES_Gjet_Stat3: 2.64657363e-07 + syst_JES_Gjet_Stat4: 2.63358325e-06 + syst_JES_Gjet_Stat5: 3.67714386e-06 + syst_JES_Gjet_Stat6: 9.68617043e-06 + syst_JES_Gjet_Stat7: 3.87894560e-06 + syst_JES_Gjet_Stat8: 1.19636033e-05 + syst_JES_Gjet_Stat9: 3.45428820e-05 + syst_JES_Gjet_Veto: 2.25696539e-03 + syst_JES_Gjet_dPhi: 2.19356029e-04 + syst_JES_LArESZee: 4.45519506e-03 + syst_JES_LArEsmear: 3.62780388e-04 + syst_JES_LAr_JVT: 4.46353501e-04 + syst_JES_MJB_Alpha: 2.10270968e-05 + syst_JES_MJB_Asym: 3.02960637e-04 + syst_JES_MJB_Beta: 2.56689930e-05 + syst_JES_MJB_Fragmentation: 3.69696588e-04 + syst_JES_MJB_Stat1: 6.45708541e-07 + syst_JES_MJB_Stat10: 4.62803976e-14 + syst_JES_MJB_Stat11: 3.52991974e-07 syst_JES_MJB_Stat12: 0.0 syst_JES_MJB_Stat13: 0.0 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 - syst_JES_MJB_Stat16: 3.782798963730428e-08 - syst_JES_MJB_Stat2: 1.6307485542152106e-05 - syst_JES_MJB_Stat3: 2.6004039590032933e-05 - syst_JES_MJB_Stat4: 1.8472322935439127e-05 - syst_JES_MJB_Stat5: 4.587195245918918e-06 - syst_JES_MJB_Stat6: 4.029749961225883e-10 - syst_JES_MJB_Stat7: 1.6367939657204532e-05 - syst_JES_MJB_Stat8: 1.8619445002930073e-10 - syst_JES_MJB_Stat9: 2.1979315985603473e-10 - syst_JES_MJB_Threshold: 0.0002508089711314171 - syst_JES_Pileup_MuOffset: 0.0005671124293294938 - syst_JES_Pileup_NPVOffset: 0.000576108705020155 - syst_JES_Pileup_Pt_term: 0.0006272849591692759 - syst_JES_Pileup_Rho_topology: 0.00088891540092407 - syst_JES_PunchThrough_MC15: 0.0002337308708750301 + syst_JES_MJB_Stat16: 3.78279896e-08 + syst_JES_MJB_Stat2: 1.63074855e-05 + syst_JES_MJB_Stat3: 2.60040396e-05 + syst_JES_MJB_Stat4: 1.84723229e-05 + syst_JES_MJB_Stat5: 4.58719525e-06 + syst_JES_MJB_Stat6: 4.02974996e-10 + syst_JES_MJB_Stat7: 1.63679397e-05 + syst_JES_MJB_Stat8: 1.86194450e-10 + syst_JES_MJB_Stat9: 2.19793160e-10 + syst_JES_MJB_Threshold: 2.50808971e-04 + syst_JES_Pileup_MuOffset: 5.67112429e-04 + syst_JES_Pileup_NPVOffset: 5.76108705e-04 + syst_JES_Pileup_Pt_term: 6.27284959e-04 + syst_JES_Pileup_Rho_topology: 8.88915401e-04 + syst_JES_PunchThrough_MC15: 2.33730871e-04 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.0014576594252430847 - syst_JES_Zjet_MuScale: 9.13477108361233e-05 - syst_JES_Zjet_MuSmearID: 1.9702095237562935e-05 - syst_JES_Zjet_MuSmearMS: 0.0004021665658654384 - syst_JES_Zjet_OOC: 0.0007584608411117874 - syst_JES_Zjet_Stat1: 2.2889051421900226e-05 - syst_JES_Zjet_Stat10: 4.209870870941293e-05 - syst_JES_Zjet_Stat11: 6.286437942109983e-05 - syst_JES_Zjet_Stat12: 0.00022583219433907112 - syst_JES_Zjet_Stat13: 0.00044034287492816326 - syst_JES_Zjet_Stat2: 3.4337068060625093e-07 - syst_JES_Zjet_Stat3: 1.039143882000948e-05 - syst_JES_Zjet_Stat4: 2.0121743730352991e-16 - syst_JES_Zjet_Stat5: 2.907474107795287e-16 - syst_JES_Zjet_Stat6: 1.3865970814721197e-05 - syst_JES_Zjet_Stat7: 1.2329389938983192e-10 - syst_JES_Zjet_Stat8: 9.790752473635517e-08 - syst_JES_Zjet_Stat9: 3.1500409521147496e-05 - syst_JES_Zjet_Veto: 0.00014128227171163407 - syst_JES_Zjet_dPhi: 0.0001184197047581187 - syst_PRW: 7.483e-10 - syst_Unfolding_bias: 4.748e-15 - syst_cleaning: 0.000538494596073164 + syst_JES_Zjet_MC: 1.45765943e-03 + syst_JES_Zjet_MuScale: 9.13477108e-05 + syst_JES_Zjet_MuSmearID: 1.97020952e-05 + syst_JES_Zjet_MuSmearMS: 4.02166566e-04 + syst_JES_Zjet_OOC: 7.58460841e-04 + syst_JES_Zjet_Stat1: 2.28890514e-05 + syst_JES_Zjet_Stat10: 4.20987087e-05 + syst_JES_Zjet_Stat11: 6.28643794e-05 + syst_JES_Zjet_Stat12: 2.25832194e-04 + syst_JES_Zjet_Stat13: 4.40342875e-04 + syst_JES_Zjet_Stat2: 3.43370681e-07 + syst_JES_Zjet_Stat3: 1.03914388e-05 + syst_JES_Zjet_Stat4: 2.01217437e-16 + syst_JES_Zjet_Stat5: 2.90747411e-16 + syst_JES_Zjet_Stat6: 1.38659708e-05 + syst_JES_Zjet_Stat7: 1.23293899e-10 + syst_JES_Zjet_Stat8: 9.79075247e-08 + syst_JES_Zjet_Stat9: 3.15004095e-05 + syst_JES_Zjet_Veto: 1.41282272e-04 + syst_JES_Zjet_dPhi: 1.18419705e-04 + syst_PRW: 7.48300000e-10 + syst_Unfolding_bias: 4.74800000e-15 + syst_cleaning: 5.38494596e-04 syst_lumi: 0.001869 -- stat: 0.0006215 +- stat: 6.21500000e-04 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.0003551507144861178 - syst_JER_NP1: 0.0007057517747055264 - syst_JER_NP2: 9.050831520135187e-05 - syst_JER_NP3: 6.306609593916131e-05 - syst_JER_NP4: 5.820336791904744e-05 - syst_JER_NP5: 2.462159806179932e-09 - syst_JER_NP6: 3.4843999483411777e-12 - syst_JER_NP7: 3.8289936367144827e-16 - syst_JER_NP8: 4.3721304589410406e-05 - syst_JES_EtaIntercalibration_Modelling: 0.0026093416794279738 - syst_JES_EtaIntercalibration_NonClosure: 0.0014335884372789843 + syst_JER_NP0: 3.55150714e-04 + syst_JER_NP1: 7.05751775e-04 + syst_JER_NP2: 9.05083152e-05 + syst_JER_NP3: 6.30660959e-05 + syst_JER_NP4: 5.82033679e-05 + syst_JER_NP5: 2.46215981e-09 + syst_JER_NP6: 3.48439995e-12 + syst_JER_NP7: 3.82899364e-16 + syst_JER_NP8: 4.37213046e-05 + syst_JES_EtaIntercalibration_Modelling: 2.60934168e-03 + syst_JES_EtaIntercalibration_NonClosure: 1.43358844e-03 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 2.617994795640358e-19 + syst_JES_EtaIntercalibration_Stat100: 2.61799480e-19 syst_JES_EtaIntercalibration_Stat101: 0.0 - syst_JES_EtaIntercalibration_Stat102: 7.263343942702975e-15 - syst_JES_EtaIntercalibration_Stat103: 6.355772305897413e-07 - syst_JES_EtaIntercalibration_Stat104: 7.472002141327315e-08 - syst_JES_EtaIntercalibration_Stat105: 8.490668878245105e-13 - syst_JES_EtaIntercalibration_Stat106: 9.738398777519845e-17 + syst_JES_EtaIntercalibration_Stat102: 7.26334394e-15 + syst_JES_EtaIntercalibration_Stat103: 6.35577231e-07 + syst_JES_EtaIntercalibration_Stat104: 7.47200214e-08 + syst_JES_EtaIntercalibration_Stat105: 8.49066888e-13 + syst_JES_EtaIntercalibration_Stat106: 9.73839878e-17 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 6.099730567820189e-15 + syst_JES_EtaIntercalibration_Stat109: 6.09973057e-15 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 1.1677102399168855e-06 - syst_JES_EtaIntercalibration_Stat111: 1.1666320935594905e-06 - syst_JES_EtaIntercalibration_Stat112: 4.144016104252009e-07 - syst_JES_EtaIntercalibration_Stat113: 2.169457118151912e-12 - syst_JES_EtaIntercalibration_Stat114: 4.869660845479898e-16 + syst_JES_EtaIntercalibration_Stat110: 1.16771024e-06 + syst_JES_EtaIntercalibration_Stat111: 1.16663209e-06 + syst_JES_EtaIntercalibration_Stat112: 4.14401610e-07 + syst_JES_EtaIntercalibration_Stat113: 2.16945712e-12 + syst_JES_EtaIntercalibration_Stat114: 4.86966085e-16 syst_JES_EtaIntercalibration_Stat115: 0.0 - syst_JES_EtaIntercalibration_Stat116: 4.942406979397791e-15 - syst_JES_EtaIntercalibration_Stat117: 5.5373664317977005e-15 - syst_JES_EtaIntercalibration_Stat118: 2.617994795640358e-19 - syst_JES_EtaIntercalibration_Stat119: 2.617994795640358e-19 + syst_JES_EtaIntercalibration_Stat116: 4.94240698e-15 + syst_JES_EtaIntercalibration_Stat117: 5.53736643e-15 + syst_JES_EtaIntercalibration_Stat118: 2.61799480e-19 + syst_JES_EtaIntercalibration_Stat119: 2.61799480e-19 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 2.617994795640358e-19 - syst_JES_EtaIntercalibration_Stat121: 1.3518656553075088e-17 - syst_JES_EtaIntercalibration_Stat122: 6.356630249761189e-07 - syst_JES_EtaIntercalibration_Stat123: 1.9045747734074397e-07 - syst_JES_EtaIntercalibration_Stat124: 1.3954664998845368e-06 - syst_JES_EtaIntercalibration_Stat125: 1.486779993812131e-09 - syst_JES_EtaIntercalibration_Stat126: 1.037206838918834e-13 + syst_JES_EtaIntercalibration_Stat120: 2.61799480e-19 + syst_JES_EtaIntercalibration_Stat121: 1.35186566e-17 + syst_JES_EtaIntercalibration_Stat122: 6.35663025e-07 + syst_JES_EtaIntercalibration_Stat123: 1.90457477e-07 + syst_JES_EtaIntercalibration_Stat124: 1.39546650e-06 + syst_JES_EtaIntercalibration_Stat125: 1.48677999e-09 + syst_JES_EtaIntercalibration_Stat126: 1.03720684e-13 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 8.558604559155657e-10 - syst_JES_EtaIntercalibration_Stat129: 1.4562128553202653e-06 + syst_JES_EtaIntercalibration_Stat128: 8.55860456e-10 + syst_JES_EtaIntercalibration_Stat129: 1.45621286e-06 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 1.5557155106252555e-06 - syst_JES_EtaIntercalibration_Stat131: 7.384465925170215e-07 - syst_JES_EtaIntercalibration_Stat132: 4.135266245394605e-07 - syst_JES_EtaIntercalibration_Stat133: 8.968430611718015e-13 + syst_JES_EtaIntercalibration_Stat130: 1.55571551e-06 + syst_JES_EtaIntercalibration_Stat131: 7.38446593e-07 + syst_JES_EtaIntercalibration_Stat132: 4.13526625e-07 + syst_JES_EtaIntercalibration_Stat133: 8.96843061e-13 syst_JES_EtaIntercalibration_Stat134: 0.0 - syst_JES_EtaIntercalibration_Stat135: 4.942406979397791e-15 - syst_JES_EtaIntercalibration_Stat136: 4.942406979397791e-15 - syst_JES_EtaIntercalibration_Stat137: 2.617994795640358e-19 - syst_JES_EtaIntercalibration_Stat138: 2.617994795640358e-19 - syst_JES_EtaIntercalibration_Stat139: 2.617994795640358e-19 + syst_JES_EtaIntercalibration_Stat135: 4.94240698e-15 + syst_JES_EtaIntercalibration_Stat136: 4.94240698e-15 + syst_JES_EtaIntercalibration_Stat137: 2.61799480e-19 + syst_JES_EtaIntercalibration_Stat138: 2.61799480e-19 + syst_JES_EtaIntercalibration_Stat139: 2.61799480e-19 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 7.180216622776781e-18 - syst_JES_EtaIntercalibration_Stat141: 6.098840522591159e-07 - syst_JES_EtaIntercalibration_Stat142: 4.815758585103701e-07 - syst_JES_EtaIntercalibration_Stat143: 1.2025229841878284e-06 - syst_JES_EtaIntercalibration_Stat144: 9.434794645353973e-07 - syst_JES_EtaIntercalibration_Stat145: 2.1427023362742198e-13 - syst_JES_EtaIntercalibration_Stat146: 7.540543690109354e-07 - syst_JES_EtaIntercalibration_Stat147: 1.4560803274544988e-06 - syst_JES_EtaIntercalibration_Stat148: 1.5706790911895403e-06 - syst_JES_EtaIntercalibration_Stat149: 7.320361056669268e-07 + syst_JES_EtaIntercalibration_Stat140: 7.18021662e-18 + syst_JES_EtaIntercalibration_Stat141: 6.09884052e-07 + syst_JES_EtaIntercalibration_Stat142: 4.81575859e-07 + syst_JES_EtaIntercalibration_Stat143: 1.20252298e-06 + syst_JES_EtaIntercalibration_Stat144: 9.43479465e-07 + syst_JES_EtaIntercalibration_Stat145: 2.14270234e-13 + syst_JES_EtaIntercalibration_Stat146: 7.54054369e-07 + syst_JES_EtaIntercalibration_Stat147: 1.45608033e-06 + syst_JES_EtaIntercalibration_Stat148: 1.57067909e-06 + syst_JES_EtaIntercalibration_Stat149: 7.32036106e-07 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 4.1333113037564384e-07 - syst_JES_EtaIntercalibration_Stat151: 5.913925091653518e-12 + syst_JES_EtaIntercalibration_Stat150: 4.13331130e-07 + syst_JES_EtaIntercalibration_Stat151: 5.91392509e-12 syst_JES_EtaIntercalibration_Stat152: 0.0 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 2.617994795640358e-19 + syst_JES_EtaIntercalibration_Stat156: 2.61799480e-19 syst_JES_EtaIntercalibration_Stat157: 0.0 syst_JES_EtaIntercalibration_Stat158: 0.0 - syst_JES_EtaIntercalibration_Stat159: 6.539554256025406e-07 - syst_JES_EtaIntercalibration_Stat16: 6.358358514585776e-07 - syst_JES_EtaIntercalibration_Stat160: 4.975745471786112e-07 - syst_JES_EtaIntercalibration_Stat161: 1.1034296352735865e-06 - syst_JES_EtaIntercalibration_Stat162: 6.610617369051092e-07 - syst_JES_EtaIntercalibration_Stat163: 1.4080864914840992e-10 - syst_JES_EtaIntercalibration_Stat164: 1.1673434751249309e-06 - syst_JES_EtaIntercalibration_Stat165: 3.5623552251284543e-06 - syst_JES_EtaIntercalibration_Stat166: 1.068063625211532e-05 - syst_JES_EtaIntercalibration_Stat167: 3.836901206377355e-06 - syst_JES_EtaIntercalibration_Stat168: 4.208330057160441e-07 - syst_JES_EtaIntercalibration_Stat169: 5.913925091653518e-12 - syst_JES_EtaIntercalibration_Stat17: 8.82533772581537e-17 + syst_JES_EtaIntercalibration_Stat159: 6.53955426e-07 + syst_JES_EtaIntercalibration_Stat16: 6.35835851e-07 + syst_JES_EtaIntercalibration_Stat160: 4.97574547e-07 + syst_JES_EtaIntercalibration_Stat161: 1.10342964e-06 + syst_JES_EtaIntercalibration_Stat162: 6.61061737e-07 + syst_JES_EtaIntercalibration_Stat163: 1.40808649e-10 + syst_JES_EtaIntercalibration_Stat164: 1.16734348e-06 + syst_JES_EtaIntercalibration_Stat165: 3.56235523e-06 + syst_JES_EtaIntercalibration_Stat166: 1.06806363e-05 + syst_JES_EtaIntercalibration_Stat167: 3.83690121e-06 + syst_JES_EtaIntercalibration_Stat168: 4.20833006e-07 + syst_JES_EtaIntercalibration_Stat169: 5.91392509e-12 + syst_JES_EtaIntercalibration_Stat17: 8.82533773e-17 syst_JES_EtaIntercalibration_Stat170: 0.0 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 syst_JES_EtaIntercalibration_Stat175: 0.0 - syst_JES_EtaIntercalibration_Stat176: 5.959120803440722e-13 - syst_JES_EtaIntercalibration_Stat177: 9.707793296110089e-07 - syst_JES_EtaIntercalibration_Stat178: 3.0363698720676303e-06 - syst_JES_EtaIntercalibration_Stat179: 5.8341204992697915e-06 - syst_JES_EtaIntercalibration_Stat18: 6.52658461601472e-20 - syst_JES_EtaIntercalibration_Stat180: 1.3831590906327442e-06 - syst_JES_EtaIntercalibration_Stat181: 1.9640948144883434e-08 - syst_JES_EtaIntercalibration_Stat182: 2.3951820390108137e-05 - syst_JES_EtaIntercalibration_Stat183: 4.623501351789572e-05 - syst_JES_EtaIntercalibration_Stat184: 1.8558219203361084e-05 - syst_JES_EtaIntercalibration_Stat185: 1.4585932220807827e-06 - syst_JES_EtaIntercalibration_Stat186: 5.914087482443932e-12 + syst_JES_EtaIntercalibration_Stat176: 5.95912080e-13 + syst_JES_EtaIntercalibration_Stat177: 9.70779330e-07 + syst_JES_EtaIntercalibration_Stat178: 3.03636987e-06 + syst_JES_EtaIntercalibration_Stat179: 5.83412050e-06 + syst_JES_EtaIntercalibration_Stat18: 6.52658462e-20 + syst_JES_EtaIntercalibration_Stat180: 1.38315909e-06 + syst_JES_EtaIntercalibration_Stat181: 1.96409481e-08 + syst_JES_EtaIntercalibration_Stat182: 2.39518204e-05 + syst_JES_EtaIntercalibration_Stat183: 4.62350135e-05 + syst_JES_EtaIntercalibration_Stat184: 1.85582192e-05 + syst_JES_EtaIntercalibration_Stat185: 1.45859322e-06 + syst_JES_EtaIntercalibration_Stat186: 5.91408748e-12 syst_JES_EtaIntercalibration_Stat187: 0.0 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 @@ -50669,31 +50669,31 @@ bins: syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 syst_JES_EtaIntercalibration_Stat192: 0.0 - syst_JES_EtaIntercalibration_Stat193: 6.355762046296122e-07 - syst_JES_EtaIntercalibration_Stat194: 1.842399768644145e-06 - syst_JES_EtaIntercalibration_Stat195: 1.2264373893517761e-05 - syst_JES_EtaIntercalibration_Stat196: 4.249333854558853e-05 - syst_JES_EtaIntercalibration_Stat197: 2.088540878220965e-05 - syst_JES_EtaIntercalibration_Stat198: 8.945744505070552e-05 - syst_JES_EtaIntercalibration_Stat199: 3.557753785747406e-05 + syst_JES_EtaIntercalibration_Stat193: 6.35576205e-07 + syst_JES_EtaIntercalibration_Stat194: 1.84239977e-06 + syst_JES_EtaIntercalibration_Stat195: 1.22643739e-05 + syst_JES_EtaIntercalibration_Stat196: 4.24933385e-05 + syst_JES_EtaIntercalibration_Stat197: 2.08854088e-05 + syst_JES_EtaIntercalibration_Stat198: 8.94574451e-05 + syst_JES_EtaIntercalibration_Stat199: 3.55775379e-05 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 5.043902730029595e-06 - syst_JES_EtaIntercalibration_Stat201: 5.914087482443932e-12 + syst_JES_EtaIntercalibration_Stat200: 5.04390273e-06 + syst_JES_EtaIntercalibration_Stat201: 5.91408748e-12 syst_JES_EtaIntercalibration_Stat202: 0.0 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 syst_JES_EtaIntercalibration_Stat207: 0.0 - syst_JES_EtaIntercalibration_Stat208: 6.356626463777779e-07 - syst_JES_EtaIntercalibration_Stat209: 2.4530219628042467e-06 + syst_JES_EtaIntercalibration_Stat208: 6.35662646e-07 + syst_JES_EtaIntercalibration_Stat209: 2.45302196e-06 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 2.908382153362931e-05 - syst_JES_EtaIntercalibration_Stat211: 9.652722452759119e-05 - syst_JES_EtaIntercalibration_Stat212: 3.180606545927993e-05 - syst_JES_EtaIntercalibration_Stat213: 2.2419003339800814e-06 - syst_JES_EtaIntercalibration_Stat214: 5.914087482443932e-12 + syst_JES_EtaIntercalibration_Stat210: 2.90838215e-05 + syst_JES_EtaIntercalibration_Stat211: 9.65272245e-05 + syst_JES_EtaIntercalibration_Stat212: 3.18060655e-05 + syst_JES_EtaIntercalibration_Stat213: 2.24190033e-06 + syst_JES_EtaIntercalibration_Stat214: 5.91408748e-12 syst_JES_EtaIntercalibration_Stat215: 0.0 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 @@ -50701,11 +50701,11 @@ bins: syst_JES_EtaIntercalibration_Stat219: 0.0 syst_JES_EtaIntercalibration_Stat22: 0.0 syst_JES_EtaIntercalibration_Stat220: 0.0 - syst_JES_EtaIntercalibration_Stat221: 6.347100184336151e-07 - syst_JES_EtaIntercalibration_Stat222: 2.0425578939163513e-06 - syst_JES_EtaIntercalibration_Stat223: 3.375711480562283e-05 - syst_JES_EtaIntercalibration_Stat224: 6.975890964600866e-05 - syst_JES_EtaIntercalibration_Stat225: 9.341226989400269e-06 + syst_JES_EtaIntercalibration_Stat221: 6.34710018e-07 + syst_JES_EtaIntercalibration_Stat222: 2.04255789e-06 + syst_JES_EtaIntercalibration_Stat223: 3.37571148e-05 + syst_JES_EtaIntercalibration_Stat224: 6.97589096e-05 + syst_JES_EtaIntercalibration_Stat225: 9.34122699e-06 syst_JES_EtaIntercalibration_Stat226: 0.0 syst_JES_EtaIntercalibration_Stat227: 0.0 syst_JES_EtaIntercalibration_Stat228: 0.0 @@ -50714,291 +50714,291 @@ bins: syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 syst_JES_EtaIntercalibration_Stat232: 0.0 - syst_JES_EtaIntercalibration_Stat233: 6.347100184336151e-07 - syst_JES_EtaIntercalibration_Stat234: 3.847750872762996e-06 - syst_JES_EtaIntercalibration_Stat235: 0.00010156578606991628 - syst_JES_EtaIntercalibration_Stat236: 3.374908406164529e-06 + syst_JES_EtaIntercalibration_Stat233: 6.34710018e-07 + syst_JES_EtaIntercalibration_Stat234: 3.84775087e-06 + syst_JES_EtaIntercalibration_Stat235: 1.01565786e-04 + syst_JES_EtaIntercalibration_Stat236: 3.37490841e-06 syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 syst_JES_EtaIntercalibration_Stat239: 0.0 - syst_JES_EtaIntercalibration_Stat24: 2.7608889872647903e-19 + syst_JES_EtaIntercalibration_Stat24: 2.76088899e-19 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 syst_JES_EtaIntercalibration_Stat243: 0.0 - syst_JES_EtaIntercalibration_Stat244: 6.347100184336151e-07 - syst_JES_EtaIntercalibration_Stat245: 1.3382818873466082e-06 - syst_JES_EtaIntercalibration_Stat25: 1.8820376271477678e-17 - syst_JES_EtaIntercalibration_Stat26: 4.157787963839405e-07 - syst_JES_EtaIntercalibration_Stat27: 8.944101071540254e-13 - syst_JES_EtaIntercalibration_Stat28: 4.269582264718645e-18 + syst_JES_EtaIntercalibration_Stat244: 6.34710018e-07 + syst_JES_EtaIntercalibration_Stat245: 1.33828189e-06 + syst_JES_EtaIntercalibration_Stat25: 1.88203763e-17 + syst_JES_EtaIntercalibration_Stat26: 4.15778796e-07 + syst_JES_EtaIntercalibration_Stat27: 8.94410107e-13 + syst_JES_EtaIntercalibration_Stat28: 4.26958226e-18 syst_JES_EtaIntercalibration_Stat29: 0.0 - syst_JES_EtaIntercalibration_Stat3: 1.1337830395626845e-18 + syst_JES_EtaIntercalibration_Stat3: 1.13378304e-18 syst_JES_EtaIntercalibration_Stat30: 0.0 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 8.97288920861057e-18 - syst_JES_EtaIntercalibration_Stat36: 8.97288920861057e-18 - syst_JES_EtaIntercalibration_Stat37: 1.5329167133523594e-17 - syst_JES_EtaIntercalibration_Stat38: 6.358358515028464e-07 - syst_JES_EtaIntercalibration_Stat39: 6.357492489706952e-07 - syst_JES_EtaIntercalibration_Stat4: 5.761667104302402e-12 - syst_JES_EtaIntercalibration_Stat40: 1.2647536865631188e-16 + syst_JES_EtaIntercalibration_Stat35: 8.97288921e-18 + syst_JES_EtaIntercalibration_Stat36: 8.97288921e-18 + syst_JES_EtaIntercalibration_Stat37: 1.53291671e-17 + syst_JES_EtaIntercalibration_Stat38: 6.35835852e-07 + syst_JES_EtaIntercalibration_Stat39: 6.35749249e-07 + syst_JES_EtaIntercalibration_Stat4: 5.76166710e-12 + syst_JES_EtaIntercalibration_Stat40: 1.26475369e-16 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 syst_JES_EtaIntercalibration_Stat44: 0.0 syst_JES_EtaIntercalibration_Stat45: 0.0 - syst_JES_EtaIntercalibration_Stat46: 1.4875401868521065e-18 - syst_JES_EtaIntercalibration_Stat47: 2.0787016981760516e-16 - syst_JES_EtaIntercalibration_Stat48: 4.149127718038502e-07 - syst_JES_EtaIntercalibration_Stat49: 8.925230621801924e-13 - syst_JES_EtaIntercalibration_Stat5: 5.763399075227782e-12 - syst_JES_EtaIntercalibration_Stat50: 1.4589373487233784e-17 + syst_JES_EtaIntercalibration_Stat46: 1.48754019e-18 + syst_JES_EtaIntercalibration_Stat47: 2.07870170e-16 + syst_JES_EtaIntercalibration_Stat48: 4.14912772e-07 + syst_JES_EtaIntercalibration_Stat49: 8.92523062e-13 + syst_JES_EtaIntercalibration_Stat5: 5.76339908e-12 + syst_JES_EtaIntercalibration_Stat50: 1.45893735e-17 syst_JES_EtaIntercalibration_Stat51: 0.0 syst_JES_EtaIntercalibration_Stat52: 0.0 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 2.617994795640358e-19 - syst_JES_EtaIntercalibration_Stat57: 8.97288920861057e-18 - syst_JES_EtaIntercalibration_Stat58: 8.97288920861057e-18 - syst_JES_EtaIntercalibration_Stat59: 1.8935785687620675e-17 + syst_JES_EtaIntercalibration_Stat56: 2.61799480e-19 + syst_JES_EtaIntercalibration_Stat57: 8.97288921e-18 + syst_JES_EtaIntercalibration_Stat58: 8.97288921e-18 + syst_JES_EtaIntercalibration_Stat59: 1.89357857e-17 syst_JES_EtaIntercalibration_Stat6: 0.0 - syst_JES_EtaIntercalibration_Stat60: 6.357494252122567e-07 - syst_JES_EtaIntercalibration_Stat61: 6.357495866687816e-07 - syst_JES_EtaIntercalibration_Stat62: 4.53060843044287e-16 - syst_JES_EtaIntercalibration_Stat63: 4.23800591571968e-19 + syst_JES_EtaIntercalibration_Stat60: 6.35749425e-07 + syst_JES_EtaIntercalibration_Stat61: 6.35749587e-07 + syst_JES_EtaIntercalibration_Stat62: 4.53060843e-16 + syst_JES_EtaIntercalibration_Stat63: 4.23800592e-19 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 9.309600676183699e-18 - syst_JES_EtaIntercalibration_Stat69: 4.134425690288789e-07 + syst_JES_EtaIntercalibration_Stat68: 9.30960068e-18 + syst_JES_EtaIntercalibration_Stat69: 4.13442569e-07 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 4.1314416923716535e-07 - syst_JES_EtaIntercalibration_Stat71: 4.1551899714488103e-07 - syst_JES_EtaIntercalibration_Stat72: 8.920755041152217e-13 + syst_JES_EtaIntercalibration_Stat70: 4.13144169e-07 + syst_JES_EtaIntercalibration_Stat71: 4.15518997e-07 + syst_JES_EtaIntercalibration_Stat72: 8.92075504e-13 syst_JES_EtaIntercalibration_Stat73: 0.0 syst_JES_EtaIntercalibration_Stat74: 0.0 syst_JES_EtaIntercalibration_Stat75: 0.0 - syst_JES_EtaIntercalibration_Stat76: 2.3157519297195892e-18 - syst_JES_EtaIntercalibration_Stat77: 2.617994795640358e-19 - syst_JES_EtaIntercalibration_Stat78: 2.617994795640358e-19 - syst_JES_EtaIntercalibration_Stat79: 8.97288920861057e-18 + syst_JES_EtaIntercalibration_Stat76: 2.31575193e-18 + syst_JES_EtaIntercalibration_Stat77: 2.61799480e-19 + syst_JES_EtaIntercalibration_Stat78: 2.61799480e-19 + syst_JES_EtaIntercalibration_Stat79: 8.97288921e-18 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 8.852511677484531e-18 - syst_JES_EtaIntercalibration_Stat81: 1.0709400298336038e-16 - syst_JES_EtaIntercalibration_Stat82: 6.356630077132654e-07 - syst_JES_EtaIntercalibration_Stat83: 3.849265163729655e-08 - syst_JES_EtaIntercalibration_Stat84: 1.4628533863651543e-13 - syst_JES_EtaIntercalibration_Stat85: 1.0115646828058006e-18 + syst_JES_EtaIntercalibration_Stat80: 8.85251168e-18 + syst_JES_EtaIntercalibration_Stat81: 1.07094003e-16 + syst_JES_EtaIntercalibration_Stat82: 6.35663008e-07 + syst_JES_EtaIntercalibration_Stat83: 3.84926516e-08 + syst_JES_EtaIntercalibration_Stat84: 1.46285339e-13 + syst_JES_EtaIntercalibration_Stat85: 1.01156468e-18 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 1.393035953412546e-17 + syst_JES_EtaIntercalibration_Stat89: 1.39303595e-17 syst_JES_EtaIntercalibration_Stat9: 0.0 - syst_JES_EtaIntercalibration_Stat90: 4.1341094111679e-07 - syst_JES_EtaIntercalibration_Stat91: 4.1279253244101634e-07 - syst_JES_EtaIntercalibration_Stat92: 3.6682171078059155e-12 - syst_JES_EtaIntercalibration_Stat93: 9.21163382655027e-13 + syst_JES_EtaIntercalibration_Stat90: 4.13410941e-07 + syst_JES_EtaIntercalibration_Stat91: 4.12792532e-07 + syst_JES_EtaIntercalibration_Stat92: 3.66821711e-12 + syst_JES_EtaIntercalibration_Stat93: 9.21163383e-13 syst_JES_EtaIntercalibration_Stat94: 0.0 syst_JES_EtaIntercalibration_Stat95: 0.0 - syst_JES_EtaIntercalibration_Stat96: 5.5373664317977005e-15 - syst_JES_EtaIntercalibration_Stat97: 2.3157519297195892e-18 - syst_JES_EtaIntercalibration_Stat98: 2.617994795640358e-19 - syst_JES_EtaIntercalibration_Stat99: 2.617994795640358e-19 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0004273170602725803 - syst_JES_Flavour_Comp: 0.0011009110624841591 - syst_JES_Flavour_Response: 4.304055848847688e-05 - syst_JES_Gjet_Generator: 0.0015361487558176127 - syst_JES_Gjet_OOC: 0.001255376902567512 - syst_JES_Gjet_Purity: 0.0002827653974587414 - syst_JES_Gjet_Stat1: 4.158433118375238e-07 - syst_JES_Gjet_Stat10: 2.422370068754979e-05 - syst_JES_Gjet_Stat11: 2.6976539807766307e-05 - syst_JES_Gjet_Stat12: 8.787543968595549e-05 - syst_JES_Gjet_Stat13: 0.0003195714004725704 - syst_JES_Gjet_Stat14: 0.0006978809067455565 - syst_JES_Gjet_Stat15: 0.0003608686326074906 - syst_JES_Gjet_Stat2: 5.381286730885096e-06 - syst_JES_Gjet_Stat3: 5.102621679245396e-07 - syst_JES_Gjet_Stat4: 1.4220137130348704e-06 - syst_JES_Gjet_Stat5: 1.9165142186033017e-06 - syst_JES_Gjet_Stat6: 2.950650092242513e-06 - syst_JES_Gjet_Stat7: 7.776394966017351e-07 - syst_JES_Gjet_Stat8: 5.5103217662401524e-06 - syst_JES_Gjet_Stat9: 1.6867384948473786e-05 - syst_JES_Gjet_Veto: 0.0012176975363365078 - syst_JES_Gjet_dPhi: 0.00010773590615481916 - syst_JES_LArESZee: 0.002344534708636236 - syst_JES_LArEsmear: 0.00019953929437581966 - syst_JES_LAr_JVT: 0.0002462233945018223 - syst_JES_MJB_Alpha: 1.0337745244974843e-05 - syst_JES_MJB_Asym: 0.00019280147172674798 - syst_JES_MJB_Beta: 1.4445303735124435e-05 - syst_JES_MJB_Fragmentation: 0.00018273852905175742 - syst_JES_MJB_Stat1: 5.128602441211445e-08 - syst_JES_MJB_Stat10: 6.2076700943268565e-12 - syst_JES_MJB_Stat11: 1.7433357119843275e-07 + syst_JES_EtaIntercalibration_Stat96: 5.53736643e-15 + syst_JES_EtaIntercalibration_Stat97: 2.31575193e-18 + syst_JES_EtaIntercalibration_Stat98: 2.61799480e-19 + syst_JES_EtaIntercalibration_Stat99: 2.61799480e-19 + syst_JES_EtaIntercalibration_TotalStat_MJB: 4.27317060e-04 + syst_JES_Flavour_Comp: 1.10091106e-03 + syst_JES_Flavour_Response: 4.30405585e-05 + syst_JES_Gjet_Generator: 1.53614876e-03 + syst_JES_Gjet_OOC: 1.25537690e-03 + syst_JES_Gjet_Purity: 2.82765397e-04 + syst_JES_Gjet_Stat1: 4.15843312e-07 + syst_JES_Gjet_Stat10: 2.42237007e-05 + syst_JES_Gjet_Stat11: 2.69765398e-05 + syst_JES_Gjet_Stat12: 8.78754397e-05 + syst_JES_Gjet_Stat13: 3.19571400e-04 + syst_JES_Gjet_Stat14: 6.97880907e-04 + syst_JES_Gjet_Stat15: 3.60868633e-04 + syst_JES_Gjet_Stat2: 5.38128673e-06 + syst_JES_Gjet_Stat3: 5.10262168e-07 + syst_JES_Gjet_Stat4: 1.42201371e-06 + syst_JES_Gjet_Stat5: 1.91651422e-06 + syst_JES_Gjet_Stat6: 2.95065009e-06 + syst_JES_Gjet_Stat7: 7.77639497e-07 + syst_JES_Gjet_Stat8: 5.51032177e-06 + syst_JES_Gjet_Stat9: 1.68673849e-05 + syst_JES_Gjet_Veto: 1.21769754e-03 + syst_JES_Gjet_dPhi: 1.07735906e-04 + syst_JES_LArESZee: 2.34453471e-03 + syst_JES_LArEsmear: 1.99539294e-04 + syst_JES_LAr_JVT: 2.46223395e-04 + syst_JES_MJB_Alpha: 1.03377452e-05 + syst_JES_MJB_Asym: 1.92801472e-04 + syst_JES_MJB_Beta: 1.44453037e-05 + syst_JES_MJB_Fragmentation: 1.82738529e-04 + syst_JES_MJB_Stat1: 5.12860244e-08 + syst_JES_MJB_Stat10: 6.20767009e-12 + syst_JES_MJB_Stat11: 1.74333571e-07 syst_JES_MJB_Stat12: 0.0 syst_JES_MJB_Stat13: 0.0 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 - syst_JES_MJB_Stat16: 4.5717481065780515e-08 - syst_JES_MJB_Stat2: 7.00122395585229e-06 - syst_JES_MJB_Stat3: 1.1613006619734614e-05 - syst_JES_MJB_Stat4: 7.873920436208712e-06 - syst_JES_MJB_Stat5: 2.1744732146142888e-06 - syst_JES_MJB_Stat6: 3.3815725631723474e-09 - syst_JES_MJB_Stat7: 1.1413451604883544e-05 - syst_JES_MJB_Stat8: 3.028355155178386e-09 - syst_JES_MJB_Stat9: 3.5778688220084312e-09 - syst_JES_MJB_Threshold: 0.00014403062174412774 - syst_JES_Pileup_MuOffset: 0.00030016400100611664 - syst_JES_Pileup_NPVOffset: 0.0003130955564999286 - syst_JES_Pileup_Pt_term: 0.0003235826440030429 - syst_JES_Pileup_Rho_topology: 0.00046100138828424373 - syst_JES_PunchThrough_MC15: 0.00015780382599924503 + syst_JES_MJB_Stat16: 4.57174811e-08 + syst_JES_MJB_Stat2: 7.00122396e-06 + syst_JES_MJB_Stat3: 1.16130066e-05 + syst_JES_MJB_Stat4: 7.87392044e-06 + syst_JES_MJB_Stat5: 2.17447321e-06 + syst_JES_MJB_Stat6: 3.38157256e-09 + syst_JES_MJB_Stat7: 1.14134516e-05 + syst_JES_MJB_Stat8: 3.02835516e-09 + syst_JES_MJB_Stat9: 3.57786882e-09 + syst_JES_MJB_Threshold: 1.44030622e-04 + syst_JES_Pileup_MuOffset: 3.00164001e-04 + syst_JES_Pileup_NPVOffset: 3.13095556e-04 + syst_JES_Pileup_Pt_term: 3.23582644e-04 + syst_JES_Pileup_Rho_topology: 4.61001388e-04 + syst_JES_PunchThrough_MC15: 1.57803826e-04 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.0007134155591238531 - syst_JES_Zjet_MuScale: 3.842605756514712e-05 - syst_JES_Zjet_MuSmearID: 9.148413322538504e-06 - syst_JES_Zjet_MuSmearMS: 0.00019759404722814906 - syst_JES_Zjet_OOC: 0.00038858447096480836 - syst_JES_Zjet_Stat1: 9.968818422943474e-06 - syst_JES_Zjet_Stat10: 1.9985605588773138e-05 - syst_JES_Zjet_Stat11: 2.868066029574633e-05 - syst_JES_Zjet_Stat12: 0.0001090635249522039 - syst_JES_Zjet_Stat13: 0.0002183011452100057 - syst_JES_Zjet_Stat2: 1.1661108212772918e-07 - syst_JES_Zjet_Stat3: 5.097425526675206e-06 - syst_JES_Zjet_Stat4: 3.129591709792189e-17 - syst_JES_Zjet_Stat5: 4.561479228276722e-17 - syst_JES_Zjet_Stat6: 6.8126206736762285e-06 - syst_JES_Zjet_Stat7: 1.3536573649469055e-11 - syst_JES_Zjet_Stat8: 1.2678375793058037e-08 - syst_JES_Zjet_Stat9: 1.5036182585683111e-05 - syst_JES_Zjet_Veto: 6.654614092492517e-05 - syst_JES_Zjet_dPhi: 5.506680011585929e-05 + syst_JES_Zjet_MC: 7.13415559e-04 + syst_JES_Zjet_MuScale: 3.84260576e-05 + syst_JES_Zjet_MuSmearID: 9.14841332e-06 + syst_JES_Zjet_MuSmearMS: 1.97594047e-04 + syst_JES_Zjet_OOC: 3.88584471e-04 + syst_JES_Zjet_Stat1: 9.96881842e-06 + syst_JES_Zjet_Stat10: 1.99856056e-05 + syst_JES_Zjet_Stat11: 2.86806603e-05 + syst_JES_Zjet_Stat12: 1.09063525e-04 + syst_JES_Zjet_Stat13: 2.18301145e-04 + syst_JES_Zjet_Stat2: 1.16611082e-07 + syst_JES_Zjet_Stat3: 5.09742553e-06 + syst_JES_Zjet_Stat4: 3.12959171e-17 + syst_JES_Zjet_Stat5: 4.56147923e-17 + syst_JES_Zjet_Stat6: 6.81262067e-06 + syst_JES_Zjet_Stat7: 1.35365736e-11 + syst_JES_Zjet_Stat8: 1.26783758e-08 + syst_JES_Zjet_Stat9: 1.50361826e-05 + syst_JES_Zjet_Veto: 6.65461409e-05 + syst_JES_Zjet_dPhi: 5.50668001e-05 syst_PRW: 3.24e-08 - syst_Unfolding_bias: 2.887e-12 - syst_cleaning: 0.0002641377481542538 - syst_lumi: 0.0009188 -- stat: 0.0004009 + syst_Unfolding_bias: 2.88700000e-12 + syst_cleaning: 2.64137748e-04 + syst_lumi: 9.18800000e-04 +- stat: 4.00900000e-04 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.00020161355981183408 - syst_JER_NP1: 0.00042013858427904476 - syst_JER_NP2: 5.5174478507712434e-05 - syst_JER_NP3: 2.3981455128060934e-05 - syst_JER_NP4: 2.2188850846314687e-05 - syst_JER_NP5: 2.8664000220680993e-10 - syst_JER_NP6: 4.3001363641168404e-13 - syst_JER_NP7: 6.540439797903502e-17 - syst_JER_NP8: 2.1843095018792555e-05 - syst_JES_EtaIntercalibration_Modelling: 0.0014166028483664714 - syst_JES_EtaIntercalibration_NonClosure: 0.0005741829564694515 + syst_JER_NP0: 2.01613560e-04 + syst_JER_NP1: 4.20138584e-04 + syst_JER_NP2: 5.51744785e-05 + syst_JER_NP3: 2.39814551e-05 + syst_JER_NP4: 2.21888508e-05 + syst_JER_NP5: 2.86640002e-10 + syst_JER_NP6: 4.30013636e-13 + syst_JER_NP7: 6.54043980e-17 + syst_JER_NP8: 2.18430950e-05 + syst_JES_EtaIntercalibration_Modelling: 1.41660285e-03 + syst_JES_EtaIntercalibration_NonClosure: 5.74182956e-04 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 5.3918741639619153e-20 + syst_JES_EtaIntercalibration_Stat100: 5.39187416e-20 syst_JES_EtaIntercalibration_Stat101: 0.0 - syst_JES_EtaIntercalibration_Stat102: 8.960307849064117e-16 - syst_JES_EtaIntercalibration_Stat103: 2.9488178811991205e-07 - syst_JES_EtaIntercalibration_Stat104: 2.0656253580937664e-08 - syst_JES_EtaIntercalibration_Stat105: 9.728871414506412e-14 - syst_JES_EtaIntercalibration_Stat106: 1.3444949795369264e-17 + syst_JES_EtaIntercalibration_Stat102: 8.96030785e-16 + syst_JES_EtaIntercalibration_Stat103: 2.94881788e-07 + syst_JES_EtaIntercalibration_Stat104: 2.06562536e-08 + syst_JES_EtaIntercalibration_Stat105: 9.72887141e-14 + syst_JES_EtaIntercalibration_Stat106: 1.34449498e-17 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 7.433012579028775e-16 + syst_JES_EtaIntercalibration_Stat109: 7.43301258e-16 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 4.2901163053186277e-07 - syst_JES_EtaIntercalibration_Stat111: 4.2862537491234696e-07 - syst_JES_EtaIntercalibration_Stat112: 7.977739468550912e-08 - syst_JES_EtaIntercalibration_Stat113: 2.5022616611927297e-13 - syst_JES_EtaIntercalibration_Stat114: 6.582659094165519e-17 + syst_JES_EtaIntercalibration_Stat110: 4.29011631e-07 + syst_JES_EtaIntercalibration_Stat111: 4.28625375e-07 + syst_JES_EtaIntercalibration_Stat112: 7.97773947e-08 + syst_JES_EtaIntercalibration_Stat113: 2.50226166e-13 + syst_JES_EtaIntercalibration_Stat114: 6.58265909e-17 syst_JES_EtaIntercalibration_Stat115: 0.0 - syst_JES_EtaIntercalibration_Stat116: 5.580667701986922e-16 - syst_JES_EtaIntercalibration_Stat117: 6.427640546888104e-16 - syst_JES_EtaIntercalibration_Stat118: 5.3918741639619153e-20 - syst_JES_EtaIntercalibration_Stat119: 5.3918741639619153e-20 + syst_JES_EtaIntercalibration_Stat116: 5.58066770e-16 + syst_JES_EtaIntercalibration_Stat117: 6.42764055e-16 + syst_JES_EtaIntercalibration_Stat118: 5.39187416e-20 + syst_JES_EtaIntercalibration_Stat119: 5.39187416e-20 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 5.3918741639619153e-20 - syst_JES_EtaIntercalibration_Stat121: 1.984064200070149e-18 - syst_JES_EtaIntercalibration_Stat122: 2.949682962055536e-07 - syst_JES_EtaIntercalibration_Stat123: 9.112702459067782e-08 - syst_JES_EtaIntercalibration_Stat124: 5.219888496893396e-07 - syst_JES_EtaIntercalibration_Stat125: 2.1496300303773203e-10 - syst_JES_EtaIntercalibration_Stat126: 1.154170712708913e-14 + syst_JES_EtaIntercalibration_Stat120: 5.39187416e-20 + syst_JES_EtaIntercalibration_Stat121: 1.98406420e-18 + syst_JES_EtaIntercalibration_Stat122: 2.94968296e-07 + syst_JES_EtaIntercalibration_Stat123: 9.11270246e-08 + syst_JES_EtaIntercalibration_Stat124: 5.21988850e-07 + syst_JES_EtaIntercalibration_Stat125: 2.14963003e-10 + syst_JES_EtaIntercalibration_Stat126: 1.15417071e-14 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 1.1701943204015306e-10 - syst_JES_EtaIntercalibration_Stat129: 6.923552321604856e-07 + syst_JES_EtaIntercalibration_Stat128: 1.17019432e-10 + syst_JES_EtaIntercalibration_Stat129: 6.92355232e-07 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 1.124259492955252e-06 - syst_JES_EtaIntercalibration_Stat131: 6.272278214492721e-07 - syst_JES_EtaIntercalibration_Stat132: 7.978912317781212e-08 - syst_JES_EtaIntercalibration_Stat133: 1.0345105092619445e-13 + syst_JES_EtaIntercalibration_Stat130: 1.12425949e-06 + syst_JES_EtaIntercalibration_Stat131: 6.27227821e-07 + syst_JES_EtaIntercalibration_Stat132: 7.97891232e-08 + syst_JES_EtaIntercalibration_Stat133: 1.03451051e-13 syst_JES_EtaIntercalibration_Stat134: 0.0 - syst_JES_EtaIntercalibration_Stat135: 5.580667701986922e-16 - syst_JES_EtaIntercalibration_Stat136: 5.580667701986922e-16 - syst_JES_EtaIntercalibration_Stat137: 5.3918741639619153e-20 - syst_JES_EtaIntercalibration_Stat138: 5.3918741639619153e-20 - syst_JES_EtaIntercalibration_Stat139: 5.3918741639619153e-20 + syst_JES_EtaIntercalibration_Stat135: 5.58066770e-16 + syst_JES_EtaIntercalibration_Stat136: 5.58066770e-16 + syst_JES_EtaIntercalibration_Stat137: 5.39187416e-20 + syst_JES_EtaIntercalibration_Stat138: 5.39187416e-20 + syst_JES_EtaIntercalibration_Stat139: 5.39187416e-20 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 9.30457693826001e-19 - syst_JES_EtaIntercalibration_Stat141: 2.921111430924024e-07 - syst_JES_EtaIntercalibration_Stat142: 2.123626877979039e-07 - syst_JES_EtaIntercalibration_Stat143: 4.280615259515856e-07 - syst_JES_EtaIntercalibration_Stat144: 4.6727654210328173e-07 - syst_JES_EtaIntercalibration_Stat145: 2.4420280602145015e-14 - syst_JES_EtaIntercalibration_Stat146: 3.511043576166625e-07 - syst_JES_EtaIntercalibration_Stat147: 6.922415979988489e-07 - syst_JES_EtaIntercalibration_Stat148: 1.1210361769363198e-06 - syst_JES_EtaIntercalibration_Stat149: 6.25434031293469e-07 + syst_JES_EtaIntercalibration_Stat140: 9.30457694e-19 + syst_JES_EtaIntercalibration_Stat141: 2.92111143e-07 + syst_JES_EtaIntercalibration_Stat142: 2.12362688e-07 + syst_JES_EtaIntercalibration_Stat143: 4.28061526e-07 + syst_JES_EtaIntercalibration_Stat144: 4.67276542e-07 + syst_JES_EtaIntercalibration_Stat145: 2.44202806e-14 + syst_JES_EtaIntercalibration_Stat146: 3.51104358e-07 + syst_JES_EtaIntercalibration_Stat147: 6.92241598e-07 + syst_JES_EtaIntercalibration_Stat148: 1.12103618e-06 + syst_JES_EtaIntercalibration_Stat149: 6.25434031e-07 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 7.974329068324103e-08 - syst_JES_EtaIntercalibration_Stat151: 6.90719911105581e-13 + syst_JES_EtaIntercalibration_Stat150: 7.97432907e-08 + syst_JES_EtaIntercalibration_Stat151: 6.90719911e-13 syst_JES_EtaIntercalibration_Stat152: 0.0 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 5.3918741639619153e-20 + syst_JES_EtaIntercalibration_Stat156: 5.39187416e-20 syst_JES_EtaIntercalibration_Stat157: 0.0 syst_JES_EtaIntercalibration_Stat158: 0.0 - syst_JES_EtaIntercalibration_Stat159: 3.000299122100161e-07 - syst_JES_EtaIntercalibration_Stat16: 2.949682525289878e-07 - syst_JES_EtaIntercalibration_Stat160: 2.3054413720587215e-07 - syst_JES_EtaIntercalibration_Stat161: 4.2526476964357164e-07 - syst_JES_EtaIntercalibration_Stat162: 5.812515526860982e-07 - syst_JES_EtaIntercalibration_Stat163: 1.773034316503773e-11 - syst_JES_EtaIntercalibration_Stat164: 4.28947151354555e-07 - syst_JES_EtaIntercalibration_Stat165: 1.6490074310020557e-06 - syst_JES_EtaIntercalibration_Stat166: 5.32452089393966e-06 - syst_JES_EtaIntercalibration_Stat167: 1.2141359767340724e-06 - syst_JES_EtaIntercalibration_Stat168: 7.81449649481654e-08 - syst_JES_EtaIntercalibration_Stat169: 6.90719911105581e-13 - syst_JES_EtaIntercalibration_Stat17: 1.214049010591083e-17 + syst_JES_EtaIntercalibration_Stat159: 3.00029912e-07 + syst_JES_EtaIntercalibration_Stat16: 2.94968253e-07 + syst_JES_EtaIntercalibration_Stat160: 2.30544137e-07 + syst_JES_EtaIntercalibration_Stat161: 4.25264770e-07 + syst_JES_EtaIntercalibration_Stat162: 5.81251553e-07 + syst_JES_EtaIntercalibration_Stat163: 1.77303432e-11 + syst_JES_EtaIntercalibration_Stat164: 4.28947151e-07 + syst_JES_EtaIntercalibration_Stat165: 1.64900743e-06 + syst_JES_EtaIntercalibration_Stat166: 5.32452089e-06 + syst_JES_EtaIntercalibration_Stat167: 1.21413598e-06 + syst_JES_EtaIntercalibration_Stat168: 7.81449649e-08 + syst_JES_EtaIntercalibration_Stat169: 6.90719911e-13 + syst_JES_EtaIntercalibration_Stat17: 1.21404901e-17 syst_JES_EtaIntercalibration_Stat170: 0.0 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 syst_JES_EtaIntercalibration_Stat175: 0.0 - syst_JES_EtaIntercalibration_Stat176: 6.875375680644659e-14 - syst_JES_EtaIntercalibration_Stat177: 3.664478299986507e-07 - syst_JES_EtaIntercalibration_Stat178: 7.823694395872067e-07 - syst_JES_EtaIntercalibration_Stat179: 3.981186844083055e-06 - syst_JES_EtaIntercalibration_Stat18: 1.2434675186750959e-20 - syst_JES_EtaIntercalibration_Stat180: 5.421602415338108e-07 - syst_JES_EtaIntercalibration_Stat181: 3.459045240680584e-09 - syst_JES_EtaIntercalibration_Stat182: 1.0777506889350616e-05 - syst_JES_EtaIntercalibration_Stat183: 2.0794871362910613e-05 - syst_JES_EtaIntercalibration_Stat184: 8.497264309764644e-06 - syst_JES_EtaIntercalibration_Stat185: 7.633756791383913e-07 - syst_JES_EtaIntercalibration_Stat186: 6.907418620584682e-13 + syst_JES_EtaIntercalibration_Stat176: 6.87537568e-14 + syst_JES_EtaIntercalibration_Stat177: 3.66447830e-07 + syst_JES_EtaIntercalibration_Stat178: 7.82369440e-07 + syst_JES_EtaIntercalibration_Stat179: 3.98118684e-06 + syst_JES_EtaIntercalibration_Stat18: 1.24346752e-20 + syst_JES_EtaIntercalibration_Stat180: 5.42160242e-07 + syst_JES_EtaIntercalibration_Stat181: 3.45904524e-09 + syst_JES_EtaIntercalibration_Stat182: 1.07775069e-05 + syst_JES_EtaIntercalibration_Stat183: 2.07948714e-05 + syst_JES_EtaIntercalibration_Stat184: 8.49726431e-06 + syst_JES_EtaIntercalibration_Stat185: 7.63375679e-07 + syst_JES_EtaIntercalibration_Stat186: 6.90741862e-13 syst_JES_EtaIntercalibration_Stat187: 0.0 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 @@ -51006,31 +51006,31 @@ bins: syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 syst_JES_EtaIntercalibration_Stat192: 0.0 - syst_JES_EtaIntercalibration_Stat193: 2.9488166814338507e-07 - syst_JES_EtaIntercalibration_Stat194: 4.0514768603559865e-07 - syst_JES_EtaIntercalibration_Stat195: 6.136811224080467e-06 - syst_JES_EtaIntercalibration_Stat196: 1.9676033009730392e-05 - syst_JES_EtaIntercalibration_Stat197: 1.0774962969773956e-05 - syst_JES_EtaIntercalibration_Stat198: 4.100792362458747e-05 - syst_JES_EtaIntercalibration_Stat199: 1.731751425580473e-05 + syst_JES_EtaIntercalibration_Stat193: 2.94881668e-07 + syst_JES_EtaIntercalibration_Stat194: 4.05147686e-07 + syst_JES_EtaIntercalibration_Stat195: 6.13681122e-06 + syst_JES_EtaIntercalibration_Stat196: 1.96760330e-05 + syst_JES_EtaIntercalibration_Stat197: 1.07749630e-05 + syst_JES_EtaIntercalibration_Stat198: 4.10079236e-05 + syst_JES_EtaIntercalibration_Stat199: 1.73175143e-05 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 2.361342132665235e-06 - syst_JES_EtaIntercalibration_Stat201: 6.907418620584682e-13 + syst_JES_EtaIntercalibration_Stat200: 2.36134213e-06 + syst_JES_EtaIntercalibration_Stat201: 6.90741862e-13 syst_JES_EtaIntercalibration_Stat202: 0.0 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 syst_JES_EtaIntercalibration_Stat207: 0.0 - syst_JES_EtaIntercalibration_Stat208: 2.948816499886014e-07 - syst_JES_EtaIntercalibration_Stat209: 1.4656339652177826e-06 + syst_JES_EtaIntercalibration_Stat208: 2.94881650e-07 + syst_JES_EtaIntercalibration_Stat209: 1.46563397e-06 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 1.3900594618576575e-05 - syst_JES_EtaIntercalibration_Stat211: 4.2164917511481035e-05 - syst_JES_EtaIntercalibration_Stat212: 1.724402124650744e-05 - syst_JES_EtaIntercalibration_Stat213: 1.6910655664402844e-06 - syst_JES_EtaIntercalibration_Stat214: 6.907418620584682e-13 + syst_JES_EtaIntercalibration_Stat210: 1.39005946e-05 + syst_JES_EtaIntercalibration_Stat211: 4.21649175e-05 + syst_JES_EtaIntercalibration_Stat212: 1.72440212e-05 + syst_JES_EtaIntercalibration_Stat213: 1.69106557e-06 + syst_JES_EtaIntercalibration_Stat214: 6.90741862e-13 syst_JES_EtaIntercalibration_Stat215: 0.0 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 @@ -51038,11 +51038,11 @@ bins: syst_JES_EtaIntercalibration_Stat219: 0.0 syst_JES_EtaIntercalibration_Stat22: 0.0 syst_JES_EtaIntercalibration_Stat220: 0.0 - syst_JES_EtaIntercalibration_Stat221: 2.9479504744822294e-07 - syst_JES_EtaIntercalibration_Stat222: 1.3869877820298202e-06 - syst_JES_EtaIntercalibration_Stat223: 1.7776925352827465e-05 - syst_JES_EtaIntercalibration_Stat224: 4.410976422516901e-05 - syst_JES_EtaIntercalibration_Stat225: 4.724582718875817e-06 + syst_JES_EtaIntercalibration_Stat221: 2.94795047e-07 + syst_JES_EtaIntercalibration_Stat222: 1.38698778e-06 + syst_JES_EtaIntercalibration_Stat223: 1.77769254e-05 + syst_JES_EtaIntercalibration_Stat224: 4.41097642e-05 + syst_JES_EtaIntercalibration_Stat225: 4.72458272e-06 syst_JES_EtaIntercalibration_Stat226: 0.0 syst_JES_EtaIntercalibration_Stat227: 0.0 syst_JES_EtaIntercalibration_Stat228: 0.0 @@ -51051,291 +51051,291 @@ bins: syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 syst_JES_EtaIntercalibration_Stat232: 0.0 - syst_JES_EtaIntercalibration_Stat233: 2.9479504744822294e-07 - syst_JES_EtaIntercalibration_Stat234: 1.3432058645938946e-06 - syst_JES_EtaIntercalibration_Stat235: 5.9522883624703535e-05 - syst_JES_EtaIntercalibration_Stat236: 1.975659573408334e-06 + syst_JES_EtaIntercalibration_Stat233: 2.94795047e-07 + syst_JES_EtaIntercalibration_Stat234: 1.34320586e-06 + syst_JES_EtaIntercalibration_Stat235: 5.95228836e-05 + syst_JES_EtaIntercalibration_Stat236: 1.97565957e-06 syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 syst_JES_EtaIntercalibration_Stat239: 0.0 - syst_JES_EtaIntercalibration_Stat24: 5.248113946933698e-20 + syst_JES_EtaIntercalibration_Stat24: 5.24811395e-20 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 syst_JES_EtaIntercalibration_Stat243: 0.0 - syst_JES_EtaIntercalibration_Stat244: 2.9479504744822294e-07 - syst_JES_EtaIntercalibration_Stat245: 6.070865403713049e-07 - syst_JES_EtaIntercalibration_Stat25: 2.8123354116285636e-18 - syst_JES_EtaIntercalibration_Stat26: 8.027189468074024e-08 - syst_JES_EtaIntercalibration_Stat27: 1.0315788246495149e-13 - syst_JES_EtaIntercalibration_Stat28: 6.71267178029732e-19 + syst_JES_EtaIntercalibration_Stat244: 2.94795047e-07 + syst_JES_EtaIntercalibration_Stat245: 6.07086540e-07 + syst_JES_EtaIntercalibration_Stat25: 2.81233541e-18 + syst_JES_EtaIntercalibration_Stat26: 8.02718947e-08 + syst_JES_EtaIntercalibration_Stat27: 1.03157882e-13 + syst_JES_EtaIntercalibration_Stat28: 6.71267178e-19 syst_JES_EtaIntercalibration_Stat29: 0.0 - syst_JES_EtaIntercalibration_Stat3: 1.7966278600478175e-19 + syst_JES_EtaIntercalibration_Stat3: 1.79662786e-19 syst_JES_EtaIntercalibration_Stat30: 0.0 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 1.1814318558427313e-18 - syst_JES_EtaIntercalibration_Stat36: 1.1814318558427313e-18 - syst_JES_EtaIntercalibration_Stat37: 2.253245037423804e-18 - syst_JES_EtaIntercalibration_Stat38: 2.9496825253511996e-07 - syst_JES_EtaIntercalibration_Stat39: 2.9496825253594555e-07 - syst_JES_EtaIntercalibration_Stat4: 6.730749599639808e-13 - syst_JES_EtaIntercalibration_Stat40: 1.7670094569073478e-17 + syst_JES_EtaIntercalibration_Stat35: 1.18143186e-18 + syst_JES_EtaIntercalibration_Stat36: 1.18143186e-18 + syst_JES_EtaIntercalibration_Stat37: 2.25324504e-18 + syst_JES_EtaIntercalibration_Stat38: 2.94968253e-07 + syst_JES_EtaIntercalibration_Stat39: 2.94968253e-07 + syst_JES_EtaIntercalibration_Stat4: 6.73074960e-13 + syst_JES_EtaIntercalibration_Stat40: 1.76700946e-17 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 syst_JES_EtaIntercalibration_Stat44: 0.0 syst_JES_EtaIntercalibration_Stat45: 0.0 - syst_JES_EtaIntercalibration_Stat46: 2.3603971593780563e-19 - syst_JES_EtaIntercalibration_Stat47: 2.8181165252700253e-17 - syst_JES_EtaIntercalibration_Stat48: 8.009002944527286e-08 - syst_JES_EtaIntercalibration_Stat49: 1.0299036032925605e-13 - syst_JES_EtaIntercalibration_Stat5: 6.731615487287803e-13 - syst_JES_EtaIntercalibration_Stat50: 2.133299029672118e-18 + syst_JES_EtaIntercalibration_Stat46: 2.36039716e-19 + syst_JES_EtaIntercalibration_Stat47: 2.81811653e-17 + syst_JES_EtaIntercalibration_Stat48: 8.00900294e-08 + syst_JES_EtaIntercalibration_Stat49: 1.02990360e-13 + syst_JES_EtaIntercalibration_Stat5: 6.73161549e-13 + syst_JES_EtaIntercalibration_Stat50: 2.13329903e-18 syst_JES_EtaIntercalibration_Stat51: 0.0 syst_JES_EtaIntercalibration_Stat52: 0.0 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 5.3918741639619153e-20 - syst_JES_EtaIntercalibration_Stat57: 1.1814318558427313e-18 - syst_JES_EtaIntercalibration_Stat58: 1.1814318558427313e-18 - syst_JES_EtaIntercalibration_Stat59: 2.8083458133748413e-18 + syst_JES_EtaIntercalibration_Stat56: 5.39187416e-20 + syst_JES_EtaIntercalibration_Stat57: 1.18143186e-18 + syst_JES_EtaIntercalibration_Stat58: 1.18143186e-18 + syst_JES_EtaIntercalibration_Stat59: 2.80834581e-18 syst_JES_EtaIntercalibration_Stat6: 0.0 - syst_JES_EtaIntercalibration_Stat60: 2.9496827241581523e-07 - syst_JES_EtaIntercalibration_Stat61: 2.949682915116906e-07 - syst_JES_EtaIntercalibration_Stat62: 5.877185891223792e-17 - syst_JES_EtaIntercalibration_Stat63: 7.23309451777557e-20 + syst_JES_EtaIntercalibration_Stat60: 2.94968272e-07 + syst_JES_EtaIntercalibration_Stat61: 2.94968292e-07 + syst_JES_EtaIntercalibration_Stat62: 5.87718589e-17 + syst_JES_EtaIntercalibration_Stat63: 7.23309452e-20 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 1.2925617461073186e-18 - syst_JES_EtaIntercalibration_Stat69: 7.983046149729701e-08 + syst_JES_EtaIntercalibration_Stat68: 1.29256175e-18 + syst_JES_EtaIntercalibration_Stat69: 7.98304615e-08 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 7.974460244943902e-08 - syst_JES_EtaIntercalibration_Stat71: 8.021127391436256e-08 - syst_JES_EtaIntercalibration_Stat72: 1.0293341834790245e-13 + syst_JES_EtaIntercalibration_Stat70: 7.97446024e-08 + syst_JES_EtaIntercalibration_Stat71: 8.02112739e-08 + syst_JES_EtaIntercalibration_Stat72: 1.02933418e-13 syst_JES_EtaIntercalibration_Stat73: 0.0 syst_JES_EtaIntercalibration_Stat74: 0.0 syst_JES_EtaIntercalibration_Stat75: 0.0 - syst_JES_EtaIntercalibration_Stat76: 3.952539942872178e-19 - syst_JES_EtaIntercalibration_Stat77: 5.3918741639619153e-20 - syst_JES_EtaIntercalibration_Stat78: 5.3918741639619153e-20 - syst_JES_EtaIntercalibration_Stat79: 1.1814318558427313e-18 + syst_JES_EtaIntercalibration_Stat76: 3.95253994e-19 + syst_JES_EtaIntercalibration_Stat77: 5.39187416e-20 + syst_JES_EtaIntercalibration_Stat78: 5.39187416e-20 + syst_JES_EtaIntercalibration_Stat79: 1.18143186e-18 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 1.1635917325247716e-18 - syst_JES_EtaIntercalibration_Stat81: 1.4711430929722643e-17 - syst_JES_EtaIntercalibration_Stat82: 2.948816917021819e-07 - syst_JES_EtaIntercalibration_Stat83: 1.9372734896882774e-08 - syst_JES_EtaIntercalibration_Stat84: 1.6624329663177402e-14 - syst_JES_EtaIntercalibration_Stat85: 1.478646951608125e-19 + syst_JES_EtaIntercalibration_Stat80: 1.16359173e-18 + syst_JES_EtaIntercalibration_Stat81: 1.47114309e-17 + syst_JES_EtaIntercalibration_Stat82: 2.94881692e-07 + syst_JES_EtaIntercalibration_Stat83: 1.93727349e-08 + syst_JES_EtaIntercalibration_Stat84: 1.66243297e-14 + syst_JES_EtaIntercalibration_Stat85: 1.47864695e-19 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 1.8802240205624434e-18 + syst_JES_EtaIntercalibration_Stat89: 1.88022402e-18 syst_JES_EtaIntercalibration_Stat9: 0.0 - syst_JES_EtaIntercalibration_Stat90: 7.982415866946528e-08 - syst_JES_EtaIntercalibration_Stat91: 7.964365057133117e-08 - syst_JES_EtaIntercalibration_Stat92: 4.2491677076222824e-13 - syst_JES_EtaIntercalibration_Stat93: 1.0625738298505509e-13 + syst_JES_EtaIntercalibration_Stat90: 7.98241587e-08 + syst_JES_EtaIntercalibration_Stat91: 7.96436506e-08 + syst_JES_EtaIntercalibration_Stat92: 4.24916771e-13 + syst_JES_EtaIntercalibration_Stat93: 1.06257383e-13 syst_JES_EtaIntercalibration_Stat94: 0.0 syst_JES_EtaIntercalibration_Stat95: 0.0 - syst_JES_EtaIntercalibration_Stat96: 6.427640546888104e-16 - syst_JES_EtaIntercalibration_Stat97: 3.952539942872178e-19 - syst_JES_EtaIntercalibration_Stat98: 5.3918741639619153e-20 - syst_JES_EtaIntercalibration_Stat99: 5.3918741639619153e-20 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.00024314810301542556 - syst_JES_Flavour_Comp: 0.0006235785014735514 - syst_JES_Flavour_Response: 6.170560813248662e-05 - syst_JES_Gjet_Generator: 0.0008268144834241839 - syst_JES_Gjet_OOC: 0.0006818241048833635 - syst_JES_Gjet_Purity: 0.00014524654901236037 - syst_JES_Gjet_Stat1: 2.142738143124353e-07 - syst_JES_Gjet_Stat10: 1.1187229415722196e-05 - syst_JES_Gjet_Stat11: 1.3301118449213208e-05 - syst_JES_Gjet_Stat12: 4.4162458499838975e-05 - syst_JES_Gjet_Stat13: 0.00015839109823471772 - syst_JES_Gjet_Stat14: 0.0003793611370449008 - syst_JES_Gjet_Stat15: 0.0002799676409873112 - syst_JES_Gjet_Stat2: 2.075252439463691e-06 - syst_JES_Gjet_Stat3: 6.108077172916951e-07 - syst_JES_Gjet_Stat4: 9.105391095425361e-07 - syst_JES_Gjet_Stat5: 1.127998088434087e-06 - syst_JES_Gjet_Stat6: 7.506657552699254e-07 - syst_JES_Gjet_Stat7: 1.3715783506147215e-07 - syst_JES_Gjet_Stat8: 2.1676634609643627e-06 - syst_JES_Gjet_Stat9: 7.874501555654174e-06 - syst_JES_Gjet_Veto: 0.0006727806180323568 - syst_JES_Gjet_dPhi: 5.201573103398625e-05 - syst_JES_LArESZee: 0.0012696234638663543 - syst_JES_LArEsmear: 0.00011191986184319564 - syst_JES_LAr_JVT: 0.0001391659451877506 - syst_JES_MJB_Alpha: 5.164975508170392e-06 - syst_JES_MJB_Asym: 0.00012101332819156739 - syst_JES_MJB_Beta: 7.621889578706844e-06 - syst_JES_MJB_Fragmentation: 9.115698697850869e-05 - syst_JES_MJB_Stat1: 5.354635071599184e-09 - syst_JES_MJB_Stat10: 2.1962404239973364e-10 - syst_JES_MJB_Stat11: 8.730318468055732e-08 + syst_JES_EtaIntercalibration_Stat96: 6.42764055e-16 + syst_JES_EtaIntercalibration_Stat97: 3.95253994e-19 + syst_JES_EtaIntercalibration_Stat98: 5.39187416e-20 + syst_JES_EtaIntercalibration_Stat99: 5.39187416e-20 + syst_JES_EtaIntercalibration_TotalStat_MJB: 2.43148103e-04 + syst_JES_Flavour_Comp: 6.23578501e-04 + syst_JES_Flavour_Response: 6.17056081e-05 + syst_JES_Gjet_Generator: 8.26814483e-04 + syst_JES_Gjet_OOC: 6.81824105e-04 + syst_JES_Gjet_Purity: 1.45246549e-04 + syst_JES_Gjet_Stat1: 2.14273814e-07 + syst_JES_Gjet_Stat10: 1.11872294e-05 + syst_JES_Gjet_Stat11: 1.33011184e-05 + syst_JES_Gjet_Stat12: 4.41624585e-05 + syst_JES_Gjet_Stat13: 1.58391098e-04 + syst_JES_Gjet_Stat14: 3.79361137e-04 + syst_JES_Gjet_Stat15: 2.79967641e-04 + syst_JES_Gjet_Stat2: 2.07525244e-06 + syst_JES_Gjet_Stat3: 6.10807717e-07 + syst_JES_Gjet_Stat4: 9.10539110e-07 + syst_JES_Gjet_Stat5: 1.12799809e-06 + syst_JES_Gjet_Stat6: 7.50665755e-07 + syst_JES_Gjet_Stat7: 1.37157835e-07 + syst_JES_Gjet_Stat8: 2.16766346e-06 + syst_JES_Gjet_Stat9: 7.87450156e-06 + syst_JES_Gjet_Veto: 6.72780618e-04 + syst_JES_Gjet_dPhi: 5.20157310e-05 + syst_JES_LArESZee: 1.26962346e-03 + syst_JES_LArEsmear: 1.11919862e-04 + syst_JES_LAr_JVT: 1.39165945e-04 + syst_JES_MJB_Alpha: 5.16497551e-06 + syst_JES_MJB_Asym: 1.21013328e-04 + syst_JES_MJB_Beta: 7.62188958e-06 + syst_JES_MJB_Fragmentation: 9.11569870e-05 + syst_JES_MJB_Stat1: 5.35463507e-09 + syst_JES_MJB_Stat10: 2.19624042e-10 + syst_JES_MJB_Stat11: 8.73031847e-08 syst_JES_MJB_Stat12: 0.0 syst_JES_MJB_Stat13: 0.0 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 - syst_JES_MJB_Stat16: 3.8789277835505004e-08 - syst_JES_MJB_Stat2: 2.575261285287378e-06 - syst_JES_MJB_Stat3: 4.889003656165539e-06 - syst_JES_MJB_Stat4: 2.828549788298608e-06 - syst_JES_MJB_Stat5: 9.579898194817885e-07 - syst_JES_MJB_Stat6: 1.7570112883814946e-08 - syst_JES_MJB_Stat7: 6.199094651888693e-06 - syst_JES_MJB_Stat8: 1.9151683196711457e-08 - syst_JES_MJB_Stat9: 2.2687850598681113e-08 - syst_JES_MJB_Threshold: 8.567159797739271e-05 - syst_JES_Pileup_MuOffset: 0.00016145682859513872 - syst_JES_Pileup_NPVOffset: 0.00017337683668818045 - syst_JES_Pileup_Pt_term: 0.00017012442505413502 - syst_JES_Pileup_Rho_topology: 0.00024500707642841665 - syst_JES_PunchThrough_MC15: 0.00010347170482793835 + syst_JES_MJB_Stat16: 3.87892778e-08 + syst_JES_MJB_Stat2: 2.57526129e-06 + syst_JES_MJB_Stat3: 4.88900366e-06 + syst_JES_MJB_Stat4: 2.82854979e-06 + syst_JES_MJB_Stat5: 9.57989819e-07 + syst_JES_MJB_Stat6: 1.75701129e-08 + syst_JES_MJB_Stat7: 6.19909465e-06 + syst_JES_MJB_Stat8: 1.91516832e-08 + syst_JES_MJB_Stat9: 2.26878506e-08 + syst_JES_MJB_Threshold: 8.56715980e-05 + syst_JES_Pileup_MuOffset: 1.61456829e-04 + syst_JES_Pileup_NPVOffset: 1.73376837e-04 + syst_JES_Pileup_Pt_term: 1.70124425e-04 + syst_JES_Pileup_Rho_topology: 2.45007076e-04 + syst_JES_PunchThrough_MC15: 1.03471705e-04 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.0003582549476280823 - syst_JES_Zjet_MuScale: 1.589471195083447e-05 - syst_JES_Zjet_MuSmearID: 3.7183245581847747e-06 - syst_JES_Zjet_MuSmearMS: 0.00010053292793905885 - syst_JES_Zjet_OOC: 0.00020494664549584608 - syst_JES_Zjet_Stat1: 3.793191268572544e-06 - syst_JES_Zjet_Stat10: 1.009690056403449e-05 - syst_JES_Zjet_Stat11: 1.4170051058482464e-05 - syst_JES_Zjet_Stat12: 5.4629343763219416e-05 - syst_JES_Zjet_Stat13: 0.00011073014799502436 - syst_JES_Zjet_Stat2: 5.1599835997801387e-08 - syst_JES_Zjet_Stat3: 2.4863589342651238e-06 - syst_JES_Zjet_Stat4: 5.330400641602844e-18 - syst_JES_Zjet_Stat5: 7.844816568919887e-18 - syst_JES_Zjet_Stat6: 3.3381715339424225e-06 - syst_JES_Zjet_Stat7: 1.5744611201296779e-12 - syst_JES_Zjet_Stat8: 1.6016526425851517e-09 - syst_JES_Zjet_Stat9: 6.565635746064505e-06 - syst_JES_Zjet_Veto: 3.2215277416157695e-05 - syst_JES_Zjet_dPhi: 2.675869675451329e-05 - syst_PRW: 4.547e-07 + syst_JES_Zjet_MC: 3.58254948e-04 + syst_JES_Zjet_MuScale: 1.58947120e-05 + syst_JES_Zjet_MuSmearID: 3.71832456e-06 + syst_JES_Zjet_MuSmearMS: 1.00532928e-04 + syst_JES_Zjet_OOC: 2.04946645e-04 + syst_JES_Zjet_Stat1: 3.79319127e-06 + syst_JES_Zjet_Stat10: 1.00969006e-05 + syst_JES_Zjet_Stat11: 1.41700511e-05 + syst_JES_Zjet_Stat12: 5.46293438e-05 + syst_JES_Zjet_Stat13: 1.10730148e-04 + syst_JES_Zjet_Stat2: 5.15998360e-08 + syst_JES_Zjet_Stat3: 2.48635893e-06 + syst_JES_Zjet_Stat4: 5.33040064e-18 + syst_JES_Zjet_Stat5: 7.84481657e-18 + syst_JES_Zjet_Stat6: 3.33817153e-06 + syst_JES_Zjet_Stat7: 1.57446112e-12 + syst_JES_Zjet_Stat8: 1.60165264e-09 + syst_JES_Zjet_Stat9: 6.56563575e-06 + syst_JES_Zjet_Veto: 3.22152774e-05 + syst_JES_Zjet_dPhi: 2.67586968e-05 + syst_PRW: 4.54700000e-07 syst_Unfolding_bias: 3.57e-10 - syst_cleaning: 0.00013639900109604908 - syst_lumi: 0.0004591 -- stat: 0.00024171 + syst_cleaning: 1.36399001e-04 + syst_lumi: 4.59100000e-04 +- stat: 2.41710000e-04 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.00011152993051194822 - syst_JER_NP1: 0.00022515809445809406 - syst_JER_NP2: 3.5394458256930856e-05 - syst_JER_NP3: 7.148568107728148e-06 - syst_JER_NP4: 6.619579458098151e-06 - syst_JER_NP5: 3.218625508620217e-11 - syst_JER_NP6: 5.333875771894205e-14 - syst_JER_NP7: 1.1289946368340287e-17 - syst_JER_NP8: 1.025742745526382e-05 - syst_JES_EtaIntercalibration_Modelling: 0.0007313688057334685 - syst_JES_EtaIntercalibration_NonClosure: 0.00017899253476053126 + syst_JER_NP0: 1.11529931e-04 + syst_JER_NP1: 2.25158094e-04 + syst_JER_NP2: 3.53944583e-05 + syst_JER_NP3: 7.14856811e-06 + syst_JER_NP4: 6.61957946e-06 + syst_JER_NP5: 3.21862551e-11 + syst_JER_NP6: 5.33387577e-14 + syst_JER_NP7: 1.12899464e-17 + syst_JER_NP8: 1.02574275e-05 + syst_JES_EtaIntercalibration_Modelling: 7.31368806e-04 + syst_JES_EtaIntercalibration_NonClosure: 1.78992535e-04 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 1.1066938634961341e-20 + syst_JES_EtaIntercalibration_Stat100: 1.10669386e-20 syst_JES_EtaIntercalibration_Stat101: 0.0 - syst_JES_EtaIntercalibration_Stat102: 1.1105807129605663e-16 - syst_JES_EtaIntercalibration_Stat103: 8.259285805582862e-08 - syst_JES_EtaIntercalibration_Stat104: 8.140015582755354e-09 - syst_JES_EtaIntercalibration_Stat105: 1.085206029977718e-14 - syst_JES_EtaIntercalibration_Stat106: 1.8783642371755272e-18 + syst_JES_EtaIntercalibration_Stat102: 1.11058071e-16 + syst_JES_EtaIntercalibration_Stat103: 8.25928581e-08 + syst_JES_EtaIntercalibration_Stat104: 8.14001558e-09 + syst_JES_EtaIntercalibration_Stat105: 1.08520603e-14 + syst_JES_EtaIntercalibration_Stat106: 1.87836424e-18 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 9.090062417277451e-17 + syst_JES_EtaIntercalibration_Stat109: 9.09006242e-17 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 1.0672298705834793e-07 - syst_JES_EtaIntercalibration_Stat111: 1.0660488981805665e-07 - syst_JES_EtaIntercalibration_Stat112: 9.592081095919697e-09 - syst_JES_EtaIntercalibration_Stat113: 2.823069129068575e-14 - syst_JES_EtaIntercalibration_Stat114: 8.99280779289761e-18 + syst_JES_EtaIntercalibration_Stat110: 1.06722987e-07 + syst_JES_EtaIntercalibration_Stat111: 1.06604890e-07 + syst_JES_EtaIntercalibration_Stat112: 9.59208110e-09 + syst_JES_EtaIntercalibration_Stat113: 2.82306913e-14 + syst_JES_EtaIntercalibration_Stat114: 8.99280779e-18 syst_JES_EtaIntercalibration_Stat115: 0.0 - syst_JES_EtaIntercalibration_Stat116: 6.15570857009979e-17 - syst_JES_EtaIntercalibration_Stat117: 7.380268491050985e-17 - syst_JES_EtaIntercalibration_Stat118: 1.1066938634961341e-20 - syst_JES_EtaIntercalibration_Stat119: 1.1066938634961341e-20 + syst_JES_EtaIntercalibration_Stat116: 6.15570857e-17 + syst_JES_EtaIntercalibration_Stat117: 7.38026849e-17 + syst_JES_EtaIntercalibration_Stat118: 1.10669386e-20 + syst_JES_EtaIntercalibration_Stat119: 1.10669386e-20 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 1.1066938634961341e-20 - syst_JES_EtaIntercalibration_Stat121: 2.949682525289798e-19 - syst_JES_EtaIntercalibration_Stat122: 8.259284768949439e-08 - syst_JES_EtaIntercalibration_Stat123: 3.910429204074023e-08 - syst_JES_EtaIntercalibration_Stat124: 1.2705245732373693e-07 - syst_JES_EtaIntercalibration_Stat125: 2.7843668042842342e-11 - syst_JES_EtaIntercalibration_Stat126: 1.247902418731128e-15 + syst_JES_EtaIntercalibration_Stat120: 1.10669386e-20 + syst_JES_EtaIntercalibration_Stat121: 2.94968253e-19 + syst_JES_EtaIntercalibration_Stat122: 8.25928477e-08 + syst_JES_EtaIntercalibration_Stat123: 3.91042920e-08 + syst_JES_EtaIntercalibration_Stat124: 1.27052457e-07 + syst_JES_EtaIntercalibration_Stat125: 2.78436680e-11 + syst_JES_EtaIntercalibration_Stat126: 1.24790242e-15 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 1.4470011852102955e-11 - syst_JES_EtaIntercalibration_Stat129: 2.680107835050672e-07 + syst_JES_EtaIntercalibration_Stat128: 1.44700119e-11 + syst_JES_EtaIntercalibration_Stat129: 2.68010784e-07 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 5.834780115822704e-07 - syst_JES_EtaIntercalibration_Stat131: 2.92091128759502e-07 - syst_JES_EtaIntercalibration_Stat132: 9.63580461333728e-09 - syst_JES_EtaIntercalibration_Stat133: 1.167697250265499e-14 + syst_JES_EtaIntercalibration_Stat130: 5.83478012e-07 + syst_JES_EtaIntercalibration_Stat131: 2.92091129e-07 + syst_JES_EtaIntercalibration_Stat132: 9.63580461e-09 + syst_JES_EtaIntercalibration_Stat133: 1.16769725e-14 syst_JES_EtaIntercalibration_Stat134: 0.0 - syst_JES_EtaIntercalibration_Stat135: 6.15570857009979e-17 - syst_JES_EtaIntercalibration_Stat136: 6.15570857009979e-17 - syst_JES_EtaIntercalibration_Stat137: 1.1066938634961341e-20 - syst_JES_EtaIntercalibration_Stat138: 1.1066938634961341e-20 - syst_JES_EtaIntercalibration_Stat139: 1.1066938634961341e-20 + syst_JES_EtaIntercalibration_Stat135: 6.15570857e-17 + syst_JES_EtaIntercalibration_Stat136: 6.15570857e-17 + syst_JES_EtaIntercalibration_Stat137: 1.10669386e-20 + syst_JES_EtaIntercalibration_Stat138: 1.10669386e-20 + syst_JES_EtaIntercalibration_Stat139: 1.10669386e-20 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 1.1807390355197035e-19 - syst_JES_EtaIntercalibration_Stat141: 8.243756597765366e-08 - syst_JES_EtaIntercalibration_Stat142: 7.895177180247444e-08 - syst_JES_EtaIntercalibration_Stat143: 2.439640291108507e-07 - syst_JES_EtaIntercalibration_Stat144: 2.1173348814016172e-07 - syst_JES_EtaIntercalibration_Stat145: 2.7334445082487044e-15 - syst_JES_EtaIntercalibration_Stat146: 9.840035824216261e-08 - syst_JES_EtaIntercalibration_Stat147: 2.679761756201472e-07 - syst_JES_EtaIntercalibration_Stat148: 5.807471114865747e-07 - syst_JES_EtaIntercalibration_Stat149: 2.917639585349774e-07 + syst_JES_EtaIntercalibration_Stat140: 1.18073904e-19 + syst_JES_EtaIntercalibration_Stat141: 8.24375660e-08 + syst_JES_EtaIntercalibration_Stat142: 7.89517718e-08 + syst_JES_EtaIntercalibration_Stat143: 2.43964029e-07 + syst_JES_EtaIntercalibration_Stat144: 2.11733488e-07 + syst_JES_EtaIntercalibration_Stat145: 2.73344451e-15 + syst_JES_EtaIntercalibration_Stat146: 9.84003582e-08 + syst_JES_EtaIntercalibration_Stat147: 2.67976176e-07 + syst_JES_EtaIntercalibration_Stat148: 5.80747111e-07 + syst_JES_EtaIntercalibration_Stat149: 2.91763959e-07 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 9.62426542786347e-09 - syst_JES_EtaIntercalibration_Stat151: 7.744565299042985e-14 + syst_JES_EtaIntercalibration_Stat150: 9.62426543e-09 + syst_JES_EtaIntercalibration_Stat151: 7.74456530e-14 syst_JES_EtaIntercalibration_Stat152: 0.0 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 1.1066938634961341e-20 + syst_JES_EtaIntercalibration_Stat156: 1.10669386e-20 syst_JES_EtaIntercalibration_Stat157: 0.0 syst_JES_EtaIntercalibration_Stat158: 0.0 - syst_JES_EtaIntercalibration_Stat159: 8.364017374926656e-08 - syst_JES_EtaIntercalibration_Stat16: 8.260150301296126e-08 - syst_JES_EtaIntercalibration_Stat160: 9.136080724249322e-08 - syst_JES_EtaIntercalibration_Stat161: 2.4840064412154815e-07 - syst_JES_EtaIntercalibration_Stat162: 3.0436279716811644e-07 - syst_JES_EtaIntercalibration_Stat163: 2.07657032628322e-12 - syst_JES_EtaIntercalibration_Stat164: 1.0671067194020791e-07 - syst_JES_EtaIntercalibration_Stat165: 7.348077911944048e-07 - syst_JES_EtaIntercalibration_Stat166: 2.651647931004416e-06 - syst_JES_EtaIntercalibration_Stat167: 5.256151324876406e-07 - syst_JES_EtaIntercalibration_Stat168: 8.921453299070729e-09 - syst_JES_EtaIntercalibration_Stat169: 7.744565299042985e-14 - syst_JES_EtaIntercalibration_Stat17: 1.6906470095264563e-18 + syst_JES_EtaIntercalibration_Stat159: 8.36401737e-08 + syst_JES_EtaIntercalibration_Stat16: 8.26015030e-08 + syst_JES_EtaIntercalibration_Stat160: 9.13608072e-08 + syst_JES_EtaIntercalibration_Stat161: 2.48400644e-07 + syst_JES_EtaIntercalibration_Stat162: 3.04362797e-07 + syst_JES_EtaIntercalibration_Stat163: 2.07657033e-12 + syst_JES_EtaIntercalibration_Stat164: 1.06710672e-07 + syst_JES_EtaIntercalibration_Stat165: 7.34807791e-07 + syst_JES_EtaIntercalibration_Stat166: 2.65164793e-06 + syst_JES_EtaIntercalibration_Stat167: 5.25615132e-07 + syst_JES_EtaIntercalibration_Stat168: 8.92145330e-09 + syst_JES_EtaIntercalibration_Stat169: 7.74456530e-14 + syst_JES_EtaIntercalibration_Stat17: 1.69064701e-18 syst_JES_EtaIntercalibration_Stat170: 0.0 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 syst_JES_EtaIntercalibration_Stat175: 0.0 - syst_JES_EtaIntercalibration_Stat176: 7.763051719523707e-15 - syst_JES_EtaIntercalibration_Stat177: 8.738734364178546e-08 - syst_JES_EtaIntercalibration_Stat178: 3.554361968061216e-07 - syst_JES_EtaIntercalibration_Stat179: 2.916551559633397e-06 - syst_JES_EtaIntercalibration_Stat18: 2.3833588205513662e-21 - syst_JES_EtaIntercalibration_Stat180: 3.667657665322651e-07 - syst_JES_EtaIntercalibration_Stat181: 5.343442067684462e-10 - syst_JES_EtaIntercalibration_Stat182: 4.8358545263479545e-06 - syst_JES_EtaIntercalibration_Stat183: 8.99830472922539e-06 - syst_JES_EtaIntercalibration_Stat184: 3.3725797247804242e-06 - syst_JES_EtaIntercalibration_Stat185: 3.015163179663747e-07 - syst_JES_EtaIntercalibration_Stat186: 7.744865186044236e-14 + syst_JES_EtaIntercalibration_Stat176: 7.76305172e-15 + syst_JES_EtaIntercalibration_Stat177: 8.73873436e-08 + syst_JES_EtaIntercalibration_Stat178: 3.55436197e-07 + syst_JES_EtaIntercalibration_Stat179: 2.91655156e-06 + syst_JES_EtaIntercalibration_Stat18: 2.38335882e-21 + syst_JES_EtaIntercalibration_Stat180: 3.66765767e-07 + syst_JES_EtaIntercalibration_Stat181: 5.34344207e-10 + syst_JES_EtaIntercalibration_Stat182: 4.83585453e-06 + syst_JES_EtaIntercalibration_Stat183: 8.99830473e-06 + syst_JES_EtaIntercalibration_Stat184: 3.37257972e-06 + syst_JES_EtaIntercalibration_Stat185: 3.01516318e-07 + syst_JES_EtaIntercalibration_Stat186: 7.74486519e-14 syst_JES_EtaIntercalibration_Stat187: 0.0 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 @@ -51343,31 +51343,31 @@ bins: syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 syst_JES_EtaIntercalibration_Stat192: 0.0 - syst_JES_EtaIntercalibration_Stat193: 8.259284472508845e-08 - syst_JES_EtaIntercalibration_Stat194: 2.3775180267455387e-07 - syst_JES_EtaIntercalibration_Stat195: 3.3161940157355093e-06 - syst_JES_EtaIntercalibration_Stat196: 9.359520220075386e-06 - syst_JES_EtaIntercalibration_Stat197: 6.006039210661215e-06 - syst_JES_EtaIntercalibration_Stat198: 1.807044825121945e-05 - syst_JES_EtaIntercalibration_Stat199: 8.389905899353103e-06 + syst_JES_EtaIntercalibration_Stat193: 8.25928447e-08 + syst_JES_EtaIntercalibration_Stat194: 2.37751803e-07 + syst_JES_EtaIntercalibration_Stat195: 3.31619402e-06 + syst_JES_EtaIntercalibration_Stat196: 9.35952022e-06 + syst_JES_EtaIntercalibration_Stat197: 6.00603921e-06 + syst_JES_EtaIntercalibration_Stat198: 1.80704483e-05 + syst_JES_EtaIntercalibration_Stat199: 8.38990590e-06 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 7.484384083376534e-07 - syst_JES_EtaIntercalibration_Stat201: 7.744865186044236e-14 + syst_JES_EtaIntercalibration_Stat200: 7.48438408e-07 + syst_JES_EtaIntercalibration_Stat201: 7.74486519e-14 syst_JES_EtaIntercalibration_Stat202: 0.0 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 syst_JES_EtaIntercalibration_Stat207: 0.0 - syst_JES_EtaIntercalibration_Stat208: 8.260150301295975e-08 - syst_JES_EtaIntercalibration_Stat209: 7.462396850208384e-07 + syst_JES_EtaIntercalibration_Stat208: 8.26015030e-08 + syst_JES_EtaIntercalibration_Stat209: 7.46239685e-07 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 6.42844497137527e-06 - syst_JES_EtaIntercalibration_Stat211: 1.7697915131449806e-05 - syst_JES_EtaIntercalibration_Stat212: 7.944894587091762e-06 - syst_JES_EtaIntercalibration_Stat213: 7.013940172969826e-07 - syst_JES_EtaIntercalibration_Stat214: 7.744865186044236e-14 + syst_JES_EtaIntercalibration_Stat210: 6.42844497e-06 + syst_JES_EtaIntercalibration_Stat211: 1.76979151e-05 + syst_JES_EtaIntercalibration_Stat212: 7.94489459e-06 + syst_JES_EtaIntercalibration_Stat213: 7.01394017e-07 + syst_JES_EtaIntercalibration_Stat214: 7.74486519e-14 syst_JES_EtaIntercalibration_Stat215: 0.0 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 @@ -51375,11 +51375,11 @@ bins: syst_JES_EtaIntercalibration_Stat219: 0.0 syst_JES_EtaIntercalibration_Stat22: 0.0 syst_JES_EtaIntercalibration_Stat220: 0.0 - syst_JES_EtaIntercalibration_Stat221: 8.258418250488408e-08 - syst_JES_EtaIntercalibration_Stat222: 7.385898117358512e-07 - syst_JES_EtaIntercalibration_Stat223: 9.11475172453973e-06 - syst_JES_EtaIntercalibration_Stat224: 2.3440317297340494e-05 - syst_JES_EtaIntercalibration_Stat225: 1.7177115307000765e-06 + syst_JES_EtaIntercalibration_Stat221: 8.25841825e-08 + syst_JES_EtaIntercalibration_Stat222: 7.38589812e-07 + syst_JES_EtaIntercalibration_Stat223: 9.11475172e-06 + syst_JES_EtaIntercalibration_Stat224: 2.34403173e-05 + syst_JES_EtaIntercalibration_Stat225: 1.71771153e-06 syst_JES_EtaIntercalibration_Stat226: 0.0 syst_JES_EtaIntercalibration_Stat227: 0.0 syst_JES_EtaIntercalibration_Stat228: 0.0 @@ -51388,291 +51388,291 @@ bins: syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 syst_JES_EtaIntercalibration_Stat232: 0.0 - syst_JES_EtaIntercalibration_Stat233: 8.258418250488408e-08 - syst_JES_EtaIntercalibration_Stat234: 5.191102385216738e-07 - syst_JES_EtaIntercalibration_Stat235: 2.9223334426447646e-05 - syst_JES_EtaIntercalibration_Stat236: 7.348263633675645e-07 + syst_JES_EtaIntercalibration_Stat233: 8.25841825e-08 + syst_JES_EtaIntercalibration_Stat234: 5.19110239e-07 + syst_JES_EtaIntercalibration_Stat235: 2.92233344e-05 + syst_JES_EtaIntercalibration_Stat236: 7.34826363e-07 syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 syst_JES_EtaIntercalibration_Stat239: 0.0 - syst_JES_EtaIntercalibration_Stat24: 9.980076753211871e-21 + syst_JES_EtaIntercalibration_Stat24: 9.98007675e-21 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 syst_JES_EtaIntercalibration_Stat243: 0.0 - syst_JES_EtaIntercalibration_Stat244: 8.258418250488408e-08 - syst_JES_EtaIntercalibration_Stat245: 8.626985626509413e-08 - syst_JES_EtaIntercalibration_Stat25: 4.264272124290381e-19 - syst_JES_EtaIntercalibration_Stat26: 9.73499156452804e-09 - syst_JES_EtaIntercalibration_Stat27: 1.1644123275545781e-14 - syst_JES_EtaIntercalibration_Stat28: 1.0653536214328087e-19 + syst_JES_EtaIntercalibration_Stat244: 8.25841825e-08 + syst_JES_EtaIntercalibration_Stat245: 8.62698563e-08 + syst_JES_EtaIntercalibration_Stat25: 4.26427212e-19 + syst_JES_EtaIntercalibration_Stat26: 9.73499156e-09 + syst_JES_EtaIntercalibration_Stat27: 1.16441233e-14 + syst_JES_EtaIntercalibration_Stat28: 1.06535362e-19 syst_JES_EtaIntercalibration_Stat29: 0.0 - syst_JES_EtaIntercalibration_Stat3: 2.880989573046039e-20 + syst_JES_EtaIntercalibration_Stat3: 2.88098957e-20 syst_JES_EtaIntercalibration_Stat30: 0.0 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 1.5302668884871032e-19 - syst_JES_EtaIntercalibration_Stat36: 1.5302668884871032e-19 - syst_JES_EtaIntercalibration_Stat37: 3.356929387103637e-19 - syst_JES_EtaIntercalibration_Stat38: 8.260150301382175e-08 - syst_JES_EtaIntercalibration_Stat39: 8.260150301388755e-08 - syst_JES_EtaIntercalibration_Stat4: 7.541349499431845e-14 - syst_JES_EtaIntercalibration_Stat40: 2.500907288865383e-18 + syst_JES_EtaIntercalibration_Stat35: 1.53026689e-19 + syst_JES_EtaIntercalibration_Stat36: 1.53026689e-19 + syst_JES_EtaIntercalibration_Stat37: 3.35692939e-19 + syst_JES_EtaIntercalibration_Stat38: 8.26015030e-08 + syst_JES_EtaIntercalibration_Stat39: 8.26015030e-08 + syst_JES_EtaIntercalibration_Stat4: 7.54134950e-14 + syst_JES_EtaIntercalibration_Stat40: 2.50090729e-18 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 syst_JES_EtaIntercalibration_Stat44: 0.0 syst_JES_EtaIntercalibration_Stat45: 0.0 - syst_JES_EtaIntercalibration_Stat46: 3.8097573085434195e-20 - syst_JES_EtaIntercalibration_Stat47: 3.855824036441497e-18 - syst_JES_EtaIntercalibration_Stat48: 9.6968864587375e-09 - syst_JES_EtaIntercalibration_Stat49: 1.163364307640023e-14 - syst_JES_EtaIntercalibration_Stat5: 7.54221528483108e-14 - syst_JES_EtaIntercalibration_Stat50: 3.1589126293710625e-19 + syst_JES_EtaIntercalibration_Stat46: 3.80975731e-20 + syst_JES_EtaIntercalibration_Stat47: 3.85582404e-18 + syst_JES_EtaIntercalibration_Stat48: 9.69688646e-09 + syst_JES_EtaIntercalibration_Stat49: 1.16336431e-14 + syst_JES_EtaIntercalibration_Stat5: 7.54221528e-14 + syst_JES_EtaIntercalibration_Stat50: 3.15891263e-19 syst_JES_EtaIntercalibration_Stat51: 0.0 syst_JES_EtaIntercalibration_Stat52: 0.0 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 1.1066938634961341e-20 - syst_JES_EtaIntercalibration_Stat57: 1.5302668884871032e-19 - syst_JES_EtaIntercalibration_Stat58: 1.5302668884871032e-19 - syst_JES_EtaIntercalibration_Stat59: 4.2242800200152454e-19 + syst_JES_EtaIntercalibration_Stat56: 1.10669386e-20 + syst_JES_EtaIntercalibration_Stat57: 1.53026689e-19 + syst_JES_EtaIntercalibration_Stat58: 1.53026689e-19 + syst_JES_EtaIntercalibration_Stat59: 4.22428002e-19 syst_JES_EtaIntercalibration_Stat6: 0.0 - syst_JES_EtaIntercalibration_Stat60: 8.260150516647648e-08 - syst_JES_EtaIntercalibration_Stat61: 8.260150741814325e-08 - syst_JES_EtaIntercalibration_Stat62: 7.67816219872959e-18 - syst_JES_EtaIntercalibration_Stat63: 1.2472001960691794e-20 + syst_JES_EtaIntercalibration_Stat60: 8.26015052e-08 + syst_JES_EtaIntercalibration_Stat61: 8.26015074e-08 + syst_JES_EtaIntercalibration_Stat62: 7.67816220e-18 + syst_JES_EtaIntercalibration_Stat63: 1.24720020e-20 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 1.7976314193960897e-19 - syst_JES_EtaIntercalibration_Stat69: 9.653611621804001e-09 + syst_JES_EtaIntercalibration_Stat68: 1.79763142e-19 + syst_JES_EtaIntercalibration_Stat69: 9.65361162e-09 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 9.632469692900713e-09 - syst_JES_EtaIntercalibration_Stat71: 9.72373335655182e-09 - syst_JES_EtaIntercalibration_Stat72: 1.1625202375163523e-14 + syst_JES_EtaIntercalibration_Stat70: 9.63246969e-09 + syst_JES_EtaIntercalibration_Stat71: 9.72373336e-09 + syst_JES_EtaIntercalibration_Stat72: 1.16252024e-14 syst_JES_EtaIntercalibration_Stat73: 0.0 syst_JES_EtaIntercalibration_Stat74: 0.0 syst_JES_EtaIntercalibration_Stat75: 0.0 - syst_JES_EtaIntercalibration_Stat76: 6.819084029398669e-20 - syst_JES_EtaIntercalibration_Stat77: 1.1066938634961341e-20 - syst_JES_EtaIntercalibration_Stat78: 1.1066938634961341e-20 - syst_JES_EtaIntercalibration_Stat79: 1.5302668884871032e-19 + syst_JES_EtaIntercalibration_Stat76: 6.81908403e-20 + syst_JES_EtaIntercalibration_Stat77: 1.10669386e-20 + syst_JES_EtaIntercalibration_Stat78: 1.10669386e-20 + syst_JES_EtaIntercalibration_Stat79: 1.53026689e-19 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 1.5034201009697856e-19 - syst_JES_EtaIntercalibration_Stat81: 2.040471024053025e-18 - syst_JES_EtaIntercalibration_Stat82: 8.25928474758747e-08 - syst_JES_EtaIntercalibration_Stat83: 8.15013660338469e-09 - syst_JES_EtaIntercalibration_Stat84: 1.8548118145785033e-15 - syst_JES_EtaIntercalibration_Stat85: 2.1725493665277207e-20 + syst_JES_EtaIntercalibration_Stat80: 1.50342010e-19 + syst_JES_EtaIntercalibration_Stat81: 2.04047102e-18 + syst_JES_EtaIntercalibration_Stat82: 8.25928475e-08 + syst_JES_EtaIntercalibration_Stat83: 8.15013660e-09 + syst_JES_EtaIntercalibration_Stat84: 1.85481181e-15 + syst_JES_EtaIntercalibration_Stat85: 2.17254937e-20 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 2.5164518413830215e-19 + syst_JES_EtaIntercalibration_Stat89: 2.51645184e-19 syst_JES_EtaIntercalibration_Stat9: 0.0 - syst_JES_EtaIntercalibration_Stat90: 9.651770535403076e-09 - syst_JES_EtaIntercalibration_Stat91: 9.608817956235563e-09 - syst_JES_EtaIntercalibration_Stat92: 4.883489261532168e-14 - syst_JES_EtaIntercalibration_Stat93: 1.1995625122313218e-14 + syst_JES_EtaIntercalibration_Stat90: 9.65177054e-09 + syst_JES_EtaIntercalibration_Stat91: 9.60881796e-09 + syst_JES_EtaIntercalibration_Stat92: 4.88348926e-14 + syst_JES_EtaIntercalibration_Stat93: 1.19956251e-14 syst_JES_EtaIntercalibration_Stat94: 0.0 syst_JES_EtaIntercalibration_Stat95: 0.0 - syst_JES_EtaIntercalibration_Stat96: 7.380268491050985e-17 - syst_JES_EtaIntercalibration_Stat97: 6.819084029398669e-20 - syst_JES_EtaIntercalibration_Stat98: 1.1066938634961341e-20 - syst_JES_EtaIntercalibration_Stat99: 1.1066938634961341e-20 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0001276461659236187 - syst_JES_Flavour_Comp: 0.00033554461700346195 - syst_JES_Flavour_Response: 4.8416749942556045e-05 - syst_JES_Gjet_Generator: 0.0004229902215181812 - syst_JES_Gjet_OOC: 0.00035180302372208233 - syst_JES_Gjet_Purity: 6.90103345521524e-05 - syst_JES_Gjet_Stat1: 1.0707531029607152e-07 - syst_JES_Gjet_Stat10: 4.998502850854444e-06 - syst_JES_Gjet_Stat11: 6.216785503779264e-06 - syst_JES_Gjet_Stat12: 2.0791709886394623e-05 - syst_JES_Gjet_Stat13: 7.234501140368976e-05 - syst_JES_Gjet_Stat14: 0.00018932418625204758 - syst_JES_Gjet_Stat15: 0.0001823301058519958 - syst_JES_Gjet_Stat2: 7.442305607135466e-07 - syst_JES_Gjet_Stat3: 4.897373658405391e-07 - syst_JES_Gjet_Stat4: 5.959986828850722e-07 - syst_JES_Gjet_Stat5: 6.73161546362485e-07 - syst_JES_Gjet_Stat6: 1.519770458204949e-07 - syst_JES_Gjet_Stat7: 2.0510088166741263e-08 - syst_JES_Gjet_Stat8: 5.298069719246813e-07 - syst_JES_Gjet_Stat9: 3.1600659407676924e-06 - syst_JES_Gjet_Veto: 0.0003507661150966552 - syst_JES_Gjet_dPhi: 2.3610922790098653e-05 - syst_JES_LArESZee: 0.0006487886154210784 - syst_JES_LArEsmear: 5.700338301364227e-05 - syst_JES_LAr_JVT: 7.191349021567511e-05 - syst_JES_MJB_Alpha: 2.4257371560002126e-06 - syst_JES_MJB_Asym: 6.824039621074895e-05 - syst_JES_MJB_Beta: 3.650297076951409e-06 - syst_JES_MJB_Fragmentation: 4.195137304070035e-05 - syst_JES_MJB_Stat1: 3.1635908000245545e-09 - syst_JES_MJB_Stat10: 2.4802967564386324e-09 - syst_JES_MJB_Stat11: 4.2140549687919355e-08 + syst_JES_EtaIntercalibration_Stat96: 7.38026849e-17 + syst_JES_EtaIntercalibration_Stat97: 6.81908403e-20 + syst_JES_EtaIntercalibration_Stat98: 1.10669386e-20 + syst_JES_EtaIntercalibration_Stat99: 1.10669386e-20 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.27646166e-04 + syst_JES_Flavour_Comp: 3.35544617e-04 + syst_JES_Flavour_Response: 4.84167499e-05 + syst_JES_Gjet_Generator: 4.22990222e-04 + syst_JES_Gjet_OOC: 3.51803024e-04 + syst_JES_Gjet_Purity: 6.90103346e-05 + syst_JES_Gjet_Stat1: 1.07075310e-07 + syst_JES_Gjet_Stat10: 4.99850285e-06 + syst_JES_Gjet_Stat11: 6.21678550e-06 + syst_JES_Gjet_Stat12: 2.07917099e-05 + syst_JES_Gjet_Stat13: 7.23450114e-05 + syst_JES_Gjet_Stat14: 1.89324186e-04 + syst_JES_Gjet_Stat15: 1.82330106e-04 + syst_JES_Gjet_Stat2: 7.44230561e-07 + syst_JES_Gjet_Stat3: 4.89737366e-07 + syst_JES_Gjet_Stat4: 5.95998683e-07 + syst_JES_Gjet_Stat5: 6.73161546e-07 + syst_JES_Gjet_Stat6: 1.51977046e-07 + syst_JES_Gjet_Stat7: 2.05100882e-08 + syst_JES_Gjet_Stat8: 5.29806972e-07 + syst_JES_Gjet_Stat9: 3.16006594e-06 + syst_JES_Gjet_Veto: 3.50766115e-04 + syst_JES_Gjet_dPhi: 2.36109228e-05 + syst_JES_LArESZee: 6.48788615e-04 + syst_JES_LArEsmear: 5.70033830e-05 + syst_JES_LAr_JVT: 7.19134902e-05 + syst_JES_MJB_Alpha: 2.42573716e-06 + syst_JES_MJB_Asym: 6.82403962e-05 + syst_JES_MJB_Beta: 3.65029708e-06 + syst_JES_MJB_Fragmentation: 4.19513730e-05 + syst_JES_MJB_Stat1: 3.16359080e-09 + syst_JES_MJB_Stat10: 2.48029676e-09 + syst_JES_MJB_Stat11: 4.21405497e-08 syst_JES_MJB_Stat12: 0.0 syst_JES_MJB_Stat13: 0.0 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 - syst_JES_MJB_Stat16: 2.424871130596428e-08 - syst_JES_MJB_Stat2: 7.181968317077151e-07 - syst_JES_MJB_Stat3: 1.8319507853651528e-06 - syst_JES_MJB_Stat4: 7.476074638329395e-07 - syst_JES_MJB_Stat5: 3.403438227733831e-07 - syst_JES_MJB_Stat6: 4.818002983602231e-08 - syst_JES_MJB_Stat7: 2.61651173551257e-06 - syst_JES_MJB_Stat8: 5.3500988886257984e-08 - syst_JES_MJB_Stat9: 6.404295093612958e-08 - syst_JES_MJB_Threshold: 4.574437970942442e-05 - syst_JES_Pileup_MuOffset: 8.099119751553252e-05 - syst_JES_Pileup_NPVOffset: 8.938972913595835e-05 - syst_JES_Pileup_Pt_term: 8.428742655343086e-05 - syst_JES_Pileup_Rho_topology: 0.00012182364579587988 - syst_JES_PunchThrough_MC15: 6.142861466775887e-05 + syst_JES_MJB_Stat16: 2.42487113e-08 + syst_JES_MJB_Stat2: 7.18196832e-07 + syst_JES_MJB_Stat3: 1.83195079e-06 + syst_JES_MJB_Stat4: 7.47607464e-07 + syst_JES_MJB_Stat5: 3.40343823e-07 + syst_JES_MJB_Stat6: 4.81800298e-08 + syst_JES_MJB_Stat7: 2.61651174e-06 + syst_JES_MJB_Stat8: 5.35009889e-08 + syst_JES_MJB_Stat9: 6.40429509e-08 + syst_JES_MJB_Threshold: 4.57443797e-05 + syst_JES_Pileup_MuOffset: 8.09911975e-05 + syst_JES_Pileup_NPVOffset: 8.93897291e-05 + syst_JES_Pileup_Pt_term: 8.42874266e-05 + syst_JES_Pileup_Rho_topology: 1.21823646e-04 + syst_JES_PunchThrough_MC15: 6.14286147e-05 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.00016895129475680263 - syst_JES_Zjet_MuScale: 5.701959904278528e-06 - syst_JES_Zjet_MuSmearID: 1.027693548680734e-06 - syst_JES_Zjet_MuSmearMS: 4.678982234418079e-05 - syst_JES_Zjet_OOC: 0.00010116752344502657 - syst_JES_Zjet_Stat1: 1.1309425748015258e-06 - syst_JES_Zjet_Stat10: 4.8475497852007665e-06 - syst_JES_Zjet_Stat11: 6.862973146348454e-06 - syst_JES_Zjet_Stat12: 2.5631671814378395e-05 - syst_JES_Zjet_Stat13: 5.1165004397537194e-05 - syst_JES_Zjet_Stat2: 2.1908055978338196e-08 - syst_JES_Zjet_Stat3: 1.0135961325893072e-06 - syst_JES_Zjet_Stat4: 9.175174916588784e-19 - syst_JES_Zjet_Stat5: 1.3647820586086264e-18 - syst_JES_Zjet_Stat6: 1.3977333859816096e-06 - syst_JES_Zjet_Stat7: 1.8136210554233757e-13 - syst_JES_Zjet_Stat8: 1.8767493173037256e-10 - syst_JES_Zjet_Stat9: 2.334934009774152e-06 - syst_JES_Zjet_Veto: 1.2720148220441458e-05 - syst_JES_Zjet_dPhi: 1.0817981454504347e-05 + syst_JES_Zjet_MC: 1.68951295e-04 + syst_JES_Zjet_MuScale: 5.70195990e-06 + syst_JES_Zjet_MuSmearID: 1.02769355e-06 + syst_JES_Zjet_MuSmearMS: 4.67898223e-05 + syst_JES_Zjet_OOC: 1.01167523e-04 + syst_JES_Zjet_Stat1: 1.13094257e-06 + syst_JES_Zjet_Stat10: 4.84754979e-06 + syst_JES_Zjet_Stat11: 6.86297315e-06 + syst_JES_Zjet_Stat12: 2.56316718e-05 + syst_JES_Zjet_Stat13: 5.11650044e-05 + syst_JES_Zjet_Stat2: 2.19080560e-08 + syst_JES_Zjet_Stat3: 1.01359613e-06 + syst_JES_Zjet_Stat4: 9.17517492e-19 + syst_JES_Zjet_Stat5: 1.36478206e-18 + syst_JES_Zjet_Stat6: 1.39773339e-06 + syst_JES_Zjet_Stat7: 1.81362106e-13 + syst_JES_Zjet_Stat8: 1.87674932e-10 + syst_JES_Zjet_Stat9: 2.33493401e-06 + syst_JES_Zjet_Veto: 1.27201482e-05 + syst_JES_Zjet_dPhi: 1.08179815e-05 syst_PRW: 2.43e-06 - syst_Unfolding_bias: 1.1252e-08 - syst_cleaning: 6.551482179629278e-05 - syst_lumi: 0.0002156 -- stat: 0.00016258 + syst_Unfolding_bias: 1.12520000e-08 + syst_cleaning: 6.55148218e-05 + syst_lumi: 2.15600000e-04 +- stat: 1.62580000e-04 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 6.47914948122051e-05 - syst_JER_NP1: 0.0001240823416123342 - syst_JER_NP2: 2.465574324635207e-05 - syst_JER_NP3: 1.819137949787294e-06 - syst_JER_NP4: 1.6853521982977327e-06 - syst_JER_NP5: 3.824394044117414e-12 - syst_JER_NP6: 7.217315913828353e-15 - syst_JER_NP7: 2.1263214714619236e-18 - syst_JER_NP8: 4.905174079479749e-06 - syst_JES_EtaIntercalibration_Modelling: 0.00038933296803635837 - syst_JES_EtaIntercalibration_NonClosure: 4.553155389397555e-05 + syst_JER_NP0: 6.47914948e-05 + syst_JER_NP1: 1.24082342e-04 + syst_JER_NP2: 2.46557432e-05 + syst_JER_NP3: 1.81913795e-06 + syst_JER_NP4: 1.68535220e-06 + syst_JER_NP5: 3.82439404e-12 + syst_JER_NP6: 7.21731591e-15 + syst_JER_NP7: 2.12632147e-18 + syst_JER_NP8: 4.90517408e-06 + syst_JES_EtaIntercalibration_Modelling: 3.89332968e-04 + syst_JES_EtaIntercalibration_NonClosure: 4.55315539e-05 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 2.4473877910948238e-21 + syst_JES_EtaIntercalibration_Stat100: 2.44738779e-21 syst_JES_EtaIntercalibration_Stat101: 0.0 - syst_JES_EtaIntercalibration_Stat102: 1.500422329712538e-17 - syst_JES_EtaIntercalibration_Stat103: 1.6541086983305487e-08 - syst_JES_EtaIntercalibration_Stat104: 3.010214198358648e-09 - syst_JES_EtaIntercalibration_Stat105: 1.2895039540458958e-15 - syst_JES_EtaIntercalibration_Stat106: 2.8759867228483516e-19 + syst_JES_EtaIntercalibration_Stat102: 1.50042233e-17 + syst_JES_EtaIntercalibration_Stat103: 1.65410870e-08 + syst_JES_EtaIntercalibration_Stat104: 3.01021420e-09 + syst_JES_EtaIntercalibration_Stat105: 1.28950395e-15 + syst_JES_EtaIntercalibration_Stat106: 2.87598672e-19 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 1.2117469568767235e-17 + syst_JES_EtaIntercalibration_Stat109: 1.21174696e-17 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 1.9592044094656046e-08 - syst_JES_EtaIntercalibration_Stat111: 1.956405651147788e-08 - syst_JES_EtaIntercalibration_Stat112: 4.86855369488722e-10 - syst_JES_EtaIntercalibration_Stat113: 3.407135801153221e-15 - syst_JES_EtaIntercalibration_Stat114: 1.3440714266734488e-18 + syst_JES_EtaIntercalibration_Stat110: 1.95920441e-08 + syst_JES_EtaIntercalibration_Stat111: 1.95640565e-08 + syst_JES_EtaIntercalibration_Stat112: 4.86855369e-10 + syst_JES_EtaIntercalibration_Stat113: 3.40713580e-15 + syst_JES_EtaIntercalibration_Stat114: 1.34407143e-18 syst_JES_EtaIntercalibration_Stat115: 0.0 - syst_JES_EtaIntercalibration_Stat116: 7.12565702233836e-18 - syst_JES_EtaIntercalibration_Stat117: 9.064687901411719e-18 - syst_JES_EtaIntercalibration_Stat118: 2.4473877910948238e-21 - syst_JES_EtaIntercalibration_Stat119: 2.4473877910948238e-21 + syst_JES_EtaIntercalibration_Stat116: 7.12565702e-18 + syst_JES_EtaIntercalibration_Stat117: 9.06468790e-18 + syst_JES_EtaIntercalibration_Stat118: 2.44738779e-21 + syst_JES_EtaIntercalibration_Stat119: 2.44738779e-21 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 2.4473877910948238e-21 - syst_JES_EtaIntercalibration_Stat121: 4.803842914792281e-20 - syst_JES_EtaIntercalibration_Stat122: 1.654108580753099e-08 - syst_JES_EtaIntercalibration_Stat123: 1.417877059127483e-08 - syst_JES_EtaIntercalibration_Stat124: 2.2114431339512216e-08 - syst_JES_EtaIntercalibration_Stat125: 3.578689250270272e-12 - syst_JES_EtaIntercalibration_Stat126: 1.4259992465197868e-16 + syst_JES_EtaIntercalibration_Stat120: 2.44738779e-21 + syst_JES_EtaIntercalibration_Stat121: 4.80384291e-20 + syst_JES_EtaIntercalibration_Stat122: 1.65410858e-08 + syst_JES_EtaIntercalibration_Stat123: 1.41787706e-08 + syst_JES_EtaIntercalibration_Stat124: 2.21144313e-08 + syst_JES_EtaIntercalibration_Stat125: 3.57868925e-12 + syst_JES_EtaIntercalibration_Stat126: 1.42599925e-16 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 1.796397227786772e-12 - syst_JES_EtaIntercalibration_Stat129: 9.810569963055155e-08 + syst_JES_EtaIntercalibration_Stat128: 1.79639723e-12 + syst_JES_EtaIntercalibration_Stat129: 9.81056996e-08 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 2.422895530145697e-07 - syst_JES_EtaIntercalibration_Stat131: 9.926330691650364e-08 - syst_JES_EtaIntercalibration_Stat132: 5.020145296381048e-10 - syst_JES_EtaIntercalibration_Stat133: 1.4103292684203217e-15 + syst_JES_EtaIntercalibration_Stat130: 2.42289553e-07 + syst_JES_EtaIntercalibration_Stat131: 9.92633069e-08 + syst_JES_EtaIntercalibration_Stat132: 5.02014530e-10 + syst_JES_EtaIntercalibration_Stat133: 1.41032927e-15 syst_JES_EtaIntercalibration_Stat134: 0.0 - syst_JES_EtaIntercalibration_Stat135: 7.12565702233836e-18 - syst_JES_EtaIntercalibration_Stat136: 7.12565702233836e-18 - syst_JES_EtaIntercalibration_Stat137: 2.4473877910948238e-21 - syst_JES_EtaIntercalibration_Stat138: 2.4473877910948238e-21 - syst_JES_EtaIntercalibration_Stat139: 2.4473877910948238e-21 + syst_JES_EtaIntercalibration_Stat135: 7.12565702e-18 + syst_JES_EtaIntercalibration_Stat136: 7.12565702e-18 + syst_JES_EtaIntercalibration_Stat137: 2.44738779e-21 + syst_JES_EtaIntercalibration_Stat138: 2.44738779e-21 + syst_JES_EtaIntercalibration_Stat139: 2.44738779e-21 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 1.564041879234696e-20 - syst_JES_EtaIntercalibration_Stat141: 1.6550045858169095e-08 - syst_JES_EtaIntercalibration_Stat142: 2.6501980966034877e-08 - syst_JES_EtaIntercalibration_Stat143: 1.6214792844806868e-07 - syst_JES_EtaIntercalibration_Stat144: 9.001993914128138e-08 - syst_JES_EtaIntercalibration_Stat145: 3.2763264199404796e-16 - syst_JES_EtaIntercalibration_Stat146: 1.971107994745688e-08 - syst_JES_EtaIntercalibration_Stat147: 9.809445295224395e-08 - syst_JES_EtaIntercalibration_Stat148: 2.4189094133513973e-07 - syst_JES_EtaIntercalibration_Stat149: 9.919427604453798e-08 + syst_JES_EtaIntercalibration_Stat140: 1.56404188e-20 + syst_JES_EtaIntercalibration_Stat141: 1.65500459e-08 + syst_JES_EtaIntercalibration_Stat142: 2.65019810e-08 + syst_JES_EtaIntercalibration_Stat143: 1.62147928e-07 + syst_JES_EtaIntercalibration_Stat144: 9.00199391e-08 + syst_JES_EtaIntercalibration_Stat145: 3.27632642e-16 + syst_JES_EtaIntercalibration_Stat146: 1.97110799e-08 + syst_JES_EtaIntercalibration_Stat147: 9.80944530e-08 + syst_JES_EtaIntercalibration_Stat148: 2.41890941e-07 + syst_JES_EtaIntercalibration_Stat149: 9.91942760e-08 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 4.986903064143993e-10 - syst_JES_EtaIntercalibration_Stat151: 9.151708242555416e-15 + syst_JES_EtaIntercalibration_Stat150: 4.98690306e-10 + syst_JES_EtaIntercalibration_Stat151: 9.15170824e-15 syst_JES_EtaIntercalibration_Stat152: 0.0 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 2.4473877910948238e-21 + syst_JES_EtaIntercalibration_Stat156: 2.44738779e-21 syst_JES_EtaIntercalibration_Stat157: 0.0 syst_JES_EtaIntercalibration_Stat158: 0.0 - syst_JES_EtaIntercalibration_Stat159: 1.6724523345076236e-08 - syst_JES_EtaIntercalibration_Stat16: 1.6549745466320927e-08 - syst_JES_EtaIntercalibration_Stat160: 3.557304073311698e-08 - syst_JES_EtaIntercalibration_Stat161: 1.6336373427110435e-07 - syst_JES_EtaIntercalibration_Stat162: 1.1158978161440232e-07 - syst_JES_EtaIntercalibration_Stat163: 2.4976942226781883e-13 - syst_JES_EtaIntercalibration_Stat164: 1.9592859718897615e-08 - syst_JES_EtaIntercalibration_Stat165: 4.514909522902978e-07 - syst_JES_EtaIntercalibration_Stat166: 1.203898691751096e-06 - syst_JES_EtaIntercalibration_Stat167: 2.514863954073858e-07 - syst_JES_EtaIntercalibration_Stat168: 3.5935194447783354e-10 - syst_JES_EtaIntercalibration_Stat169: 9.151708242555416e-15 - syst_JES_EtaIntercalibration_Stat17: 2.580211471975117e-19 + syst_JES_EtaIntercalibration_Stat159: 1.67245233e-08 + syst_JES_EtaIntercalibration_Stat16: 1.65497455e-08 + syst_JES_EtaIntercalibration_Stat160: 3.55730407e-08 + syst_JES_EtaIntercalibration_Stat161: 1.63363734e-07 + syst_JES_EtaIntercalibration_Stat162: 1.11589782e-07 + syst_JES_EtaIntercalibration_Stat163: 2.49769422e-13 + syst_JES_EtaIntercalibration_Stat164: 1.95928597e-08 + syst_JES_EtaIntercalibration_Stat165: 4.51490952e-07 + syst_JES_EtaIntercalibration_Stat166: 1.20389869e-06 + syst_JES_EtaIntercalibration_Stat167: 2.51486395e-07 + syst_JES_EtaIntercalibration_Stat168: 3.59351944e-10 + syst_JES_EtaIntercalibration_Stat169: 9.15170824e-15 + syst_JES_EtaIntercalibration_Stat17: 2.58021147e-19 syst_JES_EtaIntercalibration_Stat170: 0.0 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 syst_JES_EtaIntercalibration_Stat175: 0.0 - syst_JES_EtaIntercalibration_Stat176: 9.378189097581685e-16 - syst_JES_EtaIntercalibration_Stat177: 1.4313927917591313e-08 - syst_JES_EtaIntercalibration_Stat178: 6.240375247531193e-07 - syst_JES_EtaIntercalibration_Stat179: 1.8528085080493344e-06 - syst_JES_EtaIntercalibration_Stat18: 4.9637899834702915e-22 - syst_JES_EtaIntercalibration_Stat180: 1.9765127036019777e-07 - syst_JES_EtaIntercalibration_Stat181: 7.931010873778952e-11 - syst_JES_EtaIntercalibration_Stat182: 2.141463051280596e-06 - syst_JES_EtaIntercalibration_Stat183: 4.429275223724531e-06 - syst_JES_EtaIntercalibration_Stat184: 1.4597209211010165e-06 - syst_JES_EtaIntercalibration_Stat185: 9.77869330483373e-08 - syst_JES_EtaIntercalibration_Stat186: 9.152156467193948e-15 + syst_JES_EtaIntercalibration_Stat176: 9.37818910e-16 + syst_JES_EtaIntercalibration_Stat177: 1.43139279e-08 + syst_JES_EtaIntercalibration_Stat178: 6.24037525e-07 + syst_JES_EtaIntercalibration_Stat179: 1.85280851e-06 + syst_JES_EtaIntercalibration_Stat18: 4.96378998e-22 + syst_JES_EtaIntercalibration_Stat180: 1.97651270e-07 + syst_JES_EtaIntercalibration_Stat181: 7.93101087e-11 + syst_JES_EtaIntercalibration_Stat182: 2.14146305e-06 + syst_JES_EtaIntercalibration_Stat183: 4.42927522e-06 + syst_JES_EtaIntercalibration_Stat184: 1.45972092e-06 + syst_JES_EtaIntercalibration_Stat185: 9.77869330e-08 + syst_JES_EtaIntercalibration_Stat186: 9.15215647e-15 syst_JES_EtaIntercalibration_Stat187: 0.0 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 @@ -51680,31 +51680,31 @@ bins: syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 syst_JES_EtaIntercalibration_Stat192: 0.0 - syst_JES_EtaIntercalibration_Stat193: 1.6541085435688476e-08 - syst_JES_EtaIntercalibration_Stat194: 2.881343604553265e-07 - syst_JES_EtaIntercalibration_Stat195: 1.6687264605081326e-06 - syst_JES_EtaIntercalibration_Stat196: 4.552501839648173e-06 - syst_JES_EtaIntercalibration_Stat197: 3.4648702183487334e-06 - syst_JES_EtaIntercalibration_Stat198: 8.549439338342601e-06 - syst_JES_EtaIntercalibration_Stat199: 4.624124214378329e-06 + syst_JES_EtaIntercalibration_Stat193: 1.65410854e-08 + syst_JES_EtaIntercalibration_Stat194: 2.88134360e-07 + syst_JES_EtaIntercalibration_Stat195: 1.66872646e-06 + syst_JES_EtaIntercalibration_Stat196: 4.55250184e-06 + syst_JES_EtaIntercalibration_Stat197: 3.46487022e-06 + syst_JES_EtaIntercalibration_Stat198: 8.54943934e-06 + syst_JES_EtaIntercalibration_Stat199: 4.62412421e-06 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 1.7973099252772184e-07 - syst_JES_EtaIntercalibration_Stat201: 9.152156467193948e-15 + syst_JES_EtaIntercalibration_Stat200: 1.79730993e-07 + syst_JES_EtaIntercalibration_Stat201: 9.15215647e-15 syst_JES_EtaIntercalibration_Stat202: 0.0 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 syst_JES_EtaIntercalibration_Stat207: 0.0 - syst_JES_EtaIntercalibration_Stat208: 1.6541085212282778e-08 - syst_JES_EtaIntercalibration_Stat209: 3.2703037702941293e-07 + syst_JES_EtaIntercalibration_Stat208: 1.65410852e-08 + syst_JES_EtaIntercalibration_Stat209: 3.27030377e-07 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 2.7234879750055806e-06 - syst_JES_EtaIntercalibration_Stat211: 8.331530051557158e-06 - syst_JES_EtaIntercalibration_Stat212: 3.5117513703991067e-06 - syst_JES_EtaIntercalibration_Stat213: 2.1324541612892877e-07 - syst_JES_EtaIntercalibration_Stat214: 9.152156467193948e-15 + syst_JES_EtaIntercalibration_Stat210: 2.72348798e-06 + syst_JES_EtaIntercalibration_Stat211: 8.33153005e-06 + syst_JES_EtaIntercalibration_Stat212: 3.51175137e-06 + syst_JES_EtaIntercalibration_Stat213: 2.13245416e-07 + syst_JES_EtaIntercalibration_Stat214: 9.15215647e-15 syst_JES_EtaIntercalibration_Stat215: 0.0 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 @@ -51712,11 +51712,11 @@ bins: syst_JES_EtaIntercalibration_Stat219: 0.0 syst_JES_EtaIntercalibration_Stat22: 0.0 syst_JES_EtaIntercalibration_Stat220: 0.0 - syst_JES_EtaIntercalibration_Stat221: 1.6541085212282778e-08 - syst_JES_EtaIntercalibration_Stat222: 3.2739662108824517e-07 - syst_JES_EtaIntercalibration_Stat223: 4.717949024735219e-06 - syst_JES_EtaIntercalibration_Stat224: 1.2487658577571698e-05 - syst_JES_EtaIntercalibration_Stat225: 4.987210442722464e-07 + syst_JES_EtaIntercalibration_Stat221: 1.65410852e-08 + syst_JES_EtaIntercalibration_Stat222: 3.27396621e-07 + syst_JES_EtaIntercalibration_Stat223: 4.71794902e-06 + syst_JES_EtaIntercalibration_Stat224: 1.24876586e-05 + syst_JES_EtaIntercalibration_Stat225: 4.98721044e-07 syst_JES_EtaIntercalibration_Stat226: 0.0 syst_JES_EtaIntercalibration_Stat227: 0.0 syst_JES_EtaIntercalibration_Stat228: 0.0 @@ -51725,291 +51725,291 @@ bins: syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 syst_JES_EtaIntercalibration_Stat232: 0.0 - syst_JES_EtaIntercalibration_Stat233: 1.6541085212282778e-08 - syst_JES_EtaIntercalibration_Stat234: 3.528955209676194e-07 - syst_JES_EtaIntercalibration_Stat235: 1.4283643337748253e-05 - syst_JES_EtaIntercalibration_Stat236: 2.0057520802681473e-07 + syst_JES_EtaIntercalibration_Stat233: 1.65410852e-08 + syst_JES_EtaIntercalibration_Stat234: 3.52895521e-07 + syst_JES_EtaIntercalibration_Stat235: 1.42836433e-05 + syst_JES_EtaIntercalibration_Stat236: 2.00575208e-07 syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 syst_JES_EtaIntercalibration_Stat239: 0.0 - syst_JES_EtaIntercalibration_Stat24: 2.0524802069691195e-21 + syst_JES_EtaIntercalibration_Stat24: 2.05248021e-21 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 syst_JES_EtaIntercalibration_Stat243: 0.0 - syst_JES_EtaIntercalibration_Stat244: 1.6541085212282778e-08 - syst_JES_EtaIntercalibration_Stat245: 2.477341645796962e-07 - syst_JES_EtaIntercalibration_Stat25: 7.087954906036012e-20 - syst_JES_EtaIntercalibration_Stat26: 5.224731261983857e-10 - syst_JES_EtaIntercalibration_Stat27: 1.4063515147217595e-15 - syst_JES_EtaIntercalibration_Stat28: 1.8429945930468703e-20 + syst_JES_EtaIntercalibration_Stat244: 1.65410852e-08 + syst_JES_EtaIntercalibration_Stat245: 2.47734165e-07 + syst_JES_EtaIntercalibration_Stat25: 7.08795491e-20 + syst_JES_EtaIntercalibration_Stat26: 5.22473126e-10 + syst_JES_EtaIntercalibration_Stat27: 1.40635151e-15 + syst_JES_EtaIntercalibration_Stat28: 1.84299459e-20 syst_JES_EtaIntercalibration_Stat29: 0.0 - syst_JES_EtaIntercalibration_Stat3: 5.054560942356913e-21 + syst_JES_EtaIntercalibration_Stat3: 5.05456094e-21 syst_JES_EtaIntercalibration_Stat30: 0.0 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 2.0853891723129284e-20 - syst_JES_EtaIntercalibration_Stat36: 2.0853891723129284e-20 - syst_JES_EtaIntercalibration_Stat37: 5.476888963277875e-20 - syst_JES_EtaIntercalibration_Stat38: 1.654974546645324e-08 - syst_JES_EtaIntercalibration_Stat39: 1.6549745466454973e-08 - syst_JES_EtaIntercalibration_Stat4: 8.899277591420927e-15 - syst_JES_EtaIntercalibration_Stat40: 3.880129497838957e-19 + syst_JES_EtaIntercalibration_Stat35: 2.08538917e-20 + syst_JES_EtaIntercalibration_Stat36: 2.08538917e-20 + syst_JES_EtaIntercalibration_Stat37: 5.47688896e-20 + syst_JES_EtaIntercalibration_Stat38: 1.65497455e-08 + syst_JES_EtaIntercalibration_Stat39: 1.65497455e-08 + syst_JES_EtaIntercalibration_Stat4: 8.89927759e-15 + syst_JES_EtaIntercalibration_Stat40: 3.88012950e-19 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 syst_JES_EtaIntercalibration_Stat44: 0.0 syst_JES_EtaIntercalibration_Stat45: 0.0 - syst_JES_EtaIntercalibration_Stat46: 6.7646489007190905e-21 - syst_JES_EtaIntercalibration_Stat47: 5.76202280019786e-19 - syst_JES_EtaIntercalibration_Stat48: 5.140726813477682e-10 - syst_JES_EtaIntercalibration_Stat49: 1.405962542893213e-15 - syst_JES_EtaIntercalibration_Stat5: 8.901009186092786e-15 - syst_JES_EtaIntercalibration_Stat50: 5.1194626671165406e-20 + syst_JES_EtaIntercalibration_Stat46: 6.76464890e-21 + syst_JES_EtaIntercalibration_Stat47: 5.76202280e-19 + syst_JES_EtaIntercalibration_Stat48: 5.14072681e-10 + syst_JES_EtaIntercalibration_Stat49: 1.40596254e-15 + syst_JES_EtaIntercalibration_Stat5: 8.90100919e-15 + syst_JES_EtaIntercalibration_Stat50: 5.11946267e-20 syst_JES_EtaIntercalibration_Stat51: 0.0 syst_JES_EtaIntercalibration_Stat52: 0.0 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 2.4473877910948238e-21 - syst_JES_EtaIntercalibration_Stat57: 2.0853891723129284e-20 - syst_JES_EtaIntercalibration_Stat58: 2.0853891723129284e-20 - syst_JES_EtaIntercalibration_Stat59: 6.965940617569173e-20 + syst_JES_EtaIntercalibration_Stat56: 2.44738779e-21 + syst_JES_EtaIntercalibration_Stat57: 2.08538917e-20 + syst_JES_EtaIntercalibration_Stat58: 2.08538917e-20 + syst_JES_EtaIntercalibration_Stat59: 6.96594062e-20 syst_JES_EtaIntercalibration_Stat6: 0.0 - syst_JES_EtaIntercalibration_Stat60: 1.654974571111715e-08 - syst_JES_EtaIntercalibration_Stat61: 1.654974599921499e-08 - syst_JES_EtaIntercalibration_Stat62: 1.0935775555487595e-18 - syst_JES_EtaIntercalibration_Stat63: 2.3480133840919646e-21 + syst_JES_EtaIntercalibration_Stat60: 1.65497457e-08 + syst_JES_EtaIntercalibration_Stat61: 1.65497460e-08 + syst_JES_EtaIntercalibration_Stat62: 1.09357756e-18 + syst_JES_EtaIntercalibration_Stat63: 2.34801338e-21 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 2.701179186947804e-20 - syst_JES_EtaIntercalibration_Stat69: 5.066278785182802e-10 + syst_JES_EtaIntercalibration_Stat68: 2.70117919e-20 + syst_JES_EtaIntercalibration_Stat69: 5.06627879e-10 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 5.016171785138618e-10 - syst_JES_EtaIntercalibration_Stat71: 5.200482711412517e-10 - syst_JES_EtaIntercalibration_Stat72: 1.4046457531600342e-15 + syst_JES_EtaIntercalibration_Stat70: 5.01617179e-10 + syst_JES_EtaIntercalibration_Stat71: 5.20048271e-10 + syst_JES_EtaIntercalibration_Stat72: 1.40464575e-15 syst_JES_EtaIntercalibration_Stat73: 0.0 syst_JES_EtaIntercalibration_Stat74: 0.0 syst_JES_EtaIntercalibration_Stat75: 0.0 - syst_JES_EtaIntercalibration_Stat76: 1.2834496484085379e-20 - syst_JES_EtaIntercalibration_Stat77: 2.4473877910948238e-21 - syst_JES_EtaIntercalibration_Stat78: 2.4473877910948238e-21 - syst_JES_EtaIntercalibration_Stat79: 2.0853891723129284e-20 + syst_JES_EtaIntercalibration_Stat76: 1.28344965e-20 + syst_JES_EtaIntercalibration_Stat77: 2.44738779e-21 + syst_JES_EtaIntercalibration_Stat78: 2.44738779e-21 + syst_JES_EtaIntercalibration_Stat79: 2.08538917e-20 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 2.041221876719922e-20 - syst_JES_EtaIntercalibration_Stat81: 3.08800032383418e-19 - syst_JES_EtaIntercalibration_Stat82: 1.6541085783282273e-08 - syst_JES_EtaIntercalibration_Stat83: 3.0085688651596933e-09 - syst_JES_EtaIntercalibration_Stat84: 2.2161919479142595e-16 - syst_JES_EtaIntercalibration_Stat85: 3.486213526162734e-21 + syst_JES_EtaIntercalibration_Stat80: 2.04122188e-20 + syst_JES_EtaIntercalibration_Stat81: 3.08800032e-19 + syst_JES_EtaIntercalibration_Stat82: 1.65410858e-08 + syst_JES_EtaIntercalibration_Stat83: 3.00856887e-09 + syst_JES_EtaIntercalibration_Stat84: 2.21619195e-16 + syst_JES_EtaIntercalibration_Stat85: 3.48621353e-21 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 3.584659084208706e-20 + syst_JES_EtaIntercalibration_Stat89: 3.58465908e-20 syst_JES_EtaIntercalibration_Stat9: 0.0 - syst_JES_EtaIntercalibration_Stat90: 5.061546242983141e-10 - syst_JES_EtaIntercalibration_Stat91: 4.967768296065347e-10 - syst_JES_EtaIntercalibration_Stat92: 6.063817362025343e-15 - syst_JES_EtaIntercalibration_Stat93: 1.4487744380656467e-15 + syst_JES_EtaIntercalibration_Stat90: 5.06154624e-10 + syst_JES_EtaIntercalibration_Stat91: 4.96776830e-10 + syst_JES_EtaIntercalibration_Stat92: 6.06381736e-15 + syst_JES_EtaIntercalibration_Stat93: 1.44877444e-15 syst_JES_EtaIntercalibration_Stat94: 0.0 syst_JES_EtaIntercalibration_Stat95: 0.0 - syst_JES_EtaIntercalibration_Stat96: 9.064687901411719e-18 - syst_JES_EtaIntercalibration_Stat97: 1.2834496484085379e-20 - syst_JES_EtaIntercalibration_Stat98: 2.4473877910948238e-21 - syst_JES_EtaIntercalibration_Stat99: 2.4473877910948238e-21 - syst_JES_EtaIntercalibration_TotalStat_MJB: 6.757599721794714e-05 - syst_JES_Flavour_Comp: 0.00018497499155291236 - syst_JES_Flavour_Response: 3.49521883721177e-05 - syst_JES_Gjet_Generator: 0.0002233587473102408 - syst_JES_Gjet_OOC: 0.00018681468759174156 - syst_JES_Gjet_Purity: 3.200765221005752e-05 - syst_JES_Gjet_Stat1: 5.3751652067634163e-08 - syst_JES_Gjet_Stat10: 2.3988502053067006e-06 - syst_JES_Gjet_Stat11: 2.9677406810568876e-06 - syst_JES_Gjet_Stat12: 9.920219806032526e-06 - syst_JES_Gjet_Stat13: 3.397121281320407e-05 - syst_JES_Gjet_Stat14: 9.849992791875535e-05 - syst_JES_Gjet_Stat15: 0.00011581544402626103 - syst_JES_Gjet_Stat2: 3.464477663371493e-07 - syst_JES_Gjet_Stat3: 3.209490146425961e-07 - syst_JES_Gjet_Stat4: 3.7507560237915823e-07 - syst_JES_Gjet_Stat5: 3.981984806602439e-07 - syst_JES_Gjet_Stat6: 2.7486412451549923e-08 - syst_JES_Gjet_Stat7: 2.9170506884008716e-09 - syst_JES_Gjet_Stat8: 7.977788086305627e-08 - syst_JES_Gjet_Stat9: 1.1065463433584696e-06 - syst_JES_Gjet_Veto: 0.00018747671855459815 - syst_JES_Gjet_dPhi: 1.1715815464576079e-05 - syst_JES_LArESZee: 0.0003392968427498258 - syst_JES_LArEsmear: 2.783018280572371e-05 - syst_JES_LAr_JVT: 3.6134119499442625e-05 - syst_JES_MJB_Alpha: 1.160127630909634e-06 - syst_JES_MJB_Asym: 3.975698393993186e-05 - syst_JES_MJB_Beta: 1.7562995188748414e-06 - syst_JES_MJB_Fragmentation: 1.9961833583115553e-05 - syst_JES_MJB_Stat1: 8.113792008056405e-10 - syst_JES_MJB_Stat10: 1.210270501788753e-08 - syst_JES_MJB_Stat11: 2.8782193714169875e-08 + syst_JES_EtaIntercalibration_Stat96: 9.06468790e-18 + syst_JES_EtaIntercalibration_Stat97: 1.28344965e-20 + syst_JES_EtaIntercalibration_Stat98: 2.44738779e-21 + syst_JES_EtaIntercalibration_Stat99: 2.44738779e-21 + syst_JES_EtaIntercalibration_TotalStat_MJB: 6.75759972e-05 + syst_JES_Flavour_Comp: 1.84974992e-04 + syst_JES_Flavour_Response: 3.49521884e-05 + syst_JES_Gjet_Generator: 2.23358747e-04 + syst_JES_Gjet_OOC: 1.86814688e-04 + syst_JES_Gjet_Purity: 3.20076522e-05 + syst_JES_Gjet_Stat1: 5.37516521e-08 + syst_JES_Gjet_Stat10: 2.39885021e-06 + syst_JES_Gjet_Stat11: 2.96774068e-06 + syst_JES_Gjet_Stat12: 9.92021981e-06 + syst_JES_Gjet_Stat13: 3.39712128e-05 + syst_JES_Gjet_Stat14: 9.84999279e-05 + syst_JES_Gjet_Stat15: 1.15815444e-04 + syst_JES_Gjet_Stat2: 3.46447766e-07 + syst_JES_Gjet_Stat3: 3.20949015e-07 + syst_JES_Gjet_Stat4: 3.75075602e-07 + syst_JES_Gjet_Stat5: 3.98198481e-07 + syst_JES_Gjet_Stat6: 2.74864125e-08 + syst_JES_Gjet_Stat7: 2.91705069e-09 + syst_JES_Gjet_Stat8: 7.97778809e-08 + syst_JES_Gjet_Stat9: 1.10654634e-06 + syst_JES_Gjet_Veto: 1.87476719e-04 + syst_JES_Gjet_dPhi: 1.17158155e-05 + syst_JES_LArESZee: 3.39296843e-04 + syst_JES_LArEsmear: 2.78301828e-05 + syst_JES_LAr_JVT: 3.61341195e-05 + syst_JES_MJB_Alpha: 1.16012763e-06 + syst_JES_MJB_Asym: 3.97569839e-05 + syst_JES_MJB_Beta: 1.75629952e-06 + syst_JES_MJB_Fragmentation: 1.99618336e-05 + syst_JES_MJB_Stat1: 8.11379201e-10 + syst_JES_MJB_Stat10: 1.21027050e-08 + syst_JES_MJB_Stat11: 2.87821937e-08 syst_JES_MJB_Stat12: 0.0 syst_JES_MJB_Stat13: 0.0 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 - syst_JES_MJB_Stat16: 1.3336791218280354e-08 - syst_JES_MJB_Stat2: 1.6277027392924052e-07 - syst_JES_MJB_Stat3: 6.456038626743183e-07 - syst_JES_MJB_Stat4: 1.4990730360792964e-07 - syst_JES_MJB_Stat5: 1.01832317070761e-07 - syst_JES_MJB_Stat6: 7.649190594435466e-08 - syst_JES_MJB_Stat7: 9.311175453185276e-07 - syst_JES_MJB_Stat8: 8.413287658024953e-08 - syst_JES_MJB_Stat9: 1.0366002485046973e-07 - syst_JES_MJB_Threshold: 2.4362364417272805e-05 - syst_JES_Pileup_MuOffset: 4.240162614806182e-05 - syst_JES_Pileup_NPVOffset: 4.600532711545479e-05 - syst_JES_Pileup_Pt_term: 4.252758722288393e-05 - syst_JES_Pileup_Rho_topology: 6.124637621933236e-05 - syst_JES_PunchThrough_MC15: 3.8158148539990776e-05 + syst_JES_MJB_Stat16: 1.33367912e-08 + syst_JES_MJB_Stat2: 1.62770274e-07 + syst_JES_MJB_Stat3: 6.45603863e-07 + syst_JES_MJB_Stat4: 1.49907304e-07 + syst_JES_MJB_Stat5: 1.01832317e-07 + syst_JES_MJB_Stat6: 7.64919059e-08 + syst_JES_MJB_Stat7: 9.31117545e-07 + syst_JES_MJB_Stat8: 8.41328766e-08 + syst_JES_MJB_Stat9: 1.03660025e-07 + syst_JES_MJB_Threshold: 2.43623644e-05 + syst_JES_Pileup_MuOffset: 4.24016261e-05 + syst_JES_Pileup_NPVOffset: 4.60053271e-05 + syst_JES_Pileup_Pt_term: 4.25275872e-05 + syst_JES_Pileup_Rho_topology: 6.12463762e-05 + syst_JES_PunchThrough_MC15: 3.81581485e-05 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 8.261587438259066e-05 - syst_JES_Zjet_MuScale: 1.7825951776833687e-06 - syst_JES_Zjet_MuSmearID: 1.1397588692350675e-07 - syst_JES_Zjet_MuSmearMS: 2.1276707334547797e-05 - syst_JES_Zjet_OOC: 5.0488078543355164e-05 - syst_JES_Zjet_Stat1: 2.8778024167746037e-07 - syst_JES_Zjet_Stat10: 2.35042038254862e-06 - syst_JES_Zjet_Stat11: 3.2513309551628237e-06 - syst_JES_Zjet_Stat12: 1.2186142570559398e-05 - syst_JES_Zjet_Stat13: 2.363622378892195e-05 - syst_JES_Zjet_Stat2: 8.21033515028467e-09 - syst_JES_Zjet_Stat3: 2.7175877170755683e-07 - syst_JES_Zjet_Stat4: 1.723626998512149e-19 - syst_JES_Zjet_Stat5: 2.5931271213536755e-19 - syst_JES_Zjet_Stat6: 4.3430794203201025e-07 - syst_JES_Zjet_Stat7: 2.2535680809940047e-14 - syst_JES_Zjet_Stat8: 2.2538444378439254e-11 - syst_JES_Zjet_Stat9: 7.159232780123859e-07 - syst_JES_Zjet_Veto: 4.177159569312621e-06 - syst_JES_Zjet_dPhi: 3.6408207546513468e-06 - syst_PRW: 6.526e-06 - syst_Unfolding_bias: 1.256e-07 - syst_cleaning: 3.1557965713904944e-05 - syst_lumi: 0.0001031 -- stat: 0.00010313 + syst_JES_Zjet_MC: 8.26158744e-05 + syst_JES_Zjet_MuScale: 1.78259518e-06 + syst_JES_Zjet_MuSmearID: 1.13975887e-07 + syst_JES_Zjet_MuSmearMS: 2.12767073e-05 + syst_JES_Zjet_OOC: 5.04880785e-05 + syst_JES_Zjet_Stat1: 2.87780242e-07 + syst_JES_Zjet_Stat10: 2.35042038e-06 + syst_JES_Zjet_Stat11: 3.25133096e-06 + syst_JES_Zjet_Stat12: 1.21861426e-05 + syst_JES_Zjet_Stat13: 2.36362238e-05 + syst_JES_Zjet_Stat2: 8.21033515e-09 + syst_JES_Zjet_Stat3: 2.71758772e-07 + syst_JES_Zjet_Stat4: 1.72362700e-19 + syst_JES_Zjet_Stat5: 2.59312712e-19 + syst_JES_Zjet_Stat6: 4.34307942e-07 + syst_JES_Zjet_Stat7: 2.25356808e-14 + syst_JES_Zjet_Stat8: 2.25384444e-11 + syst_JES_Zjet_Stat9: 7.15923278e-07 + syst_JES_Zjet_Veto: 4.17715957e-06 + syst_JES_Zjet_dPhi: 3.64082075e-06 + syst_PRW: 6.52600000e-06 + syst_Unfolding_bias: 1.25600000e-07 + syst_cleaning: 3.15579657e-05 + syst_lumi: 1.03100000e-04 +- stat: 1.03130000e-04 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 3.2338627058055506e-05 - syst_JER_NP1: 5.9541339210669425e-05 - syst_JER_NP2: 1.5034201009775479e-05 - syst_JER_NP3: 3.320120835215876e-07 - syst_JER_NP4: 3.076159790403735e-07 - syst_JER_NP5: 3.940087360875137e-13 - syst_JER_NP6: 8.682834905720597e-16 - syst_JER_NP7: 3.5692700934504804e-19 - syst_JER_NP8: 1.9867779820604012e-06 - syst_JES_EtaIntercalibration_Modelling: 0.00017700963250625657 - syst_JES_EtaIntercalibration_NonClosure: 7.271297408303418e-06 + syst_JER_NP0: 3.23386271e-05 + syst_JER_NP1: 5.95413392e-05 + syst_JER_NP2: 1.50342010e-05 + syst_JER_NP3: 3.32012084e-07 + syst_JER_NP4: 3.07615979e-07 + syst_JER_NP5: 3.94008736e-13 + syst_JER_NP6: 8.68283491e-16 + syst_JER_NP7: 3.56927009e-19 + syst_JER_NP8: 1.98677798e-06 + syst_JES_EtaIntercalibration_Modelling: 1.77009633e-04 + syst_JES_EtaIntercalibration_NonClosure: 7.27129741e-06 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 4.776996127274964e-22 + syst_JES_EtaIntercalibration_Stat100: 4.77699613e-22 syst_JES_EtaIntercalibration_Stat101: 0.0 - syst_JES_EtaIntercalibration_Stat102: 1.8016339438132265e-18 - syst_JES_EtaIntercalibration_Stat103: 1.9156483688011945e-09 - syst_JES_EtaIntercalibration_Stat104: 7.950332223718705e-10 - syst_JES_EtaIntercalibration_Stat105: 1.3352563452386211e-16 - syst_JES_EtaIntercalibration_Stat106: 3.9330200187006424e-20 + syst_JES_EtaIntercalibration_Stat102: 1.80163394e-18 + syst_JES_EtaIntercalibration_Stat103: 1.91564837e-09 + syst_JES_EtaIntercalibration_Stat104: 7.95033222e-10 + syst_JES_EtaIntercalibration_Stat105: 1.33525635e-16 + syst_JES_EtaIntercalibration_Stat106: 3.93302002e-20 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 1.435724249290232e-18 + syst_JES_EtaIntercalibration_Stat109: 1.43572425e-18 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 1.9990544348703664e-09 - syst_JES_EtaIntercalibration_Stat111: 1.992882724600409e-09 - syst_JES_EtaIntercalibration_Stat112: 1.0170944590843074e-10 - syst_JES_EtaIntercalibration_Stat113: 3.596831662380101e-16 - syst_JES_EtaIntercalibration_Stat114: 1.7900745096224347e-19 + syst_JES_EtaIntercalibration_Stat110: 1.99905443e-09 + syst_JES_EtaIntercalibration_Stat111: 1.99288272e-09 + syst_JES_EtaIntercalibration_Stat112: 1.01709446e-10 + syst_JES_EtaIntercalibration_Stat113: 3.59683166e-16 + syst_JES_EtaIntercalibration_Stat114: 1.79007451e-19 syst_JES_EtaIntercalibration_Stat115: 0.0 - syst_JES_EtaIntercalibration_Stat116: 6.886634010893856e-19 - syst_JES_EtaIntercalibration_Stat117: 9.633666591698095e-19 - syst_JES_EtaIntercalibration_Stat118: 4.776996127274964e-22 - syst_JES_EtaIntercalibration_Stat119: 4.776996127274964e-22 + syst_JES_EtaIntercalibration_Stat116: 6.88663401e-19 + syst_JES_EtaIntercalibration_Stat117: 9.63366659e-19 + syst_JES_EtaIntercalibration_Stat118: 4.77699613e-22 + syst_JES_EtaIntercalibration_Stat119: 4.77699613e-22 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 4.776996127274964e-22 - syst_JES_EtaIntercalibration_Stat121: 6.987092957732851e-21 - syst_JES_EtaIntercalibration_Stat122: 1.9165142814484157e-09 - syst_JES_EtaIntercalibration_Stat123: 3.5465559527060897e-09 - syst_JES_EtaIntercalibration_Stat124: 1.9601928218417695e-09 - syst_JES_EtaIntercalibration_Stat125: 3.783227321679204e-13 - syst_JES_EtaIntercalibration_Stat126: 1.398647975394452e-17 + syst_JES_EtaIntercalibration_Stat120: 4.77699613e-22 + syst_JES_EtaIntercalibration_Stat121: 6.98709296e-21 + syst_JES_EtaIntercalibration_Stat122: 1.91651428e-09 + syst_JES_EtaIntercalibration_Stat123: 3.54655595e-09 + syst_JES_EtaIntercalibration_Stat124: 1.96019282e-09 + syst_JES_EtaIntercalibration_Stat125: 3.78322732e-13 + syst_JES_EtaIntercalibration_Stat126: 1.39864798e-17 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 1.8543761080212397e-13 - syst_JES_EtaIntercalibration_Stat129: 2.825914200307575e-08 + syst_JES_EtaIntercalibration_Stat128: 1.85437611e-13 + syst_JES_EtaIntercalibration_Stat129: 2.82591420e-08 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 6.861096195215456e-08 - syst_JES_EtaIntercalibration_Stat131: 2.1509476981089057e-08 - syst_JES_EtaIntercalibration_Stat132: 9.853821038331628e-11 - syst_JES_EtaIntercalibration_Stat133: 1.4892819957384665e-16 + syst_JES_EtaIntercalibration_Stat130: 6.86109620e-08 + syst_JES_EtaIntercalibration_Stat131: 2.15094770e-08 + syst_JES_EtaIntercalibration_Stat132: 9.85382104e-11 + syst_JES_EtaIntercalibration_Stat133: 1.48928200e-16 syst_JES_EtaIntercalibration_Stat134: 0.0 - syst_JES_EtaIntercalibration_Stat135: 6.886634010893856e-19 - syst_JES_EtaIntercalibration_Stat136: 6.886634010893856e-19 - syst_JES_EtaIntercalibration_Stat137: 4.776996127274964e-22 - syst_JES_EtaIntercalibration_Stat138: 4.776996127274964e-22 - syst_JES_EtaIntercalibration_Stat139: 4.776996127274964e-22 + syst_JES_EtaIntercalibration_Stat135: 6.88663401e-19 + syst_JES_EtaIntercalibration_Stat136: 6.88663401e-19 + syst_JES_EtaIntercalibration_Stat137: 4.77699613e-22 + syst_JES_EtaIntercalibration_Stat138: 4.77699613e-22 + syst_JES_EtaIntercalibration_Stat139: 4.77699613e-22 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 1.7026059438402063e-21 - syst_JES_EtaIntercalibration_Stat141: 1.919354479297662e-09 - syst_JES_EtaIntercalibration_Stat142: 6.676293259711933e-09 - syst_JES_EtaIntercalibration_Stat143: 7.639029781326945e-08 - syst_JES_EtaIntercalibration_Stat144: 2.8409645311935877e-08 - syst_JES_EtaIntercalibration_Stat145: 3.42620674908856e-17 - syst_JES_EtaIntercalibration_Stat146: 2.2820132623898146e-09 - syst_JES_EtaIntercalibration_Stat147: 2.8254591321588783e-08 - syst_JES_EtaIntercalibration_Stat148: 6.871894989739002e-08 - syst_JES_EtaIntercalibration_Stat149: 2.1499937209210633e-08 + syst_JES_EtaIntercalibration_Stat140: 1.70260594e-21 + syst_JES_EtaIntercalibration_Stat141: 1.91935448e-09 + syst_JES_EtaIntercalibration_Stat142: 6.67629326e-09 + syst_JES_EtaIntercalibration_Stat143: 7.63902978e-08 + syst_JES_EtaIntercalibration_Stat144: 2.84096453e-08 + syst_JES_EtaIntercalibration_Stat145: 3.42620675e-17 + syst_JES_EtaIntercalibration_Stat146: 2.28201326e-09 + syst_JES_EtaIntercalibration_Stat147: 2.82545913e-08 + syst_JES_EtaIntercalibration_Stat148: 6.87189499e-08 + syst_JES_EtaIntercalibration_Stat149: 2.14999372e-08 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 9.919983257959058e-11 - syst_JES_EtaIntercalibration_Stat151: 9.345549330000243e-16 + syst_JES_EtaIntercalibration_Stat150: 9.91998326e-11 + syst_JES_EtaIntercalibration_Stat151: 9.34554933e-16 syst_JES_EtaIntercalibration_Stat152: 0.0 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 4.776996127274964e-22 + syst_JES_EtaIntercalibration_Stat156: 4.77699613e-22 syst_JES_EtaIntercalibration_Stat157: 0.0 syst_JES_EtaIntercalibration_Stat158: 0.0 - syst_JES_EtaIntercalibration_Stat159: 1.938570874916623e-09 - syst_JES_EtaIntercalibration_Stat16: 1.9165142185750182e-09 - syst_JES_EtaIntercalibration_Stat160: 1.2260874094757683e-08 - syst_JES_EtaIntercalibration_Stat161: 7.659865722060668e-08 - syst_JES_EtaIntercalibration_Stat162: 2.4563645555983748e-08 - syst_JES_EtaIntercalibration_Stat163: 2.541996748621052e-14 - syst_JES_EtaIntercalibration_Stat164: 1.9982849778518245e-09 - syst_JES_EtaIntercalibration_Stat165: 1.6906527400681668e-07 - syst_JES_EtaIntercalibration_Stat166: 3.870656870287006e-07 - syst_JES_EtaIntercalibration_Stat167: 7.994007162087108e-08 - syst_JES_EtaIntercalibration_Stat168: 1.3348244332120985e-10 - syst_JES_EtaIntercalibration_Stat169: 9.345549330000243e-16 - syst_JES_EtaIntercalibration_Stat17: 3.517003710719787e-20 + syst_JES_EtaIntercalibration_Stat159: 1.93857087e-09 + syst_JES_EtaIntercalibration_Stat16: 1.91651422e-09 + syst_JES_EtaIntercalibration_Stat160: 1.22608741e-08 + syst_JES_EtaIntercalibration_Stat161: 7.65986572e-08 + syst_JES_EtaIntercalibration_Stat162: 2.45636456e-08 + syst_JES_EtaIntercalibration_Stat163: 2.54199675e-14 + syst_JES_EtaIntercalibration_Stat164: 1.99828498e-09 + syst_JES_EtaIntercalibration_Stat165: 1.69065274e-07 + syst_JES_EtaIntercalibration_Stat166: 3.87065687e-07 + syst_JES_EtaIntercalibration_Stat167: 7.99400716e-08 + syst_JES_EtaIntercalibration_Stat168: 1.33482443e-10 + syst_JES_EtaIntercalibration_Stat169: 9.34554933e-16 + syst_JES_EtaIntercalibration_Stat17: 3.51700371e-20 syst_JES_EtaIntercalibration_Stat170: 0.0 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 syst_JES_EtaIntercalibration_Stat175: 0.0 - syst_JES_EtaIntercalibration_Stat176: 9.909928695505331e-17 - syst_JES_EtaIntercalibration_Stat177: 9.975558889982054e-10 - syst_JES_EtaIntercalibration_Stat178: 3.8632182442977513e-07 - syst_JES_EtaIntercalibration_Stat179: 7.527554822616705e-07 - syst_JES_EtaIntercalibration_Stat18: 9.185983058442902e-23 - syst_JES_EtaIntercalibration_Stat180: 7.930935442934837e-08 - syst_JES_EtaIntercalibration_Stat181: 9.360752857943639e-12 - syst_JES_EtaIntercalibration_Stat182: 6.92199109722051e-07 - syst_JES_EtaIntercalibration_Stat183: 2.1998710757678503e-06 - syst_JES_EtaIntercalibration_Stat184: 8.577789225668813e-07 - syst_JES_EtaIntercalibration_Stat185: 2.413175681026974e-08 - syst_JES_EtaIntercalibration_Stat186: 9.346146157641662e-16 + syst_JES_EtaIntercalibration_Stat176: 9.90992870e-17 + syst_JES_EtaIntercalibration_Stat177: 9.97555889e-10 + syst_JES_EtaIntercalibration_Stat178: 3.86321824e-07 + syst_JES_EtaIntercalibration_Stat179: 7.52755482e-07 + syst_JES_EtaIntercalibration_Stat18: 9.18598306e-23 + syst_JES_EtaIntercalibration_Stat180: 7.93093544e-08 + syst_JES_EtaIntercalibration_Stat181: 9.36075286e-12 + syst_JES_EtaIntercalibration_Stat182: 6.92199110e-07 + syst_JES_EtaIntercalibration_Stat183: 2.19987108e-06 + syst_JES_EtaIntercalibration_Stat184: 8.57778923e-07 + syst_JES_EtaIntercalibration_Stat185: 2.41317568e-08 + syst_JES_EtaIntercalibration_Stat186: 9.34614616e-16 syst_JES_EtaIntercalibration_Stat187: 0.0 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 @@ -52017,31 +52017,31 @@ bins: syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 syst_JES_EtaIntercalibration_Stat192: 0.0 - syst_JES_EtaIntercalibration_Stat193: 1.9156482148882095e-09 - syst_JES_EtaIntercalibration_Stat194: 1.695625192038323e-07 - syst_JES_EtaIntercalibration_Stat195: 6.368681810233574e-07 - syst_JES_EtaIntercalibration_Stat196: 1.7138112111606691e-06 - syst_JES_EtaIntercalibration_Stat197: 1.3800844856384698e-06 - syst_JES_EtaIntercalibration_Stat198: 3.82617442754509e-06 - syst_JES_EtaIntercalibration_Stat199: 2.4626623413492967e-06 + syst_JES_EtaIntercalibration_Stat193: 1.91564821e-09 + syst_JES_EtaIntercalibration_Stat194: 1.69562519e-07 + syst_JES_EtaIntercalibration_Stat195: 6.36868181e-07 + syst_JES_EtaIntercalibration_Stat196: 1.71381121e-06 + syst_JES_EtaIntercalibration_Stat197: 1.38008449e-06 + syst_JES_EtaIntercalibration_Stat198: 3.82617443e-06 + syst_JES_EtaIntercalibration_Stat199: 2.46266234e-06 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 9.578267836618477e-08 - syst_JES_EtaIntercalibration_Stat201: 9.346146157641662e-16 + syst_JES_EtaIntercalibration_Stat200: 9.57826784e-08 + syst_JES_EtaIntercalibration_Stat201: 9.34614616e-16 syst_JES_EtaIntercalibration_Stat202: 0.0 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 syst_JES_EtaIntercalibration_Stat207: 0.0 - syst_JES_EtaIntercalibration_Stat208: 1.916514218574963e-09 - syst_JES_EtaIntercalibration_Stat209: 1.5556083014370937e-07 + syst_JES_EtaIntercalibration_Stat208: 1.91651422e-09 + syst_JES_EtaIntercalibration_Stat209: 1.55560830e-07 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 9.585167017324215e-07 - syst_JES_EtaIntercalibration_Stat211: 3.7707124005285793e-06 - syst_JES_EtaIntercalibration_Stat212: 1.5597903288583372e-06 - syst_JES_EtaIntercalibration_Stat213: 1.0907890492666307e-07 - syst_JES_EtaIntercalibration_Stat214: 9.346146157641662e-16 + syst_JES_EtaIntercalibration_Stat210: 9.58516702e-07 + syst_JES_EtaIntercalibration_Stat211: 3.77071240e-06 + syst_JES_EtaIntercalibration_Stat212: 1.55979033e-06 + syst_JES_EtaIntercalibration_Stat213: 1.09078905e-07 + syst_JES_EtaIntercalibration_Stat214: 9.34614616e-16 syst_JES_EtaIntercalibration_Stat215: 0.0 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 @@ -52049,11 +52049,11 @@ bins: syst_JES_EtaIntercalibration_Stat219: 0.0 syst_JES_EtaIntercalibration_Stat22: 0.0 syst_JES_EtaIntercalibration_Stat220: 0.0 - syst_JES_EtaIntercalibration_Stat221: 1.916514218574963e-09 - syst_JES_EtaIntercalibration_Stat222: 1.5572591908542393e-07 - syst_JES_EtaIntercalibration_Stat223: 2.0268413850126503e-06 - syst_JES_EtaIntercalibration_Stat224: 5.9102948107518286e-06 - syst_JES_EtaIntercalibration_Stat225: 3.2469712040607937e-07 + syst_JES_EtaIntercalibration_Stat221: 1.91651422e-09 + syst_JES_EtaIntercalibration_Stat222: 1.55725919e-07 + syst_JES_EtaIntercalibration_Stat223: 2.02684139e-06 + syst_JES_EtaIntercalibration_Stat224: 5.91029481e-06 + syst_JES_EtaIntercalibration_Stat225: 3.24697120e-07 syst_JES_EtaIntercalibration_Stat226: 0.0 syst_JES_EtaIntercalibration_Stat227: 0.0 syst_JES_EtaIntercalibration_Stat228: 0.0 @@ -52062,291 +52062,291 @@ bins: syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 syst_JES_EtaIntercalibration_Stat232: 0.0 - syst_JES_EtaIntercalibration_Stat233: 1.916514218574963e-09 - syst_JES_EtaIntercalibration_Stat234: 1.8853143696211513e-07 - syst_JES_EtaIntercalibration_Stat235: 6.415279573019401e-06 - syst_JES_EtaIntercalibration_Stat236: 3.560057022015238e-08 + syst_JES_EtaIntercalibration_Stat233: 1.91651422e-09 + syst_JES_EtaIntercalibration_Stat234: 1.88531437e-07 + syst_JES_EtaIntercalibration_Stat235: 6.41527957e-06 + syst_JES_EtaIntercalibration_Stat236: 3.56005702e-08 syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 syst_JES_EtaIntercalibration_Stat239: 0.0 - syst_JES_EtaIntercalibration_Stat24: 3.735167566522284e-22 + syst_JES_EtaIntercalibration_Stat24: 3.73516757e-22 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 syst_JES_EtaIntercalibration_Stat243: 0.0 - syst_JES_EtaIntercalibration_Stat244: 1.916514218574963e-09 - syst_JES_EtaIntercalibration_Stat245: 1.6362589140093324e-07 - syst_JES_EtaIntercalibration_Stat25: 1.0537657080679747e-20 - syst_JES_EtaIntercalibration_Stat26: 9.526279440252132e-11 - syst_JES_EtaIntercalibration_Stat27: 1.4851266730138273e-16 - syst_JES_EtaIntercalibration_Stat28: 2.8330382957524595e-21 + syst_JES_EtaIntercalibration_Stat244: 1.91651422e-09 + syst_JES_EtaIntercalibration_Stat245: 1.63625891e-07 + syst_JES_EtaIntercalibration_Stat25: 1.05376571e-20 + syst_JES_EtaIntercalibration_Stat26: 9.52627944e-11 + syst_JES_EtaIntercalibration_Stat27: 1.48512667e-16 + syst_JES_EtaIntercalibration_Stat28: 2.83303830e-21 syst_JES_EtaIntercalibration_Stat29: 0.0 - syst_JES_EtaIntercalibration_Stat3: 7.91644219330881e-22 + syst_JES_EtaIntercalibration_Stat3: 7.91644219e-22 syst_JES_EtaIntercalibration_Stat30: 0.0 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 2.3737756317731465e-21 - syst_JES_EtaIntercalibration_Stat36: 2.3737756317731465e-21 - syst_JES_EtaIntercalibration_Stat37: 7.979714249739773e-21 - syst_JES_EtaIntercalibration_Stat38: 1.9165142185931898e-09 - syst_JES_EtaIntercalibration_Stat39: 1.916514218592156e-09 - syst_JES_EtaIntercalibration_Stat4: 9.069018952191448e-16 - syst_JES_EtaIntercalibration_Stat40: 5.376894526583165e-20 + syst_JES_EtaIntercalibration_Stat35: 2.37377563e-21 + syst_JES_EtaIntercalibration_Stat36: 2.37377563e-21 + syst_JES_EtaIntercalibration_Stat37: 7.97971425e-21 + syst_JES_EtaIntercalibration_Stat38: 1.91651422e-09 + syst_JES_EtaIntercalibration_Stat39: 1.91651422e-09 + syst_JES_EtaIntercalibration_Stat4: 9.06901895e-16 + syst_JES_EtaIntercalibration_Stat40: 5.37689453e-20 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 syst_JES_EtaIntercalibration_Stat44: 0.0 syst_JES_EtaIntercalibration_Stat45: 0.0 - syst_JES_EtaIntercalibration_Stat46: 1.0803369601656698e-21 - syst_JES_EtaIntercalibration_Stat47: 7.657563124127675e-20 - syst_JES_EtaIntercalibration_Stat48: 9.671771690019453e-11 - syst_JES_EtaIntercalibration_Stat49: 1.4872220983830055e-16 - syst_JES_EtaIntercalibration_Stat5: 9.070750231167944e-16 - syst_JES_EtaIntercalibration_Stat50: 7.401662178186735e-21 + syst_JES_EtaIntercalibration_Stat46: 1.08033696e-21 + syst_JES_EtaIntercalibration_Stat47: 7.65756312e-20 + syst_JES_EtaIntercalibration_Stat48: 9.67177169e-11 + syst_JES_EtaIntercalibration_Stat49: 1.48722210e-16 + syst_JES_EtaIntercalibration_Stat5: 9.07075023e-16 + syst_JES_EtaIntercalibration_Stat50: 7.40166218e-21 syst_JES_EtaIntercalibration_Stat51: 0.0 syst_JES_EtaIntercalibration_Stat52: 0.0 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 4.776996127274964e-22 - syst_JES_EtaIntercalibration_Stat57: 2.3737756317731465e-21 - syst_JES_EtaIntercalibration_Stat58: 2.3737756317731465e-21 - syst_JES_EtaIntercalibration_Stat59: 1.027072129891567e-20 + syst_JES_EtaIntercalibration_Stat56: 4.77699613e-22 + syst_JES_EtaIntercalibration_Stat57: 2.37377563e-21 + syst_JES_EtaIntercalibration_Stat58: 2.37377563e-21 + syst_JES_EtaIntercalibration_Stat59: 1.02707213e-20 syst_JES_EtaIntercalibration_Stat6: 0.0 - syst_JES_EtaIntercalibration_Stat60: 1.9165142423820025e-09 - syst_JES_EtaIntercalibration_Stat61: 1.916514274953223e-09 - syst_JES_EtaIntercalibration_Stat62: 1.382103978541412e-19 - syst_JES_EtaIntercalibration_Stat63: 3.9372662144024503e-22 + syst_JES_EtaIntercalibration_Stat60: 1.91651424e-09 + syst_JES_EtaIntercalibration_Stat61: 1.91651427e-09 + syst_JES_EtaIntercalibration_Stat62: 1.38210398e-19 + syst_JES_EtaIntercalibration_Stat63: 3.93726621e-22 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 3.5596750905103684e-21 - syst_JES_EtaIntercalibration_Stat69: 9.777397632678717e-11 + syst_JES_EtaIntercalibration_Stat68: 3.55967509e-21 + syst_JES_EtaIntercalibration_Stat69: 9.77739763e-11 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 9.861159528884357e-11 - syst_JES_EtaIntercalibration_Stat71: 9.563518345313503e-11 - syst_JES_EtaIntercalibration_Stat72: 1.485172753603387e-16 + syst_JES_EtaIntercalibration_Stat70: 9.86115953e-11 + syst_JES_EtaIntercalibration_Stat71: 9.56351835e-11 + syst_JES_EtaIntercalibration_Stat72: 1.48517275e-16 syst_JES_EtaIntercalibration_Stat73: 0.0 syst_JES_EtaIntercalibration_Stat74: 0.0 syst_JES_EtaIntercalibration_Stat75: 0.0 - syst_JES_EtaIntercalibration_Stat76: 2.153805179211899e-21 - syst_JES_EtaIntercalibration_Stat77: 4.776996127274964e-22 - syst_JES_EtaIntercalibration_Stat78: 4.776996127274964e-22 - syst_JES_EtaIntercalibration_Stat79: 2.3737756317731465e-21 + syst_JES_EtaIntercalibration_Stat76: 2.15380518e-21 + syst_JES_EtaIntercalibration_Stat77: 4.77699613e-22 + syst_JES_EtaIntercalibration_Stat78: 4.77699613e-22 + syst_JES_EtaIntercalibration_Stat79: 2.37377563e-21 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 2.3079577010855292e-21 - syst_JES_EtaIntercalibration_Stat81: 4.1517315363592576e-20 - syst_JES_EtaIntercalibration_Stat82: 1.916514279052411e-09 - syst_JES_EtaIntercalibration_Stat83: 7.886889855260504e-10 - syst_JES_EtaIntercalibration_Stat84: 2.313973368472507e-17 - syst_JES_EtaIntercalibration_Stat85: 5.053025504586336e-22 + syst_JES_EtaIntercalibration_Stat80: 2.30795770e-21 + syst_JES_EtaIntercalibration_Stat81: 4.15173154e-20 + syst_JES_EtaIntercalibration_Stat82: 1.91651428e-09 + syst_JES_EtaIntercalibration_Stat83: 7.88688986e-10 + syst_JES_EtaIntercalibration_Stat84: 2.31397337e-17 + syst_JES_EtaIntercalibration_Stat85: 5.05302550e-22 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 4.36693153140738e-21 + syst_JES_EtaIntercalibration_Stat89: 4.36693153e-21 syst_JES_EtaIntercalibration_Stat9: 0.0 - syst_JES_EtaIntercalibration_Stat90: 9.78545253924554e-11 - syst_JES_EtaIntercalibration_Stat91: 9.938975148354118e-11 - syst_JES_EtaIntercalibration_Stat92: 6.634105893034871e-16 - syst_JES_EtaIntercalibration_Stat93: 1.530149981939518e-16 + syst_JES_EtaIntercalibration_Stat90: 9.78545254e-11 + syst_JES_EtaIntercalibration_Stat91: 9.93897515e-11 + syst_JES_EtaIntercalibration_Stat92: 6.63410589e-16 + syst_JES_EtaIntercalibration_Stat93: 1.53014998e-16 syst_JES_EtaIntercalibration_Stat94: 0.0 syst_JES_EtaIntercalibration_Stat95: 0.0 - syst_JES_EtaIntercalibration_Stat96: 9.633666591698095e-19 - syst_JES_EtaIntercalibration_Stat97: 2.153805179211899e-21 - syst_JES_EtaIntercalibration_Stat98: 4.776996127274964e-22 - syst_JES_EtaIntercalibration_Stat99: 4.776996127274964e-22 - syst_JES_EtaIntercalibration_TotalStat_MJB: 3.151e-05 - syst_JES_Flavour_Comp: 8.680858986874513e-05 - syst_JES_Flavour_Response: 2.025616202541834e-05 - syst_JES_Gjet_Generator: 0.00010140304285375267 - syst_JES_Gjet_OOC: 8.51474208358656e-05 - syst_JES_Gjet_Purity: 1.191578964022108e-05 - syst_JES_Gjet_Stat1: 2.2274597639463655e-08 - syst_JES_Gjet_Stat10: 9.941740444710876e-07 - syst_JES_Gjet_Stat11: 1.2015599360830903e-06 - syst_JES_Gjet_Stat12: 4.007538430258654e-06 - syst_JES_Gjet_Stat13: 1.4486123316815994e-05 - syst_JES_Gjet_Stat14: 4.57363990711993e-05 - syst_JES_Gjet_Stat15: 6.142446153610138e-05 - syst_JES_Gjet_Stat2: 1.5139871828059674e-07 - syst_JES_Gjet_Stat3: 1.5294008630834592e-07 - syst_JES_Gjet_Stat4: 1.762361696701532e-07 - syst_JES_Gjet_Stat5: 1.809993093909745e-07 - syst_JES_Gjet_Stat6: 3.754094799402011e-09 - syst_JES_Gjet_Stat7: 3.303905743672934e-10 - syst_JES_Gjet_Stat8: 1.0323953639473591e-07 - syst_JES_Gjet_Stat9: 2.2335068838040324e-07 - syst_JES_Gjet_Veto: 8.589337750956124e-05 - syst_JES_Gjet_dPhi: 5.0248226543331854e-06 - syst_JES_LArESZee: 0.00015151098970041745 - syst_JES_LArEsmear: 1.0727597447704682e-05 - syst_JES_LAr_JVT: 1.4478748866873824e-05 - syst_JES_MJB_Alpha: 4.699053840934364e-07 - syst_JES_MJB_Asym: 2.0639498540420016e-05 - syst_JES_MJB_Beta: 7.128255098549715e-07 - syst_JES_MJB_Fragmentation: 8.478521495520313e-06 - syst_JES_MJB_Stat1: 1.3397412996545264e-10 - syst_JES_MJB_Stat10: 2.612798643217651e-08 - syst_JES_MJB_Stat11: 3.696902145039817e-08 + syst_JES_EtaIntercalibration_Stat96: 9.63366659e-19 + syst_JES_EtaIntercalibration_Stat97: 2.15380518e-21 + syst_JES_EtaIntercalibration_Stat98: 4.77699613e-22 + syst_JES_EtaIntercalibration_Stat99: 4.77699613e-22 + syst_JES_EtaIntercalibration_TotalStat_MJB: 3.15100000e-05 + syst_JES_Flavour_Comp: 8.68085899e-05 + syst_JES_Flavour_Response: 2.02561620e-05 + syst_JES_Gjet_Generator: 1.01403043e-04 + syst_JES_Gjet_OOC: 8.51474208e-05 + syst_JES_Gjet_Purity: 1.19157896e-05 + syst_JES_Gjet_Stat1: 2.22745976e-08 + syst_JES_Gjet_Stat10: 9.94174044e-07 + syst_JES_Gjet_Stat11: 1.20155994e-06 + syst_JES_Gjet_Stat12: 4.00753843e-06 + syst_JES_Gjet_Stat13: 1.44861233e-05 + syst_JES_Gjet_Stat14: 4.57363991e-05 + syst_JES_Gjet_Stat15: 6.14244615e-05 + syst_JES_Gjet_Stat2: 1.51398718e-07 + syst_JES_Gjet_Stat3: 1.52940086e-07 + syst_JES_Gjet_Stat4: 1.76236170e-07 + syst_JES_Gjet_Stat5: 1.80999309e-07 + syst_JES_Gjet_Stat6: 3.75409480e-09 + syst_JES_Gjet_Stat7: 3.30390574e-10 + syst_JES_Gjet_Stat8: 1.03239536e-07 + syst_JES_Gjet_Stat9: 2.23350688e-07 + syst_JES_Gjet_Veto: 8.58933775e-05 + syst_JES_Gjet_dPhi: 5.02482265e-06 + syst_JES_LArESZee: 1.51510990e-04 + syst_JES_LArEsmear: 1.07275974e-05 + syst_JES_LAr_JVT: 1.44787489e-05 + syst_JES_MJB_Alpha: 4.69905384e-07 + syst_JES_MJB_Asym: 2.06394985e-05 + syst_JES_MJB_Beta: 7.12825510e-07 + syst_JES_MJB_Fragmentation: 8.47852150e-06 + syst_JES_MJB_Stat1: 1.33974130e-10 + syst_JES_MJB_Stat10: 2.61279864e-08 + syst_JES_MJB_Stat11: 3.69690215e-08 syst_JES_MJB_Stat12: 0.0 syst_JES_MJB_Stat13: 0.0 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 - syst_JES_MJB_Stat16: 5.746944579513534e-09 - syst_JES_MJB_Stat2: 2.4619976990241076e-08 - syst_JES_MJB_Stat3: 1.6486219904817475e-07 - syst_JES_MJB_Stat4: 1.630548680659366e-08 - syst_JES_MJB_Stat5: 2.2128907988194987e-08 - syst_JES_MJB_Stat6: 6.514308643862371e-08 - syst_JES_MJB_Stat7: 2.392608091602133e-07 - syst_JES_MJB_Stat8: 7.085959258103309e-08 - syst_JES_MJB_Stat9: 9.314898352639174e-08 - syst_JES_MJB_Threshold: 1.1580722386794356e-05 - syst_JES_Pileup_MuOffset: 2.01377375839492e-05 - syst_JES_Pileup_NPVOffset: 1.9395783046837783e-05 - syst_JES_Pileup_Pt_term: 1.827123148558958e-05 - syst_JES_Pileup_Rho_topology: 2.5744663039162117e-05 - syst_JES_PunchThrough_MC15: 2.1102030115607357e-05 + syst_JES_MJB_Stat16: 5.74694458e-09 + syst_JES_MJB_Stat2: 2.46199770e-08 + syst_JES_MJB_Stat3: 1.64862199e-07 + syst_JES_MJB_Stat4: 1.63054868e-08 + syst_JES_MJB_Stat5: 2.21289080e-08 + syst_JES_MJB_Stat6: 6.51430864e-08 + syst_JES_MJB_Stat7: 2.39260809e-07 + syst_JES_MJB_Stat8: 7.08595926e-08 + syst_JES_MJB_Stat9: 9.31489835e-08 + syst_JES_MJB_Threshold: 1.15807224e-05 + syst_JES_Pileup_MuOffset: 2.01377376e-05 + syst_JES_Pileup_NPVOffset: 1.93957830e-05 + syst_JES_Pileup_Pt_term: 1.82712315e-05 + syst_JES_Pileup_Rho_topology: 2.57446630e-05 + syst_JES_PunchThrough_MC15: 2.11020301e-05 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 3.629330620100627e-05 - syst_JES_Zjet_MuScale: 3.935386939997133e-07 - syst_JES_Zjet_MuSmearID: 1.0648972212730204e-07 - syst_JES_Zjet_MuSmearMS: 8.493470963039787e-06 - syst_JES_Zjet_OOC: 2.1287866849452057e-05 - syst_JES_Zjet_Stat1: 5.252444073950785e-08 - syst_JES_Zjet_Stat10: 9.579586297137262e-07 - syst_JES_Zjet_Stat11: 1.1825118471605263e-06 - syst_JES_Zjet_Stat12: 4.907354149641128e-06 - syst_JES_Zjet_Stat13: 9.632228130084959e-06 - syst_JES_Zjet_Stat2: 2.1697250219094586e-09 - syst_JES_Zjet_Stat3: 4.20455333537345e-08 - syst_JES_Zjet_Stat4: 2.8871587776739957e-20 - syst_JES_Zjet_Stat5: 4.3969058154570466e-20 - syst_JES_Zjet_Stat6: 8.568935798757136e-09 - syst_JES_Zjet_Stat7: 2.4671083894055e-15 - syst_JES_Zjet_Stat8: 2.2892983095263053e-12 - syst_JES_Zjet_Stat9: 1.5601450317198076e-07 - syst_JES_Zjet_Veto: 9.489762341992555e-07 - syst_JES_Zjet_dPhi: 8.434017829599366e-07 - syst_PRW: 8.751e-06 - syst_Unfolding_bias: 5.244e-07 - syst_cleaning: 1.283449648408538e-05 - syst_lumi: 4.176e-05 -- stat: 5.711e-05 + syst_JES_Zjet_MC: 3.62933062e-05 + syst_JES_Zjet_MuScale: 3.93538694e-07 + syst_JES_Zjet_MuSmearID: 1.06489722e-07 + syst_JES_Zjet_MuSmearMS: 8.49347096e-06 + syst_JES_Zjet_OOC: 2.12878668e-05 + syst_JES_Zjet_Stat1: 5.25244407e-08 + syst_JES_Zjet_Stat10: 9.57958630e-07 + syst_JES_Zjet_Stat11: 1.18251185e-06 + syst_JES_Zjet_Stat12: 4.90735415e-06 + syst_JES_Zjet_Stat13: 9.63222813e-06 + syst_JES_Zjet_Stat2: 2.16972502e-09 + syst_JES_Zjet_Stat3: 4.20455334e-08 + syst_JES_Zjet_Stat4: 2.88715878e-20 + syst_JES_Zjet_Stat5: 4.39690582e-20 + syst_JES_Zjet_Stat6: 8.56893580e-09 + syst_JES_Zjet_Stat7: 2.46710839e-15 + syst_JES_Zjet_Stat8: 2.28929831e-12 + syst_JES_Zjet_Stat9: 1.56014503e-07 + syst_JES_Zjet_Veto: 9.48976234e-07 + syst_JES_Zjet_dPhi: 8.43401783e-07 + syst_PRW: 8.75100000e-06 + syst_Unfolding_bias: 5.24400000e-07 + syst_cleaning: 1.28344965e-05 + syst_lumi: 4.17600000e-05 +- stat: 5.71100000e-05 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 1.5486689349244402e-05 - syst_JER_NP1: 2.763616606912037e-05 - syst_JER_NP2: 8.540742532132407e-06 - syst_JER_NP3: 5.1810305876912173e-08 - syst_JER_NP4: 4.800404228869377e-08 - syst_JER_NP5: 4.129227440243605e-14 - syst_JER_NP6: 1.0830283318085451e-16 - syst_JER_NP7: 6.202500685207539e-20 - syst_JER_NP8: 7.843079242236433e-07 - syst_JES_EtaIntercalibration_Modelling: 7.770946966103939e-05 - syst_JES_EtaIntercalibration_NonClosure: 6.64540027011165e-07 + syst_JER_NP0: 1.54866893e-05 + syst_JER_NP1: 2.76361661e-05 + syst_JER_NP2: 8.54074253e-06 + syst_JER_NP3: 5.18103059e-08 + syst_JER_NP4: 4.80040423e-08 + syst_JER_NP5: 4.12922744e-14 + syst_JER_NP6: 1.08302833e-16 + syst_JER_NP7: 6.20250069e-20 + syst_JER_NP8: 7.84307924e-07 + syst_JES_EtaIntercalibration_Modelling: 7.77094697e-05 + syst_JES_EtaIntercalibration_NonClosure: 6.64540027e-07 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 9.562652508587772e-23 + syst_JES_EtaIntercalibration_Stat100: 9.56265251e-23 syst_JES_EtaIntercalibration_Stat101: 0.0 - syst_JES_EtaIntercalibration_Stat102: 2.239671866033058e-19 - syst_JES_EtaIntercalibration_Stat103: 1.0899797480826031e-10 - syst_JES_EtaIntercalibration_Stat104: 1.726073014446376e-10 - syst_JES_EtaIntercalibration_Stat105: 1.4120206514070536e-17 - syst_JES_EtaIntercalibration_Stat106: 5.589687082476084e-21 + syst_JES_EtaIntercalibration_Stat102: 2.23967187e-19 + syst_JES_EtaIntercalibration_Stat103: 1.08997975e-10 + syst_JES_EtaIntercalibration_Stat104: 1.72607301e-10 + syst_JES_EtaIntercalibration_Stat105: 1.41202065e-17 + syst_JES_EtaIntercalibration_Stat106: 5.58968708e-21 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 1.765501274426048e-19 + syst_JES_EtaIntercalibration_Stat109: 1.76550127e-19 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 5.55310203569237e-11 - syst_JES_EtaIntercalibration_Stat111: 5.441771428209292e-11 - syst_JES_EtaIntercalibration_Stat112: 3.171877923041017e-11 - syst_JES_EtaIntercalibration_Stat113: 3.887817921083753e-17 - syst_JES_EtaIntercalibration_Stat114: 2.4725025278045727e-20 + syst_JES_EtaIntercalibration_Stat110: 5.55310204e-11 + syst_JES_EtaIntercalibration_Stat111: 5.44177143e-11 + syst_JES_EtaIntercalibration_Stat112: 3.17187792e-11 + syst_JES_EtaIntercalibration_Stat113: 3.88781792e-17 + syst_JES_EtaIntercalibration_Stat114: 2.47250253e-20 syst_JES_EtaIntercalibration_Stat115: 0.0 - syst_JES_EtaIntercalibration_Stat116: 6.179957281405754e-20 - syst_JES_EtaIntercalibration_Stat117: 1.022169784086773e-19 - syst_JES_EtaIntercalibration_Stat118: 9.562652508587772e-23 - syst_JES_EtaIntercalibration_Stat119: 9.562652508587772e-23 + syst_JES_EtaIntercalibration_Stat116: 6.17995728e-20 + syst_JES_EtaIntercalibration_Stat117: 1.02216978e-19 + syst_JES_EtaIntercalibration_Stat118: 9.56265251e-23 + syst_JES_EtaIntercalibration_Stat119: 9.56265251e-23 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 9.562652508587772e-23 - syst_JES_EtaIntercalibration_Stat121: 1.0553385570517169e-21 - syst_JES_EtaIntercalibration_Stat122: 1.0902394488361084e-10 - syst_JES_EtaIntercalibration_Stat123: 7.23816547143508e-10 - syst_JES_EtaIntercalibration_Stat124: 2.546629244216755e-11 - syst_JES_EtaIntercalibration_Stat125: 3.8908484010559954e-14 - syst_JES_EtaIntercalibration_Stat126: 1.3670084564478744e-18 + syst_JES_EtaIntercalibration_Stat120: 9.56265251e-23 + syst_JES_EtaIntercalibration_Stat121: 1.05533856e-21 + syst_JES_EtaIntercalibration_Stat122: 1.09023945e-10 + syst_JES_EtaIntercalibration_Stat123: 7.23816547e-10 + syst_JES_EtaIntercalibration_Stat124: 2.54662924e-11 + syst_JES_EtaIntercalibration_Stat125: 3.89084840e-14 + syst_JES_EtaIntercalibration_Stat126: 1.36700846e-18 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 1.8813335695723922e-14 - syst_JES_EtaIntercalibration_Stat129: 7.1931315850608485e-09 + syst_JES_EtaIntercalibration_Stat128: 1.88133357e-14 + syst_JES_EtaIntercalibration_Stat129: 7.19313159e-09 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 1.4281267477013374e-08 - syst_JES_EtaIntercalibration_Stat131: 3.4346729101910126e-09 - syst_JES_EtaIntercalibration_Stat132: 3.1201328684486946e-11 - syst_JES_EtaIntercalibration_Stat133: 1.6107459215043817e-17 + syst_JES_EtaIntercalibration_Stat130: 1.42812675e-08 + syst_JES_EtaIntercalibration_Stat131: 3.43467291e-09 + syst_JES_EtaIntercalibration_Stat132: 3.12013287e-11 + syst_JES_EtaIntercalibration_Stat133: 1.61074592e-17 syst_JES_EtaIntercalibration_Stat134: 0.0 - syst_JES_EtaIntercalibration_Stat135: 6.179957281405754e-20 - syst_JES_EtaIntercalibration_Stat136: 6.179957281405754e-20 - syst_JES_EtaIntercalibration_Stat137: 9.562652508587772e-23 - syst_JES_EtaIntercalibration_Stat138: 9.562652508587772e-23 - syst_JES_EtaIntercalibration_Stat139: 9.562652508587772e-23 + syst_JES_EtaIntercalibration_Stat135: 6.17995728e-20 + syst_JES_EtaIntercalibration_Stat136: 6.17995728e-20 + syst_JES_EtaIntercalibration_Stat137: 9.56265251e-23 + syst_JES_EtaIntercalibration_Stat138: 9.56265251e-23 + syst_JES_EtaIntercalibration_Stat139: 9.56265251e-23 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 1.6376540385563734e-22 - syst_JES_EtaIntercalibration_Stat141: 1.0949236351453921e-10 - syst_JES_EtaIntercalibration_Stat142: 1.465661259500554e-09 - syst_JES_EtaIntercalibration_Stat143: 2.8863154834494445e-08 - syst_JES_EtaIntercalibration_Stat144: 7.532283018447992e-09 - syst_JES_EtaIntercalibration_Stat145: 3.64792614885499e-18 - syst_JES_EtaIntercalibration_Stat146: 1.2947446763137178e-10 - syst_JES_EtaIntercalibration_Stat147: 7.193244799810444e-09 - syst_JES_EtaIntercalibration_Stat148: 1.4336753712050717e-08 - syst_JES_EtaIntercalibration_Stat149: 3.431457707738797e-09 + syst_JES_EtaIntercalibration_Stat140: 1.63765404e-22 + syst_JES_EtaIntercalibration_Stat141: 1.09492364e-10 + syst_JES_EtaIntercalibration_Stat142: 1.46566126e-09 + syst_JES_EtaIntercalibration_Stat143: 2.88631548e-08 + syst_JES_EtaIntercalibration_Stat144: 7.53228302e-09 + syst_JES_EtaIntercalibration_Stat145: 3.64792615e-18 + syst_JES_EtaIntercalibration_Stat146: 1.29474468e-10 + syst_JES_EtaIntercalibration_Stat147: 7.19324480e-09 + syst_JES_EtaIntercalibration_Stat148: 1.43367537e-08 + syst_JES_EtaIntercalibration_Stat149: 3.43145771e-09 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 3.130561735392613e-11 - syst_JES_EtaIntercalibration_Stat151: 9.678741474351752e-17 + syst_JES_EtaIntercalibration_Stat150: 3.13056174e-11 + syst_JES_EtaIntercalibration_Stat151: 9.67874147e-17 syst_JES_EtaIntercalibration_Stat152: 0.0 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 9.562652508587772e-23 + syst_JES_EtaIntercalibration_Stat156: 9.56265251e-23 syst_JES_EtaIntercalibration_Stat157: 0.0 syst_JES_EtaIntercalibration_Stat158: 0.0 - syst_JES_EtaIntercalibration_Stat159: 1.1169335337431677e-10 - syst_JES_EtaIntercalibration_Stat16: 1.0907589960666039e-10 - syst_JES_EtaIntercalibration_Stat160: 4.404286277116873e-09 - syst_JES_EtaIntercalibration_Stat161: 2.8896938259095895e-08 - syst_JES_EtaIntercalibration_Stat162: 3.7062279028009056e-09 - syst_JES_EtaIntercalibration_Stat163: 2.580401059912974e-15 - syst_JES_EtaIntercalibration_Stat164: 5.5376873382606206e-11 - syst_JES_EtaIntercalibration_Stat165: 4.132384917635336e-08 - syst_JES_EtaIntercalibration_Stat166: 1.0131083357667135e-07 - syst_JES_EtaIntercalibration_Stat167: 1.7946096288608284e-08 - syst_JES_EtaIntercalibration_Stat168: 3.60160567941578e-11 - syst_JES_EtaIntercalibration_Stat169: 9.678741474351752e-17 - syst_JES_EtaIntercalibration_Stat17: 4.9836444769942205e-21 + syst_JES_EtaIntercalibration_Stat159: 1.11693353e-10 + syst_JES_EtaIntercalibration_Stat16: 1.09075900e-10 + syst_JES_EtaIntercalibration_Stat160: 4.40428628e-09 + syst_JES_EtaIntercalibration_Stat161: 2.88969383e-08 + syst_JES_EtaIntercalibration_Stat162: 3.70622790e-09 + syst_JES_EtaIntercalibration_Stat163: 2.58040106e-15 + syst_JES_EtaIntercalibration_Stat164: 5.53768734e-11 + syst_JES_EtaIntercalibration_Stat165: 4.13238492e-08 + syst_JES_EtaIntercalibration_Stat166: 1.01310834e-07 + syst_JES_EtaIntercalibration_Stat167: 1.79460963e-08 + syst_JES_EtaIntercalibration_Stat168: 3.60160568e-11 + syst_JES_EtaIntercalibration_Stat169: 9.67874147e-17 + syst_JES_EtaIntercalibration_Stat17: 4.98364448e-21 syst_JES_EtaIntercalibration_Stat170: 0.0 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 syst_JES_EtaIntercalibration_Stat175: 0.0 - syst_JES_EtaIntercalibration_Stat176: 1.072918872748541e-17 - syst_JES_EtaIntercalibration_Stat177: 1.011720483532878e-10 - syst_JES_EtaIntercalibration_Stat178: 1.3824615242656844e-07 - syst_JES_EtaIntercalibration_Stat179: 2.208519130548794e-07 - syst_JES_EtaIntercalibration_Stat18: 1.752543068657658e-23 - syst_JES_EtaIntercalibration_Stat180: 2.8018426200448875e-08 - syst_JES_EtaIntercalibration_Stat181: 1.0393503436642525e-12 - syst_JES_EtaIntercalibration_Stat182: 1.7568242676773336e-07 - syst_JES_EtaIntercalibration_Stat183: 1.0323722717605311e-06 - syst_JES_EtaIntercalibration_Stat184: 5.068242275927622e-07 - syst_JES_EtaIntercalibration_Stat185: 5.46219464203721e-09 - syst_JES_EtaIntercalibration_Stat186: 9.67956593809867e-17 + syst_JES_EtaIntercalibration_Stat176: 1.07291887e-17 + syst_JES_EtaIntercalibration_Stat177: 1.01172048e-10 + syst_JES_EtaIntercalibration_Stat178: 1.38246152e-07 + syst_JES_EtaIntercalibration_Stat179: 2.20851913e-07 + syst_JES_EtaIntercalibration_Stat18: 1.75254307e-23 + syst_JES_EtaIntercalibration_Stat180: 2.80184262e-08 + syst_JES_EtaIntercalibration_Stat181: 1.03935034e-12 + syst_JES_EtaIntercalibration_Stat182: 1.75682427e-07 + syst_JES_EtaIntercalibration_Stat183: 1.03237227e-06 + syst_JES_EtaIntercalibration_Stat184: 5.06824228e-07 + syst_JES_EtaIntercalibration_Stat185: 5.46219464e-09 + syst_JES_EtaIntercalibration_Stat186: 9.67956594e-17 syst_JES_EtaIntercalibration_Stat187: 0.0 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 @@ -52354,31 +52354,31 @@ bins: syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 syst_JES_EtaIntercalibration_Stat192: 0.0 - syst_JES_EtaIntercalibration_Stat193: 1.0901527993455908e-10 - syst_JES_EtaIntercalibration_Stat194: 6.024550522653122e-08 - syst_JES_EtaIntercalibration_Stat195: 3.48698709023994e-07 - syst_JES_EtaIntercalibration_Stat196: 5.88663763705564e-07 - syst_JES_EtaIntercalibration_Stat197: 4.041018593705676e-07 - syst_JES_EtaIntercalibration_Stat198: 1.7299474522366279e-06 - syst_JES_EtaIntercalibration_Stat199: 1.2773968334076925e-06 + syst_JES_EtaIntercalibration_Stat193: 1.09015280e-10 + syst_JES_EtaIntercalibration_Stat194: 6.02455052e-08 + syst_JES_EtaIntercalibration_Stat195: 3.48698709e-07 + syst_JES_EtaIntercalibration_Stat196: 5.88663764e-07 + syst_JES_EtaIntercalibration_Stat197: 4.04101859e-07 + syst_JES_EtaIntercalibration_Stat198: 1.72994745e-06 + syst_JES_EtaIntercalibration_Stat199: 1.27739683e-06 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 8.592022464472495e-08 - syst_JES_EtaIntercalibration_Stat201: 9.67956593809867e-17 + syst_JES_EtaIntercalibration_Stat200: 8.59202246e-08 + syst_JES_EtaIntercalibration_Stat201: 9.67956594e-17 syst_JES_EtaIntercalibration_Stat202: 0.0 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 syst_JES_EtaIntercalibration_Stat207: 0.0 - syst_JES_EtaIntercalibration_Stat208: 1.0906723935261221e-10 - syst_JES_EtaIntercalibration_Stat209: 5.778360041352564e-08 + syst_JES_EtaIntercalibration_Stat208: 1.09067239e-10 + syst_JES_EtaIntercalibration_Stat209: 5.77836004e-08 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 5.381841413494083e-07 - syst_JES_EtaIntercalibration_Stat211: 1.6572940203838306e-06 - syst_JES_EtaIntercalibration_Stat212: 8.429852949488502e-07 - syst_JES_EtaIntercalibration_Stat213: 8.867092066032697e-08 - syst_JES_EtaIntercalibration_Stat214: 9.67956593809867e-17 + syst_JES_EtaIntercalibration_Stat210: 5.38184141e-07 + syst_JES_EtaIntercalibration_Stat211: 1.65729402e-06 + syst_JES_EtaIntercalibration_Stat212: 8.42985295e-07 + syst_JES_EtaIntercalibration_Stat213: 8.86709207e-08 + syst_JES_EtaIntercalibration_Stat214: 9.67956594e-17 syst_JES_EtaIntercalibration_Stat215: 0.0 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 @@ -52386,11 +52386,11 @@ bins: syst_JES_EtaIntercalibration_Stat219: 0.0 syst_JES_EtaIntercalibration_Stat22: 0.0 syst_JES_EtaIntercalibration_Stat220: 0.0 - syst_JES_EtaIntercalibration_Stat221: 1.0904991884453651e-10 - syst_JES_EtaIntercalibration_Stat222: 5.780104973743989e-08 - syst_JES_EtaIntercalibration_Stat223: 8.283922304681521e-07 - syst_JES_EtaIntercalibration_Stat224: 2.774060922186101e-06 - syst_JES_EtaIntercalibration_Stat225: 2.627088645249718e-07 + syst_JES_EtaIntercalibration_Stat221: 1.09049919e-10 + syst_JES_EtaIntercalibration_Stat222: 5.78010497e-08 + syst_JES_EtaIntercalibration_Stat223: 8.28392230e-07 + syst_JES_EtaIntercalibration_Stat224: 2.77406092e-06 + syst_JES_EtaIntercalibration_Stat225: 2.62708865e-07 syst_JES_EtaIntercalibration_Stat226: 0.0 syst_JES_EtaIntercalibration_Stat227: 0.0 syst_JES_EtaIntercalibration_Stat228: 0.0 @@ -52399,291 +52399,291 @@ bins: syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 syst_JES_EtaIntercalibration_Stat232: 0.0 - syst_JES_EtaIntercalibration_Stat233: 1.0904991884453651e-10 - syst_JES_EtaIntercalibration_Stat234: 7.193567562065433e-08 - syst_JES_EtaIntercalibration_Stat235: 2.9742308249360877e-06 - syst_JES_EtaIntercalibration_Stat236: 5.50983690774963e-09 + syst_JES_EtaIntercalibration_Stat233: 1.09049919e-10 + syst_JES_EtaIntercalibration_Stat234: 7.19356756e-08 + syst_JES_EtaIntercalibration_Stat235: 2.97423082e-06 + syst_JES_EtaIntercalibration_Stat236: 5.50983691e-09 syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 syst_JES_EtaIntercalibration_Stat239: 0.0 - syst_JES_EtaIntercalibration_Stat24: 6.990557059347988e-23 + syst_JES_EtaIntercalibration_Stat24: 6.99055706e-23 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 syst_JES_EtaIntercalibration_Stat243: 0.0 - syst_JES_EtaIntercalibration_Stat244: 1.0904991884453651e-10 - syst_JES_EtaIntercalibration_Stat245: 5.947856228928201e-08 - syst_JES_EtaIntercalibration_Stat25: 1.6292884182980006e-21 - syst_JES_EtaIntercalibration_Stat26: 3.07265813242093e-11 - syst_JES_EtaIntercalibration_Stat27: 1.6063162809736663e-17 - syst_JES_EtaIntercalibration_Stat28: 4.493983140544699e-22 + syst_JES_EtaIntercalibration_Stat244: 1.09049919e-10 + syst_JES_EtaIntercalibration_Stat245: 5.94785623e-08 + syst_JES_EtaIntercalibration_Stat25: 1.62928842e-21 + syst_JES_EtaIntercalibration_Stat26: 3.07265813e-11 + syst_JES_EtaIntercalibration_Stat27: 1.60631628e-17 + syst_JES_EtaIntercalibration_Stat28: 4.49398314e-22 syst_JES_EtaIntercalibration_Stat29: 0.0 - syst_JES_EtaIntercalibration_Stat3: 1.2865044762844786e-22 + syst_JES_EtaIntercalibration_Stat3: 1.28650448e-22 syst_JES_EtaIntercalibration_Stat30: 0.0 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 2.49155508668783e-22 - syst_JES_EtaIntercalibration_Stat36: 2.49155508668783e-22 - syst_JES_EtaIntercalibration_Stat37: 1.207256882357686e-21 - syst_JES_EtaIntercalibration_Stat38: 1.0907589960925475e-10 - syst_JES_EtaIntercalibration_Stat39: 1.0907589960890893e-10 - syst_JES_EtaIntercalibration_Stat4: 9.367798421442515e-17 - syst_JES_EtaIntercalibration_Stat40: 7.74053804525241e-21 + syst_JES_EtaIntercalibration_Stat35: 2.49155509e-22 + syst_JES_EtaIntercalibration_Stat36: 2.49155509e-22 + syst_JES_EtaIntercalibration_Stat37: 1.20725688e-21 + syst_JES_EtaIntercalibration_Stat38: 1.09075900e-10 + syst_JES_EtaIntercalibration_Stat39: 1.09075900e-10 + syst_JES_EtaIntercalibration_Stat4: 9.36779842e-17 + syst_JES_EtaIntercalibration_Stat40: 7.74053805e-21 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 syst_JES_EtaIntercalibration_Stat44: 0.0 syst_JES_EtaIntercalibration_Stat45: 0.0 - syst_JES_EtaIntercalibration_Stat46: 1.8067112885018457e-22 - syst_JES_EtaIntercalibration_Stat47: 1.0530144443453756e-20 - syst_JES_EtaIntercalibration_Stat48: 3.095174790779232e-11 - syst_JES_EtaIntercalibration_Stat49: 1.6117041707927512e-17 - syst_JES_EtaIntercalibration_Stat5: 9.368663095152749e-17 - syst_JES_EtaIntercalibration_Stat50: 1.1101547820011407e-21 + syst_JES_EtaIntercalibration_Stat46: 1.80671129e-22 + syst_JES_EtaIntercalibration_Stat47: 1.05301444e-20 + syst_JES_EtaIntercalibration_Stat48: 3.09517479e-11 + syst_JES_EtaIntercalibration_Stat49: 1.61170417e-17 + syst_JES_EtaIntercalibration_Stat5: 9.36866310e-17 + syst_JES_EtaIntercalibration_Stat50: 1.11015478e-21 syst_JES_EtaIntercalibration_Stat51: 0.0 syst_JES_EtaIntercalibration_Stat52: 0.0 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 9.562652508587772e-23 - syst_JES_EtaIntercalibration_Stat57: 2.49155508668783e-22 - syst_JES_EtaIntercalibration_Stat58: 2.49155508668783e-22 - syst_JES_EtaIntercalibration_Stat59: 1.5745155826475647e-21 + syst_JES_EtaIntercalibration_Stat56: 9.56265251e-23 + syst_JES_EtaIntercalibration_Stat57: 2.49155509e-22 + syst_JES_EtaIntercalibration_Stat58: 2.49155509e-22 + syst_JES_EtaIntercalibration_Stat59: 1.57451558e-21 syst_JES_EtaIntercalibration_Stat6: 0.0 - syst_JES_EtaIntercalibration_Stat60: 1.0907590191662866e-10 - syst_JES_EtaIntercalibration_Stat61: 1.0907590572367753e-10 - syst_JES_EtaIntercalibration_Stat62: 1.8042273103741666e-20 - syst_JES_EtaIntercalibration_Stat63: 6.83511646352862e-23 + syst_JES_EtaIntercalibration_Stat60: 1.09075902e-10 + syst_JES_EtaIntercalibration_Stat61: 1.09075906e-10 + syst_JES_EtaIntercalibration_Stat62: 1.80422731e-20 + syst_JES_EtaIntercalibration_Stat63: 6.83511646e-23 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 4.765920976054892e-22 - syst_JES_EtaIntercalibration_Stat69: 3.109028399447417e-11 + syst_JES_EtaIntercalibration_Stat68: 4.76592098e-22 + syst_JES_EtaIntercalibration_Stat69: 3.10902840e-11 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 3.1218185505301536e-11 - syst_JES_EtaIntercalibration_Stat71: 3.077854262279201e-11 - syst_JES_EtaIntercalibration_Stat72: 1.6089970421972442e-17 + syst_JES_EtaIntercalibration_Stat70: 3.12181855e-11 + syst_JES_EtaIntercalibration_Stat71: 3.07785426e-11 + syst_JES_EtaIntercalibration_Stat72: 1.60899704e-17 syst_JES_EtaIntercalibration_Stat73: 0.0 syst_JES_EtaIntercalibration_Stat74: 0.0 syst_JES_EtaIntercalibration_Stat75: 0.0 - syst_JES_EtaIntercalibration_Stat76: 3.739497693541206e-22 - syst_JES_EtaIntercalibration_Stat77: 9.562652508587772e-23 - syst_JES_EtaIntercalibration_Stat78: 9.562652508587772e-23 - syst_JES_EtaIntercalibration_Stat79: 2.49155508668783e-22 + syst_JES_EtaIntercalibration_Stat76: 3.73949769e-22 + syst_JES_EtaIntercalibration_Stat77: 9.56265251e-23 + syst_JES_EtaIntercalibration_Stat78: 9.56265251e-23 + syst_JES_EtaIntercalibration_Stat79: 2.49155509e-22 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 2.3902301144450504e-22 - syst_JES_EtaIntercalibration_Stat81: 5.762866539318779e-21 - syst_JES_EtaIntercalibration_Stat82: 1.0901528439574604e-10 - syst_JES_EtaIntercalibration_Stat83: 1.7034716017608615e-10 - syst_JES_EtaIntercalibration_Stat84: 2.4708947266122047e-18 - syst_JES_EtaIntercalibration_Stat85: 7.877921220093534e-23 + syst_JES_EtaIntercalibration_Stat80: 2.39023011e-22 + syst_JES_EtaIntercalibration_Stat81: 5.76286654e-21 + syst_JES_EtaIntercalibration_Stat82: 1.09015284e-10 + syst_JES_EtaIntercalibration_Stat83: 1.70347160e-10 + syst_JES_EtaIntercalibration_Stat84: 2.47089473e-18 + syst_JES_EtaIntercalibration_Stat85: 7.87792122e-23 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 5.183771696361636e-22 + syst_JES_EtaIntercalibration_Stat89: 5.18377170e-22 syst_JES_EtaIntercalibration_Stat9: 0.0 - syst_JES_EtaIntercalibration_Stat90: 3.110523781556095e-11 - syst_JES_EtaIntercalibration_Stat91: 3.132890739436356e-11 - syst_JES_EtaIntercalibration_Stat92: 7.473010554656001e-17 - syst_JES_EtaIntercalibration_Stat93: 1.6565443101892324e-17 + syst_JES_EtaIntercalibration_Stat90: 3.11052378e-11 + syst_JES_EtaIntercalibration_Stat91: 3.13289074e-11 + syst_JES_EtaIntercalibration_Stat92: 7.47301055e-17 + syst_JES_EtaIntercalibration_Stat93: 1.65654431e-17 syst_JES_EtaIntercalibration_Stat94: 0.0 syst_JES_EtaIntercalibration_Stat95: 0.0 - syst_JES_EtaIntercalibration_Stat96: 1.022169784086773e-19 - syst_JES_EtaIntercalibration_Stat97: 3.739497693541206e-22 - syst_JES_EtaIntercalibration_Stat98: 9.562652508587772e-23 - syst_JES_EtaIntercalibration_Stat99: 9.562652508587772e-23 - syst_JES_EtaIntercalibration_TotalStat_MJB: 1.509534365292821e-05 - syst_JES_Flavour_Comp: 3.9120143788079315e-05 - syst_JES_Flavour_Response: 1.0489732444157003e-05 - syst_JES_Gjet_Generator: 4.466226259382747e-05 - syst_JES_Gjet_OOC: 3.765581329622294e-05 - syst_JES_Gjet_Purity: 4.030293537696728e-06 - syst_JES_Gjet_Stat1: 8.756864550168627e-09 - syst_JES_Gjet_Stat10: 3.990031281832261e-07 - syst_JES_Gjet_Stat11: 4.7422094797678433e-07 - syst_JES_Gjet_Stat12: 1.5798439796384956e-06 - syst_JES_Gjet_Stat13: 6.355644164834906e-06 - syst_JES_Gjet_Stat14: 2.0885748131201812e-05 - syst_JES_Gjet_Stat15: 3.0540003274394064e-05 - syst_JES_Gjet_Stat2: 5.988948578005992e-08 - syst_JES_Gjet_Stat3: 6.17822523059843e-08 - syst_JES_Gjet_Stat4: 6.974968602080219e-08 - syst_JES_Gjet_Stat5: 7.048580761402014e-08 - syst_JES_Gjet_Stat6: 4.6279114559577724e-10 - syst_JES_Gjet_Stat7: 3.542890936438773e-11 - syst_JES_Gjet_Stat8: 5.563542127098526e-08 - syst_JES_Gjet_Stat9: 4.087476574856424e-08 - syst_JES_Gjet_Veto: 3.814279180592317e-05 - syst_JES_Gjet_dPhi: 1.911387276299599e-06 - syst_JES_LArESZee: 6.552754592535875e-05 - syst_JES_LArEsmear: 3.701254483279959e-06 - syst_JES_LAr_JVT: 5.172164029688154e-06 - syst_JES_MJB_Alpha: 1.8550264149062675e-07 - syst_JES_MJB_Asym: 1.028271257985946e-05 - syst_JES_MJB_Beta: 2.81544858770321e-07 - syst_JES_MJB_Fragmentation: 3.745507008403535e-06 - syst_JES_MJB_Stat1: 1.863686668944112e-11 - syst_JES_MJB_Stat10: 3.251059365806783e-08 - syst_JES_MJB_Stat11: 4.2897347330575113e-08 + syst_JES_EtaIntercalibration_Stat96: 1.02216978e-19 + syst_JES_EtaIntercalibration_Stat97: 3.73949769e-22 + syst_JES_EtaIntercalibration_Stat98: 9.56265251e-23 + syst_JES_EtaIntercalibration_Stat99: 9.56265251e-23 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.50953437e-05 + syst_JES_Flavour_Comp: 3.91201438e-05 + syst_JES_Flavour_Response: 1.04897324e-05 + syst_JES_Gjet_Generator: 4.46622626e-05 + syst_JES_Gjet_OOC: 3.76558133e-05 + syst_JES_Gjet_Purity: 4.03029354e-06 + syst_JES_Gjet_Stat1: 8.75686455e-09 + syst_JES_Gjet_Stat10: 3.99003128e-07 + syst_JES_Gjet_Stat11: 4.74220948e-07 + syst_JES_Gjet_Stat12: 1.57984398e-06 + syst_JES_Gjet_Stat13: 6.35564416e-06 + syst_JES_Gjet_Stat14: 2.08857481e-05 + syst_JES_Gjet_Stat15: 3.05400033e-05 + syst_JES_Gjet_Stat2: 5.98894858e-08 + syst_JES_Gjet_Stat3: 6.17822523e-08 + syst_JES_Gjet_Stat4: 6.97496860e-08 + syst_JES_Gjet_Stat5: 7.04858076e-08 + syst_JES_Gjet_Stat6: 4.62791146e-10 + syst_JES_Gjet_Stat7: 3.54289094e-11 + syst_JES_Gjet_Stat8: 5.56354213e-08 + syst_JES_Gjet_Stat9: 4.08747657e-08 + syst_JES_Gjet_Veto: 3.81427918e-05 + syst_JES_Gjet_dPhi: 1.91138728e-06 + syst_JES_LArESZee: 6.55275459e-05 + syst_JES_LArEsmear: 3.70125448e-06 + syst_JES_LAr_JVT: 5.17216403e-06 + syst_JES_MJB_Alpha: 1.85502641e-07 + syst_JES_MJB_Asym: 1.02827126e-05 + syst_JES_MJB_Beta: 2.81544859e-07 + syst_JES_MJB_Fragmentation: 3.74550701e-06 + syst_JES_MJB_Stat1: 1.86368667e-11 + syst_JES_MJB_Stat10: 3.25105937e-08 + syst_JES_MJB_Stat11: 4.28973473e-08 syst_JES_MJB_Stat12: 0.0 syst_JES_MJB_Stat13: 0.0 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 - syst_JES_MJB_Stat16: 2.3244121837574332e-09 - syst_JES_MJB_Stat2: 3.0206637461822858e-09 - syst_JES_MJB_Stat3: 3.357043152370103e-08 - syst_JES_MJB_Stat4: 8.710929244776357e-10 - syst_JES_MJB_Stat5: 6.081871669149227e-09 - syst_JES_MJB_Stat6: 3.720620567526337e-08 - syst_JES_MJB_Stat7: 6.060382228044696e-08 - syst_JES_MJB_Stat8: 4.007756283757784e-08 - syst_JES_MJB_Stat9: 5.9364889016993873e-08 - syst_JES_MJB_Threshold: 5.673272864934313e-06 - syst_JES_Pileup_MuOffset: 9.567710110052455e-06 - syst_JES_Pileup_NPVOffset: 7.506862510396737e-06 - syst_JES_Pileup_Pt_term: 7.53276846517932e-06 - syst_JES_Pileup_Rho_topology: 1.0258442121004533e-05 - syst_JES_PunchThrough_MC15: 1.0898296793536135e-05 + syst_JES_MJB_Stat16: 2.32441218e-09 + syst_JES_MJB_Stat2: 3.02066375e-09 + syst_JES_MJB_Stat3: 3.35704315e-08 + syst_JES_MJB_Stat4: 8.71092924e-10 + syst_JES_MJB_Stat5: 6.08187167e-09 + syst_JES_MJB_Stat6: 3.72062057e-08 + syst_JES_MJB_Stat7: 6.06038223e-08 + syst_JES_MJB_Stat8: 4.00775628e-08 + syst_JES_MJB_Stat9: 5.93648890e-08 + syst_JES_MJB_Threshold: 5.67327286e-06 + syst_JES_Pileup_MuOffset: 9.56771011e-06 + syst_JES_Pileup_NPVOffset: 7.50686251e-06 + syst_JES_Pileup_Pt_term: 7.53276847e-06 + syst_JES_Pileup_Rho_topology: 1.02584421e-05 + syst_JES_PunchThrough_MC15: 1.08982968e-05 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 1.618200234828805e-05 - syst_JES_Zjet_MuScale: 7.222632047079514e-08 - syst_JES_Zjet_MuSmearID: 7.479244396996263e-08 - syst_JES_Zjet_MuSmearMS: 3.804887481910602e-06 - syst_JES_Zjet_OOC: 8.629330564997496e-06 - syst_JES_Zjet_Stat1: 8.197796472220282e-09 - syst_JES_Zjet_Stat10: 3.790130402334463e-07 - syst_JES_Zjet_Stat11: 3.6587163717176816e-07 - syst_JES_Zjet_Stat12: 1.930228678162253e-06 - syst_JES_Zjet_Stat13: 4.146412786976231e-06 - syst_JES_Zjet_Stat2: 4.703382398359716e-10 - syst_JES_Zjet_Stat3: 8.595302132560554e-08 - syst_JES_Zjet_Stat4: 5.00568943802949e-21 - syst_JES_Zjet_Stat5: 7.723839378832266e-21 - syst_JES_Zjet_Stat6: 7.291071776491337e-08 - syst_JES_Zjet_Stat7: 2.7832630342953576e-16 - syst_JES_Zjet_Stat8: 2.316025906590857e-13 - syst_JES_Zjet_Stat9: 2.847317479663973e-08 - syst_JES_Zjet_Veto: 1.774196355311328e-07 - syst_JES_Zjet_dPhi: 1.599167388072618e-07 - syst_PRW: 7.549e-06 - syst_Unfolding_bias: 1.0793e-06 - syst_cleaning: 5.378883782905149e-06 - syst_lumi: 1.649e-05 -- stat: 3.602e-05 + syst_JES_Zjet_MC: 1.61820023e-05 + syst_JES_Zjet_MuScale: 7.22263205e-08 + syst_JES_Zjet_MuSmearID: 7.47924440e-08 + syst_JES_Zjet_MuSmearMS: 3.80488748e-06 + syst_JES_Zjet_OOC: 8.62933056e-06 + syst_JES_Zjet_Stat1: 8.19779647e-09 + syst_JES_Zjet_Stat10: 3.79013040e-07 + syst_JES_Zjet_Stat11: 3.65871637e-07 + syst_JES_Zjet_Stat12: 1.93022868e-06 + syst_JES_Zjet_Stat13: 4.14641279e-06 + syst_JES_Zjet_Stat2: 4.70338240e-10 + syst_JES_Zjet_Stat3: 8.59530213e-08 + syst_JES_Zjet_Stat4: 5.00568944e-21 + syst_JES_Zjet_Stat5: 7.72383938e-21 + syst_JES_Zjet_Stat6: 7.29107178e-08 + syst_JES_Zjet_Stat7: 2.78326303e-16 + syst_JES_Zjet_Stat8: 2.31602591e-13 + syst_JES_Zjet_Stat9: 2.84731748e-08 + syst_JES_Zjet_Veto: 1.77419636e-07 + syst_JES_Zjet_dPhi: 1.59916739e-07 + syst_PRW: 7.54900000e-06 + syst_Unfolding_bias: 1.07930000e-06 + syst_cleaning: 5.37888378e-06 + syst_lumi: 1.64900000e-05 +- stat: 3.60200000e-05 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 7.619588965292026e-06 - syst_JER_NP1: 1.3060509484702349e-05 - syst_JER_NP2: 4.569150030368288e-06 - syst_JER_NP3: 8.016340582837221e-09 - syst_JER_NP4: 7.427806853353957e-09 - syst_JER_NP5: 5.008775918662239e-15 - syst_JER_NP6: 1.5798275443857788e-17 - syst_JER_NP7: 1.2481207032975617e-20 - syst_JER_NP8: 3.256955134784635e-07 - syst_JES_EtaIntercalibration_Modelling: 3.497669902949677e-05 - syst_JES_EtaIntercalibration_NonClosure: 5.019321268856976e-08 + syst_JER_NP0: 7.61958897e-06 + syst_JER_NP1: 1.30605095e-05 + syst_JER_NP2: 4.56915003e-06 + syst_JER_NP3: 8.01634058e-09 + syst_JER_NP4: 7.42780685e-09 + syst_JER_NP5: 5.00877592e-15 + syst_JER_NP6: 1.57982754e-17 + syst_JER_NP7: 1.24812070e-20 + syst_JER_NP8: 3.25695513e-07 + syst_JES_EtaIntercalibration_Modelling: 3.49766990e-05 + syst_JES_EtaIntercalibration_NonClosure: 5.01932127e-08 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 2.1919102969784144e-23 + syst_JES_EtaIntercalibration_Stat100: 2.19191030e-23 syst_JES_EtaIntercalibration_Stat101: 0.0 - syst_JES_EtaIntercalibration_Stat102: 3.2509615789024635e-20 - syst_JES_EtaIntercalibration_Stat103: 1.2173717112027476e-11 - syst_JES_EtaIntercalibration_Stat104: 3.517054174572095e-11 - syst_JES_EtaIntercalibration_Stat105: 1.7333697672452926e-18 - syst_JES_EtaIntercalibration_Stat106: 9.28112120112651e-22 + syst_JES_EtaIntercalibration_Stat102: 3.25096158e-20 + syst_JES_EtaIntercalibration_Stat103: 1.21737171e-11 + syst_JES_EtaIntercalibration_Stat104: 3.51705417e-11 + syst_JES_EtaIntercalibration_Stat105: 1.73336977e-18 + syst_JES_EtaIntercalibration_Stat106: 9.28112120e-22 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 2.5478247584949797e-20 + syst_JES_EtaIntercalibration_Stat109: 2.54782476e-20 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 2.97621562642726e-11 - syst_JES_EtaIntercalibration_Stat111: 2.996053961427931e-11 - syst_JES_EtaIntercalibration_Stat112: 6.212403147534777e-12 - syst_JES_EtaIntercalibration_Stat113: 4.887503995650541e-18 - syst_JES_EtaIntercalibration_Stat114: 3.984582882812202e-21 + syst_JES_EtaIntercalibration_Stat110: 2.97621563e-11 + syst_JES_EtaIntercalibration_Stat111: 2.99605396e-11 + syst_JES_EtaIntercalibration_Stat112: 6.21240315e-12 + syst_JES_EtaIntercalibration_Stat113: 4.88750400e-18 + syst_JES_EtaIntercalibration_Stat114: 3.98458288e-21 syst_JES_EtaIntercalibration_Stat115: 0.0 - syst_JES_EtaIntercalibration_Stat116: 5.1078178315206194e-21 - syst_JES_EtaIntercalibration_Stat117: 1.204987746825668e-20 - syst_JES_EtaIntercalibration_Stat118: 2.1919102969784144e-23 - syst_JES_EtaIntercalibration_Stat119: 2.1919102969784144e-23 + syst_JES_EtaIntercalibration_Stat116: 5.10781783e-21 + syst_JES_EtaIntercalibration_Stat117: 1.20498775e-20 + syst_JES_EtaIntercalibration_Stat118: 2.19191030e-23 + syst_JES_EtaIntercalibration_Stat119: 2.19191030e-23 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 2.1919102969784144e-23 - syst_JES_EtaIntercalibration_Stat121: 1.8576244911176208e-22 - syst_JES_EtaIntercalibration_Stat122: 1.2170254144327208e-11 - syst_JES_EtaIntercalibration_Stat123: 1.3936853140174791e-10 - syst_JES_EtaIntercalibration_Stat124: 5.181290670045447e-11 - syst_JES_EtaIntercalibration_Stat125: 4.471206202748874e-15 - syst_JES_EtaIntercalibration_Stat126: 1.4933507391098715e-19 + syst_JES_EtaIntercalibration_Stat120: 2.19191030e-23 + syst_JES_EtaIntercalibration_Stat121: 1.85762449e-22 + syst_JES_EtaIntercalibration_Stat122: 1.21702541e-11 + syst_JES_EtaIntercalibration_Stat123: 1.39368531e-10 + syst_JES_EtaIntercalibration_Stat124: 5.18129067e-11 + syst_JES_EtaIntercalibration_Stat125: 4.47120620e-15 + syst_JES_EtaIntercalibration_Stat126: 1.49335074e-19 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 2.151147600700612e-15 - syst_JES_EtaIntercalibration_Stat129: 1.7629571974384402e-09 + syst_JES_EtaIntercalibration_Stat128: 2.15114760e-15 + syst_JES_EtaIntercalibration_Stat129: 1.76295720e-09 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 2.19213724022927e-09 - syst_JES_EtaIntercalibration_Stat131: 4.488537965292039e-10 - syst_JES_EtaIntercalibration_Stat132: 6.128681150983402e-12 - syst_JES_EtaIntercalibration_Stat133: 2.0269259226392564e-18 + syst_JES_EtaIntercalibration_Stat130: 2.19213724e-09 + syst_JES_EtaIntercalibration_Stat131: 4.48853797e-10 + syst_JES_EtaIntercalibration_Stat132: 6.12868115e-12 + syst_JES_EtaIntercalibration_Stat133: 2.02692592e-18 syst_JES_EtaIntercalibration_Stat134: 0.0 - syst_JES_EtaIntercalibration_Stat135: 5.1078178315206194e-21 - syst_JES_EtaIntercalibration_Stat136: 5.1078178315206194e-21 - syst_JES_EtaIntercalibration_Stat137: 2.1919102969784144e-23 - syst_JES_EtaIntercalibration_Stat138: 2.1919102969784144e-23 - syst_JES_EtaIntercalibration_Stat139: 2.1919102969784144e-23 + syst_JES_EtaIntercalibration_Stat135: 5.10781783e-21 + syst_JES_EtaIntercalibration_Stat136: 5.10781783e-21 + syst_JES_EtaIntercalibration_Stat137: 2.19191030e-23 + syst_JES_EtaIntercalibration_Stat138: 2.19191030e-23 + syst_JES_EtaIntercalibration_Stat139: 2.19191030e-23 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 1.1621194893383381e-23 - syst_JES_EtaIntercalibration_Stat141: 1.2150296570454567e-11 - syst_JES_EtaIntercalibration_Stat142: 3.1398243321276356e-10 - syst_JES_EtaIntercalibration_Stat143: 1.000593252563198e-08 - syst_JES_EtaIntercalibration_Stat144: 1.871152105488755e-09 - syst_JES_EtaIntercalibration_Stat145: 4.475827711999201e-19 - syst_JES_EtaIntercalibration_Stat146: 1.4600781609864616e-11 - syst_JES_EtaIntercalibration_Stat147: 1.7631389621921466e-09 - syst_JES_EtaIntercalibration_Stat148: 2.2117652384464316e-09 - syst_JES_EtaIntercalibration_Stat149: 4.477072048728611e-10 + syst_JES_EtaIntercalibration_Stat140: 1.16211949e-23 + syst_JES_EtaIntercalibration_Stat141: 1.21502966e-11 + syst_JES_EtaIntercalibration_Stat142: 3.13982433e-10 + syst_JES_EtaIntercalibration_Stat143: 1.00059325e-08 + syst_JES_EtaIntercalibration_Stat144: 1.87115211e-09 + syst_JES_EtaIntercalibration_Stat145: 4.47582771e-19 + syst_JES_EtaIntercalibration_Stat146: 1.46007816e-11 + syst_JES_EtaIntercalibration_Stat147: 1.76313896e-09 + syst_JES_EtaIntercalibration_Stat148: 2.21176524e-09 + syst_JES_EtaIntercalibration_Stat149: 4.47707205e-10 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 6.1469127661772715e-12 - syst_JES_EtaIntercalibration_Stat151: 1.157743119856957e-17 + syst_JES_EtaIntercalibration_Stat150: 6.14691277e-12 + syst_JES_EtaIntercalibration_Stat151: 1.15774312e-17 syst_JES_EtaIntercalibration_Stat152: 0.0 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 2.1919102969784144e-23 + syst_JES_EtaIntercalibration_Stat156: 2.19191030e-23 syst_JES_EtaIntercalibration_Stat157: 0.0 syst_JES_EtaIntercalibration_Stat158: 0.0 - syst_JES_EtaIntercalibration_Stat159: 1.1875111820526153e-11 - syst_JES_EtaIntercalibration_Stat16: 1.2158996669131284e-11 - syst_JES_EtaIntercalibration_Stat160: 1.6801452321748852e-09 - syst_JES_EtaIntercalibration_Stat161: 1.0017617518651829e-08 - syst_JES_EtaIntercalibration_Stat162: 3.728228891511357e-10 - syst_JES_EtaIntercalibration_Stat163: 2.9902139187690236e-16 - syst_JES_EtaIntercalibration_Stat164: 2.978695781464095e-11 - syst_JES_EtaIntercalibration_Stat165: 7.602433217727073e-09 - syst_JES_EtaIntercalibration_Stat166: 2.303567830561974e-08 - syst_JES_EtaIntercalibration_Stat167: 3.134863434027071e-09 - syst_JES_EtaIntercalibration_Stat168: 6.818499620151048e-12 - syst_JES_EtaIntercalibration_Stat169: 1.157743119856957e-17 - syst_JES_EtaIntercalibration_Stat17: 8.253688885999702e-22 + syst_JES_EtaIntercalibration_Stat159: 1.18751118e-11 + syst_JES_EtaIntercalibration_Stat16: 1.21589967e-11 + syst_JES_EtaIntercalibration_Stat160: 1.68014523e-09 + syst_JES_EtaIntercalibration_Stat161: 1.00176175e-08 + syst_JES_EtaIntercalibration_Stat162: 3.72822889e-10 + syst_JES_EtaIntercalibration_Stat163: 2.99021392e-16 + syst_JES_EtaIntercalibration_Stat164: 2.97869578e-11 + syst_JES_EtaIntercalibration_Stat165: 7.60243322e-09 + syst_JES_EtaIntercalibration_Stat166: 2.30356783e-08 + syst_JES_EtaIntercalibration_Stat167: 3.13486343e-09 + syst_JES_EtaIntercalibration_Stat168: 6.81849962e-12 + syst_JES_EtaIntercalibration_Stat169: 1.15774312e-17 + syst_JES_EtaIntercalibration_Stat17: 8.25368889e-22 syst_JES_EtaIntercalibration_Stat170: 0.0 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 syst_JES_EtaIntercalibration_Stat175: 0.0 - syst_JES_EtaIntercalibration_Stat176: 1.3509996299037244e-18 - syst_JES_EtaIntercalibration_Stat177: 5.3304633224584705e-11 - syst_JES_EtaIntercalibration_Stat178: 3.649005270960841e-08 - syst_JES_EtaIntercalibration_Stat179: 5.292294794085076e-08 - syst_JES_EtaIntercalibration_Stat18: 3.852497724853319e-24 - syst_JES_EtaIntercalibration_Stat180: 9.632377276664364e-09 - syst_JES_EtaIntercalibration_Stat181: 1.250029216138567e-13 - syst_JES_EtaIntercalibration_Stat182: 3.783121032956783e-08 - syst_JES_EtaIntercalibration_Stat183: 4.366509017510441e-07 - syst_JES_EtaIntercalibration_Stat184: 2.1900965732131538e-07 - syst_JES_EtaIntercalibration_Stat185: 1.2493460169224537e-09 - syst_JES_EtaIntercalibration_Stat186: 1.1578759648597945e-17 + syst_JES_EtaIntercalibration_Stat176: 1.35099963e-18 + syst_JES_EtaIntercalibration_Stat177: 5.33046332e-11 + syst_JES_EtaIntercalibration_Stat178: 3.64900527e-08 + syst_JES_EtaIntercalibration_Stat179: 5.29229479e-08 + syst_JES_EtaIntercalibration_Stat18: 3.85249772e-24 + syst_JES_EtaIntercalibration_Stat180: 9.63237728e-09 + syst_JES_EtaIntercalibration_Stat181: 1.25002922e-13 + syst_JES_EtaIntercalibration_Stat182: 3.78312103e-08 + syst_JES_EtaIntercalibration_Stat183: 4.36650902e-07 + syst_JES_EtaIntercalibration_Stat184: 2.19009657e-07 + syst_JES_EtaIntercalibration_Stat185: 1.24934602e-09 + syst_JES_EtaIntercalibration_Stat186: 1.15787596e-17 syst_JES_EtaIntercalibration_Stat187: 0.0 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 @@ -52691,31 +52691,31 @@ bins: syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 syst_JES_EtaIntercalibration_Stat192: 0.0 - syst_JES_EtaIntercalibration_Stat193: 1.2171120794452629e-11 - syst_JES_EtaIntercalibration_Stat194: 1.5957172956072138e-08 - syst_JES_EtaIntercalibration_Stat195: 2.1674426607179254e-07 - syst_JES_EtaIntercalibration_Stat196: 2.1000508773598796e-07 - syst_JES_EtaIntercalibration_Stat197: 9.693873863425292e-08 - syst_JES_EtaIntercalibration_Stat198: 7.805887167228335e-07 - syst_JES_EtaIntercalibration_Stat199: 6.529165088278899e-07 + syst_JES_EtaIntercalibration_Stat193: 1.21711208e-11 + syst_JES_EtaIntercalibration_Stat194: 1.59571730e-08 + syst_JES_EtaIntercalibration_Stat195: 2.16744266e-07 + syst_JES_EtaIntercalibration_Stat196: 2.10005088e-07 + syst_JES_EtaIntercalibration_Stat197: 9.69387386e-08 + syst_JES_EtaIntercalibration_Stat198: 7.80588717e-07 + syst_JES_EtaIntercalibration_Stat199: 6.52916509e-07 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 5.161017154350487e-08 - syst_JES_EtaIntercalibration_Stat201: 1.1578759648597945e-17 + syst_JES_EtaIntercalibration_Stat200: 5.16101715e-08 + syst_JES_EtaIntercalibration_Stat201: 1.15787596e-17 syst_JES_EtaIntercalibration_Stat202: 0.0 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 syst_JES_EtaIntercalibration_Stat207: 0.0 - syst_JES_EtaIntercalibration_Stat208: 1.2161594745344873e-11 - syst_JES_EtaIntercalibration_Stat209: 1.660578896048002e-08 + syst_JES_EtaIntercalibration_Stat208: 1.21615947e-11 + syst_JES_EtaIntercalibration_Stat209: 1.66057890e-08 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 3.2141363925633275e-07 - syst_JES_EtaIntercalibration_Stat211: 6.695465004762552e-07 - syst_JES_EtaIntercalibration_Stat212: 4.926910898321584e-07 - syst_JES_EtaIntercalibration_Stat213: 5.197744203738772e-08 - syst_JES_EtaIntercalibration_Stat214: 1.1578759648597945e-17 + syst_JES_EtaIntercalibration_Stat210: 3.21413639e-07 + syst_JES_EtaIntercalibration_Stat211: 6.69546500e-07 + syst_JES_EtaIntercalibration_Stat212: 4.92691090e-07 + syst_JES_EtaIntercalibration_Stat213: 5.19774420e-08 + syst_JES_EtaIntercalibration_Stat214: 1.15787596e-17 syst_JES_EtaIntercalibration_Stat215: 0.0 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 @@ -52723,11 +52723,11 @@ bins: syst_JES_EtaIntercalibration_Stat219: 0.0 syst_JES_EtaIntercalibration_Stat22: 0.0 syst_JES_EtaIntercalibration_Stat220: 0.0 - syst_JES_EtaIntercalibration_Stat221: 1.216332679615244e-11 - syst_JES_EtaIntercalibration_Stat222: 1.6604498208316925e-08 - syst_JES_EtaIntercalibration_Stat223: 3.3988199422740826e-07 - syst_JES_EtaIntercalibration_Stat224: 1.3329700624920275e-06 - syst_JES_EtaIntercalibration_Stat225: 1.868866278656662e-07 + syst_JES_EtaIntercalibration_Stat221: 1.21633268e-11 + syst_JES_EtaIntercalibration_Stat222: 1.66044982e-08 + syst_JES_EtaIntercalibration_Stat223: 3.39881994e-07 + syst_JES_EtaIntercalibration_Stat224: 1.33297006e-06 + syst_JES_EtaIntercalibration_Stat225: 1.86886628e-07 syst_JES_EtaIntercalibration_Stat226: 0.0 syst_JES_EtaIntercalibration_Stat227: 0.0 syst_JES_EtaIntercalibration_Stat228: 0.0 @@ -52736,291 +52736,291 @@ bins: syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 syst_JES_EtaIntercalibration_Stat232: 0.0 - syst_JES_EtaIntercalibration_Stat233: 1.216332679615244e-11 - syst_JES_EtaIntercalibration_Stat234: 2.3647898574714837e-08 - syst_JES_EtaIntercalibration_Stat235: 1.3992046338902685e-06 - syst_JES_EtaIntercalibration_Stat236: 1.0650638127361195e-09 + syst_JES_EtaIntercalibration_Stat233: 1.21633268e-11 + syst_JES_EtaIntercalibration_Stat234: 2.36478986e-08 + syst_JES_EtaIntercalibration_Stat235: 1.39920463e-06 + syst_JES_EtaIntercalibration_Stat236: 1.06506381e-09 syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 syst_JES_EtaIntercalibration_Stat239: 0.0 - syst_JES_EtaIntercalibration_Stat24: 1.5042861263735698e-23 + syst_JES_EtaIntercalibration_Stat24: 1.50428613e-23 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 syst_JES_EtaIntercalibration_Stat243: 0.0 - syst_JES_EtaIntercalibration_Stat244: 1.216332679615244e-11 - syst_JES_EtaIntercalibration_Stat245: 1.5911551676376507e-08 - syst_JES_EtaIntercalibration_Stat25: 2.9410227587524715e-22 - syst_JES_EtaIntercalibration_Stat26: 6.059579749920317e-12 - syst_JES_EtaIntercalibration_Stat27: 2.021021327753982e-18 - syst_JES_EtaIntercalibration_Stat28: 8.242469108677327e-23 + syst_JES_EtaIntercalibration_Stat244: 1.21633268e-11 + syst_JES_EtaIntercalibration_Stat245: 1.59115517e-08 + syst_JES_EtaIntercalibration_Stat25: 2.94102276e-22 + syst_JES_EtaIntercalibration_Stat26: 6.05957975e-12 + syst_JES_EtaIntercalibration_Stat27: 2.02102133e-18 + syst_JES_EtaIntercalibration_Stat28: 8.24246911e-23 syst_JES_EtaIntercalibration_Stat29: 0.0 - syst_JES_EtaIntercalibration_Stat3: 2.4313017665440054e-23 + syst_JES_EtaIntercalibration_Stat3: 2.43130177e-23 syst_JES_EtaIntercalibration_Stat30: 0.0 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 2.332206412391493e-23 - syst_JES_EtaIntercalibration_Stat36: 2.332206412391493e-23 - syst_JES_EtaIntercalibration_Stat37: 2.128682227858353e-22 - syst_JES_EtaIntercalibration_Stat38: 1.2158996668698775e-11 - syst_JES_EtaIntercalibration_Stat39: 1.215986269419502e-11 - syst_JES_EtaIntercalibration_Stat4: 1.1166534878473953e-17 - syst_JES_EtaIntercalibration_Stat40: 1.3002139516248854e-21 + syst_JES_EtaIntercalibration_Stat35: 2.33220641e-23 + syst_JES_EtaIntercalibration_Stat36: 2.33220641e-23 + syst_JES_EtaIntercalibration_Stat37: 2.12868223e-22 + syst_JES_EtaIntercalibration_Stat38: 1.21589967e-11 + syst_JES_EtaIntercalibration_Stat39: 1.21598627e-11 + syst_JES_EtaIntercalibration_Stat4: 1.11665349e-17 + syst_JES_EtaIntercalibration_Stat40: 1.30021395e-21 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 syst_JES_EtaIntercalibration_Stat44: 0.0 syst_JES_EtaIntercalibration_Stat45: 0.0 - syst_JES_EtaIntercalibration_Stat46: 3.5420471594827765e-23 - syst_JES_EtaIntercalibration_Stat47: 1.6850681736950584e-21 - syst_JES_EtaIntercalibration_Stat48: 6.0942207631396205e-12 - syst_JES_EtaIntercalibration_Stat49: 2.032089429854897e-18 - syst_JES_EtaIntercalibration_Stat5: 1.1169130215154448e-17 - syst_JES_EtaIntercalibration_Stat50: 1.9383679810603557e-22 + syst_JES_EtaIntercalibration_Stat46: 3.54204716e-23 + syst_JES_EtaIntercalibration_Stat47: 1.68506817e-21 + syst_JES_EtaIntercalibration_Stat48: 6.09422076e-12 + syst_JES_EtaIntercalibration_Stat49: 2.03208943e-18 + syst_JES_EtaIntercalibration_Stat5: 1.11691302e-17 + syst_JES_EtaIntercalibration_Stat50: 1.93836798e-22 syst_JES_EtaIntercalibration_Stat51: 0.0 syst_JES_EtaIntercalibration_Stat52: 0.0 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 2.1919102969784144e-23 - syst_JES_EtaIntercalibration_Stat57: 2.332206412391493e-23 - syst_JES_EtaIntercalibration_Stat58: 2.332206412391493e-23 - syst_JES_EtaIntercalibration_Stat59: 2.8158733838145135e-22 + syst_JES_EtaIntercalibration_Stat56: 2.19191030e-23 + syst_JES_EtaIntercalibration_Stat57: 2.33220641e-23 + syst_JES_EtaIntercalibration_Stat58: 2.33220641e-23 + syst_JES_EtaIntercalibration_Stat59: 2.81587338e-22 syst_JES_EtaIntercalibration_Stat6: 0.0 - syst_JES_EtaIntercalibration_Stat60: 1.2159862442033184e-11 - syst_JES_EtaIntercalibration_Stat61: 1.2159861922908865e-11 - syst_JES_EtaIntercalibration_Stat62: 2.736788080944522e-21 - syst_JES_EtaIntercalibration_Stat63: 1.3737486632113605e-23 + syst_JES_EtaIntercalibration_Stat60: 1.21598624e-11 + syst_JES_EtaIntercalibration_Stat61: 1.21598619e-11 + syst_JES_EtaIntercalibration_Stat62: 2.73678808e-21 + syst_JES_EtaIntercalibration_Stat63: 1.37374866e-23 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 7.270054401447076e-23 - syst_JES_EtaIntercalibration_Stat69: 6.114136322521974e-12 + syst_JES_EtaIntercalibration_Stat68: 7.27005440e-23 + syst_JES_EtaIntercalibration_Stat69: 6.11413632e-12 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 6.1321001446250294e-12 - syst_JES_EtaIntercalibration_Stat71: 6.067373946830423e-12 - syst_JES_EtaIntercalibration_Stat72: 2.027253921882182e-18 + syst_JES_EtaIntercalibration_Stat70: 6.13210014e-12 + syst_JES_EtaIntercalibration_Stat71: 6.06737395e-12 + syst_JES_EtaIntercalibration_Stat72: 2.02725392e-18 syst_JES_EtaIntercalibration_Stat73: 0.0 syst_JES_EtaIntercalibration_Stat74: 0.0 syst_JES_EtaIntercalibration_Stat75: 0.0 - syst_JES_EtaIntercalibration_Stat76: 7.519698581060281e-23 - syst_JES_EtaIntercalibration_Stat77: 2.1919102969784144e-23 - syst_JES_EtaIntercalibration_Stat78: 2.1919102969784144e-23 - syst_JES_EtaIntercalibration_Stat79: 2.332206412391493e-23 + syst_JES_EtaIntercalibration_Stat76: 7.51969858e-23 + syst_JES_EtaIntercalibration_Stat77: 2.19191030e-23 + syst_JES_EtaIntercalibration_Stat78: 2.19191030e-23 + syst_JES_EtaIntercalibration_Stat79: 2.33220641e-23 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 2.1503410775967612e-23 - syst_JES_EtaIntercalibration_Stat81: 9.27035900059971e-22 - syst_JES_EtaIntercalibration_Stat82: 1.217112019513439e-11 - syst_JES_EtaIntercalibration_Stat83: 3.4598576435016585e-11 - syst_JES_EtaIntercalibration_Stat84: 3.0631749460323026e-19 - syst_JES_EtaIntercalibration_Stat85: 1.5182915497360842e-23 + syst_JES_EtaIntercalibration_Stat80: 2.15034108e-23 + syst_JES_EtaIntercalibration_Stat81: 9.27035900e-22 + syst_JES_EtaIntercalibration_Stat82: 1.21711202e-11 + syst_JES_EtaIntercalibration_Stat83: 3.45985764e-11 + syst_JES_EtaIntercalibration_Stat84: 3.06317495e-19 + syst_JES_EtaIntercalibration_Stat85: 1.51829155e-23 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 6.535959818572938e-23 + syst_JES_EtaIntercalibration_Stat89: 6.53595982e-23 syst_JES_EtaIntercalibration_Stat9: 0.0 - syst_JES_EtaIntercalibration_Stat90: 6.1156060108226556e-12 - syst_JES_EtaIntercalibration_Stat91: 6.148346322102554e-12 - syst_JES_EtaIntercalibration_Stat92: 9.809303989070784e-18 - syst_JES_EtaIntercalibration_Stat93: 2.0842654010319e-18 + syst_JES_EtaIntercalibration_Stat90: 6.11560601e-12 + syst_JES_EtaIntercalibration_Stat91: 6.14834632e-12 + syst_JES_EtaIntercalibration_Stat92: 9.80930399e-18 + syst_JES_EtaIntercalibration_Stat93: 2.08426540e-18 syst_JES_EtaIntercalibration_Stat94: 0.0 syst_JES_EtaIntercalibration_Stat95: 0.0 - syst_JES_EtaIntercalibration_Stat96: 1.204987746825668e-20 - syst_JES_EtaIntercalibration_Stat97: 7.519698581060281e-23 - syst_JES_EtaIntercalibration_Stat98: 2.1919102969784144e-23 - syst_JES_EtaIntercalibration_Stat99: 2.1919102969784144e-23 - syst_JES_EtaIntercalibration_TotalStat_MJB: 7.597583365781517e-06 - syst_JES_Flavour_Comp: 1.7869848208644636e-05 - syst_JES_Flavour_Response: 5.266715746079335e-06 - syst_JES_Gjet_Generator: 2.013571640145937e-05 - syst_JES_Gjet_OOC: 1.7031202981586475e-05 - syst_JES_Gjet_Purity: 1.3216035364283796e-06 - syst_JES_Gjet_Stat1: 3.5220463866905555e-09 - syst_JES_Gjet_Stat10: 1.66948438988659e-07 - syst_JES_Gjet_Stat11: 1.9693330723877055e-07 - syst_JES_Gjet_Stat12: 6.554287966667319e-07 - syst_JES_Gjet_Stat13: 2.9039159767458834e-06 - syst_JES_Gjet_Stat14: 9.587959428366394e-06 - syst_JES_Gjet_Stat15: 1.494237932860761e-05 - syst_JES_Gjet_Stat2: 2.2257975020203432e-08 - syst_JES_Gjet_Stat3: 2.3140198789120697e-08 - syst_JES_Gjet_Stat4: 2.553042890356596e-08 - syst_JES_Gjet_Stat5: 2.5617031443944642e-08 - syst_JES_Gjet_Stat6: 5.968496005616547e-11 - syst_JES_Gjet_Stat7: 4.150978862244423e-12 - syst_JES_Gjet_Stat8: 2.2724527981896565e-08 - syst_JES_Gjet_Stat9: 4.5102629709918246e-08 - syst_JES_Gjet_Veto: 1.730270137868651e-05 - syst_JES_Gjet_dPhi: 6.71673949974986e-07 - syst_JES_LArESZee: 2.9203552866046968e-05 - syst_JES_LArEsmear: 1.2255220969040093e-06 - syst_JES_LAr_JVT: 1.7531522324088117e-06 - syst_JES_MJB_Alpha: 7.703295966662582e-08 - syst_JES_MJB_Asym: 4.953238006597301e-06 - syst_JES_MJB_Beta: 1.1694807052705059e-07 - syst_JES_MJB_Fragmentation: 1.7809291640882296e-06 - syst_JES_MJB_Stat1: 2.6015403129684536e-12 - syst_JES_MJB_Stat10: 2.805922308261581e-08 - syst_JES_MJB_Stat11: 3.648952161922653e-08 + syst_JES_EtaIntercalibration_Stat96: 1.20498775e-20 + syst_JES_EtaIntercalibration_Stat97: 7.51969858e-23 + syst_JES_EtaIntercalibration_Stat98: 2.19191030e-23 + syst_JES_EtaIntercalibration_Stat99: 2.19191030e-23 + syst_JES_EtaIntercalibration_TotalStat_MJB: 7.59758337e-06 + syst_JES_Flavour_Comp: 1.78698482e-05 + syst_JES_Flavour_Response: 5.26671575e-06 + syst_JES_Gjet_Generator: 2.01357164e-05 + syst_JES_Gjet_OOC: 1.70312030e-05 + syst_JES_Gjet_Purity: 1.32160354e-06 + syst_JES_Gjet_Stat1: 3.52204639e-09 + syst_JES_Gjet_Stat10: 1.66948439e-07 + syst_JES_Gjet_Stat11: 1.96933307e-07 + syst_JES_Gjet_Stat12: 6.55428797e-07 + syst_JES_Gjet_Stat13: 2.90391598e-06 + syst_JES_Gjet_Stat14: 9.58795943e-06 + syst_JES_Gjet_Stat15: 1.49423793e-05 + syst_JES_Gjet_Stat2: 2.22579750e-08 + syst_JES_Gjet_Stat3: 2.31401988e-08 + syst_JES_Gjet_Stat4: 2.55304289e-08 + syst_JES_Gjet_Stat5: 2.56170314e-08 + syst_JES_Gjet_Stat6: 5.96849601e-11 + syst_JES_Gjet_Stat7: 4.15097886e-12 + syst_JES_Gjet_Stat8: 2.27245280e-08 + syst_JES_Gjet_Stat9: 4.51026297e-08 + syst_JES_Gjet_Veto: 1.73027014e-05 + syst_JES_Gjet_dPhi: 6.71673950e-07 + syst_JES_LArESZee: 2.92035529e-05 + syst_JES_LArEsmear: 1.22552210e-06 + syst_JES_LAr_JVT: 1.75315223e-06 + syst_JES_MJB_Alpha: 7.70329597e-08 + syst_JES_MJB_Asym: 4.95323801e-06 + syst_JES_MJB_Beta: 1.16948071e-07 + syst_JES_MJB_Fragmentation: 1.78092916e-06 + syst_JES_MJB_Stat1: 2.60154031e-12 + syst_JES_MJB_Stat10: 2.80592231e-08 + syst_JES_MJB_Stat11: 3.64895216e-08 syst_JES_MJB_Stat12: 0.0 syst_JES_MJB_Stat13: 0.0 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 - syst_JES_MJB_Stat16: 9.73585758934466e-10 - syst_JES_MJB_Stat2: 4.601820373504381e-10 - syst_JES_MJB_Stat3: 5.932867160993915e-09 - syst_JES_MJB_Stat4: 6.021843135618861e-10 - syst_JES_MJB_Stat5: 2.7222233707027057e-09 - syst_JES_MJB_Stat6: 1.6924369316166557e-08 - syst_JES_MJB_Stat7: 1.949984027498687e-08 - syst_JES_MJB_Stat8: 1.8055031674023727e-08 - syst_JES_MJB_Stat9: 3.1968053314989324e-08 - syst_JES_MJB_Threshold: 2.8674934611956836e-06 - syst_JES_Pileup_MuOffset: 4.5343855978511575e-06 - syst_JES_Pileup_NPVOffset: 2.793507606934336e-06 - syst_JES_Pileup_Pt_term: 3.1214920711095834e-06 - syst_JES_Pileup_Rho_topology: 4.13454749640151e-06 - syst_JES_PunchThrough_MC15: 5.2890355217184916e-06 + syst_JES_MJB_Stat16: 9.73585759e-10 + syst_JES_MJB_Stat2: 4.60182037e-10 + syst_JES_MJB_Stat3: 5.93286716e-09 + syst_JES_MJB_Stat4: 6.02184314e-10 + syst_JES_MJB_Stat5: 2.72222337e-09 + syst_JES_MJB_Stat6: 1.69243693e-08 + syst_JES_MJB_Stat7: 1.94998403e-08 + syst_JES_MJB_Stat8: 1.80550317e-08 + syst_JES_MJB_Stat9: 3.19680533e-08 + syst_JES_MJB_Threshold: 2.86749346e-06 + syst_JES_Pileup_MuOffset: 4.53438560e-06 + syst_JES_Pileup_NPVOffset: 2.79350761e-06 + syst_JES_Pileup_Pt_term: 3.12149207e-06 + syst_JES_Pileup_Rho_topology: 4.13454750e-06 + syst_JES_PunchThrough_MC15: 5.28903552e-06 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 7.411243620337953e-06 - syst_JES_Zjet_MuScale: 1.2739682700915279e-08 - syst_JES_Zjet_MuSmearID: 3.787020513213521e-08 - syst_JES_Zjet_MuSmearMS: 1.899060049076911e-06 - syst_JES_Zjet_OOC: 3.5369498893820927e-06 - syst_JES_Zjet_Stat1: 1.2687272165435508e-09 - syst_JES_Zjet_Stat10: 1.574792221051082e-07 - syst_JES_Zjet_Stat11: 1.0476518156223231e-07 - syst_JES_Zjet_Stat12: 8.002437175635932e-07 - syst_JES_Zjet_Stat13: 1.9437933712203053e-06 - syst_JES_Zjet_Stat2: 9.568141512366704e-11 - syst_JES_Zjet_Stat3: 5.888972745734183e-08 - syst_JES_Zjet_Stat4: 1.0052579308316846e-21 - syst_JES_Zjet_Stat5: 1.5724600948831738e-21 - syst_JES_Zjet_Stat6: 5.5798021266278185e-08 - syst_JES_Zjet_Stat7: 3.6619804324299715e-17 - syst_JES_Zjet_Stat8: 2.6709486610565916e-14 - syst_JES_Zjet_Stat9: 5.009871618115578e-09 - syst_JES_Zjet_Veto: 3.1674413539637946e-08 - syst_JES_Zjet_dPhi: 2.8843324180258765e-08 - syst_PRW: 5.007e-06 - syst_Unfolding_bias: 1.3398e-06 - syst_cleaning: 2.2083647796503186e-06 - syst_lumi: 6.846e-06 -- stat: 2.084e-05 + syst_JES_Zjet_MC: 7.41124362e-06 + syst_JES_Zjet_MuScale: 1.27396827e-08 + syst_JES_Zjet_MuSmearID: 3.78702051e-08 + syst_JES_Zjet_MuSmearMS: 1.89906005e-06 + syst_JES_Zjet_OOC: 3.53694989e-06 + syst_JES_Zjet_Stat1: 1.26872722e-09 + syst_JES_Zjet_Stat10: 1.57479222e-07 + syst_JES_Zjet_Stat11: 1.04765182e-07 + syst_JES_Zjet_Stat12: 8.00243718e-07 + syst_JES_Zjet_Stat13: 1.94379337e-06 + syst_JES_Zjet_Stat2: 9.56814151e-11 + syst_JES_Zjet_Stat3: 5.88897275e-08 + syst_JES_Zjet_Stat4: 1.00525793e-21 + syst_JES_Zjet_Stat5: 1.57246009e-21 + syst_JES_Zjet_Stat6: 5.57980213e-08 + syst_JES_Zjet_Stat7: 3.66198043e-17 + syst_JES_Zjet_Stat8: 2.67094866e-14 + syst_JES_Zjet_Stat9: 5.00987162e-09 + syst_JES_Zjet_Veto: 3.16744135e-08 + syst_JES_Zjet_dPhi: 2.88433242e-08 + syst_PRW: 5.00700000e-06 + syst_Unfolding_bias: 1.33980000e-06 + syst_cleaning: 2.20836478e-06 + syst_lumi: 6.84600000e-06 +- stat: 2.08400000e-05 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 3.376436694208852e-06 - syst_JER_NP1: 5.497805844834829e-06 - syst_JER_NP2: 2.026499444855844e-06 - syst_JER_NP3: 1.1325351765195674e-09 - syst_JER_NP4: 1.049338996218773e-09 - syst_JER_NP5: 6.290220859324019e-16 - syst_JER_NP6: 2.4084588433269937e-18 - syst_JER_NP7: 2.6062487889685433e-21 - syst_JER_NP8: 1.2438713800067915e-07 - syst_JES_EtaIntercalibration_Modelling: 1.4124939672437542e-05 - syst_JES_EtaIntercalibration_NonClosure: 4.136934046791174e-08 + syst_JER_NP0: 3.37643669e-06 + syst_JER_NP1: 5.49780584e-06 + syst_JER_NP2: 2.02649944e-06 + syst_JER_NP3: 1.13253518e-09 + syst_JER_NP4: 1.04933900e-09 + syst_JER_NP5: 6.29022086e-16 + syst_JER_NP6: 2.40845884e-18 + syst_JER_NP7: 2.60624879e-21 + syst_JER_NP8: 1.24387138e-07 + syst_JES_EtaIntercalibration_Modelling: 1.41249397e-05 + syst_JES_EtaIntercalibration_NonClosure: 4.13693405e-08 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 5.169305635189315e-24 + syst_JES_EtaIntercalibration_Stat100: 5.16930564e-24 syst_JES_EtaIntercalibration_Stat101: 0.0 - syst_JES_EtaIntercalibration_Stat102: 4.9184416556466335e-21 - syst_JES_EtaIntercalibration_Stat103: 5.5867296495084295e-12 - syst_JES_EtaIntercalibration_Stat104: 6.221793057364975e-12 - syst_JES_EtaIntercalibration_Stat105: 2.2071458379545294e-19 - syst_JES_EtaIntercalibration_Stat106: 1.6092492038214591e-22 + syst_JES_EtaIntercalibration_Stat102: 4.91844166e-21 + syst_JES_EtaIntercalibration_Stat103: 5.58672965e-12 + syst_JES_EtaIntercalibration_Stat104: 6.22179306e-12 + syst_JES_EtaIntercalibration_Stat105: 2.20714584e-19 + syst_JES_EtaIntercalibration_Stat106: 1.60924920e-22 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 3.860956714339077e-21 + syst_JES_EtaIntercalibration_Stat109: 3.86095671e-21 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 9.273904078171454e-12 - syst_JES_EtaIntercalibration_Stat111: 9.304852381542695e-12 - syst_JES_EtaIntercalibration_Stat112: 9.783708887574283e-13 - syst_JES_EtaIntercalibration_Stat113: 6.382032122098728e-19 - syst_JES_EtaIntercalibration_Stat114: 6.693510345849926e-22 + syst_JES_EtaIntercalibration_Stat110: 9.27390408e-12 + syst_JES_EtaIntercalibration_Stat111: 9.30485238e-12 + syst_JES_EtaIntercalibration_Stat112: 9.78370889e-13 + syst_JES_EtaIntercalibration_Stat113: 6.38203212e-19 + syst_JES_EtaIntercalibration_Stat114: 6.69351035e-22 syst_JES_EtaIntercalibration_Stat115: 0.0 - syst_JES_EtaIntercalibration_Stat116: 1.13085597226172e-22 - syst_JES_EtaIntercalibration_Stat117: 1.3570618077302153e-21 - syst_JES_EtaIntercalibration_Stat118: 5.169305635189315e-24 - syst_JES_EtaIntercalibration_Stat119: 5.169305635189315e-24 + syst_JES_EtaIntercalibration_Stat116: 1.13085597e-22 + syst_JES_EtaIntercalibration_Stat117: 1.35706181e-21 + syst_JES_EtaIntercalibration_Stat118: 5.16930564e-24 + syst_JES_EtaIntercalibration_Stat119: 5.16930564e-24 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 5.169305635189315e-24 - syst_JES_EtaIntercalibration_Stat121: 3.4091956045378215e-23 - syst_JES_EtaIntercalibration_Stat122: 5.5858637428107176e-12 - syst_JES_EtaIntercalibration_Stat123: 2.3491784124052283e-11 - syst_JES_EtaIntercalibration_Stat124: 1.3586496347476784e-11 - syst_JES_EtaIntercalibration_Stat125: 5.168033354188032e-16 - syst_JES_EtaIntercalibration_Stat126: 1.589907151377086e-20 + syst_JES_EtaIntercalibration_Stat120: 5.16930564e-24 + syst_JES_EtaIntercalibration_Stat121: 3.40919560e-23 + syst_JES_EtaIntercalibration_Stat122: 5.58586374e-12 + syst_JES_EtaIntercalibration_Stat123: 2.34917841e-11 + syst_JES_EtaIntercalibration_Stat124: 1.35864963e-11 + syst_JES_EtaIntercalibration_Stat125: 5.16803335e-16 + syst_JES_EtaIntercalibration_Stat126: 1.58990715e-20 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 2.4917453220584164e-16 - syst_JES_EtaIntercalibration_Stat129: 3.749163206636916e-10 + syst_JES_EtaIntercalibration_Stat128: 2.49174532e-16 + syst_JES_EtaIntercalibration_Stat129: 3.74916321e-10 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 1.2345396353297045e-10 - syst_JES_EtaIntercalibration_Stat131: 5.2544069836661876e-11 - syst_JES_EtaIntercalibration_Stat132: 9.663764688267088e-13 - syst_JES_EtaIntercalibration_Stat133: 2.6478710364507934e-19 + syst_JES_EtaIntercalibration_Stat130: 1.23453964e-10 + syst_JES_EtaIntercalibration_Stat131: 5.25440698e-11 + syst_JES_EtaIntercalibration_Stat132: 9.66376469e-13 + syst_JES_EtaIntercalibration_Stat133: 2.64787104e-19 syst_JES_EtaIntercalibration_Stat134: 0.0 - syst_JES_EtaIntercalibration_Stat135: 1.13085597226172e-22 - syst_JES_EtaIntercalibration_Stat136: 1.13085597226172e-22 - syst_JES_EtaIntercalibration_Stat137: 5.169305635189315e-24 - syst_JES_EtaIntercalibration_Stat138: 5.169305635189315e-24 - syst_JES_EtaIntercalibration_Stat139: 5.169305635189315e-24 + syst_JES_EtaIntercalibration_Stat135: 1.13085597e-22 + syst_JES_EtaIntercalibration_Stat136: 1.13085597e-22 + syst_JES_EtaIntercalibration_Stat137: 5.16930564e-24 + syst_JES_EtaIntercalibration_Stat138: 5.16930564e-24 + syst_JES_EtaIntercalibration_Stat139: 5.16930564e-24 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 1.195634672464796e-24 - syst_JES_EtaIntercalibration_Stat141: 5.5839117678447435e-12 - syst_JES_EtaIntercalibration_Stat142: 5.949352082562269e-11 - syst_JES_EtaIntercalibration_Stat143: 3.0006495575958216e-09 - syst_JES_EtaIntercalibration_Stat144: 3.987483176140057e-10 - syst_JES_EtaIntercalibration_Stat145: 5.627583220841785e-20 - syst_JES_EtaIntercalibration_Stat146: 6.677011321793334e-12 - syst_JES_EtaIntercalibration_Stat147: 3.748585482552052e-10 - syst_JES_EtaIntercalibration_Stat148: 1.2904270252517188e-10 - syst_JES_EtaIntercalibration_Stat149: 5.226110216977824e-11 + syst_JES_EtaIntercalibration_Stat140: 1.19563467e-24 + syst_JES_EtaIntercalibration_Stat141: 5.58391177e-12 + syst_JES_EtaIntercalibration_Stat142: 5.94935208e-11 + syst_JES_EtaIntercalibration_Stat143: 3.00064956e-09 + syst_JES_EtaIntercalibration_Stat144: 3.98748318e-10 + syst_JES_EtaIntercalibration_Stat145: 5.62758322e-20 + syst_JES_EtaIntercalibration_Stat146: 6.67701132e-12 + syst_JES_EtaIntercalibration_Stat147: 3.74858548e-10 + syst_JES_EtaIntercalibration_Stat148: 1.29042703e-10 + syst_JES_EtaIntercalibration_Stat149: 5.22611022e-11 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 9.689803061133922e-13 - syst_JES_EtaIntercalibration_Stat151: 1.429584790936406e-18 + syst_JES_EtaIntercalibration_Stat150: 9.68980306e-13 + syst_JES_EtaIntercalibration_Stat151: 1.42958479e-18 syst_JES_EtaIntercalibration_Stat152: 0.0 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 5.169305635189315e-24 + syst_JES_EtaIntercalibration_Stat156: 5.16930564e-24 syst_JES_EtaIntercalibration_Stat157: 0.0 syst_JES_EtaIntercalibration_Stat158: 0.0 - syst_JES_EtaIntercalibration_Stat159: 5.549009334347439e-12 - syst_JES_EtaIntercalibration_Stat16: 5.584131803601562e-12 - syst_JES_EtaIntercalibration_Stat160: 5.677057146471224e-10 - syst_JES_EtaIntercalibration_Stat161: 3.005529039536966e-09 - syst_JES_EtaIntercalibration_Stat162: 6.8003767542688395e-12 - syst_JES_EtaIntercalibration_Stat163: 3.54659851230725e-17 - syst_JES_EtaIntercalibration_Stat164: 9.276372038694262e-12 - syst_JES_EtaIntercalibration_Stat165: 8.821256157005078e-10 - syst_JES_EtaIntercalibration_Stat166: 3.795110538574601e-09 - syst_JES_EtaIntercalibration_Stat167: 3.7496508327442977e-10 - syst_JES_EtaIntercalibration_Stat168: 1.0583175888172699e-12 - syst_JES_EtaIntercalibration_Stat169: 1.429584790936406e-18 - syst_JES_EtaIntercalibration_Stat17: 1.4284875266276392e-22 + syst_JES_EtaIntercalibration_Stat159: 5.54900933e-12 + syst_JES_EtaIntercalibration_Stat16: 5.58413180e-12 + syst_JES_EtaIntercalibration_Stat160: 5.67705715e-10 + syst_JES_EtaIntercalibration_Stat161: 3.00552904e-09 + syst_JES_EtaIntercalibration_Stat162: 6.80037675e-12 + syst_JES_EtaIntercalibration_Stat163: 3.54659851e-17 + syst_JES_EtaIntercalibration_Stat164: 9.27637204e-12 + syst_JES_EtaIntercalibration_Stat165: 8.82125616e-10 + syst_JES_EtaIntercalibration_Stat166: 3.79511054e-09 + syst_JES_EtaIntercalibration_Stat167: 3.74965083e-10 + syst_JES_EtaIntercalibration_Stat168: 1.05831759e-12 + syst_JES_EtaIntercalibration_Stat169: 1.42958479e-18 + syst_JES_EtaIntercalibration_Stat17: 1.42848753e-22 syst_JES_EtaIntercalibration_Stat170: 0.0 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 syst_JES_EtaIntercalibration_Stat175: 0.0 - syst_JES_EtaIntercalibration_Stat176: 1.7675578491240393e-19 - syst_JES_EtaIntercalibration_Stat177: 1.244027206563727e-11 - syst_JES_EtaIntercalibration_Stat178: 6.685334786493493e-09 - syst_JES_EtaIntercalibration_Stat179: 9.501009936185732e-09 - syst_JES_EtaIntercalibration_Stat18: 8.750067242598768e-25 - syst_JES_EtaIntercalibration_Stat180: 2.933893414475038e-09 - syst_JES_EtaIntercalibration_Stat181: 1.472170738331665e-14 - syst_JES_EtaIntercalibration_Stat182: 6.0110006654466444e-09 - syst_JES_EtaIntercalibration_Stat183: 1.700264999933834e-07 - syst_JES_EtaIntercalibration_Stat184: 5.535171609805788e-08 - syst_JES_EtaIntercalibration_Stat185: 2.562533259784154e-10 - syst_JES_EtaIntercalibration_Stat186: 1.4298079416481081e-18 + syst_JES_EtaIntercalibration_Stat176: 1.76755785e-19 + syst_JES_EtaIntercalibration_Stat177: 1.24402721e-11 + syst_JES_EtaIntercalibration_Stat178: 6.68533479e-09 + syst_JES_EtaIntercalibration_Stat179: 9.50100994e-09 + syst_JES_EtaIntercalibration_Stat18: 8.75006724e-25 + syst_JES_EtaIntercalibration_Stat180: 2.93389341e-09 + syst_JES_EtaIntercalibration_Stat181: 1.47217074e-14 + syst_JES_EtaIntercalibration_Stat182: 6.01100067e-09 + syst_JES_EtaIntercalibration_Stat183: 1.70026500e-07 + syst_JES_EtaIntercalibration_Stat184: 5.53517161e-08 + syst_JES_EtaIntercalibration_Stat185: 2.56253326e-10 + syst_JES_EtaIntercalibration_Stat186: 1.42980794e-18 syst_JES_EtaIntercalibration_Stat187: 0.0 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 @@ -53028,31 +53028,31 @@ bins: syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 syst_JES_EtaIntercalibration_Stat192: 0.0 - syst_JES_EtaIntercalibration_Stat193: 5.585863829390156e-12 - syst_JES_EtaIntercalibration_Stat194: 2.9648147003649315e-09 - syst_JES_EtaIntercalibration_Stat195: 1.0264580702590828e-07 - syst_JES_EtaIntercalibration_Stat196: 6.815975498782255e-08 - syst_JES_EtaIntercalibration_Stat197: 1.7227787873084576e-08 - syst_JES_EtaIntercalibration_Stat198: 3.078103433934604e-07 - syst_JES_EtaIntercalibration_Stat199: 3.003073936818739e-07 + syst_JES_EtaIntercalibration_Stat193: 5.58586383e-12 + syst_JES_EtaIntercalibration_Stat194: 2.96481470e-09 + syst_JES_EtaIntercalibration_Stat195: 1.02645807e-07 + syst_JES_EtaIntercalibration_Stat196: 6.81597550e-08 + syst_JES_EtaIntercalibration_Stat197: 1.72277879e-08 + syst_JES_EtaIntercalibration_Stat198: 3.07810343e-07 + syst_JES_EtaIntercalibration_Stat199: 3.00307394e-07 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 1.9880528908645766e-08 - syst_JES_EtaIntercalibration_Stat201: 1.4298079416481081e-18 + syst_JES_EtaIntercalibration_Stat200: 1.98805289e-08 + syst_JES_EtaIntercalibration_Stat201: 1.42980794e-18 syst_JES_EtaIntercalibration_Stat202: 0.0 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 syst_JES_EtaIntercalibration_Stat207: 0.0 - syst_JES_EtaIntercalibration_Stat208: 5.58413180360206e-12 - syst_JES_EtaIntercalibration_Stat209: 3.6592229707958494e-09 + syst_JES_EtaIntercalibration_Stat208: 5.58413180e-12 + syst_JES_EtaIntercalibration_Stat209: 3.65922297e-09 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 1.454554292558377e-07 - syst_JES_EtaIntercalibration_Stat211: 2.0766731400728425e-07 - syst_JES_EtaIntercalibration_Stat212: 2.519476731386897e-07 - syst_JES_EtaIntercalibration_Stat213: 1.9891552581937893e-08 - syst_JES_EtaIntercalibration_Stat214: 1.4298079416481081e-18 + syst_JES_EtaIntercalibration_Stat210: 1.45455429e-07 + syst_JES_EtaIntercalibration_Stat211: 2.07667314e-07 + syst_JES_EtaIntercalibration_Stat212: 2.51947673e-07 + syst_JES_EtaIntercalibration_Stat213: 1.98915526e-08 + syst_JES_EtaIntercalibration_Stat214: 1.42980794e-18 syst_JES_EtaIntercalibration_Stat215: 0.0 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 @@ -53060,11 +53060,11 @@ bins: syst_JES_EtaIntercalibration_Stat219: 0.0 syst_JES_EtaIntercalibration_Stat22: 0.0 syst_JES_EtaIntercalibration_Stat220: 0.0 - syst_JES_EtaIntercalibration_Stat221: 5.584997829005845e-12 - syst_JES_EtaIntercalibration_Stat222: 3.6574213251962097e-09 - syst_JES_EtaIntercalibration_Stat223: 1.2105291776739627e-07 - syst_JES_EtaIntercalibration_Stat224: 5.712882000356738e-07 - syst_JES_EtaIntercalibration_Stat225: 1.1096654033987003e-07 + syst_JES_EtaIntercalibration_Stat221: 5.58499783e-12 + syst_JES_EtaIntercalibration_Stat222: 3.65742133e-09 + syst_JES_EtaIntercalibration_Stat223: 1.21052918e-07 + syst_JES_EtaIntercalibration_Stat224: 5.71288200e-07 + syst_JES_EtaIntercalibration_Stat225: 1.10966540e-07 syst_JES_EtaIntercalibration_Stat226: 0.0 syst_JES_EtaIntercalibration_Stat227: 0.0 syst_JES_EtaIntercalibration_Stat228: 0.0 @@ -53073,192 +53073,192 @@ bins: syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 syst_JES_EtaIntercalibration_Stat232: 0.0 - syst_JES_EtaIntercalibration_Stat233: 5.584997829005845e-12 - syst_JES_EtaIntercalibration_Stat234: 7.496977841103709e-09 - syst_JES_EtaIntercalibration_Stat235: 5.786090454702554e-07 - syst_JES_EtaIntercalibration_Stat236: 2.250821154045785e-10 + syst_JES_EtaIntercalibration_Stat233: 5.58499783e-12 + syst_JES_EtaIntercalibration_Stat234: 7.49697784e-09 + syst_JES_EtaIntercalibration_Stat235: 5.78609045e-07 + syst_JES_EtaIntercalibration_Stat236: 2.25082115e-10 syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 syst_JES_EtaIntercalibration_Stat239: 0.0 - syst_JES_EtaIntercalibration_Stat24: 3.338614534129389e-24 + syst_JES_EtaIntercalibration_Stat24: 3.33861453e-24 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 syst_JES_EtaIntercalibration_Stat243: 0.0 - syst_JES_EtaIntercalibration_Stat244: 5.584997829005845e-12 - syst_JES_EtaIntercalibration_Stat245: 3.0261792197422814e-09 - syst_JES_EtaIntercalibration_Stat25: 5.545608319201781e-23 - syst_JES_EtaIntercalibration_Stat26: 9.5687146857633e-13 - syst_JES_EtaIntercalibration_Stat27: 2.639996285100985e-19 - syst_JES_EtaIntercalibration_Stat28: 1.5629412197200507e-23 + syst_JES_EtaIntercalibration_Stat244: 5.58499783e-12 + syst_JES_EtaIntercalibration_Stat245: 3.02617922e-09 + syst_JES_EtaIntercalibration_Stat25: 5.54560832e-23 + syst_JES_EtaIntercalibration_Stat26: 9.56871469e-13 + syst_JES_EtaIntercalibration_Stat27: 2.63999629e-19 + syst_JES_EtaIntercalibration_Stat28: 1.56294122e-23 syst_JES_EtaIntercalibration_Stat29: 0.0 - syst_JES_EtaIntercalibration_Stat3: 4.784337885225081e-24 + syst_JES_EtaIntercalibration_Stat3: 4.78433789e-24 syst_JES_EtaIntercalibration_Stat30: 0.0 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 2.3659814031390863e-25 - syst_JES_EtaIntercalibration_Stat36: 2.3659814031390863e-25 - syst_JES_EtaIntercalibration_Stat37: 3.910721072577281e-23 - syst_JES_EtaIntercalibration_Stat38: 5.5841318035262546e-12 - syst_JES_EtaIntercalibration_Stat39: 5.584131803548829e-12 - syst_JES_EtaIntercalibration_Stat4: 1.373516992750159e-18 - syst_JES_EtaIntercalibration_Stat40: 2.2781710575591115e-22 + syst_JES_EtaIntercalibration_Stat35: 2.36598140e-25 + syst_JES_EtaIntercalibration_Stat36: 2.36598140e-25 + syst_JES_EtaIntercalibration_Stat37: 3.91072107e-23 + syst_JES_EtaIntercalibration_Stat38: 5.58413180e-12 + syst_JES_EtaIntercalibration_Stat39: 5.58413180e-12 + syst_JES_EtaIntercalibration_Stat4: 1.37351699e-18 + syst_JES_EtaIntercalibration_Stat40: 2.27817106e-22 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 syst_JES_EtaIntercalibration_Stat44: 0.0 syst_JES_EtaIntercalibration_Stat45: 0.0 - syst_JES_EtaIntercalibration_Stat46: 7.298899420460594e-24 - syst_JES_EtaIntercalibration_Stat47: 2.8039448550212254e-22 - syst_JES_EtaIntercalibration_Stat48: 9.617212104245731e-13 - syst_JES_EtaIntercalibration_Stat49: 2.6625201323834157e-19 - syst_JES_EtaIntercalibration_Stat5: 1.3743824425632024e-18 - syst_JES_EtaIntercalibration_Stat50: 3.5200894544741335e-23 + syst_JES_EtaIntercalibration_Stat46: 7.29889942e-24 + syst_JES_EtaIntercalibration_Stat47: 2.80394486e-22 + syst_JES_EtaIntercalibration_Stat48: 9.61721210e-13 + syst_JES_EtaIntercalibration_Stat49: 2.66252013e-19 + syst_JES_EtaIntercalibration_Stat5: 1.37438244e-18 + syst_JES_EtaIntercalibration_Stat50: 3.52008945e-23 syst_JES_EtaIntercalibration_Stat51: 0.0 syst_JES_EtaIntercalibration_Stat52: 0.0 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 5.169305635189315e-24 - syst_JES_EtaIntercalibration_Stat57: 2.3659814031390863e-25 - syst_JES_EtaIntercalibration_Stat58: 2.3659814031390863e-25 - syst_JES_EtaIntercalibration_Stat59: 5.2568040357236066e-23 + syst_JES_EtaIntercalibration_Stat56: 5.16930564e-24 + syst_JES_EtaIntercalibration_Stat57: 2.36598140e-25 + syst_JES_EtaIntercalibration_Stat58: 2.36598140e-25 + syst_JES_EtaIntercalibration_Stat59: 5.25680404e-23 syst_JES_EtaIntercalibration_Stat6: 0.0 - syst_JES_EtaIntercalibration_Stat60: 5.584131776232771e-12 - syst_JES_EtaIntercalibration_Stat61: 5.584131702363698e-12 - syst_JES_EtaIntercalibration_Stat62: 4.307301939729789e-22 - syst_JES_EtaIntercalibration_Stat63: 2.8651290039368213e-24 + syst_JES_EtaIntercalibration_Stat60: 5.58413178e-12 + syst_JES_EtaIntercalibration_Stat61: 5.58413170e-12 + syst_JES_EtaIntercalibration_Stat62: 4.30730194e-22 + syst_JES_EtaIntercalibration_Stat63: 2.86512900e-24 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 1.1280463244033908e-23 - syst_JES_EtaIntercalibration_Stat69: 9.644055627013369e-13 + syst_JES_EtaIntercalibration_Stat68: 1.12804632e-23 + syst_JES_EtaIntercalibration_Stat69: 9.64405563e-13 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 9.669791394674912e-13 - syst_JES_EtaIntercalibration_Stat71: 9.57910694417676e-13 - syst_JES_EtaIntercalibration_Stat72: 2.655947383653183e-19 + syst_JES_EtaIntercalibration_Stat70: 9.66979139e-13 + syst_JES_EtaIntercalibration_Stat71: 9.57910694e-13 + syst_JES_EtaIntercalibration_Stat72: 2.65594738e-19 syst_JES_EtaIntercalibration_Stat73: 0.0 syst_JES_EtaIntercalibration_Stat74: 0.0 syst_JES_EtaIntercalibration_Stat75: 0.0 - syst_JES_EtaIntercalibration_Stat76: 1.5692380316574028e-23 - syst_JES_EtaIntercalibration_Stat77: 5.169305635189315e-24 - syst_JES_EtaIntercalibration_Stat78: 5.169305635189315e-24 - syst_JES_EtaIntercalibration_Stat79: 2.3659814031390863e-25 + syst_JES_EtaIntercalibration_Stat76: 1.56923803e-23 + syst_JES_EtaIntercalibration_Stat77: 5.16930564e-24 + syst_JES_EtaIntercalibration_Stat78: 5.16930564e-24 + syst_JES_EtaIntercalibration_Stat79: 2.36598140e-25 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 1.0268463212672088e-25 - syst_JES_EtaIntercalibration_Stat81: 1.5415436257206604e-22 - syst_JES_EtaIntercalibration_Stat82: 5.585863745405907e-12 - syst_JES_EtaIntercalibration_Stat83: 6.109808659916885e-12 - syst_JES_EtaIntercalibration_Stat84: 3.938515127240214e-20 - syst_JES_EtaIntercalibration_Stat85: 3.2564261514734212e-24 + syst_JES_EtaIntercalibration_Stat80: 1.02684632e-25 + syst_JES_EtaIntercalibration_Stat81: 1.54154363e-22 + syst_JES_EtaIntercalibration_Stat82: 5.58586375e-12 + syst_JES_EtaIntercalibration_Stat83: 6.10980866e-12 + syst_JES_EtaIntercalibration_Stat84: 3.93851513e-20 + syst_JES_EtaIntercalibration_Stat85: 3.25642615e-24 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 7.649344726837719e-24 + syst_JES_EtaIntercalibration_Stat89: 7.64934473e-24 syst_JES_EtaIntercalibration_Stat9: 0.0 - syst_JES_EtaIntercalibration_Stat90: 9.646366687122378e-13 - syst_JES_EtaIntercalibration_Stat91: 9.691207725081946e-13 - syst_JES_EtaIntercalibration_Stat92: 1.3394428421922303e-18 - syst_JES_EtaIntercalibration_Stat93: 2.7232344565240797e-19 + syst_JES_EtaIntercalibration_Stat90: 9.64636669e-13 + syst_JES_EtaIntercalibration_Stat91: 9.69120773e-13 + syst_JES_EtaIntercalibration_Stat92: 1.33944284e-18 + syst_JES_EtaIntercalibration_Stat93: 2.72323446e-19 syst_JES_EtaIntercalibration_Stat94: 0.0 syst_JES_EtaIntercalibration_Stat95: 0.0 - syst_JES_EtaIntercalibration_Stat96: 1.3570618077302153e-21 - syst_JES_EtaIntercalibration_Stat97: 1.5692380316574028e-23 - syst_JES_EtaIntercalibration_Stat98: 5.169305635189315e-24 - syst_JES_EtaIntercalibration_Stat99: 5.169305635189315e-24 - syst_JES_EtaIntercalibration_TotalStat_MJB: 3.3791179322420814e-06 - syst_JES_Flavour_Comp: 7.247715691857677e-06 - syst_JES_Flavour_Response: 2.32058677924356e-06 - syst_JES_Gjet_Generator: 8.115039063368704e-06 - syst_JES_Gjet_OOC: 6.880352516404955e-06 - syst_JES_Gjet_Purity: 3.7081201005361195e-07 - syst_JES_Gjet_Stat1: 1.2789610265758688e-09 - syst_JES_Gjet_Stat10: 6.395401429837537e-08 - syst_JES_Gjet_Stat11: 7.521071117201326e-08 - syst_JES_Gjet_Stat12: 2.5017415434053134e-07 - syst_JES_Gjet_Stat13: 1.1925062347845399e-06 - syst_JES_Gjet_Stat14: 3.863832691771216e-06 - syst_JES_Gjet_Stat15: 6.341370888853608e-06 - syst_JES_Gjet_Stat2: 6.993981535577571e-09 - syst_JES_Gjet_Stat3: 7.31964671278618e-09 - syst_JES_Gjet_Stat4: 7.912874114378564e-09 - syst_JES_Gjet_Stat5: 7.914606165186183e-09 - syst_JES_Gjet_Stat6: 7.348042462724503e-12 - syst_JES_Gjet_Stat7: 4.804426203895217e-13 - syst_JES_Gjet_Stat8: 7.3546216082134374e-09 - syst_JES_Gjet_Stat9: 2.5227386918783327e-08 - syst_JES_Gjet_Veto: 7.006671891847084e-06 - syst_JES_Gjet_dPhi: 1.9547563297761693e-07 - syst_JES_LArESZee: 1.172243161634991e-05 - syst_JES_LArEsmear: 3.454927860317781e-07 - syst_JES_LAr_JVT: 5.01185025714057e-07 - syst_JES_MJB_Alpha: 2.941888296655738e-08 - syst_JES_MJB_Asym: 2.023493699026513e-06 - syst_JES_MJB_Beta: 4.46609300731635e-08 - syst_JES_MJB_Fragmentation: 7.589377098945604e-07 - syst_JES_MJB_Stat1: 3.3767196518959047e-13 - syst_JES_MJB_Stat10: 1.678357232534242e-08 - syst_JES_MJB_Stat11: 2.1726035539589362e-08 + syst_JES_EtaIntercalibration_Stat96: 1.35706181e-21 + syst_JES_EtaIntercalibration_Stat97: 1.56923803e-23 + syst_JES_EtaIntercalibration_Stat98: 5.16930564e-24 + syst_JES_EtaIntercalibration_Stat99: 5.16930564e-24 + syst_JES_EtaIntercalibration_TotalStat_MJB: 3.37911793e-06 + syst_JES_Flavour_Comp: 7.24771569e-06 + syst_JES_Flavour_Response: 2.32058678e-06 + syst_JES_Gjet_Generator: 8.11503906e-06 + syst_JES_Gjet_OOC: 6.88035252e-06 + syst_JES_Gjet_Purity: 3.70812010e-07 + syst_JES_Gjet_Stat1: 1.27896103e-09 + syst_JES_Gjet_Stat10: 6.39540143e-08 + syst_JES_Gjet_Stat11: 7.52107112e-08 + syst_JES_Gjet_Stat12: 2.50174154e-07 + syst_JES_Gjet_Stat13: 1.19250623e-06 + syst_JES_Gjet_Stat14: 3.86383269e-06 + syst_JES_Gjet_Stat15: 6.34137089e-06 + syst_JES_Gjet_Stat2: 6.99398154e-09 + syst_JES_Gjet_Stat3: 7.31964671e-09 + syst_JES_Gjet_Stat4: 7.91287411e-09 + syst_JES_Gjet_Stat5: 7.91460617e-09 + syst_JES_Gjet_Stat6: 7.34804246e-12 + syst_JES_Gjet_Stat7: 4.80442620e-13 + syst_JES_Gjet_Stat8: 7.35462161e-09 + syst_JES_Gjet_Stat9: 2.52273869e-08 + syst_JES_Gjet_Veto: 7.00667189e-06 + syst_JES_Gjet_dPhi: 1.95475633e-07 + syst_JES_LArESZee: 1.17224316e-05 + syst_JES_LArEsmear: 3.45492786e-07 + syst_JES_LAr_JVT: 5.01185026e-07 + syst_JES_MJB_Alpha: 2.94188830e-08 + syst_JES_MJB_Asym: 2.02349370e-06 + syst_JES_MJB_Beta: 4.46609301e-08 + syst_JES_MJB_Fragmentation: 7.58937710e-07 + syst_JES_MJB_Stat1: 3.37671965e-13 + syst_JES_MJB_Stat10: 1.67835723e-08 + syst_JES_MJB_Stat11: 2.17260355e-08 syst_JES_MJB_Stat12: 0.0 syst_JES_MJB_Stat13: 0.0 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 - syst_JES_MJB_Stat16: 3.7282393632920083e-10 - syst_JES_MJB_Stat2: 9.80820340327422e-11 - syst_JES_MJB_Stat3: 9.774973964159701e-10 - syst_JES_MJB_Stat4: 2.2724110543649447e-10 - syst_JES_MJB_Stat5: 1.1405647843064419e-09 - syst_JES_MJB_Stat6: 5.9719123402809585e-09 - syst_JES_MJB_Stat7: 6.22239088052173e-09 - syst_JES_MJB_Stat8: 6.323924073508472e-09 - syst_JES_MJB_Stat9: 1.3970602232903205e-08 - syst_JES_MJB_Threshold: 1.2564850337349823e-06 - syst_JES_Pileup_MuOffset: 1.8474084551067748e-06 - syst_JES_Pileup_NPVOffset: 8.703319539118394e-07 - syst_JES_Pileup_Pt_term: 1.136409902939956e-06 - syst_JES_Pileup_Rho_topology: 1.4962043201047108e-06 - syst_JES_PunchThrough_MC15: 2.1422410578644037e-06 + syst_JES_MJB_Stat16: 3.72823936e-10 + syst_JES_MJB_Stat2: 9.80820340e-11 + syst_JES_MJB_Stat3: 9.77497396e-10 + syst_JES_MJB_Stat4: 2.27241105e-10 + syst_JES_MJB_Stat5: 1.14056478e-09 + syst_JES_MJB_Stat6: 5.97191234e-09 + syst_JES_MJB_Stat7: 6.22239088e-09 + syst_JES_MJB_Stat8: 6.32392407e-09 + syst_JES_MJB_Stat9: 1.39706022e-08 + syst_JES_MJB_Threshold: 1.25648503e-06 + syst_JES_Pileup_MuOffset: 1.84740846e-06 + syst_JES_Pileup_NPVOffset: 8.70331954e-07 + syst_JES_Pileup_Pt_term: 1.13640990e-06 + syst_JES_Pileup_Rho_topology: 1.49620432e-06 + syst_JES_PunchThrough_MC15: 2.14224106e-06 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 2.982373719036566e-06 - syst_JES_Zjet_MuScale: 1.9966759186395276e-09 - syst_JES_Zjet_MuSmearID: 1.559103687219038e-08 - syst_JES_Zjet_MuSmearMS: 8.346783789580271e-07 - syst_JES_Zjet_OOC: 1.290649955448804e-06 - syst_JES_Zjet_Stat1: 1.791806560428631e-10 - syst_JES_Zjet_Stat10: 6.016518629774261e-08 - syst_JES_Zjet_Stat11: 2.5215774680471353e-08 - syst_JES_Zjet_Stat12: 3.053605573743931e-07 - syst_JES_Zjet_Stat13: 8.207658055133632e-07 - syst_JES_Zjet_Stat2: 1.6907915591700682e-11 - syst_JES_Zjet_Stat3: 2.811984486088072e-08 - syst_JES_Zjet_Stat4: 2.0951384870695302e-22 - syst_JES_Zjet_Stat5: 3.32432143451863e-22 - syst_JES_Zjet_Stat6: 2.7504967354490035e-08 - syst_JES_Zjet_Stat7: 5.022078656293626e-18 - syst_JES_Zjet_Stat8: 3.1482585662553194e-15 - syst_JES_Zjet_Stat9: 7.850150762883475e-10 - syst_JES_Zjet_Veto: 5.009162179354448e-09 - syst_JES_Zjet_dPhi: 4.593729706314358e-09 - syst_PRW: 2.496e-06 - syst_Unfolding_bias: 1.0387e-06 - syst_cleaning: 8.347618867078205e-07 - syst_lumi: 2.614e-06 -- stat: 1.2883e-05 + syst_JES_Zjet_MC: 2.98237372e-06 + syst_JES_Zjet_MuScale: 1.99667592e-09 + syst_JES_Zjet_MuSmearID: 1.55910369e-08 + syst_JES_Zjet_MuSmearMS: 8.34678379e-07 + syst_JES_Zjet_OOC: 1.29064996e-06 + syst_JES_Zjet_Stat1: 1.79180656e-10 + syst_JES_Zjet_Stat10: 6.01651863e-08 + syst_JES_Zjet_Stat11: 2.52157747e-08 + syst_JES_Zjet_Stat12: 3.05360557e-07 + syst_JES_Zjet_Stat13: 8.20765806e-07 + syst_JES_Zjet_Stat2: 1.69079156e-11 + syst_JES_Zjet_Stat3: 2.81198449e-08 + syst_JES_Zjet_Stat4: 2.09513849e-22 + syst_JES_Zjet_Stat5: 3.32432143e-22 + syst_JES_Zjet_Stat6: 2.75049674e-08 + syst_JES_Zjet_Stat7: 5.02207866e-18 + syst_JES_Zjet_Stat8: 3.14825857e-15 + syst_JES_Zjet_Stat9: 7.85015076e-10 + syst_JES_Zjet_Veto: 5.00916218e-09 + syst_JES_Zjet_dPhi: 4.59372971e-09 + syst_PRW: 2.49600000e-06 + syst_Unfolding_bias: 1.03870000e-06 + syst_cleaning: 8.34761887e-07 + syst_lumi: 2.61400000e-06 +- stat: 1.28830000e-05 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 2.0897652380111984e-06 - syst_JER_NP1: 2.585820179362827e-06 - syst_JER_NP2: 8.35454707030848e-07 + syst_JER_NP0: 2.08976524e-06 + syst_JER_NP1: 2.58582018e-06 + syst_JER_NP2: 8.35454707e-07 syst_JER_NP3: 0.0 syst_JER_NP4: 0.0 syst_JER_NP5: 0.0 syst_JER_NP6: 0.0 syst_JER_NP7: 0.0 - syst_JER_NP8: 4.398103085422168e-08 - syst_JES_EtaIntercalibration_Modelling: 5.861064131196655e-06 + syst_JER_NP8: 4.39810309e-08 + syst_JES_EtaIntercalibration_Modelling: 5.86106413e-06 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 @@ -53296,7 +53296,7 @@ bins: syst_JES_EtaIntercalibration_Stat128: 0.0 syst_JES_EtaIntercalibration_Stat129: 0.0 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 7.054642939228037e-11 + syst_JES_EtaIntercalibration_Stat130: 7.05464294e-11 syst_JES_EtaIntercalibration_Stat131: 0.0 syst_JES_EtaIntercalibration_Stat132: 0.0 syst_JES_EtaIntercalibration_Stat133: 0.0 @@ -53310,12 +53310,12 @@ bins: syst_JES_EtaIntercalibration_Stat140: 0.0 syst_JES_EtaIntercalibration_Stat141: 0.0 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 4.194432589755139e-10 + syst_JES_EtaIntercalibration_Stat143: 4.19443259e-10 syst_JES_EtaIntercalibration_Stat144: 0.0 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 syst_JES_EtaIntercalibration_Stat147: 0.0 - syst_JES_EtaIntercalibration_Stat148: 6.883169909278719e-11 + syst_JES_EtaIntercalibration_Stat148: 6.88316991e-11 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 syst_JES_EtaIntercalibration_Stat150: 0.0 @@ -53330,13 +53330,13 @@ bins: syst_JES_EtaIntercalibration_Stat159: 0.0 syst_JES_EtaIntercalibration_Stat16: 0.0 syst_JES_EtaIntercalibration_Stat160: 0.0 - syst_JES_EtaIntercalibration_Stat161: 4.2109040597002445e-10 + syst_JES_EtaIntercalibration_Stat161: 4.21090406e-10 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 6.511645011055194e-11 - syst_JES_EtaIntercalibration_Stat166: 4.00186369083206e-10 - syst_JES_EtaIntercalibration_Stat167: 6.829476334244083e-11 + syst_JES_EtaIntercalibration_Stat165: 6.51164501e-11 + syst_JES_EtaIntercalibration_Stat166: 4.00186369e-10 + syst_JES_EtaIntercalibration_Stat167: 6.82947633e-11 syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 syst_JES_EtaIntercalibration_Stat17: 0.0 @@ -53348,14 +53348,14 @@ bins: syst_JES_EtaIntercalibration_Stat175: 0.0 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 - syst_JES_EtaIntercalibration_Stat178: 5.469043883532112e-10 - syst_JES_EtaIntercalibration_Stat179: 8.549073326975269e-10 + syst_JES_EtaIntercalibration_Stat178: 5.46904388e-10 + syst_JES_EtaIntercalibration_Stat179: 8.54907333e-10 syst_JES_EtaIntercalibration_Stat18: 0.0 - syst_JES_EtaIntercalibration_Stat180: 3.3453824994311187e-10 + syst_JES_EtaIntercalibration_Stat180: 3.34538250e-10 syst_JES_EtaIntercalibration_Stat181: 0.0 - syst_JES_EtaIntercalibration_Stat182: 6.799847553438239e-10 - syst_JES_EtaIntercalibration_Stat183: 1.3760134374343877e-07 - syst_JES_EtaIntercalibration_Stat184: 6.019656863144277e-08 + syst_JES_EtaIntercalibration_Stat182: 6.79984755e-10 + syst_JES_EtaIntercalibration_Stat183: 1.37601344e-07 + syst_JES_EtaIntercalibration_Stat184: 6.01965686e-08 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 syst_JES_EtaIntercalibration_Stat187: 0.0 @@ -53366,15 +53366,15 @@ bins: syst_JES_EtaIntercalibration_Stat191: 0.0 syst_JES_EtaIntercalibration_Stat192: 0.0 syst_JES_EtaIntercalibration_Stat193: 0.0 - syst_JES_EtaIntercalibration_Stat194: 2.4586461213440213e-10 - syst_JES_EtaIntercalibration_Stat195: 3.058576139317117e-08 - syst_JES_EtaIntercalibration_Stat196: 8.27746958617185e-08 - syst_JES_EtaIntercalibration_Stat197: 1.2576215130157404e-09 - syst_JES_EtaIntercalibration_Stat198: 1.0737848981523254e-07 - syst_JES_EtaIntercalibration_Stat199: 3.093306969490743e-07 + syst_JES_EtaIntercalibration_Stat194: 2.45864612e-10 + syst_JES_EtaIntercalibration_Stat195: 3.05857614e-08 + syst_JES_EtaIntercalibration_Stat196: 8.27746959e-08 + syst_JES_EtaIntercalibration_Stat197: 1.25762151e-09 + syst_JES_EtaIntercalibration_Stat198: 1.07378490e-07 + syst_JES_EtaIntercalibration_Stat199: 3.09330697e-07 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 3.93521943479649e-09 + syst_JES_EtaIntercalibration_Stat200: 3.93521943e-09 syst_JES_EtaIntercalibration_Stat201: 0.0 syst_JES_EtaIntercalibration_Stat202: 0.0 syst_JES_EtaIntercalibration_Stat203: 0.0 @@ -53383,12 +53383,12 @@ bins: syst_JES_EtaIntercalibration_Stat206: 0.0 syst_JES_EtaIntercalibration_Stat207: 0.0 syst_JES_EtaIntercalibration_Stat208: 0.0 - syst_JES_EtaIntercalibration_Stat209: 4.2501226747001076e-10 + syst_JES_EtaIntercalibration_Stat209: 4.25012267e-10 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 4.5217023342984443e-08 - syst_JES_EtaIntercalibration_Stat211: 1.057503620561178e-07 - syst_JES_EtaIntercalibration_Stat212: 2.8907733965151956e-07 - syst_JES_EtaIntercalibration_Stat213: 3.94907584125704e-09 + syst_JES_EtaIntercalibration_Stat210: 4.52170233e-08 + syst_JES_EtaIntercalibration_Stat211: 1.05750362e-07 + syst_JES_EtaIntercalibration_Stat212: 2.89077340e-07 + syst_JES_EtaIntercalibration_Stat213: 3.94907584e-09 syst_JES_EtaIntercalibration_Stat214: 0.0 syst_JES_EtaIntercalibration_Stat215: 0.0 syst_JES_EtaIntercalibration_Stat216: 0.0 @@ -53398,10 +53398,10 @@ bins: syst_JES_EtaIntercalibration_Stat22: 0.0 syst_JES_EtaIntercalibration_Stat220: 0.0 syst_JES_EtaIntercalibration_Stat221: 0.0 - syst_JES_EtaIntercalibration_Stat222: 4.240190886033316e-10 - syst_JES_EtaIntercalibration_Stat223: 4.869478924895353e-08 - syst_JES_EtaIntercalibration_Stat224: 3.719863169526535e-07 - syst_JES_EtaIntercalibration_Stat225: 1.7725415989476807e-07 + syst_JES_EtaIntercalibration_Stat222: 4.24019089e-10 + syst_JES_EtaIntercalibration_Stat223: 4.86947892e-08 + syst_JES_EtaIntercalibration_Stat224: 3.71986317e-07 + syst_JES_EtaIntercalibration_Stat225: 1.77254160e-07 syst_JES_EtaIntercalibration_Stat226: 0.0 syst_JES_EtaIntercalibration_Stat227: 0.0 syst_JES_EtaIntercalibration_Stat228: 0.0 @@ -53411,8 +53411,8 @@ bins: syst_JES_EtaIntercalibration_Stat231: 0.0 syst_JES_EtaIntercalibration_Stat232: 0.0 syst_JES_EtaIntercalibration_Stat233: 0.0 - syst_JES_EtaIntercalibration_Stat234: 6.6207642119320335e-09 - syst_JES_EtaIntercalibration_Stat235: 3.1820778223513014e-07 + syst_JES_EtaIntercalibration_Stat234: 6.62076421e-09 + syst_JES_EtaIntercalibration_Stat235: 3.18207782e-07 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 @@ -53423,7 +53423,7 @@ bins: syst_JES_EtaIntercalibration_Stat242: 0.0 syst_JES_EtaIntercalibration_Stat243: 0.0 syst_JES_EtaIntercalibration_Stat244: 0.0 - syst_JES_EtaIntercalibration_Stat245: 3.045787582875733e-10 + syst_JES_EtaIntercalibration_Stat245: 3.04578758e-10 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 syst_JES_EtaIntercalibration_Stat27: 0.0 @@ -53506,154 +53506,154 @@ bins: syst_JES_EtaIntercalibration_Stat97: 0.0 syst_JES_EtaIntercalibration_Stat98: 0.0 syst_JES_EtaIntercalibration_Stat99: 0.0 - syst_JES_EtaIntercalibration_TotalStat_MJB: 1.7398254941229017e-06 - syst_JES_Flavour_Comp: 3.027447935142734e-06 - syst_JES_Flavour_Response: 1.5172765074303364e-06 - syst_JES_Gjet_Generator: 3.3087784875993135e-06 - syst_JES_Gjet_OOC: 2.8899388834368104e-06 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.73982549e-06 + syst_JES_Flavour_Comp: 3.02744794e-06 + syst_JES_Flavour_Response: 1.51727651e-06 + syst_JES_Gjet_Generator: 3.30877849e-06 + syst_JES_Gjet_OOC: 2.88993888e-06 syst_JES_Gjet_Purity: 0.0 - syst_JES_Gjet_Stat1: 4.279031520098911e-10 - syst_JES_Gjet_Stat10: 2.2655224563000915e-08 - syst_JES_Gjet_Stat11: 2.6595595500007137e-08 - syst_JES_Gjet_Stat12: 8.844522994486476e-08 - syst_JES_Gjet_Stat13: 5.262836378798034e-07 - syst_JES_Gjet_Stat14: 1.5373115331643095e-06 - syst_JES_Gjet_Stat15: 2.896821361423586e-06 - syst_JES_Gjet_Stat2: 6.651924683879095e-10 - syst_JES_Gjet_Stat3: 6.712562904733185e-10 - syst_JES_Gjet_Stat4: 6.715160980944538e-10 - syst_JES_Gjet_Stat5: 6.708232777714262e-10 + syst_JES_Gjet_Stat1: 4.27903152e-10 + syst_JES_Gjet_Stat10: 2.26552246e-08 + syst_JES_Gjet_Stat11: 2.65955955e-08 + syst_JES_Gjet_Stat12: 8.84452299e-08 + syst_JES_Gjet_Stat13: 5.26283638e-07 + syst_JES_Gjet_Stat14: 1.53731153e-06 + syst_JES_Gjet_Stat15: 2.89682136e-06 + syst_JES_Gjet_Stat2: 6.65192468e-10 + syst_JES_Gjet_Stat3: 6.71256290e-10 + syst_JES_Gjet_Stat4: 6.71516098e-10 + syst_JES_Gjet_Stat5: 6.70823278e-10 syst_JES_Gjet_Stat6: 0.0 syst_JES_Gjet_Stat7: 0.0 - syst_JES_Gjet_Stat8: 8.101134426733086e-10 - syst_JES_Gjet_Stat9: 1.2263785742991436e-08 - syst_JES_Gjet_Veto: 3.0482786536010775e-06 + syst_JES_Gjet_Stat8: 8.10113443e-10 + syst_JES_Gjet_Stat9: 1.22637857e-08 + syst_JES_Gjet_Veto: 3.04827865e-06 syst_JES_Gjet_dPhi: 0.0 - syst_JES_LArESZee: 4.801360302039413e-06 + syst_JES_LArESZee: 4.80136030e-06 syst_JES_LArEsmear: 0.0 syst_JES_LAr_JVT: 0.0 - syst_JES_MJB_Alpha: 1.0400965099451108e-08 - syst_JES_MJB_Asym: 6.905584316334136e-07 - syst_JES_MJB_Beta: 1.5787643110990315e-08 - syst_JES_MJB_Fragmentation: 3.1994629111774366e-07 + syst_JES_MJB_Alpha: 1.04009651e-08 + syst_JES_MJB_Asym: 6.90558432e-07 + syst_JES_MJB_Beta: 1.57876431e-08 + syst_JES_MJB_Fragmentation: 3.19946291e-07 syst_JES_MJB_Stat1: 0.0 - syst_JES_MJB_Stat10: 1.2262053692183868e-08 - syst_JES_MJB_Stat11: 1.5803752651822923e-08 + syst_JES_MJB_Stat10: 1.22620537e-08 + syst_JES_MJB_Stat11: 1.58037527e-08 syst_JES_MJB_Stat12: 0.0 syst_JES_MJB_Stat13: 0.0 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 - syst_JES_MJB_Stat16: 1.3198227153674847e-10 + syst_JES_MJB_Stat16: 1.31982272e-10 syst_JES_MJB_Stat2: 0.0 - syst_JES_MJB_Stat3: 4.636327102351601e-10 - syst_JES_MJB_Stat4: 8.83086104238992e-11 - syst_JES_MJB_Stat5: 4.377758416130337e-10 - syst_JES_MJB_Stat6: 6.938130349741204e-10 - syst_JES_MJB_Stat7: 7.033456813686994e-10 - syst_JES_MJB_Stat8: 9.083764032602344e-10 - syst_JES_MJB_Stat9: 5.819504789928435e-09 - syst_JES_MJB_Threshold: 5.423005070991544e-07 - syst_JES_Pileup_MuOffset: 6.483329449441853e-07 + syst_JES_MJB_Stat3: 4.63632710e-10 + syst_JES_MJB_Stat4: 8.83086104e-11 + syst_JES_MJB_Stat5: 4.37775842e-10 + syst_JES_MJB_Stat6: 6.93813035e-10 + syst_JES_MJB_Stat7: 7.03345681e-10 + syst_JES_MJB_Stat8: 9.08376403e-10 + syst_JES_MJB_Stat9: 5.81950479e-09 + syst_JES_MJB_Threshold: 5.42300507e-07 + syst_JES_Pileup_MuOffset: 6.48332945e-07 syst_JES_Pileup_NPVOffset: 0.0 syst_JES_Pileup_Pt_term: 0.0 - syst_JES_Pileup_Rho_topology: 4.964923639896186e-07 - syst_JES_PunchThrough_MC15: 6.561012174199953e-07 + syst_JES_Pileup_Rho_topology: 4.96492364e-07 + syst_JES_PunchThrough_MC15: 6.56101217e-07 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 1.064028208037738e-06 + syst_JES_Zjet_MC: 1.06402821e-06 syst_JES_Zjet_MuScale: 0.0 - syst_JES_Zjet_MuSmearID: 5.78785489797386e-09 - syst_JES_Zjet_MuSmearMS: 3.6095938829735407e-07 - syst_JES_Zjet_OOC: 4.5293128617926147e-07 + syst_JES_Zjet_MuSmearID: 5.78785490e-09 + syst_JES_Zjet_MuSmearMS: 3.60959388e-07 + syst_JES_Zjet_OOC: 4.52931286e-07 syst_JES_Zjet_Stat1: 0.0 - syst_JES_Zjet_Stat10: 2.1269583916945813e-08 + syst_JES_Zjet_Stat10: 2.12695839e-08 syst_JES_Zjet_Stat11: 0.0 - syst_JES_Zjet_Stat12: 1.0792868432441859e-07 - syst_JES_Zjet_Stat13: 3.4094446761899515e-07 + syst_JES_Zjet_Stat12: 1.07928684e-07 + syst_JES_Zjet_Stat13: 3.40944468e-07 syst_JES_Zjet_Stat2: 0.0 - syst_JES_Zjet_Stat3: 1.2228278701436273e-08 + syst_JES_Zjet_Stat3: 1.22282787e-08 syst_JES_Zjet_Stat4: 0.0 syst_JES_Zjet_Stat5: 0.0 - syst_JES_Zjet_Stat6: 1.2239537031685471e-08 + syst_JES_Zjet_Stat6: 1.22395370e-08 syst_JES_Zjet_Stat7: 0.0 syst_JES_Zjet_Stat8: 0.0 syst_JES_Zjet_Stat9: 0.0 syst_JES_Zjet_Veto: 0.0 syst_JES_Zjet_dPhi: 0.0 - syst_PRW: 1.2337e-06 + syst_PRW: 1.23370000e-06 syst_Unfolding_bias: 1.7e-06 - syst_cleaning: 2.967003033365487e-07 - syst_lumi: 9.244e-07 + syst_cleaning: 2.96700303e-07 + syst_lumi: 9.24400000e-07 - stat: 50.93 syst_JER_CROSS_CALIB_FORWARD: 75.622 syst_JER_NOISE_FORWARD: 43.732 - syst_JER_NP0: 145.269613225719 - syst_JER_NP1: 41.244194355084694 - syst_JER_NP2: 30.48882254203989 - syst_JER_NP3: 39.18226028128036 - syst_JER_NP4: 4.307453627144464 - syst_JER_NP5: 28.683271692748022 - syst_JER_NP6: 21.428977460438936 - syst_JER_NP7: 21.86047346239326 - syst_JER_NP8: 21.782451652649204 - syst_JES_EtaIntercalibration_Modelling: 174.78233434761077 - syst_JES_EtaIntercalibration_NonClosure: 35.56426814585111 + syst_JER_NP0: 1.45269613e+02 + syst_JER_NP1: 4.12441944e+01 + syst_JER_NP2: 3.04888225e+01 + syst_JER_NP3: 3.91822603e+01 + syst_JER_NP4: 4.30745363e+00 + syst_JER_NP5: 2.86832717e+01 + syst_JER_NP6: 2.14289775e+01 + syst_JER_NP7: 2.18604735e+01 + syst_JER_NP8: 2.17824517e+01 + syst_JES_EtaIntercalibration_Modelling: 1.74782334e+02 + syst_JES_EtaIntercalibration_NonClosure: 3.55642681e+01 syst_JES_EtaIntercalibration_Stat0: 0.0 - syst_JES_EtaIntercalibration_Stat1: 0.03955138019083532 + syst_JES_EtaIntercalibration_Stat1: 3.95513802e-02 syst_JES_EtaIntercalibration_Stat10: 0.0 syst_JES_EtaIntercalibration_Stat100: 0.0 syst_JES_EtaIntercalibration_Stat101: 0.0 syst_JES_EtaIntercalibration_Stat102: 0.0 - syst_JES_EtaIntercalibration_Stat103: 0.16484590622760398 - syst_JES_EtaIntercalibration_Stat104: 3.0304544213698383 - syst_JES_EtaIntercalibration_Stat105: 14.625083760443903 - syst_JES_EtaIntercalibration_Stat106: 14.257947783604763 - syst_JES_EtaIntercalibration_Stat107: 1.1706840179997333 - syst_JES_EtaIntercalibration_Stat108: 0.4120669116478536 - syst_JES_EtaIntercalibration_Stat109: 3.4693424088723215 + syst_JES_EtaIntercalibration_Stat103: 1.64845906e-01 + syst_JES_EtaIntercalibration_Stat104: 3.03045442e+00 + syst_JES_EtaIntercalibration_Stat105: 1.46250838e+01 + syst_JES_EtaIntercalibration_Stat106: 1.42579478e+01 + syst_JES_EtaIntercalibration_Stat107: 1.17068402e+00 + syst_JES_EtaIntercalibration_Stat108: 4.12066912e-01 + syst_JES_EtaIntercalibration_Stat109: 3.46934241e+00 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 4.336740567523033 - syst_JES_EtaIntercalibration_Stat111: 1.2107736865327063 - syst_JES_EtaIntercalibration_Stat112: 0.11080828534004125 + syst_JES_EtaIntercalibration_Stat110: 4.33674057e+00 + syst_JES_EtaIntercalibration_Stat111: 1.21077369e+00 + syst_JES_EtaIntercalibration_Stat112: 1.10808285e-01 syst_JES_EtaIntercalibration_Stat113: 0.0 syst_JES_EtaIntercalibration_Stat114: 0.0 syst_JES_EtaIntercalibration_Stat115: 0.0 syst_JES_EtaIntercalibration_Stat116: 0.0 syst_JES_EtaIntercalibration_Stat117: 0.0 - syst_JES_EtaIntercalibration_Stat118: 0.01842036033849501 - syst_JES_EtaIntercalibration_Stat119: 0.01842036033849501 + syst_JES_EtaIntercalibration_Stat118: 1.84203603e-02 + syst_JES_EtaIntercalibration_Stat119: 1.84203603e-02 syst_JES_EtaIntercalibration_Stat12: 0.0 syst_JES_EtaIntercalibration_Stat120: 0.0 syst_JES_EtaIntercalibration_Stat121: 0.0 syst_JES_EtaIntercalibration_Stat122: 0.0 - syst_JES_EtaIntercalibration_Stat123: 0.025734489445100716 - syst_JES_EtaIntercalibration_Stat124: 1.3180233192170767 - syst_JES_EtaIntercalibration_Stat125: 4.343037732969862 - syst_JES_EtaIntercalibration_Stat126: 3.851748531511371 - syst_JES_EtaIntercalibration_Stat127: 0.2677141483000105 - syst_JES_EtaIntercalibration_Stat128: 4.102725877998675 - syst_JES_EtaIntercalibration_Stat129: 7.633059805870776 + syst_JES_EtaIntercalibration_Stat123: 2.57344894e-02 + syst_JES_EtaIntercalibration_Stat124: 1.31802332e+00 + syst_JES_EtaIntercalibration_Stat125: 4.34303773e+00 + syst_JES_EtaIntercalibration_Stat126: 3.85174853e+00 + syst_JES_EtaIntercalibration_Stat127: 2.67714148e-01 + syst_JES_EtaIntercalibration_Stat128: 4.10272588e+00 + syst_JES_EtaIntercalibration_Stat129: 7.63305981e+00 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 0.6379463457062828 - syst_JES_EtaIntercalibration_Stat131: 0.05726175687140589 + syst_JES_EtaIntercalibration_Stat130: 6.37946346e-01 + syst_JES_EtaIntercalibration_Stat131: 5.72617569e-02 syst_JES_EtaIntercalibration_Stat132: 0.0 syst_JES_EtaIntercalibration_Stat133: 0.0 syst_JES_EtaIntercalibration_Stat134: 0.0 syst_JES_EtaIntercalibration_Stat135: 0.0 syst_JES_EtaIntercalibration_Stat136: 0.0 - syst_JES_EtaIntercalibration_Stat137: 0.01842036033849501 - syst_JES_EtaIntercalibration_Stat138: 0.01842036033849501 - syst_JES_EtaIntercalibration_Stat139: 0.00038711335549164406 + syst_JES_EtaIntercalibration_Stat137: 1.84203603e-02 + syst_JES_EtaIntercalibration_Stat138: 1.84203603e-02 + syst_JES_EtaIntercalibration_Stat139: 3.87113355e-04 syst_JES_EtaIntercalibration_Stat14: 0.0 syst_JES_EtaIntercalibration_Stat140: 0.0 syst_JES_EtaIntercalibration_Stat141: 0.0 - syst_JES_EtaIntercalibration_Stat142: 0.032843093349287304 - syst_JES_EtaIntercalibration_Stat143: 0.6613030678138428 - syst_JES_EtaIntercalibration_Stat144: 7.659476924046445 - syst_JES_EtaIntercalibration_Stat145: 3.6317236610182775 - syst_JES_EtaIntercalibration_Stat146: 0.33262316515841167 - syst_JES_EtaIntercalibration_Stat147: 0.2284704521376889 - syst_JES_EtaIntercalibration_Stat148: 0.03665176628758838 - syst_JES_EtaIntercalibration_Stat149: 1.6012809715974272e-05 + syst_JES_EtaIntercalibration_Stat142: 3.28430933e-02 + syst_JES_EtaIntercalibration_Stat143: 6.61303068e-01 + syst_JES_EtaIntercalibration_Stat144: 7.65947692e+00 + syst_JES_EtaIntercalibration_Stat145: 3.63172366e+00 + syst_JES_EtaIntercalibration_Stat146: 3.32623165e-01 + syst_JES_EtaIntercalibration_Stat147: 2.28470452e-01 + syst_JES_EtaIntercalibration_Stat148: 3.66517663e-02 + syst_JES_EtaIntercalibration_Stat149: 1.60128097e-05 syst_JES_EtaIntercalibration_Stat15: 0.0 syst_JES_EtaIntercalibration_Stat150: 0.0 syst_JES_EtaIntercalibration_Stat151: 0.0 @@ -53661,60 +53661,60 @@ bins: syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 0.01842036033849501 - syst_JES_EtaIntercalibration_Stat157: 0.00038711335549164406 + syst_JES_EtaIntercalibration_Stat156: 1.84203603e-02 + syst_JES_EtaIntercalibration_Stat157: 3.87113355e-04 syst_JES_EtaIntercalibration_Stat158: 0.0 syst_JES_EtaIntercalibration_Stat159: 0.0 - syst_JES_EtaIntercalibration_Stat16: 0.008650727758402758 - syst_JES_EtaIntercalibration_Stat160: 0.004651524328300213 - syst_JES_EtaIntercalibration_Stat161: 0.039320036558986055 - syst_JES_EtaIntercalibration_Stat162: 0.30879204572009294 - syst_JES_EtaIntercalibration_Stat163: 0.2656873491530976 - syst_JES_EtaIntercalibration_Stat164: 0.007647964614850149 - syst_JES_EtaIntercalibration_Stat165: 0.0047702254663694885 - syst_JES_EtaIntercalibration_Stat166: 0.0006967996178959918 - syst_JES_EtaIntercalibration_Stat167: 1.2860477246198914e-22 + syst_JES_EtaIntercalibration_Stat16: 8.65072776e-03 + syst_JES_EtaIntercalibration_Stat160: 4.65152433e-03 + syst_JES_EtaIntercalibration_Stat161: 3.93200366e-02 + syst_JES_EtaIntercalibration_Stat162: 3.08792046e-01 + syst_JES_EtaIntercalibration_Stat163: 2.65687349e-01 + syst_JES_EtaIntercalibration_Stat164: 7.64796461e-03 + syst_JES_EtaIntercalibration_Stat165: 4.77022547e-03 + syst_JES_EtaIntercalibration_Stat166: 6.96799618e-04 + syst_JES_EtaIntercalibration_Stat167: 1.28604772e-22 syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 - syst_JES_EtaIntercalibration_Stat17: 0.021562921578487458 + syst_JES_EtaIntercalibration_Stat17: 2.15629216e-02 syst_JES_EtaIntercalibration_Stat170: 0.0 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 - syst_JES_EtaIntercalibration_Stat174: 0.00038711335549164406 - syst_JES_EtaIntercalibration_Stat175: 0.00038711335549164406 + syst_JES_EtaIntercalibration_Stat174: 3.87113355e-04 + syst_JES_EtaIntercalibration_Stat175: 3.87113355e-04 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 - syst_JES_EtaIntercalibration_Stat178: 5.853500193010145e-12 - syst_JES_EtaIntercalibration_Stat179: 0.0003782047163904755 - syst_JES_EtaIntercalibration_Stat18: 0.15627872791906133 - syst_JES_EtaIntercalibration_Stat180: 0.005430669825168899 - syst_JES_EtaIntercalibration_Stat181: 0.0062672656717263865 - syst_JES_EtaIntercalibration_Stat182: 0.0003243377225593717 - syst_JES_EtaIntercalibration_Stat183: 4.925086471322107e-06 - syst_JES_EtaIntercalibration_Stat184: 1.0232956171131946e-28 + syst_JES_EtaIntercalibration_Stat178: 5.85350019e-12 + syst_JES_EtaIntercalibration_Stat179: 3.78204716e-04 + syst_JES_EtaIntercalibration_Stat18: 1.56278728e-01 + syst_JES_EtaIntercalibration_Stat180: 5.43066983e-03 + syst_JES_EtaIntercalibration_Stat181: 6.26726567e-03 + syst_JES_EtaIntercalibration_Stat182: 3.24337723e-04 + syst_JES_EtaIntercalibration_Stat183: 4.92508647e-06 + syst_JES_EtaIntercalibration_Stat184: 1.02329562e-28 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 syst_JES_EtaIntercalibration_Stat187: 0.0 - syst_JES_EtaIntercalibration_Stat188: 3.0865145390877394e-12 + syst_JES_EtaIntercalibration_Stat188: 3.08651454e-12 syst_JES_EtaIntercalibration_Stat189: 0.0 - syst_JES_EtaIntercalibration_Stat19: 0.0414583875711538 + syst_JES_EtaIntercalibration_Stat19: 4.14583876e-02 syst_JES_EtaIntercalibration_Stat190: 0.0 - syst_JES_EtaIntercalibration_Stat191: 0.00038711335549164406 - syst_JES_EtaIntercalibration_Stat192: 0.00038711335549164406 + syst_JES_EtaIntercalibration_Stat191: 3.87113355e-04 + syst_JES_EtaIntercalibration_Stat192: 3.87113355e-04 syst_JES_EtaIntercalibration_Stat193: 0.0 syst_JES_EtaIntercalibration_Stat194: 0.0 - syst_JES_EtaIntercalibration_Stat195: 1.0348137549820257e-16 - syst_JES_EtaIntercalibration_Stat196: 7.507479736902391e-06 - syst_JES_EtaIntercalibration_Stat197: 0.0003205738721418201 - syst_JES_EtaIntercalibration_Stat198: 6.649072942899633e-12 - syst_JES_EtaIntercalibration_Stat199: 1.0541261214864187e-22 - syst_JES_EtaIntercalibration_Stat2: 0.07381766861666657 + syst_JES_EtaIntercalibration_Stat195: 1.03481375e-16 + syst_JES_EtaIntercalibration_Stat196: 7.50747974e-06 + syst_JES_EtaIntercalibration_Stat197: 3.20573872e-04 + syst_JES_EtaIntercalibration_Stat198: 6.64907294e-12 + syst_JES_EtaIntercalibration_Stat199: 1.05412612e-22 + syst_JES_EtaIntercalibration_Stat2: 7.38176686e-02 syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 syst_JES_EtaIntercalibration_Stat201: 0.0 syst_JES_EtaIntercalibration_Stat202: 0.0 - syst_JES_EtaIntercalibration_Stat203: 3.0865145390877394e-12 + syst_JES_EtaIntercalibration_Stat203: 3.08651454e-12 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 @@ -53722,8 +53722,8 @@ bins: syst_JES_EtaIntercalibration_Stat208: 0.0 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 5.578069625775569e-39 - syst_JES_EtaIntercalibration_Stat211: 5.891091834286748e-12 + syst_JES_EtaIntercalibration_Stat210: 5.57806963e-39 + syst_JES_EtaIntercalibration_Stat211: 5.89109183e-12 syst_JES_EtaIntercalibration_Stat212: 0.0 syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 @@ -53743,7 +53743,7 @@ bins: syst_JES_EtaIntercalibration_Stat227: 0.0 syst_JES_EtaIntercalibration_Stat228: 0.0 syst_JES_EtaIntercalibration_Stat229: 0.0 - syst_JES_EtaIntercalibration_Stat23: 0.056509752255694774 + syst_JES_EtaIntercalibration_Stat23: 5.65097523e-02 syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 syst_JES_EtaIntercalibration_Stat232: 0.0 @@ -53754,19 +53754,19 @@ bins: syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 syst_JES_EtaIntercalibration_Stat239: 0.0 - syst_JES_EtaIntercalibration_Stat24: 0.9703749392374065 + syst_JES_EtaIntercalibration_Stat24: 9.70374939e-01 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 syst_JES_EtaIntercalibration_Stat243: 0.0 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 - syst_JES_EtaIntercalibration_Stat25: 0.7665325033552067 - syst_JES_EtaIntercalibration_Stat26: 0.2602041365447521 + syst_JES_EtaIntercalibration_Stat25: 7.66532503e-01 + syst_JES_EtaIntercalibration_Stat26: 2.60204137e-01 syst_JES_EtaIntercalibration_Stat27: 0.0 syst_JES_EtaIntercalibration_Stat28: 0.0 syst_JES_EtaIntercalibration_Stat29: 0.0 - syst_JES_EtaIntercalibration_Stat3: 0.0308255105391622 + syst_JES_EtaIntercalibration_Stat3: 3.08255105e-02 syst_JES_EtaIntercalibration_Stat30: 0.0 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 @@ -53775,19 +53775,19 @@ bins: syst_JES_EtaIntercalibration_Stat35: 0.0 syst_JES_EtaIntercalibration_Stat36: 0.0 syst_JES_EtaIntercalibration_Stat37: 0.0 - syst_JES_EtaIntercalibration_Stat38: 0.008650727758402758 - syst_JES_EtaIntercalibration_Stat39: 0.16612901101252606 + syst_JES_EtaIntercalibration_Stat38: 8.65072776e-03 + syst_JES_EtaIntercalibration_Stat39: 1.66129011e-01 syst_JES_EtaIntercalibration_Stat4: 0.0 - syst_JES_EtaIntercalibration_Stat40: 1.1346286650265804 - syst_JES_EtaIntercalibration_Stat41: 0.5923855226961576 - syst_JES_EtaIntercalibration_Stat42: 0.005222133184820166 + syst_JES_EtaIntercalibration_Stat40: 1.13462867e+00 + syst_JES_EtaIntercalibration_Stat41: 5.92385523e-01 + syst_JES_EtaIntercalibration_Stat42: 5.22213318e-03 syst_JES_EtaIntercalibration_Stat43: 0.0 - syst_JES_EtaIntercalibration_Stat44: 0.13986310271118685 - syst_JES_EtaIntercalibration_Stat45: 0.19443055392607408 - syst_JES_EtaIntercalibration_Stat46: 2.05149689434325 - syst_JES_EtaIntercalibration_Stat47: 3.09257463450763 - syst_JES_EtaIntercalibration_Stat48: 0.4961531492392244 - syst_JES_EtaIntercalibration_Stat49: 0.034433170054469275 + syst_JES_EtaIntercalibration_Stat44: 1.39863103e-01 + syst_JES_EtaIntercalibration_Stat45: 1.94430554e-01 + syst_JES_EtaIntercalibration_Stat46: 2.05149689e+00 + syst_JES_EtaIntercalibration_Stat47: 3.09257463e+00 + syst_JES_EtaIntercalibration_Stat48: 4.96153149e-01 + syst_JES_EtaIntercalibration_Stat49: 3.44331701e-02 syst_JES_EtaIntercalibration_Stat5: 0.0 syst_JES_EtaIntercalibration_Stat50: 0.0 syst_JES_EtaIntercalibration_Stat51: 0.0 @@ -53798,21 +53798,21 @@ bins: syst_JES_EtaIntercalibration_Stat56: 0.0 syst_JES_EtaIntercalibration_Stat57: 0.0 syst_JES_EtaIntercalibration_Stat58: 0.0 - syst_JES_EtaIntercalibration_Stat59: 0.008650727758402758 + syst_JES_EtaIntercalibration_Stat59: 8.65072776e-03 syst_JES_EtaIntercalibration_Stat6: 0.0 - syst_JES_EtaIntercalibration_Stat60: 0.009084258968127229 - syst_JES_EtaIntercalibration_Stat61: 0.7428507319778315 - syst_JES_EtaIntercalibration_Stat62: 3.0250119008030367 - syst_JES_EtaIntercalibration_Stat63: 2.925975734690908 - syst_JES_EtaIntercalibration_Stat64: 0.1191233943228617 + syst_JES_EtaIntercalibration_Stat60: 9.08425897e-03 + syst_JES_EtaIntercalibration_Stat61: 7.42850732e-01 + syst_JES_EtaIntercalibration_Stat62: 3.02501190e+00 + syst_JES_EtaIntercalibration_Stat63: 2.92597573e+00 + syst_JES_EtaIntercalibration_Stat64: 1.19123394e-01 syst_JES_EtaIntercalibration_Stat65: 0.0 - syst_JES_EtaIntercalibration_Stat66: 0.13986310271118685 - syst_JES_EtaIntercalibration_Stat67: 0.6626332828193887 - syst_JES_EtaIntercalibration_Stat68: 10.252296559795761 - syst_JES_EtaIntercalibration_Stat69: 17.461683767609582 + syst_JES_EtaIntercalibration_Stat66: 1.39863103e-01 + syst_JES_EtaIntercalibration_Stat67: 6.62633283e-01 + syst_JES_EtaIntercalibration_Stat68: 1.02522966e+01 + syst_JES_EtaIntercalibration_Stat69: 1.74616838e+01 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 2.352310513091331 - syst_JES_EtaIntercalibration_Stat71: 0.3837573486918524 + syst_JES_EtaIntercalibration_Stat70: 2.35231051e+00 + syst_JES_EtaIntercalibration_Stat71: 3.83757349e-01 syst_JES_EtaIntercalibration_Stat72: 0.0 syst_JES_EtaIntercalibration_Stat73: 0.0 syst_JES_EtaIntercalibration_Stat74: 0.0 @@ -53823,19 +53823,19 @@ bins: syst_JES_EtaIntercalibration_Stat79: 0.0 syst_JES_EtaIntercalibration_Stat8: 0.0 syst_JES_EtaIntercalibration_Stat80: 0.0 - syst_JES_EtaIntercalibration_Stat81: 0.008650727758402758 - syst_JES_EtaIntercalibration_Stat82: 0.17539356280947144 - syst_JES_EtaIntercalibration_Stat83: 2.9159041479445107 - syst_JES_EtaIntercalibration_Stat84: 14.651747336068828 - syst_JES_EtaIntercalibration_Stat85: 11.564588222241206 - syst_JES_EtaIntercalibration_Stat86: 0.7990463816325057 + syst_JES_EtaIntercalibration_Stat81: 8.65072776e-03 + syst_JES_EtaIntercalibration_Stat82: 1.75393563e-01 + syst_JES_EtaIntercalibration_Stat83: 2.91590415e+00 + syst_JES_EtaIntercalibration_Stat84: 1.46517473e+01 + syst_JES_EtaIntercalibration_Stat85: 1.15645882e+01 + syst_JES_EtaIntercalibration_Stat86: 7.99046382e-01 syst_JES_EtaIntercalibration_Stat87: 0.0 - syst_JES_EtaIntercalibration_Stat88: 0.7216150913056073 - syst_JES_EtaIntercalibration_Stat89: 12.627882512519665 + syst_JES_EtaIntercalibration_Stat88: 7.21615091e-01 + syst_JES_EtaIntercalibration_Stat89: 1.26278825e+01 syst_JES_EtaIntercalibration_Stat9: 0.0 - syst_JES_EtaIntercalibration_Stat90: 14.308774475824265 - syst_JES_EtaIntercalibration_Stat91: 2.9332831435100157 - syst_JES_EtaIntercalibration_Stat92: 0.3719686285115319 + syst_JES_EtaIntercalibration_Stat90: 1.43087745e+01 + syst_JES_EtaIntercalibration_Stat91: 2.93328314e+00 + syst_JES_EtaIntercalibration_Stat92: 3.71968629e-01 syst_JES_EtaIntercalibration_Stat93: 0.0 syst_JES_EtaIntercalibration_Stat94: 0.0 syst_JES_EtaIntercalibration_Stat95: 0.0 @@ -53843,37 +53843,37 @@ bins: syst_JES_EtaIntercalibration_Stat97: 0.0 syst_JES_EtaIntercalibration_Stat98: 0.0 syst_JES_EtaIntercalibration_Stat99: 0.0 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0010749973337176237 - syst_JES_Flavour_Comp: 23.731347938960397 - syst_JES_Flavour_Response: 212.44400579917522 - syst_JES_Gjet_Generator: 125.22151630610452 - syst_JES_Gjet_OOC: 80.91613720853213 - syst_JES_Gjet_Purity: 34.039002629336835 - syst_JES_Gjet_Stat1: 0.396921059531993 - syst_JES_Gjet_Stat10: 0.5854956425969369 - syst_JES_Gjet_Stat11: 0.1076580915444817 - syst_JES_Gjet_Stat12: 0.002519786250855417 - syst_JES_Gjet_Stat13: 1.7248447082273812e-05 - syst_JES_Gjet_Stat14: 1.398809067564262e-11 - syst_JES_Gjet_Stat15: 1.0071007798544703e-16 - syst_JES_Gjet_Stat2: 0.829818359642639 - syst_JES_Gjet_Stat3: 2.240011774522625 - syst_JES_Gjet_Stat4: 3.1730860372829475 - syst_JES_Gjet_Stat5: 4.668945384131195 - syst_JES_Gjet_Stat6: 9.063726110160214 - syst_JES_Gjet_Stat7: 12.212134457170048 - syst_JES_Gjet_Stat8: 5.099922621962023 - syst_JES_Gjet_Stat9: 0.963685741048398 - syst_JES_Gjet_Veto: 26.215405775993627 - syst_JES_Gjet_dPhi: 14.984893017636129 - syst_JES_LArESZee: 78.27353593009582 - syst_JES_LArEsmear: 8.70686786393362 - syst_JES_LAr_JVT: 13.856831780749884 - syst_JES_MJB_Alpha: 2.1026294847166966e-10 - syst_JES_MJB_Asym: 0.0002554988992148499 - syst_JES_MJB_Beta: 1.254052307808518e-11 - syst_JES_MJB_Fragmentation: 0.001036332623967807 - syst_JES_MJB_Stat1: 0.0001697754060015761 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.07499733e-03 + syst_JES_Flavour_Comp: 2.37313479e+01 + syst_JES_Flavour_Response: 2.12444006e+02 + syst_JES_Gjet_Generator: 1.25221516e+02 + syst_JES_Gjet_OOC: 8.09161372e+01 + syst_JES_Gjet_Purity: 3.40390026e+01 + syst_JES_Gjet_Stat1: 3.96921060e-01 + syst_JES_Gjet_Stat10: 5.85495643e-01 + syst_JES_Gjet_Stat11: 1.07658092e-01 + syst_JES_Gjet_Stat12: 2.51978625e-03 + syst_JES_Gjet_Stat13: 1.72484471e-05 + syst_JES_Gjet_Stat14: 1.39880907e-11 + syst_JES_Gjet_Stat15: 1.00710078e-16 + syst_JES_Gjet_Stat2: 8.29818360e-01 + syst_JES_Gjet_Stat3: 2.24001177e+00 + syst_JES_Gjet_Stat4: 3.17308604e+00 + syst_JES_Gjet_Stat5: 4.66894538e+00 + syst_JES_Gjet_Stat6: 9.06372611e+00 + syst_JES_Gjet_Stat7: 1.22121345e+01 + syst_JES_Gjet_Stat8: 5.09992262e+00 + syst_JES_Gjet_Stat9: 9.63685741e-01 + syst_JES_Gjet_Veto: 2.62154058e+01 + syst_JES_Gjet_dPhi: 1.49848930e+01 + syst_JES_LArESZee: 7.82735359e+01 + syst_JES_LArEsmear: 8.70686786e+00 + syst_JES_LAr_JVT: 1.38568318e+01 + syst_JES_MJB_Alpha: 2.10262948e-10 + syst_JES_MJB_Asym: 2.55498899e-04 + syst_JES_MJB_Beta: 1.25405231e-11 + syst_JES_MJB_Fragmentation: 1.03633262e-03 + syst_JES_MJB_Stat1: 1.69775406e-04 syst_JES_MJB_Stat10: 0.0 syst_JES_MJB_Stat11: 0.0 syst_JES_MJB_Stat12: 0.0 @@ -53881,116 +53881,116 @@ bins: syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 4.871392896287471e-06 - syst_JES_MJB_Stat3: 1.2302804680234504e-11 - syst_JES_MJB_Stat4: 2.850955629258372e-12 - syst_JES_MJB_Stat5: 1.011257863999089e-22 - syst_JES_MJB_Stat6: 3.53338364744051e-39 + syst_JES_MJB_Stat2: 4.87139290e-06 + syst_JES_MJB_Stat3: 1.23028047e-11 + syst_JES_MJB_Stat4: 2.85095563e-12 + syst_JES_MJB_Stat5: 1.01125786e-22 + syst_JES_MJB_Stat6: 3.53338365e-39 syst_JES_MJB_Stat7: 0.0 syst_JES_MJB_Stat8: 0.0 syst_JES_MJB_Stat9: 0.0 - syst_JES_MJB_Threshold: 0.00025598571737501293 - syst_JES_Pileup_MuOffset: 4.475381184882467 - syst_JES_Pileup_NPVOffset: 13.949715516812521 - syst_JES_Pileup_Pt_term: 78.47666956968804 - syst_JES_Pileup_Rho_topology: 63.410069474413916 - syst_JES_PunchThrough_MC15: 0.00040902991333153127 + syst_JES_MJB_Threshold: 2.55985717e-04 + syst_JES_Pileup_MuOffset: 4.47538118e+00 + syst_JES_Pileup_NPVOffset: 1.39497155e+01 + syst_JES_Pileup_Pt_term: 7.84766696e+01 + syst_JES_Pileup_Rho_topology: 6.34100695e+01 + syst_JES_PunchThrough_MC15: 4.09029913e-04 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 117.9030216777755 - syst_JES_Zjet_MuScale: 9.329373652609268 - syst_JES_Zjet_MuSmearID: 2.289973089361532 - syst_JES_Zjet_MuSmearMS: 4.5316385557544185 - syst_JES_Zjet_OOC: 78.85113343985614 - syst_JES_Zjet_Stat1: 2.909249516627957 - syst_JES_Zjet_Stat10: 5.916270848262442 - syst_JES_Zjet_Stat11: 1.7311118594706698 - syst_JES_Zjet_Stat12: 0.24235768504423372 - syst_JES_Zjet_Stat13: 0.0009477655129302817 - syst_JES_Zjet_Stat2: 0.16415679181806642 - syst_JES_Zjet_Stat3: 0.9831012206278659 - syst_JES_Zjet_Stat4: 2.2109628558616716 - syst_JES_Zjet_Stat5: 2.62739352781421 - syst_JES_Zjet_Stat6: 4.752024489625448 - syst_JES_Zjet_Stat7: 7.4688232506868175 - syst_JES_Zjet_Stat8: 11.601144975820276 - syst_JES_Zjet_Stat9: 13.559771679493723 - syst_JES_Zjet_Veto: 12.172723031433845 - syst_JES_Zjet_dPhi: 20.725296137811878 + syst_JES_Zjet_MC: 1.17903022e+02 + syst_JES_Zjet_MuScale: 9.32937365e+00 + syst_JES_Zjet_MuSmearID: 2.28997309e+00 + syst_JES_Zjet_MuSmearMS: 4.53163856e+00 + syst_JES_Zjet_OOC: 7.88511334e+01 + syst_JES_Zjet_Stat1: 2.90924952e+00 + syst_JES_Zjet_Stat10: 5.91627085e+00 + syst_JES_Zjet_Stat11: 1.73111186e+00 + syst_JES_Zjet_Stat12: 2.42357685e-01 + syst_JES_Zjet_Stat13: 9.47765513e-04 + syst_JES_Zjet_Stat2: 1.64156792e-01 + syst_JES_Zjet_Stat3: 9.83101221e-01 + syst_JES_Zjet_Stat4: 2.21096286e+00 + syst_JES_Zjet_Stat5: 2.62739353e+00 + syst_JES_Zjet_Stat6: 4.75202449e+00 + syst_JES_Zjet_Stat7: 7.46882325e+00 + syst_JES_Zjet_Stat8: 1.16011450e+01 + syst_JES_Zjet_Stat9: 1.35597717e+01 + syst_JES_Zjet_Veto: 1.21727230e+01 + syst_JES_Zjet_dPhi: 2.07252961e+01 syst_PRW: 0.0 syst_Unfolding_bias: 14.73 - syst_cleaning: 49.074195530849 + syst_cleaning: 4.90741955e+01 syst_lumi: 102.582 - stat: 28.919 syst_JER_CROSS_CALIB_FORWARD: 29.26 syst_JER_NOISE_FORWARD: 17.42 - syst_JER_NP0: 56.03190096721688 - syst_JER_NP1: 13.475314467573659 - syst_JER_NP2: 10.0005800206788 - syst_JER_NP3: 13.750744588930447 - syst_JER_NP4: 1.689708575465012 - syst_JER_NP5: 9.161606900538791 - syst_JER_NP6: 6.774730603500038 - syst_JER_NP7: 7.465455160269867 - syst_JER_NP8: 6.578775189957475 - syst_JES_EtaIntercalibration_Modelling: 86.77581564439483 - syst_JES_EtaIntercalibration_NonClosure: 33.82346337973094 + syst_JER_NP0: 5.60319010e+01 + syst_JER_NP1: 1.34753145e+01 + syst_JER_NP2: 1.00005800e+01 + syst_JER_NP3: 1.37507446e+01 + syst_JER_NP4: 1.68970858e+00 + syst_JER_NP5: 9.16160690e+00 + syst_JER_NP6: 6.77473060e+00 + syst_JER_NP7: 7.46545516e+00 + syst_JER_NP8: 6.57877519e+00 + syst_JES_EtaIntercalibration_Modelling: 8.67758156e+01 + syst_JES_EtaIntercalibration_NonClosure: 3.38234634e+01 syst_JES_EtaIntercalibration_Stat0: 0.0 - syst_JES_EtaIntercalibration_Stat1: 0.0059062932538098715 + syst_JES_EtaIntercalibration_Stat1: 5.90629325e-03 syst_JES_EtaIntercalibration_Stat10: 0.0 syst_JES_EtaIntercalibration_Stat100: 0.0 syst_JES_EtaIntercalibration_Stat101: 0.0 syst_JES_EtaIntercalibration_Stat102: 0.0 - syst_JES_EtaIntercalibration_Stat103: 0.028450720113909242 - syst_JES_EtaIntercalibration_Stat104: 1.1255164359084235 - syst_JES_EtaIntercalibration_Stat105: 5.505839332018326 - syst_JES_EtaIntercalibration_Stat106: 5.079601633002335 - syst_JES_EtaIntercalibration_Stat107: 0.4329032236828458 - syst_JES_EtaIntercalibration_Stat108: 0.18452156378049694 - syst_JES_EtaIntercalibration_Stat109: 5.2265861468074934 + syst_JES_EtaIntercalibration_Stat103: 2.84507201e-02 + syst_JES_EtaIntercalibration_Stat104: 1.12551644e+00 + syst_JES_EtaIntercalibration_Stat105: 5.50583933e+00 + syst_JES_EtaIntercalibration_Stat106: 5.07960163e+00 + syst_JES_EtaIntercalibration_Stat107: 4.32903224e-01 + syst_JES_EtaIntercalibration_Stat108: 1.84521564e-01 + syst_JES_EtaIntercalibration_Stat109: 5.22658615e+00 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 4.362247008996625 - syst_JES_EtaIntercalibration_Stat111: 0.8582878538112957 - syst_JES_EtaIntercalibration_Stat112: 0.04745082796959396 + syst_JES_EtaIntercalibration_Stat110: 4.36224701e+00 + syst_JES_EtaIntercalibration_Stat111: 8.58287854e-01 + syst_JES_EtaIntercalibration_Stat112: 4.74508280e-02 syst_JES_EtaIntercalibration_Stat113: 0.0 syst_JES_EtaIntercalibration_Stat114: 0.0 syst_JES_EtaIntercalibration_Stat115: 0.0 syst_JES_EtaIntercalibration_Stat116: 0.0 syst_JES_EtaIntercalibration_Stat117: 0.0 - syst_JES_EtaIntercalibration_Stat118: 0.010549055443498248 - syst_JES_EtaIntercalibration_Stat119: 0.010549055443498248 + syst_JES_EtaIntercalibration_Stat118: 1.05490554e-02 + syst_JES_EtaIntercalibration_Stat119: 1.05490554e-02 syst_JES_EtaIntercalibration_Stat12: 0.0 syst_JES_EtaIntercalibration_Stat120: 0.0 syst_JES_EtaIntercalibration_Stat121: 0.0 syst_JES_EtaIntercalibration_Stat122: 0.0 - syst_JES_EtaIntercalibration_Stat123: 0.014032059720511456 - syst_JES_EtaIntercalibration_Stat124: 1.037902571294628 - syst_JES_EtaIntercalibration_Stat125: 5.354510505172251 - syst_JES_EtaIntercalibration_Stat126: 3.215884442886591 - syst_JES_EtaIntercalibration_Stat127: 0.2555056106526822 - syst_JES_EtaIntercalibration_Stat128: 0.36298015097247394 - syst_JES_EtaIntercalibration_Stat129: 1.5844673576631363 + syst_JES_EtaIntercalibration_Stat123: 1.40320597e-02 + syst_JES_EtaIntercalibration_Stat124: 1.03790257e+00 + syst_JES_EtaIntercalibration_Stat125: 5.35451051e+00 + syst_JES_EtaIntercalibration_Stat126: 3.21588444e+00 + syst_JES_EtaIntercalibration_Stat127: 2.55505611e-01 + syst_JES_EtaIntercalibration_Stat128: 3.62980151e-01 + syst_JES_EtaIntercalibration_Stat129: 1.58446736e+00 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 0.35830450736768577 - syst_JES_EtaIntercalibration_Stat131: 0.024798094180803493 + syst_JES_EtaIntercalibration_Stat130: 3.58304507e-01 + syst_JES_EtaIntercalibration_Stat131: 2.47980942e-02 syst_JES_EtaIntercalibration_Stat132: 0.0 syst_JES_EtaIntercalibration_Stat133: 0.0 syst_JES_EtaIntercalibration_Stat134: 0.0 syst_JES_EtaIntercalibration_Stat135: 0.0 syst_JES_EtaIntercalibration_Stat136: 0.0 - syst_JES_EtaIntercalibration_Stat137: 0.010549055443498248 - syst_JES_EtaIntercalibration_Stat138: 0.010549055443498248 - syst_JES_EtaIntercalibration_Stat139: 0.000728154159501956 + syst_JES_EtaIntercalibration_Stat137: 1.05490554e-02 + syst_JES_EtaIntercalibration_Stat138: 1.05490554e-02 + syst_JES_EtaIntercalibration_Stat139: 7.28154160e-04 syst_JES_EtaIntercalibration_Stat14: 0.0 syst_JES_EtaIntercalibration_Stat140: 0.0 syst_JES_EtaIntercalibration_Stat141: 0.0 - syst_JES_EtaIntercalibration_Stat142: 0.012690815576628635 - syst_JES_EtaIntercalibration_Stat143: 0.2055313848460862 - syst_JES_EtaIntercalibration_Stat144: 0.9293352947133774 - syst_JES_EtaIntercalibration_Stat145: 0.8014498908228761 - syst_JES_EtaIntercalibration_Stat146: 0.5121431245267284 - syst_JES_EtaIntercalibration_Stat147: 0.4666799840361701 - syst_JES_EtaIntercalibration_Stat148: 0.0581714132263434 - syst_JES_EtaIntercalibration_Stat149: 0.0003053605573738287 + syst_JES_EtaIntercalibration_Stat142: 1.26908156e-02 + syst_JES_EtaIntercalibration_Stat143: 2.05531385e-01 + syst_JES_EtaIntercalibration_Stat144: 9.29335295e-01 + syst_JES_EtaIntercalibration_Stat145: 8.01449891e-01 + syst_JES_EtaIntercalibration_Stat146: 5.12143125e-01 + syst_JES_EtaIntercalibration_Stat147: 4.66679984e-01 + syst_JES_EtaIntercalibration_Stat148: 5.81714132e-02 + syst_JES_EtaIntercalibration_Stat149: 3.05360557e-04 syst_JES_EtaIntercalibration_Stat15: 0.0 syst_JES_EtaIntercalibration_Stat150: 0.0 syst_JES_EtaIntercalibration_Stat151: 0.0 @@ -53998,60 +53998,60 @@ bins: syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 0.010549055443498248 - syst_JES_EtaIntercalibration_Stat157: 0.000728154159501956 + syst_JES_EtaIntercalibration_Stat156: 1.05490554e-02 + syst_JES_EtaIntercalibration_Stat157: 7.28154160e-04 syst_JES_EtaIntercalibration_Stat158: 0.0 syst_JES_EtaIntercalibration_Stat159: 0.0 - syst_JES_EtaIntercalibration_Stat16: 0.0016419841655752956 - syst_JES_EtaIntercalibration_Stat160: 0.013065080241621176 - syst_JES_EtaIntercalibration_Stat161: 0.05464419708441145 - syst_JES_EtaIntercalibration_Stat162: 0.4773004164045952 - syst_JES_EtaIntercalibration_Stat163: 0.43949409552347807 - syst_JES_EtaIntercalibration_Stat164: 0.042838370892810576 - syst_JES_EtaIntercalibration_Stat165: 0.011706704521341607 - syst_JES_EtaIntercalibration_Stat166: 0.001103592292243834 - syst_JES_EtaIntercalibration_Stat167: 1.6930796643984426e-15 + syst_JES_EtaIntercalibration_Stat16: 1.64198417e-03 + syst_JES_EtaIntercalibration_Stat160: 1.30650802e-02 + syst_JES_EtaIntercalibration_Stat161: 5.46441971e-02 + syst_JES_EtaIntercalibration_Stat162: 4.77300416e-01 + syst_JES_EtaIntercalibration_Stat163: 4.39494096e-01 + syst_JES_EtaIntercalibration_Stat164: 4.28383709e-02 + syst_JES_EtaIntercalibration_Stat165: 1.17067045e-02 + syst_JES_EtaIntercalibration_Stat166: 1.10359229e-03 + syst_JES_EtaIntercalibration_Stat167: 1.69307966e-15 syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 - syst_JES_EtaIntercalibration_Stat17: 0.004765408796735072 + syst_JES_EtaIntercalibration_Stat17: 4.76540880e-03 syst_JES_EtaIntercalibration_Stat170: 0.0 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 - syst_JES_EtaIntercalibration_Stat174: 0.000728154159501956 - syst_JES_EtaIntercalibration_Stat175: 0.000728154159501956 + syst_JES_EtaIntercalibration_Stat174: 7.28154160e-04 + syst_JES_EtaIntercalibration_Stat175: 7.28154160e-04 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 - syst_JES_EtaIntercalibration_Stat178: 2.7043409639087673e-08 - syst_JES_EtaIntercalibration_Stat179: 0.0033303853031593804 - syst_JES_EtaIntercalibration_Stat18: 0.029924673348258955 - syst_JES_EtaIntercalibration_Stat180: 0.008788499914661204 - syst_JES_EtaIntercalibration_Stat181: 0.012077398638779793 - syst_JES_EtaIntercalibration_Stat182: 0.0010967020424892079 - syst_JES_EtaIntercalibration_Stat183: 9.204984022733978e-05 - syst_JES_EtaIntercalibration_Stat184: 2.0923173768921825e-19 + syst_JES_EtaIntercalibration_Stat178: 2.70434096e-08 + syst_JES_EtaIntercalibration_Stat179: 3.33038530e-03 + syst_JES_EtaIntercalibration_Stat18: 2.99246733e-02 + syst_JES_EtaIntercalibration_Stat180: 8.78849991e-03 + syst_JES_EtaIntercalibration_Stat181: 1.20773986e-02 + syst_JES_EtaIntercalibration_Stat182: 1.09670204e-03 + syst_JES_EtaIntercalibration_Stat183: 9.20498402e-05 + syst_JES_EtaIntercalibration_Stat184: 2.09231738e-19 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 syst_JES_EtaIntercalibration_Stat187: 0.0 - syst_JES_EtaIntercalibration_Stat188: 1.425477814629186e-08 + syst_JES_EtaIntercalibration_Stat188: 1.42547781e-08 syst_JES_EtaIntercalibration_Stat189: 0.0 - syst_JES_EtaIntercalibration_Stat19: 0.009371935912606317 + syst_JES_EtaIntercalibration_Stat19: 9.37193591e-03 syst_JES_EtaIntercalibration_Stat190: 0.0 - syst_JES_EtaIntercalibration_Stat191: 0.000728154159501956 - syst_JES_EtaIntercalibration_Stat192: 0.000728154159501956 + syst_JES_EtaIntercalibration_Stat191: 7.28154160e-04 + syst_JES_EtaIntercalibration_Stat192: 7.28154160e-04 syst_JES_EtaIntercalibration_Stat193: 0.0 syst_JES_EtaIntercalibration_Stat194: 0.0 - syst_JES_EtaIntercalibration_Stat195: 1.82817962738895e-11 - syst_JES_EtaIntercalibration_Stat196: 0.00014217372295892094 - syst_JES_EtaIntercalibration_Stat197: 0.0012951953288983095 - syst_JES_EtaIntercalibration_Stat198: 3.0766531734987614e-08 - syst_JES_EtaIntercalibration_Stat199: 1.3882387222663202e-15 - syst_JES_EtaIntercalibration_Stat2: 0.03305403495414743 + syst_JES_EtaIntercalibration_Stat195: 1.82817963e-11 + syst_JES_EtaIntercalibration_Stat196: 1.42173723e-04 + syst_JES_EtaIntercalibration_Stat197: 1.29519533e-03 + syst_JES_EtaIntercalibration_Stat198: 3.07665317e-08 + syst_JES_EtaIntercalibration_Stat199: 1.38823872e-15 + syst_JES_EtaIntercalibration_Stat2: 3.30540350e-02 syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 syst_JES_EtaIntercalibration_Stat201: 0.0 syst_JES_EtaIntercalibration_Stat202: 0.0 - syst_JES_EtaIntercalibration_Stat203: 1.425477814629186e-08 + syst_JES_EtaIntercalibration_Stat203: 1.42547781e-08 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 @@ -54059,8 +54059,8 @@ bins: syst_JES_EtaIntercalibration_Stat208: 0.0 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 5.003028757662702e-27 - syst_JES_EtaIntercalibration_Stat211: 2.725786996447081e-08 + syst_JES_EtaIntercalibration_Stat210: 5.00302876e-27 + syst_JES_EtaIntercalibration_Stat211: 2.72578700e-08 syst_JES_EtaIntercalibration_Stat212: 0.0 syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 @@ -54080,7 +54080,7 @@ bins: syst_JES_EtaIntercalibration_Stat227: 0.0 syst_JES_EtaIntercalibration_Stat228: 0.0 syst_JES_EtaIntercalibration_Stat229: 0.0 - syst_JES_EtaIntercalibration_Stat23: 0.028127462892162884 + syst_JES_EtaIntercalibration_Stat23: 2.81274629e-02 syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 syst_JES_EtaIntercalibration_Stat232: 0.0 @@ -54091,19 +54091,19 @@ bins: syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 syst_JES_EtaIntercalibration_Stat239: 0.0 - syst_JES_EtaIntercalibration_Stat24: 0.27897127284901574 + syst_JES_EtaIntercalibration_Stat24: 2.78971273e-01 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 syst_JES_EtaIntercalibration_Stat243: 0.0 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 - syst_JES_EtaIntercalibration_Stat25: 0.2228111870508301 - syst_JES_EtaIntercalibration_Stat26: 0.03389201428065319 + syst_JES_EtaIntercalibration_Stat25: 2.22811187e-01 + syst_JES_EtaIntercalibration_Stat26: 3.38920143e-02 syst_JES_EtaIntercalibration_Stat27: 0.0 syst_JES_EtaIntercalibration_Stat28: 0.0 syst_JES_EtaIntercalibration_Stat29: 0.0 - syst_JES_EtaIntercalibration_Stat3: 0.013710030151316225 + syst_JES_EtaIntercalibration_Stat3: 1.37100302e-02 syst_JES_EtaIntercalibration_Stat30: 0.0 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 @@ -54112,19 +54112,19 @@ bins: syst_JES_EtaIntercalibration_Stat35: 0.0 syst_JES_EtaIntercalibration_Stat36: 0.0 syst_JES_EtaIntercalibration_Stat37: 0.0 - syst_JES_EtaIntercalibration_Stat38: 0.0016419841655752956 - syst_JES_EtaIntercalibration_Stat39: 0.037799032725719314 + syst_JES_EtaIntercalibration_Stat38: 1.64198417e-03 + syst_JES_EtaIntercalibration_Stat39: 3.77990327e-02 syst_JES_EtaIntercalibration_Stat4: 0.0 - syst_JES_EtaIntercalibration_Stat40: 0.18899955026401516 - syst_JES_EtaIntercalibration_Stat41: 0.16123939562030118 - syst_JES_EtaIntercalibration_Stat42: 0.002247335922820618 + syst_JES_EtaIntercalibration_Stat40: 1.88999550e-01 + syst_JES_EtaIntercalibration_Stat41: 1.61239396e-01 + syst_JES_EtaIntercalibration_Stat42: 2.24733592e-03 syst_JES_EtaIntercalibration_Stat43: 0.0 - syst_JES_EtaIntercalibration_Stat44: 0.0414219950630097 - syst_JES_EtaIntercalibration_Stat45: 0.10825112562925156 - syst_JES_EtaIntercalibration_Stat46: 0.48688096081075094 - syst_JES_EtaIntercalibration_Stat47: 0.7553685921455829 - syst_JES_EtaIntercalibration_Stat48: 0.17164553788257939 - syst_JES_EtaIntercalibration_Stat49: 0.012138212059442693 + syst_JES_EtaIntercalibration_Stat44: 4.14219951e-02 + syst_JES_EtaIntercalibration_Stat45: 1.08251126e-01 + syst_JES_EtaIntercalibration_Stat46: 4.86880961e-01 + syst_JES_EtaIntercalibration_Stat47: 7.55368592e-01 + syst_JES_EtaIntercalibration_Stat48: 1.71645538e-01 + syst_JES_EtaIntercalibration_Stat49: 1.21382121e-02 syst_JES_EtaIntercalibration_Stat5: 0.0 syst_JES_EtaIntercalibration_Stat50: 0.0 syst_JES_EtaIntercalibration_Stat51: 0.0 @@ -54135,21 +54135,21 @@ bins: syst_JES_EtaIntercalibration_Stat56: 0.0 syst_JES_EtaIntercalibration_Stat57: 0.0 syst_JES_EtaIntercalibration_Stat58: 0.0 - syst_JES_EtaIntercalibration_Stat59: 0.0016419841655752956 + syst_JES_EtaIntercalibration_Stat59: 1.64198417e-03 syst_JES_EtaIntercalibration_Stat6: 0.0 - syst_JES_EtaIntercalibration_Stat60: 0.0023275697089453623 - syst_JES_EtaIntercalibration_Stat61: 0.11129543869808861 - syst_JES_EtaIntercalibration_Stat62: 0.6184686956507985 - syst_JES_EtaIntercalibration_Stat63: 0.4684092334700502 - syst_JES_EtaIntercalibration_Stat64: 0.027184022421267977 + syst_JES_EtaIntercalibration_Stat60: 2.32756971e-03 + syst_JES_EtaIntercalibration_Stat61: 1.11295439e-01 + syst_JES_EtaIntercalibration_Stat62: 6.18468696e-01 + syst_JES_EtaIntercalibration_Stat63: 4.68409233e-01 + syst_JES_EtaIntercalibration_Stat64: 2.71840224e-02 syst_JES_EtaIntercalibration_Stat65: 0.0 - syst_JES_EtaIntercalibration_Stat66: 0.0414219950630097 - syst_JES_EtaIntercalibration_Stat67: 0.21677028094275286 - syst_JES_EtaIntercalibration_Stat68: 2.8312341390284206 - syst_JES_EtaIntercalibration_Stat69: 4.9766071524684365 + syst_JES_EtaIntercalibration_Stat66: 4.14219951e-02 + syst_JES_EtaIntercalibration_Stat67: 2.16770281e-01 + syst_JES_EtaIntercalibration_Stat68: 2.83123414e+00 + syst_JES_EtaIntercalibration_Stat69: 4.97660715e+00 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 0.6673670710336254 - syst_JES_EtaIntercalibration_Stat71: 0.05971812770633387 + syst_JES_EtaIntercalibration_Stat70: 6.67367071e-01 + syst_JES_EtaIntercalibration_Stat71: 5.97181277e-02 syst_JES_EtaIntercalibration_Stat72: 0.0 syst_JES_EtaIntercalibration_Stat73: 0.0 syst_JES_EtaIntercalibration_Stat74: 0.0 @@ -54160,19 +54160,19 @@ bins: syst_JES_EtaIntercalibration_Stat79: 0.0 syst_JES_EtaIntercalibration_Stat8: 0.0 syst_JES_EtaIntercalibration_Stat80: 0.0 - syst_JES_EtaIntercalibration_Stat81: 0.0016419841655752956 - syst_JES_EtaIntercalibration_Stat82: 0.029305326149865658 - syst_JES_EtaIntercalibration_Stat83: 0.8894297274096475 - syst_JES_EtaIntercalibration_Stat84: 4.2089982181036865 - syst_JES_EtaIntercalibration_Stat85: 2.971592965060996 - syst_JES_EtaIntercalibration_Stat86: 0.25005187461804795 + syst_JES_EtaIntercalibration_Stat81: 1.64198417e-03 + syst_JES_EtaIntercalibration_Stat82: 2.93053261e-02 + syst_JES_EtaIntercalibration_Stat83: 8.89429727e-01 + syst_JES_EtaIntercalibration_Stat84: 4.20899822e+00 + syst_JES_EtaIntercalibration_Stat85: 2.97159297e+00 + syst_JES_EtaIntercalibration_Stat86: 2.50051875e-01 syst_JES_EtaIntercalibration_Stat87: 0.0 - syst_JES_EtaIntercalibration_Stat88: 0.30391062419731235 - syst_JES_EtaIntercalibration_Stat89: 4.684256291024222 + syst_JES_EtaIntercalibration_Stat88: 3.03910624e-01 + syst_JES_EtaIntercalibration_Stat89: 4.68425629e+00 syst_JES_EtaIntercalibration_Stat9: 0.0 - syst_JES_EtaIntercalibration_Stat90: 5.673355510630371 - syst_JES_EtaIntercalibration_Stat91: 1.1252028383807073 - syst_JES_EtaIntercalibration_Stat92: 0.05691102363119117 + syst_JES_EtaIntercalibration_Stat90: 5.67335551e+00 + syst_JES_EtaIntercalibration_Stat91: 1.12520284e+00 + syst_JES_EtaIntercalibration_Stat92: 5.69110236e-02 syst_JES_EtaIntercalibration_Stat93: 0.0 syst_JES_EtaIntercalibration_Stat94: 0.0 syst_JES_EtaIntercalibration_Stat95: 0.0 @@ -54180,37 +54180,37 @@ bins: syst_JES_EtaIntercalibration_Stat97: 0.0 syst_JES_EtaIntercalibration_Stat98: 0.0 syst_JES_EtaIntercalibration_Stat99: 0.0 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0029020511280816535 - syst_JES_Flavour_Comp: 10.108675927142981 - syst_JES_Flavour_Response: 84.97822526241649 - syst_JES_Gjet_Generator: 55.63133035214959 - syst_JES_Gjet_OOC: 33.14071023680694 - syst_JES_Gjet_Purity: 14.381014454828978 - syst_JES_Gjet_Stat1: 0.13071669824471546 - syst_JES_Gjet_Stat10: 0.29191964489393313 - syst_JES_Gjet_Stat11: 0.21445616685001156 - syst_JES_Gjet_Stat12: 0.004159045848208457 - syst_JES_Gjet_Stat13: 0.00029509440438612184 - syst_JES_Gjet_Stat14: 6.471060712897075e-08 - syst_JES_Gjet_Stat15: 1.77879481843944e-11 - syst_JES_Gjet_Stat2: 0.2651907002517245 - syst_JES_Gjet_Stat3: 0.7562248937981346 - syst_JES_Gjet_Stat4: 1.0789332185079854 - syst_JES_Gjet_Stat5: 1.423274773190335 - syst_JES_Gjet_Stat6: 3.0941917393723357 - syst_JES_Gjet_Stat7: 4.920835904599949 - syst_JES_Gjet_Stat8: 2.449117392041468 - syst_JES_Gjet_Stat9: 1.0499321263777006 - syst_JES_Gjet_Veto: 11.694495500020512 - syst_JES_Gjet_dPhi: 6.675376318980077 - syst_JES_LArESZee: 36.18503385379099 - syst_JES_LArEsmear: 4.047915759993037 - syst_JES_LAr_JVT: 6.5178107520853965 - syst_JES_MJB_Alpha: 9.71462629234908e-07 - syst_JES_MJB_Asym: 0.0006392016426762371 - syst_JES_MJB_Beta: 5.802153206767295e-08 - syst_JES_MJB_Fragmentation: 0.005152925455505833 - syst_JES_MJB_Stat1: 0.000507205061784679 + syst_JES_EtaIntercalibration_TotalStat_MJB: 2.90205113e-03 + syst_JES_Flavour_Comp: 1.01086759e+01 + syst_JES_Flavour_Response: 8.49782253e+01 + syst_JES_Gjet_Generator: 5.56313304e+01 + syst_JES_Gjet_OOC: 3.31407102e+01 + syst_JES_Gjet_Purity: 1.43810145e+01 + syst_JES_Gjet_Stat1: 1.30716698e-01 + syst_JES_Gjet_Stat10: 2.91919645e-01 + syst_JES_Gjet_Stat11: 2.14456167e-01 + syst_JES_Gjet_Stat12: 4.15904585e-03 + syst_JES_Gjet_Stat13: 2.95094404e-04 + syst_JES_Gjet_Stat14: 6.47106071e-08 + syst_JES_Gjet_Stat15: 1.77879482e-11 + syst_JES_Gjet_Stat2: 2.65190700e-01 + syst_JES_Gjet_Stat3: 7.56224894e-01 + syst_JES_Gjet_Stat4: 1.07893322e+00 + syst_JES_Gjet_Stat5: 1.42327477e+00 + syst_JES_Gjet_Stat6: 3.09419174e+00 + syst_JES_Gjet_Stat7: 4.92083590e+00 + syst_JES_Gjet_Stat8: 2.44911739e+00 + syst_JES_Gjet_Stat9: 1.04993213e+00 + syst_JES_Gjet_Veto: 1.16944955e+01 + syst_JES_Gjet_dPhi: 6.67537632e+00 + syst_JES_LArESZee: 3.61850339e+01 + syst_JES_LArEsmear: 4.04791576e+00 + syst_JES_LAr_JVT: 6.51781075e+00 + syst_JES_MJB_Alpha: 9.71462629e-07 + syst_JES_MJB_Asym: 6.39201643e-04 + syst_JES_MJB_Beta: 5.80215321e-08 + syst_JES_MJB_Fragmentation: 5.15292546e-03 + syst_JES_MJB_Stat1: 5.07205062e-04 syst_JES_MJB_Stat10: 0.0 syst_JES_MJB_Stat11: 0.0 syst_JES_MJB_Stat12: 0.0 @@ -54218,116 +54218,116 @@ bins: syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 9.123577633262697e-05 - syst_JES_MJB_Stat3: 5.6855454223847344e-08 - syst_JES_MJB_Stat4: 1.3189566899637002e-08 - syst_JES_MJB_Stat5: 1.3319470710187794e-15 - syst_JES_MJB_Stat6: 3.168786952447261e-27 + syst_JES_MJB_Stat2: 9.12357763e-05 + syst_JES_MJB_Stat3: 5.68554542e-08 + syst_JES_MJB_Stat4: 1.31895669e-08 + syst_JES_MJB_Stat5: 1.33194707e-15 + syst_JES_MJB_Stat6: 3.16878695e-27 syst_JES_MJB_Stat7: 0.0 syst_JES_MJB_Stat8: 0.0 syst_JES_MJB_Stat9: 0.0 - syst_JES_MJB_Threshold: 0.0006374692992607565 - syst_JES_Pileup_MuOffset: 1.8399458551816137 - syst_JES_Pileup_NPVOffset: 4.690997655083618 - syst_JES_Pileup_Pt_term: 33.762983798829154 - syst_JES_Pileup_Rho_topology: 25.096407611449095 - syst_JES_PunchThrough_MC15: 0.0074763822133435635 + syst_JES_MJB_Threshold: 6.37469299e-04 + syst_JES_Pileup_MuOffset: 1.83994586e+00 + syst_JES_Pileup_NPVOffset: 4.69099766e+00 + syst_JES_Pileup_Pt_term: 3.37629838e+01 + syst_JES_Pileup_Rho_topology: 2.50964076e+01 + syst_JES_PunchThrough_MC15: 7.47638221e-03 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 49.956107201722595 - syst_JES_Zjet_MuScale: 4.125988608806379 - syst_JES_Zjet_MuSmearID: 0.8588815576084982 - syst_JES_Zjet_MuSmearMS: 2.3611531081232324 - syst_JES_Zjet_OOC: 28.731710704376795 - syst_JES_Zjet_Stat1: 0.9737986804262984 - syst_JES_Zjet_Stat10: 4.58668049901015 - syst_JES_Zjet_Stat11: 0.7332855037432555 - syst_JES_Zjet_Stat12: 0.3920166705638932 - syst_JES_Zjet_Stat13: 0.0025915062704921247 - syst_JES_Zjet_Stat2: 0.042473587969466396 - syst_JES_Zjet_Stat3: 0.4023327007278926 - syst_JES_Zjet_Stat4: 0.6460549512232188 - syst_JES_Zjet_Stat5: 0.8746754376338689 - syst_JES_Zjet_Stat6: 1.469685907770773 - syst_JES_Zjet_Stat7: 2.342480896400225 - syst_JES_Zjet_Stat8: 4.090148499749123 - syst_JES_Zjet_Stat9: 6.424744275066518 - syst_JES_Zjet_Veto: 4.993577950728315 - syst_JES_Zjet_dPhi: 7.4456432898709295 + syst_JES_Zjet_MC: 4.99561072e+01 + syst_JES_Zjet_MuScale: 4.12598861e+00 + syst_JES_Zjet_MuSmearID: 8.58881558e-01 + syst_JES_Zjet_MuSmearMS: 2.36115311e+00 + syst_JES_Zjet_OOC: 2.87317107e+01 + syst_JES_Zjet_Stat1: 9.73798680e-01 + syst_JES_Zjet_Stat10: 4.58668050e+00 + syst_JES_Zjet_Stat11: 7.33285504e-01 + syst_JES_Zjet_Stat12: 3.92016671e-01 + syst_JES_Zjet_Stat13: 2.59150627e-03 + syst_JES_Zjet_Stat2: 4.24735880e-02 + syst_JES_Zjet_Stat3: 4.02332701e-01 + syst_JES_Zjet_Stat4: 6.46054951e-01 + syst_JES_Zjet_Stat5: 8.74675438e-01 + syst_JES_Zjet_Stat6: 1.46968591e+00 + syst_JES_Zjet_Stat7: 2.34248090e+00 + syst_JES_Zjet_Stat8: 4.09014850e+00 + syst_JES_Zjet_Stat9: 6.42474428e+00 + syst_JES_Zjet_Veto: 4.99357795e+00 + syst_JES_Zjet_dPhi: 7.44564329e+00 syst_PRW: 0.0 syst_Unfolding_bias: 3.515 - syst_cleaning: 18.732129483857406 + syst_cleaning: 1.87321295e+01 syst_lumi: 45.966 - stat: 10.762 syst_JER_CROSS_CALIB_FORWARD: 10.671 syst_JER_NOISE_FORWARD: 6.871 - syst_JER_NP0: 21.643749097603216 - syst_JER_NP1: 3.9103770917905094 - syst_JER_NP2: 3.2155803131005767 - syst_JER_NP3: 5.021340159758149 - syst_JER_NP4: 0.6107465748573626 - syst_JER_NP5: 2.4763575569775864 - syst_JER_NP6: 1.9597527267489643 - syst_JER_NP7: 1.9960462795235987 - syst_JER_NP8: 1.704078269916027 - syst_JES_EtaIntercalibration_Modelling: 40.368058719116036 - syst_JES_EtaIntercalibration_NonClosure: 20.9861764025751 + syst_JER_NP0: 2.16437491e+01 + syst_JER_NP1: 3.91037709e+00 + syst_JER_NP2: 3.21558031e+00 + syst_JER_NP3: 5.02134016e+00 + syst_JER_NP4: 6.10746575e-01 + syst_JER_NP5: 2.47635756e+00 + syst_JER_NP6: 1.95975273e+00 + syst_JER_NP7: 1.99604628e+00 + syst_JER_NP8: 1.70407827e+00 + syst_JES_EtaIntercalibration_Modelling: 4.03680587e+01 + syst_JES_EtaIntercalibration_NonClosure: 2.09861764e+01 syst_JES_EtaIntercalibration_Stat0: 0.0 - syst_JES_EtaIntercalibration_Stat1: 0.0001360525909345353 + syst_JES_EtaIntercalibration_Stat1: 1.36052591e-04 syst_JES_EtaIntercalibration_Stat10: 0.0 syst_JES_EtaIntercalibration_Stat100: 0.0 syst_JES_EtaIntercalibration_Stat101: 0.0 syst_JES_EtaIntercalibration_Stat102: 0.0 - syst_JES_EtaIntercalibration_Stat103: 0.0029248964084220143 - syst_JES_EtaIntercalibration_Stat104: 0.3004280279867376 - syst_JES_EtaIntercalibration_Stat105: 1.6009874296820696 - syst_JES_EtaIntercalibration_Stat106: 1.524858026178175 - syst_JES_EtaIntercalibration_Stat107: 0.10536639253101532 - syst_JES_EtaIntercalibration_Stat108: 0.15958636118102323 - syst_JES_EtaIntercalibration_Stat109: 3.514475352026245 + syst_JES_EtaIntercalibration_Stat103: 2.92489641e-03 + syst_JES_EtaIntercalibration_Stat104: 3.00428028e-01 + syst_JES_EtaIntercalibration_Stat105: 1.60098743e+00 + syst_JES_EtaIntercalibration_Stat106: 1.52485803e+00 + syst_JES_EtaIntercalibration_Stat107: 1.05366393e-01 + syst_JES_EtaIntercalibration_Stat108: 1.59586361e-01 + syst_JES_EtaIntercalibration_Stat109: 3.51447535e+00 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 3.0695554645583454 - syst_JES_EtaIntercalibration_Stat111: 0.5013376597414162 - syst_JES_EtaIntercalibration_Stat112: 0.01716715454203171 + syst_JES_EtaIntercalibration_Stat110: 3.06955546e+00 + syst_JES_EtaIntercalibration_Stat111: 5.01337660e-01 + syst_JES_EtaIntercalibration_Stat112: 1.71671545e-02 syst_JES_EtaIntercalibration_Stat113: 0.0 syst_JES_EtaIntercalibration_Stat114: 0.0 syst_JES_EtaIntercalibration_Stat115: 0.0 syst_JES_EtaIntercalibration_Stat116: 0.0 syst_JES_EtaIntercalibration_Stat117: 0.0 - syst_JES_EtaIntercalibration_Stat118: 0.0022975653962401155 - syst_JES_EtaIntercalibration_Stat119: 0.0022975653962401155 + syst_JES_EtaIntercalibration_Stat118: 2.29756540e-03 + syst_JES_EtaIntercalibration_Stat119: 2.29756540e-03 syst_JES_EtaIntercalibration_Stat12: 0.0 syst_JES_EtaIntercalibration_Stat120: 0.0 syst_JES_EtaIntercalibration_Stat121: 0.0 syst_JES_EtaIntercalibration_Stat122: 0.0 - syst_JES_EtaIntercalibration_Stat123: 0.012698441587454737 - syst_JES_EtaIntercalibration_Stat124: 0.5546072123584402 - syst_JES_EtaIntercalibration_Stat125: 3.577973029523839 - syst_JES_EtaIntercalibration_Stat126: 2.356583119688334 - syst_JES_EtaIntercalibration_Stat127: 0.155571816213606 - syst_JES_EtaIntercalibration_Stat128: 1.6753047483965418 - syst_JES_EtaIntercalibration_Stat129: 2.4605122942184217 + syst_JES_EtaIntercalibration_Stat123: 1.26984416e-02 + syst_JES_EtaIntercalibration_Stat124: 5.54607212e-01 + syst_JES_EtaIntercalibration_Stat125: 3.57797303e+00 + syst_JES_EtaIntercalibration_Stat126: 2.35658312e+00 + syst_JES_EtaIntercalibration_Stat127: 1.55571816e-01 + syst_JES_EtaIntercalibration_Stat128: 1.67530475e+00 + syst_JES_EtaIntercalibration_Stat129: 2.46051229e+00 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 0.5020734806778785 - syst_JES_EtaIntercalibration_Stat131: 0.011460395900993126 + syst_JES_EtaIntercalibration_Stat130: 5.02073481e-01 + syst_JES_EtaIntercalibration_Stat131: 1.14603959e-02 syst_JES_EtaIntercalibration_Stat132: 0.0 syst_JES_EtaIntercalibration_Stat133: 0.0 syst_JES_EtaIntercalibration_Stat134: 0.0 syst_JES_EtaIntercalibration_Stat135: 0.0 syst_JES_EtaIntercalibration_Stat136: 0.0 - syst_JES_EtaIntercalibration_Stat137: 0.0022975653962401155 - syst_JES_EtaIntercalibration_Stat138: 0.0022975653962401155 - syst_JES_EtaIntercalibration_Stat139: 0.0002573827500047352 + syst_JES_EtaIntercalibration_Stat137: 2.29756540e-03 + syst_JES_EtaIntercalibration_Stat138: 2.29756540e-03 + syst_JES_EtaIntercalibration_Stat139: 2.57382750e-04 syst_JES_EtaIntercalibration_Stat14: 0.0 syst_JES_EtaIntercalibration_Stat140: 0.0 syst_JES_EtaIntercalibration_Stat141: 0.0 - syst_JES_EtaIntercalibration_Stat142: 0.02372214246226508 - syst_JES_EtaIntercalibration_Stat143: 0.2682546691112757 - syst_JES_EtaIntercalibration_Stat144: 2.9073986224802404 - syst_JES_EtaIntercalibration_Stat145: 1.1011541978760286 - syst_JES_EtaIntercalibration_Stat146: 0.2694075537174116 - syst_JES_EtaIntercalibration_Stat147: 0.40481633798551164 - syst_JES_EtaIntercalibration_Stat148: 0.0509837636115656 - syst_JES_EtaIntercalibration_Stat149: 0.0010381046253566686 + syst_JES_EtaIntercalibration_Stat142: 2.37221425e-02 + syst_JES_EtaIntercalibration_Stat143: 2.68254669e-01 + syst_JES_EtaIntercalibration_Stat144: 2.90739862e+00 + syst_JES_EtaIntercalibration_Stat145: 1.10115420e+00 + syst_JES_EtaIntercalibration_Stat146: 2.69407554e-01 + syst_JES_EtaIntercalibration_Stat147: 4.04816338e-01 + syst_JES_EtaIntercalibration_Stat148: 5.09837636e-02 + syst_JES_EtaIntercalibration_Stat149: 1.03810463e-03 syst_JES_EtaIntercalibration_Stat15: 0.0 syst_JES_EtaIntercalibration_Stat150: 0.0 syst_JES_EtaIntercalibration_Stat151: 0.0 @@ -54335,60 +54335,60 @@ bins: syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 0.0022975653962401155 - syst_JES_EtaIntercalibration_Stat157: 0.0002573827500047352 + syst_JES_EtaIntercalibration_Stat156: 2.29756540e-03 + syst_JES_EtaIntercalibration_Stat157: 2.57382750e-04 syst_JES_EtaIntercalibration_Stat158: 0.0 syst_JES_EtaIntercalibration_Stat159: 0.0 - syst_JES_EtaIntercalibration_Stat16: 0.00019970545811269155 - syst_JES_EtaIntercalibration_Stat160: 0.010730847780115045 - syst_JES_EtaIntercalibration_Stat161: 0.055311270099320624 - syst_JES_EtaIntercalibration_Stat162: 0.37078070338139224 - syst_JES_EtaIntercalibration_Stat163: 0.36055254818126026 - syst_JES_EtaIntercalibration_Stat164: 0.06479867128267369 - syst_JES_EtaIntercalibration_Stat165: 0.03931236065158133 - syst_JES_EtaIntercalibration_Stat166: 0.006535283074779546 - syst_JES_EtaIntercalibration_Stat167: 7.84792220694713e-11 + syst_JES_EtaIntercalibration_Stat16: 1.99705458e-04 + syst_JES_EtaIntercalibration_Stat160: 1.07308478e-02 + syst_JES_EtaIntercalibration_Stat161: 5.53112701e-02 + syst_JES_EtaIntercalibration_Stat162: 3.70780703e-01 + syst_JES_EtaIntercalibration_Stat163: 3.60552548e-01 + syst_JES_EtaIntercalibration_Stat164: 6.47986713e-02 + syst_JES_EtaIntercalibration_Stat165: 3.93123607e-02 + syst_JES_EtaIntercalibration_Stat166: 6.53528307e-03 + syst_JES_EtaIntercalibration_Stat167: 7.84792221e-11 syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 - syst_JES_EtaIntercalibration_Stat17: 0.0007404422867448887 + syst_JES_EtaIntercalibration_Stat17: 7.40442287e-04 syst_JES_EtaIntercalibration_Stat170: 0.0 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 - syst_JES_EtaIntercalibration_Stat174: 0.0002573827500047352 - syst_JES_EtaIntercalibration_Stat175: 0.0002573827500047352 + syst_JES_EtaIntercalibration_Stat174: 2.57382750e-04 + syst_JES_EtaIntercalibration_Stat175: 2.57382750e-04 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 - syst_JES_EtaIntercalibration_Stat178: 3.90260612797077e-06 - syst_JES_EtaIntercalibration_Stat179: 0.01461204855590071 - syst_JES_EtaIntercalibration_Stat18: 0.00531343735895136 - syst_JES_EtaIntercalibration_Stat180: 0.044018869817386265 - syst_JES_EtaIntercalibration_Stat181: 0.05860932604969963 - syst_JES_EtaIntercalibration_Stat182: 0.001949641320858788 - syst_JES_EtaIntercalibration_Stat183: 0.00016861788322347963 - syst_JES_EtaIntercalibration_Stat184: 3.8520812106054583e-13 + syst_JES_EtaIntercalibration_Stat178: 3.90260613e-06 + syst_JES_EtaIntercalibration_Stat179: 1.46120486e-02 + syst_JES_EtaIntercalibration_Stat18: 5.31343736e-03 + syst_JES_EtaIntercalibration_Stat180: 4.40188698e-02 + syst_JES_EtaIntercalibration_Stat181: 5.86093260e-02 + syst_JES_EtaIntercalibration_Stat182: 1.94964132e-03 + syst_JES_EtaIntercalibration_Stat183: 1.68617883e-04 + syst_JES_EtaIntercalibration_Stat184: 3.85208121e-13 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 syst_JES_EtaIntercalibration_Stat187: 0.0 - syst_JES_EtaIntercalibration_Stat188: 2.049016105353982e-06 + syst_JES_EtaIntercalibration_Stat188: 2.04901611e-06 syst_JES_EtaIntercalibration_Stat189: 0.0 - syst_JES_EtaIntercalibration_Stat19: 0.0019193159999072588 + syst_JES_EtaIntercalibration_Stat19: 1.91931600e-03 syst_JES_EtaIntercalibration_Stat190: 0.0 - syst_JES_EtaIntercalibration_Stat191: 0.0002573827500047352 - syst_JES_EtaIntercalibration_Stat192: 0.0002573827500047352 + syst_JES_EtaIntercalibration_Stat191: 2.57382750e-04 + syst_JES_EtaIntercalibration_Stat192: 2.57382750e-04 syst_JES_EtaIntercalibration_Stat193: 0.0 syst_JES_EtaIntercalibration_Stat194: 0.0 - syst_JES_EtaIntercalibration_Stat195: 3.6806079661105206e-08 - syst_JES_EtaIntercalibration_Stat196: 0.0003569252162568512 - syst_JES_EtaIntercalibration_Stat197: 0.0012430501629057454 - syst_JES_EtaIntercalibration_Stat198: 4.5260073740549735e-06 - syst_JES_EtaIntercalibration_Stat199: 6.434568747972658e-11 - syst_JES_EtaIntercalibration_Stat2: 0.009753227238586211 + syst_JES_EtaIntercalibration_Stat195: 3.68060797e-08 + syst_JES_EtaIntercalibration_Stat196: 3.56925216e-04 + syst_JES_EtaIntercalibration_Stat197: 1.24305016e-03 + syst_JES_EtaIntercalibration_Stat198: 4.52600737e-06 + syst_JES_EtaIntercalibration_Stat199: 6.43456875e-11 + syst_JES_EtaIntercalibration_Stat2: 9.75322724e-03 syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 syst_JES_EtaIntercalibration_Stat201: 0.0 syst_JES_EtaIntercalibration_Stat202: 0.0 - syst_JES_EtaIntercalibration_Stat203: 2.049016105353982e-06 + syst_JES_EtaIntercalibration_Stat203: 2.04901611e-06 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 @@ -54396,8 +54396,8 @@ bins: syst_JES_EtaIntercalibration_Stat208: 0.0 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 7.957907435375211e-19 - syst_JES_EtaIntercalibration_Stat211: 4.007345380672847e-06 + syst_JES_EtaIntercalibration_Stat210: 7.95790744e-19 + syst_JES_EtaIntercalibration_Stat211: 4.00734538e-06 syst_JES_EtaIntercalibration_Stat212: 0.0 syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 @@ -54410,37 +54410,37 @@ bins: syst_JES_EtaIntercalibration_Stat220: 0.0 syst_JES_EtaIntercalibration_Stat221: 0.0 syst_JES_EtaIntercalibration_Stat222: 0.0 - syst_JES_EtaIntercalibration_Stat223: 3.719579109254164e-42 + syst_JES_EtaIntercalibration_Stat223: 3.71957911e-42 syst_JES_EtaIntercalibration_Stat224: 0.0 syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 syst_JES_EtaIntercalibration_Stat227: 0.0 syst_JES_EtaIntercalibration_Stat228: 0.0 syst_JES_EtaIntercalibration_Stat229: 0.0 - syst_JES_EtaIntercalibration_Stat23: 0.008812578300786892 + syst_JES_EtaIntercalibration_Stat23: 8.81257830e-03 syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 syst_JES_EtaIntercalibration_Stat232: 0.0 syst_JES_EtaIntercalibration_Stat233: 0.0 syst_JES_EtaIntercalibration_Stat234: 0.0 - syst_JES_EtaIntercalibration_Stat235: 3.719579109254164e-42 + syst_JES_EtaIntercalibration_Stat235: 3.71957911e-42 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 syst_JES_EtaIntercalibration_Stat239: 0.0 - syst_JES_EtaIntercalibration_Stat24: 0.049839854842786205 + syst_JES_EtaIntercalibration_Stat24: 4.98398548e-02 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 syst_JES_EtaIntercalibration_Stat243: 0.0 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 - syst_JES_EtaIntercalibration_Stat25: 0.037000075675598286 - syst_JES_EtaIntercalibration_Stat26: 0.004845457291886907 + syst_JES_EtaIntercalibration_Stat25: 3.70000757e-02 + syst_JES_EtaIntercalibration_Stat26: 4.84545729e-03 syst_JES_EtaIntercalibration_Stat27: 0.0 syst_JES_EtaIntercalibration_Stat28: 0.0 syst_JES_EtaIntercalibration_Stat29: 0.0 - syst_JES_EtaIntercalibration_Stat3: 0.0059163200344470885 + syst_JES_EtaIntercalibration_Stat3: 5.91632003e-03 syst_JES_EtaIntercalibration_Stat30: 0.0 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 @@ -54449,19 +54449,19 @@ bins: syst_JES_EtaIntercalibration_Stat35: 0.0 syst_JES_EtaIntercalibration_Stat36: 0.0 syst_JES_EtaIntercalibration_Stat37: 0.0 - syst_JES_EtaIntercalibration_Stat38: 0.00019970545811269155 - syst_JES_EtaIntercalibration_Stat39: 0.007771914938256851 + syst_JES_EtaIntercalibration_Stat38: 1.99705458e-04 + syst_JES_EtaIntercalibration_Stat39: 7.77191494e-03 syst_JES_EtaIntercalibration_Stat4: 0.0 - syst_JES_EtaIntercalibration_Stat40: 0.012997602663568385 - syst_JES_EtaIntercalibration_Stat41: 0.018222857260868836 - syst_JES_EtaIntercalibration_Stat42: 0.000786697476797784 + syst_JES_EtaIntercalibration_Stat40: 1.29976027e-02 + syst_JES_EtaIntercalibration_Stat41: 1.82228573e-02 + syst_JES_EtaIntercalibration_Stat42: 7.86697477e-04 syst_JES_EtaIntercalibration_Stat43: 0.0 - syst_JES_EtaIntercalibration_Stat44: 0.008132844566939664 - syst_JES_EtaIntercalibration_Stat45: 0.024490718139736124 - syst_JES_EtaIntercalibration_Stat46: 0.11140697330059729 - syst_JES_EtaIntercalibration_Stat47: 0.12115992406732518 - syst_JES_EtaIntercalibration_Stat48: 0.04294068787292537 - syst_JES_EtaIntercalibration_Stat49: 0.0029133094583308513 + syst_JES_EtaIntercalibration_Stat44: 8.13284457e-03 + syst_JES_EtaIntercalibration_Stat45: 2.44907181e-02 + syst_JES_EtaIntercalibration_Stat46: 1.11406973e-01 + syst_JES_EtaIntercalibration_Stat47: 1.21159924e-01 + syst_JES_EtaIntercalibration_Stat48: 4.29406879e-02 + syst_JES_EtaIntercalibration_Stat49: 2.91330946e-03 syst_JES_EtaIntercalibration_Stat5: 0.0 syst_JES_EtaIntercalibration_Stat50: 0.0 syst_JES_EtaIntercalibration_Stat51: 0.0 @@ -54472,21 +54472,21 @@ bins: syst_JES_EtaIntercalibration_Stat56: 0.0 syst_JES_EtaIntercalibration_Stat57: 0.0 syst_JES_EtaIntercalibration_Stat58: 0.0 - syst_JES_EtaIntercalibration_Stat59: 0.00019970545811269155 + syst_JES_EtaIntercalibration_Stat59: 1.99705458e-04 syst_JES_EtaIntercalibration_Stat6: 0.0 - syst_JES_EtaIntercalibration_Stat60: 0.0004558193063045925 - syst_JES_EtaIntercalibration_Stat61: 0.023432281408347758 - syst_JES_EtaIntercalibration_Stat62: 0.07627151024465163 - syst_JES_EtaIntercalibration_Stat63: 0.013516413605317057 - syst_JES_EtaIntercalibration_Stat64: 0.005376872139078629 + syst_JES_EtaIntercalibration_Stat60: 4.55819306e-04 + syst_JES_EtaIntercalibration_Stat61: 2.34322814e-02 + syst_JES_EtaIntercalibration_Stat62: 7.62715102e-02 + syst_JES_EtaIntercalibration_Stat63: 1.35164136e-02 + syst_JES_EtaIntercalibration_Stat64: 5.37687214e-03 syst_JES_EtaIntercalibration_Stat65: 0.0 - syst_JES_EtaIntercalibration_Stat66: 0.008132844566939664 - syst_JES_EtaIntercalibration_Stat67: 0.042473633076886654 - syst_JES_EtaIntercalibration_Stat68: 0.5712747412585297 - syst_JES_EtaIntercalibration_Stat69: 1.1066554420866506 + syst_JES_EtaIntercalibration_Stat66: 8.13284457e-03 + syst_JES_EtaIntercalibration_Stat67: 4.24736331e-02 + syst_JES_EtaIntercalibration_Stat68: 5.71274741e-01 + syst_JES_EtaIntercalibration_Stat69: 1.10665544e+00 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 0.10969074835645894 - syst_JES_EtaIntercalibration_Stat71: 0.0020696839052135475 + syst_JES_EtaIntercalibration_Stat70: 1.09690748e-01 + syst_JES_EtaIntercalibration_Stat71: 2.06968391e-03 syst_JES_EtaIntercalibration_Stat72: 0.0 syst_JES_EtaIntercalibration_Stat73: 0.0 syst_JES_EtaIntercalibration_Stat74: 0.0 @@ -54497,19 +54497,19 @@ bins: syst_JES_EtaIntercalibration_Stat79: 0.0 syst_JES_EtaIntercalibration_Stat8: 0.0 syst_JES_EtaIntercalibration_Stat80: 0.0 - syst_JES_EtaIntercalibration_Stat81: 0.00019970545811269155 - syst_JES_EtaIntercalibration_Stat82: 0.0024924575884054676 - syst_JES_EtaIntercalibration_Stat83: 0.1596860569993511 - syst_JES_EtaIntercalibration_Stat84: 0.8725627599204541 - syst_JES_EtaIntercalibration_Stat85: 0.5719247065829557 - syst_JES_EtaIntercalibration_Stat86: 0.06117473069004881 + syst_JES_EtaIntercalibration_Stat81: 1.99705458e-04 + syst_JES_EtaIntercalibration_Stat82: 2.49245759e-03 + syst_JES_EtaIntercalibration_Stat83: 1.59686057e-01 + syst_JES_EtaIntercalibration_Stat84: 8.72562760e-01 + syst_JES_EtaIntercalibration_Stat85: 5.71924707e-01 + syst_JES_EtaIntercalibration_Stat86: 6.11747307e-02 syst_JES_EtaIntercalibration_Stat87: 0.0 - syst_JES_EtaIntercalibration_Stat88: 0.12403002378456597 - syst_JES_EtaIntercalibration_Stat89: 1.3423917870726114 + syst_JES_EtaIntercalibration_Stat88: 1.24030024e-01 + syst_JES_EtaIntercalibration_Stat89: 1.34239179e+00 syst_JES_EtaIntercalibration_Stat9: 0.0 - syst_JES_EtaIntercalibration_Stat90: 1.6996137061108918 - syst_JES_EtaIntercalibration_Stat91: 0.3108073840821675 - syst_JES_EtaIntercalibration_Stat92: 0.0010538613156744108 + syst_JES_EtaIntercalibration_Stat90: 1.69961371e+00 + syst_JES_EtaIntercalibration_Stat91: 3.10807384e-01 + syst_JES_EtaIntercalibration_Stat92: 1.05386132e-03 syst_JES_EtaIntercalibration_Stat93: 0.0 syst_JES_EtaIntercalibration_Stat94: 0.0 syst_JES_EtaIntercalibration_Stat95: 0.0 @@ -54517,154 +54517,154 @@ bins: syst_JES_EtaIntercalibration_Stat97: 0.0 syst_JES_EtaIntercalibration_Stat98: 0.0 syst_JES_EtaIntercalibration_Stat99: 0.0 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0036892682201217085 - syst_JES_Flavour_Comp: 3.863386209014056 - syst_JES_Flavour_Response: 34.180236979868944 - syst_JES_Gjet_Generator: 25.310142235870586 - syst_JES_Gjet_OOC: 14.187951464182557 - syst_JES_Gjet_Purity: 5.95250004199916 - syst_JES_Gjet_Stat1: 0.048491967035788515 - syst_JES_Gjet_Stat10: 0.1151821187294278 - syst_JES_Gjet_Stat11: 0.20305546040429445 - syst_JES_Gjet_Stat12: 0.022881535678358655 - syst_JES_Gjet_Stat13: 0.00036687781004034566 - syst_JES_Gjet_Stat14: 9.455688393765944e-06 - syst_JES_Gjet_Stat15: 3.586088160332231e-08 - syst_JES_Gjet_Stat2: 0.10426350464088573 - syst_JES_Gjet_Stat3: 0.1830201220494621 - syst_JES_Gjet_Stat4: 0.30891682942177173 - syst_JES_Gjet_Stat5: 0.38817399127195523 - syst_JES_Gjet_Stat6: 0.993570410187421 - syst_JES_Gjet_Stat7: 1.7004608875243208 - syst_JES_Gjet_Stat8: 1.0302497075952024 - syst_JES_Gjet_Stat9: 0.8011756158920466 - syst_JES_Gjet_Veto: 5.3590046650474195 - syst_JES_Gjet_dPhi: 2.687381067135809 - syst_JES_LArESZee: 17.95468462546753 - syst_JES_LArEsmear: 1.6987733074192095 - syst_JES_LAr_JVT: 2.9109352448998242 - syst_JES_MJB_Alpha: 0.0001401479085644877 - syst_JES_MJB_Asym: 0.0017550057179394033 - syst_JES_MJB_Beta: 8.508766949887627e-06 - syst_JES_MJB_Fragmentation: 0.01127567301760742 - syst_JES_MJB_Stat1: 0.00055117232105758 - syst_JES_MJB_Stat10: 3.719579109254164e-42 + syst_JES_EtaIntercalibration_TotalStat_MJB: 3.68926822e-03 + syst_JES_Flavour_Comp: 3.86338621e+00 + syst_JES_Flavour_Response: 3.41802370e+01 + syst_JES_Gjet_Generator: 2.53101422e+01 + syst_JES_Gjet_OOC: 1.41879515e+01 + syst_JES_Gjet_Purity: 5.95250004e+00 + syst_JES_Gjet_Stat1: 4.84919670e-02 + syst_JES_Gjet_Stat10: 1.15182119e-01 + syst_JES_Gjet_Stat11: 2.03055460e-01 + syst_JES_Gjet_Stat12: 2.28815357e-02 + syst_JES_Gjet_Stat13: 3.66877810e-04 + syst_JES_Gjet_Stat14: 9.45568839e-06 + syst_JES_Gjet_Stat15: 3.58608816e-08 + syst_JES_Gjet_Stat2: 1.04263505e-01 + syst_JES_Gjet_Stat3: 1.83020122e-01 + syst_JES_Gjet_Stat4: 3.08916829e-01 + syst_JES_Gjet_Stat5: 3.88173991e-01 + syst_JES_Gjet_Stat6: 9.93570410e-01 + syst_JES_Gjet_Stat7: 1.70046089e+00 + syst_JES_Gjet_Stat8: 1.03024971e+00 + syst_JES_Gjet_Stat9: 8.01175616e-01 + syst_JES_Gjet_Veto: 5.35900467e+00 + syst_JES_Gjet_dPhi: 2.68738107e+00 + syst_JES_LArESZee: 1.79546846e+01 + syst_JES_LArEsmear: 1.69877331e+00 + syst_JES_LAr_JVT: 2.91093524e+00 + syst_JES_MJB_Alpha: 1.40147909e-04 + syst_JES_MJB_Asym: 1.75500572e-03 + syst_JES_MJB_Beta: 8.50876695e-06 + syst_JES_MJB_Fragmentation: 1.12756730e-02 + syst_JES_MJB_Stat1: 5.51172321e-04 + syst_JES_MJB_Stat10: 3.71957911e-42 syst_JES_MJB_Stat11: 0.0 syst_JES_MJB_Stat12: 0.0 syst_JES_MJB_Stat13: 0.0 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 0.00019208647067143643 - syst_JES_MJB_Stat3: 8.191127944306573e-06 - syst_JES_MJB_Stat4: 1.9390308790736638e-06 - syst_JES_MJB_Stat5: 6.172163025930681e-11 - syst_JES_MJB_Stat6: 5.041133875429217e-19 - syst_JES_MJB_Stat7: 1.3163586137523468e-33 - syst_JES_MJB_Stat8: 3.719579109254164e-42 - syst_JES_MJB_Stat9: 3.719579109254164e-42 - syst_JES_MJB_Threshold: 0.001817544004281602 - syst_JES_Pileup_MuOffset: 0.48888175776459486 - syst_JES_Pileup_NPVOffset: 1.7901650063611454 - syst_JES_Pileup_Pt_term: 15.195707313251333 - syst_JES_Pileup_Rho_topology: 10.246092767489467 - syst_JES_PunchThrough_MC15: 0.0206481209798858 + syst_JES_MJB_Stat2: 1.92086471e-04 + syst_JES_MJB_Stat3: 8.19112794e-06 + syst_JES_MJB_Stat4: 1.93903088e-06 + syst_JES_MJB_Stat5: 6.17216303e-11 + syst_JES_MJB_Stat6: 5.04113388e-19 + syst_JES_MJB_Stat7: 1.31635861e-33 + syst_JES_MJB_Stat8: 3.71957911e-42 + syst_JES_MJB_Stat9: 3.71957911e-42 + syst_JES_MJB_Threshold: 1.81754400e-03 + syst_JES_Pileup_MuOffset: 4.88881758e-01 + syst_JES_Pileup_NPVOffset: 1.79016501e+00 + syst_JES_Pileup_Pt_term: 1.51957073e+01 + syst_JES_Pileup_Rho_topology: 1.02460928e+01 + syst_JES_PunchThrough_MC15: 2.06481210e-02 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 21.97519226309522 - syst_JES_Zjet_MuScale: 1.66062668893403 - syst_JES_Zjet_MuSmearID: 0.286948335942204 - syst_JES_Zjet_MuSmearMS: 1.202467641976282 - syst_JES_Zjet_OOC: 10.678643488290074 - syst_JES_Zjet_Stat1: 0.26953860576919214 - syst_JES_Zjet_Stat10: 2.8573359532963565 - syst_JES_Zjet_Stat11: 0.24530087647621648 - syst_JES_Zjet_Stat12: 0.36659273683476057 - syst_JES_Zjet_Stat13: 0.0036743334089328365 - syst_JES_Zjet_Stat2: 0.010405560760958537 - syst_JES_Zjet_Stat3: 0.12587641677454917 - syst_JES_Zjet_Stat4: 0.15094822915586048 - syst_JES_Zjet_Stat5: 0.22360765119959555 - syst_JES_Zjet_Stat6: 0.40827836092548425 - syst_JES_Zjet_Stat7: 0.6180868446262224 - syst_JES_Zjet_Stat8: 1.1995639405634033 - syst_JES_Zjet_Stat9: 2.60837511681123 - syst_JES_Zjet_Veto: 1.8700408417999859 - syst_JES_Zjet_dPhi: 2.4992971011866514 + syst_JES_Zjet_MC: 2.19751923e+01 + syst_JES_Zjet_MuScale: 1.66062669e+00 + syst_JES_Zjet_MuSmearID: 2.86948336e-01 + syst_JES_Zjet_MuSmearMS: 1.20246764e+00 + syst_JES_Zjet_OOC: 1.06786435e+01 + syst_JES_Zjet_Stat1: 2.69538606e-01 + syst_JES_Zjet_Stat10: 2.85733595e+00 + syst_JES_Zjet_Stat11: 2.45300876e-01 + syst_JES_Zjet_Stat12: 3.66592737e-01 + syst_JES_Zjet_Stat13: 3.67433341e-03 + syst_JES_Zjet_Stat2: 1.04055608e-02 + syst_JES_Zjet_Stat3: 1.25876417e-01 + syst_JES_Zjet_Stat4: 1.50948229e-01 + syst_JES_Zjet_Stat5: 2.23607651e-01 + syst_JES_Zjet_Stat6: 4.08278361e-01 + syst_JES_Zjet_Stat7: 6.18086845e-01 + syst_JES_Zjet_Stat8: 1.19956394e+00 + syst_JES_Zjet_Stat9: 2.60837512e+00 + syst_JES_Zjet_Veto: 1.87004084e+00 + syst_JES_Zjet_dPhi: 2.49929710e+00 syst_PRW: 0.0 syst_Unfolding_bias: 0.6173 - syst_cleaning: 6.45621938521299 + syst_cleaning: 6.45621939e+00 syst_lumi: 21.46 - stat: 4.929 syst_JER_CROSS_CALIB_FORWARD: 4.231 syst_JER_NOISE_FORWARD: 3.073 - syst_JER_NP0: 9.28393903469858 - syst_JER_NP1: 1.2214508545168732 - syst_JER_NP2: 1.281788472213727 - syst_JER_NP3: 2.343110912867763 - syst_JER_NP4: 0.3083965142474863 - syst_JER_NP5: 0.7605937992779064 - syst_JER_NP6: 0.6812430256523733 - syst_JER_NP7: 0.45758602196745474 - syst_JER_NP8: 0.5121620934821318 - syst_JES_EtaIntercalibration_Modelling: 18.93443688098487 - syst_JES_EtaIntercalibration_NonClosure: 12.990130137916246 + syst_JER_NP0: 9.28393903e+00 + syst_JER_NP1: 1.22145085e+00 + syst_JER_NP2: 1.28178847e+00 + syst_JER_NP3: 2.34311091e+00 + syst_JER_NP4: 3.08396514e-01 + syst_JER_NP5: 7.60593799e-01 + syst_JER_NP6: 6.81243026e-01 + syst_JER_NP7: 4.57586022e-01 + syst_JER_NP8: 5.12162093e-01 + syst_JES_EtaIntercalibration_Modelling: 1.89344369e+01 + syst_JES_EtaIntercalibration_NonClosure: 1.29901301e+01 syst_JES_EtaIntercalibration_Stat0: 0.0 - syst_JES_EtaIntercalibration_Stat1: 0.00010577634281823133 + syst_JES_EtaIntercalibration_Stat1: 1.05776343e-04 syst_JES_EtaIntercalibration_Stat10: 0.0 syst_JES_EtaIntercalibration_Stat100: 0.0 syst_JES_EtaIntercalibration_Stat101: 0.0 syst_JES_EtaIntercalibration_Stat102: 0.0 - syst_JES_EtaIntercalibration_Stat103: 0.00033063954194863026 - syst_JES_EtaIntercalibration_Stat104: 0.060748735789314987 - syst_JES_EtaIntercalibration_Stat105: 0.3755254851538042 - syst_JES_EtaIntercalibration_Stat106: 0.3687579795746798 - syst_JES_EtaIntercalibration_Stat107: 0.016362895923399377 - syst_JES_EtaIntercalibration_Stat108: 0.08076672202708242 - syst_JES_EtaIntercalibration_Stat109: 1.588181979497312 + syst_JES_EtaIntercalibration_Stat103: 3.30639542e-04 + syst_JES_EtaIntercalibration_Stat104: 6.07487358e-02 + syst_JES_EtaIntercalibration_Stat105: 3.75525485e-01 + syst_JES_EtaIntercalibration_Stat106: 3.68757980e-01 + syst_JES_EtaIntercalibration_Stat107: 1.63628959e-02 + syst_JES_EtaIntercalibration_Stat108: 8.07667220e-02 + syst_JES_EtaIntercalibration_Stat109: 1.58818198e+00 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 1.5195696331527557 - syst_JES_EtaIntercalibration_Stat111: 0.22467347417975272 - syst_JES_EtaIntercalibration_Stat112: 0.005900530145673352 + syst_JES_EtaIntercalibration_Stat110: 1.51956963e+00 + syst_JES_EtaIntercalibration_Stat111: 2.24673474e-01 + syst_JES_EtaIntercalibration_Stat112: 5.90053015e-03 syst_JES_EtaIntercalibration_Stat113: 0.0 syst_JES_EtaIntercalibration_Stat114: 0.0 syst_JES_EtaIntercalibration_Stat115: 0.0 syst_JES_EtaIntercalibration_Stat116: 0.0 syst_JES_EtaIntercalibration_Stat117: 0.0 - syst_JES_EtaIntercalibration_Stat118: 0.00013943009000929463 - syst_JES_EtaIntercalibration_Stat119: 0.00013943009000929463 + syst_JES_EtaIntercalibration_Stat118: 1.39430090e-04 + syst_JES_EtaIntercalibration_Stat119: 1.39430090e-04 syst_JES_EtaIntercalibration_Stat12: 0.0 syst_JES_EtaIntercalibration_Stat120: 0.0 syst_JES_EtaIntercalibration_Stat121: 0.0 syst_JES_EtaIntercalibration_Stat122: 0.0 - syst_JES_EtaIntercalibration_Stat123: 0.007944577521806934 - syst_JES_EtaIntercalibration_Stat124: 0.21258938708223418 - syst_JES_EtaIntercalibration_Stat125: 1.6140892168650403 - syst_JES_EtaIntercalibration_Stat126: 1.2093736674411262 - syst_JES_EtaIntercalibration_Stat127: 0.05594352576482823 - syst_JES_EtaIntercalibration_Stat128: 1.7335324484993064 - syst_JES_EtaIntercalibration_Stat129: 3.318244566031865 + syst_JES_EtaIntercalibration_Stat123: 7.94457752e-03 + syst_JES_EtaIntercalibration_Stat124: 2.12589387e-01 + syst_JES_EtaIntercalibration_Stat125: 1.61408922e+00 + syst_JES_EtaIntercalibration_Stat126: 1.20937367e+00 + syst_JES_EtaIntercalibration_Stat127: 5.59435258e-02 + syst_JES_EtaIntercalibration_Stat128: 1.73353245e+00 + syst_JES_EtaIntercalibration_Stat129: 3.31824457e+00 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 0.47990210199581335 - syst_JES_EtaIntercalibration_Stat131: 0.0075588147880471315 + syst_JES_EtaIntercalibration_Stat130: 4.79902102e-01 + syst_JES_EtaIntercalibration_Stat131: 7.55881479e-03 syst_JES_EtaIntercalibration_Stat132: 0.0 syst_JES_EtaIntercalibration_Stat133: 0.0 syst_JES_EtaIntercalibration_Stat134: 0.0 syst_JES_EtaIntercalibration_Stat135: 0.0 syst_JES_EtaIntercalibration_Stat136: 0.0 - syst_JES_EtaIntercalibration_Stat137: 0.00013943009000929463 - syst_JES_EtaIntercalibration_Stat138: 0.00013943009000929463 - syst_JES_EtaIntercalibration_Stat139: 0.000593140799051962 + syst_JES_EtaIntercalibration_Stat137: 1.39430090e-04 + syst_JES_EtaIntercalibration_Stat138: 1.39430090e-04 + syst_JES_EtaIntercalibration_Stat139: 5.93140799e-04 syst_JES_EtaIntercalibration_Stat14: 0.0 syst_JES_EtaIntercalibration_Stat140: 0.0 syst_JES_EtaIntercalibration_Stat141: 0.0 - syst_JES_EtaIntercalibration_Stat142: 0.01682834142154241 - syst_JES_EtaIntercalibration_Stat143: 0.23638391881640342 - syst_JES_EtaIntercalibration_Stat144: 3.3565167584863924 - syst_JES_EtaIntercalibration_Stat145: 1.4265194951349245 - syst_JES_EtaIntercalibration_Stat146: 0.07748276243784807 - syst_JES_EtaIntercalibration_Stat147: 0.06532772724502207 - syst_JES_EtaIntercalibration_Stat148: 0.01455104899998622 - syst_JES_EtaIntercalibration_Stat149: 0.0013016130491074582 + syst_JES_EtaIntercalibration_Stat142: 1.68283414e-02 + syst_JES_EtaIntercalibration_Stat143: 2.36383919e-01 + syst_JES_EtaIntercalibration_Stat144: 3.35651676e+00 + syst_JES_EtaIntercalibration_Stat145: 1.42651950e+00 + syst_JES_EtaIntercalibration_Stat146: 7.74827624e-02 + syst_JES_EtaIntercalibration_Stat147: 6.53277272e-02 + syst_JES_EtaIntercalibration_Stat148: 1.45510490e-02 + syst_JES_EtaIntercalibration_Stat149: 1.30161305e-03 syst_JES_EtaIntercalibration_Stat15: 0.0 syst_JES_EtaIntercalibration_Stat150: 0.0 syst_JES_EtaIntercalibration_Stat151: 0.0 @@ -54672,60 +54672,60 @@ bins: syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 0.00013943009000929463 - syst_JES_EtaIntercalibration_Stat157: 0.000593140799051962 + syst_JES_EtaIntercalibration_Stat156: 1.39430090e-04 + syst_JES_EtaIntercalibration_Stat157: 5.93140799e-04 syst_JES_EtaIntercalibration_Stat158: 0.0 syst_JES_EtaIntercalibration_Stat159: 0.0 - syst_JES_EtaIntercalibration_Stat16: 1.7918065604300035e-05 - syst_JES_EtaIntercalibration_Stat160: 0.004489851306001124 - syst_JES_EtaIntercalibration_Stat161: 0.023929899707269983 - syst_JES_EtaIntercalibration_Stat162: 0.009886014566042272 - syst_JES_EtaIntercalibration_Stat163: 0.03764127920249258 - syst_JES_EtaIntercalibration_Stat164: 0.08739866074488785 - syst_JES_EtaIntercalibration_Stat165: 0.07360379541844292 - syst_JES_EtaIntercalibration_Stat166: 0.01973411311175397 - syst_JES_EtaIntercalibration_Stat167: 6.939460783988943e-08 + syst_JES_EtaIntercalibration_Stat16: 1.79180656e-05 + syst_JES_EtaIntercalibration_Stat160: 4.48985131e-03 + syst_JES_EtaIntercalibration_Stat161: 2.39298997e-02 + syst_JES_EtaIntercalibration_Stat162: 9.88601457e-03 + syst_JES_EtaIntercalibration_Stat163: 3.76412792e-02 + syst_JES_EtaIntercalibration_Stat164: 8.73986607e-02 + syst_JES_EtaIntercalibration_Stat165: 7.36037954e-02 + syst_JES_EtaIntercalibration_Stat166: 1.97341131e-02 + syst_JES_EtaIntercalibration_Stat167: 6.93946078e-08 syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 - syst_JES_EtaIntercalibration_Stat17: 8.616008400065543e-05 + syst_JES_EtaIntercalibration_Stat17: 8.61600840e-05 syst_JES_EtaIntercalibration_Stat170: 0.0 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 - syst_JES_EtaIntercalibration_Stat174: 0.000593140799051962 - syst_JES_EtaIntercalibration_Stat175: 0.000593140799051962 + syst_JES_EtaIntercalibration_Stat174: 5.93140799e-04 + syst_JES_EtaIntercalibration_Stat175: 5.93140799e-04 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 - syst_JES_EtaIntercalibration_Stat178: 4.7477274226728734e-05 - syst_JES_EtaIntercalibration_Stat179: 0.020450606347979027 - syst_JES_EtaIntercalibration_Stat18: 0.001158668511697802 - syst_JES_EtaIntercalibration_Stat180: 0.10047366520636142 - syst_JES_EtaIntercalibration_Stat181: 0.08905284947715036 - syst_JES_EtaIntercalibration_Stat182: 0.008557784570202735 - syst_JES_EtaIntercalibration_Stat183: 0.0012628759134082612 - syst_JES_EtaIntercalibration_Stat184: 5.1268781500384716e-09 + syst_JES_EtaIntercalibration_Stat178: 4.74772742e-05 + syst_JES_EtaIntercalibration_Stat179: 2.04506063e-02 + syst_JES_EtaIntercalibration_Stat18: 1.15866851e-03 + syst_JES_EtaIntercalibration_Stat180: 1.00473665e-01 + syst_JES_EtaIntercalibration_Stat181: 8.90528495e-02 + syst_JES_EtaIntercalibration_Stat182: 8.55778457e-03 + syst_JES_EtaIntercalibration_Stat183: 1.26287591e-03 + syst_JES_EtaIntercalibration_Stat184: 5.12687815e-09 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 syst_JES_EtaIntercalibration_Stat187: 0.0 - syst_JES_EtaIntercalibration_Stat188: 2.4240051051926438e-05 + syst_JES_EtaIntercalibration_Stat188: 2.42400511e-05 syst_JES_EtaIntercalibration_Stat189: 0.0 - syst_JES_EtaIntercalibration_Stat19: 0.0004417240451628143 + syst_JES_EtaIntercalibration_Stat19: 4.41724045e-04 syst_JES_EtaIntercalibration_Stat190: 0.0 - syst_JES_EtaIntercalibration_Stat191: 0.000593140799051962 - syst_JES_EtaIntercalibration_Stat192: 0.000593140799051962 + syst_JES_EtaIntercalibration_Stat191: 5.93140799e-04 + syst_JES_EtaIntercalibration_Stat192: 5.93140799e-04 syst_JES_EtaIntercalibration_Stat193: 0.0 syst_JES_EtaIntercalibration_Stat194: 0.0 - syst_JES_EtaIntercalibration_Stat195: 3.1116293721861273e-06 - syst_JES_EtaIntercalibration_Stat196: 0.0016513344202492722 - syst_JES_EtaIntercalibration_Stat197: 0.009209723163591836 - syst_JES_EtaIntercalibration_Stat198: 6.1033899596863375e-05 - syst_JES_EtaIntercalibration_Stat199: 5.6897861269054235e-08 - syst_JES_EtaIntercalibration_Stat2: 0.0007017476095434882 + syst_JES_EtaIntercalibration_Stat195: 3.11162937e-06 + syst_JES_EtaIntercalibration_Stat196: 1.65133442e-03 + syst_JES_EtaIntercalibration_Stat197: 9.20972316e-03 + syst_JES_EtaIntercalibration_Stat198: 6.10338996e-05 + syst_JES_EtaIntercalibration_Stat199: 5.68978613e-08 + syst_JES_EtaIntercalibration_Stat2: 7.01747610e-04 syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 syst_JES_EtaIntercalibration_Stat201: 0.0 syst_JES_EtaIntercalibration_Stat202: 0.0 - syst_JES_EtaIntercalibration_Stat203: 2.4240051051926438e-05 + syst_JES_EtaIntercalibration_Stat203: 2.42400511e-05 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 @@ -54733,9 +54733,9 @@ bins: syst_JES_EtaIntercalibration_Stat208: 0.0 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 2.877802416781515e-13 - syst_JES_EtaIntercalibration_Stat211: 5.362948442787792e-05 - syst_JES_EtaIntercalibration_Stat212: 2.7080614376339394e-39 + syst_JES_EtaIntercalibration_Stat210: 2.87780242e-13 + syst_JES_EtaIntercalibration_Stat211: 5.36294844e-05 + syst_JES_EtaIntercalibration_Stat212: 2.70806144e-39 syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 syst_JES_EtaIntercalibration_Stat215: 0.0 @@ -54747,37 +54747,37 @@ bins: syst_JES_EtaIntercalibration_Stat220: 0.0 syst_JES_EtaIntercalibration_Stat221: 0.0 syst_JES_EtaIntercalibration_Stat222: 0.0 - syst_JES_EtaIntercalibration_Stat223: 9.719403106672755e-31 - syst_JES_EtaIntercalibration_Stat224: 2.7071954122301554e-39 + syst_JES_EtaIntercalibration_Stat223: 9.71940311e-31 + syst_JES_EtaIntercalibration_Stat224: 2.70719541e-39 syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 syst_JES_EtaIntercalibration_Stat227: 0.0 syst_JES_EtaIntercalibration_Stat228: 0.0 syst_JES_EtaIntercalibration_Stat229: 0.0 - syst_JES_EtaIntercalibration_Stat23: 0.0006945244272162067 + syst_JES_EtaIntercalibration_Stat23: 6.94524427e-04 syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 syst_JES_EtaIntercalibration_Stat232: 0.0 syst_JES_EtaIntercalibration_Stat233: 0.0 syst_JES_EtaIntercalibration_Stat234: 0.0 - syst_JES_EtaIntercalibration_Stat235: 9.857967171278266e-31 + syst_JES_EtaIntercalibration_Stat235: 9.85796717e-31 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 syst_JES_EtaIntercalibration_Stat239: 0.0 - syst_JES_EtaIntercalibration_Stat24: 0.004542215428620708 + syst_JES_EtaIntercalibration_Stat24: 4.54221543e-03 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 syst_JES_EtaIntercalibration_Stat243: 0.0 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 - syst_JES_EtaIntercalibration_Stat25: 0.0074324371507601735 - syst_JES_EtaIntercalibration_Stat26: 0.0027352479723052534 + syst_JES_EtaIntercalibration_Stat25: 7.43243715e-03 + syst_JES_EtaIntercalibration_Stat26: 2.73524797e-03 syst_JES_EtaIntercalibration_Stat27: 0.0 syst_JES_EtaIntercalibration_Stat28: 0.0 syst_JES_EtaIntercalibration_Stat29: 0.0 - syst_JES_EtaIntercalibration_Stat3: 0.0020670238194079914 + syst_JES_EtaIntercalibration_Stat3: 2.06702382e-03 syst_JES_EtaIntercalibration_Stat30: 0.0 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 @@ -54786,19 +54786,19 @@ bins: syst_JES_EtaIntercalibration_Stat35: 0.0 syst_JES_EtaIntercalibration_Stat36: 0.0 syst_JES_EtaIntercalibration_Stat37: 0.0 - syst_JES_EtaIntercalibration_Stat38: 1.7918065604300035e-05 - syst_JES_EtaIntercalibration_Stat39: 0.0016325846586012012 + syst_JES_EtaIntercalibration_Stat38: 1.79180656e-05 + syst_JES_EtaIntercalibration_Stat39: 1.63258466e-03 syst_JES_EtaIntercalibration_Stat4: 0.0 - syst_JES_EtaIntercalibration_Stat40: 0.007853141457404164 - syst_JES_EtaIntercalibration_Stat41: 0.005705446345379123 - syst_JES_EtaIntercalibration_Stat42: 0.00018134571955246144 + syst_JES_EtaIntercalibration_Stat40: 7.85314146e-03 + syst_JES_EtaIntercalibration_Stat41: 5.70544635e-03 + syst_JES_EtaIntercalibration_Stat42: 1.81345720e-04 syst_JES_EtaIntercalibration_Stat43: 0.0 - syst_JES_EtaIntercalibration_Stat44: 0.001076209769282922 - syst_JES_EtaIntercalibration_Stat45: 0.002650459146544236 - syst_JES_EtaIntercalibration_Stat46: 0.03378021166304321 - syst_JES_EtaIntercalibration_Stat47: 0.025469600448377667 - syst_JES_EtaIntercalibration_Stat48: 0.009297970531250354 - syst_JES_EtaIntercalibration_Stat49: 0.00047951826607544365 + syst_JES_EtaIntercalibration_Stat44: 1.07620977e-03 + syst_JES_EtaIntercalibration_Stat45: 2.65045915e-03 + syst_JES_EtaIntercalibration_Stat46: 3.37802117e-02 + syst_JES_EtaIntercalibration_Stat47: 2.54696004e-02 + syst_JES_EtaIntercalibration_Stat48: 9.29797053e-03 + syst_JES_EtaIntercalibration_Stat49: 4.79518266e-04 syst_JES_EtaIntercalibration_Stat5: 0.0 syst_JES_EtaIntercalibration_Stat50: 0.0 syst_JES_EtaIntercalibration_Stat51: 0.0 @@ -54809,21 +54809,21 @@ bins: syst_JES_EtaIntercalibration_Stat56: 0.0 syst_JES_EtaIntercalibration_Stat57: 0.0 syst_JES_EtaIntercalibration_Stat58: 0.0 - syst_JES_EtaIntercalibration_Stat59: 1.7918065604300035e-05 + syst_JES_EtaIntercalibration_Stat59: 1.79180656e-05 syst_JES_EtaIntercalibration_Stat6: 0.0 - syst_JES_EtaIntercalibration_Stat60: 6.237561542782563e-05 - syst_JES_EtaIntercalibration_Stat61: 0.008295369431194731 - syst_JES_EtaIntercalibration_Stat62: 0.014982805503309451 - syst_JES_EtaIntercalibration_Stat63: 0.021754090994569278 - syst_JES_EtaIntercalibration_Stat64: 0.0010332894790425382 + syst_JES_EtaIntercalibration_Stat60: 6.23756154e-05 + syst_JES_EtaIntercalibration_Stat61: 8.29536943e-03 + syst_JES_EtaIntercalibration_Stat62: 1.49828055e-02 + syst_JES_EtaIntercalibration_Stat63: 2.17540910e-02 + syst_JES_EtaIntercalibration_Stat64: 1.03328948e-03 syst_JES_EtaIntercalibration_Stat65: 0.0 - syst_JES_EtaIntercalibration_Stat66: 0.001076209769282922 - syst_JES_EtaIntercalibration_Stat67: 0.005576031653425221 - syst_JES_EtaIntercalibration_Stat68: 0.09447611444169367 - syst_JES_EtaIntercalibration_Stat69: 0.20778623631030038 + syst_JES_EtaIntercalibration_Stat66: 1.07620977e-03 + syst_JES_EtaIntercalibration_Stat67: 5.57603165e-03 + syst_JES_EtaIntercalibration_Stat68: 9.44761144e-02 + syst_JES_EtaIntercalibration_Stat69: 2.07786236e-01 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 0.006495822715407187 - syst_JES_EtaIntercalibration_Stat71: 0.0018389225561453097 + syst_JES_EtaIntercalibration_Stat70: 6.49582272e-03 + syst_JES_EtaIntercalibration_Stat71: 1.83892256e-03 syst_JES_EtaIntercalibration_Stat72: 0.0 syst_JES_EtaIntercalibration_Stat73: 0.0 syst_JES_EtaIntercalibration_Stat74: 0.0 @@ -54834,19 +54834,19 @@ bins: syst_JES_EtaIntercalibration_Stat79: 0.0 syst_JES_EtaIntercalibration_Stat8: 0.0 syst_JES_EtaIntercalibration_Stat80: 0.0 - syst_JES_EtaIntercalibration_Stat81: 1.7918065604300035e-05 - syst_JES_EtaIntercalibration_Stat82: 0.00044364317587448584 - syst_JES_EtaIntercalibration_Stat83: 0.012090953960192719 - syst_JES_EtaIntercalibration_Stat84: 0.11262374927163454 - syst_JES_EtaIntercalibration_Stat85: 0.07313790040054471 - syst_JES_EtaIntercalibration_Stat86: 0.011844787863022283 + syst_JES_EtaIntercalibration_Stat81: 1.79180656e-05 + syst_JES_EtaIntercalibration_Stat82: 4.43643176e-04 + syst_JES_EtaIntercalibration_Stat83: 1.20909540e-02 + syst_JES_EtaIntercalibration_Stat84: 1.12623749e-01 + syst_JES_EtaIntercalibration_Stat85: 7.31379004e-02 + syst_JES_EtaIntercalibration_Stat86: 1.18447879e-02 syst_JES_EtaIntercalibration_Stat87: 0.0 - syst_JES_EtaIntercalibration_Stat88: 0.04126480928063887 - syst_JES_EtaIntercalibration_Stat89: 0.3553950477989247 + syst_JES_EtaIntercalibration_Stat88: 4.12648093e-02 + syst_JES_EtaIntercalibration_Stat89: 3.55395048e-01 syst_JES_EtaIntercalibration_Stat9: 0.0 - syst_JES_EtaIntercalibration_Stat90: 0.43139159414620026 - syst_JES_EtaIntercalibration_Stat91: 0.06173566615012751 - syst_JES_EtaIntercalibration_Stat92: 0.002013012411163925 + syst_JES_EtaIntercalibration_Stat90: 4.31391594e-01 + syst_JES_EtaIntercalibration_Stat91: 6.17356662e-02 + syst_JES_EtaIntercalibration_Stat92: 2.01301241e-03 syst_JES_EtaIntercalibration_Stat93: 0.0 syst_JES_EtaIntercalibration_Stat94: 0.0 syst_JES_EtaIntercalibration_Stat95: 0.0 @@ -54854,154 +54854,154 @@ bins: syst_JES_EtaIntercalibration_Stat97: 0.0 syst_JES_EtaIntercalibration_Stat98: 0.0 syst_JES_EtaIntercalibration_Stat99: 0.0 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.02087987248524331 - syst_JES_Flavour_Comp: 1.3648402177544445 - syst_JES_Flavour_Response: 14.990150099315217 - syst_JES_Gjet_Generator: 12.086257516286834 - syst_JES_Gjet_OOC: 6.706717229763009 - syst_JES_Gjet_Purity: 2.599018853336774 - syst_JES_Gjet_Stat1: 0.01672249699259952 - syst_JES_Gjet_Stat10: 0.23071273111815915 - syst_JES_Gjet_Stat11: 0.09582349659660724 - syst_JES_Gjet_Stat12: 0.055124666536406366 - syst_JES_Gjet_Stat13: 0.004387120970237771 - syst_JES_Gjet_Stat14: 0.00012334435171502584 - syst_JES_Gjet_Stat15: 3.0709306719095763e-06 - syst_JES_Gjet_Stat2: 0.04310246019660595 - syst_JES_Gjet_Stat3: 0.03734184017961622 - syst_JES_Gjet_Stat4: 0.07413349091335171 - syst_JES_Gjet_Stat5: 0.09663449733402664 - syst_JES_Gjet_Stat6: 0.2835667646251937 - syst_JES_Gjet_Stat7: 0.5092991096349964 - syst_JES_Gjet_Stat8: 0.38264007850067144 - syst_JES_Gjet_Stat9: 0.5500752016770071 - syst_JES_Gjet_Veto: 2.626040936466909 - syst_JES_Gjet_dPhi: 1.0698240825014176 - syst_JES_LArESZee: 9.528918131141646 - syst_JES_LArEsmear: 0.79764876198738 - syst_JES_LAr_JVT: 1.313000589299182 - syst_JES_MJB_Alpha: 0.0017075997774654344 - syst_JES_MJB_Asym: 0.007750655262621348 - syst_JES_MJB_Beta: 0.00011884817920355365 - syst_JES_MJB_Fragmentation: 0.022560626653530706 - syst_JES_MJB_Stat1: 0.00039802012511932106 - syst_JES_MJB_Stat10: 8.561527141812961e-31 - syst_JES_MJB_Stat11: 3.019830582996337e-39 + syst_JES_EtaIntercalibration_TotalStat_MJB: 2.08798725e-02 + syst_JES_Flavour_Comp: 1.36484022e+00 + syst_JES_Flavour_Response: 1.49901501e+01 + syst_JES_Gjet_Generator: 1.20862575e+01 + syst_JES_Gjet_OOC: 6.70671723e+00 + syst_JES_Gjet_Purity: 2.59901885e+00 + syst_JES_Gjet_Stat1: 1.67224970e-02 + syst_JES_Gjet_Stat10: 2.30712731e-01 + syst_JES_Gjet_Stat11: 9.58234966e-02 + syst_JES_Gjet_Stat12: 5.51246665e-02 + syst_JES_Gjet_Stat13: 4.38712097e-03 + syst_JES_Gjet_Stat14: 1.23344352e-04 + syst_JES_Gjet_Stat15: 3.07093067e-06 + syst_JES_Gjet_Stat2: 4.31024602e-02 + syst_JES_Gjet_Stat3: 3.73418402e-02 + syst_JES_Gjet_Stat4: 7.41334909e-02 + syst_JES_Gjet_Stat5: 9.66344973e-02 + syst_JES_Gjet_Stat6: 2.83566765e-01 + syst_JES_Gjet_Stat7: 5.09299110e-01 + syst_JES_Gjet_Stat8: 3.82640079e-01 + syst_JES_Gjet_Stat9: 5.50075202e-01 + syst_JES_Gjet_Veto: 2.62604094e+00 + syst_JES_Gjet_dPhi: 1.06982408e+00 + syst_JES_LArESZee: 9.52891813e+00 + syst_JES_LArEsmear: 7.97648762e-01 + syst_JES_LAr_JVT: 1.31300059e+00 + syst_JES_MJB_Alpha: 1.70759978e-03 + syst_JES_MJB_Asym: 7.75065526e-03 + syst_JES_MJB_Beta: 1.18848179e-04 + syst_JES_MJB_Fragmentation: 2.25606267e-02 + syst_JES_MJB_Stat1: 3.98020125e-04 + syst_JES_MJB_Stat10: 8.56152714e-31 + syst_JES_MJB_Stat11: 3.01983058e-39 syst_JES_MJB_Stat12: 0.0 syst_JES_MJB_Stat13: 0.0 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 0.0011198946239672509 - syst_JES_MJB_Stat3: 9.630332964129538e-05 - syst_JES_MJB_Stat4: 2.58162173973536e-05 - syst_JES_MJB_Stat5: 5.4585484148643156e-08 - syst_JES_MJB_Stat6: 1.822983474966243e-13 - syst_JES_MJB_Stat7: 1.800466814467848e-24 - syst_JES_MJB_Stat8: 8.624746996289225e-31 - syst_JES_MJB_Stat9: 8.622148920077871e-31 - syst_JES_MJB_Threshold: 0.00794957244133293 - syst_JES_Pileup_MuOffset: 0.1343019921669072 - syst_JES_Pileup_NPVOffset: 0.8510487809168167 - syst_JES_Pileup_Pt_term: 7.098480594465269 - syst_JES_Pileup_Rho_topology: 4.511126993335479 - syst_JES_PunchThrough_MC15: 0.01506350805755419 + syst_JES_MJB_Stat2: 1.11989462e-03 + syst_JES_MJB_Stat3: 9.63033296e-05 + syst_JES_MJB_Stat4: 2.58162174e-05 + syst_JES_MJB_Stat5: 5.45854841e-08 + syst_JES_MJB_Stat6: 1.82298347e-13 + syst_JES_MJB_Stat7: 1.80046681e-24 + syst_JES_MJB_Stat8: 8.62474700e-31 + syst_JES_MJB_Stat9: 8.62214892e-31 + syst_JES_MJB_Threshold: 7.94957244e-03 + syst_JES_Pileup_MuOffset: 1.34301992e-01 + syst_JES_Pileup_NPVOffset: 8.51048781e-01 + syst_JES_Pileup_Pt_term: 7.09848059e+00 + syst_JES_Pileup_Rho_topology: 4.51112699e+00 + syst_JES_PunchThrough_MC15: 1.50635081e-02 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 10.438015663908537 - syst_JES_Zjet_MuScale: 0.6887860843542065 - syst_JES_Zjet_MuSmearID: 0.11027544728995663 - syst_JES_Zjet_MuSmearMS: 0.7428341806890687 - syst_JES_Zjet_OOC: 4.402610134908609 - syst_JES_Zjet_Stat1: 0.06767338176860974 - syst_JES_Zjet_Stat10: 1.5129051523476282 - syst_JES_Zjet_Stat11: 0.5719562745525221 - syst_JES_Zjet_Stat12: 0.16184175813120663 - syst_JES_Zjet_Stat13: 0.02393511437198494 - syst_JES_Zjet_Stat2: 0.002413059627837654 - syst_JES_Zjet_Stat3: 0.029520054200492248 - syst_JES_Zjet_Stat4: 0.04474866112959274 - syst_JES_Zjet_Stat5: 0.046835312265426386 - syst_JES_Zjet_Stat6: 0.10840977850267937 - syst_JES_Zjet_Stat7: 0.14981874273601417 - syst_JES_Zjet_Stat8: 0.327310812989733 - syst_JES_Zjet_Stat9: 0.9793750188257816 - syst_JES_Zjet_Veto: 0.7183500870049366 - syst_JES_Zjet_dPhi: 0.8877402928221745 + syst_JES_Zjet_MC: 1.04380157e+01 + syst_JES_Zjet_MuScale: 6.88786084e-01 + syst_JES_Zjet_MuSmearID: 1.10275447e-01 + syst_JES_Zjet_MuSmearMS: 7.42834181e-01 + syst_JES_Zjet_OOC: 4.40261013e+00 + syst_JES_Zjet_Stat1: 6.76733818e-02 + syst_JES_Zjet_Stat10: 1.51290515e+00 + syst_JES_Zjet_Stat11: 5.71956275e-01 + syst_JES_Zjet_Stat12: 1.61841758e-01 + syst_JES_Zjet_Stat13: 2.39351144e-02 + syst_JES_Zjet_Stat2: 2.41305963e-03 + syst_JES_Zjet_Stat3: 2.95200542e-02 + syst_JES_Zjet_Stat4: 4.47486611e-02 + syst_JES_Zjet_Stat5: 4.68353123e-02 + syst_JES_Zjet_Stat6: 1.08409779e-01 + syst_JES_Zjet_Stat7: 1.49818743e-01 + syst_JES_Zjet_Stat8: 3.27310813e-01 + syst_JES_Zjet_Stat9: 9.79375019e-01 + syst_JES_Zjet_Veto: 7.18350087e-01 + syst_JES_Zjet_dPhi: 8.87740293e-01 syst_PRW: 0.0 syst_Unfolding_bias: 0.9473 - syst_cleaning: 2.424871130596428 + syst_cleaning: 2.42487113e+00 syst_lumi: 10.416 - stat: 2.9267 syst_JER_CROSS_CALIB_FORWARD: 2.124 syst_JER_NOISE_FORWARD: 1.471 - syst_JER_NP0: 4.236225058941038 - syst_JER_NP1: 0.5001712306800542 - syst_JER_NP2: 0.6231046220338924 - syst_JER_NP3: 1.1506038708000248 - syst_JER_NP4: 0.2055004379557377 - syst_JER_NP5: 0.3205670405702994 - syst_JER_NP6: 0.31685009073692877 - syst_JER_NP7: 0.1578523677364391 - syst_JER_NP8: 0.20843077987667752 - syst_JES_EtaIntercalibration_Modelling: 10.207086496645356 - syst_JES_EtaIntercalibration_NonClosure: 7.506034638875577 + syst_JER_NP0: 4.23622506e+00 + syst_JER_NP1: 5.00171231e-01 + syst_JER_NP2: 6.23104622e-01 + syst_JER_NP3: 1.15060387e+00 + syst_JER_NP4: 2.05500438e-01 + syst_JER_NP5: 3.20567041e-01 + syst_JER_NP6: 3.16850091e-01 + syst_JER_NP7: 1.57852368e-01 + syst_JER_NP8: 2.08430780e-01 + syst_JES_EtaIntercalibration_Modelling: 1.02070865e+01 + syst_JES_EtaIntercalibration_NonClosure: 7.50603464e+00 syst_JES_EtaIntercalibration_Stat0: 0.0 - syst_JES_EtaIntercalibration_Stat1: 2.0957814771583412e-05 + syst_JES_EtaIntercalibration_Stat1: 2.09578148e-05 syst_JES_EtaIntercalibration_Stat10: 0.0 syst_JES_EtaIntercalibration_Stat100: 0.0 syst_JES_EtaIntercalibration_Stat101: 0.0 syst_JES_EtaIntercalibration_Stat102: 0.0 - syst_JES_EtaIntercalibration_Stat103: 8.23733749460346e-05 - syst_JES_EtaIntercalibration_Stat104: 0.00953028373134819 - syst_JES_EtaIntercalibration_Stat105: 0.08242647268930048 - syst_JES_EtaIntercalibration_Stat106: 0.08103834524470499 - syst_JES_EtaIntercalibration_Stat107: 0.00163592056882356 - syst_JES_EtaIntercalibration_Stat108: 0.026785399231670972 - syst_JES_EtaIntercalibration_Stat109: 0.5391135687403906 + syst_JES_EtaIntercalibration_Stat103: 8.23733749e-05 + syst_JES_EtaIntercalibration_Stat104: 9.53028373e-03 + syst_JES_EtaIntercalibration_Stat105: 8.24264727e-02 + syst_JES_EtaIntercalibration_Stat106: 8.10383452e-02 + syst_JES_EtaIntercalibration_Stat107: 1.63592057e-03 + syst_JES_EtaIntercalibration_Stat108: 2.67853992e-02 + syst_JES_EtaIntercalibration_Stat109: 5.39113569e-01 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 0.5478234820633376 - syst_JES_EtaIntercalibration_Stat111: 0.08094438630936675 - syst_JES_EtaIntercalibration_Stat112: 0.0013178505103007701 + syst_JES_EtaIntercalibration_Stat110: 5.47823482e-01 + syst_JES_EtaIntercalibration_Stat111: 8.09443863e-02 + syst_JES_EtaIntercalibration_Stat112: 1.31785051e-03 syst_JES_EtaIntercalibration_Stat113: 0.0 syst_JES_EtaIntercalibration_Stat114: 0.0 syst_JES_EtaIntercalibration_Stat115: 0.0 syst_JES_EtaIntercalibration_Stat116: 0.0 syst_JES_EtaIntercalibration_Stat117: 0.0 - syst_JES_EtaIntercalibration_Stat118: 3.151466444371572e-05 - syst_JES_EtaIntercalibration_Stat119: 3.151466444371572e-05 + syst_JES_EtaIntercalibration_Stat118: 3.15146644e-05 + syst_JES_EtaIntercalibration_Stat119: 3.15146644e-05 syst_JES_EtaIntercalibration_Stat12: 0.0 syst_JES_EtaIntercalibration_Stat120: 0.0 syst_JES_EtaIntercalibration_Stat121: 0.0 syst_JES_EtaIntercalibration_Stat122: 0.0 - syst_JES_EtaIntercalibration_Stat123: 0.003511383025248029 - syst_JES_EtaIntercalibration_Stat124: 0.07138406877588303 - syst_JES_EtaIntercalibration_Stat125: 0.5591417351620249 - syst_JES_EtaIntercalibration_Stat126: 0.46083242073447916 - syst_JES_EtaIntercalibration_Stat127: 0.010183690228988703 - syst_JES_EtaIntercalibration_Stat128: 1.0478287741802095 - syst_JES_EtaIntercalibration_Stat129: 2.2829754159867774 + syst_JES_EtaIntercalibration_Stat123: 3.51138303e-03 + syst_JES_EtaIntercalibration_Stat124: 7.13840688e-02 + syst_JES_EtaIntercalibration_Stat125: 5.59141735e-01 + syst_JES_EtaIntercalibration_Stat126: 4.60832421e-01 + syst_JES_EtaIntercalibration_Stat127: 1.01836902e-02 + syst_JES_EtaIntercalibration_Stat128: 1.04782877e+00 + syst_JES_EtaIntercalibration_Stat129: 2.28297542e+00 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 0.30470667862716766 - syst_JES_EtaIntercalibration_Stat131: 0.003390930956241958 + syst_JES_EtaIntercalibration_Stat130: 3.04706679e-01 + syst_JES_EtaIntercalibration_Stat131: 3.39093096e-03 syst_JES_EtaIntercalibration_Stat132: 0.0 syst_JES_EtaIntercalibration_Stat133: 0.0 syst_JES_EtaIntercalibration_Stat134: 0.0 syst_JES_EtaIntercalibration_Stat135: 0.0 syst_JES_EtaIntercalibration_Stat136: 0.0 - syst_JES_EtaIntercalibration_Stat137: 3.151466444371572e-05 - syst_JES_EtaIntercalibration_Stat138: 3.151466444371572e-05 - syst_JES_EtaIntercalibration_Stat139: 0.00022559961768584626 + syst_JES_EtaIntercalibration_Stat137: 3.15146644e-05 + syst_JES_EtaIntercalibration_Stat138: 3.15146644e-05 + syst_JES_EtaIntercalibration_Stat139: 2.25599618e-04 syst_JES_EtaIntercalibration_Stat14: 0.0 syst_JES_EtaIntercalibration_Stat140: 0.0 syst_JES_EtaIntercalibration_Stat141: 0.0 - syst_JES_EtaIntercalibration_Stat142: 0.008466132529083159 - syst_JES_EtaIntercalibration_Stat143: 0.15835015337851746 - syst_JES_EtaIntercalibration_Stat144: 2.2480665025750466 - syst_JES_EtaIntercalibration_Stat145: 0.9649153369596735 - syst_JES_EtaIntercalibration_Stat146: 0.23523253920323184 - syst_JES_EtaIntercalibration_Stat147: 0.21851688149889015 - syst_JES_EtaIntercalibration_Stat148: 0.035253685594558756 - syst_JES_EtaIntercalibration_Stat149: 0.0009784722277239144 + syst_JES_EtaIntercalibration_Stat142: 8.46613253e-03 + syst_JES_EtaIntercalibration_Stat143: 1.58350153e-01 + syst_JES_EtaIntercalibration_Stat144: 2.24806650e+00 + syst_JES_EtaIntercalibration_Stat145: 9.64915337e-01 + syst_JES_EtaIntercalibration_Stat146: 2.35232539e-01 + syst_JES_EtaIntercalibration_Stat147: 2.18516881e-01 + syst_JES_EtaIntercalibration_Stat148: 3.52536856e-02 + syst_JES_EtaIntercalibration_Stat149: 9.78472228e-04 syst_JES_EtaIntercalibration_Stat15: 0.0 syst_JES_EtaIntercalibration_Stat150: 0.0 syst_JES_EtaIntercalibration_Stat151: 0.0 @@ -55009,60 +55009,60 @@ bins: syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 3.151466444371572e-05 - syst_JES_EtaIntercalibration_Stat157: 0.00022559961768584626 + syst_JES_EtaIntercalibration_Stat156: 3.15146644e-05 + syst_JES_EtaIntercalibration_Stat157: 2.25599618e-04 syst_JES_EtaIntercalibration_Stat158: 0.0 syst_JES_EtaIntercalibration_Stat159: 0.0 - syst_JES_EtaIntercalibration_Stat16: 1.223520690466655e-06 - syst_JES_EtaIntercalibration_Stat160: 0.0019917102117275993 - syst_JES_EtaIntercalibration_Stat161: 0.022954785710173814 - syst_JES_EtaIntercalibration_Stat162: 0.2741914659503465 - syst_JES_EtaIntercalibration_Stat163: 0.27062438914480713 - syst_JES_EtaIntercalibration_Stat164: 0.06945140801308494 - syst_JES_EtaIntercalibration_Stat165: 0.07095665930693186 - syst_JES_EtaIntercalibration_Stat166: 0.022407548478805085 - syst_JES_EtaIntercalibration_Stat167: 4.595077014820401e-06 + syst_JES_EtaIntercalibration_Stat16: 1.22352069e-06 + syst_JES_EtaIntercalibration_Stat160: 1.99171021e-03 + syst_JES_EtaIntercalibration_Stat161: 2.29547857e-02 + syst_JES_EtaIntercalibration_Stat162: 2.74191466e-01 + syst_JES_EtaIntercalibration_Stat163: 2.70624389e-01 + syst_JES_EtaIntercalibration_Stat164: 6.94514080e-02 + syst_JES_EtaIntercalibration_Stat165: 7.09566593e-02 + syst_JES_EtaIntercalibration_Stat166: 2.24075485e-02 + syst_JES_EtaIntercalibration_Stat167: 4.59507701e-06 syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 - syst_JES_EtaIntercalibration_Stat17: 7.327262585713712e-06 + syst_JES_EtaIntercalibration_Stat17: 7.32726259e-06 syst_JES_EtaIntercalibration_Stat170: 0.0 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 - syst_JES_EtaIntercalibration_Stat174: 0.00022559961768584626 - syst_JES_EtaIntercalibration_Stat175: 0.00022559961768584626 + syst_JES_EtaIntercalibration_Stat174: 2.25599618e-04 + syst_JES_EtaIntercalibration_Stat175: 2.25599618e-04 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 - syst_JES_EtaIntercalibration_Stat178: 7.870060863805311e-05 - syst_JES_EtaIntercalibration_Stat179: 0.008193017514933067 - syst_JES_EtaIntercalibration_Stat18: 0.0001873931874428737 - syst_JES_EtaIntercalibration_Stat180: 0.08914954234318873 - syst_JES_EtaIntercalibration_Stat181: 0.07198904430536635 - syst_JES_EtaIntercalibration_Stat182: 0.02793860411688458 - syst_JES_EtaIntercalibration_Stat183: 0.002899109518455624 - syst_JES_EtaIntercalibration_Stat184: 2.732363904479568e-06 + syst_JES_EtaIntercalibration_Stat178: 7.87006086e-05 + syst_JES_EtaIntercalibration_Stat179: 8.19301751e-03 + syst_JES_EtaIntercalibration_Stat18: 1.87393187e-04 + syst_JES_EtaIntercalibration_Stat180: 8.91495423e-02 + syst_JES_EtaIntercalibration_Stat181: 7.19890443e-02 + syst_JES_EtaIntercalibration_Stat182: 2.79386041e-02 + syst_JES_EtaIntercalibration_Stat183: 2.89910952e-03 + syst_JES_EtaIntercalibration_Stat184: 2.73236390e-06 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 syst_JES_EtaIntercalibration_Stat187: 0.0 - syst_JES_EtaIntercalibration_Stat188: 3.610459908377325e-05 + syst_JES_EtaIntercalibration_Stat188: 3.61045991e-05 syst_JES_EtaIntercalibration_Stat189: 0.0 - syst_JES_EtaIntercalibration_Stat19: 8.754934706781085e-05 + syst_JES_EtaIntercalibration_Stat19: 8.75493471e-05 syst_JES_EtaIntercalibration_Stat190: 0.0 - syst_JES_EtaIntercalibration_Stat191: 0.00022559961768584626 - syst_JES_EtaIntercalibration_Stat192: 0.00022559961768584626 + syst_JES_EtaIntercalibration_Stat191: 2.25599618e-04 + syst_JES_EtaIntercalibration_Stat192: 2.25599618e-04 syst_JES_EtaIntercalibration_Stat193: 0.0 syst_JES_EtaIntercalibration_Stat194: 0.0 - syst_JES_EtaIntercalibration_Stat195: 2.1625323275534326e-05 - syst_JES_EtaIntercalibration_Stat196: 0.006531117419706983 - syst_JES_EtaIntercalibration_Stat197: 0.023062002227690465 - syst_JES_EtaIntercalibration_Stat198: 0.0001192315340000287 - syst_JES_EtaIntercalibration_Stat199: 3.7671567582200276e-06 - syst_JES_EtaIntercalibration_Stat2: 0.00016692298845575465 + syst_JES_EtaIntercalibration_Stat195: 2.16253233e-05 + syst_JES_EtaIntercalibration_Stat196: 6.53111742e-03 + syst_JES_EtaIntercalibration_Stat197: 2.30620022e-02 + syst_JES_EtaIntercalibration_Stat198: 1.19231534e-04 + syst_JES_EtaIntercalibration_Stat199: 3.76715676e-06 + syst_JES_EtaIntercalibration_Stat2: 1.66922988e-04 syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 syst_JES_EtaIntercalibration_Stat201: 0.0 syst_JES_EtaIntercalibration_Stat202: 0.0 - syst_JES_EtaIntercalibration_Stat203: 3.610459908377325e-05 + syst_JES_EtaIntercalibration_Stat203: 3.61045991e-05 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 @@ -55070,9 +55070,9 @@ bins: syst_JES_EtaIntercalibration_Stat208: 0.0 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 1.9970545836984337e-09 - syst_JES_EtaIntercalibration_Stat211: 8.646476912592781e-05 - syst_JES_EtaIntercalibration_Stat212: 8.896678973077539e-29 + syst_JES_EtaIntercalibration_Stat210: 1.99705458e-09 + syst_JES_EtaIntercalibration_Stat211: 8.64647691e-05 + syst_JES_EtaIntercalibration_Stat212: 8.89667897e-29 syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 syst_JES_EtaIntercalibration_Stat215: 0.0 @@ -55084,37 +55084,37 @@ bins: syst_JES_EtaIntercalibration_Stat220: 0.0 syst_JES_EtaIntercalibration_Stat221: 0.0 syst_JES_EtaIntercalibration_Stat222: 0.0 - syst_JES_EtaIntercalibration_Stat223: 2.584219804892765e-22 - syst_JES_EtaIntercalibration_Stat224: 8.89494692226997e-29 + syst_JES_EtaIntercalibration_Stat223: 2.58421980e-22 + syst_JES_EtaIntercalibration_Stat224: 8.89494692e-29 syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 syst_JES_EtaIntercalibration_Stat227: 0.0 syst_JES_EtaIntercalibration_Stat228: 0.0 syst_JES_EtaIntercalibration_Stat229: 0.0 - syst_JES_EtaIntercalibration_Stat23: 0.00012773461971994906 + syst_JES_EtaIntercalibration_Stat23: 1.27734620e-04 syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 syst_JES_EtaIntercalibration_Stat232: 0.0 syst_JES_EtaIntercalibration_Stat233: 0.0 syst_JES_EtaIntercalibration_Stat234: 0.0 - syst_JES_EtaIntercalibration_Stat235: 2.6205928718517116e-22 + syst_JES_EtaIntercalibration_Stat235: 2.62059287e-22 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 syst_JES_EtaIntercalibration_Stat239: 0.0 - syst_JES_EtaIntercalibration_Stat24: 0.0017045791291400937 + syst_JES_EtaIntercalibration_Stat24: 1.70457913e-03 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 syst_JES_EtaIntercalibration_Stat243: 0.0 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 - syst_JES_EtaIntercalibration_Stat25: 0.0023199909482582042 - syst_JES_EtaIntercalibration_Stat26: 0.0006049534258932666 + syst_JES_EtaIntercalibration_Stat25: 2.31999095e-03 + syst_JES_EtaIntercalibration_Stat26: 6.04953426e-04 syst_JES_EtaIntercalibration_Stat27: 0.0 syst_JES_EtaIntercalibration_Stat28: 0.0 syst_JES_EtaIntercalibration_Stat29: 0.0 - syst_JES_EtaIntercalibration_Stat3: 0.00046522868301513825 + syst_JES_EtaIntercalibration_Stat3: 4.65228683e-04 syst_JES_EtaIntercalibration_Stat30: 0.0 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 @@ -55123,19 +55123,19 @@ bins: syst_JES_EtaIntercalibration_Stat35: 0.0 syst_JES_EtaIntercalibration_Stat36: 0.0 syst_JES_EtaIntercalibration_Stat37: 0.0 - syst_JES_EtaIntercalibration_Stat38: 1.223520690466655e-06 - syst_JES_EtaIntercalibration_Stat39: 0.0002708259034878311 + syst_JES_EtaIntercalibration_Stat38: 1.22352069e-06 + syst_JES_EtaIntercalibration_Stat39: 2.70825903e-04 syst_JES_EtaIntercalibration_Stat4: 0.0 - syst_JES_EtaIntercalibration_Stat40: 0.0030817911593746905 - syst_JES_EtaIntercalibration_Stat41: 0.0018374185716651498 - syst_JES_EtaIntercalibration_Stat42: 2.5660332714132915e-05 + syst_JES_EtaIntercalibration_Stat40: 3.08179116e-03 + syst_JES_EtaIntercalibration_Stat41: 1.83741857e-03 + syst_JES_EtaIntercalibration_Stat42: 2.56603327e-05 syst_JES_EtaIntercalibration_Stat43: 0.0 - syst_JES_EtaIntercalibration_Stat44: 9.770498605496037e-05 - syst_JES_EtaIntercalibration_Stat45: 0.0005869411789097781 - syst_JES_EtaIntercalibration_Stat46: 0.007162566631452723 - syst_JES_EtaIntercalibration_Stat47: 0.006024590172783539 - syst_JES_EtaIntercalibration_Stat48: 0.0018140996885507696 - syst_JES_EtaIntercalibration_Stat49: 5.394472240173268e-05 + syst_JES_EtaIntercalibration_Stat44: 9.77049861e-05 + syst_JES_EtaIntercalibration_Stat45: 5.86941179e-04 + syst_JES_EtaIntercalibration_Stat46: 7.16256663e-03 + syst_JES_EtaIntercalibration_Stat47: 6.02459017e-03 + syst_JES_EtaIntercalibration_Stat48: 1.81409969e-03 + syst_JES_EtaIntercalibration_Stat49: 5.39447224e-05 syst_JES_EtaIntercalibration_Stat5: 0.0 syst_JES_EtaIntercalibration_Stat50: 0.0 syst_JES_EtaIntercalibration_Stat51: 0.0 @@ -55146,21 +55146,21 @@ bins: syst_JES_EtaIntercalibration_Stat56: 0.0 syst_JES_EtaIntercalibration_Stat57: 0.0 syst_JES_EtaIntercalibration_Stat58: 0.0 - syst_JES_EtaIntercalibration_Stat59: 1.223520690466655e-06 + syst_JES_EtaIntercalibration_Stat59: 1.22352069e-06 syst_JES_EtaIntercalibration_Stat6: 0.0 - syst_JES_EtaIntercalibration_Stat60: 5.8089959227047145e-06 - syst_JES_EtaIntercalibration_Stat61: 0.0021132574381745356 - syst_JES_EtaIntercalibration_Stat62: 0.007725894317164842 - syst_JES_EtaIntercalibration_Stat63: 0.008111488442326722 - syst_JES_EtaIntercalibration_Stat64: 0.00016802420026591406 + syst_JES_EtaIntercalibration_Stat60: 5.80899592e-06 + syst_JES_EtaIntercalibration_Stat61: 2.11325744e-03 + syst_JES_EtaIntercalibration_Stat62: 7.72589432e-03 + syst_JES_EtaIntercalibration_Stat63: 8.11148844e-03 + syst_JES_EtaIntercalibration_Stat64: 1.68024200e-04 syst_JES_EtaIntercalibration_Stat65: 0.0 - syst_JES_EtaIntercalibration_Stat66: 9.770498605496037e-05 - syst_JES_EtaIntercalibration_Stat67: 0.00271596773728997 - syst_JES_EtaIntercalibration_Stat68: 0.012832392489321701 - syst_JES_EtaIntercalibration_Stat69: 0.021010073774263623 + syst_JES_EtaIntercalibration_Stat66: 9.77049861e-05 + syst_JES_EtaIntercalibration_Stat67: 2.71596774e-03 + syst_JES_EtaIntercalibration_Stat68: 1.28323925e-02 + syst_JES_EtaIntercalibration_Stat69: 2.10100738e-02 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 0.00238663947842987 - syst_JES_EtaIntercalibration_Stat71: 0.00046572630621428295 + syst_JES_EtaIntercalibration_Stat70: 2.38663948e-03 + syst_JES_EtaIntercalibration_Stat71: 4.65726306e-04 syst_JES_EtaIntercalibration_Stat72: 0.0 syst_JES_EtaIntercalibration_Stat73: 0.0 syst_JES_EtaIntercalibration_Stat74: 0.0 @@ -55171,19 +55171,19 @@ bins: syst_JES_EtaIntercalibration_Stat79: 0.0 syst_JES_EtaIntercalibration_Stat8: 0.0 syst_JES_EtaIntercalibration_Stat80: 0.0 - syst_JES_EtaIntercalibration_Stat81: 1.223520690466655e-06 - syst_JES_EtaIntercalibration_Stat82: 7.96011725730218e-05 - syst_JES_EtaIntercalibration_Stat83: 0.004275617850089037 - syst_JES_EtaIntercalibration_Stat84: 0.0022403834388782648 - syst_JES_EtaIntercalibration_Stat85: 0.011336983990462365 - syst_JES_EtaIntercalibration_Stat86: 0.00148023441386829 + syst_JES_EtaIntercalibration_Stat81: 1.22352069e-06 + syst_JES_EtaIntercalibration_Stat82: 7.96011726e-05 + syst_JES_EtaIntercalibration_Stat83: 4.27561785e-03 + syst_JES_EtaIntercalibration_Stat84: 2.24038344e-03 + syst_JES_EtaIntercalibration_Stat85: 1.13369840e-02 + syst_JES_EtaIntercalibration_Stat86: 1.48023441e-03 syst_JES_EtaIntercalibration_Stat87: 0.0 - syst_JES_EtaIntercalibration_Stat88: 0.008136995560401887 - syst_JES_EtaIntercalibration_Stat89: 0.08019729047792076 + syst_JES_EtaIntercalibration_Stat88: 8.13699556e-03 + syst_JES_EtaIntercalibration_Stat89: 8.01972905e-02 syst_JES_EtaIntercalibration_Stat9: 0.0 - syst_JES_EtaIntercalibration_Stat90: 0.09108098978381823 - syst_JES_EtaIntercalibration_Stat91: 0.007463509680438553 - syst_JES_EtaIntercalibration_Stat92: 0.0005150675803232038 + syst_JES_EtaIntercalibration_Stat90: 9.10809898e-02 + syst_JES_EtaIntercalibration_Stat91: 7.46350968e-03 + syst_JES_EtaIntercalibration_Stat92: 5.15067580e-04 syst_JES_EtaIntercalibration_Stat93: 0.0 syst_JES_EtaIntercalibration_Stat94: 0.0 syst_JES_EtaIntercalibration_Stat95: 0.0 @@ -55191,154 +55191,154 @@ bins: syst_JES_EtaIntercalibration_Stat97: 0.0 syst_JES_EtaIntercalibration_Stat98: 0.0 syst_JES_EtaIntercalibration_Stat99: 0.0 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.026249230057208948 - syst_JES_Flavour_Comp: 0.5711854405532409 - syst_JES_Flavour_Response: 7.213111811139489 - syst_JES_Gjet_Generator: 5.978642069901826 - syst_JES_Gjet_OOC: 3.400526834183198 - syst_JES_Gjet_Purity: 1.170360529922297 - syst_JES_Gjet_Stat1: 0.003292605211682688 - syst_JES_Gjet_Stat10: 0.19641899112611286 - syst_JES_Gjet_Stat11: 0.10507028933052388 - syst_JES_Gjet_Stat12: 0.05262245433272758 - syst_JES_Gjet_Stat13: 0.01290223890454676 - syst_JES_Gjet_Stat14: 0.0002539978149512314 - syst_JES_Gjet_Stat15: 2.6993897884521973e-05 - syst_JES_Gjet_Stat2: 0.012029049297429949 - syst_JES_Gjet_Stat3: 0.010690385622137305 - syst_JES_Gjet_Stat4: 0.01018429266075951 - syst_JES_Gjet_Stat5: 0.016992844986934943 - syst_JES_Gjet_Stat6: 0.07177892030394438 - syst_JES_Gjet_Stat7: 0.15593614678771564 - syst_JES_Gjet_Stat8: 0.1309953083129316 - syst_JES_Gjet_Stat9: 0.30260691912115956 - syst_JES_Gjet_Veto: 1.353102785267993 - syst_JES_Gjet_dPhi: 0.4439291948047572 - syst_JES_LArESZee: 5.275491541079371 - syst_JES_LArEsmear: 0.42239181464015135 - syst_JES_LAr_JVT: 0.6614843667842801 - syst_JES_MJB_Alpha: 0.003310523070452765 - syst_JES_MJB_Asym: 0.009721008936833666 - syst_JES_MJB_Beta: 0.0005168933161688202 - syst_JES_MJB_Fragmentation: 0.03704500493656331 - syst_JES_MJB_Stat1: 0.0002758208975041594 - syst_JES_MJB_Stat10: 2.2759147611455044e-22 - syst_JES_MJB_Stat11: 9.920321000350745e-29 - syst_JES_MJB_Stat12: 5.341644690542418e-36 - syst_JES_MJB_Stat13: 3.491814428058856e-36 + syst_JES_EtaIntercalibration_TotalStat_MJB: 2.62492301e-02 + syst_JES_Flavour_Comp: 5.71185441e-01 + syst_JES_Flavour_Response: 7.21311181e+00 + syst_JES_Gjet_Generator: 5.97864207e+00 + syst_JES_Gjet_OOC: 3.40052683e+00 + syst_JES_Gjet_Purity: 1.17036053e+00 + syst_JES_Gjet_Stat1: 3.29260521e-03 + syst_JES_Gjet_Stat10: 1.96418991e-01 + syst_JES_Gjet_Stat11: 1.05070289e-01 + syst_JES_Gjet_Stat12: 5.26224543e-02 + syst_JES_Gjet_Stat13: 1.29022389e-02 + syst_JES_Gjet_Stat14: 2.53997815e-04 + syst_JES_Gjet_Stat15: 2.69938979e-05 + syst_JES_Gjet_Stat2: 1.20290493e-02 + syst_JES_Gjet_Stat3: 1.06903856e-02 + syst_JES_Gjet_Stat4: 1.01842927e-02 + syst_JES_Gjet_Stat5: 1.69928450e-02 + syst_JES_Gjet_Stat6: 7.17789203e-02 + syst_JES_Gjet_Stat7: 1.55936147e-01 + syst_JES_Gjet_Stat8: 1.30995308e-01 + syst_JES_Gjet_Stat9: 3.02606919e-01 + syst_JES_Gjet_Veto: 1.35310279e+00 + syst_JES_Gjet_dPhi: 4.43929195e-01 + syst_JES_LArESZee: 5.27549154e+00 + syst_JES_LArEsmear: 4.22391815e-01 + syst_JES_LAr_JVT: 6.61484367e-01 + syst_JES_MJB_Alpha: 3.31052307e-03 + syst_JES_MJB_Asym: 9.72100894e-03 + syst_JES_MJB_Beta: 5.16893316e-04 + syst_JES_MJB_Fragmentation: 3.70450049e-02 + syst_JES_MJB_Stat1: 2.75820898e-04 + syst_JES_MJB_Stat10: 2.27591476e-22 + syst_JES_MJB_Stat11: 9.92032100e-29 + syst_JES_MJB_Stat12: 5.34164469e-36 + syst_JES_MJB_Stat13: 3.49181443e-36 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 0.004165499286604189 - syst_JES_MJB_Stat3: 3.137748423232812e-05 - syst_JES_MJB_Stat4: 2.299374418142176e-05 - syst_JES_MJB_Stat5: 3.613250744781906e-06 - syst_JES_MJB_Stat6: 1.2652631149231615e-09 - syst_JES_MJB_Stat7: 7.949247181337363e-18 - syst_JES_MJB_Stat8: 2.292369243817409e-22 - syst_JES_MJB_Stat9: 2.292369243817409e-22 - syst_JES_MJB_Threshold: 0.009983763556394954 - syst_JES_Pileup_MuOffset: 0.09214595311244005 - syst_JES_Pileup_NPVOffset: 0.3485582436265136 - syst_JES_Pileup_Pt_term: 3.3943746110292543 - syst_JES_Pileup_Rho_topology: 2.081340673700488 - syst_JES_PunchThrough_MC15: 0.0036240372883705268 + syst_JES_MJB_Stat2: 4.16549929e-03 + syst_JES_MJB_Stat3: 3.13774842e-05 + syst_JES_MJB_Stat4: 2.29937442e-05 + syst_JES_MJB_Stat5: 3.61325074e-06 + syst_JES_MJB_Stat6: 1.26526311e-09 + syst_JES_MJB_Stat7: 7.94924718e-18 + syst_JES_MJB_Stat8: 2.29236924e-22 + syst_JES_MJB_Stat9: 2.29236924e-22 + syst_JES_MJB_Threshold: 9.98376356e-03 + syst_JES_Pileup_MuOffset: 9.21459531e-02 + syst_JES_Pileup_NPVOffset: 3.48558244e-01 + syst_JES_Pileup_Pt_term: 3.39437461e+00 + syst_JES_Pileup_Rho_topology: 2.08134067e+00 + syst_JES_PunchThrough_MC15: 3.62403729e-03 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 5.2159987538342065 - syst_JES_Zjet_MuScale: 0.303083565209333 - syst_JES_Zjet_MuSmearID: 0.04873813163222407 - syst_JES_Zjet_MuSmearMS: 0.4600148774768051 - syst_JES_Zjet_OOC: 1.9662166716819385 - syst_JES_Zjet_Stat1: 0.0199421080881636 - syst_JES_Zjet_Stat10: 0.7079851269624243 - syst_JES_Zjet_Stat11: 0.5226363267129448 - syst_JES_Zjet_Stat12: 0.10067216236378358 - syst_JES_Zjet_Stat13: 0.03893650985899995 - syst_JES_Zjet_Stat2: 0.0012343602340888985 - syst_JES_Zjet_Stat3: 0.008614971793337457 - syst_JES_Zjet_Stat4: 0.011456231888365389 - syst_JES_Zjet_Stat5: 0.01594307470682804 - syst_JES_Zjet_Stat6: 0.028728263087071583 - syst_JES_Zjet_Stat7: 0.0374087930839796 - syst_JES_Zjet_Stat8: 0.09407704502162044 - syst_JES_Zjet_Stat9: 0.3485817084988827 - syst_JES_Zjet_Veto: 0.30523778845352684 - syst_JES_Zjet_dPhi: 0.364062152248761 + syst_JES_Zjet_MC: 5.21599875e+00 + syst_JES_Zjet_MuScale: 3.03083565e-01 + syst_JES_Zjet_MuSmearID: 4.87381316e-02 + syst_JES_Zjet_MuSmearMS: 4.60014877e-01 + syst_JES_Zjet_OOC: 1.96621667e+00 + syst_JES_Zjet_Stat1: 1.99421081e-02 + syst_JES_Zjet_Stat10: 7.07985127e-01 + syst_JES_Zjet_Stat11: 5.22636327e-01 + syst_JES_Zjet_Stat12: 1.00672162e-01 + syst_JES_Zjet_Stat13: 3.89365099e-02 + syst_JES_Zjet_Stat2: 1.23436023e-03 + syst_JES_Zjet_Stat3: 8.61497179e-03 + syst_JES_Zjet_Stat4: 1.14562319e-02 + syst_JES_Zjet_Stat5: 1.59430747e-02 + syst_JES_Zjet_Stat6: 2.87282631e-02 + syst_JES_Zjet_Stat7: 3.74087931e-02 + syst_JES_Zjet_Stat8: 9.40770450e-02 + syst_JES_Zjet_Stat9: 3.48581708e-01 + syst_JES_Zjet_Veto: 3.05237788e-01 + syst_JES_Zjet_dPhi: 3.64062152e-01 syst_PRW: 0.0 syst_Unfolding_bias: 0.5639 - syst_cleaning: 1.3241528423864066 + syst_cleaning: 1.32415284e+00 syst_lumi: 5.16 - stat: 1.3483 syst_JER_CROSS_CALIB_FORWARD: 0.9405 syst_JER_NOISE_FORWARD: 0.6642 - syst_JER_NP0: 1.8673234856339167 - syst_JER_NP1: 0.18231480103107373 - syst_JER_NP2: 0.3040039802371015 - syst_JER_NP3: 0.5218297303718905 - syst_JER_NP4: 0.11217156268413131 - syst_JER_NP5: 0.17257591974258749 - syst_JER_NP6: 0.16910304787318295 - syst_JER_NP7: 0.07195932036921972 - syst_JER_NP8: 0.09784669782368743 - syst_JES_EtaIntercalibration_Modelling: 5.552744434061413 - syst_JES_EtaIntercalibration_NonClosure: 3.2226855260791423 + syst_JER_NP0: 1.86732349e+00 + syst_JER_NP1: 1.82314801e-01 + syst_JER_NP2: 3.04003980e-01 + syst_JER_NP3: 5.21829730e-01 + syst_JER_NP4: 1.12171563e-01 + syst_JER_NP5: 1.72575920e-01 + syst_JER_NP6: 1.69103048e-01 + syst_JER_NP7: 7.19593204e-02 + syst_JER_NP8: 9.78466978e-02 + syst_JES_EtaIntercalibration_Modelling: 5.55274443e+00 + syst_JES_EtaIntercalibration_NonClosure: 3.22268553e+00 syst_JES_EtaIntercalibration_Stat0: 0.0 - syst_JES_EtaIntercalibration_Stat1: 2.301895523259038e-06 + syst_JES_EtaIntercalibration_Stat1: 2.30189552e-06 syst_JES_EtaIntercalibration_Stat10: 0.0 syst_JES_EtaIntercalibration_Stat100: 0.0 syst_JES_EtaIntercalibration_Stat101: 0.0 syst_JES_EtaIntercalibration_Stat102: 0.0 - syst_JES_EtaIntercalibration_Stat103: 1.3327815837563182e-05 - syst_JES_EtaIntercalibration_Stat104: 0.0015627878766806453 - syst_JES_EtaIntercalibration_Stat105: 0.021189333354308247 - syst_JES_EtaIntercalibration_Stat106: 0.01656948243005798 - syst_JES_EtaIntercalibration_Stat107: 0.0005725579184676428 - syst_JES_EtaIntercalibration_Stat108: 0.005805427977332937 - syst_JES_EtaIntercalibration_Stat109: 0.15232370137309556 + syst_JES_EtaIntercalibration_Stat103: 1.33278158e-05 + syst_JES_EtaIntercalibration_Stat104: 1.56278788e-03 + syst_JES_EtaIntercalibration_Stat105: 2.11893334e-02 + syst_JES_EtaIntercalibration_Stat106: 1.65694824e-02 + syst_JES_EtaIntercalibration_Stat107: 5.72557918e-04 + syst_JES_EtaIntercalibration_Stat108: 5.80542798e-03 + syst_JES_EtaIntercalibration_Stat109: 1.52323701e-01 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 0.1548225032093203 - syst_JES_EtaIntercalibration_Stat111: 0.026557015551450805 - syst_JES_EtaIntercalibration_Stat112: 2.23981042724602e-05 + syst_JES_EtaIntercalibration_Stat110: 1.54822503e-01 + syst_JES_EtaIntercalibration_Stat111: 2.65570156e-02 + syst_JES_EtaIntercalibration_Stat112: 2.23981043e-05 syst_JES_EtaIntercalibration_Stat113: 0.0 syst_JES_EtaIntercalibration_Stat114: 0.0 syst_JES_EtaIntercalibration_Stat115: 0.0 syst_JES_EtaIntercalibration_Stat116: 0.0 syst_JES_EtaIntercalibration_Stat117: 0.0 - syst_JES_EtaIntercalibration_Stat118: 7.81414721834699e-06 - syst_JES_EtaIntercalibration_Stat119: 7.81414721834699e-06 + syst_JES_EtaIntercalibration_Stat118: 7.81414722e-06 + syst_JES_EtaIntercalibration_Stat119: 7.81414722e-06 syst_JES_EtaIntercalibration_Stat12: 0.0 syst_JES_EtaIntercalibration_Stat120: 0.0 syst_JES_EtaIntercalibration_Stat121: 0.0 syst_JES_EtaIntercalibration_Stat122: 0.0 - syst_JES_EtaIntercalibration_Stat123: 0.0011648170875721215 - syst_JES_EtaIntercalibration_Stat124: 0.021852402041880888 - syst_JES_EtaIntercalibration_Stat125: 0.16345459943054524 - syst_JES_EtaIntercalibration_Stat126: 0.12737568086177206 - syst_JES_EtaIntercalibration_Stat127: 0.0012508959788887324 - syst_JES_EtaIntercalibration_Stat128: 0.4617811684120521 - syst_JES_EtaIntercalibration_Stat129: 1.045069275215763 + syst_JES_EtaIntercalibration_Stat123: 1.16481709e-03 + syst_JES_EtaIntercalibration_Stat124: 2.18524020e-02 + syst_JES_EtaIntercalibration_Stat125: 1.63454599e-01 + syst_JES_EtaIntercalibration_Stat126: 1.27375681e-01 + syst_JES_EtaIntercalibration_Stat127: 1.25089598e-03 + syst_JES_EtaIntercalibration_Stat128: 4.61781168e-01 + syst_JES_EtaIntercalibration_Stat129: 1.04506928e+00 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 0.13914489821764936 - syst_JES_EtaIntercalibration_Stat131: 0.0013830084662340284 + syst_JES_EtaIntercalibration_Stat130: 1.39144898e-01 + syst_JES_EtaIntercalibration_Stat131: 1.38300847e-03 syst_JES_EtaIntercalibration_Stat132: 0.0 syst_JES_EtaIntercalibration_Stat133: 0.0 syst_JES_EtaIntercalibration_Stat134: 0.0 syst_JES_EtaIntercalibration_Stat135: 0.0 syst_JES_EtaIntercalibration_Stat136: 0.0 - syst_JES_EtaIntercalibration_Stat137: 7.81414721834699e-06 - syst_JES_EtaIntercalibration_Stat138: 7.81414721834699e-06 - syst_JES_EtaIntercalibration_Stat139: 4.025286076790071e-05 + syst_JES_EtaIntercalibration_Stat137: 7.81414722e-06 + syst_JES_EtaIntercalibration_Stat138: 7.81414722e-06 + syst_JES_EtaIntercalibration_Stat139: 4.02528608e-05 syst_JES_EtaIntercalibration_Stat14: 0.0 syst_JES_EtaIntercalibration_Stat140: 0.0 syst_JES_EtaIntercalibration_Stat141: 0.0 - syst_JES_EtaIntercalibration_Stat142: 0.003045042876545419 - syst_JES_EtaIntercalibration_Stat143: 0.07868209529969318 - syst_JES_EtaIntercalibration_Stat144: 1.0550266394740941 - syst_JES_EtaIntercalibration_Stat145: 0.43282182246277745 - syst_JES_EtaIntercalibration_Stat146: 0.22326672389767355 - syst_JES_EtaIntercalibration_Stat147: 0.23825817929296783 - syst_JES_EtaIntercalibration_Stat148: 0.04442189834889995 - syst_JES_EtaIntercalibration_Stat149: 0.0005551731081383536 + syst_JES_EtaIntercalibration_Stat142: 3.04504288e-03 + syst_JES_EtaIntercalibration_Stat143: 7.86820953e-02 + syst_JES_EtaIntercalibration_Stat144: 1.05502664e+00 + syst_JES_EtaIntercalibration_Stat145: 4.32821822e-01 + syst_JES_EtaIntercalibration_Stat146: 2.23266724e-01 + syst_JES_EtaIntercalibration_Stat147: 2.38258179e-01 + syst_JES_EtaIntercalibration_Stat148: 4.44218983e-02 + syst_JES_EtaIntercalibration_Stat149: 5.55173108e-04 syst_JES_EtaIntercalibration_Stat15: 0.0 syst_JES_EtaIntercalibration_Stat150: 0.0 syst_JES_EtaIntercalibration_Stat151: 0.0 @@ -55346,60 +55346,60 @@ bins: syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 7.81414721834699e-06 - syst_JES_EtaIntercalibration_Stat157: 4.025286076790071e-05 + syst_JES_EtaIntercalibration_Stat156: 7.81414722e-06 + syst_JES_EtaIntercalibration_Stat157: 4.02528608e-05 syst_JES_EtaIntercalibration_Stat158: 0.0 syst_JES_EtaIntercalibration_Stat159: 0.0 - syst_JES_EtaIntercalibration_Stat16: 7.596774841997096e-08 - syst_JES_EtaIntercalibration_Stat160: 0.0016324537259904185 - syst_JES_EtaIntercalibration_Stat161: 0.03320558873141689 - syst_JES_EtaIntercalibration_Stat162: 0.27433320524500854 - syst_JES_EtaIntercalibration_Stat163: 0.2543053430425716 - syst_JES_EtaIntercalibration_Stat164: 0.006710816101637713 - syst_JES_EtaIntercalibration_Stat165: 0.012481613276162462 - syst_JES_EtaIntercalibration_Stat166: 0.013861925251565887 - syst_JES_EtaIntercalibration_Stat167: 3.783265716611873e-05 + syst_JES_EtaIntercalibration_Stat16: 7.59677484e-08 + syst_JES_EtaIntercalibration_Stat160: 1.63245373e-03 + syst_JES_EtaIntercalibration_Stat161: 3.32055887e-02 + syst_JES_EtaIntercalibration_Stat162: 2.74333205e-01 + syst_JES_EtaIntercalibration_Stat163: 2.54305343e-01 + syst_JES_EtaIntercalibration_Stat164: 6.71081610e-03 + syst_JES_EtaIntercalibration_Stat165: 1.24816133e-02 + syst_JES_EtaIntercalibration_Stat166: 1.38619253e-02 + syst_JES_EtaIntercalibration_Stat167: 3.78326572e-05 syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 - syst_JES_EtaIntercalibration_Stat17: 5.271098746940719e-07 + syst_JES_EtaIntercalibration_Stat17: 5.27109875e-07 syst_JES_EtaIntercalibration_Stat170: 0.0 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 - syst_JES_EtaIntercalibration_Stat174: 4.025286076790071e-05 - syst_JES_EtaIntercalibration_Stat175: 4.025286076790071e-05 + syst_JES_EtaIntercalibration_Stat174: 4.02528608e-05 + syst_JES_EtaIntercalibration_Stat175: 4.02528608e-05 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 - syst_JES_EtaIntercalibration_Stat178: 0.0001738488046406992 - syst_JES_EtaIntercalibration_Stat179: 0.010076045007839136 - syst_JES_EtaIntercalibration_Stat18: 2.2084848126034285e-05 - syst_JES_EtaIntercalibration_Stat180: 0.013168135203968707 - syst_JES_EtaIntercalibration_Stat181: 0.026899450380072822 - syst_JES_EtaIntercalibration_Stat182: 0.039419653410449965 - syst_JES_EtaIntercalibration_Stat183: 0.004084207756713657 - syst_JES_EtaIntercalibration_Stat184: 9.985673651524318e-05 + syst_JES_EtaIntercalibration_Stat178: 1.73848805e-04 + syst_JES_EtaIntercalibration_Stat179: 1.00760450e-02 + syst_JES_EtaIntercalibration_Stat18: 2.20848481e-05 + syst_JES_EtaIntercalibration_Stat180: 1.31681352e-02 + syst_JES_EtaIntercalibration_Stat181: 2.68994504e-02 + syst_JES_EtaIntercalibration_Stat182: 3.94196534e-02 + syst_JES_EtaIntercalibration_Stat183: 4.08420776e-03 + syst_JES_EtaIntercalibration_Stat184: 9.98567365e-05 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 syst_JES_EtaIntercalibration_Stat187: 0.0 - syst_JES_EtaIntercalibration_Stat188: 2.1494750521929765e-05 + syst_JES_EtaIntercalibration_Stat188: 2.14947505e-05 syst_JES_EtaIntercalibration_Stat189: 0.0 - syst_JES_EtaIntercalibration_Stat19: 1.2336688156875815e-05 + syst_JES_EtaIntercalibration_Stat19: 1.23366882e-05 syst_JES_EtaIntercalibration_Stat190: 0.0 - syst_JES_EtaIntercalibration_Stat191: 4.025286076790071e-05 - syst_JES_EtaIntercalibration_Stat192: 4.025286076790071e-05 + syst_JES_EtaIntercalibration_Stat191: 4.02528608e-05 + syst_JES_EtaIntercalibration_Stat192: 4.02528608e-05 syst_JES_EtaIntercalibration_Stat193: 0.0 syst_JES_EtaIntercalibration_Stat194: 0.0 - syst_JES_EtaIntercalibration_Stat195: 0.00013875102866468234 - syst_JES_EtaIntercalibration_Stat196: 0.00865169039841348 - syst_JES_EtaIntercalibration_Stat197: 0.029434148535332227 - syst_JES_EtaIntercalibration_Stat198: 0.0007252255254057182 - syst_JES_EtaIntercalibration_Stat199: 3.1017049599771736e-05 - syst_JES_EtaIntercalibration_Stat2: 4.177876734359213e-05 + syst_JES_EtaIntercalibration_Stat195: 1.38751029e-04 + syst_JES_EtaIntercalibration_Stat196: 8.65169040e-03 + syst_JES_EtaIntercalibration_Stat197: 2.94341485e-02 + syst_JES_EtaIntercalibration_Stat198: 7.25225525e-04 + syst_JES_EtaIntercalibration_Stat199: 3.10170496e-05 + syst_JES_EtaIntercalibration_Stat2: 4.17787673e-05 syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 syst_JES_EtaIntercalibration_Stat201: 0.0 syst_JES_EtaIntercalibration_Stat202: 0.0 - syst_JES_EtaIntercalibration_Stat203: 2.1494750521929765e-05 + syst_JES_EtaIntercalibration_Stat203: 2.14947505e-05 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 @@ -55407,9 +55407,9 @@ bins: syst_JES_EtaIntercalibration_Stat208: 0.0 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 4.782193035738326e-07 - syst_JES_EtaIntercalibration_Stat211: 0.0007496400786377419 - syst_JES_EtaIntercalibration_Stat212: 2.1217622392718746e-21 + syst_JES_EtaIntercalibration_Stat210: 4.78219304e-07 + syst_JES_EtaIntercalibration_Stat211: 7.49640079e-04 + syst_JES_EtaIntercalibration_Stat212: 2.12176224e-21 syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 syst_JES_EtaIntercalibration_Stat215: 0.0 @@ -55421,37 +55421,37 @@ bins: syst_JES_EtaIntercalibration_Stat220: 0.0 syst_JES_EtaIntercalibration_Stat221: 0.0 syst_JES_EtaIntercalibration_Stat222: 0.0 - syst_JES_EtaIntercalibration_Stat223: 1.6419841655752956e-16 - syst_JES_EtaIntercalibration_Stat224: 2.1208962138680903e-21 + syst_JES_EtaIntercalibration_Stat223: 1.64198417e-16 + syst_JES_EtaIntercalibration_Stat224: 2.12089621e-21 syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 syst_JES_EtaIntercalibration_Stat227: 0.0 syst_JES_EtaIntercalibration_Stat228: 0.0 syst_JES_EtaIntercalibration_Stat229: 0.0 - syst_JES_EtaIntercalibration_Stat23: 3.310075657745605e-05 + syst_JES_EtaIntercalibration_Stat23: 3.31007566e-05 syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 syst_JES_EtaIntercalibration_Stat232: 0.0 syst_JES_EtaIntercalibration_Stat233: 0.0 syst_JES_EtaIntercalibration_Stat234: 0.0 - syst_JES_EtaIntercalibration_Stat235: 1.6653668514774755e-16 + syst_JES_EtaIntercalibration_Stat235: 1.66536685e-16 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 syst_JES_EtaIntercalibration_Stat239: 0.0 - syst_JES_EtaIntercalibration_Stat24: 0.000775281806828975 + syst_JES_EtaIntercalibration_Stat24: 7.75281807e-04 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 syst_JES_EtaIntercalibration_Stat243: 0.0 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 - syst_JES_EtaIntercalibration_Stat25: 0.0006621553141068943 - syst_JES_EtaIntercalibration_Stat26: 8.332576612309065e-05 + syst_JES_EtaIntercalibration_Stat25: 6.62155314e-04 + syst_JES_EtaIntercalibration_Stat26: 8.33257661e-05 syst_JES_EtaIntercalibration_Stat27: 0.0 syst_JES_EtaIntercalibration_Stat28: 0.0 syst_JES_EtaIntercalibration_Stat29: 0.0 - syst_JES_EtaIntercalibration_Stat3: 6.780278515665857e-05 + syst_JES_EtaIntercalibration_Stat3: 6.78027852e-05 syst_JES_EtaIntercalibration_Stat30: 0.0 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 @@ -55460,19 +55460,19 @@ bins: syst_JES_EtaIntercalibration_Stat35: 0.0 syst_JES_EtaIntercalibration_Stat36: 0.0 syst_JES_EtaIntercalibration_Stat37: 0.0 - syst_JES_EtaIntercalibration_Stat38: 7.596774841997096e-08 - syst_JES_EtaIntercalibration_Stat39: 3.357861372957496e-05 + syst_JES_EtaIntercalibration_Stat38: 7.59677484e-08 + syst_JES_EtaIntercalibration_Stat39: 3.35786137e-05 syst_JES_EtaIntercalibration_Stat4: 0.0 - syst_JES_EtaIntercalibration_Stat40: 0.0008196365215752652 - syst_JES_EtaIntercalibration_Stat41: 0.00046778654320106305 - syst_JES_EtaIntercalibration_Stat42: 2.5746935254511363e-06 + syst_JES_EtaIntercalibration_Stat40: 8.19636522e-04 + syst_JES_EtaIntercalibration_Stat41: 4.67786543e-04 + syst_JES_EtaIntercalibration_Stat42: 2.57469353e-06 syst_JES_EtaIntercalibration_Stat43: 0.0 - syst_JES_EtaIntercalibration_Stat44: 7.252962756694674e-06 - syst_JES_EtaIntercalibration_Stat45: 0.00012549361258645797 - syst_JES_EtaIntercalibration_Stat46: 0.00017074270116171876 - syst_JES_EtaIntercalibration_Stat47: 0.0019794475870808 - syst_JES_EtaIntercalibration_Stat48: 0.00037950838182443353 - syst_JES_EtaIntercalibration_Stat49: 4.744087161931155e-06 + syst_JES_EtaIntercalibration_Stat44: 7.25296276e-06 + syst_JES_EtaIntercalibration_Stat45: 1.25493613e-04 + syst_JES_EtaIntercalibration_Stat46: 1.70742701e-04 + syst_JES_EtaIntercalibration_Stat47: 1.97944759e-03 + syst_JES_EtaIntercalibration_Stat48: 3.79508382e-04 + syst_JES_EtaIntercalibration_Stat49: 4.74408716e-06 syst_JES_EtaIntercalibration_Stat5: 0.0 syst_JES_EtaIntercalibration_Stat50: 0.0 syst_JES_EtaIntercalibration_Stat51: 0.0 @@ -55483,21 +55483,21 @@ bins: syst_JES_EtaIntercalibration_Stat56: 0.0 syst_JES_EtaIntercalibration_Stat57: 0.0 syst_JES_EtaIntercalibration_Stat58: 0.0 - syst_JES_EtaIntercalibration_Stat59: 7.596774841997096e-08 + syst_JES_EtaIntercalibration_Stat59: 7.59677484e-08 syst_JES_EtaIntercalibration_Stat6: 0.0 - syst_JES_EtaIntercalibration_Stat60: 4.3749500888581577e-07 - syst_JES_EtaIntercalibration_Stat61: 0.0004803194145566052 - syst_JES_EtaIntercalibration_Stat62: 0.0019630876190328338 - syst_JES_EtaIntercalibration_Stat63: 0.0018808572513617293 - syst_JES_EtaIntercalibration_Stat64: 2.1204836122922525e-05 + syst_JES_EtaIntercalibration_Stat60: 4.37495009e-07 + syst_JES_EtaIntercalibration_Stat61: 4.80319415e-04 + syst_JES_EtaIntercalibration_Stat62: 1.96308762e-03 + syst_JES_EtaIntercalibration_Stat63: 1.88085725e-03 + syst_JES_EtaIntercalibration_Stat64: 2.12048361e-05 syst_JES_EtaIntercalibration_Stat65: 0.0 - syst_JES_EtaIntercalibration_Stat66: 7.252962756694674e-06 - syst_JES_EtaIntercalibration_Stat67: 0.0011115141429599534 - syst_JES_EtaIntercalibration_Stat68: 0.0045081584654934215 - syst_JES_EtaIntercalibration_Stat69: 0.00564214149835858 + syst_JES_EtaIntercalibration_Stat66: 7.25296276e-06 + syst_JES_EtaIntercalibration_Stat67: 1.11151414e-03 + syst_JES_EtaIntercalibration_Stat68: 4.50815847e-03 + syst_JES_EtaIntercalibration_Stat69: 5.64214150e-03 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 0.0011657768429249227 - syst_JES_EtaIntercalibration_Stat71: 6.632701485820088e-05 + syst_JES_EtaIntercalibration_Stat70: 1.16577684e-03 + syst_JES_EtaIntercalibration_Stat71: 6.63270149e-05 syst_JES_EtaIntercalibration_Stat72: 0.0 syst_JES_EtaIntercalibration_Stat73: 0.0 syst_JES_EtaIntercalibration_Stat74: 0.0 @@ -55508,19 +55508,19 @@ bins: syst_JES_EtaIntercalibration_Stat79: 0.0 syst_JES_EtaIntercalibration_Stat8: 0.0 syst_JES_EtaIntercalibration_Stat80: 0.0 - syst_JES_EtaIntercalibration_Stat81: 7.596774841997096e-08 - syst_JES_EtaIntercalibration_Stat82: 8.719174731590142e-06 - syst_JES_EtaIntercalibration_Stat83: 0.0016221041890088319 - syst_JES_EtaIntercalibration_Stat84: 0.002290193659933587 - syst_JES_EtaIntercalibration_Stat85: 0.005771631030306771 - syst_JES_EtaIntercalibration_Stat86: 0.00035042889078955807 + syst_JES_EtaIntercalibration_Stat81: 7.59677484e-08 + syst_JES_EtaIntercalibration_Stat82: 8.71917473e-06 + syst_JES_EtaIntercalibration_Stat83: 1.62210419e-03 + syst_JES_EtaIntercalibration_Stat84: 2.29019366e-03 + syst_JES_EtaIntercalibration_Stat85: 5.77163103e-03 + syst_JES_EtaIntercalibration_Stat86: 3.50428891e-04 syst_JES_EtaIntercalibration_Stat87: 0.0 - syst_JES_EtaIntercalibration_Stat88: 0.0012485172125365352 - syst_JES_EtaIntercalibration_Stat89: 0.013686620729749181 + syst_JES_EtaIntercalibration_Stat88: 1.24851721e-03 + syst_JES_EtaIntercalibration_Stat89: 1.36866207e-02 syst_JES_EtaIntercalibration_Stat9: 0.0 - syst_JES_EtaIntercalibration_Stat90: 0.009455693205683019 - syst_JES_EtaIntercalibration_Stat91: 0.0013450982566340646 - syst_JES_EtaIntercalibration_Stat92: 7.427319292315363e-05 + syst_JES_EtaIntercalibration_Stat90: 9.45569321e-03 + syst_JES_EtaIntercalibration_Stat91: 1.34509826e-03 + syst_JES_EtaIntercalibration_Stat92: 7.42731929e-05 syst_JES_EtaIntercalibration_Stat93: 0.0 syst_JES_EtaIntercalibration_Stat94: 0.0 syst_JES_EtaIntercalibration_Stat95: 0.0 @@ -55528,154 +55528,154 @@ bins: syst_JES_EtaIntercalibration_Stat97: 0.0 syst_JES_EtaIntercalibration_Stat98: 0.0 syst_JES_EtaIntercalibration_Stat99: 0.0 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.016480615658040022 - syst_JES_Flavour_Comp: 0.2773192519462001 - syst_JES_Flavour_Response: 3.483488481393329 - syst_JES_Gjet_Generator: 2.9715384904119952 - syst_JES_Gjet_OOC: 1.7486042290924495 - syst_JES_Gjet_Purity: 0.5378180617086042 - syst_JES_Gjet_Stat1: 0.0006754719336878476 - syst_JES_Gjet_Stat10: 0.11680114853887354 - syst_JES_Gjet_Stat11: 0.0895114242708717 - syst_JES_Gjet_Stat12: 0.013962575801047601 - syst_JES_Gjet_Stat13: 0.015333479807271407 - syst_JES_Gjet_Stat14: 0.0010813951948755829 - syst_JES_Gjet_Stat15: 1.2763481372650645e-05 - syst_JES_Gjet_Stat2: 0.0016432489160197246 - syst_JES_Gjet_Stat3: 0.0067086413490363315 - syst_JES_Gjet_Stat4: 0.005882229764298569 - syst_JES_Gjet_Stat5: 0.007280067770975762 - syst_JES_Gjet_Stat6: 0.021592131599265502 - syst_JES_Gjet_Stat7: 0.054578558397506256 - syst_JES_Gjet_Stat8: 0.050384194694368195 - syst_JES_Gjet_Stat9: 0.1315411117293753 - syst_JES_Gjet_Veto: 0.725398773089671 - syst_JES_Gjet_dPhi: 0.17521794285974254 - syst_JES_LArESZee: 2.909421076434279 - syst_JES_LArEsmear: 0.21161703026930515 - syst_JES_LAr_JVT: 0.34683139996257545 - syst_JES_MJB_Alpha: 0.0021695184045082447 - syst_JES_MJB_Asym: 0.008476588228762795 - syst_JES_MJB_Beta: 0.0019508380250548734 - syst_JES_MJB_Fragmentation: 0.032009401743862693 - syst_JES_MJB_Stat1: 0.002340528305676947 - syst_JES_MJB_Stat10: 1.4462624243200126e-16 - syst_JES_MJB_Stat11: 2.365981403139086e-21 - syst_JES_MJB_Stat12: 8.864636033137514e-27 - syst_JES_MJB_Stat13: 5.794575976721678e-27 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.64806157e-02 + syst_JES_Flavour_Comp: 2.77319252e-01 + syst_JES_Flavour_Response: 3.48348848e+00 + syst_JES_Gjet_Generator: 2.97153849e+00 + syst_JES_Gjet_OOC: 1.74860423e+00 + syst_JES_Gjet_Purity: 5.37818062e-01 + syst_JES_Gjet_Stat1: 6.75471934e-04 + syst_JES_Gjet_Stat10: 1.16801149e-01 + syst_JES_Gjet_Stat11: 8.95114243e-02 + syst_JES_Gjet_Stat12: 1.39625758e-02 + syst_JES_Gjet_Stat13: 1.53334798e-02 + syst_JES_Gjet_Stat14: 1.08139519e-03 + syst_JES_Gjet_Stat15: 1.27634814e-05 + syst_JES_Gjet_Stat2: 1.64324892e-03 + syst_JES_Gjet_Stat3: 6.70864135e-03 + syst_JES_Gjet_Stat4: 5.88222976e-03 + syst_JES_Gjet_Stat5: 7.28006777e-03 + syst_JES_Gjet_Stat6: 2.15921316e-02 + syst_JES_Gjet_Stat7: 5.45785584e-02 + syst_JES_Gjet_Stat8: 5.03841947e-02 + syst_JES_Gjet_Stat9: 1.31541112e-01 + syst_JES_Gjet_Veto: 7.25398773e-01 + syst_JES_Gjet_dPhi: 1.75217943e-01 + syst_JES_LArESZee: 2.90942108e+00 + syst_JES_LArEsmear: 2.11617030e-01 + syst_JES_LAr_JVT: 3.46831400e-01 + syst_JES_MJB_Alpha: 2.16951840e-03 + syst_JES_MJB_Asym: 8.47658823e-03 + syst_JES_MJB_Beta: 1.95083803e-03 + syst_JES_MJB_Fragmentation: 3.20094017e-02 + syst_JES_MJB_Stat1: 2.34052831e-03 + syst_JES_MJB_Stat10: 1.44626242e-16 + syst_JES_MJB_Stat11: 2.36598140e-21 + syst_JES_MJB_Stat12: 8.86463603e-27 + syst_JES_MJB_Stat13: 5.79457598e-27 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 0.00463362738575298 - syst_JES_MJB_Stat3: 0.001550233791239244 - syst_JES_MJB_Stat4: 0.0004633937043059929 - syst_JES_MJB_Stat5: 2.960680711876071e-05 - syst_JES_MJB_Stat6: 3.0475433584041077e-07 - syst_JES_MJB_Stat7: 2.337402564814244e-13 - syst_JES_MJB_Stat8: 1.45752075456921e-16 - syst_JES_MJB_Stat9: 1.4566547291654258e-16 - syst_JES_MJB_Threshold: 0.009171049708184992 - syst_JES_Pileup_MuOffset: 0.022836050446607442 - syst_JES_Pileup_NPVOffset: 0.15267878438080387 - syst_JES_Pileup_Pt_term: 1.6140807755499724 - syst_JES_Pileup_Rho_topology: 0.9689722016136479 - syst_JES_PunchThrough_MC15: 0.0030207124987327075 + syst_JES_MJB_Stat2: 4.63362739e-03 + syst_JES_MJB_Stat3: 1.55023379e-03 + syst_JES_MJB_Stat4: 4.63393704e-04 + syst_JES_MJB_Stat5: 2.96068071e-05 + syst_JES_MJB_Stat6: 3.04754336e-07 + syst_JES_MJB_Stat7: 2.33740256e-13 + syst_JES_MJB_Stat8: 1.45752075e-16 + syst_JES_MJB_Stat9: 1.45665473e-16 + syst_JES_MJB_Threshold: 9.17104971e-03 + syst_JES_Pileup_MuOffset: 2.28360504e-02 + syst_JES_Pileup_NPVOffset: 1.52678784e-01 + syst_JES_Pileup_Pt_term: 1.61408078e+00 + syst_JES_Pileup_Rho_topology: 9.68972202e-01 + syst_JES_PunchThrough_MC15: 3.02071250e-03 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 2.6555008472979256 - syst_JES_Zjet_MuScale: 0.13786721872874638 - syst_JES_Zjet_MuSmearID: 0.03008115149059291 - syst_JES_Zjet_MuSmearMS: 0.24472762410484028 - syst_JES_Zjet_OOC: 0.9235845643469797 - syst_JES_Zjet_Stat1: 0.009414781078177017 - syst_JES_Zjet_Stat10: 0.28298457113418746 - syst_JES_Zjet_Stat11: 0.35462116698668733 - syst_JES_Zjet_Stat12: 0.1641611708047917 - syst_JES_Zjet_Stat13: 0.03197449725953482 - syst_JES_Zjet_Stat2: 0.0009549994489527205 - syst_JES_Zjet_Stat3: 0.0033430273705131403 - syst_JES_Zjet_Stat4: 0.005446840253761808 - syst_JES_Zjet_Stat5: 0.006840097148981146 - syst_JES_Zjet_Stat6: 0.012485584357570134 - syst_JES_Zjet_Stat7: 0.010804787862332141 - syst_JES_Zjet_Stat8: 0.0322081118198506 - syst_JES_Zjet_Stat9: 0.11283618070016371 - syst_JES_Zjet_Veto: 0.14058037629768955 - syst_JES_Zjet_dPhi: 0.15408949047550258 + syst_JES_Zjet_MC: 2.65550085e+00 + syst_JES_Zjet_MuScale: 1.37867219e-01 + syst_JES_Zjet_MuSmearID: 3.00811515e-02 + syst_JES_Zjet_MuSmearMS: 2.44727624e-01 + syst_JES_Zjet_OOC: 9.23584564e-01 + syst_JES_Zjet_Stat1: 9.41478108e-03 + syst_JES_Zjet_Stat10: 2.82984571e-01 + syst_JES_Zjet_Stat11: 3.54621167e-01 + syst_JES_Zjet_Stat12: 1.64161171e-01 + syst_JES_Zjet_Stat13: 3.19744973e-02 + syst_JES_Zjet_Stat2: 9.54999449e-04 + syst_JES_Zjet_Stat3: 3.34302737e-03 + syst_JES_Zjet_Stat4: 5.44684025e-03 + syst_JES_Zjet_Stat5: 6.84009715e-03 + syst_JES_Zjet_Stat6: 1.24855844e-02 + syst_JES_Zjet_Stat7: 1.08047879e-02 + syst_JES_Zjet_Stat8: 3.22081118e-02 + syst_JES_Zjet_Stat9: 1.12836181e-01 + syst_JES_Zjet_Veto: 1.40580376e-01 + syst_JES_Zjet_dPhi: 1.54089490e-01 syst_PRW: 0.0 syst_Unfolding_bias: 0.2362 - syst_cleaning: 0.6476137969500032 + syst_cleaning: 6.47613797e-01 syst_lumi: 2.524 - stat: 0.7289 syst_JER_CROSS_CALIB_FORWARD: 0.2631 syst_JER_NOISE_FORWARD: 0.3266 - syst_JER_NP0: 0.8573065437753289 - syst_JER_NP1: 0.03422112505456243 - syst_JER_NP2: 0.15010326445484123 - syst_JER_NP3: 0.2840912881452017 - syst_JER_NP4: 0.06404086507847939 - syst_JER_NP5: 0.10600967927505488 - syst_JER_NP6: 0.09665609292745077 - syst_JER_NP7: 0.026628319863446135 - syst_JER_NP8: 0.048201818430428534 - syst_JES_EtaIntercalibration_Modelling: 2.851262878094547 - syst_JES_EtaIntercalibration_NonClosure: 1.1703272907610074 + syst_JER_NP0: 8.57306544e-01 + syst_JER_NP1: 3.42211251e-02 + syst_JER_NP2: 1.50103264e-01 + syst_JER_NP3: 2.84091288e-01 + syst_JER_NP4: 6.40408651e-02 + syst_JER_NP5: 1.06009679e-01 + syst_JER_NP6: 9.66560929e-02 + syst_JER_NP7: 2.66283199e-02 + syst_JER_NP8: 4.82018184e-02 + syst_JES_EtaIntercalibration_Modelling: 2.85126288e+00 + syst_JES_EtaIntercalibration_NonClosure: 1.17032729e+00 syst_JES_EtaIntercalibration_Stat0: 0.0 - syst_JES_EtaIntercalibration_Stat1: 2.0187052162215264e-07 + syst_JES_EtaIntercalibration_Stat1: 2.01870522e-07 syst_JES_EtaIntercalibration_Stat10: 0.0 syst_JES_EtaIntercalibration_Stat100: 0.0 syst_JES_EtaIntercalibration_Stat101: 0.0 syst_JES_EtaIntercalibration_Stat102: 0.0 - syst_JES_EtaIntercalibration_Stat103: 1.5452802561347894e-06 - syst_JES_EtaIntercalibration_Stat104: 0.000447086644287212 - syst_JES_EtaIntercalibration_Stat105: 0.006170996324263611 - syst_JES_EtaIntercalibration_Stat106: 0.0037236417657986382 - syst_JES_EtaIntercalibration_Stat107: 0.00012575063687711487 - syst_JES_EtaIntercalibration_Stat108: 0.001179628741384339 - syst_JES_EtaIntercalibration_Stat109: 0.04296148604273368 + syst_JES_EtaIntercalibration_Stat103: 1.54528026e-06 + syst_JES_EtaIntercalibration_Stat104: 4.47086644e-04 + syst_JES_EtaIntercalibration_Stat105: 6.17099632e-03 + syst_JES_EtaIntercalibration_Stat106: 3.72364177e-03 + syst_JES_EtaIntercalibration_Stat107: 1.25750637e-04 + syst_JES_EtaIntercalibration_Stat108: 1.17962874e-03 + syst_JES_EtaIntercalibration_Stat109: 4.29614860e-02 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 0.041496497442555326 - syst_JES_EtaIntercalibration_Stat111: 0.006303138325469305 - syst_JES_EtaIntercalibration_Stat112: 0.00016573378502888298 + syst_JES_EtaIntercalibration_Stat110: 4.14964974e-02 + syst_JES_EtaIntercalibration_Stat111: 6.30313833e-03 + syst_JES_EtaIntercalibration_Stat112: 1.65733785e-04 syst_JES_EtaIntercalibration_Stat113: 0.0 syst_JES_EtaIntercalibration_Stat114: 0.0 syst_JES_EtaIntercalibration_Stat115: 0.0 syst_JES_EtaIntercalibration_Stat116: 0.0 syst_JES_EtaIntercalibration_Stat117: 0.0 - syst_JES_EtaIntercalibration_Stat118: 1.0045028658495702e-06 - syst_JES_EtaIntercalibration_Stat119: 1.0045028658495702e-06 + syst_JES_EtaIntercalibration_Stat118: 1.00450287e-06 + syst_JES_EtaIntercalibration_Stat119: 1.00450287e-06 syst_JES_EtaIntercalibration_Stat12: 0.0 syst_JES_EtaIntercalibration_Stat120: 0.0 syst_JES_EtaIntercalibration_Stat121: 0.0 syst_JES_EtaIntercalibration_Stat122: 0.0 - syst_JES_EtaIntercalibration_Stat123: 0.0003272003441318484 - syst_JES_EtaIntercalibration_Stat124: 0.0070948102687809775 - syst_JES_EtaIntercalibration_Stat125: 0.04280383248028148 - syst_JES_EtaIntercalibration_Stat126: 0.028874724241107482 - syst_JES_EtaIntercalibration_Stat127: 0.0008497539585079907 - syst_JES_EtaIntercalibration_Stat128: 0.17068813667036148 - syst_JES_EtaIntercalibration_Stat129: 0.3755561471671047 + syst_JES_EtaIntercalibration_Stat123: 3.27200344e-04 + syst_JES_EtaIntercalibration_Stat124: 7.09481027e-03 + syst_JES_EtaIntercalibration_Stat125: 4.28038325e-02 + syst_JES_EtaIntercalibration_Stat126: 2.88747242e-02 + syst_JES_EtaIntercalibration_Stat127: 8.49753959e-04 + syst_JES_EtaIntercalibration_Stat128: 1.70688137e-01 + syst_JES_EtaIntercalibration_Stat129: 3.75556147e-01 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 0.05243046323465014 - syst_JES_EtaIntercalibration_Stat131: 0.0005918625600593435 + syst_JES_EtaIntercalibration_Stat130: 5.24304632e-02 + syst_JES_EtaIntercalibration_Stat131: 5.91862560e-04 syst_JES_EtaIntercalibration_Stat132: 0.0 syst_JES_EtaIntercalibration_Stat133: 0.0 syst_JES_EtaIntercalibration_Stat134: 0.0 syst_JES_EtaIntercalibration_Stat135: 0.0 syst_JES_EtaIntercalibration_Stat136: 0.0 - syst_JES_EtaIntercalibration_Stat137: 1.0045028658495702e-06 - syst_JES_EtaIntercalibration_Stat138: 1.0045028658495702e-06 - syst_JES_EtaIntercalibration_Stat139: 4.8895794297669404e-06 + syst_JES_EtaIntercalibration_Stat137: 1.00450287e-06 + syst_JES_EtaIntercalibration_Stat138: 1.00450287e-06 + syst_JES_EtaIntercalibration_Stat139: 4.88957943e-06 syst_JES_EtaIntercalibration_Stat14: 0.0 syst_JES_EtaIntercalibration_Stat140: 0.0 syst_JES_EtaIntercalibration_Stat141: 0.0 - syst_JES_EtaIntercalibration_Stat142: 0.0007029818400926158 - syst_JES_EtaIntercalibration_Stat143: 0.03387655631849259 - syst_JES_EtaIntercalibration_Stat144: 0.3976106764160137 - syst_JES_EtaIntercalibration_Stat145: 0.14784013392851075 - syst_JES_EtaIntercalibration_Stat146: 0.1383095140436839 - syst_JES_EtaIntercalibration_Stat147: 0.14485158844486312 - syst_JES_EtaIntercalibration_Stat148: 0.02666995874912445 - syst_JES_EtaIntercalibration_Stat149: 0.0002871665558521744 + syst_JES_EtaIntercalibration_Stat142: 7.02981840e-04 + syst_JES_EtaIntercalibration_Stat143: 3.38765563e-02 + syst_JES_EtaIntercalibration_Stat144: 3.97610676e-01 + syst_JES_EtaIntercalibration_Stat145: 1.47840134e-01 + syst_JES_EtaIntercalibration_Stat146: 1.38309514e-01 + syst_JES_EtaIntercalibration_Stat147: 1.44851588e-01 + syst_JES_EtaIntercalibration_Stat148: 2.66699587e-02 + syst_JES_EtaIntercalibration_Stat149: 2.87166556e-04 syst_JES_EtaIntercalibration_Stat15: 0.0 syst_JES_EtaIntercalibration_Stat150: 0.0 syst_JES_EtaIntercalibration_Stat151: 0.0 @@ -55683,60 +55683,60 @@ bins: syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 1.0045028658495702e-06 - syst_JES_EtaIntercalibration_Stat157: 4.8895794297669404e-06 + syst_JES_EtaIntercalibration_Stat156: 1.00450287e-06 + syst_JES_EtaIntercalibration_Stat157: 4.88957943e-06 syst_JES_EtaIntercalibration_Stat158: 0.0 syst_JES_EtaIntercalibration_Stat159: 0.0 - syst_JES_EtaIntercalibration_Stat16: 4.823761499079323e-09 - syst_JES_EtaIntercalibration_Stat160: 0.0006047339146269208 - syst_JES_EtaIntercalibration_Stat161: 0.018623646816614624 - syst_JES_EtaIntercalibration_Stat162: 0.1608714005036321 - syst_JES_EtaIntercalibration_Stat163: 0.14495269599079555 - syst_JES_EtaIntercalibration_Stat164: 0.047323698872763525 - syst_JES_EtaIntercalibration_Stat165: 0.036344383334980385 - syst_JES_EtaIntercalibration_Stat166: 0.0028635594587986123 - syst_JES_EtaIntercalibration_Stat167: 8.422298795002467e-05 + syst_JES_EtaIntercalibration_Stat16: 4.82376150e-09 + syst_JES_EtaIntercalibration_Stat160: 6.04733915e-04 + syst_JES_EtaIntercalibration_Stat161: 1.86236468e-02 + syst_JES_EtaIntercalibration_Stat162: 1.60871401e-01 + syst_JES_EtaIntercalibration_Stat163: 1.44952696e-01 + syst_JES_EtaIntercalibration_Stat164: 4.73236989e-02 + syst_JES_EtaIntercalibration_Stat165: 3.63443833e-02 + syst_JES_EtaIntercalibration_Stat166: 2.86355946e-03 + syst_JES_EtaIntercalibration_Stat167: 8.42229880e-05 syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 - syst_JES_EtaIntercalibration_Stat17: 3.64257885981896e-08 + syst_JES_EtaIntercalibration_Stat17: 3.64257886e-08 syst_JES_EtaIntercalibration_Stat170: 0.0 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 - syst_JES_EtaIntercalibration_Stat174: 4.8895794297669404e-06 - syst_JES_EtaIntercalibration_Stat175: 4.8895794297669404e-06 + syst_JES_EtaIntercalibration_Stat174: 4.88957943e-06 + syst_JES_EtaIntercalibration_Stat175: 4.88957943e-06 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 - syst_JES_EtaIntercalibration_Stat178: 0.0007668203961815308 - syst_JES_EtaIntercalibration_Stat179: 0.00972951031655756 - syst_JES_EtaIntercalibration_Stat18: 2.161276383875972e-06 - syst_JES_EtaIntercalibration_Stat180: 0.05041578423470173 - syst_JES_EtaIntercalibration_Stat181: 0.04043383082271577 - syst_JES_EtaIntercalibration_Stat182: 0.030532926489283664 - syst_JES_EtaIntercalibration_Stat183: 0.007631905659794282 - syst_JES_EtaIntercalibration_Stat184: 0.00061922739990169 + syst_JES_EtaIntercalibration_Stat178: 7.66820396e-04 + syst_JES_EtaIntercalibration_Stat179: 9.72951032e-03 + syst_JES_EtaIntercalibration_Stat18: 2.16127638e-06 + syst_JES_EtaIntercalibration_Stat180: 5.04157842e-02 + syst_JES_EtaIntercalibration_Stat181: 4.04338308e-02 + syst_JES_EtaIntercalibration_Stat182: 3.05329265e-02 + syst_JES_EtaIntercalibration_Stat183: 7.63190566e-03 + syst_JES_EtaIntercalibration_Stat184: 6.19227400e-04 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 syst_JES_EtaIntercalibration_Stat187: 0.0 - syst_JES_EtaIntercalibration_Stat188: 3.548106079304845e-05 + syst_JES_EtaIntercalibration_Stat188: 3.54810608e-05 syst_JES_EtaIntercalibration_Stat189: 0.0 - syst_JES_EtaIntercalibration_Stat19: 1.3505628662431823e-06 + syst_JES_EtaIntercalibration_Stat19: 1.35056287e-06 syst_JES_EtaIntercalibration_Stat190: 0.0 - syst_JES_EtaIntercalibration_Stat191: 4.8895794297669404e-06 - syst_JES_EtaIntercalibration_Stat192: 4.8895794297669404e-06 + syst_JES_EtaIntercalibration_Stat191: 4.88957943e-06 + syst_JES_EtaIntercalibration_Stat192: 4.88957943e-06 syst_JES_EtaIntercalibration_Stat193: 0.0 syst_JES_EtaIntercalibration_Stat194: 0.0 - syst_JES_EtaIntercalibration_Stat195: 0.0007093412196904957 - syst_JES_EtaIntercalibration_Stat196: 0.006433554752234569 - syst_JES_EtaIntercalibration_Stat197: 0.02171565637967225 - syst_JES_EtaIntercalibration_Stat198: 0.0018377977221391913 - syst_JES_EtaIntercalibration_Stat199: 6.900798703054235e-05 - syst_JES_EtaIntercalibration_Stat2: 5.457287209548349e-06 + syst_JES_EtaIntercalibration_Stat195: 7.09341220e-04 + syst_JES_EtaIntercalibration_Stat196: 6.43355475e-03 + syst_JES_EtaIntercalibration_Stat197: 2.17156564e-02 + syst_JES_EtaIntercalibration_Stat198: 1.83779772e-03 + syst_JES_EtaIntercalibration_Stat199: 6.90079870e-05 + syst_JES_EtaIntercalibration_Stat2: 5.45728721e-06 syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 syst_JES_EtaIntercalibration_Stat201: 0.0 syst_JES_EtaIntercalibration_Stat202: 0.0 - syst_JES_EtaIntercalibration_Stat203: 3.548106079304845e-05 + syst_JES_EtaIntercalibration_Stat203: 3.54810608e-05 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 @@ -55744,9 +55744,9 @@ bins: syst_JES_EtaIntercalibration_Stat208: 0.0 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 1.142467398545048e-05 - syst_JES_EtaIntercalibration_Stat211: 0.0019250673762429718 - syst_JES_EtaIntercalibration_Stat212: 3.0215626338039066e-16 + syst_JES_EtaIntercalibration_Stat210: 1.14246740e-05 + syst_JES_EtaIntercalibration_Stat211: 1.92506738e-03 + syst_JES_EtaIntercalibration_Stat212: 3.02156263e-16 syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 syst_JES_EtaIntercalibration_Stat215: 0.0 @@ -55758,37 +55758,37 @@ bins: syst_JES_EtaIntercalibration_Stat220: 0.0 syst_JES_EtaIntercalibration_Stat221: 0.0 syst_JES_EtaIntercalibration_Stat222: 0.0 - syst_JES_EtaIntercalibration_Stat223: 1.4860995928940965e-12 - syst_JES_EtaIntercalibration_Stat224: 3.0215626338039066e-16 + syst_JES_EtaIntercalibration_Stat223: 1.48609959e-12 + syst_JES_EtaIntercalibration_Stat224: 3.02156263e-16 syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 syst_JES_EtaIntercalibration_Stat227: 0.0 syst_JES_EtaIntercalibration_Stat228: 0.0 syst_JES_EtaIntercalibration_Stat229: 0.0 - syst_JES_EtaIntercalibration_Stat23: 4.341855170316025e-06 + syst_JES_EtaIntercalibration_Stat23: 4.34185517e-06 syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 syst_JES_EtaIntercalibration_Stat232: 0.0 syst_JES_EtaIntercalibration_Stat233: 0.0 syst_JES_EtaIntercalibration_Stat234: 0.0 - syst_JES_EtaIntercalibration_Stat235: 1.5077502279887076e-12 + syst_JES_EtaIntercalibration_Stat235: 1.50775023e-12 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 syst_JES_EtaIntercalibration_Stat239: 0.0 - syst_JES_EtaIntercalibration_Stat24: 0.00022180246138174393 + syst_JES_EtaIntercalibration_Stat24: 2.21802461e-04 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 syst_JES_EtaIntercalibration_Stat243: 0.0 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 - syst_JES_EtaIntercalibration_Stat25: 0.00024074074748575485 - syst_JES_EtaIntercalibration_Stat26: 8.870994250928133e-06 + syst_JES_EtaIntercalibration_Stat25: 2.40740747e-04 + syst_JES_EtaIntercalibration_Stat26: 8.87099425e-06 syst_JES_EtaIntercalibration_Stat27: 0.0 syst_JES_EtaIntercalibration_Stat28: 0.0 syst_JES_EtaIntercalibration_Stat29: 0.0 - syst_JES_EtaIntercalibration_Stat3: 7.509079221182848e-06 + syst_JES_EtaIntercalibration_Stat3: 7.50907922e-06 syst_JES_EtaIntercalibration_Stat30: 0.0 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 @@ -55797,19 +55797,19 @@ bins: syst_JES_EtaIntercalibration_Stat35: 0.0 syst_JES_EtaIntercalibration_Stat36: 0.0 syst_JES_EtaIntercalibration_Stat37: 0.0 - syst_JES_EtaIntercalibration_Stat38: 4.823761499079323e-09 - syst_JES_EtaIntercalibration_Stat39: 3.4133153970882916e-06 + syst_JES_EtaIntercalibration_Stat38: 4.82376150e-09 + syst_JES_EtaIntercalibration_Stat39: 3.41331540e-06 syst_JES_EtaIntercalibration_Stat4: 0.0 - syst_JES_EtaIntercalibration_Stat40: 0.00018420382406454 - syst_JES_EtaIntercalibration_Stat41: 8.895845701786874e-05 - syst_JES_EtaIntercalibration_Stat42: 2.1849820937481387e-07 + syst_JES_EtaIntercalibration_Stat40: 1.84203824e-04 + syst_JES_EtaIntercalibration_Stat41: 8.89584570e-05 + syst_JES_EtaIntercalibration_Stat42: 2.18498209e-07 syst_JES_EtaIntercalibration_Stat43: 0.0 - syst_JES_EtaIntercalibration_Stat44: 5.085301171022223e-07 - syst_JES_EtaIntercalibration_Stat45: 1.7808018194060787e-05 - syst_JES_EtaIntercalibration_Stat46: 0.0005441661878507337 - syst_JES_EtaIntercalibration_Stat47: 0.0007450220265200218 - syst_JES_EtaIntercalibration_Stat48: 9.738065105553567e-05 - syst_JES_EtaIntercalibration_Stat49: 3.7420957697525596e-07 + syst_JES_EtaIntercalibration_Stat44: 5.08530117e-07 + syst_JES_EtaIntercalibration_Stat45: 1.78080182e-05 + syst_JES_EtaIntercalibration_Stat46: 5.44166188e-04 + syst_JES_EtaIntercalibration_Stat47: 7.45022027e-04 + syst_JES_EtaIntercalibration_Stat48: 9.73806511e-05 + syst_JES_EtaIntercalibration_Stat49: 3.74209577e-07 syst_JES_EtaIntercalibration_Stat5: 0.0 syst_JES_EtaIntercalibration_Stat50: 0.0 syst_JES_EtaIntercalibration_Stat51: 0.0 @@ -55820,21 +55820,21 @@ bins: syst_JES_EtaIntercalibration_Stat56: 0.0 syst_JES_EtaIntercalibration_Stat57: 0.0 syst_JES_EtaIntercalibration_Stat58: 0.0 - syst_JES_EtaIntercalibration_Stat59: 4.823761499079323e-09 + syst_JES_EtaIntercalibration_Stat59: 4.82376150e-09 syst_JES_EtaIntercalibration_Stat6: 0.0 - syst_JES_EtaIntercalibration_Stat60: 3.090142067931505e-08 - syst_JES_EtaIntercalibration_Stat61: 0.00010233738942830232 - syst_JES_EtaIntercalibration_Stat62: 0.0010558755750560763 - syst_JES_EtaIntercalibration_Stat63: 0.0003612374115453714 - syst_JES_EtaIntercalibration_Stat64: 2.1962465708567425e-06 + syst_JES_EtaIntercalibration_Stat60: 3.09014207e-08 + syst_JES_EtaIntercalibration_Stat61: 1.02337389e-04 + syst_JES_EtaIntercalibration_Stat62: 1.05587558e-03 + syst_JES_EtaIntercalibration_Stat63: 3.61237412e-04 + syst_JES_EtaIntercalibration_Stat64: 2.19624657e-06 syst_JES_EtaIntercalibration_Stat65: 0.0 - syst_JES_EtaIntercalibration_Stat66: 5.085301171022223e-07 - syst_JES_EtaIntercalibration_Stat67: 0.0003082953616258279 - syst_JES_EtaIntercalibration_Stat68: 0.0022778642013956845 - syst_JES_EtaIntercalibration_Stat69: 0.003521350324449415 + syst_JES_EtaIntercalibration_Stat66: 5.08530117e-07 + syst_JES_EtaIntercalibration_Stat67: 3.08295362e-04 + syst_JES_EtaIntercalibration_Stat68: 2.27786420e-03 + syst_JES_EtaIntercalibration_Stat69: 3.52135032e-03 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 0.00046234769384090156 - syst_JES_EtaIntercalibration_Stat71: 7.145715613568735e-06 + syst_JES_EtaIntercalibration_Stat70: 4.62347694e-04 + syst_JES_EtaIntercalibration_Stat71: 7.14571561e-06 syst_JES_EtaIntercalibration_Stat72: 0.0 syst_JES_EtaIntercalibration_Stat73: 0.0 syst_JES_EtaIntercalibration_Stat74: 0.0 @@ -55845,19 +55845,19 @@ bins: syst_JES_EtaIntercalibration_Stat79: 0.0 syst_JES_EtaIntercalibration_Stat8: 0.0 syst_JES_EtaIntercalibration_Stat80: 0.0 - syst_JES_EtaIntercalibration_Stat81: 4.823761499079323e-09 - syst_JES_EtaIntercalibration_Stat82: 7.660384324562312e-07 - syst_JES_EtaIntercalibration_Stat83: 0.0004369288107632639 - syst_JES_EtaIntercalibration_Stat84: 0.0015911716029391675 - syst_JES_EtaIntercalibration_Stat85: 0.001977352775809112 - syst_JES_EtaIntercalibration_Stat86: 7.666757512142927e-05 + syst_JES_EtaIntercalibration_Stat81: 4.82376150e-09 + syst_JES_EtaIntercalibration_Stat82: 7.66038432e-07 + syst_JES_EtaIntercalibration_Stat83: 4.36928811e-04 + syst_JES_EtaIntercalibration_Stat84: 1.59117160e-03 + syst_JES_EtaIntercalibration_Stat85: 1.97735278e-03 + syst_JES_EtaIntercalibration_Stat86: 7.66675751e-05 syst_JES_EtaIntercalibration_Stat87: 0.0 - syst_JES_EtaIntercalibration_Stat88: 0.00028593026085918223 - syst_JES_EtaIntercalibration_Stat89: 0.007710793020176329 + syst_JES_EtaIntercalibration_Stat88: 2.85930261e-04 + syst_JES_EtaIntercalibration_Stat89: 7.71079302e-03 syst_JES_EtaIntercalibration_Stat9: 0.0 - syst_JES_EtaIntercalibration_Stat90: 0.00418916610884553 - syst_JES_EtaIntercalibration_Stat91: 0.0008435865975108897 - syst_JES_EtaIntercalibration_Stat92: 8.070394331598674e-06 + syst_JES_EtaIntercalibration_Stat90: 4.18916611e-03 + syst_JES_EtaIntercalibration_Stat91: 8.43586598e-04 + syst_JES_EtaIntercalibration_Stat92: 8.07039433e-06 syst_JES_EtaIntercalibration_Stat93: 0.0 syst_JES_EtaIntercalibration_Stat94: 0.0 syst_JES_EtaIntercalibration_Stat95: 0.0 @@ -55865,154 +55865,154 @@ bins: syst_JES_EtaIntercalibration_Stat97: 0.0 syst_JES_EtaIntercalibration_Stat98: 0.0 syst_JES_EtaIntercalibration_Stat99: 0.0 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0020456814035425945 - syst_JES_Flavour_Comp: 0.14104712005213008 - syst_JES_Flavour_Response: 1.6280098279801631 - syst_JES_Gjet_Generator: 1.4960430307982455 - syst_JES_Gjet_OOC: 0.9217621710614946 - syst_JES_Gjet_Purity: 0.25188590174918485 - syst_JES_Gjet_Stat1: 0.001230699575475266 - syst_JES_Gjet_Stat10: 0.0721805416992696 - syst_JES_Gjet_Stat11: 0.0757795051448609 - syst_JES_Gjet_Stat12: 0.022120667954426694 - syst_JES_Gjet_Stat13: 0.016712730499532386 - syst_JES_Gjet_Stat14: 0.0022128293398949684 - syst_JES_Gjet_Stat15: 9.681288867976207e-05 - syst_JES_Gjet_Stat2: 0.00112114104921582 - syst_JES_Gjet_Stat3: 0.00405692408112353 - syst_JES_Gjet_Stat4: 0.00425737301630947 - syst_JES_Gjet_Stat5: 0.003939060547897176 - syst_JES_Gjet_Stat6: 0.009159635724607176 - syst_JES_Gjet_Stat7: 0.020935382681002035 - syst_JES_Gjet_Stat8: 0.02257001122618241 - syst_JES_Gjet_Stat9: 0.05661385784417098 - syst_JES_Gjet_Veto: 0.3830255136084279 - syst_JES_Gjet_dPhi: 0.07150739262481888 - syst_JES_LArESZee: 1.61138791108783 - syst_JES_LArEsmear: 0.10797073341882975 - syst_JES_LAr_JVT: 0.1699058857132383 - syst_JES_MJB_Alpha: 0.00281859614125543 - syst_JES_MJB_Asym: 0.009315683375362219 - syst_JES_MJB_Beta: 0.003746162936926262 - syst_JES_MJB_Fragmentation: 0.010778152995759524 - syst_JES_MJB_Stat1: 0.003168358987993627 - syst_JES_MJB_Stat10: 1.3102964359259116e-12 - syst_JES_MJB_Stat11: 3.369791448665629e-16 - syst_JES_MJB_Stat12: 3.2129542480402673e-20 - syst_JES_MJB_Stat13: 2.1001116041772637e-20 + syst_JES_EtaIntercalibration_TotalStat_MJB: 2.04568140e-03 + syst_JES_Flavour_Comp: 1.41047120e-01 + syst_JES_Flavour_Response: 1.62800983e+00 + syst_JES_Gjet_Generator: 1.49604303e+00 + syst_JES_Gjet_OOC: 9.21762171e-01 + syst_JES_Gjet_Purity: 2.51885902e-01 + syst_JES_Gjet_Stat1: 1.23069958e-03 + syst_JES_Gjet_Stat10: 7.21805417e-02 + syst_JES_Gjet_Stat11: 7.57795051e-02 + syst_JES_Gjet_Stat12: 2.21206680e-02 + syst_JES_Gjet_Stat13: 1.67127305e-02 + syst_JES_Gjet_Stat14: 2.21282934e-03 + syst_JES_Gjet_Stat15: 9.68128887e-05 + syst_JES_Gjet_Stat2: 1.12114105e-03 + syst_JES_Gjet_Stat3: 4.05692408e-03 + syst_JES_Gjet_Stat4: 4.25737302e-03 + syst_JES_Gjet_Stat5: 3.93906055e-03 + syst_JES_Gjet_Stat6: 9.15963572e-03 + syst_JES_Gjet_Stat7: 2.09353827e-02 + syst_JES_Gjet_Stat8: 2.25700112e-02 + syst_JES_Gjet_Stat9: 5.66138578e-02 + syst_JES_Gjet_Veto: 3.83025514e-01 + syst_JES_Gjet_dPhi: 7.15073926e-02 + syst_JES_LArESZee: 1.61138791e+00 + syst_JES_LArEsmear: 1.07970733e-01 + syst_JES_LAr_JVT: 1.69905886e-01 + syst_JES_MJB_Alpha: 2.81859614e-03 + syst_JES_MJB_Asym: 9.31568338e-03 + syst_JES_MJB_Beta: 3.74616294e-03 + syst_JES_MJB_Fragmentation: 1.07781530e-02 + syst_JES_MJB_Stat1: 3.16835899e-03 + syst_JES_MJB_Stat10: 1.31029644e-12 + syst_JES_MJB_Stat11: 3.36979145e-16 + syst_JES_MJB_Stat12: 3.21295425e-20 + syst_JES_MJB_Stat13: 2.10011160e-20 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 0.003938276145726706 - syst_JES_MJB_Stat3: 0.0034883728567198778 - syst_JES_MJB_Stat4: 0.0014056640806038973 - syst_JES_MJB_Stat5: 6.351030461271619e-05 - syst_JES_MJB_Stat6: 7.46423903073302e-06 - syst_JES_MJB_Stat7: 2.066336613588817e-10 - syst_JES_MJB_Stat8: 1.320688740771325e-12 - syst_JES_MJB_Stat9: 1.3198227153675406e-12 - syst_JES_MJB_Threshold: 0.010987668906551564 - syst_JES_Pileup_MuOffset: 0.023492162921919302 - syst_JES_Pileup_NPVOffset: 0.08428839822300575 - syst_JES_Pileup_Pt_term: 0.7875421702994703 - syst_JES_Pileup_Rho_topology: 0.4538690422357533 - syst_JES_PunchThrough_MC15: 0.002596435007852113 + syst_JES_MJB_Stat2: 3.93827615e-03 + syst_JES_MJB_Stat3: 3.48837286e-03 + syst_JES_MJB_Stat4: 1.40566408e-03 + syst_JES_MJB_Stat5: 6.35103046e-05 + syst_JES_MJB_Stat6: 7.46423903e-06 + syst_JES_MJB_Stat7: 2.06633661e-10 + syst_JES_MJB_Stat8: 1.32068874e-12 + syst_JES_MJB_Stat9: 1.31982272e-12 + syst_JES_MJB_Threshold: 1.09876689e-02 + syst_JES_Pileup_MuOffset: 2.34921629e-02 + syst_JES_Pileup_NPVOffset: 8.42883982e-02 + syst_JES_Pileup_Pt_term: 7.87542170e-01 + syst_JES_Pileup_Rho_topology: 4.53869042e-01 + syst_JES_PunchThrough_MC15: 2.59643501e-03 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 1.3757255976392968 - syst_JES_Zjet_MuScale: 0.06884352747353958 - syst_JES_Zjet_MuSmearID: 0.018390257441101794 - syst_JES_Zjet_MuSmearMS: 0.127636076796492 - syst_JES_Zjet_OOC: 0.44987222630431406 - syst_JES_Zjet_Stat1: 0.006794725270936273 - syst_JES_Zjet_Stat10: 0.10580089744420887 - syst_JES_Zjet_Stat11: 0.1902134590401005 - syst_JES_Zjet_Stat12: 0.18190197909863434 - syst_JES_Zjet_Stat13: 0.01605984205246116 - syst_JES_Zjet_Stat2: 0.0009750144511749555 - syst_JES_Zjet_Stat3: 0.004068826243525275 - syst_JES_Zjet_Stat4: 0.0054243908413756465 - syst_JES_Zjet_Stat5: 0.0017911989525175589 - syst_JES_Zjet_Stat6: 0.005999586714932954 - syst_JES_Zjet_Stat7: 0.003985396593502333 - syst_JES_Zjet_Stat8: 0.013342228777456937 - syst_JES_Zjet_Stat9: 0.03928539518701575 - syst_JES_Zjet_Veto: 0.07120370267759957 - syst_JES_Zjet_dPhi: 0.07032056793712634 + syst_JES_Zjet_MC: 1.37572560e+00 + syst_JES_Zjet_MuScale: 6.88435275e-02 + syst_JES_Zjet_MuSmearID: 1.83902574e-02 + syst_JES_Zjet_MuSmearMS: 1.27636077e-01 + syst_JES_Zjet_OOC: 4.49872226e-01 + syst_JES_Zjet_Stat1: 6.79472527e-03 + syst_JES_Zjet_Stat10: 1.05800897e-01 + syst_JES_Zjet_Stat11: 1.90213459e-01 + syst_JES_Zjet_Stat12: 1.81901979e-01 + syst_JES_Zjet_Stat13: 1.60598421e-02 + syst_JES_Zjet_Stat2: 9.75014451e-04 + syst_JES_Zjet_Stat3: 4.06882624e-03 + syst_JES_Zjet_Stat4: 5.42439084e-03 + syst_JES_Zjet_Stat5: 1.79119895e-03 + syst_JES_Zjet_Stat6: 5.99958671e-03 + syst_JES_Zjet_Stat7: 3.98539659e-03 + syst_JES_Zjet_Stat8: 1.33422288e-02 + syst_JES_Zjet_Stat9: 3.92853952e-02 + syst_JES_Zjet_Veto: 7.12037027e-02 + syst_JES_Zjet_dPhi: 7.03205679e-02 syst_PRW: 0.0 syst_Unfolding_bias: 0.08462 - syst_cleaning: 0.3153198495179141 + syst_cleaning: 3.15319850e-01 syst_lumi: 1.2512 - stat: 0.3659 syst_JER_CROSS_CALIB_FORWARD: 0.03709 syst_JER_NOISE_FORWARD: 0.1691 - syst_JER_NP0: 0.4286257396319078 - syst_JER_NP1: 0.09971251476118734 - syst_JER_NP2: 0.07994844760844329 - syst_JER_NP3: 0.1753075226566162 - syst_JER_NP4: 0.04402945832053808 - syst_JER_NP5: 0.06878651248609716 - syst_JER_NP6: 0.058511970356500555 - syst_JER_NP7: 0.0069894260929689355 - syst_JER_NP8: 0.024051957820518482 - syst_JES_EtaIntercalibration_Modelling: 1.4235212502804446 - syst_JES_EtaIntercalibration_NonClosure: 0.4020265186215954 + syst_JER_NP0: 4.28625740e-01 + syst_JER_NP1: 9.97125148e-02 + syst_JER_NP2: 7.99484476e-02 + syst_JER_NP3: 1.75307523e-01 + syst_JER_NP4: 4.40294583e-02 + syst_JER_NP5: 6.87865125e-02 + syst_JER_NP6: 5.85119704e-02 + syst_JER_NP7: 6.98942609e-03 + syst_JER_NP8: 2.40519578e-02 + syst_JES_EtaIntercalibration_Modelling: 1.42352125e+00 + syst_JES_EtaIntercalibration_NonClosure: 4.02026519e-01 syst_JES_EtaIntercalibration_Stat0: 0.0 - syst_JES_EtaIntercalibration_Stat1: 1.6255296829033915e-08 + syst_JES_EtaIntercalibration_Stat1: 1.62552968e-08 syst_JES_EtaIntercalibration_Stat10: 0.0 syst_JES_EtaIntercalibration_Stat100: 0.0 syst_JES_EtaIntercalibration_Stat101: 0.0 syst_JES_EtaIntercalibration_Stat102: 0.0 - syst_JES_EtaIntercalibration_Stat103: 1.497209005950739e-07 - syst_JES_EtaIntercalibration_Stat104: 0.000149000268456134 - syst_JES_EtaIntercalibration_Stat105: 0.0015898278987047623 - syst_JES_EtaIntercalibration_Stat106: 0.0004677929670270813 - syst_JES_EtaIntercalibration_Stat107: 1.905978153075213e-05 - syst_JES_EtaIntercalibration_Stat108: 0.00017689214227884742 - syst_JES_EtaIntercalibration_Stat109: 0.012741747005414918 + syst_JES_EtaIntercalibration_Stat103: 1.49720901e-07 + syst_JES_EtaIntercalibration_Stat104: 1.49000268e-04 + syst_JES_EtaIntercalibration_Stat105: 1.58982790e-03 + syst_JES_EtaIntercalibration_Stat106: 4.67792967e-04 + syst_JES_EtaIntercalibration_Stat107: 1.90597815e-05 + syst_JES_EtaIntercalibration_Stat108: 1.76892142e-04 + syst_JES_EtaIntercalibration_Stat109: 1.27417470e-02 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 0.011314490300053291 - syst_JES_EtaIntercalibration_Stat111: 0.0007949102009032215 - syst_JES_EtaIntercalibration_Stat112: 0.0001198335898318998 + syst_JES_EtaIntercalibration_Stat110: 1.13144903e-02 + syst_JES_EtaIntercalibration_Stat111: 7.94910201e-04 + syst_JES_EtaIntercalibration_Stat112: 1.19833590e-04 syst_JES_EtaIntercalibration_Stat113: 0.0 syst_JES_EtaIntercalibration_Stat114: 0.0 syst_JES_EtaIntercalibration_Stat115: 0.0 syst_JES_EtaIntercalibration_Stat116: 0.0 syst_JES_EtaIntercalibration_Stat117: 0.0 - syst_JES_EtaIntercalibration_Stat118: 1.0106516462164399e-07 - syst_JES_EtaIntercalibration_Stat119: 1.0106516462164399e-07 + syst_JES_EtaIntercalibration_Stat118: 1.01065165e-07 + syst_JES_EtaIntercalibration_Stat119: 1.01065165e-07 syst_JES_EtaIntercalibration_Stat12: 0.0 syst_JES_EtaIntercalibration_Stat120: 0.0 syst_JES_EtaIntercalibration_Stat121: 0.0 syst_JES_EtaIntercalibration_Stat122: 0.0 - syst_JES_EtaIntercalibration_Stat123: 7.822746880092695e-05 - syst_JES_EtaIntercalibration_Stat124: 0.002834941644506417 - syst_JES_EtaIntercalibration_Stat125: 0.012821694925008939 - syst_JES_EtaIntercalibration_Stat126: 0.005938051111265378 - syst_JES_EtaIntercalibration_Stat127: 0.0003412744460108316 - syst_JES_EtaIntercalibration_Stat128: 0.0556548587276978 - syst_JES_EtaIntercalibration_Stat129: 0.12154573737898008 + syst_JES_EtaIntercalibration_Stat123: 7.82274688e-05 + syst_JES_EtaIntercalibration_Stat124: 2.83494164e-03 + syst_JES_EtaIntercalibration_Stat125: 1.28216949e-02 + syst_JES_EtaIntercalibration_Stat126: 5.93805111e-03 + syst_JES_EtaIntercalibration_Stat127: 3.41274446e-04 + syst_JES_EtaIntercalibration_Stat128: 5.56548587e-02 + syst_JES_EtaIntercalibration_Stat129: 1.21545737e-01 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 0.017472054115071873 - syst_JES_EtaIntercalibration_Stat131: 0.00022132466536741897 + syst_JES_EtaIntercalibration_Stat130: 1.74720541e-02 + syst_JES_EtaIntercalibration_Stat131: 2.21324665e-04 syst_JES_EtaIntercalibration_Stat132: 0.0 syst_JES_EtaIntercalibration_Stat133: 0.0 syst_JES_EtaIntercalibration_Stat134: 0.0 syst_JES_EtaIntercalibration_Stat135: 0.0 syst_JES_EtaIntercalibration_Stat136: 0.0 - syst_JES_EtaIntercalibration_Stat137: 1.0106516462164399e-07 - syst_JES_EtaIntercalibration_Stat138: 1.0106516462164399e-07 - syst_JES_EtaIntercalibration_Stat139: 4.859268540634485e-07 + syst_JES_EtaIntercalibration_Stat137: 1.01065165e-07 + syst_JES_EtaIntercalibration_Stat138: 1.01065165e-07 + syst_JES_EtaIntercalibration_Stat139: 4.85926854e-07 syst_JES_EtaIntercalibration_Stat14: 0.0 syst_JES_EtaIntercalibration_Stat140: 0.0 syst_JES_EtaIntercalibration_Stat141: 0.0 - syst_JES_EtaIntercalibration_Stat142: 8.172942233369815e-05 - syst_JES_EtaIntercalibration_Stat143: 0.013890753327303742 - syst_JES_EtaIntercalibration_Stat144: 0.12992493986914136 - syst_JES_EtaIntercalibration_Stat145: 0.04211548052676118 - syst_JES_EtaIntercalibration_Stat146: 0.06840205461095449 - syst_JES_EtaIntercalibration_Stat147: 0.06657130068580605 - syst_JES_EtaIntercalibration_Stat148: 0.011230592926021314 - syst_JES_EtaIntercalibration_Stat149: 0.00013614421875349686 + syst_JES_EtaIntercalibration_Stat142: 8.17294223e-05 + syst_JES_EtaIntercalibration_Stat143: 1.38907533e-02 + syst_JES_EtaIntercalibration_Stat144: 1.29924940e-01 + syst_JES_EtaIntercalibration_Stat145: 4.21154805e-02 + syst_JES_EtaIntercalibration_Stat146: 6.84020546e-02 + syst_JES_EtaIntercalibration_Stat147: 6.65713007e-02 + syst_JES_EtaIntercalibration_Stat148: 1.12305929e-02 + syst_JES_EtaIntercalibration_Stat149: 1.36144219e-04 syst_JES_EtaIntercalibration_Stat15: 0.0 syst_JES_EtaIntercalibration_Stat150: 0.0 syst_JES_EtaIntercalibration_Stat151: 0.0 @@ -56020,60 +56020,60 @@ bins: syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 1.0106516462164399e-07 - syst_JES_EtaIntercalibration_Stat157: 4.859268540634485e-07 + syst_JES_EtaIntercalibration_Stat156: 1.01065165e-07 + syst_JES_EtaIntercalibration_Stat157: 4.85926854e-07 syst_JES_EtaIntercalibration_Stat158: 0.0 syst_JES_EtaIntercalibration_Stat159: 0.0 - syst_JES_EtaIntercalibration_Stat16: 3.2942740334556266e-10 - syst_JES_EtaIntercalibration_Stat160: 9.948977233866806e-05 - syst_JES_EtaIntercalibration_Stat161: 0.006814036997808274 - syst_JES_EtaIntercalibration_Stat162: 0.07016641130198978 - syst_JES_EtaIntercalibration_Stat163: 0.06377683043237566 - syst_JES_EtaIntercalibration_Stat164: 0.04903537778991817 - syst_JES_EtaIntercalibration_Stat165: 0.04383714264182829 - syst_JES_EtaIntercalibration_Stat166: 0.005173922224876887 - syst_JES_EtaIntercalibration_Stat167: 8.570989835923271e-05 + syst_JES_EtaIntercalibration_Stat16: 3.29427403e-10 + syst_JES_EtaIntercalibration_Stat160: 9.94897723e-05 + syst_JES_EtaIntercalibration_Stat161: 6.81403700e-03 + syst_JES_EtaIntercalibration_Stat162: 7.01664113e-02 + syst_JES_EtaIntercalibration_Stat163: 6.37768304e-02 + syst_JES_EtaIntercalibration_Stat164: 4.90353778e-02 + syst_JES_EtaIntercalibration_Stat165: 4.38371426e-02 + syst_JES_EtaIntercalibration_Stat166: 5.17392222e-03 + syst_JES_EtaIntercalibration_Stat167: 8.57098984e-05 syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 - syst_JES_EtaIntercalibration_Stat17: 2.5811103715261774e-09 + syst_JES_EtaIntercalibration_Stat17: 2.58111037e-09 syst_JES_EtaIntercalibration_Stat170: 0.0 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 - syst_JES_EtaIntercalibration_Stat174: 4.859268540634485e-07 - syst_JES_EtaIntercalibration_Stat175: 4.859268540634485e-07 + syst_JES_EtaIntercalibration_Stat174: 4.85926854e-07 + syst_JES_EtaIntercalibration_Stat175: 4.85926854e-07 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 - syst_JES_EtaIntercalibration_Stat178: 0.0005457551949363378 - syst_JES_EtaIntercalibration_Stat179: 0.009326450235754222 - syst_JES_EtaIntercalibration_Stat18: 1.9138744159426972e-07 - syst_JES_EtaIntercalibration_Stat180: 0.05047398810278419 - syst_JES_EtaIntercalibration_Stat181: 0.05131275353165137 - syst_JES_EtaIntercalibration_Stat182: 0.013782937522531255 - syst_JES_EtaIntercalibration_Stat183: 0.007283198250082171 - syst_JES_EtaIntercalibration_Stat184: 0.0011930957193522864 + syst_JES_EtaIntercalibration_Stat178: 5.45755195e-04 + syst_JES_EtaIntercalibration_Stat179: 9.32645024e-03 + syst_JES_EtaIntercalibration_Stat18: 1.91387442e-07 + syst_JES_EtaIntercalibration_Stat180: 5.04739881e-02 + syst_JES_EtaIntercalibration_Stat181: 5.13127535e-02 + syst_JES_EtaIntercalibration_Stat182: 1.37829375e-02 + syst_JES_EtaIntercalibration_Stat183: 7.28319825e-03 + syst_JES_EtaIntercalibration_Stat184: 1.19309572e-03 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 syst_JES_EtaIntercalibration_Stat187: 0.0 - syst_JES_EtaIntercalibration_Stat188: 1.5034201009697855e-05 + syst_JES_EtaIntercalibration_Stat188: 1.50342010e-05 syst_JES_EtaIntercalibration_Stat189: 0.0 - syst_JES_EtaIntercalibration_Stat19: 1.275149557816651e-07 + syst_JES_EtaIntercalibration_Stat19: 1.27514956e-07 syst_JES_EtaIntercalibration_Stat190: 0.0 - syst_JES_EtaIntercalibration_Stat191: 4.859268540634485e-07 - syst_JES_EtaIntercalibration_Stat192: 4.859268540634485e-07 + syst_JES_EtaIntercalibration_Stat191: 4.85926854e-07 + syst_JES_EtaIntercalibration_Stat192: 4.85926854e-07 syst_JES_EtaIntercalibration_Stat193: 0.0 syst_JES_EtaIntercalibration_Stat194: 0.0 - syst_JES_EtaIntercalibration_Stat195: 0.0005137317279475739 - syst_JES_EtaIntercalibration_Stat196: 0.0031406574152556023 - syst_JES_EtaIntercalibration_Stat197: 0.012585380596152029 - syst_JES_EtaIntercalibration_Stat198: 0.0022522841738999103 - syst_JES_EtaIntercalibration_Stat199: 7.029744594755915e-05 - syst_JES_EtaIntercalibration_Stat2: 5.545596918952909e-07 + syst_JES_EtaIntercalibration_Stat195: 5.13731728e-04 + syst_JES_EtaIntercalibration_Stat196: 3.14065742e-03 + syst_JES_EtaIntercalibration_Stat197: 1.25853806e-02 + syst_JES_EtaIntercalibration_Stat198: 2.25228417e-03 + syst_JES_EtaIntercalibration_Stat199: 7.02974459e-05 + syst_JES_EtaIntercalibration_Stat2: 5.54559692e-07 syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 syst_JES_EtaIntercalibration_Stat201: 0.0 syst_JES_EtaIntercalibration_Stat202: 0.0 - syst_JES_EtaIntercalibration_Stat203: 1.5034201009697855e-05 + syst_JES_EtaIntercalibration_Stat203: 1.50342010e-05 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 @@ -56081,9 +56081,9 @@ bins: syst_JES_EtaIntercalibration_Stat208: 0.0 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 5.567305393962213e-05 - syst_JES_EtaIntercalibration_Stat211: 0.0020244503626108 - syst_JES_EtaIntercalibration_Stat212: 1.082271947109413e-12 + syst_JES_EtaIntercalibration_Stat210: 5.56730539e-05 + syst_JES_EtaIntercalibration_Stat211: 2.02445036e-03 + syst_JES_EtaIntercalibration_Stat212: 1.08227195e-12 syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 syst_JES_EtaIntercalibration_Stat215: 0.0 @@ -56095,37 +56095,37 @@ bins: syst_JES_EtaIntercalibration_Stat220: 0.0 syst_JES_EtaIntercalibration_Stat221: 0.0 syst_JES_EtaIntercalibration_Stat222: 0.0 - syst_JES_EtaIntercalibration_Stat223: 6.439764902541086e-10 - syst_JES_EtaIntercalibration_Stat224: 1.0821853445690346e-12 + syst_JES_EtaIntercalibration_Stat223: 6.43976490e-10 + syst_JES_EtaIntercalibration_Stat224: 1.08218534e-12 syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 syst_JES_EtaIntercalibration_Stat227: 0.0 syst_JES_EtaIntercalibration_Stat228: 0.0 syst_JES_EtaIntercalibration_Stat229: 0.0 - syst_JES_EtaIntercalibration_Stat23: 4.412053407145022e-07 + syst_JES_EtaIntercalibration_Stat23: 4.41205341e-07 syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 syst_JES_EtaIntercalibration_Stat232: 0.0 syst_JES_EtaIntercalibration_Stat233: 0.0 syst_JES_EtaIntercalibration_Stat234: 0.0 - syst_JES_EtaIntercalibration_Stat235: 6.531563595342237e-10 + syst_JES_EtaIntercalibration_Stat235: 6.53156360e-10 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 syst_JES_EtaIntercalibration_Stat239: 0.0 - syst_JES_EtaIntercalibration_Stat24: 4.6076643757982195e-05 + syst_JES_EtaIntercalibration_Stat24: 4.60766438e-05 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 syst_JES_EtaIntercalibration_Stat243: 0.0 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 - syst_JES_EtaIntercalibration_Stat25: 0.00013361232381408535 - syst_JES_EtaIntercalibration_Stat26: 8.22053149133315e-07 + syst_JES_EtaIntercalibration_Stat25: 1.33612324e-04 + syst_JES_EtaIntercalibration_Stat26: 8.22053149e-07 syst_JES_EtaIntercalibration_Stat27: 0.0 syst_JES_EtaIntercalibration_Stat28: 0.0 syst_JES_EtaIntercalibration_Stat29: 0.0 - syst_JES_EtaIntercalibration_Stat3: 7.12622277226863e-07 + syst_JES_EtaIntercalibration_Stat3: 7.12622277e-07 syst_JES_EtaIntercalibration_Stat30: 0.0 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 @@ -56134,19 +56134,19 @@ bins: syst_JES_EtaIntercalibration_Stat35: 0.0 syst_JES_EtaIntercalibration_Stat36: 0.0 syst_JES_EtaIntercalibration_Stat37: 0.0 - syst_JES_EtaIntercalibration_Stat38: 3.2942740334556266e-10 - syst_JES_EtaIntercalibration_Stat39: 3.092889062025989e-07 + syst_JES_EtaIntercalibration_Stat38: 3.29427403e-10 + syst_JES_EtaIntercalibration_Stat39: 3.09288906e-07 syst_JES_EtaIntercalibration_Stat4: 0.0 - syst_JES_EtaIntercalibration_Stat40: 3.487046314576277e-05 - syst_JES_EtaIntercalibration_Stat41: 1.3041678841314872e-05 - syst_JES_EtaIntercalibration_Stat42: 1.7381129853953683e-08 + syst_JES_EtaIntercalibration_Stat40: 3.48704631e-05 + syst_JES_EtaIntercalibration_Stat41: 1.30416788e-05 + syst_JES_EtaIntercalibration_Stat42: 1.73811299e-08 syst_JES_EtaIntercalibration_Stat43: 0.0 - syst_JES_EtaIntercalibration_Stat44: 3.6243163148378756e-08 - syst_JES_EtaIntercalibration_Stat45: 2.01526189551135e-06 - syst_JES_EtaIntercalibration_Stat46: 9.756671946416974e-05 - syst_JES_EtaIntercalibration_Stat47: 0.00025605278264451646 - syst_JES_EtaIntercalibration_Stat48: 2.100454324068962e-05 - syst_JES_EtaIntercalibration_Stat49: 2.8630799849113544e-08 + syst_JES_EtaIntercalibration_Stat44: 3.62431631e-08 + syst_JES_EtaIntercalibration_Stat45: 2.01526190e-06 + syst_JES_EtaIntercalibration_Stat46: 9.75667195e-05 + syst_JES_EtaIntercalibration_Stat47: 2.56052783e-04 + syst_JES_EtaIntercalibration_Stat48: 2.10045432e-05 + syst_JES_EtaIntercalibration_Stat49: 2.86307998e-08 syst_JES_EtaIntercalibration_Stat5: 0.0 syst_JES_EtaIntercalibration_Stat50: 0.0 syst_JES_EtaIntercalibration_Stat51: 0.0 @@ -56157,21 +56157,21 @@ bins: syst_JES_EtaIntercalibration_Stat56: 0.0 syst_JES_EtaIntercalibration_Stat57: 0.0 syst_JES_EtaIntercalibration_Stat58: 0.0 - syst_JES_EtaIntercalibration_Stat59: 3.2942740334556266e-10 + syst_JES_EtaIntercalibration_Stat59: 3.29427403e-10 syst_JES_EtaIntercalibration_Stat6: 0.0 - syst_JES_EtaIntercalibration_Stat60: 2.2088352754506163e-09 - syst_JES_EtaIntercalibration_Stat61: 1.9407977502820846e-05 - syst_JES_EtaIntercalibration_Stat62: 0.0005060122207022277 - syst_JES_EtaIntercalibration_Stat63: 6.379818238006472e-05 - syst_JES_EtaIntercalibration_Stat64: 2.0163186132156792e-07 + syst_JES_EtaIntercalibration_Stat60: 2.20883528e-09 + syst_JES_EtaIntercalibration_Stat61: 1.94079775e-05 + syst_JES_EtaIntercalibration_Stat62: 5.06012221e-04 + syst_JES_EtaIntercalibration_Stat63: 6.37981824e-05 + syst_JES_EtaIntercalibration_Stat64: 2.01631861e-07 syst_JES_EtaIntercalibration_Stat65: 0.0 - syst_JES_EtaIntercalibration_Stat66: 3.6243163148378756e-08 - syst_JES_EtaIntercalibration_Stat67: 6.218623722335996e-05 - syst_JES_EtaIntercalibration_Stat68: 0.0009330519854220343 - syst_JES_EtaIntercalibration_Stat69: 0.0011935496166896457 + syst_JES_EtaIntercalibration_Stat66: 3.62431631e-08 + syst_JES_EtaIntercalibration_Stat67: 6.21862372e-05 + syst_JES_EtaIntercalibration_Stat68: 9.33051985e-04 + syst_JES_EtaIntercalibration_Stat69: 1.19354962e-03 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 0.00019208385538613075 - syst_JES_EtaIntercalibration_Stat71: 6.654552248649041e-07 + syst_JES_EtaIntercalibration_Stat70: 1.92083855e-04 + syst_JES_EtaIntercalibration_Stat71: 6.65455225e-07 syst_JES_EtaIntercalibration_Stat72: 0.0 syst_JES_EtaIntercalibration_Stat73: 0.0 syst_JES_EtaIntercalibration_Stat74: 0.0 @@ -56182,19 +56182,19 @@ bins: syst_JES_EtaIntercalibration_Stat79: 0.0 syst_JES_EtaIntercalibration_Stat8: 0.0 syst_JES_EtaIntercalibration_Stat80: 0.0 - syst_JES_EtaIntercalibration_Stat81: 3.2942740334556266e-10 - syst_JES_EtaIntercalibration_Stat82: 6.179185443891451e-08 - syst_JES_EtaIntercalibration_Stat83: 0.00010399542045205644 - syst_JES_EtaIntercalibration_Stat84: 0.0006647830774019447 - syst_JES_EtaIntercalibration_Stat85: 0.0005128372079666217 - syst_JES_EtaIntercalibration_Stat86: 1.1867783565181831e-05 + syst_JES_EtaIntercalibration_Stat81: 3.29427403e-10 + syst_JES_EtaIntercalibration_Stat82: 6.17918544e-08 + syst_JES_EtaIntercalibration_Stat83: 1.03995420e-04 + syst_JES_EtaIntercalibration_Stat84: 6.64783077e-04 + syst_JES_EtaIntercalibration_Stat85: 5.12837208e-04 + syst_JES_EtaIntercalibration_Stat86: 1.18677836e-05 syst_JES_EtaIntercalibration_Stat87: 0.0 - syst_JES_EtaIntercalibration_Stat88: 6.404084692600497e-05 - syst_JES_EtaIntercalibration_Stat89: 0.0027438096121086826 + syst_JES_EtaIntercalibration_Stat88: 6.40408469e-05 + syst_JES_EtaIntercalibration_Stat89: 2.74380961e-03 syst_JES_EtaIntercalibration_Stat9: 0.0 - syst_JES_EtaIntercalibration_Stat90: 0.0013445685953122658 - syst_JES_EtaIntercalibration_Stat91: 0.0003219342013517669 - syst_JES_EtaIntercalibration_Stat92: 7.553953324584419e-07 + syst_JES_EtaIntercalibration_Stat90: 1.34456860e-03 + syst_JES_EtaIntercalibration_Stat91: 3.21934201e-04 + syst_JES_EtaIntercalibration_Stat92: 7.55395332e-07 syst_JES_EtaIntercalibration_Stat93: 0.0 syst_JES_EtaIntercalibration_Stat94: 0.0 syst_JES_EtaIntercalibration_Stat95: 0.0 @@ -56202,154 +56202,154 @@ bins: syst_JES_EtaIntercalibration_Stat97: 0.0 syst_JES_EtaIntercalibration_Stat98: 0.0 syst_JES_EtaIntercalibration_Stat99: 0.0 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.010340051407995998 - syst_JES_Flavour_Comp: 0.08595687407066407 - syst_JES_Flavour_Response: 0.7336293665741578 - syst_JES_Gjet_Generator: 0.7643287430811431 - syst_JES_Gjet_OOC: 0.4897680267228558 - syst_JES_Gjet_Purity: 0.1321227694229878 - syst_JES_Gjet_Stat1: 0.0005680302693299011 - syst_JES_Gjet_Stat10: 0.042728468577752705 - syst_JES_Gjet_Stat11: 0.05727604800437963 - syst_JES_Gjet_Stat12: 0.025053167464414557 - syst_JES_Gjet_Stat13: 0.011355035931250944 - syst_JES_Gjet_Stat14: 0.0025461759562135527 - syst_JES_Gjet_Stat15: 0.00015665193104459323 - syst_JES_Gjet_Stat2: 0.000611512513935733 - syst_JES_Gjet_Stat3: 0.0017264659358064381 - syst_JES_Gjet_Stat4: 0.002353377307190668 - syst_JES_Gjet_Stat5: 0.0016260034040554774 - syst_JES_Gjet_Stat6: 0.0034694649083107905 - syst_JES_Gjet_Stat7: 0.006634216231025335 - syst_JES_Gjet_Stat8: 0.009465918061656777 - syst_JES_Gjet_Stat9: 0.02497953712541528 - syst_JES_Gjet_Veto: 0.20677047057063055 - syst_JES_Gjet_dPhi: 0.03285500266321706 - syst_JES_LArESZee: 0.8910358073612981 - syst_JES_LArEsmear: 0.05732779496021105 - syst_JES_LAr_JVT: 0.08453146204224792 - syst_JES_MJB_Alpha: 0.0007801916879844337 - syst_JES_MJB_Asym: 0.005221507639561585 - syst_JES_MJB_Beta: 0.0024764574133225065 - syst_JES_MJB_Fragmentation: 0.012806924484434191 - syst_JES_MJB_Stat1: 0.00013325630144574776 - syst_JES_MJB_Stat10: 5.72442791946172e-10 - syst_JES_MJB_Stat11: 1.2080188357389136e-12 - syst_JES_MJB_Stat12: 1.3891047476702397e-15 - syst_JES_MJB_Stat13: 9.078544307872271e-16 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.03400514e-02 + syst_JES_Flavour_Comp: 8.59568741e-02 + syst_JES_Flavour_Response: 7.33629367e-01 + syst_JES_Gjet_Generator: 7.64328743e-01 + syst_JES_Gjet_OOC: 4.89768027e-01 + syst_JES_Gjet_Purity: 1.32122769e-01 + syst_JES_Gjet_Stat1: 5.68030269e-04 + syst_JES_Gjet_Stat10: 4.27284686e-02 + syst_JES_Gjet_Stat11: 5.72760480e-02 + syst_JES_Gjet_Stat12: 2.50531675e-02 + syst_JES_Gjet_Stat13: 1.13550359e-02 + syst_JES_Gjet_Stat14: 2.54617596e-03 + syst_JES_Gjet_Stat15: 1.56651931e-04 + syst_JES_Gjet_Stat2: 6.11512514e-04 + syst_JES_Gjet_Stat3: 1.72646594e-03 + syst_JES_Gjet_Stat4: 2.35337731e-03 + syst_JES_Gjet_Stat5: 1.62600340e-03 + syst_JES_Gjet_Stat6: 3.46946491e-03 + syst_JES_Gjet_Stat7: 6.63421623e-03 + syst_JES_Gjet_Stat8: 9.46591806e-03 + syst_JES_Gjet_Stat9: 2.49795371e-02 + syst_JES_Gjet_Veto: 2.06770471e-01 + syst_JES_Gjet_dPhi: 3.28550027e-02 + syst_JES_LArESZee: 8.91035807e-01 + syst_JES_LArEsmear: 5.73277950e-02 + syst_JES_LAr_JVT: 8.45314620e-02 + syst_JES_MJB_Alpha: 7.80191688e-04 + syst_JES_MJB_Asym: 5.22150764e-03 + syst_JES_MJB_Beta: 2.47645741e-03 + syst_JES_MJB_Fragmentation: 1.28069245e-02 + syst_JES_MJB_Stat1: 1.33256301e-04 + syst_JES_MJB_Stat10: 5.72442792e-10 + syst_JES_MJB_Stat11: 1.20801884e-12 + syst_JES_MJB_Stat12: 1.38910475e-15 + syst_JES_MJB_Stat13: 9.07854431e-16 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 0.0010516389494498576 - syst_JES_MJB_Stat3: 0.003312376211649274 - syst_JES_MJB_Stat4: 0.001363511327125668 - syst_JES_MJB_Stat5: 7.504449879904589e-05 - syst_JES_MJB_Stat6: 3.9173061468042996e-05 - syst_JES_MJB_Stat7: 1.5268028557787323e-08 - syst_JES_MJB_Stat8: 5.768595215054727e-10 - syst_JES_MJB_Stat9: 5.766863164247158e-10 - syst_JES_MJB_Threshold: 0.006694324069687694 - syst_JES_Pileup_MuOffset: 0.027536158827984703 - syst_JES_Pileup_NPVOffset: 0.04504408840236419 - syst_JES_Pileup_Pt_term: 0.4072903970142188 - syst_JES_Pileup_Rho_topology: 0.2213285962093466 - syst_JES_PunchThrough_MC15: 0.0014518703342585385 + syst_JES_MJB_Stat2: 1.05163895e-03 + syst_JES_MJB_Stat3: 3.31237621e-03 + syst_JES_MJB_Stat4: 1.36351133e-03 + syst_JES_MJB_Stat5: 7.50444988e-05 + syst_JES_MJB_Stat6: 3.91730615e-05 + syst_JES_MJB_Stat7: 1.52680286e-08 + syst_JES_MJB_Stat8: 5.76859522e-10 + syst_JES_MJB_Stat9: 5.76686316e-10 + syst_JES_MJB_Threshold: 6.69432407e-03 + syst_JES_Pileup_MuOffset: 2.75361588e-02 + syst_JES_Pileup_NPVOffset: 4.50440884e-02 + syst_JES_Pileup_Pt_term: 4.07290397e-01 + syst_JES_Pileup_Rho_topology: 2.21328596e-01 + syst_JES_PunchThrough_MC15: 1.45187033e-03 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.7073695922217749 - syst_JES_Zjet_MuScale: 0.037704347229464134 - syst_JES_Zjet_MuSmearID: 0.008028561061609983 - syst_JES_Zjet_MuSmearMS: 0.07015653551166849 - syst_JES_Zjet_OOC: 0.22947406716228305 - syst_JES_Zjet_Stat1: 0.0035171648619487187 - syst_JES_Zjet_Stat10: 0.04288955467243744 - syst_JES_Zjet_Stat11: 0.08346430794058021 - syst_JES_Zjet_Stat12: 0.14786868329703892 - syst_JES_Zjet_Stat13: 0.013725447779580818 - syst_JES_Zjet_Stat2: 0.00019793167779564747 - syst_JES_Zjet_Stat3: 0.0030487262914207303 - syst_JES_Zjet_Stat4: 0.00338427924379771 - syst_JES_Zjet_Stat5: 0.0012165198919458736 - syst_JES_Zjet_Stat6: 0.0010320931353322723 - syst_JES_Zjet_Stat7: 0.002125166111154608 - syst_JES_Zjet_Stat8: 0.004505743112961502 - syst_JES_Zjet_Stat9: 0.014747194877331756 - syst_JES_Zjet_Veto: 0.039080491296809454 - syst_JES_Zjet_dPhi: 0.0367632112307943 + syst_JES_Zjet_MC: 7.07369592e-01 + syst_JES_Zjet_MuScale: 3.77043472e-02 + syst_JES_Zjet_MuSmearID: 8.02856106e-03 + syst_JES_Zjet_MuSmearMS: 7.01565355e-02 + syst_JES_Zjet_OOC: 2.29474067e-01 + syst_JES_Zjet_Stat1: 3.51716486e-03 + syst_JES_Zjet_Stat10: 4.28895547e-02 + syst_JES_Zjet_Stat11: 8.34643079e-02 + syst_JES_Zjet_Stat12: 1.47868683e-01 + syst_JES_Zjet_Stat13: 1.37254478e-02 + syst_JES_Zjet_Stat2: 1.97931678e-04 + syst_JES_Zjet_Stat3: 3.04872629e-03 + syst_JES_Zjet_Stat4: 3.38427924e-03 + syst_JES_Zjet_Stat5: 1.21651989e-03 + syst_JES_Zjet_Stat6: 1.03209314e-03 + syst_JES_Zjet_Stat7: 2.12516611e-03 + syst_JES_Zjet_Stat8: 4.50574311e-03 + syst_JES_Zjet_Stat9: 1.47471949e-02 + syst_JES_Zjet_Veto: 3.90804913e-02 + syst_JES_Zjet_dPhi: 3.67632112e-02 syst_PRW: 0.0 syst_Unfolding_bias: 0.0725 - syst_cleaning: 0.149649189773951 + syst_cleaning: 1.49649190e-01 syst_lumi: 0.6246 - stat: 0.1947 syst_JER_CROSS_CALIB_FORWARD: 0.001557 syst_JER_NOISE_FORWARD: 0.08332 - syst_JER_NP0: 0.22099076903798492 - syst_JER_NP1: 0.08358770648247266 - syst_JER_NP2: 0.043434978991591565 - syst_JER_NP3: 0.09784192199665745 - syst_JER_NP4: 0.027998364237933615 - syst_JER_NP5: 0.04163906939401984 - syst_JER_NP6: 0.032450114021371324 - syst_JER_NP7: 0.0013337698448937882 - syst_JER_NP8: 0.012168611794284506 - syst_JES_EtaIntercalibration_Modelling: 0.7178507835894589 - syst_JES_EtaIntercalibration_NonClosure: 0.13401601424829795 + syst_JER_NP0: 2.20990769e-01 + syst_JER_NP1: 8.35877065e-02 + syst_JER_NP2: 4.34349790e-02 + syst_JER_NP3: 9.78419220e-02 + syst_JER_NP4: 2.79983642e-02 + syst_JER_NP5: 4.16390694e-02 + syst_JER_NP6: 3.24501140e-02 + syst_JER_NP7: 1.33376984e-03 + syst_JER_NP8: 1.21686118e-02 + syst_JES_EtaIntercalibration_Modelling: 7.17850784e-01 + syst_JES_EtaIntercalibration_NonClosure: 1.34016014e-01 syst_JES_EtaIntercalibration_Stat0: 0.0 - syst_JES_EtaIntercalibration_Stat1: 1.2955740040615202e-09 + syst_JES_EtaIntercalibration_Stat1: 1.29557400e-09 syst_JES_EtaIntercalibration_Stat10: 0.0 syst_JES_EtaIntercalibration_Stat100: 0.0 syst_JES_EtaIntercalibration_Stat101: 0.0 syst_JES_EtaIntercalibration_Stat102: 0.0 - syst_JES_EtaIntercalibration_Stat103: 1.3366853481653789e-08 - syst_JES_EtaIntercalibration_Stat104: 5.032859227119312e-05 - syst_JES_EtaIntercalibration_Stat105: 0.00034985939643662566 - syst_JES_EtaIntercalibration_Stat106: 0.0007404062803623427 - syst_JES_EtaIntercalibration_Stat107: 2.340635971269347e-06 - syst_JES_EtaIntercalibration_Stat108: 0.00018346826101535928 - syst_JES_EtaIntercalibration_Stat109: 0.003326127969200824 + syst_JES_EtaIntercalibration_Stat103: 1.33668535e-08 + syst_JES_EtaIntercalibration_Stat104: 5.03285923e-05 + syst_JES_EtaIntercalibration_Stat105: 3.49859396e-04 + syst_JES_EtaIntercalibration_Stat106: 7.40406280e-04 + syst_JES_EtaIntercalibration_Stat107: 2.34063597e-06 + syst_JES_EtaIntercalibration_Stat108: 1.83468261e-04 + syst_JES_EtaIntercalibration_Stat109: 3.32612797e-03 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 0.0026562531411746136 - syst_JES_EtaIntercalibration_Stat111: 0.0003180302348441104 - syst_JES_EtaIntercalibration_Stat112: 7.097186132545772e-05 + syst_JES_EtaIntercalibration_Stat110: 2.65625314e-03 + syst_JES_EtaIntercalibration_Stat111: 3.18030235e-04 + syst_JES_EtaIntercalibration_Stat112: 7.09718613e-05 syst_JES_EtaIntercalibration_Stat113: 0.0 syst_JES_EtaIntercalibration_Stat114: 0.0 syst_JES_EtaIntercalibration_Stat115: 0.0 syst_JES_EtaIntercalibration_Stat116: 0.0 syst_JES_EtaIntercalibration_Stat117: 0.0 - syst_JES_EtaIntercalibration_Stat118: 9.1660128736545e-09 - syst_JES_EtaIntercalibration_Stat119: 9.1660128736545e-09 + syst_JES_EtaIntercalibration_Stat118: 9.16601287e-09 + syst_JES_EtaIntercalibration_Stat119: 9.16601287e-09 syst_JES_EtaIntercalibration_Stat12: 0.0 syst_JES_EtaIntercalibration_Stat120: 0.0 syst_JES_EtaIntercalibration_Stat121: 0.0 syst_JES_EtaIntercalibration_Stat122: 0.0 - syst_JES_EtaIntercalibration_Stat123: 1.55044510705797e-05 - syst_JES_EtaIntercalibration_Stat124: 0.0010012152715575208 - syst_JES_EtaIntercalibration_Stat125: 0.004918194994100985 - syst_JES_EtaIntercalibration_Stat126: 0.0017795058492457955 - syst_JES_EtaIntercalibration_Stat127: 0.0005161115316237373 - syst_JES_EtaIntercalibration_Stat128: 0.01865899983921968 - syst_JES_EtaIntercalibration_Stat129: 0.04094031753662885 + syst_JES_EtaIntercalibration_Stat123: 1.55044511e-05 + syst_JES_EtaIntercalibration_Stat124: 1.00121527e-03 + syst_JES_EtaIntercalibration_Stat125: 4.91819499e-03 + syst_JES_EtaIntercalibration_Stat126: 1.77950585e-03 + syst_JES_EtaIntercalibration_Stat127: 5.16111532e-04 + syst_JES_EtaIntercalibration_Stat128: 1.86589998e-02 + syst_JES_EtaIntercalibration_Stat129: 4.09403175e-02 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 0.005650554751526615 - syst_JES_EtaIntercalibration_Stat131: 6.831161175085828e-05 + syst_JES_EtaIntercalibration_Stat130: 5.65055475e-03 + syst_JES_EtaIntercalibration_Stat131: 6.83116118e-05 syst_JES_EtaIntercalibration_Stat132: 0.0 syst_JES_EtaIntercalibration_Stat133: 0.0 syst_JES_EtaIntercalibration_Stat134: 0.0 syst_JES_EtaIntercalibration_Stat135: 0.0 syst_JES_EtaIntercalibration_Stat136: 0.0 - syst_JES_EtaIntercalibration_Stat137: 9.1660128736545e-09 - syst_JES_EtaIntercalibration_Stat138: 9.1660128736545e-09 - syst_JES_EtaIntercalibration_Stat139: 4.4011411020325176e-08 + syst_JES_EtaIntercalibration_Stat137: 9.16601287e-09 + syst_JES_EtaIntercalibration_Stat138: 9.16601287e-09 + syst_JES_EtaIntercalibration_Stat139: 4.40114110e-08 syst_JES_EtaIntercalibration_Stat14: 0.0 syst_JES_EtaIntercalibration_Stat140: 0.0 syst_JES_EtaIntercalibration_Stat141: 0.0 - syst_JES_EtaIntercalibration_Stat142: 2.4633689837293967e-05 - syst_JES_EtaIntercalibration_Stat143: 0.0052721478308181005 - syst_JES_EtaIntercalibration_Stat144: 0.03991700890597892 - syst_JES_EtaIntercalibration_Stat145: 0.011301087381309818 - syst_JES_EtaIntercalibration_Stat146: 0.03156089788013009 - syst_JES_EtaIntercalibration_Stat147: 0.028681075642311607 - syst_JES_EtaIntercalibration_Stat148: 0.0038621686629146585 - syst_JES_EtaIntercalibration_Stat149: 6.267164969106845e-05 + syst_JES_EtaIntercalibration_Stat142: 2.46336898e-05 + syst_JES_EtaIntercalibration_Stat143: 5.27214783e-03 + syst_JES_EtaIntercalibration_Stat144: 3.99170089e-02 + syst_JES_EtaIntercalibration_Stat145: 1.13010874e-02 + syst_JES_EtaIntercalibration_Stat146: 3.15608979e-02 + syst_JES_EtaIntercalibration_Stat147: 2.86810756e-02 + syst_JES_EtaIntercalibration_Stat148: 3.86216866e-03 + syst_JES_EtaIntercalibration_Stat149: 6.26716497e-05 syst_JES_EtaIntercalibration_Stat15: 0.0 syst_JES_EtaIntercalibration_Stat150: 0.0 syst_JES_EtaIntercalibration_Stat151: 0.0 @@ -56357,60 +56357,60 @@ bins: syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 9.1660128736545e-09 - syst_JES_EtaIntercalibration_Stat157: 4.4011411020325176e-08 + syst_JES_EtaIntercalibration_Stat156: 9.16601287e-09 + syst_JES_EtaIntercalibration_Stat157: 4.40114110e-08 syst_JES_EtaIntercalibration_Stat158: 0.0 syst_JES_EtaIntercalibration_Stat159: 0.0 - syst_JES_EtaIntercalibration_Stat16: 2.4759666294197103e-11 - syst_JES_EtaIntercalibration_Stat160: 1.6039927524773922e-05 - syst_JES_EtaIntercalibration_Stat161: 0.0022559062326923075 - syst_JES_EtaIntercalibration_Stat162: 0.027157864422667703 - syst_JES_EtaIntercalibration_Stat163: 0.025151781249048745 - syst_JES_EtaIntercalibration_Stat164: 0.034588974670406177 - syst_JES_EtaIntercalibration_Stat165: 0.03310097279537264 - syst_JES_EtaIntercalibration_Stat166: 0.005967031298459897 - syst_JES_EtaIntercalibration_Stat167: 5.770807585381789e-05 + syst_JES_EtaIntercalibration_Stat16: 2.47596663e-11 + syst_JES_EtaIntercalibration_Stat160: 1.60399275e-05 + syst_JES_EtaIntercalibration_Stat161: 2.25590623e-03 + syst_JES_EtaIntercalibration_Stat162: 2.71578644e-02 + syst_JES_EtaIntercalibration_Stat163: 2.51517812e-02 + syst_JES_EtaIntercalibration_Stat164: 3.45889747e-02 + syst_JES_EtaIntercalibration_Stat165: 3.31009728e-02 + syst_JES_EtaIntercalibration_Stat166: 5.96703130e-03 + syst_JES_EtaIntercalibration_Stat167: 5.77080759e-05 syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 - syst_JES_EtaIntercalibration_Stat17: 1.9456662098109222e-10 + syst_JES_EtaIntercalibration_Stat17: 1.94566621e-10 syst_JES_EtaIntercalibration_Stat170: 0.0 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 - syst_JES_EtaIntercalibration_Stat174: 4.4011411020325176e-08 - syst_JES_EtaIntercalibration_Stat175: 4.4011411020325176e-08 + syst_JES_EtaIntercalibration_Stat174: 4.40114110e-08 + syst_JES_EtaIntercalibration_Stat175: 4.40114110e-08 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 - syst_JES_EtaIntercalibration_Stat178: 0.0003646212707385569 - syst_JES_EtaIntercalibration_Stat179: 0.006771215308199851 - syst_JES_EtaIntercalibration_Stat18: 1.6301353279712697e-08 - syst_JES_EtaIntercalibration_Stat180: 0.034066838347577844 - syst_JES_EtaIntercalibration_Stat181: 0.037376354490506435 - syst_JES_EtaIntercalibration_Stat182: 0.022853494262366096 - syst_JES_EtaIntercalibration_Stat183: 0.004923945191439482 - syst_JES_EtaIntercalibration_Stat184: 0.00103306767896784 + syst_JES_EtaIntercalibration_Stat178: 3.64621271e-04 + syst_JES_EtaIntercalibration_Stat179: 6.77121531e-03 + syst_JES_EtaIntercalibration_Stat18: 1.63013533e-08 + syst_JES_EtaIntercalibration_Stat180: 3.40668383e-02 + syst_JES_EtaIntercalibration_Stat181: 3.73763545e-02 + syst_JES_EtaIntercalibration_Stat182: 2.28534943e-02 + syst_JES_EtaIntercalibration_Stat183: 4.92394519e-03 + syst_JES_EtaIntercalibration_Stat184: 1.03306768e-03 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 syst_JES_EtaIntercalibration_Stat187: 0.0 - syst_JES_EtaIntercalibration_Stat188: 3.5394458252670005e-06 + syst_JES_EtaIntercalibration_Stat188: 3.53944583e-06 syst_JES_EtaIntercalibration_Stat189: 0.0 - syst_JES_EtaIntercalibration_Stat19: 1.124853617176475e-08 + syst_JES_EtaIntercalibration_Stat19: 1.12485362e-08 syst_JES_EtaIntercalibration_Stat190: 0.0 - syst_JES_EtaIntercalibration_Stat191: 4.4011411020325176e-08 - syst_JES_EtaIntercalibration_Stat192: 4.4011411020325176e-08 + syst_JES_EtaIntercalibration_Stat191: 4.40114110e-08 + syst_JES_EtaIntercalibration_Stat192: 4.40114110e-08 syst_JES_EtaIntercalibration_Stat193: 0.0 syst_JES_EtaIntercalibration_Stat194: 0.0 - syst_JES_EtaIntercalibration_Stat195: 0.0003976846075409508 - syst_JES_EtaIntercalibration_Stat196: 0.004033987977175937 - syst_JES_EtaIntercalibration_Stat197: 0.02012884683731286 - syst_JES_EtaIntercalibration_Stat198: 0.0018897763756593 - syst_JES_EtaIntercalibration_Stat199: 4.95981842712009e-05 - syst_JES_EtaIntercalibration_Stat2: 5.059484614810089e-08 + syst_JES_EtaIntercalibration_Stat195: 3.97684608e-04 + syst_JES_EtaIntercalibration_Stat196: 4.03398798e-03 + syst_JES_EtaIntercalibration_Stat197: 2.01288468e-02 + syst_JES_EtaIntercalibration_Stat198: 1.88977638e-03 + syst_JES_EtaIntercalibration_Stat199: 4.95981843e-05 + syst_JES_EtaIntercalibration_Stat2: 5.05948461e-08 syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 syst_JES_EtaIntercalibration_Stat201: 0.0 syst_JES_EtaIntercalibration_Stat202: 0.0 - syst_JES_EtaIntercalibration_Stat203: 3.5394458252670005e-06 + syst_JES_EtaIntercalibration_Stat203: 3.53944583e-06 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 @@ -56418,9 +56418,9 @@ bins: syst_JES_EtaIntercalibration_Stat208: 0.0 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 9.187914592935385e-05 - syst_JES_EtaIntercalibration_Stat211: 0.0013415002637625533 - syst_JES_EtaIntercalibration_Stat212: 2.6768845230977e-10 + syst_JES_EtaIntercalibration_Stat210: 9.18791459e-05 + syst_JES_EtaIntercalibration_Stat211: 1.34150026e-03 + syst_JES_EtaIntercalibration_Stat212: 2.67688452e-10 syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 syst_JES_EtaIntercalibration_Stat215: 0.0 @@ -56432,37 +56432,37 @@ bins: syst_JES_EtaIntercalibration_Stat220: 0.0 syst_JES_EtaIntercalibration_Stat221: 0.0 syst_JES_EtaIntercalibration_Stat222: 0.0 - syst_JES_EtaIntercalibration_Stat223: 3.1306818346807455e-08 - syst_JES_EtaIntercalibration_Stat224: 2.6768845230977e-10 + syst_JES_EtaIntercalibration_Stat223: 3.13068183e-08 + syst_JES_EtaIntercalibration_Stat224: 2.67688452e-10 syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 syst_JES_EtaIntercalibration_Stat227: 0.0 syst_JES_EtaIntercalibration_Stat228: 0.0 syst_JES_EtaIntercalibration_Stat229: 0.0 - syst_JES_EtaIntercalibration_Stat23: 4.023050410757986e-08 + syst_JES_EtaIntercalibration_Stat23: 4.02305041e-08 syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 syst_JES_EtaIntercalibration_Stat232: 0.0 syst_JES_EtaIntercalibration_Stat233: 0.0 syst_JES_EtaIntercalibration_Stat234: 0.0 - syst_JES_EtaIntercalibration_Stat235: 3.174849130273752e-08 + syst_JES_EtaIntercalibration_Stat235: 3.17484913e-08 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 syst_JES_EtaIntercalibration_Stat239: 0.0 - syst_JES_EtaIntercalibration_Stat24: 7.4844596999382666e-06 + syst_JES_EtaIntercalibration_Stat24: 7.48445970e-06 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 syst_JES_EtaIntercalibration_Stat243: 0.0 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 - syst_JES_EtaIntercalibration_Stat25: 7.988479540406922e-05 - syst_JES_EtaIntercalibration_Stat26: 7.170623822234715e-08 + syst_JES_EtaIntercalibration_Stat25: 7.98847954e-05 + syst_JES_EtaIntercalibration_Stat26: 7.17062382e-08 syst_JES_EtaIntercalibration_Stat27: 0.0 syst_JES_EtaIntercalibration_Stat28: 0.0 syst_JES_EtaIntercalibration_Stat29: 0.0 - syst_JES_EtaIntercalibration_Stat3: 6.301967371384907e-08 + syst_JES_EtaIntercalibration_Stat3: 6.30196737e-08 syst_JES_EtaIntercalibration_Stat30: 0.0 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 @@ -56471,19 +56471,19 @@ bins: syst_JES_EtaIntercalibration_Stat35: 0.0 syst_JES_EtaIntercalibration_Stat36: 0.0 syst_JES_EtaIntercalibration_Stat37: 0.0 - syst_JES_EtaIntercalibration_Stat38: 2.4759666294197103e-11 - syst_JES_EtaIntercalibration_Stat39: 2.6676968999494677e-08 + syst_JES_EtaIntercalibration_Stat38: 2.47596663e-11 + syst_JES_EtaIntercalibration_Stat39: 2.66769690e-08 syst_JES_EtaIntercalibration_Stat4: 0.0 - syst_JES_EtaIntercalibration_Stat40: 5.483441528821111e-06 - syst_JES_EtaIntercalibration_Stat41: 1.5931236612391394e-06 - syst_JES_EtaIntercalibration_Stat42: 1.3804444936323951e-09 + syst_JES_EtaIntercalibration_Stat40: 5.48344153e-06 + syst_JES_EtaIntercalibration_Stat41: 1.59312366e-06 + syst_JES_EtaIntercalibration_Stat42: 1.38044449e-09 syst_JES_EtaIntercalibration_Stat43: 0.0 - syst_JES_EtaIntercalibration_Stat44: 2.732310148939904e-09 - syst_JES_EtaIntercalibration_Stat45: 2.0152521349697165e-07 - syst_JES_EtaIntercalibration_Stat46: 0.0001952396298782601 - syst_JES_EtaIntercalibration_Stat47: 9.218135535454011e-05 - syst_JES_EtaIntercalibration_Stat48: 3.5287673315196053e-06 - syst_JES_EtaIntercalibration_Stat49: 2.2334795163600674e-09 + syst_JES_EtaIntercalibration_Stat44: 2.73231015e-09 + syst_JES_EtaIntercalibration_Stat45: 2.01525213e-07 + syst_JES_EtaIntercalibration_Stat46: 1.95239630e-04 + syst_JES_EtaIntercalibration_Stat47: 9.21813554e-05 + syst_JES_EtaIntercalibration_Stat48: 3.52876733e-06 + syst_JES_EtaIntercalibration_Stat49: 2.23347952e-09 syst_JES_EtaIntercalibration_Stat5: 0.0 syst_JES_EtaIntercalibration_Stat50: 0.0 syst_JES_EtaIntercalibration_Stat51: 0.0 @@ -56494,21 +56494,21 @@ bins: syst_JES_EtaIntercalibration_Stat56: 0.0 syst_JES_EtaIntercalibration_Stat57: 0.0 syst_JES_EtaIntercalibration_Stat58: 0.0 - syst_JES_EtaIntercalibration_Stat59: 2.4759666294197103e-11 + syst_JES_EtaIntercalibration_Stat59: 2.47596663e-11 syst_JES_EtaIntercalibration_Stat6: 0.0 - syst_JES_EtaIntercalibration_Stat60: 1.665954413391915e-10 - syst_JES_EtaIntercalibration_Stat61: 3.0981237870685542e-06 - syst_JES_EtaIntercalibration_Stat62: 0.00014137222384542162 - syst_JES_EtaIntercalibration_Stat63: 1.0598591073817313e-05 - syst_JES_EtaIntercalibration_Stat64: 1.754086300613513e-08 + syst_JES_EtaIntercalibration_Stat60: 1.66595441e-10 + syst_JES_EtaIntercalibration_Stat61: 3.09812379e-06 + syst_JES_EtaIntercalibration_Stat62: 1.41372224e-04 + syst_JES_EtaIntercalibration_Stat63: 1.05985911e-05 + syst_JES_EtaIntercalibration_Stat64: 1.75408630e-08 syst_JES_EtaIntercalibration_Stat65: 0.0 - syst_JES_EtaIntercalibration_Stat66: 2.732310148939904e-09 - syst_JES_EtaIntercalibration_Stat67: 9.804692384261732e-06 - syst_JES_EtaIntercalibration_Stat68: 0.00032556816398413404 - syst_JES_EtaIntercalibration_Stat69: 0.00035823390403478 + syst_JES_EtaIntercalibration_Stat66: 2.73231015e-09 + syst_JES_EtaIntercalibration_Stat67: 9.80469238e-06 + syst_JES_EtaIntercalibration_Stat68: 3.25568164e-04 + syst_JES_EtaIntercalibration_Stat69: 3.58233904e-04 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 8.391520243674563e-05 - syst_JES_EtaIntercalibration_Stat71: 5.8177546209856596e-08 + syst_JES_EtaIntercalibration_Stat70: 8.39152024e-05 + syst_JES_EtaIntercalibration_Stat71: 5.81775462e-08 syst_JES_EtaIntercalibration_Stat72: 0.0 syst_JES_EtaIntercalibration_Stat73: 0.0 syst_JES_EtaIntercalibration_Stat74: 0.0 @@ -56519,19 +56519,19 @@ bins: syst_JES_EtaIntercalibration_Stat79: 0.0 syst_JES_EtaIntercalibration_Stat8: 0.0 syst_JES_EtaIntercalibration_Stat80: 0.0 - syst_JES_EtaIntercalibration_Stat81: 2.4759666294197103e-11 - syst_JES_EtaIntercalibration_Stat82: 4.927745199378718e-09 - syst_JES_EtaIntercalibration_Stat83: 2.0919001189110345e-05 - syst_JES_EtaIntercalibration_Stat84: 0.00019279137188940796 - syst_JES_EtaIntercalibration_Stat85: 0.0007337393321200657 - syst_JES_EtaIntercalibration_Stat86: 1.4797664241359176e-06 + syst_JES_EtaIntercalibration_Stat81: 2.47596663e-11 + syst_JES_EtaIntercalibration_Stat82: 4.92774520e-09 + syst_JES_EtaIntercalibration_Stat83: 2.09190012e-05 + syst_JES_EtaIntercalibration_Stat84: 1.92791372e-04 + syst_JES_EtaIntercalibration_Stat85: 7.33739332e-04 + syst_JES_EtaIntercalibration_Stat86: 1.47976642e-06 syst_JES_EtaIntercalibration_Stat87: 0.0 - syst_JES_EtaIntercalibration_Stat88: 1.2423536563716468e-05 - syst_JES_EtaIntercalibration_Stat89: 0.0005685020580437683 + syst_JES_EtaIntercalibration_Stat88: 1.24235366e-05 + syst_JES_EtaIntercalibration_Stat89: 5.68502058e-04 syst_JES_EtaIntercalibration_Stat9: 0.0 - syst_JES_EtaIntercalibration_Stat90: 0.00043401764941071235 - syst_JES_EtaIntercalibration_Stat91: 0.00010896188737352158 - syst_JES_EtaIntercalibration_Stat92: 6.623605020681713e-08 + syst_JES_EtaIntercalibration_Stat90: 4.34017649e-04 + syst_JES_EtaIntercalibration_Stat91: 1.08961887e-04 + syst_JES_EtaIntercalibration_Stat92: 6.62360502e-08 syst_JES_EtaIntercalibration_Stat93: 0.0 syst_JES_EtaIntercalibration_Stat94: 0.0 syst_JES_EtaIntercalibration_Stat95: 0.0 @@ -56539,154 +56539,154 @@ bins: syst_JES_EtaIntercalibration_Stat97: 0.0 syst_JES_EtaIntercalibration_Stat98: 0.0 syst_JES_EtaIntercalibration_Stat99: 0.0 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.013956817258959869 - syst_JES_Flavour_Comp: 0.06460688566244313 - syst_JES_Flavour_Response: 0.326224504750946 - syst_JES_Gjet_Generator: 0.3971324014733625 - syst_JES_Gjet_OOC: 0.26280479447681315 - syst_JES_Gjet_Purity: 0.08138014254104008 - syst_JES_Gjet_Stat1: 0.0007364225012178809 - syst_JES_Gjet_Stat10: 0.024254356309743617 - syst_JES_Gjet_Stat11: 0.03596230209538872 - syst_JES_Gjet_Stat12: 0.025591563062853352 - syst_JES_Gjet_Stat13: 0.0044848085800845506 - syst_JES_Gjet_Stat14: 0.0026792914641748104 - syst_JES_Gjet_Stat15: 0.0002737964332766225 - syst_JES_Gjet_Stat2: 0.0007329869303064005 - syst_JES_Gjet_Stat3: 0.0005689854194089686 - syst_JES_Gjet_Stat4: 0.0011419267259767589 - syst_JES_Gjet_Stat5: 0.0007356069126918262 - syst_JES_Gjet_Stat6: 0.0009127760555032104 - syst_JES_Gjet_Stat7: 0.0013958373257654346 - syst_JES_Gjet_Stat8: 0.003923183401269944 - syst_JES_Gjet_Stat9: 0.011498357567496325 - syst_JES_Gjet_Veto: 0.11985757673171939 - syst_JES_Gjet_dPhi: 0.017203024988355974 - syst_JES_LArESZee: 0.4893458976020949 - syst_JES_LArEsmear: 0.03323308140994452 - syst_JES_LAr_JVT: 0.04844494091233883 - syst_JES_MJB_Alpha: 0.0024435308121650524 - syst_JES_MJB_Asym: 0.0037925079762605642 - syst_JES_MJB_Beta: 0.00047474727297794984 - syst_JES_MJB_Fragmentation: 0.01935865374968001 - syst_JES_MJB_Stat1: 0.002605624955265051 - syst_JES_MJB_Stat10: 2.885596718588904e-08 - syst_JES_MJB_Stat11: 3.0051081511320017e-10 - syst_JES_MJB_Stat12: 2.3581871745050266e-12 - syst_JES_MJB_Stat13: 1.542391244140085e-12 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.39568173e-02 + syst_JES_Flavour_Comp: 6.46068857e-02 + syst_JES_Flavour_Response: 3.26224505e-01 + syst_JES_Gjet_Generator: 3.97132401e-01 + syst_JES_Gjet_OOC: 2.62804794e-01 + syst_JES_Gjet_Purity: 8.13801425e-02 + syst_JES_Gjet_Stat1: 7.36422501e-04 + syst_JES_Gjet_Stat10: 2.42543563e-02 + syst_JES_Gjet_Stat11: 3.59623021e-02 + syst_JES_Gjet_Stat12: 2.55915631e-02 + syst_JES_Gjet_Stat13: 4.48480858e-03 + syst_JES_Gjet_Stat14: 2.67929146e-03 + syst_JES_Gjet_Stat15: 2.73796433e-04 + syst_JES_Gjet_Stat2: 7.32986930e-04 + syst_JES_Gjet_Stat3: 5.68985419e-04 + syst_JES_Gjet_Stat4: 1.14192673e-03 + syst_JES_Gjet_Stat5: 7.35606913e-04 + syst_JES_Gjet_Stat6: 9.12776056e-04 + syst_JES_Gjet_Stat7: 1.39583733e-03 + syst_JES_Gjet_Stat8: 3.92318340e-03 + syst_JES_Gjet_Stat9: 1.14983576e-02 + syst_JES_Gjet_Veto: 1.19857577e-01 + syst_JES_Gjet_dPhi: 1.72030250e-02 + syst_JES_LArESZee: 4.89345898e-01 + syst_JES_LArEsmear: 3.32330814e-02 + syst_JES_LAr_JVT: 4.84449409e-02 + syst_JES_MJB_Alpha: 2.44353081e-03 + syst_JES_MJB_Asym: 3.79250798e-03 + syst_JES_MJB_Beta: 4.74747273e-04 + syst_JES_MJB_Fragmentation: 1.93586537e-02 + syst_JES_MJB_Stat1: 2.60562496e-03 + syst_JES_MJB_Stat10: 2.88559672e-08 + syst_JES_MJB_Stat11: 3.00510815e-10 + syst_JES_MJB_Stat12: 2.35818717e-12 + syst_JES_MJB_Stat13: 1.54239124e-12 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 0.001944092299120595 - syst_JES_MJB_Stat3: 0.0014031300251580393 - syst_JES_MJB_Stat4: 0.00037655378101939164 - syst_JES_MJB_Stat5: 0.00010795851054919199 - syst_JES_MJB_Stat6: 7.462756589056085e-05 - syst_JES_MJB_Stat7: 1.9459709702361553e-07 - syst_JES_MJB_Stat8: 2.9115774807024367e-08 - syst_JES_MJB_Stat9: 2.9107114552986525e-08 - syst_JES_MJB_Threshold: 0.005716729250191932 - syst_JES_Pileup_MuOffset: 0.018515340342537594 - syst_JES_Pileup_NPVOffset: 0.027052051216127772 - syst_JES_Pileup_Pt_term: 0.20930945391931058 - syst_JES_Pileup_Rho_topology: 0.11800411306390977 - syst_JES_PunchThrough_MC15: 0.0007611890221883128 + syst_JES_MJB_Stat2: 1.94409230e-03 + syst_JES_MJB_Stat3: 1.40313003e-03 + syst_JES_MJB_Stat4: 3.76553781e-04 + syst_JES_MJB_Stat5: 1.07958511e-04 + syst_JES_MJB_Stat6: 7.46275659e-05 + syst_JES_MJB_Stat7: 1.94597097e-07 + syst_JES_MJB_Stat8: 2.91157748e-08 + syst_JES_MJB_Stat9: 2.91071146e-08 + syst_JES_MJB_Threshold: 5.71672925e-03 + syst_JES_Pileup_MuOffset: 1.85153403e-02 + syst_JES_Pileup_NPVOffset: 2.70520512e-02 + syst_JES_Pileup_Pt_term: 2.09309454e-01 + syst_JES_Pileup_Rho_topology: 1.18004113e-01 + syst_JES_PunchThrough_MC15: 7.61189022e-04 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.3647565078240551 - syst_JES_Zjet_MuScale: 0.022147952501303594 - syst_JES_Zjet_MuSmearID: 0.0031467621645113256 - syst_JES_Zjet_MuSmearMS: 0.04578451130022029 - syst_JES_Zjet_OOC: 0.12658316268366815 - syst_JES_Zjet_Stat1: 0.0022581135378895367 - syst_JES_Zjet_Stat10: 0.02054654715517914 - syst_JES_Zjet_Stat11: 0.03491110532481033 - syst_JES_Zjet_Stat12: 0.10388942631471211 - syst_JES_Zjet_Stat13: 0.01828802861847061 - syst_JES_Zjet_Stat2: 0.0006423778094509492 - syst_JES_Zjet_Stat3: 0.0006943197012183941 - syst_JES_Zjet_Stat4: 0.0006833427702661381 - syst_JES_Zjet_Stat5: 0.0024485031406963724 - syst_JES_Zjet_Stat6: 0.0024475108007933283 - syst_JES_Zjet_Stat7: 0.002787521373460659 - syst_JES_Zjet_Stat8: 0.0025141141516446704 - syst_JES_Zjet_Stat9: 0.0058021799351623 - syst_JES_Zjet_Veto: 0.023601023282900258 - syst_JES_Zjet_dPhi: 0.022040006238656103 + syst_JES_Zjet_MC: 3.64756508e-01 + syst_JES_Zjet_MuScale: 2.21479525e-02 + syst_JES_Zjet_MuSmearID: 3.14676216e-03 + syst_JES_Zjet_MuSmearMS: 4.57845113e-02 + syst_JES_Zjet_OOC: 1.26583163e-01 + syst_JES_Zjet_Stat1: 2.25811354e-03 + syst_JES_Zjet_Stat10: 2.05465472e-02 + syst_JES_Zjet_Stat11: 3.49111053e-02 + syst_JES_Zjet_Stat12: 1.03889426e-01 + syst_JES_Zjet_Stat13: 1.82880286e-02 + syst_JES_Zjet_Stat2: 6.42377809e-04 + syst_JES_Zjet_Stat3: 6.94319701e-04 + syst_JES_Zjet_Stat4: 6.83342770e-04 + syst_JES_Zjet_Stat5: 2.44850314e-03 + syst_JES_Zjet_Stat6: 2.44751080e-03 + syst_JES_Zjet_Stat7: 2.78752137e-03 + syst_JES_Zjet_Stat8: 2.51411415e-03 + syst_JES_Zjet_Stat9: 5.80217994e-03 + syst_JES_Zjet_Veto: 2.36010233e-02 + syst_JES_Zjet_dPhi: 2.20400062e-02 syst_PRW: 0.0 syst_Unfolding_bias: 0.04312 - syst_cleaning: 0.07136049327183774 + syst_cleaning: 7.13604933e-02 syst_lumi: 0.312 - stat: 0.11536 syst_JER_CROSS_CALIB_FORWARD: 0.002164 syst_JER_NOISE_FORWARD: 0.039605 - syst_JER_NP0: 0.09925426476983244 - syst_JER_NP1: 0.048261030604412086 - syst_JER_NP2: 0.017901687071334927 - syst_JER_NP3: 0.04414574951226902 - syst_JER_NP4: 0.015083279840604962 - syst_JER_NP5: 0.018087111433283093 - syst_JER_NP6: 0.013453346944162258 - syst_JER_NP7: 0.00018631034113534198 - syst_JER_NP8: 0.0066409859772476555 - syst_JES_EtaIntercalibration_Modelling: 0.35972662884473816 - syst_JES_EtaIntercalibration_NonClosure: 0.03341533365088549 + syst_JER_NP0: 9.92542648e-02 + syst_JER_NP1: 4.82610306e-02 + syst_JER_NP2: 1.79016871e-02 + syst_JER_NP3: 4.41457495e-02 + syst_JER_NP4: 1.50832798e-02 + syst_JER_NP5: 1.80871114e-02 + syst_JER_NP6: 1.34533469e-02 + syst_JER_NP7: 1.86310341e-04 + syst_JER_NP8: 6.64098598e-03 + syst_JES_EtaIntercalibration_Modelling: 3.59726629e-01 + syst_JES_EtaIntercalibration_NonClosure: 3.34153337e-02 syst_JES_EtaIntercalibration_Stat0: 0.0 - syst_JES_EtaIntercalibration_Stat1: 9.722867208287893e-11 + syst_JES_EtaIntercalibration_Stat1: 9.72286721e-11 syst_JES_EtaIntercalibration_Stat10: 0.0 syst_JES_EtaIntercalibration_Stat100: 0.0 syst_JES_EtaIntercalibration_Stat101: 0.0 syst_JES_EtaIntercalibration_Stat102: 0.0 - syst_JES_EtaIntercalibration_Stat103: 1.0685332973286327e-09 - syst_JES_EtaIntercalibration_Stat104: 1.3266546234796755e-05 - syst_JES_EtaIntercalibration_Stat105: 0.0005477939867094198 - syst_JES_EtaIntercalibration_Stat106: 0.00047151433573116306 - syst_JES_EtaIntercalibration_Stat107: 2.3430836876859518e-07 - syst_JES_EtaIntercalibration_Stat108: 7.920233708672995e-05 - syst_JES_EtaIntercalibration_Stat109: 0.000725943763317793 + syst_JES_EtaIntercalibration_Stat103: 1.06853330e-09 + syst_JES_EtaIntercalibration_Stat104: 1.32665462e-05 + syst_JES_EtaIntercalibration_Stat105: 5.47793987e-04 + syst_JES_EtaIntercalibration_Stat106: 4.71514336e-04 + syst_JES_EtaIntercalibration_Stat107: 2.34308369e-07 + syst_JES_EtaIntercalibration_Stat108: 7.92023371e-05 + syst_JES_EtaIntercalibration_Stat109: 7.25943763e-04 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 0.0004821322717885622 - syst_JES_EtaIntercalibration_Stat111: 0.00017812900606021468 - syst_JES_EtaIntercalibration_Stat112: 3.8421624725146645e-05 + syst_JES_EtaIntercalibration_Stat110: 4.82132272e-04 + syst_JES_EtaIntercalibration_Stat111: 1.78129006e-04 + syst_JES_EtaIntercalibration_Stat112: 3.84216247e-05 syst_JES_EtaIntercalibration_Stat113: 0.0 syst_JES_EtaIntercalibration_Stat114: 0.0 syst_JES_EtaIntercalibration_Stat115: 0.0 syst_JES_EtaIntercalibration_Stat116: 0.0 syst_JES_EtaIntercalibration_Stat117: 0.0 - syst_JES_EtaIntercalibration_Stat118: 7.378536440243417e-10 - syst_JES_EtaIntercalibration_Stat119: 7.378536440243417e-10 + syst_JES_EtaIntercalibration_Stat118: 7.37853644e-10 + syst_JES_EtaIntercalibration_Stat119: 7.37853644e-10 syst_JES_EtaIntercalibration_Stat12: 0.0 syst_JES_EtaIntercalibration_Stat120: 0.0 syst_JES_EtaIntercalibration_Stat121: 0.0 syst_JES_EtaIntercalibration_Stat122: 0.0 - syst_JES_EtaIntercalibration_Stat123: 2.3771794857561763e-06 - syst_JES_EtaIntercalibration_Stat124: 0.0003474826902163617 - syst_JES_EtaIntercalibration_Stat125: 0.001983845195995645 - syst_JES_EtaIntercalibration_Stat126: 0.0007812407228729184 - syst_JES_EtaIntercalibration_Stat127: 0.00021001111131318745 - syst_JES_EtaIntercalibration_Stat128: 0.00656925589393502 - syst_JES_EtaIntercalibration_Stat129: 0.014220198196579398 + syst_JES_EtaIntercalibration_Stat123: 2.37717949e-06 + syst_JES_EtaIntercalibration_Stat124: 3.47482690e-04 + syst_JES_EtaIntercalibration_Stat125: 1.98384520e-03 + syst_JES_EtaIntercalibration_Stat126: 7.81240723e-04 + syst_JES_EtaIntercalibration_Stat127: 2.10011111e-04 + syst_JES_EtaIntercalibration_Stat128: 6.56925589e-03 + syst_JES_EtaIntercalibration_Stat129: 1.42201982e-02 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 0.001576716267278295 - syst_JES_EtaIntercalibration_Stat131: 1.823908387913165e-05 + syst_JES_EtaIntercalibration_Stat130: 1.57671627e-03 + syst_JES_EtaIntercalibration_Stat131: 1.82390839e-05 syst_JES_EtaIntercalibration_Stat132: 0.0 syst_JES_EtaIntercalibration_Stat133: 0.0 syst_JES_EtaIntercalibration_Stat134: 0.0 syst_JES_EtaIntercalibration_Stat135: 0.0 syst_JES_EtaIntercalibration_Stat136: 0.0 - syst_JES_EtaIntercalibration_Stat137: 7.378536440243417e-10 - syst_JES_EtaIntercalibration_Stat138: 7.378536440243417e-10 - syst_JES_EtaIntercalibration_Stat139: 3.5498381301124142e-09 + syst_JES_EtaIntercalibration_Stat137: 7.37853644e-10 + syst_JES_EtaIntercalibration_Stat138: 7.37853644e-10 + syst_JES_EtaIntercalibration_Stat139: 3.54983813e-09 syst_JES_EtaIntercalibration_Stat14: 0.0 syst_JES_EtaIntercalibration_Stat140: 0.0 syst_JES_EtaIntercalibration_Stat141: 0.0 - syst_JES_EtaIntercalibration_Stat142: 1.6882116832613142e-05 - syst_JES_EtaIntercalibration_Stat143: 0.001938149117070201 - syst_JES_EtaIntercalibration_Stat144: 0.011670203115198981 - syst_JES_EtaIntercalibration_Stat145: 0.0032310255337895427 - syst_JES_EtaIntercalibration_Stat146: 0.013098478413541018 - syst_JES_EtaIntercalibration_Stat147: 0.011851198800121445 - syst_JES_EtaIntercalibration_Stat148: 0.0012602158800380195 - syst_JES_EtaIntercalibration_Stat149: 2.9233444460070042e-05 + syst_JES_EtaIntercalibration_Stat142: 1.68821168e-05 + syst_JES_EtaIntercalibration_Stat143: 1.93814912e-03 + syst_JES_EtaIntercalibration_Stat144: 1.16702031e-02 + syst_JES_EtaIntercalibration_Stat145: 3.23102553e-03 + syst_JES_EtaIntercalibration_Stat146: 1.30984784e-02 + syst_JES_EtaIntercalibration_Stat147: 1.18511988e-02 + syst_JES_EtaIntercalibration_Stat148: 1.26021588e-03 + syst_JES_EtaIntercalibration_Stat149: 2.92334445e-05 syst_JES_EtaIntercalibration_Stat15: 0.0 syst_JES_EtaIntercalibration_Stat150: 0.0 syst_JES_EtaIntercalibration_Stat151: 0.0 @@ -56694,60 +56694,60 @@ bins: syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 7.378536440243417e-10 - syst_JES_EtaIntercalibration_Stat157: 3.5498381301124142e-09 + syst_JES_EtaIntercalibration_Stat156: 7.37853644e-10 + syst_JES_EtaIntercalibration_Stat157: 3.54983813e-09 syst_JES_EtaIntercalibration_Stat158: 0.0 syst_JES_EtaIntercalibration_Stat159: 0.0 - syst_JES_EtaIntercalibration_Stat16: 1.891399481865214e-12 - syst_JES_EtaIntercalibration_Stat160: 1.9706348291857626e-05 - syst_JES_EtaIntercalibration_Stat161: 0.0008359473712501285 - syst_JES_EtaIntercalibration_Stat162: 0.009695102101061134 - syst_JES_EtaIntercalibration_Stat163: 0.009286584355940562 - syst_JES_EtaIntercalibration_Stat164: 0.018368349817008606 - syst_JES_EtaIntercalibration_Stat165: 0.017757668765916317 - syst_JES_EtaIntercalibration_Stat166: 0.0036188100083572707 - syst_JES_EtaIntercalibration_Stat167: 3.171327652577072e-05 + syst_JES_EtaIntercalibration_Stat16: 1.89139948e-12 + syst_JES_EtaIntercalibration_Stat160: 1.97063483e-05 + syst_JES_EtaIntercalibration_Stat161: 8.35947371e-04 + syst_JES_EtaIntercalibration_Stat162: 9.69510210e-03 + syst_JES_EtaIntercalibration_Stat163: 9.28658436e-03 + syst_JES_EtaIntercalibration_Stat164: 1.83683498e-02 + syst_JES_EtaIntercalibration_Stat165: 1.77576688e-02 + syst_JES_EtaIntercalibration_Stat166: 3.61881001e-03 + syst_JES_EtaIntercalibration_Stat167: 3.17132765e-05 syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 - syst_JES_EtaIntercalibration_Stat17: 1.4531219735452355e-11 + syst_JES_EtaIntercalibration_Stat17: 1.45312197e-11 syst_JES_EtaIntercalibration_Stat170: 0.0 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 - syst_JES_EtaIntercalibration_Stat174: 3.5498381301124142e-09 - syst_JES_EtaIntercalibration_Stat175: 3.5498381301124142e-09 + syst_JES_EtaIntercalibration_Stat174: 3.54983813e-09 + syst_JES_EtaIntercalibration_Stat175: 3.54983813e-09 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 - syst_JES_EtaIntercalibration_Stat178: 0.0004725752270274014 - syst_JES_EtaIntercalibration_Stat179: 0.0031366786574336873 - syst_JES_EtaIntercalibration_Stat18: 1.2762079248696116e-09 - syst_JES_EtaIntercalibration_Stat180: 0.018403024207993644 - syst_JES_EtaIntercalibration_Stat181: 0.020605205046298373 - syst_JES_EtaIntercalibration_Stat182: 0.02340792173602774 - syst_JES_EtaIntercalibration_Stat183: 0.004700678115974333 - syst_JES_EtaIntercalibration_Stat184: 0.0004684965764143853 + syst_JES_EtaIntercalibration_Stat178: 4.72575227e-04 + syst_JES_EtaIntercalibration_Stat179: 3.13667866e-03 + syst_JES_EtaIntercalibration_Stat18: 1.27620792e-09 + syst_JES_EtaIntercalibration_Stat180: 1.84030242e-02 + syst_JES_EtaIntercalibration_Stat181: 2.06052050e-02 + syst_JES_EtaIntercalibration_Stat182: 2.34079217e-02 + syst_JES_EtaIntercalibration_Stat183: 4.70067812e-03 + syst_JES_EtaIntercalibration_Stat184: 4.68496576e-04 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 syst_JES_EtaIntercalibration_Stat187: 0.0 - syst_JES_EtaIntercalibration_Stat188: 5.510519644280383e-07 + syst_JES_EtaIntercalibration_Stat188: 5.51051964e-07 syst_JES_EtaIntercalibration_Stat189: 0.0 - syst_JES_EtaIntercalibration_Stat19: 8.960564059812306e-10 + syst_JES_EtaIntercalibration_Stat19: 8.96056406e-10 syst_JES_EtaIntercalibration_Stat190: 0.0 - syst_JES_EtaIntercalibration_Stat191: 3.5498381301124142e-09 - syst_JES_EtaIntercalibration_Stat192: 3.5498381301124142e-09 + syst_JES_EtaIntercalibration_Stat191: 3.54983813e-09 + syst_JES_EtaIntercalibration_Stat192: 3.54983813e-09 syst_JES_EtaIntercalibration_Stat193: 0.0 syst_JES_EtaIntercalibration_Stat194: 0.0 - syst_JES_EtaIntercalibration_Stat195: 0.000523058481147185 - syst_JES_EtaIntercalibration_Stat196: 0.004237457580908628 - syst_JES_EtaIntercalibration_Stat197: 0.022416366230948313 - syst_JES_EtaIntercalibration_Stat198: 0.0008353423908793328 - syst_JES_EtaIntercalibration_Stat199: 3.531635020780035e-05 - syst_JES_EtaIntercalibration_Stat2: 4.0869373313032345e-09 + syst_JES_EtaIntercalibration_Stat195: 5.23058481e-04 + syst_JES_EtaIntercalibration_Stat196: 4.23745758e-03 + syst_JES_EtaIntercalibration_Stat197: 2.24163662e-02 + syst_JES_EtaIntercalibration_Stat198: 8.35342391e-04 + syst_JES_EtaIntercalibration_Stat199: 3.53163502e-05 + syst_JES_EtaIntercalibration_Stat2: 4.08693733e-09 syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 syst_JES_EtaIntercalibration_Stat201: 0.0 syst_JES_EtaIntercalibration_Stat202: 0.0 - syst_JES_EtaIntercalibration_Stat203: 5.510519644280383e-07 + syst_JES_EtaIntercalibration_Stat203: 5.51051964e-07 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 @@ -56755,9 +56755,9 @@ bins: syst_JES_EtaIntercalibration_Stat208: 0.0 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 7.393633279523337e-05 - syst_JES_EtaIntercalibration_Stat211: 0.0006868451353835157 - syst_JES_EtaIntercalibration_Stat212: 1.055338557051717e-08 + syst_JES_EtaIntercalibration_Stat210: 7.39363328e-05 + syst_JES_EtaIntercalibration_Stat211: 6.86845135e-04 + syst_JES_EtaIntercalibration_Stat212: 1.05533856e-08 syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 syst_JES_EtaIntercalibration_Stat215: 0.0 @@ -56769,37 +56769,37 @@ bins: syst_JES_EtaIntercalibration_Stat220: 0.0 syst_JES_EtaIntercalibration_Stat221: 0.0 syst_JES_EtaIntercalibration_Stat222: 0.0 - syst_JES_EtaIntercalibration_Stat223: 3.3781052925419596e-07 - syst_JES_EtaIntercalibration_Stat224: 1.055338557051717e-08 + syst_JES_EtaIntercalibration_Stat223: 3.37810529e-07 + syst_JES_EtaIntercalibration_Stat224: 1.05533856e-08 syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 syst_JES_EtaIntercalibration_Stat227: 0.0 syst_JES_EtaIntercalibration_Stat228: 0.0 syst_JES_EtaIntercalibration_Stat229: 0.0 - syst_JES_EtaIntercalibration_Stat23: 3.247934036814787e-09 + syst_JES_EtaIntercalibration_Stat23: 3.24793404e-09 syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 syst_JES_EtaIntercalibration_Stat232: 0.0 syst_JES_EtaIntercalibration_Stat233: 0.0 syst_JES_EtaIntercalibration_Stat234: 0.0 - syst_JES_EtaIntercalibration_Stat235: 3.4185486788986934e-07 + syst_JES_EtaIntercalibration_Stat235: 3.41854868e-07 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 syst_JES_EtaIntercalibration_Stat239: 0.0 - syst_JES_EtaIntercalibration_Stat24: 9.413161145438868e-07 + syst_JES_EtaIntercalibration_Stat24: 9.41316115e-07 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 syst_JES_EtaIntercalibration_Stat243: 0.0 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 - syst_JES_EtaIntercalibration_Stat25: 4.255069661835749e-05 - syst_JES_EtaIntercalibration_Stat26: 5.674718913743658e-09 + syst_JES_EtaIntercalibration_Stat25: 4.25506966e-05 + syst_JES_EtaIntercalibration_Stat26: 5.67471891e-09 syst_JES_EtaIntercalibration_Stat27: 0.0 syst_JES_EtaIntercalibration_Stat28: 0.0 syst_JES_EtaIntercalibration_Stat29: 0.0 - syst_JES_EtaIntercalibration_Stat3: 5.0246648395689044e-09 + syst_JES_EtaIntercalibration_Stat3: 5.02466484e-09 syst_JES_EtaIntercalibration_Stat30: 0.0 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 @@ -56808,19 +56808,19 @@ bins: syst_JES_EtaIntercalibration_Stat35: 0.0 syst_JES_EtaIntercalibration_Stat36: 0.0 syst_JES_EtaIntercalibration_Stat37: 0.0 - syst_JES_EtaIntercalibration_Stat38: 1.891399481865214e-12 - syst_JES_EtaIntercalibration_Stat39: 2.1002601624560707e-09 + syst_JES_EtaIntercalibration_Stat38: 1.89139948e-12 + syst_JES_EtaIntercalibration_Stat39: 2.10026016e-09 syst_JES_EtaIntercalibration_Stat4: 0.0 - syst_JES_EtaIntercalibration_Stat40: 6.823709694880051e-07 - syst_JES_EtaIntercalibration_Stat41: 1.598314424636154e-07 - syst_JES_EtaIntercalibration_Stat42: 1.0381912540567851e-10 + syst_JES_EtaIntercalibration_Stat40: 6.82370969e-07 + syst_JES_EtaIntercalibration_Stat41: 1.59831442e-07 + syst_JES_EtaIntercalibration_Stat42: 1.03819125e-10 syst_JES_EtaIntercalibration_Stat43: 0.0 - syst_JES_EtaIntercalibration_Stat44: 2.0342936734896462e-10 - syst_JES_EtaIntercalibration_Stat45: 1.743512784581748e-08 - syst_JES_EtaIntercalibration_Stat46: 8.115630698226725e-05 - syst_JES_EtaIntercalibration_Stat47: 4.128449830142059e-05 - syst_JES_EtaIntercalibration_Stat48: 4.529960789013521e-07 - syst_JES_EtaIntercalibration_Stat49: 1.67402710551532e-10 + syst_JES_EtaIntercalibration_Stat44: 2.03429367e-10 + syst_JES_EtaIntercalibration_Stat45: 1.74351278e-08 + syst_JES_EtaIntercalibration_Stat46: 8.11563070e-05 + syst_JES_EtaIntercalibration_Stat47: 4.12844983e-05 + syst_JES_EtaIntercalibration_Stat48: 4.52996079e-07 + syst_JES_EtaIntercalibration_Stat49: 1.67402711e-10 syst_JES_EtaIntercalibration_Stat5: 0.0 syst_JES_EtaIntercalibration_Stat50: 0.0 syst_JES_EtaIntercalibration_Stat51: 0.0 @@ -56831,21 +56831,21 @@ bins: syst_JES_EtaIntercalibration_Stat56: 0.0 syst_JES_EtaIntercalibration_Stat57: 0.0 syst_JES_EtaIntercalibration_Stat58: 0.0 - syst_JES_EtaIntercalibration_Stat59: 1.891399481865214e-12 + syst_JES_EtaIntercalibration_Stat59: 1.89139948e-12 syst_JES_EtaIntercalibration_Stat6: 0.0 - syst_JES_EtaIntercalibration_Stat60: 1.2376470700486468e-11 - syst_JES_EtaIntercalibration_Stat61: 3.899432675082364e-07 - syst_JES_EtaIntercalibration_Stat62: 0.00023409780407983327 - syst_JES_EtaIntercalibration_Stat63: 1.5203267148872969e-06 - syst_JES_EtaIntercalibration_Stat64: 1.38839110844171e-09 + syst_JES_EtaIntercalibration_Stat60: 1.23764707e-11 + syst_JES_EtaIntercalibration_Stat61: 3.89943268e-07 + syst_JES_EtaIntercalibration_Stat62: 2.34097804e-04 + syst_JES_EtaIntercalibration_Stat63: 1.52032671e-06 + syst_JES_EtaIntercalibration_Stat64: 1.38839111e-09 syst_JES_EtaIntercalibration_Stat65: 0.0 - syst_JES_EtaIntercalibration_Stat66: 2.0342936734896462e-10 - syst_JES_EtaIntercalibration_Stat67: 1.2014753295428084e-06 - syst_JES_EtaIntercalibration_Stat68: 0.00010849527685572308 - syst_JES_EtaIntercalibration_Stat69: 0.00010970891759560842 + syst_JES_EtaIntercalibration_Stat66: 2.03429367e-10 + syst_JES_EtaIntercalibration_Stat67: 1.20147533e-06 + syst_JES_EtaIntercalibration_Stat68: 1.08495277e-04 + syst_JES_EtaIntercalibration_Stat69: 1.09708918e-04 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 4.109722458694747e-05 - syst_JES_EtaIntercalibration_Stat71: 4.607851599986701e-09 + syst_JES_EtaIntercalibration_Stat70: 4.10972246e-05 + syst_JES_EtaIntercalibration_Stat71: 4.60785160e-09 syst_JES_EtaIntercalibration_Stat72: 0.0 syst_JES_EtaIntercalibration_Stat73: 0.0 syst_JES_EtaIntercalibration_Stat74: 0.0 @@ -56856,19 +56856,19 @@ bins: syst_JES_EtaIntercalibration_Stat79: 0.0 syst_JES_EtaIntercalibration_Stat8: 0.0 syst_JES_EtaIntercalibration_Stat80: 0.0 - syst_JES_EtaIntercalibration_Stat81: 1.891399481865214e-12 - syst_JES_EtaIntercalibration_Stat82: 3.701319865939716e-10 - syst_JES_EtaIntercalibration_Stat83: 3.247569052383644e-06 - syst_JES_EtaIntercalibration_Stat84: 7.44614282699439e-05 - syst_JES_EtaIntercalibration_Stat85: 0.0004237598761975938 - syst_JES_EtaIntercalibration_Stat86: 1.496772233841876e-07 + syst_JES_EtaIntercalibration_Stat81: 1.89139948e-12 + syst_JES_EtaIntercalibration_Stat82: 3.70131987e-10 + syst_JES_EtaIntercalibration_Stat83: 3.24756905e-06 + syst_JES_EtaIntercalibration_Stat84: 7.44614283e-05 + syst_JES_EtaIntercalibration_Stat85: 4.23759876e-04 + syst_JES_EtaIntercalibration_Stat86: 1.49677223e-07 syst_JES_EtaIntercalibration_Stat87: 0.0 - syst_JES_EtaIntercalibration_Stat88: 1.977633102347349e-06 - syst_JES_EtaIntercalibration_Stat89: 0.00012018387038201091 + syst_JES_EtaIntercalibration_Stat88: 1.97763310e-06 + syst_JES_EtaIntercalibration_Stat89: 1.20183870e-04 syst_JES_EtaIntercalibration_Stat9: 0.0 - syst_JES_EtaIntercalibration_Stat90: 0.00038008924304036806 - syst_JES_EtaIntercalibration_Stat91: 4.382046439735663e-05 - syst_JES_EtaIntercalibration_Stat92: 5.2536806402749684e-09 + syst_JES_EtaIntercalibration_Stat90: 3.80089243e-04 + syst_JES_EtaIntercalibration_Stat91: 4.38204644e-05 + syst_JES_EtaIntercalibration_Stat92: 5.25368064e-09 syst_JES_EtaIntercalibration_Stat93: 0.0 syst_JES_EtaIntercalibration_Stat94: 0.0 syst_JES_EtaIntercalibration_Stat95: 0.0 @@ -56876,154 +56876,154 @@ bins: syst_JES_EtaIntercalibration_Stat97: 0.0 syst_JES_EtaIntercalibration_Stat98: 0.0 syst_JES_EtaIntercalibration_Stat99: 0.0 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.012663431880813352 - syst_JES_Flavour_Comp: 0.04608036675201272 - syst_JES_Flavour_Response: 0.13658136503564458 - syst_JES_Gjet_Generator: 0.2007245874326312 - syst_JES_Gjet_OOC: 0.1384682685672064 - syst_JES_Gjet_Purity: 0.04788620260576108 - syst_JES_Gjet_Stat1: 0.0007521794873565751 - syst_JES_Gjet_Stat10: 0.012054505547719491 - syst_JES_Gjet_Stat11: 0.017575371973304006 - syst_JES_Gjet_Stat12: 0.021919769045316152 - syst_JES_Gjet_Stat13: 0.008467228826481541 - syst_JES_Gjet_Stat14: 0.002340546090125123 - syst_JES_Gjet_Stat15: 0.00027938110745002066 - syst_JES_Gjet_Stat2: 0.0007982458824196965 - syst_JES_Gjet_Stat3: 0.00025425384952837985 - syst_JES_Gjet_Stat4: 0.0004908800871903443 - syst_JES_Gjet_Stat5: 0.00037656801178538785 - syst_JES_Gjet_Stat6: 0.0003880936082957306 - syst_JES_Gjet_Stat7: 0.0006449772321562987 - syst_JES_Gjet_Stat8: 0.0022502819173383587 - syst_JES_Gjet_Stat9: 0.0054783408984837734 - syst_JES_Gjet_Veto: 0.06813776045629912 - syst_JES_Gjet_dPhi: 0.009290639698104754 - syst_JES_LArESZee: 0.26163991954592863 - syst_JES_LArEsmear: 0.01989712227936492 - syst_JES_LAr_JVT: 0.028151590985235626 - syst_JES_MJB_Alpha: 0.0026279723528796874 - syst_JES_MJB_Asym: 0.005323057016414534 - syst_JES_MJB_Beta: 0.0009476410079771769 - syst_JES_MJB_Fragmentation: 0.017219137609067417 - syst_JES_MJB_Stat1: 0.0024063976458598858 - syst_JES_MJB_Stat10: 3.4719042009974264e-07 - syst_JES_MJB_Stat11: 1.2134747957827555e-08 - syst_JES_MJB_Stat12: 4.3188686886729957e-10 - syst_JES_MJB_Stat13: 2.8284389687599766e-10 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.26634319e-02 + syst_JES_Flavour_Comp: 4.60803668e-02 + syst_JES_Flavour_Response: 1.36581365e-01 + syst_JES_Gjet_Generator: 2.00724587e-01 + syst_JES_Gjet_OOC: 1.38468269e-01 + syst_JES_Gjet_Purity: 4.78862026e-02 + syst_JES_Gjet_Stat1: 7.52179487e-04 + syst_JES_Gjet_Stat10: 1.20545055e-02 + syst_JES_Gjet_Stat11: 1.75753720e-02 + syst_JES_Gjet_Stat12: 2.19197690e-02 + syst_JES_Gjet_Stat13: 8.46722883e-03 + syst_JES_Gjet_Stat14: 2.34054609e-03 + syst_JES_Gjet_Stat15: 2.79381107e-04 + syst_JES_Gjet_Stat2: 7.98245882e-04 + syst_JES_Gjet_Stat3: 2.54253850e-04 + syst_JES_Gjet_Stat4: 4.90880087e-04 + syst_JES_Gjet_Stat5: 3.76568012e-04 + syst_JES_Gjet_Stat6: 3.88093608e-04 + syst_JES_Gjet_Stat7: 6.44977232e-04 + syst_JES_Gjet_Stat8: 2.25028192e-03 + syst_JES_Gjet_Stat9: 5.47834090e-03 + syst_JES_Gjet_Veto: 6.81377605e-02 + syst_JES_Gjet_dPhi: 9.29063970e-03 + syst_JES_LArESZee: 2.61639920e-01 + syst_JES_LArEsmear: 1.98971223e-02 + syst_JES_LAr_JVT: 2.81515910e-02 + syst_JES_MJB_Alpha: 2.62797235e-03 + syst_JES_MJB_Asym: 5.32305702e-03 + syst_JES_MJB_Beta: 9.47641008e-04 + syst_JES_MJB_Fragmentation: 1.72191376e-02 + syst_JES_MJB_Stat1: 2.40639765e-03 + syst_JES_MJB_Stat10: 3.47190420e-07 + syst_JES_MJB_Stat11: 1.21347480e-08 + syst_JES_MJB_Stat12: 4.31886869e-10 + syst_JES_MJB_Stat13: 2.82843897e-10 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 0.0023541871463415988 - syst_JES_MJB_Stat3: 0.0003816139934541185 - syst_JES_MJB_Stat4: 0.00020181947149618641 - syst_JES_MJB_Stat5: 0.00010638620998512919 - syst_JES_MJB_Stat6: 7.254659812837538e-05 - syst_JES_MJB_Stat7: 7.514282285198417e-07 - syst_JES_MJB_Stat8: 3.517803547396952e-07 - syst_JES_MJB_Stat9: 3.516937521993187e-07 - syst_JES_MJB_Threshold: 0.00683831826913606 - syst_JES_Pileup_MuOffset: 0.010711332736872662 - syst_JES_Pileup_NPVOffset: 0.01752773445143439 - syst_JES_Pileup_Pt_term: 0.09937797743967222 - syst_JES_Pileup_Rho_topology: 0.06167022194706291 - syst_JES_PunchThrough_MC15: 0.0010138554868914997 + syst_JES_MJB_Stat2: 2.35418715e-03 + syst_JES_MJB_Stat3: 3.81613993e-04 + syst_JES_MJB_Stat4: 2.01819471e-04 + syst_JES_MJB_Stat5: 1.06386210e-04 + syst_JES_MJB_Stat6: 7.25465981e-05 + syst_JES_MJB_Stat7: 7.51428229e-07 + syst_JES_MJB_Stat8: 3.51780355e-07 + syst_JES_MJB_Stat9: 3.51693752e-07 + syst_JES_MJB_Threshold: 6.83831827e-03 + syst_JES_Pileup_MuOffset: 1.07113327e-02 + syst_JES_Pileup_NPVOffset: 1.75277345e-02 + syst_JES_Pileup_Pt_term: 9.93779774e-02 + syst_JES_Pileup_Rho_topology: 6.16702219e-02 + syst_JES_PunchThrough_MC15: 1.01385549e-03 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.18270782002968564 - syst_JES_Zjet_MuScale: 0.011998514366370531 - syst_JES_Zjet_MuSmearID: 0.001315296631942772 - syst_JES_Zjet_MuSmearMS: 0.03059301023109691 - syst_JES_Zjet_OOC: 0.06801190557542112 - syst_JES_Zjet_Stat1: 0.0023586997832492377 - syst_JES_Zjet_Stat10: 0.009835089069245889 - syst_JES_Zjet_Stat11: 0.013472757874689207 - syst_JES_Zjet_Stat12: 0.06053532253981967 - syst_JES_Zjet_Stat13: 0.018496017814654053 - syst_JES_Zjet_Stat2: 0.0005572650899195104 - syst_JES_Zjet_Stat3: 0.0008012681074397009 - syst_JES_Zjet_Stat4: 0.0007907434033869647 - syst_JES_Zjet_Stat5: 0.0019349104449560449 - syst_JES_Zjet_Stat6: 0.00214760114313622 - syst_JES_Zjet_Stat7: 0.0019522422512331815 - syst_JES_Zjet_Stat8: 0.0020941678516955132 - syst_JES_Zjet_Stat9: 0.0024868294573613206 - syst_JES_Zjet_Veto: 0.013479570616306738 - syst_JES_Zjet_dPhi: 0.012389603252324103 + syst_JES_Zjet_MC: 1.82707820e-01 + syst_JES_Zjet_MuScale: 1.19985144e-02 + syst_JES_Zjet_MuSmearID: 1.31529663e-03 + syst_JES_Zjet_MuSmearMS: 3.05930102e-02 + syst_JES_Zjet_OOC: 6.80119056e-02 + syst_JES_Zjet_Stat1: 2.35869978e-03 + syst_JES_Zjet_Stat10: 9.83508907e-03 + syst_JES_Zjet_Stat11: 1.34727579e-02 + syst_JES_Zjet_Stat12: 6.05353225e-02 + syst_JES_Zjet_Stat13: 1.84960178e-02 + syst_JES_Zjet_Stat2: 5.57265090e-04 + syst_JES_Zjet_Stat3: 8.01268107e-04 + syst_JES_Zjet_Stat4: 7.90743403e-04 + syst_JES_Zjet_Stat5: 1.93491044e-03 + syst_JES_Zjet_Stat6: 2.14760114e-03 + syst_JES_Zjet_Stat7: 1.95224225e-03 + syst_JES_Zjet_Stat8: 2.09416785e-03 + syst_JES_Zjet_Stat9: 2.48682946e-03 + syst_JES_Zjet_Veto: 1.34795706e-02 + syst_JES_Zjet_dPhi: 1.23896033e-02 syst_PRW: 0.0 syst_Unfolding_bias: 0.005524 - syst_cleaning: 0.035351156982480786 + syst_cleaning: 3.53511570e-02 syst_lumi: 0.1525 - stat: 0.04899 - syst_JER_CROSS_CALIB_FORWARD: 0.0006179 + syst_JER_CROSS_CALIB_FORWARD: 6.17900000e-04 syst_JER_NOISE_FORWARD: 0.01974 - syst_JER_NP0: 0.03629457810748046 - syst_JER_NP1: 0.025439882075198383 - syst_JER_NP2: 0.005031022361309876 - syst_JER_NP3: 0.016893320425540977 - syst_JER_NP4: 0.008087635563006039 - syst_JER_NP5: 0.005332109526256939 - syst_JER_NP6: 0.003912229042374692 - syst_JER_NP7: 2.1767229187262213e-05 - syst_JER_NP8: 0.004438512673182312 - syst_JES_EtaIntercalibration_Modelling: 0.1817848384767002 - syst_JES_EtaIntercalibration_NonClosure: 0.010457201669184735 + syst_JER_NP0: 3.62945781e-02 + syst_JER_NP1: 2.54398821e-02 + syst_JER_NP2: 5.03102236e-03 + syst_JER_NP3: 1.68933204e-02 + syst_JER_NP4: 8.08763556e-03 + syst_JER_NP5: 5.33210953e-03 + syst_JER_NP6: 3.91222904e-03 + syst_JER_NP7: 2.17672292e-05 + syst_JER_NP8: 4.43851267e-03 + syst_JES_EtaIntercalibration_Modelling: 1.81784838e-01 + syst_JES_EtaIntercalibration_NonClosure: 1.04572017e-02 syst_JES_EtaIntercalibration_Stat0: 0.0 - syst_JES_EtaIntercalibration_Stat1: 7.68337738237554e-12 + syst_JES_EtaIntercalibration_Stat1: 7.68337738e-12 syst_JES_EtaIntercalibration_Stat10: 0.0 syst_JES_EtaIntercalibration_Stat100: 0.0 syst_JES_EtaIntercalibration_Stat101: 0.0 syst_JES_EtaIntercalibration_Stat102: 0.0 - syst_JES_EtaIntercalibration_Stat103: 8.639339905339991e-11 - syst_JES_EtaIntercalibration_Stat104: 2.0723214101099278e-05 - syst_JES_EtaIntercalibration_Stat105: 0.00020622886509894778 - syst_JES_EtaIntercalibration_Stat106: 0.00013371767600059463 - syst_JES_EtaIntercalibration_Stat107: 2.1789659198803453e-08 - syst_JES_EtaIntercalibration_Stat108: 1.4846574558462973e-05 - syst_JES_EtaIntercalibration_Stat109: 0.00013323911240698056 + syst_JES_EtaIntercalibration_Stat103: 8.63933991e-11 + syst_JES_EtaIntercalibration_Stat104: 2.07232141e-05 + syst_JES_EtaIntercalibration_Stat105: 2.06228865e-04 + syst_JES_EtaIntercalibration_Stat106: 1.33717676e-04 + syst_JES_EtaIntercalibration_Stat107: 2.17896592e-08 + syst_JES_EtaIntercalibration_Stat108: 1.48465746e-05 + syst_JES_EtaIntercalibration_Stat109: 1.33239112e-04 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 3.944682876987705e-05 - syst_JES_EtaIntercalibration_Stat111: 7.885864743323968e-05 - syst_JES_EtaIntercalibration_Stat112: 1.789600143053959e-05 + syst_JES_EtaIntercalibration_Stat110: 3.94468288e-05 + syst_JES_EtaIntercalibration_Stat111: 7.88586474e-05 + syst_JES_EtaIntercalibration_Stat112: 1.78960014e-05 syst_JES_EtaIntercalibration_Stat113: 0.0 syst_JES_EtaIntercalibration_Stat114: 0.0 syst_JES_EtaIntercalibration_Stat115: 0.0 syst_JES_EtaIntercalibration_Stat116: 0.0 syst_JES_EtaIntercalibration_Stat117: 0.0 - syst_JES_EtaIntercalibration_Stat118: 5.97817336232398e-11 - syst_JES_EtaIntercalibration_Stat119: 5.97817336232398e-11 + syst_JES_EtaIntercalibration_Stat118: 5.97817336e-11 + syst_JES_EtaIntercalibration_Stat119: 5.97817336e-11 syst_JES_EtaIntercalibration_Stat12: 0.0 syst_JES_EtaIntercalibration_Stat120: 0.0 syst_JES_EtaIntercalibration_Stat121: 0.0 syst_JES_EtaIntercalibration_Stat122: 0.0 - syst_JES_EtaIntercalibration_Stat123: 3.062187531814471e-07 - syst_JES_EtaIntercalibration_Stat124: 0.00020897435895343713 - syst_JES_EtaIntercalibration_Stat125: 0.0006808025343666106 - syst_JES_EtaIntercalibration_Stat126: 0.0002685695516528261 - syst_JES_EtaIntercalibration_Stat127: 4.0540547147269733e-05 - syst_JES_EtaIntercalibration_Stat128: 0.002321529022002525 - syst_JES_EtaIntercalibration_Stat129: 0.00492323592772071 + syst_JES_EtaIntercalibration_Stat123: 3.06218753e-07 + syst_JES_EtaIntercalibration_Stat124: 2.08974359e-04 + syst_JES_EtaIntercalibration_Stat125: 6.80802534e-04 + syst_JES_EtaIntercalibration_Stat126: 2.68569552e-04 + syst_JES_EtaIntercalibration_Stat127: 4.05405471e-05 + syst_JES_EtaIntercalibration_Stat128: 2.32152902e-03 + syst_JES_EtaIntercalibration_Stat129: 4.92323593e-03 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 0.0003473757907511691 - syst_JES_EtaIntercalibration_Stat131: 6.504827495791106e-06 + syst_JES_EtaIntercalibration_Stat130: 3.47375791e-04 + syst_JES_EtaIntercalibration_Stat131: 6.50482750e-06 syst_JES_EtaIntercalibration_Stat132: 0.0 syst_JES_EtaIntercalibration_Stat133: 0.0 syst_JES_EtaIntercalibration_Stat134: 0.0 syst_JES_EtaIntercalibration_Stat135: 0.0 syst_JES_EtaIntercalibration_Stat136: 0.0 - syst_JES_EtaIntercalibration_Stat137: 5.97817336232398e-11 - syst_JES_EtaIntercalibration_Stat138: 5.97817336232398e-11 - syst_JES_EtaIntercalibration_Stat139: 2.8855966454097493e-10 + syst_JES_EtaIntercalibration_Stat137: 5.97817336e-11 + syst_JES_EtaIntercalibration_Stat138: 5.97817336e-11 + syst_JES_EtaIntercalibration_Stat139: 2.88559665e-10 syst_JES_EtaIntercalibration_Stat14: 0.0 syst_JES_EtaIntercalibration_Stat140: 0.0 syst_JES_EtaIntercalibration_Stat141: 0.0 - syst_JES_EtaIntercalibration_Stat142: 2.1468623940066583e-05 - syst_JES_EtaIntercalibration_Stat143: 0.0006867861675951257 - syst_JES_EtaIntercalibration_Stat144: 0.0034643816230317355 - syst_JES_EtaIntercalibration_Stat145: 0.0009545433829847651 - syst_JES_EtaIntercalibration_Stat146: 0.005053792313698693 - syst_JES_EtaIntercalibration_Stat147: 0.004791307475000952 - syst_JES_EtaIntercalibration_Stat148: 0.0004660101122025143 - syst_JES_EtaIntercalibration_Stat149: 1.3136726076157637e-05 + syst_JES_EtaIntercalibration_Stat142: 2.14686239e-05 + syst_JES_EtaIntercalibration_Stat143: 6.86786168e-04 + syst_JES_EtaIntercalibration_Stat144: 3.46438162e-03 + syst_JES_EtaIntercalibration_Stat145: 9.54543383e-04 + syst_JES_EtaIntercalibration_Stat146: 5.05379231e-03 + syst_JES_EtaIntercalibration_Stat147: 4.79130748e-03 + syst_JES_EtaIntercalibration_Stat148: 4.66010112e-04 + syst_JES_EtaIntercalibration_Stat149: 1.31367261e-05 syst_JES_EtaIntercalibration_Stat15: 0.0 syst_JES_EtaIntercalibration_Stat150: 0.0 syst_JES_EtaIntercalibration_Stat151: 0.0 @@ -57031,60 +57031,60 @@ bins: syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 5.97817336232398e-11 - syst_JES_EtaIntercalibration_Stat157: 2.8855966454097493e-10 + syst_JES_EtaIntercalibration_Stat156: 5.97817336e-11 + syst_JES_EtaIntercalibration_Stat157: 2.88559665e-10 syst_JES_EtaIntercalibration_Stat158: 0.0 syst_JES_EtaIntercalibration_Stat159: 0.0 - syst_JES_EtaIntercalibration_Stat16: 1.604745073212565e-13 - syst_JES_EtaIntercalibration_Stat160: 2.200425557636522e-05 - syst_JES_EtaIntercalibration_Stat161: 0.0003620323724475478 - syst_JES_EtaIntercalibration_Stat162: 0.0032929978363187545 - syst_JES_EtaIntercalibration_Stat163: 0.0032268512516073623 - syst_JES_EtaIntercalibration_Stat164: 0.008258338214647061 - syst_JES_EtaIntercalibration_Stat165: 0.007440580152111796 - syst_JES_EtaIntercalibration_Stat166: 0.0017834823923018556 - syst_JES_EtaIntercalibration_Stat167: 1.5069719995739803e-05 + syst_JES_EtaIntercalibration_Stat16: 1.60474507e-13 + syst_JES_EtaIntercalibration_Stat160: 2.20042556e-05 + syst_JES_EtaIntercalibration_Stat161: 3.62032372e-04 + syst_JES_EtaIntercalibration_Stat162: 3.29299784e-03 + syst_JES_EtaIntercalibration_Stat163: 3.22685125e-03 + syst_JES_EtaIntercalibration_Stat164: 8.25833821e-03 + syst_JES_EtaIntercalibration_Stat165: 7.44058015e-03 + syst_JES_EtaIntercalibration_Stat166: 1.78348239e-03 + syst_JES_EtaIntercalibration_Stat167: 1.50697200e-05 syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 - syst_JES_EtaIntercalibration_Stat17: 1.1868666089750777e-12 + syst_JES_EtaIntercalibration_Stat17: 1.18686661e-12 syst_JES_EtaIntercalibration_Stat170: 0.0 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 - syst_JES_EtaIntercalibration_Stat174: 2.8855966454097493e-10 - syst_JES_EtaIntercalibration_Stat175: 2.8855966454097493e-10 + syst_JES_EtaIntercalibration_Stat174: 2.88559665e-10 + syst_JES_EtaIntercalibration_Stat175: 2.88559665e-10 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 - syst_JES_EtaIntercalibration_Stat178: 0.00020677196981215806 - syst_JES_EtaIntercalibration_Stat179: 0.0011584599119089103 - syst_JES_EtaIntercalibration_Stat18: 1.0281948599365784e-10 - syst_JES_EtaIntercalibration_Stat180: 0.008212996651649141 - syst_JES_EtaIntercalibration_Stat181: 0.00968170573814346 - syst_JES_EtaIntercalibration_Stat182: 0.01735921945249843 - syst_JES_EtaIntercalibration_Stat183: 0.0036688548622151847 - syst_JES_EtaIntercalibration_Stat184: 0.00011526729790686516 + syst_JES_EtaIntercalibration_Stat178: 2.06771970e-04 + syst_JES_EtaIntercalibration_Stat179: 1.15845991e-03 + syst_JES_EtaIntercalibration_Stat18: 1.02819486e-10 + syst_JES_EtaIntercalibration_Stat180: 8.21299665e-03 + syst_JES_EtaIntercalibration_Stat181: 9.68170574e-03 + syst_JES_EtaIntercalibration_Stat182: 1.73592195e-02 + syst_JES_EtaIntercalibration_Stat183: 3.66885486e-03 + syst_JES_EtaIntercalibration_Stat184: 1.15267298e-04 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 syst_JES_EtaIntercalibration_Stat187: 0.0 - syst_JES_EtaIntercalibration_Stat188: 6.820816080206239e-08 + syst_JES_EtaIntercalibration_Stat188: 6.82081608e-08 syst_JES_EtaIntercalibration_Stat189: 0.0 - syst_JES_EtaIntercalibration_Stat19: 7.258609974884999e-11 + syst_JES_EtaIntercalibration_Stat19: 7.25860997e-11 syst_JES_EtaIntercalibration_Stat190: 0.0 - syst_JES_EtaIntercalibration_Stat191: 2.8855966454097493e-10 - syst_JES_EtaIntercalibration_Stat192: 2.8855966454097493e-10 + syst_JES_EtaIntercalibration_Stat191: 2.88559665e-10 + syst_JES_EtaIntercalibration_Stat192: 2.88559665e-10 syst_JES_EtaIntercalibration_Stat193: 0.0 syst_JES_EtaIntercalibration_Stat194: 0.0 - syst_JES_EtaIntercalibration_Stat195: 0.0002115006384742136 - syst_JES_EtaIntercalibration_Stat196: 0.002561619995237389 - syst_JES_EtaIntercalibration_Stat197: 0.017183581553331658 - syst_JES_EtaIntercalibration_Stat198: 0.0008782929067230362 - syst_JES_EtaIntercalibration_Stat199: 2.691260182052267e-05 - syst_JES_EtaIntercalibration_Stat2: 3.3173163110412003e-10 + syst_JES_EtaIntercalibration_Stat195: 2.11500638e-04 + syst_JES_EtaIntercalibration_Stat196: 2.56162000e-03 + syst_JES_EtaIntercalibration_Stat197: 1.71835816e-02 + syst_JES_EtaIntercalibration_Stat198: 8.78292907e-04 + syst_JES_EtaIntercalibration_Stat199: 2.69126018e-05 + syst_JES_EtaIntercalibration_Stat2: 3.31731631e-10 syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 syst_JES_EtaIntercalibration_Stat201: 0.0 syst_JES_EtaIntercalibration_Stat202: 0.0 - syst_JES_EtaIntercalibration_Stat203: 6.820816080206239e-08 + syst_JES_EtaIntercalibration_Stat203: 6.82081608e-08 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 @@ -57092,9 +57092,9 @@ bins: syst_JES_EtaIntercalibration_Stat208: 0.0 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 3.855254443363629e-05 - syst_JES_EtaIntercalibration_Stat211: 0.00018721016719184884 - syst_JES_EtaIntercalibration_Stat212: 8.980683437244629e-08 + syst_JES_EtaIntercalibration_Stat210: 3.85525444e-05 + syst_JES_EtaIntercalibration_Stat211: 1.87210167e-04 + syst_JES_EtaIntercalibration_Stat212: 8.98068344e-08 syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 syst_JES_EtaIntercalibration_Stat215: 0.0 @@ -57106,37 +57106,37 @@ bins: syst_JES_EtaIntercalibration_Stat220: 0.0 syst_JES_EtaIntercalibration_Stat221: 0.0 syst_JES_EtaIntercalibration_Stat222: 0.0 - syst_JES_EtaIntercalibration_Stat223: 1.0983800196198034e-06 - syst_JES_EtaIntercalibration_Stat224: 8.982415488052198e-08 + syst_JES_EtaIntercalibration_Stat223: 1.09838002e-06 + syst_JES_EtaIntercalibration_Stat224: 8.98241549e-08 syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 syst_JES_EtaIntercalibration_Stat227: 0.0 syst_JES_EtaIntercalibration_Stat228: 0.0 syst_JES_EtaIntercalibration_Stat229: 0.0 - syst_JES_EtaIntercalibration_Stat23: 2.6345586323898735e-10 + syst_JES_EtaIntercalibration_Stat23: 2.63455863e-10 syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 syst_JES_EtaIntercalibration_Stat232: 0.0 syst_JES_EtaIntercalibration_Stat233: 0.0 syst_JES_EtaIntercalibration_Stat234: 0.0 - syst_JES_EtaIntercalibration_Stat235: 1.0266731161864518e-06 + syst_JES_EtaIntercalibration_Stat235: 1.02667312e-06 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 syst_JES_EtaIntercalibration_Stat239: 0.0 - syst_JES_EtaIntercalibration_Stat24: 1.0320067187281292e-07 + syst_JES_EtaIntercalibration_Stat24: 1.03200672e-07 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 syst_JES_EtaIntercalibration_Stat243: 0.0 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 - syst_JES_EtaIntercalibration_Stat25: 1.9298958383291053e-05 - syst_JES_EtaIntercalibration_Stat26: 4.582954069156705e-10 + syst_JES_EtaIntercalibration_Stat25: 1.92989584e-05 + syst_JES_EtaIntercalibration_Stat26: 4.58295407e-10 syst_JES_EtaIntercalibration_Stat27: 0.0 syst_JES_EtaIntercalibration_Stat28: 0.0 syst_JES_EtaIntercalibration_Stat29: 0.0 - syst_JES_EtaIntercalibration_Stat3: 4.070003777639524e-10 + syst_JES_EtaIntercalibration_Stat3: 4.07000378e-10 syst_JES_EtaIntercalibration_Stat30: 0.0 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 @@ -57145,19 +57145,19 @@ bins: syst_JES_EtaIntercalibration_Stat35: 0.0 syst_JES_EtaIntercalibration_Stat36: 0.0 syst_JES_EtaIntercalibration_Stat37: 0.0 - syst_JES_EtaIntercalibration_Stat38: 1.604745073212565e-13 - syst_JES_EtaIntercalibration_Stat39: 1.6947202571516044e-10 + syst_JES_EtaIntercalibration_Stat38: 1.60474507e-13 + syst_JES_EtaIntercalibration_Stat39: 1.69472026e-10 syst_JES_EtaIntercalibration_Stat4: 0.0 - syst_JES_EtaIntercalibration_Stat40: 7.460809272458317e-08 - syst_JES_EtaIntercalibration_Stat41: 1.491374764269531e-08 - syst_JES_EtaIntercalibration_Stat42: 8.255820174277053e-12 + syst_JES_EtaIntercalibration_Stat40: 7.46080927e-08 + syst_JES_EtaIntercalibration_Stat41: 1.49137476e-08 + syst_JES_EtaIntercalibration_Stat42: 8.25582017e-12 syst_JES_EtaIntercalibration_Stat43: 0.0 - syst_JES_EtaIntercalibration_Stat44: 1.6515104450169244e-11 - syst_JES_EtaIntercalibration_Stat45: 1.4764606327295014e-09 - syst_JES_EtaIntercalibration_Stat46: 1.5074407858022151e-05 - syst_JES_EtaIntercalibration_Stat47: 1.87706089605532e-05 - syst_JES_EtaIntercalibration_Stat48: 5.021360440159619e-08 - syst_JES_EtaIntercalibration_Stat49: 1.3397412996545265e-11 + syst_JES_EtaIntercalibration_Stat44: 1.65151045e-11 + syst_JES_EtaIntercalibration_Stat45: 1.47646063e-09 + syst_JES_EtaIntercalibration_Stat46: 1.50744079e-05 + syst_JES_EtaIntercalibration_Stat47: 1.87706090e-05 + syst_JES_EtaIntercalibration_Stat48: 5.02136044e-08 + syst_JES_EtaIntercalibration_Stat49: 1.33974130e-11 syst_JES_EtaIntercalibration_Stat5: 0.0 syst_JES_EtaIntercalibration_Stat50: 0.0 syst_JES_EtaIntercalibration_Stat51: 0.0 @@ -57168,21 +57168,21 @@ bins: syst_JES_EtaIntercalibration_Stat56: 0.0 syst_JES_EtaIntercalibration_Stat57: 0.0 syst_JES_EtaIntercalibration_Stat58: 0.0 - syst_JES_EtaIntercalibration_Stat59: 1.604745073212565e-13 + syst_JES_EtaIntercalibration_Stat59: 1.60474507e-13 syst_JES_EtaIntercalibration_Stat6: 0.0 - syst_JES_EtaIntercalibration_Stat60: 1.0017337807521518e-12 - syst_JES_EtaIntercalibration_Stat61: 4.2902289857302486e-08 - syst_JES_EtaIntercalibration_Stat62: 9.170210725495898e-05 - syst_JES_EtaIntercalibration_Stat63: 1.9483265556625767e-07 - syst_JES_EtaIntercalibration_Stat64: 1.1233504306315104e-10 + syst_JES_EtaIntercalibration_Stat60: 1.00173378e-12 + syst_JES_EtaIntercalibration_Stat61: 4.29022899e-08 + syst_JES_EtaIntercalibration_Stat62: 9.17021073e-05 + syst_JES_EtaIntercalibration_Stat63: 1.94832656e-07 + syst_JES_EtaIntercalibration_Stat64: 1.12335043e-10 syst_JES_EtaIntercalibration_Stat65: 0.0 - syst_JES_EtaIntercalibration_Stat66: 1.6515104450169244e-11 - syst_JES_EtaIntercalibration_Stat67: 1.2920737082303006e-07 - syst_JES_EtaIntercalibration_Stat68: 3.984992350055392e-05 - syst_JES_EtaIntercalibration_Stat69: 3.906035682120684e-05 + syst_JES_EtaIntercalibration_Stat66: 1.65151045e-11 + syst_JES_EtaIntercalibration_Stat67: 1.29207371e-07 + syst_JES_EtaIntercalibration_Stat68: 3.98499235e-05 + syst_JES_EtaIntercalibration_Stat69: 3.90603568e-05 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 1.8885714991760306e-05 - syst_JES_EtaIntercalibration_Stat71: 3.719632082612473e-10 + syst_JES_EtaIntercalibration_Stat70: 1.88857150e-05 + syst_JES_EtaIntercalibration_Stat71: 3.71963208e-10 syst_JES_EtaIntercalibration_Stat72: 0.0 syst_JES_EtaIntercalibration_Stat73: 0.0 syst_JES_EtaIntercalibration_Stat74: 0.0 @@ -57193,19 +57193,19 @@ bins: syst_JES_EtaIntercalibration_Stat79: 0.0 syst_JES_EtaIntercalibration_Stat8: 0.0 syst_JES_EtaIntercalibration_Stat80: 0.0 - syst_JES_EtaIntercalibration_Stat81: 1.604745073212565e-13 - syst_JES_EtaIntercalibration_Stat82: 2.92502217940309e-11 - syst_JES_EtaIntercalibration_Stat83: 4.221329411453221e-07 - syst_JES_EtaIntercalibration_Stat84: 3.724831315308118e-05 - syst_JES_EtaIntercalibration_Stat85: 0.00011734804770425454 - syst_JES_EtaIntercalibration_Stat86: 1.3994493443851406e-08 + syst_JES_EtaIntercalibration_Stat81: 1.60474507e-13 + syst_JES_EtaIntercalibration_Stat82: 2.92502218e-11 + syst_JES_EtaIntercalibration_Stat83: 4.22132941e-07 + syst_JES_EtaIntercalibration_Stat84: 3.72483132e-05 + syst_JES_EtaIntercalibration_Stat85: 1.17348048e-04 + syst_JES_EtaIntercalibration_Stat86: 1.39944934e-08 syst_JES_EtaIntercalibration_Stat87: 0.0 - syst_JES_EtaIntercalibration_Stat88: 2.693354924624677e-07 - syst_JES_EtaIntercalibration_Stat89: 4.22269132189413e-05 + syst_JES_EtaIntercalibration_Stat88: 2.69335492e-07 + syst_JES_EtaIntercalibration_Stat89: 4.22269132e-05 syst_JES_EtaIntercalibration_Stat9: 0.0 - syst_JES_EtaIntercalibration_Stat90: 0.00011296936620163894 - syst_JES_EtaIntercalibration_Stat91: 1.925307068365979e-05 - syst_JES_EtaIntercalibration_Stat92: 4.244544427694803e-10 + syst_JES_EtaIntercalibration_Stat90: 1.12969366e-04 + syst_JES_EtaIntercalibration_Stat91: 1.92530707e-05 + syst_JES_EtaIntercalibration_Stat92: 4.24454443e-10 syst_JES_EtaIntercalibration_Stat93: 0.0 syst_JES_EtaIntercalibration_Stat94: 0.0 syst_JES_EtaIntercalibration_Stat95: 0.0 @@ -57213,154 +57213,154 @@ bins: syst_JES_EtaIntercalibration_Stat97: 0.0 syst_JES_EtaIntercalibration_Stat98: 0.0 syst_JES_EtaIntercalibration_Stat99: 0.0 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.009514610396647883 - syst_JES_Flavour_Comp: 0.03049221703976279 - syst_JES_Flavour_Response: 0.05381908025969972 - syst_JES_Gjet_Generator: 0.10034790219531248 - syst_JES_Gjet_OOC: 0.07259433913880614 - syst_JES_Gjet_Purity: 0.025253963550302357 - syst_JES_Gjet_Stat1: 0.0002680293407446282 - syst_JES_Gjet_Stat10: 0.0049199823932611795 - syst_JES_Gjet_Stat11: 0.007312561845892313 - syst_JES_Gjet_Stat12: 0.013801378798873684 - syst_JES_Gjet_Stat13: 0.00819586790706146 - syst_JES_Gjet_Stat14: 0.0016078319657227866 - syst_JES_Gjet_Stat15: 0.00018514088061527634 - syst_JES_Gjet_Stat2: 0.00031108765272025825 - syst_JES_Gjet_Stat3: 0.00016619334282696162 - syst_JES_Gjet_Stat4: 0.00023016332754535417 - syst_JES_Gjet_Stat5: 0.00021207113588369352 - syst_JES_Gjet_Stat6: 0.00017903518110974726 - syst_JES_Gjet_Stat7: 0.00035992049121993594 - syst_JES_Gjet_Stat8: 0.000987710494021401 - syst_JES_Gjet_Stat9: 0.0023980198080916673 - syst_JES_Gjet_Veto: 0.03851055439746356 - syst_JES_Gjet_dPhi: 0.005252241711878843 - syst_JES_LArESZee: 0.13780472370350735 - syst_JES_LArEsmear: 0.011108611929489661 - syst_JES_LAr_JVT: 0.014890543979317881 - syst_JES_MJB_Alpha: 0.0013578262039009262 - syst_JES_MJB_Asym: 0.0038077781907563894 - syst_JES_MJB_Beta: 0.00046805192668655907 - syst_JES_MJB_Fragmentation: 0.011703948308156527 - syst_JES_MJB_Stat1: 0.0011562866113122646 - syst_JES_MJB_Stat10: 1.3848690142745296e-06 - syst_JES_MJB_Stat11: 1.105741235551971e-07 - syst_JES_MJB_Stat12: 1.190178712420954e-08 - syst_JES_MJB_Stat13: 7.842726056671877e-09 + syst_JES_EtaIntercalibration_TotalStat_MJB: 9.51461040e-03 + syst_JES_Flavour_Comp: 3.04922170e-02 + syst_JES_Flavour_Response: 5.38190803e-02 + syst_JES_Gjet_Generator: 1.00347902e-01 + syst_JES_Gjet_OOC: 7.25943391e-02 + syst_JES_Gjet_Purity: 2.52539636e-02 + syst_JES_Gjet_Stat1: 2.68029341e-04 + syst_JES_Gjet_Stat10: 4.91998239e-03 + syst_JES_Gjet_Stat11: 7.31256185e-03 + syst_JES_Gjet_Stat12: 1.38013788e-02 + syst_JES_Gjet_Stat13: 8.19586791e-03 + syst_JES_Gjet_Stat14: 1.60783197e-03 + syst_JES_Gjet_Stat15: 1.85140881e-04 + syst_JES_Gjet_Stat2: 3.11087653e-04 + syst_JES_Gjet_Stat3: 1.66193343e-04 + syst_JES_Gjet_Stat4: 2.30163328e-04 + syst_JES_Gjet_Stat5: 2.12071136e-04 + syst_JES_Gjet_Stat6: 1.79035181e-04 + syst_JES_Gjet_Stat7: 3.59920491e-04 + syst_JES_Gjet_Stat8: 9.87710494e-04 + syst_JES_Gjet_Stat9: 2.39801981e-03 + syst_JES_Gjet_Veto: 3.85105544e-02 + syst_JES_Gjet_dPhi: 5.25224171e-03 + syst_JES_LArESZee: 1.37804724e-01 + syst_JES_LArEsmear: 1.11086119e-02 + syst_JES_LAr_JVT: 1.48905440e-02 + syst_JES_MJB_Alpha: 1.35782620e-03 + syst_JES_MJB_Asym: 3.80777819e-03 + syst_JES_MJB_Beta: 4.68051927e-04 + syst_JES_MJB_Fragmentation: 1.17039483e-02 + syst_JES_MJB_Stat1: 1.15628661e-03 + syst_JES_MJB_Stat10: 1.38486901e-06 + syst_JES_MJB_Stat11: 1.10574124e-07 + syst_JES_MJB_Stat12: 1.19017871e-08 + syst_JES_MJB_Stat13: 7.84272606e-09 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 0.0014119868979562099 - syst_JES_MJB_Stat3: 0.0008344639402035296 - syst_JES_MJB_Stat4: 0.00015575425901078916 - syst_JES_MJB_Stat5: 8.608735621448715e-05 - syst_JES_MJB_Stat6: 5.942056441165802e-05 - syst_JES_MJB_Stat7: 1.1847275318295763e-06 - syst_JES_MJB_Stat8: 1.411715801302694e-06 - syst_JES_MJB_Stat9: 1.411715801302694e-06 - syst_JES_MJB_Threshold: 0.004764001889168391 - syst_JES_Pileup_MuOffset: 0.007325652240585817 - syst_JES_Pileup_NPVOffset: 0.010968821358742243 - syst_JES_Pileup_Pt_term: 0.046560445390910934 - syst_JES_Pileup_Rho_topology: 0.030628814864437703 - syst_JES_PunchThrough_MC15: 0.0009998848133660196 + syst_JES_MJB_Stat2: 1.41198690e-03 + syst_JES_MJB_Stat3: 8.34463940e-04 + syst_JES_MJB_Stat4: 1.55754259e-04 + syst_JES_MJB_Stat5: 8.60873562e-05 + syst_JES_MJB_Stat6: 5.94205644e-05 + syst_JES_MJB_Stat7: 1.18472753e-06 + syst_JES_MJB_Stat8: 1.41171580e-06 + syst_JES_MJB_Stat9: 1.41171580e-06 + syst_JES_MJB_Threshold: 4.76400189e-03 + syst_JES_Pileup_MuOffset: 7.32565224e-03 + syst_JES_Pileup_NPVOffset: 1.09688214e-02 + syst_JES_Pileup_Pt_term: 4.65604454e-02 + syst_JES_Pileup_Rho_topology: 3.06288149e-02 + syst_JES_PunchThrough_MC15: 9.99884813e-04 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.08898705565979807 - syst_JES_Zjet_MuScale: 0.005601071415363314 - syst_JES_Zjet_MuSmearID: 0.0006601649396173657 - syst_JES_Zjet_MuSmearMS: 0.017889831609045403 - syst_JES_Zjet_OOC: 0.03401016612720379 - syst_JES_Zjet_Stat1: 0.0012613060136223882 - syst_JES_Zjet_Stat10: 0.003989835774502504 - syst_JES_Zjet_Stat11: 0.004635665513170681 - syst_JES_Zjet_Stat12: 0.029470651502808688 - syst_JES_Zjet_Stat13: 0.013561458651266095 - syst_JES_Zjet_Stat2: 0.0001963687199651462 - syst_JES_Zjet_Stat3: 0.00038526316417320514 - syst_JES_Zjet_Stat4: 0.0003846677781888548 - syst_JES_Zjet_Stat5: 0.0007936717883829562 - syst_JES_Zjet_Stat6: 0.0009211627571037596 - syst_JES_Zjet_Stat7: 0.000723117722089564 - syst_JES_Zjet_Stat8: 0.0008993840725741144 - syst_JES_Zjet_Stat9: 0.0011310363953029982 - syst_JES_Zjet_Veto: 0.006796818134244877 - syst_JES_Zjet_dPhi: 0.005918461539961208 + syst_JES_Zjet_MC: 8.89870557e-02 + syst_JES_Zjet_MuScale: 5.60107142e-03 + syst_JES_Zjet_MuSmearID: 6.60164940e-04 + syst_JES_Zjet_MuSmearMS: 1.78898316e-02 + syst_JES_Zjet_OOC: 3.40101661e-02 + syst_JES_Zjet_Stat1: 1.26130601e-03 + syst_JES_Zjet_Stat10: 3.98983577e-03 + syst_JES_Zjet_Stat11: 4.63566551e-03 + syst_JES_Zjet_Stat12: 2.94706515e-02 + syst_JES_Zjet_Stat13: 1.35614587e-02 + syst_JES_Zjet_Stat2: 1.96368720e-04 + syst_JES_Zjet_Stat3: 3.85263164e-04 + syst_JES_Zjet_Stat4: 3.84667778e-04 + syst_JES_Zjet_Stat5: 7.93671788e-04 + syst_JES_Zjet_Stat6: 9.21162757e-04 + syst_JES_Zjet_Stat7: 7.23117722e-04 + syst_JES_Zjet_Stat8: 8.99384073e-04 + syst_JES_Zjet_Stat9: 1.13103640e-03 + syst_JES_Zjet_Veto: 6.79681813e-03 + syst_JES_Zjet_dPhi: 5.91846154e-03 syst_PRW: 0.0 syst_Unfolding_bias: 0.006273 - syst_cleaning: 0.01731184782165093 + syst_cleaning: 1.73118478e-02 syst_lumi: 0.07339 - stat: 0.028745 - syst_JER_CROSS_CALIB_FORWARD: 0.00013291 + syst_JER_CROSS_CALIB_FORWARD: 1.32910000e-04 syst_JER_NOISE_FORWARD: 0.010079 - syst_JER_NP0: 0.01205676800597905 - syst_JER_NP1: 0.015400392852132051 - syst_JER_NP2: 0.0011452298633898787 - syst_JER_NP3: 0.006305874959115507 - syst_JER_NP4: 0.0042381514838429266 - syst_JER_NP5: 0.0011678836585893304 - syst_JER_NP6: 0.0008546217467394567 - syst_JER_NP7: 2.3508490502222274e-06 - syst_JER_NP8: 0.003001499845077457 - syst_JES_EtaIntercalibration_Modelling: 0.09442470267361185 - syst_JES_EtaIntercalibration_NonClosure: 0.018383710180483157 + syst_JER_NP0: 1.20567680e-02 + syst_JER_NP1: 1.54003929e-02 + syst_JER_NP2: 1.14522986e-03 + syst_JER_NP3: 6.30587496e-03 + syst_JER_NP4: 4.23815148e-03 + syst_JER_NP5: 1.16788366e-03 + syst_JER_NP6: 8.54621747e-04 + syst_JER_NP7: 2.35084905e-06 + syst_JER_NP8: 3.00149985e-03 + syst_JES_EtaIntercalibration_Modelling: 9.44247027e-02 + syst_JES_EtaIntercalibration_NonClosure: 1.83837102e-02 syst_JES_EtaIntercalibration_Stat0: 0.0 - syst_JES_EtaIntercalibration_Stat1: 6.670993685351531e-13 + syst_JES_EtaIntercalibration_Stat1: 6.67099369e-13 syst_JES_EtaIntercalibration_Stat10: 0.0 syst_JES_EtaIntercalibration_Stat100: 0.0 syst_JES_EtaIntercalibration_Stat101: 0.0 syst_JES_EtaIntercalibration_Stat102: 0.0 - syst_JES_EtaIntercalibration_Stat103: 7.46244844203295e-12 - syst_JES_EtaIntercalibration_Stat104: 8.815236280048029e-06 - syst_JES_EtaIntercalibration_Stat105: 3.9839390140287036e-05 - syst_JES_EtaIntercalibration_Stat106: 2.0033389147870113e-05 - syst_JES_EtaIntercalibration_Stat107: 2.0280000197238657e-09 - syst_JES_EtaIntercalibration_Stat108: 9.758838609178861e-07 - syst_JES_EtaIntercalibration_Stat109: 2.677937173926976e-05 + syst_JES_EtaIntercalibration_Stat103: 7.46244844e-12 + syst_JES_EtaIntercalibration_Stat104: 8.81523628e-06 + syst_JES_EtaIntercalibration_Stat105: 3.98393901e-05 + syst_JES_EtaIntercalibration_Stat106: 2.00333891e-05 + syst_JES_EtaIntercalibration_Stat107: 2.02800002e-09 + syst_JES_EtaIntercalibration_Stat108: 9.75883861e-07 + syst_JES_EtaIntercalibration_Stat109: 2.67793717e-05 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 1.8685039470121543e-05 - syst_JES_EtaIntercalibration_Stat111: 2.6351278280189747e-05 - syst_JES_EtaIntercalibration_Stat112: 6.724227238175923e-06 + syst_JES_EtaIntercalibration_Stat110: 1.86850395e-05 + syst_JES_EtaIntercalibration_Stat111: 2.63512783e-05 + syst_JES_EtaIntercalibration_Stat112: 6.72422724e-06 syst_JES_EtaIntercalibration_Stat113: 0.0 syst_JES_EtaIntercalibration_Stat114: 0.0 syst_JES_EtaIntercalibration_Stat115: 0.0 syst_JES_EtaIntercalibration_Stat116: 0.0 syst_JES_EtaIntercalibration_Stat117: 0.0 - syst_JES_EtaIntercalibration_Stat118: 5.159779355747686e-12 - syst_JES_EtaIntercalibration_Stat119: 5.159779355747686e-12 + syst_JES_EtaIntercalibration_Stat118: 5.15977936e-12 + syst_JES_EtaIntercalibration_Stat119: 5.15977936e-12 syst_JES_EtaIntercalibration_Stat12: 0.0 syst_JES_EtaIntercalibration_Stat120: 0.0 syst_JES_EtaIntercalibration_Stat121: 0.0 syst_JES_EtaIntercalibration_Stat122: 0.0 - syst_JES_EtaIntercalibration_Stat123: 3.592703395425234e-08 - syst_JES_EtaIntercalibration_Stat124: 0.00011707509541636086 - syst_JES_EtaIntercalibration_Stat125: 0.00016402691852254004 - syst_JES_EtaIntercalibration_Stat126: 7.062202489308842e-05 - syst_JES_EtaIntercalibration_Stat127: 3.5341749744459455e-06 - syst_JES_EtaIntercalibration_Stat128: 0.0008024293800702963 - syst_JES_EtaIntercalibration_Stat129: 0.001650685539404765 + syst_JES_EtaIntercalibration_Stat123: 3.59270340e-08 + syst_JES_EtaIntercalibration_Stat124: 1.17075095e-04 + syst_JES_EtaIntercalibration_Stat125: 1.64026919e-04 + syst_JES_EtaIntercalibration_Stat126: 7.06220249e-05 + syst_JES_EtaIntercalibration_Stat127: 3.53417497e-06 + syst_JES_EtaIntercalibration_Stat128: 8.02429380e-04 + syst_JES_EtaIntercalibration_Stat129: 1.65068554e-03 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 5.416224281499059e-05 - syst_JES_EtaIntercalibration_Stat131: 3.353453068107559e-06 + syst_JES_EtaIntercalibration_Stat130: 5.41622428e-05 + syst_JES_EtaIntercalibration_Stat131: 3.35345307e-06 syst_JES_EtaIntercalibration_Stat132: 0.0 syst_JES_EtaIntercalibration_Stat133: 0.0 syst_JES_EtaIntercalibration_Stat134: 0.0 syst_JES_EtaIntercalibration_Stat135: 0.0 syst_JES_EtaIntercalibration_Stat136: 0.0 - syst_JES_EtaIntercalibration_Stat137: 5.159779355747686e-12 - syst_JES_EtaIntercalibration_Stat138: 5.159779355747686e-12 - syst_JES_EtaIntercalibration_Stat139: 2.5019473915332434e-11 + syst_JES_EtaIntercalibration_Stat137: 5.15977936e-12 + syst_JES_EtaIntercalibration_Stat138: 5.15977936e-12 + syst_JES_EtaIntercalibration_Stat139: 2.50194739e-11 syst_JES_EtaIntercalibration_Stat14: 0.0 syst_JES_EtaIntercalibration_Stat140: 0.0 syst_JES_EtaIntercalibration_Stat141: 0.0 - syst_JES_EtaIntercalibration_Stat142: 8.965020513796943e-06 - syst_JES_EtaIntercalibration_Stat143: 0.00017474595131432947 - syst_JES_EtaIntercalibration_Stat144: 0.0010923296880978746 - syst_JES_EtaIntercalibration_Stat145: 0.00025847317075472265 - syst_JES_EtaIntercalibration_Stat146: 0.0019127014273011876 - syst_JES_EtaIntercalibration_Stat147: 0.001938528307763392 - syst_JES_EtaIntercalibration_Stat148: 0.00018243001315778609 - syst_JES_EtaIntercalibration_Stat149: 5.4004266319893655e-06 + syst_JES_EtaIntercalibration_Stat142: 8.96502051e-06 + syst_JES_EtaIntercalibration_Stat143: 1.74745951e-04 + syst_JES_EtaIntercalibration_Stat144: 1.09232969e-03 + syst_JES_EtaIntercalibration_Stat145: 2.58473171e-04 + syst_JES_EtaIntercalibration_Stat146: 1.91270143e-03 + syst_JES_EtaIntercalibration_Stat147: 1.93852831e-03 + syst_JES_EtaIntercalibration_Stat148: 1.82430013e-04 + syst_JES_EtaIntercalibration_Stat149: 5.40042663e-06 syst_JES_EtaIntercalibration_Stat15: 0.0 syst_JES_EtaIntercalibration_Stat150: 0.0 syst_JES_EtaIntercalibration_Stat151: 0.0 @@ -57368,60 +57368,60 @@ bins: syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 5.159779355747686e-12 - syst_JES_EtaIntercalibration_Stat157: 2.5019473915332434e-11 + syst_JES_EtaIntercalibration_Stat156: 5.15977936e-12 + syst_JES_EtaIntercalibration_Stat157: 2.50194739e-11 syst_JES_EtaIntercalibration_Stat158: 0.0 syst_JES_EtaIntercalibration_Stat159: 0.0 - syst_JES_EtaIntercalibration_Stat16: 1.5510514981779295e-14 - syst_JES_EtaIntercalibration_Stat160: 9.062737754711597e-06 - syst_JES_EtaIntercalibration_Stat161: 0.00016691030884879462 - syst_JES_EtaIntercalibration_Stat162: 0.0010929547886349188 - syst_JES_EtaIntercalibration_Stat163: 0.0011344866537337493 - syst_JES_EtaIntercalibration_Stat164: 0.003721091463535934 - syst_JES_EtaIntercalibration_Stat165: 0.0028581072408151516 - syst_JES_EtaIntercalibration_Stat166: 0.0007757060130249088 - syst_JES_EtaIntercalibration_Stat167: 6.121544984724036e-06 + syst_JES_EtaIntercalibration_Stat16: 1.55105150e-14 + syst_JES_EtaIntercalibration_Stat160: 9.06273775e-06 + syst_JES_EtaIntercalibration_Stat161: 1.66910309e-04 + syst_JES_EtaIntercalibration_Stat162: 1.09295479e-03 + syst_JES_EtaIntercalibration_Stat163: 1.13448665e-03 + syst_JES_EtaIntercalibration_Stat164: 3.72109146e-03 + syst_JES_EtaIntercalibration_Stat165: 2.85810724e-03 + syst_JES_EtaIntercalibration_Stat166: 7.75706013e-04 + syst_JES_EtaIntercalibration_Stat167: 6.12154498e-06 syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 - syst_JES_EtaIntercalibration_Stat17: 1.0937543691341307e-13 + syst_JES_EtaIntercalibration_Stat17: 1.09375437e-13 syst_JES_EtaIntercalibration_Stat170: 0.0 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 - syst_JES_EtaIntercalibration_Stat174: 2.5019473915332434e-11 - syst_JES_EtaIntercalibration_Stat175: 2.5019473915332434e-11 + syst_JES_EtaIntercalibration_Stat174: 2.50194739e-11 + syst_JES_EtaIntercalibration_Stat175: 2.50194739e-11 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 - syst_JES_EtaIntercalibration_Stat178: 0.00010143115694893753 - syst_JES_EtaIntercalibration_Stat179: 0.00045294042124765154 - syst_JES_EtaIntercalibration_Stat18: 8.96497495813569e-12 - syst_JES_EtaIntercalibration_Stat180: 0.0033335989560833498 - syst_JES_EtaIntercalibration_Stat181: 0.004263197274347036 - syst_JES_EtaIntercalibration_Stat182: 0.011545796410382439 - syst_JES_EtaIntercalibration_Stat183: 0.002201014765965917 - syst_JES_EtaIntercalibration_Stat184: 8.609406643317528e-06 + syst_JES_EtaIntercalibration_Stat178: 1.01431157e-04 + syst_JES_EtaIntercalibration_Stat179: 4.52940421e-04 + syst_JES_EtaIntercalibration_Stat18: 8.96497496e-12 + syst_JES_EtaIntercalibration_Stat180: 3.33359896e-03 + syst_JES_EtaIntercalibration_Stat181: 4.26319727e-03 + syst_JES_EtaIntercalibration_Stat182: 1.15457964e-02 + syst_JES_EtaIntercalibration_Stat183: 2.20101477e-03 + syst_JES_EtaIntercalibration_Stat184: 8.60940664e-06 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 syst_JES_EtaIntercalibration_Stat187: 0.0 - syst_JES_EtaIntercalibration_Stat188: 7.608033172246294e-09 + syst_JES_EtaIntercalibration_Stat188: 7.60803317e-09 syst_JES_EtaIntercalibration_Stat189: 0.0 - syst_JES_EtaIntercalibration_Stat19: 6.308943490593334e-12 + syst_JES_EtaIntercalibration_Stat19: 6.30894349e-12 syst_JES_EtaIntercalibration_Stat190: 0.0 - syst_JES_EtaIntercalibration_Stat191: 2.5019473915332434e-11 - syst_JES_EtaIntercalibration_Stat192: 2.5019473915332434e-11 + syst_JES_EtaIntercalibration_Stat191: 2.50194739e-11 + syst_JES_EtaIntercalibration_Stat192: 2.50194739e-11 syst_JES_EtaIntercalibration_Stat193: 0.0 syst_JES_EtaIntercalibration_Stat194: 0.0 - syst_JES_EtaIntercalibration_Stat195: 4.6419194305804144e-05 - syst_JES_EtaIntercalibration_Stat196: 0.001203842193769599 - syst_JES_EtaIntercalibration_Stat197: 0.01089743854077645 - syst_JES_EtaIntercalibration_Stat198: 0.0011548014634559483 - syst_JES_EtaIntercalibration_Stat199: 1.850058666637358e-05 - syst_JES_EtaIntercalibration_Stat2: 2.8650719375785316e-11 + syst_JES_EtaIntercalibration_Stat195: 4.64191943e-05 + syst_JES_EtaIntercalibration_Stat196: 1.20384219e-03 + syst_JES_EtaIntercalibration_Stat197: 1.08974385e-02 + syst_JES_EtaIntercalibration_Stat198: 1.15480146e-03 + syst_JES_EtaIntercalibration_Stat199: 1.85005867e-05 + syst_JES_EtaIntercalibration_Stat2: 2.86507194e-11 syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 syst_JES_EtaIntercalibration_Stat201: 0.0 syst_JES_EtaIntercalibration_Stat202: 0.0 - syst_JES_EtaIntercalibration_Stat203: 7.608033172246294e-09 + syst_JES_EtaIntercalibration_Stat203: 7.60803317e-09 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 @@ -57429,9 +57429,9 @@ bins: syst_JES_EtaIntercalibration_Stat208: 0.0 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 1.7344757120452855e-05 - syst_JES_EtaIntercalibration_Stat211: 0.00041603376064930115 - syst_JES_EtaIntercalibration_Stat212: 1.984064200070149e-07 + syst_JES_EtaIntercalibration_Stat210: 1.73447571e-05 + syst_JES_EtaIntercalibration_Stat211: 4.16033761e-04 + syst_JES_EtaIntercalibration_Stat212: 1.98406420e-07 syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 syst_JES_EtaIntercalibration_Stat215: 0.0 @@ -57443,37 +57443,37 @@ bins: syst_JES_EtaIntercalibration_Stat220: 0.0 syst_JES_EtaIntercalibration_Stat221: 0.0 syst_JES_EtaIntercalibration_Stat222: 0.0 - syst_JES_EtaIntercalibration_Stat223: 1.6281277591147447e-06 - syst_JES_EtaIntercalibration_Stat224: 1.9857962508777176e-07 + syst_JES_EtaIntercalibration_Stat223: 1.62812776e-06 + syst_JES_EtaIntercalibration_Stat224: 1.98579625e-07 syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 syst_JES_EtaIntercalibration_Stat227: 0.0 syst_JES_EtaIntercalibration_Stat228: 0.0 syst_JES_EtaIntercalibration_Stat229: 0.0 - syst_JES_EtaIntercalibration_Stat23: 2.274553506311733e-11 + syst_JES_EtaIntercalibration_Stat23: 2.27455351e-11 syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 syst_JES_EtaIntercalibration_Stat232: 0.0 syst_JES_EtaIntercalibration_Stat233: 0.0 syst_JES_EtaIntercalibration_Stat234: 0.0 - syst_JES_EtaIntercalibration_Stat235: 1.9857962508777176e-07 + syst_JES_EtaIntercalibration_Stat235: 1.98579625e-07 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 syst_JES_EtaIntercalibration_Stat239: 0.0 - syst_JES_EtaIntercalibration_Stat24: 1.072973839382862e-08 + syst_JES_EtaIntercalibration_Stat24: 1.07297384e-08 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 syst_JES_EtaIntercalibration_Stat243: 0.0 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 - syst_JES_EtaIntercalibration_Stat25: 7.1423913620202e-06 - syst_JES_EtaIntercalibration_Stat26: 3.9794794571652205e-11 + syst_JES_EtaIntercalibration_Stat25: 7.14239136e-06 + syst_JES_EtaIntercalibration_Stat26: 3.97947946e-11 syst_JES_EtaIntercalibration_Stat27: 0.0 syst_JES_EtaIntercalibration_Stat28: 0.0 syst_JES_EtaIntercalibration_Stat29: 0.0 - syst_JES_EtaIntercalibration_Stat3: 3.5343221061470896e-11 + syst_JES_EtaIntercalibration_Stat3: 3.53432211e-11 syst_JES_EtaIntercalibration_Stat30: 0.0 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 @@ -57482,19 +57482,19 @@ bins: syst_JES_EtaIntercalibration_Stat35: 0.0 syst_JES_EtaIntercalibration_Stat36: 0.0 syst_JES_EtaIntercalibration_Stat37: 0.0 - syst_JES_EtaIntercalibration_Stat38: 1.5510514981779295e-14 - syst_JES_EtaIntercalibration_Stat39: 1.4737543893064407e-11 + syst_JES_EtaIntercalibration_Stat38: 1.55105150e-14 + syst_JES_EtaIntercalibration_Stat39: 1.47375439e-11 syst_JES_EtaIntercalibration_Stat4: 0.0 - syst_JES_EtaIntercalibration_Stat40: 7.756446141758478e-09 - syst_JES_EtaIntercalibration_Stat41: 1.3921724273594848e-09 - syst_JES_EtaIntercalibration_Stat42: 7.238240324830338e-13 + syst_JES_EtaIntercalibration_Stat40: 7.75644614e-09 + syst_JES_EtaIntercalibration_Stat41: 1.39217243e-09 + syst_JES_EtaIntercalibration_Stat42: 7.23824032e-13 syst_JES_EtaIntercalibration_Stat43: 0.0 - syst_JES_EtaIntercalibration_Stat44: 1.5094822787962766e-12 - syst_JES_EtaIntercalibration_Stat45: 1.3033655358340576e-10 - syst_JES_EtaIntercalibration_Stat46: 9.422917168663853e-07 - syst_JES_EtaIntercalibration_Stat47: 7.0355983475110345e-06 - syst_JES_EtaIntercalibration_Stat48: 5.2519913430526525e-09 - syst_JES_EtaIntercalibration_Stat49: 1.1900055073401971e-12 + syst_JES_EtaIntercalibration_Stat44: 1.50948228e-12 + syst_JES_EtaIntercalibration_Stat45: 1.30336554e-10 + syst_JES_EtaIntercalibration_Stat46: 9.42291717e-07 + syst_JES_EtaIntercalibration_Stat47: 7.03559835e-06 + syst_JES_EtaIntercalibration_Stat48: 5.25199134e-09 + syst_JES_EtaIntercalibration_Stat49: 1.19000551e-12 syst_JES_EtaIntercalibration_Stat5: 0.0 syst_JES_EtaIntercalibration_Stat50: 0.0 syst_JES_EtaIntercalibration_Stat51: 0.0 @@ -57505,21 +57505,21 @@ bins: syst_JES_EtaIntercalibration_Stat56: 0.0 syst_JES_EtaIntercalibration_Stat57: 0.0 syst_JES_EtaIntercalibration_Stat58: 0.0 - syst_JES_EtaIntercalibration_Stat59: 1.5510514981779295e-14 + syst_JES_EtaIntercalibration_Stat59: 1.55105150e-14 syst_JES_EtaIntercalibration_Stat6: 0.0 - syst_JES_EtaIntercalibration_Stat60: 9.116913663625427e-14 - syst_JES_EtaIntercalibration_Stat61: 4.474234545427855e-09 - syst_JES_EtaIntercalibration_Stat62: 1.867265489291761e-05 - syst_JES_EtaIntercalibration_Stat63: 2.319143262068991e-08 - syst_JES_EtaIntercalibration_Stat64: 9.788406816229084e-12 + syst_JES_EtaIntercalibration_Stat60: 9.11691366e-14 + syst_JES_EtaIntercalibration_Stat61: 4.47423455e-09 + syst_JES_EtaIntercalibration_Stat62: 1.86726549e-05 + syst_JES_EtaIntercalibration_Stat63: 2.31914326e-08 + syst_JES_EtaIntercalibration_Stat64: 9.78840682e-12 syst_JES_EtaIntercalibration_Stat65: 0.0 - syst_JES_EtaIntercalibration_Stat66: 1.5094822787962766e-12 - syst_JES_EtaIntercalibration_Stat67: 1.3251935735959481e-08 - syst_JES_EtaIntercalibration_Stat68: 1.4616449071765004e-05 - syst_JES_EtaIntercalibration_Stat69: 1.4420934886476674e-05 + syst_JES_EtaIntercalibration_Stat66: 1.50948228e-12 + syst_JES_EtaIntercalibration_Stat67: 1.32519357e-08 + syst_JES_EtaIntercalibration_Stat68: 1.46164491e-05 + syst_JES_EtaIntercalibration_Stat69: 1.44209349e-05 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 7.07392699336797e-06 - syst_JES_EtaIntercalibration_Stat71: 3.225874767698678e-11 + syst_JES_EtaIntercalibration_Stat70: 7.07392699e-06 + syst_JES_EtaIntercalibration_Stat71: 3.22587477e-11 syst_JES_EtaIntercalibration_Stat72: 0.0 syst_JES_EtaIntercalibration_Stat73: 0.0 syst_JES_EtaIntercalibration_Stat74: 0.0 @@ -57530,19 +57530,19 @@ bins: syst_JES_EtaIntercalibration_Stat79: 0.0 syst_JES_EtaIntercalibration_Stat8: 0.0 syst_JES_EtaIntercalibration_Stat80: 0.0 - syst_JES_EtaIntercalibration_Stat81: 1.5510514981779295e-14 - syst_JES_EtaIntercalibration_Stat82: 2.5399816928474113e-12 - syst_JES_EtaIntercalibration_Stat83: 4.9848892665735316e-08 - syst_JES_EtaIntercalibration_Stat84: 1.685449781957327e-05 - syst_JES_EtaIntercalibration_Stat85: 1.686294185484846e-05 - syst_JES_EtaIntercalibration_Stat86: 1.3068954510594946e-09 + syst_JES_EtaIntercalibration_Stat81: 1.55105150e-14 + syst_JES_EtaIntercalibration_Stat82: 2.53998169e-12 + syst_JES_EtaIntercalibration_Stat83: 4.98488927e-08 + syst_JES_EtaIntercalibration_Stat84: 1.68544978e-05 + syst_JES_EtaIntercalibration_Stat85: 1.68629419e-05 + syst_JES_EtaIntercalibration_Stat86: 1.30689545e-09 syst_JES_EtaIntercalibration_Stat87: 0.0 - syst_JES_EtaIntercalibration_Stat88: 3.314464662656701e-08 - syst_JES_EtaIntercalibration_Stat89: 1.497952999095766e-05 + syst_JES_EtaIntercalibration_Stat88: 3.31446466e-08 + syst_JES_EtaIntercalibration_Stat89: 1.49795300e-05 syst_JES_EtaIntercalibration_Stat9: 0.0 - syst_JES_EtaIntercalibration_Stat90: 1.6707132689588e-05 - syst_JES_EtaIntercalibration_Stat91: 7.1719172799189465e-06 - syst_JES_EtaIntercalibration_Stat92: 3.681774039943244e-11 + syst_JES_EtaIntercalibration_Stat90: 1.67071327e-05 + syst_JES_EtaIntercalibration_Stat91: 7.17191728e-06 + syst_JES_EtaIntercalibration_Stat92: 3.68177404e-11 syst_JES_EtaIntercalibration_Stat93: 0.0 syst_JES_EtaIntercalibration_Stat94: 0.0 syst_JES_EtaIntercalibration_Stat95: 0.0 @@ -57550,154 +57550,154 @@ bins: syst_JES_EtaIntercalibration_Stat97: 0.0 syst_JES_EtaIntercalibration_Stat98: 0.0 syst_JES_EtaIntercalibration_Stat99: 0.0 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.006166905382766951 - syst_JES_Flavour_Comp: 0.020817134769223165 - syst_JES_Flavour_Response: 0.020166364942646457 - syst_JES_Gjet_Generator: 0.05201893789765417 - syst_JES_Gjet_OOC: 0.03911387605441322 - syst_JES_Gjet_Purity: 0.01298576277120447 - syst_JES_Gjet_Stat1: 0.0001138737690383523 - syst_JES_Gjet_Stat10: 0.0017999018723252665 - syst_JES_Gjet_Stat11: 0.0029845280564940245 - syst_JES_Gjet_Stat12: 0.007074129769802078 - syst_JES_Gjet_Stat13: 0.006191244301430852 - syst_JES_Gjet_Stat14: 0.000987113958720066 - syst_JES_Gjet_Stat15: 9.881146534183166e-05 - syst_JES_Gjet_Stat2: 7.241433076401382e-05 - syst_JES_Gjet_Stat3: 9.247789087127798e-05 - syst_JES_Gjet_Stat4: 0.00010872790476689964 - syst_JES_Gjet_Stat5: 0.000106480661624541 - syst_JES_Gjet_Stat6: 7.398016000928899e-05 - syst_JES_Gjet_Stat7: 0.00014946845921464503 - syst_JES_Gjet_Stat8: 0.0002657286335846214 - syst_JES_Gjet_Stat9: 0.000934778037825023 - syst_JES_Gjet_Veto: 0.023014049513286443 - syst_JES_Gjet_dPhi: 0.0029610062478826345 - syst_JES_LArESZee: 0.07349888706640394 - syst_JES_LArEsmear: 0.0056874903955962865 - syst_JES_LAr_JVT: 0.007277178076012707 - syst_JES_MJB_Alpha: 0.0004455987615557296 - syst_JES_MJB_Asym: 0.002321100385593006 - syst_JES_MJB_Beta: 0.00011553941794902724 - syst_JES_MJB_Fragmentation: 0.0069259945856172895 - syst_JES_MJB_Stat1: 0.00037309332277595105 - syst_JES_MJB_Stat10: 2.6598347260998664e-06 - syst_JES_MJB_Stat11: 3.087380564491524e-07 - syst_JES_MJB_Stat12: 8.311245800119257e-08 - syst_JES_MJB_Stat13: 5.5988542354663963e-08 + syst_JES_EtaIntercalibration_TotalStat_MJB: 6.16690538e-03 + syst_JES_Flavour_Comp: 2.08171348e-02 + syst_JES_Flavour_Response: 2.01663649e-02 + syst_JES_Gjet_Generator: 5.20189379e-02 + syst_JES_Gjet_OOC: 3.91138761e-02 + syst_JES_Gjet_Purity: 1.29857628e-02 + syst_JES_Gjet_Stat1: 1.13873769e-04 + syst_JES_Gjet_Stat10: 1.79990187e-03 + syst_JES_Gjet_Stat11: 2.98452806e-03 + syst_JES_Gjet_Stat12: 7.07412977e-03 + syst_JES_Gjet_Stat13: 6.19124430e-03 + syst_JES_Gjet_Stat14: 9.87113959e-04 + syst_JES_Gjet_Stat15: 9.88114653e-05 + syst_JES_Gjet_Stat2: 7.24143308e-05 + syst_JES_Gjet_Stat3: 9.24778909e-05 + syst_JES_Gjet_Stat4: 1.08727905e-04 + syst_JES_Gjet_Stat5: 1.06480662e-04 + syst_JES_Gjet_Stat6: 7.39801600e-05 + syst_JES_Gjet_Stat7: 1.49468459e-04 + syst_JES_Gjet_Stat8: 2.65728634e-04 + syst_JES_Gjet_Stat9: 9.34778038e-04 + syst_JES_Gjet_Veto: 2.30140495e-02 + syst_JES_Gjet_dPhi: 2.96100625e-03 + syst_JES_LArESZee: 7.34988871e-02 + syst_JES_LArEsmear: 5.68749040e-03 + syst_JES_LAr_JVT: 7.27717808e-03 + syst_JES_MJB_Alpha: 4.45598762e-04 + syst_JES_MJB_Asym: 2.32110039e-03 + syst_JES_MJB_Beta: 1.15539418e-04 + syst_JES_MJB_Fragmentation: 6.92599459e-03 + syst_JES_MJB_Stat1: 3.73093323e-04 + syst_JES_MJB_Stat10: 2.65983473e-06 + syst_JES_MJB_Stat11: 3.08738056e-07 + syst_JES_MJB_Stat12: 8.31124580e-08 + syst_JES_MJB_Stat13: 5.59885424e-08 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 0.0006248773699695005 - syst_JES_MJB_Stat3: 0.0006012981020259418 - syst_JES_MJB_Stat4: 0.00023207501603360927 - syst_JES_MJB_Stat5: 5.471760959691131e-05 - syst_JES_MJB_Stat6: 4.303318835503593e-05 - syst_JES_MJB_Stat7: 1.1845011386655567e-06 - syst_JES_MJB_Stat8: 2.729982629737184e-06 - syst_JES_MJB_Stat9: 2.7291166061872016e-06 - syst_JES_MJB_Threshold: 0.0028102341539451834 - syst_JES_Pileup_MuOffset: 0.005258170023877129 - syst_JES_Pileup_NPVOffset: 0.006629962801554772 - syst_JES_Pileup_Pt_term: 0.023301748324964806 - syst_JES_Pileup_Rho_topology: 0.015481410626942235 - syst_JES_PunchThrough_MC15: 0.000680883519774124 + syst_JES_MJB_Stat2: 6.24877370e-04 + syst_JES_MJB_Stat3: 6.01298102e-04 + syst_JES_MJB_Stat4: 2.32075016e-04 + syst_JES_MJB_Stat5: 5.47176096e-05 + syst_JES_MJB_Stat6: 4.30331884e-05 + syst_JES_MJB_Stat7: 1.18450114e-06 + syst_JES_MJB_Stat8: 2.72998263e-06 + syst_JES_MJB_Stat9: 2.72911661e-06 + syst_JES_MJB_Threshold: 2.81023415e-03 + syst_JES_Pileup_MuOffset: 5.25817002e-03 + syst_JES_Pileup_NPVOffset: 6.62996280e-03 + syst_JES_Pileup_Pt_term: 2.33017483e-02 + syst_JES_Pileup_Rho_topology: 1.54814106e-02 + syst_JES_PunchThrough_MC15: 6.80883520e-04 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.04369192831633778 - syst_JES_Zjet_MuScale: 0.0025266347183556235 - syst_JES_Zjet_MuSmearID: 0.0003974098477327908 - syst_JES_Zjet_MuSmearMS: 0.009706829142413088 - syst_JES_Zjet_OOC: 0.01683382606539583 - syst_JES_Zjet_Stat1: 0.0004295055616636413 - syst_JES_Zjet_Stat10: 0.0014555941329917484 - syst_JES_Zjet_Stat11: 0.0015338359454322359 - syst_JES_Zjet_Stat12: 0.012849493248762769 - syst_JES_Zjet_Stat13: 0.00840438544749109 - syst_JES_Zjet_Stat2: 3.814167585135714e-05 - syst_JES_Zjet_Stat3: 8.279180031863058e-05 - syst_JES_Zjet_Stat4: 8.30179305933363e-05 - syst_JES_Zjet_Stat5: 0.0001953654336749467 - syst_JES_Zjet_Stat6: 0.00021353346341967104 - syst_JES_Zjet_Stat7: 0.00015129894480795297 - syst_JES_Zjet_Stat8: 0.00023175429834201567 - syst_JES_Zjet_Stat9: 0.0005429542038699027 - syst_JES_Zjet_Veto: 0.0033324926106444706 - syst_JES_Zjet_dPhi: 0.0026790992422827493 + syst_JES_Zjet_MC: 4.36919283e-02 + syst_JES_Zjet_MuScale: 2.52663472e-03 + syst_JES_Zjet_MuSmearID: 3.97409848e-04 + syst_JES_Zjet_MuSmearMS: 9.70682914e-03 + syst_JES_Zjet_OOC: 1.68338261e-02 + syst_JES_Zjet_Stat1: 4.29505562e-04 + syst_JES_Zjet_Stat10: 1.45559413e-03 + syst_JES_Zjet_Stat11: 1.53383595e-03 + syst_JES_Zjet_Stat12: 1.28494932e-02 + syst_JES_Zjet_Stat13: 8.40438545e-03 + syst_JES_Zjet_Stat2: 3.81416759e-05 + syst_JES_Zjet_Stat3: 8.27918003e-05 + syst_JES_Zjet_Stat4: 8.30179306e-05 + syst_JES_Zjet_Stat5: 1.95365434e-04 + syst_JES_Zjet_Stat6: 2.13533463e-04 + syst_JES_Zjet_Stat7: 1.51298945e-04 + syst_JES_Zjet_Stat8: 2.31754298e-04 + syst_JES_Zjet_Stat9: 5.42954204e-04 + syst_JES_Zjet_Veto: 3.33249261e-03 + syst_JES_Zjet_dPhi: 2.67909924e-03 syst_PRW: 0.0 syst_Unfolding_bias: 0.005464 - syst_cleaning: 0.009369528843543843 + syst_cleaning: 9.36952884e-03 syst_lumi: 0.03556 - stat: 0.018785 - syst_JER_CROSS_CALIB_FORWARD: 2.646e-05 + syst_JER_CROSS_CALIB_FORWARD: 2.64600000e-05 syst_JER_NOISE_FORWARD: 0.004574 - syst_JER_NP0: 0.004332024007320366 - syst_JER_NP1: 0.010142044764247495 - syst_JER_NP2: 0.0004647054551003248 - syst_JER_NP3: 0.002353522625767596 - syst_JER_NP4: 0.001945768935408313 - syst_JER_NP5: 0.00019765790523022347 - syst_JER_NP6: 0.0001446513999240934 - syst_JER_NP7: 2.334425473677159e-07 - syst_JER_NP8: 0.0016223002634145752 - syst_JES_EtaIntercalibration_Modelling: 0.048374254257817766 - syst_JES_EtaIntercalibration_NonClosure: 0.01068524866346123 + syst_JER_NP0: 4.33202401e-03 + syst_JER_NP1: 1.01420448e-02 + syst_JER_NP2: 4.64705455e-04 + syst_JER_NP3: 2.35352263e-03 + syst_JER_NP4: 1.94576894e-03 + syst_JER_NP5: 1.97657905e-04 + syst_JER_NP6: 1.44651400e-04 + syst_JER_NP7: 2.33442547e-07 + syst_JER_NP8: 1.62230026e-03 + syst_JES_EtaIntercalibration_Modelling: 4.83742543e-02 + syst_JES_EtaIntercalibration_NonClosure: 1.06852487e-02 syst_JES_EtaIntercalibration_Stat0: 0.0 - syst_JES_EtaIntercalibration_Stat1: 6.040527191396459e-14 + syst_JES_EtaIntercalibration_Stat1: 6.04052719e-14 syst_JES_EtaIntercalibration_Stat10: 0.0 syst_JES_EtaIntercalibration_Stat100: 0.0 syst_JES_EtaIntercalibration_Stat101: 0.0 syst_JES_EtaIntercalibration_Stat102: 0.0 - syst_JES_EtaIntercalibration_Stat103: 6.588758380757334e-13 - syst_JES_EtaIntercalibration_Stat104: 1.9819222837706705e-06 - syst_JES_EtaIntercalibration_Stat105: 3.889173571595899e-06 - syst_JES_EtaIntercalibration_Stat106: 7.828110755476062e-07 - syst_JES_EtaIntercalibration_Stat107: 1.8377509917015419e-10 - syst_JES_EtaIntercalibration_Stat108: 3.2536632646910466e-07 - syst_JES_EtaIntercalibration_Stat109: 1.8542928571291e-05 + syst_JES_EtaIntercalibration_Stat103: 6.58875838e-13 + syst_JES_EtaIntercalibration_Stat104: 1.98192228e-06 + syst_JES_EtaIntercalibration_Stat105: 3.88917357e-06 + syst_JES_EtaIntercalibration_Stat106: 7.82811076e-07 + syst_JES_EtaIntercalibration_Stat107: 1.83775099e-10 + syst_JES_EtaIntercalibration_Stat108: 3.25366326e-07 + syst_JES_EtaIntercalibration_Stat109: 1.85429286e-05 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 2.7479501232737104e-05 - syst_JES_EtaIntercalibration_Stat111: 7.130348715701077e-06 - syst_JES_EtaIntercalibration_Stat112: 1.91820378016802e-06 + syst_JES_EtaIntercalibration_Stat110: 2.74795012e-05 + syst_JES_EtaIntercalibration_Stat111: 7.13034872e-06 + syst_JES_EtaIntercalibration_Stat112: 1.91820378e-06 syst_JES_EtaIntercalibration_Stat113: 0.0 syst_JES_EtaIntercalibration_Stat114: 0.0 syst_JES_EtaIntercalibration_Stat115: 0.0 syst_JES_EtaIntercalibration_Stat116: 0.0 syst_JES_EtaIntercalibration_Stat117: 0.0 - syst_JES_EtaIntercalibration_Stat118: 4.5414372174455956e-13 - syst_JES_EtaIntercalibration_Stat119: 4.5414372174455956e-13 + syst_JES_EtaIntercalibration_Stat118: 4.54143722e-13 + syst_JES_EtaIntercalibration_Stat119: 4.54143722e-13 syst_JES_EtaIntercalibration_Stat12: 0.0 syst_JES_EtaIntercalibration_Stat120: 0.0 syst_JES_EtaIntercalibration_Stat121: 0.0 syst_JES_EtaIntercalibration_Stat122: 0.0 - syst_JES_EtaIntercalibration_Stat123: 3.8054117609005205e-09 - syst_JES_EtaIntercalibration_Stat124: 4.09199310941502e-05 - syst_JES_EtaIntercalibration_Stat125: 1.9187956919641028e-05 - syst_JES_EtaIntercalibration_Stat126: 2.396713188410328e-05 - syst_JES_EtaIntercalibration_Stat127: 6.414844717528243e-07 - syst_JES_EtaIntercalibration_Stat128: 0.00023639666384067266 - syst_JES_EtaIntercalibration_Stat129: 0.0004974248159269901 + syst_JES_EtaIntercalibration_Stat123: 3.80541176e-09 + syst_JES_EtaIntercalibration_Stat124: 4.09199311e-05 + syst_JES_EtaIntercalibration_Stat125: 1.91879569e-05 + syst_JES_EtaIntercalibration_Stat126: 2.39671319e-05 + syst_JES_EtaIntercalibration_Stat127: 6.41484472e-07 + syst_JES_EtaIntercalibration_Stat128: 2.36396664e-04 + syst_JES_EtaIntercalibration_Stat129: 4.97424816e-04 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 1.6965413898576126e-05 - syst_JES_EtaIntercalibration_Stat131: 1.4185512722756975e-06 + syst_JES_EtaIntercalibration_Stat130: 1.69654139e-05 + syst_JES_EtaIntercalibration_Stat131: 1.41855127e-06 syst_JES_EtaIntercalibration_Stat132: 0.0 syst_JES_EtaIntercalibration_Stat133: 0.0 syst_JES_EtaIntercalibration_Stat134: 0.0 syst_JES_EtaIntercalibration_Stat135: 0.0 syst_JES_EtaIntercalibration_Stat136: 0.0 - syst_JES_EtaIntercalibration_Stat137: 4.5414372174455956e-13 - syst_JES_EtaIntercalibration_Stat138: 4.5414372174455956e-13 - syst_JES_EtaIntercalibration_Stat139: 2.2152929828805938e-12 + syst_JES_EtaIntercalibration_Stat137: 4.54143722e-13 + syst_JES_EtaIntercalibration_Stat138: 4.54143722e-13 + syst_JES_EtaIntercalibration_Stat139: 2.21529298e-12 syst_JES_EtaIntercalibration_Stat14: 0.0 syst_JES_EtaIntercalibration_Stat140: 0.0 syst_JES_EtaIntercalibration_Stat141: 0.0 - syst_JES_EtaIntercalibration_Stat142: 2.0113192116883757e-06 - syst_JES_EtaIntercalibration_Stat143: 1.856240940718634e-05 - syst_JES_EtaIntercalibration_Stat144: 0.00035668007243887343 - syst_JES_EtaIntercalibration_Stat145: 0.00011077665642182924 - syst_JES_EtaIntercalibration_Stat146: 0.0006910459897864975 - syst_JES_EtaIntercalibration_Stat147: 0.0007909826357133259 - syst_JES_EtaIntercalibration_Stat148: 5.9908254548100456e-05 - syst_JES_EtaIntercalibration_Stat149: 1.8613169396961925e-06 + syst_JES_EtaIntercalibration_Stat142: 2.01131921e-06 + syst_JES_EtaIntercalibration_Stat143: 1.85624094e-05 + syst_JES_EtaIntercalibration_Stat144: 3.56680072e-04 + syst_JES_EtaIntercalibration_Stat145: 1.10776656e-04 + syst_JES_EtaIntercalibration_Stat146: 6.91045990e-04 + syst_JES_EtaIntercalibration_Stat147: 7.90982636e-04 + syst_JES_EtaIntercalibration_Stat148: 5.99082545e-05 + syst_JES_EtaIntercalibration_Stat149: 1.86131694e-06 syst_JES_EtaIntercalibration_Stat15: 0.0 syst_JES_EtaIntercalibration_Stat150: 0.0 syst_JES_EtaIntercalibration_Stat151: 0.0 @@ -57705,60 +57705,60 @@ bins: syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 4.5414372174455956e-13 - syst_JES_EtaIntercalibration_Stat157: 2.2152929828805938e-12 + syst_JES_EtaIntercalibration_Stat156: 4.54143722e-13 + syst_JES_EtaIntercalibration_Stat157: 2.21529298e-12 syst_JES_EtaIntercalibration_Stat158: 0.0 syst_JES_EtaIntercalibration_Stat159: 0.0 - syst_JES_EtaIntercalibration_Stat16: 1.6099412256352715e-15 - syst_JES_EtaIntercalibration_Stat160: 2.028624606451561e-06 - syst_JES_EtaIntercalibration_Stat161: 7.116427527207736e-05 - syst_JES_EtaIntercalibration_Stat162: 0.00034784583869869703 - syst_JES_EtaIntercalibration_Stat163: 0.00042850149357966073 - syst_JES_EtaIntercalibration_Stat164: 0.001815093487261744 - syst_JES_EtaIntercalibration_Stat165: 0.0011329030011435223 - syst_JES_EtaIntercalibration_Stat166: 0.00024493672433750617 - syst_JES_EtaIntercalibration_Stat167: 2.032896219756434e-06 + syst_JES_EtaIntercalibration_Stat16: 1.60994123e-15 + syst_JES_EtaIntercalibration_Stat160: 2.02862461e-06 + syst_JES_EtaIntercalibration_Stat161: 7.11642753e-05 + syst_JES_EtaIntercalibration_Stat162: 3.47845839e-04 + syst_JES_EtaIntercalibration_Stat163: 4.28501494e-04 + syst_JES_EtaIntercalibration_Stat164: 1.81509349e-03 + syst_JES_EtaIntercalibration_Stat165: 1.13290300e-03 + syst_JES_EtaIntercalibration_Stat166: 2.44936724e-04 + syst_JES_EtaIntercalibration_Stat167: 2.03289622e-06 syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 - syst_JES_EtaIntercalibration_Stat17: 1.0747403907455978e-14 + syst_JES_EtaIntercalibration_Stat17: 1.07474039e-14 syst_JES_EtaIntercalibration_Stat170: 0.0 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 - syst_JES_EtaIntercalibration_Stat174: 2.2152929828805938e-12 - syst_JES_EtaIntercalibration_Stat175: 2.2152929828805938e-12 + syst_JES_EtaIntercalibration_Stat174: 2.21529298e-12 + syst_JES_EtaIntercalibration_Stat175: 2.21529298e-12 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 - syst_JES_EtaIntercalibration_Stat178: 3.742998835532814e-05 - syst_JES_EtaIntercalibration_Stat179: 0.00016148286348712052 - syst_JES_EtaIntercalibration_Stat18: 8.071858196846621e-13 - syst_JES_EtaIntercalibration_Stat180: 0.0013804341056348904 - syst_JES_EtaIntercalibration_Stat181: 0.0018739842582049615 - syst_JES_EtaIntercalibration_Stat182: 0.007045978906440184 - syst_JES_EtaIntercalibration_Stat183: 0.001117683971433786 - syst_JES_EtaIntercalibration_Stat184: 8.31206195072408e-06 + syst_JES_EtaIntercalibration_Stat178: 3.74299884e-05 + syst_JES_EtaIntercalibration_Stat179: 1.61482863e-04 + syst_JES_EtaIntercalibration_Stat18: 8.07185820e-13 + syst_JES_EtaIntercalibration_Stat180: 1.38043411e-03 + syst_JES_EtaIntercalibration_Stat181: 1.87398426e-03 + syst_JES_EtaIntercalibration_Stat182: 7.04597891e-03 + syst_JES_EtaIntercalibration_Stat183: 1.11768397e-03 + syst_JES_EtaIntercalibration_Stat184: 8.31206195e-06 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 syst_JES_EtaIntercalibration_Stat187: 0.0 - syst_JES_EtaIntercalibration_Stat188: 7.697233788836091e-10 + syst_JES_EtaIntercalibration_Stat188: 7.69723379e-10 syst_JES_EtaIntercalibration_Stat189: 0.0 - syst_JES_EtaIntercalibration_Stat19: 5.627555569472415e-13 + syst_JES_EtaIntercalibration_Stat19: 5.62755557e-13 syst_JES_EtaIntercalibration_Stat190: 0.0 - syst_JES_EtaIntercalibration_Stat191: 2.2152929828805938e-12 - syst_JES_EtaIntercalibration_Stat192: 2.2152929828805938e-12 + syst_JES_EtaIntercalibration_Stat191: 2.21529298e-12 + syst_JES_EtaIntercalibration_Stat192: 2.21529298e-12 syst_JES_EtaIntercalibration_Stat193: 0.0 syst_JES_EtaIntercalibration_Stat194: 0.0 - syst_JES_EtaIntercalibration_Stat195: 7.4049946905787855e-06 - syst_JES_EtaIntercalibration_Stat196: 0.0005313071686886975 - syst_JES_EtaIntercalibration_Stat197: 0.00620251164851788 - syst_JES_EtaIntercalibration_Stat198: 0.0009508626648996163 - syst_JES_EtaIntercalibration_Stat199: 1.1539717977822292e-05 - syst_JES_EtaIntercalibration_Stat2: 2.522671793396834e-12 + syst_JES_EtaIntercalibration_Stat195: 7.40499469e-06 + syst_JES_EtaIntercalibration_Stat196: 5.31307169e-04 + syst_JES_EtaIntercalibration_Stat197: 6.20251165e-03 + syst_JES_EtaIntercalibration_Stat198: 9.50862665e-04 + syst_JES_EtaIntercalibration_Stat199: 1.15397180e-05 + syst_JES_EtaIntercalibration_Stat2: 2.52267179e-12 syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 syst_JES_EtaIntercalibration_Stat201: 0.0 syst_JES_EtaIntercalibration_Stat202: 0.0 - syst_JES_EtaIntercalibration_Stat203: 7.697233788836091e-10 + syst_JES_EtaIntercalibration_Stat203: 7.69723379e-10 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 @@ -57766,9 +57766,9 @@ bins: syst_JES_EtaIntercalibration_Stat208: 0.0 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 7.509942282068484e-06 - syst_JES_EtaIntercalibration_Stat211: 0.0005620724034099165 - syst_JES_EtaIntercalibration_Stat212: 5.781585595664912e-07 + syst_JES_EtaIntercalibration_Stat210: 7.50994228e-06 + syst_JES_EtaIntercalibration_Stat211: 5.62072403e-04 + syst_JES_EtaIntercalibration_Stat212: 5.78158560e-07 syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 syst_JES_EtaIntercalibration_Stat215: 0.0 @@ -57780,37 +57780,37 @@ bins: syst_JES_EtaIntercalibration_Stat220: 0.0 syst_JES_EtaIntercalibration_Stat221: 0.0 syst_JES_EtaIntercalibration_Stat222: 0.0 - syst_JES_EtaIntercalibration_Stat223: 1.4705111356259768e-06 - syst_JES_EtaIntercalibration_Stat224: 5.778121494049775e-07 + syst_JES_EtaIntercalibration_Stat223: 1.47051114e-06 + syst_JES_EtaIntercalibration_Stat224: 5.77812149e-07 syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 syst_JES_EtaIntercalibration_Stat227: 0.0 syst_JES_EtaIntercalibration_Stat228: 0.0 syst_JES_EtaIntercalibration_Stat229: 0.0 - syst_JES_EtaIntercalibration_Stat23: 2.0016789827542276e-12 + syst_JES_EtaIntercalibration_Stat23: 2.00167898e-12 syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 syst_JES_EtaIntercalibration_Stat232: 0.0 syst_JES_EtaIntercalibration_Stat233: 0.0 syst_JES_EtaIntercalibration_Stat234: 0.0 - syst_JES_EtaIntercalibration_Stat235: 1.0787212429538968e-05 + syst_JES_EtaIntercalibration_Stat235: 1.07872124e-05 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 syst_JES_EtaIntercalibration_Stat239: 0.0 - syst_JES_EtaIntercalibration_Stat24: 1.042298511703821e-09 + syst_JES_EtaIntercalibration_Stat24: 1.04229851e-09 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 syst_JES_EtaIntercalibration_Stat243: 0.0 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 - syst_JES_EtaIntercalibration_Stat25: 2.022809007855789e-06 - syst_JES_EtaIntercalibration_Stat26: 3.5507479493762998e-12 + syst_JES_EtaIntercalibration_Stat25: 2.02280901e-06 + syst_JES_EtaIntercalibration_Stat26: 3.55074795e-12 syst_JES_EtaIntercalibration_Stat27: 0.0 syst_JES_EtaIntercalibration_Stat28: 0.0 syst_JES_EtaIntercalibration_Stat29: 0.0 - syst_JES_EtaIntercalibration_Stat3: 3.147679695823576e-12 + syst_JES_EtaIntercalibration_Stat3: 3.14767970e-12 syst_JES_EtaIntercalibration_Stat30: 0.0 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 @@ -57819,19 +57819,19 @@ bins: syst_JES_EtaIntercalibration_Stat35: 0.0 syst_JES_EtaIntercalibration_Stat36: 0.0 syst_JES_EtaIntercalibration_Stat37: 0.0 - syst_JES_EtaIntercalibration_Stat38: 1.6099412256352715e-15 - syst_JES_EtaIntercalibration_Stat39: 1.32045539871667e-12 + syst_JES_EtaIntercalibration_Stat38: 1.60994123e-15 + syst_JES_EtaIntercalibration_Stat39: 1.32045540e-12 syst_JES_EtaIntercalibration_Stat4: 0.0 - syst_JES_EtaIntercalibration_Stat40: 7.540506216428708e-10 - syst_JES_EtaIntercalibration_Stat41: 1.2649706478808114e-10 - syst_JES_EtaIntercalibration_Stat42: 6.645878948641782e-14 + syst_JES_EtaIntercalibration_Stat40: 7.54050622e-10 + syst_JES_EtaIntercalibration_Stat41: 1.26497065e-10 + syst_JES_EtaIntercalibration_Stat42: 6.64587895e-14 syst_JES_EtaIntercalibration_Stat43: 0.0 - syst_JES_EtaIntercalibration_Stat44: 1.4679130594146236e-13 - syst_JES_EtaIntercalibration_Stat45: 1.1541311927159754e-11 - syst_JES_EtaIntercalibration_Stat46: 2.8622106417374316e-07 - syst_JES_EtaIntercalibration_Stat47: 2.004352426795248e-06 - syst_JES_EtaIntercalibration_Stat48: 5.116154247088335e-10 - syst_JES_EtaIntercalibration_Stat49: 1.1136220667264097e-13 + syst_JES_EtaIntercalibration_Stat44: 1.46791306e-13 + syst_JES_EtaIntercalibration_Stat45: 1.15413119e-11 + syst_JES_EtaIntercalibration_Stat46: 2.86221064e-07 + syst_JES_EtaIntercalibration_Stat47: 2.00435243e-06 + syst_JES_EtaIntercalibration_Stat48: 5.11615425e-10 + syst_JES_EtaIntercalibration_Stat49: 1.11362207e-13 syst_JES_EtaIntercalibration_Stat5: 0.0 syst_JES_EtaIntercalibration_Stat50: 0.0 syst_JES_EtaIntercalibration_Stat51: 0.0 @@ -57842,21 +57842,21 @@ bins: syst_JES_EtaIntercalibration_Stat56: 0.0 syst_JES_EtaIntercalibration_Stat57: 0.0 syst_JES_EtaIntercalibration_Stat58: 0.0 - syst_JES_EtaIntercalibration_Stat59: 1.6099412256352715e-15 + syst_JES_EtaIntercalibration_Stat59: 1.60994123e-15 syst_JES_EtaIntercalibration_Stat6: 0.0 - syst_JES_EtaIntercalibration_Stat60: 8.821553420458327e-15 - syst_JES_EtaIntercalibration_Stat61: 4.3558537059341187e-10 - syst_JES_EtaIntercalibration_Stat62: 2.049685585644784e-06 - syst_JES_EtaIntercalibration_Stat63: 2.497784992248132e-09 - syst_JES_EtaIntercalibration_Stat64: 8.779713207161154e-13 + syst_JES_EtaIntercalibration_Stat60: 8.82155342e-15 + syst_JES_EtaIntercalibration_Stat61: 4.35585371e-10 + syst_JES_EtaIntercalibration_Stat62: 2.04968559e-06 + syst_JES_EtaIntercalibration_Stat63: 2.49778499e-09 + syst_JES_EtaIntercalibration_Stat64: 8.77971321e-13 syst_JES_EtaIntercalibration_Stat65: 0.0 - syst_JES_EtaIntercalibration_Stat66: 1.4679130594146236e-13 - syst_JES_EtaIntercalibration_Stat67: 1.2765719838692999e-09 - syst_JES_EtaIntercalibration_Stat68: 4.486712640675799e-06 - syst_JES_EtaIntercalibration_Stat69: 4.4862275363048635e-06 + syst_JES_EtaIntercalibration_Stat66: 1.46791306e-13 + syst_JES_EtaIntercalibration_Stat67: 1.27657198e-09 + syst_JES_EtaIntercalibration_Stat68: 4.48671264e-06 + syst_JES_EtaIntercalibration_Stat69: 4.48622754e-06 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 2.014285334181828e-06 - syst_JES_EtaIntercalibration_Stat71: 2.87282068183867e-12 + syst_JES_EtaIntercalibration_Stat70: 2.01428533e-06 + syst_JES_EtaIntercalibration_Stat71: 2.87282068e-12 syst_JES_EtaIntercalibration_Stat72: 0.0 syst_JES_EtaIntercalibration_Stat73: 0.0 syst_JES_EtaIntercalibration_Stat74: 0.0 @@ -57867,19 +57867,19 @@ bins: syst_JES_EtaIntercalibration_Stat79: 0.0 syst_JES_EtaIntercalibration_Stat8: 0.0 syst_JES_EtaIntercalibration_Stat80: 0.0 - syst_JES_EtaIntercalibration_Stat81: 1.6099412256352715e-15 - syst_JES_EtaIntercalibration_Stat82: 2.3003188365963534e-13 - syst_JES_EtaIntercalibration_Stat83: 5.3066100996775706e-09 - syst_JES_EtaIntercalibration_Stat84: 5.331436673167938e-06 - syst_JES_EtaIntercalibration_Stat85: 5.104485086666431e-07 - syst_JES_EtaIntercalibration_Stat86: 1.1857727438257298e-10 + syst_JES_EtaIntercalibration_Stat81: 1.60994123e-15 + syst_JES_EtaIntercalibration_Stat82: 2.30031884e-13 + syst_JES_EtaIntercalibration_Stat83: 5.30661010e-09 + syst_JES_EtaIntercalibration_Stat84: 5.33143667e-06 + syst_JES_EtaIntercalibration_Stat85: 5.10448509e-07 + syst_JES_EtaIntercalibration_Stat86: 1.18577274e-10 syst_JES_EtaIntercalibration_Stat87: 0.0 - syst_JES_EtaIntercalibration_Stat88: 3.6367858061755573e-09 - syst_JES_EtaIntercalibration_Stat89: 3.5594416988482895e-06 + syst_JES_EtaIntercalibration_Stat88: 3.63678581e-09 + syst_JES_EtaIntercalibration_Stat89: 3.55944170e-06 syst_JES_EtaIntercalibration_Stat9: 0.0 - syst_JES_EtaIntercalibration_Stat90: 5.110992858535414e-07 - syst_JES_EtaIntercalibration_Stat91: 2.040256477425081e-06 - syst_JES_EtaIntercalibration_Stat92: 3.277548966453438e-12 + syst_JES_EtaIntercalibration_Stat90: 5.11099286e-07 + syst_JES_EtaIntercalibration_Stat91: 2.04025648e-06 + syst_JES_EtaIntercalibration_Stat92: 3.27754897e-12 syst_JES_EtaIntercalibration_Stat93: 0.0 syst_JES_EtaIntercalibration_Stat94: 0.0 syst_JES_EtaIntercalibration_Stat95: 0.0 @@ -57887,154 +57887,154 @@ bins: syst_JES_EtaIntercalibration_Stat97: 0.0 syst_JES_EtaIntercalibration_Stat98: 0.0 syst_JES_EtaIntercalibration_Stat99: 0.0 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0036385940622718554 - syst_JES_Flavour_Comp: 0.013862411794128754 - syst_JES_Flavour_Response: 0.006732176691085878 - syst_JES_Gjet_Generator: 0.027410131338612736 - syst_JES_Gjet_OOC: 0.021202282895952503 - syst_JES_Gjet_Purity: 0.006523804009165204 - syst_JES_Gjet_Stat1: 6.086034909528534e-05 - syst_JES_Gjet_Stat10: 0.0005773220245235756 - syst_JES_Gjet_Stat11: 0.0010567035854486346 - syst_JES_Gjet_Stat12: 0.0032769346575725307 - syst_JES_Gjet_Stat13: 0.004135328012080782 - syst_JES_Gjet_Stat14: 0.0008208322380821796 - syst_JES_Gjet_Stat15: 5.98904062162714e-05 - syst_JES_Gjet_Stat2: 1.9484057380330205e-05 - syst_JES_Gjet_Stat3: 3.443422914412343e-05 - syst_JES_Gjet_Stat4: 3.709260404716822e-05 - syst_JES_Gjet_Stat5: 3.608867135265581e-05 - syst_JES_Gjet_Stat6: 3.778786401412496e-05 - syst_JES_Gjet_Stat7: 8.410217402065181e-05 - syst_JES_Gjet_Stat8: 5.518930421739343e-05 - syst_JES_Gjet_Stat9: 0.0003509578807706133 - syst_JES_Gjet_Veto: 0.013950682304102551 - syst_JES_Gjet_dPhi: 0.0014666897038910448 - syst_JES_LArESZee: 0.03892746616465037 - syst_JES_LArEsmear: 0.0027831868424523713 - syst_JES_LAr_JVT: 0.003378658720557612 - syst_JES_MJB_Alpha: 0.0001191516999459093 - syst_JES_MJB_Asym: 0.0013563515796061138 - syst_JES_MJB_Beta: 2.53616265251265e-05 - syst_JES_MJB_Fragmentation: 0.0037280976543003805 - syst_JES_MJB_Stat1: 0.00011085210992579256 - syst_JES_MJB_Stat10: 3.098265321885781e-06 - syst_JES_MJB_Stat11: 2.9739312365957624e-07 - syst_JES_MJB_Stat12: 1.454922678357857e-07 - syst_JES_MJB_Stat13: 1.2427464544306695e-07 + syst_JES_EtaIntercalibration_TotalStat_MJB: 3.63859406e-03 + syst_JES_Flavour_Comp: 1.38624118e-02 + syst_JES_Flavour_Response: 6.73217669e-03 + syst_JES_Gjet_Generator: 2.74101313e-02 + syst_JES_Gjet_OOC: 2.12022829e-02 + syst_JES_Gjet_Purity: 6.52380401e-03 + syst_JES_Gjet_Stat1: 6.08603491e-05 + syst_JES_Gjet_Stat10: 5.77322025e-04 + syst_JES_Gjet_Stat11: 1.05670359e-03 + syst_JES_Gjet_Stat12: 3.27693466e-03 + syst_JES_Gjet_Stat13: 4.13532801e-03 + syst_JES_Gjet_Stat14: 8.20832238e-04 + syst_JES_Gjet_Stat15: 5.98904062e-05 + syst_JES_Gjet_Stat2: 1.94840574e-05 + syst_JES_Gjet_Stat3: 3.44342291e-05 + syst_JES_Gjet_Stat4: 3.70926040e-05 + syst_JES_Gjet_Stat5: 3.60886714e-05 + syst_JES_Gjet_Stat6: 3.77878640e-05 + syst_JES_Gjet_Stat7: 8.41021740e-05 + syst_JES_Gjet_Stat8: 5.51893042e-05 + syst_JES_Gjet_Stat9: 3.50957881e-04 + syst_JES_Gjet_Veto: 1.39506823e-02 + syst_JES_Gjet_dPhi: 1.46668970e-03 + syst_JES_LArESZee: 3.89274662e-02 + syst_JES_LArEsmear: 2.78318684e-03 + syst_JES_LAr_JVT: 3.37865872e-03 + syst_JES_MJB_Alpha: 1.19151700e-04 + syst_JES_MJB_Asym: 1.35635158e-03 + syst_JES_MJB_Beta: 2.53616265e-05 + syst_JES_MJB_Fragmentation: 3.72809765e-03 + syst_JES_MJB_Stat1: 1.10852110e-04 + syst_JES_MJB_Stat10: 3.09826532e-06 + syst_JES_MJB_Stat11: 2.97393124e-07 + syst_JES_MJB_Stat12: 1.45492268e-07 + syst_JES_MJB_Stat13: 1.24274645e-07 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 0.0002715184339966625 - syst_JES_MJB_Stat3: 0.0003102814327348641 - syst_JES_MJB_Stat4: 0.00015446801293067118 - syst_JES_MJB_Stat5: 2.0714968573473628e-05 - syst_JES_MJB_Stat6: 1.8361225449299402e-05 - syst_JES_MJB_Stat7: 1.518726216274678e-06 - syst_JES_MJB_Stat8: 3.1952532802267804e-06 - syst_JES_MJB_Stat9: 3.1952532802267804e-06 - syst_JES_MJB_Threshold: 0.0015014616212211355 - syst_JES_Pileup_MuOffset: 0.00343133221212986 - syst_JES_Pileup_NPVOffset: 0.003936221887800534 - syst_JES_Pileup_Pt_term: 0.012192717006475626 - syst_JES_Pileup_Rho_topology: 0.007804826583595563 - syst_JES_PunchThrough_MC15: 0.0003580718782591004 + syst_JES_MJB_Stat2: 2.71518434e-04 + syst_JES_MJB_Stat3: 3.10281433e-04 + syst_JES_MJB_Stat4: 1.54468013e-04 + syst_JES_MJB_Stat5: 2.07149686e-05 + syst_JES_MJB_Stat6: 1.83612254e-05 + syst_JES_MJB_Stat7: 1.51872622e-06 + syst_JES_MJB_Stat8: 3.19525328e-06 + syst_JES_MJB_Stat9: 3.19525328e-06 + syst_JES_MJB_Threshold: 1.50146162e-03 + syst_JES_Pileup_MuOffset: 3.43133221e-03 + syst_JES_Pileup_NPVOffset: 3.93622189e-03 + syst_JES_Pileup_Pt_term: 1.21927170e-02 + syst_JES_Pileup_Rho_topology: 7.80482658e-03 + syst_JES_PunchThrough_MC15: 3.58071878e-04 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.02150011627875533 - syst_JES_Zjet_MuScale: 0.0010345585387014115 - syst_JES_Zjet_MuSmearID: 0.00020873664765680227 - syst_JES_Zjet_MuSmearMS: 0.005136023559135998 - syst_JES_Zjet_OOC: 0.008179042181086978 - syst_JES_Zjet_Stat1: 0.00013455988406653745 - syst_JES_Zjet_Stat10: 0.00047373090462835547 - syst_JES_Zjet_Stat11: 0.0004843277067234539 - syst_JES_Zjet_Stat12: 0.0051157468662943045 - syst_JES_Zjet_Stat13: 0.004716448982020265 - syst_JES_Zjet_Stat2: 3.7290965393778693e-06 - syst_JES_Zjet_Stat3: 2.501025517022967e-05 - syst_JES_Zjet_Stat4: 2.5098507961779324e-05 - syst_JES_Zjet_Stat5: 4.1616333331998386e-05 - syst_JES_Zjet_Stat6: 3.0099200986072706e-05 - syst_JES_Zjet_Stat7: 2.0005386517323277e-05 - syst_JES_Zjet_Stat8: 5.064300346543439e-05 - syst_JES_Zjet_Stat9: 0.00025903680723016946 - syst_JES_Zjet_Veto: 0.0015356652849823754 - syst_JES_Zjet_dPhi: 0.0011019177408046392 + syst_JES_Zjet_MC: 2.15001163e-02 + syst_JES_Zjet_MuScale: 1.03455854e-03 + syst_JES_Zjet_MuSmearID: 2.08736648e-04 + syst_JES_Zjet_MuSmearMS: 5.13602356e-03 + syst_JES_Zjet_OOC: 8.17904218e-03 + syst_JES_Zjet_Stat1: 1.34559884e-04 + syst_JES_Zjet_Stat10: 4.73730905e-04 + syst_JES_Zjet_Stat11: 4.84327707e-04 + syst_JES_Zjet_Stat12: 5.11574687e-03 + syst_JES_Zjet_Stat13: 4.71644898e-03 + syst_JES_Zjet_Stat2: 3.72909654e-06 + syst_JES_Zjet_Stat3: 2.50102552e-05 + syst_JES_Zjet_Stat4: 2.50985080e-05 + syst_JES_Zjet_Stat5: 4.16163333e-05 + syst_JES_Zjet_Stat6: 3.00992010e-05 + syst_JES_Zjet_Stat7: 2.00053865e-05 + syst_JES_Zjet_Stat8: 5.06430035e-05 + syst_JES_Zjet_Stat9: 2.59036807e-04 + syst_JES_Zjet_Veto: 1.53566528e-03 + syst_JES_Zjet_dPhi: 1.10191774e-03 syst_PRW: 0.0 syst_Unfolding_bias: 0.003104 - syst_cleaning: 0.004589934640057525 + syst_cleaning: 4.58993464e-03 syst_lumi: 0.01721 - stat: 0.011235 - syst_JER_CROSS_CALIB_FORWARD: 5.303e-06 + syst_JER_CROSS_CALIB_FORWARD: 5.30300000e-06 syst_JER_NOISE_FORWARD: 0.00157 - syst_JER_NP0: 0.0017309693093755301 - syst_JER_NP1: 0.005867237169230506 - syst_JER_NP2: 0.0004195655642447316 - syst_JER_NP3: 0.0007552624229365579 - syst_JER_NP4: 0.0006829571216408831 - syst_JER_NP5: 2.6030003841720805e-05 - syst_JER_NP6: 1.906510621528241e-05 - syst_JER_NP7: 2.1014909866877107e-08 - syst_JER_NP8: 0.0006159432831641239 - syst_JES_EtaIntercalibration_Modelling: 0.022505889784676367 - syst_JES_EtaIntercalibration_NonClosure: 0.0036178740649724112 + syst_JER_NP0: 1.73096931e-03 + syst_JER_NP1: 5.86723717e-03 + syst_JER_NP2: 4.19565564e-04 + syst_JER_NP3: 7.55262423e-04 + syst_JER_NP4: 6.82957122e-04 + syst_JER_NP5: 2.60300038e-05 + syst_JER_NP6: 1.90651062e-05 + syst_JER_NP7: 2.10149099e-08 + syst_JER_NP8: 6.15943283e-04 + syst_JES_EtaIntercalibration_Modelling: 2.25058898e-02 + syst_JES_EtaIntercalibration_NonClosure: 3.61787406e-03 syst_JES_EtaIntercalibration_Stat0: 0.0 - syst_JES_EtaIntercalibration_Stat1: 5.4680843994949455e-15 + syst_JES_EtaIntercalibration_Stat1: 5.46808440e-15 syst_JES_EtaIntercalibration_Stat10: 0.0 syst_JES_EtaIntercalibration_Stat100: 0.0 syst_JES_EtaIntercalibration_Stat101: 0.0 syst_JES_EtaIntercalibration_Stat102: 0.0 - syst_JES_EtaIntercalibration_Stat103: 5.730173034036581e-14 - syst_JES_EtaIntercalibration_Stat104: 2.342924885323631e-07 - syst_JES_EtaIntercalibration_Stat105: 1.0706708270985998e-06 - syst_JES_EtaIntercalibration_Stat106: 6.847515292973066e-07 - syst_JES_EtaIntercalibration_Stat107: 1.5803421243515594e-11 - syst_JES_EtaIntercalibration_Stat108: 1.0709724831549129e-07 - syst_JES_EtaIntercalibration_Stat109: 7.842457953346005e-06 + syst_JES_EtaIntercalibration_Stat103: 5.73017303e-14 + syst_JES_EtaIntercalibration_Stat104: 2.34292489e-07 + syst_JES_EtaIntercalibration_Stat105: 1.07067083e-06 + syst_JES_EtaIntercalibration_Stat106: 6.84751529e-07 + syst_JES_EtaIntercalibration_Stat107: 1.58034212e-11 + syst_JES_EtaIntercalibration_Stat108: 1.07097248e-07 + syst_JES_EtaIntercalibration_Stat109: 7.84245795e-06 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 2.4857887520865485e-05 - syst_JES_EtaIntercalibration_Stat111: 1.5353274145927313e-06 - syst_JES_EtaIntercalibration_Stat112: 3.947307127182866e-07 + syst_JES_EtaIntercalibration_Stat110: 2.48578875e-05 + syst_JES_EtaIntercalibration_Stat111: 1.53532741e-06 + syst_JES_EtaIntercalibration_Stat112: 3.94730713e-07 syst_JES_EtaIntercalibration_Stat113: 0.0 syst_JES_EtaIntercalibration_Stat114: 0.0 syst_JES_EtaIntercalibration_Stat115: 0.0 syst_JES_EtaIntercalibration_Stat116: 0.0 syst_JES_EtaIntercalibration_Stat117: 0.0 - syst_JES_EtaIntercalibration_Stat118: 3.9300232823737824e-14 - syst_JES_EtaIntercalibration_Stat119: 3.9300232823737824e-14 + syst_JES_EtaIntercalibration_Stat118: 3.93002328e-14 + syst_JES_EtaIntercalibration_Stat119: 3.93002328e-14 syst_JES_EtaIntercalibration_Stat12: 0.0 syst_JES_EtaIntercalibration_Stat120: 0.0 syst_JES_EtaIntercalibration_Stat121: 0.0 syst_JES_EtaIntercalibration_Stat122: 0.0 - syst_JES_EtaIntercalibration_Stat123: 3.58026597197401e-10 - syst_JES_EtaIntercalibration_Stat124: 8.162485206724726e-06 - syst_JES_EtaIntercalibration_Stat125: 1.1811971924704188e-05 - syst_JES_EtaIntercalibration_Stat126: 1.1459540861221273e-05 - syst_JES_EtaIntercalibration_Stat127: 2.272731121360378e-07 - syst_JES_EtaIntercalibration_Stat128: 4.500621160462187e-05 - syst_JES_EtaIntercalibration_Stat129: 0.0001311128075361061 + syst_JES_EtaIntercalibration_Stat123: 3.58026597e-10 + syst_JES_EtaIntercalibration_Stat124: 8.16248521e-06 + syst_JES_EtaIntercalibration_Stat125: 1.18119719e-05 + syst_JES_EtaIntercalibration_Stat126: 1.14595409e-05 + syst_JES_EtaIntercalibration_Stat127: 2.27273112e-07 + syst_JES_EtaIntercalibration_Stat128: 4.50062116e-05 + syst_JES_EtaIntercalibration_Stat129: 1.31112808e-04 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 1.254598230510469e-05 - syst_JES_EtaIntercalibration_Stat131: 4.1016667572463757e-07 + syst_JES_EtaIntercalibration_Stat130: 1.25459823e-05 + syst_JES_EtaIntercalibration_Stat131: 4.10166676e-07 syst_JES_EtaIntercalibration_Stat132: 0.0 syst_JES_EtaIntercalibration_Stat133: 0.0 syst_JES_EtaIntercalibration_Stat134: 0.0 syst_JES_EtaIntercalibration_Stat135: 0.0 syst_JES_EtaIntercalibration_Stat136: 0.0 - syst_JES_EtaIntercalibration_Stat137: 3.9300232823737824e-14 - syst_JES_EtaIntercalibration_Stat138: 3.9300232823737824e-14 - syst_JES_EtaIntercalibration_Stat139: 1.932968701246867e-13 + syst_JES_EtaIntercalibration_Stat137: 3.93002328e-14 + syst_JES_EtaIntercalibration_Stat138: 3.93002328e-14 + syst_JES_EtaIntercalibration_Stat139: 1.93296870e-13 syst_JES_EtaIntercalibration_Stat14: 0.0 syst_JES_EtaIntercalibration_Stat140: 0.0 syst_JES_EtaIntercalibration_Stat141: 0.0 - syst_JES_EtaIntercalibration_Stat142: 2.3957586107195254e-07 - syst_JES_EtaIntercalibration_Stat143: 1.134657908798947e-05 - syst_JES_EtaIntercalibration_Stat144: 0.00010245404665019337 - syst_JES_EtaIntercalibration_Stat145: 6.197710121488419e-05 - syst_JES_EtaIntercalibration_Stat146: 0.0002454120361758975 - syst_JES_EtaIntercalibration_Stat147: 0.00026626228999803933 - syst_JES_EtaIntercalibration_Stat148: 1.4466053573798211e-05 - syst_JES_EtaIntercalibration_Stat149: 4.810143331284422e-07 + syst_JES_EtaIntercalibration_Stat142: 2.39575861e-07 + syst_JES_EtaIntercalibration_Stat143: 1.13465791e-05 + syst_JES_EtaIntercalibration_Stat144: 1.02454047e-04 + syst_JES_EtaIntercalibration_Stat145: 6.19771012e-05 + syst_JES_EtaIntercalibration_Stat146: 2.45412036e-04 + syst_JES_EtaIntercalibration_Stat147: 2.66262290e-04 + syst_JES_EtaIntercalibration_Stat148: 1.44660536e-05 + syst_JES_EtaIntercalibration_Stat149: 4.81014333e-07 syst_JES_EtaIntercalibration_Stat15: 0.0 syst_JES_EtaIntercalibration_Stat150: 0.0 syst_JES_EtaIntercalibration_Stat151: 0.0 @@ -58042,60 +58042,60 @@ bins: syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 3.9300232823737824e-14 - syst_JES_EtaIntercalibration_Stat157: 1.932968701246867e-13 + syst_JES_EtaIntercalibration_Stat156: 3.93002328e-14 + syst_JES_EtaIntercalibration_Stat157: 1.93296870e-13 syst_JES_EtaIntercalibration_Stat158: 0.0 syst_JES_EtaIntercalibration_Stat159: 0.0 - syst_JES_EtaIntercalibration_Stat16: 1.7069360708591284e-16 - syst_JES_EtaIntercalibration_Stat160: 2.4225914609708234e-07 - syst_JES_EtaIntercalibration_Stat161: 2.296022144383629e-05 - syst_JES_EtaIntercalibration_Stat162: 0.0001228713256826018 - syst_JES_EtaIntercalibration_Stat163: 0.00014013619045414357 - syst_JES_EtaIntercalibration_Stat164: 0.0008346432703107357 - syst_JES_EtaIntercalibration_Stat165: 0.000468638912170127 - syst_JES_EtaIntercalibration_Stat166: 3.521556732469321e-05 - syst_JES_EtaIntercalibration_Stat167: 5.094335213499401e-07 + syst_JES_EtaIntercalibration_Stat16: 1.70693607e-16 + syst_JES_EtaIntercalibration_Stat160: 2.42259146e-07 + syst_JES_EtaIntercalibration_Stat161: 2.29602214e-05 + syst_JES_EtaIntercalibration_Stat162: 1.22871326e-04 + syst_JES_EtaIntercalibration_Stat163: 1.40136190e-04 + syst_JES_EtaIntercalibration_Stat164: 8.34643270e-04 + syst_JES_EtaIntercalibration_Stat165: 4.68638912e-04 + syst_JES_EtaIntercalibration_Stat166: 3.52155673e-05 + syst_JES_EtaIntercalibration_Stat167: 5.09433521e-07 syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 - syst_JES_EtaIntercalibration_Stat17: 1.0747172046636267e-15 + syst_JES_EtaIntercalibration_Stat17: 1.07471720e-15 syst_JES_EtaIntercalibration_Stat170: 0.0 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 - syst_JES_EtaIntercalibration_Stat174: 1.932968701246867e-13 - syst_JES_EtaIntercalibration_Stat175: 1.932968701246867e-13 + syst_JES_EtaIntercalibration_Stat174: 1.93296870e-13 + syst_JES_EtaIntercalibration_Stat175: 1.93296870e-13 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 - syst_JES_EtaIntercalibration_Stat178: 7.636891821120685e-06 - syst_JES_EtaIntercalibration_Stat179: 4.332397950327279e-05 - syst_JES_EtaIntercalibration_Stat18: 7.226504185980936e-14 - syst_JES_EtaIntercalibration_Stat180: 0.0006013386649800593 - syst_JES_EtaIntercalibration_Stat181: 0.0007674426818987851 - syst_JES_EtaIntercalibration_Stat182: 0.0037071124544583215 - syst_JES_EtaIntercalibration_Stat183: 0.0005119820382591561 - syst_JES_EtaIntercalibration_Stat184: 6.35431810839684e-06 + syst_JES_EtaIntercalibration_Stat178: 7.63689182e-06 + syst_JES_EtaIntercalibration_Stat179: 4.33239795e-05 + syst_JES_EtaIntercalibration_Stat18: 7.22650419e-14 + syst_JES_EtaIntercalibration_Stat180: 6.01338665e-04 + syst_JES_EtaIntercalibration_Stat181: 7.67442682e-04 + syst_JES_EtaIntercalibration_Stat182: 3.70711245e-03 + syst_JES_EtaIntercalibration_Stat183: 5.11982038e-04 + syst_JES_EtaIntercalibration_Stat184: 6.35431811e-06 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 syst_JES_EtaIntercalibration_Stat187: 0.0 - syst_JES_EtaIntercalibration_Stat188: 6.991423084751773e-11 + syst_JES_EtaIntercalibration_Stat188: 6.99142308e-11 syst_JES_EtaIntercalibration_Stat189: 0.0 - syst_JES_EtaIntercalibration_Stat19: 4.966164664003803e-14 + syst_JES_EtaIntercalibration_Stat19: 4.96616466e-14 syst_JES_EtaIntercalibration_Stat190: 0.0 - syst_JES_EtaIntercalibration_Stat191: 1.932968701246867e-13 - syst_JES_EtaIntercalibration_Stat192: 1.932968701246867e-13 + syst_JES_EtaIntercalibration_Stat191: 1.93296870e-13 + syst_JES_EtaIntercalibration_Stat192: 1.93296870e-13 syst_JES_EtaIntercalibration_Stat193: 0.0 syst_JES_EtaIntercalibration_Stat194: 0.0 - syst_JES_EtaIntercalibration_Stat195: 3.227518551457141e-06 - syst_JES_EtaIntercalibration_Stat196: 0.00023282381214128424 - syst_JES_EtaIntercalibration_Stat197: 0.003053598860361328 - syst_JES_EtaIntercalibration_Stat198: 0.0005815630898707379 - syst_JES_EtaIntercalibration_Stat199: 7.2965185713941685e-06 - syst_JES_EtaIntercalibration_Stat2: 2.1834059384079269e-13 + syst_JES_EtaIntercalibration_Stat195: 3.22751855e-06 + syst_JES_EtaIntercalibration_Stat196: 2.32823812e-04 + syst_JES_EtaIntercalibration_Stat197: 3.05359886e-03 + syst_JES_EtaIntercalibration_Stat198: 5.81563090e-04 + syst_JES_EtaIntercalibration_Stat199: 7.29651857e-06 + syst_JES_EtaIntercalibration_Stat2: 2.18340594e-13 syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 syst_JES_EtaIntercalibration_Stat201: 0.0 syst_JES_EtaIntercalibration_Stat202: 0.0 - syst_JES_EtaIntercalibration_Stat203: 6.991423084751773e-11 + syst_JES_EtaIntercalibration_Stat203: 6.99142308e-11 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 @@ -58103,9 +58103,9 @@ bins: syst_JES_EtaIntercalibration_Stat208: 0.0 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 2.8943232162286226e-06 - syst_JES_EtaIntercalibration_Stat211: 0.00038550746750225213 - syst_JES_EtaIntercalibration_Stat212: 3.462196359249429e-06 + syst_JES_EtaIntercalibration_Stat210: 2.89432322e-06 + syst_JES_EtaIntercalibration_Stat211: 3.85507468e-04 + syst_JES_EtaIntercalibration_Stat212: 3.46219636e-06 syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 syst_JES_EtaIntercalibration_Stat215: 0.0 @@ -58117,37 +58117,37 @@ bins: syst_JES_EtaIntercalibration_Stat220: 0.0 syst_JES_EtaIntercalibration_Stat221: 0.0 syst_JES_EtaIntercalibration_Stat222: 0.0 - syst_JES_EtaIntercalibration_Stat223: 9.80254154543606e-07 - syst_JES_EtaIntercalibration_Stat224: 3.4641016151377547e-06 + syst_JES_EtaIntercalibration_Stat223: 9.80254155e-07 + syst_JES_EtaIntercalibration_Stat224: 3.46410162e-06 syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 syst_JES_EtaIntercalibration_Stat227: 0.0 syst_JES_EtaIntercalibration_Stat228: 0.0 syst_JES_EtaIntercalibration_Stat229: 0.0 - syst_JES_EtaIntercalibration_Stat23: 1.7310934290427538e-13 + syst_JES_EtaIntercalibration_Stat23: 1.73109343e-13 syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 syst_JES_EtaIntercalibration_Stat232: 0.0 syst_JES_EtaIntercalibration_Stat233: 0.0 syst_JES_EtaIntercalibration_Stat234: 0.0 - syst_JES_EtaIntercalibration_Stat235: 3.041481218090949e-05 + syst_JES_EtaIntercalibration_Stat235: 3.04148122e-05 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 syst_JES_EtaIntercalibration_Stat239: 0.0 - syst_JES_EtaIntercalibration_Stat24: 9.276068563782828e-11 + syst_JES_EtaIntercalibration_Stat24: 9.27606856e-11 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 syst_JES_EtaIntercalibration_Stat243: 0.0 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 - syst_JES_EtaIntercalibration_Stat25: 4.150657813664609e-07 - syst_JES_EtaIntercalibration_Stat26: 3.1359014983733144e-13 + syst_JES_EtaIntercalibration_Stat25: 4.15065781e-07 + syst_JES_EtaIntercalibration_Stat26: 3.13590150e-13 syst_JES_EtaIntercalibration_Stat27: 0.0 syst_JES_EtaIntercalibration_Stat28: 0.0 syst_JES_EtaIntercalibration_Stat29: 0.0 - syst_JES_EtaIntercalibration_Stat3: 2.7716630725071906e-13 + syst_JES_EtaIntercalibration_Stat3: 2.77166307e-13 syst_JES_EtaIntercalibration_Stat30: 0.0 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 @@ -58156,19 +58156,19 @@ bins: syst_JES_EtaIntercalibration_Stat35: 0.0 syst_JES_EtaIntercalibration_Stat36: 0.0 syst_JES_EtaIntercalibration_Stat37: 0.0 - syst_JES_EtaIntercalibration_Stat38: 1.7069360708591284e-16 - syst_JES_EtaIntercalibration_Stat39: 1.1735780875169746e-13 + syst_JES_EtaIntercalibration_Stat38: 1.70693607e-16 + syst_JES_EtaIntercalibration_Stat39: 1.17357809e-13 syst_JES_EtaIntercalibration_Stat4: 0.0 - syst_JES_EtaIntercalibration_Stat40: 6.718551983128506e-11 - syst_JES_EtaIntercalibration_Stat41: 1.0898811620997952e-11 - syst_JES_EtaIntercalibration_Stat42: 6.127129731774903e-15 + syst_JES_EtaIntercalibration_Stat40: 6.71855198e-11 + syst_JES_EtaIntercalibration_Stat41: 1.08988116e-11 + syst_JES_EtaIntercalibration_Stat42: 6.12712973e-15 syst_JES_EtaIntercalibration_Stat43: 0.0 - syst_JES_EtaIntercalibration_Stat44: 1.4497265259351504e-14 - syst_JES_EtaIntercalibration_Stat45: 9.929057696982126e-13 - syst_JES_EtaIntercalibration_Stat46: 1.0062792015731766e-07 - syst_JES_EtaIntercalibration_Stat47: 4.1236872736302394e-07 - syst_JES_EtaIntercalibration_Stat48: 4.557932648690632e-11 - syst_JES_EtaIntercalibration_Stat49: 1.051441442734687e-14 + syst_JES_EtaIntercalibration_Stat44: 1.44972653e-14 + syst_JES_EtaIntercalibration_Stat45: 9.92905770e-13 + syst_JES_EtaIntercalibration_Stat46: 1.00627920e-07 + syst_JES_EtaIntercalibration_Stat47: 4.12368727e-07 + syst_JES_EtaIntercalibration_Stat48: 4.55793265e-11 + syst_JES_EtaIntercalibration_Stat49: 1.05144144e-14 syst_JES_EtaIntercalibration_Stat5: 0.0 syst_JES_EtaIntercalibration_Stat50: 0.0 syst_JES_EtaIntercalibration_Stat51: 0.0 @@ -58179,21 +58179,21 @@ bins: syst_JES_EtaIntercalibration_Stat56: 0.0 syst_JES_EtaIntercalibration_Stat57: 0.0 syst_JES_EtaIntercalibration_Stat58: 0.0 - syst_JES_EtaIntercalibration_Stat59: 1.7069360708591284e-16 + syst_JES_EtaIntercalibration_Stat59: 1.70693607e-16 syst_JES_EtaIntercalibration_Stat6: 0.0 - syst_JES_EtaIntercalibration_Stat60: 8.663807996487457e-16 - syst_JES_EtaIntercalibration_Stat61: 3.8820443415808635e-11 - syst_JES_EtaIntercalibration_Stat62: 3.747399731814048e-07 - syst_JES_EtaIntercalibration_Stat63: 2.3813597350043526e-10 - syst_JES_EtaIntercalibration_Stat64: 7.812037058283838e-14 + syst_JES_EtaIntercalibration_Stat60: 8.66380800e-16 + syst_JES_EtaIntercalibration_Stat61: 3.88204434e-11 + syst_JES_EtaIntercalibration_Stat62: 3.74739973e-07 + syst_JES_EtaIntercalibration_Stat63: 2.38135974e-10 + syst_JES_EtaIntercalibration_Stat64: 7.81203706e-14 syst_JES_EtaIntercalibration_Stat65: 0.0 - syst_JES_EtaIntercalibration_Stat66: 1.4497265259351504e-14 - syst_JES_EtaIntercalibration_Stat67: 1.130868050437362e-10 - syst_JES_EtaIntercalibration_Stat68: 1.0297826298787527e-06 - syst_JES_EtaIntercalibration_Stat69: 1.0401742963080754e-06 + syst_JES_EtaIntercalibration_Stat66: 1.44972653e-14 + syst_JES_EtaIntercalibration_Stat67: 1.13086805e-10 + syst_JES_EtaIntercalibration_Stat68: 1.02978263e-06 + syst_JES_EtaIntercalibration_Stat69: 1.04017430e-06 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 4.1424032382432303e-07 - syst_JES_EtaIntercalibration_Stat71: 2.530639179970151e-13 + syst_JES_EtaIntercalibration_Stat70: 4.14240324e-07 + syst_JES_EtaIntercalibration_Stat71: 2.53063918e-13 syst_JES_EtaIntercalibration_Stat72: 0.0 syst_JES_EtaIntercalibration_Stat73: 0.0 syst_JES_EtaIntercalibration_Stat74: 0.0 @@ -58204,19 +58204,19 @@ bins: syst_JES_EtaIntercalibration_Stat79: 0.0 syst_JES_EtaIntercalibration_Stat8: 0.0 syst_JES_EtaIntercalibration_Stat80: 0.0 - syst_JES_EtaIntercalibration_Stat81: 1.7069360708591284e-16 - syst_JES_EtaIntercalibration_Stat82: 2.08293080778023e-14 - syst_JES_EtaIntercalibration_Stat83: 5.009997080837472e-10 - syst_JES_EtaIntercalibration_Stat84: 1.195477241439585e-06 - syst_JES_EtaIntercalibration_Stat85: 6.842089812330733e-07 - syst_JES_EtaIntercalibration_Stat86: 1.0187048186300092e-11 + syst_JES_EtaIntercalibration_Stat81: 1.70693607e-16 + syst_JES_EtaIntercalibration_Stat82: 2.08293081e-14 + syst_JES_EtaIntercalibration_Stat83: 5.00999708e-10 + syst_JES_EtaIntercalibration_Stat84: 1.19547724e-06 + syst_JES_EtaIntercalibration_Stat85: 6.84208981e-07 + syst_JES_EtaIntercalibration_Stat86: 1.01870482e-11 syst_JES_EtaIntercalibration_Stat87: 0.0 - syst_JES_EtaIntercalibration_Stat88: 3.500041566538889e-10 - syst_JES_EtaIntercalibration_Stat89: 2.1771239813111241e-07 + syst_JES_EtaIntercalibration_Stat88: 3.50004157e-10 + syst_JES_EtaIntercalibration_Stat89: 2.17712398e-07 syst_JES_EtaIntercalibration_Stat9: 0.0 - syst_JES_EtaIntercalibration_Stat90: 6.743972855075856e-07 - syst_JES_EtaIntercalibration_Stat91: 4.1959175147636065e-07 - syst_JES_EtaIntercalibration_Stat92: 2.88565418677897e-13 + syst_JES_EtaIntercalibration_Stat90: 6.74397286e-07 + syst_JES_EtaIntercalibration_Stat91: 4.19591751e-07 + syst_JES_EtaIntercalibration_Stat92: 2.88565419e-13 syst_JES_EtaIntercalibration_Stat93: 0.0 syst_JES_EtaIntercalibration_Stat94: 0.0 syst_JES_EtaIntercalibration_Stat95: 0.0 @@ -58224,154 +58224,154 @@ bins: syst_JES_EtaIntercalibration_Stat97: 0.0 syst_JES_EtaIntercalibration_Stat98: 0.0 syst_JES_EtaIntercalibration_Stat99: 0.0 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0019193167404052934 - syst_JES_Flavour_Comp: 0.007722182852017945 - syst_JES_Flavour_Response: 0.0018422770557112195 - syst_JES_Gjet_Generator: 0.013209675885501506 - syst_JES_Gjet_OOC: 0.010402184962785463 - syst_JES_Gjet_Purity: 0.0028439133249802107 - syst_JES_Gjet_Stat1: 3.2362374372100695e-05 - syst_JES_Gjet_Stat10: 0.0001265926327832706 - syst_JES_Gjet_Stat11: 0.0002643043524045716 - syst_JES_Gjet_Stat12: 0.0013641175462547207 - syst_JES_Gjet_Stat13: 0.002210944764122343 - syst_JES_Gjet_Stat14: 0.0008141816550991553 - syst_JES_Gjet_Stat15: 0.00010704010510084527 - syst_JES_Gjet_Stat2: 9.379117055992e-06 - syst_JES_Gjet_Stat3: 1.6099759897277972e-05 - syst_JES_Gjet_Stat4: 1.6655167388831612e-05 - syst_JES_Gjet_Stat5: 1.592712742461741e-05 - syst_JES_Gjet_Stat6: 1.7568217802327018e-05 - syst_JES_Gjet_Stat7: 5.870910661899055e-05 - syst_JES_Gjet_Stat8: 1.4704147216601851e-05 - syst_JES_Gjet_Stat9: 0.0001231107577549582 - syst_JES_Gjet_Veto: 0.0075273778302938936 - syst_JES_Gjet_dPhi: 0.0005775407431515112 - syst_JES_LArESZee: 0.018881304907235625 - syst_JES_LArEsmear: 0.0012736811090300428 - syst_JES_LAr_JVT: 0.0014822903730376178 - syst_JES_MJB_Alpha: 2.3736339624086942e-05 - syst_JES_MJB_Asym: 0.000645238349371765 - syst_JES_MJB_Beta: 3.518384004056408e-05 - syst_JES_MJB_Fragmentation: 0.0016823830568571474 - syst_JES_MJB_Stat1: 3.4470823532373e-05 - syst_JES_MJB_Stat10: 2.3603271504602918e-06 - syst_JES_MJB_Stat11: 3.875463681935363e-06 - syst_JES_MJB_Stat12: 6.619898186528249e-07 - syst_JES_MJB_Stat13: 1.4081573065534972e-07 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.91931674e-03 + syst_JES_Flavour_Comp: 7.72218285e-03 + syst_JES_Flavour_Response: 1.84227706e-03 + syst_JES_Gjet_Generator: 1.32096759e-02 + syst_JES_Gjet_OOC: 1.04021850e-02 + syst_JES_Gjet_Purity: 2.84391332e-03 + syst_JES_Gjet_Stat1: 3.23623744e-05 + syst_JES_Gjet_Stat10: 1.26592633e-04 + syst_JES_Gjet_Stat11: 2.64304352e-04 + syst_JES_Gjet_Stat12: 1.36411755e-03 + syst_JES_Gjet_Stat13: 2.21094476e-03 + syst_JES_Gjet_Stat14: 8.14181655e-04 + syst_JES_Gjet_Stat15: 1.07040105e-04 + syst_JES_Gjet_Stat2: 9.37911706e-06 + syst_JES_Gjet_Stat3: 1.60997599e-05 + syst_JES_Gjet_Stat4: 1.66551674e-05 + syst_JES_Gjet_Stat5: 1.59271274e-05 + syst_JES_Gjet_Stat6: 1.75682178e-05 + syst_JES_Gjet_Stat7: 5.87091066e-05 + syst_JES_Gjet_Stat8: 1.47041472e-05 + syst_JES_Gjet_Stat9: 1.23110758e-04 + syst_JES_Gjet_Veto: 7.52737783e-03 + syst_JES_Gjet_dPhi: 5.77540743e-04 + syst_JES_LArESZee: 1.88813049e-02 + syst_JES_LArEsmear: 1.27368111e-03 + syst_JES_LAr_JVT: 1.48229037e-03 + syst_JES_MJB_Alpha: 2.37363396e-05 + syst_JES_MJB_Asym: 6.45238349e-04 + syst_JES_MJB_Beta: 3.51838400e-05 + syst_JES_MJB_Fragmentation: 1.68238306e-03 + syst_JES_MJB_Stat1: 3.44708235e-05 + syst_JES_MJB_Stat10: 2.36032715e-06 + syst_JES_MJB_Stat11: 3.87546368e-06 + syst_JES_MJB_Stat12: 6.61989819e-07 + syst_JES_MJB_Stat13: 1.40815731e-07 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 0.00011174442536431069 - syst_JES_MJB_Stat3: 0.000124352892507573 - syst_JES_MJB_Stat4: 6.017470786592986e-05 - syst_JES_MJB_Stat5: 1.0553560347105615e-05 - syst_JES_MJB_Stat6: 2.2545658384709017e-05 - syst_JES_MJB_Stat7: 1.5524941610196156e-06 - syst_JES_MJB_Stat8: 2.5169559843588843e-06 - syst_JES_MJB_Stat9: 2.5160905900225454e-06 - syst_JES_MJB_Threshold: 0.0006955464686129892 - syst_JES_Pileup_MuOffset: 0.0018320938840572555 - syst_JES_Pileup_NPVOffset: 0.0020918773267091934 - syst_JES_Pileup_Pt_term: 0.0058957690550088555 - syst_JES_Pileup_Rho_topology: 0.003503772359900112 - syst_JES_PunchThrough_MC15: 0.00016757507175889857 + syst_JES_MJB_Stat2: 1.11744425e-04 + syst_JES_MJB_Stat3: 1.24352893e-04 + syst_JES_MJB_Stat4: 6.01747079e-05 + syst_JES_MJB_Stat5: 1.05535603e-05 + syst_JES_MJB_Stat6: 2.25456584e-05 + syst_JES_MJB_Stat7: 1.55249416e-06 + syst_JES_MJB_Stat8: 2.51695598e-06 + syst_JES_MJB_Stat9: 2.51609059e-06 + syst_JES_MJB_Threshold: 6.95546469e-04 + syst_JES_Pileup_MuOffset: 1.83209388e-03 + syst_JES_Pileup_NPVOffset: 2.09187733e-03 + syst_JES_Pileup_Pt_term: 5.89576906e-03 + syst_JES_Pileup_Rho_topology: 3.50377236e-03 + syst_JES_PunchThrough_MC15: 1.67575072e-04 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.00961287442703794 - syst_JES_Zjet_MuScale: 0.0003404318874606196 - syst_JES_Zjet_MuSmearID: 7.569313778011849e-05 - syst_JES_Zjet_MuSmearMS: 0.0024415431083640526 - syst_JES_Zjet_OOC: 0.0035125264411816175 - syst_JES_Zjet_Stat1: 4.435301828229957e-05 - syst_JES_Zjet_Stat10: 0.00010336012577391728 - syst_JES_Zjet_Stat11: 0.00011451048772929056 - syst_JES_Zjet_Stat12: 0.0018050248613246302 - syst_JES_Zjet_Stat13: 0.002218919275232878 - syst_JES_Zjet_Stat2: 9.782722972158621e-07 - syst_JES_Zjet_Stat3: 1.3907000647156093e-05 - syst_JES_Zjet_Stat4: 1.3915432979250054e-05 - syst_JES_Zjet_Stat5: 1.2317291005736609e-05 - syst_JES_Zjet_Stat6: 4.61114671204463e-05 - syst_JES_Zjet_Stat7: 8.411238434380515e-06 - syst_JES_Zjet_Stat8: 1.4643002276428832e-05 - syst_JES_Zjet_Stat9: 0.00010443798303299428 - syst_JES_Zjet_Veto: 0.0006063424857289814 - syst_JES_Zjet_dPhi: 0.00040037328519770143 + syst_JES_Zjet_MC: 9.61287443e-03 + syst_JES_Zjet_MuScale: 3.40431887e-04 + syst_JES_Zjet_MuSmearID: 7.56931378e-05 + syst_JES_Zjet_MuSmearMS: 2.44154311e-03 + syst_JES_Zjet_OOC: 3.51252644e-03 + syst_JES_Zjet_Stat1: 4.43530183e-05 + syst_JES_Zjet_Stat10: 1.03360126e-04 + syst_JES_Zjet_Stat11: 1.14510488e-04 + syst_JES_Zjet_Stat12: 1.80502486e-03 + syst_JES_Zjet_Stat13: 2.21891928e-03 + syst_JES_Zjet_Stat2: 9.78272297e-07 + syst_JES_Zjet_Stat3: 1.39070006e-05 + syst_JES_Zjet_Stat4: 1.39154330e-05 + syst_JES_Zjet_Stat5: 1.23172910e-05 + syst_JES_Zjet_Stat6: 4.61114671e-05 + syst_JES_Zjet_Stat7: 8.41123843e-06 + syst_JES_Zjet_Stat8: 1.46430023e-05 + syst_JES_Zjet_Stat9: 1.04437983e-04 + syst_JES_Zjet_Veto: 6.06342486e-04 + syst_JES_Zjet_dPhi: 4.00373285e-04 syst_PRW: 0.0 syst_Unfolding_bias: 0.001484 - syst_cleaning: 0.002074996867467515 + syst_cleaning: 2.07499687e-03 syst_lumi: 0.007872 - stat: 0.003887 - syst_JER_CROSS_CALIB_FORWARD: 1.069e-06 - syst_JER_NOISE_FORWARD: 0.00038085 - syst_JER_NP0: 0.0006021501037947267 - syst_JER_NP1: 0.0029898459826552936 - syst_JER_NP2: 0.0001624749576857923 - syst_JER_NP3: 0.00018176387842472997 - syst_JER_NP4: 0.0001700544650251795 - syst_JER_NP5: 2.7375570770305414e-06 - syst_JER_NP6: 2.007071747596483e-06 - syst_JER_NP7: 1.7152735695809306e-09 - syst_JER_NP8: 0.00015864973453728185 - syst_JES_EtaIntercalibration_Modelling: 0.009635555925840502 - syst_JES_EtaIntercalibration_NonClosure: 0.0009135860920022809 + syst_JER_CROSS_CALIB_FORWARD: 1.06900000e-06 + syst_JER_NOISE_FORWARD: 3.80850000e-04 + syst_JER_NP0: 6.02150104e-04 + syst_JER_NP1: 2.98984598e-03 + syst_JER_NP2: 1.62474958e-04 + syst_JER_NP3: 1.81763878e-04 + syst_JER_NP4: 1.70054465e-04 + syst_JER_NP5: 2.73755708e-06 + syst_JER_NP6: 2.00707175e-06 + syst_JER_NP7: 1.71527357e-09 + syst_JER_NP8: 1.58649735e-04 + syst_JES_EtaIntercalibration_Modelling: 9.63555593e-03 + syst_JES_EtaIntercalibration_NonClosure: 9.13586092e-04 syst_JES_EtaIntercalibration_Stat0: 0.0 - syst_JES_EtaIntercalibration_Stat1: 4.835885854732305e-16 + syst_JES_EtaIntercalibration_Stat1: 4.83588585e-16 syst_JES_EtaIntercalibration_Stat10: 0.0 syst_JES_EtaIntercalibration_Stat100: 0.0 syst_JES_EtaIntercalibration_Stat101: 0.0 syst_JES_EtaIntercalibration_Stat102: 0.0 - syst_JES_EtaIntercalibration_Stat103: 4.8203458382153445e-15 - syst_JES_EtaIntercalibration_Stat104: 7.523189903682813e-09 - syst_JES_EtaIntercalibration_Stat105: 2.895696634663238e-07 - syst_JES_EtaIntercalibration_Stat106: 1.7061981127641653e-07 - syst_JES_EtaIntercalibration_Stat107: 1.276219416871566e-12 - syst_JES_EtaIntercalibration_Stat108: 1.8210489711152745e-08 - syst_JES_EtaIntercalibration_Stat109: 2.4694760577903966e-06 + syst_JES_EtaIntercalibration_Stat103: 4.82034584e-15 + syst_JES_EtaIntercalibration_Stat104: 7.52318990e-09 + syst_JES_EtaIntercalibration_Stat105: 2.89569663e-07 + syst_JES_EtaIntercalibration_Stat106: 1.70619811e-07 + syst_JES_EtaIntercalibration_Stat107: 1.27621942e-12 + syst_JES_EtaIntercalibration_Stat108: 1.82104897e-08 + syst_JES_EtaIntercalibration_Stat109: 2.46947606e-06 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 7.687047336266377e-06 - syst_JES_EtaIntercalibration_Stat111: 2.577309007472717e-07 - syst_JES_EtaIntercalibration_Stat112: 5.92445039208381e-08 + syst_JES_EtaIntercalibration_Stat110: 7.68704734e-06 + syst_JES_EtaIntercalibration_Stat111: 2.57730901e-07 + syst_JES_EtaIntercalibration_Stat112: 5.92445039e-08 syst_JES_EtaIntercalibration_Stat113: 0.0 syst_JES_EtaIntercalibration_Stat114: 0.0 syst_JES_EtaIntercalibration_Stat115: 0.0 syst_JES_EtaIntercalibration_Stat116: 0.0 syst_JES_EtaIntercalibration_Stat117: 0.0 - syst_JES_EtaIntercalibration_Stat118: 3.283102305746807e-15 - syst_JES_EtaIntercalibration_Stat119: 3.283102305746807e-15 + syst_JES_EtaIntercalibration_Stat118: 3.28310231e-15 + syst_JES_EtaIntercalibration_Stat119: 3.28310231e-15 syst_JES_EtaIntercalibration_Stat12: 0.0 syst_JES_EtaIntercalibration_Stat120: 0.0 syst_JES_EtaIntercalibration_Stat121: 0.0 syst_JES_EtaIntercalibration_Stat122: 0.0 - syst_JES_EtaIntercalibration_Stat123: 2.999534743922797e-11 - syst_JES_EtaIntercalibration_Stat124: 8.380607540626155e-07 - syst_JES_EtaIntercalibration_Stat125: 9.173663431257982e-06 - syst_JES_EtaIntercalibration_Stat126: 5.09979523780122e-06 - syst_JES_EtaIntercalibration_Stat127: 3.96506443926199e-08 - syst_JES_EtaIntercalibration_Stat128: 6.479209028114466e-06 - syst_JES_EtaIntercalibration_Stat129: 4.3257256905633766e-05 + syst_JES_EtaIntercalibration_Stat123: 2.99953474e-11 + syst_JES_EtaIntercalibration_Stat124: 8.38060754e-07 + syst_JES_EtaIntercalibration_Stat125: 9.17366343e-06 + syst_JES_EtaIntercalibration_Stat126: 5.09979524e-06 + syst_JES_EtaIntercalibration_Stat127: 3.96506444e-08 + syst_JES_EtaIntercalibration_Stat128: 6.47920903e-06 + syst_JES_EtaIntercalibration_Stat129: 4.32572569e-05 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 8.038857319296069e-06 - syst_JES_EtaIntercalibration_Stat131: 8.103861417096173e-08 + syst_JES_EtaIntercalibration_Stat130: 8.03885732e-06 + syst_JES_EtaIntercalibration_Stat131: 8.10386142e-08 syst_JES_EtaIntercalibration_Stat132: 0.0 syst_JES_EtaIntercalibration_Stat133: 0.0 syst_JES_EtaIntercalibration_Stat134: 0.0 syst_JES_EtaIntercalibration_Stat135: 0.0 syst_JES_EtaIntercalibration_Stat136: 0.0 - syst_JES_EtaIntercalibration_Stat137: 3.283102305746807e-15 - syst_JES_EtaIntercalibration_Stat138: 3.283102305746807e-15 - syst_JES_EtaIntercalibration_Stat139: 1.6333239115374513e-14 + syst_JES_EtaIntercalibration_Stat137: 3.28310231e-15 + syst_JES_EtaIntercalibration_Stat138: 3.28310231e-15 + syst_JES_EtaIntercalibration_Stat139: 1.63332391e-14 syst_JES_EtaIntercalibration_Stat14: 0.0 syst_JES_EtaIntercalibration_Stat140: 0.0 syst_JES_EtaIntercalibration_Stat141: 0.0 - syst_JES_EtaIntercalibration_Stat142: 8.31092173065509e-09 - syst_JES_EtaIntercalibration_Stat143: 6.748362245760078e-06 - syst_JES_EtaIntercalibration_Stat144: 1.5989191872949677e-05 - syst_JES_EtaIntercalibration_Stat145: 3.389963850470975e-05 - syst_JES_EtaIntercalibration_Stat146: 7.665519768417533e-05 - syst_JES_EtaIntercalibration_Stat147: 5.4328483321366516e-05 - syst_JES_EtaIntercalibration_Stat148: 4.778209922920926e-06 - syst_JES_EtaIntercalibration_Stat149: 8.969241912224242e-08 + syst_JES_EtaIntercalibration_Stat142: 8.31092173e-09 + syst_JES_EtaIntercalibration_Stat143: 6.74836225e-06 + syst_JES_EtaIntercalibration_Stat144: 1.59891919e-05 + syst_JES_EtaIntercalibration_Stat145: 3.38996385e-05 + syst_JES_EtaIntercalibration_Stat146: 7.66551977e-05 + syst_JES_EtaIntercalibration_Stat147: 5.43284833e-05 + syst_JES_EtaIntercalibration_Stat148: 4.77820992e-06 + syst_JES_EtaIntercalibration_Stat149: 8.96924191e-08 syst_JES_EtaIntercalibration_Stat15: 0.0 syst_JES_EtaIntercalibration_Stat150: 0.0 syst_JES_EtaIntercalibration_Stat151: 0.0 @@ -58379,60 +58379,60 @@ bins: syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 3.283102305746807e-15 - syst_JES_EtaIntercalibration_Stat157: 1.6333239115374513e-14 + syst_JES_EtaIntercalibration_Stat156: 3.28310231e-15 + syst_JES_EtaIntercalibration_Stat157: 1.63332391e-14 syst_JES_EtaIntercalibration_Stat158: 0.0 syst_JES_EtaIntercalibration_Stat159: 0.0 - syst_JES_EtaIntercalibration_Stat16: 1.7961366874489256e-17 - syst_JES_EtaIntercalibration_Stat160: 8.631232800537534e-09 - syst_JES_EtaIntercalibration_Stat161: 4.577232214996307e-06 - syst_JES_EtaIntercalibration_Stat162: 5.446943701517392e-05 - syst_JES_EtaIntercalibration_Stat163: 2.5124125357910472e-05 - syst_JES_EtaIntercalibration_Stat164: 0.0003095210995635031 - syst_JES_EtaIntercalibration_Stat165: 0.0002036306093763902 - syst_JES_EtaIntercalibration_Stat166: 7.804061250400333e-06 - syst_JES_EtaIntercalibration_Stat167: 9.321056817094293e-08 + syst_JES_EtaIntercalibration_Stat16: 1.79613669e-17 + syst_JES_EtaIntercalibration_Stat160: 8.63123280e-09 + syst_JES_EtaIntercalibration_Stat161: 4.57723221e-06 + syst_JES_EtaIntercalibration_Stat162: 5.44694370e-05 + syst_JES_EtaIntercalibration_Stat163: 2.51241254e-05 + syst_JES_EtaIntercalibration_Stat164: 3.09521100e-04 + syst_JES_EtaIntercalibration_Stat165: 2.03630609e-04 + syst_JES_EtaIntercalibration_Stat166: 7.80406125e-06 + syst_JES_EtaIntercalibration_Stat167: 9.32105682e-08 syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 - syst_JES_EtaIntercalibration_Stat17: 1.0651653991282293e-16 + syst_JES_EtaIntercalibration_Stat17: 1.06516540e-16 syst_JES_EtaIntercalibration_Stat170: 0.0 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 - syst_JES_EtaIntercalibration_Stat174: 1.6333239115374513e-14 - syst_JES_EtaIntercalibration_Stat175: 1.6333239115374513e-14 + syst_JES_EtaIntercalibration_Stat174: 1.63332391e-14 + syst_JES_EtaIntercalibration_Stat175: 1.63332391e-14 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 - syst_JES_EtaIntercalibration_Stat178: 7.427119360828935e-07 - syst_JES_EtaIntercalibration_Stat179: 1.1743945706192618e-05 - syst_JES_EtaIntercalibration_Stat18: 6.311915933375538e-15 - syst_JES_EtaIntercalibration_Stat180: 0.000273678474674206 - syst_JES_EtaIntercalibration_Stat181: 0.00027066870432320024 - syst_JES_EtaIntercalibration_Stat182: 0.001663464156511946 - syst_JES_EtaIntercalibration_Stat183: 0.00023415663027127805 - syst_JES_EtaIntercalibration_Stat184: 3.101399148624375e-06 + syst_JES_EtaIntercalibration_Stat178: 7.42711936e-07 + syst_JES_EtaIntercalibration_Stat179: 1.17439457e-05 + syst_JES_EtaIntercalibration_Stat18: 6.31191593e-15 + syst_JES_EtaIntercalibration_Stat180: 2.73678475e-04 + syst_JES_EtaIntercalibration_Stat181: 2.70668704e-04 + syst_JES_EtaIntercalibration_Stat182: 1.66346416e-03 + syst_JES_EtaIntercalibration_Stat183: 2.34156630e-04 + syst_JES_EtaIntercalibration_Stat184: 3.10139915e-06 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 syst_JES_EtaIntercalibration_Stat187: 0.0 - syst_JES_EtaIntercalibration_Stat188: 5.72442791901514e-12 + syst_JES_EtaIntercalibration_Stat188: 5.72442792e-12 syst_JES_EtaIntercalibration_Stat189: 0.0 - syst_JES_EtaIntercalibration_Stat19: 4.258601210491539e-15 + syst_JES_EtaIntercalibration_Stat19: 4.25860121e-15 syst_JES_EtaIntercalibration_Stat190: 0.0 - syst_JES_EtaIntercalibration_Stat191: 1.6333239115374513e-14 - syst_JES_EtaIntercalibration_Stat192: 1.6333239115374513e-14 + syst_JES_EtaIntercalibration_Stat191: 1.63332391e-14 + syst_JES_EtaIntercalibration_Stat192: 1.63332391e-14 syst_JES_EtaIntercalibration_Stat193: 0.0 syst_JES_EtaIntercalibration_Stat194: 0.0 - syst_JES_EtaIntercalibration_Stat195: 1.4503846619086951e-06 - syst_JES_EtaIntercalibration_Stat196: 0.00010796407087545375 - syst_JES_EtaIntercalibration_Stat197: 0.0012813513833059222 - syst_JES_EtaIntercalibration_Stat198: 0.00029340894669385937 - syst_JES_EtaIntercalibration_Stat199: 4.652447393908715e-06 - syst_JES_EtaIntercalibration_Stat2: 1.8246043822908568e-14 + syst_JES_EtaIntercalibration_Stat195: 1.45038466e-06 + syst_JES_EtaIntercalibration_Stat196: 1.07964071e-04 + syst_JES_EtaIntercalibration_Stat197: 1.28135138e-03 + syst_JES_EtaIntercalibration_Stat198: 2.93408947e-04 + syst_JES_EtaIntercalibration_Stat199: 4.65244739e-06 + syst_JES_EtaIntercalibration_Stat2: 1.82460438e-14 syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 syst_JES_EtaIntercalibration_Stat201: 0.0 syst_JES_EtaIntercalibration_Stat202: 0.0 - syst_JES_EtaIntercalibration_Stat203: 5.72442791901514e-12 + syst_JES_EtaIntercalibration_Stat203: 5.72442792e-12 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 @@ -58440,9 +58440,9 @@ bins: syst_JES_EtaIntercalibration_Stat208: 0.0 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 1.438499741918642e-06 - syst_JES_EtaIntercalibration_Stat211: 0.0002015933101568601 - syst_JES_EtaIntercalibration_Stat212: 4.018357873559795e-06 + syst_JES_EtaIntercalibration_Stat210: 1.43849974e-06 + syst_JES_EtaIntercalibration_Stat211: 2.01593310e-04 + syst_JES_EtaIntercalibration_Stat212: 4.01835787e-06 syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 syst_JES_EtaIntercalibration_Stat215: 0.0 @@ -58454,37 +58454,37 @@ bins: syst_JES_EtaIntercalibration_Stat220: 0.0 syst_JES_EtaIntercalibration_Stat221: 0.0 syst_JES_EtaIntercalibration_Stat222: 0.0 - syst_JES_EtaIntercalibration_Stat223: 1.2427464544306696e-06 - syst_JES_EtaIntercalibration_Stat224: 4.025286076790071e-06 + syst_JES_EtaIntercalibration_Stat223: 1.24274645e-06 + syst_JES_EtaIntercalibration_Stat224: 4.02528608e-06 syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 syst_JES_EtaIntercalibration_Stat227: 0.0 syst_JES_EtaIntercalibration_Stat228: 0.0 syst_JES_EtaIntercalibration_Stat229: 0.0 - syst_JES_EtaIntercalibration_Stat23: 1.445262699546349e-14 + syst_JES_EtaIntercalibration_Stat23: 1.44526270e-14 syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 syst_JES_EtaIntercalibration_Stat232: 0.0 syst_JES_EtaIntercalibration_Stat233: 0.0 syst_JES_EtaIntercalibration_Stat234: 0.0 - syst_JES_EtaIntercalibration_Stat235: 3.619120162415169e-05 + syst_JES_EtaIntercalibration_Stat235: 3.61912016e-05 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 syst_JES_EtaIntercalibration_Stat239: 0.0 - syst_JES_EtaIntercalibration_Stat24: 7.548068411852133e-12 + syst_JES_EtaIntercalibration_Stat24: 7.54806841e-12 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 syst_JES_EtaIntercalibration_Stat243: 0.0 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 - syst_JES_EtaIntercalibration_Stat25: 6.219629951427135e-08 - syst_JES_EtaIntercalibration_Stat26: 2.691653371071394e-14 + syst_JES_EtaIntercalibration_Stat25: 6.21962995e-08 + syst_JES_EtaIntercalibration_Stat26: 2.69165337e-14 syst_JES_EtaIntercalibration_Stat27: 0.0 syst_JES_EtaIntercalibration_Stat28: 0.0 syst_JES_EtaIntercalibration_Stat29: 0.0 - syst_JES_EtaIntercalibration_Stat3: 2.3691113777110607e-14 + syst_JES_EtaIntercalibration_Stat3: 2.36911138e-14 syst_JES_EtaIntercalibration_Stat30: 0.0 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 @@ -58493,19 +58493,19 @@ bins: syst_JES_EtaIntercalibration_Stat35: 0.0 syst_JES_EtaIntercalibration_Stat36: 0.0 syst_JES_EtaIntercalibration_Stat37: 0.0 - syst_JES_EtaIntercalibration_Stat38: 1.7961366874489256e-17 - syst_JES_EtaIntercalibration_Stat39: 1.0155005612996972e-14 + syst_JES_EtaIntercalibration_Stat38: 1.79613669e-17 + syst_JES_EtaIntercalibration_Stat39: 1.01550056e-14 syst_JES_EtaIntercalibration_Stat4: 0.0 - syst_JES_EtaIntercalibration_Stat40: 5.473920806880567e-12 - syst_JES_EtaIntercalibration_Stat41: 8.82631253695449e-13 - syst_JES_EtaIntercalibration_Stat42: 5.54689271123933e-16 + syst_JES_EtaIntercalibration_Stat40: 5.47392081e-12 + syst_JES_EtaIntercalibration_Stat41: 8.82631254e-13 + syst_JES_EtaIntercalibration_Stat42: 5.54689271e-16 syst_JES_EtaIntercalibration_Stat43: 0.0 - syst_JES_EtaIntercalibration_Stat44: 1.4168175605913416e-15 - syst_JES_EtaIntercalibration_Stat45: 8.180101894230903e-14 - syst_JES_EtaIntercalibration_Stat46: 1.7278734328100393e-08 - syst_JES_EtaIntercalibration_Stat47: 6.187034513163394e-08 - syst_JES_EtaIntercalibration_Stat48: 3.708136873148023e-12 - syst_JES_EtaIntercalibration_Stat49: 9.785221037360373e-16 + syst_JES_EtaIntercalibration_Stat44: 1.41681756e-15 + syst_JES_EtaIntercalibration_Stat45: 8.18010189e-14 + syst_JES_EtaIntercalibration_Stat46: 1.72787343e-08 + syst_JES_EtaIntercalibration_Stat47: 6.18703451e-08 + syst_JES_EtaIntercalibration_Stat48: 3.70813687e-12 + syst_JES_EtaIntercalibration_Stat49: 9.78522104e-16 syst_JES_EtaIntercalibration_Stat5: 0.0 syst_JES_EtaIntercalibration_Stat50: 0.0 syst_JES_EtaIntercalibration_Stat51: 0.0 @@ -58516,21 +58516,21 @@ bins: syst_JES_EtaIntercalibration_Stat56: 0.0 syst_JES_EtaIntercalibration_Stat57: 0.0 syst_JES_EtaIntercalibration_Stat58: 0.0 - syst_JES_EtaIntercalibration_Stat59: 1.7961366874489256e-17 + syst_JES_EtaIntercalibration_Stat59: 1.79613669e-17 syst_JES_EtaIntercalibration_Stat6: 0.0 - syst_JES_EtaIntercalibration_Stat60: 8.417242481953338e-17 - syst_JES_EtaIntercalibration_Stat61: 3.1613819351669612e-12 - syst_JES_EtaIntercalibration_Stat62: 9.933445891532303e-08 - syst_JES_EtaIntercalibration_Stat63: 2.013473840778668e-11 - syst_JES_EtaIntercalibration_Stat64: 6.7706703508589165e-15 + syst_JES_EtaIntercalibration_Stat60: 8.41724248e-17 + syst_JES_EtaIntercalibration_Stat61: 3.16138194e-12 + syst_JES_EtaIntercalibration_Stat62: 9.93344589e-08 + syst_JES_EtaIntercalibration_Stat63: 2.01347384e-11 + syst_JES_EtaIntercalibration_Stat64: 6.77067035e-15 syst_JES_EtaIntercalibration_Stat65: 0.0 - syst_JES_EtaIntercalibration_Stat66: 1.4168175605913416e-15 - syst_JES_EtaIntercalibration_Stat67: 9.18816401682077e-12 - syst_JES_EtaIntercalibration_Stat68: 1.732533626419701e-07 - syst_JES_EtaIntercalibration_Stat69: 1.7624254878079243e-07 + syst_JES_EtaIntercalibration_Stat66: 1.41681756e-15 + syst_JES_EtaIntercalibration_Stat67: 9.18816402e-12 + syst_JES_EtaIntercalibration_Stat68: 1.73253363e-07 + syst_JES_EtaIntercalibration_Stat69: 1.76242549e-07 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 6.213320369727847e-08 - syst_JES_EtaIntercalibration_Stat71: 2.1645307347956508e-14 + syst_JES_EtaIntercalibration_Stat70: 6.21332037e-08 + syst_JES_EtaIntercalibration_Stat71: 2.16453073e-14 syst_JES_EtaIntercalibration_Stat72: 0.0 syst_JES_EtaIntercalibration_Stat73: 0.0 syst_JES_EtaIntercalibration_Stat74: 0.0 @@ -58541,19 +58541,19 @@ bins: syst_JES_EtaIntercalibration_Stat79: 0.0 syst_JES_EtaIntercalibration_Stat8: 0.0 syst_JES_EtaIntercalibration_Stat80: 0.0 - syst_JES_EtaIntercalibration_Stat81: 1.7961366874489256e-17 - syst_JES_EtaIntercalibration_Stat82: 1.8436804407217647e-15 - syst_JES_EtaIntercalibration_Stat83: 4.206737542324218e-11 - syst_JES_EtaIntercalibration_Stat84: 1.9730217907565033e-07 - syst_JES_EtaIntercalibration_Stat85: 1.66593731036765e-07 - syst_JES_EtaIntercalibration_Stat86: 8.216296900063921e-13 + syst_JES_EtaIntercalibration_Stat81: 1.79613669e-17 + syst_JES_EtaIntercalibration_Stat82: 1.84368044e-15 + syst_JES_EtaIntercalibration_Stat83: 4.20673754e-11 + syst_JES_EtaIntercalibration_Stat84: 1.97302179e-07 + syst_JES_EtaIntercalibration_Stat85: 1.66593731e-07 + syst_JES_EtaIntercalibration_Stat86: 8.21629690e-13 syst_JES_EtaIntercalibration_Stat87: 0.0 - syst_JES_EtaIntercalibration_Stat88: 2.969009282572219e-11 - syst_JES_EtaIntercalibration_Stat89: 1.056884583138102e-07 + syst_JES_EtaIntercalibration_Stat88: 2.96900928e-11 + syst_JES_EtaIntercalibration_Stat89: 1.05688458e-07 syst_JES_EtaIntercalibration_Stat9: 0.0 - syst_JES_EtaIntercalibration_Stat90: 1.742365222642773e-07 - syst_JES_EtaIntercalibration_Stat91: 6.295047997980237e-08 - syst_JES_EtaIntercalibration_Stat92: 2.4656283953740877e-14 + syst_JES_EtaIntercalibration_Stat90: 1.74236522e-07 + syst_JES_EtaIntercalibration_Stat91: 6.29504800e-08 + syst_JES_EtaIntercalibration_Stat92: 2.46562840e-14 syst_JES_EtaIntercalibration_Stat93: 0.0 syst_JES_EtaIntercalibration_Stat94: 0.0 syst_JES_EtaIntercalibration_Stat95: 0.0 @@ -58561,154 +58561,154 @@ bins: syst_JES_EtaIntercalibration_Stat97: 0.0 syst_JES_EtaIntercalibration_Stat98: 0.0 syst_JES_EtaIntercalibration_Stat99: 0.0 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0009277642965753748 - syst_JES_Flavour_Comp: 0.0035880739958925037 - syst_JES_Flavour_Response: 0.00038664131633854137 - syst_JES_Gjet_Generator: 0.00568349425969623 - syst_JES_Gjet_OOC: 0.004502449777621068 - syst_JES_Gjet_Purity: 0.0010983049576506517 - syst_JES_Gjet_Stat1: 2.682981050995329e-05 - syst_JES_Gjet_Stat10: 2.0984791516715148e-05 - syst_JES_Gjet_Stat11: 7.161479749849188e-05 - syst_JES_Gjet_Stat12: 0.0004979996887549228 - syst_JES_Gjet_Stat13: 0.0010039037155026374 - syst_JES_Gjet_Stat14: 0.0007419660420127056 - syst_JES_Gjet_Stat15: 9.483807990464589e-05 - syst_JES_Gjet_Stat2: 4.428502238906513e-06 - syst_JES_Gjet_Stat3: 6.754269982759055e-06 - syst_JES_Gjet_Stat4: 6.8589919813337e-06 - syst_JES_Gjet_Stat5: 6.5908887109402775e-06 - syst_JES_Gjet_Stat6: 6.686341955808123e-06 - syst_JES_Gjet_Stat7: 3.32661310494623e-05 - syst_JES_Gjet_Stat8: 6.062026455732438e-06 - syst_JES_Gjet_Stat9: 4.460466455428176e-05 - syst_JES_Gjet_Veto: 0.003533995472549448 - syst_JES_Gjet_dPhi: 0.00019931424936516707 - syst_JES_LArESZee: 0.008362855194250346 - syst_JES_LArEsmear: 0.0005107848544152421 - syst_JES_LAr_JVT: 0.0006529166792171877 - syst_JES_MJB_Alpha: 2.7703892777008793e-05 - syst_JES_MJB_Asym: 0.00028298920474109965 - syst_JES_MJB_Beta: 3.1937415686777164e-05 - syst_JES_MJB_Fragmentation: 0.0006273695302610735 - syst_JES_MJB_Stat1: 7.2871263712110824e-06 - syst_JES_MJB_Stat10: 1.295145443569949e-06 - syst_JES_MJB_Stat11: 8.039313823330944e-06 - syst_JES_MJB_Stat12: 2.8977210010627313e-06 - syst_JES_MJB_Stat13: 1.0367190108703514e-06 + syst_JES_EtaIntercalibration_TotalStat_MJB: 9.27764297e-04 + syst_JES_Flavour_Comp: 3.58807400e-03 + syst_JES_Flavour_Response: 3.86641316e-04 + syst_JES_Gjet_Generator: 5.68349426e-03 + syst_JES_Gjet_OOC: 4.50244978e-03 + syst_JES_Gjet_Purity: 1.09830496e-03 + syst_JES_Gjet_Stat1: 2.68298105e-05 + syst_JES_Gjet_Stat10: 2.09847915e-05 + syst_JES_Gjet_Stat11: 7.16147975e-05 + syst_JES_Gjet_Stat12: 4.97999689e-04 + syst_JES_Gjet_Stat13: 1.00390372e-03 + syst_JES_Gjet_Stat14: 7.41966042e-04 + syst_JES_Gjet_Stat15: 9.48380799e-05 + syst_JES_Gjet_Stat2: 4.42850224e-06 + syst_JES_Gjet_Stat3: 6.75426998e-06 + syst_JES_Gjet_Stat4: 6.85899198e-06 + syst_JES_Gjet_Stat5: 6.59088871e-06 + syst_JES_Gjet_Stat6: 6.68634196e-06 + syst_JES_Gjet_Stat7: 3.32661310e-05 + syst_JES_Gjet_Stat8: 6.06202646e-06 + syst_JES_Gjet_Stat9: 4.46046646e-05 + syst_JES_Gjet_Veto: 3.53399547e-03 + syst_JES_Gjet_dPhi: 1.99314249e-04 + syst_JES_LArESZee: 8.36285519e-03 + syst_JES_LArEsmear: 5.10784854e-04 + syst_JES_LAr_JVT: 6.52916679e-04 + syst_JES_MJB_Alpha: 2.77038928e-05 + syst_JES_MJB_Asym: 2.82989205e-04 + syst_JES_MJB_Beta: 3.19374157e-05 + syst_JES_MJB_Fragmentation: 6.27369530e-04 + syst_JES_MJB_Stat1: 7.28712637e-06 + syst_JES_MJB_Stat10: 1.29514544e-06 + syst_JES_MJB_Stat11: 8.03931382e-06 + syst_JES_MJB_Stat12: 2.89772100e-06 + syst_JES_MJB_Stat13: 1.03671901e-06 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 3.688764122304379e-05 - syst_JES_MJB_Stat3: 5.0383397066891e-05 - syst_JES_MJB_Stat4: 1.3919325657157389e-05 - syst_JES_MJB_Stat5: 5.393783713683744e-06 - syst_JES_MJB_Stat6: 3.159930674872473e-05 - syst_JES_MJB_Stat7: 1.0599927216731254e-06 - syst_JES_MJB_Stat8: 2.2974493944372313e-06 - syst_JES_MJB_Stat9: 2.2965844791777205e-06 - syst_JES_MJB_Threshold: 0.00030466976794555776 - syst_JES_Pileup_MuOffset: 0.000802796786241699 - syst_JES_Pileup_NPVOffset: 0.0009153007961866962 - syst_JES_Pileup_Pt_term: 0.0024898848868973845 - syst_JES_Pileup_Rho_topology: 0.0014405073090755214 - syst_JES_PunchThrough_MC15: 7.458099271932494e-05 + syst_JES_MJB_Stat2: 3.68876412e-05 + syst_JES_MJB_Stat3: 5.03833971e-05 + syst_JES_MJB_Stat4: 1.39193257e-05 + syst_JES_MJB_Stat5: 5.39378371e-06 + syst_JES_MJB_Stat6: 3.15993067e-05 + syst_JES_MJB_Stat7: 1.05999272e-06 + syst_JES_MJB_Stat8: 2.29744939e-06 + syst_JES_MJB_Stat9: 2.29658448e-06 + syst_JES_MJB_Threshold: 3.04669768e-04 + syst_JES_Pileup_MuOffset: 8.02796786e-04 + syst_JES_Pileup_NPVOffset: 9.15300796e-04 + syst_JES_Pileup_Pt_term: 2.48988489e-03 + syst_JES_Pileup_Rho_topology: 1.44050731e-03 + syst_JES_PunchThrough_MC15: 7.45809927e-05 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.003708098708233102 - syst_JES_Zjet_MuScale: 0.00012454737281452385 - syst_JES_Zjet_MuSmearID: 1.682639747539562e-05 - syst_JES_Zjet_MuSmearMS: 0.00095261058150747 - syst_JES_Zjet_OOC: 0.0013799739562759873 - syst_JES_Zjet_Stat1: 2.6257998305278338e-05 - syst_JES_Zjet_Stat10: 1.6617877933117694e-05 - syst_JES_Zjet_Stat11: 2.7590934652526722e-05 - syst_JES_Zjet_Stat12: 0.0005407940527594585 - syst_JES_Zjet_Stat13: 0.0009015289013670055 - syst_JES_Zjet_Stat2: 4.5547817455944037e-07 - syst_JES_Zjet_Stat3: 4.386675160927693e-06 - syst_JES_Zjet_Stat4: 4.387393324914009e-06 - syst_JES_Zjet_Stat5: 5.3090072518315505e-06 - syst_JES_Zjet_Stat6: 3.1429880480205455e-05 - syst_JES_Zjet_Stat7: 5.20439304818535e-06 - syst_JES_Zjet_Stat8: 5.941450391108218e-06 - syst_JES_Zjet_Stat9: 4.126770500948654e-05 - syst_JES_Zjet_Veto: 0.00022126076809954356 - syst_JES_Zjet_dPhi: 0.00016995861496258436 + syst_JES_Zjet_MC: 3.70809871e-03 + syst_JES_Zjet_MuScale: 1.24547373e-04 + syst_JES_Zjet_MuSmearID: 1.68263975e-05 + syst_JES_Zjet_MuSmearMS: 9.52610582e-04 + syst_JES_Zjet_OOC: 1.37997396e-03 + syst_JES_Zjet_Stat1: 2.62579983e-05 + syst_JES_Zjet_Stat10: 1.66178779e-05 + syst_JES_Zjet_Stat11: 2.75909347e-05 + syst_JES_Zjet_Stat12: 5.40794053e-04 + syst_JES_Zjet_Stat13: 9.01528901e-04 + syst_JES_Zjet_Stat2: 4.55478175e-07 + syst_JES_Zjet_Stat3: 4.38667516e-06 + syst_JES_Zjet_Stat4: 4.38739332e-06 + syst_JES_Zjet_Stat5: 5.30900725e-06 + syst_JES_Zjet_Stat6: 3.14298805e-05 + syst_JES_Zjet_Stat7: 5.20439305e-06 + syst_JES_Zjet_Stat8: 5.94145039e-06 + syst_JES_Zjet_Stat9: 4.12677050e-05 + syst_JES_Zjet_Veto: 2.21260768e-04 + syst_JES_Zjet_dPhi: 1.69958615e-04 syst_PRW: 0.0 - syst_Unfolding_bias: 0.0006291 - syst_cleaning: 0.000880921040729531 + syst_Unfolding_bias: 6.29100000e-04 + syst_cleaning: 8.80921041e-04 syst_lumi: 0.003302 -- stat: 0.0018249 - syst_JER_CROSS_CALIB_FORWARD: 2.317e-07 - syst_JER_NOISE_FORWARD: 7.126e-05 - syst_JER_NP0: 0.00016317330510840305 - syst_JER_NP1: 0.0015572882480453 - syst_JER_NP2: 3.906164791310654e-05 - syst_JER_NP3: 3.432693937347167e-05 - syst_JER_NP4: 3.2534115555828467e-05 - syst_JER_NP5: 2.599646274014986e-07 - syst_JER_NP6: 1.9066260120957122e-07 - syst_JER_NP7: 1.4017808129832674e-10 - syst_JER_NP8: 3.0816926529912097e-05 - syst_JES_EtaIntercalibration_Modelling: 0.004447944778209369 - syst_JES_EtaIntercalibration_NonClosure: 0.00040863079607391317 +- stat: 1.82490000e-03 + syst_JER_CROSS_CALIB_FORWARD: 2.31700000e-07 + syst_JER_NOISE_FORWARD: 7.12600000e-05 + syst_JER_NP0: 1.63173305e-04 + syst_JER_NP1: 1.55728825e-03 + syst_JER_NP2: 3.90616479e-05 + syst_JER_NP3: 3.43269394e-05 + syst_JER_NP4: 3.25341156e-05 + syst_JER_NP5: 2.59964627e-07 + syst_JER_NP6: 1.90662601e-07 + syst_JER_NP7: 1.40178081e-10 + syst_JER_NP8: 3.08169265e-05 + syst_JES_EtaIntercalibration_Modelling: 4.44794478e-03 + syst_JES_EtaIntercalibration_NonClosure: 4.08630796e-04 syst_JES_EtaIntercalibration_Stat0: 0.0 - syst_JES_EtaIntercalibration_Stat1: 4.517188506139632e-17 + syst_JES_EtaIntercalibration_Stat1: 4.51718851e-17 syst_JES_EtaIntercalibration_Stat10: 0.0 syst_JES_EtaIntercalibration_Stat100: 0.0 syst_JES_EtaIntercalibration_Stat101: 0.0 syst_JES_EtaIntercalibration_Stat102: 0.0 - syst_JES_EtaIntercalibration_Stat103: 4.255491834089216e-16 - syst_JES_EtaIntercalibration_Stat104: 2.2632400016173165e-09 - syst_JES_EtaIntercalibration_Stat105: 5.0739029356108104e-08 - syst_JES_EtaIntercalibration_Stat106: 2.7319645875267125e-08 - syst_JES_EtaIntercalibration_Stat107: 1.0608183256335647e-13 - syst_JES_EtaIntercalibration_Stat108: 2.346823066120452e-09 - syst_JES_EtaIntercalibration_Stat109: 6.564432724919953e-07 + syst_JES_EtaIntercalibration_Stat103: 4.25549183e-16 + syst_JES_EtaIntercalibration_Stat104: 2.26324000e-09 + syst_JES_EtaIntercalibration_Stat105: 5.07390294e-08 + syst_JES_EtaIntercalibration_Stat106: 2.73196459e-08 + syst_JES_EtaIntercalibration_Stat107: 1.06081833e-13 + syst_JES_EtaIntercalibration_Stat108: 2.34682307e-09 + syst_JES_EtaIntercalibration_Stat109: 6.56443272e-07 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 3.828016754143064e-06 - syst_JES_EtaIntercalibration_Stat111: 3.681325939114873e-08 - syst_JES_EtaIntercalibration_Stat112: 7.356861773257869e-09 + syst_JES_EtaIntercalibration_Stat110: 3.82801675e-06 + syst_JES_EtaIntercalibration_Stat111: 3.68132594e-08 + syst_JES_EtaIntercalibration_Stat112: 7.35686177e-09 syst_JES_EtaIntercalibration_Stat113: 0.0 syst_JES_EtaIntercalibration_Stat114: 0.0 syst_JES_EtaIntercalibration_Stat115: 0.0 syst_JES_EtaIntercalibration_Stat116: 0.0 syst_JES_EtaIntercalibration_Stat117: 0.0 - syst_JES_EtaIntercalibration_Stat118: 2.872606264352983e-16 - syst_JES_EtaIntercalibration_Stat119: 2.872606264352983e-16 + syst_JES_EtaIntercalibration_Stat118: 2.87260626e-16 + syst_JES_EtaIntercalibration_Stat119: 2.87260626e-16 syst_JES_EtaIntercalibration_Stat12: 0.0 syst_JES_EtaIntercalibration_Stat120: 0.0 syst_JES_EtaIntercalibration_Stat121: 0.0 syst_JES_EtaIntercalibration_Stat122: 0.0 - syst_JES_EtaIntercalibration_Stat123: 2.477364072961421e-12 - syst_JES_EtaIntercalibration_Stat124: 6.94261643762638e-08 - syst_JES_EtaIntercalibration_Stat125: 5.611712461450604e-06 - syst_JES_EtaIntercalibration_Stat126: 1.9448326071927112e-06 - syst_JES_EtaIntercalibration_Stat127: 5.16313467575658e-09 - syst_JES_EtaIntercalibration_Stat128: 2.6293468295377087e-06 - syst_JES_EtaIntercalibration_Stat129: 2.26656061026393e-05 + syst_JES_EtaIntercalibration_Stat123: 2.47736407e-12 + syst_JES_EtaIntercalibration_Stat124: 6.94261644e-08 + syst_JES_EtaIntercalibration_Stat125: 5.61171246e-06 + syst_JES_EtaIntercalibration_Stat126: 1.94483261e-06 + syst_JES_EtaIntercalibration_Stat127: 5.16313468e-09 + syst_JES_EtaIntercalibration_Stat128: 2.62934683e-06 + syst_JES_EtaIntercalibration_Stat129: 2.26656061e-05 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 1.732286629718073e-06 - syst_JES_EtaIntercalibration_Stat131: 1.2476467146892987e-08 + syst_JES_EtaIntercalibration_Stat130: 1.73228663e-06 + syst_JES_EtaIntercalibration_Stat131: 1.24764671e-08 syst_JES_EtaIntercalibration_Stat132: 0.0 syst_JES_EtaIntercalibration_Stat133: 0.0 syst_JES_EtaIntercalibration_Stat134: 0.0 syst_JES_EtaIntercalibration_Stat135: 0.0 syst_JES_EtaIntercalibration_Stat136: 0.0 - syst_JES_EtaIntercalibration_Stat137: 2.872606264352983e-16 - syst_JES_EtaIntercalibration_Stat138: 2.872606264352983e-16 - syst_JES_EtaIntercalibration_Stat139: 1.4505925513389347e-15 + syst_JES_EtaIntercalibration_Stat137: 2.87260626e-16 + syst_JES_EtaIntercalibration_Stat138: 2.87260626e-16 + syst_JES_EtaIntercalibration_Stat139: 1.45059255e-15 syst_JES_EtaIntercalibration_Stat14: 0.0 syst_JES_EtaIntercalibration_Stat140: 0.0 syst_JES_EtaIntercalibration_Stat141: 0.0 - syst_JES_EtaIntercalibration_Stat142: 2.159907307146999e-09 - syst_JES_EtaIntercalibration_Stat143: 8.140037146721139e-07 - syst_JES_EtaIntercalibration_Stat144: 2.300592695372217e-05 - syst_JES_EtaIntercalibration_Stat145: 2.342422606512326e-05 - syst_JES_EtaIntercalibration_Stat146: 1.7431153805758243e-05 - syst_JES_EtaIntercalibration_Stat147: 1.6035961048530892e-05 - syst_JES_EtaIntercalibration_Stat148: 2.108017077729685e-07 - syst_JES_EtaIntercalibration_Stat149: 1.3390016045080008e-08 + syst_JES_EtaIntercalibration_Stat142: 2.15990731e-09 + syst_JES_EtaIntercalibration_Stat143: 8.14003715e-07 + syst_JES_EtaIntercalibration_Stat144: 2.30059270e-05 + syst_JES_EtaIntercalibration_Stat145: 2.34242261e-05 + syst_JES_EtaIntercalibration_Stat146: 1.74311538e-05 + syst_JES_EtaIntercalibration_Stat147: 1.60359610e-05 + syst_JES_EtaIntercalibration_Stat148: 2.10801708e-07 + syst_JES_EtaIntercalibration_Stat149: 1.33900160e-08 syst_JES_EtaIntercalibration_Stat15: 0.0 syst_JES_EtaIntercalibration_Stat150: 0.0 syst_JES_EtaIntercalibration_Stat151: 0.0 @@ -58716,60 +58716,60 @@ bins: syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 2.872606264352983e-16 - syst_JES_EtaIntercalibration_Stat157: 1.4505925513389347e-15 + syst_JES_EtaIntercalibration_Stat156: 2.87260626e-16 + syst_JES_EtaIntercalibration_Stat157: 1.45059255e-15 syst_JES_EtaIntercalibration_Stat158: 0.0 syst_JES_EtaIntercalibration_Stat159: 0.0 - syst_JES_EtaIntercalibration_Stat16: 2.019571241625311e-18 - syst_JES_EtaIntercalibration_Stat160: 2.126142121112321e-09 - syst_JES_EtaIntercalibration_Stat161: 1.8096356622259632e-06 - syst_JES_EtaIntercalibration_Stat162: 2.705327786054769e-05 - syst_JES_EtaIntercalibration_Stat163: 1.663092416914947e-05 - syst_JES_EtaIntercalibration_Stat164: 0.00010363465886830524 - syst_JES_EtaIntercalibration_Stat165: 0.00010408075938904365 - syst_JES_EtaIntercalibration_Stat166: 6.175480790999191e-06 - syst_JES_EtaIntercalibration_Stat167: 1.3765285140526514e-08 + syst_JES_EtaIntercalibration_Stat16: 2.01957124e-18 + syst_JES_EtaIntercalibration_Stat160: 2.12614212e-09 + syst_JES_EtaIntercalibration_Stat161: 1.80963566e-06 + syst_JES_EtaIntercalibration_Stat162: 2.70532779e-05 + syst_JES_EtaIntercalibration_Stat163: 1.66309242e-05 + syst_JES_EtaIntercalibration_Stat164: 1.03634659e-04 + syst_JES_EtaIntercalibration_Stat165: 1.04080759e-04 + syst_JES_EtaIntercalibration_Stat166: 6.17548079e-06 + syst_JES_EtaIntercalibration_Stat167: 1.37652851e-08 syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 - syst_JES_EtaIntercalibration_Stat17: 1.1288169647910152e-17 + syst_JES_EtaIntercalibration_Stat17: 1.12881696e-17 syst_JES_EtaIntercalibration_Stat170: 0.0 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 - syst_JES_EtaIntercalibration_Stat174: 1.4505925513389347e-15 - syst_JES_EtaIntercalibration_Stat175: 1.4505925513389347e-15 + syst_JES_EtaIntercalibration_Stat174: 1.45059255e-15 + syst_JES_EtaIntercalibration_Stat175: 1.45059255e-15 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 - syst_JES_EtaIntercalibration_Stat178: 3.9695565243487843e-08 - syst_JES_EtaIntercalibration_Stat179: 3.937767204276429e-06 - syst_JES_EtaIntercalibration_Stat18: 5.837113670299731e-16 - syst_JES_EtaIntercalibration_Stat180: 0.00013223887930559604 - syst_JES_EtaIntercalibration_Stat181: 0.00011622563174704622 - syst_JES_EtaIntercalibration_Stat182: 0.0007508129643925976 - syst_JES_EtaIntercalibration_Stat183: 0.00011513830466009128 - syst_JES_EtaIntercalibration_Stat184: 1.192217159800205e-06 + syst_JES_EtaIntercalibration_Stat178: 3.96955652e-08 + syst_JES_EtaIntercalibration_Stat179: 3.93776720e-06 + syst_JES_EtaIntercalibration_Stat18: 5.83711367e-16 + syst_JES_EtaIntercalibration_Stat180: 1.32238879e-04 + syst_JES_EtaIntercalibration_Stat181: 1.16225632e-04 + syst_JES_EtaIntercalibration_Stat182: 7.50812964e-04 + syst_JES_EtaIntercalibration_Stat183: 1.15138305e-04 + syst_JES_EtaIntercalibration_Stat184: 1.19221716e-06 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 syst_JES_EtaIntercalibration_Stat187: 0.0 - syst_JES_EtaIntercalibration_Stat188: 4.670475002609478e-13 + syst_JES_EtaIntercalibration_Stat188: 4.67047500e-13 syst_JES_EtaIntercalibration_Stat189: 0.0 - syst_JES_EtaIntercalibration_Stat19: 3.8543264868845766e-16 + syst_JES_EtaIntercalibration_Stat19: 3.85432649e-16 syst_JES_EtaIntercalibration_Stat190: 0.0 - syst_JES_EtaIntercalibration_Stat191: 1.4505925513389347e-15 - syst_JES_EtaIntercalibration_Stat192: 1.4505925513389347e-15 + syst_JES_EtaIntercalibration_Stat191: 1.45059255e-15 + syst_JES_EtaIntercalibration_Stat192: 1.45059255e-15 syst_JES_EtaIntercalibration_Stat193: 0.0 syst_JES_EtaIntercalibration_Stat194: 0.0 - syst_JES_EtaIntercalibration_Stat195: 6.565897710899858e-07 - syst_JES_EtaIntercalibration_Stat196: 6.049709414509097e-05 - syst_JES_EtaIntercalibration_Stat197: 0.000576351912896973 - syst_JES_EtaIntercalibration_Stat198: 0.00015444022104037534 - syst_JES_EtaIntercalibration_Stat199: 2.7222240640011736e-06 - syst_JES_EtaIntercalibration_Stat2: 1.598060913005196e-15 + syst_JES_EtaIntercalibration_Stat195: 6.56589771e-07 + syst_JES_EtaIntercalibration_Stat196: 6.04970941e-05 + syst_JES_EtaIntercalibration_Stat197: 5.76351913e-04 + syst_JES_EtaIntercalibration_Stat198: 1.54440221e-04 + syst_JES_EtaIntercalibration_Stat199: 2.72222406e-06 + syst_JES_EtaIntercalibration_Stat2: 1.59806091e-15 syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 syst_JES_EtaIntercalibration_Stat201: 0.0 syst_JES_EtaIntercalibration_Stat202: 0.0 - syst_JES_EtaIntercalibration_Stat203: 4.670475002609478e-13 + syst_JES_EtaIntercalibration_Stat203: 4.67047500e-13 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 @@ -58777,9 +58777,9 @@ bins: syst_JES_EtaIntercalibration_Stat208: 0.0 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 3.313616952440339e-06 - syst_JES_EtaIntercalibration_Stat211: 9.151853200308669e-05 - syst_JES_EtaIntercalibration_Stat212: 6.977566678291222e-08 + syst_JES_EtaIntercalibration_Stat210: 3.31361695e-06 + syst_JES_EtaIntercalibration_Stat211: 9.15185320e-05 + syst_JES_EtaIntercalibration_Stat212: 6.97756668e-08 syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 syst_JES_EtaIntercalibration_Stat215: 0.0 @@ -58791,37 +58791,37 @@ bins: syst_JES_EtaIntercalibration_Stat220: 0.0 syst_JES_EtaIntercalibration_Stat221: 0.0 syst_JES_EtaIntercalibration_Stat222: 0.0 - syst_JES_EtaIntercalibration_Stat223: 3.371263691852063e-06 - syst_JES_EtaIntercalibration_Stat224: 7.617559451687923e-08 + syst_JES_EtaIntercalibration_Stat223: 3.37126369e-06 + syst_JES_EtaIntercalibration_Stat224: 7.61755945e-08 syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 syst_JES_EtaIntercalibration_Stat227: 0.0 syst_JES_EtaIntercalibration_Stat228: 0.0 syst_JES_EtaIntercalibration_Stat229: 0.0 - syst_JES_EtaIntercalibration_Stat23: 1.2641956699320717e-15 + syst_JES_EtaIntercalibration_Stat23: 1.26419567e-15 syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 syst_JES_EtaIntercalibration_Stat232: 0.0 syst_JES_EtaIntercalibration_Stat233: 0.0 syst_JES_EtaIntercalibration_Stat234: 0.0 - syst_JES_EtaIntercalibration_Stat235: 2.2274173385335763e-05 + syst_JES_EtaIntercalibration_Stat235: 2.22741734e-05 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 syst_JES_EtaIntercalibration_Stat239: 0.0 - syst_JES_EtaIntercalibration_Stat24: 6.185791198383599e-13 + syst_JES_EtaIntercalibration_Stat24: 6.18579120e-13 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 syst_JES_EtaIntercalibration_Stat243: 0.0 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 - syst_JES_EtaIntercalibration_Stat25: 7.718749593197516e-09 - syst_JES_EtaIntercalibration_Stat26: 2.436064339770196e-15 + syst_JES_EtaIntercalibration_Stat25: 7.71874959e-09 + syst_JES_EtaIntercalibration_Stat26: 2.43606434e-15 syst_JES_EtaIntercalibration_Stat27: 0.0 syst_JES_EtaIntercalibration_Stat28: 0.0 syst_JES_EtaIntercalibration_Stat29: 0.0 - syst_JES_EtaIntercalibration_Stat3: 2.1356013204715905e-15 + syst_JES_EtaIntercalibration_Stat3: 2.13560132e-15 syst_JES_EtaIntercalibration_Stat30: 0.0 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 @@ -58830,19 +58830,19 @@ bins: syst_JES_EtaIntercalibration_Stat35: 0.0 syst_JES_EtaIntercalibration_Stat36: 0.0 syst_JES_EtaIntercalibration_Stat37: 0.0 - syst_JES_EtaIntercalibration_Stat38: 2.019571241625311e-18 - syst_JES_EtaIntercalibration_Stat39: 9.28764182933429e-16 + syst_JES_EtaIntercalibration_Stat38: 2.01957124e-18 + syst_JES_EtaIntercalibration_Stat39: 9.28764183e-16 syst_JES_EtaIntercalibration_Stat4: 0.0 - syst_JES_EtaIntercalibration_Stat40: 4.4936983376724337e-13 - syst_JES_EtaIntercalibration_Stat41: 7.357417532667288e-14 - syst_JES_EtaIntercalibration_Stat42: 5.335582512715927e-17 + syst_JES_EtaIntercalibration_Stat40: 4.49369834e-13 + syst_JES_EtaIntercalibration_Stat41: 7.35741753e-14 + syst_JES_EtaIntercalibration_Stat42: 5.33558251e-17 syst_JES_EtaIntercalibration_Stat43: 0.0 - syst_JES_EtaIntercalibration_Stat44: 1.4791713896638215e-16 - syst_JES_EtaIntercalibration_Stat45: 7.029671471697664e-15 - syst_JES_EtaIntercalibration_Stat46: 2.2313036864640366e-09 - syst_JES_EtaIntercalibration_Stat47: 7.680904084364029e-09 - syst_JES_EtaIntercalibration_Stat48: 3.0346071026576074e-13 - syst_JES_EtaIntercalibration_Stat49: 9.705546700212203e-17 + syst_JES_EtaIntercalibration_Stat44: 1.47917139e-16 + syst_JES_EtaIntercalibration_Stat45: 7.02967147e-15 + syst_JES_EtaIntercalibration_Stat46: 2.23130369e-09 + syst_JES_EtaIntercalibration_Stat47: 7.68090408e-09 + syst_JES_EtaIntercalibration_Stat48: 3.03460710e-13 + syst_JES_EtaIntercalibration_Stat49: 9.70554670e-17 syst_JES_EtaIntercalibration_Stat5: 0.0 syst_JES_EtaIntercalibration_Stat50: 0.0 syst_JES_EtaIntercalibration_Stat51: 0.0 @@ -58853,21 +58853,21 @@ bins: syst_JES_EtaIntercalibration_Stat56: 0.0 syst_JES_EtaIntercalibration_Stat57: 0.0 syst_JES_EtaIntercalibration_Stat58: 0.0 - syst_JES_EtaIntercalibration_Stat59: 2.019571241625311e-18 + syst_JES_EtaIntercalibration_Stat59: 2.01957124e-18 syst_JES_EtaIntercalibration_Stat6: 0.0 - syst_JES_EtaIntercalibration_Stat60: 8.727312530212265e-18 - syst_JES_EtaIntercalibration_Stat61: 2.592606231188994e-13 - syst_JES_EtaIntercalibration_Stat62: 1.7087754913972755e-08 - syst_JES_EtaIntercalibration_Stat63: 1.6713088246939882e-12 - syst_JES_EtaIntercalibration_Stat64: 6.207409846304656e-16 + syst_JES_EtaIntercalibration_Stat60: 8.72731253e-18 + syst_JES_EtaIntercalibration_Stat61: 2.59260623e-13 + syst_JES_EtaIntercalibration_Stat62: 1.70877549e-08 + syst_JES_EtaIntercalibration_Stat63: 1.67130882e-12 + syst_JES_EtaIntercalibration_Stat64: 6.20740985e-16 syst_JES_EtaIntercalibration_Stat65: 0.0 - syst_JES_EtaIntercalibration_Stat66: 1.4791713896638215e-16 - syst_JES_EtaIntercalibration_Stat67: 7.537643729972915e-13 - syst_JES_EtaIntercalibration_Stat68: 2.3867795293396917e-08 - syst_JES_EtaIntercalibration_Stat69: 2.441293188019825e-08 + syst_JES_EtaIntercalibration_Stat66: 1.47917139e-16 + syst_JES_EtaIntercalibration_Stat67: 7.53764373e-13 + syst_JES_EtaIntercalibration_Stat68: 2.38677953e-08 + syst_JES_EtaIntercalibration_Stat69: 2.44129319e-08 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 7.71383301917244e-09 - syst_JES_EtaIntercalibration_Stat71: 1.9497665365050764e-15 + syst_JES_EtaIntercalibration_Stat70: 7.71383302e-09 + syst_JES_EtaIntercalibration_Stat71: 1.94976654e-15 syst_JES_EtaIntercalibration_Stat72: 0.0 syst_JES_EtaIntercalibration_Stat73: 0.0 syst_JES_EtaIntercalibration_Stat74: 0.0 @@ -58878,19 +58878,19 @@ bins: syst_JES_EtaIntercalibration_Stat79: 0.0 syst_JES_EtaIntercalibration_Stat8: 0.0 syst_JES_EtaIntercalibration_Stat80: 0.0 - syst_JES_EtaIntercalibration_Stat81: 2.019571241625311e-18 - syst_JES_EtaIntercalibration_Stat82: 1.7254618019533205e-16 - syst_JES_EtaIntercalibration_Stat83: 3.478224978347433e-12 - syst_JES_EtaIntercalibration_Stat84: 2.7020149425937672e-08 - syst_JES_EtaIntercalibration_Stat85: 2.653568101382552e-08 - syst_JES_EtaIntercalibration_Stat86: 6.810583602012386e-14 + syst_JES_EtaIntercalibration_Stat81: 2.01957124e-18 + syst_JES_EtaIntercalibration_Stat82: 1.72546180e-16 + syst_JES_EtaIntercalibration_Stat83: 3.47822498e-12 + syst_JES_EtaIntercalibration_Stat84: 2.70201494e-08 + syst_JES_EtaIntercalibration_Stat85: 2.65356810e-08 + syst_JES_EtaIntercalibration_Stat86: 6.81058360e-14 syst_JES_EtaIntercalibration_Stat87: 0.0 - syst_JES_EtaIntercalibration_Stat88: 2.4617680881837755e-12 - syst_JES_EtaIntercalibration_Stat89: 2.4524419024311258e-08 + syst_JES_EtaIntercalibration_Stat88: 2.46176809e-12 + syst_JES_EtaIntercalibration_Stat89: 2.45244190e-08 syst_JES_EtaIntercalibration_Stat9: 0.0 - syst_JES_EtaIntercalibration_Stat90: 2.968797430724266e-08 - syst_JES_EtaIntercalibration_Stat91: 7.815199674613246e-09 - syst_JES_EtaIntercalibration_Stat92: 2.21893547510963e-15 + syst_JES_EtaIntercalibration_Stat90: 2.96879743e-08 + syst_JES_EtaIntercalibration_Stat91: 7.81519967e-09 + syst_JES_EtaIntercalibration_Stat92: 2.21893548e-15 syst_JES_EtaIntercalibration_Stat93: 0.0 syst_JES_EtaIntercalibration_Stat94: 0.0 syst_JES_EtaIntercalibration_Stat95: 0.0 @@ -58898,154 +58898,154 @@ bins: syst_JES_EtaIntercalibration_Stat97: 0.0 syst_JES_EtaIntercalibration_Stat98: 0.0 syst_JES_EtaIntercalibration_Stat99: 0.0 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0004857698709265531 - syst_JES_Flavour_Comp: 0.0017719150656845832 - syst_JES_Flavour_Response: 3.567870349382107e-05 - syst_JES_Gjet_Generator: 0.002597139195345525 - syst_JES_Gjet_OOC: 0.0020953507462952354 - syst_JES_Gjet_Purity: 0.0004854266988949001 - syst_JES_Gjet_Stat1: 1.8893115320666414e-05 - syst_JES_Gjet_Stat10: 2.4080234114310436e-06 - syst_JES_Gjet_Stat11: 2.894918435811275e-05 - syst_JES_Gjet_Stat12: 0.00019459272853835006 - syst_JES_Gjet_Stat13: 0.0004858058871607054 - syst_JES_Gjet_Stat14: 0.0006285260376468106 - syst_JES_Gjet_Stat15: 3.340323749279402e-05 - syst_JES_Gjet_Stat2: 6.760565564359243e-06 - syst_JES_Gjet_Stat3: 7.427311895968823e-06 - syst_JES_Gjet_Stat4: 7.407691340761979e-06 - syst_JES_Gjet_Stat5: 7.309401617095616e-06 - syst_JES_Gjet_Stat6: 1.4784369225891919e-05 - syst_JES_Gjet_Stat7: 5.519252123250033e-06 - syst_JES_Gjet_Stat8: 1.4763718624723243e-05 - syst_JES_Gjet_Stat9: 7.371055148348844e-06 - syst_JES_Gjet_Veto: 0.0017776869100041212 - syst_JES_Gjet_dPhi: 9.741350368403756e-05 - syst_JES_LArESZee: 0.003911145484381782 - syst_JES_LArEsmear: 0.00021108800889676325 - syst_JES_LAr_JVT: 0.00032071304931355696 - syst_JES_MJB_Alpha: 1.4250749032945604e-05 - syst_JES_MJB_Asym: 0.00015030473004865814 - syst_JES_MJB_Beta: 4.786017416130033e-06 - syst_JES_MJB_Fragmentation: 0.00023374678607416188 - syst_JES_MJB_Stat1: 7.442606884015843e-07 - syst_JES_MJB_Stat10: 6.114356627438409e-07 - syst_JES_MJB_Stat11: 6.263961745572845e-06 - syst_JES_MJB_Stat12: 3.0362850656682416e-06 - syst_JES_MJB_Stat13: 1.9165142185749625e-06 + syst_JES_EtaIntercalibration_TotalStat_MJB: 4.85769871e-04 + syst_JES_Flavour_Comp: 1.77191507e-03 + syst_JES_Flavour_Response: 3.56787035e-05 + syst_JES_Gjet_Generator: 2.59713920e-03 + syst_JES_Gjet_OOC: 2.09535075e-03 + syst_JES_Gjet_Purity: 4.85426699e-04 + syst_JES_Gjet_Stat1: 1.88931153e-05 + syst_JES_Gjet_Stat10: 2.40802341e-06 + syst_JES_Gjet_Stat11: 2.89491844e-05 + syst_JES_Gjet_Stat12: 1.94592729e-04 + syst_JES_Gjet_Stat13: 4.85805887e-04 + syst_JES_Gjet_Stat14: 6.28526038e-04 + syst_JES_Gjet_Stat15: 3.34032375e-05 + syst_JES_Gjet_Stat2: 6.76056556e-06 + syst_JES_Gjet_Stat3: 7.42731190e-06 + syst_JES_Gjet_Stat4: 7.40769134e-06 + syst_JES_Gjet_Stat5: 7.30940162e-06 + syst_JES_Gjet_Stat6: 1.47843692e-05 + syst_JES_Gjet_Stat7: 5.51925212e-06 + syst_JES_Gjet_Stat8: 1.47637186e-05 + syst_JES_Gjet_Stat9: 7.37105515e-06 + syst_JES_Gjet_Veto: 1.77768691e-03 + syst_JES_Gjet_dPhi: 9.74135037e-05 + syst_JES_LArESZee: 3.91114548e-03 + syst_JES_LArEsmear: 2.11088009e-04 + syst_JES_LAr_JVT: 3.20713049e-04 + syst_JES_MJB_Alpha: 1.42507490e-05 + syst_JES_MJB_Asym: 1.50304730e-04 + syst_JES_MJB_Beta: 4.78601742e-06 + syst_JES_MJB_Fragmentation: 2.33746786e-04 + syst_JES_MJB_Stat1: 7.44260688e-07 + syst_JES_MJB_Stat10: 6.11435663e-07 + syst_JES_MJB_Stat11: 6.26396175e-06 + syst_JES_MJB_Stat12: 3.03628507e-06 + syst_JES_MJB_Stat13: 1.91651422e-06 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 1.848398766500346e-05 - syst_JES_MJB_Stat3: 1.804752614626171e-05 - syst_JES_MJB_Stat4: 1.5057463183003304e-05 - syst_JES_MJB_Stat5: 1.491683624524651e-05 - syst_JES_MJB_Stat6: 1.5340309536886796e-05 - syst_JES_MJB_Stat7: 3.946084895184086e-06 - syst_JES_MJB_Stat8: 4.729026213257335e-06 - syst_JES_MJB_Stat9: 4.729026213257335e-06 - syst_JES_MJB_Threshold: 0.0001617011121637696 - syst_JES_Pileup_MuOffset: 0.00034831831347203096 - syst_JES_Pileup_NPVOffset: 0.0003645995714479105 - syst_JES_Pileup_Pt_term: 0.001041360421516009 - syst_JES_Pileup_Rho_topology: 0.0006803780915784987 - syst_JES_PunchThrough_MC15: 5.1984801625090386e-05 + syst_JES_MJB_Stat2: 1.84839877e-05 + syst_JES_MJB_Stat3: 1.80475261e-05 + syst_JES_MJB_Stat4: 1.50574632e-05 + syst_JES_MJB_Stat5: 1.49168362e-05 + syst_JES_MJB_Stat6: 1.53403095e-05 + syst_JES_MJB_Stat7: 3.94608490e-06 + syst_JES_MJB_Stat8: 4.72902621e-06 + syst_JES_MJB_Stat9: 4.72902621e-06 + syst_JES_MJB_Threshold: 1.61701112e-04 + syst_JES_Pileup_MuOffset: 3.48318313e-04 + syst_JES_Pileup_NPVOffset: 3.64599571e-04 + syst_JES_Pileup_Pt_term: 1.04136042e-03 + syst_JES_Pileup_Rho_topology: 6.80378092e-04 + syst_JES_PunchThrough_MC15: 5.19848016e-05 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.001495416218816688 - syst_JES_Zjet_MuScale: 7.255802689399706e-05 - syst_JES_Zjet_MuSmearID: 1.4256250164401578e-05 - syst_JES_Zjet_MuSmearMS: 0.0003348528632100971 - syst_JES_Zjet_OOC: 0.0006300309040039227 - syst_JES_Zjet_Stat1: 6.173941447730128e-06 - syst_JES_Zjet_Stat10: 2.787262513650266e-06 - syst_JES_Zjet_Stat11: 3.1653213107044917e-06 - syst_JES_Zjet_Stat12: 0.0001780164792231326 - syst_JES_Zjet_Stat13: 0.000381822108710326 - syst_JES_Zjet_Stat2: 1.5963563887804002e-07 - syst_JES_Zjet_Stat3: 1.407096089496023e-05 - syst_JES_Zjet_Stat4: 1.4071022406616372e-05 - syst_JES_Zjet_Stat5: 1.4749699186085118e-05 - syst_JES_Zjet_Stat6: 1.971660931803438e-06 - syst_JES_Zjet_Stat7: 1.477898788821481e-05 - syst_JES_Zjet_Stat8: 1.4796501859138868e-05 - syst_JES_Zjet_Stat9: 6.904623577719498e-06 - syst_JES_Zjet_Veto: 9.2431485301276e-05 - syst_JES_Zjet_dPhi: 8.584386385030673e-05 + syst_JES_Zjet_MC: 1.49541622e-03 + syst_JES_Zjet_MuScale: 7.25580269e-05 + syst_JES_Zjet_MuSmearID: 1.42562502e-05 + syst_JES_Zjet_MuSmearMS: 3.34852863e-04 + syst_JES_Zjet_OOC: 6.30030904e-04 + syst_JES_Zjet_Stat1: 6.17394145e-06 + syst_JES_Zjet_Stat10: 2.78726251e-06 + syst_JES_Zjet_Stat11: 3.16532131e-06 + syst_JES_Zjet_Stat12: 1.78016479e-04 + syst_JES_Zjet_Stat13: 3.81822109e-04 + syst_JES_Zjet_Stat2: 1.59635639e-07 + syst_JES_Zjet_Stat3: 1.40709609e-05 + syst_JES_Zjet_Stat4: 1.40710224e-05 + syst_JES_Zjet_Stat5: 1.47496992e-05 + syst_JES_Zjet_Stat6: 1.97166093e-06 + syst_JES_Zjet_Stat7: 1.47789879e-05 + syst_JES_Zjet_Stat8: 1.47965019e-05 + syst_JES_Zjet_Stat9: 6.90462358e-06 + syst_JES_Zjet_Veto: 9.24314853e-05 + syst_JES_Zjet_dPhi: 8.58438639e-05 syst_PRW: 0.0 - syst_Unfolding_bias: 0.0002619 - syst_cleaning: 0.0003750756023790404 - syst_lumi: 0.0013666 -- stat: 0.0008558 - syst_JER_CROSS_CALIB_FORWARD: 5.095e-08 - syst_JER_NOISE_FORWARD: 9.919e-06 - syst_JER_NP0: 3.100085321406493e-05 - syst_JER_NP1: 0.0007357917827075809 - syst_JER_NP2: 6.287528857593816e-06 - syst_JER_NP3: 4.832279275869721e-06 - syst_JER_NP4: 4.60533090559191e-06 - syst_JER_NP5: 2.149676894326215e-08 - syst_JER_NP6: 1.5776332748772766e-08 - syst_JER_NP7: 1.083181929893777e-11 - syst_JER_NP8: 4.391799623807421e-06 - syst_JES_EtaIntercalibration_Modelling: 0.0020311895529467453 - syst_JES_EtaIntercalibration_NonClosure: 0.0008857135541471634 + syst_Unfolding_bias: 2.61900000e-04 + syst_cleaning: 3.75075602e-04 + syst_lumi: 1.36660000e-03 +- stat: 8.55800000e-04 + syst_JER_CROSS_CALIB_FORWARD: 5.09500000e-08 + syst_JER_NOISE_FORWARD: 9.91900000e-06 + syst_JER_NP0: 3.10008532e-05 + syst_JER_NP1: 7.35791783e-04 + syst_JER_NP2: 6.28752886e-06 + syst_JER_NP3: 4.83227928e-06 + syst_JER_NP4: 4.60533091e-06 + syst_JER_NP5: 2.14967689e-08 + syst_JER_NP6: 1.57763327e-08 + syst_JER_NP7: 1.08318193e-11 + syst_JER_NP8: 4.39179962e-06 + syst_JES_EtaIntercalibration_Modelling: 2.03118955e-03 + syst_JES_EtaIntercalibration_NonClosure: 8.85713554e-04 syst_JES_EtaIntercalibration_Stat0: 0.0 - syst_JES_EtaIntercalibration_Stat1: 4.136137328474479e-18 + syst_JES_EtaIntercalibration_Stat1: 4.13613733e-18 syst_JES_EtaIntercalibration_Stat10: 0.0 syst_JES_EtaIntercalibration_Stat100: 0.0 syst_JES_EtaIntercalibration_Stat101: 0.0 syst_JES_EtaIntercalibration_Stat102: 0.0 - syst_JES_EtaIntercalibration_Stat103: 3.67032232916947e-17 - syst_JES_EtaIntercalibration_Stat104: 5.027049791721582e-10 - syst_JES_EtaIntercalibration_Stat105: 6.427805206094845e-09 - syst_JES_EtaIntercalibration_Stat106: 3.1994797697242906e-09 - syst_JES_EtaIntercalibration_Stat107: 8.501340306092917e-15 - syst_JES_EtaIntercalibration_Stat108: 2.3699912051102636e-10 - syst_JES_EtaIntercalibration_Stat109: 1.361161239530424e-07 + syst_JES_EtaIntercalibration_Stat103: 3.67032233e-17 + syst_JES_EtaIntercalibration_Stat104: 5.02704979e-10 + syst_JES_EtaIntercalibration_Stat105: 6.42780521e-09 + syst_JES_EtaIntercalibration_Stat106: 3.19947977e-09 + syst_JES_EtaIntercalibration_Stat107: 8.50134031e-15 + syst_JES_EtaIntercalibration_Stat108: 2.36999121e-10 + syst_JES_EtaIntercalibration_Stat109: 1.36116124e-07 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 3.904824372321373e-06 - syst_JES_EtaIntercalibration_Stat111: 4.242272121163375e-09 - syst_JES_EtaIntercalibration_Stat112: 7.36812531974493e-10 + syst_JES_EtaIntercalibration_Stat110: 3.90482437e-06 + syst_JES_EtaIntercalibration_Stat111: 4.24227212e-09 + syst_JES_EtaIntercalibration_Stat112: 7.36812532e-10 syst_JES_EtaIntercalibration_Stat113: 0.0 syst_JES_EtaIntercalibration_Stat114: 0.0 syst_JES_EtaIntercalibration_Stat115: 0.0 syst_JES_EtaIntercalibration_Stat116: 0.0 syst_JES_EtaIntercalibration_Stat117: 0.0 - syst_JES_EtaIntercalibration_Stat118: 2.4517179181137456e-17 - syst_JES_EtaIntercalibration_Stat119: 2.4517179181137456e-17 + syst_JES_EtaIntercalibration_Stat118: 2.45171792e-17 + syst_JES_EtaIntercalibration_Stat119: 2.45171792e-17 syst_JES_EtaIntercalibration_Stat12: 0.0 syst_JES_EtaIntercalibration_Stat120: 0.0 syst_JES_EtaIntercalibration_Stat121: 0.0 syst_JES_EtaIntercalibration_Stat122: 0.0 - syst_JES_EtaIntercalibration_Stat123: 1.910927384805608e-13 - syst_JES_EtaIntercalibration_Stat124: 2.126440689861817e-08 - syst_JES_EtaIntercalibration_Stat125: 9.720040264834298e-07 - syst_JES_EtaIntercalibration_Stat126: 5.46767701199513e-07 - syst_JES_EtaIntercalibration_Stat127: 5.238882425670574e-10 - syst_JES_EtaIntercalibration_Stat128: 3.533599607694681e-06 - syst_JES_EtaIntercalibration_Stat129: 9.204695377903607e-06 + syst_JES_EtaIntercalibration_Stat123: 1.91092738e-13 + syst_JES_EtaIntercalibration_Stat124: 2.12644069e-08 + syst_JES_EtaIntercalibration_Stat125: 9.72004026e-07 + syst_JES_EtaIntercalibration_Stat126: 5.46767701e-07 + syst_JES_EtaIntercalibration_Stat127: 5.23888243e-10 + syst_JES_EtaIntercalibration_Stat128: 3.53359961e-06 + syst_JES_EtaIntercalibration_Stat129: 9.20469538e-06 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 1.3535225182833126e-06 - syst_JES_EtaIntercalibration_Stat131: 1.4692927232994623e-09 + syst_JES_EtaIntercalibration_Stat130: 1.35352252e-06 + syst_JES_EtaIntercalibration_Stat131: 1.46929272e-09 syst_JES_EtaIntercalibration_Stat132: 0.0 syst_JES_EtaIntercalibration_Stat133: 0.0 syst_JES_EtaIntercalibration_Stat134: 0.0 syst_JES_EtaIntercalibration_Stat135: 0.0 syst_JES_EtaIntercalibration_Stat136: 0.0 - syst_JES_EtaIntercalibration_Stat137: 2.4517179181137456e-17 - syst_JES_EtaIntercalibration_Stat138: 2.4517179181137456e-17 - syst_JES_EtaIntercalibration_Stat139: 1.2626650387177115e-16 + syst_JES_EtaIntercalibration_Stat137: 2.45171792e-17 + syst_JES_EtaIntercalibration_Stat138: 2.45171792e-17 + syst_JES_EtaIntercalibration_Stat139: 1.26266504e-16 syst_JES_EtaIntercalibration_Stat14: 0.0 syst_JES_EtaIntercalibration_Stat140: 0.0 syst_JES_EtaIntercalibration_Stat141: 0.0 - syst_JES_EtaIntercalibration_Stat142: 4.916655178518014e-10 - syst_JES_EtaIntercalibration_Stat143: 3.6193051277144345e-06 - syst_JES_EtaIntercalibration_Stat144: 8.97052774367261e-06 - syst_JES_EtaIntercalibration_Stat145: 1.3601253417240635e-05 - syst_JES_EtaIntercalibration_Stat146: 6.66940152862309e-06 - syst_JES_EtaIntercalibration_Stat147: 7.410662027612648e-06 - syst_JES_EtaIntercalibration_Stat148: 1.752394384463726e-06 - syst_JES_EtaIntercalibration_Stat149: 1.551043040663524e-09 + syst_JES_EtaIntercalibration_Stat142: 4.91665518e-10 + syst_JES_EtaIntercalibration_Stat143: 3.61930513e-06 + syst_JES_EtaIntercalibration_Stat144: 8.97052774e-06 + syst_JES_EtaIntercalibration_Stat145: 1.36012534e-05 + syst_JES_EtaIntercalibration_Stat146: 6.66940153e-06 + syst_JES_EtaIntercalibration_Stat147: 7.41066203e-06 + syst_JES_EtaIntercalibration_Stat148: 1.75239438e-06 + syst_JES_EtaIntercalibration_Stat149: 1.55104304e-09 syst_JES_EtaIntercalibration_Stat15: 0.0 syst_JES_EtaIntercalibration_Stat150: 0.0 syst_JES_EtaIntercalibration_Stat151: 0.0 @@ -59053,60 +59053,60 @@ bins: syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 2.4517179181137456e-17 - syst_JES_EtaIntercalibration_Stat157: 1.2626650387177115e-16 + syst_JES_EtaIntercalibration_Stat156: 2.45171792e-17 + syst_JES_EtaIntercalibration_Stat157: 1.26266504e-16 syst_JES_EtaIntercalibration_Stat158: 0.0 syst_JES_EtaIntercalibration_Stat159: 0.0 - syst_JES_EtaIntercalibration_Stat16: 2.244737846609265e-19 - syst_JES_EtaIntercalibration_Stat160: 4.886351500825207e-10 - syst_JES_EtaIntercalibration_Stat161: 4.364330733342743e-06 - syst_JES_EtaIntercalibration_Stat162: 1.4928155503946229e-05 - syst_JES_EtaIntercalibration_Stat163: 2.3387733259125393e-05 - syst_JES_EtaIntercalibration_Stat164: 2.8690723357036506e-05 - syst_JES_EtaIntercalibration_Stat165: 4.5765852717938076e-05 - syst_JES_EtaIntercalibration_Stat166: 2.423448111678895e-06 - syst_JES_EtaIntercalibration_Stat167: 1.5846293951583758e-09 + syst_JES_EtaIntercalibration_Stat16: 2.24473785e-19 + syst_JES_EtaIntercalibration_Stat160: 4.88635150e-10 + syst_JES_EtaIntercalibration_Stat161: 4.36433073e-06 + syst_JES_EtaIntercalibration_Stat162: 1.49281555e-05 + syst_JES_EtaIntercalibration_Stat163: 2.33877333e-05 + syst_JES_EtaIntercalibration_Stat164: 2.86907234e-05 + syst_JES_EtaIntercalibration_Stat165: 4.57658527e-05 + syst_JES_EtaIntercalibration_Stat166: 2.42344811e-06 + syst_JES_EtaIntercalibration_Stat167: 1.58462940e-09 syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 - syst_JES_EtaIntercalibration_Stat17: 1.1848050219339889e-18 + syst_JES_EtaIntercalibration_Stat17: 1.18480502e-18 syst_JES_EtaIntercalibration_Stat170: 0.0 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 - syst_JES_EtaIntercalibration_Stat174: 1.2626650387177115e-16 - syst_JES_EtaIntercalibration_Stat175: 1.2626650387177115e-16 + syst_JES_EtaIntercalibration_Stat174: 1.26266504e-16 + syst_JES_EtaIntercalibration_Stat175: 1.26266504e-16 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 - syst_JES_EtaIntercalibration_Stat178: 1.9606991578261057e-08 - syst_JES_EtaIntercalibration_Stat179: 6.047886516792457e-06 - syst_JES_EtaIntercalibration_Stat18: 5.319654500059191e-17 - syst_JES_EtaIntercalibration_Stat180: 5.2517727245188365e-05 - syst_JES_EtaIntercalibration_Stat181: 6.196237981226996e-05 - syst_JES_EtaIntercalibration_Stat182: 0.0003232182350982073 - syst_JES_EtaIntercalibration_Stat183: 5.260958182688777e-05 - syst_JES_EtaIntercalibration_Stat184: 3.294555356795394e-07 + syst_JES_EtaIntercalibration_Stat178: 1.96069916e-08 + syst_JES_EtaIntercalibration_Stat179: 6.04788652e-06 + syst_JES_EtaIntercalibration_Stat18: 5.31965450e-17 + syst_JES_EtaIntercalibration_Stat180: 5.25177272e-05 + syst_JES_EtaIntercalibration_Stat181: 6.19623798e-05 + syst_JES_EtaIntercalibration_Stat182: 3.23218235e-04 + syst_JES_EtaIntercalibration_Stat183: 5.26095818e-05 + syst_JES_EtaIntercalibration_Stat184: 3.29455536e-07 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 syst_JES_EtaIntercalibration_Stat187: 0.0 - syst_JES_EtaIntercalibration_Stat188: 3.588809273282713e-14 + syst_JES_EtaIntercalibration_Stat188: 3.58880927e-14 syst_JES_EtaIntercalibration_Stat189: 0.0 - syst_JES_EtaIntercalibration_Stat19: 3.4307402524819625e-17 + syst_JES_EtaIntercalibration_Stat19: 3.43074025e-17 syst_JES_EtaIntercalibration_Stat190: 0.0 - syst_JES_EtaIntercalibration_Stat191: 1.2626650387177115e-16 - syst_JES_EtaIntercalibration_Stat192: 1.2626650387177115e-16 + syst_JES_EtaIntercalibration_Stat191: 1.26266504e-16 + syst_JES_EtaIntercalibration_Stat192: 1.26266504e-16 syst_JES_EtaIntercalibration_Stat193: 0.0 syst_JES_EtaIntercalibration_Stat194: 0.0 - syst_JES_EtaIntercalibration_Stat195: 4.217786161898207e-07 - syst_JES_EtaIntercalibration_Stat196: 3.220188374536495e-05 - syst_JES_EtaIntercalibration_Stat197: 0.0002802876736497701 - syst_JES_EtaIntercalibration_Stat198: 8.231149661499298e-05 - syst_JES_EtaIntercalibration_Stat199: 1.2618271385526593e-06 - syst_JES_EtaIntercalibration_Stat2: 1.3658404177282206e-16 + syst_JES_EtaIntercalibration_Stat195: 4.21778616e-07 + syst_JES_EtaIntercalibration_Stat196: 3.22018837e-05 + syst_JES_EtaIntercalibration_Stat197: 2.80287674e-04 + syst_JES_EtaIntercalibration_Stat198: 8.23114966e-05 + syst_JES_EtaIntercalibration_Stat199: 1.26182714e-06 + syst_JES_EtaIntercalibration_Stat2: 1.36584042e-16 syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 syst_JES_EtaIntercalibration_Stat201: 0.0 syst_JES_EtaIntercalibration_Stat202: 0.0 - syst_JES_EtaIntercalibration_Stat203: 3.588809273282713e-14 + syst_JES_EtaIntercalibration_Stat203: 3.58880927e-14 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 @@ -59114,9 +59114,9 @@ bins: syst_JES_EtaIntercalibration_Stat208: 0.0 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 4.806580794252293e-06 - syst_JES_EtaIntercalibration_Stat211: 6.819617217996916e-05 - syst_JES_EtaIntercalibration_Stat212: 1.7909405350262191e-06 + syst_JES_EtaIntercalibration_Stat210: 4.80658079e-06 + syst_JES_EtaIntercalibration_Stat211: 6.81961722e-05 + syst_JES_EtaIntercalibration_Stat212: 1.79094054e-06 syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 syst_JES_EtaIntercalibration_Stat215: 0.0 @@ -59128,37 +59128,37 @@ bins: syst_JES_EtaIntercalibration_Stat220: 0.0 syst_JES_EtaIntercalibration_Stat221: 0.0 syst_JES_EtaIntercalibration_Stat222: 0.0 - syst_JES_EtaIntercalibration_Stat223: 4.841948032558797e-06 - syst_JES_EtaIntercalibration_Stat224: 1.7935386112375727e-06 + syst_JES_EtaIntercalibration_Stat223: 4.84194803e-06 + syst_JES_EtaIntercalibration_Stat224: 1.79353861e-06 syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 syst_JES_EtaIntercalibration_Stat227: 0.0 syst_JES_EtaIntercalibration_Stat228: 0.0 syst_JES_EtaIntercalibration_Stat229: 0.0 - syst_JES_EtaIntercalibration_Stat23: 1.0787033452599467e-16 + syst_JES_EtaIntercalibration_Stat23: 1.07870335e-16 syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 syst_JES_EtaIntercalibration_Stat232: 0.0 syst_JES_EtaIntercalibration_Stat233: 0.0 syst_JES_EtaIntercalibration_Stat234: 0.0 - syst_JES_EtaIntercalibration_Stat235: 3.8529470214369676e-06 + syst_JES_EtaIntercalibration_Stat235: 3.85294702e-06 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 syst_JES_EtaIntercalibration_Stat239: 0.0 - syst_JES_EtaIntercalibration_Stat24: 4.814018565606078e-14 + syst_JES_EtaIntercalibration_Stat24: 4.81401857e-14 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 syst_JES_EtaIntercalibration_Stat243: 0.0 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 - syst_JES_EtaIntercalibration_Stat25: 7.727439807985577e-10 - syst_JES_EtaIntercalibration_Stat26: 2.1649695627190699e-16 + syst_JES_EtaIntercalibration_Stat25: 7.72743981e-10 + syst_JES_EtaIntercalibration_Stat26: 2.16496956e-16 syst_JES_EtaIntercalibration_Stat27: 0.0 syst_JES_EtaIntercalibration_Stat28: 0.0 syst_JES_EtaIntercalibration_Stat29: 0.0 - syst_JES_EtaIntercalibration_Stat3: 1.890658765483608e-16 + syst_JES_EtaIntercalibration_Stat3: 1.89065877e-16 syst_JES_EtaIntercalibration_Stat30: 0.0 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 @@ -59167,19 +59167,19 @@ bins: syst_JES_EtaIntercalibration_Stat35: 0.0 syst_JES_EtaIntercalibration_Stat36: 0.0 syst_JES_EtaIntercalibration_Stat37: 0.0 - syst_JES_EtaIntercalibration_Stat38: 2.244737846609265e-19 - syst_JES_EtaIntercalibration_Stat39: 8.35996726967277e-17 + syst_JES_EtaIntercalibration_Stat38: 2.24473785e-19 + syst_JES_EtaIntercalibration_Stat39: 8.35996727e-17 syst_JES_EtaIntercalibration_Stat4: 0.0 - syst_JES_EtaIntercalibration_Stat40: 3.5044615492255014e-14 - syst_JES_EtaIntercalibration_Stat41: 5.919317760519366e-15 - syst_JES_EtaIntercalibration_Stat42: 5.065382586735182e-18 + syst_JES_EtaIntercalibration_Stat40: 3.50446155e-14 + syst_JES_EtaIntercalibration_Stat41: 5.91931776e-15 + syst_JES_EtaIntercalibration_Stat42: 5.06538259e-18 syst_JES_EtaIntercalibration_Stat43: 0.0 - syst_JES_EtaIntercalibration_Stat44: 1.5268027868719652e-17 - syst_JES_EtaIntercalibration_Stat45: 5.88410118454807e-16 - syst_JES_EtaIntercalibration_Stat46: 2.2549876246888805e-10 - syst_JES_EtaIntercalibration_Stat47: 7.692686171466701e-10 - syst_JES_EtaIntercalibration_Stat48: 2.3559551582107838e-14 - syst_JES_EtaIntercalibration_Stat49: 9.522815340013687e-18 + syst_JES_EtaIntercalibration_Stat44: 1.52680279e-17 + syst_JES_EtaIntercalibration_Stat45: 5.88410118e-16 + syst_JES_EtaIntercalibration_Stat46: 2.25498762e-10 + syst_JES_EtaIntercalibration_Stat47: 7.69268617e-10 + syst_JES_EtaIntercalibration_Stat48: 2.35595516e-14 + syst_JES_EtaIntercalibration_Stat49: 9.52281534e-18 syst_JES_EtaIntercalibration_Stat5: 0.0 syst_JES_EtaIntercalibration_Stat50: 0.0 syst_JES_EtaIntercalibration_Stat51: 0.0 @@ -59190,21 +59190,21 @@ bins: syst_JES_EtaIntercalibration_Stat56: 0.0 syst_JES_EtaIntercalibration_Stat57: 0.0 syst_JES_EtaIntercalibration_Stat58: 0.0 - syst_JES_EtaIntercalibration_Stat59: 2.244737846609265e-19 + syst_JES_EtaIntercalibration_Stat59: 2.24473785e-19 syst_JES_EtaIntercalibration_Stat6: 0.0 - syst_JES_EtaIntercalibration_Stat60: 8.9512771574787e-19 - syst_JES_EtaIntercalibration_Stat61: 2.0190983055562203e-14 - syst_JES_EtaIntercalibration_Stat62: 2.0932599742984626e-09 - syst_JES_EtaIntercalibration_Stat63: 1.2907040404368462e-13 - syst_JES_EtaIntercalibration_Stat64: 5.607785124271435e-17 + syst_JES_EtaIntercalibration_Stat60: 8.95127716e-19 + syst_JES_EtaIntercalibration_Stat61: 2.01909831e-14 + syst_JES_EtaIntercalibration_Stat62: 2.09325997e-09 + syst_JES_EtaIntercalibration_Stat63: 1.29070404e-13 + syst_JES_EtaIntercalibration_Stat64: 5.60778512e-17 syst_JES_EtaIntercalibration_Stat65: 0.0 - syst_JES_EtaIntercalibration_Stat66: 1.5268027868719652e-17 - syst_JES_EtaIntercalibration_Stat67: 5.882492073942812e-14 - syst_JES_EtaIntercalibration_Stat68: 2.6078314490587765e-09 - syst_JES_EtaIntercalibration_Stat69: 2.6771491551088446e-09 + syst_JES_EtaIntercalibration_Stat66: 1.52680279e-17 + syst_JES_EtaIntercalibration_Stat67: 5.88249207e-14 + syst_JES_EtaIntercalibration_Stat68: 2.60783145e-09 + syst_JES_EtaIntercalibration_Stat69: 2.67714916e-09 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 7.725235167604931e-10 - syst_JES_EtaIntercalibration_Stat71: 1.7223153565767216e-16 + syst_JES_EtaIntercalibration_Stat70: 7.72523517e-10 + syst_JES_EtaIntercalibration_Stat71: 1.72231536e-16 syst_JES_EtaIntercalibration_Stat72: 0.0 syst_JES_EtaIntercalibration_Stat73: 0.0 syst_JES_EtaIntercalibration_Stat74: 0.0 @@ -59215,19 +59215,19 @@ bins: syst_JES_EtaIntercalibration_Stat79: 0.0 syst_JES_EtaIntercalibration_Stat8: 0.0 syst_JES_EtaIntercalibration_Stat80: 0.0 - syst_JES_EtaIntercalibration_Stat81: 2.244737846609265e-19 - syst_JES_EtaIntercalibration_Stat82: 1.5854603495515113e-17 - syst_JES_EtaIntercalibration_Stat83: 2.683038203231553e-13 - syst_JES_EtaIntercalibration_Stat84: 2.95701215418537e-09 - syst_JES_EtaIntercalibration_Stat85: 3.1027918528439834e-09 - syst_JES_EtaIntercalibration_Stat86: 5.4395031023063125e-15 + syst_JES_EtaIntercalibration_Stat81: 2.24473785e-19 + syst_JES_EtaIntercalibration_Stat82: 1.58546035e-17 + syst_JES_EtaIntercalibration_Stat83: 2.68303820e-13 + syst_JES_EtaIntercalibration_Stat84: 2.95701215e-09 + syst_JES_EtaIntercalibration_Stat85: 3.10279185e-09 + syst_JES_EtaIntercalibration_Stat86: 5.43950310e-15 syst_JES_EtaIntercalibration_Stat87: 0.0 - syst_JES_EtaIntercalibration_Stat88: 1.8931292051785584e-13 - syst_JES_EtaIntercalibration_Stat89: 6.697748649173094e-10 + syst_JES_EtaIntercalibration_Stat88: 1.89312921e-13 + syst_JES_EtaIntercalibration_Stat89: 6.69774865e-10 syst_JES_EtaIntercalibration_Stat9: 0.0 - syst_JES_EtaIntercalibration_Stat90: 3.723988479198076e-09 - syst_JES_EtaIntercalibration_Stat91: 7.826492348049349e-10 - syst_JES_EtaIntercalibration_Stat92: 1.958647870343212e-16 + syst_JES_EtaIntercalibration_Stat90: 3.72398848e-09 + syst_JES_EtaIntercalibration_Stat91: 7.82649235e-10 + syst_JES_EtaIntercalibration_Stat92: 1.95864787e-16 syst_JES_EtaIntercalibration_Stat93: 0.0 syst_JES_EtaIntercalibration_Stat94: 0.0 syst_JES_EtaIntercalibration_Stat95: 0.0 @@ -59235,154 +59235,154 @@ bins: syst_JES_EtaIntercalibration_Stat97: 0.0 syst_JES_EtaIntercalibration_Stat98: 0.0 syst_JES_EtaIntercalibration_Stat99: 0.0 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0002547319522556996 - syst_JES_Flavour_Comp: 0.0008752860618106516 - syst_JES_Flavour_Response: 6.093241583919023e-05 - syst_JES_Gjet_Generator: 0.001203133720747615 - syst_JES_Gjet_OOC: 0.0009942431644220642 - syst_JES_Gjet_Purity: 0.000225501175163235 - syst_JES_Gjet_Stat1: 9.311795687191595e-06 - syst_JES_Gjet_Stat10: 1.5318436049414446e-05 - syst_JES_Gjet_Stat11: 9.191219287994385e-06 - syst_JES_Gjet_Stat12: 9.092330119391838e-05 - syst_JES_Gjet_Stat13: 0.0002347719478557862 - syst_JES_Gjet_Stat14: 0.00041791519175545655 - syst_JES_Gjet_Stat15: 4.218425387511317e-05 - syst_JES_Gjet_Stat2: 6.5398011137572065e-06 - syst_JES_Gjet_Stat3: 9.22882024258789e-06 - syst_JES_Gjet_Stat4: 9.225907890690216e-06 - syst_JES_Gjet_Stat5: 9.212441750562117e-06 - syst_JES_Gjet_Stat6: 1.5033032933759574e-05 - syst_JES_Gjet_Stat7: 1.8684456822450045e-05 - syst_JES_Gjet_Stat8: 1.5023134635288336e-05 - syst_JES_Gjet_Stat9: 1.4431256728019219e-05 - syst_JES_Gjet_Veto: 0.0008996993497830262 - syst_JES_Gjet_dPhi: 6.428465135629188e-05 - syst_JES_LArESZee: 0.00178425579724433 - syst_JES_LArEsmear: 0.00010155961992839477 - syst_JES_LAr_JVT: 0.0001477492700489583 - syst_JES_MJB_Alpha: 2.6208429998761846e-06 - syst_JES_MJB_Asym: 8.065104277069206e-05 - syst_JES_MJB_Beta: 1.4148759456839318e-05 - syst_JES_MJB_Fragmentation: 8.955821067886518e-05 - syst_JES_MJB_Stat1: 8.55466964587178e-08 - syst_JES_MJB_Stat10: 2.4504274973971376e-07 - syst_JES_MJB_Stat11: 1.2687272165442026e-08 - syst_JES_MJB_Stat12: 7.057241015439391e-07 - syst_JES_MJB_Stat13: 1.7909405350262191e-06 + syst_JES_EtaIntercalibration_TotalStat_MJB: 2.54731952e-04 + syst_JES_Flavour_Comp: 8.75286062e-04 + syst_JES_Flavour_Response: 6.09324158e-05 + syst_JES_Gjet_Generator: 1.20313372e-03 + syst_JES_Gjet_OOC: 9.94243164e-04 + syst_JES_Gjet_Purity: 2.25501175e-04 + syst_JES_Gjet_Stat1: 9.31179569e-06 + syst_JES_Gjet_Stat10: 1.53184360e-05 + syst_JES_Gjet_Stat11: 9.19121929e-06 + syst_JES_Gjet_Stat12: 9.09233012e-05 + syst_JES_Gjet_Stat13: 2.34771948e-04 + syst_JES_Gjet_Stat14: 4.17915192e-04 + syst_JES_Gjet_Stat15: 4.21842539e-05 + syst_JES_Gjet_Stat2: 6.53980111e-06 + syst_JES_Gjet_Stat3: 9.22882024e-06 + syst_JES_Gjet_Stat4: 9.22590789e-06 + syst_JES_Gjet_Stat5: 9.21244175e-06 + syst_JES_Gjet_Stat6: 1.50330329e-05 + syst_JES_Gjet_Stat7: 1.86844568e-05 + syst_JES_Gjet_Stat8: 1.50231346e-05 + syst_JES_Gjet_Stat9: 1.44312567e-05 + syst_JES_Gjet_Veto: 8.99699350e-04 + syst_JES_Gjet_dPhi: 6.42846514e-05 + syst_JES_LArESZee: 1.78425580e-03 + syst_JES_LArEsmear: 1.01559620e-04 + syst_JES_LAr_JVT: 1.47749270e-04 + syst_JES_MJB_Alpha: 2.62084300e-06 + syst_JES_MJB_Asym: 8.06510428e-05 + syst_JES_MJB_Beta: 1.41487595e-05 + syst_JES_MJB_Fragmentation: 8.95582107e-05 + syst_JES_MJB_Stat1: 8.55466965e-08 + syst_JES_MJB_Stat10: 2.45042750e-07 + syst_JES_MJB_Stat11: 1.26872722e-08 + syst_JES_MJB_Stat12: 7.05724102e-07 + syst_JES_MJB_Stat13: 1.79094054e-06 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 1.252276397635522e-05 - syst_JES_MJB_Stat3: 1.8854644202423974e-06 - syst_JES_MJB_Stat4: 1.52681036545964e-05 - syst_JES_MJB_Stat5: 1.5057806502525526e-05 - syst_JES_MJB_Stat6: 1.9713707794324233e-06 - syst_JES_MJB_Stat7: 6.906203915321355e-06 - syst_JES_MJB_Stat8: 7.3242446121562595e-06 - syst_JES_MJB_Stat9: 7.3242446121562595e-06 - syst_JES_MJB_Threshold: 9.258550142975951e-05 - syst_JES_Pileup_MuOffset: 0.00014920542885565524 - syst_JES_Pileup_NPVOffset: 0.00013600999963237997 - syst_JES_Pileup_Pt_term: 0.00041517467408309 - syst_JES_Pileup_Rho_topology: 0.00033022284521213853 - syst_JES_PunchThrough_MC15: 5.322138949708097e-05 + syst_JES_MJB_Stat2: 1.25227640e-05 + syst_JES_MJB_Stat3: 1.88546442e-06 + syst_JES_MJB_Stat4: 1.52681037e-05 + syst_JES_MJB_Stat5: 1.50578065e-05 + syst_JES_MJB_Stat6: 1.97137078e-06 + syst_JES_MJB_Stat7: 6.90620392e-06 + syst_JES_MJB_Stat8: 7.32424461e-06 + syst_JES_MJB_Stat9: 7.32424461e-06 + syst_JES_MJB_Threshold: 9.25855014e-05 + syst_JES_Pileup_MuOffset: 1.49205429e-04 + syst_JES_Pileup_NPVOffset: 1.36010000e-04 + syst_JES_Pileup_Pt_term: 4.15174674e-04 + syst_JES_Pileup_Rho_topology: 3.30222845e-04 + syst_JES_PunchThrough_MC15: 5.32213895e-05 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.0006392283160186194 - syst_JES_Zjet_MuScale: 4.1692868486948705e-05 - syst_JES_Zjet_MuSmearID: 1.4938287514554672e-05 - syst_JES_Zjet_MuSmearMS: 0.00012433355812088706 - syst_JES_Zjet_OOC: 0.0002958880320323889 - syst_JES_Zjet_Stat1: 1.5113814872493312e-05 - syst_JES_Zjet_Stat10: 1.5505681241080638e-05 - syst_JES_Zjet_Stat11: 1.2955853387561933e-05 - syst_JES_Zjet_Stat12: 9.075408241506274e-05 - syst_JES_Zjet_Stat13: 0.00015810382055788533 - syst_JES_Zjet_Stat2: 3.87416245787396e-08 - syst_JES_Zjet_Stat3: 1.4917304605306549e-05 - syst_JES_Zjet_Stat4: 1.4917304605306549e-05 - syst_JES_Zjet_Stat5: 1.5024009385979495e-05 - syst_JES_Zjet_Stat6: 1.81320805305817e-05 - syst_JES_Zjet_Stat7: 1.5026176692941553e-05 - syst_JES_Zjet_Stat8: 1.502612252271024e-05 - syst_JES_Zjet_Stat9: 1.4497085195566038e-05 - syst_JES_Zjet_Veto: 4.041773713359025e-05 - syst_JES_Zjet_dPhi: 4.106223199912543e-05 + syst_JES_Zjet_MC: 6.39228316e-04 + syst_JES_Zjet_MuScale: 4.16928685e-05 + syst_JES_Zjet_MuSmearID: 1.49382875e-05 + syst_JES_Zjet_MuSmearMS: 1.24333558e-04 + syst_JES_Zjet_OOC: 2.95888032e-04 + syst_JES_Zjet_Stat1: 1.51138149e-05 + syst_JES_Zjet_Stat10: 1.55056812e-05 + syst_JES_Zjet_Stat11: 1.29558534e-05 + syst_JES_Zjet_Stat12: 9.07540824e-05 + syst_JES_Zjet_Stat13: 1.58103821e-04 + syst_JES_Zjet_Stat2: 3.87416246e-08 + syst_JES_Zjet_Stat3: 1.49173046e-05 + syst_JES_Zjet_Stat4: 1.49173046e-05 + syst_JES_Zjet_Stat5: 1.50240094e-05 + syst_JES_Zjet_Stat6: 1.81320805e-05 + syst_JES_Zjet_Stat7: 1.50261767e-05 + syst_JES_Zjet_Stat8: 1.50261225e-05 + syst_JES_Zjet_Stat9: 1.44970852e-05 + syst_JES_Zjet_Veto: 4.04177371e-05 + syst_JES_Zjet_dPhi: 4.10622320e-05 syst_PRW: 0.0 - syst_Unfolding_bias: 0.00010596 - syst_cleaning: 0.00014505925513389349 - syst_lumi: 0.0005165 -- stat: 0.0003632 - syst_JER_CROSS_CALIB_FORWARD: 1.0021e-08 - syst_JER_NOISE_FORWARD: 1.0148e-06 - syst_JER_NP0: 4.048613929482533e-06 - syst_JER_NP1: 0.0002935458737574078 - syst_JER_NP2: 7.027650832618251e-07 - syst_JER_NP3: 4.98946938561607e-07 - syst_JER_NP4: 4.76735073180063e-07 - syst_JER_NP5: 1.5041495936242512e-09 - syst_JER_NP6: 1.104205637551267e-09 - syst_JER_NP7: 7.553361713277125e-13 - syst_JER_NP8: 4.5622268072948767e-07 - syst_JES_EtaIntercalibration_Modelling: 0.0007937834150446834 - syst_JES_EtaIntercalibration_NonClosure: 0.0005628872800126149 + syst_Unfolding_bias: 1.05960000e-04 + syst_cleaning: 1.45059255e-04 + syst_lumi: 5.16500000e-04 +- stat: 3.63200000e-04 + syst_JER_CROSS_CALIB_FORWARD: 1.00210000e-08 + syst_JER_NOISE_FORWARD: 1.01480000e-06 + syst_JER_NP0: 4.04861393e-06 + syst_JER_NP1: 2.93545874e-04 + syst_JER_NP2: 7.02765083e-07 + syst_JER_NP3: 4.98946939e-07 + syst_JER_NP4: 4.76735073e-07 + syst_JER_NP5: 1.50414959e-09 + syst_JER_NP6: 1.10420564e-09 + syst_JER_NP7: 7.55336171e-13 + syst_JER_NP8: 4.56222681e-07 + syst_JES_EtaIntercalibration_Modelling: 7.93783415e-04 + syst_JES_EtaIntercalibration_NonClosure: 5.62887280e-04 syst_JES_EtaIntercalibration_Stat0: 0.0 - syst_JES_EtaIntercalibration_Stat1: 3.4952785296739944e-19 + syst_JES_EtaIntercalibration_Stat1: 3.49527853e-19 syst_JES_EtaIntercalibration_Stat10: 0.0 syst_JES_EtaIntercalibration_Stat100: 0.0 syst_JES_EtaIntercalibration_Stat101: 0.0 syst_JES_EtaIntercalibration_Stat102: 0.0 - syst_JES_EtaIntercalibration_Stat103: 2.9183868831942074e-18 - syst_JES_EtaIntercalibration_Stat104: 5.7643771996918055e-11 - syst_JES_EtaIntercalibration_Stat105: 6.055712096855333e-10 - syst_JES_EtaIntercalibration_Stat106: 2.819255973248971e-10 - syst_JES_EtaIntercalibration_Stat107: 6.236009842038417e-16 - syst_JES_EtaIntercalibration_Stat108: 1.8823654180511817e-11 - syst_JES_EtaIntercalibration_Stat109: 2.1424774368706896e-08 + syst_JES_EtaIntercalibration_Stat103: 2.91838688e-18 + syst_JES_EtaIntercalibration_Stat104: 5.76437720e-11 + syst_JES_EtaIntercalibration_Stat105: 6.05571210e-10 + syst_JES_EtaIntercalibration_Stat106: 2.81925597e-10 + syst_JES_EtaIntercalibration_Stat107: 6.23600984e-16 + syst_JES_EtaIntercalibration_Stat108: 1.88236542e-11 + syst_JES_EtaIntercalibration_Stat109: 2.14247744e-08 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 1.8962872061742124e-06 - syst_JES_EtaIntercalibration_Stat111: 3.8170963031471976e-10 - syst_JES_EtaIntercalibration_Stat112: 5.859514470281553e-11 + syst_JES_EtaIntercalibration_Stat110: 1.89628721e-06 + syst_JES_EtaIntercalibration_Stat111: 3.81709630e-10 + syst_JES_EtaIntercalibration_Stat112: 5.85951447e-11 syst_JES_EtaIntercalibration_Stat113: 0.0 syst_JES_EtaIntercalibration_Stat114: 0.0 syst_JES_EtaIntercalibration_Stat115: 0.0 syst_JES_EtaIntercalibration_Stat116: 0.0 syst_JES_EtaIntercalibration_Stat117: 0.0 - syst_JES_EtaIntercalibration_Stat118: 1.925174472612807e-18 - syst_JES_EtaIntercalibration_Stat119: 1.925174472612807e-18 + syst_JES_EtaIntercalibration_Stat118: 1.92517447e-18 + syst_JES_EtaIntercalibration_Stat119: 1.92517447e-18 syst_JES_EtaIntercalibration_Stat12: 0.0 syst_JES_EtaIntercalibration_Stat120: 0.0 syst_JES_EtaIntercalibration_Stat121: 0.0 syst_JES_EtaIntercalibration_Stat122: 0.0 - syst_JES_EtaIntercalibration_Stat123: 1.3183481359261673e-14 - syst_JES_EtaIntercalibration_Stat124: 3.352945884964444e-09 - syst_JES_EtaIntercalibration_Stat125: 9.960637402797073e-07 - syst_JES_EtaIntercalibration_Stat126: 1.1028078133564344e-07 - syst_JES_EtaIntercalibration_Stat127: 4.170527883853553e-11 - syst_JES_EtaIntercalibration_Stat128: 1.8624054627013959e-06 - syst_JES_EtaIntercalibration_Stat129: 1.980928254632156e-06 + syst_JES_EtaIntercalibration_Stat123: 1.31834814e-14 + syst_JES_EtaIntercalibration_Stat124: 3.35294588e-09 + syst_JES_EtaIntercalibration_Stat125: 9.96063740e-07 + syst_JES_EtaIntercalibration_Stat126: 1.10280781e-07 + syst_JES_EtaIntercalibration_Stat127: 4.17052788e-11 + syst_JES_EtaIntercalibration_Stat128: 1.86240546e-06 + syst_JES_EtaIntercalibration_Stat129: 1.98092825e-06 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 6.777930990169493e-07 - syst_JES_EtaIntercalibration_Stat131: 1.3154193843314763e-10 + syst_JES_EtaIntercalibration_Stat130: 6.77793099e-07 + syst_JES_EtaIntercalibration_Stat131: 1.31541938e-10 syst_JES_EtaIntercalibration_Stat132: 0.0 syst_JES_EtaIntercalibration_Stat133: 0.0 syst_JES_EtaIntercalibration_Stat134: 0.0 syst_JES_EtaIntercalibration_Stat135: 0.0 syst_JES_EtaIntercalibration_Stat136: 0.0 - syst_JES_EtaIntercalibration_Stat137: 1.925174472612807e-18 - syst_JES_EtaIntercalibration_Stat138: 1.925174472612807e-18 - syst_JES_EtaIntercalibration_Stat139: 1.0173200418255801e-17 + syst_JES_EtaIntercalibration_Stat137: 1.92517447e-18 + syst_JES_EtaIntercalibration_Stat138: 1.92517447e-18 + syst_JES_EtaIntercalibration_Stat139: 1.01732004e-17 syst_JES_EtaIntercalibration_Stat14: 0.0 syst_JES_EtaIntercalibration_Stat140: 0.0 syst_JES_EtaIntercalibration_Stat141: 0.0 - syst_JES_EtaIntercalibration_Stat142: 5.670295405098464e-11 - syst_JES_EtaIntercalibration_Stat143: 2.754983579769578e-06 - syst_JES_EtaIntercalibration_Stat144: 2.1396328937460277e-06 - syst_JES_EtaIntercalibration_Stat145: 4.655702330207549e-06 - syst_JES_EtaIntercalibration_Stat146: 2.3886829265239456e-06 - syst_JES_EtaIntercalibration_Stat147: 1.9362568030868223e-06 - syst_JES_EtaIntercalibration_Stat148: 7.483220042702205e-07 - syst_JES_EtaIntercalibration_Stat149: 1.3754150262618007e-10 + syst_JES_EtaIntercalibration_Stat142: 5.67029541e-11 + syst_JES_EtaIntercalibration_Stat143: 2.75498358e-06 + syst_JES_EtaIntercalibration_Stat144: 2.13963289e-06 + syst_JES_EtaIntercalibration_Stat145: 4.65570233e-06 + syst_JES_EtaIntercalibration_Stat146: 2.38868293e-06 + syst_JES_EtaIntercalibration_Stat147: 1.93625680e-06 + syst_JES_EtaIntercalibration_Stat148: 7.48322004e-07 + syst_JES_EtaIntercalibration_Stat149: 1.37541503e-10 syst_JES_EtaIntercalibration_Stat15: 0.0 syst_JES_EtaIntercalibration_Stat150: 0.0 syst_JES_EtaIntercalibration_Stat151: 0.0 @@ -59390,60 +59390,60 @@ bins: syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 1.925174472612807e-18 - syst_JES_EtaIntercalibration_Stat157: 1.0173200418255801e-17 + syst_JES_EtaIntercalibration_Stat156: 1.92517447e-18 + syst_JES_EtaIntercalibration_Stat157: 1.01732004e-17 syst_JES_EtaIntercalibration_Stat158: 0.0 syst_JES_EtaIntercalibration_Stat159: 0.0 - syst_JES_EtaIntercalibration_Stat16: 2.3166179551233735e-20 - syst_JES_EtaIntercalibration_Stat160: 5.64951570035096e-11 - syst_JES_EtaIntercalibration_Stat161: 2.9454715290255312e-06 - syst_JES_EtaIntercalibration_Stat162: 7.45438644557686e-06 - syst_JES_EtaIntercalibration_Stat163: 1.2803997046528087e-05 - syst_JES_EtaIntercalibration_Stat164: 5.07768323155354e-06 - syst_JES_EtaIntercalibration_Stat165: 1.124173727677355e-05 - syst_JES_EtaIntercalibration_Stat166: 7.415835674419977e-07 - syst_JES_EtaIntercalibration_Stat167: 1.400104907033755e-10 + syst_JES_EtaIntercalibration_Stat16: 2.31661796e-20 + syst_JES_EtaIntercalibration_Stat160: 5.64951570e-11 + syst_JES_EtaIntercalibration_Stat161: 2.94547153e-06 + syst_JES_EtaIntercalibration_Stat162: 7.45438645e-06 + syst_JES_EtaIntercalibration_Stat163: 1.28039970e-05 + syst_JES_EtaIntercalibration_Stat164: 5.07768323e-06 + syst_JES_EtaIntercalibration_Stat165: 1.12417373e-05 + syst_JES_EtaIntercalibration_Stat166: 7.41583567e-07 + syst_JES_EtaIntercalibration_Stat167: 1.40010491e-10 syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 - syst_JES_EtaIntercalibration_Stat17: 1.1585599110533732e-19 + syst_JES_EtaIntercalibration_Stat17: 1.15855991e-19 syst_JES_EtaIntercalibration_Stat170: 0.0 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 - syst_JES_EtaIntercalibration_Stat174: 1.0173200418255801e-17 - syst_JES_EtaIntercalibration_Stat175: 1.0173200418255801e-17 + syst_JES_EtaIntercalibration_Stat174: 1.01732004e-17 + syst_JES_EtaIntercalibration_Stat175: 1.01732004e-17 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 - syst_JES_EtaIntercalibration_Stat178: 3.2177108893590795e-09 - syst_JES_EtaIntercalibration_Stat179: 5.413781941258809e-06 - syst_JES_EtaIntercalibration_Stat18: 4.510118041692479e-18 - syst_JES_EtaIntercalibration_Stat180: 1.5370285456034963e-05 - syst_JES_EtaIntercalibration_Stat181: 2.3011934591207234e-05 - syst_JES_EtaIntercalibration_Stat182: 0.00011634977041232184 - syst_JES_EtaIntercalibration_Stat183: 2.220350528069836e-05 - syst_JES_EtaIntercalibration_Stat184: 6.295348728168386e-08 + syst_JES_EtaIntercalibration_Stat178: 3.21771089e-09 + syst_JES_EtaIntercalibration_Stat179: 5.41378194e-06 + syst_JES_EtaIntercalibration_Stat18: 4.51011804e-18 + syst_JES_EtaIntercalibration_Stat180: 1.53702855e-05 + syst_JES_EtaIntercalibration_Stat181: 2.30119346e-05 + syst_JES_EtaIntercalibration_Stat182: 1.16349770e-04 + syst_JES_EtaIntercalibration_Stat183: 2.22035053e-05 + syst_JES_EtaIntercalibration_Stat184: 6.29534873e-08 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 syst_JES_EtaIntercalibration_Stat187: 0.0 - syst_JES_EtaIntercalibration_Stat188: 2.4811627818424168e-15 + syst_JES_EtaIntercalibration_Stat188: 2.48116278e-15 syst_JES_EtaIntercalibration_Stat189: 0.0 - syst_JES_EtaIntercalibration_Stat19: 2.8361416607778956e-18 + syst_JES_EtaIntercalibration_Stat19: 2.83614166e-18 syst_JES_EtaIntercalibration_Stat190: 0.0 - syst_JES_EtaIntercalibration_Stat191: 1.0173200418255801e-17 - syst_JES_EtaIntercalibration_Stat192: 1.0173200418255801e-17 + syst_JES_EtaIntercalibration_Stat191: 1.01732004e-17 + syst_JES_EtaIntercalibration_Stat192: 1.01732004e-17 syst_JES_EtaIntercalibration_Stat193: 0.0 syst_JES_EtaIntercalibration_Stat194: 0.0 - syst_JES_EtaIntercalibration_Stat195: 3.3301267214139166e-07 - syst_JES_EtaIntercalibration_Stat196: 1.4083279687274551e-05 - syst_JES_EtaIntercalibration_Stat197: 0.00011624932978301423 - syst_JES_EtaIntercalibration_Stat198: 3.641484724669321e-05 - syst_JES_EtaIntercalibration_Stat199: 4.499022977055186e-07 - syst_JES_EtaIntercalibration_Stat2: 1.0758104027662123e-17 + syst_JES_EtaIntercalibration_Stat195: 3.33012672e-07 + syst_JES_EtaIntercalibration_Stat196: 1.40832797e-05 + syst_JES_EtaIntercalibration_Stat197: 1.16249330e-04 + syst_JES_EtaIntercalibration_Stat198: 3.64148472e-05 + syst_JES_EtaIntercalibration_Stat199: 4.49902298e-07 + syst_JES_EtaIntercalibration_Stat2: 1.07581040e-17 syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 syst_JES_EtaIntercalibration_Stat201: 0.0 syst_JES_EtaIntercalibration_Stat202: 0.0 - syst_JES_EtaIntercalibration_Stat203: 2.4811627818424168e-15 + syst_JES_EtaIntercalibration_Stat203: 2.48116278e-15 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 @@ -59451,9 +59451,9 @@ bins: syst_JES_EtaIntercalibration_Stat208: 0.0 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 3.0522748586123024e-06 - syst_JES_EtaIntercalibration_Stat211: 3.79272114549699e-05 - syst_JES_EtaIntercalibration_Stat212: 7.679047255356618e-07 + syst_JES_EtaIntercalibration_Stat210: 3.05227486e-06 + syst_JES_EtaIntercalibration_Stat211: 3.79272115e-05 + syst_JES_EtaIntercalibration_Stat212: 7.67904726e-07 syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 syst_JES_EtaIntercalibration_Stat215: 0.0 @@ -59465,37 +59465,37 @@ bins: syst_JES_EtaIntercalibration_Stat220: 0.0 syst_JES_EtaIntercalibration_Stat221: 0.0 syst_JES_EtaIntercalibration_Stat222: 0.0 - syst_JES_EtaIntercalibration_Stat223: 3.063997878589344e-06 - syst_JES_EtaIntercalibration_Stat224: 7.733606855795037e-07 + syst_JES_EtaIntercalibration_Stat223: 3.06399788e-06 + syst_JES_EtaIntercalibration_Stat224: 7.73360686e-07 syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 syst_JES_EtaIntercalibration_Stat227: 0.0 syst_JES_EtaIntercalibration_Stat228: 0.0 syst_JES_EtaIntercalibration_Stat229: 0.0 - syst_JES_EtaIntercalibration_Stat23: 8.479932128708342e-18 + syst_JES_EtaIntercalibration_Stat23: 8.47993213e-18 syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 syst_JES_EtaIntercalibration_Stat232: 0.0 syst_JES_EtaIntercalibration_Stat233: 0.0 syst_JES_EtaIntercalibration_Stat234: 0.0 - syst_JES_EtaIntercalibration_Stat235: 3.1246196568542546e-06 + syst_JES_EtaIntercalibration_Stat235: 3.12461966e-06 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 syst_JES_EtaIntercalibration_Stat239: 0.0 - syst_JES_EtaIntercalibration_Stat24: 3.394263543097383e-15 + syst_JES_EtaIntercalibration_Stat24: 3.39426354e-15 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 syst_JES_EtaIntercalibration_Stat243: 0.0 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 - syst_JES_EtaIntercalibration_Stat25: 6.144376400300948e-11 - syst_JES_EtaIntercalibration_Stat26: 1.7844476197131703e-17 + syst_JES_EtaIntercalibration_Stat25: 6.14437640e-11 + syst_JES_EtaIntercalibration_Stat26: 1.78444762e-17 syst_JES_EtaIntercalibration_Stat27: 0.0 syst_JES_EtaIntercalibration_Stat28: 0.0 syst_JES_EtaIntercalibration_Stat29: 0.0 - syst_JES_EtaIntercalibration_Stat3: 1.5526073449201508e-17 + syst_JES_EtaIntercalibration_Stat3: 1.55260734e-17 syst_JES_EtaIntercalibration_Stat30: 0.0 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 @@ -59504,19 +59504,19 @@ bins: syst_JES_EtaIntercalibration_Stat35: 0.0 syst_JES_EtaIntercalibration_Stat36: 0.0 syst_JES_EtaIntercalibration_Stat37: 0.0 - syst_JES_EtaIntercalibration_Stat38: 2.3166179551233735e-20 - syst_JES_EtaIntercalibration_Stat39: 6.994336762695946e-18 + syst_JES_EtaIntercalibration_Stat38: 2.31661796e-20 + syst_JES_EtaIntercalibration_Stat39: 6.99433676e-18 syst_JES_EtaIntercalibration_Stat4: 0.0 - syst_JES_EtaIntercalibration_Stat40: 2.4761948126106717e-15 - syst_JES_EtaIntercalibration_Stat41: 4.366153799398276e-16 - syst_JES_EtaIntercalibration_Stat42: 4.473021210546625e-19 + syst_JES_EtaIntercalibration_Stat40: 2.47619481e-15 + syst_JES_EtaIntercalibration_Stat41: 4.36615380e-16 + syst_JES_EtaIntercalibration_Stat42: 4.47302121e-19 syst_JES_EtaIntercalibration_Stat43: 0.0 - syst_JES_EtaIntercalibration_Stat44: 1.467047034010839e-18 - syst_JES_EtaIntercalibration_Stat45: 4.5397271944468207e-17 - syst_JES_EtaIntercalibration_Stat46: 1.7911150998472293e-11 - syst_JES_EtaIntercalibration_Stat47: 6.117322984051112e-11 - syst_JES_EtaIntercalibration_Stat48: 1.6554396143245457e-15 - syst_JES_EtaIntercalibration_Stat49: 8.707019409648745e-19 + syst_JES_EtaIntercalibration_Stat44: 1.46704703e-18 + syst_JES_EtaIntercalibration_Stat45: 4.53972719e-17 + syst_JES_EtaIntercalibration_Stat46: 1.79111510e-11 + syst_JES_EtaIntercalibration_Stat47: 6.11732298e-11 + syst_JES_EtaIntercalibration_Stat48: 1.65543961e-15 + syst_JES_EtaIntercalibration_Stat49: 8.70701941e-19 syst_JES_EtaIntercalibration_Stat5: 0.0 syst_JES_EtaIntercalibration_Stat50: 0.0 syst_JES_EtaIntercalibration_Stat51: 0.0 @@ -59527,21 +59527,21 @@ bins: syst_JES_EtaIntercalibration_Stat56: 0.0 syst_JES_EtaIntercalibration_Stat57: 0.0 syst_JES_EtaIntercalibration_Stat58: 0.0 - syst_JES_EtaIntercalibration_Stat59: 2.3166179551233735e-20 + syst_JES_EtaIntercalibration_Stat59: 2.31661796e-20 syst_JES_EtaIntercalibration_Stat6: 0.0 - syst_JES_EtaIntercalibration_Stat60: 8.545986587281775e-20 - syst_JES_EtaIntercalibration_Stat61: 1.4249033537401757e-15 - syst_JES_EtaIntercalibration_Stat62: 1.8979200371722724e-10 - syst_JES_EtaIntercalibration_Stat63: 8.90335279543611e-15 - syst_JES_EtaIntercalibration_Stat64: 4.716679207874964e-18 + syst_JES_EtaIntercalibration_Stat60: 8.54598659e-20 + syst_JES_EtaIntercalibration_Stat61: 1.42490335e-15 + syst_JES_EtaIntercalibration_Stat62: 1.89792004e-10 + syst_JES_EtaIntercalibration_Stat63: 8.90335280e-15 + syst_JES_EtaIntercalibration_Stat64: 4.71667921e-18 syst_JES_EtaIntercalibration_Stat65: 0.0 - syst_JES_EtaIntercalibration_Stat66: 1.467047034010839e-18 - syst_JES_EtaIntercalibration_Stat67: 4.16503037203812e-15 - syst_JES_EtaIntercalibration_Stat68: 2.2196193652157456e-10 - syst_JES_EtaIntercalibration_Stat69: 2.2841735686840876e-10 + syst_JES_EtaIntercalibration_Stat66: 1.46704703e-18 + syst_JES_EtaIntercalibration_Stat67: 4.16503037e-15 + syst_JES_EtaIntercalibration_Stat68: 2.21961937e-10 + syst_JES_EtaIntercalibration_Stat69: 2.28417357e-10 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 6.14338116771823e-11 - syst_JES_EtaIntercalibration_Stat71: 1.409127498374437e-17 + syst_JES_EtaIntercalibration_Stat70: 6.14338117e-11 + syst_JES_EtaIntercalibration_Stat71: 1.40912750e-17 syst_JES_EtaIntercalibration_Stat72: 0.0 syst_JES_EtaIntercalibration_Stat73: 0.0 syst_JES_EtaIntercalibration_Stat74: 0.0 @@ -59552,19 +59552,19 @@ bins: syst_JES_EtaIntercalibration_Stat79: 0.0 syst_JES_EtaIntercalibration_Stat8: 0.0 syst_JES_EtaIntercalibration_Stat80: 0.0 - syst_JES_EtaIntercalibration_Stat81: 2.3166179551233735e-20 - syst_JES_EtaIntercalibration_Stat82: 1.347423024703081e-18 - syst_JES_EtaIntercalibration_Stat83: 1.848646496088422e-14 - syst_JES_EtaIntercalibration_Stat84: 2.5276637177441145e-10 - syst_JES_EtaIntercalibration_Stat85: 2.734516169942134e-10 - syst_JES_EtaIntercalibration_Stat86: 3.9741088661484853e-16 + syst_JES_EtaIntercalibration_Stat81: 2.31661796e-20 + syst_JES_EtaIntercalibration_Stat82: 1.34742302e-18 + syst_JES_EtaIntercalibration_Stat83: 1.84864650e-14 + syst_JES_EtaIntercalibration_Stat84: 2.52766372e-10 + syst_JES_EtaIntercalibration_Stat85: 2.73451617e-10 + syst_JES_EtaIntercalibration_Stat86: 3.97410887e-16 syst_JES_EtaIntercalibration_Stat87: 0.0 - syst_JES_EtaIntercalibration_Stat88: 1.2941978471238466e-14 - syst_JES_EtaIntercalibration_Stat89: 5.159752307039554e-10 + syst_JES_EtaIntercalibration_Stat88: 1.29419785e-14 + syst_JES_EtaIntercalibration_Stat89: 5.15975231e-10 syst_JES_EtaIntercalibration_Stat9: 0.0 - syst_JES_EtaIntercalibration_Stat90: 3.501150968906511e-10 - syst_JES_EtaIntercalibration_Stat91: 6.223824603302619e-11 - syst_JES_EtaIntercalibration_Stat92: 1.6010222618064997e-17 + syst_JES_EtaIntercalibration_Stat90: 3.50115097e-10 + syst_JES_EtaIntercalibration_Stat91: 6.22382460e-11 + syst_JES_EtaIntercalibration_Stat92: 1.60102226e-17 syst_JES_EtaIntercalibration_Stat93: 0.0 syst_JES_EtaIntercalibration_Stat94: 0.0 syst_JES_EtaIntercalibration_Stat95: 0.0 @@ -59572,154 +59572,154 @@ bins: syst_JES_EtaIntercalibration_Stat97: 0.0 syst_JES_EtaIntercalibration_Stat98: 0.0 syst_JES_EtaIntercalibration_Stat99: 0.0 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.00011132381281648594 - syst_JES_Flavour_Comp: 0.0003469591618620267 - syst_JES_Flavour_Response: 4.9801141553181286e-05 - syst_JES_Gjet_Generator: 0.0004723509500360934 - syst_JES_Gjet_OOC: 0.000389758540637662 - syst_JES_Gjet_Purity: 8.479721030199048e-05 - syst_JES_Gjet_Stat1: 3.1812958856887235e-06 - syst_JES_Gjet_Stat10: 1.1877299043448387e-05 - syst_JES_Gjet_Stat11: 9.422920194928958e-06 - syst_JES_Gjet_Stat12: 3.69866526601151e-05 - syst_JES_Gjet_Stat13: 9.856980217084743e-05 - syst_JES_Gjet_Stat14: 0.00018971354906806206 - syst_JES_Gjet_Stat15: 4.401844613341093e-05 - syst_JES_Gjet_Stat2: 3.033744114901585e-06 - syst_JES_Gjet_Stat3: 4.219470544615165e-06 - syst_JES_Gjet_Stat4: 4.218679825194133e-06 - syst_JES_Gjet_Stat5: 4.217201494865997e-06 - syst_JES_Gjet_Stat6: 7.565372219441685e-06 - syst_JES_Gjet_Stat7: 1.1792869498133184e-05 - syst_JES_Gjet_Stat8: 7.563489427506328e-06 - syst_JES_Gjet_Stat9: 1.1767572271607258e-05 - syst_JES_Gjet_Veto: 0.00036849185540524504 - syst_JES_Gjet_dPhi: 3.063049001811757e-05 - syst_JES_LArESZee: 0.0006888876105722908 - syst_JES_LArEsmear: 4.448430955685387e-05 - syst_JES_LAr_JVT: 5.5588767525463274e-05 - syst_JES_MJB_Alpha: 4.7510872616170715e-06 - syst_JES_MJB_Asym: 3.665789955793976e-05 - syst_JES_MJB_Beta: 1.1655639364702393e-05 - syst_JES_MJB_Fragmentation: 3.2099692755538954e-05 - syst_JES_MJB_Stat1: 4.297771602819303e-08 - syst_JES_MJB_Stat10: 7.909607496582875e-08 - syst_JES_MJB_Stat11: 2.4915550866878305e-06 - syst_JES_MJB_Stat12: 2.4846268834575546e-06 - syst_JES_MJB_Stat13: 9.701216573193282e-07 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.11323813e-04 + syst_JES_Flavour_Comp: 3.46959162e-04 + syst_JES_Flavour_Response: 4.98011416e-05 + syst_JES_Gjet_Generator: 4.72350950e-04 + syst_JES_Gjet_OOC: 3.89758541e-04 + syst_JES_Gjet_Purity: 8.47972103e-05 + syst_JES_Gjet_Stat1: 3.18129589e-06 + syst_JES_Gjet_Stat10: 1.18772990e-05 + syst_JES_Gjet_Stat11: 9.42292019e-06 + syst_JES_Gjet_Stat12: 3.69866527e-05 + syst_JES_Gjet_Stat13: 9.85698022e-05 + syst_JES_Gjet_Stat14: 1.89713549e-04 + syst_JES_Gjet_Stat15: 4.40184461e-05 + syst_JES_Gjet_Stat2: 3.03374411e-06 + syst_JES_Gjet_Stat3: 4.21947054e-06 + syst_JES_Gjet_Stat4: 4.21867983e-06 + syst_JES_Gjet_Stat5: 4.21720149e-06 + syst_JES_Gjet_Stat6: 7.56537222e-06 + syst_JES_Gjet_Stat7: 1.17928695e-05 + syst_JES_Gjet_Stat8: 7.56348943e-06 + syst_JES_Gjet_Stat9: 1.17675723e-05 + syst_JES_Gjet_Veto: 3.68491855e-04 + syst_JES_Gjet_dPhi: 3.06304900e-05 + syst_JES_LArESZee: 6.88887611e-04 + syst_JES_LArEsmear: 4.44843096e-05 + syst_JES_LAr_JVT: 5.55887675e-05 + syst_JES_MJB_Alpha: 4.75108726e-06 + syst_JES_MJB_Asym: 3.66578996e-05 + syst_JES_MJB_Beta: 1.16556394e-05 + syst_JES_MJB_Fragmentation: 3.20996928e-05 + syst_JES_MJB_Stat1: 4.29777160e-08 + syst_JES_MJB_Stat10: 7.90960750e-08 + syst_JES_MJB_Stat11: 2.49155509e-06 + syst_JES_MJB_Stat12: 2.48462688e-06 + syst_JES_MJB_Stat13: 9.70121657e-07 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 5.240880962920261e-06 - syst_JES_MJB_Stat3: 4.6947912711855465e-06 - syst_JES_MJB_Stat4: 6.949761920382598e-06 - syst_JES_MJB_Stat5: 7.570934663566977e-06 - syst_JES_MJB_Stat6: 4.63170505402708e-06 - syst_JES_MJB_Stat7: 5.482984919731222e-06 - syst_JES_MJB_Stat8: 5.59933898509458e-06 - syst_JES_MJB_Stat9: 5.59933898509458e-06 - syst_JES_MJB_Threshold: 4.162018765875522e-05 - syst_JES_Pileup_MuOffset: 5.652926388163922e-05 - syst_JES_Pileup_NPVOffset: 4.8717476073786914e-05 - syst_JES_Pileup_Pt_term: 0.00014278904824950687 - syst_JES_Pileup_Rho_topology: 0.00013173588605615405 - syst_JES_PunchThrough_MC15: 2.8290345968192044e-05 + syst_JES_MJB_Stat2: 5.24088096e-06 + syst_JES_MJB_Stat3: 4.69479127e-06 + syst_JES_MJB_Stat4: 6.94976192e-06 + syst_JES_MJB_Stat5: 7.57093466e-06 + syst_JES_MJB_Stat6: 4.63170505e-06 + syst_JES_MJB_Stat7: 5.48298492e-06 + syst_JES_MJB_Stat8: 5.59933899e-06 + syst_JES_MJB_Stat9: 5.59933899e-06 + syst_JES_MJB_Threshold: 4.16201877e-05 + syst_JES_Pileup_MuOffset: 5.65292639e-05 + syst_JES_Pileup_NPVOffset: 4.87174761e-05 + syst_JES_Pileup_Pt_term: 1.42789048e-04 + syst_JES_Pileup_Rho_topology: 1.31735886e-04 + syst_JES_PunchThrough_MC15: 2.82903460e-05 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.00023469527051050683 - syst_JES_Zjet_MuScale: 1.7366957825710293e-05 - syst_JES_Zjet_MuSmearID: 7.558901789777401e-06 - syst_JES_Zjet_MuSmearMS: 4.566554634513859e-05 - syst_JES_Zjet_OOC: 0.00011530383460665998 - syst_JES_Zjet_Stat1: 1.1841046677975728e-05 - syst_JES_Zjet_Stat10: 1.1912044386670157e-05 - syst_JES_Zjet_Stat11: 8.07864292564042e-06 - syst_JES_Zjet_Stat12: 4.1705688185186444e-05 - syst_JES_Zjet_Stat13: 5.658023572768145e-05 - syst_JES_Zjet_Stat2: 6.236864821967846e-09 - syst_JES_Zjet_Stat3: 7.558012699612247e-06 - syst_JES_Zjet_Stat4: 7.558012699612247e-06 - syst_JES_Zjet_Stat5: 7.563523376542179e-06 - syst_JES_Zjet_Stat6: 1.1649329872035557e-05 - syst_JES_Zjet_Stat7: 7.564310653820347e-06 - syst_JES_Zjet_Stat8: 7.564200341576101e-06 - syst_JES_Zjet_Stat9: 1.1775135845819358e-05 - syst_JES_Zjet_Veto: 1.606975907566756e-05 - syst_JES_Zjet_dPhi: 1.6789195833928434e-05 + syst_JES_Zjet_MC: 2.34695271e-04 + syst_JES_Zjet_MuScale: 1.73669578e-05 + syst_JES_Zjet_MuSmearID: 7.55890179e-06 + syst_JES_Zjet_MuSmearMS: 4.56655463e-05 + syst_JES_Zjet_OOC: 1.15303835e-04 + syst_JES_Zjet_Stat1: 1.18410467e-05 + syst_JES_Zjet_Stat10: 1.19120444e-05 + syst_JES_Zjet_Stat11: 8.07864293e-06 + syst_JES_Zjet_Stat12: 4.17056882e-05 + syst_JES_Zjet_Stat13: 5.65802357e-05 + syst_JES_Zjet_Stat2: 6.23686482e-09 + syst_JES_Zjet_Stat3: 7.55801270e-06 + syst_JES_Zjet_Stat4: 7.55801270e-06 + syst_JES_Zjet_Stat5: 7.56352338e-06 + syst_JES_Zjet_Stat6: 1.16493299e-05 + syst_JES_Zjet_Stat7: 7.56431065e-06 + syst_JES_Zjet_Stat8: 7.56420034e-06 + syst_JES_Zjet_Stat9: 1.17751358e-05 + syst_JES_Zjet_Veto: 1.60697591e-05 + syst_JES_Zjet_dPhi: 1.67891958e-05 syst_PRW: 0.0 - syst_Unfolding_bias: 5.053e-05 - syst_cleaning: 4.7588095937954906e-05 - syst_lumi: 0.0001671 -- stat: 0.00015385 - syst_JER_CROSS_CALIB_FORWARD: 1.864e-09 - syst_JER_NOISE_FORWARD: 9.556e-08 - syst_JER_NP0: 4.5854608001813737e-07 - syst_JER_NP1: 0.00011915958742375706 - syst_JER_NP2: 6.995332619495428e-08 - syst_JER_NP3: 4.7305251259770304e-08 - syst_JER_NP4: 4.5250861594007243e-08 - syst_JER_NP5: 1.0927637747930703e-10 - syst_JER_NP6: 8.02228787503914e-11 - syst_JER_NP7: 5.744241049652839e-14 - syst_JER_NP8: 4.3390238323091754e-08 - syst_JES_EtaIntercalibration_Modelling: 0.00029764839576251707 - syst_JES_EtaIntercalibration_NonClosure: 0.0002185345910834255 + syst_Unfolding_bias: 5.05300000e-05 + syst_cleaning: 4.75880959e-05 + syst_lumi: 1.67100000e-04 +- stat: 1.53850000e-04 + syst_JER_CROSS_CALIB_FORWARD: 1.86400000e-09 + syst_JER_NOISE_FORWARD: 9.55600000e-08 + syst_JER_NP0: 4.58546080e-07 + syst_JER_NP1: 1.19159587e-04 + syst_JER_NP2: 6.99533262e-08 + syst_JER_NP3: 4.73052513e-08 + syst_JER_NP4: 4.52508616e-08 + syst_JER_NP5: 1.09276377e-10 + syst_JER_NP6: 8.02228788e-11 + syst_JER_NP7: 5.74424105e-14 + syst_JER_NP8: 4.33902383e-08 + syst_JES_EtaIntercalibration_Modelling: 2.97648396e-04 + syst_JES_EtaIntercalibration_NonClosure: 2.18534591e-04 syst_JES_EtaIntercalibration_Stat0: 0.0 - syst_JES_EtaIntercalibration_Stat1: 3.2553894928257044e-20 + syst_JES_EtaIntercalibration_Stat1: 3.25538949e-20 syst_JES_EtaIntercalibration_Stat10: 0.0 syst_JES_EtaIntercalibration_Stat100: 0.0 syst_JES_EtaIntercalibration_Stat101: 0.0 syst_JES_EtaIntercalibration_Stat102: 0.0 - syst_JES_EtaIntercalibration_Stat103: 2.560428346976341e-19 - syst_JES_EtaIntercalibration_Stat104: 5.548928099360722e-12 - syst_JES_EtaIntercalibration_Stat105: 5.354490545327352e-11 - syst_JES_EtaIntercalibration_Stat106: 2.3615109307549266e-11 - syst_JES_EtaIntercalibration_Stat107: 5.035331642503799e-17 - syst_JES_EtaIntercalibration_Stat108: 1.4683944522845352e-12 - syst_JES_EtaIntercalibration_Stat109: 3.1593049425466986e-09 + syst_JES_EtaIntercalibration_Stat103: 2.56042835e-19 + syst_JES_EtaIntercalibration_Stat104: 5.54892810e-12 + syst_JES_EtaIntercalibration_Stat105: 5.35449055e-11 + syst_JES_EtaIntercalibration_Stat106: 2.36151093e-11 + syst_JES_EtaIntercalibration_Stat107: 5.03533164e-17 + syst_JES_EtaIntercalibration_Stat108: 1.46839445e-12 + syst_JES_EtaIntercalibration_Stat109: 3.15930494e-09 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 5.48154502930515e-07 - syst_JES_EtaIntercalibration_Stat111: 3.300875464176133e-11 - syst_JES_EtaIntercalibration_Stat112: 4.592522240343831e-12 + syst_JES_EtaIntercalibration_Stat110: 5.48154503e-07 + syst_JES_EtaIntercalibration_Stat111: 3.30087546e-11 + syst_JES_EtaIntercalibration_Stat112: 4.59252224e-12 syst_JES_EtaIntercalibration_Stat113: 0.0 syst_JES_EtaIntercalibration_Stat114: 0.0 syst_JES_EtaIntercalibration_Stat115: 0.0 syst_JES_EtaIntercalibration_Stat116: 0.0 syst_JES_EtaIntercalibration_Stat117: 0.0 - syst_JES_EtaIntercalibration_Stat118: 1.6653668514774757e-19 - syst_JES_EtaIntercalibration_Stat119: 1.6653668514774757e-19 + syst_JES_EtaIntercalibration_Stat118: 1.66536685e-19 + syst_JES_EtaIntercalibration_Stat119: 1.66536685e-19 syst_JES_EtaIntercalibration_Stat12: 0.0 syst_JES_EtaIntercalibration_Stat120: 0.0 syst_JES_EtaIntercalibration_Stat121: 0.0 syst_JES_EtaIntercalibration_Stat122: 0.0 - syst_JES_EtaIntercalibration_Stat123: 9.849884264802304e-16 - syst_JES_EtaIntercalibration_Stat124: 4.02804273407073e-10 - syst_JES_EtaIntercalibration_Stat125: 6.272910867372499e-07 - syst_JES_EtaIntercalibration_Stat126: 2.0159622500619896e-08 - syst_JES_EtaIntercalibration_Stat127: 3.255802676760371e-12 - syst_JES_EtaIntercalibration_Stat128: 5.483561951870336e-07 - syst_JES_EtaIntercalibration_Stat129: 2.3479279561988272e-07 + syst_JES_EtaIntercalibration_Stat123: 9.84988426e-16 + syst_JES_EtaIntercalibration_Stat124: 4.02804273e-10 + syst_JES_EtaIntercalibration_Stat125: 6.27291087e-07 + syst_JES_EtaIntercalibration_Stat126: 2.01596225e-08 + syst_JES_EtaIntercalibration_Stat127: 3.25580268e-12 + syst_JES_EtaIntercalibration_Stat128: 5.48356195e-07 + syst_JES_EtaIntercalibration_Stat129: 2.34792796e-07 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 1.0742678456977106e-07 - syst_JES_EtaIntercalibration_Stat131: 1.1197308621927861e-11 + syst_JES_EtaIntercalibration_Stat130: 1.07426785e-07 + syst_JES_EtaIntercalibration_Stat131: 1.11973086e-11 syst_JES_EtaIntercalibration_Stat132: 0.0 syst_JES_EtaIntercalibration_Stat133: 0.0 syst_JES_EtaIntercalibration_Stat134: 0.0 syst_JES_EtaIntercalibration_Stat135: 0.0 syst_JES_EtaIntercalibration_Stat136: 0.0 - syst_JES_EtaIntercalibration_Stat137: 1.6653668514774757e-19 - syst_JES_EtaIntercalibration_Stat138: 1.6653668514774757e-19 - syst_JES_EtaIntercalibration_Stat139: 9.093266739736605e-19 + syst_JES_EtaIntercalibration_Stat137: 1.66536685e-19 + syst_JES_EtaIntercalibration_Stat138: 1.66536685e-19 + syst_JES_EtaIntercalibration_Stat139: 9.09326674e-19 syst_JES_EtaIntercalibration_Stat14: 0.0 syst_JES_EtaIntercalibration_Stat140: 0.0 syst_JES_EtaIntercalibration_Stat141: 0.0 - syst_JES_EtaIntercalibration_Stat142: 5.4712208467561945e-12 - syst_JES_EtaIntercalibration_Stat143: 1.0641190640415902e-06 - syst_JES_EtaIntercalibration_Stat144: 2.2661381296547217e-06 - syst_JES_EtaIntercalibration_Stat145: 1.0938356603599098e-06 - syst_JES_EtaIntercalibration_Stat146: 5.071493003051469e-07 - syst_JES_EtaIntercalibration_Stat147: 6.512508195772193e-07 - syst_JES_EtaIntercalibration_Stat148: 1.1740378763907065e-07 - syst_JES_EtaIntercalibration_Stat149: 1.163987142655794e-11 + syst_JES_EtaIntercalibration_Stat142: 5.47122085e-12 + syst_JES_EtaIntercalibration_Stat143: 1.06411906e-06 + syst_JES_EtaIntercalibration_Stat144: 2.26613813e-06 + syst_JES_EtaIntercalibration_Stat145: 1.09383566e-06 + syst_JES_EtaIntercalibration_Stat146: 5.07149300e-07 + syst_JES_EtaIntercalibration_Stat147: 6.51250820e-07 + syst_JES_EtaIntercalibration_Stat148: 1.17403788e-07 + syst_JES_EtaIntercalibration_Stat149: 1.16398714e-11 syst_JES_EtaIntercalibration_Stat15: 0.0 syst_JES_EtaIntercalibration_Stat150: 0.0 syst_JES_EtaIntercalibration_Stat151: 0.0 @@ -59727,60 +59727,60 @@ bins: syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 1.6653668514774757e-19 - syst_JES_EtaIntercalibration_Stat157: 9.093266739736605e-19 + syst_JES_EtaIntercalibration_Stat156: 1.66536685e-19 + syst_JES_EtaIntercalibration_Stat157: 9.09326674e-19 syst_JES_EtaIntercalibration_Stat158: 0.0 syst_JES_EtaIntercalibration_Stat159: 0.0 - syst_JES_EtaIntercalibration_Stat16: 2.6509037609841666e-21 - syst_JES_EtaIntercalibration_Stat160: 5.455636198403566e-12 - syst_JES_EtaIntercalibration_Stat161: 1.1032614348008137e-06 - syst_JES_EtaIntercalibration_Stat162: 3.0304952236062013e-06 - syst_JES_EtaIntercalibration_Stat163: 4.085866489191736e-06 - syst_JES_EtaIntercalibration_Stat164: 5.022164946514601e-07 - syst_JES_EtaIntercalibration_Stat165: 1.7068676479153266e-06 - syst_JES_EtaIntercalibration_Stat166: 2.3228501350711371e-07 - syst_JES_EtaIntercalibration_Stat167: 1.1823751760228223e-11 + syst_JES_EtaIntercalibration_Stat16: 2.65090376e-21 + syst_JES_EtaIntercalibration_Stat160: 5.45563620e-12 + syst_JES_EtaIntercalibration_Stat161: 1.10326143e-06 + syst_JES_EtaIntercalibration_Stat162: 3.03049522e-06 + syst_JES_EtaIntercalibration_Stat163: 4.08586649e-06 + syst_JES_EtaIntercalibration_Stat164: 5.02216495e-07 + syst_JES_EtaIntercalibration_Stat165: 1.70686765e-06 + syst_JES_EtaIntercalibration_Stat166: 2.32285014e-07 + syst_JES_EtaIntercalibration_Stat167: 1.18237518e-11 syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 - syst_JES_EtaIntercalibration_Stat17: 1.2600203440817929e-20 + syst_JES_EtaIntercalibration_Stat17: 1.26002034e-20 syst_JES_EtaIntercalibration_Stat170: 0.0 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 - syst_JES_EtaIntercalibration_Stat174: 9.093266739736605e-19 - syst_JES_EtaIntercalibration_Stat175: 9.093266739736605e-19 + syst_JES_EtaIntercalibration_Stat174: 9.09326674e-19 + syst_JES_EtaIntercalibration_Stat175: 9.09326674e-19 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 - syst_JES_EtaIntercalibration_Stat178: 3.904553825301298e-10 - syst_JES_EtaIntercalibration_Stat179: 2.691376895693912e-06 - syst_JES_EtaIntercalibration_Stat18: 4.260544184725702e-19 - syst_JES_EtaIntercalibration_Stat180: 5.650160949034991e-06 - syst_JES_EtaIntercalibration_Stat181: 6.089265700189145e-06 - syst_JES_EtaIntercalibration_Stat182: 4.029610496065346e-05 - syst_JES_EtaIntercalibration_Stat183: 8.473909748752343e-06 - syst_JES_EtaIntercalibration_Stat184: 1.0317118434765526e-08 + syst_JES_EtaIntercalibration_Stat178: 3.90455383e-10 + syst_JES_EtaIntercalibration_Stat179: 2.69137690e-06 + syst_JES_EtaIntercalibration_Stat18: 4.26054418e-19 + syst_JES_EtaIntercalibration_Stat180: 5.65016095e-06 + syst_JES_EtaIntercalibration_Stat181: 6.08926570e-06 + syst_JES_EtaIntercalibration_Stat182: 4.02961050e-05 + syst_JES_EtaIntercalibration_Stat183: 8.47390975e-06 + syst_JES_EtaIntercalibration_Stat184: 1.03171184e-08 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 syst_JES_EtaIntercalibration_Stat187: 0.0 - syst_JES_EtaIntercalibration_Stat188: 1.8662847451554653e-16 + syst_JES_EtaIntercalibration_Stat188: 1.86628475e-16 syst_JES_EtaIntercalibration_Stat189: 0.0 - syst_JES_EtaIntercalibration_Stat19: 2.610206158045759e-19 + syst_JES_EtaIntercalibration_Stat19: 2.61020616e-19 syst_JES_EtaIntercalibration_Stat190: 0.0 - syst_JES_EtaIntercalibration_Stat191: 9.093266739736605e-19 - syst_JES_EtaIntercalibration_Stat192: 9.093266739736605e-19 + syst_JES_EtaIntercalibration_Stat191: 9.09326674e-19 + syst_JES_EtaIntercalibration_Stat192: 9.09326674e-19 syst_JES_EtaIntercalibration_Stat193: 0.0 syst_JES_EtaIntercalibration_Stat194: 0.0 - syst_JES_EtaIntercalibration_Stat195: 2.1974770350308558e-07 - syst_JES_EtaIntercalibration_Stat196: 6.31102828388528e-06 - syst_JES_EtaIntercalibration_Stat197: 4.3276717470251827e-05 - syst_JES_EtaIntercalibration_Stat198: 1.4624389243657321e-05 - syst_JES_EtaIntercalibration_Stat199: 1.5484549998712938e-07 - syst_JES_EtaIntercalibration_Stat2: 9.352380193298387e-19 + syst_JES_EtaIntercalibration_Stat195: 2.19747704e-07 + syst_JES_EtaIntercalibration_Stat196: 6.31102828e-06 + syst_JES_EtaIntercalibration_Stat197: 4.32767175e-05 + syst_JES_EtaIntercalibration_Stat198: 1.46243892e-05 + syst_JES_EtaIntercalibration_Stat199: 1.54845500e-07 + syst_JES_EtaIntercalibration_Stat2: 9.35238019e-19 syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 syst_JES_EtaIntercalibration_Stat201: 0.0 syst_JES_EtaIntercalibration_Stat202: 0.0 - syst_JES_EtaIntercalibration_Stat203: 1.8662847451554653e-16 + syst_JES_EtaIntercalibration_Stat203: 1.86628475e-16 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 @@ -59788,9 +59788,9 @@ bins: syst_JES_EtaIntercalibration_Stat208: 0.0 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 1.1257096535125388e-06 - syst_JES_EtaIntercalibration_Stat211: 1.65658615456607e-05 - syst_JES_EtaIntercalibration_Stat212: 1.2288900479701184e-07 + syst_JES_EtaIntercalibration_Stat210: 1.12570965e-06 + syst_JES_EtaIntercalibration_Stat211: 1.65658615e-05 + syst_JES_EtaIntercalibration_Stat212: 1.22889005e-07 syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 syst_JES_EtaIntercalibration_Stat215: 0.0 @@ -59802,37 +59802,37 @@ bins: syst_JES_EtaIntercalibration_Stat220: 0.0 syst_JES_EtaIntercalibration_Stat221: 0.0 syst_JES_EtaIntercalibration_Stat222: 0.0 - syst_JES_EtaIntercalibration_Stat223: 1.1287775112926373e-06 - syst_JES_EtaIntercalibration_Stat224: 1.2583349116987894e-07 + syst_JES_EtaIntercalibration_Stat223: 1.12877751e-06 + syst_JES_EtaIntercalibration_Stat224: 1.25833491e-07 syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 syst_JES_EtaIntercalibration_Stat227: 0.0 syst_JES_EtaIntercalibration_Stat228: 0.0 syst_JES_EtaIntercalibration_Stat229: 0.0 - syst_JES_EtaIntercalibration_Stat23: 7.351111834783905e-19 + syst_JES_EtaIntercalibration_Stat23: 7.35111183e-19 syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 syst_JES_EtaIntercalibration_Stat232: 0.0 syst_JES_EtaIntercalibration_Stat233: 0.0 syst_JES_EtaIntercalibration_Stat234: 0.0 - syst_JES_EtaIntercalibration_Stat235: 2.402354470098033e-06 + syst_JES_EtaIntercalibration_Stat235: 2.40235447e-06 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 syst_JES_EtaIntercalibration_Stat239: 0.0 - syst_JES_EtaIntercalibration_Stat24: 2.617206287246002e-16 + syst_JES_EtaIntercalibration_Stat24: 2.61720629e-16 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 syst_JES_EtaIntercalibration_Stat243: 0.0 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 - syst_JES_EtaIntercalibration_Stat25: 4.815044378726612e-12 - syst_JES_EtaIntercalibration_Stat26: 1.63261469734901e-18 + syst_JES_EtaIntercalibration_Stat25: 4.81504438e-12 + syst_JES_EtaIntercalibration_Stat26: 1.63261470e-18 syst_JES_EtaIntercalibration_Stat27: 0.0 syst_JES_EtaIntercalibration_Stat28: 0.0 syst_JES_EtaIntercalibration_Stat29: 0.0 - syst_JES_EtaIntercalibration_Stat3: 1.4170966330847025e-18 + syst_JES_EtaIntercalibration_Stat3: 1.41709663e-18 syst_JES_EtaIntercalibration_Stat30: 0.0 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 @@ -59841,19 +59841,19 @@ bins: syst_JES_EtaIntercalibration_Stat35: 0.0 syst_JES_EtaIntercalibration_Stat36: 0.0 syst_JES_EtaIntercalibration_Stat37: 0.0 - syst_JES_EtaIntercalibration_Stat38: 2.6509037609841666e-21 - syst_JES_EtaIntercalibration_Stat39: 6.514580723269918e-19 + syst_JES_EtaIntercalibration_Stat38: 2.65090376e-21 + syst_JES_EtaIntercalibration_Stat39: 6.51458072e-19 syst_JES_EtaIntercalibration_Stat4: 0.0 - syst_JES_EtaIntercalibration_Stat40: 1.9157664262639116e-16 - syst_JES_EtaIntercalibration_Stat41: 3.5531304507434006e-17 - syst_JES_EtaIntercalibration_Stat42: 4.3950789242060265e-20 + syst_JES_EtaIntercalibration_Stat40: 1.91576643e-16 + syst_JES_EtaIntercalibration_Stat41: 3.55313045e-17 + syst_JES_EtaIntercalibration_Stat42: 4.39507892e-20 syst_JES_EtaIntercalibration_Stat43: 0.0 - syst_JES_EtaIntercalibration_Stat44: 1.5675059808498337e-19 - syst_JES_EtaIntercalibration_Stat45: 3.8724676886967046e-18 - syst_JES_EtaIntercalibration_Stat46: 1.3963870422028414e-12 - syst_JES_EtaIntercalibration_Stat47: 4.793788182465591e-12 - syst_JES_EtaIntercalibration_Stat48: 1.2716578034990386e-16 - syst_JES_EtaIntercalibration_Stat49: 8.865502058541298e-20 + syst_JES_EtaIntercalibration_Stat44: 1.56750598e-19 + syst_JES_EtaIntercalibration_Stat45: 3.87246769e-18 + syst_JES_EtaIntercalibration_Stat46: 1.39638704e-12 + syst_JES_EtaIntercalibration_Stat47: 4.79378818e-12 + syst_JES_EtaIntercalibration_Stat48: 1.27165780e-16 + syst_JES_EtaIntercalibration_Stat49: 8.86550206e-20 syst_JES_EtaIntercalibration_Stat5: 0.0 syst_JES_EtaIntercalibration_Stat50: 0.0 syst_JES_EtaIntercalibration_Stat51: 0.0 @@ -59864,21 +59864,21 @@ bins: syst_JES_EtaIntercalibration_Stat56: 0.0 syst_JES_EtaIntercalibration_Stat57: 0.0 syst_JES_EtaIntercalibration_Stat58: 0.0 - syst_JES_EtaIntercalibration_Stat59: 2.6509037609841666e-21 + syst_JES_EtaIntercalibration_Stat59: 2.65090376e-21 syst_JES_EtaIntercalibration_Stat6: 0.0 - syst_JES_EtaIntercalibration_Stat60: 9.070833313428265e-21 - syst_JES_EtaIntercalibration_Stat61: 1.1006624686978292e-16 - syst_JES_EtaIntercalibration_Stat62: 1.6194062245156404e-11 - syst_JES_EtaIntercalibration_Stat63: 6.647721019266678e-16 - syst_JES_EtaIntercalibration_Stat64: 4.424264769427797e-19 + syst_JES_EtaIntercalibration_Stat60: 9.07083331e-21 + syst_JES_EtaIntercalibration_Stat61: 1.10066247e-16 + syst_JES_EtaIntercalibration_Stat62: 1.61940622e-11 + syst_JES_EtaIntercalibration_Stat63: 6.64772102e-16 + syst_JES_EtaIntercalibration_Stat64: 4.42426477e-19 syst_JES_EtaIntercalibration_Stat65: 0.0 - syst_JES_EtaIntercalibration_Stat66: 1.5675059808498337e-19 - syst_JES_EtaIntercalibration_Stat67: 3.228999961288324e-16 - syst_JES_EtaIntercalibration_Stat68: 1.8273903158101583e-11 - syst_JES_EtaIntercalibration_Stat69: 1.884100575042373e-11 + syst_JES_EtaIntercalibration_Stat66: 1.56750598e-19 + syst_JES_EtaIntercalibration_Stat67: 3.22899996e-16 + syst_JES_EtaIntercalibration_Stat68: 1.82739032e-11 + syst_JES_EtaIntercalibration_Stat69: 1.88410058e-11 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 4.8143967521474585e-12 - syst_JES_EtaIntercalibration_Stat71: 1.2767826890567556e-18 + syst_JES_EtaIntercalibration_Stat70: 4.81439675e-12 + syst_JES_EtaIntercalibration_Stat71: 1.27678269e-18 syst_JES_EtaIntercalibration_Stat72: 0.0 syst_JES_EtaIntercalibration_Stat73: 0.0 syst_JES_EtaIntercalibration_Stat74: 0.0 @@ -59889,19 +59889,19 @@ bins: syst_JES_EtaIntercalibration_Stat79: 0.0 syst_JES_EtaIntercalibration_Stat8: 0.0 syst_JES_EtaIntercalibration_Stat80: 0.0 - syst_JES_EtaIntercalibration_Stat81: 2.6509037609841666e-21 - syst_JES_EtaIntercalibration_Stat82: 1.267106534589732e-19 - syst_JES_EtaIntercalibration_Stat83: 1.3796378764009054e-15 - syst_JES_EtaIntercalibration_Stat84: 2.0902441077539246e-11 - syst_JES_EtaIntercalibration_Stat85: 2.2915972091558213e-11 - syst_JES_EtaIntercalibration_Stat86: 3.1947924690032685e-17 + syst_JES_EtaIntercalibration_Stat81: 2.65090376e-21 + syst_JES_EtaIntercalibration_Stat82: 1.26710653e-19 + syst_JES_EtaIntercalibration_Stat83: 1.37963788e-15 + syst_JES_EtaIntercalibration_Stat84: 2.09024411e-11 + syst_JES_EtaIntercalibration_Stat85: 2.29159721e-11 + syst_JES_EtaIntercalibration_Stat86: 3.19479247e-17 syst_JES_EtaIntercalibration_Stat87: 0.0 - syst_JES_EtaIntercalibration_Stat88: 9.546881205398967e-16 - syst_JES_EtaIntercalibration_Stat89: 1.2307480618456198e-10 + syst_JES_EtaIntercalibration_Stat88: 9.54688121e-16 + syst_JES_EtaIntercalibration_Stat89: 1.23074806e-10 syst_JES_EtaIntercalibration_Stat9: 0.0 - syst_JES_EtaIntercalibration_Stat90: 3.098104020473651e-11 - syst_JES_EtaIntercalibration_Stat91: 4.8771409239302286e-12 - syst_JES_EtaIntercalibration_Stat92: 1.4507566290991056e-18 + syst_JES_EtaIntercalibration_Stat90: 3.09810402e-11 + syst_JES_EtaIntercalibration_Stat91: 4.87714092e-12 + syst_JES_EtaIntercalibration_Stat92: 1.45075663e-18 syst_JES_EtaIntercalibration_Stat93: 0.0 syst_JES_EtaIntercalibration_Stat94: 0.0 syst_JES_EtaIntercalibration_Stat95: 0.0 @@ -59909,154 +59909,154 @@ bins: syst_JES_EtaIntercalibration_Stat97: 0.0 syst_JES_EtaIntercalibration_Stat98: 0.0 syst_JES_EtaIntercalibration_Stat99: 0.0 - syst_JES_EtaIntercalibration_TotalStat_MJB: 4.4159443780464445e-05 - syst_JES_Flavour_Comp: 0.00012299179972664843 - syst_JES_Flavour_Response: 2.8219853839982938e-05 - syst_JES_Gjet_Generator: 0.00016963425855351272 - syst_JES_Gjet_OOC: 0.00013794807247656635 - syst_JES_Gjet_Purity: 2.6931915546429292e-05 - syst_JES_Gjet_Stat1: 9.285837248600688e-07 - syst_JES_Gjet_Stat10: 5.198910816344131e-06 - syst_JES_Gjet_Stat11: 4.650408802460273e-06 - syst_JES_Gjet_Stat12: 1.2754615164715868e-05 - syst_JES_Gjet_Stat13: 3.865231170318278e-05 - syst_JES_Gjet_Stat14: 7.064649655149221e-05 - syst_JES_Gjet_Stat15: 2.8141842068350823e-05 - syst_JES_Gjet_Stat2: 8.762308609464745e-07 - syst_JES_Gjet_Stat3: 1.1903727760105235e-06 - syst_JES_Gjet_Stat4: 1.1902084115448018e-06 - syst_JES_Gjet_Stat5: 1.190048849075953e-06 - syst_JES_Gjet_Stat6: 2.727651355447576e-06 - syst_JES_Gjet_Stat7: 4.404521241142447e-06 - syst_JES_Gjet_Stat8: 2.727294710711514e-06 - syst_JES_Gjet_Stat9: 5.186231628251384e-06 - syst_JES_Gjet_Veto: 0.00013440834907103058 - syst_JES_Gjet_dPhi: 1.1353686082832305e-05 - syst_JES_LArESZee: 0.00025068643262051495 - syst_JES_LArEsmear: 1.7185984173156917e-05 - syst_JES_LAr_JVT: 1.984882170306338e-05 - syst_JES_MJB_Alpha: 2.341413160529342e-06 - syst_JES_MJB_Asym: 1.3985439526521862e-05 - syst_JES_MJB_Beta: 5.159431162141327e-06 - syst_JES_MJB_Fragmentation: 1.095184901055525e-05 - syst_JES_MJB_Stat1: 9.84350212068855e-09 - syst_JES_MJB_Stat10: 1.5924289999871268e-08 - syst_JES_MJB_Stat11: 1.6281277591147447e-06 - syst_JES_MJB_Stat12: 1.622931606692038e-06 - syst_JES_MJB_Stat13: 4.1196828458025746e-07 + syst_JES_EtaIntercalibration_TotalStat_MJB: 4.41594438e-05 + syst_JES_Flavour_Comp: 1.22991800e-04 + syst_JES_Flavour_Response: 2.82198538e-05 + syst_JES_Gjet_Generator: 1.69634259e-04 + syst_JES_Gjet_OOC: 1.37948072e-04 + syst_JES_Gjet_Purity: 2.69319155e-05 + syst_JES_Gjet_Stat1: 9.28583725e-07 + syst_JES_Gjet_Stat10: 5.19891082e-06 + syst_JES_Gjet_Stat11: 4.65040880e-06 + syst_JES_Gjet_Stat12: 1.27546152e-05 + syst_JES_Gjet_Stat13: 3.86523117e-05 + syst_JES_Gjet_Stat14: 7.06464966e-05 + syst_JES_Gjet_Stat15: 2.81418421e-05 + syst_JES_Gjet_Stat2: 8.76230861e-07 + syst_JES_Gjet_Stat3: 1.19037278e-06 + syst_JES_Gjet_Stat4: 1.19020841e-06 + syst_JES_Gjet_Stat5: 1.19004885e-06 + syst_JES_Gjet_Stat6: 2.72765136e-06 + syst_JES_Gjet_Stat7: 4.40452124e-06 + syst_JES_Gjet_Stat8: 2.72729471e-06 + syst_JES_Gjet_Stat9: 5.18623163e-06 + syst_JES_Gjet_Veto: 1.34408349e-04 + syst_JES_Gjet_dPhi: 1.13536861e-05 + syst_JES_LArESZee: 2.50686433e-04 + syst_JES_LArEsmear: 1.71859842e-05 + syst_JES_LAr_JVT: 1.98488217e-05 + syst_JES_MJB_Alpha: 2.34141316e-06 + syst_JES_MJB_Asym: 1.39854395e-05 + syst_JES_MJB_Beta: 5.15943116e-06 + syst_JES_MJB_Fragmentation: 1.09518490e-05 + syst_JES_MJB_Stat1: 9.84350212e-09 + syst_JES_MJB_Stat10: 1.59242900e-08 + syst_JES_MJB_Stat11: 1.62812776e-06 + syst_JES_MJB_Stat12: 1.62293161e-06 + syst_JES_MJB_Stat13: 4.11968285e-07 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 1.49065344312486e-06 - syst_JES_MJB_Stat3: 2.339571645472735e-06 - syst_JES_MJB_Stat4: 2.047942622407913e-06 - syst_JES_MJB_Stat5: 2.7298198012094135e-06 - syst_JES_MJB_Stat6: 2.3184267311045224e-06 - syst_JES_MJB_Stat7: 2.638390407199056e-06 - syst_JES_MJB_Stat8: 2.6596074132222975e-06 - syst_JES_MJB_Stat9: 2.6596074132222975e-06 - syst_JES_MJB_Threshold: 1.5800171541790295e-05 - syst_JES_Pileup_MuOffset: 2.234261119475519e-05 - syst_JES_Pileup_NPVOffset: 2.029153041911822e-05 - syst_JES_Pileup_Pt_term: 4.901056289209501e-05 - syst_JES_Pileup_Rho_topology: 4.8236344181540124e-05 - syst_JES_PunchThrough_MC15: 1.1564102332217576e-05 + syst_JES_MJB_Stat2: 1.49065344e-06 + syst_JES_MJB_Stat3: 2.33957165e-06 + syst_JES_MJB_Stat4: 2.04794262e-06 + syst_JES_MJB_Stat5: 2.72981980e-06 + syst_JES_MJB_Stat6: 2.31842673e-06 + syst_JES_MJB_Stat7: 2.63839041e-06 + syst_JES_MJB_Stat8: 2.65960741e-06 + syst_JES_MJB_Stat9: 2.65960741e-06 + syst_JES_MJB_Threshold: 1.58001715e-05 + syst_JES_Pileup_MuOffset: 2.23426112e-05 + syst_JES_Pileup_NPVOffset: 2.02915304e-05 + syst_JES_Pileup_Pt_term: 4.90105629e-05 + syst_JES_Pileup_Rho_topology: 4.82363442e-05 + syst_JES_PunchThrough_MC15: 1.15641023e-05 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 7.783965104623736e-05 - syst_JES_Zjet_MuScale: 6.133181985519425e-06 - syst_JES_Zjet_MuSmearID: 2.7283828442275105e-06 - syst_JES_Zjet_MuSmearMS: 1.480677610926835e-05 - syst_JES_Zjet_OOC: 4.2665418080689194e-05 - syst_JES_Zjet_Stat1: 5.193216149429946e-06 - syst_JES_Zjet_Stat10: 5.205374594769814e-06 - syst_JES_Zjet_Stat11: 3.4050692984871833e-06 - syst_JES_Zjet_Stat12: 1.6077147541386188e-05 - syst_JES_Zjet_Stat13: 1.9089371303162397e-05 - syst_JES_Zjet_Stat2: 8.380135480259255e-10 - syst_JES_Zjet_Stat3: 2.728647852302492e-06 - syst_JES_Zjet_Stat4: 2.728647852302492e-06 - syst_JES_Zjet_Stat5: 2.7277705484653585e-06 - syst_JES_Zjet_Stat6: 4.375053187182414e-06 - syst_JES_Zjet_Stat7: 2.7279853646372447e-06 - syst_JES_Zjet_Stat8: 2.727119362014615e-06 - syst_JES_Zjet_Stat9: 5.187906620466004e-06 - syst_JES_Zjet_Veto: 6.712826727243896e-06 - syst_JES_Zjet_dPhi: 6.843926650688184e-06 + syst_JES_Zjet_MC: 7.78396510e-05 + syst_JES_Zjet_MuScale: 6.13318199e-06 + syst_JES_Zjet_MuSmearID: 2.72838284e-06 + syst_JES_Zjet_MuSmearMS: 1.48067761e-05 + syst_JES_Zjet_OOC: 4.26654181e-05 + syst_JES_Zjet_Stat1: 5.19321615e-06 + syst_JES_Zjet_Stat10: 5.20537459e-06 + syst_JES_Zjet_Stat11: 3.40506930e-06 + syst_JES_Zjet_Stat12: 1.60771475e-05 + syst_JES_Zjet_Stat13: 1.90893713e-05 + syst_JES_Zjet_Stat2: 8.38013548e-10 + syst_JES_Zjet_Stat3: 2.72864785e-06 + syst_JES_Zjet_Stat4: 2.72864785e-06 + syst_JES_Zjet_Stat5: 2.72777055e-06 + syst_JES_Zjet_Stat6: 4.37505319e-06 + syst_JES_Zjet_Stat7: 2.72798536e-06 + syst_JES_Zjet_Stat8: 2.72711936e-06 + syst_JES_Zjet_Stat9: 5.18790662e-06 + syst_JES_Zjet_Veto: 6.71282673e-06 + syst_JES_Zjet_dPhi: 6.84392665e-06 syst_PRW: 0.0 - syst_Unfolding_bias: 3.335e-05 - syst_cleaning: 1.5986828953860737e-05 - syst_lumi: 5.431e-05 -- stat: 6.774e-05 - syst_JER_CROSS_CALIB_FORWARD: 2.919e-10 - syst_JER_NOISE_FORWARD: 8.194e-09 - syst_JER_NP0: 4.501780397798187e-08 - syst_JER_NP1: 4.453493095312936e-05 - syst_JER_NP2: 6.2108951796650855e-09 - syst_JER_NP3: 4.07494328181387e-09 - syst_JER_NP4: 3.9012233978586765e-09 - syst_JER_NP5: 7.980801964715077e-12 - syst_JER_NP6: 5.859554505250378e-12 - syst_JER_NP7: 4.5602377072695455e-15 - syst_JER_NP8: 3.744916410532416e-09 - syst_JES_EtaIntercalibration_Modelling: 9.890248265336923e-05 - syst_JES_EtaIntercalibration_NonClosure: 5.575094259292842e-05 + syst_Unfolding_bias: 3.33500000e-05 + syst_cleaning: 1.59868290e-05 + syst_lumi: 5.43100000e-05 +- stat: 6.77400000e-05 + syst_JER_CROSS_CALIB_FORWARD: 2.91900000e-10 + syst_JER_NOISE_FORWARD: 8.19400000e-09 + syst_JER_NP0: 4.50178040e-08 + syst_JER_NP1: 4.45349310e-05 + syst_JER_NP2: 6.21089518e-09 + syst_JER_NP3: 4.07494328e-09 + syst_JER_NP4: 3.90122340e-09 + syst_JER_NP5: 7.98080196e-12 + syst_JER_NP6: 5.85955451e-12 + syst_JER_NP7: 4.56023771e-15 + syst_JER_NP8: 3.74491641e-09 + syst_JES_EtaIntercalibration_Modelling: 9.89024827e-05 + syst_JES_EtaIntercalibration_NonClosure: 5.57509426e-05 syst_JES_EtaIntercalibration_Stat0: 0.0 - syst_JES_EtaIntercalibration_Stat1: 3.1687869524472608e-21 + syst_JES_EtaIntercalibration_Stat1: 3.16878695e-21 syst_JES_EtaIntercalibration_Stat10: 0.0 syst_JES_EtaIntercalibration_Stat100: 0.0 syst_JES_EtaIntercalibration_Stat101: 0.0 syst_JES_EtaIntercalibration_Stat102: 0.0 - syst_JES_EtaIntercalibration_Stat103: 2.3510976558833112e-20 - syst_JES_EtaIntercalibration_Stat104: 4.718536398380408e-13 - syst_JES_EtaIntercalibration_Stat105: 4.3897155944320586e-12 - syst_JES_EtaIntercalibration_Stat106: 1.858863003794255e-12 - syst_JES_EtaIntercalibration_Stat107: 4.264692573914326e-18 - syst_JES_EtaIntercalibration_Stat108: 1.1035776134010693e-13 - syst_JES_EtaIntercalibration_Stat109: 4.170236564033268e-10 + syst_JES_EtaIntercalibration_Stat103: 2.35109766e-20 + syst_JES_EtaIntercalibration_Stat104: 4.71853640e-13 + syst_JES_EtaIntercalibration_Stat105: 4.38971559e-12 + syst_JES_EtaIntercalibration_Stat106: 1.85886300e-12 + syst_JES_EtaIntercalibration_Stat107: 4.26469257e-18 + syst_JES_EtaIntercalibration_Stat108: 1.10357761e-13 + syst_JES_EtaIntercalibration_Stat109: 4.17023656e-10 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 1.0190972155628726e-07 - syst_JES_EtaIntercalibration_Stat111: 2.6797512720400005e-12 - syst_JES_EtaIntercalibration_Stat112: 3.4710212592347144e-13 + syst_JES_EtaIntercalibration_Stat110: 1.01909722e-07 + syst_JES_EtaIntercalibration_Stat111: 2.67975127e-12 + syst_JES_EtaIntercalibration_Stat112: 3.47102126e-13 syst_JES_EtaIntercalibration_Stat113: 0.0 syst_JES_EtaIntercalibration_Stat114: 0.0 syst_JES_EtaIntercalibration_Stat115: 0.0 syst_JES_EtaIntercalibration_Stat116: 0.0 syst_JES_EtaIntercalibration_Stat117: 0.0 - syst_JES_EtaIntercalibration_Stat118: 1.5051521517773542e-20 - syst_JES_EtaIntercalibration_Stat119: 1.5051521517773542e-20 + syst_JES_EtaIntercalibration_Stat118: 1.50515215e-20 + syst_JES_EtaIntercalibration_Stat119: 1.50515215e-20 syst_JES_EtaIntercalibration_Stat12: 0.0 syst_JES_EtaIntercalibration_Stat120: 0.0 syst_JES_EtaIntercalibration_Stat121: 0.0 syst_JES_EtaIntercalibration_Stat122: 0.0 - syst_JES_EtaIntercalibration_Stat123: 7.65088836345166e-17 - syst_JES_EtaIntercalibration_Stat124: 4.019137990601965e-11 - syst_JES_EtaIntercalibration_Stat125: 1.6577402847475838e-07 - syst_JES_EtaIntercalibration_Stat126: 3.2425467640112765e-09 - syst_JES_EtaIntercalibration_Stat127: 2.4472878866206155e-13 - syst_JES_EtaIntercalibration_Stat128: 1.0280542377107348e-07 - syst_JES_EtaIntercalibration_Stat129: 3.7978048742233974e-08 + syst_JES_EtaIntercalibration_Stat123: 7.65088836e-17 + syst_JES_EtaIntercalibration_Stat124: 4.01913799e-11 + syst_JES_EtaIntercalibration_Stat125: 1.65774028e-07 + syst_JES_EtaIntercalibration_Stat126: 3.24254676e-09 + syst_JES_EtaIntercalibration_Stat127: 2.44728789e-13 + syst_JES_EtaIntercalibration_Stat128: 1.02805424e-07 + syst_JES_EtaIntercalibration_Stat129: 3.79780487e-08 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 5.363510062216719e-09 - syst_JES_EtaIntercalibration_Stat131: 8.9265742546175e-13 + syst_JES_EtaIntercalibration_Stat130: 5.36351006e-09 + syst_JES_EtaIntercalibration_Stat131: 8.92657425e-13 syst_JES_EtaIntercalibration_Stat132: 0.0 syst_JES_EtaIntercalibration_Stat133: 0.0 syst_JES_EtaIntercalibration_Stat134: 0.0 syst_JES_EtaIntercalibration_Stat135: 0.0 syst_JES_EtaIntercalibration_Stat136: 0.0 - syst_JES_EtaIntercalibration_Stat137: 1.5051521517773542e-20 - syst_JES_EtaIntercalibration_Stat138: 1.5051521517773542e-20 - syst_JES_EtaIntercalibration_Stat139: 8.571919446658374e-20 + syst_JES_EtaIntercalibration_Stat137: 1.50515215e-20 + syst_JES_EtaIntercalibration_Stat138: 1.50515215e-20 + syst_JES_EtaIntercalibration_Stat139: 8.57191945e-20 syst_JES_EtaIntercalibration_Stat14: 0.0 syst_JES_EtaIntercalibration_Stat140: 0.0 syst_JES_EtaIntercalibration_Stat141: 0.0 - syst_JES_EtaIntercalibration_Stat142: 4.658096639399187e-13 - syst_JES_EtaIntercalibration_Stat143: 2.3487865796619327e-07 - syst_JES_EtaIntercalibration_Stat144: 1.0384196323259687e-06 - syst_JES_EtaIntercalibration_Stat145: 1.725099318785733e-07 - syst_JES_EtaIntercalibration_Stat146: 5.8691947275584585e-08 - syst_JES_EtaIntercalibration_Stat147: 2.994344582153998e-07 - syst_JES_EtaIntercalibration_Stat148: 4.200085928585271e-09 - syst_JES_EtaIntercalibration_Stat149: 9.251776679600518e-13 + syst_JES_EtaIntercalibration_Stat142: 4.65809664e-13 + syst_JES_EtaIntercalibration_Stat143: 2.34878658e-07 + syst_JES_EtaIntercalibration_Stat144: 1.03841963e-06 + syst_JES_EtaIntercalibration_Stat145: 1.72509932e-07 + syst_JES_EtaIntercalibration_Stat146: 5.86919473e-08 + syst_JES_EtaIntercalibration_Stat147: 2.99434458e-07 + syst_JES_EtaIntercalibration_Stat148: 4.20008593e-09 + syst_JES_EtaIntercalibration_Stat149: 9.25177668e-13 syst_JES_EtaIntercalibration_Stat15: 0.0 syst_JES_EtaIntercalibration_Stat150: 0.0 syst_JES_EtaIntercalibration_Stat151: 0.0 @@ -60064,60 +60064,60 @@ bins: syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 1.5051521517773542e-20 - syst_JES_EtaIntercalibration_Stat157: 8.571919446658374e-20 + syst_JES_EtaIntercalibration_Stat156: 1.50515215e-20 + syst_JES_EtaIntercalibration_Stat157: 8.57191945e-20 syst_JES_EtaIntercalibration_Stat158: 0.0 syst_JES_EtaIntercalibration_Stat159: 0.0 - syst_JES_EtaIntercalibration_Stat16: 3.1878395113305184e-22 - syst_JES_EtaIntercalibration_Stat160: 4.646841281345214e-13 - syst_JES_EtaIntercalibration_Stat161: 2.4119813249847107e-07 - syst_JES_EtaIntercalibration_Stat162: 8.531170592597478e-07 - syst_JES_EtaIntercalibration_Stat163: 7.975283347160777e-07 - syst_JES_EtaIntercalibration_Stat164: 1.8170002559163277e-07 - syst_JES_EtaIntercalibration_Stat165: 9.823938568619003e-07 - syst_JES_EtaIntercalibration_Stat166: 7.32189306122399e-08 - syst_JES_EtaIntercalibration_Stat167: 9.386813165686213e-13 + syst_JES_EtaIntercalibration_Stat16: 3.18783951e-22 + syst_JES_EtaIntercalibration_Stat160: 4.64684128e-13 + syst_JES_EtaIntercalibration_Stat161: 2.41198132e-07 + syst_JES_EtaIntercalibration_Stat162: 8.53117059e-07 + syst_JES_EtaIntercalibration_Stat163: 7.97528335e-07 + syst_JES_EtaIntercalibration_Stat164: 1.81700026e-07 + syst_JES_EtaIntercalibration_Stat165: 9.82393857e-07 + syst_JES_EtaIntercalibration_Stat166: 7.32189306e-08 + syst_JES_EtaIntercalibration_Stat167: 9.38681317e-13 syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 - syst_JES_EtaIntercalibration_Stat17: 1.4458591451106155e-21 + syst_JES_EtaIntercalibration_Stat17: 1.44585915e-21 syst_JES_EtaIntercalibration_Stat170: 0.0 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 - syst_JES_EtaIntercalibration_Stat174: 8.571919446658374e-20 - syst_JES_EtaIntercalibration_Stat175: 8.571919446658374e-20 + syst_JES_EtaIntercalibration_Stat174: 8.57191945e-20 + syst_JES_EtaIntercalibration_Stat175: 8.57191945e-20 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 - syst_JES_EtaIntercalibration_Stat178: 3.911486950956119e-11 - syst_JES_EtaIntercalibration_Stat179: 8.207398772004442e-07 - syst_JES_EtaIntercalibration_Stat18: 4.2612356189255714e-20 - syst_JES_EtaIntercalibration_Stat180: 2.32664413325287e-06 - syst_JES_EtaIntercalibration_Stat181: 1.0720257028168681e-06 - syst_JES_EtaIntercalibration_Stat182: 1.2956408327542013e-05 - syst_JES_EtaIntercalibration_Stat183: 2.2759787081605133e-06 - syst_JES_EtaIntercalibration_Stat184: 1.4220253470026712e-09 + syst_JES_EtaIntercalibration_Stat178: 3.91148695e-11 + syst_JES_EtaIntercalibration_Stat179: 8.20739877e-07 + syst_JES_EtaIntercalibration_Stat18: 4.26123562e-20 + syst_JES_EtaIntercalibration_Stat180: 2.32664413e-06 + syst_JES_EtaIntercalibration_Stat181: 1.07202570e-06 + syst_JES_EtaIntercalibration_Stat182: 1.29564083e-05 + syst_JES_EtaIntercalibration_Stat183: 2.27597871e-06 + syst_JES_EtaIntercalibration_Stat184: 1.42202535e-09 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 syst_JES_EtaIntercalibration_Stat187: 0.0 - syst_JES_EtaIntercalibration_Stat188: 1.4618508815881322e-17 + syst_JES_EtaIntercalibration_Stat188: 1.46185088e-17 syst_JES_EtaIntercalibration_Stat189: 0.0 - syst_JES_EtaIntercalibration_Stat19: 2.543136887782488e-20 + syst_JES_EtaIntercalibration_Stat19: 2.54313689e-20 syst_JES_EtaIntercalibration_Stat190: 0.0 - syst_JES_EtaIntercalibration_Stat191: 8.571919446658374e-20 - syst_JES_EtaIntercalibration_Stat192: 8.571919446658374e-20 + syst_JES_EtaIntercalibration_Stat191: 8.57191945e-20 + syst_JES_EtaIntercalibration_Stat192: 8.57191945e-20 syst_JES_EtaIntercalibration_Stat193: 0.0 syst_JES_EtaIntercalibration_Stat194: 0.0 - syst_JES_EtaIntercalibration_Stat195: 9.883517622248001e-08 - syst_JES_EtaIntercalibration_Stat196: 2.4863681480223317e-06 - syst_JES_EtaIntercalibration_Stat197: 1.3237087698961581e-05 - syst_JES_EtaIntercalibration_Stat198: 5.249981714253869e-06 - syst_JES_EtaIntercalibration_Stat199: 5.3061388123490686e-08 - syst_JES_EtaIntercalibration_Stat2: 8.52319024074906e-20 + syst_JES_EtaIntercalibration_Stat195: 9.88351762e-08 + syst_JES_EtaIntercalibration_Stat196: 2.48636815e-06 + syst_JES_EtaIntercalibration_Stat197: 1.32370877e-05 + syst_JES_EtaIntercalibration_Stat198: 5.24998171e-06 + syst_JES_EtaIntercalibration_Stat199: 5.30613881e-08 + syst_JES_EtaIntercalibration_Stat2: 8.52319024e-20 syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 syst_JES_EtaIntercalibration_Stat201: 0.0 syst_JES_EtaIntercalibration_Stat202: 0.0 - syst_JES_EtaIntercalibration_Stat203: 1.4618508815881322e-17 + syst_JES_EtaIntercalibration_Stat203: 1.46185088e-17 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 @@ -60125,9 +60125,9 @@ bins: syst_JES_EtaIntercalibration_Stat208: 0.0 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 2.450115480989296e-07 - syst_JES_EtaIntercalibration_Stat211: 5.925250883295998e-06 - syst_JES_EtaIntercalibration_Stat212: 3.13154786008453e-09 + syst_JES_EtaIntercalibration_Stat210: 2.45011548e-07 + syst_JES_EtaIntercalibration_Stat211: 5.92525088e-06 + syst_JES_EtaIntercalibration_Stat212: 3.13154786e-09 syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 syst_JES_EtaIntercalibration_Stat215: 0.0 @@ -60139,37 +60139,37 @@ bins: syst_JES_EtaIntercalibration_Stat220: 0.0 syst_JES_EtaIntercalibration_Stat221: 0.0 syst_JES_EtaIntercalibration_Stat222: 0.0 - syst_JES_EtaIntercalibration_Stat223: 2.456048045132668e-07 - syst_JES_EtaIntercalibration_Stat224: 2.2559961768584628e-09 + syst_JES_EtaIntercalibration_Stat223: 2.45604805e-07 + syst_JES_EtaIntercalibration_Stat224: 2.25599618e-09 syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 syst_JES_EtaIntercalibration_Stat227: 0.0 syst_JES_EtaIntercalibration_Stat228: 0.0 syst_JES_EtaIntercalibration_Stat229: 0.0 - syst_JES_EtaIntercalibration_Stat23: 6.675544833944268e-20 + syst_JES_EtaIntercalibration_Stat23: 6.67554483e-20 syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 syst_JES_EtaIntercalibration_Stat232: 0.0 syst_JES_EtaIntercalibration_Stat233: 0.0 syst_JES_EtaIntercalibration_Stat234: 0.0 - syst_JES_EtaIntercalibration_Stat235: 8.36840347676903e-07 + syst_JES_EtaIntercalibration_Stat235: 8.36840348e-07 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 syst_JES_EtaIntercalibration_Stat239: 0.0 - syst_JES_EtaIntercalibration_Stat24: 2.1113798965368598e-17 + syst_JES_EtaIntercalibration_Stat24: 2.11137990e-17 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 syst_JES_EtaIntercalibration_Stat243: 0.0 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 - syst_JES_EtaIntercalibration_Stat25: 3.638992965129978e-13 - syst_JES_EtaIntercalibration_Stat26: 1.5763565586503584e-19 + syst_JES_EtaIntercalibration_Stat25: 3.63899297e-13 + syst_JES_EtaIntercalibration_Stat26: 1.57635656e-19 syst_JES_EtaIntercalibration_Stat27: 0.0 syst_JES_EtaIntercalibration_Stat28: 0.0 syst_JES_EtaIntercalibration_Stat29: 0.0 - syst_JES_EtaIntercalibration_Stat3: 1.3673391194213672e-19 + syst_JES_EtaIntercalibration_Stat3: 1.36733912e-19 syst_JES_EtaIntercalibration_Stat30: 0.0 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 @@ -60178,19 +60178,19 @@ bins: syst_JES_EtaIntercalibration_Stat35: 0.0 syst_JES_EtaIntercalibration_Stat36: 0.0 syst_JES_EtaIntercalibration_Stat37: 0.0 - syst_JES_EtaIntercalibration_Stat38: 3.1878395113305184e-22 - syst_JES_EtaIntercalibration_Stat39: 6.420437601908456e-20 + syst_JES_EtaIntercalibration_Stat38: 3.18783951e-22 + syst_JES_EtaIntercalibration_Stat39: 6.42043760e-20 syst_JES_EtaIntercalibration_Stat4: 0.0 - syst_JES_EtaIntercalibration_Stat40: 1.5511425853221876e-17 - syst_JES_EtaIntercalibration_Stat41: 3.0406842568737714e-18 - syst_JES_EtaIntercalibration_Stat42: 4.560489776328854e-21 + syst_JES_EtaIntercalibration_Stat40: 1.55114259e-17 + syst_JES_EtaIntercalibration_Stat41: 3.04068426e-18 + syst_JES_EtaIntercalibration_Stat42: 4.56048978e-21 syst_JES_EtaIntercalibration_Stat43: 0.0 - syst_JES_EtaIntercalibration_Stat44: 1.7649597729126858e-20 - syst_JES_EtaIntercalibration_Stat45: 3.474192136310253e-19 - syst_JES_EtaIntercalibration_Stat46: 1.049403379391027e-13 - syst_JES_EtaIntercalibration_Stat47: 3.6230589629586493e-13 - syst_JES_EtaIntercalibration_Stat48: 1.020452502569326e-17 - syst_JES_EtaIntercalibration_Stat49: 9.539269822685591e-21 + syst_JES_EtaIntercalibration_Stat44: 1.76495977e-20 + syst_JES_EtaIntercalibration_Stat45: 3.47419214e-19 + syst_JES_EtaIntercalibration_Stat46: 1.04940338e-13 + syst_JES_EtaIntercalibration_Stat47: 3.62305896e-13 + syst_JES_EtaIntercalibration_Stat48: 1.02045250e-17 + syst_JES_EtaIntercalibration_Stat49: 9.53926982e-21 syst_JES_EtaIntercalibration_Stat5: 0.0 syst_JES_EtaIntercalibration_Stat50: 0.0 syst_JES_EtaIntercalibration_Stat51: 0.0 @@ -60201,21 +60201,21 @@ bins: syst_JES_EtaIntercalibration_Stat56: 0.0 syst_JES_EtaIntercalibration_Stat57: 0.0 syst_JES_EtaIntercalibration_Stat58: 0.0 - syst_JES_EtaIntercalibration_Stat59: 3.1878395113305184e-22 + syst_JES_EtaIntercalibration_Stat59: 3.18783951e-22 syst_JES_EtaIntercalibration_Stat6: 0.0 - syst_JES_EtaIntercalibration_Stat60: 1.0152811285550422e-21 - syst_JES_EtaIntercalibration_Stat61: 8.903286064706672e-18 - syst_JES_EtaIntercalibration_Stat62: 1.2888049774888364e-12 - syst_JES_EtaIntercalibration_Stat63: 5.1594337625363494e-17 - syst_JES_EtaIntercalibration_Stat64: 4.3992819868701307e-20 + syst_JES_EtaIntercalibration_Stat60: 1.01528113e-21 + syst_JES_EtaIntercalibration_Stat61: 8.90328606e-18 + syst_JES_EtaIntercalibration_Stat62: 1.28880498e-12 + syst_JES_EtaIntercalibration_Stat63: 5.15943376e-17 + syst_JES_EtaIntercalibration_Stat64: 4.39928199e-20 syst_JES_EtaIntercalibration_Stat65: 0.0 - syst_JES_EtaIntercalibration_Stat66: 1.7649597729126858e-20 - syst_JES_EtaIntercalibration_Stat67: 2.6211987715547255e-17 - syst_JES_EtaIntercalibration_Stat68: 1.4270939639416706e-12 - syst_JES_EtaIntercalibration_Stat69: 1.4731219700605241e-12 + syst_JES_EtaIntercalibration_Stat66: 1.76495977e-20 + syst_JES_EtaIntercalibration_Stat67: 2.62119877e-17 + syst_JES_EtaIntercalibration_Stat68: 1.42709396e-12 + syst_JES_EtaIntercalibration_Stat69: 1.47312197e-12 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 3.6383009965409334e-13 - syst_JES_EtaIntercalibration_Stat71: 1.2184306384341293e-19 + syst_JES_EtaIntercalibration_Stat70: 3.63830100e-13 + syst_JES_EtaIntercalibration_Stat71: 1.21843064e-19 syst_JES_EtaIntercalibration_Stat72: 0.0 syst_JES_EtaIntercalibration_Stat73: 0.0 syst_JES_EtaIntercalibration_Stat74: 0.0 @@ -60226,19 +60226,19 @@ bins: syst_JES_EtaIntercalibration_Stat79: 0.0 syst_JES_EtaIntercalibration_Stat8: 0.0 syst_JES_EtaIntercalibration_Stat80: 0.0 - syst_JES_EtaIntercalibration_Stat81: 3.1878395113305184e-22 - syst_JES_EtaIntercalibration_Stat82: 1.2521811240791006e-20 - syst_JES_EtaIntercalibration_Stat83: 1.0699111832297109e-16 - syst_JES_EtaIntercalibration_Stat84: 1.6376497397184787e-12 - syst_JES_EtaIntercalibration_Stat85: 1.8043860787536575e-12 - syst_JES_EtaIntercalibration_Stat86: 2.6931023504501272e-18 + syst_JES_EtaIntercalibration_Stat81: 3.18783951e-22 + syst_JES_EtaIntercalibration_Stat82: 1.25218112e-20 + syst_JES_EtaIntercalibration_Stat83: 1.06991118e-16 + syst_JES_EtaIntercalibration_Stat84: 1.63764974e-12 + syst_JES_EtaIntercalibration_Stat85: 1.80438608e-12 + syst_JES_EtaIntercalibration_Stat86: 2.69310235e-18 syst_JES_EtaIntercalibration_Stat87: 0.0 - syst_JES_EtaIntercalibration_Stat88: 7.28886525804943e-17 - syst_JES_EtaIntercalibration_Stat89: 1.76205049244928e-11 + syst_JES_EtaIntercalibration_Stat88: 7.28886526e-17 + syst_JES_EtaIntercalibration_Stat89: 1.76205049e-11 syst_JES_EtaIntercalibration_Stat9: 0.0 - syst_JES_EtaIntercalibration_Stat90: 2.5452016614946252e-12 - syst_JES_EtaIntercalibration_Stat91: 3.686650216988147e-13 - syst_JES_EtaIntercalibration_Stat92: 1.384326953685436e-19 + syst_JES_EtaIntercalibration_Stat90: 2.54520166e-12 + syst_JES_EtaIntercalibration_Stat91: 3.68665022e-13 + syst_JES_EtaIntercalibration_Stat92: 1.38432695e-19 syst_JES_EtaIntercalibration_Stat93: 0.0 syst_JES_EtaIntercalibration_Stat94: 0.0 syst_JES_EtaIntercalibration_Stat95: 0.0 @@ -60246,154 +60246,154 @@ bins: syst_JES_EtaIntercalibration_Stat97: 0.0 syst_JES_EtaIntercalibration_Stat98: 0.0 syst_JES_EtaIntercalibration_Stat99: 0.0 - syst_JES_EtaIntercalibration_TotalStat_MJB: 1.4844473820247048e-05 - syst_JES_Flavour_Comp: 3.817787677438336e-05 - syst_JES_Flavour_Response: 1.1847092807942377e-05 - syst_JES_Gjet_Generator: 5.2829408767749804e-05 - syst_JES_Gjet_OOC: 4.235450507325047e-05 - syst_JES_Gjet_Purity: 6.703354833961873e-06 - syst_JES_Gjet_Stat1: 2.258244706110257e-07 - syst_JES_Gjet_Stat10: 1.4861210237393185e-06 - syst_JES_Gjet_Stat11: 1.3901366382896926e-06 - syst_JES_Gjet_Stat12: 3.6472589707888852e-06 - syst_JES_Gjet_Stat13: 1.283291746837016e-05 - syst_JES_Gjet_Stat14: 2.214838302788716e-05 - syst_JES_Gjet_Stat15: 1.3261537495705391e-05 - syst_JES_Gjet_Stat2: 1.4879687258810246e-07 - syst_JES_Gjet_Stat3: 2.081909224550088e-07 - syst_JES_Gjet_Stat4: 2.0819182913368618e-07 - syst_JES_Gjet_Stat5: 2.081765366934696e-07 - syst_JES_Gjet_Stat6: 7.027697674793644e-07 - syst_JES_Gjet_Stat7: 1.1022235072797168e-06 - syst_JES_Gjet_Stat8: 7.028170302210597e-07 - syst_JES_Gjet_Stat9: 1.483823742632527e-06 - syst_JES_Gjet_Veto: 4.249963882199471e-05 - syst_JES_Gjet_dPhi: 3.142460523029685e-06 - syst_JES_LArESZee: 8.002247746727167e-05 - syst_JES_LArEsmear: 5.463397749576266e-06 - syst_JES_LAr_JVT: 6.447512853806497e-06 - syst_JES_MJB_Alpha: 6.778148468252595e-07 - syst_JES_MJB_Asym: 4.626873026137631e-06 - syst_JES_MJB_Beta: 1.4794779454627736e-06 - syst_JES_MJB_Fragmentation: 2.920003767120858e-06 - syst_JES_MJB_Stat1: 2.0508768856272187e-09 - syst_JES_MJB_Stat10: 1.5538380119883794e-08 - syst_JES_MJB_Stat11: 5.532170279374994e-07 - syst_JES_MJB_Stat12: 5.633495251617773e-07 - syst_JES_MJB_Stat13: 1.4315399924556772e-07 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.48444738e-05 + syst_JES_Flavour_Comp: 3.81778768e-05 + syst_JES_Flavour_Response: 1.18470928e-05 + syst_JES_Gjet_Generator: 5.28294088e-05 + syst_JES_Gjet_OOC: 4.23545051e-05 + syst_JES_Gjet_Purity: 6.70335483e-06 + syst_JES_Gjet_Stat1: 2.25824471e-07 + syst_JES_Gjet_Stat10: 1.48612102e-06 + syst_JES_Gjet_Stat11: 1.39013664e-06 + syst_JES_Gjet_Stat12: 3.64725897e-06 + syst_JES_Gjet_Stat13: 1.28329175e-05 + syst_JES_Gjet_Stat14: 2.21483830e-05 + syst_JES_Gjet_Stat15: 1.32615375e-05 + syst_JES_Gjet_Stat2: 1.48796873e-07 + syst_JES_Gjet_Stat3: 2.08190922e-07 + syst_JES_Gjet_Stat4: 2.08191829e-07 + syst_JES_Gjet_Stat5: 2.08176537e-07 + syst_JES_Gjet_Stat6: 7.02769767e-07 + syst_JES_Gjet_Stat7: 1.10222351e-06 + syst_JES_Gjet_Stat8: 7.02817030e-07 + syst_JES_Gjet_Stat9: 1.48382374e-06 + syst_JES_Gjet_Veto: 4.24996388e-05 + syst_JES_Gjet_dPhi: 3.14246052e-06 + syst_JES_LArESZee: 8.00224775e-05 + syst_JES_LArEsmear: 5.46339775e-06 + syst_JES_LAr_JVT: 6.44751285e-06 + syst_JES_MJB_Alpha: 6.77814847e-07 + syst_JES_MJB_Asym: 4.62687303e-06 + syst_JES_MJB_Beta: 1.47947795e-06 + syst_JES_MJB_Fragmentation: 2.92000377e-06 + syst_JES_MJB_Stat1: 2.05087689e-09 + syst_JES_MJB_Stat10: 1.55383801e-08 + syst_JES_MJB_Stat11: 5.53217028e-07 + syst_JES_MJB_Stat12: 5.63349525e-07 + syst_JES_MJB_Stat13: 1.43153999e-07 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 2.7140088923030445e-07 - syst_JES_MJB_Stat3: 6.78389679222053e-07 - syst_JES_MJB_Stat4: 3.8822734841938946e-07 - syst_JES_MJB_Stat5: 7.035288189417457e-07 - syst_JES_MJB_Stat6: 6.743520909673225e-07 - syst_JES_MJB_Stat7: 7.983169708948633e-07 - syst_JES_MJB_Stat8: 8.010898018366917e-07 - syst_JES_MJB_Stat9: 8.010898018366917e-07 - syst_JES_MJB_Threshold: 4.904208305883835e-06 - syst_JES_Pileup_MuOffset: 8.196796447393335e-06 - syst_JES_Pileup_NPVOffset: 8.068780623489524e-06 - syst_JES_Pileup_Pt_term: 1.5354061742744166e-05 - syst_JES_Pileup_Rho_topology: 1.5137699032547847e-05 - syst_JES_PunchThrough_MC15: 4.301469865057757e-06 + syst_JES_MJB_Stat2: 2.71400889e-07 + syst_JES_MJB_Stat3: 6.78389679e-07 + syst_JES_MJB_Stat4: 3.88227348e-07 + syst_JES_MJB_Stat5: 7.03528819e-07 + syst_JES_MJB_Stat6: 6.74352091e-07 + syst_JES_MJB_Stat7: 7.98316971e-07 + syst_JES_MJB_Stat8: 8.01089802e-07 + syst_JES_MJB_Stat9: 8.01089802e-07 + syst_JES_MJB_Threshold: 4.90420831e-06 + syst_JES_Pileup_MuOffset: 8.19679645e-06 + syst_JES_Pileup_NPVOffset: 8.06878062e-06 + syst_JES_Pileup_Pt_term: 1.53540617e-05 + syst_JES_Pileup_Rho_topology: 1.51376990e-05 + syst_JES_PunchThrough_MC15: 4.30146987e-06 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 2.2105056163692504e-05 - syst_JES_Zjet_MuScale: 1.8251970904740673e-06 - syst_JES_Zjet_MuSmearID: 7.033375396118993e-07 - syst_JES_Zjet_MuSmearMS: 3.731745875592281e-06 - syst_JES_Zjet_OOC: 1.3836154406120222e-05 - syst_JES_Zjet_Stat1: 1.4844830670304058e-06 - syst_JES_Zjet_Stat10: 1.4869002124806493e-06 - syst_JES_Zjet_Stat11: 1.1240229375217393e-06 - syst_JES_Zjet_Stat12: 5.042623702270476e-06 - syst_JES_Zjet_Stat13: 5.56581647200121e-06 - syst_JES_Zjet_Stat2: 9.415807034981123e-11 - syst_JES_Zjet_Stat3: 7.031866191218373e-07 - syst_JES_Zjet_Stat4: 7.031866191218373e-07 - syst_JES_Zjet_Stat5: 7.028496772260411e-07 - syst_JES_Zjet_Stat6: 1.0976838695265364e-06 - syst_JES_Zjet_Stat7: 7.02874354772423e-07 - syst_JES_Zjet_Stat8: 7.027900483577937e-07 - syst_JES_Zjet_Stat9: 1.4845263733174294e-06 - syst_JES_Zjet_Veto: 2.5660735011053364e-06 - syst_JES_Zjet_dPhi: 2.5440234039803957e-06 + syst_JES_Zjet_MC: 2.21050562e-05 + syst_JES_Zjet_MuScale: 1.82519709e-06 + syst_JES_Zjet_MuSmearID: 7.03337540e-07 + syst_JES_Zjet_MuSmearMS: 3.73174588e-06 + syst_JES_Zjet_OOC: 1.38361544e-05 + syst_JES_Zjet_Stat1: 1.48448307e-06 + syst_JES_Zjet_Stat10: 1.48690021e-06 + syst_JES_Zjet_Stat11: 1.12402294e-06 + syst_JES_Zjet_Stat12: 5.04262370e-06 + syst_JES_Zjet_Stat13: 5.56581647e-06 + syst_JES_Zjet_Stat2: 9.41580703e-11 + syst_JES_Zjet_Stat3: 7.03186619e-07 + syst_JES_Zjet_Stat4: 7.03186619e-07 + syst_JES_Zjet_Stat5: 7.02849677e-07 + syst_JES_Zjet_Stat6: 1.09768387e-06 + syst_JES_Zjet_Stat7: 7.02874355e-07 + syst_JES_Zjet_Stat8: 7.02790048e-07 + syst_JES_Zjet_Stat9: 1.48452637e-06 + syst_JES_Zjet_Veto: 2.56607350e-06 + syst_JES_Zjet_dPhi: 2.54402340e-06 syst_PRW: 0.0 - syst_Unfolding_bias: 1.915e-05 - syst_cleaning: 4.940674928590222e-06 - syst_lumi: 1.625e-05 -- stat: 3.4559e-05 - syst_JER_CROSS_CALIB_FORWARD: 4.459e-11 - syst_JER_NOISE_FORWARD: 7.684e-10 - syst_JER_NP0: 4.645639245572131e-09 - syst_JER_NP1: 1.7340264213673333e-05 - syst_JER_NP2: 5.949739744420822e-10 - syst_JER_NP3: 3.833392068390605e-10 - syst_JER_NP4: 3.6709900571916563e-10 - syst_JER_NP5: 6.905121342163365e-13 - syst_JER_NP6: 5.069926503412056e-13 - syst_JER_NP7: 4.410449397578777e-16 - syst_JER_NP8: 3.525280090688965e-10 - syst_JES_EtaIntercalibration_Modelling: 3.446167089318218e-05 - syst_JES_EtaIntercalibration_NonClosure: 1.1017551951318406e-05 + syst_Unfolding_bias: 1.91500000e-05 + syst_cleaning: 4.94067493e-06 + syst_lumi: 1.62500000e-05 +- stat: 3.45590000e-05 + syst_JER_CROSS_CALIB_FORWARD: 4.45900000e-11 + syst_JER_NOISE_FORWARD: 7.68400000e-10 + syst_JER_NP0: 4.64563925e-09 + syst_JER_NP1: 1.73402642e-05 + syst_JER_NP2: 5.94973974e-10 + syst_JER_NP3: 3.83339207e-10 + syst_JER_NP4: 3.67099006e-10 + syst_JER_NP5: 6.90512134e-13 + syst_JER_NP6: 5.06992650e-13 + syst_JER_NP7: 4.41044940e-16 + syst_JER_NP8: 3.52528009e-10 + syst_JES_EtaIntercalibration_Modelling: 3.44616709e-05 + syst_JES_EtaIntercalibration_NonClosure: 1.10175520e-05 syst_JES_EtaIntercalibration_Stat0: 0.0 - syst_JES_EtaIntercalibration_Stat1: 3.7317034649071465e-22 + syst_JES_EtaIntercalibration_Stat1: 3.73170346e-22 syst_JES_EtaIntercalibration_Stat10: 0.0 syst_JES_EtaIntercalibration_Stat100: 0.0 syst_JES_EtaIntercalibration_Stat101: 0.0 syst_JES_EtaIntercalibration_Stat102: 0.0 - syst_JES_EtaIntercalibration_Stat103: 2.619301051807524e-21 - syst_JES_EtaIntercalibration_Stat104: 4.3470374744681866e-14 - syst_JES_EtaIntercalibration_Stat105: 3.995393190913755e-13 - syst_JES_EtaIntercalibration_Stat106: 1.6441852864184743e-13 - syst_JES_EtaIntercalibration_Stat107: 4.406369367177472e-19 - syst_JES_EtaIntercalibration_Stat108: 9.507508760448238e-15 - syst_JES_EtaIntercalibration_Stat109: 5.7118004823347946e-11 + syst_JES_EtaIntercalibration_Stat103: 2.61930105e-21 + syst_JES_EtaIntercalibration_Stat104: 4.34703747e-14 + syst_JES_EtaIntercalibration_Stat105: 3.99539319e-13 + syst_JES_EtaIntercalibration_Stat106: 1.64418529e-13 + syst_JES_EtaIntercalibration_Stat107: 4.40636937e-19 + syst_JES_EtaIntercalibration_Stat108: 9.50750876e-15 + syst_JES_EtaIntercalibration_Stat109: 5.71180048e-11 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 1.4671790996564631e-08 - syst_JES_EtaIntercalibration_Stat111: 2.4320238624446103e-13 - syst_JES_EtaIntercalibration_Stat112: 3.008563745587146e-14 + syst_JES_EtaIntercalibration_Stat110: 1.46717910e-08 + syst_JES_EtaIntercalibration_Stat111: 2.43202386e-13 + syst_JES_EtaIntercalibration_Stat112: 3.00856375e-14 syst_JES_EtaIntercalibration_Stat113: 0.0 syst_JES_EtaIntercalibration_Stat114: 0.0 syst_JES_EtaIntercalibration_Stat115: 0.0 syst_JES_EtaIntercalibration_Stat116: 0.0 syst_JES_EtaIntercalibration_Stat117: 0.0 - syst_JES_EtaIntercalibration_Stat118: 1.6489123688055712e-21 - syst_JES_EtaIntercalibration_Stat119: 1.6489123688055712e-21 + syst_JES_EtaIntercalibration_Stat118: 1.64891237e-21 + syst_JES_EtaIntercalibration_Stat119: 1.64891237e-21 syst_JES_EtaIntercalibration_Stat12: 0.0 syst_JES_EtaIntercalibration_Stat120: 0.0 syst_JES_EtaIntercalibration_Stat121: 0.0 syst_JES_EtaIntercalibration_Stat122: 0.0 - syst_JES_EtaIntercalibration_Stat123: 7.223190820544616e-18 - syst_JES_EtaIntercalibration_Stat124: 4.151528235180389e-12 - syst_JES_EtaIntercalibration_Stat125: 2.4301024087216985e-08 - syst_JES_EtaIntercalibration_Stat126: 5.313457710105069e-10 - syst_JES_EtaIntercalibration_Stat127: 2.1074450330910176e-14 - syst_JES_EtaIntercalibration_Stat128: 1.494091171916895e-08 - syst_JES_EtaIntercalibration_Stat129: 1.547547339340545e-08 + syst_JES_EtaIntercalibration_Stat123: 7.22319082e-18 + syst_JES_EtaIntercalibration_Stat124: 4.15152824e-12 + syst_JES_EtaIntercalibration_Stat125: 2.43010241e-08 + syst_JES_EtaIntercalibration_Stat126: 5.31345771e-10 + syst_JES_EtaIntercalibration_Stat127: 2.10744503e-14 + syst_JES_EtaIntercalibration_Stat128: 1.49409117e-08 + syst_JES_EtaIntercalibration_Stat129: 1.54754734e-08 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 6.326014173843985e-09 - syst_JES_EtaIntercalibration_Stat131: 7.97145841309324e-14 + syst_JES_EtaIntercalibration_Stat130: 6.32601417e-09 + syst_JES_EtaIntercalibration_Stat131: 7.97145841e-14 syst_JES_EtaIntercalibration_Stat132: 0.0 syst_JES_EtaIntercalibration_Stat133: 0.0 syst_JES_EtaIntercalibration_Stat134: 0.0 syst_JES_EtaIntercalibration_Stat135: 0.0 syst_JES_EtaIntercalibration_Stat136: 0.0 - syst_JES_EtaIntercalibration_Stat137: 1.6489123688055712e-21 - syst_JES_EtaIntercalibration_Stat138: 1.6489123688055712e-21 - syst_JES_EtaIntercalibration_Stat139: 9.895206263640995e-21 + syst_JES_EtaIntercalibration_Stat137: 1.64891237e-21 + syst_JES_EtaIntercalibration_Stat138: 1.64891237e-21 + syst_JES_EtaIntercalibration_Stat139: 9.89520626e-21 syst_JES_EtaIntercalibration_Stat14: 0.0 syst_JES_EtaIntercalibration_Stat140: 0.0 syst_JES_EtaIntercalibration_Stat141: 0.0 - syst_JES_EtaIntercalibration_Stat142: 4.2926487548025364e-14 - syst_JES_EtaIntercalibration_Stat143: 3.172581783134203e-08 - syst_JES_EtaIntercalibration_Stat144: 3.374075124930534e-07 - syst_JES_EtaIntercalibration_Stat145: 1.9800953878727664e-08 - syst_JES_EtaIntercalibration_Stat146: 3.2954735623275755e-09 - syst_JES_EtaIntercalibration_Stat147: 1.2447823714609714e-07 - syst_JES_EtaIntercalibration_Stat148: 6.1899546928228805e-09 - syst_JES_EtaIntercalibration_Stat149: 8.251482967515596e-14 + syst_JES_EtaIntercalibration_Stat142: 4.29264875e-14 + syst_JES_EtaIntercalibration_Stat143: 3.17258178e-08 + syst_JES_EtaIntercalibration_Stat144: 3.37407512e-07 + syst_JES_EtaIntercalibration_Stat145: 1.98009539e-08 + syst_JES_EtaIntercalibration_Stat146: 3.29547356e-09 + syst_JES_EtaIntercalibration_Stat147: 1.24478237e-07 + syst_JES_EtaIntercalibration_Stat148: 6.18995469e-09 + syst_JES_EtaIntercalibration_Stat149: 8.25148297e-14 syst_JES_EtaIntercalibration_Stat15: 0.0 syst_JES_EtaIntercalibration_Stat150: 0.0 syst_JES_EtaIntercalibration_Stat151: 0.0 @@ -60401,60 +60401,60 @@ bins: syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 1.6489123688055712e-21 - syst_JES_EtaIntercalibration_Stat157: 9.895206263640995e-21 + syst_JES_EtaIntercalibration_Stat156: 1.64891237e-21 + syst_JES_EtaIntercalibration_Stat157: 9.89520626e-21 syst_JES_EtaIntercalibration_Stat158: 0.0 syst_JES_EtaIntercalibration_Stat159: 0.0 - syst_JES_EtaIntercalibration_Stat16: 4.666144875590555e-23 - syst_JES_EtaIntercalibration_Stat160: 4.2839912997776675e-14 - syst_JES_EtaIntercalibration_Stat161: 3.2715124832865916e-08 - syst_JES_EtaIntercalibration_Stat162: 1.8434849362213407e-07 - syst_JES_EtaIntercalibration_Stat163: 1.0227306231359262e-07 - syst_JES_EtaIntercalibration_Stat164: 9.261934355198161e-08 - syst_JES_EtaIntercalibration_Stat165: 4.6943487642057446e-07 - syst_JES_EtaIntercalibration_Stat166: 2.86857943937413e-08 - syst_JES_EtaIntercalibration_Stat167: 8.367210844720001e-14 + syst_JES_EtaIntercalibration_Stat16: 4.66614488e-23 + syst_JES_EtaIntercalibration_Stat160: 4.28399130e-14 + syst_JES_EtaIntercalibration_Stat161: 3.27151248e-08 + syst_JES_EtaIntercalibration_Stat162: 1.84348494e-07 + syst_JES_EtaIntercalibration_Stat163: 1.02273062e-07 + syst_JES_EtaIntercalibration_Stat164: 9.26193436e-08 + syst_JES_EtaIntercalibration_Stat165: 4.69434876e-07 + syst_JES_EtaIntercalibration_Stat166: 2.86857944e-08 + syst_JES_EtaIntercalibration_Stat167: 8.36721084e-14 syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 - syst_JES_EtaIntercalibration_Stat17: 2.0269506654085097e-22 + syst_JES_EtaIntercalibration_Stat17: 2.02695067e-22 syst_JES_EtaIntercalibration_Stat170: 0.0 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 - syst_JES_EtaIntercalibration_Stat174: 9.895206263640995e-21 - syst_JES_EtaIntercalibration_Stat175: 9.895206263640995e-21 + syst_JES_EtaIntercalibration_Stat174: 9.89520626e-21 + syst_JES_EtaIntercalibration_Stat175: 9.89520626e-21 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 - syst_JES_EtaIntercalibration_Stat178: 4.047639311994091e-12 - syst_JES_EtaIntercalibration_Stat179: 1.8468250613382416e-07 - syst_JES_EtaIntercalibration_Stat18: 5.234799136547648e-21 - syst_JES_EtaIntercalibration_Stat180: 8.477502738867148e-07 - syst_JES_EtaIntercalibration_Stat181: 1.3077699138227643e-07 - syst_JES_EtaIntercalibration_Stat182: 4.939839951860788e-06 - syst_JES_EtaIntercalibration_Stat183: 4.7037690206896854e-07 - syst_JES_EtaIntercalibration_Stat184: 1.966753665922674e-10 + syst_JES_EtaIntercalibration_Stat178: 4.04763931e-12 + syst_JES_EtaIntercalibration_Stat179: 1.84682506e-07 + syst_JES_EtaIntercalibration_Stat18: 5.23479914e-21 + syst_JES_EtaIntercalibration_Stat180: 8.47750274e-07 + syst_JES_EtaIntercalibration_Stat181: 1.30776991e-07 + syst_JES_EtaIntercalibration_Stat182: 4.93983995e-06 + syst_JES_EtaIntercalibration_Stat183: 4.70376902e-07 + syst_JES_EtaIntercalibration_Stat184: 1.96675367e-10 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 syst_JES_EtaIntercalibration_Stat187: 0.0 - syst_JES_EtaIntercalibration_Stat188: 1.3925688492853772e-18 + syst_JES_EtaIntercalibration_Stat188: 1.39256885e-18 syst_JES_EtaIntercalibration_Stat189: 0.0 - syst_JES_EtaIntercalibration_Stat19: 3.0439696581930645e-21 + syst_JES_EtaIntercalibration_Stat19: 3.04396966e-21 syst_JES_EtaIntercalibration_Stat190: 0.0 - syst_JES_EtaIntercalibration_Stat191: 9.895206263640995e-21 - syst_JES_EtaIntercalibration_Stat192: 9.895206263640995e-21 + syst_JES_EtaIntercalibration_Stat191: 9.89520626e-21 + syst_JES_EtaIntercalibration_Stat192: 9.89520626e-21 syst_JES_EtaIntercalibration_Stat193: 0.0 syst_JES_EtaIntercalibration_Stat194: 0.0 - syst_JES_EtaIntercalibration_Stat195: 3.739366711122464e-08 - syst_JES_EtaIntercalibration_Stat196: 8.713090365650983e-07 - syst_JES_EtaIntercalibration_Stat197: 3.948611467338867e-06 - syst_JES_EtaIntercalibration_Stat198: 2.1280886894112285e-06 - syst_JES_EtaIntercalibration_Stat199: 2.3261443343022782e-08 - syst_JES_EtaIntercalibration_Stat2: 9.446045890609467e-21 + syst_JES_EtaIntercalibration_Stat195: 3.73936671e-08 + syst_JES_EtaIntercalibration_Stat196: 8.71309037e-07 + syst_JES_EtaIntercalibration_Stat197: 3.94861147e-06 + syst_JES_EtaIntercalibration_Stat198: 2.12808869e-06 + syst_JES_EtaIntercalibration_Stat199: 2.32614433e-08 + syst_JES_EtaIntercalibration_Stat2: 9.44604589e-21 syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 syst_JES_EtaIntercalibration_Stat201: 0.0 syst_JES_EtaIntercalibration_Stat202: 0.0 - syst_JES_EtaIntercalibration_Stat203: 1.3925688492853772e-18 + syst_JES_EtaIntercalibration_Stat203: 1.39256885e-18 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 @@ -60462,9 +60462,9 @@ bins: syst_JES_EtaIntercalibration_Stat208: 0.0 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 3.331817265648236e-08 - syst_JES_EtaIntercalibration_Stat211: 1.9071329024218527e-06 - syst_JES_EtaIntercalibration_Stat212: 6.011082327667788e-09 + syst_JES_EtaIntercalibration_Stat210: 3.33181727e-08 + syst_JES_EtaIntercalibration_Stat211: 1.90713290e-06 + syst_JES_EtaIntercalibration_Stat212: 6.01108233e-09 syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 syst_JES_EtaIntercalibration_Stat215: 0.0 @@ -60476,37 +60476,37 @@ bins: syst_JES_EtaIntercalibration_Stat220: 0.0 syst_JES_EtaIntercalibration_Stat221: 0.0 syst_JES_EtaIntercalibration_Stat222: 0.0 - syst_JES_EtaIntercalibration_Stat223: 3.3453695322789084e-08 - syst_JES_EtaIntercalibration_Stat224: 5.802370205355738e-09 + syst_JES_EtaIntercalibration_Stat223: 3.34536953e-08 + syst_JES_EtaIntercalibration_Stat224: 5.80237021e-09 syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 syst_JES_EtaIntercalibration_Stat227: 0.0 syst_JES_EtaIntercalibration_Stat228: 0.0 syst_JES_EtaIntercalibration_Stat229: 0.0 - syst_JES_EtaIntercalibration_Stat23: 7.364742086454895e-21 + syst_JES_EtaIntercalibration_Stat23: 7.36474209e-21 syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 syst_JES_EtaIntercalibration_Stat232: 0.0 syst_JES_EtaIntercalibration_Stat233: 0.0 syst_JES_EtaIntercalibration_Stat234: 0.0 - syst_JES_EtaIntercalibration_Stat235: 2.0568103339880417e-07 + syst_JES_EtaIntercalibration_Stat235: 2.05681033e-07 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 syst_JES_EtaIntercalibration_Stat239: 0.0 - syst_JES_EtaIntercalibration_Stat24: 2.078885015459008e-18 + syst_JES_EtaIntercalibration_Stat24: 2.07888502e-18 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 syst_JES_EtaIntercalibration_Stat243: 0.0 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 - syst_JES_EtaIntercalibration_Stat25: 3.154019518698102e-14 - syst_JES_EtaIntercalibration_Stat26: 1.862411541523516e-20 + syst_JES_EtaIntercalibration_Stat25: 3.15401952e-14 + syst_JES_EtaIntercalibration_Stat26: 1.86241154e-20 syst_JES_EtaIntercalibration_Stat27: 0.0 syst_JES_EtaIntercalibration_Stat28: 0.0 syst_JES_EtaIntercalibration_Stat29: 0.0 - syst_JES_EtaIntercalibration_Stat3: 1.6181902754311683e-20 + syst_JES_EtaIntercalibration_Stat3: 1.61819028e-20 syst_JES_EtaIntercalibration_Stat30: 0.0 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 @@ -60515,19 +60515,19 @@ bins: syst_JES_EtaIntercalibration_Stat35: 0.0 syst_JES_EtaIntercalibration_Stat36: 0.0 syst_JES_EtaIntercalibration_Stat37: 0.0 - syst_JES_EtaIntercalibration_Stat38: 4.666144875590555e-23 - syst_JES_EtaIntercalibration_Stat39: 7.772677193219848e-21 + syst_JES_EtaIntercalibration_Stat38: 4.66614488e-23 + syst_JES_EtaIntercalibration_Stat39: 7.77267719e-21 syst_JES_EtaIntercalibration_Stat4: 0.0 - syst_JES_EtaIntercalibration_Stat40: 1.5349013909694655e-18 - syst_JES_EtaIntercalibration_Stat41: 3.1865462102407993e-19 - syst_JES_EtaIntercalibration_Stat42: 5.798040078336816e-22 + syst_JES_EtaIntercalibration_Stat40: 1.53490139e-18 + syst_JES_EtaIntercalibration_Stat41: 3.18654621e-19 + syst_JES_EtaIntercalibration_Stat42: 5.79804008e-22 syst_JES_EtaIntercalibration_Stat43: 0.0 - syst_JES_EtaIntercalibration_Stat44: 2.428335232211566e-21 - syst_JES_EtaIntercalibration_Stat45: 3.80713103924727e-20 - syst_JES_EtaIntercalibration_Stat46: 9.036790762610958e-15 - syst_JES_EtaIntercalibration_Stat47: 3.140110624273451e-14 - syst_JES_EtaIntercalibration_Stat48: 9.985377940143278e-19 - syst_JES_EtaIntercalibration_Stat49: 1.2574688862950048e-21 + syst_JES_EtaIntercalibration_Stat44: 2.42833523e-21 + syst_JES_EtaIntercalibration_Stat45: 3.80713104e-20 + syst_JES_EtaIntercalibration_Stat46: 9.03679076e-15 + syst_JES_EtaIntercalibration_Stat47: 3.14011062e-14 + syst_JES_EtaIntercalibration_Stat48: 9.98537794e-19 + syst_JES_EtaIntercalibration_Stat49: 1.25746889e-21 syst_JES_EtaIntercalibration_Stat5: 0.0 syst_JES_EtaIntercalibration_Stat50: 0.0 syst_JES_EtaIntercalibration_Stat51: 0.0 @@ -60538,21 +60538,21 @@ bins: syst_JES_EtaIntercalibration_Stat56: 0.0 syst_JES_EtaIntercalibration_Stat57: 0.0 syst_JES_EtaIntercalibration_Stat58: 0.0 - syst_JES_EtaIntercalibration_Stat59: 4.666144875590555e-23 + syst_JES_EtaIntercalibration_Stat59: 4.66614488e-23 syst_JES_EtaIntercalibration_Stat6: 0.0 - syst_JES_EtaIntercalibration_Stat60: 1.3890753867231254e-22 - syst_JES_EtaIntercalibration_Stat61: 8.802266412691677e-19 - syst_JES_EtaIntercalibration_Stat62: 1.1463183196651793e-13 - syst_JES_EtaIntercalibration_Stat63: 4.8717604620917065e-18 - syst_JES_EtaIntercalibration_Stat64: 5.3835771332822936e-21 + syst_JES_EtaIntercalibration_Stat60: 1.38907539e-22 + syst_JES_EtaIntercalibration_Stat61: 8.80226641e-19 + syst_JES_EtaIntercalibration_Stat62: 1.14631832e-13 + syst_JES_EtaIntercalibration_Stat63: 4.87176046e-18 + syst_JES_EtaIntercalibration_Stat64: 5.38357713e-21 syst_JES_EtaIntercalibration_Stat65: 0.0 - syst_JES_EtaIntercalibration_Stat66: 2.428335232211566e-21 - syst_JES_EtaIntercalibration_Stat67: 2.5980889130281892e-18 - syst_JES_EtaIntercalibration_Stat68: 1.2601907276281635e-13 - syst_JES_EtaIntercalibration_Stat69: 1.3012243298980965e-13 + syst_JES_EtaIntercalibration_Stat66: 2.42833523e-21 + syst_JES_EtaIntercalibration_Stat67: 2.59808891e-18 + syst_JES_EtaIntercalibration_Stat68: 1.26019073e-13 + syst_JES_EtaIntercalibration_Stat69: 1.30122433e-13 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 3.153573150750114e-14 - syst_JES_EtaIntercalibration_Stat71: 1.4199382448103157e-20 + syst_JES_EtaIntercalibration_Stat70: 3.15357315e-14 + syst_JES_EtaIntercalibration_Stat71: 1.41993824e-20 syst_JES_EtaIntercalibration_Stat72: 0.0 syst_JES_EtaIntercalibration_Stat73: 0.0 syst_JES_EtaIntercalibration_Stat74: 0.0 @@ -60563,19 +60563,19 @@ bins: syst_JES_EtaIntercalibration_Stat79: 0.0 syst_JES_EtaIntercalibration_Stat8: 0.0 syst_JES_EtaIntercalibration_Stat80: 0.0 - syst_JES_EtaIntercalibration_Stat81: 4.666144875590555e-23 - syst_JES_EtaIntercalibration_Stat82: 1.5099324488201449e-21 - syst_JES_EtaIntercalibration_Stat83: 1.0075085458694631e-17 - syst_JES_EtaIntercalibration_Stat84: 1.4487424719390263e-13 - syst_JES_EtaIntercalibration_Stat85: 1.59678986252888e-13 - syst_JES_EtaIntercalibration_Stat86: 2.7688727286569167e-19 + syst_JES_EtaIntercalibration_Stat81: 4.66614488e-23 + syst_JES_EtaIntercalibration_Stat82: 1.50993245e-21 + syst_JES_EtaIntercalibration_Stat83: 1.00750855e-17 + syst_JES_EtaIntercalibration_Stat84: 1.44874247e-13 + syst_JES_EtaIntercalibration_Stat85: 1.59678986e-13 + syst_JES_EtaIntercalibration_Stat86: 2.76887273e-19 syst_JES_EtaIntercalibration_Stat87: 0.0 - syst_JES_EtaIntercalibration_Stat88: 6.739985459924969e-18 - syst_JES_EtaIntercalibration_Stat89: 2.2878908109435643e-12 + syst_JES_EtaIntercalibration_Stat88: 6.73998546e-18 + syst_JES_EtaIntercalibration_Stat89: 2.28789081e-12 syst_JES_EtaIntercalibration_Stat9: 0.0 - syst_JES_EtaIntercalibration_Stat90: 2.319961393229422e-13 - syst_JES_EtaIntercalibration_Stat91: 3.195083332540014e-14 - syst_JES_EtaIntercalibration_Stat92: 1.6138740709469868e-20 + syst_JES_EtaIntercalibration_Stat90: 2.31996139e-13 + syst_JES_EtaIntercalibration_Stat91: 3.19508333e-14 + syst_JES_EtaIntercalibration_Stat92: 1.61387407e-20 syst_JES_EtaIntercalibration_Stat93: 0.0 syst_JES_EtaIntercalibration_Stat94: 0.0 syst_JES_EtaIntercalibration_Stat95: 0.0 @@ -60583,88 +60583,88 @@ bins: syst_JES_EtaIntercalibration_Stat97: 0.0 syst_JES_EtaIntercalibration_Stat98: 0.0 syst_JES_EtaIntercalibration_Stat99: 0.0 - syst_JES_EtaIntercalibration_TotalStat_MJB: 5.291020317481308e-06 - syst_JES_Flavour_Comp: 1.3369415544443221e-05 - syst_JES_Flavour_Response: 4.7299490483513665e-06 - syst_JES_Gjet_Generator: 1.803163522118834e-05 - syst_JES_Gjet_OOC: 1.4369275581949146e-05 - syst_JES_Gjet_Purity: 1.5617439867020458e-06 - syst_JES_Gjet_Stat1: 5.577222680409578e-08 - syst_JES_Gjet_Stat10: 3.3339825418071705e-07 - syst_JES_Gjet_Stat11: 3.1688462651058036e-07 - syst_JES_Gjet_Stat12: 1.0670738587370603e-06 - syst_JES_Gjet_Stat13: 4.269559930484639e-06 - syst_JES_Gjet_Stat14: 7.863462532498009e-06 - syst_JES_Gjet_Stat15: 6.334654430195857e-06 - syst_JES_Gjet_Stat2: 1.0828164204056014e-08 - syst_JES_Gjet_Stat3: 2.112746358337176e-08 - syst_JES_Gjet_Stat4: 2.11189001369644e-08 - syst_JES_Gjet_Stat5: 2.1117341846020183e-08 - syst_JES_Gjet_Stat6: 1.4709721489609346e-07 - syst_JES_Gjet_Stat7: 2.1897879000202277e-07 - syst_JES_Gjet_Stat8: 1.4709278763838152e-07 - syst_JES_Gjet_Stat9: 3.329375599128912e-07 - syst_JES_Gjet_Veto: 1.4987644077706141e-05 - syst_JES_Gjet_dPhi: 7.726411974692717e-07 - syst_JES_LArESZee: 2.7159971925611413e-05 - syst_JES_LArEsmear: 1.7405771138332252e-06 - syst_JES_LAr_JVT: 2.3534092780474882e-06 - syst_JES_MJB_Alpha: 1.4655239099721301e-07 - syst_JES_MJB_Asym: 1.8040871285777744e-06 - syst_JES_MJB_Beta: 3.32106980162542e-07 - syst_JES_MJB_Fragmentation: 6.734296306964819e-07 - syst_JES_MJB_Stat1: 5.824520302136478e-10 - syst_JES_MJB_Stat10: 2.5660703752381772e-08 - syst_JES_MJB_Stat11: 1.348401553692371e-07 - syst_JES_MJB_Stat12: 1.4124874335724193e-07 - syst_JES_MJB_Stat13: 5.2152049815898896e-08 + syst_JES_EtaIntercalibration_TotalStat_MJB: 5.29102032e-06 + syst_JES_Flavour_Comp: 1.33694155e-05 + syst_JES_Flavour_Response: 4.72994905e-06 + syst_JES_Gjet_Generator: 1.80316352e-05 + syst_JES_Gjet_OOC: 1.43692756e-05 + syst_JES_Gjet_Purity: 1.56174399e-06 + syst_JES_Gjet_Stat1: 5.57722268e-08 + syst_JES_Gjet_Stat10: 3.33398254e-07 + syst_JES_Gjet_Stat11: 3.16884627e-07 + syst_JES_Gjet_Stat12: 1.06707386e-06 + syst_JES_Gjet_Stat13: 4.26955993e-06 + syst_JES_Gjet_Stat14: 7.86346253e-06 + syst_JES_Gjet_Stat15: 6.33465443e-06 + syst_JES_Gjet_Stat2: 1.08281642e-08 + syst_JES_Gjet_Stat3: 2.11274636e-08 + syst_JES_Gjet_Stat4: 2.11189001e-08 + syst_JES_Gjet_Stat5: 2.11173418e-08 + syst_JES_Gjet_Stat6: 1.47097215e-07 + syst_JES_Gjet_Stat7: 2.18978790e-07 + syst_JES_Gjet_Stat8: 1.47092788e-07 + syst_JES_Gjet_Stat9: 3.32937560e-07 + syst_JES_Gjet_Veto: 1.49876441e-05 + syst_JES_Gjet_dPhi: 7.72641197e-07 + syst_JES_LArESZee: 2.71599719e-05 + syst_JES_LArEsmear: 1.74057711e-06 + syst_JES_LAr_JVT: 2.35340928e-06 + syst_JES_MJB_Alpha: 1.46552391e-07 + syst_JES_MJB_Asym: 1.80408713e-06 + syst_JES_MJB_Beta: 3.32106980e-07 + syst_JES_MJB_Fragmentation: 6.73429631e-07 + syst_JES_MJB_Stat1: 5.82452030e-10 + syst_JES_MJB_Stat10: 2.56607038e-08 + syst_JES_MJB_Stat11: 1.34840155e-07 + syst_JES_MJB_Stat12: 1.41248743e-07 + syst_JES_MJB_Stat13: 5.21520498e-08 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 3.1535456659924875e-08 - syst_JES_MJB_Stat3: 1.467448241634096e-07 - syst_JES_MJB_Stat4: 4.9430363643925385e-08 - syst_JES_MJB_Stat5: 1.4733153149549318e-07 - syst_JES_MJB_Stat6: 1.4603063059845038e-07 - syst_JES_MJB_Stat7: 1.818061494341984e-07 - syst_JES_MJB_Stat8: 1.8214406310546466e-07 - syst_JES_MJB_Stat9: 1.8214406310546466e-07 - syst_JES_MJB_Threshold: 1.5295140756135592e-06 - syst_JES_Pileup_MuOffset: 2.956046176905902e-06 - syst_JES_Pileup_NPVOffset: 2.9455036390233846e-06 - syst_JES_Pileup_Pt_term: 4.7157781998308614e-06 - syst_JES_Pileup_Rho_topology: 4.706293764736748e-06 - syst_JES_PunchThrough_MC15: 1.97888074615425e-06 + syst_JES_MJB_Stat2: 3.15354567e-08 + syst_JES_MJB_Stat3: 1.46744824e-07 + syst_JES_MJB_Stat4: 4.94303636e-08 + syst_JES_MJB_Stat5: 1.47331531e-07 + syst_JES_MJB_Stat6: 1.46030631e-07 + syst_JES_MJB_Stat7: 1.81806149e-07 + syst_JES_MJB_Stat8: 1.82144063e-07 + syst_JES_MJB_Stat9: 1.82144063e-07 + syst_JES_MJB_Threshold: 1.52951408e-06 + syst_JES_Pileup_MuOffset: 2.95604618e-06 + syst_JES_Pileup_NPVOffset: 2.94550364e-06 + syst_JES_Pileup_Pt_term: 4.71577820e-06 + syst_JES_Pileup_Rho_topology: 4.70629376e-06 + syst_JES_PunchThrough_MC15: 1.97888075e-06 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 6.808248434803183e-06 - syst_JES_Zjet_MuScale: 5.615948750433893e-07 - syst_JES_Zjet_MuSmearID: 1.4727724808492993e-07 - syst_JES_Zjet_MuSmearMS: 8.593949974691498e-07 - syst_JES_Zjet_OOC: 4.425796284286027e-06 - syst_JES_Zjet_Stat1: 3.32863843448038e-07 - syst_JES_Zjet_Stat10: 3.3352988741752965e-07 - syst_JES_Zjet_Stat11: 3.6806994267394345e-07 - syst_JES_Zjet_Stat12: 1.58651674851796e-06 - syst_JES_Zjet_Stat13: 1.6745547729172673e-06 - syst_JES_Zjet_Stat2: 1.0768128680508976e-11 - syst_JES_Zjet_Stat3: 1.472554120789735e-07 - syst_JES_Zjet_Stat4: 1.472554178622206e-07 - syst_JES_Zjet_Stat5: 1.47085026582544e-07 - syst_JES_Zjet_Stat6: 2.1827390010366349e-07 - syst_JES_Zjet_Stat7: 1.4708800565553152e-07 - syst_JES_Zjet_Stat8: 1.4708863045413019e-07 - syst_JES_Zjet_Stat9: 3.329706455575326e-07 - syst_JES_Zjet_Veto: 9.934012604682964e-07 - syst_JES_Zjet_dPhi: 9.783568916811492e-07 + syst_JES_Zjet_MC: 6.80824843e-06 + syst_JES_Zjet_MuScale: 5.61594875e-07 + syst_JES_Zjet_MuSmearID: 1.47277248e-07 + syst_JES_Zjet_MuSmearMS: 8.59394997e-07 + syst_JES_Zjet_OOC: 4.42579628e-06 + syst_JES_Zjet_Stat1: 3.32863843e-07 + syst_JES_Zjet_Stat10: 3.33529887e-07 + syst_JES_Zjet_Stat11: 3.68069943e-07 + syst_JES_Zjet_Stat12: 1.58651675e-06 + syst_JES_Zjet_Stat13: 1.67455477e-06 + syst_JES_Zjet_Stat2: 1.07681287e-11 + syst_JES_Zjet_Stat3: 1.47255412e-07 + syst_JES_Zjet_Stat4: 1.47255418e-07 + syst_JES_Zjet_Stat5: 1.47085027e-07 + syst_JES_Zjet_Stat6: 2.18273900e-07 + syst_JES_Zjet_Stat7: 1.47088006e-07 + syst_JES_Zjet_Stat8: 1.47088630e-07 + syst_JES_Zjet_Stat9: 3.32970646e-07 + syst_JES_Zjet_Veto: 9.93401260e-07 + syst_JES_Zjet_dPhi: 9.78356892e-07 syst_PRW: 0.0 - syst_Unfolding_bias: 9.681e-06 - syst_cleaning: 1.567505980849834e-06 - syst_lumi: 5.144e-06 + syst_Unfolding_bias: 9.68100000e-06 + syst_cleaning: 1.56750598e-06 + syst_lumi: 5.14400000e-06 - stat: 7.03e-06 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 syst_JER_NP0: 0.0 - syst_JER_NP1: 3.0835250525980815e-06 + syst_JER_NP1: 3.08352505e-06 syst_JER_NP2: 0.0 syst_JER_NP3: 0.0 syst_JER_NP4: 0.0 @@ -60672,8 +60672,8 @@ bins: syst_JER_NP6: 0.0 syst_JER_NP7: 0.0 syst_JER_NP8: 0.0 - syst_JES_EtaIntercalibration_Modelling: 5.247578298605939e-06 - syst_JES_EtaIntercalibration_NonClosure: 1.0443027374760636e-06 + syst_JES_EtaIntercalibration_Modelling: 5.24757830e-06 + syst_JES_EtaIntercalibration_NonClosure: 1.04430274e-06 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 @@ -60688,7 +60688,7 @@ bins: syst_JES_EtaIntercalibration_Stat108: 0.0 syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 6.920409001641449e-10 + syst_JES_EtaIntercalibration_Stat110: 6.92040900e-10 syst_JES_EtaIntercalibration_Stat111: 0.0 syst_JES_EtaIntercalibration_Stat112: 0.0 syst_JES_EtaIntercalibration_Stat113: 0.0 @@ -60704,11 +60704,11 @@ bins: syst_JES_EtaIntercalibration_Stat122: 0.0 syst_JES_EtaIntercalibration_Stat123: 0.0 syst_JES_EtaIntercalibration_Stat124: 0.0 - syst_JES_EtaIntercalibration_Stat125: 3.886722012184561e-09 + syst_JES_EtaIntercalibration_Stat125: 3.88672201e-09 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 6.943791687543628e-10 - syst_JES_EtaIntercalibration_Stat129: 9.79821141841714e-10 + syst_JES_EtaIntercalibration_Stat128: 6.94379169e-10 + syst_JES_EtaIntercalibration_Stat129: 9.79821142e-10 syst_JES_EtaIntercalibration_Stat13: 0.0 syst_JES_EtaIntercalibration_Stat130: 0.0 syst_JES_EtaIntercalibration_Stat131: 0.0 @@ -60724,11 +60724,11 @@ bins: syst_JES_EtaIntercalibration_Stat140: 0.0 syst_JES_EtaIntercalibration_Stat141: 0.0 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 4.422791737127128e-09 - syst_JES_EtaIntercalibration_Stat144: 2.6050044145835915e-08 - syst_JES_EtaIntercalibration_Stat145: 1.5640418792346962e-09 - syst_JES_EtaIntercalibration_Stat146: 5.073176815369242e-11 - syst_JES_EtaIntercalibration_Stat147: 1.7468677267326227e-08 + syst_JES_EtaIntercalibration_Stat143: 4.42279174e-09 + syst_JES_EtaIntercalibration_Stat144: 2.60500441e-08 + syst_JES_EtaIntercalibration_Stat145: 1.56404188e-09 + syst_JES_EtaIntercalibration_Stat146: 5.07317682e-11 + syst_JES_EtaIntercalibration_Stat147: 1.74686773e-08 syst_JES_EtaIntercalibration_Stat148: 0.0 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 @@ -60744,12 +60744,12 @@ bins: syst_JES_EtaIntercalibration_Stat159: 0.0 syst_JES_EtaIntercalibration_Stat16: 0.0 syst_JES_EtaIntercalibration_Stat160: 0.0 - syst_JES_EtaIntercalibration_Stat161: 4.422791737127128e-09 - syst_JES_EtaIntercalibration_Stat162: 1.940762929880927e-08 - syst_JES_EtaIntercalibration_Stat163: 1.134579881497993e-08 - syst_JES_EtaIntercalibration_Stat164: 1.8364534625195382e-08 - syst_JES_EtaIntercalibration_Stat165: 6.656551810059018e-08 - syst_JES_EtaIntercalibration_Stat166: 8.352463646583564e-09 + syst_JES_EtaIntercalibration_Stat161: 4.42279174e-09 + syst_JES_EtaIntercalibration_Stat162: 1.94076293e-08 + syst_JES_EtaIntercalibration_Stat163: 1.13457988e-08 + syst_JES_EtaIntercalibration_Stat164: 1.83645346e-08 + syst_JES_EtaIntercalibration_Stat165: 6.65655181e-08 + syst_JES_EtaIntercalibration_Stat166: 8.35246365e-09 syst_JES_EtaIntercalibration_Stat167: 0.0 syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 @@ -60763,12 +60763,12 @@ bins: syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 syst_JES_EtaIntercalibration_Stat178: 0.0 - syst_JES_EtaIntercalibration_Stat179: 1.9381648536695737e-08 + syst_JES_EtaIntercalibration_Stat179: 1.93816485e-08 syst_JES_EtaIntercalibration_Stat18: 0.0 - syst_JES_EtaIntercalibration_Stat180: 3.479684886236108e-08 - syst_JES_EtaIntercalibration_Stat181: 1.2673542188650337e-08 - syst_JES_EtaIntercalibration_Stat182: 1.4185496113989105e-06 - syst_JES_EtaIntercalibration_Stat183: 7.18345827230868e-08 + syst_JES_EtaIntercalibration_Stat180: 3.47968489e-08 + syst_JES_EtaIntercalibration_Stat181: 1.26735422e-08 + syst_JES_EtaIntercalibration_Stat182: 1.41854961e-06 + syst_JES_EtaIntercalibration_Stat183: 7.18345827e-08 syst_JES_EtaIntercalibration_Stat184: 0.0 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 @@ -60781,11 +60781,11 @@ bins: syst_JES_EtaIntercalibration_Stat192: 0.0 syst_JES_EtaIntercalibration_Stat193: 0.0 syst_JES_EtaIntercalibration_Stat194: 0.0 - syst_JES_EtaIntercalibration_Stat195: 3.038883141879595e-09 - syst_JES_EtaIntercalibration_Stat196: 3.3123056924142733e-08 - syst_JES_EtaIntercalibration_Stat197: 2.954878677712505e-07 - syst_JES_EtaIntercalibration_Stat198: 5.641878299821789e-07 - syst_JES_EtaIntercalibration_Stat199: 8.410838721554469e-09 + syst_JES_EtaIntercalibration_Stat195: 3.03888314e-09 + syst_JES_EtaIntercalibration_Stat196: 3.31230569e-08 + syst_JES_EtaIntercalibration_Stat197: 2.95487868e-07 + syst_JES_EtaIntercalibration_Stat198: 5.64187830e-07 + syst_JES_EtaIntercalibration_Stat199: 8.41083872e-09 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 @@ -60799,8 +60799,8 @@ bins: syst_JES_EtaIntercalibration_Stat208: 0.0 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 4.422791737127128e-09 - syst_JES_EtaIntercalibration_Stat211: 1.3067976842265984e-07 + syst_JES_EtaIntercalibration_Stat210: 4.42279174e-09 + syst_JES_EtaIntercalibration_Stat211: 1.30679768e-07 syst_JES_EtaIntercalibration_Stat212: 0.0 syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 @@ -60813,7 +60813,7 @@ bins: syst_JES_EtaIntercalibration_Stat220: 0.0 syst_JES_EtaIntercalibration_Stat221: 0.0 syst_JES_EtaIntercalibration_Stat222: 0.0 - syst_JES_EtaIntercalibration_Stat223: 4.418461610108206e-09 + syst_JES_EtaIntercalibration_Stat223: 4.41846161e-09 syst_JES_EtaIntercalibration_Stat224: 0.0 syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 @@ -60826,7 +60826,7 @@ bins: syst_JES_EtaIntercalibration_Stat232: 0.0 syst_JES_EtaIntercalibration_Stat233: 0.0 syst_JES_EtaIntercalibration_Stat234: 0.0 - syst_JES_EtaIntercalibration_Stat235: 1.675759156322889e-08 + syst_JES_EtaIntercalibration_Stat235: 1.67575916e-08 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 @@ -60920,80 +60920,80 @@ bins: syst_JES_EtaIntercalibration_Stat97: 0.0 syst_JES_EtaIntercalibration_Stat98: 0.0 syst_JES_EtaIntercalibration_Stat99: 0.0 - syst_JES_EtaIntercalibration_TotalStat_MJB: 1.542233019844926e-06 - syst_JES_Flavour_Comp: 3.0834839062333373e-06 - syst_JES_Flavour_Response: 1.4237049088557642e-06 - syst_JES_Gjet_Generator: 3.6305840783543356e-06 - syst_JES_Gjet_OOC: 3.0308869988833306e-06 - syst_JES_Gjet_Purity: 8.654191860017895e-08 - syst_JES_Gjet_Stat1: 3.1055670979709966e-09 - syst_JES_Gjet_Stat10: 2.7739793499727068e-08 - syst_JES_Gjet_Stat11: 2.7851376985707547e-08 - syst_JES_Gjet_Stat12: 1.0299640127208328e-07 - syst_JES_Gjet_Stat13: 4.7455508373633505e-07 - syst_JES_Gjet_Stat14: 2.0356086927501563e-06 - syst_JES_Gjet_Stat15: 2.1240153012631526e-06 - syst_JES_Gjet_Stat2: 3.385639713554884e-09 - syst_JES_Gjet_Stat3: 3.385639713554884e-09 - syst_JES_Gjet_Stat4: 3.385639713554884e-09 - syst_JES_Gjet_Stat5: 3.385639713554884e-09 - syst_JES_Gjet_Stat6: 1.2851816992161069e-08 - syst_JES_Gjet_Stat7: 1.8766770500008788e-08 - syst_JES_Gjet_Stat8: 1.2851816992161069e-08 - syst_JES_Gjet_Stat9: 2.7825396223594013e-08 - syst_JES_Gjet_Veto: 3.4131768237230253e-06 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.54223302e-06 + syst_JES_Flavour_Comp: 3.08348391e-06 + syst_JES_Flavour_Response: 1.42370491e-06 + syst_JES_Gjet_Generator: 3.63058408e-06 + syst_JES_Gjet_OOC: 3.03088700e-06 + syst_JES_Gjet_Purity: 8.65419186e-08 + syst_JES_Gjet_Stat1: 3.10556710e-09 + syst_JES_Gjet_Stat10: 2.77397935e-08 + syst_JES_Gjet_Stat11: 2.78513770e-08 + syst_JES_Gjet_Stat12: 1.02996401e-07 + syst_JES_Gjet_Stat13: 4.74555084e-07 + syst_JES_Gjet_Stat14: 2.03560869e-06 + syst_JES_Gjet_Stat15: 2.12401530e-06 + syst_JES_Gjet_Stat2: 3.38563971e-09 + syst_JES_Gjet_Stat3: 3.38563971e-09 + syst_JES_Gjet_Stat4: 3.38563971e-09 + syst_JES_Gjet_Stat5: 3.38563971e-09 + syst_JES_Gjet_Stat6: 1.28518170e-08 + syst_JES_Gjet_Stat7: 1.87667705e-08 + syst_JES_Gjet_Stat8: 1.28518170e-08 + syst_JES_Gjet_Stat9: 2.78253962e-08 + syst_JES_Gjet_Veto: 3.41317682e-06 syst_JES_Gjet_dPhi: 0.0 - syst_JES_LArESZee: 4.452914663453591e-06 - syst_JES_LArEsmear: 1.8143232209283988e-07 - syst_JES_LAr_JVT: 5.245537361176641e-07 - syst_JES_MJB_Alpha: 1.547587396562792e-08 - syst_JES_MJB_Asym: 5.58364517206278e-07 - syst_JES_MJB_Beta: 2.7825396223594013e-08 - syst_JES_MJB_Fragmentation: 7.679047255356617e-08 - syst_JES_MJB_Stat1: 6.670993685351531e-11 - syst_JES_MJB_Stat10: 2.1867141445557077e-08 - syst_JES_MJB_Stat11: 1.2288900479701184e-08 - syst_JES_MJB_Stat12: 1.140209046622592e-08 - syst_JES_MJB_Stat13: 1.0011253667748111e-08 + syst_JES_LArESZee: 4.45291466e-06 + syst_JES_LArEsmear: 1.81432322e-07 + syst_JES_LAr_JVT: 5.24553736e-07 + syst_JES_MJB_Alpha: 1.54758740e-08 + syst_JES_MJB_Asym: 5.58364517e-07 + syst_JES_MJB_Beta: 2.78253962e-08 + syst_JES_MJB_Fragmentation: 7.67904726e-08 + syst_JES_MJB_Stat1: 6.67099369e-11 + syst_JES_MJB_Stat10: 2.18671414e-08 + syst_JES_MJB_Stat11: 1.22889005e-08 + syst_JES_MJB_Stat12: 1.14020905e-08 + syst_JES_MJB_Stat13: 1.00112537e-08 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 3.9239611045472915e-09 - syst_JES_MJB_Stat3: 1.547587396562792e-08 - syst_JES_MJB_Stat4: 5.308735725198609e-09 - syst_JES_MJB_Stat5: 1.2851816992161069e-08 - syst_JES_MJB_Stat6: 1.547587396562792e-08 - syst_JES_MJB_Stat7: 1.6142713526541937e-08 - syst_JES_MJB_Stat8: 1.613405327250409e-08 - syst_JES_MJB_Stat9: 1.613405327250409e-08 - syst_JES_MJB_Threshold: 1.5425803601433543e-07 - syst_JES_Pileup_MuOffset: 8.723473892320651e-07 + syst_JES_MJB_Stat2: 3.92396110e-09 + syst_JES_MJB_Stat3: 1.54758740e-08 + syst_JES_MJB_Stat4: 5.30873573e-09 + syst_JES_MJB_Stat5: 1.28518170e-08 + syst_JES_MJB_Stat6: 1.54758740e-08 + syst_JES_MJB_Stat7: 1.61427135e-08 + syst_JES_MJB_Stat8: 1.61340533e-08 + syst_JES_MJB_Stat9: 1.61340533e-08 + syst_JES_MJB_Threshold: 1.54258036e-07 + syst_JES_Pileup_MuOffset: 8.72347389e-07 syst_JES_Pileup_NPVOffset: 0.0 syst_JES_Pileup_Pt_term: 0.0 - syst_JES_Pileup_Rho_topology: 1.0749107311772452e-06 - syst_JES_PunchThrough_MC15: 8.457515060583693e-07 + syst_JES_Pileup_Rho_topology: 1.07491073e-06 + syst_JES_PunchThrough_MC15: 8.45751506e-07 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 1.4101624684765935e-06 - syst_JES_Zjet_MuScale: 5.743917690043965e-08 - syst_JES_Zjet_MuSmearID: 1.2851816992161069e-08 + syst_JES_Zjet_MC: 1.41016247e-06 + syst_JES_Zjet_MuScale: 5.74391769e-08 + syst_JES_Zjet_MuSmearID: 1.28518170e-08 syst_JES_Zjet_MuSmearMS: 0.0 - syst_JES_Zjet_OOC: 1.1116302082977056e-06 - syst_JES_Zjet_Stat1: 2.783405647763186e-08 - syst_JES_Zjet_Stat10: 2.773982157026249e-08 - syst_JES_Zjet_Stat11: 4.0102706257651737e-08 - syst_JES_Zjet_Stat12: 1.621199555884469e-07 - syst_JES_Zjet_Stat13: 1.6195532563024904e-07 + syst_JES_Zjet_OOC: 1.11163021e-06 + syst_JES_Zjet_Stat1: 2.78340565e-08 + syst_JES_Zjet_Stat10: 2.77398216e-08 + syst_JES_Zjet_Stat11: 4.01027063e-08 + syst_JES_Zjet_Stat12: 1.62119956e-07 + syst_JES_Zjet_Stat13: 1.61955326e-07 syst_JES_Zjet_Stat2: 0.0 - syst_JES_Zjet_Stat3: 1.2851816992161069e-08 - syst_JES_Zjet_Stat4: 1.2851816992161069e-08 - syst_JES_Zjet_Stat5: 1.2851816992161069e-08 - syst_JES_Zjet_Stat6: 1.8766770500008788e-08 - syst_JES_Zjet_Stat7: 1.2851816992161069e-08 - syst_JES_Zjet_Stat8: 1.2851816992161069e-08 - syst_JES_Zjet_Stat9: 2.7825396223594013e-08 - syst_JES_Zjet_Veto: 1.5325876220301402e-07 - syst_JES_Zjet_dPhi: 1.541350949654231e-07 + syst_JES_Zjet_Stat3: 1.28518170e-08 + syst_JES_Zjet_Stat4: 1.28518170e-08 + syst_JES_Zjet_Stat5: 1.28518170e-08 + syst_JES_Zjet_Stat6: 1.87667705e-08 + syst_JES_Zjet_Stat7: 1.28518170e-08 + syst_JES_Zjet_Stat8: 1.28518170e-08 + syst_JES_Zjet_Stat9: 2.78253962e-08 + syst_JES_Zjet_Veto: 1.53258762e-07 + syst_JES_Zjet_dPhi: 1.54135095e-07 syst_PRW: 0.0 - syst_Unfolding_bias: 1.3573e-06 - syst_cleaning: 1.7346488837802304e-07 - syst_lumi: 5.557e-07 + syst_Unfolding_bias: 1.35730000e-06 + syst_cleaning: 1.73464888e-07 + syst_lumi: 5.55700000e-07 diff --git a/nnpdf_data/nnpdf_data/commondata/ATLAS_1JET_13TEV_DIF/uncertainties_altcorr1.yaml b/nnpdf_data/nnpdf_data/commondata/ATLAS_1JET_13TEV_DIF/uncertainties_altcorr1.yaml index 65ed26e07d..98edfae40a 100644 --- a/nnpdf_data/nnpdf_data/commondata/ATLAS_1JET_13TEV_DIF/uncertainties_altcorr1.yaml +++ b/nnpdf_data/nnpdf_data/commondata/ATLAS_1JET_13TEV_DIF/uncertainties_altcorr1.yaml @@ -1371,83 +1371,83 @@ bins: - stat: 79.55 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 175.58794121465172 - syst_JER_NP1: 22.653160375541425 - syst_JER_NP2: 63.867587718654285 - syst_JER_NP3: 10.329663870983412 - syst_JER_NP4: 63.346949934468036 - syst_JER_NP5: 9.43170025326823 - syst_JER_NP6: 12.435819987037446 - syst_JER_NP7: 15.150873266911054 - syst_JER_NP8: 21.155653499714916 - syst_JES_EtaIntercalibration_Modelling: 8.134471018449816e-06 + syst_JER_NP0: 1.75587941e+02 + syst_JER_NP1: 2.26531604e+01 + syst_JER_NP2: 6.38675877e+01 + syst_JER_NP3: 1.03296639e+01 + syst_JER_NP4: 6.33469499e+01 + syst_JER_NP5: 9.43170025e+00 + syst_JER_NP6: 1.24358200e+01 + syst_JER_NP7: 1.51508733e+01 + syst_JER_NP8: 2.11556535e+01 + syst_JES_EtaIntercalibration_Modelling: 8.13447102e-06 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 - syst_JES_EtaIntercalibration_Stat10: 0.018499825090186665 - syst_JES_EtaIntercalibration_Stat100: 0.3128092389939913 + syst_JES_EtaIntercalibration_Stat10: 1.84998251e-02 + syst_JES_EtaIntercalibration_Stat100: 3.12809239e-01 syst_JES_EtaIntercalibration_Stat101: 0.0 syst_JES_EtaIntercalibration_Stat102: 0.0 - syst_JES_EtaIntercalibration_Stat103: 0.016930796643985776 - syst_JES_EtaIntercalibration_Stat104: 0.016930796643985776 - syst_JES_EtaIntercalibration_Stat105: 0.016930796643985776 + syst_JES_EtaIntercalibration_Stat103: 1.69307966e-02 + syst_JES_EtaIntercalibration_Stat104: 1.69307966e-02 + syst_JES_EtaIntercalibration_Stat105: 1.69307966e-02 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 0.004650556418322435 - syst_JES_EtaIntercalibration_Stat11: 0.1672295054707751 - syst_JES_EtaIntercalibration_Stat110: 0.004387544529688559 - syst_JES_EtaIntercalibration_Stat111: 0.07977826019662247 - syst_JES_EtaIntercalibration_Stat112: 0.07977826019662247 + syst_JES_EtaIntercalibration_Stat109: 4.65055642e-03 + syst_JES_EtaIntercalibration_Stat11: 1.67229505e-01 + syst_JES_EtaIntercalibration_Stat110: 4.38754453e-03 + syst_JES_EtaIntercalibration_Stat111: 7.97782602e-02 + syst_JES_EtaIntercalibration_Stat112: 7.97782602e-02 syst_JES_EtaIntercalibration_Stat113: 0.0 - syst_JES_EtaIntercalibration_Stat114: 0.016722950547077512 - syst_JES_EtaIntercalibration_Stat115: 0.45831642112736914 - syst_JES_EtaIntercalibration_Stat116: 6.177851629005022 - syst_JES_EtaIntercalibration_Stat117: 9.728865234445381 - syst_JES_EtaIntercalibration_Stat118: 6.051872767995044 - syst_JES_EtaIntercalibration_Stat119: 4.2350088547723255 - syst_JES_EtaIntercalibration_Stat12: 0.1864565651834228 - syst_JES_EtaIntercalibration_Stat120: 0.028466626543199668 - syst_JES_EtaIntercalibration_Stat121: 0.003050141472128793 + syst_JES_EtaIntercalibration_Stat114: 1.67229505e-02 + syst_JES_EtaIntercalibration_Stat115: 4.58316421e-01 + syst_JES_EtaIntercalibration_Stat116: 6.17785163e+00 + syst_JES_EtaIntercalibration_Stat117: 9.72886523e+00 + syst_JES_EtaIntercalibration_Stat118: 6.05187277e+00 + syst_JES_EtaIntercalibration_Stat119: 4.23500885e+00 + syst_JES_EtaIntercalibration_Stat12: 1.86456565e-01 + syst_JES_EtaIntercalibration_Stat120: 2.84666265e-02 + syst_JES_EtaIntercalibration_Stat121: 3.05014147e-03 syst_JES_EtaIntercalibration_Stat122: 0.0 - syst_JES_EtaIntercalibration_Stat123: 0.016930796643985776 - syst_JES_EtaIntercalibration_Stat124: 0.016930796643985776 - syst_JES_EtaIntercalibration_Stat125: 0.016930796643985776 + syst_JES_EtaIntercalibration_Stat123: 1.69307966e-02 + syst_JES_EtaIntercalibration_Stat124: 1.69307966e-02 + syst_JES_EtaIntercalibration_Stat125: 1.69307966e-02 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 0.004650556418322435 - syst_JES_EtaIntercalibration_Stat129: 0.004387544529688559 + syst_JES_EtaIntercalibration_Stat128: 4.65055642e-03 + syst_JES_EtaIntercalibration_Stat129: 4.38754453e-03 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 0.0013891047476702395 + syst_JES_EtaIntercalibration_Stat130: 1.38910475e-03 syst_JES_EtaIntercalibration_Stat131: 0.0 syst_JES_EtaIntercalibration_Stat132: 0.0 - syst_JES_EtaIntercalibration_Stat133: 0.016722950547077512 - syst_JES_EtaIntercalibration_Stat134: 0.22421141808569875 - syst_JES_EtaIntercalibration_Stat135: 8.466564873075738 - syst_JES_EtaIntercalibration_Stat136: 15.443661321072797 - syst_JES_EtaIntercalibration_Stat137: 13.495609832460332 - syst_JES_EtaIntercalibration_Stat138: 9.006362459395024 - syst_JES_EtaIntercalibration_Stat139: 0.05332948152757534 + syst_JES_EtaIntercalibration_Stat133: 1.67229505e-02 + syst_JES_EtaIntercalibration_Stat134: 2.24211418e-01 + syst_JES_EtaIntercalibration_Stat135: 8.46656487e+00 + syst_JES_EtaIntercalibration_Stat136: 1.54436613e+01 + syst_JES_EtaIntercalibration_Stat137: 1.34956098e+01 + syst_JES_EtaIntercalibration_Stat138: 9.00636246e+00 + syst_JES_EtaIntercalibration_Stat139: 5.33294815e-02 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 0.003050141472128793 + syst_JES_EtaIntercalibration_Stat140: 3.05014147e-03 syst_JES_EtaIntercalibration_Stat141: 0.0 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 0.016930796643985776 - syst_JES_EtaIntercalibration_Stat144: 0.016930796643985776 + syst_JES_EtaIntercalibration_Stat143: 1.69307966e-02 + syst_JES_EtaIntercalibration_Stat144: 1.69307966e-02 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 0.0013891047476702395 - syst_JES_EtaIntercalibration_Stat148: 0.0013891047476702395 + syst_JES_EtaIntercalibration_Stat147: 1.38910475e-03 + syst_JES_EtaIntercalibration_Stat148: 1.38910475e-03 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 syst_JES_EtaIntercalibration_Stat150: 0.0 syst_JES_EtaIntercalibration_Stat151: 0.0 - syst_JES_EtaIntercalibration_Stat152: 0.06306202720338128 - syst_JES_EtaIntercalibration_Stat153: 0.31004581516285623 - syst_JES_EtaIntercalibration_Stat154: 0.9788550863125758 - syst_JES_EtaIntercalibration_Stat155: 0.8070242003806329 - syst_JES_EtaIntercalibration_Stat156: 0.642692920452684 - syst_JES_EtaIntercalibration_Stat157: 0.04810768623619307 + syst_JES_EtaIntercalibration_Stat152: 6.30620272e-02 + syst_JES_EtaIntercalibration_Stat153: 3.10045815e-01 + syst_JES_EtaIntercalibration_Stat154: 9.78855086e-01 + syst_JES_EtaIntercalibration_Stat155: 8.07024200e-01 + syst_JES_EtaIntercalibration_Stat156: 6.42692920e-01 + syst_JES_EtaIntercalibration_Stat157: 4.81076862e-02 syst_JES_EtaIntercalibration_Stat158: 0.0 syst_JES_EtaIntercalibration_Stat159: 0.0 syst_JES_EtaIntercalibration_Stat16: 0.0 @@ -1456,18 +1456,18 @@ bins: syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 0.0013891047476702395 + syst_JES_EtaIntercalibration_Stat165: 1.38910475e-03 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 9.431186709529187e-07 - syst_JES_EtaIntercalibration_Stat171: 0.03686842958413065 - syst_JES_EtaIntercalibration_Stat172: 0.04371356540022788 - syst_JES_EtaIntercalibration_Stat173: 0.007158450531190392 - syst_JES_EtaIntercalibration_Stat174: 0.010669248196569428 - syst_JES_EtaIntercalibration_Stat175: 0.0032419891120160703 + syst_JES_EtaIntercalibration_Stat170: 9.43118671e-07 + syst_JES_EtaIntercalibration_Stat171: 3.68684296e-02 + syst_JES_EtaIntercalibration_Stat172: 4.37135654e-02 + syst_JES_EtaIntercalibration_Stat173: 7.15845053e-03 + syst_JES_EtaIntercalibration_Stat174: 1.06692482e-02 + syst_JES_EtaIntercalibration_Stat175: 3.24198911e-03 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 syst_JES_EtaIntercalibration_Stat178: 0.0 @@ -1480,13 +1480,13 @@ bins: syst_JES_EtaIntercalibration_Stat184: 0.0 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 - syst_JES_EtaIntercalibration_Stat187: 6.283014304456103e-08 - syst_JES_EtaIntercalibration_Stat188: 0.001160643228903697 - syst_JES_EtaIntercalibration_Stat189: 0.0018311463622550765 + syst_JES_EtaIntercalibration_Stat187: 6.28301430e-08 + syst_JES_EtaIntercalibration_Stat188: 1.16064323e-03 + syst_JES_EtaIntercalibration_Stat189: 1.83114636e-03 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 0.0015520138272579918 - syst_JES_EtaIntercalibration_Stat191: 0.0012160787998727713 - syst_JES_EtaIntercalibration_Stat192: 8.667968306416836e-11 + syst_JES_EtaIntercalibration_Stat190: 1.55201383e-03 + syst_JES_EtaIntercalibration_Stat191: 1.21607880e-03 + syst_JES_EtaIntercalibration_Stat192: 8.66796831e-11 syst_JES_EtaIntercalibration_Stat193: 0.0 syst_JES_EtaIntercalibration_Stat194: 0.0 syst_JES_EtaIntercalibration_Stat195: 0.0 @@ -1498,12 +1498,12 @@ bins: syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 syst_JES_EtaIntercalibration_Stat201: 0.0 - syst_JES_EtaIntercalibration_Stat202: 5.739148122310898e-16 - syst_JES_EtaIntercalibration_Stat203: 6.898365096165902e-08 - syst_JES_EtaIntercalibration_Stat204: 9.839343630277123e-06 - syst_JES_EtaIntercalibration_Stat205: 8.507998986248177e-08 - syst_JES_EtaIntercalibration_Stat206: 6.862636719949556e-08 - syst_JES_EtaIntercalibration_Stat207: 2.9995720944828114e-29 + syst_JES_EtaIntercalibration_Stat202: 5.73914812e-16 + syst_JES_EtaIntercalibration_Stat203: 6.89836510e-08 + syst_JES_EtaIntercalibration_Stat204: 9.83934363e-06 + syst_JES_EtaIntercalibration_Stat205: 8.50799899e-08 + syst_JES_EtaIntercalibration_Stat206: 6.86263672e-08 + syst_JES_EtaIntercalibration_Stat207: 2.99957209e-29 syst_JES_EtaIntercalibration_Stat208: 0.0 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 @@ -1513,10 +1513,10 @@ bins: syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 syst_JES_EtaIntercalibration_Stat215: 0.0 - syst_JES_EtaIntercalibration_Stat216: 9.39377957528881e-23 - syst_JES_EtaIntercalibration_Stat217: 8.108592369887443e-17 - syst_JES_EtaIntercalibration_Stat218: 1.3648098768693022e-22 - syst_JES_EtaIntercalibration_Stat219: 8.968559081591647e-23 + syst_JES_EtaIntercalibration_Stat216: 9.39377958e-23 + syst_JES_EtaIntercalibration_Stat217: 8.10859237e-17 + syst_JES_EtaIntercalibration_Stat218: 1.36480988e-22 + syst_JES_EtaIntercalibration_Stat219: 8.96855908e-23 syst_JES_EtaIntercalibration_Stat22: 0.0 syst_JES_EtaIntercalibration_Stat220: 0.0 syst_JES_EtaIntercalibration_Stat221: 0.0 @@ -1529,8 +1529,8 @@ bins: syst_JES_EtaIntercalibration_Stat228: 0.0 syst_JES_EtaIntercalibration_Stat229: 0.0 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 5.192688321091494e-40 - syst_JES_EtaIntercalibration_Stat231: 5.747198795935286e-40 + syst_JES_EtaIntercalibration_Stat230: 5.19268832e-40 + syst_JES_EtaIntercalibration_Stat231: 5.74719880e-40 syst_JES_EtaIntercalibration_Stat232: 0.0 syst_JES_EtaIntercalibration_Stat233: 0.0 syst_JES_EtaIntercalibration_Stat234: 0.0 @@ -1552,12 +1552,12 @@ bins: syst_JES_EtaIntercalibration_Stat28: 0.0 syst_JES_EtaIntercalibration_Stat29: 0.0 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 0.045102155990595395 - syst_JES_EtaIntercalibration_Stat31: 1.3673632829281326 - syst_JES_EtaIntercalibration_Stat32: 1.4026858807302511 - syst_JES_EtaIntercalibration_Stat33: 1.0758654237403487 - syst_JES_EtaIntercalibration_Stat34: 0.5712259301663463 - syst_JES_EtaIntercalibration_Stat35: 0.021953056894200407 + syst_JES_EtaIntercalibration_Stat30: 4.51021560e-02 + syst_JES_EtaIntercalibration_Stat31: 1.36736328e+00 + syst_JES_EtaIntercalibration_Stat32: 1.40268588e+00 + syst_JES_EtaIntercalibration_Stat33: 1.07586542e+00 + syst_JES_EtaIntercalibration_Stat34: 5.71225930e-01 + syst_JES_EtaIntercalibration_Stat35: 2.19530569e-02 syst_JES_EtaIntercalibration_Stat36: 0.0 syst_JES_EtaIntercalibration_Stat37: 0.0 syst_JES_EtaIntercalibration_Stat38: 0.0 @@ -1576,87 +1576,87 @@ bins: syst_JES_EtaIntercalibration_Stat5: 0.0 syst_JES_EtaIntercalibration_Stat50: 0.0 syst_JES_EtaIntercalibration_Stat51: 0.0 - syst_JES_EtaIntercalibration_Stat52: 0.23989762415455473 - syst_JES_EtaIntercalibration_Stat53: 3.1109041735281724 - syst_JES_EtaIntercalibration_Stat54: 4.354433047768676 - syst_JES_EtaIntercalibration_Stat55: 3.747949139195995 - syst_JES_EtaIntercalibration_Stat56: 1.297306054803271 - syst_JES_EtaIntercalibration_Stat57: 0.14462893037010263 + syst_JES_EtaIntercalibration_Stat52: 2.39897624e-01 + syst_JES_EtaIntercalibration_Stat53: 3.11090417e+00 + syst_JES_EtaIntercalibration_Stat54: 4.35443305e+00 + syst_JES_EtaIntercalibration_Stat55: 3.74794914e+00 + syst_JES_EtaIntercalibration_Stat56: 1.29730605e+00 + syst_JES_EtaIntercalibration_Stat57: 1.44628930e-01 syst_JES_EtaIntercalibration_Stat58: 0.0 syst_JES_EtaIntercalibration_Stat59: 0.0 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 0.016930796643985776 - syst_JES_EtaIntercalibration_Stat62: 0.016930796643985776 + syst_JES_EtaIntercalibration_Stat61: 1.69307966e-02 + syst_JES_EtaIntercalibration_Stat62: 1.69307966e-02 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 0.004650556418322435 - syst_JES_EtaIntercalibration_Stat69: 0.004650556418322435 + syst_JES_EtaIntercalibration_Stat68: 4.65055642e-03 + syst_JES_EtaIntercalibration_Stat69: 4.65055642e-03 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 0.07977826019662247 - syst_JES_EtaIntercalibration_Stat71: 0.07977826019662247 + syst_JES_EtaIntercalibration_Stat70: 7.97782602e-02 + syst_JES_EtaIntercalibration_Stat71: 7.97782602e-02 syst_JES_EtaIntercalibration_Stat72: 0.0 syst_JES_EtaIntercalibration_Stat73: 0.0 - syst_JES_EtaIntercalibration_Stat74: 0.2939970239220118 - syst_JES_EtaIntercalibration_Stat75: 15.944422872904491 - syst_JES_EtaIntercalibration_Stat76: 21.097530661193506 - syst_JES_EtaIntercalibration_Stat77: 30.845020262596684 - syst_JES_EtaIntercalibration_Stat78: 17.214026257677197 - syst_JES_EtaIntercalibration_Stat79: 0.28771060751213184 + syst_JES_EtaIntercalibration_Stat74: 2.93997024e-01 + syst_JES_EtaIntercalibration_Stat75: 1.59444229e+01 + syst_JES_EtaIntercalibration_Stat76: 2.10975307e+01 + syst_JES_EtaIntercalibration_Stat77: 3.08450203e+01 + syst_JES_EtaIntercalibration_Stat78: 1.72140263e+01 + syst_JES_EtaIntercalibration_Stat79: 2.87710608e-01 syst_JES_EtaIntercalibration_Stat8: 0.0 syst_JES_EtaIntercalibration_Stat80: 0.0 syst_JES_EtaIntercalibration_Stat81: 0.0 - syst_JES_EtaIntercalibration_Stat82: 0.016930796643985776 - syst_JES_EtaIntercalibration_Stat83: 0.016930796643985776 - syst_JES_EtaIntercalibration_Stat84: 0.016930796643985776 + syst_JES_EtaIntercalibration_Stat82: 1.69307966e-02 + syst_JES_EtaIntercalibration_Stat83: 1.69307966e-02 + syst_JES_EtaIntercalibration_Stat84: 1.69307966e-02 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 0.004650556418322435 - syst_JES_EtaIntercalibration_Stat9: 0.033041867380643006 - syst_JES_EtaIntercalibration_Stat90: 0.004650556418322435 - syst_JES_EtaIntercalibration_Stat91: 0.07977826019662247 - syst_JES_EtaIntercalibration_Stat92: 0.07977826019662247 + syst_JES_EtaIntercalibration_Stat89: 4.65055642e-03 + syst_JES_EtaIntercalibration_Stat9: 3.30418674e-02 + syst_JES_EtaIntercalibration_Stat90: 4.65055642e-03 + syst_JES_EtaIntercalibration_Stat91: 7.97782602e-02 + syst_JES_EtaIntercalibration_Stat92: 7.97782602e-02 syst_JES_EtaIntercalibration_Stat93: 0.0 syst_JES_EtaIntercalibration_Stat94: 0.0 - syst_JES_EtaIntercalibration_Stat95: 0.5062122974355721 - syst_JES_EtaIntercalibration_Stat96: 19.522072123624582 - syst_JES_EtaIntercalibration_Stat97: 25.333548409174742 - syst_JES_EtaIntercalibration_Stat98: 25.933204102077323 - syst_JES_EtaIntercalibration_Stat99: 16.621723737326402 - syst_JES_EtaIntercalibration_TotalStat_MJB: 4.490532373783759e-14 - syst_JES_Flavour_Comp: 17.066753499128065 - syst_JES_Gjet_Generator: 242.97955387233716 - syst_JES_Gjet_OOC: 161.02088653339356 - syst_JES_Gjet_Purity: 65.58311728638706 + syst_JES_EtaIntercalibration_Stat95: 5.06212297e-01 + syst_JES_EtaIntercalibration_Stat96: 1.95220721e+01 + syst_JES_EtaIntercalibration_Stat97: 2.53335484e+01 + syst_JES_EtaIntercalibration_Stat98: 2.59332041e+01 + syst_JES_EtaIntercalibration_Stat99: 1.66217237e+01 + syst_JES_EtaIntercalibration_TotalStat_MJB: 4.49053237e-14 + syst_JES_Flavour_Comp: 1.70667535e+01 + syst_JES_Gjet_Generator: 2.42979554e+02 + syst_JES_Gjet_OOC: 1.61020887e+02 + syst_JES_Gjet_Purity: 6.55831173e+01 syst_JES_Gjet_Stat1: 0.0 - syst_JES_Gjet_Stat10: 1.6545804626853298 - syst_JES_Gjet_Stat11: 0.3792516456127778 - syst_JES_Gjet_Stat12: 0.07357980208589854 - syst_JES_Gjet_Stat13: 0.0007099231930286544 - syst_JES_Gjet_Stat14: 7.69463561513915e-21 - syst_JES_Gjet_Stat15: 1.5440028335466228e-21 - syst_JES_Gjet_Stat2: 1.9598154887641845 - syst_JES_Gjet_Stat3: 3.149253562354102 - syst_JES_Gjet_Stat4: 4.939861320927947 - syst_JES_Gjet_Stat5: 6.769791798866492 - syst_JES_Gjet_Stat6: 17.61731250787134 - syst_JES_Gjet_Stat7: 25.888133864765148 - syst_JES_Gjet_Stat8: 4.605931284767501 - syst_JES_Gjet_Stat9: 0.8880273869650642 - syst_JES_Gjet_Veto: 42.13157993714453 - syst_JES_Gjet_dPhi: 28.972025731729563 - syst_JES_LArESZee: 148.6117259841901 - syst_JES_LArEsmear: 12.34216985582357 - syst_JES_LAr_JVT: 26.470826866571436 - syst_JES_MJB_Alpha: 0.00046427621896883754 - syst_JES_MJB_Asym: 0.0009934428670034328 + syst_JES_Gjet_Stat10: 1.65458046e+00 + syst_JES_Gjet_Stat11: 3.79251646e-01 + syst_JES_Gjet_Stat12: 7.35798021e-02 + syst_JES_Gjet_Stat13: 7.09923193e-04 + syst_JES_Gjet_Stat14: 7.69463562e-21 + syst_JES_Gjet_Stat15: 1.54400283e-21 + syst_JES_Gjet_Stat2: 1.95981549e+00 + syst_JES_Gjet_Stat3: 3.14925356e+00 + syst_JES_Gjet_Stat4: 4.93986132e+00 + syst_JES_Gjet_Stat5: 6.76979180e+00 + syst_JES_Gjet_Stat6: 1.76173125e+01 + syst_JES_Gjet_Stat7: 2.58881339e+01 + syst_JES_Gjet_Stat8: 4.60593128e+00 + syst_JES_Gjet_Stat9: 8.88027387e-01 + syst_JES_Gjet_Veto: 4.21315799e+01 + syst_JES_Gjet_dPhi: 2.89720257e+01 + syst_JES_LArESZee: 1.48611726e+02 + syst_JES_LArEsmear: 1.23421699e+01 + syst_JES_LAr_JVT: 2.64708269e+01 + syst_JES_MJB_Alpha: 4.64276219e-04 + syst_JES_MJB_Asym: 9.93442867e-04 syst_JES_MJB_Beta: 0.0 - syst_JES_MJB_Stat1: 3.538145418153415e-06 + syst_JES_MJB_Stat1: 3.53814542e-06 syst_JES_MJB_Stat10: 0.0 syst_JES_MJB_Stat11: 0.0 syst_JES_MJB_Stat12: 0.0 @@ -1664,132 +1664,132 @@ bins: syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 1.454922678357857e-06 - syst_JES_MJB_Stat3: 1.4126411333129267e-11 - syst_JES_MJB_Stat4: 9.830254358357162e-17 - syst_JES_MJB_Stat5: 1.8333757798116567e-38 - syst_JES_MJB_Stat6: 8.077418941097459e-40 + syst_JES_MJB_Stat2: 1.45492268e-06 + syst_JES_MJB_Stat3: 1.41264113e-11 + syst_JES_MJB_Stat4: 9.83025436e-17 + syst_JES_MJB_Stat5: 1.83337578e-38 + syst_JES_MJB_Stat6: 8.07741894e-40 syst_JES_MJB_Stat7: 0.0 syst_JES_MJB_Stat8: 0.0 syst_JES_MJB_Stat9: 0.0 - syst_JES_MJB_Threshold: 0.0010129240087489288 - syst_JES_Pileup_MuOffset: 4.612001382263452e-37 - syst_JES_Pileup_NPVOffset: 19.854551115550308 - syst_JES_Pileup_Pt_term: 32.382597178114054 + syst_JES_MJB_Threshold: 1.01292401e-03 + syst_JES_Pileup_MuOffset: 4.61200138e-37 + syst_JES_Pileup_NPVOffset: 1.98545511e+01 + syst_JES_Pileup_Pt_term: 3.23825972e+01 syst_JES_PunchThrough_MC15: 0.0 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 234.5975768736753 - syst_JES_Zjet_MuScale: 15.523891804248057 - syst_JES_Zjet_MuSmearID: 2.2743702945995294 - syst_JES_Zjet_MuSmearMS: 3.2928586365041546 - syst_JES_Zjet_OOC: 169.17535067201723 - syst_JES_Zjet_Stat1: 4.3884958334263 - syst_JES_Zjet_Stat10: 6.916988705354376 - syst_JES_Zjet_Stat11: 5.74931619847091 - syst_JES_Zjet_Stat12: 0.7785886895530912 - syst_JES_Zjet_Stat13: 0.08360283891710855 + syst_JES_Zjet_MC: 2.34597577e+02 + syst_JES_Zjet_MuScale: 1.55238918e+01 + syst_JES_Zjet_MuSmearID: 2.27437029e+00 + syst_JES_Zjet_MuSmearMS: 3.29285864e+00 + syst_JES_Zjet_OOC: 1.69175351e+02 + syst_JES_Zjet_Stat1: 4.38849583e+00 + syst_JES_Zjet_Stat10: 6.91698871e+00 + syst_JES_Zjet_Stat11: 5.74931620e+00 + syst_JES_Zjet_Stat12: 7.78588690e-01 + syst_JES_Zjet_Stat13: 8.36028389e-02 syst_JES_Zjet_Stat2: 0.0 - syst_JES_Zjet_Stat3: 2.2958333454325466 - syst_JES_Zjet_Stat4: 2.4514886431513405 - syst_JES_Zjet_Stat5: 4.152563906793007 - syst_JES_Zjet_Stat6: 7.75669354493266 - syst_JES_Zjet_Stat7: 12.325347865273418 - syst_JES_Zjet_Stat8: 22.19053120139308 - syst_JES_Zjet_Stat9: 24.266278556878056 - syst_JES_Zjet_Veto: 23.38924271967778 - syst_JES_Zjet_dPhi: 35.760487622514326 + syst_JES_Zjet_Stat3: 2.29583335e+00 + syst_JES_Zjet_Stat4: 2.45148864e+00 + syst_JES_Zjet_Stat5: 4.15256391e+00 + syst_JES_Zjet_Stat6: 7.75669354e+00 + syst_JES_Zjet_Stat7: 1.23253479e+01 + syst_JES_Zjet_Stat8: 2.21905312e+01 + syst_JES_Zjet_Stat9: 2.42662786e+01 + syst_JES_Zjet_Veto: 2.33892427e+01 + syst_JES_Zjet_dPhi: 3.57604876e+01 syst_PRW: 31.41 syst_Unfolding_bias: 16.84 - syst_cleaning: 119.03259367395974 + syst_cleaning: 1.19032594e+02 syst_lumi: 249.59 - syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 4.9348027316195735e-14 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 144.83630355249338 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 33.92661197349362 + syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 4.93480273e-14 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.44836304e+02 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 3.39266120e+01 syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 405.66004710687247 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.2800154325241552e-14 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 18.575704562680794 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 4.05660047e+02 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.28001543e-14 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.85757046e+01 - stat: 49.29 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 70.9811682490504 - syst_JER_NP1: 10.966231018449319 - syst_JER_NP2: 25.8935411830827 - syst_JER_NP3: 5.631858019339622 - syst_JER_NP4: 26.30461746538048 - syst_JER_NP5: 4.796355091890091 - syst_JER_NP6: 6.697755071663938 - syst_JER_NP7: 7.045747795656612 - syst_JER_NP8: 9.004242486183943 - syst_JES_EtaIntercalibration_Modelling: 0.0019605853080139103 + syst_JER_NP0: 7.09811682e+01 + syst_JER_NP1: 1.09662310e+01 + syst_JER_NP2: 2.58935412e+01 + syst_JER_NP3: 5.63185802e+00 + syst_JER_NP4: 2.63046175e+01 + syst_JER_NP5: 4.79635509e+00 + syst_JER_NP6: 6.69775507e+00 + syst_JER_NP7: 7.04574780e+00 + syst_JER_NP8: 9.00424249e+00 + syst_JES_EtaIntercalibration_Modelling: 1.96058531e-03 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 - syst_JES_EtaIntercalibration_Stat10: 0.011343974733311071 - syst_JES_EtaIntercalibration_Stat100: 0.1767260804182563 + syst_JES_EtaIntercalibration_Stat10: 1.13439747e-02 + syst_JES_EtaIntercalibration_Stat100: 1.76726080e-01 syst_JES_EtaIntercalibration_Stat101: 0.0 syst_JES_EtaIntercalibration_Stat102: 0.0 - syst_JES_EtaIntercalibration_Stat103: 0.006080364359970544 - syst_JES_EtaIntercalibration_Stat104: 0.006080364359970544 - syst_JES_EtaIntercalibration_Stat105: 0.006080364359970544 + syst_JES_EtaIntercalibration_Stat103: 6.08036436e-03 + syst_JES_EtaIntercalibration_Stat104: 6.08036436e-03 + syst_JES_EtaIntercalibration_Stat105: 6.08036436e-03 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 0.013691861633831976 - syst_JES_EtaIntercalibration_Stat11: 0.025928800589306095 - syst_JES_EtaIntercalibration_Stat110: 0.012981128610409806 - syst_JES_EtaIntercalibration_Stat111: 0.03714382956831457 - syst_JES_EtaIntercalibration_Stat112: 0.03714382956831457 + syst_JES_EtaIntercalibration_Stat109: 1.36918616e-02 + syst_JES_EtaIntercalibration_Stat11: 2.59288006e-02 + syst_JES_EtaIntercalibration_Stat110: 1.29811286e-02 + syst_JES_EtaIntercalibration_Stat111: 3.71438296e-02 + syst_JES_EtaIntercalibration_Stat112: 3.71438296e-02 syst_JES_EtaIntercalibration_Stat113: 0.0 - syst_JES_EtaIntercalibration_Stat114: 0.002480296756438632 - syst_JES_EtaIntercalibration_Stat115: 0.210694587199102 - syst_JES_EtaIntercalibration_Stat116: 7.766510847864696 - syst_JES_EtaIntercalibration_Stat117: 11.624375209016614 - syst_JES_EtaIntercalibration_Stat118: 10.567090943112015 - syst_JES_EtaIntercalibration_Stat119: 8.404648475694863 - syst_JES_EtaIntercalibration_Stat12: 0.04419834932438088 - syst_JES_EtaIntercalibration_Stat120: 0.15910300908530925 - syst_JES_EtaIntercalibration_Stat121: 0.0068156199277835325 + syst_JES_EtaIntercalibration_Stat114: 2.48029676e-03 + syst_JES_EtaIntercalibration_Stat115: 2.10694587e-01 + syst_JES_EtaIntercalibration_Stat116: 7.76651085e+00 + syst_JES_EtaIntercalibration_Stat117: 1.16243752e+01 + syst_JES_EtaIntercalibration_Stat118: 1.05670909e+01 + syst_JES_EtaIntercalibration_Stat119: 8.40464848e+00 + syst_JES_EtaIntercalibration_Stat12: 4.41983493e-02 + syst_JES_EtaIntercalibration_Stat120: 1.59103009e-01 + syst_JES_EtaIntercalibration_Stat121: 6.81561993e-03 syst_JES_EtaIntercalibration_Stat122: 0.0 - syst_JES_EtaIntercalibration_Stat123: 0.006080364359970544 - syst_JES_EtaIntercalibration_Stat124: 0.006080364359970544 - syst_JES_EtaIntercalibration_Stat125: 0.006080364359970544 + syst_JES_EtaIntercalibration_Stat123: 6.08036436e-03 + syst_JES_EtaIntercalibration_Stat124: 6.08036436e-03 + syst_JES_EtaIntercalibration_Stat125: 6.08036436e-03 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 0.013691861633831976 - syst_JES_EtaIntercalibration_Stat129: 0.012981128610409806 + syst_JES_EtaIntercalibration_Stat128: 1.36918616e-02 + syst_JES_EtaIntercalibration_Stat129: 1.29811286e-02 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 0.005932274015923405 + syst_JES_EtaIntercalibration_Stat130: 5.93227402e-03 syst_JES_EtaIntercalibration_Stat131: 0.0 syst_JES_EtaIntercalibration_Stat132: 0.0 - syst_JES_EtaIntercalibration_Stat133: 0.002480296756438632 - syst_JES_EtaIntercalibration_Stat134: 0.02945932361748993 - syst_JES_EtaIntercalibration_Stat135: 1.890655198601797 - syst_JES_EtaIntercalibration_Stat136: 2.634521351213537 - syst_JES_EtaIntercalibration_Stat137: 2.57020466111164 - syst_JES_EtaIntercalibration_Stat138: 1.4030184139917765 - syst_JES_EtaIntercalibration_Stat139: 0.02916568346533302 + syst_JES_EtaIntercalibration_Stat133: 2.48029676e-03 + syst_JES_EtaIntercalibration_Stat134: 2.94593236e-02 + syst_JES_EtaIntercalibration_Stat135: 1.89065520e+00 + syst_JES_EtaIntercalibration_Stat136: 2.63452135e+00 + syst_JES_EtaIntercalibration_Stat137: 2.57020466e+00 + syst_JES_EtaIntercalibration_Stat138: 1.40301841e+00 + syst_JES_EtaIntercalibration_Stat139: 2.91656835e-02 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 0.0068156199277835325 + syst_JES_EtaIntercalibration_Stat140: 6.81561993e-03 syst_JES_EtaIntercalibration_Stat141: 0.0 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 0.006080364359970544 - syst_JES_EtaIntercalibration_Stat144: 0.006080364359970544 + syst_JES_EtaIntercalibration_Stat143: 6.08036436e-03 + syst_JES_EtaIntercalibration_Stat144: 6.08036436e-03 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 0.005932274015923405 - syst_JES_EtaIntercalibration_Stat148: 0.005932274015923405 + syst_JES_EtaIntercalibration_Stat147: 5.93227402e-03 + syst_JES_EtaIntercalibration_Stat148: 5.93227402e-03 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 syst_JES_EtaIntercalibration_Stat150: 0.0 syst_JES_EtaIntercalibration_Stat151: 0.0 - syst_JES_EtaIntercalibration_Stat152: 0.022263155661316297 - syst_JES_EtaIntercalibration_Stat153: 0.7395662580188472 - syst_JES_EtaIntercalibration_Stat154: 1.570593578078046 - syst_JES_EtaIntercalibration_Stat155: 1.2215285506282691 - syst_JES_EtaIntercalibration_Stat156: 0.8860267532642567 - syst_JES_EtaIntercalibration_Stat157: 0.05786480169325736 + syst_JES_EtaIntercalibration_Stat152: 2.22631557e-02 + syst_JES_EtaIntercalibration_Stat153: 7.39566258e-01 + syst_JES_EtaIntercalibration_Stat154: 1.57059358e+00 + syst_JES_EtaIntercalibration_Stat155: 1.22152855e+00 + syst_JES_EtaIntercalibration_Stat156: 8.86026753e-01 + syst_JES_EtaIntercalibration_Stat157: 5.78648017e-02 syst_JES_EtaIntercalibration_Stat158: 0.0 syst_JES_EtaIntercalibration_Stat159: 0.0 syst_JES_EtaIntercalibration_Stat16: 0.0 @@ -1798,18 +1798,18 @@ bins: syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 0.005932274015923405 + syst_JES_EtaIntercalibration_Stat165: 5.93227402e-03 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 0.00022449483752416221 - syst_JES_EtaIntercalibration_Stat171: 0.010761479115344693 - syst_JES_EtaIntercalibration_Stat172: 0.02810874241228163 - syst_JES_EtaIntercalibration_Stat173: 0.08586976359580828 - syst_JES_EtaIntercalibration_Stat174: 0.07676643602512753 - syst_JES_EtaIntercalibration_Stat175: 0.01074149612798422 + syst_JES_EtaIntercalibration_Stat170: 2.24494838e-04 + syst_JES_EtaIntercalibration_Stat171: 1.07614791e-02 + syst_JES_EtaIntercalibration_Stat172: 2.81087424e-02 + syst_JES_EtaIntercalibration_Stat173: 8.58697636e-02 + syst_JES_EtaIntercalibration_Stat174: 7.67664360e-02 + syst_JES_EtaIntercalibration_Stat175: 1.07414961e-02 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 syst_JES_EtaIntercalibration_Stat178: 0.0 @@ -1822,13 +1822,13 @@ bins: syst_JES_EtaIntercalibration_Stat184: 0.0 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 - syst_JES_EtaIntercalibration_Stat187: 1.5146784312189834e-05 - syst_JES_EtaIntercalibration_Stat188: 0.0030954116539646226 - syst_JES_EtaIntercalibration_Stat189: 0.005561582508603105 + syst_JES_EtaIntercalibration_Stat187: 1.51467843e-05 + syst_JES_EtaIntercalibration_Stat188: 3.09541165e-03 + syst_JES_EtaIntercalibration_Stat189: 5.56158251e-03 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 0.005025536264917407 - syst_JES_EtaIntercalibration_Stat191: 0.0037216093293090287 - syst_JES_EtaIntercalibration_Stat192: 4.3363957314742396e-07 + syst_JES_EtaIntercalibration_Stat190: 5.02553626e-03 + syst_JES_EtaIntercalibration_Stat191: 3.72160933e-03 + syst_JES_EtaIntercalibration_Stat192: 4.33639573e-07 syst_JES_EtaIntercalibration_Stat193: 0.0 syst_JES_EtaIntercalibration_Stat194: 0.0 syst_JES_EtaIntercalibration_Stat195: 0.0 @@ -1840,12 +1840,12 @@ bins: syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 syst_JES_EtaIntercalibration_Stat201: 0.0 - syst_JES_EtaIntercalibration_Stat202: 1.0965296243435699e-10 - syst_JES_EtaIntercalibration_Stat203: 1.6159661970474505e-05 - syst_JES_EtaIntercalibration_Stat204: 1.5847468149518394e-05 - syst_JES_EtaIntercalibration_Stat205: 2.054654411330528e-05 - syst_JES_EtaIntercalibration_Stat206: 1.6564760789096837e-05 - syst_JES_EtaIntercalibration_Stat207: 6.63353917603567e-20 + syst_JES_EtaIntercalibration_Stat202: 1.09652962e-10 + syst_JES_EtaIntercalibration_Stat203: 1.61596620e-05 + syst_JES_EtaIntercalibration_Stat204: 1.58474681e-05 + syst_JES_EtaIntercalibration_Stat205: 2.05465441e-05 + syst_JES_EtaIntercalibration_Stat206: 1.65647608e-05 + syst_JES_EtaIntercalibration_Stat207: 6.63353918e-20 syst_JES_EtaIntercalibration_Stat208: 0.0 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 @@ -1854,11 +1854,11 @@ bins: syst_JES_EtaIntercalibration_Stat212: 0.0 syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 - syst_JES_EtaIntercalibration_Stat215: 3.480556097809659e-35 - syst_JES_EtaIntercalibration_Stat216: 1.3380539417274178e-15 - syst_JES_EtaIntercalibration_Stat217: 1.5492698016123595e-11 - syst_JES_EtaIntercalibration_Stat218: 1.9445078728305525e-15 - syst_JES_EtaIntercalibration_Stat219: 1.277387470582047e-15 + syst_JES_EtaIntercalibration_Stat215: 3.48055610e-35 + syst_JES_EtaIntercalibration_Stat216: 1.33805394e-15 + syst_JES_EtaIntercalibration_Stat217: 1.54926980e-11 + syst_JES_EtaIntercalibration_Stat218: 1.94450787e-15 + syst_JES_EtaIntercalibration_Stat219: 1.27738747e-15 syst_JES_EtaIntercalibration_Stat22: 0.0 syst_JES_EtaIntercalibration_Stat220: 0.0 syst_JES_EtaIntercalibration_Stat221: 0.0 @@ -1868,11 +1868,11 @@ bins: syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 syst_JES_EtaIntercalibration_Stat227: 0.0 - syst_JES_EtaIntercalibration_Stat228: 2.5495787887413873e-36 - syst_JES_EtaIntercalibration_Stat229: 4.654957652868606e-36 + syst_JES_EtaIntercalibration_Stat228: 2.54957879e-36 + syst_JES_EtaIntercalibration_Stat229: 4.65495765e-36 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 5.0307415578243625e-28 - syst_JES_EtaIntercalibration_Stat231: 5.630053196906758e-28 + syst_JES_EtaIntercalibration_Stat230: 5.03074156e-28 + syst_JES_EtaIntercalibration_Stat231: 5.63005320e-28 syst_JES_EtaIntercalibration_Stat232: 0.0 syst_JES_EtaIntercalibration_Stat233: 0.0 syst_JES_EtaIntercalibration_Stat234: 0.0 @@ -1894,12 +1894,12 @@ bins: syst_JES_EtaIntercalibration_Stat28: 0.0 syst_JES_EtaIntercalibration_Stat29: 0.0 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 0.013635074944788531 - syst_JES_EtaIntercalibration_Stat31: 0.2788875042019631 - syst_JES_EtaIntercalibration_Stat32: 0.2865646654770961 - syst_JES_EtaIntercalibration_Stat33: 0.1967909233171083 - syst_JES_EtaIntercalibration_Stat34: 0.17484629101227742 - syst_JES_EtaIntercalibration_Stat35: 0.014496971985556155 + syst_JES_EtaIntercalibration_Stat30: 1.36350749e-02 + syst_JES_EtaIntercalibration_Stat31: 2.78887504e-01 + syst_JES_EtaIntercalibration_Stat32: 2.86564665e-01 + syst_JES_EtaIntercalibration_Stat33: 1.96790923e-01 + syst_JES_EtaIntercalibration_Stat34: 1.74846291e-01 + syst_JES_EtaIntercalibration_Stat35: 1.44969720e-02 syst_JES_EtaIntercalibration_Stat36: 0.0 syst_JES_EtaIntercalibration_Stat37: 0.0 syst_JES_EtaIntercalibration_Stat38: 0.0 @@ -1918,87 +1918,87 @@ bins: syst_JES_EtaIntercalibration_Stat5: 0.0 syst_JES_EtaIntercalibration_Stat50: 0.0 syst_JES_EtaIntercalibration_Stat51: 0.0 - syst_JES_EtaIntercalibration_Stat52: 0.03073105808054776 - syst_JES_EtaIntercalibration_Stat53: 0.7354969607007225 - syst_JES_EtaIntercalibration_Stat54: 0.8425724538578271 - syst_JES_EtaIntercalibration_Stat55: 1.2251502469085167 - syst_JES_EtaIntercalibration_Stat56: 0.4041737266844119 - syst_JES_EtaIntercalibration_Stat57: 0.03126463977083376 + syst_JES_EtaIntercalibration_Stat52: 3.07310581e-02 + syst_JES_EtaIntercalibration_Stat53: 7.35496961e-01 + syst_JES_EtaIntercalibration_Stat54: 8.42572454e-01 + syst_JES_EtaIntercalibration_Stat55: 1.22515025e+00 + syst_JES_EtaIntercalibration_Stat56: 4.04173727e-01 + syst_JES_EtaIntercalibration_Stat57: 3.12646398e-02 syst_JES_EtaIntercalibration_Stat58: 0.0 syst_JES_EtaIntercalibration_Stat59: 0.0 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 0.006080364359970544 - syst_JES_EtaIntercalibration_Stat62: 0.006080364359970544 + syst_JES_EtaIntercalibration_Stat61: 6.08036436e-03 + syst_JES_EtaIntercalibration_Stat62: 6.08036436e-03 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 0.013691861633831976 - syst_JES_EtaIntercalibration_Stat69: 0.013691861633831976 + syst_JES_EtaIntercalibration_Stat68: 1.36918616e-02 + syst_JES_EtaIntercalibration_Stat69: 1.36918616e-02 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 0.03714382956831457 - syst_JES_EtaIntercalibration_Stat71: 0.03714382956831457 + syst_JES_EtaIntercalibration_Stat70: 3.71438296e-02 + syst_JES_EtaIntercalibration_Stat71: 3.71438296e-02 syst_JES_EtaIntercalibration_Stat72: 0.0 syst_JES_EtaIntercalibration_Stat73: 0.0 - syst_JES_EtaIntercalibration_Stat74: 0.06784568667203537 - syst_JES_EtaIntercalibration_Stat75: 4.702327189807192 - syst_JES_EtaIntercalibration_Stat76: 6.496557242109086 - syst_JES_EtaIntercalibration_Stat77: 9.62566209411072 - syst_JES_EtaIntercalibration_Stat78: 5.7759149058828765 - syst_JES_EtaIntercalibration_Stat79: 0.10318490720546294 + syst_JES_EtaIntercalibration_Stat74: 6.78456867e-02 + syst_JES_EtaIntercalibration_Stat75: 4.70232719e+00 + syst_JES_EtaIntercalibration_Stat76: 6.49655724e+00 + syst_JES_EtaIntercalibration_Stat77: 9.62566209e+00 + syst_JES_EtaIntercalibration_Stat78: 5.77591491e+00 + syst_JES_EtaIntercalibration_Stat79: 1.03184907e-01 syst_JES_EtaIntercalibration_Stat8: 0.0 syst_JES_EtaIntercalibration_Stat80: 0.0 syst_JES_EtaIntercalibration_Stat81: 0.0 - syst_JES_EtaIntercalibration_Stat82: 0.006080364359970544 - syst_JES_EtaIntercalibration_Stat83: 0.006080364359970544 - syst_JES_EtaIntercalibration_Stat84: 0.006080364359970544 + syst_JES_EtaIntercalibration_Stat82: 6.08036436e-03 + syst_JES_EtaIntercalibration_Stat83: 6.08036436e-03 + syst_JES_EtaIntercalibration_Stat84: 6.08036436e-03 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 0.013691861633831976 - syst_JES_EtaIntercalibration_Stat9: 0.04501779953529492 - syst_JES_EtaIntercalibration_Stat90: 0.013691861633831976 - syst_JES_EtaIntercalibration_Stat91: 0.03714382956831457 - syst_JES_EtaIntercalibration_Stat92: 0.03714382956831457 + syst_JES_EtaIntercalibration_Stat89: 1.36918616e-02 + syst_JES_EtaIntercalibration_Stat9: 4.50177995e-02 + syst_JES_EtaIntercalibration_Stat90: 1.36918616e-02 + syst_JES_EtaIntercalibration_Stat91: 3.71438296e-02 + syst_JES_EtaIntercalibration_Stat92: 3.71438296e-02 syst_JES_EtaIntercalibration_Stat93: 0.0 syst_JES_EtaIntercalibration_Stat94: 0.0 - syst_JES_EtaIntercalibration_Stat95: 0.15707261656635124 - syst_JES_EtaIntercalibration_Stat96: 7.516045685731294 - syst_JES_EtaIntercalibration_Stat97: 10.266473250342592 - syst_JES_EtaIntercalibration_Stat98: 10.123750231510058 - syst_JES_EtaIntercalibration_Stat99: 7.252008480414237 - syst_JES_EtaIntercalibration_TotalStat_MJB: 8.58114246473044e-09 - syst_JES_Flavour_Comp: 7.922194392969665 - syst_JES_Gjet_Generator: 120.94813131255894 - syst_JES_Gjet_OOC: 73.9717385019441 - syst_JES_Gjet_Purity: 31.003728807999853 + syst_JES_EtaIntercalibration_Stat95: 1.57072617e-01 + syst_JES_EtaIntercalibration_Stat96: 7.51604569e+00 + syst_JES_EtaIntercalibration_Stat97: 1.02664733e+01 + syst_JES_EtaIntercalibration_Stat98: 1.01237502e+01 + syst_JES_EtaIntercalibration_Stat99: 7.25200848e+00 + syst_JES_EtaIntercalibration_TotalStat_MJB: 8.58114246e-09 + syst_JES_Flavour_Comp: 7.92219439e+00 + syst_JES_Gjet_Generator: 1.20948131e+02 + syst_JES_Gjet_OOC: 7.39717385e+01 + syst_JES_Gjet_Purity: 3.10037288e+01 syst_JES_Gjet_Stat1: 0.0 - syst_JES_Gjet_Stat10: 1.1167393339539895 - syst_JES_Gjet_Stat11: 0.5156822350052404 - syst_JES_Gjet_Stat12: 0.10878477685319762 - syst_JES_Gjet_Stat13: 0.002512876190742393 - syst_JES_Gjet_Stat14: 1.0961261980496895e-13 - syst_JES_Gjet_Stat15: 2.1995538002058507e-14 - syst_JES_Gjet_Stat2: 0.5276692785258584 - syst_JES_Gjet_Stat3: 1.0056702379507907 - syst_JES_Gjet_Stat4: 1.7094502127877256 - syst_JES_Gjet_Stat5: 2.631556193585841 - syst_JES_Gjet_Stat6: 7.821498881288675 - syst_JES_Gjet_Stat7: 12.26462266031858 - syst_JES_Gjet_Stat8: 3.860222273393075 - syst_JES_Gjet_Stat9: 1.4949898829089112 - syst_JES_Gjet_Veto: 22.613467226411785 - syst_JES_Gjet_dPhi: 14.491420737802073 - syst_JES_LArESZee: 76.83324350826274 - syst_JES_LArEsmear: 7.090522124639341 - syst_JES_LAr_JVT: 13.301265005630103 - syst_JES_MJB_Alpha: 0.001551917523581714 - syst_JES_MJB_Asym: 0.002340855185610592 + syst_JES_Gjet_Stat10: 1.11673933e+00 + syst_JES_Gjet_Stat11: 5.15682235e-01 + syst_JES_Gjet_Stat12: 1.08784777e-01 + syst_JES_Gjet_Stat13: 2.51287619e-03 + syst_JES_Gjet_Stat14: 1.09612620e-13 + syst_JES_Gjet_Stat15: 2.19955380e-14 + syst_JES_Gjet_Stat2: 5.27669279e-01 + syst_JES_Gjet_Stat3: 1.00567024e+00 + syst_JES_Gjet_Stat4: 1.70945021e+00 + syst_JES_Gjet_Stat5: 2.63155619e+00 + syst_JES_Gjet_Stat6: 7.82149888e+00 + syst_JES_Gjet_Stat7: 1.22646227e+01 + syst_JES_Gjet_Stat8: 3.86022227e+00 + syst_JES_Gjet_Stat9: 1.49498988e+00 + syst_JES_Gjet_Veto: 2.26134672e+01 + syst_JES_Gjet_dPhi: 1.44914207e+01 + syst_JES_LArESZee: 7.68332435e+01 + syst_JES_LArEsmear: 7.09052212e+00 + syst_JES_LAr_JVT: 1.33012650e+01 + syst_JES_MJB_Alpha: 1.55191752e-03 + syst_JES_MJB_Asym: 2.34085519e-03 syst_JES_MJB_Beta: 0.0 - syst_JES_MJB_Stat1: 0.0008439328809212258 + syst_JES_MJB_Stat1: 8.43932881e-04 syst_JES_MJB_Stat10: 0.0 syst_JES_MJB_Stat11: 0.0 syst_JES_MJB_Stat12: 0.0 @@ -2006,132 +2006,132 @@ bins: syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 0.0003469297767560461 - syst_JES_MJB_Stat3: 7.044659411128404e-08 - syst_JES_MJB_Stat4: 1.8784091008084474e-11 - syst_JES_MJB_Stat5: 1.7770841238342828e-26 - syst_JES_MJB_Stat6: 7.800290811886439e-28 + syst_JES_MJB_Stat2: 3.46929777e-04 + syst_JES_MJB_Stat3: 7.04465941e-08 + syst_JES_MJB_Stat4: 1.87840910e-11 + syst_JES_MJB_Stat5: 1.77708412e-26 + syst_JES_MJB_Stat6: 7.80029081e-28 syst_JES_MJB_Stat7: 0.0 syst_JES_MJB_Stat8: 0.0 syst_JES_MJB_Stat9: 0.0 - syst_JES_MJB_Threshold: 0.002744560438394462 - syst_JES_Pileup_MuOffset: 4.471285527395896e-25 - syst_JES_Pileup_NPVOffset: 8.849361714270694 - syst_JES_Pileup_Pt_term: 17.525309555040675 + syst_JES_MJB_Threshold: 2.74456044e-03 + syst_JES_Pileup_MuOffset: 4.47128553e-25 + syst_JES_Pileup_NPVOffset: 8.84936171e+00 + syst_JES_Pileup_Pt_term: 1.75253096e+01 syst_JES_PunchThrough_MC15: 0.0 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 110.5173995758134 - syst_JES_Zjet_MuScale: 8.026715439705084 - syst_JES_Zjet_MuSmearID: 0.9929687883815884 - syst_JES_Zjet_MuSmearMS: 3.5961483395432947 - syst_JES_Zjet_OOC: 68.13214868731207 - syst_JES_Zjet_Stat1: 1.5369595009303272 - syst_JES_Zjet_Stat10: 7.693042116094256 - syst_JES_Zjet_Stat11: 2.1566672622358785 - syst_JES_Zjet_Stat12: 1.1570979679785114 - syst_JES_Zjet_Stat13: 0.05122243453800297 + syst_JES_Zjet_MC: 1.10517400e+02 + syst_JES_Zjet_MuScale: 8.02671544e+00 + syst_JES_Zjet_MuSmearID: 9.92968788e-01 + syst_JES_Zjet_MuSmearMS: 3.59614834e+00 + syst_JES_Zjet_OOC: 6.81321487e+01 + syst_JES_Zjet_Stat1: 1.53695950e+00 + syst_JES_Zjet_Stat10: 7.69304212e+00 + syst_JES_Zjet_Stat11: 2.15666726e+00 + syst_JES_Zjet_Stat12: 1.15709797e+00 + syst_JES_Zjet_Stat13: 5.12224345e-02 syst_JES_Zjet_Stat2: 0.0 - syst_JES_Zjet_Stat3: 0.6384339276698882 - syst_JES_Zjet_Stat4: 0.7404445337093116 - syst_JES_Zjet_Stat5: 1.3731330124936914 - syst_JES_Zjet_Stat6: 2.9421829905700974 - syst_JES_Zjet_Stat7: 5.106910122569223 - syst_JES_Zjet_Stat8: 9.212635127909929 - syst_JES_Zjet_Stat9: 13.324857475785622 - syst_JES_Zjet_Veto: 10.6023392112307 - syst_JES_Zjet_dPhi: 15.460025873199566 + syst_JES_Zjet_Stat3: 6.38433928e-01 + syst_JES_Zjet_Stat4: 7.40444534e-01 + syst_JES_Zjet_Stat5: 1.37313301e+00 + syst_JES_Zjet_Stat6: 2.94218299e+00 + syst_JES_Zjet_Stat7: 5.10691012e+00 + syst_JES_Zjet_Stat8: 9.21263513e+00 + syst_JES_Zjet_Stat9: 1.33248575e+01 + syst_JES_Zjet_Veto: 1.06023392e+01 + syst_JES_Zjet_dPhi: 1.54600259e+01 syst_PRW: 15.83 syst_Unfolding_bias: 7.183 - syst_cleaning: 49.35565378707894 + syst_cleaning: 4.93556538e+01 syst_lumi: 120.963 - syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 9.41105385969074e-09 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 64.32545089426114 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 15.051172711785616 + syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 9.41105386e-09 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 6.43254509e+01 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 1.50511727e+01 syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 179.94402546347573 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 2.5218082302189433e-09 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 9.27218647353471 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 1.79944025e+02 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 2.52180823e-09 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 9.27218647e+00 - stat: 18.272 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 31.606158814382997 - syst_JER_NP1: 5.749644749895423 - syst_JER_NP2: 10.850018340998323 - syst_JER_NP3: 4.073658398786034 - syst_JER_NP4: 11.88139860243734 - syst_JER_NP5: 1.9915225005005595 - syst_JER_NP6: 3.5306342206464834 - syst_JER_NP7: 3.729917023205744 - syst_JER_NP8: 4.140537736816317 - syst_JES_EtaIntercalibration_Modelling: 0.03726499798738758 + syst_JER_NP0: 3.16061588e+01 + syst_JER_NP1: 5.74964475e+00 + syst_JER_NP2: 1.08500183e+01 + syst_JER_NP3: 4.07365840e+00 + syst_JER_NP4: 1.18813986e+01 + syst_JER_NP5: 1.99152250e+00 + syst_JER_NP6: 3.53063422e+00 + syst_JER_NP7: 3.72991702e+00 + syst_JER_NP8: 4.14053774e+00 + syst_JES_EtaIntercalibration_Modelling: 3.72649980e-02 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 - syst_JES_EtaIntercalibration_Stat10: 0.016308389520427822 - syst_JES_EtaIntercalibration_Stat100: 0.08938040431213096 + syst_JES_EtaIntercalibration_Stat10: 1.63083895e-02 + syst_JES_EtaIntercalibration_Stat100: 8.93804043e-02 syst_JES_EtaIntercalibration_Stat101: 0.0 syst_JES_EtaIntercalibration_Stat102: 0.0 - syst_JES_EtaIntercalibration_Stat103: 0.001416817560591342 - syst_JES_EtaIntercalibration_Stat104: 0.001416817560591342 - syst_JES_EtaIntercalibration_Stat105: 0.001416817560591342 + syst_JES_EtaIntercalibration_Stat103: 1.41681756e-03 + syst_JES_EtaIntercalibration_Stat104: 1.41681756e-03 + syst_JES_EtaIntercalibration_Stat105: 1.41681756e-03 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 0.01128690908752259 - syst_JES_EtaIntercalibration_Stat11: 0.02813716536895641 - syst_JES_EtaIntercalibration_Stat110: 0.010770970290554143 - syst_JES_EtaIntercalibration_Stat111: 0.014367361448783837 - syst_JES_EtaIntercalibration_Stat112: 0.014367361448783837 + syst_JES_EtaIntercalibration_Stat109: 1.12869091e-02 + syst_JES_EtaIntercalibration_Stat11: 2.81371654e-02 + syst_JES_EtaIntercalibration_Stat110: 1.07709703e-02 + syst_JES_EtaIntercalibration_Stat111: 1.43673614e-02 + syst_JES_EtaIntercalibration_Stat112: 1.43673614e-02 syst_JES_EtaIntercalibration_Stat113: 0.0 - syst_JES_EtaIntercalibration_Stat114: 0.009865761399912324 - syst_JES_EtaIntercalibration_Stat115: 0.11501827376551953 - syst_JES_EtaIntercalibration_Stat116: 5.657477883297468 - syst_JES_EtaIntercalibration_Stat117: 8.076049900786895 - syst_JES_EtaIntercalibration_Stat118: 7.733489251301769 - syst_JES_EtaIntercalibration_Stat119: 6.098518078189159 - syst_JES_EtaIntercalibration_Stat12: 0.01161468940953653 - syst_JES_EtaIntercalibration_Stat120: 0.1043279104554481 - syst_JES_EtaIntercalibration_Stat121: 0.00026344492783122623 + syst_JES_EtaIntercalibration_Stat114: 9.86576140e-03 + syst_JES_EtaIntercalibration_Stat115: 1.15018274e-01 + syst_JES_EtaIntercalibration_Stat116: 5.65747788e+00 + syst_JES_EtaIntercalibration_Stat117: 8.07604990e+00 + syst_JES_EtaIntercalibration_Stat118: 7.73348925e+00 + syst_JES_EtaIntercalibration_Stat119: 6.09851808e+00 + syst_JES_EtaIntercalibration_Stat12: 1.16146894e-02 + syst_JES_EtaIntercalibration_Stat120: 1.04327910e-01 + syst_JES_EtaIntercalibration_Stat121: 2.63444928e-04 syst_JES_EtaIntercalibration_Stat122: 0.0 - syst_JES_EtaIntercalibration_Stat123: 0.001416817560591342 - syst_JES_EtaIntercalibration_Stat124: 0.001416817560591342 - syst_JES_EtaIntercalibration_Stat125: 0.001416817560591342 + syst_JES_EtaIntercalibration_Stat123: 1.41681756e-03 + syst_JES_EtaIntercalibration_Stat124: 1.41681756e-03 + syst_JES_EtaIntercalibration_Stat125: 1.41681756e-03 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 0.01128690908752259 - syst_JES_EtaIntercalibration_Stat129: 0.010770970290554143 + syst_JES_EtaIntercalibration_Stat128: 1.12869091e-02 + syst_JES_EtaIntercalibration_Stat129: 1.07709703e-02 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 0.0020966475025621257 + syst_JES_EtaIntercalibration_Stat130: 2.09664750e-03 syst_JES_EtaIntercalibration_Stat131: 0.0 syst_JES_EtaIntercalibration_Stat132: 0.0 - syst_JES_EtaIntercalibration_Stat133: 0.009865761399912324 - syst_JES_EtaIntercalibration_Stat134: 0.06460558857405449 - syst_JES_EtaIntercalibration_Stat135: 2.5076177938433917 - syst_JES_EtaIntercalibration_Stat136: 5.062642788109783 - syst_JES_EtaIntercalibration_Stat137: 4.28160927689578 - syst_JES_EtaIntercalibration_Stat138: 2.755700047174946 - syst_JES_EtaIntercalibration_Stat139: 0.05418667986691932 + syst_JES_EtaIntercalibration_Stat133: 9.86576140e-03 + syst_JES_EtaIntercalibration_Stat134: 6.46055886e-02 + syst_JES_EtaIntercalibration_Stat135: 2.50761779e+00 + syst_JES_EtaIntercalibration_Stat136: 5.06264279e+00 + syst_JES_EtaIntercalibration_Stat137: 4.28160928e+00 + syst_JES_EtaIntercalibration_Stat138: 2.75570005e+00 + syst_JES_EtaIntercalibration_Stat139: 5.41866799e-02 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 0.00026344492783122623 + syst_JES_EtaIntercalibration_Stat140: 2.63444928e-04 syst_JES_EtaIntercalibration_Stat141: 0.0 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 0.001416817560591342 - syst_JES_EtaIntercalibration_Stat144: 0.001416817560591342 + syst_JES_EtaIntercalibration_Stat143: 1.41681756e-03 + syst_JES_EtaIntercalibration_Stat144: 1.41681756e-03 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 0.0020966475025621257 - syst_JES_EtaIntercalibration_Stat148: 0.0020966475025621257 + syst_JES_EtaIntercalibration_Stat147: 2.09664750e-03 + syst_JES_EtaIntercalibration_Stat148: 2.09664750e-03 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 syst_JES_EtaIntercalibration_Stat150: 0.0 syst_JES_EtaIntercalibration_Stat151: 0.0 - syst_JES_EtaIntercalibration_Stat152: 0.034459171130484266 - syst_JES_EtaIntercalibration_Stat153: 0.7329742696711803 - syst_JES_EtaIntercalibration_Stat154: 1.3429438065310106 - syst_JES_EtaIntercalibration_Stat155: 0.7657601060384381 - syst_JES_EtaIntercalibration_Stat156: 0.5279128715990926 - syst_JES_EtaIntercalibration_Stat157: 0.019299632140276662 + syst_JES_EtaIntercalibration_Stat152: 3.44591711e-02 + syst_JES_EtaIntercalibration_Stat153: 7.32974270e-01 + syst_JES_EtaIntercalibration_Stat154: 1.34294381e+00 + syst_JES_EtaIntercalibration_Stat155: 7.65760106e-01 + syst_JES_EtaIntercalibration_Stat156: 5.27912872e-01 + syst_JES_EtaIntercalibration_Stat157: 1.92996321e-02 syst_JES_EtaIntercalibration_Stat158: 0.0 syst_JES_EtaIntercalibration_Stat159: 0.0 syst_JES_EtaIntercalibration_Stat16: 0.0 @@ -2140,18 +2140,18 @@ bins: syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 0.0020966475025621257 + syst_JES_EtaIntercalibration_Stat165: 2.09664750e-03 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 0.0038481014474673093 - syst_JES_EtaIntercalibration_Stat171: 0.11966762344092907 - syst_JES_EtaIntercalibration_Stat172: 0.15744630830857864 - syst_JES_EtaIntercalibration_Stat173: 0.21746641119952295 - syst_JES_EtaIntercalibration_Stat174: 0.13752977886625137 - syst_JES_EtaIntercalibration_Stat175: 0.012175452476191595 + syst_JES_EtaIntercalibration_Stat170: 3.84810145e-03 + syst_JES_EtaIntercalibration_Stat171: 1.19667623e-01 + syst_JES_EtaIntercalibration_Stat172: 1.57446308e-01 + syst_JES_EtaIntercalibration_Stat173: 2.17466411e-01 + syst_JES_EtaIntercalibration_Stat174: 1.37529779e-01 + syst_JES_EtaIntercalibration_Stat175: 1.21754525e-02 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 syst_JES_EtaIntercalibration_Stat178: 0.0 @@ -2164,14 +2164,14 @@ bins: syst_JES_EtaIntercalibration_Stat184: 0.0 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 - syst_JES_EtaIntercalibration_Stat187: 0.000287780241677569 - syst_JES_EtaIntercalibration_Stat188: 0.009961444875117263 - syst_JES_EtaIntercalibration_Stat189: 0.009550427320282585 + syst_JES_EtaIntercalibration_Stat187: 2.87780242e-04 + syst_JES_EtaIntercalibration_Stat188: 9.96144488e-03 + syst_JES_EtaIntercalibration_Stat189: 9.55042732e-03 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 0.005602113239662333 - syst_JES_EtaIntercalibration_Stat191: 0.00853044148916104 - syst_JES_EtaIntercalibration_Stat192: 7.019469617763155e-05 - syst_JES_EtaIntercalibration_Stat193: 2.5235980266278544e-32 + syst_JES_EtaIntercalibration_Stat190: 5.60211324e-03 + syst_JES_EtaIntercalibration_Stat191: 8.53044149e-03 + syst_JES_EtaIntercalibration_Stat192: 7.01946962e-05 + syst_JES_EtaIntercalibration_Stat193: 2.52359803e-32 syst_JES_EtaIntercalibration_Stat194: 0.0 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 @@ -2182,13 +2182,13 @@ bins: syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 syst_JES_EtaIntercalibration_Stat201: 0.0 - syst_JES_EtaIntercalibration_Stat202: 2.446631745373014e-07 - syst_JES_EtaIntercalibration_Stat203: 0.0002506329786759915 - syst_JES_EtaIntercalibration_Stat204: 0.0033709603390576996 - syst_JES_EtaIntercalibration_Stat205: 0.0003929890170221046 - syst_JES_EtaIntercalibration_Stat206: 0.00031482856843050315 - syst_JES_EtaIntercalibration_Stat207: 1.3504518762251397e-13 - syst_JES_EtaIntercalibration_Stat208: 2.5235980266278544e-32 + syst_JES_EtaIntercalibration_Stat202: 2.44663175e-07 + syst_JES_EtaIntercalibration_Stat203: 2.50632979e-04 + syst_JES_EtaIntercalibration_Stat204: 3.37096034e-03 + syst_JES_EtaIntercalibration_Stat205: 3.92989017e-04 + syst_JES_EtaIntercalibration_Stat206: 3.14828568e-04 + syst_JES_EtaIntercalibration_Stat207: 1.35045188e-13 + syst_JES_EtaIntercalibration_Stat208: 2.52359803e-32 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 @@ -2196,13 +2196,13 @@ bins: syst_JES_EtaIntercalibration_Stat212: 0.0 syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 - syst_JES_EtaIntercalibration_Stat215: 1.0584562485053409e-24 - syst_JES_EtaIntercalibration_Stat216: 6.848144178352264e-11 - syst_JES_EtaIntercalibration_Stat217: 3.468498354334156e-08 - syst_JES_EtaIntercalibration_Stat218: 9.959892469299055e-11 - syst_JES_EtaIntercalibration_Stat219: 6.546286027206968e-11 + syst_JES_EtaIntercalibration_Stat215: 1.05845625e-24 + syst_JES_EtaIntercalibration_Stat216: 6.84814418e-11 + syst_JES_EtaIntercalibration_Stat217: 3.46849835e-08 + syst_JES_EtaIntercalibration_Stat218: 9.95989247e-11 + syst_JES_EtaIntercalibration_Stat219: 6.54628603e-11 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 4.417086228499507e-32 + syst_JES_EtaIntercalibration_Stat220: 4.41708623e-32 syst_JES_EtaIntercalibration_Stat221: 0.0 syst_JES_EtaIntercalibration_Stat222: 0.0 syst_JES_EtaIntercalibration_Stat223: 0.0 @@ -2210,12 +2210,12 @@ bins: syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 syst_JES_EtaIntercalibration_Stat227: 0.0 - syst_JES_EtaIntercalibration_Stat228: 7.755257120230846e-26 - syst_JES_EtaIntercalibration_Stat229: 1.415887773624732e-25 + syst_JES_EtaIntercalibration_Stat228: 7.75525712e-26 + syst_JES_EtaIntercalibration_Stat229: 1.41588777e-25 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 8.845579593889906e-20 - syst_JES_EtaIntercalibration_Stat231: 9.900354677990077e-20 - syst_JES_EtaIntercalibration_Stat232: 2.5080095693597346e-32 + syst_JES_EtaIntercalibration_Stat230: 8.84557959e-20 + syst_JES_EtaIntercalibration_Stat231: 9.90035468e-20 + syst_JES_EtaIntercalibration_Stat232: 2.50800957e-32 syst_JES_EtaIntercalibration_Stat233: 0.0 syst_JES_EtaIntercalibration_Stat234: 0.0 syst_JES_EtaIntercalibration_Stat235: 0.0 @@ -2236,12 +2236,12 @@ bins: syst_JES_EtaIntercalibration_Stat28: 0.0 syst_JES_EtaIntercalibration_Stat29: 0.0 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 0.009466662453050705 - syst_JES_EtaIntercalibration_Stat31: 0.008353455991384644 - syst_JES_EtaIntercalibration_Stat32: 0.006901007372116045 - syst_JES_EtaIntercalibration_Stat33: 0.06100285818508835 - syst_JES_EtaIntercalibration_Stat34: 0.05873181335528471 - syst_JES_EtaIntercalibration_Stat35: 0.0022233569905662923 + syst_JES_EtaIntercalibration_Stat30: 9.46666245e-03 + syst_JES_EtaIntercalibration_Stat31: 8.35345599e-03 + syst_JES_EtaIntercalibration_Stat32: 6.90100737e-03 + syst_JES_EtaIntercalibration_Stat33: 6.10028582e-02 + syst_JES_EtaIntercalibration_Stat34: 5.87318134e-02 + syst_JES_EtaIntercalibration_Stat35: 2.22335699e-03 syst_JES_EtaIntercalibration_Stat36: 0.0 syst_JES_EtaIntercalibration_Stat37: 0.0 syst_JES_EtaIntercalibration_Stat38: 0.0 @@ -2260,220 +2260,220 @@ bins: syst_JES_EtaIntercalibration_Stat5: 0.0 syst_JES_EtaIntercalibration_Stat50: 0.0 syst_JES_EtaIntercalibration_Stat51: 0.0 - syst_JES_EtaIntercalibration_Stat52: 0.019330814969335874 - syst_JES_EtaIntercalibration_Stat53: 0.12130688634615924 - syst_JES_EtaIntercalibration_Stat54: 0.11656907083356204 - syst_JES_EtaIntercalibration_Stat55: 0.3053566889720938 - syst_JES_EtaIntercalibration_Stat56: 0.09835346514993765 - syst_JES_EtaIntercalibration_Stat57: 0.008732487952220432 + syst_JES_EtaIntercalibration_Stat52: 1.93308150e-02 + syst_JES_EtaIntercalibration_Stat53: 1.21306886e-01 + syst_JES_EtaIntercalibration_Stat54: 1.16569071e-01 + syst_JES_EtaIntercalibration_Stat55: 3.05356689e-01 + syst_JES_EtaIntercalibration_Stat56: 9.83534651e-02 + syst_JES_EtaIntercalibration_Stat57: 8.73248795e-03 syst_JES_EtaIntercalibration_Stat58: 0.0 syst_JES_EtaIntercalibration_Stat59: 0.0 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 0.001416817560591342 - syst_JES_EtaIntercalibration_Stat62: 0.001416817560591342 + syst_JES_EtaIntercalibration_Stat61: 1.41681756e-03 + syst_JES_EtaIntercalibration_Stat62: 1.41681756e-03 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 0.01128690908752259 - syst_JES_EtaIntercalibration_Stat69: 0.01128690908752259 + syst_JES_EtaIntercalibration_Stat68: 1.12869091e-02 + syst_JES_EtaIntercalibration_Stat69: 1.12869091e-02 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 0.014367361448783837 - syst_JES_EtaIntercalibration_Stat71: 0.014367361448783837 + syst_JES_EtaIntercalibration_Stat70: 1.43673614e-02 + syst_JES_EtaIntercalibration_Stat71: 1.43673614e-02 syst_JES_EtaIntercalibration_Stat72: 0.0 syst_JES_EtaIntercalibration_Stat73: 0.0 - syst_JES_EtaIntercalibration_Stat74: 0.043826642581881625 - syst_JES_EtaIntercalibration_Stat75: 1.1791159527374735 - syst_JES_EtaIntercalibration_Stat76: 1.7757043672864017 - syst_JES_EtaIntercalibration_Stat77: 2.4263785257045116 - syst_JES_EtaIntercalibration_Stat78: 1.573751806988637 - syst_JES_EtaIntercalibration_Stat79: 0.043394737872235155 + syst_JES_EtaIntercalibration_Stat74: 4.38266426e-02 + syst_JES_EtaIntercalibration_Stat75: 1.17911595e+00 + syst_JES_EtaIntercalibration_Stat76: 1.77570437e+00 + syst_JES_EtaIntercalibration_Stat77: 2.42637853e+00 + syst_JES_EtaIntercalibration_Stat78: 1.57375181e+00 + syst_JES_EtaIntercalibration_Stat79: 4.33947379e-02 syst_JES_EtaIntercalibration_Stat8: 0.0 syst_JES_EtaIntercalibration_Stat80: 0.0 syst_JES_EtaIntercalibration_Stat81: 0.0 - syst_JES_EtaIntercalibration_Stat82: 0.001416817560591342 - syst_JES_EtaIntercalibration_Stat83: 0.001416817560591342 - syst_JES_EtaIntercalibration_Stat84: 0.001416817560591342 + syst_JES_EtaIntercalibration_Stat82: 1.41681756e-03 + syst_JES_EtaIntercalibration_Stat83: 1.41681756e-03 + syst_JES_EtaIntercalibration_Stat84: 1.41681756e-03 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 0.01128690908752259 - syst_JES_EtaIntercalibration_Stat9: 0.033820073920676166 - syst_JES_EtaIntercalibration_Stat90: 0.01128690908752259 - syst_JES_EtaIntercalibration_Stat91: 0.014367361448783837 - syst_JES_EtaIntercalibration_Stat92: 0.014367361448783837 + syst_JES_EtaIntercalibration_Stat89: 1.12869091e-02 + syst_JES_EtaIntercalibration_Stat9: 3.38200739e-02 + syst_JES_EtaIntercalibration_Stat90: 1.12869091e-02 + syst_JES_EtaIntercalibration_Stat91: 1.43673614e-02 + syst_JES_EtaIntercalibration_Stat92: 1.43673614e-02 syst_JES_EtaIntercalibration_Stat93: 0.0 syst_JES_EtaIntercalibration_Stat94: 0.0 - syst_JES_EtaIntercalibration_Stat95: 0.07708415839198092 - syst_JES_EtaIntercalibration_Stat96: 2.5200092757765793 - syst_JES_EtaIntercalibration_Stat97: 3.4042643845623974 - syst_JES_EtaIntercalibration_Stat98: 3.360102788606325 - syst_JES_EtaIntercalibration_Stat99: 2.5730718995006727 - syst_JES_EtaIntercalibration_TotalStat_MJB: 1.922520936166886e-05 - syst_JES_Flavour_Comp: 3.434359328899642 - syst_JES_Gjet_Generator: 63.91402519791723 - syst_JES_Gjet_OOC: 36.04977773856588 - syst_JES_Gjet_Purity: 15.181482141082272 - syst_JES_Gjet_Stat1: 1.2626650387177115e-40 - syst_JES_Gjet_Stat10: 0.5094092176973244 - syst_JES_Gjet_Stat11: 0.5527867672077544 - syst_JES_Gjet_Stat12: 0.38467511054784925 - syst_JES_Gjet_Stat13: 0.003534622074211046 - syst_JES_Gjet_Stat14: 5.6157360944759504e-09 - syst_JES_Gjet_Stat15: 1.1270240492110185e-09 - syst_JES_Gjet_Stat2: 0.15389271425249473 - syst_JES_Gjet_Stat3: 0.34520085457599897 - syst_JES_Gjet_Stat4: 0.5372500604932493 - syst_JES_Gjet_Stat5: 0.966066088577795 - syst_JES_Gjet_Stat6: 3.155299034956909 - syst_JES_Gjet_Stat7: 5.265222003866503 - syst_JES_Gjet_Stat8: 2.3979107573052003 - syst_JES_Gjet_Stat9: 1.81223177325639 - syst_JES_Gjet_Veto: 12.794887054991927 - syst_JES_Gjet_dPhi: 6.938522519239957 - syst_JES_LArESZee: 43.11505680153976 - syst_JES_LArEsmear: 4.033403658202338 - syst_JES_LAr_JVT: 6.815516176343506 - syst_JES_MJB_Alpha: 0.0018749449991933094 - syst_JES_MJB_Asym: 0.016130677628357713 + syst_JES_EtaIntercalibration_Stat95: 7.70841584e-02 + syst_JES_EtaIntercalibration_Stat96: 2.52000928e+00 + syst_JES_EtaIntercalibration_Stat97: 3.40426438e+00 + syst_JES_EtaIntercalibration_Stat98: 3.36010279e+00 + syst_JES_EtaIntercalibration_Stat99: 2.57307190e+00 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.92252094e-05 + syst_JES_Flavour_Comp: 3.43435933e+00 + syst_JES_Gjet_Generator: 6.39140252e+01 + syst_JES_Gjet_OOC: 3.60497777e+01 + syst_JES_Gjet_Purity: 1.51814821e+01 + syst_JES_Gjet_Stat1: 1.26266504e-40 + syst_JES_Gjet_Stat10: 5.09409218e-01 + syst_JES_Gjet_Stat11: 5.52786767e-01 + syst_JES_Gjet_Stat12: 3.84675111e-01 + syst_JES_Gjet_Stat13: 3.53462207e-03 + syst_JES_Gjet_Stat14: 5.61573609e-09 + syst_JES_Gjet_Stat15: 1.12702405e-09 + syst_JES_Gjet_Stat2: 1.53892714e-01 + syst_JES_Gjet_Stat3: 3.45200855e-01 + syst_JES_Gjet_Stat4: 5.37250060e-01 + syst_JES_Gjet_Stat5: 9.66066089e-01 + syst_JES_Gjet_Stat6: 3.15529903e+00 + syst_JES_Gjet_Stat7: 5.26522200e+00 + syst_JES_Gjet_Stat8: 2.39791076e+00 + syst_JES_Gjet_Stat9: 1.81223177e+00 + syst_JES_Gjet_Veto: 1.27948871e+01 + syst_JES_Gjet_dPhi: 6.93852252e+00 + syst_JES_LArESZee: 4.31150568e+01 + syst_JES_LArEsmear: 4.03340366e+00 + syst_JES_LAr_JVT: 6.81551618e+00 + syst_JES_MJB_Alpha: 1.87494500e-03 + syst_JES_MJB_Asym: 1.61306776e-02 syst_JES_MJB_Beta: 0.0 - syst_JES_MJB_Stat1: 0.014714885550013632 - syst_JES_MJB_Stat10: 3.606995806762187e-42 + syst_JES_MJB_Stat1: 1.47148856e-02 + syst_JES_MJB_Stat10: 3.60699581e-42 syst_JES_MJB_Stat11: 0.0 syst_JES_MJB_Stat12: 0.0 syst_JES_MJB_Stat13: 0.0 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 0.0060327329627624 - syst_JES_MJB_Stat3: 1.1037545866269367e-05 - syst_JES_MJB_Stat4: 4.2088834623923715e-08 - syst_JES_MJB_Stat5: 3.125484243215143e-18 - syst_JES_MJB_Stat6: 1.3717842395945509e-19 + syst_JES_MJB_Stat2: 6.03273296e-03 + syst_JES_MJB_Stat3: 1.10375459e-05 + syst_JES_MJB_Stat4: 4.20888346e-08 + syst_JES_MJB_Stat5: 3.12548424e-18 + syst_JES_MJB_Stat6: 1.37178424e-19 syst_JES_MJB_Stat7: 0.0 syst_JES_MJB_Stat8: 0.0 syst_JES_MJB_Stat9: 0.0 - syst_JES_MJB_Threshold: 0.018339292461815423 - syst_JES_Pileup_MuOffset: 7.8626237828094e-17 - syst_JES_Pileup_NPVOffset: 3.7862963681545057 - syst_JES_Pileup_Pt_term: 9.092274962846206 - syst_JES_PunchThrough_MC15: 1.02511427045964e-30 + syst_JES_MJB_Threshold: 1.83392925e-02 + syst_JES_Pileup_MuOffset: 7.86262378e-17 + syst_JES_Pileup_NPVOffset: 3.78629637e+00 + syst_JES_Pileup_Pt_term: 9.09227496e+00 + syst_JES_PunchThrough_MC15: 1.02511427e-30 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 55.48128310295283 - syst_JES_Zjet_MuScale: 4.0619143270138025 - syst_JES_Zjet_MuSmearID: 0.4158474960848027 - syst_JES_Zjet_MuSmearMS: 2.8162330780672256 - syst_JES_Zjet_OOC: 28.783557806497793 - syst_JES_Zjet_Stat1: 0.5121504466462955 - syst_JES_Zjet_Stat10: 6.33256004708996 - syst_JES_Zjet_Stat11: 0.8479253313234604 - syst_JES_Zjet_Stat12: 1.1977002087333875 - syst_JES_Zjet_Stat13: 0.10365392708431263 + syst_JES_Zjet_MC: 5.54812831e+01 + syst_JES_Zjet_MuScale: 4.06191433e+00 + syst_JES_Zjet_MuSmearID: 4.15847496e-01 + syst_JES_Zjet_MuSmearMS: 2.81623308e+00 + syst_JES_Zjet_OOC: 2.87835578e+01 + syst_JES_Zjet_Stat1: 5.12150447e-01 + syst_JES_Zjet_Stat10: 6.33256005e+00 + syst_JES_Zjet_Stat11: 8.47925331e-01 + syst_JES_Zjet_Stat12: 1.19770021e+00 + syst_JES_Zjet_Stat13: 1.03653927e-01 syst_JES_Zjet_Stat2: 0.0 - syst_JES_Zjet_Stat3: 0.19650116411868912 - syst_JES_Zjet_Stat4: 0.24038046405646196 - syst_JES_Zjet_Stat5: 0.46423550865912877 - syst_JES_Zjet_Stat6: 1.0415021555426567 - syst_JES_Zjet_Stat7: 1.9538333475503993 - syst_JES_Zjet_Stat8: 3.579417131321802 - syst_JES_Zjet_Stat9: 6.5916727770726 - syst_JES_Zjet_Veto: 4.780625978886029 - syst_JES_Zjet_dPhi: 6.529729167431065 + syst_JES_Zjet_Stat3: 1.96501164e-01 + syst_JES_Zjet_Stat4: 2.40380464e-01 + syst_JES_Zjet_Stat5: 4.64235509e-01 + syst_JES_Zjet_Stat6: 1.04150216e+00 + syst_JES_Zjet_Stat7: 1.95383335e+00 + syst_JES_Zjet_Stat8: 3.57941713e+00 + syst_JES_Zjet_Stat9: 6.59167278e+00 + syst_JES_Zjet_Veto: 4.78062598e+00 + syst_JES_Zjet_dPhi: 6.52972917e+00 syst_PRW: 9.485 syst_Unfolding_bias: 0.9165 - syst_cleaning: 19.087199899409026 + syst_cleaning: 1.90871999e+01 syst_lumi: 62.421 - syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 2.100301585487189e-05 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 29.9870017674325 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 6.955224708807042 + syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 2.10030159e-05 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 2.99870018e+01 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 6.95522471e+00 syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 83.1699496377748 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 5.940455096202647e-06 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 5.069331612747384 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 8.31699496e+01 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 5.94045510e-06 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 5.06933161e+00 - stat: 9.163 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 16.712369670396836 - syst_JER_NP1: 2.958313539839886 - syst_JER_NP2: 4.917185653399717 - syst_JER_NP3: 3.0206738900450674 - syst_JER_NP4: 6.453490683343395 - syst_JER_NP5: 0.4700197783870377 - syst_JER_NP6: 1.6720678066394319 - syst_JER_NP7: 2.36015635075306 - syst_JER_NP8: 2.156001855286771 - syst_JES_EtaIntercalibration_Modelling: 0.13424989646178503 + syst_JER_NP0: 1.67123697e+01 + syst_JER_NP1: 2.95831354e+00 + syst_JER_NP2: 4.91718565e+00 + syst_JER_NP3: 3.02067389e+00 + syst_JER_NP4: 6.45349068e+00 + syst_JER_NP5: 4.70019778e-01 + syst_JER_NP6: 1.67206781e+00 + syst_JER_NP7: 2.36015635e+00 + syst_JER_NP8: 2.15600186e+00 + syst_JES_EtaIntercalibration_Modelling: 1.34249896e-01 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 - syst_JES_EtaIntercalibration_Stat10: 0.012351396550592973 - syst_JES_EtaIntercalibration_Stat100: 0.04094838458352173 + syst_JES_EtaIntercalibration_Stat10: 1.23513966e-02 + syst_JES_EtaIntercalibration_Stat100: 4.09483846e-02 syst_JES_EtaIntercalibration_Stat101: 0.0 syst_JES_EtaIntercalibration_Stat102: 0.0 - syst_JES_EtaIntercalibration_Stat103: 0.00021780538905178632 - syst_JES_EtaIntercalibration_Stat104: 0.00021780538905178632 - syst_JES_EtaIntercalibration_Stat105: 0.00021780538905178632 + syst_JES_EtaIntercalibration_Stat103: 2.17805389e-04 + syst_JES_EtaIntercalibration_Stat104: 2.17805389e-04 + syst_JES_EtaIntercalibration_Stat105: 2.17805389e-04 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 0.0038694015041088716 - syst_JES_EtaIntercalibration_Stat11: 0.019000597359030584 - syst_JES_EtaIntercalibration_Stat110: 0.0037612905507950324 - syst_JES_EtaIntercalibration_Stat111: 0.003716115007639026 - syst_JES_EtaIntercalibration_Stat112: 0.003716115007639026 + syst_JES_EtaIntercalibration_Stat109: 3.86940150e-03 + syst_JES_EtaIntercalibration_Stat11: 1.90005974e-02 + syst_JES_EtaIntercalibration_Stat110: 3.76129055e-03 + syst_JES_EtaIntercalibration_Stat111: 3.71611501e-03 + syst_JES_EtaIntercalibration_Stat112: 3.71611501e-03 syst_JES_EtaIntercalibration_Stat113: 0.0 - syst_JES_EtaIntercalibration_Stat114: 0.004130941176051772 - syst_JES_EtaIntercalibration_Stat115: 0.04579710362020726 - syst_JES_EtaIntercalibration_Stat116: 2.911087940959531 - syst_JES_EtaIntercalibration_Stat117: 4.01555032716563 - syst_JES_EtaIntercalibration_Stat118: 3.8378944057907587 - syst_JES_EtaIntercalibration_Stat119: 3.0116681009035506 - syst_JES_EtaIntercalibration_Stat12: 0.00682513362506552 - syst_JES_EtaIntercalibration_Stat120: 0.0630025737569506 - syst_JES_EtaIntercalibration_Stat121: 0.004330993044325978 + syst_JES_EtaIntercalibration_Stat114: 4.13094118e-03 + syst_JES_EtaIntercalibration_Stat115: 4.57971036e-02 + syst_JES_EtaIntercalibration_Stat116: 2.91108794e+00 + syst_JES_EtaIntercalibration_Stat117: 4.01555033e+00 + syst_JES_EtaIntercalibration_Stat118: 3.83789441e+00 + syst_JES_EtaIntercalibration_Stat119: 3.01166810e+00 + syst_JES_EtaIntercalibration_Stat12: 6.82513363e-03 + syst_JES_EtaIntercalibration_Stat120: 6.30025738e-02 + syst_JES_EtaIntercalibration_Stat121: 4.33099304e-03 syst_JES_EtaIntercalibration_Stat122: 0.0 - syst_JES_EtaIntercalibration_Stat123: 0.00021780538905178632 - syst_JES_EtaIntercalibration_Stat124: 0.00021780538905178632 - syst_JES_EtaIntercalibration_Stat125: 0.00021780538905178632 + syst_JES_EtaIntercalibration_Stat123: 2.17805389e-04 + syst_JES_EtaIntercalibration_Stat124: 2.17805389e-04 + syst_JES_EtaIntercalibration_Stat125: 2.17805389e-04 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 0.0038694015041088716 - syst_JES_EtaIntercalibration_Stat129: 0.0037612905507950324 + syst_JES_EtaIntercalibration_Stat128: 3.86940150e-03 + syst_JES_EtaIntercalibration_Stat129: 3.76129055e-03 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 0.00037403637189449904 + syst_JES_EtaIntercalibration_Stat130: 3.74036372e-04 syst_JES_EtaIntercalibration_Stat131: 0.0 syst_JES_EtaIntercalibration_Stat132: 0.0 - syst_JES_EtaIntercalibration_Stat133: 0.004130941176051772 - syst_JES_EtaIntercalibration_Stat134: 0.06236357109723593 - syst_JES_EtaIntercalibration_Stat135: 3.521113602257104 - syst_JES_EtaIntercalibration_Stat136: 6.335268956405876 - syst_JES_EtaIntercalibration_Stat137: 5.583245203284556 - syst_JES_EtaIntercalibration_Stat138: 3.6042101423196735 - syst_JES_EtaIntercalibration_Stat139: 0.04861291186505906 + syst_JES_EtaIntercalibration_Stat133: 4.13094118e-03 + syst_JES_EtaIntercalibration_Stat134: 6.23635711e-02 + syst_JES_EtaIntercalibration_Stat135: 3.52111360e+00 + syst_JES_EtaIntercalibration_Stat136: 6.33526896e+00 + syst_JES_EtaIntercalibration_Stat137: 5.58324520e+00 + syst_JES_EtaIntercalibration_Stat138: 3.60421014e+00 + syst_JES_EtaIntercalibration_Stat139: 4.86129119e-02 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 0.004330993044325978 + syst_JES_EtaIntercalibration_Stat140: 4.33099304e-03 syst_JES_EtaIntercalibration_Stat141: 0.0 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 0.00021780538905178632 - syst_JES_EtaIntercalibration_Stat144: 0.00021780538905178632 + syst_JES_EtaIntercalibration_Stat143: 2.17805389e-04 + syst_JES_EtaIntercalibration_Stat144: 2.17805389e-04 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 0.00037403637189449904 - syst_JES_EtaIntercalibration_Stat148: 0.00037403637189449904 + syst_JES_EtaIntercalibration_Stat147: 3.74036372e-04 + syst_JES_EtaIntercalibration_Stat148: 3.74036372e-04 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 syst_JES_EtaIntercalibration_Stat150: 0.0 syst_JES_EtaIntercalibration_Stat151: 0.0 - syst_JES_EtaIntercalibration_Stat152: 0.024153093963300024 - syst_JES_EtaIntercalibration_Stat153: 0.042234079544841506 - syst_JES_EtaIntercalibration_Stat154: 0.20194229887519852 - syst_JES_EtaIntercalibration_Stat155: 0.043148500553321666 - syst_JES_EtaIntercalibration_Stat156: 0.07707791950357767 - syst_JES_EtaIntercalibration_Stat157: 0.027923365999642666 + syst_JES_EtaIntercalibration_Stat152: 2.41530940e-02 + syst_JES_EtaIntercalibration_Stat153: 4.22340795e-02 + syst_JES_EtaIntercalibration_Stat154: 2.01942299e-01 + syst_JES_EtaIntercalibration_Stat155: 4.31485006e-02 + syst_JES_EtaIntercalibration_Stat156: 7.70779195e-02 + syst_JES_EtaIntercalibration_Stat157: 2.79233660e-02 syst_JES_EtaIntercalibration_Stat158: 0.0 syst_JES_EtaIntercalibration_Stat159: 0.0 syst_JES_EtaIntercalibration_Stat16: 0.0 @@ -2482,18 +2482,18 @@ bins: syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 0.00037403637189449904 + syst_JES_EtaIntercalibration_Stat165: 3.74036372e-04 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 0.008452402661373865 - syst_JES_EtaIntercalibration_Stat171: 0.21266976160234913 - syst_JES_EtaIntercalibration_Stat172: 0.2642038796081541 - syst_JES_EtaIntercalibration_Stat173: 0.3036668692827718 - syst_JES_EtaIntercalibration_Stat174: 0.18361966125663123 - syst_JES_EtaIntercalibration_Stat175: 0.011420761445718056 + syst_JES_EtaIntercalibration_Stat170: 8.45240266e-03 + syst_JES_EtaIntercalibration_Stat171: 2.12669762e-01 + syst_JES_EtaIntercalibration_Stat172: 2.64203880e-01 + syst_JES_EtaIntercalibration_Stat173: 3.03666869e-01 + syst_JES_EtaIntercalibration_Stat174: 1.83619661e-01 + syst_JES_EtaIntercalibration_Stat175: 1.14207614e-02 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 syst_JES_EtaIntercalibration_Stat178: 0.0 @@ -2506,14 +2506,14 @@ bins: syst_JES_EtaIntercalibration_Stat184: 0.0 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 - syst_JES_EtaIntercalibration_Stat187: 0.0010239884374347202 - syst_JES_EtaIntercalibration_Stat188: 0.050656653528929445 - syst_JES_EtaIntercalibration_Stat189: 0.06008746624713011 + syst_JES_EtaIntercalibration_Stat187: 1.02398844e-03 + syst_JES_EtaIntercalibration_Stat188: 5.06566535e-02 + syst_JES_EtaIntercalibration_Stat189: 6.00874662e-02 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 0.046158055364150685 - syst_JES_EtaIntercalibration_Stat191: 0.04231192591929609 - syst_JES_EtaIntercalibration_Stat192: 0.0010586940590652238 - syst_JES_EtaIntercalibration_Stat193: 3.871999580320225e-23 + syst_JES_EtaIntercalibration_Stat190: 4.61580554e-02 + syst_JES_EtaIntercalibration_Stat191: 4.23119259e-02 + syst_JES_EtaIntercalibration_Stat192: 1.05869406e-03 + syst_JES_EtaIntercalibration_Stat193: 3.87199958e-23 syst_JES_EtaIntercalibration_Stat194: 0.0 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 @@ -2524,13 +2524,13 @@ bins: syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 syst_JES_EtaIntercalibration_Stat201: 0.0 - syst_JES_EtaIntercalibration_Stat202: 2.3754004660425156e-05 - syst_JES_EtaIntercalibration_Stat203: 0.0013170939782338996 - syst_JES_EtaIntercalibration_Stat204: 0.013816899756005327 - syst_JES_EtaIntercalibration_Stat205: 0.0010784933136093148 - syst_JES_EtaIntercalibration_Stat206: 0.0008256775157408612 - syst_JES_EtaIntercalibration_Stat207: 2.014594988453014e-09 - syst_JES_EtaIntercalibration_Stat208: 3.871999580320225e-23 + syst_JES_EtaIntercalibration_Stat202: 2.37540047e-05 + syst_JES_EtaIntercalibration_Stat203: 1.31709398e-03 + syst_JES_EtaIntercalibration_Stat204: 1.38168998e-02 + syst_JES_EtaIntercalibration_Stat205: 1.07849331e-03 + syst_JES_EtaIntercalibration_Stat206: 8.25677516e-04 + syst_JES_EtaIntercalibration_Stat207: 2.01459499e-09 + syst_JES_EtaIntercalibration_Stat208: 3.87199958e-23 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 @@ -2538,13 +2538,13 @@ bins: syst_JES_EtaIntercalibration_Stat212: 0.0 syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 - syst_JES_EtaIntercalibration_Stat215: 1.9814661238585054e-17 - syst_JES_EtaIntercalibration_Stat216: 6.685192592588489e-08 - syst_JES_EtaIntercalibration_Stat217: 3.480172482517928e-06 - syst_JES_EtaIntercalibration_Stat218: 9.829270407817662e-08 - syst_JES_EtaIntercalibration_Stat219: 6.492592459596661e-08 + syst_JES_EtaIntercalibration_Stat215: 1.98146612e-17 + syst_JES_EtaIntercalibration_Stat216: 6.68519259e-08 + syst_JES_EtaIntercalibration_Stat217: 3.48017248e-06 + syst_JES_EtaIntercalibration_Stat218: 9.82927041e-08 + syst_JES_EtaIntercalibration_Stat219: 6.49259246e-08 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 6.777136342143339e-23 + syst_JES_EtaIntercalibration_Stat220: 6.77713634e-23 syst_JES_EtaIntercalibration_Stat221: 0.0 syst_JES_EtaIntercalibration_Stat222: 0.0 syst_JES_EtaIntercalibration_Stat223: 0.0 @@ -2552,12 +2552,12 @@ bins: syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 syst_JES_EtaIntercalibration_Stat227: 0.0 - syst_JES_EtaIntercalibration_Stat228: 1.4514528899316944e-18 - syst_JES_EtaIntercalibration_Stat229: 2.65048047531009e-18 + syst_JES_EtaIntercalibration_Stat228: 1.45145289e-18 + syst_JES_EtaIntercalibration_Stat229: 2.65048048e-18 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 3.5878706230962286e-14 - syst_JES_EtaIntercalibration_Stat231: 4.015947848266957e-14 - syst_JES_EtaIntercalibration_Stat232: 3.847750869014261e-23 + syst_JES_EtaIntercalibration_Stat230: 3.58787062e-14 + syst_JES_EtaIntercalibration_Stat231: 4.01594785e-14 + syst_JES_EtaIntercalibration_Stat232: 3.84775087e-23 syst_JES_EtaIntercalibration_Stat233: 0.0 syst_JES_EtaIntercalibration_Stat234: 0.0 syst_JES_EtaIntercalibration_Stat235: 0.0 @@ -2578,12 +2578,12 @@ bins: syst_JES_EtaIntercalibration_Stat28: 0.0 syst_JES_EtaIntercalibration_Stat29: 0.0 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 0.003961103728760457 - syst_JES_EtaIntercalibration_Stat31: 0.01588059403013628 - syst_JES_EtaIntercalibration_Stat32: 0.01416519085646219 - syst_JES_EtaIntercalibration_Stat33: 0.021502612556384866 - syst_JES_EtaIntercalibration_Stat34: 0.024383699473213657 - syst_JES_EtaIntercalibration_Stat35: 0.0037446090870843917 + syst_JES_EtaIntercalibration_Stat30: 3.96110373e-03 + syst_JES_EtaIntercalibration_Stat31: 1.58805940e-02 + syst_JES_EtaIntercalibration_Stat32: 1.41651909e-02 + syst_JES_EtaIntercalibration_Stat33: 2.15026126e-02 + syst_JES_EtaIntercalibration_Stat34: 2.43836995e-02 + syst_JES_EtaIntercalibration_Stat35: 3.74460909e-03 syst_JES_EtaIntercalibration_Stat36: 0.0 syst_JES_EtaIntercalibration_Stat37: 0.0 syst_JES_EtaIntercalibration_Stat38: 0.0 @@ -2602,220 +2602,220 @@ bins: syst_JES_EtaIntercalibration_Stat5: 0.0 syst_JES_EtaIntercalibration_Stat50: 0.0 syst_JES_EtaIntercalibration_Stat51: 0.0 - syst_JES_EtaIntercalibration_Stat52: 0.008323031839420056 - syst_JES_EtaIntercalibration_Stat53: 0.026496865036264194 - syst_JES_EtaIntercalibration_Stat54: 0.030670283255946628 - syst_JES_EtaIntercalibration_Stat55: 0.08739901186512351 - syst_JES_EtaIntercalibration_Stat56: 0.04002685332373756 - syst_JES_EtaIntercalibration_Stat57: 0.0053332071964250554 + syst_JES_EtaIntercalibration_Stat52: 8.32303184e-03 + syst_JES_EtaIntercalibration_Stat53: 2.64968650e-02 + syst_JES_EtaIntercalibration_Stat54: 3.06702833e-02 + syst_JES_EtaIntercalibration_Stat55: 8.73990119e-02 + syst_JES_EtaIntercalibration_Stat56: 4.00268533e-02 + syst_JES_EtaIntercalibration_Stat57: 5.33320720e-03 syst_JES_EtaIntercalibration_Stat58: 0.0 syst_JES_EtaIntercalibration_Stat59: 0.0 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 0.00021780538905178632 - syst_JES_EtaIntercalibration_Stat62: 0.00021780538905178632 + syst_JES_EtaIntercalibration_Stat61: 2.17805389e-04 + syst_JES_EtaIntercalibration_Stat62: 2.17805389e-04 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 0.0038694015041088716 - syst_JES_EtaIntercalibration_Stat69: 0.0038694015041088716 + syst_JES_EtaIntercalibration_Stat68: 3.86940150e-03 + syst_JES_EtaIntercalibration_Stat69: 3.86940150e-03 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 0.003716115007639026 - syst_JES_EtaIntercalibration_Stat71: 0.003716115007639026 + syst_JES_EtaIntercalibration_Stat70: 3.71611501e-03 + syst_JES_EtaIntercalibration_Stat71: 3.71611501e-03 syst_JES_EtaIntercalibration_Stat72: 0.0 syst_JES_EtaIntercalibration_Stat73: 0.0 - syst_JES_EtaIntercalibration_Stat74: 0.01303369049808994 - syst_JES_EtaIntercalibration_Stat75: 0.2818234021510634 - syst_JES_EtaIntercalibration_Stat76: 0.4544084756031736 - syst_JES_EtaIntercalibration_Stat77: 0.5045429292934348 - syst_JES_EtaIntercalibration_Stat78: 0.353055615307277 - syst_JES_EtaIntercalibration_Stat79: 0.020288541100828318 + syst_JES_EtaIntercalibration_Stat74: 1.30336905e-02 + syst_JES_EtaIntercalibration_Stat75: 2.81823402e-01 + syst_JES_EtaIntercalibration_Stat76: 4.54408476e-01 + syst_JES_EtaIntercalibration_Stat77: 5.04542929e-01 + syst_JES_EtaIntercalibration_Stat78: 3.53055615e-01 + syst_JES_EtaIntercalibration_Stat79: 2.02885411e-02 syst_JES_EtaIntercalibration_Stat8: 0.0 syst_JES_EtaIntercalibration_Stat80: 0.0 syst_JES_EtaIntercalibration_Stat81: 0.0 - syst_JES_EtaIntercalibration_Stat82: 0.00021780538905178632 - syst_JES_EtaIntercalibration_Stat83: 0.00021780538905178632 - syst_JES_EtaIntercalibration_Stat84: 0.00021780538905178632 + syst_JES_EtaIntercalibration_Stat82: 2.17805389e-04 + syst_JES_EtaIntercalibration_Stat83: 2.17805389e-04 + syst_JES_EtaIntercalibration_Stat84: 2.17805389e-04 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 0.0038694015041088716 - syst_JES_EtaIntercalibration_Stat9: 0.009451708668277922 - syst_JES_EtaIntercalibration_Stat90: 0.0038694015041088716 - syst_JES_EtaIntercalibration_Stat91: 0.003716115007639026 - syst_JES_EtaIntercalibration_Stat92: 0.003716115007639026 + syst_JES_EtaIntercalibration_Stat89: 3.86940150e-03 + syst_JES_EtaIntercalibration_Stat9: 9.45170867e-03 + syst_JES_EtaIntercalibration_Stat90: 3.86940150e-03 + syst_JES_EtaIntercalibration_Stat91: 3.71611501e-03 + syst_JES_EtaIntercalibration_Stat92: 3.71611501e-03 syst_JES_EtaIntercalibration_Stat93: 0.0 syst_JES_EtaIntercalibration_Stat94: 0.0 - syst_JES_EtaIntercalibration_Stat95: 0.023273242592084156 - syst_JES_EtaIntercalibration_Stat96: 0.7372715290176342 - syst_JES_EtaIntercalibration_Stat97: 0.9511668728461898 - syst_JES_EtaIntercalibration_Stat98: 0.9671045600140659 - syst_JES_EtaIntercalibration_Stat99: 0.7483614300590324 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0019407070876358444 - syst_JES_Flavour_Comp: 1.6668601471029296 - syst_JES_Gjet_Generator: 34.85198236829578 - syst_JES_Gjet_OOC: 19.187792994505646 - syst_JES_Gjet_Purity: 7.724559841829178 - syst_JES_Gjet_Stat1: 3.529053520421587e-29 - syst_JES_Gjet_Stat10: 0.41154541669176686 - syst_JES_Gjet_Stat11: 0.41567151393859064 - syst_JES_Gjet_Stat12: 0.4421027793398272 - syst_JES_Gjet_Stat13: 0.0017638960513590362 - syst_JES_Gjet_Stat14: 5.5585572199537535e-06 - syst_JES_Gjet_Stat15: 1.1178137356017774e-06 - syst_JES_Gjet_Stat2: 0.06530697569938453 - syst_JES_Gjet_Stat3: 0.13093564325652507 - syst_JES_Gjet_Stat4: 0.16643142822195572 - syst_JES_Gjet_Stat5: 0.30160143815970103 - syst_JES_Gjet_Stat6: 1.173179273384933 - syst_JES_Gjet_Stat7: 2.0976145379930986 - syst_JES_Gjet_Stat8: 1.192549800846908 - syst_JES_Gjet_Stat9: 1.5288479322679545 - syst_JES_Gjet_Veto: 7.574126880373737 - syst_JES_Gjet_dPhi: 3.3033189370692018 - syst_JES_LArESZee: 25.740710945892694 - syst_JES_LArEsmear: 2.337438127523379 - syst_JES_LAr_JVT: 3.7818959834982238 - syst_JES_MJB_Alpha: 0.0013665880871718441 - syst_JES_MJB_Asym: 0.04730052933107621 + syst_JES_EtaIntercalibration_Stat95: 2.32732426e-02 + syst_JES_EtaIntercalibration_Stat96: 7.37271529e-01 + syst_JES_EtaIntercalibration_Stat97: 9.51166873e-01 + syst_JES_EtaIntercalibration_Stat98: 9.67104560e-01 + syst_JES_EtaIntercalibration_Stat99: 7.48361430e-01 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.94070709e-03 + syst_JES_Flavour_Comp: 1.66686015e+00 + syst_JES_Gjet_Generator: 3.48519824e+01 + syst_JES_Gjet_OOC: 1.91877930e+01 + syst_JES_Gjet_Purity: 7.72455984e+00 + syst_JES_Gjet_Stat1: 3.52905352e-29 + syst_JES_Gjet_Stat10: 4.11545417e-01 + syst_JES_Gjet_Stat11: 4.15671514e-01 + syst_JES_Gjet_Stat12: 4.42102779e-01 + syst_JES_Gjet_Stat13: 1.76389605e-03 + syst_JES_Gjet_Stat14: 5.55855722e-06 + syst_JES_Gjet_Stat15: 1.11781374e-06 + syst_JES_Gjet_Stat2: 6.53069757e-02 + syst_JES_Gjet_Stat3: 1.30935643e-01 + syst_JES_Gjet_Stat4: 1.66431428e-01 + syst_JES_Gjet_Stat5: 3.01601438e-01 + syst_JES_Gjet_Stat6: 1.17317927e+00 + syst_JES_Gjet_Stat7: 2.09761454e+00 + syst_JES_Gjet_Stat8: 1.19254980e+00 + syst_JES_Gjet_Stat9: 1.52884793e+00 + syst_JES_Gjet_Veto: 7.57412688e+00 + syst_JES_Gjet_dPhi: 3.30331894e+00 + syst_JES_LArESZee: 2.57407109e+01 + syst_JES_LArEsmear: 2.33743813e+00 + syst_JES_LAr_JVT: 3.78189598e+00 + syst_JES_MJB_Alpha: 1.36658809e-03 + syst_JES_MJB_Asym: 4.73005293e-02 syst_JES_MJB_Beta: 0.0 - syst_JES_MJB_Stat1: 0.03552457318533187 - syst_JES_MJB_Stat10: 1.045206059827439e-30 + syst_JES_MJB_Stat1: 3.55245732e-02 + syst_JES_MJB_Stat10: 1.04520606e-30 syst_JES_MJB_Stat11: 0.0 syst_JES_MJB_Stat12: 0.0 syst_JES_MJB_Stat13: 0.0 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 0.013951669254967306 - syst_JES_MJB_Stat3: 0.00022515225248706706 - syst_JES_MJB_Stat4: 4.2487206310178974e-06 - syst_JES_MJB_Stat5: 1.26783425426649e-12 - syst_JES_MJB_Stat6: 5.5642132193150186e-14 + syst_JES_MJB_Stat2: 1.39516693e-02 + syst_JES_MJB_Stat3: 2.25152252e-04 + syst_JES_MJB_Stat4: 4.24872063e-06 + syst_JES_MJB_Stat5: 1.26783425e-12 + syst_JES_MJB_Stat6: 5.56421322e-14 syst_JES_MJB_Stat7: 0.0 syst_JES_MJB_Stat8: 0.0 syst_JES_MJB_Stat9: 0.0 - syst_JES_MJB_Threshold: 0.04798111785640263 - syst_JES_Pileup_MuOffset: 3.189811279684113e-11 - syst_JES_Pileup_NPVOffset: 1.770569399938901 - syst_JES_Pileup_Pt_term: 4.620007792201221 - syst_JES_PunchThrough_MC15: 1.5727021332725394e-21 + syst_JES_MJB_Threshold: 4.79811179e-02 + syst_JES_Pileup_MuOffset: 3.18981128e-11 + syst_JES_Pileup_NPVOffset: 1.77056940e+00 + syst_JES_Pileup_Pt_term: 4.62000779e+00 + syst_JES_PunchThrough_MC15: 1.57270213e-21 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 29.686836729432795 - syst_JES_Zjet_MuScale: 2.1725010356729406 - syst_JES_Zjet_MuSmearID: 0.23519083209172928 - syst_JES_Zjet_MuSmearMS: 1.9828526798529433 - syst_JES_Zjet_OOC: 13.383401015810593 - syst_JES_Zjet_Stat1: 0.1698950760763831 - syst_JES_Zjet_Stat10: 4.401584572628362 - syst_JES_Zjet_Stat11: 1.601991860154102 - syst_JES_Zjet_Stat12: 0.9197449265964994 - syst_JES_Zjet_Stat13: 0.10259903605785 + syst_JES_Zjet_MC: 2.96868367e+01 + syst_JES_Zjet_MuScale: 2.17250104e+00 + syst_JES_Zjet_MuSmearID: 2.35190832e-01 + syst_JES_Zjet_MuSmearMS: 1.98285268e+00 + syst_JES_Zjet_OOC: 1.33834010e+01 + syst_JES_Zjet_Stat1: 1.69895076e-01 + syst_JES_Zjet_Stat10: 4.40158457e+00 + syst_JES_Zjet_Stat11: 1.60199186e+00 + syst_JES_Zjet_Stat12: 9.19744927e-01 + syst_JES_Zjet_Stat13: 1.02599036e-01 syst_JES_Zjet_Stat2: 0.0 - syst_JES_Zjet_Stat3: 0.08616952767655166 - syst_JES_Zjet_Stat4: 0.09580931269975797 - syst_JES_Zjet_Stat5: 0.1723874342868412 - syst_JES_Zjet_Stat6: 0.30885108061977057 - syst_JES_Zjet_Stat7: 0.6889352219185777 - syst_JES_Zjet_Stat8: 1.3162069166738182 - syst_JES_Zjet_Stat9: 2.9331624571441655 - syst_JES_Zjet_Veto: 2.3338296853026788 - syst_JES_Zjet_dPhi: 2.919251744882582 + syst_JES_Zjet_Stat3: 8.61695277e-02 + syst_JES_Zjet_Stat4: 9.58093127e-02 + syst_JES_Zjet_Stat5: 1.72387434e-01 + syst_JES_Zjet_Stat6: 3.08851081e-01 + syst_JES_Zjet_Stat7: 6.88935222e-01 + syst_JES_Zjet_Stat8: 1.31620692e+00 + syst_JES_Zjet_Stat9: 2.93316246e+00 + syst_JES_Zjet_Veto: 2.33382969e+00 + syst_JES_Zjet_dPhi: 2.91925174e+00 syst_PRW: 4.631 syst_Unfolding_bias: 1.1015 - syst_cleaning: 7.946649105126009 + syst_cleaning: 7.94664911e+00 syst_lumi: 33.99 - syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0021090493118938684 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 14.85194600044048 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 3.4496172251425232 + syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 2.10904931e-03 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.48519460e+01 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 3.44961723e+00 syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 41.24766074276213 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.000636874540235359 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 2.941393037320922 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 4.12476607e+01 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 6.36874540e-04 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 2.94139304e+00 - stat: 5.946 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 8.585933670836269 - syst_JER_NP1: 1.4151247957335777 - syst_JER_NP2: 2.000898985456287 - syst_JER_NP3: 1.8461944642967598 - syst_JER_NP4: 3.172345307497278 - syst_JER_NP5: 0.1862762666042027 - syst_JER_NP6: 0.792516567650166 - syst_JER_NP7: 1.505740349462682 - syst_JER_NP8: 1.214617202043508 - syst_JES_EtaIntercalibration_Modelling: 0.1915736085686126 + syst_JER_NP0: 8.58593367e+00 + syst_JER_NP1: 1.41512480e+00 + syst_JER_NP2: 2.00089899e+00 + syst_JER_NP3: 1.84619446e+00 + syst_JER_NP4: 3.17234531e+00 + syst_JER_NP5: 1.86276267e-01 + syst_JER_NP6: 7.92516568e-01 + syst_JER_NP7: 1.50574035e+00 + syst_JER_NP8: 1.21461720e+00 + syst_JES_EtaIntercalibration_Modelling: 1.91573609e-01 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 - syst_JES_EtaIntercalibration_Stat10: 0.0031476581644136648 - syst_JES_EtaIntercalibration_Stat100: 0.01526068074333514 + syst_JES_EtaIntercalibration_Stat10: 3.14765816e-03 + syst_JES_EtaIntercalibration_Stat100: 1.52606807e-02 syst_JES_EtaIntercalibration_Stat101: 0.0 syst_JES_EtaIntercalibration_Stat102: 0.0 - syst_JES_EtaIntercalibration_Stat103: 2.1711256872875875e-05 - syst_JES_EtaIntercalibration_Stat104: 2.1711256872875875e-05 - syst_JES_EtaIntercalibration_Stat105: 2.1711256872875875e-05 + syst_JES_EtaIntercalibration_Stat103: 2.17112569e-05 + syst_JES_EtaIntercalibration_Stat104: 2.17112569e-05 + syst_JES_EtaIntercalibration_Stat105: 2.17112569e-05 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 0.000664154882162286 - syst_JES_EtaIntercalibration_Stat11: 0.0029211036869649116 - syst_JES_EtaIntercalibration_Stat110: 0.0006519561818673093 - syst_JES_EtaIntercalibration_Stat111: 0.0005670734343980504 - syst_JES_EtaIntercalibration_Stat112: 0.0005670734343980504 + syst_JES_EtaIntercalibration_Stat109: 6.64154882e-04 + syst_JES_EtaIntercalibration_Stat11: 2.92110369e-03 + syst_JES_EtaIntercalibration_Stat110: 6.51956182e-04 + syst_JES_EtaIntercalibration_Stat111: 5.67073434e-04 + syst_JES_EtaIntercalibration_Stat112: 5.67073434e-04 syst_JES_EtaIntercalibration_Stat113: 0.0 - syst_JES_EtaIntercalibration_Stat114: 0.0007578588308517622 - syst_JES_EtaIntercalibration_Stat115: 0.008487301278969657 - syst_JES_EtaIntercalibration_Stat116: 1.1559831432594507 - syst_JES_EtaIntercalibration_Stat117: 1.5660312895980077 - syst_JES_EtaIntercalibration_Stat118: 1.4305630884375562 - syst_JES_EtaIntercalibration_Stat119: 1.097250167464102 - syst_JES_EtaIntercalibration_Stat12: 0.004282277525744916 - syst_JES_EtaIntercalibration_Stat120: 0.025096740824258435 - syst_JES_EtaIntercalibration_Stat121: 0.0019095860153446871 + syst_JES_EtaIntercalibration_Stat114: 7.57858831e-04 + syst_JES_EtaIntercalibration_Stat115: 8.48730128e-03 + syst_JES_EtaIntercalibration_Stat116: 1.15598314e+00 + syst_JES_EtaIntercalibration_Stat117: 1.56603129e+00 + syst_JES_EtaIntercalibration_Stat118: 1.43056309e+00 + syst_JES_EtaIntercalibration_Stat119: 1.09725017e+00 + syst_JES_EtaIntercalibration_Stat12: 4.28227753e-03 + syst_JES_EtaIntercalibration_Stat120: 2.50967408e-02 + syst_JES_EtaIntercalibration_Stat121: 1.90958602e-03 syst_JES_EtaIntercalibration_Stat122: 0.0 - syst_JES_EtaIntercalibration_Stat123: 2.1711256872875875e-05 - syst_JES_EtaIntercalibration_Stat124: 2.1711256872875875e-05 - syst_JES_EtaIntercalibration_Stat125: 2.1711256872875875e-05 + syst_JES_EtaIntercalibration_Stat123: 2.17112569e-05 + syst_JES_EtaIntercalibration_Stat124: 2.17112569e-05 + syst_JES_EtaIntercalibration_Stat125: 2.17112569e-05 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 0.000664154882162286 - syst_JES_EtaIntercalibration_Stat129: 0.0006519561818673093 + syst_JES_EtaIntercalibration_Stat128: 6.64154882e-04 + syst_JES_EtaIntercalibration_Stat129: 6.51956182e-04 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 3.984582882812202e-05 + syst_JES_EtaIntercalibration_Stat130: 3.98458288e-05 syst_JES_EtaIntercalibration_Stat131: 0.0 syst_JES_EtaIntercalibration_Stat132: 0.0 - syst_JES_EtaIntercalibration_Stat133: 0.0007578588308517622 - syst_JES_EtaIntercalibration_Stat134: 0.054144121564579845 - syst_JES_EtaIntercalibration_Stat135: 2.4582542586152476 - syst_JES_EtaIntercalibration_Stat136: 4.190532424406236 - syst_JES_EtaIntercalibration_Stat137: 3.7477742151175546 - syst_JES_EtaIntercalibration_Stat138: 2.461683722576887 - syst_JES_EtaIntercalibration_Stat139: 0.026732339417828734 + syst_JES_EtaIntercalibration_Stat133: 7.57858831e-04 + syst_JES_EtaIntercalibration_Stat134: 5.41441216e-02 + syst_JES_EtaIntercalibration_Stat135: 2.45825426e+00 + syst_JES_EtaIntercalibration_Stat136: 4.19053242e+00 + syst_JES_EtaIntercalibration_Stat137: 3.74777422e+00 + syst_JES_EtaIntercalibration_Stat138: 2.46168372e+00 + syst_JES_EtaIntercalibration_Stat139: 2.67323394e-02 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 0.0019095860153446871 + syst_JES_EtaIntercalibration_Stat140: 1.90958602e-03 syst_JES_EtaIntercalibration_Stat141: 0.0 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 2.1711256872875875e-05 - syst_JES_EtaIntercalibration_Stat144: 2.1711256872875875e-05 + syst_JES_EtaIntercalibration_Stat143: 2.17112569e-05 + syst_JES_EtaIntercalibration_Stat144: 2.17112569e-05 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 3.984582882812202e-05 - syst_JES_EtaIntercalibration_Stat148: 3.984582882812202e-05 + syst_JES_EtaIntercalibration_Stat147: 3.98458288e-05 + syst_JES_EtaIntercalibration_Stat148: 3.98458288e-05 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 syst_JES_EtaIntercalibration_Stat150: 0.0 syst_JES_EtaIntercalibration_Stat151: 0.0 - syst_JES_EtaIntercalibration_Stat152: 0.008431122982734863 - syst_JES_EtaIntercalibration_Stat153: 0.5383510448582783 - syst_JES_EtaIntercalibration_Stat154: 0.7856080511298239 - syst_JES_EtaIntercalibration_Stat155: 0.6312309244642567 - syst_JES_EtaIntercalibration_Stat156: 0.348626648436404 - syst_JES_EtaIntercalibration_Stat157: 0.01680834911584121 + syst_JES_EtaIntercalibration_Stat152: 8.43112298e-03 + syst_JES_EtaIntercalibration_Stat153: 5.38351045e-01 + syst_JES_EtaIntercalibration_Stat154: 7.85608051e-01 + syst_JES_EtaIntercalibration_Stat155: 6.31230924e-01 + syst_JES_EtaIntercalibration_Stat156: 3.48626648e-01 + syst_JES_EtaIntercalibration_Stat157: 1.68083491e-02 syst_JES_EtaIntercalibration_Stat158: 0.0 syst_JES_EtaIntercalibration_Stat159: 0.0 syst_JES_EtaIntercalibration_Stat16: 0.0 @@ -2824,18 +2824,18 @@ bins: syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 3.984582882812202e-05 + syst_JES_EtaIntercalibration_Stat165: 3.98458288e-05 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 0.0008413455948657484 - syst_JES_EtaIntercalibration_Stat171: 0.0865088255613264 - syst_JES_EtaIntercalibration_Stat172: 0.1584279706207209 - syst_JES_EtaIntercalibration_Stat173: 0.14117388878613496 - syst_JES_EtaIntercalibration_Stat174: 0.1514777458902792 - syst_JES_EtaIntercalibration_Stat175: 0.0020608668728231815 + syst_JES_EtaIntercalibration_Stat170: 8.41345595e-04 + syst_JES_EtaIntercalibration_Stat171: 8.65088256e-02 + syst_JES_EtaIntercalibration_Stat172: 1.58427971e-01 + syst_JES_EtaIntercalibration_Stat173: 1.41173889e-01 + syst_JES_EtaIntercalibration_Stat174: 1.51477746e-01 + syst_JES_EtaIntercalibration_Stat175: 2.06086687e-03 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 syst_JES_EtaIntercalibration_Stat178: 0.0 @@ -2848,14 +2848,14 @@ bins: syst_JES_EtaIntercalibration_Stat184: 0.0 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 - syst_JES_EtaIntercalibration_Stat187: 0.0013094304105220713 - syst_JES_EtaIntercalibration_Stat188: 0.09097461994974203 - syst_JES_EtaIntercalibration_Stat189: 0.10764124163163484 + syst_JES_EtaIntercalibration_Stat187: 1.30943041e-03 + syst_JES_EtaIntercalibration_Stat188: 9.09746199e-02 + syst_JES_EtaIntercalibration_Stat189: 1.07641242e-01 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 0.10897201154424929 - syst_JES_EtaIntercalibration_Stat191: 0.07596154076241478 - syst_JES_EtaIntercalibration_Stat192: 0.003399456822420311 - syst_JES_EtaIntercalibration_Stat193: 1.8437680846570699e-16 + syst_JES_EtaIntercalibration_Stat190: 1.08972012e-01 + syst_JES_EtaIntercalibration_Stat191: 7.59615408e-02 + syst_JES_EtaIntercalibration_Stat192: 3.39945682e-03 + syst_JES_EtaIntercalibration_Stat193: 1.84376808e-16 syst_JES_EtaIntercalibration_Stat194: 0.0 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 @@ -2866,13 +2866,13 @@ bins: syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 syst_JES_EtaIntercalibration_Stat201: 0.0 - syst_JES_EtaIntercalibration_Stat202: 0.00024603629527368516 - syst_JES_EtaIntercalibration_Stat203: 0.006303181101634317 - syst_JES_EtaIntercalibration_Stat204: 0.01893136836047516 - syst_JES_EtaIntercalibration_Stat205: 0.003899892658779213 - syst_JES_EtaIntercalibration_Stat206: 0.0031255066789242347 - syst_JES_EtaIntercalibration_Stat207: 1.1467884144426993e-06 - syst_JES_EtaIntercalibration_Stat208: 1.8437680846570699e-16 + syst_JES_EtaIntercalibration_Stat202: 2.46036295e-04 + syst_JES_EtaIntercalibration_Stat203: 6.30318110e-03 + syst_JES_EtaIntercalibration_Stat204: 1.89313684e-02 + syst_JES_EtaIntercalibration_Stat205: 3.89989266e-03 + syst_JES_EtaIntercalibration_Stat206: 3.12550668e-03 + syst_JES_EtaIntercalibration_Stat207: 1.14678841e-06 + syst_JES_EtaIntercalibration_Stat208: 1.84376808e-16 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 @@ -2880,36 +2880,36 @@ bins: syst_JES_EtaIntercalibration_Stat212: 0.0 syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 - syst_JES_EtaIntercalibration_Stat215: 2.9678690579364436e-12 - syst_JES_EtaIntercalibration_Stat216: 4.669509853025262e-06 - syst_JES_EtaIntercalibration_Stat217: 4.360563381892298e-05 - syst_JES_EtaIntercalibration_Stat218: 6.810839816057928e-06 - syst_JES_EtaIntercalibration_Stat219: 4.626318828332969e-06 + syst_JES_EtaIntercalibration_Stat215: 2.96786906e-12 + syst_JES_EtaIntercalibration_Stat216: 4.66950985e-06 + syst_JES_EtaIntercalibration_Stat217: 4.36056338e-05 + syst_JES_EtaIntercalibration_Stat218: 6.81083982e-06 + syst_JES_EtaIntercalibration_Stat219: 4.62631883e-06 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 3.2273064233196075e-16 + syst_JES_EtaIntercalibration_Stat220: 3.22730642e-16 syst_JES_EtaIntercalibration_Stat221: 0.0 syst_JES_EtaIntercalibration_Stat222: 0.0 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 - syst_JES_EtaIntercalibration_Stat227: 7.311852484152016e-35 - syst_JES_EtaIntercalibration_Stat228: 2.175185200699542e-13 - syst_JES_EtaIntercalibration_Stat229: 3.971344199386399e-13 + syst_JES_EtaIntercalibration_Stat227: 7.31185248e-35 + syst_JES_EtaIntercalibration_Stat228: 2.17518520e-13 + syst_JES_EtaIntercalibration_Stat229: 3.97134420e-13 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 2.68619287604981e-10 - syst_JES_EtaIntercalibration_Stat231: 3.0075589769778414e-10 - syst_JES_EtaIntercalibration_Stat232: 1.8325097544078721e-16 + syst_JES_EtaIntercalibration_Stat230: 2.68619288e-10 + syst_JES_EtaIntercalibration_Stat231: 3.00755898e-10 + syst_JES_EtaIntercalibration_Stat232: 1.83250975e-16 syst_JES_EtaIntercalibration_Stat233: 0.0 syst_JES_EtaIntercalibration_Stat234: 0.0 syst_JES_EtaIntercalibration_Stat235: 0.0 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 - syst_JES_EtaIntercalibration_Stat239: 7.35948388136016e-36 + syst_JES_EtaIntercalibration_Stat239: 7.35948388e-36 syst_JES_EtaIntercalibration_Stat24: 0.0 - syst_JES_EtaIntercalibration_Stat240: 8.316441952541964e-36 - syst_JES_EtaIntercalibration_Stat241: 1.0978272849132508e-35 + syst_JES_EtaIntercalibration_Stat240: 8.31644195e-36 + syst_JES_EtaIntercalibration_Stat241: 1.09782728e-35 syst_JES_EtaIntercalibration_Stat242: 0.0 syst_JES_EtaIntercalibration_Stat243: 0.0 syst_JES_EtaIntercalibration_Stat244: 0.0 @@ -2920,12 +2920,12 @@ bins: syst_JES_EtaIntercalibration_Stat28: 0.0 syst_JES_EtaIntercalibration_Stat29: 0.0 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 0.0007317308786022358 - syst_JES_EtaIntercalibration_Stat31: 0.005305156830858066 - syst_JES_EtaIntercalibration_Stat32: 0.0046168077716101635 - syst_JES_EtaIntercalibration_Stat33: 0.005376783866773891 - syst_JES_EtaIntercalibration_Stat34: 0.007278292395026459 - syst_JES_EtaIntercalibration_Stat35: 0.001817485200435137 + syst_JES_EtaIntercalibration_Stat30: 7.31730879e-04 + syst_JES_EtaIntercalibration_Stat31: 5.30515683e-03 + syst_JES_EtaIntercalibration_Stat32: 4.61680777e-03 + syst_JES_EtaIntercalibration_Stat33: 5.37678387e-03 + syst_JES_EtaIntercalibration_Stat34: 7.27829240e-03 + syst_JES_EtaIntercalibration_Stat35: 1.81748520e-03 syst_JES_EtaIntercalibration_Stat36: 0.0 syst_JES_EtaIntercalibration_Stat37: 0.0 syst_JES_EtaIntercalibration_Stat38: 0.0 @@ -2944,220 +2944,220 @@ bins: syst_JES_EtaIntercalibration_Stat5: 0.0 syst_JES_EtaIntercalibration_Stat50: 0.0 syst_JES_EtaIntercalibration_Stat51: 0.0 - syst_JES_EtaIntercalibration_Stat52: 0.0010927048992294304 - syst_JES_EtaIntercalibration_Stat53: 0.008566394340677996 - syst_JES_EtaIntercalibration_Stat54: 0.008020591920176465 - syst_JES_EtaIntercalibration_Stat55: 0.018643678472876533 - syst_JES_EtaIntercalibration_Stat56: 0.0124040259895729 - syst_JES_EtaIntercalibration_Stat57: 0.0023470029292695822 + syst_JES_EtaIntercalibration_Stat52: 1.09270490e-03 + syst_JES_EtaIntercalibration_Stat53: 8.56639434e-03 + syst_JES_EtaIntercalibration_Stat54: 8.02059192e-03 + syst_JES_EtaIntercalibration_Stat55: 1.86436785e-02 + syst_JES_EtaIntercalibration_Stat56: 1.24040260e-02 + syst_JES_EtaIntercalibration_Stat57: 2.34700293e-03 syst_JES_EtaIntercalibration_Stat58: 0.0 syst_JES_EtaIntercalibration_Stat59: 0.0 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 2.1711256872875875e-05 - syst_JES_EtaIntercalibration_Stat62: 2.1711256872875875e-05 + syst_JES_EtaIntercalibration_Stat61: 2.17112569e-05 + syst_JES_EtaIntercalibration_Stat62: 2.17112569e-05 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 0.000664154882162286 - syst_JES_EtaIntercalibration_Stat69: 0.000664154882162286 + syst_JES_EtaIntercalibration_Stat68: 6.64154882e-04 + syst_JES_EtaIntercalibration_Stat69: 6.64154882e-04 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 0.0005670734343980504 - syst_JES_EtaIntercalibration_Stat71: 0.0005670734343980504 + syst_JES_EtaIntercalibration_Stat70: 5.67073434e-04 + syst_JES_EtaIntercalibration_Stat71: 5.67073434e-04 syst_JES_EtaIntercalibration_Stat72: 0.0 syst_JES_EtaIntercalibration_Stat73: 0.0 - syst_JES_EtaIntercalibration_Stat74: 0.00163884863852645 - syst_JES_EtaIntercalibration_Stat75: 0.04927024862937064 - syst_JES_EtaIntercalibration_Stat76: 0.09127602313860964 - syst_JES_EtaIntercalibration_Stat77: 0.10141593218030391 - syst_JES_EtaIntercalibration_Stat78: 0.06870240225057636 - syst_JES_EtaIntercalibration_Stat79: 0.004746060366240615 + syst_JES_EtaIntercalibration_Stat74: 1.63884864e-03 + syst_JES_EtaIntercalibration_Stat75: 4.92702486e-02 + syst_JES_EtaIntercalibration_Stat76: 9.12760231e-02 + syst_JES_EtaIntercalibration_Stat77: 1.01415932e-01 + syst_JES_EtaIntercalibration_Stat78: 6.87024023e-02 + syst_JES_EtaIntercalibration_Stat79: 4.74606037e-03 syst_JES_EtaIntercalibration_Stat8: 0.0 syst_JES_EtaIntercalibration_Stat80: 0.0 syst_JES_EtaIntercalibration_Stat81: 0.0 - syst_JES_EtaIntercalibration_Stat82: 2.1711256872875875e-05 - syst_JES_EtaIntercalibration_Stat83: 2.1711256872875875e-05 - syst_JES_EtaIntercalibration_Stat84: 2.1711256872875875e-05 + syst_JES_EtaIntercalibration_Stat82: 2.17112569e-05 + syst_JES_EtaIntercalibration_Stat83: 2.17112569e-05 + syst_JES_EtaIntercalibration_Stat84: 2.17112569e-05 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 0.000664154882162286 - syst_JES_EtaIntercalibration_Stat9: 0.0033204246577056983 - syst_JES_EtaIntercalibration_Stat90: 0.000664154882162286 - syst_JES_EtaIntercalibration_Stat91: 0.0005670734343980504 - syst_JES_EtaIntercalibration_Stat92: 0.0005670734343980504 + syst_JES_EtaIntercalibration_Stat89: 6.64154882e-04 + syst_JES_EtaIntercalibration_Stat9: 3.32042466e-03 + syst_JES_EtaIntercalibration_Stat90: 6.64154882e-04 + syst_JES_EtaIntercalibration_Stat91: 5.67073434e-04 + syst_JES_EtaIntercalibration_Stat92: 5.67073434e-04 syst_JES_EtaIntercalibration_Stat93: 0.0 syst_JES_EtaIntercalibration_Stat94: 0.0 - syst_JES_EtaIntercalibration_Stat95: 0.003189728671846557 - syst_JES_EtaIntercalibration_Stat96: 0.17363360129882696 - syst_JES_EtaIntercalibration_Stat97: 0.2233289615679077 - syst_JES_EtaIntercalibration_Stat98: 0.2411175387648107 - syst_JES_EtaIntercalibration_Stat99: 0.18185430981970155 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.02480639181743286 - syst_JES_Flavour_Comp: 0.8161804824914647 - syst_JES_Gjet_Generator: 18.09236510244031 - syst_JES_Gjet_OOC: 10.254521965942633 - syst_JES_Gjet_Purity: 3.7381993031404837 - syst_JES_Gjet_Stat1: 1.0119506843221072e-20 - syst_JES_Gjet_Stat10: 0.6822224765426598 - syst_JES_Gjet_Stat11: 0.15527442384372256 - syst_JES_Gjet_Stat12: 0.28697171824937734 - syst_JES_Gjet_Stat13: 0.018059548720829103 - syst_JES_Gjet_Stat14: 0.0003912641788804593 - syst_JES_Gjet_Stat15: 7.983957336434106e-05 - syst_JES_Gjet_Stat2: 0.0329574627664206 - syst_JES_Gjet_Stat3: 0.04592596732786366 - syst_JES_Gjet_Stat4: 0.06515289556113373 - syst_JES_Gjet_Stat5: 0.08924723637177792 - syst_JES_Gjet_Stat6: 0.4218195210039478 - syst_JES_Gjet_Stat7: 0.7929996642496137 - syst_JES_Gjet_Stat8: 0.5610294466425091 - syst_JES_Gjet_Stat9: 0.9647154023337661 - syst_JES_Gjet_Veto: 4.234452355381979 - syst_JES_Gjet_dPhi: 1.512148802201688 - syst_JES_LArESZee: 15.000802478534272 - syst_JES_LArEsmear: 1.3247416833103727 - syst_JES_LAr_JVT: 2.095501073729145 - syst_JES_MJB_Alpha: 0.00078920895046675 - syst_JES_MJB_Asym: 0.03905043757757396 + syst_JES_EtaIntercalibration_Stat95: 3.18972867e-03 + syst_JES_EtaIntercalibration_Stat96: 1.73633601e-01 + syst_JES_EtaIntercalibration_Stat97: 2.23328962e-01 + syst_JES_EtaIntercalibration_Stat98: 2.41117539e-01 + syst_JES_EtaIntercalibration_Stat99: 1.81854310e-01 + syst_JES_EtaIntercalibration_TotalStat_MJB: 2.48063918e-02 + syst_JES_Flavour_Comp: 8.16180482e-01 + syst_JES_Gjet_Generator: 1.80923651e+01 + syst_JES_Gjet_OOC: 1.02545220e+01 + syst_JES_Gjet_Purity: 3.73819930e+00 + syst_JES_Gjet_Stat1: 1.01195068e-20 + syst_JES_Gjet_Stat10: 6.82222477e-01 + syst_JES_Gjet_Stat11: 1.55274424e-01 + syst_JES_Gjet_Stat12: 2.86971718e-01 + syst_JES_Gjet_Stat13: 1.80595487e-02 + syst_JES_Gjet_Stat14: 3.91264179e-04 + syst_JES_Gjet_Stat15: 7.98395734e-05 + syst_JES_Gjet_Stat2: 3.29574628e-02 + syst_JES_Gjet_Stat3: 4.59259673e-02 + syst_JES_Gjet_Stat4: 6.51528956e-02 + syst_JES_Gjet_Stat5: 8.92472364e-02 + syst_JES_Gjet_Stat6: 4.21819521e-01 + syst_JES_Gjet_Stat7: 7.92999664e-01 + syst_JES_Gjet_Stat8: 5.61029447e-01 + syst_JES_Gjet_Stat9: 9.64715402e-01 + syst_JES_Gjet_Veto: 4.23445236e+00 + syst_JES_Gjet_dPhi: 1.51214880e+00 + syst_JES_LArESZee: 1.50008025e+01 + syst_JES_LArEsmear: 1.32474168e+00 + syst_JES_LAr_JVT: 2.09550107e+00 + syst_JES_MJB_Alpha: 7.89208950e-04 + syst_JES_MJB_Asym: 3.90504376e-02 syst_JES_MJB_Beta: 0.0 - syst_JES_MJB_Stat1: 0.00996705396544034 - syst_JES_MJB_Stat10: 2.997313922497942e-22 + syst_JES_MJB_Stat1: 9.96705397e-03 + syst_JES_MJB_Stat10: 2.99731392e-22 syst_JES_MJB_Stat11: 0.0 syst_JES_MJB_Stat12: 0.0 - syst_JES_MJB_Stat13: 1.4474988186523678e-35 - syst_JES_MJB_Stat14: 8.286997088813294e-36 + syst_JES_MJB_Stat13: 1.44749882e-35 + syst_JES_MJB_Stat14: 8.28699709e-36 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 0.002107039807404913 - syst_JES_MJB_Stat3: 0.002758699626635709 - syst_JES_MJB_Stat4: 5.4308460778952614e-05 - syst_JES_MJB_Stat5: 9.487609901304477e-09 - syst_JES_MJB_Stat6: 4.1664482176069347e-10 + syst_JES_MJB_Stat2: 2.10703981e-03 + syst_JES_MJB_Stat3: 2.75869963e-03 + syst_JES_MJB_Stat4: 5.43084608e-05 + syst_JES_MJB_Stat5: 9.48760990e-09 + syst_JES_MJB_Stat6: 4.16644822e-10 syst_JES_MJB_Stat7: 0.0 syst_JES_MJB_Stat8: 0.0 syst_JES_MJB_Stat9: 0.0 - syst_JES_MJB_Threshold: 0.019958316236596715 - syst_JES_Pileup_MuOffset: 2.388410978035397e-07 - syst_JES_Pileup_NPVOffset: 0.8633441998994376 - syst_JES_Pileup_Pt_term: 2.3379786141023615 - syst_JES_PunchThrough_MC15: 7.488521666494088e-15 + syst_JES_MJB_Threshold: 1.99583162e-02 + syst_JES_Pileup_MuOffset: 2.38841098e-07 + syst_JES_Pileup_NPVOffset: 8.63344200e-01 + syst_JES_Pileup_Pt_term: 2.33797861e+00 + syst_JES_PunchThrough_MC15: 7.48852167e-15 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 15.673042940029227 - syst_JES_Zjet_MuScale: 1.1835916979685184 - syst_JES_Zjet_MuSmearID: 0.1466533337500379 - syst_JES_Zjet_MuSmearMS: 1.1832001352264967 - syst_JES_Zjet_OOC: 6.260775091791751 - syst_JES_Zjet_Stat1: 0.06591857458258636 - syst_JES_Zjet_Stat10: 2.466010137854263 - syst_JES_Zjet_Stat11: 1.7345526080231755 - syst_JES_Zjet_Stat12: 0.4810279667545329 - syst_JES_Zjet_Stat13: 0.11852983548457324 + syst_JES_Zjet_MC: 1.56730429e+01 + syst_JES_Zjet_MuScale: 1.18359170e+00 + syst_JES_Zjet_MuSmearID: 1.46653334e-01 + syst_JES_Zjet_MuSmearMS: 1.18320014e+00 + syst_JES_Zjet_OOC: 6.26077509e+00 + syst_JES_Zjet_Stat1: 6.59185746e-02 + syst_JES_Zjet_Stat10: 2.46601014e+00 + syst_JES_Zjet_Stat11: 1.73455261e+00 + syst_JES_Zjet_Stat12: 4.81027967e-01 + syst_JES_Zjet_Stat13: 1.18529835e-01 syst_JES_Zjet_Stat2: 0.0 - syst_JES_Zjet_Stat3: 0.04375160339918984 - syst_JES_Zjet_Stat4: 0.044268219977767344 - syst_JES_Zjet_Stat5: 0.06476217472413971 - syst_JES_Zjet_Stat6: 0.09000637796845289 - syst_JES_Zjet_Stat7: 0.21992932955838337 - syst_JES_Zjet_Stat8: 0.4620277913719044 - syst_JES_Zjet_Stat9: 1.077798362403655 - syst_JES_Zjet_Veto: 1.194906100913373 - syst_JES_Zjet_dPhi: 1.320574173418517 + syst_JES_Zjet_Stat3: 4.37516034e-02 + syst_JES_Zjet_Stat4: 4.42682200e-02 + syst_JES_Zjet_Stat5: 6.47621747e-02 + syst_JES_Zjet_Stat6: 9.00063780e-02 + syst_JES_Zjet_Stat7: 2.19929330e-01 + syst_JES_Zjet_Stat8: 4.62027791e-01 + syst_JES_Zjet_Stat9: 1.07779836e+00 + syst_JES_Zjet_Veto: 1.19490610e+00 + syst_JES_Zjet_dPhi: 1.32057417e+00 syst_PRW: 1.0661 syst_Unfolding_bias: 0.5577 - syst_cleaning: 4.531910938003967 + syst_cleaning: 4.53191094e+00 syst_lumi: 18.16 - syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.026782882593178802 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 7.105614311936724 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 1.6907734176997224 + syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 2.67828826e-02 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 7.10561431e+00 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 1.69077342e+00 syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 20.21821641490663 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.008704794196303552 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.6355258328745528 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 2.02182164e+01 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 8.70479420e-03 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.63552583e+00 - stat: 2.628 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 3.922711307246558 - syst_JER_NP1: 0.6483541991072472 - syst_JER_NP2: 0.6438217202766617 - syst_JER_NP3: 0.9396585071184105 - syst_JER_NP4: 1.20628666990894 - syst_JER_NP5: 0.13219317796316118 - syst_JER_NP6: 0.39423367436077805 - syst_JER_NP7: 0.868179213929935 - syst_JER_NP8: 0.6928638610867216 - syst_JES_EtaIntercalibration_Modelling: 0.19313494634581282 + syst_JER_NP0: 3.92271131e+00 + syst_JER_NP1: 6.48354199e-01 + syst_JER_NP2: 6.43821720e-01 + syst_JER_NP3: 9.39658507e-01 + syst_JER_NP4: 1.20628667e+00 + syst_JER_NP5: 1.32193178e-01 + syst_JER_NP6: 3.94233674e-01 + syst_JER_NP7: 8.68179214e-01 + syst_JER_NP8: 6.92863861e-01 + syst_JES_EtaIntercalibration_Modelling: 1.93134946e-01 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 - syst_JES_EtaIntercalibration_Stat10: 0.00012279181436480202 - syst_JES_EtaIntercalibration_Stat100: 0.0036691148905424044 + syst_JES_EtaIntercalibration_Stat10: 1.22791814e-04 + syst_JES_EtaIntercalibration_Stat100: 3.66911489e-03 syst_JES_EtaIntercalibration_Stat101: 0.0 syst_JES_EtaIntercalibration_Stat102: 0.0 - syst_JES_EtaIntercalibration_Stat103: 1.8506962878873455e-06 - syst_JES_EtaIntercalibration_Stat104: 1.8506962878873455e-06 - syst_JES_EtaIntercalibration_Stat105: 1.8506962878873455e-06 + syst_JES_EtaIntercalibration_Stat103: 1.85069629e-06 + syst_JES_EtaIntercalibration_Stat104: 1.85069629e-06 + syst_JES_EtaIntercalibration_Stat105: 1.85069629e-06 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 7.989950375315231e-05 - syst_JES_EtaIntercalibration_Stat11: 0.0006650209075660704 - syst_JES_EtaIntercalibration_Stat110: 7.880130983682949e-05 - syst_JES_EtaIntercalibration_Stat111: 6.478736045711385e-05 - syst_JES_EtaIntercalibration_Stat112: 6.478736045711385e-05 + syst_JES_EtaIntercalibration_Stat109: 7.98995038e-05 + syst_JES_EtaIntercalibration_Stat11: 6.65020908e-04 + syst_JES_EtaIntercalibration_Stat110: 7.88013098e-05 + syst_JES_EtaIntercalibration_Stat111: 6.47873605e-05 + syst_JES_EtaIntercalibration_Stat112: 6.47873605e-05 syst_JES_EtaIntercalibration_Stat113: 0.0 - syst_JES_EtaIntercalibration_Stat114: 9.369528843543842e-05 - syst_JES_EtaIntercalibration_Stat115: 0.006102162403607429 - syst_JES_EtaIntercalibration_Stat116: 0.42521585988765753 - syst_JES_EtaIntercalibration_Stat117: 0.5189356318465711 - syst_JES_EtaIntercalibration_Stat118: 0.4762010289783087 - syst_JES_EtaIntercalibration_Stat119: 0.3468777702592082 - syst_JES_EtaIntercalibration_Stat12: 0.0005647801408512874 - syst_JES_EtaIntercalibration_Stat120: 0.010453223940488407 - syst_JES_EtaIntercalibration_Stat121: 0.0003960334171506238 + syst_JES_EtaIntercalibration_Stat114: 9.36952884e-05 + syst_JES_EtaIntercalibration_Stat115: 6.10216240e-03 + syst_JES_EtaIntercalibration_Stat116: 4.25215860e-01 + syst_JES_EtaIntercalibration_Stat117: 5.18935632e-01 + syst_JES_EtaIntercalibration_Stat118: 4.76201029e-01 + syst_JES_EtaIntercalibration_Stat119: 3.46877770e-01 + syst_JES_EtaIntercalibration_Stat12: 5.64780141e-04 + syst_JES_EtaIntercalibration_Stat120: 1.04532239e-02 + syst_JES_EtaIntercalibration_Stat121: 3.96033417e-04 syst_JES_EtaIntercalibration_Stat122: 0.0 - syst_JES_EtaIntercalibration_Stat123: 1.8506962878873455e-06 - syst_JES_EtaIntercalibration_Stat124: 1.8506962878873455e-06 - syst_JES_EtaIntercalibration_Stat125: 1.8506962878873455e-06 + syst_JES_EtaIntercalibration_Stat123: 1.85069629e-06 + syst_JES_EtaIntercalibration_Stat124: 1.85069629e-06 + syst_JES_EtaIntercalibration_Stat125: 1.85069629e-06 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 7.989950375315231e-05 - syst_JES_EtaIntercalibration_Stat129: 7.880130983682949e-05 + syst_JES_EtaIntercalibration_Stat128: 7.98995038e-05 + syst_JES_EtaIntercalibration_Stat129: 7.88013098e-05 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 3.5022067329042695e-06 + syst_JES_EtaIntercalibration_Stat130: 3.50220673e-06 syst_JES_EtaIntercalibration_Stat131: 0.0 syst_JES_EtaIntercalibration_Stat132: 0.0 - syst_JES_EtaIntercalibration_Stat133: 9.369528843543842e-05 - syst_JES_EtaIntercalibration_Stat134: 0.0336956312153371 - syst_JES_EtaIntercalibration_Stat135: 1.1690369882942115 - syst_JES_EtaIntercalibration_Stat136: 1.9990284515233894 - syst_JES_EtaIntercalibration_Stat137: 1.8364729782929015 - syst_JES_EtaIntercalibration_Stat138: 1.211186883804477 - syst_JES_EtaIntercalibration_Stat139: 0.009425874322841357 + syst_JES_EtaIntercalibration_Stat133: 9.36952884e-05 + syst_JES_EtaIntercalibration_Stat134: 3.36956312e-02 + syst_JES_EtaIntercalibration_Stat135: 1.16903699e+00 + syst_JES_EtaIntercalibration_Stat136: 1.99902845e+00 + syst_JES_EtaIntercalibration_Stat137: 1.83647298e+00 + syst_JES_EtaIntercalibration_Stat138: 1.21118688e+00 + syst_JES_EtaIntercalibration_Stat139: 9.42587432e-03 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 0.0003960334171506238 + syst_JES_EtaIntercalibration_Stat140: 3.96033417e-04 syst_JES_EtaIntercalibration_Stat141: 0.0 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 1.8506962878873455e-06 - syst_JES_EtaIntercalibration_Stat144: 1.8506962878873455e-06 + syst_JES_EtaIntercalibration_Stat143: 1.85069629e-06 + syst_JES_EtaIntercalibration_Stat144: 1.85069629e-06 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 3.5022067329042695e-06 - syst_JES_EtaIntercalibration_Stat148: 3.5022067329042695e-06 + syst_JES_EtaIntercalibration_Stat147: 3.50220673e-06 + syst_JES_EtaIntercalibration_Stat148: 3.50220673e-06 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 syst_JES_EtaIntercalibration_Stat150: 0.0 syst_JES_EtaIntercalibration_Stat151: 0.0 - syst_JES_EtaIntercalibration_Stat152: 0.0016017203150050887 - syst_JES_EtaIntercalibration_Stat153: 0.49460891621562986 - syst_JES_EtaIntercalibration_Stat154: 0.7552575785783284 - syst_JES_EtaIntercalibration_Stat155: 0.6573376358462978 - syst_JES_EtaIntercalibration_Stat156: 0.38412189146155157 - syst_JES_EtaIntercalibration_Stat157: 0.013992056201645274 + syst_JES_EtaIntercalibration_Stat152: 1.60172032e-03 + syst_JES_EtaIntercalibration_Stat153: 4.94608916e-01 + syst_JES_EtaIntercalibration_Stat154: 7.55257579e-01 + syst_JES_EtaIntercalibration_Stat155: 6.57337636e-01 + syst_JES_EtaIntercalibration_Stat156: 3.84121891e-01 + syst_JES_EtaIntercalibration_Stat157: 1.39920562e-02 syst_JES_EtaIntercalibration_Stat158: 0.0 syst_JES_EtaIntercalibration_Stat159: 0.0 syst_JES_EtaIntercalibration_Stat16: 0.0 @@ -3166,18 +3166,18 @@ bins: syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 3.5022067329042695e-06 + syst_JES_EtaIntercalibration_Stat165: 3.50220673e-06 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 0.004559678798994509 - syst_JES_EtaIntercalibration_Stat171: 0.06000994480084114 - syst_JES_EtaIntercalibration_Stat172: 0.10909209538275448 - syst_JES_EtaIntercalibration_Stat173: 0.1054370674857756 - syst_JES_EtaIntercalibration_Stat174: 0.04442140262024602 - syst_JES_EtaIntercalibration_Stat175: 0.0088360790371069 + syst_JES_EtaIntercalibration_Stat170: 4.55967880e-03 + syst_JES_EtaIntercalibration_Stat171: 6.00099448e-02 + syst_JES_EtaIntercalibration_Stat172: 1.09092095e-01 + syst_JES_EtaIntercalibration_Stat173: 1.05437067e-01 + syst_JES_EtaIntercalibration_Stat174: 4.44214026e-02 + syst_JES_EtaIntercalibration_Stat175: 8.83607904e-03 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 syst_JES_EtaIntercalibration_Stat178: 0.0 @@ -3190,14 +3190,14 @@ bins: syst_JES_EtaIntercalibration_Stat184: 0.0 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 - syst_JES_EtaIntercalibration_Stat187: 0.0009910794720909117 - syst_JES_EtaIntercalibration_Stat188: 0.09584621588774384 - syst_JES_EtaIntercalibration_Stat189: 0.13782455759043816 + syst_JES_EtaIntercalibration_Stat187: 9.91079472e-04 + syst_JES_EtaIntercalibration_Stat188: 9.58462159e-02 + syst_JES_EtaIntercalibration_Stat189: 1.37824558e-01 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 0.16004036990709564 - syst_JES_EtaIntercalibration_Stat191: 0.0977782096123671 - syst_JES_EtaIntercalibration_Stat192: 0.003934705325688317 - syst_JES_EtaIntercalibration_Stat193: 6.168698951156556e-12 + syst_JES_EtaIntercalibration_Stat190: 1.60040370e-01 + syst_JES_EtaIntercalibration_Stat191: 9.77782096e-02 + syst_JES_EtaIntercalibration_Stat192: 3.93470533e-03 + syst_JES_EtaIntercalibration_Stat193: 6.16869895e-12 syst_JES_EtaIntercalibration_Stat194: 0.0 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 @@ -3208,13 +3208,13 @@ bins: syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 syst_JES_EtaIntercalibration_Stat201: 0.0 - syst_JES_EtaIntercalibration_Stat202: 0.0004280240968683889 - syst_JES_EtaIntercalibration_Stat203: 0.013603187126552367 - syst_JES_EtaIntercalibration_Stat204: 0.021542369878915366 - syst_JES_EtaIntercalibration_Stat205: 0.01756415099001372 - syst_JES_EtaIntercalibration_Stat206: 0.013404189895327505 - syst_JES_EtaIntercalibration_Stat207: 4.495238008159301e-05 - syst_JES_EtaIntercalibration_Stat208: 6.168698951156556e-12 + syst_JES_EtaIntercalibration_Stat202: 4.28024097e-04 + syst_JES_EtaIntercalibration_Stat203: 1.36031871e-02 + syst_JES_EtaIntercalibration_Stat204: 2.15423699e-02 + syst_JES_EtaIntercalibration_Stat205: 1.75641510e-02 + syst_JES_EtaIntercalibration_Stat206: 1.34041899e-02 + syst_JES_EtaIntercalibration_Stat207: 4.49523801e-05 + syst_JES_EtaIntercalibration_Stat208: 6.16869895e-12 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 @@ -3222,37 +3222,37 @@ bins: syst_JES_EtaIntercalibration_Stat212: 0.0 syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 - syst_JES_EtaIntercalibration_Stat215: 7.486789012962986e-09 - syst_JES_EtaIntercalibration_Stat216: 8.738888716535988e-05 - syst_JES_EtaIntercalibration_Stat217: 0.00013178829860044478 - syst_JES_EtaIntercalibration_Stat218: 6.371723000884454e-05 - syst_JES_EtaIntercalibration_Stat219: 4.035900997689612e-05 + syst_JES_EtaIntercalibration_Stat215: 7.48678901e-09 + syst_JES_EtaIntercalibration_Stat216: 8.73888872e-05 + syst_JES_EtaIntercalibration_Stat217: 1.31788299e-04 + syst_JES_EtaIntercalibration_Stat218: 6.37172300e-05 + syst_JES_EtaIntercalibration_Stat219: 4.03590100e-05 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 1.0803646085928584e-11 + syst_JES_EtaIntercalibration_Stat220: 1.08036461e-11 syst_JES_EtaIntercalibration_Stat221: 0.0 syst_JES_EtaIntercalibration_Stat222: 0.0 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 - syst_JES_EtaIntercalibration_Stat227: 1.3813105190361785e-25 - syst_JES_EtaIntercalibration_Stat228: 5.522307915416795e-10 - syst_JES_EtaIntercalibration_Stat229: 1.0087899025565234e-09 + syst_JES_EtaIntercalibration_Stat227: 1.38131052e-25 + syst_JES_EtaIntercalibration_Stat228: 5.52230792e-10 + syst_JES_EtaIntercalibration_Stat229: 1.00878990e-09 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 7.327915644852566e-08 - syst_JES_EtaIntercalibration_Stat231: 8.234064655442049e-08 - syst_JES_EtaIntercalibration_Stat232: 6.129727807986257e-12 + syst_JES_EtaIntercalibration_Stat230: 7.32791564e-08 + syst_JES_EtaIntercalibration_Stat231: 8.23406466e-08 + syst_JES_EtaIntercalibration_Stat232: 6.12972781e-12 syst_JES_EtaIntercalibration_Stat233: 0.0 syst_JES_EtaIntercalibration_Stat234: 0.0 syst_JES_EtaIntercalibration_Stat235: 0.0 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 - syst_JES_EtaIntercalibration_Stat239: 1.3908367168982347e-26 + syst_JES_EtaIntercalibration_Stat239: 1.39083672e-26 syst_JES_EtaIntercalibration_Stat24: 0.0 - syst_JES_EtaIntercalibration_Stat240: 1.571835989656324e-26 - syst_JES_EtaIntercalibration_Stat241: 2.0742147309283096e-26 - syst_JES_EtaIntercalibration_Stat242: 2.5322583521705377e-33 + syst_JES_EtaIntercalibration_Stat240: 1.57183599e-26 + syst_JES_EtaIntercalibration_Stat241: 2.07421473e-26 + syst_JES_EtaIntercalibration_Stat242: 2.53225835e-33 syst_JES_EtaIntercalibration_Stat243: 0.0 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 @@ -3262,12 +3262,12 @@ bins: syst_JES_EtaIntercalibration_Stat28: 0.0 syst_JES_EtaIntercalibration_Stat29: 0.0 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 9.073938289408849e-05 - syst_JES_EtaIntercalibration_Stat31: 0.0035696807630375017 - syst_JES_EtaIntercalibration_Stat32: 0.0004510721497720736 - syst_JES_EtaIntercalibration_Stat33: 0.004599110369136623 - syst_JES_EtaIntercalibration_Stat34: 0.005416521672907347 - syst_JES_EtaIntercalibration_Stat35: 0.00038446850441730085 + syst_JES_EtaIntercalibration_Stat30: 9.07393829e-05 + syst_JES_EtaIntercalibration_Stat31: 3.56968076e-03 + syst_JES_EtaIntercalibration_Stat32: 4.51072150e-04 + syst_JES_EtaIntercalibration_Stat33: 4.59911037e-03 + syst_JES_EtaIntercalibration_Stat34: 5.41652167e-03 + syst_JES_EtaIntercalibration_Stat35: 3.84468504e-04 syst_JES_EtaIntercalibration_Stat36: 0.0 syst_JES_EtaIntercalibration_Stat37: 0.0 syst_JES_EtaIntercalibration_Stat38: 0.0 @@ -3286,220 +3286,220 @@ bins: syst_JES_EtaIntercalibration_Stat5: 0.0 syst_JES_EtaIntercalibration_Stat50: 0.0 syst_JES_EtaIntercalibration_Stat51: 0.0 - syst_JES_EtaIntercalibration_Stat52: 1.1111005388802581e-05 - syst_JES_EtaIntercalibration_Stat53: 0.0022431644879500035 - syst_JES_EtaIntercalibration_Stat54: 0.0010137151400664785 - syst_JES_EtaIntercalibration_Stat55: 0.005312738182895897 - syst_JES_EtaIntercalibration_Stat56: 0.006385955057781099 - syst_JES_EtaIntercalibration_Stat57: 0.0006286990615548906 + syst_JES_EtaIntercalibration_Stat52: 1.11110054e-05 + syst_JES_EtaIntercalibration_Stat53: 2.24316449e-03 + syst_JES_EtaIntercalibration_Stat54: 1.01371514e-03 + syst_JES_EtaIntercalibration_Stat55: 5.31273818e-03 + syst_JES_EtaIntercalibration_Stat56: 6.38595506e-03 + syst_JES_EtaIntercalibration_Stat57: 6.28699062e-04 syst_JES_EtaIntercalibration_Stat58: 0.0 syst_JES_EtaIntercalibration_Stat59: 0.0 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 1.8506962878873455e-06 - syst_JES_EtaIntercalibration_Stat62: 1.8506962878873455e-06 + syst_JES_EtaIntercalibration_Stat61: 1.85069629e-06 + syst_JES_EtaIntercalibration_Stat62: 1.85069629e-06 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 7.989950375315231e-05 - syst_JES_EtaIntercalibration_Stat69: 7.989950375315231e-05 + syst_JES_EtaIntercalibration_Stat68: 7.98995038e-05 + syst_JES_EtaIntercalibration_Stat69: 7.98995038e-05 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 6.478736045711385e-05 - syst_JES_EtaIntercalibration_Stat71: 6.478736045711385e-05 + syst_JES_EtaIntercalibration_Stat70: 6.47873605e-05 + syst_JES_EtaIntercalibration_Stat71: 6.47873605e-05 syst_JES_EtaIntercalibration_Stat72: 0.0 syst_JES_EtaIntercalibration_Stat73: 0.0 - syst_JES_EtaIntercalibration_Stat74: 0.0015218078820928745 - syst_JES_EtaIntercalibration_Stat75: 0.004961725780411489 - syst_JES_EtaIntercalibration_Stat76: 0.016930495415078673 - syst_JES_EtaIntercalibration_Stat77: 0.037952277823603685 - syst_JES_EtaIntercalibration_Stat78: 0.021719007228692567 - syst_JES_EtaIntercalibration_Stat79: 0.0004804597459725424 + syst_JES_EtaIntercalibration_Stat74: 1.52180788e-03 + syst_JES_EtaIntercalibration_Stat75: 4.96172578e-03 + syst_JES_EtaIntercalibration_Stat76: 1.69304954e-02 + syst_JES_EtaIntercalibration_Stat77: 3.79522778e-02 + syst_JES_EtaIntercalibration_Stat78: 2.17190072e-02 + syst_JES_EtaIntercalibration_Stat79: 4.80459746e-04 syst_JES_EtaIntercalibration_Stat8: 0.0 syst_JES_EtaIntercalibration_Stat80: 0.0 syst_JES_EtaIntercalibration_Stat81: 0.0 - syst_JES_EtaIntercalibration_Stat82: 1.8506962878873455e-06 - syst_JES_EtaIntercalibration_Stat83: 1.8506962878873455e-06 - syst_JES_EtaIntercalibration_Stat84: 1.8506962878873455e-06 + syst_JES_EtaIntercalibration_Stat82: 1.85069629e-06 + syst_JES_EtaIntercalibration_Stat83: 1.85069629e-06 + syst_JES_EtaIntercalibration_Stat84: 1.85069629e-06 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 7.989950375315231e-05 - syst_JES_EtaIntercalibration_Stat9: 0.0021986821325512243 - syst_JES_EtaIntercalibration_Stat90: 7.989950375315231e-05 - syst_JES_EtaIntercalibration_Stat91: 6.478736045711385e-05 - syst_JES_EtaIntercalibration_Stat92: 6.478736045711385e-05 + syst_JES_EtaIntercalibration_Stat89: 7.98995038e-05 + syst_JES_EtaIntercalibration_Stat9: 2.19868213e-03 + syst_JES_EtaIntercalibration_Stat90: 7.98995038e-05 + syst_JES_EtaIntercalibration_Stat91: 6.47873605e-05 + syst_JES_EtaIntercalibration_Stat92: 6.47873605e-05 syst_JES_EtaIntercalibration_Stat93: 0.0 syst_JES_EtaIntercalibration_Stat94: 0.0 - syst_JES_EtaIntercalibration_Stat95: 0.0016016284486421936 - syst_JES_EtaIntercalibration_Stat96: 0.039943115489405684 - syst_JES_EtaIntercalibration_Stat97: 0.05618171232705532 - syst_JES_EtaIntercalibration_Stat98: 0.0610614141663948 - syst_JES_EtaIntercalibration_Stat99: 0.04693698195453134 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.07184886429165042 - syst_JES_Flavour_Comp: 0.40523251930219023 - syst_JES_Gjet_Generator: 9.516088377059138 - syst_JES_Gjet_OOC: 5.591542966838402 - syst_JES_Gjet_Purity: 1.8188504611429714 - syst_JES_Gjet_Stat1: 7.322244788820559e-15 - syst_JES_Gjet_Stat10: 0.5691633750514874 - syst_JES_Gjet_Stat11: 0.1531457501858932 - syst_JES_Gjet_Stat12: 0.13216851695846482 - syst_JES_Gjet_Stat13: 0.05652157353612866 - syst_JES_Gjet_Stat14: 0.003490697020295517 - syst_JES_Gjet_Stat15: 0.0007486346371895974 - syst_JES_Gjet_Stat2: 0.018169212971397522 - syst_JES_Gjet_Stat3: 0.018820762471270923 - syst_JES_Gjet_Stat4: 0.03422780558259615 - syst_JES_Gjet_Stat5: 0.0530172066408633 - syst_JES_Gjet_Stat6: 0.15732630898867486 - syst_JES_Gjet_Stat7: 0.30880858148697876 - syst_JES_Gjet_Stat8: 0.2519244529615972 - syst_JES_Gjet_Stat9: 0.48584053711068614 - syst_JES_Gjet_Veto: 2.297384817569751 - syst_JES_Gjet_dPhi: 0.7177168853385016 - syst_JES_LArESZee: 8.889712860942135 - syst_JES_LArEsmear: 0.7264084525939933 - syst_JES_LAr_JVT: 1.1215753741947083 - syst_JES_MJB_Alpha: 0.00045691493577540307 - syst_JES_MJB_Asym: 0.031603977597764496 - syst_JES_MJB_Beta: 1.7011181616807222e-39 - syst_JES_MJB_Stat1: 0.017039853520497177 - syst_JES_MJB_Stat10: 2.1685276110762343e-16 - syst_JES_MJB_Stat11: 8.685368774554136e-40 - syst_JES_MJB_Stat12: 7.539617165347323e-40 - syst_JES_MJB_Stat13: 2.735024314334335e-26 - syst_JES_MJB_Stat14: 1.5657738606159075e-26 + syst_JES_EtaIntercalibration_Stat95: 1.60162845e-03 + syst_JES_EtaIntercalibration_Stat96: 3.99431155e-02 + syst_JES_EtaIntercalibration_Stat97: 5.61817123e-02 + syst_JES_EtaIntercalibration_Stat98: 6.10614142e-02 + syst_JES_EtaIntercalibration_Stat99: 4.69369820e-02 + syst_JES_EtaIntercalibration_TotalStat_MJB: 7.18488643e-02 + syst_JES_Flavour_Comp: 4.05232519e-01 + syst_JES_Gjet_Generator: 9.51608838e+00 + syst_JES_Gjet_OOC: 5.59154297e+00 + syst_JES_Gjet_Purity: 1.81885046e+00 + syst_JES_Gjet_Stat1: 7.32224479e-15 + syst_JES_Gjet_Stat10: 5.69163375e-01 + syst_JES_Gjet_Stat11: 1.53145750e-01 + syst_JES_Gjet_Stat12: 1.32168517e-01 + syst_JES_Gjet_Stat13: 5.65215735e-02 + syst_JES_Gjet_Stat14: 3.49069702e-03 + syst_JES_Gjet_Stat15: 7.48634637e-04 + syst_JES_Gjet_Stat2: 1.81692130e-02 + syst_JES_Gjet_Stat3: 1.88207625e-02 + syst_JES_Gjet_Stat4: 3.42278056e-02 + syst_JES_Gjet_Stat5: 5.30172066e-02 + syst_JES_Gjet_Stat6: 1.57326309e-01 + syst_JES_Gjet_Stat7: 3.08808581e-01 + syst_JES_Gjet_Stat8: 2.51924453e-01 + syst_JES_Gjet_Stat9: 4.85840537e-01 + syst_JES_Gjet_Veto: 2.29738482e+00 + syst_JES_Gjet_dPhi: 7.17716885e-01 + syst_JES_LArESZee: 8.88971286e+00 + syst_JES_LArEsmear: 7.26408453e-01 + syst_JES_LAr_JVT: 1.12157537e+00 + syst_JES_MJB_Alpha: 4.56914936e-04 + syst_JES_MJB_Asym: 3.16039776e-02 + syst_JES_MJB_Beta: 1.70111816e-39 + syst_JES_MJB_Stat1: 1.70398535e-02 + syst_JES_MJB_Stat10: 2.16852761e-16 + syst_JES_MJB_Stat11: 8.68536877e-40 + syst_JES_MJB_Stat12: 7.53961717e-40 + syst_JES_MJB_Stat13: 2.73502431e-26 + syst_JES_MJB_Stat14: 1.56577386e-26 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 0.017718879673528035 - syst_JES_MJB_Stat3: 0.010293070229528214 - syst_JES_MJB_Stat4: 0.00015763612447409637 - syst_JES_MJB_Stat5: 2.5880297036935263e-06 - syst_JES_MJB_Stat6: 1.1406420593244842e-07 + syst_JES_MJB_Stat2: 1.77188797e-02 + syst_JES_MJB_Stat3: 1.02930702e-02 + syst_JES_MJB_Stat4: 1.57636124e-04 + syst_JES_MJB_Stat5: 2.58802970e-06 + syst_JES_MJB_Stat6: 1.14064206e-07 syst_JES_MJB_Stat7: 0.0 syst_JES_MJB_Stat8: 0.0 syst_JES_MJB_Stat9: 0.0 - syst_JES_MJB_Threshold: 0.03305992589223393 - syst_JES_Pileup_MuOffset: 6.538293412657464e-05 - syst_JES_Pileup_NPVOffset: 0.36633496966574186 - syst_JES_Pileup_Pt_term: 1.234533766245379 - syst_JES_PunchThrough_MC15: 2.507143535823971e-10 + syst_JES_MJB_Threshold: 3.30599259e-02 + syst_JES_Pileup_MuOffset: 6.53829341e-05 + syst_JES_Pileup_NPVOffset: 3.66334970e-01 + syst_JES_Pileup_Pt_term: 1.23453377e+00 + syst_JES_PunchThrough_MC15: 2.50714354e-10 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 8.478383218515189 - syst_JES_Zjet_MuScale: 0.6145451387001608 - syst_JES_Zjet_MuSmearID: 0.08710289475671862 - syst_JES_Zjet_MuSmearMS: 0.6710099924740316 - syst_JES_Zjet_OOC: 3.091108336826777 - syst_JES_Zjet_Stat1: 0.03355124289799113 - syst_JES_Zjet_Stat10: 1.1706183067080405 - syst_JES_Zjet_Stat11: 1.3192798139515363 - syst_JES_Zjet_Stat12: 0.28252249202629864 - syst_JES_Zjet_Stat13: 0.1207931173535976 + syst_JES_Zjet_MC: 8.47838322e+00 + syst_JES_Zjet_MuScale: 6.14545139e-01 + syst_JES_Zjet_MuSmearID: 8.71028948e-02 + syst_JES_Zjet_MuSmearMS: 6.71009992e-01 + syst_JES_Zjet_OOC: 3.09110834e+00 + syst_JES_Zjet_Stat1: 3.35512429e-02 + syst_JES_Zjet_Stat10: 1.17061831e+00 + syst_JES_Zjet_Stat11: 1.31927981e+00 + syst_JES_Zjet_Stat12: 2.82522492e-01 + syst_JES_Zjet_Stat13: 1.20793117e-01 syst_JES_Zjet_Stat2: 0.0 - syst_JES_Zjet_Stat3: 0.023910961398480753 - syst_JES_Zjet_Stat4: 0.023695659412643493 - syst_JES_Zjet_Stat5: 0.028944315504084737 - syst_JES_Zjet_Stat6: 0.03945184659809982 - syst_JES_Zjet_Stat7: 0.07881776512944273 - syst_JES_Zjet_Stat8: 0.16837484966585717 - syst_JES_Zjet_Stat9: 0.37867773568035396 - syst_JES_Zjet_Veto: 0.6049046598431855 - syst_JES_Zjet_dPhi: 0.606419063024902 + syst_JES_Zjet_Stat3: 2.39109614e-02 + syst_JES_Zjet_Stat4: 2.36956594e-02 + syst_JES_Zjet_Stat5: 2.89443155e-02 + syst_JES_Zjet_Stat6: 3.94518466e-02 + syst_JES_Zjet_Stat7: 7.88177651e-02 + syst_JES_Zjet_Stat8: 1.68374850e-01 + syst_JES_Zjet_Stat9: 3.78677736e-01 + syst_JES_Zjet_Veto: 6.04904660e-01 + syst_JES_Zjet_dPhi: 6.06419063e-01 syst_PRW: 0.007999 syst_Unfolding_bias: 0.1447 - syst_cleaning: 2.513205721782441 + syst_cleaning: 2.51320572e+00 syst_lumi: 10.114 - syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.07696106093343569 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 3.478209596904706 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 0.854050237105523 + syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 7.69610609e-02 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 3.47820960e+00 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 8.54050237e-01 syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 10.213002447860278 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.02693195267707115 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.9139043864103072 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 1.02130024e+01 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 2.69319527e-02 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 9.13904386e-01 - stat: 1.6409 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 1.6581347200996666 - syst_JER_NP1: 0.2709982287764996 - syst_JER_NP2: 0.18846550745428192 - syst_JER_NP3: 0.44863535156628037 - syst_JER_NP4: 0.3981708159822867 - syst_JER_NP5: 0.07927210543438341 - syst_JER_NP6: 0.18907788739035564 - syst_JER_NP7: 0.45457122288481927 - syst_JER_NP8: 0.3548073453298282 - syst_JES_EtaIntercalibration_Modelling: 0.15286287973213117 + syst_JER_NP0: 1.65813472e+00 + syst_JER_NP1: 2.70998229e-01 + syst_JER_NP2: 1.88465507e-01 + syst_JER_NP3: 4.48635352e-01 + syst_JER_NP4: 3.98170816e-01 + syst_JER_NP5: 7.92721054e-02 + syst_JER_NP6: 1.89077887e-01 + syst_JER_NP7: 4.54571223e-01 + syst_JER_NP8: 3.54807345e-01 + syst_JES_EtaIntercalibration_Modelling: 1.52862880e-01 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 - syst_JES_EtaIntercalibration_Stat10: 0.00012161295634923114 - syst_JES_EtaIntercalibration_Stat100: 0.0010996826496767146 + syst_JES_EtaIntercalibration_Stat10: 1.21612956e-04 + syst_JES_EtaIntercalibration_Stat100: 1.09968265e-03 syst_JES_EtaIntercalibration_Stat101: 0.0 syst_JES_EtaIntercalibration_Stat102: 0.0 - syst_JES_EtaIntercalibration_Stat103: 1.4895636945092346e-07 - syst_JES_EtaIntercalibration_Stat104: 1.4895636945092346e-07 - syst_JES_EtaIntercalibration_Stat105: 1.4895636945092346e-07 + syst_JES_EtaIntercalibration_Stat103: 1.48956369e-07 + syst_JES_EtaIntercalibration_Stat104: 1.48956369e-07 + syst_JES_EtaIntercalibration_Stat105: 1.48956369e-07 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 7.947515130529794e-06 - syst_JES_EtaIntercalibration_Stat11: 0.0012323541495852562 - syst_JES_EtaIntercalibration_Stat110: 7.85682175437371e-06 - syst_JES_EtaIntercalibration_Stat111: 6.285612380667456e-06 - syst_JES_EtaIntercalibration_Stat112: 6.285612380667456e-06 + syst_JES_EtaIntercalibration_Stat109: 7.94751513e-06 + syst_JES_EtaIntercalibration_Stat11: 1.23235415e-03 + syst_JES_EtaIntercalibration_Stat110: 7.85682175e-06 + syst_JES_EtaIntercalibration_Stat111: 6.28561238e-06 + syst_JES_EtaIntercalibration_Stat112: 6.28561238e-06 syst_JES_EtaIntercalibration_Stat113: 0.0 - syst_JES_EtaIntercalibration_Stat114: 9.437944850442812e-06 - syst_JES_EtaIntercalibration_Stat115: 0.0033358845404929706 - syst_JES_EtaIntercalibration_Stat116: 0.15105672676183604 - syst_JES_EtaIntercalibration_Stat117: 0.14314601592430018 - syst_JES_EtaIntercalibration_Stat118: 0.13921801131678332 - syst_JES_EtaIntercalibration_Stat119: 0.10348156393773725 - syst_JES_EtaIntercalibration_Stat12: 0.001100570417011106 - syst_JES_EtaIntercalibration_Stat120: 0.003917570261016386 - syst_JES_EtaIntercalibration_Stat121: 5.5434286096241924e-05 + syst_JES_EtaIntercalibration_Stat114: 9.43794485e-06 + syst_JES_EtaIntercalibration_Stat115: 3.33588454e-03 + syst_JES_EtaIntercalibration_Stat116: 1.51056727e-01 + syst_JES_EtaIntercalibration_Stat117: 1.43146016e-01 + syst_JES_EtaIntercalibration_Stat118: 1.39218011e-01 + syst_JES_EtaIntercalibration_Stat119: 1.03481564e-01 + syst_JES_EtaIntercalibration_Stat12: 1.10057042e-03 + syst_JES_EtaIntercalibration_Stat120: 3.91757026e-03 + syst_JES_EtaIntercalibration_Stat121: 5.54342861e-05 syst_JES_EtaIntercalibration_Stat122: 0.0 - syst_JES_EtaIntercalibration_Stat123: 1.4895636945092346e-07 - syst_JES_EtaIntercalibration_Stat124: 1.4895636945092346e-07 - syst_JES_EtaIntercalibration_Stat125: 1.4895636945092346e-07 + syst_JES_EtaIntercalibration_Stat123: 1.48956369e-07 + syst_JES_EtaIntercalibration_Stat124: 1.48956369e-07 + syst_JES_EtaIntercalibration_Stat125: 1.48956369e-07 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 7.947515130529794e-06 - syst_JES_EtaIntercalibration_Stat129: 7.85682175437371e-06 + syst_JES_EtaIntercalibration_Stat128: 7.94751513e-06 + syst_JES_EtaIntercalibration_Stat129: 7.85682175e-06 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 2.8596158832962164e-07 + syst_JES_EtaIntercalibration_Stat130: 2.85961588e-07 syst_JES_EtaIntercalibration_Stat131: 0.0 syst_JES_EtaIntercalibration_Stat132: 0.0 - syst_JES_EtaIntercalibration_Stat133: 9.437944850442812e-06 - syst_JES_EtaIntercalibration_Stat134: 0.015218551935056107 - syst_JES_EtaIntercalibration_Stat135: 0.45205080190173313 - syst_JES_EtaIntercalibration_Stat136: 0.7811030853863016 - syst_JES_EtaIntercalibration_Stat137: 0.7429526700941318 - syst_JES_EtaIntercalibration_Stat138: 0.49948837824317793 - syst_JES_EtaIntercalibration_Stat139: 0.002884131758432683 + syst_JES_EtaIntercalibration_Stat133: 9.43794485e-06 + syst_JES_EtaIntercalibration_Stat134: 1.52185519e-02 + syst_JES_EtaIntercalibration_Stat135: 4.52050802e-01 + syst_JES_EtaIntercalibration_Stat136: 7.81103085e-01 + syst_JES_EtaIntercalibration_Stat137: 7.42952670e-01 + syst_JES_EtaIntercalibration_Stat138: 4.99488378e-01 + syst_JES_EtaIntercalibration_Stat139: 2.88413176e-03 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 5.5434286096241924e-05 + syst_JES_EtaIntercalibration_Stat140: 5.54342861e-05 syst_JES_EtaIntercalibration_Stat141: 0.0 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 1.4895636945092346e-07 - syst_JES_EtaIntercalibration_Stat144: 1.4895636945092346e-07 + syst_JES_EtaIntercalibration_Stat143: 1.48956369e-07 + syst_JES_EtaIntercalibration_Stat144: 1.48956369e-07 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 2.8596158832962164e-07 - syst_JES_EtaIntercalibration_Stat148: 2.8596158832962164e-07 + syst_JES_EtaIntercalibration_Stat147: 2.85961588e-07 + syst_JES_EtaIntercalibration_Stat148: 2.85961588e-07 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 syst_JES_EtaIntercalibration_Stat150: 0.0 syst_JES_EtaIntercalibration_Stat151: 0.0 - syst_JES_EtaIntercalibration_Stat152: 0.002572776455018974 - syst_JES_EtaIntercalibration_Stat153: 0.29760013440857175 - syst_JES_EtaIntercalibration_Stat154: 0.4534619498921602 - syst_JES_EtaIntercalibration_Stat155: 0.42165026680888035 - syst_JES_EtaIntercalibration_Stat156: 0.27717754238033065 - syst_JES_EtaIntercalibration_Stat157: 0.006731619196003291 + syst_JES_EtaIntercalibration_Stat152: 2.57277646e-03 + syst_JES_EtaIntercalibration_Stat153: 2.97600134e-01 + syst_JES_EtaIntercalibration_Stat154: 4.53461950e-01 + syst_JES_EtaIntercalibration_Stat155: 4.21650267e-01 + syst_JES_EtaIntercalibration_Stat156: 2.77177542e-01 + syst_JES_EtaIntercalibration_Stat157: 6.73161920e-03 syst_JES_EtaIntercalibration_Stat158: 0.0 syst_JES_EtaIntercalibration_Stat159: 0.0 syst_JES_EtaIntercalibration_Stat16: 0.0 @@ -3508,18 +3508,18 @@ bins: syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 2.8596158832962164e-07 + syst_JES_EtaIntercalibration_Stat165: 2.85961588e-07 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 0.004567007198374008 - syst_JES_EtaIntercalibration_Stat171: 0.09699900360312985 - syst_JES_EtaIntercalibration_Stat172: 0.11902825578407844 - syst_JES_EtaIntercalibration_Stat173: 0.15374643898315177 - syst_JES_EtaIntercalibration_Stat174: 0.09472395512751776 - syst_JES_EtaIntercalibration_Stat175: 0.007581116540457612 + syst_JES_EtaIntercalibration_Stat170: 4.56700720e-03 + syst_JES_EtaIntercalibration_Stat171: 9.69990036e-02 + syst_JES_EtaIntercalibration_Stat172: 1.19028256e-01 + syst_JES_EtaIntercalibration_Stat173: 1.53746439e-01 + syst_JES_EtaIntercalibration_Stat174: 9.47239551e-02 + syst_JES_EtaIntercalibration_Stat175: 7.58111654e-03 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 syst_JES_EtaIntercalibration_Stat178: 0.0 @@ -3532,14 +3532,14 @@ bins: syst_JES_EtaIntercalibration_Stat184: 0.0 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 - syst_JES_EtaIntercalibration_Stat187: 0.0006116737426929502 - syst_JES_EtaIntercalibration_Stat188: 0.06783560041010915 - syst_JES_EtaIntercalibration_Stat189: 0.10282677022546222 + syst_JES_EtaIntercalibration_Stat187: 6.11673743e-04 + syst_JES_EtaIntercalibration_Stat188: 6.78356004e-02 + syst_JES_EtaIntercalibration_Stat189: 1.02826770e-01 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 0.12281947433123137 - syst_JES_EtaIntercalibration_Stat191: 0.06053596699483705 - syst_JES_EtaIntercalibration_Stat192: 0.00215211933451656 - syst_JES_EtaIntercalibration_Stat193: 6.1981438148852274e-09 + syst_JES_EtaIntercalibration_Stat190: 1.22819474e-01 + syst_JES_EtaIntercalibration_Stat191: 6.05359670e-02 + syst_JES_EtaIntercalibration_Stat192: 2.15211933e-03 + syst_JES_EtaIntercalibration_Stat193: 6.19814381e-09 syst_JES_EtaIntercalibration_Stat194: 0.0 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 @@ -3550,13 +3550,13 @@ bins: syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 syst_JES_EtaIntercalibration_Stat201: 0.0 - syst_JES_EtaIntercalibration_Stat202: 0.0007911638136315387 - syst_JES_EtaIntercalibration_Stat203: 0.019199070289990607 - syst_JES_EtaIntercalibration_Stat204: 0.028818105420030656 - syst_JES_EtaIntercalibration_Stat205: 0.026351783146496936 - syst_JES_EtaIntercalibration_Stat206: 0.018714814319143007 - syst_JES_EtaIntercalibration_Stat207: 0.0002551978203276822 - syst_JES_EtaIntercalibration_Stat208: 6.1981438148852274e-09 + syst_JES_EtaIntercalibration_Stat202: 7.91163814e-04 + syst_JES_EtaIntercalibration_Stat203: 1.91990703e-02 + syst_JES_EtaIntercalibration_Stat204: 2.88181054e-02 + syst_JES_EtaIntercalibration_Stat205: 2.63517831e-02 + syst_JES_EtaIntercalibration_Stat206: 1.87148143e-02 + syst_JES_EtaIntercalibration_Stat207: 2.55197820e-04 + syst_JES_EtaIntercalibration_Stat208: 6.19814381e-09 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 @@ -3564,37 +3564,37 @@ bins: syst_JES_EtaIntercalibration_Stat212: 0.0 syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 - syst_JES_EtaIntercalibration_Stat215: 1.0682361003307836e-06 - syst_JES_EtaIntercalibration_Stat216: 0.000532163708646127 - syst_JES_EtaIntercalibration_Stat217: 0.0003508031178595766 - syst_JES_EtaIntercalibration_Stat218: 0.00024128540170304544 - syst_JES_EtaIntercalibration_Stat219: 2.49559877935136e-05 + syst_JES_EtaIntercalibration_Stat215: 1.06823610e-06 + syst_JES_EtaIntercalibration_Stat216: 5.32163709e-04 + syst_JES_EtaIntercalibration_Stat217: 3.50803118e-04 + syst_JES_EtaIntercalibration_Stat218: 2.41285402e-04 + syst_JES_EtaIntercalibration_Stat219: 2.49559878e-05 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 1.091678637466173e-08 + syst_JES_EtaIntercalibration_Stat220: 1.09167864e-08 syst_JES_EtaIntercalibration_Stat221: 0.0 syst_JES_EtaIntercalibration_Stat222: 0.0 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 - syst_JES_EtaIntercalibration_Stat227: 5.723561893594022e-19 - syst_JES_EtaIntercalibration_Stat228: 8.197843964573856e-08 - syst_JES_EtaIntercalibration_Stat229: 1.5028779158667544e-07 + syst_JES_EtaIntercalibration_Stat227: 5.72356189e-19 + syst_JES_EtaIntercalibration_Stat228: 8.19784396e-08 + syst_JES_EtaIntercalibration_Stat229: 1.50287792e-07 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 1.996328773198443e-06 - syst_JES_EtaIntercalibration_Stat231: 2.281193328063187e-06 - syst_JES_EtaIntercalibration_Stat232: 6.159172671714928e-09 + syst_JES_EtaIntercalibration_Stat230: 1.99632877e-06 + syst_JES_EtaIntercalibration_Stat231: 2.28119333e-06 + syst_JES_EtaIntercalibration_Stat232: 6.15917267e-09 syst_JES_EtaIntercalibration_Stat233: 0.0 syst_JES_EtaIntercalibration_Stat234: 0.0 syst_JES_EtaIntercalibration_Stat235: 0.0 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 - syst_JES_EtaIntercalibration_Stat239: 5.760786289672953e-20 + syst_JES_EtaIntercalibration_Stat239: 5.76078629e-20 syst_JES_EtaIntercalibration_Stat24: 0.0 - syst_JES_EtaIntercalibration_Stat240: 6.510757690365346e-20 - syst_JES_EtaIntercalibration_Stat241: 8.593460929683686e-20 - syst_JES_EtaIntercalibration_Stat242: 4.561365951640711e-25 + syst_JES_EtaIntercalibration_Stat240: 6.51075769e-20 + syst_JES_EtaIntercalibration_Stat241: 8.59346093e-20 + syst_JES_EtaIntercalibration_Stat242: 4.56136595e-25 syst_JES_EtaIntercalibration_Stat243: 0.0 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 @@ -3604,12 +3604,12 @@ bins: syst_JES_EtaIntercalibration_Stat28: 0.0 syst_JES_EtaIntercalibration_Stat29: 0.0 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 9.153294412805697e-06 - syst_JES_EtaIntercalibration_Stat31: 0.002537580516949167 - syst_JES_EtaIntercalibration_Stat32: 0.001409579583705723 - syst_JES_EtaIntercalibration_Stat33: 0.0030182747219023986 - syst_JES_EtaIntercalibration_Stat34: 0.003111693884365877 - syst_JES_EtaIntercalibration_Stat35: 5.419876002317834e-05 + syst_JES_EtaIntercalibration_Stat30: 9.15329441e-06 + syst_JES_EtaIntercalibration_Stat31: 2.53758052e-03 + syst_JES_EtaIntercalibration_Stat32: 1.40957958e-03 + syst_JES_EtaIntercalibration_Stat33: 3.01827472e-03 + syst_JES_EtaIntercalibration_Stat34: 3.11169388e-03 + syst_JES_EtaIntercalibration_Stat35: 5.41987600e-05 syst_JES_EtaIntercalibration_Stat36: 0.0 syst_JES_EtaIntercalibration_Stat37: 0.0 syst_JES_EtaIntercalibration_Stat38: 0.0 @@ -3628,220 +3628,220 @@ bins: syst_JES_EtaIntercalibration_Stat5: 0.0 syst_JES_EtaIntercalibration_Stat50: 0.0 syst_JES_EtaIntercalibration_Stat51: 0.0 - syst_JES_EtaIntercalibration_Stat52: 1.9179143800493283e-05 - syst_JES_EtaIntercalibration_Stat53: 0.0006446642614570782 - syst_JES_EtaIntercalibration_Stat54: 0.0019444480759331169 - syst_JES_EtaIntercalibration_Stat55: 0.0025542927533859544 - syst_JES_EtaIntercalibration_Stat56: 0.0028107591056509983 - syst_JES_EtaIntercalibration_Stat57: 0.00013525881514710972 + syst_JES_EtaIntercalibration_Stat52: 1.91791438e-05 + syst_JES_EtaIntercalibration_Stat53: 6.44664261e-04 + syst_JES_EtaIntercalibration_Stat54: 1.94444808e-03 + syst_JES_EtaIntercalibration_Stat55: 2.55429275e-03 + syst_JES_EtaIntercalibration_Stat56: 2.81075911e-03 + syst_JES_EtaIntercalibration_Stat57: 1.35258815e-04 syst_JES_EtaIntercalibration_Stat58: 0.0 syst_JES_EtaIntercalibration_Stat59: 0.0 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 1.4895636945092346e-07 - syst_JES_EtaIntercalibration_Stat62: 1.4895636945092346e-07 + syst_JES_EtaIntercalibration_Stat61: 1.48956369e-07 + syst_JES_EtaIntercalibration_Stat62: 1.48956369e-07 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 7.947515130529794e-06 - syst_JES_EtaIntercalibration_Stat69: 7.947515130529794e-06 + syst_JES_EtaIntercalibration_Stat68: 7.94751513e-06 + syst_JES_EtaIntercalibration_Stat69: 7.94751513e-06 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 6.285612380667456e-06 - syst_JES_EtaIntercalibration_Stat71: 6.285612380667456e-06 + syst_JES_EtaIntercalibration_Stat70: 6.28561238e-06 + syst_JES_EtaIntercalibration_Stat71: 6.28561238e-06 syst_JES_EtaIntercalibration_Stat72: 0.0 syst_JES_EtaIntercalibration_Stat73: 0.0 - syst_JES_EtaIntercalibration_Stat74: 0.0003399128822213127 - syst_JES_EtaIntercalibration_Stat75: 0.0009248501971670871 - syst_JES_EtaIntercalibration_Stat76: 0.0049868451700448855 - syst_JES_EtaIntercalibration_Stat77: 0.014261900741135454 - syst_JES_EtaIntercalibration_Stat78: 0.00821540216605371 - syst_JES_EtaIntercalibration_Stat79: 3.9547989519064045e-05 + syst_JES_EtaIntercalibration_Stat74: 3.39912882e-04 + syst_JES_EtaIntercalibration_Stat75: 9.24850197e-04 + syst_JES_EtaIntercalibration_Stat76: 4.98684517e-03 + syst_JES_EtaIntercalibration_Stat77: 1.42619007e-02 + syst_JES_EtaIntercalibration_Stat78: 8.21540217e-03 + syst_JES_EtaIntercalibration_Stat79: 3.95479895e-05 syst_JES_EtaIntercalibration_Stat8: 0.0 syst_JES_EtaIntercalibration_Stat80: 0.0 syst_JES_EtaIntercalibration_Stat81: 0.0 - syst_JES_EtaIntercalibration_Stat82: 1.4895636945092346e-07 - syst_JES_EtaIntercalibration_Stat83: 1.4895636945092346e-07 - syst_JES_EtaIntercalibration_Stat84: 1.4895636945092346e-07 + syst_JES_EtaIntercalibration_Stat82: 1.48956369e-07 + syst_JES_EtaIntercalibration_Stat83: 1.48956369e-07 + syst_JES_EtaIntercalibration_Stat84: 1.48956369e-07 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 7.947515130529794e-06 - syst_JES_EtaIntercalibration_Stat9: 0.0004621316776634122 - syst_JES_EtaIntercalibration_Stat90: 7.947515130529794e-06 - syst_JES_EtaIntercalibration_Stat91: 6.285612380667456e-06 - syst_JES_EtaIntercalibration_Stat92: 6.285612380667456e-06 + syst_JES_EtaIntercalibration_Stat89: 7.94751513e-06 + syst_JES_EtaIntercalibration_Stat9: 4.62131678e-04 + syst_JES_EtaIntercalibration_Stat90: 7.94751513e-06 + syst_JES_EtaIntercalibration_Stat91: 6.28561238e-06 + syst_JES_EtaIntercalibration_Stat92: 6.28561238e-06 syst_JES_EtaIntercalibration_Stat93: 0.0 syst_JES_EtaIntercalibration_Stat94: 0.0 - syst_JES_EtaIntercalibration_Stat95: 0.00035933482992885616 - syst_JES_EtaIntercalibration_Stat96: 0.012257548205085714 - syst_JES_EtaIntercalibration_Stat97: 0.018055657195184007 - syst_JES_EtaIntercalibration_Stat98: 0.01689664258810016 - syst_JES_EtaIntercalibration_Stat99: 0.013602964263350838 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0836653100155614 - syst_JES_Flavour_Comp: 0.23702430255144724 - syst_JES_Gjet_Generator: 5.098033150147221 - syst_JES_Gjet_OOC: 3.093015842183806 - syst_JES_Gjet_Purity: 0.9221871108945299 - syst_JES_Gjet_Stat1: 7.575990159040522e-11 - syst_JES_Gjet_Stat10: 0.3631110160818589 - syst_JES_Gjet_Stat11: 0.21302344941343898 - syst_JES_Gjet_Stat12: 0.03130171803591617 - syst_JES_Gjet_Stat13: 0.0692878113379258 - syst_JES_Gjet_Stat14: 0.008712934867196013 - syst_JES_Gjet_Stat15: 0.0019103252360527512 - syst_JES_Gjet_Stat2: 0.01006581326818653 - syst_JES_Gjet_Stat3: 0.00954411927576348 - syst_JES_Gjet_Stat4: 0.019541681113711788 - syst_JES_Gjet_Stat5: 0.02622147891996178 - syst_JES_Gjet_Stat6: 0.054204009768650876 - syst_JES_Gjet_Stat7: 0.10810615280824677 - syst_JES_Gjet_Stat8: 0.09804393135222599 - syst_JES_Gjet_Stat9: 0.2279428217777432 - syst_JES_Gjet_Veto: 1.241514893184935 - syst_JES_Gjet_dPhi: 0.34973989577970654 - syst_JES_LArESZee: 5.298737844996674 - syst_JES_LArEsmear: 0.39327172981921804 - syst_JES_LAr_JVT: 0.6084062520224459 - syst_JES_MJB_Alpha: 0.0005605103226969776 - syst_JES_MJB_Asym: 0.03139032653541534 - syst_JES_MJB_Beta: 2.4143719680281246e-29 - syst_JES_MJB_Stat1: 0.01790619827741221 - syst_JES_MJB_Stat10: 2.2438718212054806e-12 - syst_JES_MJB_Stat11: 1.2323541495852562e-29 - syst_JES_MJB_Stat12: 1.0698011724701184e-29 - syst_JES_MJB_Stat13: 1.1329828363660237e-19 - syst_JES_MJB_Stat14: 6.486517769035052e-20 - syst_JES_MJB_Stat15: 9.577627093910058e-39 + syst_JES_EtaIntercalibration_Stat95: 3.59334830e-04 + syst_JES_EtaIntercalibration_Stat96: 1.22575482e-02 + syst_JES_EtaIntercalibration_Stat97: 1.80556572e-02 + syst_JES_EtaIntercalibration_Stat98: 1.68966426e-02 + syst_JES_EtaIntercalibration_Stat99: 1.36029643e-02 + syst_JES_EtaIntercalibration_TotalStat_MJB: 8.36653100e-02 + syst_JES_Flavour_Comp: 2.37024303e-01 + syst_JES_Gjet_Generator: 5.09803315e+00 + syst_JES_Gjet_OOC: 3.09301584e+00 + syst_JES_Gjet_Purity: 9.22187111e-01 + syst_JES_Gjet_Stat1: 7.57599016e-11 + syst_JES_Gjet_Stat10: 3.63111016e-01 + syst_JES_Gjet_Stat11: 2.13023449e-01 + syst_JES_Gjet_Stat12: 3.13017180e-02 + syst_JES_Gjet_Stat13: 6.92878113e-02 + syst_JES_Gjet_Stat14: 8.71293487e-03 + syst_JES_Gjet_Stat15: 1.91032524e-03 + syst_JES_Gjet_Stat2: 1.00658133e-02 + syst_JES_Gjet_Stat3: 9.54411928e-03 + syst_JES_Gjet_Stat4: 1.95416811e-02 + syst_JES_Gjet_Stat5: 2.62214789e-02 + syst_JES_Gjet_Stat6: 5.42040098e-02 + syst_JES_Gjet_Stat7: 1.08106153e-01 + syst_JES_Gjet_Stat8: 9.80439314e-02 + syst_JES_Gjet_Stat9: 2.27942822e-01 + syst_JES_Gjet_Veto: 1.24151489e+00 + syst_JES_Gjet_dPhi: 3.49739896e-01 + syst_JES_LArESZee: 5.29873784e+00 + syst_JES_LArEsmear: 3.93271730e-01 + syst_JES_LAr_JVT: 6.08406252e-01 + syst_JES_MJB_Alpha: 5.60510323e-04 + syst_JES_MJB_Asym: 3.13903265e-02 + syst_JES_MJB_Beta: 2.41437197e-29 + syst_JES_MJB_Stat1: 1.79061983e-02 + syst_JES_MJB_Stat10: 2.24387182e-12 + syst_JES_MJB_Stat11: 1.23235415e-29 + syst_JES_MJB_Stat12: 1.06980117e-29 + syst_JES_MJB_Stat13: 1.13298284e-19 + syst_JES_MJB_Stat14: 6.48651777e-20 + syst_JES_MJB_Stat15: 9.57762709e-39 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 0.017025970586050466 - syst_JES_MJB_Stat3: 0.016231016819657357 - syst_JES_MJB_Stat4: 0.00019438345821339842 - syst_JES_MJB_Stat5: 7.085269414778807e-05 - syst_JES_MJB_Stat6: 3.1748491302737524e-06 - syst_JES_MJB_Stat7: 4.379490466937906e-37 + syst_JES_MJB_Stat2: 1.70259706e-02 + syst_JES_MJB_Stat3: 1.62310168e-02 + syst_JES_MJB_Stat4: 1.94383458e-04 + syst_JES_MJB_Stat5: 7.08526941e-05 + syst_JES_MJB_Stat6: 3.17484913e-06 + syst_JES_MJB_Stat7: 4.37949047e-37 syst_JES_MJB_Stat8: 0.0 syst_JES_MJB_Stat9: 0.0 - syst_JES_MJB_Threshold: 0.0424597818529488 - syst_JES_Pileup_MuOffset: 0.001820308971026622 - syst_JES_Pileup_NPVOffset: 0.16309812997088594 - syst_JES_Pileup_Pt_term: 0.6606174990113417 - syst_JES_PunchThrough_MC15: 2.5331229822080837e-07 + syst_JES_MJB_Threshold: 4.24597819e-02 + syst_JES_Pileup_MuOffset: 1.82030897e-03 + syst_JES_Pileup_NPVOffset: 1.63098130e-01 + syst_JES_Pileup_Pt_term: 6.60617499e-01 + syst_JES_PunchThrough_MC15: 2.53312298e-07 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 4.669545026016989 - syst_JES_Zjet_MuScale: 0.3001799918382303 - syst_JES_Zjet_MuSmearID: 0.05195810114890651 - syst_JES_Zjet_MuSmearMS: 0.4275660738412252 - syst_JES_Zjet_OOC: 1.5830056853972447 - syst_JES_Zjet_Stat1: 0.018692035737179615 - syst_JES_Zjet_Stat10: 0.5144152699910841 - syst_JES_Zjet_Stat11: 0.7944717679061982 - syst_JES_Zjet_Stat12: 0.45638032393498296 - syst_JES_Zjet_Stat13: 0.11419858887044095 + syst_JES_Zjet_MC: 4.66954503e+00 + syst_JES_Zjet_MuScale: 3.00179992e-01 + syst_JES_Zjet_MuSmearID: 5.19581011e-02 + syst_JES_Zjet_MuSmearMS: 4.27566074e-01 + syst_JES_Zjet_OOC: 1.58300569e+00 + syst_JES_Zjet_Stat1: 1.86920357e-02 + syst_JES_Zjet_Stat10: 5.14415270e-01 + syst_JES_Zjet_Stat11: 7.94471768e-01 + syst_JES_Zjet_Stat12: 4.56380324e-01 + syst_JES_Zjet_Stat13: 1.14198589e-01 syst_JES_Zjet_Stat2: 0.0 - syst_JES_Zjet_Stat3: 0.013310810377560585 - syst_JES_Zjet_Stat4: 0.013321605562018416 - syst_JES_Zjet_Stat5: 0.015191948525452552 - syst_JES_Zjet_Stat6: 0.021261072409452915 - syst_JES_Zjet_Stat7: 0.03199517776165653 - syst_JES_Zjet_Stat8: 0.057352202006548975 - syst_JES_Zjet_Stat9: 0.16006854781624028 - syst_JES_Zjet_Veto: 0.29008615961469103 - syst_JES_Zjet_dPhi: 0.27978398810510946 + syst_JES_Zjet_Stat3: 1.33108104e-02 + syst_JES_Zjet_Stat4: 1.33216056e-02 + syst_JES_Zjet_Stat5: 1.51919485e-02 + syst_JES_Zjet_Stat6: 2.12610724e-02 + syst_JES_Zjet_Stat7: 3.19951778e-02 + syst_JES_Zjet_Stat8: 5.73522020e-02 + syst_JES_Zjet_Stat9: 1.60068548e-01 + syst_JES_Zjet_Veto: 2.90086160e-01 + syst_JES_Zjet_dPhi: 2.79783988e-01 syst_PRW: 0.11474 syst_Unfolding_bias: 0.038927 - syst_cleaning: 1.3968989763042996 + syst_cleaning: 1.39689898e+00 syst_lumi: 5.732 - syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.08796856029286827 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.7375519416696583 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 0.4375548051387392 + syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 8.79685603e-02 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.73755194e+00 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 4.37554805e-01 syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 5.2325585281007605 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.03309287989885437 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.5129163966963817 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 5.23255853e+00 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 3.30928799e-02 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 5.12916397e-01 - stat: 0.9178 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.7526596641244965 - syst_JER_NP1: 0.11177592529252442 - syst_JER_NP2: 0.07117632963282104 - syst_JER_NP3: 0.23270261601451753 - syst_JER_NP4: 0.154482383461675 - syst_JER_NP5: 0.046724457492837726 - syst_JER_NP6: 0.08575092229824703 - syst_JER_NP7: 0.23905486294990946 - syst_JER_NP8: 0.1808163985926055 - syst_JES_EtaIntercalibration_Modelling: 0.07336882784943481 + syst_JER_NP0: 7.52659664e-01 + syst_JER_NP1: 1.11775925e-01 + syst_JER_NP2: 7.11763296e-02 + syst_JER_NP3: 2.32702616e-01 + syst_JER_NP4: 1.54482383e-01 + syst_JER_NP5: 4.67244575e-02 + syst_JER_NP6: 8.57509223e-02 + syst_JER_NP7: 2.39054863e-01 + syst_JER_NP8: 1.80816399e-01 + syst_JES_EtaIntercalibration_Modelling: 7.33688278e-02 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 - syst_JES_EtaIntercalibration_Stat10: 3.7520548946277425e-05 - syst_JES_EtaIntercalibration_Stat100: 0.0005951759823285463 + syst_JES_EtaIntercalibration_Stat10: 3.75205489e-05 + syst_JES_EtaIntercalibration_Stat100: 5.95175982e-04 syst_JES_EtaIntercalibration_Stat101: 0.0 syst_JES_EtaIntercalibration_Stat102: 0.0 - syst_JES_EtaIntercalibration_Stat103: 1.2436124798344538e-08 - syst_JES_EtaIntercalibration_Stat104: 1.2436124798344538e-08 - syst_JES_EtaIntercalibration_Stat105: 1.2436124798344538e-08 + syst_JES_EtaIntercalibration_Stat103: 1.24361248e-08 + syst_JES_EtaIntercalibration_Stat104: 1.24361248e-08 + syst_JES_EtaIntercalibration_Stat105: 1.24361248e-08 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 7.481593463293766e-07 - syst_JES_EtaIntercalibration_Stat11: 0.0006127995757178687 - syst_JES_EtaIntercalibration_Stat110: 7.405058784878078e-07 - syst_JES_EtaIntercalibration_Stat111: 5.844805450141176e-07 - syst_JES_EtaIntercalibration_Stat112: 5.844805450141176e-07 + syst_JES_EtaIntercalibration_Stat109: 7.48159346e-07 + syst_JES_EtaIntercalibration_Stat11: 6.12799576e-04 + syst_JES_EtaIntercalibration_Stat110: 7.40505878e-07 + syst_JES_EtaIntercalibration_Stat111: 5.84480545e-07 + syst_JES_EtaIntercalibration_Stat112: 5.84480545e-07 syst_JES_EtaIntercalibration_Stat113: 0.0 - syst_JES_EtaIntercalibration_Stat114: 8.939114217862976e-07 - syst_JES_EtaIntercalibration_Stat115: 0.0014863270568754375 - syst_JES_EtaIntercalibration_Stat116: 0.05012533191910055 - syst_JES_EtaIntercalibration_Stat117: 0.03777612043341667 - syst_JES_EtaIntercalibration_Stat118: 0.042119582144176125 - syst_JES_EtaIntercalibration_Stat119: 0.03706617157193335 - syst_JES_EtaIntercalibration_Stat12: 0.0005150569029600032 - syst_JES_EtaIntercalibration_Stat120: 0.0011312721014415587 - syst_JES_EtaIntercalibration_Stat121: 6.465745664654619e-06 + syst_JES_EtaIntercalibration_Stat114: 8.93911422e-07 + syst_JES_EtaIntercalibration_Stat115: 1.48632706e-03 + syst_JES_EtaIntercalibration_Stat116: 5.01253319e-02 + syst_JES_EtaIntercalibration_Stat117: 3.77761204e-02 + syst_JES_EtaIntercalibration_Stat118: 4.21195821e-02 + syst_JES_EtaIntercalibration_Stat119: 3.70661716e-02 + syst_JES_EtaIntercalibration_Stat12: 5.15056903e-04 + syst_JES_EtaIntercalibration_Stat120: 1.13127210e-03 + syst_JES_EtaIntercalibration_Stat121: 6.46574566e-06 syst_JES_EtaIntercalibration_Stat122: 0.0 - syst_JES_EtaIntercalibration_Stat123: 1.2436124798344538e-08 - syst_JES_EtaIntercalibration_Stat124: 1.2436124798344538e-08 - syst_JES_EtaIntercalibration_Stat125: 1.2436124798344538e-08 + syst_JES_EtaIntercalibration_Stat123: 1.24361248e-08 + syst_JES_EtaIntercalibration_Stat124: 1.24361248e-08 + syst_JES_EtaIntercalibration_Stat125: 1.24361248e-08 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 7.481593463293766e-07 - syst_JES_EtaIntercalibration_Stat129: 7.405058784878078e-07 + syst_JES_EtaIntercalibration_Stat128: 7.48159346e-07 + syst_JES_EtaIntercalibration_Stat129: 7.40505878e-07 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 2.3997563938866794e-08 + syst_JES_EtaIntercalibration_Stat130: 2.39975639e-08 syst_JES_EtaIntercalibration_Stat131: 0.0 syst_JES_EtaIntercalibration_Stat132: 0.0 - syst_JES_EtaIntercalibration_Stat133: 8.939114217862976e-07 - syst_JES_EtaIntercalibration_Stat134: 0.00647512090620708 - syst_JES_EtaIntercalibration_Stat135: 0.17138222632466882 - syst_JES_EtaIntercalibration_Stat136: 0.2881691300261011 - syst_JES_EtaIntercalibration_Stat137: 0.2841296007106616 - syst_JES_EtaIntercalibration_Stat138: 0.19670081341977208 - syst_JES_EtaIntercalibration_Stat139: 0.00099262236903064 + syst_JES_EtaIntercalibration_Stat133: 8.93911422e-07 + syst_JES_EtaIntercalibration_Stat134: 6.47512091e-03 + syst_JES_EtaIntercalibration_Stat135: 1.71382226e-01 + syst_JES_EtaIntercalibration_Stat136: 2.88169130e-01 + syst_JES_EtaIntercalibration_Stat137: 2.84129601e-01 + syst_JES_EtaIntercalibration_Stat138: 1.96700813e-01 + syst_JES_EtaIntercalibration_Stat139: 9.92622369e-04 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 6.465745664654619e-06 + syst_JES_EtaIntercalibration_Stat140: 6.46574566e-06 syst_JES_EtaIntercalibration_Stat141: 0.0 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 1.2436124798344538e-08 - syst_JES_EtaIntercalibration_Stat144: 1.2436124798344538e-08 + syst_JES_EtaIntercalibration_Stat143: 1.24361248e-08 + syst_JES_EtaIntercalibration_Stat144: 1.24361248e-08 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 2.3997563938866794e-08 - syst_JES_EtaIntercalibration_Stat148: 2.3997563938866794e-08 + syst_JES_EtaIntercalibration_Stat147: 2.39975639e-08 + syst_JES_EtaIntercalibration_Stat148: 2.39975639e-08 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 syst_JES_EtaIntercalibration_Stat150: 0.0 syst_JES_EtaIntercalibration_Stat151: 0.0 - syst_JES_EtaIntercalibration_Stat152: 0.003769125402357953 - syst_JES_EtaIntercalibration_Stat153: 0.15754563624550189 - syst_JES_EtaIntercalibration_Stat154: 0.23588586223002006 - syst_JES_EtaIntercalibration_Stat155: 0.22395026233518908 - syst_JES_EtaIntercalibration_Stat156: 0.16166885909166304 - syst_JES_EtaIntercalibration_Stat157: 0.0030511797505227384 + syst_JES_EtaIntercalibration_Stat152: 3.76912540e-03 + syst_JES_EtaIntercalibration_Stat153: 1.57545636e-01 + syst_JES_EtaIntercalibration_Stat154: 2.35885862e-01 + syst_JES_EtaIntercalibration_Stat155: 2.23950262e-01 + syst_JES_EtaIntercalibration_Stat156: 1.61668859e-01 + syst_JES_EtaIntercalibration_Stat157: 3.05117975e-03 syst_JES_EtaIntercalibration_Stat158: 0.0 syst_JES_EtaIntercalibration_Stat159: 0.0 syst_JES_EtaIntercalibration_Stat16: 0.0 @@ -3850,18 +3850,18 @@ bins: syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 2.3997563938866794e-08 + syst_JES_EtaIntercalibration_Stat165: 2.39975639e-08 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 0.0030235437403814754 - syst_JES_EtaIntercalibration_Stat171: 0.0880394065177634 - syst_JES_EtaIntercalibration_Stat172: 0.12897483901908927 - syst_JES_EtaIntercalibration_Stat173: 0.1539583797654418 - syst_JES_EtaIntercalibration_Stat174: 0.12028104090005207 - syst_JES_EtaIntercalibration_Stat175: 0.004301549497564802 + syst_JES_EtaIntercalibration_Stat170: 3.02354374e-03 + syst_JES_EtaIntercalibration_Stat171: 8.80394065e-02 + syst_JES_EtaIntercalibration_Stat172: 1.28974839e-01 + syst_JES_EtaIntercalibration_Stat173: 1.53958380e-01 + syst_JES_EtaIntercalibration_Stat174: 1.20281041e-01 + syst_JES_EtaIntercalibration_Stat175: 4.30154950e-03 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 syst_JES_EtaIntercalibration_Stat178: 0.0 @@ -3874,14 +3874,14 @@ bins: syst_JES_EtaIntercalibration_Stat184: 0.0 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 - syst_JES_EtaIntercalibration_Stat187: 0.00036373066965077883 - syst_JES_EtaIntercalibration_Stat188: 0.04519556062269833 - syst_JES_EtaIntercalibration_Stat189: 0.020957498580460407 + syst_JES_EtaIntercalibration_Stat187: 3.63730670e-04 + syst_JES_EtaIntercalibration_Stat188: 4.51955606e-02 + syst_JES_EtaIntercalibration_Stat189: 2.09574986e-02 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 0.017807720425422228 - syst_JES_EtaIntercalibration_Stat191: 0.009860218899699945 - syst_JES_EtaIntercalibration_Stat192: 0.0036485093874074107 - syst_JES_EtaIntercalibration_Stat193: 5.19182229568771e-07 + syst_JES_EtaIntercalibration_Stat190: 1.78077204e-02 + syst_JES_EtaIntercalibration_Stat191: 9.86021890e-03 + syst_JES_EtaIntercalibration_Stat192: 3.64850939e-03 + syst_JES_EtaIntercalibration_Stat193: 5.19182230e-07 syst_JES_EtaIntercalibration_Stat194: 0.0 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 @@ -3892,13 +3892,13 @@ bins: syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 syst_JES_EtaIntercalibration_Stat201: 0.0 - syst_JES_EtaIntercalibration_Stat202: 0.0009733793899605643 - syst_JES_EtaIntercalibration_Stat203: 0.019650681285899477 - syst_JES_EtaIntercalibration_Stat204: 0.026931570229008186 - syst_JES_EtaIntercalibration_Stat205: 0.022941361664033807 - syst_JES_EtaIntercalibration_Stat206: 0.01521994765923983 - syst_JES_EtaIntercalibration_Stat207: 0.00032174481639181076 - syst_JES_EtaIntercalibration_Stat208: 5.19182229568771e-07 + syst_JES_EtaIntercalibration_Stat202: 9.73379390e-04 + syst_JES_EtaIntercalibration_Stat203: 1.96506813e-02 + syst_JES_EtaIntercalibration_Stat204: 2.69315702e-02 + syst_JES_EtaIntercalibration_Stat205: 2.29413617e-02 + syst_JES_EtaIntercalibration_Stat206: 1.52199477e-02 + syst_JES_EtaIntercalibration_Stat207: 3.21744816e-04 + syst_JES_EtaIntercalibration_Stat208: 5.19182230e-07 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 @@ -3906,37 +3906,37 @@ bins: syst_JES_EtaIntercalibration_Stat212: 0.0 syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 - syst_JES_EtaIntercalibration_Stat215: 2.018389603279555e-05 - syst_JES_EtaIntercalibration_Stat216: 0.0010655360939452027 - syst_JES_EtaIntercalibration_Stat217: 0.0008545826744674853 - syst_JES_EtaIntercalibration_Stat218: 0.0009236800420058885 - syst_JES_EtaIntercalibration_Stat219: 0.0004957927187847761 + syst_JES_EtaIntercalibration_Stat215: 2.01838960e-05 + syst_JES_EtaIntercalibration_Stat216: 1.06553609e-03 + syst_JES_EtaIntercalibration_Stat217: 8.54582674e-04 + syst_JES_EtaIntercalibration_Stat218: 9.23680042e-04 + syst_JES_EtaIntercalibration_Stat219: 4.95792719e-04 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 9.430521552385106e-07 + syst_JES_EtaIntercalibration_Stat220: 9.43052155e-07 syst_JES_EtaIntercalibration_Stat221: 0.0 syst_JES_EtaIntercalibration_Stat222: 0.0 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 - syst_JES_EtaIntercalibration_Stat227: 2.891658818490421e-14 - syst_JES_EtaIntercalibration_Stat228: 1.7830465802945251e-06 - syst_JES_EtaIntercalibration_Stat229: 3.3026461069118497e-06 + syst_JES_EtaIntercalibration_Stat227: 2.89165882e-14 + syst_JES_EtaIntercalibration_Stat228: 1.78304658e-06 + syst_JES_EtaIntercalibration_Stat229: 3.30264611e-06 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 1.0300336442563418e-05 - syst_JES_EtaIntercalibration_Stat231: 1.274310365452624e-05 - syst_JES_EtaIntercalibration_Stat232: 5.154583203324979e-07 + syst_JES_EtaIntercalibration_Stat230: 1.03003364e-05 + syst_JES_EtaIntercalibration_Stat231: 1.27431037e-05 + syst_JES_EtaIntercalibration_Stat232: 5.15458320e-07 syst_JES_EtaIntercalibration_Stat233: 0.0 syst_JES_EtaIntercalibration_Stat234: 0.0 syst_JES_EtaIntercalibration_Stat235: 0.0 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 - syst_JES_EtaIntercalibration_Stat239: 2.9114406589461565e-15 + syst_JES_EtaIntercalibration_Stat239: 2.91144066e-15 syst_JES_EtaIntercalibration_Stat24: 0.0 - syst_JES_EtaIntercalibration_Stat240: 3.2899189549340984e-15 - syst_JES_EtaIntercalibration_Stat241: 4.342992372777093e-15 - syst_JES_EtaIntercalibration_Stat242: 4.2446685709283297e-19 + syst_JES_EtaIntercalibration_Stat240: 3.28991895e-15 + syst_JES_EtaIntercalibration_Stat241: 4.34299237e-15 + syst_JES_EtaIntercalibration_Stat242: 4.24466857e-19 syst_JES_EtaIntercalibration_Stat243: 0.0 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 @@ -3946,12 +3946,12 @@ bins: syst_JES_EtaIntercalibration_Stat28: 0.0 syst_JES_EtaIntercalibration_Stat29: 0.0 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 8.676389168311896e-07 - syst_JES_EtaIntercalibration_Stat31: 0.0009854094066300565 - syst_JES_EtaIntercalibration_Stat32: 0.0007914636679437661 - syst_JES_EtaIntercalibration_Stat33: 0.0008963634792175548 - syst_JES_EtaIntercalibration_Stat34: 0.0009650644489877348 - syst_JES_EtaIntercalibration_Stat35: 6.341268749252036e-06 + syst_JES_EtaIntercalibration_Stat30: 8.67638917e-07 + syst_JES_EtaIntercalibration_Stat31: 9.85409407e-04 + syst_JES_EtaIntercalibration_Stat32: 7.91463668e-04 + syst_JES_EtaIntercalibration_Stat33: 8.96363479e-04 + syst_JES_EtaIntercalibration_Stat34: 9.65064449e-04 + syst_JES_EtaIntercalibration_Stat35: 6.34126875e-06 syst_JES_EtaIntercalibration_Stat36: 0.0 syst_JES_EtaIntercalibration_Stat37: 0.0 syst_JES_EtaIntercalibration_Stat38: 0.0 @@ -3970,220 +3970,220 @@ bins: syst_JES_EtaIntercalibration_Stat5: 0.0 syst_JES_EtaIntercalibration_Stat50: 0.0 syst_JES_EtaIntercalibration_Stat51: 0.0 - syst_JES_EtaIntercalibration_Stat52: 4.093053167462524e-06 - syst_JES_EtaIntercalibration_Stat53: 0.0003398982146172586 - syst_JES_EtaIntercalibration_Stat54: 0.001298091255459338 - syst_JES_EtaIntercalibration_Stat55: 0.0007196604268681168 - syst_JES_EtaIntercalibration_Stat56: 0.0007951832053055447 - syst_JES_EtaIntercalibration_Stat57: 2.4743166101976523e-05 + syst_JES_EtaIntercalibration_Stat52: 4.09305317e-06 + syst_JES_EtaIntercalibration_Stat53: 3.39898215e-04 + syst_JES_EtaIntercalibration_Stat54: 1.29809126e-03 + syst_JES_EtaIntercalibration_Stat55: 7.19660427e-04 + syst_JES_EtaIntercalibration_Stat56: 7.95183205e-04 + syst_JES_EtaIntercalibration_Stat57: 2.47431661e-05 syst_JES_EtaIntercalibration_Stat58: 0.0 syst_JES_EtaIntercalibration_Stat59: 0.0 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 1.2436124798344538e-08 - syst_JES_EtaIntercalibration_Stat62: 1.2436124798344538e-08 + syst_JES_EtaIntercalibration_Stat61: 1.24361248e-08 + syst_JES_EtaIntercalibration_Stat62: 1.24361248e-08 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 7.481593463293766e-07 - syst_JES_EtaIntercalibration_Stat69: 7.481593463293766e-07 + syst_JES_EtaIntercalibration_Stat68: 7.48159346e-07 + syst_JES_EtaIntercalibration_Stat69: 7.48159346e-07 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 5.844805450141176e-07 - syst_JES_EtaIntercalibration_Stat71: 5.844805450141176e-07 + syst_JES_EtaIntercalibration_Stat70: 5.84480545e-07 + syst_JES_EtaIntercalibration_Stat71: 5.84480545e-07 syst_JES_EtaIntercalibration_Stat72: 0.0 syst_JES_EtaIntercalibration_Stat73: 0.0 - syst_JES_EtaIntercalibration_Stat74: 0.0002502093817185919 - syst_JES_EtaIntercalibration_Stat75: 0.0006110450556219238 - syst_JES_EtaIntercalibration_Stat76: 0.0011671377400718393 - syst_JES_EtaIntercalibration_Stat77: 0.003952182435060406 - syst_JES_EtaIntercalibration_Stat78: 0.0026920907767012613 - syst_JES_EtaIntercalibration_Stat79: 1.852109810459412e-05 + syst_JES_EtaIntercalibration_Stat74: 2.50209382e-04 + syst_JES_EtaIntercalibration_Stat75: 6.11045056e-04 + syst_JES_EtaIntercalibration_Stat76: 1.16713774e-03 + syst_JES_EtaIntercalibration_Stat77: 3.95218244e-03 + syst_JES_EtaIntercalibration_Stat78: 2.69209078e-03 + syst_JES_EtaIntercalibration_Stat79: 1.85210981e-05 syst_JES_EtaIntercalibration_Stat8: 0.0 syst_JES_EtaIntercalibration_Stat80: 0.0 syst_JES_EtaIntercalibration_Stat81: 0.0 - syst_JES_EtaIntercalibration_Stat82: 1.2436124798344538e-08 - syst_JES_EtaIntercalibration_Stat83: 1.2436124798344538e-08 - syst_JES_EtaIntercalibration_Stat84: 1.2436124798344538e-08 + syst_JES_EtaIntercalibration_Stat82: 1.24361248e-08 + syst_JES_EtaIntercalibration_Stat83: 1.24361248e-08 + syst_JES_EtaIntercalibration_Stat84: 1.24361248e-08 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 7.481593463293766e-07 - syst_JES_EtaIntercalibration_Stat9: 0.00022189417567840754 - syst_JES_EtaIntercalibration_Stat90: 7.481593463293766e-07 - syst_JES_EtaIntercalibration_Stat91: 5.844805450141176e-07 - syst_JES_EtaIntercalibration_Stat92: 5.844805450141176e-07 + syst_JES_EtaIntercalibration_Stat89: 7.48159346e-07 + syst_JES_EtaIntercalibration_Stat9: 2.21894176e-04 + syst_JES_EtaIntercalibration_Stat90: 7.48159346e-07 + syst_JES_EtaIntercalibration_Stat91: 5.84480545e-07 + syst_JES_EtaIntercalibration_Stat92: 5.84480545e-07 syst_JES_EtaIntercalibration_Stat93: 0.0 syst_JES_EtaIntercalibration_Stat94: 0.0 - syst_JES_EtaIntercalibration_Stat95: 0.00025367401660398724 - syst_JES_EtaIntercalibration_Stat96: 0.0034589367427975606 - syst_JES_EtaIntercalibration_Stat97: 0.0073880838347977614 - syst_JES_EtaIntercalibration_Stat98: 0.005490232781950143 - syst_JES_EtaIntercalibration_Stat99: 0.004274285086420886 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0465465538466598 - syst_JES_Flavour_Comp: 0.20208707900308717 - syst_JES_Gjet_Generator: 2.902706797111964 - syst_JES_Gjet_OOC: 1.8271515399659657 - syst_JES_Gjet_Purity: 0.5348464709615275 - syst_JES_Gjet_Stat1: 3.837354861635861e-08 - syst_JES_Gjet_Stat10: 0.22239934802062705 - syst_JES_Gjet_Stat11: 0.22873952435029674 - syst_JES_Gjet_Stat12: 0.09870056775419277 - syst_JES_Gjet_Stat13: 0.05457388936112213 - syst_JES_Gjet_Stat14: 0.014658665525892867 - syst_JES_Gjet_Stat15: 0.0022737141349562836 - syst_JES_Gjet_Stat2: 0.005455094018438179 - syst_JES_Gjet_Stat3: 0.005429071076160268 - syst_JES_Gjet_Stat4: 0.011434985002176436 - syst_JES_Gjet_Stat5: 0.010049832386661978 - syst_JES_Gjet_Stat6: 0.019891628892576896 - syst_JES_Gjet_Stat7: 0.03920022034376847 - syst_JES_Gjet_Stat8: 0.04089962683203846 - syst_JES_Gjet_Stat9: 0.11943333663596609 - syst_JES_Gjet_Veto: 0.7311157278434106 - syst_JES_Gjet_dPhi: 0.17763712309086746 - syst_JES_LArESZee: 3.258908828120234 - syst_JES_LArEsmear: 0.24393187573582914 - syst_JES_LAr_JVT: 0.3720803261058021 - syst_JES_MJB_Alpha: 0.0019964481577792095 - syst_JES_MJB_Asym: 0.011159324845168725 - syst_JES_MJB_Beta: 6.61329252339559e-22 - syst_JES_MJB_Stat1: 0.013800002608695405 - syst_JES_MJB_Stat10: 1.1365717399266971e-09 - syst_JES_MJB_Stat11: 3.3761134341132557e-22 - syst_JES_MJB_Stat12: 2.929762747910368e-22 - syst_JES_MJB_Stat13: 5.725314380014428e-15 - syst_JES_MJB_Stat14: 3.277789776042338e-15 - syst_JES_MJB_Stat15: 1.2949972084912e-29 - syst_JES_MJB_Stat16: 5.4949417421843515e-37 - syst_JES_MJB_Stat2: 0.011513080545018132 - syst_JES_MJB_Stat3: 0.012231757467755809 - syst_JES_MJB_Stat4: 0.0002630941038868032 - syst_JES_MJB_Stat5: 0.00040512545612439617 - syst_JES_MJB_Stat6: 1.9147821677673938e-05 - syst_JES_MJB_Stat7: 5.921015476904379e-28 - syst_JES_MJB_Stat8: 3.871133554916441e-43 - syst_JES_MJB_Stat9: 1.929504599631729e-43 - syst_JES_MJB_Threshold: 0.022789104304469714 - syst_JES_Pileup_MuOffset: 0.01105410841045084 - syst_JES_Pileup_NPVOffset: 0.09932108738832857 - syst_JES_Pileup_Pt_term: 0.3670949298206119 - syst_JES_PunchThrough_MC15: 2.188390804214185e-05 + syst_JES_EtaIntercalibration_Stat95: 2.53674017e-04 + syst_JES_EtaIntercalibration_Stat96: 3.45893674e-03 + syst_JES_EtaIntercalibration_Stat97: 7.38808383e-03 + syst_JES_EtaIntercalibration_Stat98: 5.49023278e-03 + syst_JES_EtaIntercalibration_Stat99: 4.27428509e-03 + syst_JES_EtaIntercalibration_TotalStat_MJB: 4.65465538e-02 + syst_JES_Flavour_Comp: 2.02087079e-01 + syst_JES_Gjet_Generator: 2.90270680e+00 + syst_JES_Gjet_OOC: 1.82715154e+00 + syst_JES_Gjet_Purity: 5.34846471e-01 + syst_JES_Gjet_Stat1: 3.83735486e-08 + syst_JES_Gjet_Stat10: 2.22399348e-01 + syst_JES_Gjet_Stat11: 2.28739524e-01 + syst_JES_Gjet_Stat12: 9.87005678e-02 + syst_JES_Gjet_Stat13: 5.45738894e-02 + syst_JES_Gjet_Stat14: 1.46586655e-02 + syst_JES_Gjet_Stat15: 2.27371413e-03 + syst_JES_Gjet_Stat2: 5.45509402e-03 + syst_JES_Gjet_Stat3: 5.42907108e-03 + syst_JES_Gjet_Stat4: 1.14349850e-02 + syst_JES_Gjet_Stat5: 1.00498324e-02 + syst_JES_Gjet_Stat6: 1.98916289e-02 + syst_JES_Gjet_Stat7: 3.92002203e-02 + syst_JES_Gjet_Stat8: 4.08996268e-02 + syst_JES_Gjet_Stat9: 1.19433337e-01 + syst_JES_Gjet_Veto: 7.31115728e-01 + syst_JES_Gjet_dPhi: 1.77637123e-01 + syst_JES_LArESZee: 3.25890883e+00 + syst_JES_LArEsmear: 2.43931876e-01 + syst_JES_LAr_JVT: 3.72080326e-01 + syst_JES_MJB_Alpha: 1.99644816e-03 + syst_JES_MJB_Asym: 1.11593248e-02 + syst_JES_MJB_Beta: 6.61329252e-22 + syst_JES_MJB_Stat1: 1.38000026e-02 + syst_JES_MJB_Stat10: 1.13657174e-09 + syst_JES_MJB_Stat11: 3.37611343e-22 + syst_JES_MJB_Stat12: 2.92976275e-22 + syst_JES_MJB_Stat13: 5.72531438e-15 + syst_JES_MJB_Stat14: 3.27778978e-15 + syst_JES_MJB_Stat15: 1.29499721e-29 + syst_JES_MJB_Stat16: 5.49494174e-37 + syst_JES_MJB_Stat2: 1.15130805e-02 + syst_JES_MJB_Stat3: 1.22317575e-02 + syst_JES_MJB_Stat4: 2.63094104e-04 + syst_JES_MJB_Stat5: 4.05125456e-04 + syst_JES_MJB_Stat6: 1.91478217e-05 + syst_JES_MJB_Stat7: 5.92101548e-28 + syst_JES_MJB_Stat8: 3.87113355e-43 + syst_JES_MJB_Stat9: 1.92950460e-43 + syst_JES_MJB_Threshold: 2.27891043e-02 + syst_JES_Pileup_MuOffset: 1.10541084e-02 + syst_JES_Pileup_NPVOffset: 9.93210874e-02 + syst_JES_Pileup_Pt_term: 3.67094930e-01 + syst_JES_PunchThrough_MC15: 2.18839080e-05 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 2.7207985500584204 - syst_JES_Zjet_MuScale: 0.16182388575238205 - syst_JES_Zjet_MuSmearID: 0.031165648958428573 - syst_JES_Zjet_MuSmearMS: 0.3033005275300391 - syst_JES_Zjet_OOC: 0.8950311880040829 - syst_JES_Zjet_Stat1: 0.010881588797138037 - syst_JES_Zjet_Stat10: 0.23699457272266805 - syst_JES_Zjet_Stat11: 0.4236199712006033 - syst_JES_Zjet_Stat12: 0.5160071317336612 - syst_JES_Zjet_Stat13: 0.08344188576488429 + syst_JES_Zjet_MC: 2.72079855e+00 + syst_JES_Zjet_MuScale: 1.61823886e-01 + syst_JES_Zjet_MuSmearID: 3.11656490e-02 + syst_JES_Zjet_MuSmearMS: 3.03300528e-01 + syst_JES_Zjet_OOC: 8.95031188e-01 + syst_JES_Zjet_Stat1: 1.08815888e-02 + syst_JES_Zjet_Stat10: 2.36994573e-01 + syst_JES_Zjet_Stat11: 4.23619971e-01 + syst_JES_Zjet_Stat12: 5.16007132e-01 + syst_JES_Zjet_Stat13: 8.34418858e-02 syst_JES_Zjet_Stat2: 0.0 - syst_JES_Zjet_Stat3: 0.007679873470398088 - syst_JES_Zjet_Stat4: 0.007764131889657723 - syst_JES_Zjet_Stat5: 0.008709241987681821 - syst_JES_Zjet_Stat6: 0.012303189627084514 - syst_JES_Zjet_Stat7: 0.015324813212564778 - syst_JES_Zjet_Stat8: 0.020968048907802555 - syst_JES_Zjet_Stat9: 0.07957515488517757 - syst_JES_Zjet_Veto: 0.16111625461138301 - syst_JES_Zjet_dPhi: 0.15054580963945824 + syst_JES_Zjet_Stat3: 7.67987347e-03 + syst_JES_Zjet_Stat4: 7.76413189e-03 + syst_JES_Zjet_Stat5: 8.70924199e-03 + syst_JES_Zjet_Stat6: 1.23031896e-02 + syst_JES_Zjet_Stat7: 1.53248132e-02 + syst_JES_Zjet_Stat8: 2.09680489e-02 + syst_JES_Zjet_Stat9: 7.95751549e-02 + syst_JES_Zjet_Veto: 1.61116255e-01 + syst_JES_Zjet_dPhi: 1.50545810e-01 syst_PRW: 0.08381 syst_Unfolding_bias: 0.01608 - syst_cleaning: 0.7895553606302727 + syst_cleaning: 7.89555361e-01 syst_lumi: 3.345 - syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.043840171931688404 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.933619251890191 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 0.2360004396182346 + syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 4.38401719e-02 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 9.33619252e-01 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 2.36000440e-01 syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 2.8221103362554767 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.017675021923607336 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.305636561131027 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 2.82211034e+00 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.76750219e-02 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 3.05636561e-01 - stat: 0.5059 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.38524406549614754 - syst_JER_NP1: 0.052547917894051714 - syst_JER_NP2: 0.03669264606157479 - syst_JER_NP3: 0.12642442169138052 - syst_JER_NP4: 0.07696557331040937 - syst_JER_NP5: 0.0282376273790841 - syst_JER_NP6: 0.04007869009835526 - syst_JER_NP7: 0.1190032355652568 - syst_JER_NP8: 0.09467926106069904 - syst_JES_EtaIntercalibration_Modelling: 0.013040930593711478 + syst_JER_NP0: 3.85244065e-01 + syst_JER_NP1: 5.25479179e-02 + syst_JER_NP2: 3.66926461e-02 + syst_JER_NP3: 1.26424422e-01 + syst_JER_NP4: 7.69655733e-02 + syst_JER_NP5: 2.82376274e-02 + syst_JER_NP6: 4.00786901e-02 + syst_JER_NP7: 1.19003236e-01 + syst_JER_NP8: 9.46792611e-02 + syst_JES_EtaIntercalibration_Modelling: 1.30409306e-02 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 - syst_JES_EtaIntercalibration_Stat10: 7.146320841405037e-06 - syst_JES_EtaIntercalibration_Stat100: 0.00015036119377020123 + syst_JES_EtaIntercalibration_Stat10: 7.14632084e-06 + syst_JES_EtaIntercalibration_Stat100: 1.50361194e-04 syst_JES_EtaIntercalibration_Stat101: 0.0 syst_JES_EtaIntercalibration_Stat102: 0.0 - syst_JES_EtaIntercalibration_Stat103: 1.1327612281500457e-09 - syst_JES_EtaIntercalibration_Stat104: 1.1327612281500457e-09 - syst_JES_EtaIntercalibration_Stat105: 1.1327612281500457e-09 + syst_JES_EtaIntercalibration_Stat103: 1.13276123e-09 + syst_JES_EtaIntercalibration_Stat104: 1.13276123e-09 + syst_JES_EtaIntercalibration_Stat105: 1.13276123e-09 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 7.214857638928158e-08 - syst_JES_EtaIntercalibration_Stat11: 0.00014912957453168033 - syst_JES_EtaIntercalibration_Stat110: 7.144942210228155e-08 - syst_JES_EtaIntercalibration_Stat111: 5.6066484641004553e-08 - syst_JES_EtaIntercalibration_Stat112: 5.6066484641004553e-08 + syst_JES_EtaIntercalibration_Stat109: 7.21485764e-08 + syst_JES_EtaIntercalibration_Stat11: 1.49129575e-04 + syst_JES_EtaIntercalibration_Stat110: 7.14494221e-08 + syst_JES_EtaIntercalibration_Stat111: 5.60664846e-08 + syst_JES_EtaIntercalibration_Stat112: 5.60664846e-08 syst_JES_EtaIntercalibration_Stat113: 0.0 - syst_JES_EtaIntercalibration_Stat114: 8.644665580576267e-08 - syst_JES_EtaIntercalibration_Stat115: 0.000483945355902916 - syst_JES_EtaIntercalibration_Stat116: 0.01491549431799027 - syst_JES_EtaIntercalibration_Stat117: 0.011447452325736063 - syst_JES_EtaIntercalibration_Stat118: 0.015243468658740373 - syst_JES_EtaIntercalibration_Stat119: 0.01447464509927618 - syst_JES_EtaIntercalibration_Stat12: 5.2748375216683215e-05 - syst_JES_EtaIntercalibration_Stat120: 0.00016224874329251368 - syst_JES_EtaIntercalibration_Stat121: 7.08841792997563e-07 + syst_JES_EtaIntercalibration_Stat114: 8.64466558e-08 + syst_JES_EtaIntercalibration_Stat115: 4.83945356e-04 + syst_JES_EtaIntercalibration_Stat116: 1.49154943e-02 + syst_JES_EtaIntercalibration_Stat117: 1.14474523e-02 + syst_JES_EtaIntercalibration_Stat118: 1.52434687e-02 + syst_JES_EtaIntercalibration_Stat119: 1.44746451e-02 + syst_JES_EtaIntercalibration_Stat12: 5.27483752e-05 + syst_JES_EtaIntercalibration_Stat120: 1.62248743e-04 + syst_JES_EtaIntercalibration_Stat121: 7.08841793e-07 syst_JES_EtaIntercalibration_Stat122: 0.0 - syst_JES_EtaIntercalibration_Stat123: 1.1327612281500457e-09 - syst_JES_EtaIntercalibration_Stat124: 1.1327612281500457e-09 - syst_JES_EtaIntercalibration_Stat125: 1.1327612281500457e-09 + syst_JES_EtaIntercalibration_Stat123: 1.13276123e-09 + syst_JES_EtaIntercalibration_Stat124: 1.13276123e-09 + syst_JES_EtaIntercalibration_Stat125: 1.13276123e-09 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 7.214857638928158e-08 - syst_JES_EtaIntercalibration_Stat129: 7.144942210228155e-08 + syst_JES_EtaIntercalibration_Stat128: 7.21485764e-08 + syst_JES_EtaIntercalibration_Stat129: 7.14494221e-08 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 2.1867141445557076e-09 + syst_JES_EtaIntercalibration_Stat130: 2.18671414e-09 syst_JES_EtaIntercalibration_Stat131: 0.0 syst_JES_EtaIntercalibration_Stat132: 0.0 - syst_JES_EtaIntercalibration_Stat133: 8.644665580576267e-08 - syst_JES_EtaIntercalibration_Stat134: 0.0025592848610500553 - syst_JES_EtaIntercalibration_Stat135: 0.0650172192576705 - syst_JES_EtaIntercalibration_Stat136: 0.1075855199364673 - syst_JES_EtaIntercalibration_Stat137: 0.10847644306484243 - syst_JES_EtaIntercalibration_Stat138: 0.07459061670210268 - syst_JES_EtaIntercalibration_Stat139: 0.000541636084008442 + syst_JES_EtaIntercalibration_Stat133: 8.64466558e-08 + syst_JES_EtaIntercalibration_Stat134: 2.55928486e-03 + syst_JES_EtaIntercalibration_Stat135: 6.50172193e-02 + syst_JES_EtaIntercalibration_Stat136: 1.07585520e-01 + syst_JES_EtaIntercalibration_Stat137: 1.08476443e-01 + syst_JES_EtaIntercalibration_Stat138: 7.45906167e-02 + syst_JES_EtaIntercalibration_Stat139: 5.41636084e-04 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 7.08841792997563e-07 + syst_JES_EtaIntercalibration_Stat140: 7.08841793e-07 syst_JES_EtaIntercalibration_Stat141: 0.0 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 1.1327612281500457e-09 - syst_JES_EtaIntercalibration_Stat144: 1.1327612281500457e-09 + syst_JES_EtaIntercalibration_Stat143: 1.13276123e-09 + syst_JES_EtaIntercalibration_Stat144: 1.13276123e-09 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 2.1867141445557076e-09 - syst_JES_EtaIntercalibration_Stat148: 2.1867141445557076e-09 + syst_JES_EtaIntercalibration_Stat147: 2.18671414e-09 + syst_JES_EtaIntercalibration_Stat148: 2.18671414e-09 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 syst_JES_EtaIntercalibration_Stat150: 0.0 syst_JES_EtaIntercalibration_Stat151: 0.0 - syst_JES_EtaIntercalibration_Stat152: 0.0028105773235283884 - syst_JES_EtaIntercalibration_Stat153: 0.07473314575875954 - syst_JES_EtaIntercalibration_Stat154: 0.11182518265131518 - syst_JES_EtaIntercalibration_Stat155: 0.10560915904882492 - syst_JES_EtaIntercalibration_Stat156: 0.0776142594823915 - syst_JES_EtaIntercalibration_Stat157: 0.0013730319979883933 + syst_JES_EtaIntercalibration_Stat152: 2.81057732e-03 + syst_JES_EtaIntercalibration_Stat153: 7.47331458e-02 + syst_JES_EtaIntercalibration_Stat154: 1.11825183e-01 + syst_JES_EtaIntercalibration_Stat155: 1.05609159e-01 + syst_JES_EtaIntercalibration_Stat156: 7.76142595e-02 + syst_JES_EtaIntercalibration_Stat157: 1.37303200e-03 syst_JES_EtaIntercalibration_Stat158: 0.0 syst_JES_EtaIntercalibration_Stat159: 0.0 syst_JES_EtaIntercalibration_Stat16: 0.0 @@ -4192,18 +4192,18 @@ bins: syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 2.1867141445557076e-09 + syst_JES_EtaIntercalibration_Stat165: 2.18671414e-09 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 0.0020540579349180976 - syst_JES_EtaIntercalibration_Stat171: 0.06822765128597057 - syst_JES_EtaIntercalibration_Stat172: 0.10517251007273716 - syst_JES_EtaIntercalibration_Stat173: 0.11691551180232672 - syst_JES_EtaIntercalibration_Stat174: 0.08728403333370886 - syst_JES_EtaIntercalibration_Stat175: 0.0019149421055217309 + syst_JES_EtaIntercalibration_Stat170: 2.05405793e-03 + syst_JES_EtaIntercalibration_Stat171: 6.82276513e-02 + syst_JES_EtaIntercalibration_Stat172: 1.05172510e-01 + syst_JES_EtaIntercalibration_Stat173: 1.16915512e-01 + syst_JES_EtaIntercalibration_Stat174: 8.72840333e-02 + syst_JES_EtaIntercalibration_Stat175: 1.91494211e-03 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 syst_JES_EtaIntercalibration_Stat178: 0.0 @@ -4216,14 +4216,14 @@ bins: syst_JES_EtaIntercalibration_Stat184: 0.0 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 - syst_JES_EtaIntercalibration_Stat187: 0.0002126959648300412 - syst_JES_EtaIntercalibration_Stat188: 0.05271106999483125 - syst_JES_EtaIntercalibration_Stat189: 0.05847438477658402 + syst_JES_EtaIntercalibration_Stat187: 2.12695965e-04 + syst_JES_EtaIntercalibration_Stat188: 5.27110700e-02 + syst_JES_EtaIntercalibration_Stat189: 5.84743848e-02 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 0.06526189776584802 - syst_JES_EtaIntercalibration_Stat191: 0.04947614778860618 - syst_JES_EtaIntercalibration_Stat192: 0.003622837521543024 - syst_JES_EtaIntercalibration_Stat193: 7.149039708240541e-06 + syst_JES_EtaIntercalibration_Stat190: 6.52618978e-02 + syst_JES_EtaIntercalibration_Stat191: 4.94761478e-02 + syst_JES_EtaIntercalibration_Stat192: 3.62283752e-03 + syst_JES_EtaIntercalibration_Stat193: 7.14903971e-06 syst_JES_EtaIntercalibration_Stat194: 0.0 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 @@ -4234,13 +4234,13 @@ bins: syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 syst_JES_EtaIntercalibration_Stat201: 0.0 - syst_JES_EtaIntercalibration_Stat202: 0.0008651028999489022 - syst_JES_EtaIntercalibration_Stat203: 0.011074102525712863 - syst_JES_EtaIntercalibration_Stat204: 0.01249492203857231 - syst_JES_EtaIntercalibration_Stat205: 0.012354067133944189 - syst_JES_EtaIntercalibration_Stat206: 0.008588849108000443 - syst_JES_EtaIntercalibration_Stat207: 8.82639058449149e-05 - syst_JES_EtaIntercalibration_Stat208: 7.149039708240541e-06 + syst_JES_EtaIntercalibration_Stat202: 8.65102900e-04 + syst_JES_EtaIntercalibration_Stat203: 1.10741025e-02 + syst_JES_EtaIntercalibration_Stat204: 1.24949220e-02 + syst_JES_EtaIntercalibration_Stat205: 1.23540671e-02 + syst_JES_EtaIntercalibration_Stat206: 8.58884911e-03 + syst_JES_EtaIntercalibration_Stat207: 8.82639058e-05 + syst_JES_EtaIntercalibration_Stat208: 7.14903971e-06 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 @@ -4248,38 +4248,38 @@ bins: syst_JES_EtaIntercalibration_Stat212: 0.0 syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 - syst_JES_EtaIntercalibration_Stat215: 8.822864770197942e-05 - syst_JES_EtaIntercalibration_Stat216: 0.0015185133354699261 - syst_JES_EtaIntercalibration_Stat217: 0.0017239144410323849 - syst_JES_EtaIntercalibration_Stat218: 0.0023189126762342737 - syst_JES_EtaIntercalibration_Stat219: 0.001801626487371897 + syst_JES_EtaIntercalibration_Stat215: 8.82286477e-05 + syst_JES_EtaIntercalibration_Stat216: 1.51851334e-03 + syst_JES_EtaIntercalibration_Stat217: 1.72391444e-03 + syst_JES_EtaIntercalibration_Stat218: 2.31891268e-03 + syst_JES_EtaIntercalibration_Stat219: 1.80162649e-03 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 1.4493835517212137e-05 + syst_JES_EtaIntercalibration_Stat220: 1.44938355e-05 syst_JES_EtaIntercalibration_Stat221: 0.0 syst_JES_EtaIntercalibration_Stat222: 0.0 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 - syst_JES_EtaIntercalibration_Stat227: 5.914086163488418e-11 - syst_JES_EtaIntercalibration_Stat228: 9.913430132905562e-06 - syst_JES_EtaIntercalibration_Stat229: 1.9089899816395056e-05 + syst_JES_EtaIntercalibration_Stat227: 5.91408616e-11 + syst_JES_EtaIntercalibration_Stat228: 9.91343013e-06 + syst_JES_EtaIntercalibration_Stat229: 1.90898998e-05 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 1.7270631140754526e-05 - syst_JES_EtaIntercalibration_Stat231: 2.8384991223356048e-05 - syst_JES_EtaIntercalibration_Stat232: 7.069365371092372e-06 + syst_JES_EtaIntercalibration_Stat230: 1.72706311e-05 + syst_JES_EtaIntercalibration_Stat231: 2.83849912e-05 + syst_JES_EtaIntercalibration_Stat232: 7.06936537e-06 syst_JES_EtaIntercalibration_Stat233: 0.0 syst_JES_EtaIntercalibration_Stat234: 0.0 syst_JES_EtaIntercalibration_Stat235: 0.0 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 - syst_JES_EtaIntercalibration_Stat238: 1.166189808736125e-42 - syst_JES_EtaIntercalibration_Stat239: 5.96768375376804e-12 + syst_JES_EtaIntercalibration_Stat238: 1.16618981e-42 + syst_JES_EtaIntercalibration_Stat239: 5.96768375e-12 syst_JES_EtaIntercalibration_Stat24: 0.0 - syst_JES_EtaIntercalibration_Stat240: 6.7432954145974315e-12 - syst_JES_EtaIntercalibration_Stat241: 8.910284437098515e-12 - syst_JES_EtaIntercalibration_Stat242: 8.381353055634872e-15 - syst_JES_EtaIntercalibration_Stat243: 9.332289751181111e-43 + syst_JES_EtaIntercalibration_Stat240: 6.74329541e-12 + syst_JES_EtaIntercalibration_Stat241: 8.91028444e-12 + syst_JES_EtaIntercalibration_Stat242: 8.38135306e-15 + syst_JES_EtaIntercalibration_Stat243: 9.33228975e-43 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 syst_JES_EtaIntercalibration_Stat25: 0.0 @@ -4288,12 +4288,12 @@ bins: syst_JES_EtaIntercalibration_Stat28: 0.0 syst_JES_EtaIntercalibration_Stat29: 0.0 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 8.392946588058333e-08 - syst_JES_EtaIntercalibration_Stat31: 0.0003150075673694205 - syst_JES_EtaIntercalibration_Stat32: 0.00020277365078333033 - syst_JES_EtaIntercalibration_Stat33: 1.9746631408926433e-05 - syst_JES_EtaIntercalibration_Stat34: 0.00013722356910075614 - syst_JES_EtaIntercalibration_Stat35: 6.962187766657061e-07 + syst_JES_EtaIntercalibration_Stat30: 8.39294659e-08 + syst_JES_EtaIntercalibration_Stat31: 3.15007567e-04 + syst_JES_EtaIntercalibration_Stat32: 2.02773651e-04 + syst_JES_EtaIntercalibration_Stat33: 1.97466314e-05 + syst_JES_EtaIntercalibration_Stat34: 1.37223569e-04 + syst_JES_EtaIntercalibration_Stat35: 6.96218777e-07 syst_JES_EtaIntercalibration_Stat36: 0.0 syst_JES_EtaIntercalibration_Stat37: 0.0 syst_JES_EtaIntercalibration_Stat38: 0.0 @@ -4312,220 +4312,220 @@ bins: syst_JES_EtaIntercalibration_Stat5: 0.0 syst_JES_EtaIntercalibration_Stat50: 0.0 syst_JES_EtaIntercalibration_Stat51: 0.0 - syst_JES_EtaIntercalibration_Stat52: 6.043803655122741e-07 - syst_JES_EtaIntercalibration_Stat53: 0.00015669804888064179 - syst_JES_EtaIntercalibration_Stat54: 0.000618429969762139 - syst_JES_EtaIntercalibration_Stat55: 0.0003733771395931331 - syst_JES_EtaIntercalibration_Stat56: 9.300761742997184e-05 - syst_JES_EtaIntercalibration_Stat57: 3.9110237061413975e-06 + syst_JES_EtaIntercalibration_Stat52: 6.04380366e-07 + syst_JES_EtaIntercalibration_Stat53: 1.56698049e-04 + syst_JES_EtaIntercalibration_Stat54: 6.18429970e-04 + syst_JES_EtaIntercalibration_Stat55: 3.73377140e-04 + syst_JES_EtaIntercalibration_Stat56: 9.30076174e-05 + syst_JES_EtaIntercalibration_Stat57: 3.91102371e-06 syst_JES_EtaIntercalibration_Stat58: 0.0 syst_JES_EtaIntercalibration_Stat59: 0.0 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 1.1327612281500457e-09 - syst_JES_EtaIntercalibration_Stat62: 1.1327612281500457e-09 + syst_JES_EtaIntercalibration_Stat61: 1.13276123e-09 + syst_JES_EtaIntercalibration_Stat62: 1.13276123e-09 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 7.214857638928158e-08 - syst_JES_EtaIntercalibration_Stat69: 7.214857638928158e-08 + syst_JES_EtaIntercalibration_Stat68: 7.21485764e-08 + syst_JES_EtaIntercalibration_Stat69: 7.21485764e-08 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 5.6066484641004553e-08 - syst_JES_EtaIntercalibration_Stat71: 5.6066484641004553e-08 + syst_JES_EtaIntercalibration_Stat70: 5.60664846e-08 + syst_JES_EtaIntercalibration_Stat71: 5.60664846e-08 syst_JES_EtaIntercalibration_Stat72: 0.0 syst_JES_EtaIntercalibration_Stat73: 0.0 - syst_JES_EtaIntercalibration_Stat74: 0.00017736653292194104 - syst_JES_EtaIntercalibration_Stat75: 0.0003310142780908401 - syst_JES_EtaIntercalibration_Stat76: 0.0001478404068582064 - syst_JES_EtaIntercalibration_Stat77: 0.0008417386218417211 - syst_JES_EtaIntercalibration_Stat78: 0.0006316770693954309 - syst_JES_EtaIntercalibration_Stat79: 3.842987562756351e-06 + syst_JES_EtaIntercalibration_Stat74: 1.77366533e-04 + syst_JES_EtaIntercalibration_Stat75: 3.31014278e-04 + syst_JES_EtaIntercalibration_Stat76: 1.47840407e-04 + syst_JES_EtaIntercalibration_Stat77: 8.41738622e-04 + syst_JES_EtaIntercalibration_Stat78: 6.31677069e-04 + syst_JES_EtaIntercalibration_Stat79: 3.84298756e-06 syst_JES_EtaIntercalibration_Stat8: 0.0 syst_JES_EtaIntercalibration_Stat80: 0.0 syst_JES_EtaIntercalibration_Stat81: 0.0 - syst_JES_EtaIntercalibration_Stat82: 1.1327612281500457e-09 - syst_JES_EtaIntercalibration_Stat83: 1.1327612281500457e-09 - syst_JES_EtaIntercalibration_Stat84: 1.1327612281500457e-09 + syst_JES_EtaIntercalibration_Stat82: 1.13276123e-09 + syst_JES_EtaIntercalibration_Stat83: 1.13276123e-09 + syst_JES_EtaIntercalibration_Stat84: 1.13276123e-09 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 7.214857638928158e-08 - syst_JES_EtaIntercalibration_Stat9: 0.000174136794505785 - syst_JES_EtaIntercalibration_Stat90: 7.214857638928158e-08 - syst_JES_EtaIntercalibration_Stat91: 5.6066484641004553e-08 - syst_JES_EtaIntercalibration_Stat92: 5.6066484641004553e-08 + syst_JES_EtaIntercalibration_Stat89: 7.21485764e-08 + syst_JES_EtaIntercalibration_Stat9: 1.74136795e-04 + syst_JES_EtaIntercalibration_Stat90: 7.21485764e-08 + syst_JES_EtaIntercalibration_Stat91: 5.60664846e-08 + syst_JES_EtaIntercalibration_Stat92: 5.60664846e-08 syst_JES_EtaIntercalibration_Stat93: 0.0 syst_JES_EtaIntercalibration_Stat94: 0.0 - syst_JES_EtaIntercalibration_Stat95: 0.0001778417814575641 - syst_JES_EtaIntercalibration_Stat96: 0.0005105121028927717 - syst_JES_EtaIntercalibration_Stat97: 0.0033703012847518545 - syst_JES_EtaIntercalibration_Stat98: 0.001571677030276895 - syst_JES_EtaIntercalibration_Stat99: 0.0011027578700694002 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.004572398385967697 - syst_JES_Flavour_Comp: 0.20529809424346834 - syst_JES_Gjet_Generator: 1.7526370845100818 - syst_JES_Gjet_OOC: 1.1422404858435022 - syst_JES_Gjet_Purity: 0.35097123813782805 - syst_JES_Gjet_Stat1: 2.253322189318862e-06 - syst_JES_Gjet_Stat10: 0.12772905963405506 - syst_JES_Gjet_Stat11: 0.17902703706423787 - syst_JES_Gjet_Stat12: 0.11898790316666649 - syst_JES_Gjet_Stat13: 0.03401702037216076 - syst_JES_Gjet_Stat14: 0.022403577281318268 - syst_JES_Gjet_Stat15: 0.0015877730277026375 - syst_JES_Gjet_Stat2: 0.0029566107285200734 - syst_JES_Gjet_Stat3: 0.003260639009458116 - syst_JES_Gjet_Stat4: 0.006037433291556934 - syst_JES_Gjet_Stat5: 0.004475106367450946 - syst_JES_Gjet_Stat6: 0.00927305920395206 - syst_JES_Gjet_Stat7: 0.017850616571984283 - syst_JES_Gjet_Stat8: 0.020425999975521397 - syst_JES_Gjet_Stat9: 0.06412587367825877 - syst_JES_Gjet_Veto: 0.4722957839108878 - syst_JES_Gjet_dPhi: 0.09396059067502716 - syst_JES_LArESZee: 2.0853759852841884 - syst_JES_LArEsmear: 0.16246651193399825 - syst_JES_LAr_JVT: 0.24040415969778894 - syst_JES_MJB_Alpha: 0.004181722645035178 - syst_JES_MJB_Asym: 0.008437491377773373 - syst_JES_MJB_Beta: 1.8374293863982908e-16 - syst_JES_MJB_Stat1: 0.010914945441915869 - syst_JES_MJB_Stat10: 6.674457786966668e-08 - syst_JES_MJB_Stat11: 9.380787173793039e-17 - syst_JES_MJB_Stat12: 8.14056853447182e-17 - syst_JES_MJB_Stat13: 1.173916073448183e-11 - syst_JES_MJB_Stat14: 6.718921251039392e-12 - syst_JES_MJB_Stat15: 7.625517293928327e-23 - syst_JES_MJB_Stat16: 1.07967541418706e-28 - syst_JES_MJB_Stat2: 0.007101997090959697 - syst_JES_MJB_Stat3: 0.0028062409019897062 - syst_JES_MJB_Stat4: 0.0009399758933079081 - syst_JES_MJB_Stat5: 0.0008007099100173546 - syst_JES_MJB_Stat6: 4.30414625680866e-05 - syst_JES_MJB_Stat7: 3.486614173581792e-21 - syst_JES_MJB_Stat8: 3.156662557517142e-33 - syst_JES_MJB_Stat9: 3.119423474409335e-33 - syst_JES_MJB_Threshold: 0.007153691844076036 - syst_JES_Pileup_MuOffset: 0.025854954554204886 - syst_JES_Pileup_NPVOffset: 0.08210933001188112 - syst_JES_Pileup_Pt_term: 0.22166801190067995 - syst_JES_PunchThrough_MC15: 0.0003367972847899868 + syst_JES_EtaIntercalibration_Stat95: 1.77841781e-04 + syst_JES_EtaIntercalibration_Stat96: 5.10512103e-04 + syst_JES_EtaIntercalibration_Stat97: 3.37030128e-03 + syst_JES_EtaIntercalibration_Stat98: 1.57167703e-03 + syst_JES_EtaIntercalibration_Stat99: 1.10275787e-03 + syst_JES_EtaIntercalibration_TotalStat_MJB: 4.57239839e-03 + syst_JES_Flavour_Comp: 2.05298094e-01 + syst_JES_Gjet_Generator: 1.75263708e+00 + syst_JES_Gjet_OOC: 1.14224049e+00 + syst_JES_Gjet_Purity: 3.50971238e-01 + syst_JES_Gjet_Stat1: 2.25332219e-06 + syst_JES_Gjet_Stat10: 1.27729060e-01 + syst_JES_Gjet_Stat11: 1.79027037e-01 + syst_JES_Gjet_Stat12: 1.18987903e-01 + syst_JES_Gjet_Stat13: 3.40170204e-02 + syst_JES_Gjet_Stat14: 2.24035773e-02 + syst_JES_Gjet_Stat15: 1.58777303e-03 + syst_JES_Gjet_Stat2: 2.95661073e-03 + syst_JES_Gjet_Stat3: 3.26063901e-03 + syst_JES_Gjet_Stat4: 6.03743329e-03 + syst_JES_Gjet_Stat5: 4.47510637e-03 + syst_JES_Gjet_Stat6: 9.27305920e-03 + syst_JES_Gjet_Stat7: 1.78506166e-02 + syst_JES_Gjet_Stat8: 2.04260000e-02 + syst_JES_Gjet_Stat9: 6.41258737e-02 + syst_JES_Gjet_Veto: 4.72295784e-01 + syst_JES_Gjet_dPhi: 9.39605907e-02 + syst_JES_LArESZee: 2.08537599e+00 + syst_JES_LArEsmear: 1.62466512e-01 + syst_JES_LAr_JVT: 2.40404160e-01 + syst_JES_MJB_Alpha: 4.18172265e-03 + syst_JES_MJB_Asym: 8.43749138e-03 + syst_JES_MJB_Beta: 1.83742939e-16 + syst_JES_MJB_Stat1: 1.09149454e-02 + syst_JES_MJB_Stat10: 6.67445779e-08 + syst_JES_MJB_Stat11: 9.38078717e-17 + syst_JES_MJB_Stat12: 8.14056853e-17 + syst_JES_MJB_Stat13: 1.17391607e-11 + syst_JES_MJB_Stat14: 6.71892125e-12 + syst_JES_MJB_Stat15: 7.62551729e-23 + syst_JES_MJB_Stat16: 1.07967541e-28 + syst_JES_MJB_Stat2: 7.10199709e-03 + syst_JES_MJB_Stat3: 2.80624090e-03 + syst_JES_MJB_Stat4: 9.39975893e-04 + syst_JES_MJB_Stat5: 8.00709910e-04 + syst_JES_MJB_Stat6: 4.30414626e-05 + syst_JES_MJB_Stat7: 3.48661417e-21 + syst_JES_MJB_Stat8: 3.15666256e-33 + syst_JES_MJB_Stat9: 3.11942347e-33 + syst_JES_MJB_Threshold: 7.15369184e-03 + syst_JES_Pileup_MuOffset: 2.58549546e-02 + syst_JES_Pileup_NPVOffset: 8.21093300e-02 + syst_JES_Pileup_Pt_term: 2.21668012e-01 + syst_JES_PunchThrough_MC15: 3.36797285e-04 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 1.6614069338966897 - syst_JES_Zjet_MuScale: 0.09793419972103719 - syst_JES_Zjet_MuSmearID: 0.017893621070090873 - syst_JES_Zjet_MuSmearMS: 0.22135326403737532 - syst_JES_Zjet_OOC: 0.5579000873812442 - syst_JES_Zjet_Stat1: 0.006662981389738381 - syst_JES_Zjet_Stat10: 0.11014425665916493 - syst_JES_Zjet_Stat11: 0.2045363231800161 - syst_JES_Zjet_Stat12: 0.44814721911443345 - syst_JES_Zjet_Stat13: 0.04420474862217859 + syst_JES_Zjet_MC: 1.66140693e+00 + syst_JES_Zjet_MuScale: 9.79341997e-02 + syst_JES_Zjet_MuSmearID: 1.78936211e-02 + syst_JES_Zjet_MuSmearMS: 2.21353264e-01 + syst_JES_Zjet_OOC: 5.57900087e-01 + syst_JES_Zjet_Stat1: 6.66298139e-03 + syst_JES_Zjet_Stat10: 1.10144257e-01 + syst_JES_Zjet_Stat11: 2.04536323e-01 + syst_JES_Zjet_Stat12: 4.48147219e-01 + syst_JES_Zjet_Stat13: 4.42047486e-02 syst_JES_Zjet_Stat2: 0.0 - syst_JES_Zjet_Stat3: 0.004610984087898238 - syst_JES_Zjet_Stat4: 0.004684589709889223 - syst_JES_Zjet_Stat5: 0.005238370070928551 - syst_JES_Zjet_Stat6: 0.007415247989784293 - syst_JES_Zjet_Stat7: 0.007774075941872448 - syst_JES_Zjet_Stat8: 0.009771425420582198 - syst_JES_Zjet_Stat9: 0.03869079057088391 - syst_JES_Zjet_Veto: 0.10649166481466989 - syst_JES_Zjet_dPhi: 0.09516853721162262 + syst_JES_Zjet_Stat3: 4.61098409e-03 + syst_JES_Zjet_Stat4: 4.68458971e-03 + syst_JES_Zjet_Stat5: 5.23837007e-03 + syst_JES_Zjet_Stat6: 7.41524799e-03 + syst_JES_Zjet_Stat7: 7.77407594e-03 + syst_JES_Zjet_Stat8: 9.77142542e-03 + syst_JES_Zjet_Stat9: 3.86907906e-02 + syst_JES_Zjet_Veto: 1.06491665e-01 + syst_JES_Zjet_dPhi: 9.51685372e-02 syst_PRW: 0.05258 syst_Unfolding_bias: 0.008886 - syst_cleaning: 0.4615915402171058 + syst_cleaning: 4.61591540e-01 syst_lumi: 2.019 - syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.016142329199963678 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.5463722357514151 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 0.13505173156979514 + syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.61423292e-02 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 5.46372236e-01 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 1.35051732e-01 syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 1.614871744133261 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0069515123534379195 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.19621067121846356 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 1.61487174e+00 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 6.95151235e-03 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.96210671e-01 - stat: 0.3396 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.2058281504070811 - syst_JER_NP1: 0.027491527331161503 - syst_JER_NP2: 0.020994215274689358 - syst_JER_NP3: 0.06450813437079078 - syst_JER_NP4: 0.04032652848932077 - syst_JER_NP5: 0.016806829147700646 - syst_JER_NP6: 0.018410830372365065 - syst_JER_NP7: 0.04994938713337733 - syst_JER_NP8: 0.04829057982671155 - syst_JES_EtaIntercalibration_Modelling: 0.06195165917875001 + syst_JER_NP0: 2.05828150e-01 + syst_JER_NP1: 2.74915273e-02 + syst_JER_NP2: 2.09942153e-02 + syst_JER_NP3: 6.45081344e-02 + syst_JER_NP4: 4.03265285e-02 + syst_JER_NP5: 1.68068291e-02 + syst_JER_NP6: 1.84108304e-02 + syst_JER_NP7: 4.99493871e-02 + syst_JER_NP8: 4.82905798e-02 + syst_JES_EtaIntercalibration_Modelling: 6.19516592e-02 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 - syst_JES_EtaIntercalibration_Stat10: 1.0010233392667475e-06 - syst_JES_EtaIntercalibration_Stat100: 1.888734475780013e-05 + syst_JES_EtaIntercalibration_Stat10: 1.00102334e-06 + syst_JES_EtaIntercalibration_Stat100: 1.88873448e-05 syst_JES_EtaIntercalibration_Stat101: 0.0 syst_JES_EtaIntercalibration_Stat102: 0.0 - syst_JES_EtaIntercalibration_Stat103: 1.0256338857019108e-10 - syst_JES_EtaIntercalibration_Stat104: 1.0256338857019108e-10 - syst_JES_EtaIntercalibration_Stat105: 1.0256338857019108e-10 + syst_JES_EtaIntercalibration_Stat103: 1.02563389e-10 + syst_JES_EtaIntercalibration_Stat104: 1.02563389e-10 + syst_JES_EtaIntercalibration_Stat105: 1.02563389e-10 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 6.6138360087017584e-09 - syst_JES_EtaIntercalibration_Stat11: 1.8195193733511056e-05 - syst_JES_EtaIntercalibration_Stat110: 6.5506903764030865e-09 - syst_JES_EtaIntercalibration_Stat111: 5.133798593634152e-09 - syst_JES_EtaIntercalibration_Stat112: 5.133798593634152e-09 + syst_JES_EtaIntercalibration_Stat109: 6.61383601e-09 + syst_JES_EtaIntercalibration_Stat11: 1.81951937e-05 + syst_JES_EtaIntercalibration_Stat110: 6.55069038e-09 + syst_JES_EtaIntercalibration_Stat111: 5.13379859e-09 + syst_JES_EtaIntercalibration_Stat112: 5.13379859e-09 syst_JES_EtaIntercalibration_Stat113: 0.0 - syst_JES_EtaIntercalibration_Stat114: 7.930194622454105e-09 - syst_JES_EtaIntercalibration_Stat115: 0.0001088085341322086 - syst_JES_EtaIntercalibration_Stat116: 0.004066082236010482 - syst_JES_EtaIntercalibration_Stat117: 0.003759156122057183 - syst_JES_EtaIntercalibration_Stat118: 0.005378867608521332 - syst_JES_EtaIntercalibration_Stat119: 0.004612164784567004 - syst_JES_EtaIntercalibration_Stat12: 0.00020899443607262294 - syst_JES_EtaIntercalibration_Stat120: 5.476120740770788e-05 - syst_JES_EtaIntercalibration_Stat121: 6.966308348042024e-08 + syst_JES_EtaIntercalibration_Stat114: 7.93019462e-09 + syst_JES_EtaIntercalibration_Stat115: 1.08808534e-04 + syst_JES_EtaIntercalibration_Stat116: 4.06608224e-03 + syst_JES_EtaIntercalibration_Stat117: 3.75915612e-03 + syst_JES_EtaIntercalibration_Stat118: 5.37886761e-03 + syst_JES_EtaIntercalibration_Stat119: 4.61216478e-03 + syst_JES_EtaIntercalibration_Stat12: 2.08994436e-04 + syst_JES_EtaIntercalibration_Stat120: 5.47612074e-05 + syst_JES_EtaIntercalibration_Stat121: 6.96630835e-08 syst_JES_EtaIntercalibration_Stat122: 0.0 - syst_JES_EtaIntercalibration_Stat123: 1.0256338857019108e-10 - syst_JES_EtaIntercalibration_Stat124: 1.0256338857019108e-10 - syst_JES_EtaIntercalibration_Stat125: 1.0256338857019108e-10 + syst_JES_EtaIntercalibration_Stat123: 1.02563389e-10 + syst_JES_EtaIntercalibration_Stat124: 1.02563389e-10 + syst_JES_EtaIntercalibration_Stat125: 1.02563389e-10 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 6.6138360087017584e-09 - syst_JES_EtaIntercalibration_Stat129: 6.5506903764030865e-09 + syst_JES_EtaIntercalibration_Stat128: 6.61383601e-09 + syst_JES_EtaIntercalibration_Stat129: 6.55069038e-09 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 1.9736718952247358e-10 + syst_JES_EtaIntercalibration_Stat130: 1.97367190e-10 syst_JES_EtaIntercalibration_Stat131: 0.0 syst_JES_EtaIntercalibration_Stat132: 0.0 - syst_JES_EtaIntercalibration_Stat133: 7.930194622454105e-09 - syst_JES_EtaIntercalibration_Stat134: 0.0007324454024021177 - syst_JES_EtaIntercalibration_Stat135: 0.022607956011103703 - syst_JES_EtaIntercalibration_Stat136: 0.03860754718963638 - syst_JES_EtaIntercalibration_Stat137: 0.03825679939566299 - syst_JES_EtaIntercalibration_Stat138: 0.02526241674899692 - syst_JES_EtaIntercalibration_Stat139: 0.00032623858121779526 + syst_JES_EtaIntercalibration_Stat133: 7.93019462e-09 + syst_JES_EtaIntercalibration_Stat134: 7.32445402e-04 + syst_JES_EtaIntercalibration_Stat135: 2.26079560e-02 + syst_JES_EtaIntercalibration_Stat136: 3.86075472e-02 + syst_JES_EtaIntercalibration_Stat137: 3.82567994e-02 + syst_JES_EtaIntercalibration_Stat138: 2.52624167e-02 + syst_JES_EtaIntercalibration_Stat139: 3.26238581e-04 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 6.966308348042024e-08 + syst_JES_EtaIntercalibration_Stat140: 6.96630835e-08 syst_JES_EtaIntercalibration_Stat141: 0.0 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 1.0256338857019108e-10 - syst_JES_EtaIntercalibration_Stat144: 1.0256338857019108e-10 + syst_JES_EtaIntercalibration_Stat143: 1.02563389e-10 + syst_JES_EtaIntercalibration_Stat144: 1.02563389e-10 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 1.9736718952247358e-10 - syst_JES_EtaIntercalibration_Stat148: 1.9736718952247358e-10 + syst_JES_EtaIntercalibration_Stat147: 1.97367190e-10 + syst_JES_EtaIntercalibration_Stat148: 1.97367190e-10 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 syst_JES_EtaIntercalibration_Stat150: 0.0 syst_JES_EtaIntercalibration_Stat151: 0.0 - syst_JES_EtaIntercalibration_Stat152: 0.0013258322183555835 - syst_JES_EtaIntercalibration_Stat153: 0.03093219681820223 - syst_JES_EtaIntercalibration_Stat154: 0.04646074337545623 - syst_JES_EtaIntercalibration_Stat155: 0.042260462314082654 - syst_JES_EtaIntercalibration_Stat156: 0.030722737508236467 - syst_JES_EtaIntercalibration_Stat157: 0.0005257484260556564 + syst_JES_EtaIntercalibration_Stat152: 1.32583222e-03 + syst_JES_EtaIntercalibration_Stat153: 3.09321968e-02 + syst_JES_EtaIntercalibration_Stat154: 4.64607434e-02 + syst_JES_EtaIntercalibration_Stat155: 4.22604623e-02 + syst_JES_EtaIntercalibration_Stat156: 3.07227375e-02 + syst_JES_EtaIntercalibration_Stat157: 5.25748426e-04 syst_JES_EtaIntercalibration_Stat158: 0.0 syst_JES_EtaIntercalibration_Stat159: 0.0 syst_JES_EtaIntercalibration_Stat16: 0.0 @@ -4534,18 +4534,18 @@ bins: syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 1.9736718952247358e-10 + syst_JES_EtaIntercalibration_Stat165: 1.97367190e-10 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 0.0011301145207455747 - syst_JES_EtaIntercalibration_Stat171: 0.042431179573516456 - syst_JES_EtaIntercalibration_Stat172: 0.06355846049111007 - syst_JES_EtaIntercalibration_Stat173: 0.06702645056244587 - syst_JES_EtaIntercalibration_Stat174: 0.04426303297335148 - syst_JES_EtaIntercalibration_Stat175: 0.0006564166416994621 + syst_JES_EtaIntercalibration_Stat170: 1.13011452e-03 + syst_JES_EtaIntercalibration_Stat171: 4.24311796e-02 + syst_JES_EtaIntercalibration_Stat172: 6.35584605e-02 + syst_JES_EtaIntercalibration_Stat173: 6.70264506e-02 + syst_JES_EtaIntercalibration_Stat174: 4.42630330e-02 + syst_JES_EtaIntercalibration_Stat175: 6.56416642e-04 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 syst_JES_EtaIntercalibration_Stat178: 0.0 @@ -4558,14 +4558,14 @@ bins: syst_JES_EtaIntercalibration_Stat184: 0.0 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 - syst_JES_EtaIntercalibration_Stat187: 3.5491635512493293e-05 - syst_JES_EtaIntercalibration_Stat188: 0.05218153983929566 - syst_JES_EtaIntercalibration_Stat189: 0.07287461629401557 + syst_JES_EtaIntercalibration_Stat187: 3.54916355e-05 + syst_JES_EtaIntercalibration_Stat188: 5.21815398e-02 + syst_JES_EtaIntercalibration_Stat189: 7.28746163e-02 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 0.07660766590231032 - syst_JES_EtaIntercalibration_Stat191: 0.05263351855044464 - syst_JES_EtaIntercalibration_Stat192: 0.001945760198482845 - syst_JES_EtaIntercalibration_Stat193: 2.434397410038057e-05 + syst_JES_EtaIntercalibration_Stat190: 7.66076659e-02 + syst_JES_EtaIntercalibration_Stat191: 5.26335186e-02 + syst_JES_EtaIntercalibration_Stat192: 1.94576020e-03 + syst_JES_EtaIntercalibration_Stat193: 2.43439741e-05 syst_JES_EtaIntercalibration_Stat194: 0.0 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 @@ -4576,13 +4576,13 @@ bins: syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 syst_JES_EtaIntercalibration_Stat201: 0.0 - syst_JES_EtaIntercalibration_Stat202: 0.0006911360358135003 - syst_JES_EtaIntercalibration_Stat203: 0.0027040506961778657 - syst_JES_EtaIntercalibration_Stat204: 0.00855314063663167 - syst_JES_EtaIntercalibration_Stat205: 0.001330423459532716 - syst_JES_EtaIntercalibration_Stat206: 0.0009523615017418543 - syst_JES_EtaIntercalibration_Stat207: 0.00015471499562744396 - syst_JES_EtaIntercalibration_Stat208: 2.434397410038057e-05 + syst_JES_EtaIntercalibration_Stat202: 6.91136036e-04 + syst_JES_EtaIntercalibration_Stat203: 2.70405070e-03 + syst_JES_EtaIntercalibration_Stat204: 8.55314064e-03 + syst_JES_EtaIntercalibration_Stat205: 1.33042346e-03 + syst_JES_EtaIntercalibration_Stat206: 9.52361502e-04 + syst_JES_EtaIntercalibration_Stat207: 1.54714996e-04 + syst_JES_EtaIntercalibration_Stat208: 2.43439741e-05 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 @@ -4590,38 +4590,38 @@ bins: syst_JES_EtaIntercalibration_Stat212: 0.0 syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 - syst_JES_EtaIntercalibration_Stat215: 0.00011762834819889294 - syst_JES_EtaIntercalibration_Stat216: 0.002027954881154904 - syst_JES_EtaIntercalibration_Stat217: 0.003025793243101716 - syst_JES_EtaIntercalibration_Stat218: 0.0034110445247753658 - syst_JES_EtaIntercalibration_Stat219: 0.0031177159909138615 + syst_JES_EtaIntercalibration_Stat215: 1.17628348e-04 + syst_JES_EtaIntercalibration_Stat216: 2.02795488e-03 + syst_JES_EtaIntercalibration_Stat217: 3.02579324e-03 + syst_JES_EtaIntercalibration_Stat218: 3.41104452e-03 + syst_JES_EtaIntercalibration_Stat219: 3.11771599e-03 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 6.705446443004374e-05 + syst_JES_EtaIntercalibration_Stat220: 6.70544644e-05 syst_JES_EtaIntercalibration_Stat221: 0.0 syst_JES_EtaIntercalibration_Stat222: 0.0 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 - syst_JES_EtaIntercalibration_Stat227: 1.2955583355332707e-08 - syst_JES_EtaIntercalibration_Stat228: 6.456067436915448e-06 - syst_JES_EtaIntercalibration_Stat229: 2.24972548714282e-05 + syst_JES_EtaIntercalibration_Stat227: 1.29555834e-08 + syst_JES_EtaIntercalibration_Stat228: 6.45606744e-06 + syst_JES_EtaIntercalibration_Stat229: 2.24972549e-05 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 0.0001297180599415517 - syst_JES_EtaIntercalibration_Stat231: 0.00013119334358114364 - syst_JES_EtaIntercalibration_Stat232: 2.347794869659613e-05 + syst_JES_EtaIntercalibration_Stat230: 1.29718060e-04 + syst_JES_EtaIntercalibration_Stat231: 1.31193344e-04 + syst_JES_EtaIntercalibration_Stat232: 2.34779487e-05 syst_JES_EtaIntercalibration_Stat233: 0.0 syst_JES_EtaIntercalibration_Stat234: 0.0 syst_JES_EtaIntercalibration_Stat235: 0.0 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 - syst_JES_EtaIntercalibration_Stat238: 3.363815873379517e-33 - syst_JES_EtaIntercalibration_Stat239: 1.3231313063263033e-09 + syst_JES_EtaIntercalibration_Stat238: 3.36381587e-33 + syst_JES_EtaIntercalibration_Stat239: 1.32313131e-09 syst_JES_EtaIntercalibration_Stat24: 0.0 - syst_JES_EtaIntercalibration_Stat240: 1.4946722094409195e-09 - syst_JES_EtaIntercalibration_Stat241: 1.985827472365109e-09 - syst_JES_EtaIntercalibration_Stat242: 1.1383432092629182e-11 - syst_JES_EtaIntercalibration_Stat243: 2.5383204584921897e-33 + syst_JES_EtaIntercalibration_Stat240: 1.49467221e-09 + syst_JES_EtaIntercalibration_Stat241: 1.98582747e-09 + syst_JES_EtaIntercalibration_Stat242: 1.13834321e-11 + syst_JES_EtaIntercalibration_Stat243: 2.53832046e-33 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 syst_JES_EtaIntercalibration_Stat25: 0.0 @@ -4630,12 +4630,12 @@ bins: syst_JES_EtaIntercalibration_Stat28: 0.0 syst_JES_EtaIntercalibration_Stat29: 0.0 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 7.698675073023929e-09 - syst_JES_EtaIntercalibration_Stat31: 0.0002384706254447285 - syst_JES_EtaIntercalibration_Stat32: 2.6931338102663966e-05 - syst_JES_EtaIntercalibration_Stat33: 0.00021408392139618402 - syst_JES_EtaIntercalibration_Stat34: 5.1250530396352976e-05 - syst_JES_EtaIntercalibration_Stat35: 6.846991633594645e-08 + syst_JES_EtaIntercalibration_Stat30: 7.69867507e-09 + syst_JES_EtaIntercalibration_Stat31: 2.38470625e-04 + syst_JES_EtaIntercalibration_Stat32: 2.69313381e-05 + syst_JES_EtaIntercalibration_Stat33: 2.14083921e-04 + syst_JES_EtaIntercalibration_Stat34: 5.12505304e-05 + syst_JES_EtaIntercalibration_Stat35: 6.84699163e-08 syst_JES_EtaIntercalibration_Stat36: 0.0 syst_JES_EtaIntercalibration_Stat37: 0.0 syst_JES_EtaIntercalibration_Stat38: 0.0 @@ -4654,220 +4654,220 @@ bins: syst_JES_EtaIntercalibration_Stat5: 0.0 syst_JES_EtaIntercalibration_Stat50: 0.0 syst_JES_EtaIntercalibration_Stat51: 0.0 - syst_JES_EtaIntercalibration_Stat52: 7.04563491427139e-08 - syst_JES_EtaIntercalibration_Stat53: 5.046650897377388e-05 - syst_JES_EtaIntercalibration_Stat54: 0.0002212013803641379 - syst_JES_EtaIntercalibration_Stat55: 0.0002784302150898857 - syst_JES_EtaIntercalibration_Stat56: 6.298259273799387e-05 - syst_JES_EtaIntercalibration_Stat57: 5.034459872468942e-07 + syst_JES_EtaIntercalibration_Stat52: 7.04563491e-08 + syst_JES_EtaIntercalibration_Stat53: 5.04665090e-05 + syst_JES_EtaIntercalibration_Stat54: 2.21201380e-04 + syst_JES_EtaIntercalibration_Stat55: 2.78430215e-04 + syst_JES_EtaIntercalibration_Stat56: 6.29825927e-05 + syst_JES_EtaIntercalibration_Stat57: 5.03445987e-07 syst_JES_EtaIntercalibration_Stat58: 0.0 syst_JES_EtaIntercalibration_Stat59: 0.0 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 1.0256338857019108e-10 - syst_JES_EtaIntercalibration_Stat62: 1.0256338857019108e-10 + syst_JES_EtaIntercalibration_Stat61: 1.02563389e-10 + syst_JES_EtaIntercalibration_Stat62: 1.02563389e-10 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 6.6138360087017584e-09 - syst_JES_EtaIntercalibration_Stat69: 6.6138360087017584e-09 + syst_JES_EtaIntercalibration_Stat68: 6.61383601e-09 + syst_JES_EtaIntercalibration_Stat69: 6.61383601e-09 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 5.133798593634152e-09 - syst_JES_EtaIntercalibration_Stat71: 5.133798593634152e-09 + syst_JES_EtaIntercalibration_Stat70: 5.13379859e-09 + syst_JES_EtaIntercalibration_Stat71: 5.13379859e-09 syst_JES_EtaIntercalibration_Stat72: 0.0 syst_JES_EtaIntercalibration_Stat73: 0.0 - syst_JES_EtaIntercalibration_Stat74: 5.525665211417988e-05 - syst_JES_EtaIntercalibration_Stat75: 0.0001575090711673458 - syst_JES_EtaIntercalibration_Stat76: 6.883117226228245e-05 - syst_JES_EtaIntercalibration_Stat77: 0.00011963921932209354 - syst_JES_EtaIntercalibration_Stat78: 0.00016121467224402994 - syst_JES_EtaIntercalibration_Stat79: 5.529045555066444e-07 + syst_JES_EtaIntercalibration_Stat74: 5.52566521e-05 + syst_JES_EtaIntercalibration_Stat75: 1.57509071e-04 + syst_JES_EtaIntercalibration_Stat76: 6.88311723e-05 + syst_JES_EtaIntercalibration_Stat77: 1.19639219e-04 + syst_JES_EtaIntercalibration_Stat78: 1.61214672e-04 + syst_JES_EtaIntercalibration_Stat79: 5.52904556e-07 syst_JES_EtaIntercalibration_Stat8: 0.0 syst_JES_EtaIntercalibration_Stat80: 0.0 syst_JES_EtaIntercalibration_Stat81: 0.0 - syst_JES_EtaIntercalibration_Stat82: 1.0256338857019108e-10 - syst_JES_EtaIntercalibration_Stat83: 1.0256338857019108e-10 - syst_JES_EtaIntercalibration_Stat84: 1.0256338857019108e-10 + syst_JES_EtaIntercalibration_Stat82: 1.02563389e-10 + syst_JES_EtaIntercalibration_Stat83: 1.02563389e-10 + syst_JES_EtaIntercalibration_Stat84: 1.02563389e-10 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 6.6138360087017584e-09 - syst_JES_EtaIntercalibration_Stat9: 5.499759979153635e-05 - syst_JES_EtaIntercalibration_Stat90: 6.6138360087017584e-09 - syst_JES_EtaIntercalibration_Stat91: 5.133798593634152e-09 - syst_JES_EtaIntercalibration_Stat92: 5.133798593634152e-09 + syst_JES_EtaIntercalibration_Stat89: 6.61383601e-09 + syst_JES_EtaIntercalibration_Stat9: 5.49975998e-05 + syst_JES_EtaIntercalibration_Stat90: 6.61383601e-09 + syst_JES_EtaIntercalibration_Stat91: 5.13379859e-09 + syst_JES_EtaIntercalibration_Stat92: 5.13379859e-09 syst_JES_EtaIntercalibration_Stat93: 0.0 syst_JES_EtaIntercalibration_Stat94: 0.0 - syst_JES_EtaIntercalibration_Stat95: 5.530753671433487e-05 - syst_JES_EtaIntercalibration_Stat96: 9.851023436679055e-05 - syst_JES_EtaIntercalibration_Stat97: 0.001269796915849145 - syst_JES_EtaIntercalibration_Stat98: 0.000241324858852129 - syst_JES_EtaIntercalibration_Stat99: 0.00017738251548560246 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.03439660266654253 - syst_JES_Flavour_Comp: 0.187569107264496 - syst_JES_Gjet_Generator: 1.041594080004298 - syst_JES_Gjet_OOC: 0.7002972136885881 - syst_JES_Gjet_Purity: 0.2296505334198029 - syst_JES_Gjet_Stat1: 2.9583925228003046e-05 - syst_JES_Gjet_Stat10: 0.0659748012501743 - syst_JES_Gjet_Stat11: 0.11007559129979724 - syst_JES_Gjet_Stat12: 0.10540803859288911 - syst_JES_Gjet_Stat13: 0.010521167663334713 - syst_JES_Gjet_Stat14: 0.025230099088192265 - syst_JES_Gjet_Stat15: 0.00026944622376273903 - syst_JES_Gjet_Stat2: 0.0016134053272504093 - syst_JES_Gjet_Stat3: 0.001937714310727977 - syst_JES_Gjet_Stat4: 0.0025345308737515907 - syst_JES_Gjet_Stat5: 0.0023764183133446856 - syst_JES_Gjet_Stat6: 0.005039550649611531 - syst_JES_Gjet_Stat7: 0.009479540323770979 - syst_JES_Gjet_Stat8: 0.010583008492390054 - syst_JES_Gjet_Stat9: 0.03152840148183857 - syst_JES_Gjet_Veto: 0.30625183672918604 - syst_JES_Gjet_dPhi: 0.05040033531634487 - syst_JES_LArESZee: 1.3094664361868922 - syst_JES_LArEsmear: 0.1030236393989263 - syst_JES_LAr_JVT: 0.14742197936535786 - syst_JES_MJB_Alpha: 0.004833747304110963 - syst_JES_MJB_Asym: 0.016567536781308196 - syst_JES_MJB_Beta: 2.1839617670646158e-12 - syst_JES_MJB_Stat1: 0.007650874116726793 - syst_JES_MJB_Stat10: 8.766775162509873e-07 - syst_JES_MJB_Stat11: 1.1150943099128433e-12 - syst_JES_MJB_Stat12: 9.67682711906856e-13 - syst_JES_MJB_Stat13: 2.606700788352971e-09 - syst_JES_MJB_Stat14: 1.4898516363057767e-09 - syst_JES_MJB_Stat15: 1.0932186698003287e-17 - syst_JES_MJB_Stat16: 2.7236982211691516e-22 - syst_JES_MJB_Stat2: 0.004083435410288744 - syst_JES_MJB_Stat3: 0.004487282481265805 - syst_JES_MJB_Stat4: 0.0019309335728346533 - syst_JES_MJB_Stat5: 0.0009546783437367793 - syst_JES_MJB_Stat6: 5.114746034731435e-05 - syst_JES_MJB_Stat7: 4.997729123776286e-16 - syst_JES_MJB_Stat8: 2.120029084284216e-25 - syst_JES_MJB_Stat9: 2.0957806324962593e-25 - syst_JES_MJB_Threshold: 0.01520273221332271 - syst_JES_Pileup_MuOffset: 0.035045308887210566 - syst_JES_Pileup_NPVOffset: 0.06856101716719203 - syst_JES_Pileup_Pt_term: 0.13692051444177383 - syst_JES_PunchThrough_MC15: 0.0015754572304810435 + syst_JES_EtaIntercalibration_Stat95: 5.53075367e-05 + syst_JES_EtaIntercalibration_Stat96: 9.85102344e-05 + syst_JES_EtaIntercalibration_Stat97: 1.26979692e-03 + syst_JES_EtaIntercalibration_Stat98: 2.41324859e-04 + syst_JES_EtaIntercalibration_Stat99: 1.77382515e-04 + syst_JES_EtaIntercalibration_TotalStat_MJB: 3.43966027e-02 + syst_JES_Flavour_Comp: 1.87569107e-01 + syst_JES_Gjet_Generator: 1.04159408e+00 + syst_JES_Gjet_OOC: 7.00297214e-01 + syst_JES_Gjet_Purity: 2.29650533e-01 + syst_JES_Gjet_Stat1: 2.95839252e-05 + syst_JES_Gjet_Stat10: 6.59748013e-02 + syst_JES_Gjet_Stat11: 1.10075591e-01 + syst_JES_Gjet_Stat12: 1.05408039e-01 + syst_JES_Gjet_Stat13: 1.05211677e-02 + syst_JES_Gjet_Stat14: 2.52300991e-02 + syst_JES_Gjet_Stat15: 2.69446224e-04 + syst_JES_Gjet_Stat2: 1.61340533e-03 + syst_JES_Gjet_Stat3: 1.93771431e-03 + syst_JES_Gjet_Stat4: 2.53453087e-03 + syst_JES_Gjet_Stat5: 2.37641831e-03 + syst_JES_Gjet_Stat6: 5.03955065e-03 + syst_JES_Gjet_Stat7: 9.47954032e-03 + syst_JES_Gjet_Stat8: 1.05830085e-02 + syst_JES_Gjet_Stat9: 3.15284015e-02 + syst_JES_Gjet_Veto: 3.06251837e-01 + syst_JES_Gjet_dPhi: 5.04003353e-02 + syst_JES_LArESZee: 1.30946644e+00 + syst_JES_LArEsmear: 1.03023639e-01 + syst_JES_LAr_JVT: 1.47421979e-01 + syst_JES_MJB_Alpha: 4.83374730e-03 + syst_JES_MJB_Asym: 1.65675368e-02 + syst_JES_MJB_Beta: 2.18396177e-12 + syst_JES_MJB_Stat1: 7.65087412e-03 + syst_JES_MJB_Stat10: 8.76677516e-07 + syst_JES_MJB_Stat11: 1.11509431e-12 + syst_JES_MJB_Stat12: 9.67682712e-13 + syst_JES_MJB_Stat13: 2.60670079e-09 + syst_JES_MJB_Stat14: 1.48985164e-09 + syst_JES_MJB_Stat15: 1.09321867e-17 + syst_JES_MJB_Stat16: 2.72369822e-22 + syst_JES_MJB_Stat2: 4.08343541e-03 + syst_JES_MJB_Stat3: 4.48728248e-03 + syst_JES_MJB_Stat4: 1.93093357e-03 + syst_JES_MJB_Stat5: 9.54678344e-04 + syst_JES_MJB_Stat6: 5.11474603e-05 + syst_JES_MJB_Stat7: 4.99772912e-16 + syst_JES_MJB_Stat8: 2.12002908e-25 + syst_JES_MJB_Stat9: 2.09578063e-25 + syst_JES_MJB_Threshold: 1.52027322e-02 + syst_JES_Pileup_MuOffset: 3.50453089e-02 + syst_JES_Pileup_NPVOffset: 6.85610172e-02 + syst_JES_Pileup_Pt_term: 1.36920514e-01 + syst_JES_PunchThrough_MC15: 1.57545723e-03 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.9837517369743243 - syst_JES_Zjet_MuScale: 0.05804655437663807 - syst_JES_Zjet_MuSmearID: 0.010304818484573127 - syst_JES_Zjet_MuSmearMS: 0.15437217203887493 + syst_JES_Zjet_MC: 9.83751737e-01 + syst_JES_Zjet_MuScale: 5.80465544e-02 + syst_JES_Zjet_MuSmearID: 1.03048185e-02 + syst_JES_Zjet_MuSmearMS: 1.54372172e-01 syst_JES_Zjet_OOC: 0.345 - syst_JES_Zjet_Stat1: 0.0044185937525416386 - syst_JES_Zjet_Stat10: 0.049925004506759935 - syst_JES_Zjet_Stat11: 0.08581354729878028 - syst_JES_Zjet_Stat12: 0.316306196588053 - syst_JES_Zjet_Stat13: 0.05424976751102257 + syst_JES_Zjet_Stat1: 4.41859375e-03 + syst_JES_Zjet_Stat10: 4.99250045e-02 + syst_JES_Zjet_Stat11: 8.58135473e-02 + syst_JES_Zjet_Stat12: 3.16306197e-01 + syst_JES_Zjet_Stat13: 5.42497675e-02 syst_JES_Zjet_Stat2: 0.0 - syst_JES_Zjet_Stat3: 0.002711652619400206 - syst_JES_Zjet_Stat4: 0.0027895753709122114 - syst_JES_Zjet_Stat5: 0.003114505739278706 - syst_JES_Zjet_Stat6: 0.004416380418396947 - syst_JES_Zjet_Stat7: 0.003805545690173749 - syst_JES_Zjet_Stat8: 0.0053133065740647795 - syst_JES_Zjet_Stat9: 0.01829503416230754 - syst_JES_Zjet_Veto: 0.06805263110269873 - syst_JES_Zjet_dPhi: 0.0592857409079114 + syst_JES_Zjet_Stat3: 2.71165262e-03 + syst_JES_Zjet_Stat4: 2.78957537e-03 + syst_JES_Zjet_Stat5: 3.11450574e-03 + syst_JES_Zjet_Stat6: 4.41638042e-03 + syst_JES_Zjet_Stat7: 3.80554569e-03 + syst_JES_Zjet_Stat8: 5.31330657e-03 + syst_JES_Zjet_Stat9: 1.82950342e-02 + syst_JES_Zjet_Veto: 6.80526311e-02 + syst_JES_Zjet_dPhi: 5.92857409e-02 syst_PRW: 0.0315 syst_Unfolding_bias: 0.005196 - syst_cleaning: 0.2740970402977748 + syst_cleaning: 2.74097040e-01 syst_lumi: 1.201 - syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.04569876885650203 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.3205001248049679 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 0.07516077767027161 + syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 4.56987689e-02 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 3.20500125e-01 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 7.51607777e-02 syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 0.8987785864716626 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.021001718977264692 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.1255750336452274 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 8.98778586e-01 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 2.10017190e-02 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.25575034e-01 - stat: 0.16294 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.12022491952586203 - syst_JER_NP1: 0.014340795610774181 - syst_JER_NP2: 0.012904491427406194 - syst_JER_NP3: 0.03503580950970022 - syst_JER_NP4: 0.02158161022722818 - syst_JER_NP5: 0.010408001681398788 - syst_JER_NP6: 0.008090171119945486 - syst_JER_NP7: 0.021944129055398852 - syst_JER_NP8: 0.02670013295847045 - syst_JES_EtaIntercalibration_Modelling: 0.07429530587459748 + syst_JER_NP0: 1.20224920e-01 + syst_JER_NP1: 1.43407956e-02 + syst_JER_NP2: 1.29044914e-02 + syst_JER_NP3: 3.50358095e-02 + syst_JER_NP4: 2.15816102e-02 + syst_JER_NP5: 1.04080017e-02 + syst_JER_NP6: 8.09017112e-03 + syst_JER_NP7: 2.19441291e-02 + syst_JER_NP8: 2.67001330e-02 + syst_JES_EtaIntercalibration_Modelling: 7.42953059e-02 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 - syst_JES_EtaIntercalibration_Stat10: 1.2933956352744508e-07 - syst_JES_EtaIntercalibration_Stat100: 8.410672743603808e-07 + syst_JES_EtaIntercalibration_Stat10: 1.29339564e-07 + syst_JES_EtaIntercalibration_Stat100: 8.41067274e-07 syst_JES_EtaIntercalibration_Stat101: 0.0 syst_JES_EtaIntercalibration_Stat102: 0.0 - syst_JES_EtaIntercalibration_Stat103: 1.0691949635122679e-11 - syst_JES_EtaIntercalibration_Stat104: 1.0691949635122679e-11 - syst_JES_EtaIntercalibration_Stat105: 1.0691949635122679e-11 + syst_JES_EtaIntercalibration_Stat103: 1.06919496e-11 + syst_JES_EtaIntercalibration_Stat104: 1.06919496e-11 + syst_JES_EtaIntercalibration_Stat105: 1.06919496e-11 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 6.754998149518621e-10 - syst_JES_EtaIntercalibration_Stat11: 5.893302872753105e-07 - syst_JES_EtaIntercalibration_Stat110: 6.689593622186628e-10 - syst_JES_EtaIntercalibration_Stat111: 5.253310099356404e-10 - syst_JES_EtaIntercalibration_Stat112: 5.253310099356404e-10 + syst_JES_EtaIntercalibration_Stat109: 6.75499815e-10 + syst_JES_EtaIntercalibration_Stat11: 5.89330287e-07 + syst_JES_EtaIntercalibration_Stat110: 6.68959362e-10 + syst_JES_EtaIntercalibration_Stat111: 5.25331010e-10 + syst_JES_EtaIntercalibration_Stat112: 5.25331010e-10 syst_JES_EtaIntercalibration_Stat113: 0.0 - syst_JES_EtaIntercalibration_Stat114: 8.092141372961795e-10 - syst_JES_EtaIntercalibration_Stat115: 2.6377966183919487e-05 - syst_JES_EtaIntercalibration_Stat116: 0.0011446335865682084 - syst_JES_EtaIntercalibration_Stat117: 0.001404307041746925 - syst_JES_EtaIntercalibration_Stat118: 0.0018983220880556596 - syst_JES_EtaIntercalibration_Stat119: 0.0012084647977909824 - syst_JES_EtaIntercalibration_Stat12: 0.0001449750080469974 - syst_JES_EtaIntercalibration_Stat120: 5.283997126229347e-05 - syst_JES_EtaIntercalibration_Stat121: 7.28933582365362e-09 + syst_JES_EtaIntercalibration_Stat114: 8.09214137e-10 + syst_JES_EtaIntercalibration_Stat115: 2.63779662e-05 + syst_JES_EtaIntercalibration_Stat116: 1.14463359e-03 + syst_JES_EtaIntercalibration_Stat117: 1.40430704e-03 + syst_JES_EtaIntercalibration_Stat118: 1.89832209e-03 + syst_JES_EtaIntercalibration_Stat119: 1.20846480e-03 + syst_JES_EtaIntercalibration_Stat12: 1.44975008e-04 + syst_JES_EtaIntercalibration_Stat120: 5.28399713e-05 + syst_JES_EtaIntercalibration_Stat121: 7.28933582e-09 syst_JES_EtaIntercalibration_Stat122: 0.0 - syst_JES_EtaIntercalibration_Stat123: 1.0691949635122679e-11 - syst_JES_EtaIntercalibration_Stat124: 1.0691949635122679e-11 - syst_JES_EtaIntercalibration_Stat125: 1.0691949635122679e-11 + syst_JES_EtaIntercalibration_Stat123: 1.06919496e-11 + syst_JES_EtaIntercalibration_Stat124: 1.06919496e-11 + syst_JES_EtaIntercalibration_Stat125: 1.06919496e-11 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 6.754998149518621e-10 - syst_JES_EtaIntercalibration_Stat129: 6.689593622186628e-10 + syst_JES_EtaIntercalibration_Stat128: 6.75499815e-10 + syst_JES_EtaIntercalibration_Stat129: 6.68959362e-10 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 2.0455520037388443e-11 + syst_JES_EtaIntercalibration_Stat130: 2.04555200e-11 syst_JES_EtaIntercalibration_Stat131: 0.0 syst_JES_EtaIntercalibration_Stat132: 0.0 - syst_JES_EtaIntercalibration_Stat133: 8.092141372961795e-10 - syst_JES_EtaIntercalibration_Stat134: 0.00014272915189266695 - syst_JES_EtaIntercalibration_Stat135: 0.008157842913417737 - syst_JES_EtaIntercalibration_Stat136: 0.01450135166113835 - syst_JES_EtaIntercalibration_Stat137: 0.0137712935757684 - syst_JES_EtaIntercalibration_Stat138: 0.00884546934876833 - syst_JES_EtaIntercalibration_Stat139: 0.00012131494672957657 + syst_JES_EtaIntercalibration_Stat133: 8.09214137e-10 + syst_JES_EtaIntercalibration_Stat134: 1.42729152e-04 + syst_JES_EtaIntercalibration_Stat135: 8.15784291e-03 + syst_JES_EtaIntercalibration_Stat136: 1.45013517e-02 + syst_JES_EtaIntercalibration_Stat137: 1.37712936e-02 + syst_JES_EtaIntercalibration_Stat138: 8.84546935e-03 + syst_JES_EtaIntercalibration_Stat139: 1.21314947e-04 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 7.28933582365362e-09 + syst_JES_EtaIntercalibration_Stat140: 7.28933582e-09 syst_JES_EtaIntercalibration_Stat141: 0.0 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 1.0691949635122679e-11 - syst_JES_EtaIntercalibration_Stat144: 1.0691949635122679e-11 + syst_JES_EtaIntercalibration_Stat143: 1.06919496e-11 + syst_JES_EtaIntercalibration_Stat144: 1.06919496e-11 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 2.0455520037388443e-11 - syst_JES_EtaIntercalibration_Stat148: 2.0455520037388443e-11 + syst_JES_EtaIntercalibration_Stat147: 2.04555200e-11 + syst_JES_EtaIntercalibration_Stat148: 2.04555200e-11 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 syst_JES_EtaIntercalibration_Stat150: 0.0 syst_JES_EtaIntercalibration_Stat151: 0.0 - syst_JES_EtaIntercalibration_Stat152: 0.0004315349654977053 - syst_JES_EtaIntercalibration_Stat153: 0.012973922190301591 - syst_JES_EtaIntercalibration_Stat154: 0.018860267760559497 - syst_JES_EtaIntercalibration_Stat155: 0.016471967095644646 - syst_JES_EtaIntercalibration_Stat156: 0.012101047599278337 - syst_JES_EtaIntercalibration_Stat157: 0.00018263161692324797 + syst_JES_EtaIntercalibration_Stat152: 4.31534965e-04 + syst_JES_EtaIntercalibration_Stat153: 1.29739222e-02 + syst_JES_EtaIntercalibration_Stat154: 1.88602678e-02 + syst_JES_EtaIntercalibration_Stat155: 1.64719671e-02 + syst_JES_EtaIntercalibration_Stat156: 1.21010476e-02 + syst_JES_EtaIntercalibration_Stat157: 1.82631617e-04 syst_JES_EtaIntercalibration_Stat158: 0.0 syst_JES_EtaIntercalibration_Stat159: 0.0 syst_JES_EtaIntercalibration_Stat16: 0.0 @@ -4876,18 +4876,18 @@ bins: syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 2.0455520037388443e-11 + syst_JES_EtaIntercalibration_Stat165: 2.04555200e-11 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 0.000542378981893657 - syst_JES_EtaIntercalibration_Stat171: 0.0230736451389892 - syst_JES_EtaIntercalibration_Stat172: 0.033096034127973704 - syst_JES_EtaIntercalibration_Stat173: 0.033829361507424285 - syst_JES_EtaIntercalibration_Stat174: 0.019106222232560786 - syst_JES_EtaIntercalibration_Stat175: 0.0002474290756964508 + syst_JES_EtaIntercalibration_Stat170: 5.42378982e-04 + syst_JES_EtaIntercalibration_Stat171: 2.30736451e-02 + syst_JES_EtaIntercalibration_Stat172: 3.30960341e-02 + syst_JES_EtaIntercalibration_Stat173: 3.38293615e-02 + syst_JES_EtaIntercalibration_Stat174: 1.91062222e-02 + syst_JES_EtaIntercalibration_Stat175: 2.47429076e-04 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 syst_JES_EtaIntercalibration_Stat178: 0.0 @@ -4900,14 +4900,14 @@ bins: syst_JES_EtaIntercalibration_Stat184: 0.0 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 - syst_JES_EtaIntercalibration_Stat187: 0.00027349371387062996 - syst_JES_EtaIntercalibration_Stat188: 0.03946973882609309 - syst_JES_EtaIntercalibration_Stat189: 0.05825725791693255 + syst_JES_EtaIntercalibration_Stat187: 2.73493714e-04 + syst_JES_EtaIntercalibration_Stat188: 3.94697388e-02 + syst_JES_EtaIntercalibration_Stat189: 5.82572579e-02 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 0.057745920202209956 - syst_JES_EtaIntercalibration_Stat191: 0.039113561187265986 - syst_JES_EtaIntercalibration_Stat192: 0.000811928412792655 - syst_JES_EtaIntercalibration_Stat193: 2.1191641630605215e-05 + syst_JES_EtaIntercalibration_Stat190: 5.77459202e-02 + syst_JES_EtaIntercalibration_Stat191: 3.91135612e-02 + syst_JES_EtaIntercalibration_Stat192: 8.11928413e-04 + syst_JES_EtaIntercalibration_Stat193: 2.11916416e-05 syst_JES_EtaIntercalibration_Stat194: 0.0 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 @@ -4918,13 +4918,13 @@ bins: syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 syst_JES_EtaIntercalibration_Stat201: 0.0 - syst_JES_EtaIntercalibration_Stat202: 0.0004248541522687521 - syst_JES_EtaIntercalibration_Stat203: 0.010186217391652309 - syst_JES_EtaIntercalibration_Stat204: 0.016585225352704736 - syst_JES_EtaIntercalibration_Stat205: 0.01117059858512515 - syst_JES_EtaIntercalibration_Stat206: 0.007698197581252381 - syst_JES_EtaIntercalibration_Stat207: 0.0001763772612916699 - syst_JES_EtaIntercalibration_Stat208: 2.1191641630605215e-05 + syst_JES_EtaIntercalibration_Stat202: 4.24854152e-04 + syst_JES_EtaIntercalibration_Stat203: 1.01862174e-02 + syst_JES_EtaIntercalibration_Stat204: 1.65852254e-02 + syst_JES_EtaIntercalibration_Stat205: 1.11705986e-02 + syst_JES_EtaIntercalibration_Stat206: 7.69819758e-03 + syst_JES_EtaIntercalibration_Stat207: 1.76377261e-04 + syst_JES_EtaIntercalibration_Stat208: 2.11916416e-05 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 @@ -4932,38 +4932,38 @@ bins: syst_JES_EtaIntercalibration_Stat212: 0.0 syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 - syst_JES_EtaIntercalibration_Stat215: 4.959824795292673e-05 - syst_JES_EtaIntercalibration_Stat216: 0.002283062581271043 - syst_JES_EtaIntercalibration_Stat217: 0.00323474512133491 - syst_JES_EtaIntercalibration_Stat218: 0.0032997666837975077 - syst_JES_EtaIntercalibration_Stat219: 0.0030824475259118365 + syst_JES_EtaIntercalibration_Stat215: 4.95982480e-05 + syst_JES_EtaIntercalibration_Stat216: 2.28306258e-03 + syst_JES_EtaIntercalibration_Stat217: 3.23474512e-03 + syst_JES_EtaIntercalibration_Stat218: 3.29976668e-03 + syst_JES_EtaIntercalibration_Stat219: 3.08244753e-03 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 0.00012556907381994982 + syst_JES_EtaIntercalibration_Stat220: 1.25569074e-04 syst_JES_EtaIntercalibration_Stat221: 0.0 syst_JES_EtaIntercalibration_Stat222: 0.0 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 - syst_JES_EtaIntercalibration_Stat227: 4.31332720127986e-07 - syst_JES_EtaIntercalibration_Stat228: 9.31890385184867e-05 - syst_JES_EtaIntercalibration_Stat229: 0.00011918789200250167 + syst_JES_EtaIntercalibration_Stat227: 4.31332720e-07 + syst_JES_EtaIntercalibration_Stat228: 9.31890385e-05 + syst_JES_EtaIntercalibration_Stat229: 1.19187892e-04 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 0.00030495433674568393 - syst_JES_EtaIntercalibration_Stat231: 0.00027792593775140885 - syst_JES_EtaIntercalibration_Stat232: 1.5744341840801095e-05 + syst_JES_EtaIntercalibration_Stat230: 3.04954337e-04 + syst_JES_EtaIntercalibration_Stat231: 2.77925938e-04 + syst_JES_EtaIntercalibration_Stat232: 1.57443418e-05 syst_JES_EtaIntercalibration_Stat233: 0.0 syst_JES_EtaIntercalibration_Stat234: 0.0 syst_JES_EtaIntercalibration_Stat235: 0.0 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 - syst_JES_EtaIntercalibration_Stat238: 4.552695547694794e-26 - syst_JES_EtaIntercalibration_Stat239: 4.5929444158948846e-08 + syst_JES_EtaIntercalibration_Stat238: 4.55269555e-26 + syst_JES_EtaIntercalibration_Stat239: 4.59294442e-08 syst_JES_EtaIntercalibration_Stat24: 0.0 - syst_JES_EtaIntercalibration_Stat240: 5.1949617426406516e-08 - syst_JES_EtaIntercalibration_Stat241: 7.026145742866425e-08 - syst_JES_EtaIntercalibration_Stat242: 1.4751645018437774e-09 - syst_JES_EtaIntercalibration_Stat243: 3.4352629691917326e-26 + syst_JES_EtaIntercalibration_Stat240: 5.19496174e-08 + syst_JES_EtaIntercalibration_Stat241: 7.02614574e-08 + syst_JES_EtaIntercalibration_Stat242: 1.47516450e-09 + syst_JES_EtaIntercalibration_Stat243: 3.43526297e-26 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 syst_JES_EtaIntercalibration_Stat25: 0.0 @@ -4972,12 +4972,12 @@ bins: syst_JES_EtaIntercalibration_Stat28: 0.0 syst_JES_EtaIntercalibration_Stat29: 0.0 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 7.854693831557027e-10 - syst_JES_EtaIntercalibration_Stat31: 0.00018495192638899436 - syst_JES_EtaIntercalibration_Stat32: 1.781107932580168e-06 - syst_JES_EtaIntercalibration_Stat33: 0.0001483053746280542 - syst_JES_EtaIntercalibration_Stat34: 4.871833079929977e-05 - syst_JES_EtaIntercalibration_Stat35: 7.165706854256227e-09 + syst_JES_EtaIntercalibration_Stat30: 7.85469383e-10 + syst_JES_EtaIntercalibration_Stat31: 1.84951926e-04 + syst_JES_EtaIntercalibration_Stat32: 1.78110793e-06 + syst_JES_EtaIntercalibration_Stat33: 1.48305375e-04 + syst_JES_EtaIntercalibration_Stat34: 4.87183308e-05 + syst_JES_EtaIntercalibration_Stat35: 7.16570685e-09 syst_JES_EtaIntercalibration_Stat36: 0.0 syst_JES_EtaIntercalibration_Stat37: 0.0 syst_JES_EtaIntercalibration_Stat38: 0.0 @@ -4996,220 +4996,220 @@ bins: syst_JES_EtaIntercalibration_Stat5: 0.0 syst_JES_EtaIntercalibration_Stat50: 0.0 syst_JES_EtaIntercalibration_Stat51: 0.0 - syst_JES_EtaIntercalibration_Stat52: 8.059535555456964e-09 - syst_JES_EtaIntercalibration_Stat53: 1.2634031309554365e-05 - syst_JES_EtaIntercalibration_Stat54: 9.800555545478023e-05 - syst_JES_EtaIntercalibration_Stat55: 0.00016029827720533992 - syst_JES_EtaIntercalibration_Stat56: 5.327479705029386e-05 - syst_JES_EtaIntercalibration_Stat57: 6.253505650433202e-08 + syst_JES_EtaIntercalibration_Stat52: 8.05953556e-09 + syst_JES_EtaIntercalibration_Stat53: 1.26340313e-05 + syst_JES_EtaIntercalibration_Stat54: 9.80055555e-05 + syst_JES_EtaIntercalibration_Stat55: 1.60298277e-04 + syst_JES_EtaIntercalibration_Stat56: 5.32747971e-05 + syst_JES_EtaIntercalibration_Stat57: 6.25350565e-08 syst_JES_EtaIntercalibration_Stat58: 0.0 syst_JES_EtaIntercalibration_Stat59: 0.0 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 1.0691949635122679e-11 - syst_JES_EtaIntercalibration_Stat62: 1.0691949635122679e-11 + syst_JES_EtaIntercalibration_Stat61: 1.06919496e-11 + syst_JES_EtaIntercalibration_Stat62: 1.06919496e-11 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 6.754998149518621e-10 - syst_JES_EtaIntercalibration_Stat69: 6.754998149518621e-10 + syst_JES_EtaIntercalibration_Stat68: 6.75499815e-10 + syst_JES_EtaIntercalibration_Stat69: 6.75499815e-10 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 5.253310099356404e-10 - syst_JES_EtaIntercalibration_Stat71: 5.253310099356404e-10 + syst_JES_EtaIntercalibration_Stat70: 5.25331010e-10 + syst_JES_EtaIntercalibration_Stat71: 5.25331010e-10 syst_JES_EtaIntercalibration_Stat72: 0.0 syst_JES_EtaIntercalibration_Stat73: 0.0 - syst_JES_EtaIntercalibration_Stat74: 1.2089475500297769e-05 - syst_JES_EtaIntercalibration_Stat75: 8.616549676059437e-05 - syst_JES_EtaIntercalibration_Stat76: 4.980339019584912e-05 - syst_JES_EtaIntercalibration_Stat77: 8.268152801563358e-05 - syst_JES_EtaIntercalibration_Stat78: 8.898553407717458e-05 - syst_JES_EtaIntercalibration_Stat79: 7.211165093103889e-08 + syst_JES_EtaIntercalibration_Stat74: 1.20894755e-05 + syst_JES_EtaIntercalibration_Stat75: 8.61654968e-05 + syst_JES_EtaIntercalibration_Stat76: 4.98033902e-05 + syst_JES_EtaIntercalibration_Stat77: 8.26815280e-05 + syst_JES_EtaIntercalibration_Stat78: 8.89855341e-05 + syst_JES_EtaIntercalibration_Stat79: 7.21116509e-08 syst_JES_EtaIntercalibration_Stat8: 0.0 syst_JES_EtaIntercalibration_Stat80: 0.0 syst_JES_EtaIntercalibration_Stat81: 0.0 - syst_JES_EtaIntercalibration_Stat82: 1.0691949635122679e-11 - syst_JES_EtaIntercalibration_Stat83: 1.0691949635122679e-11 - syst_JES_EtaIntercalibration_Stat84: 1.0691949635122679e-11 + syst_JES_EtaIntercalibration_Stat82: 1.06919496e-11 + syst_JES_EtaIntercalibration_Stat83: 1.06919496e-11 + syst_JES_EtaIntercalibration_Stat84: 1.06919496e-11 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 6.754998149518621e-10 - syst_JES_EtaIntercalibration_Stat9: 1.2078924668827106e-05 - syst_JES_EtaIntercalibration_Stat90: 6.754998149518621e-10 - syst_JES_EtaIntercalibration_Stat91: 5.253310099356404e-10 - syst_JES_EtaIntercalibration_Stat92: 5.253310099356404e-10 + syst_JES_EtaIntercalibration_Stat89: 6.75499815e-10 + syst_JES_EtaIntercalibration_Stat9: 1.20789247e-05 + syst_JES_EtaIntercalibration_Stat90: 6.75499815e-10 + syst_JES_EtaIntercalibration_Stat91: 5.25331010e-10 + syst_JES_EtaIntercalibration_Stat92: 5.25331010e-10 syst_JES_EtaIntercalibration_Stat93: 0.0 syst_JES_EtaIntercalibration_Stat94: 0.0 - syst_JES_EtaIntercalibration_Stat95: 1.2096043433701782e-05 - syst_JES_EtaIntercalibration_Stat96: 8.092651666790063e-05 - syst_JES_EtaIntercalibration_Stat97: 0.0003065412473061333 - syst_JES_EtaIntercalibration_Stat98: 5.01144520772202e-05 - syst_JES_EtaIntercalibration_Stat99: 4.336996310812357e-05 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0423700212414391 - syst_JES_Flavour_Comp: 0.15805267318207564 - syst_JES_Gjet_Generator: 0.639954894894945 - syst_JES_Gjet_OOC: 0.4434145549031967 - syst_JES_Gjet_Purity: 0.15267752781598215 - syst_JES_Gjet_Stat1: 0.00012326065888189954 - syst_JES_Gjet_Stat10: 0.03491389515651326 - syst_JES_Gjet_Stat11: 0.06219270294817552 - syst_JES_Gjet_Stat12: 0.08300721098193818 - syst_JES_Gjet_Stat13: 0.013918372139011086 - syst_JES_Gjet_Stat14: 0.020912295426375366 - syst_JES_Gjet_Stat15: 0.0019109371732215581 - syst_JES_Gjet_Stat2: 0.0009595561473931581 - syst_JES_Gjet_Stat3: 0.0011999927531031174 - syst_JES_Gjet_Stat4: 0.0013707015019689735 - syst_JES_Gjet_Stat5: 0.0014313309994547032 - syst_JES_Gjet_Stat6: 0.003055474103964882 - syst_JES_Gjet_Stat7: 0.005954198749621984 - syst_JES_Gjet_Stat8: 0.005762512212568404 - syst_JES_Gjet_Stat9: 0.016228403341056075 - syst_JES_Gjet_Veto: 0.20881551666483025 - syst_JES_Gjet_dPhi: 0.030363917731412726 - syst_JES_LArESZee: 0.844927184732507 - syst_JES_LArEsmear: 0.06563343126791407 - syst_JES_LAr_JVT: 0.09165474387613552 - syst_JES_MJB_Alpha: 0.004469552997784007 - syst_JES_MJB_Asym: 0.018084957837938134 - syst_JES_MJB_Beta: 1.6971420093792978e-09 - syst_JES_MJB_Stat1: 0.005247744467864265 - syst_JES_MJB_Stat10: 3.667617585027098e-06 - syst_JES_MJB_Stat11: 8.663718139459525e-10 - syst_JES_MJB_Stat12: 7.513320696727579e-10 - syst_JES_MJB_Stat13: 9.097401442170176e-08 - syst_JES_MJB_Stat14: 5.199781483870259e-08 - syst_JES_MJB_Stat15: 6.002016723568838e-14 - syst_JES_MJB_Stat16: 1.432237643514511e-17 - syst_JES_MJB_Stat2: 0.0034891520846761608 - syst_JES_MJB_Stat3: 0.005359218972947458 - syst_JES_MJB_Stat4: 0.0021297130148625657 - syst_JES_MJB_Stat5: 0.0014551904411450756 - syst_JES_MJB_Stat6: 4.284227565711829e-05 - syst_JES_MJB_Stat7: 2.7430247583495757e-12 - syst_JES_MJB_Stat8: 1.4904147758007166e-19 - syst_JES_MJB_Stat9: 1.4730977809455014e-19 - syst_JES_MJB_Threshold: 0.0195082034026714 - syst_JES_Pileup_MuOffset: 0.03676193785697376 - syst_JES_Pileup_NPVOffset: 0.0551626565259506 - syst_JES_Pileup_Pt_term: 0.08824530851552394 - syst_JES_PunchThrough_MC15: 0.003114462631016786 + syst_JES_EtaIntercalibration_Stat95: 1.20960434e-05 + syst_JES_EtaIntercalibration_Stat96: 8.09265167e-05 + syst_JES_EtaIntercalibration_Stat97: 3.06541247e-04 + syst_JES_EtaIntercalibration_Stat98: 5.01144521e-05 + syst_JES_EtaIntercalibration_Stat99: 4.33699631e-05 + syst_JES_EtaIntercalibration_TotalStat_MJB: 4.23700212e-02 + syst_JES_Flavour_Comp: 1.58052673e-01 + syst_JES_Gjet_Generator: 6.39954895e-01 + syst_JES_Gjet_OOC: 4.43414555e-01 + syst_JES_Gjet_Purity: 1.52677528e-01 + syst_JES_Gjet_Stat1: 1.23260659e-04 + syst_JES_Gjet_Stat10: 3.49138952e-02 + syst_JES_Gjet_Stat11: 6.21927029e-02 + syst_JES_Gjet_Stat12: 8.30072110e-02 + syst_JES_Gjet_Stat13: 1.39183721e-02 + syst_JES_Gjet_Stat14: 2.09122954e-02 + syst_JES_Gjet_Stat15: 1.91093717e-03 + syst_JES_Gjet_Stat2: 9.59556147e-04 + syst_JES_Gjet_Stat3: 1.19999275e-03 + syst_JES_Gjet_Stat4: 1.37070150e-03 + syst_JES_Gjet_Stat5: 1.43133100e-03 + syst_JES_Gjet_Stat6: 3.05547410e-03 + syst_JES_Gjet_Stat7: 5.95419875e-03 + syst_JES_Gjet_Stat8: 5.76251221e-03 + syst_JES_Gjet_Stat9: 1.62284033e-02 + syst_JES_Gjet_Veto: 2.08815517e-01 + syst_JES_Gjet_dPhi: 3.03639177e-02 + syst_JES_LArESZee: 8.44927185e-01 + syst_JES_LArEsmear: 6.56334313e-02 + syst_JES_LAr_JVT: 9.16547439e-02 + syst_JES_MJB_Alpha: 4.46955300e-03 + syst_JES_MJB_Asym: 1.80849578e-02 + syst_JES_MJB_Beta: 1.69714201e-09 + syst_JES_MJB_Stat1: 5.24774447e-03 + syst_JES_MJB_Stat10: 3.66761759e-06 + syst_JES_MJB_Stat11: 8.66371814e-10 + syst_JES_MJB_Stat12: 7.51332070e-10 + syst_JES_MJB_Stat13: 9.09740144e-08 + syst_JES_MJB_Stat14: 5.19978148e-08 + syst_JES_MJB_Stat15: 6.00201672e-14 + syst_JES_MJB_Stat16: 1.43223764e-17 + syst_JES_MJB_Stat2: 3.48915208e-03 + syst_JES_MJB_Stat3: 5.35921897e-03 + syst_JES_MJB_Stat4: 2.12971301e-03 + syst_JES_MJB_Stat5: 1.45519044e-03 + syst_JES_MJB_Stat6: 4.28422757e-05 + syst_JES_MJB_Stat7: 2.74302476e-12 + syst_JES_MJB_Stat8: 1.49041478e-19 + syst_JES_MJB_Stat9: 1.47309778e-19 + syst_JES_MJB_Threshold: 1.95082034e-02 + syst_JES_Pileup_MuOffset: 3.67619379e-02 + syst_JES_Pileup_NPVOffset: 5.51626565e-02 + syst_JES_Pileup_Pt_term: 8.82453085e-02 + syst_JES_PunchThrough_MC15: 3.11446263e-03 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.5934467625659441 - syst_JES_Zjet_MuScale: 0.035818102615856134 - syst_JES_Zjet_MuSmearID: 0.0068437680228073195 - syst_JES_Zjet_MuSmearMS: 0.10883695466154868 - syst_JES_Zjet_OOC: 0.21725608737156252 - syst_JES_Zjet_Stat1: 0.003616704681059818 - syst_JES_Zjet_Stat10: 0.026031859326602083 - syst_JES_Zjet_Stat11: 0.036392865715686645 - syst_JES_Zjet_Stat12: 0.20232614759343392 - syst_JES_Zjet_Stat13: 0.062092062294628284 + syst_JES_Zjet_MC: 5.93446763e-01 + syst_JES_Zjet_MuScale: 3.58181026e-02 + syst_JES_Zjet_MuSmearID: 6.84376802e-03 + syst_JES_Zjet_MuSmearMS: 1.08836955e-01 + syst_JES_Zjet_OOC: 2.17256087e-01 + syst_JES_Zjet_Stat1: 3.61670468e-03 + syst_JES_Zjet_Stat10: 2.60318593e-02 + syst_JES_Zjet_Stat11: 3.63928657e-02 + syst_JES_Zjet_Stat12: 2.02326148e-01 + syst_JES_Zjet_Stat13: 6.20920623e-02 syst_JES_Zjet_Stat2: 0.0 - syst_JES_Zjet_Stat3: 0.0016096182179324385 - syst_JES_Zjet_Stat4: 0.001754218558219015 - syst_JES_Zjet_Stat5: 0.001928747456252373 - syst_JES_Zjet_Stat6: 0.00279521752284147 - syst_JES_Zjet_Stat7: 0.00244389709275984 - syst_JES_Zjet_Stat8: 0.00324789974445025 - syst_JES_Zjet_Stat9: 0.010373087618930056 - syst_JES_Zjet_Veto: 0.04321061675097915 - syst_JES_Zjet_dPhi: 0.036755307099791724 + syst_JES_Zjet_Stat3: 1.60961822e-03 + syst_JES_Zjet_Stat4: 1.75421856e-03 + syst_JES_Zjet_Stat5: 1.92874746e-03 + syst_JES_Zjet_Stat6: 2.79521752e-03 + syst_JES_Zjet_Stat7: 2.44389709e-03 + syst_JES_Zjet_Stat8: 3.24789974e-03 + syst_JES_Zjet_Stat9: 1.03730876e-02 + syst_JES_Zjet_Veto: 4.32106168e-02 + syst_JES_Zjet_dPhi: 3.67553071e-02 syst_PRW: 0.01953 syst_Unfolding_bias: 0.003208 - syst_cleaning: 0.16965437660137153 + syst_cleaning: 1.69654377e-01 syst_lumi: 0.7437 - syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.04916018790647571 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.19575675594982667 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 0.04174974341238519 + syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 4.91601879e-02 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.95756756e-01 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 4.17497434e-02 syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 0.4993073277050919 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.024022601857417527 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0830028927206757 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 4.99307328e-01 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 2.40226019e-02 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 8.30028927e-02 - stat: 0.1161 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.07059513209138431 - syst_JER_NP1: 0.005665102117349695 - syst_JER_NP2: 0.008078662807049195 - syst_JER_NP3: 0.020532600298062594 - syst_JER_NP4: 0.011758100303620478 - syst_JER_NP5: 0.006524321813031604 - syst_JER_NP6: 0.005293247162186931 - syst_JER_NP7: 0.011778560894693375 - syst_JER_NP8: 0.015823324555857405 - syst_JES_EtaIntercalibration_Modelling: 0.06890752353698397 + syst_JER_NP0: 7.05951321e-02 + syst_JER_NP1: 5.66510212e-03 + syst_JER_NP2: 8.07866281e-03 + syst_JER_NP3: 2.05326003e-02 + syst_JER_NP4: 1.17581003e-02 + syst_JER_NP5: 6.52432181e-03 + syst_JER_NP6: 5.29324716e-03 + syst_JER_NP7: 1.17785609e-02 + syst_JER_NP8: 1.58233246e-02 + syst_JES_EtaIntercalibration_Modelling: 6.89075235e-02 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 - syst_JES_EtaIntercalibration_Stat10: 1.624594025002862e-08 - syst_JES_EtaIntercalibration_Stat100: 3.022075280333036e-07 + syst_JES_EtaIntercalibration_Stat10: 1.62459403e-08 + syst_JES_EtaIntercalibration_Stat100: 3.02207528e-07 syst_JES_EtaIntercalibration_Stat101: 0.0 syst_JES_EtaIntercalibration_Stat102: 0.0 - syst_JES_EtaIntercalibration_Stat103: 1.2609329879101427e-12 - syst_JES_EtaIntercalibration_Stat104: 1.2609329879101427e-12 - syst_JES_EtaIntercalibration_Stat105: 1.2609329879101427e-12 + syst_JES_EtaIntercalibration_Stat103: 1.26093299e-12 + syst_JES_EtaIntercalibration_Stat104: 1.26093299e-12 + syst_JES_EtaIntercalibration_Stat105: 1.26093299e-12 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 7.631415858148473e-11 - syst_JES_EtaIntercalibration_Stat11: 3.0501414721287924e-07 - syst_JES_EtaIntercalibration_Stat110: 7.554997506286816e-11 - syst_JES_EtaIntercalibration_Stat111: 5.959120803440723e-11 - syst_JES_EtaIntercalibration_Stat112: 5.959120803440723e-11 + syst_JES_EtaIntercalibration_Stat109: 7.63141586e-11 + syst_JES_EtaIntercalibration_Stat11: 3.05014147e-07 + syst_JES_EtaIntercalibration_Stat110: 7.55499751e-11 + syst_JES_EtaIntercalibration_Stat111: 5.95912080e-11 + syst_JES_EtaIntercalibration_Stat112: 5.95912080e-11 syst_JES_EtaIntercalibration_Stat113: 0.0 - syst_JES_EtaIntercalibration_Stat114: 9.126175705080414e-11 - syst_JES_EtaIntercalibration_Stat115: 8.67164008752093e-06 - syst_JES_EtaIntercalibration_Stat116: 0.0002948227263967281 - syst_JES_EtaIntercalibration_Stat117: 0.0005798682156317933 - syst_JES_EtaIntercalibration_Stat118: 0.0007319621079673455 - syst_JES_EtaIntercalibration_Stat119: 0.00024723909237820785 - syst_JES_EtaIntercalibration_Stat12: 4.4972963391348314e-05 - syst_JES_EtaIntercalibration_Stat120: 7.402410858632476e-06 - syst_JES_EtaIntercalibration_Stat121: 8.176145837128887e-10 + syst_JES_EtaIntercalibration_Stat114: 9.12617571e-11 + syst_JES_EtaIntercalibration_Stat115: 8.67164009e-06 + syst_JES_EtaIntercalibration_Stat116: 2.94822726e-04 + syst_JES_EtaIntercalibration_Stat117: 5.79868216e-04 + syst_JES_EtaIntercalibration_Stat118: 7.31962108e-04 + syst_JES_EtaIntercalibration_Stat119: 2.47239092e-04 + syst_JES_EtaIntercalibration_Stat12: 4.49729634e-05 + syst_JES_EtaIntercalibration_Stat120: 7.40241086e-06 + syst_JES_EtaIntercalibration_Stat121: 8.17614584e-10 syst_JES_EtaIntercalibration_Stat122: 0.0 - syst_JES_EtaIntercalibration_Stat123: 1.2609329879101427e-12 - syst_JES_EtaIntercalibration_Stat124: 1.2609329879101427e-12 - syst_JES_EtaIntercalibration_Stat125: 1.2609329879101427e-12 + syst_JES_EtaIntercalibration_Stat123: 1.26093299e-12 + syst_JES_EtaIntercalibration_Stat124: 1.26093299e-12 + syst_JES_EtaIntercalibration_Stat125: 1.26093299e-12 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 7.631415858148473e-11 - syst_JES_EtaIntercalibration_Stat129: 7.554997506286816e-11 + syst_JES_EtaIntercalibration_Stat128: 7.63141586e-11 + syst_JES_EtaIntercalibration_Stat129: 7.55499751e-11 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 2.3936942160601887e-12 + syst_JES_EtaIntercalibration_Stat130: 2.39369422e-12 syst_JES_EtaIntercalibration_Stat131: 0.0 syst_JES_EtaIntercalibration_Stat132: 0.0 - syst_JES_EtaIntercalibration_Stat133: 9.126175705080414e-11 - syst_JES_EtaIntercalibration_Stat134: 7.577834304733773e-05 - syst_JES_EtaIntercalibration_Stat135: 0.0031330306414077726 - syst_JES_EtaIntercalibration_Stat136: 0.005678017347631125 - syst_JES_EtaIntercalibration_Stat137: 0.005284890987522827 - syst_JES_EtaIntercalibration_Stat138: 0.0033385330236497582 - syst_JES_EtaIntercalibration_Stat139: 3.174934254437405e-05 + syst_JES_EtaIntercalibration_Stat133: 9.12617571e-11 + syst_JES_EtaIntercalibration_Stat134: 7.57783430e-05 + syst_JES_EtaIntercalibration_Stat135: 3.13303064e-03 + syst_JES_EtaIntercalibration_Stat136: 5.67801735e-03 + syst_JES_EtaIntercalibration_Stat137: 5.28489099e-03 + syst_JES_EtaIntercalibration_Stat138: 3.33853302e-03 + syst_JES_EtaIntercalibration_Stat139: 3.17493425e-05 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 8.176145837128887e-10 + syst_JES_EtaIntercalibration_Stat140: 8.17614584e-10 syst_JES_EtaIntercalibration_Stat141: 0.0 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 1.2609329879101427e-12 - syst_JES_EtaIntercalibration_Stat144: 1.2609329879101427e-12 + syst_JES_EtaIntercalibration_Stat143: 1.26093299e-12 + syst_JES_EtaIntercalibration_Stat144: 1.26093299e-12 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 2.3936942160601887e-12 - syst_JES_EtaIntercalibration_Stat148: 2.3936942160601887e-12 + syst_JES_EtaIntercalibration_Stat147: 2.39369422e-12 + syst_JES_EtaIntercalibration_Stat148: 2.39369422e-12 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 syst_JES_EtaIntercalibration_Stat150: 0.0 syst_JES_EtaIntercalibration_Stat151: 0.0 - syst_JES_EtaIntercalibration_Stat152: 8.580518041459892e-05 - syst_JES_EtaIntercalibration_Stat153: 0.005512533605339744 - syst_JES_EtaIntercalibration_Stat154: 0.007498332531303209 - syst_JES_EtaIntercalibration_Stat155: 0.006687600074017585 - syst_JES_EtaIntercalibration_Stat156: 0.005029501242668104 - syst_JES_EtaIntercalibration_Stat157: 6.755585540869125e-05 + syst_JES_EtaIntercalibration_Stat152: 8.58051804e-05 + syst_JES_EtaIntercalibration_Stat153: 5.51253361e-03 + syst_JES_EtaIntercalibration_Stat154: 7.49833253e-03 + syst_JES_EtaIntercalibration_Stat155: 6.68760007e-03 + syst_JES_EtaIntercalibration_Stat156: 5.02950124e-03 + syst_JES_EtaIntercalibration_Stat157: 6.75558554e-05 syst_JES_EtaIntercalibration_Stat158: 0.0 syst_JES_EtaIntercalibration_Stat159: 0.0 syst_JES_EtaIntercalibration_Stat16: 0.0 @@ -5218,18 +5218,18 @@ bins: syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 2.3936942160601887e-12 + syst_JES_EtaIntercalibration_Stat165: 2.39369422e-12 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 0.0002515555840664246 - syst_JES_EtaIntercalibration_Stat171: 0.011321434228930538 - syst_JES_EtaIntercalibration_Stat172: 0.015438888399104388 - syst_JES_EtaIntercalibration_Stat173: 0.016169362232320728 - syst_JES_EtaIntercalibration_Stat174: 0.008134051463293062 - syst_JES_EtaIntercalibration_Stat175: 0.0001598455350486838 + syst_JES_EtaIntercalibration_Stat170: 2.51555584e-04 + syst_JES_EtaIntercalibration_Stat171: 1.13214342e-02 + syst_JES_EtaIntercalibration_Stat172: 1.54388884e-02 + syst_JES_EtaIntercalibration_Stat173: 1.61693622e-02 + syst_JES_EtaIntercalibration_Stat174: 8.13405146e-03 + syst_JES_EtaIntercalibration_Stat175: 1.59845535e-04 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 syst_JES_EtaIntercalibration_Stat178: 0.0 @@ -5242,14 +5242,14 @@ bins: syst_JES_EtaIntercalibration_Stat184: 0.0 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 - syst_JES_EtaIntercalibration_Stat187: 0.00048554316749389024 - syst_JES_EtaIntercalibration_Stat188: 0.02460773201658373 - syst_JES_EtaIntercalibration_Stat189: 0.03724965234737097 + syst_JES_EtaIntercalibration_Stat187: 4.85543167e-04 + syst_JES_EtaIntercalibration_Stat188: 2.46077320e-02 + syst_JES_EtaIntercalibration_Stat189: 3.72496523e-02 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 0.03636299492616085 - syst_JES_EtaIntercalibration_Stat191: 0.024576990763720444 - syst_JES_EtaIntercalibration_Stat192: 0.0004017808731136912 - syst_JES_EtaIntercalibration_Stat193: 6.190349586251167e-06 + syst_JES_EtaIntercalibration_Stat190: 3.63629949e-02 + syst_JES_EtaIntercalibration_Stat191: 2.45769908e-02 + syst_JES_EtaIntercalibration_Stat192: 4.01780873e-04 + syst_JES_EtaIntercalibration_Stat193: 6.19034959e-06 syst_JES_EtaIntercalibration_Stat194: 0.0 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 @@ -5260,13 +5260,13 @@ bins: syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 syst_JES_EtaIntercalibration_Stat201: 0.0 - syst_JES_EtaIntercalibration_Stat202: 0.0003544143443767478 - syst_JES_EtaIntercalibration_Stat203: 0.011574145929613986 - syst_JES_EtaIntercalibration_Stat204: 0.017436561444275644 - syst_JES_EtaIntercalibration_Stat205: 0.014763631556971342 - syst_JES_EtaIntercalibration_Stat206: 0.011225190098613029 - syst_JES_EtaIntercalibration_Stat207: 0.00014528628660338182 - syst_JES_EtaIntercalibration_Stat208: 6.190349586251167e-06 + syst_JES_EtaIntercalibration_Stat202: 3.54414344e-04 + syst_JES_EtaIntercalibration_Stat203: 1.15741459e-02 + syst_JES_EtaIntercalibration_Stat204: 1.74365614e-02 + syst_JES_EtaIntercalibration_Stat205: 1.47636316e-02 + syst_JES_EtaIntercalibration_Stat206: 1.12251901e-02 + syst_JES_EtaIntercalibration_Stat207: 1.45286287e-04 + syst_JES_EtaIntercalibration_Stat208: 6.19034959e-06 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 @@ -5274,38 +5274,38 @@ bins: syst_JES_EtaIntercalibration_Stat212: 0.0 syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 - syst_JES_EtaIntercalibration_Stat215: 5.1443505136703125e-05 - syst_JES_EtaIntercalibration_Stat216: 0.001803392699885413 - syst_JES_EtaIntercalibration_Stat217: 0.0019006296325165509 - syst_JES_EtaIntercalibration_Stat218: 0.0018888808194272078 - syst_JES_EtaIntercalibration_Stat219: 0.0018470202959564358 + syst_JES_EtaIntercalibration_Stat215: 5.14435051e-05 + syst_JES_EtaIntercalibration_Stat216: 1.80339270e-03 + syst_JES_EtaIntercalibration_Stat217: 1.90062963e-03 + syst_JES_EtaIntercalibration_Stat218: 1.88888082e-03 + syst_JES_EtaIntercalibration_Stat219: 1.84702030e-03 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 0.00012767912437043104 + syst_JES_EtaIntercalibration_Stat220: 1.27679124e-04 syst_JES_EtaIntercalibration_Stat221: 0.0 syst_JES_EtaIntercalibration_Stat222: 0.0 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 - syst_JES_EtaIntercalibration_Stat227: 3.4149271855634056e-06 - syst_JES_EtaIntercalibration_Stat228: 0.0003060229708698352 - syst_JES_EtaIntercalibration_Stat229: 0.0004610101598663527 + syst_JES_EtaIntercalibration_Stat227: 3.41492719e-06 + syst_JES_EtaIntercalibration_Stat228: 3.06022971e-04 + syst_JES_EtaIntercalibration_Stat229: 4.61010160e-04 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 0.00044240443035756325 - syst_JES_EtaIntercalibration_Stat231: 0.00039785357859393447 - syst_JES_EtaIntercalibration_Stat232: 2.3486608950633976e-05 + syst_JES_EtaIntercalibration_Stat230: 4.42404430e-04 + syst_JES_EtaIntercalibration_Stat231: 3.97853579e-04 + syst_JES_EtaIntercalibration_Stat232: 2.34866090e-05 syst_JES_EtaIntercalibration_Stat233: 0.0 syst_JES_EtaIntercalibration_Stat234: 0.0 syst_JES_EtaIntercalibration_Stat235: 0.0 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 - syst_JES_EtaIntercalibration_Stat238: 1.0827049598113051e-20 - syst_JES_EtaIntercalibration_Stat239: 3.911572925307669e-07 + syst_JES_EtaIntercalibration_Stat238: 1.08270496e-20 + syst_JES_EtaIntercalibration_Stat239: 3.91157293e-07 syst_JES_EtaIntercalibration_Stat24: 0.0 - syst_JES_EtaIntercalibration_Stat240: 4.439369176752481e-07 - syst_JES_EtaIntercalibration_Stat241: 6.24387033417575e-07 - syst_JES_EtaIntercalibration_Stat242: 3.0419041322829355e-08 - syst_JES_EtaIntercalibration_Stat243: 8.16921763389861e-21 + syst_JES_EtaIntercalibration_Stat240: 4.43936918e-07 + syst_JES_EtaIntercalibration_Stat241: 6.24387033e-07 + syst_JES_EtaIntercalibration_Stat242: 3.04190413e-08 + syst_JES_EtaIntercalibration_Stat243: 8.16921763e-21 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 syst_JES_EtaIntercalibration_Stat25: 0.0 @@ -5314,12 +5314,12 @@ bins: syst_JES_EtaIntercalibration_Stat28: 0.0 syst_JES_EtaIntercalibration_Stat29: 0.0 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 8.856341610394216e-11 - syst_JES_EtaIntercalibration_Stat31: 0.00012489031467651925 - syst_JES_EtaIntercalibration_Stat32: 3.7770282961608856e-07 - syst_JES_EtaIntercalibration_Stat33: 4.6101568965655336e-05 - syst_JES_EtaIntercalibration_Stat34: 5.514996613988081e-06 - syst_JES_EtaIntercalibration_Stat35: 8.036115713324769e-10 + syst_JES_EtaIntercalibration_Stat30: 8.85634161e-11 + syst_JES_EtaIntercalibration_Stat31: 1.24890315e-04 + syst_JES_EtaIntercalibration_Stat32: 3.77702830e-07 + syst_JES_EtaIntercalibration_Stat33: 4.61015690e-05 + syst_JES_EtaIntercalibration_Stat34: 5.51499661e-06 + syst_JES_EtaIntercalibration_Stat35: 8.03611571e-10 syst_JES_EtaIntercalibration_Stat36: 0.0 syst_JES_EtaIntercalibration_Stat37: 0.0 syst_JES_EtaIntercalibration_Stat38: 0.0 @@ -5338,220 +5338,220 @@ bins: syst_JES_EtaIntercalibration_Stat5: 0.0 syst_JES_EtaIntercalibration_Stat50: 0.0 syst_JES_EtaIntercalibration_Stat51: 0.0 - syst_JES_EtaIntercalibration_Stat52: 9.369703793176975e-10 - syst_JES_EtaIntercalibration_Stat53: 2.5887127941652776e-06 - syst_JES_EtaIntercalibration_Stat54: 6.374606027041985e-05 - syst_JES_EtaIntercalibration_Stat55: 4.874348845743399e-05 - syst_JES_EtaIntercalibration_Stat56: 7.203501876171061e-06 - syst_JES_EtaIntercalibration_Stat57: 7.708335156179964e-09 + syst_JES_EtaIntercalibration_Stat52: 9.36970379e-10 + syst_JES_EtaIntercalibration_Stat53: 2.58871279e-06 + syst_JES_EtaIntercalibration_Stat54: 6.37460603e-05 + syst_JES_EtaIntercalibration_Stat55: 4.87434885e-05 + syst_JES_EtaIntercalibration_Stat56: 7.20350188e-06 + syst_JES_EtaIntercalibration_Stat57: 7.70833516e-09 syst_JES_EtaIntercalibration_Stat58: 0.0 syst_JES_EtaIntercalibration_Stat59: 0.0 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 1.2609329879101427e-12 - syst_JES_EtaIntercalibration_Stat62: 1.2609329879101427e-12 + syst_JES_EtaIntercalibration_Stat61: 1.26093299e-12 + syst_JES_EtaIntercalibration_Stat62: 1.26093299e-12 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 7.631415858148473e-11 - syst_JES_EtaIntercalibration_Stat69: 7.631415858148473e-11 + syst_JES_EtaIntercalibration_Stat68: 7.63141586e-11 + syst_JES_EtaIntercalibration_Stat69: 7.63141586e-11 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 5.959120803440723e-11 - syst_JES_EtaIntercalibration_Stat71: 5.959120803440723e-11 + syst_JES_EtaIntercalibration_Stat70: 5.95912080e-11 + syst_JES_EtaIntercalibration_Stat71: 5.95912080e-11 syst_JES_EtaIntercalibration_Stat72: 0.0 syst_JES_EtaIntercalibration_Stat73: 0.0 - syst_JES_EtaIntercalibration_Stat74: 2.157841311745375e-06 - syst_JES_EtaIntercalibration_Stat75: 5.6877046336813236e-05 - syst_JES_EtaIntercalibration_Stat76: 2.669572390852138e-05 - syst_JES_EtaIntercalibration_Stat77: 1.4699125169546654e-05 - syst_JES_EtaIntercalibration_Stat78: 2.190035974019605e-05 - syst_JES_EtaIntercalibration_Stat79: 9.078042781899631e-09 + syst_JES_EtaIntercalibration_Stat74: 2.15784131e-06 + syst_JES_EtaIntercalibration_Stat75: 5.68770463e-05 + syst_JES_EtaIntercalibration_Stat76: 2.66957239e-05 + syst_JES_EtaIntercalibration_Stat77: 1.46991252e-05 + syst_JES_EtaIntercalibration_Stat78: 2.19003597e-05 + syst_JES_EtaIntercalibration_Stat79: 9.07804278e-09 syst_JES_EtaIntercalibration_Stat8: 0.0 syst_JES_EtaIntercalibration_Stat80: 0.0 syst_JES_EtaIntercalibration_Stat81: 0.0 - syst_JES_EtaIntercalibration_Stat82: 1.2609329879101427e-12 - syst_JES_EtaIntercalibration_Stat83: 1.2609329879101427e-12 - syst_JES_EtaIntercalibration_Stat84: 1.2609329879101427e-12 + syst_JES_EtaIntercalibration_Stat82: 1.26093299e-12 + syst_JES_EtaIntercalibration_Stat83: 1.26093299e-12 + syst_JES_EtaIntercalibration_Stat84: 1.26093299e-12 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 7.631415858148473e-11 - syst_JES_EtaIntercalibration_Stat9: 2.1589917165387642e-06 - syst_JES_EtaIntercalibration_Stat90: 7.631415858148473e-11 - syst_JES_EtaIntercalibration_Stat91: 5.959120803440723e-11 - syst_JES_EtaIntercalibration_Stat92: 5.959120803440723e-11 + syst_JES_EtaIntercalibration_Stat89: 7.63141586e-11 + syst_JES_EtaIntercalibration_Stat9: 2.15899172e-06 + syst_JES_EtaIntercalibration_Stat90: 7.63141586e-11 + syst_JES_EtaIntercalibration_Stat91: 5.95912080e-11 + syst_JES_EtaIntercalibration_Stat92: 5.95912080e-11 syst_JES_EtaIntercalibration_Stat93: 0.0 syst_JES_EtaIntercalibration_Stat94: 0.0 - syst_JES_EtaIntercalibration_Stat95: 2.158427824412945e-06 - syst_JES_EtaIntercalibration_Stat96: 4.039736129996612e-05 - syst_JES_EtaIntercalibration_Stat97: 5.391258920697466e-05 - syst_JES_EtaIntercalibration_Stat98: 1.5312883464586283e-05 - syst_JES_EtaIntercalibration_Stat99: 1.2801440231473957e-05 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.039354158925709495 - syst_JES_Flavour_Comp: 0.1270700125914844 - syst_JES_Gjet_Generator: 0.400832964057349 - syst_JES_Gjet_OOC: 0.2864939920836037 - syst_JES_Gjet_Purity: 0.10125222009911684 - syst_JES_Gjet_Stat1: 0.00023253255014083512 - syst_JES_Gjet_Stat10: 0.01882104141645727 - syst_JES_Gjet_Stat11: 0.033805213725104595 - syst_JES_Gjet_Stat12: 0.05956255367258862 - syst_JES_Gjet_Stat13: 0.028115990112389782 - syst_JES_Gjet_Stat14: 0.013930318329097866 - syst_JES_Gjet_Stat15: 0.0029018691820962574 - syst_JES_Gjet_Stat2: 0.0005934006066730973 - syst_JES_Gjet_Stat3: 0.0007521650550244939 - syst_JES_Gjet_Stat4: 0.0008706339112968204 - syst_JES_Gjet_Stat5: 0.0008919248903355036 - syst_JES_Gjet_Stat6: 0.0019244123778442083 - syst_JES_Gjet_Stat7: 0.004019196934712207 - syst_JES_Gjet_Stat8: 0.003282102619891706 - syst_JES_Gjet_Stat9: 0.009007375644437175 - syst_JES_Gjet_Veto: 0.14851319806670385 - syst_JES_Gjet_dPhi: 0.020243500191419465 - syst_JES_LArESZee: 0.5497230461787099 - syst_JES_LArEsmear: 0.0425758038679248 - syst_JES_LAr_JVT: 0.0582384003471936 - syst_JES_MJB_Alpha: 0.0039701096647321975 - syst_JES_MJB_Asym: 0.015782207545207358 - syst_JES_MJB_Beta: 1.723715391240677e-07 - syst_JES_MJB_Stat1: 0.003467517123245392 - syst_JES_MJB_Stat10: 7.0338583295369414e-06 - syst_JES_MJB_Stat11: 8.797952077046112e-08 - syst_JES_MJB_Stat12: 7.609850516350502e-08 - syst_JES_MJB_Stat13: 7.780236548460464e-07 - syst_JES_MJB_Stat14: 4.704081864455592e-07 - syst_JES_MJB_Stat15: 2.852816503036955e-11 - syst_JES_MJB_Stat16: 4.086594181895237e-14 - syst_JES_MJB_Stat2: 0.0035191215878397834 - syst_JES_MJB_Stat3: 0.005118978682315448 - syst_JES_MJB_Stat4: 0.0012843388339141661 - syst_JES_MJB_Stat5: 0.0016901456172472244 - syst_JES_MJB_Stat6: 3.0267080694052524e-05 - syst_JES_MJB_Stat7: 1.3018242872626859e-09 - syst_JES_MJB_Stat8: 3.3472659613004175e-15 - syst_JES_MJB_Stat9: 3.3083782991330003e-15 - syst_JES_MJB_Threshold: 0.018670658129803567 - syst_JES_Pileup_MuOffset: 0.03315209608757793 - syst_JES_Pileup_NPVOffset: 0.04267052144045114 - syst_JES_Pileup_Pt_term: 0.0574680213249073 - syst_JES_PunchThrough_MC15: 0.0035238613320475597 + syst_JES_EtaIntercalibration_Stat95: 2.15842782e-06 + syst_JES_EtaIntercalibration_Stat96: 4.03973613e-05 + syst_JES_EtaIntercalibration_Stat97: 5.39125892e-05 + syst_JES_EtaIntercalibration_Stat98: 1.53128835e-05 + syst_JES_EtaIntercalibration_Stat99: 1.28014402e-05 + syst_JES_EtaIntercalibration_TotalStat_MJB: 3.93541589e-02 + syst_JES_Flavour_Comp: 1.27070013e-01 + syst_JES_Gjet_Generator: 4.00832964e-01 + syst_JES_Gjet_OOC: 2.86493992e-01 + syst_JES_Gjet_Purity: 1.01252220e-01 + syst_JES_Gjet_Stat1: 2.32532550e-04 + syst_JES_Gjet_Stat10: 1.88210414e-02 + syst_JES_Gjet_Stat11: 3.38052137e-02 + syst_JES_Gjet_Stat12: 5.95625537e-02 + syst_JES_Gjet_Stat13: 2.81159901e-02 + syst_JES_Gjet_Stat14: 1.39303183e-02 + syst_JES_Gjet_Stat15: 2.90186918e-03 + syst_JES_Gjet_Stat2: 5.93400607e-04 + syst_JES_Gjet_Stat3: 7.52165055e-04 + syst_JES_Gjet_Stat4: 8.70633911e-04 + syst_JES_Gjet_Stat5: 8.91924890e-04 + syst_JES_Gjet_Stat6: 1.92441238e-03 + syst_JES_Gjet_Stat7: 4.01919693e-03 + syst_JES_Gjet_Stat8: 3.28210262e-03 + syst_JES_Gjet_Stat9: 9.00737564e-03 + syst_JES_Gjet_Veto: 1.48513198e-01 + syst_JES_Gjet_dPhi: 2.02435002e-02 + syst_JES_LArESZee: 5.49723046e-01 + syst_JES_LArEsmear: 4.25758039e-02 + syst_JES_LAr_JVT: 5.82384003e-02 + syst_JES_MJB_Alpha: 3.97010966e-03 + syst_JES_MJB_Asym: 1.57822075e-02 + syst_JES_MJB_Beta: 1.72371539e-07 + syst_JES_MJB_Stat1: 3.46751712e-03 + syst_JES_MJB_Stat10: 7.03385833e-06 + syst_JES_MJB_Stat11: 8.79795208e-08 + syst_JES_MJB_Stat12: 7.60985052e-08 + syst_JES_MJB_Stat13: 7.78023655e-07 + syst_JES_MJB_Stat14: 4.70408186e-07 + syst_JES_MJB_Stat15: 2.85281650e-11 + syst_JES_MJB_Stat16: 4.08659418e-14 + syst_JES_MJB_Stat2: 3.51912159e-03 + syst_JES_MJB_Stat3: 5.11897868e-03 + syst_JES_MJB_Stat4: 1.28433883e-03 + syst_JES_MJB_Stat5: 1.69014562e-03 + syst_JES_MJB_Stat6: 3.02670807e-05 + syst_JES_MJB_Stat7: 1.30182429e-09 + syst_JES_MJB_Stat8: 3.34726596e-15 + syst_JES_MJB_Stat9: 3.30837830e-15 + syst_JES_MJB_Threshold: 1.86706581e-02 + syst_JES_Pileup_MuOffset: 3.31520961e-02 + syst_JES_Pileup_NPVOffset: 4.26705214e-02 + syst_JES_Pileup_Pt_term: 5.74680213e-02 + syst_JES_PunchThrough_MC15: 3.52386133e-03 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.35931401308604705 - syst_JES_Zjet_MuScale: 0.02276539643845457 - syst_JES_Zjet_MuSmearID: 0.00470081554094606 - syst_JES_Zjet_MuSmearMS: 0.07610511858607147 - syst_JES_Zjet_OOC: 0.1364407981506998 - syst_JES_Zjet_Stat1: 0.0032014212015915675 - syst_JES_Zjet_Stat10: 0.015025598157810557 - syst_JES_Zjet_Stat11: 0.016965649854927458 - syst_JES_Zjet_Stat12: 0.12000352161499261 - syst_JES_Zjet_Stat13: 0.05715946181517107 + syst_JES_Zjet_MC: 3.59314013e-01 + syst_JES_Zjet_MuScale: 2.27653964e-02 + syst_JES_Zjet_MuSmearID: 4.70081554e-03 + syst_JES_Zjet_MuSmearMS: 7.61051186e-02 + syst_JES_Zjet_OOC: 1.36440798e-01 + syst_JES_Zjet_Stat1: 3.20142120e-03 + syst_JES_Zjet_Stat10: 1.50255982e-02 + syst_JES_Zjet_Stat11: 1.69656499e-02 + syst_JES_Zjet_Stat12: 1.20003522e-01 + syst_JES_Zjet_Stat13: 5.71594618e-02 syst_JES_Zjet_Stat2: 0.0 - syst_JES_Zjet_Stat3: 0.0010739772902626946 - syst_JES_Zjet_Stat4: 0.00119709160363775 - syst_JES_Zjet_Stat5: 0.0012088369151792148 - syst_JES_Zjet_Stat6: 0.0019564718244840635 - syst_JES_Zjet_Stat7: 0.002176560302403772 - syst_JES_Zjet_Stat8: 0.0021287171606392432 - syst_JES_Zjet_Stat9: 0.0066244945467560015 - syst_JES_Zjet_Veto: 0.027794925795907425 - syst_JES_Zjet_dPhi: 0.02299672150546682 + syst_JES_Zjet_Stat3: 1.07397729e-03 + syst_JES_Zjet_Stat4: 1.19709160e-03 + syst_JES_Zjet_Stat5: 1.20883692e-03 + syst_JES_Zjet_Stat6: 1.95647182e-03 + syst_JES_Zjet_Stat7: 2.17656030e-03 + syst_JES_Zjet_Stat8: 2.12871716e-03 + syst_JES_Zjet_Stat9: 6.62449455e-03 + syst_JES_Zjet_Veto: 2.77949258e-02 + syst_JES_Zjet_dPhi: 2.29967215e-02 syst_PRW: 0.012243 syst_Unfolding_bias: 0.00201 - syst_cleaning: 0.1164024745226664 + syst_cleaning: 1.16402475e-01 syst_lumi: 0.4662 - syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.042035999750214104 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.12114581905703556 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 0.02262213959819009 + syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 4.20359998e-02 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.21145819e-01 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 2.26221396e-02 syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 0.2705249896035485 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.021780555548470294 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.055250407238318165 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 2.70524990e-01 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 2.17805555e-02 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 5.52504072e-02 - stat: 0.08091 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.040916293514931194 - syst_JER_NP1: 0.0011156999058886759 - syst_JER_NP2: 0.005047988980772441 - syst_JER_NP3: 0.01288013190926242 - syst_JER_NP4: 0.00675432313411196 - syst_JER_NP5: 0.004077525475089027 - syst_JER_NP6: 0.004471925619909169 - syst_JER_NP7: 0.008016747969095699 - syst_JER_NP8: 0.009671747760875486 - syst_JES_EtaIntercalibration_Modelling: 0.05707720801686081 + syst_JER_NP0: 4.09162935e-02 + syst_JER_NP1: 1.11569991e-03 + syst_JER_NP2: 5.04798898e-03 + syst_JER_NP3: 1.28801319e-02 + syst_JER_NP4: 6.75432313e-03 + syst_JER_NP5: 4.07752548e-03 + syst_JER_NP6: 4.47192562e-03 + syst_JER_NP7: 8.01674797e-03 + syst_JER_NP8: 9.67174776e-03 + syst_JES_EtaIntercalibration_Modelling: 5.70772080e-02 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 - syst_JES_EtaIntercalibration_Stat10: 1.939168509458371e-09 - syst_JES_EtaIntercalibration_Stat100: 9.135114652810879e-08 + syst_JES_EtaIntercalibration_Stat10: 1.93916851e-09 + syst_JES_EtaIntercalibration_Stat100: 9.13511465e-08 syst_JES_EtaIntercalibration_Stat101: 0.0 syst_JES_EtaIntercalibration_Stat102: 0.0 - syst_JES_EtaIntercalibration_Stat103: 1.5796303365028161e-13 - syst_JES_EtaIntercalibration_Stat104: 1.5796303365028161e-13 - syst_JES_EtaIntercalibration_Stat105: 1.5796303365028161e-13 + syst_JES_EtaIntercalibration_Stat103: 1.57963034e-13 + syst_JES_EtaIntercalibration_Stat104: 1.57963034e-13 + syst_JES_EtaIntercalibration_Stat105: 1.57963034e-13 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 8.995405869108965e-12 - syst_JES_EtaIntercalibration_Stat11: 9.221438499496702e-08 - syst_JES_EtaIntercalibration_Stat110: 8.900902466604158e-12 - syst_JES_EtaIntercalibration_Stat111: 7.065901269477235e-12 - syst_JES_EtaIntercalibration_Stat112: 7.065901269477235e-12 + syst_JES_EtaIntercalibration_Stat109: 8.99540587e-12 + syst_JES_EtaIntercalibration_Stat11: 9.22143850e-08 + syst_JES_EtaIntercalibration_Stat110: 8.90090247e-12 + syst_JES_EtaIntercalibration_Stat111: 7.06590127e-12 + syst_JES_EtaIntercalibration_Stat112: 7.06590127e-12 syst_JES_EtaIntercalibration_Stat113: 0.0 - syst_JES_EtaIntercalibration_Stat114: 1.0728322702081625e-11 - syst_JES_EtaIntercalibration_Stat115: 2.4540376423355857e-06 - syst_JES_EtaIntercalibration_Stat116: 0.00011927816684854779 - syst_JES_EtaIntercalibration_Stat117: 0.00023707283690882852 - syst_JES_EtaIntercalibration_Stat118: 0.00028042795866318326 - syst_JES_EtaIntercalibration_Stat119: 3.203471159539289e-05 - syst_JES_EtaIntercalibration_Stat12: 3.870237343695624e-06 - syst_JES_EtaIntercalibration_Stat120: 1.4768978554452406e-05 - syst_JES_EtaIntercalibration_Stat121: 9.347878208449232e-11 + syst_JES_EtaIntercalibration_Stat114: 1.07283227e-11 + syst_JES_EtaIntercalibration_Stat115: 2.45403764e-06 + syst_JES_EtaIntercalibration_Stat116: 1.19278167e-04 + syst_JES_EtaIntercalibration_Stat117: 2.37072837e-04 + syst_JES_EtaIntercalibration_Stat118: 2.80427959e-04 + syst_JES_EtaIntercalibration_Stat119: 3.20347116e-05 + syst_JES_EtaIntercalibration_Stat12: 3.87023734e-06 + syst_JES_EtaIntercalibration_Stat120: 1.47689786e-05 + syst_JES_EtaIntercalibration_Stat121: 9.34787821e-11 syst_JES_EtaIntercalibration_Stat122: 0.0 - syst_JES_EtaIntercalibration_Stat123: 1.5796303365028161e-13 - syst_JES_EtaIntercalibration_Stat124: 1.5796303365028161e-13 - syst_JES_EtaIntercalibration_Stat125: 1.5796303365028161e-13 + syst_JES_EtaIntercalibration_Stat123: 1.57963034e-13 + syst_JES_EtaIntercalibration_Stat124: 1.57963034e-13 + syst_JES_EtaIntercalibration_Stat125: 1.57963034e-13 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 8.995405869108965e-12 - syst_JES_EtaIntercalibration_Stat129: 8.900902466604158e-12 + syst_JES_EtaIntercalibration_Stat128: 8.99540587e-12 + syst_JES_EtaIntercalibration_Stat129: 8.90090247e-12 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 2.967003033365487e-13 + syst_JES_EtaIntercalibration_Stat130: 2.96700303e-13 syst_JES_EtaIntercalibration_Stat131: 0.0 syst_JES_EtaIntercalibration_Stat132: 0.0 - syst_JES_EtaIntercalibration_Stat133: 1.0728322702081625e-11 - syst_JES_EtaIntercalibration_Stat134: 6.860151869127971e-05 - syst_JES_EtaIntercalibration_Stat135: 0.0011787519204650317 - syst_JES_EtaIntercalibration_Stat136: 0.0022045826702575704 - syst_JES_EtaIntercalibration_Stat137: 0.0021519839102558365 - syst_JES_EtaIntercalibration_Stat138: 0.0012613640027763595 - syst_JES_EtaIntercalibration_Stat139: 6.253571321053274e-06 + syst_JES_EtaIntercalibration_Stat133: 1.07283227e-11 + syst_JES_EtaIntercalibration_Stat134: 6.86015187e-05 + syst_JES_EtaIntercalibration_Stat135: 1.17875192e-03 + syst_JES_EtaIntercalibration_Stat136: 2.20458267e-03 + syst_JES_EtaIntercalibration_Stat137: 2.15198391e-03 + syst_JES_EtaIntercalibration_Stat138: 1.26136400e-03 + syst_JES_EtaIntercalibration_Stat139: 6.25357132e-06 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 9.347878208449232e-11 + syst_JES_EtaIntercalibration_Stat140: 9.34787821e-11 syst_JES_EtaIntercalibration_Stat141: 0.0 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 1.5796303365028161e-13 - syst_JES_EtaIntercalibration_Stat144: 1.5796303365028161e-13 + syst_JES_EtaIntercalibration_Stat143: 1.57963034e-13 + syst_JES_EtaIntercalibration_Stat144: 1.57963034e-13 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 2.967003033365487e-13 - syst_JES_EtaIntercalibration_Stat148: 2.967003033365487e-13 + syst_JES_EtaIntercalibration_Stat147: 2.96700303e-13 + syst_JES_EtaIntercalibration_Stat148: 2.96700303e-13 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 syst_JES_EtaIntercalibration_Stat150: 0.0 syst_JES_EtaIntercalibration_Stat151: 0.0 - syst_JES_EtaIntercalibration_Stat152: 4.695660497859221e-06 - syst_JES_EtaIntercalibration_Stat153: 0.0022216711615358382 - syst_JES_EtaIntercalibration_Stat154: 0.0029028321945989235 - syst_JES_EtaIntercalibration_Stat155: 0.002776493111822898 - syst_JES_EtaIntercalibration_Stat156: 0.0020784529703604076 - syst_JES_EtaIntercalibration_Stat157: 3.835095957078519e-05 + syst_JES_EtaIntercalibration_Stat152: 4.69566050e-06 + syst_JES_EtaIntercalibration_Stat153: 2.22167116e-03 + syst_JES_EtaIntercalibration_Stat154: 2.90283219e-03 + syst_JES_EtaIntercalibration_Stat155: 2.77649311e-03 + syst_JES_EtaIntercalibration_Stat156: 2.07845297e-03 + syst_JES_EtaIntercalibration_Stat157: 3.83509596e-05 syst_JES_EtaIntercalibration_Stat158: 0.0 syst_JES_EtaIntercalibration_Stat159: 0.0 syst_JES_EtaIntercalibration_Stat16: 0.0 @@ -5560,18 +5560,18 @@ bins: syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 2.967003033365487e-13 + syst_JES_EtaIntercalibration_Stat165: 2.96700303e-13 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 0.0001130620523208384 - syst_JES_EtaIntercalibration_Stat171: 0.005099807447345439 - syst_JES_EtaIntercalibration_Stat172: 0.006520381583925898 - syst_JES_EtaIntercalibration_Stat173: 0.007279290693467324 - syst_JES_EtaIntercalibration_Stat174: 0.00350912830771404 - syst_JES_EtaIntercalibration_Stat175: 8.860650849683673e-05 + syst_JES_EtaIntercalibration_Stat170: 1.13062052e-04 + syst_JES_EtaIntercalibration_Stat171: 5.09980745e-03 + syst_JES_EtaIntercalibration_Stat172: 6.52038158e-03 + syst_JES_EtaIntercalibration_Stat173: 7.27929069e-03 + syst_JES_EtaIntercalibration_Stat174: 3.50912831e-03 + syst_JES_EtaIntercalibration_Stat175: 8.86065085e-05 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 syst_JES_EtaIntercalibration_Stat178: 0.0 @@ -5584,14 +5584,14 @@ bins: syst_JES_EtaIntercalibration_Stat184: 0.0 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 - syst_JES_EtaIntercalibration_Stat187: 0.0003823106949851129 - syst_JES_EtaIntercalibration_Stat188: 0.013272244798827363 - syst_JES_EtaIntercalibration_Stat189: 0.020553006471073765 + syst_JES_EtaIntercalibration_Stat187: 3.82310695e-04 + syst_JES_EtaIntercalibration_Stat188: 1.32722448e-02 + syst_JES_EtaIntercalibration_Stat189: 2.05530065e-02 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 0.020185541855496474 - syst_JES_EtaIntercalibration_Stat191: 0.01364408047469671 - syst_JES_EtaIntercalibration_Stat192: 0.00022650159965554328 - syst_JES_EtaIntercalibration_Stat193: 1.885337304038723e-05 + syst_JES_EtaIntercalibration_Stat190: 2.01855419e-02 + syst_JES_EtaIntercalibration_Stat191: 1.36440805e-02 + syst_JES_EtaIntercalibration_Stat192: 2.26501600e-04 + syst_JES_EtaIntercalibration_Stat193: 1.88533730e-05 syst_JES_EtaIntercalibration_Stat194: 0.0 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 @@ -5602,13 +5602,13 @@ bins: syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 syst_JES_EtaIntercalibration_Stat201: 0.0 - syst_JES_EtaIntercalibration_Stat202: 0.00028414658189040385 - syst_JES_EtaIntercalibration_Stat203: 0.00942965910041291 - syst_JES_EtaIntercalibration_Stat204: 0.014257174360650852 - syst_JES_EtaIntercalibration_Stat205: 0.013097569889105385 - syst_JES_EtaIntercalibration_Stat206: 0.0100508003039559 - syst_JES_EtaIntercalibration_Stat207: 0.00012683270319598176 - syst_JES_EtaIntercalibration_Stat208: 1.885337304038723e-05 + syst_JES_EtaIntercalibration_Stat202: 2.84146582e-04 + syst_JES_EtaIntercalibration_Stat203: 9.42965910e-03 + syst_JES_EtaIntercalibration_Stat204: 1.42571744e-02 + syst_JES_EtaIntercalibration_Stat205: 1.30975699e-02 + syst_JES_EtaIntercalibration_Stat206: 1.00508003e-02 + syst_JES_EtaIntercalibration_Stat207: 1.26832703e-04 + syst_JES_EtaIntercalibration_Stat208: 1.88533730e-05 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 @@ -5616,38 +5616,38 @@ bins: syst_JES_EtaIntercalibration_Stat212: 0.0 syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 - syst_JES_EtaIntercalibration_Stat215: 5.060081298754004e-05 - syst_JES_EtaIntercalibration_Stat216: 0.0008094747185675412 - syst_JES_EtaIntercalibration_Stat217: 0.0004110624131442815 - syst_JES_EtaIntercalibration_Stat218: 0.0004817524734497997 - syst_JES_EtaIntercalibration_Stat219: 0.0008856101681891419 + syst_JES_EtaIntercalibration_Stat215: 5.06008130e-05 + syst_JES_EtaIntercalibration_Stat216: 8.09474719e-04 + syst_JES_EtaIntercalibration_Stat217: 4.11062413e-04 + syst_JES_EtaIntercalibration_Stat218: 4.81752473e-04 + syst_JES_EtaIntercalibration_Stat219: 8.85610168e-04 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 0.00011964157502724545 + syst_JES_EtaIntercalibration_Stat220: 1.19641575e-04 syst_JES_EtaIntercalibration_Stat221: 0.0 syst_JES_EtaIntercalibration_Stat222: 0.0 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 - syst_JES_EtaIntercalibration_Stat227: 8.936922584424686e-06 - syst_JES_EtaIntercalibration_Stat228: 0.0005006500049935084 - syst_JES_EtaIntercalibration_Stat229: 0.0008004806977685345 + syst_JES_EtaIntercalibration_Stat227: 8.93692258e-06 + syst_JES_EtaIntercalibration_Stat228: 5.00650005e-04 + syst_JES_EtaIntercalibration_Stat229: 8.00480698e-04 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 0.0006125607480079017 - syst_JES_EtaIntercalibration_Stat231: 0.0005738396705526729 - syst_JES_EtaIntercalibration_Stat232: 4.9380768523788694e-05 + syst_JES_EtaIntercalibration_Stat230: 6.12560748e-04 + syst_JES_EtaIntercalibration_Stat231: 5.73839671e-04 + syst_JES_EtaIntercalibration_Stat232: 4.93807685e-05 syst_JES_EtaIntercalibration_Stat233: 0.0 syst_JES_EtaIntercalibration_Stat234: 0.0 syst_JES_EtaIntercalibration_Stat235: 0.0 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 - syst_JES_EtaIntercalibration_Stat238: 1.5467213711590076e-16 - syst_JES_EtaIntercalibration_Stat239: 8.787331847608806e-07 + syst_JES_EtaIntercalibration_Stat238: 1.54672137e-16 + syst_JES_EtaIntercalibration_Stat239: 8.78733185e-07 syst_JES_EtaIntercalibration_Stat24: 0.0 - syst_JES_EtaIntercalibration_Stat240: 9.654071188234527e-07 - syst_JES_EtaIntercalibration_Stat241: 1.425872318968287e-06 - syst_JES_EtaIntercalibration_Stat242: 5.34722208253968e-07 - syst_JES_EtaIntercalibration_Stat243: 1.166363013816882e-16 + syst_JES_EtaIntercalibration_Stat240: 9.65407119e-07 + syst_JES_EtaIntercalibration_Stat241: 1.42587232e-06 + syst_JES_EtaIntercalibration_Stat242: 5.34722208e-07 + syst_JES_EtaIntercalibration_Stat243: 1.16636301e-16 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 syst_JES_EtaIntercalibration_Stat25: 0.0 @@ -5656,12 +5656,12 @@ bins: syst_JES_EtaIntercalibration_Stat28: 0.0 syst_JES_EtaIntercalibration_Stat29: 0.0 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 1.0405793524763021e-11 - syst_JES_EtaIntercalibration_Stat31: 7.968241713201225e-05 - syst_JES_EtaIntercalibration_Stat32: 1.1306486755398425e-07 - syst_JES_EtaIntercalibration_Stat33: 3.5773568801151225e-06 - syst_JES_EtaIntercalibration_Stat34: 1.541595870488945e-05 - syst_JES_EtaIntercalibration_Stat35: 9.184556005156375e-11 + syst_JES_EtaIntercalibration_Stat30: 1.04057935e-11 + syst_JES_EtaIntercalibration_Stat31: 7.96824171e-05 + syst_JES_EtaIntercalibration_Stat32: 1.13064868e-07 + syst_JES_EtaIntercalibration_Stat33: 3.57735688e-06 + syst_JES_EtaIntercalibration_Stat34: 1.54159587e-05 + syst_JES_EtaIntercalibration_Stat35: 9.18455601e-11 syst_JES_EtaIntercalibration_Stat36: 0.0 syst_JES_EtaIntercalibration_Stat37: 0.0 syst_JES_EtaIntercalibration_Stat38: 0.0 @@ -5680,220 +5680,220 @@ bins: syst_JES_EtaIntercalibration_Stat5: 0.0 syst_JES_EtaIntercalibration_Stat50: 0.0 syst_JES_EtaIntercalibration_Stat51: 0.0 - syst_JES_EtaIntercalibration_Stat52: 1.0692603433416018e-10 - syst_JES_EtaIntercalibration_Stat53: 4.404144148603109e-07 - syst_JES_EtaIntercalibration_Stat54: 4.262988303995215e-05 - syst_JES_EtaIntercalibration_Stat55: 3.0374454727616102e-06 - syst_JES_EtaIntercalibration_Stat56: 1.4950387306958807e-05 - syst_JES_EtaIntercalibration_Stat57: 9.143989319219483e-10 + syst_JES_EtaIntercalibration_Stat52: 1.06926034e-10 + syst_JES_EtaIntercalibration_Stat53: 4.40414415e-07 + syst_JES_EtaIntercalibration_Stat54: 4.26298830e-05 + syst_JES_EtaIntercalibration_Stat55: 3.03744547e-06 + syst_JES_EtaIntercalibration_Stat56: 1.49503873e-05 + syst_JES_EtaIntercalibration_Stat57: 9.14398932e-10 syst_JES_EtaIntercalibration_Stat58: 0.0 syst_JES_EtaIntercalibration_Stat59: 0.0 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 1.5796303365028161e-13 - syst_JES_EtaIntercalibration_Stat62: 1.5796303365028161e-13 + syst_JES_EtaIntercalibration_Stat61: 1.57963034e-13 + syst_JES_EtaIntercalibration_Stat62: 1.57963034e-13 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 8.995405869108965e-12 - syst_JES_EtaIntercalibration_Stat69: 8.995405869108965e-12 + syst_JES_EtaIntercalibration_Stat68: 8.99540587e-12 + syst_JES_EtaIntercalibration_Stat69: 8.99540587e-12 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 7.065901269477235e-12 - syst_JES_EtaIntercalibration_Stat71: 7.065901269477235e-12 + syst_JES_EtaIntercalibration_Stat70: 7.06590127e-12 + syst_JES_EtaIntercalibration_Stat71: 7.06590127e-12 syst_JES_EtaIntercalibration_Stat72: 0.0 syst_JES_EtaIntercalibration_Stat73: 0.0 - syst_JES_EtaIntercalibration_Stat74: 3.259474779021154e-07 - syst_JES_EtaIntercalibration_Stat75: 4.3385913289914736e-05 - syst_JES_EtaIntercalibration_Stat76: 1.4105068264634525e-05 - syst_JES_EtaIntercalibration_Stat77: 2.3016079830196975e-05 - syst_JES_EtaIntercalibration_Stat78: 5.001602943807115e-06 - syst_JES_EtaIntercalibration_Stat79: 1.0832463466358885e-09 + syst_JES_EtaIntercalibration_Stat74: 3.25947478e-07 + syst_JES_EtaIntercalibration_Stat75: 4.33859133e-05 + syst_JES_EtaIntercalibration_Stat76: 1.41050683e-05 + syst_JES_EtaIntercalibration_Stat77: 2.30160798e-05 + syst_JES_EtaIntercalibration_Stat78: 5.00160294e-06 + syst_JES_EtaIntercalibration_Stat79: 1.08324635e-09 syst_JES_EtaIntercalibration_Stat8: 0.0 syst_JES_EtaIntercalibration_Stat80: 0.0 syst_JES_EtaIntercalibration_Stat81: 0.0 - syst_JES_EtaIntercalibration_Stat82: 1.5796303365028161e-13 - syst_JES_EtaIntercalibration_Stat83: 1.5796303365028161e-13 - syst_JES_EtaIntercalibration_Stat84: 1.5796303365028161e-13 + syst_JES_EtaIntercalibration_Stat82: 1.57963034e-13 + syst_JES_EtaIntercalibration_Stat83: 1.57963034e-13 + syst_JES_EtaIntercalibration_Stat84: 1.57963034e-13 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 8.995405869108965e-12 - syst_JES_EtaIntercalibration_Stat9: 3.2632974786364477e-07 - syst_JES_EtaIntercalibration_Stat90: 8.995405869108965e-12 - syst_JES_EtaIntercalibration_Stat91: 7.065901269477235e-12 - syst_JES_EtaIntercalibration_Stat92: 7.065901269477235e-12 + syst_JES_EtaIntercalibration_Stat89: 8.99540587e-12 + syst_JES_EtaIntercalibration_Stat9: 3.26329748e-07 + syst_JES_EtaIntercalibration_Stat90: 8.99540587e-12 + syst_JES_EtaIntercalibration_Stat91: 7.06590127e-12 + syst_JES_EtaIntercalibration_Stat92: 7.06590127e-12 syst_JES_EtaIntercalibration_Stat93: 0.0 syst_JES_EtaIntercalibration_Stat94: 0.0 - syst_JES_EtaIntercalibration_Stat95: 3.260327867358588e-07 - syst_JES_EtaIntercalibration_Stat96: 3.2529563092670026e-05 - syst_JES_EtaIntercalibration_Stat97: 2.3038951294492556e-05 - syst_JES_EtaIntercalibration_Stat98: 1.8718435912223008e-05 - syst_JES_EtaIntercalibration_Stat99: 9.640868321888853e-06 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.031833389310596504 - syst_JES_Flavour_Comp: 0.09975648587936527 - syst_JES_Gjet_Generator: 0.2530148365214973 - syst_JES_Gjet_OOC: 0.18625162415399227 - syst_JES_Gjet_Purity: 0.06571461842695277 - syst_JES_Gjet_Stat1: 0.0002629636037078135 - syst_JES_Gjet_Stat10: 0.009890763519567131 - syst_JES_Gjet_Stat11: 0.017440693793539293 - syst_JES_Gjet_Stat12: 0.03896979105345576 - syst_JES_Gjet_Stat13: 0.031370171740046304 - syst_JES_Gjet_Stat14: 0.007615931394123768 - syst_JES_Gjet_Stat15: 0.004050185304402751 - syst_JES_Gjet_Stat2: 0.00036944643725351833 - syst_JES_Gjet_Stat3: 0.00047009128900672053 - syst_JES_Gjet_Stat4: 0.0006037607700902735 - syst_JES_Gjet_Stat5: 0.0005567936152651178 - syst_JES_Gjet_Stat6: 0.0012616641183373647 - syst_JES_Gjet_Stat7: 0.0026313864691451163 - syst_JES_Gjet_Stat8: 0.0019430131239906744 - syst_JES_Gjet_Stat9: 0.005177181472577526 - syst_JES_Gjet_Veto: 0.108360180878402 - syst_JES_Gjet_dPhi: 0.013986292173052872 - syst_JES_LArESZee: 0.3573041561471123 - syst_JES_LArEsmear: 0.027500003636363395 - syst_JES_LAr_JVT: 0.03693500609178235 - syst_JES_MJB_Alpha: 0.0031566290564461327 - syst_JES_MJB_Asym: 0.011660141540736116 - syst_JES_MJB_Beta: 4.209057092449566e-06 - syst_JES_MJB_Stat1: 0.0021294076641169488 - syst_JES_MJB_Stat10: 8.196930442976291e-06 - syst_JES_MJB_Stat11: 2.1486090267891924e-06 - syst_JES_MJB_Stat12: 1.843219972439535e-06 - syst_JES_MJB_Stat13: 1.5319840101972343e-06 - syst_JES_MJB_Stat14: 1.6842915981207053e-06 - syst_JES_MJB_Stat15: 2.4427204097071772e-09 - syst_JES_MJB_Stat16: 1.5204251872420424e-11 - syst_JES_MJB_Stat2: 0.002742210879472985 - syst_JES_MJB_Stat3: 0.004542646035076913 - syst_JES_MJB_Stat4: 0.00015709734848176144 - syst_JES_MJB_Stat5: 0.0014319296910113987 - syst_JES_MJB_Stat6: 2.4006508159403357e-05 - syst_JES_MJB_Stat7: 1.1072089363236731e-07 - syst_JES_MJB_Stat8: 6.791507628818508e-12 - syst_JES_MJB_Stat9: 6.713884496095144e-12 - syst_JES_MJB_Threshold: 0.015046809462474095 - syst_JES_Pileup_MuOffset: 0.026916137817302097 - syst_JES_Pileup_NPVOffset: 0.031275135091634695 - syst_JES_Pileup_Pt_term: 0.03669705267456775 - syst_JES_PunchThrough_MC15: 0.0030779145537197746 + syst_JES_EtaIntercalibration_Stat95: 3.26032787e-07 + syst_JES_EtaIntercalibration_Stat96: 3.25295631e-05 + syst_JES_EtaIntercalibration_Stat97: 2.30389513e-05 + syst_JES_EtaIntercalibration_Stat98: 1.87184359e-05 + syst_JES_EtaIntercalibration_Stat99: 9.64086832e-06 + syst_JES_EtaIntercalibration_TotalStat_MJB: 3.18333893e-02 + syst_JES_Flavour_Comp: 9.97564859e-02 + syst_JES_Gjet_Generator: 2.53014837e-01 + syst_JES_Gjet_OOC: 1.86251624e-01 + syst_JES_Gjet_Purity: 6.57146184e-02 + syst_JES_Gjet_Stat1: 2.62963604e-04 + syst_JES_Gjet_Stat10: 9.89076352e-03 + syst_JES_Gjet_Stat11: 1.74406938e-02 + syst_JES_Gjet_Stat12: 3.89697911e-02 + syst_JES_Gjet_Stat13: 3.13701717e-02 + syst_JES_Gjet_Stat14: 7.61593139e-03 + syst_JES_Gjet_Stat15: 4.05018530e-03 + syst_JES_Gjet_Stat2: 3.69446437e-04 + syst_JES_Gjet_Stat3: 4.70091289e-04 + syst_JES_Gjet_Stat4: 6.03760770e-04 + syst_JES_Gjet_Stat5: 5.56793615e-04 + syst_JES_Gjet_Stat6: 1.26166412e-03 + syst_JES_Gjet_Stat7: 2.63138647e-03 + syst_JES_Gjet_Stat8: 1.94301312e-03 + syst_JES_Gjet_Stat9: 5.17718147e-03 + syst_JES_Gjet_Veto: 1.08360181e-01 + syst_JES_Gjet_dPhi: 1.39862922e-02 + syst_JES_LArESZee: 3.57304156e-01 + syst_JES_LArEsmear: 2.75000036e-02 + syst_JES_LAr_JVT: 3.69350061e-02 + syst_JES_MJB_Alpha: 3.15662906e-03 + syst_JES_MJB_Asym: 1.16601415e-02 + syst_JES_MJB_Beta: 4.20905709e-06 + syst_JES_MJB_Stat1: 2.12940766e-03 + syst_JES_MJB_Stat10: 8.19693044e-06 + syst_JES_MJB_Stat11: 2.14860903e-06 + syst_JES_MJB_Stat12: 1.84321997e-06 + syst_JES_MJB_Stat13: 1.53198401e-06 + syst_JES_MJB_Stat14: 1.68429160e-06 + syst_JES_MJB_Stat15: 2.44272041e-09 + syst_JES_MJB_Stat16: 1.52042519e-11 + syst_JES_MJB_Stat2: 2.74221088e-03 + syst_JES_MJB_Stat3: 4.54264604e-03 + syst_JES_MJB_Stat4: 1.57097348e-04 + syst_JES_MJB_Stat5: 1.43192969e-03 + syst_JES_MJB_Stat6: 2.40065082e-05 + syst_JES_MJB_Stat7: 1.10720894e-07 + syst_JES_MJB_Stat8: 6.79150763e-12 + syst_JES_MJB_Stat9: 6.71388450e-12 + syst_JES_MJB_Threshold: 1.50468095e-02 + syst_JES_Pileup_MuOffset: 2.69161378e-02 + syst_JES_Pileup_NPVOffset: 3.12751351e-02 + syst_JES_Pileup_Pt_term: 3.66970527e-02 + syst_JES_PunchThrough_MC15: 3.07791455e-03 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.21586761568146343 - syst_JES_Zjet_MuScale: 0.014122781622258416 - syst_JES_Zjet_MuSmearID: 0.0030240520415495496 - syst_JES_Zjet_MuSmearMS: 0.05105959753072873 - syst_JES_Zjet_OOC: 0.08426536343599308 - syst_JES_Zjet_Stat1: 0.0026927422676520677 - syst_JES_Zjet_Stat10: 0.00879743695629585 - syst_JES_Zjet_Stat11: 0.008777693147974587 - syst_JES_Zjet_Stat12: 0.06633278751869244 - syst_JES_Zjet_Stat13: 0.04511797286004769 + syst_JES_Zjet_MC: 2.15867616e-01 + syst_JES_Zjet_MuScale: 1.41227816e-02 + syst_JES_Zjet_MuSmearID: 3.02405204e-03 + syst_JES_Zjet_MuSmearMS: 5.10595975e-02 + syst_JES_Zjet_OOC: 8.42653634e-02 + syst_JES_Zjet_Stat1: 2.69274227e-03 + syst_JES_Zjet_Stat10: 8.79743696e-03 + syst_JES_Zjet_Stat11: 8.77769315e-03 + syst_JES_Zjet_Stat12: 6.63327875e-02 + syst_JES_Zjet_Stat13: 4.51179729e-02 syst_JES_Zjet_Stat2: 0.0 - syst_JES_Zjet_Stat3: 0.0008955647980464619 - syst_JES_Zjet_Stat4: 0.000920061415069668 - syst_JES_Zjet_Stat5: 0.0007555462725736921 - syst_JES_Zjet_Stat6: 0.0015339455270641132 - syst_JES_Zjet_Stat7: 0.0018347779613620827 - syst_JES_Zjet_Stat8: 0.001509981042927361 - syst_JES_Zjet_Stat9: 0.004306750747373245 - syst_JES_Zjet_Veto: 0.017704428824449548 - syst_JES_Zjet_dPhi: 0.014444700784370717 + syst_JES_Zjet_Stat3: 8.95564798e-04 + syst_JES_Zjet_Stat4: 9.20061415e-04 + syst_JES_Zjet_Stat5: 7.55546273e-04 + syst_JES_Zjet_Stat6: 1.53394553e-03 + syst_JES_Zjet_Stat7: 1.83477796e-03 + syst_JES_Zjet_Stat8: 1.50998104e-03 + syst_JES_Zjet_Stat9: 4.30675075e-03 + syst_JES_Zjet_Veto: 1.77044288e-02 + syst_JES_Zjet_dPhi: 1.44447008e-02 syst_PRW: 0.007652 - syst_Unfolding_bias: 0.0012562 - syst_cleaning: 0.07380268491050987 + syst_Unfolding_bias: 1.25620000e-03 + syst_cleaning: 7.38026849e-02 syst_lumi: 0.2914 - syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.03172152581450016 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.07468512084076721 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 0.011831985843466853 + syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 3.17215258e-02 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 7.46851208e-02 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 1.18319858e-02 syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 0.14150212825254607 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.017400827566526826 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.036515055456619545 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 1.41502128e-01 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.74008276e-02 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 3.65150555e-02 - stat: 0.06185 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.02546789498564811 - syst_JER_NP1: 0.0009484930930164963 - syst_JER_NP2: 0.0032218617288766443 - syst_JER_NP3: 0.008407176041929894 - syst_JER_NP4: 0.004149027235389038 - syst_JER_NP5: 0.002603785081376725 - syst_JER_NP6: 0.00335817104239793 - syst_JER_NP7: 0.006339614558472778 - syst_JER_NP8: 0.006104423560009577 - syst_JES_EtaIntercalibration_Modelling: 0.04526519938098141 + syst_JER_NP0: 2.54678950e-02 + syst_JER_NP1: 9.48493093e-04 + syst_JER_NP2: 3.22186173e-03 + syst_JER_NP3: 8.40717604e-03 + syst_JER_NP4: 4.14902724e-03 + syst_JER_NP5: 2.60378508e-03 + syst_JER_NP6: 3.35817104e-03 + syst_JER_NP7: 6.33961456e-03 + syst_JER_NP8: 6.10442356e-03 + syst_JES_EtaIntercalibration_Modelling: 4.52651994e-02 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 - syst_JES_EtaIntercalibration_Stat10: 2.3363875260484934e-10 - syst_JES_EtaIntercalibration_Stat100: 1.742504826392168e-08 + syst_JES_EtaIntercalibration_Stat10: 2.33638753e-10 + syst_JES_EtaIntercalibration_Stat100: 1.74250483e-08 syst_JES_EtaIntercalibration_Stat101: 0.0 syst_JES_EtaIntercalibration_Stat102: 0.0 - syst_JES_EtaIntercalibration_Stat103: 2.1702596618838034e-14 - syst_JES_EtaIntercalibration_Stat104: 2.1702596618838034e-14 - syst_JES_EtaIntercalibration_Stat105: 2.1702596618838034e-14 + syst_JES_EtaIntercalibration_Stat103: 2.17025966e-14 + syst_JES_EtaIntercalibration_Stat104: 2.17025966e-14 + syst_JES_EtaIntercalibration_Stat105: 2.17025966e-14 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 1.148782698120058e-12 - syst_JES_EtaIntercalibration_Stat11: 1.7537014426634883e-08 - syst_JES_EtaIntercalibration_Stat110: 1.135991335827435e-12 - syst_JES_EtaIntercalibration_Stat111: 9.093266739736605e-13 - syst_JES_EtaIntercalibration_Stat112: 9.093266739736605e-13 + syst_JES_EtaIntercalibration_Stat109: 1.14878270e-12 + syst_JES_EtaIntercalibration_Stat11: 1.75370144e-08 + syst_JES_EtaIntercalibration_Stat110: 1.13599134e-12 + syst_JES_EtaIntercalibration_Stat111: 9.09326674e-13 + syst_JES_EtaIntercalibration_Stat112: 9.09326674e-13 syst_JES_EtaIntercalibration_Stat113: 0.0 - syst_JES_EtaIntercalibration_Stat114: 1.3657220617680598e-12 - syst_JES_EtaIntercalibration_Stat115: 5.595188067214542e-07 - syst_JES_EtaIntercalibration_Stat116: 0.00011747561906625562 - syst_JES_EtaIntercalibration_Stat117: 8.435511721288756e-05 - syst_JES_EtaIntercalibration_Stat118: 9.131200578237234e-05 - syst_JES_EtaIntercalibration_Stat119: 1.5590325461644473e-05 - syst_JES_EtaIntercalibration_Stat12: 9.364329019467857e-06 - syst_JES_EtaIntercalibration_Stat120: 1.1840607008272507e-05 - syst_JES_EtaIntercalibration_Stat121: 1.137697572951617e-11 + syst_JES_EtaIntercalibration_Stat114: 1.36572206e-12 + syst_JES_EtaIntercalibration_Stat115: 5.59518807e-07 + syst_JES_EtaIntercalibration_Stat116: 1.17475619e-04 + syst_JES_EtaIntercalibration_Stat117: 8.43551172e-05 + syst_JES_EtaIntercalibration_Stat118: 9.13120058e-05 + syst_JES_EtaIntercalibration_Stat119: 1.55903255e-05 + syst_JES_EtaIntercalibration_Stat12: 9.36432902e-06 + syst_JES_EtaIntercalibration_Stat120: 1.18406070e-05 + syst_JES_EtaIntercalibration_Stat121: 1.13769757e-11 syst_JES_EtaIntercalibration_Stat122: 0.0 - syst_JES_EtaIntercalibration_Stat123: 2.1702596618838034e-14 - syst_JES_EtaIntercalibration_Stat124: 2.1702596618838034e-14 - syst_JES_EtaIntercalibration_Stat125: 2.1702596618838034e-14 + syst_JES_EtaIntercalibration_Stat123: 2.17025966e-14 + syst_JES_EtaIntercalibration_Stat124: 2.17025966e-14 + syst_JES_EtaIntercalibration_Stat125: 2.17025966e-14 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 1.148782698120058e-12 - syst_JES_EtaIntercalibration_Stat129: 1.135991335827435e-12 + syst_JES_EtaIntercalibration_Stat128: 1.14878270e-12 + syst_JES_EtaIntercalibration_Stat129: 1.13599134e-12 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 4.027884153001424e-14 + syst_JES_EtaIntercalibration_Stat130: 4.02788415e-14 syst_JES_EtaIntercalibration_Stat131: 0.0 syst_JES_EtaIntercalibration_Stat132: 0.0 - syst_JES_EtaIntercalibration_Stat133: 1.3657220617680598e-12 - syst_JES_EtaIntercalibration_Stat134: 4.99690874441389e-05 - syst_JES_EtaIntercalibration_Stat135: 0.00041119962001441584 - syst_JES_EtaIntercalibration_Stat136: 0.0008331541078936117 - syst_JES_EtaIntercalibration_Stat137: 0.0009135216253597942 - syst_JES_EtaIntercalibration_Stat138: 0.0004597073851919284 - syst_JES_EtaIntercalibration_Stat139: 1.0253064761328683e-06 + syst_JES_EtaIntercalibration_Stat133: 1.36572206e-12 + syst_JES_EtaIntercalibration_Stat134: 4.99690874e-05 + syst_JES_EtaIntercalibration_Stat135: 4.11199620e-04 + syst_JES_EtaIntercalibration_Stat136: 8.33154108e-04 + syst_JES_EtaIntercalibration_Stat137: 9.13521625e-04 + syst_JES_EtaIntercalibration_Stat138: 4.59707385e-04 + syst_JES_EtaIntercalibration_Stat139: 1.02530648e-06 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 1.137697572951617e-11 + syst_JES_EtaIntercalibration_Stat140: 1.13769757e-11 syst_JES_EtaIntercalibration_Stat141: 0.0 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 2.1702596618838034e-14 - syst_JES_EtaIntercalibration_Stat144: 2.1702596618838034e-14 + syst_JES_EtaIntercalibration_Stat143: 2.17025966e-14 + syst_JES_EtaIntercalibration_Stat144: 2.17025966e-14 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 4.027884153001424e-14 - syst_JES_EtaIntercalibration_Stat148: 4.027884153001424e-14 + syst_JES_EtaIntercalibration_Stat147: 4.02788415e-14 + syst_JES_EtaIntercalibration_Stat148: 4.02788415e-14 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 syst_JES_EtaIntercalibration_Stat150: 0.0 syst_JES_EtaIntercalibration_Stat151: 0.0 - syst_JES_EtaIntercalibration_Stat152: 1.68268822644638e-05 - syst_JES_EtaIntercalibration_Stat153: 0.0008215423726138537 - syst_JES_EtaIntercalibration_Stat154: 0.001174690753985916 - syst_JES_EtaIntercalibration_Stat155: 0.0011595602054227283 - syst_JES_EtaIntercalibration_Stat156: 0.0008214270083214942 - syst_JES_EtaIntercalibration_Stat157: 2.313285997774594e-05 + syst_JES_EtaIntercalibration_Stat152: 1.68268823e-05 + syst_JES_EtaIntercalibration_Stat153: 8.21542373e-04 + syst_JES_EtaIntercalibration_Stat154: 1.17469075e-03 + syst_JES_EtaIntercalibration_Stat155: 1.15956021e-03 + syst_JES_EtaIntercalibration_Stat156: 8.21427008e-04 + syst_JES_EtaIntercalibration_Stat157: 2.31328600e-05 syst_JES_EtaIntercalibration_Stat158: 0.0 syst_JES_EtaIntercalibration_Stat159: 0.0 syst_JES_EtaIntercalibration_Stat16: 0.0 @@ -5902,18 +5902,18 @@ bins: syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 4.027884153001424e-14 + syst_JES_EtaIntercalibration_Stat165: 4.02788415e-14 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 6.76534470666499e-05 - syst_JES_EtaIntercalibration_Stat171: 0.002254699980041691 - syst_JES_EtaIntercalibration_Stat172: 0.002696184850858709 - syst_JES_EtaIntercalibration_Stat173: 0.003124550647693201 - syst_JES_EtaIntercalibration_Stat174: 0.0014840485436804285 - syst_JES_EtaIntercalibration_Stat175: 3.800061413977411e-05 + syst_JES_EtaIntercalibration_Stat170: 6.76534471e-05 + syst_JES_EtaIntercalibration_Stat171: 2.25469998e-03 + syst_JES_EtaIntercalibration_Stat172: 2.69618485e-03 + syst_JES_EtaIntercalibration_Stat173: 3.12455065e-03 + syst_JES_EtaIntercalibration_Stat174: 1.48404854e-03 + syst_JES_EtaIntercalibration_Stat175: 3.80006141e-05 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 syst_JES_EtaIntercalibration_Stat178: 0.0 @@ -5926,14 +5926,14 @@ bins: syst_JES_EtaIntercalibration_Stat184: 0.0 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 - syst_JES_EtaIntercalibration_Stat187: 0.00019583464325803032 - syst_JES_EtaIntercalibration_Stat188: 0.0066803572322144565 - syst_JES_EtaIntercalibration_Stat189: 0.010633953486356804 + syst_JES_EtaIntercalibration_Stat187: 1.95834643e-04 + syst_JES_EtaIntercalibration_Stat188: 6.68035723e-03 + syst_JES_EtaIntercalibration_Stat189: 1.06339535e-02 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 0.010289373596094177 - syst_JES_EtaIntercalibration_Stat191: 0.006913725677953964 - syst_JES_EtaIntercalibration_Stat192: 0.00010834709536946524 - syst_JES_EtaIntercalibration_Stat193: 1.2825836230047537e-05 + syst_JES_EtaIntercalibration_Stat190: 1.02893736e-02 + syst_JES_EtaIntercalibration_Stat191: 6.91372568e-03 + syst_JES_EtaIntercalibration_Stat192: 1.08347095e-04 + syst_JES_EtaIntercalibration_Stat193: 1.28258362e-05 syst_JES_EtaIntercalibration_Stat194: 0.0 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 @@ -5944,13 +5944,13 @@ bins: syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 syst_JES_EtaIntercalibration_Stat201: 0.0 - syst_JES_EtaIntercalibration_Stat202: 0.00014306655898566932 - syst_JES_EtaIntercalibration_Stat203: 0.006598406095414255 - syst_JES_EtaIntercalibration_Stat204: 0.010084545143436069 - syst_JES_EtaIntercalibration_Stat205: 0.009464055301507913 - syst_JES_EtaIntercalibration_Stat206: 0.007053148375016649 - syst_JES_EtaIntercalibration_Stat207: 9.925634438160617e-05 - syst_JES_EtaIntercalibration_Stat208: 1.2825836230047537e-05 + syst_JES_EtaIntercalibration_Stat202: 1.43066559e-04 + syst_JES_EtaIntercalibration_Stat203: 6.59840610e-03 + syst_JES_EtaIntercalibration_Stat204: 1.00845451e-02 + syst_JES_EtaIntercalibration_Stat205: 9.46405530e-03 + syst_JES_EtaIntercalibration_Stat206: 7.05314838e-03 + syst_JES_EtaIntercalibration_Stat207: 9.92563444e-05 + syst_JES_EtaIntercalibration_Stat208: 1.28258362e-05 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 @@ -5958,38 +5958,38 @@ bins: syst_JES_EtaIntercalibration_Stat212: 0.0 syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 - syst_JES_EtaIntercalibration_Stat215: 6.600598760718607e-05 - syst_JES_EtaIntercalibration_Stat216: 0.000577100415872316 - syst_JES_EtaIntercalibration_Stat217: 0.001320554080679773 - syst_JES_EtaIntercalibration_Stat218: 0.001222106881577876 - syst_JES_EtaIntercalibration_Stat219: 0.0011874888546845397 + syst_JES_EtaIntercalibration_Stat215: 6.60059876e-05 + syst_JES_EtaIntercalibration_Stat216: 5.77100416e-04 + syst_JES_EtaIntercalibration_Stat217: 1.32055408e-03 + syst_JES_EtaIntercalibration_Stat218: 1.22210688e-03 + syst_JES_EtaIntercalibration_Stat219: 1.18748885e-03 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 0.00010968562485576677 + syst_JES_EtaIntercalibration_Stat220: 1.09685625e-04 syst_JES_EtaIntercalibration_Stat221: 0.0 syst_JES_EtaIntercalibration_Stat222: 0.0 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 - syst_JES_EtaIntercalibration_Stat227: 1.045960802324829e-05 - syst_JES_EtaIntercalibration_Stat228: 0.0005550042432270225 - syst_JES_EtaIntercalibration_Stat229: 0.0008991480008875069 + syst_JES_EtaIntercalibration_Stat227: 1.04596080e-05 + syst_JES_EtaIntercalibration_Stat228: 5.55004243e-04 + syst_JES_EtaIntercalibration_Stat229: 8.99148001e-04 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 0.0007847874537096015 - syst_JES_EtaIntercalibration_Stat231: 0.0006834833355686149 - syst_JES_EtaIntercalibration_Stat232: 4.7977807369657896e-05 + syst_JES_EtaIntercalibration_Stat230: 7.84787454e-04 + syst_JES_EtaIntercalibration_Stat231: 6.83483336e-04 + syst_JES_EtaIntercalibration_Stat232: 4.79778074e-05 syst_JES_EtaIntercalibration_Stat233: 0.0 syst_JES_EtaIntercalibration_Stat234: 0.0 syst_JES_EtaIntercalibration_Stat235: 0.0 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 - syst_JES_EtaIntercalibration_Stat238: 2.2135609320730252e-13 - syst_JES_EtaIntercalibration_Stat239: 4.663272777781715e-06 + syst_JES_EtaIntercalibration_Stat238: 2.21356093e-13 + syst_JES_EtaIntercalibration_Stat239: 4.66327278e-06 syst_JES_EtaIntercalibration_Stat24: 0.0 - syst_JES_EtaIntercalibration_Stat240: 4.3029811468329715e-06 - syst_JES_EtaIntercalibration_Stat241: 5.4420888223181365e-06 - syst_JES_EtaIntercalibration_Stat242: 5.224333522086812e-06 - syst_JES_EtaIntercalibration_Stat243: 1.663634800669907e-13 + syst_JES_EtaIntercalibration_Stat240: 4.30298115e-06 + syst_JES_EtaIntercalibration_Stat241: 5.44208882e-06 + syst_JES_EtaIntercalibration_Stat242: 5.22433352e-06 + syst_JES_EtaIntercalibration_Stat243: 1.66363480e-13 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 syst_JES_EtaIntercalibration_Stat25: 0.0 @@ -5998,12 +5998,12 @@ bins: syst_JES_EtaIntercalibration_Stat28: 0.0 syst_JES_EtaIntercalibration_Stat29: 0.0 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 1.323145721632731e-12 - syst_JES_EtaIntercalibration_Stat31: 5.114898117264898e-05 - syst_JES_EtaIntercalibration_Stat32: 2.182277619254709e-08 - syst_JES_EtaIntercalibration_Stat33: 9.308121871720416e-06 - syst_JES_EtaIntercalibration_Stat34: 1.2027445796119952e-05 - syst_JES_EtaIntercalibration_Stat35: 1.117138948126812e-11 + syst_JES_EtaIntercalibration_Stat30: 1.32314572e-12 + syst_JES_EtaIntercalibration_Stat31: 5.11489812e-05 + syst_JES_EtaIntercalibration_Stat32: 2.18227762e-08 + syst_JES_EtaIntercalibration_Stat33: 9.30812187e-06 + syst_JES_EtaIntercalibration_Stat34: 1.20274458e-05 + syst_JES_EtaIntercalibration_Stat35: 1.11713895e-11 syst_JES_EtaIntercalibration_Stat36: 0.0 syst_JES_EtaIntercalibration_Stat37: 0.0 syst_JES_EtaIntercalibration_Stat38: 0.0 @@ -6022,220 +6022,220 @@ bins: syst_JES_EtaIntercalibration_Stat5: 0.0 syst_JES_EtaIntercalibration_Stat50: 0.0 syst_JES_EtaIntercalibration_Stat51: 0.0 - syst_JES_EtaIntercalibration_Stat52: 1.2611484360957477e-11 - syst_JES_EtaIntercalibration_Stat53: 6.719813959617855e-08 - syst_JES_EtaIntercalibration_Stat54: 2.8191266675160238e-05 - syst_JES_EtaIntercalibration_Stat55: 9.227381173805491e-06 - syst_JES_EtaIntercalibration_Stat56: 1.1937545430279658e-05 - syst_JES_EtaIntercalibration_Stat57: 1.1034335307915017e-10 + syst_JES_EtaIntercalibration_Stat52: 1.26114844e-11 + syst_JES_EtaIntercalibration_Stat53: 6.71981396e-08 + syst_JES_EtaIntercalibration_Stat54: 2.81912667e-05 + syst_JES_EtaIntercalibration_Stat55: 9.22738117e-06 + syst_JES_EtaIntercalibration_Stat56: 1.19375454e-05 + syst_JES_EtaIntercalibration_Stat57: 1.10343353e-10 syst_JES_EtaIntercalibration_Stat58: 0.0 syst_JES_EtaIntercalibration_Stat59: 0.0 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 2.1702596618838034e-14 - syst_JES_EtaIntercalibration_Stat62: 2.1702596618838034e-14 + syst_JES_EtaIntercalibration_Stat61: 2.17025966e-14 + syst_JES_EtaIntercalibration_Stat62: 2.17025966e-14 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 1.148782698120058e-12 - syst_JES_EtaIntercalibration_Stat69: 1.148782698120058e-12 + syst_JES_EtaIntercalibration_Stat68: 1.14878270e-12 + syst_JES_EtaIntercalibration_Stat69: 1.14878270e-12 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 9.093266739736605e-13 - syst_JES_EtaIntercalibration_Stat71: 9.093266739736605e-13 + syst_JES_EtaIntercalibration_Stat70: 9.09326674e-13 + syst_JES_EtaIntercalibration_Stat71: 9.09326674e-13 syst_JES_EtaIntercalibration_Stat72: 0.0 syst_JES_EtaIntercalibration_Stat73: 0.0 - syst_JES_EtaIntercalibration_Stat74: 4.539779602477966e-08 - syst_JES_EtaIntercalibration_Stat75: 4.602309963485728e-05 - syst_JES_EtaIntercalibration_Stat76: 8.629236524745397e-06 - syst_JES_EtaIntercalibration_Stat77: 1.4931611458580081e-05 - syst_JES_EtaIntercalibration_Stat78: 1.7864793218786495e-06 - syst_JES_EtaIntercalibration_Stat79: 1.3012924767322677e-10 + syst_JES_EtaIntercalibration_Stat74: 4.53977960e-08 + syst_JES_EtaIntercalibration_Stat75: 4.60230996e-05 + syst_JES_EtaIntercalibration_Stat76: 8.62923652e-06 + syst_JES_EtaIntercalibration_Stat77: 1.49316115e-05 + syst_JES_EtaIntercalibration_Stat78: 1.78647932e-06 + syst_JES_EtaIntercalibration_Stat79: 1.30129248e-10 syst_JES_EtaIntercalibration_Stat8: 0.0 syst_JES_EtaIntercalibration_Stat80: 0.0 syst_JES_EtaIntercalibration_Stat81: 0.0 - syst_JES_EtaIntercalibration_Stat82: 2.1702596618838034e-14 - syst_JES_EtaIntercalibration_Stat83: 2.1702596618838034e-14 - syst_JES_EtaIntercalibration_Stat84: 2.1702596618838034e-14 + syst_JES_EtaIntercalibration_Stat82: 2.17025966e-14 + syst_JES_EtaIntercalibration_Stat83: 2.17025966e-14 + syst_JES_EtaIntercalibration_Stat84: 2.17025966e-14 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 1.148782698120058e-12 - syst_JES_EtaIntercalibration_Stat9: 4.5460661599586017e-08 - syst_JES_EtaIntercalibration_Stat90: 1.148782698120058e-12 - syst_JES_EtaIntercalibration_Stat91: 9.093266739736605e-13 - syst_JES_EtaIntercalibration_Stat92: 9.093266739736605e-13 + syst_JES_EtaIntercalibration_Stat89: 1.14878270e-12 + syst_JES_EtaIntercalibration_Stat9: 4.54606616e-08 + syst_JES_EtaIntercalibration_Stat90: 1.14878270e-12 + syst_JES_EtaIntercalibration_Stat91: 9.09326674e-13 + syst_JES_EtaIntercalibration_Stat92: 9.09326674e-13 syst_JES_EtaIntercalibration_Stat93: 0.0 syst_JES_EtaIntercalibration_Stat94: 0.0 - syst_JES_EtaIntercalibration_Stat95: 4.540977328637526e-08 - syst_JES_EtaIntercalibration_Stat96: 4.457340245875336e-05 - syst_JES_EtaIntercalibration_Stat97: 1.0992997401527939e-05 - syst_JES_EtaIntercalibration_Stat98: 1.3085512714448755e-05 - syst_JES_EtaIntercalibration_Stat99: 8.757309801959732e-06 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0242973949220899 - syst_JES_Flavour_Comp: 0.0778961172010518 - syst_JES_Gjet_Generator: 0.16415951845689605 - syst_JES_Gjet_OOC: 0.12359868638055989 - syst_JES_Gjet_Purity: 0.04224131981839582 - syst_JES_Gjet_Stat1: 0.00022866873682250488 - syst_JES_Gjet_Stat10: 0.005246432883398014 - syst_JES_Gjet_Stat11: 0.008792259038495169 - syst_JES_Gjet_Stat12: 0.024195753243079664 - syst_JES_Gjet_Stat13: 0.02787311383753168 - syst_JES_Gjet_Stat14: 0.0016497131470349625 - syst_JES_Gjet_Stat15: 0.005457310395240497 - syst_JES_Gjet_Stat2: 0.00023573211358856946 - syst_JES_Gjet_Stat3: 0.00030023492052058166 - syst_JES_Gjet_Stat4: 0.0004310758720921411 - syst_JES_Gjet_Stat5: 0.0003554492336114962 - syst_JES_Gjet_Stat6: 0.000910352430380674 - syst_JES_Gjet_Stat7: 0.0017276527971499366 - syst_JES_Gjet_Stat8: 0.0012062783219473024 - syst_JES_Gjet_Stat9: 0.003100709757458766 - syst_JES_Gjet_Veto: 0.0810084024962843 - syst_JES_Gjet_dPhi: 0.009766599971330862 - syst_JES_LArESZee: 0.23781518033969154 - syst_JES_LArEsmear: 0.017941254136765353 - syst_JES_LAr_JVT: 0.02364756382801408 - syst_JES_MJB_Alpha: 0.0022235001124353464 - syst_JES_MJB_Asym: 0.00780365009146361 - syst_JES_MJB_Beta: 3.3941299326926187e-05 - syst_JES_MJB_Stat1: 0.001202230002952846 - syst_JES_MJB_Stat10: 7.108331012131643e-06 - syst_JES_MJB_Stat11: 1.7329168329732202e-05 - syst_JES_MJB_Stat12: 1.461858228420253e-05 - syst_JES_MJB_Stat13: 6.680845810973338e-06 - syst_JES_MJB_Stat14: 3.147306891216679e-06 - syst_JES_MJB_Stat15: 5.3442376444166486e-08 - syst_JES_MJB_Stat16: 1.1046550807831376e-09 - syst_JES_MJB_Stat2: 0.001807199277888302 - syst_JES_MJB_Stat3: 0.0034258106018868 - syst_JES_MJB_Stat4: 0.0005373597677534111 - syst_JES_MJB_Stat5: 0.0010079329677612494 - syst_JES_MJB_Stat6: 4.829148176179729e-05 - syst_JES_MJB_Stat7: 2.3942334890315106e-06 - syst_JES_MJB_Stat8: 1.9491993784307958e-09 - syst_JES_MJB_Stat9: 1.9283389667535115e-09 - syst_JES_MJB_Threshold: 0.011124981752794026 - syst_JES_Pileup_MuOffset: 0.020501133505247945 - syst_JES_Pileup_NPVOffset: 0.022361182884632916 - syst_JES_Pileup_Pt_term: 0.023380962341186896 - syst_JES_PunchThrough_MC15: 0.0026216834286389348 + syst_JES_EtaIntercalibration_Stat95: 4.54097733e-08 + syst_JES_EtaIntercalibration_Stat96: 4.45734025e-05 + syst_JES_EtaIntercalibration_Stat97: 1.09929974e-05 + syst_JES_EtaIntercalibration_Stat98: 1.30855127e-05 + syst_JES_EtaIntercalibration_Stat99: 8.75730980e-06 + syst_JES_EtaIntercalibration_TotalStat_MJB: 2.42973949e-02 + syst_JES_Flavour_Comp: 7.78961172e-02 + syst_JES_Gjet_Generator: 1.64159518e-01 + syst_JES_Gjet_OOC: 1.23598686e-01 + syst_JES_Gjet_Purity: 4.22413198e-02 + syst_JES_Gjet_Stat1: 2.28668737e-04 + syst_JES_Gjet_Stat10: 5.24643288e-03 + syst_JES_Gjet_Stat11: 8.79225904e-03 + syst_JES_Gjet_Stat12: 2.41957532e-02 + syst_JES_Gjet_Stat13: 2.78731138e-02 + syst_JES_Gjet_Stat14: 1.64971315e-03 + syst_JES_Gjet_Stat15: 5.45731040e-03 + syst_JES_Gjet_Stat2: 2.35732114e-04 + syst_JES_Gjet_Stat3: 3.00234921e-04 + syst_JES_Gjet_Stat4: 4.31075872e-04 + syst_JES_Gjet_Stat5: 3.55449234e-04 + syst_JES_Gjet_Stat6: 9.10352430e-04 + syst_JES_Gjet_Stat7: 1.72765280e-03 + syst_JES_Gjet_Stat8: 1.20627832e-03 + syst_JES_Gjet_Stat9: 3.10070976e-03 + syst_JES_Gjet_Veto: 8.10084025e-02 + syst_JES_Gjet_dPhi: 9.76659997e-03 + syst_JES_LArESZee: 2.37815180e-01 + syst_JES_LArEsmear: 1.79412541e-02 + syst_JES_LAr_JVT: 2.36475638e-02 + syst_JES_MJB_Alpha: 2.22350011e-03 + syst_JES_MJB_Asym: 7.80365009e-03 + syst_JES_MJB_Beta: 3.39412993e-05 + syst_JES_MJB_Stat1: 1.20223000e-03 + syst_JES_MJB_Stat10: 7.10833101e-06 + syst_JES_MJB_Stat11: 1.73291683e-05 + syst_JES_MJB_Stat12: 1.46185823e-05 + syst_JES_MJB_Stat13: 6.68084581e-06 + syst_JES_MJB_Stat14: 3.14730689e-06 + syst_JES_MJB_Stat15: 5.34423764e-08 + syst_JES_MJB_Stat16: 1.10465508e-09 + syst_JES_MJB_Stat2: 1.80719928e-03 + syst_JES_MJB_Stat3: 3.42581060e-03 + syst_JES_MJB_Stat4: 5.37359768e-04 + syst_JES_MJB_Stat5: 1.00793297e-03 + syst_JES_MJB_Stat6: 4.82914818e-05 + syst_JES_MJB_Stat7: 2.39423349e-06 + syst_JES_MJB_Stat8: 1.94919938e-09 + syst_JES_MJB_Stat9: 1.92833897e-09 + syst_JES_MJB_Threshold: 1.11249818e-02 + syst_JES_Pileup_MuOffset: 2.05011335e-02 + syst_JES_Pileup_NPVOffset: 2.23611829e-02 + syst_JES_Pileup_Pt_term: 2.33809623e-02 + syst_JES_PunchThrough_MC15: 2.62168343e-03 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.13100504293728543 - syst_JES_Zjet_MuScale: 0.008519009508152929 - syst_JES_Zjet_MuSmearID: 0.0018682628294755532 - syst_JES_Zjet_MuSmearMS: 0.03336955311357945 - syst_JES_Zjet_OOC: 0.05242967361141971 - syst_JES_Zjet_Stat1: 0.0020690682250713724 - syst_JES_Zjet_Stat10: 0.005089431500668812 - syst_JES_Zjet_Stat11: 0.005012518603456749 - syst_JES_Zjet_Stat12: 0.03551648772049398 - syst_JES_Zjet_Stat13: 0.032420833965214405 + syst_JES_Zjet_MC: 1.31005043e-01 + syst_JES_Zjet_MuScale: 8.51900951e-03 + syst_JES_Zjet_MuSmearID: 1.86826283e-03 + syst_JES_Zjet_MuSmearMS: 3.33695531e-02 + syst_JES_Zjet_OOC: 5.24296736e-02 + syst_JES_Zjet_Stat1: 2.06906823e-03 + syst_JES_Zjet_Stat10: 5.08943150e-03 + syst_JES_Zjet_Stat11: 5.01251860e-03 + syst_JES_Zjet_Stat12: 3.55164877e-02 + syst_JES_Zjet_Stat13: 3.24208340e-02 syst_JES_Zjet_Stat2: 0.0 - syst_JES_Zjet_Stat3: 0.0007255398179976065 - syst_JES_Zjet_Stat4: 0.0007463870376687955 - syst_JES_Zjet_Stat5: 0.00048252561590033744 - syst_JES_Zjet_Stat6: 0.0012353925722214782 - syst_JES_Zjet_Stat7: 0.0012320850244605687 - syst_JES_Zjet_Stat8: 0.0011355977049554125 - syst_JES_Zjet_Stat9: 0.002826669904675818 - syst_JES_Zjet_Veto: 0.011283578643320566 - syst_JES_Zjet_dPhi: 0.009194780407927098 + syst_JES_Zjet_Stat3: 7.25539818e-04 + syst_JES_Zjet_Stat4: 7.46387038e-04 + syst_JES_Zjet_Stat5: 4.82525616e-04 + syst_JES_Zjet_Stat6: 1.23539257e-03 + syst_JES_Zjet_Stat7: 1.23208502e-03 + syst_JES_Zjet_Stat8: 1.13559770e-03 + syst_JES_Zjet_Stat9: 2.82666990e-03 + syst_JES_Zjet_Veto: 1.12835786e-02 + syst_JES_Zjet_dPhi: 9.19478041e-03 syst_PRW: 0.004887 - syst_Unfolding_bias: 0.0008022 - syst_cleaning: 0.04700785891741933 + syst_Unfolding_bias: 8.02200000e-04 + syst_cleaning: 4.70078589e-02 syst_lumi: 0.1861 - syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.022369481442358025 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.04705132835531852 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 0.006132587056047391 + syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 2.23694814e-02 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 4.70513284e-02 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 6.13258706e-03 syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 0.0733370690715139 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.012982245144812202 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0245906872616444 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 7.33370691e-02 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.29822451e-02 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 2.45906873e-02 - stat: 0.023581 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.016009012305573382 - syst_JER_NP1: 0.001002477151859333 - syst_JER_NP2: 0.002035544828786632 - syst_JER_NP3: 0.0050641469173000895 - syst_JER_NP4: 0.002462986804674357 - syst_JER_NP5: 0.0016631510695063153 - syst_JER_NP6: 0.0023613599365619803 - syst_JER_NP7: 0.0044785480906204414 - syst_JER_NP8: 0.00376464111835378 - syst_JES_EtaIntercalibration_Modelling: 0.034470939934965514 + syst_JER_NP0: 1.60090123e-02 + syst_JER_NP1: 1.00247715e-03 + syst_JER_NP2: 2.03554483e-03 + syst_JER_NP3: 5.06414692e-03 + syst_JER_NP4: 2.46298680e-03 + syst_JER_NP5: 1.66315107e-03 + syst_JER_NP6: 2.36135994e-03 + syst_JER_NP7: 4.47854809e-03 + syst_JER_NP8: 3.76464112e-03 + syst_JES_EtaIntercalibration_Modelling: 3.44709399e-02 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 - syst_JES_EtaIntercalibration_Stat10: 2.852411637334275e-11 - syst_JES_EtaIntercalibration_Stat100: 2.7172800163950717e-09 + syst_JES_EtaIntercalibration_Stat10: 2.85241164e-11 + syst_JES_EtaIntercalibration_Stat100: 2.71728002e-09 syst_JES_EtaIntercalibration_Stat101: 0.0 syst_JES_EtaIntercalibration_Stat102: 0.0 - syst_JES_EtaIntercalibration_Stat103: 3.2181504004629738e-15 - syst_JES_EtaIntercalibration_Stat104: 3.2181504004629738e-15 - syst_JES_EtaIntercalibration_Stat105: 3.2181504004629738e-15 + syst_JES_EtaIntercalibration_Stat103: 3.21815040e-15 + syst_JES_EtaIntercalibration_Stat104: 3.21815040e-15 + syst_JES_EtaIntercalibration_Stat105: 3.21815040e-15 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 1.5692380316574029e-13 - syst_JES_EtaIntercalibration_Stat11: 2.7288460473247665e-09 - syst_JES_EtaIntercalibration_Stat110: 1.5505920937499972e-13 - syst_JES_EtaIntercalibration_Stat111: 1.2540047846798672e-13 - syst_JES_EtaIntercalibration_Stat112: 1.2540047846798672e-13 + syst_JES_EtaIntercalibration_Stat109: 1.56923803e-13 + syst_JES_EtaIntercalibration_Stat11: 2.72884605e-09 + syst_JES_EtaIntercalibration_Stat110: 1.55059209e-13 + syst_JES_EtaIntercalibration_Stat111: 1.25400478e-13 + syst_JES_EtaIntercalibration_Stat112: 1.25400478e-13 syst_JES_EtaIntercalibration_Stat113: 0.0 - syst_JES_EtaIntercalibration_Stat114: 1.8576244911176207e-13 - syst_JES_EtaIntercalibration_Stat115: 1.0558942596207254e-07 - syst_JES_EtaIntercalibration_Stat116: 9.144026738806048e-05 - syst_JES_EtaIntercalibration_Stat117: 3.83406198013282e-05 - syst_JES_EtaIntercalibration_Stat118: 1.9463429168571503e-05 - syst_JES_EtaIntercalibration_Stat119: 1.3242105912580521e-05 - syst_JES_EtaIntercalibration_Stat12: 4.329260522112119e-06 - syst_JES_EtaIntercalibration_Stat120: 4.790370540461929e-06 - syst_JES_EtaIntercalibration_Stat121: 1.4627169069919169e-12 + syst_JES_EtaIntercalibration_Stat114: 1.85762449e-13 + syst_JES_EtaIntercalibration_Stat115: 1.05589426e-07 + syst_JES_EtaIntercalibration_Stat116: 9.14402674e-05 + syst_JES_EtaIntercalibration_Stat117: 3.83406198e-05 + syst_JES_EtaIntercalibration_Stat118: 1.94634292e-05 + syst_JES_EtaIntercalibration_Stat119: 1.32421059e-05 + syst_JES_EtaIntercalibration_Stat12: 4.32926052e-06 + syst_JES_EtaIntercalibration_Stat120: 4.79037054e-06 + syst_JES_EtaIntercalibration_Stat121: 1.46271691e-12 syst_JES_EtaIntercalibration_Stat122: 0.0 - syst_JES_EtaIntercalibration_Stat123: 3.2181504004629738e-15 - syst_JES_EtaIntercalibration_Stat124: 3.2181504004629738e-15 - syst_JES_EtaIntercalibration_Stat125: 3.2181504004629738e-15 + syst_JES_EtaIntercalibration_Stat123: 3.21815040e-15 + syst_JES_EtaIntercalibration_Stat124: 3.21815040e-15 + syst_JES_EtaIntercalibration_Stat125: 3.21815040e-15 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 1.5692380316574029e-13 - syst_JES_EtaIntercalibration_Stat129: 1.5505920937499972e-13 + syst_JES_EtaIntercalibration_Stat128: 1.56923803e-13 + syst_JES_EtaIntercalibration_Stat129: 1.55059209e-13 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 5.8924368473493206e-15 + syst_JES_EtaIntercalibration_Stat130: 5.89243685e-15 syst_JES_EtaIntercalibration_Stat131: 0.0 syst_JES_EtaIntercalibration_Stat132: 0.0 - syst_JES_EtaIntercalibration_Stat133: 1.8576244911176207e-13 - syst_JES_EtaIntercalibration_Stat134: 3.348403322107419e-05 - syst_JES_EtaIntercalibration_Stat135: 0.00013235026709455483 - syst_JES_EtaIntercalibration_Stat136: 0.00029562108771195606 - syst_JES_EtaIntercalibration_Stat137: 0.00037408783336938397 - syst_JES_EtaIntercalibration_Stat138: 0.00016574235751611597 - syst_JES_EtaIntercalibration_Stat139: 1.4651362078318862e-07 + syst_JES_EtaIntercalibration_Stat133: 1.85762449e-13 + syst_JES_EtaIntercalibration_Stat134: 3.34840332e-05 + syst_JES_EtaIntercalibration_Stat135: 1.32350267e-04 + syst_JES_EtaIntercalibration_Stat136: 2.95621088e-04 + syst_JES_EtaIntercalibration_Stat137: 3.74087833e-04 + syst_JES_EtaIntercalibration_Stat138: 1.65742358e-04 + syst_JES_EtaIntercalibration_Stat139: 1.46513621e-07 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 1.4627169069919169e-12 + syst_JES_EtaIntercalibration_Stat140: 1.46271691e-12 syst_JES_EtaIntercalibration_Stat141: 0.0 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 3.2181504004629738e-15 - syst_JES_EtaIntercalibration_Stat144: 3.2181504004629738e-15 + syst_JES_EtaIntercalibration_Stat143: 3.21815040e-15 + syst_JES_EtaIntercalibration_Stat144: 3.21815040e-15 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 5.8924368473493206e-15 - syst_JES_EtaIntercalibration_Stat148: 5.8924368473493206e-15 + syst_JES_EtaIntercalibration_Stat147: 5.89243685e-15 + syst_JES_EtaIntercalibration_Stat148: 5.89243685e-15 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 syst_JES_EtaIntercalibration_Stat150: 0.0 syst_JES_EtaIntercalibration_Stat151: 0.0 - syst_JES_EtaIntercalibration_Stat152: 1.3380093612253385e-05 - syst_JES_EtaIntercalibration_Stat153: 0.00026178561362305607 - syst_JES_EtaIntercalibration_Stat154: 0.00048049987252859913 - syst_JES_EtaIntercalibration_Stat155: 0.0004589545758296784 - syst_JES_EtaIntercalibration_Stat156: 0.0002970932176943795 - syst_JES_EtaIntercalibration_Stat157: 8.99432854192018e-06 + syst_JES_EtaIntercalibration_Stat152: 1.33800936e-05 + syst_JES_EtaIntercalibration_Stat153: 2.61785614e-04 + syst_JES_EtaIntercalibration_Stat154: 4.80499873e-04 + syst_JES_EtaIntercalibration_Stat155: 4.58954576e-04 + syst_JES_EtaIntercalibration_Stat156: 2.97093218e-04 + syst_JES_EtaIntercalibration_Stat157: 8.99432854e-06 syst_JES_EtaIntercalibration_Stat158: 0.0 syst_JES_EtaIntercalibration_Stat159: 0.0 syst_JES_EtaIntercalibration_Stat16: 0.0 @@ -6244,18 +6244,18 @@ bins: syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 5.8924368473493206e-15 + syst_JES_EtaIntercalibration_Stat165: 5.89243685e-15 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 6.566269763533936e-05 - syst_JES_EtaIntercalibration_Stat171: 0.000978314581308078 - syst_JES_EtaIntercalibration_Stat172: 0.0011106204245825845 - syst_JES_EtaIntercalibration_Stat173: 0.001258429977193805 - syst_JES_EtaIntercalibration_Stat174: 0.0006035688404813489 - syst_JES_EtaIntercalibration_Stat175: 1.617726821036234e-05 + syst_JES_EtaIntercalibration_Stat170: 6.56626976e-05 + syst_JES_EtaIntercalibration_Stat171: 9.78314581e-04 + syst_JES_EtaIntercalibration_Stat172: 1.11062042e-03 + syst_JES_EtaIntercalibration_Stat173: 1.25842998e-03 + syst_JES_EtaIntercalibration_Stat174: 6.03568840e-04 + syst_JES_EtaIntercalibration_Stat175: 1.61772682e-05 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 syst_JES_EtaIntercalibration_Stat178: 0.0 @@ -6268,14 +6268,14 @@ bins: syst_JES_EtaIntercalibration_Stat184: 0.0 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 - syst_JES_EtaIntercalibration_Stat187: 0.00011668947767472438 - syst_JES_EtaIntercalibration_Stat188: 0.003200719411319899 - syst_JES_EtaIntercalibration_Stat189: 0.005132145238591753 + syst_JES_EtaIntercalibration_Stat187: 1.16689478e-04 + syst_JES_EtaIntercalibration_Stat188: 3.20071941e-03 + syst_JES_EtaIntercalibration_Stat189: 5.13214524e-03 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 0.004833053072334298 - syst_JES_EtaIntercalibration_Stat191: 0.0031802369408583378 - syst_JES_EtaIntercalibration_Stat192: 3.7382140120651195e-05 - syst_JES_EtaIntercalibration_Stat193: 4.988306325798367e-06 + syst_JES_EtaIntercalibration_Stat190: 4.83305307e-03 + syst_JES_EtaIntercalibration_Stat191: 3.18023694e-03 + syst_JES_EtaIntercalibration_Stat192: 3.73821401e-05 + syst_JES_EtaIntercalibration_Stat193: 4.98830633e-06 syst_JES_EtaIntercalibration_Stat194: 0.0 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 @@ -6286,13 +6286,13 @@ bins: syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 syst_JES_EtaIntercalibration_Stat201: 0.0 - syst_JES_EtaIntercalibration_Stat202: 6.421356476633268e-05 - syst_JES_EtaIntercalibration_Stat203: 0.004050781974816714 - syst_JES_EtaIntercalibration_Stat204: 0.006194455161674834 - syst_JES_EtaIntercalibration_Stat205: 0.005790597896590645 - syst_JES_EtaIntercalibration_Stat206: 0.004231133938733209 - syst_JES_EtaIntercalibration_Stat207: 6.848955978833561e-05 - syst_JES_EtaIntercalibration_Stat208: 4.988306325798367e-06 + syst_JES_EtaIntercalibration_Stat202: 6.42135648e-05 + syst_JES_EtaIntercalibration_Stat203: 4.05078197e-03 + syst_JES_EtaIntercalibration_Stat204: 6.19445516e-03 + syst_JES_EtaIntercalibration_Stat205: 5.79059790e-03 + syst_JES_EtaIntercalibration_Stat206: 4.23113394e-03 + syst_JES_EtaIntercalibration_Stat207: 6.84895598e-05 + syst_JES_EtaIntercalibration_Stat208: 4.98830633e-06 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 @@ -6300,38 +6300,38 @@ bins: syst_JES_EtaIntercalibration_Stat212: 0.0 syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 - syst_JES_EtaIntercalibration_Stat215: 6.729828990448049e-05 - syst_JES_EtaIntercalibration_Stat216: 0.0010251485587464875 - syst_JES_EtaIntercalibration_Stat217: 0.0016728301617319075 - syst_JES_EtaIntercalibration_Stat218: 0.0015214519077184135 - syst_JES_EtaIntercalibration_Stat219: 0.0012823054667277995 + syst_JES_EtaIntercalibration_Stat215: 6.72982899e-05 + syst_JES_EtaIntercalibration_Stat216: 1.02514856e-03 + syst_JES_EtaIntercalibration_Stat217: 1.67283016e-03 + syst_JES_EtaIntercalibration_Stat218: 1.52145191e-03 + syst_JES_EtaIntercalibration_Stat219: 1.28230547e-03 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 6.775173724709942e-05 + syst_JES_EtaIntercalibration_Stat220: 6.77517372e-05 syst_JES_EtaIntercalibration_Stat221: 0.0 syst_JES_EtaIntercalibration_Stat222: 0.0 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 - syst_JES_EtaIntercalibration_Stat227: 1.4360685942878913e-05 - syst_JES_EtaIntercalibration_Stat228: 0.00040960222167366235 - syst_JES_EtaIntercalibration_Stat229: 0.0007047061852289931 + syst_JES_EtaIntercalibration_Stat227: 1.43606859e-05 + syst_JES_EtaIntercalibration_Stat228: 4.09602222e-04 + syst_JES_EtaIntercalibration_Stat229: 7.04706185e-04 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 0.0007061116961926065 - syst_JES_EtaIntercalibration_Stat231: 0.0005811916293271954 - syst_JES_EtaIntercalibration_Stat232: 3.510000961538275e-05 + syst_JES_EtaIntercalibration_Stat230: 7.06111696e-04 + syst_JES_EtaIntercalibration_Stat231: 5.81191629e-04 + syst_JES_EtaIntercalibration_Stat232: 3.51000096e-05 syst_JES_EtaIntercalibration_Stat233: 0.0 syst_JES_EtaIntercalibration_Stat234: 0.0 syst_JES_EtaIntercalibration_Stat235: 0.0 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 - syst_JES_EtaIntercalibration_Stat238: 4.760541644603059e-11 - syst_JES_EtaIntercalibration_Stat239: 2.2049790815334284e-05 + syst_JES_EtaIntercalibration_Stat238: 4.76054164e-11 + syst_JES_EtaIntercalibration_Stat239: 2.20497908e-05 syst_JES_EtaIntercalibration_Stat24: 0.0 - syst_JES_EtaIntercalibration_Stat240: 2.3224138304789692e-05 - syst_JES_EtaIntercalibration_Stat241: 3.277816803910798e-05 - syst_JES_EtaIntercalibration_Stat242: 1.9250449345404903e-05 - syst_JES_EtaIntercalibration_Stat243: 3.5290535204215875e-11 + syst_JES_EtaIntercalibration_Stat240: 2.32241383e-05 + syst_JES_EtaIntercalibration_Stat241: 3.27781680e-05 + syst_JES_EtaIntercalibration_Stat242: 1.92504493e-05 + syst_JES_EtaIntercalibration_Stat243: 3.52905352e-11 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 syst_JES_EtaIntercalibration_Stat25: 0.0 @@ -6340,12 +6340,12 @@ bins: syst_JES_EtaIntercalibration_Stat28: 0.0 syst_JES_EtaIntercalibration_Stat29: 0.0 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 1.799378989762857e-13 - syst_JES_EtaIntercalibration_Stat31: 3.270958515099206e-05 - syst_JES_EtaIntercalibration_Stat32: 3.4247038277053967e-09 - syst_JES_EtaIntercalibration_Stat33: 4.322342645747113e-06 - syst_JES_EtaIntercalibration_Stat34: 4.836762266756649e-06 - syst_JES_EtaIntercalibration_Stat35: 1.4342226415528405e-12 + syst_JES_EtaIntercalibration_Stat30: 1.79937899e-13 + syst_JES_EtaIntercalibration_Stat31: 3.27095852e-05 + syst_JES_EtaIntercalibration_Stat32: 3.42470383e-09 + syst_JES_EtaIntercalibration_Stat33: 4.32234265e-06 + syst_JES_EtaIntercalibration_Stat34: 4.83676227e-06 + syst_JES_EtaIntercalibration_Stat35: 1.43422264e-12 syst_JES_EtaIntercalibration_Stat36: 0.0 syst_JES_EtaIntercalibration_Stat37: 0.0 syst_JES_EtaIntercalibration_Stat38: 0.0 @@ -6364,220 +6364,220 @@ bins: syst_JES_EtaIntercalibration_Stat5: 0.0 syst_JES_EtaIntercalibration_Stat50: 0.0 syst_JES_EtaIntercalibration_Stat51: 0.0 - syst_JES_EtaIntercalibration_Stat52: 1.5339054856048823e-12 - syst_JES_EtaIntercalibration_Stat53: 9.430798838204269e-09 - syst_JES_EtaIntercalibration_Stat54: 1.826540831377169e-05 - syst_JES_EtaIntercalibration_Stat55: 4.318931128280121e-06 - syst_JES_EtaIntercalibration_Stat56: 4.825005114211105e-06 - syst_JES_EtaIntercalibration_Stat57: 1.3587985382314774e-11 + syst_JES_EtaIntercalibration_Stat52: 1.53390549e-12 + syst_JES_EtaIntercalibration_Stat53: 9.43079884e-09 + syst_JES_EtaIntercalibration_Stat54: 1.82654083e-05 + syst_JES_EtaIntercalibration_Stat55: 4.31893113e-06 + syst_JES_EtaIntercalibration_Stat56: 4.82500511e-06 + syst_JES_EtaIntercalibration_Stat57: 1.35879854e-11 syst_JES_EtaIntercalibration_Stat58: 0.0 syst_JES_EtaIntercalibration_Stat59: 0.0 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 3.2181504004629738e-15 - syst_JES_EtaIntercalibration_Stat62: 3.2181504004629738e-15 + syst_JES_EtaIntercalibration_Stat61: 3.21815040e-15 + syst_JES_EtaIntercalibration_Stat62: 3.21815040e-15 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 1.5692380316574029e-13 - syst_JES_EtaIntercalibration_Stat69: 1.5692380316574029e-13 + syst_JES_EtaIntercalibration_Stat68: 1.56923803e-13 + syst_JES_EtaIntercalibration_Stat69: 1.56923803e-13 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 1.2540047846798672e-13 - syst_JES_EtaIntercalibration_Stat71: 1.2540047846798672e-13 + syst_JES_EtaIntercalibration_Stat70: 1.25400478e-13 + syst_JES_EtaIntercalibration_Stat71: 1.25400478e-13 syst_JES_EtaIntercalibration_Stat72: 0.0 syst_JES_EtaIntercalibration_Stat73: 0.0 - syst_JES_EtaIntercalibration_Stat74: 5.9754882533291785e-09 - syst_JES_EtaIntercalibration_Stat75: 4.807041163751357e-05 - syst_JES_EtaIntercalibration_Stat76: 5.5014682358439555e-06 - syst_JES_EtaIntercalibration_Stat77: 2.139891541059967e-06 - syst_JES_EtaIntercalibration_Stat78: 3.8580067223891665e-06 - syst_JES_EtaIntercalibration_Stat79: 1.580741202727379e-11 + syst_JES_EtaIntercalibration_Stat74: 5.97548825e-09 + syst_JES_EtaIntercalibration_Stat75: 4.80704116e-05 + syst_JES_EtaIntercalibration_Stat76: 5.50146824e-06 + syst_JES_EtaIntercalibration_Stat77: 2.13989154e-06 + syst_JES_EtaIntercalibration_Stat78: 3.85800672e-06 + syst_JES_EtaIntercalibration_Stat79: 1.58074120e-11 syst_JES_EtaIntercalibration_Stat8: 0.0 syst_JES_EtaIntercalibration_Stat80: 0.0 syst_JES_EtaIntercalibration_Stat81: 0.0 - syst_JES_EtaIntercalibration_Stat82: 3.2181504004629738e-15 - syst_JES_EtaIntercalibration_Stat83: 3.2181504004629738e-15 - syst_JES_EtaIntercalibration_Stat84: 3.2181504004629738e-15 + syst_JES_EtaIntercalibration_Stat82: 3.21815040e-15 + syst_JES_EtaIntercalibration_Stat83: 3.21815040e-15 + syst_JES_EtaIntercalibration_Stat84: 3.21815040e-15 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 1.5692380316574029e-13 - syst_JES_EtaIntercalibration_Stat9: 5.984804159779896e-09 - syst_JES_EtaIntercalibration_Stat90: 1.5692380316574029e-13 - syst_JES_EtaIntercalibration_Stat91: 1.2540047846798672e-13 - syst_JES_EtaIntercalibration_Stat92: 1.2540047846798672e-13 + syst_JES_EtaIntercalibration_Stat89: 1.56923803e-13 + syst_JES_EtaIntercalibration_Stat9: 5.98480416e-09 + syst_JES_EtaIntercalibration_Stat90: 1.56923803e-13 + syst_JES_EtaIntercalibration_Stat91: 1.25400478e-13 + syst_JES_EtaIntercalibration_Stat92: 1.25400478e-13 syst_JES_EtaIntercalibration_Stat93: 0.0 syst_JES_EtaIntercalibration_Stat94: 0.0 - syst_JES_EtaIntercalibration_Stat95: 5.977138442805805e-09 - syst_JES_EtaIntercalibration_Stat96: 4.909829311697098e-05 - syst_JES_EtaIntercalibration_Stat97: 5.904107214473667e-06 - syst_JES_EtaIntercalibration_Stat98: 1.784598854084581e-06 - syst_JES_EtaIntercalibration_Stat99: 6.524696525509826e-06 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.017920320867663056 - syst_JES_Flavour_Comp: 0.05868739621929056 - syst_JES_Gjet_Generator: 0.10718347167357474 - syst_JES_Gjet_OOC: 0.08207503685652538 - syst_JES_Gjet_Purity: 0.026546481405263486 - syst_JES_Gjet_Stat1: 0.0001806177178462844 - syst_JES_Gjet_Stat10: 0.002880553202077684 - syst_JES_Gjet_Stat11: 0.004450129745299568 - syst_JES_Gjet_Stat12: 0.014264775743067257 - syst_JES_Gjet_Stat13: 0.02177126718865946 - syst_JES_Gjet_Stat14: 0.004584947191626093 - syst_JES_Gjet_Stat15: 0.005763624640796797 - syst_JES_Gjet_Stat2: 0.00015060153351958915 - syst_JES_Gjet_Stat3: 0.00019176769149155444 - syst_JES_Gjet_Stat4: 0.00029086290155329195 - syst_JES_Gjet_Stat5: 0.0002270917600882956 - syst_JES_Gjet_Stat6: 0.0006883482022203588 - syst_JES_Gjet_Stat7: 0.0011527037119312142 - syst_JES_Gjet_Stat8: 0.0007473652437061815 - syst_JES_Gjet_Stat9: 0.00185576749621282 - syst_JES_Gjet_Veto: 0.059785221208924204 - syst_JES_Gjet_dPhi: 0.006716399835477336 - syst_JES_LArESZee: 0.1584051135538244 - syst_JES_LArEsmear: 0.011731731713604775 - syst_JES_LAr_JVT: 0.015241269632153354 - syst_JES_MJB_Alpha: 0.0013862797580214462 - syst_JES_MJB_Asym: 0.004910877925585201 - syst_JES_MJB_Beta: 0.00011500307561104616 - syst_JES_MJB_Stat1: 0.0006067799992583802 - syst_JES_MJB_Stat10: 5.164659626752086e-06 - syst_JES_MJB_Stat11: 5.870786215275406e-05 - syst_JES_MJB_Stat12: 4.8430629595329446e-05 - syst_JES_MJB_Stat13: 3.5567371546826454e-05 - syst_JES_MJB_Stat14: 3.678433498107584e-06 - syst_JES_MJB_Stat15: 3.751754153725961e-07 - syst_JES_MJB_Stat16: 2.1593764725031158e-08 - syst_JES_MJB_Stat2: 0.001109166338968146 - syst_JES_MJB_Stat3: 0.002254653853699055 - syst_JES_MJB_Stat4: 0.0006773361849923566 - syst_JES_MJB_Stat5: 0.000592530606804408 - syst_JES_MJB_Stat6: 0.00012613809129283668 - syst_JES_MJB_Stat7: 1.7227946714568166e-05 - syst_JES_MJB_Stat8: 1.1216032551107365e-07 - syst_JES_MJB_Stat9: 1.1116220252743286e-07 - syst_JES_MJB_Threshold: 0.007724696935802725 - syst_JES_Pileup_MuOffset: 0.014734630187079689 - syst_JES_Pileup_NPVOffset: 0.015688639201664367 - syst_JES_Pileup_Pt_term: 0.015036597853237946 - syst_JES_PunchThrough_MC15: 0.0021785308696458724 + syst_JES_EtaIntercalibration_Stat95: 5.97713844e-09 + syst_JES_EtaIntercalibration_Stat96: 4.90982931e-05 + syst_JES_EtaIntercalibration_Stat97: 5.90410721e-06 + syst_JES_EtaIntercalibration_Stat98: 1.78459885e-06 + syst_JES_EtaIntercalibration_Stat99: 6.52469653e-06 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.79203209e-02 + syst_JES_Flavour_Comp: 5.86873962e-02 + syst_JES_Gjet_Generator: 1.07183472e-01 + syst_JES_Gjet_OOC: 8.20750369e-02 + syst_JES_Gjet_Purity: 2.65464814e-02 + syst_JES_Gjet_Stat1: 1.80617718e-04 + syst_JES_Gjet_Stat10: 2.88055320e-03 + syst_JES_Gjet_Stat11: 4.45012975e-03 + syst_JES_Gjet_Stat12: 1.42647757e-02 + syst_JES_Gjet_Stat13: 2.17712672e-02 + syst_JES_Gjet_Stat14: 4.58494719e-03 + syst_JES_Gjet_Stat15: 5.76362464e-03 + syst_JES_Gjet_Stat2: 1.50601534e-04 + syst_JES_Gjet_Stat3: 1.91767691e-04 + syst_JES_Gjet_Stat4: 2.90862902e-04 + syst_JES_Gjet_Stat5: 2.27091760e-04 + syst_JES_Gjet_Stat6: 6.88348202e-04 + syst_JES_Gjet_Stat7: 1.15270371e-03 + syst_JES_Gjet_Stat8: 7.47365244e-04 + syst_JES_Gjet_Stat9: 1.85576750e-03 + syst_JES_Gjet_Veto: 5.97852212e-02 + syst_JES_Gjet_dPhi: 6.71639984e-03 + syst_JES_LArESZee: 1.58405114e-01 + syst_JES_LArEsmear: 1.17317317e-02 + syst_JES_LAr_JVT: 1.52412696e-02 + syst_JES_MJB_Alpha: 1.38627976e-03 + syst_JES_MJB_Asym: 4.91087793e-03 + syst_JES_MJB_Beta: 1.15003076e-04 + syst_JES_MJB_Stat1: 6.06779999e-04 + syst_JES_MJB_Stat10: 5.16465963e-06 + syst_JES_MJB_Stat11: 5.87078622e-05 + syst_JES_MJB_Stat12: 4.84306296e-05 + syst_JES_MJB_Stat13: 3.55673715e-05 + syst_JES_MJB_Stat14: 3.67843350e-06 + syst_JES_MJB_Stat15: 3.75175415e-07 + syst_JES_MJB_Stat16: 2.15937647e-08 + syst_JES_MJB_Stat2: 1.10916634e-03 + syst_JES_MJB_Stat3: 2.25465385e-03 + syst_JES_MJB_Stat4: 6.77336185e-04 + syst_JES_MJB_Stat5: 5.92530607e-04 + syst_JES_MJB_Stat6: 1.26138091e-04 + syst_JES_MJB_Stat7: 1.72279467e-05 + syst_JES_MJB_Stat8: 1.12160326e-07 + syst_JES_MJB_Stat9: 1.11162203e-07 + syst_JES_MJB_Threshold: 7.72469694e-03 + syst_JES_Pileup_MuOffset: 1.47346302e-02 + syst_JES_Pileup_NPVOffset: 1.56886392e-02 + syst_JES_Pileup_Pt_term: 1.50365979e-02 + syst_JES_PunchThrough_MC15: 2.17853087e-03 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.07857516831035108 - syst_JES_Zjet_MuScale: 0.00487981341856428 - syst_JES_Zjet_MuSmearID: 0.001123160063169983 - syst_JES_Zjet_MuSmearMS: 0.021075769855452495 - syst_JES_Zjet_OOC: 0.03250969240088254 - syst_JES_Zjet_Stat1: 0.0014323076441533082 - syst_JES_Zjet_Stat10: 0.0028800358938735468 - syst_JES_Zjet_Stat11: 0.003036114416486968 - syst_JES_Zjet_Stat12: 0.01843364586835713 - syst_JES_Zjet_Stat13: 0.02161425629069851 + syst_JES_Zjet_MC: 7.85751683e-02 + syst_JES_Zjet_MuScale: 4.87981342e-03 + syst_JES_Zjet_MuSmearID: 1.12316006e-03 + syst_JES_Zjet_MuSmearMS: 2.10757699e-02 + syst_JES_Zjet_OOC: 3.25096924e-02 + syst_JES_Zjet_Stat1: 1.43230764e-03 + syst_JES_Zjet_Stat10: 2.88003589e-03 + syst_JES_Zjet_Stat11: 3.03611442e-03 + syst_JES_Zjet_Stat12: 1.84336459e-02 + syst_JES_Zjet_Stat13: 2.16142563e-02 syst_JES_Zjet_Stat2: 0.0 - syst_JES_Zjet_Stat3: 0.0005181626650965891 - syst_JES_Zjet_Stat4: 0.0005570844370470242 - syst_JES_Zjet_Stat5: 0.0003088567103043092 - syst_JES_Zjet_Stat6: 0.0009209860843139814 - syst_JES_Zjet_Stat7: 0.0007070601866178013 - syst_JES_Zjet_Stat8: 0.0008193051125801669 - syst_JES_Zjet_Stat9: 0.0017849879551414347 - syst_JES_Zjet_Veto: 0.006961556345387144 - syst_JES_Zjet_dPhi: 0.005715259989711754 + syst_JES_Zjet_Stat3: 5.18162665e-04 + syst_JES_Zjet_Stat4: 5.57084437e-04 + syst_JES_Zjet_Stat5: 3.08856710e-04 + syst_JES_Zjet_Stat6: 9.20986084e-04 + syst_JES_Zjet_Stat7: 7.07060187e-04 + syst_JES_Zjet_Stat8: 8.19305113e-04 + syst_JES_Zjet_Stat9: 1.78498796e-03 + syst_JES_Zjet_Veto: 6.96155635e-03 + syst_JES_Zjet_dPhi: 5.71525999e-03 syst_PRW: 0.003122 - syst_Unfolding_bias: 0.0005125 - syst_cleaning: 0.030120363543622776 + syst_Unfolding_bias: 5.12500000e-04 + syst_cleaning: 3.01203635e-02 syst_lumi: 0.11887 - syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.01500105579617648 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.029737748737925673 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 0.0031736961102159737 + syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.50010558e-02 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 2.97377487e-02 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 3.17369611e-03 syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 0.03795032347688224 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.009197944226836776 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.016569238817761064 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 3.79503235e-02 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 9.19794423e-03 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.65692388e-02 - stat: 0.013186 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.00936685261974373 - syst_JER_NP1: 0.0007368097379921088 - syst_JER_NP2: 0.0011489816969821583 - syst_JER_NP3: 0.0026446350882494167 - syst_JER_NP4: 0.0012055720343471807 - syst_JER_NP5: 0.001047670352496433 - syst_JER_NP6: 0.0017148384967687188 - syst_JER_NP7: 0.0024614881489659866 - syst_JER_NP8: 0.002159579299308085 - syst_JES_EtaIntercalibration_Modelling: 0.025273102302645793 + syst_JER_NP0: 9.36685262e-03 + syst_JER_NP1: 7.36809738e-04 + syst_JER_NP2: 1.14898170e-03 + syst_JER_NP3: 2.64463509e-03 + syst_JER_NP4: 1.20557203e-03 + syst_JER_NP5: 1.04767035e-03 + syst_JER_NP6: 1.71483850e-03 + syst_JER_NP7: 2.46148815e-03 + syst_JER_NP8: 2.15957930e-03 + syst_JES_EtaIntercalibration_Modelling: 2.52731023e-02 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 - syst_JES_EtaIntercalibration_Stat10: 3.5647269911659435e-12 - syst_JES_EtaIntercalibration_Stat100: 3.793280093797451e-10 + syst_JES_EtaIntercalibration_Stat10: 3.56472699e-12 + syst_JES_EtaIntercalibration_Stat100: 3.79328009e-10 syst_JES_EtaIntercalibration_Stat101: 0.0 syst_JES_EtaIntercalibration_Stat102: 0.0 - syst_JES_EtaIntercalibration_Stat103: 5.11388000934711e-16 - syst_JES_EtaIntercalibration_Stat104: 5.11388000934711e-16 - syst_JES_EtaIntercalibration_Stat105: 5.11388000934711e-16 + syst_JES_EtaIntercalibration_Stat103: 5.11388001e-16 + syst_JES_EtaIntercalibration_Stat104: 5.11388001e-16 + syst_JES_EtaIntercalibration_Stat105: 5.11388001e-16 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 2.284575015183349e-14 - syst_JES_EtaIntercalibration_Stat11: 3.805315624228823e-10 - syst_JES_EtaIntercalibration_Stat110: 2.2555105364584312e-14 - syst_JES_EtaIntercalibration_Stat111: 1.84376808465707e-14 - syst_JES_EtaIntercalibration_Stat112: 1.84376808465707e-14 + syst_JES_EtaIntercalibration_Stat109: 2.28457502e-14 + syst_JES_EtaIntercalibration_Stat11: 3.80531562e-10 + syst_JES_EtaIntercalibration_Stat110: 2.25551054e-14 + syst_JES_EtaIntercalibration_Stat111: 1.84376808e-14 + syst_JES_EtaIntercalibration_Stat112: 1.84376808e-14 syst_JES_EtaIntercalibration_Stat113: 0.0 - syst_JES_EtaIntercalibration_Stat114: 2.6898749041544664e-14 - syst_JES_EtaIntercalibration_Stat115: 1.7267126802105786e-08 - syst_JES_EtaIntercalibration_Stat116: 4.9444515115430145e-05 - syst_JES_EtaIntercalibration_Stat117: 2.5703355325715748e-05 - syst_JES_EtaIntercalibration_Stat118: 1.2251787175755217e-06 - syst_JES_EtaIntercalibration_Stat119: 8.854719137273638e-06 - syst_JES_EtaIntercalibration_Stat12: 1.2470765175369299e-06 - syst_JES_EtaIntercalibration_Stat120: 1.3207375918294596e-06 - syst_JES_EtaIntercalibration_Stat121: 1.984064200070149e-13 + syst_JES_EtaIntercalibration_Stat114: 2.68987490e-14 + syst_JES_EtaIntercalibration_Stat115: 1.72671268e-08 + syst_JES_EtaIntercalibration_Stat116: 4.94445151e-05 + syst_JES_EtaIntercalibration_Stat117: 2.57033553e-05 + syst_JES_EtaIntercalibration_Stat118: 1.22517872e-06 + syst_JES_EtaIntercalibration_Stat119: 8.85471914e-06 + syst_JES_EtaIntercalibration_Stat12: 1.24707652e-06 + syst_JES_EtaIntercalibration_Stat120: 1.32073759e-06 + syst_JES_EtaIntercalibration_Stat121: 1.98406420e-13 syst_JES_EtaIntercalibration_Stat122: 0.0 - syst_JES_EtaIntercalibration_Stat123: 5.11388000934711e-16 - syst_JES_EtaIntercalibration_Stat124: 5.11388000934711e-16 - syst_JES_EtaIntercalibration_Stat125: 5.11388000934711e-16 + syst_JES_EtaIntercalibration_Stat123: 5.11388001e-16 + syst_JES_EtaIntercalibration_Stat124: 5.11388001e-16 + syst_JES_EtaIntercalibration_Stat125: 5.11388001e-16 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 2.284575015183349e-14 - syst_JES_EtaIntercalibration_Stat129: 2.2555105364584312e-14 + syst_JES_EtaIntercalibration_Stat128: 2.28457502e-14 + syst_JES_EtaIntercalibration_Stat129: 2.25551054e-14 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 9.222304524900488e-16 + syst_JES_EtaIntercalibration_Stat130: 9.22230452e-16 syst_JES_EtaIntercalibration_Stat131: 0.0 syst_JES_EtaIntercalibration_Stat132: 0.0 - syst_JES_EtaIntercalibration_Stat133: 2.6898749041544664e-14 - syst_JES_EtaIntercalibration_Stat134: 2.160092552461584e-05 - syst_JES_EtaIntercalibration_Stat135: 4.403974917049369e-05 - syst_JES_EtaIntercalibration_Stat136: 9.958173326469066e-05 - syst_JES_EtaIntercalibration_Stat137: 0.00014559612185769235 - syst_JES_EtaIntercalibration_Stat138: 6.753966741848822e-05 - syst_JES_EtaIntercalibration_Stat139: 1.918896044604814e-08 + syst_JES_EtaIntercalibration_Stat133: 2.68987490e-14 + syst_JES_EtaIntercalibration_Stat134: 2.16009255e-05 + syst_JES_EtaIntercalibration_Stat135: 4.40397492e-05 + syst_JES_EtaIntercalibration_Stat136: 9.95817333e-05 + syst_JES_EtaIntercalibration_Stat137: 1.45596122e-04 + syst_JES_EtaIntercalibration_Stat138: 6.75396674e-05 + syst_JES_EtaIntercalibration_Stat139: 1.91889604e-08 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 1.984064200070149e-13 + syst_JES_EtaIntercalibration_Stat140: 1.98406420e-13 syst_JES_EtaIntercalibration_Stat141: 0.0 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 5.11388000934711e-16 - syst_JES_EtaIntercalibration_Stat144: 5.11388000934711e-16 + syst_JES_EtaIntercalibration_Stat143: 5.11388001e-16 + syst_JES_EtaIntercalibration_Stat144: 5.11388001e-16 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 9.222304524900488e-16 - syst_JES_EtaIntercalibration_Stat148: 9.222304524900488e-16 + syst_JES_EtaIntercalibration_Stat147: 9.22230452e-16 + syst_JES_EtaIntercalibration_Stat148: 9.22230452e-16 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 syst_JES_EtaIntercalibration_Stat150: 0.0 syst_JES_EtaIntercalibration_Stat151: 0.0 - syst_JES_EtaIntercalibration_Stat152: 8.888884898509408e-06 - syst_JES_EtaIntercalibration_Stat153: 7.812388687207004e-05 - syst_JES_EtaIntercalibration_Stat154: 0.00017929731593083038 - syst_JES_EtaIntercalibration_Stat155: 0.00017419101584180514 - syst_JES_EtaIntercalibration_Stat156: 0.00010102449443080625 - syst_JES_EtaIntercalibration_Stat157: 2.459925289515923e-06 + syst_JES_EtaIntercalibration_Stat152: 8.88888490e-06 + syst_JES_EtaIntercalibration_Stat153: 7.81238869e-05 + syst_JES_EtaIntercalibration_Stat154: 1.79297316e-04 + syst_JES_EtaIntercalibration_Stat155: 1.74191016e-04 + syst_JES_EtaIntercalibration_Stat156: 1.01024494e-04 + syst_JES_EtaIntercalibration_Stat157: 2.45992529e-06 syst_JES_EtaIntercalibration_Stat158: 0.0 syst_JES_EtaIntercalibration_Stat159: 0.0 syst_JES_EtaIntercalibration_Stat16: 0.0 @@ -6586,18 +6586,18 @@ bins: syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 9.222304524900488e-16 + syst_JES_EtaIntercalibration_Stat165: 9.22230452e-16 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 5.9490209908858105e-05 - syst_JES_EtaIntercalibration_Stat171: 0.0004004282800952001 - syst_JES_EtaIntercalibration_Stat172: 0.000437957312417546 - syst_JES_EtaIntercalibration_Stat173: 0.0004852896145602129 - syst_JES_EtaIntercalibration_Stat174: 0.00023800131827365998 - syst_JES_EtaIntercalibration_Stat175: 5.285990422806307e-06 + syst_JES_EtaIntercalibration_Stat170: 5.94902099e-05 + syst_JES_EtaIntercalibration_Stat171: 4.00428280e-04 + syst_JES_EtaIntercalibration_Stat172: 4.37957312e-04 + syst_JES_EtaIntercalibration_Stat173: 4.85289615e-04 + syst_JES_EtaIntercalibration_Stat174: 2.38001318e-04 + syst_JES_EtaIntercalibration_Stat175: 5.28599042e-06 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 syst_JES_EtaIntercalibration_Stat178: 0.0 @@ -6610,14 +6610,14 @@ bins: syst_JES_EtaIntercalibration_Stat184: 0.0 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 - syst_JES_EtaIntercalibration_Stat187: 6.430518889444303e-05 - syst_JES_EtaIntercalibration_Stat188: 0.0014659756989800344 - syst_JES_EtaIntercalibration_Stat189: 0.002256299625493033 + syst_JES_EtaIntercalibration_Stat187: 6.43051889e-05 + syst_JES_EtaIntercalibration_Stat188: 1.46597570e-03 + syst_JES_EtaIntercalibration_Stat189: 2.25629963e-03 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 0.002137382979252899 - syst_JES_EtaIntercalibration_Stat191: 0.0013624232849962599 - syst_JES_EtaIntercalibration_Stat192: 1.2399533983178561e-05 - syst_JES_EtaIntercalibration_Stat193: 1.3553297569226464e-06 + syst_JES_EtaIntercalibration_Stat190: 2.13738298e-03 + syst_JES_EtaIntercalibration_Stat191: 1.36242328e-03 + syst_JES_EtaIntercalibration_Stat192: 1.23995340e-05 + syst_JES_EtaIntercalibration_Stat193: 1.35532976e-06 syst_JES_EtaIntercalibration_Stat194: 0.0 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 @@ -6628,13 +6628,13 @@ bins: syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 syst_JES_EtaIntercalibration_Stat201: 0.0 - syst_JES_EtaIntercalibration_Stat202: 2.6065228236100296e-05 - syst_JES_EtaIntercalibration_Stat203: 0.0022180004508565816 - syst_JES_EtaIntercalibration_Stat204: 0.0033741069929686582 - syst_JES_EtaIntercalibration_Stat205: 0.003060886472902907 - syst_JES_EtaIntercalibration_Stat206: 0.0022995035877336656 - syst_JES_EtaIntercalibration_Stat207: 4.291685071157948e-05 - syst_JES_EtaIntercalibration_Stat208: 1.3553297569226464e-06 + syst_JES_EtaIntercalibration_Stat202: 2.60652282e-05 + syst_JES_EtaIntercalibration_Stat203: 2.21800045e-03 + syst_JES_EtaIntercalibration_Stat204: 3.37410699e-03 + syst_JES_EtaIntercalibration_Stat205: 3.06088647e-03 + syst_JES_EtaIntercalibration_Stat206: 2.29950359e-03 + syst_JES_EtaIntercalibration_Stat207: 4.29168507e-05 + syst_JES_EtaIntercalibration_Stat208: 1.35532976e-06 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 @@ -6642,38 +6642,38 @@ bins: syst_JES_EtaIntercalibration_Stat212: 0.0 syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 - syst_JES_EtaIntercalibration_Stat215: 4.3427574327839216e-05 - syst_JES_EtaIntercalibration_Stat216: 0.0009919512324202233 - syst_JES_EtaIntercalibration_Stat217: 0.001386242013502693 - syst_JES_EtaIntercalibration_Stat218: 0.0013075870946135863 - syst_JES_EtaIntercalibration_Stat219: 0.0010593519847057445 + syst_JES_EtaIntercalibration_Stat215: 4.34275743e-05 + syst_JES_EtaIntercalibration_Stat216: 9.91951232e-04 + syst_JES_EtaIntercalibration_Stat217: 1.38624201e-03 + syst_JES_EtaIntercalibration_Stat218: 1.30758709e-03 + syst_JES_EtaIntercalibration_Stat219: 1.05935198e-03 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 3.062605590016449e-05 + syst_JES_EtaIntercalibration_Stat220: 3.06260559e-05 syst_JES_EtaIntercalibration_Stat221: 0.0 syst_JES_EtaIntercalibration_Stat222: 0.0 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 - syst_JES_EtaIntercalibration_Stat227: 1.2421726933079795e-05 - syst_JES_EtaIntercalibration_Stat228: 0.0001555668317701431 - syst_JES_EtaIntercalibration_Stat229: 0.0003167522059907397 + syst_JES_EtaIntercalibration_Stat227: 1.24217269e-05 + syst_JES_EtaIntercalibration_Stat228: 1.55566832e-04 + syst_JES_EtaIntercalibration_Stat229: 3.16752206e-04 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 0.00029824005012740994 - syst_JES_EtaIntercalibration_Stat231: 0.00025614931909923163 - syst_JES_EtaIntercalibration_Stat232: 2.2949673198452516e-05 + syst_JES_EtaIntercalibration_Stat230: 2.98240050e-04 + syst_JES_EtaIntercalibration_Stat231: 2.56149319e-04 + syst_JES_EtaIntercalibration_Stat232: 2.29496732e-05 syst_JES_EtaIntercalibration_Stat233: 0.0 syst_JES_EtaIntercalibration_Stat234: 0.0 syst_JES_EtaIntercalibration_Stat235: 0.0 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 - syst_JES_EtaIntercalibration_Stat238: 2.2014365764200432e-09 - syst_JES_EtaIntercalibration_Stat239: 4.237979795846129e-05 + syst_JES_EtaIntercalibration_Stat238: 2.20143658e-09 + syst_JES_EtaIntercalibration_Stat239: 4.23797980e-05 syst_JES_EtaIntercalibration_Stat24: 0.0 - syst_JES_EtaIntercalibration_Stat240: 4.7370408484622553e-05 - syst_JES_EtaIntercalibration_Stat241: 6.578365906515083e-05 - syst_JES_EtaIntercalibration_Stat242: 3.533966998997019e-05 - syst_JES_EtaIntercalibration_Stat243: 1.5623098284271273e-09 + syst_JES_EtaIntercalibration_Stat240: 4.73704085e-05 + syst_JES_EtaIntercalibration_Stat241: 6.57836591e-05 + syst_JES_EtaIntercalibration_Stat242: 3.53396700e-05 + syst_JES_EtaIntercalibration_Stat243: 1.56230983e-09 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 syst_JES_EtaIntercalibration_Stat25: 0.0 @@ -6682,12 +6682,12 @@ bins: syst_JES_EtaIntercalibration_Stat28: 0.0 syst_JES_EtaIntercalibration_Stat29: 0.0 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 2.6042199830275472e-14 - syst_JES_EtaIntercalibration_Stat31: 2.070715689683159e-05 - syst_JES_EtaIntercalibration_Stat32: 4.797615216698813e-10 - syst_JES_EtaIntercalibration_Stat33: 1.2462117858067346e-06 - syst_JES_EtaIntercalibration_Stat34: 1.3310823469692782e-06 - syst_JES_EtaIntercalibration_Stat35: 1.9443724517719642e-13 + syst_JES_EtaIntercalibration_Stat30: 2.60421998e-14 + syst_JES_EtaIntercalibration_Stat31: 2.07071569e-05 + syst_JES_EtaIntercalibration_Stat32: 4.79761522e-10 + syst_JES_EtaIntercalibration_Stat33: 1.24621179e-06 + syst_JES_EtaIntercalibration_Stat34: 1.33108235e-06 + syst_JES_EtaIntercalibration_Stat35: 1.94437245e-13 syst_JES_EtaIntercalibration_Stat36: 0.0 syst_JES_EtaIntercalibration_Stat37: 0.0 syst_JES_EtaIntercalibration_Stat38: 0.0 @@ -6706,220 +6706,220 @@ bins: syst_JES_EtaIntercalibration_Stat5: 0.0 syst_JES_EtaIntercalibration_Stat50: 0.0 syst_JES_EtaIntercalibration_Stat51: 0.0 - syst_JES_EtaIntercalibration_Stat52: 1.93163176615006e-13 - syst_JES_EtaIntercalibration_Stat53: 1.2539417366799783e-09 - syst_JES_EtaIntercalibration_Stat54: 1.1616916774544785e-05 - syst_JES_EtaIntercalibration_Stat55: 1.2490460168036914e-06 - syst_JES_EtaIntercalibration_Stat56: 1.3302631781969612e-06 - syst_JES_EtaIntercalibration_Stat57: 1.7214395044555006e-12 + syst_JES_EtaIntercalibration_Stat52: 1.93163177e-13 + syst_JES_EtaIntercalibration_Stat53: 1.25394174e-09 + syst_JES_EtaIntercalibration_Stat54: 1.16169168e-05 + syst_JES_EtaIntercalibration_Stat55: 1.24904602e-06 + syst_JES_EtaIntercalibration_Stat56: 1.33026318e-06 + syst_JES_EtaIntercalibration_Stat57: 1.72143950e-12 syst_JES_EtaIntercalibration_Stat58: 0.0 syst_JES_EtaIntercalibration_Stat59: 0.0 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 5.11388000934711e-16 - syst_JES_EtaIntercalibration_Stat62: 5.11388000934711e-16 + syst_JES_EtaIntercalibration_Stat61: 5.11388001e-16 + syst_JES_EtaIntercalibration_Stat62: 5.11388001e-16 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 2.284575015183349e-14 - syst_JES_EtaIntercalibration_Stat69: 2.284575015183349e-14 + syst_JES_EtaIntercalibration_Stat68: 2.28457502e-14 + syst_JES_EtaIntercalibration_Stat69: 2.28457502e-14 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 1.84376808465707e-14 - syst_JES_EtaIntercalibration_Stat71: 1.84376808465707e-14 + syst_JES_EtaIntercalibration_Stat70: 1.84376808e-14 + syst_JES_EtaIntercalibration_Stat71: 1.84376808e-14 syst_JES_EtaIntercalibration_Stat72: 0.0 syst_JES_EtaIntercalibration_Stat73: 0.0 - syst_JES_EtaIntercalibration_Stat74: 7.632665375267017e-10 - syst_JES_EtaIntercalibration_Stat75: 4.0179233840380784e-05 - syst_JES_EtaIntercalibration_Stat76: 3.456512787575796e-06 - syst_JES_EtaIntercalibration_Stat77: 3.1743507603918008e-06 - syst_JES_EtaIntercalibration_Stat78: 4.6169370482496294e-06 - syst_JES_EtaIntercalibration_Stat79: 1.9618931545830928e-12 + syst_JES_EtaIntercalibration_Stat74: 7.63266538e-10 + syst_JES_EtaIntercalibration_Stat75: 4.01792338e-05 + syst_JES_EtaIntercalibration_Stat76: 3.45651279e-06 + syst_JES_EtaIntercalibration_Stat77: 3.17435076e-06 + syst_JES_EtaIntercalibration_Stat78: 4.61693705e-06 + syst_JES_EtaIntercalibration_Stat79: 1.96189315e-12 syst_JES_EtaIntercalibration_Stat8: 0.0 syst_JES_EtaIntercalibration_Stat80: 0.0 syst_JES_EtaIntercalibration_Stat81: 0.0 - syst_JES_EtaIntercalibration_Stat82: 5.11388000934711e-16 - syst_JES_EtaIntercalibration_Stat83: 5.11388000934711e-16 - syst_JES_EtaIntercalibration_Stat84: 5.11388000934711e-16 + syst_JES_EtaIntercalibration_Stat82: 5.11388001e-16 + syst_JES_EtaIntercalibration_Stat83: 5.11388001e-16 + syst_JES_EtaIntercalibration_Stat84: 5.11388001e-16 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 2.284575015183349e-14 - syst_JES_EtaIntercalibration_Stat9: 7.643646190054898e-10 - syst_JES_EtaIntercalibration_Stat90: 2.284575015183349e-14 - syst_JES_EtaIntercalibration_Stat91: 1.84376808465707e-14 - syst_JES_EtaIntercalibration_Stat92: 1.84376808465707e-14 + syst_JES_EtaIntercalibration_Stat89: 2.28457502e-14 + syst_JES_EtaIntercalibration_Stat9: 7.64364619e-10 + syst_JES_EtaIntercalibration_Stat90: 2.28457502e-14 + syst_JES_EtaIntercalibration_Stat91: 1.84376808e-14 + syst_JES_EtaIntercalibration_Stat92: 1.84376808e-14 syst_JES_EtaIntercalibration_Stat93: 0.0 syst_JES_EtaIntercalibration_Stat94: 0.0 - syst_JES_EtaIntercalibration_Stat95: 7.634076464620655e-10 - syst_JES_EtaIntercalibration_Stat96: 4.13066322398716e-05 - syst_JES_EtaIntercalibration_Stat97: 3.520827601573244e-06 - syst_JES_EtaIntercalibration_Stat98: 3.224227194228099e-06 - syst_JES_EtaIntercalibration_Stat99: 5.3611919539874705e-06 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.012866448150130633 - syst_JES_Flavour_Comp: 0.04209963984406517 - syst_JES_Gjet_Generator: 0.06939832346678125 - syst_JES_Gjet_OOC: 0.05406958849482766 - syst_JES_Gjet_Purity: 0.01642183531156003 - syst_JES_Gjet_Stat1: 0.0001324820292530274 - syst_JES_Gjet_Stat10: 0.0016802162807210267 - syst_JES_Gjet_Stat11: 0.002379306411540977 - syst_JES_Gjet_Stat12: 0.008059123075744655 - syst_JES_Gjet_Stat13: 0.01562550079197464 - syst_JES_Gjet_Stat14: 0.00852332709392289 - syst_JES_Gjet_Stat15: 0.00461720204777742 - syst_JES_Gjet_Stat2: 9.527563616853315e-05 - syst_JES_Gjet_Stat3: 0.00012136991997607974 - syst_JES_Gjet_Stat4: 0.00018949308694514425 - syst_JES_Gjet_Stat5: 0.00014372535336536834 - syst_JES_Gjet_Stat6: 0.0005109170872069167 - syst_JES_Gjet_Stat7: 0.0007650942033501497 - syst_JES_Gjet_Stat8: 0.0004511056500422047 - syst_JES_Gjet_Stat9: 0.0010697461229188913 - syst_JES_Gjet_Veto: 0.04277113278836557 - syst_JES_Gjet_dPhi: 0.004551087864456146 - syst_JES_LArESZee: 0.10383455819234749 - syst_JES_LArEsmear: 0.007704679292481939 - syst_JES_LAr_JVT: 0.009892589600301835 - syst_JES_MJB_Alpha: 0.0007951464063303059 - syst_JES_MJB_Asym: 0.0031535124464634667 - syst_JES_MJB_Beta: 0.00020375560728480577 - syst_JES_MJB_Stat1: 0.00029458044741632124 - syst_JES_MJB_Stat10: 3.3755082817258793e-06 - syst_JES_MJB_Stat11: 0.00010379316421864061 - syst_JES_MJB_Stat12: 8.516880277865835e-05 - syst_JES_MJB_Stat13: 6.973310601859063e-05 - syst_JES_MJB_Stat14: 1.534835465937636e-06 - syst_JES_MJB_Stat15: 9.063551001125333e-07 - syst_JES_MJB_Stat16: 1.5238033829861384e-07 - syst_JES_MJB_Stat2: 0.0006546899628831957 - syst_JES_MJB_Stat3: 0.001429705126940517 - syst_JES_MJB_Stat4: 0.0005751612121831582 - syst_JES_MJB_Stat5: 0.0003225031895578709 - syst_JES_MJB_Stat6: 0.00020909168294076165 - syst_JES_MJB_Stat7: 5.336166671872235e-05 - syst_JES_MJB_Stat8: 1.7666161212895121e-06 - syst_JES_MJB_Stat9: 1.7573299832416222e-06 - syst_JES_MJB_Threshold: 0.005108514730330137 - syst_JES_Pileup_MuOffset: 0.010247622394975335 - syst_JES_Pileup_NPVOffset: 0.01082726275426989 - syst_JES_Pileup_Pt_term: 0.009731657515552014 - syst_JES_PunchThrough_MC15: 0.0018260434688144747 - syst_JES_SingleParticle_HighPt: 2.0714806298877133e-43 - syst_JES_Zjet_MC: 0.04654310260393048 - syst_JES_Zjet_MuScale: 0.002748009097510414 - syst_JES_Zjet_MuSmearID: 0.0006641037927161687 - syst_JES_Zjet_MuSmearMS: 0.012896044461384275 - syst_JES_Zjet_OOC: 0.02006268364401931 - syst_JES_Zjet_Stat1: 0.0009524939212404456 - syst_JES_Zjet_Stat10: 0.0016853676156850768 - syst_JES_Zjet_Stat11: 0.0019461409892399884 - syst_JES_Zjet_Stat12: 0.009435485997022092 - syst_JES_Zjet_Stat13: 0.013662310822112049 + syst_JES_EtaIntercalibration_Stat95: 7.63407646e-10 + syst_JES_EtaIntercalibration_Stat96: 4.13066322e-05 + syst_JES_EtaIntercalibration_Stat97: 3.52082760e-06 + syst_JES_EtaIntercalibration_Stat98: 3.22422719e-06 + syst_JES_EtaIntercalibration_Stat99: 5.36119195e-06 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.28664482e-02 + syst_JES_Flavour_Comp: 4.20996398e-02 + syst_JES_Gjet_Generator: 6.93983235e-02 + syst_JES_Gjet_OOC: 5.40695885e-02 + syst_JES_Gjet_Purity: 1.64218353e-02 + syst_JES_Gjet_Stat1: 1.32482029e-04 + syst_JES_Gjet_Stat10: 1.68021628e-03 + syst_JES_Gjet_Stat11: 2.37930641e-03 + syst_JES_Gjet_Stat12: 8.05912308e-03 + syst_JES_Gjet_Stat13: 1.56255008e-02 + syst_JES_Gjet_Stat14: 8.52332709e-03 + syst_JES_Gjet_Stat15: 4.61720205e-03 + syst_JES_Gjet_Stat2: 9.52756362e-05 + syst_JES_Gjet_Stat3: 1.21369920e-04 + syst_JES_Gjet_Stat4: 1.89493087e-04 + syst_JES_Gjet_Stat5: 1.43725353e-04 + syst_JES_Gjet_Stat6: 5.10917087e-04 + syst_JES_Gjet_Stat7: 7.65094203e-04 + syst_JES_Gjet_Stat8: 4.51105650e-04 + syst_JES_Gjet_Stat9: 1.06974612e-03 + syst_JES_Gjet_Veto: 4.27711328e-02 + syst_JES_Gjet_dPhi: 4.55108786e-03 + syst_JES_LArESZee: 1.03834558e-01 + syst_JES_LArEsmear: 7.70467929e-03 + syst_JES_LAr_JVT: 9.89258960e-03 + syst_JES_MJB_Alpha: 7.95146406e-04 + syst_JES_MJB_Asym: 3.15351245e-03 + syst_JES_MJB_Beta: 2.03755607e-04 + syst_JES_MJB_Stat1: 2.94580447e-04 + syst_JES_MJB_Stat10: 3.37550828e-06 + syst_JES_MJB_Stat11: 1.03793164e-04 + syst_JES_MJB_Stat12: 8.51688028e-05 + syst_JES_MJB_Stat13: 6.97331060e-05 + syst_JES_MJB_Stat14: 1.53483547e-06 + syst_JES_MJB_Stat15: 9.06355100e-07 + syst_JES_MJB_Stat16: 1.52380338e-07 + syst_JES_MJB_Stat2: 6.54689963e-04 + syst_JES_MJB_Stat3: 1.42970513e-03 + syst_JES_MJB_Stat4: 5.75161212e-04 + syst_JES_MJB_Stat5: 3.22503190e-04 + syst_JES_MJB_Stat6: 2.09091683e-04 + syst_JES_MJB_Stat7: 5.33616667e-05 + syst_JES_MJB_Stat8: 1.76661612e-06 + syst_JES_MJB_Stat9: 1.75732998e-06 + syst_JES_MJB_Threshold: 5.10851473e-03 + syst_JES_Pileup_MuOffset: 1.02476224e-02 + syst_JES_Pileup_NPVOffset: 1.08272628e-02 + syst_JES_Pileup_Pt_term: 9.73165752e-03 + syst_JES_PunchThrough_MC15: 1.82604347e-03 + syst_JES_SingleParticle_HighPt: 2.07148063e-43 + syst_JES_Zjet_MC: 4.65431026e-02 + syst_JES_Zjet_MuScale: 2.74800910e-03 + syst_JES_Zjet_MuSmearID: 6.64103793e-04 + syst_JES_Zjet_MuSmearMS: 1.28960445e-02 + syst_JES_Zjet_OOC: 2.00626836e-02 + syst_JES_Zjet_Stat1: 9.52493921e-04 + syst_JES_Zjet_Stat10: 1.68536762e-03 + syst_JES_Zjet_Stat11: 1.94614099e-03 + syst_JES_Zjet_Stat12: 9.43548600e-03 + syst_JES_Zjet_Stat13: 1.36623108e-02 syst_JES_Zjet_Stat2: 0.0 - syst_JES_Zjet_Stat3: 0.0003381417565164054 - syst_JES_Zjet_Stat4: 0.0003711196943036033 - syst_JES_Zjet_Stat5: 0.0001993369697271432 - syst_JES_Zjet_Stat6: 0.0006371484206996044 - syst_JES_Zjet_Stat7: 0.0003941891424176978 - syst_JES_Zjet_Stat8: 0.0005503292173781073 - syst_JES_Zjet_Stat9: 0.0010618465837869422 - syst_JES_Zjet_Veto: 0.004193438058443214 - syst_JES_Zjet_dPhi: 0.0034788756804461983 + syst_JES_Zjet_Stat3: 3.38141757e-04 + syst_JES_Zjet_Stat4: 3.71119694e-04 + syst_JES_Zjet_Stat5: 1.99336970e-04 + syst_JES_Zjet_Stat6: 6.37148421e-04 + syst_JES_Zjet_Stat7: 3.94189142e-04 + syst_JES_Zjet_Stat8: 5.50329217e-04 + syst_JES_Zjet_Stat9: 1.06184658e-03 + syst_JES_Zjet_Veto: 4.19343806e-03 + syst_JES_Zjet_dPhi: 3.47887568e-03 syst_PRW: 0.001976 - syst_Unfolding_bias: 0.0003243 - syst_cleaning: 0.01944227031496065 + syst_Unfolding_bias: 3.24300000e-04 + syst_cleaning: 1.94422703e-02 syst_lumi: 0.07523 - syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.009653112283092952 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.018718629089759752 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 0.0017463054572439498 + syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 9.65311228e-03 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.87186291e-02 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 1.74630546e-03 syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 0.020879700668352503 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.006246494757061755 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.011091063564870593 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 2.08797007e-02 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 6.24649476e-03 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.10910636e-02 - stat: 0.007959 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.005273696236985972 - syst_JER_NP1: 0.0004934142352020258 - syst_JER_NP2: 0.00038849333005857385 - syst_JER_NP3: 0.0012731680672637058 - syst_JER_NP4: 0.0005780222141059979 - syst_JER_NP5: 0.0006445133881464372 - syst_JER_NP6: 0.0012336314877223263 - syst_JER_NP7: 0.0010251230304212271 - syst_JER_NP8: 0.0012400400114512434 - syst_JES_EtaIntercalibration_Modelling: 0.018231529694460635 + syst_JER_NP0: 5.27369624e-03 + syst_JER_NP1: 4.93414235e-04 + syst_JER_NP2: 3.88493330e-04 + syst_JER_NP3: 1.27316807e-03 + syst_JER_NP4: 5.78022214e-04 + syst_JER_NP5: 6.44513388e-04 + syst_JER_NP6: 1.23363149e-03 + syst_JER_NP7: 1.02512303e-03 + syst_JER_NP8: 1.24004001e-03 + syst_JES_EtaIntercalibration_Modelling: 1.82315297e-02 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 - syst_JES_EtaIntercalibration_Stat10: 4.733544910199438e-13 - syst_JES_EtaIntercalibration_Stat100: 5.125075795293178e-11 + syst_JES_EtaIntercalibration_Stat10: 4.73354491e-13 + syst_JES_EtaIntercalibration_Stat100: 5.12507580e-11 syst_JES_EtaIntercalibration_Stat101: 0.0 syst_JES_EtaIntercalibration_Stat102: 0.0 - syst_JES_EtaIntercalibration_Stat103: 8.919195633575933e-17 - syst_JES_EtaIntercalibration_Stat104: 8.919195633575933e-17 - syst_JES_EtaIntercalibration_Stat105: 8.919195633575933e-17 + syst_JES_EtaIntercalibration_Stat103: 8.91919563e-17 + syst_JES_EtaIntercalibration_Stat104: 8.91919563e-17 + syst_JES_EtaIntercalibration_Stat105: 8.91919563e-17 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 3.636440670490858e-15 - syst_JES_EtaIntercalibration_Stat11: 5.138994746056859e-11 - syst_JES_EtaIntercalibration_Stat110: 3.5868031124526475e-15 - syst_JES_EtaIntercalibration_Stat111: 2.9704671349806244e-15 - syst_JES_EtaIntercalibration_Stat112: 2.9704671349806244e-15 + syst_JES_EtaIntercalibration_Stat109: 3.63644067e-15 + syst_JES_EtaIntercalibration_Stat11: 5.13899475e-11 + syst_JES_EtaIntercalibration_Stat110: 3.58680311e-15 + syst_JES_EtaIntercalibration_Stat111: 2.97046713e-15 + syst_JES_EtaIntercalibration_Stat112: 2.97046713e-15 syst_JES_EtaIntercalibration_Stat113: 0.0 - syst_JES_EtaIntercalibration_Stat114: 4.259112935811869e-15 - syst_JES_EtaIntercalibration_Stat115: 2.6280491219724184e-09 - syst_JES_EtaIntercalibration_Stat116: 2.3287058788090867e-05 - syst_JES_EtaIntercalibration_Stat117: 2.1213997755020154e-05 - syst_JES_EtaIntercalibration_Stat118: 4.050498086655517e-06 - syst_JES_EtaIntercalibration_Stat119: 5.8267612573367035e-06 - syst_JES_EtaIntercalibration_Stat12: 2.78600362983759e-07 - syst_JES_EtaIntercalibration_Stat120: 2.8969180277967685e-07 - syst_JES_EtaIntercalibration_Stat121: 2.926299839387618e-14 + syst_JES_EtaIntercalibration_Stat114: 4.25911294e-15 + syst_JES_EtaIntercalibration_Stat115: 2.62804912e-09 + syst_JES_EtaIntercalibration_Stat116: 2.32870588e-05 + syst_JES_EtaIntercalibration_Stat117: 2.12139978e-05 + syst_JES_EtaIntercalibration_Stat118: 4.05049809e-06 + syst_JES_EtaIntercalibration_Stat119: 5.82676126e-06 + syst_JES_EtaIntercalibration_Stat12: 2.78600363e-07 + syst_JES_EtaIntercalibration_Stat120: 2.89691803e-07 + syst_JES_EtaIntercalibration_Stat121: 2.92629984e-14 syst_JES_EtaIntercalibration_Stat122: 0.0 - syst_JES_EtaIntercalibration_Stat123: 8.919195633575933e-17 - syst_JES_EtaIntercalibration_Stat124: 8.919195633575933e-17 - syst_JES_EtaIntercalibration_Stat125: 8.919195633575933e-17 + syst_JES_EtaIntercalibration_Stat123: 8.91919563e-17 + syst_JES_EtaIntercalibration_Stat124: 8.91919563e-17 + syst_JES_EtaIntercalibration_Stat125: 8.91919563e-17 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 3.636440670490858e-15 - syst_JES_EtaIntercalibration_Stat129: 3.5868031124526475e-15 + syst_JES_EtaIntercalibration_Stat128: 3.63644067e-15 + syst_JES_EtaIntercalibration_Stat129: 3.58680311e-15 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 1.5822284127141692e-16 + syst_JES_EtaIntercalibration_Stat130: 1.58222841e-16 syst_JES_EtaIntercalibration_Stat131: 0.0 syst_JES_EtaIntercalibration_Stat132: 0.0 - syst_JES_EtaIntercalibration_Stat133: 4.259112935811869e-15 - syst_JES_EtaIntercalibration_Stat134: 1.3958897404523038e-05 - syst_JES_EtaIntercalibration_Stat135: 1.680167523641616e-05 - syst_JES_EtaIntercalibration_Stat136: 4.1248130866743524e-05 - syst_JES_EtaIntercalibration_Stat137: 6.126909069832847e-05 - syst_JES_EtaIntercalibration_Stat138: 3.362889119492345e-05 - syst_JES_EtaIntercalibration_Stat139: 2.4748280561485477e-09 + syst_JES_EtaIntercalibration_Stat133: 4.25911294e-15 + syst_JES_EtaIntercalibration_Stat134: 1.39588974e-05 + syst_JES_EtaIntercalibration_Stat135: 1.68016752e-05 + syst_JES_EtaIntercalibration_Stat136: 4.12481309e-05 + syst_JES_EtaIntercalibration_Stat137: 6.12690907e-05 + syst_JES_EtaIntercalibration_Stat138: 3.36288912e-05 + syst_JES_EtaIntercalibration_Stat139: 2.47482806e-09 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 2.926299839387618e-14 + syst_JES_EtaIntercalibration_Stat140: 2.92629984e-14 syst_JES_EtaIntercalibration_Stat141: 0.0 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 8.919195633575933e-17 - syst_JES_EtaIntercalibration_Stat144: 8.919195633575933e-17 + syst_JES_EtaIntercalibration_Stat143: 8.91919563e-17 + syst_JES_EtaIntercalibration_Stat144: 8.91919563e-17 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 1.5822284127141692e-16 - syst_JES_EtaIntercalibration_Stat148: 1.5822284127141692e-16 + syst_JES_EtaIntercalibration_Stat147: 1.58222841e-16 + syst_JES_EtaIntercalibration_Stat148: 1.58222841e-16 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 syst_JES_EtaIntercalibration_Stat150: 0.0 syst_JES_EtaIntercalibration_Stat151: 0.0 - syst_JES_EtaIntercalibration_Stat152: 5.764265110585085e-06 - syst_JES_EtaIntercalibration_Stat153: 2.9795602641161666e-05 - syst_JES_EtaIntercalibration_Stat154: 5.836069460690132e-05 - syst_JES_EtaIntercalibration_Stat155: 7.097694608110439e-05 - syst_JES_EtaIntercalibration_Stat156: 3.760413939980544e-05 - syst_JES_EtaIntercalibration_Stat157: 5.38578806489821e-07 + syst_JES_EtaIntercalibration_Stat152: 5.76426511e-06 + syst_JES_EtaIntercalibration_Stat153: 2.97956026e-05 + syst_JES_EtaIntercalibration_Stat154: 5.83606946e-05 + syst_JES_EtaIntercalibration_Stat155: 7.09769461e-05 + syst_JES_EtaIntercalibration_Stat156: 3.76041394e-05 + syst_JES_EtaIntercalibration_Stat157: 5.38578806e-07 syst_JES_EtaIntercalibration_Stat158: 0.0 syst_JES_EtaIntercalibration_Stat159: 0.0 syst_JES_EtaIntercalibration_Stat16: 0.0 @@ -6928,18 +6928,18 @@ bins: syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 1.5822284127141692e-16 + syst_JES_EtaIntercalibration_Stat165: 1.58222841e-16 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 4.708449426297366e-05 - syst_JES_EtaIntercalibration_Stat171: 0.0001553945001439884 - syst_JES_EtaIntercalibration_Stat172: 0.00016077135161464556 - syst_JES_EtaIntercalibration_Stat173: 0.0001896620942624013 - syst_JES_EtaIntercalibration_Stat174: 9.262156552337041e-05 - syst_JES_EtaIntercalibration_Stat175: 1.2194016237483036e-06 + syst_JES_EtaIntercalibration_Stat170: 4.70844943e-05 + syst_JES_EtaIntercalibration_Stat171: 1.55394500e-04 + syst_JES_EtaIntercalibration_Stat172: 1.60771352e-04 + syst_JES_EtaIntercalibration_Stat173: 1.89662094e-04 + syst_JES_EtaIntercalibration_Stat174: 9.26215655e-05 + syst_JES_EtaIntercalibration_Stat175: 1.21940162e-06 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 syst_JES_EtaIntercalibration_Stat178: 0.0 @@ -6952,14 +6952,14 @@ bins: syst_JES_EtaIntercalibration_Stat184: 0.0 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 - syst_JES_EtaIntercalibration_Stat187: 2.5222768101855913e-05 - syst_JES_EtaIntercalibration_Stat188: 0.0006547421706290194 - syst_JES_EtaIntercalibration_Stat189: 0.0009281511878460318 + syst_JES_EtaIntercalibration_Stat187: 2.52227681e-05 + syst_JES_EtaIntercalibration_Stat188: 6.54742171e-04 + syst_JES_EtaIntercalibration_Stat189: 9.28151188e-04 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 0.0009204652193320505 - syst_JES_EtaIntercalibration_Stat191: 0.0005774849868178393 - syst_JES_EtaIntercalibration_Stat192: 8.545391199354188e-06 - syst_JES_EtaIntercalibration_Stat193: 2.95401265230872e-07 + syst_JES_EtaIntercalibration_Stat190: 9.20465219e-04 + syst_JES_EtaIntercalibration_Stat191: 5.77484987e-04 + syst_JES_EtaIntercalibration_Stat192: 8.54539120e-06 + syst_JES_EtaIntercalibration_Stat193: 2.95401265e-07 syst_JES_EtaIntercalibration_Stat194: 0.0 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 @@ -6970,13 +6970,13 @@ bins: syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 syst_JES_EtaIntercalibration_Stat201: 0.0 - syst_JES_EtaIntercalibration_Stat202: 3.098247367464386e-06 - syst_JES_EtaIntercalibration_Stat203: 0.0011265039147734905 - syst_JES_EtaIntercalibration_Stat204: 0.0017202325424197742 - syst_JES_EtaIntercalibration_Stat205: 0.0014874157018130473 - syst_JES_EtaIntercalibration_Stat206: 0.0011989060961976963 - syst_JES_EtaIntercalibration_Stat207: 2.396638218421796e-05 - syst_JES_EtaIntercalibration_Stat208: 2.95401265230872e-07 + syst_JES_EtaIntercalibration_Stat202: 3.09824737e-06 + syst_JES_EtaIntercalibration_Stat203: 1.12650391e-03 + syst_JES_EtaIntercalibration_Stat204: 1.72023254e-03 + syst_JES_EtaIntercalibration_Stat205: 1.48741570e-03 + syst_JES_EtaIntercalibration_Stat206: 1.19890610e-03 + syst_JES_EtaIntercalibration_Stat207: 2.39663822e-05 + syst_JES_EtaIntercalibration_Stat208: 2.95401265e-07 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 @@ -6984,38 +6984,38 @@ bins: syst_JES_EtaIntercalibration_Stat212: 0.0 syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 - syst_JES_EtaIntercalibration_Stat215: 1.781860564129528e-05 - syst_JES_EtaIntercalibration_Stat216: 0.0007182597771697926 - syst_JES_EtaIntercalibration_Stat217: 0.0009284080608762507 - syst_JES_EtaIntercalibration_Stat218: 0.0009543094309499409 - syst_JES_EtaIntercalibration_Stat219: 0.0007568334625265983 + syst_JES_EtaIntercalibration_Stat215: 1.78186056e-05 + syst_JES_EtaIntercalibration_Stat216: 7.18259777e-04 + syst_JES_EtaIntercalibration_Stat217: 9.28408061e-04 + syst_JES_EtaIntercalibration_Stat218: 9.54309431e-04 + syst_JES_EtaIntercalibration_Stat219: 7.56833463e-04 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 1.5595596910666805e-05 + syst_JES_EtaIntercalibration_Stat220: 1.55955969e-05 syst_JES_EtaIntercalibration_Stat221: 0.0 syst_JES_EtaIntercalibration_Stat222: 0.0 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 - syst_JES_EtaIntercalibration_Stat227: 1.092812788175541e-06 - syst_JES_EtaIntercalibration_Stat228: 0.0001766078627921192 - syst_JES_EtaIntercalibration_Stat229: 0.00010333154443344008 + syst_JES_EtaIntercalibration_Stat227: 1.09281279e-06 + syst_JES_EtaIntercalibration_Stat228: 1.76607863e-04 + syst_JES_EtaIntercalibration_Stat229: 1.03331544e-04 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 0.0001741702256414684 - syst_JES_EtaIntercalibration_Stat231: 0.00015850064605546567 - syst_JES_EtaIntercalibration_Stat232: 1.479171305832581e-05 + syst_JES_EtaIntercalibration_Stat230: 1.74170226e-04 + syst_JES_EtaIntercalibration_Stat231: 1.58500646e-04 + syst_JES_EtaIntercalibration_Stat232: 1.47917131e-05 syst_JES_EtaIntercalibration_Stat233: 0.0 syst_JES_EtaIntercalibration_Stat234: 0.0 syst_JES_EtaIntercalibration_Stat235: 0.0 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 - syst_JES_EtaIntercalibration_Stat238: 3.066595954800697e-08 - syst_JES_EtaIntercalibration_Stat239: 4.534718412426509e-05 + syst_JES_EtaIntercalibration_Stat238: 3.06659595e-08 + syst_JES_EtaIntercalibration_Stat239: 4.53471841e-05 syst_JES_EtaIntercalibration_Stat24: 0.0 - syst_JES_EtaIntercalibration_Stat240: 5.1957815581488796e-05 - syst_JES_EtaIntercalibration_Stat241: 6.491370945339667e-05 - syst_JES_EtaIntercalibration_Stat242: 4.005879687097454e-05 - syst_JES_EtaIntercalibration_Stat243: 1.950289209322556e-08 + syst_JES_EtaIntercalibration_Stat240: 5.19578156e-05 + syst_JES_EtaIntercalibration_Stat241: 6.49137095e-05 + syst_JES_EtaIntercalibration_Stat242: 4.00587969e-05 + syst_JES_EtaIntercalibration_Stat243: 1.95028921e-08 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 syst_JES_EtaIntercalibration_Stat25: 0.0 @@ -7024,12 +7024,12 @@ bins: syst_JES_EtaIntercalibration_Stat28: 0.0 syst_JES_EtaIntercalibration_Stat29: 0.0 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 4.117865354768172e-15 - syst_JES_EtaIntercalibration_Stat31: 1.3279430069377979e-05 - syst_JES_EtaIntercalibration_Stat32: 6.493987686121678e-11 - syst_JES_EtaIntercalibration_Stat33: 2.7868713789532696e-07 - syst_JES_EtaIntercalibration_Stat34: 2.91590926890654e-07 - syst_JES_EtaIntercalibration_Stat35: 2.864220270055633e-14 + syst_JES_EtaIntercalibration_Stat30: 4.11786535e-15 + syst_JES_EtaIntercalibration_Stat31: 1.32794301e-05 + syst_JES_EtaIntercalibration_Stat32: 6.49398769e-11 + syst_JES_EtaIntercalibration_Stat33: 2.78687138e-07 + syst_JES_EtaIntercalibration_Stat34: 2.91590927e-07 + syst_JES_EtaIntercalibration_Stat35: 2.86422027e-14 syst_JES_EtaIntercalibration_Stat36: 0.0 syst_JES_EtaIntercalibration_Stat37: 0.0 syst_JES_EtaIntercalibration_Stat38: 0.0 @@ -7048,220 +7048,220 @@ bins: syst_JES_EtaIntercalibration_Stat5: 0.0 syst_JES_EtaIntercalibration_Stat50: 0.0 syst_JES_EtaIntercalibration_Stat51: 0.0 - syst_JES_EtaIntercalibration_Stat52: 2.6000229015674072e-14 - syst_JES_EtaIntercalibration_Stat53: 1.6692605508149408e-10 - syst_JES_EtaIntercalibration_Stat54: 7.4573414101720585e-06 - syst_JES_EtaIntercalibration_Stat55: 2.794978313307801e-07 - syst_JES_EtaIntercalibration_Stat56: 2.9168358902344177e-07 - syst_JES_EtaIntercalibration_Stat57: 2.33071249835753e-13 + syst_JES_EtaIntercalibration_Stat52: 2.60002290e-14 + syst_JES_EtaIntercalibration_Stat53: 1.66926055e-10 + syst_JES_EtaIntercalibration_Stat54: 7.45734141e-06 + syst_JES_EtaIntercalibration_Stat55: 2.79497831e-07 + syst_JES_EtaIntercalibration_Stat56: 2.91683589e-07 + syst_JES_EtaIntercalibration_Stat57: 2.33071250e-13 syst_JES_EtaIntercalibration_Stat58: 0.0 syst_JES_EtaIntercalibration_Stat59: 0.0 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 8.919195633575933e-17 - syst_JES_EtaIntercalibration_Stat62: 8.919195633575933e-17 + syst_JES_EtaIntercalibration_Stat61: 8.91919563e-17 + syst_JES_EtaIntercalibration_Stat62: 8.91919563e-17 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 3.636440670490858e-15 - syst_JES_EtaIntercalibration_Stat69: 3.636440670490858e-15 + syst_JES_EtaIntercalibration_Stat68: 3.63644067e-15 + syst_JES_EtaIntercalibration_Stat69: 3.63644067e-15 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 2.9704671349806244e-15 - syst_JES_EtaIntercalibration_Stat71: 2.9704671349806244e-15 + syst_JES_EtaIntercalibration_Stat70: 2.97046713e-15 + syst_JES_EtaIntercalibration_Stat71: 2.97046713e-15 syst_JES_EtaIntercalibration_Stat72: 0.0 syst_JES_EtaIntercalibration_Stat73: 0.0 - syst_JES_EtaIntercalibration_Stat74: 9.949470421187e-11 - syst_JES_EtaIntercalibration_Stat75: 2.9177258730045216e-05 - syst_JES_EtaIntercalibration_Stat76: 2.2015904461718123e-06 - syst_JES_EtaIntercalibration_Stat77: 2.8422686361426145e-06 - syst_JES_EtaIntercalibration_Stat78: 2.8252759685943515e-06 - syst_JES_EtaIntercalibration_Stat79: 2.57907672433373e-13 + syst_JES_EtaIntercalibration_Stat74: 9.94947042e-11 + syst_JES_EtaIntercalibration_Stat75: 2.91772587e-05 + syst_JES_EtaIntercalibration_Stat76: 2.20159045e-06 + syst_JES_EtaIntercalibration_Stat77: 2.84226864e-06 + syst_JES_EtaIntercalibration_Stat78: 2.82527597e-06 + syst_JES_EtaIntercalibration_Stat79: 2.57907672e-13 syst_JES_EtaIntercalibration_Stat8: 0.0 syst_JES_EtaIntercalibration_Stat80: 0.0 syst_JES_EtaIntercalibration_Stat81: 0.0 - syst_JES_EtaIntercalibration_Stat82: 8.919195633575933e-17 - syst_JES_EtaIntercalibration_Stat83: 8.919195633575933e-17 - syst_JES_EtaIntercalibration_Stat84: 8.919195633575933e-17 + syst_JES_EtaIntercalibration_Stat82: 8.91919563e-17 + syst_JES_EtaIntercalibration_Stat83: 8.91919563e-17 + syst_JES_EtaIntercalibration_Stat84: 8.91919563e-17 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 3.636440670490858e-15 - syst_JES_EtaIntercalibration_Stat9: 9.963555266523127e-11 - syst_JES_EtaIntercalibration_Stat90: 3.636440670490858e-15 - syst_JES_EtaIntercalibration_Stat91: 2.9704671349806244e-15 - syst_JES_EtaIntercalibration_Stat92: 2.9704671349806244e-15 + syst_JES_EtaIntercalibration_Stat89: 3.63644067e-15 + syst_JES_EtaIntercalibration_Stat9: 9.96355527e-11 + syst_JES_EtaIntercalibration_Stat90: 3.63644067e-15 + syst_JES_EtaIntercalibration_Stat91: 2.97046713e-15 + syst_JES_EtaIntercalibration_Stat92: 2.97046713e-15 syst_JES_EtaIntercalibration_Stat93: 0.0 syst_JES_EtaIntercalibration_Stat94: 0.0 - syst_JES_EtaIntercalibration_Stat95: 9.951914995149175e-11 - syst_JES_EtaIntercalibration_Stat96: 3.0027331062716848e-05 - syst_JES_EtaIntercalibration_Stat97: 2.2083631947666584e-06 - syst_JES_EtaIntercalibration_Stat98: 2.660146424541326e-06 - syst_JES_EtaIntercalibration_Stat99: 3.529196815140805e-06 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.009236098364569317 - syst_JES_Flavour_Comp: 0.029502799867131252 - syst_JES_Gjet_Generator: 0.045264317900527345 - syst_JES_Gjet_OOC: 0.03591257822824755 - syst_JES_Gjet_Purity: 0.01026771654263985 - syst_JES_Gjet_Stat1: 9.174110311087393e-05 - syst_JES_Gjet_Stat10: 0.0010344227810716467 - syst_JES_Gjet_Stat11: 0.0013732601428716996 - syst_JES_Gjet_Stat12: 0.004564967798353019 - syst_JES_Gjet_Stat13: 0.010765173140734895 - syst_JES_Gjet_Stat14: 0.009780803801324307 - syst_JES_Gjet_Stat15: 0.002809845547356652 - syst_JES_Gjet_Stat2: 6.093394364200875e-05 - syst_JES_Gjet_Stat3: 7.78431144996139e-05 - syst_JES_Gjet_Stat4: 0.00012802125448533927 - syst_JES_Gjet_Stat5: 9.217923139189216e-05 - syst_JES_Gjet_Stat6: 0.00036296011833257937 - syst_JES_Gjet_Stat7: 0.0004974519983626561 - syst_JES_Gjet_Stat8: 0.0002803535401952328 - syst_JES_Gjet_Stat9: 0.0006082479161493281 - syst_JES_Gjet_Veto: 0.030235623029797154 - syst_JES_Gjet_dPhi: 0.0031414657009109616 - syst_JES_LArESZee: 0.0680982046385953 - syst_JES_LArEsmear: 0.005198294023042559 - syst_JES_LAr_JVT: 0.006595158280890611 - syst_JES_MJB_Alpha: 0.00045035195602994774 - syst_JES_MJB_Asym: 0.0022561570756487676 - syst_JES_MJB_Beta: 0.0002349945690861812 - syst_JES_MJB_Stat1: 0.0001472957443377099 - syst_JES_MJB_Stat10: 2.7003356735783794e-06 - syst_JES_MJB_Stat11: 0.00011704566513631955 - syst_JES_MJB_Stat12: 0.00010091627953407715 - syst_JES_MJB_Stat13: 8.549176860961528e-05 - syst_JES_MJB_Stat14: 9.735921682100776e-06 - syst_JES_MJB_Stat15: 2.451144083892255e-06 - syst_JES_MJB_Stat16: 5.088648617265688e-07 - syst_JES_MJB_Stat2: 0.000363763082238976 - syst_JES_MJB_Stat3: 0.0008965572151290736 - syst_JES_MJB_Stat4: 0.0004134016448927121 - syst_JES_MJB_Stat5: 0.00025260567590614424 - syst_JES_MJB_Stat6: 0.00023477331087668374 - syst_JES_MJB_Stat7: 9.332340060242126e-05 - syst_JES_MJB_Stat8: 1.0410466656207107e-05 - syst_JES_MJB_Stat9: 1.0350050953980854e-05 - syst_JES_MJB_Threshold: 0.003366744867078585 - syst_JES_Pileup_MuOffset: 0.00720757911853904 - syst_JES_Pileup_NPVOffset: 0.007516238470804396 - syst_JES_Pileup_Pt_term: 0.006321913713425707 - syst_JES_PunchThrough_MC15: 0.00160802238790385 - syst_JES_SingleParticle_HighPt: 2.597637532451362e-35 - syst_JES_Zjet_MC: 0.02796208280868934 - syst_JES_Zjet_MuScale: 0.0016607289815017982 - syst_JES_Zjet_MuSmearID: 0.00039593525985948764 - syst_JES_Zjet_MuSmearMS: 0.007901424808222882 - syst_JES_Zjet_OOC: 0.012608224964284227 - syst_JES_Zjet_Stat1: 0.0006316147401699869 - syst_JES_Zjet_Stat10: 0.0010462951925723448 - syst_JES_Zjet_Stat11: 0.0013074424451959637 - syst_JES_Zjet_Stat12: 0.00502429089524084 - syst_JES_Zjet_Stat13: 0.008540555880620419 + syst_JES_EtaIntercalibration_Stat95: 9.95191500e-11 + syst_JES_EtaIntercalibration_Stat96: 3.00273311e-05 + syst_JES_EtaIntercalibration_Stat97: 2.20836319e-06 + syst_JES_EtaIntercalibration_Stat98: 2.66014642e-06 + syst_JES_EtaIntercalibration_Stat99: 3.52919682e-06 + syst_JES_EtaIntercalibration_TotalStat_MJB: 9.23609836e-03 + syst_JES_Flavour_Comp: 2.95027999e-02 + syst_JES_Gjet_Generator: 4.52643179e-02 + syst_JES_Gjet_OOC: 3.59125782e-02 + syst_JES_Gjet_Purity: 1.02677165e-02 + syst_JES_Gjet_Stat1: 9.17411031e-05 + syst_JES_Gjet_Stat10: 1.03442278e-03 + syst_JES_Gjet_Stat11: 1.37326014e-03 + syst_JES_Gjet_Stat12: 4.56496780e-03 + syst_JES_Gjet_Stat13: 1.07651731e-02 + syst_JES_Gjet_Stat14: 9.78080380e-03 + syst_JES_Gjet_Stat15: 2.80984555e-03 + syst_JES_Gjet_Stat2: 6.09339436e-05 + syst_JES_Gjet_Stat3: 7.78431145e-05 + syst_JES_Gjet_Stat4: 1.28021254e-04 + syst_JES_Gjet_Stat5: 9.21792314e-05 + syst_JES_Gjet_Stat6: 3.62960118e-04 + syst_JES_Gjet_Stat7: 4.97451998e-04 + syst_JES_Gjet_Stat8: 2.80353540e-04 + syst_JES_Gjet_Stat9: 6.08247916e-04 + syst_JES_Gjet_Veto: 3.02356230e-02 + syst_JES_Gjet_dPhi: 3.14146570e-03 + syst_JES_LArESZee: 6.80982046e-02 + syst_JES_LArEsmear: 5.19829402e-03 + syst_JES_LAr_JVT: 6.59515828e-03 + syst_JES_MJB_Alpha: 4.50351956e-04 + syst_JES_MJB_Asym: 2.25615708e-03 + syst_JES_MJB_Beta: 2.34994569e-04 + syst_JES_MJB_Stat1: 1.47295744e-04 + syst_JES_MJB_Stat10: 2.70033567e-06 + syst_JES_MJB_Stat11: 1.17045665e-04 + syst_JES_MJB_Stat12: 1.00916280e-04 + syst_JES_MJB_Stat13: 8.54917686e-05 + syst_JES_MJB_Stat14: 9.73592168e-06 + syst_JES_MJB_Stat15: 2.45114408e-06 + syst_JES_MJB_Stat16: 5.08864862e-07 + syst_JES_MJB_Stat2: 3.63763082e-04 + syst_JES_MJB_Stat3: 8.96557215e-04 + syst_JES_MJB_Stat4: 4.13401645e-04 + syst_JES_MJB_Stat5: 2.52605676e-04 + syst_JES_MJB_Stat6: 2.34773311e-04 + syst_JES_MJB_Stat7: 9.33234006e-05 + syst_JES_MJB_Stat8: 1.04104667e-05 + syst_JES_MJB_Stat9: 1.03500510e-05 + syst_JES_MJB_Threshold: 3.36674487e-03 + syst_JES_Pileup_MuOffset: 7.20757912e-03 + syst_JES_Pileup_NPVOffset: 7.51623847e-03 + syst_JES_Pileup_Pt_term: 6.32191371e-03 + syst_JES_PunchThrough_MC15: 1.60802239e-03 + syst_JES_SingleParticle_HighPt: 2.59763753e-35 + syst_JES_Zjet_MC: 2.79620828e-02 + syst_JES_Zjet_MuScale: 1.66072898e-03 + syst_JES_Zjet_MuSmearID: 3.95935260e-04 + syst_JES_Zjet_MuSmearMS: 7.90142481e-03 + syst_JES_Zjet_OOC: 1.26082250e-02 + syst_JES_Zjet_Stat1: 6.31614740e-04 + syst_JES_Zjet_Stat10: 1.04629519e-03 + syst_JES_Zjet_Stat11: 1.30744245e-03 + syst_JES_Zjet_Stat12: 5.02429090e-03 + syst_JES_Zjet_Stat13: 8.54055588e-03 syst_JES_Zjet_Stat2: 0.0 - syst_JES_Zjet_Stat3: 0.00021441511857842488 - syst_JES_Zjet_Stat4: 0.00023154852342435698 - syst_JES_Zjet_Stat5: 0.00013896620704329524 - syst_JES_Zjet_Stat6: 0.000429117195530545 - syst_JES_Zjet_Stat7: 0.00024084850009912872 - syst_JES_Zjet_Stat8: 0.00035420086109437966 - syst_JES_Zjet_Stat9: 0.0006145416727122741 - syst_JES_Zjet_Veto: 0.00263666911082904 - syst_JES_Zjet_dPhi: 0.002191248673701823 - syst_PRW: 0.0012671 + syst_JES_Zjet_Stat3: 2.14415119e-04 + syst_JES_Zjet_Stat4: 2.31548523e-04 + syst_JES_Zjet_Stat5: 1.38966207e-04 + syst_JES_Zjet_Stat6: 4.29117196e-04 + syst_JES_Zjet_Stat7: 2.40848500e-04 + syst_JES_Zjet_Stat8: 3.54200861e-04 + syst_JES_Zjet_Stat9: 6.14541673e-04 + syst_JES_Zjet_Veto: 2.63666911e-03 + syst_JES_Zjet_dPhi: 2.19124867e-03 + syst_PRW: 1.26710000e-03 syst_Unfolding_bias: 0.000208 - syst_cleaning: 0.012869137500236758 + syst_cleaning: 1.28691375e-02 syst_lumi: 0.04825 - syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.00612473199413656 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.011982652241887019 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 0.0010818249893120423 + syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 6.12473199e-03 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.19826522e-02 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 1.08182499e-03 syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 0.012936257611844318 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.004178093674153321 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0075366465354294015 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 1.29362576e-02 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 4.17809367e-03 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 7.53664654e-03 - stat: 0.005361 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.0030671910194834616 - syst_JER_NP1: 0.00032382894790305576 - syst_JER_NP2: 0.000241395987539147 - syst_JER_NP3: 0.0006844738417207775 - syst_JER_NP4: 0.0004015082037455773 - syst_JER_NP5: 0.00035275544999333465 - syst_JER_NP6: 0.000729863910259988 - syst_JER_NP7: 0.00032598544062580466 - syst_JER_NP8: 0.0007625061753848292 - syst_JES_EtaIntercalibration_Modelling: 0.012871848070498657 + syst_JER_NP0: 3.06719102e-03 + syst_JER_NP1: 3.23828948e-04 + syst_JER_NP2: 2.41395988e-04 + syst_JER_NP3: 6.84473842e-04 + syst_JER_NP4: 4.01508204e-04 + syst_JER_NP5: 3.52755450e-04 + syst_JER_NP6: 7.29863910e-04 + syst_JER_NP7: 3.25985441e-04 + syst_JER_NP8: 7.62506175e-04 + syst_JES_EtaIntercalibration_Modelling: 1.28718481e-02 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 - syst_JES_EtaIntercalibration_Stat10: 6.731348213773746e-14 - syst_JES_EtaIntercalibration_Stat100: 6.929704227454445e-12 + syst_JES_EtaIntercalibration_Stat10: 6.73134821e-14 + syst_JES_EtaIntercalibration_Stat100: 6.92970423e-12 syst_JES_EtaIntercalibration_Stat101: 0.0 syst_JES_EtaIntercalibration_Stat102: 0.0 - syst_JES_EtaIntercalibration_Stat103: 1.7026059438402064e-17 - syst_JES_EtaIntercalibration_Stat104: 1.7026059438402064e-17 - syst_JES_EtaIntercalibration_Stat105: 1.7026059438402064e-17 + syst_JES_EtaIntercalibration_Stat103: 1.70260594e-17 + syst_JES_EtaIntercalibration_Stat104: 1.70260594e-17 + syst_JES_EtaIntercalibration_Stat105: 1.70260594e-17 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 6.326315574645325e-16 - syst_JES_EtaIntercalibration_Stat11: 6.946389763754983e-12 - syst_JES_EtaIntercalibration_Stat110: 6.23369499735109e-16 - syst_JES_EtaIntercalibration_Stat111: 5.236855616684501e-16 - syst_JES_EtaIntercalibration_Stat112: 5.236855616684501e-16 + syst_JES_EtaIntercalibration_Stat109: 6.32631557e-16 + syst_JES_EtaIntercalibration_Stat11: 6.94638976e-12 + syst_JES_EtaIntercalibration_Stat110: 6.23369500e-16 + syst_JES_EtaIntercalibration_Stat111: 5.23685562e-16 + syst_JES_EtaIntercalibration_Stat112: 5.23685562e-16 syst_JES_EtaIntercalibration_Stat113: 0.0 - syst_JES_EtaIntercalibration_Stat114: 7.365546059186651e-16 - syst_JES_EtaIntercalibration_Stat115: 3.8634096171646105e-10 - syst_JES_EtaIntercalibration_Stat116: 1.2988944325078925e-05 - syst_JES_EtaIntercalibration_Stat117: 2.0693774272995128e-05 - syst_JES_EtaIntercalibration_Stat118: 2.8113243765172313e-06 - syst_JES_EtaIntercalibration_Stat119: 4.539455804388892e-06 - syst_JES_EtaIntercalibration_Stat12: 5.318261853634293e-08 - syst_JES_EtaIntercalibration_Stat120: 5.479426797101872e-08 - syst_JES_EtaIntercalibration_Stat121: 4.699919866338149e-15 + syst_JES_EtaIntercalibration_Stat114: 7.36554606e-16 + syst_JES_EtaIntercalibration_Stat115: 3.86340962e-10 + syst_JES_EtaIntercalibration_Stat116: 1.29889443e-05 + syst_JES_EtaIntercalibration_Stat117: 2.06937743e-05 + syst_JES_EtaIntercalibration_Stat118: 2.81132438e-06 + syst_JES_EtaIntercalibration_Stat119: 4.53945580e-06 + syst_JES_EtaIntercalibration_Stat12: 5.31826185e-08 + syst_JES_EtaIntercalibration_Stat120: 5.47942680e-08 + syst_JES_EtaIntercalibration_Stat121: 4.69991987e-15 syst_JES_EtaIntercalibration_Stat122: 0.0 - syst_JES_EtaIntercalibration_Stat123: 1.7026059438402064e-17 - syst_JES_EtaIntercalibration_Stat124: 1.7026059438402064e-17 - syst_JES_EtaIntercalibration_Stat125: 1.7026059438402064e-17 + syst_JES_EtaIntercalibration_Stat123: 1.70260594e-17 + syst_JES_EtaIntercalibration_Stat124: 1.70260594e-17 + syst_JES_EtaIntercalibration_Stat125: 1.70260594e-17 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 6.326315574645325e-16 - syst_JES_EtaIntercalibration_Stat129: 6.23369499735109e-16 + syst_JES_EtaIntercalibration_Stat128: 6.32631557e-16 + syst_JES_EtaIntercalibration_Stat129: 6.23369500e-16 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 2.967003033365487e-17 + syst_JES_EtaIntercalibration_Stat130: 2.96700303e-17 syst_JES_EtaIntercalibration_Stat131: 0.0 syst_JES_EtaIntercalibration_Stat132: 0.0 - syst_JES_EtaIntercalibration_Stat133: 7.365546059186651e-16 - syst_JES_EtaIntercalibration_Stat134: 9.083023181094498e-06 - syst_JES_EtaIntercalibration_Stat135: 9.408764677150768e-06 - syst_JES_EtaIntercalibration_Stat136: 2.4069079889975023e-05 - syst_JES_EtaIntercalibration_Stat137: 3.0238628854496692e-05 - syst_JES_EtaIntercalibration_Stat138: 1.8217875507314238e-05 - syst_JES_EtaIntercalibration_Stat139: 3.2575091711306046e-10 + syst_JES_EtaIntercalibration_Stat133: 7.36554606e-16 + syst_JES_EtaIntercalibration_Stat134: 9.08302318e-06 + syst_JES_EtaIntercalibration_Stat135: 9.40876468e-06 + syst_JES_EtaIntercalibration_Stat136: 2.40690799e-05 + syst_JES_EtaIntercalibration_Stat137: 3.02386289e-05 + syst_JES_EtaIntercalibration_Stat138: 1.82178755e-05 + syst_JES_EtaIntercalibration_Stat139: 3.25750917e-10 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 4.699919866338149e-15 + syst_JES_EtaIntercalibration_Stat140: 4.69991987e-15 syst_JES_EtaIntercalibration_Stat141: 0.0 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 1.7026059438402064e-17 - syst_JES_EtaIntercalibration_Stat144: 1.7026059438402064e-17 + syst_JES_EtaIntercalibration_Stat143: 1.70260594e-17 + syst_JES_EtaIntercalibration_Stat144: 1.70260594e-17 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 2.967003033365487e-17 - syst_JES_EtaIntercalibration_Stat148: 2.967003033365487e-17 + syst_JES_EtaIntercalibration_Stat147: 2.96700303e-17 + syst_JES_EtaIntercalibration_Stat148: 2.96700303e-17 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 syst_JES_EtaIntercalibration_Stat150: 0.0 syst_JES_EtaIntercalibration_Stat151: 0.0 - syst_JES_EtaIntercalibration_Stat152: 3.7490239767252196e-06 - syst_JES_EtaIntercalibration_Stat153: 1.6585493081304517e-05 - syst_JES_EtaIntercalibration_Stat154: 1.759526285680325e-05 - syst_JES_EtaIntercalibration_Stat155: 3.2119030184611736e-05 - syst_JES_EtaIntercalibration_Stat156: 1.6175902409139344e-05 - syst_JES_EtaIntercalibration_Stat157: 1.0184117564497181e-07 + syst_JES_EtaIntercalibration_Stat152: 3.74902398e-06 + syst_JES_EtaIntercalibration_Stat153: 1.65854931e-05 + syst_JES_EtaIntercalibration_Stat154: 1.75952629e-05 + syst_JES_EtaIntercalibration_Stat155: 3.21190302e-05 + syst_JES_EtaIntercalibration_Stat156: 1.61759024e-05 + syst_JES_EtaIntercalibration_Stat157: 1.01841176e-07 syst_JES_EtaIntercalibration_Stat158: 0.0 syst_JES_EtaIntercalibration_Stat159: 0.0 syst_JES_EtaIntercalibration_Stat16: 0.0 @@ -7270,18 +7270,18 @@ bins: syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 2.967003033365487e-17 + syst_JES_EtaIntercalibration_Stat165: 2.96700303e-17 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 3.377911299901168e-05 - syst_JES_EtaIntercalibration_Stat171: 5.9340529783614166e-05 - syst_JES_EtaIntercalibration_Stat172: 5.656320601769316e-05 - syst_JES_EtaIntercalibration_Stat173: 7.590743886471207e-05 - syst_JES_EtaIntercalibration_Stat174: 3.756045094244743e-05 - syst_JES_EtaIntercalibration_Stat175: 2.019742109156513e-07 + syst_JES_EtaIntercalibration_Stat170: 3.37791130e-05 + syst_JES_EtaIntercalibration_Stat171: 5.93405298e-05 + syst_JES_EtaIntercalibration_Stat172: 5.65632060e-05 + syst_JES_EtaIntercalibration_Stat173: 7.59074389e-05 + syst_JES_EtaIntercalibration_Stat174: 3.75604509e-05 + syst_JES_EtaIntercalibration_Stat175: 2.01974211e-07 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 syst_JES_EtaIntercalibration_Stat178: 0.0 @@ -7294,14 +7294,14 @@ bins: syst_JES_EtaIntercalibration_Stat184: 0.0 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 - syst_JES_EtaIntercalibration_Stat187: 7.018814443159186e-06 - syst_JES_EtaIntercalibration_Stat188: 0.00028570288762978926 - syst_JES_EtaIntercalibration_Stat189: 0.0003745304360128827 + syst_JES_EtaIntercalibration_Stat187: 7.01881444e-06 + syst_JES_EtaIntercalibration_Stat188: 2.85702888e-04 + syst_JES_EtaIntercalibration_Stat189: 3.74530436e-04 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 0.000385912775118938 - syst_JES_EtaIntercalibration_Stat191: 0.00024458263940844207 - syst_JES_EtaIntercalibration_Stat192: 7.566081746848893e-06 - syst_JES_EtaIntercalibration_Stat193: 5.566811295526372e-08 + syst_JES_EtaIntercalibration_Stat190: 3.85912775e-04 + syst_JES_EtaIntercalibration_Stat191: 2.44582639e-04 + syst_JES_EtaIntercalibration_Stat192: 7.56608175e-06 + syst_JES_EtaIntercalibration_Stat193: 5.56681130e-08 syst_JES_EtaIntercalibration_Stat194: 0.0 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 @@ -7312,13 +7312,13 @@ bins: syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 syst_JES_EtaIntercalibration_Stat201: 0.0 - syst_JES_EtaIntercalibration_Stat202: 5.0394079017281385e-06 - syst_JES_EtaIntercalibration_Stat203: 0.0005295510622215765 - syst_JES_EtaIntercalibration_Stat204: 0.0008280152459345178 - syst_JES_EtaIntercalibration_Stat205: 0.0007080364450365532 - syst_JES_EtaIntercalibration_Stat206: 0.0005971396549384406 - syst_JES_EtaIntercalibration_Stat207: 1.1133024600260255e-05 - syst_JES_EtaIntercalibration_Stat208: 5.566811295526372e-08 + syst_JES_EtaIntercalibration_Stat202: 5.03940790e-06 + syst_JES_EtaIntercalibration_Stat203: 5.29551062e-04 + syst_JES_EtaIntercalibration_Stat204: 8.28015246e-04 + syst_JES_EtaIntercalibration_Stat205: 7.08036445e-04 + syst_JES_EtaIntercalibration_Stat206: 5.97139655e-04 + syst_JES_EtaIntercalibration_Stat207: 1.11330246e-05 + syst_JES_EtaIntercalibration_Stat208: 5.56681130e-08 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 @@ -7326,38 +7326,38 @@ bins: syst_JES_EtaIntercalibration_Stat212: 0.0 syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 - syst_JES_EtaIntercalibration_Stat215: 5.603250806618868e-06 - syst_JES_EtaIntercalibration_Stat216: 0.00043161816458531953 - syst_JES_EtaIntercalibration_Stat217: 0.0005425067073318081 - syst_JES_EtaIntercalibration_Stat218: 0.0006191589194221464 - syst_JES_EtaIntercalibration_Stat219: 0.0004694719879822437 + syst_JES_EtaIntercalibration_Stat215: 5.60325081e-06 + syst_JES_EtaIntercalibration_Stat216: 4.31618165e-04 + syst_JES_EtaIntercalibration_Stat217: 5.42506707e-04 + syst_JES_EtaIntercalibration_Stat218: 6.19158919e-04 + syst_JES_EtaIntercalibration_Stat219: 4.69471988e-04 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 1.0944146197853901e-05 + syst_JES_EtaIntercalibration_Stat220: 1.09441462e-05 syst_JES_EtaIntercalibration_Stat221: 0.0 syst_JES_EtaIntercalibration_Stat222: 0.0 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 - syst_JES_EtaIntercalibration_Stat227: 7.904691818787119e-06 - syst_JES_EtaIntercalibration_Stat228: 0.0002899680456533099 - syst_JES_EtaIntercalibration_Stat229: 0.00036085117084471265 + syst_JES_EtaIntercalibration_Stat227: 7.90469182e-06 + syst_JES_EtaIntercalibration_Stat228: 2.89968046e-04 + syst_JES_EtaIntercalibration_Stat229: 3.60851171e-04 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 0.0004311483075172626 - syst_JES_EtaIntercalibration_Stat231: 0.00035776112812881166 - syst_JES_EtaIntercalibration_Stat232: 9.595484226953184e-06 + syst_JES_EtaIntercalibration_Stat230: 4.31148308e-04 + syst_JES_EtaIntercalibration_Stat231: 3.57761128e-04 + syst_JES_EtaIntercalibration_Stat232: 9.59548423e-06 syst_JES_EtaIntercalibration_Stat233: 0.0 syst_JES_EtaIntercalibration_Stat234: 0.0 syst_JES_EtaIntercalibration_Stat235: 0.0 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 - syst_JES_EtaIntercalibration_Stat238: 1.665366851477483e-07 - syst_JES_EtaIntercalibration_Stat239: 3.254581378226699e-05 + syst_JES_EtaIntercalibration_Stat238: 1.66536685e-07 + syst_JES_EtaIntercalibration_Stat239: 3.25458138e-05 syst_JES_EtaIntercalibration_Stat24: 0.0 - syst_JES_EtaIntercalibration_Stat240: 3.534935077197317e-05 - syst_JES_EtaIntercalibration_Stat241: 3.344101449941374e-05 - syst_JES_EtaIntercalibration_Stat242: 3.166469958802704e-05 - syst_JES_EtaIntercalibration_Stat243: 8.390054111863642e-08 + syst_JES_EtaIntercalibration_Stat240: 3.53493508e-05 + syst_JES_EtaIntercalibration_Stat241: 3.34410145e-05 + syst_JES_EtaIntercalibration_Stat242: 3.16646996e-05 + syst_JES_EtaIntercalibration_Stat243: 8.39005411e-08 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 syst_JES_EtaIntercalibration_Stat25: 0.0 @@ -7366,12 +7366,12 @@ bins: syst_JES_EtaIntercalibration_Stat28: 0.0 syst_JES_EtaIntercalibration_Stat29: 0.0 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 7.11499687051934e-16 - syst_JES_EtaIntercalibration_Stat31: 8.616035515247137e-06 - syst_JES_EtaIntercalibration_Stat32: 8.781790419242537e-12 - syst_JES_EtaIntercalibration_Stat33: 5.322594442796301e-08 - syst_JES_EtaIntercalibration_Stat34: 5.511388147964656e-08 - syst_JES_EtaIntercalibration_Stat35: 4.593097931449617e-15 + syst_JES_EtaIntercalibration_Stat30: 7.11499687e-16 + syst_JES_EtaIntercalibration_Stat31: 8.61603552e-06 + syst_JES_EtaIntercalibration_Stat32: 8.78179042e-12 + syst_JES_EtaIntercalibration_Stat33: 5.32259444e-08 + syst_JES_EtaIntercalibration_Stat34: 5.51138815e-08 + syst_JES_EtaIntercalibration_Stat35: 4.59309793e-15 syst_JES_EtaIntercalibration_Stat36: 0.0 syst_JES_EtaIntercalibration_Stat37: 0.0 syst_JES_EtaIntercalibration_Stat38: 0.0 @@ -7390,220 +7390,220 @@ bins: syst_JES_EtaIntercalibration_Stat5: 0.0 syst_JES_EtaIntercalibration_Stat50: 0.0 syst_JES_EtaIntercalibration_Stat51: 0.0 - syst_JES_EtaIntercalibration_Stat52: 3.752609014815559e-15 - syst_JES_EtaIntercalibration_Stat53: 2.2739373348680917e-11 - syst_JES_EtaIntercalibration_Stat54: 4.79030747470773e-06 - syst_JES_EtaIntercalibration_Stat55: 5.341204596738337e-08 - syst_JES_EtaIntercalibration_Stat56: 5.5157992577353745e-08 - syst_JES_EtaIntercalibration_Stat57: 3.3977613817777136e-14 + syst_JES_EtaIntercalibration_Stat52: 3.75260901e-15 + syst_JES_EtaIntercalibration_Stat53: 2.27393733e-11 + syst_JES_EtaIntercalibration_Stat54: 4.79030747e-06 + syst_JES_EtaIntercalibration_Stat55: 5.34120460e-08 + syst_JES_EtaIntercalibration_Stat56: 5.51579926e-08 + syst_JES_EtaIntercalibration_Stat57: 3.39776138e-14 syst_JES_EtaIntercalibration_Stat58: 0.0 syst_JES_EtaIntercalibration_Stat59: 0.0 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 1.7026059438402064e-17 - syst_JES_EtaIntercalibration_Stat62: 1.7026059438402064e-17 + syst_JES_EtaIntercalibration_Stat61: 1.70260594e-17 + syst_JES_EtaIntercalibration_Stat62: 1.70260594e-17 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 6.326315574645325e-16 - syst_JES_EtaIntercalibration_Stat69: 6.326315574645325e-16 + syst_JES_EtaIntercalibration_Stat68: 6.32631557e-16 + syst_JES_EtaIntercalibration_Stat69: 6.32631557e-16 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 5.236855616684501e-16 - syst_JES_EtaIntercalibration_Stat71: 5.236855616684501e-16 + syst_JES_EtaIntercalibration_Stat70: 5.23685562e-16 + syst_JES_EtaIntercalibration_Stat71: 5.23685562e-16 syst_JES_EtaIntercalibration_Stat72: 0.0 syst_JES_EtaIntercalibration_Stat73: 0.0 - syst_JES_EtaIntercalibration_Stat74: 1.3487426582869693e-11 - syst_JES_EtaIntercalibration_Stat75: 1.982702238738838e-05 - syst_JES_EtaIntercalibration_Stat76: 1.4229459194912327e-06 - syst_JES_EtaIntercalibration_Stat77: 1.5601483102577138e-06 - syst_JES_EtaIntercalibration_Stat78: 7.966152941964945e-07 - syst_JES_EtaIntercalibration_Stat79: 3.6191276227842535e-14 + syst_JES_EtaIntercalibration_Stat74: 1.34874266e-11 + syst_JES_EtaIntercalibration_Stat75: 1.98270224e-05 + syst_JES_EtaIntercalibration_Stat76: 1.42294592e-06 + syst_JES_EtaIntercalibration_Stat77: 1.56014831e-06 + syst_JES_EtaIntercalibration_Stat78: 7.96615294e-07 + syst_JES_EtaIntercalibration_Stat79: 3.61912762e-14 syst_JES_EtaIntercalibration_Stat8: 0.0 syst_JES_EtaIntercalibration_Stat80: 0.0 syst_JES_EtaIntercalibration_Stat81: 0.0 - syst_JES_EtaIntercalibration_Stat82: 1.7026059438402064e-17 - syst_JES_EtaIntercalibration_Stat83: 1.7026059438402064e-17 - syst_JES_EtaIntercalibration_Stat84: 1.7026059438402064e-17 + syst_JES_EtaIntercalibration_Stat82: 1.70260594e-17 + syst_JES_EtaIntercalibration_Stat83: 1.70260594e-17 + syst_JES_EtaIntercalibration_Stat84: 1.70260594e-17 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 6.326315574645325e-16 - syst_JES_EtaIntercalibration_Stat9: 1.350509762209041e-11 - syst_JES_EtaIntercalibration_Stat90: 6.326315574645325e-16 - syst_JES_EtaIntercalibration_Stat91: 5.236855616684501e-16 - syst_JES_EtaIntercalibration_Stat92: 5.236855616684501e-16 + syst_JES_EtaIntercalibration_Stat89: 6.32631557e-16 + syst_JES_EtaIntercalibration_Stat9: 1.35050976e-11 + syst_JES_EtaIntercalibration_Stat90: 6.32631557e-16 + syst_JES_EtaIntercalibration_Stat91: 5.23685562e-16 + syst_JES_EtaIntercalibration_Stat92: 5.23685562e-16 syst_JES_EtaIntercalibration_Stat93: 0.0 syst_JES_EtaIntercalibration_Stat94: 0.0 - syst_JES_EtaIntercalibration_Stat95: 1.3493368405138875e-11 - syst_JES_EtaIntercalibration_Stat96: 2.0405277062563988e-05 - syst_JES_EtaIntercalibration_Stat97: 1.4207690980592166e-06 - syst_JES_EtaIntercalibration_Stat98: 1.3917285322576383e-06 - syst_JES_EtaIntercalibration_Stat99: 1.8203771156548853e-06 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.006568109678590942 - syst_JES_Flavour_Comp: 0.020304247708299857 - syst_JES_Gjet_Generator: 0.029675772525749013 - syst_JES_Gjet_OOC: 0.02391078574618576 - syst_JES_Gjet_Purity: 0.006424590726264203 - syst_JES_Gjet_Stat1: 6.136661368366353e-05 - syst_JES_Gjet_Stat10: 0.0006337364909802811 - syst_JES_Gjet_Stat11: 0.0008013324590954743 - syst_JES_Gjet_Stat12: 0.0026288645838079983 - syst_JES_Gjet_Stat13: 0.00712630956386263 - syst_JES_Gjet_Stat14: 0.009001251732398111 - syst_JES_Gjet_Stat15: 0.001258119814445349 - syst_JES_Gjet_Stat2: 3.873977414428226e-05 - syst_JES_Gjet_Stat3: 5.050619442207065e-05 - syst_JES_Gjet_Stat4: 9.228464376590507e-05 - syst_JES_Gjet_Stat5: 5.9962856836545075e-05 - syst_JES_Gjet_Stat6: 0.00023706443744264975 - syst_JES_Gjet_Stat7: 0.0003115626221163251 - syst_JES_Gjet_Stat8: 0.00018495596097449791 - syst_JES_Gjet_Stat9: 0.000355150063353507 - syst_JES_Gjet_Veto: 0.021147852727877597 - syst_JES_Gjet_dPhi: 0.0021970056895693284 - syst_JES_LArESZee: 0.04479070774167338 - syst_JES_LArEsmear: 0.003539881459879695 - syst_JES_LAr_JVT: 0.00444482246552098 - syst_JES_MJB_Alpha: 0.00025851027058900383 - syst_JES_MJB_Asym: 0.001742146090315046 - syst_JES_MJB_Beta: 0.00020827688301873544 - syst_JES_MJB_Stat1: 7.028419648114362e-05 - syst_JES_MJB_Stat10: 1.2044746640340758e-05 - syst_JES_MJB_Stat11: 9.049361754382183e-05 - syst_JES_MJB_Stat12: 9.323555370672714e-05 - syst_JES_MJB_Stat13: 8.37839668433048e-05 - syst_JES_MJB_Stat14: 3.4092264518509186e-05 - syst_JES_MJB_Stat15: 1.0843028762758125e-05 - syst_JES_MJB_Stat16: 9.078002753910136e-07 - syst_JES_MJB_Stat2: 0.0001800175371318028 - syst_JES_MJB_Stat3: 0.0005285222488221285 - syst_JES_MJB_Stat4: 0.0002629788346996769 - syst_JES_MJB_Stat5: 0.00021295053416227913 - syst_JES_MJB_Stat6: 0.00020469870541847595 - syst_JES_MJB_Stat7: 0.00011267283823087089 - syst_JES_MJB_Stat8: 3.0202040907859192e-05 - syst_JES_MJB_Stat9: 2.9626017282112018e-05 - syst_JES_MJB_Threshold: 0.0022496839778066604 - syst_JES_Pileup_MuOffset: 0.005064257176526484 - syst_JES_Pileup_NPVOffset: 0.005207071417793307 - syst_JES_Pileup_Pt_term: 0.004073936763132191 - syst_JES_PunchThrough_MC15: 0.0013900921003660153 - syst_JES_SingleParticle_HighPt: 7.827024769987637e-29 - syst_JES_Zjet_MC: 0.016931629425427433 - syst_JES_Zjet_MuScale: 0.0010625587371999724 - syst_JES_Zjet_MuSmearID: 0.00023792044888995987 - syst_JES_Zjet_MuSmearMS: 0.004847461474834018 - syst_JES_Zjet_OOC: 0.007992398951503861 - syst_JES_Zjet_Stat1: 0.00040499484774500526 - syst_JES_Zjet_Stat10: 0.0006496661815886678 - syst_JES_Zjet_Stat11: 0.0008612646326768561 - syst_JES_Zjet_Stat12: 0.002846307608112658 - syst_JES_Zjet_Stat13: 0.005289565766676883 - syst_JES_Zjet_Stat2: 2.1658214954146153e-42 - syst_JES_Zjet_Stat3: 0.00013567431840624813 - syst_JES_Zjet_Stat4: 0.00014102790787641996 - syst_JES_Zjet_Stat5: 0.00010834752454486441 - syst_JES_Zjet_Stat6: 0.00027747368794175784 - syst_JES_Zjet_Stat7: 0.00016653001981624816 - syst_JES_Zjet_Stat8: 0.0002206768678407413 - syst_JES_Zjet_Stat9: 0.00035525203377320734 - syst_JES_Zjet_Veto: 0.0017221881430319976 - syst_JES_Zjet_dPhi: 0.0014253397024920058 - syst_PRW: 0.0008221 - syst_Unfolding_bias: 0.00013496 - syst_cleaning: 0.008311245800119257 + syst_JES_EtaIntercalibration_Stat95: 1.34933684e-11 + syst_JES_EtaIntercalibration_Stat96: 2.04052771e-05 + syst_JES_EtaIntercalibration_Stat97: 1.42076910e-06 + syst_JES_EtaIntercalibration_Stat98: 1.39172853e-06 + syst_JES_EtaIntercalibration_Stat99: 1.82037712e-06 + syst_JES_EtaIntercalibration_TotalStat_MJB: 6.56810968e-03 + syst_JES_Flavour_Comp: 2.03042477e-02 + syst_JES_Gjet_Generator: 2.96757725e-02 + syst_JES_Gjet_OOC: 2.39107857e-02 + syst_JES_Gjet_Purity: 6.42459073e-03 + syst_JES_Gjet_Stat1: 6.13666137e-05 + syst_JES_Gjet_Stat10: 6.33736491e-04 + syst_JES_Gjet_Stat11: 8.01332459e-04 + syst_JES_Gjet_Stat12: 2.62886458e-03 + syst_JES_Gjet_Stat13: 7.12630956e-03 + syst_JES_Gjet_Stat14: 9.00125173e-03 + syst_JES_Gjet_Stat15: 1.25811981e-03 + syst_JES_Gjet_Stat2: 3.87397741e-05 + syst_JES_Gjet_Stat3: 5.05061944e-05 + syst_JES_Gjet_Stat4: 9.22846438e-05 + syst_JES_Gjet_Stat5: 5.99628568e-05 + syst_JES_Gjet_Stat6: 2.37064437e-04 + syst_JES_Gjet_Stat7: 3.11562622e-04 + syst_JES_Gjet_Stat8: 1.84955961e-04 + syst_JES_Gjet_Stat9: 3.55150063e-04 + syst_JES_Gjet_Veto: 2.11478527e-02 + syst_JES_Gjet_dPhi: 2.19700569e-03 + syst_JES_LArESZee: 4.47907077e-02 + syst_JES_LArEsmear: 3.53988146e-03 + syst_JES_LAr_JVT: 4.44482247e-03 + syst_JES_MJB_Alpha: 2.58510271e-04 + syst_JES_MJB_Asym: 1.74214609e-03 + syst_JES_MJB_Beta: 2.08276883e-04 + syst_JES_MJB_Stat1: 7.02841965e-05 + syst_JES_MJB_Stat10: 1.20447466e-05 + syst_JES_MJB_Stat11: 9.04936175e-05 + syst_JES_MJB_Stat12: 9.32355537e-05 + syst_JES_MJB_Stat13: 8.37839668e-05 + syst_JES_MJB_Stat14: 3.40922645e-05 + syst_JES_MJB_Stat15: 1.08430288e-05 + syst_JES_MJB_Stat16: 9.07800275e-07 + syst_JES_MJB_Stat2: 1.80017537e-04 + syst_JES_MJB_Stat3: 5.28522249e-04 + syst_JES_MJB_Stat4: 2.62978835e-04 + syst_JES_MJB_Stat5: 2.12950534e-04 + syst_JES_MJB_Stat6: 2.04698705e-04 + syst_JES_MJB_Stat7: 1.12672838e-04 + syst_JES_MJB_Stat8: 3.02020409e-05 + syst_JES_MJB_Stat9: 2.96260173e-05 + syst_JES_MJB_Threshold: 2.24968398e-03 + syst_JES_Pileup_MuOffset: 5.06425718e-03 + syst_JES_Pileup_NPVOffset: 5.20707142e-03 + syst_JES_Pileup_Pt_term: 4.07393676e-03 + syst_JES_PunchThrough_MC15: 1.39009210e-03 + syst_JES_SingleParticle_HighPt: 7.82702477e-29 + syst_JES_Zjet_MC: 1.69316294e-02 + syst_JES_Zjet_MuScale: 1.06255874e-03 + syst_JES_Zjet_MuSmearID: 2.37920449e-04 + syst_JES_Zjet_MuSmearMS: 4.84746147e-03 + syst_JES_Zjet_OOC: 7.99239895e-03 + syst_JES_Zjet_Stat1: 4.04994848e-04 + syst_JES_Zjet_Stat10: 6.49666182e-04 + syst_JES_Zjet_Stat11: 8.61264633e-04 + syst_JES_Zjet_Stat12: 2.84630761e-03 + syst_JES_Zjet_Stat13: 5.28956577e-03 + syst_JES_Zjet_Stat2: 2.16582150e-42 + syst_JES_Zjet_Stat3: 1.35674318e-04 + syst_JES_Zjet_Stat4: 1.41027908e-04 + syst_JES_Zjet_Stat5: 1.08347525e-04 + syst_JES_Zjet_Stat6: 2.77473688e-04 + syst_JES_Zjet_Stat7: 1.66530020e-04 + syst_JES_Zjet_Stat8: 2.20676868e-04 + syst_JES_Zjet_Stat9: 3.55252034e-04 + syst_JES_Zjet_Veto: 1.72218814e-03 + syst_JES_Zjet_dPhi: 1.42533970e-03 + syst_PRW: 8.22100000e-04 + syst_Unfolding_bias: 1.34960000e-04 + syst_cleaning: 8.31124580e-03 syst_lumi: 0.0313 - syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0038161557253340696 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0077149196204497165 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 0.0007051618112178226 + syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 3.81615573e-03 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 7.71491962e-03 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 7.05161811e-04 syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 0.008432719845933457 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0027416870718592235 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.005140263028289506 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 8.43271985e-03 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 2.74168707e-03 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 5.14026303e-03 - stat: 0.003685 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.0019443293831035934 - syst_JER_NP1: 0.00021075062870606103 - syst_JER_NP2: 0.000471168293500316 - syst_JER_NP3: 0.0004191841689520252 - syst_JER_NP4: 0.0002493136584706101 - syst_JER_NP5: 0.00015979775488723238 - syst_JER_NP6: 0.00033784080570588277 - syst_JER_NP7: 0.0001725493538856854 - syst_JER_NP8: 0.0005121065782627676 - syst_JES_EtaIntercalibration_Modelling: 0.008924482323922213 + syst_JER_NP0: 1.94432938e-03 + syst_JER_NP1: 2.10750629e-04 + syst_JER_NP2: 4.71168294e-04 + syst_JER_NP3: 4.19184169e-04 + syst_JER_NP4: 2.49313658e-04 + syst_JER_NP5: 1.59797755e-04 + syst_JER_NP6: 3.37840806e-04 + syst_JER_NP7: 1.72549354e-04 + syst_JER_NP8: 5.12106578e-04 + syst_JES_EtaIntercalibration_Modelling: 8.92448232e-03 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 - syst_JES_EtaIntercalibration_Stat10: 1.0199881451762073e-14 - syst_JES_EtaIntercalibration_Stat100: 9.48872355324993e-13 + syst_JES_EtaIntercalibration_Stat10: 1.01998815e-14 + syst_JES_EtaIntercalibration_Stat100: 9.48872355e-13 syst_JES_EtaIntercalibration_Stat101: 0.0 syst_JES_EtaIntercalibration_Stat102: 0.0 - syst_JES_EtaIntercalibration_Stat103: 3.512599037749683e-18 - syst_JES_EtaIntercalibration_Stat104: 3.512599037749683e-18 - syst_JES_EtaIntercalibration_Stat105: 3.512599037749683e-18 + syst_JES_EtaIntercalibration_Stat103: 3.51259904e-18 + syst_JES_EtaIntercalibration_Stat104: 3.51259904e-18 + syst_JES_EtaIntercalibration_Stat105: 3.51259904e-18 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 1.189226084476791e-16 - syst_JES_EtaIntercalibration_Stat11: 9.50982495895692e-13 - syst_JES_EtaIntercalibration_Stat110: 1.1705767966583825e-16 - syst_JES_EtaIntercalibration_Stat111: 9.985272905634576e-17 - syst_JES_EtaIntercalibration_Stat112: 9.985272905634576e-17 + syst_JES_EtaIntercalibration_Stat109: 1.18922608e-16 + syst_JES_EtaIntercalibration_Stat11: 9.50982496e-13 + syst_JES_EtaIntercalibration_Stat110: 1.17057680e-16 + syst_JES_EtaIntercalibration_Stat111: 9.98527291e-17 + syst_JES_EtaIntercalibration_Stat112: 9.98527291e-17 syst_JES_EtaIntercalibration_Stat113: 0.0 - syst_JES_EtaIntercalibration_Stat114: 1.3752483412096887e-16 - syst_JES_EtaIntercalibration_Stat115: 5.592005321885879e-11 - syst_JES_EtaIntercalibration_Stat116: 7.203020819073065e-06 - syst_JES_EtaIntercalibration_Stat117: 1.416831261186384e-05 - syst_JES_EtaIntercalibration_Stat118: 3.0320655792380217e-06 - syst_JES_EtaIntercalibration_Stat119: 4.011041723480323e-06 - syst_JES_EtaIntercalibration_Stat12: 9.140897875751517e-09 - syst_JES_EtaIntercalibration_Stat120: 9.371377091855533e-09 - syst_JES_EtaIntercalibration_Stat121: 8.138906744766155e-16 + syst_JES_EtaIntercalibration_Stat114: 1.37524834e-16 + syst_JES_EtaIntercalibration_Stat115: 5.59200532e-11 + syst_JES_EtaIntercalibration_Stat116: 7.20302082e-06 + syst_JES_EtaIntercalibration_Stat117: 1.41683126e-05 + syst_JES_EtaIntercalibration_Stat118: 3.03206558e-06 + syst_JES_EtaIntercalibration_Stat119: 4.01104172e-06 + syst_JES_EtaIntercalibration_Stat12: 9.14089788e-09 + syst_JES_EtaIntercalibration_Stat120: 9.37137709e-09 + syst_JES_EtaIntercalibration_Stat121: 8.13890674e-16 syst_JES_EtaIntercalibration_Stat122: 0.0 - syst_JES_EtaIntercalibration_Stat123: 3.512599037749683e-18 - syst_JES_EtaIntercalibration_Stat124: 3.512599037749683e-18 - syst_JES_EtaIntercalibration_Stat125: 3.512599037749683e-18 + syst_JES_EtaIntercalibration_Stat123: 3.51259904e-18 + syst_JES_EtaIntercalibration_Stat124: 3.51259904e-18 + syst_JES_EtaIntercalibration_Stat125: 3.51259904e-18 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 1.189226084476791e-16 - syst_JES_EtaIntercalibration_Stat129: 1.1705767966583825e-16 + syst_JES_EtaIntercalibration_Stat128: 1.18922608e-16 + syst_JES_EtaIntercalibration_Stat129: 1.17057680e-16 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 6.0058861752450815e-18 + syst_JES_EtaIntercalibration_Stat130: 6.00588618e-18 syst_JES_EtaIntercalibration_Stat131: 0.0 syst_JES_EtaIntercalibration_Stat132: 0.0 - syst_JES_EtaIntercalibration_Stat133: 1.3752483412096887e-16 - syst_JES_EtaIntercalibration_Stat134: 5.900225621915402e-06 - syst_JES_EtaIntercalibration_Stat135: 6.725444446280111e-06 - syst_JES_EtaIntercalibration_Stat136: 1.4310970503428481e-05 - syst_JES_EtaIntercalibration_Stat137: 1.629562919159613e-05 - syst_JES_EtaIntercalibration_Stat138: 9.354443369329893e-06 - syst_JES_EtaIntercalibration_Stat139: 4.4429394737605865e-11 + syst_JES_EtaIntercalibration_Stat133: 1.37524834e-16 + syst_JES_EtaIntercalibration_Stat134: 5.90022562e-06 + syst_JES_EtaIntercalibration_Stat135: 6.72544445e-06 + syst_JES_EtaIntercalibration_Stat136: 1.43109705e-05 + syst_JES_EtaIntercalibration_Stat137: 1.62956292e-05 + syst_JES_EtaIntercalibration_Stat138: 9.35444337e-06 + syst_JES_EtaIntercalibration_Stat139: 4.44293947e-11 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 8.138906744766155e-16 + syst_JES_EtaIntercalibration_Stat140: 8.13890674e-16 syst_JES_EtaIntercalibration_Stat141: 0.0 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 3.512599037749683e-18 - syst_JES_EtaIntercalibration_Stat144: 3.512599037749683e-18 + syst_JES_EtaIntercalibration_Stat143: 3.51259904e-18 + syst_JES_EtaIntercalibration_Stat144: 3.51259904e-18 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 6.0058861752450815e-18 - syst_JES_EtaIntercalibration_Stat148: 6.0058861752450815e-18 + syst_JES_EtaIntercalibration_Stat147: 6.00588618e-18 + syst_JES_EtaIntercalibration_Stat148: 6.00588618e-18 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 syst_JES_EtaIntercalibration_Stat150: 0.0 syst_JES_EtaIntercalibration_Stat151: 0.0 - syst_JES_EtaIntercalibration_Stat152: 2.43439741069537e-06 - syst_JES_EtaIntercalibration_Stat153: 1.0740488105761303e-05 - syst_JES_EtaIntercalibration_Stat154: 7.558657161162953e-06 - syst_JES_EtaIntercalibration_Stat155: 1.60599027627816e-05 - syst_JES_EtaIntercalibration_Stat156: 6.801816228037921e-06 - syst_JES_EtaIntercalibration_Stat157: 1.741666330701722e-08 + syst_JES_EtaIntercalibration_Stat152: 2.43439741e-06 + syst_JES_EtaIntercalibration_Stat153: 1.07404881e-05 + syst_JES_EtaIntercalibration_Stat154: 7.55865716e-06 + syst_JES_EtaIntercalibration_Stat155: 1.60599028e-05 + syst_JES_EtaIntercalibration_Stat156: 6.80181623e-06 + syst_JES_EtaIntercalibration_Stat157: 1.74166633e-08 syst_JES_EtaIntercalibration_Stat158: 0.0 syst_JES_EtaIntercalibration_Stat159: 0.0 syst_JES_EtaIntercalibration_Stat16: 0.0 @@ -7612,18 +7612,18 @@ bins: syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 6.0058861752450815e-18 + syst_JES_EtaIntercalibration_Stat165: 6.00588618e-18 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 2.2679851741137988e-05 - syst_JES_EtaIntercalibration_Stat171: 2.3543731649846846e-05 - syst_JES_EtaIntercalibration_Stat172: 2.1914499195737966e-05 - syst_JES_EtaIntercalibration_Stat173: 3.1828026564648966e-05 - syst_JES_EtaIntercalibration_Stat174: 1.7755405338938336e-05 - syst_JES_EtaIntercalibration_Stat175: 2.3333291130914214e-08 + syst_JES_EtaIntercalibration_Stat170: 2.26798517e-05 + syst_JES_EtaIntercalibration_Stat171: 2.35437316e-05 + syst_JES_EtaIntercalibration_Stat172: 2.19144992e-05 + syst_JES_EtaIntercalibration_Stat173: 3.18280266e-05 + syst_JES_EtaIntercalibration_Stat174: 1.77554053e-05 + syst_JES_EtaIntercalibration_Stat175: 2.33332911e-08 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 syst_JES_EtaIntercalibration_Stat178: 0.0 @@ -7636,14 +7636,14 @@ bins: syst_JES_EtaIntercalibration_Stat184: 0.0 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 - syst_JES_EtaIntercalibration_Stat187: 1.344332372406467e-06 - syst_JES_EtaIntercalibration_Stat188: 0.00012378248290852788 - syst_JES_EtaIntercalibration_Stat189: 0.00015477540986862223 + syst_JES_EtaIntercalibration_Stat187: 1.34433237e-06 + syst_JES_EtaIntercalibration_Stat188: 1.23782483e-04 + syst_JES_EtaIntercalibration_Stat189: 1.54775410e-04 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 0.00016005716752148279 - syst_JES_EtaIntercalibration_Stat191: 0.00010364570070678283 - syst_JES_EtaIntercalibration_Stat192: 5.2887210883161535e-06 - syst_JES_EtaIntercalibration_Stat193: 9.50376278113043e-09 + syst_JES_EtaIntercalibration_Stat190: 1.60057168e-04 + syst_JES_EtaIntercalibration_Stat191: 1.03645701e-04 + syst_JES_EtaIntercalibration_Stat192: 5.28872109e-06 + syst_JES_EtaIntercalibration_Stat193: 9.50376278e-09 syst_JES_EtaIntercalibration_Stat194: 0.0 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 @@ -7654,13 +7654,13 @@ bins: syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 syst_JES_EtaIntercalibration_Stat201: 0.0 - syst_JES_EtaIntercalibration_Stat202: 4.938072574395804e-06 - syst_JES_EtaIntercalibration_Stat203: 0.0002335120285981003 - syst_JES_EtaIntercalibration_Stat204: 0.00037903590684129125 - syst_JES_EtaIntercalibration_Stat205: 0.00034161944422851577 - syst_JES_EtaIntercalibration_Stat206: 0.00028174046124048287 - syst_JES_EtaIntercalibration_Stat207: 4.317605586433295e-06 - syst_JES_EtaIntercalibration_Stat208: 9.50376278113043e-09 + syst_JES_EtaIntercalibration_Stat202: 4.93807257e-06 + syst_JES_EtaIntercalibration_Stat203: 2.33512029e-04 + syst_JES_EtaIntercalibration_Stat204: 3.79035907e-04 + syst_JES_EtaIntercalibration_Stat205: 3.41619444e-04 + syst_JES_EtaIntercalibration_Stat206: 2.81740461e-04 + syst_JES_EtaIntercalibration_Stat207: 4.31760559e-06 + syst_JES_EtaIntercalibration_Stat208: 9.50376278e-09 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 @@ -7668,38 +7668,38 @@ bins: syst_JES_EtaIntercalibration_Stat212: 0.0 syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 - syst_JES_EtaIntercalibration_Stat215: 3.5399402537331053e-06 - syst_JES_EtaIntercalibration_Stat216: 0.0002295095368388861 - syst_JES_EtaIntercalibration_Stat217: 0.0002872636071624806 - syst_JES_EtaIntercalibration_Stat218: 0.0003627432252985575 - syst_JES_EtaIntercalibration_Stat219: 0.0002597577910284887 + syst_JES_EtaIntercalibration_Stat215: 3.53994025e-06 + syst_JES_EtaIntercalibration_Stat216: 2.29509537e-04 + syst_JES_EtaIntercalibration_Stat217: 2.87263607e-04 + syst_JES_EtaIntercalibration_Stat218: 3.62743225e-04 + syst_JES_EtaIntercalibration_Stat219: 2.59757791e-04 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 5.634400855459256e-06 + syst_JES_EtaIntercalibration_Stat220: 5.63440086e-06 syst_JES_EtaIntercalibration_Stat221: 0.0 syst_JES_EtaIntercalibration_Stat222: 0.0 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 - syst_JES_EtaIntercalibration_Stat227: 8.433537024878707e-06 - syst_JES_EtaIntercalibration_Stat228: 0.00028398494238251435 - syst_JES_EtaIntercalibration_Stat229: 0.0004124447205384014 + syst_JES_EtaIntercalibration_Stat227: 8.43353702e-06 + syst_JES_EtaIntercalibration_Stat228: 2.83984942e-04 + syst_JES_EtaIntercalibration_Stat229: 4.12444721e-04 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 0.00045038375858816223 - syst_JES_EtaIntercalibration_Stat231: 0.0003733883099402016 - syst_JES_EtaIntercalibration_Stat232: 6.2065784916550445e-06 + syst_JES_EtaIntercalibration_Stat230: 4.50383759e-04 + syst_JES_EtaIntercalibration_Stat231: 3.73388310e-04 + syst_JES_EtaIntercalibration_Stat232: 6.20657849e-06 syst_JES_EtaIntercalibration_Stat233: 0.0 syst_JES_EtaIntercalibration_Stat234: 0.0 syst_JES_EtaIntercalibration_Stat235: 0.0 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 - syst_JES_EtaIntercalibration_Stat238: 4.255648834239397e-07 - syst_JES_EtaIntercalibration_Stat239: 2.0715909266792997e-05 + syst_JES_EtaIntercalibration_Stat238: 4.25564883e-07 + syst_JES_EtaIntercalibration_Stat239: 2.07159093e-05 syst_JES_EtaIntercalibration_Stat24: 0.0 - syst_JES_EtaIntercalibration_Stat240: 2.0982931081000097e-05 - syst_JES_EtaIntercalibration_Stat241: 2.639674743221217e-05 - syst_JES_EtaIntercalibration_Stat242: 1.9384586285758073e-05 - syst_JES_EtaIntercalibration_Stat243: 1.338875274250742e-07 + syst_JES_EtaIntercalibration_Stat240: 2.09829311e-05 + syst_JES_EtaIntercalibration_Stat241: 2.63967474e-05 + syst_JES_EtaIntercalibration_Stat242: 1.93845863e-05 + syst_JES_EtaIntercalibration_Stat243: 1.33887527e-07 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 syst_JES_EtaIntercalibration_Stat25: 0.0 @@ -7708,12 +7708,12 @@ bins: syst_JES_EtaIntercalibration_Stat28: 0.0 syst_JES_EtaIntercalibration_Stat29: 0.0 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 1.3269595045441288e-16 - syst_JES_EtaIntercalibration_Stat31: 5.591637930874995e-06 - syst_JES_EtaIntercalibration_Stat32: 1.2014927246970745e-12 - syst_JES_EtaIntercalibration_Stat33: 9.14956188164765e-09 - syst_JES_EtaIntercalibration_Stat34: 9.42322619445529e-09 - syst_JES_EtaIntercalibration_Stat35: 7.940975987828496e-16 + syst_JES_EtaIntercalibration_Stat30: 1.32695950e-16 + syst_JES_EtaIntercalibration_Stat31: 5.59163793e-06 + syst_JES_EtaIntercalibration_Stat32: 1.20149272e-12 + syst_JES_EtaIntercalibration_Stat33: 9.14956188e-09 + syst_JES_EtaIntercalibration_Stat34: 9.42322619e-09 + syst_JES_EtaIntercalibration_Stat35: 7.94097599e-16 syst_JES_EtaIntercalibration_Stat36: 0.0 syst_JES_EtaIntercalibration_Stat37: 0.0 syst_JES_EtaIntercalibration_Stat38: 0.0 @@ -7732,220 +7732,220 @@ bins: syst_JES_EtaIntercalibration_Stat5: 0.0 syst_JES_EtaIntercalibration_Stat50: 0.0 syst_JES_EtaIntercalibration_Stat51: 0.0 - syst_JES_EtaIntercalibration_Stat52: 5.753266818397613e-16 - syst_JES_EtaIntercalibration_Stat53: 3.1958717505761636e-12 - syst_JES_EtaIntercalibration_Stat54: 2.9114949423824126e-06 - syst_JES_EtaIntercalibration_Stat55: 9.184794231919406e-09 - syst_JES_EtaIntercalibration_Stat56: 9.433730661056734e-09 - syst_JES_EtaIntercalibration_Stat57: 5.307929174357925e-15 + syst_JES_EtaIntercalibration_Stat52: 5.75326682e-16 + syst_JES_EtaIntercalibration_Stat53: 3.19587175e-12 + syst_JES_EtaIntercalibration_Stat54: 2.91149494e-06 + syst_JES_EtaIntercalibration_Stat55: 9.18479423e-09 + syst_JES_EtaIntercalibration_Stat56: 9.43373066e-09 + syst_JES_EtaIntercalibration_Stat57: 5.30792917e-15 syst_JES_EtaIntercalibration_Stat58: 0.0 syst_JES_EtaIntercalibration_Stat59: 0.0 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 3.512599037749683e-18 - syst_JES_EtaIntercalibration_Stat62: 3.512599037749683e-18 + syst_JES_EtaIntercalibration_Stat61: 3.51259904e-18 + syst_JES_EtaIntercalibration_Stat62: 3.51259904e-18 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 1.189226084476791e-16 - syst_JES_EtaIntercalibration_Stat69: 1.189226084476791e-16 + syst_JES_EtaIntercalibration_Stat68: 1.18922608e-16 + syst_JES_EtaIntercalibration_Stat69: 1.18922608e-16 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 9.985272905634576e-17 - syst_JES_EtaIntercalibration_Stat71: 9.985272905634576e-17 + syst_JES_EtaIntercalibration_Stat70: 9.98527291e-17 + syst_JES_EtaIntercalibration_Stat71: 9.98527291e-17 syst_JES_EtaIntercalibration_Stat72: 0.0 syst_JES_EtaIntercalibration_Stat73: 0.0 - syst_JES_EtaIntercalibration_Stat74: 1.907571807789945e-12 - syst_JES_EtaIntercalibration_Stat75: 1.2916292153710368e-05 - syst_JES_EtaIntercalibration_Stat76: 9.221091573518398e-07 - syst_JES_EtaIntercalibration_Stat77: 9.282899587413408e-07 - syst_JES_EtaIntercalibration_Stat78: 3.9834611761728957e-07 - syst_JES_EtaIntercalibration_Stat79: 5.389369814737156e-15 + syst_JES_EtaIntercalibration_Stat74: 1.90757181e-12 + syst_JES_EtaIntercalibration_Stat75: 1.29162922e-05 + syst_JES_EtaIntercalibration_Stat76: 9.22109157e-07 + syst_JES_EtaIntercalibration_Stat77: 9.28289959e-07 + syst_JES_EtaIntercalibration_Stat78: 3.98346118e-07 + syst_JES_EtaIntercalibration_Stat79: 5.38936981e-15 syst_JES_EtaIntercalibration_Stat8: 0.0 syst_JES_EtaIntercalibration_Stat80: 0.0 syst_JES_EtaIntercalibration_Stat81: 0.0 - syst_JES_EtaIntercalibration_Stat82: 3.512599037749683e-18 - syst_JES_EtaIntercalibration_Stat83: 3.512599037749683e-18 - syst_JES_EtaIntercalibration_Stat84: 3.512599037749683e-18 + syst_JES_EtaIntercalibration_Stat82: 3.51259904e-18 + syst_JES_EtaIntercalibration_Stat83: 3.51259904e-18 + syst_JES_EtaIntercalibration_Stat84: 3.51259904e-18 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 1.189226084476791e-16 - syst_JES_EtaIntercalibration_Stat9: 1.90931858493567e-12 - syst_JES_EtaIntercalibration_Stat90: 1.189226084476791e-16 - syst_JES_EtaIntercalibration_Stat91: 9.985272905634576e-17 - syst_JES_EtaIntercalibration_Stat92: 9.985272905634576e-17 + syst_JES_EtaIntercalibration_Stat89: 1.18922608e-16 + syst_JES_EtaIntercalibration_Stat9: 1.90931858e-12 + syst_JES_EtaIntercalibration_Stat90: 1.18922608e-16 + syst_JES_EtaIntercalibration_Stat91: 9.98527291e-17 + syst_JES_EtaIntercalibration_Stat92: 9.98527291e-17 syst_JES_EtaIntercalibration_Stat93: 0.0 syst_JES_EtaIntercalibration_Stat94: 0.0 - syst_JES_EtaIntercalibration_Stat95: 1.9084717133954986e-12 - syst_JES_EtaIntercalibration_Stat96: 1.3297966639678413e-05 - syst_JES_EtaIntercalibration_Stat97: 9.194296221027469e-07 - syst_JES_EtaIntercalibration_Stat98: 1.1600570718718971e-06 - syst_JES_EtaIntercalibration_Stat99: 7.364948697830488e-07 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.004564424498225379 - syst_JES_Flavour_Comp: 0.013702514039401675 - syst_JES_Gjet_Generator: 0.019486581921927714 - syst_JES_Gjet_OOC: 0.015856937756073837 - syst_JES_Gjet_Purity: 0.003956042477021702 - syst_JES_Gjet_Stat1: 4.023339284723574e-05 - syst_JES_Gjet_Stat10: 0.00037933652645111835 - syst_JES_Gjet_Stat11: 0.0004579024432125253 - syst_JES_Gjet_Stat12: 0.0015192902948416409 - syst_JES_Gjet_Stat13: 0.00449731397614176 - syst_JES_Gjet_Stat14: 0.007258118764528451 - syst_JES_Gjet_Stat15: 0.0006614392848175863 - syst_JES_Gjet_Stat2: 2.4260976005717494e-05 - syst_JES_Gjet_Stat3: 3.277527231008157e-05 - syst_JES_Gjet_Stat4: 6.76364966197984e-05 - syst_JES_Gjet_Stat5: 3.964814087696925e-05 - syst_JES_Gjet_Stat6: 0.00014373757572395607 - syst_JES_Gjet_Stat7: 0.00018975249010223815 - syst_JES_Gjet_Stat8: 0.00012344604448908032 - syst_JES_Gjet_Stat9: 0.00021942951032165206 - syst_JES_Gjet_Veto: 0.014589900616522374 - syst_JES_Gjet_dPhi: 0.0015114823849453228 - syst_JES_LArESZee: 0.02953694762496626 - syst_JES_LArEsmear: 0.0023655077679010056 - syst_JES_LAr_JVT: 0.002954754981381705 - syst_JES_MJB_Alpha: 0.0001521599405231219 - syst_JES_MJB_Asym: 0.0013755730106032175 - syst_JES_MJB_Beta: 0.00016069047109271912 - syst_JES_MJB_Stat1: 3.17300283643113e-05 - syst_JES_MJB_Stat10: 3.307485752047921e-05 - syst_JES_MJB_Stat11: 3.9180695715492344e-05 - syst_JES_MJB_Stat12: 7.020005982903434e-05 - syst_JES_MJB_Stat13: 7.402617577586999e-05 - syst_JES_MJB_Stat14: 5.904868584481792e-05 - syst_JES_MJB_Stat15: 2.7438471167322718e-05 - syst_JES_MJB_Stat16: 3.7356360904135186e-07 - syst_JES_MJB_Stat2: 8.081851566936874e-05 - syst_JES_MJB_Stat3: 0.0002870633510220349 - syst_JES_MJB_Stat4: 0.00015070350858556678 - syst_JES_MJB_Stat5: 0.0001505152971461705 - syst_JES_MJB_Stat6: 0.000150547649267599 - syst_JES_MJB_Stat7: 0.00010525326075709009 - syst_JES_MJB_Stat8: 5.3714188767959625e-05 - syst_JES_MJB_Stat9: 5.236275584802619e-05 - syst_JES_MJB_Threshold: 0.0015158083651966034 - syst_JES_Pileup_MuOffset: 0.0034727104687837136 - syst_JES_Pileup_NPVOffset: 0.0035558517966866954 - syst_JES_Pileup_Pt_term: 0.002609473510116552 - syst_JES_PunchThrough_MC15: 0.0011300699657543333 - syst_JES_SingleParticle_HighPt: 1.0977989194292369e-23 - syst_JES_Zjet_MC: 0.010217278208994802 - syst_JES_Zjet_MuScale: 0.0006743559649769549 - syst_JES_Zjet_MuSmearID: 0.0001451794636820236 - syst_JES_Zjet_MuSmearMS: 0.002926303940126521 - syst_JES_Zjet_OOC: 0.005019727781463851 - syst_JES_Zjet_Stat1: 0.00025101069200334874 - syst_JES_Zjet_Stat10: 0.00039432327610096764 - syst_JES_Zjet_Stat11: 0.0005390804276729031 - syst_JES_Zjet_Stat12: 0.0016859165904634784 - syst_JES_Zjet_Stat13: 0.0031983622371457555 - syst_JES_Zjet_Stat2: 1.049900723878215e-34 - syst_JES_Zjet_Stat3: 8.747891803171779e-05 - syst_JES_Zjet_Stat4: 8.711625838498804e-05 - syst_JES_Zjet_Stat5: 9.190228329590075e-05 - syst_JES_Zjet_Stat6: 0.00017060488709295525 - syst_JES_Zjet_Stat7: 0.0001233037115215921 - syst_JES_Zjet_Stat8: 0.00013666785540133425 - syst_JES_Zjet_Stat9: 0.00021191636911763095 - syst_JES_Zjet_Veto: 0.0011079718949504088 - syst_JES_Zjet_dPhi: 0.0009220039845358587 - syst_PRW: 0.0005335 - syst_Unfolding_bias: 8.759e-05 - syst_cleaning: 0.005688920877459978 + syst_JES_EtaIntercalibration_Stat95: 1.90847171e-12 + syst_JES_EtaIntercalibration_Stat96: 1.32979666e-05 + syst_JES_EtaIntercalibration_Stat97: 9.19429622e-07 + syst_JES_EtaIntercalibration_Stat98: 1.16005707e-06 + syst_JES_EtaIntercalibration_Stat99: 7.36494870e-07 + syst_JES_EtaIntercalibration_TotalStat_MJB: 4.56442450e-03 + syst_JES_Flavour_Comp: 1.37025140e-02 + syst_JES_Gjet_Generator: 1.94865819e-02 + syst_JES_Gjet_OOC: 1.58569378e-02 + syst_JES_Gjet_Purity: 3.95604248e-03 + syst_JES_Gjet_Stat1: 4.02333928e-05 + syst_JES_Gjet_Stat10: 3.79336526e-04 + syst_JES_Gjet_Stat11: 4.57902443e-04 + syst_JES_Gjet_Stat12: 1.51929029e-03 + syst_JES_Gjet_Stat13: 4.49731398e-03 + syst_JES_Gjet_Stat14: 7.25811876e-03 + syst_JES_Gjet_Stat15: 6.61439285e-04 + syst_JES_Gjet_Stat2: 2.42609760e-05 + syst_JES_Gjet_Stat3: 3.27752723e-05 + syst_JES_Gjet_Stat4: 6.76364966e-05 + syst_JES_Gjet_Stat5: 3.96481409e-05 + syst_JES_Gjet_Stat6: 1.43737576e-04 + syst_JES_Gjet_Stat7: 1.89752490e-04 + syst_JES_Gjet_Stat8: 1.23446044e-04 + syst_JES_Gjet_Stat9: 2.19429510e-04 + syst_JES_Gjet_Veto: 1.45899006e-02 + syst_JES_Gjet_dPhi: 1.51148238e-03 + syst_JES_LArESZee: 2.95369476e-02 + syst_JES_LArEsmear: 2.36550777e-03 + syst_JES_LAr_JVT: 2.95475498e-03 + syst_JES_MJB_Alpha: 1.52159941e-04 + syst_JES_MJB_Asym: 1.37557301e-03 + syst_JES_MJB_Beta: 1.60690471e-04 + syst_JES_MJB_Stat1: 3.17300284e-05 + syst_JES_MJB_Stat10: 3.30748575e-05 + syst_JES_MJB_Stat11: 3.91806957e-05 + syst_JES_MJB_Stat12: 7.02000598e-05 + syst_JES_MJB_Stat13: 7.40261758e-05 + syst_JES_MJB_Stat14: 5.90486858e-05 + syst_JES_MJB_Stat15: 2.74384712e-05 + syst_JES_MJB_Stat16: 3.73563609e-07 + syst_JES_MJB_Stat2: 8.08185157e-05 + syst_JES_MJB_Stat3: 2.87063351e-04 + syst_JES_MJB_Stat4: 1.50703509e-04 + syst_JES_MJB_Stat5: 1.50515297e-04 + syst_JES_MJB_Stat6: 1.50547649e-04 + syst_JES_MJB_Stat7: 1.05253261e-04 + syst_JES_MJB_Stat8: 5.37141888e-05 + syst_JES_MJB_Stat9: 5.23627558e-05 + syst_JES_MJB_Threshold: 1.51580837e-03 + syst_JES_Pileup_MuOffset: 3.47271047e-03 + syst_JES_Pileup_NPVOffset: 3.55585180e-03 + syst_JES_Pileup_Pt_term: 2.60947351e-03 + syst_JES_PunchThrough_MC15: 1.13006997e-03 + syst_JES_SingleParticle_HighPt: 1.09779892e-23 + syst_JES_Zjet_MC: 1.02172782e-02 + syst_JES_Zjet_MuScale: 6.74355965e-04 + syst_JES_Zjet_MuSmearID: 1.45179464e-04 + syst_JES_Zjet_MuSmearMS: 2.92630394e-03 + syst_JES_Zjet_OOC: 5.01972778e-03 + syst_JES_Zjet_Stat1: 2.51010692e-04 + syst_JES_Zjet_Stat10: 3.94323276e-04 + syst_JES_Zjet_Stat11: 5.39080428e-04 + syst_JES_Zjet_Stat12: 1.68591659e-03 + syst_JES_Zjet_Stat13: 3.19836224e-03 + syst_JES_Zjet_Stat2: 1.04990072e-34 + syst_JES_Zjet_Stat3: 8.74789180e-05 + syst_JES_Zjet_Stat4: 8.71162584e-05 + syst_JES_Zjet_Stat5: 9.19022833e-05 + syst_JES_Zjet_Stat6: 1.70604887e-04 + syst_JES_Zjet_Stat7: 1.23303712e-04 + syst_JES_Zjet_Stat8: 1.36667855e-04 + syst_JES_Zjet_Stat9: 2.11916369e-04 + syst_JES_Zjet_Veto: 1.10797189e-03 + syst_JES_Zjet_dPhi: 9.22003985e-04 + syst_PRW: 5.33500000e-04 + syst_Unfolding_bias: 8.75900000e-05 + syst_cleaning: 5.68892088e-03 syst_lumi: 0.02032 - syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.002299044584169694 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.004906438321226508 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 0.00044124050131419255 + syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 2.29904458e-03 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 4.90643832e-03 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 4.41240501e-04 syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 0.005276867820971073 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0017377879617490736 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0034580067958290654 -- stat: 0.0024687 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 5.27686782e-03 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.73778796e-03 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 3.45800680e-03 +- stat: 2.46870000e-03 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.0013230111224022268 - syst_JER_NP1: 0.00013792830266120146 - syst_JER_NP2: 0.0004427773522607045 - syst_JER_NP3: 0.0002626021087120208 - syst_JER_NP4: 0.00016138723989213025 - syst_JER_NP5: 9.303715870554087e-05 - syst_JER_NP6: 0.00016494719177664104 - syst_JER_NP7: 0.00014932971665077252 - syst_JER_NP8: 0.00036990024330892237 - syst_JES_EtaIntercalibration_Modelling: 0.0062477537363439676 + syst_JER_NP0: 1.32301112e-03 + syst_JER_NP1: 1.37928303e-04 + syst_JER_NP2: 4.42777352e-04 + syst_JER_NP3: 2.62602109e-04 + syst_JER_NP4: 1.61387240e-04 + syst_JER_NP5: 9.30371587e-05 + syst_JER_NP6: 1.64947192e-04 + syst_JER_NP7: 1.49329717e-04 + syst_JER_NP8: 3.69900243e-04 + syst_JES_EtaIntercalibration_Modelling: 6.24775374e-03 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 - syst_JES_EtaIntercalibration_Stat10: 1.6648621693101204e-15 - syst_JES_EtaIntercalibration_Stat100: 1.3456852004369372e-13 + syst_JES_EtaIntercalibration_Stat10: 1.66486217e-15 + syst_JES_EtaIntercalibration_Stat100: 1.34568520e-13 syst_JES_EtaIntercalibration_Stat101: 0.0 syst_JES_EtaIntercalibration_Stat102: 0.0 - syst_JES_EtaIntercalibration_Stat103: 7.866974767977839e-19 - syst_JES_EtaIntercalibration_Stat104: 7.866974767977839e-19 - syst_JES_EtaIntercalibration_Stat105: 7.866974767977839e-19 + syst_JES_EtaIntercalibration_Stat103: 7.86697477e-19 + syst_JES_EtaIntercalibration_Stat104: 7.86697477e-19 + syst_JES_EtaIntercalibration_Stat105: 7.86697477e-19 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 2.4292012576153505e-17 - syst_JES_EtaIntercalibration_Stat11: 1.3492675790961553e-13 - syst_JES_EtaIntercalibration_Stat110: 2.3884753437077805e-17 - syst_JES_EtaIntercalibration_Stat111: 2.0715327658523772e-17 - syst_JES_EtaIntercalibration_Stat112: 2.0715327658523772e-17 + syst_JES_EtaIntercalibration_Stat109: 2.42920126e-17 + syst_JES_EtaIntercalibration_Stat11: 1.34926758e-13 + syst_JES_EtaIntercalibration_Stat110: 2.38847534e-17 + syst_JES_EtaIntercalibration_Stat111: 2.07153277e-17 + syst_JES_EtaIntercalibration_Stat112: 2.07153277e-17 syst_JES_EtaIntercalibration_Stat113: 0.0 - syst_JES_EtaIntercalibration_Stat114: 2.790333850993462e-17 - syst_JES_EtaIntercalibration_Stat115: 8.22019398600179e-12 - syst_JES_EtaIntercalibration_Stat116: 3.1080294605263957e-06 - syst_JES_EtaIntercalibration_Stat117: 6.544213036530824e-06 - syst_JES_EtaIntercalibration_Stat118: 3.973583363917259e-06 - syst_JES_EtaIntercalibration_Stat119: 3.296242598398971e-06 - syst_JES_EtaIntercalibration_Stat12: 1.491295696242037e-09 - syst_JES_EtaIntercalibration_Stat120: 1.525087653177833e-09 - syst_JES_EtaIntercalibration_Stat121: 1.5311329138908876e-16 + syst_JES_EtaIntercalibration_Stat114: 2.79033385e-17 + syst_JES_EtaIntercalibration_Stat115: 8.22019399e-12 + syst_JES_EtaIntercalibration_Stat116: 3.10802946e-06 + syst_JES_EtaIntercalibration_Stat117: 6.54421304e-06 + syst_JES_EtaIntercalibration_Stat118: 3.97358336e-06 + syst_JES_EtaIntercalibration_Stat119: 3.29624260e-06 + syst_JES_EtaIntercalibration_Stat12: 1.49129570e-09 + syst_JES_EtaIntercalibration_Stat120: 1.52508765e-09 + syst_JES_EtaIntercalibration_Stat121: 1.53113291e-16 syst_JES_EtaIntercalibration_Stat122: 0.0 - syst_JES_EtaIntercalibration_Stat123: 7.866974767977839e-19 - syst_JES_EtaIntercalibration_Stat124: 7.866974767977839e-19 - syst_JES_EtaIntercalibration_Stat125: 7.866974767977839e-19 + syst_JES_EtaIntercalibration_Stat123: 7.86697477e-19 + syst_JES_EtaIntercalibration_Stat124: 7.86697477e-19 + syst_JES_EtaIntercalibration_Stat125: 7.86697477e-19 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 2.4292012576153505e-17 - syst_JES_EtaIntercalibration_Stat129: 2.3884753437077805e-17 + syst_JES_EtaIntercalibration_Stat128: 2.42920126e-17 + syst_JES_EtaIntercalibration_Stat129: 2.38847534e-17 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 1.3189566899637e-18 + syst_JES_EtaIntercalibration_Stat130: 1.31895669e-18 syst_JES_EtaIntercalibration_Stat131: 0.0 syst_JES_EtaIntercalibration_Stat132: 0.0 - syst_JES_EtaIntercalibration_Stat133: 2.790333850993462e-17 - syst_JES_EtaIntercalibration_Stat134: 3.8595751824886205e-06 - syst_JES_EtaIntercalibration_Stat135: 4.046402007648277e-06 - syst_JES_EtaIntercalibration_Stat136: 8.058743124706234e-06 - syst_JES_EtaIntercalibration_Stat137: 9.175365006363507e-06 - syst_JES_EtaIntercalibration_Stat138: 4.458191421417434e-06 - syst_JES_EtaIntercalibration_Stat139: 6.428530216931394e-12 + syst_JES_EtaIntercalibration_Stat133: 2.79033385e-17 + syst_JES_EtaIntercalibration_Stat134: 3.85957518e-06 + syst_JES_EtaIntercalibration_Stat135: 4.04640201e-06 + syst_JES_EtaIntercalibration_Stat136: 8.05874312e-06 + syst_JES_EtaIntercalibration_Stat137: 9.17536501e-06 + syst_JES_EtaIntercalibration_Stat138: 4.45819142e-06 + syst_JES_EtaIntercalibration_Stat139: 6.42853022e-12 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 1.5311329138908876e-16 + syst_JES_EtaIntercalibration_Stat140: 1.53113291e-16 syst_JES_EtaIntercalibration_Stat141: 0.0 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 7.866974767977839e-19 - syst_JES_EtaIntercalibration_Stat144: 7.866974767977839e-19 + syst_JES_EtaIntercalibration_Stat143: 7.86697477e-19 + syst_JES_EtaIntercalibration_Stat144: 7.86697477e-19 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 1.3189566899637e-18 - syst_JES_EtaIntercalibration_Stat148: 1.3189566899637e-18 + syst_JES_EtaIntercalibration_Stat147: 1.31895669e-18 + syst_JES_EtaIntercalibration_Stat148: 1.31895669e-18 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 syst_JES_EtaIntercalibration_Stat150: 0.0 syst_JES_EtaIntercalibration_Stat151: 0.0 - syst_JES_EtaIntercalibration_Stat152: 1.5926207176851276e-06 - syst_JES_EtaIntercalibration_Stat153: 6.559745783946204e-06 - syst_JES_EtaIntercalibration_Stat154: 4.967913722076905e-06 - syst_JES_EtaIntercalibration_Stat155: 8.951367088327905e-06 - syst_JES_EtaIntercalibration_Stat156: 3.466844485623778e-06 - syst_JES_EtaIntercalibration_Stat157: 2.8362593351631303e-09 + syst_JES_EtaIntercalibration_Stat152: 1.59262072e-06 + syst_JES_EtaIntercalibration_Stat153: 6.55974578e-06 + syst_JES_EtaIntercalibration_Stat154: 4.96791372e-06 + syst_JES_EtaIntercalibration_Stat155: 8.95136709e-06 + syst_JES_EtaIntercalibration_Stat156: 3.46684449e-06 + syst_JES_EtaIntercalibration_Stat157: 2.83625934e-09 syst_JES_EtaIntercalibration_Stat158: 0.0 syst_JES_EtaIntercalibration_Stat159: 0.0 syst_JES_EtaIntercalibration_Stat16: 0.0 @@ -7954,18 +7954,18 @@ bins: syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 1.3189566899637e-18 + syst_JES_EtaIntercalibration_Stat165: 1.31895669e-18 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 1.449531982227367e-05 - syst_JES_EtaIntercalibration_Stat171: 1.0634845038833428e-05 - syst_JES_EtaIntercalibration_Stat172: 1.0791806289959063e-05 - syst_JES_EtaIntercalibration_Stat173: 1.512379438996709e-05 - syst_JES_EtaIntercalibration_Stat174: 1.026355265003303e-05 - syst_JES_EtaIntercalibration_Stat175: 2.001829912854736e-09 + syst_JES_EtaIntercalibration_Stat170: 1.44953198e-05 + syst_JES_EtaIntercalibration_Stat171: 1.06348450e-05 + syst_JES_EtaIntercalibration_Stat172: 1.07918063e-05 + syst_JES_EtaIntercalibration_Stat173: 1.51237944e-05 + syst_JES_EtaIntercalibration_Stat174: 1.02635527e-05 + syst_JES_EtaIntercalibration_Stat175: 2.00182991e-09 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 syst_JES_EtaIntercalibration_Stat178: 0.0 @@ -7978,14 +7978,14 @@ bins: syst_JES_EtaIntercalibration_Stat184: 0.0 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 - syst_JES_EtaIntercalibration_Stat187: 6.35186736322477e-07 - syst_JES_EtaIntercalibration_Stat188: 5.699432603338686e-05 - syst_JES_EtaIntercalibration_Stat189: 6.829661832770345e-05 + syst_JES_EtaIntercalibration_Stat187: 6.35186736e-07 + syst_JES_EtaIntercalibration_Stat188: 5.69943260e-05 + syst_JES_EtaIntercalibration_Stat189: 6.82966183e-05 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 7.09260657304492e-05 - syst_JES_EtaIntercalibration_Stat191: 4.8029694843398704e-05 - syst_JES_EtaIntercalibration_Stat192: 3.069559699696359e-06 - syst_JES_EtaIntercalibration_Stat193: 1.5449893203514386e-09 + syst_JES_EtaIntercalibration_Stat190: 7.09260657e-05 + syst_JES_EtaIntercalibration_Stat191: 4.80296948e-05 + syst_JES_EtaIntercalibration_Stat192: 3.06955970e-06 + syst_JES_EtaIntercalibration_Stat193: 1.54498932e-09 syst_JES_EtaIntercalibration_Stat194: 0.0 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 @@ -7996,13 +7996,13 @@ bins: syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 syst_JES_EtaIntercalibration_Stat201: 0.0 - syst_JES_EtaIntercalibration_Stat202: 3.1442703617055578e-06 - syst_JES_EtaIntercalibration_Stat203: 0.00010608103082078341 - syst_JES_EtaIntercalibration_Stat204: 0.0001761327056511652 - syst_JES_EtaIntercalibration_Stat205: 0.00016830560500173488 - syst_JES_EtaIntercalibration_Stat206: 0.0001332378349981716 - syst_JES_EtaIntercalibration_Stat207: 1.6064914588941955e-06 - syst_JES_EtaIntercalibration_Stat208: 1.5449893203514386e-09 + syst_JES_EtaIntercalibration_Stat202: 3.14427036e-06 + syst_JES_EtaIntercalibration_Stat203: 1.06081031e-04 + syst_JES_EtaIntercalibration_Stat204: 1.76132706e-04 + syst_JES_EtaIntercalibration_Stat205: 1.68305605e-04 + syst_JES_EtaIntercalibration_Stat206: 1.33237835e-04 + syst_JES_EtaIntercalibration_Stat207: 1.60649146e-06 + syst_JES_EtaIntercalibration_Stat208: 1.54498932e-09 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 @@ -8010,38 +8010,38 @@ bins: syst_JES_EtaIntercalibration_Stat212: 0.0 syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 - syst_JES_EtaIntercalibration_Stat215: 2.4194205313462973e-06 - syst_JES_EtaIntercalibration_Stat216: 0.00011947611686023279 - syst_JES_EtaIntercalibration_Stat217: 0.00015087249583671636 - syst_JES_EtaIntercalibration_Stat218: 0.00019951007493357323 - syst_JES_EtaIntercalibration_Stat219: 0.00013860219154111526 + syst_JES_EtaIntercalibration_Stat215: 2.41942053e-06 + syst_JES_EtaIntercalibration_Stat216: 1.19476117e-04 + syst_JES_EtaIntercalibration_Stat217: 1.50872496e-04 + syst_JES_EtaIntercalibration_Stat218: 1.99510075e-04 + syst_JES_EtaIntercalibration_Stat219: 1.38602192e-04 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 2.4104235037644316e-06 + syst_JES_EtaIntercalibration_Stat220: 2.41042350e-06 syst_JES_EtaIntercalibration_Stat221: 0.0 syst_JES_EtaIntercalibration_Stat222: 0.0 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 - syst_JES_EtaIntercalibration_Stat227: 5.858251168224183e-06 - syst_JES_EtaIntercalibration_Stat228: 0.00022050018140582105 - syst_JES_EtaIntercalibration_Stat229: 0.00034170237049221654 + syst_JES_EtaIntercalibration_Stat227: 5.85825117e-06 + syst_JES_EtaIntercalibration_Stat228: 2.20500181e-04 + syst_JES_EtaIntercalibration_Stat229: 3.41702370e-04 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 0.0003538390417972556 - syst_JES_EtaIntercalibration_Stat231: 0.0002945467365291967 - syst_JES_EtaIntercalibration_Stat232: 3.908050881283405e-06 + syst_JES_EtaIntercalibration_Stat230: 3.53839042e-04 + syst_JES_EtaIntercalibration_Stat231: 2.94546737e-04 + syst_JES_EtaIntercalibration_Stat232: 3.90805088e-06 syst_JES_EtaIntercalibration_Stat233: 0.0 syst_JES_EtaIntercalibration_Stat234: 0.0 syst_JES_EtaIntercalibration_Stat235: 0.0 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 - syst_JES_EtaIntercalibration_Stat238: 5.920149694793083e-07 - syst_JES_EtaIntercalibration_Stat239: 1.6794727951577542e-05 + syst_JES_EtaIntercalibration_Stat238: 5.92014969e-07 + syst_JES_EtaIntercalibration_Stat239: 1.67947280e-05 syst_JES_EtaIntercalibration_Stat24: 0.0 - syst_JES_EtaIntercalibration_Stat240: 1.9256728167253647e-05 - syst_JES_EtaIntercalibration_Stat241: 3.5020626779085495e-05 - syst_JES_EtaIntercalibration_Stat242: 1.2327357705526357e-05 - syst_JES_EtaIntercalibration_Stat243: 4.8705268708836826e-08 + syst_JES_EtaIntercalibration_Stat240: 1.92567282e-05 + syst_JES_EtaIntercalibration_Stat241: 3.50206268e-05 + syst_JES_EtaIntercalibration_Stat242: 1.23273577e-05 + syst_JES_EtaIntercalibration_Stat243: 4.87052687e-08 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 syst_JES_EtaIntercalibration_Stat25: 0.0 @@ -8050,12 +8050,12 @@ bins: syst_JES_EtaIntercalibration_Stat28: 0.0 syst_JES_EtaIntercalibration_Stat29: 0.0 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 2.6888774386349406e-17 - syst_JES_EtaIntercalibration_Stat31: 3.657178831763632e-06 - syst_JES_EtaIntercalibration_Stat32: 1.7020045556637032e-13 - syst_JES_EtaIntercalibration_Stat33: 1.4930283633718739e-09 - syst_JES_EtaIntercalibration_Stat34: 1.5328655844849727e-09 - syst_JES_EtaIntercalibration_Stat35: 1.490731427210102e-16 + syst_JES_EtaIntercalibration_Stat30: 2.68887744e-17 + syst_JES_EtaIntercalibration_Stat31: 3.65717883e-06 + syst_JES_EtaIntercalibration_Stat32: 1.70200456e-13 + syst_JES_EtaIntercalibration_Stat33: 1.49302836e-09 + syst_JES_EtaIntercalibration_Stat34: 1.53286558e-09 + syst_JES_EtaIntercalibration_Stat35: 1.49073143e-16 syst_JES_EtaIntercalibration_Stat36: 0.0 syst_JES_EtaIntercalibration_Stat37: 0.0 syst_JES_EtaIntercalibration_Stat38: 0.0 @@ -8074,220 +8074,220 @@ bins: syst_JES_EtaIntercalibration_Stat5: 0.0 syst_JES_EtaIntercalibration_Stat50: 0.0 syst_JES_EtaIntercalibration_Stat51: 0.0 - syst_JES_EtaIntercalibration_Stat52: 9.43299258493825e-17 - syst_JES_EtaIntercalibration_Stat53: 4.729724475788732e-13 - syst_JES_EtaIntercalibration_Stat54: 1.585680072821503e-06 - syst_JES_EtaIntercalibration_Stat55: 1.4991773474059264e-09 - syst_JES_EtaIntercalibration_Stat56: 1.535480041741352e-09 - syst_JES_EtaIntercalibration_Stat57: 8.9882097633511e-16 + syst_JES_EtaIntercalibration_Stat52: 9.43299258e-17 + syst_JES_EtaIntercalibration_Stat53: 4.72972448e-13 + syst_JES_EtaIntercalibration_Stat54: 1.58568007e-06 + syst_JES_EtaIntercalibration_Stat55: 1.49917735e-09 + syst_JES_EtaIntercalibration_Stat56: 1.53548004e-09 + syst_JES_EtaIntercalibration_Stat57: 8.98820976e-16 syst_JES_EtaIntercalibration_Stat58: 0.0 syst_JES_EtaIntercalibration_Stat59: 0.0 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 7.866974767977839e-19 - syst_JES_EtaIntercalibration_Stat62: 7.866974767977839e-19 + syst_JES_EtaIntercalibration_Stat61: 7.86697477e-19 + syst_JES_EtaIntercalibration_Stat62: 7.86697477e-19 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 2.4292012576153505e-17 - syst_JES_EtaIntercalibration_Stat69: 2.4292012576153505e-17 + syst_JES_EtaIntercalibration_Stat68: 2.42920126e-17 + syst_JES_EtaIntercalibration_Stat69: 2.42920126e-17 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 2.0715327658523772e-17 - syst_JES_EtaIntercalibration_Stat71: 2.0715327658523772e-17 + syst_JES_EtaIntercalibration_Stat70: 2.07153277e-17 + syst_JES_EtaIntercalibration_Stat71: 2.07153277e-17 syst_JES_EtaIntercalibration_Stat72: 0.0 syst_JES_EtaIntercalibration_Stat73: 0.0 - syst_JES_EtaIntercalibration_Stat74: 2.866619835742961e-13 - syst_JES_EtaIntercalibration_Stat75: 7.838002089180635e-06 - syst_JES_EtaIntercalibration_Stat76: 6.028219953376512e-07 - syst_JES_EtaIntercalibration_Stat77: 7.669714010313553e-07 - syst_JES_EtaIntercalibration_Stat78: 7.480820857829555e-07 - syst_JES_EtaIntercalibration_Stat79: 8.596592522621973e-16 + syst_JES_EtaIntercalibration_Stat74: 2.86661984e-13 + syst_JES_EtaIntercalibration_Stat75: 7.83800209e-06 + syst_JES_EtaIntercalibration_Stat76: 6.02821995e-07 + syst_JES_EtaIntercalibration_Stat77: 7.66971401e-07 + syst_JES_EtaIntercalibration_Stat78: 7.48082086e-07 + syst_JES_EtaIntercalibration_Stat79: 8.59659252e-16 syst_JES_EtaIntercalibration_Stat8: 0.0 syst_JES_EtaIntercalibration_Stat80: 0.0 syst_JES_EtaIntercalibration_Stat81: 0.0 - syst_JES_EtaIntercalibration_Stat82: 7.866974767977839e-19 - syst_JES_EtaIntercalibration_Stat83: 7.866974767977839e-19 - syst_JES_EtaIntercalibration_Stat84: 7.866974767977839e-19 + syst_JES_EtaIntercalibration_Stat82: 7.86697477e-19 + syst_JES_EtaIntercalibration_Stat83: 7.86697477e-19 + syst_JES_EtaIntercalibration_Stat84: 7.86697477e-19 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 2.4292012576153505e-17 - syst_JES_EtaIntercalibration_Stat9: 2.8684378206645425e-13 - syst_JES_EtaIntercalibration_Stat90: 2.4292012576153505e-17 - syst_JES_EtaIntercalibration_Stat91: 2.0715327658523772e-17 - syst_JES_EtaIntercalibration_Stat92: 2.0715327658523772e-17 + syst_JES_EtaIntercalibration_Stat89: 2.42920126e-17 + syst_JES_EtaIntercalibration_Stat9: 2.86843782e-13 + syst_JES_EtaIntercalibration_Stat90: 2.42920126e-17 + syst_JES_EtaIntercalibration_Stat91: 2.07153277e-17 + syst_JES_EtaIntercalibration_Stat92: 2.07153277e-17 syst_JES_EtaIntercalibration_Stat93: 0.0 syst_JES_EtaIntercalibration_Stat94: 0.0 - syst_JES_EtaIntercalibration_Stat95: 2.867218221691541e-13 - syst_JES_EtaIntercalibration_Stat96: 8.081398346202221e-06 - syst_JES_EtaIntercalibration_Stat97: 6.009149253430139e-07 - syst_JES_EtaIntercalibration_Stat98: 1.1301410741584431e-06 - syst_JES_EtaIntercalibration_Stat99: 2.4169966835517173e-07 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.003176832502666768 - syst_JES_Flavour_Comp: 0.009243468220857365 - syst_JES_Gjet_Generator: 0.012981784469016577 - syst_JES_Gjet_OOC: 0.010617634517631504 - syst_JES_Gjet_Purity: 0.002429789034052134 - syst_JES_Gjet_Stat1: 2.6392353059172275e-05 - syst_JES_Gjet_Stat10: 0.00022846953845097163 - syst_JES_Gjet_Stat11: 0.0002685018435690899 - syst_JES_Gjet_Stat12: 0.0008863585321414805 - syst_JES_Gjet_Stat13: 0.0027746514645987518 - syst_JES_Gjet_Stat14: 0.005463514162148754 - syst_JES_Gjet_Stat15: 0.0011456551706338167 - syst_JES_Gjet_Stat2: 1.7586366168142866e-05 - syst_JES_Gjet_Stat3: 2.143835523075406e-05 - syst_JES_Gjet_Stat4: 4.732222416581875e-05 - syst_JES_Gjet_Stat5: 2.7654256453573292e-05 - syst_JES_Gjet_Stat6: 8.748321096073234e-05 - syst_JES_Gjet_Stat7: 0.00011655593807266966 - syst_JES_Gjet_Stat8: 8.18843684716442e-05 - syst_JES_Gjet_Stat9: 0.00014272254228046808 - syst_JES_Gjet_Veto: 0.010073103332637862 - syst_JES_Gjet_dPhi: 0.0010175924675428765 - syst_JES_LArESZee: 0.01979688548736897 - syst_JES_LArEsmear: 0.0015677948685972917 - syst_JES_LAr_JVT: 0.001957247301696952 - syst_JES_MJB_Alpha: 9.4897506816565e-05 - syst_JES_MJB_Asym: 0.0011103491376589618 - syst_JES_MJB_Beta: 0.00011870511141058754 - syst_JES_MJB_Stat1: 1.624522339027691e-05 - syst_JES_MJB_Stat10: 5.609779140037511e-05 - syst_JES_MJB_Stat11: 1.436509477866401e-05 - syst_JES_MJB_Stat12: 3.7502224933995584e-05 - syst_JES_MJB_Stat13: 5.4501195399734125e-05 - syst_JES_MJB_Stat14: 6.822090643637037e-05 - syst_JES_MJB_Stat15: 4.8085912698003354e-05 - syst_JES_MJB_Stat16: 3.3048710640507597e-06 - syst_JES_MJB_Stat2: 3.688562186001478e-05 - syst_JES_MJB_Stat3: 0.00014630960964680346 - syst_JES_MJB_Stat4: 7.988856410651026e-05 - syst_JES_MJB_Stat5: 9.528845824652638e-05 - syst_JES_MJB_Stat6: 9.888124025820063e-05 - syst_JES_MJB_Stat7: 8.224038059250456e-05 - syst_JES_MJB_Stat8: 6.684518288553036e-05 - syst_JES_MJB_Stat9: 6.853206767638053e-05 - syst_JES_MJB_Threshold: 0.0010376520262110993 - syst_JES_Pileup_MuOffset: 0.002364588917761394 - syst_JES_Pileup_NPVOffset: 0.002427747258262276 - syst_JES_Pileup_Pt_term: 0.001696368474123473 - syst_JES_PunchThrough_MC15: 0.0008895368275119362 - syst_JES_SingleParticle_HighPt: 1.2622761702575233e-19 - syst_JES_Zjet_MC: 0.006257022934271537 - syst_JES_Zjet_MuScale: 0.0004192792244733812 - syst_JES_Zjet_MuSmearID: 9.228498957035212e-05 - syst_JES_Zjet_MuSmearMS: 0.0017585752045334885 - syst_JES_Zjet_OOC: 0.003168674289036347 - syst_JES_Zjet_Stat1: 0.00015616961132051266 - syst_JES_Zjet_Stat10: 0.0002444309871927044 - syst_JES_Zjet_Stat11: 0.00033142927978680457 - syst_JES_Zjet_Stat12: 0.001027348318487941 - syst_JES_Zjet_Stat13: 0.001918812849133547 - syst_JES_Zjet_Stat2: 1.6095793883807037e-28 - syst_JES_Zjet_Stat3: 6.151251153220782e-05 - syst_JES_Zjet_Stat4: 5.7918137055675406e-05 - syst_JES_Zjet_Stat5: 8.226256545355245e-05 - syst_JES_Zjet_Stat6: 0.00010563309460107662 - syst_JES_Zjet_Stat7: 9.143182419158003e-05 - syst_JES_Zjet_Stat8: 8.925110797631591e-05 - syst_JES_Zjet_Stat9: 0.00013559415658500926 - syst_JES_Zjet_Veto: 0.0006934969646653114 - syst_JES_Zjet_dPhi: 0.0005870401349141302 + syst_JES_EtaIntercalibration_Stat95: 2.86721822e-13 + syst_JES_EtaIntercalibration_Stat96: 8.08139835e-06 + syst_JES_EtaIntercalibration_Stat97: 6.00914925e-07 + syst_JES_EtaIntercalibration_Stat98: 1.13014107e-06 + syst_JES_EtaIntercalibration_Stat99: 2.41699668e-07 + syst_JES_EtaIntercalibration_TotalStat_MJB: 3.17683250e-03 + syst_JES_Flavour_Comp: 9.24346822e-03 + syst_JES_Gjet_Generator: 1.29817845e-02 + syst_JES_Gjet_OOC: 1.06176345e-02 + syst_JES_Gjet_Purity: 2.42978903e-03 + syst_JES_Gjet_Stat1: 2.63923531e-05 + syst_JES_Gjet_Stat10: 2.28469538e-04 + syst_JES_Gjet_Stat11: 2.68501844e-04 + syst_JES_Gjet_Stat12: 8.86358532e-04 + syst_JES_Gjet_Stat13: 2.77465146e-03 + syst_JES_Gjet_Stat14: 5.46351416e-03 + syst_JES_Gjet_Stat15: 1.14565517e-03 + syst_JES_Gjet_Stat2: 1.75863662e-05 + syst_JES_Gjet_Stat3: 2.14383552e-05 + syst_JES_Gjet_Stat4: 4.73222242e-05 + syst_JES_Gjet_Stat5: 2.76542565e-05 + syst_JES_Gjet_Stat6: 8.74832110e-05 + syst_JES_Gjet_Stat7: 1.16555938e-04 + syst_JES_Gjet_Stat8: 8.18843685e-05 + syst_JES_Gjet_Stat9: 1.42722542e-04 + syst_JES_Gjet_Veto: 1.00731033e-02 + syst_JES_Gjet_dPhi: 1.01759247e-03 + syst_JES_LArESZee: 1.97968855e-02 + syst_JES_LArEsmear: 1.56779487e-03 + syst_JES_LAr_JVT: 1.95724730e-03 + syst_JES_MJB_Alpha: 9.48975068e-05 + syst_JES_MJB_Asym: 1.11034914e-03 + syst_JES_MJB_Beta: 1.18705111e-04 + syst_JES_MJB_Stat1: 1.62452234e-05 + syst_JES_MJB_Stat10: 5.60977914e-05 + syst_JES_MJB_Stat11: 1.43650948e-05 + syst_JES_MJB_Stat12: 3.75022249e-05 + syst_JES_MJB_Stat13: 5.45011954e-05 + syst_JES_MJB_Stat14: 6.82209064e-05 + syst_JES_MJB_Stat15: 4.80859127e-05 + syst_JES_MJB_Stat16: 3.30487106e-06 + syst_JES_MJB_Stat2: 3.68856219e-05 + syst_JES_MJB_Stat3: 1.46309610e-04 + syst_JES_MJB_Stat4: 7.98885641e-05 + syst_JES_MJB_Stat5: 9.52884582e-05 + syst_JES_MJB_Stat6: 9.88812403e-05 + syst_JES_MJB_Stat7: 8.22403806e-05 + syst_JES_MJB_Stat8: 6.68451829e-05 + syst_JES_MJB_Stat9: 6.85320677e-05 + syst_JES_MJB_Threshold: 1.03765203e-03 + syst_JES_Pileup_MuOffset: 2.36458892e-03 + syst_JES_Pileup_NPVOffset: 2.42774726e-03 + syst_JES_Pileup_Pt_term: 1.69636847e-03 + syst_JES_PunchThrough_MC15: 8.89536828e-04 + syst_JES_SingleParticle_HighPt: 1.26227617e-19 + syst_JES_Zjet_MC: 6.25702293e-03 + syst_JES_Zjet_MuScale: 4.19279224e-04 + syst_JES_Zjet_MuSmearID: 9.22849896e-05 + syst_JES_Zjet_MuSmearMS: 1.75857520e-03 + syst_JES_Zjet_OOC: 3.16867429e-03 + syst_JES_Zjet_Stat1: 1.56169611e-04 + syst_JES_Zjet_Stat10: 2.44430987e-04 + syst_JES_Zjet_Stat11: 3.31429280e-04 + syst_JES_Zjet_Stat12: 1.02734832e-03 + syst_JES_Zjet_Stat13: 1.91881285e-03 + syst_JES_Zjet_Stat2: 1.60957939e-28 + syst_JES_Zjet_Stat3: 6.15125115e-05 + syst_JES_Zjet_Stat4: 5.79181371e-05 + syst_JES_Zjet_Stat5: 8.22625655e-05 + syst_JES_Zjet_Stat6: 1.05633095e-04 + syst_JES_Zjet_Stat7: 9.14318242e-05 + syst_JES_Zjet_Stat8: 8.92511080e-05 + syst_JES_Zjet_Stat9: 1.35594157e-04 + syst_JES_Zjet_Veto: 6.93496965e-04 + syst_JES_Zjet_dPhi: 5.87040135e-04 syst_PRW: 0.000349 - syst_Unfolding_bias: 5.729e-05 - syst_cleaning: 0.0037187130838503796 + syst_Unfolding_bias: 5.72900000e-05 + syst_cleaning: 3.71871308e-03 syst_lumi: 0.013288 - syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0013584793364273158 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0031225231384250786 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 0.00025890146291591325 + syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.35847934e-03 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 3.12252314e-03 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 2.58901463e-04 syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 0.0030966252598595132 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0010800327900114886 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0023250154838194087 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 3.09662526e-03 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.08003279e-03 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 2.32501548e-03 - stat: 0.001801 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.0008960743440139329 - syst_JER_NP1: 9.018370737001224e-05 - syst_JER_NP2: 0.0003217590091978777 - syst_JER_NP3: 0.0001558219422128989 - syst_JER_NP4: 0.00011886171250659314 - syst_JER_NP5: 8.207152734048516e-05 - syst_JER_NP6: 0.00011176409128159189 - syst_JER_NP7: 0.0001117338662850257 - syst_JER_NP8: 0.000256835837647319 - syst_JES_EtaIntercalibration_Modelling: 0.004384364948313495 + syst_JER_NP0: 8.96074344e-04 + syst_JER_NP1: 9.01837074e-05 + syst_JER_NP2: 3.21759009e-04 + syst_JER_NP3: 1.55821942e-04 + syst_JER_NP4: 1.18861713e-04 + syst_JER_NP5: 8.20715273e-05 + syst_JER_NP6: 1.11764091e-04 + syst_JER_NP7: 1.11733866e-04 + syst_JER_NP8: 2.56835838e-04 + syst_JES_EtaIntercalibration_Modelling: 4.38436495e-03 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 - syst_JES_EtaIntercalibration_Stat10: 2.909109415590105e-16 - syst_JES_EtaIntercalibration_Stat100: 1.9822550382518892e-14 + syst_JES_EtaIntercalibration_Stat10: 2.90910942e-16 + syst_JES_EtaIntercalibration_Stat100: 1.98225504e-14 syst_JES_EtaIntercalibration_Stat101: 0.0 syst_JES_EtaIntercalibration_Stat102: 0.0 - syst_JES_EtaIntercalibration_Stat103: 1.8922655072689982e-19 - syst_JES_EtaIntercalibration_Stat104: 1.8922655072689982e-19 - syst_JES_EtaIntercalibration_Stat105: 1.8922655072689982e-19 + syst_JES_EtaIntercalibration_Stat103: 1.89226551e-19 + syst_JES_EtaIntercalibration_Stat104: 1.89226551e-19 + syst_JES_EtaIntercalibration_Stat105: 1.89226551e-19 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 5.339912639734849e-18 - syst_JES_EtaIntercalibration_Stat11: 1.985796250877718e-14 - syst_JES_EtaIntercalibration_Stat110: 5.244524733472043e-18 - syst_JES_EtaIntercalibration_Stat111: 4.625441681612687e-18 - syst_JES_EtaIntercalibration_Stat112: 4.625441681612687e-18 + syst_JES_EtaIntercalibration_Stat109: 5.33991264e-18 + syst_JES_EtaIntercalibration_Stat11: 1.98579625e-14 + syst_JES_EtaIntercalibration_Stat110: 5.24452473e-18 + syst_JES_EtaIntercalibration_Stat111: 4.62544168e-18 + syst_JES_EtaIntercalibration_Stat112: 4.62544168e-18 syst_JES_EtaIntercalibration_Stat113: 0.0 - syst_JES_EtaIntercalibration_Stat114: 6.08729256320082e-18 - syst_JES_EtaIntercalibration_Stat115: 1.2397843038206284e-12 - syst_JES_EtaIntercalibration_Stat116: 1.0560620377136943e-06 - syst_JES_EtaIntercalibration_Stat117: 2.081401659339206e-06 - syst_JES_EtaIntercalibration_Stat118: 3.977046100751159e-06 - syst_JES_EtaIntercalibration_Stat119: 2.426934833797562e-06 - syst_JES_EtaIntercalibration_Stat12: 2.370311430911514e-10 - syst_JES_EtaIntercalibration_Stat120: 2.4205668757491105e-10 - syst_JES_EtaIntercalibration_Stat121: 3.098638894740721e-17 + syst_JES_EtaIntercalibration_Stat114: 6.08729256e-18 + syst_JES_EtaIntercalibration_Stat115: 1.23978430e-12 + syst_JES_EtaIntercalibration_Stat116: 1.05606204e-06 + syst_JES_EtaIntercalibration_Stat117: 2.08140166e-06 + syst_JES_EtaIntercalibration_Stat118: 3.97704610e-06 + syst_JES_EtaIntercalibration_Stat119: 2.42693483e-06 + syst_JES_EtaIntercalibration_Stat12: 2.37031143e-10 + syst_JES_EtaIntercalibration_Stat120: 2.42056688e-10 + syst_JES_EtaIntercalibration_Stat121: 3.09863889e-17 syst_JES_EtaIntercalibration_Stat122: 0.0 - syst_JES_EtaIntercalibration_Stat123: 1.8922655072689982e-19 - syst_JES_EtaIntercalibration_Stat124: 1.8922655072689982e-19 - syst_JES_EtaIntercalibration_Stat125: 1.8922655072689982e-19 + syst_JES_EtaIntercalibration_Stat123: 1.89226551e-19 + syst_JES_EtaIntercalibration_Stat124: 1.89226551e-19 + syst_JES_EtaIntercalibration_Stat125: 1.89226551e-19 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 5.339912639734849e-18 - syst_JES_EtaIntercalibration_Stat129: 5.244524733472043e-18 + syst_JES_EtaIntercalibration_Stat128: 5.33991264e-18 + syst_JES_EtaIntercalibration_Stat129: 5.24452473e-18 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 3.107299148778566e-19 + syst_JES_EtaIntercalibration_Stat130: 3.10729915e-19 syst_JES_EtaIntercalibration_Stat131: 0.0 syst_JES_EtaIntercalibration_Stat132: 0.0 - syst_JES_EtaIntercalibration_Stat133: 6.08729256320082e-18 - syst_JES_EtaIntercalibration_Stat134: 2.5235484072753996e-06 - syst_JES_EtaIntercalibration_Stat135: 2.191710918437922e-06 - syst_JES_EtaIntercalibration_Stat136: 4.205879099546254e-06 - syst_JES_EtaIntercalibration_Stat137: 5.129895320569417e-06 - syst_JES_EtaIntercalibration_Stat138: 2.0934108698485352e-06 - syst_JES_EtaIntercalibration_Stat139: 9.87885989120202e-13 + syst_JES_EtaIntercalibration_Stat133: 6.08729256e-18 + syst_JES_EtaIntercalibration_Stat134: 2.52354841e-06 + syst_JES_EtaIntercalibration_Stat135: 2.19171092e-06 + syst_JES_EtaIntercalibration_Stat136: 4.20587910e-06 + syst_JES_EtaIntercalibration_Stat137: 5.12989532e-06 + syst_JES_EtaIntercalibration_Stat138: 2.09341087e-06 + syst_JES_EtaIntercalibration_Stat139: 9.87885989e-13 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 3.098638894740721e-17 + syst_JES_EtaIntercalibration_Stat140: 3.09863889e-17 syst_JES_EtaIntercalibration_Stat141: 0.0 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 1.8922655072689982e-19 - syst_JES_EtaIntercalibration_Stat144: 1.8922655072689982e-19 + syst_JES_EtaIntercalibration_Stat143: 1.89226551e-19 + syst_JES_EtaIntercalibration_Stat144: 1.89226551e-19 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 3.107299148778566e-19 - syst_JES_EtaIntercalibration_Stat148: 3.107299148778566e-19 + syst_JES_EtaIntercalibration_Stat147: 3.10729915e-19 + syst_JES_EtaIntercalibration_Stat148: 3.10729915e-19 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 syst_JES_EtaIntercalibration_Stat150: 0.0 syst_JES_EtaIntercalibration_Stat151: 0.0 - syst_JES_EtaIntercalibration_Stat152: 1.0418285607784986e-06 - syst_JES_EtaIntercalibration_Stat153: 4.103988395451429e-06 - syst_JES_EtaIntercalibration_Stat154: 3.373346113282774e-06 - syst_JES_EtaIntercalibration_Stat155: 5.047708787162746e-06 - syst_JES_EtaIntercalibration_Stat156: 2.8234040305985257e-06 - syst_JES_EtaIntercalibration_Stat157: 4.5022855909054687e-10 + syst_JES_EtaIntercalibration_Stat152: 1.04182856e-06 + syst_JES_EtaIntercalibration_Stat153: 4.10398840e-06 + syst_JES_EtaIntercalibration_Stat154: 3.37334611e-06 + syst_JES_EtaIntercalibration_Stat155: 5.04770879e-06 + syst_JES_EtaIntercalibration_Stat156: 2.82340403e-06 + syst_JES_EtaIntercalibration_Stat157: 4.50228559e-10 syst_JES_EtaIntercalibration_Stat158: 0.0 syst_JES_EtaIntercalibration_Stat159: 0.0 syst_JES_EtaIntercalibration_Stat16: 0.0 @@ -8296,18 +8296,18 @@ bins: syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 3.107299148778566e-19 + syst_JES_EtaIntercalibration_Stat165: 3.10729915e-19 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 8.571969201997872e-06 - syst_JES_EtaIntercalibration_Stat171: 5.571503298033664e-06 - syst_JES_EtaIntercalibration_Stat172: 6.345947269714743e-06 - syst_JES_EtaIntercalibration_Stat173: 8.411057053070084e-06 - syst_JES_EtaIntercalibration_Stat174: 6.37007556862554e-06 - syst_JES_EtaIntercalibration_Stat175: 5.225650103097222e-10 + syst_JES_EtaIntercalibration_Stat170: 8.57196920e-06 + syst_JES_EtaIntercalibration_Stat171: 5.57150330e-06 + syst_JES_EtaIntercalibration_Stat172: 6.34594727e-06 + syst_JES_EtaIntercalibration_Stat173: 8.41105705e-06 + syst_JES_EtaIntercalibration_Stat174: 6.37007557e-06 + syst_JES_EtaIntercalibration_Stat175: 5.22565010e-10 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 syst_JES_EtaIntercalibration_Stat178: 0.0 @@ -8320,14 +8320,14 @@ bins: syst_JES_EtaIntercalibration_Stat184: 0.0 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 - syst_JES_EtaIntercalibration_Stat187: 5.633251348022738e-07 - syst_JES_EtaIntercalibration_Stat188: 2.898474081305541e-05 - syst_JES_EtaIntercalibration_Stat189: 3.3812309888559814e-05 + syst_JES_EtaIntercalibration_Stat187: 5.63325135e-07 + syst_JES_EtaIntercalibration_Stat188: 2.89847408e-05 + syst_JES_EtaIntercalibration_Stat189: 3.38123099e-05 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 3.661933931681455e-05 - syst_JES_EtaIntercalibration_Stat191: 2.6427089794375768e-05 - syst_JES_EtaIntercalibration_Stat192: 1.933468573522725e-06 - syst_JES_EtaIntercalibration_Stat193: 2.4508518927099617e-10 + syst_JES_EtaIntercalibration_Stat190: 3.66193393e-05 + syst_JES_EtaIntercalibration_Stat191: 2.64270898e-05 + syst_JES_EtaIntercalibration_Stat192: 1.93346857e-06 + syst_JES_EtaIntercalibration_Stat193: 2.45085189e-10 syst_JES_EtaIntercalibration_Stat194: 0.0 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 @@ -8338,13 +8338,13 @@ bins: syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 syst_JES_EtaIntercalibration_Stat201: 0.0 - syst_JES_EtaIntercalibration_Stat202: 1.8287661496211046e-06 - syst_JES_EtaIntercalibration_Stat203: 5.4072862648467206e-05 - syst_JES_EtaIntercalibration_Stat204: 8.905198088756925e-05 - syst_JES_EtaIntercalibration_Stat205: 8.703725797036579e-05 - syst_JES_EtaIntercalibration_Stat206: 6.686818899895525e-05 - syst_JES_EtaIntercalibration_Stat207: 7.769407101413853e-07 - syst_JES_EtaIntercalibration_Stat208: 2.4508518927099617e-10 + syst_JES_EtaIntercalibration_Stat202: 1.82876615e-06 + syst_JES_EtaIntercalibration_Stat203: 5.40728626e-05 + syst_JES_EtaIntercalibration_Stat204: 8.90519809e-05 + syst_JES_EtaIntercalibration_Stat205: 8.70372580e-05 + syst_JES_EtaIntercalibration_Stat206: 6.68681890e-05 + syst_JES_EtaIntercalibration_Stat207: 7.76940710e-07 + syst_JES_EtaIntercalibration_Stat208: 2.45085189e-10 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 @@ -8352,38 +8352,38 @@ bins: syst_JES_EtaIntercalibration_Stat212: 0.0 syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 - syst_JES_EtaIntercalibration_Stat215: 1.586457743488619e-06 - syst_JES_EtaIntercalibration_Stat216: 6.517068570300607e-05 - syst_JES_EtaIntercalibration_Stat217: 8.545969400834524e-05 - syst_JES_EtaIntercalibration_Stat218: 0.00010713806466424528 - syst_JES_EtaIntercalibration_Stat219: 7.443175935042783e-05 + syst_JES_EtaIntercalibration_Stat215: 1.58645774e-06 + syst_JES_EtaIntercalibration_Stat216: 6.51706857e-05 + syst_JES_EtaIntercalibration_Stat217: 8.54596940e-05 + syst_JES_EtaIntercalibration_Stat218: 1.07138065e-04 + syst_JES_EtaIntercalibration_Stat219: 7.44317594e-05 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 1.5282053247845987e-06 + syst_JES_EtaIntercalibration_Stat220: 1.52820532e-06 syst_JES_EtaIntercalibration_Stat221: 0.0 syst_JES_EtaIntercalibration_Stat222: 0.0 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 - syst_JES_EtaIntercalibration_Stat227: 3.6973182173029143e-06 - syst_JES_EtaIntercalibration_Stat228: 0.0001565174990216749 - syst_JES_EtaIntercalibration_Stat229: 0.00024611661869934745 + syst_JES_EtaIntercalibration_Stat227: 3.69731822e-06 + syst_JES_EtaIntercalibration_Stat228: 1.56517499e-04 + syst_JES_EtaIntercalibration_Stat229: 2.46116619e-04 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 0.00024350694035283677 - syst_JES_EtaIntercalibration_Stat231: 0.00020556152363708532 - syst_JES_EtaIntercalibration_Stat232: 2.060409160215514e-06 + syst_JES_EtaIntercalibration_Stat230: 2.43506940e-04 + syst_JES_EtaIntercalibration_Stat231: 2.05561524e-04 + syst_JES_EtaIntercalibration_Stat232: 2.06040916e-06 syst_JES_EtaIntercalibration_Stat233: 0.0 syst_JES_EtaIntercalibration_Stat234: 0.0 syst_JES_EtaIntercalibration_Stat235: 0.0 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 - syst_JES_EtaIntercalibration_Stat238: 4.95800102255494e-07 - syst_JES_EtaIntercalibration_Stat239: 1.5826847664648828e-05 + syst_JES_EtaIntercalibration_Stat238: 4.95800102e-07 + syst_JES_EtaIntercalibration_Stat239: 1.58268477e-05 syst_JES_EtaIntercalibration_Stat24: 0.0 - syst_JES_EtaIntercalibration_Stat240: 1.9241981394856403e-05 - syst_JES_EtaIntercalibration_Stat241: 3.278222498550091e-05 - syst_JES_EtaIntercalibration_Stat242: 1.1683657004551271e-05 - syst_JES_EtaIntercalibration_Stat243: 8.416034873977175e-08 + syst_JES_EtaIntercalibration_Stat240: 1.92419814e-05 + syst_JES_EtaIntercalibration_Stat241: 3.27822250e-05 + syst_JES_EtaIntercalibration_Stat242: 1.16836570e-05 + syst_JES_EtaIntercalibration_Stat243: 8.41603487e-08 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 syst_JES_EtaIntercalibration_Stat25: 0.0 @@ -8392,12 +8392,12 @@ bins: syst_JES_EtaIntercalibration_Stat28: 0.0 syst_JES_EtaIntercalibration_Stat29: 0.0 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 5.8560431922928984e-18 - syst_JES_EtaIntercalibration_Stat31: 2.390792338849194e-06 - syst_JES_EtaIntercalibration_Stat32: 2.4999393492642975e-14 - syst_JES_EtaIntercalibration_Stat33: 2.3729105921965847e-10 - syst_JES_EtaIntercalibration_Stat34: 2.433532473807505e-10 - syst_JES_EtaIntercalibration_Stat35: 3.0110804836382243e-17 + syst_JES_EtaIntercalibration_Stat30: 5.85604319e-18 + syst_JES_EtaIntercalibration_Stat31: 2.39079234e-06 + syst_JES_EtaIntercalibration_Stat32: 2.49993935e-14 + syst_JES_EtaIntercalibration_Stat33: 2.37291059e-10 + syst_JES_EtaIntercalibration_Stat34: 2.43353247e-10 + syst_JES_EtaIntercalibration_Stat35: 3.01108048e-17 syst_JES_EtaIntercalibration_Stat36: 0.0 syst_JES_EtaIntercalibration_Stat37: 0.0 syst_JES_EtaIntercalibration_Stat38: 0.0 @@ -8416,220 +8416,220 @@ bins: syst_JES_EtaIntercalibration_Stat5: 0.0 syst_JES_EtaIntercalibration_Stat50: 0.0 syst_JES_EtaIntercalibration_Stat51: 0.0 - syst_JES_EtaIntercalibration_Stat52: 1.635931298274778e-17 - syst_JES_EtaIntercalibration_Stat53: 7.382428583515049e-14 - syst_JES_EtaIntercalibration_Stat54: 8.571034455466119e-07 - syst_JES_EtaIntercalibration_Stat55: 2.382570958655299e-10 - syst_JES_EtaIntercalibration_Stat56: 2.437021759706325e-10 - syst_JES_EtaIntercalibration_Stat57: 1.6389236467877326e-16 + syst_JES_EtaIntercalibration_Stat52: 1.63593130e-17 + syst_JES_EtaIntercalibration_Stat53: 7.38242858e-14 + syst_JES_EtaIntercalibration_Stat54: 8.57103446e-07 + syst_JES_EtaIntercalibration_Stat55: 2.38257096e-10 + syst_JES_EtaIntercalibration_Stat56: 2.43702176e-10 + syst_JES_EtaIntercalibration_Stat57: 1.63892365e-16 syst_JES_EtaIntercalibration_Stat58: 0.0 syst_JES_EtaIntercalibration_Stat59: 0.0 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 1.8922655072689982e-19 - syst_JES_EtaIntercalibration_Stat62: 1.8922655072689982e-19 + syst_JES_EtaIntercalibration_Stat61: 1.89226551e-19 + syst_JES_EtaIntercalibration_Stat62: 1.89226551e-19 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 5.339912639734849e-18 - syst_JES_EtaIntercalibration_Stat69: 5.339912639734849e-18 + syst_JES_EtaIntercalibration_Stat68: 5.33991264e-18 + syst_JES_EtaIntercalibration_Stat69: 5.33991264e-18 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 4.625441681612687e-18 - syst_JES_EtaIntercalibration_Stat71: 4.625441681612687e-18 + syst_JES_EtaIntercalibration_Stat70: 4.62544168e-18 + syst_JES_EtaIntercalibration_Stat71: 4.62544168e-18 syst_JES_EtaIntercalibration_Stat72: 0.0 syst_JES_EtaIntercalibration_Stat73: 0.0 - syst_JES_EtaIntercalibration_Stat74: 4.569854877816143e-14 - syst_JES_EtaIntercalibration_Stat75: 3.888621743947334e-06 - syst_JES_EtaIntercalibration_Stat76: 3.94038775972235e-07 - syst_JES_EtaIntercalibration_Stat77: 5.990430368512766e-07 - syst_JES_EtaIntercalibration_Stat78: 6.746352141719003e-07 - syst_JES_EtaIntercalibration_Stat79: 1.4575289877048758e-16 + syst_JES_EtaIntercalibration_Stat74: 4.56985488e-14 + syst_JES_EtaIntercalibration_Stat75: 3.88862174e-06 + syst_JES_EtaIntercalibration_Stat76: 3.94038776e-07 + syst_JES_EtaIntercalibration_Stat77: 5.99043037e-07 + syst_JES_EtaIntercalibration_Stat78: 6.74635214e-07 + syst_JES_EtaIntercalibration_Stat79: 1.45752899e-16 syst_JES_EtaIntercalibration_Stat8: 0.0 syst_JES_EtaIntercalibration_Stat80: 0.0 syst_JES_EtaIntercalibration_Stat81: 0.0 - syst_JES_EtaIntercalibration_Stat82: 1.8922655072689982e-19 - syst_JES_EtaIntercalibration_Stat83: 1.8922655072689982e-19 - syst_JES_EtaIntercalibration_Stat84: 1.8922655072689982e-19 + syst_JES_EtaIntercalibration_Stat82: 1.89226551e-19 + syst_JES_EtaIntercalibration_Stat83: 1.89226551e-19 + syst_JES_EtaIntercalibration_Stat84: 1.89226551e-19 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 5.339912639734849e-18 - syst_JES_EtaIntercalibration_Stat9: 4.5701733221910745e-14 - syst_JES_EtaIntercalibration_Stat90: 5.339912639734849e-18 - syst_JES_EtaIntercalibration_Stat91: 4.625441681612687e-18 - syst_JES_EtaIntercalibration_Stat92: 4.625441681612687e-18 + syst_JES_EtaIntercalibration_Stat89: 5.33991264e-18 + syst_JES_EtaIntercalibration_Stat9: 4.57017332e-14 + syst_JES_EtaIntercalibration_Stat90: 5.33991264e-18 + syst_JES_EtaIntercalibration_Stat91: 4.62544168e-18 + syst_JES_EtaIntercalibration_Stat92: 4.62544168e-18 syst_JES_EtaIntercalibration_Stat93: 0.0 syst_JES_EtaIntercalibration_Stat94: 0.0 - syst_JES_EtaIntercalibration_Stat95: 4.5706688579681636e-14 - syst_JES_EtaIntercalibration_Stat96: 4.00102305260792e-06 - syst_JES_EtaIntercalibration_Stat97: 3.9272099510975985e-07 - syst_JES_EtaIntercalibration_Stat98: 9.026918120266739e-07 - syst_JES_EtaIntercalibration_Stat99: 6.624902121027902e-08 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.002218505521742058 - syst_JES_Flavour_Comp: 0.00621477425173272 - syst_JES_Gjet_Generator: 0.00866705444485034 - syst_JES_Gjet_OOC: 0.007107280967430512 - syst_JES_Gjet_Purity: 0.0014880006720428593 - syst_JES_Gjet_Stat1: 1.72663567378877e-05 - syst_JES_Gjet_Stat10: 0.00014199375576059674 - syst_JES_Gjet_Stat11: 0.00016541021733859127 - syst_JES_Gjet_Stat12: 0.0005278502320734548 - syst_JES_Gjet_Stat13: 0.0016965649854927456 - syst_JES_Gjet_Stat14: 0.0038971897297924818 - syst_JES_Gjet_Stat15: 0.0015829823119668772 - syst_JES_Gjet_Stat2: 1.5103081432277323e-05 - syst_JES_Gjet_Stat3: 1.4012071108512117e-05 - syst_JES_Gjet_Stat4: 3.071176159063495e-05 - syst_JES_Gjet_Stat5: 2.04201389564322e-05 - syst_JES_Gjet_Stat6: 5.63154390464995e-05 - syst_JES_Gjet_Stat7: 7.402033284848158e-05 - syst_JES_Gjet_Stat8: 5.403914692146796e-05 - syst_JES_Gjet_Stat9: 9.413917184148158e-05 - syst_JES_Gjet_Veto: 0.006899722168319533 - syst_JES_Gjet_dPhi: 0.0006709025189995935 - syst_JES_LArESZee: 0.01330024007302124 - syst_JES_LArEsmear: 0.0010366764104579596 - syst_JES_LAr_JVT: 0.0012959696784647396 - syst_JES_MJB_Alpha: 6.199890563550295e-05 - syst_JES_MJB_Asym: 0.0008995400213442422 - syst_JES_MJB_Beta: 8.513885834329704e-05 - syst_JES_MJB_Stat1: 9.168900302108208e-06 - syst_JES_MJB_Stat10: 6.901292252180023e-05 - syst_JES_MJB_Stat11: 4.600724807027693e-05 - syst_JES_MJB_Stat12: 5.210036852076961e-06 - syst_JES_MJB_Stat13: 2.4512158207713984e-05 - syst_JES_MJB_Stat14: 5.940403248096883e-05 - syst_JES_MJB_Stat15: 6.143079093581654e-05 - syst_JES_MJB_Stat16: 1.1689059532314822e-05 - syst_JES_MJB_Stat2: 1.679152429054611e-05 - syst_JES_MJB_Stat3: 6.892222772807043e-05 - syst_JES_MJB_Stat4: 4.021555762388481e-05 - syst_JES_MJB_Stat5: 5.580490569833445e-05 - syst_JES_MJB_Stat6: 5.96367191837378e-05 - syst_JES_MJB_Stat7: 5.595325995864763e-05 - syst_JES_MJB_Stat8: 6.190586886556071e-05 - syst_JES_MJB_Stat9: 7.089148379742096e-05 - syst_JES_MJB_Threshold: 0.0007176251302037855 - syst_JES_Pileup_MuOffset: 0.0016026499149845547 - syst_JES_Pileup_NPVOffset: 0.0016491024831707703 - syst_JES_Pileup_Pt_term: 0.0011072015263717803 - syst_JES_PunchThrough_MC15: 0.000692145235842883 - syst_JES_SingleParticle_HighPt: 1.8704809541933326e-16 - syst_JES_Zjet_MC: 0.003880554085436769 - syst_JES_Zjet_MuScale: 0.00025986738925844465 - syst_JES_Zjet_MuSmearID: 5.953481166510901e-05 - syst_JES_Zjet_MuSmearMS: 0.0010610530146981346 - syst_JES_Zjet_OOC: 0.002013040238047913 - syst_JES_Zjet_Stat1: 9.852617520232885e-05 - syst_JES_Zjet_Stat10: 0.00015875455111586564 - syst_JES_Zjet_Stat11: 0.00020635800808303998 - syst_JES_Zjet_Stat12: 0.0006359141530112378 - syst_JES_Zjet_Stat13: 0.0011560105968372433 - syst_JES_Zjet_Stat2: 1.4384595953658205e-23 - syst_JES_Zjet_Stat3: 4.916667774011175e-05 - syst_JES_Zjet_Stat4: 4.275757330578993e-05 - syst_JES_Zjet_Stat5: 7.09310207173138e-05 - syst_JES_Zjet_Stat6: 6.859077634784432e-05 - syst_JES_Zjet_Stat7: 6.550872060268006e-05 - syst_JES_Zjet_Stat8: 6.231080403910705e-05 - syst_JES_Zjet_Stat9: 9.134701349797923e-05 - syst_JES_Zjet_Veto: 0.0004296960873687355 - syst_JES_Zjet_dPhi: 0.00037179645462941146 - syst_PRW: 0.0002281 - syst_Unfolding_bias: 3.745e-05 - syst_cleaning: 0.002537454433088405 + syst_JES_EtaIntercalibration_Stat95: 4.57066886e-14 + syst_JES_EtaIntercalibration_Stat96: 4.00102305e-06 + syst_JES_EtaIntercalibration_Stat97: 3.92720995e-07 + syst_JES_EtaIntercalibration_Stat98: 9.02691812e-07 + syst_JES_EtaIntercalibration_Stat99: 6.62490212e-08 + syst_JES_EtaIntercalibration_TotalStat_MJB: 2.21850552e-03 + syst_JES_Flavour_Comp: 6.21477425e-03 + syst_JES_Gjet_Generator: 8.66705444e-03 + syst_JES_Gjet_OOC: 7.10728097e-03 + syst_JES_Gjet_Purity: 1.48800067e-03 + syst_JES_Gjet_Stat1: 1.72663567e-05 + syst_JES_Gjet_Stat10: 1.41993756e-04 + syst_JES_Gjet_Stat11: 1.65410217e-04 + syst_JES_Gjet_Stat12: 5.27850232e-04 + syst_JES_Gjet_Stat13: 1.69656499e-03 + syst_JES_Gjet_Stat14: 3.89718973e-03 + syst_JES_Gjet_Stat15: 1.58298231e-03 + syst_JES_Gjet_Stat2: 1.51030814e-05 + syst_JES_Gjet_Stat3: 1.40120711e-05 + syst_JES_Gjet_Stat4: 3.07117616e-05 + syst_JES_Gjet_Stat5: 2.04201390e-05 + syst_JES_Gjet_Stat6: 5.63154390e-05 + syst_JES_Gjet_Stat7: 7.40203328e-05 + syst_JES_Gjet_Stat8: 5.40391469e-05 + syst_JES_Gjet_Stat9: 9.41391718e-05 + syst_JES_Gjet_Veto: 6.89972217e-03 + syst_JES_Gjet_dPhi: 6.70902519e-04 + syst_JES_LArESZee: 1.33002401e-02 + syst_JES_LArEsmear: 1.03667641e-03 + syst_JES_LAr_JVT: 1.29596968e-03 + syst_JES_MJB_Alpha: 6.19989056e-05 + syst_JES_MJB_Asym: 8.99540021e-04 + syst_JES_MJB_Beta: 8.51388583e-05 + syst_JES_MJB_Stat1: 9.16890030e-06 + syst_JES_MJB_Stat10: 6.90129225e-05 + syst_JES_MJB_Stat11: 4.60072481e-05 + syst_JES_MJB_Stat12: 5.21003685e-06 + syst_JES_MJB_Stat13: 2.45121582e-05 + syst_JES_MJB_Stat14: 5.94040325e-05 + syst_JES_MJB_Stat15: 6.14307909e-05 + syst_JES_MJB_Stat16: 1.16890595e-05 + syst_JES_MJB_Stat2: 1.67915243e-05 + syst_JES_MJB_Stat3: 6.89222277e-05 + syst_JES_MJB_Stat4: 4.02155576e-05 + syst_JES_MJB_Stat5: 5.58049057e-05 + syst_JES_MJB_Stat6: 5.96367192e-05 + syst_JES_MJB_Stat7: 5.59532600e-05 + syst_JES_MJB_Stat8: 6.19058689e-05 + syst_JES_MJB_Stat9: 7.08914838e-05 + syst_JES_MJB_Threshold: 7.17625130e-04 + syst_JES_Pileup_MuOffset: 1.60264991e-03 + syst_JES_Pileup_NPVOffset: 1.64910248e-03 + syst_JES_Pileup_Pt_term: 1.10720153e-03 + syst_JES_PunchThrough_MC15: 6.92145236e-04 + syst_JES_SingleParticle_HighPt: 1.87048095e-16 + syst_JES_Zjet_MC: 3.88055409e-03 + syst_JES_Zjet_MuScale: 2.59867389e-04 + syst_JES_Zjet_MuSmearID: 5.95348117e-05 + syst_JES_Zjet_MuSmearMS: 1.06105301e-03 + syst_JES_Zjet_OOC: 2.01304024e-03 + syst_JES_Zjet_Stat1: 9.85261752e-05 + syst_JES_Zjet_Stat10: 1.58754551e-04 + syst_JES_Zjet_Stat11: 2.06358008e-04 + syst_JES_Zjet_Stat12: 6.35914153e-04 + syst_JES_Zjet_Stat13: 1.15601060e-03 + syst_JES_Zjet_Stat2: 1.43845960e-23 + syst_JES_Zjet_Stat3: 4.91666777e-05 + syst_JES_Zjet_Stat4: 4.27575733e-05 + syst_JES_Zjet_Stat5: 7.09310207e-05 + syst_JES_Zjet_Stat6: 6.85907763e-05 + syst_JES_Zjet_Stat7: 6.55087206e-05 + syst_JES_Zjet_Stat8: 6.23108040e-05 + syst_JES_Zjet_Stat9: 9.13470135e-05 + syst_JES_Zjet_Veto: 4.29696087e-04 + syst_JES_Zjet_dPhi: 3.71796455e-04 + syst_PRW: 2.28100000e-04 + syst_Unfolding_bias: 3.74500000e-05 + syst_cleaning: 2.53745443e-03 syst_lumi: 0.008686 - syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0007964003139125449 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0019825213113608643 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 0.00014081904798357358 + syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 7.96400314e-04 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.98252131e-03 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 1.40819048e-04 syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 0.0016840480990755581 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0006654503043052876 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0015580160461304627 -- stat: 0.0014195 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 1.68404810e-03 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 6.65450304e-04 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.55801605e-03 +- stat: 1.41950000e-03 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.0005960426557722189 - syst_JER_NP1: 5.945187696784686e-05 - syst_JER_NP2: 0.00021962686538763877 - syst_JER_NP3: 8.954695346576565e-05 - syst_JER_NP4: 8.782487745508102e-05 - syst_JER_NP5: 6.630435506058408e-05 - syst_JER_NP6: 8.068600668641372e-05 - syst_JER_NP7: 7.72687160175449e-05 - syst_JER_NP8: 0.00017150599843737243 - syst_JES_EtaIntercalibration_Modelling: 0.003086610884125176 + syst_JER_NP0: 5.96042656e-04 + syst_JER_NP1: 5.94518770e-05 + syst_JER_NP2: 2.19626865e-04 + syst_JER_NP3: 8.95469535e-05 + syst_JER_NP4: 8.78248775e-05 + syst_JER_NP5: 6.63043551e-05 + syst_JER_NP6: 8.06860067e-05 + syst_JER_NP7: 7.72687160e-05 + syst_JER_NP8: 1.71505998e-04 + syst_JES_EtaIntercalibration_Modelling: 3.08661088e-03 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 - syst_JES_EtaIntercalibration_Stat10: 5.4915073675175927e-17 - syst_JES_EtaIntercalibration_Stat100: 3.075372573770534e-15 + syst_JES_EtaIntercalibration_Stat10: 5.49150737e-17 + syst_JES_EtaIntercalibration_Stat100: 3.07537257e-15 syst_JES_EtaIntercalibration_Stat101: 0.0 syst_JES_EtaIntercalibration_Stat102: 0.0 - syst_JES_EtaIntercalibration_Stat103: 4.9190242934956113e-20 - syst_JES_EtaIntercalibration_Stat104: 4.9190242934956113e-20 - syst_JES_EtaIntercalibration_Stat105: 4.9190242934956113e-20 + syst_JES_EtaIntercalibration_Stat103: 4.91902429e-20 + syst_JES_EtaIntercalibration_Stat104: 4.91902429e-20 + syst_JES_EtaIntercalibration_Stat105: 4.91902429e-20 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 1.271325292755556e-18 - syst_JES_EtaIntercalibration_Stat11: 3.07872031045368e-15 - syst_JES_EtaIntercalibration_Stat110: 1.2471943019433659e-18 - syst_JES_EtaIntercalibration_Stat111: 1.1200306547144146e-18 - syst_JES_EtaIntercalibration_Stat112: 1.1200306547144146e-18 + syst_JES_EtaIntercalibration_Stat109: 1.27132529e-18 + syst_JES_EtaIntercalibration_Stat11: 3.07872031e-15 + syst_JES_EtaIntercalibration_Stat110: 1.24719430e-18 + syst_JES_EtaIntercalibration_Stat111: 1.12003065e-18 + syst_JES_EtaIntercalibration_Stat112: 1.12003065e-18 syst_JES_EtaIntercalibration_Stat113: 0.0 - syst_JES_EtaIntercalibration_Stat114: 1.4384681956859525e-18 - syst_JES_EtaIntercalibration_Stat115: 1.9610272894582575e-13 - syst_JES_EtaIntercalibration_Stat116: 5.364426227472981e-07 - syst_JES_EtaIntercalibration_Stat117: 5.959544529576065e-07 - syst_JES_EtaIntercalibration_Stat118: 3.2152888382033424e-06 - syst_JES_EtaIntercalibration_Stat119: 1.6808613357442666e-06 - syst_JES_EtaIntercalibration_Stat12: 3.7975211778471593e-11 - syst_JES_EtaIntercalibration_Stat120: 3.8772377656650765e-11 - syst_JES_EtaIntercalibration_Stat121: 6.803495572130551e-18 + syst_JES_EtaIntercalibration_Stat114: 1.43846820e-18 + syst_JES_EtaIntercalibration_Stat115: 1.96102729e-13 + syst_JES_EtaIntercalibration_Stat116: 5.36442623e-07 + syst_JES_EtaIntercalibration_Stat117: 5.95954453e-07 + syst_JES_EtaIntercalibration_Stat118: 3.21528884e-06 + syst_JES_EtaIntercalibration_Stat119: 1.68086134e-06 + syst_JES_EtaIntercalibration_Stat12: 3.79752118e-11 + syst_JES_EtaIntercalibration_Stat120: 3.87723777e-11 + syst_JES_EtaIntercalibration_Stat121: 6.80349557e-18 syst_JES_EtaIntercalibration_Stat122: 0.0 - syst_JES_EtaIntercalibration_Stat123: 4.9190242934956113e-20 - syst_JES_EtaIntercalibration_Stat124: 4.9190242934956113e-20 - syst_JES_EtaIntercalibration_Stat125: 4.9190242934956113e-20 + syst_JES_EtaIntercalibration_Stat123: 4.91902429e-20 + syst_JES_EtaIntercalibration_Stat124: 4.91902429e-20 + syst_JES_EtaIntercalibration_Stat125: 4.91902429e-20 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 1.271325292755556e-18 - syst_JES_EtaIntercalibration_Stat129: 1.2471943019433659e-18 + syst_JES_EtaIntercalibration_Stat128: 1.27132529e-18 + syst_JES_EtaIntercalibration_Stat129: 1.24719430e-18 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 7.908543987359493e-20 + syst_JES_EtaIntercalibration_Stat130: 7.90854399e-20 syst_JES_EtaIntercalibration_Stat131: 0.0 syst_JES_EtaIntercalibration_Stat132: 0.0 - syst_JES_EtaIntercalibration_Stat133: 1.4384681956859525e-18 - syst_JES_EtaIntercalibration_Stat134: 1.6601625383691787e-06 - syst_JES_EtaIntercalibration_Stat135: 1.2214119483204675e-06 - syst_JES_EtaIntercalibration_Stat136: 1.7681399124503693e-06 - syst_JES_EtaIntercalibration_Stat137: 2.6826115540644344e-06 - syst_JES_EtaIntercalibration_Stat138: 1.1248415269196814e-06 - syst_JES_EtaIntercalibration_Stat139: 1.6350029380707547e-13 + syst_JES_EtaIntercalibration_Stat133: 1.43846820e-18 + syst_JES_EtaIntercalibration_Stat134: 1.66016254e-06 + syst_JES_EtaIntercalibration_Stat135: 1.22141195e-06 + syst_JES_EtaIntercalibration_Stat136: 1.76813991e-06 + syst_JES_EtaIntercalibration_Stat137: 2.68261155e-06 + syst_JES_EtaIntercalibration_Stat138: 1.12484153e-06 + syst_JES_EtaIntercalibration_Stat139: 1.63500294e-13 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 6.803495572130551e-18 + syst_JES_EtaIntercalibration_Stat140: 6.80349557e-18 syst_JES_EtaIntercalibration_Stat141: 0.0 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 4.9190242934956113e-20 - syst_JES_EtaIntercalibration_Stat144: 4.9190242934956113e-20 + syst_JES_EtaIntercalibration_Stat143: 4.91902429e-20 + syst_JES_EtaIntercalibration_Stat144: 4.91902429e-20 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 7.908543987359493e-20 - syst_JES_EtaIntercalibration_Stat148: 7.908543987359493e-20 + syst_JES_EtaIntercalibration_Stat147: 7.90854399e-20 + syst_JES_EtaIntercalibration_Stat148: 7.90854399e-20 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 syst_JES_EtaIntercalibration_Stat150: 0.0 syst_JES_EtaIntercalibration_Stat151: 0.0 - syst_JES_EtaIntercalibration_Stat152: 6.909150671449871e-07 - syst_JES_EtaIntercalibration_Stat153: 2.5366945026944022e-06 - syst_JES_EtaIntercalibration_Stat154: 2.258066872349001e-06 - syst_JES_EtaIntercalibration_Stat155: 2.6422185162283606e-06 - syst_JES_EtaIntercalibration_Stat156: 2.360133510524352e-06 - syst_JES_EtaIntercalibration_Stat157: 7.213445030462213e-11 + syst_JES_EtaIntercalibration_Stat152: 6.90915067e-07 + syst_JES_EtaIntercalibration_Stat153: 2.53669450e-06 + syst_JES_EtaIntercalibration_Stat154: 2.25806687e-06 + syst_JES_EtaIntercalibration_Stat155: 2.64221852e-06 + syst_JES_EtaIntercalibration_Stat156: 2.36013351e-06 + syst_JES_EtaIntercalibration_Stat157: 7.21344503e-11 syst_JES_EtaIntercalibration_Stat158: 0.0 syst_JES_EtaIntercalibration_Stat159: 0.0 syst_JES_EtaIntercalibration_Stat16: 0.0 @@ -8638,18 +8638,18 @@ bins: syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 7.908543987359493e-20 + syst_JES_EtaIntercalibration_Stat165: 7.90854399e-20 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 4.838829817218209e-06 - syst_JES_EtaIntercalibration_Stat171: 3.0304469967316705e-06 - syst_JES_EtaIntercalibration_Stat172: 4.052667111915312e-06 - syst_JES_EtaIntercalibration_Stat173: 5.3549516104256256e-06 - syst_JES_EtaIntercalibration_Stat174: 3.6123843926138313e-06 - syst_JES_EtaIntercalibration_Stat175: 1.4783000600351744e-10 + syst_JES_EtaIntercalibration_Stat170: 4.83882982e-06 + syst_JES_EtaIntercalibration_Stat171: 3.03044700e-06 + syst_JES_EtaIntercalibration_Stat172: 4.05266711e-06 + syst_JES_EtaIntercalibration_Stat173: 5.35495161e-06 + syst_JES_EtaIntercalibration_Stat174: 3.61238439e-06 + syst_JES_EtaIntercalibration_Stat175: 1.47830006e-10 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 syst_JES_EtaIntercalibration_Stat178: 0.0 @@ -8662,14 +8662,14 @@ bins: syst_JES_EtaIntercalibration_Stat184: 0.0 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 - syst_JES_EtaIntercalibration_Stat187: 4.6124885636714596e-07 - syst_JES_EtaIntercalibration_Stat188: 1.6352239319126906e-05 - syst_JES_EtaIntercalibration_Stat189: 1.9098342860049402e-05 + syst_JES_EtaIntercalibration_Stat187: 4.61248856e-07 + syst_JES_EtaIntercalibration_Stat188: 1.63522393e-05 + syst_JES_EtaIntercalibration_Stat189: 1.90983429e-05 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 2.2310353538211803e-05 - syst_JES_EtaIntercalibration_Stat191: 1.6699991017961657e-05 - syst_JES_EtaIntercalibration_Stat192: 1.4805311310472335e-06 - syst_JES_EtaIntercalibration_Stat193: 3.92569315535486e-11 + syst_JES_EtaIntercalibration_Stat190: 2.23103535e-05 + syst_JES_EtaIntercalibration_Stat191: 1.66999910e-05 + syst_JES_EtaIntercalibration_Stat192: 1.48053113e-06 + syst_JES_EtaIntercalibration_Stat193: 3.92569316e-11 syst_JES_EtaIntercalibration_Stat194: 0.0 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 @@ -8680,13 +8680,13 @@ bins: syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 syst_JES_EtaIntercalibration_Stat201: 0.0 - syst_JES_EtaIntercalibration_Stat202: 1.103326183637459e-06 - syst_JES_EtaIntercalibration_Stat203: 3.1244427903227806e-05 - syst_JES_EtaIntercalibration_Stat204: 5.078028357541931e-05 - syst_JES_EtaIntercalibration_Stat205: 5.100516517961686e-05 - syst_JES_EtaIntercalibration_Stat206: 3.8174265372761266e-05 - syst_JES_EtaIntercalibration_Stat207: 6.968214028716397e-07 - syst_JES_EtaIntercalibration_Stat208: 3.92569315535486e-11 + syst_JES_EtaIntercalibration_Stat202: 1.10332618e-06 + syst_JES_EtaIntercalibration_Stat203: 3.12444279e-05 + syst_JES_EtaIntercalibration_Stat204: 5.07802836e-05 + syst_JES_EtaIntercalibration_Stat205: 5.10051652e-05 + syst_JES_EtaIntercalibration_Stat206: 3.81742654e-05 + syst_JES_EtaIntercalibration_Stat207: 6.96821403e-07 + syst_JES_EtaIntercalibration_Stat208: 3.92569316e-11 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 @@ -8694,38 +8694,38 @@ bins: syst_JES_EtaIntercalibration_Stat212: 0.0 syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 - syst_JES_EtaIntercalibration_Stat215: 1.0615112434637704e-06 - syst_JES_EtaIntercalibration_Stat216: 3.857335187665184e-05 - syst_JES_EtaIntercalibration_Stat217: 5.327248328170934e-05 - syst_JES_EtaIntercalibration_Stat218: 6.170110128676798e-05 - syst_JES_EtaIntercalibration_Stat219: 4.357516580576602e-05 + syst_JES_EtaIntercalibration_Stat215: 1.06151124e-06 + syst_JES_EtaIntercalibration_Stat216: 3.85733519e-05 + syst_JES_EtaIntercalibration_Stat217: 5.32724833e-05 + syst_JES_EtaIntercalibration_Stat218: 6.17011013e-05 + syst_JES_EtaIntercalibration_Stat219: 4.35751658e-05 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 1.227852067148156e-06 + syst_JES_EtaIntercalibration_Stat220: 1.22785207e-06 syst_JES_EtaIntercalibration_Stat221: 0.0 syst_JES_EtaIntercalibration_Stat222: 0.0 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 - syst_JES_EtaIntercalibration_Stat227: 2.4587469877968333e-06 - syst_JES_EtaIntercalibration_Stat228: 0.00010930862774731006 - syst_JES_EtaIntercalibration_Stat229: 0.00017025604247720551 + syst_JES_EtaIntercalibration_Stat227: 2.45874699e-06 + syst_JES_EtaIntercalibration_Stat228: 1.09308628e-04 + syst_JES_EtaIntercalibration_Stat229: 1.70256042e-04 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 0.00016230360439620556 - syst_JES_EtaIntercalibration_Stat231: 0.00014106040833628688 - syst_JES_EtaIntercalibration_Stat232: 7.305157955171127e-07 + syst_JES_EtaIntercalibration_Stat230: 1.62303604e-04 + syst_JES_EtaIntercalibration_Stat231: 1.41060408e-04 + syst_JES_EtaIntercalibration_Stat232: 7.30515796e-07 syst_JES_EtaIntercalibration_Stat233: 0.0 syst_JES_EtaIntercalibration_Stat234: 0.0 syst_JES_EtaIntercalibration_Stat235: 0.0 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 - syst_JES_EtaIntercalibration_Stat238: 3.1976131752685736e-07 - syst_JES_EtaIntercalibration_Stat239: 1.3103359416577109e-05 + syst_JES_EtaIntercalibration_Stat238: 3.19761318e-07 + syst_JES_EtaIntercalibration_Stat239: 1.31033594e-05 syst_JES_EtaIntercalibration_Stat24: 0.0 - syst_JES_EtaIntercalibration_Stat240: 1.6282746297845456e-05 - syst_JES_EtaIntercalibration_Stat241: 2.5344638486275552e-05 - syst_JES_EtaIntercalibration_Stat242: 1.1003751303532809e-05 - syst_JES_EtaIntercalibration_Stat243: 7.410579380183441e-08 + syst_JES_EtaIntercalibration_Stat240: 1.62827463e-05 + syst_JES_EtaIntercalibration_Stat241: 2.53446385e-05 + syst_JES_EtaIntercalibration_Stat242: 1.10037513e-05 + syst_JES_EtaIntercalibration_Stat243: 7.41057938e-08 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 syst_JES_EtaIntercalibration_Stat25: 0.0 @@ -8734,12 +8734,12 @@ bins: syst_JES_EtaIntercalibration_Stat28: 0.0 syst_JES_EtaIntercalibration_Stat29: 0.0 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 1.3809739923329478e-18 - syst_JES_EtaIntercalibration_Stat31: 1.572437811170922e-06 - syst_JES_EtaIntercalibration_Stat32: 3.866913036260319e-15 - syst_JES_EtaIntercalibration_Stat33: 3.800987345023031e-11 - syst_JES_EtaIntercalibration_Stat34: 3.897982408774754e-11 - syst_JES_EtaIntercalibration_Stat35: 6.594335335792607e-18 + syst_JES_EtaIntercalibration_Stat30: 1.38097399e-18 + syst_JES_EtaIntercalibration_Stat31: 1.57243781e-06 + syst_JES_EtaIntercalibration_Stat32: 3.86691304e-15 + syst_JES_EtaIntercalibration_Stat33: 3.80098735e-11 + syst_JES_EtaIntercalibration_Stat34: 3.89798241e-11 + syst_JES_EtaIntercalibration_Stat35: 6.59433534e-18 syst_JES_EtaIntercalibration_Stat36: 0.0 syst_JES_EtaIntercalibration_Stat37: 0.0 syst_JES_EtaIntercalibration_Stat38: 0.0 @@ -8758,220 +8758,220 @@ bins: syst_JES_EtaIntercalibration_Stat5: 0.0 syst_JES_EtaIntercalibration_Stat50: 0.0 syst_JES_EtaIntercalibration_Stat51: 0.0 - syst_JES_EtaIntercalibration_Stat52: 3.0101169184393814e-18 - syst_JES_EtaIntercalibration_Stat53: 1.2353224491229002e-14 - syst_JES_EtaIntercalibration_Stat54: 6.336704879873094e-07 - syst_JES_EtaIntercalibration_Stat55: 3.816797152541218e-11 - syst_JES_EtaIntercalibration_Stat56: 3.9023538015148635e-11 - syst_JES_EtaIntercalibration_Stat57: 3.2520833487935077e-17 + syst_JES_EtaIntercalibration_Stat52: 3.01011692e-18 + syst_JES_EtaIntercalibration_Stat53: 1.23532245e-14 + syst_JES_EtaIntercalibration_Stat54: 6.33670488e-07 + syst_JES_EtaIntercalibration_Stat55: 3.81679715e-11 + syst_JES_EtaIntercalibration_Stat56: 3.90235380e-11 + syst_JES_EtaIntercalibration_Stat57: 3.25208335e-17 syst_JES_EtaIntercalibration_Stat58: 0.0 syst_JES_EtaIntercalibration_Stat59: 0.0 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 4.9190242934956113e-20 - syst_JES_EtaIntercalibration_Stat62: 4.9190242934956113e-20 + syst_JES_EtaIntercalibration_Stat61: 4.91902429e-20 + syst_JES_EtaIntercalibration_Stat62: 4.91902429e-20 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 1.271325292755556e-18 - syst_JES_EtaIntercalibration_Stat69: 1.271325292755556e-18 + syst_JES_EtaIntercalibration_Stat68: 1.27132529e-18 + syst_JES_EtaIntercalibration_Stat69: 1.27132529e-18 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 1.1200306547144146e-18 - syst_JES_EtaIntercalibration_Stat71: 1.1200306547144146e-18 + syst_JES_EtaIntercalibration_Stat70: 1.12003065e-18 + syst_JES_EtaIntercalibration_Stat71: 1.12003065e-18 syst_JES_EtaIntercalibration_Stat72: 0.0 syst_JES_EtaIntercalibration_Stat73: 0.0 - syst_JES_EtaIntercalibration_Stat74: 7.837354751233035e-15 - syst_JES_EtaIntercalibration_Stat75: 1.3631259690505496e-06 - syst_JES_EtaIntercalibration_Stat76: 2.5972057981171377e-07 - syst_JES_EtaIntercalibration_Stat77: 4.285624429415158e-07 - syst_JES_EtaIntercalibration_Stat78: 5.007361112391602e-07 - syst_JES_EtaIntercalibration_Stat79: 2.6451364804107935e-17 + syst_JES_EtaIntercalibration_Stat74: 7.83735475e-15 + syst_JES_EtaIntercalibration_Stat75: 1.36312597e-06 + syst_JES_EtaIntercalibration_Stat76: 2.59720580e-07 + syst_JES_EtaIntercalibration_Stat77: 4.28562443e-07 + syst_JES_EtaIntercalibration_Stat78: 5.00736111e-07 + syst_JES_EtaIntercalibration_Stat79: 2.64513648e-17 syst_JES_EtaIntercalibration_Stat8: 0.0 syst_JES_EtaIntercalibration_Stat80: 0.0 syst_JES_EtaIntercalibration_Stat81: 0.0 - syst_JES_EtaIntercalibration_Stat82: 4.9190242934956113e-20 - syst_JES_EtaIntercalibration_Stat83: 4.9190242934956113e-20 - syst_JES_EtaIntercalibration_Stat84: 4.9190242934956113e-20 + syst_JES_EtaIntercalibration_Stat82: 4.91902429e-20 + syst_JES_EtaIntercalibration_Stat83: 4.91902429e-20 + syst_JES_EtaIntercalibration_Stat84: 4.91902429e-20 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 1.271325292755556e-18 - syst_JES_EtaIntercalibration_Stat9: 7.834347179368234e-15 - syst_JES_EtaIntercalibration_Stat90: 1.271325292755556e-18 - syst_JES_EtaIntercalibration_Stat91: 1.1200306547144146e-18 - syst_JES_EtaIntercalibration_Stat92: 1.1200306547144146e-18 + syst_JES_EtaIntercalibration_Stat89: 1.27132529e-18 + syst_JES_EtaIntercalibration_Stat9: 7.83434718e-15 + syst_JES_EtaIntercalibration_Stat90: 1.27132529e-18 + syst_JES_EtaIntercalibration_Stat91: 1.12003065e-18 + syst_JES_EtaIntercalibration_Stat92: 1.12003065e-18 syst_JES_EtaIntercalibration_Stat93: 0.0 syst_JES_EtaIntercalibration_Stat94: 0.0 - syst_JES_EtaIntercalibration_Stat95: 7.839517695628666e-15 - syst_JES_EtaIntercalibration_Stat96: 1.355548194458611e-06 - syst_JES_EtaIntercalibration_Stat97: 2.58902027802024e-07 - syst_JES_EtaIntercalibration_Stat98: 6.462750401338427e-07 - syst_JES_EtaIntercalibration_Stat99: 1.5962967158808538e-08 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0015615014409215253 - syst_JES_Flavour_Comp: 0.004230127037099477 - syst_JES_Gjet_Generator: 0.005821894021708056 - syst_JES_Gjet_OOC: 0.004781703566721802 - syst_JES_Gjet_Purity: 0.0009294015493854095 - syst_JES_Gjet_Stat1: 1.1395598393678148e-05 - syst_JES_Gjet_Stat10: 9.288285417664555e-05 - syst_JES_Gjet_Stat11: 0.00010579939354741123 - syst_JES_Gjet_Stat12: 0.00033182037309363626 - syst_JES_Gjet_Stat13: 0.0010590604326477313 - syst_JES_Gjet_Stat14: 0.0026835269236584903 - syst_JES_Gjet_Stat15: 0.001688014810361568 - syst_JES_Gjet_Stat2: 1.2475262271792124e-05 - syst_JES_Gjet_Stat3: 9.238677989842488e-06 - syst_JES_Gjet_Stat4: 1.9264171407044737e-05 - syst_JES_Gjet_Stat5: 1.5532635602176468e-05 - syst_JES_Gjet_Stat6: 3.9187221807625e-05 - syst_JES_Gjet_Stat7: 5.045248532034869e-05 - syst_JES_Gjet_Stat8: 3.545003699574938e-05 - syst_JES_Gjet_Stat9: 6.2821848707277e-05 - syst_JES_Gjet_Veto: 0.004720250072824532 - syst_JES_Gjet_dPhi: 0.0004505828974783663 - syst_JES_LArESZee: 0.008973693553938646 - syst_JES_LArEsmear: 0.0007007913312820016 - syst_JES_LAr_JVT: 0.000877538335344958 - syst_JES_MJB_Alpha: 4.164182512810888e-05 - syst_JES_MJB_Asym: 0.0007211059197510446 - syst_JES_MJB_Beta: 5.904213495462371e-05 - syst_JES_MJB_Stat1: 4.712934903804634e-06 - syst_JES_MJB_Stat10: 6.747031995625928e-05 - syst_JES_MJB_Stat11: 5.819881162876094e-05 - syst_JES_MJB_Stat12: 3.6627984861305166e-05 - syst_JES_MJB_Stat13: 1.5855188764250016e-05 - syst_JES_MJB_Stat14: 4.032844294973462e-05 - syst_JES_MJB_Stat15: 6.006968703098095e-05 - syst_JES_MJB_Stat16: 2.3875449733984074e-05 - syst_JES_MJB_Stat2: 6.971692692596254e-06 - syst_JES_MJB_Stat3: 3.022423985810065e-05 - syst_JES_MJB_Stat4: 2.0641445564688536e-05 - syst_JES_MJB_Stat5: 3.029981188060414e-05 - syst_JES_MJB_Stat6: 3.433057326567676e-05 - syst_JES_MJB_Stat7: 3.495082402462065e-05 - syst_JES_MJB_Stat8: 4.669997938971708e-05 - syst_JES_MJB_Stat9: 6.10051823618289e-05 - syst_JES_MJB_Threshold: 0.0005134957326989193 - syst_JES_Pileup_MuOffset: 0.0010946478646121775 - syst_JES_Pileup_NPVOffset: 0.0011282111903362774 - syst_JES_Pileup_Pt_term: 0.0007266462963505697 - syst_JES_PunchThrough_MC15: 0.0005520922205573993 - syst_JES_SingleParticle_HighPt: 5.261083039641173e-14 - syst_JES_Zjet_MC: 0.002454068866189374 - syst_JES_Zjet_MuScale: 0.00016761679510120698 - syst_JES_Zjet_MuSmearID: 3.8199551044482185e-05 - syst_JES_Zjet_MuSmearMS: 0.000662996538452502 - syst_JES_Zjet_OOC: 0.001308468726221609 - syst_JES_Zjet_Stat1: 6.447805905887677e-05 - syst_JES_Zjet_Stat10: 0.0001079553324296674 - syst_JES_Zjet_Stat11: 0.00013483755040788898 - syst_JES_Zjet_Stat12: 0.00041025049360116555 - syst_JES_Zjet_Stat13: 0.0007203586537274331 - syst_JES_Zjet_Stat2: 1.2603503986987108e-19 - syst_JES_Zjet_Stat3: 4.118772480970513e-05 - syst_JES_Zjet_Stat4: 3.373806566772909e-05 - syst_JES_Zjet_Stat5: 5.574192138776704e-05 - syst_JES_Zjet_Stat6: 4.699205082511296e-05 - syst_JES_Zjet_Stat7: 4.617480156968733e-05 - syst_JES_Zjet_Stat8: 4.594124399708828e-05 - syst_JES_Zjet_Stat9: 6.279829675238016e-05 - syst_JES_Zjet_Veto: 0.00027764163952836757 - syst_JES_Zjet_dPhi: 0.0002452078862924274 - syst_PRW: 0.0001504 - syst_Unfolding_bias: 2.469e-05 - syst_cleaning: 0.001693945689802362 + syst_JES_EtaIntercalibration_Stat95: 7.83951770e-15 + syst_JES_EtaIntercalibration_Stat96: 1.35554819e-06 + syst_JES_EtaIntercalibration_Stat97: 2.58902028e-07 + syst_JES_EtaIntercalibration_Stat98: 6.46275040e-07 + syst_JES_EtaIntercalibration_Stat99: 1.59629672e-08 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.56150144e-03 + syst_JES_Flavour_Comp: 4.23012704e-03 + syst_JES_Gjet_Generator: 5.82189402e-03 + syst_JES_Gjet_OOC: 4.78170357e-03 + syst_JES_Gjet_Purity: 9.29401549e-04 + syst_JES_Gjet_Stat1: 1.13955984e-05 + syst_JES_Gjet_Stat10: 9.28828542e-05 + syst_JES_Gjet_Stat11: 1.05799394e-04 + syst_JES_Gjet_Stat12: 3.31820373e-04 + syst_JES_Gjet_Stat13: 1.05906043e-03 + syst_JES_Gjet_Stat14: 2.68352692e-03 + syst_JES_Gjet_Stat15: 1.68801481e-03 + syst_JES_Gjet_Stat2: 1.24752623e-05 + syst_JES_Gjet_Stat3: 9.23867799e-06 + syst_JES_Gjet_Stat4: 1.92641714e-05 + syst_JES_Gjet_Stat5: 1.55326356e-05 + syst_JES_Gjet_Stat6: 3.91872218e-05 + syst_JES_Gjet_Stat7: 5.04524853e-05 + syst_JES_Gjet_Stat8: 3.54500370e-05 + syst_JES_Gjet_Stat9: 6.28218487e-05 + syst_JES_Gjet_Veto: 4.72025007e-03 + syst_JES_Gjet_dPhi: 4.50582897e-04 + syst_JES_LArESZee: 8.97369355e-03 + syst_JES_LArEsmear: 7.00791331e-04 + syst_JES_LAr_JVT: 8.77538335e-04 + syst_JES_MJB_Alpha: 4.16418251e-05 + syst_JES_MJB_Asym: 7.21105920e-04 + syst_JES_MJB_Beta: 5.90421350e-05 + syst_JES_MJB_Stat1: 4.71293490e-06 + syst_JES_MJB_Stat10: 6.74703200e-05 + syst_JES_MJB_Stat11: 5.81988116e-05 + syst_JES_MJB_Stat12: 3.66279849e-05 + syst_JES_MJB_Stat13: 1.58551888e-05 + syst_JES_MJB_Stat14: 4.03284429e-05 + syst_JES_MJB_Stat15: 6.00696870e-05 + syst_JES_MJB_Stat16: 2.38754497e-05 + syst_JES_MJB_Stat2: 6.97169269e-06 + syst_JES_MJB_Stat3: 3.02242399e-05 + syst_JES_MJB_Stat4: 2.06414456e-05 + syst_JES_MJB_Stat5: 3.02998119e-05 + syst_JES_MJB_Stat6: 3.43305733e-05 + syst_JES_MJB_Stat7: 3.49508240e-05 + syst_JES_MJB_Stat8: 4.66999794e-05 + syst_JES_MJB_Stat9: 6.10051824e-05 + syst_JES_MJB_Threshold: 5.13495733e-04 + syst_JES_Pileup_MuOffset: 1.09464786e-03 + syst_JES_Pileup_NPVOffset: 1.12821119e-03 + syst_JES_Pileup_Pt_term: 7.26646296e-04 + syst_JES_PunchThrough_MC15: 5.52092221e-04 + syst_JES_SingleParticle_HighPt: 5.26108304e-14 + syst_JES_Zjet_MC: 2.45406887e-03 + syst_JES_Zjet_MuScale: 1.67616795e-04 + syst_JES_Zjet_MuSmearID: 3.81995510e-05 + syst_JES_Zjet_MuSmearMS: 6.62996538e-04 + syst_JES_Zjet_OOC: 1.30846873e-03 + syst_JES_Zjet_Stat1: 6.44780591e-05 + syst_JES_Zjet_Stat10: 1.07955332e-04 + syst_JES_Zjet_Stat11: 1.34837550e-04 + syst_JES_Zjet_Stat12: 4.10250494e-04 + syst_JES_Zjet_Stat13: 7.20358654e-04 + syst_JES_Zjet_Stat2: 1.26035040e-19 + syst_JES_Zjet_Stat3: 4.11877248e-05 + syst_JES_Zjet_Stat4: 3.37380657e-05 + syst_JES_Zjet_Stat5: 5.57419214e-05 + syst_JES_Zjet_Stat6: 4.69920508e-05 + syst_JES_Zjet_Stat7: 4.61748016e-05 + syst_JES_Zjet_Stat8: 4.59412440e-05 + syst_JES_Zjet_Stat9: 6.27982968e-05 + syst_JES_Zjet_Veto: 2.77641640e-04 + syst_JES_Zjet_dPhi: 2.45207886e-04 + syst_PRW: 1.50400000e-04 + syst_Unfolding_bias: 2.46900000e-05 + syst_cleaning: 1.69394569e-03 syst_lumi: 0.005726 - syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0004772503116814069 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0012715547206078076 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 7.089522039601823e-05 + syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 4.77250312e-04 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.27155472e-03 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 7.08952204e-05 syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 0.0008477524800907396 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.00041889312181032527 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0010533037975816854 -- stat: 0.0011281 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 8.47752480e-04 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 4.18893122e-04 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.05330380e-03 +- stat: 1.12810000e-03 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.00039705038408242345 - syst_JER_NP1: 3.90807506964746e-05 - syst_JER_NP2: 0.00015483487979134418 - syst_JER_NP3: 5.182771917613199e-05 - syst_JER_NP4: 6.47153443937371e-05 - syst_JER_NP5: 4.7698092991229744e-05 - syst_JER_NP6: 5.5446623882793806e-05 - syst_JER_NP7: 5.158601045826282e-05 - syst_JER_NP8: 0.00011387920650847547 - syst_JES_EtaIntercalibration_Modelling: 0.0021660115419821755 + syst_JER_NP0: 3.97050384e-04 + syst_JER_NP1: 3.90807507e-05 + syst_JER_NP2: 1.54834880e-04 + syst_JER_NP3: 5.18277192e-05 + syst_JER_NP4: 6.47153444e-05 + syst_JER_NP5: 4.76980930e-05 + syst_JER_NP6: 5.54466239e-05 + syst_JER_NP7: 5.15860105e-05 + syst_JER_NP8: 1.13879207e-04 + syst_JES_EtaIntercalibration_Modelling: 2.16601154e-03 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 - syst_JES_EtaIntercalibration_Stat10: 1.106139651355108e-17 - syst_JES_EtaIntercalibration_Stat100: 4.977644503929544e-16 + syst_JES_EtaIntercalibration_Stat10: 1.10613965e-17 + syst_JES_EtaIntercalibration_Stat100: 4.97764450e-16 syst_JES_EtaIntercalibration_Stat101: 0.0 syst_JES_EtaIntercalibration_Stat102: 0.0 - syst_JES_EtaIntercalibration_Stat103: 1.362257960152922e-20 - syst_JES_EtaIntercalibration_Stat104: 1.362257960152922e-20 - syst_JES_EtaIntercalibration_Stat105: 1.362257960152922e-20 + syst_JES_EtaIntercalibration_Stat103: 1.36225796e-20 + syst_JES_EtaIntercalibration_Stat104: 1.36225796e-20 + syst_JES_EtaIntercalibration_Stat105: 1.36225796e-20 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 3.23287283232731e-19 - syst_JES_EtaIntercalibration_Stat11: 4.977914020952953e-16 - syst_JES_EtaIntercalibration_Stat110: 3.167901469427356e-19 - syst_JES_EtaIntercalibration_Stat111: 2.8985870264665163e-19 - syst_JES_EtaIntercalibration_Stat112: 2.8985870264665163e-19 + syst_JES_EtaIntercalibration_Stat109: 3.23287283e-19 + syst_JES_EtaIntercalibration_Stat11: 4.97791402e-16 + syst_JES_EtaIntercalibration_Stat110: 3.16790147e-19 + syst_JES_EtaIntercalibration_Stat111: 2.89858703e-19 + syst_JES_EtaIntercalibration_Stat112: 2.89858703e-19 syst_JES_EtaIntercalibration_Stat113: 0.0 - syst_JES_EtaIntercalibration_Stat114: 3.6269143910492287e-19 - syst_JES_EtaIntercalibration_Stat115: 3.24824682059415e-14 - syst_JES_EtaIntercalibration_Stat116: 4.2097528059851685e-07 - syst_JES_EtaIntercalibration_Stat117: 4.4589046726746694e-07 - syst_JES_EtaIntercalibration_Stat118: 2.215562413361447e-06 - syst_JES_EtaIntercalibration_Stat119: 1.1052505270299581e-06 - syst_JES_EtaIntercalibration_Stat12: 6.177358693950907e-12 - syst_JES_EtaIntercalibration_Stat120: 6.309932657785723e-12 - syst_JES_EtaIntercalibration_Stat121: 1.5978168699822891e-18 + syst_JES_EtaIntercalibration_Stat114: 3.62691439e-19 + syst_JES_EtaIntercalibration_Stat115: 3.24824682e-14 + syst_JES_EtaIntercalibration_Stat116: 4.20975281e-07 + syst_JES_EtaIntercalibration_Stat117: 4.45890467e-07 + syst_JES_EtaIntercalibration_Stat118: 2.21556241e-06 + syst_JES_EtaIntercalibration_Stat119: 1.10525053e-06 + syst_JES_EtaIntercalibration_Stat12: 6.17735869e-12 + syst_JES_EtaIntercalibration_Stat120: 6.30993266e-12 + syst_JES_EtaIntercalibration_Stat121: 1.59781687e-18 syst_JES_EtaIntercalibration_Stat122: 0.0 - syst_JES_EtaIntercalibration_Stat123: 1.362257960152922e-20 - syst_JES_EtaIntercalibration_Stat124: 1.362257960152922e-20 - syst_JES_EtaIntercalibration_Stat125: 1.362257960152922e-20 + syst_JES_EtaIntercalibration_Stat123: 1.36225796e-20 + syst_JES_EtaIntercalibration_Stat124: 1.36225796e-20 + syst_JES_EtaIntercalibration_Stat125: 1.36225796e-20 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 3.23287283232731e-19 - syst_JES_EtaIntercalibration_Stat129: 3.167901469427356e-19 + syst_JES_EtaIntercalibration_Stat128: 3.23287283e-19 + syst_JES_EtaIntercalibration_Stat129: 3.16790147e-19 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 2.1425468489627014e-20 + syst_JES_EtaIntercalibration_Stat130: 2.14254685e-20 syst_JES_EtaIntercalibration_Stat131: 0.0 syst_JES_EtaIntercalibration_Stat132: 0.0 - syst_JES_EtaIntercalibration_Stat133: 3.6269143910492287e-19 - syst_JES_EtaIntercalibration_Stat134: 1.0707524625763516e-06 - syst_JES_EtaIntercalibration_Stat135: 7.274691385206661e-07 - syst_JES_EtaIntercalibration_Stat136: 7.588650604685921e-07 - syst_JES_EtaIntercalibration_Stat137: 1.2808986718316168e-06 - syst_JES_EtaIntercalibration_Stat138: 7.663396701202411e-07 - syst_JES_EtaIntercalibration_Stat139: 2.883818182115509e-14 + syst_JES_EtaIntercalibration_Stat133: 3.62691439e-19 + syst_JES_EtaIntercalibration_Stat134: 1.07075246e-06 + syst_JES_EtaIntercalibration_Stat135: 7.27469139e-07 + syst_JES_EtaIntercalibration_Stat136: 7.58865060e-07 + syst_JES_EtaIntercalibration_Stat137: 1.28089867e-06 + syst_JES_EtaIntercalibration_Stat138: 7.66339670e-07 + syst_JES_EtaIntercalibration_Stat139: 2.88381818e-14 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 1.5978168699822891e-18 + syst_JES_EtaIntercalibration_Stat140: 1.59781687e-18 syst_JES_EtaIntercalibration_Stat141: 0.0 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 1.362257960152922e-20 - syst_JES_EtaIntercalibration_Stat144: 1.362257960152922e-20 + syst_JES_EtaIntercalibration_Stat143: 1.36225796e-20 + syst_JES_EtaIntercalibration_Stat144: 1.36225796e-20 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 2.1425468489627014e-20 - syst_JES_EtaIntercalibration_Stat148: 2.1425468489627014e-20 + syst_JES_EtaIntercalibration_Stat147: 2.14254685e-20 + syst_JES_EtaIntercalibration_Stat148: 2.14254685e-20 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 syst_JES_EtaIntercalibration_Stat150: 0.0 syst_JES_EtaIntercalibration_Stat151: 0.0 - syst_JES_EtaIntercalibration_Stat152: 4.587336563859935e-07 - syst_JES_EtaIntercalibration_Stat153: 1.280197238709723e-06 - syst_JES_EtaIntercalibration_Stat154: 1.4920379452279357e-06 - syst_JES_EtaIntercalibration_Stat155: 1.2533399060111347e-06 - syst_JES_EtaIntercalibration_Stat156: 1.5870128291857002e-06 - syst_JES_EtaIntercalibration_Stat157: 1.1743860467495347e-11 + syst_JES_EtaIntercalibration_Stat152: 4.58733656e-07 + syst_JES_EtaIntercalibration_Stat153: 1.28019724e-06 + syst_JES_EtaIntercalibration_Stat154: 1.49203795e-06 + syst_JES_EtaIntercalibration_Stat155: 1.25333991e-06 + syst_JES_EtaIntercalibration_Stat156: 1.58701283e-06 + syst_JES_EtaIntercalibration_Stat157: 1.17438605e-11 syst_JES_EtaIntercalibration_Stat158: 0.0 syst_JES_EtaIntercalibration_Stat159: 0.0 syst_JES_EtaIntercalibration_Stat16: 0.0 @@ -8980,18 +8980,18 @@ bins: syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 2.1425468489627014e-20 + syst_JES_EtaIntercalibration_Stat165: 2.14254685e-20 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 2.7363362128948997e-06 - syst_JES_EtaIntercalibration_Stat171: 1.5744886812867218e-06 - syst_JES_EtaIntercalibration_Stat172: 2.6597005000563504e-06 - syst_JES_EtaIntercalibration_Stat173: 3.606716235025983e-06 - syst_JES_EtaIntercalibration_Stat174: 1.978783181654827e-06 - syst_JES_EtaIntercalibration_Stat175: 3.27983120754712e-11 + syst_JES_EtaIntercalibration_Stat170: 2.73633621e-06 + syst_JES_EtaIntercalibration_Stat171: 1.57448868e-06 + syst_JES_EtaIntercalibration_Stat172: 2.65970050e-06 + syst_JES_EtaIntercalibration_Stat173: 3.60671624e-06 + syst_JES_EtaIntercalibration_Stat174: 1.97878318e-06 + syst_JES_EtaIntercalibration_Stat175: 3.27983121e-11 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 syst_JES_EtaIntercalibration_Stat178: 0.0 @@ -9004,14 +9004,14 @@ bins: syst_JES_EtaIntercalibration_Stat184: 0.0 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 - syst_JES_EtaIntercalibration_Stat187: 4.104099261713829e-07 - syst_JES_EtaIntercalibration_Stat188: 9.90257313782635e-06 - syst_JES_EtaIntercalibration_Stat189: 1.1640372975124122e-05 + syst_JES_EtaIntercalibration_Stat187: 4.10409926e-07 + syst_JES_EtaIntercalibration_Stat188: 9.90257314e-06 + syst_JES_EtaIntercalibration_Stat189: 1.16403730e-05 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 1.4606808275595321e-05 - syst_JES_EtaIntercalibration_Stat191: 1.1069238185168842e-05 - syst_JES_EtaIntercalibration_Stat192: 9.917228178780602e-07 - syst_JES_EtaIntercalibration_Stat193: 6.389535429121589e-12 + syst_JES_EtaIntercalibration_Stat190: 1.46068083e-05 + syst_JES_EtaIntercalibration_Stat191: 1.10692382e-05 + syst_JES_EtaIntercalibration_Stat192: 9.91722818e-07 + syst_JES_EtaIntercalibration_Stat193: 6.38953543e-12 syst_JES_EtaIntercalibration_Stat194: 0.0 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 @@ -9022,13 +9022,13 @@ bins: syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 syst_JES_EtaIntercalibration_Stat201: 0.0 - syst_JES_EtaIntercalibration_Stat202: 6.940288376573412e-07 - syst_JES_EtaIntercalibration_Stat203: 1.9375985136245332e-05 - syst_JES_EtaIntercalibration_Stat204: 3.101156074756639e-05 - syst_JES_EtaIntercalibration_Stat205: 3.2584614467567355e-05 - syst_JES_EtaIntercalibration_Stat206: 2.4366261510539525e-05 - syst_JES_EtaIntercalibration_Stat207: 7.721227671167326e-07 - syst_JES_EtaIntercalibration_Stat208: 6.389535429121589e-12 + syst_JES_EtaIntercalibration_Stat202: 6.94028838e-07 + syst_JES_EtaIntercalibration_Stat203: 1.93759851e-05 + syst_JES_EtaIntercalibration_Stat204: 3.10115607e-05 + syst_JES_EtaIntercalibration_Stat205: 3.25846145e-05 + syst_JES_EtaIntercalibration_Stat206: 2.43662615e-05 + syst_JES_EtaIntercalibration_Stat207: 7.72122767e-07 + syst_JES_EtaIntercalibration_Stat208: 6.38953543e-12 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 @@ -9036,38 +9036,38 @@ bins: syst_JES_EtaIntercalibration_Stat212: 0.0 syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 - syst_JES_EtaIntercalibration_Stat215: 7.410083315995847e-07 - syst_JES_EtaIntercalibration_Stat216: 2.4321332200354484e-05 - syst_JES_EtaIntercalibration_Stat217: 3.436041908941159e-05 - syst_JES_EtaIntercalibration_Stat218: 3.901749703658603e-05 - syst_JES_EtaIntercalibration_Stat219: 2.8439917369781508e-05 + syst_JES_EtaIntercalibration_Stat215: 7.41008332e-07 + syst_JES_EtaIntercalibration_Stat216: 2.43213322e-05 + syst_JES_EtaIntercalibration_Stat217: 3.43604191e-05 + syst_JES_EtaIntercalibration_Stat218: 3.90174970e-05 + syst_JES_EtaIntercalibration_Stat219: 2.84399174e-05 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 8.66154897622244e-07 + syst_JES_EtaIntercalibration_Stat220: 8.66154898e-07 syst_JES_EtaIntercalibration_Stat221: 0.0 syst_JES_EtaIntercalibration_Stat222: 0.0 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 - syst_JES_EtaIntercalibration_Stat227: 1.6014704204261784e-06 - syst_JES_EtaIntercalibration_Stat228: 7.383303054866433e-05 - syst_JES_EtaIntercalibration_Stat229: 0.00011595730970922014 + syst_JES_EtaIntercalibration_Stat227: 1.60147042e-06 + syst_JES_EtaIntercalibration_Stat228: 7.38330305e-05 + syst_JES_EtaIntercalibration_Stat229: 1.15957310e-04 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 0.00010849073819916611 - syst_JES_EtaIntercalibration_Stat231: 9.778960732102364e-05 - syst_JES_EtaIntercalibration_Stat232: 4.6591092697531793e-07 + syst_JES_EtaIntercalibration_Stat230: 1.08490738e-04 + syst_JES_EtaIntercalibration_Stat231: 9.77896073e-05 + syst_JES_EtaIntercalibration_Stat232: 4.65910927e-07 syst_JES_EtaIntercalibration_Stat233: 0.0 syst_JES_EtaIntercalibration_Stat234: 0.0 syst_JES_EtaIntercalibration_Stat235: 0.0 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 - syst_JES_EtaIntercalibration_Stat238: 2.677251459391142e-07 - syst_JES_EtaIntercalibration_Stat239: 9.378372673337312e-06 + syst_JES_EtaIntercalibration_Stat238: 2.67725146e-07 + syst_JES_EtaIntercalibration_Stat239: 9.37837267e-06 syst_JES_EtaIntercalibration_Stat24: 0.0 - syst_JES_EtaIntercalibration_Stat240: 1.1814251436295064e-05 - syst_JES_EtaIntercalibration_Stat241: 1.7463764628510084e-05 - syst_JES_EtaIntercalibration_Stat242: 8.918407411079626e-06 - syst_JES_EtaIntercalibration_Stat243: 7.142111505010266e-08 + syst_JES_EtaIntercalibration_Stat240: 1.18142514e-05 + syst_JES_EtaIntercalibration_Stat241: 1.74637646e-05 + syst_JES_EtaIntercalibration_Stat242: 8.91840741e-06 + syst_JES_EtaIntercalibration_Stat243: 7.14211151e-08 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 syst_JES_EtaIntercalibration_Stat25: 0.0 @@ -9076,12 +9076,12 @@ bins: syst_JES_EtaIntercalibration_Stat28: 0.0 syst_JES_EtaIntercalibration_Stat29: 0.0 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 3.4780243971973514e-19 - syst_JES_EtaIntercalibration_Stat31: 1.013990792611057e-06 - syst_JES_EtaIntercalibration_Stat32: 6.239175666704697e-16 - syst_JES_EtaIntercalibration_Stat33: 6.184291097124347e-12 - syst_JES_EtaIntercalibration_Stat34: 6.343640262747979e-12 - syst_JES_EtaIntercalibration_Stat35: 1.5447553699362886e-18 + syst_JES_EtaIntercalibration_Stat30: 3.47802440e-19 + syst_JES_EtaIntercalibration_Stat31: 1.01399079e-06 + syst_JES_EtaIntercalibration_Stat32: 6.23917567e-16 + syst_JES_EtaIntercalibration_Stat33: 6.18429110e-12 + syst_JES_EtaIntercalibration_Stat34: 6.34364026e-12 + syst_JES_EtaIntercalibration_Stat35: 1.54475537e-18 syst_JES_EtaIntercalibration_Stat36: 0.0 syst_JES_EtaIntercalibration_Stat37: 0.0 syst_JES_EtaIntercalibration_Stat38: 0.0 @@ -9100,220 +9100,220 @@ bins: syst_JES_EtaIntercalibration_Stat5: 0.0 syst_JES_EtaIntercalibration_Stat50: 0.0 syst_JES_EtaIntercalibration_Stat51: 0.0 - syst_JES_EtaIntercalibration_Stat52: 5.763265432270146e-19 - syst_JES_EtaIntercalibration_Stat53: 2.198273787332915e-15 - syst_JES_EtaIntercalibration_Stat54: 5.701910766037135e-07 - syst_JES_EtaIntercalibration_Stat55: 6.208927170932702e-12 - syst_JES_EtaIntercalibration_Stat56: 6.351505716880768e-12 - syst_JES_EtaIntercalibration_Stat57: 6.934967051111347e-18 + syst_JES_EtaIntercalibration_Stat52: 5.76326543e-19 + syst_JES_EtaIntercalibration_Stat53: 2.19827379e-15 + syst_JES_EtaIntercalibration_Stat54: 5.70191077e-07 + syst_JES_EtaIntercalibration_Stat55: 6.20892717e-12 + syst_JES_EtaIntercalibration_Stat56: 6.35150572e-12 + syst_JES_EtaIntercalibration_Stat57: 6.93496705e-18 syst_JES_EtaIntercalibration_Stat58: 0.0 syst_JES_EtaIntercalibration_Stat59: 0.0 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 1.362257960152922e-20 - syst_JES_EtaIntercalibration_Stat62: 1.362257960152922e-20 + syst_JES_EtaIntercalibration_Stat61: 1.36225796e-20 + syst_JES_EtaIntercalibration_Stat62: 1.36225796e-20 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 3.23287283232731e-19 - syst_JES_EtaIntercalibration_Stat69: 3.23287283232731e-19 + syst_JES_EtaIntercalibration_Stat68: 3.23287283e-19 + syst_JES_EtaIntercalibration_Stat69: 3.23287283e-19 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 2.8985870264665163e-19 - syst_JES_EtaIntercalibration_Stat71: 2.8985870264665163e-19 + syst_JES_EtaIntercalibration_Stat70: 2.89858703e-19 + syst_JES_EtaIntercalibration_Stat71: 2.89858703e-19 syst_JES_EtaIntercalibration_Stat72: 0.0 syst_JES_EtaIntercalibration_Stat73: 0.0 - syst_JES_EtaIntercalibration_Stat74: 1.4335113264117414e-15 - syst_JES_EtaIntercalibration_Stat75: 5.418808978917784e-07 - syst_JES_EtaIntercalibration_Stat76: 1.7078013789064087e-07 - syst_JES_EtaIntercalibration_Stat77: 2.952170853795559e-07 - syst_JES_EtaIntercalibration_Stat78: 3.4335312766301554e-07 - syst_JES_EtaIntercalibration_Stat79: 5.059957583814314e-18 + syst_JES_EtaIntercalibration_Stat74: 1.43351133e-15 + syst_JES_EtaIntercalibration_Stat75: 5.41880898e-07 + syst_JES_EtaIntercalibration_Stat76: 1.70780138e-07 + syst_JES_EtaIntercalibration_Stat77: 2.95217085e-07 + syst_JES_EtaIntercalibration_Stat78: 3.43353128e-07 + syst_JES_EtaIntercalibration_Stat79: 5.05995758e-18 syst_JES_EtaIntercalibration_Stat8: 0.0 syst_JES_EtaIntercalibration_Stat80: 0.0 syst_JES_EtaIntercalibration_Stat81: 0.0 - syst_JES_EtaIntercalibration_Stat82: 1.362257960152922e-20 - syst_JES_EtaIntercalibration_Stat83: 1.362257960152922e-20 - syst_JES_EtaIntercalibration_Stat84: 1.362257960152922e-20 + syst_JES_EtaIntercalibration_Stat82: 1.36225796e-20 + syst_JES_EtaIntercalibration_Stat83: 1.36225796e-20 + syst_JES_EtaIntercalibration_Stat84: 1.36225796e-20 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 3.23287283232731e-19 - syst_JES_EtaIntercalibration_Stat9: 1.4314637856666162e-15 - syst_JES_EtaIntercalibration_Stat90: 3.23287283232731e-19 - syst_JES_EtaIntercalibration_Stat91: 2.8985870264665163e-19 - syst_JES_EtaIntercalibration_Stat92: 2.8985870264665163e-19 + syst_JES_EtaIntercalibration_Stat89: 3.23287283e-19 + syst_JES_EtaIntercalibration_Stat9: 1.43146379e-15 + syst_JES_EtaIntercalibration_Stat90: 3.23287283e-19 + syst_JES_EtaIntercalibration_Stat91: 2.89858703e-19 + syst_JES_EtaIntercalibration_Stat92: 2.89858703e-19 syst_JES_EtaIntercalibration_Stat93: 0.0 syst_JES_EtaIntercalibration_Stat94: 0.0 - syst_JES_EtaIntercalibration_Stat95: 1.4335876740105573e-15 - syst_JES_EtaIntercalibration_Stat96: 4.7224064575171846e-07 - syst_JES_EtaIntercalibration_Stat97: 1.7017500426032019e-07 - syst_JES_EtaIntercalibration_Stat98: 4.378596773796372e-07 - syst_JES_EtaIntercalibration_Stat99: 3.472783004420338e-09 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0010992579167329202 - syst_JES_Flavour_Comp: 0.0029215719655692205 - syst_JES_Gjet_Generator: 0.003904517000539247 - syst_JES_Gjet_OOC: 0.003213124491830343 - syst_JES_Gjet_Purity: 0.0005958998468702605 - syst_JES_Gjet_Stat1: 7.562288939203527e-06 - syst_JES_Gjet_Stat10: 6.116820988062345e-05 - syst_JES_Gjet_Stat11: 6.651767941682873e-05 - syst_JES_Gjet_Stat12: 0.00021739859130178374 - syst_JES_Gjet_Stat13: 0.0006786003684054407 - syst_JES_Gjet_Stat14: 0.001795002228410873 - syst_JES_Gjet_Stat15: 0.0015390233916350979 - syst_JES_Gjet_Stat2: 9.293940552854854e-06 - syst_JES_Gjet_Stat3: 6.080364051600858e-06 - syst_JES_Gjet_Stat4: 1.2033512984577697e-05 - syst_JES_Gjet_Stat5: 1.1566348948566268e-05 - syst_JES_Gjet_Stat6: 2.854591170377993e-05 - syst_JES_Gjet_Stat7: 3.59803956064966e-05 - syst_JES_Gjet_Stat8: 2.2922253379630894e-05 - syst_JES_Gjet_Stat9: 4.175334088429332e-05 - syst_JES_Gjet_Veto: 0.0032061247636360007 - syst_JES_Gjet_dPhi: 0.0003122141252409955 - syst_JES_LArESZee: 0.006019983471738107 - syst_JES_LArEsmear: 0.0004854506231327755 - syst_JES_LAr_JVT: 0.0006076 - syst_JES_MJB_Alpha: 2.808041844417565e-05 - syst_JES_MJB_Asym: 0.0005602001606568853 - syst_JES_MJB_Beta: 3.884476895284615e-05 - syst_JES_MJB_Stat1: 2.022510074140547e-06 - syst_JES_MJB_Stat10: 5.4553578251110167e-05 - syst_JES_MJB_Stat11: 5.454732326154969e-05 - syst_JES_MJB_Stat12: 5.4724478983358076e-05 - syst_JES_MJB_Stat13: 3.494229636128685e-05 - syst_JES_MJB_Stat14: 1.7905979448217852e-05 - syst_JES_MJB_Stat15: 4.285638808859188e-05 - syst_JES_MJB_Stat16: 3.703369642298754e-05 - syst_JES_MJB_Stat2: 2.7087061486990426e-06 - syst_JES_MJB_Stat3: 1.2739441235784246e-05 - syst_JES_MJB_Stat4: 1.1178407847274137e-05 - syst_JES_MJB_Stat5: 1.5635264852249865e-05 - syst_JES_MJB_Stat6: 1.8960133833915834e-05 - syst_JES_MJB_Stat7: 2.090646311550569e-05 - syst_JES_MJB_Stat8: 3.104799631216159e-05 - syst_JES_MJB_Stat9: 4.511684912535449e-05 - syst_JES_MJB_Threshold: 0.0003816563022864944 - syst_JES_Pileup_MuOffset: 0.0007502000133297785 - syst_JES_Pileup_NPVOffset: 0.000776258376766396 - syst_JES_Pileup_Pt_term: 0.0004773566486391491 - syst_JES_PunchThrough_MC15: 0.00045555066403200423 - syst_JES_SingleParticle_HighPt: 3.7865869526527446e-12 - syst_JES_Zjet_MC: 0.0015705078000443043 - syst_JES_Zjet_MuScale: 0.00011161174534967187 - syst_JES_Zjet_MuSmearID: 2.4220103220258992e-05 - syst_JES_Zjet_MuSmearMS: 0.00043000753481770525 - syst_JES_Zjet_OOC: 0.0008685166262081573 - syst_JES_Zjet_Stat1: 4.45464611389053e-05 - syst_JES_Zjet_Stat10: 7.314238306207968e-05 - syst_JES_Zjet_Stat11: 9.110560616668987e-05 - syst_JES_Zjet_Stat12: 0.0002749105127127735 - syst_JES_Zjet_Stat13: 0.00046395000538851166 - syst_JES_Zjet_Stat2: 1.6275750881295772e-16 - syst_JES_Zjet_Stat3: 3.24380189746538e-05 - syst_JES_Zjet_Stat4: 2.6271842341183458e-05 - syst_JES_Zjet_Stat5: 3.926395643589678e-05 - syst_JES_Zjet_Stat6: 3.276256209456153e-05 - syst_JES_Zjet_Stat7: 3.2196063035719136e-05 - syst_JES_Zjet_Stat8: 3.409585635748133e-05 - syst_JES_Zjet_Stat9: 4.243385875394789e-05 - syst_JES_Zjet_Veto: 0.00018758466755041577 - syst_JES_Zjet_dPhi: 0.00016819997027348133 - syst_PRW: 9.885e-05 - syst_Unfolding_bias: 1.623e-05 - syst_cleaning: 0.001107646491440297 + syst_JES_EtaIntercalibration_Stat95: 1.43358767e-15 + syst_JES_EtaIntercalibration_Stat96: 4.72240646e-07 + syst_JES_EtaIntercalibration_Stat97: 1.70175004e-07 + syst_JES_EtaIntercalibration_Stat98: 4.37859677e-07 + syst_JES_EtaIntercalibration_Stat99: 3.47278300e-09 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.09925792e-03 + syst_JES_Flavour_Comp: 2.92157197e-03 + syst_JES_Gjet_Generator: 3.90451700e-03 + syst_JES_Gjet_OOC: 3.21312449e-03 + syst_JES_Gjet_Purity: 5.95899847e-04 + syst_JES_Gjet_Stat1: 7.56228894e-06 + syst_JES_Gjet_Stat10: 6.11682099e-05 + syst_JES_Gjet_Stat11: 6.65176794e-05 + syst_JES_Gjet_Stat12: 2.17398591e-04 + syst_JES_Gjet_Stat13: 6.78600368e-04 + syst_JES_Gjet_Stat14: 1.79500223e-03 + syst_JES_Gjet_Stat15: 1.53902339e-03 + syst_JES_Gjet_Stat2: 9.29394055e-06 + syst_JES_Gjet_Stat3: 6.08036405e-06 + syst_JES_Gjet_Stat4: 1.20335130e-05 + syst_JES_Gjet_Stat5: 1.15663489e-05 + syst_JES_Gjet_Stat6: 2.85459117e-05 + syst_JES_Gjet_Stat7: 3.59803956e-05 + syst_JES_Gjet_Stat8: 2.29222534e-05 + syst_JES_Gjet_Stat9: 4.17533409e-05 + syst_JES_Gjet_Veto: 3.20612476e-03 + syst_JES_Gjet_dPhi: 3.12214125e-04 + syst_JES_LArESZee: 6.01998347e-03 + syst_JES_LArEsmear: 4.85450623e-04 + syst_JES_LAr_JVT: 6.07600000e-04 + syst_JES_MJB_Alpha: 2.80804184e-05 + syst_JES_MJB_Asym: 5.60200161e-04 + syst_JES_MJB_Beta: 3.88447690e-05 + syst_JES_MJB_Stat1: 2.02251007e-06 + syst_JES_MJB_Stat10: 5.45535783e-05 + syst_JES_MJB_Stat11: 5.45473233e-05 + syst_JES_MJB_Stat12: 5.47244790e-05 + syst_JES_MJB_Stat13: 3.49422964e-05 + syst_JES_MJB_Stat14: 1.79059794e-05 + syst_JES_MJB_Stat15: 4.28563881e-05 + syst_JES_MJB_Stat16: 3.70336964e-05 + syst_JES_MJB_Stat2: 2.70870615e-06 + syst_JES_MJB_Stat3: 1.27394412e-05 + syst_JES_MJB_Stat4: 1.11784078e-05 + syst_JES_MJB_Stat5: 1.56352649e-05 + syst_JES_MJB_Stat6: 1.89601338e-05 + syst_JES_MJB_Stat7: 2.09064631e-05 + syst_JES_MJB_Stat8: 3.10479963e-05 + syst_JES_MJB_Stat9: 4.51168491e-05 + syst_JES_MJB_Threshold: 3.81656302e-04 + syst_JES_Pileup_MuOffset: 7.50200013e-04 + syst_JES_Pileup_NPVOffset: 7.76258377e-04 + syst_JES_Pileup_Pt_term: 4.77356649e-04 + syst_JES_PunchThrough_MC15: 4.55550664e-04 + syst_JES_SingleParticle_HighPt: 3.78658695e-12 + syst_JES_Zjet_MC: 1.57050780e-03 + syst_JES_Zjet_MuScale: 1.11611745e-04 + syst_JES_Zjet_MuSmearID: 2.42201032e-05 + syst_JES_Zjet_MuSmearMS: 4.30007535e-04 + syst_JES_Zjet_OOC: 8.68516626e-04 + syst_JES_Zjet_Stat1: 4.45464611e-05 + syst_JES_Zjet_Stat10: 7.31423831e-05 + syst_JES_Zjet_Stat11: 9.11056062e-05 + syst_JES_Zjet_Stat12: 2.74910513e-04 + syst_JES_Zjet_Stat13: 4.63950005e-04 + syst_JES_Zjet_Stat2: 1.62757509e-16 + syst_JES_Zjet_Stat3: 3.24380190e-05 + syst_JES_Zjet_Stat4: 2.62718423e-05 + syst_JES_Zjet_Stat5: 3.92639564e-05 + syst_JES_Zjet_Stat6: 3.27625621e-05 + syst_JES_Zjet_Stat7: 3.21960630e-05 + syst_JES_Zjet_Stat8: 3.40958564e-05 + syst_JES_Zjet_Stat9: 4.24338588e-05 + syst_JES_Zjet_Veto: 1.87584668e-04 + syst_JES_Zjet_dPhi: 1.68199970e-04 + syst_PRW: 9.88500000e-05 + syst_Unfolding_bias: 1.62300000e-05 + syst_cleaning: 1.10764649e-03 syst_lumi: 0.003764 - syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0002927230944083504 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0008195454044773846 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 3.10329002834089e-05 + syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 2.92723094e-04 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 8.19545404e-04 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 3.10329003e-05 syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 0.0003711349215581848 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.00026982134830290947 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0007152900163570018 -- stat: 0.0008211 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 3.71134922e-04 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 2.69821348e-04 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 7.15290016e-04 +- stat: 8.21100000e-04 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.0002779044215193418 - syst_JER_NP1: 2.5961883598845443e-05 - syst_JER_NP2: 0.0001141021042750746 - syst_JER_NP3: 3.1355171822205024e-05 - syst_JER_NP4: 4.996009682736814e-05 - syst_JER_NP5: 3.2816771424837026e-05 - syst_JER_NP6: 3.7440010683759156e-05 - syst_JER_NP7: 3.4415622542676747e-05 - syst_JER_NP8: 7.862167687730909e-05 - syst_JES_EtaIntercalibration_Modelling: 0.0015490006455776576 + syst_JER_NP0: 2.77904422e-04 + syst_JER_NP1: 2.59618836e-05 + syst_JER_NP2: 1.14102104e-04 + syst_JER_NP3: 3.13551718e-05 + syst_JER_NP4: 4.99600968e-05 + syst_JER_NP5: 3.28167714e-05 + syst_JER_NP6: 3.74400107e-05 + syst_JER_NP7: 3.44156225e-05 + syst_JER_NP8: 7.86216769e-05 + syst_JES_EtaIntercalibration_Modelling: 1.54900065e-03 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 - syst_JES_EtaIntercalibration_Stat10: 2.356524412667944e-18 - syst_JES_EtaIntercalibration_Stat100: 8.29822192219514e-17 + syst_JES_EtaIntercalibration_Stat10: 2.35652441e-18 + syst_JES_EtaIntercalibration_Stat100: 8.29822192e-17 syst_JES_EtaIntercalibration_Stat101: 0.0 syst_JES_EtaIntercalibration_Stat102: 0.0 - syst_JES_EtaIntercalibration_Stat103: 3.998439289272754e-21 - syst_JES_EtaIntercalibration_Stat104: 3.998439289272754e-21 - syst_JES_EtaIntercalibration_Stat105: 3.998439289272754e-21 + syst_JES_EtaIntercalibration_Stat103: 3.99843929e-21 + syst_JES_EtaIntercalibration_Stat104: 3.99843929e-21 + syst_JES_EtaIntercalibration_Stat105: 3.99843929e-21 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 8.73126812095471e-20 - syst_JES_EtaIntercalibration_Stat11: 8.27833683477545e-17 - syst_JES_EtaIntercalibration_Stat110: 8.545900638317766e-20 - syst_JES_EtaIntercalibration_Stat111: 7.972629867239542e-20 - syst_JES_EtaIntercalibration_Stat112: 7.972629867239542e-20 + syst_JES_EtaIntercalibration_Stat109: 8.73126812e-20 + syst_JES_EtaIntercalibration_Stat11: 8.27833683e-17 + syst_JES_EtaIntercalibration_Stat110: 8.54590064e-20 + syst_JES_EtaIntercalibration_Stat111: 7.97262987e-20 + syst_JES_EtaIntercalibration_Stat112: 7.97262987e-20 syst_JES_EtaIntercalibration_Stat113: 0.0 - syst_JES_EtaIntercalibration_Stat114: 9.712474903442479e-20 - syst_JES_EtaIntercalibration_Stat115: 5.609969070101902e-15 - syst_JES_EtaIntercalibration_Stat116: 3.116115471223748e-07 - syst_JES_EtaIntercalibration_Stat117: 3.622837389395223e-07 - syst_JES_EtaIntercalibration_Stat118: 1.3254707654263824e-06 - syst_JES_EtaIntercalibration_Stat119: 6.741523868347571e-07 - syst_JES_EtaIntercalibration_Stat12: 1.0222562589750706e-12 - syst_JES_EtaIntercalibration_Stat120: 1.0453052405487876e-12 - syst_JES_EtaIntercalibration_Stat121: 3.9897790352349084e-19 + syst_JES_EtaIntercalibration_Stat114: 9.71247490e-20 + syst_JES_EtaIntercalibration_Stat115: 5.60996907e-15 + syst_JES_EtaIntercalibration_Stat116: 3.11611547e-07 + syst_JES_EtaIntercalibration_Stat117: 3.62283739e-07 + syst_JES_EtaIntercalibration_Stat118: 1.32547077e-06 + syst_JES_EtaIntercalibration_Stat119: 6.74152387e-07 + syst_JES_EtaIntercalibration_Stat12: 1.02225626e-12 + syst_JES_EtaIntercalibration_Stat120: 1.04530524e-12 + syst_JES_EtaIntercalibration_Stat121: 3.98977904e-19 syst_JES_EtaIntercalibration_Stat122: 0.0 - syst_JES_EtaIntercalibration_Stat123: 3.998439289272754e-21 - syst_JES_EtaIntercalibration_Stat124: 3.998439289272754e-21 - syst_JES_EtaIntercalibration_Stat125: 3.998439289272754e-21 + syst_JES_EtaIntercalibration_Stat123: 3.99843929e-21 + syst_JES_EtaIntercalibration_Stat124: 3.99843929e-21 + syst_JES_EtaIntercalibration_Stat125: 3.99843929e-21 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 8.73126812095471e-20 - syst_JES_EtaIntercalibration_Stat129: 8.545900638317766e-20 + syst_JES_EtaIntercalibration_Stat128: 8.73126812e-20 + syst_JES_EtaIntercalibration_Stat129: 8.54590064e-20 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 6.152244468484652e-21 + syst_JES_EtaIntercalibration_Stat130: 6.15224447e-21 syst_JES_EtaIntercalibration_Stat131: 0.0 syst_JES_EtaIntercalibration_Stat132: 0.0 - syst_JES_EtaIntercalibration_Stat133: 9.712474903442479e-20 - syst_JES_EtaIntercalibration_Stat134: 6.49085816153709e-07 - syst_JES_EtaIntercalibration_Stat135: 4.622869103706052e-07 - syst_JES_EtaIntercalibration_Stat136: 7.610592010481182e-07 - syst_JES_EtaIntercalibration_Stat137: 6.048382263051832e-07 - syst_JES_EtaIntercalibration_Stat138: 5.048408858244348e-07 - syst_JES_EtaIntercalibration_Stat139: 5.373800267966795e-15 + syst_JES_EtaIntercalibration_Stat133: 9.71247490e-20 + syst_JES_EtaIntercalibration_Stat134: 6.49085816e-07 + syst_JES_EtaIntercalibration_Stat135: 4.62286910e-07 + syst_JES_EtaIntercalibration_Stat136: 7.61059201e-07 + syst_JES_EtaIntercalibration_Stat137: 6.04838226e-07 + syst_JES_EtaIntercalibration_Stat138: 5.04840886e-07 + syst_JES_EtaIntercalibration_Stat139: 5.37380027e-15 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 3.9897790352349084e-19 + syst_JES_EtaIntercalibration_Stat140: 3.98977904e-19 syst_JES_EtaIntercalibration_Stat141: 0.0 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 3.998439289272754e-21 - syst_JES_EtaIntercalibration_Stat144: 3.998439289272754e-21 + syst_JES_EtaIntercalibration_Stat143: 3.99843929e-21 + syst_JES_EtaIntercalibration_Stat144: 3.99843929e-21 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 6.152244468484652e-21 - syst_JES_EtaIntercalibration_Stat148: 6.152244468484652e-21 + syst_JES_EtaIntercalibration_Stat147: 6.15224447e-21 + syst_JES_EtaIntercalibration_Stat148: 6.15224447e-21 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 syst_JES_EtaIntercalibration_Stat150: 0.0 syst_JES_EtaIntercalibration_Stat151: 0.0 - syst_JES_EtaIntercalibration_Stat152: 2.8942568994510904e-07 - syst_JES_EtaIntercalibration_Stat153: 6.389893895832699e-07 - syst_JES_EtaIntercalibration_Stat154: 9.923878425293208e-07 - syst_JES_EtaIntercalibration_Stat155: 5.846832133728486e-07 - syst_JES_EtaIntercalibration_Stat156: 9.22124427612673e-07 - syst_JES_EtaIntercalibration_Stat157: 1.9458583266003717e-12 + syst_JES_EtaIntercalibration_Stat152: 2.89425690e-07 + syst_JES_EtaIntercalibration_Stat153: 6.38989390e-07 + syst_JES_EtaIntercalibration_Stat154: 9.92387843e-07 + syst_JES_EtaIntercalibration_Stat155: 5.84683213e-07 + syst_JES_EtaIntercalibration_Stat156: 9.22124428e-07 + syst_JES_EtaIntercalibration_Stat157: 1.94585833e-12 syst_JES_EtaIntercalibration_Stat158: 0.0 syst_JES_EtaIntercalibration_Stat159: 0.0 syst_JES_EtaIntercalibration_Stat16: 0.0 @@ -9322,18 +9322,18 @@ bins: syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 6.152244468484652e-21 + syst_JES_EtaIntercalibration_Stat165: 6.15224447e-21 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 1.5357995661869424e-06 - syst_JES_EtaIntercalibration_Stat171: 9.725737542726515e-07 - syst_JES_EtaIntercalibration_Stat172: 1.8244297739293776e-06 - syst_JES_EtaIntercalibration_Stat173: 2.472103865131884e-06 - syst_JES_EtaIntercalibration_Stat174: 1.23611038342051e-06 - syst_JES_EtaIntercalibration_Stat175: 6.3991024370609976e-12 + syst_JES_EtaIntercalibration_Stat170: 1.53579957e-06 + syst_JES_EtaIntercalibration_Stat171: 9.72573754e-07 + syst_JES_EtaIntercalibration_Stat172: 1.82442977e-06 + syst_JES_EtaIntercalibration_Stat173: 2.47210387e-06 + syst_JES_EtaIntercalibration_Stat174: 1.23611038e-06 + syst_JES_EtaIntercalibration_Stat175: 6.39910244e-12 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 syst_JES_EtaIntercalibration_Stat178: 0.0 @@ -9346,14 +9346,14 @@ bins: syst_JES_EtaIntercalibration_Stat184: 0.0 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 - syst_JES_EtaIntercalibration_Stat187: 3.549120199077512e-07 - syst_JES_EtaIntercalibration_Stat188: 6.364216899980704e-06 - syst_JES_EtaIntercalibration_Stat189: 7.74654185750003e-06 + syst_JES_EtaIntercalibration_Stat187: 3.54912020e-07 + syst_JES_EtaIntercalibration_Stat188: 6.36421690e-06 + syst_JES_EtaIntercalibration_Stat189: 7.74654186e-06 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 1.0237062310545931e-05 - syst_JES_EtaIntercalibration_Stat191: 7.717358016186627e-06 - syst_JES_EtaIntercalibration_Stat192: 4.790303017555361e-07 - syst_JES_EtaIntercalibration_Stat193: 1.0588892612072331e-12 + syst_JES_EtaIntercalibration_Stat190: 1.02370623e-05 + syst_JES_EtaIntercalibration_Stat191: 7.71735802e-06 + syst_JES_EtaIntercalibration_Stat192: 4.79030302e-07 + syst_JES_EtaIntercalibration_Stat193: 1.05888926e-12 syst_JES_EtaIntercalibration_Stat194: 0.0 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 @@ -9364,13 +9364,13 @@ bins: syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 syst_JES_EtaIntercalibration_Stat201: 0.0 - syst_JES_EtaIntercalibration_Stat202: 4.5296119171514016e-07 - syst_JES_EtaIntercalibration_Stat203: 1.2933777522440998e-05 - syst_JES_EtaIntercalibration_Stat204: 2.0017099565121815e-05 - syst_JES_EtaIntercalibration_Stat205: 2.1601112818556362e-05 - syst_JES_EtaIntercalibration_Stat206: 1.6695325693139384e-05 - syst_JES_EtaIntercalibration_Stat207: 6.966399841381487e-07 - syst_JES_EtaIntercalibration_Stat208: 1.0588892612072331e-12 + syst_JES_EtaIntercalibration_Stat202: 4.52961192e-07 + syst_JES_EtaIntercalibration_Stat203: 1.29337775e-05 + syst_JES_EtaIntercalibration_Stat204: 2.00170996e-05 + syst_JES_EtaIntercalibration_Stat205: 2.16011128e-05 + syst_JES_EtaIntercalibration_Stat206: 1.66953257e-05 + syst_JES_EtaIntercalibration_Stat207: 6.96639984e-07 + syst_JES_EtaIntercalibration_Stat208: 1.05888926e-12 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 @@ -9378,38 +9378,38 @@ bins: syst_JES_EtaIntercalibration_Stat212: 0.0 syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 - syst_JES_EtaIntercalibration_Stat215: 5.675337170600527e-07 - syst_JES_EtaIntercalibration_Stat216: 1.630148076096156e-05 - syst_JES_EtaIntercalibration_Stat217: 2.279708917822624e-05 - syst_JES_EtaIntercalibration_Stat218: 2.6310279359976396e-05 - syst_JES_EtaIntercalibration_Stat219: 1.996492111179005e-05 + syst_JES_EtaIntercalibration_Stat215: 5.67533717e-07 + syst_JES_EtaIntercalibration_Stat216: 1.63014808e-05 + syst_JES_EtaIntercalibration_Stat217: 2.27970892e-05 + syst_JES_EtaIntercalibration_Stat218: 2.63102794e-05 + syst_JES_EtaIntercalibration_Stat219: 1.99649211e-05 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 5.08363316806986e-07 + syst_JES_EtaIntercalibration_Stat220: 5.08363317e-07 syst_JES_EtaIntercalibration_Stat221: 0.0 syst_JES_EtaIntercalibration_Stat222: 0.0 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 - syst_JES_EtaIntercalibration_Stat227: 9.974370293406997e-07 - syst_JES_EtaIntercalibration_Stat228: 4.8913824988442684e-05 - syst_JES_EtaIntercalibration_Stat229: 7.951369378918326e-05 + syst_JES_EtaIntercalibration_Stat227: 9.97437029e-07 + syst_JES_EtaIntercalibration_Stat228: 4.89138250e-05 + syst_JES_EtaIntercalibration_Stat229: 7.95136938e-05 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 7.440493532017887e-05 - syst_JES_EtaIntercalibration_Stat231: 6.833104565276314e-05 - syst_JES_EtaIntercalibration_Stat232: 2.637155806925332e-07 + syst_JES_EtaIntercalibration_Stat230: 7.44049353e-05 + syst_JES_EtaIntercalibration_Stat231: 6.83310457e-05 + syst_JES_EtaIntercalibration_Stat232: 2.63715581e-07 syst_JES_EtaIntercalibration_Stat233: 0.0 syst_JES_EtaIntercalibration_Stat234: 0.0 syst_JES_EtaIntercalibration_Stat235: 0.0 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 - syst_JES_EtaIntercalibration_Stat238: 2.876616963670172e-07 - syst_JES_EtaIntercalibration_Stat239: 6.345235850620527e-06 + syst_JES_EtaIntercalibration_Stat238: 2.87661696e-07 + syst_JES_EtaIntercalibration_Stat239: 6.34523585e-06 syst_JES_EtaIntercalibration_Stat24: 0.0 - syst_JES_EtaIntercalibration_Stat240: 7.926733059716341e-06 - syst_JES_EtaIntercalibration_Stat241: 1.15021124472855e-05 - syst_JES_EtaIntercalibration_Stat242: 6.788195397158217e-06 - syst_JES_EtaIntercalibration_Stat243: 1.794404636641357e-07 + syst_JES_EtaIntercalibration_Stat240: 7.92673306e-06 + syst_JES_EtaIntercalibration_Stat241: 1.15021124e-05 + syst_JES_EtaIntercalibration_Stat242: 6.78819540e-06 + syst_JES_EtaIntercalibration_Stat243: 1.79440464e-07 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 syst_JES_EtaIntercalibration_Stat25: 0.0 @@ -9418,12 +9418,12 @@ bins: syst_JES_EtaIntercalibration_Stat28: 0.0 syst_JES_EtaIntercalibration_Stat29: 0.0 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 9.295893403406691e-20 - syst_JES_EtaIntercalibration_Stat31: 6.134730474927159e-07 - syst_JES_EtaIntercalibration_Stat32: 1.0367608535723175e-16 - syst_JES_EtaIntercalibration_Stat33: 1.0232963936501618e-12 - syst_JES_EtaIntercalibration_Stat34: 1.0509227197902877e-12 - syst_JES_EtaIntercalibration_Stat35: 3.844519977555976e-19 + syst_JES_EtaIntercalibration_Stat30: 9.29589340e-20 + syst_JES_EtaIntercalibration_Stat31: 6.13473047e-07 + syst_JES_EtaIntercalibration_Stat32: 1.03676085e-16 + syst_JES_EtaIntercalibration_Stat33: 1.02329639e-12 + syst_JES_EtaIntercalibration_Stat34: 1.05092272e-12 + syst_JES_EtaIntercalibration_Stat35: 3.84451998e-19 syst_JES_EtaIntercalibration_Stat36: 0.0 syst_JES_EtaIntercalibration_Stat37: 0.0 syst_JES_EtaIntercalibration_Stat38: 0.0 @@ -9442,220 +9442,220 @@ bins: syst_JES_EtaIntercalibration_Stat5: 0.0 syst_JES_EtaIntercalibration_Stat50: 0.0 syst_JES_EtaIntercalibration_Stat51: 0.0 - syst_JES_EtaIntercalibration_Stat52: 1.1217430555612992e-19 - syst_JES_EtaIntercalibration_Stat53: 4.1359959496678366e-16 - syst_JES_EtaIntercalibration_Stat54: 4.5206525239523847e-07 - syst_JES_EtaIntercalibration_Stat55: 1.0274380100352138e-12 - syst_JES_EtaIntercalibration_Stat56: 1.0522345697205784e-12 - syst_JES_EtaIntercalibration_Stat57: 1.5783818002942128e-18 + syst_JES_EtaIntercalibration_Stat52: 1.12174306e-19 + syst_JES_EtaIntercalibration_Stat53: 4.13599595e-16 + syst_JES_EtaIntercalibration_Stat54: 4.52065252e-07 + syst_JES_EtaIntercalibration_Stat55: 1.02743801e-12 + syst_JES_EtaIntercalibration_Stat56: 1.05223457e-12 + syst_JES_EtaIntercalibration_Stat57: 1.57838180e-18 syst_JES_EtaIntercalibration_Stat58: 0.0 syst_JES_EtaIntercalibration_Stat59: 0.0 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 3.998439289272754e-21 - syst_JES_EtaIntercalibration_Stat62: 3.998439289272754e-21 + syst_JES_EtaIntercalibration_Stat61: 3.99843929e-21 + syst_JES_EtaIntercalibration_Stat62: 3.99843929e-21 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 8.73126812095471e-20 - syst_JES_EtaIntercalibration_Stat69: 8.73126812095471e-20 + syst_JES_EtaIntercalibration_Stat68: 8.73126812e-20 + syst_JES_EtaIntercalibration_Stat69: 8.73126812e-20 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 7.972629867239542e-20 - syst_JES_EtaIntercalibration_Stat71: 7.972629867239542e-20 + syst_JES_EtaIntercalibration_Stat70: 7.97262987e-20 + syst_JES_EtaIntercalibration_Stat71: 7.97262987e-20 syst_JES_EtaIntercalibration_Stat72: 0.0 syst_JES_EtaIntercalibration_Stat73: 0.0 - syst_JES_EtaIntercalibration_Stat74: 2.7750219147242783e-16 - syst_JES_EtaIntercalibration_Stat75: 4.576344771758352e-07 - syst_JES_EtaIntercalibration_Stat76: 1.1341467474371262e-07 - syst_JES_EtaIntercalibration_Stat77: 2.131452112410692e-07 - syst_JES_EtaIntercalibration_Stat78: 2.3131539126289094e-07 - syst_JES_EtaIntercalibration_Stat79: 1.0052479644346465e-18 + syst_JES_EtaIntercalibration_Stat74: 2.77502191e-16 + syst_JES_EtaIntercalibration_Stat75: 4.57634477e-07 + syst_JES_EtaIntercalibration_Stat76: 1.13414675e-07 + syst_JES_EtaIntercalibration_Stat77: 2.13145211e-07 + syst_JES_EtaIntercalibration_Stat78: 2.31315391e-07 + syst_JES_EtaIntercalibration_Stat79: 1.00524796e-18 syst_JES_EtaIntercalibration_Stat8: 0.0 syst_JES_EtaIntercalibration_Stat80: 0.0 syst_JES_EtaIntercalibration_Stat81: 0.0 - syst_JES_EtaIntercalibration_Stat82: 3.998439289272754e-21 - syst_JES_EtaIntercalibration_Stat83: 3.998439289272754e-21 - syst_JES_EtaIntercalibration_Stat84: 3.998439289272754e-21 + syst_JES_EtaIntercalibration_Stat82: 3.99843929e-21 + syst_JES_EtaIntercalibration_Stat83: 3.99843929e-21 + syst_JES_EtaIntercalibration_Stat84: 3.99843929e-21 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 8.73126812095471e-20 - syst_JES_EtaIntercalibration_Stat9: 2.7687058280858858e-16 - syst_JES_EtaIntercalibration_Stat90: 8.73126812095471e-20 - syst_JES_EtaIntercalibration_Stat91: 7.972629867239542e-20 - syst_JES_EtaIntercalibration_Stat92: 7.972629867239542e-20 + syst_JES_EtaIntercalibration_Stat89: 8.73126812e-20 + syst_JES_EtaIntercalibration_Stat9: 2.76870583e-16 + syst_JES_EtaIntercalibration_Stat90: 8.73126812e-20 + syst_JES_EtaIntercalibration_Stat91: 7.97262987e-20 + syst_JES_EtaIntercalibration_Stat92: 7.97262987e-20 syst_JES_EtaIntercalibration_Stat93: 0.0 syst_JES_EtaIntercalibration_Stat94: 0.0 - syst_JES_EtaIntercalibration_Stat95: 2.775247137080768e-16 - syst_JES_EtaIntercalibration_Stat96: 4.4023774608159167e-07 - syst_JES_EtaIntercalibration_Stat97: 1.1303392886651335e-07 - syst_JES_EtaIntercalibration_Stat98: 2.9269360635312826e-07 - syst_JES_EtaIntercalibration_Stat99: 6.992593847825051e-10 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0007911526575193943 - syst_JES_Flavour_Comp: 0.0020865010783606124 - syst_JES_Gjet_Generator: 0.0026650844264300517 - syst_JES_Gjet_OOC: 0.0022010040890466332 - syst_JES_Gjet_Purity: 0.00039979953414179964 - syst_JES_Gjet_Stat1: 5.260222880258973e-06 - syst_JES_Gjet_Stat10: 4.050550668736289e-05 - syst_JES_Gjet_Stat11: 4.154443341772758e-05 - syst_JES_Gjet_Stat12: 0.0001457664827729612 - syst_JES_Gjet_Stat13: 0.00045165403518622525 - syst_JES_Gjet_Stat14: 0.0012065572126923778 - syst_JES_Gjet_Stat15: 0.0013007520930215719 - syst_JES_Gjet_Stat2: 6.584404073262819e-06 - syst_JES_Gjet_Stat3: 4.087052085550171e-06 - syst_JES_Gjet_Stat4: 7.724750400498388e-06 - syst_JES_Gjet_Stat5: 8.453824031170746e-06 - syst_JES_Gjet_Stat6: 2.1428247711840557e-05 - syst_JES_Gjet_Stat7: 2.6032596873919434e-05 - syst_JES_Gjet_Stat8: 1.5150792677282597e-05 - syst_JES_Gjet_Stat9: 2.819034010082177e-05 - syst_JES_Gjet_Veto: 0.002208000452898504 - syst_JES_Gjet_dPhi: 0.0002249500111135805 - syst_JES_LArESZee: 0.004089164462332128 - syst_JES_LArEsmear: 0.0003475276535759421 - syst_JES_LAr_JVT: 0.0004328051986748773 - syst_JES_MJB_Alpha: 1.9787359601523393e-05 - syst_JES_MJB_Asym: 0.0004268033739323062 - syst_JES_MJB_Beta: 2.491181647331242e-05 - syst_JES_MJB_Stat1: 7.276054752920706e-07 - syst_JES_MJB_Stat10: 3.942982468893312e-05 - syst_JES_MJB_Stat11: 4.402696985939413e-05 - syst_JES_MJB_Stat12: 5.7401589481476905e-05 - syst_JES_MJB_Stat13: 4.6124282921255265e-05 - syst_JES_MJB_Stat14: 1.0472794847603959e-05 - syst_JES_MJB_Stat15: 1.518076206091117e-05 - syst_JES_MJB_Stat16: 4.803109617737243e-05 - syst_JES_MJB_Stat2: 1.284918156926736e-06 - syst_JES_MJB_Stat3: 5.66887175723706e-06 - syst_JES_MJB_Stat4: 6.332185167854774e-06 - syst_JES_MJB_Stat5: 8.319993269228046e-06 - syst_JES_MJB_Stat6: 1.0296755217057458e-05 - syst_JES_MJB_Stat7: 1.275100627401618e-05 - syst_JES_MJB_Stat8: 1.9885776323794854e-05 - syst_JES_MJB_Stat9: 3.0563338741047255e-05 - syst_JES_MJB_Threshold: 0.0002951628829985234 - syst_JES_Pileup_MuOffset: 0.0005245220395750784 - syst_JES_Pileup_NPVOffset: 0.0005460002930402144 - syst_JES_Pileup_Pt_term: 0.00032288698874373986 - syst_JES_PunchThrough_MC15: 0.0003902496355859926 - syst_JES_SingleParticle_HighPt: 9.650743701912303e-11 - syst_JES_Zjet_MC: 0.0010383540472786727 - syst_JES_Zjet_MuScale: 7.627042480542506e-05 - syst_JES_Zjet_MuSmearID: 1.606082896366187e-05 - syst_JES_Zjet_MuSmearMS: 0.00029117411887047927 - syst_JES_Zjet_OOC: 0.0005979996718226525 - syst_JES_Zjet_Stat1: 3.4116787656518896e-05 - syst_JES_Zjet_Stat10: 4.930870916988194e-05 - syst_JES_Zjet_Stat11: 6.360430075867512e-05 - syst_JES_Zjet_Stat12: 0.00019020901003895686 - syst_JES_Zjet_Stat13: 0.00031020288119229327 - syst_JES_Zjet_Stat2: 4.8905269654711034e-14 - syst_JES_Zjet_Stat3: 2.4443282819621427e-05 - syst_JES_Zjet_Stat4: 2.056778062893515e-05 - syst_JES_Zjet_Stat5: 2.6264486954821716e-05 - syst_JES_Zjet_Stat6: 2.3522610399358316e-05 - syst_JES_Zjet_Stat7: 2.283420898564257e-05 - syst_JES_Zjet_Stat8: 2.503240699573255e-05 - syst_JES_Zjet_Stat9: 2.8721881466923438e-05 - syst_JES_Zjet_Veto: 0.00013085007632783404 - syst_JES_Zjet_dPhi: 0.00011844190590749544 - syst_PRW: 6.566e-05 - syst_Unfolding_bias: 1.0779e-05 - syst_cleaning: 0.0007330039017631488 + syst_JES_EtaIntercalibration_Stat95: 2.77524714e-16 + syst_JES_EtaIntercalibration_Stat96: 4.40237746e-07 + syst_JES_EtaIntercalibration_Stat97: 1.13033929e-07 + syst_JES_EtaIntercalibration_Stat98: 2.92693606e-07 + syst_JES_EtaIntercalibration_Stat99: 6.99259385e-10 + syst_JES_EtaIntercalibration_TotalStat_MJB: 7.91152658e-04 + syst_JES_Flavour_Comp: 2.08650108e-03 + syst_JES_Gjet_Generator: 2.66508443e-03 + syst_JES_Gjet_OOC: 2.20100409e-03 + syst_JES_Gjet_Purity: 3.99799534e-04 + syst_JES_Gjet_Stat1: 5.26022288e-06 + syst_JES_Gjet_Stat10: 4.05055067e-05 + syst_JES_Gjet_Stat11: 4.15444334e-05 + syst_JES_Gjet_Stat12: 1.45766483e-04 + syst_JES_Gjet_Stat13: 4.51654035e-04 + syst_JES_Gjet_Stat14: 1.20655721e-03 + syst_JES_Gjet_Stat15: 1.30075209e-03 + syst_JES_Gjet_Stat2: 6.58440407e-06 + syst_JES_Gjet_Stat3: 4.08705209e-06 + syst_JES_Gjet_Stat4: 7.72475040e-06 + syst_JES_Gjet_Stat5: 8.45382403e-06 + syst_JES_Gjet_Stat6: 2.14282477e-05 + syst_JES_Gjet_Stat7: 2.60325969e-05 + syst_JES_Gjet_Stat8: 1.51507927e-05 + syst_JES_Gjet_Stat9: 2.81903401e-05 + syst_JES_Gjet_Veto: 2.20800045e-03 + syst_JES_Gjet_dPhi: 2.24950011e-04 + syst_JES_LArESZee: 4.08916446e-03 + syst_JES_LArEsmear: 3.47527654e-04 + syst_JES_LAr_JVT: 4.32805199e-04 + syst_JES_MJB_Alpha: 1.97873596e-05 + syst_JES_MJB_Asym: 4.26803374e-04 + syst_JES_MJB_Beta: 2.49118165e-05 + syst_JES_MJB_Stat1: 7.27605475e-07 + syst_JES_MJB_Stat10: 3.94298247e-05 + syst_JES_MJB_Stat11: 4.40269699e-05 + syst_JES_MJB_Stat12: 5.74015895e-05 + syst_JES_MJB_Stat13: 4.61242829e-05 + syst_JES_MJB_Stat14: 1.04727948e-05 + syst_JES_MJB_Stat15: 1.51807621e-05 + syst_JES_MJB_Stat16: 4.80310962e-05 + syst_JES_MJB_Stat2: 1.28491816e-06 + syst_JES_MJB_Stat3: 5.66887176e-06 + syst_JES_MJB_Stat4: 6.33218517e-06 + syst_JES_MJB_Stat5: 8.31999327e-06 + syst_JES_MJB_Stat6: 1.02967552e-05 + syst_JES_MJB_Stat7: 1.27510063e-05 + syst_JES_MJB_Stat8: 1.98857763e-05 + syst_JES_MJB_Stat9: 3.05633387e-05 + syst_JES_MJB_Threshold: 2.95162883e-04 + syst_JES_Pileup_MuOffset: 5.24522040e-04 + syst_JES_Pileup_NPVOffset: 5.46000293e-04 + syst_JES_Pileup_Pt_term: 3.22886989e-04 + syst_JES_PunchThrough_MC15: 3.90249636e-04 + syst_JES_SingleParticle_HighPt: 9.65074370e-11 + syst_JES_Zjet_MC: 1.03835405e-03 + syst_JES_Zjet_MuScale: 7.62704248e-05 + syst_JES_Zjet_MuSmearID: 1.60608290e-05 + syst_JES_Zjet_MuSmearMS: 2.91174119e-04 + syst_JES_Zjet_OOC: 5.97999672e-04 + syst_JES_Zjet_Stat1: 3.41167877e-05 + syst_JES_Zjet_Stat10: 4.93087092e-05 + syst_JES_Zjet_Stat11: 6.36043008e-05 + syst_JES_Zjet_Stat12: 1.90209010e-04 + syst_JES_Zjet_Stat13: 3.10202881e-04 + syst_JES_Zjet_Stat2: 4.89052697e-14 + syst_JES_Zjet_Stat3: 2.44432828e-05 + syst_JES_Zjet_Stat4: 2.05677806e-05 + syst_JES_Zjet_Stat5: 2.62644870e-05 + syst_JES_Zjet_Stat6: 2.35226104e-05 + syst_JES_Zjet_Stat7: 2.28342090e-05 + syst_JES_Zjet_Stat8: 2.50324070e-05 + syst_JES_Zjet_Stat9: 2.87218815e-05 + syst_JES_Zjet_Veto: 1.30850076e-04 + syst_JES_Zjet_dPhi: 1.18441906e-04 + syst_PRW: 6.56600000e-05 + syst_Unfolding_bias: 1.07790000e-05 + syst_cleaning: 7.33003902e-04 syst_lumi: 0.0025 - syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.00018515012152304952 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0005390620627534459 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 9.915244222912515e-06 + syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.85150122e-04 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 5.39062063e-04 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 9.91524422e-06 syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 0.00011856764430062698 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0001794002229653018 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.000495911615108983 -- stat: 0.0006551 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 1.18567644e-04 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.79400223e-04 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 4.95911615e-04 +- stat: 6.55100000e-04 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.00019663104409019445 - syst_JER_NP1: 1.718150968337765e-05 - syst_JER_NP2: 8.14985190049488e-05 - syst_JER_NP3: 1.907954598516432e-05 - syst_JER_NP4: 3.87829485727942e-05 - syst_JER_NP5: 2.202426407397078e-05 - syst_JER_NP6: 2.4940902148879863e-05 - syst_JER_NP7: 2.2740694800291397e-05 - syst_JER_NP8: 5.4428397689074036e-05 - syst_JES_EtaIntercalibration_Modelling: 0.0011088010912693044 + syst_JER_NP0: 1.96631044e-04 + syst_JER_NP1: 1.71815097e-05 + syst_JER_NP2: 8.14985190e-05 + syst_JER_NP3: 1.90795460e-05 + syst_JER_NP4: 3.87829486e-05 + syst_JER_NP5: 2.20242641e-05 + syst_JER_NP6: 2.49409021e-05 + syst_JER_NP7: 2.27406948e-05 + syst_JER_NP8: 5.44283977e-05 + syst_JES_EtaIntercalibration_Modelling: 1.10880109e-03 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 - syst_JES_EtaIntercalibration_Stat10: 5.283138721442018e-19 - syst_JES_EtaIntercalibration_Stat100: 1.4114016862679454e-17 + syst_JES_EtaIntercalibration_Stat10: 5.28313872e-19 + syst_JES_EtaIntercalibration_Stat100: 1.41140169e-17 syst_JES_EtaIntercalibration_Stat101: 0.0 syst_JES_EtaIntercalibration_Stat102: 0.0 - syst_JES_EtaIntercalibration_Stat103: 1.2366842766041783e-21 - syst_JES_EtaIntercalibration_Stat104: 1.2366842766041783e-21 - syst_JES_EtaIntercalibration_Stat105: 1.2366842766041783e-21 + syst_JES_EtaIntercalibration_Stat103: 1.23668428e-21 + syst_JES_EtaIntercalibration_Stat104: 1.23668428e-21 + syst_JES_EtaIntercalibration_Stat105: 1.23668428e-21 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 2.489823035880261e-20 - syst_JES_EtaIntercalibration_Stat11: 1.4020951287270062e-17 - syst_JES_EtaIntercalibration_Stat110: 2.4341421548463433e-20 - syst_JES_EtaIntercalibration_Stat111: 2.3166179551233735e-20 - syst_JES_EtaIntercalibration_Stat112: 2.3166179551233735e-20 + syst_JES_EtaIntercalibration_Stat109: 2.48982304e-20 + syst_JES_EtaIntercalibration_Stat11: 1.40209513e-17 + syst_JES_EtaIntercalibration_Stat110: 2.43414215e-20 + syst_JES_EtaIntercalibration_Stat111: 2.31661796e-20 + syst_JES_EtaIntercalibration_Stat112: 2.31661796e-20 syst_JES_EtaIntercalibration_Stat113: 0.0 - syst_JES_EtaIntercalibration_Stat114: 2.744434504592886e-20 - syst_JES_EtaIntercalibration_Stat115: 1.012395293882286e-15 - syst_JES_EtaIntercalibration_Stat116: 2.1489414993200722e-07 - syst_JES_EtaIntercalibration_Stat117: 2.5772833580147916e-07 - syst_JES_EtaIntercalibration_Stat118: 6.59418303658611e-07 - syst_JES_EtaIntercalibration_Stat119: 3.396034307836127e-07 - syst_JES_EtaIntercalibration_Stat12: 1.732916495858102e-13 - syst_JES_EtaIntercalibration_Stat120: 1.774508573044709e-13 - syst_JES_EtaIntercalibration_Stat121: 1.0527404808403636e-19 + syst_JES_EtaIntercalibration_Stat114: 2.74443450e-20 + syst_JES_EtaIntercalibration_Stat115: 1.01239529e-15 + syst_JES_EtaIntercalibration_Stat116: 2.14894150e-07 + syst_JES_EtaIntercalibration_Stat117: 2.57728336e-07 + syst_JES_EtaIntercalibration_Stat118: 6.59418304e-07 + syst_JES_EtaIntercalibration_Stat119: 3.39603431e-07 + syst_JES_EtaIntercalibration_Stat12: 1.73291650e-13 + syst_JES_EtaIntercalibration_Stat120: 1.77450857e-13 + syst_JES_EtaIntercalibration_Stat121: 1.05274048e-19 syst_JES_EtaIntercalibration_Stat122: 0.0 - syst_JES_EtaIntercalibration_Stat123: 1.2366842766041783e-21 - syst_JES_EtaIntercalibration_Stat124: 1.2366842766041783e-21 - syst_JES_EtaIntercalibration_Stat125: 1.2366842766041783e-21 + syst_JES_EtaIntercalibration_Stat123: 1.23668428e-21 + syst_JES_EtaIntercalibration_Stat124: 1.23668428e-21 + syst_JES_EtaIntercalibration_Stat125: 1.23668428e-21 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 2.489823035880261e-20 - syst_JES_EtaIntercalibration_Stat129: 2.4341421548463433e-20 + syst_JES_EtaIntercalibration_Stat128: 2.48982304e-20 + syst_JES_EtaIntercalibration_Stat129: 2.43414215e-20 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 1.8602225673289745e-21 + syst_JES_EtaIntercalibration_Stat130: 1.86022257e-21 syst_JES_EtaIntercalibration_Stat131: 0.0 syst_JES_EtaIntercalibration_Stat132: 0.0 - syst_JES_EtaIntercalibration_Stat133: 2.744434504592886e-20 - syst_JES_EtaIntercalibration_Stat134: 3.290982758208511e-07 - syst_JES_EtaIntercalibration_Stat135: 3.0111911264481367e-07 - syst_JES_EtaIntercalibration_Stat136: 5.135075559327243e-07 - syst_JES_EtaIntercalibration_Stat137: 3.1266813077127e-07 - syst_JES_EtaIntercalibration_Stat138: 2.6471087472939223e-07 - syst_JES_EtaIntercalibration_Stat139: 1.0553885765442033e-15 + syst_JES_EtaIntercalibration_Stat133: 2.74443450e-20 + syst_JES_EtaIntercalibration_Stat134: 3.29098276e-07 + syst_JES_EtaIntercalibration_Stat135: 3.01119113e-07 + syst_JES_EtaIntercalibration_Stat136: 5.13507556e-07 + syst_JES_EtaIntercalibration_Stat137: 3.12668131e-07 + syst_JES_EtaIntercalibration_Stat138: 2.64710875e-07 + syst_JES_EtaIntercalibration_Stat139: 1.05538858e-15 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 1.0527404808403636e-19 + syst_JES_EtaIntercalibration_Stat140: 1.05274048e-19 syst_JES_EtaIntercalibration_Stat141: 0.0 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 1.2366842766041783e-21 - syst_JES_EtaIntercalibration_Stat144: 1.2366842766041783e-21 + syst_JES_EtaIntercalibration_Stat143: 1.23668428e-21 + syst_JES_EtaIntercalibration_Stat144: 1.23668428e-21 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 1.8602225673289745e-21 - syst_JES_EtaIntercalibration_Stat148: 1.8602225673289745e-21 + syst_JES_EtaIntercalibration_Stat147: 1.86022257e-21 + syst_JES_EtaIntercalibration_Stat148: 1.86022257e-21 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 syst_JES_EtaIntercalibration_Stat150: 0.0 syst_JES_EtaIntercalibration_Stat151: 0.0 - syst_JES_EtaIntercalibration_Stat152: 1.439334221090676e-07 - syst_JES_EtaIntercalibration_Stat153: 4.0829415866504867e-07 - syst_JES_EtaIntercalibration_Stat154: 6.571426633540087e-07 - syst_JES_EtaIntercalibration_Stat155: 2.9821275542806685e-07 - syst_JES_EtaIntercalibration_Stat156: 5.116190452866273e-07 - syst_JES_EtaIntercalibration_Stat157: 3.3058455426826887e-13 + syst_JES_EtaIntercalibration_Stat152: 1.43933422e-07 + syst_JES_EtaIntercalibration_Stat153: 4.08294159e-07 + syst_JES_EtaIntercalibration_Stat154: 6.57142663e-07 + syst_JES_EtaIntercalibration_Stat155: 2.98212755e-07 + syst_JES_EtaIntercalibration_Stat156: 5.11619045e-07 + syst_JES_EtaIntercalibration_Stat157: 3.30584554e-13 syst_JES_EtaIntercalibration_Stat158: 0.0 syst_JES_EtaIntercalibration_Stat159: 0.0 syst_JES_EtaIntercalibration_Stat16: 0.0 @@ -9664,18 +9664,18 @@ bins: syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 1.8602225673289745e-21 + syst_JES_EtaIntercalibration_Stat165: 1.86022257e-21 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 7.997536042432069e-07 - syst_JES_EtaIntercalibration_Stat171: 6.50982494004255e-07 - syst_JES_EtaIntercalibration_Stat172: 1.3130287239813149e-06 - syst_JES_EtaIntercalibration_Stat173: 1.6571617867607252e-06 - syst_JES_EtaIntercalibration_Stat174: 6.618900703289028e-07 - syst_JES_EtaIntercalibration_Stat175: 1.1603469513468805e-12 + syst_JES_EtaIntercalibration_Stat170: 7.99753604e-07 + syst_JES_EtaIntercalibration_Stat171: 6.50982494e-07 + syst_JES_EtaIntercalibration_Stat172: 1.31302872e-06 + syst_JES_EtaIntercalibration_Stat173: 1.65716179e-06 + syst_JES_EtaIntercalibration_Stat174: 6.61890070e-07 + syst_JES_EtaIntercalibration_Stat175: 1.16034695e-12 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 syst_JES_EtaIntercalibration_Stat178: 0.0 @@ -9688,14 +9688,14 @@ bins: syst_JES_EtaIntercalibration_Stat184: 0.0 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 - syst_JES_EtaIntercalibration_Stat187: 2.3014361967041363e-07 - syst_JES_EtaIntercalibration_Stat188: 4.207836617550638e-06 - syst_JES_EtaIntercalibration_Stat189: 5.705262198181605e-06 + syst_JES_EtaIntercalibration_Stat187: 2.30143620e-07 + syst_JES_EtaIntercalibration_Stat188: 4.20783662e-06 + syst_JES_EtaIntercalibration_Stat189: 5.70526220e-06 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 7.596494109126921e-06 - syst_JES_EtaIntercalibration_Stat191: 5.604718614703149e-06 - syst_JES_EtaIntercalibration_Stat192: 1.8563406880203862e-07 - syst_JES_EtaIntercalibration_Stat193: 1.798734763660279e-13 + syst_JES_EtaIntercalibration_Stat190: 7.59649411e-06 + syst_JES_EtaIntercalibration_Stat191: 5.60471861e-06 + syst_JES_EtaIntercalibration_Stat192: 1.85634069e-07 + syst_JES_EtaIntercalibration_Stat193: 1.79873476e-13 syst_JES_EtaIntercalibration_Stat194: 0.0 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 @@ -9706,13 +9706,13 @@ bins: syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 syst_JES_EtaIntercalibration_Stat201: 0.0 - syst_JES_EtaIntercalibration_Stat202: 2.980657967630637e-07 - syst_JES_EtaIntercalibration_Stat203: 9.1988962381364e-06 - syst_JES_EtaIntercalibration_Stat204: 1.36400164955912e-05 - syst_JES_EtaIntercalibration_Stat205: 1.4484003961267064e-05 - syst_JES_EtaIntercalibration_Stat206: 1.1762530595071794e-05 - syst_JES_EtaIntercalibration_Stat207: 4.526793570508821e-07 - syst_JES_EtaIntercalibration_Stat208: 1.798734763660279e-13 + syst_JES_EtaIntercalibration_Stat202: 2.98065797e-07 + syst_JES_EtaIntercalibration_Stat203: 9.19889624e-06 + syst_JES_EtaIntercalibration_Stat204: 1.36400165e-05 + syst_JES_EtaIntercalibration_Stat205: 1.44840040e-05 + syst_JES_EtaIntercalibration_Stat206: 1.17625306e-05 + syst_JES_EtaIntercalibration_Stat207: 4.52679357e-07 + syst_JES_EtaIntercalibration_Stat208: 1.79873476e-13 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 @@ -9720,38 +9720,38 @@ bins: syst_JES_EtaIntercalibration_Stat212: 0.0 syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 - syst_JES_EtaIntercalibration_Stat215: 4.0992061121636715e-07 - syst_JES_EtaIntercalibration_Stat216: 1.1439226492643635e-05 - syst_JES_EtaIntercalibration_Stat217: 1.5688919274443347e-05 - syst_JES_EtaIntercalibration_Stat218: 1.7856597520244444e-05 - syst_JES_EtaIntercalibration_Stat219: 1.4137716603115228e-05 + syst_JES_EtaIntercalibration_Stat215: 4.09920611e-07 + syst_JES_EtaIntercalibration_Stat216: 1.14392265e-05 + syst_JES_EtaIntercalibration_Stat217: 1.56889193e-05 + syst_JES_EtaIntercalibration_Stat218: 1.78565975e-05 + syst_JES_EtaIntercalibration_Stat219: 1.41377166e-05 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 2.479748738783831e-07 + syst_JES_EtaIntercalibration_Stat220: 2.47974874e-07 syst_JES_EtaIntercalibration_Stat221: 0.0 syst_JES_EtaIntercalibration_Stat222: 0.0 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 - syst_JES_EtaIntercalibration_Stat227: 6.674488819377856e-07 - syst_JES_EtaIntercalibration_Stat228: 3.244988867469348e-05 - syst_JES_EtaIntercalibration_Stat229: 5.4245516635017875e-05 + syst_JES_EtaIntercalibration_Stat227: 6.67448882e-07 + syst_JES_EtaIntercalibration_Stat228: 3.24498887e-05 + syst_JES_EtaIntercalibration_Stat229: 5.42455166e-05 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 5.15256855849585e-05 - syst_JES_EtaIntercalibration_Stat231: 4.661327815118778e-05 - syst_JES_EtaIntercalibration_Stat232: 3.5224705119418674e-07 + syst_JES_EtaIntercalibration_Stat230: 5.15256856e-05 + syst_JES_EtaIntercalibration_Stat231: 4.66132782e-05 + syst_JES_EtaIntercalibration_Stat232: 3.52247051e-07 syst_JES_EtaIntercalibration_Stat233: 0.0 syst_JES_EtaIntercalibration_Stat234: 0.0 syst_JES_EtaIntercalibration_Stat235: 0.0 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 - syst_JES_EtaIntercalibration_Stat238: 2.4248169580403384e-07 - syst_JES_EtaIntercalibration_Stat239: 4.30811220257783e-06 + syst_JES_EtaIntercalibration_Stat238: 2.42481696e-07 + syst_JES_EtaIntercalibration_Stat239: 4.30811220e-06 syst_JES_EtaIntercalibration_Stat24: 0.0 - syst_JES_EtaIntercalibration_Stat240: 5.197013854128156e-06 - syst_JES_EtaIntercalibration_Stat241: 7.547577889627904e-06 - syst_JES_EtaIntercalibration_Stat242: 5.003995478615064e-06 - syst_JES_EtaIntercalibration_Stat243: 1.4843675420865278e-07 + syst_JES_EtaIntercalibration_Stat240: 5.19701385e-06 + syst_JES_EtaIntercalibration_Stat241: 7.54757789e-06 + syst_JES_EtaIntercalibration_Stat242: 5.00399548e-06 + syst_JES_EtaIntercalibration_Stat243: 1.48436754e-07 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 syst_JES_EtaIntercalibration_Stat25: 0.0 @@ -9760,12 +9760,12 @@ bins: syst_JES_EtaIntercalibration_Stat28: 0.0 syst_JES_EtaIntercalibration_Stat29: 0.0 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 2.6215699258411934e-20 - syst_JES_EtaIntercalibration_Stat31: 3.1017889205263467e-07 - syst_JES_EtaIntercalibration_Stat32: 1.7603974210387835e-17 - syst_JES_EtaIntercalibration_Stat33: 1.734650598228633e-13 - syst_JES_EtaIntercalibration_Stat34: 1.784880357438702e-13 - syst_JES_EtaIntercalibration_Stat35: 1.0109471395889104e-19 + syst_JES_EtaIntercalibration_Stat30: 2.62156993e-20 + syst_JES_EtaIntercalibration_Stat31: 3.10178892e-07 + syst_JES_EtaIntercalibration_Stat32: 1.76039742e-17 + syst_JES_EtaIntercalibration_Stat33: 1.73465060e-13 + syst_JES_EtaIntercalibration_Stat34: 1.78488036e-13 + syst_JES_EtaIntercalibration_Stat35: 1.01094714e-19 syst_JES_EtaIntercalibration_Stat36: 0.0 syst_JES_EtaIntercalibration_Stat37: 0.0 syst_JES_EtaIntercalibration_Stat38: 0.0 @@ -9784,220 +9784,220 @@ bins: syst_JES_EtaIntercalibration_Stat5: 0.0 syst_JES_EtaIntercalibration_Stat50: 0.0 syst_JES_EtaIntercalibration_Stat51: 0.0 - syst_JES_EtaIntercalibration_Stat52: 2.152469067390981e-20 - syst_JES_EtaIntercalibration_Stat53: 8.213138421034617e-17 - syst_JES_EtaIntercalibration_Stat54: 2.650903746146265e-07 - syst_JES_EtaIntercalibration_Stat55: 1.741716446203879e-13 - syst_JES_EtaIntercalibration_Stat56: 1.7866362459263182e-13 - syst_JES_EtaIntercalibration_Stat57: 3.816930482403367e-19 + syst_JES_EtaIntercalibration_Stat52: 2.15246907e-20 + syst_JES_EtaIntercalibration_Stat53: 8.21313842e-17 + syst_JES_EtaIntercalibration_Stat54: 2.65090375e-07 + syst_JES_EtaIntercalibration_Stat55: 1.74171645e-13 + syst_JES_EtaIntercalibration_Stat56: 1.78663625e-13 + syst_JES_EtaIntercalibration_Stat57: 3.81693048e-19 syst_JES_EtaIntercalibration_Stat58: 0.0 syst_JES_EtaIntercalibration_Stat59: 0.0 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 1.2366842766041783e-21 - syst_JES_EtaIntercalibration_Stat62: 1.2366842766041783e-21 + syst_JES_EtaIntercalibration_Stat61: 1.23668428e-21 + syst_JES_EtaIntercalibration_Stat62: 1.23668428e-21 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 2.489823035880261e-20 - syst_JES_EtaIntercalibration_Stat69: 2.489823035880261e-20 + syst_JES_EtaIntercalibration_Stat68: 2.48982304e-20 + syst_JES_EtaIntercalibration_Stat69: 2.48982304e-20 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 2.3166179551233735e-20 - syst_JES_EtaIntercalibration_Stat71: 2.3166179551233735e-20 + syst_JES_EtaIntercalibration_Stat70: 2.31661796e-20 + syst_JES_EtaIntercalibration_Stat71: 2.31661796e-20 syst_JES_EtaIntercalibration_Stat72: 0.0 syst_JES_EtaIntercalibration_Stat73: 0.0 - syst_JES_EtaIntercalibration_Stat74: 5.671097924141321e-17 - syst_JES_EtaIntercalibration_Stat75: 2.663558851367846e-07 - syst_JES_EtaIntercalibration_Stat76: 7.506707986701481e-08 - syst_JES_EtaIntercalibration_Stat77: 1.6843947599954117e-07 - syst_JES_EtaIntercalibration_Stat78: 1.5380611271757183e-07 - syst_JES_EtaIntercalibration_Stat79: 2.0473032872537477e-19 + syst_JES_EtaIntercalibration_Stat74: 5.67109792e-17 + syst_JES_EtaIntercalibration_Stat75: 2.66355885e-07 + syst_JES_EtaIntercalibration_Stat76: 7.50670799e-08 + syst_JES_EtaIntercalibration_Stat77: 1.68439476e-07 + syst_JES_EtaIntercalibration_Stat78: 1.53806113e-07 + syst_JES_EtaIntercalibration_Stat79: 2.04730329e-19 syst_JES_EtaIntercalibration_Stat8: 0.0 syst_JES_EtaIntercalibration_Stat80: 0.0 syst_JES_EtaIntercalibration_Stat81: 0.0 - syst_JES_EtaIntercalibration_Stat82: 1.2366842766041783e-21 - syst_JES_EtaIntercalibration_Stat83: 1.2366842766041783e-21 - syst_JES_EtaIntercalibration_Stat84: 1.2366842766041783e-21 + syst_JES_EtaIntercalibration_Stat82: 1.23668428e-21 + syst_JES_EtaIntercalibration_Stat83: 1.23668428e-21 + syst_JES_EtaIntercalibration_Stat84: 1.23668428e-21 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 2.489823035880261e-20 - syst_JES_EtaIntercalibration_Stat9: 5.653162266891691e-17 - syst_JES_EtaIntercalibration_Stat90: 2.489823035880261e-20 - syst_JES_EtaIntercalibration_Stat91: 2.3166179551233735e-20 - syst_JES_EtaIntercalibration_Stat92: 2.3166179551233735e-20 + syst_JES_EtaIntercalibration_Stat89: 2.48982304e-20 + syst_JES_EtaIntercalibration_Stat9: 5.65316227e-17 + syst_JES_EtaIntercalibration_Stat90: 2.48982304e-20 + syst_JES_EtaIntercalibration_Stat91: 2.31661796e-20 + syst_JES_EtaIntercalibration_Stat92: 2.31661796e-20 syst_JES_EtaIntercalibration_Stat93: 0.0 syst_JES_EtaIntercalibration_Stat94: 0.0 - syst_JES_EtaIntercalibration_Stat95: 5.672716691074921e-17 - syst_JES_EtaIntercalibration_Stat96: 2.62900936147059e-07 - syst_JES_EtaIntercalibration_Stat97: 7.482137796111484e-08 - syst_JES_EtaIntercalibration_Stat98: 1.9074001887385876e-07 - syst_JES_EtaIntercalibration_Stat99: 1.3307076499787622e-10 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0005727000698445915 - syst_JES_Flavour_Comp: 0.001503500166278674 - syst_JES_Gjet_Generator: 0.0018235308470108203 - syst_JES_Gjet_OOC: 0.0015120059523692359 - syst_JES_Gjet_Purity: 0.0002728654018009612 - syst_JES_Gjet_Stat1: 3.956326421062853e-06 - syst_JES_Gjet_Stat10: 2.7030014798368128e-05 - syst_JES_Gjet_Stat11: 2.6551585169251193e-05 - syst_JES_Gjet_Stat12: 9.615045865725239e-05 - syst_JES_Gjet_Stat13: 0.00030320211081059445 - syst_JES_Gjet_Stat14: 0.0008110551815382231 - syst_JES_Gjet_Stat15: 0.0010293526448695801 - syst_JES_Gjet_Stat2: 4.607347040325917e-06 - syst_JES_Gjet_Stat3: 2.8771403771800917e-06 - syst_JES_Gjet_Stat4: 5.024974701428854e-06 - syst_JES_Gjet_Stat5: 5.971101468740922e-06 - syst_JES_Gjet_Stat6: 1.6044059671728975e-05 - syst_JES_Gjet_Stat7: 1.83537407631251e-05 - syst_JES_Gjet_Stat8: 1.0261598157694541e-05 - syst_JES_Gjet_Stat9: 1.9225027308173063e-05 - syst_JES_Gjet_Veto: 0.0015205014797756691 - syst_JES_Gjet_dPhi: 0.00016191784954105583 - syst_JES_LArESZee: 0.00277849275687377 - syst_JES_LArEsmear: 0.00024746383069046673 - syst_JES_LAr_JVT: 0.000306703945197971 - syst_JES_MJB_Alpha: 1.5062870742325317e-05 - syst_JES_MJB_Asym: 0.0003133025853707562 - syst_JES_MJB_Beta: 1.59503503096327e-05 - syst_JES_MJB_Stat1: 2.2238867702459584e-07 - syst_JES_MJB_Stat10: 2.695523093946702e-05 - syst_JES_MJB_Stat11: 3.26211250572386e-05 - syst_JES_MJB_Stat12: 4.96164899504187e-05 - syst_JES_MJB_Stat13: 4.753260880700743e-05 - syst_JES_MJB_Stat14: 2.175208998579217e-05 - syst_JES_MJB_Stat15: 1.722601994077564e-05 - syst_JES_MJB_Stat16: 5.076795839897445e-05 - syst_JES_MJB_Stat2: 8.068389058541985e-07 - syst_JES_MJB_Stat3: 2.8595074313594645e-06 - syst_JES_MJB_Stat4: 3.505603657004026e-06 - syst_JES_MJB_Stat5: 4.679310926835275e-06 - syst_JES_MJB_Stat6: 5.66422086433783e-06 - syst_JES_MJB_Stat7: 8.019481654072164e-06 - syst_JES_MJB_Stat8: 1.2710442665383451e-05 - syst_JES_MJB_Stat9: 1.975025569454735e-05 - syst_JES_MJB_Threshold: 0.00022626203282919563 - syst_JES_Pileup_MuOffset: 0.0003665279389078 - syst_JES_Pileup_NPVOffset: 0.0003836035078046081 - syst_JES_Pileup_Pt_term: 0.0002212323382781098 - syst_JES_PunchThrough_MC15: 0.00033090012088241976 - syst_JES_SingleParticle_HighPt: 1.0146365494599533e-09 - syst_JES_Zjet_MC: 0.0006993051622861082 - syst_JES_Zjet_MuScale: 5.200942222328566e-05 - syst_JES_Zjet_MuSmearID: 1.1477551481043332e-05 - syst_JES_Zjet_MuSmearMS: 0.0001987325526933119 - syst_JES_Zjet_OOC: 0.0004171403001389341 - syst_JES_Zjet_Stat1: 2.8336267838231623e-05 - syst_JES_Zjet_Stat10: 3.321030111275717e-05 - syst_JES_Zjet_Stat11: 4.5109230762672064e-05 - syst_JES_Zjet_Stat12: 0.00013013720711233973 - syst_JES_Zjet_Stat13: 0.00020820165705392454 - syst_JES_Zjet_Stat2: 4.179714822807891e-12 - syst_JES_Zjet_Stat3: 1.8343491352520652e-05 - syst_JES_Zjet_Stat4: 1.640951172338775e-05 - syst_JES_Zjet_Stat5: 1.767724808899847e-05 - syst_JES_Zjet_Stat6: 1.7297887154216263e-05 - syst_JES_Zjet_Stat7: 1.6400097560685424e-05 - syst_JES_Zjet_Stat8: 1.761274538508974e-05 - syst_JES_Zjet_Stat9: 1.9676383687049813e-05 - syst_JES_Zjet_Veto: 9.019639723957937e-05 - syst_JES_Zjet_dPhi: 8.211017537431035e-05 - syst_PRW: 4.346e-05 - syst_Unfolding_bias: 7.135e-06 - syst_cleaning: 0.0005179697940034727 + syst_JES_EtaIntercalibration_Stat95: 5.67271669e-17 + syst_JES_EtaIntercalibration_Stat96: 2.62900936e-07 + syst_JES_EtaIntercalibration_Stat97: 7.48213780e-08 + syst_JES_EtaIntercalibration_Stat98: 1.90740019e-07 + syst_JES_EtaIntercalibration_Stat99: 1.33070765e-10 + syst_JES_EtaIntercalibration_TotalStat_MJB: 5.72700070e-04 + syst_JES_Flavour_Comp: 1.50350017e-03 + syst_JES_Gjet_Generator: 1.82353085e-03 + syst_JES_Gjet_OOC: 1.51200595e-03 + syst_JES_Gjet_Purity: 2.72865402e-04 + syst_JES_Gjet_Stat1: 3.95632642e-06 + syst_JES_Gjet_Stat10: 2.70300148e-05 + syst_JES_Gjet_Stat11: 2.65515852e-05 + syst_JES_Gjet_Stat12: 9.61504587e-05 + syst_JES_Gjet_Stat13: 3.03202111e-04 + syst_JES_Gjet_Stat14: 8.11055182e-04 + syst_JES_Gjet_Stat15: 1.02935264e-03 + syst_JES_Gjet_Stat2: 4.60734704e-06 + syst_JES_Gjet_Stat3: 2.87714038e-06 + syst_JES_Gjet_Stat4: 5.02497470e-06 + syst_JES_Gjet_Stat5: 5.97110147e-06 + syst_JES_Gjet_Stat6: 1.60440597e-05 + syst_JES_Gjet_Stat7: 1.83537408e-05 + syst_JES_Gjet_Stat8: 1.02615982e-05 + syst_JES_Gjet_Stat9: 1.92250273e-05 + syst_JES_Gjet_Veto: 1.52050148e-03 + syst_JES_Gjet_dPhi: 1.61917850e-04 + syst_JES_LArESZee: 2.77849276e-03 + syst_JES_LArEsmear: 2.47463831e-04 + syst_JES_LAr_JVT: 3.06703945e-04 + syst_JES_MJB_Alpha: 1.50628707e-05 + syst_JES_MJB_Asym: 3.13302585e-04 + syst_JES_MJB_Beta: 1.59503503e-05 + syst_JES_MJB_Stat1: 2.22388677e-07 + syst_JES_MJB_Stat10: 2.69552309e-05 + syst_JES_MJB_Stat11: 3.26211251e-05 + syst_JES_MJB_Stat12: 4.96164900e-05 + syst_JES_MJB_Stat13: 4.75326088e-05 + syst_JES_MJB_Stat14: 2.17520900e-05 + syst_JES_MJB_Stat15: 1.72260199e-05 + syst_JES_MJB_Stat16: 5.07679584e-05 + syst_JES_MJB_Stat2: 8.06838906e-07 + syst_JES_MJB_Stat3: 2.85950743e-06 + syst_JES_MJB_Stat4: 3.50560366e-06 + syst_JES_MJB_Stat5: 4.67931093e-06 + syst_JES_MJB_Stat6: 5.66422086e-06 + syst_JES_MJB_Stat7: 8.01948165e-06 + syst_JES_MJB_Stat8: 1.27104427e-05 + syst_JES_MJB_Stat9: 1.97502557e-05 + syst_JES_MJB_Threshold: 2.26262033e-04 + syst_JES_Pileup_MuOffset: 3.66527939e-04 + syst_JES_Pileup_NPVOffset: 3.83603508e-04 + syst_JES_Pileup_Pt_term: 2.21232338e-04 + syst_JES_PunchThrough_MC15: 3.30900121e-04 + syst_JES_SingleParticle_HighPt: 1.01463655e-09 + syst_JES_Zjet_MC: 6.99305162e-04 + syst_JES_Zjet_MuScale: 5.20094222e-05 + syst_JES_Zjet_MuSmearID: 1.14775515e-05 + syst_JES_Zjet_MuSmearMS: 1.98732553e-04 + syst_JES_Zjet_OOC: 4.17140300e-04 + syst_JES_Zjet_Stat1: 2.83362678e-05 + syst_JES_Zjet_Stat10: 3.32103011e-05 + syst_JES_Zjet_Stat11: 4.51092308e-05 + syst_JES_Zjet_Stat12: 1.30137207e-04 + syst_JES_Zjet_Stat13: 2.08201657e-04 + syst_JES_Zjet_Stat2: 4.17971482e-12 + syst_JES_Zjet_Stat3: 1.83434914e-05 + syst_JES_Zjet_Stat4: 1.64095117e-05 + syst_JES_Zjet_Stat5: 1.76772481e-05 + syst_JES_Zjet_Stat6: 1.72978872e-05 + syst_JES_Zjet_Stat7: 1.64000976e-05 + syst_JES_Zjet_Stat8: 1.76127454e-05 + syst_JES_Zjet_Stat9: 1.96763837e-05 + syst_JES_Zjet_Veto: 9.01963972e-05 + syst_JES_Zjet_dPhi: 8.21101754e-05 + syst_PRW: 4.34600000e-05 + syst_Unfolding_bias: 7.13500000e-06 + syst_cleaning: 5.17969794e-04 syst_lumi: 0.001655 - syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.00011720009844279141 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.00035495000704324547 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 9.62191575259314e-08 + syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.17200098e-04 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 3.54950007e-04 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 9.62191575e-08 syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 1.1505904603724124e-06 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.00011942564632439718 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0003444 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 1.15059046e-06 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.19425646e-04 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 3.44400000e-04 - stat: 0.000507 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.00013328603640291807 - syst_JER_NP1: 1.1360501342370414e-05 - syst_JER_NP2: 5.552586514409298e-05 - syst_JER_NP3: 1.1110039108842055e-05 - syst_JER_NP4: 2.8820157442318038e-05 - syst_JER_NP5: 1.4772907999104306e-05 - syst_JER_NP6: 1.665405956516308e-05 - syst_JER_NP7: 1.474264131694182e-05 - syst_JER_NP8: 3.571960626882665e-05 - syst_JES_EtaIntercalibration_Modelling: 0.0007861906050697884 + syst_JER_NP0: 1.33286036e-04 + syst_JER_NP1: 1.13605013e-05 + syst_JER_NP2: 5.55258651e-05 + syst_JER_NP3: 1.11100391e-05 + syst_JER_NP4: 2.88201574e-05 + syst_JER_NP5: 1.47729080e-05 + syst_JER_NP6: 1.66540596e-05 + syst_JER_NP7: 1.47426413e-05 + syst_JER_NP8: 3.57196063e-05 + syst_JES_EtaIntercalibration_Modelling: 7.86190605e-04 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 - syst_JES_EtaIntercalibration_Stat10: 1.2889831574054796e-19 - syst_JES_EtaIntercalibration_Stat100: 2.5219790220182245e-18 + syst_JES_EtaIntercalibration_Stat10: 1.28898316e-19 + syst_JES_EtaIntercalibration_Stat100: 2.52197902e-18 syst_JES_EtaIntercalibration_Stat101: 0.0 syst_JES_EtaIntercalibration_Stat102: 0.0 - syst_JES_EtaIntercalibration_Stat103: 4.145663607916108e-22 - syst_JES_EtaIntercalibration_Stat104: 4.145663607916108e-22 - syst_JES_EtaIntercalibration_Stat105: 4.145663607916108e-22 + syst_JES_EtaIntercalibration_Stat103: 4.14566361e-22 + syst_JES_EtaIntercalibration_Stat104: 4.14566361e-22 + syst_JES_EtaIntercalibration_Stat105: 4.14566361e-22 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 7.718018398526917e-21 - syst_JES_EtaIntercalibration_Stat11: 2.48376085805377e-18 - syst_JES_EtaIntercalibration_Stat110: 7.536878416824833e-21 - syst_JES_EtaIntercalibration_Stat111: 7.323110814401213e-21 - syst_JES_EtaIntercalibration_Stat112: 7.323110814401213e-21 + syst_JES_EtaIntercalibration_Stat109: 7.71801840e-21 + syst_JES_EtaIntercalibration_Stat11: 2.48376086e-18 + syst_JES_EtaIntercalibration_Stat110: 7.53687842e-21 + syst_JES_EtaIntercalibration_Stat111: 7.32311081e-21 + syst_JES_EtaIntercalibration_Stat112: 7.32311081e-21 syst_JES_EtaIntercalibration_Stat113: 0.0 - syst_JES_EtaIntercalibration_Stat114: 8.430757305841509e-21 - syst_JES_EtaIntercalibration_Stat115: 1.9941295720188294e-16 - syst_JES_EtaIntercalibration_Stat116: 1.4392639611968334e-07 - syst_JES_EtaIntercalibration_Stat117: 1.7228548074344514e-07 - syst_JES_EtaIntercalibration_Stat118: 2.683931818712986e-07 - syst_JES_EtaIntercalibration_Stat119: 1.2192825811414676e-07 - syst_JES_EtaIntercalibration_Stat12: 3.1609917524225675e-14 - syst_JES_EtaIntercalibration_Stat120: 3.244173109242795e-14 - syst_JES_EtaIntercalibration_Stat121: 3.0293568624379664e-20 + syst_JES_EtaIntercalibration_Stat114: 8.43075731e-21 + syst_JES_EtaIntercalibration_Stat115: 1.99412957e-16 + syst_JES_EtaIntercalibration_Stat116: 1.43926396e-07 + syst_JES_EtaIntercalibration_Stat117: 1.72285481e-07 + syst_JES_EtaIntercalibration_Stat118: 2.68393182e-07 + syst_JES_EtaIntercalibration_Stat119: 1.21928258e-07 + syst_JES_EtaIntercalibration_Stat12: 3.16099175e-14 + syst_JES_EtaIntercalibration_Stat120: 3.24417311e-14 + syst_JES_EtaIntercalibration_Stat121: 3.02935686e-20 syst_JES_EtaIntercalibration_Stat122: 0.0 - syst_JES_EtaIntercalibration_Stat123: 4.145663607916108e-22 - syst_JES_EtaIntercalibration_Stat124: 4.145663607916108e-22 - syst_JES_EtaIntercalibration_Stat125: 4.145663607916108e-22 + syst_JES_EtaIntercalibration_Stat123: 4.14566361e-22 + syst_JES_EtaIntercalibration_Stat124: 4.14566361e-22 + syst_JES_EtaIntercalibration_Stat125: 4.14566361e-22 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 7.718018398526917e-21 - syst_JES_EtaIntercalibration_Stat129: 7.536878416824833e-21 + syst_JES_EtaIntercalibration_Stat128: 7.71801840e-21 + syst_JES_EtaIntercalibration_Stat129: 7.53687842e-21 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 6.091622690219742e-22 + syst_JES_EtaIntercalibration_Stat130: 6.09162269e-22 syst_JES_EtaIntercalibration_Stat131: 0.0 syst_JES_EtaIntercalibration_Stat132: 0.0 - syst_JES_EtaIntercalibration_Stat133: 8.430757305841509e-21 - syst_JES_EtaIntercalibration_Stat134: 1.2358181826977997e-07 - syst_JES_EtaIntercalibration_Stat135: 1.98053698526435e-07 - syst_JES_EtaIntercalibration_Stat136: 2.418966177419602e-07 - syst_JES_EtaIntercalibration_Stat137: 1.8344472600759063e-07 - syst_JES_EtaIntercalibration_Stat138: 1.5893763147851422e-07 - syst_JES_EtaIntercalibration_Stat139: 2.269380532215785e-16 + syst_JES_EtaIntercalibration_Stat133: 8.43075731e-21 + syst_JES_EtaIntercalibration_Stat134: 1.23581818e-07 + syst_JES_EtaIntercalibration_Stat135: 1.98053699e-07 + syst_JES_EtaIntercalibration_Stat136: 2.41896618e-07 + syst_JES_EtaIntercalibration_Stat137: 1.83444726e-07 + syst_JES_EtaIntercalibration_Stat138: 1.58937631e-07 + syst_JES_EtaIntercalibration_Stat139: 2.26938053e-16 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 3.0293568624379664e-20 + syst_JES_EtaIntercalibration_Stat140: 3.02935686e-20 syst_JES_EtaIntercalibration_Stat141: 0.0 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 4.145663607916108e-22 - syst_JES_EtaIntercalibration_Stat144: 4.145663607916108e-22 + syst_JES_EtaIntercalibration_Stat143: 4.14566361e-22 + syst_JES_EtaIntercalibration_Stat144: 4.14566361e-22 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 6.091622690219742e-22 - syst_JES_EtaIntercalibration_Stat148: 6.091622690219742e-22 + syst_JES_EtaIntercalibration_Stat147: 6.09162269e-22 + syst_JES_EtaIntercalibration_Stat148: 6.09162269e-22 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 syst_JES_EtaIntercalibration_Stat150: 0.0 syst_JES_EtaIntercalibration_Stat151: 0.0 - syst_JES_EtaIntercalibration_Stat152: 4.0417405594647255e-08 - syst_JES_EtaIntercalibration_Stat153: 2.735540668679594e-07 - syst_JES_EtaIntercalibration_Stat154: 4.3448812124153635e-07 - syst_JES_EtaIntercalibration_Stat155: 1.7349128940670193e-07 - syst_JES_EtaIntercalibration_Stat156: 2.9632189773116667e-07 - syst_JES_EtaIntercalibration_Stat157: 6.045736759692734e-14 + syst_JES_EtaIntercalibration_Stat152: 4.04174056e-08 + syst_JES_EtaIntercalibration_Stat153: 2.73554067e-07 + syst_JES_EtaIntercalibration_Stat154: 4.34488121e-07 + syst_JES_EtaIntercalibration_Stat155: 1.73491289e-07 + syst_JES_EtaIntercalibration_Stat156: 2.96321898e-07 + syst_JES_EtaIntercalibration_Stat157: 6.04573676e-14 syst_JES_EtaIntercalibration_Stat158: 0.0 syst_JES_EtaIntercalibration_Stat159: 0.0 syst_JES_EtaIntercalibration_Stat16: 0.0 @@ -10006,18 +10006,18 @@ bins: syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 6.091622690219742e-22 + syst_JES_EtaIntercalibration_Stat165: 6.09162269e-22 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 3.8487573458845134e-07 - syst_JES_EtaIntercalibration_Stat171: 5.618086773982759e-07 - syst_JES_EtaIntercalibration_Stat172: 9.712846802045219e-07 - syst_JES_EtaIntercalibration_Stat173: 1.0775842983265857e-06 - syst_JES_EtaIntercalibration_Stat174: 5.330505041738541e-07 - syst_JES_EtaIntercalibration_Stat175: 2.1100535082077892e-13 + syst_JES_EtaIntercalibration_Stat170: 3.84875735e-07 + syst_JES_EtaIntercalibration_Stat171: 5.61808677e-07 + syst_JES_EtaIntercalibration_Stat172: 9.71284680e-07 + syst_JES_EtaIntercalibration_Stat173: 1.07758430e-06 + syst_JES_EtaIntercalibration_Stat174: 5.33050504e-07 + syst_JES_EtaIntercalibration_Stat175: 2.11005351e-13 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 syst_JES_EtaIntercalibration_Stat178: 0.0 @@ -10030,14 +10030,14 @@ bins: syst_JES_EtaIntercalibration_Stat184: 0.0 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 - syst_JES_EtaIntercalibration_Stat187: 9.17167994426321e-08 - syst_JES_EtaIntercalibration_Stat188: 2.8645164949778176e-06 - syst_JES_EtaIntercalibration_Stat189: 4.4835077785144975e-06 + syst_JES_EtaIntercalibration_Stat187: 9.17167994e-08 + syst_JES_EtaIntercalibration_Stat188: 2.86451649e-06 + syst_JES_EtaIntercalibration_Stat189: 4.48350778e-06 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 5.615950209002926e-06 - syst_JES_EtaIntercalibration_Stat191: 4.074240389324126e-06 - syst_JES_EtaIntercalibration_Stat192: 7.991326986176951e-08 - syst_JES_EtaIntercalibration_Stat193: 3.2907233293001104e-14 + syst_JES_EtaIntercalibration_Stat190: 5.61595021e-06 + syst_JES_EtaIntercalibration_Stat191: 4.07424039e-06 + syst_JES_EtaIntercalibration_Stat192: 7.99132699e-08 + syst_JES_EtaIntercalibration_Stat193: 3.29072333e-14 syst_JES_EtaIntercalibration_Stat194: 0.0 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 @@ -10048,13 +10048,13 @@ bins: syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 syst_JES_EtaIntercalibration_Stat201: 0.0 - syst_JES_EtaIntercalibration_Stat202: 1.967671824136332e-07 - syst_JES_EtaIntercalibration_Stat203: 6.744726439967747e-06 - syst_JES_EtaIntercalibration_Stat204: 9.719964853331518e-06 - syst_JES_EtaIntercalibration_Stat205: 9.916490848581467e-06 - syst_JES_EtaIntercalibration_Stat206: 8.30679786379806e-06 - syst_JES_EtaIntercalibration_Stat207: 2.14147723546154e-07 - syst_JES_EtaIntercalibration_Stat208: 3.2907233293001104e-14 + syst_JES_EtaIntercalibration_Stat202: 1.96767182e-07 + syst_JES_EtaIntercalibration_Stat203: 6.74472644e-06 + syst_JES_EtaIntercalibration_Stat204: 9.71996485e-06 + syst_JES_EtaIntercalibration_Stat205: 9.91649085e-06 + syst_JES_EtaIntercalibration_Stat206: 8.30679786e-06 + syst_JES_EtaIntercalibration_Stat207: 2.14147724e-07 + syst_JES_EtaIntercalibration_Stat208: 3.29072333e-14 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 @@ -10062,38 +10062,38 @@ bins: syst_JES_EtaIntercalibration_Stat212: 0.0 syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 - syst_JES_EtaIntercalibration_Stat215: 2.445454657113887e-07 - syst_JES_EtaIntercalibration_Stat216: 8.2835290033898e-06 - syst_JES_EtaIntercalibration_Stat217: 1.1086632356130514e-05 - syst_JES_EtaIntercalibration_Stat218: 1.2152955648730067e-05 - syst_JES_EtaIntercalibration_Stat219: 9.87785840908848e-06 + syst_JES_EtaIntercalibration_Stat215: 2.44545466e-07 + syst_JES_EtaIntercalibration_Stat216: 8.28352900e-06 + syst_JES_EtaIntercalibration_Stat217: 1.10866324e-05 + syst_JES_EtaIntercalibration_Stat218: 1.21529556e-05 + syst_JES_EtaIntercalibration_Stat219: 9.87785841e-06 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 1.0509966079869145e-07 + syst_JES_EtaIntercalibration_Stat220: 1.05099661e-07 syst_JES_EtaIntercalibration_Stat221: 0.0 syst_JES_EtaIntercalibration_Stat222: 0.0 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 - syst_JES_EtaIntercalibration_Stat227: 5.510022867466158e-07 - syst_JES_EtaIntercalibration_Stat228: 2.2200162161569902e-05 - syst_JES_EtaIntercalibration_Stat229: 3.690732451695734e-05 + syst_JES_EtaIntercalibration_Stat227: 5.51002287e-07 + syst_JES_EtaIntercalibration_Stat228: 2.22001622e-05 + syst_JES_EtaIntercalibration_Stat229: 3.69073245e-05 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 3.579898986005052e-05 - syst_JES_EtaIntercalibration_Stat231: 3.13279811031608e-05 - syst_JES_EtaIntercalibration_Stat232: 4.826544804515959e-07 + syst_JES_EtaIntercalibration_Stat230: 3.57989899e-05 + syst_JES_EtaIntercalibration_Stat231: 3.13279811e-05 + syst_JES_EtaIntercalibration_Stat232: 4.82654480e-07 syst_JES_EtaIntercalibration_Stat233: 0.0 syst_JES_EtaIntercalibration_Stat234: 0.0 syst_JES_EtaIntercalibration_Stat235: 0.0 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 - syst_JES_EtaIntercalibration_Stat238: 1.4582555563069184e-07 - syst_JES_EtaIntercalibration_Stat239: 3.089692662709351e-06 + syst_JES_EtaIntercalibration_Stat238: 1.45825556e-07 + syst_JES_EtaIntercalibration_Stat239: 3.08969266e-06 syst_JES_EtaIntercalibration_Stat24: 0.0 - syst_JES_EtaIntercalibration_Stat240: 3.534636155249929e-06 - syst_JES_EtaIntercalibration_Stat241: 5.100700417589725e-06 - syst_JES_EtaIntercalibration_Stat242: 3.562287467344543e-06 - syst_JES_EtaIntercalibration_Stat243: 5.093961425060068e-08 + syst_JES_EtaIntercalibration_Stat240: 3.53463616e-06 + syst_JES_EtaIntercalibration_Stat241: 5.10070042e-06 + syst_JES_EtaIntercalibration_Stat242: 3.56228747e-06 + syst_JES_EtaIntercalibration_Stat243: 5.09396143e-08 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 syst_JES_EtaIntercalibration_Stat25: 0.0 @@ -10102,12 +10102,12 @@ bins: syst_JES_EtaIntercalibration_Stat28: 0.0 syst_JES_EtaIntercalibration_Stat29: 0.0 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 8.036238913198138e-21 - syst_JES_EtaIntercalibration_Stat31: 1.191279508553723e-07 - syst_JES_EtaIntercalibration_Stat32: 3.1607812119790892e-18 - syst_JES_EtaIntercalibration_Stat33: 3.1644609246364904e-14 - syst_JES_EtaIntercalibration_Stat34: 3.2623225573742226e-14 - syst_JES_EtaIntercalibration_Stat35: 2.8973865283418345e-20 + syst_JES_EtaIntercalibration_Stat30: 8.03623891e-21 + syst_JES_EtaIntercalibration_Stat31: 1.19127951e-07 + syst_JES_EtaIntercalibration_Stat32: 3.16078121e-18 + syst_JES_EtaIntercalibration_Stat33: 3.16446092e-14 + syst_JES_EtaIntercalibration_Stat34: 3.26232256e-14 + syst_JES_EtaIntercalibration_Stat35: 2.89738653e-20 syst_JES_EtaIntercalibration_Stat36: 0.0 syst_JES_EtaIntercalibration_Stat37: 0.0 syst_JES_EtaIntercalibration_Stat38: 0.0 @@ -10126,220 +10126,220 @@ bins: syst_JES_EtaIntercalibration_Stat5: 0.0 syst_JES_EtaIntercalibration_Stat50: 0.0 syst_JES_EtaIntercalibration_Stat51: 0.0 - syst_JES_EtaIntercalibration_Stat52: 3.998279479435499e-21 - syst_JES_EtaIntercalibration_Stat53: 1.790413730028621e-17 - syst_JES_EtaIntercalibration_Stat54: 1.0518744525752312e-07 - syst_JES_EtaIntercalibration_Stat55: 3.176009077952648e-14 - syst_JES_EtaIntercalibration_Stat56: 3.2658340800855004e-14 - syst_JES_EtaIntercalibration_Stat57: 1.0141346754746137e-19 + syst_JES_EtaIntercalibration_Stat52: 3.99827948e-21 + syst_JES_EtaIntercalibration_Stat53: 1.79041373e-17 + syst_JES_EtaIntercalibration_Stat54: 1.05187445e-07 + syst_JES_EtaIntercalibration_Stat55: 3.17600908e-14 + syst_JES_EtaIntercalibration_Stat56: 3.26583408e-14 + syst_JES_EtaIntercalibration_Stat57: 1.01413468e-19 syst_JES_EtaIntercalibration_Stat58: 0.0 syst_JES_EtaIntercalibration_Stat59: 0.0 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 4.145663607916108e-22 - syst_JES_EtaIntercalibration_Stat62: 4.145663607916108e-22 + syst_JES_EtaIntercalibration_Stat61: 4.14566361e-22 + syst_JES_EtaIntercalibration_Stat62: 4.14566361e-22 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 7.718018398526917e-21 - syst_JES_EtaIntercalibration_Stat69: 7.718018398526917e-21 + syst_JES_EtaIntercalibration_Stat68: 7.71801840e-21 + syst_JES_EtaIntercalibration_Stat69: 7.71801840e-21 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 7.323110814401213e-21 - syst_JES_EtaIntercalibration_Stat71: 7.323110814401213e-21 + syst_JES_EtaIntercalibration_Stat70: 7.32311081e-21 + syst_JES_EtaIntercalibration_Stat71: 7.32311081e-21 syst_JES_EtaIntercalibration_Stat72: 0.0 syst_JES_EtaIntercalibration_Stat73: 0.0 - syst_JES_EtaIntercalibration_Stat74: 1.2716454304561472e-17 - syst_JES_EtaIntercalibration_Stat75: 1.0005348719559953e-07 - syst_JES_EtaIntercalibration_Stat76: 4.963191548324803e-08 - syst_JES_EtaIntercalibration_Stat77: 1.411289948947416e-07 - syst_JES_EtaIntercalibration_Stat78: 1.0179262614528633e-07 - syst_JES_EtaIntercalibration_Stat79: 4.3693619313922717e-20 + syst_JES_EtaIntercalibration_Stat74: 1.27164543e-17 + syst_JES_EtaIntercalibration_Stat75: 1.00053487e-07 + syst_JES_EtaIntercalibration_Stat76: 4.96319155e-08 + syst_JES_EtaIntercalibration_Stat77: 1.41128995e-07 + syst_JES_EtaIntercalibration_Stat78: 1.01792626e-07 + syst_JES_EtaIntercalibration_Stat79: 4.36936193e-20 syst_JES_EtaIntercalibration_Stat8: 0.0 syst_JES_EtaIntercalibration_Stat80: 0.0 syst_JES_EtaIntercalibration_Stat81: 0.0 - syst_JES_EtaIntercalibration_Stat82: 4.145663607916108e-22 - syst_JES_EtaIntercalibration_Stat83: 4.145663607916108e-22 - syst_JES_EtaIntercalibration_Stat84: 4.145663607916108e-22 + syst_JES_EtaIntercalibration_Stat82: 4.14566361e-22 + syst_JES_EtaIntercalibration_Stat83: 4.14566361e-22 + syst_JES_EtaIntercalibration_Stat84: 4.14566361e-22 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 7.718018398526917e-21 - syst_JES_EtaIntercalibration_Stat9: 1.2654202667757262e-17 - syst_JES_EtaIntercalibration_Stat90: 7.718018398526917e-21 - syst_JES_EtaIntercalibration_Stat91: 7.323110814401213e-21 - syst_JES_EtaIntercalibration_Stat92: 7.323110814401213e-21 + syst_JES_EtaIntercalibration_Stat89: 7.71801840e-21 + syst_JES_EtaIntercalibration_Stat9: 1.26542027e-17 + syst_JES_EtaIntercalibration_Stat90: 7.71801840e-21 + syst_JES_EtaIntercalibration_Stat91: 7.32311081e-21 + syst_JES_EtaIntercalibration_Stat92: 7.32311081e-21 syst_JES_EtaIntercalibration_Stat93: 0.0 syst_JES_EtaIntercalibration_Stat94: 0.0 - syst_JES_EtaIntercalibration_Stat95: 1.2717474189771332e-17 - syst_JES_EtaIntercalibration_Stat96: 9.806006526614185e-08 - syst_JES_EtaIntercalibration_Stat97: 4.946165661398736e-08 - syst_JES_EtaIntercalibration_Stat98: 1.2023537416251507e-07 - syst_JES_EtaIntercalibration_Stat99: 2.545282261637793e-11 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.00041180349682828096 - syst_JES_Flavour_Comp: 0.0010751417534446328 - syst_JES_Gjet_Generator: 0.0012451232499234766 - syst_JES_Gjet_OOC: 0.0010363542782272864 - syst_JES_Gjet_Purity: 0.0001862077334591665 - syst_JES_Gjet_Stat1: 3.1722775678524727e-06 - syst_JES_Gjet_Stat10: 1.8380440691125987e-05 - syst_JES_Gjet_Stat11: 1.791260450074193e-05 - syst_JES_Gjet_Stat12: 6.262996567139407e-05 - syst_JES_Gjet_Stat13: 0.00020315207973338592 - syst_JES_Gjet_Stat14: 0.0005445556238806096 - syst_JES_Gjet_Stat15: 0.0007717101593214903 - syst_JES_Gjet_Stat2: 3.338693569347148e-06 - syst_JES_Gjet_Stat3: 2.2677797512104212e-06 - syst_JES_Gjet_Stat4: 3.2996983195437734e-06 - syst_JES_Gjet_Stat5: 4.0977584262618515e-06 - syst_JES_Gjet_Stat6: 1.2110642303362775e-05 - syst_JES_Gjet_Stat7: 1.2567975045726339e-05 - syst_JES_Gjet_Stat8: 7.136051989720926e-06 - syst_JES_Gjet_Stat9: 1.3106795947141314e-05 - syst_JES_Gjet_Veto: 0.0010424470058472996 - syst_JES_Gjet_dPhi: 0.00011444727738133398 - syst_JES_LArESZee: 0.0018869008320523894 - syst_JES_LArEsmear: 0.00017250371010502934 - syst_JES_LAr_JVT: 0.0002138046772173144 - syst_JES_MJB_Alpha: 1.230779731511695e-05 - syst_JES_MJB_Asym: 0.00022350362413169053 - syst_JES_MJB_Beta: 1.0604367626124625e-05 - syst_JES_MJB_Stat1: 6.142812011147664e-08 - syst_JES_MJB_Stat10: 1.8260197151181033e-05 - syst_JES_MJB_Stat11: 2.3205279571683684e-05 - syst_JES_MJB_Stat12: 3.796687425572456e-05 - syst_JES_MJB_Stat13: 4.1581133642554766e-05 - syst_JES_MJB_Stat14: 2.5716960842992317e-05 - syst_JES_MJB_Stat15: 3.969314392939919e-05 - syst_JES_MJB_Stat16: 4.385595826110747e-05 - syst_JES_MJB_Stat2: 5.432180471044753e-07 - syst_JES_MJB_Stat3: 1.6418989821240527e-06 - syst_JES_MJB_Stat4: 1.8443633047748485e-06 - syst_JES_MJB_Stat5: 2.711220700625458e-06 - syst_JES_MJB_Stat6: 3.3096231855001257e-06 - syst_JES_MJB_Stat7: 5.196881059828096e-06 - syst_JES_MJB_Stat8: 8.245765458706668e-06 - syst_JES_MJB_Stat9: 1.2680022791777624e-05 - syst_JES_MJB_Threshold: 0.00016825928651934788 - syst_JES_Pileup_MuOffset: 0.00025388199522612863 - syst_JES_Pileup_NPVOffset: 0.0002670614676436869 - syst_JES_Pileup_Pt_term: 0.00015084325473815527 - syst_JES_PunchThrough_MC15: 0.00026885335686950237 - syst_JES_SingleParticle_HighPt: 5.09409017882487e-09 - syst_JES_Zjet_MC: 0.00047560210260258516 - syst_JES_Zjet_MuScale: 3.5477595747175434e-05 - syst_JES_Zjet_MuSmearID: 8.658047398230158e-06 - syst_JES_Zjet_MuSmearMS: 0.0001349550769700792 - syst_JES_Zjet_OOC: 0.0002912309049534407 - syst_JES_Zjet_Stat1: 2.40137481455936e-05 - syst_JES_Zjet_Stat10: 2.2584992251493026e-05 - syst_JES_Zjet_Stat11: 3.2239303264803976e-05 - syst_JES_Zjet_Stat12: 8.723062578590159e-05 - syst_JES_Zjet_Stat13: 0.00013865422703617804 - syst_JES_Zjet_Stat2: 1.1836187477393215e-10 - syst_JES_Zjet_Stat3: 1.410829585740248e-05 - syst_JES_Zjet_Stat4: 1.3160098479874687e-05 - syst_JES_Zjet_Stat5: 1.2564636564580768e-05 - syst_JES_Zjet_Stat6: 1.2872754046823082e-05 - syst_JES_Zjet_Stat7: 1.2046988254331452e-05 - syst_JES_Zjet_Stat8: 1.2024888897615645e-05 - syst_JES_Zjet_Stat9: 1.373147158901769e-05 - syst_JES_Zjet_Veto: 6.129597927270598e-05 - syst_JES_Zjet_dPhi: 5.6115011137840827e-05 - syst_PRW: 2.873e-05 - syst_Unfolding_bias: 4.717e-06 - syst_cleaning: 0.00034304132269305396 - syst_lumi: 0.0010942 - syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 7.389963244157577e-05 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0002329 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 3.3471128977075154e-06 + syst_JES_EtaIntercalibration_Stat95: 1.27174742e-17 + syst_JES_EtaIntercalibration_Stat96: 9.80600653e-08 + syst_JES_EtaIntercalibration_Stat97: 4.94616566e-08 + syst_JES_EtaIntercalibration_Stat98: 1.20235374e-07 + syst_JES_EtaIntercalibration_Stat99: 2.54528226e-11 + syst_JES_EtaIntercalibration_TotalStat_MJB: 4.11803497e-04 + syst_JES_Flavour_Comp: 1.07514175e-03 + syst_JES_Gjet_Generator: 1.24512325e-03 + syst_JES_Gjet_OOC: 1.03635428e-03 + syst_JES_Gjet_Purity: 1.86207733e-04 + syst_JES_Gjet_Stat1: 3.17227757e-06 + syst_JES_Gjet_Stat10: 1.83804407e-05 + syst_JES_Gjet_Stat11: 1.79126045e-05 + syst_JES_Gjet_Stat12: 6.26299657e-05 + syst_JES_Gjet_Stat13: 2.03152080e-04 + syst_JES_Gjet_Stat14: 5.44555624e-04 + syst_JES_Gjet_Stat15: 7.71710159e-04 + syst_JES_Gjet_Stat2: 3.33869357e-06 + syst_JES_Gjet_Stat3: 2.26777975e-06 + syst_JES_Gjet_Stat4: 3.29969832e-06 + syst_JES_Gjet_Stat5: 4.09775843e-06 + syst_JES_Gjet_Stat6: 1.21106423e-05 + syst_JES_Gjet_Stat7: 1.25679750e-05 + syst_JES_Gjet_Stat8: 7.13605199e-06 + syst_JES_Gjet_Stat9: 1.31067959e-05 + syst_JES_Gjet_Veto: 1.04244701e-03 + syst_JES_Gjet_dPhi: 1.14447277e-04 + syst_JES_LArESZee: 1.88690083e-03 + syst_JES_LArEsmear: 1.72503710e-04 + syst_JES_LAr_JVT: 2.13804677e-04 + syst_JES_MJB_Alpha: 1.23077973e-05 + syst_JES_MJB_Asym: 2.23503624e-04 + syst_JES_MJB_Beta: 1.06043676e-05 + syst_JES_MJB_Stat1: 6.14281201e-08 + syst_JES_MJB_Stat10: 1.82601972e-05 + syst_JES_MJB_Stat11: 2.32052796e-05 + syst_JES_MJB_Stat12: 3.79668743e-05 + syst_JES_MJB_Stat13: 4.15811336e-05 + syst_JES_MJB_Stat14: 2.57169608e-05 + syst_JES_MJB_Stat15: 3.96931439e-05 + syst_JES_MJB_Stat16: 4.38559583e-05 + syst_JES_MJB_Stat2: 5.43218047e-07 + syst_JES_MJB_Stat3: 1.64189898e-06 + syst_JES_MJB_Stat4: 1.84436330e-06 + syst_JES_MJB_Stat5: 2.71122070e-06 + syst_JES_MJB_Stat6: 3.30962319e-06 + syst_JES_MJB_Stat7: 5.19688106e-06 + syst_JES_MJB_Stat8: 8.24576546e-06 + syst_JES_MJB_Stat9: 1.26800228e-05 + syst_JES_MJB_Threshold: 1.68259287e-04 + syst_JES_Pileup_MuOffset: 2.53881995e-04 + syst_JES_Pileup_NPVOffset: 2.67061468e-04 + syst_JES_Pileup_Pt_term: 1.50843255e-04 + syst_JES_PunchThrough_MC15: 2.68853357e-04 + syst_JES_SingleParticle_HighPt: 5.09409018e-09 + syst_JES_Zjet_MC: 4.75602103e-04 + syst_JES_Zjet_MuScale: 3.54775957e-05 + syst_JES_Zjet_MuSmearID: 8.65804740e-06 + syst_JES_Zjet_MuSmearMS: 1.34955077e-04 + syst_JES_Zjet_OOC: 2.91230905e-04 + syst_JES_Zjet_Stat1: 2.40137481e-05 + syst_JES_Zjet_Stat10: 2.25849923e-05 + syst_JES_Zjet_Stat11: 3.22393033e-05 + syst_JES_Zjet_Stat12: 8.72306258e-05 + syst_JES_Zjet_Stat13: 1.38654227e-04 + syst_JES_Zjet_Stat2: 1.18361875e-10 + syst_JES_Zjet_Stat3: 1.41082959e-05 + syst_JES_Zjet_Stat4: 1.31600985e-05 + syst_JES_Zjet_Stat5: 1.25646366e-05 + syst_JES_Zjet_Stat6: 1.28727540e-05 + syst_JES_Zjet_Stat7: 1.20469883e-05 + syst_JES_Zjet_Stat8: 1.20248889e-05 + syst_JES_Zjet_Stat9: 1.37314716e-05 + syst_JES_Zjet_Veto: 6.12959793e-05 + syst_JES_Zjet_dPhi: 5.61150111e-05 + syst_PRW: 2.87300000e-05 + syst_Unfolding_bias: 4.71700000e-06 + syst_cleaning: 3.43041323e-04 + syst_lumi: 1.09420000e-03 + syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 7.38996324e-05 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 2.32900000e-04 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 3.34711290e-06 syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 4.0029932884655205e-05 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 7.921914983133813e-05 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0002383 -- stat: 0.0003823 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 4.00299329e-05 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 7.92191498e-05 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 2.38300000e-04 +- stat: 3.82300000e-04 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 8.444977486648499e-05 - syst_JER_NP1: 7.393685870389681e-06 - syst_JER_NP2: 3.7046798444669956e-05 - syst_JER_NP3: 6.035353179392238e-06 - syst_JER_NP4: 1.9901054161777464e-05 - syst_JER_NP5: 1.000786735523608e-05 - syst_JER_NP6: 1.1198432245185039e-05 - syst_JER_NP7: 8.886156480728887e-06 - syst_JER_NP8: 2.1445356140665975e-05 - syst_JES_EtaIntercalibration_Modelling: 0.0005415930852586654 + syst_JER_NP0: 8.44497749e-05 + syst_JER_NP1: 7.39368587e-06 + syst_JER_NP2: 3.70467984e-05 + syst_JER_NP3: 6.03535318e-06 + syst_JER_NP4: 1.99010542e-05 + syst_JER_NP5: 1.00078674e-05 + syst_JER_NP6: 1.11984322e-05 + syst_JER_NP7: 8.88615648e-06 + syst_JER_NP8: 2.14453561e-05 + syst_JES_EtaIntercalibration_Modelling: 5.41593085e-04 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 - syst_JES_EtaIntercalibration_Stat10: 3.356540611999205e-20 - syst_JES_EtaIntercalibration_Stat100: 4.512582206176416e-19 + syst_JES_EtaIntercalibration_Stat10: 3.35654061e-20 + syst_JES_EtaIntercalibration_Stat100: 4.51258221e-19 syst_JES_EtaIntercalibration_Stat101: 0.0 syst_JES_EtaIntercalibration_Stat102: 0.0 - syst_JES_EtaIntercalibration_Stat103: 1.482635491278959e-22 - syst_JES_EtaIntercalibration_Stat104: 1.482635491278959e-22 - syst_JES_EtaIntercalibration_Stat105: 1.482635491278959e-22 + syst_JES_EtaIntercalibration_Stat103: 1.48263549e-22 + syst_JES_EtaIntercalibration_Stat104: 1.48263549e-22 + syst_JES_EtaIntercalibration_Stat105: 1.48263549e-22 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 2.560837118990585e-21 - syst_JES_EtaIntercalibration_Stat11: 4.371696238303846e-19 - syst_JES_EtaIntercalibration_Stat110: 2.4979561004949626e-21 - syst_JES_EtaIntercalibration_Stat111: 2.478564705631063e-21 - syst_JES_EtaIntercalibration_Stat112: 2.478564705631063e-21 + syst_JES_EtaIntercalibration_Stat109: 2.56083712e-21 + syst_JES_EtaIntercalibration_Stat11: 4.37169624e-19 + syst_JES_EtaIntercalibration_Stat110: 2.49795610e-21 + syst_JES_EtaIntercalibration_Stat111: 2.47856471e-21 + syst_JES_EtaIntercalibration_Stat112: 2.47856471e-21 syst_JES_EtaIntercalibration_Stat113: 0.0 - syst_JES_EtaIntercalibration_Stat114: 2.770415266706419e-21 - syst_JES_EtaIntercalibration_Stat115: 4.206271835010191e-17 - syst_JES_EtaIntercalibration_Stat116: 9.396271534497074e-08 - syst_JES_EtaIntercalibration_Stat117: 1.0791126111300897e-07 - syst_JES_EtaIntercalibration_Stat118: 8.5642105736606e-08 - syst_JES_EtaIntercalibration_Stat119: 2.4760791586700132e-08 - syst_JES_EtaIntercalibration_Stat12: 6.103744043368557e-15 - syst_JES_EtaIntercalibration_Stat120: 6.280492730882566e-15 - syst_JES_EtaIntercalibration_Stat121: 9.342682056026524e-21 + syst_JES_EtaIntercalibration_Stat114: 2.77041527e-21 + syst_JES_EtaIntercalibration_Stat115: 4.20627184e-17 + syst_JES_EtaIntercalibration_Stat116: 9.39627153e-08 + syst_JES_EtaIntercalibration_Stat117: 1.07911261e-07 + syst_JES_EtaIntercalibration_Stat118: 8.56421057e-08 + syst_JES_EtaIntercalibration_Stat119: 2.47607916e-08 + syst_JES_EtaIntercalibration_Stat12: 6.10374404e-15 + syst_JES_EtaIntercalibration_Stat120: 6.28049273e-15 + syst_JES_EtaIntercalibration_Stat121: 9.34268206e-21 syst_JES_EtaIntercalibration_Stat122: 0.0 - syst_JES_EtaIntercalibration_Stat123: 1.482635491278959e-22 - syst_JES_EtaIntercalibration_Stat124: 1.482635491278959e-22 - syst_JES_EtaIntercalibration_Stat125: 1.482635491278959e-22 + syst_JES_EtaIntercalibration_Stat123: 1.48263549e-22 + syst_JES_EtaIntercalibration_Stat124: 1.48263549e-22 + syst_JES_EtaIntercalibration_Stat125: 1.48263549e-22 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 2.560837118990585e-21 - syst_JES_EtaIntercalibration_Stat129: 2.4979561004949626e-21 + syst_JES_EtaIntercalibration_Stat128: 2.56083712e-21 + syst_JES_EtaIntercalibration_Stat129: 2.49795610e-21 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 2.12869044250215e-22 + syst_JES_EtaIntercalibration_Stat130: 2.12869044e-22 syst_JES_EtaIntercalibration_Stat131: 0.0 syst_JES_EtaIntercalibration_Stat132: 0.0 - syst_JES_EtaIntercalibration_Stat133: 2.770415266706419e-21 - syst_JES_EtaIntercalibration_Stat134: 2.398024212540243e-08 - syst_JES_EtaIntercalibration_Stat135: 1.2870939825824688e-07 - syst_JES_EtaIntercalibration_Stat136: 1.5711898771313414e-07 - syst_JES_EtaIntercalibration_Stat137: 1.138699814481411e-07 - syst_JES_EtaIntercalibration_Stat138: 1.1627720101120425e-07 - syst_JES_EtaIntercalibration_Stat139: 5.2383486739620537e-17 + syst_JES_EtaIntercalibration_Stat133: 2.77041527e-21 + syst_JES_EtaIntercalibration_Stat134: 2.39802421e-08 + syst_JES_EtaIntercalibration_Stat135: 1.28709398e-07 + syst_JES_EtaIntercalibration_Stat136: 1.57118988e-07 + syst_JES_EtaIntercalibration_Stat137: 1.13869981e-07 + syst_JES_EtaIntercalibration_Stat138: 1.16277201e-07 + syst_JES_EtaIntercalibration_Stat139: 5.23834867e-17 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 9.342682056026524e-21 + syst_JES_EtaIntercalibration_Stat140: 9.34268206e-21 syst_JES_EtaIntercalibration_Stat141: 0.0 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 1.482635491278959e-22 - syst_JES_EtaIntercalibration_Stat144: 1.482635491278959e-22 + syst_JES_EtaIntercalibration_Stat143: 1.48263549e-22 + syst_JES_EtaIntercalibration_Stat144: 1.48263549e-22 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 2.12869044250215e-22 - syst_JES_EtaIntercalibration_Stat148: 2.12869044250215e-22 + syst_JES_EtaIntercalibration_Stat147: 2.12869044e-22 + syst_JES_EtaIntercalibration_Stat148: 2.12869044e-22 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 syst_JES_EtaIntercalibration_Stat150: 0.0 syst_JES_EtaIntercalibration_Stat151: 0.0 - syst_JES_EtaIntercalibration_Stat152: 8.442881661485855e-09 - syst_JES_EtaIntercalibration_Stat153: 2.0465082457688753e-07 - syst_JES_EtaIntercalibration_Stat154: 2.826210714012669e-07 - syst_JES_EtaIntercalibration_Stat155: 1.0735565599911354e-07 - syst_JES_EtaIntercalibration_Stat156: 1.7912760591265657e-07 - syst_JES_EtaIntercalibration_Stat157: 1.1712854720669082e-14 + syst_JES_EtaIntercalibration_Stat152: 8.44288166e-09 + syst_JES_EtaIntercalibration_Stat153: 2.04650825e-07 + syst_JES_EtaIntercalibration_Stat154: 2.82621071e-07 + syst_JES_EtaIntercalibration_Stat155: 1.07355656e-07 + syst_JES_EtaIntercalibration_Stat156: 1.79127606e-07 + syst_JES_EtaIntercalibration_Stat157: 1.17128547e-14 syst_JES_EtaIntercalibration_Stat158: 0.0 syst_JES_EtaIntercalibration_Stat159: 0.0 syst_JES_EtaIntercalibration_Stat16: 0.0 @@ -10348,18 +10348,18 @@ bins: syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 2.12869044250215e-22 + syst_JES_EtaIntercalibration_Stat165: 2.12869044e-22 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 1.6944980321027228e-07 - syst_JES_EtaIntercalibration_Stat171: 5.398089662093434e-07 - syst_JES_EtaIntercalibration_Stat172: 6.893484895174573e-07 - syst_JES_EtaIntercalibration_Stat173: 6.717152075098494e-07 - syst_JES_EtaIntercalibration_Stat174: 5.298639707509843e-07 - syst_JES_EtaIntercalibration_Stat175: 3.848846615221241e-14 + syst_JES_EtaIntercalibration_Stat170: 1.69449803e-07 + syst_JES_EtaIntercalibration_Stat171: 5.39808966e-07 + syst_JES_EtaIntercalibration_Stat172: 6.89348490e-07 + syst_JES_EtaIntercalibration_Stat173: 6.71715208e-07 + syst_JES_EtaIntercalibration_Stat174: 5.29863971e-07 + syst_JES_EtaIntercalibration_Stat175: 3.84884662e-14 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 syst_JES_EtaIntercalibration_Stat178: 0.0 @@ -10372,14 +10372,14 @@ bins: syst_JES_EtaIntercalibration_Stat184: 0.0 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 - syst_JES_EtaIntercalibration_Stat187: 3.200455774963934e-08 - syst_JES_EtaIntercalibration_Stat188: 2.0050897112099495e-06 - syst_JES_EtaIntercalibration_Stat189: 3.4188244690244046e-06 + syst_JES_EtaIntercalibration_Stat187: 3.20045577e-08 + syst_JES_EtaIntercalibration_Stat188: 2.00508971e-06 + syst_JES_EtaIntercalibration_Stat189: 3.41882447e-06 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 3.87127795437114e-06 - syst_JES_EtaIntercalibration_Stat191: 2.7778875067216097e-06 - syst_JES_EtaIntercalibration_Stat192: 3.415124420500665e-08 - syst_JES_EtaIntercalibration_Stat193: 6.376545048064822e-15 + syst_JES_EtaIntercalibration_Stat190: 3.87127795e-06 + syst_JES_EtaIntercalibration_Stat191: 2.77788751e-06 + syst_JES_EtaIntercalibration_Stat192: 3.41512442e-08 + syst_JES_EtaIntercalibration_Stat193: 6.37654505e-15 syst_JES_EtaIntercalibration_Stat194: 0.0 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 @@ -10390,13 +10390,13 @@ bins: syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 syst_JES_EtaIntercalibration_Stat201: 0.0 - syst_JES_EtaIntercalibration_Stat202: 1.2798461343067768e-07 - syst_JES_EtaIntercalibration_Stat203: 4.834531414728835e-06 - syst_JES_EtaIntercalibration_Stat204: 6.886342570624846e-06 - syst_JES_EtaIntercalibration_Stat205: 6.737292093267146e-06 - syst_JES_EtaIntercalibration_Stat206: 5.632892751508766e-06 - syst_JES_EtaIntercalibration_Stat207: 7.758326686051574e-08 - syst_JES_EtaIntercalibration_Stat208: 6.376545048064822e-15 + syst_JES_EtaIntercalibration_Stat202: 1.27984613e-07 + syst_JES_EtaIntercalibration_Stat203: 4.83453141e-06 + syst_JES_EtaIntercalibration_Stat204: 6.88634257e-06 + syst_JES_EtaIntercalibration_Stat205: 6.73729209e-06 + syst_JES_EtaIntercalibration_Stat206: 5.63289275e-06 + syst_JES_EtaIntercalibration_Stat207: 7.75832669e-08 + syst_JES_EtaIntercalibration_Stat208: 6.37654505e-15 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 @@ -10404,38 +10404,38 @@ bins: syst_JES_EtaIntercalibration_Stat212: 0.0 syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 - syst_JES_EtaIntercalibration_Stat215: 1.2351907575350457e-07 - syst_JES_EtaIntercalibration_Stat216: 5.928632620596423e-06 - syst_JES_EtaIntercalibration_Stat217: 7.665114138093444e-06 - syst_JES_EtaIntercalibration_Stat218: 8.204150336872184e-06 - syst_JES_EtaIntercalibration_Stat219: 6.628334406168717e-06 + syst_JES_EtaIntercalibration_Stat215: 1.23519076e-07 + syst_JES_EtaIntercalibration_Stat216: 5.92863262e-06 + syst_JES_EtaIntercalibration_Stat217: 7.66511414e-06 + syst_JES_EtaIntercalibration_Stat218: 8.20415034e-06 + syst_JES_EtaIntercalibration_Stat219: 6.62833441e-06 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 4.7332775114079246e-08 + syst_JES_EtaIntercalibration_Stat220: 4.73327751e-08 syst_JES_EtaIntercalibration_Stat221: 0.0 syst_JES_EtaIntercalibration_Stat222: 0.0 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 - syst_JES_EtaIntercalibration_Stat227: 5.143890648137847e-07 - syst_JES_EtaIntercalibration_Stat228: 1.5276292089378235e-05 - syst_JES_EtaIntercalibration_Stat229: 2.466515913186047e-05 + syst_JES_EtaIntercalibration_Stat227: 5.14389065e-07 + syst_JES_EtaIntercalibration_Stat228: 1.52762921e-05 + syst_JES_EtaIntercalibration_Stat229: 2.46651591e-05 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 2.4408082165545083e-05 - syst_JES_EtaIntercalibration_Stat231: 2.070332038587047e-05 - syst_JES_EtaIntercalibration_Stat232: 4.2541403676301053e-07 + syst_JES_EtaIntercalibration_Stat230: 2.44080822e-05 + syst_JES_EtaIntercalibration_Stat231: 2.07033204e-05 + syst_JES_EtaIntercalibration_Stat232: 4.25414037e-07 syst_JES_EtaIntercalibration_Stat233: 0.0 syst_JES_EtaIntercalibration_Stat234: 0.0 syst_JES_EtaIntercalibration_Stat235: 0.0 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 - syst_JES_EtaIntercalibration_Stat238: 9.106388197304133e-08 - syst_JES_EtaIntercalibration_Stat239: 2.2983576745145656e-06 + syst_JES_EtaIntercalibration_Stat238: 9.10638820e-08 + syst_JES_EtaIntercalibration_Stat239: 2.29835767e-06 syst_JES_EtaIntercalibration_Stat24: 0.0 - syst_JES_EtaIntercalibration_Stat240: 2.502197584124803e-06 - syst_JES_EtaIntercalibration_Stat241: 3.4171804166593256e-06 - syst_JES_EtaIntercalibration_Stat242: 2.3759013026638962e-06 - syst_JES_EtaIntercalibration_Stat243: 1.8619546181365432e-08 + syst_JES_EtaIntercalibration_Stat240: 2.50219758e-06 + syst_JES_EtaIntercalibration_Stat241: 3.41718042e-06 + syst_JES_EtaIntercalibration_Stat242: 2.37590130e-06 + syst_JES_EtaIntercalibration_Stat243: 1.86195462e-08 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 syst_JES_EtaIntercalibration_Stat25: 0.0 @@ -10444,12 +10444,12 @@ bins: syst_JES_EtaIntercalibration_Stat28: 0.0 syst_JES_EtaIntercalibration_Stat29: 0.0 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 2.634959339344727e-21 - syst_JES_EtaIntercalibration_Stat31: 3.602864554767498e-08 - syst_JES_EtaIntercalibration_Stat32: 5.809978033521298e-19 - syst_JES_EtaIntercalibration_Stat33: 6.108953573350248e-15 - syst_JES_EtaIntercalibration_Stat34: 6.3168018238039315e-15 - syst_JES_EtaIntercalibration_Stat35: 8.901711017371886e-21 + syst_JES_EtaIntercalibration_Stat30: 2.63495934e-21 + syst_JES_EtaIntercalibration_Stat31: 3.60286455e-08 + syst_JES_EtaIntercalibration_Stat32: 5.80997803e-19 + syst_JES_EtaIntercalibration_Stat33: 6.10895357e-15 + syst_JES_EtaIntercalibration_Stat34: 6.31680182e-15 + syst_JES_EtaIntercalibration_Stat35: 8.90171102e-21 syst_JES_EtaIntercalibration_Stat36: 0.0 syst_JES_EtaIntercalibration_Stat37: 0.0 syst_JES_EtaIntercalibration_Stat38: 0.0 @@ -10468,220 +10468,220 @@ bins: syst_JES_EtaIntercalibration_Stat5: 0.0 syst_JES_EtaIntercalibration_Stat50: 0.0 syst_JES_EtaIntercalibration_Stat51: 0.0 - syst_JES_EtaIntercalibration_Stat52: 5.869886333439516e-22 - syst_JES_EtaIntercalibration_Stat53: 4.20242082895978e-18 - syst_JES_EtaIntercalibration_Stat54: 1.920844339687592e-08 - syst_JES_EtaIntercalibration_Stat55: 6.1303894481110054e-15 - syst_JES_EtaIntercalibration_Stat56: 6.322961783495952e-15 - syst_JES_EtaIntercalibration_Stat57: 2.907401024970584e-20 + syst_JES_EtaIntercalibration_Stat52: 5.86988633e-22 + syst_JES_EtaIntercalibration_Stat53: 4.20242083e-18 + syst_JES_EtaIntercalibration_Stat54: 1.92084434e-08 + syst_JES_EtaIntercalibration_Stat55: 6.13038945e-15 + syst_JES_EtaIntercalibration_Stat56: 6.32296178e-15 + syst_JES_EtaIntercalibration_Stat57: 2.90740102e-20 syst_JES_EtaIntercalibration_Stat58: 0.0 syst_JES_EtaIntercalibration_Stat59: 0.0 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 1.482635491278959e-22 - syst_JES_EtaIntercalibration_Stat62: 1.482635491278959e-22 + syst_JES_EtaIntercalibration_Stat61: 1.48263549e-22 + syst_JES_EtaIntercalibration_Stat62: 1.48263549e-22 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 2.560837118990585e-21 - syst_JES_EtaIntercalibration_Stat69: 2.560837118990585e-21 + syst_JES_EtaIntercalibration_Stat68: 2.56083712e-21 + syst_JES_EtaIntercalibration_Stat69: 2.56083712e-21 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 2.478564705631063e-21 - syst_JES_EtaIntercalibration_Stat71: 2.478564705631063e-21 + syst_JES_EtaIntercalibration_Stat70: 2.47856471e-21 + syst_JES_EtaIntercalibration_Stat71: 2.47856471e-21 syst_JES_EtaIntercalibration_Stat72: 0.0 syst_JES_EtaIntercalibration_Stat73: 0.0 - syst_JES_EtaIntercalibration_Stat74: 3.0651957361113174e-18 - syst_JES_EtaIntercalibration_Stat75: 2.3458015154739756e-08 - syst_JES_EtaIntercalibration_Stat76: 3.2268106461812007e-08 - syst_JES_EtaIntercalibration_Stat77: 1.1463917425993612e-07 - syst_JES_EtaIntercalibration_Stat78: 6.62769241874419e-08 - syst_JES_EtaIntercalibration_Stat79: 9.333501915144177e-21 + syst_JES_EtaIntercalibration_Stat74: 3.06519574e-18 + syst_JES_EtaIntercalibration_Stat75: 2.34580152e-08 + syst_JES_EtaIntercalibration_Stat76: 3.22681065e-08 + syst_JES_EtaIntercalibration_Stat77: 1.14639174e-07 + syst_JES_EtaIntercalibration_Stat78: 6.62769242e-08 + syst_JES_EtaIntercalibration_Stat79: 9.33350192e-21 syst_JES_EtaIntercalibration_Stat8: 0.0 syst_JES_EtaIntercalibration_Stat80: 0.0 syst_JES_EtaIntercalibration_Stat81: 0.0 - syst_JES_EtaIntercalibration_Stat82: 1.482635491278959e-22 - syst_JES_EtaIntercalibration_Stat83: 1.482635491278959e-22 - syst_JES_EtaIntercalibration_Stat84: 1.482635491278959e-22 + syst_JES_EtaIntercalibration_Stat82: 1.48263549e-22 + syst_JES_EtaIntercalibration_Stat83: 1.48263549e-22 + syst_JES_EtaIntercalibration_Stat84: 1.48263549e-22 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 2.560837118990585e-21 - syst_JES_EtaIntercalibration_Stat9: 3.046788261990116e-18 - syst_JES_EtaIntercalibration_Stat90: 2.560837118990585e-21 - syst_JES_EtaIntercalibration_Stat91: 2.478564705631063e-21 - syst_JES_EtaIntercalibration_Stat92: 2.478564705631063e-21 + syst_JES_EtaIntercalibration_Stat89: 2.56083712e-21 + syst_JES_EtaIntercalibration_Stat9: 3.04678826e-18 + syst_JES_EtaIntercalibration_Stat90: 2.56083712e-21 + syst_JES_EtaIntercalibration_Stat91: 2.47856471e-21 + syst_JES_EtaIntercalibration_Stat92: 2.47856471e-21 syst_JES_EtaIntercalibration_Stat93: 0.0 syst_JES_EtaIntercalibration_Stat94: 0.0 - syst_JES_EtaIntercalibration_Stat95: 3.066632955588262e-18 - syst_JES_EtaIntercalibration_Stat96: 3.2220339550507536e-08 - syst_JES_EtaIntercalibration_Stat97: 3.2166857166966126e-08 - syst_JES_EtaIntercalibration_Stat98: 7.220572743903354e-08 - syst_JES_EtaIntercalibration_Stat99: 4.884391524059061e-12 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.00028741127326533316 - syst_JES_Flavour_Comp: 0.0007469645557186767 - syst_JES_Gjet_Generator: 0.000834134713340717 - syst_JES_Gjet_OOC: 0.0006957138635962345 - syst_JES_Gjet_Purity: 0.0001244780338051658 - syst_JES_Gjet_Stat1: 2.4332724400485863e-06 - syst_JES_Gjet_Stat10: 1.2491313411727366e-05 - syst_JES_Gjet_Stat11: 1.2419740124092775e-05 - syst_JES_Gjet_Stat12: 4.008779887634141e-05 - syst_JES_Gjet_Stat13: 0.0001341066123462971 - syst_JES_Gjet_Stat14: 0.00035903813167963096 - syst_JES_Gjet_Stat15: 0.0005491982952449871 - syst_JES_Gjet_Stat2: 2.492899831020091e-06 - syst_JES_Gjet_Stat3: 1.9721625186581354e-06 - syst_JES_Gjet_Stat4: 2.1522248953118256e-06 - syst_JES_Gjet_Stat5: 2.7272337633580295e-06 - syst_JES_Gjet_Stat6: 9.242999012766365e-06 - syst_JES_Gjet_Stat7: 8.217963662002893e-06 - syst_JES_Gjet_Stat8: 4.9801255004266705e-06 - syst_JES_Gjet_Stat9: 8.640496672645618e-06 - syst_JES_Gjet_Veto: 0.0007009181549938623 - syst_JES_Gjet_dPhi: 7.832053035443517e-05 - syst_JES_LArESZee: 0.001260105284291753 - syst_JES_LArEsmear: 0.00011615082737544319 - syst_JES_LAr_JVT: 0.000144703386276894 - syst_JES_MJB_Alpha: 1.0087715598687345e-05 - syst_JES_MJB_Asym: 0.00015575361151511064 - syst_JES_MJB_Beta: 7.2571411037680675e-06 - syst_JES_MJB_Stat1: 1.5582139415048243e-08 - syst_JES_MJB_Stat10: 1.2030334450878745e-05 - syst_JES_MJB_Stat11: 1.5686091769462528e-05 - syst_JES_MJB_Stat12: 2.6403647475301592e-05 - syst_JES_MJB_Stat13: 3.2156717416427936e-05 - syst_JES_MJB_Stat14: 2.3119182511498976e-05 - syst_JES_MJB_Stat15: 4.957238041490443e-05 - syst_JES_MJB_Stat16: 3.162856738772719e-05 - syst_JES_MJB_Stat2: 3.581347525453932e-07 - syst_JES_MJB_Stat3: 9.867587496445116e-07 - syst_JES_MJB_Stat4: 9.091011756124837e-07 - syst_JES_MJB_Stat5: 1.5148088881109723e-06 - syst_JES_MJB_Stat6: 1.982538692560627e-06 - syst_JES_MJB_Stat7: 3.3473413330582225e-06 - syst_JES_MJB_Stat8: 5.2329300348848545e-06 - syst_JES_MJB_Stat9: 7.982167813319887e-06 - syst_JES_MJB_Threshold: 0.0001202912202739668 - syst_JES_Pileup_MuOffset: 0.00017187445272640143 - syst_JES_Pileup_NPVOffset: 0.00018166157408764242 - syst_JES_Pileup_Pt_term: 9.968855551165339e-05 - syst_JES_PunchThrough_MC15: 0.00020345033792058446 - syst_JES_SingleParticle_HighPt: 1.5253094767947914e-08 - syst_JES_Zjet_MC: 0.0003191195857355045 - syst_JES_Zjet_MuScale: 2.398289546739509e-05 - syst_JES_Zjet_MuSmearID: 6.416748456188695e-06 - syst_JES_Zjet_MuSmearMS: 8.970640612576117e-05 - syst_JES_Zjet_OOC: 0.00019941624808425217 - syst_JES_Zjet_Stat1: 1.952580023968288e-05 - syst_JES_Zjet_Stat10: 1.5066379790779203e-05 - syst_JES_Zjet_Stat11: 2.2414499771353363e-05 - syst_JES_Zjet_Stat12: 5.6871281856487116e-05 - syst_JES_Zjet_Stat13: 9.034235330120642e-05 - syst_JES_Zjet_Stat2: 1.4311399372528182e-09 - syst_JES_Zjet_Stat3: 1.0679466325617587e-05 - syst_JES_Zjet_Stat4: 1.0129184110776149e-05 - syst_JES_Zjet_Stat5: 9.294546075521923e-06 - syst_JES_Zjet_Stat6: 9.346006794348053e-06 - syst_JES_Zjet_Stat7: 8.959529619349443e-06 - syst_JES_Zjet_Stat8: 8.04472118845644e-06 - syst_JES_Zjet_Stat9: 9.430585771838354e-06 - syst_JES_Zjet_Veto: 4.097538132830493e-05 - syst_JES_Zjet_dPhi: 3.777590601163657e-05 + syst_JES_EtaIntercalibration_Stat95: 3.06663296e-18 + syst_JES_EtaIntercalibration_Stat96: 3.22203396e-08 + syst_JES_EtaIntercalibration_Stat97: 3.21668572e-08 + syst_JES_EtaIntercalibration_Stat98: 7.22057274e-08 + syst_JES_EtaIntercalibration_Stat99: 4.88439152e-12 + syst_JES_EtaIntercalibration_TotalStat_MJB: 2.87411273e-04 + syst_JES_Flavour_Comp: 7.46964556e-04 + syst_JES_Gjet_Generator: 8.34134713e-04 + syst_JES_Gjet_OOC: 6.95713864e-04 + syst_JES_Gjet_Purity: 1.24478034e-04 + syst_JES_Gjet_Stat1: 2.43327244e-06 + syst_JES_Gjet_Stat10: 1.24913134e-05 + syst_JES_Gjet_Stat11: 1.24197401e-05 + syst_JES_Gjet_Stat12: 4.00877989e-05 + syst_JES_Gjet_Stat13: 1.34106612e-04 + syst_JES_Gjet_Stat14: 3.59038132e-04 + syst_JES_Gjet_Stat15: 5.49198295e-04 + syst_JES_Gjet_Stat2: 2.49289983e-06 + syst_JES_Gjet_Stat3: 1.97216252e-06 + syst_JES_Gjet_Stat4: 2.15222490e-06 + syst_JES_Gjet_Stat5: 2.72723376e-06 + syst_JES_Gjet_Stat6: 9.24299901e-06 + syst_JES_Gjet_Stat7: 8.21796366e-06 + syst_JES_Gjet_Stat8: 4.98012550e-06 + syst_JES_Gjet_Stat9: 8.64049667e-06 + syst_JES_Gjet_Veto: 7.00918155e-04 + syst_JES_Gjet_dPhi: 7.83205304e-05 + syst_JES_LArESZee: 1.26010528e-03 + syst_JES_LArEsmear: 1.16150827e-04 + syst_JES_LAr_JVT: 1.44703386e-04 + syst_JES_MJB_Alpha: 1.00877156e-05 + syst_JES_MJB_Asym: 1.55753612e-04 + syst_JES_MJB_Beta: 7.25714110e-06 + syst_JES_MJB_Stat1: 1.55821394e-08 + syst_JES_MJB_Stat10: 1.20303345e-05 + syst_JES_MJB_Stat11: 1.56860918e-05 + syst_JES_MJB_Stat12: 2.64036475e-05 + syst_JES_MJB_Stat13: 3.21567174e-05 + syst_JES_MJB_Stat14: 2.31191825e-05 + syst_JES_MJB_Stat15: 4.95723804e-05 + syst_JES_MJB_Stat16: 3.16285674e-05 + syst_JES_MJB_Stat2: 3.58134753e-07 + syst_JES_MJB_Stat3: 9.86758750e-07 + syst_JES_MJB_Stat4: 9.09101176e-07 + syst_JES_MJB_Stat5: 1.51480889e-06 + syst_JES_MJB_Stat6: 1.98253869e-06 + syst_JES_MJB_Stat7: 3.34734133e-06 + syst_JES_MJB_Stat8: 5.23293003e-06 + syst_JES_MJB_Stat9: 7.98216781e-06 + syst_JES_MJB_Threshold: 1.20291220e-04 + syst_JES_Pileup_MuOffset: 1.71874453e-04 + syst_JES_Pileup_NPVOffset: 1.81661574e-04 + syst_JES_Pileup_Pt_term: 9.96885555e-05 + syst_JES_PunchThrough_MC15: 2.03450338e-04 + syst_JES_SingleParticle_HighPt: 1.52530948e-08 + syst_JES_Zjet_MC: 3.19119586e-04 + syst_JES_Zjet_MuScale: 2.39828955e-05 + syst_JES_Zjet_MuSmearID: 6.41674846e-06 + syst_JES_Zjet_MuSmearMS: 8.97064061e-05 + syst_JES_Zjet_OOC: 1.99416248e-04 + syst_JES_Zjet_Stat1: 1.95258002e-05 + syst_JES_Zjet_Stat10: 1.50663798e-05 + syst_JES_Zjet_Stat11: 2.24144998e-05 + syst_JES_Zjet_Stat12: 5.68712819e-05 + syst_JES_Zjet_Stat13: 9.03423533e-05 + syst_JES_Zjet_Stat2: 1.43113994e-09 + syst_JES_Zjet_Stat3: 1.06794663e-05 + syst_JES_Zjet_Stat4: 1.01291841e-05 + syst_JES_Zjet_Stat5: 9.29454608e-06 + syst_JES_Zjet_Stat6: 9.34600679e-06 + syst_JES_Zjet_Stat7: 8.95952962e-06 + syst_JES_Zjet_Stat8: 8.04472119e-06 + syst_JES_Zjet_Stat9: 9.43058577e-06 + syst_JES_Zjet_Veto: 4.09753813e-05 + syst_JES_Zjet_dPhi: 3.77759060e-05 syst_PRW: 1.87e-05 syst_Unfolding_bias: 3.07e-06 - syst_cleaning: 0.00021841160683443544 - syst_lumi: 0.0007121 - syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 4.613411617230788e-05 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.00014990060039906446 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 3.904507523363222e-06 + syst_cleaning: 2.18411607e-04 + syst_lumi: 7.12100000e-04 + syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 4.61341162e-05 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.49900600e-04 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 3.90450752e-06 syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 4.6691996102115834e-05 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 5.208301522569522e-05 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.00016185075687187873 -- stat: 0.00029066 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 4.66919961e-05 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 5.20830152e-05 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.61850757e-04 +- stat: 2.90660000e-04 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 5.068684715979087e-05 - syst_JER_NP1: 4.651791912800916e-06 - syst_JER_NP2: 2.5169606174908658e-05 - syst_JER_NP3: 3.4818701020428665e-06 - syst_JER_NP4: 1.2557088705189592e-05 - syst_JER_NP5: 6.9807808123447056e-06 - syst_JER_NP6: 7.718287164261252e-06 - syst_JER_NP7: 4.491079825609872e-06 - syst_JER_NP8: 1.1634669859948755e-05 - syst_JES_EtaIntercalibration_Modelling: 0.0003576815343290733 + syst_JER_NP0: 5.06868472e-05 + syst_JER_NP1: 4.65179191e-06 + syst_JER_NP2: 2.51696062e-05 + syst_JER_NP3: 3.48187010e-06 + syst_JER_NP4: 1.25570887e-05 + syst_JER_NP5: 6.98078081e-06 + syst_JER_NP6: 7.71828716e-06 + syst_JER_NP7: 4.49107983e-06 + syst_JER_NP8: 1.16346699e-05 + syst_JES_EtaIntercalibration_Modelling: 3.57681534e-04 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 - syst_JES_EtaIntercalibration_Stat10: 8.153502483595625e-21 - syst_JES_EtaIntercalibration_Stat100: 6.086961123582111e-20 + syst_JES_EtaIntercalibration_Stat10: 8.15350248e-21 + syst_JES_EtaIntercalibration_Stat100: 6.08696112e-20 syst_JES_EtaIntercalibration_Stat101: 0.0 syst_JES_EtaIntercalibration_Stat102: 0.0 - syst_JES_EtaIntercalibration_Stat103: 5.199616524321769e-23 - syst_JES_EtaIntercalibration_Stat104: 5.199616524321769e-23 - syst_JES_EtaIntercalibration_Stat105: 5.199616524321769e-23 + syst_JES_EtaIntercalibration_Stat103: 5.19961652e-23 + syst_JES_EtaIntercalibration_Stat104: 5.19961652e-23 + syst_JES_EtaIntercalibration_Stat105: 5.19961652e-23 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 8.259284275892191e-22 - syst_JES_EtaIntercalibration_Stat11: 5.605782438696671e-20 - syst_JES_EtaIntercalibration_Stat110: 8.046321955247627e-22 - syst_JES_EtaIntercalibration_Stat111: 8.181341989551591e-22 - syst_JES_EtaIntercalibration_Stat112: 8.181341989551591e-22 + syst_JES_EtaIntercalibration_Stat109: 8.25928428e-22 + syst_JES_EtaIntercalibration_Stat11: 5.60578244e-20 + syst_JES_EtaIntercalibration_Stat110: 8.04632196e-22 + syst_JES_EtaIntercalibration_Stat111: 8.18134199e-22 + syst_JES_EtaIntercalibration_Stat112: 8.18134199e-22 syst_JES_EtaIntercalibration_Stat113: 0.0 - syst_JES_EtaIntercalibration_Stat114: 8.836923220216413e-22 - syst_JES_EtaIntercalibration_Stat115: 8.116275621706055e-18 - syst_JES_EtaIntercalibration_Stat116: 5.83758620921353e-08 - syst_JES_EtaIntercalibration_Stat117: 6.015953353376337e-08 - syst_JES_EtaIntercalibration_Stat118: 2.7597691262132776e-08 - syst_JES_EtaIntercalibration_Stat119: 2.2918364617703423e-08 - syst_JES_EtaIntercalibration_Stat12: 1.0520467641840977e-15 - syst_JES_EtaIntercalibration_Stat120: 1.0865250010884447e-15 - syst_JES_EtaIntercalibration_Stat121: 2.778209495340479e-21 + syst_JES_EtaIntercalibration_Stat114: 8.83692322e-22 + syst_JES_EtaIntercalibration_Stat115: 8.11627562e-18 + syst_JES_EtaIntercalibration_Stat116: 5.83758621e-08 + syst_JES_EtaIntercalibration_Stat117: 6.01595335e-08 + syst_JES_EtaIntercalibration_Stat118: 2.75976913e-08 + syst_JES_EtaIntercalibration_Stat119: 2.29183646e-08 + syst_JES_EtaIntercalibration_Stat12: 1.05204676e-15 + syst_JES_EtaIntercalibration_Stat120: 1.08652500e-15 + syst_JES_EtaIntercalibration_Stat121: 2.77820950e-21 syst_JES_EtaIntercalibration_Stat122: 0.0 - syst_JES_EtaIntercalibration_Stat123: 5.199616524321769e-23 - syst_JES_EtaIntercalibration_Stat124: 5.199616524321769e-23 - syst_JES_EtaIntercalibration_Stat125: 5.199616524321769e-23 + syst_JES_EtaIntercalibration_Stat123: 5.19961652e-23 + syst_JES_EtaIntercalibration_Stat124: 5.19961652e-23 + syst_JES_EtaIntercalibration_Stat125: 5.19961652e-23 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 8.259284275892191e-22 - syst_JES_EtaIntercalibration_Stat129: 8.046321955247627e-22 + syst_JES_EtaIntercalibration_Stat128: 8.25928428e-22 + syst_JES_EtaIntercalibration_Stat129: 8.04632196e-22 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 7.265087112347656e-23 + syst_JES_EtaIntercalibration_Stat130: 7.26508711e-23 syst_JES_EtaIntercalibration_Stat131: 0.0 syst_JES_EtaIntercalibration_Stat132: 0.0 - syst_JES_EtaIntercalibration_Stat133: 8.836923220216413e-22 - syst_JES_EtaIntercalibration_Stat134: 8.322504351118354e-09 - syst_JES_EtaIntercalibration_Stat135: 8.093101815744072e-08 - syst_JES_EtaIntercalibration_Stat136: 1.407332905712078e-07 - syst_JES_EtaIntercalibration_Stat137: 7.030384822326584e-08 - syst_JES_EtaIntercalibration_Stat138: 7.662138784308205e-08 - syst_JES_EtaIntercalibration_Stat139: 1.1211370745809808e-17 + syst_JES_EtaIntercalibration_Stat133: 8.83692322e-22 + syst_JES_EtaIntercalibration_Stat134: 8.32250435e-09 + syst_JES_EtaIntercalibration_Stat135: 8.09310182e-08 + syst_JES_EtaIntercalibration_Stat136: 1.40733291e-07 + syst_JES_EtaIntercalibration_Stat137: 7.03038482e-08 + syst_JES_EtaIntercalibration_Stat138: 7.66213878e-08 + syst_JES_EtaIntercalibration_Stat139: 1.12113707e-17 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 2.778209495340479e-21 + syst_JES_EtaIntercalibration_Stat140: 2.77820950e-21 syst_JES_EtaIntercalibration_Stat141: 0.0 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 5.199616524321769e-23 - syst_JES_EtaIntercalibration_Stat144: 5.199616524321769e-23 + syst_JES_EtaIntercalibration_Stat143: 5.19961652e-23 + syst_JES_EtaIntercalibration_Stat144: 5.19961652e-23 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 7.265087112347656e-23 - syst_JES_EtaIntercalibration_Stat148: 7.265087112347656e-23 + syst_JES_EtaIntercalibration_Stat147: 7.26508711e-23 + syst_JES_EtaIntercalibration_Stat148: 7.26508711e-23 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 syst_JES_EtaIntercalibration_Stat150: 0.0 syst_JES_EtaIntercalibration_Stat151: 0.0 - syst_JES_EtaIntercalibration_Stat152: 1.8273136019849034e-08 - syst_JES_EtaIntercalibration_Stat153: 1.520482380693706e-07 - syst_JES_EtaIntercalibration_Stat154: 1.7661678876879174e-07 - syst_JES_EtaIntercalibration_Stat155: 6.61870038225028e-08 - syst_JES_EtaIntercalibration_Stat156: 1.086004174715733e-07 - syst_JES_EtaIntercalibration_Stat157: 2.028140132159265e-15 + syst_JES_EtaIntercalibration_Stat152: 1.82731360e-08 + syst_JES_EtaIntercalibration_Stat153: 1.52048238e-07 + syst_JES_EtaIntercalibration_Stat154: 1.76616789e-07 + syst_JES_EtaIntercalibration_Stat155: 6.61870038e-08 + syst_JES_EtaIntercalibration_Stat156: 1.08600417e-07 + syst_JES_EtaIntercalibration_Stat157: 2.02814013e-15 syst_JES_EtaIntercalibration_Stat158: 0.0 syst_JES_EtaIntercalibration_Stat159: 0.0 syst_JES_EtaIntercalibration_Stat16: 0.0 @@ -10690,18 +10690,18 @@ bins: syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 7.265087112347656e-23 + syst_JES_EtaIntercalibration_Stat165: 7.26508711e-23 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 6.367532862106014e-08 - syst_JES_EtaIntercalibration_Stat171: 4.24514416716323e-07 - syst_JES_EtaIntercalibration_Stat172: 4.508263634704608e-07 - syst_JES_EtaIntercalibration_Stat173: 4.0327688998999187e-07 - syst_JES_EtaIntercalibration_Stat174: 4.004994047436275e-07 - syst_JES_EtaIntercalibration_Stat175: 5.88869662998528e-15 + syst_JES_EtaIntercalibration_Stat170: 6.36753286e-08 + syst_JES_EtaIntercalibration_Stat171: 4.24514417e-07 + syst_JES_EtaIntercalibration_Stat172: 4.50826363e-07 + syst_JES_EtaIntercalibration_Stat173: 4.03276890e-07 + syst_JES_EtaIntercalibration_Stat174: 4.00499405e-07 + syst_JES_EtaIntercalibration_Stat175: 5.88869663e-15 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 syst_JES_EtaIntercalibration_Stat178: 0.0 @@ -10714,14 +10714,14 @@ bins: syst_JES_EtaIntercalibration_Stat184: 0.0 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 - syst_JES_EtaIntercalibration_Stat187: 3.6863202180494306e-08 - syst_JES_EtaIntercalibration_Stat188: 1.4426263376217695e-06 - syst_JES_EtaIntercalibration_Stat189: 2.4167297635441163e-06 + syst_JES_EtaIntercalibration_Stat187: 3.68632022e-08 + syst_JES_EtaIntercalibration_Stat188: 1.44262634e-06 + syst_JES_EtaIntercalibration_Stat189: 2.41672976e-06 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 2.4026944770403083e-06 - syst_JES_EtaIntercalibration_Stat191: 1.6967860796222958e-06 - syst_JES_EtaIntercalibration_Stat192: 1.3558258995903568e-08 - syst_JES_EtaIntercalibration_Stat193: 1.1044421974462946e-15 + syst_JES_EtaIntercalibration_Stat190: 2.40269448e-06 + syst_JES_EtaIntercalibration_Stat191: 1.69678608e-06 + syst_JES_EtaIntercalibration_Stat192: 1.35582590e-08 + syst_JES_EtaIntercalibration_Stat193: 1.10444220e-15 syst_JES_EtaIntercalibration_Stat194: 0.0 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 @@ -10732,13 +10732,13 @@ bins: syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 syst_JES_EtaIntercalibration_Stat201: 0.0 - syst_JES_EtaIntercalibration_Stat202: 8.05060784972166e-08 - syst_JES_EtaIntercalibration_Stat203: 3.3389952081427133e-06 - syst_JES_EtaIntercalibration_Stat204: 4.734188314801176e-06 - syst_JES_EtaIntercalibration_Stat205: 4.367110142874805e-06 - syst_JES_EtaIntercalibration_Stat206: 3.5450727425540927e-06 - syst_JES_EtaIntercalibration_Stat207: 2.638551875555984e-08 - syst_JES_EtaIntercalibration_Stat208: 1.1044421974462946e-15 + syst_JES_EtaIntercalibration_Stat202: 8.05060785e-08 + syst_JES_EtaIntercalibration_Stat203: 3.33899521e-06 + syst_JES_EtaIntercalibration_Stat204: 4.73418831e-06 + syst_JES_EtaIntercalibration_Stat205: 4.36711014e-06 + syst_JES_EtaIntercalibration_Stat206: 3.54507274e-06 + syst_JES_EtaIntercalibration_Stat207: 2.63855188e-08 + syst_JES_EtaIntercalibration_Stat208: 1.10444220e-15 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 @@ -10746,38 +10746,38 @@ bins: syst_JES_EtaIntercalibration_Stat212: 0.0 syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 - syst_JES_EtaIntercalibration_Stat215: 7.03555093791524e-08 - syst_JES_EtaIntercalibration_Stat216: 4.087133798580614e-06 - syst_JES_EtaIntercalibration_Stat217: 5.1068370592765146e-06 - syst_JES_EtaIntercalibration_Stat218: 5.348424324041614e-06 - syst_JES_EtaIntercalibration_Stat219: 4.162953192146172e-06 + syst_JES_EtaIntercalibration_Stat215: 7.03555094e-08 + syst_JES_EtaIntercalibration_Stat216: 4.08713380e-06 + syst_JES_EtaIntercalibration_Stat217: 5.10683706e-06 + syst_JES_EtaIntercalibration_Stat218: 5.34842432e-06 + syst_JES_EtaIntercalibration_Stat219: 4.16295319e-06 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 3.6526937330551e-08 + syst_JES_EtaIntercalibration_Stat220: 3.65269373e-08 syst_JES_EtaIntercalibration_Stat221: 0.0 syst_JES_EtaIntercalibration_Stat222: 0.0 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 - syst_JES_EtaIntercalibration_Stat227: 4.156276067587426e-07 - syst_JES_EtaIntercalibration_Stat228: 1.0179184348463288e-05 - syst_JES_EtaIntercalibration_Stat229: 1.595940083461782e-05 + syst_JES_EtaIntercalibration_Stat227: 4.15627607e-07 + syst_JES_EtaIntercalibration_Stat228: 1.01791843e-05 + syst_JES_EtaIntercalibration_Stat229: 1.59594008e-05 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 1.596010025031171e-05 - syst_JES_EtaIntercalibration_Stat231: 1.3267378452429854e-05 - syst_JES_EtaIntercalibration_Stat232: 3.0248602149520894e-07 + syst_JES_EtaIntercalibration_Stat230: 1.59601003e-05 + syst_JES_EtaIntercalibration_Stat231: 1.32673785e-05 + syst_JES_EtaIntercalibration_Stat232: 3.02486021e-07 syst_JES_EtaIntercalibration_Stat233: 0.0 syst_JES_EtaIntercalibration_Stat234: 0.0 syst_JES_EtaIntercalibration_Stat235: 0.0 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 - syst_JES_EtaIntercalibration_Stat238: 9.211241284430672e-08 - syst_JES_EtaIntercalibration_Stat239: 1.6961149725180778e-06 + syst_JES_EtaIntercalibration_Stat238: 9.21124128e-08 + syst_JES_EtaIntercalibration_Stat239: 1.69611497e-06 syst_JES_EtaIntercalibration_Stat24: 0.0 - syst_JES_EtaIntercalibration_Stat240: 1.818990035706628e-06 - syst_JES_EtaIntercalibration_Stat241: 2.1438402459138604e-06 - syst_JES_EtaIntercalibration_Stat242: 1.4452589620894934e-06 - syst_JES_EtaIntercalibration_Stat243: 4.1430655317047544e-08 + syst_JES_EtaIntercalibration_Stat240: 1.81899004e-06 + syst_JES_EtaIntercalibration_Stat241: 2.14384025e-06 + syst_JES_EtaIntercalibration_Stat242: 1.44525896e-06 + syst_JES_EtaIntercalibration_Stat243: 4.14306553e-08 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 syst_JES_EtaIntercalibration_Stat25: 0.0 @@ -10786,12 +10786,12 @@ bins: syst_JES_EtaIntercalibration_Stat28: 0.0 syst_JES_EtaIntercalibration_Stat29: 0.0 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 8.382397866959071e-22 - syst_JES_EtaIntercalibration_Stat31: 2.0380941851396368e-08 - syst_JES_EtaIntercalibration_Stat32: 9.116040423341703e-20 - syst_JES_EtaIntercalibration_Stat33: 1.0528294900873451e-15 - syst_JES_EtaIntercalibration_Stat34: 1.0929270349829743e-15 - syst_JES_EtaIntercalibration_Stat35: 2.6332565617722764e-21 + syst_JES_EtaIntercalibration_Stat30: 8.38239787e-22 + syst_JES_EtaIntercalibration_Stat31: 2.03809419e-08 + syst_JES_EtaIntercalibration_Stat32: 9.11604042e-20 + syst_JES_EtaIntercalibration_Stat33: 1.05282949e-15 + syst_JES_EtaIntercalibration_Stat34: 1.09292703e-15 + syst_JES_EtaIntercalibration_Stat35: 2.63325656e-21 syst_JES_EtaIntercalibration_Stat36: 0.0 syst_JES_EtaIntercalibration_Stat37: 0.0 syst_JES_EtaIntercalibration_Stat38: 0.0 @@ -10810,220 +10810,220 @@ bins: syst_JES_EtaIntercalibration_Stat5: 0.0 syst_JES_EtaIntercalibration_Stat50: 0.0 syst_JES_EtaIntercalibration_Stat51: 0.0 - syst_JES_EtaIntercalibration_Stat52: 5.430920548120732e-23 - syst_JES_EtaIntercalibration_Stat53: 9.202681930149494e-19 - syst_JES_EtaIntercalibration_Stat54: 9.303710923971372e-09 - syst_JES_EtaIntercalibration_Stat55: 1.0562542181930766e-15 - syst_JES_EtaIntercalibration_Stat56: 1.0938101897940508e-15 - syst_JES_EtaIntercalibration_Stat57: 8.01859594941658e-21 + syst_JES_EtaIntercalibration_Stat52: 5.43092055e-23 + syst_JES_EtaIntercalibration_Stat53: 9.20268193e-19 + syst_JES_EtaIntercalibration_Stat54: 9.30371092e-09 + syst_JES_EtaIntercalibration_Stat55: 1.05625422e-15 + syst_JES_EtaIntercalibration_Stat56: 1.09381019e-15 + syst_JES_EtaIntercalibration_Stat57: 8.01859595e-21 syst_JES_EtaIntercalibration_Stat58: 0.0 syst_JES_EtaIntercalibration_Stat59: 0.0 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 5.199616524321769e-23 - syst_JES_EtaIntercalibration_Stat62: 5.199616524321769e-23 + syst_JES_EtaIntercalibration_Stat61: 5.19961652e-23 + syst_JES_EtaIntercalibration_Stat62: 5.19961652e-23 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 8.259284275892191e-22 - syst_JES_EtaIntercalibration_Stat69: 8.259284275892191e-22 + syst_JES_EtaIntercalibration_Stat68: 8.25928428e-22 + syst_JES_EtaIntercalibration_Stat69: 8.25928428e-22 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 8.181341989551591e-22 - syst_JES_EtaIntercalibration_Stat71: 8.181341989551591e-22 + syst_JES_EtaIntercalibration_Stat70: 8.18134199e-22 + syst_JES_EtaIntercalibration_Stat71: 8.18134199e-22 syst_JES_EtaIntercalibration_Stat72: 0.0 syst_JES_EtaIntercalibration_Stat73: 0.0 - syst_JES_EtaIntercalibration_Stat74: 6.911065549513693e-19 - syst_JES_EtaIntercalibration_Stat75: 1.6933726140457098e-08 - syst_JES_EtaIntercalibration_Stat76: 2.0039827828159545e-08 - syst_JES_EtaIntercalibration_Stat77: 8.675852093418547e-08 - syst_JES_EtaIntercalibration_Stat78: 4.169912319840703e-08 - syst_JES_EtaIntercalibration_Stat79: 1.5701111767960891e-21 + syst_JES_EtaIntercalibration_Stat74: 6.91106555e-19 + syst_JES_EtaIntercalibration_Stat75: 1.69337261e-08 + syst_JES_EtaIntercalibration_Stat76: 2.00398278e-08 + syst_JES_EtaIntercalibration_Stat77: 8.67585209e-08 + syst_JES_EtaIntercalibration_Stat78: 4.16991232e-08 + syst_JES_EtaIntercalibration_Stat79: 1.57011118e-21 syst_JES_EtaIntercalibration_Stat8: 0.0 syst_JES_EtaIntercalibration_Stat80: 0.0 syst_JES_EtaIntercalibration_Stat81: 0.0 - syst_JES_EtaIntercalibration_Stat82: 5.199616524321769e-23 - syst_JES_EtaIntercalibration_Stat83: 5.199616524321769e-23 - syst_JES_EtaIntercalibration_Stat84: 5.199616524321769e-23 + syst_JES_EtaIntercalibration_Stat82: 5.19961652e-23 + syst_JES_EtaIntercalibration_Stat83: 5.19961652e-23 + syst_JES_EtaIntercalibration_Stat84: 5.19961652e-23 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 8.259284275892191e-22 - syst_JES_EtaIntercalibration_Stat9: 6.854249579251911e-19 - syst_JES_EtaIntercalibration_Stat90: 8.259284275892191e-22 - syst_JES_EtaIntercalibration_Stat91: 8.181341989551591e-22 - syst_JES_EtaIntercalibration_Stat92: 8.181341989551591e-22 + syst_JES_EtaIntercalibration_Stat89: 8.25928428e-22 + syst_JES_EtaIntercalibration_Stat9: 6.85424958e-19 + syst_JES_EtaIntercalibration_Stat90: 8.25928428e-22 + syst_JES_EtaIntercalibration_Stat91: 8.18134199e-22 + syst_JES_EtaIntercalibration_Stat92: 8.18134199e-22 syst_JES_EtaIntercalibration_Stat93: 0.0 syst_JES_EtaIntercalibration_Stat94: 0.0 - syst_JES_EtaIntercalibration_Stat95: 6.913169993013335e-19 - syst_JES_EtaIntercalibration_Stat96: 2.2953386743572288e-08 - syst_JES_EtaIntercalibration_Stat97: 2.0033594285599375e-08 - syst_JES_EtaIntercalibration_Stat98: 4.133777592913654e-08 - syst_JES_EtaIntercalibration_Stat99: 7.928006686773085e-13 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.00019295685398554776 - syst_JES_Flavour_Comp: 0.0004972739360754794 - syst_JES_Gjet_Generator: 0.0005412819297741242 - syst_JES_Gjet_OOC: 0.00045135397140160405 - syst_JES_Gjet_Purity: 8.01816163468909e-05 - syst_JES_Gjet_Stat1: 1.6156194106286295e-06 - syst_JES_Gjet_Stat10: 8.453298232051204e-06 - syst_JES_Gjet_Stat11: 8.712929515955009e-06 - syst_JES_Gjet_Stat12: 2.4665550875664626e-05 - syst_JES_Gjet_Stat13: 8.694558226270038e-05 - syst_JES_Gjet_Stat14: 0.00023019041574314078 - syst_JES_Gjet_Stat15: 0.0003741517472897861 - syst_JES_Gjet_Stat2: 1.8929758602528453e-06 - syst_JES_Gjet_Stat3: 1.7666614701181435e-06 - syst_JES_Gjet_Stat4: 1.4305924472050033e-06 - syst_JES_Gjet_Stat5: 1.808500138236102e-06 - syst_JES_Gjet_Stat6: 7.125514069174237e-06 - syst_JES_Gjet_Stat7: 5.106161278298992e-06 - syst_JES_Gjet_Stat8: 3.4115458006598713e-06 - syst_JES_Gjet_Stat9: 5.445418510087172e-06 - syst_JES_Gjet_Veto: 0.00045701661895384063 - syst_JES_Gjet_dPhi: 5.13922824945536e-05 - syst_JES_LArESZee: 0.0008150953487169462 - syst_JES_LArEsmear: 7.52002606378462e-05 - syst_JES_LAr_JVT: 9.447008574146633e-05 - syst_JES_MJB_Alpha: 8.151940551181662e-06 - syst_JES_MJB_Asym: 0.0001084865875350497 - syst_JES_MJB_Beta: 5.119502392811239e-06 - syst_JES_MJB_Stat1: 3.170554618485542e-09 - syst_JES_MJB_Stat10: 7.3667157370160554e-06 - syst_JES_MJB_Stat11: 9.747218834108529e-06 - syst_JES_MJB_Stat12: 1.6688136504714958e-05 - syst_JES_MJB_Stat13: 2.2409151590365933e-05 - syst_JES_MJB_Stat14: 1.819186906285333e-05 - syst_JES_MJB_Stat15: 4.874948615113804e-05 - syst_JES_MJB_Stat16: 1.7807146739441443e-05 - syst_JES_MJB_Stat2: 2.266746492370728e-07 - syst_JES_MJB_Stat3: 5.656560173815886e-07 - syst_JES_MJB_Stat4: 4.103937225397094e-07 - syst_JES_MJB_Stat5: 7.616625632785164e-07 - syst_JES_MJB_Stat6: 1.1250876265873695e-06 - syst_JES_MJB_Stat7: 2.0229055217681324e-06 - syst_JES_MJB_Stat8: 3.0417844680384572e-06 - syst_JES_MJB_Stat9: 4.71335411357984e-06 - syst_JES_MJB_Threshold: 8.321532716393057e-05 - syst_JES_Pileup_MuOffset: 0.00011349407429465206 - syst_JES_Pileup_NPVOffset: 0.0001200610794554172 - syst_JES_Pileup_Pt_term: 6.291700306753335e-05 - syst_JES_PunchThrough_MC15: 0.00014250780610198166 - syst_JES_SingleParticle_HighPt: 3.8452496342890404e-08 - syst_JES_Zjet_MC: 0.00020762548013189517 - syst_JES_Zjet_MuScale: 1.5848068494299233e-05 - syst_JES_Zjet_MuSmearID: 4.497729510541958e-06 - syst_JES_Zjet_MuSmearMS: 5.7613064490617055e-05 - syst_JES_Zjet_OOC: 0.000132325848098548 - syst_JES_Zjet_Stat1: 1.5040106382602485e-05 - syst_JES_Zjet_Stat10: 9.607070365100905e-06 - syst_JES_Zjet_Stat11: 1.4731415410611434e-05 - syst_JES_Zjet_Stat12: 3.563511856301309e-05 - syst_JES_Zjet_Stat13: 5.680909346222663e-05 - syst_JES_Zjet_Stat2: 1.1079582708748558e-08 - syst_JES_Zjet_Stat3: 7.733491578840698e-06 - syst_JES_Zjet_Stat4: 7.43117877594127e-06 - syst_JES_Zjet_Stat5: 7.025002419928409e-06 - syst_JES_Zjet_Stat6: 6.553644711151192e-06 - syst_JES_Zjet_Stat7: 6.737207433351003e-06 - syst_JES_Zjet_Stat8: 5.281138040233374e-06 - syst_JES_Zjet_Stat9: 6.2764068343280615e-06 - syst_JES_Zjet_Veto: 2.6710303255485512e-05 - syst_JES_Zjet_dPhi: 2.4840326084816195e-05 - syst_PRW: 1.1765e-05 - syst_Unfolding_bias: 1.931e-06 - syst_cleaning: 0.00013709182141907663 + syst_JES_EtaIntercalibration_Stat95: 6.91316999e-19 + syst_JES_EtaIntercalibration_Stat96: 2.29533867e-08 + syst_JES_EtaIntercalibration_Stat97: 2.00335943e-08 + syst_JES_EtaIntercalibration_Stat98: 4.13377759e-08 + syst_JES_EtaIntercalibration_Stat99: 7.92800669e-13 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.92956854e-04 + syst_JES_Flavour_Comp: 4.97273936e-04 + syst_JES_Gjet_Generator: 5.41281930e-04 + syst_JES_Gjet_OOC: 4.51353971e-04 + syst_JES_Gjet_Purity: 8.01816163e-05 + syst_JES_Gjet_Stat1: 1.61561941e-06 + syst_JES_Gjet_Stat10: 8.45329823e-06 + syst_JES_Gjet_Stat11: 8.71292952e-06 + syst_JES_Gjet_Stat12: 2.46655509e-05 + syst_JES_Gjet_Stat13: 8.69455823e-05 + syst_JES_Gjet_Stat14: 2.30190416e-04 + syst_JES_Gjet_Stat15: 3.74151747e-04 + syst_JES_Gjet_Stat2: 1.89297586e-06 + syst_JES_Gjet_Stat3: 1.76666147e-06 + syst_JES_Gjet_Stat4: 1.43059245e-06 + syst_JES_Gjet_Stat5: 1.80850014e-06 + syst_JES_Gjet_Stat6: 7.12551407e-06 + syst_JES_Gjet_Stat7: 5.10616128e-06 + syst_JES_Gjet_Stat8: 3.41154580e-06 + syst_JES_Gjet_Stat9: 5.44541851e-06 + syst_JES_Gjet_Veto: 4.57016619e-04 + syst_JES_Gjet_dPhi: 5.13922825e-05 + syst_JES_LArESZee: 8.15095349e-04 + syst_JES_LArEsmear: 7.52002606e-05 + syst_JES_LAr_JVT: 9.44700857e-05 + syst_JES_MJB_Alpha: 8.15194055e-06 + syst_JES_MJB_Asym: 1.08486588e-04 + syst_JES_MJB_Beta: 5.11950239e-06 + syst_JES_MJB_Stat1: 3.17055462e-09 + syst_JES_MJB_Stat10: 7.36671574e-06 + syst_JES_MJB_Stat11: 9.74721883e-06 + syst_JES_MJB_Stat12: 1.66881365e-05 + syst_JES_MJB_Stat13: 2.24091516e-05 + syst_JES_MJB_Stat14: 1.81918691e-05 + syst_JES_MJB_Stat15: 4.87494862e-05 + syst_JES_MJB_Stat16: 1.78071467e-05 + syst_JES_MJB_Stat2: 2.26674649e-07 + syst_JES_MJB_Stat3: 5.65656017e-07 + syst_JES_MJB_Stat4: 4.10393723e-07 + syst_JES_MJB_Stat5: 7.61662563e-07 + syst_JES_MJB_Stat6: 1.12508763e-06 + syst_JES_MJB_Stat7: 2.02290552e-06 + syst_JES_MJB_Stat8: 3.04178447e-06 + syst_JES_MJB_Stat9: 4.71335411e-06 + syst_JES_MJB_Threshold: 8.32153272e-05 + syst_JES_Pileup_MuOffset: 1.13494074e-04 + syst_JES_Pileup_NPVOffset: 1.20061079e-04 + syst_JES_Pileup_Pt_term: 6.29170031e-05 + syst_JES_PunchThrough_MC15: 1.42507806e-04 + syst_JES_SingleParticle_HighPt: 3.84524963e-08 + syst_JES_Zjet_MC: 2.07625480e-04 + syst_JES_Zjet_MuScale: 1.58480685e-05 + syst_JES_Zjet_MuSmearID: 4.49772951e-06 + syst_JES_Zjet_MuSmearMS: 5.76130645e-05 + syst_JES_Zjet_OOC: 1.32325848e-04 + syst_JES_Zjet_Stat1: 1.50401064e-05 + syst_JES_Zjet_Stat10: 9.60707037e-06 + syst_JES_Zjet_Stat11: 1.47314154e-05 + syst_JES_Zjet_Stat12: 3.56351186e-05 + syst_JES_Zjet_Stat13: 5.68090935e-05 + syst_JES_Zjet_Stat2: 1.10795827e-08 + syst_JES_Zjet_Stat3: 7.73349158e-06 + syst_JES_Zjet_Stat4: 7.43117878e-06 + syst_JES_Zjet_Stat5: 7.02500242e-06 + syst_JES_Zjet_Stat6: 6.55364471e-06 + syst_JES_Zjet_Stat7: 6.73720743e-06 + syst_JES_Zjet_Stat8: 5.28113804e-06 + syst_JES_Zjet_Stat9: 6.27640683e-06 + syst_JES_Zjet_Veto: 2.67103033e-05 + syst_JES_Zjet_dPhi: 2.48403261e-05 + syst_PRW: 1.17650000e-05 + syst_Unfolding_bias: 1.93100000e-06 + syst_cleaning: 1.37091821e-04 syst_lumi: 0.000448 - syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 2.844481675103568e-05 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 9.3230038614172e-05 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 3.5900516361189015e-06 + syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 2.84448168e-05 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 9.32300386e-05 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 3.59005164e-06 syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 4.2926544235472764e-05 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 3.41346023120235e-05 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.00010728004567485977 -- stat: 0.00017277 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 4.29265442e-05 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 3.41346023e-05 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.07280046e-04 +- stat: 1.72770000e-04 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 2.618544777161544e-05 - syst_JER_NP1: 2.4323289251250536e-06 - syst_JER_NP2: 1.5622257735359507e-05 - syst_JER_NP3: 2.417092585628445e-06 - syst_JER_NP4: 6.109186770757627e-06 - syst_JER_NP5: 4.545183824665401e-06 - syst_JER_NP6: 5.014700863461349e-06 - syst_JER_NP7: 1.9257492126442633e-06 - syst_JER_NP8: 4.992563945509361e-06 - syst_JES_EtaIntercalibration_Modelling: 0.00019562254471302634 + syst_JER_NP0: 2.61854478e-05 + syst_JER_NP1: 2.43232893e-06 + syst_JER_NP2: 1.56222577e-05 + syst_JER_NP3: 2.41709259e-06 + syst_JER_NP4: 6.10918677e-06 + syst_JER_NP5: 4.54518382e-06 + syst_JER_NP6: 5.01470086e-06 + syst_JER_NP7: 1.92574921e-06 + syst_JER_NP8: 4.99256395e-06 + syst_JES_EtaIntercalibration_Modelling: 1.95622545e-04 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 - syst_JES_EtaIntercalibration_Stat10: 1.228683078543853e-21 - syst_JES_EtaIntercalibration_Stat100: 5.326310731406871e-22 + syst_JES_EtaIntercalibration_Stat10: 1.22868308e-21 + syst_JES_EtaIntercalibration_Stat100: 5.32631073e-22 syst_JES_EtaIntercalibration_Stat101: 0.0 syst_JES_EtaIntercalibration_Stat102: 0.0 - syst_JES_EtaIntercalibration_Stat103: 1.35013360449994e-23 - syst_JES_EtaIntercalibration_Stat104: 1.35013360449994e-23 - syst_JES_EtaIntercalibration_Stat105: 1.35013360449994e-23 + syst_JES_EtaIntercalibration_Stat103: 1.35013360e-23 + syst_JES_EtaIntercalibration_Stat104: 1.35013360e-23 + syst_JES_EtaIntercalibration_Stat105: 1.35013360e-23 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 1.9113180661522561e-22 - syst_JES_EtaIntercalibration_Stat11: 9.524547390821256e-22 - syst_JES_EtaIntercalibration_Stat110: 1.8587496119703698e-22 - syst_JES_EtaIntercalibration_Stat111: 1.9598154887641844e-22 - syst_JES_EtaIntercalibration_Stat112: 1.9598154887641844e-22 + syst_JES_EtaIntercalibration_Stat109: 1.91131807e-22 + syst_JES_EtaIntercalibration_Stat11: 9.52454739e-22 + syst_JES_EtaIntercalibration_Stat110: 1.85874961e-22 + syst_JES_EtaIntercalibration_Stat111: 1.95981549e-22 + syst_JES_EtaIntercalibration_Stat112: 1.95981549e-22 syst_JES_EtaIntercalibration_Stat113: 0.0 - syst_JES_EtaIntercalibration_Stat114: 2.0109109875874664e-22 - syst_JES_EtaIntercalibration_Stat115: 9.049990994470656e-19 - syst_JES_EtaIntercalibration_Stat116: 2.7002838184183528e-08 - syst_JES_EtaIntercalibration_Stat117: 2.612890355047452e-08 - syst_JES_EtaIntercalibration_Stat118: 2.191642021407693e-08 - syst_JES_EtaIntercalibration_Stat119: 1.583351195250125e-08 - syst_JES_EtaIntercalibration_Stat12: 9.798192758598584e-17 - syst_JES_EtaIntercalibration_Stat120: 1.0190454677110963e-16 - syst_JES_EtaIntercalibration_Stat121: 5.739150350879475e-22 + syst_JES_EtaIntercalibration_Stat114: 2.01091099e-22 + syst_JES_EtaIntercalibration_Stat115: 9.04999099e-19 + syst_JES_EtaIntercalibration_Stat116: 2.70028382e-08 + syst_JES_EtaIntercalibration_Stat117: 2.61289036e-08 + syst_JES_EtaIntercalibration_Stat118: 2.19164202e-08 + syst_JES_EtaIntercalibration_Stat119: 1.58335120e-08 + syst_JES_EtaIntercalibration_Stat12: 9.79819276e-17 + syst_JES_EtaIntercalibration_Stat120: 1.01904547e-16 + syst_JES_EtaIntercalibration_Stat121: 5.73915035e-22 syst_JES_EtaIntercalibration_Stat122: 0.0 - syst_JES_EtaIntercalibration_Stat123: 1.35013360449994e-23 - syst_JES_EtaIntercalibration_Stat124: 1.35013360449994e-23 - syst_JES_EtaIntercalibration_Stat125: 1.35013360449994e-23 + syst_JES_EtaIntercalibration_Stat123: 1.35013360e-23 + syst_JES_EtaIntercalibration_Stat124: 1.35013360e-23 + syst_JES_EtaIntercalibration_Stat125: 1.35013360e-23 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 1.9113180661522561e-22 - syst_JES_EtaIntercalibration_Stat129: 1.8587496119703698e-22 + syst_JES_EtaIntercalibration_Stat128: 1.91131807e-22 + syst_JES_EtaIntercalibration_Stat129: 1.85874961e-22 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 1.8134571955246145e-23 + syst_JES_EtaIntercalibration_Stat130: 1.81345720e-23 syst_JES_EtaIntercalibration_Stat131: 0.0 syst_JES_EtaIntercalibration_Stat132: 0.0 - syst_JES_EtaIntercalibration_Stat133: 2.0109109875874664e-22 - syst_JES_EtaIntercalibration_Stat134: 6.561008478957737e-09 - syst_JES_EtaIntercalibration_Stat135: 4.231245797634545e-08 - syst_JES_EtaIntercalibration_Stat136: 8.934578599463995e-08 - syst_JES_EtaIntercalibration_Stat137: 3.6502115007215674e-08 - syst_JES_EtaIntercalibration_Stat138: 4.149555277376119e-08 - syst_JES_EtaIntercalibration_Stat139: 1.4503367496895334e-18 + syst_JES_EtaIntercalibration_Stat133: 2.01091099e-22 + syst_JES_EtaIntercalibration_Stat134: 6.56100848e-09 + syst_JES_EtaIntercalibration_Stat135: 4.23124580e-08 + syst_JES_EtaIntercalibration_Stat136: 8.93457860e-08 + syst_JES_EtaIntercalibration_Stat137: 3.65021150e-08 + syst_JES_EtaIntercalibration_Stat138: 4.14955528e-08 + syst_JES_EtaIntercalibration_Stat139: 1.45033675e-18 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 5.739150350879475e-22 + syst_JES_EtaIntercalibration_Stat140: 5.73915035e-22 syst_JES_EtaIntercalibration_Stat141: 0.0 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 1.35013360449994e-23 - syst_JES_EtaIntercalibration_Stat144: 1.35013360449994e-23 + syst_JES_EtaIntercalibration_Stat143: 1.35013360e-23 + syst_JES_EtaIntercalibration_Stat144: 1.35013360e-23 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 1.8134571955246145e-23 - syst_JES_EtaIntercalibration_Stat148: 1.8134571955246145e-23 + syst_JES_EtaIntercalibration_Stat147: 1.81345720e-23 + syst_JES_EtaIntercalibration_Stat148: 1.81345720e-23 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 syst_JES_EtaIntercalibration_Stat150: 0.0 syst_JES_EtaIntercalibration_Stat151: 0.0 - syst_JES_EtaIntercalibration_Stat152: 8.028921518484974e-09 - syst_JES_EtaIntercalibration_Stat153: 8.27802561001112e-08 - syst_JES_EtaIntercalibration_Stat154: 9.771952603625336e-08 - syst_JES_EtaIntercalibration_Stat155: 3.4347132613218236e-08 - syst_JES_EtaIntercalibration_Stat156: 5.588116945805626e-08 - syst_JES_EtaIntercalibration_Stat157: 1.9071672707644184e-16 + syst_JES_EtaIntercalibration_Stat152: 8.02892152e-09 + syst_JES_EtaIntercalibration_Stat153: 8.27802561e-08 + syst_JES_EtaIntercalibration_Stat154: 9.77195260e-08 + syst_JES_EtaIntercalibration_Stat155: 3.43471326e-08 + syst_JES_EtaIntercalibration_Stat156: 5.58811695e-08 + syst_JES_EtaIntercalibration_Stat157: 1.90716727e-16 syst_JES_EtaIntercalibration_Stat158: 0.0 syst_JES_EtaIntercalibration_Stat159: 0.0 syst_JES_EtaIntercalibration_Stat16: 0.0 @@ -11032,18 +11032,18 @@ bins: syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 1.8134571955246145e-23 + syst_JES_EtaIntercalibration_Stat165: 1.81345720e-23 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 1.8826746930895948e-08 - syst_JES_EtaIntercalibration_Stat171: 2.1504135805700262e-07 - syst_JES_EtaIntercalibration_Stat172: 2.4506180853001143e-07 - syst_JES_EtaIntercalibration_Stat173: 2.207001132759111e-07 - syst_JES_EtaIntercalibration_Stat174: 2.0000425695469584e-07 - syst_JES_EtaIntercalibration_Stat175: 4.235740077011336e-16 + syst_JES_EtaIntercalibration_Stat170: 1.88267469e-08 + syst_JES_EtaIntercalibration_Stat171: 2.15041358e-07 + syst_JES_EtaIntercalibration_Stat172: 2.45061809e-07 + syst_JES_EtaIntercalibration_Stat173: 2.20700113e-07 + syst_JES_EtaIntercalibration_Stat174: 2.00004257e-07 + syst_JES_EtaIntercalibration_Stat175: 4.23574008e-16 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 syst_JES_EtaIntercalibration_Stat178: 0.0 @@ -11056,14 +11056,14 @@ bins: syst_JES_EtaIntercalibration_Stat184: 0.0 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 - syst_JES_EtaIntercalibration_Stat187: 1.3347809820341313e-08 - syst_JES_EtaIntercalibration_Stat188: 9.039590754010937e-07 - syst_JES_EtaIntercalibration_Stat189: 1.3854303401831504e-06 + syst_JES_EtaIntercalibration_Stat187: 1.33478098e-08 + syst_JES_EtaIntercalibration_Stat188: 9.03959075e-07 + syst_JES_EtaIntercalibration_Stat189: 1.38543034e-06 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 1.2011829752373283e-06 - syst_JES_EtaIntercalibration_Stat191: 7.975713886543323e-07 - syst_JES_EtaIntercalibration_Stat192: 8.641917191804143e-09 - syst_JES_EtaIntercalibration_Stat193: 1.0381912540567851e-16 + syst_JES_EtaIntercalibration_Stat190: 1.20118298e-06 + syst_JES_EtaIntercalibration_Stat191: 7.97571389e-07 + syst_JES_EtaIntercalibration_Stat192: 8.64191719e-09 + syst_JES_EtaIntercalibration_Stat193: 1.03819125e-16 syst_JES_EtaIntercalibration_Stat194: 0.0 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 @@ -11074,13 +11074,13 @@ bins: syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 syst_JES_EtaIntercalibration_Stat201: 0.0 - syst_JES_EtaIntercalibration_Stat202: 4.208035252644635e-08 - syst_JES_EtaIntercalibration_Stat203: 1.950870574897269e-06 - syst_JES_EtaIntercalibration_Stat204: 2.7655567251459513e-06 - syst_JES_EtaIntercalibration_Stat205: 2.37122009733386e-06 - syst_JES_EtaIntercalibration_Stat206: 1.8600677407019346e-06 - syst_JES_EtaIntercalibration_Stat207: 5.510797509208627e-09 - syst_JES_EtaIntercalibration_Stat208: 1.0381912540567851e-16 + syst_JES_EtaIntercalibration_Stat202: 4.20803525e-08 + syst_JES_EtaIntercalibration_Stat203: 1.95087057e-06 + syst_JES_EtaIntercalibration_Stat204: 2.76555673e-06 + syst_JES_EtaIntercalibration_Stat205: 2.37122010e-06 + syst_JES_EtaIntercalibration_Stat206: 1.86006774e-06 + syst_JES_EtaIntercalibration_Stat207: 5.51079751e-09 + syst_JES_EtaIntercalibration_Stat208: 1.03819125e-16 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 @@ -11088,38 +11088,38 @@ bins: syst_JES_EtaIntercalibration_Stat212: 0.0 syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 - syst_JES_EtaIntercalibration_Stat215: 4.700957641800232e-08 - syst_JES_EtaIntercalibration_Stat216: 2.325607662526076e-06 - syst_JES_EtaIntercalibration_Stat217: 2.909908761456276e-06 - syst_JES_EtaIntercalibration_Stat218: 2.943365548143825e-06 - syst_JES_EtaIntercalibration_Stat219: 2.1945714843677343e-06 + syst_JES_EtaIntercalibration_Stat215: 4.70095764e-08 + syst_JES_EtaIntercalibration_Stat216: 2.32560766e-06 + syst_JES_EtaIntercalibration_Stat217: 2.90990876e-06 + syst_JES_EtaIntercalibration_Stat218: 2.94336555e-06 + syst_JES_EtaIntercalibration_Stat219: 2.19457148e-06 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 1.8701523146524723e-08 + syst_JES_EtaIntercalibration_Stat220: 1.87015231e-08 syst_JES_EtaIntercalibration_Stat221: 0.0 syst_JES_EtaIntercalibration_Stat222: 0.0 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 - syst_JES_EtaIntercalibration_Stat227: 2.1845985146017103e-07 - syst_JES_EtaIntercalibration_Stat228: 5.5426615447815325e-06 - syst_JES_EtaIntercalibration_Stat229: 8.626508375350944e-06 + syst_JES_EtaIntercalibration_Stat227: 2.18459851e-07 + syst_JES_EtaIntercalibration_Stat228: 5.54266154e-06 + syst_JES_EtaIntercalibration_Stat229: 8.62650838e-06 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 8.703081178525224e-06 - syst_JES_EtaIntercalibration_Stat231: 7.207663421664472e-06 - syst_JES_EtaIntercalibration_Stat232: 1.532494541588974e-07 + syst_JES_EtaIntercalibration_Stat230: 8.70308118e-06 + syst_JES_EtaIntercalibration_Stat231: 7.20766342e-06 + syst_JES_EtaIntercalibration_Stat232: 1.53249454e-07 syst_JES_EtaIntercalibration_Stat233: 0.0 syst_JES_EtaIntercalibration_Stat234: 0.0 syst_JES_EtaIntercalibration_Stat235: 0.0 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 - syst_JES_EtaIntercalibration_Stat238: 7.471212217572191e-08 - syst_JES_EtaIntercalibration_Stat239: 1.0272647796454428e-06 + syst_JES_EtaIntercalibration_Stat238: 7.47121222e-08 + syst_JES_EtaIntercalibration_Stat239: 1.02726478e-06 syst_JES_EtaIntercalibration_Stat24: 0.0 - syst_JES_EtaIntercalibration_Stat240: 1.17966960099004e-06 - syst_JES_EtaIntercalibration_Stat241: 1.1162486013429086e-06 - syst_JES_EtaIntercalibration_Stat242: 7.062635627016305e-07 - syst_JES_EtaIntercalibration_Stat243: 2.8951229248509748e-08 + syst_JES_EtaIntercalibration_Stat240: 1.17966960e-06 + syst_JES_EtaIntercalibration_Stat241: 1.11624860e-06 + syst_JES_EtaIntercalibration_Stat242: 7.06263563e-07 + syst_JES_EtaIntercalibration_Stat243: 2.89512292e-08 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 syst_JES_EtaIntercalibration_Stat25: 0.0 @@ -11128,12 +11128,12 @@ bins: syst_JES_EtaIntercalibration_Stat28: 0.0 syst_JES_EtaIntercalibration_Stat29: 0.0 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 1.899193710499274e-22 - syst_JES_EtaIntercalibration_Stat31: 8.576417317271822e-09 - syst_JES_EtaIntercalibration_Stat32: 1.0538028557562368e-20 - syst_JES_EtaIntercalibration_Stat33: 9.80517190749969e-17 - syst_JES_EtaIntercalibration_Stat34: 1.0253782552780394e-16 - syst_JES_EtaIntercalibration_Stat35: 5.392816286382747e-22 + syst_JES_EtaIntercalibration_Stat30: 1.89919371e-22 + syst_JES_EtaIntercalibration_Stat31: 8.57641732e-09 + syst_JES_EtaIntercalibration_Stat32: 1.05380286e-20 + syst_JES_EtaIntercalibration_Stat33: 9.80517191e-17 + syst_JES_EtaIntercalibration_Stat34: 1.02537826e-16 + syst_JES_EtaIntercalibration_Stat35: 5.39281629e-22 syst_JES_EtaIntercalibration_Stat36: 0.0 syst_JES_EtaIntercalibration_Stat37: 0.0 syst_JES_EtaIntercalibration_Stat38: 0.0 @@ -11152,220 +11152,220 @@ bins: syst_JES_EtaIntercalibration_Stat5: 0.0 syst_JES_EtaIntercalibration_Stat50: 0.0 syst_JES_EtaIntercalibration_Stat51: 0.0 - syst_JES_EtaIntercalibration_Stat52: 6.940114606402405e-23 - syst_JES_EtaIntercalibration_Stat53: 1.2389375235257022e-19 - syst_JES_EtaIntercalibration_Stat54: 6.651941127668006e-09 - syst_JES_EtaIntercalibration_Stat55: 9.829272192061171e-17 - syst_JES_EtaIntercalibration_Stat56: 1.0258234654816924e-16 - syst_JES_EtaIntercalibration_Stat57: 1.5079029635556792e-21 + syst_JES_EtaIntercalibration_Stat52: 6.94011461e-23 + syst_JES_EtaIntercalibration_Stat53: 1.23893752e-19 + syst_JES_EtaIntercalibration_Stat54: 6.65194113e-09 + syst_JES_EtaIntercalibration_Stat55: 9.82927219e-17 + syst_JES_EtaIntercalibration_Stat56: 1.02582347e-16 + syst_JES_EtaIntercalibration_Stat57: 1.50790296e-21 syst_JES_EtaIntercalibration_Stat58: 0.0 syst_JES_EtaIntercalibration_Stat59: 0.0 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 1.35013360449994e-23 - syst_JES_EtaIntercalibration_Stat62: 1.35013360449994e-23 + syst_JES_EtaIntercalibration_Stat61: 1.35013360e-23 + syst_JES_EtaIntercalibration_Stat62: 1.35013360e-23 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 1.9113180661522561e-22 - syst_JES_EtaIntercalibration_Stat69: 1.9113180661522561e-22 + syst_JES_EtaIntercalibration_Stat68: 1.91131807e-22 + syst_JES_EtaIntercalibration_Stat69: 1.91131807e-22 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 1.9598154887641844e-22 - syst_JES_EtaIntercalibration_Stat71: 1.9598154887641844e-22 + syst_JES_EtaIntercalibration_Stat70: 1.95981549e-22 + syst_JES_EtaIntercalibration_Stat71: 1.95981549e-22 syst_JES_EtaIntercalibration_Stat72: 0.0 syst_JES_EtaIntercalibration_Stat73: 0.0 - syst_JES_EtaIntercalibration_Stat74: 9.664715650628322e-20 - syst_JES_EtaIntercalibration_Stat75: 7.954989063474568e-09 - syst_JES_EtaIntercalibration_Stat76: 9.082008407874292e-09 - syst_JES_EtaIntercalibration_Stat77: 5.239209279080194e-08 - syst_JES_EtaIntercalibration_Stat78: 2.1806519667858837e-08 - syst_JES_EtaIntercalibration_Stat79: 1.6995238060998148e-22 + syst_JES_EtaIntercalibration_Stat74: 9.66471565e-20 + syst_JES_EtaIntercalibration_Stat75: 7.95498906e-09 + syst_JES_EtaIntercalibration_Stat76: 9.08200841e-09 + syst_JES_EtaIntercalibration_Stat77: 5.23920928e-08 + syst_JES_EtaIntercalibration_Stat78: 2.18065197e-08 + syst_JES_EtaIntercalibration_Stat79: 1.69952381e-22 syst_JES_EtaIntercalibration_Stat8: 0.0 syst_JES_EtaIntercalibration_Stat80: 0.0 syst_JES_EtaIntercalibration_Stat81: 0.0 - syst_JES_EtaIntercalibration_Stat82: 1.35013360449994e-23 - syst_JES_EtaIntercalibration_Stat83: 1.35013360449994e-23 - syst_JES_EtaIntercalibration_Stat84: 1.35013360449994e-23 + syst_JES_EtaIntercalibration_Stat82: 1.35013360e-23 + syst_JES_EtaIntercalibration_Stat83: 1.35013360e-23 + syst_JES_EtaIntercalibration_Stat84: 1.35013360e-23 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 1.9113180661522561e-22 - syst_JES_EtaIntercalibration_Stat9: 9.545172180049975e-20 - syst_JES_EtaIntercalibration_Stat90: 1.9113180661522561e-22 - syst_JES_EtaIntercalibration_Stat91: 1.9598154887641844e-22 - syst_JES_EtaIntercalibration_Stat92: 1.9598154887641844e-22 + syst_JES_EtaIntercalibration_Stat89: 1.91131807e-22 + syst_JES_EtaIntercalibration_Stat9: 9.54517218e-20 + syst_JES_EtaIntercalibration_Stat90: 1.91131807e-22 + syst_JES_EtaIntercalibration_Stat91: 1.95981549e-22 + syst_JES_EtaIntercalibration_Stat92: 1.95981549e-22 syst_JES_EtaIntercalibration_Stat93: 0.0 syst_JES_EtaIntercalibration_Stat94: 0.0 - syst_JES_EtaIntercalibration_Stat95: 9.667730292059249e-20 - syst_JES_EtaIntercalibration_Stat96: 6.553597978782343e-09 - syst_JES_EtaIntercalibration_Stat97: 9.412331645240726e-09 - syst_JES_EtaIntercalibration_Stat98: 2.056764961657019e-08 - syst_JES_EtaIntercalibration_Stat99: 6.270244614248056e-14 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.00011192035739757089 - syst_JES_Flavour_Comp: 0.00027276163586545675 - syst_JES_Gjet_Generator: 0.0002985619366228723 - syst_JES_Gjet_OOC: 0.000247838778241017 - syst_JES_Gjet_Purity: 4.2023084132414645e-05 - syst_JES_Gjet_Stat1: 6.791361774342463e-07 - syst_JES_Gjet_Stat10: 5.559799996402749e-06 - syst_JES_Gjet_Stat11: 5.938786660589855e-06 - syst_JES_Gjet_Stat12: 1.2348706521332506e-05 - syst_JES_Gjet_Stat13: 5.019841730572788e-05 - syst_JES_Gjet_Stat14: 0.00013036813797857205 - syst_JES_Gjet_Stat15: 0.00022217080703818852 - syst_JES_Gjet_Stat2: 1.3261254955697067e-06 - syst_JES_Gjet_Stat3: 1.398437656815634e-06 - syst_JES_Gjet_Stat4: 1.186233817592468e-06 - syst_JES_Gjet_Stat5: 1.383874700794837e-06 - syst_JES_Gjet_Stat6: 4.892041291730887e-06 - syst_JES_Gjet_Stat7: 2.9526296753910743e-06 - syst_JES_Gjet_Stat8: 1.9537366122382003e-06 - syst_JES_Gjet_Stat9: 3.108185322660153e-06 - syst_JES_Gjet_Veto: 0.00025544263543895724 - syst_JES_Gjet_dPhi: 2.7730292100877696e-05 - syst_JES_LArESZee: 0.00044494315367246635 - syst_JES_LArEsmear: 4.1123890866502407e-05 - syst_JES_LAr_JVT: 5.223306328370948e-05 - syst_JES_MJB_Alpha: 6.173931061325515e-06 - syst_JES_MJB_Asym: 7.516561497786073e-05 - syst_JES_MJB_Beta: 3.910187324157245e-06 - syst_JES_MJB_Stat1: 3.003643621786713e-10 - syst_JES_MJB_Stat10: 3.333826742648754e-06 - syst_JES_MJB_Stat11: 4.537643303522215e-06 - syst_JES_MJB_Stat12: 7.983684738264658e-06 - syst_JES_MJB_Stat13: 1.193839732753103e-05 - syst_JES_MJB_Stat14: 1.2795517994594826e-05 - syst_JES_MJB_Stat15: 3.2876539887889666e-05 - syst_JES_MJB_Stat16: 2.628578846068727e-06 - syst_JES_MJB_Stat2: 1.1875225862141528e-07 - syst_JES_MJB_Stat3: 2.401606962015225e-07 - syst_JES_MJB_Stat4: 1.4635809466852183e-07 - syst_JES_MJB_Stat5: 2.766345739418701e-07 - syst_JES_MJB_Stat6: 4.773135133222189e-07 - syst_JES_MJB_Stat7: 8.838651070723406e-07 - syst_JES_MJB_Stat8: 1.2467112697012088e-06 - syst_JES_MJB_Stat9: 2.0717898059407474e-06 - syst_JES_MJB_Threshold: 4.986289602500039e-05 - syst_JES_Pileup_MuOffset: 6.680134729180243e-05 - syst_JES_Pileup_NPVOffset: 6.858788723236777e-05 - syst_JES_Pileup_Pt_term: 3.283352098085126e-05 - syst_JES_PunchThrough_MC15: 8.440712469928117e-05 - syst_JES_SingleParticle_HighPt: 9.737732436250237e-08 - syst_JES_Zjet_MC: 0.00011474172780640877 - syst_JES_Zjet_MuScale: 9.117667300357038e-06 - syst_JES_Zjet_MuSmearID: 2.5533109387616697e-06 - syst_JES_Zjet_MuSmearMS: 3.0680013037806875e-05 - syst_JES_Zjet_OOC: 7.464362263448902e-05 - syst_JES_Zjet_Stat1: 9.87602278247676e-06 - syst_JES_Zjet_Stat10: 5.284775113474556e-06 - syst_JES_Zjet_Stat11: 7.99065522970426e-06 - syst_JES_Zjet_Stat12: 1.83251650742906e-05 - syst_JES_Zjet_Stat13: 2.974005379954784e-05 - syst_JES_Zjet_Stat2: 6.102380027497468e-08 - syst_JES_Zjet_Stat3: 4.703489874550599e-06 - syst_JES_Zjet_Stat4: 4.71770842146905e-06 - syst_JES_Zjet_Stat5: 4.753479225788202e-06 - syst_JES_Zjet_Stat6: 4.073699393671556e-06 - syst_JES_Zjet_Stat7: 4.58482963151304e-06 - syst_JES_Zjet_Stat8: 3.0317144901853803e-06 - syst_JES_Zjet_Stat9: 3.7411539663585088e-06 - syst_JES_Zjet_Veto: 1.4676064697322645e-05 - syst_JES_Zjet_dPhi: 1.381491262187351e-05 - syst_PRW: 6.151e-06 - syst_Unfolding_bias: 1.0099e-06 - syst_cleaning: 7.163762140104876e-05 - syst_lumi: 0.0002342 - syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.5900157231926985e-05 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 4.940593562518577e-05 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 2.9954570602831216e-06 + syst_JES_EtaIntercalibration_Stat95: 9.66773029e-20 + syst_JES_EtaIntercalibration_Stat96: 6.55359798e-09 + syst_JES_EtaIntercalibration_Stat97: 9.41233165e-09 + syst_JES_EtaIntercalibration_Stat98: 2.05676496e-08 + syst_JES_EtaIntercalibration_Stat99: 6.27024461e-14 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.11920357e-04 + syst_JES_Flavour_Comp: 2.72761636e-04 + syst_JES_Gjet_Generator: 2.98561937e-04 + syst_JES_Gjet_OOC: 2.47838778e-04 + syst_JES_Gjet_Purity: 4.20230841e-05 + syst_JES_Gjet_Stat1: 6.79136177e-07 + syst_JES_Gjet_Stat10: 5.55980000e-06 + syst_JES_Gjet_Stat11: 5.93878666e-06 + syst_JES_Gjet_Stat12: 1.23487065e-05 + syst_JES_Gjet_Stat13: 5.01984173e-05 + syst_JES_Gjet_Stat14: 1.30368138e-04 + syst_JES_Gjet_Stat15: 2.22170807e-04 + syst_JES_Gjet_Stat2: 1.32612550e-06 + syst_JES_Gjet_Stat3: 1.39843766e-06 + syst_JES_Gjet_Stat4: 1.18623382e-06 + syst_JES_Gjet_Stat5: 1.38387470e-06 + syst_JES_Gjet_Stat6: 4.89204129e-06 + syst_JES_Gjet_Stat7: 2.95262968e-06 + syst_JES_Gjet_Stat8: 1.95373661e-06 + syst_JES_Gjet_Stat9: 3.10818532e-06 + syst_JES_Gjet_Veto: 2.55442635e-04 + syst_JES_Gjet_dPhi: 2.77302921e-05 + syst_JES_LArESZee: 4.44943154e-04 + syst_JES_LArEsmear: 4.11238909e-05 + syst_JES_LAr_JVT: 5.22330633e-05 + syst_JES_MJB_Alpha: 6.17393106e-06 + syst_JES_MJB_Asym: 7.51656150e-05 + syst_JES_MJB_Beta: 3.91018732e-06 + syst_JES_MJB_Stat1: 3.00364362e-10 + syst_JES_MJB_Stat10: 3.33382674e-06 + syst_JES_MJB_Stat11: 4.53764330e-06 + syst_JES_MJB_Stat12: 7.98368474e-06 + syst_JES_MJB_Stat13: 1.19383973e-05 + syst_JES_MJB_Stat14: 1.27955180e-05 + syst_JES_MJB_Stat15: 3.28765399e-05 + syst_JES_MJB_Stat16: 2.62857885e-06 + syst_JES_MJB_Stat2: 1.18752259e-07 + syst_JES_MJB_Stat3: 2.40160696e-07 + syst_JES_MJB_Stat4: 1.46358095e-07 + syst_JES_MJB_Stat5: 2.76634574e-07 + syst_JES_MJB_Stat6: 4.77313513e-07 + syst_JES_MJB_Stat7: 8.83865107e-07 + syst_JES_MJB_Stat8: 1.24671127e-06 + syst_JES_MJB_Stat9: 2.07178981e-06 + syst_JES_MJB_Threshold: 4.98628960e-05 + syst_JES_Pileup_MuOffset: 6.68013473e-05 + syst_JES_Pileup_NPVOffset: 6.85878872e-05 + syst_JES_Pileup_Pt_term: 3.28335210e-05 + syst_JES_PunchThrough_MC15: 8.44071247e-05 + syst_JES_SingleParticle_HighPt: 9.73773244e-08 + syst_JES_Zjet_MC: 1.14741728e-04 + syst_JES_Zjet_MuScale: 9.11766730e-06 + syst_JES_Zjet_MuSmearID: 2.55331094e-06 + syst_JES_Zjet_MuSmearMS: 3.06800130e-05 + syst_JES_Zjet_OOC: 7.46436226e-05 + syst_JES_Zjet_Stat1: 9.87602278e-06 + syst_JES_Zjet_Stat10: 5.28477511e-06 + syst_JES_Zjet_Stat11: 7.99065523e-06 + syst_JES_Zjet_Stat12: 1.83251651e-05 + syst_JES_Zjet_Stat13: 2.97400538e-05 + syst_JES_Zjet_Stat2: 6.10238003e-08 + syst_JES_Zjet_Stat3: 4.70348987e-06 + syst_JES_Zjet_Stat4: 4.71770842e-06 + syst_JES_Zjet_Stat5: 4.75347923e-06 + syst_JES_Zjet_Stat6: 4.07369939e-06 + syst_JES_Zjet_Stat7: 4.58482963e-06 + syst_JES_Zjet_Stat8: 3.03171449e-06 + syst_JES_Zjet_Stat9: 3.74115397e-06 + syst_JES_Zjet_Veto: 1.46760647e-05 + syst_JES_Zjet_dPhi: 1.38149126e-05 + syst_PRW: 6.15100000e-06 + syst_Unfolding_bias: 1.00990000e-06 + syst_cleaning: 7.16376214e-05 + syst_lumi: 2.34200000e-04 + syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.59001572e-05 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 4.94059356e-05 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 2.99545706e-06 syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 3.582052868119062e-05 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 2.0950233888909214e-05 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 6.261620776604089e-05 -- stat: 9.5536e-05 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 3.58205287e-05 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 2.09502339e-05 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 6.26162078e-05 +- stat: 9.55360000e-05 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 9.902888101458078e-06 - syst_JER_NP1: 8.94406993487864e-07 - syst_JER_NP2: 6.619996582325401e-06 - syst_JER_NP3: 1.036365595482598e-06 - syst_JER_NP4: 2.112008285968594e-06 - syst_JER_NP5: 2.1338462057983468e-06 - syst_JER_NP6: 2.3859442968141567e-06 - syst_JER_NP7: 1.3454468848676263e-06 - syst_JER_NP8: 1.6807290084960158e-06 - syst_JES_EtaIntercalibration_Modelling: 7.339474299975442e-05 + syst_JER_NP0: 9.90288810e-06 + syst_JER_NP1: 8.94406993e-07 + syst_JER_NP2: 6.61999658e-06 + syst_JER_NP3: 1.03636560e-06 + syst_JER_NP4: 2.11200829e-06 + syst_JER_NP5: 2.13384621e-06 + syst_JER_NP6: 2.38594430e-06 + syst_JER_NP7: 1.34544688e-06 + syst_JER_NP8: 1.68072901e-06 + syst_JES_EtaIntercalibration_Modelling: 7.33947430e-05 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 - syst_JES_EtaIntercalibration_Stat10: 8.892840041291645e-23 - syst_JES_EtaIntercalibration_Stat100: 8.729804636989306e-22 + syst_JES_EtaIntercalibration_Stat10: 8.89284004e-23 + syst_JES_EtaIntercalibration_Stat100: 8.72980464e-22 syst_JES_EtaIntercalibration_Stat101: 0.0 syst_JES_EtaIntercalibration_Stat102: 0.0 - syst_JES_EtaIntercalibration_Stat103: 2.230015414744929e-24 - syst_JES_EtaIntercalibration_Stat104: 2.230015414744929e-24 - syst_JES_EtaIntercalibration_Stat105: 2.230015414744929e-24 + syst_JES_EtaIntercalibration_Stat103: 2.23001541e-24 + syst_JES_EtaIntercalibration_Stat104: 2.23001541e-24 + syst_JES_EtaIntercalibration_Stat105: 2.23001541e-24 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 2.7123915646528615e-23 - syst_JES_EtaIntercalibration_Stat11: 9.942837660849141e-22 - syst_JES_EtaIntercalibration_Stat110: 2.6315946320624686e-23 - syst_JES_EtaIntercalibration_Stat111: 2.922835737772481e-23 - syst_JES_EtaIntercalibration_Stat112: 2.922835737772481e-23 + syst_JES_EtaIntercalibration_Stat109: 2.71239156e-23 + syst_JES_EtaIntercalibration_Stat11: 9.94283766e-22 + syst_JES_EtaIntercalibration_Stat110: 2.63159463e-23 + syst_JES_EtaIntercalibration_Stat111: 2.92283574e-23 + syst_JES_EtaIntercalibration_Stat112: 2.92283574e-23 syst_JES_EtaIntercalibration_Stat113: 0.0 - syst_JES_EtaIntercalibration_Stat114: 2.783405647763186e-23 - syst_JES_EtaIntercalibration_Stat115: 4.7826394250455467e-20 - syst_JES_EtaIntercalibration_Stat116: 1.1449427976977715e-08 - syst_JES_EtaIntercalibration_Stat117: 1.0941201533652508e-08 - syst_JES_EtaIntercalibration_Stat118: 9.753468652228293e-09 - syst_JES_EtaIntercalibration_Stat119: 1.4188601058596297e-08 - syst_JES_EtaIntercalibration_Stat12: 3.921339888683359e-18 - syst_JES_EtaIntercalibration_Stat120: 4.133208017192412e-18 - syst_JES_EtaIntercalibration_Stat121: 6.993155135559342e-23 + syst_JES_EtaIntercalibration_Stat114: 2.78340565e-23 + syst_JES_EtaIntercalibration_Stat115: 4.78263943e-20 + syst_JES_EtaIntercalibration_Stat116: 1.14494280e-08 + syst_JES_EtaIntercalibration_Stat117: 1.09412015e-08 + syst_JES_EtaIntercalibration_Stat118: 9.75346865e-09 + syst_JES_EtaIntercalibration_Stat119: 1.41886011e-08 + syst_JES_EtaIntercalibration_Stat12: 3.92133989e-18 + syst_JES_EtaIntercalibration_Stat120: 4.13320802e-18 + syst_JES_EtaIntercalibration_Stat121: 6.99315514e-23 syst_JES_EtaIntercalibration_Stat122: 0.0 - syst_JES_EtaIntercalibration_Stat123: 2.230015414744929e-24 - syst_JES_EtaIntercalibration_Stat124: 2.230015414744929e-24 - syst_JES_EtaIntercalibration_Stat125: 2.230015414744929e-24 + syst_JES_EtaIntercalibration_Stat123: 2.23001541e-24 + syst_JES_EtaIntercalibration_Stat124: 2.23001541e-24 + syst_JES_EtaIntercalibration_Stat125: 2.23001541e-24 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 2.7123915646528615e-23 - syst_JES_EtaIntercalibration_Stat129: 2.6315946320624686e-23 + syst_JES_EtaIntercalibration_Stat128: 2.71239156e-23 + syst_JES_EtaIntercalibration_Stat129: 2.63159463e-23 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 2.83103704497133e-24 + syst_JES_EtaIntercalibration_Stat130: 2.83103704e-24 syst_JES_EtaIntercalibration_Stat131: 0.0 syst_JES_EtaIntercalibration_Stat132: 0.0 - syst_JES_EtaIntercalibration_Stat133: 2.783405647763186e-23 - syst_JES_EtaIntercalibration_Stat134: 6.864117357921222e-10 - syst_JES_EtaIntercalibration_Stat135: 1.579739456366144e-08 - syst_JES_EtaIntercalibration_Stat136: 3.202392950201458e-08 - syst_JES_EtaIntercalibration_Stat137: 1.3405366537323773e-08 - syst_JES_EtaIntercalibration_Stat138: 1.7906825514311576e-08 - syst_JES_EtaIntercalibration_Stat139: 9.366681734077441e-20 + syst_JES_EtaIntercalibration_Stat133: 2.78340565e-23 + syst_JES_EtaIntercalibration_Stat134: 6.86411736e-10 + syst_JES_EtaIntercalibration_Stat135: 1.57973946e-08 + syst_JES_EtaIntercalibration_Stat136: 3.20239295e-08 + syst_JES_EtaIntercalibration_Stat137: 1.34053665e-08 + syst_JES_EtaIntercalibration_Stat138: 1.79068255e-08 + syst_JES_EtaIntercalibration_Stat139: 9.36668173e-20 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 6.993155135559342e-23 + syst_JES_EtaIntercalibration_Stat140: 6.99315514e-23 syst_JES_EtaIntercalibration_Stat141: 0.0 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 2.230015414744929e-24 - syst_JES_EtaIntercalibration_Stat144: 2.230015414744929e-24 + syst_JES_EtaIntercalibration_Stat143: 2.23001541e-24 + syst_JES_EtaIntercalibration_Stat144: 2.23001541e-24 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 2.83103704497133e-24 - syst_JES_EtaIntercalibration_Stat148: 2.83103704497133e-24 + syst_JES_EtaIntercalibration_Stat147: 2.83103704e-24 + syst_JES_EtaIntercalibration_Stat148: 2.83103704e-24 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 syst_JES_EtaIntercalibration_Stat150: 0.0 syst_JES_EtaIntercalibration_Stat151: 0.0 - syst_JES_EtaIntercalibration_Stat152: 7.486789615715762e-10 - syst_JES_EtaIntercalibration_Stat153: 2.7706501042174198e-08 - syst_JES_EtaIntercalibration_Stat154: 7.331985474617362e-08 - syst_JES_EtaIntercalibration_Stat155: 1.2612049278368683e-08 - syst_JES_EtaIntercalibration_Stat156: 2.0483273053884725e-08 - syst_JES_EtaIntercalibration_Stat157: 7.775157559175248e-18 + syst_JES_EtaIntercalibration_Stat152: 7.48678962e-10 + syst_JES_EtaIntercalibration_Stat153: 2.77065010e-08 + syst_JES_EtaIntercalibration_Stat154: 7.33198547e-08 + syst_JES_EtaIntercalibration_Stat155: 1.26120493e-08 + syst_JES_EtaIntercalibration_Stat156: 2.04832731e-08 + syst_JES_EtaIntercalibration_Stat157: 7.77515756e-18 syst_JES_EtaIntercalibration_Stat158: 0.0 syst_JES_EtaIntercalibration_Stat159: 0.0 syst_JES_EtaIntercalibration_Stat16: 0.0 @@ -11374,18 +11374,18 @@ bins: syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 2.83103704497133e-24 + syst_JES_EtaIntercalibration_Stat165: 2.83103704e-24 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 3.525756005100183e-09 - syst_JES_EtaIntercalibration_Stat171: 6.220183337330179e-08 - syst_JES_EtaIntercalibration_Stat172: 1.0692882714684568e-07 - syst_JES_EtaIntercalibration_Stat173: 8.922552269390188e-08 - syst_JES_EtaIntercalibration_Stat174: 6.789142269094086e-08 - syst_JES_EtaIntercalibration_Stat175: 1.0416928662038538e-17 + syst_JES_EtaIntercalibration_Stat170: 3.52575601e-09 + syst_JES_EtaIntercalibration_Stat171: 6.22018334e-08 + syst_JES_EtaIntercalibration_Stat172: 1.06928827e-07 + syst_JES_EtaIntercalibration_Stat173: 8.92255227e-08 + syst_JES_EtaIntercalibration_Stat174: 6.78914227e-08 + syst_JES_EtaIntercalibration_Stat175: 1.04169287e-17 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 syst_JES_EtaIntercalibration_Stat178: 0.0 @@ -11398,14 +11398,14 @@ bins: syst_JES_EtaIntercalibration_Stat184: 0.0 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 - syst_JES_EtaIntercalibration_Stat187: 8.884928066675611e-09 - syst_JES_EtaIntercalibration_Stat188: 3.4667031528528657e-07 - syst_JES_EtaIntercalibration_Stat189: 5.500624214577833e-07 + syst_JES_EtaIntercalibration_Stat187: 8.88492807e-09 + syst_JES_EtaIntercalibration_Stat188: 3.46670315e-07 + syst_JES_EtaIntercalibration_Stat189: 5.50062421e-07 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 5.305558665211421e-07 - syst_JES_EtaIntercalibration_Stat191: 3.0644035308686095e-07 - syst_JES_EtaIntercalibration_Stat192: 1.0876177039750685e-08 - syst_JES_EtaIntercalibration_Stat193: 4.227936021275629e-18 + syst_JES_EtaIntercalibration_Stat190: 5.30555867e-07 + syst_JES_EtaIntercalibration_Stat191: 3.06440353e-07 + syst_JES_EtaIntercalibration_Stat192: 1.08761770e-08 + syst_JES_EtaIntercalibration_Stat193: 4.22793602e-18 syst_JES_EtaIntercalibration_Stat194: 0.0 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 @@ -11416,13 +11416,13 @@ bins: syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 syst_JES_EtaIntercalibration_Stat201: 0.0 - syst_JES_EtaIntercalibration_Stat202: 1.4470384471395362e-08 - syst_JES_EtaIntercalibration_Stat203: 7.706683511731878e-07 - syst_JES_EtaIntercalibration_Stat204: 1.0750953015895846e-06 - syst_JES_EtaIntercalibration_Stat205: 1.0243742577788646e-06 - syst_JES_EtaIntercalibration_Stat206: 8.330285274226807e-07 - syst_JES_EtaIntercalibration_Stat207: 7.2256035561051925e-09 - syst_JES_EtaIntercalibration_Stat208: 4.227936021275629e-18 + syst_JES_EtaIntercalibration_Stat202: 1.44703845e-08 + syst_JES_EtaIntercalibration_Stat203: 7.70668351e-07 + syst_JES_EtaIntercalibration_Stat204: 1.07509530e-06 + syst_JES_EtaIntercalibration_Stat205: 1.02437426e-06 + syst_JES_EtaIntercalibration_Stat206: 8.33028527e-07 + syst_JES_EtaIntercalibration_Stat207: 7.22560356e-09 + syst_JES_EtaIntercalibration_Stat208: 4.22793602e-18 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 @@ -11430,38 +11430,38 @@ bins: syst_JES_EtaIntercalibration_Stat212: 0.0 syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 - syst_JES_EtaIntercalibration_Stat215: 1.70429890277498e-08 - syst_JES_EtaIntercalibration_Stat216: 8.834942147518567e-07 - syst_JES_EtaIntercalibration_Stat217: 1.1260483382164374e-06 - syst_JES_EtaIntercalibration_Stat218: 1.2499981869986852e-06 - syst_JES_EtaIntercalibration_Stat219: 9.726315373768218e-07 + syst_JES_EtaIntercalibration_Stat215: 1.70429890e-08 + syst_JES_EtaIntercalibration_Stat216: 8.83494215e-07 + syst_JES_EtaIntercalibration_Stat217: 1.12604834e-06 + syst_JES_EtaIntercalibration_Stat218: 1.24999819e-06 + syst_JES_EtaIntercalibration_Stat219: 9.72631537e-07 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 6.9688194660214865e-09 + syst_JES_EtaIntercalibration_Stat220: 6.96881947e-09 syst_JES_EtaIntercalibration_Stat221: 0.0 syst_JES_EtaIntercalibration_Stat222: 0.0 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 - syst_JES_EtaIntercalibration_Stat227: 6.288232979144459e-08 - syst_JES_EtaIntercalibration_Stat228: 2.062109114474789e-06 - syst_JES_EtaIntercalibration_Stat229: 3.2233177007549227e-06 + syst_JES_EtaIntercalibration_Stat227: 6.28823298e-08 + syst_JES_EtaIntercalibration_Stat228: 2.06210911e-06 + syst_JES_EtaIntercalibration_Stat229: 3.22331770e-06 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 3.517676896760133e-06 - syst_JES_EtaIntercalibration_Stat231: 2.9225555170090443e-06 - syst_JES_EtaIntercalibration_Stat232: 3.9970327431733654e-08 + syst_JES_EtaIntercalibration_Stat230: 3.51767690e-06 + syst_JES_EtaIntercalibration_Stat231: 2.92255552e-06 + syst_JES_EtaIntercalibration_Stat232: 3.99703274e-08 syst_JES_EtaIntercalibration_Stat233: 0.0 syst_JES_EtaIntercalibration_Stat234: 0.0 syst_JES_EtaIntercalibration_Stat235: 0.0 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 - syst_JES_EtaIntercalibration_Stat238: 2.686582354963272e-08 - syst_JES_EtaIntercalibration_Stat239: 3.8085739417792584e-07 + syst_JES_EtaIntercalibration_Stat238: 2.68658235e-08 + syst_JES_EtaIntercalibration_Stat239: 3.80857394e-07 syst_JES_EtaIntercalibration_Stat24: 0.0 - syst_JES_EtaIntercalibration_Stat240: 5.088959299306686e-07 - syst_JES_EtaIntercalibration_Stat241: 5.164316871571689e-07 - syst_JES_EtaIntercalibration_Stat242: 2.893861563724153e-07 - syst_JES_EtaIntercalibration_Stat243: 9.8622951375657e-09 + syst_JES_EtaIntercalibration_Stat240: 5.08895930e-07 + syst_JES_EtaIntercalibration_Stat241: 5.16431687e-07 + syst_JES_EtaIntercalibration_Stat242: 2.89386156e-07 + syst_JES_EtaIntercalibration_Stat243: 9.86229514e-09 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 syst_JES_EtaIntercalibration_Stat25: 0.0 @@ -11470,12 +11470,12 @@ bins: syst_JES_EtaIntercalibration_Stat28: 0.0 syst_JES_EtaIntercalibration_Stat29: 0.0 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 2.6132629259223035e-23 - syst_JES_EtaIntercalibration_Stat31: 8.059129667650223e-10 - syst_JES_EtaIntercalibration_Stat32: 1.4997249981246564e-21 - syst_JES_EtaIntercalibration_Stat33: 3.923109562188873e-18 - syst_JES_EtaIntercalibration_Stat34: 4.161274007844009e-18 - syst_JES_EtaIntercalibration_Stat35: 6.478052433337893e-23 + syst_JES_EtaIntercalibration_Stat30: 2.61326293e-23 + syst_JES_EtaIntercalibration_Stat31: 8.05912967e-10 + syst_JES_EtaIntercalibration_Stat32: 1.49972500e-21 + syst_JES_EtaIntercalibration_Stat33: 3.92310956e-18 + syst_JES_EtaIntercalibration_Stat34: 4.16127401e-18 + syst_JES_EtaIntercalibration_Stat35: 6.47805243e-23 syst_JES_EtaIntercalibration_Stat36: 0.0 syst_JES_EtaIntercalibration_Stat37: 0.0 syst_JES_EtaIntercalibration_Stat38: 0.0 @@ -11494,220 +11494,220 @@ bins: syst_JES_EtaIntercalibration_Stat5: 0.0 syst_JES_EtaIntercalibration_Stat50: 0.0 syst_JES_EtaIntercalibration_Stat51: 0.0 - syst_JES_EtaIntercalibration_Stat52: 1.8067791093545445e-23 - syst_JES_EtaIntercalibration_Stat53: 8.545849537641066e-21 - syst_JES_EtaIntercalibration_Stat54: 6.889232087717489e-10 - syst_JES_EtaIntercalibration_Stat55: 3.92650529196011e-18 - syst_JES_EtaIntercalibration_Stat56: 4.16034875583667e-18 - syst_JES_EtaIntercalibration_Stat57: 1.6596913809500849e-22 + syst_JES_EtaIntercalibration_Stat52: 1.80677911e-23 + syst_JES_EtaIntercalibration_Stat53: 8.54584954e-21 + syst_JES_EtaIntercalibration_Stat54: 6.88923209e-10 + syst_JES_EtaIntercalibration_Stat55: 3.92650529e-18 + syst_JES_EtaIntercalibration_Stat56: 4.16034876e-18 + syst_JES_EtaIntercalibration_Stat57: 1.65969138e-22 syst_JES_EtaIntercalibration_Stat58: 0.0 syst_JES_EtaIntercalibration_Stat59: 0.0 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 2.230015414744929e-24 - syst_JES_EtaIntercalibration_Stat62: 2.230015414744929e-24 + syst_JES_EtaIntercalibration_Stat61: 2.23001541e-24 + syst_JES_EtaIntercalibration_Stat62: 2.23001541e-24 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 2.7123915646528615e-23 - syst_JES_EtaIntercalibration_Stat69: 2.7123915646528615e-23 + syst_JES_EtaIntercalibration_Stat68: 2.71239156e-23 + syst_JES_EtaIntercalibration_Stat69: 2.71239156e-23 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 2.922835737772481e-23 - syst_JES_EtaIntercalibration_Stat71: 2.922835737772481e-23 + syst_JES_EtaIntercalibration_Stat70: 2.92283574e-23 + syst_JES_EtaIntercalibration_Stat71: 2.92283574e-23 syst_JES_EtaIntercalibration_Stat72: 0.0 syst_JES_EtaIntercalibration_Stat73: 0.0 - syst_JES_EtaIntercalibration_Stat74: 6.970900368092705e-21 - syst_JES_EtaIntercalibration_Stat75: 7.579778014559529e-10 - syst_JES_EtaIntercalibration_Stat76: 1.5510514981008243e-09 - syst_JES_EtaIntercalibration_Stat77: 2.047750640947281e-08 - syst_JES_EtaIntercalibration_Stat78: 8.017663188256392e-09 - syst_JES_EtaIntercalibration_Stat79: 6.046824207797016e-23 + syst_JES_EtaIntercalibration_Stat74: 6.97090037e-21 + syst_JES_EtaIntercalibration_Stat75: 7.57977801e-10 + syst_JES_EtaIntercalibration_Stat76: 1.55105150e-09 + syst_JES_EtaIntercalibration_Stat77: 2.04775064e-08 + syst_JES_EtaIntercalibration_Stat78: 8.01766319e-09 + syst_JES_EtaIntercalibration_Stat79: 6.04682421e-23 syst_JES_EtaIntercalibration_Stat8: 0.0 syst_JES_EtaIntercalibration_Stat80: 0.0 syst_JES_EtaIntercalibration_Stat81: 0.0 - syst_JES_EtaIntercalibration_Stat82: 2.230015414744929e-24 - syst_JES_EtaIntercalibration_Stat83: 2.230015414744929e-24 - syst_JES_EtaIntercalibration_Stat84: 2.230015414744929e-24 + syst_JES_EtaIntercalibration_Stat82: 2.23001541e-24 + syst_JES_EtaIntercalibration_Stat83: 2.23001541e-24 + syst_JES_EtaIntercalibration_Stat84: 2.23001541e-24 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 2.7123915646528615e-23 - syst_JES_EtaIntercalibration_Stat9: 6.825244242333018e-21 - syst_JES_EtaIntercalibration_Stat90: 2.7123915646528615e-23 - syst_JES_EtaIntercalibration_Stat91: 2.922835737772481e-23 - syst_JES_EtaIntercalibration_Stat92: 2.922835737772481e-23 + syst_JES_EtaIntercalibration_Stat89: 2.71239156e-23 + syst_JES_EtaIntercalibration_Stat9: 6.82524424e-21 + syst_JES_EtaIntercalibration_Stat90: 2.71239156e-23 + syst_JES_EtaIntercalibration_Stat91: 2.92283574e-23 + syst_JES_EtaIntercalibration_Stat92: 2.92283574e-23 syst_JES_EtaIntercalibration_Stat93: 0.0 syst_JES_EtaIntercalibration_Stat94: 0.0 - syst_JES_EtaIntercalibration_Stat95: 6.974567332437189e-21 - syst_JES_EtaIntercalibration_Stat96: 1.739140051864714e-09 - syst_JES_EtaIntercalibration_Stat97: 2.392003971568609e-09 - syst_JES_EtaIntercalibration_Stat98: 7.723467679740751e-09 - syst_JES_EtaIntercalibration_Stat99: 1.7964148684573725e-15 - syst_JES_EtaIntercalibration_TotalStat_MJB: 5.0484952213506165e-05 - syst_JES_Flavour_Comp: 9.994905552330147e-05 - syst_JES_Gjet_Generator: 0.00012059993739633533 - syst_JES_Gjet_OOC: 9.953422828354072e-05 - syst_JES_Gjet_Purity: 1.3564070849121957e-05 - syst_JES_Gjet_Stat1: 1.4329425206546143e-07 - syst_JES_Gjet_Stat10: 3.3833688462832427e-06 - syst_JES_Gjet_Stat11: 3.5443821393862144e-06 - syst_JES_Gjet_Stat12: 4.392080002686655e-06 - syst_JES_Gjet_Stat13: 2.2640216430060912e-05 - syst_JES_Gjet_Stat14: 6.041095347699786e-05 - syst_JES_Gjet_Stat15: 0.00010290529274531996 - syst_JES_Gjet_Stat2: 6.375145704217277e-07 - syst_JES_Gjet_Stat3: 7.067649450135456e-07 - syst_JES_Gjet_Stat4: 1.0789453496354668e-06 - syst_JES_Gjet_Stat5: 1.1408174963595186e-06 - syst_JES_Gjet_Stat6: 2.3101486965128456e-06 - syst_JES_Gjet_Stat7: 1.5747287861724e-06 - syst_JES_Gjet_Stat8: 7.284977076147872e-07 - syst_JES_Gjet_Stat9: 1.573196348203237e-06 - syst_JES_Gjet_Veto: 0.00010685997602002351 - syst_JES_Gjet_dPhi: 9.8360996843261e-06 - syst_JES_LArESZee: 0.00017442639565157562 - syst_JES_LArEsmear: 1.608501398818167e-05 - syst_JES_LAr_JVT: 2.0710173828338574e-05 - syst_JES_MJB_Alpha: 3.5404026254085847e-06 - syst_JES_MJB_Asym: 4.6832186581452716e-05 - syst_JES_MJB_Beta: 2.9522619717768955e-06 - syst_JES_MJB_Stat1: 8.863817397278668e-12 - syst_JES_MJB_Stat10: 8.657219472786859e-07 - syst_JES_MJB_Stat11: 1.3035836097082534e-06 - syst_JES_MJB_Stat12: 2.378638896512037e-06 - syst_JES_MJB_Stat13: 3.945786320557665e-06 - syst_JES_MJB_Stat14: 8.010079837304995e-06 - syst_JES_MJB_Stat15: 6.924154876228579e-06 - syst_JES_MJB_Stat16: 1.7815012629801862e-05 - syst_JES_MJB_Stat2: 4.3126438669508976e-08 - syst_JES_MJB_Stat3: 6.23784265591879e-08 - syst_JES_MJB_Stat4: 3.671073957304592e-08 - syst_JES_MJB_Stat5: 6.808184559778033e-08 - syst_JES_MJB_Stat6: 1.414433585397349e-07 - syst_JES_MJB_Stat7: 2.1900073059238865e-07 - syst_JES_MJB_Stat8: 3.055091283415276e-07 - syst_JES_MJB_Stat9: 5.290979871441584e-07 - syst_JES_MJB_Threshold: 2.1300075117238435e-05 - syst_JES_Pileup_MuOffset: 3.1390716780602506e-05 - syst_JES_Pileup_NPVOffset: 2.9076177104289348e-05 - syst_JES_Pileup_Pt_term: 1.2018559481069267e-05 - syst_JES_PunchThrough_MC15: 4.5288754398857115e-05 - syst_JES_SingleParticle_HighPt: 1.754086870710798e-07 - syst_JES_Zjet_MC: 4.623742720999948e-05 - syst_JES_Zjet_MuScale: 4.125443888843963e-06 - syst_JES_Zjet_MuSmearID: 9.392051533078382e-07 - syst_JES_Zjet_MuSmearMS: 1.1004926385487547e-05 - syst_JES_Zjet_OOC: 2.985580471198189e-05 - syst_JES_Zjet_Stat1: 4.7263366363389736e-06 - syst_JES_Zjet_Stat10: 2.426560528814396e-06 - syst_JES_Zjet_Stat11: 3.2215363958831818e-06 - syst_JES_Zjet_Stat12: 6.437038197028195e-06 - syst_JES_Zjet_Stat13: 1.0942868488198146e-05 - syst_JES_Zjet_Stat2: 8.852178870199133e-08 - syst_JES_Zjet_Stat3: 1.9332159734494228e-06 - syst_JES_Zjet_Stat4: 2.1208007921537564e-06 - syst_JES_Zjet_Stat5: 2.14591029635444e-06 - syst_JES_Zjet_Stat6: 1.976324113094813e-06 - syst_JES_Zjet_Stat7: 2.210968283354603e-06 - syst_JES_Zjet_Stat8: 1.280036486784654e-06 - syst_JES_Zjet_Stat9: 1.8143414094375953e-06 - syst_JES_Zjet_Veto: 5.662216792034725e-06 - syst_JES_Zjet_dPhi: 5.423513874786346e-06 - syst_PRW: 2.262e-06 - syst_Unfolding_bias: 3.714e-07 - syst_cleaning: 2.6240569734668493e-05 - syst_lumi: 8.614e-05 - syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 7.191002225003132e-06 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.9630249616344667e-05 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 1.924004677748991e-06 + syst_JES_EtaIntercalibration_Stat95: 6.97456733e-21 + syst_JES_EtaIntercalibration_Stat96: 1.73914005e-09 + syst_JES_EtaIntercalibration_Stat97: 2.39200397e-09 + syst_JES_EtaIntercalibration_Stat98: 7.72346768e-09 + syst_JES_EtaIntercalibration_Stat99: 1.79641487e-15 + syst_JES_EtaIntercalibration_TotalStat_MJB: 5.04849522e-05 + syst_JES_Flavour_Comp: 9.99490555e-05 + syst_JES_Gjet_Generator: 1.20599937e-04 + syst_JES_Gjet_OOC: 9.95342283e-05 + syst_JES_Gjet_Purity: 1.35640708e-05 + syst_JES_Gjet_Stat1: 1.43294252e-07 + syst_JES_Gjet_Stat10: 3.38336885e-06 + syst_JES_Gjet_Stat11: 3.54438214e-06 + syst_JES_Gjet_Stat12: 4.39208000e-06 + syst_JES_Gjet_Stat13: 2.26402164e-05 + syst_JES_Gjet_Stat14: 6.04109535e-05 + syst_JES_Gjet_Stat15: 1.02905293e-04 + syst_JES_Gjet_Stat2: 6.37514570e-07 + syst_JES_Gjet_Stat3: 7.06764945e-07 + syst_JES_Gjet_Stat4: 1.07894535e-06 + syst_JES_Gjet_Stat5: 1.14081750e-06 + syst_JES_Gjet_Stat6: 2.31014870e-06 + syst_JES_Gjet_Stat7: 1.57472879e-06 + syst_JES_Gjet_Stat8: 7.28497708e-07 + syst_JES_Gjet_Stat9: 1.57319635e-06 + syst_JES_Gjet_Veto: 1.06859976e-04 + syst_JES_Gjet_dPhi: 9.83609968e-06 + syst_JES_LArESZee: 1.74426396e-04 + syst_JES_LArEsmear: 1.60850140e-05 + syst_JES_LAr_JVT: 2.07101738e-05 + syst_JES_MJB_Alpha: 3.54040263e-06 + syst_JES_MJB_Asym: 4.68321866e-05 + syst_JES_MJB_Beta: 2.95226197e-06 + syst_JES_MJB_Stat1: 8.86381740e-12 + syst_JES_MJB_Stat10: 8.65721947e-07 + syst_JES_MJB_Stat11: 1.30358361e-06 + syst_JES_MJB_Stat12: 2.37863890e-06 + syst_JES_MJB_Stat13: 3.94578632e-06 + syst_JES_MJB_Stat14: 8.01007984e-06 + syst_JES_MJB_Stat15: 6.92415488e-06 + syst_JES_MJB_Stat16: 1.78150126e-05 + syst_JES_MJB_Stat2: 4.31264387e-08 + syst_JES_MJB_Stat3: 6.23784266e-08 + syst_JES_MJB_Stat4: 3.67107396e-08 + syst_JES_MJB_Stat5: 6.80818456e-08 + syst_JES_MJB_Stat6: 1.41443359e-07 + syst_JES_MJB_Stat7: 2.19000731e-07 + syst_JES_MJB_Stat8: 3.05509128e-07 + syst_JES_MJB_Stat9: 5.29097987e-07 + syst_JES_MJB_Threshold: 2.13000751e-05 + syst_JES_Pileup_MuOffset: 3.13907168e-05 + syst_JES_Pileup_NPVOffset: 2.90761771e-05 + syst_JES_Pileup_Pt_term: 1.20185595e-05 + syst_JES_PunchThrough_MC15: 4.52887544e-05 + syst_JES_SingleParticle_HighPt: 1.75408687e-07 + syst_JES_Zjet_MC: 4.62374272e-05 + syst_JES_Zjet_MuScale: 4.12544389e-06 + syst_JES_Zjet_MuSmearID: 9.39205153e-07 + syst_JES_Zjet_MuSmearMS: 1.10049264e-05 + syst_JES_Zjet_OOC: 2.98558047e-05 + syst_JES_Zjet_Stat1: 4.72633664e-06 + syst_JES_Zjet_Stat10: 2.42656053e-06 + syst_JES_Zjet_Stat11: 3.22153640e-06 + syst_JES_Zjet_Stat12: 6.43703820e-06 + syst_JES_Zjet_Stat13: 1.09428685e-05 + syst_JES_Zjet_Stat2: 8.85217887e-08 + syst_JES_Zjet_Stat3: 1.93321597e-06 + syst_JES_Zjet_Stat4: 2.12080079e-06 + syst_JES_Zjet_Stat5: 2.14591030e-06 + syst_JES_Zjet_Stat6: 1.97632411e-06 + syst_JES_Zjet_Stat7: 2.21096828e-06 + syst_JES_Zjet_Stat8: 1.28003649e-06 + syst_JES_Zjet_Stat9: 1.81434141e-06 + syst_JES_Zjet_Veto: 5.66221679e-06 + syst_JES_Zjet_dPhi: 5.42351387e-06 + syst_PRW: 2.26200000e-06 + syst_Unfolding_bias: 3.71400000e-07 + syst_cleaning: 2.62405697e-05 + syst_lumi: 8.61400000e-05 + syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 7.19100223e-06 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.96302496e-05 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 1.92400468e-06 syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 2.3005053249232003e-05 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.0970503851236734e-05 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 2.890538141938279e-05 -- stat: 2.8024e-05 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 2.30050532e-05 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.09705039e-05 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 2.89053814e-05 +- stat: 2.80240000e-05 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 2.4094320388838528e-06 - syst_JER_NP1: 2.0841748367159605e-07 - syst_JER_NP2: 1.992734992416202e-06 - syst_JER_NP3: 3.0454521831741175e-07 - syst_JER_NP4: 6.348717409839566e-07 - syst_JER_NP5: 9.404595724963409e-07 - syst_JER_NP6: 8.264179859489989e-07 - syst_JER_NP7: 7.794662580894699e-07 - syst_JER_NP8: 5.248657614095246e-07 - syst_JES_EtaIntercalibration_Modelling: 1.4121558722393219e-05 + syst_JER_NP0: 2.40943204e-06 + syst_JER_NP1: 2.08417484e-07 + syst_JER_NP2: 1.99273499e-06 + syst_JER_NP3: 3.04545218e-07 + syst_JER_NP4: 6.34871741e-07 + syst_JER_NP5: 9.40459572e-07 + syst_JER_NP6: 8.26417986e-07 + syst_JER_NP7: 7.79466258e-07 + syst_JER_NP8: 5.24865761e-07 + syst_JES_EtaIntercalibration_Modelling: 1.41215587e-05 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 - syst_JES_EtaIntercalibration_Stat10: 1.0103026613347112e-24 - syst_JES_EtaIntercalibration_Stat100: 4.1783014192372475e-23 + syst_JES_EtaIntercalibration_Stat10: 1.01030266e-24 + syst_JES_EtaIntercalibration_Stat100: 4.17830142e-23 syst_JES_EtaIntercalibration_Stat101: 0.0 syst_JES_EtaIntercalibration_Stat102: 0.0 - syst_JES_EtaIntercalibration_Stat103: 1.2721913181593403e-25 - syst_JES_EtaIntercalibration_Stat104: 1.2721913181593403e-25 - syst_JES_EtaIntercalibration_Stat105: 1.2721913181593403e-25 + syst_JES_EtaIntercalibration_Stat103: 1.27219132e-25 + syst_JES_EtaIntercalibration_Stat104: 1.27219132e-25 + syst_JES_EtaIntercalibration_Stat105: 1.27219132e-25 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 1.2496746576609449e-24 - syst_JES_EtaIntercalibration_Stat11: 4.437514168991463e-23 - syst_JES_EtaIntercalibration_Stat110: 1.2084428120519397e-24 - syst_JES_EtaIntercalibration_Stat111: 1.4575207545692101e-24 - syst_JES_EtaIntercalibration_Stat112: 1.4575207545692101e-24 + syst_JES_EtaIntercalibration_Stat109: 1.24967466e-24 + syst_JES_EtaIntercalibration_Stat11: 4.43751417e-23 + syst_JES_EtaIntercalibration_Stat110: 1.20844281e-24 + syst_JES_EtaIntercalibration_Stat111: 1.45752075e-24 + syst_JES_EtaIntercalibration_Stat112: 1.45752075e-24 syst_JES_EtaIntercalibration_Stat113: 0.0 - syst_JES_EtaIntercalibration_Stat114: 1.2314881241814718e-24 - syst_JES_EtaIntercalibration_Stat115: 5.426520155679881e-22 - syst_JES_EtaIntercalibration_Stat116: 3.4896089680650464e-09 - syst_JES_EtaIntercalibration_Stat117: 2.1944411661457227e-09 - syst_JES_EtaIntercalibration_Stat118: 2.004114270070447e-09 - syst_JES_EtaIntercalibration_Stat119: 3.956893062429158e-09 - syst_JES_EtaIntercalibration_Stat12: 2.724426385052096e-20 - syst_JES_EtaIntercalibration_Stat120: 2.969522409447014e-20 - syst_JES_EtaIntercalibration_Stat121: 2.585951855700334e-24 + syst_JES_EtaIntercalibration_Stat114: 1.23148812e-24 + syst_JES_EtaIntercalibration_Stat115: 5.42652016e-22 + syst_JES_EtaIntercalibration_Stat116: 3.48960897e-09 + syst_JES_EtaIntercalibration_Stat117: 2.19444117e-09 + syst_JES_EtaIntercalibration_Stat118: 2.00411427e-09 + syst_JES_EtaIntercalibration_Stat119: 3.95689306e-09 + syst_JES_EtaIntercalibration_Stat12: 2.72442639e-20 + syst_JES_EtaIntercalibration_Stat120: 2.96952241e-20 + syst_JES_EtaIntercalibration_Stat121: 2.58595186e-24 syst_JES_EtaIntercalibration_Stat122: 0.0 - syst_JES_EtaIntercalibration_Stat123: 1.2721913181593403e-25 - syst_JES_EtaIntercalibration_Stat124: 1.2721913181593403e-25 - syst_JES_EtaIntercalibration_Stat125: 1.2721913181593403e-25 + syst_JES_EtaIntercalibration_Stat123: 1.27219132e-25 + syst_JES_EtaIntercalibration_Stat124: 1.27219132e-25 + syst_JES_EtaIntercalibration_Stat125: 1.27219132e-25 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 1.2496746576609449e-24 - syst_JES_EtaIntercalibration_Stat129: 1.2084428120519397e-24 + syst_JES_EtaIntercalibration_Stat128: 1.24967466e-24 + syst_JES_EtaIntercalibration_Stat129: 1.20844281e-24 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 1.4791713896638211e-25 + syst_JES_EtaIntercalibration_Stat130: 1.47917139e-25 syst_JES_EtaIntercalibration_Stat131: 0.0 syst_JES_EtaIntercalibration_Stat132: 0.0 - syst_JES_EtaIntercalibration_Stat133: 1.2314881241814718e-24 - syst_JES_EtaIntercalibration_Stat134: 3.5671586428444325e-12 - syst_JES_EtaIntercalibration_Stat135: 4.2169063304749845e-09 - syst_JES_EtaIntercalibration_Stat136: 4.616960688591576e-09 - syst_JES_EtaIntercalibration_Stat137: 2.8918860195381144e-09 - syst_JES_EtaIntercalibration_Stat138: 3.964063697772779e-09 - syst_JES_EtaIntercalibration_Stat139: 1.3885163466088543e-21 + syst_JES_EtaIntercalibration_Stat133: 1.23148812e-24 + syst_JES_EtaIntercalibration_Stat134: 3.56715864e-12 + syst_JES_EtaIntercalibration_Stat135: 4.21690633e-09 + syst_JES_EtaIntercalibration_Stat136: 4.61696069e-09 + syst_JES_EtaIntercalibration_Stat137: 2.89188602e-09 + syst_JES_EtaIntercalibration_Stat138: 3.96406370e-09 + syst_JES_EtaIntercalibration_Stat139: 1.38851635e-21 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 2.585951855700334e-24 + syst_JES_EtaIntercalibration_Stat140: 2.58595186e-24 syst_JES_EtaIntercalibration_Stat141: 0.0 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 1.2721913181593403e-25 - syst_JES_EtaIntercalibration_Stat144: 1.2721913181593403e-25 + syst_JES_EtaIntercalibration_Stat143: 1.27219132e-25 + syst_JES_EtaIntercalibration_Stat144: 1.27219132e-25 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 1.4791713896638211e-25 - syst_JES_EtaIntercalibration_Stat148: 1.4791713896638211e-25 + syst_JES_EtaIntercalibration_Stat147: 1.47917139e-25 + syst_JES_EtaIntercalibration_Stat148: 1.47917139e-25 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 syst_JES_EtaIntercalibration_Stat150: 0.0 syst_JES_EtaIntercalibration_Stat151: 0.0 - syst_JES_EtaIntercalibration_Stat152: 3.758550252421666e-12 - syst_JES_EtaIntercalibration_Stat153: 5.270383856988027e-09 - syst_JES_EtaIntercalibration_Stat154: 1.137390059522238e-08 - syst_JES_EtaIntercalibration_Stat155: 2.7380505839008892e-09 - syst_JES_EtaIntercalibration_Stat156: 4.152746651314043e-09 - syst_JES_EtaIntercalibration_Stat157: 5.679555097672705e-20 + syst_JES_EtaIntercalibration_Stat152: 3.75855025e-12 + syst_JES_EtaIntercalibration_Stat153: 5.27038386e-09 + syst_JES_EtaIntercalibration_Stat154: 1.13739006e-08 + syst_JES_EtaIntercalibration_Stat155: 2.73805058e-09 + syst_JES_EtaIntercalibration_Stat156: 4.15274665e-09 + syst_JES_EtaIntercalibration_Stat157: 5.67955510e-20 syst_JES_EtaIntercalibration_Stat158: 0.0 syst_JES_EtaIntercalibration_Stat159: 0.0 syst_JES_EtaIntercalibration_Stat16: 0.0 @@ -11716,18 +11716,18 @@ bins: syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 1.4791713896638211e-25 + syst_JES_EtaIntercalibration_Stat165: 1.47917139e-25 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 4.120925142489244e-11 - syst_JES_EtaIntercalibration_Stat171: 1.4375783387349711e-08 - syst_JES_EtaIntercalibration_Stat172: 2.3071945626669632e-08 - syst_JES_EtaIntercalibration_Stat173: 1.883981387248823e-08 - syst_JES_EtaIntercalibration_Stat174: 1.1808459594714291e-08 - syst_JES_EtaIntercalibration_Stat175: 5.4004707896626935e-20 + syst_JES_EtaIntercalibration_Stat170: 4.12092514e-11 + syst_JES_EtaIntercalibration_Stat171: 1.43757834e-08 + syst_JES_EtaIntercalibration_Stat172: 2.30719456e-08 + syst_JES_EtaIntercalibration_Stat173: 1.88398139e-08 + syst_JES_EtaIntercalibration_Stat174: 1.18084596e-08 + syst_JES_EtaIntercalibration_Stat175: 5.40047079e-20 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 syst_JES_EtaIntercalibration_Stat178: 0.0 @@ -11740,14 +11740,14 @@ bins: syst_JES_EtaIntercalibration_Stat184: 0.0 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 - syst_JES_EtaIntercalibration_Stat187: 2.450260106820294e-09 - syst_JES_EtaIntercalibration_Stat188: 6.03781160686552e-08 - syst_JES_EtaIntercalibration_Stat189: 1.0048544222921051e-07 + syst_JES_EtaIntercalibration_Stat187: 2.45026011e-09 + syst_JES_EtaIntercalibration_Stat188: 6.03781161e-08 + syst_JES_EtaIntercalibration_Stat189: 1.00485442e-07 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 9.782245447748692e-08 - syst_JES_EtaIntercalibration_Stat191: 6.436912050820643e-08 - syst_JES_EtaIntercalibration_Stat192: 3.2825476005688017e-09 - syst_JES_EtaIntercalibration_Stat193: 3.062265827781775e-20 + syst_JES_EtaIntercalibration_Stat190: 9.78224545e-08 + syst_JES_EtaIntercalibration_Stat191: 6.43691205e-08 + syst_JES_EtaIntercalibration_Stat192: 3.28254760e-09 + syst_JES_EtaIntercalibration_Stat193: 3.06226583e-20 syst_JES_EtaIntercalibration_Stat194: 0.0 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 @@ -11758,13 +11758,13 @@ bins: syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 syst_JES_EtaIntercalibration_Stat201: 0.0 - syst_JES_EtaIntercalibration_Stat202: 7.185241262476856e-10 - syst_JES_EtaIntercalibration_Stat203: 1.3872078746532545e-07 - syst_JES_EtaIntercalibration_Stat204: 2.1952714524632256e-07 - syst_JES_EtaIntercalibration_Stat205: 1.8365785444679462e-07 - syst_JES_EtaIntercalibration_Stat206: 1.3987361259365542e-07 - syst_JES_EtaIntercalibration_Stat207: 2.0956879538709956e-09 - syst_JES_EtaIntercalibration_Stat208: 3.062265827781775e-20 + syst_JES_EtaIntercalibration_Stat202: 7.18524126e-10 + syst_JES_EtaIntercalibration_Stat203: 1.38720787e-07 + syst_JES_EtaIntercalibration_Stat204: 2.19527145e-07 + syst_JES_EtaIntercalibration_Stat205: 1.83657854e-07 + syst_JES_EtaIntercalibration_Stat206: 1.39873613e-07 + syst_JES_EtaIntercalibration_Stat207: 2.09568795e-09 + syst_JES_EtaIntercalibration_Stat208: 3.06226583e-20 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 @@ -11772,38 +11772,38 @@ bins: syst_JES_EtaIntercalibration_Stat212: 0.0 syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 - syst_JES_EtaIntercalibration_Stat215: 2.730790969664284e-09 - syst_JES_EtaIntercalibration_Stat216: 1.8758200206842872e-07 - syst_JES_EtaIntercalibration_Stat217: 2.25608865074048e-07 - syst_JES_EtaIntercalibration_Stat218: 2.3894197517389026e-07 - syst_JES_EtaIntercalibration_Stat219: 1.6938107184688614e-07 + syst_JES_EtaIntercalibration_Stat215: 2.73079097e-09 + syst_JES_EtaIntercalibration_Stat216: 1.87582002e-07 + syst_JES_EtaIntercalibration_Stat217: 2.25608865e-07 + syst_JES_EtaIntercalibration_Stat218: 2.38941975e-07 + syst_JES_EtaIntercalibration_Stat219: 1.69381072e-07 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 2.0410528533088016e-09 + syst_JES_EtaIntercalibration_Stat220: 2.04105285e-09 syst_JES_EtaIntercalibration_Stat221: 0.0 syst_JES_EtaIntercalibration_Stat222: 0.0 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 - syst_JES_EtaIntercalibration_Stat227: 7.4344645234206345e-09 - syst_JES_EtaIntercalibration_Stat228: 4.5728112797271653e-07 - syst_JES_EtaIntercalibration_Stat229: 7.181008912402212e-07 + syst_JES_EtaIntercalibration_Stat227: 7.43446452e-09 + syst_JES_EtaIntercalibration_Stat228: 4.57281128e-07 + syst_JES_EtaIntercalibration_Stat229: 7.18100891e-07 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 7.272815273331229e-07 - syst_JES_EtaIntercalibration_Stat231: 5.924033655373676e-07 - syst_JES_EtaIntercalibration_Stat232: 7.496757615796312e-09 + syst_JES_EtaIntercalibration_Stat230: 7.27281527e-07 + syst_JES_EtaIntercalibration_Stat231: 5.92403366e-07 + syst_JES_EtaIntercalibration_Stat232: 7.49675762e-09 syst_JES_EtaIntercalibration_Stat233: 0.0 syst_JES_EtaIntercalibration_Stat234: 0.0 syst_JES_EtaIntercalibration_Stat235: 0.0 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 - syst_JES_EtaIntercalibration_Stat238: 2.3462305955510854e-09 - syst_JES_EtaIntercalibration_Stat239: 6.238803150444803e-08 + syst_JES_EtaIntercalibration_Stat238: 2.34623060e-09 + syst_JES_EtaIntercalibration_Stat239: 6.23880315e-08 syst_JES_EtaIntercalibration_Stat24: 0.0 - syst_JES_EtaIntercalibration_Stat240: 9.34255975362213e-08 - syst_JES_EtaIntercalibration_Stat241: 9.451665078175379e-08 - syst_JES_EtaIntercalibration_Stat242: 6.330775841079828e-08 - syst_JES_EtaIntercalibration_Stat243: 1.8356967151465954e-09 + syst_JES_EtaIntercalibration_Stat240: 9.34255975e-08 + syst_JES_EtaIntercalibration_Stat241: 9.45166508e-08 + syst_JES_EtaIntercalibration_Stat242: 6.33077584e-08 + syst_JES_EtaIntercalibration_Stat243: 1.83569672e-09 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 syst_JES_EtaIntercalibration_Stat25: 0.0 @@ -11812,12 +11812,12 @@ bins: syst_JES_EtaIntercalibration_Stat28: 0.0 syst_JES_EtaIntercalibration_Stat29: 0.0 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 1.1441781712215977e-24 - syst_JES_EtaIntercalibration_Stat31: 4.053156030490314e-12 - syst_JES_EtaIntercalibration_Stat32: 5.2590176839406046e-23 - syst_JES_EtaIntercalibration_Stat33: 2.7270486467319794e-20 - syst_JES_EtaIntercalibration_Stat34: 2.993788164954014e-20 - syst_JES_EtaIntercalibration_Stat35: 2.3276286595750193e-24 + syst_JES_EtaIntercalibration_Stat30: 1.14417817e-24 + syst_JES_EtaIntercalibration_Stat31: 4.05315603e-12 + syst_JES_EtaIntercalibration_Stat32: 5.25901768e-23 + syst_JES_EtaIntercalibration_Stat33: 2.72704865e-20 + syst_JES_EtaIntercalibration_Stat34: 2.99378816e-20 + syst_JES_EtaIntercalibration_Stat35: 2.32762866e-24 syst_JES_EtaIntercalibration_Stat36: 0.0 syst_JES_EtaIntercalibration_Stat37: 0.0 syst_JES_EtaIntercalibration_Stat38: 0.0 @@ -11836,220 +11836,220 @@ bins: syst_JES_EtaIntercalibration_Stat5: 0.0 syst_JES_EtaIntercalibration_Stat50: 0.0 syst_JES_EtaIntercalibration_Stat51: 0.0 - syst_JES_EtaIntercalibration_Stat52: 1.1700515747179693e-24 - syst_JES_EtaIntercalibration_Stat53: 1.415192576886623e-22 - syst_JES_EtaIntercalibration_Stat54: 3.573220816681433e-12 - syst_JES_EtaIntercalibration_Stat55: 2.7141351083895487e-20 - syst_JES_EtaIntercalibration_Stat56: 2.9879836781258946e-20 - syst_JES_EtaIntercalibration_Stat57: 5.5986615364745884e-24 + syst_JES_EtaIntercalibration_Stat52: 1.17005157e-24 + syst_JES_EtaIntercalibration_Stat53: 1.41519258e-22 + syst_JES_EtaIntercalibration_Stat54: 3.57322082e-12 + syst_JES_EtaIntercalibration_Stat55: 2.71413511e-20 + syst_JES_EtaIntercalibration_Stat56: 2.98798368e-20 + syst_JES_EtaIntercalibration_Stat57: 5.59866154e-24 syst_JES_EtaIntercalibration_Stat58: 0.0 syst_JES_EtaIntercalibration_Stat59: 0.0 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 1.2721913181593403e-25 - syst_JES_EtaIntercalibration_Stat62: 1.2721913181593403e-25 + syst_JES_EtaIntercalibration_Stat61: 1.27219132e-25 + syst_JES_EtaIntercalibration_Stat62: 1.27219132e-25 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 1.2496746576609449e-24 - syst_JES_EtaIntercalibration_Stat69: 1.2496746576609449e-24 + syst_JES_EtaIntercalibration_Stat68: 1.24967466e-24 + syst_JES_EtaIntercalibration_Stat69: 1.24967466e-24 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 1.4575207545692101e-24 - syst_JES_EtaIntercalibration_Stat71: 1.4575207545692101e-24 + syst_JES_EtaIntercalibration_Stat70: 1.45752075e-24 + syst_JES_EtaIntercalibration_Stat71: 1.45752075e-24 syst_JES_EtaIntercalibration_Stat72: 0.0 syst_JES_EtaIntercalibration_Stat73: 0.0 - syst_JES_EtaIntercalibration_Stat74: 1.212160390325884e-22 - syst_JES_EtaIntercalibration_Stat75: 3.818883039253755e-12 - syst_JES_EtaIntercalibration_Stat76: 1.659304673582251e-11 - syst_JES_EtaIntercalibration_Stat77: 4.152102690204085e-09 - syst_JES_EtaIntercalibration_Stat78: 1.609941225635287e-09 - syst_JES_EtaIntercalibration_Stat79: 4.6322903622290345e-24 + syst_JES_EtaIntercalibration_Stat74: 1.21216039e-22 + syst_JES_EtaIntercalibration_Stat75: 3.81888304e-12 + syst_JES_EtaIntercalibration_Stat76: 1.65930467e-11 + syst_JES_EtaIntercalibration_Stat77: 4.15210269e-09 + syst_JES_EtaIntercalibration_Stat78: 1.60994123e-09 + syst_JES_EtaIntercalibration_Stat79: 4.63229036e-24 syst_JES_EtaIntercalibration_Stat8: 0.0 syst_JES_EtaIntercalibration_Stat80: 0.0 syst_JES_EtaIntercalibration_Stat81: 0.0 - syst_JES_EtaIntercalibration_Stat82: 1.2721913181593403e-25 - syst_JES_EtaIntercalibration_Stat83: 1.2721913181593403e-25 - syst_JES_EtaIntercalibration_Stat84: 1.2721913181593403e-25 + syst_JES_EtaIntercalibration_Stat82: 1.27219132e-25 + syst_JES_EtaIntercalibration_Stat83: 1.27219132e-25 + syst_JES_EtaIntercalibration_Stat84: 1.27219132e-25 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 1.2496746576609449e-24 - syst_JES_EtaIntercalibration_Stat9: 1.1590414636944617e-22 - syst_JES_EtaIntercalibration_Stat90: 1.2496746576609449e-24 - syst_JES_EtaIntercalibration_Stat91: 1.4575207545692101e-24 - syst_JES_EtaIntercalibration_Stat92: 1.4575207545692101e-24 + syst_JES_EtaIntercalibration_Stat89: 1.24967466e-24 + syst_JES_EtaIntercalibration_Stat9: 1.15904146e-22 + syst_JES_EtaIntercalibration_Stat90: 1.24967466e-24 + syst_JES_EtaIntercalibration_Stat91: 1.45752075e-24 + syst_JES_EtaIntercalibration_Stat92: 1.45752075e-24 syst_JES_EtaIntercalibration_Stat93: 0.0 syst_JES_EtaIntercalibration_Stat94: 0.0 - syst_JES_EtaIntercalibration_Stat95: 1.2156483354704187e-22 - syst_JES_EtaIntercalibration_Stat96: 3.0147890473464305e-11 - syst_JES_EtaIntercalibration_Stat97: 8.714533206087403e-11 - syst_JES_EtaIntercalibration_Stat98: 1.5645854147345232e-09 - syst_JES_EtaIntercalibration_Stat99: 6.570233325162434e-18 - syst_JES_EtaIntercalibration_TotalStat_MJB: 1.6777303120585258e-05 - syst_JES_Flavour_Comp: 1.534235314415621e-05 - syst_JES_Gjet_Generator: 2.995730962553213e-05 - syst_JES_Gjet_OOC: 2.4925642920494552e-05 - syst_JES_Gjet_Purity: 6.26742865934667e-07 - syst_JES_Gjet_Stat1: 1.5383239808310862e-08 - syst_JES_Gjet_Stat10: 1.5470103425640052e-06 - syst_JES_Gjet_Stat11: 1.5180237152297722e-06 - syst_JES_Gjet_Stat12: 7.857441361537482e-07 - syst_JES_Gjet_Stat13: 7.114394844257662e-06 - syst_JES_Gjet_Stat14: 2.1310914457150825e-05 - syst_JES_Gjet_Stat15: 3.3986554694467045e-05 - syst_JES_Gjet_Stat2: 1.1711594031130006e-07 - syst_JES_Gjet_Stat3: 1.438807342037147e-07 - syst_JES_Gjet_Stat4: 5.507132375383762e-07 - syst_JES_Gjet_Stat5: 5.397253653479702e-07 - syst_JES_Gjet_Stat6: 5.043145447039972e-07 - syst_JES_Gjet_Stat7: 5.940256055087187e-07 - syst_JES_Gjet_Stat8: 1.0916039792433884e-07 - syst_JES_Gjet_Stat9: 5.884271917578248e-07 - syst_JES_Gjet_Veto: 2.908975206150785e-05 - syst_JES_Gjet_dPhi: 1.3640500458194342e-06 - syst_JES_LArESZee: 3.897877196628954e-05 - syst_JES_LArEsmear: 3.7680130042238445e-06 - syst_JES_LAr_JVT: 4.9825637978855825e-06 - syst_JES_MJB_Alpha: 8.60349109373631e-07 - syst_JES_MJB_Asym: 2.1710805489433136e-05 - syst_JES_MJB_Beta: 1.5982502932895085e-06 - syst_JES_MJB_Stat1: 2.4065635152796197e-14 - syst_JES_MJB_Stat10: 7.571910244449547e-08 - syst_JES_MJB_Stat11: 1.1824118191222549e-07 - syst_JES_MJB_Stat12: 2.3292473033149572e-07 - syst_JES_MJB_Stat13: 4.44147644370653e-07 - syst_JES_MJB_Stat14: 4.948206947976206e-06 - syst_JES_MJB_Stat15: 8.175075947659447e-06 - syst_JES_MJB_Stat16: 1.5629839250612913e-05 - syst_JES_MJB_Stat2: 6.624223740945665e-09 - syst_JES_MJB_Stat3: 1.0201570516346981e-08 - syst_JES_MJB_Stat4: 5.615206207255438e-09 - syst_JES_MJB_Stat5: 5.938744732685519e-09 - syst_JES_MJB_Stat6: 1.3556384796471366e-08 - syst_JES_MJB_Stat7: 1.9979130987107522e-08 - syst_JES_MJB_Stat8: 2.5155696670933202e-08 - syst_JES_MJB_Stat9: 4.468223892107467e-08 - syst_JES_MJB_Threshold: 4.947567786296616e-06 - syst_JES_Pileup_MuOffset: 1.0680486552587387e-05 - syst_JES_Pileup_NPVOffset: 7.714768564253888e-06 - syst_JES_Pileup_Pt_term: 2.3810419987896052e-06 - syst_JES_PunchThrough_MC15: 2.408449034129641e-05 - syst_JES_SingleParticle_HighPt: 1.2788675302782536e-06 - syst_JES_Zjet_MC: 1.1369044319994534e-05 - syst_JES_Zjet_MuScale: 1.2560411896112325e-06 - syst_JES_Zjet_MuSmearID: 1.1582664330800578e-07 - syst_JES_Zjet_MuSmearMS: 1.974138482984413e-06 - syst_JES_Zjet_OOC: 6.777504315749272e-06 - syst_JES_Zjet_Stat1: 1.36469357000024e-06 - syst_JES_Zjet_Stat10: 7.229981794582888e-07 - syst_JES_Zjet_Stat11: 6.621657873976879e-07 - syst_JES_Zjet_Stat12: 1.1580848187848764e-06 - syst_JES_Zjet_Stat13: 2.5214061553030287e-06 - syst_JES_Zjet_Stat2: 1.4268331787563673e-08 - syst_JES_Zjet_Stat3: 2.8513922914955074e-07 - syst_JES_Zjet_Stat4: 4.3676859719993604e-07 - syst_JES_Zjet_Stat5: 3.577936102000705e-07 - syst_JES_Zjet_Stat6: 6.329030968481668e-07 - syst_JES_Zjet_Stat7: 5.186656606138486e-07 - syst_JES_Zjet_Stat8: 2.401059974261368e-07 - syst_JES_Zjet_Stat9: 6.010721649685667e-07 - syst_JES_Zjet_Veto: 1.224782922603022e-06 - syst_JES_Zjet_dPhi: 1.1743543108874766e-06 - syst_PRW: 4.542e-07 - syst_Unfolding_bias: 7.457e-08 - syst_cleaning: 5.0229473419497445e-06 + syst_JES_EtaIntercalibration_Stat95: 1.21564834e-22 + syst_JES_EtaIntercalibration_Stat96: 3.01478905e-11 + syst_JES_EtaIntercalibration_Stat97: 8.71453321e-11 + syst_JES_EtaIntercalibration_Stat98: 1.56458541e-09 + syst_JES_EtaIntercalibration_Stat99: 6.57023333e-18 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.67773031e-05 + syst_JES_Flavour_Comp: 1.53423531e-05 + syst_JES_Gjet_Generator: 2.99573096e-05 + syst_JES_Gjet_OOC: 2.49256429e-05 + syst_JES_Gjet_Purity: 6.26742866e-07 + syst_JES_Gjet_Stat1: 1.53832398e-08 + syst_JES_Gjet_Stat10: 1.54701034e-06 + syst_JES_Gjet_Stat11: 1.51802372e-06 + syst_JES_Gjet_Stat12: 7.85744136e-07 + syst_JES_Gjet_Stat13: 7.11439484e-06 + syst_JES_Gjet_Stat14: 2.13109145e-05 + syst_JES_Gjet_Stat15: 3.39865547e-05 + syst_JES_Gjet_Stat2: 1.17115940e-07 + syst_JES_Gjet_Stat3: 1.43880734e-07 + syst_JES_Gjet_Stat4: 5.50713238e-07 + syst_JES_Gjet_Stat5: 5.39725365e-07 + syst_JES_Gjet_Stat6: 5.04314545e-07 + syst_JES_Gjet_Stat7: 5.94025606e-07 + syst_JES_Gjet_Stat8: 1.09160398e-07 + syst_JES_Gjet_Stat9: 5.88427192e-07 + syst_JES_Gjet_Veto: 2.90897521e-05 + syst_JES_Gjet_dPhi: 1.36405005e-06 + syst_JES_LArESZee: 3.89787720e-05 + syst_JES_LArEsmear: 3.76801300e-06 + syst_JES_LAr_JVT: 4.98256380e-06 + syst_JES_MJB_Alpha: 8.60349109e-07 + syst_JES_MJB_Asym: 2.17108055e-05 + syst_JES_MJB_Beta: 1.59825029e-06 + syst_JES_MJB_Stat1: 2.40656352e-14 + syst_JES_MJB_Stat10: 7.57191024e-08 + syst_JES_MJB_Stat11: 1.18241182e-07 + syst_JES_MJB_Stat12: 2.32924730e-07 + syst_JES_MJB_Stat13: 4.44147644e-07 + syst_JES_MJB_Stat14: 4.94820695e-06 + syst_JES_MJB_Stat15: 8.17507595e-06 + syst_JES_MJB_Stat16: 1.56298393e-05 + syst_JES_MJB_Stat2: 6.62422374e-09 + syst_JES_MJB_Stat3: 1.02015705e-08 + syst_JES_MJB_Stat4: 5.61520621e-09 + syst_JES_MJB_Stat5: 5.93874473e-09 + syst_JES_MJB_Stat6: 1.35563848e-08 + syst_JES_MJB_Stat7: 1.99791310e-08 + syst_JES_MJB_Stat8: 2.51556967e-08 + syst_JES_MJB_Stat9: 4.46822389e-08 + syst_JES_MJB_Threshold: 4.94756779e-06 + syst_JES_Pileup_MuOffset: 1.06804866e-05 + syst_JES_Pileup_NPVOffset: 7.71476856e-06 + syst_JES_Pileup_Pt_term: 2.38104200e-06 + syst_JES_PunchThrough_MC15: 2.40844903e-05 + syst_JES_SingleParticle_HighPt: 1.27886753e-06 + syst_JES_Zjet_MC: 1.13690443e-05 + syst_JES_Zjet_MuScale: 1.25604119e-06 + syst_JES_Zjet_MuSmearID: 1.15826643e-07 + syst_JES_Zjet_MuSmearMS: 1.97413848e-06 + syst_JES_Zjet_OOC: 6.77750432e-06 + syst_JES_Zjet_Stat1: 1.36469357e-06 + syst_JES_Zjet_Stat10: 7.22998179e-07 + syst_JES_Zjet_Stat11: 6.62165787e-07 + syst_JES_Zjet_Stat12: 1.15808482e-06 + syst_JES_Zjet_Stat13: 2.52140616e-06 + syst_JES_Zjet_Stat2: 1.42683318e-08 + syst_JES_Zjet_Stat3: 2.85139229e-07 + syst_JES_Zjet_Stat4: 4.36768597e-07 + syst_JES_Zjet_Stat5: 3.57793610e-07 + syst_JES_Zjet_Stat6: 6.32903097e-07 + syst_JES_Zjet_Stat7: 5.18665661e-07 + syst_JES_Zjet_Stat8: 2.40105997e-07 + syst_JES_Zjet_Stat9: 6.01072165e-07 + syst_JES_Zjet_Veto: 1.22478292e-06 + syst_JES_Zjet_dPhi: 1.17435431e-06 + syst_PRW: 4.54200000e-07 + syst_Unfolding_bias: 7.45700000e-08 + syst_cleaning: 5.02294734e-06 syst_lumi: 1.73e-05 - syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 2.1741177521008377e-06 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 5.0154910776513194e-06 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 9.124685254845779e-07 + syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 2.17411775e-06 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 5.01549108e-06 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 9.12468525e-07 syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 1.0911521193215913e-05 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 4.445752439126587e-06 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 9.947970446276969e-06 -- stat: 9.202e-06 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 1.09115212e-05 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 4.44575244e-06 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 9.94797045e-06 +- stat: 9.20200000e-06 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 3.8967084507312066e-07 - syst_JER_NP1: 1.142418067084025e-07 - syst_JER_NP2: 3.2833313494071835e-07 - syst_JER_NP3: 7.355661832901238e-08 - syst_JER_NP4: 1.1487099590410106e-07 - syst_JER_NP5: 1.6592893056968698e-07 - syst_JER_NP6: 1.567876662878812e-07 - syst_JER_NP7: 1.5125127272191794e-07 - syst_JER_NP8: 1.0344405444490274e-07 - syst_JES_EtaIntercalibration_Modelling: 1.5975076682132077e-06 + syst_JER_NP0: 3.89670845e-07 + syst_JER_NP1: 1.14241807e-07 + syst_JER_NP2: 3.28333135e-07 + syst_JER_NP3: 7.35566183e-08 + syst_JER_NP4: 1.14870996e-07 + syst_JER_NP5: 1.65928931e-07 + syst_JER_NP6: 1.56787666e-07 + syst_JER_NP7: 1.51251273e-07 + syst_JER_NP8: 1.03444054e-07 + syst_JES_EtaIntercalibration_Modelling: 1.59750767e-06 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 - syst_JES_EtaIntercalibration_Stat10: 2.99160475330549e-26 - syst_JES_EtaIntercalibration_Stat100: 7.233992051419465e-25 + syst_JES_EtaIntercalibration_Stat10: 2.99160475e-26 + syst_JES_EtaIntercalibration_Stat100: 7.23399205e-25 syst_JES_EtaIntercalibration_Stat101: 0.0 syst_JES_EtaIntercalibration_Stat102: 0.0 - syst_JES_EtaIntercalibration_Stat103: 3.633842594279504e-27 - syst_JES_EtaIntercalibration_Stat104: 3.633842594279504e-27 - syst_JES_EtaIntercalibration_Stat105: 3.633842594279504e-27 + syst_JES_EtaIntercalibration_Stat103: 3.63384259e-27 + syst_JES_EtaIntercalibration_Stat104: 3.63384259e-27 + syst_JES_EtaIntercalibration_Stat105: 3.63384259e-27 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 2.895988950255163e-26 - syst_JES_EtaIntercalibration_Stat11: 6.938595535120923e-25 - syst_JES_EtaIntercalibration_Stat110: 2.791746320853669e-26 - syst_JES_EtaIntercalibration_Stat111: 3.686670143910355e-26 - syst_JES_EtaIntercalibration_Stat112: 3.686670143910355e-26 + syst_JES_EtaIntercalibration_Stat109: 2.89598895e-26 + syst_JES_EtaIntercalibration_Stat11: 6.93859554e-25 + syst_JES_EtaIntercalibration_Stat110: 2.79174632e-26 + syst_JES_EtaIntercalibration_Stat111: 3.68667014e-26 + syst_JES_EtaIntercalibration_Stat112: 3.68667014e-26 syst_JES_EtaIntercalibration_Stat113: 0.0 - syst_JES_EtaIntercalibration_Stat114: 2.719319767883137e-26 - syst_JES_EtaIntercalibration_Stat115: 3.6435423354202976e-24 - syst_JES_EtaIntercalibration_Stat116: 4.0409049419653515e-10 - syst_JES_EtaIntercalibration_Stat117: 3.230108671546516e-10 - syst_JES_EtaIntercalibration_Stat118: 2.2734965911564506e-10 - syst_JES_EtaIntercalibration_Stat119: 4.5407537788345227e-10 - syst_JES_EtaIntercalibration_Stat12: 8.798750871941028e-23 - syst_JES_EtaIntercalibration_Stat120: 1.0269067863475975e-22 - syst_JES_EtaIntercalibration_Stat121: 4.792584584543084e-26 + syst_JES_EtaIntercalibration_Stat114: 2.71931977e-26 + syst_JES_EtaIntercalibration_Stat115: 3.64354234e-24 + syst_JES_EtaIntercalibration_Stat116: 4.04090494e-10 + syst_JES_EtaIntercalibration_Stat117: 3.23010867e-10 + syst_JES_EtaIntercalibration_Stat118: 2.27349659e-10 + syst_JES_EtaIntercalibration_Stat119: 4.54075378e-10 + syst_JES_EtaIntercalibration_Stat12: 8.79875087e-23 + syst_JES_EtaIntercalibration_Stat120: 1.02690679e-22 + syst_JES_EtaIntercalibration_Stat121: 4.79258458e-26 syst_JES_EtaIntercalibration_Stat122: 0.0 - syst_JES_EtaIntercalibration_Stat123: 3.633842594279504e-27 - syst_JES_EtaIntercalibration_Stat124: 3.633842594279504e-27 - syst_JES_EtaIntercalibration_Stat125: 3.633842594279504e-27 + syst_JES_EtaIntercalibration_Stat123: 3.63384259e-27 + syst_JES_EtaIntercalibration_Stat124: 3.63384259e-27 + syst_JES_EtaIntercalibration_Stat125: 3.63384259e-27 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 2.895988950255163e-26 - syst_JES_EtaIntercalibration_Stat129: 2.791746320853669e-26 + syst_JES_EtaIntercalibration_Stat128: 2.89598895e-26 + syst_JES_EtaIntercalibration_Stat129: 2.79174632e-26 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 3.8312963863423564e-27 + syst_JES_EtaIntercalibration_Stat130: 3.83129639e-27 syst_JES_EtaIntercalibration_Stat131: 0.0 syst_JES_EtaIntercalibration_Stat132: 0.0 - syst_JES_EtaIntercalibration_Stat133: 2.719319767883137e-26 - syst_JES_EtaIntercalibration_Stat134: 2.348660906331543e-15 - syst_JES_EtaIntercalibration_Stat135: 1.0414679675822968e-09 - syst_JES_EtaIntercalibration_Stat136: 1.5005500016660556e-09 - syst_JES_EtaIntercalibration_Stat137: 9.597813188429954e-10 - syst_JES_EtaIntercalibration_Stat138: 6.122107725285467e-10 - syst_JES_EtaIntercalibration_Stat139: 1.0590524591123898e-23 + syst_JES_EtaIntercalibration_Stat133: 2.71931977e-26 + syst_JES_EtaIntercalibration_Stat134: 2.34866091e-15 + syst_JES_EtaIntercalibration_Stat135: 1.04146797e-09 + syst_JES_EtaIntercalibration_Stat136: 1.50055000e-09 + syst_JES_EtaIntercalibration_Stat137: 9.59781319e-10 + syst_JES_EtaIntercalibration_Stat138: 6.12210773e-10 + syst_JES_EtaIntercalibration_Stat139: 1.05905246e-23 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 4.792584584543084e-26 + syst_JES_EtaIntercalibration_Stat140: 4.79258458e-26 syst_JES_EtaIntercalibration_Stat141: 0.0 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 3.633842594279504e-27 - syst_JES_EtaIntercalibration_Stat144: 3.633842594279504e-27 + syst_JES_EtaIntercalibration_Stat143: 3.63384259e-27 + syst_JES_EtaIntercalibration_Stat144: 3.63384259e-27 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 3.8312963863423564e-27 - syst_JES_EtaIntercalibration_Stat148: 3.8312963863423564e-27 + syst_JES_EtaIntercalibration_Stat147: 3.83129639e-27 + syst_JES_EtaIntercalibration_Stat148: 3.83129639e-27 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 syst_JES_EtaIntercalibration_Stat150: 0.0 syst_JES_EtaIntercalibration_Stat151: 0.0 - syst_JES_EtaIntercalibration_Stat152: 2.4742345785566002e-15 - syst_JES_EtaIntercalibration_Stat153: 1.106961801508977e-09 - syst_JES_EtaIntercalibration_Stat154: 2.1836126030044797e-09 - syst_JES_EtaIntercalibration_Stat155: 9.605904069893683e-10 - syst_JES_EtaIntercalibration_Stat156: 6.497084576946801e-10 - syst_JES_EtaIntercalibration_Stat157: 2.0436403793231333e-22 + syst_JES_EtaIntercalibration_Stat152: 2.47423458e-15 + syst_JES_EtaIntercalibration_Stat153: 1.10696180e-09 + syst_JES_EtaIntercalibration_Stat154: 2.18361260e-09 + syst_JES_EtaIntercalibration_Stat155: 9.60590407e-10 + syst_JES_EtaIntercalibration_Stat156: 6.49708458e-10 + syst_JES_EtaIntercalibration_Stat157: 2.04364038e-22 syst_JES_EtaIntercalibration_Stat158: 0.0 syst_JES_EtaIntercalibration_Stat159: 0.0 syst_JES_EtaIntercalibration_Stat16: 0.0 @@ -12058,18 +12058,18 @@ bins: syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 3.8312963863423564e-27 + syst_JES_EtaIntercalibration_Stat165: 3.83129639e-27 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 3.6945659782307316e-14 - syst_JES_EtaIntercalibration_Stat171: 2.002161831621011e-09 - syst_JES_EtaIntercalibration_Stat172: 3.0777189605290477e-09 - syst_JES_EtaIntercalibration_Stat173: 4.772994107475935e-09 - syst_JES_EtaIntercalibration_Stat174: 2.9492020530984307e-09 - syst_JES_EtaIntercalibration_Stat175: 2.7142490674217793e-22 + syst_JES_EtaIntercalibration_Stat170: 3.69456598e-14 + syst_JES_EtaIntercalibration_Stat171: 2.00216183e-09 + syst_JES_EtaIntercalibration_Stat172: 3.07771896e-09 + syst_JES_EtaIntercalibration_Stat173: 4.77299411e-09 + syst_JES_EtaIntercalibration_Stat174: 2.94920205e-09 + syst_JES_EtaIntercalibration_Stat175: 2.71424907e-22 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 syst_JES_EtaIntercalibration_Stat178: 0.0 @@ -12082,14 +12082,14 @@ bins: syst_JES_EtaIntercalibration_Stat184: 0.0 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 - syst_JES_EtaIntercalibration_Stat187: 5.375905784144659e-10 - syst_JES_EtaIntercalibration_Stat188: 8.772376915636948e-09 - syst_JES_EtaIntercalibration_Stat189: 1.3257502281727127e-08 + syst_JES_EtaIntercalibration_Stat187: 5.37590578e-10 + syst_JES_EtaIntercalibration_Stat188: 8.77237692e-09 + syst_JES_EtaIntercalibration_Stat189: 1.32575023e-08 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 1.8401008124556655e-08 - syst_JES_EtaIntercalibration_Stat191: 1.1595401200475989e-08 - syst_JES_EtaIntercalibration_Stat192: 3.7882698267150926e-10 - syst_JES_EtaIntercalibration_Stat193: 1.0677227203258345e-22 + syst_JES_EtaIntercalibration_Stat190: 1.84010081e-08 + syst_JES_EtaIntercalibration_Stat191: 1.15954012e-08 + syst_JES_EtaIntercalibration_Stat192: 3.78826983e-10 + syst_JES_EtaIntercalibration_Stat193: 1.06772272e-22 syst_JES_EtaIntercalibration_Stat194: 0.0 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 @@ -12100,13 +12100,13 @@ bins: syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 syst_JES_EtaIntercalibration_Stat201: 0.0 - syst_JES_EtaIntercalibration_Stat202: 9.334767575440751e-10 - syst_JES_EtaIntercalibration_Stat203: 1.8431283189186803e-08 - syst_JES_EtaIntercalibration_Stat204: 3.035380824542449e-08 - syst_JES_EtaIntercalibration_Stat205: 3.0581721256332184e-08 - syst_JES_EtaIntercalibration_Stat206: 2.3584051284713573e-08 - syst_JES_EtaIntercalibration_Stat207: 3.172147493418299e-10 - syst_JES_EtaIntercalibration_Stat208: 1.0677227203258345e-22 + syst_JES_EtaIntercalibration_Stat202: 9.33476758e-10 + syst_JES_EtaIntercalibration_Stat203: 1.84312832e-08 + syst_JES_EtaIntercalibration_Stat204: 3.03538082e-08 + syst_JES_EtaIntercalibration_Stat205: 3.05817213e-08 + syst_JES_EtaIntercalibration_Stat206: 2.35840513e-08 + syst_JES_EtaIntercalibration_Stat207: 3.17214749e-10 + syst_JES_EtaIntercalibration_Stat208: 1.06772272e-22 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 @@ -12114,38 +12114,38 @@ bins: syst_JES_EtaIntercalibration_Stat212: 0.0 syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 - syst_JES_EtaIntercalibration_Stat215: 9.159602110899796e-10 - syst_JES_EtaIntercalibration_Stat216: 2.141300714519098e-08 - syst_JES_EtaIntercalibration_Stat217: 3.256333021974257e-08 - syst_JES_EtaIntercalibration_Stat218: 3.833482489851753e-08 - syst_JES_EtaIntercalibration_Stat219: 2.730763263265419e-08 + syst_JES_EtaIntercalibration_Stat215: 9.15960211e-10 + syst_JES_EtaIntercalibration_Stat216: 2.14130071e-08 + syst_JES_EtaIntercalibration_Stat217: 3.25633302e-08 + syst_JES_EtaIntercalibration_Stat218: 3.83348249e-08 + syst_JES_EtaIntercalibration_Stat219: 2.73076326e-08 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 5.749582332656869e-10 + syst_JES_EtaIntercalibration_Stat220: 5.74958233e-10 syst_JES_EtaIntercalibration_Stat221: 0.0 syst_JES_EtaIntercalibration_Stat222: 0.0 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 - syst_JES_EtaIntercalibration_Stat227: 1.2717186038978905e-09 - syst_JES_EtaIntercalibration_Stat228: 6.104042983957435e-08 - syst_JES_EtaIntercalibration_Stat229: 1.0429210948101491e-07 + syst_JES_EtaIntercalibration_Stat227: 1.27171860e-09 + syst_JES_EtaIntercalibration_Stat228: 6.10404298e-08 + syst_JES_EtaIntercalibration_Stat229: 1.04292109e-07 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 1.1343436549388373e-07 - syst_JES_EtaIntercalibration_Stat231: 8.899042799649859e-08 - syst_JES_EtaIntercalibration_Stat232: 9.885921757732053e-10 + syst_JES_EtaIntercalibration_Stat230: 1.13434365e-07 + syst_JES_EtaIntercalibration_Stat231: 8.89904280e-08 + syst_JES_EtaIntercalibration_Stat232: 9.88592176e-10 syst_JES_EtaIntercalibration_Stat233: 0.0 syst_JES_EtaIntercalibration_Stat234: 0.0 syst_JES_EtaIntercalibration_Stat235: 0.0 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 - syst_JES_EtaIntercalibration_Stat238: 2.41114302924982e-10 - syst_JES_EtaIntercalibration_Stat239: 8.859736113451685e-09 + syst_JES_EtaIntercalibration_Stat238: 2.41114303e-10 + syst_JES_EtaIntercalibration_Stat239: 8.85973611e-09 syst_JES_EtaIntercalibration_Stat24: 0.0 - syst_JES_EtaIntercalibration_Stat240: 1.1964199795640326e-08 - syst_JES_EtaIntercalibration_Stat241: 1.753369898224559e-08 - syst_JES_EtaIntercalibration_Stat242: 1.1275454491948428e-08 - syst_JES_EtaIntercalibration_Stat243: 3.866639238408466e-10 + syst_JES_EtaIntercalibration_Stat240: 1.19641998e-08 + syst_JES_EtaIntercalibration_Stat241: 1.75336990e-08 + syst_JES_EtaIntercalibration_Stat242: 1.12754545e-08 + syst_JES_EtaIntercalibration_Stat243: 3.86663924e-10 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 syst_JES_EtaIntercalibration_Stat25: 0.0 @@ -12154,12 +12154,12 @@ bins: syst_JES_EtaIntercalibration_Stat28: 0.0 syst_JES_EtaIntercalibration_Stat29: 0.0 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 2.5007511911423734e-26 - syst_JES_EtaIntercalibration_Stat31: 2.663997753377431e-15 - syst_JES_EtaIntercalibration_Stat32: 6.81489477174813e-25 - syst_JES_EtaIntercalibration_Stat33: 8.854215192914786e-23 - syst_JES_EtaIntercalibration_Stat34: 1.0368505942616949e-22 - syst_JES_EtaIntercalibration_Stat35: 4.1322649263902475e-26 + syst_JES_EtaIntercalibration_Stat30: 2.50075119e-26 + syst_JES_EtaIntercalibration_Stat31: 2.66399775e-15 + syst_JES_EtaIntercalibration_Stat32: 6.81489477e-25 + syst_JES_EtaIntercalibration_Stat33: 8.85421519e-23 + syst_JES_EtaIntercalibration_Stat34: 1.03685059e-22 + syst_JES_EtaIntercalibration_Stat35: 4.13226493e-26 syst_JES_EtaIntercalibration_Stat36: 0.0 syst_JES_EtaIntercalibration_Stat37: 0.0 syst_JES_EtaIntercalibration_Stat38: 0.0 @@ -12178,153 +12178,153 @@ bins: syst_JES_EtaIntercalibration_Stat5: 0.0 syst_JES_EtaIntercalibration_Stat50: 0.0 syst_JES_EtaIntercalibration_Stat51: 0.0 - syst_JES_EtaIntercalibration_Stat52: 3.1248173494622046e-26 - syst_JES_EtaIntercalibration_Stat53: 1.2166862568057553e-24 - syst_JES_EtaIntercalibration_Stat54: 2.3538570513433813e-15 - syst_JES_EtaIntercalibration_Stat55: 8.67217596955199e-23 - syst_JES_EtaIntercalibration_Stat56: 1.0329071902484753e-22 - syst_JES_EtaIntercalibration_Stat57: 1.0158893283719442e-25 + syst_JES_EtaIntercalibration_Stat52: 3.12481735e-26 + syst_JES_EtaIntercalibration_Stat53: 1.21668626e-24 + syst_JES_EtaIntercalibration_Stat54: 2.35385705e-15 + syst_JES_EtaIntercalibration_Stat55: 8.67217597e-23 + syst_JES_EtaIntercalibration_Stat56: 1.03290719e-22 + syst_JES_EtaIntercalibration_Stat57: 1.01588933e-25 syst_JES_EtaIntercalibration_Stat58: 0.0 syst_JES_EtaIntercalibration_Stat59: 0.0 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 3.633842594279504e-27 - syst_JES_EtaIntercalibration_Stat62: 3.633842594279504e-27 + syst_JES_EtaIntercalibration_Stat61: 3.63384259e-27 + syst_JES_EtaIntercalibration_Stat62: 3.63384259e-27 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 2.895988950255163e-26 - syst_JES_EtaIntercalibration_Stat69: 2.895988950255163e-26 + syst_JES_EtaIntercalibration_Stat68: 2.89598895e-26 + syst_JES_EtaIntercalibration_Stat69: 2.89598895e-26 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 3.686670143910355e-26 - syst_JES_EtaIntercalibration_Stat71: 3.686670143910355e-26 + syst_JES_EtaIntercalibration_Stat70: 3.68667014e-26 + syst_JES_EtaIntercalibration_Stat71: 3.68667014e-26 syst_JES_EtaIntercalibration_Stat72: 0.0 syst_JES_EtaIntercalibration_Stat73: 0.0 - syst_JES_EtaIntercalibration_Stat74: 1.062685266518267e-24 - syst_JES_EtaIntercalibration_Stat75: 2.5087369790394526e-15 - syst_JES_EtaIntercalibration_Stat76: 1.4644489576154843e-14 - syst_JES_EtaIntercalibration_Stat77: 4.706666336166183e-10 - syst_JES_EtaIntercalibration_Stat78: 1.8247155257737908e-10 - syst_JES_EtaIntercalibration_Stat79: 1.321402451942632e-25 + syst_JES_EtaIntercalibration_Stat74: 1.06268527e-24 + syst_JES_EtaIntercalibration_Stat75: 2.50873698e-15 + syst_JES_EtaIntercalibration_Stat76: 1.46444896e-14 + syst_JES_EtaIntercalibration_Stat77: 4.70666634e-10 + syst_JES_EtaIntercalibration_Stat78: 1.82471553e-10 + syst_JES_EtaIntercalibration_Stat79: 1.32140245e-25 syst_JES_EtaIntercalibration_Stat8: 0.0 syst_JES_EtaIntercalibration_Stat80: 0.0 syst_JES_EtaIntercalibration_Stat81: 0.0 - syst_JES_EtaIntercalibration_Stat82: 3.633842594279504e-27 - syst_JES_EtaIntercalibration_Stat83: 3.633842594279504e-27 - syst_JES_EtaIntercalibration_Stat84: 3.633842594279504e-27 + syst_JES_EtaIntercalibration_Stat82: 3.63384259e-27 + syst_JES_EtaIntercalibration_Stat83: 3.63384259e-27 + syst_JES_EtaIntercalibration_Stat84: 3.63384259e-27 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 2.895988950255163e-26 - syst_JES_EtaIntercalibration_Stat9: 9.615292146887686e-25 - syst_JES_EtaIntercalibration_Stat90: 2.895988950255163e-26 - syst_JES_EtaIntercalibration_Stat91: 3.686670143910355e-26 - syst_JES_EtaIntercalibration_Stat92: 3.686670143910355e-26 + syst_JES_EtaIntercalibration_Stat89: 2.89598895e-26 + syst_JES_EtaIntercalibration_Stat9: 9.61529215e-25 + syst_JES_EtaIntercalibration_Stat90: 2.89598895e-26 + syst_JES_EtaIntercalibration_Stat91: 3.68667014e-26 + syst_JES_EtaIntercalibration_Stat92: 3.68667014e-26 syst_JES_EtaIntercalibration_Stat93: 0.0 syst_JES_EtaIntercalibration_Stat94: 0.0 - syst_JES_EtaIntercalibration_Stat95: 1.0811039370476828e-24 - syst_JES_EtaIntercalibration_Stat96: 2.9289357124218345e-14 - syst_JES_EtaIntercalibration_Stat97: 1.5300009697709345e-13 - syst_JES_EtaIntercalibration_Stat98: 1.7736586706579144e-10 - syst_JES_EtaIntercalibration_Stat99: 1.0064929090420855e-20 - syst_JES_EtaIntercalibration_TotalStat_MJB: 3.055513827492849e-06 - syst_JES_Flavour_Comp: 8.490925553200899e-07 - syst_JES_Gjet_Generator: 4.507757535626778e-06 - syst_JES_Gjet_OOC: 3.8253976263912745e-06 - syst_JES_Gjet_Purity: 3.1171551132402765e-07 - syst_JES_Gjet_Stat1: 1.768725741883122e-08 - syst_JES_Gjet_Stat10: 3.261478920673871e-07 - syst_JES_Gjet_Stat11: 3.190284156623043e-07 - syst_JES_Gjet_Stat12: 1.0282289822797253e-07 - syst_JES_Gjet_Stat13: 1.3009371881455308e-06 - syst_JES_Gjet_Stat14: 4.141628061523632e-06 - syst_JES_Gjet_Stat15: 6.272907679059209e-06 - syst_JES_Gjet_Stat2: 1.9023203594557886e-08 - syst_JES_Gjet_Stat3: 2.2866247505876426e-08 - syst_JES_Gjet_Stat4: 1.2851013296623733e-07 - syst_JES_Gjet_Stat5: 1.2391339394916111e-07 - syst_JES_Gjet_Stat6: 6.925530809981281e-08 - syst_JES_Gjet_Stat7: 1.2822243836396187e-07 - syst_JES_Gjet_Stat8: 1.7963162305117658e-08 - syst_JES_Gjet_Stat9: 1.2820343950144237e-07 - syst_JES_Gjet_Veto: 4.69986880136031e-06 - syst_JES_Gjet_dPhi: 6.437665570686318e-08 - syst_JES_LArESZee: 5.170799817242977e-06 - syst_JES_LArEsmear: 5.62344458494969e-07 - syst_JES_LAr_JVT: 7.475824419420243e-07 - syst_JES_MJB_Alpha: 1.0122317817575182e-07 - syst_JES_MJB_Asym: 4.531965881380839e-06 - syst_JES_MJB_Beta: 3.5234771178482204e-07 - syst_JES_MJB_Stat1: 2.0134688929990948e-17 - syst_JES_MJB_Stat10: 6.508515498944441e-09 - syst_JES_MJB_Stat11: 8.520422524734322e-09 - syst_JES_MJB_Stat12: 1.8910338442238414e-08 - syst_JES_MJB_Stat13: 3.65331000600825e-08 - syst_JES_MJB_Stat14: 1.2968441569826343e-06 - syst_JES_MJB_Stat15: 2.8935146016566088e-06 - syst_JES_MJB_Stat16: 3.815675127680553e-06 - syst_JES_MJB_Stat2: 1.3847741841750644e-11 - syst_JES_MJB_Stat3: 1.1467914282902537e-09 - syst_JES_MJB_Stat4: 6.270868420721328e-10 - syst_JES_MJB_Stat5: 6.953902945589261e-10 - syst_JES_MJB_Stat6: 1.1535248881146867e-09 - syst_JES_MJB_Stat7: 1.8918919597852306e-09 - syst_JES_MJB_Stat8: 2.1842534193632386e-09 - syst_JES_MJB_Stat9: 4.163291249720587e-09 - syst_JES_MJB_Threshold: 6.440068477896801e-07 - syst_JES_Pileup_MuOffset: 1.9820005045408034e-06 - syst_JES_Pileup_NPVOffset: 1.2400613049361713e-06 - syst_JES_Pileup_Pt_term: 3.273547731437561e-07 - syst_JES_PunchThrough_MC15: 5.287419786625609e-06 - syst_JES_SingleParticle_HighPt: 1.1205079919393701e-06 - syst_JES_Zjet_MC: 1.7050023460394417e-06 - syst_JES_Zjet_MuScale: 2.3257611119803337e-07 - syst_JES_Zjet_MuSmearID: 6.5165847458619e-09 - syst_JES_Zjet_MuSmearMS: 2.045678616009856e-07 - syst_JES_Zjet_OOC: 9.467504145760909e-07 - syst_JES_Zjet_Stat1: 2.3035977839023893e-07 - syst_JES_Zjet_Stat10: 1.4661151276417552e-07 - syst_JES_Zjet_Stat11: 9.196489153475906e-08 - syst_JES_Zjet_Stat12: 1.448602494647859e-07 - syst_JES_Zjet_Stat13: 3.761095983885548e-07 - syst_JES_Zjet_Stat2: 1.2973121010381427e-09 - syst_JES_Zjet_Stat3: 2.5387735227861505e-08 - syst_JES_Zjet_Stat4: 6.291862124999244e-08 - syst_JES_Zjet_Stat5: 3.740377253700488e-08 - syst_JES_Zjet_Stat6: 1.2438248942274793e-07 - syst_JES_Zjet_Stat7: 8.015680008583176e-08 - syst_JES_Zjet_Stat8: 3.612103403835499e-08 - syst_JES_Zjet_Stat9: 1.2467215918159115e-07 - syst_JES_Zjet_Veto: 1.7672263578840147e-07 - syst_JES_Zjet_dPhi: 1.6974295272558446e-07 - syst_PRW: 5.358e-08 + syst_JES_EtaIntercalibration_Stat95: 1.08110394e-24 + syst_JES_EtaIntercalibration_Stat96: 2.92893571e-14 + syst_JES_EtaIntercalibration_Stat97: 1.53000097e-13 + syst_JES_EtaIntercalibration_Stat98: 1.77365867e-10 + syst_JES_EtaIntercalibration_Stat99: 1.00649291e-20 + syst_JES_EtaIntercalibration_TotalStat_MJB: 3.05551383e-06 + syst_JES_Flavour_Comp: 8.49092555e-07 + syst_JES_Gjet_Generator: 4.50775754e-06 + syst_JES_Gjet_OOC: 3.82539763e-06 + syst_JES_Gjet_Purity: 3.11715511e-07 + syst_JES_Gjet_Stat1: 1.76872574e-08 + syst_JES_Gjet_Stat10: 3.26147892e-07 + syst_JES_Gjet_Stat11: 3.19028416e-07 + syst_JES_Gjet_Stat12: 1.02822898e-07 + syst_JES_Gjet_Stat13: 1.30093719e-06 + syst_JES_Gjet_Stat14: 4.14162806e-06 + syst_JES_Gjet_Stat15: 6.27290768e-06 + syst_JES_Gjet_Stat2: 1.90232036e-08 + syst_JES_Gjet_Stat3: 2.28662475e-08 + syst_JES_Gjet_Stat4: 1.28510133e-07 + syst_JES_Gjet_Stat5: 1.23913394e-07 + syst_JES_Gjet_Stat6: 6.92553081e-08 + syst_JES_Gjet_Stat7: 1.28222438e-07 + syst_JES_Gjet_Stat8: 1.79631623e-08 + syst_JES_Gjet_Stat9: 1.28203440e-07 + syst_JES_Gjet_Veto: 4.69986880e-06 + syst_JES_Gjet_dPhi: 6.43766557e-08 + syst_JES_LArESZee: 5.17079982e-06 + syst_JES_LArEsmear: 5.62344458e-07 + syst_JES_LAr_JVT: 7.47582442e-07 + syst_JES_MJB_Alpha: 1.01223178e-07 + syst_JES_MJB_Asym: 4.53196588e-06 + syst_JES_MJB_Beta: 3.52347712e-07 + syst_JES_MJB_Stat1: 2.01346889e-17 + syst_JES_MJB_Stat10: 6.50851550e-09 + syst_JES_MJB_Stat11: 8.52042252e-09 + syst_JES_MJB_Stat12: 1.89103384e-08 + syst_JES_MJB_Stat13: 3.65331001e-08 + syst_JES_MJB_Stat14: 1.29684416e-06 + syst_JES_MJB_Stat15: 2.89351460e-06 + syst_JES_MJB_Stat16: 3.81567513e-06 + syst_JES_MJB_Stat2: 1.38477418e-11 + syst_JES_MJB_Stat3: 1.14679143e-09 + syst_JES_MJB_Stat4: 6.27086842e-10 + syst_JES_MJB_Stat5: 6.95390295e-10 + syst_JES_MJB_Stat6: 1.15352489e-09 + syst_JES_MJB_Stat7: 1.89189196e-09 + syst_JES_MJB_Stat8: 2.18425342e-09 + syst_JES_MJB_Stat9: 4.16329125e-09 + syst_JES_MJB_Threshold: 6.44006848e-07 + syst_JES_Pileup_MuOffset: 1.98200050e-06 + syst_JES_Pileup_NPVOffset: 1.24006130e-06 + syst_JES_Pileup_Pt_term: 3.27354773e-07 + syst_JES_PunchThrough_MC15: 5.28741979e-06 + syst_JES_SingleParticle_HighPt: 1.12050799e-06 + syst_JES_Zjet_MC: 1.70500235e-06 + syst_JES_Zjet_MuScale: 2.32576111e-07 + syst_JES_Zjet_MuSmearID: 6.51658475e-09 + syst_JES_Zjet_MuSmearMS: 2.04567862e-07 + syst_JES_Zjet_OOC: 9.46750415e-07 + syst_JES_Zjet_Stat1: 2.30359778e-07 + syst_JES_Zjet_Stat10: 1.46611513e-07 + syst_JES_Zjet_Stat11: 9.19648915e-08 + syst_JES_Zjet_Stat12: 1.44860249e-07 + syst_JES_Zjet_Stat13: 3.76109598e-07 + syst_JES_Zjet_Stat2: 1.29731210e-09 + syst_JES_Zjet_Stat3: 2.53877352e-08 + syst_JES_Zjet_Stat4: 6.29186212e-08 + syst_JES_Zjet_Stat5: 3.74037725e-08 + syst_JES_Zjet_Stat6: 1.24382489e-07 + syst_JES_Zjet_Stat7: 8.01568001e-08 + syst_JES_Zjet_Stat8: 3.61210340e-08 + syst_JES_Zjet_Stat9: 1.24672159e-07 + syst_JES_Zjet_Veto: 1.76722636e-07 + syst_JES_Zjet_dPhi: 1.69742953e-07 + syst_PRW: 5.35800000e-08 syst_Unfolding_bias: 8.52e-09 - syst_cleaning: 4.3006821551935224e-07 - syst_lumi: 1.961e-06 - syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 2.4087915538709446e-07 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 5.124015807938145e-07 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 2.1635139819284737e-07 + syst_cleaning: 4.30068216e-07 + syst_lumi: 1.96100000e-06 + syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 2.40879155e-07 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 5.12401581e-07 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 2.16351398e-07 syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 2.5875163284508953e-06 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 9.41863741472194e-07 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.952506273997602e-06 -- stat: 9.8643e-07 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 2.58751633e-06 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 9.41863741e-07 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.95250627e-06 +- stat: 9.86430000e-07 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 1.9656415619334057e-08 - syst_JER_NP1: 5.714977230925771e-09 - syst_JER_NP2: 1.6628537969406693e-08 - syst_JER_NP3: 3.375513997897209e-09 - syst_JER_NP4: 5.470701600343414e-09 - syst_JER_NP5: 8.199961097468695e-09 - syst_JER_NP6: 7.76564800902024e-09 - syst_JER_NP7: 7.463910821412592e-09 - syst_JER_NP8: 4.9793068794762995e-09 - syst_JES_EtaIntercalibration_Modelling: 5.913824545080789e-08 + syst_JER_NP0: 1.96564156e-08 + syst_JER_NP1: 5.71497723e-09 + syst_JER_NP2: 1.66285380e-08 + syst_JER_NP3: 3.37551400e-09 + syst_JER_NP4: 5.47070160e-09 + syst_JER_NP5: 8.19996110e-09 + syst_JER_NP6: 7.76564801e-09 + syst_JER_NP7: 7.46391082e-09 + syst_JER_NP8: 4.97930688e-09 + syst_JES_EtaIntercalibration_Modelling: 5.91382455e-08 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 @@ -12346,10 +12346,10 @@ bins: syst_JES_EtaIntercalibration_Stat113: 0.0 syst_JES_EtaIntercalibration_Stat114: 0.0 syst_JES_EtaIntercalibration_Stat115: 0.0 - syst_JES_EtaIntercalibration_Stat116: 6.209402125003663e-12 - syst_JES_EtaIntercalibration_Stat117: 8.135174675444897e-12 - syst_JES_EtaIntercalibration_Stat118: 5.332543389415598e-12 - syst_JES_EtaIntercalibration_Stat119: 3.407376951189874e-12 + syst_JES_EtaIntercalibration_Stat116: 6.20940213e-12 + syst_JES_EtaIntercalibration_Stat117: 8.13517468e-12 + syst_JES_EtaIntercalibration_Stat118: 5.33254339e-12 + syst_JES_EtaIntercalibration_Stat119: 3.40737695e-12 syst_JES_EtaIntercalibration_Stat12: 0.0 syst_JES_EtaIntercalibration_Stat120: 0.0 syst_JES_EtaIntercalibration_Stat121: 0.0 @@ -12367,10 +12367,10 @@ bins: syst_JES_EtaIntercalibration_Stat132: 0.0 syst_JES_EtaIntercalibration_Stat133: 0.0 syst_JES_EtaIntercalibration_Stat134: 0.0 - syst_JES_EtaIntercalibration_Stat135: 1.3742978134305532e-11 - syst_JES_EtaIntercalibration_Stat136: 4.175567318341305e-11 - syst_JES_EtaIntercalibration_Stat137: 2.5460769823396933e-11 - syst_JES_EtaIntercalibration_Stat138: 1.8775555251443298e-11 + syst_JES_EtaIntercalibration_Stat135: 1.37429781e-11 + syst_JES_EtaIntercalibration_Stat136: 4.17556732e-11 + syst_JES_EtaIntercalibration_Stat137: 2.54607698e-11 + syst_JES_EtaIntercalibration_Stat138: 1.87755553e-11 syst_JES_EtaIntercalibration_Stat139: 0.0 syst_JES_EtaIntercalibration_Stat14: 0.0 syst_JES_EtaIntercalibration_Stat140: 0.0 @@ -12387,10 +12387,10 @@ bins: syst_JES_EtaIntercalibration_Stat150: 0.0 syst_JES_EtaIntercalibration_Stat151: 0.0 syst_JES_EtaIntercalibration_Stat152: 0.0 - syst_JES_EtaIntercalibration_Stat153: 2.4778371112726517e-11 - syst_JES_EtaIntercalibration_Stat154: 5.035361746687124e-11 - syst_JES_EtaIntercalibration_Stat155: 2.6418540364675712e-11 - syst_JES_EtaIntercalibration_Stat156: 1.989434844371637e-11 + syst_JES_EtaIntercalibration_Stat153: 2.47783711e-11 + syst_JES_EtaIntercalibration_Stat154: 5.03536175e-11 + syst_JES_EtaIntercalibration_Stat155: 2.64185404e-11 + syst_JES_EtaIntercalibration_Stat156: 1.98943484e-11 syst_JES_EtaIntercalibration_Stat157: 0.0 syst_JES_EtaIntercalibration_Stat158: 0.0 syst_JES_EtaIntercalibration_Stat159: 0.0 @@ -12407,10 +12407,10 @@ bins: syst_JES_EtaIntercalibration_Stat169: 0.0 syst_JES_EtaIntercalibration_Stat17: 0.0 syst_JES_EtaIntercalibration_Stat170: 0.0 - syst_JES_EtaIntercalibration_Stat171: 7.64428590517126e-11 - syst_JES_EtaIntercalibration_Stat172: 1.1883757602290615e-10 - syst_JES_EtaIntercalibration_Stat173: 1.045536191386984e-10 - syst_JES_EtaIntercalibration_Stat174: 6.038576053176775e-11 + syst_JES_EtaIntercalibration_Stat171: 7.64428591e-11 + syst_JES_EtaIntercalibration_Stat172: 1.18837576e-10 + syst_JES_EtaIntercalibration_Stat173: 1.04553619e-10 + syst_JES_EtaIntercalibration_Stat174: 6.03857605e-11 syst_JES_EtaIntercalibration_Stat175: 0.0 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 @@ -12424,12 +12424,12 @@ bins: syst_JES_EtaIntercalibration_Stat184: 0.0 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 - syst_JES_EtaIntercalibration_Stat187: 7.807219015116715e-12 - syst_JES_EtaIntercalibration_Stat188: 3.3455425195325194e-10 - syst_JES_EtaIntercalibration_Stat189: 5.307232117591995e-10 + syst_JES_EtaIntercalibration_Stat187: 7.80721902e-12 + syst_JES_EtaIntercalibration_Stat188: 3.34554252e-10 + syst_JES_EtaIntercalibration_Stat189: 5.30723212e-10 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 5.462427482356174e-10 - syst_JES_EtaIntercalibration_Stat191: 3.4870347001428023e-10 + syst_JES_EtaIntercalibration_Stat190: 5.46242748e-10 + syst_JES_EtaIntercalibration_Stat191: 3.48703470e-10 syst_JES_EtaIntercalibration_Stat192: 0.0 syst_JES_EtaIntercalibration_Stat193: 0.0 syst_JES_EtaIntercalibration_Stat194: 0.0 @@ -12442,12 +12442,12 @@ bins: syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 syst_JES_EtaIntercalibration_Stat201: 0.0 - syst_JES_EtaIntercalibration_Stat202: 1.57314159566137e-11 - syst_JES_EtaIntercalibration_Stat203: 7.44867256630334e-10 - syst_JES_EtaIntercalibration_Stat204: 1.1707137224787278e-09 - syst_JES_EtaIntercalibration_Stat205: 1.1019546848668506e-09 - syst_JES_EtaIntercalibration_Stat206: 8.304955914994373e-10 - syst_JES_EtaIntercalibration_Stat207: 1.0043660836567513e-11 + syst_JES_EtaIntercalibration_Stat202: 1.57314160e-11 + syst_JES_EtaIntercalibration_Stat203: 7.44867257e-10 + syst_JES_EtaIntercalibration_Stat204: 1.17071372e-09 + syst_JES_EtaIntercalibration_Stat205: 1.10195468e-09 + syst_JES_EtaIntercalibration_Stat206: 8.30495591e-10 + syst_JES_EtaIntercalibration_Stat207: 1.00436608e-11 syst_JES_EtaIntercalibration_Stat208: 0.0 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 @@ -12456,38 +12456,38 @@ bins: syst_JES_EtaIntercalibration_Stat212: 0.0 syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 - syst_JES_EtaIntercalibration_Stat215: 1.6135728431031553e-11 - syst_JES_EtaIntercalibration_Stat216: 9.446579698494053e-10 - syst_JES_EtaIntercalibration_Stat217: 1.2281816345720204e-09 - syst_JES_EtaIntercalibration_Stat218: 1.323851660874435e-09 - syst_JES_EtaIntercalibration_Stat219: 9.72152646192973e-10 + syst_JES_EtaIntercalibration_Stat215: 1.61357284e-11 + syst_JES_EtaIntercalibration_Stat216: 9.44657970e-10 + syst_JES_EtaIntercalibration_Stat217: 1.22818163e-09 + syst_JES_EtaIntercalibration_Stat218: 1.32385166e-09 + syst_JES_EtaIntercalibration_Stat219: 9.72152646e-10 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 1.10737194632156e-11 + syst_JES_EtaIntercalibration_Stat220: 1.10737195e-11 syst_JES_EtaIntercalibration_Stat221: 0.0 syst_JES_EtaIntercalibration_Stat222: 0.0 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 - syst_JES_EtaIntercalibration_Stat227: 4.526542250990263e-11 - syst_JES_EtaIntercalibration_Stat228: 2.3685085496995784e-09 - syst_JES_EtaIntercalibration_Stat229: 3.860436971056515e-09 + syst_JES_EtaIntercalibration_Stat227: 4.52654225e-11 + syst_JES_EtaIntercalibration_Stat228: 2.36850855e-09 + syst_JES_EtaIntercalibration_Stat229: 3.86043697e-09 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 4.023720013867764e-09 - syst_JES_EtaIntercalibration_Stat231: 3.23815178767148e-09 - syst_JES_EtaIntercalibration_Stat232: 3.85241103077021e-11 + syst_JES_EtaIntercalibration_Stat230: 4.02372001e-09 + syst_JES_EtaIntercalibration_Stat231: 3.23815179e-09 + syst_JES_EtaIntercalibration_Stat232: 3.85241103e-11 syst_JES_EtaIntercalibration_Stat233: 0.0 syst_JES_EtaIntercalibration_Stat234: 0.0 syst_JES_EtaIntercalibration_Stat235: 0.0 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 - syst_JES_EtaIntercalibration_Stat238: 8.73877939302738e-12 - syst_JES_EtaIntercalibration_Stat239: 3.4885485520485454e-10 + syst_JES_EtaIntercalibration_Stat238: 8.73877939e-12 + syst_JES_EtaIntercalibration_Stat239: 3.48854855e-10 syst_JES_EtaIntercalibration_Stat24: 0.0 - syst_JES_EtaIntercalibration_Stat240: 5.064976283261354e-10 - syst_JES_EtaIntercalibration_Stat241: 5.290826116968881e-10 - syst_JES_EtaIntercalibration_Stat242: 3.0565007361360145e-10 - syst_JES_EtaIntercalibration_Stat243: 7.111800615877809e-12 + syst_JES_EtaIntercalibration_Stat240: 5.06497628e-10 + syst_JES_EtaIntercalibration_Stat241: 5.29082612e-10 + syst_JES_EtaIntercalibration_Stat242: 3.05650074e-10 + syst_JES_EtaIntercalibration_Stat243: 7.11180062e-12 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 syst_JES_EtaIntercalibration_Stat25: 0.0 @@ -12547,7 +12547,7 @@ bins: syst_JES_EtaIntercalibration_Stat74: 0.0 syst_JES_EtaIntercalibration_Stat75: 0.0 syst_JES_EtaIntercalibration_Stat76: 0.0 - syst_JES_EtaIntercalibration_Stat77: 2.9332280426178938e-12 + syst_JES_EtaIntercalibration_Stat77: 2.93322804e-12 syst_JES_EtaIntercalibration_Stat78: 0.0 syst_JES_EtaIntercalibration_Stat79: 0.0 syst_JES_EtaIntercalibration_Stat8: 0.0 @@ -12570,172 +12570,172 @@ bins: syst_JES_EtaIntercalibration_Stat95: 0.0 syst_JES_EtaIntercalibration_Stat96: 0.0 syst_JES_EtaIntercalibration_Stat97: 0.0 - syst_JES_EtaIntercalibration_Stat98: 3.032820964053104e-12 + syst_JES_EtaIntercalibration_Stat98: 3.03282096e-12 syst_JES_EtaIntercalibration_Stat99: 0.0 - syst_JES_EtaIntercalibration_TotalStat_MJB: 1.1792757215765954e-07 - syst_JES_Flavour_Comp: 2.840059506418836e-08 - syst_JES_Gjet_Generator: 1.713430696001446e-07 - syst_JES_Gjet_OOC: 1.450553146216987e-07 - syst_JES_Gjet_Purity: 1.3034500172618818e-08 - syst_JES_Gjet_Stat1: 6.197917230812299e-10 - syst_JES_Gjet_Stat10: 1.2886508555462182e-08 - syst_JES_Gjet_Stat11: 1.23815126196277e-08 - syst_JES_Gjet_Stat12: 3.8484239475400826e-09 - syst_JES_Gjet_Stat13: 4.922453326340433e-08 - syst_JES_Gjet_Stat14: 1.595761260339403e-07 - syst_JES_Gjet_Stat15: 2.4169207682503783e-07 - syst_JES_Gjet_Stat2: 6.406663015954561e-10 - syst_JES_Gjet_Stat3: 8.233792989868036e-10 - syst_JES_Gjet_Stat4: 4.8036451523816786e-09 - syst_JES_Gjet_Stat5: 4.473134555320239e-09 - syst_JES_Gjet_Stat6: 2.639318662079287e-09 - syst_JES_Gjet_Stat7: 4.7270107626279e-09 - syst_JES_Gjet_Stat8: 6.120157738980263e-10 - syst_JES_Gjet_Stat9: 4.727492781591528e-09 - syst_JES_Gjet_Veto: 1.7936791100974555e-07 - syst_JES_Gjet_dPhi: 2.238837812348183e-09 - syst_JES_LArESZee: 1.9472762387499107e-07 - syst_JES_LArEsmear: 2.087502994009829e-08 - syst_JES_LAr_JVT: 2.792035816389181e-08 - syst_JES_MJB_Alpha: 3.747096342503086e-09 - syst_JES_MJB_Asym: 1.7500582847436824e-07 - syst_JES_MJB_Beta: 1.3868612502698313e-08 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.17927572e-07 + syst_JES_Flavour_Comp: 2.84005951e-08 + syst_JES_Gjet_Generator: 1.71343070e-07 + syst_JES_Gjet_OOC: 1.45055315e-07 + syst_JES_Gjet_Purity: 1.30345002e-08 + syst_JES_Gjet_Stat1: 6.19791723e-10 + syst_JES_Gjet_Stat10: 1.28865086e-08 + syst_JES_Gjet_Stat11: 1.23815126e-08 + syst_JES_Gjet_Stat12: 3.84842395e-09 + syst_JES_Gjet_Stat13: 4.92245333e-08 + syst_JES_Gjet_Stat14: 1.59576126e-07 + syst_JES_Gjet_Stat15: 2.41692077e-07 + syst_JES_Gjet_Stat2: 6.40666302e-10 + syst_JES_Gjet_Stat3: 8.23379299e-10 + syst_JES_Gjet_Stat4: 4.80364515e-09 + syst_JES_Gjet_Stat5: 4.47313456e-09 + syst_JES_Gjet_Stat6: 2.63931866e-09 + syst_JES_Gjet_Stat7: 4.72701076e-09 + syst_JES_Gjet_Stat8: 6.12015774e-10 + syst_JES_Gjet_Stat9: 4.72749278e-09 + syst_JES_Gjet_Veto: 1.79367911e-07 + syst_JES_Gjet_dPhi: 2.23883781e-09 + syst_JES_LArESZee: 1.94727624e-07 + syst_JES_LArEsmear: 2.08750299e-08 + syst_JES_LAr_JVT: 2.79203582e-08 + syst_JES_MJB_Alpha: 3.74709634e-09 + syst_JES_MJB_Asym: 1.75005828e-07 + syst_JES_MJB_Beta: 1.38686125e-08 syst_JES_MJB_Stat1: 0.0 - syst_JES_MJB_Stat10: 1.9447305725986825e-10 - syst_JES_MJB_Stat11: 3.118834397655637e-10 - syst_JES_MJB_Stat12: 6.619576478144202e-10 - syst_JES_MJB_Stat13: 1.2924311432335573e-09 - syst_JES_MJB_Stat14: 4.9950379377938655e-08 - syst_JES_MJB_Stat15: 1.1410774907954324e-07 - syst_JES_MJB_Stat16: 1.477028351115848e-07 + syst_JES_MJB_Stat10: 1.94473057e-10 + syst_JES_MJB_Stat11: 3.11883440e-10 + syst_JES_MJB_Stat12: 6.61957648e-10 + syst_JES_MJB_Stat13: 1.29243114e-09 + syst_JES_MJB_Stat14: 4.99503794e-08 + syst_JES_MJB_Stat15: 1.14107749e-07 + syst_JES_MJB_Stat16: 1.47702835e-07 syst_JES_MJB_Stat2: 0.0 - syst_JES_MJB_Stat3: 2.320082056738511e-11 - syst_JES_MJB_Stat4: 2.4728625113418662e-11 - syst_JES_MJB_Stat5: 2.320082056738511e-11 - syst_JES_MJB_Stat6: 2.4090597750989904e-11 - syst_JES_MJB_Stat7: 5.046645024172e-11 - syst_JES_MJB_Stat8: 4.9769231458803936e-11 - syst_JES_MJB_Stat9: 1.0133967189605461e-10 - syst_JES_MJB_Threshold: 2.3765304016570038e-08 - syst_JES_Pileup_MuOffset: 7.572442934747015e-08 - syst_JES_Pileup_NPVOffset: 4.6076806529966897e-08 - syst_JES_Pileup_Pt_term: 1.1201065083285606e-08 - syst_JES_PunchThrough_MC15: 2.66859077979371e-07 - syst_JES_SingleParticle_HighPt: 5.781589465709236e-07 - syst_JES_Zjet_MC: 6.39956279756672e-08 - syst_JES_Zjet_MuScale: 8.847007234087695e-09 - syst_JES_Zjet_MuSmearID: 2.2530039946702268e-10 - syst_JES_Zjet_MuSmearMS: 7.620133906303748e-09 - syst_JES_Zjet_OOC: 3.5313876875811866e-08 - syst_JES_Zjet_Stat1: 8.749500714326504e-09 - syst_JES_Zjet_Stat10: 5.5865152823562566e-09 - syst_JES_Zjet_Stat11: 3.3698134592288634e-09 - syst_JES_Zjet_Stat12: 5.4609670160146545e-09 - syst_JES_Zjet_Stat13: 1.4610006844625364e-08 - syst_JES_Zjet_Stat2: 5.1240037812242097e-11 - syst_JES_Zjet_Stat3: 8.647861166207515e-10 - syst_JES_Zjet_Stat4: 2.3238495540804702e-09 - syst_JES_Zjet_Stat5: 1.3353064095929444e-09 - syst_JES_Zjet_Stat6: 4.5429623320032044e-09 - syst_JES_Zjet_Stat7: 3.004532575959196e-09 - syst_JES_Zjet_Stat8: 1.262020280146084e-09 - syst_JES_Zjet_Stat9: 4.544479838221312e-09 - syst_JES_Zjet_Veto: 6.5766825983925975e-09 - syst_JES_Zjet_dPhi: 6.310798840083559e-09 + syst_JES_MJB_Stat3: 2.32008206e-11 + syst_JES_MJB_Stat4: 2.47286251e-11 + syst_JES_MJB_Stat5: 2.32008206e-11 + syst_JES_MJB_Stat6: 2.40905978e-11 + syst_JES_MJB_Stat7: 5.04664502e-11 + syst_JES_MJB_Stat8: 4.97692315e-11 + syst_JES_MJB_Stat9: 1.01339672e-10 + syst_JES_MJB_Threshold: 2.37653040e-08 + syst_JES_Pileup_MuOffset: 7.57244293e-08 + syst_JES_Pileup_NPVOffset: 4.60768065e-08 + syst_JES_Pileup_Pt_term: 1.12010651e-08 + syst_JES_PunchThrough_MC15: 2.66859078e-07 + syst_JES_SingleParticle_HighPt: 5.78158947e-07 + syst_JES_Zjet_MC: 6.39956280e-08 + syst_JES_Zjet_MuScale: 8.84700723e-09 + syst_JES_Zjet_MuSmearID: 2.25300399e-10 + syst_JES_Zjet_MuSmearMS: 7.62013391e-09 + syst_JES_Zjet_OOC: 3.53138769e-08 + syst_JES_Zjet_Stat1: 8.74950071e-09 + syst_JES_Zjet_Stat10: 5.58651528e-09 + syst_JES_Zjet_Stat11: 3.36981346e-09 + syst_JES_Zjet_Stat12: 5.46096702e-09 + syst_JES_Zjet_Stat13: 1.46100068e-08 + syst_JES_Zjet_Stat2: 5.12400378e-11 + syst_JES_Zjet_Stat3: 8.64786117e-10 + syst_JES_Zjet_Stat4: 2.32384955e-09 + syst_JES_Zjet_Stat5: 1.33530641e-09 + syst_JES_Zjet_Stat6: 4.54296233e-09 + syst_JES_Zjet_Stat7: 3.00453258e-09 + syst_JES_Zjet_Stat8: 1.26202028e-09 + syst_JES_Zjet_Stat9: 4.54447984e-09 + syst_JES_Zjet_Veto: 6.57668260e-09 + syst_JES_Zjet_dPhi: 6.31079884e-09 syst_PRW: 0.0 syst_Unfolding_bias: 7.32e-09 - syst_cleaning: 1.2721913181593403e-08 - syst_lumi: 5.736e-08 + syst_cleaning: 1.27219132e-08 + syst_lumi: 5.73600000e-08 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 9.49257441371939e-09 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 9.49257441e-09 syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 1.1351663974942175e-07 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 3.701965255104375e-08 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 7.63404956428762e-08 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 1.13516640e-07 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 3.70196526e-08 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 7.63404956e-08 - stat: 76.5 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 199.32703078107593 - syst_JER_NP1: 23.490632175401327 - syst_JER_NP2: 42.60098725088422 - syst_JER_NP3: 8.822007254587813 - syst_JER_NP4: 29.306359378128153 - syst_JER_NP5: 19.981323154385947 + syst_JER_NP0: 1.99327031e+02 + syst_JER_NP1: 2.34906322e+01 + syst_JER_NP2: 4.26009873e+01 + syst_JER_NP3: 8.82200725e+00 + syst_JER_NP4: 2.93063594e+01 + syst_JER_NP5: 1.99813232e+01 syst_JER_NP6: 0.0 - syst_JER_NP7: 6.825310450814673 - syst_JER_NP8: 24.334096962903722 - syst_JES_EtaIntercalibration_Modelling: 108.92166627788063 - syst_JES_EtaIntercalibration_NonClosure: 2.3703115301580086e-08 + syst_JER_NP7: 6.82531045e+00 + syst_JER_NP8: 2.43340970e+01 + syst_JES_EtaIntercalibration_Modelling: 1.08921666e+02 + syst_JES_EtaIntercalibration_NonClosure: 2.37031153e-08 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 21.560783844749245 - syst_JES_EtaIntercalibration_Stat101: 2.0210800948997543 - syst_JES_EtaIntercalibration_Stat102: 0.03732272835686052 - syst_JES_EtaIntercalibration_Stat103: 0.313934208871859 - syst_JES_EtaIntercalibration_Stat104: 0.313934208871859 - syst_JES_EtaIntercalibration_Stat105: 0.313934208871859 + syst_JES_EtaIntercalibration_Stat100: 2.15607838e+01 + syst_JES_EtaIntercalibration_Stat101: 2.02108009e+00 + syst_JES_EtaIntercalibration_Stat102: 3.73227284e-02 + syst_JES_EtaIntercalibration_Stat103: 3.13934209e-01 + syst_JES_EtaIntercalibration_Stat104: 3.13934209e-01 + syst_JES_EtaIntercalibration_Stat105: 3.13934209e-01 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 9.185931457941541e-22 - syst_JES_EtaIntercalibration_Stat111: 9.185931457941541e-22 + syst_JES_EtaIntercalibration_Stat110: 9.18593146e-22 + syst_JES_EtaIntercalibration_Stat111: 9.18593146e-22 syst_JES_EtaIntercalibration_Stat112: 0.0 - syst_JES_EtaIntercalibration_Stat113: 0.03362470966417405 - syst_JES_EtaIntercalibration_Stat114: 1.4467409469217356 - syst_JES_EtaIntercalibration_Stat115: 11.771370640244065 - syst_JES_EtaIntercalibration_Stat116: 4.838132361769364 - syst_JES_EtaIntercalibration_Stat117: 0.6248723851115522 - syst_JES_EtaIntercalibration_Stat118: 0.9982753978737531 - syst_JES_EtaIntercalibration_Stat119: 7.438132762999059 - syst_JES_EtaIntercalibration_Stat12: 0.42471343477102297 - syst_JES_EtaIntercalibration_Stat120: 7.314815018166898 - syst_JES_EtaIntercalibration_Stat121: 0.8644754421034758 - syst_JES_EtaIntercalibration_Stat122: 0.029324181011581553 - syst_JES_EtaIntercalibration_Stat123: 0.313934208871859 - syst_JES_EtaIntercalibration_Stat124: 0.313934208871859 - syst_JES_EtaIntercalibration_Stat125: 0.313934208871859 + syst_JES_EtaIntercalibration_Stat113: 3.36247097e-02 + syst_JES_EtaIntercalibration_Stat114: 1.44674095e+00 + syst_JES_EtaIntercalibration_Stat115: 1.17713706e+01 + syst_JES_EtaIntercalibration_Stat116: 4.83813236e+00 + syst_JES_EtaIntercalibration_Stat117: 6.24872385e-01 + syst_JES_EtaIntercalibration_Stat118: 9.98275398e-01 + syst_JES_EtaIntercalibration_Stat119: 7.43813276e+00 + syst_JES_EtaIntercalibration_Stat12: 4.24713435e-01 + syst_JES_EtaIntercalibration_Stat120: 7.31481502e+00 + syst_JES_EtaIntercalibration_Stat121: 8.64475442e-01 + syst_JES_EtaIntercalibration_Stat122: 2.93241810e-02 + syst_JES_EtaIntercalibration_Stat123: 3.13934209e-01 + syst_JES_EtaIntercalibration_Stat124: 3.13934209e-01 + syst_JES_EtaIntercalibration_Stat125: 3.13934209e-01 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 syst_JES_EtaIntercalibration_Stat128: 0.0 - syst_JES_EtaIntercalibration_Stat129: 9.185931457941541e-22 - syst_JES_EtaIntercalibration_Stat13: 0.22377146751764398 - syst_JES_EtaIntercalibration_Stat130: 9.185931457941541e-22 - syst_JES_EtaIntercalibration_Stat131: 0.0014713771610297612 - syst_JES_EtaIntercalibration_Stat132: 0.10795014161639621 - syst_JES_EtaIntercalibration_Stat133: 1.2791985928697702 - syst_JES_EtaIntercalibration_Stat134: 12.862318764515207 - syst_JES_EtaIntercalibration_Stat135: 9.06433531760603 - syst_JES_EtaIntercalibration_Stat136: 1.145105989635894 - syst_JES_EtaIntercalibration_Stat137: 0.7677996532299295 - syst_JES_EtaIntercalibration_Stat138: 8.644823928224334 - syst_JES_EtaIntercalibration_Stat139: 10.264065909765 - syst_JES_EtaIntercalibration_Stat14: 0.07870438869592979 - syst_JES_EtaIntercalibration_Stat140: 1.335313906914775 - syst_JES_EtaIntercalibration_Stat141: 0.015467213711590076 + syst_JES_EtaIntercalibration_Stat129: 9.18593146e-22 + syst_JES_EtaIntercalibration_Stat13: 2.23771468e-01 + syst_JES_EtaIntercalibration_Stat130: 9.18593146e-22 + syst_JES_EtaIntercalibration_Stat131: 1.47137716e-03 + syst_JES_EtaIntercalibration_Stat132: 1.07950142e-01 + syst_JES_EtaIntercalibration_Stat133: 1.27919859e+00 + syst_JES_EtaIntercalibration_Stat134: 1.28623188e+01 + syst_JES_EtaIntercalibration_Stat135: 9.06433532e+00 + syst_JES_EtaIntercalibration_Stat136: 1.14510599e+00 + syst_JES_EtaIntercalibration_Stat137: 7.67799653e-01 + syst_JES_EtaIntercalibration_Stat138: 8.64482393e+00 + syst_JES_EtaIntercalibration_Stat139: 1.02640659e+01 + syst_JES_EtaIntercalibration_Stat14: 7.87043887e-02 + syst_JES_EtaIntercalibration_Stat140: 1.33531391e+00 + syst_JES_EtaIntercalibration_Stat141: 1.54672137e-02 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 0.313934208871859 - syst_JES_EtaIntercalibration_Stat144: 0.313934208871859 + syst_JES_EtaIntercalibration_Stat143: 3.13934209e-01 + syst_JES_EtaIntercalibration_Stat144: 3.13934209e-01 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 9.185931457941541e-22 + syst_JES_EtaIntercalibration_Stat147: 9.18593146e-22 syst_JES_EtaIntercalibration_Stat148: 0.0 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 0.004226203970467982 - syst_JES_EtaIntercalibration_Stat151: 0.1858356873692456 - syst_JES_EtaIntercalibration_Stat152: 1.1125067134628897 - syst_JES_EtaIntercalibration_Stat153: 0.6678093590239658 - syst_JES_EtaIntercalibration_Stat154: 0.0916859733001728 - syst_JES_EtaIntercalibration_Stat155: 0.10304865392133951 - syst_JES_EtaIntercalibration_Stat156: 0.9951841877260711 - syst_JES_EtaIntercalibration_Stat157: 1.0340135625319429 - syst_JES_EtaIntercalibration_Stat158: 0.17926100189388658 - syst_JES_EtaIntercalibration_Stat159: 7.425301820604108e-08 + syst_JES_EtaIntercalibration_Stat150: 4.22620397e-03 + syst_JES_EtaIntercalibration_Stat151: 1.85835687e-01 + syst_JES_EtaIntercalibration_Stat152: 1.11250671e+00 + syst_JES_EtaIntercalibration_Stat153: 6.67809359e-01 + syst_JES_EtaIntercalibration_Stat154: 9.16859733e-02 + syst_JES_EtaIntercalibration_Stat155: 1.03048654e-01 + syst_JES_EtaIntercalibration_Stat156: 9.95184188e-01 + syst_JES_EtaIntercalibration_Stat157: 1.03401356e+00 + syst_JES_EtaIntercalibration_Stat158: 1.79261002e-01 + syst_JES_EtaIntercalibration_Stat159: 7.42530182e-08 syst_JES_EtaIntercalibration_Stat16: 0.0 syst_JES_EtaIntercalibration_Stat160: 0.0 syst_JES_EtaIntercalibration_Stat161: 0.0 @@ -12745,17 +12745,17 @@ bins: syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 - syst_JES_EtaIntercalibration_Stat168: 1.8056629668905546e-15 - syst_JES_EtaIntercalibration_Stat169: 0.0003509728301450128 + syst_JES_EtaIntercalibration_Stat168: 1.80566297e-15 + syst_JES_EtaIntercalibration_Stat169: 3.50972830e-04 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 0.06345770481194542 - syst_JES_EtaIntercalibration_Stat171: 0.015436537824266166 - syst_JES_EtaIntercalibration_Stat172: 0.00065961742510337 - syst_JES_EtaIntercalibration_Stat173: 0.0003531651596632941 - syst_JES_EtaIntercalibration_Stat174: 0.0018916073271162807 - syst_JES_EtaIntercalibration_Stat175: 0.021103689795862714 - syst_JES_EtaIntercalibration_Stat176: 0.000617016991257129 - syst_JES_EtaIntercalibration_Stat177: 1.2548654985511076e-11 + syst_JES_EtaIntercalibration_Stat170: 6.34577048e-02 + syst_JES_EtaIntercalibration_Stat171: 1.54365378e-02 + syst_JES_EtaIntercalibration_Stat172: 6.59617425e-04 + syst_JES_EtaIntercalibration_Stat173: 3.53165160e-04 + syst_JES_EtaIntercalibration_Stat174: 1.89160733e-03 + syst_JES_EtaIntercalibration_Stat175: 2.11036898e-02 + syst_JES_EtaIntercalibration_Stat176: 6.17016991e-04 + syst_JES_EtaIntercalibration_Stat177: 1.25486550e-11 syst_JES_EtaIntercalibration_Stat178: 0.0 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 @@ -12764,17 +12764,17 @@ bins: syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 syst_JES_EtaIntercalibration_Stat184: 0.0 - syst_JES_EtaIntercalibration_Stat185: 2.386766012829913e-22 - syst_JES_EtaIntercalibration_Stat186: 4.7146652055050524e-08 - syst_JES_EtaIntercalibration_Stat187: 0.0014603027186169313 - syst_JES_EtaIntercalibration_Stat188: 0.0011630624445832648 - syst_JES_EtaIntercalibration_Stat189: 1.134344148425424e-05 + syst_JES_EtaIntercalibration_Stat185: 2.38676601e-22 + syst_JES_EtaIntercalibration_Stat186: 4.71466521e-08 + syst_JES_EtaIntercalibration_Stat187: 1.46030272e-03 + syst_JES_EtaIntercalibration_Stat188: 1.16306244e-03 + syst_JES_EtaIntercalibration_Stat189: 1.13434415e-05 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 5.0545700113857367e-08 - syst_JES_EtaIntercalibration_Stat191: 0.0011205121184083642 - syst_JES_EtaIntercalibration_Stat192: 0.0012692779945701414 - syst_JES_EtaIntercalibration_Stat193: 1.1413348796475117e-05 - syst_JES_EtaIntercalibration_Stat194: 1.4298079416481084e-16 + syst_JES_EtaIntercalibration_Stat190: 5.05457001e-08 + syst_JES_EtaIntercalibration_Stat191: 1.12051212e-03 + syst_JES_EtaIntercalibration_Stat192: 1.26927799e-03 + syst_JES_EtaIntercalibration_Stat193: 1.14133488e-05 + syst_JES_EtaIntercalibration_Stat194: 1.42980794e-16 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 syst_JES_EtaIntercalibration_Stat197: 0.0 @@ -12783,29 +12783,29 @@ bins: syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 - syst_JES_EtaIntercalibration_Stat201: 5.313433292908851e-12 - syst_JES_EtaIntercalibration_Stat202: 6.929942333814907e-08 - syst_JES_EtaIntercalibration_Stat203: 5.674535641794843e-08 - syst_JES_EtaIntercalibration_Stat204: 7.052868396464723e-12 - syst_JES_EtaIntercalibration_Stat205: 1.202043260452801e-16 - syst_JES_EtaIntercalibration_Stat206: 5.657706315283606e-08 - syst_JES_EtaIntercalibration_Stat207: 5.3278750689181895e-08 - syst_JES_EtaIntercalibration_Stat208: 8.332030409810085e-22 - syst_JES_EtaIntercalibration_Stat209: 1.9165142185749628e-39 + syst_JES_EtaIntercalibration_Stat201: 5.31343329e-12 + syst_JES_EtaIntercalibration_Stat202: 6.92994233e-08 + syst_JES_EtaIntercalibration_Stat203: 5.67453564e-08 + syst_JES_EtaIntercalibration_Stat204: 7.05286840e-12 + syst_JES_EtaIntercalibration_Stat205: 1.20204326e-16 + syst_JES_EtaIntercalibration_Stat206: 5.65770632e-08 + syst_JES_EtaIntercalibration_Stat207: 5.32787507e-08 + syst_JES_EtaIntercalibration_Stat208: 8.33203041e-22 + syst_JES_EtaIntercalibration_Stat209: 1.91651422e-39 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 syst_JES_EtaIntercalibration_Stat211: 0.0 syst_JES_EtaIntercalibration_Stat212: 0.0 syst_JES_EtaIntercalibration_Stat213: 0.0 - syst_JES_EtaIntercalibration_Stat214: 2.4465217656910392e-39 - syst_JES_EtaIntercalibration_Stat215: 8.826530915370999e-23 - syst_JES_EtaIntercalibration_Stat216: 1.0370210448684252e-22 - syst_JES_EtaIntercalibration_Stat217: 1.20542075952756e-38 + syst_JES_EtaIntercalibration_Stat214: 2.44652177e-39 + syst_JES_EtaIntercalibration_Stat215: 8.82653092e-23 + syst_JES_EtaIntercalibration_Stat216: 1.03702104e-22 + syst_JES_EtaIntercalibration_Stat217: 1.20542076e-38 syst_JES_EtaIntercalibration_Stat218: 0.0 - syst_JES_EtaIntercalibration_Stat219: 9.792150697534919e-23 + syst_JES_EtaIntercalibration_Stat219: 9.79215070e-23 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 1.4783040384169963e-22 - syst_JES_EtaIntercalibration_Stat221: 1.9052558889871197e-30 + syst_JES_EtaIntercalibration_Stat220: 1.47830404e-22 + syst_JES_EtaIntercalibration_Stat221: 1.90525589e-30 syst_JES_EtaIntercalibration_Stat222: 0.0 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 @@ -12835,17 +12835,17 @@ bins: syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 syst_JES_EtaIntercalibration_Stat27: 0.0 - syst_JES_EtaIntercalibration_Stat28: 0.04364768035073571 - syst_JES_EtaIntercalibration_Stat29: 0.04786491068622191 + syst_JES_EtaIntercalibration_Stat28: 4.36476804e-02 + syst_JES_EtaIntercalibration_Stat29: 4.78649107e-02 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 1.1414016733823373 - syst_JES_EtaIntercalibration_Stat31: 0.9328024589911843 - syst_JES_EtaIntercalibration_Stat32: 0.15625609452114178 - syst_JES_EtaIntercalibration_Stat33: 0.02205089313383927 - syst_JES_EtaIntercalibration_Stat34: 1.172580214740126 - syst_JES_EtaIntercalibration_Stat35: 0.9959082506310509 - syst_JES_EtaIntercalibration_Stat36: 0.3112460602160291 - syst_JES_EtaIntercalibration_Stat37: 0.0318610746052295 + syst_JES_EtaIntercalibration_Stat30: 1.14140167e+00 + syst_JES_EtaIntercalibration_Stat31: 9.32802459e-01 + syst_JES_EtaIntercalibration_Stat32: 1.56256095e-01 + syst_JES_EtaIntercalibration_Stat33: 2.20508931e-02 + syst_JES_EtaIntercalibration_Stat34: 1.17258021e+00 + syst_JES_EtaIntercalibration_Stat35: 9.95908251e-01 + syst_JES_EtaIntercalibration_Stat36: 3.11246060e-01 + syst_JES_EtaIntercalibration_Stat37: 3.18610746e-02 syst_JES_EtaIntercalibration_Stat38: 0.0 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 @@ -12860,20 +12860,20 @@ bins: syst_JES_EtaIntercalibration_Stat48: 0.0 syst_JES_EtaIntercalibration_Stat49: 0.0 syst_JES_EtaIntercalibration_Stat5: 0.0 - syst_JES_EtaIntercalibration_Stat50: 0.04421059686319559 - syst_JES_EtaIntercalibration_Stat51: 0.39437411942849393 - syst_JES_EtaIntercalibration_Stat52: 3.5562160114368755 - syst_JES_EtaIntercalibration_Stat53: 2.9416058114574084 - syst_JES_EtaIntercalibration_Stat54: 0.3892206217002768 - syst_JES_EtaIntercalibration_Stat55: 0.36777600180000874 - syst_JES_EtaIntercalibration_Stat56: 2.6169339846469186 - syst_JES_EtaIntercalibration_Stat57: 3.902704481510226 - syst_JES_EtaIntercalibration_Stat58: 0.1613640501319919 - syst_JES_EtaIntercalibration_Stat59: 0.07942775380809909 + syst_JES_EtaIntercalibration_Stat50: 4.42105969e-02 + syst_JES_EtaIntercalibration_Stat51: 3.94374119e-01 + syst_JES_EtaIntercalibration_Stat52: 3.55621601e+00 + syst_JES_EtaIntercalibration_Stat53: 2.94160581e+00 + syst_JES_EtaIntercalibration_Stat54: 3.89220622e-01 + syst_JES_EtaIntercalibration_Stat55: 3.67776002e-01 + syst_JES_EtaIntercalibration_Stat56: 2.61693398e+00 + syst_JES_EtaIntercalibration_Stat57: 3.90270448e+00 + syst_JES_EtaIntercalibration_Stat58: 1.61364050e-01 + syst_JES_EtaIntercalibration_Stat59: 7.94277538e-02 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 0.313934208871859 - syst_JES_EtaIntercalibration_Stat62: 0.313934208871859 + syst_JES_EtaIntercalibration_Stat61: 3.13934209e-01 + syst_JES_EtaIntercalibration_Stat62: 3.13934209e-01 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 @@ -12881,68 +12881,68 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 0.04364768035073571 + syst_JES_EtaIntercalibration_Stat7: 4.36476804e-02 syst_JES_EtaIntercalibration_Stat70: 0.0 syst_JES_EtaIntercalibration_Stat71: 0.0 - syst_JES_EtaIntercalibration_Stat72: 0.09014458427992222 - syst_JES_EtaIntercalibration_Stat73: 2.5813550525838167 - syst_JES_EtaIntercalibration_Stat74: 20.397889596720542 - syst_JES_EtaIntercalibration_Stat75: 16.45702585523885 - syst_JES_EtaIntercalibration_Stat76: 1.280373863369602 - syst_JES_EtaIntercalibration_Stat77: 2.404251858687022 - syst_JES_EtaIntercalibration_Stat78: 22.752293840402114 - syst_JES_EtaIntercalibration_Stat79: 18.677036033589484 - syst_JES_EtaIntercalibration_Stat8: 0.27243333326705815 - syst_JES_EtaIntercalibration_Stat80: 2.546308897207878 - syst_JES_EtaIntercalibration_Stat81: 0.09174673127692344 - syst_JES_EtaIntercalibration_Stat82: 0.313934208871859 - syst_JES_EtaIntercalibration_Stat83: 0.313934208871859 - syst_JES_EtaIntercalibration_Stat84: 0.313934208871859 + syst_JES_EtaIntercalibration_Stat72: 9.01445843e-02 + syst_JES_EtaIntercalibration_Stat73: 2.58135505e+00 + syst_JES_EtaIntercalibration_Stat74: 2.03978896e+01 + syst_JES_EtaIntercalibration_Stat75: 1.64570259e+01 + syst_JES_EtaIntercalibration_Stat76: 1.28037386e+00 + syst_JES_EtaIntercalibration_Stat77: 2.40425186e+00 + syst_JES_EtaIntercalibration_Stat78: 2.27522938e+01 + syst_JES_EtaIntercalibration_Stat79: 1.86770360e+01 + syst_JES_EtaIntercalibration_Stat8: 2.72433333e-01 + syst_JES_EtaIntercalibration_Stat80: 2.54630890e+00 + syst_JES_EtaIntercalibration_Stat81: 9.17467313e-02 + syst_JES_EtaIntercalibration_Stat82: 3.13934209e-01 + syst_JES_EtaIntercalibration_Stat83: 3.13934209e-01 + syst_JES_EtaIntercalibration_Stat84: 3.13934209e-01 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 syst_JES_EtaIntercalibration_Stat89: 0.0 - syst_JES_EtaIntercalibration_Stat9: 0.09292221424395783 + syst_JES_EtaIntercalibration_Stat9: 9.29222142e-02 syst_JES_EtaIntercalibration_Stat90: 0.0 syst_JES_EtaIntercalibration_Stat91: 0.0 syst_JES_EtaIntercalibration_Stat92: 0.0 - syst_JES_EtaIntercalibration_Stat93: 0.09185065432537756 - syst_JES_EtaIntercalibration_Stat94: 2.523184297668325 - syst_JES_EtaIntercalibration_Stat95: 23.81853899801581 - syst_JES_EtaIntercalibration_Stat96: 20.04575952664304 - syst_JES_EtaIntercalibration_Stat97: 1.4969589172719469 - syst_JES_EtaIntercalibration_Stat98: 1.9924464058036793 - syst_JES_EtaIntercalibration_Stat99: 20.87397422629433 - syst_JES_EtaIntercalibration_TotalStat_MJB: 4.505370424582201e-06 - syst_JES_Flavour_Comp: 21.076522483559756 - syst_JES_Gjet_Generator: 232.06447482326976 - syst_JES_Gjet_OOC: 156.5712655630017 - syst_JES_Gjet_Purity: 66.5263304771126 - syst_JES_Gjet_Stat1: 1.8104062389419674e-07 - syst_JES_Gjet_Stat10: 2.1757977847217322 - syst_JES_Gjet_Stat11: 0.47174053249641373 - syst_JES_Gjet_Stat12: 0.0989819643925094 - syst_JES_Gjet_Stat13: 4.858405371106862e-05 - syst_JES_Gjet_Stat14: 4.190696928912963e-15 - syst_JES_Gjet_Stat15: 4.4210596863195596e-38 + syst_JES_EtaIntercalibration_Stat93: 9.18506543e-02 + syst_JES_EtaIntercalibration_Stat94: 2.52318430e+00 + syst_JES_EtaIntercalibration_Stat95: 2.38185390e+01 + syst_JES_EtaIntercalibration_Stat96: 2.00457595e+01 + syst_JES_EtaIntercalibration_Stat97: 1.49695892e+00 + syst_JES_EtaIntercalibration_Stat98: 1.99244641e+00 + syst_JES_EtaIntercalibration_Stat99: 2.08739742e+01 + syst_JES_EtaIntercalibration_TotalStat_MJB: 4.50537042e-06 + syst_JES_Flavour_Comp: 2.10765225e+01 + syst_JES_Gjet_Generator: 2.32064475e+02 + syst_JES_Gjet_OOC: 1.56571266e+02 + syst_JES_Gjet_Purity: 6.65263305e+01 + syst_JES_Gjet_Stat1: 1.81040624e-07 + syst_JES_Gjet_Stat10: 2.17579778e+00 + syst_JES_Gjet_Stat11: 4.71740532e-01 + syst_JES_Gjet_Stat12: 9.89819644e-02 + syst_JES_Gjet_Stat13: 4.85840537e-05 + syst_JES_Gjet_Stat14: 4.19069693e-15 + syst_JES_Gjet_Stat15: 4.42105969e-38 syst_JES_Gjet_Stat2: 0.0 - syst_JES_Gjet_Stat3: 2.8968549756589472 - syst_JES_Gjet_Stat4: 3.7306625416941697 - syst_JES_Gjet_Stat5: 5.547803889828839 - syst_JES_Gjet_Stat6: 18.115862524318292 - syst_JES_Gjet_Stat7: 25.838593227960377 - syst_JES_Gjet_Stat8: 5.988006575647693 - syst_JES_Gjet_Stat9: 0.2669675427589467 - syst_JES_Gjet_Veto: 44.89321890887308 - syst_JES_Gjet_dPhi: 29.926010008018103 - syst_JES_LArESZee: 144.76064753585487 - syst_JES_LArEsmear: 14.250053578846643 - syst_JES_LAr_JVT: 27.73020149584204 - syst_JES_MJB_Alpha: 6.986226932329066e-38 - syst_JES_MJB_Asym: 0.0009645646517989347 - syst_JES_MJB_Beta: 2.9254338139838337e-08 - syst_JES_MJB_Stat1: 0.0004913644703272715 + syst_JES_Gjet_Stat3: 2.89685498e+00 + syst_JES_Gjet_Stat4: 3.73066254e+00 + syst_JES_Gjet_Stat5: 5.54780389e+00 + syst_JES_Gjet_Stat6: 1.81158625e+01 + syst_JES_Gjet_Stat7: 2.58385932e+01 + syst_JES_Gjet_Stat8: 5.98800658e+00 + syst_JES_Gjet_Stat9: 2.66967543e-01 + syst_JES_Gjet_Veto: 4.48932189e+01 + syst_JES_Gjet_dPhi: 2.99260100e+01 + syst_JES_LArESZee: 1.44760648e+02 + syst_JES_LArEsmear: 1.42500536e+01 + syst_JES_LAr_JVT: 2.77302015e+01 + syst_JES_MJB_Alpha: 6.98622693e-38 + syst_JES_MJB_Asym: 9.64564652e-04 + syst_JES_MJB_Beta: 2.92543381e-08 + syst_JES_MJB_Stat1: 4.91364470e-04 syst_JES_MJB_Stat10: 0.0 syst_JES_MJB_Stat11: 0.0 syst_JES_MJB_Stat12: 0.0 @@ -12950,134 +12950,134 @@ bins: syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 6.226002453622388e-07 - syst_JES_MJB_Stat3: 2.8267069179525314e-08 - syst_JES_MJB_Stat4: 2.2863070832941062e-21 - syst_JES_MJB_Stat5: 1.6497783942093557e-30 - syst_JES_MJB_Stat6: 1.3518656553075088e-38 + syst_JES_MJB_Stat2: 6.22600245e-07 + syst_JES_MJB_Stat3: 2.82670692e-08 + syst_JES_MJB_Stat4: 2.28630708e-21 + syst_JES_MJB_Stat5: 1.64977839e-30 + syst_JES_MJB_Stat6: 1.35186566e-38 syst_JES_MJB_Stat7: 0.0 syst_JES_MJB_Stat8: 0.0 syst_JES_MJB_Stat9: 0.0 - syst_JES_MJB_Threshold: 0.000974406983759866 - syst_JES_Pileup_MuOffset: 6.3842804410520685e-37 - syst_JES_Pileup_NPVOffset: 18.078746499688524 - syst_JES_Pileup_Pt_term: 46.85457280778473 + syst_JES_MJB_Threshold: 9.74406984e-04 + syst_JES_Pileup_MuOffset: 6.38428044e-37 + syst_JES_Pileup_NPVOffset: 1.80787465e+01 + syst_JES_Pileup_Pt_term: 4.68545728e+01 syst_JES_PunchThrough_MC15: 0.0 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 225.91743110039118 - syst_JES_Zjet_MuScale: 15.744036966420017 - syst_JES_Zjet_MuSmearID: 2.345986785981541 - syst_JES_Zjet_MuSmearMS: 3.8297249248477363 - syst_JES_Zjet_OOC: 163.72608436043413 - syst_JES_Zjet_Stat1: 3.428036281896678 - syst_JES_Zjet_Stat10: 5.037536178530135 - syst_JES_Zjet_Stat11: 5.4318645739745754 - syst_JES_Zjet_Stat12: 0.9021182447440026 - syst_JES_Zjet_Stat13: 0.014611448522261575 - syst_JES_Zjet_Stat2: 0.15605780316249748 - syst_JES_Zjet_Stat3: 1.2178049228016776 - syst_JES_Zjet_Stat4: 2.7872841620473503 - syst_JES_Zjet_Stat5: 3.115150816172469 - syst_JES_Zjet_Stat6: 7.251629058356475 - syst_JES_Zjet_Stat7: 13.045350474402749 - syst_JES_Zjet_Stat8: 21.933391780570552 - syst_JES_Zjet_Stat9: 24.452960965903497 - syst_JES_Zjet_Veto: 23.080660735776174 - syst_JES_Zjet_dPhi: 37.61782979851443 + syst_JES_Zjet_MC: 2.25917431e+02 + syst_JES_Zjet_MuScale: 1.57440370e+01 + syst_JES_Zjet_MuSmearID: 2.34598679e+00 + syst_JES_Zjet_MuSmearMS: 3.82972492e+00 + syst_JES_Zjet_OOC: 1.63726084e+02 + syst_JES_Zjet_Stat1: 3.42803628e+00 + syst_JES_Zjet_Stat10: 5.03753618e+00 + syst_JES_Zjet_Stat11: 5.43186457e+00 + syst_JES_Zjet_Stat12: 9.02118245e-01 + syst_JES_Zjet_Stat13: 1.46114485e-02 + syst_JES_Zjet_Stat2: 1.56057803e-01 + syst_JES_Zjet_Stat3: 1.21780492e+00 + syst_JES_Zjet_Stat4: 2.78728416e+00 + syst_JES_Zjet_Stat5: 3.11515082e+00 + syst_JES_Zjet_Stat6: 7.25162906e+00 + syst_JES_Zjet_Stat7: 1.30453505e+01 + syst_JES_Zjet_Stat8: 2.19333918e+01 + syst_JES_Zjet_Stat9: 2.44529610e+01 + syst_JES_Zjet_Veto: 2.30806607e+01 + syst_JES_Zjet_dPhi: 3.76178298e+01 syst_PRW: 8.652 syst_Unfolding_bias: 32.91 - syst_cleaning: 112.39970510637474 + syst_cleaning: 1.12399705e+02 syst_lumi: 235.17 - syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.003346632337141324 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 129.75018068195513 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 103.1434821147221 + syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 3.34663234e-03 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.29750181e+02 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 1.03143482e+02 syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 399.47071788555417 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0037962261194507364 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 52.59347148411103 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 3.99470718e+02 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 3.79622612e-03 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 5.25934715e+01 - stat: 48.5 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 86.222063746758 - syst_JER_NP1: 12.570484905125975 - syst_JER_NP2: 18.776860094275612 - syst_JER_NP3: 8.366435800267638 - syst_JER_NP4: 14.961755202849698 - syst_JER_NP5: 9.112273371667468 + syst_JER_NP0: 8.62220637e+01 + syst_JER_NP1: 1.25704849e+01 + syst_JER_NP2: 1.87768601e+01 + syst_JER_NP3: 8.36643580e+00 + syst_JER_NP4: 1.49617552e+01 + syst_JER_NP5: 9.11227337e+00 syst_JER_NP6: 0.0 - syst_JER_NP7: 3.3224383741463144 - syst_JER_NP8: 10.699585821423183 - syst_JES_EtaIntercalibration_Modelling: 41.64143766730443 - syst_JES_EtaIntercalibration_NonClosure: 5.736552274668121e-06 + syst_JER_NP7: 3.32243837e+00 + syst_JER_NP8: 1.06995858e+01 + syst_JES_EtaIntercalibration_Modelling: 4.16414377e+01 + syst_JES_EtaIntercalibration_NonClosure: 5.73655227e-06 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 7.893835997156262 - syst_JES_EtaIntercalibration_Stat101: 0.7136996076781883 - syst_JES_EtaIntercalibration_Stat102: 0.0062277342589420115 - syst_JES_EtaIntercalibration_Stat103: 0.19944565049155621 - syst_JES_EtaIntercalibration_Stat104: 0.19944565049155621 - syst_JES_EtaIntercalibration_Stat105: 0.19944565049155621 + syst_JES_EtaIntercalibration_Stat100: 7.89383600e+00 + syst_JES_EtaIntercalibration_Stat101: 7.13699608e-01 + syst_JES_EtaIntercalibration_Stat102: 6.22773426e-03 + syst_JES_EtaIntercalibration_Stat103: 1.99445650e-01 + syst_JES_EtaIntercalibration_Stat104: 1.99445650e-01 + syst_JES_EtaIntercalibration_Stat105: 1.99445650e-01 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 1.314626562944778e-14 - syst_JES_EtaIntercalibration_Stat111: 1.314626562944778e-14 + syst_JES_EtaIntercalibration_Stat110: 1.31462656e-14 + syst_JES_EtaIntercalibration_Stat111: 1.31462656e-14 syst_JES_EtaIntercalibration_Stat112: 0.0 - syst_JES_EtaIntercalibration_Stat113: 0.04112111714192599 - syst_JES_EtaIntercalibration_Stat114: 0.7751529784500605 - syst_JES_EtaIntercalibration_Stat115: 10.528136812845851 - syst_JES_EtaIntercalibration_Stat116: 8.48097647679794 - syst_JES_EtaIntercalibration_Stat117: 0.5986765800496959 - syst_JES_EtaIntercalibration_Stat118: 0.5095269472756079 - syst_JES_EtaIntercalibration_Stat119: 8.100952166257988 - syst_JES_EtaIntercalibration_Stat12: 0.060971817260107974 - syst_JES_EtaIntercalibration_Stat120: 10.496663315073032 - syst_JES_EtaIntercalibration_Stat121: 0.7877903829699878 - syst_JES_EtaIntercalibration_Stat122: 0.0017734641890943274 - syst_JES_EtaIntercalibration_Stat123: 0.19944565049155621 - syst_JES_EtaIntercalibration_Stat124: 0.19944565049155621 - syst_JES_EtaIntercalibration_Stat125: 0.19944565049155621 + syst_JES_EtaIntercalibration_Stat113: 4.11211171e-02 + syst_JES_EtaIntercalibration_Stat114: 7.75152978e-01 + syst_JES_EtaIntercalibration_Stat115: 1.05281368e+01 + syst_JES_EtaIntercalibration_Stat116: 8.48097648e+00 + syst_JES_EtaIntercalibration_Stat117: 5.98676580e-01 + syst_JES_EtaIntercalibration_Stat118: 5.09526947e-01 + syst_JES_EtaIntercalibration_Stat119: 8.10095217e+00 + syst_JES_EtaIntercalibration_Stat12: 6.09718173e-02 + syst_JES_EtaIntercalibration_Stat120: 1.04966633e+01 + syst_JES_EtaIntercalibration_Stat121: 7.87790383e-01 + syst_JES_EtaIntercalibration_Stat122: 1.77346419e-03 + syst_JES_EtaIntercalibration_Stat123: 1.99445650e-01 + syst_JES_EtaIntercalibration_Stat124: 1.99445650e-01 + syst_JES_EtaIntercalibration_Stat125: 1.99445650e-01 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 syst_JES_EtaIntercalibration_Stat128: 0.0 - syst_JES_EtaIntercalibration_Stat129: 1.314626562944778e-14 - syst_JES_EtaIntercalibration_Stat13: 0.04833694922882494 - syst_JES_EtaIntercalibration_Stat130: 1.314626562944778e-14 - syst_JES_EtaIntercalibration_Stat131: 0.006236248932651743 - syst_JES_EtaIntercalibration_Stat132: 0.04057078875250024 - syst_JES_EtaIntercalibration_Stat133: 0.3749773289146959 - syst_JES_EtaIntercalibration_Stat134: 2.764194457703727 - syst_JES_EtaIntercalibration_Stat135: 1.7696661570759609 - syst_JES_EtaIntercalibration_Stat136: 0.28088493640635126 - syst_JES_EtaIntercalibration_Stat137: 0.2658601512073594 - syst_JES_EtaIntercalibration_Stat138: 2.4221772746849064 - syst_JES_EtaIntercalibration_Stat139: 2.7271623989047664 - syst_JES_EtaIntercalibration_Stat14: 0.024984832899181054 - syst_JES_EtaIntercalibration_Stat140: 0.37398514676387884 - syst_JES_EtaIntercalibration_Stat141: 0.010121238894028222 + syst_JES_EtaIntercalibration_Stat129: 1.31462656e-14 + syst_JES_EtaIntercalibration_Stat13: 4.83369492e-02 + syst_JES_EtaIntercalibration_Stat130: 1.31462656e-14 + syst_JES_EtaIntercalibration_Stat131: 6.23624893e-03 + syst_JES_EtaIntercalibration_Stat132: 4.05707888e-02 + syst_JES_EtaIntercalibration_Stat133: 3.74977329e-01 + syst_JES_EtaIntercalibration_Stat134: 2.76419446e+00 + syst_JES_EtaIntercalibration_Stat135: 1.76966616e+00 + syst_JES_EtaIntercalibration_Stat136: 2.80884936e-01 + syst_JES_EtaIntercalibration_Stat137: 2.65860151e-01 + syst_JES_EtaIntercalibration_Stat138: 2.42217727e+00 + syst_JES_EtaIntercalibration_Stat139: 2.72716240e+00 + syst_JES_EtaIntercalibration_Stat14: 2.49848329e-02 + syst_JES_EtaIntercalibration_Stat140: 3.73985147e-01 + syst_JES_EtaIntercalibration_Stat141: 1.01212389e-02 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 0.19944565049155621 - syst_JES_EtaIntercalibration_Stat144: 0.19944565049155621 + syst_JES_EtaIntercalibration_Stat143: 1.99445650e-01 + syst_JES_EtaIntercalibration_Stat144: 1.99445650e-01 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 1.314626562944778e-14 + syst_JES_EtaIntercalibration_Stat147: 1.31462656e-14 syst_JES_EtaIntercalibration_Stat148: 0.0 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 0.016645008245567035 - syst_JES_EtaIntercalibration_Stat151: 0.10827073323387074 - syst_JES_EtaIntercalibration_Stat152: 1.0907332671189598 - syst_JES_EtaIntercalibration_Stat153: 0.8534316844364286 - syst_JES_EtaIntercalibration_Stat154: 0.1559991893408424 - syst_JES_EtaIntercalibration_Stat155: 0.09000462363123353 - syst_JES_EtaIntercalibration_Stat156: 1.2686389035103722 - syst_JES_EtaIntercalibration_Stat157: 1.222834219140109 - syst_JES_EtaIntercalibration_Stat158: 0.17093167845662782 - syst_JES_EtaIntercalibration_Stat159: 1.7970043545542e-05 + syst_JES_EtaIntercalibration_Stat150: 1.66450082e-02 + syst_JES_EtaIntercalibration_Stat151: 1.08270733e-01 + syst_JES_EtaIntercalibration_Stat152: 1.09073327e+00 + syst_JES_EtaIntercalibration_Stat153: 8.53431684e-01 + syst_JES_EtaIntercalibration_Stat154: 1.55999189e-01 + syst_JES_EtaIntercalibration_Stat155: 9.00046236e-02 + syst_JES_EtaIntercalibration_Stat156: 1.26863890e+00 + syst_JES_EtaIntercalibration_Stat157: 1.22283422e+00 + syst_JES_EtaIntercalibration_Stat158: 1.70931678e-01 + syst_JES_EtaIntercalibration_Stat159: 1.79700435e-05 syst_JES_EtaIntercalibration_Stat16: 0.0 syst_JES_EtaIntercalibration_Stat160: 0.0 syst_JES_EtaIntercalibration_Stat161: 0.0 @@ -13087,17 +13087,17 @@ bins: syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 - syst_JES_EtaIntercalibration_Stat168: 3.4649676405415387e-10 - syst_JES_EtaIntercalibration_Stat169: 0.006889625588520758 + syst_JES_EtaIntercalibration_Stat168: 3.46496764e-10 + syst_JES_EtaIntercalibration_Stat169: 6.88962559e-03 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 0.21567993022068604 - syst_JES_EtaIntercalibration_Stat171: 0.05079364797885657 - syst_JES_EtaIntercalibration_Stat172: 0.004281699662517211 - syst_JES_EtaIntercalibration_Stat173: 0.0068727776044333055 - syst_JES_EtaIntercalibration_Stat174: 0.07670176138785863 - syst_JES_EtaIntercalibration_Stat175: 0.04368408720575491 - syst_JES_EtaIntercalibration_Stat176: 0.0037615278916950756 - syst_JES_EtaIntercalibration_Stat177: 6.299316160383661e-08 + syst_JES_EtaIntercalibration_Stat170: 2.15679930e-01 + syst_JES_EtaIntercalibration_Stat171: 5.07936480e-02 + syst_JES_EtaIntercalibration_Stat172: 4.28169966e-03 + syst_JES_EtaIntercalibration_Stat173: 6.87277760e-03 + syst_JES_EtaIntercalibration_Stat174: 7.67017614e-02 + syst_JES_EtaIntercalibration_Stat175: 4.36840872e-02 + syst_JES_EtaIntercalibration_Stat176: 3.76152789e-03 + syst_JES_EtaIntercalibration_Stat177: 6.29931616e-08 syst_JES_EtaIntercalibration_Stat178: 0.0 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 @@ -13106,17 +13106,17 @@ bins: syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 syst_JES_EtaIntercalibration_Stat184: 0.0 - syst_JES_EtaIntercalibration_Stat185: 3.4140453467990142e-15 - syst_JES_EtaIntercalibration_Stat186: 1.112985835489383e-05 - syst_JES_EtaIntercalibration_Stat187: 0.005878615206832302 - syst_JES_EtaIntercalibration_Stat188: 0.004649807173421281 - syst_JES_EtaIntercalibration_Stat189: 0.00018086188821307822 + syst_JES_EtaIntercalibration_Stat185: 3.41404535e-15 + syst_JES_EtaIntercalibration_Stat186: 1.11298584e-05 + syst_JES_EtaIntercalibration_Stat187: 5.87861521e-03 + syst_JES_EtaIntercalibration_Stat188: 4.64980717e-03 + syst_JES_EtaIntercalibration_Stat189: 1.80861888e-04 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 1.1624632929688577e-05 - syst_JES_EtaIntercalibration_Stat191: 0.004087626939924925 - syst_JES_EtaIntercalibration_Stat192: 0.005051579035311633 - syst_JES_EtaIntercalibration_Stat193: 0.0001176149100879646 - syst_JES_EtaIntercalibration_Stat194: 2.7435684791891017e-11 + syst_JES_EtaIntercalibration_Stat190: 1.16246329e-05 + syst_JES_EtaIntercalibration_Stat191: 4.08762694e-03 + syst_JES_EtaIntercalibration_Stat192: 5.05157904e-03 + syst_JES_EtaIntercalibration_Stat193: 1.17614910e-04 + syst_JES_EtaIntercalibration_Stat194: 2.74356848e-11 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 syst_JES_EtaIntercalibration_Stat197: 0.0 @@ -13125,41 +13125,41 @@ bins: syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 - syst_JES_EtaIntercalibration_Stat201: 2.6103979605224946e-08 - syst_JES_EtaIntercalibration_Stat202: 1.6849953612695795e-05 - syst_JES_EtaIntercalibration_Stat203: 1.3806737014950347e-05 - syst_JES_EtaIntercalibration_Stat204: 3.5438275092379995e-08 - syst_JES_EtaIntercalibration_Stat205: 2.3070916756817447e-11 - syst_JES_EtaIntercalibration_Stat206: 1.3749319983184623e-05 - syst_JES_EtaIntercalibration_Stat207: 1.2907430757125912e-05 - syst_JES_EtaIntercalibration_Stat208: 1.1919973657689014e-14 - syst_JES_EtaIntercalibration_Stat209: 1.868016791994906e-27 + syst_JES_EtaIntercalibration_Stat201: 2.61039796e-08 + syst_JES_EtaIntercalibration_Stat202: 1.68499536e-05 + syst_JES_EtaIntercalibration_Stat203: 1.38067370e-05 + syst_JES_EtaIntercalibration_Stat204: 3.54382751e-08 + syst_JES_EtaIntercalibration_Stat205: 2.30709168e-11 + syst_JES_EtaIntercalibration_Stat206: 1.37493200e-05 + syst_JES_EtaIntercalibration_Stat207: 1.29074308e-05 + syst_JES_EtaIntercalibration_Stat208: 1.19199737e-14 + syst_JES_EtaIntercalibration_Stat209: 1.86801679e-27 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 syst_JES_EtaIntercalibration_Stat211: 0.0 syst_JES_EtaIntercalibration_Stat212: 0.0 syst_JES_EtaIntercalibration_Stat213: 0.0 - syst_JES_EtaIntercalibration_Stat214: 2.3841679440836986e-27 - syst_JES_EtaIntercalibration_Stat215: 1.262665038720779e-15 - syst_JES_EtaIntercalibration_Stat216: 1.483780228841185e-15 - syst_JES_EtaIntercalibration_Stat217: 1.1732912170471574e-26 - syst_JES_EtaIntercalibration_Stat218: 4.471153766087675e-35 - syst_JES_EtaIntercalibration_Stat219: 1.401261463907834e-15 + syst_JES_EtaIntercalibration_Stat214: 2.38416794e-27 + syst_JES_EtaIntercalibration_Stat215: 1.26266504e-15 + syst_JES_EtaIntercalibration_Stat216: 1.48378023e-15 + syst_JES_EtaIntercalibration_Stat217: 1.17329122e-26 + syst_JES_EtaIntercalibration_Stat218: 4.47115377e-35 + syst_JES_EtaIntercalibration_Stat219: 1.40126146e-15 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 2.1148618749223314e-15 - syst_JES_EtaIntercalibration_Stat221: 4.230534741232925e-21 - syst_JES_EtaIntercalibration_Stat222: 1.1902653149613324e-35 + syst_JES_EtaIntercalibration_Stat220: 2.11486187e-15 + syst_JES_EtaIntercalibration_Stat221: 4.23053474e-21 + syst_JES_EtaIntercalibration_Stat222: 1.19026531e-35 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 - syst_JES_EtaIntercalibration_Stat227: 3.823082718173909e-36 - syst_JES_EtaIntercalibration_Stat228: 4.376414590735206e-36 + syst_JES_EtaIntercalibration_Stat227: 3.82308272e-36 + syst_JES_EtaIntercalibration_Stat228: 4.37641459e-36 syst_JES_EtaIntercalibration_Stat229: 0.0 syst_JES_EtaIntercalibration_Stat23: 0.0 syst_JES_EtaIntercalibration_Stat230: 0.0 - syst_JES_EtaIntercalibration_Stat231: 2.8345011465864675e-36 - syst_JES_EtaIntercalibration_Stat232: 4.052998889711173e-36 + syst_JES_EtaIntercalibration_Stat231: 2.83450115e-36 + syst_JES_EtaIntercalibration_Stat232: 4.05299889e-36 syst_JES_EtaIntercalibration_Stat233: 0.0 syst_JES_EtaIntercalibration_Stat234: 0.0 syst_JES_EtaIntercalibration_Stat235: 0.0 @@ -13177,17 +13177,17 @@ bins: syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 syst_JES_EtaIntercalibration_Stat27: 0.0 - syst_JES_EtaIntercalibration_Stat28: 0.008997137919916532 - syst_JES_EtaIntercalibration_Stat29: 0.029031294752387464 + syst_JES_EtaIntercalibration_Stat28: 8.99713792e-03 + syst_JES_EtaIntercalibration_Stat29: 2.90312948e-02 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 0.2940511307579007 - syst_JES_EtaIntercalibration_Stat31: 0.24970418498695612 - syst_JES_EtaIntercalibration_Stat32: 0.028929567089744014 - syst_JES_EtaIntercalibration_Stat33: 0.02600817415736829 - syst_JES_EtaIntercalibration_Stat34: 0.4536774537873796 - syst_JES_EtaIntercalibration_Stat35: 0.20433438740212082 - syst_JES_EtaIntercalibration_Stat36: 0.05062412344920157 - syst_JES_EtaIntercalibration_Stat37: 0.006567070636897398 + syst_JES_EtaIntercalibration_Stat30: 2.94051131e-01 + syst_JES_EtaIntercalibration_Stat31: 2.49704185e-01 + syst_JES_EtaIntercalibration_Stat32: 2.89295671e-02 + syst_JES_EtaIntercalibration_Stat33: 2.60081742e-02 + syst_JES_EtaIntercalibration_Stat34: 4.53677454e-01 + syst_JES_EtaIntercalibration_Stat35: 2.04334387e-01 + syst_JES_EtaIntercalibration_Stat36: 5.06241234e-02 + syst_JES_EtaIntercalibration_Stat37: 6.56707064e-03 syst_JES_EtaIntercalibration_Stat38: 0.0 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 @@ -13202,20 +13202,20 @@ bins: syst_JES_EtaIntercalibration_Stat48: 0.0 syst_JES_EtaIntercalibration_Stat49: 0.0 syst_JES_EtaIntercalibration_Stat5: 0.0 - syst_JES_EtaIntercalibration_Stat50: 0.009114051349427433 - syst_JES_EtaIntercalibration_Stat51: 0.18333308232558573 - syst_JES_EtaIntercalibration_Stat52: 0.6910878525918395 - syst_JES_EtaIntercalibration_Stat53: 0.9784886547630484 - syst_JES_EtaIntercalibration_Stat54: 0.07012369553153912 - syst_JES_EtaIntercalibration_Stat55: 0.17480692205973994 - syst_JES_EtaIntercalibration_Stat56: 0.8916358715866023 - syst_JES_EtaIntercalibration_Stat57: 1.048785025636808 - syst_JES_EtaIntercalibration_Stat58: 0.07844378942911924 - syst_JES_EtaIntercalibration_Stat59: 0.018318596746203022 + syst_JES_EtaIntercalibration_Stat50: 9.11405135e-03 + syst_JES_EtaIntercalibration_Stat51: 1.83333082e-01 + syst_JES_EtaIntercalibration_Stat52: 6.91087853e-01 + syst_JES_EtaIntercalibration_Stat53: 9.78488655e-01 + syst_JES_EtaIntercalibration_Stat54: 7.01236955e-02 + syst_JES_EtaIntercalibration_Stat55: 1.74806922e-01 + syst_JES_EtaIntercalibration_Stat56: 8.91635872e-01 + syst_JES_EtaIntercalibration_Stat57: 1.04878503e+00 + syst_JES_EtaIntercalibration_Stat58: 7.84437894e-02 + syst_JES_EtaIntercalibration_Stat59: 1.83185967e-02 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 0.19944565049155621 - syst_JES_EtaIntercalibration_Stat62: 0.19944565049155621 + syst_JES_EtaIntercalibration_Stat61: 1.99445650e-01 + syst_JES_EtaIntercalibration_Stat62: 1.99445650e-01 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 @@ -13223,68 +13223,68 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 0.008997137919916532 + syst_JES_EtaIntercalibration_Stat7: 8.99713792e-03 syst_JES_EtaIntercalibration_Stat70: 0.0 syst_JES_EtaIntercalibration_Stat71: 0.0 - syst_JES_EtaIntercalibration_Stat72: 0.05680260623422133 - syst_JES_EtaIntercalibration_Stat73: 0.7767707576885217 - syst_JES_EtaIntercalibration_Stat74: 6.2777848003893855 - syst_JES_EtaIntercalibration_Stat75: 5.155686763177142 - syst_JES_EtaIntercalibration_Stat76: 0.4165563947414563 - syst_JES_EtaIntercalibration_Stat77: 0.8303152819863067 - syst_JES_EtaIntercalibration_Stat78: 6.368786756518073 - syst_JES_EtaIntercalibration_Stat79: 5.328472295133006 - syst_JES_EtaIntercalibration_Stat8: 0.08499526280917073 - syst_JES_EtaIntercalibration_Stat80: 0.6750643136027855 - syst_JES_EtaIntercalibration_Stat81: 0.02935826118829247 - syst_JES_EtaIntercalibration_Stat82: 0.19944565049155621 - syst_JES_EtaIntercalibration_Stat83: 0.19944565049155621 - syst_JES_EtaIntercalibration_Stat84: 0.19944565049155621 + syst_JES_EtaIntercalibration_Stat72: 5.68026062e-02 + syst_JES_EtaIntercalibration_Stat73: 7.76770758e-01 + syst_JES_EtaIntercalibration_Stat74: 6.27778480e+00 + syst_JES_EtaIntercalibration_Stat75: 5.15568676e+00 + syst_JES_EtaIntercalibration_Stat76: 4.16556395e-01 + syst_JES_EtaIntercalibration_Stat77: 8.30315282e-01 + syst_JES_EtaIntercalibration_Stat78: 6.36878676e+00 + syst_JES_EtaIntercalibration_Stat79: 5.32847230e+00 + syst_JES_EtaIntercalibration_Stat8: 8.49952628e-02 + syst_JES_EtaIntercalibration_Stat80: 6.75064314e-01 + syst_JES_EtaIntercalibration_Stat81: 2.93582612e-02 + syst_JES_EtaIntercalibration_Stat82: 1.99445650e-01 + syst_JES_EtaIntercalibration_Stat83: 1.99445650e-01 + syst_JES_EtaIntercalibration_Stat84: 1.99445650e-01 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 syst_JES_EtaIntercalibration_Stat89: 0.0 - syst_JES_EtaIntercalibration_Stat9: 0.022522988256445903 + syst_JES_EtaIntercalibration_Stat9: 2.25229883e-02 syst_JES_EtaIntercalibration_Stat90: 0.0 syst_JES_EtaIntercalibration_Stat91: 0.0 syst_JES_EtaIntercalibration_Stat92: 0.0 - syst_JES_EtaIntercalibration_Stat93: 0.058309490436806256 - syst_JES_EtaIntercalibration_Stat94: 0.9684515101438997 - syst_JES_EtaIntercalibration_Stat95: 9.200832937837747 - syst_JES_EtaIntercalibration_Stat96: 8.090120317399487 - syst_JES_EtaIntercalibration_Stat97: 0.708995966138031 - syst_JES_EtaIntercalibration_Stat98: 0.8824361889111302 - syst_JES_EtaIntercalibration_Stat99: 7.607781345438365 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0010880601393650079 - syst_JES_Flavour_Comp: 8.750757281515696 - syst_JES_Gjet_Generator: 114.41803208847807 - syst_JES_Gjet_OOC: 71.48276640386828 - syst_JES_Gjet_Purity: 30.205408042269514 - syst_JES_Gjet_Stat1: 4.380060958479916e-05 - syst_JES_Gjet_Stat10: 1.2029407425139444 - syst_JES_Gjet_Stat11: 0.6000227891505455 - syst_JES_Gjet_Stat12: 0.08903268345388675 - syst_JES_Gjet_Stat13: 0.000992404659148676 - syst_JES_Gjet_Stat14: 8.042777926372714e-10 - syst_JES_Gjet_Stat15: 4.305012273514663e-26 + syst_JES_EtaIntercalibration_Stat93: 5.83094904e-02 + syst_JES_EtaIntercalibration_Stat94: 9.68451510e-01 + syst_JES_EtaIntercalibration_Stat95: 9.20083294e+00 + syst_JES_EtaIntercalibration_Stat96: 8.09012032e+00 + syst_JES_EtaIntercalibration_Stat97: 7.08995966e-01 + syst_JES_EtaIntercalibration_Stat98: 8.82436189e-01 + syst_JES_EtaIntercalibration_Stat99: 7.60778135e+00 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.08806014e-03 + syst_JES_Flavour_Comp: 8.75075728e+00 + syst_JES_Gjet_Generator: 1.14418032e+02 + syst_JES_Gjet_OOC: 7.14827664e+01 + syst_JES_Gjet_Purity: 3.02054080e+01 + syst_JES_Gjet_Stat1: 4.38006096e-05 + syst_JES_Gjet_Stat10: 1.20294074e+00 + syst_JES_Gjet_Stat11: 6.00022789e-01 + syst_JES_Gjet_Stat12: 8.90326835e-02 + syst_JES_Gjet_Stat13: 9.92404659e-04 + syst_JES_Gjet_Stat14: 8.04277793e-10 + syst_JES_Gjet_Stat15: 4.30501227e-26 syst_JES_Gjet_Stat2: 0.0 - syst_JES_Gjet_Stat3: 1.0093526081107633 - syst_JES_Gjet_Stat4: 1.5522554815493488 - syst_JES_Gjet_Stat5: 2.3382957469062804 - syst_JES_Gjet_Stat6: 7.156610982161878 - syst_JES_Gjet_Stat7: 11.16070974445622 - syst_JES_Gjet_Stat8: 3.5868714431939153 - syst_JES_Gjet_Stat9: 1.008314448721231 - syst_JES_Gjet_Veto: 22.18677759387334 - syst_JES_Gjet_dPhi: 13.198777320267206 - syst_JES_LArESZee: 73.1004297182992 - syst_JES_LArEsmear: 7.059278575038671 - syst_JES_LAr_JVT: 12.587643494713378 - syst_JES_MJB_Alpha: 6.80349557213055e-26 - syst_JES_MJB_Asym: 0.0028545169468756006 - syst_JES_MJB_Beta: 7.081489726745354e-06 - syst_JES_MJB_Stat1: 0.0015819189889182065 + syst_JES_Gjet_Stat3: 1.00935261e+00 + syst_JES_Gjet_Stat4: 1.55225548e+00 + syst_JES_Gjet_Stat5: 2.33829575e+00 + syst_JES_Gjet_Stat6: 7.15661098e+00 + syst_JES_Gjet_Stat7: 1.11607097e+01 + syst_JES_Gjet_Stat8: 3.58687144e+00 + syst_JES_Gjet_Stat9: 1.00831445e+00 + syst_JES_Gjet_Veto: 2.21867776e+01 + syst_JES_Gjet_dPhi: 1.31987773e+01 + syst_JES_LArESZee: 7.31004297e+01 + syst_JES_LArEsmear: 7.05927858e+00 + syst_JES_LAr_JVT: 1.25876435e+01 + syst_JES_MJB_Alpha: 6.80349557e-26 + syst_JES_MJB_Asym: 2.85451695e-03 + syst_JES_MJB_Beta: 7.08148973e-06 + syst_JES_MJB_Stat1: 1.58191899e-03 syst_JES_MJB_Stat10: 0.0 syst_JES_MJB_Stat11: 0.0 syst_JES_MJB_Stat12: 0.0 @@ -13292,154 +13292,154 @@ bins: syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 0.0001503298235592908 - syst_JES_MJB_Stat3: 6.843332758449495e-06 - syst_JES_MJB_Stat4: 3.2709817929552754e-14 - syst_JES_MJB_Stat5: 3.663287458008175e-21 - syst_JES_MJB_Stat6: 1.3163586137523467e-26 + syst_JES_MJB_Stat2: 1.50329824e-04 + syst_JES_MJB_Stat3: 6.84333276e-06 + syst_JES_MJB_Stat4: 3.27098179e-14 + syst_JES_MJB_Stat5: 3.66328746e-21 + syst_JES_MJB_Stat6: 1.31635861e-26 syst_JES_MJB_Stat7: 0.0 syst_JES_MJB_Stat8: 0.0 syst_JES_MJB_Stat9: 0.0 - syst_JES_MJB_Threshold: 0.002926894770913365 - syst_JES_Pileup_MuOffset: 6.216731215035761e-25 - syst_JES_Pileup_NPVOffset: 8.968586176204141 - syst_JES_Pileup_Pt_term: 21.40659886577034 + syst_JES_MJB_Threshold: 2.92689477e-03 + syst_JES_Pileup_MuOffset: 6.21673122e-25 + syst_JES_Pileup_NPVOffset: 8.96858618e+00 + syst_JES_Pileup_Pt_term: 2.14065989e+01 syst_JES_PunchThrough_MC15: 0.0 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 105.00991002162606 - syst_JES_Zjet_MuScale: 7.4572365525038835 - syst_JES_Zjet_MuSmearID: 1.1759241078828173 - syst_JES_Zjet_MuSmearMS: 2.9089226098334073 - syst_JES_Zjet_OOC: 65.37309258402878 - syst_JES_Zjet_Stat1: 1.5861049776102463 - syst_JES_Zjet_Stat10: 6.491315178760002 - syst_JES_Zjet_Stat11: 1.46201478446697 - syst_JES_Zjet_Stat12: 1.2451225672599464 - syst_JES_Zjet_Stat13: 0.006938923691755083 - syst_JES_Zjet_Stat2: 0.0759738991908899 - syst_JES_Zjet_Stat3: 0.5785049697280051 - syst_JES_Zjet_Stat4: 1.0801934687823291 - syst_JES_Zjet_Stat5: 1.3618416648054208 - syst_JES_Zjet_Stat6: 2.772107140786589 - syst_JES_Zjet_Stat7: 4.63987370517776 - syst_JES_Zjet_Stat8: 8.489028610506622 - syst_JES_Zjet_Stat9: 12.043056215097561 - syst_JES_Zjet_Veto: 9.434137374450302 - syst_JES_Zjet_dPhi: 14.706062525366876 + syst_JES_Zjet_MC: 1.05009910e+02 + syst_JES_Zjet_MuScale: 7.45723655e+00 + syst_JES_Zjet_MuSmearID: 1.17592411e+00 + syst_JES_Zjet_MuSmearMS: 2.90892261e+00 + syst_JES_Zjet_OOC: 6.53730926e+01 + syst_JES_Zjet_Stat1: 1.58610498e+00 + syst_JES_Zjet_Stat10: 6.49131518e+00 + syst_JES_Zjet_Stat11: 1.46201478e+00 + syst_JES_Zjet_Stat12: 1.24512257e+00 + syst_JES_Zjet_Stat13: 6.93892369e-03 + syst_JES_Zjet_Stat2: 7.59738992e-02 + syst_JES_Zjet_Stat3: 5.78504970e-01 + syst_JES_Zjet_Stat4: 1.08019347e+00 + syst_JES_Zjet_Stat5: 1.36184166e+00 + syst_JES_Zjet_Stat6: 2.77210714e+00 + syst_JES_Zjet_Stat7: 4.63987371e+00 + syst_JES_Zjet_Stat8: 8.48902861e+00 + syst_JES_Zjet_Stat9: 1.20430562e+01 + syst_JES_Zjet_Veto: 9.43413737e+00 + syst_JES_Zjet_dPhi: 1.47060625e+01 syst_PRW: 4.212 syst_Unfolding_bias: 9.307 - syst_cleaning: 46.740257067649935 + syst_cleaning: 4.67402571e+01 syst_lumi: 114.466 - syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.002768262406275821 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 57.04770294017105 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 45.57192217802536 + syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 2.76826241e-03 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 5.70477029e+01 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 4.55719222e+01 syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 176.49858094330392 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0031524223622478 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 23.465895998235396 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 1.76498581e+02 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 3.15242236e-03 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 2.34658960e+01 - stat: 18.381 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 38.54028286092358 - syst_JER_NP1: 5.873125637171402 - syst_JER_NP2: 7.374027444348171 - syst_JER_NP3: 5.171909391124326 - syst_JER_NP4: 6.887900315045217 - syst_JER_NP5: 3.400337263787226 + syst_JER_NP0: 3.85402829e+01 + syst_JER_NP1: 5.87312564e+00 + syst_JER_NP2: 7.37402744e+00 + syst_JER_NP3: 5.17190939e+00 + syst_JER_NP4: 6.88790032e+00 + syst_JER_NP5: 3.40033726e+00 syst_JER_NP6: 0.0 - syst_JER_NP7: 1.702281630635777 - syst_JER_NP8: 3.8407481042109497 - syst_JES_EtaIntercalibration_Modelling: 17.105328848052 - syst_JES_EtaIntercalibration_NonClosure: 0.00010823585496497915 + syst_JER_NP7: 1.70228163e+00 + syst_JER_NP8: 3.84074810e+00 + syst_JES_EtaIntercalibration_Modelling: 1.71053288e+01 + syst_JES_EtaIntercalibration_NonClosure: 1.08235855e-04 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 2.659511374294158 - syst_JES_EtaIntercalibration_Stat101: 0.24906996507005816 - syst_JES_EtaIntercalibration_Stat102: 0.006353053532554247 - syst_JES_EtaIntercalibration_Stat103: 0.053710895542710885 - syst_JES_EtaIntercalibration_Stat104: 0.053710895542710885 - syst_JES_EtaIntercalibration_Stat105: 0.053710895542710885 + syst_JES_EtaIntercalibration_Stat100: 2.65951137e+00 + syst_JES_EtaIntercalibration_Stat101: 2.49069965e-01 + syst_JES_EtaIntercalibration_Stat102: 6.35305353e-03 + syst_JES_EtaIntercalibration_Stat103: 5.37108955e-02 + syst_JES_EtaIntercalibration_Stat104: 5.37108955e-02 + syst_JES_EtaIntercalibration_Stat105: 5.37108955e-02 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 6.685716117215867e-10 - syst_JES_EtaIntercalibration_Stat111: 6.685716117215867e-10 + syst_JES_EtaIntercalibration_Stat110: 6.68571612e-10 + syst_JES_EtaIntercalibration_Stat111: 6.68571612e-10 syst_JES_EtaIntercalibration_Stat112: 0.0 - syst_JES_EtaIntercalibration_Stat113: 0.025726225685086417 - syst_JES_EtaIntercalibration_Stat114: 0.45277724103581 - syst_JES_EtaIntercalibration_Stat115: 7.4485872989446795 - syst_JES_EtaIntercalibration_Stat116: 6.361281376420949 - syst_JES_EtaIntercalibration_Stat117: 0.4098175783199154 - syst_JES_EtaIntercalibration_Stat118: 0.3196929574998486 - syst_JES_EtaIntercalibration_Stat119: 6.021320951419215 - syst_JES_EtaIntercalibration_Stat12: 0.013828869910444599 - syst_JES_EtaIntercalibration_Stat120: 7.67876780479785 - syst_JES_EtaIntercalibration_Stat121: 0.7049869467408598 - syst_JES_EtaIntercalibration_Stat122: 0.008496783200129329 - syst_JES_EtaIntercalibration_Stat123: 0.053710895542710885 - syst_JES_EtaIntercalibration_Stat124: 0.053710895542710885 - syst_JES_EtaIntercalibration_Stat125: 0.053710895542710885 + syst_JES_EtaIntercalibration_Stat113: 2.57262257e-02 + syst_JES_EtaIntercalibration_Stat114: 4.52777241e-01 + syst_JES_EtaIntercalibration_Stat115: 7.44858730e+00 + syst_JES_EtaIntercalibration_Stat116: 6.36128138e+00 + syst_JES_EtaIntercalibration_Stat117: 4.09817578e-01 + syst_JES_EtaIntercalibration_Stat118: 3.19692957e-01 + syst_JES_EtaIntercalibration_Stat119: 6.02132095e+00 + syst_JES_EtaIntercalibration_Stat12: 1.38288699e-02 + syst_JES_EtaIntercalibration_Stat120: 7.67876780e+00 + syst_JES_EtaIntercalibration_Stat121: 7.04986947e-01 + syst_JES_EtaIntercalibration_Stat122: 8.49678320e-03 + syst_JES_EtaIntercalibration_Stat123: 5.37108955e-02 + syst_JES_EtaIntercalibration_Stat124: 5.37108955e-02 + syst_JES_EtaIntercalibration_Stat125: 5.37108955e-02 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 2.3850339620223438e-32 - syst_JES_EtaIntercalibration_Stat129: 6.685716117215867e-10 - syst_JES_EtaIntercalibration_Stat13: 0.0289029029683871 - syst_JES_EtaIntercalibration_Stat130: 6.685716117215867e-10 - syst_JES_EtaIntercalibration_Stat131: 0.002187580169959492 - syst_JES_EtaIntercalibration_Stat132: 0.05904136939695335 - syst_JES_EtaIntercalibration_Stat133: 0.5653676149197087 - syst_JES_EtaIntercalibration_Stat134: 4.064418246194651 - syst_JES_EtaIntercalibration_Stat135: 3.0753218937210463 - syst_JES_EtaIntercalibration_Stat136: 0.3819358453981506 - syst_JES_EtaIntercalibration_Stat137: 0.2705140800402079 - syst_JES_EtaIntercalibration_Stat138: 2.6667899711075864 - syst_JES_EtaIntercalibration_Stat139: 2.7510348961799815 - syst_JES_EtaIntercalibration_Stat14: 0.005335582512715926 - syst_JES_EtaIntercalibration_Stat140: 0.4291419679721386 - syst_JES_EtaIntercalibration_Stat141: 0.0029349600674158337 + syst_JES_EtaIntercalibration_Stat128: 2.38503396e-32 + syst_JES_EtaIntercalibration_Stat129: 6.68571612e-10 + syst_JES_EtaIntercalibration_Stat13: 2.89029030e-02 + syst_JES_EtaIntercalibration_Stat130: 6.68571612e-10 + syst_JES_EtaIntercalibration_Stat131: 2.18758017e-03 + syst_JES_EtaIntercalibration_Stat132: 5.90413694e-02 + syst_JES_EtaIntercalibration_Stat133: 5.65367615e-01 + syst_JES_EtaIntercalibration_Stat134: 4.06441825e+00 + syst_JES_EtaIntercalibration_Stat135: 3.07532189e+00 + syst_JES_EtaIntercalibration_Stat136: 3.81935845e-01 + syst_JES_EtaIntercalibration_Stat137: 2.70514080e-01 + syst_JES_EtaIntercalibration_Stat138: 2.66678997e+00 + syst_JES_EtaIntercalibration_Stat139: 2.75103490e+00 + syst_JES_EtaIntercalibration_Stat14: 5.33558251e-03 + syst_JES_EtaIntercalibration_Stat140: 4.29141968e-01 + syst_JES_EtaIntercalibration_Stat141: 2.93496007e-03 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 0.053710895542710885 - syst_JES_EtaIntercalibration_Stat144: 0.053710895542710885 + syst_JES_EtaIntercalibration_Stat143: 5.37108955e-02 + syst_JES_EtaIntercalibration_Stat144: 5.37108955e-02 syst_JES_EtaIntercalibration_Stat145: 0.0 - syst_JES_EtaIntercalibration_Stat146: 2.3850339620223438e-32 - syst_JES_EtaIntercalibration_Stat147: 6.685716117215867e-10 + syst_JES_EtaIntercalibration_Stat146: 2.38503396e-32 + syst_JES_EtaIntercalibration_Stat147: 6.68571612e-10 syst_JES_EtaIntercalibration_Stat148: 0.0 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 0.01286910379776785 - syst_JES_EtaIntercalibration_Stat151: 0.11654766020817407 - syst_JES_EtaIntercalibration_Stat152: 0.7193496090219276 - syst_JES_EtaIntercalibration_Stat153: 0.536066199270202 - syst_JES_EtaIntercalibration_Stat154: 0.033867998446173345 - syst_JES_EtaIntercalibration_Stat155: 0.05605183672280507 - syst_JES_EtaIntercalibration_Stat156: 0.8443875576416319 - syst_JES_EtaIntercalibration_Stat157: 0.907346036526308 - syst_JES_EtaIntercalibration_Stat158: 0.09031183020512873 - syst_JES_EtaIntercalibration_Stat159: 0.0003391373766755572 + syst_JES_EtaIntercalibration_Stat150: 1.28691038e-02 + syst_JES_EtaIntercalibration_Stat151: 1.16547660e-01 + syst_JES_EtaIntercalibration_Stat152: 7.19349609e-01 + syst_JES_EtaIntercalibration_Stat153: 5.36066199e-01 + syst_JES_EtaIntercalibration_Stat154: 3.38679984e-02 + syst_JES_EtaIntercalibration_Stat155: 5.60518367e-02 + syst_JES_EtaIntercalibration_Stat156: 8.44387558e-01 + syst_JES_EtaIntercalibration_Stat157: 9.07346037e-01 + syst_JES_EtaIntercalibration_Stat158: 9.03118302e-02 + syst_JES_EtaIntercalibration_Stat159: 3.39137377e-04 syst_JES_EtaIntercalibration_Stat16: 0.0 syst_JES_EtaIntercalibration_Stat160: 0.0 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 - syst_JES_EtaIntercalibration_Stat164: 2.3850339620223438e-32 + syst_JES_EtaIntercalibration_Stat164: 2.38503396e-32 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 - syst_JES_EtaIntercalibration_Stat168: 7.684243407779323e-07 - syst_JES_EtaIntercalibration_Stat169: 0.019915368437465573 + syst_JES_EtaIntercalibration_Stat168: 7.68424341e-07 + syst_JES_EtaIntercalibration_Stat169: 1.99153684e-02 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 0.3043815204640387 - syst_JES_EtaIntercalibration_Stat171: 0.1944185369248519 - syst_JES_EtaIntercalibration_Stat172: 0.011728989758286942 - syst_JES_EtaIntercalibration_Stat173: 0.01833375779811657 - syst_JES_EtaIntercalibration_Stat174: 0.1690642111743346 - syst_JES_EtaIntercalibration_Stat175: 0.1866944763510694 - syst_JES_EtaIntercalibration_Stat176: 0.011584069435220078 - syst_JES_EtaIntercalibration_Stat177: 9.953280666127124e-06 + syst_JES_EtaIntercalibration_Stat170: 3.04381520e-01 + syst_JES_EtaIntercalibration_Stat171: 1.94418537e-01 + syst_JES_EtaIntercalibration_Stat172: 1.17289898e-02 + syst_JES_EtaIntercalibration_Stat173: 1.83337578e-02 + syst_JES_EtaIntercalibration_Stat174: 1.69064211e-01 + syst_JES_EtaIntercalibration_Stat175: 1.86694476e-01 + syst_JES_EtaIntercalibration_Stat176: 1.15840694e-02 + syst_JES_EtaIntercalibration_Stat177: 9.95328067e-06 syst_JES_EtaIntercalibration_Stat178: 0.0 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 @@ -13448,17 +13448,17 @@ bins: syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 syst_JES_EtaIntercalibration_Stat184: 0.0 - syst_JES_EtaIntercalibration_Stat185: 1.7372469599915841e-10 - syst_JES_EtaIntercalibration_Stat186: 0.00017813813404209667 - syst_JES_EtaIntercalibration_Stat187: 0.0027889833326859453 - syst_JES_EtaIntercalibration_Stat188: 0.0025050303531095187 - syst_JES_EtaIntercalibration_Stat189: 0.0004130082898683754 + syst_JES_EtaIntercalibration_Stat185: 1.73724696e-10 + syst_JES_EtaIntercalibration_Stat186: 1.78138134e-04 + syst_JES_EtaIntercalibration_Stat187: 2.78898333e-03 + syst_JES_EtaIntercalibration_Stat188: 2.50503035e-03 + syst_JES_EtaIntercalibration_Stat189: 4.13008290e-04 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 0.00012874732647709622 - syst_JES_EtaIntercalibration_Stat191: 0.0010432414677341002 - syst_JES_EtaIntercalibration_Stat192: 0.006844378934571054 - syst_JES_EtaIntercalibration_Stat193: 0.0015276688122757497 - syst_JES_EtaIntercalibration_Stat194: 6.102881020468939e-08 + syst_JES_EtaIntercalibration_Stat190: 1.28747326e-04 + syst_JES_EtaIntercalibration_Stat191: 1.04324147e-03 + syst_JES_EtaIntercalibration_Stat192: 6.84437893e-03 + syst_JES_EtaIntercalibration_Stat193: 1.52766881e-03 + syst_JES_EtaIntercalibration_Stat194: 6.10288102e-08 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 syst_JES_EtaIntercalibration_Stat197: 0.0 @@ -13467,42 +13467,42 @@ bins: syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 - syst_JES_EtaIntercalibration_Stat201: 2.9572490032968137e-06 - syst_JES_EtaIntercalibration_Stat202: 0.0003273489030071737 - syst_JES_EtaIntercalibration_Stat203: 0.0002689565392400787 - syst_JES_EtaIntercalibration_Stat204: 5.704904426219601e-06 - syst_JES_EtaIntercalibration_Stat205: 5.10781783152062e-08 - syst_JES_EtaIntercalibration_Stat206: 0.00026503484676547727 - syst_JES_EtaIntercalibration_Stat207: 0.00024380717790910094 - syst_JES_EtaIntercalibration_Stat208: 6.069106029721346e-10 - syst_JES_EtaIntercalibration_Stat209: 3.262316497767257e-19 + syst_JES_EtaIntercalibration_Stat201: 2.95724900e-06 + syst_JES_EtaIntercalibration_Stat202: 3.27348903e-04 + syst_JES_EtaIntercalibration_Stat203: 2.68956539e-04 + syst_JES_EtaIntercalibration_Stat204: 5.70490443e-06 + syst_JES_EtaIntercalibration_Stat205: 5.10781783e-08 + syst_JES_EtaIntercalibration_Stat206: 2.65034847e-04 + syst_JES_EtaIntercalibration_Stat207: 2.43807178e-04 + syst_JES_EtaIntercalibration_Stat208: 6.06910603e-10 + syst_JES_EtaIntercalibration_Stat209: 3.26231650e-19 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 syst_JES_EtaIntercalibration_Stat211: 0.0 syst_JES_EtaIntercalibration_Stat212: 0.0 syst_JES_EtaIntercalibration_Stat213: 0.0 - syst_JES_EtaIntercalibration_Stat214: 4.162986370838158e-19 - syst_JES_EtaIntercalibration_Stat215: 6.424176498851073e-11 - syst_JES_EtaIntercalibration_Stat216: 7.543028354049851e-11 - syst_JES_EtaIntercalibration_Stat217: 2.049016105353949e-18 - syst_JES_EtaIntercalibration_Stat218: 1.3507108795001245e-24 - syst_JES_EtaIntercalibration_Stat219: 7.13395153592138e-11 + syst_JES_EtaIntercalibration_Stat214: 4.16298637e-19 + syst_JES_EtaIntercalibration_Stat215: 6.42417650e-11 + syst_JES_EtaIntercalibration_Stat216: 7.54302835e-11 + syst_JES_EtaIntercalibration_Stat217: 2.04901611e-18 + syst_JES_EtaIntercalibration_Stat218: 1.35071088e-24 + syst_JES_EtaIntercalibration_Stat219: 7.13395154e-11 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 1.0760277075893539e-10 - syst_JES_EtaIntercalibration_Stat221: 8.550381207363119e-15 - syst_JES_EtaIntercalibration_Stat222: 3.594871451109205e-25 + syst_JES_EtaIntercalibration_Stat220: 1.07602771e-10 + syst_JES_EtaIntercalibration_Stat221: 8.55038121e-15 + syst_JES_EtaIntercalibration_Stat222: 3.59487145e-25 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 syst_JES_EtaIntercalibration_Stat225: 0.0 - syst_JES_EtaIntercalibration_Stat226: 3.9138e-42 - syst_JES_EtaIntercalibration_Stat227: 1.1546635473158403e-25 - syst_JES_EtaIntercalibration_Stat228: 1.321530615422889e-25 + syst_JES_EtaIntercalibration_Stat226: 3.91380000e-42 + syst_JES_EtaIntercalibration_Stat227: 1.15466355e-25 + syst_JES_EtaIntercalibration_Stat228: 1.32153062e-25 syst_JES_EtaIntercalibration_Stat229: 0.0 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 1.356195782326431e-41 - syst_JES_EtaIntercalibration_Stat231: 8.559796862894835e-26 - syst_JES_EtaIntercalibration_Stat232: 1.2240403057089257e-25 - syst_JES_EtaIntercalibration_Stat233: 3.0501414721287934e-41 + syst_JES_EtaIntercalibration_Stat230: 1.35619578e-41 + syst_JES_EtaIntercalibration_Stat231: 8.55979686e-26 + syst_JES_EtaIntercalibration_Stat232: 1.22404031e-25 + syst_JES_EtaIntercalibration_Stat233: 3.05014147e-41 syst_JES_EtaIntercalibration_Stat234: 0.0 syst_JES_EtaIntercalibration_Stat235: 0.0 syst_JES_EtaIntercalibration_Stat236: 0.0 @@ -13519,17 +13519,17 @@ bins: syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 syst_JES_EtaIntercalibration_Stat27: 0.0 - syst_JES_EtaIntercalibration_Stat28: 0.001201263837589395 - syst_JES_EtaIntercalibration_Stat29: 0.012161397617050434 + syst_JES_EtaIntercalibration_Stat28: 1.20126384e-03 + syst_JES_EtaIntercalibration_Stat29: 1.21613976e-02 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 0.08672689721188001 - syst_JES_EtaIntercalibration_Stat31: 0.0783648050785555 - syst_JES_EtaIntercalibration_Stat32: 0.004797261380204335 - syst_JES_EtaIntercalibration_Stat33: 0.025562523193143512 - syst_JES_EtaIntercalibration_Stat34: 0.12974151947237245 - syst_JES_EtaIntercalibration_Stat35: 0.02955475088712473 - syst_JES_EtaIntercalibration_Stat36: 0.006950073003213707 - syst_JES_EtaIntercalibration_Stat37: 0.0008768507213317441 + syst_JES_EtaIntercalibration_Stat30: 8.67268972e-02 + syst_JES_EtaIntercalibration_Stat31: 7.83648051e-02 + syst_JES_EtaIntercalibration_Stat32: 4.79726138e-03 + syst_JES_EtaIntercalibration_Stat33: 2.55625232e-02 + syst_JES_EtaIntercalibration_Stat34: 1.29741519e-01 + syst_JES_EtaIntercalibration_Stat35: 2.95547509e-02 + syst_JES_EtaIntercalibration_Stat36: 6.95007300e-03 + syst_JES_EtaIntercalibration_Stat37: 8.76850721e-04 syst_JES_EtaIntercalibration_Stat38: 0.0 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 @@ -13544,20 +13544,20 @@ bins: syst_JES_EtaIntercalibration_Stat48: 0.0 syst_JES_EtaIntercalibration_Stat49: 0.0 syst_JES_EtaIntercalibration_Stat5: 0.0 - syst_JES_EtaIntercalibration_Stat50: 0.001216938897397893 - syst_JES_EtaIntercalibration_Stat51: 0.0671991344810333 - syst_JES_EtaIntercalibration_Stat52: 0.10000460039418187 - syst_JES_EtaIntercalibration_Stat53: 0.30412390155987407 - syst_JES_EtaIntercalibration_Stat54: 0.022717919375462185 - syst_JES_EtaIntercalibration_Stat55: 0.06764810474063555 - syst_JES_EtaIntercalibration_Stat56: 0.20233505893690296 - syst_JES_EtaIntercalibration_Stat57: 0.24989287204720342 - syst_JES_EtaIntercalibration_Stat58: 0.03828958607767914 - syst_JES_EtaIntercalibration_Stat59: 0.002899015641127174 + syst_JES_EtaIntercalibration_Stat50: 1.21693890e-03 + syst_JES_EtaIntercalibration_Stat51: 6.71991345e-02 + syst_JES_EtaIntercalibration_Stat52: 1.00004600e-01 + syst_JES_EtaIntercalibration_Stat53: 3.04123902e-01 + syst_JES_EtaIntercalibration_Stat54: 2.27179194e-02 + syst_JES_EtaIntercalibration_Stat55: 6.76481047e-02 + syst_JES_EtaIntercalibration_Stat56: 2.02335059e-01 + syst_JES_EtaIntercalibration_Stat57: 2.49892872e-01 + syst_JES_EtaIntercalibration_Stat58: 3.82895861e-02 + syst_JES_EtaIntercalibration_Stat59: 2.89901564e-03 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 0.053710895542710885 - syst_JES_EtaIntercalibration_Stat62: 0.053710895542710885 + syst_JES_EtaIntercalibration_Stat61: 5.37108955e-02 + syst_JES_EtaIntercalibration_Stat62: 5.37108955e-02 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 @@ -13565,223 +13565,223 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 0.001201263837589395 + syst_JES_EtaIntercalibration_Stat7: 1.20126384e-03 syst_JES_EtaIntercalibration_Stat70: 0.0 syst_JES_EtaIntercalibration_Stat71: 0.0 - syst_JES_EtaIntercalibration_Stat72: 0.014289419162443239 - syst_JES_EtaIntercalibration_Stat73: 0.2461111131176323 - syst_JES_EtaIntercalibration_Stat74: 1.6357392059860887 - syst_JES_EtaIntercalibration_Stat75: 1.3488630805237425 - syst_JES_EtaIntercalibration_Stat76: 0.09078746981274453 - syst_JES_EtaIntercalibration_Stat77: 0.20703019103502754 - syst_JES_EtaIntercalibration_Stat78: 1.4314554935449444 - syst_JES_EtaIntercalibration_Stat79: 1.3721791309810831 - syst_JES_EtaIntercalibration_Stat8: 0.026858847704248224 - syst_JES_EtaIntercalibration_Stat80: 0.17318481457679827 - syst_JES_EtaIntercalibration_Stat81: 0.006304664939550713 - syst_JES_EtaIntercalibration_Stat82: 0.053710895542710885 - syst_JES_EtaIntercalibration_Stat83: 0.053710895542710885 - syst_JES_EtaIntercalibration_Stat84: 0.053710895542710885 + syst_JES_EtaIntercalibration_Stat72: 1.42894192e-02 + syst_JES_EtaIntercalibration_Stat73: 2.46111113e-01 + syst_JES_EtaIntercalibration_Stat74: 1.63573921e+00 + syst_JES_EtaIntercalibration_Stat75: 1.34886308e+00 + syst_JES_EtaIntercalibration_Stat76: 9.07874698e-02 + syst_JES_EtaIntercalibration_Stat77: 2.07030191e-01 + syst_JES_EtaIntercalibration_Stat78: 1.43145549e+00 + syst_JES_EtaIntercalibration_Stat79: 1.37217913e+00 + syst_JES_EtaIntercalibration_Stat8: 2.68588477e-02 + syst_JES_EtaIntercalibration_Stat80: 1.73184815e-01 + syst_JES_EtaIntercalibration_Stat81: 6.30466494e-03 + syst_JES_EtaIntercalibration_Stat82: 5.37108955e-02 + syst_JES_EtaIntercalibration_Stat83: 5.37108955e-02 + syst_JES_EtaIntercalibration_Stat84: 5.37108955e-02 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 syst_JES_EtaIntercalibration_Stat89: 0.0 - syst_JES_EtaIntercalibration_Stat9: 0.006361208847381133 + syst_JES_EtaIntercalibration_Stat9: 6.36120885e-03 syst_JES_EtaIntercalibration_Stat90: 0.0 syst_JES_EtaIntercalibration_Stat91: 0.0 syst_JES_EtaIntercalibration_Stat92: 0.0 - syst_JES_EtaIntercalibration_Stat93: 0.015016880501622167 - syst_JES_EtaIntercalibration_Stat94: 0.34262243986639285 - syst_JES_EtaIntercalibration_Stat95: 2.9674933866817628 - syst_JES_EtaIntercalibration_Stat96: 2.810657930093949 - syst_JES_EtaIntercalibration_Stat97: 0.22245487182797322 - syst_JES_EtaIntercalibration_Stat98: 0.2676229950882397 - syst_JES_EtaIntercalibration_Stat99: 2.358905837459393 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.020163387289837985 - syst_JES_Flavour_Comp: 3.6882422642771173 - syst_JES_Gjet_Generator: 60.26311708665592 - syst_JES_Gjet_OOC: 34.69014125079343 - syst_JES_Gjet_Purity: 14.546820503120262 - syst_JES_Gjet_Stat1: 0.0008223383792575901 - syst_JES_Gjet_Stat10: 0.5434702953014084 - syst_JES_Gjet_Stat11: 0.5008121660612889 - syst_JES_Gjet_Stat12: 0.16965160624055406 - syst_JES_Gjet_Stat13: 0.002993386209629489 - syst_JES_Gjet_Stat14: 1.7892087725186931e-06 - syst_JES_Gjet_Stat15: 7.517097878486223e-18 + syst_JES_EtaIntercalibration_Stat93: 1.50168805e-02 + syst_JES_EtaIntercalibration_Stat94: 3.42622440e-01 + syst_JES_EtaIntercalibration_Stat95: 2.96749339e+00 + syst_JES_EtaIntercalibration_Stat96: 2.81065793e+00 + syst_JES_EtaIntercalibration_Stat97: 2.22454872e-01 + syst_JES_EtaIntercalibration_Stat98: 2.67622995e-01 + syst_JES_EtaIntercalibration_Stat99: 2.35890584e+00 + syst_JES_EtaIntercalibration_TotalStat_MJB: 2.01633873e-02 + syst_JES_Flavour_Comp: 3.68824226e+00 + syst_JES_Gjet_Generator: 6.02631171e+01 + syst_JES_Gjet_OOC: 3.46901413e+01 + syst_JES_Gjet_Purity: 1.45468205e+01 + syst_JES_Gjet_Stat1: 8.22338379e-04 + syst_JES_Gjet_Stat10: 5.43470295e-01 + syst_JES_Gjet_Stat11: 5.00812166e-01 + syst_JES_Gjet_Stat12: 1.69651606e-01 + syst_JES_Gjet_Stat13: 2.99338621e-03 + syst_JES_Gjet_Stat14: 1.78920877e-06 + syst_JES_Gjet_Stat15: 7.51709788e-18 syst_JES_Gjet_Stat2: 0.0 - syst_JES_Gjet_Stat3: 0.3352730748211076 - syst_JES_Gjet_Stat4: 0.5412720642153999 - syst_JES_Gjet_Stat5: 0.8551343403232032 - syst_JES_Gjet_Stat6: 2.730983110529979 - syst_JES_Gjet_Stat7: 4.89683438560056 - syst_JES_Gjet_Stat8: 2.4040737821456313 - syst_JES_Gjet_Stat9: 1.5993009316573288 - syst_JES_Gjet_Veto: 12.118475894269874 - syst_JES_Gjet_dPhi: 6.3501410023715215 - syst_JES_LArESZee: 41.060302297352855 - syst_JES_LArEsmear: 3.937341488872917 - syst_JES_LAr_JVT: 6.408433096319255 - syst_JES_MJB_Alpha: 1.1880136489114732e-17 - syst_JES_MJB_Asym: 0.005966498533478409 - syst_JES_MJB_Beta: 0.0001336277198039389 - syst_JES_MJB_Stat1: 0.002036207013051473 - syst_JES_MJB_Stat10: 6.779246860824585e-42 + syst_JES_Gjet_Stat3: 3.35273075e-01 + syst_JES_Gjet_Stat4: 5.41272064e-01 + syst_JES_Gjet_Stat5: 8.55134340e-01 + syst_JES_Gjet_Stat6: 2.73098311e+00 + syst_JES_Gjet_Stat7: 4.89683439e+00 + syst_JES_Gjet_Stat8: 2.40407378e+00 + syst_JES_Gjet_Stat9: 1.59930093e+00 + syst_JES_Gjet_Veto: 1.21184759e+01 + syst_JES_Gjet_dPhi: 6.35014100e+00 + syst_JES_LArESZee: 4.10603023e+01 + syst_JES_LArEsmear: 3.93734149e+00 + syst_JES_LAr_JVT: 6.40843310e+00 + syst_JES_MJB_Alpha: 1.18801365e-17 + syst_JES_MJB_Asym: 5.96649853e-03 + syst_JES_MJB_Beta: 1.33627720e-04 + syst_JES_MJB_Stat1: 2.03620701e-03 + syst_JES_MJB_Stat10: 6.77924686e-42 syst_JES_MJB_Stat11: 0.0 syst_JES_MJB_Stat12: 0.0 syst_JES_MJB_Stat13: 0.0 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 0.0027904733805395815 - syst_JES_MJB_Stat3: 0.00012782625259991897 - syst_JES_MJB_Stat4: 1.6637124687790106e-09 - syst_JES_MJB_Stat5: 7.40278515154938e-15 - syst_JES_MJB_Stat6: 2.2984314216439e-18 - syst_JES_MJB_Stat7: 7.377670414839633e-32 + syst_JES_MJB_Stat2: 2.79047338e-03 + syst_JES_MJB_Stat3: 1.27826253e-04 + syst_JES_MJB_Stat4: 1.66371247e-09 + syst_JES_MJB_Stat5: 7.40278515e-15 + syst_JES_MJB_Stat6: 2.29843142e-18 + syst_JES_MJB_Stat7: 7.37767041e-32 syst_JES_MJB_Stat8: 0.0 syst_JES_MJB_Stat9: 0.0 - syst_JES_MJB_Threshold: 0.008793190248709509 - syst_JES_Pileup_MuOffset: 1.0855714485928598e-16 - syst_JES_Pileup_NPVOffset: 4.172681721626992 - syst_JES_Pileup_Pt_term: 10.5862089885851 + syst_JES_MJB_Threshold: 8.79319025e-03 + syst_JES_Pileup_MuOffset: 1.08557145e-16 + syst_JES_Pileup_NPVOffset: 4.17268172e+00 + syst_JES_Pileup_Pt_term: 1.05862090e+01 syst_JES_PunchThrough_MC15: 0.0 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 52.878008339951684 - syst_JES_Zjet_MuScale: 3.915655883756896 - syst_JES_Zjet_MuSmearID: 0.6795115377975565 - syst_JES_Zjet_MuSmearMS: 2.560924198409629 - syst_JES_Zjet_OOC: 26.977803376109037 - syst_JES_Zjet_Stat1: 0.6409951072356168 - syst_JES_Zjet_Stat10: 5.805655690789801 - syst_JES_Zjet_Stat11: 1.250956034399291 - syst_JES_Zjet_Stat12: 1.0937479451409269 - syst_JES_Zjet_Stat13: 0.02082640811565931 - syst_JES_Zjet_Stat2: 0.03904523940517588 - syst_JES_Zjet_Stat3: 0.25201339250127164 - syst_JES_Zjet_Stat4: 0.4283430255064275 - syst_JES_Zjet_Stat5: 0.5088638521254973 - syst_JES_Zjet_Stat6: 0.9991006405763134 - syst_JES_Zjet_Stat7: 1.6653143847334053 - syst_JES_Zjet_Stat8: 3.188655516044341 - syst_JES_Zjet_Stat9: 6.19338187099746 - syst_JES_Zjet_Veto: 4.433281487792085 - syst_JES_Zjet_dPhi: 6.150900970589594 + syst_JES_Zjet_MC: 5.28780083e+01 + syst_JES_Zjet_MuScale: 3.91565588e+00 + syst_JES_Zjet_MuSmearID: 6.79511538e-01 + syst_JES_Zjet_MuSmearMS: 2.56092420e+00 + syst_JES_Zjet_OOC: 2.69778034e+01 + syst_JES_Zjet_Stat1: 6.40995107e-01 + syst_JES_Zjet_Stat10: 5.80565569e+00 + syst_JES_Zjet_Stat11: 1.25095603e+00 + syst_JES_Zjet_Stat12: 1.09374795e+00 + syst_JES_Zjet_Stat13: 2.08264081e-02 + syst_JES_Zjet_Stat2: 3.90452394e-02 + syst_JES_Zjet_Stat3: 2.52013393e-01 + syst_JES_Zjet_Stat4: 4.28343026e-01 + syst_JES_Zjet_Stat5: 5.08863852e-01 + syst_JES_Zjet_Stat6: 9.99100641e-01 + syst_JES_Zjet_Stat7: 1.66531438e+00 + syst_JES_Zjet_Stat8: 3.18865552e+00 + syst_JES_Zjet_Stat9: 6.19338187e+00 + syst_JES_Zjet_Veto: 4.43328149e+00 + syst_JES_Zjet_dPhi: 6.15090097e+00 syst_PRW: 2.158 syst_Unfolding_bias: 2.901 - syst_cleaning: 18.06528992294339 + syst_cleaning: 1.80652899e+01 syst_lumi: 58.654 - syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.01529378790489786 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 26.22831818855338 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 21.147394047494366 + syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.52937879e-02 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 2.62283182e+01 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 2.11473940e+01 syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 81.90890130352135 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.01754036791254676 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 11.071434053454864 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 8.19089013e+01 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.75403679e-02 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.10714341e+01 - stat: 8.497 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 17.696357676086908 - syst_JER_NP1: 2.435705031402612 - syst_JER_NP2: 2.765898045843339 - syst_JER_NP3: 2.5523240389887802 - syst_JER_NP4: 2.932656261821354 - syst_JER_NP5: 1.394543727353144 + syst_JER_NP0: 1.76963577e+01 + syst_JER_NP1: 2.43570503e+00 + syst_JER_NP2: 2.76589805e+00 + syst_JER_NP3: 2.55232404e+00 + syst_JER_NP4: 2.93265626e+00 + syst_JER_NP5: 1.39454373e+00 syst_JER_NP6: 0.0 - syst_JER_NP7: 0.9004677950931949 - syst_JER_NP8: 1.4574263300421053 - syst_JES_EtaIntercalibration_Modelling: 8.932176610434883 - syst_JES_EtaIntercalibration_NonClosure: 0.0003741229744348775 + syst_JER_NP7: 9.00467795e-01 + syst_JER_NP8: 1.45742633e+00 + syst_JES_EtaIntercalibration_Modelling: 8.93217661e+00 + syst_JES_EtaIntercalibration_NonClosure: 3.74122974e-04 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 0.8182005988753615 - syst_JES_EtaIntercalibration_Stat101: 0.06536709875770838 - syst_JES_EtaIntercalibration_Stat102: 0.00266511498444251 - syst_JES_EtaIntercalibration_Stat103: 0.007704161992066366 - syst_JES_EtaIntercalibration_Stat104: 0.007704161992066366 - syst_JES_EtaIntercalibration_Stat105: 0.007704161992066366 + syst_JES_EtaIntercalibration_Stat100: 8.18200599e-01 + syst_JES_EtaIntercalibration_Stat101: 6.53670988e-02 + syst_JES_EtaIntercalibration_Stat102: 2.66511498e-03 + syst_JES_EtaIntercalibration_Stat103: 7.70416199e-03 + syst_JES_EtaIntercalibration_Stat104: 7.70416199e-03 + syst_JES_EtaIntercalibration_Stat105: 7.70416199e-03 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 6.425908496080534e-07 - syst_JES_EtaIntercalibration_Stat111: 6.425908496080534e-07 + syst_JES_EtaIntercalibration_Stat110: 6.42590850e-07 + syst_JES_EtaIntercalibration_Stat111: 6.42590850e-07 syst_JES_EtaIntercalibration_Stat112: 0.0 - syst_JES_EtaIntercalibration_Stat113: 0.005682709386155516 - syst_JES_EtaIntercalibration_Stat114: 0.2456852610556848 - syst_JES_EtaIntercalibration_Stat115: 3.705836527357892 - syst_JES_EtaIntercalibration_Stat116: 3.156422500236621 - syst_JES_EtaIntercalibration_Stat117: 0.24019489602195962 - syst_JES_EtaIntercalibration_Stat118: 0.16718155303441826 - syst_JES_EtaIntercalibration_Stat119: 3.165171717300659 - syst_JES_EtaIntercalibration_Stat12: 0.011295650180489834 - syst_JES_EtaIntercalibration_Stat120: 3.8437390399843743 - syst_JES_EtaIntercalibration_Stat121: 0.3624930447608616 - syst_JES_EtaIntercalibration_Stat122: 0.00416190734519643 - syst_JES_EtaIntercalibration_Stat123: 0.007704161992066366 - syst_JES_EtaIntercalibration_Stat124: 0.007704161992066366 - syst_JES_EtaIntercalibration_Stat125: 0.007704161992066366 + syst_JES_EtaIntercalibration_Stat113: 5.68270939e-03 + syst_JES_EtaIntercalibration_Stat114: 2.45685261e-01 + syst_JES_EtaIntercalibration_Stat115: 3.70583653e+00 + syst_JES_EtaIntercalibration_Stat116: 3.15642250e+00 + syst_JES_EtaIntercalibration_Stat117: 2.40194896e-01 + syst_JES_EtaIntercalibration_Stat118: 1.67181553e-01 + syst_JES_EtaIntercalibration_Stat119: 3.16517172e+00 + syst_JES_EtaIntercalibration_Stat12: 1.12956502e-02 + syst_JES_EtaIntercalibration_Stat120: 3.84373904e+00 + syst_JES_EtaIntercalibration_Stat121: 3.62493045e-01 + syst_JES_EtaIntercalibration_Stat122: 4.16190735e-03 + syst_JES_EtaIntercalibration_Stat123: 7.70416199e-03 + syst_JES_EtaIntercalibration_Stat124: 7.70416199e-03 + syst_JES_EtaIntercalibration_Stat125: 7.70416199e-03 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 3.555034282535121e-23 - syst_JES_EtaIntercalibration_Stat129: 6.425908496080534e-07 - syst_JES_EtaIntercalibration_Stat13: 0.009723309775997061 - syst_JES_EtaIntercalibration_Stat130: 6.425908496080534e-07 - syst_JES_EtaIntercalibration_Stat131: 0.0003789727166960704 - syst_JES_EtaIntercalibration_Stat132: 0.019125574579604135 - syst_JES_EtaIntercalibration_Stat133: 0.461394473308903 - syst_JES_EtaIntercalibration_Stat134: 5.465595553093917 - syst_JES_EtaIntercalibration_Stat135: 3.747911518432632 - syst_JES_EtaIntercalibration_Stat136: 0.45149787374914624 - syst_JES_EtaIntercalibration_Stat137: 0.26495159463569945 - syst_JES_EtaIntercalibration_Stat138: 3.775199887092073 - syst_JES_EtaIntercalibration_Stat139: 3.9348137389208144 - syst_JES_EtaIntercalibration_Stat14: 0.0007654798544050653 - syst_JES_EtaIntercalibration_Stat140: 0.4869544845260181 - syst_JES_EtaIntercalibration_Stat141: 0.00047992622412302297 + syst_JES_EtaIntercalibration_Stat128: 3.55503428e-23 + syst_JES_EtaIntercalibration_Stat129: 6.42590850e-07 + syst_JES_EtaIntercalibration_Stat13: 9.72330978e-03 + syst_JES_EtaIntercalibration_Stat130: 6.42590850e-07 + syst_JES_EtaIntercalibration_Stat131: 3.78972717e-04 + syst_JES_EtaIntercalibration_Stat132: 1.91255746e-02 + syst_JES_EtaIntercalibration_Stat133: 4.61394473e-01 + syst_JES_EtaIntercalibration_Stat134: 5.46559555e+00 + syst_JES_EtaIntercalibration_Stat135: 3.74791152e+00 + syst_JES_EtaIntercalibration_Stat136: 4.51497874e-01 + syst_JES_EtaIntercalibration_Stat137: 2.64951595e-01 + syst_JES_EtaIntercalibration_Stat138: 3.77519989e+00 + syst_JES_EtaIntercalibration_Stat139: 3.93481374e+00 + syst_JES_EtaIntercalibration_Stat14: 7.65479854e-04 + syst_JES_EtaIntercalibration_Stat140: 4.86954485e-01 + syst_JES_EtaIntercalibration_Stat141: 4.79926224e-04 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 0.007704161992066366 - syst_JES_EtaIntercalibration_Stat144: 0.007704161992066366 + syst_JES_EtaIntercalibration_Stat143: 7.70416199e-03 + syst_JES_EtaIntercalibration_Stat144: 7.70416199e-03 syst_JES_EtaIntercalibration_Stat145: 0.0 - syst_JES_EtaIntercalibration_Stat146: 3.555034282535121e-23 - syst_JES_EtaIntercalibration_Stat147: 6.425908496080534e-07 + syst_JES_EtaIntercalibration_Stat146: 3.55503428e-23 + syst_JES_EtaIntercalibration_Stat147: 6.42590850e-07 syst_JES_EtaIntercalibration_Stat148: 0.0 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 0.002582701163286802 - syst_JES_EtaIntercalibration_Stat151: 0.014732693872812263 - syst_JES_EtaIntercalibration_Stat152: 0.3109868646743782 - syst_JES_EtaIntercalibration_Stat153: 0.3626752369544962 - syst_JES_EtaIntercalibration_Stat154: 0.06853333641374831 - syst_JES_EtaIntercalibration_Stat155: 0.056291200910977196 - syst_JES_EtaIntercalibration_Stat156: 0.058802041631222296 - syst_JES_EtaIntercalibration_Stat157: 0.49110360414071486 - syst_JES_EtaIntercalibration_Stat158: 0.04067804905597121 - syst_JES_EtaIntercalibration_Stat159: 0.0011755479443595655 + syst_JES_EtaIntercalibration_Stat150: 2.58270116e-03 + syst_JES_EtaIntercalibration_Stat151: 1.47326939e-02 + syst_JES_EtaIntercalibration_Stat152: 3.10986865e-01 + syst_JES_EtaIntercalibration_Stat153: 3.62675237e-01 + syst_JES_EtaIntercalibration_Stat154: 6.85333364e-02 + syst_JES_EtaIntercalibration_Stat155: 5.62912009e-02 + syst_JES_EtaIntercalibration_Stat156: 5.88020416e-02 + syst_JES_EtaIntercalibration_Stat157: 4.91103604e-01 + syst_JES_EtaIntercalibration_Stat158: 4.06780491e-02 + syst_JES_EtaIntercalibration_Stat159: 1.17554794e-03 syst_JES_EtaIntercalibration_Stat16: 0.0 syst_JES_EtaIntercalibration_Stat160: 0.0 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 - syst_JES_EtaIntercalibration_Stat164: 3.555034282535121e-23 + syst_JES_EtaIntercalibration_Stat164: 3.55503428e-23 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 - syst_JES_EtaIntercalibration_Stat168: 7.31445056036337e-05 - syst_JES_EtaIntercalibration_Stat169: 0.018883818383737965 + syst_JES_EtaIntercalibration_Stat168: 7.31445056e-05 + syst_JES_EtaIntercalibration_Stat169: 1.88838184e-02 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 0.3112645297813421 - syst_JES_EtaIntercalibration_Stat171: 0.24876528596249114 - syst_JES_EtaIntercalibration_Stat172: 0.02258885289252201 - syst_JES_EtaIntercalibration_Stat173: 0.005959120803440722 - syst_JES_EtaIntercalibration_Stat174: 0.19302291962355142 - syst_JES_EtaIntercalibration_Stat175: 0.25365813115293584 - syst_JES_EtaIntercalibration_Stat176: 0.014590005166208817 - syst_JES_EtaIntercalibration_Stat177: 0.000130170946069966 + syst_JES_EtaIntercalibration_Stat170: 3.11264530e-01 + syst_JES_EtaIntercalibration_Stat171: 2.48765286e-01 + syst_JES_EtaIntercalibration_Stat172: 2.25888529e-02 + syst_JES_EtaIntercalibration_Stat173: 5.95912080e-03 + syst_JES_EtaIntercalibration_Stat174: 1.93022920e-01 + syst_JES_EtaIntercalibration_Stat175: 2.53658131e-01 + syst_JES_EtaIntercalibration_Stat176: 1.45900052e-02 + syst_JES_EtaIntercalibration_Stat177: 1.30170946e-04 syst_JES_EtaIntercalibration_Stat178: 0.0 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 @@ -13790,17 +13790,17 @@ bins: syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 syst_JES_EtaIntercalibration_Stat184: 0.0 - syst_JES_EtaIntercalibration_Stat185: 1.6731610801115355e-07 - syst_JES_EtaIntercalibration_Stat186: 0.0009822353027660938 - syst_JES_EtaIntercalibration_Stat187: 0.052535550820373055 - syst_JES_EtaIntercalibration_Stat188: 0.04491697312820623 - syst_JES_EtaIntercalibration_Stat189: 0.005126066096615903 + syst_JES_EtaIntercalibration_Stat185: 1.67316108e-07 + syst_JES_EtaIntercalibration_Stat186: 9.82235303e-04 + syst_JES_EtaIntercalibration_Stat187: 5.25355508e-02 + syst_JES_EtaIntercalibration_Stat188: 4.49169731e-02 + syst_JES_EtaIntercalibration_Stat189: 5.12606610e-03 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 0.0009705750911186625 - syst_JES_EtaIntercalibration_Stat191: 0.02542937081408032 - syst_JES_EtaIntercalibration_Stat192: 0.03449087297749942 - syst_JES_EtaIntercalibration_Stat193: 0.007210527511909374 - syst_JES_EtaIntercalibration_Stat194: 5.984235540150471e-06 + syst_JES_EtaIntercalibration_Stat190: 9.70575091e-04 + syst_JES_EtaIntercalibration_Stat191: 2.54293708e-02 + syst_JES_EtaIntercalibration_Stat192: 3.44908730e-02 + syst_JES_EtaIntercalibration_Stat193: 7.21052751e-03 + syst_JES_EtaIntercalibration_Stat194: 5.98423554e-06 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 syst_JES_EtaIntercalibration_Stat197: 0.0 @@ -13808,43 +13808,43 @@ bins: syst_JES_EtaIntercalibration_Stat199: 0.0 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 2.715855666267999e-38 - syst_JES_EtaIntercalibration_Stat201: 8.392131612409329e-05 - syst_JES_EtaIntercalibration_Stat202: 0.0010899439286036691 - syst_JES_EtaIntercalibration_Stat203: 0.0008213727290335369 - syst_JES_EtaIntercalibration_Stat204: 8.312775416189228e-05 - syst_JES_EtaIntercalibration_Stat205: 4.791718559139299e-06 - syst_JES_EtaIntercalibration_Stat206: 0.0007756659848156293 - syst_JES_EtaIntercalibration_Stat207: 0.0007546078103889464 - syst_JES_EtaIntercalibration_Stat208: 5.912355431636363e-07 - syst_JES_EtaIntercalibration_Stat209: 1.285159908608285e-13 + syst_JES_EtaIntercalibration_Stat200: 2.71585567e-38 + syst_JES_EtaIntercalibration_Stat201: 8.39213161e-05 + syst_JES_EtaIntercalibration_Stat202: 1.08994393e-03 + syst_JES_EtaIntercalibration_Stat203: 8.21372729e-04 + syst_JES_EtaIntercalibration_Stat204: 8.31277542e-05 + syst_JES_EtaIntercalibration_Stat205: 4.79171856e-06 + syst_JES_EtaIntercalibration_Stat206: 7.75665985e-04 + syst_JES_EtaIntercalibration_Stat207: 7.54607810e-04 + syst_JES_EtaIntercalibration_Stat208: 5.91235543e-07 + syst_JES_EtaIntercalibration_Stat209: 1.28515991e-13 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 syst_JES_EtaIntercalibration_Stat211: 0.0 syst_JES_EtaIntercalibration_Stat212: 0.0 - syst_JES_EtaIntercalibration_Stat213: 2.800726155838875e-38 - syst_JES_EtaIntercalibration_Stat214: 1.6402931107344811e-13 - syst_JES_EtaIntercalibration_Stat215: 6.18950467194799e-08 - syst_JES_EtaIntercalibration_Stat216: 7.203177632128754e-08 - syst_JES_EtaIntercalibration_Stat217: 8.071356762778489e-13 - syst_JES_EtaIntercalibration_Stat218: 2.455368702964995e-17 - syst_JES_EtaIntercalibration_Stat219: 6.966742346319405e-08 + syst_JES_EtaIntercalibration_Stat213: 2.80072616e-38 + syst_JES_EtaIntercalibration_Stat214: 1.64029311e-13 + syst_JES_EtaIntercalibration_Stat215: 6.18950467e-08 + syst_JES_EtaIntercalibration_Stat216: 7.20317763e-08 + syst_JES_EtaIntercalibration_Stat217: 8.07135676e-13 + syst_JES_EtaIntercalibration_Stat218: 2.45536870e-17 + syst_JES_EtaIntercalibration_Stat219: 6.96674235e-08 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 1.0366617324373463e-07 - syst_JES_EtaIntercalibration_Stat221: 1.2397258131808824e-10 - syst_JES_EtaIntercalibration_Stat222: 6.5367597477649434e-18 + syst_JES_EtaIntercalibration_Stat220: 1.03666173e-07 + syst_JES_EtaIntercalibration_Stat221: 1.23972581e-10 + syst_JES_EtaIntercalibration_Stat222: 6.53675975e-18 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 syst_JES_EtaIntercalibration_Stat225: 0.0 - syst_JES_EtaIntercalibration_Stat226: 1.0661200530428082e-30 - syst_JES_EtaIntercalibration_Stat227: 2.099762129385136e-18 - syst_JES_EtaIntercalibration_Stat228: 2.403485125812099e-18 - syst_JES_EtaIntercalibration_Stat229: 4.584738487634818e-38 + syst_JES_EtaIntercalibration_Stat226: 1.06612005e-30 + syst_JES_EtaIntercalibration_Stat227: 2.09976213e-18 + syst_JES_EtaIntercalibration_Stat228: 2.40348513e-18 + syst_JES_EtaIntercalibration_Stat229: 4.58473849e-38 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 3.811377802055314e-30 - syst_JES_EtaIntercalibration_Stat231: 1.5562740546201042e-18 - syst_JES_EtaIntercalibration_Stat232: 2.2256852877260078e-18 - syst_JES_EtaIntercalibration_Stat233: 8.582311751503787e-30 + syst_JES_EtaIntercalibration_Stat230: 3.81137780e-30 + syst_JES_EtaIntercalibration_Stat231: 1.55627405e-18 + syst_JES_EtaIntercalibration_Stat232: 2.22568529e-18 + syst_JES_EtaIntercalibration_Stat233: 8.58231175e-30 syst_JES_EtaIntercalibration_Stat234: 0.0 syst_JES_EtaIntercalibration_Stat235: 0.0 syst_JES_EtaIntercalibration_Stat236: 0.0 @@ -13861,17 +13861,17 @@ bins: syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 syst_JES_EtaIntercalibration_Stat27: 0.0 - syst_JES_EtaIntercalibration_Stat28: 0.00011748500627739696 - syst_JES_EtaIntercalibration_Stat29: 0.004475316636842581 + syst_JES_EtaIntercalibration_Stat28: 1.17485006e-04 + syst_JES_EtaIntercalibration_Stat29: 4.47531664e-03 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 0.013495177719744931 - syst_JES_EtaIntercalibration_Stat31: 0.013728960739983198 - syst_JES_EtaIntercalibration_Stat32: 0.0007460827970138435 - syst_JES_EtaIntercalibration_Stat33: 0.01246166036158505 - syst_JES_EtaIntercalibration_Stat34: 0.025173232028287508 - syst_JES_EtaIntercalibration_Stat35: 0.008179249400158916 - syst_JES_EtaIntercalibration_Stat36: 0.002273401141461841 - syst_JES_EtaIntercalibration_Stat37: 8.575383548273511e-05 + syst_JES_EtaIntercalibration_Stat30: 1.34951777e-02 + syst_JES_EtaIntercalibration_Stat31: 1.37289607e-02 + syst_JES_EtaIntercalibration_Stat32: 7.46082797e-04 + syst_JES_EtaIntercalibration_Stat33: 1.24616604e-02 + syst_JES_EtaIntercalibration_Stat34: 2.51732320e-02 + syst_JES_EtaIntercalibration_Stat35: 8.17924940e-03 + syst_JES_EtaIntercalibration_Stat36: 2.27340114e-03 + syst_JES_EtaIntercalibration_Stat37: 8.57538355e-05 syst_JES_EtaIntercalibration_Stat38: 0.0 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 @@ -13886,20 +13886,20 @@ bins: syst_JES_EtaIntercalibration_Stat48: 0.0 syst_JES_EtaIntercalibration_Stat49: 0.0 syst_JES_EtaIntercalibration_Stat5: 0.0 - syst_JES_EtaIntercalibration_Stat50: 0.00011900921098805755 - syst_JES_EtaIntercalibration_Stat51: 0.014151516420511268 - syst_JES_EtaIntercalibration_Stat52: 0.04622961990704661 - syst_JES_EtaIntercalibration_Stat53: 0.07370083768180657 - syst_JES_EtaIntercalibration_Stat54: 0.007184595099934303 - syst_JES_EtaIntercalibration_Stat55: 0.014228660934887722 - syst_JES_EtaIntercalibration_Stat56: 0.03089813345090606 - syst_JES_EtaIntercalibration_Stat57: 0.05026586416247114 - syst_JES_EtaIntercalibration_Stat58: 0.014524050907030036 - syst_JES_EtaIntercalibration_Stat59: 0.00033955401381812584 + syst_JES_EtaIntercalibration_Stat50: 1.19009211e-04 + syst_JES_EtaIntercalibration_Stat51: 1.41515164e-02 + syst_JES_EtaIntercalibration_Stat52: 4.62296199e-02 + syst_JES_EtaIntercalibration_Stat53: 7.37008377e-02 + syst_JES_EtaIntercalibration_Stat54: 7.18459510e-03 + syst_JES_EtaIntercalibration_Stat55: 1.42286609e-02 + syst_JES_EtaIntercalibration_Stat56: 3.08981335e-02 + syst_JES_EtaIntercalibration_Stat57: 5.02658642e-02 + syst_JES_EtaIntercalibration_Stat58: 1.45240509e-02 + syst_JES_EtaIntercalibration_Stat59: 3.39554014e-04 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 0.007704161992066366 - syst_JES_EtaIntercalibration_Stat62: 0.007704161992066366 + syst_JES_EtaIntercalibration_Stat61: 7.70416199e-03 + syst_JES_EtaIntercalibration_Stat62: 7.70416199e-03 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 @@ -13907,223 +13907,223 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 0.00011748500627739696 + syst_JES_EtaIntercalibration_Stat7: 1.17485006e-04 syst_JES_EtaIntercalibration_Stat70: 0.0 syst_JES_EtaIntercalibration_Stat71: 0.0 - syst_JES_EtaIntercalibration_Stat72: 0.001320688740771269 - syst_JES_EtaIntercalibration_Stat73: 0.06027453421636703 - syst_JES_EtaIntercalibration_Stat74: 0.38487397521786276 - syst_JES_EtaIntercalibration_Stat75: 0.33435826219790055 - syst_JES_EtaIntercalibration_Stat76: 0.01317385847047098 - syst_JES_EtaIntercalibration_Stat77: 0.036403976087784694 - syst_JES_EtaIntercalibration_Stat78: 0.33880488116318513 - syst_JES_EtaIntercalibration_Stat79: 0.3512943352802604 - syst_JES_EtaIntercalibration_Stat8: 0.0060397106511818925 - syst_JES_EtaIntercalibration_Stat80: 0.03880032345226004 - syst_JES_EtaIntercalibration_Stat81: 0.000907075007923821 - syst_JES_EtaIntercalibration_Stat82: 0.007704161992066366 - syst_JES_EtaIntercalibration_Stat83: 0.007704161992066366 - syst_JES_EtaIntercalibration_Stat84: 0.007704161992066366 + syst_JES_EtaIntercalibration_Stat72: 1.32068874e-03 + syst_JES_EtaIntercalibration_Stat73: 6.02745342e-02 + syst_JES_EtaIntercalibration_Stat74: 3.84873975e-01 + syst_JES_EtaIntercalibration_Stat75: 3.34358262e-01 + syst_JES_EtaIntercalibration_Stat76: 1.31738585e-02 + syst_JES_EtaIntercalibration_Stat77: 3.64039761e-02 + syst_JES_EtaIntercalibration_Stat78: 3.38804881e-01 + syst_JES_EtaIntercalibration_Stat79: 3.51294335e-01 + syst_JES_EtaIntercalibration_Stat8: 6.03971065e-03 + syst_JES_EtaIntercalibration_Stat80: 3.88003235e-02 + syst_JES_EtaIntercalibration_Stat81: 9.07075008e-04 + syst_JES_EtaIntercalibration_Stat82: 7.70416199e-03 + syst_JES_EtaIntercalibration_Stat83: 7.70416199e-03 + syst_JES_EtaIntercalibration_Stat84: 7.70416199e-03 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 syst_JES_EtaIntercalibration_Stat89: 0.0 - syst_JES_EtaIntercalibration_Stat9: 0.002265022957941045 + syst_JES_EtaIntercalibration_Stat9: 2.26502296e-03 syst_JES_EtaIntercalibration_Stat90: 0.0 syst_JES_EtaIntercalibration_Stat91: 0.0 syst_JES_EtaIntercalibration_Stat92: 0.0 - syst_JES_EtaIntercalibration_Stat93: 0.0015354630409098098 - syst_JES_EtaIntercalibration_Stat94: 0.08338095870760902 - syst_JES_EtaIntercalibration_Stat95: 0.8226571643157313 - syst_JES_EtaIntercalibration_Stat96: 0.8626753271074813 - syst_JES_EtaIntercalibration_Stat97: 0.04473796319402572 - syst_JES_EtaIntercalibration_Stat98: 0.05367215386026538 - syst_JES_EtaIntercalibration_Stat99: 0.7134719686154459 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.06714772073570331 - syst_JES_Flavour_Comp: 1.7913961036018806 - syst_JES_Gjet_Generator: 32.5117717142576 - syst_JES_Gjet_OOC: 18.083456527998177 - syst_JES_Gjet_Purity: 7.217108631578162 - syst_JES_Gjet_Stat1: 0.0027910014331777046 - syst_JES_Gjet_Stat10: 0.4982048072831092 - syst_JES_Gjet_Stat11: 0.3124238907318069 - syst_JES_Gjet_Stat12: 0.19680754558705313 - syst_JES_Gjet_Stat13: 0.009609505437326107 - syst_JES_Gjet_Stat14: 0.00017537432756811947 - syst_JES_Gjet_Stat15: 2.9617591371544497e-12 + syst_JES_EtaIntercalibration_Stat93: 1.53546304e-03 + syst_JES_EtaIntercalibration_Stat94: 8.33809587e-02 + syst_JES_EtaIntercalibration_Stat95: 8.22657164e-01 + syst_JES_EtaIntercalibration_Stat96: 8.62675327e-01 + syst_JES_EtaIntercalibration_Stat97: 4.47379632e-02 + syst_JES_EtaIntercalibration_Stat98: 5.36721539e-02 + syst_JES_EtaIntercalibration_Stat99: 7.13471969e-01 + syst_JES_EtaIntercalibration_TotalStat_MJB: 6.71477207e-02 + syst_JES_Flavour_Comp: 1.79139610e+00 + syst_JES_Gjet_Generator: 3.25117717e+01 + syst_JES_Gjet_OOC: 1.80834565e+01 + syst_JES_Gjet_Purity: 7.21710863e+00 + syst_JES_Gjet_Stat1: 2.79100143e-03 + syst_JES_Gjet_Stat10: 4.98204807e-01 + syst_JES_Gjet_Stat11: 3.12423891e-01 + syst_JES_Gjet_Stat12: 1.96807546e-01 + syst_JES_Gjet_Stat13: 9.60950544e-03 + syst_JES_Gjet_Stat14: 1.75374328e-04 + syst_JES_Gjet_Stat15: 2.96175914e-12 syst_JES_Gjet_Stat2: 0.0 - syst_JES_Gjet_Stat3: 0.0971074285263491 - syst_JES_Gjet_Stat4: 0.1620721839181542 - syst_JES_Gjet_Stat5: 0.26921565240527895 - syst_JES_Gjet_Stat6: 1.078167634229483 - syst_JES_Gjet_Stat7: 2.055124570433627 - syst_JES_Gjet_Stat8: 1.3718685022625166 - syst_JES_Gjet_Stat9: 1.4999112198726965 - syst_JES_Gjet_Veto: 6.972480387207984 - syst_JES_Gjet_dPhi: 3.1094055702014813 - syst_JES_LArESZee: 24.40517311964822 - syst_JES_LArEsmear: 2.325556868795085 - syst_JES_LAr_JVT: 3.4350943218491103 - syst_JES_MJB_Alpha: 4.680867307160125e-12 - syst_JES_MJB_Asym: 0.031124534936284583 - syst_JES_MJB_Beta: 0.00046176474529786263 - syst_JES_MJB_Stat1: 0.0018644559528184085 - syst_JES_MJB_Stat10: 1.4202816622064792e-30 - syst_JES_MJB_Stat11: 1.4185496113989106e-38 - syst_JES_MJB_Stat12: 8.254088123469485e-39 - syst_JES_MJB_Stat13: 5.675930496403211e-39 + syst_JES_Gjet_Stat3: 9.71074285e-02 + syst_JES_Gjet_Stat4: 1.62072184e-01 + syst_JES_Gjet_Stat5: 2.69215652e-01 + syst_JES_Gjet_Stat6: 1.07816763e+00 + syst_JES_Gjet_Stat7: 2.05512457e+00 + syst_JES_Gjet_Stat8: 1.37186850e+00 + syst_JES_Gjet_Stat9: 1.49991122e+00 + syst_JES_Gjet_Veto: 6.97248039e+00 + syst_JES_Gjet_dPhi: 3.10940557e+00 + syst_JES_LArESZee: 2.44051731e+01 + syst_JES_LArEsmear: 2.32555687e+00 + syst_JES_LAr_JVT: 3.43509432e+00 + syst_JES_MJB_Alpha: 4.68086731e-12 + syst_JES_MJB_Asym: 3.11245349e-02 + syst_JES_MJB_Beta: 4.61764745e-04 + syst_JES_MJB_Stat1: 1.86445595e-03 + syst_JES_MJB_Stat10: 1.42028166e-30 + syst_JES_MJB_Stat11: 1.41854961e-38 + syst_JES_MJB_Stat12: 8.25408812e-39 + syst_JES_MJB_Stat13: 5.67593050e-39 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 0.009289929601455546 - syst_JES_MJB_Stat3: 0.00031975274540924585 - syst_JES_MJB_Stat4: 1.6041426546518954e-06 - syst_JES_MJB_Stat5: 1.0736982956119469e-10 - syst_JES_MJB_Stat6: 9.057759698181444e-13 - syst_JES_MJB_Stat7: 1.0994192501043448e-22 + syst_JES_MJB_Stat2: 9.28992960e-03 + syst_JES_MJB_Stat3: 3.19752745e-04 + syst_JES_MJB_Stat4: 1.60414265e-06 + syst_JES_MJB_Stat5: 1.07369830e-10 + syst_JES_MJB_Stat6: 9.05775970e-13 + syst_JES_MJB_Stat7: 1.09941925e-22 syst_JES_MJB_Stat8: 0.0 syst_JES_MJB_Stat9: 0.0 - syst_JES_MJB_Threshold: 0.0347810883527241 - syst_JES_Pileup_MuOffset: 4.277283366811229e-11 - syst_JES_Pileup_NPVOffset: 1.9459529156688247 - syst_JES_Pileup_Pt_term: 5.519509217312713 + syst_JES_MJB_Threshold: 3.47810884e-02 + syst_JES_Pileup_MuOffset: 4.27728337e-11 + syst_JES_Pileup_NPVOffset: 1.94595292e+00 + syst_JES_Pileup_Pt_term: 5.51950922e+00 syst_JES_PunchThrough_MC15: 0.0 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 28.081153822448247 - syst_JES_Zjet_MuScale: 2.169077914690941 - syst_JES_Zjet_MuSmearID: 0.4308673461751308 - syst_JES_Zjet_MuSmearMS: 1.8689362616204972 - syst_JES_Zjet_OOC: 12.340619949986305 - syst_JES_Zjet_Stat1: 0.21589596452921483 - syst_JES_Zjet_Stat10: 3.9397815558099154 - syst_JES_Zjet_Stat11: 1.5055134506207508 - syst_JES_Zjet_Stat12: 0.6753860155496262 - syst_JES_Zjet_Stat13: 0.08046020382773088 - syst_JES_Zjet_Stat2: 0.02102566290869327 - syst_JES_Zjet_Stat3: 0.0962673838846782 - syst_JES_Zjet_Stat4: 0.15305472060671635 - syst_JES_Zjet_Stat5: 0.15796285892576137 - syst_JES_Zjet_Stat6: 0.3752749339817409 - syst_JES_Zjet_Stat7: 0.6802367308518411 - syst_JES_Zjet_Stat8: 1.2374246886174527 - syst_JES_Zjet_Stat9: 3.0145852119321495 - syst_JES_Zjet_Veto: 2.2791421631833324 - syst_JES_Zjet_dPhi: 2.795558620383411 + syst_JES_Zjet_MC: 2.80811538e+01 + syst_JES_Zjet_MuScale: 2.16907791e+00 + syst_JES_Zjet_MuSmearID: 4.30867346e-01 + syst_JES_Zjet_MuSmearMS: 1.86893626e+00 + syst_JES_Zjet_OOC: 1.23406199e+01 + syst_JES_Zjet_Stat1: 2.15895965e-01 + syst_JES_Zjet_Stat10: 3.93978156e+00 + syst_JES_Zjet_Stat11: 1.50551345e+00 + syst_JES_Zjet_Stat12: 6.75386016e-01 + syst_JES_Zjet_Stat13: 8.04602038e-02 + syst_JES_Zjet_Stat2: 2.10256629e-02 + syst_JES_Zjet_Stat3: 9.62673839e-02 + syst_JES_Zjet_Stat4: 1.53054721e-01 + syst_JES_Zjet_Stat5: 1.57962859e-01 + syst_JES_Zjet_Stat6: 3.75274934e-01 + syst_JES_Zjet_Stat7: 6.80236731e-01 + syst_JES_Zjet_Stat8: 1.23742469e+00 + syst_JES_Zjet_Stat9: 3.01458521e+00 + syst_JES_Zjet_Veto: 2.27914216e+00 + syst_JES_Zjet_dPhi: 2.79555862e+00 syst_PRW: 1.1415 syst_Unfolding_bias: 1.2508 - syst_cleaning: 7.524894733482988 + syst_cleaning: 7.52489473e+00 syst_lumi: 31.03 - syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.05425457447994593 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 12.871354658698516 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 10.308074165429739 + syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 5.42545745e-02 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.28713547e+01 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 1.03080742e+01 syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 39.92241013202985 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.06275787659728459 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 5.616311311706288 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 3.99224101e+01 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 6.27578766e-02 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 5.61631131e+00 - stat: 5.558 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 8.151871993597544 - syst_JER_NP1: 0.9706431012478274 - syst_JER_NP2: 1.1239870728793993 - syst_JER_NP3: 1.159262571637677 - syst_JER_NP4: 1.1459900992155212 - syst_JER_NP5: 0.6583773594983351 + syst_JER_NP0: 8.15187199e+00 + syst_JER_NP1: 9.70643101e-01 + syst_JER_NP2: 1.12398707e+00 + syst_JER_NP3: 1.15926257e+00 + syst_JER_NP4: 1.14599010e+00 + syst_JER_NP5: 6.58377359e-01 syst_JER_NP6: 0.0 - syst_JER_NP7: 0.48260879343418517 - syst_JER_NP8: 0.6817111485079292 - syst_JES_EtaIntercalibration_Modelling: 5.227733925899443 - syst_JES_EtaIntercalibration_NonClosure: 0.0004798646762369574 + syst_JER_NP7: 4.82608793e-01 + syst_JER_NP8: 6.81711149e-01 + syst_JES_EtaIntercalibration_Modelling: 5.22773393e+00 + syst_JES_EtaIntercalibration_NonClosure: 4.79864676e-04 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 0.2135446733121667 - syst_JES_EtaIntercalibration_Stat101: 0.010318432729828695 - syst_JES_EtaIntercalibration_Stat102: 0.0004940703974827373 - syst_JES_EtaIntercalibration_Stat103: 0.0006597381526029854 - syst_JES_EtaIntercalibration_Stat104: 0.0006597381526029854 - syst_JES_EtaIntercalibration_Stat105: 0.0006597381526029854 + syst_JES_EtaIntercalibration_Stat100: 2.13544673e-01 + syst_JES_EtaIntercalibration_Stat101: 1.03184327e-02 + syst_JES_EtaIntercalibration_Stat102: 4.94070397e-04 + syst_JES_EtaIntercalibration_Stat103: 6.59738153e-04 + syst_JES_EtaIntercalibration_Stat104: 6.59738153e-04 + syst_JES_EtaIntercalibration_Stat105: 6.59738153e-04 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 4.52065260775477e-05 - syst_JES_EtaIntercalibration_Stat111: 4.52065260775477e-05 + syst_JES_EtaIntercalibration_Stat110: 4.52065261e-05 + syst_JES_EtaIntercalibration_Stat111: 4.52065261e-05 syst_JES_EtaIntercalibration_Stat112: 0.0 - syst_JES_EtaIntercalibration_Stat113: 0.002612465967242444 - syst_JES_EtaIntercalibration_Stat114: 0.1136211119246771 - syst_JES_EtaIntercalibration_Stat115: 1.3582432330035736 - syst_JES_EtaIntercalibration_Stat116: 1.13087192466698 - syst_JES_EtaIntercalibration_Stat117: 0.10854551533803687 - syst_JES_EtaIntercalibration_Stat118: 0.04936014054882745 - syst_JES_EtaIntercalibration_Stat119: 1.2125925974951355 - syst_JES_EtaIntercalibration_Stat12: 0.003560000386235934 - syst_JES_EtaIntercalibration_Stat120: 1.488668532615639 - syst_JES_EtaIntercalibration_Stat121: 0.1344889262169938 - syst_JES_EtaIntercalibration_Stat122: 0.0015043529530997701 - syst_JES_EtaIntercalibration_Stat123: 0.0006597381526029854 - syst_JES_EtaIntercalibration_Stat124: 0.0006597381526029854 - syst_JES_EtaIntercalibration_Stat125: 0.0006597381526029854 + syst_JES_EtaIntercalibration_Stat113: 2.61246597e-03 + syst_JES_EtaIntercalibration_Stat114: 1.13621112e-01 + syst_JES_EtaIntercalibration_Stat115: 1.35824323e+00 + syst_JES_EtaIntercalibration_Stat116: 1.13087192e+00 + syst_JES_EtaIntercalibration_Stat117: 1.08545515e-01 + syst_JES_EtaIntercalibration_Stat118: 4.93601405e-02 + syst_JES_EtaIntercalibration_Stat119: 1.21259260e+00 + syst_JES_EtaIntercalibration_Stat12: 3.56000039e-03 + syst_JES_EtaIntercalibration_Stat120: 1.48866853e+00 + syst_JES_EtaIntercalibration_Stat121: 1.34488926e-01 + syst_JES_EtaIntercalibration_Stat122: 1.50435295e-03 + syst_JES_EtaIntercalibration_Stat123: 6.59738153e-04 + syst_JES_EtaIntercalibration_Stat124: 6.59738153e-04 + syst_JES_EtaIntercalibration_Stat125: 6.59738153e-04 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 1.6982758168212842e-16 - syst_JES_EtaIntercalibration_Stat129: 4.520652607749109e-05 - syst_JES_EtaIntercalibration_Stat13: 0.0011587302134232974 - syst_JES_EtaIntercalibration_Stat130: 4.52065260775477e-05 - syst_JES_EtaIntercalibration_Stat131: 4.05040081349982e-05 - syst_JES_EtaIntercalibration_Stat132: 0.009687174304202439 - syst_JES_EtaIntercalibration_Stat133: 0.3305684841299908 - syst_JES_EtaIntercalibration_Stat134: 3.7105283653409797 - syst_JES_EtaIntercalibration_Stat135: 2.432465159051615 - syst_JES_EtaIntercalibration_Stat136: 0.25058355891797846 - syst_JES_EtaIntercalibration_Stat137: 0.18622146170621687 - syst_JES_EtaIntercalibration_Stat138: 2.542252544496711 - syst_JES_EtaIntercalibration_Stat139: 2.853841446191431 - syst_JES_EtaIntercalibration_Stat14: 7.500646022177023e-05 - syst_JES_EtaIntercalibration_Stat140: 0.2943027820119953 - syst_JES_EtaIntercalibration_Stat141: 4.854441677474352e-05 + syst_JES_EtaIntercalibration_Stat128: 1.69827582e-16 + syst_JES_EtaIntercalibration_Stat129: 4.52065261e-05 + syst_JES_EtaIntercalibration_Stat13: 1.15873021e-03 + syst_JES_EtaIntercalibration_Stat130: 4.52065261e-05 + syst_JES_EtaIntercalibration_Stat131: 4.05040081e-05 + syst_JES_EtaIntercalibration_Stat132: 9.68717430e-03 + syst_JES_EtaIntercalibration_Stat133: 3.30568484e-01 + syst_JES_EtaIntercalibration_Stat134: 3.71052837e+00 + syst_JES_EtaIntercalibration_Stat135: 2.43246516e+00 + syst_JES_EtaIntercalibration_Stat136: 2.50583559e-01 + syst_JES_EtaIntercalibration_Stat137: 1.86221462e-01 + syst_JES_EtaIntercalibration_Stat138: 2.54225254e+00 + syst_JES_EtaIntercalibration_Stat139: 2.85384145e+00 + syst_JES_EtaIntercalibration_Stat14: 7.50064602e-05 + syst_JES_EtaIntercalibration_Stat140: 2.94302782e-01 + syst_JES_EtaIntercalibration_Stat141: 4.85444168e-05 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 0.0006597381526029854 - syst_JES_EtaIntercalibration_Stat144: 0.0006597381526029854 + syst_JES_EtaIntercalibration_Stat143: 6.59738153e-04 + syst_JES_EtaIntercalibration_Stat144: 6.59738153e-04 syst_JES_EtaIntercalibration_Stat145: 0.0 - syst_JES_EtaIntercalibration_Stat146: 1.6982758168212842e-16 - syst_JES_EtaIntercalibration_Stat147: 4.520652607749109e-05 + syst_JES_EtaIntercalibration_Stat146: 1.69827582e-16 + syst_JES_EtaIntercalibration_Stat147: 4.52065261e-05 syst_JES_EtaIntercalibration_Stat148: 0.0 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 0.0018597018766458241 - syst_JES_EtaIntercalibration_Stat151: 0.06725275384696154 - syst_JES_EtaIntercalibration_Stat152: 0.7077699533570212 - syst_JES_EtaIntercalibration_Stat153: 0.3710752080104517 - syst_JES_EtaIntercalibration_Stat154: 0.06300707956253804 - syst_JES_EtaIntercalibration_Stat155: 0.05885472963152579 - syst_JES_EtaIntercalibration_Stat156: 0.5316650073119351 - syst_JES_EtaIntercalibration_Stat157: 0.7122284377220557 - syst_JES_EtaIntercalibration_Stat158: 0.07193210272889289 - syst_JES_EtaIntercalibration_Stat159: 0.0015393283860177462 + syst_JES_EtaIntercalibration_Stat150: 1.85970188e-03 + syst_JES_EtaIntercalibration_Stat151: 6.72527538e-02 + syst_JES_EtaIntercalibration_Stat152: 7.07769953e-01 + syst_JES_EtaIntercalibration_Stat153: 3.71075208e-01 + syst_JES_EtaIntercalibration_Stat154: 6.30070796e-02 + syst_JES_EtaIntercalibration_Stat155: 5.88547296e-02 + syst_JES_EtaIntercalibration_Stat156: 5.31665007e-01 + syst_JES_EtaIntercalibration_Stat157: 7.12228438e-01 + syst_JES_EtaIntercalibration_Stat158: 7.19321027e-02 + syst_JES_EtaIntercalibration_Stat159: 1.53932839e-03 syst_JES_EtaIntercalibration_Stat16: 0.0 syst_JES_EtaIntercalibration_Stat160: 0.0 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 - syst_JES_EtaIntercalibration_Stat164: 1.6982758168212842e-16 + syst_JES_EtaIntercalibration_Stat164: 1.69827582e-16 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 - syst_JES_EtaIntercalibration_Stat168: 0.0007957907435375206 - syst_JES_EtaIntercalibration_Stat169: 0.017257715578836035 + syst_JES_EtaIntercalibration_Stat168: 7.95790744e-04 + syst_JES_EtaIntercalibration_Stat169: 1.72577156e-02 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 0.185736022354308 - syst_JES_EtaIntercalibration_Stat171: 0.15090595581354632 - syst_JES_EtaIntercalibration_Stat172: 0.021768874586206795 - syst_JES_EtaIntercalibration_Stat173: 0.009986138931038361 - syst_JES_EtaIntercalibration_Stat174: 0.12923375217024383 - syst_JES_EtaIntercalibration_Stat175: 0.1354360336099666 - syst_JES_EtaIntercalibration_Stat176: 0.012631637225633104 - syst_JES_EtaIntercalibration_Stat177: 0.00025421251321482976 + syst_JES_EtaIntercalibration_Stat170: 1.85736022e-01 + syst_JES_EtaIntercalibration_Stat171: 1.50905956e-01 + syst_JES_EtaIntercalibration_Stat172: 2.17688746e-02 + syst_JES_EtaIntercalibration_Stat173: 9.98613893e-03 + syst_JES_EtaIntercalibration_Stat174: 1.29233752e-01 + syst_JES_EtaIntercalibration_Stat175: 1.35436034e-01 + syst_JES_EtaIntercalibration_Stat176: 1.26316372e-02 + syst_JES_EtaIntercalibration_Stat177: 2.54212513e-04 syst_JES_EtaIntercalibration_Stat178: 0.0 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 @@ -14132,17 +14132,17 @@ bins: syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 syst_JES_EtaIntercalibration_Stat184: 0.0 - syst_JES_EtaIntercalibration_Stat185: 1.1990121715395553e-05 - syst_JES_EtaIntercalibration_Stat186: 0.005008473719607602 - syst_JES_EtaIntercalibration_Stat187: 0.1297690012098421 - syst_JES_EtaIntercalibration_Stat188: 0.10518066492944414 - syst_JES_EtaIntercalibration_Stat189: 0.008961181506921953 + syst_JES_EtaIntercalibration_Stat185: 1.19901217e-05 + syst_JES_EtaIntercalibration_Stat186: 5.00847372e-03 + syst_JES_EtaIntercalibration_Stat187: 1.29769001e-01 + syst_JES_EtaIntercalibration_Stat188: 1.05180665e-01 + syst_JES_EtaIntercalibration_Stat189: 8.96118151e-03 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 0.006103135014072687 - syst_JES_EtaIntercalibration_Stat191: 0.07122058971954669 - syst_JES_EtaIntercalibration_Stat192: 0.08254068133350972 - syst_JES_EtaIntercalibration_Stat193: 0.009841512709318802 - syst_JES_EtaIntercalibration_Stat194: 7.673851102933911e-05 + syst_JES_EtaIntercalibration_Stat190: 6.10313501e-03 + syst_JES_EtaIntercalibration_Stat191: 7.12205897e-02 + syst_JES_EtaIntercalibration_Stat192: 8.25406813e-02 + syst_JES_EtaIntercalibration_Stat193: 9.84151271e-03 + syst_JES_EtaIntercalibration_Stat194: 7.67385110e-05 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 syst_JES_EtaIntercalibration_Stat197: 0.0 @@ -14150,70 +14150,70 @@ bins: syst_JES_EtaIntercalibration_Stat199: 0.0 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 9.654451201388923e-28 - syst_JES_EtaIntercalibration_Stat201: 0.0016281724440304229 - syst_JES_EtaIntercalibration_Stat202: 0.0032406634382484093 + syst_JES_EtaIntercalibration_Stat200: 9.65445120e-28 + syst_JES_EtaIntercalibration_Stat201: 1.62817244e-03 + syst_JES_EtaIntercalibration_Stat202: 3.24066344e-03 syst_JES_EtaIntercalibration_Stat203: 0.001923 - syst_JES_EtaIntercalibration_Stat204: 0.0001978640631848037 - syst_JES_EtaIntercalibration_Stat205: 4.37256226370763e-05 - syst_JES_EtaIntercalibration_Stat206: 0.0019821106805625157 - syst_JES_EtaIntercalibration_Stat207: 0.0027221757231119374 - syst_JES_EtaIntercalibration_Stat208: 4.586470538442388e-05 - syst_JES_EtaIntercalibration_Stat209: 9.643388129656026e-10 + syst_JES_EtaIntercalibration_Stat204: 1.97864063e-04 + syst_JES_EtaIntercalibration_Stat205: 4.37256226e-05 + syst_JES_EtaIntercalibration_Stat206: 1.98211068e-03 + syst_JES_EtaIntercalibration_Stat207: 2.72217572e-03 + syst_JES_EtaIntercalibration_Stat208: 4.58647054e-05 + syst_JES_EtaIntercalibration_Stat209: 9.64338813e-10 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 syst_JES_EtaIntercalibration_Stat211: 0.0 syst_JES_EtaIntercalibration_Stat212: 0.0 - syst_JES_EtaIntercalibration_Stat213: 9.954962016502123e-28 - syst_JES_EtaIntercalibration_Stat214: 1.232971413483297e-09 - syst_JES_EtaIntercalibration_Stat215: 4.426118121889513e-06 - syst_JES_EtaIntercalibration_Stat216: 4.8462128512891385e-06 - syst_JES_EtaIntercalibration_Stat217: 6.050919261058277e-09 - syst_JES_EtaIntercalibration_Stat218: 3.689187817121812e-12 - syst_JES_EtaIntercalibration_Stat219: 5.670001587301366e-06 + syst_JES_EtaIntercalibration_Stat213: 9.95496202e-28 + syst_JES_EtaIntercalibration_Stat214: 1.23297141e-09 + syst_JES_EtaIntercalibration_Stat215: 4.42611812e-06 + syst_JES_EtaIntercalibration_Stat216: 4.84621285e-06 + syst_JES_EtaIntercalibration_Stat217: 6.05091926e-09 + syst_JES_EtaIntercalibration_Stat218: 3.68918782e-12 + syst_JES_EtaIntercalibration_Stat219: 5.67000159e-06 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 7.409393548057762e-06 - syst_JES_EtaIntercalibration_Stat221: 7.131828868156821e-08 - syst_JES_EtaIntercalibration_Stat222: 9.818996028107965e-13 + syst_JES_EtaIntercalibration_Stat220: 7.40939355e-06 + syst_JES_EtaIntercalibration_Stat221: 7.13182887e-08 + syst_JES_EtaIntercalibration_Stat222: 9.81899603e-13 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 syst_JES_EtaIntercalibration_Stat225: 0.0 - syst_JES_EtaIntercalibration_Stat226: 3.0669973508302874e-22 - syst_JES_EtaIntercalibration_Stat227: 3.1551412012776866e-13 - syst_JES_EtaIntercalibration_Stat228: 3.61142662531028e-13 - syst_JES_EtaIntercalibration_Stat229: 1.6298598099223134e-27 + syst_JES_EtaIntercalibration_Stat226: 3.06699735e-22 + syst_JES_EtaIntercalibration_Stat227: 3.15514120e-13 + syst_JES_EtaIntercalibration_Stat228: 3.61142663e-13 + syst_JES_EtaIntercalibration_Stat229: 1.62985981e-27 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 1.0963881611910993e-21 - syst_JES_EtaIntercalibration_Stat231: 2.3403985559345977e-13 - syst_JES_EtaIntercalibration_Stat232: 3.340606392558181e-13 - syst_JES_EtaIntercalibration_Stat233: 2.4690384261894345e-21 + syst_JES_EtaIntercalibration_Stat230: 1.09638816e-21 + syst_JES_EtaIntercalibration_Stat231: 2.34039856e-13 + syst_JES_EtaIntercalibration_Stat232: 3.34060639e-13 + syst_JES_EtaIntercalibration_Stat233: 2.46903843e-21 syst_JES_EtaIntercalibration_Stat234: 0.0 syst_JES_EtaIntercalibration_Stat235: 0.0 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 - syst_JES_EtaIntercalibration_Stat238: 7.576856257710053e-36 + syst_JES_EtaIntercalibration_Stat238: 7.57685626e-36 syst_JES_EtaIntercalibration_Stat239: 0.0 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 - syst_JES_EtaIntercalibration_Stat243: 6.55754435745577e-36 + syst_JES_EtaIntercalibration_Stat243: 6.55754436e-36 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 syst_JES_EtaIntercalibration_Stat27: 0.0 - syst_JES_EtaIntercalibration_Stat28: 8.67844057132386e-06 - syst_JES_EtaIntercalibration_Stat29: 0.0013676350829077177 + syst_JES_EtaIntercalibration_Stat28: 8.67844057e-06 + syst_JES_EtaIntercalibration_Stat29: 1.36763508e-03 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 0.0017760451204854003 - syst_JES_EtaIntercalibration_Stat31: 0.002464794514761829 - syst_JES_EtaIntercalibration_Stat32: 8.019095959021815e-05 - syst_JES_EtaIntercalibration_Stat33: 0.002949544508479233 - syst_JES_EtaIntercalibration_Stat34: 0.002575213389216513 - syst_JES_EtaIntercalibration_Stat35: 0.003538894848678045 - syst_JES_EtaIntercalibration_Stat36: 0.0010545330103889589 - syst_JES_EtaIntercalibration_Stat37: 6.334975828683169e-06 + syst_JES_EtaIntercalibration_Stat30: 1.77604512e-03 + syst_JES_EtaIntercalibration_Stat31: 2.46479451e-03 + syst_JES_EtaIntercalibration_Stat32: 8.01909596e-05 + syst_JES_EtaIntercalibration_Stat33: 2.94954451e-03 + syst_JES_EtaIntercalibration_Stat34: 2.57521339e-03 + syst_JES_EtaIntercalibration_Stat35: 3.53889485e-03 + syst_JES_EtaIntercalibration_Stat36: 1.05453301e-03 + syst_JES_EtaIntercalibration_Stat37: 6.33497583e-06 syst_JES_EtaIntercalibration_Stat38: 0.0 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 @@ -14228,20 +14228,20 @@ bins: syst_JES_EtaIntercalibration_Stat48: 0.0 syst_JES_EtaIntercalibration_Stat49: 0.0 syst_JES_EtaIntercalibration_Stat5: 0.0 - syst_JES_EtaIntercalibration_Stat50: 8.791023873815837e-06 - syst_JES_EtaIntercalibration_Stat51: 0.0016861111114039905 - syst_JES_EtaIntercalibration_Stat52: 0.018850182194079718 - syst_JES_EtaIntercalibration_Stat53: 0.009363285681319352 - syst_JES_EtaIntercalibration_Stat54: 0.0010249183040613528 - syst_JES_EtaIntercalibration_Stat55: 0.0005974534856371666 - syst_JES_EtaIntercalibration_Stat56: 0.006148494452302937 - syst_JES_EtaIntercalibration_Stat57: 0.00802279856097609 - syst_JES_EtaIntercalibration_Stat58: 0.0028667083475652 - syst_JES_EtaIntercalibration_Stat59: 2.937291045759681e-05 + syst_JES_EtaIntercalibration_Stat50: 8.79102387e-06 + syst_JES_EtaIntercalibration_Stat51: 1.68611111e-03 + syst_JES_EtaIntercalibration_Stat52: 1.88501822e-02 + syst_JES_EtaIntercalibration_Stat53: 9.36328568e-03 + syst_JES_EtaIntercalibration_Stat54: 1.02491830e-03 + syst_JES_EtaIntercalibration_Stat55: 5.97453486e-04 + syst_JES_EtaIntercalibration_Stat56: 6.14849445e-03 + syst_JES_EtaIntercalibration_Stat57: 8.02279856e-03 + syst_JES_EtaIntercalibration_Stat58: 2.86670835e-03 + syst_JES_EtaIntercalibration_Stat59: 2.93729105e-05 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 0.0006597381526029854 - syst_JES_EtaIntercalibration_Stat62: 0.0006597381526029854 + syst_JES_EtaIntercalibration_Stat61: 6.59738153e-04 + syst_JES_EtaIntercalibration_Stat62: 6.59738153e-04 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 @@ -14249,223 +14249,223 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 8.67844057132386e-06 + syst_JES_EtaIntercalibration_Stat7: 8.67844057e-06 syst_JES_EtaIntercalibration_Stat70: 0.0 syst_JES_EtaIntercalibration_Stat71: 0.0 - syst_JES_EtaIntercalibration_Stat72: 0.00010556849672132307 - syst_JES_EtaIntercalibration_Stat73: 0.009535076087792903 - syst_JES_EtaIntercalibration_Stat74: 0.08465177848102189 - syst_JES_EtaIntercalibration_Stat75: 0.07408456030105058 - syst_JES_EtaIntercalibration_Stat76: 0.0010632813679830942 - syst_JES_EtaIntercalibration_Stat77: 0.002637429253553543 - syst_JES_EtaIntercalibration_Stat78: 0.09119466253569887 - syst_JES_EtaIntercalibration_Stat79: 0.06495665323891002 - syst_JES_EtaIntercalibration_Stat8: 0.0007719656987198331 - syst_JES_EtaIntercalibration_Stat80: 0.005025613096926583 - syst_JES_EtaIntercalibration_Stat81: 8.901875125500246e-05 - syst_JES_EtaIntercalibration_Stat82: 0.0006597381526029854 - syst_JES_EtaIntercalibration_Stat83: 0.0006597381526029854 - syst_JES_EtaIntercalibration_Stat84: 0.0006597381526029854 + syst_JES_EtaIntercalibration_Stat72: 1.05568497e-04 + syst_JES_EtaIntercalibration_Stat73: 9.53507609e-03 + syst_JES_EtaIntercalibration_Stat74: 8.46517785e-02 + syst_JES_EtaIntercalibration_Stat75: 7.40845603e-02 + syst_JES_EtaIntercalibration_Stat76: 1.06328137e-03 + syst_JES_EtaIntercalibration_Stat77: 2.63742925e-03 + syst_JES_EtaIntercalibration_Stat78: 9.11946625e-02 + syst_JES_EtaIntercalibration_Stat79: 6.49566532e-02 + syst_JES_EtaIntercalibration_Stat8: 7.71965699e-04 + syst_JES_EtaIntercalibration_Stat80: 5.02561310e-03 + syst_JES_EtaIntercalibration_Stat81: 8.90187513e-05 + syst_JES_EtaIntercalibration_Stat82: 6.59738153e-04 + syst_JES_EtaIntercalibration_Stat83: 6.59738153e-04 + syst_JES_EtaIntercalibration_Stat84: 6.59738153e-04 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 syst_JES_EtaIntercalibration_Stat89: 0.0 - syst_JES_EtaIntercalibration_Stat9: 0.0005610991423090931 + syst_JES_EtaIntercalibration_Stat9: 5.61099142e-04 syst_JES_EtaIntercalibration_Stat90: 0.0 syst_JES_EtaIntercalibration_Stat91: 0.0 syst_JES_EtaIntercalibration_Stat92: 0.0 - syst_JES_EtaIntercalibration_Stat93: 6.58698922118444e-05 - syst_JES_EtaIntercalibration_Stat94: 0.010734563105688093 - syst_JES_EtaIntercalibration_Stat95: 0.22216534383202072 - syst_JES_EtaIntercalibration_Stat96: 0.23915885933830675 - syst_JES_EtaIntercalibration_Stat97: 0.00461779500952565 - syst_JES_EtaIntercalibration_Stat98: 0.005241075342904355 - syst_JES_EtaIntercalibration_Stat99: 0.210971514664895 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.09387902361550209 - syst_JES_Flavour_Comp: 0.8828000453103749 - syst_JES_Gjet_Generator: 17.01561856060484 - syst_JES_Gjet_OOC: 9.548356245972393 - syst_JES_Gjet_Purity: 3.459031764815119 - syst_JES_Gjet_Stat1: 0.0034509828672423166 - syst_JES_Gjet_Stat10: 0.6531156922781751 - syst_JES_Gjet_Stat11: 0.1262329224093303 - syst_JES_Gjet_Stat12: 0.18750457994406428 - syst_JES_Gjet_Stat13: 0.03780394355090484 - syst_JES_Gjet_Stat14: 0.002237652481769846 - syst_JES_Gjet_Stat15: 2.2241025421834758e-08 + syst_JES_EtaIntercalibration_Stat93: 6.58698922e-05 + syst_JES_EtaIntercalibration_Stat94: 1.07345631e-02 + syst_JES_EtaIntercalibration_Stat95: 2.22165344e-01 + syst_JES_EtaIntercalibration_Stat96: 2.39158859e-01 + syst_JES_EtaIntercalibration_Stat97: 4.61779501e-03 + syst_JES_EtaIntercalibration_Stat98: 5.24107534e-03 + syst_JES_EtaIntercalibration_Stat99: 2.10971515e-01 + syst_JES_EtaIntercalibration_TotalStat_MJB: 9.38790236e-02 + syst_JES_Flavour_Comp: 8.82800045e-01 + syst_JES_Gjet_Generator: 1.70156186e+01 + syst_JES_Gjet_OOC: 9.54835625e+00 + syst_JES_Gjet_Purity: 3.45903176e+00 + syst_JES_Gjet_Stat1: 3.45098287e-03 + syst_JES_Gjet_Stat10: 6.53115692e-01 + syst_JES_Gjet_Stat11: 1.26232922e-01 + syst_JES_Gjet_Stat12: 1.87504580e-01 + syst_JES_Gjet_Stat13: 3.78039436e-02 + syst_JES_Gjet_Stat14: 2.23765248e-03 + syst_JES_Gjet_Stat15: 2.22410254e-08 syst_JES_Gjet_Stat2: 0.0 - syst_JES_Gjet_Stat3: 0.028102524352805032 - syst_JES_Gjet_Stat4: 0.051736299394139124 - syst_JES_Gjet_Stat5: 0.09281738670637091 - syst_JES_Gjet_Stat6: 0.4120417788283125 - syst_JES_Gjet_Stat7: 0.7506917742988796 - syst_JES_Gjet_Stat8: 0.6235828954517595 - syst_JES_Gjet_Stat9: 0.9557359101760277 - syst_JES_Gjet_Veto: 3.9383294513664033 - syst_JES_Gjet_dPhi: 1.3799053989313905 - syst_JES_LArESZee: 14.24790576716452 - syst_JES_LArEsmear: 1.286572527104477 - syst_JES_LAr_JVT: 1.870775507643822 - syst_JES_MJB_Alpha: 3.516062998549113e-08 - syst_JES_MJB_Asym: 0.04202778366747407 - syst_JES_MJB_Beta: 0.0005922747736474492 - syst_JES_MJB_Stat1: 0.0012870641009677802 - syst_JES_MJB_Stat10: 4.085041829652254e-22 - syst_JES_MJB_Stat11: 5.041999900833002e-28 - syst_JES_MJB_Stat12: 2.934094068021678e-28 - syst_JES_MJB_Stat13: 2.0178391908177419e-28 + syst_JES_Gjet_Stat3: 2.81025244e-02 + syst_JES_Gjet_Stat4: 5.17362994e-02 + syst_JES_Gjet_Stat5: 9.28173867e-02 + syst_JES_Gjet_Stat6: 4.12041779e-01 + syst_JES_Gjet_Stat7: 7.50691774e-01 + syst_JES_Gjet_Stat8: 6.23582895e-01 + syst_JES_Gjet_Stat9: 9.55735910e-01 + syst_JES_Gjet_Veto: 3.93832945e+00 + syst_JES_Gjet_dPhi: 1.37990540e+00 + syst_JES_LArESZee: 1.42479058e+01 + syst_JES_LArEsmear: 1.28657253e+00 + syst_JES_LAr_JVT: 1.87077551e+00 + syst_JES_MJB_Alpha: 3.51606300e-08 + syst_JES_MJB_Asym: 4.20277837e-02 + syst_JES_MJB_Beta: 5.92274774e-04 + syst_JES_MJB_Stat1: 1.28706410e-03 + syst_JES_MJB_Stat10: 4.08504183e-22 + syst_JES_MJB_Stat11: 5.04199990e-28 + syst_JES_MJB_Stat12: 2.93409407e-28 + syst_JES_MJB_Stat13: 2.01783919e-28 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 0.01272816530376629 - syst_JES_MJB_Stat3: 0.0010134528837099433 - syst_JES_MJB_Stat4: 0.00011553373565759916 - syst_JES_MJB_Stat5: 6.191215611654951e-08 - syst_JES_MJB_Stat6: 6.8034955721305495e-09 - syst_JES_MJB_Stat7: 5.251578048548836e-16 + syst_JES_MJB_Stat2: 1.27281653e-02 + syst_JES_MJB_Stat3: 1.01345288e-03 + syst_JES_MJB_Stat4: 1.15533736e-04 + syst_JES_MJB_Stat5: 6.19121561e-08 + syst_JES_MJB_Stat6: 6.80349557e-09 + syst_JES_MJB_Stat7: 5.25157805e-16 syst_JES_MJB_Stat8: 0.0 syst_JES_MJB_Stat9: 0.0 - syst_JES_MJB_Threshold: 0.04594138330525105 - syst_JES_Pileup_MuOffset: 3.212894956266077e-07 - syst_JES_Pileup_NPVOffset: 0.8134396889136896 - syst_JES_Pileup_Pt_term: 2.7981209766555843 - syst_JES_PunchThrough_MC15: 3.853813046840752e-33 + syst_JES_MJB_Threshold: 4.59413833e-02 + syst_JES_Pileup_MuOffset: 3.21289496e-07 + syst_JES_Pileup_NPVOffset: 8.13439689e-01 + syst_JES_Pileup_Pt_term: 2.79812098e+00 + syst_JES_PunchThrough_MC15: 3.85381305e-33 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 14.77977334061656 - syst_JES_Zjet_MuScale: 1.1105509207145796 - syst_JES_Zjet_MuSmearID: 0.2322216398185148 - syst_JES_Zjet_MuSmearMS: 1.1177341488475692 - syst_JES_Zjet_OOC: 5.926952062401044 - syst_JES_Zjet_Stat1: 0.07525699103737805 - syst_JES_Zjet_Stat10: 2.2092606795034397 - syst_JES_Zjet_Stat11: 1.4747098019610503 - syst_JES_Zjet_Stat12: 0.2795344108960469 - syst_JES_Zjet_Stat13: 0.1306749872775965 - syst_JES_Zjet_Stat2: 0.0116423236082837 - syst_JES_Zjet_Stat3: 0.038771957327429316 - syst_JES_Zjet_Stat4: 0.053494804186948845 - syst_JES_Zjet_Stat5: 0.05357803911118808 - syst_JES_Zjet_Stat6: 0.13356486542126264 - syst_JES_Zjet_Stat7: 0.27107270242501363 - syst_JES_Zjet_Stat8: 0.46903442304376763 - syst_JES_Zjet_Stat9: 1.2735491539394936 - syst_JES_Zjet_Veto: 1.1094699545278368 - syst_JES_Zjet_dPhi: 1.2355093524534728 + syst_JES_Zjet_MC: 1.47797733e+01 + syst_JES_Zjet_MuScale: 1.11055092e+00 + syst_JES_Zjet_MuSmearID: 2.32221640e-01 + syst_JES_Zjet_MuSmearMS: 1.11773415e+00 + syst_JES_Zjet_OOC: 5.92695206e+00 + syst_JES_Zjet_Stat1: 7.52569910e-02 + syst_JES_Zjet_Stat10: 2.20926068e+00 + syst_JES_Zjet_Stat11: 1.47470980e+00 + syst_JES_Zjet_Stat12: 2.79534411e-01 + syst_JES_Zjet_Stat13: 1.30674987e-01 + syst_JES_Zjet_Stat2: 1.16423236e-02 + syst_JES_Zjet_Stat3: 3.87719573e-02 + syst_JES_Zjet_Stat4: 5.34948042e-02 + syst_JES_Zjet_Stat5: 5.35780391e-02 + syst_JES_Zjet_Stat6: 1.33564865e-01 + syst_JES_Zjet_Stat7: 2.71072702e-01 + syst_JES_Zjet_Stat8: 4.69034423e-01 + syst_JES_Zjet_Stat9: 1.27354915e+00 + syst_JES_Zjet_Veto: 1.10946995e+00 + syst_JES_Zjet_dPhi: 1.23550935e+00 syst_PRW: 0.6118 syst_Unfolding_bias: 0.6406 - syst_cleaning: 4.242658453139965 + syst_cleaning: 4.24265845e+00 syst_lumi: 16.63 - syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0748148875558869 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 6.30257098333688 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 5.017492077721698 + syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 7.48148876e-02 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 6.30257098e+00 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 5.01749208e+00 syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 19.43029271524235 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.08754099382575 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 2.8616163264840377 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 1.94302927e+01 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 8.75409938e-02 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 2.86161633e+00 - stat: 2.6763 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 3.9029169540229782 - syst_JER_NP1: 0.4113344161081103 - syst_JER_NP2: 0.5393689924346783 - syst_JER_NP3: 0.6170978103185912 - syst_JER_NP4: 0.4418208120946771 - syst_JER_NP5: 0.2965728488499917 - syst_JER_NP6: 3.122021580642901e-39 - syst_JER_NP7: 0.2735065264303578 - syst_JER_NP8: 0.4024896365125443 - syst_JES_EtaIntercalibration_Modelling: 2.8829621485548507 - syst_JES_EtaIntercalibration_NonClosure: 0.0003690134245525493 + syst_JER_NP0: 3.90291695e+00 + syst_JER_NP1: 4.11334416e-01 + syst_JER_NP2: 5.39368992e-01 + syst_JER_NP3: 6.17097810e-01 + syst_JER_NP4: 4.41820812e-01 + syst_JER_NP5: 2.96572849e-01 + syst_JER_NP6: 3.12202158e-39 + syst_JER_NP7: 2.73506526e-01 + syst_JER_NP8: 4.02489637e-01 + syst_JES_EtaIntercalibration_Modelling: 2.88296215e+00 + syst_JES_EtaIntercalibration_NonClosure: 3.69013425e-04 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 0.051638311075692625 - syst_JES_EtaIntercalibration_Stat101: 0.001227111082991267 - syst_JES_EtaIntercalibration_Stat102: 6.218634663708345e-05 - syst_JES_EtaIntercalibration_Stat103: 4.5899346400575246e-05 - syst_JES_EtaIntercalibration_Stat104: 4.5899346400575246e-05 - syst_JES_EtaIntercalibration_Stat105: 4.5899346400575246e-05 + syst_JES_EtaIntercalibration_Stat100: 5.16383111e-02 + syst_JES_EtaIntercalibration_Stat101: 1.22711108e-03 + syst_JES_EtaIntercalibration_Stat102: 6.21863466e-05 + syst_JES_EtaIntercalibration_Stat103: 4.58993464e-05 + syst_JES_EtaIntercalibration_Stat104: 4.58993464e-05 + syst_JES_EtaIntercalibration_Stat105: 4.58993464e-05 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 0.00039967072384651845 - syst_JES_EtaIntercalibration_Stat111: 0.00039967072384651845 + syst_JES_EtaIntercalibration_Stat110: 3.99670724e-04 + syst_JES_EtaIntercalibration_Stat111: 3.99670724e-04 syst_JES_EtaIntercalibration_Stat112: 0.0 - syst_JES_EtaIntercalibration_Stat113: 0.0011711674770074519 - syst_JES_EtaIntercalibration_Stat114: 0.03949580325806781 - syst_JES_EtaIntercalibration_Stat115: 0.43895941441094527 - syst_JES_EtaIntercalibration_Stat116: 0.3678011827060919 - syst_JES_EtaIntercalibration_Stat117: 0.03879442582382165 - syst_JES_EtaIntercalibration_Stat118: 0.008785950987229554 - syst_JES_EtaIntercalibration_Stat119: 0.3896840867933921 - syst_JES_EtaIntercalibration_Stat12: 0.0010827854946848891 - syst_JES_EtaIntercalibration_Stat120: 0.5086986804582847 - syst_JES_EtaIntercalibration_Stat121: 0.04364194312814222 - syst_JES_EtaIntercalibration_Stat122: 0.0005567549324433507 - syst_JES_EtaIntercalibration_Stat123: 4.5899346400575246e-05 - syst_JES_EtaIntercalibration_Stat124: 4.5899346400575246e-05 - syst_JES_EtaIntercalibration_Stat125: 4.5899346400575246e-05 + syst_JES_EtaIntercalibration_Stat113: 1.17116748e-03 + syst_JES_EtaIntercalibration_Stat114: 3.94958033e-02 + syst_JES_EtaIntercalibration_Stat115: 4.38959414e-01 + syst_JES_EtaIntercalibration_Stat116: 3.67801183e-01 + syst_JES_EtaIntercalibration_Stat117: 3.87944258e-02 + syst_JES_EtaIntercalibration_Stat118: 8.78595099e-03 + syst_JES_EtaIntercalibration_Stat119: 3.89684087e-01 + syst_JES_EtaIntercalibration_Stat12: 1.08278549e-03 + syst_JES_EtaIntercalibration_Stat120: 5.08698680e-01 + syst_JES_EtaIntercalibration_Stat121: 4.36419431e-02 + syst_JES_EtaIntercalibration_Stat122: 5.56754932e-04 + syst_JES_EtaIntercalibration_Stat123: 4.58993464e-05 + syst_JES_EtaIntercalibration_Stat124: 4.58993464e-05 + syst_JES_EtaIntercalibration_Stat125: 4.58993464e-05 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 5.7737913670308525e-12 - syst_JES_EtaIntercalibration_Stat129: 0.00039967072192192136 - syst_JES_EtaIntercalibration_Stat13: 0.00040553665195022754 - syst_JES_EtaIntercalibration_Stat130: 0.00039967072384651845 - syst_JES_EtaIntercalibration_Stat131: 3.6165220862038163e-06 - syst_JES_EtaIntercalibration_Stat132: 0.006959444428257187 - syst_JES_EtaIntercalibration_Stat133: 0.16817313600869788 - syst_JES_EtaIntercalibration_Stat134: 1.8435489551406006 - syst_JES_EtaIntercalibration_Stat135: 1.2005770477149726 - syst_JES_EtaIntercalibration_Stat136: 0.10741720846773109 - syst_JES_EtaIntercalibration_Stat137: 0.1009288630670137 - syst_JES_EtaIntercalibration_Stat138: 1.2479554919948068 - syst_JES_EtaIntercalibration_Stat139: 1.470495834744186 - syst_JES_EtaIntercalibration_Stat14: 6.431104648503241e-06 - syst_JES_EtaIntercalibration_Stat140: 0.14362728736211655 - syst_JES_EtaIntercalibration_Stat141: 5.00116598704742e-05 + syst_JES_EtaIntercalibration_Stat128: 5.77379137e-12 + syst_JES_EtaIntercalibration_Stat129: 3.99670722e-04 + syst_JES_EtaIntercalibration_Stat13: 4.05536652e-04 + syst_JES_EtaIntercalibration_Stat130: 3.99670724e-04 + syst_JES_EtaIntercalibration_Stat131: 3.61652209e-06 + syst_JES_EtaIntercalibration_Stat132: 6.95944443e-03 + syst_JES_EtaIntercalibration_Stat133: 1.68173136e-01 + syst_JES_EtaIntercalibration_Stat134: 1.84354896e+00 + syst_JES_EtaIntercalibration_Stat135: 1.20057705e+00 + syst_JES_EtaIntercalibration_Stat136: 1.07417208e-01 + syst_JES_EtaIntercalibration_Stat137: 1.00928863e-01 + syst_JES_EtaIntercalibration_Stat138: 1.24795549e+00 + syst_JES_EtaIntercalibration_Stat139: 1.47049583e+00 + syst_JES_EtaIntercalibration_Stat14: 6.43110465e-06 + syst_JES_EtaIntercalibration_Stat140: 1.43627287e-01 + syst_JES_EtaIntercalibration_Stat141: 5.00116599e-05 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 4.5899346400575246e-05 - syst_JES_EtaIntercalibration_Stat144: 4.5899346400575246e-05 + syst_JES_EtaIntercalibration_Stat143: 4.58993464e-05 + syst_JES_EtaIntercalibration_Stat144: 4.58993464e-05 syst_JES_EtaIntercalibration_Stat145: 0.0 - syst_JES_EtaIntercalibration_Stat146: 5.7737913670308525e-12 - syst_JES_EtaIntercalibration_Stat147: 0.00039967072192192136 + syst_JES_EtaIntercalibration_Stat146: 5.77379137e-12 + syst_JES_EtaIntercalibration_Stat147: 3.99670722e-04 syst_JES_EtaIntercalibration_Stat148: 0.0 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 0.0011545324021005215 - syst_JES_EtaIntercalibration_Stat151: 0.07069703388403223 - syst_JES_EtaIntercalibration_Stat152: 0.5859093509238439 - syst_JES_EtaIntercalibration_Stat153: 0.4523738387661249 - syst_JES_EtaIntercalibration_Stat154: 0.038495930629093775 - syst_JES_EtaIntercalibration_Stat155: 0.03662056389516688 - syst_JES_EtaIntercalibration_Stat156: 0.5190978977996347 - syst_JES_EtaIntercalibration_Stat157: 0.5998401787142973 - syst_JES_EtaIntercalibration_Stat158: 0.05831294892217336 - syst_JES_EtaIntercalibration_Stat159: 0.0011835083903378124 + syst_JES_EtaIntercalibration_Stat150: 1.15453240e-03 + syst_JES_EtaIntercalibration_Stat151: 7.06970339e-02 + syst_JES_EtaIntercalibration_Stat152: 5.85909351e-01 + syst_JES_EtaIntercalibration_Stat153: 4.52373839e-01 + syst_JES_EtaIntercalibration_Stat154: 3.84959306e-02 + syst_JES_EtaIntercalibration_Stat155: 3.66205639e-02 + syst_JES_EtaIntercalibration_Stat156: 5.19097898e-01 + syst_JES_EtaIntercalibration_Stat157: 5.99840179e-01 + syst_JES_EtaIntercalibration_Stat158: 5.83129489e-02 + syst_JES_EtaIntercalibration_Stat159: 1.18350839e-03 syst_JES_EtaIntercalibration_Stat16: 0.0 syst_JES_EtaIntercalibration_Stat160: 0.0 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 - syst_JES_EtaIntercalibration_Stat164: 5.7737913670308525e-12 + syst_JES_EtaIntercalibration_Stat164: 5.77379137e-12 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 - syst_JES_EtaIntercalibration_Stat168: 0.0012799855467934002 - syst_JES_EtaIntercalibration_Stat169: 0.012412394480921076 + syst_JES_EtaIntercalibration_Stat168: 1.27998555e-03 + syst_JES_EtaIntercalibration_Stat169: 1.24123945e-02 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 0.05327572876085319 - syst_JES_EtaIntercalibration_Stat171: 0.02317956360137093 - syst_JES_EtaIntercalibration_Stat172: 0.0064687291448939175 - syst_JES_EtaIntercalibration_Stat173: 0.011339736637153439 - syst_JES_EtaIntercalibration_Stat174: 0.05390674447599298 - syst_JES_EtaIntercalibration_Stat175: 0.05352199460969294 - syst_JES_EtaIntercalibration_Stat176: 0.011331403620028721 - syst_JES_EtaIntercalibration_Stat177: 0.0002409216055068536 + syst_JES_EtaIntercalibration_Stat170: 5.32757288e-02 + syst_JES_EtaIntercalibration_Stat171: 2.31795636e-02 + syst_JES_EtaIntercalibration_Stat172: 6.46872914e-03 + syst_JES_EtaIntercalibration_Stat173: 1.13397366e-02 + syst_JES_EtaIntercalibration_Stat174: 5.39067445e-02 + syst_JES_EtaIntercalibration_Stat175: 5.35219946e-02 + syst_JES_EtaIntercalibration_Stat176: 1.13314036e-02 + syst_JES_EtaIntercalibration_Stat177: 2.40921606e-04 syst_JES_EtaIntercalibration_Stat178: 0.0 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 @@ -14474,17 +14474,17 @@ bins: syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 syst_JES_EtaIntercalibration_Stat184: 0.0 - syst_JES_EtaIntercalibration_Stat185: 0.00011422009050512962 - syst_JES_EtaIntercalibration_Stat186: 0.011006398230120515 - syst_JES_EtaIntercalibration_Stat187: 0.14033166668646105 - syst_JES_EtaIntercalibration_Stat188: 0.1067319347711827 - syst_JES_EtaIntercalibration_Stat189: 0.008222363163957185 + syst_JES_EtaIntercalibration_Stat185: 1.14220091e-04 + syst_JES_EtaIntercalibration_Stat186: 1.10063982e-02 + syst_JES_EtaIntercalibration_Stat187: 1.40331667e-01 + syst_JES_EtaIntercalibration_Stat188: 1.06731935e-01 + syst_JES_EtaIntercalibration_Stat189: 8.22236316e-03 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 0.00918384859413525 - syst_JES_EtaIntercalibration_Stat191: 0.10288821895630228 - syst_JES_EtaIntercalibration_Stat192: 0.11488128687910838 - syst_JES_EtaIntercalibration_Stat193: 0.007670440176753042 - syst_JES_EtaIntercalibration_Stat194: 0.00022620583546849538 + syst_JES_EtaIntercalibration_Stat190: 9.18384859e-03 + syst_JES_EtaIntercalibration_Stat191: 1.02888219e-01 + syst_JES_EtaIntercalibration_Stat192: 1.14881287e-01 + syst_JES_EtaIntercalibration_Stat193: 7.67044018e-03 + syst_JES_EtaIntercalibration_Stat194: 2.26205835e-04 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 syst_JES_EtaIntercalibration_Stat197: 0.0 @@ -14492,70 +14492,70 @@ bins: syst_JES_EtaIntercalibration_Stat199: 0.0 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 2.6630281166371484e-20 - syst_JES_EtaIntercalibration_Stat201: 0.004962677100114413 - syst_JES_EtaIntercalibration_Stat202: 0.015287234282236929 - syst_JES_EtaIntercalibration_Stat203: 0.011808068809081357 - syst_JES_EtaIntercalibration_Stat204: 0.00036757644102961766 - syst_JES_EtaIntercalibration_Stat205: 0.00013414733504620954 - syst_JES_EtaIntercalibration_Stat206: 0.010740327311120458 - syst_JES_EtaIntercalibration_Stat207: 0.009588085158153322 - syst_JES_EtaIntercalibration_Stat208: 0.000567852857265876 - syst_JES_EtaIntercalibration_Stat209: 2.6582176586342587e-07 + syst_JES_EtaIntercalibration_Stat200: 2.66302812e-20 + syst_JES_EtaIntercalibration_Stat201: 4.96267710e-03 + syst_JES_EtaIntercalibration_Stat202: 1.52872343e-02 + syst_JES_EtaIntercalibration_Stat203: 1.18080688e-02 + syst_JES_EtaIntercalibration_Stat204: 3.67576441e-04 + syst_JES_EtaIntercalibration_Stat205: 1.34147335e-04 + syst_JES_EtaIntercalibration_Stat206: 1.07403273e-02 + syst_JES_EtaIntercalibration_Stat207: 9.58808516e-03 + syst_JES_EtaIntercalibration_Stat208: 5.67852857e-04 + syst_JES_EtaIntercalibration_Stat209: 2.65821766e-07 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 syst_JES_EtaIntercalibration_Stat211: 0.0 syst_JES_EtaIntercalibration_Stat212: 0.0 - syst_JES_EtaIntercalibration_Stat213: 2.746166555400455e-20 - syst_JES_EtaIntercalibration_Stat214: 3.4430712392717056e-07 - syst_JES_EtaIntercalibration_Stat215: 3.997855095860779e-05 - syst_JES_EtaIntercalibration_Stat216: 4.042823858394031e-05 - syst_JES_EtaIntercalibration_Stat217: 1.6541005221950337e-06 - syst_JES_EtaIntercalibration_Stat218: 9.448965710594996e-09 - syst_JES_EtaIntercalibration_Stat219: 9.335201484167334e-05 + syst_JES_EtaIntercalibration_Stat213: 2.74616656e-20 + syst_JES_EtaIntercalibration_Stat214: 3.44307124e-07 + syst_JES_EtaIntercalibration_Stat215: 3.99785510e-05 + syst_JES_EtaIntercalibration_Stat216: 4.04282386e-05 + syst_JES_EtaIntercalibration_Stat217: 1.65410052e-06 + syst_JES_EtaIntercalibration_Stat218: 9.44896571e-09 + syst_JES_EtaIntercalibration_Stat219: 9.33520148e-05 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 6.561004858251516e-05 - syst_JES_EtaIntercalibration_Stat221: 2.955085648081964e-06 - syst_JES_EtaIntercalibration_Stat222: 2.513205721779882e-09 + syst_JES_EtaIntercalibration_Stat220: 6.56100486e-05 + syst_JES_EtaIntercalibration_Stat221: 2.95508565e-06 + syst_JES_EtaIntercalibration_Stat222: 2.51320572e-09 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 syst_JES_EtaIntercalibration_Stat225: 0.0 - syst_JES_EtaIntercalibration_Stat226: 2.25434619124925e-16 - syst_JES_EtaIntercalibration_Stat227: 8.110256269070663e-10 - syst_JES_EtaIntercalibration_Stat228: 9.285407960881416e-10 - syst_JES_EtaIntercalibration_Stat229: 4.495537871045021e-20 + syst_JES_EtaIntercalibration_Stat226: 2.25434619e-16 + syst_JES_EtaIntercalibration_Stat227: 8.11025627e-10 + syst_JES_EtaIntercalibration_Stat228: 9.28540796e-10 + syst_JES_EtaIntercalibration_Stat229: 4.49553787e-20 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 8.059232407617985e-16 - syst_JES_EtaIntercalibration_Stat231: 6.054298818814611e-10 - syst_JES_EtaIntercalibration_Stat232: 8.461068197383826e-10 - syst_JES_EtaIntercalibration_Stat233: 1.8143232209283986e-15 - syst_JES_EtaIntercalibration_Stat234: 1.1125828362418683e-32 + syst_JES_EtaIntercalibration_Stat230: 8.05923241e-16 + syst_JES_EtaIntercalibration_Stat231: 6.05429882e-10 + syst_JES_EtaIntercalibration_Stat232: 8.46106820e-10 + syst_JES_EtaIntercalibration_Stat233: 1.81432322e-15 + syst_JES_EtaIntercalibration_Stat234: 1.11258284e-32 syst_JES_EtaIntercalibration_Stat235: 0.0 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 - syst_JES_EtaIntercalibration_Stat238: 1.454923203747361e-26 - syst_JES_EtaIntercalibration_Stat239: 2.12594561313313e-33 + syst_JES_EtaIntercalibration_Stat238: 1.45492320e-26 + syst_JES_EtaIntercalibration_Stat239: 2.12594561e-33 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 - syst_JES_EtaIntercalibration_Stat242: 5.311893894836379e-33 - syst_JES_EtaIntercalibration_Stat243: 1.2592009371025737e-26 + syst_JES_EtaIntercalibration_Stat242: 5.31189389e-33 + syst_JES_EtaIntercalibration_Stat243: 1.25920094e-26 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 syst_JES_EtaIntercalibration_Stat27: 0.0 - syst_JES_EtaIntercalibration_Stat28: 6.23191880563282e-07 - syst_JES_EtaIntercalibration_Stat29: 0.0003097491080967789 + syst_JES_EtaIntercalibration_Stat28: 6.23191881e-07 + syst_JES_EtaIntercalibration_Stat29: 3.09749108e-04 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 0.0011035815545305204 - syst_JES_EtaIntercalibration_Stat31: 0.0013375610154306979 - syst_JES_EtaIntercalibration_Stat32: 7.246743958496118e-06 - syst_JES_EtaIntercalibration_Stat33: 0.0003963989458865904 - syst_JES_EtaIntercalibration_Stat34: 0.001181169049575462 - syst_JES_EtaIntercalibration_Stat35: 0.0008395047230361483 - syst_JES_EtaIntercalibration_Stat36: 0.0004825456861272309 - syst_JES_EtaIntercalibration_Stat37: 4.549231446079656e-07 + syst_JES_EtaIntercalibration_Stat30: 1.10358155e-03 + syst_JES_EtaIntercalibration_Stat31: 1.33756102e-03 + syst_JES_EtaIntercalibration_Stat32: 7.24674396e-06 + syst_JES_EtaIntercalibration_Stat33: 3.96398946e-04 + syst_JES_EtaIntercalibration_Stat34: 1.18116905e-03 + syst_JES_EtaIntercalibration_Stat35: 8.39504723e-04 + syst_JES_EtaIntercalibration_Stat36: 4.82545686e-04 + syst_JES_EtaIntercalibration_Stat37: 4.54923145e-07 syst_JES_EtaIntercalibration_Stat38: 0.0 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 @@ -14570,20 +14570,20 @@ bins: syst_JES_EtaIntercalibration_Stat48: 0.0 syst_JES_EtaIntercalibration_Stat49: 0.0 syst_JES_EtaIntercalibration_Stat5: 0.0 - syst_JES_EtaIntercalibration_Stat50: 6.313325193588558e-07 - syst_JES_EtaIntercalibration_Stat51: 0.0004875735508618161 - syst_JES_EtaIntercalibration_Stat52: 0.004574656125601136 - syst_JES_EtaIntercalibration_Stat53: 0.0006264533422370734 - syst_JES_EtaIntercalibration_Stat54: 0.0001823348207967968 - syst_JES_EtaIntercalibration_Stat55: 0.0006567031806684053 - syst_JES_EtaIntercalibration_Stat56: 0.002416445530112359 - syst_JES_EtaIntercalibration_Stat57: 0.003069924225449221 - syst_JES_EtaIntercalibration_Stat58: 0.00034689737675572003 - syst_JES_EtaIntercalibration_Stat59: 2.3535184017763702e-06 + syst_JES_EtaIntercalibration_Stat50: 6.31332519e-07 + syst_JES_EtaIntercalibration_Stat51: 4.87573551e-04 + syst_JES_EtaIntercalibration_Stat52: 4.57465613e-03 + syst_JES_EtaIntercalibration_Stat53: 6.26453342e-04 + syst_JES_EtaIntercalibration_Stat54: 1.82334821e-04 + syst_JES_EtaIntercalibration_Stat55: 6.56703181e-04 + syst_JES_EtaIntercalibration_Stat56: 2.41644553e-03 + syst_JES_EtaIntercalibration_Stat57: 3.06992423e-03 + syst_JES_EtaIntercalibration_Stat58: 3.46897377e-04 + syst_JES_EtaIntercalibration_Stat59: 2.35351840e-06 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 4.5899346400575246e-05 - syst_JES_EtaIntercalibration_Stat62: 4.5899346400575246e-05 + syst_JES_EtaIntercalibration_Stat61: 4.58993464e-05 + syst_JES_EtaIntercalibration_Stat62: 4.58993464e-05 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 @@ -14591,223 +14591,223 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 6.23191880563282e-07 + syst_JES_EtaIntercalibration_Stat7: 6.23191881e-07 syst_JES_EtaIntercalibration_Stat70: 0.0 syst_JES_EtaIntercalibration_Stat71: 0.0 - syst_JES_EtaIntercalibration_Stat72: 4.3344571459411154e-05 - syst_JES_EtaIntercalibration_Stat73: 0.0013315322405033985 - syst_JES_EtaIntercalibration_Stat74: 0.019698433947905606 - syst_JES_EtaIntercalibration_Stat75: 0.013176535963598322 - syst_JES_EtaIntercalibration_Stat76: 0.0011014614291930517 - syst_JES_EtaIntercalibration_Stat77: 0.0010282989679563038 - syst_JES_EtaIntercalibration_Stat78: 0.022531615788265163 - syst_JES_EtaIntercalibration_Stat79: 0.008136125168039144 - syst_JES_EtaIntercalibration_Stat8: 0.00010606093625836047 - syst_JES_EtaIntercalibration_Stat80: 0.0017964974255478352 - syst_JES_EtaIntercalibration_Stat81: 7.639210086782534e-06 - syst_JES_EtaIntercalibration_Stat82: 4.5899346400575246e-05 - syst_JES_EtaIntercalibration_Stat83: 4.5899346400575246e-05 - syst_JES_EtaIntercalibration_Stat84: 4.5899346400575246e-05 + syst_JES_EtaIntercalibration_Stat72: 4.33445715e-05 + syst_JES_EtaIntercalibration_Stat73: 1.33153224e-03 + syst_JES_EtaIntercalibration_Stat74: 1.96984339e-02 + syst_JES_EtaIntercalibration_Stat75: 1.31765360e-02 + syst_JES_EtaIntercalibration_Stat76: 1.10146143e-03 + syst_JES_EtaIntercalibration_Stat77: 1.02829897e-03 + syst_JES_EtaIntercalibration_Stat78: 2.25316158e-02 + syst_JES_EtaIntercalibration_Stat79: 8.13612517e-03 + syst_JES_EtaIntercalibration_Stat8: 1.06060936e-04 + syst_JES_EtaIntercalibration_Stat80: 1.79649743e-03 + syst_JES_EtaIntercalibration_Stat81: 7.63921009e-06 + syst_JES_EtaIntercalibration_Stat82: 4.58993464e-05 + syst_JES_EtaIntercalibration_Stat83: 4.58993464e-05 + syst_JES_EtaIntercalibration_Stat84: 4.58993464e-05 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 syst_JES_EtaIntercalibration_Stat89: 0.0 - syst_JES_EtaIntercalibration_Stat9: 9.588297450538339e-05 + syst_JES_EtaIntercalibration_Stat9: 9.58829745e-05 syst_JES_EtaIntercalibration_Stat90: 0.0 syst_JES_EtaIntercalibration_Stat91: 0.0 syst_JES_EtaIntercalibration_Stat92: 0.0 - syst_JES_EtaIntercalibration_Stat93: 3.7793348621152903e-05 - syst_JES_EtaIntercalibration_Stat94: 0.001209545867332343 - syst_JES_EtaIntercalibration_Stat95: 0.062228316705499914 - syst_JES_EtaIntercalibration_Stat96: 0.06090514920759984 - syst_JES_EtaIntercalibration_Stat97: 0.00041947978497181476 - syst_JES_EtaIntercalibration_Stat98: 0.0012146923456888168 - syst_JES_EtaIntercalibration_Stat99: 0.057125245513695605 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.09144442410557355 - syst_JES_Flavour_Comp: 0.4392054644468805 - syst_JES_Gjet_Generator: 9.0160836703083 - syst_JES_Gjet_OOC: 5.172380955614155 - syst_JES_Gjet_Purity: 1.6885978650939957 - syst_JES_Gjet_Stat1: 0.0025573097192166613 - syst_JES_Gjet_Stat10: 0.5063040489666264 - syst_JES_Gjet_Stat11: 0.09297803934263187 - syst_JES_Gjet_Stat12: 0.12811319096798737 - syst_JES_Gjet_Stat13: 0.05413562851764077 - syst_JES_Gjet_Stat14: 0.006124241178097087 - syst_JES_Gjet_Stat15: 6.1695314198729874e-06 + syst_JES_EtaIntercalibration_Stat93: 3.77933486e-05 + syst_JES_EtaIntercalibration_Stat94: 1.20954587e-03 + syst_JES_EtaIntercalibration_Stat95: 6.22283167e-02 + syst_JES_EtaIntercalibration_Stat96: 6.09051492e-02 + syst_JES_EtaIntercalibration_Stat97: 4.19479785e-04 + syst_JES_EtaIntercalibration_Stat98: 1.21469235e-03 + syst_JES_EtaIntercalibration_Stat99: 5.71252455e-02 + syst_JES_EtaIntercalibration_TotalStat_MJB: 9.14444241e-02 + syst_JES_Flavour_Comp: 4.39205464e-01 + syst_JES_Gjet_Generator: 9.01608367e+00 + syst_JES_Gjet_OOC: 5.17238096e+00 + syst_JES_Gjet_Purity: 1.68859787e+00 + syst_JES_Gjet_Stat1: 2.55730972e-03 + syst_JES_Gjet_Stat10: 5.06304049e-01 + syst_JES_Gjet_Stat11: 9.29780393e-02 + syst_JES_Gjet_Stat12: 1.28113191e-01 + syst_JES_Gjet_Stat13: 5.41356285e-02 + syst_JES_Gjet_Stat14: 6.12424118e-03 + syst_JES_Gjet_Stat15: 6.16953142e-06 syst_JES_Gjet_Stat2: 0.0 - syst_JES_Gjet_Stat3: 0.01176149100879646 - syst_JES_Gjet_Stat4: 0.023657566971267356 - syst_JES_Gjet_Stat5: 0.04430660757720004 - syst_JES_Gjet_Stat6: 0.1431485161466929 - syst_JES_Gjet_Stat7: 0.27485990522446163 - syst_JES_Gjet_Stat8: 0.265063426371878 - syst_JES_Gjet_Stat9: 0.4915454683953459 - syst_JES_Gjet_Veto: 2.184945022191634 - syst_JES_Gjet_dPhi: 0.5922657068411102 - syst_JES_LArESZee: 8.39967154119731 - syst_JES_LArEsmear: 0.6787989687676316 - syst_JES_LAr_JVT: 1.037455207466809 - syst_JES_MJB_Alpha: 9.779110969267201e-06 - syst_JES_MJB_Asym: 0.03264424633453804 - syst_JES_MJB_Beta: 0.00045552933761940686 - syst_JES_MJB_Stat1: 0.000788127024977573 - syst_JES_MJB_Stat10: 3.002510076949169e-16 - syst_JES_MJB_Stat11: 1.3908367984778086e-20 - syst_JES_MJB_Stat12: 8.093873423769363e-21 - syst_JES_MJB_Stat13: 5.5659452701225866e-21 + syst_JES_Gjet_Stat3: 1.17614910e-02 + syst_JES_Gjet_Stat4: 2.36575670e-02 + syst_JES_Gjet_Stat5: 4.43066076e-02 + syst_JES_Gjet_Stat6: 1.43148516e-01 + syst_JES_Gjet_Stat7: 2.74859905e-01 + syst_JES_Gjet_Stat8: 2.65063426e-01 + syst_JES_Gjet_Stat9: 4.91545468e-01 + syst_JES_Gjet_Veto: 2.18494502e+00 + syst_JES_Gjet_dPhi: 5.92265707e-01 + syst_JES_LArESZee: 8.39967154e+00 + syst_JES_LArEsmear: 6.78798969e-01 + syst_JES_LAr_JVT: 1.03745521e+00 + syst_JES_MJB_Alpha: 9.77911097e-06 + syst_JES_MJB_Asym: 3.26442463e-02 + syst_JES_MJB_Beta: 4.55529338e-04 + syst_JES_MJB_Stat1: 7.88127025e-04 + syst_JES_MJB_Stat10: 3.00251008e-16 + syst_JES_MJB_Stat11: 1.39083680e-20 + syst_JES_MJB_Stat12: 8.09387342e-21 + syst_JES_MJB_Stat13: 5.56594527e-21 syst_JES_MJB_Stat14: 0.0 - syst_JES_MJB_Stat15: 1.1208471918598005e-41 + syst_JES_MJB_Stat15: 1.12084719e-41 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 0.012093348047583845 - syst_JES_MJB_Stat3: 0.004157775126194297 - syst_JES_MJB_Stat4: 0.0011243708697200403 - syst_JES_MJB_Stat5: 2.6171287702365736e-06 - syst_JES_MJB_Stat6: 1.8922655072689984e-06 - syst_JES_MJB_Stat7: 1.7857443826035123e-11 + syst_JES_MJB_Stat2: 1.20933480e-02 + syst_JES_MJB_Stat3: 4.15777513e-03 + syst_JES_MJB_Stat4: 1.12437087e-03 + syst_JES_MJB_Stat5: 2.61712877e-06 + syst_JES_MJB_Stat6: 1.89226551e-06 + syst_JES_MJB_Stat7: 1.78574438e-11 syst_JES_MJB_Stat8: 0.0 syst_JES_MJB_Stat9: 0.0 - syst_JES_MJB_Threshold: 0.03992576486430786 - syst_JES_Pileup_MuOffset: 8.9335812947552e-05 - syst_JES_Pileup_NPVOffset: 0.3464289576522147 - syst_JES_Pileup_Pt_term: 1.4365906584688624 - syst_JES_PunchThrough_MC15: 7.398455024530458e-24 + syst_JES_MJB_Threshold: 3.99257649e-02 + syst_JES_Pileup_MuOffset: 8.93358129e-05 + syst_JES_Pileup_NPVOffset: 3.46428958e-01 + syst_JES_Pileup_Pt_term: 1.43659066e+00 + syst_JES_PunchThrough_MC15: 7.39845502e-24 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 8.007249262387177 - syst_JES_Zjet_MuScale: 0.5407500046232084 - syst_JES_Zjet_MuSmearID: 0.10868003312476492 - syst_JES_Zjet_MuSmearMS: 0.6590602248656795 - syst_JES_Zjet_OOC: 2.923472421624668 - syst_JES_Zjet_Stat1: 0.03545818241252645 - syst_JES_Zjet_Stat10: 1.0848096273079437 - syst_JES_Zjet_Stat11: 1.1950432241136721 - syst_JES_Zjet_Stat12: 0.3795598338865692 - syst_JES_Zjet_Stat13: 0.12523830913502465 - syst_JES_Zjet_Stat2: 0.0067331814196559415 - syst_JES_Zjet_Stat3: 0.019632795903793222 - syst_JES_Zjet_Stat4: 0.023141548673327805 - syst_JES_Zjet_Stat5: 0.025834892587351704 - syst_JES_Zjet_Stat6: 0.04928033355203675 - syst_JES_Zjet_Stat7: 0.09272609274093242 - syst_JES_Zjet_Stat8: 0.16244607566820443 - syst_JES_Zjet_Stat9: 0.5024030851816099 - syst_JES_Zjet_Veto: 0.5280000757575704 - syst_JES_Zjet_dPhi: 0.549410747983692 + syst_JES_Zjet_MC: 8.00724926e+00 + syst_JES_Zjet_MuScale: 5.40750005e-01 + syst_JES_Zjet_MuSmearID: 1.08680033e-01 + syst_JES_Zjet_MuSmearMS: 6.59060225e-01 + syst_JES_Zjet_OOC: 2.92347242e+00 + syst_JES_Zjet_Stat1: 3.54581824e-02 + syst_JES_Zjet_Stat10: 1.08480963e+00 + syst_JES_Zjet_Stat11: 1.19504322e+00 + syst_JES_Zjet_Stat12: 3.79559834e-01 + syst_JES_Zjet_Stat13: 1.25238309e-01 + syst_JES_Zjet_Stat2: 6.73318142e-03 + syst_JES_Zjet_Stat3: 1.96327959e-02 + syst_JES_Zjet_Stat4: 2.31415487e-02 + syst_JES_Zjet_Stat5: 2.58348926e-02 + syst_JES_Zjet_Stat6: 4.92803336e-02 + syst_JES_Zjet_Stat7: 9.27260927e-02 + syst_JES_Zjet_Stat8: 1.62446076e-01 + syst_JES_Zjet_Stat9: 5.02403085e-01 + syst_JES_Zjet_Veto: 5.28000076e-01 + syst_JES_Zjet_dPhi: 5.49410748e-01 syst_PRW: 0.3461 syst_Unfolding_bias: 0.3601 - syst_cleaning: 2.411880749539662 + syst_cleaning: 2.41188075e+00 syst_lumi: 9.407 - syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.07026813840568143 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 3.0872863488831093 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 2.529158901690441 + syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 7.02681384e-02 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 3.08728635e+00 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 2.52915890e+00 syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 9.794027567859914 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.08329479860711593 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.4630939819437438 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 9.79402757e+00 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 8.32947986e-02 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.46309398e+00 - stat: 1.6287 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 1.8876320483611206 - syst_JER_NP1: 0.1928171867339631 - syst_JER_NP2: 0.2364745810864246 - syst_JER_NP3: 0.40970819798974 - syst_JER_NP4: 0.18650994611548202 - syst_JER_NP5: 0.11444518251110442 - syst_JER_NP6: 4.4383801943952484e-29 - syst_JER_NP7: 0.15856656669991942 - syst_JER_NP8: 0.289184059035072 - syst_JES_EtaIntercalibration_Modelling: 1.5096035075475944 - syst_JES_EtaIntercalibration_NonClosure: 0.00022828429643757803 + syst_JER_NP0: 1.88763205e+00 + syst_JER_NP1: 1.92817187e-01 + syst_JER_NP2: 2.36474581e-01 + syst_JER_NP3: 4.09708198e-01 + syst_JER_NP4: 1.86509946e-01 + syst_JER_NP5: 1.14445183e-01 + syst_JER_NP6: 4.43838019e-29 + syst_JER_NP7: 1.58566567e-01 + syst_JER_NP8: 2.89184059e-01 + syst_JES_EtaIntercalibration_Modelling: 1.50960351e+00 + syst_JES_EtaIntercalibration_NonClosure: 2.28284296e-04 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 0.010855382754652183 - syst_JES_EtaIntercalibration_Stat101: 0.0006247222948438769 - syst_JES_EtaIntercalibration_Stat102: 6.283320381490028e-06 - syst_JES_EtaIntercalibration_Stat103: 2.9219697123686956e-06 - syst_JES_EtaIntercalibration_Stat104: 2.9219697123686956e-06 - syst_JES_EtaIntercalibration_Stat105: 2.9219697123686956e-06 + syst_JES_EtaIntercalibration_Stat100: 1.08553828e-02 + syst_JES_EtaIntercalibration_Stat101: 6.24722295e-04 + syst_JES_EtaIntercalibration_Stat102: 6.28332038e-06 + syst_JES_EtaIntercalibration_Stat103: 2.92196971e-06 + syst_JES_EtaIntercalibration_Stat104: 2.92196971e-06 + syst_JES_EtaIntercalibration_Stat105: 2.92196971e-06 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 0.0008391786162671211 - syst_JES_EtaIntercalibration_Stat111: 0.0008391786162671211 + syst_JES_EtaIntercalibration_Stat110: 8.39178616e-04 + syst_JES_EtaIntercalibration_Stat111: 8.39178616e-04 syst_JES_EtaIntercalibration_Stat112: 0.0 - syst_JES_EtaIntercalibration_Stat113: 0.0002633576266576497 - syst_JES_EtaIntercalibration_Stat114: 0.009206715918284869 - syst_JES_EtaIntercalibration_Stat115: 0.14730624791569433 - syst_JES_EtaIntercalibration_Stat116: 0.12430036846284888 - syst_JES_EtaIntercalibration_Stat117: 0.012907200190203916 - syst_JES_EtaIntercalibration_Stat118: 0.0011373523464608495 - syst_JES_EtaIntercalibration_Stat119: 0.11028349695217321 - syst_JES_EtaIntercalibration_Stat12: 0.00019682456858837515 - syst_JES_EtaIntercalibration_Stat120: 0.15460222346395927 - syst_JES_EtaIntercalibration_Stat121: 0.012762147272304925 - syst_JES_EtaIntercalibration_Stat122: 0.00015515170726743553 - syst_JES_EtaIntercalibration_Stat123: 2.9219697123686956e-06 - syst_JES_EtaIntercalibration_Stat124: 2.9219697123686956e-06 - syst_JES_EtaIntercalibration_Stat125: 2.9219697123686956e-06 + syst_JES_EtaIntercalibration_Stat113: 2.63357627e-04 + syst_JES_EtaIntercalibration_Stat114: 9.20671592e-03 + syst_JES_EtaIntercalibration_Stat115: 1.47306248e-01 + syst_JES_EtaIntercalibration_Stat116: 1.24300368e-01 + syst_JES_EtaIntercalibration_Stat117: 1.29072002e-02 + syst_JES_EtaIntercalibration_Stat118: 1.13735235e-03 + syst_JES_EtaIntercalibration_Stat119: 1.10283497e-01 + syst_JES_EtaIntercalibration_Stat12: 1.96824569e-04 + syst_JES_EtaIntercalibration_Stat120: 1.54602223e-01 + syst_JES_EtaIntercalibration_Stat121: 1.27621473e-02 + syst_JES_EtaIntercalibration_Stat122: 1.55151707e-04 + syst_JES_EtaIntercalibration_Stat123: 2.92196971e-06 + syst_JES_EtaIntercalibration_Stat124: 2.92196971e-06 + syst_JES_EtaIntercalibration_Stat125: 2.92196971e-06 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 5.833547119891979e-09 - syst_JES_EtaIntercalibration_Stat129: 0.0008391766717694376 - syst_JES_EtaIntercalibration_Stat13: 0.0006235596629032381 - syst_JES_EtaIntercalibration_Stat130: 0.0008391786162671211 - syst_JES_EtaIntercalibration_Stat131: 2.959208804731427e-07 - syst_JES_EtaIntercalibration_Stat132: 0.0020011031157838918 - syst_JES_EtaIntercalibration_Stat133: 0.06629351099466674 - syst_JES_EtaIntercalibration_Stat134: 0.7601681573836147 - syst_JES_EtaIntercalibration_Stat135: 0.49990499847471015 - syst_JES_EtaIntercalibration_Stat136: 0.04434542565755796 - syst_JES_EtaIntercalibration_Stat137: 0.04179053840284904 - syst_JES_EtaIntercalibration_Stat138: 0.4964287536998638 - syst_JES_EtaIntercalibration_Stat139: 0.5859502431947614 - syst_JES_EtaIntercalibration_Stat14: 5.162377431959038e-07 - syst_JES_EtaIntercalibration_Stat140: 0.05955808656261549 - syst_JES_EtaIntercalibration_Stat141: 0.0001313430639479299 + syst_JES_EtaIntercalibration_Stat128: 5.83354712e-09 + syst_JES_EtaIntercalibration_Stat129: 8.39176672e-04 + syst_JES_EtaIntercalibration_Stat13: 6.23559663e-04 + syst_JES_EtaIntercalibration_Stat130: 8.39178616e-04 + syst_JES_EtaIntercalibration_Stat131: 2.95920880e-07 + syst_JES_EtaIntercalibration_Stat132: 2.00110312e-03 + syst_JES_EtaIntercalibration_Stat133: 6.62935110e-02 + syst_JES_EtaIntercalibration_Stat134: 7.60168157e-01 + syst_JES_EtaIntercalibration_Stat135: 4.99904998e-01 + syst_JES_EtaIntercalibration_Stat136: 4.43454257e-02 + syst_JES_EtaIntercalibration_Stat137: 4.17905384e-02 + syst_JES_EtaIntercalibration_Stat138: 4.96428754e-01 + syst_JES_EtaIntercalibration_Stat139: 5.85950243e-01 + syst_JES_EtaIntercalibration_Stat14: 5.16237743e-07 + syst_JES_EtaIntercalibration_Stat140: 5.95580866e-02 + syst_JES_EtaIntercalibration_Stat141: 1.31343064e-04 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 2.9219697123686956e-06 - syst_JES_EtaIntercalibration_Stat144: 2.9219697123686956e-06 + syst_JES_EtaIntercalibration_Stat143: 2.92196971e-06 + syst_JES_EtaIntercalibration_Stat144: 2.92196971e-06 syst_JES_EtaIntercalibration_Stat145: 0.0 - syst_JES_EtaIntercalibration_Stat146: 5.833547119891979e-09 - syst_JES_EtaIntercalibration_Stat147: 0.0008391766717694376 + syst_JES_EtaIntercalibration_Stat146: 5.83354712e-09 + syst_JES_EtaIntercalibration_Stat147: 8.39176672e-04 syst_JES_EtaIntercalibration_Stat148: 0.0 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 0.00039274097061549356 - syst_JES_EtaIntercalibration_Stat151: 0.045200505251600895 - syst_JES_EtaIntercalibration_Stat152: 0.3908187431533958 - syst_JES_EtaIntercalibration_Stat153: 0.32698220135047107 - syst_JES_EtaIntercalibration_Stat154: 0.02225004044940143 - syst_JES_EtaIntercalibration_Stat155: 0.026275338756141665 - syst_JES_EtaIntercalibration_Stat156: 0.3094907228011851 - syst_JES_EtaIntercalibration_Stat157: 0.3584855172458157 - syst_JES_EtaIntercalibration_Stat158: 0.03585378533164246 - syst_JES_EtaIntercalibration_Stat159: 0.0005497781643535873 + syst_JES_EtaIntercalibration_Stat150: 3.92740971e-04 + syst_JES_EtaIntercalibration_Stat151: 4.52005053e-02 + syst_JES_EtaIntercalibration_Stat152: 3.90818743e-01 + syst_JES_EtaIntercalibration_Stat153: 3.26982201e-01 + syst_JES_EtaIntercalibration_Stat154: 2.22500404e-02 + syst_JES_EtaIntercalibration_Stat155: 2.62753388e-02 + syst_JES_EtaIntercalibration_Stat156: 3.09490723e-01 + syst_JES_EtaIntercalibration_Stat157: 3.58485517e-01 + syst_JES_EtaIntercalibration_Stat158: 3.58537853e-02 + syst_JES_EtaIntercalibration_Stat159: 5.49778164e-04 syst_JES_EtaIntercalibration_Stat16: 0.0 syst_JES_EtaIntercalibration_Stat160: 0.0 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 - syst_JES_EtaIntercalibration_Stat164: 5.833547119891979e-09 + syst_JES_EtaIntercalibration_Stat164: 5.83354712e-09 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 - syst_JES_EtaIntercalibration_Stat168: 0.00011661032061957466 - syst_JES_EtaIntercalibration_Stat169: 0.014770116688773993 + syst_JES_EtaIntercalibration_Stat168: 1.16610321e-04 + syst_JES_EtaIntercalibration_Stat169: 1.47701167e-02 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 0.13785835801648008 - syst_JES_EtaIntercalibration_Stat171: 0.11929924172013835 - syst_JES_EtaIntercalibration_Stat172: 0.012183688060271406 - syst_JES_EtaIntercalibration_Stat173: 0.007637478035974965 - syst_JES_EtaIntercalibration_Stat174: 0.10365085045478402 - syst_JES_EtaIntercalibration_Stat175: 0.12290994864127151 - syst_JES_EtaIntercalibration_Stat176: 0.011112922241696825 - syst_JES_EtaIntercalibration_Stat177: 0.0003079380457169916 + syst_JES_EtaIntercalibration_Stat170: 1.37858358e-01 + syst_JES_EtaIntercalibration_Stat171: 1.19299242e-01 + syst_JES_EtaIntercalibration_Stat172: 1.21836881e-02 + syst_JES_EtaIntercalibration_Stat173: 7.63747804e-03 + syst_JES_EtaIntercalibration_Stat174: 1.03650850e-01 + syst_JES_EtaIntercalibration_Stat175: 1.22909949e-01 + syst_JES_EtaIntercalibration_Stat176: 1.11129222e-02 + syst_JES_EtaIntercalibration_Stat177: 3.07938046e-04 syst_JES_EtaIntercalibration_Stat178: 0.0 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 @@ -14816,17 +14816,17 @@ bins: syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 syst_JES_EtaIntercalibration_Stat184: 0.0 - syst_JES_EtaIntercalibration_Stat185: 0.0002921103686964912 - syst_JES_EtaIntercalibration_Stat186: 0.012764812885428441 - syst_JES_EtaIntercalibration_Stat187: 0.06998197250006605 - syst_JES_EtaIntercalibration_Stat188: 0.05060074184238804 - syst_JES_EtaIntercalibration_Stat189: 0.00993122705157827 + syst_JES_EtaIntercalibration_Stat185: 2.92110369e-04 + syst_JES_EtaIntercalibration_Stat186: 1.27648129e-02 + syst_JES_EtaIntercalibration_Stat187: 6.99819725e-02 + syst_JES_EtaIntercalibration_Stat188: 5.06007418e-02 + syst_JES_EtaIntercalibration_Stat189: 9.93122705e-03 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 0.004827584326555052 - syst_JES_EtaIntercalibration_Stat191: 0.07615978121686012 - syst_JES_EtaIntercalibration_Stat192: 0.07810481931353531 - syst_JES_EtaIntercalibration_Stat193: 0.004189777584586084 - syst_JES_EtaIntercalibration_Stat194: 0.000275309475863073 + syst_JES_EtaIntercalibration_Stat190: 4.82758433e-03 + syst_JES_EtaIntercalibration_Stat191: 7.61597812e-02 + syst_JES_EtaIntercalibration_Stat192: 7.81048193e-02 + syst_JES_EtaIntercalibration_Stat193: 4.18977758e-03 + syst_JES_EtaIntercalibration_Stat194: 2.75309476e-04 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 syst_JES_EtaIntercalibration_Stat197: 0.0 @@ -14834,70 +14834,70 @@ bins: syst_JES_EtaIntercalibration_Stat199: 0.0 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 4.3439834253827445e-15 - syst_JES_EtaIntercalibration_Stat201: 0.00505008225180541 - syst_JES_EtaIntercalibration_Stat202: 0.028027402662394535 - syst_JES_EtaIntercalibration_Stat203: 0.020635262901160238 - syst_JES_EtaIntercalibration_Stat204: 0.0017580537534444163 - syst_JES_EtaIntercalibration_Stat205: 0.0011887930717748988 - syst_JES_EtaIntercalibration_Stat206: 0.018079050721760807 - syst_JES_EtaIntercalibration_Stat207: 0.019867657134146444 - syst_JES_EtaIntercalibration_Stat208: 0.002211828927078204 - syst_JES_EtaIntercalibration_Stat209: 7.103992671026625e-06 + syst_JES_EtaIntercalibration_Stat200: 4.34398343e-15 + syst_JES_EtaIntercalibration_Stat201: 5.05008225e-03 + syst_JES_EtaIntercalibration_Stat202: 2.80274027e-02 + syst_JES_EtaIntercalibration_Stat203: 2.06352629e-02 + syst_JES_EtaIntercalibration_Stat204: 1.75805375e-03 + syst_JES_EtaIntercalibration_Stat205: 1.18879307e-03 + syst_JES_EtaIntercalibration_Stat206: 1.80790507e-02 + syst_JES_EtaIntercalibration_Stat207: 1.98676571e-02 + syst_JES_EtaIntercalibration_Stat208: 2.21182893e-03 + syst_JES_EtaIntercalibration_Stat209: 7.10399267e-06 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 syst_JES_EtaIntercalibration_Stat211: 0.0 syst_JES_EtaIntercalibration_Stat212: 0.0 - syst_JES_EtaIntercalibration_Stat213: 4.479083388373117e-15 - syst_JES_EtaIntercalibration_Stat214: 9.810038196026556e-06 - syst_JES_EtaIntercalibration_Stat215: 5.8868730876416896e-05 - syst_JES_EtaIntercalibration_Stat216: 0.00013507066668969989 - syst_JES_EtaIntercalibration_Stat217: 4.235786872498072e-05 - syst_JES_EtaIntercalibration_Stat218: 1.3455282187676333e-06 - syst_JES_EtaIntercalibration_Stat219: 0.0005067901465843629 + syst_JES_EtaIntercalibration_Stat213: 4.47908339e-15 + syst_JES_EtaIntercalibration_Stat214: 9.81003820e-06 + syst_JES_EtaIntercalibration_Stat215: 5.88687309e-05 + syst_JES_EtaIntercalibration_Stat216: 1.35070667e-04 + syst_JES_EtaIntercalibration_Stat217: 4.23578687e-05 + syst_JES_EtaIntercalibration_Stat218: 1.34552822e-06 + syst_JES_EtaIntercalibration_Stat219: 5.06790147e-04 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 3.798638275750931e-05 - syst_JES_EtaIntercalibration_Stat221: 1.776312559067238e-05 - syst_JES_EtaIntercalibration_Stat222: 3.564560557802507e-07 + syst_JES_EtaIntercalibration_Stat220: 3.79863828e-05 + syst_JES_EtaIntercalibration_Stat221: 1.77631256e-05 + syst_JES_EtaIntercalibration_Stat222: 3.56456056e-07 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 - syst_JES_EtaIntercalibration_Stat225: 1.0513548401943087e-38 - syst_JES_EtaIntercalibration_Stat226: 2.3336308084185035e-12 - syst_JES_EtaIntercalibration_Stat227: 1.1815803696744459e-07 - syst_JES_EtaIntercalibration_Stat228: 1.353255433205424e-07 - syst_JES_EtaIntercalibration_Stat229: 7.33436914465041e-15 + syst_JES_EtaIntercalibration_Stat225: 1.05135484e-38 + syst_JES_EtaIntercalibration_Stat226: 2.33363081e-12 + syst_JES_EtaIntercalibration_Stat227: 1.18158037e-07 + syst_JES_EtaIntercalibration_Stat228: 1.35325543e-07 + syst_JES_EtaIntercalibration_Stat229: 7.33436914e-15 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 8.356279121116048e-12 - syst_JES_EtaIntercalibration_Stat231: 9.248079692563208e-08 - syst_JES_EtaIntercalibration_Stat232: 1.1149214980081743e-07 - syst_JES_EtaIntercalibration_Stat233: 1.881873202423166e-11 - syst_JES_EtaIntercalibration_Stat234: 2.0083129113761133e-24 + syst_JES_EtaIntercalibration_Stat230: 8.35627912e-12 + syst_JES_EtaIntercalibration_Stat231: 9.24807969e-08 + syst_JES_EtaIntercalibration_Stat232: 1.11492150e-07 + syst_JES_EtaIntercalibration_Stat233: 1.88187320e-11 + syst_JES_EtaIntercalibration_Stat234: 2.00831291e-24 syst_JES_EtaIntercalibration_Stat235: 0.0 syst_JES_EtaIntercalibration_Stat236: 0.0 - syst_JES_EtaIntercalibration_Stat237: 5.162565907569607e-38 - syst_JES_EtaIntercalibration_Stat238: 6.038890005198262e-20 - syst_JES_EtaIntercalibration_Stat239: 3.837810182903787e-25 + syst_JES_EtaIntercalibration_Stat237: 5.16256591e-38 + syst_JES_EtaIntercalibration_Stat238: 6.03889001e-20 + syst_JES_EtaIntercalibration_Stat239: 3.83781018e-25 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 - syst_JES_EtaIntercalibration_Stat241: 9.238759007572391e-38 - syst_JES_EtaIntercalibration_Stat242: 9.58967657170981e-25 - syst_JES_EtaIntercalibration_Stat243: 5.2255972864353024e-20 + syst_JES_EtaIntercalibration_Stat241: 9.23875901e-38 + syst_JES_EtaIntercalibration_Stat242: 9.58967657e-25 + syst_JES_EtaIntercalibration_Stat243: 5.22559729e-20 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 syst_JES_EtaIntercalibration_Stat27: 0.0 - syst_JES_EtaIntercalibration_Stat28: 4.532776963407752e-08 - syst_JES_EtaIntercalibration_Stat29: 5.126445942365919e-05 + syst_JES_EtaIntercalibration_Stat28: 4.53277696e-08 + syst_JES_EtaIntercalibration_Stat29: 5.12644594e-05 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 0.00027363780349213445 - syst_JES_EtaIntercalibration_Stat31: 0.00036395955819293986 - syst_JES_EtaIntercalibration_Stat32: 5.97261205420208e-07 - syst_JES_EtaIntercalibration_Stat33: 3.2225719026113285e-05 - syst_JES_EtaIntercalibration_Stat34: 0.0007568001651691151 - syst_JES_EtaIntercalibration_Stat35: 0.0003271008865778264 - syst_JES_EtaIntercalibration_Stat36: 0.0001454313253841826 - syst_JES_EtaIntercalibration_Stat37: 3.308909862779583e-08 + syst_JES_EtaIntercalibration_Stat30: 2.73637803e-04 + syst_JES_EtaIntercalibration_Stat31: 3.63959558e-04 + syst_JES_EtaIntercalibration_Stat32: 5.97261205e-07 + syst_JES_EtaIntercalibration_Stat33: 3.22257190e-05 + syst_JES_EtaIntercalibration_Stat34: 7.56800165e-04 + syst_JES_EtaIntercalibration_Stat35: 3.27100887e-04 + syst_JES_EtaIntercalibration_Stat36: 1.45431325e-04 + syst_JES_EtaIntercalibration_Stat37: 3.30890986e-08 syst_JES_EtaIntercalibration_Stat38: 0.0 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 @@ -14912,20 +14912,20 @@ bins: syst_JES_EtaIntercalibration_Stat48: 0.0 syst_JES_EtaIntercalibration_Stat49: 0.0 syst_JES_EtaIntercalibration_Stat5: 0.0 - syst_JES_EtaIntercalibration_Stat50: 4.591666690865094e-08 - syst_JES_EtaIntercalibration_Stat51: 0.00010728074419484608 - syst_JES_EtaIntercalibration_Stat52: 0.0010131640883884506 - syst_JES_EtaIntercalibration_Stat53: 0.0005353152972781554 - syst_JES_EtaIntercalibration_Stat54: 3.827029392035029e-05 - syst_JES_EtaIntercalibration_Stat55: 0.00015469565863333076 - syst_JES_EtaIntercalibration_Stat56: 0.0007539774847434106 - syst_JES_EtaIntercalibration_Stat57: 0.0014264528269452167 - syst_JES_EtaIntercalibration_Stat58: 0.00015278316399394272 - syst_JES_EtaIntercalibration_Stat59: 1.8258948066085298e-07 + syst_JES_EtaIntercalibration_Stat50: 4.59166669e-08 + syst_JES_EtaIntercalibration_Stat51: 1.07280744e-04 + syst_JES_EtaIntercalibration_Stat52: 1.01316409e-03 + syst_JES_EtaIntercalibration_Stat53: 5.35315297e-04 + syst_JES_EtaIntercalibration_Stat54: 3.82702939e-05 + syst_JES_EtaIntercalibration_Stat55: 1.54695659e-04 + syst_JES_EtaIntercalibration_Stat56: 7.53977485e-04 + syst_JES_EtaIntercalibration_Stat57: 1.42645283e-03 + syst_JES_EtaIntercalibration_Stat58: 1.52783164e-04 + syst_JES_EtaIntercalibration_Stat59: 1.82589481e-07 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 2.9219697123686956e-06 - syst_JES_EtaIntercalibration_Stat62: 2.9219697123686956e-06 + syst_JES_EtaIntercalibration_Stat61: 2.92196971e-06 + syst_JES_EtaIntercalibration_Stat62: 2.92196971e-06 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 @@ -14933,223 +14933,223 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 4.532776963407752e-08 + syst_JES_EtaIntercalibration_Stat7: 4.53277696e-08 syst_JES_EtaIntercalibration_Stat70: 0.0 syst_JES_EtaIntercalibration_Stat71: 0.0 - syst_JES_EtaIntercalibration_Stat72: 6.774916733805663e-06 - syst_JES_EtaIntercalibration_Stat73: 0.0004762001469970373 - syst_JES_EtaIntercalibration_Stat74: 0.008338719870579658 - syst_JES_EtaIntercalibration_Stat75: 0.0013120321289892256 - syst_JES_EtaIntercalibration_Stat76: 0.0005306272208434091 - syst_JES_EtaIntercalibration_Stat77: 0.0004546773004010646 - syst_JES_EtaIntercalibration_Stat78: 0.004762774611505357 - syst_JES_EtaIntercalibration_Stat79: 0.0036679285748225793 - syst_JES_EtaIntercalibration_Stat8: 2.0382391910666425e-05 - syst_JES_EtaIntercalibration_Stat80: 0.0007465668226455017 - syst_JES_EtaIntercalibration_Stat81: 6.134923960408963e-07 - syst_JES_EtaIntercalibration_Stat82: 2.9219697123686956e-06 - syst_JES_EtaIntercalibration_Stat83: 2.9219697123686956e-06 - syst_JES_EtaIntercalibration_Stat84: 2.9219697123686956e-06 + syst_JES_EtaIntercalibration_Stat72: 6.77491673e-06 + syst_JES_EtaIntercalibration_Stat73: 4.76200147e-04 + syst_JES_EtaIntercalibration_Stat74: 8.33871987e-03 + syst_JES_EtaIntercalibration_Stat75: 1.31203213e-03 + syst_JES_EtaIntercalibration_Stat76: 5.30627221e-04 + syst_JES_EtaIntercalibration_Stat77: 4.54677300e-04 + syst_JES_EtaIntercalibration_Stat78: 4.76277461e-03 + syst_JES_EtaIntercalibration_Stat79: 3.66792857e-03 + syst_JES_EtaIntercalibration_Stat8: 2.03823919e-05 + syst_JES_EtaIntercalibration_Stat80: 7.46566823e-04 + syst_JES_EtaIntercalibration_Stat81: 6.13492396e-07 + syst_JES_EtaIntercalibration_Stat82: 2.92196971e-06 + syst_JES_EtaIntercalibration_Stat83: 2.92196971e-06 + syst_JES_EtaIntercalibration_Stat84: 2.92196971e-06 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 syst_JES_EtaIntercalibration_Stat89: 0.0 - syst_JES_EtaIntercalibration_Stat9: 1.2254049249125777e-05 + syst_JES_EtaIntercalibration_Stat9: 1.22540492e-05 syst_JES_EtaIntercalibration_Stat90: 0.0 syst_JES_EtaIntercalibration_Stat91: 0.0 syst_JES_EtaIntercalibration_Stat92: 0.0 - syst_JES_EtaIntercalibration_Stat93: 6.146182290658161e-06 - syst_JES_EtaIntercalibration_Stat94: 0.0007636077919979602 - syst_JES_EtaIntercalibration_Stat95: 0.016472103781848876 - syst_JES_EtaIntercalibration_Stat96: 0.01412015115889345 - syst_JES_EtaIntercalibration_Stat97: 0.00037700133952016666 - syst_JES_EtaIntercalibration_Stat98: 0.0008320349656564921 - syst_JES_EtaIntercalibration_Stat99: 0.014127819470817144 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0633304371925538 - syst_JES_Flavour_Comp: 0.25284213948628104 - syst_JES_Gjet_Generator: 4.780513649180389 - syst_JES_Gjet_OOC: 2.84644282394711 - syst_JES_Gjet_Purity: 0.8584390528744601 - syst_JES_Gjet_Stat1: 0.0015485955831010237 - syst_JES_Gjet_Stat10: 0.33301286386564716 - syst_JES_Gjet_Stat11: 0.2228001795331413 - syst_JES_Gjet_Stat12: 0.03204309704132858 - syst_JES_Gjet_Stat13: 0.051881839549113906 - syst_JES_Gjet_Stat14: 0.004853779352216168 - syst_JES_Gjet_Stat15: 0.0001700875529506789 + syst_JES_EtaIntercalibration_Stat93: 6.14618229e-06 + syst_JES_EtaIntercalibration_Stat94: 7.63607792e-04 + syst_JES_EtaIntercalibration_Stat95: 1.64721038e-02 + syst_JES_EtaIntercalibration_Stat96: 1.41201512e-02 + syst_JES_EtaIntercalibration_Stat97: 3.77001340e-04 + syst_JES_EtaIntercalibration_Stat98: 8.32034966e-04 + syst_JES_EtaIntercalibration_Stat99: 1.41278195e-02 + syst_JES_EtaIntercalibration_TotalStat_MJB: 6.33304372e-02 + syst_JES_Flavour_Comp: 2.52842139e-01 + syst_JES_Gjet_Generator: 4.78051365e+00 + syst_JES_Gjet_OOC: 2.84644282e+00 + syst_JES_Gjet_Purity: 8.58439053e-01 + syst_JES_Gjet_Stat1: 1.54859558e-03 + syst_JES_Gjet_Stat10: 3.33012864e-01 + syst_JES_Gjet_Stat11: 2.22800180e-01 + syst_JES_Gjet_Stat12: 3.20430970e-02 + syst_JES_Gjet_Stat13: 5.18818395e-02 + syst_JES_Gjet_Stat14: 4.85377935e-03 + syst_JES_Gjet_Stat15: 1.70087553e-04 syst_JES_Gjet_Stat2: 0.0 - syst_JES_Gjet_Stat3: 0.006183421383020892 - syst_JES_Gjet_Stat4: 0.01280118708362627 - syst_JES_Gjet_Stat5: 0.02313980991711038 - syst_JES_Gjet_Stat6: 0.04848255253181293 - syst_JES_Gjet_Stat7: 0.10129610789660183 - syst_JES_Gjet_Stat8: 0.10952488792507392 - syst_JES_Gjet_Stat9: 0.24588921794173896 - syst_JES_Gjet_Veto: 1.1918472081185576 - syst_JES_Gjet_dPhi: 0.2722749162152107 - syst_JES_LArESZee: 4.919804340621688 - syst_JES_LArEsmear: 0.3759095139790958 - syst_JES_LAr_JVT: 0.5752069605802768 - syst_JES_MJB_Alpha: 0.00027266293673324947 - syst_JES_MJB_Asym: 0.01927257421181716 - syst_JES_MJB_Beta: 0.0002816929869178633 - syst_JES_MJB_Stat1: 0.0008889946836173994 - syst_JES_MJB_Stat10: 3.1133621686713353e-12 - syst_JES_MJB_Stat11: 2.2689865579152292e-15 - syst_JES_MJB_Stat12: 1.320688740771269e-15 - syst_JES_MJB_Stat13: 9.079410333276055e-16 + syst_JES_Gjet_Stat3: 6.18342138e-03 + syst_JES_Gjet_Stat4: 1.28011871e-02 + syst_JES_Gjet_Stat5: 2.31398099e-02 + syst_JES_Gjet_Stat6: 4.84825525e-02 + syst_JES_Gjet_Stat7: 1.01296108e-01 + syst_JES_Gjet_Stat8: 1.09524888e-01 + syst_JES_Gjet_Stat9: 2.45889218e-01 + syst_JES_Gjet_Veto: 1.19184721e+00 + syst_JES_Gjet_dPhi: 2.72274916e-01 + syst_JES_LArESZee: 4.91980434e+00 + syst_JES_LArEsmear: 3.75909514e-01 + syst_JES_LAr_JVT: 5.75206961e-01 + syst_JES_MJB_Alpha: 2.72662937e-04 + syst_JES_MJB_Asym: 1.92725742e-02 + syst_JES_MJB_Beta: 2.81692987e-04 + syst_JES_MJB_Stat1: 8.88994684e-04 + syst_JES_MJB_Stat10: 3.11336217e-12 + syst_JES_MJB_Stat11: 2.26898656e-15 + syst_JES_MJB_Stat12: 1.32068874e-15 + syst_JES_MJB_Stat13: 9.07941033e-16 syst_JES_MJB_Stat14: 0.0 - syst_JES_MJB_Stat15: 1.566284990032146e-31 + syst_JES_MJB_Stat15: 1.56628499e-31 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 0.008666936771431993 - syst_JES_MJB_Stat3: 0.00641422512857165 - syst_JES_MJB_Stat4: 0.0030454954124903883 - syst_JES_MJB_Stat5: 1.8662847451554652e-05 - syst_JES_MJB_Stat6: 5.277558810662369e-05 - syst_JES_MJB_Stat7: 1.8091270685056924e-08 - syst_JES_MJB_Stat8: 3.6849380931027863e-37 + syst_JES_MJB_Stat2: 8.66693677e-03 + syst_JES_MJB_Stat3: 6.41422513e-03 + syst_JES_MJB_Stat4: 3.04549541e-03 + syst_JES_MJB_Stat5: 1.86628475e-05 + syst_JES_MJB_Stat6: 5.27755881e-05 + syst_JES_MJB_Stat7: 1.80912707e-08 + syst_JES_MJB_Stat8: 3.68493809e-37 syst_JES_MJB_Stat9: 0.0 - syst_JES_MJB_Threshold: 0.02679015117538533 - syst_JES_Pileup_MuOffset: 0.0024893157192288806 - syst_JES_Pileup_NPVOffset: 0.16336511255467 - syst_JES_Pileup_Pt_term: 0.770813017209751 - syst_JES_PunchThrough_MC15: 3.071792107220355e-17 + syst_JES_MJB_Threshold: 2.67901512e-02 + syst_JES_Pileup_MuOffset: 2.48931572e-03 + syst_JES_Pileup_NPVOffset: 1.63365113e-01 + syst_JES_Pileup_Pt_term: 7.70813017e-01 + syst_JES_PunchThrough_MC15: 3.07179211e-17 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 4.3598918564569935 - syst_JES_Zjet_MuScale: 0.28353724623054377 - syst_JES_Zjet_MuSmearID: 0.05073851273933835 - syst_JES_Zjet_MuSmearMS: 0.40557977612302126 - syst_JES_Zjet_OOC: 1.47676805220048 - syst_JES_Zjet_Stat1: 0.019283575913196183 - syst_JES_Zjet_Stat10: 0.4949879064179245 - syst_JES_Zjet_Stat11: 0.7454842251852147 - syst_JES_Zjet_Stat12: 0.46245231916382473 - syst_JES_Zjet_Stat13: 0.08353852464581836 - syst_JES_Zjet_Stat2: 0.0038536197684774245 - syst_JES_Zjet_Stat3: 0.010869484842869601 - syst_JES_Zjet_Stat4: 0.011976794427141179 - syst_JES_Zjet_Stat5: 0.014193132872977693 - syst_JES_Zjet_Stat6: 0.020928375474460505 - syst_JES_Zjet_Stat7: 0.03229670997176028 - syst_JES_Zjet_Stat8: 0.05218883692898319 - syst_JES_Zjet_Stat9: 0.19710182647555552 - syst_JES_Zjet_Veto: 0.2778190778186408 - syst_JES_Zjet_dPhi: 0.267466689514788 + syst_JES_Zjet_MC: 4.35989186e+00 + syst_JES_Zjet_MuScale: 2.83537246e-01 + syst_JES_Zjet_MuSmearID: 5.07385127e-02 + syst_JES_Zjet_MuSmearMS: 4.05579776e-01 + syst_JES_Zjet_OOC: 1.47676805e+00 + syst_JES_Zjet_Stat1: 1.92835759e-02 + syst_JES_Zjet_Stat10: 4.94987906e-01 + syst_JES_Zjet_Stat11: 7.45484225e-01 + syst_JES_Zjet_Stat12: 4.62452319e-01 + syst_JES_Zjet_Stat13: 8.35385246e-02 + syst_JES_Zjet_Stat2: 3.85361977e-03 + syst_JES_Zjet_Stat3: 1.08694848e-02 + syst_JES_Zjet_Stat4: 1.19767944e-02 + syst_JES_Zjet_Stat5: 1.41931329e-02 + syst_JES_Zjet_Stat6: 2.09283755e-02 + syst_JES_Zjet_Stat7: 3.22967100e-02 + syst_JES_Zjet_Stat8: 5.21888369e-02 + syst_JES_Zjet_Stat9: 1.97101826e-01 + syst_JES_Zjet_Veto: 2.77819078e-01 + syst_JES_Zjet_dPhi: 2.67466690e-01 syst_PRW: 0.1966 syst_Unfolding_bias: 0.2043 - syst_cleaning: 1.3605259093453532 + syst_cleaning: 1.36052591e+00 syst_lumi: 5.343 - syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0423001341221278 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.512923990159453 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 1.2872673178093197 + syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 4.23001341e-02 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.51292399e+00 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 1.28726732e+00 syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 4.98555661385968 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0508614478264235 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.7493946540375104 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 4.98555661e+00 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 5.08614478e-02 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 7.49394654e-01 - stat: 0.8525 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.9710410547448547 - syst_JER_NP1: 0.10164491170245563 - syst_JER_NP2: 0.09085753487190813 - syst_JER_NP3: 0.2885094582505052 - syst_JER_NP4: 0.09289539224310321 - syst_JER_NP5: 0.048199768412306714 - syst_JER_NP6: 1.2070662077947507e-21 - syst_JER_NP7: 0.09799543701111801 - syst_JER_NP8: 0.21128749963024315 - syst_JES_EtaIntercalibration_Modelling: 0.8665193174419137 - syst_JES_EtaIntercalibration_NonClosure: 0.0001348401553692371 + syst_JER_NP0: 9.71041055e-01 + syst_JER_NP1: 1.01644912e-01 + syst_JER_NP2: 9.08575349e-02 + syst_JER_NP3: 2.88509458e-01 + syst_JER_NP4: 9.28953922e-02 + syst_JER_NP5: 4.81997684e-02 + syst_JER_NP6: 1.20706621e-21 + syst_JER_NP7: 9.79954370e-02 + syst_JER_NP8: 2.11287500e-01 + syst_JES_EtaIntercalibration_Modelling: 8.66519317e-01 + syst_JES_EtaIntercalibration_NonClosure: 1.34840155e-04 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 0.001931317426007439 - syst_JES_EtaIntercalibration_Stat101: 0.00020466096605606062 - syst_JES_EtaIntercalibration_Stat102: 5.91145742546413e-07 - syst_JES_EtaIntercalibration_Stat103: 1.9710738190133824e-07 - syst_JES_EtaIntercalibration_Stat104: 1.9710738190133824e-07 - syst_JES_EtaIntercalibration_Stat105: 1.9710738190133824e-07 + syst_JES_EtaIntercalibration_Stat100: 1.93131743e-03 + syst_JES_EtaIntercalibration_Stat101: 2.04660966e-04 + syst_JES_EtaIntercalibration_Stat102: 5.91145743e-07 + syst_JES_EtaIntercalibration_Stat103: 1.97107382e-07 + syst_JES_EtaIntercalibration_Stat104: 1.97107382e-07 + syst_JES_EtaIntercalibration_Stat105: 1.97107382e-07 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 0.0006793103267285136 - syst_JES_EtaIntercalibration_Stat111: 0.0006793103267285136 + syst_JES_EtaIntercalibration_Stat110: 6.79310327e-04 + syst_JES_EtaIntercalibration_Stat111: 6.79310327e-04 syst_JES_EtaIntercalibration_Stat112: 0.0 - syst_JES_EtaIntercalibration_Stat113: 4.1646658770542444e-05 - syst_JES_EtaIntercalibration_Stat114: 0.003591539328755847 - syst_JES_EtaIntercalibration_Stat115: 0.05293123463513769 - syst_JES_EtaIntercalibration_Stat116: 0.04348814867294307 - syst_JES_EtaIntercalibration_Stat117: 0.004368581548969871 - syst_JES_EtaIntercalibration_Stat118: 0.0009965390542773524 - syst_JES_EtaIntercalibration_Stat119: 0.03174964881695544 - syst_JES_EtaIntercalibration_Stat12: 9.343879064259126e-05 - syst_JES_EtaIntercalibration_Stat120: 0.046325194818802436 - syst_JES_EtaIntercalibration_Stat121: 0.002721887585849202 - syst_JES_EtaIntercalibration_Stat122: 3.1760208968456106e-05 - syst_JES_EtaIntercalibration_Stat123: 1.9710738190133824e-07 - syst_JES_EtaIntercalibration_Stat124: 1.9710738190133824e-07 - syst_JES_EtaIntercalibration_Stat125: 1.9710738190133824e-07 + syst_JES_EtaIntercalibration_Stat113: 4.16466588e-05 + syst_JES_EtaIntercalibration_Stat114: 3.59153933e-03 + syst_JES_EtaIntercalibration_Stat115: 5.29312346e-02 + syst_JES_EtaIntercalibration_Stat116: 4.34881487e-02 + syst_JES_EtaIntercalibration_Stat117: 4.36858155e-03 + syst_JES_EtaIntercalibration_Stat118: 9.96539054e-04 + syst_JES_EtaIntercalibration_Stat119: 3.17496488e-02 + syst_JES_EtaIntercalibration_Stat12: 9.34387906e-05 + syst_JES_EtaIntercalibration_Stat120: 4.63251948e-02 + syst_JES_EtaIntercalibration_Stat121: 2.72188759e-03 + syst_JES_EtaIntercalibration_Stat122: 3.17602090e-05 + syst_JES_EtaIntercalibration_Stat123: 1.97107382e-07 + syst_JES_EtaIntercalibration_Stat124: 1.97107382e-07 + syst_JES_EtaIntercalibration_Stat125: 1.97107382e-07 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 4.942406979397791e-07 - syst_JES_EtaIntercalibration_Stat129: 0.0006791457396861645 - syst_JES_EtaIntercalibration_Stat13: 0.00040041734281621717 - syst_JES_EtaIntercalibration_Stat130: 0.0006793103267285136 - syst_JES_EtaIntercalibration_Stat131: 2.465574324574297e-08 - syst_JES_EtaIntercalibration_Stat132: 0.0008334534000170615 - syst_JES_EtaIntercalibration_Stat133: 0.025133672135205395 - syst_JES_EtaIntercalibration_Stat134: 0.2901000344708701 - syst_JES_EtaIntercalibration_Stat135: 0.18753257716994134 - syst_JES_EtaIntercalibration_Stat136: 0.019055308971517623 - syst_JES_EtaIntercalibration_Stat137: 0.014480360380529208 - syst_JES_EtaIntercalibration_Stat138: 0.1874154209236796 - syst_JES_EtaIntercalibration_Stat139: 0.21111775742461836 - syst_JES_EtaIntercalibration_Stat14: 4.2695052406572826e-08 - syst_JES_EtaIntercalibration_Stat140: 0.022950953683888605 - syst_JES_EtaIntercalibration_Stat141: 0.00016046452741909128 + syst_JES_EtaIntercalibration_Stat128: 4.94240698e-07 + syst_JES_EtaIntercalibration_Stat129: 6.79145740e-04 + syst_JES_EtaIntercalibration_Stat13: 4.00417343e-04 + syst_JES_EtaIntercalibration_Stat130: 6.79310327e-04 + syst_JES_EtaIntercalibration_Stat131: 2.46557432e-08 + syst_JES_EtaIntercalibration_Stat132: 8.33453400e-04 + syst_JES_EtaIntercalibration_Stat133: 2.51336721e-02 + syst_JES_EtaIntercalibration_Stat134: 2.90100034e-01 + syst_JES_EtaIntercalibration_Stat135: 1.87532577e-01 + syst_JES_EtaIntercalibration_Stat136: 1.90553090e-02 + syst_JES_EtaIntercalibration_Stat137: 1.44803604e-02 + syst_JES_EtaIntercalibration_Stat138: 1.87415421e-01 + syst_JES_EtaIntercalibration_Stat139: 2.11117757e-01 + syst_JES_EtaIntercalibration_Stat14: 4.26950524e-08 + syst_JES_EtaIntercalibration_Stat140: 2.29509537e-02 + syst_JES_EtaIntercalibration_Stat141: 1.60464527e-04 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 1.9710738190133824e-07 - syst_JES_EtaIntercalibration_Stat144: 1.9710738190133824e-07 + syst_JES_EtaIntercalibration_Stat143: 1.97107382e-07 + syst_JES_EtaIntercalibration_Stat144: 1.97107382e-07 syst_JES_EtaIntercalibration_Stat145: 0.0 - syst_JES_EtaIntercalibration_Stat146: 4.942406979397791e-07 - syst_JES_EtaIntercalibration_Stat147: 0.0006791457396861645 + syst_JES_EtaIntercalibration_Stat146: 4.94240698e-07 + syst_JES_EtaIntercalibration_Stat147: 6.79145740e-04 syst_JES_EtaIntercalibration_Stat148: 0.0 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 0.00011579275657397573 - syst_JES_EtaIntercalibration_Stat151: 0.0214199737394797 - syst_JES_EtaIntercalibration_Stat152: 0.2165669122927138 - syst_JES_EtaIntercalibration_Stat153: 0.17287602494273172 - syst_JES_EtaIntercalibration_Stat154: 0.012732930721165494 - syst_JES_EtaIntercalibration_Stat155: 0.014231714821131008 - syst_JES_EtaIntercalibration_Stat156: 0.15220278184054323 - syst_JES_EtaIntercalibration_Stat157: 0.1856619172043637 - syst_JES_EtaIntercalibration_Stat158: 0.017568470896182173 - syst_JES_EtaIntercalibration_Stat159: 0.00014330288788087976 + syst_JES_EtaIntercalibration_Stat150: 1.15792757e-04 + syst_JES_EtaIntercalibration_Stat151: 2.14199737e-02 + syst_JES_EtaIntercalibration_Stat152: 2.16566912e-01 + syst_JES_EtaIntercalibration_Stat153: 1.72876025e-01 + syst_JES_EtaIntercalibration_Stat154: 1.27329307e-02 + syst_JES_EtaIntercalibration_Stat155: 1.42317148e-02 + syst_JES_EtaIntercalibration_Stat156: 1.52202782e-01 + syst_JES_EtaIntercalibration_Stat157: 1.85661917e-01 + syst_JES_EtaIntercalibration_Stat158: 1.75684709e-02 + syst_JES_EtaIntercalibration_Stat159: 1.43302888e-04 syst_JES_EtaIntercalibration_Stat16: 0.0 syst_JES_EtaIntercalibration_Stat160: 0.0 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 - syst_JES_EtaIntercalibration_Stat164: 4.942406979397791e-07 + syst_JES_EtaIntercalibration_Stat164: 4.94240698e-07 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 - syst_JES_EtaIntercalibration_Stat168: 0.0007873036945804331 - syst_JES_EtaIntercalibration_Stat169: 0.012696494033787437 + syst_JES_EtaIntercalibration_Stat168: 7.87303695e-04 + syst_JES_EtaIntercalibration_Stat169: 1.26964940e-02 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 0.1453476958021695 - syst_JES_EtaIntercalibration_Stat171: 0.1271884275396154 - syst_JES_EtaIntercalibration_Stat172: 0.010286425557500527 - syst_JES_EtaIntercalibration_Stat173: 0.0047510153651614305 - syst_JES_EtaIntercalibration_Stat174: 0.11807479695091583 - syst_JES_EtaIntercalibration_Stat175: 0.12463544309304637 - syst_JES_EtaIntercalibration_Stat176: 0.00948495148906941 - syst_JES_EtaIntercalibration_Stat177: 0.00035956449699601876 + syst_JES_EtaIntercalibration_Stat170: 1.45347696e-01 + syst_JES_EtaIntercalibration_Stat171: 1.27188428e-01 + syst_JES_EtaIntercalibration_Stat172: 1.02864256e-02 + syst_JES_EtaIntercalibration_Stat173: 4.75101537e-03 + syst_JES_EtaIntercalibration_Stat174: 1.18074797e-01 + syst_JES_EtaIntercalibration_Stat175: 1.24635443e-01 + syst_JES_EtaIntercalibration_Stat176: 9.48495149e-03 + syst_JES_EtaIntercalibration_Stat177: 3.59564497e-04 syst_JES_EtaIntercalibration_Stat178: 0.0 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 @@ -15158,17 +15158,17 @@ bins: syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 syst_JES_EtaIntercalibration_Stat184: 0.0 - syst_JES_EtaIntercalibration_Stat185: 0.00034788240470020904 - syst_JES_EtaIntercalibration_Stat186: 0.0076096729726053275 - syst_JES_EtaIntercalibration_Stat187: 0.018906807319058392 - syst_JES_EtaIntercalibration_Stat188: 0.020961278586956473 - syst_JES_EtaIntercalibration_Stat189: 0.006036589103127692 + syst_JES_EtaIntercalibration_Stat185: 3.47882405e-04 + syst_JES_EtaIntercalibration_Stat186: 7.60967297e-03 + syst_JES_EtaIntercalibration_Stat187: 1.89068073e-02 + syst_JES_EtaIntercalibration_Stat188: 2.09612786e-02 + syst_JES_EtaIntercalibration_Stat189: 6.03658910e-03 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 0.005144052196469238 - syst_JES_EtaIntercalibration_Stat191: 0.009603168266254632 - syst_JES_EtaIntercalibration_Stat192: 0.036296926354031686 - syst_JES_EtaIntercalibration_Stat193: 0.0007044436883101445 - syst_JES_EtaIntercalibration_Stat194: 0.0002153805179211899 + syst_JES_EtaIntercalibration_Stat190: 5.14405220e-03 + syst_JES_EtaIntercalibration_Stat191: 9.60316827e-03 + syst_JES_EtaIntercalibration_Stat192: 3.62969264e-02 + syst_JES_EtaIntercalibration_Stat193: 7.04443688e-04 + syst_JES_EtaIntercalibration_Stat194: 2.15380518e-04 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 syst_JES_EtaIntercalibration_Stat197: 0.0 @@ -15176,70 +15176,70 @@ bins: syst_JES_EtaIntercalibration_Stat199: 0.0 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 1.803930916082986e-11 - syst_JES_EtaIntercalibration_Stat201: 0.0021511945518711225 - syst_JES_EtaIntercalibration_Stat202: 0.026045203013222995 - syst_JES_EtaIntercalibration_Stat203: 0.020417352913636968 - syst_JES_EtaIntercalibration_Stat204: 0.0024302370254771443 - syst_JES_EtaIntercalibration_Stat205: 0.0018368398814267944 - syst_JES_EtaIntercalibration_Stat206: 0.020125065838401623 - syst_JES_EtaIntercalibration_Stat207: 0.025137586896915937 - syst_JES_EtaIntercalibration_Stat208: 0.003719602154761262 - syst_JES_EtaIntercalibration_Stat209: 3.769345555928774e-05 + syst_JES_EtaIntercalibration_Stat200: 1.80393092e-11 + syst_JES_EtaIntercalibration_Stat201: 2.15119455e-03 + syst_JES_EtaIntercalibration_Stat202: 2.60452030e-02 + syst_JES_EtaIntercalibration_Stat203: 2.04173529e-02 + syst_JES_EtaIntercalibration_Stat204: 2.43023703e-03 + syst_JES_EtaIntercalibration_Stat205: 1.83683988e-03 + syst_JES_EtaIntercalibration_Stat206: 2.01250658e-02 + syst_JES_EtaIntercalibration_Stat207: 2.51375869e-02 + syst_JES_EtaIntercalibration_Stat208: 3.71960215e-03 + syst_JES_EtaIntercalibration_Stat209: 3.76934556e-05 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 syst_JES_EtaIntercalibration_Stat211: 0.0 syst_JES_EtaIntercalibration_Stat212: 0.0 - syst_JES_EtaIntercalibration_Stat213: 1.8576244911176208e-11 - syst_JES_EtaIntercalibration_Stat214: 6.321786199326896e-05 - syst_JES_EtaIntercalibration_Stat215: 0.0004735630897779091 - syst_JES_EtaIntercalibration_Stat216: 0.00038768248606301523 - syst_JES_EtaIntercalibration_Stat217: 0.00019191955196644245 - syst_JES_EtaIntercalibration_Stat218: 2.481695942294301e-05 - syst_JES_EtaIntercalibration_Stat219: 0.0011425299777248737 + syst_JES_EtaIntercalibration_Stat213: 1.85762449e-11 + syst_JES_EtaIntercalibration_Stat214: 6.32178620e-05 + syst_JES_EtaIntercalibration_Stat215: 4.73563090e-04 + syst_JES_EtaIntercalibration_Stat216: 3.87682486e-04 + syst_JES_EtaIntercalibration_Stat217: 1.91919552e-04 + syst_JES_EtaIntercalibration_Stat218: 2.48169594e-05 + syst_JES_EtaIntercalibration_Stat219: 1.14252998e-03 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 0.0006611481830875738 - syst_JES_EtaIntercalibration_Stat221: 5.49809155525806e-05 - syst_JES_EtaIntercalibration_Stat222: 6.463145853796244e-06 + syst_JES_EtaIntercalibration_Stat220: 6.61148183e-04 + syst_JES_EtaIntercalibration_Stat221: 5.49809156e-05 + syst_JES_EtaIntercalibration_Stat222: 6.46314585e-06 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 - syst_JES_EtaIntercalibration_Stat225: 1.411621408168635e-29 - syst_JES_EtaIntercalibration_Stat226: 1.1615559941302871e-09 - syst_JES_EtaIntercalibration_Stat227: 2.355042462462195e-06 - syst_JES_EtaIntercalibration_Stat228: 2.694112655402517e-06 - syst_JES_EtaIntercalibration_Stat229: 3.0466773705136554e-11 + syst_JES_EtaIntercalibration_Stat225: 1.41162141e-29 + syst_JES_EtaIntercalibration_Stat226: 1.16155599e-09 + syst_JES_EtaIntercalibration_Stat227: 2.35504246e-06 + syst_JES_EtaIntercalibration_Stat228: 2.69411266e-06 + syst_JES_EtaIntercalibration_Stat229: 3.04667737e-11 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 4.202821284565843e-09 - syst_JES_EtaIntercalibration_Stat231: 2.3386630967285564e-06 - syst_JES_EtaIntercalibration_Stat232: 1.3511630701666278e-06 - syst_JES_EtaIntercalibration_Stat233: 9.462193557876199e-09 - syst_JES_EtaIntercalibration_Stat234: 1.855892440310052e-18 + syst_JES_EtaIntercalibration_Stat230: 4.20282128e-09 + syst_JES_EtaIntercalibration_Stat231: 2.33866310e-06 + syst_JES_EtaIntercalibration_Stat232: 1.35116307e-06 + syst_JES_EtaIntercalibration_Stat233: 9.46219356e-09 + syst_JES_EtaIntercalibration_Stat234: 1.85589244e-18 syst_JES_EtaIntercalibration_Stat235: 0.0 syst_JES_EtaIntercalibration_Stat236: 0.0 - syst_JES_EtaIntercalibration_Stat237: 6.930531975974139e-29 - syst_JES_EtaIntercalibration_Stat238: 3.031100608529309e-15 - syst_JES_EtaIntercalibration_Stat239: 3.546566976669128e-19 + syst_JES_EtaIntercalibration_Stat237: 6.93053198e-29 + syst_JES_EtaIntercalibration_Stat238: 3.03110061e-15 + syst_JES_EtaIntercalibration_Stat239: 3.54656698e-19 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 - syst_JES_EtaIntercalibration_Stat241: 1.240148378219316e-28 - syst_JES_EtaIntercalibration_Stat242: 8.861785415479207e-19 - syst_JES_EtaIntercalibration_Stat243: 2.617994795640484e-15 + syst_JES_EtaIntercalibration_Stat241: 1.24014838e-28 + syst_JES_EtaIntercalibration_Stat242: 8.86178542e-19 + syst_JES_EtaIntercalibration_Stat243: 2.61799480e-15 syst_JES_EtaIntercalibration_Stat244: 0.0 - syst_JES_EtaIntercalibration_Stat245: 1.0737848981523255e-36 + syst_JES_EtaIntercalibration_Stat245: 1.07378490e-36 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 syst_JES_EtaIntercalibration_Stat27: 0.0 - syst_JES_EtaIntercalibration_Stat28: 3.5931394003016356e-09 - syst_JES_EtaIntercalibration_Stat29: 6.946285929005514e-06 + syst_JES_EtaIntercalibration_Stat28: 3.59313940e-09 + syst_JES_EtaIntercalibration_Stat29: 6.94628593e-06 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 6.0875986028975337e-05 - syst_JES_EtaIntercalibration_Stat31: 7.003540301161977e-05 - syst_JES_EtaIntercalibration_Stat32: 4.992216616894744e-08 - syst_JES_EtaIntercalibration_Stat33: 1.4815873944860628e-06 - syst_JES_EtaIntercalibration_Stat34: 0.0004994121461027955 - syst_JES_EtaIntercalibration_Stat35: 0.00011752602552200938 - syst_JES_EtaIntercalibration_Stat36: 3.061573491176555e-05 - syst_JES_EtaIntercalibration_Stat37: 2.623190948063065e-09 + syst_JES_EtaIntercalibration_Stat30: 6.08759860e-05 + syst_JES_EtaIntercalibration_Stat31: 7.00354030e-05 + syst_JES_EtaIntercalibration_Stat32: 4.99221662e-08 + syst_JES_EtaIntercalibration_Stat33: 1.48158739e-06 + syst_JES_EtaIntercalibration_Stat34: 4.99412146e-04 + syst_JES_EtaIntercalibration_Stat35: 1.17526026e-04 + syst_JES_EtaIntercalibration_Stat36: 3.06157349e-05 + syst_JES_EtaIntercalibration_Stat37: 2.62319095e-09 syst_JES_EtaIntercalibration_Stat38: 0.0 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 @@ -15254,20 +15254,20 @@ bins: syst_JES_EtaIntercalibration_Stat48: 0.0 syst_JES_EtaIntercalibration_Stat49: 0.0 syst_JES_EtaIntercalibration_Stat5: 0.0 - syst_JES_EtaIntercalibration_Stat50: 3.6399047721059954e-09 - syst_JES_EtaIntercalibration_Stat51: 1.6616997946380085e-05 - syst_JES_EtaIntercalibration_Stat52: 0.00037560383384624814 - syst_JES_EtaIntercalibration_Stat53: 0.0001725916732493199 - syst_JES_EtaIntercalibration_Stat54: 6.008836493032574e-06 - syst_JES_EtaIntercalibration_Stat55: 0.00010821652461616016 - syst_JES_EtaIntercalibration_Stat56: 0.00026533719584709563 - syst_JES_EtaIntercalibration_Stat57: 0.0005467063633020929 - syst_JES_EtaIntercalibration_Stat58: 3.9313524603500005e-05 - syst_JES_EtaIntercalibration_Stat59: 1.4885730104700944e-08 + syst_JES_EtaIntercalibration_Stat50: 3.63990477e-09 + syst_JES_EtaIntercalibration_Stat51: 1.66169979e-05 + syst_JES_EtaIntercalibration_Stat52: 3.75603834e-04 + syst_JES_EtaIntercalibration_Stat53: 1.72591673e-04 + syst_JES_EtaIntercalibration_Stat54: 6.00883649e-06 + syst_JES_EtaIntercalibration_Stat55: 1.08216525e-04 + syst_JES_EtaIntercalibration_Stat56: 2.65337196e-04 + syst_JES_EtaIntercalibration_Stat57: 5.46706363e-04 + syst_JES_EtaIntercalibration_Stat58: 3.93135246e-05 + syst_JES_EtaIntercalibration_Stat59: 1.48857301e-08 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 1.9710738190133824e-07 - syst_JES_EtaIntercalibration_Stat62: 1.9710738190133824e-07 + syst_JES_EtaIntercalibration_Stat61: 1.97107382e-07 + syst_JES_EtaIntercalibration_Stat62: 1.97107382e-07 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 @@ -15275,223 +15275,223 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 3.5931394003016356e-09 + syst_JES_EtaIntercalibration_Stat7: 3.59313940e-09 syst_JES_EtaIntercalibration_Stat70: 0.0 syst_JES_EtaIntercalibration_Stat71: 0.0 - syst_JES_EtaIntercalibration_Stat72: 8.077418941097459e-07 - syst_JES_EtaIntercalibration_Stat73: 0.0001384730038671798 - syst_JES_EtaIntercalibration_Stat74: 0.004096835852215708 - syst_JES_EtaIntercalibration_Stat75: 0.0010586286069722468 - syst_JES_EtaIntercalibration_Stat76: 0.00010087543209325054 - syst_JES_EtaIntercalibration_Stat77: 8.231505736346176e-05 - syst_JES_EtaIntercalibration_Stat78: 0.0010994669026396383 - syst_JES_EtaIntercalibration_Stat79: 0.001559921806333574 - syst_JES_EtaIntercalibration_Stat8: 3.1921867688937e-06 - syst_JES_EtaIntercalibration_Stat80: 0.00020607249860910603 - syst_JES_EtaIntercalibration_Stat81: 5.0740428407730255e-08 - syst_JES_EtaIntercalibration_Stat82: 1.9710738190133824e-07 - syst_JES_EtaIntercalibration_Stat83: 1.9710738190133824e-07 - syst_JES_EtaIntercalibration_Stat84: 1.9710738190133824e-07 + syst_JES_EtaIntercalibration_Stat72: 8.07741894e-07 + syst_JES_EtaIntercalibration_Stat73: 1.38473004e-04 + syst_JES_EtaIntercalibration_Stat74: 4.09683585e-03 + syst_JES_EtaIntercalibration_Stat75: 1.05862861e-03 + syst_JES_EtaIntercalibration_Stat76: 1.00875432e-04 + syst_JES_EtaIntercalibration_Stat77: 8.23150574e-05 + syst_JES_EtaIntercalibration_Stat78: 1.09946690e-03 + syst_JES_EtaIntercalibration_Stat79: 1.55992181e-03 + syst_JES_EtaIntercalibration_Stat8: 3.19218677e-06 + syst_JES_EtaIntercalibration_Stat80: 2.06072499e-04 + syst_JES_EtaIntercalibration_Stat81: 5.07404284e-08 + syst_JES_EtaIntercalibration_Stat82: 1.97107382e-07 + syst_JES_EtaIntercalibration_Stat83: 1.97107382e-07 + syst_JES_EtaIntercalibration_Stat84: 1.97107382e-07 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 syst_JES_EtaIntercalibration_Stat89: 0.0 - syst_JES_EtaIntercalibration_Stat9: 1.3556476939087087e-06 + syst_JES_EtaIntercalibration_Stat9: 1.35564769e-06 syst_JES_EtaIntercalibration_Stat90: 0.0 syst_JES_EtaIntercalibration_Stat91: 0.0 syst_JES_EtaIntercalibration_Stat92: 0.0 - syst_JES_EtaIntercalibration_Stat93: 7.429631939066699e-07 - syst_JES_EtaIntercalibration_Stat94: 0.0003752000533049003 - syst_JES_EtaIntercalibration_Stat95: 0.00703798093827342 - syst_JES_EtaIntercalibration_Stat96: 0.002659862272280277 - syst_JES_EtaIntercalibration_Stat97: 0.00021209985166190006 - syst_JES_EtaIntercalibration_Stat98: 0.00028926235064384033 - syst_JES_EtaIntercalibration_Stat99: 0.004041528659740025 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.02385431774333527 - syst_JES_Flavour_Comp: 0.17699009802811003 - syst_JES_Gjet_Generator: 2.709019149064842 - syst_JES_Gjet_OOC: 1.6899806951560128 - syst_JES_Gjet_Purity: 0.49827002719409086 - syst_JES_Gjet_Stat1: 0.0009075314705287085 - syst_JES_Gjet_Stat10: 0.2058116614771865 - syst_JES_Gjet_Stat11: 0.22975240477522754 - syst_JES_Gjet_Stat12: 0.05821051623203491 - syst_JES_Gjet_Stat13: 0.03902478186998616 - syst_JES_Gjet_Stat14: 0.008847590222766875 - syst_JES_Gjet_Stat15: 0.000991707974909953 + syst_JES_EtaIntercalibration_Stat93: 7.42963194e-07 + syst_JES_EtaIntercalibration_Stat94: 3.75200053e-04 + syst_JES_EtaIntercalibration_Stat95: 7.03798094e-03 + syst_JES_EtaIntercalibration_Stat96: 2.65986227e-03 + syst_JES_EtaIntercalibration_Stat97: 2.12099852e-04 + syst_JES_EtaIntercalibration_Stat98: 2.89262351e-04 + syst_JES_EtaIntercalibration_Stat99: 4.04152866e-03 + syst_JES_EtaIntercalibration_TotalStat_MJB: 2.38543177e-02 + syst_JES_Flavour_Comp: 1.76990098e-01 + syst_JES_Gjet_Generator: 2.70901915e+00 + syst_JES_Gjet_OOC: 1.68998070e+00 + syst_JES_Gjet_Purity: 4.98270027e-01 + syst_JES_Gjet_Stat1: 9.07531471e-04 + syst_JES_Gjet_Stat10: 2.05811661e-01 + syst_JES_Gjet_Stat11: 2.29752405e-01 + syst_JES_Gjet_Stat12: 5.82105162e-02 + syst_JES_Gjet_Stat13: 3.90247819e-02 + syst_JES_Gjet_Stat14: 8.84759022e-03 + syst_JES_Gjet_Stat15: 9.91707975e-04 syst_JES_Gjet_Stat2: 0.0 - syst_JES_Gjet_Stat3: 0.0035333836474405102 - syst_JES_Gjet_Stat4: 0.00734824555591333 - syst_JES_Gjet_Stat5: 0.011229445789975569 - syst_JES_Gjet_Stat6: 0.019614043438312256 - syst_JES_Gjet_Stat7: 0.038818918686640405 - syst_JES_Gjet_Stat8: 0.0476691713794146 - syst_JES_Gjet_Stat9: 0.12303313893012727 - syst_JES_Gjet_Veto: 0.697079973891088 - syst_JES_Gjet_dPhi: 0.14419343284283095 - syst_JES_LArESZee: 3.0236403555978675 - syst_JES_LArEsmear: 0.23472274602176926 - syst_JES_LAr_JVT: 0.3402799839837777 - syst_JES_MJB_Alpha: 0.0016292065879055977 - syst_JES_MJB_Asym: 0.006306770171807436 - syst_JES_MJB_Beta: 0.00016432444245151117 - syst_JES_MJB_Stat1: 0.0037857850903082178 - syst_JES_MJB_Stat10: 1.565816196644651e-09 - syst_JES_MJB_Stat11: 9.426686520193613e-12 - syst_JES_MJB_Stat12: 5.486270932974419e-12 - syst_JES_MJB_Stat13: 3.7724066588850145e-12 - syst_JES_MJB_Stat14: 3.9159102070910667e-35 - syst_JES_MJB_Stat15: 4.260093279495181e-24 - syst_JES_MJB_Stat16: 3.936085460200274e-37 - syst_JES_MJB_Stat2: 0.005411991384878583 - syst_JES_MJB_Stat3: 0.0058994805491670195 - syst_JES_MJB_Stat4: 0.003990131322087032 - syst_JES_MJB_Stat5: 4.31453856165246e-05 - syst_JES_MJB_Stat6: 0.00031609927238132005 - syst_JES_MJB_Stat7: 1.5510514981779297e-06 - syst_JES_MJB_Stat8: 4.946736891382643e-28 + syst_JES_Gjet_Stat3: 3.53338365e-03 + syst_JES_Gjet_Stat4: 7.34824556e-03 + syst_JES_Gjet_Stat5: 1.12294458e-02 + syst_JES_Gjet_Stat6: 1.96140434e-02 + syst_JES_Gjet_Stat7: 3.88189187e-02 + syst_JES_Gjet_Stat8: 4.76691714e-02 + syst_JES_Gjet_Stat9: 1.23033139e-01 + syst_JES_Gjet_Veto: 6.97079974e-01 + syst_JES_Gjet_dPhi: 1.44193433e-01 + syst_JES_LArESZee: 3.02364036e+00 + syst_JES_LArEsmear: 2.34722746e-01 + syst_JES_LAr_JVT: 3.40279984e-01 + syst_JES_MJB_Alpha: 1.62920659e-03 + syst_JES_MJB_Asym: 6.30677017e-03 + syst_JES_MJB_Beta: 1.64324442e-04 + syst_JES_MJB_Stat1: 3.78578509e-03 + syst_JES_MJB_Stat10: 1.56581620e-09 + syst_JES_MJB_Stat11: 9.42668652e-12 + syst_JES_MJB_Stat12: 5.48627093e-12 + syst_JES_MJB_Stat13: 3.77240666e-12 + syst_JES_MJB_Stat14: 3.91591021e-35 + syst_JES_MJB_Stat15: 4.26009328e-24 + syst_JES_MJB_Stat16: 3.93608546e-37 + syst_JES_MJB_Stat2: 5.41199138e-03 + syst_JES_MJB_Stat3: 5.89948055e-03 + syst_JES_MJB_Stat4: 3.99013132e-03 + syst_JES_MJB_Stat5: 4.31453856e-05 + syst_JES_MJB_Stat6: 3.16099272e-04 + syst_JES_MJB_Stat7: 1.55105150e-06 + syst_JES_MJB_Stat8: 4.94673689e-28 syst_JES_MJB_Stat9: 0.0 - syst_JES_MJB_Threshold: 0.013702925554420852 - syst_JES_Pileup_MuOffset: 0.014903901125208795 - syst_JES_Pileup_NPVOffset: 0.10863859017402609 - syst_JES_Pileup_Pt_term: 0.427253227021166 - syst_JES_PunchThrough_MC15: 1.5406591925031526e-12 + syst_JES_MJB_Threshold: 1.37029256e-02 + syst_JES_Pileup_MuOffset: 1.49039011e-02 + syst_JES_Pileup_NPVOffset: 1.08638590e-01 + syst_JES_Pileup_Pt_term: 4.27253227e-01 + syst_JES_PunchThrough_MC15: 1.54065919e-12 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 2.530756951980968 - syst_JES_Zjet_MuScale: 0.16759194491382934 - syst_JES_Zjet_MuSmearID: 0.02503295028557361 - syst_JES_Zjet_MuSmearMS: 0.27366955895751355 - syst_JES_Zjet_OOC: 0.8333111228706839 - syst_JES_Zjet_Stat1: 0.011086652966517892 - syst_JES_Zjet_Stat10: 0.22770197627600866 - syst_JES_Zjet_Stat11: 0.401003901072047 - syst_JES_Zjet_Stat12: 0.45145125982768064 - syst_JES_Zjet_Stat13: 0.032355544733476516 - syst_JES_Zjet_Stat2: 0.002237200301157677 - syst_JES_Zjet_Stat3: 0.006270023803368224 - syst_JES_Zjet_Stat4: 0.006794277205854939 - syst_JES_Zjet_Stat5: 0.008179248987529357 - syst_JES_Zjet_Stat6: 0.010871732923044053 - syst_JES_Zjet_Stat7: 0.014729012288677063 - syst_JES_Zjet_Stat8: 0.019525661960609685 - syst_JES_Zjet_Stat9: 0.08176532761507166 - syst_JES_Zjet_Veto: 0.1706201263040208 - syst_JES_Zjet_dPhi: 0.15216941216946325 + syst_JES_Zjet_MC: 2.53075695e+00 + syst_JES_Zjet_MuScale: 1.67591945e-01 + syst_JES_Zjet_MuSmearID: 2.50329503e-02 + syst_JES_Zjet_MuSmearMS: 2.73669559e-01 + syst_JES_Zjet_OOC: 8.33311123e-01 + syst_JES_Zjet_Stat1: 1.10866530e-02 + syst_JES_Zjet_Stat10: 2.27701976e-01 + syst_JES_Zjet_Stat11: 4.01003901e-01 + syst_JES_Zjet_Stat12: 4.51451260e-01 + syst_JES_Zjet_Stat13: 3.23555447e-02 + syst_JES_Zjet_Stat2: 2.23720030e-03 + syst_JES_Zjet_Stat3: 6.27002380e-03 + syst_JES_Zjet_Stat4: 6.79427721e-03 + syst_JES_Zjet_Stat5: 8.17924899e-03 + syst_JES_Zjet_Stat6: 1.08717329e-02 + syst_JES_Zjet_Stat7: 1.47290123e-02 + syst_JES_Zjet_Stat8: 1.95256620e-02 + syst_JES_Zjet_Stat9: 8.17653276e-02 + syst_JES_Zjet_Veto: 1.70620126e-01 + syst_JES_Zjet_dPhi: 1.52169412e-01 syst_PRW: 0.1139 syst_Unfolding_bias: 0.11838 - syst_cleaning: 0.7737936982813959 + syst_cleaning: 7.73793698e-01 syst_lumi: 3.096 - syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.017231633787891387 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.8074899504018611 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 0.7056168560203193 + syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.72316338e-02 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 8.07489950e-01 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 7.05616856e-01 syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 2.7326456045378444 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.021038413218444015 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.4181492795641289 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 2.73264560e+00 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 2.10384132e-02 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 4.18149280e-01 - stat: 0.483 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.5252435696893395 - syst_JER_NP1: 0.05606124931715311 - syst_JER_NP2: 0.04020577603715665 - syst_JER_NP3: 0.17410430063614168 - syst_JER_NP4: 0.0535342850423913 - syst_JER_NP5: 0.0254884817123343 - syst_JER_NP6: 3.361564207329677e-16 - syst_JER_NP7: 0.06400835472811343 - syst_JER_NP8: 0.13045089986274527 - syst_JES_EtaIntercalibration_Modelling: 0.5636846702723075 - syst_JES_EtaIntercalibration_NonClosure: 8.178743913340238e-05 + syst_JER_NP0: 5.25243570e-01 + syst_JER_NP1: 5.60612493e-02 + syst_JER_NP2: 4.02057760e-02 + syst_JER_NP3: 1.74104301e-01 + syst_JER_NP4: 5.35342850e-02 + syst_JER_NP5: 2.54884817e-02 + syst_JER_NP6: 3.36156421e-16 + syst_JER_NP7: 6.40083547e-02 + syst_JER_NP8: 1.30450900e-01 + syst_JES_EtaIntercalibration_Modelling: 5.63684670e-01 + syst_JES_EtaIntercalibration_NonClosure: 8.17874391e-05 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 0.0003424440431661792 - syst_JES_EtaIntercalibration_Stat101: 4.7477420741521965e-05 - syst_JES_EtaIntercalibration_Stat102: 5.730369767185622e-08 - syst_JES_EtaIntercalibration_Stat103: 1.5787643110990315e-08 - syst_JES_EtaIntercalibration_Stat104: 1.5787643110990315e-08 - syst_JES_EtaIntercalibration_Stat105: 1.5787643110990315e-08 + syst_JES_EtaIntercalibration_Stat100: 3.42444043e-04 + syst_JES_EtaIntercalibration_Stat101: 4.74774207e-05 + syst_JES_EtaIntercalibration_Stat102: 5.73036977e-08 + syst_JES_EtaIntercalibration_Stat103: 1.57876431e-08 + syst_JES_EtaIntercalibration_Stat104: 1.57876431e-08 + syst_JES_EtaIntercalibration_Stat105: 1.57876431e-08 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 0.0002979127389018469 - syst_JES_EtaIntercalibration_Stat111: 0.0002979127389018469 + syst_JES_EtaIntercalibration_Stat110: 2.97912739e-04 + syst_JES_EtaIntercalibration_Stat111: 2.97912739e-04 syst_JES_EtaIntercalibration_Stat112: 0.0 - syst_JES_EtaIntercalibration_Stat113: 5.6144206416416645e-06 - syst_JES_EtaIntercalibration_Stat114: 0.0018402528868337634 - syst_JES_EtaIntercalibration_Stat115: 0.019081768785938057 - syst_JES_EtaIntercalibration_Stat116: 0.015117025997199317 - syst_JES_EtaIntercalibration_Stat117: 0.001893039462742391 - syst_JES_EtaIntercalibration_Stat118: 0.0005433841251821772 - syst_JES_EtaIntercalibration_Stat119: 0.010000837702412736 - syst_JES_EtaIntercalibration_Stat12: 7.317179164589316e-05 - syst_JES_EtaIntercalibration_Stat120: 0.01403768955348422 - syst_JES_EtaIntercalibration_Stat121: 0.0003012416430376119 - syst_JES_EtaIntercalibration_Stat122: 5.303890557948948e-06 - syst_JES_EtaIntercalibration_Stat123: 1.5787643110990315e-08 - syst_JES_EtaIntercalibration_Stat124: 1.5787643110990315e-08 - syst_JES_EtaIntercalibration_Stat125: 1.5787643110990315e-08 + syst_JES_EtaIntercalibration_Stat113: 5.61442064e-06 + syst_JES_EtaIntercalibration_Stat114: 1.84025289e-03 + syst_JES_EtaIntercalibration_Stat115: 1.90817688e-02 + syst_JES_EtaIntercalibration_Stat116: 1.51170260e-02 + syst_JES_EtaIntercalibration_Stat117: 1.89303946e-03 + syst_JES_EtaIntercalibration_Stat118: 5.43384125e-04 + syst_JES_EtaIntercalibration_Stat119: 1.00008377e-02 + syst_JES_EtaIntercalibration_Stat12: 7.31717916e-05 + syst_JES_EtaIntercalibration_Stat120: 1.40376896e-02 + syst_JES_EtaIntercalibration_Stat121: 3.01241643e-04 + syst_JES_EtaIntercalibration_Stat122: 5.30389056e-06 + syst_JES_EtaIntercalibration_Stat123: 1.57876431e-08 + syst_JES_EtaIntercalibration_Stat124: 1.57876431e-08 + syst_JES_EtaIntercalibration_Stat125: 1.57876431e-08 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 7.309254407940662e-06 - syst_JES_EtaIntercalibration_Stat129: 0.00029555667003131563 - syst_JES_EtaIntercalibration_Stat13: 0.0001520478067346172 - syst_JES_EtaIntercalibration_Stat130: 0.0002979127389018469 - syst_JES_EtaIntercalibration_Stat131: 2.252532075243325e-09 - syst_JES_EtaIntercalibration_Stat132: 0.000540426134453174 - syst_JES_EtaIntercalibration_Stat133: 0.009237719672624841 - syst_JES_EtaIntercalibration_Stat134: 0.11131103853616675 - syst_JES_EtaIntercalibration_Stat135: 0.06880135318436695 - syst_JES_EtaIntercalibration_Stat136: 0.008216657592963212 - syst_JES_EtaIntercalibration_Stat137: 0.004515417671711001 - syst_JES_EtaIntercalibration_Stat138: 0.07065424191087184 - syst_JES_EtaIntercalibration_Stat139: 0.07699524449600767 - syst_JES_EtaIntercalibration_Stat14: 3.897980342433758e-09 - syst_JES_EtaIntercalibration_Stat140: 0.008807853370714115 - syst_JES_EtaIntercalibration_Stat141: 0.00014107462637531407 + syst_JES_EtaIntercalibration_Stat128: 7.30925441e-06 + syst_JES_EtaIntercalibration_Stat129: 2.95556670e-04 + syst_JES_EtaIntercalibration_Stat13: 1.52047807e-04 + syst_JES_EtaIntercalibration_Stat130: 2.97912739e-04 + syst_JES_EtaIntercalibration_Stat131: 2.25253208e-09 + syst_JES_EtaIntercalibration_Stat132: 5.40426134e-04 + syst_JES_EtaIntercalibration_Stat133: 9.23771967e-03 + syst_JES_EtaIntercalibration_Stat134: 1.11311039e-01 + syst_JES_EtaIntercalibration_Stat135: 6.88013532e-02 + syst_JES_EtaIntercalibration_Stat136: 8.21665759e-03 + syst_JES_EtaIntercalibration_Stat137: 4.51541767e-03 + syst_JES_EtaIntercalibration_Stat138: 7.06542419e-02 + syst_JES_EtaIntercalibration_Stat139: 7.69952445e-02 + syst_JES_EtaIntercalibration_Stat14: 3.89798034e-09 + syst_JES_EtaIntercalibration_Stat140: 8.80785337e-03 + syst_JES_EtaIntercalibration_Stat141: 1.41074626e-04 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 1.5787643110990315e-08 - syst_JES_EtaIntercalibration_Stat144: 1.5787643110990315e-08 + syst_JES_EtaIntercalibration_Stat143: 1.57876431e-08 + syst_JES_EtaIntercalibration_Stat144: 1.57876431e-08 syst_JES_EtaIntercalibration_Stat145: 0.0 - syst_JES_EtaIntercalibration_Stat146: 7.309254407940662e-06 - syst_JES_EtaIntercalibration_Stat147: 0.00029555667003131563 + syst_JES_EtaIntercalibration_Stat146: 7.30925441e-06 + syst_JES_EtaIntercalibration_Stat147: 2.95556670e-04 syst_JES_EtaIntercalibration_Stat148: 0.0 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 2.7807781766081232e-05 - syst_JES_EtaIntercalibration_Stat151: 0.008772657678833706 - syst_JES_EtaIntercalibration_Stat152: 0.10517596719308075 - syst_JES_EtaIntercalibration_Stat153: 0.07947031190954268 - syst_JES_EtaIntercalibration_Stat154: 0.006796202689737851 - syst_JES_EtaIntercalibration_Stat155: 0.0049760243166608415 - syst_JES_EtaIntercalibration_Stat156: 0.06846525012734563 - syst_JES_EtaIntercalibration_Stat157: 0.08604575701334725 - syst_JES_EtaIntercalibration_Stat158: 0.007213755215385397 - syst_JES_EtaIntercalibration_Stat159: 9.617505289834782e-05 + syst_JES_EtaIntercalibration_Stat150: 2.78077818e-05 + syst_JES_EtaIntercalibration_Stat151: 8.77265768e-03 + syst_JES_EtaIntercalibration_Stat152: 1.05175967e-01 + syst_JES_EtaIntercalibration_Stat153: 7.94703119e-02 + syst_JES_EtaIntercalibration_Stat154: 6.79620269e-03 + syst_JES_EtaIntercalibration_Stat155: 4.97602432e-03 + syst_JES_EtaIntercalibration_Stat156: 6.84652501e-02 + syst_JES_EtaIntercalibration_Stat157: 8.60457570e-02 + syst_JES_EtaIntercalibration_Stat158: 7.21375522e-03 + syst_JES_EtaIntercalibration_Stat159: 9.61750529e-05 syst_JES_EtaIntercalibration_Stat16: 0.0 syst_JES_EtaIntercalibration_Stat160: 0.0 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 - syst_JES_EtaIntercalibration_Stat164: 7.309254407940662e-06 + syst_JES_EtaIntercalibration_Stat164: 7.30925441e-06 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 - syst_JES_EtaIntercalibration_Stat168: 0.0004369964187496278 - syst_JES_EtaIntercalibration_Stat169: 0.008685321928403114 + syst_JES_EtaIntercalibration_Stat168: 4.36996419e-04 + syst_JES_EtaIntercalibration_Stat169: 8.68532193e-03 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 0.10539388312421172 - syst_JES_EtaIntercalibration_Stat171: 0.09399701378235376 - syst_JES_EtaIntercalibration_Stat172: 0.006787127055499992 - syst_JES_EtaIntercalibration_Stat173: 0.0031930356637532254 - syst_JES_EtaIntercalibration_Stat174: 0.0882066136976134 - syst_JES_EtaIntercalibration_Stat175: 0.08836618810382171 - syst_JES_EtaIntercalibration_Stat176: 0.007468337632967594 - syst_JES_EtaIntercalibration_Stat177: 0.0003135363849300428 + syst_JES_EtaIntercalibration_Stat170: 1.05393883e-01 + syst_JES_EtaIntercalibration_Stat171: 9.39970138e-02 + syst_JES_EtaIntercalibration_Stat172: 6.78712706e-03 + syst_JES_EtaIntercalibration_Stat173: 3.19303566e-03 + syst_JES_EtaIntercalibration_Stat174: 8.82066137e-02 + syst_JES_EtaIntercalibration_Stat175: 8.83661881e-02 + syst_JES_EtaIntercalibration_Stat176: 7.46833763e-03 + syst_JES_EtaIntercalibration_Stat177: 3.13536385e-04 syst_JES_EtaIntercalibration_Stat178: 0.0 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 @@ -15500,17 +15500,17 @@ bins: syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 syst_JES_EtaIntercalibration_Stat184: 0.0 - syst_JES_EtaIntercalibration_Stat185: 0.0002842295375220528 - syst_JES_EtaIntercalibration_Stat186: 0.004664648539815191 - syst_JES_EtaIntercalibration_Stat187: 0.06562987124777862 - syst_JES_EtaIntercalibration_Stat188: 0.057143131477020055 - syst_JES_EtaIntercalibration_Stat189: 0.00451431420594535 + syst_JES_EtaIntercalibration_Stat185: 2.84229538e-04 + syst_JES_EtaIntercalibration_Stat186: 4.66464854e-03 + syst_JES_EtaIntercalibration_Stat187: 6.56298712e-02 + syst_JES_EtaIntercalibration_Stat188: 5.71431315e-02 + syst_JES_EtaIntercalibration_Stat189: 4.51431421e-03 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 0.0055039179681386965 - syst_JES_EtaIntercalibration_Stat191: 0.03907468841846343 - syst_JES_EtaIntercalibration_Stat192: 0.06461699698995613 - syst_JES_EtaIntercalibration_Stat193: 0.005749303523036507 - syst_JES_EtaIntercalibration_Stat194: 0.00014384681956859525 + syst_JES_EtaIntercalibration_Stat190: 5.50391797e-03 + syst_JES_EtaIntercalibration_Stat191: 3.90746884e-02 + syst_JES_EtaIntercalibration_Stat192: 6.46169970e-02 + syst_JES_EtaIntercalibration_Stat193: 5.74930352e-03 + syst_JES_EtaIntercalibration_Stat194: 1.43846820e-04 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 syst_JES_EtaIntercalibration_Stat197: 0.0 @@ -15518,70 +15518,70 @@ bins: syst_JES_EtaIntercalibration_Stat199: 0.0 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 5.358099173214322e-09 - syst_JES_EtaIntercalibration_Stat201: 0.0013046183809834967 - syst_JES_EtaIntercalibration_Stat202: 0.012807511341006104 - syst_JES_EtaIntercalibration_Stat203: 0.012399771399102484 - syst_JES_EtaIntercalibration_Stat204: 0.0016215816723187271 - syst_JES_EtaIntercalibration_Stat205: 0.0007469469107640783 - syst_JES_EtaIntercalibration_Stat206: 0.015025806201332426 - syst_JES_EtaIntercalibration_Stat207: 0.017420617095843652 - syst_JES_EtaIntercalibration_Stat208: 0.002866171088133217 - syst_JES_EtaIntercalibration_Stat209: 6.789386036306964e-05 + syst_JES_EtaIntercalibration_Stat200: 5.35809917e-09 + syst_JES_EtaIntercalibration_Stat201: 1.30461838e-03 + syst_JES_EtaIntercalibration_Stat202: 1.28075113e-02 + syst_JES_EtaIntercalibration_Stat203: 1.23997714e-02 + syst_JES_EtaIntercalibration_Stat204: 1.62158167e-03 + syst_JES_EtaIntercalibration_Stat205: 7.46946911e-04 + syst_JES_EtaIntercalibration_Stat206: 1.50258062e-02 + syst_JES_EtaIntercalibration_Stat207: 1.74206171e-02 + syst_JES_EtaIntercalibration_Stat208: 2.86617109e-03 + syst_JES_EtaIntercalibration_Stat209: 6.78938604e-05 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 syst_JES_EtaIntercalibration_Stat211: 0.0 syst_JES_EtaIntercalibration_Stat212: 0.0 - syst_JES_EtaIntercalibration_Stat213: 5.485404907570634e-09 - syst_JES_EtaIntercalibration_Stat214: 0.0001680309792865589 - syst_JES_EtaIntercalibration_Stat215: 0.0016494444519291943 - syst_JES_EtaIntercalibration_Stat216: 0.0013665762355243851 - syst_JES_EtaIntercalibration_Stat217: 0.0002105947796124111 - syst_JES_EtaIntercalibration_Stat218: 0.0001046728459295915 - syst_JES_EtaIntercalibration_Stat219: 0.0017422166426710542 + syst_JES_EtaIntercalibration_Stat213: 5.48540491e-09 + syst_JES_EtaIntercalibration_Stat214: 1.68030979e-04 + syst_JES_EtaIntercalibration_Stat215: 1.64944445e-03 + syst_JES_EtaIntercalibration_Stat216: 1.36657624e-03 + syst_JES_EtaIntercalibration_Stat217: 2.10594780e-04 + syst_JES_EtaIntercalibration_Stat218: 1.04672846e-04 + syst_JES_EtaIntercalibration_Stat219: 1.74221664e-03 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 0.0018882754036421698 - syst_JES_EtaIntercalibration_Stat221: 0.00032029226044348933 - syst_JES_EtaIntercalibration_Stat222: 2.5581873163794084e-05 + syst_JES_EtaIntercalibration_Stat220: 1.88827540e-03 + syst_JES_EtaIntercalibration_Stat221: 3.20292260e-04 + syst_JES_EtaIntercalibration_Stat222: 2.55818732e-05 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 - syst_JES_EtaIntercalibration_Stat225: 8.330298359002516e-23 - syst_JES_EtaIntercalibration_Stat226: 6.502028356597655e-08 - syst_JES_EtaIntercalibration_Stat227: 1.0671224051157393e-05 - syst_JES_EtaIntercalibration_Stat228: 1.1761209663550769e-05 - syst_JES_EtaIntercalibration_Stat229: 9.088936612717684e-09 + syst_JES_EtaIntercalibration_Stat225: 8.33029836e-23 + syst_JES_EtaIntercalibration_Stat226: 6.50202836e-08 + syst_JES_EtaIntercalibration_Stat227: 1.06712241e-05 + syst_JES_EtaIntercalibration_Stat228: 1.17612097e-05 + syst_JES_EtaIntercalibration_Stat229: 9.08893661e-09 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 2.473368553103539e-07 - syst_JES_EtaIntercalibration_Stat231: 1.9880013499743904e-05 - syst_JES_EtaIntercalibration_Stat232: 4.49395678995693e-06 - syst_JES_EtaIntercalibration_Stat233: 5.568542577592481e-07 - syst_JES_EtaIntercalibration_Stat234: 3.684072067698986e-14 + syst_JES_EtaIntercalibration_Stat230: 2.47336855e-07 + syst_JES_EtaIntercalibration_Stat231: 1.98800135e-05 + syst_JES_EtaIntercalibration_Stat232: 4.49395679e-06 + syst_JES_EtaIntercalibration_Stat233: 5.56854258e-07 + syst_JES_EtaIntercalibration_Stat234: 3.68407207e-14 syst_JES_EtaIntercalibration_Stat235: 0.0 syst_JES_EtaIntercalibration_Stat236: 0.0 - syst_JES_EtaIntercalibration_Stat237: 4.0908277890911027e-22 - syst_JES_EtaIntercalibration_Stat238: 6.255575947009196e-12 - syst_JES_EtaIntercalibration_Stat239: 7.028913482893355e-15 + syst_JES_EtaIntercalibration_Stat237: 4.09082779e-22 + syst_JES_EtaIntercalibration_Stat238: 6.25557595e-12 + syst_JES_EtaIntercalibration_Stat239: 7.02891348e-15 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 - syst_JES_EtaIntercalibration_Stat241: 7.319646712786075e-22 - syst_JES_EtaIntercalibration_Stat242: 1.7576492561088514e-14 - syst_JES_EtaIntercalibration_Stat243: 5.310467776750094e-12 - syst_JES_EtaIntercalibration_Stat244: 1.291243877042598e-34 - syst_JES_EtaIntercalibration_Stat245: 2.114834036041599e-28 + syst_JES_EtaIntercalibration_Stat241: 7.31964671e-22 + syst_JES_EtaIntercalibration_Stat242: 1.75764926e-14 + syst_JES_EtaIntercalibration_Stat243: 5.31046778e-12 + syst_JES_EtaIntercalibration_Stat244: 1.29124388e-34 + syst_JES_EtaIntercalibration_Stat245: 2.11483404e-28 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 syst_JES_EtaIntercalibration_Stat27: 0.0 - syst_JES_EtaIntercalibration_Stat28: 3.270977950093825e-10 - syst_JES_EtaIntercalibration_Stat29: 8.61900047496808e-07 + syst_JES_EtaIntercalibration_Stat28: 3.27097795e-10 + syst_JES_EtaIntercalibration_Stat29: 8.61900047e-07 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 1.2789605574449902e-05 - syst_JES_EtaIntercalibration_Stat31: 1.1186835868555506e-05 - syst_JES_EtaIntercalibration_Stat32: 4.5613042816720745e-09 - syst_JES_EtaIntercalibration_Stat33: 3.638838104395413e-08 - syst_JES_EtaIntercalibration_Stat34: 0.00024096425046051957 - syst_JES_EtaIntercalibration_Stat35: 0.0001298344867157798 - syst_JES_EtaIntercalibration_Stat36: 5.171336414977757e-06 - syst_JES_EtaIntercalibration_Stat37: 2.387632038233697e-10 + syst_JES_EtaIntercalibration_Stat30: 1.27896056e-05 + syst_JES_EtaIntercalibration_Stat31: 1.11868359e-05 + syst_JES_EtaIntercalibration_Stat32: 4.56130428e-09 + syst_JES_EtaIntercalibration_Stat33: 3.63883810e-08 + syst_JES_EtaIntercalibration_Stat34: 2.40964250e-04 + syst_JES_EtaIntercalibration_Stat35: 1.29834487e-04 + syst_JES_EtaIntercalibration_Stat36: 5.17133641e-06 + syst_JES_EtaIntercalibration_Stat37: 2.38763204e-10 syst_JES_EtaIntercalibration_Stat38: 0.0 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 @@ -15596,20 +15596,20 @@ bins: syst_JES_EtaIntercalibration_Stat48: 0.0 syst_JES_EtaIntercalibration_Stat49: 0.0 syst_JES_EtaIntercalibration_Stat5: 0.0 - syst_JES_EtaIntercalibration_Stat50: 3.3135863999600195e-10 - syst_JES_EtaIntercalibration_Stat51: 2.2043028898043933e-06 - syst_JES_EtaIntercalibration_Stat52: 0.00018182207477366436 - syst_JES_EtaIntercalibration_Stat53: 4.614793819879714e-05 - syst_JES_EtaIntercalibration_Stat54: 8.045590593610888e-07 - syst_JES_EtaIntercalibration_Stat55: 7.45696903624388e-05 - syst_JES_EtaIntercalibration_Stat56: 0.00015035135874011914 - syst_JES_EtaIntercalibration_Stat57: 0.00024578461546646894 - syst_JES_EtaIntercalibration_Stat58: 7.162775637279168e-06 - syst_JES_EtaIntercalibration_Stat59: 1.3584360005167708e-09 + syst_JES_EtaIntercalibration_Stat50: 3.31358640e-10 + syst_JES_EtaIntercalibration_Stat51: 2.20430289e-06 + syst_JES_EtaIntercalibration_Stat52: 1.81822075e-04 + syst_JES_EtaIntercalibration_Stat53: 4.61479382e-05 + syst_JES_EtaIntercalibration_Stat54: 8.04559059e-07 + syst_JES_EtaIntercalibration_Stat55: 7.45696904e-05 + syst_JES_EtaIntercalibration_Stat56: 1.50351359e-04 + syst_JES_EtaIntercalibration_Stat57: 2.45784615e-04 + syst_JES_EtaIntercalibration_Stat58: 7.16277564e-06 + syst_JES_EtaIntercalibration_Stat59: 1.35843600e-09 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 1.5787643110990315e-08 - syst_JES_EtaIntercalibration_Stat62: 1.5787643110990315e-08 + syst_JES_EtaIntercalibration_Stat61: 1.57876431e-08 + syst_JES_EtaIntercalibration_Stat62: 1.57876431e-08 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 @@ -15617,223 +15617,223 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 3.270977950093825e-10 + syst_JES_EtaIntercalibration_Stat7: 3.27097795e-10 syst_JES_EtaIntercalibration_Stat70: 0.0 syst_JES_EtaIntercalibration_Stat71: 0.0 - syst_JES_EtaIntercalibration_Stat72: 8.948640497304605e-08 - syst_JES_EtaIntercalibration_Stat73: 4.354570328976212e-05 - syst_JES_EtaIntercalibration_Stat74: 0.0014443080592449798 - syst_JES_EtaIntercalibration_Stat75: 0.0006376456931556897 - syst_JES_EtaIntercalibration_Stat76: 8.226399151512162e-06 - syst_JES_EtaIntercalibration_Stat77: 5.329226092970724e-05 - syst_JES_EtaIntercalibration_Stat78: 0.00032391698670338365 - syst_JES_EtaIntercalibration_Stat79: 0.0005370127280381723 - syst_JES_EtaIntercalibration_Stat8: 4.288274944543551e-07 - syst_JES_EtaIntercalibration_Stat80: 4.457678148408654e-05 - syst_JES_EtaIntercalibration_Stat81: 4.632369884842962e-09 - syst_JES_EtaIntercalibration_Stat82: 1.5787643110990315e-08 - syst_JES_EtaIntercalibration_Stat83: 1.5787643110990315e-08 - syst_JES_EtaIntercalibration_Stat84: 1.5787643110990315e-08 + syst_JES_EtaIntercalibration_Stat72: 8.94864050e-08 + syst_JES_EtaIntercalibration_Stat73: 4.35457033e-05 + syst_JES_EtaIntercalibration_Stat74: 1.44430806e-03 + syst_JES_EtaIntercalibration_Stat75: 6.37645693e-04 + syst_JES_EtaIntercalibration_Stat76: 8.22639915e-06 + syst_JES_EtaIntercalibration_Stat77: 5.32922609e-05 + syst_JES_EtaIntercalibration_Stat78: 3.23916987e-04 + syst_JES_EtaIntercalibration_Stat79: 5.37012728e-04 + syst_JES_EtaIntercalibration_Stat8: 4.28827494e-07 + syst_JES_EtaIntercalibration_Stat80: 4.45767815e-05 + syst_JES_EtaIntercalibration_Stat81: 4.63236988e-09 + syst_JES_EtaIntercalibration_Stat82: 1.57876431e-08 + syst_JES_EtaIntercalibration_Stat83: 1.57876431e-08 + syst_JES_EtaIntercalibration_Stat84: 1.57876431e-08 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 syst_JES_EtaIntercalibration_Stat89: 0.0 - syst_JES_EtaIntercalibration_Stat9: 1.4547488683618214e-07 + syst_JES_EtaIntercalibration_Stat9: 1.45474887e-07 syst_JES_EtaIntercalibration_Stat90: 0.0 syst_JES_EtaIntercalibration_Stat91: 0.0 syst_JES_EtaIntercalibration_Stat92: 0.0 - syst_JES_EtaIntercalibration_Stat93: 8.279202860179233e-08 - syst_JES_EtaIntercalibration_Stat94: 0.00022175041076624862 - syst_JES_EtaIntercalibration_Stat95: 0.002987647346709447 - syst_JES_EtaIntercalibration_Stat96: 6.096261395314344e-05 - syst_JES_EtaIntercalibration_Stat97: 9.981284047155456e-05 - syst_JES_EtaIntercalibration_Stat98: 7.538404473096413e-05 - syst_JES_EtaIntercalibration_Stat99: 0.000987153061839956 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.015774728999257005 - syst_JES_Flavour_Comp: 0.16669705306333404 - syst_JES_Gjet_Generator: 1.653038717029943 - syst_JES_Gjet_OOC: 1.0782383444767676 - syst_JES_Gjet_Purity: 0.3288238434177181 - syst_JES_Gjet_Stat1: 0.0005498625464604767 - syst_JES_Gjet_Stat10: 0.1206812192306657 - syst_JES_Gjet_Stat11: 0.17491371444229298 - syst_JES_Gjet_Stat12: 0.09881462075523036 - syst_JES_Gjet_Stat13: 0.023987315397934802 - syst_JES_Gjet_Stat14: 0.018237902154579072 - syst_JES_Gjet_Stat15: 0.0021960061475323786 - syst_JES_Gjet_Stat2: 4.353911689504049e-41 - syst_JES_Gjet_Stat3: 0.002132154544117267 - syst_JES_Gjet_Stat4: 0.004396317180322639 - syst_JES_Gjet_Stat5: 0.005180694258494704 - syst_JES_Gjet_Stat6: 0.010204926102133223 - syst_JES_Gjet_Stat7: 0.017506752982777814 - syst_JES_Gjet_Stat8: 0.023247791292937914 - syst_JES_Gjet_Stat9: 0.0592663587121733 - syst_JES_Gjet_Veto: 0.4475161784784993 - syst_JES_Gjet_dPhi: 0.08367612084698955 - syst_JES_LArESZee: 1.9615062452105525 - syst_JES_LArEsmear: 0.15620834644794113 - syst_JES_LAr_JVT: 0.21802157576717032 - syst_JES_MJB_Alpha: 0.0036209627614765664 - syst_JES_MJB_Asym: 0.007822933017737017 - syst_JES_MJB_Beta: 0.0001159219102456477 - syst_JES_MJB_Stat1: 0.007342433375251014 - syst_JES_MJB_Stat10: 9.224958389326208e-08 - syst_JES_MJB_Stat11: 2.8111184606852086e-09 - syst_JES_MJB_Stat12: 1.6367880131533857e-09 - syst_JES_MJB_Stat13: 1.1252268071371212e-09 - syst_JES_MJB_Stat14: 7.711559813033937e-27 - syst_JES_MJB_Stat15: 1.1864157987400539e-18 - syst_JES_MJB_Stat16: 7.75179197823148e-29 - syst_JES_MJB_Stat2: 0.003336484330474219 - syst_JES_MJB_Stat3: 0.002788561098487892 - syst_JES_MJB_Stat4: 0.0035093376511814876 - syst_JES_MJB_Stat5: 5.219535076583193e-05 - syst_JES_MJB_Stat6: 0.0007121326895319439 - syst_JES_MJB_Stat7: 2.394560241463973e-05 - syst_JES_MJB_Stat8: 2.919367401317691e-21 - syst_JES_MJB_Stat9: 1.182290323905258e-40 - syst_JES_MJB_Threshold: 0.010219821818407597 - syst_JES_Pileup_MuOffset: 0.034000348159982124 - syst_JES_Pileup_NPVOffset: 0.09236568193869409 - syst_JES_Pileup_Pt_term: 0.25244740046195757 - syst_JES_PunchThrough_MC15: 3.167054670699652e-09 + syst_JES_EtaIntercalibration_Stat93: 8.27920286e-08 + syst_JES_EtaIntercalibration_Stat94: 2.21750411e-04 + syst_JES_EtaIntercalibration_Stat95: 2.98764735e-03 + syst_JES_EtaIntercalibration_Stat96: 6.09626140e-05 + syst_JES_EtaIntercalibration_Stat97: 9.98128405e-05 + syst_JES_EtaIntercalibration_Stat98: 7.53840447e-05 + syst_JES_EtaIntercalibration_Stat99: 9.87153062e-04 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.57747290e-02 + syst_JES_Flavour_Comp: 1.66697053e-01 + syst_JES_Gjet_Generator: 1.65303872e+00 + syst_JES_Gjet_OOC: 1.07823834e+00 + syst_JES_Gjet_Purity: 3.28823843e-01 + syst_JES_Gjet_Stat1: 5.49862546e-04 + syst_JES_Gjet_Stat10: 1.20681219e-01 + syst_JES_Gjet_Stat11: 1.74913714e-01 + syst_JES_Gjet_Stat12: 9.88146208e-02 + syst_JES_Gjet_Stat13: 2.39873154e-02 + syst_JES_Gjet_Stat14: 1.82379022e-02 + syst_JES_Gjet_Stat15: 2.19600615e-03 + syst_JES_Gjet_Stat2: 4.35391169e-41 + syst_JES_Gjet_Stat3: 2.13215454e-03 + syst_JES_Gjet_Stat4: 4.39631718e-03 + syst_JES_Gjet_Stat5: 5.18069426e-03 + syst_JES_Gjet_Stat6: 1.02049261e-02 + syst_JES_Gjet_Stat7: 1.75067530e-02 + syst_JES_Gjet_Stat8: 2.32477913e-02 + syst_JES_Gjet_Stat9: 5.92663587e-02 + syst_JES_Gjet_Veto: 4.47516178e-01 + syst_JES_Gjet_dPhi: 8.36761208e-02 + syst_JES_LArESZee: 1.96150625e+00 + syst_JES_LArEsmear: 1.56208346e-01 + syst_JES_LAr_JVT: 2.18021576e-01 + syst_JES_MJB_Alpha: 3.62096276e-03 + syst_JES_MJB_Asym: 7.82293302e-03 + syst_JES_MJB_Beta: 1.15921910e-04 + syst_JES_MJB_Stat1: 7.34243338e-03 + syst_JES_MJB_Stat10: 9.22495839e-08 + syst_JES_MJB_Stat11: 2.81111846e-09 + syst_JES_MJB_Stat12: 1.63678801e-09 + syst_JES_MJB_Stat13: 1.12522681e-09 + syst_JES_MJB_Stat14: 7.71155981e-27 + syst_JES_MJB_Stat15: 1.18641580e-18 + syst_JES_MJB_Stat16: 7.75179198e-29 + syst_JES_MJB_Stat2: 3.33648433e-03 + syst_JES_MJB_Stat3: 2.78856110e-03 + syst_JES_MJB_Stat4: 3.50933765e-03 + syst_JES_MJB_Stat5: 5.21953508e-05 + syst_JES_MJB_Stat6: 7.12132690e-04 + syst_JES_MJB_Stat7: 2.39456024e-05 + syst_JES_MJB_Stat8: 2.91936740e-21 + syst_JES_MJB_Stat9: 1.18229032e-40 + syst_JES_MJB_Threshold: 1.02198218e-02 + syst_JES_Pileup_MuOffset: 3.40003482e-02 + syst_JES_Pileup_NPVOffset: 9.23656819e-02 + syst_JES_Pileup_Pt_term: 2.52447400e-01 + syst_JES_PunchThrough_MC15: 3.16705467e-09 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 1.5691433968888884 - syst_JES_Zjet_MuScale: 0.1020336679728804 - syst_JES_Zjet_MuSmearID: 0.01397387629650413 - syst_JES_Zjet_MuSmearMS: 0.19869994338197483 - syst_JES_Zjet_OOC: 0.519559053428963 - syst_JES_Zjet_Stat1: 0.00669832342829159 - syst_JES_Zjet_Stat10: 0.107203957949322 - syst_JES_Zjet_Stat11: 0.19791164695388697 - syst_JES_Zjet_Stat12: 0.3947242328512401 - syst_JES_Zjet_Stat13: 0.02027578358535127 - syst_JES_Zjet_Stat2: 0.0013534154600491307 - syst_JES_Zjet_Stat3: 0.003789691366823388 - syst_JES_Zjet_Stat4: 0.004093570264145956 - syst_JES_Zjet_Stat5: 0.004985397877802734 - syst_JES_Zjet_Stat6: 0.006398636573520956 - syst_JES_Zjet_Stat7: 0.00828531355773576 - syst_JES_Zjet_Stat8: 0.009814452659216408 - syst_JES_Zjet_Stat9: 0.036101465344221144 - syst_JES_Zjet_Veto: 0.11057263076819687 - syst_JES_Zjet_dPhi: 0.09405865510414234 + syst_JES_Zjet_MC: 1.56914340e+00 + syst_JES_Zjet_MuScale: 1.02033668e-01 + syst_JES_Zjet_MuSmearID: 1.39738763e-02 + syst_JES_Zjet_MuSmearMS: 1.98699943e-01 + syst_JES_Zjet_OOC: 5.19559053e-01 + syst_JES_Zjet_Stat1: 6.69832343e-03 + syst_JES_Zjet_Stat10: 1.07203958e-01 + syst_JES_Zjet_Stat11: 1.97911647e-01 + syst_JES_Zjet_Stat12: 3.94724233e-01 + syst_JES_Zjet_Stat13: 2.02757836e-02 + syst_JES_Zjet_Stat2: 1.35341546e-03 + syst_JES_Zjet_Stat3: 3.78969137e-03 + syst_JES_Zjet_Stat4: 4.09357026e-03 + syst_JES_Zjet_Stat5: 4.98539788e-03 + syst_JES_Zjet_Stat6: 6.39863657e-03 + syst_JES_Zjet_Stat7: 8.28531356e-03 + syst_JES_Zjet_Stat8: 9.81445266e-03 + syst_JES_Zjet_Stat9: 3.61014653e-02 + syst_JES_Zjet_Veto: 1.10572631e-01 + syst_JES_Zjet_dPhi: 9.40586551e-02 syst_PRW: 0.0689 syst_Unfolding_bias: 0.07161 - syst_cleaning: 0.4615915402171058 + syst_cleaning: 4.61591540e-01 syst_lumi: 1.873 - syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.02923345814302509 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.47353288164603735 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 0.42231363937244554 + syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 2.92334581e-02 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 4.73532882e-01 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 4.22313639e-01 syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 1.6355551809706697 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.036280391398109256 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.2564267341756705 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 1.63555518e+00 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 3.62803914e-02 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 2.56426734e-01 - stat: 0.33199 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.28452971725287324 - syst_JER_NP1: 0.028142217396644496 - syst_JER_NP2: 0.025927738042490323 - syst_JER_NP3: 0.0844475227582195 - syst_JER_NP4: 0.0328680342430149 - syst_JER_NP5: 0.014685083418217277 - syst_JER_NP6: 4.022688000578717e-12 - syst_JER_NP7: 0.03935152697164368 - syst_JER_NP8: 0.06467670678072593 - syst_JES_EtaIntercalibration_Modelling: 0.36996598154424953 - syst_JES_EtaIntercalibration_NonClosure: 4.8280916260982456e-05 + syst_JER_NP0: 2.84529717e-01 + syst_JER_NP1: 2.81422174e-02 + syst_JER_NP2: 2.59277380e-02 + syst_JER_NP3: 8.44475228e-02 + syst_JER_NP4: 3.28680342e-02 + syst_JER_NP5: 1.46850834e-02 + syst_JER_NP6: 4.02268800e-12 + syst_JER_NP7: 3.93515270e-02 + syst_JER_NP8: 6.46767068e-02 + syst_JES_EtaIntercalibration_Modelling: 3.69965982e-01 + syst_JES_EtaIntercalibration_NonClosure: 4.82809163e-05 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 0.00015288847920952057 - syst_JES_EtaIntercalibration_Stat101: 8.086781407012311e-06 - syst_JES_EtaIntercalibration_Stat102: 5.291803556444627e-09 - syst_JES_EtaIntercalibration_Stat103: 1.382176544439964e-09 - syst_JES_EtaIntercalibration_Stat104: 1.382176544439964e-09 - syst_JES_EtaIntercalibration_Stat105: 1.382176544439964e-09 + syst_JES_EtaIntercalibration_Stat100: 1.52888479e-04 + syst_JES_EtaIntercalibration_Stat101: 8.08678141e-06 + syst_JES_EtaIntercalibration_Stat102: 5.29180356e-09 + syst_JES_EtaIntercalibration_Stat103: 1.38217654e-09 + syst_JES_EtaIntercalibration_Stat104: 1.38217654e-09 + syst_JES_EtaIntercalibration_Stat105: 1.38217654e-09 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 8.014199086621196e-05 - syst_JES_EtaIntercalibration_Stat111: 8.014199086621196e-05 + syst_JES_EtaIntercalibration_Stat110: 8.01419909e-05 + syst_JES_EtaIntercalibration_Stat111: 8.01419909e-05 syst_JES_EtaIntercalibration_Stat112: 0.0 - syst_JES_EtaIntercalibration_Stat113: 6.342549772273923e-07 - syst_JES_EtaIntercalibration_Stat114: 0.0005578478885861271 - syst_JES_EtaIntercalibration_Stat115: 0.006085695687429662 - syst_JES_EtaIntercalibration_Stat116: 0.004812746043580525 - syst_JES_EtaIntercalibration_Stat117: 0.0007415709083256975 - syst_JES_EtaIntercalibration_Stat118: 0.00020253491223737208 - syst_JES_EtaIntercalibration_Stat119: 0.0031101813451951646 - syst_JES_EtaIntercalibration_Stat12: 2.3257141385627663e-05 - syst_JES_EtaIntercalibration_Stat120: 0.003965908494594902 - syst_JES_EtaIntercalibration_Stat121: 0.00016378207319484023 - syst_JES_EtaIntercalibration_Stat122: 7.052565355746447e-07 - syst_JES_EtaIntercalibration_Stat123: 1.382176544439964e-09 - syst_JES_EtaIntercalibration_Stat124: 1.382176544439964e-09 - syst_JES_EtaIntercalibration_Stat125: 1.382176544439964e-09 + syst_JES_EtaIntercalibration_Stat113: 6.34254977e-07 + syst_JES_EtaIntercalibration_Stat114: 5.57847889e-04 + syst_JES_EtaIntercalibration_Stat115: 6.08569569e-03 + syst_JES_EtaIntercalibration_Stat116: 4.81274604e-03 + syst_JES_EtaIntercalibration_Stat117: 7.41570908e-04 + syst_JES_EtaIntercalibration_Stat118: 2.02534912e-04 + syst_JES_EtaIntercalibration_Stat119: 3.11018135e-03 + syst_JES_EtaIntercalibration_Stat12: 2.32571414e-05 + syst_JES_EtaIntercalibration_Stat120: 3.96590849e-03 + syst_JES_EtaIntercalibration_Stat121: 1.63782073e-04 + syst_JES_EtaIntercalibration_Stat122: 7.05256536e-07 + syst_JES_EtaIntercalibration_Stat123: 1.38217654e-09 + syst_JES_EtaIntercalibration_Stat124: 1.38217654e-09 + syst_JES_EtaIntercalibration_Stat125: 1.38217654e-09 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 3.0908446661066616e-05 - syst_JES_EtaIntercalibration_Stat129: 7.567492632966352e-05 - syst_JES_EtaIntercalibration_Stat13: 3.7516055458254144e-05 - syst_JES_EtaIntercalibration_Stat130: 8.014199086621196e-05 - syst_JES_EtaIntercalibration_Stat131: 2.0464180291426285e-10 - syst_JES_EtaIntercalibration_Stat132: 0.00019697211553098068 - syst_JES_EtaIntercalibration_Stat133: 0.0030000106666477036 - syst_JES_EtaIntercalibration_Stat134: 0.0405567191812898 - syst_JES_EtaIntercalibration_Stat135: 0.023376271623165232 - syst_JES_EtaIntercalibration_Stat136: 0.00308868106964769 - syst_JES_EtaIntercalibration_Stat137: 0.0015229767792057764 - syst_JES_EtaIntercalibration_Stat138: 0.0244697583764123 - syst_JES_EtaIntercalibration_Stat139: 0.02785714405677653 - syst_JES_EtaIntercalibration_Stat14: 3.5567663333426893e-10 - syst_JES_EtaIntercalibration_Stat140: 0.0029035441704923317 - syst_JES_EtaIntercalibration_Stat141: 8.241089448809487e-05 + syst_JES_EtaIntercalibration_Stat128: 3.09084467e-05 + syst_JES_EtaIntercalibration_Stat129: 7.56749263e-05 + syst_JES_EtaIntercalibration_Stat13: 3.75160555e-05 + syst_JES_EtaIntercalibration_Stat130: 8.01419909e-05 + syst_JES_EtaIntercalibration_Stat131: 2.04641803e-10 + syst_JES_EtaIntercalibration_Stat132: 1.96972116e-04 + syst_JES_EtaIntercalibration_Stat133: 3.00001067e-03 + syst_JES_EtaIntercalibration_Stat134: 4.05567192e-02 + syst_JES_EtaIntercalibration_Stat135: 2.33762716e-02 + syst_JES_EtaIntercalibration_Stat136: 3.08868107e-03 + syst_JES_EtaIntercalibration_Stat137: 1.52297678e-03 + syst_JES_EtaIntercalibration_Stat138: 2.44697584e-02 + syst_JES_EtaIntercalibration_Stat139: 2.78571441e-02 + syst_JES_EtaIntercalibration_Stat14: 3.55676633e-10 + syst_JES_EtaIntercalibration_Stat140: 2.90354417e-03 + syst_JES_EtaIntercalibration_Stat141: 8.24108945e-05 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 1.382176544439964e-09 - syst_JES_EtaIntercalibration_Stat144: 1.382176544439964e-09 + syst_JES_EtaIntercalibration_Stat143: 1.38217654e-09 + syst_JES_EtaIntercalibration_Stat144: 1.38217654e-09 syst_JES_EtaIntercalibration_Stat145: 0.0 - syst_JES_EtaIntercalibration_Stat146: 3.0908446661066616e-05 - syst_JES_EtaIntercalibration_Stat147: 7.567492632966352e-05 + syst_JES_EtaIntercalibration_Stat146: 3.09084467e-05 + syst_JES_EtaIntercalibration_Stat147: 7.56749263e-05 syst_JES_EtaIntercalibration_Stat148: 0.0 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 4.936687736478782e-06 - syst_JES_EtaIntercalibration_Stat151: 0.003259735380364486 - syst_JES_EtaIntercalibration_Stat152: 0.04459178259500286 - syst_JES_EtaIntercalibration_Stat153: 0.03141010148025632 - syst_JES_EtaIntercalibration_Stat154: 0.003252872955942178 - syst_JES_EtaIntercalibration_Stat155: 0.0012935734488230654 - syst_JES_EtaIntercalibration_Stat156: 0.02815722619062467 - syst_JES_EtaIntercalibration_Stat157: 0.03439575954968869 - syst_JES_EtaIntercalibration_Stat158: 0.002720521176171948 - syst_JES_EtaIntercalibration_Stat159: 6.976015200671511e-05 + syst_JES_EtaIntercalibration_Stat150: 4.93668774e-06 + syst_JES_EtaIntercalibration_Stat151: 3.25973538e-03 + syst_JES_EtaIntercalibration_Stat152: 4.45917826e-02 + syst_JES_EtaIntercalibration_Stat153: 3.14101015e-02 + syst_JES_EtaIntercalibration_Stat154: 3.25287296e-03 + syst_JES_EtaIntercalibration_Stat155: 1.29357345e-03 + syst_JES_EtaIntercalibration_Stat156: 2.81572262e-02 + syst_JES_EtaIntercalibration_Stat157: 3.43957595e-02 + syst_JES_EtaIntercalibration_Stat158: 2.72052118e-03 + syst_JES_EtaIntercalibration_Stat159: 6.97601520e-05 syst_JES_EtaIntercalibration_Stat16: 0.0 syst_JES_EtaIntercalibration_Stat160: 0.0 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 - syst_JES_EtaIntercalibration_Stat164: 3.0908446661066616e-05 + syst_JES_EtaIntercalibration_Stat164: 3.09084467e-05 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 - syst_JES_EtaIntercalibration_Stat168: 0.00011422009050512962 - syst_JES_EtaIntercalibration_Stat169: 0.004956820150055881 + syst_JES_EtaIntercalibration_Stat168: 1.14220091e-04 + syst_JES_EtaIntercalibration_Stat169: 4.95682015e-03 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 0.05947010761718865 - syst_JES_EtaIntercalibration_Stat171: 0.052519759138823174 - syst_JES_EtaIntercalibration_Stat172: 0.0037430416441712215 - syst_JES_EtaIntercalibration_Stat173: 0.0021728577380951564 - syst_JES_EtaIntercalibration_Stat174: 0.04986798672495211 - syst_JES_EtaIntercalibration_Stat175: 0.050639556425782405 - syst_JES_EtaIntercalibration_Stat176: 0.005261852976851405 - syst_JES_EtaIntercalibration_Stat177: 0.00017405606769084494 + syst_JES_EtaIntercalibration_Stat170: 5.94701076e-02 + syst_JES_EtaIntercalibration_Stat171: 5.25197591e-02 + syst_JES_EtaIntercalibration_Stat172: 3.74304164e-03 + syst_JES_EtaIntercalibration_Stat173: 2.17285774e-03 + syst_JES_EtaIntercalibration_Stat174: 4.98679867e-02 + syst_JES_EtaIntercalibration_Stat175: 5.06395564e-02 + syst_JES_EtaIntercalibration_Stat176: 5.26185298e-03 + syst_JES_EtaIntercalibration_Stat177: 1.74056068e-04 syst_JES_EtaIntercalibration_Stat178: 0.0 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 @@ -15842,17 +15842,17 @@ bins: syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 syst_JES_EtaIntercalibration_Stat184: 0.0 - syst_JES_EtaIntercalibration_Stat185: 0.00018965956342879207 - syst_JES_EtaIntercalibration_Stat186: 0.006577593556917302 - syst_JES_EtaIntercalibration_Stat187: 0.0715267605515586 - syst_JES_EtaIntercalibration_Stat188: 0.05811720915529237 - syst_JES_EtaIntercalibration_Stat189: 0.003938147787983585 + syst_JES_EtaIntercalibration_Stat185: 1.89659563e-04 + syst_JES_EtaIntercalibration_Stat186: 6.57759356e-03 + syst_JES_EtaIntercalibration_Stat187: 7.15267606e-02 + syst_JES_EtaIntercalibration_Stat188: 5.81172092e-02 + syst_JES_EtaIntercalibration_Stat189: 3.93814779e-03 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 0.004417219374221752 - syst_JES_EtaIntercalibration_Stat191: 0.04921646066104307 - syst_JES_EtaIntercalibration_Stat192: 0.06982845909799243 - syst_JES_EtaIntercalibration_Stat193: 0.007633108852230525 - syst_JES_EtaIntercalibration_Stat194: 8.854243728292101e-05 + syst_JES_EtaIntercalibration_Stat190: 4.41721937e-03 + syst_JES_EtaIntercalibration_Stat191: 4.92164607e-02 + syst_JES_EtaIntercalibration_Stat192: 6.98284591e-02 + syst_JES_EtaIntercalibration_Stat193: 7.63310885e-03 + syst_JES_EtaIntercalibration_Stat194: 8.85424373e-05 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 syst_JES_EtaIntercalibration_Stat197: 0.0 @@ -15860,70 +15860,70 @@ bins: syst_JES_EtaIntercalibration_Stat199: 0.0 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 2.5045454677445964e-07 - syst_JES_EtaIntercalibration_Stat201: 0.0013982814416275433 - syst_JES_EtaIntercalibration_Stat202: 0.004096136563885536 - syst_JES_EtaIntercalibration_Stat203: 0.003504541196790245 - syst_JES_EtaIntercalibration_Stat204: 0.0009304991281564966 - syst_JES_EtaIntercalibration_Stat205: 0.0005657743962923738 - syst_JES_EtaIntercalibration_Stat206: 0.0028699397258479145 - syst_JES_EtaIntercalibration_Stat207: 0.0009304379667661891 - syst_JES_EtaIntercalibration_Stat208: 0.0002515653606918091 - syst_JES_EtaIntercalibration_Stat209: 5.5371794941106975e-05 + syst_JES_EtaIntercalibration_Stat200: 2.50454547e-07 + syst_JES_EtaIntercalibration_Stat201: 1.39828144e-03 + syst_JES_EtaIntercalibration_Stat202: 4.09613656e-03 + syst_JES_EtaIntercalibration_Stat203: 3.50454120e-03 + syst_JES_EtaIntercalibration_Stat204: 9.30499128e-04 + syst_JES_EtaIntercalibration_Stat205: 5.65774396e-04 + syst_JES_EtaIntercalibration_Stat206: 2.86993973e-03 + syst_JES_EtaIntercalibration_Stat207: 9.30437967e-04 + syst_JES_EtaIntercalibration_Stat208: 2.51565361e-04 + syst_JES_EtaIntercalibration_Stat209: 5.53717949e-05 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 syst_JES_EtaIntercalibration_Stat211: 0.0 syst_JES_EtaIntercalibration_Stat212: 0.0 - syst_JES_EtaIntercalibration_Stat213: 2.493287137495399e-07 - syst_JES_EtaIntercalibration_Stat214: 0.0002522958778894336 - syst_JES_EtaIntercalibration_Stat215: 0.002762408188519575 - syst_JES_EtaIntercalibration_Stat216: 0.0024847009880466504 - syst_JES_EtaIntercalibration_Stat217: 0.00013966433000233095 - syst_JES_EtaIntercalibration_Stat218: 0.00015051402152291328 - syst_JES_EtaIntercalibration_Stat219: 0.001976002214067586 + syst_JES_EtaIntercalibration_Stat213: 2.49328714e-07 + syst_JES_EtaIntercalibration_Stat214: 2.52295878e-04 + syst_JES_EtaIntercalibration_Stat215: 2.76240819e-03 + syst_JES_EtaIntercalibration_Stat216: 2.48470099e-03 + syst_JES_EtaIntercalibration_Stat217: 1.39664330e-04 + syst_JES_EtaIntercalibration_Stat218: 1.50514022e-04 + syst_JES_EtaIntercalibration_Stat219: 1.97600221e-03 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 0.00259591737156636 - syst_JES_EtaIntercalibration_Stat221: 0.0005404094836325506 - syst_JES_EtaIntercalibration_Stat222: 2.5168154237807646e-05 + syst_JES_EtaIntercalibration_Stat220: 2.59591737e-03 + syst_JES_EtaIntercalibration_Stat221: 5.40409484e-04 + syst_JES_EtaIntercalibration_Stat222: 2.51681542e-05 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 - syst_JES_EtaIntercalibration_Stat225: 1.2022164655335578e-17 - syst_JES_EtaIntercalibration_Stat226: 6.909828850991897e-07 - syst_JES_EtaIntercalibration_Stat227: 2.2714293269877453e-06 - syst_JES_EtaIntercalibration_Stat228: 1.0395973006409742e-05 - syst_JES_EtaIntercalibration_Stat229: 4.3292609935184085e-07 + syst_JES_EtaIntercalibration_Stat225: 1.20221647e-17 + syst_JES_EtaIntercalibration_Stat226: 6.90982885e-07 + syst_JES_EtaIntercalibration_Stat227: 2.27142933e-06 + syst_JES_EtaIntercalibration_Stat228: 1.03959730e-05 + syst_JES_EtaIntercalibration_Stat229: 4.32926099e-07 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 3.270977824549028e-06 - syst_JES_EtaIntercalibration_Stat231: 6.354533499793671e-05 - syst_JES_EtaIntercalibration_Stat232: 5.3854195454021955e-05 - syst_JES_EtaIntercalibration_Stat233: 7.329931463589757e-06 - syst_JES_EtaIntercalibration_Stat234: 5.154583203284524e-11 + syst_JES_EtaIntercalibration_Stat230: 3.27097782e-06 + syst_JES_EtaIntercalibration_Stat231: 6.35453350e-05 + syst_JES_EtaIntercalibration_Stat232: 5.38541955e-05 + syst_JES_EtaIntercalibration_Stat233: 7.32993146e-06 + syst_JES_EtaIntercalibration_Stat234: 5.15458320e-11 syst_JES_EtaIntercalibration_Stat235: 0.0 syst_JES_EtaIntercalibration_Stat236: 0.0 - syst_JES_EtaIntercalibration_Stat237: 5.904114582221452e-17 - syst_JES_EtaIntercalibration_Stat238: 1.4350234376831621e-09 - syst_JES_EtaIntercalibration_Stat239: 9.718436949942104e-12 + syst_JES_EtaIntercalibration_Stat237: 5.90411458e-17 + syst_JES_EtaIntercalibration_Stat238: 1.43502344e-09 + syst_JES_EtaIntercalibration_Stat239: 9.71843695e-12 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 - syst_JES_EtaIntercalibration_Stat241: 1.0563777875362583e-16 - syst_JES_EtaIntercalibration_Stat242: 2.4431241285493458e-11 - syst_JES_EtaIntercalibration_Stat243: 1.0952624355245043e-09 - syst_JES_EtaIntercalibration_Stat244: 8.73126812095471e-27 - syst_JES_EtaIntercalibration_Stat245: 5.370223528867304e-22 + syst_JES_EtaIntercalibration_Stat241: 1.05637779e-16 + syst_JES_EtaIntercalibration_Stat242: 2.44312413e-11 + syst_JES_EtaIntercalibration_Stat243: 1.09526244e-09 + syst_JES_EtaIntercalibration_Stat244: 8.73126812e-27 + syst_JES_EtaIntercalibration_Stat245: 5.37022353e-22 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 syst_JES_EtaIntercalibration_Stat27: 0.0 - syst_JES_EtaIntercalibration_Stat28: 3.0613998023779904e-11 - syst_JES_EtaIntercalibration_Stat29: 9.29411545589466e-08 + syst_JES_EtaIntercalibration_Stat28: 3.06139980e-11 + syst_JES_EtaIntercalibration_Stat29: 9.29411546e-08 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 2.1286818151146966e-06 - syst_JES_EtaIntercalibration_Stat31: 1.445119631726038e-06 - syst_JES_EtaIntercalibration_Stat32: 4.1363027488325853e-10 - syst_JES_EtaIntercalibration_Stat33: 1.777629935475885e-08 - syst_JES_EtaIntercalibration_Stat34: 0.00010944403638389807 - syst_JES_EtaIntercalibration_Stat35: 0.00013516449773561104 - syst_JES_EtaIntercalibration_Stat36: 6.913399820638178e-07 - syst_JES_EtaIntercalibration_Stat37: 2.234345541763852e-11 + syst_JES_EtaIntercalibration_Stat30: 2.12868182e-06 + syst_JES_EtaIntercalibration_Stat31: 1.44511963e-06 + syst_JES_EtaIntercalibration_Stat32: 4.13630275e-10 + syst_JES_EtaIntercalibration_Stat33: 1.77762994e-08 + syst_JES_EtaIntercalibration_Stat34: 1.09444036e-04 + syst_JES_EtaIntercalibration_Stat35: 1.35164498e-04 + syst_JES_EtaIntercalibration_Stat36: 6.91339982e-07 + syst_JES_EtaIntercalibration_Stat37: 2.23434554e-11 syst_JES_EtaIntercalibration_Stat38: 0.0 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 @@ -15938,20 +15938,20 @@ bins: syst_JES_EtaIntercalibration_Stat48: 0.0 syst_JES_EtaIntercalibration_Stat49: 0.0 syst_JES_EtaIntercalibration_Stat5: 0.0 - syst_JES_EtaIntercalibration_Stat50: 3.1003709455482906e-11 - syst_JES_EtaIntercalibration_Stat51: 2.4617807106848493e-07 - syst_JES_EtaIntercalibration_Stat52: 5.795384607599395e-05 - syst_JES_EtaIntercalibration_Stat53: 9.72953950606091e-06 - syst_JES_EtaIntercalibration_Stat54: 9.032833608563816e-08 - syst_JES_EtaIntercalibration_Stat55: 2.327285034256655e-05 - syst_JES_EtaIntercalibration_Stat56: 9.163934599705248e-05 - syst_JES_EtaIntercalibration_Stat57: 0.0001305695311577322 - syst_JES_EtaIntercalibration_Stat58: 9.907639409566741e-07 - syst_JES_EtaIntercalibration_Stat59: 1.2495461696151926e-10 + syst_JES_EtaIntercalibration_Stat50: 3.10037095e-11 + syst_JES_EtaIntercalibration_Stat51: 2.46178071e-07 + syst_JES_EtaIntercalibration_Stat52: 5.79538461e-05 + syst_JES_EtaIntercalibration_Stat53: 9.72953951e-06 + syst_JES_EtaIntercalibration_Stat54: 9.03283361e-08 + syst_JES_EtaIntercalibration_Stat55: 2.32728503e-05 + syst_JES_EtaIntercalibration_Stat56: 9.16393460e-05 + syst_JES_EtaIntercalibration_Stat57: 1.30569531e-04 + syst_JES_EtaIntercalibration_Stat58: 9.90763941e-07 + syst_JES_EtaIntercalibration_Stat59: 1.24954617e-10 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 1.382176544439964e-09 - syst_JES_EtaIntercalibration_Stat62: 1.382176544439964e-09 + syst_JES_EtaIntercalibration_Stat61: 1.38217654e-09 + syst_JES_EtaIntercalibration_Stat62: 1.38217654e-09 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 @@ -15959,223 +15959,223 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 3.0613998023779904e-11 + syst_JES_EtaIntercalibration_Stat7: 3.06139980e-11 syst_JES_EtaIntercalibration_Stat70: 0.0 syst_JES_EtaIntercalibration_Stat71: 0.0 - syst_JES_EtaIntercalibration_Stat72: 8.858573855311023e-09 - syst_JES_EtaIntercalibration_Stat73: 3.646595058407226e-05 - syst_JES_EtaIntercalibration_Stat74: 0.0003452304737418179 - syst_JES_EtaIntercalibration_Stat75: 0.00029598382979480485 - syst_JES_EtaIntercalibration_Stat76: 2.305268684448735e-06 - syst_JES_EtaIntercalibration_Stat77: 1.862962239955496e-05 - syst_JES_EtaIntercalibration_Stat78: 0.0001261776557081324 - syst_JES_EtaIntercalibration_Stat79: 0.0001169350854993915 - syst_JES_EtaIntercalibration_Stat8: 4.824260850119943e-08 - syst_JES_EtaIntercalibration_Stat80: 7.348721921749388e-06 - syst_JES_EtaIntercalibration_Stat81: 4.227069995871845e-10 - syst_JES_EtaIntercalibration_Stat82: 1.382176544439964e-09 - syst_JES_EtaIntercalibration_Stat83: 1.382176544439964e-09 - syst_JES_EtaIntercalibration_Stat84: 1.382176544439964e-09 + syst_JES_EtaIntercalibration_Stat72: 8.85857386e-09 + syst_JES_EtaIntercalibration_Stat73: 3.64659506e-05 + syst_JES_EtaIntercalibration_Stat74: 3.45230474e-04 + syst_JES_EtaIntercalibration_Stat75: 2.95983830e-04 + syst_JES_EtaIntercalibration_Stat76: 2.30526868e-06 + syst_JES_EtaIntercalibration_Stat77: 1.86296224e-05 + syst_JES_EtaIntercalibration_Stat78: 1.26177656e-04 + syst_JES_EtaIntercalibration_Stat79: 1.16935085e-04 + syst_JES_EtaIntercalibration_Stat8: 4.82426085e-08 + syst_JES_EtaIntercalibration_Stat80: 7.34872192e-06 + syst_JES_EtaIntercalibration_Stat81: 4.22707000e-10 + syst_JES_EtaIntercalibration_Stat82: 1.38217654e-09 + syst_JES_EtaIntercalibration_Stat83: 1.38217654e-09 + syst_JES_EtaIntercalibration_Stat84: 1.38217654e-09 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 syst_JES_EtaIntercalibration_Stat89: 0.0 - syst_JES_EtaIntercalibration_Stat9: 1.423230897465341e-08 + syst_JES_EtaIntercalibration_Stat9: 1.42323090e-08 syst_JES_EtaIntercalibration_Stat90: 0.0 syst_JES_EtaIntercalibration_Stat91: 0.0 syst_JES_EtaIntercalibration_Stat92: 0.0 - syst_JES_EtaIntercalibration_Stat93: 8.216849031106754e-09 - syst_JES_EtaIntercalibration_Stat94: 8.48845433515431e-05 - syst_JES_EtaIntercalibration_Stat95: 0.0008385778616204938 - syst_JES_EtaIntercalibration_Stat96: 0.00026877946289662833 - syst_JES_EtaIntercalibration_Stat97: 3.2963400492060884e-05 - syst_JES_EtaIntercalibration_Stat98: 1.5115822008743025e-05 - syst_JES_EtaIntercalibration_Stat99: 0.00020008975685926553 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.03788356239848623 - syst_JES_Flavour_Comp: 0.164734968965305 - syst_JES_Gjet_Generator: 0.9916567248801372 - syst_JES_Gjet_OOC: 0.6726722140091711 - syst_JES_Gjet_Purity: 0.21595043412783407 - syst_JES_Gjet_Stat1: 0.00032934156661435854 - syst_JES_Gjet_Stat10: 0.06478805812030486 - syst_JES_Gjet_Stat11: 0.107321038361544 - syst_JES_Gjet_Stat12: 0.10079129773943782 - syst_JES_Gjet_Stat13: 0.004554860343632942 - syst_JES_Gjet_Stat14: 0.021861322009430265 - syst_JES_Gjet_Stat15: 0.0027372911335844423 - syst_JES_Gjet_Stat2: 1.2323315331111188e-31 - syst_JES_Gjet_Stat3: 0.001276521444925441 - syst_JES_Gjet_Stat4: 0.002558324647107947 - syst_JES_Gjet_Stat5: 0.002463415261380022 - syst_JES_Gjet_Stat6: 0.005976605976639249 - syst_JES_Gjet_Stat7: 0.009218616097332613 - syst_JES_Gjet_Stat8: 0.011211773934128354 - syst_JES_Gjet_Stat9: 0.027344701040603825 - syst_JES_Gjet_Veto: 0.28988057885964 - syst_JES_Gjet_dPhi: 0.04984911132608083 - syst_JES_LArESZee: 1.2444440043650018 - syst_JES_LArEsmear: 0.09908786139078792 - syst_JES_LAr_JVT: 0.1378020061537567 - syst_JES_MJB_Alpha: 0.00418992070420193 - syst_JES_MJB_Asym: 0.015676092521735126 - syst_JES_MJB_Beta: 0.0004532038968003254 - syst_JES_MJB_Stat1: 0.006994230264096258 - syst_JES_MJB_Stat10: 1.2393046222378096e-06 - syst_JES_MJB_Stat11: 1.3328130977536e-07 - syst_JES_MJB_Stat12: 7.787300442327026e-08 - syst_JES_MJB_Stat13: 5.3546350715997626e-08 - syst_JES_MJB_Stat14: 1.9582626866689772e-20 - syst_JES_MJB_Stat15: 1.4207463487547663e-14 - syst_JES_MJB_Stat16: 1.9684661993871581e-22 - syst_JES_MJB_Stat2: 0.0020065761884364122 - syst_JES_MJB_Stat3: 0.003274286639865239 - syst_JES_MJB_Stat4: 0.0021034761515168173 - syst_JES_MJB_Stat5: 4.909453213308513e-05 - syst_JES_MJB_Stat6: 0.000851822587162188 - syst_JES_MJB_Stat7: 0.00011325880230675328 - syst_JES_MJB_Stat8: 4.213972094303329e-16 - syst_JES_MJB_Stat9: 3.347502203135944e-31 - syst_JES_MJB_Threshold: 0.016967167905988317 - syst_JES_Pileup_MuOffset: 0.04310584270142506 - syst_JES_Pileup_NPVOffset: 0.07310155743894928 - syst_JES_Pileup_Pt_term: 0.15103286091112753 - syst_JES_PunchThrough_MC15: 7.081462083646109e-07 + syst_JES_EtaIntercalibration_Stat93: 8.21684903e-09 + syst_JES_EtaIntercalibration_Stat94: 8.48845434e-05 + syst_JES_EtaIntercalibration_Stat95: 8.38577862e-04 + syst_JES_EtaIntercalibration_Stat96: 2.68779463e-04 + syst_JES_EtaIntercalibration_Stat97: 3.29634005e-05 + syst_JES_EtaIntercalibration_Stat98: 1.51158220e-05 + syst_JES_EtaIntercalibration_Stat99: 2.00089757e-04 + syst_JES_EtaIntercalibration_TotalStat_MJB: 3.78835624e-02 + syst_JES_Flavour_Comp: 1.64734969e-01 + syst_JES_Gjet_Generator: 9.91656725e-01 + syst_JES_Gjet_OOC: 6.72672214e-01 + syst_JES_Gjet_Purity: 2.15950434e-01 + syst_JES_Gjet_Stat1: 3.29341567e-04 + syst_JES_Gjet_Stat10: 6.47880581e-02 + syst_JES_Gjet_Stat11: 1.07321038e-01 + syst_JES_Gjet_Stat12: 1.00791298e-01 + syst_JES_Gjet_Stat13: 4.55486034e-03 + syst_JES_Gjet_Stat14: 2.18613220e-02 + syst_JES_Gjet_Stat15: 2.73729113e-03 + syst_JES_Gjet_Stat2: 1.23233153e-31 + syst_JES_Gjet_Stat3: 1.27652144e-03 + syst_JES_Gjet_Stat4: 2.55832465e-03 + syst_JES_Gjet_Stat5: 2.46341526e-03 + syst_JES_Gjet_Stat6: 5.97660598e-03 + syst_JES_Gjet_Stat7: 9.21861610e-03 + syst_JES_Gjet_Stat8: 1.12117739e-02 + syst_JES_Gjet_Stat9: 2.73447010e-02 + syst_JES_Gjet_Veto: 2.89880579e-01 + syst_JES_Gjet_dPhi: 4.98491113e-02 + syst_JES_LArESZee: 1.24444400e+00 + syst_JES_LArEsmear: 9.90878614e-02 + syst_JES_LAr_JVT: 1.37802006e-01 + syst_JES_MJB_Alpha: 4.18992070e-03 + syst_JES_MJB_Asym: 1.56760925e-02 + syst_JES_MJB_Beta: 4.53203897e-04 + syst_JES_MJB_Stat1: 6.99423026e-03 + syst_JES_MJB_Stat10: 1.23930462e-06 + syst_JES_MJB_Stat11: 1.33281310e-07 + syst_JES_MJB_Stat12: 7.78730044e-08 + syst_JES_MJB_Stat13: 5.35463507e-08 + syst_JES_MJB_Stat14: 1.95826269e-20 + syst_JES_MJB_Stat15: 1.42074635e-14 + syst_JES_MJB_Stat16: 1.96846620e-22 + syst_JES_MJB_Stat2: 2.00657619e-03 + syst_JES_MJB_Stat3: 3.27428664e-03 + syst_JES_MJB_Stat4: 2.10347615e-03 + syst_JES_MJB_Stat5: 4.90945321e-05 + syst_JES_MJB_Stat6: 8.51822587e-04 + syst_JES_MJB_Stat7: 1.13258802e-04 + syst_JES_MJB_Stat8: 4.21397209e-16 + syst_JES_MJB_Stat9: 3.34750220e-31 + syst_JES_MJB_Threshold: 1.69671679e-02 + syst_JES_Pileup_MuOffset: 4.31058427e-02 + syst_JES_Pileup_NPVOffset: 7.31015574e-02 + syst_JES_Pileup_Pt_term: 1.51032861e-01 + syst_JES_PunchThrough_MC15: 7.08146208e-07 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.9420388739324932 - syst_JES_Zjet_MuScale: 0.05964857647085973 - syst_JES_Zjet_MuSmearID: 0.008490521465139816 - syst_JES_Zjet_MuSmearMS: 0.14177775521921623 - syst_JES_Zjet_OOC: 0.32071822523829235 - syst_JES_Zjet_Stat1: 0.00401976774826606 - syst_JES_Zjet_Stat10: 0.04950810337712403 - syst_JES_Zjet_Stat11: 0.08530866954770776 - syst_JES_Zjet_Stat12: 0.2879538287642656 - syst_JES_Zjet_Stat13: 0.05519366902100277 - syst_JES_Zjet_Stat2: 0.000810753357994896 - syst_JES_Zjet_Stat3: 0.002268154228850135 - syst_JES_Zjet_Stat4: 0.0024501669330884374 - syst_JES_Zjet_Stat5: 0.003182081551437675 - syst_JES_Zjet_Stat6: 0.00381619393997475 - syst_JES_Zjet_Stat7: 0.004830685743245983 - syst_JES_Zjet_Stat8: 0.00560849739235029 - syst_JES_Zjet_Stat9: 0.016576320460222768 - syst_JES_Zjet_Veto: 0.06839070916433021 - syst_JES_Zjet_dPhi: 0.05690056941718597 + syst_JES_Zjet_MC: 9.42038874e-01 + syst_JES_Zjet_MuScale: 5.96485765e-02 + syst_JES_Zjet_MuSmearID: 8.49052147e-03 + syst_JES_Zjet_MuSmearMS: 1.41777755e-01 + syst_JES_Zjet_OOC: 3.20718225e-01 + syst_JES_Zjet_Stat1: 4.01976775e-03 + syst_JES_Zjet_Stat10: 4.95081034e-02 + syst_JES_Zjet_Stat11: 8.53086695e-02 + syst_JES_Zjet_Stat12: 2.87953829e-01 + syst_JES_Zjet_Stat13: 5.51936690e-02 + syst_JES_Zjet_Stat2: 8.10753358e-04 + syst_JES_Zjet_Stat3: 2.26815423e-03 + syst_JES_Zjet_Stat4: 2.45016693e-03 + syst_JES_Zjet_Stat5: 3.18208155e-03 + syst_JES_Zjet_Stat6: 3.81619394e-03 + syst_JES_Zjet_Stat7: 4.83068574e-03 + syst_JES_Zjet_Stat8: 5.60849739e-03 + syst_JES_Zjet_Stat9: 1.65763205e-02 + syst_JES_Zjet_Veto: 6.83907092e-02 + syst_JES_Zjet_dPhi: 5.69005694e-02 syst_PRW: 0.04127 syst_Unfolding_bias: 0.04289 - syst_cleaning: 0.2764353088879928 + syst_cleaning: 2.76435309e-01 syst_lumi: 1.1216 - syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.03680579709773991 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.2779646875054455 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 0.24493674693683673 + syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 3.68057971e-02 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 2.77964688e-01 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 2.44936747e-01 syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 0.9486443116363478 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.04648944826517088 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.15757836145867238 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 9.48644312e-01 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 4.64894483e-02 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.57578361e-01 - stat: 0.15622 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.16277649553912876 - syst_JER_NP1: 0.012566027892695446 - syst_JER_NP2: 0.01736890036818681 - syst_JER_NP3: 0.03966897402252798 - syst_JER_NP4: 0.020787463217045027 - syst_JER_NP5: 0.008830836356200925 - syst_JER_NP6: 3.0613998023779905e-09 - syst_JER_NP7: 0.022587932618989285 - syst_JER_NP8: 0.030101516157828332 - syst_JES_EtaIntercalibration_Modelling: 0.24070702108580047 - syst_JES_EtaIntercalibration_NonClosure: 2.658697989618227e-05 + syst_JER_NP0: 1.62776496e-01 + syst_JER_NP1: 1.25660279e-02 + syst_JER_NP2: 1.73689004e-02 + syst_JER_NP3: 3.96689740e-02 + syst_JER_NP4: 2.07874632e-02 + syst_JER_NP5: 8.83083636e-03 + syst_JER_NP6: 3.06139980e-09 + syst_JER_NP7: 2.25879326e-02 + syst_JER_NP8: 3.01015162e-02 + syst_JES_EtaIntercalibration_Modelling: 2.40707021e-01 + syst_JES_EtaIntercalibration_NonClosure: 2.65869799e-05 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 8.800625020417584e-05 - syst_JES_EtaIntercalibration_Stat101: 1.1852185925587737e-06 - syst_JES_EtaIntercalibration_Stat102: 5.287831634261817e-10 - syst_JES_EtaIntercalibration_Stat103: 1.4679130594146235e-10 - syst_JES_EtaIntercalibration_Stat104: 1.4679130594146235e-10 - syst_JES_EtaIntercalibration_Stat105: 1.4679130594146235e-10 + syst_JES_EtaIntercalibration_Stat100: 8.80062502e-05 + syst_JES_EtaIntercalibration_Stat101: 1.18521859e-06 + syst_JES_EtaIntercalibration_Stat102: 5.28783163e-10 + syst_JES_EtaIntercalibration_Stat103: 1.46791306e-10 + syst_JES_EtaIntercalibration_Stat104: 1.46791306e-10 + syst_JES_EtaIntercalibration_Stat105: 1.46791306e-10 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 1.607343149423918e-05 - syst_JES_EtaIntercalibration_Stat111: 1.607343149423918e-05 + syst_JES_EtaIntercalibration_Stat110: 1.60734315e-05 + syst_JES_EtaIntercalibration_Stat111: 1.60734315e-05 syst_JES_EtaIntercalibration_Stat112: 0.0 - syst_JES_EtaIntercalibration_Stat113: 7.004107764125046e-08 - syst_JES_EtaIntercalibration_Stat114: 0.00016641405191569612 - syst_JES_EtaIntercalibration_Stat115: 0.0017706999936465803 - syst_JES_EtaIntercalibration_Stat116: 0.001483043386924334 - syst_JES_EtaIntercalibration_Stat117: 0.000228918351547009 - syst_JES_EtaIntercalibration_Stat118: 6.984024395003213e-05 - syst_JES_EtaIntercalibration_Stat119: 0.0009834512595955126 - syst_JES_EtaIntercalibration_Stat12: 5.003657825684202e-06 - syst_JES_EtaIntercalibration_Stat120: 0.001166268540045559 - syst_JES_EtaIntercalibration_Stat121: 0.0001079399447609642 - syst_JES_EtaIntercalibration_Stat122: 8.687576276895358e-08 - syst_JES_EtaIntercalibration_Stat123: 1.4679130594146235e-10 - syst_JES_EtaIntercalibration_Stat124: 1.4679130594146235e-10 - syst_JES_EtaIntercalibration_Stat125: 1.4679130594146235e-10 + syst_JES_EtaIntercalibration_Stat113: 7.00410776e-08 + syst_JES_EtaIntercalibration_Stat114: 1.66414052e-04 + syst_JES_EtaIntercalibration_Stat115: 1.77069999e-03 + syst_JES_EtaIntercalibration_Stat116: 1.48304339e-03 + syst_JES_EtaIntercalibration_Stat117: 2.28918352e-04 + syst_JES_EtaIntercalibration_Stat118: 6.98402440e-05 + syst_JES_EtaIntercalibration_Stat119: 9.83451260e-04 + syst_JES_EtaIntercalibration_Stat12: 5.00365783e-06 + syst_JES_EtaIntercalibration_Stat120: 1.16626854e-03 + syst_JES_EtaIntercalibration_Stat121: 1.07939945e-04 + syst_JES_EtaIntercalibration_Stat122: 8.68757628e-08 + syst_JES_EtaIntercalibration_Stat123: 1.46791306e-10 + syst_JES_EtaIntercalibration_Stat124: 1.46791306e-10 + syst_JES_EtaIntercalibration_Stat125: 1.46791306e-10 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 4.883517251940449e-05 - syst_JES_EtaIntercalibration_Stat129: 4.6042698389646974e-05 - syst_JES_EtaIntercalibration_Stat13: 7.1587510569558855e-06 - syst_JES_EtaIntercalibration_Stat130: 1.607343149423918e-05 - syst_JES_EtaIntercalibration_Stat131: 2.076728918275084e-11 - syst_JES_EtaIntercalibration_Stat132: 6.121083351227543e-05 - syst_JES_EtaIntercalibration_Stat133: 0.000976286693292498 - syst_JES_EtaIntercalibration_Stat134: 0.01452011019241934 - syst_JES_EtaIntercalibration_Stat135: 0.0075764277202386085 - syst_JES_EtaIntercalibration_Stat136: 0.001048226850447936 - syst_JES_EtaIntercalibration_Stat137: 0.0005847641945263065 - syst_JES_EtaIntercalibration_Stat138: 0.008483120460655974 - syst_JES_EtaIntercalibration_Stat139: 0.010501538494430234 - syst_JES_EtaIntercalibration_Stat14: 3.6390387467022116e-11 - syst_JES_EtaIntercalibration_Stat140: 0.0009427206797349892 - syst_JES_EtaIntercalibration_Stat141: 1.3882378787597622e-05 + syst_JES_EtaIntercalibration_Stat128: 4.88351725e-05 + syst_JES_EtaIntercalibration_Stat129: 4.60426984e-05 + syst_JES_EtaIntercalibration_Stat13: 7.15875106e-06 + syst_JES_EtaIntercalibration_Stat130: 1.60734315e-05 + syst_JES_EtaIntercalibration_Stat131: 2.07672892e-11 + syst_JES_EtaIntercalibration_Stat132: 6.12108335e-05 + syst_JES_EtaIntercalibration_Stat133: 9.76286693e-04 + syst_JES_EtaIntercalibration_Stat134: 1.45201102e-02 + syst_JES_EtaIntercalibration_Stat135: 7.57642772e-03 + syst_JES_EtaIntercalibration_Stat136: 1.04822685e-03 + syst_JES_EtaIntercalibration_Stat137: 5.84764195e-04 + syst_JES_EtaIntercalibration_Stat138: 8.48312046e-03 + syst_JES_EtaIntercalibration_Stat139: 1.05015385e-02 + syst_JES_EtaIntercalibration_Stat14: 3.63903875e-11 + syst_JES_EtaIntercalibration_Stat140: 9.42720680e-04 + syst_JES_EtaIntercalibration_Stat141: 1.38823788e-05 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 1.4679130594146235e-10 - syst_JES_EtaIntercalibration_Stat144: 1.4679130594146235e-10 + syst_JES_EtaIntercalibration_Stat143: 1.46791306e-10 + syst_JES_EtaIntercalibration_Stat144: 1.46791306e-10 syst_JES_EtaIntercalibration_Stat145: 0.0 - syst_JES_EtaIntercalibration_Stat146: 4.883517251940449e-05 - syst_JES_EtaIntercalibration_Stat147: 4.6042698389646974e-05 + syst_JES_EtaIntercalibration_Stat146: 4.88351725e-05 + syst_JES_EtaIntercalibration_Stat147: 4.60426984e-05 syst_JES_EtaIntercalibration_Stat148: 0.0 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 7.444655120957586e-07 - syst_JES_EtaIntercalibration_Stat151: 0.0012243529913795285 - syst_JES_EtaIntercalibration_Stat152: 0.017728961475506677 - syst_JES_EtaIntercalibration_Stat153: 0.012006748383721547 - syst_JES_EtaIntercalibration_Stat154: 0.0014141296643165365 - syst_JES_EtaIntercalibration_Stat155: 0.00047446773072570494 - syst_JES_EtaIntercalibration_Stat156: 0.011112957965816302 - syst_JES_EtaIntercalibration_Stat157: 0.013102667018588239 - syst_JES_EtaIntercalibration_Stat158: 0.0011694209749594027 - syst_JES_EtaIntercalibration_Stat159: 1.0686103147546349e-05 + syst_JES_EtaIntercalibration_Stat150: 7.44465512e-07 + syst_JES_EtaIntercalibration_Stat151: 1.22435299e-03 + syst_JES_EtaIntercalibration_Stat152: 1.77289615e-02 + syst_JES_EtaIntercalibration_Stat153: 1.20067484e-02 + syst_JES_EtaIntercalibration_Stat154: 1.41412966e-03 + syst_JES_EtaIntercalibration_Stat155: 4.74467731e-04 + syst_JES_EtaIntercalibration_Stat156: 1.11129580e-02 + syst_JES_EtaIntercalibration_Stat157: 1.31026670e-02 + syst_JES_EtaIntercalibration_Stat158: 1.16942097e-03 + syst_JES_EtaIntercalibration_Stat159: 1.06861031e-05 syst_JES_EtaIntercalibration_Stat16: 0.0 syst_JES_EtaIntercalibration_Stat160: 0.0 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 - syst_JES_EtaIntercalibration_Stat164: 4.883517251940449e-05 + syst_JES_EtaIntercalibration_Stat164: 4.88351725e-05 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 - syst_JES_EtaIntercalibration_Stat168: 1.80479694148677e-05 - syst_JES_EtaIntercalibration_Stat169: 0.0025793469619266036 + syst_JES_EtaIntercalibration_Stat168: 1.80479694e-05 + syst_JES_EtaIntercalibration_Stat169: 2.57934696e-03 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 0.028845832887958014 - syst_JES_EtaIntercalibration_Stat171: 0.02496272170657679 - syst_JES_EtaIntercalibration_Stat172: 0.001718923407252342 - syst_JES_EtaIntercalibration_Stat173: 0.0014185496113989105 - syst_JES_EtaIntercalibration_Stat174: 0.02422300972216293 - syst_JES_EtaIntercalibration_Stat175: 0.02596111322728669 - syst_JES_EtaIntercalibration_Stat176: 0.003130434155193174 - syst_JES_EtaIntercalibration_Stat177: 8.417627620060179e-05 + syst_JES_EtaIntercalibration_Stat170: 2.88458329e-02 + syst_JES_EtaIntercalibration_Stat171: 2.49627217e-02 + syst_JES_EtaIntercalibration_Stat172: 1.71892341e-03 + syst_JES_EtaIntercalibration_Stat173: 1.41854961e-03 + syst_JES_EtaIntercalibration_Stat174: 2.42230097e-02 + syst_JES_EtaIntercalibration_Stat175: 2.59611132e-02 + syst_JES_EtaIntercalibration_Stat176: 3.13043416e-03 + syst_JES_EtaIntercalibration_Stat177: 8.41762762e-05 syst_JES_EtaIntercalibration_Stat178: 0.0 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 @@ -16184,17 +16184,17 @@ bins: syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 syst_JES_EtaIntercalibration_Stat184: 0.0 - syst_JES_EtaIntercalibration_Stat185: 0.00011816916634638667 - syst_JES_EtaIntercalibration_Stat186: 0.004743365550956408 - syst_JES_EtaIntercalibration_Stat187: 0.053371905530906434 - syst_JES_EtaIntercalibration_Stat188: 0.042260021296729136 - syst_JES_EtaIntercalibration_Stat189: 0.002820727565717753 + syst_JES_EtaIntercalibration_Stat185: 1.18169166e-04 + syst_JES_EtaIntercalibration_Stat186: 4.74336555e-03 + syst_JES_EtaIntercalibration_Stat187: 5.33719055e-02 + syst_JES_EtaIntercalibration_Stat188: 4.22600213e-02 + syst_JES_EtaIntercalibration_Stat189: 2.82072757e-03 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 0.0031306764045490234 - syst_JES_EtaIntercalibration_Stat191: 0.038075232106974735 - syst_JES_EtaIntercalibration_Stat192: 0.05270500047433829 - syst_JES_EtaIntercalibration_Stat193: 0.006118377297127074 - syst_JES_EtaIntercalibration_Stat194: 5.396204290980838e-05 + syst_JES_EtaIntercalibration_Stat190: 3.13067640e-03 + syst_JES_EtaIntercalibration_Stat191: 3.80752321e-02 + syst_JES_EtaIntercalibration_Stat192: 5.27050005e-02 + syst_JES_EtaIntercalibration_Stat193: 6.11837730e-03 + syst_JES_EtaIntercalibration_Stat194: 5.39620429e-05 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 syst_JES_EtaIntercalibration_Stat197: 0.0 @@ -16202,70 +16202,70 @@ bins: syst_JES_EtaIntercalibration_Stat199: 0.0 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 2.51493777259001e-06 - syst_JES_EtaIntercalibration_Stat201: 0.0009504043179089624 - syst_JES_EtaIntercalibration_Stat202: 0.013243501302525704 - syst_JES_EtaIntercalibration_Stat203: 0.009237027281544642 - syst_JES_EtaIntercalibration_Stat204: 0.000739166806275823 - syst_JES_EtaIntercalibration_Stat205: 0.0009470853815786621 - syst_JES_EtaIntercalibration_Stat206: 0.00809049275384386 - syst_JES_EtaIntercalibration_Stat207: 0.010267853329688732 - syst_JES_EtaIntercalibration_Stat208: 0.0013344967291080184 - syst_JES_EtaIntercalibration_Stat209: 2.764025001243658e-05 + syst_JES_EtaIntercalibration_Stat200: 2.51493777e-06 + syst_JES_EtaIntercalibration_Stat201: 9.50404318e-04 + syst_JES_EtaIntercalibration_Stat202: 1.32435013e-02 + syst_JES_EtaIntercalibration_Stat203: 9.23702728e-03 + syst_JES_EtaIntercalibration_Stat204: 7.39166806e-04 + syst_JES_EtaIntercalibration_Stat205: 9.47085382e-04 + syst_JES_EtaIntercalibration_Stat206: 8.09049275e-03 + syst_JES_EtaIntercalibration_Stat207: 1.02678533e-02 + syst_JES_EtaIntercalibration_Stat208: 1.33449673e-03 + syst_JES_EtaIntercalibration_Stat209: 2.76402500e-05 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 syst_JES_EtaIntercalibration_Stat211: 0.0 syst_JES_EtaIntercalibration_Stat212: 0.0 - syst_JES_EtaIntercalibration_Stat213: 2.2932352692211936e-06 - syst_JES_EtaIntercalibration_Stat214: 0.0002362738400669867 - syst_JES_EtaIntercalibration_Stat215: 0.0027351312125746363 - syst_JES_EtaIntercalibration_Stat216: 0.0025241317319030718 - syst_JES_EtaIntercalibration_Stat217: 0.00025622608305921936 - syst_JES_EtaIntercalibration_Stat218: 0.00019043062043694548 - syst_JES_EtaIntercalibration_Stat219: 0.0017194231590856278 + syst_JES_EtaIntercalibration_Stat213: 2.29323527e-06 + syst_JES_EtaIntercalibration_Stat214: 2.36273840e-04 + syst_JES_EtaIntercalibration_Stat215: 2.73513121e-03 + syst_JES_EtaIntercalibration_Stat216: 2.52413173e-03 + syst_JES_EtaIntercalibration_Stat217: 2.56226083e-04 + syst_JES_EtaIntercalibration_Stat218: 1.90430620e-04 + syst_JES_EtaIntercalibration_Stat219: 1.71942316e-03 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 0.002171442608037339 - syst_JES_EtaIntercalibration_Stat221: 0.00036292636608546366 - syst_JES_EtaIntercalibration_Stat222: 3.4730693064636647e-06 + syst_JES_EtaIntercalibration_Stat220: 2.17144261e-03 + syst_JES_EtaIntercalibration_Stat221: 3.62926366e-04 + syst_JES_EtaIntercalibration_Stat222: 3.47306931e-06 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 - syst_JES_EtaIntercalibration_Stat225: 6.461415537635697e-14 - syst_JES_EtaIntercalibration_Stat226: 1.1116648580516522e-06 - syst_JES_EtaIntercalibration_Stat227: 9.730561687281984e-05 - syst_JES_EtaIntercalibration_Stat228: 0.00013658272328519446 - syst_JES_EtaIntercalibration_Stat229: 4.645360265899728e-06 + syst_JES_EtaIntercalibration_Stat225: 6.46141554e-14 + syst_JES_EtaIntercalibration_Stat226: 1.11166486e-06 + syst_JES_EtaIntercalibration_Stat227: 9.73056169e-05 + syst_JES_EtaIntercalibration_Stat228: 1.36582723e-04 + syst_JES_EtaIntercalibration_Stat229: 4.64536027e-06 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 1.3405977239983926e-05 - syst_JES_EtaIntercalibration_Stat231: 0.00012732248505271956 - syst_JES_EtaIntercalibration_Stat232: 0.00013334253747398087 - syst_JES_EtaIntercalibration_Stat233: 2.896193968374831e-05 - syst_JES_EtaIntercalibration_Stat234: 7.3343691238196136e-09 + syst_JES_EtaIntercalibration_Stat230: 1.34059772e-05 + syst_JES_EtaIntercalibration_Stat231: 1.27322485e-04 + syst_JES_EtaIntercalibration_Stat232: 1.33342537e-04 + syst_JES_EtaIntercalibration_Stat233: 2.89619397e-05 + syst_JES_EtaIntercalibration_Stat234: 7.33436912e-09 syst_JES_EtaIntercalibration_Stat235: 0.0 syst_JES_EtaIntercalibration_Stat236: 0.0 - syst_JES_EtaIntercalibration_Stat237: 3.1741337007126844e-13 - syst_JES_EtaIntercalibration_Stat238: 5.4384277829166764e-08 - syst_JES_EtaIntercalibration_Stat239: 1.3156161750297842e-09 + syst_JES_EtaIntercalibration_Stat237: 3.17413370e-13 + syst_JES_EtaIntercalibration_Stat238: 5.43842778e-08 + syst_JES_EtaIntercalibration_Stat239: 1.31561618e-09 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 - syst_JES_EtaIntercalibration_Stat241: 5.674198445595642e-13 - syst_JES_EtaIntercalibration_Stat242: 3.366422878962178e-09 - syst_JES_EtaIntercalibration_Stat243: 2.576483287587949e-08 - syst_JES_EtaIntercalibration_Stat244: 6.012814378475357e-21 - syst_JES_EtaIntercalibration_Stat245: 2.765219114283713e-17 + syst_JES_EtaIntercalibration_Stat241: 5.67419845e-13 + syst_JES_EtaIntercalibration_Stat242: 3.36642288e-09 + syst_JES_EtaIntercalibration_Stat243: 2.57648329e-08 + syst_JES_EtaIntercalibration_Stat244: 6.01281438e-21 + syst_JES_EtaIntercalibration_Stat245: 2.76521911e-17 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 syst_JES_EtaIntercalibration_Stat27: 0.0 - syst_JES_EtaIntercalibration_Stat28: 3.272710000901394e-12 - syst_JES_EtaIntercalibration_Stat29: 1.002449363347097e-08 + syst_JES_EtaIntercalibration_Stat28: 3.27271000e-12 + syst_JES_EtaIntercalibration_Stat29: 1.00244936e-08 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 3.0998174188167923e-07 - syst_JES_EtaIntercalibration_Stat31: 1.7498994256813733e-07 - syst_JES_EtaIntercalibration_Stat32: 4.1839708411985854e-11 - syst_JES_EtaIntercalibration_Stat33: 2.7106632177384192e-09 - syst_JES_EtaIntercalibration_Stat34: 5.866857158649765e-05 - syst_JES_EtaIntercalibration_Stat35: 4.257610479458725e-05 - syst_JES_EtaIntercalibration_Stat36: 8.537310780337975e-08 - syst_JES_EtaIntercalibration_Stat37: 2.388498063637482e-12 + syst_JES_EtaIntercalibration_Stat30: 3.09981742e-07 + syst_JES_EtaIntercalibration_Stat31: 1.74989943e-07 + syst_JES_EtaIntercalibration_Stat32: 4.18397084e-11 + syst_JES_EtaIntercalibration_Stat33: 2.71066322e-09 + syst_JES_EtaIntercalibration_Stat34: 5.86685716e-05 + syst_JES_EtaIntercalibration_Stat35: 4.25761048e-05 + syst_JES_EtaIntercalibration_Stat36: 8.53731078e-08 + syst_JES_EtaIntercalibration_Stat37: 2.38849806e-12 syst_JES_EtaIntercalibration_Stat38: 0.0 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 @@ -16280,20 +16280,20 @@ bins: syst_JES_EtaIntercalibration_Stat48: 0.0 syst_JES_EtaIntercalibration_Stat49: 0.0 syst_JES_EtaIntercalibration_Stat5: 0.0 - syst_JES_EtaIntercalibration_Stat50: 3.3152318482272094e-12 - syst_JES_EtaIntercalibration_Stat51: 2.6992916418016042e-08 - syst_JES_EtaIntercalibration_Stat52: 1.1179471678035596e-05 - syst_JES_EtaIntercalibration_Stat53: 1.730726075957718e-06 - syst_JES_EtaIntercalibration_Stat54: 9.924949508687688e-09 - syst_JES_EtaIntercalibration_Stat55: 4.979497505050083e-06 - syst_JES_EtaIntercalibration_Stat56: 5.596283050746719e-05 - syst_JES_EtaIntercalibration_Stat57: 7.673939828451875e-05 - syst_JES_EtaIntercalibration_Stat58: 1.242996991146801e-07 - syst_JES_EtaIntercalibration_Stat59: 1.2974544568114904e-11 + syst_JES_EtaIntercalibration_Stat50: 3.31523185e-12 + syst_JES_EtaIntercalibration_Stat51: 2.69929164e-08 + syst_JES_EtaIntercalibration_Stat52: 1.11794717e-05 + syst_JES_EtaIntercalibration_Stat53: 1.73072608e-06 + syst_JES_EtaIntercalibration_Stat54: 9.92494951e-09 + syst_JES_EtaIntercalibration_Stat55: 4.97949751e-06 + syst_JES_EtaIntercalibration_Stat56: 5.59628305e-05 + syst_JES_EtaIntercalibration_Stat57: 7.67393983e-05 + syst_JES_EtaIntercalibration_Stat58: 1.24299699e-07 + syst_JES_EtaIntercalibration_Stat59: 1.29745446e-11 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 1.4679130594146235e-10 - syst_JES_EtaIntercalibration_Stat62: 1.4679130594146235e-10 + syst_JES_EtaIntercalibration_Stat61: 1.46791306e-10 + syst_JES_EtaIntercalibration_Stat62: 1.46791306e-10 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 @@ -16301,223 +16301,223 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 3.272710000901394e-12 + syst_JES_EtaIntercalibration_Stat7: 3.27271000e-12 syst_JES_EtaIntercalibration_Stat70: 0.0 syst_JES_EtaIntercalibration_Stat71: 0.0 - syst_JES_EtaIntercalibration_Stat72: 9.04736739333603e-10 - syst_JES_EtaIntercalibration_Stat73: 1.2842938730290666e-05 - syst_JES_EtaIntercalibration_Stat74: 7.072304435613614e-05 - syst_JES_EtaIntercalibration_Stat75: 0.00012215008923451508 - syst_JES_EtaIntercalibration_Stat76: 6.829851939830028e-07 - syst_JES_EtaIntercalibration_Stat77: 4.1755151861776295e-06 - syst_JES_EtaIntercalibration_Stat78: 6.301661368242505e-05 - syst_JES_EtaIntercalibration_Stat79: 8.156261199226027e-05 - syst_JES_EtaIntercalibration_Stat8: 5.303693312211783e-09 - syst_JES_EtaIntercalibration_Stat80: 1.0602386553086761e-06 - syst_JES_EtaIntercalibration_Stat81: 4.324064841095702e-11 - syst_JES_EtaIntercalibration_Stat82: 1.4679130594146235e-10 - syst_JES_EtaIntercalibration_Stat83: 1.4679130594146235e-10 - syst_JES_EtaIntercalibration_Stat84: 1.4679130594146235e-10 + syst_JES_EtaIntercalibration_Stat72: 9.04736739e-10 + syst_JES_EtaIntercalibration_Stat73: 1.28429387e-05 + syst_JES_EtaIntercalibration_Stat74: 7.07230444e-05 + syst_JES_EtaIntercalibration_Stat75: 1.22150089e-04 + syst_JES_EtaIntercalibration_Stat76: 6.82985194e-07 + syst_JES_EtaIntercalibration_Stat77: 4.17551519e-06 + syst_JES_EtaIntercalibration_Stat78: 6.30166137e-05 + syst_JES_EtaIntercalibration_Stat79: 8.15626120e-05 + syst_JES_EtaIntercalibration_Stat8: 5.30369331e-09 + syst_JES_EtaIntercalibration_Stat80: 1.06023866e-06 + syst_JES_EtaIntercalibration_Stat81: 4.32406484e-11 + syst_JES_EtaIntercalibration_Stat82: 1.46791306e-10 + syst_JES_EtaIntercalibration_Stat83: 1.46791306e-10 + syst_JES_EtaIntercalibration_Stat84: 1.46791306e-10 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 syst_JES_EtaIntercalibration_Stat89: 0.0 - syst_JES_EtaIntercalibration_Stat9: 1.453076972324591e-09 + syst_JES_EtaIntercalibration_Stat9: 1.45307697e-09 syst_JES_EtaIntercalibration_Stat90: 0.0 syst_JES_EtaIntercalibration_Stat91: 0.0 syst_JES_EtaIntercalibration_Stat92: 0.0 - syst_JES_EtaIntercalibration_Stat93: 8.396116289690132e-10 - syst_JES_EtaIntercalibration_Stat94: 2.248364780790697e-05 - syst_JES_EtaIntercalibration_Stat95: 0.000197143247411622 - syst_JES_EtaIntercalibration_Stat96: 0.00014356392408958456 - syst_JES_EtaIntercalibration_Stat97: 8.166881216688535e-06 - syst_JES_EtaIntercalibration_Stat98: 2.617930623603307e-06 - syst_JES_EtaIntercalibration_Stat99: 0.00010118123294366401 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.040825643901841895 - syst_JES_Flavour_Comp: 0.14341920199192296 - syst_JES_Gjet_Generator: 0.5970205189103637 - syst_JES_Gjet_OOC: 0.41694231015813205 - syst_JES_Gjet_Purity: 0.14085502999538213 - syst_JES_Gjet_Stat1: 0.00019973467400529135 - syst_JES_Gjet_Stat10: 0.033613200903811584 - syst_JES_Gjet_Stat11: 0.05865969889967046 - syst_JES_Gjet_Stat12: 0.08067502897427431 - syst_JES_Gjet_Stat13: 0.01472994999991514 - syst_JES_Gjet_Stat14: 0.018559716457963466 - syst_JES_Gjet_Stat15: 0.0021219545235466285 - syst_JES_Gjet_Stat2: 1.6334782275867652e-24 - syst_JES_Gjet_Stat3: 0.0007742265186103696 - syst_JES_Gjet_Stat4: 0.0014954747573931162 - syst_JES_Gjet_Stat5: 0.0013420128613392643 - syst_JES_Gjet_Stat6: 0.003778243667036312 - syst_JES_Gjet_Stat7: 0.005481795873616602 - syst_JES_Gjet_Stat8: 0.005443011758208868 - syst_JES_Gjet_Stat9: 0.013414893290667652 - syst_JES_Gjet_Veto: 0.19361492711048908 - syst_JES_Gjet_dPhi: 0.031270003197953145 - syst_JES_LArESZee: 0.7867672781706164 - syst_JES_LArEsmear: 0.061751658277328876 - syst_JES_LAr_JVT: 0.0860927306745465 - syst_JES_MJB_Alpha: 0.0034748252833775688 - syst_JES_MJB_Asym: 0.017439067492271483 - syst_JES_MJB_Beta: 0.0008988601472420501 - syst_JES_MJB_Stat1: 0.00432553694409145 - syst_JES_MJB_Stat10: 5.968439997185194e-06 - syst_JES_MJB_Stat11: 1.3423400903383592e-06 - syst_JES_MJB_Stat12: 8.243701999177239e-07 - syst_JES_MJB_Stat13: 5.668136270744526e-07 - syst_JES_MJB_Stat14: 1.00864877311183e-15 - syst_JES_MJB_Stat15: 1.084127145449278e-11 - syst_JES_MJB_Stat16: 1.0138768573211048e-17 - syst_JES_MJB_Stat2: 0.0012175404254068938 - syst_JES_MJB_Stat3: 0.0030304509144803847 - syst_JES_MJB_Stat4: 0.0010809937777341736 - syst_JES_MJB_Stat5: 9.844678656567467e-05 - syst_JES_MJB_Stat6: 0.0006987958973139816 - syst_JES_MJB_Stat7: 0.00022343455323241748 - syst_JES_MJB_Stat8: 2.2649690306758614e-12 - syst_JES_MJB_Stat9: 4.436169603385335e-24 - syst_JES_MJB_Threshold: 0.020041738946508604 - syst_JES_Pileup_MuOffset: 0.039893042137696136 - syst_JES_Pileup_NPVOffset: 0.0551472852912997 - syst_JES_Pileup_Pt_term: 0.09294047449846594 - syst_JES_PunchThrough_MC15: 2.4359189163100482e-05 + syst_JES_EtaIntercalibration_Stat93: 8.39611629e-10 + syst_JES_EtaIntercalibration_Stat94: 2.24836478e-05 + syst_JES_EtaIntercalibration_Stat95: 1.97143247e-04 + syst_JES_EtaIntercalibration_Stat96: 1.43563924e-04 + syst_JES_EtaIntercalibration_Stat97: 8.16688122e-06 + syst_JES_EtaIntercalibration_Stat98: 2.61793062e-06 + syst_JES_EtaIntercalibration_Stat99: 1.01181233e-04 + syst_JES_EtaIntercalibration_TotalStat_MJB: 4.08256439e-02 + syst_JES_Flavour_Comp: 1.43419202e-01 + syst_JES_Gjet_Generator: 5.97020519e-01 + syst_JES_Gjet_OOC: 4.16942310e-01 + syst_JES_Gjet_Purity: 1.40855030e-01 + syst_JES_Gjet_Stat1: 1.99734674e-04 + syst_JES_Gjet_Stat10: 3.36132009e-02 + syst_JES_Gjet_Stat11: 5.86596989e-02 + syst_JES_Gjet_Stat12: 8.06750290e-02 + syst_JES_Gjet_Stat13: 1.47299500e-02 + syst_JES_Gjet_Stat14: 1.85597165e-02 + syst_JES_Gjet_Stat15: 2.12195452e-03 + syst_JES_Gjet_Stat2: 1.63347823e-24 + syst_JES_Gjet_Stat3: 7.74226519e-04 + syst_JES_Gjet_Stat4: 1.49547476e-03 + syst_JES_Gjet_Stat5: 1.34201286e-03 + syst_JES_Gjet_Stat6: 3.77824367e-03 + syst_JES_Gjet_Stat7: 5.48179587e-03 + syst_JES_Gjet_Stat8: 5.44301176e-03 + syst_JES_Gjet_Stat9: 1.34148933e-02 + syst_JES_Gjet_Veto: 1.93614927e-01 + syst_JES_Gjet_dPhi: 3.12700032e-02 + syst_JES_LArESZee: 7.86767278e-01 + syst_JES_LArEsmear: 6.17516583e-02 + syst_JES_LAr_JVT: 8.60927307e-02 + syst_JES_MJB_Alpha: 3.47482528e-03 + syst_JES_MJB_Asym: 1.74390675e-02 + syst_JES_MJB_Beta: 8.98860147e-04 + syst_JES_MJB_Stat1: 4.32553694e-03 + syst_JES_MJB_Stat10: 5.96844000e-06 + syst_JES_MJB_Stat11: 1.34234009e-06 + syst_JES_MJB_Stat12: 8.24370200e-07 + syst_JES_MJB_Stat13: 5.66813627e-07 + syst_JES_MJB_Stat14: 1.00864877e-15 + syst_JES_MJB_Stat15: 1.08412715e-11 + syst_JES_MJB_Stat16: 1.01387686e-17 + syst_JES_MJB_Stat2: 1.21754043e-03 + syst_JES_MJB_Stat3: 3.03045091e-03 + syst_JES_MJB_Stat4: 1.08099378e-03 + syst_JES_MJB_Stat5: 9.84467866e-05 + syst_JES_MJB_Stat6: 6.98795897e-04 + syst_JES_MJB_Stat7: 2.23434553e-04 + syst_JES_MJB_Stat8: 2.26496903e-12 + syst_JES_MJB_Stat9: 4.43616960e-24 + syst_JES_MJB_Threshold: 2.00417389e-02 + syst_JES_Pileup_MuOffset: 3.98930421e-02 + syst_JES_Pileup_NPVOffset: 5.51472853e-02 + syst_JES_Pileup_Pt_term: 9.29404745e-02 + syst_JES_PunchThrough_MC15: 2.43591892e-05 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.5557626359337231 - syst_JES_Zjet_MuScale: 0.035456185285504135 - syst_JES_Zjet_MuSmearID: 0.005417099869856563 - syst_JES_Zjet_MuSmearMS: 0.10027433607359362 - syst_JES_Zjet_OOC: 0.19780854379930105 - syst_JES_Zjet_Stat1: 0.0025255531572311043 - syst_JES_Zjet_Stat10: 0.024619749694097217 - syst_JES_Zjet_Stat11: 0.03463134526696876 - syst_JES_Zjet_Stat12: 0.18315001365001315 - syst_JES_Zjet_Stat13: 0.06315529490866147 - syst_JES_Zjet_Stat2: 0.0004916843111946933 - syst_JES_Zjet_Stat3: 0.0013590383403991957 - syst_JES_Zjet_Stat4: 0.0014855069841639924 - syst_JES_Zjet_Stat5: 0.0022951193324095374 - syst_JES_Zjet_Stat6: 0.0023762779193520277 - syst_JES_Zjet_Stat7: 0.0028791823057944766 - syst_JES_Zjet_Stat8: 0.0034476783318633424 - syst_JES_Zjet_Stat9: 0.00853609758613384 - syst_JES_Zjet_Veto: 0.04229521338165821 - syst_JES_Zjet_dPhi: 0.035081257104043466 + syst_JES_Zjet_MC: 5.55762636e-01 + syst_JES_Zjet_MuScale: 3.54561853e-02 + syst_JES_Zjet_MuSmearID: 5.41709987e-03 + syst_JES_Zjet_MuSmearMS: 1.00274336e-01 + syst_JES_Zjet_OOC: 1.97808544e-01 + syst_JES_Zjet_Stat1: 2.52555316e-03 + syst_JES_Zjet_Stat10: 2.46197497e-02 + syst_JES_Zjet_Stat11: 3.46313453e-02 + syst_JES_Zjet_Stat12: 1.83150014e-01 + syst_JES_Zjet_Stat13: 6.31552949e-02 + syst_JES_Zjet_Stat2: 4.91684311e-04 + syst_JES_Zjet_Stat3: 1.35903834e-03 + syst_JES_Zjet_Stat4: 1.48550698e-03 + syst_JES_Zjet_Stat5: 2.29511933e-03 + syst_JES_Zjet_Stat6: 2.37627792e-03 + syst_JES_Zjet_Stat7: 2.87918231e-03 + syst_JES_Zjet_Stat8: 3.44767833e-03 + syst_JES_Zjet_Stat9: 8.53609759e-03 + syst_JES_Zjet_Veto: 4.22952134e-02 + syst_JES_Zjet_dPhi: 3.50812571e-02 syst_PRW: 0.02503 syst_Unfolding_bias: 0.02601 - syst_cleaning: 0.16731610801115354 + syst_cleaning: 1.67316108e-01 syst_lumi: 0.6802 - syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.03380262711683812 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.16626264613556468 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 0.1349505401989929 + syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 3.38026271e-02 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.66262646e-01 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 1.34950540e-01 syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 0.5226521094380085 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.043479934165083556 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.09856750377279522 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 5.22652109e-01 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 4.34799342e-02 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 9.85675038e-02 - stat: 0.11152 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.09726274865024123 - syst_JER_NP1: 0.0058168097785641915 - syst_JER_NP2: 0.011360342732505916 - syst_JER_NP3: 0.021127879685382534 - syst_JER_NP4: 0.012192807182925515 - syst_JER_NP5: 0.005577855031282186 - syst_JER_NP6: 3.137610037911021e-07 - syst_JER_NP7: 0.012934655725994412 - syst_JER_NP8: 0.015699467347652277 - syst_JES_EtaIntercalibration_Modelling: 0.16313831554849398 - syst_JES_EtaIntercalibration_NonClosure: 1.2695932419479871e-05 + syst_JER_NP0: 9.72627487e-02 + syst_JER_NP1: 5.81680978e-03 + syst_JER_NP2: 1.13603427e-02 + syst_JER_NP3: 2.11278797e-02 + syst_JER_NP4: 1.21928072e-02 + syst_JER_NP5: 5.57785503e-03 + syst_JER_NP6: 3.13761004e-07 + syst_JER_NP7: 1.29346557e-02 + syst_JER_NP8: 1.56994673e-02 + syst_JES_EtaIntercalibration_Modelling: 1.63138316e-01 + syst_JES_EtaIntercalibration_NonClosure: 1.26959324e-05 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 3.880822947520281e-05 - syst_JES_EtaIntercalibration_Stat101: 1.6662059317728405e-07 - syst_JES_EtaIntercalibration_Stat102: 6.019281486745324e-11 - syst_JES_EtaIntercalibration_Stat103: 1.9026578121144116e-11 - syst_JES_EtaIntercalibration_Stat104: 1.9026578121144116e-11 - syst_JES_EtaIntercalibration_Stat105: 1.9026578121144116e-11 + syst_JES_EtaIntercalibration_Stat100: 3.88082295e-05 + syst_JES_EtaIntercalibration_Stat101: 1.66620593e-07 + syst_JES_EtaIntercalibration_Stat102: 6.01928149e-11 + syst_JES_EtaIntercalibration_Stat103: 1.90265781e-11 + syst_JES_EtaIntercalibration_Stat104: 1.90265781e-11 + syst_JES_EtaIntercalibration_Stat105: 1.90265781e-11 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 2.8007261558388746e-06 - syst_JES_EtaIntercalibration_Stat111: 2.8007261558388746e-06 + syst_JES_EtaIntercalibration_Stat110: 2.80072616e-06 + syst_JES_EtaIntercalibration_Stat111: 2.80072616e-06 syst_JES_EtaIntercalibration_Stat112: 0.0 - syst_JES_EtaIntercalibration_Stat113: 8.199908598694682e-09 - syst_JES_EtaIntercalibration_Stat114: 0.0001299164888495683 - syst_JES_EtaIntercalibration_Stat115: 0.0004988786024675743 - syst_JES_EtaIntercalibration_Stat116: 0.00043622767802490485 - syst_JES_EtaIntercalibration_Stat117: 8.940684319866125e-05 - syst_JES_EtaIntercalibration_Stat118: 3.2378715230842624e-05 - syst_JES_EtaIntercalibration_Stat119: 0.00035657611739991785 - syst_JES_EtaIntercalibration_Stat12: 9.027282082610264e-07 - syst_JES_EtaIntercalibration_Stat120: 0.000384096638230537 - syst_JES_EtaIntercalibration_Stat121: 5.687000587963747e-05 - syst_JES_EtaIntercalibration_Stat122: 1.0875008540148372e-08 - syst_JES_EtaIntercalibration_Stat123: 1.9026578121144116e-11 - syst_JES_EtaIntercalibration_Stat124: 1.9026578121144116e-11 - syst_JES_EtaIntercalibration_Stat125: 1.9026578121144116e-11 + syst_JES_EtaIntercalibration_Stat113: 8.19990860e-09 + syst_JES_EtaIntercalibration_Stat114: 1.29916489e-04 + syst_JES_EtaIntercalibration_Stat115: 4.98878602e-04 + syst_JES_EtaIntercalibration_Stat116: 4.36227678e-04 + syst_JES_EtaIntercalibration_Stat117: 8.94068432e-05 + syst_JES_EtaIntercalibration_Stat118: 3.23787152e-05 + syst_JES_EtaIntercalibration_Stat119: 3.56576117e-04 + syst_JES_EtaIntercalibration_Stat12: 9.02728208e-07 + syst_JES_EtaIntercalibration_Stat120: 3.84096638e-04 + syst_JES_EtaIntercalibration_Stat121: 5.68700059e-05 + syst_JES_EtaIntercalibration_Stat122: 1.08750085e-08 + syst_JES_EtaIntercalibration_Stat123: 1.90265781e-11 + syst_JES_EtaIntercalibration_Stat124: 1.90265781e-11 + syst_JES_EtaIntercalibration_Stat125: 1.90265781e-11 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 3.9871809590235554e-05 - syst_JES_EtaIntercalibration_Stat129: 3.902766438053909e-05 - syst_JES_EtaIntercalibration_Stat13: 1.2108416678339905e-06 - syst_JES_EtaIntercalibration_Stat130: 2.8007261558388746e-06 - syst_JES_EtaIntercalibration_Stat131: 2.4525839435175304e-12 - syst_JES_EtaIntercalibration_Stat132: 2.0217549848337214e-05 - syst_JES_EtaIntercalibration_Stat133: 0.000332819218007314 - syst_JES_EtaIntercalibration_Stat134: 0.005308773940374557 - syst_JES_EtaIntercalibration_Stat135: 0.0025375107881544074 - syst_JES_EtaIntercalibration_Stat136: 0.00031586158582518384 - syst_JES_EtaIntercalibration_Stat137: 0.00017917950412923907 - syst_JES_EtaIntercalibration_Stat138: 0.0031103531953782996 - syst_JES_EtaIntercalibration_Stat139: 0.004146620996365595 - syst_JES_EtaIntercalibration_Stat14: 4.3448494507865285e-12 - syst_JES_EtaIntercalibration_Stat140: 0.0004161570376672729 - syst_JES_EtaIntercalibration_Stat141: 1.5242048105711023e-05 + syst_JES_EtaIntercalibration_Stat128: 3.98718096e-05 + syst_JES_EtaIntercalibration_Stat129: 3.90276644e-05 + syst_JES_EtaIntercalibration_Stat13: 1.21084167e-06 + syst_JES_EtaIntercalibration_Stat130: 2.80072616e-06 + syst_JES_EtaIntercalibration_Stat131: 2.45258394e-12 + syst_JES_EtaIntercalibration_Stat132: 2.02175498e-05 + syst_JES_EtaIntercalibration_Stat133: 3.32819218e-04 + syst_JES_EtaIntercalibration_Stat134: 5.30877394e-03 + syst_JES_EtaIntercalibration_Stat135: 2.53751079e-03 + syst_JES_EtaIntercalibration_Stat136: 3.15861586e-04 + syst_JES_EtaIntercalibration_Stat137: 1.79179504e-04 + syst_JES_EtaIntercalibration_Stat138: 3.11035320e-03 + syst_JES_EtaIntercalibration_Stat139: 4.14662100e-03 + syst_JES_EtaIntercalibration_Stat14: 4.34484945e-12 + syst_JES_EtaIntercalibration_Stat140: 4.16157038e-04 + syst_JES_EtaIntercalibration_Stat141: 1.52420481e-05 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 1.9026578121144116e-11 - syst_JES_EtaIntercalibration_Stat144: 1.9026578121144116e-11 + syst_JES_EtaIntercalibration_Stat143: 1.90265781e-11 + syst_JES_EtaIntercalibration_Stat144: 1.90265781e-11 syst_JES_EtaIntercalibration_Stat145: 0.0 - syst_JES_EtaIntercalibration_Stat146: 3.9871809590235554e-05 - syst_JES_EtaIntercalibration_Stat147: 3.902766438053909e-05 + syst_JES_EtaIntercalibration_Stat146: 3.98718096e-05 + syst_JES_EtaIntercalibration_Stat147: 3.90276644e-05 syst_JES_EtaIntercalibration_Stat148: 0.0 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 1.065630219201295e-07 - syst_JES_EtaIntercalibration_Stat151: 0.0004362506934091911 - syst_JES_EtaIntercalibration_Stat152: 0.00695084662109588 - syst_JES_EtaIntercalibration_Stat153: 0.004948168940881061 - syst_JES_EtaIntercalibration_Stat154: 0.0005048382777434771 - syst_JES_EtaIntercalibration_Stat155: 0.00016727997989897058 - syst_JES_EtaIntercalibration_Stat156: 0.004380455880385054 - syst_JES_EtaIntercalibration_Stat157: 0.0053855532677711026 - syst_JES_EtaIntercalibration_Stat158: 0.0006079069057635388 - syst_JES_EtaIntercalibration_Stat159: 1.6063823090410328e-05 + syst_JES_EtaIntercalibration_Stat150: 1.06563022e-07 + syst_JES_EtaIntercalibration_Stat151: 4.36250693e-04 + syst_JES_EtaIntercalibration_Stat152: 6.95084662e-03 + syst_JES_EtaIntercalibration_Stat153: 4.94816894e-03 + syst_JES_EtaIntercalibration_Stat154: 5.04838278e-04 + syst_JES_EtaIntercalibration_Stat155: 1.67279980e-04 + syst_JES_EtaIntercalibration_Stat156: 4.38045588e-03 + syst_JES_EtaIntercalibration_Stat157: 5.38555327e-03 + syst_JES_EtaIntercalibration_Stat158: 6.07906906e-04 + syst_JES_EtaIntercalibration_Stat159: 1.60638231e-05 syst_JES_EtaIntercalibration_Stat16: 0.0 syst_JES_EtaIntercalibration_Stat160: 0.0 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 - syst_JES_EtaIntercalibration_Stat164: 3.9871809590235554e-05 + syst_JES_EtaIntercalibration_Stat164: 3.98718096e-05 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 - syst_JES_EtaIntercalibration_Stat168: 1.7441751632218595e-06 - syst_JES_EtaIntercalibration_Stat169: 0.001230352949360467 + syst_JES_EtaIntercalibration_Stat168: 1.74417516e-06 + syst_JES_EtaIntercalibration_Stat169: 1.23035295e-03 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 0.01335289364707141 - syst_JES_EtaIntercalibration_Stat171: 0.011182269939506915 - syst_JES_EtaIntercalibration_Stat172: 0.0007691513635169609 - syst_JES_EtaIntercalibration_Stat173: 0.0008385723984844267 - syst_JES_EtaIntercalibration_Stat174: 0.010966139920227172 - syst_JES_EtaIntercalibration_Stat175: 0.012450842330942914 - syst_JES_EtaIntercalibration_Stat176: 0.0015536258622976123 - syst_JES_EtaIntercalibration_Stat177: 7.934707072097873e-05 + syst_JES_EtaIntercalibration_Stat170: 1.33528936e-02 + syst_JES_EtaIntercalibration_Stat171: 1.11822699e-02 + syst_JES_EtaIntercalibration_Stat172: 7.69151364e-04 + syst_JES_EtaIntercalibration_Stat173: 8.38572398e-04 + syst_JES_EtaIntercalibration_Stat174: 1.09661399e-02 + syst_JES_EtaIntercalibration_Stat175: 1.24508423e-02 + syst_JES_EtaIntercalibration_Stat176: 1.55362586e-03 + syst_JES_EtaIntercalibration_Stat177: 7.93470707e-05 syst_JES_EtaIntercalibration_Stat178: 0.0 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 @@ -16526,17 +16526,17 @@ bins: syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 syst_JES_EtaIntercalibration_Stat184: 0.0 - syst_JES_EtaIntercalibration_Stat185: 7.1568339368746e-05 - syst_JES_EtaIntercalibration_Stat186: 0.002671275116868347 - syst_JES_EtaIntercalibration_Stat187: 0.03359361099971243 - syst_JES_EtaIntercalibration_Stat188: 0.026326701274561534 - syst_JES_EtaIntercalibration_Stat189: 0.0017747160336234076 + syst_JES_EtaIntercalibration_Stat185: 7.15683394e-05 + syst_JES_EtaIntercalibration_Stat186: 2.67127512e-03 + syst_JES_EtaIntercalibration_Stat187: 3.35936110e-02 + syst_JES_EtaIntercalibration_Stat188: 2.63267013e-02 + syst_JES_EtaIntercalibration_Stat189: 1.77471603e-03 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 0.0019603188516157262 - syst_JES_EtaIntercalibration_Stat191: 0.02424904534203357 - syst_JES_EtaIntercalibration_Stat192: 0.03317793054124985 - syst_JES_EtaIntercalibration_Stat193: 0.0038044249236908324 - syst_JES_EtaIntercalibration_Stat194: 3.3584465158760525e-05 + syst_JES_EtaIntercalibration_Stat190: 1.96031885e-03 + syst_JES_EtaIntercalibration_Stat191: 2.42490453e-02 + syst_JES_EtaIntercalibration_Stat192: 3.31779305e-02 + syst_JES_EtaIntercalibration_Stat193: 3.80442492e-03 + syst_JES_EtaIntercalibration_Stat194: 3.35844652e-05 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 syst_JES_EtaIntercalibration_Stat197: 0.0 @@ -16544,70 +16544,70 @@ bins: syst_JES_EtaIntercalibration_Stat199: 0.0 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 8.575383548273511e-06 - syst_JES_EtaIntercalibration_Stat201: 0.000570125959766787 - syst_JES_EtaIntercalibration_Stat202: 0.015018590979183101 - syst_JES_EtaIntercalibration_Stat203: 0.011393644675870843 - syst_JES_EtaIntercalibration_Stat204: 0.0007956089790217303 - syst_JES_EtaIntercalibration_Stat205: 0.000829392529204357 - syst_JES_EtaIntercalibration_Stat206: 0.011472893826319495 - syst_JES_EtaIntercalibration_Stat207: 0.012792922144686098 - syst_JES_EtaIntercalibration_Stat208: 0.001526843904104149 - syst_JES_EtaIntercalibration_Stat209: 1.8688737751651393e-05 + syst_JES_EtaIntercalibration_Stat200: 8.57538355e-06 + syst_JES_EtaIntercalibration_Stat201: 5.70125960e-04 + syst_JES_EtaIntercalibration_Stat202: 1.50185910e-02 + syst_JES_EtaIntercalibration_Stat203: 1.13936447e-02 + syst_JES_EtaIntercalibration_Stat204: 7.95608979e-04 + syst_JES_EtaIntercalibration_Stat205: 8.29392529e-04 + syst_JES_EtaIntercalibration_Stat206: 1.14728938e-02 + syst_JES_EtaIntercalibration_Stat207: 1.27929221e-02 + syst_JES_EtaIntercalibration_Stat208: 1.52684390e-03 + syst_JES_EtaIntercalibration_Stat209: 1.86887378e-05 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 syst_JES_EtaIntercalibration_Stat211: 0.0 syst_JES_EtaIntercalibration_Stat212: 0.0 - syst_JES_EtaIntercalibration_Stat213: 6.208536119730641e-06 - syst_JES_EtaIntercalibration_Stat214: 0.00015307350064593155 - syst_JES_EtaIntercalibration_Stat215: 0.001824735560978631 - syst_JES_EtaIntercalibration_Stat216: 0.0014733968262148525 - syst_JES_EtaIntercalibration_Stat217: 0.00020249131018391876 - syst_JES_EtaIntercalibration_Stat218: 0.0002039368529716981 - syst_JES_EtaIntercalibration_Stat219: 0.0012340245135328551 + syst_JES_EtaIntercalibration_Stat213: 6.20853612e-06 + syst_JES_EtaIntercalibration_Stat214: 1.53073501e-04 + syst_JES_EtaIntercalibration_Stat215: 1.82473556e-03 + syst_JES_EtaIntercalibration_Stat216: 1.47339683e-03 + syst_JES_EtaIntercalibration_Stat217: 2.02491310e-04 + syst_JES_EtaIntercalibration_Stat218: 2.03936853e-04 + syst_JES_EtaIntercalibration_Stat219: 1.23402451e-03 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 0.001128874169250054 - syst_JES_EtaIntercalibration_Stat221: 0.00010458683509409776 - syst_JES_EtaIntercalibration_Stat222: 1.542872136633493e-05 + syst_JES_EtaIntercalibration_Stat220: 1.12887417e-03 + syst_JES_EtaIntercalibration_Stat221: 1.04586835e-04 + syst_JES_EtaIntercalibration_Stat222: 1.54287214e-05 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 - syst_JES_EtaIntercalibration_Stat225: 3.0917106915104456e-11 - syst_JES_EtaIntercalibration_Stat226: 2.135488936988436e-05 - syst_JES_EtaIntercalibration_Stat227: 0.0002732161186679878 - syst_JES_EtaIntercalibration_Stat228: 0.00032320168239042326 - syst_JES_EtaIntercalibration_Stat229: 1.9303706250355207e-05 + syst_JES_EtaIntercalibration_Stat225: 3.09171069e-11 + syst_JES_EtaIntercalibration_Stat226: 2.13548894e-05 + syst_JES_EtaIntercalibration_Stat227: 2.73216119e-04 + syst_JES_EtaIntercalibration_Stat228: 3.23201682e-04 + syst_JES_EtaIntercalibration_Stat229: 1.93037063e-05 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 2.593607637812387e-05 - syst_JES_EtaIntercalibration_Stat231: 0.00039382547847999883 - syst_JES_EtaIntercalibration_Stat232: 0.0002946204125650496 - syst_JES_EtaIntercalibration_Stat233: 4.6903581814185576e-05 - syst_JES_EtaIntercalibration_Stat234: 2.027364871547849e-07 + syst_JES_EtaIntercalibration_Stat230: 2.59360764e-05 + syst_JES_EtaIntercalibration_Stat231: 3.93825478e-04 + syst_JES_EtaIntercalibration_Stat232: 2.94620413e-04 + syst_JES_EtaIntercalibration_Stat233: 4.69035818e-05 + syst_JES_EtaIntercalibration_Stat234: 2.02736487e-07 syst_JES_EtaIntercalibration_Stat235: 0.0 syst_JES_EtaIntercalibration_Stat236: 0.0 - syst_JES_EtaIntercalibration_Stat237: 1.5217840410189613e-10 - syst_JES_EtaIntercalibration_Stat238: 6.39442640117157e-07 - syst_JES_EtaIntercalibration_Stat239: 3.545287073002693e-08 + syst_JES_EtaIntercalibration_Stat237: 1.52178404e-10 + syst_JES_EtaIntercalibration_Stat238: 6.39442640e-07 + syst_JES_EtaIntercalibration_Stat239: 3.54528707e-08 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 - syst_JES_EtaIntercalibration_Stat241: 2.706329386826371e-10 - syst_JES_EtaIntercalibration_Stat242: 8.336579919247462e-08 - syst_JES_EtaIntercalibration_Stat243: 5.694698121224249e-08 - syst_JES_EtaIntercalibration_Stat244: 1.3631239855567065e-16 - syst_JES_EtaIntercalibration_Stat245: 7.945783079722225e-14 + syst_JES_EtaIntercalibration_Stat241: 2.70632939e-10 + syst_JES_EtaIntercalibration_Stat242: 8.33657992e-08 + syst_JES_EtaIntercalibration_Stat243: 5.69469812e-08 + syst_JES_EtaIntercalibration_Stat244: 1.36312399e-16 + syst_JES_EtaIntercalibration_Stat245: 7.94578308e-14 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 syst_JES_EtaIntercalibration_Stat27: 0.0 - syst_JES_EtaIntercalibration_Stat28: 4.1318072014555565e-13 - syst_JES_EtaIntercalibration_Stat29: 1.1627249574598457e-09 + syst_JES_EtaIntercalibration_Stat28: 4.13180720e-13 + syst_JES_EtaIntercalibration_Stat29: 1.16272496e-09 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 4.349202123091085e-08 - syst_JES_EtaIntercalibration_Stat31: 2.1694702118259197e-08 - syst_JES_EtaIntercalibration_Stat32: 4.9218779952371846e-12 - syst_JES_EtaIntercalibration_Stat33: 3.516124196825249e-10 - syst_JES_EtaIntercalibration_Stat34: 3.5860803145914065e-05 - syst_JES_EtaIntercalibration_Stat35: 5.893650819794871e-06 - syst_JES_EtaIntercalibration_Stat36: 1.0698975513415992e-08 - syst_JES_EtaIntercalibration_Stat37: 3.0163664813812e-13 + syst_JES_EtaIntercalibration_Stat30: 4.34920212e-08 + syst_JES_EtaIntercalibration_Stat31: 2.16947021e-08 + syst_JES_EtaIntercalibration_Stat32: 4.92187800e-12 + syst_JES_EtaIntercalibration_Stat33: 3.51612420e-10 + syst_JES_EtaIntercalibration_Stat34: 3.58608031e-05 + syst_JES_EtaIntercalibration_Stat35: 5.89365082e-06 + syst_JES_EtaIntercalibration_Stat36: 1.06989755e-08 + syst_JES_EtaIntercalibration_Stat37: 3.01636648e-13 syst_JES_EtaIntercalibration_Stat38: 0.0 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 @@ -16622,20 +16622,20 @@ bins: syst_JES_EtaIntercalibration_Stat48: 0.0 syst_JES_EtaIntercalibration_Stat49: 0.0 syst_JES_EtaIntercalibration_Stat5: 0.0 - syst_JES_EtaIntercalibration_Stat50: 4.1855007764901917e-13 - syst_JES_EtaIntercalibration_Stat51: 3.1459087220547258e-09 - syst_JES_EtaIntercalibration_Stat52: 1.3583090185962837e-06 - syst_JES_EtaIntercalibration_Stat53: 2.826704206315192e-07 - syst_JES_EtaIntercalibration_Stat54: 1.1574578815231248e-09 - syst_JES_EtaIntercalibration_Stat55: 8.964952941710012e-07 - syst_JES_EtaIntercalibration_Stat56: 3.547226471852446e-05 - syst_JES_EtaIntercalibration_Stat57: 4.8240302630347376e-05 - syst_JES_EtaIntercalibration_Stat58: 1.5691828287360272e-08 - syst_JES_EtaIntercalibration_Stat59: 1.579547836407622e-12 + syst_JES_EtaIntercalibration_Stat50: 4.18550078e-13 + syst_JES_EtaIntercalibration_Stat51: 3.14590872e-09 + syst_JES_EtaIntercalibration_Stat52: 1.35830902e-06 + syst_JES_EtaIntercalibration_Stat53: 2.82670421e-07 + syst_JES_EtaIntercalibration_Stat54: 1.15745788e-09 + syst_JES_EtaIntercalibration_Stat55: 8.96495294e-07 + syst_JES_EtaIntercalibration_Stat56: 3.54722647e-05 + syst_JES_EtaIntercalibration_Stat57: 4.82403026e-05 + syst_JES_EtaIntercalibration_Stat58: 1.56918283e-08 + syst_JES_EtaIntercalibration_Stat59: 1.57954784e-12 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 1.9026578121144116e-11 - syst_JES_EtaIntercalibration_Stat62: 1.9026578121144116e-11 + syst_JES_EtaIntercalibration_Stat61: 1.90265781e-11 + syst_JES_EtaIntercalibration_Stat62: 1.90265781e-11 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 @@ -16643,223 +16643,223 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 4.1318072014555565e-13 + syst_JES_EtaIntercalibration_Stat7: 4.13180720e-13 syst_JES_EtaIntercalibration_Stat70: 0.0 syst_JES_EtaIntercalibration_Stat71: 0.0 - syst_JES_EtaIntercalibration_Stat72: 1.0179262596082291e-10 - syst_JES_EtaIntercalibration_Stat73: 3.169730392762135e-06 - syst_JES_EtaIntercalibration_Stat74: 0.00010387488050534643 - syst_JES_EtaIntercalibration_Stat75: 7.403934275099962e-05 - syst_JES_EtaIntercalibration_Stat76: 1.3735688579390552e-07 - syst_JES_EtaIntercalibration_Stat77: 7.687757812750087e-07 - syst_JES_EtaIntercalibration_Stat78: 3.5713785503639904e-05 - syst_JES_EtaIntercalibration_Stat79: 0.00010150643464825273 - syst_JES_EtaIntercalibration_Stat8: 6.18112956909981e-10 - syst_JES_EtaIntercalibration_Stat80: 1.4792832612626968e-07 - syst_JES_EtaIntercalibration_Stat81: 5.1615114065552536e-12 - syst_JES_EtaIntercalibration_Stat82: 1.9026578121144116e-11 - syst_JES_EtaIntercalibration_Stat83: 1.9026578121144116e-11 - syst_JES_EtaIntercalibration_Stat84: 1.9026578121144116e-11 + syst_JES_EtaIntercalibration_Stat72: 1.01792626e-10 + syst_JES_EtaIntercalibration_Stat73: 3.16973039e-06 + syst_JES_EtaIntercalibration_Stat74: 1.03874881e-04 + syst_JES_EtaIntercalibration_Stat75: 7.40393428e-05 + syst_JES_EtaIntercalibration_Stat76: 1.37356886e-07 + syst_JES_EtaIntercalibration_Stat77: 7.68775781e-07 + syst_JES_EtaIntercalibration_Stat78: 3.57137855e-05 + syst_JES_EtaIntercalibration_Stat79: 1.01506435e-04 + syst_JES_EtaIntercalibration_Stat8: 6.18112957e-10 + syst_JES_EtaIntercalibration_Stat80: 1.47928326e-07 + syst_JES_EtaIntercalibration_Stat81: 5.16151141e-12 + syst_JES_EtaIntercalibration_Stat82: 1.90265781e-11 + syst_JES_EtaIntercalibration_Stat83: 1.90265781e-11 + syst_JES_EtaIntercalibration_Stat84: 1.90265781e-11 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 syst_JES_EtaIntercalibration_Stat89: 0.0 - syst_JES_EtaIntercalibration_Stat9: 1.647575709944766e-10 + syst_JES_EtaIntercalibration_Stat9: 1.64757571e-10 syst_JES_EtaIntercalibration_Stat90: 0.0 syst_JES_EtaIntercalibration_Stat91: 0.0 syst_JES_EtaIntercalibration_Stat92: 0.0 - syst_JES_EtaIntercalibration_Stat93: 9.438810875846597e-11 - syst_JES_EtaIntercalibration_Stat94: 4.829251247087897e-06 - syst_JES_EtaIntercalibration_Stat95: 0.0001387386726907822 - syst_JES_EtaIntercalibration_Stat96: 8.362834686875019e-05 - syst_JES_EtaIntercalibration_Stat97: 1.699599307976736e-06 - syst_JES_EtaIntercalibration_Stat98: 4.2365206242859245e-07 - syst_JES_EtaIntercalibration_Stat99: 6.582286684731987e-05 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.036516660238855365 - syst_JES_Flavour_Comp: 0.11790381673211431 - syst_JES_Gjet_Generator: 0.37803787597937855 - syst_JES_Gjet_OOC: 0.27077593596920685 - syst_JES_Gjet_Purity: 0.094427796754981 - syst_JES_Gjet_Stat1: 0.00012635117757662568 - syst_JES_Gjet_Stat10: 0.017640022675722386 - syst_JES_Gjet_Stat11: 0.03107005149657786 - syst_JES_Gjet_Stat12: 0.05727324506259446 - syst_JES_Gjet_Stat13: 0.02625081855866594 - syst_JES_Gjet_Stat14: 0.013116409074133058 - syst_JES_Gjet_Stat15: 0.00041574450711945673 - syst_JES_Gjet_Stat2: 3.921028819072872e-19 - syst_JES_Gjet_Stat3: 0.0004898908546974439 - syst_JES_Gjet_Stat4: 0.000921509907705826 - syst_JES_Gjet_Stat5: 0.0008198215476553417 - syst_JES_Gjet_Stat6: 0.0025347917074189743 - syst_JES_Gjet_Stat7: 0.0035437388095061408 - syst_JES_Gjet_Stat8: 0.002952415070751401 - syst_JES_Gjet_Stat9: 0.0072210448689922985 - syst_JES_Gjet_Veto: 0.1391235913675319 - syst_JES_Gjet_dPhi: 0.020372974132413752 - syst_JES_LArESZee: 0.516584850242436 - syst_JES_LArEsmear: 0.03938251206754084 - syst_JES_LAr_JVT: 0.05449219829480179 - syst_JES_MJB_Alpha: 0.0027782981751424745 - syst_JES_MJB_Asym: 0.014808320929463948 - syst_JES_MJB_Beta: 0.0010350176556465113 - syst_JES_MJB_Stat1: 0.0022628749702093575 - syst_JES_MJB_Stat10: 2.3634343036141282e-05 - syst_JES_MJB_Stat11: 3.387021653415087e-06 - syst_JES_MJB_Stat12: 3.161289131054406e-06 - syst_JES_MJB_Stat13: 2.1737246197107395e-06 - syst_JES_MJB_Stat14: 2.903360251501698e-12 - syst_JES_MJB_Stat15: 1.1255183905649876e-09 - syst_JES_MJB_Stat16: 2.917885114119472e-14 - syst_JES_MJB_Stat2: 0.0007706824378432404 - syst_JES_MJB_Stat3: 0.0024401874415708315 - syst_JES_MJB_Stat4: 0.0010900115721862774 - syst_JES_MJB_Stat5: 0.00028441611640121593 - syst_JES_MJB_Stat6: 0.0004952794492254516 - syst_JES_MJB_Stat7: 0.0002634444751917261 - syst_JES_MJB_Stat8: 1.0844114505485223e-09 - syst_JES_MJB_Stat9: 1.0650099189678941e-18 - syst_JES_MJB_Threshold: 0.018263408088305972 - syst_JES_Pileup_MuOffset: 0.03289336825258247 - syst_JES_Pileup_NPVOffset: 0.04115235442839207 - syst_JES_Pileup_Pt_term: 0.058949797921621416 - syst_JES_PunchThrough_MC15: 0.00022555657478335673 + syst_JES_EtaIntercalibration_Stat93: 9.43881088e-11 + syst_JES_EtaIntercalibration_Stat94: 4.82925125e-06 + syst_JES_EtaIntercalibration_Stat95: 1.38738673e-04 + syst_JES_EtaIntercalibration_Stat96: 8.36283469e-05 + syst_JES_EtaIntercalibration_Stat97: 1.69959931e-06 + syst_JES_EtaIntercalibration_Stat98: 4.23652062e-07 + syst_JES_EtaIntercalibration_Stat99: 6.58228668e-05 + syst_JES_EtaIntercalibration_TotalStat_MJB: 3.65166602e-02 + syst_JES_Flavour_Comp: 1.17903817e-01 + syst_JES_Gjet_Generator: 3.78037876e-01 + syst_JES_Gjet_OOC: 2.70775936e-01 + syst_JES_Gjet_Purity: 9.44277968e-02 + syst_JES_Gjet_Stat1: 1.26351178e-04 + syst_JES_Gjet_Stat10: 1.76400227e-02 + syst_JES_Gjet_Stat11: 3.10700515e-02 + syst_JES_Gjet_Stat12: 5.72732451e-02 + syst_JES_Gjet_Stat13: 2.62508186e-02 + syst_JES_Gjet_Stat14: 1.31164091e-02 + syst_JES_Gjet_Stat15: 4.15744507e-04 + syst_JES_Gjet_Stat2: 3.92102882e-19 + syst_JES_Gjet_Stat3: 4.89890855e-04 + syst_JES_Gjet_Stat4: 9.21509908e-04 + syst_JES_Gjet_Stat5: 8.19821548e-04 + syst_JES_Gjet_Stat6: 2.53479171e-03 + syst_JES_Gjet_Stat7: 3.54373881e-03 + syst_JES_Gjet_Stat8: 2.95241507e-03 + syst_JES_Gjet_Stat9: 7.22104487e-03 + syst_JES_Gjet_Veto: 1.39123591e-01 + syst_JES_Gjet_dPhi: 2.03729741e-02 + syst_JES_LArESZee: 5.16584850e-01 + syst_JES_LArEsmear: 3.93825121e-02 + syst_JES_LAr_JVT: 5.44921983e-02 + syst_JES_MJB_Alpha: 2.77829818e-03 + syst_JES_MJB_Asym: 1.48083209e-02 + syst_JES_MJB_Beta: 1.03501766e-03 + syst_JES_MJB_Stat1: 2.26287497e-03 + syst_JES_MJB_Stat10: 2.36343430e-05 + syst_JES_MJB_Stat11: 3.38702165e-06 + syst_JES_MJB_Stat12: 3.16128913e-06 + syst_JES_MJB_Stat13: 2.17372462e-06 + syst_JES_MJB_Stat14: 2.90336025e-12 + syst_JES_MJB_Stat15: 1.12551839e-09 + syst_JES_MJB_Stat16: 2.91788511e-14 + syst_JES_MJB_Stat2: 7.70682438e-04 + syst_JES_MJB_Stat3: 2.44018744e-03 + syst_JES_MJB_Stat4: 1.09001157e-03 + syst_JES_MJB_Stat5: 2.84416116e-04 + syst_JES_MJB_Stat6: 4.95279449e-04 + syst_JES_MJB_Stat7: 2.63444475e-04 + syst_JES_MJB_Stat8: 1.08441145e-09 + syst_JES_MJB_Stat9: 1.06500992e-18 + syst_JES_MJB_Threshold: 1.82634081e-02 + syst_JES_Pileup_MuOffset: 3.28933683e-02 + syst_JES_Pileup_NPVOffset: 4.11523544e-02 + syst_JES_Pileup_Pt_term: 5.89497979e-02 + syst_JES_PunchThrough_MC15: 2.25556575e-04 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.33844494382395496 - syst_JES_Zjet_MuScale: 0.021878850518251638 - syst_JES_Zjet_MuSmearID: 0.003526657447215422 - syst_JES_Zjet_MuSmearMS: 0.07117762991277526 - syst_JES_Zjet_OOC: 0.12600536208828575 - syst_JES_Zjet_Stat1: 0.001897160246262819 - syst_JES_Zjet_Stat10: 0.014170166124643705 - syst_JES_Zjet_Stat11: 0.014870060524422893 - syst_JES_Zjet_Stat12: 0.10987425904187022 - syst_JES_Zjet_Stat13: 0.056304584848838025 - syst_JES_Zjet_Stat2: 0.00031106968684685427 - syst_JES_Zjet_Stat3: 0.0008253253782599926 - syst_JES_Zjet_Stat4: 0.0009401320691796446 - syst_JES_Zjet_Stat5: 0.0017887017414873843 - syst_JES_Zjet_Stat6: 0.0017224914368437366 - syst_JES_Zjet_Stat7: 0.0018022702350091676 - syst_JES_Zjet_Stat8: 0.002326297272491201 - syst_JES_Zjet_Stat9: 0.005015217143853295 - syst_JES_Zjet_Veto: 0.026701331427477545 - syst_JES_Zjet_dPhi: 0.02240401749686873 + syst_JES_Zjet_MC: 3.38444944e-01 + syst_JES_Zjet_MuScale: 2.18788505e-02 + syst_JES_Zjet_MuSmearID: 3.52665745e-03 + syst_JES_Zjet_MuSmearMS: 7.11776299e-02 + syst_JES_Zjet_OOC: 1.26005362e-01 + syst_JES_Zjet_Stat1: 1.89716025e-03 + syst_JES_Zjet_Stat10: 1.41701661e-02 + syst_JES_Zjet_Stat11: 1.48700605e-02 + syst_JES_Zjet_Stat12: 1.09874259e-01 + syst_JES_Zjet_Stat13: 5.63045848e-02 + syst_JES_Zjet_Stat2: 3.11069687e-04 + syst_JES_Zjet_Stat3: 8.25325378e-04 + syst_JES_Zjet_Stat4: 9.40132069e-04 + syst_JES_Zjet_Stat5: 1.78870174e-03 + syst_JES_Zjet_Stat6: 1.72249144e-03 + syst_JES_Zjet_Stat7: 1.80227024e-03 + syst_JES_Zjet_Stat8: 2.32629727e-03 + syst_JES_Zjet_Stat9: 5.01521714e-03 + syst_JES_Zjet_Veto: 2.67013314e-02 + syst_JES_Zjet_dPhi: 2.24040175e-02 syst_PRW: 0.01584 syst_Unfolding_bias: 0.01646 - syst_cleaning: 0.11049618126885653 + syst_cleaning: 1.10496181e-01 syst_lumi: 0.4304 - syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.027173936041729397 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.10449701287596694 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 0.07343007285846855 + syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 2.71739360e-02 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.04497013e-01 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 7.34300729e-02 syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 0.28438946446730407 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.035624592629249816 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.06472671241458197 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 2.84389464e-01 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 3.56245926e-02 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 6.47267124e-02 - stat: 0.08048 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.05581879522168138 - syst_JER_NP1: 0.0026985123679538698 - syst_JER_NP2: 0.007115265472911042 - syst_JER_NP3: 0.011980322115869841 - syst_JER_NP4: 0.0061753342217243596 - syst_JER_NP5: 0.0034652427043426557 - syst_JER_NP6: 7.620157527897707e-06 - syst_JER_NP7: 0.007357500033978934 - syst_JER_NP8: 0.009137640067325918 - syst_JES_EtaIntercalibration_Modelling: 0.11147080738919944 - syst_JES_EtaIntercalibration_NonClosure: 4.602058995710507e-06 + syst_JER_NP0: 5.58187952e-02 + syst_JER_NP1: 2.69851237e-03 + syst_JER_NP2: 7.11526547e-03 + syst_JER_NP3: 1.19803221e-02 + syst_JER_NP4: 6.17533422e-03 + syst_JER_NP5: 3.46524270e-03 + syst_JER_NP6: 7.62015753e-06 + syst_JER_NP7: 7.35750003e-03 + syst_JER_NP8: 9.13764007e-03 + syst_JES_EtaIntercalibration_Modelling: 1.11470807e-01 + syst_JES_EtaIntercalibration_NonClosure: 4.60205900e-06 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 1.4876111950035869e-05 - syst_JES_EtaIntercalibration_Stat101: 2.1214820876764433e-08 - syst_JES_EtaIntercalibration_Stat102: 7.033547689727781e-12 - syst_JES_EtaIntercalibration_Stat103: 2.6283871004857713e-12 - syst_JES_EtaIntercalibration_Stat104: 2.6283871004857713e-12 - syst_JES_EtaIntercalibration_Stat105: 2.6283871004857713e-12 + syst_JES_EtaIntercalibration_Stat100: 1.48761120e-05 + syst_JES_EtaIntercalibration_Stat101: 2.12148209e-08 + syst_JES_EtaIntercalibration_Stat102: 7.03354769e-12 + syst_JES_EtaIntercalibration_Stat103: 2.62838710e-12 + syst_JES_EtaIntercalibration_Stat104: 2.62838710e-12 + syst_JES_EtaIntercalibration_Stat105: 2.62838710e-12 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 4.128343099840419e-07 - syst_JES_EtaIntercalibration_Stat111: 4.128343099840419e-07 + syst_JES_EtaIntercalibration_Stat110: 4.12834310e-07 + syst_JES_EtaIntercalibration_Stat111: 4.12834310e-07 syst_JES_EtaIntercalibration_Stat112: 0.0 - syst_JES_EtaIntercalibration_Stat113: 9.356468951580423e-10 - syst_JES_EtaIntercalibration_Stat114: 0.00010594594231021783 - syst_JES_EtaIntercalibration_Stat115: 0.0001153087416460695 - syst_JES_EtaIntercalibration_Stat116: 0.00011602347748085299 - syst_JES_EtaIntercalibration_Stat117: 3.759051476104045e-05 - syst_JES_EtaIntercalibration_Stat118: 1.918516345382546e-05 - syst_JES_EtaIntercalibration_Stat119: 0.00014428432867085738 - syst_JES_EtaIntercalibration_Stat12: 1.357042816856286e-07 - syst_JES_EtaIntercalibration_Stat120: 0.00012566209163864813 - syst_JES_EtaIntercalibration_Stat121: 2.879784639083277e-05 - syst_JES_EtaIntercalibration_Stat122: 1.2858157624935036e-09 - syst_JES_EtaIntercalibration_Stat123: 2.6283871004857713e-12 - syst_JES_EtaIntercalibration_Stat124: 2.6283871004857713e-12 - syst_JES_EtaIntercalibration_Stat125: 2.6283871004857713e-12 + syst_JES_EtaIntercalibration_Stat113: 9.35646895e-10 + syst_JES_EtaIntercalibration_Stat114: 1.05945942e-04 + syst_JES_EtaIntercalibration_Stat115: 1.15308742e-04 + syst_JES_EtaIntercalibration_Stat116: 1.16023477e-04 + syst_JES_EtaIntercalibration_Stat117: 3.75905148e-05 + syst_JES_EtaIntercalibration_Stat118: 1.91851635e-05 + syst_JES_EtaIntercalibration_Stat119: 1.44284329e-04 + syst_JES_EtaIntercalibration_Stat12: 1.35704282e-07 + syst_JES_EtaIntercalibration_Stat120: 1.25662092e-04 + syst_JES_EtaIntercalibration_Stat121: 2.87978464e-05 + syst_JES_EtaIntercalibration_Stat122: 1.28581576e-09 + syst_JES_EtaIntercalibration_Stat123: 2.62838710e-12 + syst_JES_EtaIntercalibration_Stat124: 2.62838710e-12 + syst_JES_EtaIntercalibration_Stat125: 2.62838710e-12 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 1.9191122947863163e-05 - syst_JES_EtaIntercalibration_Stat129: 1.9057486617271964e-05 - syst_JES_EtaIntercalibration_Stat13: 1.7522243825212227e-07 - syst_JES_EtaIntercalibration_Stat130: 4.128343099840419e-07 - syst_JES_EtaIntercalibration_Stat131: 3.0232946846114754e-13 - syst_JES_EtaIntercalibration_Stat132: 6.1642518282330905e-06 - syst_JES_EtaIntercalibration_Stat133: 0.00010590302498040367 - syst_JES_EtaIntercalibration_Stat134: 0.0018865218657624935 - syst_JES_EtaIntercalibration_Stat135: 0.0008948098946144929 - syst_JES_EtaIntercalibration_Stat136: 6.840982947464494e-05 - syst_JES_EtaIntercalibration_Stat137: 3.918078961685178e-05 - syst_JES_EtaIntercalibration_Stat138: 0.001053622864216604 - syst_JES_EtaIntercalibration_Stat139: 0.0016502583888591508 - syst_JES_EtaIntercalibration_Stat14: 5.428247230920862e-13 - syst_JES_EtaIntercalibration_Stat140: 0.00017986029995527083 - syst_JES_EtaIntercalibration_Stat141: 1.2557368478456191e-05 + syst_JES_EtaIntercalibration_Stat128: 1.91911229e-05 + syst_JES_EtaIntercalibration_Stat129: 1.90574866e-05 + syst_JES_EtaIntercalibration_Stat13: 1.75222438e-07 + syst_JES_EtaIntercalibration_Stat130: 4.12834310e-07 + syst_JES_EtaIntercalibration_Stat131: 3.02329468e-13 + syst_JES_EtaIntercalibration_Stat132: 6.16425183e-06 + syst_JES_EtaIntercalibration_Stat133: 1.05903025e-04 + syst_JES_EtaIntercalibration_Stat134: 1.88652187e-03 + syst_JES_EtaIntercalibration_Stat135: 8.94809895e-04 + syst_JES_EtaIntercalibration_Stat136: 6.84098295e-05 + syst_JES_EtaIntercalibration_Stat137: 3.91807896e-05 + syst_JES_EtaIntercalibration_Stat138: 1.05362286e-03 + syst_JES_EtaIntercalibration_Stat139: 1.65025839e-03 + syst_JES_EtaIntercalibration_Stat14: 5.42824723e-13 + syst_JES_EtaIntercalibration_Stat140: 1.79860300e-04 + syst_JES_EtaIntercalibration_Stat141: 1.25573685e-05 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 2.6283871004857713e-12 - syst_JES_EtaIntercalibration_Stat144: 2.6283871004857713e-12 + syst_JES_EtaIntercalibration_Stat143: 2.62838710e-12 + syst_JES_EtaIntercalibration_Stat144: 2.62838710e-12 syst_JES_EtaIntercalibration_Stat145: 0.0 - syst_JES_EtaIntercalibration_Stat146: 1.9191122947863163e-05 - syst_JES_EtaIntercalibration_Stat147: 1.9057486617271964e-05 + syst_JES_EtaIntercalibration_Stat146: 1.91911229e-05 + syst_JES_EtaIntercalibration_Stat147: 1.90574866e-05 syst_JES_EtaIntercalibration_Stat148: 0.0 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 1.3716269438426034e-08 - syst_JES_EtaIntercalibration_Stat151: 0.00012229843948309397 - syst_JES_EtaIntercalibration_Stat152: 0.002528957295013105 - syst_JES_EtaIntercalibration_Stat153: 0.0020455630031851863 - syst_JES_EtaIntercalibration_Stat154: 0.00012579877093624563 - syst_JES_EtaIntercalibration_Stat155: 5.628984877400187e-05 - syst_JES_EtaIntercalibration_Stat156: 0.0015982277309570124 - syst_JES_EtaIntercalibration_Stat157: 0.002238574257758719 - syst_JES_EtaIntercalibration_Stat158: 0.00034350431449255484 - syst_JES_EtaIntercalibration_Stat159: 1.274458892404145e-05 + syst_JES_EtaIntercalibration_Stat150: 1.37162694e-08 + syst_JES_EtaIntercalibration_Stat151: 1.22298439e-04 + syst_JES_EtaIntercalibration_Stat152: 2.52895730e-03 + syst_JES_EtaIntercalibration_Stat153: 2.04556300e-03 + syst_JES_EtaIntercalibration_Stat154: 1.25798771e-04 + syst_JES_EtaIntercalibration_Stat155: 5.62898488e-05 + syst_JES_EtaIntercalibration_Stat156: 1.59822773e-03 + syst_JES_EtaIntercalibration_Stat157: 2.23857426e-03 + syst_JES_EtaIntercalibration_Stat158: 3.43504314e-04 + syst_JES_EtaIntercalibration_Stat159: 1.27445889e-05 syst_JES_EtaIntercalibration_Stat16: 0.0 syst_JES_EtaIntercalibration_Stat160: 0.0 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 - syst_JES_EtaIntercalibration_Stat164: 1.9191122947863163e-05 + syst_JES_EtaIntercalibration_Stat164: 1.91911229e-05 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 - syst_JES_EtaIntercalibration_Stat168: 5.2827549630850755e-09 - syst_JES_EtaIntercalibration_Stat169: 0.00044133737661793387 + syst_JES_EtaIntercalibration_Stat168: 5.28275496e-09 + syst_JES_EtaIntercalibration_Stat169: 4.41337377e-04 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 0.005645632648339776 - syst_JES_EtaIntercalibration_Stat171: 0.004544090998208552 - syst_JES_EtaIntercalibration_Stat172: 0.0003575404137996152 - syst_JES_EtaIntercalibration_Stat173: 0.0003865937401581232 - syst_JES_EtaIntercalibration_Stat174: 0.004361049644294364 - syst_JES_EtaIntercalibration_Stat175: 0.00513839206367128 - syst_JES_EtaIntercalibration_Stat176: 0.0005986969433695147 - syst_JES_EtaIntercalibration_Stat177: 5.268090434872963e-05 + syst_JES_EtaIntercalibration_Stat170: 5.64563265e-03 + syst_JES_EtaIntercalibration_Stat171: 4.54409100e-03 + syst_JES_EtaIntercalibration_Stat172: 3.57540414e-04 + syst_JES_EtaIntercalibration_Stat173: 3.86593740e-04 + syst_JES_EtaIntercalibration_Stat174: 4.36104964e-03 + syst_JES_EtaIntercalibration_Stat175: 5.13839206e-03 + syst_JES_EtaIntercalibration_Stat176: 5.98696943e-04 + syst_JES_EtaIntercalibration_Stat177: 5.26809043e-05 syst_JES_EtaIntercalibration_Stat178: 0.0 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 @@ -16868,17 +16868,17 @@ bins: syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 syst_JES_EtaIntercalibration_Stat184: 0.0 - syst_JES_EtaIntercalibration_Stat185: 3.339653764613931e-05 - syst_JES_EtaIntercalibration_Stat186: 0.0012944088254875274 - syst_JES_EtaIntercalibration_Stat187: 0.018109806045344606 - syst_JES_EtaIntercalibration_Stat188: 0.014304296557328502 - syst_JES_EtaIntercalibration_Stat189: 0.0009857477263478724 + syst_JES_EtaIntercalibration_Stat185: 3.33965376e-05 + syst_JES_EtaIntercalibration_Stat186: 1.29440883e-03 + syst_JES_EtaIntercalibration_Stat187: 1.81098060e-02 + syst_JES_EtaIntercalibration_Stat188: 1.43042966e-02 + syst_JES_EtaIntercalibration_Stat189: 9.85747726e-04 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 0.0009988338337781715 - syst_JES_EtaIntercalibration_Stat191: 0.012601359728219807 - syst_JES_EtaIntercalibration_Stat192: 0.01759609331641544 - syst_JES_EtaIntercalibration_Stat193: 0.0018890190576063546 - syst_JES_EtaIntercalibration_Stat194: 1.8922655072689983e-05 + syst_JES_EtaIntercalibration_Stat190: 9.98833834e-04 + syst_JES_EtaIntercalibration_Stat191: 1.26013597e-02 + syst_JES_EtaIntercalibration_Stat192: 1.75960933e-02 + syst_JES_EtaIntercalibration_Stat193: 1.88901906e-03 + syst_JES_EtaIntercalibration_Stat194: 1.89226551e-05 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 syst_JES_EtaIntercalibration_Stat197: 0.0 @@ -16886,70 +16886,70 @@ bins: syst_JES_EtaIntercalibration_Stat199: 0.0 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 1.2895118262350292e-05 - syst_JES_EtaIntercalibration_Stat201: 0.00042643266760415997 - syst_JES_EtaIntercalibration_Stat202: 0.011863227933408344 - syst_JES_EtaIntercalibration_Stat203: 0.00965670423850705 - syst_JES_EtaIntercalibration_Stat204: 0.0007977375069532585 - syst_JES_EtaIntercalibration_Stat205: 0.0005643021531059403 - syst_JES_EtaIntercalibration_Stat206: 0.009493457576141581 - syst_JES_EtaIntercalibration_Stat207: 0.010362725558461924 - syst_JES_EtaIntercalibration_Stat208: 0.0011776623486806394 - syst_JES_EtaIntercalibration_Stat209: 7.080926634276053e-06 + syst_JES_EtaIntercalibration_Stat200: 1.28951183e-05 + syst_JES_EtaIntercalibration_Stat201: 4.26432668e-04 + syst_JES_EtaIntercalibration_Stat202: 1.18632279e-02 + syst_JES_EtaIntercalibration_Stat203: 9.65670424e-03 + syst_JES_EtaIntercalibration_Stat204: 7.97737507e-04 + syst_JES_EtaIntercalibration_Stat205: 5.64302153e-04 + syst_JES_EtaIntercalibration_Stat206: 9.49345758e-03 + syst_JES_EtaIntercalibration_Stat207: 1.03627256e-02 + syst_JES_EtaIntercalibration_Stat208: 1.17766235e-03 + syst_JES_EtaIntercalibration_Stat209: 7.08092663e-06 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 syst_JES_EtaIntercalibration_Stat211: 0.0 syst_JES_EtaIntercalibration_Stat212: 0.0 - syst_JES_EtaIntercalibration_Stat213: 4.808173041811203e-06 - syst_JES_EtaIntercalibration_Stat214: 9.376380111748882e-05 - syst_JES_EtaIntercalibration_Stat215: 0.0010113174427448584 - syst_JES_EtaIntercalibration_Stat216: 0.0011152104050357492 - syst_JES_EtaIntercalibration_Stat217: 8.920685472961146e-05 - syst_JES_EtaIntercalibration_Stat218: 0.0001359603806261221 - syst_JES_EtaIntercalibration_Stat219: 0.00050168240949828 + syst_JES_EtaIntercalibration_Stat213: 4.80817304e-06 + syst_JES_EtaIntercalibration_Stat214: 9.37638011e-05 + syst_JES_EtaIntercalibration_Stat215: 1.01131744e-03 + syst_JES_EtaIntercalibration_Stat216: 1.11521041e-03 + syst_JES_EtaIntercalibration_Stat217: 8.92068547e-05 + syst_JES_EtaIntercalibration_Stat218: 1.35960381e-04 + syst_JES_EtaIntercalibration_Stat219: 5.01682409e-04 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 0.0006233432501439316 - syst_JES_EtaIntercalibration_Stat221: 8.620614406757793e-05 - syst_JES_EtaIntercalibration_Stat222: 9.676124069068152e-06 + syst_JES_EtaIntercalibration_Stat220: 6.23343250e-04 + syst_JES_EtaIntercalibration_Stat221: 8.62061441e-05 + syst_JES_EtaIntercalibration_Stat222: 9.67612407e-06 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 - syst_JES_EtaIntercalibration_Stat225: 2.6076024907949447e-09 - syst_JES_EtaIntercalibration_Stat226: 7.344934717204775e-05 - syst_JES_EtaIntercalibration_Stat227: 0.000488003347836877 - syst_JES_EtaIntercalibration_Stat228: 0.00047514096855564875 - syst_JES_EtaIntercalibration_Stat229: 4.596862843389934e-05 + syst_JES_EtaIntercalibration_Stat225: 2.60760249e-09 + syst_JES_EtaIntercalibration_Stat226: 7.34493472e-05 + syst_JES_EtaIntercalibration_Stat227: 4.88003348e-04 + syst_JES_EtaIntercalibration_Stat228: 4.75140969e-04 + syst_JES_EtaIntercalibration_Stat229: 4.59686284e-05 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 2.980829527279277e-05 - syst_JES_EtaIntercalibration_Stat231: 0.000805564466694007 - syst_JES_EtaIntercalibration_Stat232: 0.0005251125688840441 - syst_JES_EtaIntercalibration_Stat233: 2.5749564423500454e-05 - syst_JES_EtaIntercalibration_Stat234: 1.7276987308082857e-06 + syst_JES_EtaIntercalibration_Stat230: 2.98082953e-05 + syst_JES_EtaIntercalibration_Stat231: 8.05564467e-04 + syst_JES_EtaIntercalibration_Stat232: 5.25112569e-04 + syst_JES_EtaIntercalibration_Stat233: 2.57495644e-05 + syst_JES_EtaIntercalibration_Stat234: 1.72769873e-06 syst_JES_EtaIntercalibration_Stat235: 0.0 - syst_JES_EtaIntercalibration_Stat236: 2.6742864468863465e-42 - syst_JES_EtaIntercalibration_Stat237: 1.2947929680068549e-08 - syst_JES_EtaIntercalibration_Stat238: 3.257788014895997e-06 - syst_JES_EtaIntercalibration_Stat239: 5.186839500119509e-07 + syst_JES_EtaIntercalibration_Stat236: 2.67428645e-42 + syst_JES_EtaIntercalibration_Stat237: 1.29479297e-08 + syst_JES_EtaIntercalibration_Stat238: 3.25778801e-06 + syst_JES_EtaIntercalibration_Stat239: 5.18683950e-07 syst_JES_EtaIntercalibration_Stat24: 0.0 - syst_JES_EtaIntercalibration_Stat240: 2.6275210750819867e-42 - syst_JES_EtaIntercalibration_Stat241: 2.2525320752433248e-08 - syst_JES_EtaIntercalibration_Stat242: 5.604020409491743e-07 - syst_JES_EtaIntercalibration_Stat243: 2.5174345203152755e-06 - syst_JES_EtaIntercalibration_Stat244: 2.7513627078231617e-13 - syst_JES_EtaIntercalibration_Stat245: 2.906381255100576e-11 + syst_JES_EtaIntercalibration_Stat240: 2.62752108e-42 + syst_JES_EtaIntercalibration_Stat241: 2.25253208e-08 + syst_JES_EtaIntercalibration_Stat242: 5.60402041e-07 + syst_JES_EtaIntercalibration_Stat243: 2.51743452e-06 + syst_JES_EtaIntercalibration_Stat244: 2.75136271e-13 + syst_JES_EtaIntercalibration_Stat245: 2.90638126e-11 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 syst_JES_EtaIntercalibration_Stat27: 0.0 - syst_JES_EtaIntercalibration_Stat28: 5.50792156806903e-14 - syst_JES_EtaIntercalibration_Stat29: 1.326813250640421e-10 + syst_JES_EtaIntercalibration_Stat28: 5.50792157e-14 + syst_JES_EtaIntercalibration_Stat29: 1.32681325e-10 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 5.531174287617413e-09 - syst_JES_EtaIntercalibration_Stat31: 2.552507541614716e-09 - syst_JES_EtaIntercalibration_Stat32: 6.038306219462541e-13 - syst_JES_EtaIntercalibration_Stat33: 4.0018384534486144e-11 - syst_JES_EtaIntercalibration_Stat34: 2.209618104305583e-05 - syst_JES_EtaIntercalibration_Stat35: 1.0391784698857219e-05 - syst_JES_EtaIntercalibration_Stat36: 1.2655359193638083e-09 - syst_JES_EtaIntercalibration_Stat37: 4.0209559497711483e-14 + syst_JES_EtaIntercalibration_Stat30: 5.53117429e-09 + syst_JES_EtaIntercalibration_Stat31: 2.55250754e-09 + syst_JES_EtaIntercalibration_Stat32: 6.03830622e-13 + syst_JES_EtaIntercalibration_Stat33: 4.00183845e-11 + syst_JES_EtaIntercalibration_Stat34: 2.20961810e-05 + syst_JES_EtaIntercalibration_Stat35: 1.03917847e-05 + syst_JES_EtaIntercalibration_Stat36: 1.26553592e-09 + syst_JES_EtaIntercalibration_Stat37: 4.02095595e-14 syst_JES_EtaIntercalibration_Stat38: 0.0 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 @@ -16964,20 +16964,20 @@ bins: syst_JES_EtaIntercalibration_Stat48: 0.0 syst_JES_EtaIntercalibration_Stat49: 0.0 syst_JES_EtaIntercalibration_Stat5: 0.0 - syst_JES_EtaIntercalibration_Stat50: 5.579801676583138e-14 - syst_JES_EtaIntercalibration_Stat51: 3.5796389133542507e-10 - syst_JES_EtaIntercalibration_Stat52: 6.224450096193238e-08 - syst_JES_EtaIntercalibration_Stat53: 4.0133072047875926e-08 - syst_JES_EtaIntercalibration_Stat54: 1.3160453288166027e-10 - syst_JES_EtaIntercalibration_Stat55: 1.3467912966776811e-07 - syst_JES_EtaIntercalibration_Stat56: 2.2055599741384767e-05 - syst_JES_EtaIntercalibration_Stat57: 2.994647782878853e-05 - syst_JES_EtaIntercalibration_Stat58: 1.8599566742265797e-09 - syst_JES_EtaIntercalibration_Stat59: 2.0206093554915555e-13 + syst_JES_EtaIntercalibration_Stat50: 5.57980168e-14 + syst_JES_EtaIntercalibration_Stat51: 3.57963891e-10 + syst_JES_EtaIntercalibration_Stat52: 6.22445010e-08 + syst_JES_EtaIntercalibration_Stat53: 4.01330720e-08 + syst_JES_EtaIntercalibration_Stat54: 1.31604533e-10 + syst_JES_EtaIntercalibration_Stat55: 1.34679130e-07 + syst_JES_EtaIntercalibration_Stat56: 2.20555997e-05 + syst_JES_EtaIntercalibration_Stat57: 2.99464778e-05 + syst_JES_EtaIntercalibration_Stat58: 1.85995667e-09 + syst_JES_EtaIntercalibration_Stat59: 2.02060936e-13 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 2.6283871004857713e-12 - syst_JES_EtaIntercalibration_Stat62: 2.6283871004857713e-12 + syst_JES_EtaIntercalibration_Stat61: 2.62838710e-12 + syst_JES_EtaIntercalibration_Stat62: 2.62838710e-12 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 @@ -16985,223 +16985,223 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 5.50792156806903e-14 + syst_JES_EtaIntercalibration_Stat7: 5.50792157e-14 syst_JES_EtaIntercalibration_Stat70: 0.0 syst_JES_EtaIntercalibration_Stat71: 0.0 - syst_JES_EtaIntercalibration_Stat72: 1.1464444295298399e-11 - syst_JES_EtaIntercalibration_Stat73: 5.921784563953251e-07 - syst_JES_EtaIntercalibration_Stat74: 0.00012090647656349929 - syst_JES_EtaIntercalibration_Stat75: 7.81825969573792e-05 - syst_JES_EtaIntercalibration_Stat76: 2.1611332137330174e-08 - syst_JES_EtaIntercalibration_Stat77: 1.1688807410510277e-07 - syst_JES_EtaIntercalibration_Stat78: 2.1016053578157817e-05 - syst_JES_EtaIntercalibration_Stat79: 9.36758139476247e-05 - syst_JES_EtaIntercalibration_Stat8: 7.01597762254128e-11 - syst_JES_EtaIntercalibration_Stat80: 1.8753915059549566e-08 - syst_JES_EtaIntercalibration_Stat81: 6.446693105771362e-13 - syst_JES_EtaIntercalibration_Stat82: 2.6283871004857713e-12 - syst_JES_EtaIntercalibration_Stat83: 2.6283871004857713e-12 - syst_JES_EtaIntercalibration_Stat84: 2.6283871004857713e-12 + syst_JES_EtaIntercalibration_Stat72: 1.14644443e-11 + syst_JES_EtaIntercalibration_Stat73: 5.92178456e-07 + syst_JES_EtaIntercalibration_Stat74: 1.20906477e-04 + syst_JES_EtaIntercalibration_Stat75: 7.81825970e-05 + syst_JES_EtaIntercalibration_Stat76: 2.16113321e-08 + syst_JES_EtaIntercalibration_Stat77: 1.16888074e-07 + syst_JES_EtaIntercalibration_Stat78: 2.10160536e-05 + syst_JES_EtaIntercalibration_Stat79: 9.36758139e-05 + syst_JES_EtaIntercalibration_Stat8: 7.01597762e-11 + syst_JES_EtaIntercalibration_Stat80: 1.87539151e-08 + syst_JES_EtaIntercalibration_Stat81: 6.44669311e-13 + syst_JES_EtaIntercalibration_Stat82: 2.62838710e-12 + syst_JES_EtaIntercalibration_Stat83: 2.62838710e-12 + syst_JES_EtaIntercalibration_Stat84: 2.62838710e-12 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 syst_JES_EtaIntercalibration_Stat89: 0.0 - syst_JES_EtaIntercalibration_Stat9: 1.884315978677674e-11 + syst_JES_EtaIntercalibration_Stat9: 1.88431598e-11 syst_JES_EtaIntercalibration_Stat90: 0.0 syst_JES_EtaIntercalibration_Stat91: 0.0 syst_JES_EtaIntercalibration_Stat92: 0.0 - syst_JES_EtaIntercalibration_Stat93: 1.0609677221763158e-11 - syst_JES_EtaIntercalibration_Stat94: 8.336598270277873e-07 - syst_JES_EtaIntercalibration_Stat95: 0.0001325933010185658 - syst_JES_EtaIntercalibration_Stat96: 8.111662124990167e-05 - syst_JES_EtaIntercalibration_Stat97: 2.885534425557075e-07 - syst_JES_EtaIntercalibration_Stat98: 6.00525009366804e-08 - syst_JES_EtaIntercalibration_Stat99: 4.277086216982305e-05 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.02956995899557522 - syst_JES_Flavour_Comp: 0.09131803819618554 - syst_JES_Gjet_Generator: 0.2370062182728546 - syst_JES_Gjet_OOC: 0.17398450362029372 - syst_JES_Gjet_Purity: 0.060963371584911545 - syst_JES_Gjet_Stat1: 7.757415339531589e-05 - syst_JES_Gjet_Stat10: 0.008891524166305797 - syst_JES_Gjet_Stat11: 0.015373148669026785 - syst_JES_Gjet_Stat12: 0.03586206456689296 - syst_JES_Gjet_Stat13: 0.028608960134894803 - syst_JES_Gjet_Stat14: 0.007412806755878638 - syst_JES_Gjet_Stat15: 0.002672575162647442 - syst_JES_Gjet_Stat2: 5.568578701069062e-15 - syst_JES_Gjet_Stat3: 0.0003040186376042594 - syst_JES_Gjet_Stat4: 0.0005651240837196731 - syst_JES_Gjet_Stat5: 0.0005046288338967562 - syst_JES_Gjet_Stat6: 0.001655028927239642 - syst_JES_Gjet_Stat7: 0.0022906310811651883 - syst_JES_Gjet_Stat8: 0.0016961668748976325 - syst_JES_Gjet_Stat9: 0.003955763424422648 - syst_JES_Gjet_Veto: 0.10023176679576191 - syst_JES_Gjet_dPhi: 0.012688604996216093 - syst_JES_LArESZee: 0.33300355478583105 - syst_JES_LArEsmear: 0.02451544972053338 - syst_JES_LAr_JVT: 0.03372147535325226 - syst_JES_MJB_Alpha: 0.0020588158611201733 - syst_JES_MJB_Asym: 0.010033724470504459 - syst_JES_MJB_Beta: 0.0009005932877831147 - syst_JES_MJB_Stat1: 0.0010224616997716832 - syst_JES_MJB_Stat10: 7.218941919007246e-05 - syst_JES_MJB_Stat11: 7.19403259963944e-06 - syst_JES_MJB_Stat12: 5.9630587550916355e-06 - syst_JES_MJB_Stat13: 4.082759575095596e-06 - syst_JES_MJB_Stat14: 1.07257255232455e-09 - syst_JES_MJB_Stat15: 2.8430910555238993e-08 - syst_JES_MJB_Stat16: 1.0753150219782108e-11 - syst_JES_MJB_Stat2: 0.0004789231749456274 - syst_JES_MJB_Stat3: 0.0023291570900220533 - syst_JES_MJB_Stat4: 0.000990915459310228 - syst_JES_MJB_Stat5: 0.0005008556370851785 - syst_JES_MJB_Stat6: 0.0003194361005432717 - syst_JES_MJB_Stat7: 0.00022166409581773655 - syst_JES_MJB_Stat8: 9.165038039746479e-08 - syst_JES_MJB_Stat9: 1.5127262640676267e-14 - syst_JES_MJB_Threshold: 0.013782128890342015 - syst_JES_Pileup_MuOffset: 0.024827148446811206 - syst_JES_Pileup_NPVOffset: 0.028843550405593273 - syst_JES_Pileup_Pt_term: 0.03633859208885231 - syst_JES_PunchThrough_MC15: 0.000814730520049421 + syst_JES_EtaIntercalibration_Stat93: 1.06096772e-11 + syst_JES_EtaIntercalibration_Stat94: 8.33659827e-07 + syst_JES_EtaIntercalibration_Stat95: 1.32593301e-04 + syst_JES_EtaIntercalibration_Stat96: 8.11166212e-05 + syst_JES_EtaIntercalibration_Stat97: 2.88553443e-07 + syst_JES_EtaIntercalibration_Stat98: 6.00525009e-08 + syst_JES_EtaIntercalibration_Stat99: 4.27708622e-05 + syst_JES_EtaIntercalibration_TotalStat_MJB: 2.95699590e-02 + syst_JES_Flavour_Comp: 9.13180382e-02 + syst_JES_Gjet_Generator: 2.37006218e-01 + syst_JES_Gjet_OOC: 1.73984504e-01 + syst_JES_Gjet_Purity: 6.09633716e-02 + syst_JES_Gjet_Stat1: 7.75741534e-05 + syst_JES_Gjet_Stat10: 8.89152417e-03 + syst_JES_Gjet_Stat11: 1.53731487e-02 + syst_JES_Gjet_Stat12: 3.58620646e-02 + syst_JES_Gjet_Stat13: 2.86089601e-02 + syst_JES_Gjet_Stat14: 7.41280676e-03 + syst_JES_Gjet_Stat15: 2.67257516e-03 + syst_JES_Gjet_Stat2: 5.56857870e-15 + syst_JES_Gjet_Stat3: 3.04018638e-04 + syst_JES_Gjet_Stat4: 5.65124084e-04 + syst_JES_Gjet_Stat5: 5.04628834e-04 + syst_JES_Gjet_Stat6: 1.65502893e-03 + syst_JES_Gjet_Stat7: 2.29063108e-03 + syst_JES_Gjet_Stat8: 1.69616687e-03 + syst_JES_Gjet_Stat9: 3.95576342e-03 + syst_JES_Gjet_Veto: 1.00231767e-01 + syst_JES_Gjet_dPhi: 1.26886050e-02 + syst_JES_LArESZee: 3.33003555e-01 + syst_JES_LArEsmear: 2.45154497e-02 + syst_JES_LAr_JVT: 3.37214754e-02 + syst_JES_MJB_Alpha: 2.05881586e-03 + syst_JES_MJB_Asym: 1.00337245e-02 + syst_JES_MJB_Beta: 9.00593288e-04 + syst_JES_MJB_Stat1: 1.02246170e-03 + syst_JES_MJB_Stat10: 7.21894192e-05 + syst_JES_MJB_Stat11: 7.19403260e-06 + syst_JES_MJB_Stat12: 5.96305876e-06 + syst_JES_MJB_Stat13: 4.08275958e-06 + syst_JES_MJB_Stat14: 1.07257255e-09 + syst_JES_MJB_Stat15: 2.84309106e-08 + syst_JES_MJB_Stat16: 1.07531502e-11 + syst_JES_MJB_Stat2: 4.78923175e-04 + syst_JES_MJB_Stat3: 2.32915709e-03 + syst_JES_MJB_Stat4: 9.90915459e-04 + syst_JES_MJB_Stat5: 5.00855637e-04 + syst_JES_MJB_Stat6: 3.19436101e-04 + syst_JES_MJB_Stat7: 2.21664096e-04 + syst_JES_MJB_Stat8: 9.16503804e-08 + syst_JES_MJB_Stat9: 1.51272626e-14 + syst_JES_MJB_Threshold: 1.37821289e-02 + syst_JES_Pileup_MuOffset: 2.48271484e-02 + syst_JES_Pileup_NPVOffset: 2.88435504e-02 + syst_JES_Pileup_Pt_term: 3.63385921e-02 + syst_JES_PunchThrough_MC15: 8.14730520e-04 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.20105093881899683 - syst_JES_Zjet_MuScale: 0.012848494260029071 - syst_JES_Zjet_MuSmearID: 0.0022072831716841404 - syst_JES_Zjet_MuSmearMS: 0.047512525453821126 - syst_JES_Zjet_OOC: 0.07781965352659957 - syst_JES_Zjet_Stat1: 0.0016335001530456005 - syst_JES_Zjet_Stat10: 0.008418694242577051 - syst_JES_Zjet_Stat11: 0.006908020121568842 - syst_JES_Zjet_Stat12: 0.060207795799215244 - syst_JES_Zjet_Stat13: 0.04277014262309632 - syst_JES_Zjet_Stat2: 0.00019335187786778798 - syst_JES_Zjet_Stat3: 0.0005515931539640426 - syst_JES_Zjet_Stat4: 0.000584232631320778 - syst_JES_Zjet_Stat5: 0.0012876848478956334 - syst_JES_Zjet_Stat6: 0.001401803795115422 - syst_JES_Zjet_Stat7: 0.0011140209726481813 - syst_JES_Zjet_Stat8: 0.0015981167565293846 - syst_JES_Zjet_Stat9: 0.0030571429063751664 - syst_JES_Zjet_Veto: 0.01587513149551839 - syst_JES_Zjet_dPhi: 0.013629671456054985 + syst_JES_Zjet_MC: 2.01050939e-01 + syst_JES_Zjet_MuScale: 1.28484943e-02 + syst_JES_Zjet_MuSmearID: 2.20728317e-03 + syst_JES_Zjet_MuSmearMS: 4.75125255e-02 + syst_JES_Zjet_OOC: 7.78196535e-02 + syst_JES_Zjet_Stat1: 1.63350015e-03 + syst_JES_Zjet_Stat10: 8.41869424e-03 + syst_JES_Zjet_Stat11: 6.90802012e-03 + syst_JES_Zjet_Stat12: 6.02077958e-02 + syst_JES_Zjet_Stat13: 4.27701426e-02 + syst_JES_Zjet_Stat2: 1.93351878e-04 + syst_JES_Zjet_Stat3: 5.51593154e-04 + syst_JES_Zjet_Stat4: 5.84232631e-04 + syst_JES_Zjet_Stat5: 1.28768485e-03 + syst_JES_Zjet_Stat6: 1.40180380e-03 + syst_JES_Zjet_Stat7: 1.11402097e-03 + syst_JES_Zjet_Stat8: 1.59811676e-03 + syst_JES_Zjet_Stat9: 3.05714291e-03 + syst_JES_Zjet_Veto: 1.58751315e-02 + syst_JES_Zjet_dPhi: 1.36296715e-02 syst_PRW: 0.009841 syst_Unfolding_bias: 0.010228 - syst_cleaning: 0.06906552595180898 + syst_cleaning: 6.90655260e-02 syst_lumi: 0.2675 - syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.019823472828947 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.06451097174124723 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 0.037823596444547684 + syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.98234728e-02 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 6.45109717e-02 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 3.78235964e-02 syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 0.1464786929897997 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.026510067427300145 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.04177527109427298 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 1.46478693e-01 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 2.65100674e-02 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 4.17752711e-02 - stat: 0.05933 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.032111082199141154 - syst_JER_NP1: 0.0014265375100220815 - syst_JER_NP2: 0.004457982503330403 - syst_JER_NP3: 0.007184973486381144 - syst_JER_NP4: 0.0031117459327522226 - syst_JER_NP5: 0.0021572670210245185 - syst_JER_NP6: 6.0084842500811875e-05 - syst_JER_NP7: 0.004371037710601454 - syst_JER_NP8: 0.005789179043698683 - syst_JES_EtaIntercalibration_Modelling: 0.07841204052950032 - syst_JES_EtaIntercalibration_NonClosure: 1.2869137500236759e-06 + syst_JER_NP0: 3.21110822e-02 + syst_JER_NP1: 1.42653751e-03 + syst_JER_NP2: 4.45798250e-03 + syst_JER_NP3: 7.18497349e-03 + syst_JER_NP4: 3.11174593e-03 + syst_JER_NP5: 2.15726702e-03 + syst_JER_NP6: 6.00848425e-05 + syst_JER_NP7: 4.37103771e-03 + syst_JER_NP8: 5.78917904e-03 + syst_JES_EtaIntercalibration_Modelling: 7.84120405e-02 + syst_JES_EtaIntercalibration_NonClosure: 1.28691375e-06 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 8.110380431890973e-06 - syst_JES_EtaIntercalibration_Stat101: 2.6031731046551628e-09 - syst_JES_EtaIntercalibration_Stat102: 8.748419954728968e-13 - syst_JES_EtaIntercalibration_Stat103: 3.922229053739723e-13 - syst_JES_EtaIntercalibration_Stat104: 3.922229053739723e-13 - syst_JES_EtaIntercalibration_Stat105: 3.922229053739723e-13 + syst_JES_EtaIntercalibration_Stat100: 8.11038043e-06 + syst_JES_EtaIntercalibration_Stat101: 2.60317310e-09 + syst_JES_EtaIntercalibration_Stat102: 8.74841995e-13 + syst_JES_EtaIntercalibration_Stat103: 3.92222905e-13 + syst_JES_EtaIntercalibration_Stat104: 3.92222905e-13 + syst_JES_EtaIntercalibration_Stat105: 3.92222905e-13 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 5.5624811685074497e-08 - syst_JES_EtaIntercalibration_Stat111: 5.5624811685074497e-08 + syst_JES_EtaIntercalibration_Stat110: 5.56248117e-08 + syst_JES_EtaIntercalibration_Stat111: 5.56248117e-08 syst_JES_EtaIntercalibration_Stat112: 0.0 - syst_JES_EtaIntercalibration_Stat113: 1.0921986152820865e-10 - syst_JES_EtaIntercalibration_Stat114: 7.61433240059002e-05 - syst_JES_EtaIntercalibration_Stat115: 1.9139224122205164e-05 - syst_JES_EtaIntercalibration_Stat116: 3.5535771301605366e-05 - syst_JES_EtaIntercalibration_Stat117: 1.291844472063104e-05 - syst_JES_EtaIntercalibration_Stat118: 1.2281704553928987e-05 - syst_JES_EtaIntercalibration_Stat119: 5.0656328680309035e-05 - syst_JES_EtaIntercalibration_Stat12: 1.848930779167069e-08 - syst_JES_EtaIntercalibration_Stat120: 4.9062858661109425e-05 - syst_JES_EtaIntercalibration_Stat121: 1.3382129006626713e-05 - syst_JES_EtaIntercalibration_Stat122: 1.5167574781526546e-10 - syst_JES_EtaIntercalibration_Stat123: 3.922229053739723e-13 - syst_JES_EtaIntercalibration_Stat124: 3.922229053739723e-13 - syst_JES_EtaIntercalibration_Stat125: 3.922229053739723e-13 + syst_JES_EtaIntercalibration_Stat113: 1.09219862e-10 + syst_JES_EtaIntercalibration_Stat114: 7.61433240e-05 + syst_JES_EtaIntercalibration_Stat115: 1.91392241e-05 + syst_JES_EtaIntercalibration_Stat116: 3.55357713e-05 + syst_JES_EtaIntercalibration_Stat117: 1.29184447e-05 + syst_JES_EtaIntercalibration_Stat118: 1.22817046e-05 + syst_JES_EtaIntercalibration_Stat119: 5.06563287e-05 + syst_JES_EtaIntercalibration_Stat12: 1.84893078e-08 + syst_JES_EtaIntercalibration_Stat120: 4.90628587e-05 + syst_JES_EtaIntercalibration_Stat121: 1.33821290e-05 + syst_JES_EtaIntercalibration_Stat122: 1.51675748e-10 + syst_JES_EtaIntercalibration_Stat123: 3.92222905e-13 + syst_JES_EtaIntercalibration_Stat124: 3.92222905e-13 + syst_JES_EtaIntercalibration_Stat125: 3.92222905e-13 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 6.274354050418258e-06 - syst_JES_EtaIntercalibration_Stat129: 6.256032264516784e-06 - syst_JES_EtaIntercalibration_Stat13: 2.335098623410566e-08 - syst_JES_EtaIntercalibration_Stat130: 5.5624811685074497e-08 - syst_JES_EtaIntercalibration_Stat131: 4.013161721137089e-14 - syst_JES_EtaIntercalibration_Stat132: 1.6059630761062815e-06 - syst_JES_EtaIntercalibration_Stat133: 2.7146831799493654e-05 - syst_JES_EtaIntercalibration_Stat134: 0.000700273832154251 - syst_JES_EtaIntercalibration_Stat135: 0.0003557871018952205 - syst_JES_EtaIntercalibration_Stat136: 7.218071539545726e-06 - syst_JES_EtaIntercalibration_Stat137: 1.207143935079823e-05 - syst_JES_EtaIntercalibration_Stat138: 0.00034222241305910986 - syst_JES_EtaIntercalibration_Stat139: 0.0007098921115211804 - syst_JES_EtaIntercalibration_Stat14: 7.322244788997429e-14 - syst_JES_EtaIntercalibration_Stat140: 5.501001067987535e-05 - syst_JES_EtaIntercalibration_Stat141: 4.936344818043103e-06 + syst_JES_EtaIntercalibration_Stat128: 6.27435405e-06 + syst_JES_EtaIntercalibration_Stat129: 6.25603226e-06 + syst_JES_EtaIntercalibration_Stat13: 2.33509862e-08 + syst_JES_EtaIntercalibration_Stat130: 5.56248117e-08 + syst_JES_EtaIntercalibration_Stat131: 4.01316172e-14 + syst_JES_EtaIntercalibration_Stat132: 1.60596308e-06 + syst_JES_EtaIntercalibration_Stat133: 2.71468318e-05 + syst_JES_EtaIntercalibration_Stat134: 7.00273832e-04 + syst_JES_EtaIntercalibration_Stat135: 3.55787102e-04 + syst_JES_EtaIntercalibration_Stat136: 7.21807154e-06 + syst_JES_EtaIntercalibration_Stat137: 1.20714394e-05 + syst_JES_EtaIntercalibration_Stat138: 3.42222413e-04 + syst_JES_EtaIntercalibration_Stat139: 7.09892112e-04 + syst_JES_EtaIntercalibration_Stat14: 7.32224479e-14 + syst_JES_EtaIntercalibration_Stat140: 5.50100107e-05 + syst_JES_EtaIntercalibration_Stat141: 4.93634482e-06 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 3.922229053739723e-13 - syst_JES_EtaIntercalibration_Stat144: 3.922229053739723e-13 + syst_JES_EtaIntercalibration_Stat143: 3.92222905e-13 + syst_JES_EtaIntercalibration_Stat144: 3.92222905e-13 syst_JES_EtaIntercalibration_Stat145: 0.0 - syst_JES_EtaIntercalibration_Stat146: 6.274354050418258e-06 - syst_JES_EtaIntercalibration_Stat147: 6.256032264516784e-06 + syst_JES_EtaIntercalibration_Stat146: 6.27435405e-06 + syst_JES_EtaIntercalibration_Stat147: 6.25603226e-06 syst_JES_EtaIntercalibration_Stat148: 0.0 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 1.6921469104956579e-09 - syst_JES_EtaIntercalibration_Stat151: 2.9754659479651247e-05 - syst_JES_EtaIntercalibration_Stat152: 0.0009119402653134688 - syst_JES_EtaIntercalibration_Stat153: 0.0008329162622977175 - syst_JES_EtaIntercalibration_Stat154: 1.905206978257218e-05 - syst_JES_EtaIntercalibration_Stat155: 2.8671904728322466e-05 - syst_JES_EtaIntercalibration_Stat156: 0.0005455434027646197 - syst_JES_EtaIntercalibration_Stat157: 0.0008579735660263666 - syst_JES_EtaIntercalibration_Stat158: 0.0002080677766035625 - syst_JES_EtaIntercalibration_Stat159: 4.974240976693706e-06 + syst_JES_EtaIntercalibration_Stat150: 1.69214691e-09 + syst_JES_EtaIntercalibration_Stat151: 2.97546595e-05 + syst_JES_EtaIntercalibration_Stat152: 9.11940265e-04 + syst_JES_EtaIntercalibration_Stat153: 8.32916262e-04 + syst_JES_EtaIntercalibration_Stat154: 1.90520698e-05 + syst_JES_EtaIntercalibration_Stat155: 2.86719047e-05 + syst_JES_EtaIntercalibration_Stat156: 5.45543403e-04 + syst_JES_EtaIntercalibration_Stat157: 8.57973566e-04 + syst_JES_EtaIntercalibration_Stat158: 2.08067777e-04 + syst_JES_EtaIntercalibration_Stat159: 4.97424098e-06 syst_JES_EtaIntercalibration_Stat16: 0.0 syst_JES_EtaIntercalibration_Stat160: 0.0 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 - syst_JES_EtaIntercalibration_Stat164: 6.274354050418258e-06 + syst_JES_EtaIntercalibration_Stat164: 6.27435405e-06 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 - syst_JES_EtaIntercalibration_Stat168: 3.800985497209901e-08 - syst_JES_EtaIntercalibration_Stat169: 0.00011236958796756353 + syst_JES_EtaIntercalibration_Stat168: 3.80098550e-08 + syst_JES_EtaIntercalibration_Stat169: 1.12369588e-04 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 0.002251364475157232 - syst_JES_EtaIntercalibration_Stat171: 0.0017868941630661845 - syst_JES_EtaIntercalibration_Stat172: 0.0001846443337879611 - syst_JES_EtaIntercalibration_Stat173: 0.00014367358880731676 - syst_JES_EtaIntercalibration_Stat174: 0.00162916816811525 - syst_JES_EtaIntercalibration_Stat175: 0.0019456121787242184 - syst_JES_EtaIntercalibration_Stat176: 0.0001927499416342324 - syst_JES_EtaIntercalibration_Stat177: 2.2712760466310565e-05 + syst_JES_EtaIntercalibration_Stat170: 2.25136448e-03 + syst_JES_EtaIntercalibration_Stat171: 1.78689416e-03 + syst_JES_EtaIntercalibration_Stat172: 1.84644334e-04 + syst_JES_EtaIntercalibration_Stat173: 1.43673589e-04 + syst_JES_EtaIntercalibration_Stat174: 1.62916817e-03 + syst_JES_EtaIntercalibration_Stat175: 1.94561218e-03 + syst_JES_EtaIntercalibration_Stat176: 1.92749942e-04 + syst_JES_EtaIntercalibration_Stat177: 2.27127605e-05 syst_JES_EtaIntercalibration_Stat178: 0.0 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 @@ -17210,17 +17210,17 @@ bins: syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 syst_JES_EtaIntercalibration_Stat184: 0.0 - syst_JES_EtaIntercalibration_Stat185: 7.261623010732519e-06 - syst_JES_EtaIntercalibration_Stat186: 0.0006008929688388773 - syst_JES_EtaIntercalibration_Stat187: 0.008806500709703033 - syst_JES_EtaIntercalibration_Stat188: 0.007285128876691201 - syst_JES_EtaIntercalibration_Stat189: 0.0005144613177878391 + syst_JES_EtaIntercalibration_Stat185: 7.26162301e-06 + syst_JES_EtaIntercalibration_Stat186: 6.00892969e-04 + syst_JES_EtaIntercalibration_Stat187: 8.80650071e-03 + syst_JES_EtaIntercalibration_Stat188: 7.28512888e-03 + syst_JES_EtaIntercalibration_Stat189: 5.14461318e-04 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 0.0004467003805684522 - syst_JES_EtaIntercalibration_Stat191: 0.005704968426731212 - syst_JES_EtaIntercalibration_Stat192: 0.00861490295940703 - syst_JES_EtaIntercalibration_Stat193: 0.0007863353673846803 - syst_JES_EtaIntercalibration_Stat194: 8.927855887613779e-06 + syst_JES_EtaIntercalibration_Stat190: 4.46700381e-04 + syst_JES_EtaIntercalibration_Stat191: 5.70496843e-03 + syst_JES_EtaIntercalibration_Stat192: 8.61490296e-03 + syst_JES_EtaIntercalibration_Stat193: 7.86335367e-04 + syst_JES_EtaIntercalibration_Stat194: 8.92785589e-06 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 syst_JES_EtaIntercalibration_Stat197: 0.0 @@ -17228,70 +17228,70 @@ bins: syst_JES_EtaIntercalibration_Stat199: 0.0 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 1.0349869600627826e-05 - syst_JES_EtaIntercalibration_Stat201: 0.00033792547625179135 - syst_JES_EtaIntercalibration_Stat202: 0.007696012993752025 - syst_JES_EtaIntercalibration_Stat203: 0.006737340424826402 - syst_JES_EtaIntercalibration_Stat204: 0.0006029138661533669 - syst_JES_EtaIntercalibration_Stat205: 0.00034090223994570645 - syst_JES_EtaIntercalibration_Stat206: 0.00633241855454928 - syst_JES_EtaIntercalibration_Stat207: 0.007096692380961712 - syst_JES_EtaIntercalibration_Stat208: 0.0008161165281379858 - syst_JES_EtaIntercalibration_Stat209: 1.0225043422890682e-06 + syst_JES_EtaIntercalibration_Stat200: 1.03498696e-05 + syst_JES_EtaIntercalibration_Stat201: 3.37925476e-04 + syst_JES_EtaIntercalibration_Stat202: 7.69601299e-03 + syst_JES_EtaIntercalibration_Stat203: 6.73734042e-03 + syst_JES_EtaIntercalibration_Stat204: 6.02913866e-04 + syst_JES_EtaIntercalibration_Stat205: 3.40902240e-04 + syst_JES_EtaIntercalibration_Stat206: 6.33241855e-03 + syst_JES_EtaIntercalibration_Stat207: 7.09669238e-03 + syst_JES_EtaIntercalibration_Stat208: 8.16116528e-04 + syst_JES_EtaIntercalibration_Stat209: 1.02250434e-06 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 syst_JES_EtaIntercalibration_Stat211: 0.0 syst_JES_EtaIntercalibration_Stat212: 0.0 - syst_JES_EtaIntercalibration_Stat213: 1.8593565419251897e-06 - syst_JES_EtaIntercalibration_Stat214: 8.219277507786193e-05 - syst_JES_EtaIntercalibration_Stat215: 0.0009935744259993813 - syst_JES_EtaIntercalibration_Stat216: 0.0016022925076277427 - syst_JES_EtaIntercalibration_Stat217: 0.00010989740852267628 - syst_JES_EtaIntercalibration_Stat218: 8.767897923675891e-05 - syst_JES_EtaIntercalibration_Stat219: 0.00063740563811438 + syst_JES_EtaIntercalibration_Stat213: 1.85935654e-06 + syst_JES_EtaIntercalibration_Stat214: 8.21927751e-05 + syst_JES_EtaIntercalibration_Stat215: 9.93574426e-04 + syst_JES_EtaIntercalibration_Stat216: 1.60229251e-03 + syst_JES_EtaIntercalibration_Stat217: 1.09897409e-04 + syst_JES_EtaIntercalibration_Stat218: 8.76789792e-05 + syst_JES_EtaIntercalibration_Stat219: 6.37405638e-04 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 0.0011343091642052442 - syst_JES_EtaIntercalibration_Stat221: 0.00011293256605160444 - syst_JES_EtaIntercalibration_Stat222: 6.249533780011114e-06 + syst_JES_EtaIntercalibration_Stat220: 1.13430916e-03 + syst_JES_EtaIntercalibration_Stat221: 1.12932566e-04 + syst_JES_EtaIntercalibration_Stat222: 6.24953378e-06 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 - syst_JES_EtaIntercalibration_Stat225: 5.4576920946480856e-08 - syst_JES_EtaIntercalibration_Stat226: 9.432205362480186e-05 - syst_JES_EtaIntercalibration_Stat227: 0.0006449161883531843 - syst_JES_EtaIntercalibration_Stat228: 0.0005771854532990242 - syst_JES_EtaIntercalibration_Stat229: 7.070231539303758e-05 + syst_JES_EtaIntercalibration_Stat225: 5.45769209e-08 + syst_JES_EtaIntercalibration_Stat226: 9.43220536e-05 + syst_JES_EtaIntercalibration_Stat227: 6.44916188e-04 + syst_JES_EtaIntercalibration_Stat228: 5.77185453e-04 + syst_JES_EtaIntercalibration_Stat229: 7.07023154e-05 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 2.4076048014572493e-05 - syst_JES_EtaIntercalibration_Stat231: 0.0008771393104860824 - syst_JES_EtaIntercalibration_Stat232: 0.0006237968098668027 - syst_JES_EtaIntercalibration_Stat233: 4.543927238633998e-05 - syst_JES_EtaIntercalibration_Stat234: 6.039888412598614e-06 + syst_JES_EtaIntercalibration_Stat230: 2.40760480e-05 + syst_JES_EtaIntercalibration_Stat231: 8.77139310e-04 + syst_JES_EtaIntercalibration_Stat232: 6.23796810e-04 + syst_JES_EtaIntercalibration_Stat233: 4.54392724e-05 + syst_JES_EtaIntercalibration_Stat234: 6.03988841e-06 syst_JES_EtaIntercalibration_Stat235: 0.0 - syst_JES_EtaIntercalibration_Stat236: 7.058107040843176e-34 - syst_JES_EtaIntercalibration_Stat237: 2.7803986674576006e-07 - syst_JES_EtaIntercalibration_Stat238: 8.22403190351302e-06 - syst_JES_EtaIntercalibration_Stat239: 4.004929396381415e-06 + syst_JES_EtaIntercalibration_Stat236: 7.05810704e-34 + syst_JES_EtaIntercalibration_Stat237: 2.78039867e-07 + syst_JES_EtaIntercalibration_Stat238: 8.22403190e-06 + syst_JES_EtaIntercalibration_Stat239: 4.00492940e-06 syst_JES_EtaIntercalibration_Stat24: 0.0 - syst_JES_EtaIntercalibration_Stat240: 6.929934157127171e-34 - syst_JES_EtaIntercalibration_Stat241: 4.5258487601774767e-07 - syst_JES_EtaIntercalibration_Stat242: 3.405829524506475e-06 - syst_JES_EtaIntercalibration_Stat243: 1.1958473428912238e-05 - syst_JES_EtaIntercalibration_Stat244: 7.743999160640451e-11 - syst_JES_EtaIntercalibration_Stat245: 1.9771359968398735e-09 + syst_JES_EtaIntercalibration_Stat240: 6.92993416e-34 + syst_JES_EtaIntercalibration_Stat241: 4.52584876e-07 + syst_JES_EtaIntercalibration_Stat242: 3.40582952e-06 + syst_JES_EtaIntercalibration_Stat243: 1.19584734e-05 + syst_JES_EtaIntercalibration_Stat244: 7.74399916e-11 + syst_JES_EtaIntercalibration_Stat245: 1.97713600e-09 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 syst_JES_EtaIntercalibration_Stat27: 0.0 - syst_JES_EtaIntercalibration_Stat28: 7.970897816431975e-15 - syst_JES_EtaIntercalibration_Stat29: 1.5611252386259726e-11 + syst_JES_EtaIntercalibration_Stat28: 7.97089782e-15 + syst_JES_EtaIntercalibration_Stat29: 1.56112524e-11 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 6.781145911274878e-10 - syst_JES_EtaIntercalibration_Stat31: 3.005559307350298e-10 - syst_JES_EtaIntercalibration_Stat32: 7.977003243699979e-14 - syst_JES_EtaIntercalibration_Stat33: 4.298900002326176e-12 - syst_JES_EtaIntercalibration_Stat34: 1.3768532220926817e-05 - syst_JES_EtaIntercalibration_Stat35: 4.531951683077653e-06 - syst_JES_EtaIntercalibration_Stat36: 1.492472836226844e-10 - syst_JES_EtaIntercalibration_Stat37: 5.8179586626238585e-15 + syst_JES_EtaIntercalibration_Stat30: 6.78114591e-10 + syst_JES_EtaIntercalibration_Stat31: 3.00555931e-10 + syst_JES_EtaIntercalibration_Stat32: 7.97700324e-14 + syst_JES_EtaIntercalibration_Stat33: 4.29890000e-12 + syst_JES_EtaIntercalibration_Stat34: 1.37685322e-05 + syst_JES_EtaIntercalibration_Stat35: 4.53195168e-06 + syst_JES_EtaIntercalibration_Stat36: 1.49247284e-10 + syst_JES_EtaIntercalibration_Stat37: 5.81795866e-15 syst_JES_EtaIntercalibration_Stat38: 0.0 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 @@ -17306,20 +17306,20 @@ bins: syst_JES_EtaIntercalibration_Stat48: 0.0 syst_JES_EtaIntercalibration_Stat49: 0.0 syst_JES_EtaIntercalibration_Stat5: 0.0 - syst_JES_EtaIntercalibration_Stat50: 8.073954839482321e-15 - syst_JES_EtaIntercalibration_Stat51: 4.171821065194431e-11 - syst_JES_EtaIntercalibration_Stat52: 2.2676827307848863e-08 - syst_JES_EtaIntercalibration_Stat53: 5.293238377401872e-09 - syst_JES_EtaIntercalibration_Stat54: 1.5318898157178274e-11 - syst_JES_EtaIntercalibration_Stat55: 1.8331035467945478e-08 - syst_JES_EtaIntercalibration_Stat56: 1.3769560035832374e-05 - syst_JES_EtaIntercalibration_Stat57: 1.8827312836217527e-05 - syst_JES_EtaIntercalibration_Stat58: 2.1899931934825733e-10 - syst_JES_EtaIntercalibration_Stat59: 2.799506176096063e-14 + syst_JES_EtaIntercalibration_Stat50: 8.07395484e-15 + syst_JES_EtaIntercalibration_Stat51: 4.17182107e-11 + syst_JES_EtaIntercalibration_Stat52: 2.26768273e-08 + syst_JES_EtaIntercalibration_Stat53: 5.29323838e-09 + syst_JES_EtaIntercalibration_Stat54: 1.53188982e-11 + syst_JES_EtaIntercalibration_Stat55: 1.83310355e-08 + syst_JES_EtaIntercalibration_Stat56: 1.37695600e-05 + syst_JES_EtaIntercalibration_Stat57: 1.88273128e-05 + syst_JES_EtaIntercalibration_Stat58: 2.18999319e-10 + syst_JES_EtaIntercalibration_Stat59: 2.79950618e-14 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 3.922229053739723e-13 - syst_JES_EtaIntercalibration_Stat62: 3.922229053739723e-13 + syst_JES_EtaIntercalibration_Stat61: 3.92222905e-13 + syst_JES_EtaIntercalibration_Stat62: 3.92222905e-13 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 @@ -17327,223 +17327,223 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 7.970897816431975e-15 + syst_JES_EtaIntercalibration_Stat7: 7.97089782e-15 syst_JES_EtaIntercalibration_Stat70: 0.0 syst_JES_EtaIntercalibration_Stat71: 0.0 - syst_JES_EtaIntercalibration_Stat72: 1.346669502884802e-12 - syst_JES_EtaIntercalibration_Stat73: 9.361093096577985e-08 - syst_JES_EtaIntercalibration_Stat74: 0.00010384344836700097 - syst_JES_EtaIntercalibration_Stat75: 8.001147122756838e-05 - syst_JES_EtaIntercalibration_Stat76: 3.002588488288064e-09 - syst_JES_EtaIntercalibration_Stat77: 1.602070621664351e-08 - syst_JES_EtaIntercalibration_Stat78: 1.304497615942628e-05 - syst_JES_EtaIntercalibration_Stat79: 6.900425873089284e-05 - syst_JES_EtaIntercalibration_Stat8: 8.139998817567482e-12 - syst_JES_EtaIntercalibration_Stat80: 2.2977172894028438e-09 - syst_JES_EtaIntercalibration_Stat81: 8.692296977784411e-14 - syst_JES_EtaIntercalibration_Stat82: 3.922229053739723e-13 - syst_JES_EtaIntercalibration_Stat83: 3.922229053739723e-13 - syst_JES_EtaIntercalibration_Stat84: 3.922229053739723e-13 + syst_JES_EtaIntercalibration_Stat72: 1.34666950e-12 + syst_JES_EtaIntercalibration_Stat73: 9.36109310e-08 + syst_JES_EtaIntercalibration_Stat74: 1.03843448e-04 + syst_JES_EtaIntercalibration_Stat75: 8.00114712e-05 + syst_JES_EtaIntercalibration_Stat76: 3.00258849e-09 + syst_JES_EtaIntercalibration_Stat77: 1.60207062e-08 + syst_JES_EtaIntercalibration_Stat78: 1.30449762e-05 + syst_JES_EtaIntercalibration_Stat79: 6.90042587e-05 + syst_JES_EtaIntercalibration_Stat8: 8.13999882e-12 + syst_JES_EtaIntercalibration_Stat80: 2.29771729e-09 + syst_JES_EtaIntercalibration_Stat81: 8.69229698e-14 + syst_JES_EtaIntercalibration_Stat82: 3.92222905e-13 + syst_JES_EtaIntercalibration_Stat83: 3.92222905e-13 + syst_JES_EtaIntercalibration_Stat84: 3.92222905e-13 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 syst_JES_EtaIntercalibration_Stat89: 0.0 - syst_JES_EtaIntercalibration_Stat9: 2.2619871811086813e-12 + syst_JES_EtaIntercalibration_Stat9: 2.26198718e-12 syst_JES_EtaIntercalibration_Stat90: 0.0 syst_JES_EtaIntercalibration_Stat91: 0.0 syst_JES_EtaIntercalibration_Stat92: 0.0 - syst_JES_EtaIntercalibration_Stat93: 1.2418804290268849e-12 - syst_JES_EtaIntercalibration_Stat94: 1.257941697009444e-07 - syst_JES_EtaIntercalibration_Stat95: 0.00010760336364166317 - syst_JES_EtaIntercalibration_Stat96: 8.184707763109199e-05 - syst_JES_EtaIntercalibration_Stat97: 4.314635856022499e-08 - syst_JES_EtaIntercalibration_Stat98: 7.923439452030917e-09 - syst_JES_EtaIntercalibration_Stat99: 2.7719026295128045e-05 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.022853680228794665 - syst_JES_Flavour_Comp: 0.06953544042429012 - syst_JES_Gjet_Generator: 0.1498112812841543 - syst_JES_Gjet_OOC: 0.11238670161544914 - syst_JES_Gjet_Purity: 0.038661480064141364 - syst_JES_Gjet_Stat1: 4.201526240546403e-05 - syst_JES_Gjet_Stat10: 0.004535229431903087 - syst_JES_Gjet_Stat11: 0.007549236832289739 - syst_JES_Gjet_Stat12: 0.021210075435980892 - syst_JES_Gjet_Stat13: 0.025446608811391748 - syst_JES_Gjet_Stat14: 0.0018097193152530587 - syst_JES_Gjet_Stat15: 0.004751553930031732 - syst_JES_Gjet_Stat2: 7.789727273788217e-12 - syst_JES_Gjet_Stat3: 0.00018662229816061637 - syst_JES_Gjet_Stat4: 0.0003510971177252812 - syst_JES_Gjet_Stat5: 0.0003143138240676029 - syst_JES_Gjet_Stat6: 0.001089981155800411 - syst_JES_Gjet_Stat7: 0.0015065224218377901 - syst_JES_Gjet_Stat8: 0.0010346626732901888 - syst_JES_Gjet_Stat9: 0.002274941043192109 - syst_JES_Gjet_Veto: 0.0728224223711351 - syst_JES_Gjet_dPhi: 0.008078491319547233 - syst_JES_LArESZee: 0.2159445067604175 - syst_JES_LArEsmear: 0.015698824000542205 - syst_JES_LAr_JVT: 0.02155960284884673 - syst_JES_MJB_Alpha: 0.0014089519322886782 - syst_JES_MJB_Asym: 0.006130567836668966 - syst_JES_MJB_Beta: 0.0007357064767962832 - syst_JES_MJB_Stat1: 0.00041680232805851744 - syst_JES_MJB_Stat10: 0.00012853157751599413 - syst_JES_MJB_Stat11: 4.85223782599328e-05 - syst_JES_MJB_Stat12: 7.439577054510559e-06 - syst_JES_MJB_Stat13: 4.66532691491979e-06 - syst_JES_MJB_Stat14: 7.572766205291169e-08 - syst_JES_MJB_Stat15: 2.4493015330906076e-07 - syst_JES_MJB_Stat16: 7.533260614103299e-10 - syst_JES_MJB_Stat2: 0.0002990467521977124 - syst_JES_MJB_Stat3: 0.001990875937872574 - syst_JES_MJB_Stat4: 0.000728475620731401 - syst_JES_MJB_Stat5: 0.0005571538476937945 - syst_JES_MJB_Stat6: 0.00020075600969024564 - syst_JES_MJB_Stat7: 0.0001562063979763633 - syst_JES_MJB_Stat8: 1.933369980112446e-06 - syst_JES_MJB_Stat9: 2.1163194465864554e-11 - syst_JES_MJB_Threshold: 0.009636122508561211 - syst_JES_Pileup_MuOffset: 0.01834120156914481 - syst_JES_Pileup_NPVOffset: 0.020112630360049875 - syst_JES_Pileup_Pt_term: 0.02278329212383496 - syst_JES_PunchThrough_MC15: 0.0014604721864862745 + syst_JES_EtaIntercalibration_Stat93: 1.24188043e-12 + syst_JES_EtaIntercalibration_Stat94: 1.25794170e-07 + syst_JES_EtaIntercalibration_Stat95: 1.07603364e-04 + syst_JES_EtaIntercalibration_Stat96: 8.18470776e-05 + syst_JES_EtaIntercalibration_Stat97: 4.31463586e-08 + syst_JES_EtaIntercalibration_Stat98: 7.92343945e-09 + syst_JES_EtaIntercalibration_Stat99: 2.77190263e-05 + syst_JES_EtaIntercalibration_TotalStat_MJB: 2.28536802e-02 + syst_JES_Flavour_Comp: 6.95354404e-02 + syst_JES_Gjet_Generator: 1.49811281e-01 + syst_JES_Gjet_OOC: 1.12386702e-01 + syst_JES_Gjet_Purity: 3.86614801e-02 + syst_JES_Gjet_Stat1: 4.20152624e-05 + syst_JES_Gjet_Stat10: 4.53522943e-03 + syst_JES_Gjet_Stat11: 7.54923683e-03 + syst_JES_Gjet_Stat12: 2.12100754e-02 + syst_JES_Gjet_Stat13: 2.54466088e-02 + syst_JES_Gjet_Stat14: 1.80971932e-03 + syst_JES_Gjet_Stat15: 4.75155393e-03 + syst_JES_Gjet_Stat2: 7.78972727e-12 + syst_JES_Gjet_Stat3: 1.86622298e-04 + syst_JES_Gjet_Stat4: 3.51097118e-04 + syst_JES_Gjet_Stat5: 3.14313824e-04 + syst_JES_Gjet_Stat6: 1.08998116e-03 + syst_JES_Gjet_Stat7: 1.50652242e-03 + syst_JES_Gjet_Stat8: 1.03466267e-03 + syst_JES_Gjet_Stat9: 2.27494104e-03 + syst_JES_Gjet_Veto: 7.28224224e-02 + syst_JES_Gjet_dPhi: 8.07849132e-03 + syst_JES_LArESZee: 2.15944507e-01 + syst_JES_LArEsmear: 1.56988240e-02 + syst_JES_LAr_JVT: 2.15596028e-02 + syst_JES_MJB_Alpha: 1.40895193e-03 + syst_JES_MJB_Asym: 6.13056784e-03 + syst_JES_MJB_Beta: 7.35706477e-04 + syst_JES_MJB_Stat1: 4.16802328e-04 + syst_JES_MJB_Stat10: 1.28531578e-04 + syst_JES_MJB_Stat11: 4.85223783e-05 + syst_JES_MJB_Stat12: 7.43957705e-06 + syst_JES_MJB_Stat13: 4.66532691e-06 + syst_JES_MJB_Stat14: 7.57276621e-08 + syst_JES_MJB_Stat15: 2.44930153e-07 + syst_JES_MJB_Stat16: 7.53326061e-10 + syst_JES_MJB_Stat2: 2.99046752e-04 + syst_JES_MJB_Stat3: 1.99087594e-03 + syst_JES_MJB_Stat4: 7.28475621e-04 + syst_JES_MJB_Stat5: 5.57153848e-04 + syst_JES_MJB_Stat6: 2.00756010e-04 + syst_JES_MJB_Stat7: 1.56206398e-04 + syst_JES_MJB_Stat8: 1.93336998e-06 + syst_JES_MJB_Stat9: 2.11631945e-11 + syst_JES_MJB_Threshold: 9.63612251e-03 + syst_JES_Pileup_MuOffset: 1.83412016e-02 + syst_JES_Pileup_NPVOffset: 2.01126304e-02 + syst_JES_Pileup_Pt_term: 2.27832921e-02 + syst_JES_PunchThrough_MC15: 1.46047219e-03 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.11862538545775099 - syst_JES_Zjet_MuScale: 0.0073574541113077966 - syst_JES_Zjet_MuSmearID: 0.0013989807218114194 - syst_JES_Zjet_MuSmearMS: 0.030730574351938166 - syst_JES_Zjet_OOC: 0.047813973637421105 - syst_JES_Zjet_Stat1: 0.001388070851037511 - syst_JES_Zjet_Stat10: 0.004818183993996078 - syst_JES_Zjet_Stat11: 0.00377887381470988 - syst_JES_Zjet_Stat12: 0.031705429740030336 - syst_JES_Zjet_Stat13: 0.03002120750402955 - syst_JES_Zjet_Stat2: 0.00012071969712934174 - syst_JES_Zjet_Stat3: 0.00046521909319695813 - syst_JES_Zjet_Stat4: 0.0003647632485599392 - syst_JES_Zjet_Stat5: 0.0008728788919432065 - syst_JES_Zjet_Stat6: 0.0011404146745811366 - syst_JES_Zjet_Stat7: 0.0006946420229154007 - syst_JES_Zjet_Stat8: 0.0010986047196330443 - syst_JES_Zjet_Stat9: 0.0019340907424420393 - syst_JES_Zjet_Veto: 0.009344876604321749 - syst_JES_Zjet_dPhi: 0.008171978524200854 + syst_JES_Zjet_MC: 1.18625385e-01 + syst_JES_Zjet_MuScale: 7.35745411e-03 + syst_JES_Zjet_MuSmearID: 1.39898072e-03 + syst_JES_Zjet_MuSmearMS: 3.07305744e-02 + syst_JES_Zjet_OOC: 4.78139736e-02 + syst_JES_Zjet_Stat1: 1.38807085e-03 + syst_JES_Zjet_Stat10: 4.81818399e-03 + syst_JES_Zjet_Stat11: 3.77887381e-03 + syst_JES_Zjet_Stat12: 3.17054297e-02 + syst_JES_Zjet_Stat13: 3.00212075e-02 + syst_JES_Zjet_Stat2: 1.20719697e-04 + syst_JES_Zjet_Stat3: 4.65219093e-04 + syst_JES_Zjet_Stat4: 3.64763249e-04 + syst_JES_Zjet_Stat5: 8.72878892e-04 + syst_JES_Zjet_Stat6: 1.14041467e-03 + syst_JES_Zjet_Stat7: 6.94642023e-04 + syst_JES_Zjet_Stat8: 1.09860472e-03 + syst_JES_Zjet_Stat9: 1.93409074e-03 + syst_JES_Zjet_Veto: 9.34487660e-03 + syst_JES_Zjet_dPhi: 8.17197852e-03 syst_PRW: 0.006144 syst_Unfolding_bias: 0.006386 - syst_cleaning: 0.04307610358423798 + syst_cleaning: 4.30761036e-02 syst_lumi: 0.167 - syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.013924755680082864 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.040130692004374906 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 0.019162760761435183 + syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.39247557e-02 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 4.01306920e-02 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 1.91627608e-02 syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 0.07422115803461975 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.019012008705026413 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.027171964871904278 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 7.42211580e-02 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.90120087e-02 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 2.71719649e-02 - stat: 0.021459 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.01893256123719134 - syst_JER_NP1: 0.0011155600656172666 - syst_JER_NP2: 0.0028845070202722684 - syst_JER_NP3: 0.004588586056728151 - syst_JER_NP4: 0.001735127877131827 - syst_JER_NP5: 0.0013301267345632896 - syst_JER_NP6: 0.0002018705083864012 - syst_JER_NP7: 0.0027081223661422687 - syst_JER_NP8: 0.0037531507763477875 - syst_JES_EtaIntercalibration_Modelling: 0.05572287142637214 - syst_JES_EtaIntercalibration_NonClosure: 2.912443432927067e-07 + syst_JER_NP0: 1.89325612e-02 + syst_JER_NP1: 1.11556007e-03 + syst_JER_NP2: 2.88450702e-03 + syst_JER_NP3: 4.58858606e-03 + syst_JER_NP4: 1.73512788e-03 + syst_JER_NP5: 1.33012673e-03 + syst_JER_NP6: 2.01870508e-04 + syst_JER_NP7: 2.70812237e-03 + syst_JER_NP8: 3.75315078e-03 + syst_JES_EtaIntercalibration_Modelling: 5.57228714e-02 + syst_JES_EtaIntercalibration_NonClosure: 2.91244343e-07 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 6.330601393232717e-06 - syst_JES_EtaIntercalibration_Stat101: 3.2078062038097e-10 - syst_JES_EtaIntercalibration_Stat102: 1.1799401568642157e-13 - syst_JES_EtaIntercalibration_Stat103: 6.356626463777779e-14 - syst_JES_EtaIntercalibration_Stat104: 6.356626463777779e-14 - syst_JES_EtaIntercalibration_Stat105: 6.356626463777779e-14 + syst_JES_EtaIntercalibration_Stat100: 6.33060139e-06 + syst_JES_EtaIntercalibration_Stat101: 3.20780620e-10 + syst_JES_EtaIntercalibration_Stat102: 1.17994016e-13 + syst_JES_EtaIntercalibration_Stat103: 6.35662646e-14 + syst_JES_EtaIntercalibration_Stat104: 6.35662646e-14 + syst_JES_EtaIntercalibration_Stat105: 6.35662646e-14 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 7.222651867562219e-09 - syst_JES_EtaIntercalibration_Stat111: 7.222651867562219e-09 + syst_JES_EtaIntercalibration_Stat110: 7.22265187e-09 + syst_JES_EtaIntercalibration_Stat111: 7.22265187e-09 syst_JES_EtaIntercalibration_Stat112: 0.0 - syst_JES_EtaIntercalibration_Stat113: 1.3423493649369937e-11 - syst_JES_EtaIntercalibration_Stat114: 5.194942548286747e-05 - syst_JES_EtaIntercalibration_Stat115: 7.954948334213114e-06 - syst_JES_EtaIntercalibration_Stat116: 1.0949727119887509e-05 - syst_JES_EtaIntercalibration_Stat117: 3.4741676341247555e-06 - syst_JES_EtaIntercalibration_Stat118: 7.943959599595153e-06 - syst_JES_EtaIntercalibration_Stat119: 1.4114582034194284e-05 - syst_JES_EtaIntercalibration_Stat12: 2.414412408912261e-09 - syst_JES_EtaIntercalibration_Stat120: 2.8255818427361113e-05 - syst_JES_EtaIntercalibration_Stat121: 5.044916649460128e-06 - syst_JES_EtaIntercalibration_Stat122: 1.8477450491612746e-11 - syst_JES_EtaIntercalibration_Stat123: 6.356626463777779e-14 - syst_JES_EtaIntercalibration_Stat124: 6.356626463777779e-14 - syst_JES_EtaIntercalibration_Stat125: 6.356626463777779e-14 + syst_JES_EtaIntercalibration_Stat113: 1.34234936e-11 + syst_JES_EtaIntercalibration_Stat114: 5.19494255e-05 + syst_JES_EtaIntercalibration_Stat115: 7.95494833e-06 + syst_JES_EtaIntercalibration_Stat116: 1.09497271e-05 + syst_JES_EtaIntercalibration_Stat117: 3.47416763e-06 + syst_JES_EtaIntercalibration_Stat118: 7.94395960e-06 + syst_JES_EtaIntercalibration_Stat119: 1.41145820e-05 + syst_JES_EtaIntercalibration_Stat12: 2.41441241e-09 + syst_JES_EtaIntercalibration_Stat120: 2.82558184e-05 + syst_JES_EtaIntercalibration_Stat121: 5.04491665e-06 + syst_JES_EtaIntercalibration_Stat122: 1.84774505e-11 + syst_JES_EtaIntercalibration_Stat123: 6.35662646e-14 + syst_JES_EtaIntercalibration_Stat124: 6.35662646e-14 + syst_JES_EtaIntercalibration_Stat125: 6.35662646e-14 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 1.553649574389283e-06 - syst_JES_EtaIntercalibration_Stat129: 1.5512569699118197e-06 - syst_JES_EtaIntercalibration_Stat13: 3.014123527318866e-09 - syst_JES_EtaIntercalibration_Stat130: 7.222651867562219e-09 - syst_JES_EtaIntercalibration_Stat131: 5.823154815046565e-15 - syst_JES_EtaIntercalibration_Stat132: 3.524968051314366e-07 - syst_JES_EtaIntercalibration_Stat133: 4.740580040459184e-06 - syst_JES_EtaIntercalibration_Stat134: 0.0002831165263632627 - syst_JES_EtaIntercalibration_Stat135: 0.00015602557578807394 - syst_JES_EtaIntercalibration_Stat136: 6.12076233058432e-06 - syst_JES_EtaIntercalibration_Stat137: 1.1929334715314178e-05 - syst_JES_EtaIntercalibration_Stat138: 0.0001368329042116698 - syst_JES_EtaIntercalibration_Stat139: 0.0003018785683018919 - syst_JES_EtaIntercalibration_Stat14: 1.0817523318671423e-14 - syst_JES_EtaIntercalibration_Stat140: 1.3499558029802307e-05 - syst_JES_EtaIntercalibration_Stat141: 1.3336791242298127e-06 + syst_JES_EtaIntercalibration_Stat128: 1.55364957e-06 + syst_JES_EtaIntercalibration_Stat129: 1.55125697e-06 + syst_JES_EtaIntercalibration_Stat13: 3.01412353e-09 + syst_JES_EtaIntercalibration_Stat130: 7.22265187e-09 + syst_JES_EtaIntercalibration_Stat131: 5.82315482e-15 + syst_JES_EtaIntercalibration_Stat132: 3.52496805e-07 + syst_JES_EtaIntercalibration_Stat133: 4.74058004e-06 + syst_JES_EtaIntercalibration_Stat134: 2.83116526e-04 + syst_JES_EtaIntercalibration_Stat135: 1.56025576e-04 + syst_JES_EtaIntercalibration_Stat136: 6.12076233e-06 + syst_JES_EtaIntercalibration_Stat137: 1.19293347e-05 + syst_JES_EtaIntercalibration_Stat138: 1.36832904e-04 + syst_JES_EtaIntercalibration_Stat139: 3.01878568e-04 + syst_JES_EtaIntercalibration_Stat14: 1.08175233e-14 + syst_JES_EtaIntercalibration_Stat140: 1.34995580e-05 + syst_JES_EtaIntercalibration_Stat141: 1.33367912e-06 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 6.356626463777779e-14 - syst_JES_EtaIntercalibration_Stat144: 6.356626463777779e-14 + syst_JES_EtaIntercalibration_Stat143: 6.35662646e-14 + syst_JES_EtaIntercalibration_Stat144: 6.35662646e-14 syst_JES_EtaIntercalibration_Stat145: 0.0 - syst_JES_EtaIntercalibration_Stat146: 1.553649574389283e-06 - syst_JES_EtaIntercalibration_Stat147: 1.5512569699118197e-06 + syst_JES_EtaIntercalibration_Stat146: 1.55364957e-06 + syst_JES_EtaIntercalibration_Stat147: 1.55125697e-06 syst_JES_EtaIntercalibration_Stat148: 0.0 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 2.0904764690137033e-10 - syst_JES_EtaIntercalibration_Stat151: 7.372751657285086e-06 - syst_JES_EtaIntercalibration_Stat152: 0.00034736218850070597 - syst_JES_EtaIntercalibration_Stat153: 0.000338953636210028 - syst_JES_EtaIntercalibration_Stat154: 7.201228228573235e-06 - syst_JES_EtaIntercalibration_Stat155: 1.905830493511949e-05 - syst_JES_EtaIntercalibration_Stat156: 0.00018066591453564228 - syst_JES_EtaIntercalibration_Stat157: 0.00027964787800911344 - syst_JES_EtaIntercalibration_Stat158: 0.00012436757241640603 - syst_JES_EtaIntercalibration_Stat159: 1.3406883179957182e-06 + syst_JES_EtaIntercalibration_Stat150: 2.09047647e-10 + syst_JES_EtaIntercalibration_Stat151: 7.37275166e-06 + syst_JES_EtaIntercalibration_Stat152: 3.47362189e-04 + syst_JES_EtaIntercalibration_Stat153: 3.38953636e-04 + syst_JES_EtaIntercalibration_Stat154: 7.20122823e-06 + syst_JES_EtaIntercalibration_Stat155: 1.90583049e-05 + syst_JES_EtaIntercalibration_Stat156: 1.80665915e-04 + syst_JES_EtaIntercalibration_Stat157: 2.79647878e-04 + syst_JES_EtaIntercalibration_Stat158: 1.24367572e-04 + syst_JES_EtaIntercalibration_Stat159: 1.34068832e-06 syst_JES_EtaIntercalibration_Stat16: 0.0 syst_JES_EtaIntercalibration_Stat160: 0.0 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 - syst_JES_EtaIntercalibration_Stat164: 1.553649574389283e-06 + syst_JES_EtaIntercalibration_Stat164: 1.55364957e-06 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 - syst_JES_EtaIntercalibration_Stat168: 9.29331860801081e-09 - syst_JES_EtaIntercalibration_Stat169: 4.638840156763326e-05 + syst_JES_EtaIntercalibration_Stat168: 9.29331861e-09 + syst_JES_EtaIntercalibration_Stat169: 4.63884016e-05 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 0.0008998159520146328 - syst_JES_EtaIntercalibration_Stat171: 0.0006976348113447321 - syst_JES_EtaIntercalibration_Stat172: 0.00010647581603350123 - syst_JES_EtaIntercalibration_Stat173: 4.7378770565773644e-05 - syst_JES_EtaIntercalibration_Stat174: 0.0006227834374804778 - syst_JES_EtaIntercalibration_Stat175: 0.0008149250318280816 - syst_JES_EtaIntercalibration_Stat176: 5.4238225219857634e-05 - syst_JES_EtaIntercalibration_Stat177: 7.079888558444971e-06 + syst_JES_EtaIntercalibration_Stat170: 8.99815952e-04 + syst_JES_EtaIntercalibration_Stat171: 6.97634811e-04 + syst_JES_EtaIntercalibration_Stat172: 1.06475816e-04 + syst_JES_EtaIntercalibration_Stat173: 4.73787706e-05 + syst_JES_EtaIntercalibration_Stat174: 6.22783437e-04 + syst_JES_EtaIntercalibration_Stat175: 8.14925032e-04 + syst_JES_EtaIntercalibration_Stat176: 5.42382252e-05 + syst_JES_EtaIntercalibration_Stat177: 7.07988856e-06 syst_JES_EtaIntercalibration_Stat178: 0.0 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 @@ -17552,17 +17552,17 @@ bins: syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 syst_JES_EtaIntercalibration_Stat184: 0.0 - syst_JES_EtaIntercalibration_Stat185: 2.6942050311733886e-06 - syst_JES_EtaIntercalibration_Stat186: 0.00028768824706616015 - syst_JES_EtaIntercalibration_Stat187: 0.004006003994006996 - syst_JES_EtaIntercalibration_Stat188: 0.003503914204143703 - syst_JES_EtaIntercalibration_Stat189: 0.0002454427173496904 + syst_JES_EtaIntercalibration_Stat185: 2.69420503e-06 + syst_JES_EtaIntercalibration_Stat186: 2.87688247e-04 + syst_JES_EtaIntercalibration_Stat187: 4.00600399e-03 + syst_JES_EtaIntercalibration_Stat188: 3.50391420e-03 + syst_JES_EtaIntercalibration_Stat189: 2.45442717e-04 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 0.00019289014360511012 - syst_JES_EtaIntercalibration_Stat191: 0.0024961652589522193 - syst_JES_EtaIntercalibration_Stat192: 0.004190543491004478 - syst_JES_EtaIntercalibration_Stat193: 0.0002872377543081689 - syst_JES_EtaIntercalibration_Stat194: 3.3424250459060407e-06 + syst_JES_EtaIntercalibration_Stat190: 1.92890144e-04 + syst_JES_EtaIntercalibration_Stat191: 2.49616526e-03 + syst_JES_EtaIntercalibration_Stat192: 4.19054349e-03 + syst_JES_EtaIntercalibration_Stat193: 2.87237754e-04 + syst_JES_EtaIntercalibration_Stat194: 3.34242505e-06 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 syst_JES_EtaIntercalibration_Stat197: 0.0 @@ -17570,70 +17570,70 @@ bins: syst_JES_EtaIntercalibration_Stat199: 0.0 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 5.157181279536332e-06 - syst_JES_EtaIntercalibration_Stat201: 0.00023505137204449583 - syst_JES_EtaIntercalibration_Stat202: 0.00447608936461282 - syst_JES_EtaIntercalibration_Stat203: 0.004150314686864117 - syst_JES_EtaIntercalibration_Stat204: 0.00035879355665897905 - syst_JES_EtaIntercalibration_Stat205: 0.00020152411146063886 - syst_JES_EtaIntercalibration_Stat206: 0.00399229947617911 - syst_JES_EtaIntercalibration_Stat207: 0.0044421190889034025 - syst_JES_EtaIntercalibration_Stat208: 0.0005260838241193128 - syst_JES_EtaIntercalibration_Stat209: 3.041673567495368e-06 + syst_JES_EtaIntercalibration_Stat200: 5.15718128e-06 + syst_JES_EtaIntercalibration_Stat201: 2.35051372e-04 + syst_JES_EtaIntercalibration_Stat202: 4.47608936e-03 + syst_JES_EtaIntercalibration_Stat203: 4.15031469e-03 + syst_JES_EtaIntercalibration_Stat204: 3.58793557e-04 + syst_JES_EtaIntercalibration_Stat205: 2.01524111e-04 + syst_JES_EtaIntercalibration_Stat206: 3.99229948e-03 + syst_JES_EtaIntercalibration_Stat207: 4.44211909e-03 + syst_JES_EtaIntercalibration_Stat208: 5.26083824e-04 + syst_JES_EtaIntercalibration_Stat209: 3.04167357e-06 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 syst_JES_EtaIntercalibration_Stat211: 0.0 syst_JES_EtaIntercalibration_Stat212: 0.0 - syst_JES_EtaIntercalibration_Stat213: 4.802976889388497e-06 - syst_JES_EtaIntercalibration_Stat214: 5.749152350564386e-05 - syst_JES_EtaIntercalibration_Stat215: 0.0010775303464404145 - syst_JES_EtaIntercalibration_Stat216: 0.0014847807270772341 - syst_JES_EtaIntercalibration_Stat217: 9.824003664494432e-05 - syst_JES_EtaIntercalibration_Stat218: 5.779400228397407e-05 - syst_JES_EtaIntercalibration_Stat219: 0.001175390967933649 + syst_JES_EtaIntercalibration_Stat213: 4.80297689e-06 + syst_JES_EtaIntercalibration_Stat214: 5.74915235e-05 + syst_JES_EtaIntercalibration_Stat215: 1.07753035e-03 + syst_JES_EtaIntercalibration_Stat216: 1.48478073e-03 + syst_JES_EtaIntercalibration_Stat217: 9.82400366e-05 + syst_JES_EtaIntercalibration_Stat218: 5.77940023e-05 + syst_JES_EtaIntercalibration_Stat219: 1.17539097e-03 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 0.0013771207136631122 - syst_JES_EtaIntercalibration_Stat221: 9.406529700160417e-05 - syst_JES_EtaIntercalibration_Stat222: 5.423596684857752e-06 + syst_JES_EtaIntercalibration_Stat220: 1.37712071e-03 + syst_JES_EtaIntercalibration_Stat221: 9.40652970e-05 + syst_JES_EtaIntercalibration_Stat222: 5.42359668e-06 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 - syst_JES_EtaIntercalibration_Stat225: 3.7871290899731025e-07 - syst_JES_EtaIntercalibration_Stat226: 5.9423241875549e-05 - syst_JES_EtaIntercalibration_Stat227: 0.0005610034937502618 - syst_JES_EtaIntercalibration_Stat228: 0.000503994503938287 - syst_JES_EtaIntercalibration_Stat229: 5.87081656707288e-05 + syst_JES_EtaIntercalibration_Stat225: 3.78712909e-07 + syst_JES_EtaIntercalibration_Stat226: 5.94232419e-05 + syst_JES_EtaIntercalibration_Stat227: 5.61003494e-04 + syst_JES_EtaIntercalibration_Stat228: 5.03994504e-04 + syst_JES_EtaIntercalibration_Stat229: 5.87081657e-05 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 2.741474238434496e-05 - syst_JES_EtaIntercalibration_Stat231: 0.0005181252647767719 - syst_JES_EtaIntercalibration_Stat232: 0.0005124886998754217 - syst_JES_EtaIntercalibration_Stat233: 8.67112409091232e-05 - syst_JES_EtaIntercalibration_Stat234: 1.100257429840285e-05 + syst_JES_EtaIntercalibration_Stat230: 2.74147424e-05 + syst_JES_EtaIntercalibration_Stat231: 5.18125265e-04 + syst_JES_EtaIntercalibration_Stat232: 5.12488700e-04 + syst_JES_EtaIntercalibration_Stat233: 8.67112409e-05 + syst_JES_EtaIntercalibration_Stat234: 1.10025743e-05 syst_JES_EtaIntercalibration_Stat235: 0.0 - syst_JES_EtaIntercalibration_Stat236: 3.465833665945324e-27 - syst_JES_EtaIntercalibration_Stat237: 2.0484102048906123e-06 - syst_JES_EtaIntercalibration_Stat238: 2.1866558942824083e-05 - syst_JES_EtaIntercalibration_Stat239: 1.3548533010994214e-05 + syst_JES_EtaIntercalibration_Stat236: 3.46583367e-27 + syst_JES_EtaIntercalibration_Stat237: 2.04841020e-06 + syst_JES_EtaIntercalibration_Stat238: 2.18665589e-05 + syst_JES_EtaIntercalibration_Stat239: 1.35485330e-05 syst_JES_EtaIntercalibration_Stat24: 0.0 - syst_JES_EtaIntercalibration_Stat240: 3.403296562922553e-27 - syst_JES_EtaIntercalibration_Stat241: 2.8206447401259163e-06 - syst_JES_EtaIntercalibration_Stat242: 1.8140647039176967e-05 - syst_JES_EtaIntercalibration_Stat243: 2.6082652678552462e-05 - syst_JES_EtaIntercalibration_Stat244: 4.460896854893434e-09 - syst_JES_EtaIntercalibration_Stat245: 3.395772210779162e-08 + syst_JES_EtaIntercalibration_Stat240: 3.40329656e-27 + syst_JES_EtaIntercalibration_Stat241: 2.82064474e-06 + syst_JES_EtaIntercalibration_Stat242: 1.81406470e-05 + syst_JES_EtaIntercalibration_Stat243: 2.60826527e-05 + syst_JES_EtaIntercalibration_Stat244: 4.46089685e-09 + syst_JES_EtaIntercalibration_Stat245: 3.39577221e-08 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 syst_JES_EtaIntercalibration_Stat27: 0.0 - syst_JES_EtaIntercalibration_Stat28: 1.2669951657366337e-15 - syst_JES_EtaIntercalibration_Stat29: 1.9463695205882666e-12 + syst_JES_EtaIntercalibration_Stat28: 1.26699517e-15 + syst_JES_EtaIntercalibration_Stat29: 1.94636952e-12 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 8.354924492028638e-11 - syst_JES_EtaIntercalibration_Stat31: 3.664385078017866e-11 - syst_JES_EtaIntercalibration_Stat32: 1.152204820116632e-14 - syst_JES_EtaIntercalibration_Stat33: 4.4594521196555075e-13 - syst_JES_EtaIntercalibration_Stat34: 8.72009652059831e-06 - syst_JES_EtaIntercalibration_Stat35: 1.267866162204196e-06 - syst_JES_EtaIntercalibration_Stat36: 1.8166653186539342e-11 - syst_JES_EtaIntercalibration_Stat37: 9.248285287014022e-16 + syst_JES_EtaIntercalibration_Stat30: 8.35492449e-11 + syst_JES_EtaIntercalibration_Stat31: 3.66438508e-11 + syst_JES_EtaIntercalibration_Stat32: 1.15220482e-14 + syst_JES_EtaIntercalibration_Stat33: 4.45945212e-13 + syst_JES_EtaIntercalibration_Stat34: 8.72009652e-06 + syst_JES_EtaIntercalibration_Stat35: 1.26786616e-06 + syst_JES_EtaIntercalibration_Stat36: 1.81666532e-11 + syst_JES_EtaIntercalibration_Stat37: 9.24828529e-16 syst_JES_EtaIntercalibration_Stat38: 0.0 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 @@ -17648,20 +17648,20 @@ bins: syst_JES_EtaIntercalibration_Stat48: 0.0 syst_JES_EtaIntercalibration_Stat49: 0.0 syst_JES_EtaIntercalibration_Stat5: 0.0 - syst_JES_EtaIntercalibration_Stat50: 1.283449648408538e-15 - syst_JES_EtaIntercalibration_Stat51: 5.122342310896452e-12 - syst_JES_EtaIntercalibration_Stat52: 6.26243868792342e-09 - syst_JES_EtaIntercalibration_Stat53: 6.796591880310307e-10 - syst_JES_EtaIntercalibration_Stat54: 1.875678277317302e-12 - syst_JES_EtaIntercalibration_Stat55: 2.3932453567615567e-09 - syst_JES_EtaIntercalibration_Stat56: 8.725176235974712e-06 - syst_JES_EtaIntercalibration_Stat57: 1.2652621383440997e-05 - syst_JES_EtaIntercalibration_Stat58: 2.655170651295317e-11 - syst_JES_EtaIntercalibration_Stat59: 4.257527569787423e-15 + syst_JES_EtaIntercalibration_Stat50: 1.28344965e-15 + syst_JES_EtaIntercalibration_Stat51: 5.12234231e-12 + syst_JES_EtaIntercalibration_Stat52: 6.26243869e-09 + syst_JES_EtaIntercalibration_Stat53: 6.79659188e-10 + syst_JES_EtaIntercalibration_Stat54: 1.87567828e-12 + syst_JES_EtaIntercalibration_Stat55: 2.39324536e-09 + syst_JES_EtaIntercalibration_Stat56: 8.72517624e-06 + syst_JES_EtaIntercalibration_Stat57: 1.26526214e-05 + syst_JES_EtaIntercalibration_Stat58: 2.65517065e-11 + syst_JES_EtaIntercalibration_Stat59: 4.25752757e-15 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 6.356626463777779e-14 - syst_JES_EtaIntercalibration_Stat62: 6.356626463777779e-14 + syst_JES_EtaIntercalibration_Stat61: 6.35662646e-14 + syst_JES_EtaIntercalibration_Stat62: 6.35662646e-14 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 @@ -17669,223 +17669,223 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 1.2669951657366337e-15 + syst_JES_EtaIntercalibration_Stat7: 1.26699517e-15 syst_JES_EtaIntercalibration_Stat70: 0.0 syst_JES_EtaIntercalibration_Stat71: 0.0 - syst_JES_EtaIntercalibration_Stat72: 1.686151461168302e-13 - syst_JES_EtaIntercalibration_Stat73: 1.348133840416077e-08 - syst_JES_EtaIntercalibration_Stat74: 7.623712108120296e-05 - syst_JES_EtaIntercalibration_Stat75: 6.662947923710271e-05 - syst_JES_EtaIntercalibration_Stat76: 3.9494326640037805e-10 - syst_JES_EtaIntercalibration_Stat77: 2.098772480969531e-09 - syst_JES_EtaIntercalibration_Stat78: 8.336272610818037e-06 - syst_JES_EtaIntercalibration_Stat79: 4.419244034071325e-05 - syst_JES_EtaIntercalibration_Stat8: 9.929786641715924e-13 - syst_JES_EtaIntercalibration_Stat80: 2.8313502842622633e-10 - syst_JES_EtaIntercalibration_Stat81: 1.283449648408538e-14 - syst_JES_EtaIntercalibration_Stat82: 6.356626463777779e-14 - syst_JES_EtaIntercalibration_Stat83: 6.356626463777779e-14 - syst_JES_EtaIntercalibration_Stat84: 6.356626463777779e-14 + syst_JES_EtaIntercalibration_Stat72: 1.68615146e-13 + syst_JES_EtaIntercalibration_Stat73: 1.34813384e-08 + syst_JES_EtaIntercalibration_Stat74: 7.62371211e-05 + syst_JES_EtaIntercalibration_Stat75: 6.66294792e-05 + syst_JES_EtaIntercalibration_Stat76: 3.94943266e-10 + syst_JES_EtaIntercalibration_Stat77: 2.09877248e-09 + syst_JES_EtaIntercalibration_Stat78: 8.33627261e-06 + syst_JES_EtaIntercalibration_Stat79: 4.41924403e-05 + syst_JES_EtaIntercalibration_Stat8: 9.92978664e-13 + syst_JES_EtaIntercalibration_Stat80: 2.83135028e-10 + syst_JES_EtaIntercalibration_Stat81: 1.28344965e-14 + syst_JES_EtaIntercalibration_Stat82: 6.35662646e-14 + syst_JES_EtaIntercalibration_Stat83: 6.35662646e-14 + syst_JES_EtaIntercalibration_Stat84: 6.35662646e-14 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 syst_JES_EtaIntercalibration_Stat89: 0.0 - syst_JES_EtaIntercalibration_Stat9: 2.918814485369017e-13 + syst_JES_EtaIntercalibration_Stat9: 2.91881449e-13 syst_JES_EtaIntercalibration_Stat90: 0.0 syst_JES_EtaIntercalibration_Stat91: 0.0 syst_JES_EtaIntercalibration_Stat92: 0.0 - syst_JES_EtaIntercalibration_Stat93: 1.5493194473703608e-13 - syst_JES_EtaIntercalibration_Stat94: 1.761442395900303e-08 - syst_JES_EtaIntercalibration_Stat95: 7.711577252417303e-05 - syst_JES_EtaIntercalibration_Stat96: 6.824603540133301e-05 - syst_JES_EtaIntercalibration_Stat97: 6.014161526555468e-09 - syst_JES_EtaIntercalibration_Stat98: 1.0181478183446644e-09 - syst_JES_EtaIntercalibration_Stat99: 1.7902396142136952e-05 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.016886065261036982 - syst_JES_Flavour_Comp: 0.05201372222788906 - syst_JES_Gjet_Generator: 0.09648955422738775 - syst_JES_Gjet_OOC: 0.07385808080366021 - syst_JES_Gjet_Purity: 0.02434719850414006 - syst_JES_Gjet_Stat1: 2.573929742630906e-05 - syst_JES_Gjet_Stat10: 0.0024595082333669876 - syst_JES_Gjet_Stat11: 0.003901521127393776 - syst_JES_Gjet_Stat12: 0.012375235634120265 - syst_JES_Gjet_Stat13: 0.0200224324196637 - syst_JES_Gjet_Stat14: 0.0035412889274245895 - syst_JES_Gjet_Stat15: 0.005166694978417053 - syst_JES_Gjet_Stat2: 1.6577105620403101e-09 - syst_JES_Gjet_Stat3: 0.00011358558040085898 - syst_JES_Gjet_Stat4: 0.00022212374929304608 - syst_JES_Gjet_Stat5: 0.00019912450878784358 - syst_JES_Gjet_Stat6: 0.0007624606530831606 - syst_JES_Gjet_Stat7: 0.0010120411898732185 - syst_JES_Gjet_Stat8: 0.0006748244660650649 - syst_JES_Gjet_Stat9: 0.001395370749120104 - syst_JES_Gjet_Veto: 0.05312630680745651 - syst_JES_Gjet_dPhi: 0.005610149908870529 - syst_JES_LArESZee: 0.14194562929164112 - syst_JES_LArEsmear: 0.010422716476523767 - syst_JES_LAr_JVT: 0.014141371459303373 - syst_JES_MJB_Alpha: 0.0009236894756897471 - syst_JES_MJB_Asym: 0.003861421597028742 - syst_JES_MJB_Beta: 0.0005628990051510128 - syst_JES_MJB_Stat1: 0.00016828911759454325 - syst_JES_MJB_Stat10: 0.0001454922860910502 - syst_JES_MJB_Stat11: 9.75367073208851e-05 - syst_JES_MJB_Stat12: 1.3259011565252517e-05 - syst_JES_MJB_Stat13: 3.063521339896297e-06 - syst_JES_MJB_Stat14: 1.4452222389653433e-06 - syst_JES_MJB_Stat15: 9.346301233643178e-07 - syst_JES_MJB_Stat16: 1.411187906517059e-08 - syst_JES_MJB_Stat2: 0.0001894800050137217 - syst_JES_MJB_Stat3: 0.0015287602428111478 - syst_JES_MJB_Stat4: 0.0004947282284244553 - syst_JES_MJB_Stat5: 0.0004926312007983254 - syst_JES_MJB_Stat6: 0.00012306078528515898 - syst_JES_MJB_Stat7: 9.947598039225348e-05 - syst_JES_MJB_Stat8: 1.376031143361225e-05 - syst_JES_MJB_Stat9: 4.507159055325206e-09 - syst_JES_MJB_Threshold: 0.00667043716708283 - syst_JES_Pileup_MuOffset: 0.013380801470764 - syst_JES_Pileup_NPVOffset: 0.014137312359497473 - syst_JES_Pileup_Pt_term: 0.014773655844103043 - syst_JES_PunchThrough_MC15: 0.0016074345297709641 + syst_JES_EtaIntercalibration_Stat93: 1.54931945e-13 + syst_JES_EtaIntercalibration_Stat94: 1.76144240e-08 + syst_JES_EtaIntercalibration_Stat95: 7.71157725e-05 + syst_JES_EtaIntercalibration_Stat96: 6.82460354e-05 + syst_JES_EtaIntercalibration_Stat97: 6.01416153e-09 + syst_JES_EtaIntercalibration_Stat98: 1.01814782e-09 + syst_JES_EtaIntercalibration_Stat99: 1.79023961e-05 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.68860653e-02 + syst_JES_Flavour_Comp: 5.20137222e-02 + syst_JES_Gjet_Generator: 9.64895542e-02 + syst_JES_Gjet_OOC: 7.38580808e-02 + syst_JES_Gjet_Purity: 2.43471985e-02 + syst_JES_Gjet_Stat1: 2.57392974e-05 + syst_JES_Gjet_Stat10: 2.45950823e-03 + syst_JES_Gjet_Stat11: 3.90152113e-03 + syst_JES_Gjet_Stat12: 1.23752356e-02 + syst_JES_Gjet_Stat13: 2.00224324e-02 + syst_JES_Gjet_Stat14: 3.54128893e-03 + syst_JES_Gjet_Stat15: 5.16669498e-03 + syst_JES_Gjet_Stat2: 1.65771056e-09 + syst_JES_Gjet_Stat3: 1.13585580e-04 + syst_JES_Gjet_Stat4: 2.22123749e-04 + syst_JES_Gjet_Stat5: 1.99124509e-04 + syst_JES_Gjet_Stat6: 7.62460653e-04 + syst_JES_Gjet_Stat7: 1.01204119e-03 + syst_JES_Gjet_Stat8: 6.74824466e-04 + syst_JES_Gjet_Stat9: 1.39537075e-03 + syst_JES_Gjet_Veto: 5.31263068e-02 + syst_JES_Gjet_dPhi: 5.61014991e-03 + syst_JES_LArESZee: 1.41945629e-01 + syst_JES_LArEsmear: 1.04227165e-02 + syst_JES_LAr_JVT: 1.41413715e-02 + syst_JES_MJB_Alpha: 9.23689476e-04 + syst_JES_MJB_Asym: 3.86142160e-03 + syst_JES_MJB_Beta: 5.62899005e-04 + syst_JES_MJB_Stat1: 1.68289118e-04 + syst_JES_MJB_Stat10: 1.45492286e-04 + syst_JES_MJB_Stat11: 9.75367073e-05 + syst_JES_MJB_Stat12: 1.32590116e-05 + syst_JES_MJB_Stat13: 3.06352134e-06 + syst_JES_MJB_Stat14: 1.44522224e-06 + syst_JES_MJB_Stat15: 9.34630123e-07 + syst_JES_MJB_Stat16: 1.41118791e-08 + syst_JES_MJB_Stat2: 1.89480005e-04 + syst_JES_MJB_Stat3: 1.52876024e-03 + syst_JES_MJB_Stat4: 4.94728228e-04 + syst_JES_MJB_Stat5: 4.92631201e-04 + syst_JES_MJB_Stat6: 1.23060785e-04 + syst_JES_MJB_Stat7: 9.94759804e-05 + syst_JES_MJB_Stat8: 1.37603114e-05 + syst_JES_MJB_Stat9: 4.50715906e-09 + syst_JES_MJB_Threshold: 6.67043717e-03 + syst_JES_Pileup_MuOffset: 1.33808015e-02 + syst_JES_Pileup_NPVOffset: 1.41373124e-02 + syst_JES_Pileup_Pt_term: 1.47736558e-02 + syst_JES_PunchThrough_MC15: 1.60743453e-03 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.07052294856995132 - syst_JES_Zjet_MuScale: 0.004263677374051653 - syst_JES_Zjet_MuSmearID: 0.000928975321254553 - syst_JES_Zjet_MuSmearMS: 0.01942386869292521 - syst_JES_Zjet_OOC: 0.029433063041416536 - syst_JES_Zjet_Stat1: 0.0010766673894476418 - syst_JES_Zjet_Stat10: 0.0026894133189229205 - syst_JES_Zjet_Stat11: 0.002466014598496935 - syst_JES_Zjet_Stat12: 0.01659439363158534 - syst_JES_Zjet_Stat13: 0.02002966799525144 - syst_JES_Zjet_Stat2: 7.649131192495002e-05 - syst_JES_Zjet_Stat3: 0.00037586584042713963 - syst_JES_Zjet_Stat4: 0.00023119070050501601 - syst_JES_Zjet_Stat5: 0.0005963183797268034 - syst_JES_Zjet_Stat6: 0.0008526251755607502 - syst_JES_Zjet_Stat7: 0.0004428833339605364 - syst_JES_Zjet_Stat8: 0.0007354045332332403 - syst_JES_Zjet_Stat9: 0.0012605497372178537 - syst_JES_Zjet_Veto: 0.005799392446627491 - syst_JES_Zjet_dPhi: 0.005007781245222279 - syst_PRW: 0.0038936 + syst_JES_Zjet_MC: 7.05229486e-02 + syst_JES_Zjet_MuScale: 4.26367737e-03 + syst_JES_Zjet_MuSmearID: 9.28975321e-04 + syst_JES_Zjet_MuSmearMS: 1.94238687e-02 + syst_JES_Zjet_OOC: 2.94330630e-02 + syst_JES_Zjet_Stat1: 1.07666739e-03 + syst_JES_Zjet_Stat10: 2.68941332e-03 + syst_JES_Zjet_Stat11: 2.46601460e-03 + syst_JES_Zjet_Stat12: 1.65943936e-02 + syst_JES_Zjet_Stat13: 2.00296680e-02 + syst_JES_Zjet_Stat2: 7.64913119e-05 + syst_JES_Zjet_Stat3: 3.75865840e-04 + syst_JES_Zjet_Stat4: 2.31190701e-04 + syst_JES_Zjet_Stat5: 5.96318380e-04 + syst_JES_Zjet_Stat6: 8.52625176e-04 + syst_JES_Zjet_Stat7: 4.42883334e-04 + syst_JES_Zjet_Stat8: 7.35404533e-04 + syst_JES_Zjet_Stat9: 1.26054974e-03 + syst_JES_Zjet_Veto: 5.79939245e-03 + syst_JES_Zjet_dPhi: 5.00778125e-03 + syst_PRW: 3.89360000e-03 syst_Unfolding_bias: 0.004047 - syst_cleaning: 0.027366402759588265 + syst_cleaning: 2.73664028e-02 syst_lumi: 0.10582 - syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.009414355567429988 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.025224753715348738 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 0.009836506531792678 + syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 9.41435557e-03 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 2.52247537e-02 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 9.83650653e-03 syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 0.03809504666948185 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.013140385724932127 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.017857569823467024 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 3.80950467e-02 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.31403857e-02 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.78575698e-02 - stat: 0.012405 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.011443376807131712 - syst_JER_NP1: 0.0008499582622105629 - syst_JER_NP2: 0.0020225385039598135 - syst_JER_NP3: 0.003021774809611067 - syst_JER_NP4: 0.0010584344665589835 - syst_JER_NP5: 0.0007703045160843859 - syst_JER_NP6: 0.000362862520741097 - syst_JER_NP7: 0.0016769325418751944 - syst_JER_NP8: 0.0023838814987326867 - syst_JES_EtaIntercalibration_Modelling: 0.039125029853023754 - syst_JES_EtaIntercalibration_NonClosure: 5.6066484641004553e-08 + syst_JER_NP0: 1.14433768e-02 + syst_JER_NP1: 8.49958262e-04 + syst_JER_NP2: 2.02253850e-03 + syst_JER_NP3: 3.02177481e-03 + syst_JER_NP4: 1.05843447e-03 + syst_JER_NP5: 7.70304516e-04 + syst_JER_NP6: 3.62862521e-04 + syst_JER_NP7: 1.67693254e-03 + syst_JER_NP8: 2.38388150e-03 + syst_JES_EtaIntercalibration_Modelling: 3.91250299e-02 + syst_JES_EtaIntercalibration_NonClosure: 5.60664846e-08 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 5.118408191232407e-06 - syst_JES_EtaIntercalibration_Stat101: 4.0651588213992325e-11 - syst_JES_EtaIntercalibration_Stat102: 1.732801734958446e-14 - syst_JES_EtaIntercalibration_Stat103: 1.1157871302358708e-14 - syst_JES_EtaIntercalibration_Stat104: 1.1157871302358708e-14 - syst_JES_EtaIntercalibration_Stat105: 1.1157871302358708e-14 + syst_JES_EtaIntercalibration_Stat100: 5.11840819e-06 + syst_JES_EtaIntercalibration_Stat101: 4.06515882e-11 + syst_JES_EtaIntercalibration_Stat102: 1.73280173e-14 + syst_JES_EtaIntercalibration_Stat103: 1.11578713e-14 + syst_JES_EtaIntercalibration_Stat104: 1.11578713e-14 + syst_JES_EtaIntercalibration_Stat105: 1.11578713e-14 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 9.34008397981517e-10 - syst_JES_EtaIntercalibration_Stat111: 9.34008397981517e-10 + syst_JES_EtaIntercalibration_Stat110: 9.34008398e-10 + syst_JES_EtaIntercalibration_Stat111: 9.34008398e-10 syst_JES_EtaIntercalibration_Stat112: 0.0 - syst_JES_EtaIntercalibration_Stat113: 1.7603659810586975e-12 - syst_JES_EtaIntercalibration_Stat114: 3.41860538341295e-05 - syst_JES_EtaIntercalibration_Stat115: 4.055117014341263e-06 - syst_JES_EtaIntercalibration_Stat116: 3.4079853883929726e-06 - syst_JES_EtaIntercalibration_Stat117: 7.640894384821713e-07 - syst_JES_EtaIntercalibration_Stat118: 5.144419933002651e-06 - syst_JES_EtaIntercalibration_Stat119: 6.0408127822338605e-06 - syst_JES_EtaIntercalibration_Stat12: 3.128816611846637e-10 - syst_JES_EtaIntercalibration_Stat120: 1.6310564574839215e-05 - syst_JES_EtaIntercalibration_Stat121: 1.5045223491859468e-06 - syst_JES_EtaIntercalibration_Stat122: 2.3666356951746924e-12 - syst_JES_EtaIntercalibration_Stat123: 1.1157871302358708e-14 - syst_JES_EtaIntercalibration_Stat124: 1.1157871302358708e-14 - syst_JES_EtaIntercalibration_Stat125: 1.1157871302358708e-14 + syst_JES_EtaIntercalibration_Stat113: 1.76036598e-12 + syst_JES_EtaIntercalibration_Stat114: 3.41860538e-05 + syst_JES_EtaIntercalibration_Stat115: 4.05511701e-06 + syst_JES_EtaIntercalibration_Stat116: 3.40798539e-06 + syst_JES_EtaIntercalibration_Stat117: 7.64089438e-07 + syst_JES_EtaIntercalibration_Stat118: 5.14441993e-06 + syst_JES_EtaIntercalibration_Stat119: 6.04081278e-06 + syst_JES_EtaIntercalibration_Stat12: 3.12881661e-10 + syst_JES_EtaIntercalibration_Stat120: 1.63105646e-05 + syst_JES_EtaIntercalibration_Stat121: 1.50452235e-06 + syst_JES_EtaIntercalibration_Stat122: 2.36663570e-12 + syst_JES_EtaIntercalibration_Stat123: 1.11578713e-14 + syst_JES_EtaIntercalibration_Stat124: 1.11578713e-14 + syst_JES_EtaIntercalibration_Stat125: 1.11578713e-14 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 3.1557965713904946e-07 - syst_JES_EtaIntercalibration_Stat129: 3.1526955081594467e-07 - syst_JES_EtaIntercalibration_Stat13: 3.8880423357065893e-10 - syst_JES_EtaIntercalibration_Stat130: 9.34008397981517e-10 - syst_JES_EtaIntercalibration_Stat131: 9.248285287014022e-16 - syst_JES_EtaIntercalibration_Stat132: 6.693578276831234e-08 - syst_JES_EtaIntercalibration_Stat133: 3.4199360739639565e-06 - syst_JES_EtaIntercalibration_Stat134: 0.00012032142151337808 - syst_JES_EtaIntercalibration_Stat135: 7.425161749079949e-05 - syst_JES_EtaIntercalibration_Stat136: 5.498151211998448e-06 - syst_JES_EtaIntercalibration_Stat137: 1.2685845773932458e-05 - syst_JES_EtaIntercalibration_Stat138: 6.34923292276319e-05 - syst_JES_EtaIntercalibration_Stat139: 0.00011127397842712375 - syst_JES_EtaIntercalibration_Stat14: 1.7528354172597038e-15 - syst_JES_EtaIntercalibration_Stat140: 7.921923073818629e-06 - syst_JES_EtaIntercalibration_Stat141: 2.843161404459361e-07 + syst_JES_EtaIntercalibration_Stat128: 3.15579657e-07 + syst_JES_EtaIntercalibration_Stat129: 3.15269551e-07 + syst_JES_EtaIntercalibration_Stat13: 3.88804234e-10 + syst_JES_EtaIntercalibration_Stat130: 9.34008398e-10 + syst_JES_EtaIntercalibration_Stat131: 9.24828529e-16 + syst_JES_EtaIntercalibration_Stat132: 6.69357828e-08 + syst_JES_EtaIntercalibration_Stat133: 3.41993607e-06 + syst_JES_EtaIntercalibration_Stat134: 1.20321422e-04 + syst_JES_EtaIntercalibration_Stat135: 7.42516175e-05 + syst_JES_EtaIntercalibration_Stat136: 5.49815121e-06 + syst_JES_EtaIntercalibration_Stat137: 1.26858458e-05 + syst_JES_EtaIntercalibration_Stat138: 6.34923292e-05 + syst_JES_EtaIntercalibration_Stat139: 1.11273978e-04 + syst_JES_EtaIntercalibration_Stat14: 1.75283542e-15 + syst_JES_EtaIntercalibration_Stat140: 7.92192307e-06 + syst_JES_EtaIntercalibration_Stat141: 2.84316140e-07 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 1.1157871302358708e-14 - syst_JES_EtaIntercalibration_Stat144: 1.1157871302358708e-14 + syst_JES_EtaIntercalibration_Stat143: 1.11578713e-14 + syst_JES_EtaIntercalibration_Stat144: 1.11578713e-14 syst_JES_EtaIntercalibration_Stat145: 0.0 - syst_JES_EtaIntercalibration_Stat146: 3.1557965713904946e-07 - syst_JES_EtaIntercalibration_Stat147: 3.1526955081594467e-07 + syst_JES_EtaIntercalibration_Stat146: 3.15579657e-07 + syst_JES_EtaIntercalibration_Stat147: 3.15269551e-07 syst_JES_EtaIntercalibration_Stat148: 0.0 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 2.6497645027435926e-11 - syst_JES_EtaIntercalibration_Stat151: 3.313640282227388e-06 - syst_JES_EtaIntercalibration_Stat152: 0.00013933008316584038 - syst_JES_EtaIntercalibration_Stat153: 0.00014343306827576408 - syst_JES_EtaIntercalibration_Stat154: 5.694207649006137e-06 - syst_JES_EtaIntercalibration_Stat155: 1.4977376272231394e-05 - syst_JES_EtaIntercalibration_Stat156: 6.518757842373038e-05 - syst_JES_EtaIntercalibration_Stat157: 8.27389090754767e-05 - syst_JES_EtaIntercalibration_Stat158: 6.223629387262708e-05 - syst_JES_EtaIntercalibration_Stat159: 2.8545224273933926e-07 + syst_JES_EtaIntercalibration_Stat150: 2.64976450e-11 + syst_JES_EtaIntercalibration_Stat151: 3.31364028e-06 + syst_JES_EtaIntercalibration_Stat152: 1.39330083e-04 + syst_JES_EtaIntercalibration_Stat153: 1.43433068e-04 + syst_JES_EtaIntercalibration_Stat154: 5.69420765e-06 + syst_JES_EtaIntercalibration_Stat155: 1.49773763e-05 + syst_JES_EtaIntercalibration_Stat156: 6.51875784e-05 + syst_JES_EtaIntercalibration_Stat157: 8.27389091e-05 + syst_JES_EtaIntercalibration_Stat158: 6.22362939e-05 + syst_JES_EtaIntercalibration_Stat159: 2.85452243e-07 syst_JES_EtaIntercalibration_Stat16: 0.0 syst_JES_EtaIntercalibration_Stat160: 0.0 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 - syst_JES_EtaIntercalibration_Stat164: 3.1557965713904946e-07 + syst_JES_EtaIntercalibration_Stat164: 3.15579657e-07 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 - syst_JES_EtaIntercalibration_Stat168: 1.6341899369412359e-09 - syst_JES_EtaIntercalibration_Stat169: 5.3807870750290795e-05 + syst_JES_EtaIntercalibration_Stat168: 1.63418994e-09 + syst_JES_EtaIntercalibration_Stat169: 5.38078708e-05 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 0.00038034945444945754 - syst_JES_EtaIntercalibration_Stat171: 0.0002643516218978049 - syst_JES_EtaIntercalibration_Stat172: 6.564353033620297e-05 - syst_JES_EtaIntercalibration_Stat173: 1.2620027940234524e-05 - syst_JES_EtaIntercalibration_Stat174: 0.00024557992319202315 - syst_JES_EtaIntercalibration_Stat175: 0.0003873991352597473 - syst_JES_EtaIntercalibration_Stat176: 1.4487103255999801e-05 - syst_JES_EtaIntercalibration_Stat177: 1.7315950067784326e-06 + syst_JES_EtaIntercalibration_Stat170: 3.80349454e-04 + syst_JES_EtaIntercalibration_Stat171: 2.64351622e-04 + syst_JES_EtaIntercalibration_Stat172: 6.56435303e-05 + syst_JES_EtaIntercalibration_Stat173: 1.26200279e-05 + syst_JES_EtaIntercalibration_Stat174: 2.45579923e-04 + syst_JES_EtaIntercalibration_Stat175: 3.87399135e-04 + syst_JES_EtaIntercalibration_Stat176: 1.44871033e-05 + syst_JES_EtaIntercalibration_Stat177: 1.73159501e-06 syst_JES_EtaIntercalibration_Stat178: 0.0 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 @@ -17894,17 +17894,17 @@ bins: syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 syst_JES_EtaIntercalibration_Stat184: 0.0 - syst_JES_EtaIntercalibration_Stat185: 2.934094068021678e-06 - syst_JES_EtaIntercalibration_Stat186: 0.00014018624326231157 - syst_JES_EtaIntercalibration_Stat187: 0.0017915068378323317 - syst_JES_EtaIntercalibration_Stat188: 0.0015880472285168348 - syst_JES_EtaIntercalibration_Stat189: 0.00010157960868205784 + syst_JES_EtaIntercalibration_Stat185: 2.93409407e-06 + syst_JES_EtaIntercalibration_Stat186: 1.40186243e-04 + syst_JES_EtaIntercalibration_Stat187: 1.79150684e-03 + syst_JES_EtaIntercalibration_Stat188: 1.58804723e-03 + syst_JES_EtaIntercalibration_Stat189: 1.01579609e-04 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 8.11739631901757e-05 - syst_JES_EtaIntercalibration_Stat191: 0.0011483429572649454 - syst_JES_EtaIntercalibration_Stat192: 0.002006610575074297 - syst_JES_EtaIntercalibration_Stat193: 0.00010880025402084317 - syst_JES_EtaIntercalibration_Stat194: 9.909062670101547e-07 + syst_JES_EtaIntercalibration_Stat190: 8.11739632e-05 + syst_JES_EtaIntercalibration_Stat191: 1.14834296e-03 + syst_JES_EtaIntercalibration_Stat192: 2.00661058e-03 + syst_JES_EtaIntercalibration_Stat193: 1.08800254e-04 + syst_JES_EtaIntercalibration_Stat194: 9.90906267e-07 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 syst_JES_EtaIntercalibration_Stat197: 0.0 @@ -17912,70 +17912,70 @@ bins: syst_JES_EtaIntercalibration_Stat199: 0.0 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 1.7935386112375722e-06 - syst_JES_EtaIntercalibration_Stat201: 0.00014723514356294152 - syst_JES_EtaIntercalibration_Stat202: 0.002408026577926415 - syst_JES_EtaIntercalibration_Stat203: 0.002362060752817336 - syst_JES_EtaIntercalibration_Stat204: 0.00019152762202878204 - syst_JES_EtaIntercalibration_Stat205: 0.0001214947038969189 - syst_JES_EtaIntercalibration_Stat206: 0.002397544368723966 - syst_JES_EtaIntercalibration_Stat207: 0.002501776318938206 - syst_JES_EtaIntercalibration_Stat208: 0.0002987464937032735 - syst_JES_EtaIntercalibration_Stat209: 2.667082638952719e-06 + syst_JES_EtaIntercalibration_Stat200: 1.79353861e-06 + syst_JES_EtaIntercalibration_Stat201: 1.47235144e-04 + syst_JES_EtaIntercalibration_Stat202: 2.40802658e-03 + syst_JES_EtaIntercalibration_Stat203: 2.36206075e-03 + syst_JES_EtaIntercalibration_Stat204: 1.91527622e-04 + syst_JES_EtaIntercalibration_Stat205: 1.21494704e-04 + syst_JES_EtaIntercalibration_Stat206: 2.39754437e-03 + syst_JES_EtaIntercalibration_Stat207: 2.50177632e-03 + syst_JES_EtaIntercalibration_Stat208: 2.98746494e-04 + syst_JES_EtaIntercalibration_Stat209: 2.66708264e-06 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 syst_JES_EtaIntercalibration_Stat211: 0.0 syst_JES_EtaIntercalibration_Stat212: 0.0 - syst_JES_EtaIntercalibration_Stat213: 3.292801790269193e-06 - syst_JES_EtaIntercalibration_Stat214: 2.0233134624916623e-05 - syst_JES_EtaIntercalibration_Stat215: 0.0009317015455605942 - syst_JES_EtaIntercalibration_Stat216: 0.0011635298309454728 - syst_JES_EtaIntercalibration_Stat217: 7.746578260754873e-05 - syst_JES_EtaIntercalibration_Stat218: 2.7989851674312244e-05 - syst_JES_EtaIntercalibration_Stat219: 0.0011462193899947775 + syst_JES_EtaIntercalibration_Stat213: 3.29280179e-06 + syst_JES_EtaIntercalibration_Stat214: 2.02331346e-05 + syst_JES_EtaIntercalibration_Stat215: 9.31701546e-04 + syst_JES_EtaIntercalibration_Stat216: 1.16352983e-03 + syst_JES_EtaIntercalibration_Stat217: 7.74657826e-05 + syst_JES_EtaIntercalibration_Stat218: 2.79898517e-05 + syst_JES_EtaIntercalibration_Stat219: 1.14621939e-03 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 0.0011583411705969877 - syst_JES_EtaIntercalibration_Stat221: 4.837744412430239e-05 - syst_JES_EtaIntercalibration_Stat222: 4.072996194449487e-06 + syst_JES_EtaIntercalibration_Stat220: 1.15834117e-03 + syst_JES_EtaIntercalibration_Stat221: 4.83774441e-05 + syst_JES_EtaIntercalibration_Stat222: 4.07299619e-06 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 - syst_JES_EtaIntercalibration_Stat225: 1.107906248023678e-06 - syst_JES_EtaIntercalibration_Stat226: 4.302289579979479e-05 - syst_JES_EtaIntercalibration_Stat227: 0.00026017906814346155 - syst_JES_EtaIntercalibration_Stat228: 0.00019932508622850264 - syst_JES_EtaIntercalibration_Stat229: 1.233769609619539e-05 + syst_JES_EtaIntercalibration_Stat225: 1.10790625e-06 + syst_JES_EtaIntercalibration_Stat226: 4.30228958e-05 + syst_JES_EtaIntercalibration_Stat227: 2.60179068e-04 + syst_JES_EtaIntercalibration_Stat228: 1.99325086e-04 + syst_JES_EtaIntercalibration_Stat229: 1.23376961e-05 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 4.960862500614183e-05 - syst_JES_EtaIntercalibration_Stat231: 0.00021010127956535632 - syst_JES_EtaIntercalibration_Stat232: 0.0002168119634614289 - syst_JES_EtaIntercalibration_Stat233: 8.097790485681881e-05 - syst_JES_EtaIntercalibration_Stat234: 1.2481469067381452e-05 + syst_JES_EtaIntercalibration_Stat230: 4.96086250e-05 + syst_JES_EtaIntercalibration_Stat231: 2.10101280e-04 + syst_JES_EtaIntercalibration_Stat232: 2.16811963e-04 + syst_JES_EtaIntercalibration_Stat233: 8.09779049e-05 + syst_JES_EtaIntercalibration_Stat234: 1.24814691e-05 syst_JES_EtaIntercalibration_Stat235: 0.0 - syst_JES_EtaIntercalibration_Stat236: 6.4111860642162e-22 - syst_JES_EtaIntercalibration_Stat237: 6.633611459830912e-06 - syst_JES_EtaIntercalibration_Stat238: 5.3923502297235854e-05 - syst_JES_EtaIntercalibration_Stat239: 2.537527536796399e-05 + syst_JES_EtaIntercalibration_Stat236: 6.41118606e-22 + syst_JES_EtaIntercalibration_Stat237: 6.63361146e-06 + syst_JES_EtaIntercalibration_Stat238: 5.39235023e-05 + syst_JES_EtaIntercalibration_Stat239: 2.53752754e-05 syst_JES_EtaIntercalibration_Stat24: 0.0 - syst_JES_EtaIntercalibration_Stat240: 6.295797068882095e-22 - syst_JES_EtaIntercalibration_Stat241: 6.3479662097399355e-06 - syst_JES_EtaIntercalibration_Stat242: 4.098163979149688e-05 - syst_JES_EtaIntercalibration_Stat243: 4.107033937953277e-05 - syst_JES_EtaIntercalibration_Stat244: 7.276345442129777e-08 - syst_JES_EtaIntercalibration_Stat245: 1.8403039830419322e-07 + syst_JES_EtaIntercalibration_Stat240: 6.29579707e-22 + syst_JES_EtaIntercalibration_Stat241: 6.34796621e-06 + syst_JES_EtaIntercalibration_Stat242: 4.09816398e-05 + syst_JES_EtaIntercalibration_Stat243: 4.10703394e-05 + syst_JES_EtaIntercalibration_Stat244: 7.27634544e-08 + syst_JES_EtaIntercalibration_Stat245: 1.84030398e-07 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 syst_JES_EtaIntercalibration_Stat27: 0.0 - syst_JES_EtaIntercalibration_Stat28: 2.2100968304578873e-16 - syst_JES_EtaIntercalibration_Stat29: 2.599963785805487e-13 + syst_JES_EtaIntercalibration_Stat28: 2.21009683e-16 + syst_JES_EtaIntercalibration_Stat29: 2.59996379e-13 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 1.059128541537806e-11 - syst_JES_EtaIntercalibration_Stat31: 4.704143147269224e-12 - syst_JES_EtaIntercalibration_Stat32: 1.8227855057576025e-15 - syst_JES_EtaIntercalibration_Stat33: 4.3439609148794146e-14 - syst_JES_EtaIntercalibration_Stat34: 5.598977077514935e-06 - syst_JES_EtaIntercalibration_Stat35: 2.743574870516136e-07 - syst_JES_EtaIntercalibration_Stat36: 2.324216575364697e-12 - syst_JES_EtaIntercalibration_Stat37: 1.6134053272504092e-16 + syst_JES_EtaIntercalibration_Stat30: 1.05912854e-11 + syst_JES_EtaIntercalibration_Stat31: 4.70414315e-12 + syst_JES_EtaIntercalibration_Stat32: 1.82278551e-15 + syst_JES_EtaIntercalibration_Stat33: 4.34396091e-14 + syst_JES_EtaIntercalibration_Stat34: 5.59897708e-06 + syst_JES_EtaIntercalibration_Stat35: 2.74357487e-07 + syst_JES_EtaIntercalibration_Stat36: 2.32421658e-12 + syst_JES_EtaIntercalibration_Stat37: 1.61340533e-16 syst_JES_EtaIntercalibration_Stat38: 0.0 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 @@ -17990,20 +17990,20 @@ bins: syst_JES_EtaIntercalibration_Stat48: 0.0 syst_JES_EtaIntercalibration_Stat49: 0.0 syst_JES_EtaIntercalibration_Stat5: 0.0 - syst_JES_EtaIntercalibration_Stat50: 2.238675668782774e-16 - syst_JES_EtaIntercalibration_Stat51: 6.704598776213234e-13 - syst_JES_EtaIntercalibration_Stat52: 1.1673276350279726e-09 - syst_JES_EtaIntercalibration_Stat53: 8.753976564253528e-11 - syst_JES_EtaIntercalibration_Stat54: 2.4484069821008106e-13 - syst_JES_EtaIntercalibration_Stat55: 3.1018775353122824e-10 - syst_JES_EtaIntercalibration_Stat56: 5.603180559200745e-06 - syst_JES_EtaIntercalibration_Stat57: 8.966825750221911e-06 - syst_JES_EtaIntercalibration_Stat58: 3.3743347355441784e-12 - syst_JES_EtaIntercalibration_Stat59: 7.114373812922679e-16 + syst_JES_EtaIntercalibration_Stat50: 2.23867567e-16 + syst_JES_EtaIntercalibration_Stat51: 6.70459878e-13 + syst_JES_EtaIntercalibration_Stat52: 1.16732764e-09 + syst_JES_EtaIntercalibration_Stat53: 8.75397656e-11 + syst_JES_EtaIntercalibration_Stat54: 2.44840698e-13 + syst_JES_EtaIntercalibration_Stat55: 3.10187754e-10 + syst_JES_EtaIntercalibration_Stat56: 5.60318056e-06 + syst_JES_EtaIntercalibration_Stat57: 8.96682575e-06 + syst_JES_EtaIntercalibration_Stat58: 3.37433474e-12 + syst_JES_EtaIntercalibration_Stat59: 7.11437381e-16 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 1.1157871302358708e-14 - syst_JES_EtaIntercalibration_Stat62: 1.1157871302358708e-14 + syst_JES_EtaIntercalibration_Stat61: 1.11578713e-14 + syst_JES_EtaIntercalibration_Stat62: 1.11578713e-14 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 @@ -18011,223 +18011,223 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 2.2100968304578873e-16 + syst_JES_EtaIntercalibration_Stat7: 2.21009683e-16 syst_JES_EtaIntercalibration_Stat70: 0.0 syst_JES_EtaIntercalibration_Stat71: 0.0 - syst_JES_EtaIntercalibration_Stat72: 2.2672545071076603e-14 - syst_JES_EtaIntercalibration_Stat73: 1.8526173181947211e-09 - syst_JES_EtaIntercalibration_Stat74: 5.1421970090613994e-05 - syst_JES_EtaIntercalibration_Stat75: 4.825178914279034e-05 - syst_JES_EtaIntercalibration_Stat76: 5.1165322595289094e-11 - syst_JES_EtaIntercalibration_Stat77: 2.724384884703334e-10 - syst_JES_EtaIntercalibration_Stat78: 5.38147014969655e-06 - syst_JES_EtaIntercalibration_Stat79: 2.3172205159994483e-05 - syst_JES_EtaIntercalibration_Stat8: 1.2892484118663866e-13 - syst_JES_EtaIntercalibration_Stat80: 3.593613529972303e-11 - syst_JES_EtaIntercalibration_Stat81: 2.0793269944864373e-15 - syst_JES_EtaIntercalibration_Stat82: 1.1157871302358708e-14 - syst_JES_EtaIntercalibration_Stat83: 1.1157871302358708e-14 - syst_JES_EtaIntercalibration_Stat84: 1.1157871302358708e-14 + syst_JES_EtaIntercalibration_Stat72: 2.26725451e-14 + syst_JES_EtaIntercalibration_Stat73: 1.85261732e-09 + syst_JES_EtaIntercalibration_Stat74: 5.14219701e-05 + syst_JES_EtaIntercalibration_Stat75: 4.82517891e-05 + syst_JES_EtaIntercalibration_Stat76: 5.11653226e-11 + syst_JES_EtaIntercalibration_Stat77: 2.72438488e-10 + syst_JES_EtaIntercalibration_Stat78: 5.38147015e-06 + syst_JES_EtaIntercalibration_Stat79: 2.31722052e-05 + syst_JES_EtaIntercalibration_Stat8: 1.28924841e-13 + syst_JES_EtaIntercalibration_Stat80: 3.59361353e-11 + syst_JES_EtaIntercalibration_Stat81: 2.07932699e-15 + syst_JES_EtaIntercalibration_Stat82: 1.11578713e-14 + syst_JES_EtaIntercalibration_Stat83: 1.11578713e-14 + syst_JES_EtaIntercalibration_Stat84: 1.11578713e-14 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 syst_JES_EtaIntercalibration_Stat89: 0.0 - syst_JES_EtaIntercalibration_Stat9: 4.0772051702115756e-14 + syst_JES_EtaIntercalibration_Stat9: 4.07720517e-14 syst_JES_EtaIntercalibration_Stat90: 0.0 syst_JES_EtaIntercalibration_Stat91: 0.0 syst_JES_EtaIntercalibration_Stat92: 0.0 - syst_JES_EtaIntercalibration_Stat93: 2.0706667404485928e-14 - syst_JES_EtaIntercalibration_Stat94: 2.3832046923575406e-09 - syst_JES_EtaIntercalibration_Stat95: 5.155777294210834e-05 - syst_JES_EtaIntercalibration_Stat96: 4.949435014794618e-05 - syst_JES_EtaIntercalibration_Stat97: 8.11950785313987e-10 - syst_JES_EtaIntercalibration_Stat98: 1.3114123989043263e-10 - syst_JES_EtaIntercalibration_Stat99: 1.1574136109095789e-05 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.011955956548934093 - syst_JES_Flavour_Comp: 0.03785771436246515 - syst_JES_Gjet_Generator: 0.0629826744033627 - syst_JES_Gjet_OOC: 0.04919505158041812 - syst_JES_Gjet_Purity: 0.015150042904229678 - syst_JES_Gjet_Stat1: 5.2506657435033905e-05 - syst_JES_Gjet_Stat10: 0.0014351851030442032 - syst_JES_Gjet_Stat11: 0.002149204678479925 - syst_JES_Gjet_Stat12: 0.007230518290551515 - syst_JES_Gjet_Stat13: 0.014356220489738935 - syst_JES_Gjet_Stat14: 0.007229189218024383 - syst_JES_Gjet_Stat15: 0.004190785487232674 - syst_JES_Gjet_Stat2: 7.727170940907157e-08 - syst_JES_Gjet_Stat3: 8.446581379469447e-05 - syst_JES_Gjet_Stat4: 0.000142617565800991 - syst_JES_Gjet_Stat5: 0.00012784880474607494 - syst_JES_Gjet_Stat6: 0.0005632615444888813 - syst_JES_Gjet_Stat7: 0.0006861914073347172 - syst_JES_Gjet_Stat8: 0.00046931014265621834 - syst_JES_Gjet_Stat9: 0.0008897046181177211 - syst_JES_Gjet_Veto: 0.038567540134159445 - syst_JES_Gjet_dPhi: 0.004136544058752426 - syst_JES_LArESZee: 0.0939749131417529 - syst_JES_LArEsmear: 0.007049262301829887 - syst_JES_LAr_JVT: 0.009263116160342588 - syst_JES_MJB_Alpha: 0.000597825442750641 - syst_JES_MJB_Asym: 0.002739956705862339 - syst_JES_MJB_Beta: 0.000399899146660755 - syst_JES_MJB_Stat1: 7.717359837891453e-05 - syst_JES_MJB_Stat10: 0.00011003026552158274 - syst_JES_MJB_Stat11: 0.00011550607516490204 - syst_JES_MJB_Stat12: 3.556660793497182e-05 - syst_JES_MJB_Stat13: 9.471525471116045e-06 - syst_JES_MJB_Stat14: 1.0033713220936704e-05 - syst_JES_MJB_Stat15: 1.7010478204624346e-06 - syst_JES_MJB_Stat16: 9.56140272135841e-08 - syst_JES_MJB_Stat2: 0.0001216639538852819 - syst_JES_MJB_Stat3: 0.0011058804851791174 - syst_JES_MJB_Stat4: 0.00034143114488868764 - syst_JES_MJB_Stat5: 0.0004115454152338475 - syst_JES_MJB_Stat6: 8.454001064584744e-05 - syst_JES_MJB_Stat7: 7.282858436081262e-05 - syst_JES_MJB_Stat8: 4.351162718170857e-05 - syst_JES_MJB_Stat9: 2.1052736164213904e-07 - syst_JES_MJB_Threshold: 0.004644888884569791 - syst_JES_Pileup_MuOffset: 0.009540922531390768 - syst_JES_Pileup_NPVOffset: 0.009870444873459353 - syst_JES_Pileup_Pt_term: 0.009679470582113464 - syst_JES_PunchThrough_MC15: 0.0014233103342208965 - syst_JES_SingleParticle_HighPt: 1.2658755863038042e-43 - syst_JES_Zjet_MC: 0.04231061096226336 - syst_JES_Zjet_MuScale: 0.002529697412735365 - syst_JES_Zjet_MuSmearID: 0.0006454974883762136 - syst_JES_Zjet_MuSmearMS: 0.011987771352507521 - syst_JES_Zjet_OOC: 0.01811157295764231 - syst_JES_Zjet_Stat1: 0.0007859979818676382 - syst_JES_Zjet_Stat10: 0.0015462327145355577 - syst_JES_Zjet_Stat11: 0.0017740661628022783 - syst_JES_Zjet_Stat12: 0.008810763190552792 - syst_JES_Zjet_Stat13: 0.012760340160042755 - syst_JES_Zjet_Stat2: 4.9121529075854314e-05 - syst_JES_Zjet_Stat3: 0.00027141571435714625 - syst_JES_Zjet_Stat4: 0.00014893833455494258 - syst_JES_Zjet_Stat5: 0.0004232212660063291 - syst_JES_Zjet_Stat6: 0.0005906128427320219 - syst_JES_Zjet_Stat7: 0.00029390615423975045 - syst_JES_Zjet_Stat8: 0.00047325691489929654 - syst_JES_Zjet_Stat9: 0.0008368557462310933 - syst_JES_Zjet_Veto: 0.0037873701522296442 - syst_JES_Zjet_dPhi: 0.003147878134553496 + syst_JES_EtaIntercalibration_Stat93: 2.07066674e-14 + syst_JES_EtaIntercalibration_Stat94: 2.38320469e-09 + syst_JES_EtaIntercalibration_Stat95: 5.15577729e-05 + syst_JES_EtaIntercalibration_Stat96: 4.94943501e-05 + syst_JES_EtaIntercalibration_Stat97: 8.11950785e-10 + syst_JES_EtaIntercalibration_Stat98: 1.31141240e-10 + syst_JES_EtaIntercalibration_Stat99: 1.15741361e-05 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.19559565e-02 + syst_JES_Flavour_Comp: 3.78577144e-02 + syst_JES_Gjet_Generator: 6.29826744e-02 + syst_JES_Gjet_OOC: 4.91950516e-02 + syst_JES_Gjet_Purity: 1.51500429e-02 + syst_JES_Gjet_Stat1: 5.25066574e-05 + syst_JES_Gjet_Stat10: 1.43518510e-03 + syst_JES_Gjet_Stat11: 2.14920468e-03 + syst_JES_Gjet_Stat12: 7.23051829e-03 + syst_JES_Gjet_Stat13: 1.43562205e-02 + syst_JES_Gjet_Stat14: 7.22918922e-03 + syst_JES_Gjet_Stat15: 4.19078549e-03 + syst_JES_Gjet_Stat2: 7.72717094e-08 + syst_JES_Gjet_Stat3: 8.44658138e-05 + syst_JES_Gjet_Stat4: 1.42617566e-04 + syst_JES_Gjet_Stat5: 1.27848805e-04 + syst_JES_Gjet_Stat6: 5.63261544e-04 + syst_JES_Gjet_Stat7: 6.86191407e-04 + syst_JES_Gjet_Stat8: 4.69310143e-04 + syst_JES_Gjet_Stat9: 8.89704618e-04 + syst_JES_Gjet_Veto: 3.85675401e-02 + syst_JES_Gjet_dPhi: 4.13654406e-03 + syst_JES_LArESZee: 9.39749131e-02 + syst_JES_LArEsmear: 7.04926230e-03 + syst_JES_LAr_JVT: 9.26311616e-03 + syst_JES_MJB_Alpha: 5.97825443e-04 + syst_JES_MJB_Asym: 2.73995671e-03 + syst_JES_MJB_Beta: 3.99899147e-04 + syst_JES_MJB_Stat1: 7.71735984e-05 + syst_JES_MJB_Stat10: 1.10030266e-04 + syst_JES_MJB_Stat11: 1.15506075e-04 + syst_JES_MJB_Stat12: 3.55666079e-05 + syst_JES_MJB_Stat13: 9.47152547e-06 + syst_JES_MJB_Stat14: 1.00337132e-05 + syst_JES_MJB_Stat15: 1.70104782e-06 + syst_JES_MJB_Stat16: 9.56140272e-08 + syst_JES_MJB_Stat2: 1.21663954e-04 + syst_JES_MJB_Stat3: 1.10588049e-03 + syst_JES_MJB_Stat4: 3.41431145e-04 + syst_JES_MJB_Stat5: 4.11545415e-04 + syst_JES_MJB_Stat6: 8.45400106e-05 + syst_JES_MJB_Stat7: 7.28285844e-05 + syst_JES_MJB_Stat8: 4.35116272e-05 + syst_JES_MJB_Stat9: 2.10527362e-07 + syst_JES_MJB_Threshold: 4.64488888e-03 + syst_JES_Pileup_MuOffset: 9.54092253e-03 + syst_JES_Pileup_NPVOffset: 9.87044487e-03 + syst_JES_Pileup_Pt_term: 9.67947058e-03 + syst_JES_PunchThrough_MC15: 1.42331033e-03 + syst_JES_SingleParticle_HighPt: 1.26587559e-43 + syst_JES_Zjet_MC: 4.23106110e-02 + syst_JES_Zjet_MuScale: 2.52969741e-03 + syst_JES_Zjet_MuSmearID: 6.45497488e-04 + syst_JES_Zjet_MuSmearMS: 1.19877714e-02 + syst_JES_Zjet_OOC: 1.81115730e-02 + syst_JES_Zjet_Stat1: 7.85997982e-04 + syst_JES_Zjet_Stat10: 1.54623271e-03 + syst_JES_Zjet_Stat11: 1.77406616e-03 + syst_JES_Zjet_Stat12: 8.81076319e-03 + syst_JES_Zjet_Stat13: 1.27603402e-02 + syst_JES_Zjet_Stat2: 4.91215291e-05 + syst_JES_Zjet_Stat3: 2.71415714e-04 + syst_JES_Zjet_Stat4: 1.48938335e-04 + syst_JES_Zjet_Stat5: 4.23221266e-04 + syst_JES_Zjet_Stat6: 5.90612843e-04 + syst_JES_Zjet_Stat7: 2.93906154e-04 + syst_JES_Zjet_Stat8: 4.73256915e-04 + syst_JES_Zjet_Stat9: 8.36855746e-04 + syst_JES_Zjet_Veto: 3.78737015e-03 + syst_JES_Zjet_dPhi: 3.14787813e-03 syst_PRW: 0.0025 syst_Unfolding_bias: 0.002599 - syst_cleaning: 0.01786610408007297 + syst_cleaning: 1.78661041e-02 syst_lumi: 0.06795 - syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.006099649723549705 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.01585864038939026 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 0.005289196158207786 + syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 6.09964972e-03 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.58586404e-02 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 5.28919616e-03 syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 0.020482209353485284 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.008712568780216316 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.01173473581935273 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 2.04822094e-02 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 8.71256878e-03 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.17347358e-02 - stat: 0.007971 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.006969328715880749 - syst_JER_NP1: 0.0005778526866771496 - syst_JER_NP2: 0.0015145385435834902 - syst_JER_NP3: 0.0018433900157047611 - syst_JER_NP4: 0.0006608733974824528 - syst_JER_NP5: 0.00046887381276842496 - syst_JER_NP6: 0.0004127551871574329 - syst_JER_NP7: 0.0009315086043617632 - syst_JER_NP8: 0.0014314746967725278 - syst_JES_EtaIntercalibration_Modelling: 0.026589221030334828 - syst_JES_EtaIntercalibration_NonClosure: 9.423222418578477e-09 + syst_JER_NP0: 6.96932872e-03 + syst_JER_NP1: 5.77852687e-04 + syst_JER_NP2: 1.51453854e-03 + syst_JER_NP3: 1.84339002e-03 + syst_JER_NP4: 6.60873397e-04 + syst_JER_NP5: 4.68873813e-04 + syst_JER_NP6: 4.12755187e-04 + syst_JER_NP7: 9.31508604e-04 + syst_JER_NP8: 1.43147470e-03 + syst_JES_EtaIntercalibration_Modelling: 2.65892210e-02 + syst_JES_EtaIntercalibration_NonClosure: 9.42322242e-09 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 3.7658331357981062e-06 - syst_JES_EtaIntercalibration_Stat101: 5.269104098421287e-12 - syst_JES_EtaIntercalibration_Stat102: 2.7128979842964973e-15 - syst_JES_EtaIntercalibration_Stat103: 2.068934689641024e-15 - syst_JES_EtaIntercalibration_Stat104: 2.068934689641024e-15 - syst_JES_EtaIntercalibration_Stat105: 2.068934689641024e-15 + syst_JES_EtaIntercalibration_Stat100: 3.76583314e-06 + syst_JES_EtaIntercalibration_Stat101: 5.26910410e-12 + syst_JES_EtaIntercalibration_Stat102: 2.71289798e-15 + syst_JES_EtaIntercalibration_Stat103: 2.06893469e-15 + syst_JES_EtaIntercalibration_Stat104: 2.06893469e-15 + syst_JES_EtaIntercalibration_Stat105: 2.06893469e-15 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 1.2051609519064248e-10 - syst_JES_EtaIntercalibration_Stat111: 1.2051609519064248e-10 + syst_JES_EtaIntercalibration_Stat110: 1.20516095e-10 + syst_JES_EtaIntercalibration_Stat111: 1.20516095e-10 syst_JES_EtaIntercalibration_Stat112: 0.0 - syst_JES_EtaIntercalibration_Stat113: 2.4240246639009266e-13 - syst_JES_EtaIntercalibration_Stat114: 2.1581214207442083e-05 - syst_JES_EtaIntercalibration_Stat115: 1.4052319044200498e-06 - syst_JES_EtaIntercalibration_Stat116: 2.179636380224922e-06 - syst_JES_EtaIntercalibration_Stat117: 1.4199467137889366e-07 - syst_JES_EtaIntercalibration_Stat118: 3.273025893882907e-06 - syst_JES_EtaIntercalibration_Stat119: 4.28706445367923e-06 - syst_JES_EtaIntercalibration_Stat12: 4.034549528309309e-11 - syst_JES_EtaIntercalibration_Stat120: 7.122454141656512e-06 - syst_JES_EtaIntercalibration_Stat121: 3.587469341482238e-07 - syst_JES_EtaIntercalibration_Stat122: 3.1528526694408035e-13 - syst_JES_EtaIntercalibration_Stat123: 2.068934689641024e-15 - syst_JES_EtaIntercalibration_Stat124: 2.068934689641024e-15 - syst_JES_EtaIntercalibration_Stat125: 2.068934689641024e-15 + syst_JES_EtaIntercalibration_Stat113: 2.42402466e-13 + syst_JES_EtaIntercalibration_Stat114: 2.15812142e-05 + syst_JES_EtaIntercalibration_Stat115: 1.40523190e-06 + syst_JES_EtaIntercalibration_Stat116: 2.17963638e-06 + syst_JES_EtaIntercalibration_Stat117: 1.41994671e-07 + syst_JES_EtaIntercalibration_Stat118: 3.27302589e-06 + syst_JES_EtaIntercalibration_Stat119: 4.28706445e-06 + syst_JES_EtaIntercalibration_Stat12: 4.03454953e-11 + syst_JES_EtaIntercalibration_Stat120: 7.12245414e-06 + syst_JES_EtaIntercalibration_Stat121: 3.58746934e-07 + syst_JES_EtaIntercalibration_Stat122: 3.15285267e-13 + syst_JES_EtaIntercalibration_Stat123: 2.06893469e-15 + syst_JES_EtaIntercalibration_Stat124: 2.06893469e-15 + syst_JES_EtaIntercalibration_Stat125: 2.06893469e-15 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 5.482806831359281e-08 - syst_JES_EtaIntercalibration_Stat129: 5.478801410280537e-08 - syst_JES_EtaIntercalibration_Stat13: 5.0166247826658065e-11 - syst_JES_EtaIntercalibration_Stat130: 1.2051609519064248e-10 - syst_JES_EtaIntercalibration_Stat131: 1.5692380316574028e-16 - syst_JES_EtaIntercalibration_Stat132: 1.1175849537129011e-08 - syst_JES_EtaIntercalibration_Stat133: 8.21470091586267e-06 - syst_JES_EtaIntercalibration_Stat134: 5.017440283650619e-05 - syst_JES_EtaIntercalibration_Stat135: 3.478531586747489e-05 - syst_JES_EtaIntercalibration_Stat136: 3.844229561303539e-06 - syst_JES_EtaIntercalibration_Stat137: 8.664253516604879e-06 - syst_JES_EtaIntercalibration_Stat138: 2.6766467678795424e-05 - syst_JES_EtaIntercalibration_Stat139: 3.717869114156656e-05 - syst_JES_EtaIntercalibration_Stat14: 3.0397491672833793e-16 - syst_JES_EtaIntercalibration_Stat140: 5.626348438374574e-06 - syst_JES_EtaIntercalibration_Stat141: 5.0783729743391005e-08 + syst_JES_EtaIntercalibration_Stat128: 5.48280683e-08 + syst_JES_EtaIntercalibration_Stat129: 5.47880141e-08 + syst_JES_EtaIntercalibration_Stat13: 5.01662478e-11 + syst_JES_EtaIntercalibration_Stat130: 1.20516095e-10 + syst_JES_EtaIntercalibration_Stat131: 1.56923803e-16 + syst_JES_EtaIntercalibration_Stat132: 1.11758495e-08 + syst_JES_EtaIntercalibration_Stat133: 8.21470092e-06 + syst_JES_EtaIntercalibration_Stat134: 5.01744028e-05 + syst_JES_EtaIntercalibration_Stat135: 3.47853159e-05 + syst_JES_EtaIntercalibration_Stat136: 3.84422956e-06 + syst_JES_EtaIntercalibration_Stat137: 8.66425352e-06 + syst_JES_EtaIntercalibration_Stat138: 2.67664677e-05 + syst_JES_EtaIntercalibration_Stat139: 3.71786911e-05 + syst_JES_EtaIntercalibration_Stat14: 3.03974917e-16 + syst_JES_EtaIntercalibration_Stat140: 5.62634844e-06 + syst_JES_EtaIntercalibration_Stat141: 5.07837297e-08 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 2.068934689641024e-15 - syst_JES_EtaIntercalibration_Stat144: 2.068934689641024e-15 + syst_JES_EtaIntercalibration_Stat143: 2.06893469e-15 + syst_JES_EtaIntercalibration_Stat144: 2.06893469e-15 syst_JES_EtaIntercalibration_Stat145: 0.0 - syst_JES_EtaIntercalibration_Stat146: 5.482806831359281e-08 - syst_JES_EtaIntercalibration_Stat147: 5.478801410280537e-08 + syst_JES_EtaIntercalibration_Stat146: 5.48280683e-08 + syst_JES_EtaIntercalibration_Stat147: 5.47880141e-08 syst_JES_EtaIntercalibration_Stat148: 0.0 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 3.4290279920117303e-12 - syst_JES_EtaIntercalibration_Stat151: 8.111100597791892e-06 - syst_JES_EtaIntercalibration_Stat152: 5.502009882761026e-05 - syst_JES_EtaIntercalibration_Stat153: 6.01572894585519e-05 - syst_JES_EtaIntercalibration_Stat154: 2.5392781395506874e-06 - syst_JES_EtaIntercalibration_Stat155: 9.93686046998749e-06 - syst_JES_EtaIntercalibration_Stat156: 2.956072399316363e-05 - syst_JES_EtaIntercalibration_Stat157: 2.8399781689301765e-05 - syst_JES_EtaIntercalibration_Stat158: 2.198080781045137e-05 - syst_JES_EtaIntercalibration_Stat159: 5.097558677556256e-08 + syst_JES_EtaIntercalibration_Stat150: 3.42902799e-12 + syst_JES_EtaIntercalibration_Stat151: 8.11110060e-06 + syst_JES_EtaIntercalibration_Stat152: 5.50200988e-05 + syst_JES_EtaIntercalibration_Stat153: 6.01572895e-05 + syst_JES_EtaIntercalibration_Stat154: 2.53927814e-06 + syst_JES_EtaIntercalibration_Stat155: 9.93686047e-06 + syst_JES_EtaIntercalibration_Stat156: 2.95607240e-05 + syst_JES_EtaIntercalibration_Stat157: 2.83997817e-05 + syst_JES_EtaIntercalibration_Stat158: 2.19808078e-05 + syst_JES_EtaIntercalibration_Stat159: 5.09755868e-08 syst_JES_EtaIntercalibration_Stat16: 0.0 syst_JES_EtaIntercalibration_Stat160: 0.0 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 - syst_JES_EtaIntercalibration_Stat164: 5.482806831359281e-08 + syst_JES_EtaIntercalibration_Stat164: 5.48280683e-08 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 - syst_JES_EtaIntercalibration_Stat168: 2.456048045132668e-10 - syst_JES_EtaIntercalibration_Stat169: 3.646584001500582e-05 + syst_JES_EtaIntercalibration_Stat168: 2.45604805e-10 + syst_JES_EtaIntercalibration_Stat169: 3.64658400e-05 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 0.0001600305283375644 - syst_JES_EtaIntercalibration_Stat171: 9.707224011013653e-05 - syst_JES_EtaIntercalibration_Stat172: 3.574625015298807e-05 - syst_JES_EtaIntercalibration_Stat173: 4.3720961791799596e-07 - syst_JES_EtaIntercalibration_Stat174: 9.40494724865589e-05 - syst_JES_EtaIntercalibration_Stat175: 0.0001613442803448576 - syst_JES_EtaIntercalibration_Stat176: 6.99030877358075e-06 - syst_JES_EtaIntercalibration_Stat177: 3.4721849432309913e-07 + syst_JES_EtaIntercalibration_Stat170: 1.60030528e-04 + syst_JES_EtaIntercalibration_Stat171: 9.70722401e-05 + syst_JES_EtaIntercalibration_Stat172: 3.57462502e-05 + syst_JES_EtaIntercalibration_Stat173: 4.37209618e-07 + syst_JES_EtaIntercalibration_Stat174: 9.40494725e-05 + syst_JES_EtaIntercalibration_Stat175: 1.61344280e-04 + syst_JES_EtaIntercalibration_Stat176: 6.99030877e-06 + syst_JES_EtaIntercalibration_Stat177: 3.47218494e-07 syst_JES_EtaIntercalibration_Stat178: 0.0 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 @@ -18236,17 +18236,17 @@ bins: syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 syst_JES_EtaIntercalibration_Stat184: 0.0 - syst_JES_EtaIntercalibration_Stat185: 1.2739233689695512e-06 - syst_JES_EtaIntercalibration_Stat186: 6.085096609750744e-05 - syst_JES_EtaIntercalibration_Stat187: 0.0007837696281433723 - syst_JES_EtaIntercalibration_Stat188: 0.0006804510342412597 - syst_JES_EtaIntercalibration_Stat189: 3.8531100425500436e-05 + syst_JES_EtaIntercalibration_Stat185: 1.27392337e-06 + syst_JES_EtaIntercalibration_Stat186: 6.08509661e-05 + syst_JES_EtaIntercalibration_Stat187: 7.83769628e-04 + syst_JES_EtaIntercalibration_Stat188: 6.80451034e-04 + syst_JES_EtaIntercalibration_Stat189: 3.85311004e-05 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 3.7834658713935825e-05 - syst_JES_EtaIntercalibration_Stat191: 0.0005340288639202941 - syst_JES_EtaIntercalibration_Stat192: 0.00088152196229022 - syst_JES_EtaIntercalibration_Stat193: 5.035950828790924e-05 - syst_JES_EtaIntercalibration_Stat194: 2.3538570474861042e-07 + syst_JES_EtaIntercalibration_Stat190: 3.78346587e-05 + syst_JES_EtaIntercalibration_Stat191: 5.34028864e-04 + syst_JES_EtaIntercalibration_Stat192: 8.81521962e-04 + syst_JES_EtaIntercalibration_Stat193: 5.03595083e-05 + syst_JES_EtaIntercalibration_Stat194: 2.35385705e-07 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 syst_JES_EtaIntercalibration_Stat197: 0.0 @@ -18254,70 +18254,70 @@ bins: syst_JES_EtaIntercalibration_Stat199: 0.0 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 4.6774032058133393e-07 - syst_JES_EtaIntercalibration_Stat201: 8.530158541902958e-05 - syst_JES_EtaIntercalibration_Stat202: 0.001158551814767039 - syst_JES_EtaIntercalibration_Stat203: 0.0012104519847974144 - syst_JES_EtaIntercalibration_Stat204: 9.75901002919866e-05 - syst_JES_EtaIntercalibration_Stat205: 7.094480107802122e-05 - syst_JES_EtaIntercalibration_Stat206: 0.001273876563878934 - syst_JES_EtaIntercalibration_Stat207: 0.001226156730397872 - syst_JES_EtaIntercalibration_Stat208: 0.00014500867448190817 - syst_JES_EtaIntercalibration_Stat209: 1.8485611945632392e-06 + syst_JES_EtaIntercalibration_Stat200: 4.67740321e-07 + syst_JES_EtaIntercalibration_Stat201: 8.53015854e-05 + syst_JES_EtaIntercalibration_Stat202: 1.15855181e-03 + syst_JES_EtaIntercalibration_Stat203: 1.21045198e-03 + syst_JES_EtaIntercalibration_Stat204: 9.75901003e-05 + syst_JES_EtaIntercalibration_Stat205: 7.09448011e-05 + syst_JES_EtaIntercalibration_Stat206: 1.27387656e-03 + syst_JES_EtaIntercalibration_Stat207: 1.22615673e-03 + syst_JES_EtaIntercalibration_Stat208: 1.45008674e-04 + syst_JES_EtaIntercalibration_Stat209: 1.84856119e-06 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 syst_JES_EtaIntercalibration_Stat211: 0.0 syst_JES_EtaIntercalibration_Stat212: 0.0 - syst_JES_EtaIntercalibration_Stat213: 1.3180906645625573e-06 - syst_JES_EtaIntercalibration_Stat214: 1.2187149010330513e-05 - syst_JES_EtaIntercalibration_Stat215: 0.0006264707874274745 - syst_JES_EtaIntercalibration_Stat216: 0.0007799959663357241 - syst_JES_EtaIntercalibration_Stat217: 5.696781635274429e-05 - syst_JES_EtaIntercalibration_Stat218: 1.8566319957115894e-05 - syst_JES_EtaIntercalibration_Stat219: 0.0007770184087265887 + syst_JES_EtaIntercalibration_Stat213: 1.31809066e-06 + syst_JES_EtaIntercalibration_Stat214: 1.21871490e-05 + syst_JES_EtaIntercalibration_Stat215: 6.26470787e-04 + syst_JES_EtaIntercalibration_Stat216: 7.79995966e-04 + syst_JES_EtaIntercalibration_Stat217: 5.69678164e-05 + syst_JES_EtaIntercalibration_Stat218: 1.85663200e-05 + syst_JES_EtaIntercalibration_Stat219: 7.77018409e-04 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 0.0007509550718917878 - syst_JES_EtaIntercalibration_Stat221: 2.1951840896608195e-05 - syst_JES_EtaIntercalibration_Stat222: 2.6759560441083483e-06 + syst_JES_EtaIntercalibration_Stat220: 7.50955072e-04 + syst_JES_EtaIntercalibration_Stat221: 2.19518409e-05 + syst_JES_EtaIntercalibration_Stat222: 2.67595604e-06 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 - syst_JES_EtaIntercalibration_Stat225: 1.643710200481134e-06 - syst_JES_EtaIntercalibration_Stat226: 3.4824688771042876e-05 - syst_JES_EtaIntercalibration_Stat227: 0.00013540098670246093 - syst_JES_EtaIntercalibration_Stat228: 0.00011300667535592754 - syst_JES_EtaIntercalibration_Stat229: 2.2238262942055525e-05 + syst_JES_EtaIntercalibration_Stat225: 1.64371020e-06 + syst_JES_EtaIntercalibration_Stat226: 3.48246888e-05 + syst_JES_EtaIntercalibration_Stat227: 1.35400987e-04 + syst_JES_EtaIntercalibration_Stat228: 1.13006675e-04 + syst_JES_EtaIntercalibration_Stat229: 2.22382629e-05 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 4.713050707079227e-05 - syst_JES_EtaIntercalibration_Stat231: 0.00031414063729482696 - syst_JES_EtaIntercalibration_Stat232: 0.00012614449928554158 - syst_JES_EtaIntercalibration_Stat233: 4.648192229243537e-05 - syst_JES_EtaIntercalibration_Stat234: 9.324632150921559e-06 + syst_JES_EtaIntercalibration_Stat230: 4.71305071e-05 + syst_JES_EtaIntercalibration_Stat231: 3.14140637e-04 + syst_JES_EtaIntercalibration_Stat232: 1.26144499e-04 + syst_JES_EtaIntercalibration_Stat233: 4.64819223e-05 + syst_JES_EtaIntercalibration_Stat234: 9.32463215e-06 syst_JES_EtaIntercalibration_Stat235: 0.0 - syst_JES_EtaIntercalibration_Stat236: 7.924998470031398e-18 - syst_JES_EtaIntercalibration_Stat237: 1.1023004717408043e-05 - syst_JES_EtaIntercalibration_Stat238: 6.950097319462512e-05 - syst_JES_EtaIntercalibration_Stat239: 3.108170844725238e-05 + syst_JES_EtaIntercalibration_Stat236: 7.92499847e-18 + syst_JES_EtaIntercalibration_Stat237: 1.10230047e-05 + syst_JES_EtaIntercalibration_Stat238: 6.95009732e-05 + syst_JES_EtaIntercalibration_Stat239: 3.10817084e-05 syst_JES_EtaIntercalibration_Stat24: 0.0 - syst_JES_EtaIntercalibration_Stat240: 7.78540337841033e-18 - syst_JES_EtaIntercalibration_Stat241: 4.341385349171391e-06 - syst_JES_EtaIntercalibration_Stat242: 3.9455199910784894e-05 - syst_JES_EtaIntercalibration_Stat243: 5.027048910643301e-05 - syst_JES_EtaIntercalibration_Stat244: 4.341385249232068e-07 - syst_JES_EtaIntercalibration_Stat245: 3.492680453462641e-07 + syst_JES_EtaIntercalibration_Stat240: 7.78540338e-18 + syst_JES_EtaIntercalibration_Stat241: 4.34138535e-06 + syst_JES_EtaIntercalibration_Stat242: 3.94551999e-05 + syst_JES_EtaIntercalibration_Stat243: 5.02704891e-05 + syst_JES_EtaIntercalibration_Stat244: 4.34138525e-07 + syst_JES_EtaIntercalibration_Stat245: 3.49268045e-07 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 syst_JES_EtaIntercalibration_Stat27: 0.0 - syst_JES_EtaIntercalibration_Stat28: 4.123146947417712e-17 - syst_JES_EtaIntercalibration_Stat29: 3.66658105153834e-14 + syst_JES_EtaIntercalibration_Stat28: 4.12314695e-17 + syst_JES_EtaIntercalibration_Stat29: 3.66658105e-14 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 1.3736756049009532e-12 - syst_JES_EtaIntercalibration_Stat31: 6.287727311994374e-13 - syst_JES_EtaIntercalibration_Stat32: 3.086518426965891e-16 - syst_JES_EtaIntercalibration_Stat33: 3.4079886014334023e-15 - syst_JES_EtaIntercalibration_Stat34: 3.5533180773883284e-06 - syst_JES_EtaIntercalibration_Stat35: 4.938951439946518e-08 - syst_JES_EtaIntercalibration_Stat36: 3.0914996811741704e-13 - syst_JES_EtaIntercalibration_Stat37: 3.0103043035547086e-17 + syst_JES_EtaIntercalibration_Stat30: 1.37367560e-12 + syst_JES_EtaIntercalibration_Stat31: 6.28772731e-13 + syst_JES_EtaIntercalibration_Stat32: 3.08651843e-16 + syst_JES_EtaIntercalibration_Stat33: 3.40798860e-15 + syst_JES_EtaIntercalibration_Stat34: 3.55331808e-06 + syst_JES_EtaIntercalibration_Stat35: 4.93895144e-08 + syst_JES_EtaIntercalibration_Stat36: 3.09149968e-13 + syst_JES_EtaIntercalibration_Stat37: 3.01030430e-17 syst_JES_EtaIntercalibration_Stat38: 0.0 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 @@ -18332,20 +18332,20 @@ bins: syst_JES_EtaIntercalibration_Stat48: 0.0 syst_JES_EtaIntercalibration_Stat49: 0.0 syst_JES_EtaIntercalibration_Stat5: 0.0 - syst_JES_EtaIntercalibration_Stat50: 4.176840522452348e-17 - syst_JES_EtaIntercalibration_Stat51: 9.214075360555719e-14 - syst_JES_EtaIntercalibration_Stat52: 1.815874078784099e-10 - syst_JES_EtaIntercalibration_Stat53: 1.1306810654976937e-11 - syst_JES_EtaIntercalibration_Stat54: 3.3532483877577576e-14 - syst_JES_EtaIntercalibration_Stat55: 4.001597358939927e-11 - syst_JES_EtaIntercalibration_Stat56: 3.5558998016030076e-06 - syst_JES_EtaIntercalibration_Stat57: 4.607254971781601e-06 - syst_JES_EtaIntercalibration_Stat58: 4.4459770883350263e-13 - syst_JES_EtaIntercalibration_Stat59: 1.2737859788834229e-16 + syst_JES_EtaIntercalibration_Stat50: 4.17684052e-17 + syst_JES_EtaIntercalibration_Stat51: 9.21407536e-14 + syst_JES_EtaIntercalibration_Stat52: 1.81587408e-10 + syst_JES_EtaIntercalibration_Stat53: 1.13068107e-11 + syst_JES_EtaIntercalibration_Stat54: 3.35324839e-14 + syst_JES_EtaIntercalibration_Stat55: 4.00159736e-11 + syst_JES_EtaIntercalibration_Stat56: 3.55589980e-06 + syst_JES_EtaIntercalibration_Stat57: 4.60725497e-06 + syst_JES_EtaIntercalibration_Stat58: 4.44597709e-13 + syst_JES_EtaIntercalibration_Stat59: 1.27378598e-16 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 2.068934689641024e-15 - syst_JES_EtaIntercalibration_Stat62: 2.068934689641024e-15 + syst_JES_EtaIntercalibration_Stat61: 2.06893469e-15 + syst_JES_EtaIntercalibration_Stat62: 2.06893469e-15 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 @@ -18353,223 +18353,223 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 4.123146947417712e-17 + syst_JES_EtaIntercalibration_Stat7: 4.12314695e-17 syst_JES_EtaIntercalibration_Stat70: 0.0 syst_JES_EtaIntercalibration_Stat71: 0.0 - syst_JES_EtaIntercalibration_Stat72: 3.206892070213776e-15 - syst_JES_EtaIntercalibration_Stat73: 2.458103991534939e-10 - syst_JES_EtaIntercalibration_Stat74: 3.2842737374798714e-05 - syst_JES_EtaIntercalibration_Stat75: 3.20048642993695e-05 - syst_JES_EtaIntercalibration_Stat76: 6.56146903292243e-12 - syst_JES_EtaIntercalibration_Stat77: 3.512604889181247e-11 - syst_JES_EtaIntercalibration_Stat78: 3.422114978424417e-06 - syst_JES_EtaIntercalibration_Stat79: 8.443851558097806e-06 - syst_JES_EtaIntercalibration_Stat8: 1.7540284689821886e-14 - syst_JES_EtaIntercalibration_Stat80: 4.670045388395599e-12 - syst_JES_EtaIntercalibration_Stat81: 3.605263755954618e-16 - syst_JES_EtaIntercalibration_Stat82: 2.068934689641024e-15 - syst_JES_EtaIntercalibration_Stat83: 2.068934689641024e-15 - syst_JES_EtaIntercalibration_Stat84: 2.068934689641024e-15 + syst_JES_EtaIntercalibration_Stat72: 3.20689207e-15 + syst_JES_EtaIntercalibration_Stat73: 2.45810399e-10 + syst_JES_EtaIntercalibration_Stat74: 3.28427374e-05 + syst_JES_EtaIntercalibration_Stat75: 3.20048643e-05 + syst_JES_EtaIntercalibration_Stat76: 6.56146903e-12 + syst_JES_EtaIntercalibration_Stat77: 3.51260489e-11 + syst_JES_EtaIntercalibration_Stat78: 3.42211498e-06 + syst_JES_EtaIntercalibration_Stat79: 8.44385156e-06 + syst_JES_EtaIntercalibration_Stat8: 1.75402847e-14 + syst_JES_EtaIntercalibration_Stat80: 4.67004539e-12 + syst_JES_EtaIntercalibration_Stat81: 3.60526376e-16 + syst_JES_EtaIntercalibration_Stat82: 2.06893469e-15 + syst_JES_EtaIntercalibration_Stat83: 2.06893469e-15 + syst_JES_EtaIntercalibration_Stat84: 2.06893469e-15 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 syst_JES_EtaIntercalibration_Stat89: 0.0 - syst_JES_EtaIntercalibration_Stat9: 6.051152865363756e-15 + syst_JES_EtaIntercalibration_Stat9: 6.05115287e-15 syst_JES_EtaIntercalibration_Stat90: 0.0 syst_JES_EtaIntercalibration_Stat91: 0.0 syst_JES_EtaIntercalibration_Stat92: 0.0 - syst_JES_EtaIntercalibration_Stat93: 2.908113305908145e-15 - syst_JES_EtaIntercalibration_Stat94: 3.140412667150609e-10 - syst_JES_EtaIntercalibration_Stat95: 3.28494551058309e-05 - syst_JES_EtaIntercalibration_Stat96: 3.285216047690014e-05 - syst_JES_EtaIntercalibration_Stat97: 1.0694280243432701e-10 - syst_JES_EtaIntercalibration_Stat98: 1.6933939500305297e-11 - syst_JES_EtaIntercalibration_Stat99: 7.360597163136205e-06 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.008165117696641 - syst_JES_Flavour_Comp: 0.02631830684143644 - syst_JES_Gjet_Generator: 0.0406798681782525 - syst_JES_Gjet_OOC: 0.03229572572338327 - syst_JES_Gjet_Purity: 0.009143509870394409 - syst_JES_Gjet_Stat1: 6.516506389162832e-05 - syst_JES_Gjet_Stat10: 0.0008404221974698194 - syst_JES_Gjet_Stat11: 0.0011773663183138883 - syst_JES_Gjet_Stat12: 0.004113560136913037 - syst_JES_Gjet_Stat13: 0.009478563327319178 - syst_JES_Gjet_Stat14: 0.008505767807787841 - syst_JES_Gjet_Stat15: 0.002662893351225317 - syst_JES_Gjet_Stat2: 1.0504211286431743e-06 - syst_JES_Gjet_Stat3: 7.694162511280875e-05 - syst_JES_Gjet_Stat4: 9.068458124179656e-05 - syst_JES_Gjet_Stat5: 8.134932267695902e-05 - syst_JES_Gjet_Stat6: 0.00040115489215513745 - syst_JES_Gjet_Stat7: 0.000453359228427083 - syst_JES_Gjet_Stat8: 0.0003317249274624987 - syst_JES_Gjet_Stat9: 0.0005481945731216244 - syst_JES_Gjet_Veto: 0.027154257493070953 - syst_JES_Gjet_dPhi: 0.002932031889321806 - syst_JES_LArESZee: 0.06129070565754648 - syst_JES_LArEsmear: 0.004671923881015187 - syst_JES_LAr_JVT: 0.005946001513622411 - syst_JES_MJB_Alpha: 0.0003869248376623036 - syst_JES_MJB_Asym: 0.0020662553085231262 - syst_JES_MJB_Beta: 0.00027267703882065316 - syst_JES_MJB_Stat1: 4.134755464353364e-05 - syst_JES_MJB_Stat10: 3.786185345106602e-05 - syst_JES_MJB_Stat11: 0.00010674843921575621 - syst_JES_MJB_Stat12: 6.540655070403883e-05 - syst_JES_MJB_Stat13: 3.262303940469067e-05 - syst_JES_MJB_Stat14: 3.1889487295972636e-05 - syst_JES_MJB_Stat15: 2.450591918292395e-06 - syst_JES_MJB_Stat16: 3.0161752270052217e-07 - syst_JES_MJB_Stat2: 7.721452195021349e-05 - syst_JES_MJB_Stat3: 0.0007090611680243108 - syst_JES_MJB_Stat4: 0.00024633854753164396 - syst_JES_MJB_Stat5: 0.0003142210845885425 - syst_JES_MJB_Stat6: 0.00010068292345278815 - syst_JES_MJB_Stat7: 9.469082360503578e-05 - syst_JES_MJB_Stat8: 7.843582902602611e-05 - syst_JES_MJB_Stat9: 2.8763129176082358e-06 - syst_JES_MJB_Threshold: 0.003121538562952571 - syst_JES_Pileup_MuOffset: 0.006556176324657536 - syst_JES_Pileup_NPVOffset: 0.006726197644286109 - syst_JES_Pileup_Pt_term: 0.006219591686758866 - syst_JES_PunchThrough_MC15: 0.0012347624498258766 - syst_JES_SingleParticle_HighPt: 1.573838335884598e-35 - syst_JES_Zjet_MC: 0.025006224725055957 - syst_JES_Zjet_MuScale: 0.0014716996976285616 - syst_JES_Zjet_MuSmearID: 0.00044130368441131325 - syst_JES_Zjet_MuSmearMS: 0.0071362712952914 - syst_JES_Zjet_OOC: 0.011036521768655196 - syst_JES_Zjet_Stat1: 0.000544601175173172 - syst_JES_Zjet_Stat10: 0.000886982191196644 - syst_JES_Zjet_Stat11: 0.001201918694213548 - syst_JES_Zjet_Stat12: 0.004701203329999671 - syst_JES_Zjet_Stat13: 0.007702938010915056 - syst_JES_Zjet_Stat2: 3.1172197997574695e-05 - syst_JES_Zjet_Stat3: 0.00018107087472865426 - syst_JES_Zjet_Stat4: 9.740625788418319e-05 - syst_JES_Zjet_Stat5: 0.0002907154063684964 - syst_JES_Zjet_Stat6: 0.0003838833546795172 - syst_JES_Zjet_Stat7: 0.00020231601518416674 - syst_JES_Zjet_Stat8: 0.0002906257516119313 - syst_JES_Zjet_Stat9: 0.0005474510274901308 - syst_JES_Zjet_Veto: 0.0024147459493702437 - syst_JES_Zjet_dPhi: 0.001953468901723291 + syst_JES_EtaIntercalibration_Stat93: 2.90811331e-15 + syst_JES_EtaIntercalibration_Stat94: 3.14041267e-10 + syst_JES_EtaIntercalibration_Stat95: 3.28494551e-05 + syst_JES_EtaIntercalibration_Stat96: 3.28521605e-05 + syst_JES_EtaIntercalibration_Stat97: 1.06942802e-10 + syst_JES_EtaIntercalibration_Stat98: 1.69339395e-11 + syst_JES_EtaIntercalibration_Stat99: 7.36059716e-06 + syst_JES_EtaIntercalibration_TotalStat_MJB: 8.16511770e-03 + syst_JES_Flavour_Comp: 2.63183068e-02 + syst_JES_Gjet_Generator: 4.06798682e-02 + syst_JES_Gjet_OOC: 3.22957257e-02 + syst_JES_Gjet_Purity: 9.14350987e-03 + syst_JES_Gjet_Stat1: 6.51650639e-05 + syst_JES_Gjet_Stat10: 8.40422197e-04 + syst_JES_Gjet_Stat11: 1.17736632e-03 + syst_JES_Gjet_Stat12: 4.11356014e-03 + syst_JES_Gjet_Stat13: 9.47856333e-03 + syst_JES_Gjet_Stat14: 8.50576781e-03 + syst_JES_Gjet_Stat15: 2.66289335e-03 + syst_JES_Gjet_Stat2: 1.05042113e-06 + syst_JES_Gjet_Stat3: 7.69416251e-05 + syst_JES_Gjet_Stat4: 9.06845812e-05 + syst_JES_Gjet_Stat5: 8.13493227e-05 + syst_JES_Gjet_Stat6: 4.01154892e-04 + syst_JES_Gjet_Stat7: 4.53359228e-04 + syst_JES_Gjet_Stat8: 3.31724927e-04 + syst_JES_Gjet_Stat9: 5.48194573e-04 + syst_JES_Gjet_Veto: 2.71542575e-02 + syst_JES_Gjet_dPhi: 2.93203189e-03 + syst_JES_LArESZee: 6.12907057e-02 + syst_JES_LArEsmear: 4.67192388e-03 + syst_JES_LAr_JVT: 5.94600151e-03 + syst_JES_MJB_Alpha: 3.86924838e-04 + syst_JES_MJB_Asym: 2.06625531e-03 + syst_JES_MJB_Beta: 2.72677039e-04 + syst_JES_MJB_Stat1: 4.13475546e-05 + syst_JES_MJB_Stat10: 3.78618535e-05 + syst_JES_MJB_Stat11: 1.06748439e-04 + syst_JES_MJB_Stat12: 6.54065507e-05 + syst_JES_MJB_Stat13: 3.26230394e-05 + syst_JES_MJB_Stat14: 3.18894873e-05 + syst_JES_MJB_Stat15: 2.45059192e-06 + syst_JES_MJB_Stat16: 3.01617523e-07 + syst_JES_MJB_Stat2: 7.72145220e-05 + syst_JES_MJB_Stat3: 7.09061168e-04 + syst_JES_MJB_Stat4: 2.46338548e-04 + syst_JES_MJB_Stat5: 3.14221085e-04 + syst_JES_MJB_Stat6: 1.00682923e-04 + syst_JES_MJB_Stat7: 9.46908236e-05 + syst_JES_MJB_Stat8: 7.84358290e-05 + syst_JES_MJB_Stat9: 2.87631292e-06 + syst_JES_MJB_Threshold: 3.12153856e-03 + syst_JES_Pileup_MuOffset: 6.55617632e-03 + syst_JES_Pileup_NPVOffset: 6.72619764e-03 + syst_JES_Pileup_Pt_term: 6.21959169e-03 + syst_JES_PunchThrough_MC15: 1.23476245e-03 + syst_JES_SingleParticle_HighPt: 1.57383834e-35 + syst_JES_Zjet_MC: 2.50062247e-02 + syst_JES_Zjet_MuScale: 1.47169970e-03 + syst_JES_Zjet_MuSmearID: 4.41303684e-04 + syst_JES_Zjet_MuSmearMS: 7.13627130e-03 + syst_JES_Zjet_OOC: 1.10365218e-02 + syst_JES_Zjet_Stat1: 5.44601175e-04 + syst_JES_Zjet_Stat10: 8.86982191e-04 + syst_JES_Zjet_Stat11: 1.20191869e-03 + syst_JES_Zjet_Stat12: 4.70120333e-03 + syst_JES_Zjet_Stat13: 7.70293801e-03 + syst_JES_Zjet_Stat2: 3.11721980e-05 + syst_JES_Zjet_Stat3: 1.81070875e-04 + syst_JES_Zjet_Stat4: 9.74062579e-05 + syst_JES_Zjet_Stat5: 2.90715406e-04 + syst_JES_Zjet_Stat6: 3.83883355e-04 + syst_JES_Zjet_Stat7: 2.02316015e-04 + syst_JES_Zjet_Stat8: 2.90625752e-04 + syst_JES_Zjet_Stat9: 5.47451027e-04 + syst_JES_Zjet_Veto: 2.41474595e-03 + syst_JES_Zjet_dPhi: 1.95346890e-03 syst_PRW: 0.001587 syst_Unfolding_bias: 0.001649 - syst_cleaning: 0.011603874385307692 + syst_cleaning: 1.16038744e-02 syst_lumi: 0.04312 - syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.003757009582101169 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.009869538527712428 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 0.0029763659049249977 + syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 3.75700958e-03 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 9.86953853e-03 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 2.97636590e-03 syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 0.011526888337708489 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.005496513144712745 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.00763502946949126 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 1.15268883e-02 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 5.49651314e-03 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 7.63502947e-03 - stat: 0.004844 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.004270467150090257 - syst_JER_NP1: 0.00037750767872985044 - syst_JER_NP2: 0.0011246456186283747 - syst_JER_NP3: 0.0010120920746157437 - syst_JER_NP4: 0.0004205106538483895 - syst_JER_NP5: 0.0003886080641211656 - syst_JER_NP6: 0.00035447952302354504 - syst_JER_NP7: 0.0004273849874527649 - syst_JER_NP8: 0.000849421607624859 - syst_JES_EtaIntercalibration_Modelling: 0.01796550235868733 - syst_JES_EtaIntercalibration_NonClosure: 1.4731092118373302e-09 + syst_JER_NP0: 4.27046715e-03 + syst_JER_NP1: 3.77507679e-04 + syst_JER_NP2: 1.12464562e-03 + syst_JER_NP3: 1.01209207e-03 + syst_JER_NP4: 4.20510654e-04 + syst_JER_NP5: 3.88608064e-04 + syst_JER_NP6: 3.54479523e-04 + syst_JER_NP7: 4.27384987e-04 + syst_JER_NP8: 8.49421608e-04 + syst_JES_EtaIntercalibration_Modelling: 1.79655024e-02 + syst_JES_EtaIntercalibration_NonClosure: 1.47310921e-09 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 2.5862378766445193e-06 - syst_JES_EtaIntercalibration_Stat101: 7.218774324634343e-13 - syst_JES_EtaIntercalibration_Stat102: 4.617559323048811e-16 - syst_JES_EtaIntercalibration_Stat103: 4.131807201455557e-16 - syst_JES_EtaIntercalibration_Stat104: 4.131807201455557e-16 - syst_JES_EtaIntercalibration_Stat105: 4.131807201455557e-16 + syst_JES_EtaIntercalibration_Stat100: 2.58623788e-06 + syst_JES_EtaIntercalibration_Stat101: 7.21877432e-13 + syst_JES_EtaIntercalibration_Stat102: 4.61755932e-16 + syst_JES_EtaIntercalibration_Stat103: 4.13180720e-16 + syst_JES_EtaIntercalibration_Stat104: 4.13180720e-16 + syst_JES_EtaIntercalibration_Stat105: 4.13180720e-16 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 1.6134053272504094e-11 - syst_JES_EtaIntercalibration_Stat111: 1.6134053272504094e-11 + syst_JES_EtaIntercalibration_Stat110: 1.61340533e-11 + syst_JES_EtaIntercalibration_Stat111: 1.61340533e-11 syst_JES_EtaIntercalibration_Stat112: 0.0 - syst_JES_EtaIntercalibration_Stat113: 3.599395685622102e-14 - syst_JES_EtaIntercalibration_Stat114: 1.3664257626376927e-05 - syst_JES_EtaIntercalibration_Stat115: 1.2045299874536125e-06 - syst_JES_EtaIntercalibration_Stat116: 1.363791321097183e-06 - syst_JES_EtaIntercalibration_Stat117: 2.3893142844757784e-08 - syst_JES_EtaIntercalibration_Stat118: 2.093560003166078e-06 - syst_JES_EtaIntercalibration_Stat119: 1.4359800938731709e-06 - syst_JES_EtaIntercalibration_Stat12: 5.386148212607224e-12 - syst_JES_EtaIntercalibration_Stat120: 2.1597569585488087e-06 - syst_JES_EtaIntercalibration_Stat121: 7.315185281829846e-08 - syst_JES_EtaIntercalibration_Stat122: 4.4964865786383705e-14 - syst_JES_EtaIntercalibration_Stat123: 4.131807201455557e-16 - syst_JES_EtaIntercalibration_Stat124: 4.131807201455557e-16 - syst_JES_EtaIntercalibration_Stat125: 4.131807201455557e-16 + syst_JES_EtaIntercalibration_Stat113: 3.59939569e-14 + syst_JES_EtaIntercalibration_Stat114: 1.36642576e-05 + syst_JES_EtaIntercalibration_Stat115: 1.20452999e-06 + syst_JES_EtaIntercalibration_Stat116: 1.36379132e-06 + syst_JES_EtaIntercalibration_Stat117: 2.38931428e-08 + syst_JES_EtaIntercalibration_Stat118: 2.09356000e-06 + syst_JES_EtaIntercalibration_Stat119: 1.43598009e-06 + syst_JES_EtaIntercalibration_Stat12: 5.38614821e-12 + syst_JES_EtaIntercalibration_Stat120: 2.15975696e-06 + syst_JES_EtaIntercalibration_Stat121: 7.31518528e-08 + syst_JES_EtaIntercalibration_Stat122: 4.49648658e-14 + syst_JES_EtaIntercalibration_Stat123: 4.13180720e-16 + syst_JES_EtaIntercalibration_Stat124: 4.13180720e-16 + syst_JES_EtaIntercalibration_Stat125: 4.13180720e-16 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 8.74685657822283e-09 - syst_JES_EtaIntercalibration_Stat129: 8.741491795321609e-09 - syst_JES_EtaIntercalibration_Stat13: 6.727281736938553e-12 - syst_JES_EtaIntercalibration_Stat130: 1.6134053272504094e-11 - syst_JES_EtaIntercalibration_Stat131: 2.8994530518703004e-17 - syst_JES_EtaIntercalibration_Stat132: 1.7414215467228922e-09 - syst_JES_EtaIntercalibration_Stat133: 9.157812168857528e-06 - syst_JES_EtaIntercalibration_Stat134: 2.1702748097879213e-05 - syst_JES_EtaIntercalibration_Stat135: 1.4061467588768962e-05 - syst_JES_EtaIntercalibration_Stat136: 2.5616121962691777e-06 - syst_JES_EtaIntercalibration_Stat137: 3.209207222975793e-06 - syst_JES_EtaIntercalibration_Stat138: 1.1821561360497182e-05 - syst_JES_EtaIntercalibration_Stat139: 1.6026767858804222e-05 - syst_JES_EtaIntercalibration_Stat14: 5.747810604917319e-17 - syst_JES_EtaIntercalibration_Stat140: 3.5678433261565734e-06 - syst_JES_EtaIntercalibration_Stat141: 8.238499678377684e-09 + syst_JES_EtaIntercalibration_Stat128: 8.74685658e-09 + syst_JES_EtaIntercalibration_Stat129: 8.74149180e-09 + syst_JES_EtaIntercalibration_Stat13: 6.72728174e-12 + syst_JES_EtaIntercalibration_Stat130: 1.61340533e-11 + syst_JES_EtaIntercalibration_Stat131: 2.89945305e-17 + syst_JES_EtaIntercalibration_Stat132: 1.74142155e-09 + syst_JES_EtaIntercalibration_Stat133: 9.15781217e-06 + syst_JES_EtaIntercalibration_Stat134: 2.17027481e-05 + syst_JES_EtaIntercalibration_Stat135: 1.40614676e-05 + syst_JES_EtaIntercalibration_Stat136: 2.56161220e-06 + syst_JES_EtaIntercalibration_Stat137: 3.20920722e-06 + syst_JES_EtaIntercalibration_Stat138: 1.18215614e-05 + syst_JES_EtaIntercalibration_Stat139: 1.60267679e-05 + syst_JES_EtaIntercalibration_Stat14: 5.74781060e-17 + syst_JES_EtaIntercalibration_Stat140: 3.56784333e-06 + syst_JES_EtaIntercalibration_Stat141: 8.23849968e-09 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 4.131807201455557e-16 - syst_JES_EtaIntercalibration_Stat144: 4.131807201455557e-16 + syst_JES_EtaIntercalibration_Stat143: 4.13180720e-16 + syst_JES_EtaIntercalibration_Stat144: 4.13180720e-16 syst_JES_EtaIntercalibration_Stat145: 0.0 - syst_JES_EtaIntercalibration_Stat146: 8.74685657822283e-09 - syst_JES_EtaIntercalibration_Stat147: 8.741491795321609e-09 + syst_JES_EtaIntercalibration_Stat146: 8.74685658e-09 + syst_JES_EtaIntercalibration_Stat147: 8.74149180e-09 syst_JES_EtaIntercalibration_Stat148: 0.0 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 4.683849999434226e-13 - syst_JES_EtaIntercalibration_Stat151: 9.137114158566424e-06 - syst_JES_EtaIntercalibration_Stat152: 2.2480949157008474e-05 - syst_JES_EtaIntercalibration_Stat153: 2.5339187042997257e-05 - syst_JES_EtaIntercalibration_Stat154: 5.250204376974291e-07 - syst_JES_EtaIntercalibration_Stat155: 5.0265218590989934e-06 - syst_JES_EtaIntercalibration_Stat156: 1.7991291004260922e-05 - syst_JES_EtaIntercalibration_Stat157: 1.3934703109503268e-05 - syst_JES_EtaIntercalibration_Stat158: 5.1939019051191165e-06 - syst_JES_EtaIntercalibration_Stat159: 8.26639499565909e-09 + syst_JES_EtaIntercalibration_Stat150: 4.68385000e-13 + syst_JES_EtaIntercalibration_Stat151: 9.13711416e-06 + syst_JES_EtaIntercalibration_Stat152: 2.24809492e-05 + syst_JES_EtaIntercalibration_Stat153: 2.53391870e-05 + syst_JES_EtaIntercalibration_Stat154: 5.25020438e-07 + syst_JES_EtaIntercalibration_Stat155: 5.02652186e-06 + syst_JES_EtaIntercalibration_Stat156: 1.79912910e-05 + syst_JES_EtaIntercalibration_Stat157: 1.39347031e-05 + syst_JES_EtaIntercalibration_Stat158: 5.19390191e-06 + syst_JES_EtaIntercalibration_Stat159: 8.26639500e-09 syst_JES_EtaIntercalibration_Stat16: 0.0 syst_JES_EtaIntercalibration_Stat160: 0.0 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 - syst_JES_EtaIntercalibration_Stat164: 8.74685657822283e-09 + syst_JES_EtaIntercalibration_Stat164: 8.74685658e-09 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 - syst_JES_EtaIntercalibration_Stat168: 3.477958021598306e-11 - syst_JES_EtaIntercalibration_Stat169: 1.5199947631488733e-05 + syst_JES_EtaIntercalibration_Stat168: 3.47795802e-11 + syst_JES_EtaIntercalibration_Stat169: 1.51999476e-05 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 6.29050417295784e-05 - syst_JES_EtaIntercalibration_Stat171: 3.566080586582417e-05 - syst_JES_EtaIntercalibration_Stat172: 1.496017883415837e-05 - syst_JES_EtaIntercalibration_Stat173: 3.6028455420681026e-06 - syst_JES_EtaIntercalibration_Stat174: 3.821557143364469e-05 - syst_JES_EtaIntercalibration_Stat175: 5.417099592955625e-05 - syst_JES_EtaIntercalibration_Stat176: 5.331821032255302e-06 - syst_JES_EtaIntercalibration_Stat177: 6.16521769181754e-08 + syst_JES_EtaIntercalibration_Stat170: 6.29050417e-05 + syst_JES_EtaIntercalibration_Stat171: 3.56608059e-05 + syst_JES_EtaIntercalibration_Stat172: 1.49601788e-05 + syst_JES_EtaIntercalibration_Stat173: 3.60284554e-06 + syst_JES_EtaIntercalibration_Stat174: 3.82155714e-05 + syst_JES_EtaIntercalibration_Stat175: 5.41709959e-05 + syst_JES_EtaIntercalibration_Stat176: 5.33182103e-06 + syst_JES_EtaIntercalibration_Stat177: 6.16521769e-08 syst_JES_EtaIntercalibration_Stat178: 0.0 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 @@ -18578,17 +18578,17 @@ bins: syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 syst_JES_EtaIntercalibration_Stat184: 0.0 - syst_JES_EtaIntercalibration_Stat185: 3.787129127370679e-07 - syst_JES_EtaIntercalibration_Stat186: 2.322710216535847e-05 - syst_JES_EtaIntercalibration_Stat187: 0.0003344840317563755 - syst_JES_EtaIntercalibration_Stat188: 0.0002859712223284014 - syst_JES_EtaIntercalibration_Stat189: 1.7035248016979382e-05 + syst_JES_EtaIntercalibration_Stat185: 3.78712913e-07 + syst_JES_EtaIntercalibration_Stat186: 2.32271022e-05 + syst_JES_EtaIntercalibration_Stat187: 3.34484032e-04 + syst_JES_EtaIntercalibration_Stat188: 2.85971222e-04 + syst_JES_EtaIntercalibration_Stat189: 1.70352480e-05 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 2.286591220026002e-05 - syst_JES_EtaIntercalibration_Stat191: 0.00024372386013683602 - syst_JES_EtaIntercalibration_Stat192: 0.00036328667399176636 - syst_JES_EtaIntercalibration_Stat193: 2.489602528517354e-05 - syst_JES_EtaIntercalibration_Stat194: 4.7899865083317296e-08 + syst_JES_EtaIntercalibration_Stat190: 2.28659122e-05 + syst_JES_EtaIntercalibration_Stat191: 2.43723860e-04 + syst_JES_EtaIntercalibration_Stat192: 3.63286674e-04 + syst_JES_EtaIntercalibration_Stat193: 2.48960253e-05 + syst_JES_EtaIntercalibration_Stat194: 4.78998651e-08 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 syst_JES_EtaIntercalibration_Stat197: 0.0 @@ -18596,70 +18596,70 @@ bins: syst_JES_EtaIntercalibration_Stat199: 0.0 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 1.0075339181443804e-07 - syst_JES_EtaIntercalibration_Stat201: 4.8915955219130704e-05 - syst_JES_EtaIntercalibration_Stat202: 0.0005172231312499471 - syst_JES_EtaIntercalibration_Stat203: 0.0005633827473396749 - syst_JES_EtaIntercalibration_Stat204: 4.788528792854857e-05 - syst_JES_EtaIntercalibration_Stat205: 3.9144348251056624e-05 - syst_JES_EtaIntercalibration_Stat206: 0.0006045680503466916 - syst_JES_EtaIntercalibration_Stat207: 0.0005562483325817706 - syst_JES_EtaIntercalibration_Stat208: 6.469364014337113e-05 - syst_JES_EtaIntercalibration_Stat209: 1.2100416215249819e-06 + syst_JES_EtaIntercalibration_Stat200: 1.00753392e-07 + syst_JES_EtaIntercalibration_Stat201: 4.89159552e-05 + syst_JES_EtaIntercalibration_Stat202: 5.17223131e-04 + syst_JES_EtaIntercalibration_Stat203: 5.63382747e-04 + syst_JES_EtaIntercalibration_Stat204: 4.78852879e-05 + syst_JES_EtaIntercalibration_Stat205: 3.91443483e-05 + syst_JES_EtaIntercalibration_Stat206: 6.04568050e-04 + syst_JES_EtaIntercalibration_Stat207: 5.56248333e-04 + syst_JES_EtaIntercalibration_Stat208: 6.46936401e-05 + syst_JES_EtaIntercalibration_Stat209: 1.21004162e-06 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 syst_JES_EtaIntercalibration_Stat211: 0.0 syst_JES_EtaIntercalibration_Stat212: 0.0 - syst_JES_EtaIntercalibration_Stat213: 3.8226361689229545e-07 - syst_JES_EtaIntercalibration_Stat214: 1.4339048085559935e-05 - syst_JES_EtaIntercalibration_Stat215: 0.00036847081879030804 - syst_JES_EtaIntercalibration_Stat216: 0.00044492159983529686 - syst_JES_EtaIntercalibration_Stat217: 3.54031425158841e-05 - syst_JES_EtaIntercalibration_Stat218: 2.222665284630144e-05 - syst_JES_EtaIntercalibration_Stat219: 0.0004343348156376599 + syst_JES_EtaIntercalibration_Stat213: 3.82263617e-07 + syst_JES_EtaIntercalibration_Stat214: 1.43390481e-05 + syst_JES_EtaIntercalibration_Stat215: 3.68470819e-04 + syst_JES_EtaIntercalibration_Stat216: 4.44921600e-04 + syst_JES_EtaIntercalibration_Stat217: 3.54031425e-05 + syst_JES_EtaIntercalibration_Stat218: 2.22266528e-05 + syst_JES_EtaIntercalibration_Stat219: 4.34334816e-04 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 0.00042708946076905243 - syst_JES_EtaIntercalibration_Stat221: 1.778050828857263e-05 - syst_JES_EtaIntercalibration_Stat222: 1.603601467790548e-06 + syst_JES_EtaIntercalibration_Stat220: 4.27089461e-04 + syst_JES_EtaIntercalibration_Stat221: 1.77805083e-05 + syst_JES_EtaIntercalibration_Stat222: 1.60360147e-06 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 - syst_JES_EtaIntercalibration_Stat225: 1.5248886114107088e-06 - syst_JES_EtaIntercalibration_Stat226: 2.173577122510264e-05 - syst_JES_EtaIntercalibration_Stat227: 0.0002777895741384115 - syst_JES_EtaIntercalibration_Stat228: 0.0002432795922390532 - syst_JES_EtaIntercalibration_Stat229: 2.8653894726546336e-05 + syst_JES_EtaIntercalibration_Stat225: 1.52488861e-06 + syst_JES_EtaIntercalibration_Stat226: 2.17357712e-05 + syst_JES_EtaIntercalibration_Stat227: 2.77789574e-04 + syst_JES_EtaIntercalibration_Stat228: 2.43279592e-04 + syst_JES_EtaIntercalibration_Stat229: 2.86538947e-05 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 1.8687115668288674e-05 - syst_JES_EtaIntercalibration_Stat231: 0.00037982281066307745 - syst_JES_EtaIntercalibration_Stat232: 0.00030181495986779714 - syst_JES_EtaIntercalibration_Stat233: 2.389695216968055e-05 - syst_JES_EtaIntercalibration_Stat234: 4.22733254310564e-06 + syst_JES_EtaIntercalibration_Stat230: 1.86871157e-05 + syst_JES_EtaIntercalibration_Stat231: 3.79822811e-04 + syst_JES_EtaIntercalibration_Stat232: 3.01814960e-04 + syst_JES_EtaIntercalibration_Stat233: 2.38969522e-05 + syst_JES_EtaIntercalibration_Stat234: 4.22733254e-06 syst_JES_EtaIntercalibration_Stat235: 0.0 - syst_JES_EtaIntercalibration_Stat236: 1.0985532247005604e-14 - syst_JES_EtaIntercalibration_Stat237: 1.1052732908652049e-05 - syst_JES_EtaIntercalibration_Stat238: 4.194337047436698e-05 - syst_JES_EtaIntercalibration_Stat239: 2.4785339921009757e-05 + syst_JES_EtaIntercalibration_Stat236: 1.09855322e-14 + syst_JES_EtaIntercalibration_Stat237: 1.10527329e-05 + syst_JES_EtaIntercalibration_Stat238: 4.19433705e-05 + syst_JES_EtaIntercalibration_Stat239: 2.47853399e-05 syst_JES_EtaIntercalibration_Stat24: 0.0 - syst_JES_EtaIntercalibration_Stat240: 1.0815853703507411e-14 - syst_JES_EtaIntercalibration_Stat241: 3.5533022317275523e-06 - syst_JES_EtaIntercalibration_Stat242: 9.913789638680054e-06 - syst_JES_EtaIntercalibration_Stat243: 3.7109172383657384e-05 - syst_JES_EtaIntercalibration_Stat244: 1.2265485222929543e-06 - syst_JES_EtaIntercalibration_Stat245: 1.9624135649755378e-07 + syst_JES_EtaIntercalibration_Stat240: 1.08158537e-14 + syst_JES_EtaIntercalibration_Stat241: 3.55330223e-06 + syst_JES_EtaIntercalibration_Stat242: 9.91378964e-06 + syst_JES_EtaIntercalibration_Stat243: 3.71091724e-05 + syst_JES_EtaIntercalibration_Stat244: 1.22654852e-06 + syst_JES_EtaIntercalibration_Stat245: 1.96241356e-07 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 syst_JES_EtaIntercalibration_Stat27: 0.0 - syst_JES_EtaIntercalibration_Stat28: 8.370135527576599e-18 - syst_JES_EtaIntercalibration_Stat29: 5.5932468001599925e-15 + syst_JES_EtaIntercalibration_Stat28: 8.37013553e-18 + syst_JES_EtaIntercalibration_Stat29: 5.59324680e-15 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 1.8842913442458943e-13 - syst_JES_EtaIntercalibration_Stat31: 9.001428261670478e-14 - syst_JES_EtaIntercalibration_Stat32: 5.70046355571194e-17 - syst_JES_EtaIntercalibration_Stat33: 1.1775357096496053e-16 - syst_JES_EtaIntercalibration_Stat34: 2.2707207322250316e-06 - syst_JES_EtaIntercalibration_Stat35: 8.043656239325444e-09 - syst_JES_EtaIntercalibration_Stat36: 4.400520962553752e-14 - syst_JES_EtaIntercalibration_Stat37: 6.109809223699214e-18 + syst_JES_EtaIntercalibration_Stat30: 1.88429134e-13 + syst_JES_EtaIntercalibration_Stat31: 9.00142826e-14 + syst_JES_EtaIntercalibration_Stat32: 5.70046356e-17 + syst_JES_EtaIntercalibration_Stat33: 1.17753571e-16 + syst_JES_EtaIntercalibration_Stat34: 2.27072073e-06 + syst_JES_EtaIntercalibration_Stat35: 8.04365624e-09 + syst_JES_EtaIntercalibration_Stat36: 4.40052096e-14 + syst_JES_EtaIntercalibration_Stat37: 6.10980922e-18 syst_JES_EtaIntercalibration_Stat38: 0.0 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 @@ -18674,20 +18674,20 @@ bins: syst_JES_EtaIntercalibration_Stat48: 0.0 syst_JES_EtaIntercalibration_Stat49: 0.0 syst_JES_EtaIntercalibration_Stat5: 0.0 - syst_JES_EtaIntercalibration_Stat50: 8.478388703049654e-18 - syst_JES_EtaIntercalibration_Stat51: 1.3631070271625775e-14 - syst_JES_EtaIntercalibration_Stat52: 2.6268219048881104e-11 - syst_JES_EtaIntercalibration_Stat53: 1.5205277595295654e-12 - syst_JES_EtaIntercalibration_Stat54: 4.939566048753675e-15 - syst_JES_EtaIntercalibration_Stat55: 5.343295369439631e-12 - syst_JES_EtaIntercalibration_Stat56: 2.2724505873904604e-06 - syst_JES_EtaIntercalibration_Stat57: 4.090237720534299e-07 - syst_JES_EtaIntercalibration_Stat58: 6.251884380528803e-14 - syst_JES_EtaIntercalibration_Stat59: 2.4874375745935818e-17 + syst_JES_EtaIntercalibration_Stat50: 8.47838870e-18 + syst_JES_EtaIntercalibration_Stat51: 1.36310703e-14 + syst_JES_EtaIntercalibration_Stat52: 2.62682190e-11 + syst_JES_EtaIntercalibration_Stat53: 1.52052776e-12 + syst_JES_EtaIntercalibration_Stat54: 4.93956605e-15 + syst_JES_EtaIntercalibration_Stat55: 5.34329537e-12 + syst_JES_EtaIntercalibration_Stat56: 2.27245059e-06 + syst_JES_EtaIntercalibration_Stat57: 4.09023772e-07 + syst_JES_EtaIntercalibration_Stat58: 6.25188438e-14 + syst_JES_EtaIntercalibration_Stat59: 2.48743757e-17 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 4.131807201455557e-16 - syst_JES_EtaIntercalibration_Stat62: 4.131807201455557e-16 + syst_JES_EtaIntercalibration_Stat61: 4.13180720e-16 + syst_JES_EtaIntercalibration_Stat62: 4.13180720e-16 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 @@ -18695,223 +18695,223 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 8.370135527576599e-18 + syst_JES_EtaIntercalibration_Stat7: 8.37013553e-18 syst_JES_EtaIntercalibration_Stat70: 0.0 syst_JES_EtaIntercalibration_Stat71: 0.0 - syst_JES_EtaIntercalibration_Stat72: 4.872258921691252e-16 - syst_JES_EtaIntercalibration_Stat73: 3.300497342151747e-11 - syst_JES_EtaIntercalibration_Stat74: 2.0917324757243693e-05 - syst_JES_EtaIntercalibration_Stat75: 2.074077211771835e-05 - syst_JES_EtaIntercalibration_Stat76: 8.671215258976103e-13 - syst_JES_EtaIntercalibration_Stat77: 4.683856168532506e-12 - syst_JES_EtaIntercalibration_Stat78: 2.188757949742959e-06 - syst_JES_EtaIntercalibration_Stat79: 2.088508537883434e-06 - syst_JES_EtaIntercalibration_Stat8: 2.5658583027907057e-15 - syst_JES_EtaIntercalibration_Stat80: 6.420186079639748e-13 - syst_JES_EtaIntercalibration_Stat81: 6.813887876975964e-17 - syst_JES_EtaIntercalibration_Stat82: 4.131807201455557e-16 - syst_JES_EtaIntercalibration_Stat83: 4.131807201455557e-16 - syst_JES_EtaIntercalibration_Stat84: 4.131807201455557e-16 + syst_JES_EtaIntercalibration_Stat72: 4.87225892e-16 + syst_JES_EtaIntercalibration_Stat73: 3.30049734e-11 + syst_JES_EtaIntercalibration_Stat74: 2.09173248e-05 + syst_JES_EtaIntercalibration_Stat75: 2.07407721e-05 + syst_JES_EtaIntercalibration_Stat76: 8.67121526e-13 + syst_JES_EtaIntercalibration_Stat77: 4.68385617e-12 + syst_JES_EtaIntercalibration_Stat78: 2.18875795e-06 + syst_JES_EtaIntercalibration_Stat79: 2.08850854e-06 + syst_JES_EtaIntercalibration_Stat8: 2.56585830e-15 + syst_JES_EtaIntercalibration_Stat80: 6.42018608e-13 + syst_JES_EtaIntercalibration_Stat81: 6.81388788e-17 + syst_JES_EtaIntercalibration_Stat82: 4.13180720e-16 + syst_JES_EtaIntercalibration_Stat83: 4.13180720e-16 + syst_JES_EtaIntercalibration_Stat84: 4.13180720e-16 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 syst_JES_EtaIntercalibration_Stat89: 0.0 - syst_JES_EtaIntercalibration_Stat9: 9.760719069310415e-16 + syst_JES_EtaIntercalibration_Stat9: 9.76071907e-16 syst_JES_EtaIntercalibration_Stat90: 0.0 syst_JES_EtaIntercalibration_Stat91: 0.0 syst_JES_EtaIntercalibration_Stat92: 0.0 - syst_JES_EtaIntercalibration_Stat93: 4.376026365322769e-16 - syst_JES_EtaIntercalibration_Stat94: 4.213344689198832e-11 - syst_JES_EtaIntercalibration_Stat95: 2.0909662531172044e-05 - syst_JES_EtaIntercalibration_Stat96: 2.1298255579976496e-05 - syst_JES_EtaIntercalibration_Stat97: 1.4354998894534093e-11 - syst_JES_EtaIntercalibration_Stat98: 2.275256633876715e-12 - syst_JES_EtaIntercalibration_Stat99: 4.706215057264914e-06 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.005619130070571423 - syst_JES_Flavour_Comp: 0.017945034828609277 - syst_JES_Gjet_Generator: 0.026520965291632958 - syst_JES_Gjet_OOC: 0.021275734417406135 - syst_JES_Gjet_Purity: 0.005521886702024952 - syst_JES_Gjet_Stat1: 5.6867918899850724e-05 - syst_JES_Gjet_Stat10: 0.0004953051685577286 - syst_JES_Gjet_Stat11: 0.000644805590856655 - syst_JES_Gjet_Stat12: 0.0023069989163413147 - syst_JES_Gjet_Stat13: 0.00606487203080164 - syst_JES_Gjet_Stat14: 0.007912103054814188 - syst_JES_Gjet_Stat15: 0.0011910390201416575 - syst_JES_Gjet_Stat2: 5.522799833417829e-06 - syst_JES_Gjet_Stat3: 6.381851847230551e-05 - syst_JES_Gjet_Stat4: 5.896973461022188e-05 - syst_JES_Gjet_Stat5: 5.315795424957586e-05 - syst_JES_Gjet_Stat6: 0.0002646764250929803 - syst_JES_Gjet_Stat7: 0.000293695365131968 - syst_JES_Gjet_Stat8: 0.000237567337822353 - syst_JES_Gjet_Stat9: 0.00033220529797099865 - syst_JES_Gjet_Veto: 0.018885107227654283 - syst_JES_Gjet_dPhi: 0.0019742904421589037 - syst_JES_LArESZee: 0.04025425985842989 - syst_JES_LArEsmear: 0.0030710955699880128 - syst_JES_LAr_JVT: 0.003851353342333056 - syst_JES_MJB_Alpha: 0.00026326199877688383 - syst_JES_MJB_Asym: 0.0015646574705027296 - syst_JES_MJB_Beta: 0.00019478081912755165 - syst_JES_MJB_Stat1: 2.4861795203685514e-05 - syst_JES_MJB_Stat10: 3.0474038733814065e-05 - syst_JES_MJB_Stat11: 8.448559093123513e-05 - syst_JES_MJB_Stat12: 8.02815146842659e-05 - syst_JES_MJB_Stat13: 5.612832707287828e-05 - syst_JES_MJB_Stat14: 5.8247064089102386e-05 - syst_JES_MJB_Stat15: 9.68765930191602e-06 - syst_JES_MJB_Stat16: 5.270505170284913e-07 - syst_JES_MJB_Stat2: 4.930845439678677e-05 - syst_JES_MJB_Stat3: 0.0004092971139649045 - syst_JES_MJB_Stat4: 0.00018733045347727102 - syst_JES_MJB_Stat5: 0.0002216891235491719 - syst_JES_MJB_Stat6: 0.00011328581585970946 - syst_JES_MJB_Stat7: 0.00010994862345659448 - syst_JES_MJB_Stat8: 0.0001038200726015928 - syst_JES_MJB_Stat9: 1.5281105980916434e-05 - syst_JES_MJB_Threshold: 0.002040121258651064 - syst_JES_Pileup_MuOffset: 0.00446277525761717 - syst_JES_Pileup_NPVOffset: 0.0045755092339541835 - syst_JES_Pileup_Pt_term: 0.003998977303011359 - syst_JES_PunchThrough_MC15: 0.0010337698921907138 - syst_JES_SingleParticle_HighPt: 4.6721293592964656e-29 - syst_JES_Zjet_MC: 0.014875015126042728 - syst_JES_Zjet_MuScale: 0.0008560565212063979 - syst_JES_Zjet_MuSmearID: 0.0002862618032501018 - syst_JES_Zjet_MuSmearMS: 0.004232185251143905 - syst_JES_Zjet_OOC: 0.006848815718794017 - syst_JES_Zjet_Stat1: 0.0003615324466766434 - syst_JES_Zjet_Stat10: 0.0005172545867365508 - syst_JES_Zjet_Stat11: 0.0007499068742183926 - syst_JES_Zjet_Stat12: 0.0025687430291876224 - syst_JES_Zjet_Stat13: 0.00458750659400071 - syst_JES_Zjet_Stat2: 1.9920241433024854e-05 - syst_JES_Zjet_Stat3: 0.00012141864230833748 - syst_JES_Zjet_Stat4: 7.01743505491857e-05 - syst_JES_Zjet_Stat5: 0.0001925605878678189 - syst_JES_Zjet_Stat6: 0.00024535954739932173 - syst_JES_Zjet_Stat7: 0.00014444791820929784 - syst_JES_Zjet_Stat8: 0.00017945659642375924 - syst_JES_Zjet_Stat9: 0.00035280202309510644 - syst_JES_Zjet_Veto: 0.0014921798651637143 - syst_JES_Zjet_dPhi: 0.0012082493813364854 + syst_JES_EtaIntercalibration_Stat93: 4.37602637e-16 + syst_JES_EtaIntercalibration_Stat94: 4.21334469e-11 + syst_JES_EtaIntercalibration_Stat95: 2.09096625e-05 + syst_JES_EtaIntercalibration_Stat96: 2.12982556e-05 + syst_JES_EtaIntercalibration_Stat97: 1.43549989e-11 + syst_JES_EtaIntercalibration_Stat98: 2.27525663e-12 + syst_JES_EtaIntercalibration_Stat99: 4.70621506e-06 + syst_JES_EtaIntercalibration_TotalStat_MJB: 5.61913007e-03 + syst_JES_Flavour_Comp: 1.79450348e-02 + syst_JES_Gjet_Generator: 2.65209653e-02 + syst_JES_Gjet_OOC: 2.12757344e-02 + syst_JES_Gjet_Purity: 5.52188670e-03 + syst_JES_Gjet_Stat1: 5.68679189e-05 + syst_JES_Gjet_Stat10: 4.95305169e-04 + syst_JES_Gjet_Stat11: 6.44805591e-04 + syst_JES_Gjet_Stat12: 2.30699892e-03 + syst_JES_Gjet_Stat13: 6.06487203e-03 + syst_JES_Gjet_Stat14: 7.91210305e-03 + syst_JES_Gjet_Stat15: 1.19103902e-03 + syst_JES_Gjet_Stat2: 5.52279983e-06 + syst_JES_Gjet_Stat3: 6.38185185e-05 + syst_JES_Gjet_Stat4: 5.89697346e-05 + syst_JES_Gjet_Stat5: 5.31579542e-05 + syst_JES_Gjet_Stat6: 2.64676425e-04 + syst_JES_Gjet_Stat7: 2.93695365e-04 + syst_JES_Gjet_Stat8: 2.37567338e-04 + syst_JES_Gjet_Stat9: 3.32205298e-04 + syst_JES_Gjet_Veto: 1.88851072e-02 + syst_JES_Gjet_dPhi: 1.97429044e-03 + syst_JES_LArESZee: 4.02542599e-02 + syst_JES_LArEsmear: 3.07109557e-03 + syst_JES_LAr_JVT: 3.85135334e-03 + syst_JES_MJB_Alpha: 2.63261999e-04 + syst_JES_MJB_Asym: 1.56465747e-03 + syst_JES_MJB_Beta: 1.94780819e-04 + syst_JES_MJB_Stat1: 2.48617952e-05 + syst_JES_MJB_Stat10: 3.04740387e-05 + syst_JES_MJB_Stat11: 8.44855909e-05 + syst_JES_MJB_Stat12: 8.02815147e-05 + syst_JES_MJB_Stat13: 5.61283271e-05 + syst_JES_MJB_Stat14: 5.82470641e-05 + syst_JES_MJB_Stat15: 9.68765930e-06 + syst_JES_MJB_Stat16: 5.27050517e-07 + syst_JES_MJB_Stat2: 4.93084544e-05 + syst_JES_MJB_Stat3: 4.09297114e-04 + syst_JES_MJB_Stat4: 1.87330453e-04 + syst_JES_MJB_Stat5: 2.21689124e-04 + syst_JES_MJB_Stat6: 1.13285816e-04 + syst_JES_MJB_Stat7: 1.09948623e-04 + syst_JES_MJB_Stat8: 1.03820073e-04 + syst_JES_MJB_Stat9: 1.52811060e-05 + syst_JES_MJB_Threshold: 2.04012126e-03 + syst_JES_Pileup_MuOffset: 4.46277526e-03 + syst_JES_Pileup_NPVOffset: 4.57550923e-03 + syst_JES_Pileup_Pt_term: 3.99897730e-03 + syst_JES_PunchThrough_MC15: 1.03376989e-03 + syst_JES_SingleParticle_HighPt: 4.67212936e-29 + syst_JES_Zjet_MC: 1.48750151e-02 + syst_JES_Zjet_MuScale: 8.56056521e-04 + syst_JES_Zjet_MuSmearID: 2.86261803e-04 + syst_JES_Zjet_MuSmearMS: 4.23218525e-03 + syst_JES_Zjet_OOC: 6.84881572e-03 + syst_JES_Zjet_Stat1: 3.61532447e-04 + syst_JES_Zjet_Stat10: 5.17254587e-04 + syst_JES_Zjet_Stat11: 7.49906874e-04 + syst_JES_Zjet_Stat12: 2.56874303e-03 + syst_JES_Zjet_Stat13: 4.58750659e-03 + syst_JES_Zjet_Stat2: 1.99202414e-05 + syst_JES_Zjet_Stat3: 1.21418642e-04 + syst_JES_Zjet_Stat4: 7.01743505e-05 + syst_JES_Zjet_Stat5: 1.92560588e-04 + syst_JES_Zjet_Stat6: 2.45359547e-04 + syst_JES_Zjet_Stat7: 1.44447918e-04 + syst_JES_Zjet_Stat8: 1.79456596e-04 + syst_JES_Zjet_Stat9: 3.52802023e-04 + syst_JES_Zjet_Veto: 1.49217987e-03 + syst_JES_Zjet_dPhi: 1.20824938e-03 syst_PRW: 0.001014 - syst_Unfolding_bias: 0.0010539 - syst_cleaning: 0.007388062719685047 + syst_Unfolding_bias: 1.05390000e-03 + syst_cleaning: 7.38806272e-03 syst_lumi: 0.02756 - syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.002267703849712303 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.006259381918368618 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 0.0017415116278681575 + syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 2.26770385e-03 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 6.25938192e-03 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 1.74151163e-03 syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 0.006745545400484678 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0034007917828058807 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.005062111318412506 -- stat: 0.0031921 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 6.74554540e-03 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 3.40079178e-03 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 5.06211132e-03 +- stat: 3.19210000e-03 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.0025475119234264635 - syst_JER_NP1: 0.00024639632200988714 - syst_JER_NP2: 0.0007875754868582439 - syst_JER_NP3: 0.0005203246294381999 - syst_JER_NP4: 0.0002725009174296483 - syst_JER_NP5: 0.00031262074067470316 - syst_JER_NP6: 0.00025914837217316263 - syst_JER_NP7: 0.00016271447477099265 - syst_JER_NP8: 0.0005210593128425976 - syst_JES_EtaIntercalibration_Modelling: 0.012194803729457887 - syst_JES_EtaIntercalibration_NonClosure: 2.238675668782774e-10 + syst_JER_NP0: 2.54751192e-03 + syst_JER_NP1: 2.46396322e-04 + syst_JER_NP2: 7.87575487e-04 + syst_JER_NP3: 5.20324629e-04 + syst_JER_NP4: 2.72500917e-04 + syst_JER_NP5: 3.12620741e-04 + syst_JER_NP6: 2.59148372e-04 + syst_JER_NP7: 1.62714475e-04 + syst_JER_NP8: 5.21059313e-04 + syst_JES_EtaIntercalibration_Modelling: 1.21948037e-02 + syst_JES_EtaIntercalibration_NonClosure: 2.23867567e-10 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 1.7259045262080605e-06 - syst_JES_EtaIntercalibration_Stat101: 1.0634089512859104e-13 - syst_JES_EtaIntercalibration_Stat102: 8.610800744994625e-17 - syst_JES_EtaIntercalibration_Stat103: 8.949506522708389e-17 - syst_JES_EtaIntercalibration_Stat104: 8.949506522708389e-17 - syst_JES_EtaIntercalibration_Stat105: 8.949506522708389e-17 + syst_JES_EtaIntercalibration_Stat100: 1.72590453e-06 + syst_JES_EtaIntercalibration_Stat101: 1.06340895e-13 + syst_JES_EtaIntercalibration_Stat102: 8.61080074e-17 + syst_JES_EtaIntercalibration_Stat103: 8.94950652e-17 + syst_JES_EtaIntercalibration_Stat104: 8.94950652e-17 + syst_JES_EtaIntercalibration_Stat105: 8.94950652e-17 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 2.288905142202271e-12 - syst_JES_EtaIntercalibration_Stat111: 2.288905142202271e-12 + syst_JES_EtaIntercalibration_Stat110: 2.28890514e-12 + syst_JES_EtaIntercalibration_Stat111: 2.28890514e-12 syst_JES_EtaIntercalibration_Stat112: 0.0 - syst_JES_EtaIntercalibration_Stat113: 5.823821373863986e-15 - syst_JES_EtaIntercalibration_Stat114: 8.81411104688811e-06 - syst_JES_EtaIntercalibration_Stat115: 7.512103700029706e-07 - syst_JES_EtaIntercalibration_Stat116: 1.0313913648562315e-06 - syst_JES_EtaIntercalibration_Stat117: 3.822759834203556e-09 - syst_JES_EtaIntercalibration_Stat118: 1.3578536598384784e-06 - syst_JES_EtaIntercalibration_Stat119: 1.625714172294749e-06 - syst_JES_EtaIntercalibration_Stat12: 7.612979006065384e-13 - syst_JES_EtaIntercalibration_Stat120: 9.23560668012665e-07 - syst_JES_EtaIntercalibration_Stat121: 1.3484689284796294e-08 - syst_JES_EtaIntercalibration_Stat122: 6.961861791410398e-15 - syst_JES_EtaIntercalibration_Stat123: 8.949506522708389e-17 - syst_JES_EtaIntercalibration_Stat124: 8.949506522708389e-17 - syst_JES_EtaIntercalibration_Stat125: 8.949506522708389e-17 + syst_JES_EtaIntercalibration_Stat113: 5.82382137e-15 + syst_JES_EtaIntercalibration_Stat114: 8.81411105e-06 + syst_JES_EtaIntercalibration_Stat115: 7.51210370e-07 + syst_JES_EtaIntercalibration_Stat116: 1.03139136e-06 + syst_JES_EtaIntercalibration_Stat117: 3.82275983e-09 + syst_JES_EtaIntercalibration_Stat118: 1.35785366e-06 + syst_JES_EtaIntercalibration_Stat119: 1.62571417e-06 + syst_JES_EtaIntercalibration_Stat12: 7.61297901e-13 + syst_JES_EtaIntercalibration_Stat120: 9.23560668e-07 + syst_JES_EtaIntercalibration_Stat121: 1.34846893e-08 + syst_JES_EtaIntercalibration_Stat122: 6.96186179e-15 + syst_JES_EtaIntercalibration_Stat123: 8.94950652e-17 + syst_JES_EtaIntercalibration_Stat124: 8.94950652e-17 + syst_JES_EtaIntercalibration_Stat125: 8.94950652e-17 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 1.344937452077233e-09 - syst_JES_EtaIntercalibration_Stat129: 1.3441762159727235e-09 - syst_JES_EtaIntercalibration_Stat13: 9.580431009187008e-13 - syst_JES_EtaIntercalibration_Stat130: 2.288905142202271e-12 - syst_JES_EtaIntercalibration_Stat131: 5.867322110639572e-18 - syst_JES_EtaIntercalibration_Stat132: 2.6437305057542233e-10 - syst_JES_EtaIntercalibration_Stat133: 7.5868291239457875e-06 - syst_JES_EtaIntercalibration_Stat134: 1.0202912660118188e-05 - syst_JES_EtaIntercalibration_Stat135: 4.735499419279872e-06 - syst_JES_EtaIntercalibration_Stat136: 1.7174836676588803e-06 - syst_JES_EtaIntercalibration_Stat137: 1.3192193174374e-06 - syst_JES_EtaIntercalibration_Stat138: 6.2804530688478205e-06 - syst_JES_EtaIntercalibration_Stat139: 9.328356547645466e-06 - syst_JES_EtaIntercalibration_Stat14: 1.191737558147766e-17 - syst_JES_EtaIntercalibration_Stat140: 2.056438126348566e-06 - syst_JES_EtaIntercalibration_Stat141: 1.2791195238702012e-09 + syst_JES_EtaIntercalibration_Stat128: 1.34493745e-09 + syst_JES_EtaIntercalibration_Stat129: 1.34417622e-09 + syst_JES_EtaIntercalibration_Stat13: 9.58043101e-13 + syst_JES_EtaIntercalibration_Stat130: 2.28890514e-12 + syst_JES_EtaIntercalibration_Stat131: 5.86732211e-18 + syst_JES_EtaIntercalibration_Stat132: 2.64373051e-10 + syst_JES_EtaIntercalibration_Stat133: 7.58682912e-06 + syst_JES_EtaIntercalibration_Stat134: 1.02029127e-05 + syst_JES_EtaIntercalibration_Stat135: 4.73549942e-06 + syst_JES_EtaIntercalibration_Stat136: 1.71748367e-06 + syst_JES_EtaIntercalibration_Stat137: 1.31921932e-06 + syst_JES_EtaIntercalibration_Stat138: 6.28045307e-06 + syst_JES_EtaIntercalibration_Stat139: 9.32835655e-06 + syst_JES_EtaIntercalibration_Stat14: 1.19173756e-17 + syst_JES_EtaIntercalibration_Stat140: 2.05643813e-06 + syst_JES_EtaIntercalibration_Stat141: 1.27911952e-09 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 8.949506522708389e-17 - syst_JES_EtaIntercalibration_Stat144: 8.949506522708389e-17 + syst_JES_EtaIntercalibration_Stat143: 8.94950652e-17 + syst_JES_EtaIntercalibration_Stat144: 8.94950652e-17 syst_JES_EtaIntercalibration_Stat145: 0.0 - syst_JES_EtaIntercalibration_Stat146: 1.344937452077233e-09 - syst_JES_EtaIntercalibration_Stat147: 1.3441762159727235e-09 + syst_JES_EtaIntercalibration_Stat146: 1.34493745e-09 + syst_JES_EtaIntercalibration_Stat147: 1.34417622e-09 syst_JES_EtaIntercalibration_Stat148: 0.0 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 6.875912043503756e-14 - syst_JES_EtaIntercalibration_Stat151: 7.583102077716942e-06 - syst_JES_EtaIntercalibration_Stat152: 1.0132372427028133e-05 - syst_JES_EtaIntercalibration_Stat153: 1.3538682607624716e-05 - syst_JES_EtaIntercalibration_Stat154: 3.117511056516079e-07 - syst_JES_EtaIntercalibration_Stat155: 3.2308865822711883e-06 - syst_JES_EtaIntercalibration_Stat156: 1.3084990332438157e-05 - syst_JES_EtaIntercalibration_Stat157: 8.468785907672954e-06 - syst_JES_EtaIntercalibration_Stat158: 1.9130135258277714e-06 - syst_JES_EtaIntercalibration_Stat159: 1.2834765580742323e-09 + syst_JES_EtaIntercalibration_Stat150: 6.87591204e-14 + syst_JES_EtaIntercalibration_Stat151: 7.58310208e-06 + syst_JES_EtaIntercalibration_Stat152: 1.01323724e-05 + syst_JES_EtaIntercalibration_Stat153: 1.35386826e-05 + syst_JES_EtaIntercalibration_Stat154: 3.11751106e-07 + syst_JES_EtaIntercalibration_Stat155: 3.23088658e-06 + syst_JES_EtaIntercalibration_Stat156: 1.30849903e-05 + syst_JES_EtaIntercalibration_Stat157: 8.46878591e-06 + syst_JES_EtaIntercalibration_Stat158: 1.91301353e-06 + syst_JES_EtaIntercalibration_Stat159: 1.28347656e-09 syst_JES_EtaIntercalibration_Stat16: 0.0 syst_JES_EtaIntercalibration_Stat160: 0.0 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 - syst_JES_EtaIntercalibration_Stat164: 1.344937452077233e-09 + syst_JES_EtaIntercalibration_Stat164: 1.34493745e-09 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 - syst_JES_EtaIntercalibration_Stat168: 4.877455074113958e-12 - syst_JES_EtaIntercalibration_Stat169: 4.265643360619826e-06 + syst_JES_EtaIntercalibration_Stat168: 4.87745507e-12 + syst_JES_EtaIntercalibration_Stat169: 4.26564336e-06 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 2.431925317521079e-05 - syst_JES_EtaIntercalibration_Stat171: 1.4035865773082898e-05 - syst_JES_EtaIntercalibration_Stat172: 4.4516523794541725e-06 - syst_JES_EtaIntercalibration_Stat173: 4.185937738428512e-06 - syst_JES_EtaIntercalibration_Stat174: 1.9620239550015697e-05 - syst_JES_EtaIntercalibration_Stat175: 1.6705609596779163e-05 - syst_JES_EtaIntercalibration_Stat176: 3.56949589157909e-06 - syst_JES_EtaIntercalibration_Stat177: 1.0228608415004457e-08 + syst_JES_EtaIntercalibration_Stat170: 2.43192532e-05 + syst_JES_EtaIntercalibration_Stat171: 1.40358658e-05 + syst_JES_EtaIntercalibration_Stat172: 4.45165238e-06 + syst_JES_EtaIntercalibration_Stat173: 4.18593774e-06 + syst_JES_EtaIntercalibration_Stat174: 1.96202396e-05 + syst_JES_EtaIntercalibration_Stat175: 1.67056096e-05 + syst_JES_EtaIntercalibration_Stat176: 3.56949589e-06 + syst_JES_EtaIntercalibration_Stat177: 1.02286084e-08 syst_JES_EtaIntercalibration_Stat178: 0.0 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 @@ -18920,17 +18920,17 @@ bins: syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 syst_JES_EtaIntercalibration_Stat184: 0.0 - syst_JES_EtaIntercalibration_Stat185: 9.013678892978167e-08 - syst_JES_EtaIntercalibration_Stat186: 1.0102666219864933e-05 - syst_JES_EtaIntercalibration_Stat187: 0.0001418291094944899 - syst_JES_EtaIntercalibration_Stat188: 0.00012102080730188508 - syst_JES_EtaIntercalibration_Stat189: 9.580744373481634e-06 + syst_JES_EtaIntercalibration_Stat185: 9.01367889e-08 + syst_JES_EtaIntercalibration_Stat186: 1.01026662e-05 + syst_JES_EtaIntercalibration_Stat187: 1.41829109e-04 + syst_JES_EtaIntercalibration_Stat188: 1.21020807e-04 + syst_JES_EtaIntercalibration_Stat189: 9.58074437e-06 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 1.4988679686683547e-05 - syst_JES_EtaIntercalibration_Stat191: 0.0001162918195747233 - syst_JES_EtaIntercalibration_Stat192: 0.000151519726438507 - syst_JES_EtaIntercalibration_Stat193: 1.1778447520789826e-05 - syst_JES_EtaIntercalibration_Stat194: 8.818736686736938e-09 + syst_JES_EtaIntercalibration_Stat190: 1.49886797e-05 + syst_JES_EtaIntercalibration_Stat191: 1.16291820e-04 + syst_JES_EtaIntercalibration_Stat192: 1.51519726e-04 + syst_JES_EtaIntercalibration_Stat193: 1.17784475e-05 + syst_JES_EtaIntercalibration_Stat194: 8.81873669e-09 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 syst_JES_EtaIntercalibration_Stat197: 0.0 @@ -18938,70 +18938,70 @@ bins: syst_JES_EtaIntercalibration_Stat199: 0.0 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 1.9216239283546577e-08 - syst_JES_EtaIntercalibration_Stat201: 2.849323209114754e-05 - syst_JES_EtaIntercalibration_Stat202: 0.00023731996860778488 - syst_JES_EtaIntercalibration_Stat203: 0.00025333521271232707 - syst_JES_EtaIntercalibration_Stat204: 2.299989728237933e-05 - syst_JES_EtaIntercalibration_Stat205: 2.079326994486437e-05 - syst_JES_EtaIntercalibration_Stat206: 0.00027097723151585997 - syst_JES_EtaIntercalibration_Stat207: 0.00025692251750284557 - syst_JES_EtaIntercalibration_Stat208: 2.9138398634791173e-05 - syst_JES_EtaIntercalibration_Stat209: 7.896341115193036e-07 + syst_JES_EtaIntercalibration_Stat200: 1.92162393e-08 + syst_JES_EtaIntercalibration_Stat201: 2.84932321e-05 + syst_JES_EtaIntercalibration_Stat202: 2.37319969e-04 + syst_JES_EtaIntercalibration_Stat203: 2.53335213e-04 + syst_JES_EtaIntercalibration_Stat204: 2.29998973e-05 + syst_JES_EtaIntercalibration_Stat205: 2.07932699e-05 + syst_JES_EtaIntercalibration_Stat206: 2.70977232e-04 + syst_JES_EtaIntercalibration_Stat207: 2.56922518e-04 + syst_JES_EtaIntercalibration_Stat208: 2.91383986e-05 + syst_JES_EtaIntercalibration_Stat209: 7.89634112e-07 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 syst_JES_EtaIntercalibration_Stat211: 0.0 syst_JES_EtaIntercalibration_Stat212: 0.0 - syst_JES_EtaIntercalibration_Stat213: 9.014544889511904e-08 - syst_JES_EtaIntercalibration_Stat214: 1.1595628346493345e-05 - syst_JES_EtaIntercalibration_Stat215: 0.00021501224965103733 - syst_JES_EtaIntercalibration_Stat216: 0.0002368570032741274 - syst_JES_EtaIntercalibration_Stat217: 1.944965055598686e-05 - syst_JES_EtaIntercalibration_Stat218: 2.0158622243347884e-05 - syst_JES_EtaIntercalibration_Stat219: 0.00022683233345358858 + syst_JES_EtaIntercalibration_Stat213: 9.01454489e-08 + syst_JES_EtaIntercalibration_Stat214: 1.15956283e-05 + syst_JES_EtaIntercalibration_Stat215: 2.15012250e-04 + syst_JES_EtaIntercalibration_Stat216: 2.36857003e-04 + syst_JES_EtaIntercalibration_Stat217: 1.94496506e-05 + syst_JES_EtaIntercalibration_Stat218: 2.01586222e-05 + syst_JES_EtaIntercalibration_Stat219: 2.26832333e-04 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 0.00023654435102111397 - syst_JES_EtaIntercalibration_Stat221: 1.2952104877200465e-05 - syst_JES_EtaIntercalibration_Stat222: 8.924393985027779e-07 + syst_JES_EtaIntercalibration_Stat220: 2.36544351e-04 + syst_JES_EtaIntercalibration_Stat221: 1.29521049e-05 + syst_JES_EtaIntercalibration_Stat222: 8.92439399e-07 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 - syst_JES_EtaIntercalibration_Stat225: 1.0827180859765622e-06 - syst_JES_EtaIntercalibration_Stat226: 1.3020859879439605e-05 - syst_JES_EtaIntercalibration_Stat227: 0.0003150102657057385 - syst_JES_EtaIntercalibration_Stat228: 0.00024103483150781342 - syst_JES_EtaIntercalibration_Stat229: 2.246495608720391e-05 + syst_JES_EtaIntercalibration_Stat225: 1.08271809e-06 + syst_JES_EtaIntercalibration_Stat226: 1.30208599e-05 + syst_JES_EtaIntercalibration_Stat227: 3.15010266e-04 + syst_JES_EtaIntercalibration_Stat228: 2.41034832e-04 + syst_JES_EtaIntercalibration_Stat229: 2.24649561e-05 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 6.93578782475358e-06 - syst_JES_EtaIntercalibration_Stat231: 0.00035784700641475263 - syst_JES_EtaIntercalibration_Stat232: 0.00032473488802406186 - syst_JES_EtaIntercalibration_Stat233: 1.8363645471419885e-05 - syst_JES_EtaIntercalibration_Stat234: 4.5297241844840833e-07 + syst_JES_EtaIntercalibration_Stat230: 6.93578782e-06 + syst_JES_EtaIntercalibration_Stat231: 3.57847006e-04 + syst_JES_EtaIntercalibration_Stat232: 3.24734888e-04 + syst_JES_EtaIntercalibration_Stat233: 1.83636455e-05 + syst_JES_EtaIntercalibration_Stat234: 4.52972418e-07 syst_JES_EtaIntercalibration_Stat235: 0.0 - syst_JES_EtaIntercalibration_Stat236: 2.5937460843343936e-12 - syst_JES_EtaIntercalibration_Stat237: 8.14558948143104e-06 - syst_JES_EtaIntercalibration_Stat238: 1.7205013077588754e-05 - syst_JES_EtaIntercalibration_Stat239: 8.868296228701429e-06 + syst_JES_EtaIntercalibration_Stat236: 2.59374608e-12 + syst_JES_EtaIntercalibration_Stat237: 8.14558948e-06 + syst_JES_EtaIntercalibration_Stat238: 1.72050131e-05 + syst_JES_EtaIntercalibration_Stat239: 8.86829623e-06 syst_JES_EtaIntercalibration_Stat24: 0.0 - syst_JES_EtaIntercalibration_Stat240: 2.5740288103088513e-12 - syst_JES_EtaIntercalibration_Stat241: 9.72633130990303e-06 - syst_JES_EtaIntercalibration_Stat242: 1.6508037436352028e-05 - syst_JES_EtaIntercalibration_Stat243: 1.0364192895131777e-05 - syst_JES_EtaIntercalibration_Stat244: 2.020202596682488e-06 - syst_JES_EtaIntercalibration_Stat245: 1.3709182141907665e-07 + syst_JES_EtaIntercalibration_Stat240: 2.57402881e-12 + syst_JES_EtaIntercalibration_Stat241: 9.72633131e-06 + syst_JES_EtaIntercalibration_Stat242: 1.65080374e-05 + syst_JES_EtaIntercalibration_Stat243: 1.03641929e-05 + syst_JES_EtaIntercalibration_Stat244: 2.02020260e-06 + syst_JES_EtaIntercalibration_Stat245: 1.37091821e-07 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 syst_JES_EtaIntercalibration_Stat27: 0.0 - syst_JES_EtaIntercalibration_Stat28: 1.857624491117621e-18 - syst_JES_EtaIntercalibration_Stat29: 9.333607036939149e-16 + syst_JES_EtaIntercalibration_Stat28: 1.85762449e-18 + syst_JES_EtaIntercalibration_Stat29: 9.33360704e-16 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 2.781588400536643e-14 - syst_JES_EtaIntercalibration_Stat31: 1.398959280143636e-14 - syst_JES_EtaIntercalibration_Stat32: 1.1558028897697046e-17 - syst_JES_EtaIntercalibration_Stat33: 8.350243753927187e-17 - syst_JES_EtaIntercalibration_Stat34: 1.4731095139938416e-06 - syst_JES_EtaIntercalibration_Stat35: 1.2522746501095705e-09 - syst_JES_EtaIntercalibration_Stat36: 6.796578708637162e-15 - syst_JES_EtaIntercalibration_Stat37: 1.3561957823264309e-18 + syst_JES_EtaIntercalibration_Stat30: 2.78158840e-14 + syst_JES_EtaIntercalibration_Stat31: 1.39895928e-14 + syst_JES_EtaIntercalibration_Stat32: 1.15580289e-17 + syst_JES_EtaIntercalibration_Stat33: 8.35024375e-17 + syst_JES_EtaIntercalibration_Stat34: 1.47310951e-06 + syst_JES_EtaIntercalibration_Stat35: 1.25227465e-09 + syst_JES_EtaIntercalibration_Stat36: 6.79657871e-15 + syst_JES_EtaIntercalibration_Stat37: 1.35619578e-18 syst_JES_EtaIntercalibration_Stat38: 0.0 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 @@ -19016,20 +19016,20 @@ bins: syst_JES_EtaIntercalibration_Stat48: 0.0 syst_JES_EtaIntercalibration_Stat49: 0.0 syst_JES_EtaIntercalibration_Stat5: 0.0 - syst_JES_EtaIntercalibration_Stat50: 1.881873202423585e-18 - syst_JES_EtaIntercalibration_Stat51: 2.1944847703960035e-15 - syst_JES_EtaIntercalibration_Stat52: 3.736409831643205e-12 - syst_JES_EtaIntercalibration_Stat53: 2.175623075695788e-13 - syst_JES_EtaIntercalibration_Stat54: 7.915133147964094e-16 - syst_JES_EtaIntercalibration_Stat55: 7.555085868472972e-13 - syst_JES_EtaIntercalibration_Stat56: 1.4739752260841096e-06 - syst_JES_EtaIntercalibration_Stat57: 1.333679126048466e-06 - syst_JES_EtaIntercalibration_Stat58: 9.513084471794624e-15 - syst_JES_EtaIntercalibration_Stat59: 5.326775267457789e-18 + syst_JES_EtaIntercalibration_Stat50: 1.88187320e-18 + syst_JES_EtaIntercalibration_Stat51: 2.19448477e-15 + syst_JES_EtaIntercalibration_Stat52: 3.73640983e-12 + syst_JES_EtaIntercalibration_Stat53: 2.17562308e-13 + syst_JES_EtaIntercalibration_Stat54: 7.91513315e-16 + syst_JES_EtaIntercalibration_Stat55: 7.55508587e-13 + syst_JES_EtaIntercalibration_Stat56: 1.47397523e-06 + syst_JES_EtaIntercalibration_Stat57: 1.33367913e-06 + syst_JES_EtaIntercalibration_Stat58: 9.51308447e-15 + syst_JES_EtaIntercalibration_Stat59: 5.32677527e-18 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 8.949506522708389e-17 - syst_JES_EtaIntercalibration_Stat62: 8.949506522708389e-17 + syst_JES_EtaIntercalibration_Stat61: 8.94950652e-17 + syst_JES_EtaIntercalibration_Stat62: 8.94950652e-17 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 @@ -19037,223 +19037,223 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 1.857624491117621e-18 + syst_JES_EtaIntercalibration_Stat7: 1.85762449e-18 syst_JES_EtaIntercalibration_Stat70: 0.0 syst_JES_EtaIntercalibration_Stat71: 0.0 - syst_JES_EtaIntercalibration_Stat72: 8.002074730968212e-17 - syst_JES_EtaIntercalibration_Stat73: 4.610781952369901e-12 - syst_JES_EtaIntercalibration_Stat74: 1.3513211937167268e-05 - syst_JES_EtaIntercalibration_Stat75: 1.3492594299939873e-05 - syst_JES_EtaIntercalibration_Stat76: 1.2081660215694697e-13 - syst_JES_EtaIntercalibration_Stat77: 6.60653556109403e-13 - syst_JES_EtaIntercalibration_Stat78: 1.4193313348340505e-06 - syst_JES_EtaIntercalibration_Stat79: 7.275370324061226e-07 - syst_JES_EtaIntercalibration_Stat8: 4.079282626884291e-16 - syst_JES_EtaIntercalibration_Stat80: 9.501504127726305e-14 - syst_JES_EtaIntercalibration_Stat81: 1.4124874335724193e-17 - syst_JES_EtaIntercalibration_Stat82: 8.949506522708389e-17 - syst_JES_EtaIntercalibration_Stat83: 8.949506522708389e-17 - syst_JES_EtaIntercalibration_Stat84: 8.949506522708389e-17 + syst_JES_EtaIntercalibration_Stat72: 8.00207473e-17 + syst_JES_EtaIntercalibration_Stat73: 4.61078195e-12 + syst_JES_EtaIntercalibration_Stat74: 1.35132119e-05 + syst_JES_EtaIntercalibration_Stat75: 1.34925943e-05 + syst_JES_EtaIntercalibration_Stat76: 1.20816602e-13 + syst_JES_EtaIntercalibration_Stat77: 6.60653556e-13 + syst_JES_EtaIntercalibration_Stat78: 1.41933133e-06 + syst_JES_EtaIntercalibration_Stat79: 7.27537032e-07 + syst_JES_EtaIntercalibration_Stat8: 4.07928263e-16 + syst_JES_EtaIntercalibration_Stat80: 9.50150413e-14 + syst_JES_EtaIntercalibration_Stat81: 1.41248743e-17 + syst_JES_EtaIntercalibration_Stat82: 8.94950652e-17 + syst_JES_EtaIntercalibration_Stat83: 8.94950652e-17 + syst_JES_EtaIntercalibration_Stat84: 8.94950652e-17 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 syst_JES_EtaIntercalibration_Stat89: 0.0 - syst_JES_EtaIntercalibration_Stat9: 1.7258826234712487e-16 + syst_JES_EtaIntercalibration_Stat9: 1.72588262e-16 syst_JES_EtaIntercalibration_Stat90: 0.0 syst_JES_EtaIntercalibration_Stat91: 0.0 syst_JES_EtaIntercalibration_Stat92: 0.0 - syst_JES_EtaIntercalibration_Stat93: 7.098810234821043e-17 - syst_JES_EtaIntercalibration_Stat94: 5.9062364080266885e-12 - syst_JES_EtaIntercalibration_Stat95: 1.3504516608127816e-05 - syst_JES_EtaIntercalibration_Stat96: 1.385708673089333e-05 - syst_JES_EtaIntercalibration_Stat97: 2.015045802035279e-12 - syst_JES_EtaIntercalibration_Stat98: 3.25101866612605e-13 - syst_JES_EtaIntercalibration_Stat99: 3.052643864532708e-06 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.003931391072826512 - syst_JES_Flavour_Comp: 0.012138576636080525 - syst_JES_Gjet_Generator: 0.01748695728250058 - syst_JES_Gjet_OOC: 0.014145613480863954 - syst_JES_Gjet_Purity: 0.0034030752269087437 - syst_JES_Gjet_Stat1: 4.0889585088993016e-05 - syst_JES_Gjet_Stat10: 0.00030677827498048165 - syst_JES_Gjet_Stat11: 0.0003778500595474348 - syst_JES_Gjet_Stat12: 0.0013159329874655472 - syst_JES_Gjet_Stat13: 0.0038612507610876557 - syst_JES_Gjet_Stat14: 0.006460500038696694 - syst_JES_Gjet_Stat15: 0.000151214648761289 - syst_JES_Gjet_Stat2: 1.4145861302868764e-05 - syst_JES_Gjet_Stat3: 4.7026554200791703e-05 - syst_JES_Gjet_Stat4: 4.093316625915958e-05 - syst_JES_Gjet_Stat5: 3.762983161004046e-05 - syst_JES_Gjet_Stat6: 0.000161270526445473 - syst_JES_Gjet_Stat7: 0.00018718762646072524 - syst_JES_Gjet_Stat8: 0.00016887605536309758 - syst_JES_Gjet_Stat9: 0.0002088275843848221 - syst_JES_Gjet_Veto: 0.013051651724973357 - syst_JES_Gjet_dPhi: 0.0013163671258429389 - syst_JES_LArESZee: 0.02674308648978274 - syst_JES_LArEsmear: 0.002052017543784653 - syst_JES_LAr_JVT: 0.0025607742481523043 - syst_JES_MJB_Alpha: 0.00018170254724411542 - syst_JES_MJB_Asym: 0.0012265009865466885 - syst_JES_MJB_Beta: 0.00014866372388716757 - syst_JES_MJB_Stat1: 1.584056440755821e-05 - syst_JES_MJB_Stat10: 6.552364570901104e-05 - syst_JES_MJB_Stat11: 4.4968522357311235e-05 - syst_JES_MJB_Stat12: 6.352457064002873e-05 - syst_JES_MJB_Stat13: 6.37980836310935e-05 - syst_JES_MJB_Stat14: 7.295870527222916e-05 - syst_JES_MJB_Stat15: 2.2894896265325162e-05 - syst_JES_MJB_Stat16: 5.532862256554017e-07 - syst_JES_MJB_Stat2: 3.1785928883705754e-05 - syst_JES_MJB_Stat3: 0.00022350677842070026 - syst_JES_MJB_Stat4: 0.00014161467544008283 - syst_JES_MJB_Stat5: 0.00014952387769182553 - syst_JES_MJB_Stat6: 0.00010009990047447601 - syst_JES_MJB_Stat7: 0.00010215158674734328 - syst_JES_MJB_Stat8: 0.00011344524791722217 - syst_JES_MJB_Stat9: 3.980923802335332e-05 - syst_JES_MJB_Threshold: 0.0013521075733831241 - syst_JES_Pileup_MuOffset: 0.003055559645956858 - syst_JES_Pileup_NPVOffset: 0.0031378793396177615 - syst_JES_Pileup_Pt_term: 0.002553522028493195 - syst_JES_PunchThrough_MC15: 0.0008749497171266471 - syst_JES_SingleParticle_HighPt: 6.549453774934212e-24 - syst_JES_Zjet_MC: 0.00900488005194961 - syst_JES_Zjet_MuScale: 0.0005247828193643538 - syst_JES_Zjet_MuSmearID: 0.00017377170425590004 - syst_JES_Zjet_MuSmearMS: 0.002552009796219442 - syst_JES_Zjet_OOC: 0.004340144006827423 - syst_JES_Zjet_Stat1: 0.0002308333327316486 - syst_JES_Zjet_Stat10: 0.0003237007723191281 - syst_JES_Zjet_Stat11: 0.00045912223862496583 - syst_JES_Zjet_Stat12: 0.0014685042560374146 - syst_JES_Zjet_Stat13: 0.002771556376839555 - syst_JES_Zjet_Stat2: 1.2921826757467382e-05 - syst_JES_Zjet_Stat3: 8.764437046952873e-05 - syst_JES_Zjet_Stat4: 5.7749750648812334e-05 - syst_JES_Zjet_Stat5: 0.00012935946689361392 - syst_JES_Zjet_Stat6: 0.0001581824581772581 - syst_JES_Zjet_Stat7: 0.00010373696291582861 - syst_JES_Zjet_Stat8: 0.00011629957125888298 - syst_JES_Zjet_Stat9: 0.00022394698033239923 - syst_JES_Zjet_Veto: 0.0009277105300146161 - syst_JES_Zjet_dPhi: 0.0007625797859896365 - syst_PRW: 0.0006577 - syst_Unfolding_bias: 0.0006836 - syst_cleaning: 0.00502208131654596 + syst_JES_EtaIntercalibration_Stat93: 7.09881023e-17 + syst_JES_EtaIntercalibration_Stat94: 5.90623641e-12 + syst_JES_EtaIntercalibration_Stat95: 1.35045166e-05 + syst_JES_EtaIntercalibration_Stat96: 1.38570867e-05 + syst_JES_EtaIntercalibration_Stat97: 2.01504580e-12 + syst_JES_EtaIntercalibration_Stat98: 3.25101867e-13 + syst_JES_EtaIntercalibration_Stat99: 3.05264386e-06 + syst_JES_EtaIntercalibration_TotalStat_MJB: 3.93139107e-03 + syst_JES_Flavour_Comp: 1.21385766e-02 + syst_JES_Gjet_Generator: 1.74869573e-02 + syst_JES_Gjet_OOC: 1.41456135e-02 + syst_JES_Gjet_Purity: 3.40307523e-03 + syst_JES_Gjet_Stat1: 4.08895851e-05 + syst_JES_Gjet_Stat10: 3.06778275e-04 + syst_JES_Gjet_Stat11: 3.77850060e-04 + syst_JES_Gjet_Stat12: 1.31593299e-03 + syst_JES_Gjet_Stat13: 3.86125076e-03 + syst_JES_Gjet_Stat14: 6.46050004e-03 + syst_JES_Gjet_Stat15: 1.51214649e-04 + syst_JES_Gjet_Stat2: 1.41458613e-05 + syst_JES_Gjet_Stat3: 4.70265542e-05 + syst_JES_Gjet_Stat4: 4.09331663e-05 + syst_JES_Gjet_Stat5: 3.76298316e-05 + syst_JES_Gjet_Stat6: 1.61270526e-04 + syst_JES_Gjet_Stat7: 1.87187626e-04 + syst_JES_Gjet_Stat8: 1.68876055e-04 + syst_JES_Gjet_Stat9: 2.08827584e-04 + syst_JES_Gjet_Veto: 1.30516517e-02 + syst_JES_Gjet_dPhi: 1.31636713e-03 + syst_JES_LArESZee: 2.67430865e-02 + syst_JES_LArEsmear: 2.05201754e-03 + syst_JES_LAr_JVT: 2.56077425e-03 + syst_JES_MJB_Alpha: 1.81702547e-04 + syst_JES_MJB_Asym: 1.22650099e-03 + syst_JES_MJB_Beta: 1.48663724e-04 + syst_JES_MJB_Stat1: 1.58405644e-05 + syst_JES_MJB_Stat10: 6.55236457e-05 + syst_JES_MJB_Stat11: 4.49685224e-05 + syst_JES_MJB_Stat12: 6.35245706e-05 + syst_JES_MJB_Stat13: 6.37980836e-05 + syst_JES_MJB_Stat14: 7.29587053e-05 + syst_JES_MJB_Stat15: 2.28948963e-05 + syst_JES_MJB_Stat16: 5.53286226e-07 + syst_JES_MJB_Stat2: 3.17859289e-05 + syst_JES_MJB_Stat3: 2.23506778e-04 + syst_JES_MJB_Stat4: 1.41614675e-04 + syst_JES_MJB_Stat5: 1.49523878e-04 + syst_JES_MJB_Stat6: 1.00099900e-04 + syst_JES_MJB_Stat7: 1.02151587e-04 + syst_JES_MJB_Stat8: 1.13445248e-04 + syst_JES_MJB_Stat9: 3.98092380e-05 + syst_JES_MJB_Threshold: 1.35210757e-03 + syst_JES_Pileup_MuOffset: 3.05555965e-03 + syst_JES_Pileup_NPVOffset: 3.13787934e-03 + syst_JES_Pileup_Pt_term: 2.55352203e-03 + syst_JES_PunchThrough_MC15: 8.74949717e-04 + syst_JES_SingleParticle_HighPt: 6.54945377e-24 + syst_JES_Zjet_MC: 9.00488005e-03 + syst_JES_Zjet_MuScale: 5.24782819e-04 + syst_JES_Zjet_MuSmearID: 1.73771704e-04 + syst_JES_Zjet_MuSmearMS: 2.55200980e-03 + syst_JES_Zjet_OOC: 4.34014401e-03 + syst_JES_Zjet_Stat1: 2.30833333e-04 + syst_JES_Zjet_Stat10: 3.23700772e-04 + syst_JES_Zjet_Stat11: 4.59122239e-04 + syst_JES_Zjet_Stat12: 1.46850426e-03 + syst_JES_Zjet_Stat13: 2.77155638e-03 + syst_JES_Zjet_Stat2: 1.29218268e-05 + syst_JES_Zjet_Stat3: 8.76443705e-05 + syst_JES_Zjet_Stat4: 5.77497506e-05 + syst_JES_Zjet_Stat5: 1.29359467e-04 + syst_JES_Zjet_Stat6: 1.58182458e-04 + syst_JES_Zjet_Stat7: 1.03736963e-04 + syst_JES_Zjet_Stat8: 1.16299571e-04 + syst_JES_Zjet_Stat9: 2.23946980e-04 + syst_JES_Zjet_Veto: 9.27710530e-04 + syst_JES_Zjet_dPhi: 7.62579786e-04 + syst_PRW: 6.57700000e-04 + syst_Unfolding_bias: 6.83600000e-04 + syst_cleaning: 5.02208132e-03 syst_lumi: 0.01788 - syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.00136565404385591 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0040300992543608645 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 0.0010123507136857266 + syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.36565404e-03 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 4.03009925e-03 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 1.01235071e-03 syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 0.003920952862187966 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0021015058291615563 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.003406589900472318 -- stat: 0.0022066 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 3.92095286e-03 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 2.10150583e-03 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 3.40658990e-03 +- stat: 2.20660000e-03 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.001482034962475582 - syst_JER_NP1: 0.00015931028686183452 - syst_JER_NP2: 0.0005275581765786594 - syst_JER_NP3: 0.0002645571582853127 - syst_JER_NP4: 0.00017632375761649364 - syst_JER_NP5: 0.00020254433662781094 - syst_JER_NP6: 0.000170692936804661 - syst_JER_NP7: 7.895550060002152e-05 - syst_JER_NP8: 0.00033017414723142695 - syst_JES_EtaIntercalibration_Modelling: 0.00821623823595689 - syst_JES_EtaIntercalibration_NonClosure: 3.338268123967876e-11 + syst_JER_NP0: 1.48203496e-03 + syst_JER_NP1: 1.59310287e-04 + syst_JER_NP2: 5.27558177e-04 + syst_JER_NP3: 2.64557158e-04 + syst_JER_NP4: 1.76323758e-04 + syst_JER_NP5: 2.02544337e-04 + syst_JER_NP6: 1.70692937e-04 + syst_JER_NP7: 7.89555006e-05 + syst_JER_NP8: 3.30174147e-04 + syst_JES_EtaIntercalibration_Modelling: 8.21623824e-03 + syst_JES_EtaIntercalibration_NonClosure: 3.33826812e-11 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 1.124868186547636e-06 - syst_JES_EtaIntercalibration_Stat101: 1.6620998050715097e-14 - syst_JES_EtaIntercalibration_Stat102: 1.7224651412075078e-17 - syst_JES_EtaIntercalibration_Stat103: 2.0585423847956107e-17 - syst_JES_EtaIntercalibration_Stat104: 2.0585423847956107e-17 - syst_JES_EtaIntercalibration_Stat105: 2.0585423847956107e-17 + syst_JES_EtaIntercalibration_Stat100: 1.12486819e-06 + syst_JES_EtaIntercalibration_Stat101: 1.66209981e-14 + syst_JES_EtaIntercalibration_Stat102: 1.72246514e-17 + syst_JES_EtaIntercalibration_Stat103: 2.05854238e-17 + syst_JES_EtaIntercalibration_Stat104: 2.05854238e-17 + syst_JES_EtaIntercalibration_Stat105: 2.05854238e-17 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 3.411793680749175e-13 - syst_JES_EtaIntercalibration_Stat111: 3.411793680749175e-13 + syst_JES_EtaIntercalibration_Stat110: 3.41179368e-13 + syst_JES_EtaIntercalibration_Stat111: 3.41179368e-13 syst_JES_EtaIntercalibration_Stat112: 0.0 - syst_JES_EtaIntercalibration_Stat113: 1.0086365454414191e-15 - syst_JES_EtaIntercalibration_Stat114: 5.676478953039462e-06 - syst_JES_EtaIntercalibration_Stat115: 8.450860355608771e-07 - syst_JES_EtaIntercalibration_Stat116: 7.868654107914517e-07 - syst_JES_EtaIntercalibration_Stat117: 5.8908361061907e-10 - syst_JES_EtaIntercalibration_Stat118: 8.766664677672357e-07 - syst_JES_EtaIntercalibration_Stat119: 1.8853033462814411e-06 - syst_JES_EtaIntercalibration_Stat12: 1.1282740994022109e-13 - syst_JES_EtaIntercalibration_Stat120: 7.441964256834347e-07 - syst_JES_EtaIntercalibration_Stat121: 2.2940994191211504e-09 - syst_JES_EtaIntercalibration_Stat122: 1.1517304906422333e-15 - syst_JES_EtaIntercalibration_Stat123: 2.0585423847956107e-17 - syst_JES_EtaIntercalibration_Stat124: 2.0585423847956107e-17 - syst_JES_EtaIntercalibration_Stat125: 2.0585423847956107e-17 + syst_JES_EtaIntercalibration_Stat113: 1.00863655e-15 + syst_JES_EtaIntercalibration_Stat114: 5.67647895e-06 + syst_JES_EtaIntercalibration_Stat115: 8.45086036e-07 + syst_JES_EtaIntercalibration_Stat116: 7.86865411e-07 + syst_JES_EtaIntercalibration_Stat117: 5.89083611e-10 + syst_JES_EtaIntercalibration_Stat118: 8.76666468e-07 + syst_JES_EtaIntercalibration_Stat119: 1.88530335e-06 + syst_JES_EtaIntercalibration_Stat12: 1.12827410e-13 + syst_JES_EtaIntercalibration_Stat120: 7.44196426e-07 + syst_JES_EtaIntercalibration_Stat121: 2.29409942e-09 + syst_JES_EtaIntercalibration_Stat122: 1.15173049e-15 + syst_JES_EtaIntercalibration_Stat123: 2.05854238e-17 + syst_JES_EtaIntercalibration_Stat124: 2.05854238e-17 + syst_JES_EtaIntercalibration_Stat125: 2.05854238e-17 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 2.0178391908177424e-10 - syst_JES_EtaIntercalibration_Stat129: 2.016704491574341e-10 - syst_JES_EtaIntercalibration_Stat13: 1.4343527403883886e-13 - syst_JES_EtaIntercalibration_Stat130: 3.411793680749175e-13 - syst_JES_EtaIntercalibration_Stat131: 1.271325292755556e-18 - syst_JES_EtaIntercalibration_Stat132: 3.9408689801457495e-11 - syst_JES_EtaIntercalibration_Stat133: 5.40032611330447e-06 - syst_JES_EtaIntercalibration_Stat134: 5.143957328749919e-06 - syst_JES_EtaIntercalibration_Stat135: 1.9436278115935673e-06 - syst_JES_EtaIntercalibration_Stat136: 1.0597387105447267e-06 - syst_JES_EtaIntercalibration_Stat137: 9.558992729362231e-07 - syst_JES_EtaIntercalibration_Stat138: 3.7999727301653103e-06 - syst_JES_EtaIntercalibration_Stat139: 5.409390238280097e-06 - syst_JES_EtaIntercalibration_Stat14: 2.649171710176598e-18 - syst_JES_EtaIntercalibration_Stat140: 1.0356316949089575e-06 - syst_JES_EtaIntercalibration_Stat141: 1.9286385796434902e-10 + syst_JES_EtaIntercalibration_Stat128: 2.01783919e-10 + syst_JES_EtaIntercalibration_Stat129: 2.01670449e-10 + syst_JES_EtaIntercalibration_Stat13: 1.43435274e-13 + syst_JES_EtaIntercalibration_Stat130: 3.41179368e-13 + syst_JES_EtaIntercalibration_Stat131: 1.27132529e-18 + syst_JES_EtaIntercalibration_Stat132: 3.94086898e-11 + syst_JES_EtaIntercalibration_Stat133: 5.40032611e-06 + syst_JES_EtaIntercalibration_Stat134: 5.14395733e-06 + syst_JES_EtaIntercalibration_Stat135: 1.94362781e-06 + syst_JES_EtaIntercalibration_Stat136: 1.05973871e-06 + syst_JES_EtaIntercalibration_Stat137: 9.55899273e-07 + syst_JES_EtaIntercalibration_Stat138: 3.79997273e-06 + syst_JES_EtaIntercalibration_Stat139: 5.40939024e-06 + syst_JES_EtaIntercalibration_Stat14: 2.64917171e-18 + syst_JES_EtaIntercalibration_Stat140: 1.03563169e-06 + syst_JES_EtaIntercalibration_Stat141: 1.92863858e-10 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 2.0585423847956107e-17 - syst_JES_EtaIntercalibration_Stat144: 2.0585423847956107e-17 + syst_JES_EtaIntercalibration_Stat143: 2.05854238e-17 + syst_JES_EtaIntercalibration_Stat144: 2.05854238e-17 syst_JES_EtaIntercalibration_Stat145: 0.0 - syst_JES_EtaIntercalibration_Stat146: 2.0178391908177424e-10 - syst_JES_EtaIntercalibration_Stat147: 2.016704491574341e-10 + syst_JES_EtaIntercalibration_Stat146: 2.01783919e-10 + syst_JES_EtaIntercalibration_Stat147: 2.01670449e-10 syst_JES_EtaIntercalibration_Stat148: 0.0 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 1.0706394753020272e-14 - syst_JES_EtaIntercalibration_Stat151: 5.39884645828169e-06 - syst_JES_EtaIntercalibration_Stat152: 4.980195252196443e-06 - syst_JES_EtaIntercalibration_Stat153: 8.257494690733988e-06 - syst_JES_EtaIntercalibration_Stat154: 4.1919147901048754e-07 - syst_JES_EtaIntercalibration_Stat155: 2.187868762060467e-06 - syst_JES_EtaIntercalibration_Stat156: 9.265787122527693e-06 - syst_JES_EtaIntercalibration_Stat157: 5.405887523802173e-06 - syst_JES_EtaIntercalibration_Stat158: 1.2587277574996113e-06 - syst_JES_EtaIntercalibration_Stat159: 1.9347428734240392e-10 + syst_JES_EtaIntercalibration_Stat150: 1.07063948e-14 + syst_JES_EtaIntercalibration_Stat151: 5.39884646e-06 + syst_JES_EtaIntercalibration_Stat152: 4.98019525e-06 + syst_JES_EtaIntercalibration_Stat153: 8.25749469e-06 + syst_JES_EtaIntercalibration_Stat154: 4.19191479e-07 + syst_JES_EtaIntercalibration_Stat155: 2.18786876e-06 + syst_JES_EtaIntercalibration_Stat156: 9.26578712e-06 + syst_JES_EtaIntercalibration_Stat157: 5.40588752e-06 + syst_JES_EtaIntercalibration_Stat158: 1.25872776e-06 + syst_JES_EtaIntercalibration_Stat159: 1.93474287e-10 syst_JES_EtaIntercalibration_Stat16: 0.0 syst_JES_EtaIntercalibration_Stat160: 0.0 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 - syst_JES_EtaIntercalibration_Stat164: 2.0178391908177424e-10 + syst_JES_EtaIntercalibration_Stat164: 2.01783919e-10 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 - syst_JES_EtaIntercalibration_Stat168: 6.816485953187317e-13 - syst_JES_EtaIntercalibration_Stat169: 9.582568757906203e-07 + syst_JES_EtaIntercalibration_Stat168: 6.81648595e-13 + syst_JES_EtaIntercalibration_Stat169: 9.58256876e-07 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 1.0878236897585932e-05 - syst_JES_EtaIntercalibration_Stat171: 7.570640725856695e-06 - syst_JES_EtaIntercalibration_Stat172: 7.14311211937766e-07 - syst_JES_EtaIntercalibration_Stat173: 3.5732291768091226e-06 - syst_JES_EtaIntercalibration_Stat174: 1.2573373572752859e-05 - syst_JES_EtaIntercalibration_Stat175: 7.181248690165242e-06 - syst_JES_EtaIntercalibration_Stat176: 1.940971122860088e-06 - syst_JES_EtaIntercalibration_Stat177: 1.6134597632107225e-09 + syst_JES_EtaIntercalibration_Stat170: 1.08782369e-05 + syst_JES_EtaIntercalibration_Stat171: 7.57064073e-06 + syst_JES_EtaIntercalibration_Stat172: 7.14311212e-07 + syst_JES_EtaIntercalibration_Stat173: 3.57322918e-06 + syst_JES_EtaIntercalibration_Stat174: 1.25733736e-05 + syst_JES_EtaIntercalibration_Stat175: 7.18124869e-06 + syst_JES_EtaIntercalibration_Stat176: 1.94097112e-06 + syst_JES_EtaIntercalibration_Stat177: 1.61345976e-09 syst_JES_EtaIntercalibration_Stat178: 0.0 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 @@ -19262,17 +19262,17 @@ bins: syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 syst_JES_EtaIntercalibration_Stat184: 0.0 - syst_JES_EtaIntercalibration_Stat185: 1.8347154413355223e-08 - syst_JES_EtaIntercalibration_Stat186: 5.572566083053658e-06 - syst_JES_EtaIntercalibration_Stat187: 6.338840647153072e-05 - syst_JES_EtaIntercalibration_Stat188: 5.5187033576737926e-05 - syst_JES_EtaIntercalibration_Stat189: 5.952449138799927e-06 + syst_JES_EtaIntercalibration_Stat185: 1.83471544e-08 + syst_JES_EtaIntercalibration_Stat186: 5.57256608e-06 + syst_JES_EtaIntercalibration_Stat187: 6.33884065e-05 + syst_JES_EtaIntercalibration_Stat188: 5.51870336e-05 + syst_JES_EtaIntercalibration_Stat189: 5.95244914e-06 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 9.528728246728416e-06 - syst_JES_EtaIntercalibration_Stat191: 6.0865181138315855e-05 - syst_JES_EtaIntercalibration_Stat192: 6.964765179099724e-05 - syst_JES_EtaIntercalibration_Stat193: 5.869629183347105e-06 - syst_JES_EtaIntercalibration_Stat194: 1.4990899739508633e-09 + syst_JES_EtaIntercalibration_Stat190: 9.52872825e-06 + syst_JES_EtaIntercalibration_Stat191: 6.08651811e-05 + syst_JES_EtaIntercalibration_Stat192: 6.96476518e-05 + syst_JES_EtaIntercalibration_Stat193: 5.86962918e-06 + syst_JES_EtaIntercalibration_Stat194: 1.49908997e-09 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 syst_JES_EtaIntercalibration_Stat197: 0.0 @@ -19280,70 +19280,70 @@ bins: syst_JES_EtaIntercalibration_Stat199: 0.0 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 3.2970176626005506e-09 - syst_JES_EtaIntercalibration_Stat201: 1.584893687286311e-05 - syst_JES_EtaIntercalibration_Stat202: 0.00012185034047962279 - syst_JES_EtaIntercalibration_Stat203: 0.00012096244293168024 - syst_JES_EtaIntercalibration_Stat204: 1.1946651664797129e-05 - syst_JES_EtaIntercalibration_Stat205: 1.1122364260803437e-05 - syst_JES_EtaIntercalibration_Stat206: 0.00012453286102471106 - syst_JES_EtaIntercalibration_Stat207: 0.0001287559422900551 - syst_JES_EtaIntercalibration_Stat208: 1.4278273705178787e-05 - syst_JES_EtaIntercalibration_Stat209: 5.100878333398395e-07 + syst_JES_EtaIntercalibration_Stat200: 3.29701766e-09 + syst_JES_EtaIntercalibration_Stat201: 1.58489369e-05 + syst_JES_EtaIntercalibration_Stat202: 1.21850340e-04 + syst_JES_EtaIntercalibration_Stat203: 1.20962443e-04 + syst_JES_EtaIntercalibration_Stat204: 1.19466517e-05 + syst_JES_EtaIntercalibration_Stat205: 1.11223643e-05 + syst_JES_EtaIntercalibration_Stat206: 1.24532861e-04 + syst_JES_EtaIntercalibration_Stat207: 1.28755942e-04 + syst_JES_EtaIntercalibration_Stat208: 1.42782737e-05 + syst_JES_EtaIntercalibration_Stat209: 5.10087833e-07 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 syst_JES_EtaIntercalibration_Stat211: 0.0 syst_JES_EtaIntercalibration_Stat212: 0.0 - syst_JES_EtaIntercalibration_Stat213: 1.8286534268895788e-08 - syst_JES_EtaIntercalibration_Stat214: 8.076702978319805e-06 - syst_JES_EtaIntercalibration_Stat215: 0.00012803552983449554 - syst_JES_EtaIntercalibration_Stat216: 0.0001303093400336292 - syst_JES_EtaIntercalibration_Stat217: 1.0650816306743817e-05 - syst_JES_EtaIntercalibration_Stat218: 1.283002411338342e-05 - syst_JES_EtaIntercalibration_Stat219: 0.00012083762700417449 + syst_JES_EtaIntercalibration_Stat213: 1.82865343e-08 + syst_JES_EtaIntercalibration_Stat214: 8.07670298e-06 + syst_JES_EtaIntercalibration_Stat215: 1.28035530e-04 + syst_JES_EtaIntercalibration_Stat216: 1.30309340e-04 + syst_JES_EtaIntercalibration_Stat217: 1.06508163e-05 + syst_JES_EtaIntercalibration_Stat218: 1.28300241e-05 + syst_JES_EtaIntercalibration_Stat219: 1.20837627e-04 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 0.00013538350444201096 - syst_JES_EtaIntercalibration_Stat221: 8.367307616551457e-06 - syst_JES_EtaIntercalibration_Stat222: 4.988054029378591e-07 + syst_JES_EtaIntercalibration_Stat220: 1.35383504e-04 + syst_JES_EtaIntercalibration_Stat221: 8.36730762e-06 + syst_JES_EtaIntercalibration_Stat222: 4.98805403e-07 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 - syst_JES_EtaIntercalibration_Stat225: 7.233541519891899e-07 - syst_JES_EtaIntercalibration_Stat226: 1.388641015525611e-05 - syst_JES_EtaIntercalibration_Stat227: 0.00026714929814618645 - syst_JES_EtaIntercalibration_Stat228: 0.00019742225685063982 - syst_JES_EtaIntercalibration_Stat229: 1.621465820638844e-05 + syst_JES_EtaIntercalibration_Stat225: 7.23354152e-07 + syst_JES_EtaIntercalibration_Stat226: 1.38864102e-05 + syst_JES_EtaIntercalibration_Stat227: 2.67149298e-04 + syst_JES_EtaIntercalibration_Stat228: 1.97422257e-04 + syst_JES_EtaIntercalibration_Stat229: 1.62146582e-05 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 1.3968278347742073e-05 - syst_JES_EtaIntercalibration_Stat231: 0.0002906976780093023 - syst_JES_EtaIntercalibration_Stat232: 0.00026869300325836544 - syst_JES_EtaIntercalibration_Stat233: 1.4131140037166146e-05 - syst_JES_EtaIntercalibration_Stat234: 8.232641070762165e-07 + syst_JES_EtaIntercalibration_Stat230: 1.39682783e-05 + syst_JES_EtaIntercalibration_Stat231: 2.90697678e-04 + syst_JES_EtaIntercalibration_Stat232: 2.68693003e-04 + syst_JES_EtaIntercalibration_Stat233: 1.41311400e-05 + syst_JES_EtaIntercalibration_Stat234: 8.23264107e-07 syst_JES_EtaIntercalibration_Stat235: 0.0 - syst_JES_EtaIntercalibration_Stat236: 1.4263438400329706e-10 - syst_JES_EtaIntercalibration_Stat237: 4.739017065805945e-06 - syst_JES_EtaIntercalibration_Stat238: 3.528730189459092e-05 - syst_JES_EtaIntercalibration_Stat239: 1.0309393519989427e-05 + syst_JES_EtaIntercalibration_Stat236: 1.42634384e-10 + syst_JES_EtaIntercalibration_Stat237: 4.73901707e-06 + syst_JES_EtaIntercalibration_Stat238: 3.52873019e-05 + syst_JES_EtaIntercalibration_Stat239: 1.03093935e-05 syst_JES_EtaIntercalibration_Stat24: 0.0 - syst_JES_EtaIntercalibration_Stat240: 1.4490488493059855e-10 - syst_JES_EtaIntercalibration_Stat241: 1.021130553602223e-05 - syst_JES_EtaIntercalibration_Stat242: 2.4194872907291743e-05 - syst_JES_EtaIntercalibration_Stat243: 1.2360178073150889e-05 - syst_JES_EtaIntercalibration_Stat244: 2.239813826655019e-06 - syst_JES_EtaIntercalibration_Stat245: 2.6361813291198314e-07 + syst_JES_EtaIntercalibration_Stat240: 1.44904885e-10 + syst_JES_EtaIntercalibration_Stat241: 1.02113055e-05 + syst_JES_EtaIntercalibration_Stat242: 2.41948729e-05 + syst_JES_EtaIntercalibration_Stat243: 1.23601781e-05 + syst_JES_EtaIntercalibration_Stat244: 2.23981383e-06 + syst_JES_EtaIntercalibration_Stat245: 2.63618133e-07 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 syst_JES_EtaIntercalibration_Stat27: 0.0 - syst_JES_EtaIntercalibration_Stat28: 4.405471229051439e-19 - syst_JES_EtaIntercalibration_Stat29: 1.6723267399270392e-16 + syst_JES_EtaIntercalibration_Stat28: 4.40547123e-19 + syst_JES_EtaIntercalibration_Stat29: 1.67232674e-16 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 4.360187393621976e-15 - syst_JES_EtaIntercalibration_Stat31: 2.323148456298047e-15 - syst_JES_EtaIntercalibration_Stat32: 2.5173996007785495e-18 - syst_JES_EtaIntercalibration_Stat33: 3.118439430227882e-17 - syst_JES_EtaIntercalibration_Stat34: 9.50636130940713e-07 - syst_JES_EtaIntercalibration_Stat35: 1.8896706246922486e-10 - syst_JES_EtaIntercalibration_Stat36: 1.1210508938937606e-15 - syst_JES_EtaIntercalibration_Stat37: 3.215552324251621e-19 + syst_JES_EtaIntercalibration_Stat30: 4.36018739e-15 + syst_JES_EtaIntercalibration_Stat31: 2.32314846e-15 + syst_JES_EtaIntercalibration_Stat32: 2.51739960e-18 + syst_JES_EtaIntercalibration_Stat33: 3.11843943e-17 + syst_JES_EtaIntercalibration_Stat34: 9.50636131e-07 + syst_JES_EtaIntercalibration_Stat35: 1.88967062e-10 + syst_JES_EtaIntercalibration_Stat36: 1.12105089e-15 + syst_JES_EtaIntercalibration_Stat37: 3.21555232e-19 syst_JES_EtaIntercalibration_Stat38: 0.0 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 @@ -19358,20 +19358,20 @@ bins: syst_JES_EtaIntercalibration_Stat48: 0.0 syst_JES_EtaIntercalibration_Stat49: 0.0 syst_JES_EtaIntercalibration_Stat5: 0.0 - syst_JES_EtaIntercalibration_Stat50: 4.462628905701211e-19 - syst_JES_EtaIntercalibration_Stat51: 3.771913672129838e-16 - syst_JES_EtaIntercalibration_Stat52: 5.276888571876423e-13 - syst_JES_EtaIntercalibration_Stat53: 3.275776083235849e-14 - syst_JES_EtaIntercalibration_Stat54: 1.353979758895974e-16 - syst_JES_EtaIntercalibration_Stat55: 1.1202712296925016e-13 - syst_JES_EtaIntercalibration_Stat56: 9.513289042143037e-07 - syst_JES_EtaIntercalibration_Stat57: 1.1116302090254555e-06 - syst_JES_EtaIntercalibration_Stat58: 1.5406983741148037e-15 - syst_JES_EtaIntercalibration_Stat59: 1.2222817719331334e-18 + syst_JES_EtaIntercalibration_Stat50: 4.46262891e-19 + syst_JES_EtaIntercalibration_Stat51: 3.77191367e-16 + syst_JES_EtaIntercalibration_Stat52: 5.27688857e-13 + syst_JES_EtaIntercalibration_Stat53: 3.27577608e-14 + syst_JES_EtaIntercalibration_Stat54: 1.35397976e-16 + syst_JES_EtaIntercalibration_Stat55: 1.12027123e-13 + syst_JES_EtaIntercalibration_Stat56: 9.51328904e-07 + syst_JES_EtaIntercalibration_Stat57: 1.11163021e-06 + syst_JES_EtaIntercalibration_Stat58: 1.54069837e-15 + syst_JES_EtaIntercalibration_Stat59: 1.22228177e-18 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 2.0585423847956107e-17 - syst_JES_EtaIntercalibration_Stat62: 2.0585423847956107e-17 + syst_JES_EtaIntercalibration_Stat61: 2.05854238e-17 + syst_JES_EtaIntercalibration_Stat62: 2.05854238e-17 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 @@ -19379,223 +19379,223 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 4.405471229051439e-19 + syst_JES_EtaIntercalibration_Stat7: 4.40547123e-19 syst_JES_EtaIntercalibration_Stat70: 0.0 syst_JES_EtaIntercalibration_Stat71: 0.0 - syst_JES_EtaIntercalibration_Stat72: 1.388238722266455e-17 - syst_JES_EtaIntercalibration_Stat73: 6.666645973223718e-13 - syst_JES_EtaIntercalibration_Stat74: 8.584758586722168e-06 - syst_JES_EtaIntercalibration_Stat75: 8.587495753658844e-06 - syst_JES_EtaIntercalibration_Stat76: 1.7561122878392484e-14 - syst_JES_EtaIntercalibration_Stat77: 9.765367759075947e-14 - syst_JES_EtaIntercalibration_Stat78: 9.163289115185654e-07 - syst_JES_EtaIntercalibration_Stat79: 6.955159926249725e-07 - syst_JES_EtaIntercalibration_Stat8: 6.929185864876192e-17 - syst_JES_EtaIntercalibration_Stat80: 1.4933111157089805e-14 - syst_JES_EtaIntercalibration_Stat81: 3.137610037911021e-18 - syst_JES_EtaIntercalibration_Stat82: 2.0585423847956107e-17 - syst_JES_EtaIntercalibration_Stat83: 2.0585423847956107e-17 - syst_JES_EtaIntercalibration_Stat84: 2.0585423847956107e-17 + syst_JES_EtaIntercalibration_Stat72: 1.38823872e-17 + syst_JES_EtaIntercalibration_Stat73: 6.66664597e-13 + syst_JES_EtaIntercalibration_Stat74: 8.58475859e-06 + syst_JES_EtaIntercalibration_Stat75: 8.58749575e-06 + syst_JES_EtaIntercalibration_Stat76: 1.75611229e-14 + syst_JES_EtaIntercalibration_Stat77: 9.76536776e-14 + syst_JES_EtaIntercalibration_Stat78: 9.16328912e-07 + syst_JES_EtaIntercalibration_Stat79: 6.95515993e-07 + syst_JES_EtaIntercalibration_Stat8: 6.92918586e-17 + syst_JES_EtaIntercalibration_Stat80: 1.49331112e-14 + syst_JES_EtaIntercalibration_Stat81: 3.13761004e-18 + syst_JES_EtaIntercalibration_Stat82: 2.05854238e-17 + syst_JES_EtaIntercalibration_Stat83: 2.05854238e-17 + syst_JES_EtaIntercalibration_Stat84: 2.05854238e-17 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 syst_JES_EtaIntercalibration_Stat89: 0.0 - syst_JES_EtaIntercalibration_Stat9: 3.279612129505561e-17 + syst_JES_EtaIntercalibration_Stat9: 3.27961213e-17 syst_JES_EtaIntercalibration_Stat90: 0.0 syst_JES_EtaIntercalibration_Stat91: 0.0 syst_JES_EtaIntercalibration_Stat92: 0.0 - syst_JES_EtaIntercalibration_Stat93: 1.2115695398944298e-17 - syst_JES_EtaIntercalibration_Stat94: 8.602352091579372e-13 - syst_JES_EtaIntercalibration_Stat95: 8.582997513503078e-06 - syst_JES_EtaIntercalibration_Stat96: 8.823563381650295e-06 - syst_JES_EtaIntercalibration_Stat97: 2.941472397881714e-13 - syst_JES_EtaIntercalibration_Stat98: 4.8902706213460205e-14 - syst_JES_EtaIntercalibration_Stat99: 1.9667294664954276e-06 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0027450633417099865 - syst_JES_Flavour_Comp: 0.008066402791827347 - syst_JES_Gjet_Generator: 0.011435911365081491 - syst_JES_Gjet_OOC: 0.009327467716374044 - syst_JES_Gjet_Purity: 0.002119369953547516 - syst_JES_Gjet_Stat1: 2.72117488412634e-05 - syst_JES_Gjet_Stat10: 0.00019655286184637452 - syst_JES_Gjet_Stat11: 0.0002357580751533232 - syst_JES_Gjet_Stat12: 0.0007804598820567269 - syst_JES_Gjet_Stat13: 0.0024256271354023066 - syst_JES_Gjet_Stat14: 0.004812163416801221 - syst_JES_Gjet_Stat15: 0.0010148078771373427 - syst_JES_Gjet_Stat2: 2.0919622624464333e-05 - syst_JES_Gjet_Stat3: 3.204197103799952e-05 - syst_JES_Gjet_Stat4: 3.049893563716609e-05 - syst_JES_Gjet_Stat5: 2.9178737121404003e-05 - syst_JES_Gjet_Stat6: 9.340096519843894e-05 - syst_JES_Gjet_Stat7: 0.00011776156503715464 - syst_JES_Gjet_Stat8: 0.00011129788171838671 - syst_JES_Gjet_Stat9: 0.0001336948580724031 - syst_JES_Gjet_Veto: 0.008858521998618054 - syst_JES_Gjet_dPhi: 0.0008877868142183686 - syst_JES_LArESZee: 0.017594791132605127 - syst_JES_LArEsmear: 0.0013918816903745806 - syst_JES_LAr_JVT: 0.0017253152610465137 - syst_JES_MJB_Alpha: 0.00011687992246318441 - syst_JES_MJB_Asym: 0.001001796959218783 - syst_JES_MJB_Beta: 0.00011152166011587166 - syst_JES_MJB_Stat1: 1.0179547229985232e-05 - syst_JES_MJB_Stat10: 7.09682286308458e-05 - syst_JES_MJB_Stat11: 1.6645200592062567e-05 - syst_JES_MJB_Stat12: 3.565946601885676e-05 - syst_JES_MJB_Stat13: 5.353587768963912e-05 - syst_JES_MJB_Stat14: 7.012740477160123e-05 - syst_JES_MJB_Stat15: 3.68024921982194e-05 - syst_JES_MJB_Stat16: 3.3094866531684334e-06 - syst_JES_MJB_Stat2: 2.009439971733418e-05 - syst_JES_MJB_Stat3: 0.00011870345266671901 - syst_JES_MJB_Stat4: 9.551713877624267e-05 - syst_JES_MJB_Stat5: 9.295855568477815e-05 - syst_JES_MJB_Stat6: 7.233854159436724e-05 - syst_JES_MJB_Stat7: 8.008573873043814e-05 - syst_JES_MJB_Stat8: 0.00010161550029400042 - syst_JES_MJB_Stat9: 6.04769681366386e-05 - syst_JES_MJB_Threshold: 0.0009326178209749157 - syst_JES_Pileup_MuOffset: 0.0020902755799176334 - syst_JES_Pileup_NPVOffset: 0.0021494633632607 - syst_JES_Pileup_Pt_term: 0.001605690739214747 - syst_JES_PunchThrough_MC15: 0.0007576325676078081 - syst_JES_SingleParticle_HighPt: 7.431480135208598e-20 - syst_JES_Zjet_MC: 0.005476712951214442 - syst_JES_Zjet_MuScale: 0.00034065966520854796 - syst_JES_Zjet_MuSmearID: 0.00010020149936502946 - syst_JES_Zjet_MuSmearMS: 0.0015565037744894807 - syst_JES_Zjet_OOC: 0.0027605370401427324 - syst_JES_Zjet_Stat1: 0.0001437966074008702 - syst_JES_Zjet_Stat10: 0.00021387582261676985 - syst_JES_Zjet_Stat11: 0.00028701834000634865 - syst_JES_Zjet_Stat12: 0.0008866452447286908 - syst_JES_Zjet_Stat13: 0.0016924632935458304 - syst_JES_Zjet_Stat2: 8.340790415182483e-06 - syst_JES_Zjet_Stat3: 6.637903038610912e-05 - syst_JES_Zjet_Stat4: 4.903108503796342e-05 - syst_JES_Zjet_Stat5: 8.871913660535702e-05 - syst_JES_Zjet_Stat6: 0.00010250440222253872 - syst_JES_Zjet_Stat7: 7.307165028244538e-05 - syst_JES_Zjet_Stat8: 7.919888935458628e-05 - syst_JES_Zjet_Stat9: 0.0001400498985183495 - syst_JES_Zjet_Veto: 0.0005961669627713364 - syst_JES_Zjet_dPhi: 0.0004972244865249498 - syst_PRW: 0.0004245 - syst_Unfolding_bias: 0.0004412 - syst_cleaning: 0.003247595264191645 + syst_JES_EtaIntercalibration_Stat93: 1.21156954e-17 + syst_JES_EtaIntercalibration_Stat94: 8.60235209e-13 + syst_JES_EtaIntercalibration_Stat95: 8.58299751e-06 + syst_JES_EtaIntercalibration_Stat96: 8.82356338e-06 + syst_JES_EtaIntercalibration_Stat97: 2.94147240e-13 + syst_JES_EtaIntercalibration_Stat98: 4.89027062e-14 + syst_JES_EtaIntercalibration_Stat99: 1.96672947e-06 + syst_JES_EtaIntercalibration_TotalStat_MJB: 2.74506334e-03 + syst_JES_Flavour_Comp: 8.06640279e-03 + syst_JES_Gjet_Generator: 1.14359114e-02 + syst_JES_Gjet_OOC: 9.32746772e-03 + syst_JES_Gjet_Purity: 2.11936995e-03 + syst_JES_Gjet_Stat1: 2.72117488e-05 + syst_JES_Gjet_Stat10: 1.96552862e-04 + syst_JES_Gjet_Stat11: 2.35758075e-04 + syst_JES_Gjet_Stat12: 7.80459882e-04 + syst_JES_Gjet_Stat13: 2.42562714e-03 + syst_JES_Gjet_Stat14: 4.81216342e-03 + syst_JES_Gjet_Stat15: 1.01480788e-03 + syst_JES_Gjet_Stat2: 2.09196226e-05 + syst_JES_Gjet_Stat3: 3.20419710e-05 + syst_JES_Gjet_Stat4: 3.04989356e-05 + syst_JES_Gjet_Stat5: 2.91787371e-05 + syst_JES_Gjet_Stat6: 9.34009652e-05 + syst_JES_Gjet_Stat7: 1.17761565e-04 + syst_JES_Gjet_Stat8: 1.11297882e-04 + syst_JES_Gjet_Stat9: 1.33694858e-04 + syst_JES_Gjet_Veto: 8.85852200e-03 + syst_JES_Gjet_dPhi: 8.87786814e-04 + syst_JES_LArESZee: 1.75947911e-02 + syst_JES_LArEsmear: 1.39188169e-03 + syst_JES_LAr_JVT: 1.72531526e-03 + syst_JES_MJB_Alpha: 1.16879922e-04 + syst_JES_MJB_Asym: 1.00179696e-03 + syst_JES_MJB_Beta: 1.11521660e-04 + syst_JES_MJB_Stat1: 1.01795472e-05 + syst_JES_MJB_Stat10: 7.09682286e-05 + syst_JES_MJB_Stat11: 1.66452006e-05 + syst_JES_MJB_Stat12: 3.56594660e-05 + syst_JES_MJB_Stat13: 5.35358777e-05 + syst_JES_MJB_Stat14: 7.01274048e-05 + syst_JES_MJB_Stat15: 3.68024922e-05 + syst_JES_MJB_Stat16: 3.30948665e-06 + syst_JES_MJB_Stat2: 2.00943997e-05 + syst_JES_MJB_Stat3: 1.18703453e-04 + syst_JES_MJB_Stat4: 9.55171388e-05 + syst_JES_MJB_Stat5: 9.29585557e-05 + syst_JES_MJB_Stat6: 7.23385416e-05 + syst_JES_MJB_Stat7: 8.00857387e-05 + syst_JES_MJB_Stat8: 1.01615500e-04 + syst_JES_MJB_Stat9: 6.04769681e-05 + syst_JES_MJB_Threshold: 9.32617821e-04 + syst_JES_Pileup_MuOffset: 2.09027558e-03 + syst_JES_Pileup_NPVOffset: 2.14946336e-03 + syst_JES_Pileup_Pt_term: 1.60569074e-03 + syst_JES_PunchThrough_MC15: 7.57632568e-04 + syst_JES_SingleParticle_HighPt: 7.43148014e-20 + syst_JES_Zjet_MC: 5.47671295e-03 + syst_JES_Zjet_MuScale: 3.40659665e-04 + syst_JES_Zjet_MuSmearID: 1.00201499e-04 + syst_JES_Zjet_MuSmearMS: 1.55650377e-03 + syst_JES_Zjet_OOC: 2.76053704e-03 + syst_JES_Zjet_Stat1: 1.43796607e-04 + syst_JES_Zjet_Stat10: 2.13875823e-04 + syst_JES_Zjet_Stat11: 2.87018340e-04 + syst_JES_Zjet_Stat12: 8.86645245e-04 + syst_JES_Zjet_Stat13: 1.69246329e-03 + syst_JES_Zjet_Stat2: 8.34079042e-06 + syst_JES_Zjet_Stat3: 6.63790304e-05 + syst_JES_Zjet_Stat4: 4.90310850e-05 + syst_JES_Zjet_Stat5: 8.87191366e-05 + syst_JES_Zjet_Stat6: 1.02504402e-04 + syst_JES_Zjet_Stat7: 7.30716503e-05 + syst_JES_Zjet_Stat8: 7.91988894e-05 + syst_JES_Zjet_Stat9: 1.40049899e-04 + syst_JES_Zjet_Veto: 5.96166963e-04 + syst_JES_Zjet_dPhi: 4.97224487e-04 + syst_PRW: 4.24500000e-04 + syst_Unfolding_bias: 4.41200000e-04 + syst_cleaning: 3.24759526e-03 syst_lumi: 0.011538 - syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0008171613839995133 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0025732428956474354 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 0.0005509610603300383 + syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 8.17161384e-04 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 2.57324290e-03 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 5.50961060e-04 syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 0.0021337372729555997 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0012912918802501624 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.00227321292447496 -- stat: 0.0015969 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 2.13373727e-03 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.29129188e-03 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 2.27321292e-03 +- stat: 1.59690000e-03 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.0009190709045008444 - syst_JER_NP1: 0.00010476593864419867 - syst_JER_NP2: 0.0003631644358964682 - syst_JER_NP3: 0.00014062165800473269 - syst_JER_NP4: 0.00011784581483871203 - syst_JER_NP5: 0.00011910133028224327 - syst_JER_NP6: 0.00011440652909690076 - syst_JER_NP7: 5.970918941000622e-05 - syst_JER_NP8: 0.00022006332611318954 - syst_JES_EtaIntercalibration_Modelling: 0.005673758608717858 - syst_JES_EtaIntercalibration_NonClosure: 5.1130139839433254e-12 + syst_JER_NP0: 9.19070905e-04 + syst_JER_NP1: 1.04765939e-04 + syst_JER_NP2: 3.63164436e-04 + syst_JER_NP3: 1.40621658e-04 + syst_JER_NP4: 1.17845815e-04 + syst_JER_NP5: 1.19101330e-04 + syst_JER_NP6: 1.14406529e-04 + syst_JER_NP7: 5.97091894e-05 + syst_JER_NP8: 2.20063326e-04 + syst_JES_EtaIntercalibration_Modelling: 5.67375861e-03 + syst_JES_EtaIntercalibration_NonClosure: 5.11301398e-12 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 7.416623051231777e-07 - syst_JES_EtaIntercalibration_Stat101: 2.832750584626186e-15 - syst_JES_EtaIntercalibration_Stat102: 3.774073161303978e-18 - syst_JES_EtaIntercalibration_Stat103: 5.142458847671997e-18 - syst_JES_EtaIntercalibration_Stat104: 5.142458847671997e-18 - syst_JES_EtaIntercalibration_Stat105: 5.142458847671997e-18 + syst_JES_EtaIntercalibration_Stat100: 7.41662305e-07 + syst_JES_EtaIntercalibration_Stat101: 2.83275058e-15 + syst_JES_EtaIntercalibration_Stat102: 3.77407316e-18 + syst_JES_EtaIntercalibration_Stat103: 5.14245885e-18 + syst_JES_EtaIntercalibration_Stat104: 5.14245885e-18 + syst_JES_EtaIntercalibration_Stat105: 5.14245885e-18 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 5.5053234918576763e-14 - syst_JES_EtaIntercalibration_Stat111: 5.5053234918576763e-14 + syst_JES_EtaIntercalibration_Stat110: 5.50532349e-14 + syst_JES_EtaIntercalibration_Stat111: 5.50532349e-14 syst_JES_EtaIntercalibration_Stat112: 0.0 - syst_JES_EtaIntercalibration_Stat113: 1.914842763127041e-16 - syst_JES_EtaIntercalibration_Stat114: 3.729320258532378e-06 - syst_JES_EtaIntercalibration_Stat115: 6.604787581747047e-07 - syst_JES_EtaIntercalibration_Stat116: 5.618437038002651e-07 - syst_JES_EtaIntercalibration_Stat117: 9.186914661626068e-11 - syst_JES_EtaIntercalibration_Stat118: 5.764248148331447e-07 - syst_JES_EtaIntercalibration_Stat119: 1.1368408980591786e-06 - syst_JES_EtaIntercalibration_Stat12: 1.807693356662227e-14 - syst_JES_EtaIntercalibration_Stat120: 6.040612282707772e-07 - syst_JES_EtaIntercalibration_Stat121: 3.815056322939414e-10 - syst_JES_EtaIntercalibration_Stat122: 2.087974369831919e-16 - syst_JES_EtaIntercalibration_Stat123: 5.142458847671997e-18 - syst_JES_EtaIntercalibration_Stat124: 5.142458847671997e-18 - syst_JES_EtaIntercalibration_Stat125: 5.142458847671997e-18 + syst_JES_EtaIntercalibration_Stat113: 1.91484276e-16 + syst_JES_EtaIntercalibration_Stat114: 3.72932026e-06 + syst_JES_EtaIntercalibration_Stat115: 6.60478758e-07 + syst_JES_EtaIntercalibration_Stat116: 5.61843704e-07 + syst_JES_EtaIntercalibration_Stat117: 9.18691466e-11 + syst_JES_EtaIntercalibration_Stat118: 5.76424815e-07 + syst_JES_EtaIntercalibration_Stat119: 1.13684090e-06 + syst_JES_EtaIntercalibration_Stat12: 1.80769336e-14 + syst_JES_EtaIntercalibration_Stat120: 6.04061228e-07 + syst_JES_EtaIntercalibration_Stat121: 3.81505632e-10 + syst_JES_EtaIntercalibration_Stat122: 2.08797437e-16 + syst_JES_EtaIntercalibration_Stat123: 5.14245885e-18 + syst_JES_EtaIntercalibration_Stat124: 5.14245885e-18 + syst_JES_EtaIntercalibration_Stat125: 5.14245885e-18 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 3.096906843933153e-11 - syst_JES_EtaIntercalibration_Stat129: 3.095076088335592e-11 - syst_JES_EtaIntercalibration_Stat13: 2.327385548451412e-14 - syst_JES_EtaIntercalibration_Stat130: 5.5053234918576763e-14 - syst_JES_EtaIntercalibration_Stat131: 3.012902379766062e-19 - syst_JES_EtaIntercalibration_Stat132: 6.040632652576384e-12 - syst_JES_EtaIntercalibration_Stat133: 3.675378510418033e-06 - syst_JES_EtaIntercalibration_Stat134: 2.891923365167203e-06 - syst_JES_EtaIntercalibration_Stat135: 1.4559682660947662e-06 - syst_JES_EtaIntercalibration_Stat136: 4.033514968920656e-07 - syst_JES_EtaIntercalibration_Stat137: 5.538218034711164e-07 - syst_JES_EtaIntercalibration_Stat138: 2.5136015495698596e-06 - syst_JES_EtaIntercalibration_Stat139: 2.7071590330085894e-06 - syst_JES_EtaIntercalibration_Stat14: 6.445827080367577e-19 - syst_JES_EtaIntercalibration_Stat140: 4.939145823925428e-07 - syst_JES_EtaIntercalibration_Stat141: 2.965270995493451e-11 + syst_JES_EtaIntercalibration_Stat128: 3.09690684e-11 + syst_JES_EtaIntercalibration_Stat129: 3.09507609e-11 + syst_JES_EtaIntercalibration_Stat13: 2.32738555e-14 + syst_JES_EtaIntercalibration_Stat130: 5.50532349e-14 + syst_JES_EtaIntercalibration_Stat131: 3.01290238e-19 + syst_JES_EtaIntercalibration_Stat132: 6.04063265e-12 + syst_JES_EtaIntercalibration_Stat133: 3.67537851e-06 + syst_JES_EtaIntercalibration_Stat134: 2.89192337e-06 + syst_JES_EtaIntercalibration_Stat135: 1.45596827e-06 + syst_JES_EtaIntercalibration_Stat136: 4.03351497e-07 + syst_JES_EtaIntercalibration_Stat137: 5.53821803e-07 + syst_JES_EtaIntercalibration_Stat138: 2.51360155e-06 + syst_JES_EtaIntercalibration_Stat139: 2.70715903e-06 + syst_JES_EtaIntercalibration_Stat14: 6.44582708e-19 + syst_JES_EtaIntercalibration_Stat140: 4.93914582e-07 + syst_JES_EtaIntercalibration_Stat141: 2.96527100e-11 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 5.142458847671997e-18 - syst_JES_EtaIntercalibration_Stat144: 5.142458847671997e-18 + syst_JES_EtaIntercalibration_Stat143: 5.14245885e-18 + syst_JES_EtaIntercalibration_Stat144: 5.14245885e-18 syst_JES_EtaIntercalibration_Stat145: 0.0 - syst_JES_EtaIntercalibration_Stat146: 3.096906843933153e-11 - syst_JES_EtaIntercalibration_Stat147: 3.095076088335592e-11 + syst_JES_EtaIntercalibration_Stat146: 3.09690684e-11 + syst_JES_EtaIntercalibration_Stat147: 3.09507609e-11 syst_JES_EtaIntercalibration_Stat148: 0.0 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 1.8177687167238853e-15 - syst_JES_EtaIntercalibration_Stat151: 3.6752793308823144e-06 - syst_JES_EtaIntercalibration_Stat152: 2.7552560679544834e-06 - syst_JES_EtaIntercalibration_Stat153: 4.313975406455165e-06 - syst_JES_EtaIntercalibration_Stat154: 3.413421223358612e-07 - syst_JES_EtaIntercalibration_Stat155: 1.3615612977387393e-06 - syst_JES_EtaIntercalibration_Stat156: 5.630260554139568e-06 - syst_JES_EtaIntercalibration_Stat157: 3.5472772657349467e-06 - syst_JES_EtaIntercalibration_Stat158: 1.0720522223753842e-06 - syst_JES_EtaIntercalibration_Stat159: 2.974869177928352e-11 + syst_JES_EtaIntercalibration_Stat150: 1.81776872e-15 + syst_JES_EtaIntercalibration_Stat151: 3.67527933e-06 + syst_JES_EtaIntercalibration_Stat152: 2.75525607e-06 + syst_JES_EtaIntercalibration_Stat153: 4.31397541e-06 + syst_JES_EtaIntercalibration_Stat154: 3.41342122e-07 + syst_JES_EtaIntercalibration_Stat155: 1.36156130e-06 + syst_JES_EtaIntercalibration_Stat156: 5.63026055e-06 + syst_JES_EtaIntercalibration_Stat157: 3.54727727e-06 + syst_JES_EtaIntercalibration_Stat158: 1.07205222e-06 + syst_JES_EtaIntercalibration_Stat159: 2.97486918e-11 syst_JES_EtaIntercalibration_Stat16: 0.0 syst_JES_EtaIntercalibration_Stat160: 0.0 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 - syst_JES_EtaIntercalibration_Stat164: 3.096906843933153e-11 + syst_JES_EtaIntercalibration_Stat164: 3.09690684e-11 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 - syst_JES_EtaIntercalibration_Stat168: 9.87615370475774e-14 - syst_JES_EtaIntercalibration_Stat169: 9.054575583648303e-07 + syst_JES_EtaIntercalibration_Stat168: 9.87615370e-14 + syst_JES_EtaIntercalibration_Stat169: 9.05457558e-07 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 6.300895650619839e-06 - syst_JES_EtaIntercalibration_Stat171: 4.977019288690773e-06 - syst_JES_EtaIntercalibration_Stat172: 1.1834018886244859e-06 - syst_JES_EtaIntercalibration_Stat173: 2.5274241828391212e-06 - syst_JES_EtaIntercalibration_Stat174: 8.09300739836558e-06 - syst_JES_EtaIntercalibration_Stat175: 4.575545951031418e-06 - syst_JES_EtaIntercalibration_Stat176: 9.854708941101897e-07 - syst_JES_EtaIntercalibration_Stat177: 2.5499215296749817e-10 + syst_JES_EtaIntercalibration_Stat170: 6.30089565e-06 + syst_JES_EtaIntercalibration_Stat171: 4.97701929e-06 + syst_JES_EtaIntercalibration_Stat172: 1.18340189e-06 + syst_JES_EtaIntercalibration_Stat173: 2.52742418e-06 + syst_JES_EtaIntercalibration_Stat174: 8.09300740e-06 + syst_JES_EtaIntercalibration_Stat175: 4.57554595e-06 + syst_JES_EtaIntercalibration_Stat176: 9.85470894e-07 + syst_JES_EtaIntercalibration_Stat177: 2.54992153e-10 syst_JES_EtaIntercalibration_Stat178: 0.0 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 @@ -19604,17 +19604,17 @@ bins: syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 syst_JES_EtaIntercalibration_Stat184: 0.0 - syst_JES_EtaIntercalibration_Stat185: 4.826430261590859e-09 - syst_JES_EtaIntercalibration_Stat186: 3.350790168005153e-06 - syst_JES_EtaIntercalibration_Stat187: 3.340904780145642e-05 - syst_JES_EtaIntercalibration_Stat188: 3.1072480992028945e-05 - syst_JES_EtaIntercalibration_Stat189: 3.912353607484886e-06 + syst_JES_EtaIntercalibration_Stat185: 4.82643026e-09 + syst_JES_EtaIntercalibration_Stat186: 3.35079017e-06 + syst_JES_EtaIntercalibration_Stat187: 3.34090478e-05 + syst_JES_EtaIntercalibration_Stat188: 3.10724810e-05 + syst_JES_EtaIntercalibration_Stat189: 3.91235361e-06 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 5.358572267871359e-06 - syst_JES_EtaIntercalibration_Stat191: 3.341450583204846e-05 - syst_JES_EtaIntercalibration_Stat192: 3.818878097033211e-05 - syst_JES_EtaIntercalibration_Stat193: 3.462197387498292e-06 - syst_JES_EtaIntercalibration_Stat194: 2.4932871374953987e-10 + syst_JES_EtaIntercalibration_Stat190: 5.35857227e-06 + syst_JES_EtaIntercalibration_Stat191: 3.34145058e-05 + syst_JES_EtaIntercalibration_Stat192: 3.81887810e-05 + syst_JES_EtaIntercalibration_Stat193: 3.46219739e-06 + syst_JES_EtaIntercalibration_Stat194: 2.49328714e-10 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 syst_JES_EtaIntercalibration_Stat197: 0.0 @@ -19622,70 +19622,70 @@ bins: syst_JES_EtaIntercalibration_Stat199: 0.0 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 2.307719884973044e-09 - syst_JES_EtaIntercalibration_Stat201: 8.242016788990423e-06 - syst_JES_EtaIntercalibration_Stat202: 7.240167176937284e-05 - syst_JES_EtaIntercalibration_Stat203: 6.677774086475222e-05 - syst_JES_EtaIntercalibration_Stat204: 7.263077791129597e-06 - syst_JES_EtaIntercalibration_Stat205: 6.5159751379106975e-06 - syst_JES_EtaIntercalibration_Stat206: 6.530103521384634e-05 - syst_JES_EtaIntercalibration_Stat207: 7.225140067846436e-05 - syst_JES_EtaIntercalibration_Stat208: 8.108194743591202e-06 - syst_JES_EtaIntercalibration_Stat209: 3.3313381990826565e-07 + syst_JES_EtaIntercalibration_Stat200: 2.30771988e-09 + syst_JES_EtaIntercalibration_Stat201: 8.24201679e-06 + syst_JES_EtaIntercalibration_Stat202: 7.24016718e-05 + syst_JES_EtaIntercalibration_Stat203: 6.67777409e-05 + syst_JES_EtaIntercalibration_Stat204: 7.26307779e-06 + syst_JES_EtaIntercalibration_Stat205: 6.51597514e-06 + syst_JES_EtaIntercalibration_Stat206: 6.53010352e-05 + syst_JES_EtaIntercalibration_Stat207: 7.22514007e-05 + syst_JES_EtaIntercalibration_Stat208: 8.10819474e-06 + syst_JES_EtaIntercalibration_Stat209: 3.33133820e-07 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 syst_JES_EtaIntercalibration_Stat211: 0.0 syst_JES_EtaIntercalibration_Stat212: 0.0 - syst_JES_EtaIntercalibration_Stat213: 4.810329049815614e-09 - syst_JES_EtaIntercalibration_Stat214: 5.4572992175617415e-06 - syst_JES_EtaIntercalibration_Stat215: 7.9909572643082e-05 - syst_JES_EtaIntercalibration_Stat216: 7.864855879162695e-05 - syst_JES_EtaIntercalibration_Stat217: 6.5695354478075535e-06 - syst_JES_EtaIntercalibration_Stat218: 6.8582945948683194e-06 - syst_JES_EtaIntercalibration_Stat219: 7.131579628665726e-05 + syst_JES_EtaIntercalibration_Stat213: 4.81032905e-09 + syst_JES_EtaIntercalibration_Stat214: 5.45729922e-06 + syst_JES_EtaIntercalibration_Stat215: 7.99095726e-05 + syst_JES_EtaIntercalibration_Stat216: 7.86485588e-05 + syst_JES_EtaIntercalibration_Stat217: 6.56953545e-06 + syst_JES_EtaIntercalibration_Stat218: 6.85829459e-06 + syst_JES_EtaIntercalibration_Stat219: 7.13157963e-05 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 8.336353279462189e-05 - syst_JES_EtaIntercalibration_Stat221: 5.483635906038985e-06 - syst_JES_EtaIntercalibration_Stat222: 3.142419607563573e-07 + syst_JES_EtaIntercalibration_Stat220: 8.33635328e-05 + syst_JES_EtaIntercalibration_Stat221: 5.48363591e-06 + syst_JES_EtaIntercalibration_Stat222: 3.14241961e-07 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 - syst_JES_EtaIntercalibration_Stat225: 5.116048087146954e-07 - syst_JES_EtaIntercalibration_Stat226: 1.2922316974908175e-05 - syst_JES_EtaIntercalibration_Stat227: 0.000197878921313009 - syst_JES_EtaIntercalibration_Stat228: 0.00015712790967870732 - syst_JES_EtaIntercalibration_Stat229: 1.2060463465389711e-05 + syst_JES_EtaIntercalibration_Stat225: 5.11604809e-07 + syst_JES_EtaIntercalibration_Stat226: 1.29223170e-05 + syst_JES_EtaIntercalibration_Stat227: 1.97878921e-04 + syst_JES_EtaIntercalibration_Stat228: 1.57127910e-04 + syst_JES_EtaIntercalibration_Stat229: 1.20604635e-05 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 1.3090765705259567e-05 - syst_JES_EtaIntercalibration_Stat231: 0.00021411053220241175 - syst_JES_EtaIntercalibration_Stat232: 0.0001993822710272907 - syst_JES_EtaIntercalibration_Stat233: 1.0045221587899394e-05 - syst_JES_EtaIntercalibration_Stat234: 6.18648969529571e-07 + syst_JES_EtaIntercalibration_Stat230: 1.30907657e-05 + syst_JES_EtaIntercalibration_Stat231: 2.14110532e-04 + syst_JES_EtaIntercalibration_Stat232: 1.99382271e-04 + syst_JES_EtaIntercalibration_Stat233: 1.00452216e-05 + syst_JES_EtaIntercalibration_Stat234: 6.18648970e-07 syst_JES_EtaIntercalibration_Stat235: 0.0 - syst_JES_EtaIntercalibration_Stat236: 2.4335313846342727e-09 - syst_JES_EtaIntercalibration_Stat237: 2.401569695011994e-06 - syst_JES_EtaIntercalibration_Stat238: 3.7238963465703504e-05 - syst_JES_EtaIntercalibration_Stat239: 1.6847975397655355e-05 + syst_JES_EtaIntercalibration_Stat236: 2.43353138e-09 + syst_JES_EtaIntercalibration_Stat237: 2.40156970e-06 + syst_JES_EtaIntercalibration_Stat238: 3.72389635e-05 + syst_JES_EtaIntercalibration_Stat239: 1.68479754e-05 syst_JES_EtaIntercalibration_Stat24: 0.0 - syst_JES_EtaIntercalibration_Stat240: 2.62824785123093e-09 - syst_JES_EtaIntercalibration_Stat241: 7.186278800475619e-06 - syst_JES_EtaIntercalibration_Stat242: 2.0651975087143603e-05 - syst_JES_EtaIntercalibration_Stat243: 1.968674935076891e-05 - syst_JES_EtaIntercalibration_Stat244: 1.9339755672383763e-06 - syst_JES_EtaIntercalibration_Stat245: 1.8948635834803518e-07 + syst_JES_EtaIntercalibration_Stat240: 2.62824785e-09 + syst_JES_EtaIntercalibration_Stat241: 7.18627880e-06 + syst_JES_EtaIntercalibration_Stat242: 2.06519751e-05 + syst_JES_EtaIntercalibration_Stat243: 1.96867494e-05 + syst_JES_EtaIntercalibration_Stat244: 1.93397557e-06 + syst_JES_EtaIntercalibration_Stat245: 1.89486358e-07 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 syst_JES_EtaIntercalibration_Stat27: 0.0 - syst_JES_EtaIntercalibration_Stat28: 1.1396028288399427e-19 - syst_JES_EtaIntercalibration_Stat29: 3.29375469145776e-17 + syst_JES_EtaIntercalibration_Stat28: 1.13960283e-19 + syst_JES_EtaIntercalibration_Stat29: 3.29375469e-17 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 7.459246929147741e-16 - syst_JES_EtaIntercalibration_Stat31: 4.221952954498664e-16 - syst_JES_EtaIntercalibration_Stat32: 6.017381552635665e-19 - syst_JES_EtaIntercalibration_Stat33: 9.48670171700892e-18 - syst_JES_EtaIntercalibration_Stat34: 6.250105412349179e-07 - syst_JES_EtaIntercalibration_Stat35: 2.904655035577552e-11 - syst_JES_EtaIntercalibration_Stat36: 2.0249902535259276e-16 - syst_JES_EtaIntercalibration_Stat37: 8.318174003349533e-20 + syst_JES_EtaIntercalibration_Stat30: 7.45924693e-16 + syst_JES_EtaIntercalibration_Stat31: 4.22195295e-16 + syst_JES_EtaIntercalibration_Stat32: 6.01738155e-19 + syst_JES_EtaIntercalibration_Stat33: 9.48670172e-18 + syst_JES_EtaIntercalibration_Stat34: 6.25010541e-07 + syst_JES_EtaIntercalibration_Stat35: 2.90465504e-11 + syst_JES_EtaIntercalibration_Stat36: 2.02499025e-16 + syst_JES_EtaIntercalibration_Stat37: 8.31817400e-20 syst_JES_EtaIntercalibration_Stat38: 0.0 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 @@ -19700,20 +19700,20 @@ bins: syst_JES_EtaIntercalibration_Stat48: 0.0 syst_JES_EtaIntercalibration_Stat49: 0.0 syst_JES_EtaIntercalibration_Stat5: 0.0 - syst_JES_EtaIntercalibration_Stat50: 1.1544118632446568e-19 - syst_JES_EtaIntercalibration_Stat51: 7.089498765780272e-17 - syst_JES_EtaIntercalibration_Stat52: 7.717928037206619e-14 - syst_JES_EtaIntercalibration_Stat53: 5.350080893547312e-15 - syst_JES_EtaIntercalibration_Stat54: 2.532384646928661e-17 - syst_JES_EtaIntercalibration_Stat55: 1.796134312036547e-14 - syst_JES_EtaIntercalibration_Stat56: 6.254435462795864e-07 - syst_JES_EtaIntercalibration_Stat57: 5.252444075324117e-07 - syst_JES_EtaIntercalibration_Stat58: 2.7241868272936056e-16 - syst_JES_EtaIntercalibration_Stat59: 3.068202272911615e-19 + syst_JES_EtaIntercalibration_Stat50: 1.15441186e-19 + syst_JES_EtaIntercalibration_Stat51: 7.08949877e-17 + syst_JES_EtaIntercalibration_Stat52: 7.71792804e-14 + syst_JES_EtaIntercalibration_Stat53: 5.35008089e-15 + syst_JES_EtaIntercalibration_Stat54: 2.53238465e-17 + syst_JES_EtaIntercalibration_Stat55: 1.79613431e-14 + syst_JES_EtaIntercalibration_Stat56: 6.25443546e-07 + syst_JES_EtaIntercalibration_Stat57: 5.25244408e-07 + syst_JES_EtaIntercalibration_Stat58: 2.72418683e-16 + syst_JES_EtaIntercalibration_Stat59: 3.06820227e-19 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 5.142458847671997e-18 - syst_JES_EtaIntercalibration_Stat62: 5.142458847671997e-18 + syst_JES_EtaIntercalibration_Stat61: 5.14245885e-18 + syst_JES_EtaIntercalibration_Stat62: 5.14245885e-18 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 @@ -19721,223 +19721,223 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 1.1396028288399427e-19 + syst_JES_EtaIntercalibration_Stat7: 1.13960283e-19 syst_JES_EtaIntercalibration_Stat70: 0.0 syst_JES_EtaIntercalibration_Stat71: 0.0 - syst_JES_EtaIntercalibration_Stat72: 2.592014033526825e-18 - syst_JES_EtaIntercalibration_Stat73: 1.0323420473854585e-13 - syst_JES_EtaIntercalibration_Stat74: 5.205056050336829e-06 - syst_JES_EtaIntercalibration_Stat75: 5.187490307294192e-06 - syst_JES_EtaIntercalibration_Stat76: 2.746539926434713e-15 - syst_JES_EtaIntercalibration_Stat77: 1.560193546286806e-14 - syst_JES_EtaIntercalibration_Stat78: 6.024919485516356e-07 - syst_JES_EtaIntercalibration_Stat79: 6.645895590929986e-07 - syst_JES_EtaIntercalibration_Stat8: 1.2901355229199761e-17 - syst_JES_EtaIntercalibration_Stat80: 2.5614322400368117e-15 - syst_JES_EtaIntercalibration_Stat81: 7.631415858148474e-19 - syst_JES_EtaIntercalibration_Stat82: 5.142458847671997e-18 - syst_JES_EtaIntercalibration_Stat83: 5.142458847671997e-18 - syst_JES_EtaIntercalibration_Stat84: 5.142458847671997e-18 + syst_JES_EtaIntercalibration_Stat72: 2.59201403e-18 + syst_JES_EtaIntercalibration_Stat73: 1.03234205e-13 + syst_JES_EtaIntercalibration_Stat74: 5.20505605e-06 + syst_JES_EtaIntercalibration_Stat75: 5.18749031e-06 + syst_JES_EtaIntercalibration_Stat76: 2.74653993e-15 + syst_JES_EtaIntercalibration_Stat77: 1.56019355e-14 + syst_JES_EtaIntercalibration_Stat78: 6.02491949e-07 + syst_JES_EtaIntercalibration_Stat79: 6.64589559e-07 + syst_JES_EtaIntercalibration_Stat8: 1.29013552e-17 + syst_JES_EtaIntercalibration_Stat80: 2.56143224e-15 + syst_JES_EtaIntercalibration_Stat81: 7.63141586e-19 + syst_JES_EtaIntercalibration_Stat82: 5.14245885e-18 + syst_JES_EtaIntercalibration_Stat83: 5.14245885e-18 + syst_JES_EtaIntercalibration_Stat84: 5.14245885e-18 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 syst_JES_EtaIntercalibration_Stat89: 0.0 - syst_JES_EtaIntercalibration_Stat9: 6.848338247341467e-18 + syst_JES_EtaIntercalibration_Stat9: 6.84833825e-18 syst_JES_EtaIntercalibration_Stat90: 0.0 syst_JES_EtaIntercalibration_Stat91: 0.0 syst_JES_EtaIntercalibration_Stat92: 0.0 - syst_JES_EtaIntercalibration_Stat93: 2.2109628558616715e-18 - syst_JES_EtaIntercalibration_Stat94: 1.3453291586355363e-13 - syst_JES_EtaIntercalibration_Stat95: 5.205048994702919e-06 - syst_JES_EtaIntercalibration_Stat96: 5.34394049368067e-06 - syst_JES_EtaIntercalibration_Stat97: 4.6150517494471286e-14 - syst_JES_EtaIntercalibration_Stat98: 7.98096190944425e-15 - syst_JES_EtaIntercalibration_Stat99: 1.2635288881033215e-06 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.001963748138127698 - syst_JES_Flavour_Comp: 0.005461730746750521 - syst_JES_Gjet_Generator: 0.007649454032805217 - syst_JES_Gjet_OOC: 0.0062857141996753236 - syst_JES_Gjet_Purity: 0.0013548737026010949 - syst_JES_Gjet_Stat1: 1.9445493051090272e-05 - syst_JES_Gjet_Stat10: 0.00012952179276090955 - syst_JES_Gjet_Stat11: 0.00015290163504684963 - syst_JES_Gjet_Stat12: 0.0004930417705428212 - syst_JES_Gjet_Stat13: 0.0015434380454038318 - syst_JES_Gjet_Stat14: 0.003461928183830508 - syst_JES_Gjet_Stat15: 0.0015030593692532575 - syst_JES_Gjet_Stat2: 2.1581572579402086e-05 - syst_JES_Gjet_Stat3: 2.1872367658760678e-05 - syst_JES_Gjet_Stat4: 2.379044923913796e-05 - syst_JES_Gjet_Stat5: 2.3856282191489936e-05 - syst_JES_Gjet_Stat6: 5.7038954013901764e-05 - syst_JES_Gjet_Stat7: 7.829988633452798e-05 - syst_JES_Gjet_Stat8: 6.804241912219172e-05 - syst_JES_Gjet_Stat9: 8.61279935619076e-05 - syst_JES_Gjet_Veto: 0.006102346761697503 - syst_JES_Gjet_dPhi: 0.0006144392077333607 - syst_JES_LArESZee: 0.011794684014419377 - syst_JES_LArEsmear: 0.0009674229930593959 - syst_JES_LAr_JVT: 0.0011917323441108746 - syst_JES_MJB_Alpha: 7.265766580340989e-05 - syst_JES_MJB_Asym: 0.0008385130410434891 - syst_JES_MJB_Beta: 8.045587672755796e-05 - syst_JES_MJB_Stat1: 6.685729803656441e-06 - syst_JES_MJB_Stat10: 6.704593108459304e-05 - syst_JES_MJB_Stat11: 3.97038109002146e-05 - syst_JES_MJB_Stat12: 3.48264278242831e-05 - syst_JES_MJB_Stat13: 3.316194015735509e-05 - syst_JES_MJB_Stat14: 5.659576132538548e-05 - syst_JES_MJB_Stat15: 4.5819444289515344e-05 - syst_JES_MJB_Stat16: 1.0728473085672538e-05 - syst_JES_MJB_Stat2: 1.2709530626659665e-05 - syst_JES_MJB_Stat3: 6.420152101001969e-05 - syst_JES_MJB_Stat4: 5.611788908182488e-05 - syst_JES_MJB_Stat5: 5.240588206489802e-05 - syst_JES_MJB_Stat6: 4.585359094989181e-05 - syst_JES_MJB_Stat7: 5.617671792433232e-05 - syst_JES_MJB_Stat8: 7.732820507421598e-05 - syst_JES_MJB_Stat9: 6.48248754337407e-05 - syst_JES_MJB_Threshold: 0.0006763405410737997 - syst_JES_Pileup_MuOffset: 0.0014606247807017378 - syst_JES_Pileup_NPVOffset: 0.0015013836951292632 - syst_JES_Pileup_Pt_term: 0.001039455062761253 - syst_JES_PunchThrough_MC15: 0.0006627918281783504 - syst_JES_SingleParticle_HighPt: 1.1074224250483642e-16 - syst_JES_Zjet_MC: 0.003442394914881208 - syst_JES_Zjet_MuScale: 0.00023183060087054945 - syst_JES_Zjet_MuSmearID: 5.963586504780492e-05 - syst_JES_Zjet_MuSmearMS: 0.0009774611744207543 - syst_JES_Zjet_OOC: 0.001809120435460282 - syst_JES_Zjet_Stat1: 9.396812810735351e-05 - syst_JES_Zjet_Stat10: 0.000146581538742094 - syst_JES_Zjet_Stat11: 0.00018966272037488022 - syst_JES_Zjet_Stat12: 0.0005742802625896174 - syst_JES_Zjet_Stat13: 0.001062851281929885 - syst_JES_Zjet_Stat2: 5.4836838010592835e-06 - syst_JES_Zjet_Stat3: 5.1192470881956854e-05 - syst_JES_Zjet_Stat4: 4.15337585585509e-05 - syst_JES_Zjet_Stat5: 6.0647547353541015e-05 - syst_JES_Zjet_Stat6: 6.856608108241276e-05 - syst_JES_Zjet_Stat7: 5.2361030117827126e-05 - syst_JES_Zjet_Stat8: 5.7094378882688616e-05 - syst_JES_Zjet_Stat9: 8.998469536537867e-05 - syst_JES_Zjet_Veto: 0.0004016248524120488 - syst_JES_Zjet_dPhi: 0.000339780852167982 - syst_PRW: 0.0002791 - syst_Unfolding_bias: 0.0002901 - syst_cleaning: 0.0022204891353033007 + syst_JES_EtaIntercalibration_Stat93: 2.21096286e-18 + syst_JES_EtaIntercalibration_Stat94: 1.34532916e-13 + syst_JES_EtaIntercalibration_Stat95: 5.20504899e-06 + syst_JES_EtaIntercalibration_Stat96: 5.34394049e-06 + syst_JES_EtaIntercalibration_Stat97: 4.61505175e-14 + syst_JES_EtaIntercalibration_Stat98: 7.98096191e-15 + syst_JES_EtaIntercalibration_Stat99: 1.26352889e-06 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.96374814e-03 + syst_JES_Flavour_Comp: 5.46173075e-03 + syst_JES_Gjet_Generator: 7.64945403e-03 + syst_JES_Gjet_OOC: 6.28571420e-03 + syst_JES_Gjet_Purity: 1.35487370e-03 + syst_JES_Gjet_Stat1: 1.94454931e-05 + syst_JES_Gjet_Stat10: 1.29521793e-04 + syst_JES_Gjet_Stat11: 1.52901635e-04 + syst_JES_Gjet_Stat12: 4.93041771e-04 + syst_JES_Gjet_Stat13: 1.54343805e-03 + syst_JES_Gjet_Stat14: 3.46192818e-03 + syst_JES_Gjet_Stat15: 1.50305937e-03 + syst_JES_Gjet_Stat2: 2.15815726e-05 + syst_JES_Gjet_Stat3: 2.18723677e-05 + syst_JES_Gjet_Stat4: 2.37904492e-05 + syst_JES_Gjet_Stat5: 2.38562822e-05 + syst_JES_Gjet_Stat6: 5.70389540e-05 + syst_JES_Gjet_Stat7: 7.82998863e-05 + syst_JES_Gjet_Stat8: 6.80424191e-05 + syst_JES_Gjet_Stat9: 8.61279936e-05 + syst_JES_Gjet_Veto: 6.10234676e-03 + syst_JES_Gjet_dPhi: 6.14439208e-04 + syst_JES_LArESZee: 1.17946840e-02 + syst_JES_LArEsmear: 9.67422993e-04 + syst_JES_LAr_JVT: 1.19173234e-03 + syst_JES_MJB_Alpha: 7.26576658e-05 + syst_JES_MJB_Asym: 8.38513041e-04 + syst_JES_MJB_Beta: 8.04558767e-05 + syst_JES_MJB_Stat1: 6.68572980e-06 + syst_JES_MJB_Stat10: 6.70459311e-05 + syst_JES_MJB_Stat11: 3.97038109e-05 + syst_JES_MJB_Stat12: 3.48264278e-05 + syst_JES_MJB_Stat13: 3.31619402e-05 + syst_JES_MJB_Stat14: 5.65957613e-05 + syst_JES_MJB_Stat15: 4.58194443e-05 + syst_JES_MJB_Stat16: 1.07284731e-05 + syst_JES_MJB_Stat2: 1.27095306e-05 + syst_JES_MJB_Stat3: 6.42015210e-05 + syst_JES_MJB_Stat4: 5.61178891e-05 + syst_JES_MJB_Stat5: 5.24058821e-05 + syst_JES_MJB_Stat6: 4.58535909e-05 + syst_JES_MJB_Stat7: 5.61767179e-05 + syst_JES_MJB_Stat8: 7.73282051e-05 + syst_JES_MJB_Stat9: 6.48248754e-05 + syst_JES_MJB_Threshold: 6.76340541e-04 + syst_JES_Pileup_MuOffset: 1.46062478e-03 + syst_JES_Pileup_NPVOffset: 1.50138370e-03 + syst_JES_Pileup_Pt_term: 1.03945506e-03 + syst_JES_PunchThrough_MC15: 6.62791828e-04 + syst_JES_SingleParticle_HighPt: 1.10742243e-16 + syst_JES_Zjet_MC: 3.44239491e-03 + syst_JES_Zjet_MuScale: 2.31830601e-04 + syst_JES_Zjet_MuSmearID: 5.96358650e-05 + syst_JES_Zjet_MuSmearMS: 9.77461174e-04 + syst_JES_Zjet_OOC: 1.80912044e-03 + syst_JES_Zjet_Stat1: 9.39681281e-05 + syst_JES_Zjet_Stat10: 1.46581539e-04 + syst_JES_Zjet_Stat11: 1.89662720e-04 + syst_JES_Zjet_Stat12: 5.74280263e-04 + syst_JES_Zjet_Stat13: 1.06285128e-03 + syst_JES_Zjet_Stat2: 5.48368380e-06 + syst_JES_Zjet_Stat3: 5.11924709e-05 + syst_JES_Zjet_Stat4: 4.15337586e-05 + syst_JES_Zjet_Stat5: 6.06475474e-05 + syst_JES_Zjet_Stat6: 6.85660811e-05 + syst_JES_Zjet_Stat7: 5.23610301e-05 + syst_JES_Zjet_Stat8: 5.70943789e-05 + syst_JES_Zjet_Stat9: 8.99846954e-05 + syst_JES_Zjet_Veto: 4.01624852e-04 + syst_JES_Zjet_dPhi: 3.39780852e-04 + syst_PRW: 2.79100000e-04 + syst_Unfolding_bias: 2.90100000e-04 + syst_cleaning: 2.22048914e-03 syst_lumi: 0.007586 - syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.000496919618751363 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0016727512516808948 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 0.00028148987104334677 + syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 4.96919619e-04 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.67275125e-03 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 2.81489871e-04 syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 0.0010902062224643556 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0008071998265609329 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0015442337905900128 -- stat: 0.0012635 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 1.09020622e-03 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 8.07199827e-04 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.54423379e-03 +- stat: 1.26350000e-03 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.0006045500041353073 - syst_JER_NP1: 6.881874163336613e-05 - syst_JER_NP2: 0.00025571658139432414 - syst_JER_NP3: 7.665172454028676e-05 - syst_JER_NP4: 8.151947742717687e-05 - syst_JER_NP5: 8.380764091059955e-05 - syst_JER_NP6: 8.318583292845003e-05 - syst_JER_NP7: 4.3898646482551146e-05 - syst_JER_NP8: 0.0001487549663036498 - syst_JES_EtaIntercalibration_Modelling: 0.003946016919312435 - syst_JES_EtaIntercalibration_NonClosure: 8.029787543889315e-13 + syst_JER_NP0: 6.04550004e-04 + syst_JER_NP1: 6.88187416e-05 + syst_JER_NP2: 2.55716581e-04 + syst_JER_NP3: 7.66517245e-05 + syst_JER_NP4: 8.15194774e-05 + syst_JER_NP5: 8.38076409e-05 + syst_JER_NP6: 8.31858329e-05 + syst_JER_NP7: 4.38986465e-05 + syst_JER_NP8: 1.48754966e-04 + syst_JES_EtaIntercalibration_Modelling: 3.94601692e-03 + syst_JES_EtaIntercalibration_NonClosure: 8.02978754e-13 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 4.875720110003895e-07 - syst_JES_EtaIntercalibration_Stat101: 5.175516096728905e-16 - syst_JES_EtaIntercalibration_Stat102: 8.871316531383602e-19 - syst_JES_EtaIntercalibration_Stat103: 1.366588087171844e-18 - syst_JES_EtaIntercalibration_Stat104: 1.366588087171844e-18 - syst_JES_EtaIntercalibration_Stat105: 1.366588087171844e-18 + syst_JES_EtaIntercalibration_Stat100: 4.87572011e-07 + syst_JES_EtaIntercalibration_Stat101: 5.17551610e-16 + syst_JES_EtaIntercalibration_Stat102: 8.87131653e-19 + syst_JES_EtaIntercalibration_Stat103: 1.36658809e-18 + syst_JES_EtaIntercalibration_Stat104: 1.36658809e-18 + syst_JES_EtaIntercalibration_Stat105: 1.36658809e-18 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 9.47864804442068e-15 - syst_JES_EtaIntercalibration_Stat111: 9.47864804442068e-15 + syst_JES_EtaIntercalibration_Stat110: 9.47864804e-15 + syst_JES_EtaIntercalibration_Stat111: 9.47864804e-15 syst_JES_EtaIntercalibration_Stat112: 0.0 - syst_JES_EtaIntercalibration_Stat113: 3.9081963393232943e-17 - syst_JES_EtaIntercalibration_Stat114: 2.444115949841011e-06 - syst_JES_EtaIntercalibration_Stat115: 2.745121308794932e-07 - syst_JES_EtaIntercalibration_Stat116: 3.815128405440635e-07 - syst_JES_EtaIntercalibration_Stat117: 1.4514102133786988e-11 - syst_JES_EtaIntercalibration_Stat118: 3.7853943720137094e-07 - syst_JES_EtaIntercalibration_Stat119: 3.9792995300680745e-07 - syst_JES_EtaIntercalibration_Stat12: 3.08772140812412e-15 - syst_JES_EtaIntercalibration_Stat120: 5.109769539812925e-07 - syst_JES_EtaIntercalibration_Stat121: 6.251713405739262e-11 - syst_JES_EtaIntercalibration_Stat122: 4.075028683098439e-17 - syst_JES_EtaIntercalibration_Stat123: 1.366588087171844e-18 - syst_JES_EtaIntercalibration_Stat124: 1.366588087171844e-18 - syst_JES_EtaIntercalibration_Stat125: 1.366588087171844e-18 + syst_JES_EtaIntercalibration_Stat113: 3.90819634e-17 + syst_JES_EtaIntercalibration_Stat114: 2.44411595e-06 + syst_JES_EtaIntercalibration_Stat115: 2.74512131e-07 + syst_JES_EtaIntercalibration_Stat116: 3.81512841e-07 + syst_JES_EtaIntercalibration_Stat117: 1.45141021e-11 + syst_JES_EtaIntercalibration_Stat118: 3.78539437e-07 + syst_JES_EtaIntercalibration_Stat119: 3.97929953e-07 + syst_JES_EtaIntercalibration_Stat12: 3.08772141e-15 + syst_JES_EtaIntercalibration_Stat120: 5.10976954e-07 + syst_JES_EtaIntercalibration_Stat121: 6.25171341e-11 + syst_JES_EtaIntercalibration_Stat122: 4.07502868e-17 + syst_JES_EtaIntercalibration_Stat123: 1.36658809e-18 + syst_JES_EtaIntercalibration_Stat124: 1.36658809e-18 + syst_JES_EtaIntercalibration_Stat125: 1.36658809e-18 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 4.857536489826916e-12 - syst_JES_EtaIntercalibration_Stat129: 4.8543851662459536e-12 - syst_JES_EtaIntercalibration_Stat13: 4.033770711019033e-15 - syst_JES_EtaIntercalibration_Stat130: 9.47864804442068e-15 - syst_JES_EtaIntercalibration_Stat131: 7.640076112186317e-20 - syst_JES_EtaIntercalibration_Stat132: 9.501390539159557e-13 - syst_JES_EtaIntercalibration_Stat133: 2.4361241637029797e-06 - syst_JES_EtaIntercalibration_Stat134: 1.7586511784603564e-06 - syst_JES_EtaIntercalibration_Stat135: 1.141476884018244e-06 - syst_JES_EtaIntercalibration_Stat136: 1.921373202081001e-07 - syst_JES_EtaIntercalibration_Stat137: 3.8589898613497286e-07 - syst_JES_EtaIntercalibration_Stat138: 1.5855822171997262e-06 - syst_JES_EtaIntercalibration_Stat139: 9.999195191614173e-07 - syst_JES_EtaIntercalibration_Stat14: 1.6792232579380265e-19 - syst_JES_EtaIntercalibration_Stat140: 2.4705459477613446e-07 - syst_JES_EtaIntercalibration_Stat141: 4.648824400582605e-12 + syst_JES_EtaIntercalibration_Stat128: 4.85753649e-12 + syst_JES_EtaIntercalibration_Stat129: 4.85438517e-12 + syst_JES_EtaIntercalibration_Stat13: 4.03377071e-15 + syst_JES_EtaIntercalibration_Stat130: 9.47864804e-15 + syst_JES_EtaIntercalibration_Stat131: 7.64007611e-20 + syst_JES_EtaIntercalibration_Stat132: 9.50139054e-13 + syst_JES_EtaIntercalibration_Stat133: 2.43612416e-06 + syst_JES_EtaIntercalibration_Stat134: 1.75865118e-06 + syst_JES_EtaIntercalibration_Stat135: 1.14147688e-06 + syst_JES_EtaIntercalibration_Stat136: 1.92137320e-07 + syst_JES_EtaIntercalibration_Stat137: 3.85898986e-07 + syst_JES_EtaIntercalibration_Stat138: 1.58558222e-06 + syst_JES_EtaIntercalibration_Stat139: 9.99919519e-07 + syst_JES_EtaIntercalibration_Stat14: 1.67922326e-19 + syst_JES_EtaIntercalibration_Stat140: 2.47054595e-07 + syst_JES_EtaIntercalibration_Stat141: 4.64882440e-12 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 1.366588087171844e-18 - syst_JES_EtaIntercalibration_Stat144: 1.366588087171844e-18 + syst_JES_EtaIntercalibration_Stat143: 1.36658809e-18 + syst_JES_EtaIntercalibration_Stat144: 1.36658809e-18 syst_JES_EtaIntercalibration_Stat145: 0.0 - syst_JES_EtaIntercalibration_Stat146: 4.857536489826916e-12 - syst_JES_EtaIntercalibration_Stat147: 4.8543851662459536e-12 + syst_JES_EtaIntercalibration_Stat146: 4.85753649e-12 + syst_JES_EtaIntercalibration_Stat147: 4.85438517e-12 syst_JES_EtaIntercalibration_Stat148: 0.0 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 3.3105395341998256e-16 - syst_JES_EtaIntercalibration_Stat151: 2.436108258395176e-06 - syst_JES_EtaIntercalibration_Stat152: 1.6609431146189206e-06 - syst_JES_EtaIntercalibration_Stat153: 1.7327369188656425e-06 - syst_JES_EtaIntercalibration_Stat154: 2.4034421587354665e-07 - syst_JES_EtaIntercalibration_Stat155: 8.668466242652158e-07 - syst_JES_EtaIntercalibration_Stat156: 2.7282631595027633e-06 - syst_JES_EtaIntercalibration_Stat157: 2.335268292937666e-06 - syst_JES_EtaIntercalibration_Stat158: 8.157170367601439e-07 - syst_JES_EtaIntercalibration_Stat159: 4.6636785655988045e-12 + syst_JES_EtaIntercalibration_Stat150: 3.31053953e-16 + syst_JES_EtaIntercalibration_Stat151: 2.43610826e-06 + syst_JES_EtaIntercalibration_Stat152: 1.66094311e-06 + syst_JES_EtaIntercalibration_Stat153: 1.73273692e-06 + syst_JES_EtaIntercalibration_Stat154: 2.40344216e-07 + syst_JES_EtaIntercalibration_Stat155: 8.66846624e-07 + syst_JES_EtaIntercalibration_Stat156: 2.72826316e-06 + syst_JES_EtaIntercalibration_Stat157: 2.33526829e-06 + syst_JES_EtaIntercalibration_Stat158: 8.15717037e-07 + syst_JES_EtaIntercalibration_Stat159: 4.66367857e-12 syst_JES_EtaIntercalibration_Stat16: 0.0 syst_JES_EtaIntercalibration_Stat160: 0.0 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 - syst_JES_EtaIntercalibration_Stat164: 4.857536489826916e-12 + syst_JES_EtaIntercalibration_Stat164: 4.85753649e-12 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 - syst_JES_EtaIntercalibration_Stat168: 1.4696451102221923e-14 - syst_JES_EtaIntercalibration_Stat169: 5.795779326371907e-07 + syst_JES_EtaIntercalibration_Stat168: 1.46964511e-14 + syst_JES_EtaIntercalibration_Stat169: 5.79577933e-07 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 4.003031850984951e-06 - syst_JES_EtaIntercalibration_Stat171: 3.933486589528431e-06 - syst_JES_EtaIntercalibration_Stat172: 1.3157763516266738e-06 - syst_JES_EtaIntercalibration_Stat173: 1.4982965152131936e-06 - syst_JES_EtaIntercalibration_Stat174: 4.312967192084818e-06 - syst_JES_EtaIntercalibration_Stat175: 3.2695019116067204e-06 - syst_JES_EtaIntercalibration_Stat176: 5.735534191332023e-07 - syst_JES_EtaIntercalibration_Stat177: 4.052594477615544e-11 + syst_JES_EtaIntercalibration_Stat170: 4.00303185e-06 + syst_JES_EtaIntercalibration_Stat171: 3.93348659e-06 + syst_JES_EtaIntercalibration_Stat172: 1.31577635e-06 + syst_JES_EtaIntercalibration_Stat173: 1.49829652e-06 + syst_JES_EtaIntercalibration_Stat174: 4.31296719e-06 + syst_JES_EtaIntercalibration_Stat175: 3.26950191e-06 + syst_JES_EtaIntercalibration_Stat176: 5.73553419e-07 + syst_JES_EtaIntercalibration_Stat177: 4.05259448e-11 syst_JES_EtaIntercalibration_Stat178: 0.0 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 @@ -19946,17 +19946,17 @@ bins: syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 syst_JES_EtaIntercalibration_Stat184: 0.0 - syst_JES_EtaIntercalibration_Stat185: 1.57067522635967e-08 - syst_JES_EtaIntercalibration_Stat186: 2.03541709484813e-06 - syst_JES_EtaIntercalibration_Stat187: 2.088704083875933e-05 - syst_JES_EtaIntercalibration_Stat188: 2.0438382396853233e-05 - syst_JES_EtaIntercalibration_Stat189: 2.692836562066105e-06 + syst_JES_EtaIntercalibration_Stat185: 1.57067523e-08 + syst_JES_EtaIntercalibration_Stat186: 2.03541709e-06 + syst_JES_EtaIntercalibration_Stat187: 2.08870408e-05 + syst_JES_EtaIntercalibration_Stat188: 2.04383824e-05 + syst_JES_EtaIntercalibration_Stat189: 2.69283656e-06 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 2.361193130601561e-06 - syst_JES_EtaIntercalibration_Stat191: 1.730316950734749e-05 - syst_JES_EtaIntercalibration_Stat192: 2.35121558985985e-05 - syst_JES_EtaIntercalibration_Stat193: 2.412110072115284e-06 - syst_JES_EtaIntercalibration_Stat194: 4.0850418296511966e-11 + syst_JES_EtaIntercalibration_Stat190: 2.36119313e-06 + syst_JES_EtaIntercalibration_Stat191: 1.73031695e-05 + syst_JES_EtaIntercalibration_Stat192: 2.35121559e-05 + syst_JES_EtaIntercalibration_Stat193: 2.41211007e-06 + syst_JES_EtaIntercalibration_Stat194: 4.08504183e-11 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 syst_JES_EtaIntercalibration_Stat197: 0.0 @@ -19964,70 +19964,70 @@ bins: syst_JES_EtaIntercalibration_Stat199: 0.0 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 1.5462447949392584e-08 - syst_JES_EtaIntercalibration_Stat201: 4.406070443149996e-06 - syst_JES_EtaIntercalibration_Stat202: 4.688560200104079e-05 - syst_JES_EtaIntercalibration_Stat203: 4.000910356406402e-05 - syst_JES_EtaIntercalibration_Stat204: 4.945918923718827e-06 - syst_JES_EtaIntercalibration_Stat205: 4.120548825393617e-06 - syst_JES_EtaIntercalibration_Stat206: 3.7748751966124654e-05 - syst_JES_EtaIntercalibration_Stat207: 4.245595378742539e-05 - syst_JES_EtaIntercalibration_Stat208: 5.087004300175103e-06 - syst_JES_EtaIntercalibration_Stat209: 2.1044414555981794e-07 + syst_JES_EtaIntercalibration_Stat200: 1.54624479e-08 + syst_JES_EtaIntercalibration_Stat201: 4.40607044e-06 + syst_JES_EtaIntercalibration_Stat202: 4.68856020e-05 + syst_JES_EtaIntercalibration_Stat203: 4.00091036e-05 + syst_JES_EtaIntercalibration_Stat204: 4.94591892e-06 + syst_JES_EtaIntercalibration_Stat205: 4.12054883e-06 + syst_JES_EtaIntercalibration_Stat206: 3.77487520e-05 + syst_JES_EtaIntercalibration_Stat207: 4.24559538e-05 + syst_JES_EtaIntercalibration_Stat208: 5.08700430e-06 + syst_JES_EtaIntercalibration_Stat209: 2.10444146e-07 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 syst_JES_EtaIntercalibration_Stat211: 0.0 syst_JES_EtaIntercalibration_Stat212: 0.0 - syst_JES_EtaIntercalibration_Stat213: 1.5705479243563376e-08 - syst_JES_EtaIntercalibration_Stat214: 3.621858667521415e-06 - syst_JES_EtaIntercalibration_Stat215: 5.2636959211185445e-05 - syst_JES_EtaIntercalibration_Stat216: 4.941761932752326e-05 - syst_JES_EtaIntercalibration_Stat217: 4.454609768262535e-06 - syst_JES_EtaIntercalibration_Stat218: 3.6066815772951182e-06 - syst_JES_EtaIntercalibration_Stat219: 4.4624559381578206e-05 + syst_JES_EtaIntercalibration_Stat213: 1.57054792e-08 + syst_JES_EtaIntercalibration_Stat214: 3.62185867e-06 + syst_JES_EtaIntercalibration_Stat215: 5.26369592e-05 + syst_JES_EtaIntercalibration_Stat216: 4.94176193e-05 + syst_JES_EtaIntercalibration_Stat217: 4.45460977e-06 + syst_JES_EtaIntercalibration_Stat218: 3.60668158e-06 + syst_JES_EtaIntercalibration_Stat219: 4.46245594e-05 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 5.207301316421012e-05 - syst_JES_EtaIntercalibration_Stat221: 3.913470643814771e-06 - syst_JES_EtaIntercalibration_Stat222: 2.0269703765718923e-07 + syst_JES_EtaIntercalibration_Stat220: 5.20730132e-05 + syst_JES_EtaIntercalibration_Stat221: 3.91347064e-06 + syst_JES_EtaIntercalibration_Stat222: 2.02697038e-07 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 - syst_JES_EtaIntercalibration_Stat225: 3.397477956882134e-07 - syst_JES_EtaIntercalibration_Stat226: 9.513535725480826e-06 - syst_JES_EtaIntercalibration_Stat227: 0.00013724342388617386 - syst_JES_EtaIntercalibration_Stat228: 0.00011981564088214861 - syst_JES_EtaIntercalibration_Stat229: 8.487301735534092e-06 + syst_JES_EtaIntercalibration_Stat225: 3.39747796e-07 + syst_JES_EtaIntercalibration_Stat226: 9.51353573e-06 + syst_JES_EtaIntercalibration_Stat227: 1.37243424e-04 + syst_JES_EtaIntercalibration_Stat228: 1.19815641e-04 + syst_JES_EtaIntercalibration_Stat229: 8.48730174e-06 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 9.952955239525594e-06 - syst_JES_EtaIntercalibration_Stat231: 0.00014427025577020374 - syst_JES_EtaIntercalibration_Stat232: 0.00013727778079499975 - syst_JES_EtaIntercalibration_Stat233: 7.084335217929767e-06 - syst_JES_EtaIntercalibration_Stat234: 1.8343137681432804e-07 + syst_JES_EtaIntercalibration_Stat230: 9.95295524e-06 + syst_JES_EtaIntercalibration_Stat231: 1.44270256e-04 + syst_JES_EtaIntercalibration_Stat232: 1.37277781e-04 + syst_JES_EtaIntercalibration_Stat233: 7.08433522e-06 + syst_JES_EtaIntercalibration_Stat234: 1.83431377e-07 syst_JES_EtaIntercalibration_Stat235: 0.0 - syst_JES_EtaIntercalibration_Stat236: 1.5493194473703607e-08 - syst_JES_EtaIntercalibration_Stat237: 2.230568537391308e-06 - syst_JES_EtaIntercalibration_Stat238: 3.0477455602461302e-05 - syst_JES_EtaIntercalibration_Stat239: 1.570580360885746e-05 + syst_JES_EtaIntercalibration_Stat236: 1.54931945e-08 + syst_JES_EtaIntercalibration_Stat237: 2.23056854e-06 + syst_JES_EtaIntercalibration_Stat238: 3.04774556e-05 + syst_JES_EtaIntercalibration_Stat239: 1.57058036e-05 syst_JES_EtaIntercalibration_Stat24: 0.0 - syst_JES_EtaIntercalibration_Stat240: 1.924283957735968e-08 - syst_JES_EtaIntercalibration_Stat241: 3.6269143552737213e-06 - syst_JES_EtaIntercalibration_Stat242: 1.4353882427761487e-05 - syst_JES_EtaIntercalibration_Stat243: 1.8531067832156893e-05 - syst_JES_EtaIntercalibration_Stat244: 1.4016309178952923e-06 - syst_JES_EtaIntercalibration_Stat245: 8.749454654434184e-08 + syst_JES_EtaIntercalibration_Stat240: 1.92428396e-08 + syst_JES_EtaIntercalibration_Stat241: 3.62691436e-06 + syst_JES_EtaIntercalibration_Stat242: 1.43538824e-05 + syst_JES_EtaIntercalibration_Stat243: 1.85310678e-05 + syst_JES_EtaIntercalibration_Stat244: 1.40163092e-06 + syst_JES_EtaIntercalibration_Stat245: 8.74945465e-08 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 syst_JES_EtaIntercalibration_Stat27: 0.0 - syst_JES_EtaIntercalibration_Stat28: 3.144538241141297e-20 - syst_JES_EtaIntercalibration_Stat29: 6.990361162879927e-18 + syst_JES_EtaIntercalibration_Stat28: 3.14453824e-20 + syst_JES_EtaIntercalibration_Stat29: 6.99036116e-18 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 1.370236096554167e-16 - syst_JES_EtaIntercalibration_Stat31: 8.24605802793068e-17 - syst_JES_EtaIntercalibration_Stat32: 1.5453263830013387e-19 - syst_JES_EtaIntercalibration_Stat33: 2.73827184689541e-18 - syst_JES_EtaIntercalibration_Stat34: 4.1049604266110775e-07 - syst_JES_EtaIntercalibration_Stat35: 4.551840968663905e-12 - syst_JES_EtaIntercalibration_Stat36: 3.93497150724119e-17 - syst_JES_EtaIntercalibration_Stat37: 2.2949673200287625e-20 + syst_JES_EtaIntercalibration_Stat30: 1.37023610e-16 + syst_JES_EtaIntercalibration_Stat31: 8.24605803e-17 + syst_JES_EtaIntercalibration_Stat32: 1.54532638e-19 + syst_JES_EtaIntercalibration_Stat33: 2.73827185e-18 + syst_JES_EtaIntercalibration_Stat34: 4.10496043e-07 + syst_JES_EtaIntercalibration_Stat35: 4.55184097e-12 + syst_JES_EtaIntercalibration_Stat36: 3.93497151e-17 + syst_JES_EtaIntercalibration_Stat37: 2.29496732e-20 syst_JES_EtaIntercalibration_Stat38: 0.0 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 @@ -20042,20 +20042,20 @@ bins: syst_JES_EtaIntercalibration_Stat48: 0.0 syst_JES_EtaIntercalibration_Stat49: 0.0 syst_JES_EtaIntercalibration_Stat5: 0.0 - syst_JES_EtaIntercalibration_Stat50: 3.1852414351191656e-20 - syst_JES_EtaIntercalibration_Stat51: 1.4276998389017212e-17 - syst_JES_EtaIntercalibration_Stat52: 1.1605117093334301e-14 - syst_JES_EtaIntercalibration_Stat53: 9.335363088814491e-16 - syst_JES_EtaIntercalibration_Stat54: 5.0756141500315014e-18 - syst_JES_EtaIntercalibration_Stat55: 3.070601886222797e-15 - syst_JES_EtaIntercalibration_Stat56: 4.1084245149041465e-07 - syst_JES_EtaIntercalibration_Stat57: 1.8056629671673942e-07 - syst_JES_EtaIntercalibration_Stat58: 5.161209233309573e-17 - syst_JES_EtaIntercalibration_Stat59: 8.236230129737756e-20 + syst_JES_EtaIntercalibration_Stat50: 3.18524144e-20 + syst_JES_EtaIntercalibration_Stat51: 1.42769984e-17 + syst_JES_EtaIntercalibration_Stat52: 1.16051171e-14 + syst_JES_EtaIntercalibration_Stat53: 9.33536309e-16 + syst_JES_EtaIntercalibration_Stat54: 5.07561415e-18 + syst_JES_EtaIntercalibration_Stat55: 3.07060189e-15 + syst_JES_EtaIntercalibration_Stat56: 4.10842451e-07 + syst_JES_EtaIntercalibration_Stat57: 1.80566297e-07 + syst_JES_EtaIntercalibration_Stat58: 5.16120923e-17 + syst_JES_EtaIntercalibration_Stat59: 8.23623013e-20 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 1.366588087171844e-18 - syst_JES_EtaIntercalibration_Stat62: 1.366588087171844e-18 + syst_JES_EtaIntercalibration_Stat61: 1.36658809e-18 + syst_JES_EtaIntercalibration_Stat62: 1.36658809e-18 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 @@ -20063,223 +20063,223 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 3.144538241141297e-20 + syst_JES_EtaIntercalibration_Stat7: 3.14453824e-20 syst_JES_EtaIntercalibration_Stat70: 0.0 syst_JES_EtaIntercalibration_Stat71: 0.0 - syst_JES_EtaIntercalibration_Stat72: 5.067980662946535e-19 - syst_JES_EtaIntercalibration_Stat73: 1.6926237514802277e-14 - syst_JES_EtaIntercalibration_Stat74: 2.695268019426882e-06 - syst_JES_EtaIntercalibration_Stat75: 2.5989419441849834e-06 - syst_JES_EtaIntercalibration_Stat76: 4.551503057232852e-16 - syst_JES_EtaIntercalibration_Stat77: 2.654864626963115e-15 - syst_JES_EtaIntercalibration_Stat78: 3.956867047471676e-07 - syst_JES_EtaIntercalibration_Stat79: 5.211743494222016e-07 - syst_JES_EtaIntercalibration_Stat8: 2.5890869046828075e-18 - syst_JES_EtaIntercalibration_Stat80: 4.714556144145491e-16 - syst_JES_EtaIntercalibration_Stat81: 1.9875283016852866e-19 - syst_JES_EtaIntercalibration_Stat82: 1.366588087171844e-18 - syst_JES_EtaIntercalibration_Stat83: 1.366588087171844e-18 - syst_JES_EtaIntercalibration_Stat84: 1.366588087171844e-18 + syst_JES_EtaIntercalibration_Stat72: 5.06798066e-19 + syst_JES_EtaIntercalibration_Stat73: 1.69262375e-14 + syst_JES_EtaIntercalibration_Stat74: 2.69526802e-06 + syst_JES_EtaIntercalibration_Stat75: 2.59894194e-06 + syst_JES_EtaIntercalibration_Stat76: 4.55150306e-16 + syst_JES_EtaIntercalibration_Stat77: 2.65486463e-15 + syst_JES_EtaIntercalibration_Stat78: 3.95686705e-07 + syst_JES_EtaIntercalibration_Stat79: 5.21174349e-07 + syst_JES_EtaIntercalibration_Stat8: 2.58908690e-18 + syst_JES_EtaIntercalibration_Stat80: 4.71455614e-16 + syst_JES_EtaIntercalibration_Stat81: 1.98752830e-19 + syst_JES_EtaIntercalibration_Stat82: 1.36658809e-18 + syst_JES_EtaIntercalibration_Stat83: 1.36658809e-18 + syst_JES_EtaIntercalibration_Stat84: 1.36658809e-18 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 syst_JES_EtaIntercalibration_Stat89: 0.0 - syst_JES_EtaIntercalibration_Stat9: 1.5397394162649733e-18 + syst_JES_EtaIntercalibration_Stat9: 1.53973942e-18 syst_JES_EtaIntercalibration_Stat90: 0.0 syst_JES_EtaIntercalibration_Stat91: 0.0 syst_JES_EtaIntercalibration_Stat92: 0.0 - syst_JES_EtaIntercalibration_Stat93: 4.184634751086407e-19 - syst_JES_EtaIntercalibration_Stat94: 2.2330106733958977e-14 - syst_JES_EtaIntercalibration_Stat95: 2.6952666618635475e-06 - syst_JES_EtaIntercalibration_Stat96: 2.7046675225432055e-06 - syst_JES_EtaIntercalibration_Stat97: 7.686525821401694e-15 - syst_JES_EtaIntercalibration_Stat98: 1.392308988694679e-15 - syst_JES_EtaIntercalibration_Stat99: 7.343025981358373e-07 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.001416838974619205 - syst_JES_Flavour_Comp: 0.0037500599995200076 - syst_JES_Gjet_Generator: 0.005164239440614659 - syst_JES_Gjet_OOC: 0.004265225316439918 - syst_JES_Gjet_Purity: 0.000861689159442081 - syst_JES_Gjet_Stat1: 1.448843051368919e-05 - syst_JES_Gjet_Stat10: 8.52978505004669e-05 - syst_JES_Gjet_Stat11: 9.837284826109286e-05 - syst_JES_Gjet_Stat12: 0.00031589471347270127 - syst_JES_Gjet_Stat13: 0.0009777864081689824 - syst_JES_Gjet_Stat14: 0.002405081495500724 - syst_JES_Gjet_Stat15: 0.0016053295611805074 - syst_JES_Gjet_Stat2: 1.7515633788133385e-05 - syst_JES_Gjet_Stat3: 1.5558065432437286e-05 - syst_JES_Gjet_Stat4: 1.790132818396445e-05 - syst_JES_Gjet_Stat5: 1.893152133347978e-05 - syst_JES_Gjet_Stat6: 3.787045913373642e-05 - syst_JES_Gjet_Stat7: 5.498401879637391e-05 - syst_JES_Gjet_Stat8: 3.9700986133848106e-05 - syst_JES_Gjet_Stat9: 5.493250472170371e-05 - syst_JES_Gjet_Veto: 0.0042076545426163485 - syst_JES_Gjet_dPhi: 0.00042141868432711907 - syst_JES_LArESZee: 0.007949883206689266 - syst_JES_LArEsmear: 0.0006639536580214014 - syst_JES_LAr_JVT: 0.0008184142273323455 - syst_JES_MJB_Alpha: 4.577125474301529e-05 - syst_JES_MJB_Asym: 0.0006805452281075814 - syst_JES_MJB_Beta: 5.561456643722038e-05 - syst_JES_MJB_Stat1: 4.389639503136903e-06 - syst_JES_MJB_Stat10: 6.058342904623343e-05 - syst_JES_MJB_Stat11: 5.242169851311573e-05 - syst_JES_MJB_Stat12: 4.803182486643621e-05 - syst_JES_MJB_Stat13: 9.32376966414336e-06 - syst_JES_MJB_Stat14: 3.454635174298438e-05 - syst_JES_MJB_Stat15: 4.5104244811325685e-05 - syst_JES_MJB_Stat16: 2.178014405370176e-05 - syst_JES_MJB_Stat2: 7.966439778847261e-06 - syst_JES_MJB_Stat3: 3.449337726288917e-05 - syst_JES_MJB_Stat4: 2.8794309659201766e-05 - syst_JES_MJB_Stat5: 2.666386459236545e-05 - syst_JES_MJB_Stat6: 2.642497848627317e-05 - syst_JES_MJB_Stat7: 3.572343134414722e-05 - syst_JES_MJB_Stat8: 5.1127012429830094e-05 - syst_JES_MJB_Stat9: 5.510344000150989e-05 - syst_JES_MJB_Threshold: 0.000490140571673066 - syst_JES_Pileup_MuOffset: 0.0010132530224479966 - syst_JES_Pileup_NPVOffset: 0.0010414018760785866 - syst_JES_Pileup_Pt_term: 0.0006842502959444007 - syst_JES_PunchThrough_MC15: 0.0005676144884514489 - syst_JES_SingleParticle_HighPt: 3.103795217149482e-14 - syst_JES_Zjet_MC: 0.002198262040794955 - syst_JES_Zjet_MuScale: 0.0001579923020276621 - syst_JES_Zjet_MuSmearID: 3.709362867124218e-05 - syst_JES_Zjet_MuSmearMS: 0.0006142188921711868 - syst_JES_Zjet_OOC: 0.001197492224400643 - syst_JES_Zjet_Stat1: 6.524751029732857e-05 - syst_JES_Zjet_Stat10: 0.00010025068615725281 - syst_JES_Zjet_Stat11: 0.00012838410805080197 - syst_JES_Zjet_Stat12: 0.0003811579642025075 - syst_JES_Zjet_Stat13: 0.0006676533138538294 - syst_JES_Zjet_Stat2: 3.6015050215153108e-06 - syst_JES_Zjet_Stat3: 3.8659633986886105e-05 - syst_JES_Zjet_Stat4: 3.395743659347683e-05 - syst_JES_Zjet_Stat5: 3.986067328834273e-05 - syst_JES_Zjet_Stat6: 4.609054892274554e-05 - syst_JES_Zjet_Stat7: 3.767503251491629e-05 - syst_JES_Zjet_Stat8: 4.13429631255429e-05 - syst_JES_Zjet_Stat9: 5.870515373457427e-05 - syst_JES_Zjet_Veto: 0.00026928304811109073 - syst_JES_Zjet_dPhi: 0.0002322700798639377 - syst_PRW: 0.0001833 - syst_Unfolding_bias: 0.0001905 - syst_cleaning: 0.0014757072880486834 + syst_JES_EtaIntercalibration_Stat93: 4.18463475e-19 + syst_JES_EtaIntercalibration_Stat94: 2.23301067e-14 + syst_JES_EtaIntercalibration_Stat95: 2.69526666e-06 + syst_JES_EtaIntercalibration_Stat96: 2.70466752e-06 + syst_JES_EtaIntercalibration_Stat97: 7.68652582e-15 + syst_JES_EtaIntercalibration_Stat98: 1.39230899e-15 + syst_JES_EtaIntercalibration_Stat99: 7.34302598e-07 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.41683897e-03 + syst_JES_Flavour_Comp: 3.75006000e-03 + syst_JES_Gjet_Generator: 5.16423944e-03 + syst_JES_Gjet_OOC: 4.26522532e-03 + syst_JES_Gjet_Purity: 8.61689159e-04 + syst_JES_Gjet_Stat1: 1.44884305e-05 + syst_JES_Gjet_Stat10: 8.52978505e-05 + syst_JES_Gjet_Stat11: 9.83728483e-05 + syst_JES_Gjet_Stat12: 3.15894713e-04 + syst_JES_Gjet_Stat13: 9.77786408e-04 + syst_JES_Gjet_Stat14: 2.40508150e-03 + syst_JES_Gjet_Stat15: 1.60532956e-03 + syst_JES_Gjet_Stat2: 1.75156338e-05 + syst_JES_Gjet_Stat3: 1.55580654e-05 + syst_JES_Gjet_Stat4: 1.79013282e-05 + syst_JES_Gjet_Stat5: 1.89315213e-05 + syst_JES_Gjet_Stat6: 3.78704591e-05 + syst_JES_Gjet_Stat7: 5.49840188e-05 + syst_JES_Gjet_Stat8: 3.97009861e-05 + syst_JES_Gjet_Stat9: 5.49325047e-05 + syst_JES_Gjet_Veto: 4.20765454e-03 + syst_JES_Gjet_dPhi: 4.21418684e-04 + syst_JES_LArESZee: 7.94988321e-03 + syst_JES_LArEsmear: 6.63953658e-04 + syst_JES_LAr_JVT: 8.18414227e-04 + syst_JES_MJB_Alpha: 4.57712547e-05 + syst_JES_MJB_Asym: 6.80545228e-04 + syst_JES_MJB_Beta: 5.56145664e-05 + syst_JES_MJB_Stat1: 4.38963950e-06 + syst_JES_MJB_Stat10: 6.05834290e-05 + syst_JES_MJB_Stat11: 5.24216985e-05 + syst_JES_MJB_Stat12: 4.80318249e-05 + syst_JES_MJB_Stat13: 9.32376966e-06 + syst_JES_MJB_Stat14: 3.45463517e-05 + syst_JES_MJB_Stat15: 4.51042448e-05 + syst_JES_MJB_Stat16: 2.17801441e-05 + syst_JES_MJB_Stat2: 7.96643978e-06 + syst_JES_MJB_Stat3: 3.44933773e-05 + syst_JES_MJB_Stat4: 2.87943097e-05 + syst_JES_MJB_Stat5: 2.66638646e-05 + syst_JES_MJB_Stat6: 2.64249785e-05 + syst_JES_MJB_Stat7: 3.57234313e-05 + syst_JES_MJB_Stat8: 5.11270124e-05 + syst_JES_MJB_Stat9: 5.51034400e-05 + syst_JES_MJB_Threshold: 4.90140572e-04 + syst_JES_Pileup_MuOffset: 1.01325302e-03 + syst_JES_Pileup_NPVOffset: 1.04140188e-03 + syst_JES_Pileup_Pt_term: 6.84250296e-04 + syst_JES_PunchThrough_MC15: 5.67614488e-04 + syst_JES_SingleParticle_HighPt: 3.10379522e-14 + syst_JES_Zjet_MC: 2.19826204e-03 + syst_JES_Zjet_MuScale: 1.57992302e-04 + syst_JES_Zjet_MuSmearID: 3.70936287e-05 + syst_JES_Zjet_MuSmearMS: 6.14218892e-04 + syst_JES_Zjet_OOC: 1.19749222e-03 + syst_JES_Zjet_Stat1: 6.52475103e-05 + syst_JES_Zjet_Stat10: 1.00250686e-04 + syst_JES_Zjet_Stat11: 1.28384108e-04 + syst_JES_Zjet_Stat12: 3.81157964e-04 + syst_JES_Zjet_Stat13: 6.67653314e-04 + syst_JES_Zjet_Stat2: 3.60150502e-06 + syst_JES_Zjet_Stat3: 3.86596340e-05 + syst_JES_Zjet_Stat4: 3.39574366e-05 + syst_JES_Zjet_Stat5: 3.98606733e-05 + syst_JES_Zjet_Stat6: 4.60905489e-05 + syst_JES_Zjet_Stat7: 3.76750325e-05 + syst_JES_Zjet_Stat8: 4.13429631e-05 + syst_JES_Zjet_Stat9: 5.87051537e-05 + syst_JES_Zjet_Veto: 2.69283048e-04 + syst_JES_Zjet_dPhi: 2.32270080e-04 + syst_PRW: 1.83300000e-04 + syst_Unfolding_bias: 1.90500000e-04 + syst_cleaning: 1.47570729e-03 syst_lumi: 0.004983 - syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.00029941604415929357 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0010870696297845873 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 0.00013154989424169066 + syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 2.99416044e-04 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.08706963e-03 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 1.31549894e-04 syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 0.0005094794990968724 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0005004259660529218 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0010490672619045932 -- stat: 0.00099325 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 5.09479499e-04 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 5.00425966e-04 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.04906726e-03 +- stat: 9.93250000e-04 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.00040456552930273235 - syst_JER_NP1: 4.4767124935604255e-05 - syst_JER_NP2: 0.0001789881227204755 - syst_JER_NP3: 4.331227857086256e-05 - syst_JER_NP4: 5.843528728431135e-05 - syst_JER_NP5: 6.870036007911457e-05 - syst_JER_NP6: 6.206208826650937e-05 - syst_JER_NP7: 2.990617206811163e-05 - syst_JER_NP8: 0.00010016606448792924 - syst_JES_EtaIntercalibration_Modelling: 0.002737587761150316 - syst_JES_EtaIntercalibration_NonClosure: 1.2981720802728736e-13 + syst_JER_NP0: 4.04565529e-04 + syst_JER_NP1: 4.47671249e-05 + syst_JER_NP2: 1.78988123e-04 + syst_JER_NP3: 4.33122786e-05 + syst_JER_NP4: 5.84352873e-05 + syst_JER_NP5: 6.87003601e-05 + syst_JER_NP6: 6.20620883e-05 + syst_JER_NP7: 2.99061721e-05 + syst_JER_NP8: 1.00166064e-04 + syst_JES_EtaIntercalibration_Modelling: 2.73758776e-03 + syst_JES_EtaIntercalibration_NonClosure: 1.29817208e-13 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 3.172250577460038e-07 - syst_JES_EtaIntercalibration_Stat101: 1.0049531723916293e-16 - syst_JES_EtaIntercalibration_Stat102: 2.2103951894797e-19 - syst_JES_EtaIntercalibration_Stat103: 3.81830600528559e-19 - syst_JES_EtaIntercalibration_Stat104: 3.81830600528559e-19 - syst_JES_EtaIntercalibration_Stat105: 3.81830600528559e-19 + syst_JES_EtaIntercalibration_Stat100: 3.17225058e-07 + syst_JES_EtaIntercalibration_Stat101: 1.00495317e-16 + syst_JES_EtaIntercalibration_Stat102: 2.21039519e-19 + syst_JES_EtaIntercalibration_Stat103: 3.81830601e-19 + syst_JES_EtaIntercalibration_Stat104: 3.81830601e-19 + syst_JES_EtaIntercalibration_Stat105: 3.81830601e-19 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 1.7303187567613084e-15 - syst_JES_EtaIntercalibration_Stat111: 1.7303187567613084e-15 + syst_JES_EtaIntercalibration_Stat110: 1.73031876e-15 + syst_JES_EtaIntercalibration_Stat111: 1.73031876e-15 syst_JES_EtaIntercalibration_Stat112: 0.0 - syst_JES_EtaIntercalibration_Stat113: 8.481804804992861e-18 - syst_JES_EtaIntercalibration_Stat114: 1.5597447534629125e-06 - syst_JES_EtaIntercalibration_Stat115: 1.4731236429777373e-07 - syst_JES_EtaIntercalibration_Stat116: 2.5497858733627026e-07 - syst_JES_EtaIntercalibration_Stat117: 2.3382336816494625e-12 - syst_JES_EtaIntercalibration_Stat118: 2.462109789946762e-07 - syst_JES_EtaIntercalibration_Stat119: 1.5646612628617095e-07 - syst_JES_EtaIntercalibration_Stat12: 5.583166380830146e-16 - syst_JES_EtaIntercalibration_Stat120: 3.29323135385293e-07 - syst_JES_EtaIntercalibration_Stat121: 1.0214781337233802e-11 - syst_JES_EtaIntercalibration_Stat122: 8.473986580559353e-18 - syst_JES_EtaIntercalibration_Stat123: 3.81830600528559e-19 - syst_JES_EtaIntercalibration_Stat124: 3.81830600528559e-19 - syst_JES_EtaIntercalibration_Stat125: 3.81830600528559e-19 + syst_JES_EtaIntercalibration_Stat113: 8.48180480e-18 + syst_JES_EtaIntercalibration_Stat114: 1.55974475e-06 + syst_JES_EtaIntercalibration_Stat115: 1.47312364e-07 + syst_JES_EtaIntercalibration_Stat116: 2.54978587e-07 + syst_JES_EtaIntercalibration_Stat117: 2.33823368e-12 + syst_JES_EtaIntercalibration_Stat118: 2.46210979e-07 + syst_JES_EtaIntercalibration_Stat119: 1.56466126e-07 + syst_JES_EtaIntercalibration_Stat12: 5.58316638e-16 + syst_JES_EtaIntercalibration_Stat120: 3.29323135e-07 + syst_JES_EtaIntercalibration_Stat121: 1.02147813e-11 + syst_JES_EtaIntercalibration_Stat122: 8.47398658e-18 + syst_JES_EtaIntercalibration_Stat123: 3.81830601e-19 + syst_JES_EtaIntercalibration_Stat124: 3.81830601e-19 + syst_JES_EtaIntercalibration_Stat125: 3.81830601e-19 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 7.821941446981051e-13 - syst_JES_EtaIntercalibration_Stat129: 7.816190742318153e-13 - syst_JES_EtaIntercalibration_Stat13: 7.414490124475992e-16 - syst_JES_EtaIntercalibration_Stat130: 1.7303187567613084e-15 - syst_JES_EtaIntercalibration_Stat131: 2.0481500799501973e-20 - syst_JES_EtaIntercalibration_Stat132: 1.5394760313740478e-13 - syst_JES_EtaIntercalibration_Stat133: 1.5597109049560948e-06 - syst_JES_EtaIntercalibration_Stat134: 1.1098239533817964e-06 - syst_JES_EtaIntercalibration_Stat135: 8.141158865616124e-07 - syst_JES_EtaIntercalibration_Stat136: 5.15380667342839e-07 - syst_JES_EtaIntercalibration_Stat137: 2.770371094276e-07 - syst_JES_EtaIntercalibration_Stat138: 6.97068188916981e-07 - syst_JES_EtaIntercalibration_Stat139: 7.024033456640138e-07 - syst_JES_EtaIntercalibration_Stat14: 4.6271737324202555e-20 - syst_JES_EtaIntercalibration_Stat140: 1.2818663112821087e-07 - syst_JES_EtaIntercalibration_Stat141: 7.466871120832123e-13 + syst_JES_EtaIntercalibration_Stat128: 7.82194145e-13 + syst_JES_EtaIntercalibration_Stat129: 7.81619074e-13 + syst_JES_EtaIntercalibration_Stat13: 7.41449012e-16 + syst_JES_EtaIntercalibration_Stat130: 1.73031876e-15 + syst_JES_EtaIntercalibration_Stat131: 2.04815008e-20 + syst_JES_EtaIntercalibration_Stat132: 1.53947603e-13 + syst_JES_EtaIntercalibration_Stat133: 1.55971090e-06 + syst_JES_EtaIntercalibration_Stat134: 1.10982395e-06 + syst_JES_EtaIntercalibration_Stat135: 8.14115887e-07 + syst_JES_EtaIntercalibration_Stat136: 5.15380667e-07 + syst_JES_EtaIntercalibration_Stat137: 2.77037109e-07 + syst_JES_EtaIntercalibration_Stat138: 6.97068189e-07 + syst_JES_EtaIntercalibration_Stat139: 7.02403346e-07 + syst_JES_EtaIntercalibration_Stat14: 4.62717373e-20 + syst_JES_EtaIntercalibration_Stat140: 1.28186631e-07 + syst_JES_EtaIntercalibration_Stat141: 7.46687112e-13 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 3.81830600528559e-19 - syst_JES_EtaIntercalibration_Stat144: 3.81830600528559e-19 + syst_JES_EtaIntercalibration_Stat143: 3.81830601e-19 + syst_JES_EtaIntercalibration_Stat144: 3.81830601e-19 syst_JES_EtaIntercalibration_Stat145: 0.0 - syst_JES_EtaIntercalibration_Stat146: 7.821941446981051e-13 - syst_JES_EtaIntercalibration_Stat147: 7.816190742318153e-13 + syst_JES_EtaIntercalibration_Stat146: 7.82194145e-13 + syst_JES_EtaIntercalibration_Stat147: 7.81619074e-13 syst_JES_EtaIntercalibration_Stat148: 0.0 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 6.41532485596014e-17 - syst_JES_EtaIntercalibration_Stat151: 1.559708344435593e-06 - syst_JES_EtaIntercalibration_Stat152: 1.0444509466700675e-06 - syst_JES_EtaIntercalibration_Stat153: 7.707539993409051e-07 - syst_JES_EtaIntercalibration_Stat154: 1.5981622792023304e-07 - syst_JES_EtaIntercalibration_Stat155: 5.640562383308955e-07 - syst_JES_EtaIntercalibration_Stat156: 1.3246931371076094e-06 - syst_JES_EtaIntercalibration_Stat157: 1.5447267557726838e-06 - syst_JES_EtaIntercalibration_Stat158: 4.833926018258865e-07 - syst_JES_EtaIntercalibration_Stat159: 7.491376669974719e-13 + syst_JES_EtaIntercalibration_Stat150: 6.41532486e-17 + syst_JES_EtaIntercalibration_Stat151: 1.55970834e-06 + syst_JES_EtaIntercalibration_Stat152: 1.04445095e-06 + syst_JES_EtaIntercalibration_Stat153: 7.70753999e-07 + syst_JES_EtaIntercalibration_Stat154: 1.59816228e-07 + syst_JES_EtaIntercalibration_Stat155: 5.64056238e-07 + syst_JES_EtaIntercalibration_Stat156: 1.32469314e-06 + syst_JES_EtaIntercalibration_Stat157: 1.54472676e-06 + syst_JES_EtaIntercalibration_Stat158: 4.83392602e-07 + syst_JES_EtaIntercalibration_Stat159: 7.49137667e-13 syst_JES_EtaIntercalibration_Stat16: 0.0 syst_JES_EtaIntercalibration_Stat160: 0.0 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 - syst_JES_EtaIntercalibration_Stat164: 7.821941446981051e-13 + syst_JES_EtaIntercalibration_Stat164: 7.82194145e-13 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 - syst_JES_EtaIntercalibration_Stat168: 2.2326134909562828e-15 - syst_JES_EtaIntercalibration_Stat169: 1.6532776778266862e-07 + syst_JES_EtaIntercalibration_Stat168: 2.23261349e-15 + syst_JES_EtaIntercalibration_Stat169: 1.65327768e-07 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 2.4912596713309516e-06 - syst_JES_EtaIntercalibration_Stat171: 3.185187396370895e-06 - syst_JES_EtaIntercalibration_Stat172: 7.510303522494946e-07 - syst_JES_EtaIntercalibration_Stat173: 8.069233839095258e-07 - syst_JES_EtaIntercalibration_Stat174: 2.1474023260674744e-06 - syst_JES_EtaIntercalibration_Stat175: 2.3177512808754953e-06 - syst_JES_EtaIntercalibration_Stat176: 3.7472478724211813e-07 - syst_JES_EtaIntercalibration_Stat177: 6.5258942841192274e-12 + syst_JES_EtaIntercalibration_Stat170: 2.49125967e-06 + syst_JES_EtaIntercalibration_Stat171: 3.18518740e-06 + syst_JES_EtaIntercalibration_Stat172: 7.51030352e-07 + syst_JES_EtaIntercalibration_Stat173: 8.06923384e-07 + syst_JES_EtaIntercalibration_Stat174: 2.14740233e-06 + syst_JES_EtaIntercalibration_Stat175: 2.31775128e-06 + syst_JES_EtaIntercalibration_Stat176: 3.74724787e-07 + syst_JES_EtaIntercalibration_Stat177: 6.52589428e-12 syst_JES_EtaIntercalibration_Stat178: 0.0 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 @@ -20288,17 +20288,17 @@ bins: syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 syst_JES_EtaIntercalibration_Stat184: 0.0 - syst_JES_EtaIntercalibration_Stat185: 4.201981792681639e-08 - syst_JES_EtaIntercalibration_Stat186: 1.279554011169517e-06 - syst_JES_EtaIntercalibration_Stat187: 1.4526084701322653e-05 - syst_JES_EtaIntercalibration_Stat188: 1.351120079785657e-05 - syst_JES_EtaIntercalibration_Stat189: 1.9704555228423707e-06 + syst_JES_EtaIntercalibration_Stat185: 4.20198179e-08 + syst_JES_EtaIntercalibration_Stat186: 1.27955401e-06 + syst_JES_EtaIntercalibration_Stat187: 1.45260847e-05 + syst_JES_EtaIntercalibration_Stat188: 1.35112008e-05 + syst_JES_EtaIntercalibration_Stat189: 1.97045552e-06 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 8.858288830242554e-07 - syst_JES_EtaIntercalibration_Stat191: 9.104512013282207e-06 - syst_JES_EtaIntercalibration_Stat192: 1.5137195909414663e-05 - syst_JES_EtaIntercalibration_Stat193: 1.9584441292771154e-06 - syst_JES_EtaIntercalibration_Stat194: 6.673591761562884e-12 + syst_JES_EtaIntercalibration_Stat190: 8.85828883e-07 + syst_JES_EtaIntercalibration_Stat191: 9.10451201e-06 + syst_JES_EtaIntercalibration_Stat192: 1.51371959e-05 + syst_JES_EtaIntercalibration_Stat193: 1.95844413e-06 + syst_JES_EtaIntercalibration_Stat194: 6.67359176e-12 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 syst_JES_EtaIntercalibration_Stat197: 0.0 @@ -20306,70 +20306,70 @@ bins: syst_JES_EtaIntercalibration_Stat199: 0.0 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 4.197983335269448e-08 - syst_JES_EtaIntercalibration_Stat201: 2.74293870693459e-06 - syst_JES_EtaIntercalibration_Stat202: 3.2051510104829696e-05 - syst_JES_EtaIntercalibration_Stat203: 2.4636405480507904e-05 - syst_JES_EtaIntercalibration_Stat204: 3.4541376637302686e-06 - syst_JES_EtaIntercalibration_Stat205: 2.689871641852597e-06 - syst_JES_EtaIntercalibration_Stat206: 2.302922653933475e-05 - syst_JES_EtaIntercalibration_Stat207: 2.6210015261346187e-05 - syst_JES_EtaIntercalibration_Stat208: 3.35507358339575e-06 - syst_JES_EtaIntercalibration_Stat209: 1.2110498784064095e-07 + syst_JES_EtaIntercalibration_Stat200: 4.19798334e-08 + syst_JES_EtaIntercalibration_Stat201: 2.74293871e-06 + syst_JES_EtaIntercalibration_Stat202: 3.20515101e-05 + syst_JES_EtaIntercalibration_Stat203: 2.46364055e-05 + syst_JES_EtaIntercalibration_Stat204: 3.45413766e-06 + syst_JES_EtaIntercalibration_Stat205: 2.68987164e-06 + syst_JES_EtaIntercalibration_Stat206: 2.30292265e-05 + syst_JES_EtaIntercalibration_Stat207: 2.62100153e-05 + syst_JES_EtaIntercalibration_Stat208: 3.35507358e-06 + syst_JES_EtaIntercalibration_Stat209: 1.21104988e-07 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 syst_JES_EtaIntercalibration_Stat211: 0.0 syst_JES_EtaIntercalibration_Stat212: 0.0 - syst_JES_EtaIntercalibration_Stat213: 4.2019614520177363e-08 - syst_JES_EtaIntercalibration_Stat214: 2.366223548188125e-06 - syst_JES_EtaIntercalibration_Stat215: 3.666311054725172e-05 - syst_JES_EtaIntercalibration_Stat216: 3.1183205415736215e-05 - syst_JES_EtaIntercalibration_Stat217: 2.9904712003294735e-06 - syst_JES_EtaIntercalibration_Stat218: 2.0450141808799276e-06 - syst_JES_EtaIntercalibration_Stat219: 2.886385975575685e-05 + syst_JES_EtaIntercalibration_Stat213: 4.20196145e-08 + syst_JES_EtaIntercalibration_Stat214: 2.36622355e-06 + syst_JES_EtaIntercalibration_Stat215: 3.66631105e-05 + syst_JES_EtaIntercalibration_Stat216: 3.11832054e-05 + syst_JES_EtaIntercalibration_Stat217: 2.99047120e-06 + syst_JES_EtaIntercalibration_Stat218: 2.04501418e-06 + syst_JES_EtaIntercalibration_Stat219: 2.88638598e-05 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 3.2885037251005206e-05 - syst_JES_EtaIntercalibration_Stat221: 3.241059510407052e-06 - syst_JES_EtaIntercalibration_Stat222: 1.1894796386130365e-07 + syst_JES_EtaIntercalibration_Stat220: 3.28850373e-05 + syst_JES_EtaIntercalibration_Stat221: 3.24105951e-06 + syst_JES_EtaIntercalibration_Stat222: 1.18947964e-07 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 - syst_JES_EtaIntercalibration_Stat225: 2.3681984307696855e-07 - syst_JES_EtaIntercalibration_Stat226: 6.897384776130733e-06 - syst_JES_EtaIntercalibration_Stat227: 9.268723361391256e-05 - syst_JES_EtaIntercalibration_Stat228: 8.455354087795496e-05 - syst_JES_EtaIntercalibration_Stat229: 5.793130824519675e-06 + syst_JES_EtaIntercalibration_Stat225: 2.36819843e-07 + syst_JES_EtaIntercalibration_Stat226: 6.89738478e-06 + syst_JES_EtaIntercalibration_Stat227: 9.26872336e-05 + syst_JES_EtaIntercalibration_Stat228: 8.45535409e-05 + syst_JES_EtaIntercalibration_Stat229: 5.79313082e-06 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 7.0101451958928775e-06 - syst_JES_EtaIntercalibration_Stat231: 9.40166691337233e-05 - syst_JES_EtaIntercalibration_Stat232: 9.278673005877511e-05 - syst_JES_EtaIntercalibration_Stat233: 5.5465584599821895e-06 - syst_JES_EtaIntercalibration_Stat234: 1.5378739830281932e-07 + syst_JES_EtaIntercalibration_Stat230: 7.01014520e-06 + syst_JES_EtaIntercalibration_Stat231: 9.40166691e-05 + syst_JES_EtaIntercalibration_Stat232: 9.27867301e-05 + syst_JES_EtaIntercalibration_Stat233: 5.54655846e-06 + syst_JES_EtaIntercalibration_Stat234: 1.53787398e-07 syst_JES_EtaIntercalibration_Stat235: 0.0 - syst_JES_EtaIntercalibration_Stat236: 4.198491157546959e-08 - syst_JES_EtaIntercalibration_Stat237: 2.027067899084784e-06 - syst_JES_EtaIntercalibration_Stat238: 2.2446101554612997e-05 - syst_JES_EtaIntercalibration_Stat239: 1.125064624810504e-05 + syst_JES_EtaIntercalibration_Stat236: 4.19849116e-08 + syst_JES_EtaIntercalibration_Stat237: 2.02706790e-06 + syst_JES_EtaIntercalibration_Stat238: 2.24461016e-05 + syst_JES_EtaIntercalibration_Stat239: 1.12506462e-05 syst_JES_EtaIntercalibration_Stat24: 0.0 - syst_JES_EtaIntercalibration_Stat240: 7.013367308219355e-08 - syst_JES_EtaIntercalibration_Stat241: 1.3146240151177916e-06 - syst_JES_EtaIntercalibration_Stat242: 9.090232780297763e-06 - syst_JES_EtaIntercalibration_Stat243: 1.4152140853948565e-05 - syst_JES_EtaIntercalibration_Stat244: 1.1252434936492634e-06 - syst_JES_EtaIntercalibration_Stat245: 3.0250267354190445e-08 + syst_JES_EtaIntercalibration_Stat240: 7.01336731e-08 + syst_JES_EtaIntercalibration_Stat241: 1.31462402e-06 + syst_JES_EtaIntercalibration_Stat242: 9.09023278e-06 + syst_JES_EtaIntercalibration_Stat243: 1.41521409e-05 + syst_JES_EtaIntercalibration_Stat244: 1.12524349e-06 + syst_JES_EtaIntercalibration_Stat245: 3.02502674e-08 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 syst_JES_EtaIntercalibration_Stat27: 0.0 - syst_JES_EtaIntercalibration_Stat28: 9.143496213156104e-21 - syst_JES_EtaIntercalibration_Stat29: 1.5816508084909261e-18 + syst_JES_EtaIntercalibration_Stat28: 9.14349621e-21 + syst_JES_EtaIntercalibration_Stat29: 1.58165081e-18 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 2.6770334327385604e-17 - syst_JES_EtaIntercalibration_Stat31: 1.7126661050829496e-17 - syst_JES_EtaIntercalibration_Stat32: 4.210191533647846e-20 - syst_JES_EtaIntercalibration_Stat33: 7.844842224034847e-19 - syst_JES_EtaIntercalibration_Stat34: 2.66995632219328e-07 - syst_JES_EtaIntercalibration_Stat35: 7.304948192196205e-13 - syst_JES_EtaIntercalibration_Stat36: 8.141114918731954e-18 - syst_JES_EtaIntercalibration_Stat37: 6.674457786966669e-21 + syst_JES_EtaIntercalibration_Stat30: 2.67703343e-17 + syst_JES_EtaIntercalibration_Stat31: 1.71266611e-17 + syst_JES_EtaIntercalibration_Stat32: 4.21019153e-20 + syst_JES_EtaIntercalibration_Stat33: 7.84484222e-19 + syst_JES_EtaIntercalibration_Stat34: 2.66995632e-07 + syst_JES_EtaIntercalibration_Stat35: 7.30494819e-13 + syst_JES_EtaIntercalibration_Stat36: 8.14111492e-18 + syst_JES_EtaIntercalibration_Stat37: 6.67445779e-21 syst_JES_EtaIntercalibration_Stat38: 0.0 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 @@ -20384,20 +20384,20 @@ bins: syst_JES_EtaIntercalibration_Stat48: 0.0 syst_JES_EtaIntercalibration_Stat49: 0.0 syst_JES_EtaIntercalibration_Stat5: 0.0 - syst_JES_EtaIntercalibration_Stat50: 9.262141693474572e-21 - syst_JES_EtaIntercalibration_Stat51: 3.049991475397923e-18 - syst_JES_EtaIntercalibration_Stat52: 1.789000489099989e-15 - syst_JES_EtaIntercalibration_Stat53: 1.7277327426427965e-16 - syst_JES_EtaIntercalibration_Stat54: 1.0784836855511538e-18 - syst_JES_EtaIntercalibration_Stat55: 5.559566568537515e-16 - syst_JES_EtaIntercalibration_Stat56: 2.672554395944197e-07 - syst_JES_EtaIntercalibration_Stat57: 5.006492859869335e-08 - syst_JES_EtaIntercalibration_Stat58: 1.0368663317901685e-17 - syst_JES_EtaIntercalibration_Stat59: 2.3361932641585967e-20 + syst_JES_EtaIntercalibration_Stat50: 9.26214169e-21 + syst_JES_EtaIntercalibration_Stat51: 3.04999148e-18 + syst_JES_EtaIntercalibration_Stat52: 1.78900049e-15 + syst_JES_EtaIntercalibration_Stat53: 1.72773274e-16 + syst_JES_EtaIntercalibration_Stat54: 1.07848369e-18 + syst_JES_EtaIntercalibration_Stat55: 5.55956657e-16 + syst_JES_EtaIntercalibration_Stat56: 2.67255440e-07 + syst_JES_EtaIntercalibration_Stat57: 5.00649286e-08 + syst_JES_EtaIntercalibration_Stat58: 1.03686633e-17 + syst_JES_EtaIntercalibration_Stat59: 2.33619326e-20 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 3.81830600528559e-19 - syst_JES_EtaIntercalibration_Stat62: 3.81830600528559e-19 + syst_JES_EtaIntercalibration_Stat61: 3.81830601e-19 + syst_JES_EtaIntercalibration_Stat62: 3.81830601e-19 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 @@ -20405,223 +20405,223 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 9.143496213156104e-21 + syst_JES_EtaIntercalibration_Stat7: 9.14349621e-21 syst_JES_EtaIntercalibration_Stat70: 0.0 syst_JES_EtaIntercalibration_Stat71: 0.0 - syst_JES_EtaIntercalibration_Stat72: 1.0152415808564974e-19 - syst_JES_EtaIntercalibration_Stat73: 2.923312758293235e-15 - syst_JES_EtaIntercalibration_Stat74: 1.1263864134289088e-06 - syst_JES_EtaIntercalibration_Stat75: 9.203251492590107e-07 - syst_JES_EtaIntercalibration_Stat76: 7.934142380087465e-17 - syst_JES_EtaIntercalibration_Stat77: 4.781445814813758e-16 - syst_JES_EtaIntercalibration_Stat78: 2.573827011609395e-07 - syst_JES_EtaIntercalibration_Stat79: 3.6373071222680157e-07 - syst_JES_EtaIntercalibration_Stat8: 5.571934224306672e-19 - syst_JES_EtaIntercalibration_Stat80: 9.231566198646902e-17 - syst_JES_EtaIntercalibration_Stat81: 5.473280551917652e-20 - syst_JES_EtaIntercalibration_Stat82: 3.81830600528559e-19 - syst_JES_EtaIntercalibration_Stat83: 3.81830600528559e-19 - syst_JES_EtaIntercalibration_Stat84: 3.81830600528559e-19 + syst_JES_EtaIntercalibration_Stat72: 1.01524158e-19 + syst_JES_EtaIntercalibration_Stat73: 2.92331276e-15 + syst_JES_EtaIntercalibration_Stat74: 1.12638641e-06 + syst_JES_EtaIntercalibration_Stat75: 9.20325149e-07 + syst_JES_EtaIntercalibration_Stat76: 7.93414238e-17 + syst_JES_EtaIntercalibration_Stat77: 4.78144581e-16 + syst_JES_EtaIntercalibration_Stat78: 2.57382701e-07 + syst_JES_EtaIntercalibration_Stat79: 3.63730712e-07 + syst_JES_EtaIntercalibration_Stat8: 5.57193422e-19 + syst_JES_EtaIntercalibration_Stat80: 9.23156620e-17 + syst_JES_EtaIntercalibration_Stat81: 5.47328055e-20 + syst_JES_EtaIntercalibration_Stat82: 3.81830601e-19 + syst_JES_EtaIntercalibration_Stat83: 3.81830601e-19 + syst_JES_EtaIntercalibration_Stat84: 3.81830601e-19 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 syst_JES_EtaIntercalibration_Stat89: 0.0 - syst_JES_EtaIntercalibration_Stat9: 3.6826828535729225e-19 + syst_JES_EtaIntercalibration_Stat9: 3.68268285e-19 syst_JES_EtaIntercalibration_Stat90: 0.0 syst_JES_EtaIntercalibration_Stat91: 0.0 syst_JES_EtaIntercalibration_Stat92: 0.0 - syst_JES_EtaIntercalibration_Stat93: 7.975227943450895e-20 - syst_JES_EtaIntercalibration_Stat94: 3.9146294802318134e-15 - syst_JES_EtaIntercalibration_Stat95: 1.1262129744660208e-06 - syst_JES_EtaIntercalibration_Stat96: 9.955648785990796e-07 - syst_JES_EtaIntercalibration_Stat97: 1.352147114333348e-15 - syst_JES_EtaIntercalibration_Stat98: 2.579181847020485e-16 - syst_JES_EtaIntercalibration_Stat99: 3.2631831686472567e-07 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.001021050061211496 - syst_JES_Flavour_Comp: 0.0026145697064717936 - syst_JES_Gjet_Generator: 0.0034887456198467665 - syst_JES_Gjet_OOC: 0.00289213830927914 - syst_JES_Gjet_Purity: 0.0005445172242454778 - syst_JES_Gjet_Stat1: 1.0654828424240346e-05 - syst_JES_Gjet_Stat10: 5.61570939419055e-05 - syst_JES_Gjet_Stat11: 6.257315938163902e-05 - syst_JES_Gjet_Stat12: 0.00020139753598294094 - syst_JES_Gjet_Stat13: 0.0006179422525608684 - syst_JES_Gjet_Stat14: 0.0016245260077942735 - syst_JES_Gjet_Stat15: 0.0014545139222434415 - syst_JES_Gjet_Stat2: 1.2384616536251738e-05 - syst_JES_Gjet_Stat3: 1.1640446930852785e-05 - syst_JES_Gjet_Stat4: 1.2745788196498482e-05 - syst_JES_Gjet_Stat5: 1.4285823418690294e-05 - syst_JES_Gjet_Stat6: 2.7178425267112147e-05 - syst_JES_Gjet_Stat7: 3.928110487244472e-05 - syst_JES_Gjet_Stat8: 2.4041249967503767e-05 - syst_JES_Gjet_Stat9: 3.535820515806763e-05 - syst_JES_Gjet_Veto: 0.0028821530146749667 - syst_JES_Gjet_dPhi: 0.00028675743669519715 - syst_JES_LArESZee: 0.005346637518104252 - syst_JES_LArEsmear: 0.00044894851319499877 - syst_JES_LAr_JVT: 0.0005565713858077865 - syst_JES_MJB_Alpha: 3.0427650254332816e-05 - syst_JES_MJB_Asym: 0.0005259555375694793 - syst_JES_MJB_Beta: 3.777366410609381e-05 - syst_JES_MJB_Stat1: 2.8565256357155277e-06 - syst_JES_MJB_Stat10: 5.099149340821466e-05 - syst_JES_MJB_Stat11: 5.072623655466666e-05 - syst_JES_MJB_Stat12: 5.4819947783630724e-05 - syst_JES_MJB_Stat13: 2.2052181298003152e-05 - syst_JES_MJB_Stat14: 8.41335026906642e-06 - syst_JES_MJB_Stat15: 3.165162041665482e-05 - syst_JES_MJB_Stat16: 3.1865696289270064e-05 - syst_JES_MJB_Stat2: 4.957566641004434e-06 - syst_JES_MJB_Stat3: 1.812656269125506e-05 - syst_JES_MJB_Stat4: 1.3690908543628505e-05 - syst_JES_MJB_Stat5: 1.330495324118052e-05 - syst_JES_MJB_Stat6: 1.4743439320592735e-05 - syst_JES_MJB_Stat7: 2.1181303713416696e-05 - syst_JES_MJB_Stat8: 3.080466320218418e-05 - syst_JES_MJB_Stat9: 4.030126641930747e-05 - syst_JES_MJB_Threshold: 0.0003528737167883151 - syst_JES_Pileup_MuOffset: 0.0006918508130370304 - syst_JES_Pileup_NPVOffset: 0.0007130529485949834 - syst_JES_Pileup_Pt_term: 0.00045431725699119117 - syst_JES_PunchThrough_MC15: 0.0004752322037699045 - syst_JES_SingleParticle_HighPt: 2.2106845093771297e-12 - syst_JES_Zjet_MC: 0.001420205149793508 - syst_JES_Zjet_MuScale: 0.00010749245868897036 - syst_JES_Zjet_MuSmearID: 2.3772409953557506e-05 - syst_JES_Zjet_MuSmearMS: 0.0003878951129815894 - syst_JES_Zjet_OOC: 0.0007957483081980132 - syst_JES_Zjet_Stat1: 4.766460400548818e-05 - syst_JES_Zjet_Stat10: 6.794660697930398e-05 - syst_JES_Zjet_Stat11: 8.78106149619737e-05 - syst_JES_Zjet_Stat12: 0.0002541293519056781 - syst_JES_Zjet_Stat13: 0.00042008570554114314 - syst_JES_Zjet_Stat2: 2.341799827056104e-06 - syst_JES_Zjet_Stat3: 2.8810079399404647e-05 - syst_JES_Zjet_Stat4: 2.6458709341160235e-05 - syst_JES_Zjet_Stat5: 2.6784316306376012e-05 - syst_JES_Zjet_Stat6: 3.104624131839473e-05 - syst_JES_Zjet_Stat7: 2.7257002769930522e-05 - syst_JES_Zjet_Stat8: 2.9282677473209312e-05 - syst_JES_Zjet_Stat9: 3.9064737321528225e-05 - syst_JES_Zjet_Veto: 0.00017781391959011535 - syst_JES_Zjet_dPhi: 0.0001575993258234311 - syst_PRW: 0.00011924 - syst_Unfolding_bias: 0.00012394 - syst_cleaning: 0.0009553992254549927 + syst_JES_EtaIntercalibration_Stat93: 7.97522794e-20 + syst_JES_EtaIntercalibration_Stat94: 3.91462948e-15 + syst_JES_EtaIntercalibration_Stat95: 1.12621297e-06 + syst_JES_EtaIntercalibration_Stat96: 9.95564879e-07 + syst_JES_EtaIntercalibration_Stat97: 1.35214711e-15 + syst_JES_EtaIntercalibration_Stat98: 2.57918185e-16 + syst_JES_EtaIntercalibration_Stat99: 3.26318317e-07 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.02105006e-03 + syst_JES_Flavour_Comp: 2.61456971e-03 + syst_JES_Gjet_Generator: 3.48874562e-03 + syst_JES_Gjet_OOC: 2.89213831e-03 + syst_JES_Gjet_Purity: 5.44517224e-04 + syst_JES_Gjet_Stat1: 1.06548284e-05 + syst_JES_Gjet_Stat10: 5.61570939e-05 + syst_JES_Gjet_Stat11: 6.25731594e-05 + syst_JES_Gjet_Stat12: 2.01397536e-04 + syst_JES_Gjet_Stat13: 6.17942253e-04 + syst_JES_Gjet_Stat14: 1.62452601e-03 + syst_JES_Gjet_Stat15: 1.45451392e-03 + syst_JES_Gjet_Stat2: 1.23846165e-05 + syst_JES_Gjet_Stat3: 1.16404469e-05 + syst_JES_Gjet_Stat4: 1.27457882e-05 + syst_JES_Gjet_Stat5: 1.42858234e-05 + syst_JES_Gjet_Stat6: 2.71784253e-05 + syst_JES_Gjet_Stat7: 3.92811049e-05 + syst_JES_Gjet_Stat8: 2.40412500e-05 + syst_JES_Gjet_Stat9: 3.53582052e-05 + syst_JES_Gjet_Veto: 2.88215301e-03 + syst_JES_Gjet_dPhi: 2.86757437e-04 + syst_JES_LArESZee: 5.34663752e-03 + syst_JES_LArEsmear: 4.48948513e-04 + syst_JES_LAr_JVT: 5.56571386e-04 + syst_JES_MJB_Alpha: 3.04276503e-05 + syst_JES_MJB_Asym: 5.25955538e-04 + syst_JES_MJB_Beta: 3.77736641e-05 + syst_JES_MJB_Stat1: 2.85652564e-06 + syst_JES_MJB_Stat10: 5.09914934e-05 + syst_JES_MJB_Stat11: 5.07262366e-05 + syst_JES_MJB_Stat12: 5.48199478e-05 + syst_JES_MJB_Stat13: 2.20521813e-05 + syst_JES_MJB_Stat14: 8.41335027e-06 + syst_JES_MJB_Stat15: 3.16516204e-05 + syst_JES_MJB_Stat16: 3.18656963e-05 + syst_JES_MJB_Stat2: 4.95756664e-06 + syst_JES_MJB_Stat3: 1.81265627e-05 + syst_JES_MJB_Stat4: 1.36909085e-05 + syst_JES_MJB_Stat5: 1.33049532e-05 + syst_JES_MJB_Stat6: 1.47434393e-05 + syst_JES_MJB_Stat7: 2.11813037e-05 + syst_JES_MJB_Stat8: 3.08046632e-05 + syst_JES_MJB_Stat9: 4.03012664e-05 + syst_JES_MJB_Threshold: 3.52873717e-04 + syst_JES_Pileup_MuOffset: 6.91850813e-04 + syst_JES_Pileup_NPVOffset: 7.13052949e-04 + syst_JES_Pileup_Pt_term: 4.54317257e-04 + syst_JES_PunchThrough_MC15: 4.75232204e-04 + syst_JES_SingleParticle_HighPt: 2.21068451e-12 + syst_JES_Zjet_MC: 1.42020515e-03 + syst_JES_Zjet_MuScale: 1.07492459e-04 + syst_JES_Zjet_MuSmearID: 2.37724100e-05 + syst_JES_Zjet_MuSmearMS: 3.87895113e-04 + syst_JES_Zjet_OOC: 7.95748308e-04 + syst_JES_Zjet_Stat1: 4.76646040e-05 + syst_JES_Zjet_Stat10: 6.79466070e-05 + syst_JES_Zjet_Stat11: 8.78106150e-05 + syst_JES_Zjet_Stat12: 2.54129352e-04 + syst_JES_Zjet_Stat13: 4.20085706e-04 + syst_JES_Zjet_Stat2: 2.34179983e-06 + syst_JES_Zjet_Stat3: 2.88100794e-05 + syst_JES_Zjet_Stat4: 2.64587093e-05 + syst_JES_Zjet_Stat5: 2.67843163e-05 + syst_JES_Zjet_Stat6: 3.10462413e-05 + syst_JES_Zjet_Stat7: 2.72570028e-05 + syst_JES_Zjet_Stat8: 2.92826775e-05 + syst_JES_Zjet_Stat9: 3.90647373e-05 + syst_JES_Zjet_Veto: 1.77813920e-04 + syst_JES_Zjet_dPhi: 1.57599326e-04 + syst_PRW: 1.19240000e-04 + syst_Unfolding_bias: 1.23940000e-04 + syst_cleaning: 9.55399225e-04 syst_lumi: 0.003241 - syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0001794201215025784 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0007023650386373171 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 5.7510964824109844e-05 + syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.79420122e-04 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 7.02365039e-04 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 5.75109648e-05 syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 0.0002227422725932372 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0003087842086312057 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0007086153681652692 -- stat: 0.0007197 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 2.22742273e-04 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 3.08784209e-04 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 7.08615368e-04 +- stat: 7.19700000e-04 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.000269736093246714 - syst_JER_NP1: 2.8931299227653087e-05 - syst_JER_NP2: 0.00012309574606784754 - syst_JER_NP3: 2.5711827531313292e-05 - syst_JER_NP4: 4.260260643434859e-05 - syst_JER_NP5: 5.517418418064739e-05 - syst_JER_NP6: 4.531965881380839e-05 - syst_JER_NP7: 1.963260915384147e-05 - syst_JER_NP8: 6.757290729279006e-05 - syst_JES_EtaIntercalibration_Modelling: 0.0018965960956408194 - syst_JES_EtaIntercalibration_NonClosure: 2.1330205695210724e-14 + syst_JER_NP0: 2.69736093e-04 + syst_JER_NP1: 2.89312992e-05 + syst_JER_NP2: 1.23095746e-04 + syst_JER_NP3: 2.57118275e-05 + syst_JER_NP4: 4.26026064e-05 + syst_JER_NP5: 5.51741842e-05 + syst_JER_NP6: 4.53196588e-05 + syst_JER_NP7: 1.96326092e-05 + syst_JER_NP8: 6.75729073e-05 + syst_JES_EtaIntercalibration_Modelling: 1.89659610e-03 + syst_JES_EtaIntercalibration_NonClosure: 2.13302057e-14 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 2.0498820509102365e-07 - syst_JES_EtaIntercalibration_Stat101: 2.03682399828753e-17 - syst_JES_EtaIntercalibration_Stat102: 5.749515544808972e-20 - syst_JES_EtaIntercalibration_Stat103: 1.107992901601811e-19 - syst_JES_EtaIntercalibration_Stat104: 1.107992901601811e-19 - syst_JES_EtaIntercalibration_Stat105: 1.107992901601811e-19 + syst_JES_EtaIntercalibration_Stat100: 2.04988205e-07 + syst_JES_EtaIntercalibration_Stat101: 2.03682400e-17 + syst_JES_EtaIntercalibration_Stat102: 5.74951554e-20 + syst_JES_EtaIntercalibration_Stat103: 1.10799290e-19 + syst_JES_EtaIntercalibration_Stat104: 1.10799290e-19 + syst_JES_EtaIntercalibration_Stat105: 1.10799290e-19 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 3.2882984581695134e-16 - syst_JES_EtaIntercalibration_Stat111: 3.2882984581695134e-16 + syst_JES_EtaIntercalibration_Stat110: 3.28829846e-16 + syst_JES_EtaIntercalibration_Stat111: 3.28829846e-16 syst_JES_EtaIntercalibration_Stat112: 0.0 - syst_JES_EtaIntercalibration_Stat113: 1.92398127256998e-18 - syst_JES_EtaIntercalibration_Stat114: 9.186852246324067e-07 - syst_JES_EtaIntercalibration_Stat115: 2.4255803032470396e-07 - syst_JES_EtaIntercalibration_Stat116: 1.7489049052192633e-07 - syst_JES_EtaIntercalibration_Stat117: 3.798915207003178e-13 - syst_JES_EtaIntercalibration_Stat118: 1.5908885951317258e-07 - syst_JES_EtaIntercalibration_Stat119: 1.9343510203683303e-07 - syst_JES_EtaIntercalibration_Stat12: 1.0502393416417041e-16 - syst_JES_EtaIntercalibration_Stat120: 1.3446509537794558e-07 - syst_JES_EtaIntercalibration_Stat121: 1.654497234109202e-12 - syst_JES_EtaIntercalibration_Stat122: 1.8457743219784482e-18 - syst_JES_EtaIntercalibration_Stat123: 1.107992901601811e-19 - syst_JES_EtaIntercalibration_Stat124: 1.107992901601811e-19 - syst_JES_EtaIntercalibration_Stat125: 1.107992901601811e-19 + syst_JES_EtaIntercalibration_Stat113: 1.92398127e-18 + syst_JES_EtaIntercalibration_Stat114: 9.18685225e-07 + syst_JES_EtaIntercalibration_Stat115: 2.42558030e-07 + syst_JES_EtaIntercalibration_Stat116: 1.74890491e-07 + syst_JES_EtaIntercalibration_Stat117: 3.79891521e-13 + syst_JES_EtaIntercalibration_Stat118: 1.59088860e-07 + syst_JES_EtaIntercalibration_Stat119: 1.93435102e-07 + syst_JES_EtaIntercalibration_Stat12: 1.05023934e-16 + syst_JES_EtaIntercalibration_Stat120: 1.34465095e-07 + syst_JES_EtaIntercalibration_Stat121: 1.65449723e-12 + syst_JES_EtaIntercalibration_Stat122: 1.84577432e-18 + syst_JES_EtaIntercalibration_Stat123: 1.10799290e-19 + syst_JES_EtaIntercalibration_Stat124: 1.10799290e-19 + syst_JES_EtaIntercalibration_Stat125: 1.10799290e-19 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 1.2782534959858313e-13 - syst_JES_EtaIntercalibration_Stat129: 1.2771611593321925e-13 - syst_JES_EtaIntercalibration_Stat13: 1.4205313972313979e-16 - syst_JES_EtaIntercalibration_Stat130: 3.2882984581695134e-16 - syst_JES_EtaIntercalibration_Stat131: 5.721829842803786e-21 - syst_JES_EtaIntercalibration_Stat132: 2.5376229219824502e-14 - syst_JES_EtaIntercalibration_Stat133: 9.211044843652453e-07 - syst_JES_EtaIntercalibration_Stat134: 7.095225084519871e-07 - syst_JES_EtaIntercalibration_Stat135: 5.471114517452087e-07 - syst_JES_EtaIntercalibration_Stat136: 5.579816425151695e-07 - syst_JES_EtaIntercalibration_Stat137: 1.7972097818563084e-07 - syst_JES_EtaIntercalibration_Stat138: 4.878235029188324e-07 - syst_JES_EtaIntercalibration_Stat139: 7.327412621109855e-07 - syst_JES_EtaIntercalibration_Stat14: 1.3293489948091133e-20 - syst_JES_EtaIntercalibration_Stat140: 6.156417525639404e-08 - syst_JES_EtaIntercalibration_Stat141: 1.2148604616214917e-13 + syst_JES_EtaIntercalibration_Stat128: 1.27825350e-13 + syst_JES_EtaIntercalibration_Stat129: 1.27716116e-13 + syst_JES_EtaIntercalibration_Stat13: 1.42053140e-16 + syst_JES_EtaIntercalibration_Stat130: 3.28829846e-16 + syst_JES_EtaIntercalibration_Stat131: 5.72182984e-21 + syst_JES_EtaIntercalibration_Stat132: 2.53762292e-14 + syst_JES_EtaIntercalibration_Stat133: 9.21104484e-07 + syst_JES_EtaIntercalibration_Stat134: 7.09522508e-07 + syst_JES_EtaIntercalibration_Stat135: 5.47111452e-07 + syst_JES_EtaIntercalibration_Stat136: 5.57981643e-07 + syst_JES_EtaIntercalibration_Stat137: 1.79720978e-07 + syst_JES_EtaIntercalibration_Stat138: 4.87823503e-07 + syst_JES_EtaIntercalibration_Stat139: 7.32741262e-07 + syst_JES_EtaIntercalibration_Stat14: 1.32934899e-20 + syst_JES_EtaIntercalibration_Stat140: 6.15641753e-08 + syst_JES_EtaIntercalibration_Stat141: 1.21486046e-13 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 1.107992901601811e-19 - syst_JES_EtaIntercalibration_Stat144: 1.107992901601811e-19 + syst_JES_EtaIntercalibration_Stat143: 1.10799290e-19 + syst_JES_EtaIntercalibration_Stat144: 1.10799290e-19 syst_JES_EtaIntercalibration_Stat145: 0.0 - syst_JES_EtaIntercalibration_Stat146: 1.2782534959858313e-13 - syst_JES_EtaIntercalibration_Stat147: 1.2771611593321925e-13 + syst_JES_EtaIntercalibration_Stat146: 1.27825350e-13 + syst_JES_EtaIntercalibration_Stat147: 1.27716116e-13 syst_JES_EtaIntercalibration_Stat148: 0.0 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 1.2989413641500529e-17 - syst_JES_EtaIntercalibration_Stat151: 9.20930868500987e-07 - syst_JES_EtaIntercalibration_Stat152: 6.670192707111242e-07 - syst_JES_EtaIntercalibration_Stat153: 6.025164147763943e-07 - syst_JES_EtaIntercalibration_Stat154: 1.0394623038892513e-07 - syst_JES_EtaIntercalibration_Stat155: 3.6445239401052096e-07 - syst_JES_EtaIntercalibration_Stat156: 1.0267905044360315e-06 - syst_JES_EtaIntercalibration_Stat157: 1.0320375332321981e-06 - syst_JES_EtaIntercalibration_Stat158: 2.421358502989592e-07 - syst_JES_EtaIntercalibration_Stat159: 1.2189831304942125e-13 + syst_JES_EtaIntercalibration_Stat150: 1.29894136e-17 + syst_JES_EtaIntercalibration_Stat151: 9.20930869e-07 + syst_JES_EtaIntercalibration_Stat152: 6.67019271e-07 + syst_JES_EtaIntercalibration_Stat153: 6.02516415e-07 + syst_JES_EtaIntercalibration_Stat154: 1.03946230e-07 + syst_JES_EtaIntercalibration_Stat155: 3.64452394e-07 + syst_JES_EtaIntercalibration_Stat156: 1.02679050e-06 + syst_JES_EtaIntercalibration_Stat157: 1.03203753e-06 + syst_JES_EtaIntercalibration_Stat158: 2.42135850e-07 + syst_JES_EtaIntercalibration_Stat159: 1.21898313e-13 syst_JES_EtaIntercalibration_Stat16: 0.0 syst_JES_EtaIntercalibration_Stat160: 0.0 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 - syst_JES_EtaIntercalibration_Stat164: 1.2782534959858313e-13 + syst_JES_EtaIntercalibration_Stat164: 1.27825350e-13 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 - syst_JES_EtaIntercalibration_Stat168: 3.376719651895905e-16 - syst_JES_EtaIntercalibration_Stat169: 2.0840506231855308e-07 + syst_JES_EtaIntercalibration_Stat168: 3.37671965e-16 + syst_JES_EtaIntercalibration_Stat169: 2.08405062e-07 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 1.5619069498532876e-06 - syst_JES_EtaIntercalibration_Stat171: 2.31413498958034e-06 - syst_JES_EtaIntercalibration_Stat172: 1.8072802771014794e-07 - syst_JES_EtaIntercalibration_Stat173: 4.4860059072631636e-07 - syst_JES_EtaIntercalibration_Stat174: 1.2192785858859328e-06 - syst_JES_EtaIntercalibration_Stat175: 1.592420647944506e-06 - syst_JES_EtaIntercalibration_Stat176: 1.7311761163110762e-07 - syst_JES_EtaIntercalibration_Stat177: 1.05532633961017e-12 + syst_JES_EtaIntercalibration_Stat170: 1.56190695e-06 + syst_JES_EtaIntercalibration_Stat171: 2.31413499e-06 + syst_JES_EtaIntercalibration_Stat172: 1.80728028e-07 + syst_JES_EtaIntercalibration_Stat173: 4.48600591e-07 + syst_JES_EtaIntercalibration_Stat174: 1.21927859e-06 + syst_JES_EtaIntercalibration_Stat175: 1.59242065e-06 + syst_JES_EtaIntercalibration_Stat176: 1.73117612e-07 + syst_JES_EtaIntercalibration_Stat177: 1.05532634e-12 syst_JES_EtaIntercalibration_Stat178: 0.0 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 @@ -20630,17 +20630,17 @@ bins: syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 syst_JES_EtaIntercalibration_Stat184: 0.0 - syst_JES_EtaIntercalibration_Stat185: 5.109260890285698e-08 - syst_JES_EtaIntercalibration_Stat186: 8.426299232165922e-07 - syst_JES_EtaIntercalibration_Stat187: 1.0133328907619647e-05 - syst_JES_EtaIntercalibration_Stat188: 8.543814780295744e-06 - syst_JES_EtaIntercalibration_Stat189: 1.4552055799783066e-06 + syst_JES_EtaIntercalibration_Stat185: 5.10926089e-08 + syst_JES_EtaIntercalibration_Stat186: 8.42629923e-07 + syst_JES_EtaIntercalibration_Stat187: 1.01333289e-05 + syst_JES_EtaIntercalibration_Stat188: 8.54381478e-06 + syst_JES_EtaIntercalibration_Stat189: 1.45520558e-06 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 4.533490129028628e-07 - syst_JES_EtaIntercalibration_Stat191: 5.9682892649401635e-06 - syst_JES_EtaIntercalibration_Stat192: 1.0021880399905e-05 - syst_JES_EtaIntercalibration_Stat193: 1.590242059404794e-06 - syst_JES_EtaIntercalibration_Stat194: 1.0809729090037364e-12 + syst_JES_EtaIntercalibration_Stat190: 4.53349013e-07 + syst_JES_EtaIntercalibration_Stat191: 5.96828926e-06 + syst_JES_EtaIntercalibration_Stat192: 1.00218804e-05 + syst_JES_EtaIntercalibration_Stat193: 1.59024206e-06 + syst_JES_EtaIntercalibration_Stat194: 1.08097291e-12 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 syst_JES_EtaIntercalibration_Stat197: 0.0 @@ -20648,70 +20648,70 @@ bins: syst_JES_EtaIntercalibration_Stat199: 0.0 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 5.107735564408043e-08 - syst_JES_EtaIntercalibration_Stat201: 2.0020696166717075e-06 - syst_JES_EtaIntercalibration_Stat202: 2.2401263357230546e-05 - syst_JES_EtaIntercalibration_Stat203: 1.5794736465037966e-05 - syst_JES_EtaIntercalibration_Stat204: 2.3487095925209656e-06 - syst_JES_EtaIntercalibration_Stat205: 1.7397641933296615e-06 - syst_JES_EtaIntercalibration_Stat206: 1.51760640071792e-05 - syst_JES_EtaIntercalibration_Stat207: 1.7429380367643593e-05 - syst_JES_EtaIntercalibration_Stat208: 2.2842769096587217e-06 - syst_JES_EtaIntercalibration_Stat209: 6.028402755693867e-08 + syst_JES_EtaIntercalibration_Stat200: 5.10773556e-08 + syst_JES_EtaIntercalibration_Stat201: 2.00206962e-06 + syst_JES_EtaIntercalibration_Stat202: 2.24012634e-05 + syst_JES_EtaIntercalibration_Stat203: 1.57947365e-05 + syst_JES_EtaIntercalibration_Stat204: 2.34870959e-06 + syst_JES_EtaIntercalibration_Stat205: 1.73976419e-06 + syst_JES_EtaIntercalibration_Stat206: 1.51760640e-05 + syst_JES_EtaIntercalibration_Stat207: 1.74293804e-05 + syst_JES_EtaIntercalibration_Stat208: 2.28427691e-06 + syst_JES_EtaIntercalibration_Stat209: 6.02840276e-08 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 syst_JES_EtaIntercalibration_Stat211: 0.0 syst_JES_EtaIntercalibration_Stat212: 0.0 - syst_JES_EtaIntercalibration_Stat213: 5.108391397705055e-08 - syst_JES_EtaIntercalibration_Stat214: 1.53312160965789e-06 - syst_JES_EtaIntercalibration_Stat215: 2.582167064695854e-05 - syst_JES_EtaIntercalibration_Stat216: 1.9740045592652514e-05 - syst_JES_EtaIntercalibration_Stat217: 2.029059281415898e-06 - syst_JES_EtaIntercalibration_Stat218: 1.2426611153085945e-06 - syst_JES_EtaIntercalibration_Stat219: 1.953741218790247e-05 + syst_JES_EtaIntercalibration_Stat213: 5.10839140e-08 + syst_JES_EtaIntercalibration_Stat214: 1.53312161e-06 + syst_JES_EtaIntercalibration_Stat215: 2.58216706e-05 + syst_JES_EtaIntercalibration_Stat216: 1.97400456e-05 + syst_JES_EtaIntercalibration_Stat217: 2.02905928e-06 + syst_JES_EtaIntercalibration_Stat218: 1.24266112e-06 + syst_JES_EtaIntercalibration_Stat219: 1.95374122e-05 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 2.1435262419667272e-05 - syst_JES_EtaIntercalibration_Stat221: 2.7323173314972036e-06 - syst_JES_EtaIntercalibration_Stat222: 5.978919775971241e-08 + syst_JES_EtaIntercalibration_Stat220: 2.14352624e-05 + syst_JES_EtaIntercalibration_Stat221: 2.73231733e-06 + syst_JES_EtaIntercalibration_Stat222: 5.97891978e-08 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 - syst_JES_EtaIntercalibration_Stat225: 1.8734722275763789e-07 - syst_JES_EtaIntercalibration_Stat226: 5.062658553566495e-06 - syst_JES_EtaIntercalibration_Stat227: 6.198085349525287e-05 - syst_JES_EtaIntercalibration_Stat228: 5.5255548816385856e-05 - syst_JES_EtaIntercalibration_Stat229: 4.046788448881409e-06 + syst_JES_EtaIntercalibration_Stat225: 1.87347223e-07 + syst_JES_EtaIntercalibration_Stat226: 5.06265855e-06 + syst_JES_EtaIntercalibration_Stat227: 6.19808535e-05 + syst_JES_EtaIntercalibration_Stat228: 5.52555488e-05 + syst_JES_EtaIntercalibration_Stat229: 4.04678845e-06 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 4.937130821641249e-06 - syst_JES_EtaIntercalibration_Stat231: 6.273011298411633e-05 - syst_JES_EtaIntercalibration_Stat232: 6.383077216358895e-05 - syst_JES_EtaIntercalibration_Stat233: 4.922607921620409e-06 - syst_JES_EtaIntercalibration_Stat234: 2.096187653813465e-07 + syst_JES_EtaIntercalibration_Stat230: 4.93713082e-06 + syst_JES_EtaIntercalibration_Stat231: 6.27301130e-05 + syst_JES_EtaIntercalibration_Stat232: 6.38307722e-05 + syst_JES_EtaIntercalibration_Stat233: 4.92260792e-06 + syst_JES_EtaIntercalibration_Stat234: 2.09618765e-07 syst_JES_EtaIntercalibration_Stat235: 0.0 - syst_JES_EtaIntercalibration_Stat236: 5.10781783152062e-08 - syst_JES_EtaIntercalibration_Stat237: 1.6751575299057699e-06 - syst_JES_EtaIntercalibration_Stat238: 1.5499041930067808e-05 - syst_JES_EtaIntercalibration_Stat239: 7.045553704287548e-06 + syst_JES_EtaIntercalibration_Stat236: 5.10781783e-08 + syst_JES_EtaIntercalibration_Stat237: 1.67515753e-06 + syst_JES_EtaIntercalibration_Stat238: 1.54990419e-05 + syst_JES_EtaIntercalibration_Stat239: 7.04555370e-06 syst_JES_EtaIntercalibration_Stat24: 0.0 - syst_JES_EtaIntercalibration_Stat240: 1.5468972065072717e-07 - syst_JES_EtaIntercalibration_Stat241: 3.5162982856587623e-07 - syst_JES_EtaIntercalibration_Stat242: 5.675568958263128e-06 - syst_JES_EtaIntercalibration_Stat243: 9.841105120869303e-06 - syst_JES_EtaIntercalibration_Stat244: 1.0988587215834438e-06 - syst_JES_EtaIntercalibration_Stat245: 8.445479737705845e-09 + syst_JES_EtaIntercalibration_Stat240: 1.54689721e-07 + syst_JES_EtaIntercalibration_Stat241: 3.51629829e-07 + syst_JES_EtaIntercalibration_Stat242: 5.67556896e-06 + syst_JES_EtaIntercalibration_Stat243: 9.84110512e-06 + syst_JES_EtaIntercalibration_Stat244: 1.09885872e-06 + syst_JES_EtaIntercalibration_Stat245: 8.44547974e-09 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 syst_JES_EtaIntercalibration_Stat27: 0.0 - syst_JES_EtaIntercalibration_Stat28: 2.7643530888799283e-21 - syst_JES_EtaIntercalibration_Stat29: 3.7504835248271653e-19 + syst_JES_EtaIntercalibration_Stat28: 2.76435309e-21 + syst_JES_EtaIntercalibration_Stat29: 3.75048352e-19 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 5.470030415820373e-18 - syst_JES_EtaIntercalibration_Stat31: 3.716681449895861e-18 - syst_JES_EtaIntercalibration_Stat32: 1.2002271784958046e-20 - syst_JES_EtaIntercalibration_Stat33: 2.2561506332689753e-19 - syst_JES_EtaIntercalibration_Stat34: 1.7251226047834502e-07 - syst_JES_EtaIntercalibration_Stat35: 1.1868930352248113e-13 - syst_JES_EtaIntercalibration_Stat36: 1.7626077461746843e-18 - syst_JES_EtaIntercalibration_Stat37: 2.017839190817742e-21 + syst_JES_EtaIntercalibration_Stat30: 5.47003042e-18 + syst_JES_EtaIntercalibration_Stat31: 3.71668145e-18 + syst_JES_EtaIntercalibration_Stat32: 1.20022718e-20 + syst_JES_EtaIntercalibration_Stat33: 2.25615063e-19 + syst_JES_EtaIntercalibration_Stat34: 1.72512260e-07 + syst_JES_EtaIntercalibration_Stat35: 1.18689304e-13 + syst_JES_EtaIntercalibration_Stat36: 1.76260775e-18 + syst_JES_EtaIntercalibration_Stat37: 2.01783919e-21 syst_JES_EtaIntercalibration_Stat38: 0.0 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 @@ -20726,20 +20726,20 @@ bins: syst_JES_EtaIntercalibration_Stat48: 0.0 syst_JES_EtaIntercalibration_Stat49: 0.0 syst_JES_EtaIntercalibration_Stat5: 0.0 - syst_JES_EtaIntercalibration_Stat50: 2.8007261558388748e-21 - syst_JES_EtaIntercalibration_Stat51: 6.784915474786698e-19 - syst_JES_EtaIntercalibration_Stat52: 2.771578197976741e-16 - syst_JES_EtaIntercalibration_Stat53: 3.330471696321709e-17 - syst_JES_EtaIntercalibration_Stat54: 2.3865373975699607e-19 - syst_JES_EtaIntercalibration_Stat55: 1.0473347482475458e-16 - syst_JES_EtaIntercalibration_Stat56: 1.7268546551169798e-07 - syst_JES_EtaIntercalibration_Stat57: 1.1788337797626962e-08 - syst_JES_EtaIntercalibration_Stat58: 2.168147769410563e-18 - syst_JES_EtaIntercalibration_Stat59: 6.904209350099401e-21 + syst_JES_EtaIntercalibration_Stat50: 2.80072616e-21 + syst_JES_EtaIntercalibration_Stat51: 6.78491547e-19 + syst_JES_EtaIntercalibration_Stat52: 2.77157820e-16 + syst_JES_EtaIntercalibration_Stat53: 3.33047170e-17 + syst_JES_EtaIntercalibration_Stat54: 2.38653740e-19 + syst_JES_EtaIntercalibration_Stat55: 1.04733475e-16 + syst_JES_EtaIntercalibration_Stat56: 1.72685466e-07 + syst_JES_EtaIntercalibration_Stat57: 1.17883378e-08 + syst_JES_EtaIntercalibration_Stat58: 2.16814777e-18 + syst_JES_EtaIntercalibration_Stat59: 6.90420935e-21 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 1.107992901601811e-19 - syst_JES_EtaIntercalibration_Stat62: 1.107992901601811e-19 + syst_JES_EtaIntercalibration_Stat61: 1.10799290e-19 + syst_JES_EtaIntercalibration_Stat62: 1.10799290e-19 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 @@ -20747,223 +20747,223 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 2.7643530888799283e-21 + syst_JES_EtaIntercalibration_Stat7: 2.76435309e-21 syst_JES_EtaIntercalibration_Stat70: 0.0 syst_JES_EtaIntercalibration_Stat71: 0.0 - syst_JES_EtaIntercalibration_Stat72: 2.0048488097609755e-20 - syst_JES_EtaIntercalibration_Stat73: 5.233328495584813e-16 - syst_JES_EtaIntercalibration_Stat74: 4.0599830990075566e-07 - syst_JES_EtaIntercalibration_Stat75: 1.6151373001445742e-07 - syst_JES_EtaIntercalibration_Stat76: 1.4258638811261053e-17 - syst_JES_EtaIntercalibration_Stat77: 8.959058917514719e-17 - syst_JES_EtaIntercalibration_Stat78: 1.6636347204182348e-07 - syst_JES_EtaIntercalibration_Stat79: 2.4110147953231735e-07 - syst_JES_EtaIntercalibration_Stat8: 1.2740590292447206e-19 - syst_JES_EtaIntercalibration_Stat80: 1.888964527671179e-17 - syst_JES_EtaIntercalibration_Stat81: 1.5718361078687562e-20 - syst_JES_EtaIntercalibration_Stat82: 1.107992901601811e-19 - syst_JES_EtaIntercalibration_Stat83: 1.107992901601811e-19 - syst_JES_EtaIntercalibration_Stat84: 1.107992901601811e-19 + syst_JES_EtaIntercalibration_Stat72: 2.00484881e-20 + syst_JES_EtaIntercalibration_Stat73: 5.23332850e-16 + syst_JES_EtaIntercalibration_Stat74: 4.05998310e-07 + syst_JES_EtaIntercalibration_Stat75: 1.61513730e-07 + syst_JES_EtaIntercalibration_Stat76: 1.42586388e-17 + syst_JES_EtaIntercalibration_Stat77: 8.95905892e-17 + syst_JES_EtaIntercalibration_Stat78: 1.66363472e-07 + syst_JES_EtaIntercalibration_Stat79: 2.41101480e-07 + syst_JES_EtaIntercalibration_Stat8: 1.27405903e-19 + syst_JES_EtaIntercalibration_Stat80: 1.88896453e-17 + syst_JES_EtaIntercalibration_Stat81: 1.57183611e-20 + syst_JES_EtaIntercalibration_Stat82: 1.10799290e-19 + syst_JES_EtaIntercalibration_Stat83: 1.10799290e-19 + syst_JES_EtaIntercalibration_Stat84: 1.10799290e-19 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 syst_JES_EtaIntercalibration_Stat89: 0.0 - syst_JES_EtaIntercalibration_Stat9: 9.226183216802059e-20 + syst_JES_EtaIntercalibration_Stat9: 9.22618322e-20 syst_JES_EtaIntercalibration_Stat90: 0.0 syst_JES_EtaIntercalibration_Stat91: 0.0 syst_JES_EtaIntercalibration_Stat92: 0.0 - syst_JES_EtaIntercalibration_Stat93: 1.442798322704875e-20 - syst_JES_EtaIntercalibration_Stat94: 7.123997156091515e-16 - syst_JES_EtaIntercalibration_Stat95: 4.059982723688608e-07 - syst_JES_EtaIntercalibration_Stat96: 2.2898895622933434e-07 - syst_JES_EtaIntercalibration_Stat97: 2.471839175088056e-16 - syst_JES_EtaIntercalibration_Stat98: 4.983234567025718e-17 - syst_JES_EtaIntercalibration_Stat99: 8.28439810298699e-08 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0007302771169220626 - syst_JES_Flavour_Comp: 0.001849647196089027 - syst_JES_Gjet_Generator: 0.002354550487885108 - syst_JES_Gjet_OOC: 0.001959165383524321 - syst_JES_Gjet_Purity: 0.000349233102669263 - syst_JES_Gjet_Stat1: 7.811113284929364e-06 - syst_JES_Gjet_Stat10: 3.712801948326897e-05 - syst_JES_Gjet_Stat11: 3.997916747507381e-05 - syst_JES_Gjet_Stat12: 0.00012905608964709878 - syst_JES_Gjet_Stat13: 0.0003959174632104525 - syst_JES_Gjet_Stat14: 0.0010818872711609098 - syst_JES_Gjet_Stat15: 0.0011957386712823166 - syst_JES_Gjet_Stat2: 8.249965499927863e-06 - syst_JES_Gjet_Stat3: 8.863412816178652e-06 - syst_JES_Gjet_Stat4: 8.45019070790713e-06 - syst_JES_Gjet_Stat5: 1.0082209876807762e-05 - syst_JES_Gjet_Stat6: 2.1096679833566228e-05 - syst_JES_Gjet_Stat7: 2.7334627764065126e-05 - syst_JES_Gjet_Stat8: 1.581765706417989e-05 - syst_JES_Gjet_Stat9: 2.3285671023185054e-05 - syst_JES_Gjet_Veto: 0.001963714019403029 - syst_JES_Gjet_dPhi: 0.00019685062230026095 - syst_JES_LArESZee: 0.0035830647496242654 - syst_JES_LArEsmear: 0.00030478465758630307 - syst_JES_LAr_JVT: 0.00038026639977783994 - syst_JES_MJB_Alpha: 2.1565877561555434e-05 - syst_JES_MJB_Asym: 0.000389892173940437 - syst_JES_MJB_Beta: 2.5640440713841094e-05 - syst_JES_MJB_Stat1: 1.8491543492905072e-06 - syst_JES_MJB_Stat10: 3.93112153081026e-05 - syst_JES_MJB_Stat11: 4.1260958544367335e-05 - syst_JES_MJB_Stat12: 5.1729586070255774e-05 - syst_JES_MJB_Stat13: 3.8500068831107305e-05 - syst_JES_MJB_Stat14: 1.549584057094032e-05 - syst_JES_MJB_Stat15: 8.14972004120387e-06 - syst_JES_MJB_Stat16: 3.667186410246962e-05 - syst_JES_MJB_Stat2: 3.0351950513929086e-06 - syst_JES_MJB_Stat3: 9.304515825662289e-06 - syst_JES_MJB_Stat4: 6.376886465980086e-06 - syst_JES_MJB_Stat5: 7.079627532575425e-06 - syst_JES_MJB_Stat6: 8.414606036529577e-06 - syst_JES_MJB_Stat7: 1.2107847486238006e-05 - syst_JES_MJB_Stat8: 1.7941473601686124e-05 - syst_JES_MJB_Stat9: 2.6731576833400607e-05 - syst_JES_MJB_Threshold: 0.0002580884489860017 - syst_JES_Pileup_MuOffset: 0.0004694069023778837 - syst_JES_Pileup_NPVOffset: 0.0004867518541310346 - syst_JES_Pileup_Pt_term: 0.0003044379739782802 - syst_JES_PunchThrough_MC15: 0.0003924982225118988 - syst_JES_SingleParticle_HighPt: 5.479072184229735e-11 - syst_JES_Zjet_MC: 0.000930829049826014 - syst_JES_Zjet_MuScale: 7.33367184635364e-05 - syst_JES_Zjet_MuSmearID: 1.561176719657323e-05 - syst_JES_Zjet_MuSmearMS: 0.00025112106642016314 - syst_JES_Zjet_OOC: 0.0005337256504984561 - syst_JES_Zjet_Stat1: 3.610208408111642e-05 - syst_JES_Zjet_Stat10: 4.5648685358945446e-05 - syst_JES_Zjet_Stat11: 6.085101539826596e-05 - syst_JES_Zjet_Stat12: 0.0001698009422824267 - syst_JES_Zjet_Stat13: 0.00026891487500694335 - syst_JES_Zjet_Stat2: 1.506477016087534e-06 - syst_JES_Zjet_Stat3: 2.1929938440406076e-05 - syst_JES_Zjet_Stat4: 2.02890783427932e-05 - syst_JES_Zjet_Stat5: 1.9764174660228035e-05 - syst_JES_Zjet_Stat6: 2.1373677152048498e-05 - syst_JES_Zjet_Stat7: 2.0391181304671883e-05 - syst_JES_Zjet_Stat8: 2.0457430801544947e-05 - syst_JES_Zjet_Stat9: 2.683376743955273e-05 - syst_JES_Zjet_Veto: 0.00011777340648465594 - syst_JES_Zjet_dPhi: 0.00010784608384174179 - syst_PRW: 7.705e-05 - syst_Unfolding_bias: 8.008e-05 - syst_cleaning: 0.0006169564976560341 + syst_JES_EtaIntercalibration_Stat93: 1.44279832e-20 + syst_JES_EtaIntercalibration_Stat94: 7.12399716e-16 + syst_JES_EtaIntercalibration_Stat95: 4.05998272e-07 + syst_JES_EtaIntercalibration_Stat96: 2.28988956e-07 + syst_JES_EtaIntercalibration_Stat97: 2.47183918e-16 + syst_JES_EtaIntercalibration_Stat98: 4.98323457e-17 + syst_JES_EtaIntercalibration_Stat99: 8.28439810e-08 + syst_JES_EtaIntercalibration_TotalStat_MJB: 7.30277117e-04 + syst_JES_Flavour_Comp: 1.84964720e-03 + syst_JES_Gjet_Generator: 2.35455049e-03 + syst_JES_Gjet_OOC: 1.95916538e-03 + syst_JES_Gjet_Purity: 3.49233103e-04 + syst_JES_Gjet_Stat1: 7.81111328e-06 + syst_JES_Gjet_Stat10: 3.71280195e-05 + syst_JES_Gjet_Stat11: 3.99791675e-05 + syst_JES_Gjet_Stat12: 1.29056090e-04 + syst_JES_Gjet_Stat13: 3.95917463e-04 + syst_JES_Gjet_Stat14: 1.08188727e-03 + syst_JES_Gjet_Stat15: 1.19573867e-03 + syst_JES_Gjet_Stat2: 8.24996550e-06 + syst_JES_Gjet_Stat3: 8.86341282e-06 + syst_JES_Gjet_Stat4: 8.45019071e-06 + syst_JES_Gjet_Stat5: 1.00822099e-05 + syst_JES_Gjet_Stat6: 2.10966798e-05 + syst_JES_Gjet_Stat7: 2.73346278e-05 + syst_JES_Gjet_Stat8: 1.58176571e-05 + syst_JES_Gjet_Stat9: 2.32856710e-05 + syst_JES_Gjet_Veto: 1.96371402e-03 + syst_JES_Gjet_dPhi: 1.96850622e-04 + syst_JES_LArESZee: 3.58306475e-03 + syst_JES_LArEsmear: 3.04784658e-04 + syst_JES_LAr_JVT: 3.80266400e-04 + syst_JES_MJB_Alpha: 2.15658776e-05 + syst_JES_MJB_Asym: 3.89892174e-04 + syst_JES_MJB_Beta: 2.56404407e-05 + syst_JES_MJB_Stat1: 1.84915435e-06 + syst_JES_MJB_Stat10: 3.93112153e-05 + syst_JES_MJB_Stat11: 4.12609585e-05 + syst_JES_MJB_Stat12: 5.17295861e-05 + syst_JES_MJB_Stat13: 3.85000688e-05 + syst_JES_MJB_Stat14: 1.54958406e-05 + syst_JES_MJB_Stat15: 8.14972004e-06 + syst_JES_MJB_Stat16: 3.66718641e-05 + syst_JES_MJB_Stat2: 3.03519505e-06 + syst_JES_MJB_Stat3: 9.30451583e-06 + syst_JES_MJB_Stat4: 6.37688647e-06 + syst_JES_MJB_Stat5: 7.07962753e-06 + syst_JES_MJB_Stat6: 8.41460604e-06 + syst_JES_MJB_Stat7: 1.21078475e-05 + syst_JES_MJB_Stat8: 1.79414736e-05 + syst_JES_MJB_Stat9: 2.67315768e-05 + syst_JES_MJB_Threshold: 2.58088449e-04 + syst_JES_Pileup_MuOffset: 4.69406902e-04 + syst_JES_Pileup_NPVOffset: 4.86751854e-04 + syst_JES_Pileup_Pt_term: 3.04437974e-04 + syst_JES_PunchThrough_MC15: 3.92498223e-04 + syst_JES_SingleParticle_HighPt: 5.47907218e-11 + syst_JES_Zjet_MC: 9.30829050e-04 + syst_JES_Zjet_MuScale: 7.33367185e-05 + syst_JES_Zjet_MuSmearID: 1.56117672e-05 + syst_JES_Zjet_MuSmearMS: 2.51121066e-04 + syst_JES_Zjet_OOC: 5.33725650e-04 + syst_JES_Zjet_Stat1: 3.61020841e-05 + syst_JES_Zjet_Stat10: 4.56486854e-05 + syst_JES_Zjet_Stat11: 6.08510154e-05 + syst_JES_Zjet_Stat12: 1.69800942e-04 + syst_JES_Zjet_Stat13: 2.68914875e-04 + syst_JES_Zjet_Stat2: 1.50647702e-06 + syst_JES_Zjet_Stat3: 2.19299384e-05 + syst_JES_Zjet_Stat4: 2.02890783e-05 + syst_JES_Zjet_Stat5: 1.97641747e-05 + syst_JES_Zjet_Stat6: 2.13736772e-05 + syst_JES_Zjet_Stat7: 2.03911813e-05 + syst_JES_Zjet_Stat8: 2.04574308e-05 + syst_JES_Zjet_Stat9: 2.68337674e-05 + syst_JES_Zjet_Veto: 1.17773406e-04 + syst_JES_Zjet_dPhi: 1.07846084e-04 + syst_PRW: 7.70500000e-05 + syst_Unfolding_bias: 8.00800000e-05 + syst_cleaning: 6.16956498e-04 syst_lumi: 0.002094 - syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.00010878066498693598 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0004525509335975344 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 2.5751613556241483e-05 + syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.08780665e-04 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 4.52550934e-04 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 2.57516136e-05 syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 9.973642301085396e-05 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.00019321014466119524 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.00047780102553259554 -- stat: 0.0005652 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 9.97364230e-05 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.93210145e-04 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 4.77801026e-04 +- stat: 5.65200000e-04 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.00018393637486913782 - syst_JER_NP1: 1.9018675032714553e-05 - syst_JER_NP2: 8.700586072213756e-05 - syst_JER_NP3: 1.6212547609799022e-05 - syst_JER_NP4: 3.1368861550907454e-05 - syst_JER_NP5: 4.328473287430569e-05 - syst_JER_NP6: 3.3241941880702456e-05 - syst_JER_NP7: 1.295677927524815e-05 - syst_JER_NP8: 4.6548162960529384e-05 - syst_JES_EtaIntercalibration_Modelling: 0.0013317557133348443 - syst_JES_EtaIntercalibration_NonClosure: 3.7126509060238885e-15 + syst_JER_NP0: 1.83936375e-04 + syst_JER_NP1: 1.90186750e-05 + syst_JER_NP2: 8.70058607e-05 + syst_JER_NP3: 1.62125476e-05 + syst_JER_NP4: 3.13688616e-05 + syst_JER_NP5: 4.32847329e-05 + syst_JER_NP6: 3.32419419e-05 + syst_JER_NP7: 1.29567793e-05 + syst_JER_NP8: 4.65481630e-05 + syst_JES_EtaIntercalibration_Modelling: 1.33175571e-03 + syst_JES_EtaIntercalibration_NonClosure: 3.71265091e-15 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 1.3458034632349005e-07 - syst_JES_EtaIntercalibration_Stat101: 4.455247812411785e-18 - syst_JES_EtaIntercalibration_Stat102: 1.6092485715622058e-20 - syst_JES_EtaIntercalibration_Stat103: 3.441411749558602e-20 - syst_JES_EtaIntercalibration_Stat104: 3.441411749558602e-20 - syst_JES_EtaIntercalibration_Stat105: 3.441411749558602e-20 + syst_JES_EtaIntercalibration_Stat100: 1.34580346e-07 + syst_JES_EtaIntercalibration_Stat101: 4.45524781e-18 + syst_JES_EtaIntercalibration_Stat102: 1.60924857e-20 + syst_JES_EtaIntercalibration_Stat103: 3.44141175e-20 + syst_JES_EtaIntercalibration_Stat104: 3.44141175e-20 + syst_JES_EtaIntercalibration_Stat105: 3.44141175e-20 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 6.740275717654286e-17 - syst_JES_EtaIntercalibration_Stat111: 6.740275717654286e-17 + syst_JES_EtaIntercalibration_Stat110: 6.74027572e-17 + syst_JES_EtaIntercalibration_Stat111: 6.74027572e-17 syst_JES_EtaIntercalibration_Stat112: 0.0 - syst_JES_EtaIntercalibration_Stat113: 4.710015007141698e-19 - syst_JES_EtaIntercalibration_Stat114: 4.6055323321172685e-07 - syst_JES_EtaIntercalibration_Stat115: 1.4010235544058494e-07 - syst_JES_EtaIntercalibration_Stat116: 1.2263355444167798e-07 - syst_JES_EtaIntercalibration_Stat117: 6.496485280518998e-14 - syst_JES_EtaIntercalibration_Stat118: 1.0450328421893145e-07 - syst_JES_EtaIntercalibration_Stat119: 1.6370390954403013e-07 - syst_JES_EtaIntercalibration_Stat12: 2.1268979178963902e-17 - syst_JES_EtaIntercalibration_Stat120: 1.1386353066018142e-07 - syst_JES_EtaIntercalibration_Stat121: 2.7788408426536415e-13 - syst_JES_EtaIntercalibration_Stat122: 4.349931594864453e-19 - syst_JES_EtaIntercalibration_Stat123: 3.441411749558602e-20 - syst_JES_EtaIntercalibration_Stat124: 3.441411749558602e-20 - syst_JES_EtaIntercalibration_Stat125: 3.441411749558602e-20 + syst_JES_EtaIntercalibration_Stat113: 4.71001501e-19 + syst_JES_EtaIntercalibration_Stat114: 4.60553233e-07 + syst_JES_EtaIntercalibration_Stat115: 1.40102355e-07 + syst_JES_EtaIntercalibration_Stat116: 1.22633554e-07 + syst_JES_EtaIntercalibration_Stat117: 6.49648528e-14 + syst_JES_EtaIntercalibration_Stat118: 1.04503284e-07 + syst_JES_EtaIntercalibration_Stat119: 1.63703910e-07 + syst_JES_EtaIntercalibration_Stat12: 2.12689792e-17 + syst_JES_EtaIntercalibration_Stat120: 1.13863531e-07 + syst_JES_EtaIntercalibration_Stat121: 2.77884084e-13 + syst_JES_EtaIntercalibration_Stat122: 4.34993159e-19 + syst_JES_EtaIntercalibration_Stat123: 3.44141175e-20 + syst_JES_EtaIntercalibration_Stat124: 3.44141175e-20 + syst_JES_EtaIntercalibration_Stat125: 3.44141175e-20 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 2.2066327288427495e-14 - syst_JES_EtaIntercalibration_Stat129: 2.2043951300338035e-14 - syst_JES_EtaIntercalibration_Stat13: 2.935438739905289e-17 - syst_JES_EtaIntercalibration_Stat130: 6.740275717654286e-17 - syst_JES_EtaIntercalibration_Stat131: 1.7164623503007574e-21 - syst_JES_EtaIntercalibration_Stat132: 4.4358582105122285e-15 - syst_JES_EtaIntercalibration_Stat133: 4.653154270319856e-07 - syst_JES_EtaIntercalibration_Stat134: 4.6367932884699534e-07 - syst_JES_EtaIntercalibration_Stat135: 3.644804466176032e-07 - syst_JES_EtaIntercalibration_Stat136: 4.6289082658393087e-07 - syst_JES_EtaIntercalibration_Stat137: 1.1253400597152845e-07 - syst_JES_EtaIntercalibration_Stat138: 7.650888641197179e-07 - syst_JES_EtaIntercalibration_Stat139: 5.572432218520024e-07 - syst_JES_EtaIntercalibration_Stat14: 4.104094388534455e-21 - syst_JES_EtaIntercalibration_Stat140: 2.615907215996011e-08 - syst_JES_EtaIntercalibration_Stat141: 2.0862552739846945e-14 + syst_JES_EtaIntercalibration_Stat128: 2.20663273e-14 + syst_JES_EtaIntercalibration_Stat129: 2.20439513e-14 + syst_JES_EtaIntercalibration_Stat13: 2.93543874e-17 + syst_JES_EtaIntercalibration_Stat130: 6.74027572e-17 + syst_JES_EtaIntercalibration_Stat131: 1.71646235e-21 + syst_JES_EtaIntercalibration_Stat132: 4.43585821e-15 + syst_JES_EtaIntercalibration_Stat133: 4.65315427e-07 + syst_JES_EtaIntercalibration_Stat134: 4.63679329e-07 + syst_JES_EtaIntercalibration_Stat135: 3.64480447e-07 + syst_JES_EtaIntercalibration_Stat136: 4.62890827e-07 + syst_JES_EtaIntercalibration_Stat137: 1.12534006e-07 + syst_JES_EtaIntercalibration_Stat138: 7.65088864e-07 + syst_JES_EtaIntercalibration_Stat139: 5.57243222e-07 + syst_JES_EtaIntercalibration_Stat14: 4.10409439e-21 + syst_JES_EtaIntercalibration_Stat140: 2.61590722e-08 + syst_JES_EtaIntercalibration_Stat141: 2.08625527e-14 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 3.441411749558602e-20 - syst_JES_EtaIntercalibration_Stat144: 3.441411749558602e-20 + syst_JES_EtaIntercalibration_Stat143: 3.44141175e-20 + syst_JES_EtaIntercalibration_Stat144: 3.44141175e-20 syst_JES_EtaIntercalibration_Stat145: 0.0 - syst_JES_EtaIntercalibration_Stat146: 2.2066327288427495e-14 - syst_JES_EtaIntercalibration_Stat147: 2.2043951300338035e-14 + syst_JES_EtaIntercalibration_Stat146: 2.20663273e-14 + syst_JES_EtaIntercalibration_Stat147: 2.20439513e-14 syst_JES_EtaIntercalibration_Stat148: 0.0 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 2.8430353268997557e-18 - syst_JES_EtaIntercalibration_Stat151: 4.6522875583606676e-07 - syst_JES_EtaIntercalibration_Stat152: 4.363926758092991e-07 - syst_JES_EtaIntercalibration_Stat153: 4.7276751157413517e-07 - syst_JES_EtaIntercalibration_Stat154: 6.839102905309662e-08 - syst_JES_EtaIntercalibration_Stat155: 2.3827587435575596e-07 - syst_JES_EtaIntercalibration_Stat156: 9.566492290803354e-07 - syst_JES_EtaIntercalibration_Stat157: 6.895226664149629e-07 - syst_JES_EtaIntercalibration_Stat158: 7.950152388476588e-08 - syst_JES_EtaIntercalibration_Stat159: 2.0932987896220413e-14 + syst_JES_EtaIntercalibration_Stat150: 2.84303533e-18 + syst_JES_EtaIntercalibration_Stat151: 4.65228756e-07 + syst_JES_EtaIntercalibration_Stat152: 4.36392676e-07 + syst_JES_EtaIntercalibration_Stat153: 4.72767512e-07 + syst_JES_EtaIntercalibration_Stat154: 6.83910291e-08 + syst_JES_EtaIntercalibration_Stat155: 2.38275874e-07 + syst_JES_EtaIntercalibration_Stat156: 9.56649229e-07 + syst_JES_EtaIntercalibration_Stat157: 6.89522666e-07 + syst_JES_EtaIntercalibration_Stat158: 7.95015239e-08 + syst_JES_EtaIntercalibration_Stat159: 2.09329879e-14 syst_JES_EtaIntercalibration_Stat16: 0.0 syst_JES_EtaIntercalibration_Stat160: 0.0 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 - syst_JES_EtaIntercalibration_Stat164: 2.2066327288427495e-14 + syst_JES_EtaIntercalibration_Stat164: 2.20663273e-14 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 - syst_JES_EtaIntercalibration_Stat168: 5.197018448110416e-17 - syst_JES_EtaIntercalibration_Stat169: 2.4145438492601454e-07 + syst_JES_EtaIntercalibration_Stat168: 5.19701845e-17 + syst_JES_EtaIntercalibration_Stat169: 2.41454385e-07 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 1.0172620557162249e-06 - syst_JES_EtaIntercalibration_Stat171: 1.529777326933564e-06 - syst_JES_EtaIntercalibration_Stat172: 2.2047197027059925e-07 - syst_JES_EtaIntercalibration_Stat173: 2.6707105360746225e-07 - syst_JES_EtaIntercalibration_Stat174: 7.688277229002606e-07 - syst_JES_EtaIntercalibration_Stat175: 1.150992710663278e-06 - syst_JES_EtaIntercalibration_Stat176: 7.447670422843629e-09 - syst_JES_EtaIntercalibration_Stat177: 1.7893316538585015e-13 + syst_JES_EtaIntercalibration_Stat170: 1.01726206e-06 + syst_JES_EtaIntercalibration_Stat171: 1.52977733e-06 + syst_JES_EtaIntercalibration_Stat172: 2.20471970e-07 + syst_JES_EtaIntercalibration_Stat173: 2.67071054e-07 + syst_JES_EtaIntercalibration_Stat174: 7.68827723e-07 + syst_JES_EtaIntercalibration_Stat175: 1.15099271e-06 + syst_JES_EtaIntercalibration_Stat176: 7.44767042e-09 + syst_JES_EtaIntercalibration_Stat177: 1.78933165e-13 syst_JES_EtaIntercalibration_Stat178: 0.0 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 @@ -20972,17 +20972,17 @@ bins: syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 syst_JES_EtaIntercalibration_Stat184: 0.0 - syst_JES_EtaIntercalibration_Stat185: 1.7373441786603964e-08 - syst_JES_EtaIntercalibration_Stat186: 6.218008362812003e-07 - syst_JES_EtaIntercalibration_Stat187: 6.7807862929014355e-06 - syst_JES_EtaIntercalibration_Stat188: 5.500785943844752e-06 - syst_JES_EtaIntercalibration_Stat189: 9.674099686792567e-07 + syst_JES_EtaIntercalibration_Stat185: 1.73734418e-08 + syst_JES_EtaIntercalibration_Stat186: 6.21800836e-07 + syst_JES_EtaIntercalibration_Stat187: 6.78078629e-06 + syst_JES_EtaIntercalibration_Stat188: 5.50078594e-06 + syst_JES_EtaIntercalibration_Stat189: 9.67409969e-07 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 3.449635777875688e-07 - syst_JES_EtaIntercalibration_Stat191: 4.742863375641344e-06 - syst_JES_EtaIntercalibration_Stat192: 7.0599505663991725e-06 - syst_JES_EtaIntercalibration_Stat193: 1.1093753952111972e-06 - syst_JES_EtaIntercalibration_Stat194: 1.8160552717359678e-13 + syst_JES_EtaIntercalibration_Stat190: 3.44963578e-07 + syst_JES_EtaIntercalibration_Stat191: 4.74286338e-06 + syst_JES_EtaIntercalibration_Stat192: 7.05995057e-06 + syst_JES_EtaIntercalibration_Stat193: 1.10937540e-06 + syst_JES_EtaIntercalibration_Stat194: 1.81605527e-13 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 syst_JES_EtaIntercalibration_Stat197: 0.0 @@ -20990,70 +20990,70 @@ bins: syst_JES_EtaIntercalibration_Stat199: 0.0 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 1.7355011224976963e-08 - syst_JES_EtaIntercalibration_Stat201: 1.4469335394205225e-06 - syst_JES_EtaIntercalibration_Stat202: 1.5485651423172357e-05 - syst_JES_EtaIntercalibration_Stat203: 1.0922371205466328e-05 - syst_JES_EtaIntercalibration_Stat204: 1.550288602164126e-06 - syst_JES_EtaIntercalibration_Stat205: 1.0722546656811524e-06 - syst_JES_EtaIntercalibration_Stat206: 1.1046612184285279e-05 - syst_JES_EtaIntercalibration_Stat207: 1.2043295427332172e-05 - syst_JES_EtaIntercalibration_Stat208: 1.6545666351041895e-06 - syst_JES_EtaIntercalibration_Stat209: 2.5911479932880256e-08 + syst_JES_EtaIntercalibration_Stat200: 1.73550112e-08 + syst_JES_EtaIntercalibration_Stat201: 1.44693354e-06 + syst_JES_EtaIntercalibration_Stat202: 1.54856514e-05 + syst_JES_EtaIntercalibration_Stat203: 1.09223712e-05 + syst_JES_EtaIntercalibration_Stat204: 1.55028860e-06 + syst_JES_EtaIntercalibration_Stat205: 1.07225467e-06 + syst_JES_EtaIntercalibration_Stat206: 1.10466122e-05 + syst_JES_EtaIntercalibration_Stat207: 1.20432954e-05 + syst_JES_EtaIntercalibration_Stat208: 1.65456664e-06 + syst_JES_EtaIntercalibration_Stat209: 2.59114799e-08 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 syst_JES_EtaIntercalibration_Stat211: 0.0 syst_JES_EtaIntercalibration_Stat212: 0.0 - syst_JES_EtaIntercalibration_Stat213: 1.7356116080271265e-08 - syst_JES_EtaIntercalibration_Stat214: 1.0126910819692253e-06 - syst_JES_EtaIntercalibration_Stat215: 1.7760456075225094e-05 - syst_JES_EtaIntercalibration_Stat216: 1.3011998155548591e-05 - syst_JES_EtaIntercalibration_Stat217: 1.4043722690227119e-06 - syst_JES_EtaIntercalibration_Stat218: 7.983450945549801e-07 - syst_JES_EtaIntercalibration_Stat219: 1.3859245677525165e-05 + syst_JES_EtaIntercalibration_Stat213: 1.73561161e-08 + syst_JES_EtaIntercalibration_Stat214: 1.01269108e-06 + syst_JES_EtaIntercalibration_Stat215: 1.77604561e-05 + syst_JES_EtaIntercalibration_Stat216: 1.30119982e-05 + syst_JES_EtaIntercalibration_Stat217: 1.40437227e-06 + syst_JES_EtaIntercalibration_Stat218: 7.98345095e-07 + syst_JES_EtaIntercalibration_Stat219: 1.38592457e-05 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 1.4389654990652138e-05 - syst_JES_EtaIntercalibration_Stat221: 1.9703993173973645e-06 - syst_JES_EtaIntercalibration_Stat222: 2.581694092393597e-08 + syst_JES_EtaIntercalibration_Stat220: 1.43896550e-05 + syst_JES_EtaIntercalibration_Stat221: 1.97039932e-06 + syst_JES_EtaIntercalibration_Stat222: 2.58169409e-08 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 - syst_JES_EtaIntercalibration_Stat225: 1.2188739188283584e-07 - syst_JES_EtaIntercalibration_Stat226: 3.603735978120484e-06 - syst_JES_EtaIntercalibration_Stat227: 4.199521490598661e-05 - syst_JES_EtaIntercalibration_Stat228: 3.555156536638014e-05 - syst_JES_EtaIntercalibration_Stat229: 2.7922268442947112e-06 + syst_JES_EtaIntercalibration_Stat225: 1.21887392e-07 + syst_JES_EtaIntercalibration_Stat226: 3.60373598e-06 + syst_JES_EtaIntercalibration_Stat227: 4.19952149e-05 + syst_JES_EtaIntercalibration_Stat228: 3.55515654e-05 + syst_JES_EtaIntercalibration_Stat229: 2.79222684e-06 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 3.5977844223910918e-06 - syst_JES_EtaIntercalibration_Stat231: 4.322087776757895e-05 - syst_JES_EtaIntercalibration_Stat232: 4.4505092686118514e-05 - syst_JES_EtaIntercalibration_Stat233: 4.00776879946935e-06 - syst_JES_EtaIntercalibration_Stat234: 9.740603164075622e-08 + syst_JES_EtaIntercalibration_Stat230: 3.59778442e-06 + syst_JES_EtaIntercalibration_Stat231: 4.32208778e-05 + syst_JES_EtaIntercalibration_Stat232: 4.45050927e-05 + syst_JES_EtaIntercalibration_Stat233: 4.00776880e-06 + syst_JES_EtaIntercalibration_Stat234: 9.74060316e-08 syst_JES_EtaIntercalibration_Stat235: 0.0 - syst_JES_EtaIntercalibration_Stat236: 1.735514909184015e-08 - syst_JES_EtaIntercalibration_Stat237: 1.301897795527744e-06 - syst_JES_EtaIntercalibration_Stat238: 1.0324100784087686e-05 - syst_JES_EtaIntercalibration_Stat239: 4.362017996294834e-06 + syst_JES_EtaIntercalibration_Stat236: 1.73551491e-08 + syst_JES_EtaIntercalibration_Stat237: 1.30189780e-06 + syst_JES_EtaIntercalibration_Stat238: 1.03241008e-05 + syst_JES_EtaIntercalibration_Stat239: 4.36201800e-06 syst_JES_EtaIntercalibration_Stat24: 0.0 - syst_JES_EtaIntercalibration_Stat240: 2.287354968079944e-07 - syst_JES_EtaIntercalibration_Stat241: 1.0471227982786929e-07 - syst_JES_EtaIntercalibration_Stat242: 3.7768772815647586e-06 - syst_JES_EtaIntercalibration_Stat243: 6.973776935778775e-06 - syst_JES_EtaIntercalibration_Stat244: 8.910865614518041e-07 - syst_JES_EtaIntercalibration_Stat245: 2.073264816659946e-09 + syst_JES_EtaIntercalibration_Stat240: 2.28735497e-07 + syst_JES_EtaIntercalibration_Stat241: 1.04712280e-07 + syst_JES_EtaIntercalibration_Stat242: 3.77687728e-06 + syst_JES_EtaIntercalibration_Stat243: 6.97377694e-06 + syst_JES_EtaIntercalibration_Stat244: 8.91086561e-07 + syst_JES_EtaIntercalibration_Stat245: 2.07326482e-09 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 syst_JES_EtaIntercalibration_Stat27: 0.0 - syst_JES_EtaIntercalibration_Stat28: 8.956434725938664e-22 - syst_JES_EtaIntercalibration_Stat29: 9.622920953639805e-20 + syst_JES_EtaIntercalibration_Stat28: 8.95643473e-22 + syst_JES_EtaIntercalibration_Stat29: 9.62292095e-20 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 1.2073369537954183e-18 - syst_JES_EtaIntercalibration_Stat31: 8.69440130198739e-19 - syst_JES_EtaIntercalibration_Stat32: 3.692134985343846e-21 - syst_JES_EtaIntercalibration_Stat33: 6.799206049789932e-20 - syst_JES_EtaIntercalibration_Stat34: 1.133194240943679e-07 - syst_JES_EtaIntercalibration_Stat35: 2.034305962687067e-14 - syst_JES_EtaIntercalibration_Stat36: 4.123354783425749e-19 - syst_JES_EtaIntercalibration_Stat37: 6.537625773168728e-22 + syst_JES_EtaIntercalibration_Stat30: 1.20733695e-18 + syst_JES_EtaIntercalibration_Stat31: 8.69440130e-19 + syst_JES_EtaIntercalibration_Stat32: 3.69213499e-21 + syst_JES_EtaIntercalibration_Stat33: 6.79920605e-20 + syst_JES_EtaIntercalibration_Stat34: 1.13319424e-07 + syst_JES_EtaIntercalibration_Stat35: 2.03430596e-14 + syst_JES_EtaIntercalibration_Stat36: 4.12335478e-19 + syst_JES_EtaIntercalibration_Stat37: 6.53762577e-22 syst_JES_EtaIntercalibration_Stat38: 0.0 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 @@ -21068,20 +21068,20 @@ bins: syst_JES_EtaIntercalibration_Stat48: 0.0 syst_JES_EtaIntercalibration_Stat49: 0.0 syst_JES_EtaIntercalibration_Stat5: 0.0 - syst_JES_EtaIntercalibration_Stat50: 9.073348155449562e-22 - syst_JES_EtaIntercalibration_Stat51: 1.6239105517238317e-19 - syst_JES_EtaIntercalibration_Stat52: 4.4516544887827936e-17 - syst_JES_EtaIntercalibration_Stat53: 6.914559520858866e-18 - syst_JES_EtaIntercalibration_Stat54: 5.674696005073751e-20 - syst_JES_EtaIntercalibration_Stat55: 2.1255903766248094e-17 - syst_JES_EtaIntercalibration_Stat56: 1.1340602662488778e-07 - syst_JES_EtaIntercalibration_Stat57: 2.5400525096117875e-09 - syst_JES_EtaIntercalibration_Stat58: 4.873156792059948e-19 - syst_JES_EtaIntercalibration_Stat59: 2.19005205588817e-21 + syst_JES_EtaIntercalibration_Stat50: 9.07334816e-22 + syst_JES_EtaIntercalibration_Stat51: 1.62391055e-19 + syst_JES_EtaIntercalibration_Stat52: 4.45165449e-17 + syst_JES_EtaIntercalibration_Stat53: 6.91455952e-18 + syst_JES_EtaIntercalibration_Stat54: 5.67469601e-20 + syst_JES_EtaIntercalibration_Stat55: 2.12559038e-17 + syst_JES_EtaIntercalibration_Stat56: 1.13406027e-07 + syst_JES_EtaIntercalibration_Stat57: 2.54005251e-09 + syst_JES_EtaIntercalibration_Stat58: 4.87315679e-19 + syst_JES_EtaIntercalibration_Stat59: 2.19005206e-21 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 3.441411749558602e-20 - syst_JES_EtaIntercalibration_Stat62: 3.441411749558602e-20 + syst_JES_EtaIntercalibration_Stat61: 3.44141175e-20 + syst_JES_EtaIntercalibration_Stat62: 3.44141175e-20 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 @@ -21089,223 +21089,223 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 8.956434725938664e-22 + syst_JES_EtaIntercalibration_Stat7: 8.95643473e-22 syst_JES_EtaIntercalibration_Stat70: 0.0 syst_JES_EtaIntercalibration_Stat71: 0.0 - syst_JES_EtaIntercalibration_Stat72: 3.857277148455889e-21 - syst_JES_EtaIntercalibration_Stat73: 1.006201226147136e-16 - syst_JES_EtaIntercalibration_Stat74: 1.375257784032673e-07 - syst_JES_EtaIntercalibration_Stat75: 3.4227923392277765e-08 - syst_JES_EtaIntercalibration_Stat76: 2.7311843639710596e-18 - syst_JES_EtaIntercalibration_Stat77: 1.8075809580762903e-17 - syst_JES_EtaIntercalibration_Stat78: 1.0923178278329837e-07 - syst_JES_EtaIntercalibration_Stat79: 1.5960848318215786e-07 - syst_JES_EtaIntercalibration_Stat8: 3.2254259796188165e-20 - syst_JES_EtaIntercalibration_Stat80: 4.171969322753943e-18 - syst_JES_EtaIntercalibration_Stat81: 4.850608286596641e-21 - syst_JES_EtaIntercalibration_Stat82: 3.441411749558602e-20 - syst_JES_EtaIntercalibration_Stat83: 3.441411749558602e-20 - syst_JES_EtaIntercalibration_Stat84: 3.441411749558602e-20 + syst_JES_EtaIntercalibration_Stat72: 3.85727715e-21 + syst_JES_EtaIntercalibration_Stat73: 1.00620123e-16 + syst_JES_EtaIntercalibration_Stat74: 1.37525778e-07 + syst_JES_EtaIntercalibration_Stat75: 3.42279234e-08 + syst_JES_EtaIntercalibration_Stat76: 2.73118436e-18 + syst_JES_EtaIntercalibration_Stat77: 1.80758096e-17 + syst_JES_EtaIntercalibration_Stat78: 1.09231783e-07 + syst_JES_EtaIntercalibration_Stat79: 1.59608483e-07 + syst_JES_EtaIntercalibration_Stat8: 3.22542598e-20 + syst_JES_EtaIntercalibration_Stat80: 4.17196932e-18 + syst_JES_EtaIntercalibration_Stat81: 4.85060829e-21 + syst_JES_EtaIntercalibration_Stat82: 3.44141175e-20 + syst_JES_EtaIntercalibration_Stat83: 3.44141175e-20 + syst_JES_EtaIntercalibration_Stat84: 3.44141175e-20 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 syst_JES_EtaIntercalibration_Stat89: 0.0 - syst_JES_EtaIntercalibration_Stat9: 2.4971212926087512e-20 + syst_JES_EtaIntercalibration_Stat9: 2.49712129e-20 syst_JES_EtaIntercalibration_Stat90: 0.0 syst_JES_EtaIntercalibration_Stat91: 0.0 syst_JES_EtaIntercalibration_Stat92: 0.0 - syst_JES_EtaIntercalibration_Stat93: 2.2923692438174092e-21 - syst_JES_EtaIntercalibration_Stat94: 1.395021105243573e-16 - syst_JES_EtaIntercalibration_Stat95: 1.3752577262944842e-07 - syst_JES_EtaIntercalibration_Stat96: 7.305646831732287e-08 - syst_JES_EtaIntercalibration_Stat97: 4.8618058433878253e-17 - syst_JES_EtaIntercalibration_Stat98: 1.0388161182326734e-17 - syst_JES_EtaIntercalibration_Stat99: 8.590813505724189e-11 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0005230740936999269 - syst_JES_Flavour_Comp: 0.0013330968794502524 - syst_JES_Gjet_Generator: 0.00161138791108783 - syst_JES_Gjet_OOC: 0.0013448139899257443 - syst_JES_Gjet_Purity: 0.0002339566786821868 - syst_JES_Gjet_Stat1: 5.930370814713022e-06 - syst_JES_Gjet_Stat10: 2.5237299281024506e-05 - syst_JES_Gjet_Stat11: 2.6542081210786767e-05 - syst_JES_Gjet_Stat12: 8.457091757808946e-05 - syst_JES_Gjet_Stat13: 0.0002638024260692081 - syst_JES_Gjet_Stat14: 0.0007265278728307674 - syst_JES_Gjet_Stat15: 0.0009332377657917622 - syst_JES_Gjet_Stat2: 5.5714560933386165e-06 - syst_JES_Gjet_Stat3: 6.849961806462866e-06 - syst_JES_Gjet_Stat4: 5.011150865819149e-06 - syst_JES_Gjet_Stat5: 6.6651377142561726e-06 - syst_JES_Gjet_Stat6: 1.768500141362731e-05 - syst_JES_Gjet_Stat7: 1.838122955626201e-05 - syst_JES_Gjet_Stat8: 1.1113306922334145e-05 - syst_JES_Gjet_Stat9: 1.596338212127994e-05 - syst_JES_Gjet_Veto: 0.0013520575237392822 - syst_JES_Gjet_dPhi: 0.00013862914628605342 - syst_JES_LArESZee: 0.0024322440255862485 - syst_JES_LArEsmear: 0.00021270169251794873 - syst_JES_LAr_JVT: 0.0002667001499812102 - syst_JES_MJB_Alpha: 1.6518889187835843e-05 - syst_JES_MJB_Asym: 0.00028440900126402465 - syst_JES_MJB_Beta: 1.7674538522971398e-05 - syst_JES_MJB_Stat1: 1.2183858909229048e-06 - syst_JES_MJB_Stat10: 2.8285849377383028e-05 - syst_JES_MJB_Stat11: 3.066636431010367e-05 - syst_JES_MJB_Stat12: 4.292398280681791e-05 - syst_JES_MJB_Stat13: 4.322759622047009e-05 - syst_JES_MJB_Stat14: 2.7198883708711283e-05 - syst_JES_MJB_Stat15: 1.6883621501324886e-05 - syst_JES_MJB_Stat16: 3.539505191407409e-05 - syst_JES_MJB_Stat2: 1.857642772440385e-06 - syst_JES_MJB_Stat3: 4.756609506781064e-06 - syst_JES_MJB_Stat4: 3.0692547548224143e-06 - syst_JES_MJB_Stat5: 4.013865701228679e-06 - syst_JES_MJB_Stat6: 5.055574818949869e-06 - syst_JES_MJB_Stat7: 7.088932289139176e-06 - syst_JES_MJB_Stat8: 1.0876047754124657e-05 - syst_JES_MJB_Stat9: 1.708400796066309e-05 - syst_JES_MJB_Threshold: 0.00019505934353421781 - syst_JES_Pileup_MuOffset: 0.00032445173369855803 - syst_JES_Pileup_NPVOffset: 0.0003389649355021843 - syst_JES_Pileup_Pt_term: 0.00020720745039693917 - syst_JES_PunchThrough_MC15: 0.0003237617449607041 - syst_JES_SingleParticle_HighPt: 5.698099749039148e-10 - syst_JES_Zjet_MC: 0.0006269701009617605 - syst_JES_Zjet_MuScale: 5.0356287343290116e-05 - syst_JES_Zjet_MuSmearID: 1.0812709963279327e-05 - syst_JES_Zjet_MuSmearMS: 0.00016960053065954718 - syst_JES_Zjet_OOC: 0.00036875195931682856 - syst_JES_Zjet_Stat1: 2.8516936634217918e-05 - syst_JES_Zjet_Stat10: 3.106195743992963e-05 - syst_JES_Zjet_Stat11: 4.304588336879614e-05 - syst_JES_Zjet_Stat12: 0.0001145828105563832 - syst_JES_Zjet_Stat13: 0.00017830005608524075 - syst_JES_Zjet_Stat2: 9.690737123666085e-07 - syst_JES_Zjet_Stat3: 1.762655950547355e-05 - syst_JES_Zjet_Stat4: 1.5975133802256555e-05 - syst_JES_Zjet_Stat5: 1.5898186398139883e-05 - syst_JES_Zjet_Stat6: 1.540133172001694e-05 - syst_JES_Zjet_Stat7: 1.6056247226547055e-05 - syst_JES_Zjet_Stat8: 1.4639602556080542e-05 - syst_JES_Zjet_Stat9: 1.906175424770763e-05 - syst_JES_Zjet_Veto: 7.991169172905801e-05 - syst_JES_Zjet_dPhi: 7.531829259881028e-05 + syst_JES_EtaIntercalibration_Stat93: 2.29236924e-21 + syst_JES_EtaIntercalibration_Stat94: 1.39502111e-16 + syst_JES_EtaIntercalibration_Stat95: 1.37525773e-07 + syst_JES_EtaIntercalibration_Stat96: 7.30564683e-08 + syst_JES_EtaIntercalibration_Stat97: 4.86180584e-17 + syst_JES_EtaIntercalibration_Stat98: 1.03881612e-17 + syst_JES_EtaIntercalibration_Stat99: 8.59081351e-11 + syst_JES_EtaIntercalibration_TotalStat_MJB: 5.23074094e-04 + syst_JES_Flavour_Comp: 1.33309688e-03 + syst_JES_Gjet_Generator: 1.61138791e-03 + syst_JES_Gjet_OOC: 1.34481399e-03 + syst_JES_Gjet_Purity: 2.33956679e-04 + syst_JES_Gjet_Stat1: 5.93037081e-06 + syst_JES_Gjet_Stat10: 2.52372993e-05 + syst_JES_Gjet_Stat11: 2.65420812e-05 + syst_JES_Gjet_Stat12: 8.45709176e-05 + syst_JES_Gjet_Stat13: 2.63802426e-04 + syst_JES_Gjet_Stat14: 7.26527873e-04 + syst_JES_Gjet_Stat15: 9.33237766e-04 + syst_JES_Gjet_Stat2: 5.57145609e-06 + syst_JES_Gjet_Stat3: 6.84996181e-06 + syst_JES_Gjet_Stat4: 5.01115087e-06 + syst_JES_Gjet_Stat5: 6.66513771e-06 + syst_JES_Gjet_Stat6: 1.76850014e-05 + syst_JES_Gjet_Stat7: 1.83812296e-05 + syst_JES_Gjet_Stat8: 1.11133069e-05 + syst_JES_Gjet_Stat9: 1.59633821e-05 + syst_JES_Gjet_Veto: 1.35205752e-03 + syst_JES_Gjet_dPhi: 1.38629146e-04 + syst_JES_LArESZee: 2.43224403e-03 + syst_JES_LArEsmear: 2.12701693e-04 + syst_JES_LAr_JVT: 2.66700150e-04 + syst_JES_MJB_Alpha: 1.65188892e-05 + syst_JES_MJB_Asym: 2.84409001e-04 + syst_JES_MJB_Beta: 1.76745385e-05 + syst_JES_MJB_Stat1: 1.21838589e-06 + syst_JES_MJB_Stat10: 2.82858494e-05 + syst_JES_MJB_Stat11: 3.06663643e-05 + syst_JES_MJB_Stat12: 4.29239828e-05 + syst_JES_MJB_Stat13: 4.32275962e-05 + syst_JES_MJB_Stat14: 2.71988837e-05 + syst_JES_MJB_Stat15: 1.68836215e-05 + syst_JES_MJB_Stat16: 3.53950519e-05 + syst_JES_MJB_Stat2: 1.85764277e-06 + syst_JES_MJB_Stat3: 4.75660951e-06 + syst_JES_MJB_Stat4: 3.06925475e-06 + syst_JES_MJB_Stat5: 4.01386570e-06 + syst_JES_MJB_Stat6: 5.05557482e-06 + syst_JES_MJB_Stat7: 7.08893229e-06 + syst_JES_MJB_Stat8: 1.08760478e-05 + syst_JES_MJB_Stat9: 1.70840080e-05 + syst_JES_MJB_Threshold: 1.95059344e-04 + syst_JES_Pileup_MuOffset: 3.24451734e-04 + syst_JES_Pileup_NPVOffset: 3.38964936e-04 + syst_JES_Pileup_Pt_term: 2.07207450e-04 + syst_JES_PunchThrough_MC15: 3.23761745e-04 + syst_JES_SingleParticle_HighPt: 5.69809975e-10 + syst_JES_Zjet_MC: 6.26970101e-04 + syst_JES_Zjet_MuScale: 5.03562873e-05 + syst_JES_Zjet_MuSmearID: 1.08127100e-05 + syst_JES_Zjet_MuSmearMS: 1.69600531e-04 + syst_JES_Zjet_OOC: 3.68751959e-04 + syst_JES_Zjet_Stat1: 2.85169366e-05 + syst_JES_Zjet_Stat10: 3.10619574e-05 + syst_JES_Zjet_Stat11: 4.30458834e-05 + syst_JES_Zjet_Stat12: 1.14582811e-04 + syst_JES_Zjet_Stat13: 1.78300056e-04 + syst_JES_Zjet_Stat2: 9.69073712e-07 + syst_JES_Zjet_Stat3: 1.76265595e-05 + syst_JES_Zjet_Stat4: 1.59751338e-05 + syst_JES_Zjet_Stat5: 1.58981864e-05 + syst_JES_Zjet_Stat6: 1.54013317e-05 + syst_JES_Zjet_Stat7: 1.60562472e-05 + syst_JES_Zjet_Stat8: 1.46396026e-05 + syst_JES_Zjet_Stat9: 1.90617542e-05 + syst_JES_Zjet_Veto: 7.99116917e-05 + syst_JES_Zjet_dPhi: 7.53182926e-05 syst_PRW: 5.06e-05 - syst_Unfolding_bias: 5.259e-05 - syst_cleaning: 0.0004302414206001092 - syst_lumi: 0.0013754 - syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 6.825326439079673e-05 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0002961561539120874 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 1.2209023671039383e-05 + syst_Unfolding_bias: 5.25900000e-05 + syst_cleaning: 4.30241421e-04 + syst_lumi: 1.37540000e-03 + syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 6.82532644e-05 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 2.96156154e-04 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 1.22090237e-05 syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 4.728081429078818e-05 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.00012525742403147208 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0003276068680598745 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 4.72808143e-05 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.25257424e-04 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 3.27606868e-04 - stat: 0.000459 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.00012671116239305834 - syst_JER_NP1: 1.2538544602544586e-05 - syst_JER_NP2: 6.314591356532898e-05 - syst_JER_NP3: 1.0435043028181532e-05 - syst_JER_NP4: 2.2981324483153707e-05 - syst_JER_NP5: 3.234972642851868e-05 - syst_JER_NP6: 2.4072613069627487e-05 - syst_JER_NP7: 8.48714810697227e-06 - syst_JER_NP8: 3.144335064842804e-05 - syst_JES_EtaIntercalibration_Modelling: 0.000921410717324256 - syst_JES_EtaIntercalibration_NonClosure: 7.00268141500097e-16 + syst_JER_NP0: 1.26711162e-04 + syst_JER_NP1: 1.25385446e-05 + syst_JER_NP2: 6.31459136e-05 + syst_JER_NP3: 1.04350430e-05 + syst_JER_NP4: 2.29813245e-05 + syst_JER_NP5: 3.23497264e-05 + syst_JER_NP6: 2.40726131e-05 + syst_JER_NP7: 8.48714811e-06 + syst_JER_NP8: 3.14433506e-05 + syst_JES_EtaIntercalibration_Modelling: 9.21410717e-04 + syst_JES_EtaIntercalibration_NonClosure: 7.00268142e-16 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 8.803148201831062e-08 - syst_JES_EtaIntercalibration_Stat101: 1.0648684764209146e-18 - syst_JES_EtaIntercalibration_Stat102: 4.879847498385579e-21 - syst_JES_EtaIntercalibration_Stat103: 1.1505147489276269e-20 - syst_JES_EtaIntercalibration_Stat104: 1.1505147489276269e-20 - syst_JES_EtaIntercalibration_Stat105: 1.1505147489276269e-20 + syst_JES_EtaIntercalibration_Stat100: 8.80314820e-08 + syst_JES_EtaIntercalibration_Stat101: 1.06486848e-18 + syst_JES_EtaIntercalibration_Stat102: 4.87984750e-21 + syst_JES_EtaIntercalibration_Stat103: 1.15051475e-20 + syst_JES_EtaIntercalibration_Stat104: 1.15051475e-20 + syst_JES_EtaIntercalibration_Stat105: 1.15051475e-20 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 1.51208035500763e-17 - syst_JES_EtaIntercalibration_Stat111: 1.51208035500763e-17 + syst_JES_EtaIntercalibration_Stat110: 1.51208036e-17 + syst_JES_EtaIntercalibration_Stat111: 1.51208036e-17 syst_JES_EtaIntercalibration_Stat112: 0.0 - syst_JES_EtaIntercalibration_Stat113: 1.2558156435958265e-19 - syst_JES_EtaIntercalibration_Stat114: 1.6939473242872824e-07 - syst_JES_EtaIntercalibration_Stat115: 1.280729823186764e-07 - syst_JES_EtaIntercalibration_Stat116: 7.58567114697177e-08 - syst_JES_EtaIntercalibration_Stat117: 1.1988615964739215e-14 - syst_JES_EtaIntercalibration_Stat118: 6.83294041194826e-08 - syst_JES_EtaIntercalibration_Stat119: 1.0414224539061946e-07 - syst_JES_EtaIntercalibration_Stat12: 4.708301398508808e-18 - syst_JES_EtaIntercalibration_Stat120: 1.4656715892381893e-07 - syst_JES_EtaIntercalibration_Stat121: 4.980813591440157e-14 - syst_JES_EtaIntercalibration_Stat122: 1.121225033913799e-19 - syst_JES_EtaIntercalibration_Stat123: 1.1505147489276269e-20 - syst_JES_EtaIntercalibration_Stat124: 1.1505147489276269e-20 - syst_JES_EtaIntercalibration_Stat125: 1.1505147489276269e-20 + syst_JES_EtaIntercalibration_Stat113: 1.25581564e-19 + syst_JES_EtaIntercalibration_Stat114: 1.69394732e-07 + syst_JES_EtaIntercalibration_Stat115: 1.28072982e-07 + syst_JES_EtaIntercalibration_Stat116: 7.58567115e-08 + syst_JES_EtaIntercalibration_Stat117: 1.19886160e-14 + syst_JES_EtaIntercalibration_Stat118: 6.83294041e-08 + syst_JES_EtaIntercalibration_Stat119: 1.04142245e-07 + syst_JES_EtaIntercalibration_Stat12: 4.70830140e-18 + syst_JES_EtaIntercalibration_Stat120: 1.46567159e-07 + syst_JES_EtaIntercalibration_Stat121: 4.98081359e-14 + syst_JES_EtaIntercalibration_Stat122: 1.12122503e-19 + syst_JES_EtaIntercalibration_Stat123: 1.15051475e-20 + syst_JES_EtaIntercalibration_Stat124: 1.15051475e-20 + syst_JES_EtaIntercalibration_Stat125: 1.15051475e-20 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 4.124012972821497e-15 - syst_JES_EtaIntercalibration_Stat129: 4.118997375417955e-15 - syst_JES_EtaIntercalibration_Stat13: 6.642438706071795e-18 - syst_JES_EtaIntercalibration_Stat130: 1.51208035500763e-17 - syst_JES_EtaIntercalibration_Stat131: 5.559883092296096e-22 - syst_JES_EtaIntercalibration_Stat132: 8.410016112992889e-16 - syst_JES_EtaIntercalibration_Stat133: 1.7718879363923989e-07 - syst_JES_EtaIntercalibration_Stat134: 2.994311106080996e-07 - syst_JES_EtaIntercalibration_Stat135: 2.3950805968068696e-07 - syst_JES_EtaIntercalibration_Stat136: 3.3480546512604515e-07 - syst_JES_EtaIntercalibration_Stat137: 7.04934300130161e-08 - syst_JES_EtaIntercalibration_Stat138: 6.818516260888434e-07 - syst_JES_EtaIntercalibration_Stat139: 3.079974240152018e-07 - syst_JES_EtaIntercalibration_Stat14: 1.3683201379794129e-21 - syst_JES_EtaIntercalibration_Stat140: 9.712300171518331e-09 - syst_JES_EtaIntercalibration_Stat141: 3.8719998297067384e-15 + syst_JES_EtaIntercalibration_Stat128: 4.12401297e-15 + syst_JES_EtaIntercalibration_Stat129: 4.11899738e-15 + syst_JES_EtaIntercalibration_Stat13: 6.64243871e-18 + syst_JES_EtaIntercalibration_Stat130: 1.51208036e-17 + syst_JES_EtaIntercalibration_Stat131: 5.55988309e-22 + syst_JES_EtaIntercalibration_Stat132: 8.41001611e-16 + syst_JES_EtaIntercalibration_Stat133: 1.77188794e-07 + syst_JES_EtaIntercalibration_Stat134: 2.99431111e-07 + syst_JES_EtaIntercalibration_Stat135: 2.39508060e-07 + syst_JES_EtaIntercalibration_Stat136: 3.34805465e-07 + syst_JES_EtaIntercalibration_Stat137: 7.04934300e-08 + syst_JES_EtaIntercalibration_Stat138: 6.81851626e-07 + syst_JES_EtaIntercalibration_Stat139: 3.07997424e-07 + syst_JES_EtaIntercalibration_Stat14: 1.36832014e-21 + syst_JES_EtaIntercalibration_Stat140: 9.71230017e-09 + syst_JES_EtaIntercalibration_Stat141: 3.87199983e-15 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 1.1505147489276269e-20 - syst_JES_EtaIntercalibration_Stat144: 1.1505147489276269e-20 + syst_JES_EtaIntercalibration_Stat143: 1.15051475e-20 + syst_JES_EtaIntercalibration_Stat144: 1.15051475e-20 syst_JES_EtaIntercalibration_Stat145: 0.0 - syst_JES_EtaIntercalibration_Stat146: 4.124012972821497e-15 - syst_JES_EtaIntercalibration_Stat147: 4.118997375417955e-15 + syst_JES_EtaIntercalibration_Stat146: 4.12401297e-15 + syst_JES_EtaIntercalibration_Stat147: 4.11899738e-15 syst_JES_EtaIntercalibration_Stat148: 0.0 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 6.813015592966157e-19 - syst_JES_EtaIntercalibration_Stat151: 1.771021788215136e-07 - syst_JES_EtaIntercalibration_Stat152: 2.8512331981091967e-07 - syst_JES_EtaIntercalibration_Stat153: 3.3347342847669286e-07 - syst_JES_EtaIntercalibration_Stat154: 4.474771145064667e-08 - syst_JES_EtaIntercalibration_Stat155: 1.5265679374007567e-07 - syst_JES_EtaIntercalibration_Stat156: 7.307252886687309e-07 - syst_JES_EtaIntercalibration_Stat157: 4.465718897053419e-07 - syst_JES_EtaIntercalibration_Stat158: 3.13957035277122e-08 - syst_JES_EtaIntercalibration_Stat159: 3.887000316938864e-15 + syst_JES_EtaIntercalibration_Stat150: 6.81301559e-19 + syst_JES_EtaIntercalibration_Stat151: 1.77102179e-07 + syst_JES_EtaIntercalibration_Stat152: 2.85123320e-07 + syst_JES_EtaIntercalibration_Stat153: 3.33473428e-07 + syst_JES_EtaIntercalibration_Stat154: 4.47477115e-08 + syst_JES_EtaIntercalibration_Stat155: 1.52656794e-07 + syst_JES_EtaIntercalibration_Stat156: 7.30725289e-07 + syst_JES_EtaIntercalibration_Stat157: 4.46571890e-07 + syst_JES_EtaIntercalibration_Stat158: 3.13957035e-08 + syst_JES_EtaIntercalibration_Stat159: 3.88700032e-15 syst_JES_EtaIntercalibration_Stat16: 0.0 syst_JES_EtaIntercalibration_Stat160: 0.0 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 - syst_JES_EtaIntercalibration_Stat164: 4.124012972821497e-15 + syst_JES_EtaIntercalibration_Stat164: 4.12401297e-15 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 - syst_JES_EtaIntercalibration_Stat168: 8.090409322154226e-18 - syst_JES_EtaIntercalibration_Stat169: 2.3629627737228529e-07 + syst_JES_EtaIntercalibration_Stat168: 8.09040932e-18 + syst_JES_EtaIntercalibration_Stat169: 2.36296277e-07 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 6.651014957696307e-07 - syst_JES_EtaIntercalibration_Stat171: 9.702945995933399e-07 - syst_JES_EtaIntercalibration_Stat172: 1.9011036452545138e-07 - syst_JES_EtaIntercalibration_Stat173: 1.499064068010437e-07 - syst_JES_EtaIntercalibration_Stat174: 4.973280707943199e-07 - syst_JES_EtaIntercalibration_Stat175: 9.17462504683434e-07 - syst_JES_EtaIntercalibration_Stat176: 4.977916380876654e-08 - syst_JES_EtaIntercalibration_Stat177: 3.262610563643782e-14 + syst_JES_EtaIntercalibration_Stat170: 6.65101496e-07 + syst_JES_EtaIntercalibration_Stat171: 9.70294600e-07 + syst_JES_EtaIntercalibration_Stat172: 1.90110365e-07 + syst_JES_EtaIntercalibration_Stat173: 1.49906407e-07 + syst_JES_EtaIntercalibration_Stat174: 4.97328071e-07 + syst_JES_EtaIntercalibration_Stat175: 9.17462505e-07 + syst_JES_EtaIntercalibration_Stat176: 4.97791638e-08 + syst_JES_EtaIntercalibration_Stat177: 3.26261056e-14 syst_JES_EtaIntercalibration_Stat178: 0.0 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 @@ -21314,17 +21314,17 @@ bins: syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 syst_JES_EtaIntercalibration_Stat184: 0.0 - syst_JES_EtaIntercalibration_Stat185: 2.7522115315057498e-08 - syst_JES_EtaIntercalibration_Stat186: 5.146228424778675e-07 - syst_JES_EtaIntercalibration_Stat187: 4.365896557409486e-06 - syst_JES_EtaIntercalibration_Stat188: 3.6684405406112287e-06 - syst_JES_EtaIntercalibration_Stat189: 5.357169353305904e-07 + syst_JES_EtaIntercalibration_Stat185: 2.75221153e-08 + syst_JES_EtaIntercalibration_Stat186: 5.14622842e-07 + syst_JES_EtaIntercalibration_Stat187: 4.36589656e-06 + syst_JES_EtaIntercalibration_Stat188: 3.66844054e-06 + syst_JES_EtaIntercalibration_Stat189: 5.35716935e-07 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 2.771925458954479e-07 - syst_JES_EtaIntercalibration_Stat191: 3.810485106912242e-06 - syst_JES_EtaIntercalibration_Stat192: 5.092467771130221e-06 - syst_JES_EtaIntercalibration_Stat193: 6.450567726952411e-07 - syst_JES_EtaIntercalibration_Stat194: 3.256255518229489e-14 + syst_JES_EtaIntercalibration_Stat190: 2.77192546e-07 + syst_JES_EtaIntercalibration_Stat191: 3.81048511e-06 + syst_JES_EtaIntercalibration_Stat192: 5.09246777e-06 + syst_JES_EtaIntercalibration_Stat193: 6.45056773e-07 + syst_JES_EtaIntercalibration_Stat194: 3.25625552e-14 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 syst_JES_EtaIntercalibration_Stat197: 0.0 @@ -21332,70 +21332,70 @@ bins: syst_JES_EtaIntercalibration_Stat199: 0.0 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 2.7530972181516664e-08 - syst_JES_EtaIntercalibration_Stat201: 8.957138438139715e-07 - syst_JES_EtaIntercalibration_Stat202: 1.0087861059213692e-05 - syst_JES_EtaIntercalibration_Stat203: 7.714631212831889e-06 - syst_JES_EtaIntercalibration_Stat204: 9.653186973740847e-07 - syst_JES_EtaIntercalibration_Stat205: 5.69942496983687e-07 - syst_JES_EtaIntercalibration_Stat206: 8.063338685060922e-06 - syst_JES_EtaIntercalibration_Stat207: 8.243670587183842e-06 - syst_JES_EtaIntercalibration_Stat208: 1.2578590809387195e-06 - syst_JES_EtaIntercalibration_Stat209: 9.658781298400066e-09 + syst_JES_EtaIntercalibration_Stat200: 2.75309722e-08 + syst_JES_EtaIntercalibration_Stat201: 8.95713844e-07 + syst_JES_EtaIntercalibration_Stat202: 1.00878611e-05 + syst_JES_EtaIntercalibration_Stat203: 7.71463121e-06 + syst_JES_EtaIntercalibration_Stat204: 9.65318697e-07 + syst_JES_EtaIntercalibration_Stat205: 5.69942497e-07 + syst_JES_EtaIntercalibration_Stat206: 8.06333869e-06 + syst_JES_EtaIntercalibration_Stat207: 8.24367059e-06 + syst_JES_EtaIntercalibration_Stat208: 1.25785908e-06 + syst_JES_EtaIntercalibration_Stat209: 9.65878130e-09 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 syst_JES_EtaIntercalibration_Stat211: 0.0 syst_JES_EtaIntercalibration_Stat212: 0.0 - syst_JES_EtaIntercalibration_Stat213: 2.7530776348477985e-08 - syst_JES_EtaIntercalibration_Stat214: 6.711866804399504e-07 - syst_JES_EtaIntercalibration_Stat215: 1.1519051045984648e-05 - syst_JES_EtaIntercalibration_Stat216: 8.850350614523698e-06 - syst_JES_EtaIntercalibration_Stat217: 9.30513131288323e-07 - syst_JES_EtaIntercalibration_Stat218: 5.209119983260128e-07 - syst_JES_EtaIntercalibration_Stat219: 9.713747101402219e-06 + syst_JES_EtaIntercalibration_Stat213: 2.75307763e-08 + syst_JES_EtaIntercalibration_Stat214: 6.71186680e-07 + syst_JES_EtaIntercalibration_Stat215: 1.15190510e-05 + syst_JES_EtaIntercalibration_Stat216: 8.85035061e-06 + syst_JES_EtaIntercalibration_Stat217: 9.30513131e-07 + syst_JES_EtaIntercalibration_Stat218: 5.20911998e-07 + syst_JES_EtaIntercalibration_Stat219: 9.71374710e-06 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 9.598150902647864e-06 - syst_JES_EtaIntercalibration_Stat221: 1.184110504767186e-06 - syst_JES_EtaIntercalibration_Stat222: 9.637932060079072e-09 + syst_JES_EtaIntercalibration_Stat220: 9.59815090e-06 + syst_JES_EtaIntercalibration_Stat221: 1.18411050e-06 + syst_JES_EtaIntercalibration_Stat222: 9.63793206e-09 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 - syst_JES_EtaIntercalibration_Stat225: 5.1283440797200806e-08 - syst_JES_EtaIntercalibration_Stat226: 2.360183467444851e-06 - syst_JES_EtaIntercalibration_Stat227: 2.7998108418248543e-05 - syst_JES_EtaIntercalibration_Stat228: 2.3196747077984876e-05 - syst_JES_EtaIntercalibration_Stat229: 1.7926550142177384e-06 + syst_JES_EtaIntercalibration_Stat225: 5.12834408e-08 + syst_JES_EtaIntercalibration_Stat226: 2.36018347e-06 + syst_JES_EtaIntercalibration_Stat227: 2.79981084e-05 + syst_JES_EtaIntercalibration_Stat228: 2.31967471e-05 + syst_JES_EtaIntercalibration_Stat229: 1.79265501e-06 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 2.58119056009044e-06 - syst_JES_EtaIntercalibration_Stat231: 2.9295144222208567e-05 - syst_JES_EtaIntercalibration_Stat232: 3.0201751604832457e-05 - syst_JES_EtaIntercalibration_Stat233: 2.8378659235418433e-06 - syst_JES_EtaIntercalibration_Stat234: 8.47801632164034e-08 + syst_JES_EtaIntercalibration_Stat230: 2.58119056e-06 + syst_JES_EtaIntercalibration_Stat231: 2.92951442e-05 + syst_JES_EtaIntercalibration_Stat232: 3.02017516e-05 + syst_JES_EtaIntercalibration_Stat233: 2.83786592e-06 + syst_JES_EtaIntercalibration_Stat234: 8.47801632e-08 syst_JES_EtaIntercalibration_Stat235: 0.0 - syst_JES_EtaIntercalibration_Stat236: 2.7530947586307305e-08 - syst_JES_EtaIntercalibration_Stat237: 8.533369850182282e-07 - syst_JES_EtaIntercalibration_Stat238: 6.596467747969363e-06 - syst_JES_EtaIntercalibration_Stat239: 2.837961944776568e-06 + syst_JES_EtaIntercalibration_Stat236: 2.75309476e-08 + syst_JES_EtaIntercalibration_Stat237: 8.53336985e-07 + syst_JES_EtaIntercalibration_Stat238: 6.59646775e-06 + syst_JES_EtaIntercalibration_Stat239: 2.83796194e-06 syst_JES_EtaIntercalibration_Stat24: 0.0 - syst_JES_EtaIntercalibration_Stat240: 2.301093381416756e-07 - syst_JES_EtaIntercalibration_Stat241: 6.724294871583191e-08 - syst_JES_EtaIntercalibration_Stat242: 2.639870593419306e-06 - syst_JES_EtaIntercalibration_Stat243: 5.129356570760118e-06 - syst_JES_EtaIntercalibration_Stat244: 5.672527016242408e-07 - syst_JES_EtaIntercalibration_Stat245: 4.732828831681957e-10 + syst_JES_EtaIntercalibration_Stat240: 2.30109338e-07 + syst_JES_EtaIntercalibration_Stat241: 6.72429487e-08 + syst_JES_EtaIntercalibration_Stat242: 2.63987059e-06 + syst_JES_EtaIntercalibration_Stat243: 5.12935657e-06 + syst_JES_EtaIntercalibration_Stat244: 5.67252702e-07 + syst_JES_EtaIntercalibration_Stat245: 4.73282883e-10 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 syst_JES_EtaIntercalibration_Stat27: 0.0 - syst_JES_EtaIntercalibration_Stat28: 3.1220215806429013e-22 - syst_JES_EtaIntercalibration_Stat29: 2.694478071909289e-20 + syst_JES_EtaIntercalibration_Stat28: 3.12202158e-22 + syst_JES_EtaIntercalibration_Stat29: 2.69447807e-20 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 2.914128632627599e-19 - syst_JES_EtaIntercalibration_Stat31: 2.215781126375076e-19 - syst_JES_EtaIntercalibration_Stat32: 1.2301945730249341e-21 - syst_JES_EtaIntercalibration_Stat33: 2.1776166604799843e-20 - syst_JES_EtaIntercalibration_Stat34: 7.409713354986868e-08 - syst_JES_EtaIntercalibration_Stat35: 3.7681080533587204e-15 - syst_JES_EtaIntercalibration_Stat36: 1.0540222308850986e-19 - syst_JES_EtaIntercalibration_Stat37: 2.2785128373568583e-22 + syst_JES_EtaIntercalibration_Stat30: 2.91412863e-19 + syst_JES_EtaIntercalibration_Stat31: 2.21578113e-19 + syst_JES_EtaIntercalibration_Stat32: 1.23019457e-21 + syst_JES_EtaIntercalibration_Stat33: 2.17761666e-20 + syst_JES_EtaIntercalibration_Stat34: 7.40971335e-08 + syst_JES_EtaIntercalibration_Stat35: 3.76810805e-15 + syst_JES_EtaIntercalibration_Stat36: 1.05402223e-19 + syst_JES_EtaIntercalibration_Stat37: 2.27851284e-22 syst_JES_EtaIntercalibration_Stat38: 0.0 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 @@ -21410,20 +21410,20 @@ bins: syst_JES_EtaIntercalibration_Stat48: 0.0 syst_JES_EtaIntercalibration_Stat49: 0.0 syst_JES_EtaIntercalibration_Stat5: 0.0 - syst_JES_EtaIntercalibration_Stat50: 3.16272477462077e-22 - syst_JES_EtaIntercalibration_Stat51: 4.228282661731592e-20 - syst_JES_EtaIntercalibration_Stat52: 7.51445027929522e-18 - syst_JES_EtaIntercalibration_Stat53: 1.567363253205842e-18 - syst_JES_EtaIntercalibration_Stat54: 1.4662484202890042e-20 - syst_JES_EtaIntercalibration_Stat55: 4.7164095045993416e-18 - syst_JES_EtaIntercalibration_Stat56: 7.41577553258862e-08 - syst_JES_EtaIntercalibration_Stat57: 5.26456843040581e-10 - syst_JES_EtaIntercalibration_Stat58: 1.190232106565774e-19 - syst_JES_EtaIntercalibration_Stat59: 7.4921947385262215e-22 + syst_JES_EtaIntercalibration_Stat50: 3.16272477e-22 + syst_JES_EtaIntercalibration_Stat51: 4.22828266e-20 + syst_JES_EtaIntercalibration_Stat52: 7.51445028e-18 + syst_JES_EtaIntercalibration_Stat53: 1.56736325e-18 + syst_JES_EtaIntercalibration_Stat54: 1.46624842e-20 + syst_JES_EtaIntercalibration_Stat55: 4.71640950e-18 + syst_JES_EtaIntercalibration_Stat56: 7.41577553e-08 + syst_JES_EtaIntercalibration_Stat57: 5.26456843e-10 + syst_JES_EtaIntercalibration_Stat58: 1.19023211e-19 + syst_JES_EtaIntercalibration_Stat59: 7.49219474e-22 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 1.1505147489276269e-20 - syst_JES_EtaIntercalibration_Stat62: 1.1505147489276269e-20 + syst_JES_EtaIntercalibration_Stat61: 1.15051475e-20 + syst_JES_EtaIntercalibration_Stat62: 1.15051475e-20 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 @@ -21431,223 +21431,223 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 3.1220215806429013e-22 + syst_JES_EtaIntercalibration_Stat7: 3.12202158e-22 syst_JES_EtaIntercalibration_Stat70: 0.0 syst_JES_EtaIntercalibration_Stat71: 0.0 - syst_JES_EtaIntercalibration_Stat72: 6.540223849380081e-22 - syst_JES_EtaIntercalibration_Stat73: 2.1140654532617955e-17 - syst_JES_EtaIntercalibration_Stat74: 2.440476305499641e-08 - syst_JES_EtaIntercalibration_Stat75: 3.8754637076187906e-08 - syst_JES_EtaIntercalibration_Stat76: 5.646413640533254e-19 - syst_JES_EtaIntercalibration_Stat77: 3.9865498074776384e-18 - syst_JES_EtaIntercalibration_Stat78: 7.142977504104198e-08 - syst_JES_EtaIntercalibration_Stat79: 1.0465917029162632e-07 - syst_JES_EtaIntercalibration_Stat8: 9.194305520266336e-21 - syst_JES_EtaIntercalibration_Stat80: 1.007658144747017e-18 - syst_JES_EtaIntercalibration_Stat81: 1.6160034034617624e-21 - syst_JES_EtaIntercalibration_Stat82: 1.1505147489276269e-20 - syst_JES_EtaIntercalibration_Stat83: 1.1505147489276269e-20 - syst_JES_EtaIntercalibration_Stat84: 1.1505147489276269e-20 + syst_JES_EtaIntercalibration_Stat72: 6.54022385e-22 + syst_JES_EtaIntercalibration_Stat73: 2.11406545e-17 + syst_JES_EtaIntercalibration_Stat74: 2.44047631e-08 + syst_JES_EtaIntercalibration_Stat75: 3.87546371e-08 + syst_JES_EtaIntercalibration_Stat76: 5.64641364e-19 + syst_JES_EtaIntercalibration_Stat77: 3.98654981e-18 + syst_JES_EtaIntercalibration_Stat78: 7.14297750e-08 + syst_JES_EtaIntercalibration_Stat79: 1.04659170e-07 + syst_JES_EtaIntercalibration_Stat8: 9.19430552e-21 + syst_JES_EtaIntercalibration_Stat80: 1.00765814e-18 + syst_JES_EtaIntercalibration_Stat81: 1.61600340e-21 + syst_JES_EtaIntercalibration_Stat82: 1.15051475e-20 + syst_JES_EtaIntercalibration_Stat83: 1.15051475e-20 + syst_JES_EtaIntercalibration_Stat84: 1.15051475e-20 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 syst_JES_EtaIntercalibration_Stat89: 0.0 - syst_JES_EtaIntercalibration_Stat9: 7.354978093101297e-21 + syst_JES_EtaIntercalibration_Stat9: 7.35497809e-21 syst_JES_EtaIntercalibration_Stat90: 0.0 syst_JES_EtaIntercalibration_Stat91: 0.0 syst_JES_EtaIntercalibration_Stat92: 0.0 - syst_JES_EtaIntercalibration_Stat93: 1.8013328398716323e-22 - syst_JES_EtaIntercalibration_Stat94: 2.988299715139029e-17 - syst_JES_EtaIntercalibration_Stat95: 2.4404762160054584e-08 - syst_JES_EtaIntercalibration_Stat96: 5.228315790003508e-08 - syst_JES_EtaIntercalibration_Stat97: 1.0461361272798106e-17 - syst_JES_EtaIntercalibration_Stat98: 2.3688150518772038e-18 - syst_JES_EtaIntercalibration_Stat99: 1.984064499253239e-09 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.00036597377979849863 - syst_JES_Flavour_Comp: 0.000942945183984732 - syst_JES_Gjet_Generator: 0.0010905954703738687 - syst_JES_Gjet_OOC: 0.0009113075551096896 - syst_JES_Gjet_Purity: 0.0001582507740897339 - syst_JES_Gjet_Stat1: 4.5697583087073655e-06 - syst_JES_Gjet_Stat10: 1.72264099568076e-05 - syst_JES_Gjet_Stat11: 1.7927782908101047e-05 - syst_JES_Gjet_Stat12: 5.4622311375480995e-05 - syst_JES_Gjet_Stat13: 0.00017685318063297587 - syst_JES_Gjet_Stat14: 0.0004815522894764389 - syst_JES_Gjet_Stat15: 0.0006871163129339894 - syst_JES_Gjet_Stat2: 3.863552866210064e-06 - syst_JES_Gjet_Stat3: 5.252586049509327e-06 - syst_JES_Gjet_Stat4: 2.6476126510499984e-06 - syst_JES_Gjet_Stat5: 4.265194339065923e-06 - syst_JES_Gjet_Stat6: 1.4665383561298353e-05 - syst_JES_Gjet_Stat7: 1.1787945908851125e-05 - syst_JES_Gjet_Stat8: 7.682082058270401e-06 - syst_JES_Gjet_Stat9: 1.0992646542120784e-05 - syst_JES_Gjet_Veto: 0.0009179758970147311 - syst_JES_Gjet_dPhi: 9.676718180767692e-05 - syst_JES_LArESZee: 0.0016350690352397968 - syst_JES_LArEsmear: 0.00014740434186278235 - syst_JES_LAr_JVT: 0.00018536134305728363 - syst_JES_MJB_Alpha: 1.2984074861152026e-05 - syst_JES_MJB_Asym: 0.0002011689029149386 - syst_JES_MJB_Beta: 1.1952230869172499e-05 - syst_JES_MJB_Stat1: 7.92524169158266e-07 - syst_JES_MJB_Stat10: 1.8825785508179996e-05 - syst_JES_MJB_Stat11: 2.13040348291116e-05 - syst_JES_MJB_Stat12: 3.20324003939761e-05 - syst_JES_MJB_Stat13: 3.7715000662866227e-05 - syst_JES_MJB_Stat14: 2.812336528582595e-05 - syst_JES_MJB_Stat15: 3.4448821097390255e-05 - syst_JES_MJB_Stat16: 2.9010716554404518e-05 - syst_JES_MJB_Stat2: 1.1766590751785327e-06 - syst_JES_MJB_Stat3: 2.346887460020186e-06 - syst_JES_MJB_Stat4: 1.5836239294731563e-06 - syst_JES_MJB_Stat5: 2.2365360426337867e-06 - syst_JES_MJB_Stat6: 3.0243685489701814e-06 - syst_JES_MJB_Stat7: 4.318716331272523e-06 - syst_JES_MJB_Stat8: 6.912906841553704e-06 - syst_JES_MJB_Stat9: 1.0758065474331341e-05 - syst_JES_MJB_Threshold: 0.00014510006891797124 - syst_JES_Pileup_MuOffset: 0.00022270363715036178 - syst_JES_Pileup_NPVOffset: 0.00023413348756638806 - syst_JES_Pileup_Pt_term: 0.000137981223632058 - syst_JES_PunchThrough_MC15: 0.00025637536445610374 - syst_JES_SingleParticle_HighPt: 2.786160261004381e-09 - syst_JES_Zjet_MC: 0.00042085433049928334 - syst_JES_Zjet_MuScale: 3.3434549122128145e-05 - syst_JES_Zjet_MuSmearID: 7.736524461927333e-06 - syst_JES_Zjet_MuSmearMS: 0.00011479552288743668 - syst_JES_Zjet_OOC: 0.0002547582530557155 - syst_JES_Zjet_Stat1: 2.239245129502351e-05 - syst_JES_Zjet_Stat10: 2.0973308632640682e-05 - syst_JES_Zjet_Stat11: 2.96802729097965e-05 - syst_JES_Zjet_Stat12: 7.550492831597153e-05 - syst_JES_Zjet_Stat13: 0.00011819081309475792 - syst_JES_Zjet_Stat2: 6.029708486320048e-07 - syst_JES_Zjet_Stat3: 1.4179853692827724e-05 - syst_JES_Zjet_Stat4: 1.2340357571804797e-05 - syst_JES_Zjet_Stat5: 1.2714058783488457e-05 - syst_JES_Zjet_Stat6: 1.1097654380543664e-05 - syst_JES_Zjet_Stat7: 1.2438162404471168e-05 - syst_JES_Zjet_Stat8: 1.0513341559656473e-05 - syst_JES_Zjet_Stat9: 1.3239916238405741e-05 - syst_JES_Zjet_Veto: 5.352634001125054e-05 - syst_JES_Zjet_dPhi: 5.115792289567668e-05 - syst_PRW: 3.309e-05 + syst_JES_EtaIntercalibration_Stat93: 1.80133284e-22 + syst_JES_EtaIntercalibration_Stat94: 2.98829972e-17 + syst_JES_EtaIntercalibration_Stat95: 2.44047622e-08 + syst_JES_EtaIntercalibration_Stat96: 5.22831579e-08 + syst_JES_EtaIntercalibration_Stat97: 1.04613613e-17 + syst_JES_EtaIntercalibration_Stat98: 2.36881505e-18 + syst_JES_EtaIntercalibration_Stat99: 1.98406450e-09 + syst_JES_EtaIntercalibration_TotalStat_MJB: 3.65973780e-04 + syst_JES_Flavour_Comp: 9.42945184e-04 + syst_JES_Gjet_Generator: 1.09059547e-03 + syst_JES_Gjet_OOC: 9.11307555e-04 + syst_JES_Gjet_Purity: 1.58250774e-04 + syst_JES_Gjet_Stat1: 4.56975831e-06 + syst_JES_Gjet_Stat10: 1.72264100e-05 + syst_JES_Gjet_Stat11: 1.79277829e-05 + syst_JES_Gjet_Stat12: 5.46223114e-05 + syst_JES_Gjet_Stat13: 1.76853181e-04 + syst_JES_Gjet_Stat14: 4.81552289e-04 + syst_JES_Gjet_Stat15: 6.87116313e-04 + syst_JES_Gjet_Stat2: 3.86355287e-06 + syst_JES_Gjet_Stat3: 5.25258605e-06 + syst_JES_Gjet_Stat4: 2.64761265e-06 + syst_JES_Gjet_Stat5: 4.26519434e-06 + syst_JES_Gjet_Stat6: 1.46653836e-05 + syst_JES_Gjet_Stat7: 1.17879459e-05 + syst_JES_Gjet_Stat8: 7.68208206e-06 + syst_JES_Gjet_Stat9: 1.09926465e-05 + syst_JES_Gjet_Veto: 9.17975897e-04 + syst_JES_Gjet_dPhi: 9.67671818e-05 + syst_JES_LArESZee: 1.63506904e-03 + syst_JES_LArEsmear: 1.47404342e-04 + syst_JES_LAr_JVT: 1.85361343e-04 + syst_JES_MJB_Alpha: 1.29840749e-05 + syst_JES_MJB_Asym: 2.01168903e-04 + syst_JES_MJB_Beta: 1.19522309e-05 + syst_JES_MJB_Stat1: 7.92524169e-07 + syst_JES_MJB_Stat10: 1.88257855e-05 + syst_JES_MJB_Stat11: 2.13040348e-05 + syst_JES_MJB_Stat12: 3.20324004e-05 + syst_JES_MJB_Stat13: 3.77150007e-05 + syst_JES_MJB_Stat14: 2.81233653e-05 + syst_JES_MJB_Stat15: 3.44488211e-05 + syst_JES_MJB_Stat16: 2.90107166e-05 + syst_JES_MJB_Stat2: 1.17665908e-06 + syst_JES_MJB_Stat3: 2.34688746e-06 + syst_JES_MJB_Stat4: 1.58362393e-06 + syst_JES_MJB_Stat5: 2.23653604e-06 + syst_JES_MJB_Stat6: 3.02436855e-06 + syst_JES_MJB_Stat7: 4.31871633e-06 + syst_JES_MJB_Stat8: 6.91290684e-06 + syst_JES_MJB_Stat9: 1.07580655e-05 + syst_JES_MJB_Threshold: 1.45100069e-04 + syst_JES_Pileup_MuOffset: 2.22703637e-04 + syst_JES_Pileup_NPVOffset: 2.34133488e-04 + syst_JES_Pileup_Pt_term: 1.37981224e-04 + syst_JES_PunchThrough_MC15: 2.56375364e-04 + syst_JES_SingleParticle_HighPt: 2.78616026e-09 + syst_JES_Zjet_MC: 4.20854330e-04 + syst_JES_Zjet_MuScale: 3.34345491e-05 + syst_JES_Zjet_MuSmearID: 7.73652446e-06 + syst_JES_Zjet_MuSmearMS: 1.14795523e-04 + syst_JES_Zjet_OOC: 2.54758253e-04 + syst_JES_Zjet_Stat1: 2.23924513e-05 + syst_JES_Zjet_Stat10: 2.09733086e-05 + syst_JES_Zjet_Stat11: 2.96802729e-05 + syst_JES_Zjet_Stat12: 7.55049283e-05 + syst_JES_Zjet_Stat13: 1.18190813e-04 + syst_JES_Zjet_Stat2: 6.02970849e-07 + syst_JES_Zjet_Stat3: 1.41798537e-05 + syst_JES_Zjet_Stat4: 1.23403576e-05 + syst_JES_Zjet_Stat5: 1.27140588e-05 + syst_JES_Zjet_Stat6: 1.10976544e-05 + syst_JES_Zjet_Stat7: 1.24381624e-05 + syst_JES_Zjet_Stat8: 1.05133416e-05 + syst_JES_Zjet_Stat9: 1.32399162e-05 + syst_JES_Zjet_Veto: 5.35263400e-05 + syst_JES_Zjet_dPhi: 5.11579229e-05 + syst_PRW: 3.30900000e-05 syst_Unfolding_bias: 3.44e-05 - syst_cleaning: 0.00028180466639145637 - syst_lumi: 0.0008995 - syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 4.3076775645352104e-05 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.00019218123607678245 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 7.823499847894162e-06 + syst_cleaning: 2.81804666e-04 + syst_lumi: 8.99500000e-04 + syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 4.30767756e-05 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.92181236e-04 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 7.82349985e-06 syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 3.0303864749401193e-05 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 8.17916976226805e-05 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.00022283774366116705 -- stat: 0.00033788 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 3.03038647e-05 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 8.17916976e-05 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 2.22837744e-04 +- stat: 3.37880000e-04 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 8.641450514815206e-05 - syst_JER_NP1: 8.364406075747399e-06 - syst_JER_NP2: 4.5712575950169344e-05 - syst_JER_NP3: 6.714486335528579e-06 - syst_JER_NP4: 1.7101177591031556e-05 - syst_JER_NP5: 2.286696744214239e-05 - syst_JER_NP6: 1.6967769446807083e-05 - syst_JER_NP7: 5.495280486088092e-06 - syst_JER_NP8: 2.041414215684803e-05 - syst_JES_EtaIntercalibration_Modelling: 0.0006231893191478814 - syst_JES_EtaIntercalibration_NonClosure: 1.4185496113989106e-16 + syst_JER_NP0: 8.64145051e-05 + syst_JER_NP1: 8.36440608e-06 + syst_JER_NP2: 4.57125760e-05 + syst_JER_NP3: 6.71448634e-06 + syst_JER_NP4: 1.71011776e-05 + syst_JER_NP5: 2.28669674e-05 + syst_JER_NP6: 1.69677694e-05 + syst_JER_NP7: 5.49528049e-06 + syst_JER_NP8: 2.04141422e-05 + syst_JES_EtaIntercalibration_Modelling: 6.23189319e-04 + syst_JES_EtaIntercalibration_NonClosure: 1.41854961e-16 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 5.686322795478008e-08 - syst_JES_EtaIntercalibration_Stat101: 2.751517887912052e-19 - syst_JES_EtaIntercalibration_Stat102: 1.5914210526680236e-21 - syst_JES_EtaIntercalibration_Stat103: 4.117084769591221e-21 - syst_JES_EtaIntercalibration_Stat104: 4.117084769591221e-21 - syst_JES_EtaIntercalibration_Stat105: 4.117084769591221e-21 + syst_JES_EtaIntercalibration_Stat100: 5.68632280e-08 + syst_JES_EtaIntercalibration_Stat101: 2.75151789e-19 + syst_JES_EtaIntercalibration_Stat102: 1.59142105e-21 + syst_JES_EtaIntercalibration_Stat103: 4.11708477e-21 + syst_JES_EtaIntercalibration_Stat104: 4.11708477e-21 + syst_JES_EtaIntercalibration_Stat105: 4.11708477e-21 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 3.6710816866422355e-18 - syst_JES_EtaIntercalibration_Stat111: 3.6710816866422355e-18 + syst_JES_EtaIntercalibration_Stat110: 3.67108169e-18 + syst_JES_EtaIntercalibration_Stat111: 3.67108169e-18 syst_JES_EtaIntercalibration_Stat112: 0.0 - syst_JES_EtaIntercalibration_Stat113: 3.616517829003474e-20 - syst_JES_EtaIntercalibration_Stat114: 3.114230378779394e-08 - syst_JES_EtaIntercalibration_Stat115: 1.4732464788690315e-07 - syst_JES_EtaIntercalibration_Stat116: 3.766755765907846e-08 - syst_JES_EtaIntercalibration_Stat117: 2.367434212391128e-15 - syst_JES_EtaIntercalibration_Stat118: 4.412399427385785e-08 - syst_JES_EtaIntercalibration_Stat119: 4.868469240942167e-08 - syst_JES_EtaIntercalibration_Stat12: 1.1268480552740905e-18 - syst_JES_EtaIntercalibration_Stat120: 1.2821636868980497e-07 - syst_JES_EtaIntercalibration_Stat121: 9.465691721554214e-15 - syst_JES_EtaIntercalibration_Stat122: 3.131165602455418e-20 - syst_JES_EtaIntercalibration_Stat123: 4.117084769591221e-21 - syst_JES_EtaIntercalibration_Stat124: 4.117084769591221e-21 - syst_JES_EtaIntercalibration_Stat125: 4.117084769591221e-21 + syst_JES_EtaIntercalibration_Stat113: 3.61651783e-20 + syst_JES_EtaIntercalibration_Stat114: 3.11423038e-08 + syst_JES_EtaIntercalibration_Stat115: 1.47324648e-07 + syst_JES_EtaIntercalibration_Stat116: 3.76675577e-08 + syst_JES_EtaIntercalibration_Stat117: 2.36743421e-15 + syst_JES_EtaIntercalibration_Stat118: 4.41239943e-08 + syst_JES_EtaIntercalibration_Stat119: 4.86846924e-08 + syst_JES_EtaIntercalibration_Stat12: 1.12684806e-18 + syst_JES_EtaIntercalibration_Stat120: 1.28216369e-07 + syst_JES_EtaIntercalibration_Stat121: 9.46569172e-15 + syst_JES_EtaIntercalibration_Stat122: 3.13116560e-20 + syst_JES_EtaIntercalibration_Stat123: 4.11708477e-21 + syst_JES_EtaIntercalibration_Stat124: 4.11708477e-21 + syst_JES_EtaIntercalibration_Stat125: 4.11708477e-21 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 8.263614402911114e-16 - syst_JES_EtaIntercalibration_Stat129: 8.251450054025353e-16 - syst_JES_EtaIntercalibration_Stat13: 1.627395116455653e-18 - syst_JES_EtaIntercalibration_Stat130: 3.6710816866422355e-18 - syst_JES_EtaIntercalibration_Stat131: 1.9329687012468671e-22 - syst_JES_EtaIntercalibration_Stat132: 1.7143973658165572e-16 - syst_JES_EtaIntercalibration_Stat133: 4.117084694997572e-08 - syst_JES_EtaIntercalibration_Stat134: 1.8527737874603043e-07 - syst_JES_EtaIntercalibration_Stat135: 1.5528945069874548e-07 - syst_JES_EtaIntercalibration_Stat136: 2.259460360428483e-07 - syst_JES_EtaIntercalibration_Stat137: 4.469076190892252e-08 - syst_JES_EtaIntercalibration_Stat138: 4.3218478903705065e-07 - syst_JES_EtaIntercalibration_Stat139: 1.1525519771359554e-07 - syst_JES_EtaIntercalibration_Stat14: 4.894775582189648e-22 - syst_JES_EtaIntercalibration_Stat140: 3.1937818739975025e-09 - syst_JES_EtaIntercalibration_Stat141: 7.696368638695712e-16 + syst_JES_EtaIntercalibration_Stat128: 8.26361440e-16 + syst_JES_EtaIntercalibration_Stat129: 8.25145005e-16 + syst_JES_EtaIntercalibration_Stat13: 1.62739512e-18 + syst_JES_EtaIntercalibration_Stat130: 3.67108169e-18 + syst_JES_EtaIntercalibration_Stat131: 1.93296870e-22 + syst_JES_EtaIntercalibration_Stat132: 1.71439737e-16 + syst_JES_EtaIntercalibration_Stat133: 4.11708469e-08 + syst_JES_EtaIntercalibration_Stat134: 1.85277379e-07 + syst_JES_EtaIntercalibration_Stat135: 1.55289451e-07 + syst_JES_EtaIntercalibration_Stat136: 2.25946036e-07 + syst_JES_EtaIntercalibration_Stat137: 4.46907619e-08 + syst_JES_EtaIntercalibration_Stat138: 4.32184789e-07 + syst_JES_EtaIntercalibration_Stat139: 1.15255198e-07 + syst_JES_EtaIntercalibration_Stat14: 4.89477558e-22 + syst_JES_EtaIntercalibration_Stat140: 3.19378187e-09 + syst_JES_EtaIntercalibration_Stat141: 7.69636864e-16 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 4.117084769591221e-21 - syst_JES_EtaIntercalibration_Stat144: 4.117084769591221e-21 + syst_JES_EtaIntercalibration_Stat143: 4.11708477e-21 + syst_JES_EtaIntercalibration_Stat144: 4.11708477e-21 syst_JES_EtaIntercalibration_Stat145: 0.0 - syst_JES_EtaIntercalibration_Stat146: 8.263614402911114e-16 - syst_JES_EtaIntercalibration_Stat147: 8.251450054025353e-16 + syst_JES_EtaIntercalibration_Stat146: 8.26361440e-16 + syst_JES_EtaIntercalibration_Stat147: 8.25145005e-16 syst_JES_EtaIntercalibration_Stat148: 0.0 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 1.7691546908905395e-19 - syst_JES_EtaIntercalibration_Stat151: 4.1153524111426535e-08 - syst_JES_EtaIntercalibration_Stat152: 1.8415340425851483e-07 - syst_JES_EtaIntercalibration_Stat153: 2.2178976548749943e-07 - syst_JES_EtaIntercalibration_Stat154: 2.8968582934174683e-08 - syst_JES_EtaIntercalibration_Stat155: 9.089791017949752e-08 - syst_JES_EtaIntercalibration_Stat156: 4.3898617290297426e-07 - syst_JES_EtaIntercalibration_Stat157: 2.8693903533677675e-07 - syst_JES_EtaIntercalibration_Stat158: 7.102398943314856e-08 - syst_JES_EtaIntercalibration_Stat159: 7.727405810053138e-16 + syst_JES_EtaIntercalibration_Stat150: 1.76915469e-19 + syst_JES_EtaIntercalibration_Stat151: 4.11535241e-08 + syst_JES_EtaIntercalibration_Stat152: 1.84153404e-07 + syst_JES_EtaIntercalibration_Stat153: 2.21789765e-07 + syst_JES_EtaIntercalibration_Stat154: 2.89685829e-08 + syst_JES_EtaIntercalibration_Stat155: 9.08979102e-08 + syst_JES_EtaIntercalibration_Stat156: 4.38986173e-07 + syst_JES_EtaIntercalibration_Stat157: 2.86939035e-07 + syst_JES_EtaIntercalibration_Stat158: 7.10239894e-08 + syst_JES_EtaIntercalibration_Stat159: 7.72740581e-16 syst_JES_EtaIntercalibration_Stat16: 0.0 syst_JES_EtaIntercalibration_Stat160: 0.0 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 - syst_JES_EtaIntercalibration_Stat164: 8.263614402911114e-16 + syst_JES_EtaIntercalibration_Stat164: 8.26361440e-16 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 - syst_JES_EtaIntercalibration_Stat168: 1.1702601281339122e-18 - syst_JES_EtaIntercalibration_Stat169: 1.7975666795699124e-07 + syst_JES_EtaIntercalibration_Stat168: 1.17026013e-18 + syst_JES_EtaIntercalibration_Stat169: 1.79756668e-07 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 4.3077910812851633e-07 - syst_JES_EtaIntercalibration_Stat171: 6.178762558150297e-07 - syst_JES_EtaIntercalibration_Stat172: 1.038027845243084e-07 - syst_JES_EtaIntercalibration_Stat173: 7.404297046310337e-08 - syst_JES_EtaIntercalibration_Stat174: 3.2445588925923353e-07 - syst_JES_EtaIntercalibration_Stat175: 7.355545119160103e-07 - syst_JES_EtaIntercalibration_Stat176: 3.4602914452969346e-08 - syst_JES_EtaIntercalibration_Stat177: 6.348325139751429e-15 + syst_JES_EtaIntercalibration_Stat170: 4.30779108e-07 + syst_JES_EtaIntercalibration_Stat171: 6.17876256e-07 + syst_JES_EtaIntercalibration_Stat172: 1.03802785e-07 + syst_JES_EtaIntercalibration_Stat173: 7.40429705e-08 + syst_JES_EtaIntercalibration_Stat174: 3.24455889e-07 + syst_JES_EtaIntercalibration_Stat175: 7.35554512e-07 + syst_JES_EtaIntercalibration_Stat176: 3.46029145e-08 + syst_JES_EtaIntercalibration_Stat177: 6.34832514e-15 syst_JES_EtaIntercalibration_Stat178: 0.0 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 @@ -21656,17 +21656,17 @@ bins: syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 syst_JES_EtaIntercalibration_Stat184: 0.0 - syst_JES_EtaIntercalibration_Stat185: 4.5232474978676396e-08 - syst_JES_EtaIntercalibration_Stat186: 4.2972599767177226e-07 - syst_JES_EtaIntercalibration_Stat187: 2.8000022767847884e-06 - syst_JES_EtaIntercalibration_Stat188: 2.4769537742961617e-06 - syst_JES_EtaIntercalibration_Stat189: 2.8169658766126364e-07 + syst_JES_EtaIntercalibration_Stat185: 4.52324750e-08 + syst_JES_EtaIntercalibration_Stat186: 4.29725998e-07 + syst_JES_EtaIntercalibration_Stat187: 2.80000228e-06 + syst_JES_EtaIntercalibration_Stat188: 2.47695377e-06 + syst_JES_EtaIntercalibration_Stat189: 2.81696588e-07 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 1.8189490557736905e-07 - syst_JES_EtaIntercalibration_Stat191: 2.8275527846531883e-06 - syst_JES_EtaIntercalibration_Stat192: 3.5618614164506736e-06 - syst_JES_EtaIntercalibration_Stat193: 3.3894027128684487e-07 - syst_JES_EtaIntercalibration_Stat194: 6.1903495862511675e-15 + syst_JES_EtaIntercalibration_Stat190: 1.81894906e-07 + syst_JES_EtaIntercalibration_Stat191: 2.82755278e-06 + syst_JES_EtaIntercalibration_Stat192: 3.56186142e-06 + syst_JES_EtaIntercalibration_Stat193: 3.38940271e-07 + syst_JES_EtaIntercalibration_Stat194: 6.19034959e-15 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 syst_JES_EtaIntercalibration_Stat197: 0.0 @@ -21674,70 +21674,70 @@ bins: syst_JES_EtaIntercalibration_Stat199: 0.0 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 4.5232511484446053e-08 - syst_JES_EtaIntercalibration_Stat201: 5.074491797214771e-07 - syst_JES_EtaIntercalibration_Stat202: 6.231449490287152e-06 - syst_JES_EtaIntercalibration_Stat203: 5.314710152021462e-06 - syst_JES_EtaIntercalibration_Stat204: 5.902255281458097e-07 - syst_JES_EtaIntercalibration_Stat205: 2.4190082653176283e-07 - syst_JES_EtaIntercalibration_Stat206: 5.56644859852312e-06 - syst_JES_EtaIntercalibration_Stat207: 5.581495229774903e-06 - syst_JES_EtaIntercalibration_Stat208: 9.54929718618077e-07 - syst_JES_EtaIntercalibration_Stat209: 3.1800452761435335e-09 + syst_JES_EtaIntercalibration_Stat200: 4.52325115e-08 + syst_JES_EtaIntercalibration_Stat201: 5.07449180e-07 + syst_JES_EtaIntercalibration_Stat202: 6.23144949e-06 + syst_JES_EtaIntercalibration_Stat203: 5.31471015e-06 + syst_JES_EtaIntercalibration_Stat204: 5.90225528e-07 + syst_JES_EtaIntercalibration_Stat205: 2.41900827e-07 + syst_JES_EtaIntercalibration_Stat206: 5.56644860e-06 + syst_JES_EtaIntercalibration_Stat207: 5.58149523e-06 + syst_JES_EtaIntercalibration_Stat208: 9.54929719e-07 + syst_JES_EtaIntercalibration_Stat209: 3.18004528e-09 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 syst_JES_EtaIntercalibration_Stat211: 0.0 syst_JES_EtaIntercalibration_Stat212: 0.0 - syst_JES_EtaIntercalibration_Stat213: 4.52324750941458e-08 - syst_JES_EtaIntercalibration_Stat214: 4.447283524804777e-07 - syst_JES_EtaIntercalibration_Stat215: 7.147188748032334e-06 - syst_JES_EtaIntercalibration_Stat216: 6.08311153933577e-06 - syst_JES_EtaIntercalibration_Stat217: 6.235505171996893e-07 - syst_JES_EtaIntercalibration_Stat218: 3.4321555908787115e-07 - syst_JES_EtaIntercalibration_Stat219: 6.510195446374863e-06 + syst_JES_EtaIntercalibration_Stat213: 4.52324751e-08 + syst_JES_EtaIntercalibration_Stat214: 4.44728352e-07 + syst_JES_EtaIntercalibration_Stat215: 7.14718875e-06 + syst_JES_EtaIntercalibration_Stat216: 6.08311154e-06 + syst_JES_EtaIntercalibration_Stat217: 6.23550517e-07 + syst_JES_EtaIntercalibration_Stat218: 3.43215559e-07 + syst_JES_EtaIntercalibration_Stat219: 6.51019545e-06 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 6.364430139454749e-06 - syst_JES_EtaIntercalibration_Stat221: 6.523188330870113e-07 - syst_JES_EtaIntercalibration_Stat222: 3.175890129660502e-09 + syst_JES_EtaIntercalibration_Stat220: 6.36443014e-06 + syst_JES_EtaIntercalibration_Stat221: 6.52318833e-07 + syst_JES_EtaIntercalibration_Stat222: 3.17589013e-09 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 - syst_JES_EtaIntercalibration_Stat225: 3.1651551115229724e-08 - syst_JES_EtaIntercalibration_Stat226: 1.4611776483371211e-06 - syst_JES_EtaIntercalibration_Stat227: 1.8161987776672462e-05 - syst_JES_EtaIntercalibration_Stat228: 1.5377594090103953e-05 - syst_JES_EtaIntercalibration_Stat229: 1.1835728315148163e-06 + syst_JES_EtaIntercalibration_Stat225: 3.16515511e-08 + syst_JES_EtaIntercalibration_Stat226: 1.46117765e-06 + syst_JES_EtaIntercalibration_Stat227: 1.81619878e-05 + syst_JES_EtaIntercalibration_Stat228: 1.53775941e-05 + syst_JES_EtaIntercalibration_Stat229: 1.18357283e-06 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 1.7751271165750357e-06 - syst_JES_EtaIntercalibration_Stat231: 1.943235960968199e-05 - syst_JES_EtaIntercalibration_Stat232: 1.981474451008642e-05 - syst_JES_EtaIntercalibration_Stat233: 1.876383955910943e-06 - syst_JES_EtaIntercalibration_Stat234: 1.3771560940939122e-07 + syst_JES_EtaIntercalibration_Stat230: 1.77512712e-06 + syst_JES_EtaIntercalibration_Stat231: 1.94323596e-05 + syst_JES_EtaIntercalibration_Stat232: 1.98147445e-05 + syst_JES_EtaIntercalibration_Stat233: 1.87638396e-06 + syst_JES_EtaIntercalibration_Stat234: 1.37715609e-07 syst_JES_EtaIntercalibration_Stat235: 0.0 - syst_JES_EtaIntercalibration_Stat236: 4.5232506839661226e-08 - syst_JES_EtaIntercalibration_Stat237: 4.903058127332369e-07 - syst_JES_EtaIntercalibration_Stat238: 4.1029280702932145e-06 - syst_JES_EtaIntercalibration_Stat239: 1.9746257240297464e-06 + syst_JES_EtaIntercalibration_Stat236: 4.52325068e-08 + syst_JES_EtaIntercalibration_Stat237: 4.90305813e-07 + syst_JES_EtaIntercalibration_Stat238: 4.10292807e-06 + syst_JES_EtaIntercalibration_Stat239: 1.97462572e-06 syst_JES_EtaIntercalibration_Stat24: 0.0 - syst_JES_EtaIntercalibration_Stat240: 1.618563891231977e-07 - syst_JES_EtaIntercalibration_Stat241: 5.801338293876681e-08 - syst_JES_EtaIntercalibration_Stat242: 1.857372606667817e-06 - syst_JES_EtaIntercalibration_Stat243: 3.707076037795826e-06 - syst_JES_EtaIntercalibration_Stat244: 3.167579201851155e-07 - syst_JES_EtaIntercalibration_Stat245: 1.0303970254227253e-10 + syst_JES_EtaIntercalibration_Stat240: 1.61856389e-07 + syst_JES_EtaIntercalibration_Stat241: 5.80133829e-08 + syst_JES_EtaIntercalibration_Stat242: 1.85737261e-06 + syst_JES_EtaIntercalibration_Stat243: 3.70707604e-06 + syst_JES_EtaIntercalibration_Stat244: 3.16757920e-07 + syst_JES_EtaIntercalibration_Stat245: 1.03039703e-10 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 syst_JES_EtaIntercalibration_Stat27: 0.0 - syst_JES_EtaIntercalibration_Stat28: 1.1645443604689345e-22 - syst_JES_EtaIntercalibration_Stat29: 8.160997288934729e-21 + syst_JES_EtaIntercalibration_Stat28: 1.16454436e-22 + syst_JES_EtaIntercalibration_Stat29: 8.16099729e-21 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 7.606731016014697e-20 - syst_JES_EtaIntercalibration_Stat31: 6.086774761727265e-20 - syst_JES_EtaIntercalibration_Stat32: 4.416290276634905e-22 - syst_JES_EtaIntercalibration_Stat33: 7.404655206017361e-21 - syst_JES_EtaIntercalibration_Stat34: 4.7856563813634993e-08 - syst_JES_EtaIntercalibration_Stat35: 7.471288255797468e-16 - syst_JES_EtaIntercalibration_Stat36: 2.9140537379224844e-20 - syst_JES_EtaIntercalibration_Stat37: 8.500039338144266e-23 + syst_JES_EtaIntercalibration_Stat30: 7.60673102e-20 + syst_JES_EtaIntercalibration_Stat31: 6.08677476e-20 + syst_JES_EtaIntercalibration_Stat32: 4.41629028e-22 + syst_JES_EtaIntercalibration_Stat33: 7.40465521e-21 + syst_JES_EtaIntercalibration_Stat34: 4.78565638e-08 + syst_JES_EtaIntercalibration_Stat35: 7.47128826e-16 + syst_JES_EtaIntercalibration_Stat36: 2.91405374e-20 + syst_JES_EtaIntercalibration_Stat37: 8.50003934e-23 syst_JES_EtaIntercalibration_Stat38: 0.0 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 @@ -21752,20 +21752,20 @@ bins: syst_JES_EtaIntercalibration_Stat48: 0.0 syst_JES_EtaIntercalibration_Stat49: 0.0 syst_JES_EtaIntercalibration_Stat5: 0.0 - syst_JES_EtaIntercalibration_Stat50: 1.179613202494784e-22 - syst_JES_EtaIntercalibration_Stat51: 1.1892297044726052e-20 - syst_JES_EtaIntercalibration_Stat52: 1.3041953381299903e-18 - syst_JES_EtaIntercalibration_Stat53: 3.829983081881694e-19 - syst_JES_EtaIntercalibration_Stat54: 4.077901022585026e-21 - syst_JES_EtaIntercalibration_Stat55: 1.1321516791821669e-18 - syst_JES_EtaIntercalibration_Stat56: 4.78912048292309e-08 - syst_JES_EtaIntercalibration_Stat57: 1.0676361180041853e-10 - syst_JES_EtaIntercalibration_Stat58: 3.1234586226649454e-20 - syst_JES_EtaIntercalibration_Stat59: 2.7471537429674375e-22 + syst_JES_EtaIntercalibration_Stat50: 1.17961320e-22 + syst_JES_EtaIntercalibration_Stat51: 1.18922970e-20 + syst_JES_EtaIntercalibration_Stat52: 1.30419534e-18 + syst_JES_EtaIntercalibration_Stat53: 3.82998308e-19 + syst_JES_EtaIntercalibration_Stat54: 4.07790102e-21 + syst_JES_EtaIntercalibration_Stat55: 1.13215168e-18 + syst_JES_EtaIntercalibration_Stat56: 4.78912048e-08 + syst_JES_EtaIntercalibration_Stat57: 1.06763612e-10 + syst_JES_EtaIntercalibration_Stat58: 3.12345862e-20 + syst_JES_EtaIntercalibration_Stat59: 2.74715374e-22 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 4.117084769591221e-21 - syst_JES_EtaIntercalibration_Stat62: 4.117084769591221e-21 + syst_JES_EtaIntercalibration_Stat61: 4.11708477e-21 + syst_JES_EtaIntercalibration_Stat62: 4.11708477e-21 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 @@ -21773,223 +21773,223 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 1.1645443604689345e-22 + syst_JES_EtaIntercalibration_Stat7: 1.16454436e-22 syst_JES_EtaIntercalibration_Stat70: 0.0 syst_JES_EtaIntercalibration_Stat71: 0.0 - syst_JES_EtaIntercalibration_Stat72: 4.707714094972209e-23 - syst_JES_EtaIntercalibration_Stat73: 4.801353716140896e-18 - syst_JES_EtaIntercalibration_Stat74: 2.0360226274092137e-08 - syst_JES_EtaIntercalibration_Stat75: 1.7623617019176925e-08 - syst_JES_EtaIntercalibration_Stat76: 1.2413184392008363e-19 - syst_JES_EtaIntercalibration_Stat77: 9.51473375980642e-19 - syst_JES_EtaIntercalibration_Stat78: 4.612451295232751e-08 - syst_JES_EtaIntercalibration_Stat79: 6.779246865899495e-08 - syst_JES_EtaIntercalibration_Stat8: 2.9301935409627805e-21 - syst_JES_EtaIntercalibration_Stat80: 2.6319745192535585e-19 - syst_JES_EtaIntercalibration_Stat81: 5.7807195702611285e-22 - syst_JES_EtaIntercalibration_Stat82: 4.117084769591221e-21 - syst_JES_EtaIntercalibration_Stat83: 4.117084769591221e-21 - syst_JES_EtaIntercalibration_Stat84: 4.117084769591221e-21 + syst_JES_EtaIntercalibration_Stat72: 4.70771409e-23 + syst_JES_EtaIntercalibration_Stat73: 4.80135372e-18 + syst_JES_EtaIntercalibration_Stat74: 2.03602263e-08 + syst_JES_EtaIntercalibration_Stat75: 1.76236170e-08 + syst_JES_EtaIntercalibration_Stat76: 1.24131844e-19 + syst_JES_EtaIntercalibration_Stat77: 9.51473376e-19 + syst_JES_EtaIntercalibration_Stat78: 4.61245130e-08 + syst_JES_EtaIntercalibration_Stat79: 6.77924687e-08 + syst_JES_EtaIntercalibration_Stat8: 2.93019354e-21 + syst_JES_EtaIntercalibration_Stat80: 2.63197452e-19 + syst_JES_EtaIntercalibration_Stat81: 5.78071957e-22 + syst_JES_EtaIntercalibration_Stat82: 4.11708477e-21 + syst_JES_EtaIntercalibration_Stat83: 4.11708477e-21 + syst_JES_EtaIntercalibration_Stat84: 4.11708477e-21 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 syst_JES_EtaIntercalibration_Stat89: 0.0 - syst_JES_EtaIntercalibration_Stat9: 2.339470185747192e-21 + syst_JES_EtaIntercalibration_Stat9: 2.33947019e-21 syst_JES_EtaIntercalibration_Stat90: 0.0 syst_JES_EtaIntercalibration_Stat91: 0.0 syst_JES_EtaIntercalibration_Stat92: 0.0 - syst_JES_EtaIntercalibration_Stat93: 1.0762963718233004e-22 - syst_JES_EtaIntercalibration_Stat94: 6.930993464684554e-18 - syst_JES_EtaIntercalibration_Stat95: 2.0351566155730035e-08 - syst_JES_EtaIntercalibration_Stat96: 3.145058981958844e-08 - syst_JES_EtaIntercalibration_Stat97: 2.435446573587686e-18 - syst_JES_EtaIntercalibration_Stat98: 5.842507573807671e-19 - syst_JES_EtaIntercalibration_Stat99: 1.0346405438448646e-08 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0002502291349943088 - syst_JES_Flavour_Comp: 0.0006482266791023029 - syst_JES_Gjet_Generator: 0.0007255694797881179 - syst_JES_Gjet_OOC: 0.0006061972183209024 - syst_JES_Gjet_Purity: 0.00010579062151249514 - syst_JES_Gjet_Stat1: 3.468281851291789e-06 - syst_JES_Gjet_Stat10: 1.159547251085526e-05 - syst_JES_Gjet_Stat11: 1.2054600563685219e-05 - syst_JES_Gjet_Stat12: 3.435622323539071e-05 - syst_JES_Gjet_Stat13: 0.00011717739233742999 - syst_JES_Gjet_Stat14: 0.00031480622611377933 - syst_JES_Gjet_Stat15: 0.000483519875496344 - syst_JES_Gjet_Stat2: 2.7445766066918226e-06 - syst_JES_Gjet_Stat3: 3.92482544197828e-06 - syst_JES_Gjet_Stat4: 1.5422720252925551e-06 - syst_JES_Gjet_Stat5: 2.848119906183727e-06 - syst_JES_Gjet_Stat6: 1.1421596473348196e-05 - syst_JES_Gjet_Stat7: 7.398332109333834e-06 - syst_JES_Gjet_Stat8: 5.058611271880851e-06 - syst_JES_Gjet_Stat9: 7.4764290105638005e-06 - syst_JES_Gjet_Veto: 0.00061210032470176 - syst_JES_Gjet_dPhi: 6.610129404936035e-05 - syst_JES_LArESZee: 0.0010842589208763743 - syst_JES_LArEsmear: 9.965681349009713e-05 - syst_JES_LAr_JVT: 0.00012563841241833643 - syst_JES_MJB_Alpha: 1.0073277222433621e-05 - syst_JES_MJB_Asym: 0.00013954472643206553 - syst_JES_MJB_Beta: 7.84590969869014e-06 - syst_JES_MJB_Stat1: 4.908691089027706e-07 - syst_JES_MJB_Stat10: 1.1731274270086777e-05 - syst_JES_MJB_Stat11: 1.4052793031991897e-05 - syst_JES_MJB_Stat12: 2.210929838325947e-05 - syst_JES_MJB_Stat13: 2.82251164745161e-05 - syst_JES_MJB_Stat14: 2.3073159731601566e-05 - syst_JES_MJB_Stat15: 4.110888575478542e-05 - syst_JES_MJB_Stat16: 2.0851918376974336e-05 - syst_JES_MJB_Stat2: 7.801439484479771e-07 - syst_JES_MJB_Stat3: 1.0976211220179758e-06 - syst_JES_MJB_Stat4: 9.039435878416306e-07 - syst_JES_MJB_Stat5: 1.1943405377027105e-06 - syst_JES_MJB_Stat6: 1.7278456781495273e-06 - syst_JES_MJB_Stat7: 2.6909114199467808e-06 - syst_JES_MJB_Stat8: 4.462067542070604e-06 - syst_JES_MJB_Stat9: 6.745956622303466e-06 - syst_JES_MJB_Threshold: 0.00010427046693575321 - syst_JES_Pileup_MuOffset: 0.00015041921419818683 - syst_JES_Pileup_NPVOffset: 0.0001586878303462493 - syst_JES_Pileup_Pt_term: 8.931012036717899e-05 - syst_JES_PunchThrough_MC15: 0.00019216326391899156 - syst_JES_SingleParticle_HighPt: 7.812370110920244e-09 - syst_JES_Zjet_MC: 0.00027880057388750116 - syst_JES_Zjet_MuScale: 2.142340309101241e-05 - syst_JES_Zjet_MuSmearID: 5.540175155173345e-06 - syst_JES_Zjet_MuSmearMS: 7.6435989396357e-05 - syst_JES_Zjet_OOC: 0.00017347422719239883 - syst_JES_Zjet_Stat1: 1.699413060441752e-05 - syst_JES_Zjet_Stat10: 1.3822882866826298e-05 - syst_JES_Zjet_Stat11: 1.965697013784169e-05 - syst_JES_Zjet_Stat12: 4.8421984676384344e-05 - syst_JES_Zjet_Stat13: 7.708591100194639e-05 - syst_JES_Zjet_Stat2: 3.683200058033774e-07 - syst_JES_Zjet_Stat3: 1.0863419489276848e-05 - syst_JES_Zjet_Stat4: 9.07521558972568e-06 - syst_JES_Zjet_Stat5: 9.745063096255457e-06 - syst_JES_Zjet_Stat6: 7.771801126508577e-06 - syst_JES_Zjet_Stat7: 9.175723772542416e-06 - syst_JES_Zjet_Stat8: 7.363178797231532e-06 - syst_JES_Zjet_Stat9: 8.797629837064072e-06 - syst_JES_Zjet_Veto: 3.5070025662950404e-05 - syst_JES_Zjet_dPhi: 3.343058629458957e-05 - syst_PRW: 2.142e-05 - syst_Unfolding_bias: 2.226e-05 - syst_cleaning: 0.00017840123317959436 - syst_lumi: 0.0005822 - syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 2.7086206821923216e-05 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.00012276890241425147 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 8.645313571525328e-06 + syst_JES_EtaIntercalibration_Stat93: 1.07629637e-22 + syst_JES_EtaIntercalibration_Stat94: 6.93099346e-18 + syst_JES_EtaIntercalibration_Stat95: 2.03515662e-08 + syst_JES_EtaIntercalibration_Stat96: 3.14505898e-08 + syst_JES_EtaIntercalibration_Stat97: 2.43544657e-18 + syst_JES_EtaIntercalibration_Stat98: 5.84250757e-19 + syst_JES_EtaIntercalibration_Stat99: 1.03464054e-08 + syst_JES_EtaIntercalibration_TotalStat_MJB: 2.50229135e-04 + syst_JES_Flavour_Comp: 6.48226679e-04 + syst_JES_Gjet_Generator: 7.25569480e-04 + syst_JES_Gjet_OOC: 6.06197218e-04 + syst_JES_Gjet_Purity: 1.05790622e-04 + syst_JES_Gjet_Stat1: 3.46828185e-06 + syst_JES_Gjet_Stat10: 1.15954725e-05 + syst_JES_Gjet_Stat11: 1.20546006e-05 + syst_JES_Gjet_Stat12: 3.43562232e-05 + syst_JES_Gjet_Stat13: 1.17177392e-04 + syst_JES_Gjet_Stat14: 3.14806226e-04 + syst_JES_Gjet_Stat15: 4.83519875e-04 + syst_JES_Gjet_Stat2: 2.74457661e-06 + syst_JES_Gjet_Stat3: 3.92482544e-06 + syst_JES_Gjet_Stat4: 1.54227203e-06 + syst_JES_Gjet_Stat5: 2.84811991e-06 + syst_JES_Gjet_Stat6: 1.14215965e-05 + syst_JES_Gjet_Stat7: 7.39833211e-06 + syst_JES_Gjet_Stat8: 5.05861127e-06 + syst_JES_Gjet_Stat9: 7.47642901e-06 + syst_JES_Gjet_Veto: 6.12100325e-04 + syst_JES_Gjet_dPhi: 6.61012940e-05 + syst_JES_LArESZee: 1.08425892e-03 + syst_JES_LArEsmear: 9.96568135e-05 + syst_JES_LAr_JVT: 1.25638412e-04 + syst_JES_MJB_Alpha: 1.00732772e-05 + syst_JES_MJB_Asym: 1.39544726e-04 + syst_JES_MJB_Beta: 7.84590970e-06 + syst_JES_MJB_Stat1: 4.90869109e-07 + syst_JES_MJB_Stat10: 1.17312743e-05 + syst_JES_MJB_Stat11: 1.40527930e-05 + syst_JES_MJB_Stat12: 2.21092984e-05 + syst_JES_MJB_Stat13: 2.82251165e-05 + syst_JES_MJB_Stat14: 2.30731597e-05 + syst_JES_MJB_Stat15: 4.11088858e-05 + syst_JES_MJB_Stat16: 2.08519184e-05 + syst_JES_MJB_Stat2: 7.80143948e-07 + syst_JES_MJB_Stat3: 1.09762112e-06 + syst_JES_MJB_Stat4: 9.03943588e-07 + syst_JES_MJB_Stat5: 1.19434054e-06 + syst_JES_MJB_Stat6: 1.72784568e-06 + syst_JES_MJB_Stat7: 2.69091142e-06 + syst_JES_MJB_Stat8: 4.46206754e-06 + syst_JES_MJB_Stat9: 6.74595662e-06 + syst_JES_MJB_Threshold: 1.04270467e-04 + syst_JES_Pileup_MuOffset: 1.50419214e-04 + syst_JES_Pileup_NPVOffset: 1.58687830e-04 + syst_JES_Pileup_Pt_term: 8.93101204e-05 + syst_JES_PunchThrough_MC15: 1.92163264e-04 + syst_JES_SingleParticle_HighPt: 7.81237011e-09 + syst_JES_Zjet_MC: 2.78800574e-04 + syst_JES_Zjet_MuScale: 2.14234031e-05 + syst_JES_Zjet_MuSmearID: 5.54017516e-06 + syst_JES_Zjet_MuSmearMS: 7.64359894e-05 + syst_JES_Zjet_OOC: 1.73474227e-04 + syst_JES_Zjet_Stat1: 1.69941306e-05 + syst_JES_Zjet_Stat10: 1.38228829e-05 + syst_JES_Zjet_Stat11: 1.96569701e-05 + syst_JES_Zjet_Stat12: 4.84219847e-05 + syst_JES_Zjet_Stat13: 7.70859110e-05 + syst_JES_Zjet_Stat2: 3.68320006e-07 + syst_JES_Zjet_Stat3: 1.08634195e-05 + syst_JES_Zjet_Stat4: 9.07521559e-06 + syst_JES_Zjet_Stat5: 9.74506310e-06 + syst_JES_Zjet_Stat6: 7.77180113e-06 + syst_JES_Zjet_Stat7: 9.17572377e-06 + syst_JES_Zjet_Stat8: 7.36317880e-06 + syst_JES_Zjet_Stat9: 8.79762984e-06 + syst_JES_Zjet_Veto: 3.50700257e-05 + syst_JES_Zjet_dPhi: 3.34305863e-05 + syst_PRW: 2.14200000e-05 + syst_Unfolding_bias: 2.22600000e-05 + syst_cleaning: 1.78401233e-04 + syst_lumi: 5.82200000e-04 + syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 2.70862068e-05 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.22768902e-04 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 8.64531357e-06 syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 3.348399051412481e-05 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 5.33074617197255e-05 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.00014940825780391124 -- stat: 0.00025576 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 3.34839905e-05 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 5.33074617e-05 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.49408258e-04 +- stat: 2.55760000e-04 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 5.483207364307865e-05 - syst_JER_NP1: 5.630059924192637e-06 - syst_JER_NP2: 3.090730819725329e-05 - syst_JER_NP3: 4.147928730101327e-06 - syst_JER_NP4: 1.2462207057740616e-05 - syst_JER_NP5: 1.496094876670594e-05 - syst_JER_NP6: 1.1277401861687823e-05 - syst_JER_NP7: 3.4028428211134974e-06 - syst_JER_NP8: 1.228978539275605e-05 - syst_JES_EtaIntercalibration_Modelling: 0.00040008969853646566 - syst_JES_EtaIntercalibration_NonClosure: 2.580755703277627e-17 + syst_JER_NP0: 5.48320736e-05 + syst_JER_NP1: 5.63005992e-06 + syst_JER_NP2: 3.09073082e-05 + syst_JER_NP3: 4.14792873e-06 + syst_JER_NP4: 1.24622071e-05 + syst_JER_NP5: 1.49609488e-05 + syst_JER_NP6: 1.12774019e-05 + syst_JER_NP7: 3.40284282e-06 + syst_JER_NP8: 1.22897854e-05 + syst_JES_EtaIntercalibration_Modelling: 4.00089699e-04 + syst_JES_EtaIntercalibration_NonClosure: 2.58075570e-17 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 3.4315390588677316e-08 - syst_JES_EtaIntercalibration_Stat101: 6.64888216168703e-20 - syst_JES_EtaIntercalibration_Stat102: 4.983127117583897e-22 - syst_JES_EtaIntercalibration_Stat103: 1.4263438400329705e-21 - syst_JES_EtaIntercalibration_Stat104: 1.4263438400329705e-21 - syst_JES_EtaIntercalibration_Stat105: 1.4263438400329705e-21 + syst_JES_EtaIntercalibration_Stat100: 3.43153906e-08 + syst_JES_EtaIntercalibration_Stat101: 6.64888216e-20 + syst_JES_EtaIntercalibration_Stat102: 4.98312712e-22 + syst_JES_EtaIntercalibration_Stat103: 1.42634384e-21 + syst_JES_EtaIntercalibration_Stat104: 1.42634384e-21 + syst_JES_EtaIntercalibration_Stat105: 1.42634384e-21 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 8.271408631545174e-19 - syst_JES_EtaIntercalibration_Stat111: 8.271408631545174e-19 + syst_JES_EtaIntercalibration_Stat110: 8.27140863e-19 + syst_JES_EtaIntercalibration_Stat111: 8.27140863e-19 syst_JES_EtaIntercalibration_Stat112: 0.0 - syst_JES_EtaIntercalibration_Stat113: 9.862420030981239e-21 - syst_JES_EtaIntercalibration_Stat114: 1.251406224072388e-08 - syst_JES_EtaIntercalibration_Stat115: 1.2148085229780042e-07 - syst_JES_EtaIntercalibration_Stat116: 1.5434024992528685e-08 - syst_JES_EtaIntercalibration_Stat117: 4.170219029019939e-16 - syst_JES_EtaIntercalibration_Stat118: 2.655233887098381e-08 - syst_JES_EtaIntercalibration_Stat119: 1.0308489229149925e-08 - syst_JES_EtaIntercalibration_Stat12: 2.492951491445431e-19 - syst_JES_EtaIntercalibration_Stat120: 8.270176827009203e-08 - syst_JES_EtaIntercalibration_Stat121: 1.5816191395844955e-15 - syst_JES_EtaIntercalibration_Stat122: 8.27957250511764e-21 - syst_JES_EtaIntercalibration_Stat123: 1.4263438400329705e-21 - syst_JES_EtaIntercalibration_Stat124: 1.4263438400329705e-21 - syst_JES_EtaIntercalibration_Stat125: 1.4263438400329705e-21 + syst_JES_EtaIntercalibration_Stat113: 9.86242003e-21 + syst_JES_EtaIntercalibration_Stat114: 1.25140622e-08 + syst_JES_EtaIntercalibration_Stat115: 1.21480852e-07 + syst_JES_EtaIntercalibration_Stat116: 1.54340250e-08 + syst_JES_EtaIntercalibration_Stat117: 4.17021903e-16 + syst_JES_EtaIntercalibration_Stat118: 2.65523389e-08 + syst_JES_EtaIntercalibration_Stat119: 1.03084892e-08 + syst_JES_EtaIntercalibration_Stat12: 2.49295149e-19 + syst_JES_EtaIntercalibration_Stat120: 8.27017683e-08 + syst_JES_EtaIntercalibration_Stat121: 1.58161914e-15 + syst_JES_EtaIntercalibration_Stat122: 8.27957251e-21 + syst_JES_EtaIntercalibration_Stat123: 1.42634384e-21 + syst_JES_EtaIntercalibration_Stat124: 1.42634384e-21 + syst_JES_EtaIntercalibration_Stat125: 1.42634384e-21 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 1.482635491278959e-16 - syst_JES_EtaIntercalibration_Stat129: 1.479898902020253e-16 - syst_JES_EtaIntercalibration_Stat13: 3.7091280916043694e-19 - syst_JES_EtaIntercalibration_Stat130: 8.271408631545174e-19 - syst_JES_EtaIntercalibration_Stat131: 6.490860401364367e-23 - syst_JES_EtaIntercalibration_Stat132: 3.146568635528351e-17 - syst_JES_EtaIntercalibration_Stat133: 1.911318188261869e-09 - syst_JES_EtaIntercalibration_Stat134: 1.006570875547271e-07 - syst_JES_EtaIntercalibration_Stat135: 9.617402043398951e-08 - syst_JES_EtaIntercalibration_Stat136: 1.4237457770602592e-07 - syst_JES_EtaIntercalibration_Stat137: 2.7279125260902336e-08 - syst_JES_EtaIntercalibration_Stat138: 2.0670995210681074e-07 - syst_JES_EtaIntercalibration_Stat139: 3.731361905189578e-08 - syst_JES_EtaIntercalibration_Stat14: 1.6991418422250687e-22 - syst_JES_EtaIntercalibration_Stat140: 8.192223265530547e-10 - syst_JES_EtaIntercalibration_Stat141: 1.366588384420889e-16 + syst_JES_EtaIntercalibration_Stat128: 1.48263549e-16 + syst_JES_EtaIntercalibration_Stat129: 1.47989890e-16 + syst_JES_EtaIntercalibration_Stat13: 3.70912809e-19 + syst_JES_EtaIntercalibration_Stat130: 8.27140863e-19 + syst_JES_EtaIntercalibration_Stat131: 6.49086040e-23 + syst_JES_EtaIntercalibration_Stat132: 3.14656864e-17 + syst_JES_EtaIntercalibration_Stat133: 1.91131819e-09 + syst_JES_EtaIntercalibration_Stat134: 1.00657088e-07 + syst_JES_EtaIntercalibration_Stat135: 9.61740204e-08 + syst_JES_EtaIntercalibration_Stat136: 1.42374578e-07 + syst_JES_EtaIntercalibration_Stat137: 2.72791253e-08 + syst_JES_EtaIntercalibration_Stat138: 2.06709952e-07 + syst_JES_EtaIntercalibration_Stat139: 3.73136191e-08 + syst_JES_EtaIntercalibration_Stat14: 1.69914184e-22 + syst_JES_EtaIntercalibration_Stat140: 8.19222327e-10 + syst_JES_EtaIntercalibration_Stat141: 1.36658838e-16 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 1.4263438400329705e-21 - syst_JES_EtaIntercalibration_Stat144: 1.4263438400329705e-21 + syst_JES_EtaIntercalibration_Stat143: 1.42634384e-21 + syst_JES_EtaIntercalibration_Stat144: 1.42634384e-21 syst_JES_EtaIntercalibration_Stat145: 0.0 - syst_JES_EtaIntercalibration_Stat146: 1.482635491278959e-16 - syst_JES_EtaIntercalibration_Stat147: 1.479898902020253e-16 + syst_JES_EtaIntercalibration_Stat146: 1.48263549e-16 + syst_JES_EtaIntercalibration_Stat147: 1.47989890e-16 syst_JES_EtaIntercalibration_Stat148: 0.0 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 4.306374422585663e-20 - syst_JES_EtaIntercalibration_Stat151: 1.9156487044153872e-09 - syst_JES_EtaIntercalibration_Stat152: 1.1147146215511843e-07 - syst_JES_EtaIntercalibration_Stat153: 1.3702668964475498e-07 - syst_JES_EtaIntercalibration_Stat154: 1.7935391406683947e-08 - syst_JES_EtaIntercalibration_Stat155: 4.2839344941303666e-08 - syst_JES_EtaIntercalibration_Stat156: 2.0290349152984037e-07 - syst_JES_EtaIntercalibration_Stat157: 1.7478394520092513e-07 - syst_JES_EtaIntercalibration_Stat158: 5.7664056627590815e-08 - syst_JES_EtaIntercalibration_Stat159: 1.3719626180302142e-16 + syst_JES_EtaIntercalibration_Stat150: 4.30637442e-20 + syst_JES_EtaIntercalibration_Stat151: 1.91564870e-09 + syst_JES_EtaIntercalibration_Stat152: 1.11471462e-07 + syst_JES_EtaIntercalibration_Stat153: 1.37026690e-07 + syst_JES_EtaIntercalibration_Stat154: 1.79353914e-08 + syst_JES_EtaIntercalibration_Stat155: 4.28393449e-08 + syst_JES_EtaIntercalibration_Stat156: 2.02903492e-07 + syst_JES_EtaIntercalibration_Stat157: 1.74783945e-07 + syst_JES_EtaIntercalibration_Stat158: 5.76640566e-08 + syst_JES_EtaIntercalibration_Stat159: 1.37196262e-16 syst_JES_EtaIntercalibration_Stat16: 0.0 syst_JES_EtaIntercalibration_Stat160: 0.0 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 - syst_JES_EtaIntercalibration_Stat164: 1.482635491278959e-16 + syst_JES_EtaIntercalibration_Stat164: 1.48263549e-16 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 - syst_JES_EtaIntercalibration_Stat168: 8.002074730968212e-20 - syst_JES_EtaIntercalibration_Stat169: 9.72132618267693e-08 + syst_JES_EtaIntercalibration_Stat168: 8.00207473e-20 + syst_JES_EtaIntercalibration_Stat169: 9.72132618e-08 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 2.663542565832204e-07 - syst_JES_EtaIntercalibration_Stat171: 3.8625226212929805e-07 - syst_JES_EtaIntercalibration_Stat172: 4.40875319875132e-08 - syst_JES_EtaIntercalibration_Stat173: 3.723257041892219e-08 - syst_JES_EtaIntercalibration_Stat174: 2.136780931682048e-07 - syst_JES_EtaIntercalibration_Stat175: 5.115217688427347e-07 - syst_JES_EtaIntercalibration_Stat176: 5.201348863775669e-09 - syst_JES_EtaIntercalibration_Stat177: 1.0965232544273743e-15 + syst_JES_EtaIntercalibration_Stat170: 2.66354257e-07 + syst_JES_EtaIntercalibration_Stat171: 3.86252262e-07 + syst_JES_EtaIntercalibration_Stat172: 4.40875320e-08 + syst_JES_EtaIntercalibration_Stat173: 3.72325704e-08 + syst_JES_EtaIntercalibration_Stat174: 2.13678093e-07 + syst_JES_EtaIntercalibration_Stat175: 5.11521769e-07 + syst_JES_EtaIntercalibration_Stat176: 5.20134886e-09 + syst_JES_EtaIntercalibration_Stat177: 1.09652325e-15 syst_JES_EtaIntercalibration_Stat178: 0.0 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 @@ -21998,17 +21998,17 @@ bins: syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 syst_JES_EtaIntercalibration_Stat184: 0.0 - syst_JES_EtaIntercalibration_Stat185: 3.557631848369129e-08 - syst_JES_EtaIntercalibration_Stat186: 3.122665881502534e-07 - syst_JES_EtaIntercalibration_Stat187: 1.7283333011893278e-06 - syst_JES_EtaIntercalibration_Stat188: 1.5845929974286772e-06 - syst_JES_EtaIntercalibration_Stat189: 1.7766060339872764e-07 + syst_JES_EtaIntercalibration_Stat185: 3.55763185e-08 + syst_JES_EtaIntercalibration_Stat186: 3.12266588e-07 + syst_JES_EtaIntercalibration_Stat187: 1.72833330e-06 + syst_JES_EtaIntercalibration_Stat188: 1.58459300e-06 + syst_JES_EtaIntercalibration_Stat189: 1.77660603e-07 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 9.648277151906448e-08 - syst_JES_EtaIntercalibration_Stat191: 1.8219800403681704e-06 - syst_JES_EtaIntercalibration_Stat192: 2.249024399600858e-06 - syst_JES_EtaIntercalibration_Stat193: 1.578341417437938e-07 - syst_JES_EtaIntercalibration_Stat194: 1.0349869600627827e-15 + syst_JES_EtaIntercalibration_Stat190: 9.64827715e-08 + syst_JES_EtaIntercalibration_Stat191: 1.82198004e-06 + syst_JES_EtaIntercalibration_Stat192: 2.24902440e-06 + syst_JES_EtaIntercalibration_Stat193: 1.57834142e-07 + syst_JES_EtaIntercalibration_Stat194: 1.03498696e-15 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 syst_JES_EtaIntercalibration_Stat197: 0.0 @@ -22016,70 +22016,70 @@ bins: syst_JES_EtaIntercalibration_Stat199: 0.0 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 3.5584984609955856e-08 - syst_JES_EtaIntercalibration_Stat201: 2.8882054982289605e-07 - syst_JES_EtaIntercalibration_Stat202: 3.5959036416455875e-06 - syst_JES_EtaIntercalibration_Stat203: 3.3911993453644095e-06 - syst_JES_EtaIntercalibration_Stat204: 3.539305970102048e-07 - syst_JES_EtaIntercalibration_Stat205: 9.238326512415546e-08 - syst_JES_EtaIntercalibration_Stat206: 3.5183982150973186e-06 - syst_JES_EtaIntercalibration_Stat207: 3.5813944211717314e-06 - syst_JES_EtaIntercalibration_Stat208: 6.531492019439356e-07 - syst_JES_EtaIntercalibration_Stat209: 8.161423392207773e-10 + syst_JES_EtaIntercalibration_Stat200: 3.55849846e-08 + syst_JES_EtaIntercalibration_Stat201: 2.88820550e-07 + syst_JES_EtaIntercalibration_Stat202: 3.59590364e-06 + syst_JES_EtaIntercalibration_Stat203: 3.39119935e-06 + syst_JES_EtaIntercalibration_Stat204: 3.53930597e-07 + syst_JES_EtaIntercalibration_Stat205: 9.23832651e-08 + syst_JES_EtaIntercalibration_Stat206: 3.51839822e-06 + syst_JES_EtaIntercalibration_Stat207: 3.58139442e-06 + syst_JES_EtaIntercalibration_Stat208: 6.53149202e-07 + syst_JES_EtaIntercalibration_Stat209: 8.16142339e-10 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 syst_JES_EtaIntercalibration_Stat211: 0.0 syst_JES_EtaIntercalibration_Stat212: 0.0 - syst_JES_EtaIntercalibration_Stat213: 3.5584978749276124e-08 - syst_JES_EtaIntercalibration_Stat214: 2.861158944815894e-07 - syst_JES_EtaIntercalibration_Stat215: 4.1859773052418715e-06 - syst_JES_EtaIntercalibration_Stat216: 3.976821092279611e-06 - syst_JES_EtaIntercalibration_Stat217: 4.136565815987943e-07 - syst_JES_EtaIntercalibration_Stat218: 2.261969053722884e-07 - syst_JES_EtaIntercalibration_Stat219: 4.014456470059178e-06 + syst_JES_EtaIntercalibration_Stat213: 3.55849787e-08 + syst_JES_EtaIntercalibration_Stat214: 2.86115894e-07 + syst_JES_EtaIntercalibration_Stat215: 4.18597731e-06 + syst_JES_EtaIntercalibration_Stat216: 3.97682109e-06 + syst_JES_EtaIntercalibration_Stat217: 4.13656582e-07 + syst_JES_EtaIntercalibration_Stat218: 2.26196905e-07 + syst_JES_EtaIntercalibration_Stat219: 4.01445647e-06 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 4.072239770691308e-06 - syst_JES_EtaIntercalibration_Stat221: 3.3789607869876204e-07 - syst_JES_EtaIntercalibration_Stat222: 8.154599029921704e-10 + syst_JES_EtaIntercalibration_Stat220: 4.07223977e-06 + syst_JES_EtaIntercalibration_Stat221: 3.37896079e-07 + syst_JES_EtaIntercalibration_Stat222: 8.15459903e-10 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 - syst_JES_EtaIntercalibration_Stat225: 2.5364334704462488e-08 - syst_JES_EtaIntercalibration_Stat226: 8.756793748284814e-07 - syst_JES_EtaIntercalibration_Stat227: 1.1180639550133077e-05 - syst_JES_EtaIntercalibration_Stat228: 9.843469510289551e-06 - syst_JES_EtaIntercalibration_Stat229: 8.304212831448866e-07 + syst_JES_EtaIntercalibration_Stat225: 2.53643347e-08 + syst_JES_EtaIntercalibration_Stat226: 8.75679375e-07 + syst_JES_EtaIntercalibration_Stat227: 1.11806396e-05 + syst_JES_EtaIntercalibration_Stat228: 9.84346951e-06 + syst_JES_EtaIntercalibration_Stat229: 8.30421283e-07 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 1.1251129143334903e-06 - syst_JES_EtaIntercalibration_Stat231: 1.2292445271385185e-05 - syst_JES_EtaIntercalibration_Stat232: 1.216880914469448e-05 - syst_JES_EtaIntercalibration_Stat233: 1.160125048216786e-06 - syst_JES_EtaIntercalibration_Stat234: 1.0666997890690707e-07 + syst_JES_EtaIntercalibration_Stat230: 1.12511291e-06 + syst_JES_EtaIntercalibration_Stat231: 1.22924453e-05 + syst_JES_EtaIntercalibration_Stat232: 1.21688091e-05 + syst_JES_EtaIntercalibration_Stat233: 1.16012505e-06 + syst_JES_EtaIntercalibration_Stat234: 1.06669979e-07 syst_JES_EtaIntercalibration_Stat235: 0.0 - syst_JES_EtaIntercalibration_Stat236: 3.5584983841502585e-08 - syst_JES_EtaIntercalibration_Stat237: 2.6116593862906393e-07 - syst_JES_EtaIntercalibration_Stat238: 2.4385050235748954e-06 - syst_JES_EtaIntercalibration_Stat239: 1.3857589509001918e-06 + syst_JES_EtaIntercalibration_Stat236: 3.55849838e-08 + syst_JES_EtaIntercalibration_Stat237: 2.61165939e-07 + syst_JES_EtaIntercalibration_Stat238: 2.43850502e-06 + syst_JES_EtaIntercalibration_Stat239: 1.38575895e-06 syst_JES_EtaIntercalibration_Stat24: 0.0 - syst_JES_EtaIntercalibration_Stat240: 6.521454669013656e-08 - syst_JES_EtaIntercalibration_Stat241: 5.695098418815956e-08 - syst_JES_EtaIntercalibration_Stat242: 1.2292778154266023e-06 - syst_JES_EtaIntercalibration_Stat243: 2.428685652776003e-06 - syst_JES_EtaIntercalibration_Stat244: 1.5529891846049667e-07 - syst_JES_EtaIntercalibration_Stat245: 1.810859119313261e-11 + syst_JES_EtaIntercalibration_Stat240: 6.52145467e-08 + syst_JES_EtaIntercalibration_Stat241: 5.69509842e-08 + syst_JES_EtaIntercalibration_Stat242: 1.22927782e-06 + syst_JES_EtaIntercalibration_Stat243: 2.42868565e-06 + syst_JES_EtaIntercalibration_Stat244: 1.55298918e-07 + syst_JES_EtaIntercalibration_Stat245: 1.81085912e-11 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 syst_JES_EtaIntercalibration_Stat27: 0.0 - syst_JES_EtaIntercalibration_Stat28: 4.2279360212756294e-23 - syst_JES_EtaIntercalibration_Stat29: 2.365166167523965e-21 + syst_JES_EtaIntercalibration_Stat28: 4.22793602e-23 + syst_JES_EtaIntercalibration_Stat29: 2.36516617e-21 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 1.855693565085572e-20 - syst_JES_EtaIntercalibration_Stat31: 1.568030841533418e-20 - syst_JES_EtaIntercalibration_Stat32: 1.5445751543709357e-22 - syst_JES_EtaIntercalibration_Stat33: 2.4036463966232635e-21 - syst_JES_EtaIntercalibration_Stat34: 2.880400492998574e-08 - syst_JES_EtaIntercalibration_Stat35: 1.3215773421129881e-16 - syst_JES_EtaIntercalibration_Stat36: 7.603012121521311e-21 - syst_JES_EtaIntercalibration_Stat37: 3.086514539087739e-23 + syst_JES_EtaIntercalibration_Stat30: 1.85569357e-20 + syst_JES_EtaIntercalibration_Stat31: 1.56803084e-20 + syst_JES_EtaIntercalibration_Stat32: 1.54457515e-22 + syst_JES_EtaIntercalibration_Stat33: 2.40364640e-21 + syst_JES_EtaIntercalibration_Stat34: 2.88040049e-08 + syst_JES_EtaIntercalibration_Stat35: 1.32157734e-16 + syst_JES_EtaIntercalibration_Stat36: 7.60301212e-21 + syst_JES_EtaIntercalibration_Stat37: 3.08651454e-23 syst_JES_EtaIntercalibration_Stat38: 0.0 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 @@ -22094,20 +22094,20 @@ bins: syst_JES_EtaIntercalibration_Stat48: 0.0 syst_JES_EtaIntercalibration_Stat49: 0.0 syst_JES_EtaIntercalibration_Stat5: 0.0 - syst_JES_EtaIntercalibration_Stat50: 4.2833616471178336e-23 - syst_JES_EtaIntercalibration_Stat51: 3.175117005718057e-21 - syst_JES_EtaIntercalibration_Stat52: 1.9020454779000424e-19 - syst_JES_EtaIntercalibration_Stat53: 8.632441876433343e-20 - syst_JES_EtaIntercalibration_Stat54: 1.067146278632878e-21 - syst_JES_EtaIntercalibration_Stat55: 2.515968567902827e-19 - syst_JES_EtaIntercalibration_Stat56: 2.882998569197127e-08 - syst_JES_EtaIntercalibration_Stat57: 1.7744860529045293e-11 - syst_JES_EtaIntercalibration_Stat58: 7.610832329647002e-21 - syst_JES_EtaIntercalibration_Stat59: 9.797789074582082e-23 + syst_JES_EtaIntercalibration_Stat50: 4.28336165e-23 + syst_JES_EtaIntercalibration_Stat51: 3.17511701e-21 + syst_JES_EtaIntercalibration_Stat52: 1.90204548e-19 + syst_JES_EtaIntercalibration_Stat53: 8.63244188e-20 + syst_JES_EtaIntercalibration_Stat54: 1.06714628e-21 + syst_JES_EtaIntercalibration_Stat55: 2.51596857e-19 + syst_JES_EtaIntercalibration_Stat56: 2.88299857e-08 + syst_JES_EtaIntercalibration_Stat57: 1.77448605e-11 + syst_JES_EtaIntercalibration_Stat58: 7.61083233e-21 + syst_JES_EtaIntercalibration_Stat59: 9.79778907e-23 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 1.4263438400329705e-21 - syst_JES_EtaIntercalibration_Stat62: 1.4263438400329705e-21 + syst_JES_EtaIntercalibration_Stat61: 1.42634384e-21 + syst_JES_EtaIntercalibration_Stat62: 1.42634384e-21 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 @@ -22115,223 +22115,223 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 4.2279360212756294e-23 + syst_JES_EtaIntercalibration_Stat7: 4.22793602e-23 syst_JES_EtaIntercalibration_Stat70: 0.0 syst_JES_EtaIntercalibration_Stat71: 0.0 - syst_JES_EtaIntercalibration_Stat72: 4.438380194395248e-23 - syst_JES_EtaIntercalibration_Stat73: 1.001504603621471e-18 - syst_JES_EtaIntercalibration_Stat74: 2.560836623047088e-08 - syst_JES_EtaIntercalibration_Stat75: 5.013421072031508e-09 - syst_JES_EtaIntercalibration_Stat76: 2.4218386955988627e-20 - syst_JES_EtaIntercalibration_Stat77: 2.1010859352963171e-19 - syst_JES_EtaIntercalibration_Stat78: 2.7773434689704994e-08 - syst_JES_EtaIntercalibration_Stat79: 4.198491158498721e-08 - syst_JES_EtaIntercalibration_Stat8: 9.320327824170134e-22 - syst_JES_EtaIntercalibration_Stat80: 6.433182573967569e-20 - syst_JES_EtaIntercalibration_Stat81: 2.0065808605685445e-22 - syst_JES_EtaIntercalibration_Stat82: 1.4263438400329705e-21 - syst_JES_EtaIntercalibration_Stat83: 1.4263438400329705e-21 - syst_JES_EtaIntercalibration_Stat84: 1.4263438400329705e-21 + syst_JES_EtaIntercalibration_Stat72: 4.43838019e-23 + syst_JES_EtaIntercalibration_Stat73: 1.00150460e-18 + syst_JES_EtaIntercalibration_Stat74: 2.56083662e-08 + syst_JES_EtaIntercalibration_Stat75: 5.01342107e-09 + syst_JES_EtaIntercalibration_Stat76: 2.42183870e-20 + syst_JES_EtaIntercalibration_Stat77: 2.10108594e-19 + syst_JES_EtaIntercalibration_Stat78: 2.77734347e-08 + syst_JES_EtaIntercalibration_Stat79: 4.19849116e-08 + syst_JES_EtaIntercalibration_Stat8: 9.32032782e-22 + syst_JES_EtaIntercalibration_Stat80: 6.43318257e-20 + syst_JES_EtaIntercalibration_Stat81: 2.00658086e-22 + syst_JES_EtaIntercalibration_Stat82: 1.42634384e-21 + syst_JES_EtaIntercalibration_Stat83: 1.42634384e-21 + syst_JES_EtaIntercalibration_Stat84: 1.42634384e-21 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 syst_JES_EtaIntercalibration_Stat89: 0.0 - syst_JES_EtaIntercalibration_Stat9: 7.155050873334166e-22 + syst_JES_EtaIntercalibration_Stat9: 7.15505087e-22 syst_JES_EtaIntercalibration_Stat90: 0.0 syst_JES_EtaIntercalibration_Stat91: 0.0 syst_JES_EtaIntercalibration_Stat92: 0.0 - syst_JES_EtaIntercalibration_Stat93: 9.301978862048656e-23 - syst_JES_EtaIntercalibration_Stat94: 1.4824550473791776e-18 - syst_JES_EtaIntercalibration_Stat95: 2.5599705990866774e-08 - syst_JES_EtaIntercalibration_Stat96: 1.909330738766859e-08 - syst_JES_EtaIntercalibration_Stat97: 5.228054574724714e-19 - syst_JES_EtaIntercalibration_Stat98: 1.336350884872682e-19 - syst_JES_EtaIntercalibration_Stat99: 1.5354630398108237e-08 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.00016421559000289832 - syst_JES_Flavour_Comp: 0.00042124187825998496 - syst_JES_Gjet_Generator: 0.0004613280936600328 - syst_JES_Gjet_OOC: 0.00038481022894408615 - syst_JES_Gjet_Purity: 6.689932959305348e-05 - syst_JES_Gjet_Stat1: 2.4064813042074525e-06 - syst_JES_Gjet_Stat10: 7.488147835079112e-06 - syst_JES_Gjet_Stat11: 7.832316132537041e-06 - syst_JES_Gjet_Stat12: 2.0286125184470295e-05 - syst_JES_Gjet_Stat13: 7.439621562956009e-05 - syst_JES_Gjet_Stat14: 0.00019871288332667312 - syst_JES_Gjet_Stat15: 0.0003225037519161599 - syst_JES_Gjet_Stat2: 1.9108848735598908e-06 - syst_JES_Gjet_Stat3: 2.6993728901357816e-06 - syst_JES_Gjet_Stat4: 1.190995566742379e-06 - syst_JES_Gjet_Stat5: 1.995673507866455e-06 - syst_JES_Gjet_Stat6: 8.072788985226853e-06 - syst_JES_Gjet_Stat7: 4.532539988792156e-06 - syst_JES_Gjet_Stat8: 3.0506995918969145e-06 - syst_JES_Gjet_Stat9: 4.833334330459668e-06 - syst_JES_Gjet_Veto: 0.00039065035735296594 - syst_JES_Gjet_dPhi: 4.264011491541738e-05 - syst_JES_LArESZee: 0.0006894905220523338 - syst_JES_LArEsmear: 6.349950767525682e-05 - syst_JES_LAr_JVT: 8.040731356661533e-05 - syst_JES_MJB_Alpha: 7.5610241865768425e-06 - syst_JES_MJB_Asym: 9.5550773937211e-05 - syst_JES_MJB_Beta: 4.98560176909468e-06 - syst_JES_MJB_Stat1: 2.59804385403711e-07 - syst_JES_MJB_Stat10: 6.591202773394246e-06 - syst_JES_MJB_Stat11: 8.464926402515264e-06 - syst_JES_MJB_Stat12: 1.3773718406806493e-05 - syst_JES_MJB_Stat13: 1.8581891722857498e-05 - syst_JES_MJB_Stat14: 1.6462429954292898e-05 - syst_JES_MJB_Stat15: 3.8778075000572166e-05 - syst_JES_MJB_Stat16: 1.1728623565875068e-05 - syst_JES_MJB_Stat2: 4.831119745980221e-07 - syst_JES_MJB_Stat3: 4.73146708220611e-07 - syst_JES_MJB_Stat4: 5.14075507586191e-07 - syst_JES_MJB_Stat5: 5.85879738086239e-07 - syst_JES_MJB_Stat6: 8.816968356527089e-07 - syst_JES_MJB_Stat7: 1.5533296197201675e-06 - syst_JES_MJB_Stat8: 2.640008143926833e-06 - syst_JES_MJB_Stat9: 3.9580420664768075e-06 - syst_JES_MJB_Threshold: 7.084298695001502e-05 - syst_JES_Pileup_MuOffset: 9.763987236267773e-05 - syst_JES_Pileup_NPVOffset: 0.00010264697608794915 - syst_JES_Pileup_Pt_term: 5.457705630574078e-05 - syst_JES_PunchThrough_MC15: 0.00013355868176573172 - syst_JES_SingleParticle_HighPt: 1.6093466842169218e-08 - syst_JES_Zjet_MC: 0.0001769540830272079 - syst_JES_Zjet_MuScale: 1.3053062887690381e-05 - syst_JES_Zjet_MuSmearID: 3.7419033592544844e-06 - syst_JES_Zjet_MuSmearMS: 4.815508773743435e-05 - syst_JES_Zjet_OOC: 0.00011268011481623542 - syst_JES_Zjet_Stat1: 1.2193654538324431e-05 - syst_JES_Zjet_Stat10: 8.518048133228643e-06 - syst_JES_Zjet_Stat11: 1.2171538686624629e-05 - syst_JES_Zjet_Stat12: 2.9316675715367183e-05 - syst_JES_Zjet_Stat13: 4.756010302764282e-05 - syst_JES_Zjet_Stat2: 2.3002545511312438e-07 - syst_JES_Zjet_Stat3: 7.543395704190521e-06 - syst_JES_Zjet_Stat4: 6.197962245770782e-06 - syst_JES_Zjet_Stat5: 6.9555728017180585e-06 - syst_JES_Zjet_Stat6: 5.131537269668807e-06 - syst_JES_Zjet_Stat7: 6.323612318129567e-06 - syst_JES_Zjet_Stat8: 4.7647987365679984e-06 - syst_JES_Zjet_Stat9: 5.427063294268826e-06 - syst_JES_Zjet_Veto: 2.186532128737193e-05 - syst_JES_Zjet_dPhi: 2.0568099085720098e-05 - syst_PRW: 1.3262e-05 - syst_Unfolding_bias: 1.3784e-05 - syst_cleaning: 0.0001103749377123267 - syst_lumi: 0.0003605 - syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.6450006079026232e-05 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 7.474383118358329e-05 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 9.294409610082826e-06 + syst_JES_EtaIntercalibration_Stat93: 9.30197886e-23 + syst_JES_EtaIntercalibration_Stat94: 1.48245505e-18 + syst_JES_EtaIntercalibration_Stat95: 2.55997060e-08 + syst_JES_EtaIntercalibration_Stat96: 1.90933074e-08 + syst_JES_EtaIntercalibration_Stat97: 5.22805457e-19 + syst_JES_EtaIntercalibration_Stat98: 1.33635088e-19 + syst_JES_EtaIntercalibration_Stat99: 1.53546304e-08 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.64215590e-04 + syst_JES_Flavour_Comp: 4.21241878e-04 + syst_JES_Gjet_Generator: 4.61328094e-04 + syst_JES_Gjet_OOC: 3.84810229e-04 + syst_JES_Gjet_Purity: 6.68993296e-05 + syst_JES_Gjet_Stat1: 2.40648130e-06 + syst_JES_Gjet_Stat10: 7.48814784e-06 + syst_JES_Gjet_Stat11: 7.83231613e-06 + syst_JES_Gjet_Stat12: 2.02861252e-05 + syst_JES_Gjet_Stat13: 7.43962156e-05 + syst_JES_Gjet_Stat14: 1.98712883e-04 + syst_JES_Gjet_Stat15: 3.22503752e-04 + syst_JES_Gjet_Stat2: 1.91088487e-06 + syst_JES_Gjet_Stat3: 2.69937289e-06 + syst_JES_Gjet_Stat4: 1.19099557e-06 + syst_JES_Gjet_Stat5: 1.99567351e-06 + syst_JES_Gjet_Stat6: 8.07278899e-06 + syst_JES_Gjet_Stat7: 4.53253999e-06 + syst_JES_Gjet_Stat8: 3.05069959e-06 + syst_JES_Gjet_Stat9: 4.83333433e-06 + syst_JES_Gjet_Veto: 3.90650357e-04 + syst_JES_Gjet_dPhi: 4.26401149e-05 + syst_JES_LArESZee: 6.89490522e-04 + syst_JES_LArEsmear: 6.34995077e-05 + syst_JES_LAr_JVT: 8.04073136e-05 + syst_JES_MJB_Alpha: 7.56102419e-06 + syst_JES_MJB_Asym: 9.55507739e-05 + syst_JES_MJB_Beta: 4.98560177e-06 + syst_JES_MJB_Stat1: 2.59804385e-07 + syst_JES_MJB_Stat10: 6.59120277e-06 + syst_JES_MJB_Stat11: 8.46492640e-06 + syst_JES_MJB_Stat12: 1.37737184e-05 + syst_JES_MJB_Stat13: 1.85818917e-05 + syst_JES_MJB_Stat14: 1.64624300e-05 + syst_JES_MJB_Stat15: 3.87780750e-05 + syst_JES_MJB_Stat16: 1.17286236e-05 + syst_JES_MJB_Stat2: 4.83111975e-07 + syst_JES_MJB_Stat3: 4.73146708e-07 + syst_JES_MJB_Stat4: 5.14075508e-07 + syst_JES_MJB_Stat5: 5.85879738e-07 + syst_JES_MJB_Stat6: 8.81696836e-07 + syst_JES_MJB_Stat7: 1.55332962e-06 + syst_JES_MJB_Stat8: 2.64000814e-06 + syst_JES_MJB_Stat9: 3.95804207e-06 + syst_JES_MJB_Threshold: 7.08429870e-05 + syst_JES_Pileup_MuOffset: 9.76398724e-05 + syst_JES_Pileup_NPVOffset: 1.02646976e-04 + syst_JES_Pileup_Pt_term: 5.45770563e-05 + syst_JES_PunchThrough_MC15: 1.33558682e-04 + syst_JES_SingleParticle_HighPt: 1.60934668e-08 + syst_JES_Zjet_MC: 1.76954083e-04 + syst_JES_Zjet_MuScale: 1.30530629e-05 + syst_JES_Zjet_MuSmearID: 3.74190336e-06 + syst_JES_Zjet_MuSmearMS: 4.81550877e-05 + syst_JES_Zjet_OOC: 1.12680115e-04 + syst_JES_Zjet_Stat1: 1.21936545e-05 + syst_JES_Zjet_Stat10: 8.51804813e-06 + syst_JES_Zjet_Stat11: 1.21715387e-05 + syst_JES_Zjet_Stat12: 2.93166757e-05 + syst_JES_Zjet_Stat13: 4.75601030e-05 + syst_JES_Zjet_Stat2: 2.30025455e-07 + syst_JES_Zjet_Stat3: 7.54339570e-06 + syst_JES_Zjet_Stat4: 6.19796225e-06 + syst_JES_Zjet_Stat5: 6.95557280e-06 + syst_JES_Zjet_Stat6: 5.13153727e-06 + syst_JES_Zjet_Stat7: 6.32361232e-06 + syst_JES_Zjet_Stat8: 4.76479874e-06 + syst_JES_Zjet_Stat9: 5.42706329e-06 + syst_JES_Zjet_Veto: 2.18653213e-05 + syst_JES_Zjet_dPhi: 2.05680991e-05 + syst_PRW: 1.32620000e-05 + syst_Unfolding_bias: 1.37840000e-05 + syst_cleaning: 1.10374938e-04 + syst_lumi: 3.60500000e-04 + syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.64500061e-05 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 7.47438312e-05 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 9.29440961e-06 syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 3.600010593039971e-05 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 3.384001182032891e-05 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 9.636362072898672e-05 -- stat: 0.00014873 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 3.60001059e-05 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 3.38400118e-05 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 9.63636207e-05 +- stat: 1.48730000e-04 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 2.627497050426508e-05 - syst_JER_NP1: 3.445607747553398e-06 - syst_JER_NP2: 1.6181748259999598e-05 - syst_JER_NP3: 2.087151887141901e-06 - syst_JER_NP4: 7.132706779337e-06 - syst_JER_NP5: 7.886967525608305e-06 - syst_JER_NP6: 6.071699844359897e-06 - syst_JER_NP7: 1.714734554606908e-06 - syst_JER_NP8: 6.023265559478512e-06 - syst_JES_EtaIntercalibration_Modelling: 0.00020897212134636525 - syst_JES_EtaIntercalibration_NonClosure: 2.6024063383722386e-18 + syst_JER_NP0: 2.62749705e-05 + syst_JER_NP1: 3.44560775e-06 + syst_JER_NP2: 1.61817483e-05 + syst_JER_NP3: 2.08715189e-06 + syst_JER_NP4: 7.13270678e-06 + syst_JER_NP5: 7.88696753e-06 + syst_JER_NP6: 6.07169984e-06 + syst_JER_NP7: 1.71473455e-06 + syst_JER_NP8: 6.02326556e-06 + syst_JES_EtaIntercalibration_Modelling: 2.08972121e-04 + syst_JES_EtaIntercalibration_NonClosure: 2.60240634e-18 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 1.2652631148139007e-08 - syst_JES_EtaIntercalibration_Stat101: 1.0141869305014732e-20 - syst_JES_EtaIntercalibration_Stat102: 1.0884195891635726e-22 - syst_JES_EtaIntercalibration_Stat103: 3.575818892225947e-22 - syst_JES_EtaIntercalibration_Stat104: 3.575818892225947e-22 - syst_JES_EtaIntercalibration_Stat105: 3.575818892225947e-22 + syst_JES_EtaIntercalibration_Stat100: 1.26526311e-08 + syst_JES_EtaIntercalibration_Stat101: 1.01418693e-20 + syst_JES_EtaIntercalibration_Stat102: 1.08841959e-22 + syst_JES_EtaIntercalibration_Stat103: 3.57581889e-22 + syst_JES_EtaIntercalibration_Stat104: 3.57581889e-22 + syst_JES_EtaIntercalibration_Stat105: 3.57581889e-22 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 1.142980327914702e-19 - syst_JES_EtaIntercalibration_Stat111: 1.142980327914702e-19 + syst_JES_EtaIntercalibration_Stat110: 1.14298033e-19 + syst_JES_EtaIntercalibration_Stat111: 1.14298033e-19 syst_JES_EtaIntercalibration_Stat112: 0.0 - syst_JES_EtaIntercalibration_Stat113: 1.7781752746846977e-21 - syst_JES_EtaIntercalibration_Stat114: 8.945176004823403e-09 - syst_JES_EtaIntercalibration_Stat115: 6.806756877360907e-08 - syst_JES_EtaIntercalibration_Stat116: 1.2324424651885378e-08 - syst_JES_EtaIntercalibration_Stat117: 3.9944890474252153e-17 - syst_JES_EtaIntercalibration_Stat118: 9.353074359935186e-09 - syst_JES_EtaIntercalibration_Stat119: 1.1193827227539291e-08 - syst_JES_EtaIntercalibration_Stat12: 3.3428243316542975e-20 - syst_JES_EtaIntercalibration_Stat120: 2.8076865921965013e-08 - syst_JES_EtaIntercalibration_Stat121: 1.3852537977463733e-16 - syst_JES_EtaIntercalibration_Stat122: 1.4404319555952652e-21 - syst_JES_EtaIntercalibration_Stat123: 3.575818892225947e-22 - syst_JES_EtaIntercalibration_Stat124: 3.575818892225947e-22 - syst_JES_EtaIntercalibration_Stat125: 3.575818892225947e-22 + syst_JES_EtaIntercalibration_Stat113: 1.77817527e-21 + syst_JES_EtaIntercalibration_Stat114: 8.94517600e-09 + syst_JES_EtaIntercalibration_Stat115: 6.80675688e-08 + syst_JES_EtaIntercalibration_Stat116: 1.23244247e-08 + syst_JES_EtaIntercalibration_Stat117: 3.99448905e-17 + syst_JES_EtaIntercalibration_Stat118: 9.35307436e-09 + syst_JES_EtaIntercalibration_Stat119: 1.11938272e-08 + syst_JES_EtaIntercalibration_Stat12: 3.34282433e-20 + syst_JES_EtaIntercalibration_Stat120: 2.80768659e-08 + syst_JES_EtaIntercalibration_Stat121: 1.38525380e-16 + syst_JES_EtaIntercalibration_Stat122: 1.44043196e-21 + syst_JES_EtaIntercalibration_Stat123: 3.57581889e-22 + syst_JES_EtaIntercalibration_Stat124: 3.57581889e-22 + syst_JES_EtaIntercalibration_Stat125: 3.57581889e-22 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 1.459252805376779e-17 - syst_JES_EtaIntercalibration_Stat129: 1.4554827636914838e-17 - syst_JES_EtaIntercalibration_Stat13: 5.213860855708632e-20 - syst_JES_EtaIntercalibration_Stat130: 1.142980327914702e-19 - syst_JES_EtaIntercalibration_Stat131: 1.5614438030233428e-23 - syst_JES_EtaIntercalibration_Stat132: 3.2239498385055558e-18 - syst_JES_EtaIntercalibration_Stat133: 7.427033964411264e-10 - syst_JES_EtaIntercalibration_Stat134: 3.6161338470803316e-08 - syst_JES_EtaIntercalibration_Stat135: 4.847158991310064e-08 - syst_JES_EtaIntercalibration_Stat136: 7.223517903834623e-08 - syst_JES_EtaIntercalibration_Stat137: 1.1428047110070907e-08 - syst_JES_EtaIntercalibration_Stat138: 7.018193570998167e-08 - syst_JES_EtaIntercalibration_Stat139: 4.3647229007120255e-08 - syst_JES_EtaIntercalibration_Stat14: 4.291155875751893e-23 - syst_JES_EtaIntercalibration_Stat140: 9.705854544799237e-11 - syst_JES_EtaIntercalibration_Stat141: 1.321555493349318e-17 + syst_JES_EtaIntercalibration_Stat128: 1.45925281e-17 + syst_JES_EtaIntercalibration_Stat129: 1.45548276e-17 + syst_JES_EtaIntercalibration_Stat13: 5.21386086e-20 + syst_JES_EtaIntercalibration_Stat130: 1.14298033e-19 + syst_JES_EtaIntercalibration_Stat131: 1.56144380e-23 + syst_JES_EtaIntercalibration_Stat132: 3.22394984e-18 + syst_JES_EtaIntercalibration_Stat133: 7.42703396e-10 + syst_JES_EtaIntercalibration_Stat134: 3.61613385e-08 + syst_JES_EtaIntercalibration_Stat135: 4.84715899e-08 + syst_JES_EtaIntercalibration_Stat136: 7.22351790e-08 + syst_JES_EtaIntercalibration_Stat137: 1.14280471e-08 + syst_JES_EtaIntercalibration_Stat138: 7.01819357e-08 + syst_JES_EtaIntercalibration_Stat139: 4.36472290e-08 + syst_JES_EtaIntercalibration_Stat14: 4.29115588e-23 + syst_JES_EtaIntercalibration_Stat140: 9.70585454e-11 + syst_JES_EtaIntercalibration_Stat141: 1.32155549e-17 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 3.575818892225947e-22 - syst_JES_EtaIntercalibration_Stat144: 3.575818892225947e-22 + syst_JES_EtaIntercalibration_Stat143: 3.57581889e-22 + syst_JES_EtaIntercalibration_Stat144: 3.57581889e-22 syst_JES_EtaIntercalibration_Stat145: 0.0 - syst_JES_EtaIntercalibration_Stat146: 1.459252805376779e-17 - syst_JES_EtaIntercalibration_Stat147: 1.4554827636914838e-17 + syst_JES_EtaIntercalibration_Stat146: 1.45925281e-17 + syst_JES_EtaIntercalibration_Stat147: 1.45548276e-17 syst_JES_EtaIntercalibration_Stat148: 0.0 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 6.6575623729710565e-21 - syst_JES_EtaIntercalibration_Stat151: 7.42183815152835e-10 - syst_JES_EtaIntercalibration_Stat152: 4.360464195472771e-08 - syst_JES_EtaIntercalibration_Stat153: 6.06399571239954e-08 - syst_JES_EtaIntercalibration_Stat154: 9.039573586745097e-09 - syst_JES_EtaIntercalibration_Stat155: 6.571867371607556e-09 - syst_JES_EtaIntercalibration_Stat156: 6.990616997089743e-08 - syst_JES_EtaIntercalibration_Stat157: 8.050382102732764e-08 - syst_JES_EtaIntercalibration_Stat158: 1.9773007782075036e-08 - syst_JES_EtaIntercalibration_Stat159: 1.3278956336022308e-17 + syst_JES_EtaIntercalibration_Stat150: 6.65756237e-21 + syst_JES_EtaIntercalibration_Stat151: 7.42183815e-10 + syst_JES_EtaIntercalibration_Stat152: 4.36046420e-08 + syst_JES_EtaIntercalibration_Stat153: 6.06399571e-08 + syst_JES_EtaIntercalibration_Stat154: 9.03957359e-09 + syst_JES_EtaIntercalibration_Stat155: 6.57186737e-09 + syst_JES_EtaIntercalibration_Stat156: 6.99061700e-08 + syst_JES_EtaIntercalibration_Stat157: 8.05038210e-08 + syst_JES_EtaIntercalibration_Stat158: 1.97730078e-08 + syst_JES_EtaIntercalibration_Stat159: 1.32789563e-17 syst_JES_EtaIntercalibration_Stat16: 0.0 syst_JES_EtaIntercalibration_Stat160: 0.0 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 - syst_JES_EtaIntercalibration_Stat164: 1.459252805376779e-17 + syst_JES_EtaIntercalibration_Stat164: 1.45925281e-17 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 - syst_JES_EtaIntercalibration_Stat168: 2.0204372670290953e-20 - syst_JES_EtaIntercalibration_Stat169: 2.513307134036745e-08 + syst_JES_EtaIntercalibration_Stat168: 2.02043727e-20 + syst_JES_EtaIntercalibration_Stat169: 2.51330713e-08 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 1.3176043364758633e-07 - syst_JES_EtaIntercalibration_Stat171: 1.8783361653335647e-07 - syst_JES_EtaIntercalibration_Stat172: 1.4794027443532744e-08 - syst_JES_EtaIntercalibration_Stat173: 2.25695059759845e-08 - syst_JES_EtaIntercalibration_Stat174: 1.3730577118242333e-07 - syst_JES_EtaIntercalibration_Stat175: 2.200253501303884e-07 - syst_JES_EtaIntercalibration_Stat176: 1.0172334412401096e-08 - syst_JES_EtaIntercalibration_Stat177: 1.0159224527492243e-16 + syst_JES_EtaIntercalibration_Stat170: 1.31760434e-07 + syst_JES_EtaIntercalibration_Stat171: 1.87833617e-07 + syst_JES_EtaIntercalibration_Stat172: 1.47940274e-08 + syst_JES_EtaIntercalibration_Stat173: 2.25695060e-08 + syst_JES_EtaIntercalibration_Stat174: 1.37305771e-07 + syst_JES_EtaIntercalibration_Stat175: 2.20025350e-07 + syst_JES_EtaIntercalibration_Stat176: 1.01723344e-08 + syst_JES_EtaIntercalibration_Stat177: 1.01592245e-16 syst_JES_EtaIntercalibration_Stat178: 0.0 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 @@ -22340,17 +22340,17 @@ bins: syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 syst_JES_EtaIntercalibration_Stat184: 0.0 - syst_JES_EtaIntercalibration_Stat185: 1.2228278289208238e-08 - syst_JES_EtaIntercalibration_Stat186: 1.3824486274361155e-07 - syst_JES_EtaIntercalibration_Stat187: 9.070404993714448e-07 - syst_JES_EtaIntercalibration_Stat188: 7.984303163081923e-07 - syst_JES_EtaIntercalibration_Stat189: 1.0230227111359748e-07 + syst_JES_EtaIntercalibration_Stat185: 1.22282783e-08 + syst_JES_EtaIntercalibration_Stat186: 1.38244863e-07 + syst_JES_EtaIntercalibration_Stat187: 9.07040499e-07 + syst_JES_EtaIntercalibration_Stat188: 7.98430316e-07 + syst_JES_EtaIntercalibration_Stat189: 1.02302271e-07 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 4.1809479786287706e-08 - syst_JES_EtaIntercalibration_Stat191: 8.369631577913094e-07 - syst_JES_EtaIntercalibration_Stat192: 1.0696256073972798e-06 - syst_JES_EtaIntercalibration_Stat193: 6.459610417819328e-08 - syst_JES_EtaIntercalibration_Stat194: 9.076812257064702e-17 + syst_JES_EtaIntercalibration_Stat190: 4.18094798e-08 + syst_JES_EtaIntercalibration_Stat191: 8.36963158e-07 + syst_JES_EtaIntercalibration_Stat192: 1.06962561e-06 + syst_JES_EtaIntercalibration_Stat193: 6.45961042e-08 + syst_JES_EtaIntercalibration_Stat194: 9.07681226e-17 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 syst_JES_EtaIntercalibration_Stat197: 0.0 @@ -22358,70 +22358,70 @@ bins: syst_JES_EtaIntercalibration_Stat199: 0.0 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 1.2228278767629483e-08 - syst_JES_EtaIntercalibration_Stat201: 1.6009623691704937e-07 - syst_JES_EtaIntercalibration_Stat202: 1.7675437759784055e-06 - syst_JES_EtaIntercalibration_Stat203: 1.7381654121515594e-06 - syst_JES_EtaIntercalibration_Stat204: 1.672990307055005e-07 - syst_JES_EtaIntercalibration_Stat205: 8.703660537383108e-08 - syst_JES_EtaIntercalibration_Stat206: 1.7903491279635936e-06 - syst_JES_EtaIntercalibration_Stat207: 1.8436682863248477e-06 - syst_JES_EtaIntercalibration_Stat208: 2.92903414114619e-07 - syst_JES_EtaIntercalibration_Stat209: 9.669173618169981e-11 + syst_JES_EtaIntercalibration_Stat200: 1.22282788e-08 + syst_JES_EtaIntercalibration_Stat201: 1.60096237e-07 + syst_JES_EtaIntercalibration_Stat202: 1.76754378e-06 + syst_JES_EtaIntercalibration_Stat203: 1.73816541e-06 + syst_JES_EtaIntercalibration_Stat204: 1.67299031e-07 + syst_JES_EtaIntercalibration_Stat205: 8.70366054e-08 + syst_JES_EtaIntercalibration_Stat206: 1.79034913e-06 + syst_JES_EtaIntercalibration_Stat207: 1.84366829e-06 + syst_JES_EtaIntercalibration_Stat208: 2.92903414e-07 + syst_JES_EtaIntercalibration_Stat209: 9.66917362e-11 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 syst_JES_EtaIntercalibration_Stat211: 0.0 syst_JES_EtaIntercalibration_Stat212: 0.0 - syst_JES_EtaIntercalibration_Stat213: 1.2228278288919561e-08 - syst_JES_EtaIntercalibration_Stat214: 1.5838165929172482e-07 - syst_JES_EtaIntercalibration_Stat215: 2.0755078294239216e-06 - syst_JES_EtaIntercalibration_Stat216: 2.1181338484618956e-06 - syst_JES_EtaIntercalibration_Stat217: 2.0972049852124614e-07 - syst_JES_EtaIntercalibration_Stat218: 1.391871287152659e-07 - syst_JES_EtaIntercalibration_Stat219: 2.0001301832630796e-06 + syst_JES_EtaIntercalibration_Stat213: 1.22282783e-08 + syst_JES_EtaIntercalibration_Stat214: 1.58381659e-07 + syst_JES_EtaIntercalibration_Stat215: 2.07550783e-06 + syst_JES_EtaIntercalibration_Stat216: 2.11813385e-06 + syst_JES_EtaIntercalibration_Stat217: 2.09720499e-07 + syst_JES_EtaIntercalibration_Stat218: 1.39187129e-07 + syst_JES_EtaIntercalibration_Stat219: 2.00013018e-06 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 2.147036096575928e-06 - syst_JES_EtaIntercalibration_Stat221: 1.4305149798236997e-07 - syst_JES_EtaIntercalibration_Stat222: 9.663916800235554e-11 + syst_JES_EtaIntercalibration_Stat220: 2.14703610e-06 + syst_JES_EtaIntercalibration_Stat221: 1.43051498e-07 + syst_JES_EtaIntercalibration_Stat222: 9.66391680e-11 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 - syst_JES_EtaIntercalibration_Stat225: 6.299676340892442e-09 - syst_JES_EtaIntercalibration_Stat226: 4.981662774616523e-07 - syst_JES_EtaIntercalibration_Stat227: 5.7840790969695425e-06 - syst_JES_EtaIntercalibration_Stat228: 5.171816194529733e-06 - syst_JES_EtaIntercalibration_Stat229: 4.805289897602432e-07 + syst_JES_EtaIntercalibration_Stat225: 6.29967634e-09 + syst_JES_EtaIntercalibration_Stat226: 4.98166277e-07 + syst_JES_EtaIntercalibration_Stat227: 5.78407910e-06 + syst_JES_EtaIntercalibration_Stat228: 5.17181619e-06 + syst_JES_EtaIntercalibration_Stat229: 4.80528990e-07 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 5.408827414514166e-07 - syst_JES_EtaIntercalibration_Stat231: 6.475943869429383e-06 - syst_JES_EtaIntercalibration_Stat232: 6.080173846198807e-06 - syst_JES_EtaIntercalibration_Stat233: 5.550266907996407e-07 - syst_JES_EtaIntercalibration_Stat234: 3.429616888225272e-08 + syst_JES_EtaIntercalibration_Stat230: 5.40882741e-07 + syst_JES_EtaIntercalibration_Stat231: 6.47594387e-06 + syst_JES_EtaIntercalibration_Stat232: 6.08017385e-06 + syst_JES_EtaIntercalibration_Stat233: 5.55026691e-07 + syst_JES_EtaIntercalibration_Stat234: 3.42961689e-08 syst_JES_EtaIntercalibration_Stat235: 0.0 - syst_JES_EtaIntercalibration_Stat236: 1.2228278701436273e-08 - syst_JES_EtaIntercalibration_Stat237: 1.200190063073345e-07 - syst_JES_EtaIntercalibration_Stat238: 1.2481558075817298e-06 - syst_JES_EtaIntercalibration_Stat239: 8.0443705005426e-07 + syst_JES_EtaIntercalibration_Stat236: 1.22282787e-08 + syst_JES_EtaIntercalibration_Stat237: 1.20019006e-07 + syst_JES_EtaIntercalibration_Stat238: 1.24815581e-06 + syst_JES_EtaIntercalibration_Stat239: 8.04437050e-07 syst_JES_EtaIntercalibration_Stat24: 0.0 - syst_JES_EtaIntercalibration_Stat240: 3.397581014486631e-08 - syst_JES_EtaIntercalibration_Stat241: 6.423006675226175e-08 - syst_JES_EtaIntercalibration_Stat242: 6.456343450436942e-07 - syst_JES_EtaIntercalibration_Stat243: 1.1827323281283893e-06 - syst_JES_EtaIntercalibration_Stat244: 6.862817060070886e-08 - syst_JES_EtaIntercalibration_Stat245: 1.4601188307805637e-12 + syst_JES_EtaIntercalibration_Stat240: 3.39758101e-08 + syst_JES_EtaIntercalibration_Stat241: 6.42300668e-08 + syst_JES_EtaIntercalibration_Stat242: 6.45634345e-07 + syst_JES_EtaIntercalibration_Stat243: 1.18273233e-06 + syst_JES_EtaIntercalibration_Stat244: 6.86281706e-08 + syst_JES_EtaIntercalibration_Stat245: 1.46011883e-12 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 syst_JES_EtaIntercalibration_Stat27: 0.0 - syst_JES_EtaIntercalibration_Stat28: 1.1329344332308027e-23 - syst_JES_EtaIntercalibration_Stat29: 4.679289125497589e-22 + syst_JES_EtaIntercalibration_Stat28: 1.13293443e-23 + syst_JES_EtaIntercalibration_Stat29: 4.67928913e-22 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 2.8410799830346206e-21 - syst_JES_EtaIntercalibration_Stat31: 2.5819405492768416e-21 - syst_JES_EtaIntercalibration_Stat32: 3.967280019106289e-23 - syst_JES_EtaIntercalibration_Stat33: 5.451825929677139e-22 - syst_JES_EtaIntercalibration_Stat34: 1.0233822196536903e-08 - syst_JES_EtaIntercalibration_Stat35: 1.2704965974330145e-17 - syst_JES_EtaIntercalibration_Stat36: 1.2907527571150101e-21 - syst_JES_EtaIntercalibration_Stat37: 8.269676580737605e-24 + syst_JES_EtaIntercalibration_Stat30: 2.84107998e-21 + syst_JES_EtaIntercalibration_Stat31: 2.58194055e-21 + syst_JES_EtaIntercalibration_Stat32: 3.96728002e-23 + syst_JES_EtaIntercalibration_Stat33: 5.45182593e-22 + syst_JES_EtaIntercalibration_Stat34: 1.02338222e-08 + syst_JES_EtaIntercalibration_Stat35: 1.27049660e-17 + syst_JES_EtaIntercalibration_Stat36: 1.29075276e-21 + syst_JES_EtaIntercalibration_Stat37: 8.26967658e-24 syst_JES_EtaIntercalibration_Stat38: 0.0 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 @@ -22436,20 +22436,20 @@ bins: syst_JES_EtaIntercalibration_Stat48: 0.0 syst_JES_EtaIntercalibration_Stat49: 0.0 syst_JES_EtaIntercalibration_Stat5: 0.0 - syst_JES_EtaIntercalibration_Stat50: 1.1476568650951382e-23 - syst_JES_EtaIntercalibration_Stat51: 5.7221392422327515e-22 - syst_JES_EtaIntercalibration_Stat52: 2.0080949255451052e-20 - syst_JES_EtaIntercalibration_Stat53: 1.1666194613068993e-20 - syst_JES_EtaIntercalibration_Stat54: 1.8225038456749549e-22 - syst_JES_EtaIntercalibration_Stat55: 3.4041170838853355e-20 - syst_JES_EtaIntercalibration_Stat56: 1.0243348475960179e-08 - syst_JES_EtaIntercalibration_Stat57: 1.3717842404244917e-12 - syst_JES_EtaIntercalibration_Stat58: 1.1506054525770335e-21 - syst_JES_EtaIntercalibration_Stat59: 2.565525737056637e-23 + syst_JES_EtaIntercalibration_Stat50: 1.14765687e-23 + syst_JES_EtaIntercalibration_Stat51: 5.72213924e-22 + syst_JES_EtaIntercalibration_Stat52: 2.00809493e-20 + syst_JES_EtaIntercalibration_Stat53: 1.16661946e-20 + syst_JES_EtaIntercalibration_Stat54: 1.82250385e-22 + syst_JES_EtaIntercalibration_Stat55: 3.40411708e-20 + syst_JES_EtaIntercalibration_Stat56: 1.02433485e-08 + syst_JES_EtaIntercalibration_Stat57: 1.37178424e-12 + syst_JES_EtaIntercalibration_Stat58: 1.15060545e-21 + syst_JES_EtaIntercalibration_Stat59: 2.56552574e-23 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 3.575818892225947e-22 - syst_JES_EtaIntercalibration_Stat62: 3.575818892225947e-22 + syst_JES_EtaIntercalibration_Stat61: 3.57581889e-22 + syst_JES_EtaIntercalibration_Stat62: 3.57581889e-22 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 @@ -22457,223 +22457,223 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 1.1329344332308027e-23 + syst_JES_EtaIntercalibration_Stat7: 1.13293443e-23 syst_JES_EtaIntercalibration_Stat70: 0.0 syst_JES_EtaIntercalibration_Stat71: 0.0 - syst_JES_EtaIntercalibration_Stat72: 2.832769095778899e-23 - syst_JES_EtaIntercalibration_Stat73: 1.2379769637093414e-19 - syst_JES_EtaIntercalibration_Stat74: 1.0253740380155597e-08 - syst_JES_EtaIntercalibration_Stat75: 5.36242930988654e-10 - syst_JES_EtaIntercalibration_Stat76: 2.4860934716940955e-21 - syst_JES_EtaIntercalibration_Stat77: 2.822782086435295e-20 - syst_JES_EtaIntercalibration_Stat78: 9.89001011025065e-09 - syst_JES_EtaIntercalibration_Stat79: 2.115700061545525e-08 - syst_JES_EtaIntercalibration_Stat8: 2.1957594428197275e-22 - syst_JES_EtaIntercalibration_Stat80: 9.93885043654446e-21 - syst_JES_EtaIntercalibration_Stat81: 5.062784510523829e-23 - syst_JES_EtaIntercalibration_Stat82: 3.575818892225947e-22 - syst_JES_EtaIntercalibration_Stat83: 3.575818892225947e-22 - syst_JES_EtaIntercalibration_Stat84: 3.575818892225947e-22 + syst_JES_EtaIntercalibration_Stat72: 2.83276910e-23 + syst_JES_EtaIntercalibration_Stat73: 1.23797696e-19 + syst_JES_EtaIntercalibration_Stat74: 1.02537404e-08 + syst_JES_EtaIntercalibration_Stat75: 5.36242931e-10 + syst_JES_EtaIntercalibration_Stat76: 2.48609347e-21 + syst_JES_EtaIntercalibration_Stat77: 2.82278209e-20 + syst_JES_EtaIntercalibration_Stat78: 9.89001011e-09 + syst_JES_EtaIntercalibration_Stat79: 2.11570006e-08 + syst_JES_EtaIntercalibration_Stat8: 2.19575944e-22 + syst_JES_EtaIntercalibration_Stat80: 9.93885044e-21 + syst_JES_EtaIntercalibration_Stat81: 5.06278451e-23 + syst_JES_EtaIntercalibration_Stat82: 3.57581889e-22 + syst_JES_EtaIntercalibration_Stat83: 3.57581889e-22 + syst_JES_EtaIntercalibration_Stat84: 3.57581889e-22 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 syst_JES_EtaIntercalibration_Stat89: 0.0 - syst_JES_EtaIntercalibration_Stat9: 1.5244554831152008e-22 + syst_JES_EtaIntercalibration_Stat9: 1.52445548e-22 syst_JES_EtaIntercalibration_Stat90: 0.0 syst_JES_EtaIntercalibration_Stat91: 0.0 syst_JES_EtaIntercalibration_Stat92: 0.0 - syst_JES_EtaIntercalibration_Stat93: 3.9075066218753876e-23 - syst_JES_EtaIntercalibration_Stat94: 1.9058079730130212e-19 - syst_JES_EtaIntercalibration_Stat95: 1.025374037989579e-08 - syst_JES_EtaIntercalibration_Stat96: 9.998854564773907e-09 - syst_JES_EtaIntercalibration_Stat97: 6.721181144789583e-20 - syst_JES_EtaIntercalibration_Stat98: 1.867102768998e-20 - syst_JES_EtaIntercalibration_Stat99: 8.069624711369032e-09 - syst_JES_EtaIntercalibration_TotalStat_MJB: 9.287529313547279e-05 - syst_JES_Flavour_Comp: 0.00022063304376271475 - syst_JES_Gjet_Generator: 0.0002441880986043341 - syst_JES_Gjet_OOC: 0.00020292385271327766 - syst_JES_Gjet_Purity: 3.332500675168723e-05 - syst_JES_Gjet_Stat1: 1.1625116515545123e-06 - syst_JES_Gjet_Stat10: 4.647175997312776e-06 - syst_JES_Gjet_Stat11: 4.890602825828325e-06 - syst_JES_Gjet_Stat12: 9.581092682987677e-06 - syst_JES_Gjet_Stat13: 4.0915005499205296e-05 - syst_JES_Gjet_Stat14: 0.00010935542270504925 - syst_JES_Gjet_Stat15: 0.0001842122145787298 - syst_JES_Gjet_Stat2: 1.135919953165715e-06 - syst_JES_Gjet_Stat3: 1.4237037156655875e-06 - syst_JES_Gjet_Stat4: 1.0898337338787048e-06 - syst_JES_Gjet_Stat5: 1.4214452785809238e-06 - syst_JES_Gjet_Stat6: 4.558994050226431e-06 - syst_JES_Gjet_Stat7: 2.439183623674118e-06 - syst_JES_Gjet_Stat8: 1.4514999138821882e-06 - syst_JES_Gjet_Stat9: 2.660064425911523e-06 - syst_JES_Gjet_Veto: 0.00020977632731078119 - syst_JES_Gjet_dPhi: 2.2045557375580233e-05 - syst_JES_LArESZee: 0.0003637506391746961 - syst_JES_LArEsmear: 3.307024493407934e-05 - syst_JES_LAr_JVT: 4.237015105000217e-05 - syst_JES_MJB_Alpha: 5.188485978587588e-06 - syst_JES_MJB_Asym: 6.421971893429619e-05 - syst_JES_MJB_Beta: 3.418105615688316e-06 - syst_JES_MJB_Stat1: 7.580309626261977e-08 - syst_JES_MJB_Stat10: 2.658529057580526e-06 - syst_JES_MJB_Stat11: 3.6910010837169906e-06 - syst_JES_MJB_Stat12: 6.332334166798212e-06 - syst_JES_MJB_Stat13: 9.23307711437525e-06 - syst_JES_MJB_Stat14: 1.0708117610019046e-05 - syst_JES_MJB_Stat15: 2.546390386409751e-05 - syst_JES_MJB_Stat16: 4.214176876923892e-06 - syst_JES_MJB_Stat2: 2.1164672640983607e-07 - syst_JES_MJB_Stat3: 1.8093595220408797e-07 - syst_JES_MJB_Stat4: 2.1406523001178868e-07 - syst_JES_MJB_Stat5: 2.176691900568383e-07 - syst_JES_MJB_Stat6: 3.2961803394231936e-07 - syst_JES_MJB_Stat7: 6.010252740110019e-07 - syst_JES_MJB_Stat8: 1.0306641062926371e-06 - syst_JES_MJB_Stat9: 1.6405246112143517e-06 - syst_JES_MJB_Threshold: 4.0500199999506175e-05 - syst_JES_Pileup_MuOffset: 5.531538009450898e-05 - syst_JES_Pileup_NPVOffset: 5.6035128937123004e-05 - syst_JES_Pileup_Pt_term: 2.7165040033101364e-05 - syst_JES_PunchThrough_MC15: 7.828186124511859e-05 - syst_JES_SingleParticle_HighPt: 2.4946079351272814e-08 - syst_JES_Zjet_MC: 9.37856400255391e-05 - syst_JES_Zjet_MuScale: 7.012118652732568e-06 - syst_JES_Zjet_MuSmearID: 1.9978400211228125e-06 - syst_JES_Zjet_MuSmearMS: 2.4429324079883995e-05 - syst_JES_Zjet_OOC: 6.0736739087639535e-05 - syst_JES_Zjet_Stat1: 7.671898396094673e-06 - syst_JES_Zjet_Stat10: 4.371500057188608e-06 - syst_JES_Zjet_Stat11: 6.259215186427129e-06 - syst_JES_Zjet_Stat12: 1.4364448710270785e-05 - syst_JES_Zjet_Stat13: 2.3764044268600414e-05 - syst_JES_Zjet_Stat2: 1.3660258892129387e-07 - syst_JES_Zjet_Stat3: 4.024188210061751e-06 - syst_JES_Zjet_Stat4: 3.608223112558313e-06 - syst_JES_Zjet_Stat5: 4.0867135940753175e-06 - syst_JES_Zjet_Stat6: 3.0310253628104138e-06 - syst_JES_Zjet_Stat7: 3.768214912926278e-06 - syst_JES_Zjet_Stat8: 2.438248705526161e-06 - syst_JES_Zjet_Stat9: 2.8992983633975994e-06 - syst_JES_Zjet_Veto: 1.1379438156165707e-05 - syst_JES_Zjet_dPhi: 1.0602693337072426e-05 - syst_PRW: 6.682e-06 - syst_Unfolding_bias: 6.947e-06 - syst_cleaning: 5.5590170668923114e-05 - syst_lumi: 0.0001817 - syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 8.847509649613275e-06 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 3.80759513177281e-05 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 8.613142225692085e-06 + syst_JES_EtaIntercalibration_Stat93: 3.90750662e-23 + syst_JES_EtaIntercalibration_Stat94: 1.90580797e-19 + syst_JES_EtaIntercalibration_Stat95: 1.02537404e-08 + syst_JES_EtaIntercalibration_Stat96: 9.99885456e-09 + syst_JES_EtaIntercalibration_Stat97: 6.72118114e-20 + syst_JES_EtaIntercalibration_Stat98: 1.86710277e-20 + syst_JES_EtaIntercalibration_Stat99: 8.06962471e-09 + syst_JES_EtaIntercalibration_TotalStat_MJB: 9.28752931e-05 + syst_JES_Flavour_Comp: 2.20633044e-04 + syst_JES_Gjet_Generator: 2.44188099e-04 + syst_JES_Gjet_OOC: 2.02923853e-04 + syst_JES_Gjet_Purity: 3.33250068e-05 + syst_JES_Gjet_Stat1: 1.16251165e-06 + syst_JES_Gjet_Stat10: 4.64717600e-06 + syst_JES_Gjet_Stat11: 4.89060283e-06 + syst_JES_Gjet_Stat12: 9.58109268e-06 + syst_JES_Gjet_Stat13: 4.09150055e-05 + syst_JES_Gjet_Stat14: 1.09355423e-04 + syst_JES_Gjet_Stat15: 1.84212215e-04 + syst_JES_Gjet_Stat2: 1.13591995e-06 + syst_JES_Gjet_Stat3: 1.42370372e-06 + syst_JES_Gjet_Stat4: 1.08983373e-06 + syst_JES_Gjet_Stat5: 1.42144528e-06 + syst_JES_Gjet_Stat6: 4.55899405e-06 + syst_JES_Gjet_Stat7: 2.43918362e-06 + syst_JES_Gjet_Stat8: 1.45149991e-06 + syst_JES_Gjet_Stat9: 2.66006443e-06 + syst_JES_Gjet_Veto: 2.09776327e-04 + syst_JES_Gjet_dPhi: 2.20455574e-05 + syst_JES_LArESZee: 3.63750639e-04 + syst_JES_LArEsmear: 3.30702449e-05 + syst_JES_LAr_JVT: 4.23701511e-05 + syst_JES_MJB_Alpha: 5.18848598e-06 + syst_JES_MJB_Asym: 6.42197189e-05 + syst_JES_MJB_Beta: 3.41810562e-06 + syst_JES_MJB_Stat1: 7.58030963e-08 + syst_JES_MJB_Stat10: 2.65852906e-06 + syst_JES_MJB_Stat11: 3.69100108e-06 + syst_JES_MJB_Stat12: 6.33233417e-06 + syst_JES_MJB_Stat13: 9.23307711e-06 + syst_JES_MJB_Stat14: 1.07081176e-05 + syst_JES_MJB_Stat15: 2.54639039e-05 + syst_JES_MJB_Stat16: 4.21417688e-06 + syst_JES_MJB_Stat2: 2.11646726e-07 + syst_JES_MJB_Stat3: 1.80935952e-07 + syst_JES_MJB_Stat4: 2.14065230e-07 + syst_JES_MJB_Stat5: 2.17669190e-07 + syst_JES_MJB_Stat6: 3.29618034e-07 + syst_JES_MJB_Stat7: 6.01025274e-07 + syst_JES_MJB_Stat8: 1.03066411e-06 + syst_JES_MJB_Stat9: 1.64052461e-06 + syst_JES_MJB_Threshold: 4.05002000e-05 + syst_JES_Pileup_MuOffset: 5.53153801e-05 + syst_JES_Pileup_NPVOffset: 5.60351289e-05 + syst_JES_Pileup_Pt_term: 2.71650400e-05 + syst_JES_PunchThrough_MC15: 7.82818612e-05 + syst_JES_SingleParticle_HighPt: 2.49460794e-08 + syst_JES_Zjet_MC: 9.37856400e-05 + syst_JES_Zjet_MuScale: 7.01211865e-06 + syst_JES_Zjet_MuSmearID: 1.99784002e-06 + syst_JES_Zjet_MuSmearMS: 2.44293241e-05 + syst_JES_Zjet_OOC: 6.07367391e-05 + syst_JES_Zjet_Stat1: 7.67189840e-06 + syst_JES_Zjet_Stat10: 4.37150006e-06 + syst_JES_Zjet_Stat11: 6.25921519e-06 + syst_JES_Zjet_Stat12: 1.43644487e-05 + syst_JES_Zjet_Stat13: 2.37640443e-05 + syst_JES_Zjet_Stat2: 1.36602589e-07 + syst_JES_Zjet_Stat3: 4.02418821e-06 + syst_JES_Zjet_Stat4: 3.60822311e-06 + syst_JES_Zjet_Stat5: 4.08671359e-06 + syst_JES_Zjet_Stat6: 3.03102536e-06 + syst_JES_Zjet_Stat7: 3.76821491e-06 + syst_JES_Zjet_Stat8: 2.43824871e-06 + syst_JES_Zjet_Stat9: 2.89929836e-06 + syst_JES_Zjet_Veto: 1.13794382e-05 + syst_JES_Zjet_dPhi: 1.06026933e-05 + syst_PRW: 6.68200000e-06 + syst_Unfolding_bias: 6.94700000e-06 + syst_cleaning: 5.55901707e-05 + syst_lumi: 1.81700000e-04 + syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 8.84750965e-06 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 3.80759513e-05 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 8.61314223e-06 syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 3.335554639036812e-05 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.951558095471411e-05 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 5.3649943848992054e-05 -- stat: 7.536e-05 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 3.33555464e-05 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.95155810e-05 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 5.36499438e-05 +- stat: 7.53600000e-05 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 8.475529880190382e-06 - syst_JER_NP1: 1.573395144266055e-06 - syst_JER_NP2: 5.970823289128561e-06 - syst_JER_NP3: 5.632854582713813e-07 - syst_JER_NP4: 2.5119798964163707e-06 - syst_JER_NP5: 3.0599308815723273e-06 - syst_JER_NP6: 2.3320068610533716e-06 - syst_JER_NP7: 5.930543111994165e-07 - syst_JER_NP8: 2.3360048694298564e-06 - syst_JES_EtaIntercalibration_Modelling: 7.465411760244709e-05 - syst_JES_EtaIntercalibration_NonClosure: 1.1805658304389469e-19 + syst_JER_NP0: 8.47552988e-06 + syst_JER_NP1: 1.57339514e-06 + syst_JER_NP2: 5.97082329e-06 + syst_JER_NP3: 5.63285458e-07 + syst_JER_NP4: 2.51197990e-06 + syst_JER_NP5: 3.05993088e-06 + syst_JER_NP6: 2.33200686e-06 + syst_JER_NP7: 5.93054311e-07 + syst_JER_NP8: 2.33600487e-06 + syst_JES_EtaIntercalibration_Modelling: 7.46541176e-05 + syst_JES_EtaIntercalibration_NonClosure: 1.18056583e-19 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 1.2176317177758845e-09 - syst_JES_EtaIntercalibration_Stat101: 8.314022973266311e-22 - syst_JES_EtaIntercalibration_Stat102: 1.4075426529949278e-23 - syst_JES_EtaIntercalibration_Stat103: 5.533036304778779e-23 - syst_JES_EtaIntercalibration_Stat104: 5.533036304778779e-23 - syst_JES_EtaIntercalibration_Stat105: 5.533036304778779e-23 + syst_JES_EtaIntercalibration_Stat100: 1.21763172e-09 + syst_JES_EtaIntercalibration_Stat101: 8.31402297e-22 + syst_JES_EtaIntercalibration_Stat102: 1.40754265e-23 + syst_JES_EtaIntercalibration_Stat103: 5.53303630e-23 + syst_JES_EtaIntercalibration_Stat104: 5.53303630e-23 + syst_JES_EtaIntercalibration_Stat105: 5.53303630e-23 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 8.064428560040692e-21 - syst_JES_EtaIntercalibration_Stat111: 8.064428560040692e-21 + syst_JES_EtaIntercalibration_Stat110: 8.06442856e-21 + syst_JES_EtaIntercalibration_Stat111: 8.06442856e-21 syst_JES_EtaIntercalibration_Stat112: 0.0 - syst_JES_EtaIntercalibration_Stat113: 1.7855485172629726e-22 - syst_JES_EtaIntercalibration_Stat114: 8.715679540739857e-10 - syst_JES_EtaIntercalibration_Stat115: 2.3858814786153985e-08 - syst_JES_EtaIntercalibration_Stat116: 1.6426174478557082e-08 - syst_JES_EtaIntercalibration_Stat117: 1.6801853558461937e-18 - syst_JES_EtaIntercalibration_Stat118: 1.614271352698794e-09 - syst_JES_EtaIntercalibration_Stat119: 6.2178567649954756e-09 - syst_JES_EtaIntercalibration_Stat12: 2.2432485104586607e-21 - syst_JES_EtaIntercalibration_Stat120: 6.294596253930827e-09 - syst_JES_EtaIntercalibration_Stat121: 5.042629671114071e-18 - syst_JES_EtaIntercalibration_Stat122: 1.3981527920796066e-22 - syst_JES_EtaIntercalibration_Stat123: 5.533036304778779e-23 - syst_JES_EtaIntercalibration_Stat124: 5.533036304778779e-23 - syst_JES_EtaIntercalibration_Stat125: 5.533036304778779e-23 + syst_JES_EtaIntercalibration_Stat113: 1.78554852e-22 + syst_JES_EtaIntercalibration_Stat114: 8.71567954e-10 + syst_JES_EtaIntercalibration_Stat115: 2.38588148e-08 + syst_JES_EtaIntercalibration_Stat116: 1.64261745e-08 + syst_JES_EtaIntercalibration_Stat117: 1.68018536e-18 + syst_JES_EtaIntercalibration_Stat118: 1.61427135e-09 + syst_JES_EtaIntercalibration_Stat119: 6.21785676e-09 + syst_JES_EtaIntercalibration_Stat12: 2.24324851e-21 + syst_JES_EtaIntercalibration_Stat120: 6.29459625e-09 + syst_JES_EtaIntercalibration_Stat121: 5.04262967e-18 + syst_JES_EtaIntercalibration_Stat122: 1.39815279e-22 + syst_JES_EtaIntercalibration_Stat123: 5.53303630e-23 + syst_JES_EtaIntercalibration_Stat124: 5.53303630e-23 + syst_JES_EtaIntercalibration_Stat125: 5.53303630e-23 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 6.360956590796702e-19 - syst_JES_EtaIntercalibration_Stat129: 6.334531478396803e-19 - syst_JES_EtaIntercalibration_Stat13: 3.779431245035158e-21 - syst_JES_EtaIntercalibration_Stat130: 8.064428560040692e-21 - syst_JES_EtaIntercalibration_Stat131: 2.292369243817409e-24 - syst_JES_EtaIntercalibration_Stat132: 1.5086485457852667e-19 - syst_JES_EtaIntercalibration_Stat133: 2.433531384321493e-09 - syst_JES_EtaIntercalibration_Stat134: 1.0308687695337366e-08 - syst_JES_EtaIntercalibration_Stat135: 1.676625548864031e-08 - syst_JES_EtaIntercalibration_Stat136: 2.397158318027308e-08 - syst_JES_EtaIntercalibration_Stat137: 4.311871171544901e-09 - syst_JES_EtaIntercalibration_Stat138: 2.2054110999992723e-08 - syst_JES_EtaIntercalibration_Stat139: 2.0660346076481876e-08 - syst_JES_EtaIntercalibration_Stat14: 6.745471870076992e-24 - syst_JES_EtaIntercalibration_Stat140: 3.2959193993371186e-12 - syst_JES_EtaIntercalibration_Stat141: 5.586740823573515e-19 + syst_JES_EtaIntercalibration_Stat128: 6.36095659e-19 + syst_JES_EtaIntercalibration_Stat129: 6.33453148e-19 + syst_JES_EtaIntercalibration_Stat13: 3.77943125e-21 + syst_JES_EtaIntercalibration_Stat130: 8.06442856e-21 + syst_JES_EtaIntercalibration_Stat131: 2.29236924e-24 + syst_JES_EtaIntercalibration_Stat132: 1.50864855e-19 + syst_JES_EtaIntercalibration_Stat133: 2.43353138e-09 + syst_JES_EtaIntercalibration_Stat134: 1.03086877e-08 + syst_JES_EtaIntercalibration_Stat135: 1.67662555e-08 + syst_JES_EtaIntercalibration_Stat136: 2.39715832e-08 + syst_JES_EtaIntercalibration_Stat137: 4.31187117e-09 + syst_JES_EtaIntercalibration_Stat138: 2.20541110e-08 + syst_JES_EtaIntercalibration_Stat139: 2.06603461e-08 + syst_JES_EtaIntercalibration_Stat14: 6.74547187e-24 + syst_JES_EtaIntercalibration_Stat140: 3.29591940e-12 + syst_JES_EtaIntercalibration_Stat141: 5.58674082e-19 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 5.533036304778779e-23 - syst_JES_EtaIntercalibration_Stat144: 5.533036304778779e-23 + syst_JES_EtaIntercalibration_Stat143: 5.53303630e-23 + syst_JES_EtaIntercalibration_Stat144: 5.53303630e-23 syst_JES_EtaIntercalibration_Stat145: 0.0 - syst_JES_EtaIntercalibration_Stat146: 6.360956590796702e-19 - syst_JES_EtaIntercalibration_Stat147: 6.334531478396803e-19 + syst_JES_EtaIntercalibration_Stat146: 6.36095659e-19 + syst_JES_EtaIntercalibration_Stat147: 6.33453148e-19 syst_JES_EtaIntercalibration_Stat148: 0.0 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 5.496014737971506e-22 - syst_JES_EtaIntercalibration_Stat151: 2.434397408512986e-09 - syst_JES_EtaIntercalibration_Stat152: 9.305285001949161e-09 - syst_JES_EtaIntercalibration_Stat153: 1.8415663353515126e-08 - syst_JES_EtaIntercalibration_Stat154: 3.125485695208006e-09 - syst_JES_EtaIntercalibration_Stat155: 4.684336105575688e-09 - syst_JES_EtaIntercalibration_Stat156: 2.9493929460144845e-08 - syst_JES_EtaIntercalibration_Stat157: 2.986885053027652e-08 - syst_JES_EtaIntercalibration_Stat158: 1.600625815111077e-09 - syst_JES_EtaIntercalibration_Stat159: 5.622839208531286e-19 + syst_JES_EtaIntercalibration_Stat150: 5.49601474e-22 + syst_JES_EtaIntercalibration_Stat151: 2.43439741e-09 + syst_JES_EtaIntercalibration_Stat152: 9.30528500e-09 + syst_JES_EtaIntercalibration_Stat153: 1.84156634e-08 + syst_JES_EtaIntercalibration_Stat154: 3.12548570e-09 + syst_JES_EtaIntercalibration_Stat155: 4.68433611e-09 + syst_JES_EtaIntercalibration_Stat156: 2.94939295e-08 + syst_JES_EtaIntercalibration_Stat157: 2.98688505e-08 + syst_JES_EtaIntercalibration_Stat158: 1.60062582e-09 + syst_JES_EtaIntercalibration_Stat159: 5.62283921e-19 syst_JES_EtaIntercalibration_Stat16: 0.0 syst_JES_EtaIntercalibration_Stat160: 0.0 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 - syst_JES_EtaIntercalibration_Stat164: 6.360956590796702e-19 + syst_JES_EtaIntercalibration_Stat164: 6.36095659e-19 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 - syst_JES_EtaIntercalibration_Stat168: 3.822636132304513e-21 - syst_JES_EtaIntercalibration_Stat169: 5.114882267217888e-09 + syst_JES_EtaIntercalibration_Stat168: 3.82263613e-21 + syst_JES_EtaIntercalibration_Stat169: 5.11488227e-09 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 4.3644753121079736e-08 - syst_JES_EtaIntercalibration_Stat171: 5.1364317137483686e-08 - syst_JES_EtaIntercalibration_Stat172: 5.826547777200492e-09 - syst_JES_EtaIntercalibration_Stat173: 8.862716513575283e-09 - syst_JES_EtaIntercalibration_Stat174: 6.920329959618978e-08 - syst_JES_EtaIntercalibration_Stat175: 4.229536942739713e-08 - syst_JES_EtaIntercalibration_Stat176: 4.783058308468562e-09 - syst_JES_EtaIntercalibration_Stat177: 4.0391871298566996e-18 + syst_JES_EtaIntercalibration_Stat170: 4.36447531e-08 + syst_JES_EtaIntercalibration_Stat171: 5.13643171e-08 + syst_JES_EtaIntercalibration_Stat172: 5.82654778e-09 + syst_JES_EtaIntercalibration_Stat173: 8.86271651e-09 + syst_JES_EtaIntercalibration_Stat174: 6.92032996e-08 + syst_JES_EtaIntercalibration_Stat175: 4.22953694e-08 + syst_JES_EtaIntercalibration_Stat176: 4.78305831e-09 + syst_JES_EtaIntercalibration_Stat177: 4.03918713e-18 syst_JES_EtaIntercalibration_Stat178: 0.0 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 @@ -22682,17 +22682,17 @@ bins: syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 syst_JES_EtaIntercalibration_Stat184: 0.0 - syst_JES_EtaIntercalibration_Stat185: 1.0026841995141296e-09 - syst_JES_EtaIntercalibration_Stat186: 2.5892279679472027e-08 - syst_JES_EtaIntercalibration_Stat187: 3.8697357467920213e-07 - syst_JES_EtaIntercalibration_Stat188: 2.758626968257941e-07 - syst_JES_EtaIntercalibration_Stat189: 3.1115854479670005e-08 + syst_JES_EtaIntercalibration_Stat185: 1.00268420e-09 + syst_JES_EtaIntercalibration_Stat186: 2.58922797e-08 + syst_JES_EtaIntercalibration_Stat187: 3.86973575e-07 + syst_JES_EtaIntercalibration_Stat188: 2.75862697e-07 + syst_JES_EtaIntercalibration_Stat189: 3.11158545e-08 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 1.601575807603249e-08 - syst_JES_EtaIntercalibration_Stat191: 2.651367713086965e-07 - syst_JES_EtaIntercalibration_Stat192: 3.751016262294793e-07 - syst_JES_EtaIntercalibration_Stat193: 3.6336057504908263e-08 - syst_JES_EtaIntercalibration_Stat194: 3.312373964394721e-18 + syst_JES_EtaIntercalibration_Stat190: 1.60157581e-08 + syst_JES_EtaIntercalibration_Stat191: 2.65136771e-07 + syst_JES_EtaIntercalibration_Stat192: 3.75101626e-07 + syst_JES_EtaIntercalibration_Stat193: 3.63360575e-08 + syst_JES_EtaIntercalibration_Stat194: 3.31237396e-18 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 syst_JES_EtaIntercalibration_Stat197: 0.0 @@ -22700,70 +22700,70 @@ bins: syst_JES_EtaIntercalibration_Stat199: 0.0 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 1.002770817379404e-09 - syst_JES_EtaIntercalibration_Stat201: 6.67753209127444e-08 - syst_JES_EtaIntercalibration_Stat202: 7.26161860400283e-07 - syst_JES_EtaIntercalibration_Stat203: 6.788195397158217e-07 - syst_JES_EtaIntercalibration_Stat204: 5.195141095292793e-08 - syst_JES_EtaIntercalibration_Stat205: 5.463478447838885e-08 - syst_JES_EtaIntercalibration_Stat206: 6.848035685508655e-07 - syst_JES_EtaIntercalibration_Stat207: 6.443011097305359e-07 - syst_JES_EtaIntercalibration_Stat208: 5.794892643526711e-08 - syst_JES_EtaIntercalibration_Stat209: 3.2831022974502837e-12 + syst_JES_EtaIntercalibration_Stat200: 1.00277082e-09 + syst_JES_EtaIntercalibration_Stat201: 6.67753209e-08 + syst_JES_EtaIntercalibration_Stat202: 7.26161860e-07 + syst_JES_EtaIntercalibration_Stat203: 6.78819540e-07 + syst_JES_EtaIntercalibration_Stat204: 5.19514110e-08 + syst_JES_EtaIntercalibration_Stat205: 5.46347845e-08 + syst_JES_EtaIntercalibration_Stat206: 6.84803569e-07 + syst_JES_EtaIntercalibration_Stat207: 6.44301110e-07 + syst_JES_EtaIntercalibration_Stat208: 5.79489264e-08 + syst_JES_EtaIntercalibration_Stat209: 3.28310230e-12 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 syst_JES_EtaIntercalibration_Stat211: 0.0 syst_JES_EtaIntercalibration_Stat212: 0.0 - syst_JES_EtaIntercalibration_Stat213: 1.0027708019765655e-09 - syst_JES_EtaIntercalibration_Stat214: 6.405450491573563e-08 - syst_JES_EtaIntercalibration_Stat215: 8.145133807986213e-07 - syst_JES_EtaIntercalibration_Stat216: 8.339182393976042e-07 - syst_JES_EtaIntercalibration_Stat217: 6.024841138984496e-08 - syst_JES_EtaIntercalibration_Stat218: 6.656367984869825e-08 - syst_JES_EtaIntercalibration_Stat219: 7.660033420292629e-07 + syst_JES_EtaIntercalibration_Stat213: 1.00277080e-09 + syst_JES_EtaIntercalibration_Stat214: 6.40545049e-08 + syst_JES_EtaIntercalibration_Stat215: 8.14513381e-07 + syst_JES_EtaIntercalibration_Stat216: 8.33918239e-07 + syst_JES_EtaIntercalibration_Stat217: 6.02484114e-08 + syst_JES_EtaIntercalibration_Stat218: 6.65636798e-08 + syst_JES_EtaIntercalibration_Stat219: 7.66003342e-07 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 7.68479946062355e-07 - syst_JES_EtaIntercalibration_Stat221: 4.184364318507651e-08 - syst_JES_EtaIntercalibration_Stat222: 3.281728787250251e-12 + syst_JES_EtaIntercalibration_Stat220: 7.68479946e-07 + syst_JES_EtaIntercalibration_Stat221: 4.18436432e-08 + syst_JES_EtaIntercalibration_Stat222: 3.28172879e-12 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 - syst_JES_EtaIntercalibration_Stat225: 2.206341584501367e-09 - syst_JES_EtaIntercalibration_Stat226: 2.4040866768899995e-07 - syst_JES_EtaIntercalibration_Stat227: 2.22178773738627e-06 - syst_JES_EtaIntercalibration_Stat228: 1.998420876592316e-06 - syst_JES_EtaIntercalibration_Stat229: 1.8135232973413933e-07 + syst_JES_EtaIntercalibration_Stat225: 2.20634158e-09 + syst_JES_EtaIntercalibration_Stat226: 2.40408668e-07 + syst_JES_EtaIntercalibration_Stat227: 2.22178774e-06 + syst_JES_EtaIntercalibration_Stat228: 1.99842088e-06 + syst_JES_EtaIntercalibration_Stat229: 1.81352330e-07 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 1.6720768523007548e-07 - syst_JES_EtaIntercalibration_Stat231: 2.5165358630466602e-06 - syst_JES_EtaIntercalibration_Stat232: 2.2424234100633177e-06 - syst_JES_EtaIntercalibration_Stat233: 1.8619776448711732e-07 - syst_JES_EtaIntercalibration_Stat234: 2.260044253991501e-09 + syst_JES_EtaIntercalibration_Stat230: 1.67207685e-07 + syst_JES_EtaIntercalibration_Stat231: 2.51653586e-06 + syst_JES_EtaIntercalibration_Stat232: 2.24242341e-06 + syst_JES_EtaIntercalibration_Stat233: 1.86197764e-07 + syst_JES_EtaIntercalibration_Stat234: 2.26004425e-09 syst_JES_EtaIntercalibration_Stat235: 0.0 - syst_JES_EtaIntercalibration_Stat236: 1.0027708150420014e-09 - syst_JES_EtaIntercalibration_Stat237: 3.794727548520446e-08 - syst_JES_EtaIntercalibration_Stat238: 5.042053624268588e-07 - syst_JES_EtaIntercalibration_Stat239: 3.1798504681824265e-07 + syst_JES_EtaIntercalibration_Stat236: 1.00277082e-09 + syst_JES_EtaIntercalibration_Stat237: 3.79472755e-08 + syst_JES_EtaIntercalibration_Stat238: 5.04205362e-07 + syst_JES_EtaIntercalibration_Stat239: 3.17985047e-07 syst_JES_EtaIntercalibration_Stat24: 0.0 - syst_JES_EtaIntercalibration_Stat240: 3.438970658133041e-08 - syst_JES_EtaIntercalibration_Stat241: 3.7568045504124914e-08 - syst_JES_EtaIntercalibration_Stat242: 2.458962382794824e-07 - syst_JES_EtaIntercalibration_Stat243: 4.043624858960089e-07 - syst_JES_EtaIntercalibration_Stat244: 3.7881289576781834e-08 - syst_JES_EtaIntercalibration_Stat245: 3.7758707605001524e-14 + syst_JES_EtaIntercalibration_Stat240: 3.43897066e-08 + syst_JES_EtaIntercalibration_Stat241: 3.75680455e-08 + syst_JES_EtaIntercalibration_Stat242: 2.45896238e-07 + syst_JES_EtaIntercalibration_Stat243: 4.04362486e-07 + syst_JES_EtaIntercalibration_Stat244: 3.78812896e-08 + syst_JES_EtaIntercalibration_Stat245: 3.77587076e-14 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 syst_JES_EtaIntercalibration_Stat27: 0.0 - syst_JES_EtaIntercalibration_Stat28: 1.917380243978747e-24 - syst_JES_EtaIntercalibration_Stat29: 5.402044890594671e-23 + syst_JES_EtaIntercalibration_Stat28: 1.91738024e-24 + syst_JES_EtaIntercalibration_Stat29: 5.40204489e-23 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 2.2106141471319684e-22 - syst_JES_EtaIntercalibration_Stat31: 2.208911666409501e-22 - syst_JES_EtaIntercalibration_Stat32: 6.443965173113523e-24 - syst_JES_EtaIntercalibration_Stat33: 7.298375591013387e-23 - syst_JES_EtaIntercalibration_Stat34: 1.6186014796719378e-09 - syst_JES_EtaIntercalibration_Stat35: 5.311649369421217e-19 - syst_JES_EtaIntercalibration_Stat36: 1.1975071899575384e-22 - syst_JES_EtaIntercalibration_Stat37: 1.3994970525156528e-24 + syst_JES_EtaIntercalibration_Stat30: 2.21061415e-22 + syst_JES_EtaIntercalibration_Stat31: 2.20891167e-22 + syst_JES_EtaIntercalibration_Stat32: 6.44396517e-24 + syst_JES_EtaIntercalibration_Stat33: 7.29837559e-23 + syst_JES_EtaIntercalibration_Stat34: 1.61860148e-09 + syst_JES_EtaIntercalibration_Stat35: 5.31164937e-19 + syst_JES_EtaIntercalibration_Stat36: 1.19750719e-22 + syst_JES_EtaIntercalibration_Stat37: 1.39949705e-24 syst_JES_EtaIntercalibration_Stat38: 0.0 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 @@ -22778,20 +22778,20 @@ bins: syst_JES_EtaIntercalibration_Stat48: 0.0 syst_JES_EtaIntercalibration_Stat49: 0.0 syst_JES_EtaIntercalibration_Stat5: 0.0 - syst_JES_EtaIntercalibration_Stat50: 1.941628955284711e-24 - syst_JES_EtaIntercalibration_Stat51: 6.492613726381695e-23 - syst_JES_EtaIntercalibration_Stat52: 2.4374996923076724e-21 - syst_JES_EtaIntercalibration_Stat53: 7.378943519739123e-22 - syst_JES_EtaIntercalibration_Stat54: 1.798481750671938e-23 - syst_JES_EtaIntercalibration_Stat55: 2.3291411429269376e-21 - syst_JES_EtaIntercalibration_Stat56: 1.6168694288657474e-09 - syst_JES_EtaIntercalibration_Stat57: 3.531651601598153e-14 - syst_JES_EtaIntercalibration_Stat58: 8.857284163331332e-23 - syst_JES_EtaIntercalibration_Stat59: 4.224230196142251e-24 + syst_JES_EtaIntercalibration_Stat50: 1.94162896e-24 + syst_JES_EtaIntercalibration_Stat51: 6.49261373e-23 + syst_JES_EtaIntercalibration_Stat52: 2.43749969e-21 + syst_JES_EtaIntercalibration_Stat53: 7.37894352e-22 + syst_JES_EtaIntercalibration_Stat54: 1.79848175e-23 + syst_JES_EtaIntercalibration_Stat55: 2.32914114e-21 + syst_JES_EtaIntercalibration_Stat56: 1.61686943e-09 + syst_JES_EtaIntercalibration_Stat57: 3.53165160e-14 + syst_JES_EtaIntercalibration_Stat58: 8.85728416e-23 + syst_JES_EtaIntercalibration_Stat59: 4.22423020e-24 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 5.533036304778779e-23 - syst_JES_EtaIntercalibration_Stat62: 5.533036304778779e-23 + syst_JES_EtaIntercalibration_Stat61: 5.53303630e-23 + syst_JES_EtaIntercalibration_Stat62: 5.53303630e-23 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 @@ -22799,223 +22799,223 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 1.917380243978747e-24 + syst_JES_EtaIntercalibration_Stat7: 1.91738024e-24 syst_JES_EtaIntercalibration_Stat70: 0.0 syst_JES_EtaIntercalibration_Stat71: 0.0 - syst_JES_EtaIntercalibration_Stat72: 7.077159599726431e-24 - syst_JES_EtaIntercalibration_Stat73: 7.525184755705338e-21 - syst_JES_EtaIntercalibration_Stat74: 8.966826904546449e-10 - syst_JES_EtaIntercalibration_Stat75: 1.1406420637238934e-11 - syst_JES_EtaIntercalibration_Stat76: 9.076983020255134e-23 - syst_JES_EtaIntercalibration_Stat77: 1.9315946779798293e-21 - syst_JES_EtaIntercalibration_Stat78: 1.524204710703538e-09 - syst_JES_EtaIntercalibration_Stat79: 7.316182611218685e-09 - syst_JES_EtaIntercalibration_Stat8: 3.3060363530215455e-23 - syst_JES_EtaIntercalibration_Stat80: 8.09025059871448e-22 - syst_JES_EtaIntercalibration_Stat81: 7.950979232144931e-24 - syst_JES_EtaIntercalibration_Stat82: 5.533036304778779e-23 - syst_JES_EtaIntercalibration_Stat83: 5.533036304778779e-23 - syst_JES_EtaIntercalibration_Stat84: 5.533036304778779e-23 + syst_JES_EtaIntercalibration_Stat72: 7.07715960e-24 + syst_JES_EtaIntercalibration_Stat73: 7.52518476e-21 + syst_JES_EtaIntercalibration_Stat74: 8.96682690e-10 + syst_JES_EtaIntercalibration_Stat75: 1.14064206e-11 + syst_JES_EtaIntercalibration_Stat76: 9.07698302e-23 + syst_JES_EtaIntercalibration_Stat77: 1.93159468e-21 + syst_JES_EtaIntercalibration_Stat78: 1.52420471e-09 + syst_JES_EtaIntercalibration_Stat79: 7.31618261e-09 + syst_JES_EtaIntercalibration_Stat8: 3.30603635e-23 + syst_JES_EtaIntercalibration_Stat80: 8.09025060e-22 + syst_JES_EtaIntercalibration_Stat81: 7.95097923e-24 + syst_JES_EtaIntercalibration_Stat82: 5.53303630e-23 + syst_JES_EtaIntercalibration_Stat83: 5.53303630e-23 + syst_JES_EtaIntercalibration_Stat84: 5.53303630e-23 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 syst_JES_EtaIntercalibration_Stat89: 0.0 - syst_JES_EtaIntercalibration_Stat9: 1.939327911932379e-23 + syst_JES_EtaIntercalibration_Stat9: 1.93932791e-23 syst_JES_EtaIntercalibration_Stat90: 0.0 syst_JES_EtaIntercalibration_Stat91: 0.0 syst_JES_EtaIntercalibration_Stat92: 0.0 - syst_JES_EtaIntercalibration_Stat93: 8.500905363548049e-24 - syst_JES_EtaIntercalibration_Stat94: 1.2262844317286263e-20 - syst_JES_EtaIntercalibration_Stat95: 8.96682690347835e-10 - syst_JES_EtaIntercalibration_Stat96: 3.5114283261100462e-09 - syst_JES_EtaIntercalibration_Stat97: 4.253599758096077e-21 - syst_JES_EtaIntercalibration_Stat98: 1.2834e-21 - syst_JES_EtaIntercalibration_Stat99: 1.5675059808970323e-09 - syst_JES_EtaIntercalibration_TotalStat_MJB: 4.0750353372700955e-05 - syst_JES_Flavour_Comp: 7.635060968977261e-05 - syst_JES_Gjet_Generator: 9.389299654393825e-05 - syst_JES_Gjet_OOC: 7.775590958248769e-05 - syst_JES_Gjet_Purity: 1.0330586091795565e-05 - syst_JES_Gjet_Stat1: 2.8075295403610625e-07 - syst_JES_Gjet_Stat10: 2.8405958441848075e-06 - syst_JES_Gjet_Stat11: 2.9291365621971265e-06 - syst_JES_Gjet_Stat12: 3.2855171206371763e-06 - syst_JES_Gjet_Stat13: 1.8112356969759625e-05 - syst_JES_Gjet_Stat14: 4.845504179133478e-05 - syst_JES_Gjet_Stat15: 8.140272477012055e-05 - syst_JES_Gjet_Stat2: 4.917544509203756e-07 - syst_JES_Gjet_Stat3: 5.441404506191394e-07 - syst_JES_Gjet_Stat4: 8.078474778694305e-07 - syst_JES_Gjet_Stat5: 8.881320791413855e-07 - syst_JES_Gjet_Stat6: 1.8848490655752785e-06 - syst_JES_Gjet_Stat7: 1.1222944477720632e-06 - syst_JES_Gjet_Stat8: 5.192152034561391e-07 - syst_JES_Gjet_Stat9: 1.2946573948346333e-06 - syst_JES_Gjet_Veto: 8.393645393987049e-05 - syst_JES_Gjet_dPhi: 7.657164929006036e-06 - syst_JES_LArESZee: 0.00013587134088909256 - syst_JES_LArEsmear: 1.260632234238043e-05 - syst_JES_LAr_JVT: 1.630188562712915e-05 - syst_JES_MJB_Alpha: 2.7331613563783607e-06 - syst_JES_MJB_Asym: 3.828874692060319e-05 - syst_JES_MJB_Beta: 2.5386820891951006e-06 - syst_JES_MJB_Stat1: 5.991829499410009e-09 - syst_JES_MJB_Stat10: 6.510811527759039e-07 - syst_JES_MJB_Stat11: 9.474355954364391e-07 - syst_JES_MJB_Stat12: 1.776576483014452e-06 - syst_JES_MJB_Stat13: 2.956054930139154e-06 - syst_JES_MJB_Stat14: 6.939041918737773e-06 - syst_JES_MJB_Stat15: 6.603249048763797e-06 - syst_JES_MJB_Stat16: 1.5701630488583025e-05 - syst_JES_MJB_Stat2: 5.7700489451996846e-08 - syst_JES_MJB_Stat3: 5.290207247358085e-08 - syst_JES_MJB_Stat4: 5.461294606306732e-08 - syst_JES_MJB_Stat5: 5.343396953249871e-08 - syst_JES_MJB_Stat6: 9.04601575280521e-08 - syst_JES_MJB_Stat7: 1.2373744299927974e-07 - syst_JES_MJB_Stat8: 2.0317718252796005e-07 - syst_JES_MJB_Stat9: 3.5088375211742135e-07 - syst_JES_MJB_Threshold: 1.67750141579672e-05 - syst_JES_Pileup_MuOffset: 2.5110322578573142e-05 - syst_JES_Pileup_NPVOffset: 2.2982106082776662e-05 - syst_JES_Pileup_Pt_term: 9.682384158873267e-06 - syst_JES_PunchThrough_MC15: 3.8604504918467746e-05 - syst_JES_SingleParticle_HighPt: 1.6070472146144306e-07 - syst_JES_Zjet_MC: 3.61931941116006e-05 - syst_JES_Zjet_MuScale: 3.250669892499083e-06 - syst_JES_Zjet_MuSmearID: 6.939725120636983e-07 - syst_JES_Zjet_MuSmearMS: 8.596727924041799e-06 - syst_JES_Zjet_OOC: 2.3539789718686952e-05 - syst_JES_Zjet_Stat1: 3.77900026462026e-06 - syst_JES_Zjet_Stat10: 1.8972324580820347e-06 - syst_JES_Zjet_Stat11: 2.479008672836785e-06 - syst_JES_Zjet_Stat12: 5.018639930299841e-06 - syst_JES_Zjet_Stat13: 8.651430575344174e-06 - syst_JES_Zjet_Stat2: 5.537577358376133e-08 - syst_JES_Zjet_Stat3: 1.46394424415686e-06 - syst_JES_Zjet_Stat4: 1.6364956461903588e-06 - syst_JES_Zjet_Stat5: 1.7147559593131613e-06 - syst_JES_Zjet_Stat6: 1.5749219028256608e-06 - syst_JES_Zjet_Stat7: 1.7474850500075818e-06 - syst_JES_Zjet_Stat8: 9.142510090232333e-07 - syst_JES_Zjet_Stat9: 1.4184360225262189e-06 - syst_JES_Zjet_Veto: 4.428027326022278e-06 - syst_JES_Zjet_dPhi: 4.1972877849868715e-06 + syst_JES_EtaIntercalibration_Stat93: 8.50090536e-24 + syst_JES_EtaIntercalibration_Stat94: 1.22628443e-20 + syst_JES_EtaIntercalibration_Stat95: 8.96682690e-10 + syst_JES_EtaIntercalibration_Stat96: 3.51142833e-09 + syst_JES_EtaIntercalibration_Stat97: 4.25359976e-21 + syst_JES_EtaIntercalibration_Stat98: 1.28340000e-21 + syst_JES_EtaIntercalibration_Stat99: 1.56750598e-09 + syst_JES_EtaIntercalibration_TotalStat_MJB: 4.07503534e-05 + syst_JES_Flavour_Comp: 7.63506097e-05 + syst_JES_Gjet_Generator: 9.38929965e-05 + syst_JES_Gjet_OOC: 7.77559096e-05 + syst_JES_Gjet_Purity: 1.03305861e-05 + syst_JES_Gjet_Stat1: 2.80752954e-07 + syst_JES_Gjet_Stat10: 2.84059584e-06 + syst_JES_Gjet_Stat11: 2.92913656e-06 + syst_JES_Gjet_Stat12: 3.28551712e-06 + syst_JES_Gjet_Stat13: 1.81123570e-05 + syst_JES_Gjet_Stat14: 4.84550418e-05 + syst_JES_Gjet_Stat15: 8.14027248e-05 + syst_JES_Gjet_Stat2: 4.91754451e-07 + syst_JES_Gjet_Stat3: 5.44140451e-07 + syst_JES_Gjet_Stat4: 8.07847478e-07 + syst_JES_Gjet_Stat5: 8.88132079e-07 + syst_JES_Gjet_Stat6: 1.88484907e-06 + syst_JES_Gjet_Stat7: 1.12229445e-06 + syst_JES_Gjet_Stat8: 5.19215203e-07 + syst_JES_Gjet_Stat9: 1.29465739e-06 + syst_JES_Gjet_Veto: 8.39364539e-05 + syst_JES_Gjet_dPhi: 7.65716493e-06 + syst_JES_LArESZee: 1.35871341e-04 + syst_JES_LArEsmear: 1.26063223e-05 + syst_JES_LAr_JVT: 1.63018856e-05 + syst_JES_MJB_Alpha: 2.73316136e-06 + syst_JES_MJB_Asym: 3.82887469e-05 + syst_JES_MJB_Beta: 2.53868209e-06 + syst_JES_MJB_Stat1: 5.99182950e-09 + syst_JES_MJB_Stat10: 6.51081153e-07 + syst_JES_MJB_Stat11: 9.47435595e-07 + syst_JES_MJB_Stat12: 1.77657648e-06 + syst_JES_MJB_Stat13: 2.95605493e-06 + syst_JES_MJB_Stat14: 6.93904192e-06 + syst_JES_MJB_Stat15: 6.60324905e-06 + syst_JES_MJB_Stat16: 1.57016305e-05 + syst_JES_MJB_Stat2: 5.77004895e-08 + syst_JES_MJB_Stat3: 5.29020725e-08 + syst_JES_MJB_Stat4: 5.46129461e-08 + syst_JES_MJB_Stat5: 5.34339695e-08 + syst_JES_MJB_Stat6: 9.04601575e-08 + syst_JES_MJB_Stat7: 1.23737443e-07 + syst_JES_MJB_Stat8: 2.03177183e-07 + syst_JES_MJB_Stat9: 3.50883752e-07 + syst_JES_MJB_Threshold: 1.67750142e-05 + syst_JES_Pileup_MuOffset: 2.51103226e-05 + syst_JES_Pileup_NPVOffset: 2.29821061e-05 + syst_JES_Pileup_Pt_term: 9.68238416e-06 + syst_JES_PunchThrough_MC15: 3.86045049e-05 + syst_JES_SingleParticle_HighPt: 1.60704721e-07 + syst_JES_Zjet_MC: 3.61931941e-05 + syst_JES_Zjet_MuScale: 3.25066989e-06 + syst_JES_Zjet_MuSmearID: 6.93972512e-07 + syst_JES_Zjet_MuSmearMS: 8.59672792e-06 + syst_JES_Zjet_OOC: 2.35397897e-05 + syst_JES_Zjet_Stat1: 3.77900026e-06 + syst_JES_Zjet_Stat10: 1.89723246e-06 + syst_JES_Zjet_Stat11: 2.47900867e-06 + syst_JES_Zjet_Stat12: 5.01863993e-06 + syst_JES_Zjet_Stat13: 8.65143058e-06 + syst_JES_Zjet_Stat2: 5.53757736e-08 + syst_JES_Zjet_Stat3: 1.46394424e-06 + syst_JES_Zjet_Stat4: 1.63649565e-06 + syst_JES_Zjet_Stat5: 1.71475596e-06 + syst_JES_Zjet_Stat6: 1.57492190e-06 + syst_JES_Zjet_Stat7: 1.74748505e-06 + syst_JES_Zjet_Stat8: 9.14251009e-07 + syst_JES_Zjet_Stat9: 1.41843602e-06 + syst_JES_Zjet_Veto: 4.42802733e-06 + syst_JES_Zjet_dPhi: 4.19728778e-06 syst_PRW: 2.2e-06 - syst_Unfolding_bias: 2.402e-06 - syst_cleaning: 1.9156481931711783e-05 - syst_lumi: 6.282e-05 - syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 3.9738946991584965e-06 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.464508364605679e-05 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 5.616086181674922e-06 + syst_Unfolding_bias: 2.40200000e-06 + syst_cleaning: 1.91564819e-05 + syst_lumi: 6.28200000e-05 + syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 3.97389470e-06 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.46450836e-05 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 5.61608618e-06 syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 2.1750372410604836e-05 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 9.839143204568172e-06 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 2.3750151578463666e-05 -- stat: 2.3601e-05 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 2.17503724e-05 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 9.83914320e-06 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 2.37501516e-05 +- stat: 2.36010000e-05 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 2.0760531664675644e-06 - syst_JER_NP1: 7.538816402460004e-07 - syst_JER_NP2: 1.8764117352009927e-06 - syst_JER_NP3: 4.0215142359564014e-07 - syst_JER_NP4: 6.360912513154068e-07 - syst_JER_NP5: 1.0717666478762997e-06 - syst_JER_NP6: 8.28117727137875e-07 - syst_JER_NP7: 1.1774481432750354e-07 - syst_JER_NP8: 7.351909734892017e-07 - syst_JES_EtaIntercalibration_Modelling: 1.4795285566693196e-05 - syst_JES_EtaIntercalibration_NonClosure: 1.1705199357550473e-21 + syst_JER_NP0: 2.07605317e-06 + syst_JER_NP1: 7.53881640e-07 + syst_JER_NP2: 1.87641174e-06 + syst_JER_NP3: 4.02151424e-07 + syst_JER_NP4: 6.36091251e-07 + syst_JER_NP5: 1.07176665e-06 + syst_JER_NP6: 8.28117727e-07 + syst_JER_NP7: 1.17744814e-07 + syst_JER_NP8: 7.35190973e-07 + syst_JES_EtaIntercalibration_Modelling: 1.47952856e-05 + syst_JES_EtaIntercalibration_NonClosure: 1.17051994e-21 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 1.1518137870338247e-09 - syst_JES_EtaIntercalibration_Stat101: 2.3474267336809473e-23 - syst_JES_EtaIntercalibration_Stat102: 6.284153890540874e-25 - syst_JES_EtaIntercalibration_Stat103: 3.1696529778510453e-24 - syst_JES_EtaIntercalibration_Stat104: 3.1696529778510453e-24 - syst_JES_EtaIntercalibration_Stat105: 3.1696529778510453e-24 + syst_JES_EtaIntercalibration_Stat100: 1.15181379e-09 + syst_JES_EtaIntercalibration_Stat101: 2.34742673e-23 + syst_JES_EtaIntercalibration_Stat102: 6.28415389e-25 + syst_JES_EtaIntercalibration_Stat103: 3.16965298e-24 + syst_JES_EtaIntercalibration_Stat104: 3.16965298e-24 + syst_JES_EtaIntercalibration_Stat105: 3.16965298e-24 syst_JES_EtaIntercalibration_Stat106: 0.0 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 1.5371950917173785e-22 - syst_JES_EtaIntercalibration_Stat111: 1.5371950917173785e-22 + syst_JES_EtaIntercalibration_Stat110: 1.53719509e-22 + syst_JES_EtaIntercalibration_Stat111: 1.53719509e-22 syst_JES_EtaIntercalibration_Stat112: 0.0 - syst_JES_EtaIntercalibration_Stat113: 5.578645960266702e-24 - syst_JES_EtaIntercalibration_Stat114: 4.60638905844148e-12 - syst_JES_EtaIntercalibration_Stat115: 4.7353122515838384e-09 - syst_JES_EtaIntercalibration_Stat116: 5.5669387889575365e-09 - syst_JES_EtaIntercalibration_Stat117: 1.4871602292624693e-20 - syst_JES_EtaIntercalibration_Stat118: 1.1096383498694872e-09 - syst_JES_EtaIntercalibration_Stat119: 1.9375889656993816e-09 - syst_JES_EtaIntercalibration_Stat12: 3.881217168299141e-23 - syst_JES_EtaIntercalibration_Stat120: 2.257945904467155e-09 - syst_JES_EtaIntercalibration_Stat121: 3.4568411982617884e-20 - syst_JES_EtaIntercalibration_Stat122: 4.300194008123354e-24 - syst_JES_EtaIntercalibration_Stat123: 3.1696529778510453e-24 - syst_JES_EtaIntercalibration_Stat124: 3.1696529778510453e-24 - syst_JES_EtaIntercalibration_Stat125: 3.1696529778510453e-24 + syst_JES_EtaIntercalibration_Stat113: 5.57864596e-24 + syst_JES_EtaIntercalibration_Stat114: 4.60638906e-12 + syst_JES_EtaIntercalibration_Stat115: 4.73531225e-09 + syst_JES_EtaIntercalibration_Stat116: 5.56693879e-09 + syst_JES_EtaIntercalibration_Stat117: 1.48716023e-20 + syst_JES_EtaIntercalibration_Stat118: 1.10963835e-09 + syst_JES_EtaIntercalibration_Stat119: 1.93758897e-09 + syst_JES_EtaIntercalibration_Stat12: 3.88121717e-23 + syst_JES_EtaIntercalibration_Stat120: 2.25794590e-09 + syst_JES_EtaIntercalibration_Stat121: 3.45684120e-20 + syst_JES_EtaIntercalibration_Stat122: 4.30019401e-24 + syst_JES_EtaIntercalibration_Stat123: 3.16965298e-24 + syst_JES_EtaIntercalibration_Stat124: 3.16965298e-24 + syst_JES_EtaIntercalibration_Stat125: 3.16965298e-24 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 5.837877246910901e-21 - syst_JES_EtaIntercalibration_Stat129: 5.788452011332563e-21 - syst_JES_EtaIntercalibration_Stat13: 7.58255380934913e-23 - syst_JES_EtaIntercalibration_Stat130: 1.5371950917173785e-22 - syst_JES_EtaIntercalibration_Stat131: 1.2217020371187075e-25 - syst_JES_EtaIntercalibration_Stat132: 1.6038616075194894e-21 - syst_JES_EtaIntercalibration_Stat133: 1.28085157219101e-10 - syst_JES_EtaIntercalibration_Stat134: 2.157984420257709e-09 - syst_JES_EtaIntercalibration_Stat135: 3.3280490339229106e-09 - syst_JES_EtaIntercalibration_Stat136: 1.4384681957049215e-09 - syst_JES_EtaIntercalibration_Stat137: 1.6144350766986575e-09 - syst_JES_EtaIntercalibration_Stat138: 2.5976423926322114e-09 - syst_JES_EtaIntercalibration_Stat139: 4.506597053209883e-09 - syst_JES_EtaIntercalibration_Stat14: 3.9932431368500462e-25 - syst_JES_EtaIntercalibration_Stat140: 9.528345761677364e-15 - syst_JES_EtaIntercalibration_Stat141: 4.823822210516217e-21 + syst_JES_EtaIntercalibration_Stat128: 5.83787725e-21 + syst_JES_EtaIntercalibration_Stat129: 5.78845201e-21 + syst_JES_EtaIntercalibration_Stat13: 7.58255381e-23 + syst_JES_EtaIntercalibration_Stat130: 1.53719509e-22 + syst_JES_EtaIntercalibration_Stat131: 1.22170204e-25 + syst_JES_EtaIntercalibration_Stat132: 1.60386161e-21 + syst_JES_EtaIntercalibration_Stat133: 1.28085157e-10 + syst_JES_EtaIntercalibration_Stat134: 2.15798442e-09 + syst_JES_EtaIntercalibration_Stat135: 3.32804903e-09 + syst_JES_EtaIntercalibration_Stat136: 1.43846820e-09 + syst_JES_EtaIntercalibration_Stat137: 1.61443508e-09 + syst_JES_EtaIntercalibration_Stat138: 2.59764239e-09 + syst_JES_EtaIntercalibration_Stat139: 4.50659705e-09 + syst_JES_EtaIntercalibration_Stat14: 3.99324314e-25 + syst_JES_EtaIntercalibration_Stat140: 9.52834576e-15 + syst_JES_EtaIntercalibration_Stat141: 4.82382221e-21 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 3.1696529778510453e-24 - syst_JES_EtaIntercalibration_Stat144: 3.1696529778510453e-24 + syst_JES_EtaIntercalibration_Stat143: 3.16965298e-24 + syst_JES_EtaIntercalibration_Stat144: 3.16965298e-24 syst_JES_EtaIntercalibration_Stat145: 0.0 - syst_JES_EtaIntercalibration_Stat146: 5.837877246910901e-21 - syst_JES_EtaIntercalibration_Stat147: 5.788452011332563e-21 + syst_JES_EtaIntercalibration_Stat146: 5.83787725e-21 + syst_JES_EtaIntercalibration_Stat147: 5.78845201e-21 syst_JES_EtaIntercalibration_Stat148: 0.0 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 1.3256380152590677e-23 - syst_JES_EtaIntercalibration_Stat151: 1.2808515721140463e-10 - syst_JES_EtaIntercalibration_Stat152: 6.91232469940468e-09 - syst_JES_EtaIntercalibration_Stat153: 8.194516749021873e-09 - syst_JES_EtaIntercalibration_Stat154: 6.205938044166497e-10 - syst_JES_EtaIntercalibration_Stat155: 1.541044511849025e-09 - syst_JES_EtaIntercalibration_Stat156: 8.265358612909667e-09 - syst_JES_EtaIntercalibration_Stat157: 5.181092162855241e-09 - syst_JES_EtaIntercalibration_Stat158: 7.903720706097856e-12 - syst_JES_EtaIntercalibration_Stat159: 4.8762985765332296e-21 + syst_JES_EtaIntercalibration_Stat150: 1.32563802e-23 + syst_JES_EtaIntercalibration_Stat151: 1.28085157e-10 + syst_JES_EtaIntercalibration_Stat152: 6.91232470e-09 + syst_JES_EtaIntercalibration_Stat153: 8.19451675e-09 + syst_JES_EtaIntercalibration_Stat154: 6.20593804e-10 + syst_JES_EtaIntercalibration_Stat155: 1.54104451e-09 + syst_JES_EtaIntercalibration_Stat156: 8.26535861e-09 + syst_JES_EtaIntercalibration_Stat157: 5.18109216e-09 + syst_JES_EtaIntercalibration_Stat158: 7.90372071e-12 + syst_JES_EtaIntercalibration_Stat159: 4.87629858e-21 syst_JES_EtaIntercalibration_Stat16: 0.0 syst_JES_EtaIntercalibration_Stat160: 0.0 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 - syst_JES_EtaIntercalibration_Stat164: 5.837877246910901e-21 + syst_JES_EtaIntercalibration_Stat164: 5.83787725e-21 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 - syst_JES_EtaIntercalibration_Stat168: 1.188793071774899e-22 - syst_JES_EtaIntercalibration_Stat169: 1.646205033911329e-09 + syst_JES_EtaIntercalibration_Stat168: 1.18879307e-22 + syst_JES_EtaIntercalibration_Stat169: 1.64620503e-09 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 1.001217074364995e-08 - syst_JES_EtaIntercalibration_Stat171: 1.4575922638035645e-08 - syst_JES_EtaIntercalibration_Stat172: 3.0319433949201623e-09 - syst_JES_EtaIntercalibration_Stat173: 1.9406200059517062e-09 - syst_JES_EtaIntercalibration_Stat174: 8.361634215271559e-09 - syst_JES_EtaIntercalibration_Stat175: 1.6197200591460244e-08 - syst_JES_EtaIntercalibration_Stat176: 2.4317993337735296e-09 - syst_JES_EtaIntercalibration_Stat177: 3.201188561690798e-20 + syst_JES_EtaIntercalibration_Stat170: 1.00121707e-08 + syst_JES_EtaIntercalibration_Stat171: 1.45759226e-08 + syst_JES_EtaIntercalibration_Stat172: 3.03194339e-09 + syst_JES_EtaIntercalibration_Stat173: 1.94062001e-09 + syst_JES_EtaIntercalibration_Stat174: 8.36163422e-09 + syst_JES_EtaIntercalibration_Stat175: 1.61972006e-08 + syst_JES_EtaIntercalibration_Stat176: 2.43179933e-09 + syst_JES_EtaIntercalibration_Stat177: 3.20118856e-20 syst_JES_EtaIntercalibration_Stat178: 0.0 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 @@ -23024,17 +23024,17 @@ bins: syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 syst_JES_EtaIntercalibration_Stat184: 0.0 - syst_JES_EtaIntercalibration_Stat185: 5.0194831725825555e-12 - syst_JES_EtaIntercalibration_Stat186: 3.998725140591686e-09 - syst_JES_EtaIntercalibration_Stat187: 5.5275042062399194e-08 - syst_JES_EtaIntercalibration_Stat188: 5.9316053476272346e-08 - syst_JES_EtaIntercalibration_Stat189: 9.755309598751852e-09 + syst_JES_EtaIntercalibration_Stat185: 5.01948317e-12 + syst_JES_EtaIntercalibration_Stat186: 3.99872514e-09 + syst_JES_EtaIntercalibration_Stat187: 5.52750421e-08 + syst_JES_EtaIntercalibration_Stat188: 5.93160535e-08 + syst_JES_EtaIntercalibration_Stat189: 9.75530960e-09 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 3.924949426425773e-09 - syst_JES_EtaIntercalibration_Stat191: 6.390531824504124e-08 - syst_JES_EtaIntercalibration_Stat192: 9.03394558042055e-08 - syst_JES_EtaIntercalibration_Stat193: 1.1045236484566548e-08 - syst_JES_EtaIntercalibration_Stat194: 2.2923692438174092e-20 + syst_JES_EtaIntercalibration_Stat190: 3.92494943e-09 + syst_JES_EtaIntercalibration_Stat191: 6.39053182e-08 + syst_JES_EtaIntercalibration_Stat192: 9.03394558e-08 + syst_JES_EtaIntercalibration_Stat193: 1.10452365e-08 + syst_JES_EtaIntercalibration_Stat194: 2.29236924e-20 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 syst_JES_EtaIntercalibration_Stat197: 0.0 @@ -23042,70 +23042,70 @@ bins: syst_JES_EtaIntercalibration_Stat199: 0.0 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 5.019483255466957e-12 - syst_JES_EtaIntercalibration_Stat201: 8.715871856371168e-09 - syst_JES_EtaIntercalibration_Stat202: 1.2822870612698236e-07 - syst_JES_EtaIntercalibration_Stat203: 1.3270505378469953e-07 - syst_JES_EtaIntercalibration_Stat204: 1.913990404234044e-08 - syst_JES_EtaIntercalibration_Stat205: 1.0917560991356998e-08 - syst_JES_EtaIntercalibration_Stat206: 1.558975304486893e-07 - syst_JES_EtaIntercalibration_Stat207: 1.3889296985448903e-07 - syst_JES_EtaIntercalibration_Stat208: 1.393136995237726e-08 - syst_JES_EtaIntercalibration_Stat209: 9.488174214656512e-15 + syst_JES_EtaIntercalibration_Stat200: 5.01948326e-12 + syst_JES_EtaIntercalibration_Stat201: 8.71587186e-09 + syst_JES_EtaIntercalibration_Stat202: 1.28228706e-07 + syst_JES_EtaIntercalibration_Stat203: 1.32705054e-07 + syst_JES_EtaIntercalibration_Stat204: 1.91399040e-08 + syst_JES_EtaIntercalibration_Stat205: 1.09175610e-08 + syst_JES_EtaIntercalibration_Stat206: 1.55897530e-07 + syst_JES_EtaIntercalibration_Stat207: 1.38892970e-07 + syst_JES_EtaIntercalibration_Stat208: 1.39313700e-08 + syst_JES_EtaIntercalibration_Stat209: 9.48817421e-15 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 syst_JES_EtaIntercalibration_Stat211: 0.0 syst_JES_EtaIntercalibration_Stat212: 0.0 - syst_JES_EtaIntercalibration_Stat213: 5.0194831710525775e-12 - syst_JES_EtaIntercalibration_Stat214: 8.562565571573744e-09 - syst_JES_EtaIntercalibration_Stat215: 1.4846733883248533e-07 - syst_JES_EtaIntercalibration_Stat216: 1.734511170330131e-07 - syst_JES_EtaIntercalibration_Stat217: 2.0117634726776405e-08 - syst_JES_EtaIntercalibration_Stat218: 2.1024463768429387e-08 - syst_JES_EtaIntercalibration_Stat219: 1.8622005128342112e-07 + syst_JES_EtaIntercalibration_Stat213: 5.01948317e-12 + syst_JES_EtaIntercalibration_Stat214: 8.56256557e-09 + syst_JES_EtaIntercalibration_Stat215: 1.48467339e-07 + syst_JES_EtaIntercalibration_Stat216: 1.73451117e-07 + syst_JES_EtaIntercalibration_Stat217: 2.01176347e-08 + syst_JES_EtaIntercalibration_Stat218: 2.10244638e-08 + syst_JES_EtaIntercalibration_Stat219: 1.86220051e-07 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 1.6056210636386158e-07 - syst_JES_EtaIntercalibration_Stat221: 1.2611889975336765e-08 - syst_JES_EtaIntercalibration_Stat222: 9.484456424122313e-15 + syst_JES_EtaIntercalibration_Stat220: 1.60562106e-07 + syst_JES_EtaIntercalibration_Stat221: 1.26118900e-08 + syst_JES_EtaIntercalibration_Stat222: 9.48445642e-15 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 - syst_JES_EtaIntercalibration_Stat225: 1.259766835569186e-10 - syst_JES_EtaIntercalibration_Stat226: 2.964081097068702e-08 - syst_JES_EtaIntercalibration_Stat227: 4.572173744511466e-07 - syst_JES_EtaIntercalibration_Stat228: 4.5090079840248674e-07 - syst_JES_EtaIntercalibration_Stat229: 3.754563989333515e-08 + syst_JES_EtaIntercalibration_Stat225: 1.25976684e-10 + syst_JES_EtaIntercalibration_Stat226: 2.96408110e-08 + syst_JES_EtaIntercalibration_Stat227: 4.57217374e-07 + syst_JES_EtaIntercalibration_Stat228: 4.50900798e-07 + syst_JES_EtaIntercalibration_Stat229: 3.75456399e-08 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 4.4473732696952704e-08 - syst_JES_EtaIntercalibration_Stat231: 5.763527110199101e-07 - syst_JES_EtaIntercalibration_Stat232: 4.6038945198603325e-07 - syst_JES_EtaIntercalibration_Stat233: 2.7377846427358015e-08 - syst_JES_EtaIntercalibration_Stat234: 5.305823498760583e-12 + syst_JES_EtaIntercalibration_Stat230: 4.44737327e-08 + syst_JES_EtaIntercalibration_Stat231: 5.76352711e-07 + syst_JES_EtaIntercalibration_Stat232: 4.60389452e-07 + syst_JES_EtaIntercalibration_Stat233: 2.73778464e-08 + syst_JES_EtaIntercalibration_Stat234: 5.30582350e-12 syst_JES_EtaIntercalibration_Stat235: 0.0 - syst_JES_EtaIntercalibration_Stat236: 5.019483240334606e-12 - syst_JES_EtaIntercalibration_Stat237: 6.5323968909428654e-09 - syst_JES_EtaIntercalibration_Stat238: 8.976891834036989e-08 - syst_JES_EtaIntercalibration_Stat239: 6.3262657231577e-08 + syst_JES_EtaIntercalibration_Stat236: 5.01948324e-12 + syst_JES_EtaIntercalibration_Stat237: 6.53239689e-09 + syst_JES_EtaIntercalibration_Stat238: 8.97689183e-08 + syst_JES_EtaIntercalibration_Stat239: 6.32626572e-08 syst_JES_EtaIntercalibration_Stat24: 0.0 - syst_JES_EtaIntercalibration_Stat240: 8.843226899723879e-09 - syst_JES_EtaIntercalibration_Stat241: 7.608183160255804e-09 - syst_JES_EtaIntercalibration_Stat242: 6.166449545727265e-08 - syst_JES_EtaIntercalibration_Stat243: 9.473346399240345e-08 - syst_JES_EtaIntercalibration_Stat244: 1.2049135529157267e-08 - syst_JES_EtaIntercalibration_Stat245: 1.1028833517194825e-16 + syst_JES_EtaIntercalibration_Stat240: 8.84322690e-09 + syst_JES_EtaIntercalibration_Stat241: 7.60818316e-09 + syst_JES_EtaIntercalibration_Stat242: 6.16644955e-08 + syst_JES_EtaIntercalibration_Stat243: 9.47334640e-08 + syst_JES_EtaIntercalibration_Stat244: 1.20491355e-08 + syst_JES_EtaIntercalibration_Stat245: 1.10288335e-16 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 syst_JES_EtaIntercalibration_Stat27: 0.0 - syst_JES_EtaIntercalibration_Stat28: 1.2488086322571605e-25 - syst_JES_EtaIntercalibration_Stat29: 2.1337687942933274e-24 + syst_JES_EtaIntercalibration_Stat28: 1.24880863e-25 + syst_JES_EtaIntercalibration_Stat29: 2.13376879e-24 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 3.883199063594345e-24 - syst_JES_EtaIntercalibration_Stat31: 4.549702929862564e-24 - syst_JES_EtaIntercalibration_Stat32: 4.0617741197658937e-25 - syst_JES_EtaIntercalibration_Stat33: 3.365520778052039e-24 - syst_JES_EtaIntercalibration_Stat34: 1.1609070537730158e-09 - syst_JES_EtaIntercalibration_Stat35: 4.473566494801212e-21 - syst_JES_EtaIntercalibration_Stat36: 3.3074272584593603e-24 - syst_JES_EtaIntercalibration_Stat37: 9.115783400235001e-26 + syst_JES_EtaIntercalibration_Stat30: 3.88319906e-24 + syst_JES_EtaIntercalibration_Stat31: 4.54970293e-24 + syst_JES_EtaIntercalibration_Stat32: 4.06177412e-25 + syst_JES_EtaIntercalibration_Stat33: 3.36552078e-24 + syst_JES_EtaIntercalibration_Stat34: 1.16090705e-09 + syst_JES_EtaIntercalibration_Stat35: 4.47356649e-21 + syst_JES_EtaIntercalibration_Stat36: 3.30742726e-24 + syst_JES_EtaIntercalibration_Stat37: 9.11578340e-26 syst_JES_EtaIntercalibration_Stat38: 0.0 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 @@ -23120,20 +23120,20 @@ bins: syst_JES_EtaIntercalibration_Stat48: 0.0 syst_JES_EtaIntercalibration_Stat49: 0.0 syst_JES_EtaIntercalibration_Stat5: 0.0 - syst_JES_EtaIntercalibration_Stat50: 1.2652631149290648e-25 - syst_JES_EtaIntercalibration_Stat51: 3.2891965386701967e-24 - syst_JES_EtaIntercalibration_Stat52: 7.790618765541026e-23 - syst_JES_EtaIntercalibration_Stat53: 1.1322032094549105e-23 - syst_JES_EtaIntercalibration_Stat54: 7.718696311554173e-25 - syst_JES_EtaIntercalibration_Stat55: 4.262430320448066e-23 - syst_JES_EtaIntercalibration_Stat56: 1.1607338486922886e-09 - syst_JES_EtaIntercalibration_Stat57: 1.111456991363948e-16 - syst_JES_EtaIntercalibration_Stat58: 2.322865085944511e-24 - syst_JES_EtaIntercalibration_Stat59: 2.6609041546060996e-25 + syst_JES_EtaIntercalibration_Stat50: 1.26526311e-25 + syst_JES_EtaIntercalibration_Stat51: 3.28919654e-24 + syst_JES_EtaIntercalibration_Stat52: 7.79061877e-23 + syst_JES_EtaIntercalibration_Stat53: 1.13220321e-23 + syst_JES_EtaIntercalibration_Stat54: 7.71869631e-25 + syst_JES_EtaIntercalibration_Stat55: 4.26243032e-23 + syst_JES_EtaIntercalibration_Stat56: 1.16073385e-09 + syst_JES_EtaIntercalibration_Stat57: 1.11145699e-16 + syst_JES_EtaIntercalibration_Stat58: 2.32286509e-24 + syst_JES_EtaIntercalibration_Stat59: 2.66090415e-25 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 - syst_JES_EtaIntercalibration_Stat61: 3.1696529778510453e-24 - syst_JES_EtaIntercalibration_Stat62: 3.1696529778510453e-24 + syst_JES_EtaIntercalibration_Stat61: 3.16965298e-24 + syst_JES_EtaIntercalibration_Stat62: 3.16965298e-24 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 @@ -23141,134 +23141,134 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 1.2488086322571605e-25 + syst_JES_EtaIntercalibration_Stat7: 1.24880863e-25 syst_JES_EtaIntercalibration_Stat70: 0.0 syst_JES_EtaIntercalibration_Stat71: 0.0 - syst_JES_EtaIntercalibration_Stat72: 5.5884619306209825e-25 - syst_JES_EtaIntercalibration_Stat73: 1.1955359161794344e-22 - syst_JES_EtaIntercalibration_Stat74: 4.6133172599397056e-12 - syst_JES_EtaIntercalibration_Stat75: 1.0661639167167311e-14 - syst_JES_EtaIntercalibration_Stat76: 5.774651569575432e-24 - syst_JES_EtaIntercalibration_Stat77: 3.776793882382252e-23 - syst_JES_EtaIntercalibration_Stat78: 1.1072134787387786e-09 - syst_JES_EtaIntercalibration_Stat79: 1.4523246021469802e-09 - syst_JES_EtaIntercalibration_Stat8: 1.8843208511291276e-24 - syst_JES_EtaIntercalibration_Stat80: 1.9598584719310728e-23 - syst_JES_EtaIntercalibration_Stat81: 4.7016519171457175e-25 - syst_JES_EtaIntercalibration_Stat82: 3.1696529778510453e-24 - syst_JES_EtaIntercalibration_Stat83: 3.1696529778510453e-24 - syst_JES_EtaIntercalibration_Stat84: 3.1696529778510453e-24 + syst_JES_EtaIntercalibration_Stat72: 5.58846193e-25 + syst_JES_EtaIntercalibration_Stat73: 1.19553592e-22 + syst_JES_EtaIntercalibration_Stat74: 4.61331726e-12 + syst_JES_EtaIntercalibration_Stat75: 1.06616392e-14 + syst_JES_EtaIntercalibration_Stat76: 5.77465157e-24 + syst_JES_EtaIntercalibration_Stat77: 3.77679388e-23 + syst_JES_EtaIntercalibration_Stat78: 1.10721348e-09 + syst_JES_EtaIntercalibration_Stat79: 1.45232460e-09 + syst_JES_EtaIntercalibration_Stat8: 1.88432085e-24 + syst_JES_EtaIntercalibration_Stat80: 1.95985847e-23 + syst_JES_EtaIntercalibration_Stat81: 4.70165192e-25 + syst_JES_EtaIntercalibration_Stat82: 3.16965298e-24 + syst_JES_EtaIntercalibration_Stat83: 3.16965298e-24 + syst_JES_EtaIntercalibration_Stat84: 3.16965298e-24 syst_JES_EtaIntercalibration_Stat85: 0.0 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 syst_JES_EtaIntercalibration_Stat89: 0.0 - syst_JES_EtaIntercalibration_Stat9: 8.77991349615701e-25 + syst_JES_EtaIntercalibration_Stat9: 8.77991350e-25 syst_JES_EtaIntercalibration_Stat90: 0.0 syst_JES_EtaIntercalibration_Stat91: 0.0 syst_JES_EtaIntercalibration_Stat92: 0.0 - syst_JES_EtaIntercalibration_Stat93: 6.258765593150138e-25 - syst_JES_EtaIntercalibration_Stat94: 2.1102619902514476e-22 - syst_JES_EtaIntercalibration_Stat95: 4.613317257716907e-12 - syst_JES_EtaIntercalibration_Stat96: 6.978397800682792e-10 - syst_JES_EtaIntercalibration_Stat97: 6.480863035699797e-23 - syst_JES_EtaIntercalibration_Stat98: 1.8603666090316715e-23 - syst_JES_EtaIntercalibration_Stat99: 1.107473286359884e-09 - syst_JES_EtaIntercalibration_TotalStat_MJB: 1.3016376867239209e-05 - syst_JES_Flavour_Comp: 1.2076441280443507e-05 - syst_JES_Gjet_Generator: 2.3391671060443718e-05 - syst_JES_Gjet_OOC: 1.9498878813921583e-05 - syst_JES_Gjet_Purity: 5.276518809783586e-07 - syst_JES_Gjet_Stat1: 1.858111070415329e-08 - syst_JES_Gjet_Stat10: 1.2429726103177013e-06 - syst_JES_Gjet_Stat11: 1.2280130567302613e-06 - syst_JES_Gjet_Stat12: 6.327666927865278e-07 - syst_JES_Gjet_Stat13: 5.672775048422069e-06 - syst_JES_Gjet_Stat14: 1.665705481170066e-05 - syst_JES_Gjet_Stat15: 2.6513873255335595e-05 - syst_JES_Gjet_Stat2: 9.06669194083487e-08 - syst_JES_Gjet_Stat3: 1.1553852723226136e-07 - syst_JES_Gjet_Stat4: 4.3028812149535343e-07 - syst_JES_Gjet_Stat5: 4.239125705850205e-07 - syst_JES_Gjet_Stat6: 4.033225442496365e-07 - syst_JES_Gjet_Stat7: 4.614293309922984e-07 - syst_JES_Gjet_Stat8: 8.570521731493364e-08 - syst_JES_Gjet_Stat9: 4.683006806529326e-07 - syst_JES_Gjet_Veto: 2.2726693556256702e-05 - syst_JES_Gjet_dPhi: 1.115800035848718e-06 - syst_JES_LArESZee: 3.0617760777039194e-05 - syst_JES_LArEsmear: 3.008918867301011e-06 - syst_JES_LAr_JVT: 3.9265033996547105e-06 - syst_JES_MJB_Alpha: 6.940789004140668e-07 - syst_JES_MJB_Asym: 1.6976603753401327e-05 - syst_JES_MJB_Beta: 1.2727220709958638e-06 - syst_JES_MJB_Stat1: 3.07423909284883e-11 - syst_JES_MJB_Stat10: 6.809719579395321e-08 - syst_JES_MJB_Stat11: 7.797600143633936e-08 - syst_JES_MJB_Stat12: 1.8102731838040357e-07 - syst_JES_MJB_Stat13: 3.4601932026983695e-07 - syst_JES_MJB_Stat14: 3.927866852376745e-06 - syst_JES_MJB_Stat15: 6.2007025408416425e-06 - syst_JES_MJB_Stat16: 1.2165762399044297e-05 - syst_JES_MJB_Stat2: 1.0443575523368422e-08 - syst_JES_MJB_Stat3: 8.994275270075017e-09 - syst_JES_MJB_Stat4: 9.48480429314273e-09 - syst_JES_MJB_Stat5: 8.529778953759588e-09 - syst_JES_MJB_Stat6: 1.3351426927486064e-08 - syst_JES_MJB_Stat7: 1.5601083295720204e-08 - syst_JES_MJB_Stat8: 2.4619579098757963e-08 - syst_JES_MJB_Stat9: 3.011953186887207e-08 - syst_JES_MJB_Threshold: 3.906218438592496e-06 - syst_JES_Pileup_MuOffset: 8.41159931285365e-06 - syst_JES_Pileup_NPVOffset: 6.122335073319656e-06 - syst_JES_Pileup_Pt_term: 1.965068128589948e-06 - syst_JES_PunchThrough_MC15: 1.722500145137875e-05 - syst_JES_SingleParticle_HighPt: 6.083994329385917e-07 - syst_JES_Zjet_MC: 8.93854186934312e-06 - syst_JES_Zjet_MuScale: 1.021621557867687e-06 - syst_JES_Zjet_MuSmearID: 8.684876208098766e-08 - syst_JES_Zjet_MuSmearMS: 1.5912054392818043e-06 - syst_JES_Zjet_OOC: 5.396135098382916e-06 - syst_JES_Zjet_Stat1: 1.1031214019771352e-06 - syst_JES_Zjet_Stat10: 5.855010930818148e-07 - syst_JES_Zjet_Stat11: 5.278467296479159e-07 - syst_JES_Zjet_Stat12: 9.424474773163754e-07 - syst_JES_Zjet_Stat13: 2.0133894307858078e-06 - syst_JES_Zjet_Stat2: 1.2925585818445522e-08 - syst_JES_Zjet_Stat3: 2.1649581982107646e-07 - syst_JES_Zjet_Stat4: 3.522625299403841e-07 - syst_JES_Zjet_Stat5: 2.7845608271323504e-07 - syst_JES_Zjet_Stat6: 5.088749453451211e-07 - syst_JES_Zjet_Stat7: 4.2415105799703006e-07 - syst_JES_Zjet_Stat8: 1.8507481595290052e-07 - syst_JES_Zjet_Stat9: 4.771639969654039e-07 - syst_JES_Zjet_Veto: 9.964524110563435e-07 - syst_JES_Zjet_dPhi: 9.556354744357285e-07 - syst_PRW: 8.247e-08 - syst_Unfolding_bias: 4.769e-07 - syst_cleaning: 3.6234502894340918e-06 - syst_lumi: 1.2472e-05 - syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.1706292453206523e-06 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 3.6798424898356723e-06 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 2.5001599948803274e-06 + syst_JES_EtaIntercalibration_Stat93: 6.25876559e-25 + syst_JES_EtaIntercalibration_Stat94: 2.11026199e-22 + syst_JES_EtaIntercalibration_Stat95: 4.61331726e-12 + syst_JES_EtaIntercalibration_Stat96: 6.97839780e-10 + syst_JES_EtaIntercalibration_Stat97: 6.48086304e-23 + syst_JES_EtaIntercalibration_Stat98: 1.86036661e-23 + syst_JES_EtaIntercalibration_Stat99: 1.10747329e-09 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.30163769e-05 + syst_JES_Flavour_Comp: 1.20764413e-05 + syst_JES_Gjet_Generator: 2.33916711e-05 + syst_JES_Gjet_OOC: 1.94988788e-05 + syst_JES_Gjet_Purity: 5.27651881e-07 + syst_JES_Gjet_Stat1: 1.85811107e-08 + syst_JES_Gjet_Stat10: 1.24297261e-06 + syst_JES_Gjet_Stat11: 1.22801306e-06 + syst_JES_Gjet_Stat12: 6.32766693e-07 + syst_JES_Gjet_Stat13: 5.67277505e-06 + syst_JES_Gjet_Stat14: 1.66570548e-05 + syst_JES_Gjet_Stat15: 2.65138733e-05 + syst_JES_Gjet_Stat2: 9.06669194e-08 + syst_JES_Gjet_Stat3: 1.15538527e-07 + syst_JES_Gjet_Stat4: 4.30288121e-07 + syst_JES_Gjet_Stat5: 4.23912571e-07 + syst_JES_Gjet_Stat6: 4.03322544e-07 + syst_JES_Gjet_Stat7: 4.61429331e-07 + syst_JES_Gjet_Stat8: 8.57052173e-08 + syst_JES_Gjet_Stat9: 4.68300681e-07 + syst_JES_Gjet_Veto: 2.27266936e-05 + syst_JES_Gjet_dPhi: 1.11580004e-06 + syst_JES_LArESZee: 3.06177608e-05 + syst_JES_LArEsmear: 3.00891887e-06 + syst_JES_LAr_JVT: 3.92650340e-06 + syst_JES_MJB_Alpha: 6.94078900e-07 + syst_JES_MJB_Asym: 1.69766038e-05 + syst_JES_MJB_Beta: 1.27272207e-06 + syst_JES_MJB_Stat1: 3.07423909e-11 + syst_JES_MJB_Stat10: 6.80971958e-08 + syst_JES_MJB_Stat11: 7.79760014e-08 + syst_JES_MJB_Stat12: 1.81027318e-07 + syst_JES_MJB_Stat13: 3.46019320e-07 + syst_JES_MJB_Stat14: 3.92786685e-06 + syst_JES_MJB_Stat15: 6.20070254e-06 + syst_JES_MJB_Stat16: 1.21657624e-05 + syst_JES_MJB_Stat2: 1.04435755e-08 + syst_JES_MJB_Stat3: 8.99427527e-09 + syst_JES_MJB_Stat4: 9.48480429e-09 + syst_JES_MJB_Stat5: 8.52977895e-09 + syst_JES_MJB_Stat6: 1.33514269e-08 + syst_JES_MJB_Stat7: 1.56010833e-08 + syst_JES_MJB_Stat8: 2.46195791e-08 + syst_JES_MJB_Stat9: 3.01195319e-08 + syst_JES_MJB_Threshold: 3.90621844e-06 + syst_JES_Pileup_MuOffset: 8.41159931e-06 + syst_JES_Pileup_NPVOffset: 6.12233507e-06 + syst_JES_Pileup_Pt_term: 1.96506813e-06 + syst_JES_PunchThrough_MC15: 1.72250015e-05 + syst_JES_SingleParticle_HighPt: 6.08399433e-07 + syst_JES_Zjet_MC: 8.93854187e-06 + syst_JES_Zjet_MuScale: 1.02162156e-06 + syst_JES_Zjet_MuSmearID: 8.68487621e-08 + syst_JES_Zjet_MuSmearMS: 1.59120544e-06 + syst_JES_Zjet_OOC: 5.39613510e-06 + syst_JES_Zjet_Stat1: 1.10312140e-06 + syst_JES_Zjet_Stat10: 5.85501093e-07 + syst_JES_Zjet_Stat11: 5.27846730e-07 + syst_JES_Zjet_Stat12: 9.42447477e-07 + syst_JES_Zjet_Stat13: 2.01338943e-06 + syst_JES_Zjet_Stat2: 1.29255858e-08 + syst_JES_Zjet_Stat3: 2.16495820e-07 + syst_JES_Zjet_Stat4: 3.52262530e-07 + syst_JES_Zjet_Stat5: 2.78456083e-07 + syst_JES_Zjet_Stat6: 5.08874945e-07 + syst_JES_Zjet_Stat7: 4.24151058e-07 + syst_JES_Zjet_Stat8: 1.85074816e-07 + syst_JES_Zjet_Stat9: 4.77163997e-07 + syst_JES_Zjet_Veto: 9.96452411e-07 + syst_JES_Zjet_dPhi: 9.55635474e-07 + syst_PRW: 8.24700000e-08 + syst_Unfolding_bias: 4.76900000e-07 + syst_cleaning: 3.62345029e-06 + syst_lumi: 1.24720000e-05 + syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.17062925e-06 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 3.67984249e-06 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 2.50015999e-06 syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 9.682644576767238e-06 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 3.7209193420443827e-06 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 7.9377276975215e-06 -- stat: 1.7793e-06 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 9.68264458e-06 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 3.72091934e-06 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 7.93772770e-06 +- stat: 1.77930000e-06 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 8.396694036940967e-08 - syst_JER_NP1: 3.1728127505417024e-08 - syst_JER_NP2: 7.700418235394749e-08 - syst_JER_NP3: 1.2896296018624882e-08 - syst_JER_NP4: 2.950198806860311e-08 - syst_JER_NP5: 4.131983543045639e-08 - syst_JER_NP6: 3.132427173933977e-08 - syst_JER_NP7: 2.890792797832456e-09 - syst_JER_NP8: 2.5039143355953694e-08 - syst_JES_EtaIntercalibration_Modelling: 3.934852953732833e-07 + syst_JER_NP0: 8.39669404e-08 + syst_JER_NP1: 3.17281275e-08 + syst_JER_NP2: 7.70041824e-08 + syst_JER_NP3: 1.28962960e-08 + syst_JER_NP4: 2.95019881e-08 + syst_JER_NP5: 4.13198354e-08 + syst_JER_NP6: 3.13242717e-08 + syst_JER_NP7: 2.89079280e-09 + syst_JER_NP8: 2.50391434e-08 + syst_JES_EtaIntercalibration_Modelling: 3.93485295e-07 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 @@ -23289,13 +23289,13 @@ bins: syst_JES_EtaIntercalibration_Stat112: 0.0 syst_JES_EtaIntercalibration_Stat113: 0.0 syst_JES_EtaIntercalibration_Stat114: 0.0 - syst_JES_EtaIntercalibration_Stat115: 1.9892603524928557e-11 - syst_JES_EtaIntercalibration_Stat116: 1.2999041310804423e-11 + syst_JES_EtaIntercalibration_Stat115: 1.98926035e-11 + syst_JES_EtaIntercalibration_Stat116: 1.29990413e-11 syst_JES_EtaIntercalibration_Stat117: 0.0 syst_JES_EtaIntercalibration_Stat118: 0.0 syst_JES_EtaIntercalibration_Stat119: 0.0 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 1.8480982116759922e-11 + syst_JES_EtaIntercalibration_Stat120: 1.84809821e-11 syst_JES_EtaIntercalibration_Stat121: 0.0 syst_JES_EtaIntercalibration_Stat122: 0.0 syst_JES_EtaIntercalibration_Stat123: 0.0 @@ -23311,11 +23311,11 @@ bins: syst_JES_EtaIntercalibration_Stat132: 0.0 syst_JES_EtaIntercalibration_Stat133: 0.0 syst_JES_EtaIntercalibration_Stat134: 0.0 - syst_JES_EtaIntercalibration_Stat135: 3.4108410528050114e-10 - syst_JES_EtaIntercalibration_Stat136: 1.5588457268119893e-11 + syst_JES_EtaIntercalibration_Stat135: 3.41084105e-10 + syst_JES_EtaIntercalibration_Stat136: 1.55884573e-11 syst_JES_EtaIntercalibration_Stat137: 0.0 - syst_JES_EtaIntercalibration_Stat138: 5.871040878753955e-11 - syst_JES_EtaIntercalibration_Stat139: 5.235123565876931e-11 + syst_JES_EtaIntercalibration_Stat138: 5.87104088e-11 + syst_JES_EtaIntercalibration_Stat139: 5.23512357e-11 syst_JES_EtaIntercalibration_Stat14: 0.0 syst_JES_EtaIntercalibration_Stat140: 0.0 syst_JES_EtaIntercalibration_Stat141: 0.0 @@ -23330,12 +23330,12 @@ bins: syst_JES_EtaIntercalibration_Stat15: 0.0 syst_JES_EtaIntercalibration_Stat150: 0.0 syst_JES_EtaIntercalibration_Stat151: 0.0 - syst_JES_EtaIntercalibration_Stat152: 3.54897210470863e-10 - syst_JES_EtaIntercalibration_Stat153: 5.30700367439104e-10 - syst_JES_EtaIntercalibration_Stat154: 1.524204710660612e-11 + syst_JES_EtaIntercalibration_Stat152: 3.54897210e-10 + syst_JES_EtaIntercalibration_Stat153: 5.30700367e-10 + syst_JES_EtaIntercalibration_Stat154: 1.52420471e-11 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 6.447729600409744e-11 - syst_JES_EtaIntercalibration_Stat157: 6.050872994866112e-11 + syst_JES_EtaIntercalibration_Stat156: 6.44772960e-11 + syst_JES_EtaIntercalibration_Stat157: 6.05087299e-11 syst_JES_EtaIntercalibration_Stat158: 0.0 syst_JES_EtaIntercalibration_Stat159: 0.0 syst_JES_EtaIntercalibration_Stat16: 0.0 @@ -23350,12 +23350,12 @@ bins: syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 7.965250069520731e-10 - syst_JES_EtaIntercalibration_Stat171: 9.872186421963475e-10 + syst_JES_EtaIntercalibration_Stat170: 7.96525007e-10 + syst_JES_EtaIntercalibration_Stat171: 9.87218642e-10 syst_JES_EtaIntercalibration_Stat172: 0.0 - syst_JES_EtaIntercalibration_Stat173: 1.897461659691705e-11 - syst_JES_EtaIntercalibration_Stat174: 7.634013934359827e-10 - syst_JES_EtaIntercalibration_Stat175: 6.011948353071573e-10 + syst_JES_EtaIntercalibration_Stat173: 1.89746166e-11 + syst_JES_EtaIntercalibration_Stat174: 7.63401393e-10 + syst_JES_EtaIntercalibration_Stat175: 6.01194835e-10 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 syst_JES_EtaIntercalibration_Stat178: 0.0 @@ -23367,15 +23367,15 @@ bins: syst_JES_EtaIntercalibration_Stat183: 0.0 syst_JES_EtaIntercalibration_Stat184: 0.0 syst_JES_EtaIntercalibration_Stat185: 0.0 - syst_JES_EtaIntercalibration_Stat186: 3.1313479972689077e-10 - syst_JES_EtaIntercalibration_Stat187: 2.5439498815817893e-09 - syst_JES_EtaIntercalibration_Stat188: 2.6035826758526415e-09 - syst_JES_EtaIntercalibration_Stat189: 3.555900307938905e-10 + syst_JES_EtaIntercalibration_Stat186: 3.13134800e-10 + syst_JES_EtaIntercalibration_Stat187: 2.54394988e-09 + syst_JES_EtaIntercalibration_Stat188: 2.60358268e-09 + syst_JES_EtaIntercalibration_Stat189: 3.55590031e-10 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 - syst_JES_EtaIntercalibration_Stat191: 2.7024111456253283e-09 - syst_JES_EtaIntercalibration_Stat192: 2.5201176971522577e-09 - syst_JES_EtaIntercalibration_Stat193: 2.0894453618125552e-10 + syst_JES_EtaIntercalibration_Stat191: 2.70241115e-09 + syst_JES_EtaIntercalibration_Stat192: 2.52011770e-09 + syst_JES_EtaIntercalibration_Stat193: 2.08944536e-10 syst_JES_EtaIntercalibration_Stat194: 0.0 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 @@ -23385,54 +23385,54 @@ bins: syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 - syst_JES_EtaIntercalibration_Stat201: 3.160126698409417e-10 - syst_JES_EtaIntercalibration_Stat202: 5.85229294806745e-09 - syst_JES_EtaIntercalibration_Stat203: 5.5705808770270994e-09 - syst_JES_EtaIntercalibration_Stat204: 4.1266110490328497e-10 - syst_JES_EtaIntercalibration_Stat205: 3.314767374945035e-10 - syst_JES_EtaIntercalibration_Stat206: 4.485989188573686e-09 - syst_JES_EtaIntercalibration_Stat207: 3.321945326160562e-09 - syst_JES_EtaIntercalibration_Stat208: 7.497881484126033e-10 + syst_JES_EtaIntercalibration_Stat201: 3.16012670e-10 + syst_JES_EtaIntercalibration_Stat202: 5.85229295e-09 + syst_JES_EtaIntercalibration_Stat203: 5.57058088e-09 + syst_JES_EtaIntercalibration_Stat204: 4.12661105e-10 + syst_JES_EtaIntercalibration_Stat205: 3.31476737e-10 + syst_JES_EtaIntercalibration_Stat206: 4.48598919e-09 + syst_JES_EtaIntercalibration_Stat207: 3.32194533e-09 + syst_JES_EtaIntercalibration_Stat208: 7.49788148e-10 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 syst_JES_EtaIntercalibration_Stat211: 0.0 syst_JES_EtaIntercalibration_Stat212: 0.0 syst_JES_EtaIntercalibration_Stat213: 0.0 - syst_JES_EtaIntercalibration_Stat214: 3.160126698409417e-10 - syst_JES_EtaIntercalibration_Stat215: 6.374854586576857e-09 - syst_JES_EtaIntercalibration_Stat216: 6.805038335674532e-09 - syst_JES_EtaIntercalibration_Stat217: 6.238154594910261e-10 - syst_JES_EtaIntercalibration_Stat218: 4.763072222841052e-10 - syst_JES_EtaIntercalibration_Stat219: 5.463450558026494e-09 + syst_JES_EtaIntercalibration_Stat214: 3.16012670e-10 + syst_JES_EtaIntercalibration_Stat215: 6.37485459e-09 + syst_JES_EtaIntercalibration_Stat216: 6.80503834e-09 + syst_JES_EtaIntercalibration_Stat217: 6.23815459e-10 + syst_JES_EtaIntercalibration_Stat218: 4.76307222e-10 + syst_JES_EtaIntercalibration_Stat219: 5.46345056e-09 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 4.435874096500035e-09 - syst_JES_EtaIntercalibration_Stat221: 6.534223136685799e-10 + syst_JES_EtaIntercalibration_Stat220: 4.43587410e-09 + syst_JES_EtaIntercalibration_Stat221: 6.53422314e-10 syst_JES_EtaIntercalibration_Stat222: 0.0 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 syst_JES_EtaIntercalibration_Stat225: 0.0 - syst_JES_EtaIntercalibration_Stat226: 1.7019145612148103e-09 - syst_JES_EtaIntercalibration_Stat227: 1.5154607319228036e-08 - syst_JES_EtaIntercalibration_Stat228: 1.620381668002943e-08 - syst_JES_EtaIntercalibration_Stat229: 1.958026013616775e-09 + syst_JES_EtaIntercalibration_Stat226: 1.70191456e-09 + syst_JES_EtaIntercalibration_Stat227: 1.51546073e-08 + syst_JES_EtaIntercalibration_Stat228: 1.62038167e-08 + syst_JES_EtaIntercalibration_Stat229: 1.95802601e-09 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 1.5375060162483915e-09 - syst_JES_EtaIntercalibration_Stat231: 1.855893046487324e-08 - syst_JES_EtaIntercalibration_Stat232: 1.476067749122648e-08 - syst_JES_EtaIntercalibration_Stat233: 1.0417419582123012e-09 + syst_JES_EtaIntercalibration_Stat230: 1.53750602e-09 + syst_JES_EtaIntercalibration_Stat231: 1.85589305e-08 + syst_JES_EtaIntercalibration_Stat232: 1.47606775e-08 + syst_JES_EtaIntercalibration_Stat233: 1.04174196e-09 syst_JES_EtaIntercalibration_Stat234: 0.0 syst_JES_EtaIntercalibration_Stat235: 0.0 syst_JES_EtaIntercalibration_Stat236: 0.0 - syst_JES_EtaIntercalibration_Stat237: 3.2259446290970343e-10 - syst_JES_EtaIntercalibration_Stat238: 3.679916677045827e-09 - syst_JES_EtaIntercalibration_Stat239: 2.6035826758526415e-09 + syst_JES_EtaIntercalibration_Stat237: 3.22594463e-10 + syst_JES_EtaIntercalibration_Stat238: 3.67991668e-09 + syst_JES_EtaIntercalibration_Stat239: 2.60358268e-09 syst_JES_EtaIntercalibration_Stat24: 0.0 - syst_JES_EtaIntercalibration_Stat240: 3.570622739803241e-10 - syst_JES_EtaIntercalibration_Stat241: 1.9251744726128072e-10 - syst_JES_EtaIntercalibration_Stat242: 2.5273786321008575e-09 - syst_JES_EtaIntercalibration_Stat243: 2.647644613614146e-09 - syst_JES_EtaIntercalibration_Stat244: 2.108501094972445e-10 + syst_JES_EtaIntercalibration_Stat240: 3.57062274e-10 + syst_JES_EtaIntercalibration_Stat241: 1.92517447e-10 + syst_JES_EtaIntercalibration_Stat242: 2.52737863e-09 + syst_JES_EtaIntercalibration_Stat243: 2.64764461e-09 + syst_JES_EtaIntercalibration_Stat244: 2.10850109e-10 syst_JES_EtaIntercalibration_Stat245: 0.0 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 @@ -23512,113 +23512,113 @@ bins: syst_JES_EtaIntercalibration_Stat93: 0.0 syst_JES_EtaIntercalibration_Stat94: 0.0 syst_JES_EtaIntercalibration_Stat95: 0.0 - syst_JES_EtaIntercalibration_Stat96: 1.7138642740894042e-11 + syst_JES_EtaIntercalibration_Stat96: 1.71386427e-11 syst_JES_EtaIntercalibration_Stat97: 0.0 syst_JES_EtaIntercalibration_Stat98: 0.0 syst_JES_EtaIntercalibration_Stat99: 0.0 - syst_JES_EtaIntercalibration_TotalStat_MJB: 5.832679487165397e-07 - syst_JES_Flavour_Comp: 1.380677662417988e-07 - syst_JES_Gjet_Generator: 8.365339024809454e-07 - syst_JES_Gjet_OOC: 7.170651713756567e-07 - syst_JES_Gjet_Purity: 6.76809264120993e-08 - syst_JES_Gjet_Stat1: 3.8408881785337096e-09 - syst_JES_Gjet_Stat10: 6.574972908689434e-08 - syst_JES_Gjet_Stat11: 6.298063829463783e-08 - syst_JES_Gjet_Stat12: 1.8757565806895095e-08 - syst_JES_Gjet_Stat13: 2.4705033899996976e-07 - syst_JES_Gjet_Stat14: 7.875509047039434e-07 - syst_JES_Gjet_Stat15: 1.1931832759471614e-06 - syst_JES_Gjet_Stat2: 3.6585006150060985e-09 - syst_JES_Gjet_Stat3: 5.086208877936493e-09 - syst_JES_Gjet_Stat4: 2.4474219088665528e-08 - syst_JES_Gjet_Stat5: 2.3452172607244728e-08 - syst_JES_Gjet_Stat6: 1.2397312128038076e-08 - syst_JES_Gjet_Stat7: 2.4057007295172854e-08 - syst_JES_Gjet_Stat8: 3.627988285537868e-09 - syst_JES_Gjet_Stat9: 2.406142711893873e-08 - syst_JES_Gjet_Veto: 8.781722083395717e-07 - syst_JES_Gjet_dPhi: 9.265474299786276e-09 - syst_JES_LArESZee: 9.498658536867193e-07 - syst_JES_LArEsmear: 1.0684876356327199e-07 - syst_JES_LAr_JVT: 1.4427825997010083e-07 - syst_JES_MJB_Alpha: 1.7578318321159165e-08 - syst_JES_MJB_Asym: 8.61796739376519e-07 - syst_JES_MJB_Beta: 7.075141889036574e-08 + syst_JES_EtaIntercalibration_TotalStat_MJB: 5.83267949e-07 + syst_JES_Flavour_Comp: 1.38067766e-07 + syst_JES_Gjet_Generator: 8.36533902e-07 + syst_JES_Gjet_OOC: 7.17065171e-07 + syst_JES_Gjet_Purity: 6.76809264e-08 + syst_JES_Gjet_Stat1: 3.84088818e-09 + syst_JES_Gjet_Stat10: 6.57497291e-08 + syst_JES_Gjet_Stat11: 6.29806383e-08 + syst_JES_Gjet_Stat12: 1.87575658e-08 + syst_JES_Gjet_Stat13: 2.47050339e-07 + syst_JES_Gjet_Stat14: 7.87550905e-07 + syst_JES_Gjet_Stat15: 1.19318328e-06 + syst_JES_Gjet_Stat2: 3.65850062e-09 + syst_JES_Gjet_Stat3: 5.08620888e-09 + syst_JES_Gjet_Stat4: 2.44742191e-08 + syst_JES_Gjet_Stat5: 2.34521726e-08 + syst_JES_Gjet_Stat6: 1.23973121e-08 + syst_JES_Gjet_Stat7: 2.40570073e-08 + syst_JES_Gjet_Stat8: 3.62798829e-09 + syst_JES_Gjet_Stat9: 2.40614271e-08 + syst_JES_Gjet_Veto: 8.78172208e-07 + syst_JES_Gjet_dPhi: 9.26547430e-09 + syst_JES_LArESZee: 9.49865854e-07 + syst_JES_LArEsmear: 1.06848764e-07 + syst_JES_LAr_JVT: 1.44278260e-07 + syst_JES_MJB_Alpha: 1.75783183e-08 + syst_JES_MJB_Asym: 8.61796739e-07 + syst_JES_MJB_Beta: 7.07514189e-08 syst_JES_MJB_Stat1: 0.0 - syst_JES_MJB_Stat10: 1.0070143395205454e-09 - syst_JES_MJB_Stat11: 2.500842058187602e-09 - syst_JES_MJB_Stat12: 3.7791071696896875e-09 - syst_JES_MJB_Stat13: 6.417241054378431e-09 - syst_JES_MJB_Stat14: 2.516150035272142e-07 - syst_JES_MJB_Stat15: 5.721092727792479e-07 - syst_JES_MJB_Stat16: 7.375427851996115e-07 + syst_JES_MJB_Stat10: 1.00701434e-09 + syst_JES_MJB_Stat11: 2.50084206e-09 + syst_JES_MJB_Stat12: 3.77910717e-09 + syst_JES_MJB_Stat13: 6.41724105e-09 + syst_JES_MJB_Stat14: 2.51615004e-07 + syst_JES_MJB_Stat15: 5.72109273e-07 + syst_JES_MJB_Stat16: 7.37542785e-07 syst_JES_MJB_Stat2: 0.0 - syst_JES_MJB_Stat3: 2.185848119151923e-10 - syst_JES_MJB_Stat4: 2.3183500059309424e-10 - syst_JES_MJB_Stat5: 2.163331458653528e-10 - syst_JES_MJB_Stat6: 2.6768845230977e-10 - syst_JES_MJB_Stat7: 2.908113305908145e-10 - syst_JES_MJB_Stat8: 3.8839058777859176e-10 - syst_JES_MJB_Stat9: 8.154295125883045e-10 - syst_JES_MJB_Threshold: 1.196670455890008e-07 - syst_JES_Pileup_MuOffset: 3.8315725583629494e-07 - syst_JES_Pileup_NPVOffset: 2.3131995158221867e-07 - syst_JES_Pileup_Pt_term: 6.199788464133273e-08 - syst_JES_PunchThrough_MC15: 8.927328645793208e-07 - syst_JES_SingleParticle_HighPt: 1.7355278015635473e-07 - syst_JES_Zjet_MC: 3.2065215966838586e-07 - syst_JES_Zjet_MuScale: 4.3790160995365154e-08 - syst_JES_Zjet_MuSmearID: 1.758897595086195e-09 - syst_JES_Zjet_MuSmearMS: 3.535981723651863e-08 - syst_JES_Zjet_OOC: 1.7875720964481403e-07 - syst_JES_Zjet_Stat1: 4.3057618149985955e-08 - syst_JES_Zjet_Stat10: 2.750395380668023e-08 - syst_JES_Zjet_Stat11: 1.640953292296889e-08 - syst_JES_Zjet_Stat12: 2.5998957671414446e-08 - syst_JES_Zjet_Stat13: 7.324770354761983e-08 - syst_JES_Zjet_Stat2: 2.970467134980625e-10 - syst_JES_Zjet_Stat3: 4.951129265127301e-09 - syst_JES_Zjet_Stat4: 1.1029454474270248e-08 - syst_JES_Zjet_Stat5: 6.662083964496395e-09 - syst_JES_Zjet_Stat6: 2.3292717209462703e-08 - syst_JES_Zjet_Stat7: 1.4409168019007897e-08 - syst_JES_Zjet_Stat8: 6.761232931204191e-09 - syst_JES_Zjet_Stat9: 2.338797981870174e-08 - syst_JES_Zjet_Veto: 3.0477517533421253e-08 - syst_JES_Zjet_dPhi: 2.9639049832948428e-08 - syst_PRW: 2.214e-13 - syst_Unfolding_bias: 1.171e-08 - syst_cleaning: 7.116130742896733e-08 - syst_lumi: 3.062e-07 + syst_JES_MJB_Stat3: 2.18584812e-10 + syst_JES_MJB_Stat4: 2.31835001e-10 + syst_JES_MJB_Stat5: 2.16333146e-10 + syst_JES_MJB_Stat6: 2.67688452e-10 + syst_JES_MJB_Stat7: 2.90811331e-10 + syst_JES_MJB_Stat8: 3.88390588e-10 + syst_JES_MJB_Stat9: 8.15429513e-10 + syst_JES_MJB_Threshold: 1.19667046e-07 + syst_JES_Pileup_MuOffset: 3.83157256e-07 + syst_JES_Pileup_NPVOffset: 2.31319952e-07 + syst_JES_Pileup_Pt_term: 6.19978846e-08 + syst_JES_PunchThrough_MC15: 8.92732865e-07 + syst_JES_SingleParticle_HighPt: 1.73552780e-07 + syst_JES_Zjet_MC: 3.20652160e-07 + syst_JES_Zjet_MuScale: 4.37901610e-08 + syst_JES_Zjet_MuSmearID: 1.75889760e-09 + syst_JES_Zjet_MuSmearMS: 3.53598172e-08 + syst_JES_Zjet_OOC: 1.78757210e-07 + syst_JES_Zjet_Stat1: 4.30576181e-08 + syst_JES_Zjet_Stat10: 2.75039538e-08 + syst_JES_Zjet_Stat11: 1.64095329e-08 + syst_JES_Zjet_Stat12: 2.59989577e-08 + syst_JES_Zjet_Stat13: 7.32477035e-08 + syst_JES_Zjet_Stat2: 2.97046713e-10 + syst_JES_Zjet_Stat3: 4.95112927e-09 + syst_JES_Zjet_Stat4: 1.10294545e-08 + syst_JES_Zjet_Stat5: 6.66208396e-09 + syst_JES_Zjet_Stat6: 2.32927172e-08 + syst_JES_Zjet_Stat7: 1.44091680e-08 + syst_JES_Zjet_Stat8: 6.76123293e-09 + syst_JES_Zjet_Stat9: 2.33879798e-08 + syst_JES_Zjet_Veto: 3.04775175e-08 + syst_JES_Zjet_dPhi: 2.96390498e-08 + syst_PRW: 2.21400000e-13 + syst_Unfolding_bias: 1.17100000e-08 + syst_cleaning: 7.11613074e-08 + syst_lumi: 3.06200000e-07 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 1.406393430018784e-07 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 1.40639343e-07 syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 5.447627075158504e-07 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.8835487782375055e-07 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 3.8865449910556804e-07 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 5.44762708e-07 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.88354878e-07 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 3.88654499e-07 - stat: 68.6 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 240.66377059083902 - syst_JER_NP1: 33.90026991042992 - syst_JER_NP2: 28.641689894278237 - syst_JER_NP3: 35.18525650041506 - syst_JER_NP4: 2.555807651213213 - syst_JER_NP5: 22.493739128922076 - syst_JER_NP6: 20.686265975279348 - syst_JER_NP7: 10.22024461546787 - syst_JER_NP8: 27.056705490506417 - syst_JES_EtaIntercalibration_Modelling: 291.03693940804146 + syst_JER_NP0: 2.40663771e+02 + syst_JER_NP1: 3.39002699e+01 + syst_JER_NP2: 2.86416899e+01 + syst_JER_NP3: 3.51852565e+01 + syst_JER_NP4: 2.55580765e+00 + syst_JER_NP5: 2.24937391e+01 + syst_JER_NP6: 2.06862660e+01 + syst_JER_NP7: 1.02202446e+01 + syst_JER_NP8: 2.70567055e+01 + syst_JES_EtaIntercalibration_Modelling: 2.91036939e+02 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 16.157353589000895 - syst_JES_EtaIntercalibration_Stat101: 26.825410994055616 - syst_JES_EtaIntercalibration_Stat102: 7.115081359338065 - syst_JES_EtaIntercalibration_Stat103: 0.31813262564534306 + syst_JES_EtaIntercalibration_Stat100: 1.61573536e+01 + syst_JES_EtaIntercalibration_Stat101: 2.68254110e+01 + syst_JES_EtaIntercalibration_Stat102: 7.11508136e+00 + syst_JES_EtaIntercalibration_Stat103: 3.18132626e-01 syst_JES_EtaIntercalibration_Stat104: 0.0 syst_JES_EtaIntercalibration_Stat105: 0.0 syst_JES_EtaIntercalibration_Stat106: 0.0 @@ -23627,131 +23627,131 @@ bins: syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 syst_JES_EtaIntercalibration_Stat110: 0.0 - syst_JES_EtaIntercalibration_Stat111: 0.0005013421062508115 - syst_JES_EtaIntercalibration_Stat112: 0.45192110138275243 - syst_JES_EtaIntercalibration_Stat113: 1.321891190680988 - syst_JES_EtaIntercalibration_Stat114: 4.622175975663411 - syst_JES_EtaIntercalibration_Stat115: 4.77288096960316 - syst_JES_EtaIntercalibration_Stat116: 0.08392652188074995 + syst_JES_EtaIntercalibration_Stat111: 5.01342106e-04 + syst_JES_EtaIntercalibration_Stat112: 4.51921101e-01 + syst_JES_EtaIntercalibration_Stat113: 1.32189119e+00 + syst_JES_EtaIntercalibration_Stat114: 4.62217598e+00 + syst_JES_EtaIntercalibration_Stat115: 4.77288097e+00 + syst_JES_EtaIntercalibration_Stat116: 8.39265219e-02 syst_JES_EtaIntercalibration_Stat117: 0.0 syst_JES_EtaIntercalibration_Stat118: 0.0 - syst_JES_EtaIntercalibration_Stat119: 0.5627573142127964 + syst_JES_EtaIntercalibration_Stat119: 5.62757314e-01 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 5.246789875724013 - syst_JES_EtaIntercalibration_Stat121: 7.0249025616018335 - syst_JES_EtaIntercalibration_Stat122: 0.991218770340332 - syst_JES_EtaIntercalibration_Stat123: 0.12767346895498688 + syst_JES_EtaIntercalibration_Stat120: 5.24678988e+00 + syst_JES_EtaIntercalibration_Stat121: 7.02490256e+00 + syst_JES_EtaIntercalibration_Stat122: 9.91218770e-01 + syst_JES_EtaIntercalibration_Stat123: 1.27673469e-01 syst_JES_EtaIntercalibration_Stat124: 0.0 syst_JES_EtaIntercalibration_Stat125: 0.0 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 syst_JES_EtaIntercalibration_Stat128: 0.0 syst_JES_EtaIntercalibration_Stat129: 0.0 - syst_JES_EtaIntercalibration_Stat13: 0.1816108752250261 + syst_JES_EtaIntercalibration_Stat13: 1.81610875e-01 syst_JES_EtaIntercalibration_Stat130: 0.0 - syst_JES_EtaIntercalibration_Stat131: 0.08606011663366486 - syst_JES_EtaIntercalibration_Stat132: 4.903513332295528 - syst_JES_EtaIntercalibration_Stat133: 13.026087171518546 - syst_JES_EtaIntercalibration_Stat134: 9.902971473249835 - syst_JES_EtaIntercalibration_Stat135: 0.15548714802195066 + syst_JES_EtaIntercalibration_Stat131: 8.60601166e-02 + syst_JES_EtaIntercalibration_Stat132: 4.90351333e+00 + syst_JES_EtaIntercalibration_Stat133: 1.30260872e+01 + syst_JES_EtaIntercalibration_Stat134: 9.90297147e+00 + syst_JES_EtaIntercalibration_Stat135: 1.55487148e-01 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 - syst_JES_EtaIntercalibration_Stat138: 0.24149922168611643 - syst_JES_EtaIntercalibration_Stat139: 7.338619148041407 - syst_JES_EtaIntercalibration_Stat14: 0.17569822850558284 - syst_JES_EtaIntercalibration_Stat140: 13.069619380456341 - syst_JES_EtaIntercalibration_Stat141: 4.623186644512636 - syst_JES_EtaIntercalibration_Stat142: 0.1909394062916296 + syst_JES_EtaIntercalibration_Stat138: 2.41499222e-01 + syst_JES_EtaIntercalibration_Stat139: 7.33861915e+00 + syst_JES_EtaIntercalibration_Stat14: 1.75698229e-01 + syst_JES_EtaIntercalibration_Stat140: 1.30696194e+01 + syst_JES_EtaIntercalibration_Stat141: 4.62318664e+00 + syst_JES_EtaIntercalibration_Stat142: 1.90939406e-01 syst_JES_EtaIntercalibration_Stat143: 0.0 syst_JES_EtaIntercalibration_Stat144: 0.0 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 syst_JES_EtaIntercalibration_Stat147: 0.0 syst_JES_EtaIntercalibration_Stat148: 0.0 - syst_JES_EtaIntercalibration_Stat149: 0.005120267188340859 - syst_JES_EtaIntercalibration_Stat15: 0.03208048433237877 - syst_JES_EtaIntercalibration_Stat150: 0.21763218397102946 - syst_JES_EtaIntercalibration_Stat151: 0.7983845235849704 - syst_JES_EtaIntercalibration_Stat152: 0.704607385357264 - syst_JES_EtaIntercalibration_Stat153: 0.021312885187137077 + syst_JES_EtaIntercalibration_Stat149: 5.12026719e-03 + syst_JES_EtaIntercalibration_Stat15: 3.20804843e-02 + syst_JES_EtaIntercalibration_Stat150: 2.17632184e-01 + syst_JES_EtaIntercalibration_Stat151: 7.98384524e-01 + syst_JES_EtaIntercalibration_Stat152: 7.04607385e-01 + syst_JES_EtaIntercalibration_Stat153: 2.13128852e-02 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 0.0028464916687588014 - syst_JES_EtaIntercalibration_Stat157: 0.6654225781411388 - syst_JES_EtaIntercalibration_Stat158: 0.9893763035367281 - syst_JES_EtaIntercalibration_Stat159: 0.31115993877747183 + syst_JES_EtaIntercalibration_Stat156: 2.84649167e-03 + syst_JES_EtaIntercalibration_Stat157: 6.65422578e-01 + syst_JES_EtaIntercalibration_Stat158: 9.89376304e-01 + syst_JES_EtaIntercalibration_Stat159: 3.11159939e-01 syst_JES_EtaIntercalibration_Stat16: 0.0 - syst_JES_EtaIntercalibration_Stat160: 0.052922119194151705 + syst_JES_EtaIntercalibration_Stat160: 5.29221192e-02 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 - syst_JES_EtaIntercalibration_Stat167: 3.772406658885015e-08 - syst_JES_EtaIntercalibration_Stat168: 0.0052738525766274505 - syst_JES_EtaIntercalibration_Stat169: 0.013990899720890005 + syst_JES_EtaIntercalibration_Stat167: 3.77240666e-08 + syst_JES_EtaIntercalibration_Stat168: 5.27385258e-03 + syst_JES_EtaIntercalibration_Stat169: 1.39908997e-02 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 0.009532426920779408 - syst_JES_EtaIntercalibration_Stat171: 1.1067846056998745e-05 + syst_JES_EtaIntercalibration_Stat170: 9.53242692e-03 + syst_JES_EtaIntercalibration_Stat171: 1.10678461e-05 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 - syst_JES_EtaIntercalibration_Stat174: 1.2040021306072303e-05 - syst_JES_EtaIntercalibration_Stat175: 0.03995615781078055 - syst_JES_EtaIntercalibration_Stat176: 0.018274114889646503 - syst_JES_EtaIntercalibration_Stat177: 0.007264768045161525 - syst_JES_EtaIntercalibration_Stat178: 7.846444545142723e-07 + syst_JES_EtaIntercalibration_Stat174: 1.20400213e-05 + syst_JES_EtaIntercalibration_Stat175: 3.99561578e-02 + syst_JES_EtaIntercalibration_Stat176: 1.82741149e-02 + syst_JES_EtaIntercalibration_Stat177: 7.26476805e-03 + syst_JES_EtaIntercalibration_Stat178: 7.84644455e-07 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 syst_JES_EtaIntercalibration_Stat180: 0.0 syst_JES_EtaIntercalibration_Stat181: 0.0 syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 - syst_JES_EtaIntercalibration_Stat184: 7.390664774714347e-11 - syst_JES_EtaIntercalibration_Stat185: 3.9624367187376e-05 - syst_JES_EtaIntercalibration_Stat186: 0.0010341014203162086 - syst_JES_EtaIntercalibration_Stat187: 0.0010328589872291376 - syst_JES_EtaIntercalibration_Stat188: 1.6289937845185293e-08 + syst_JES_EtaIntercalibration_Stat184: 7.39066477e-11 + syst_JES_EtaIntercalibration_Stat185: 3.96243672e-05 + syst_JES_EtaIntercalibration_Stat186: 1.03410142e-03 + syst_JES_EtaIntercalibration_Stat187: 1.03285899e-03 + syst_JES_EtaIntercalibration_Stat188: 1.62899378e-08 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 - syst_JES_EtaIntercalibration_Stat191: 1.136138727224805e-15 - syst_JES_EtaIntercalibration_Stat192: 0.00100678209534139 - syst_JES_EtaIntercalibration_Stat193: 0.0015273126726377934 - syst_JES_EtaIntercalibration_Stat194: 0.0003859602967599129 - syst_JES_EtaIntercalibration_Stat195: 1.1215895004412265e-11 - syst_JES_EtaIntercalibration_Stat196: 1.4583867799729947e-39 + syst_JES_EtaIntercalibration_Stat191: 1.13613873e-15 + syst_JES_EtaIntercalibration_Stat192: 1.00678210e-03 + syst_JES_EtaIntercalibration_Stat193: 1.52731267e-03 + syst_JES_EtaIntercalibration_Stat194: 3.85960297e-04 + syst_JES_EtaIntercalibration_Stat195: 1.12158950e-11 + syst_JES_EtaIntercalibration_Stat196: 1.45838678e-39 syst_JES_EtaIntercalibration_Stat197: 0.0 syst_JES_EtaIntercalibration_Stat198: 0.0 - syst_JES_EtaIntercalibration_Stat199: 4.6583506469564955e-22 + syst_JES_EtaIntercalibration_Stat199: 4.65835065e-22 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 1.6554234352575783e-11 - syst_JES_EtaIntercalibration_Stat201: 6.578591186568748e-08 - syst_JES_EtaIntercalibration_Stat202: 5.3778401566056236e-08 - syst_JES_EtaIntercalibration_Stat203: 5.416988781997326e-23 + syst_JES_EtaIntercalibration_Stat200: 1.65542344e-11 + syst_JES_EtaIntercalibration_Stat201: 6.57859119e-08 + syst_JES_EtaIntercalibration_Stat202: 5.37784016e-08 + syst_JES_EtaIntercalibration_Stat203: 5.41698878e-23 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 - syst_JES_EtaIntercalibration_Stat206: 1.5397931351438996e-22 - syst_JES_EtaIntercalibration_Stat207: 3.763871544035476e-08 - syst_JES_EtaIntercalibration_Stat208: 6.049237038668596e-08 - syst_JES_EtaIntercalibration_Stat209: 2.1744402097611622e-08 + syst_JES_EtaIntercalibration_Stat206: 1.53979314e-22 + syst_JES_EtaIntercalibration_Stat207: 3.76387154e-08 + syst_JES_EtaIntercalibration_Stat208: 6.04923704e-08 + syst_JES_EtaIntercalibration_Stat209: 2.17444021e-08 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 2.2404077195324922e-29 + syst_JES_EtaIntercalibration_Stat210: 2.24040772e-29 syst_JES_EtaIntercalibration_Stat211: 0.0 syst_JES_EtaIntercalibration_Stat212: 0.0 - syst_JES_EtaIntercalibration_Stat213: 6.397052661187025e-30 - syst_JES_EtaIntercalibration_Stat214: 8.293925292043568e-23 - syst_JES_EtaIntercalibration_Stat215: 1.1677486544629371e-22 + syst_JES_EtaIntercalibration_Stat213: 6.39705266e-30 + syst_JES_EtaIntercalibration_Stat214: 8.29392529e-23 + syst_JES_EtaIntercalibration_Stat215: 1.16774865e-22 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 - syst_JES_EtaIntercalibration_Stat219: 6.230186754825251e-39 + syst_JES_EtaIntercalibration_Stat219: 6.23018675e-39 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 9.487789560798659e-23 - syst_JES_EtaIntercalibration_Stat221: 7.338695486857452e-17 - syst_JES_EtaIntercalibration_Stat222: 6.175627154386832e-23 - syst_JES_EtaIntercalibration_Stat223: 1.4220137130140483e-39 + syst_JES_EtaIntercalibration_Stat220: 9.48778956e-23 + syst_JES_EtaIntercalibration_Stat221: 7.33869549e-17 + syst_JES_EtaIntercalibration_Stat222: 6.17562715e-23 + syst_JES_EtaIntercalibration_Stat223: 1.42201371e-39 syst_JES_EtaIntercalibration_Stat224: 0.0 syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 @@ -23778,19 +23778,19 @@ bins: syst_JES_EtaIntercalibration_Stat245: 0.0 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 - syst_JES_EtaIntercalibration_Stat27: 0.11190857697245553 - syst_JES_EtaIntercalibration_Stat28: 0.581731442914168 - syst_JES_EtaIntercalibration_Stat29: 1.044682923187701 + syst_JES_EtaIntercalibration_Stat27: 1.11908577e-01 + syst_JES_EtaIntercalibration_Stat28: 5.81731443e-01 + syst_JES_EtaIntercalibration_Stat29: 1.04468292e+00 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 0.7482375608722139 - syst_JES_EtaIntercalibration_Stat31: 0.013354111726356043 + syst_JES_EtaIntercalibration_Stat30: 7.48237561e-01 + syst_JES_EtaIntercalibration_Stat31: 1.33541117e-02 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 - syst_JES_EtaIntercalibration_Stat34: 0.015908886667520137 - syst_JES_EtaIntercalibration_Stat35: 0.37412565278927346 - syst_JES_EtaIntercalibration_Stat36: 0.9021434974548117 - syst_JES_EtaIntercalibration_Stat37: 0.6326480439391241 - syst_JES_EtaIntercalibration_Stat38: 0.042850336603111994 + syst_JES_EtaIntercalibration_Stat34: 1.59088867e-02 + syst_JES_EtaIntercalibration_Stat35: 3.74125653e-01 + syst_JES_EtaIntercalibration_Stat36: 9.02143497e-01 + syst_JES_EtaIntercalibration_Stat37: 6.32648044e-01 + syst_JES_EtaIntercalibration_Stat38: 4.28503366e-02 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 syst_JES_EtaIntercalibration_Stat40: 0.0 @@ -23801,21 +23801,21 @@ bins: syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 syst_JES_EtaIntercalibration_Stat47: 0.0 - syst_JES_EtaIntercalibration_Stat48: 0.03865937402493734 - syst_JES_EtaIntercalibration_Stat49: 0.0510708850520529 - syst_JES_EtaIntercalibration_Stat5: 0.032164183496554054 - syst_JES_EtaIntercalibration_Stat50: 0.9817091766404141 - syst_JES_EtaIntercalibration_Stat51: 2.7292491183473895 - syst_JES_EtaIntercalibration_Stat52: 1.4086306852755976 - syst_JES_EtaIntercalibration_Stat53: 0.08465106319474079 - syst_JES_EtaIntercalibration_Stat54: 0.07675583153741479 + syst_JES_EtaIntercalibration_Stat48: 3.86593740e-02 + syst_JES_EtaIntercalibration_Stat49: 5.10708851e-02 + syst_JES_EtaIntercalibration_Stat5: 3.21641835e-02 + syst_JES_EtaIntercalibration_Stat50: 9.81709177e-01 + syst_JES_EtaIntercalibration_Stat51: 2.72924912e+00 + syst_JES_EtaIntercalibration_Stat52: 1.40863069e+00 + syst_JES_EtaIntercalibration_Stat53: 8.46510632e-02 + syst_JES_EtaIntercalibration_Stat54: 7.67558315e-02 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 0.02083262825473541 - syst_JES_EtaIntercalibration_Stat57: 2.0499471182203703 - syst_JES_EtaIntercalibration_Stat58: 3.0476407268574164 - syst_JES_EtaIntercalibration_Stat59: 0.5351610108182396 - syst_JES_EtaIntercalibration_Stat6: 0.12649491877146687 - syst_JES_EtaIntercalibration_Stat60: 0.14503199371173245 + syst_JES_EtaIntercalibration_Stat56: 2.08326283e-02 + syst_JES_EtaIntercalibration_Stat57: 2.04994712e+00 + syst_JES_EtaIntercalibration_Stat58: 3.04764073e+00 + syst_JES_EtaIntercalibration_Stat59: 5.35161011e-01 + syst_JES_EtaIntercalibration_Stat6: 1.26494919e-01 + syst_JES_EtaIntercalibration_Stat60: 1.45031994e-01 syst_JES_EtaIntercalibration_Stat61: 0.0 syst_JES_EtaIntercalibration_Stat62: 0.0 syst_JES_EtaIntercalibration_Stat63: 0.0 @@ -23825,21 +23825,21 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 0.12616297822657802 - syst_JES_EtaIntercalibration_Stat70: 0.032164183496554054 - syst_JES_EtaIntercalibration_Stat71: 0.1563514310775568 - syst_JES_EtaIntercalibration_Stat72: 6.079665677485893 - syst_JES_EtaIntercalibration_Stat73: 25.44177028038733 - syst_JES_EtaIntercalibration_Stat74: 13.867416017412907 - syst_JES_EtaIntercalibration_Stat75: 0.28728142996023953 - syst_JES_EtaIntercalibration_Stat76: 0.07675583153741479 + syst_JES_EtaIntercalibration_Stat7: 1.26162978e-01 + syst_JES_EtaIntercalibration_Stat70: 3.21641835e-02 + syst_JES_EtaIntercalibration_Stat71: 1.56351431e-01 + syst_JES_EtaIntercalibration_Stat72: 6.07966568e+00 + syst_JES_EtaIntercalibration_Stat73: 2.54417703e+01 + syst_JES_EtaIntercalibration_Stat74: 1.38674160e+01 + syst_JES_EtaIntercalibration_Stat75: 2.87281430e-01 + syst_JES_EtaIntercalibration_Stat76: 7.67558315e-02 syst_JES_EtaIntercalibration_Stat77: 0.0 - syst_JES_EtaIntercalibration_Stat78: 0.6666987531861749 - syst_JES_EtaIntercalibration_Stat79: 13.431705997377996 - syst_JES_EtaIntercalibration_Stat8: 0.05659133038725986 - syst_JES_EtaIntercalibration_Stat80: 28.674983435043163 - syst_JES_EtaIntercalibration_Stat81: 6.006236175842571 - syst_JES_EtaIntercalibration_Stat82: 0.05306699044603905 + syst_JES_EtaIntercalibration_Stat78: 6.66698753e-01 + syst_JES_EtaIntercalibration_Stat79: 1.34317060e+01 + syst_JES_EtaIntercalibration_Stat8: 5.65913304e-02 + syst_JES_EtaIntercalibration_Stat80: 2.86749834e+01 + syst_JES_EtaIntercalibration_Stat81: 6.00623618e+00 + syst_JES_EtaIntercalibration_Stat82: 5.30669904e-02 syst_JES_EtaIntercalibration_Stat83: 0.0 syst_JES_EtaIntercalibration_Stat84: 0.0 syst_JES_EtaIntercalibration_Stat85: 0.0 @@ -23849,42 +23849,42 @@ bins: syst_JES_EtaIntercalibration_Stat89: 0.0 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 0.026968031073847418 - syst_JES_EtaIntercalibration_Stat92: 0.3287540227890755 - syst_JES_EtaIntercalibration_Stat93: 7.119363507364967 - syst_JES_EtaIntercalibration_Stat94: 25.86013921076219 - syst_JES_EtaIntercalibration_Stat95: 16.728185795237927 - syst_JES_EtaIntercalibration_Stat96: 0.2627006180046023 - syst_JES_EtaIntercalibration_Stat97: 0.07675583153741479 + syst_JES_EtaIntercalibration_Stat91: 2.69680311e-02 + syst_JES_EtaIntercalibration_Stat92: 3.28754023e-01 + syst_JES_EtaIntercalibration_Stat93: 7.11936351e+00 + syst_JES_EtaIntercalibration_Stat94: 2.58601392e+01 + syst_JES_EtaIntercalibration_Stat95: 1.67281858e+01 + syst_JES_EtaIntercalibration_Stat96: 2.62700618e-01 + syst_JES_EtaIntercalibration_Stat97: 7.67558315e-02 syst_JES_EtaIntercalibration_Stat98: 0.0 - syst_JES_EtaIntercalibration_Stat99: 0.5904871355076247 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.00021808496217472217 - syst_JES_Flavour_Comp: 19.035419617124283 - syst_JES_Gjet_Generator: 217.00383977017552 - syst_JES_Gjet_OOC: 142.13848837225615 - syst_JES_Gjet_Purity: 57.15617398846777 + syst_JES_EtaIntercalibration_Stat99: 5.90487136e-01 + syst_JES_EtaIntercalibration_TotalStat_MJB: 2.18084962e-04 + syst_JES_Flavour_Comp: 1.90354196e+01 + syst_JES_Gjet_Generator: 2.17003840e+02 + syst_JES_Gjet_OOC: 1.42138488e+02 + syst_JES_Gjet_Purity: 5.71561740e+01 syst_JES_Gjet_Stat1: 0.0 - syst_JES_Gjet_Stat10: 1.653535850080064 - syst_JES_Gjet_Stat11: 0.47255292825248685 - syst_JES_Gjet_Stat12: 0.008428577978739162 - syst_JES_Gjet_Stat13: 4.309391691410749e-05 - syst_JES_Gjet_Stat14: 2.0542122570853117e-28 - syst_JES_Gjet_Stat15: 1.657572898355147e-22 + syst_JES_Gjet_Stat10: 1.65353585e+00 + syst_JES_Gjet_Stat11: 4.72552928e-01 + syst_JES_Gjet_Stat12: 8.42857798e-03 + syst_JES_Gjet_Stat13: 4.30939169e-05 + syst_JES_Gjet_Stat14: 2.05421226e-28 + syst_JES_Gjet_Stat15: 1.65757290e-22 syst_JES_Gjet_Stat2: 0.0 syst_JES_Gjet_Stat3: 0.0 - syst_JES_Gjet_Stat4: 3.283961194959526 - syst_JES_Gjet_Stat5: 4.272720766677832 - syst_JES_Gjet_Stat6: 13.259863225161864 - syst_JES_Gjet_Stat7: 20.596627757960764 - syst_JES_Gjet_Stat8: 3.541121008946178 - syst_JES_Gjet_Stat9: 1.971156403611849 - syst_JES_Gjet_Veto: 38.10887943773735 - syst_JES_Gjet_dPhi: 24.002013977997766 - syst_JES_LArESZee: 131.81185558495866 - syst_JES_LArEsmear: 8.458134945128268 - syst_JES_LAr_JVT: 22.07549036827948 + syst_JES_Gjet_Stat4: 3.28396119e+00 + syst_JES_Gjet_Stat5: 4.27272077e+00 + syst_JES_Gjet_Stat6: 1.32598632e+01 + syst_JES_Gjet_Stat7: 2.05966278e+01 + syst_JES_Gjet_Stat8: 3.54112101e+00 + syst_JES_Gjet_Stat9: 1.97115640e+00 + syst_JES_Gjet_Veto: 3.81088794e+01 + syst_JES_Gjet_dPhi: 2.40020140e+01 + syst_JES_LArESZee: 1.31811856e+02 + syst_JES_LArEsmear: 8.45813495e+00 + syst_JES_LAr_JVT: 2.20754904e+01 syst_JES_MJB_Alpha: 0.0 - syst_JES_MJB_Asym: 8.425561153418805e-10 + syst_JES_MJB_Asym: 8.42556115e-10 syst_JES_MJB_Beta: 0.0 syst_JES_MJB_Stat1: 0.0 syst_JES_MJB_Stat10: 0.0 @@ -23896,71 +23896,71 @@ bins: syst_JES_MJB_Stat16: 0.0 syst_JES_MJB_Stat2: 0.0 syst_JES_MJB_Stat3: 0.0 - syst_JES_MJB_Stat4: 9.868359476123677e-23 + syst_JES_MJB_Stat4: 9.86835948e-23 syst_JES_MJB_Stat5: 0.0 syst_JES_MJB_Stat6: 0.0 syst_JES_MJB_Stat7: 0.0 syst_JES_MJB_Stat8: 0.0 syst_JES_MJB_Stat9: 0.0 - syst_JES_MJB_Threshold: 0.00048107711180225566 + syst_JES_MJB_Threshold: 4.81077112e-04 syst_JES_Pileup_MuOffset: 0.0 - syst_JES_Pileup_NPVOffset: 16.73011562273256 - syst_JES_Pileup_Pt_term: 50.81405054460822 + syst_JES_Pileup_NPVOffset: 1.67301156e+01 + syst_JES_Pileup_Pt_term: 5.08140505e+01 syst_JES_PunchThrough_MC15: 0.0 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 209.79988393705082 - syst_JES_Zjet_MuScale: 11.143917802999086 - syst_JES_Zjet_MuSmearID: 0.4685445843246937 - syst_JES_Zjet_MuSmearMS: 3.058714479973572 - syst_JES_Zjet_OOC: 146.89882394015277 - syst_JES_Zjet_Stat1: 0.30059236517250404 - syst_JES_Zjet_Stat10: 6.504887143525243 - syst_JES_Zjet_Stat11: 5.198188987522482 - syst_JES_Zjet_Stat12: 0.6895664199335697 - syst_JES_Zjet_Stat13: 3.536291984551049e-06 - syst_JES_Zjet_Stat2: 1.7822802809883746e-05 + syst_JES_Zjet_MC: 2.09799884e+02 + syst_JES_Zjet_MuScale: 1.11439178e+01 + syst_JES_Zjet_MuSmearID: 4.68544584e-01 + syst_JES_Zjet_MuSmearMS: 3.05871448e+00 + syst_JES_Zjet_OOC: 1.46898824e+02 + syst_JES_Zjet_Stat1: 3.00592365e-01 + syst_JES_Zjet_Stat10: 6.50488714e+00 + syst_JES_Zjet_Stat11: 5.19818899e+00 + syst_JES_Zjet_Stat12: 6.89566420e-01 + syst_JES_Zjet_Stat13: 3.53629198e-06 + syst_JES_Zjet_Stat2: 1.78228028e-05 syst_JES_Zjet_Stat3: 0.0 syst_JES_Zjet_Stat4: 0.0 - syst_JES_Zjet_Stat5: 2.8059223082615814 - syst_JES_Zjet_Stat6: 5.492406644632205 - syst_JES_Zjet_Stat7: 9.342722555550926 - syst_JES_Zjet_Stat8: 16.140795364541365 - syst_JES_Zjet_Stat9: 19.968670461500434 - syst_JES_Zjet_Veto: 18.667479744196857 - syst_JES_Zjet_dPhi: 32.6005184007862 + syst_JES_Zjet_Stat5: 2.80592231e+00 + syst_JES_Zjet_Stat6: 5.49240664e+00 + syst_JES_Zjet_Stat7: 9.34272256e+00 + syst_JES_Zjet_Stat8: 1.61407954e+01 + syst_JES_Zjet_Stat9: 1.99686705e+01 + syst_JES_Zjet_Veto: 1.86674797e+01 + syst_JES_Zjet_dPhi: 3.26005184e+01 syst_PRW: 0.0 syst_Unfolding_bias: 16.1 - syst_cleaning: 99.83887264988523 + syst_cleaning: 9.98388726e+01 syst_lumi: 208.53 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 97.97884266003553 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 170.0522296237247 - syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.00022663049157664115 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 9.79788427e+01 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 1.70052230e+02 + syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 2.26630492e-04 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 371.0142452790728 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.001800043358588898 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 78.50289015698722 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 3.71014245e+02 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.80004336e-03 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 7.85028902e+01 - stat: 44.01 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 96.96688524826402 - syst_JER_NP1: 10.161907731818864 - syst_JER_NP2: 11.084500022554018 - syst_JER_NP3: 12.762037925033761 - syst_JER_NP4: 2.6971423766646065 - syst_JER_NP5: 6.971292043086417 - syst_JER_NP6: 6.52920584757442 - syst_JER_NP7: 3.6545837998327526 - syst_JER_NP8: 7.892652453389799 - syst_JES_EtaIntercalibration_Modelling: 126.30806943639826 + syst_JER_NP0: 9.69668852e+01 + syst_JER_NP1: 1.01619077e+01 + syst_JER_NP2: 1.10845000e+01 + syst_JER_NP3: 1.27620379e+01 + syst_JER_NP4: 2.69714238e+00 + syst_JER_NP5: 6.97129204e+00 + syst_JER_NP6: 6.52920585e+00 + syst_JER_NP7: 3.65458380e+00 + syst_JER_NP8: 7.89265245e+00 + syst_JES_EtaIntercalibration_Modelling: 1.26308069e+02 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 6.603265612558683 - syst_JES_EtaIntercalibration_Stat101: 10.83164862797903 - syst_JES_EtaIntercalibration_Stat102: 3.203081485070275 - syst_JES_EtaIntercalibration_Stat103: 0.23823778037918333 + syst_JES_EtaIntercalibration_Stat100: 6.60326561e+00 + syst_JES_EtaIntercalibration_Stat101: 1.08316486e+01 + syst_JES_EtaIntercalibration_Stat102: 3.20308149e+00 + syst_JES_EtaIntercalibration_Stat103: 2.38237780e-01 syst_JES_EtaIntercalibration_Stat104: 0.0 syst_JES_EtaIntercalibration_Stat105: 0.0 syst_JES_EtaIntercalibration_Stat106: 0.0 @@ -23969,142 +23969,142 @@ bins: syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 syst_JES_EtaIntercalibration_Stat110: 0.0 - syst_JES_EtaIntercalibration_Stat111: 0.00709794420941726 - syst_JES_EtaIntercalibration_Stat112: 0.26348170240075497 - syst_JES_EtaIntercalibration_Stat113: 3.5700011204480036 - syst_JES_EtaIntercalibration_Stat114: 9.317541346836084 - syst_JES_EtaIntercalibration_Stat115: 7.848942349132143 - syst_JES_EtaIntercalibration_Stat116: 0.20308295718745084 + syst_JES_EtaIntercalibration_Stat111: 7.09794421e-03 + syst_JES_EtaIntercalibration_Stat112: 2.63481702e-01 + syst_JES_EtaIntercalibration_Stat113: 3.57000112e+00 + syst_JES_EtaIntercalibration_Stat114: 9.31754135e+00 + syst_JES_EtaIntercalibration_Stat115: 7.84894235e+00 + syst_JES_EtaIntercalibration_Stat116: 2.03082957e-01 syst_JES_EtaIntercalibration_Stat117: 0.0 syst_JES_EtaIntercalibration_Stat118: 0.0 - syst_JES_EtaIntercalibration_Stat119: 0.2822198433845501 + syst_JES_EtaIntercalibration_Stat119: 2.82219843e-01 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 8.10579809457403 - syst_JES_EtaIntercalibration_Stat121: 11.6566960155955 - syst_JES_EtaIntercalibration_Stat122: 3.039758543042523 - syst_JES_EtaIntercalibration_Stat123: 0.3315799316529877 + syst_JES_EtaIntercalibration_Stat120: 8.10579809e+00 + syst_JES_EtaIntercalibration_Stat121: 1.16566960e+01 + syst_JES_EtaIntercalibration_Stat122: 3.03975854e+00 + syst_JES_EtaIntercalibration_Stat123: 3.31579932e-01 syst_JES_EtaIntercalibration_Stat124: 0.0 syst_JES_EtaIntercalibration_Stat125: 0.0 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 syst_JES_EtaIntercalibration_Stat128: 0.0 syst_JES_EtaIntercalibration_Stat129: 0.0 - syst_JES_EtaIntercalibration_Stat13: 0.0492873825131747 + syst_JES_EtaIntercalibration_Stat13: 4.92873825e-02 syst_JES_EtaIntercalibration_Stat130: 0.0 - syst_JES_EtaIntercalibration_Stat131: 0.10689485300986198 - syst_JES_EtaIntercalibration_Stat132: 0.9459404632427985 - syst_JES_EtaIntercalibration_Stat133: 2.4625484259197825 - syst_JES_EtaIntercalibration_Stat134: 2.0950687339560012 - syst_JES_EtaIntercalibration_Stat135: 0.06643156234050197 + syst_JES_EtaIntercalibration_Stat131: 1.06894853e-01 + syst_JES_EtaIntercalibration_Stat132: 9.45940463e-01 + syst_JES_EtaIntercalibration_Stat133: 2.46254843e+00 + syst_JES_EtaIntercalibration_Stat134: 2.09506873e+00 + syst_JES_EtaIntercalibration_Stat135: 6.64315623e-02 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 - syst_JES_EtaIntercalibration_Stat138: 0.10545904797597976 - syst_JES_EtaIntercalibration_Stat139: 1.3593204184444518 - syst_JES_EtaIntercalibration_Stat14: 0.04318362276372838 - syst_JES_EtaIntercalibration_Stat140: 2.8199792552428464 - syst_JES_EtaIntercalibration_Stat141: 0.7616080799860254 - syst_JES_EtaIntercalibration_Stat142: 0.07285539376051714 + syst_JES_EtaIntercalibration_Stat138: 1.05459048e-01 + syst_JES_EtaIntercalibration_Stat139: 1.35932042e+00 + syst_JES_EtaIntercalibration_Stat14: 4.31836228e-02 + syst_JES_EtaIntercalibration_Stat140: 2.81997926e+00 + syst_JES_EtaIntercalibration_Stat141: 7.61608080e-01 + syst_JES_EtaIntercalibration_Stat142: 7.28553938e-02 syst_JES_EtaIntercalibration_Stat143: 0.0 syst_JES_EtaIntercalibration_Stat144: 0.0 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 syst_JES_EtaIntercalibration_Stat147: 0.0 syst_JES_EtaIntercalibration_Stat148: 0.0 - syst_JES_EtaIntercalibration_Stat149: 0.012654336282476454 - syst_JES_EtaIntercalibration_Stat15: 0.015495424122946747 - syst_JES_EtaIntercalibration_Stat150: 0.2865678061122708 - syst_JES_EtaIntercalibration_Stat151: 1.3319293787584985 - syst_JES_EtaIntercalibration_Stat152: 1.104982515698778 - syst_JES_EtaIntercalibration_Stat153: 0.04842814096783614 + syst_JES_EtaIntercalibration_Stat149: 1.26543363e-02 + syst_JES_EtaIntercalibration_Stat15: 1.54954241e-02 + syst_JES_EtaIntercalibration_Stat150: 2.86567806e-01 + syst_JES_EtaIntercalibration_Stat151: 1.33192938e+00 + syst_JES_EtaIntercalibration_Stat152: 1.10498252e+00 + syst_JES_EtaIntercalibration_Stat153: 4.84281410e-02 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 0.0018170893205068372 - syst_JES_EtaIntercalibration_Stat157: 0.8049559242592106 - syst_JES_EtaIntercalibration_Stat158: 1.3562167525878743 - syst_JES_EtaIntercalibration_Stat159: 0.2833755105862184 + syst_JES_EtaIntercalibration_Stat156: 1.81708932e-03 + syst_JES_EtaIntercalibration_Stat157: 8.04955924e-01 + syst_JES_EtaIntercalibration_Stat158: 1.35621675e+00 + syst_JES_EtaIntercalibration_Stat159: 2.83375511e-01 syst_JES_EtaIntercalibration_Stat16: 0.0 - syst_JES_EtaIntercalibration_Stat160: 0.013682755095374616 + syst_JES_EtaIntercalibration_Stat160: 1.36827551e-02 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 - syst_JES_EtaIntercalibration_Stat167: 9.896072289044779e-06 - syst_JES_EtaIntercalibration_Stat168: 0.007705465771126364 - syst_JES_EtaIntercalibration_Stat169: 0.08503419253453284 + syst_JES_EtaIntercalibration_Stat167: 9.89607229e-06 + syst_JES_EtaIntercalibration_Stat168: 7.70546577e-03 + syst_JES_EtaIntercalibration_Stat169: 8.50341925e-02 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 0.07160137842248569 - syst_JES_EtaIntercalibration_Stat171: 0.000197920426779773 + syst_JES_EtaIntercalibration_Stat170: 7.16013784e-02 + syst_JES_EtaIntercalibration_Stat171: 1.97920427e-04 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 - syst_JES_EtaIntercalibration_Stat174: 0.00023751754208900026 - syst_JES_EtaIntercalibration_Stat175: 0.15815722770395288 - syst_JES_EtaIntercalibration_Stat176: 0.0237837717782525 - syst_JES_EtaIntercalibration_Stat177: 0.011648446814382594 - syst_JES_EtaIntercalibration_Stat178: 0.00018684818088490987 + syst_JES_EtaIntercalibration_Stat174: 2.37517542e-04 + syst_JES_EtaIntercalibration_Stat175: 1.58157228e-01 + syst_JES_EtaIntercalibration_Stat176: 2.37837718e-02 + syst_JES_EtaIntercalibration_Stat177: 1.16484468e-02 + syst_JES_EtaIntercalibration_Stat178: 1.86848181e-04 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 syst_JES_EtaIntercalibration_Stat180: 0.0 syst_JES_EtaIntercalibration_Stat181: 0.0 syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 - syst_JES_EtaIntercalibration_Stat184: 3.67721953244871e-07 - syst_JES_EtaIntercalibration_Stat185: 0.0008156849759557914 - syst_JES_EtaIntercalibration_Stat186: 0.004696100589851117 - syst_JES_EtaIntercalibration_Stat187: 0.004205325552201637 - syst_JES_EtaIntercalibration_Stat188: 3.909238672682956e-06 + syst_JES_EtaIntercalibration_Stat184: 3.67721953e-07 + syst_JES_EtaIntercalibration_Stat185: 8.15684976e-04 + syst_JES_EtaIntercalibration_Stat186: 4.69610059e-03 + syst_JES_EtaIntercalibration_Stat187: 4.20532555e-03 + syst_JES_EtaIntercalibration_Stat188: 3.90923867e-06 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 - syst_JES_EtaIntercalibration_Stat191: 2.1615994078459588e-10 - syst_JES_EtaIntercalibration_Stat192: 0.0038462769986052745 - syst_JES_EtaIntercalibration_Stat193: 0.007002606086308155 - syst_JES_EtaIntercalibration_Stat194: 0.0012593371947179197 - syst_JES_EtaIntercalibration_Stat195: 5.639557429444265e-08 - syst_JES_EtaIntercalibration_Stat196: 1.4038271795345753e-27 + syst_JES_EtaIntercalibration_Stat191: 2.16159941e-10 + syst_JES_EtaIntercalibration_Stat192: 3.84627700e-03 + syst_JES_EtaIntercalibration_Stat193: 7.00260609e-03 + syst_JES_EtaIntercalibration_Stat194: 1.25933719e-03 + syst_JES_EtaIntercalibration_Stat195: 5.63955743e-08 + syst_JES_EtaIntercalibration_Stat196: 1.40382718e-27 syst_JES_EtaIntercalibration_Stat197: 0.0 syst_JES_EtaIntercalibration_Stat198: 0.0 - syst_JES_EtaIntercalibration_Stat199: 6.607773830875267e-15 + syst_JES_EtaIntercalibration_Stat199: 6.60777383e-15 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 8.249574049610077e-08 - syst_JES_EtaIntercalibration_Stat201: 1.582423720120499e-05 - syst_JES_EtaIntercalibration_Stat202: 1.3003561771683942e-05 - syst_JES_EtaIntercalibration_Stat203: 7.682485229340766e-16 + syst_JES_EtaIntercalibration_Stat200: 8.24957405e-08 + syst_JES_EtaIntercalibration_Stat201: 1.58242372e-05 + syst_JES_EtaIntercalibration_Stat202: 1.30035618e-05 + syst_JES_EtaIntercalibration_Stat203: 7.68248523e-16 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 - syst_JES_EtaIntercalibration_Stat206: 2.1841088486747004e-15 - syst_JES_EtaIntercalibration_Stat207: 9.09704483609925e-06 - syst_JES_EtaIntercalibration_Stat208: 1.4604992297156474e-05 - syst_JES_EtaIntercalibration_Stat209: 5.2640824021547195e-06 + syst_JES_EtaIntercalibration_Stat206: 2.18410885e-15 + syst_JES_EtaIntercalibration_Stat207: 9.09704484e-06 + syst_JES_EtaIntercalibration_Stat208: 1.46049923e-05 + syst_JES_EtaIntercalibration_Stat209: 5.26408240e-06 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 4.9337466693858406e-20 + syst_JES_EtaIntercalibration_Stat210: 4.93374667e-20 syst_JES_EtaIntercalibration_Stat211: 0.0 - syst_JES_EtaIntercalibration_Stat212: 1.3448051187811564e-35 - syst_JES_EtaIntercalibration_Stat213: 1.4085862442534358e-20 - syst_JES_EtaIntercalibration_Stat214: 1.1764089085007814e-15 - syst_JES_EtaIntercalibration_Stat215: 1.6567065974418401e-15 + syst_JES_EtaIntercalibration_Stat212: 1.34480512e-35 + syst_JES_EtaIntercalibration_Stat213: 1.40858624e-20 + syst_JES_EtaIntercalibration_Stat214: 1.17640891e-15 + syst_JES_EtaIntercalibration_Stat215: 1.65670660e-15 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 - syst_JES_EtaIntercalibration_Stat219: 6.0154124546867105e-27 + syst_JES_EtaIntercalibration_Stat219: 6.01541245e-27 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 1.3456244758475523e-15 - syst_JES_EtaIntercalibration_Stat221: 1.3933811893903978e-11 - syst_JES_EtaIntercalibration_Stat222: 8.759846959299887e-16 - syst_JES_EtaIntercalibration_Stat223: 1.3769803920172576e-27 + syst_JES_EtaIntercalibration_Stat220: 1.34562448e-15 + syst_JES_EtaIntercalibration_Stat221: 1.39338119e-11 + syst_JES_EtaIntercalibration_Stat222: 8.75984696e-16 + syst_JES_EtaIntercalibration_Stat223: 1.37698039e-27 syst_JES_EtaIntercalibration_Stat224: 0.0 syst_JES_EtaIntercalibration_Stat225: 0.0 - syst_JES_EtaIntercalibration_Stat226: 4.500734023467727e-36 - syst_JES_EtaIntercalibration_Stat227: 2.8215107655297013e-36 + syst_JES_EtaIntercalibration_Stat226: 4.50073402e-36 + syst_JES_EtaIntercalibration_Stat227: 2.82151077e-36 syst_JES_EtaIntercalibration_Stat228: 0.0 syst_JES_EtaIntercalibration_Stat229: 0.0 syst_JES_EtaIntercalibration_Stat23: 0.0 syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 - syst_JES_EtaIntercalibration_Stat232: 5.24464984531856e-36 - syst_JES_EtaIntercalibration_Stat233: 5.818824688027643e-36 + syst_JES_EtaIntercalibration_Stat232: 5.24464985e-36 + syst_JES_EtaIntercalibration_Stat233: 5.81882469e-36 syst_JES_EtaIntercalibration_Stat234: 0.0 syst_JES_EtaIntercalibration_Stat235: 0.0 syst_JES_EtaIntercalibration_Stat236: 0.0 @@ -24120,19 +24120,19 @@ bins: syst_JES_EtaIntercalibration_Stat245: 0.0 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 - syst_JES_EtaIntercalibration_Stat27: 0.04099545471146771 - syst_JES_EtaIntercalibration_Stat28: 0.061604943592215064 - syst_JES_EtaIntercalibration_Stat29: 0.1532491761804937 + syst_JES_EtaIntercalibration_Stat27: 4.09954547e-02 + syst_JES_EtaIntercalibration_Stat28: 6.16049436e-02 + syst_JES_EtaIntercalibration_Stat29: 1.53249176e-01 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 0.12273828935992225 - syst_JES_EtaIntercalibration_Stat31: 0.008665450190267092 + syst_JES_EtaIntercalibration_Stat30: 1.22738289e-01 + syst_JES_EtaIntercalibration_Stat31: 8.66545019e-03 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 - syst_JES_EtaIntercalibration_Stat34: 0.003251925391210567 - syst_JES_EtaIntercalibration_Stat35: 0.17117736404311756 - syst_JES_EtaIntercalibration_Stat36: 0.11134717149528316 - syst_JES_EtaIntercalibration_Stat37: 0.1328606318666293 - syst_JES_EtaIntercalibration_Stat38: 0.048304013567715055 + syst_JES_EtaIntercalibration_Stat34: 3.25192539e-03 + syst_JES_EtaIntercalibration_Stat35: 1.71177364e-01 + syst_JES_EtaIntercalibration_Stat36: 1.11347171e-01 + syst_JES_EtaIntercalibration_Stat37: 1.32860632e-01 + syst_JES_EtaIntercalibration_Stat38: 4.83040136e-02 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 syst_JES_EtaIntercalibration_Stat40: 0.0 @@ -24143,21 +24143,21 @@ bins: syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 syst_JES_EtaIntercalibration_Stat47: 0.0 - syst_JES_EtaIntercalibration_Stat48: 0.018134571955246145 - syst_JES_EtaIntercalibration_Stat49: 0.04796884992367443 - syst_JES_EtaIntercalibration_Stat5: 0.01291243877042598 - syst_JES_EtaIntercalibration_Stat50: 0.24301686422962498 - syst_JES_EtaIntercalibration_Stat51: 0.6128003590077277 - syst_JES_EtaIntercalibration_Stat52: 0.4170469368068779 - syst_JES_EtaIntercalibration_Stat53: 0.03673587211432444 - syst_JES_EtaIntercalibration_Stat54: 0.047995127877733586 + syst_JES_EtaIntercalibration_Stat48: 1.81345720e-02 + syst_JES_EtaIntercalibration_Stat49: 4.79688499e-02 + syst_JES_EtaIntercalibration_Stat5: 1.29124388e-02 + syst_JES_EtaIntercalibration_Stat50: 2.43016864e-01 + syst_JES_EtaIntercalibration_Stat51: 6.12800359e-01 + syst_JES_EtaIntercalibration_Stat52: 4.17046937e-01 + syst_JES_EtaIntercalibration_Stat53: 3.67358721e-02 + syst_JES_EtaIntercalibration_Stat54: 4.79951279e-02 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 0.007448776057178791 - syst_JES_EtaIntercalibration_Stat57: 0.5677473205573057 - syst_JES_EtaIntercalibration_Stat58: 1.1818564718272688 - syst_JES_EtaIntercalibration_Stat59: 0.2294622191124282 - syst_JES_EtaIntercalibration_Stat6: 0.0456907935009888 - syst_JES_EtaIntercalibration_Stat60: 0.06154425237176905 + syst_JES_EtaIntercalibration_Stat56: 7.44877606e-03 + syst_JES_EtaIntercalibration_Stat57: 5.67747321e-01 + syst_JES_EtaIntercalibration_Stat58: 1.18185647e+00 + syst_JES_EtaIntercalibration_Stat59: 2.29462219e-01 + syst_JES_EtaIntercalibration_Stat6: 4.56907935e-02 + syst_JES_EtaIntercalibration_Stat60: 6.15442524e-02 syst_JES_EtaIntercalibration_Stat61: 0.0 syst_JES_EtaIntercalibration_Stat62: 0.0 syst_JES_EtaIntercalibration_Stat63: 0.0 @@ -24167,21 +24167,21 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 0.04516692041749138 - syst_JES_EtaIntercalibration_Stat70: 0.01291243877042598 - syst_JES_EtaIntercalibration_Stat71: 0.0766793529706661 - syst_JES_EtaIntercalibration_Stat72: 1.8708145284875248 - syst_JES_EtaIntercalibration_Stat73: 8.04448388649017 - syst_JES_EtaIntercalibration_Stat74: 4.015233924692308 - syst_JES_EtaIntercalibration_Stat75: 0.06901837201064655 - syst_JES_EtaIntercalibration_Stat76: 0.047995127877733586 + syst_JES_EtaIntercalibration_Stat7: 4.51669204e-02 + syst_JES_EtaIntercalibration_Stat70: 1.29124388e-02 + syst_JES_EtaIntercalibration_Stat71: 7.66793530e-02 + syst_JES_EtaIntercalibration_Stat72: 1.87081453e+00 + syst_JES_EtaIntercalibration_Stat73: 8.04448389e+00 + syst_JES_EtaIntercalibration_Stat74: 4.01523392e+00 + syst_JES_EtaIntercalibration_Stat75: 6.90183720e-02 + syst_JES_EtaIntercalibration_Stat76: 4.79951279e-02 syst_JES_EtaIntercalibration_Stat77: 0.0 - syst_JES_EtaIntercalibration_Stat78: 0.1565049330692167 - syst_JES_EtaIntercalibration_Stat79: 4.507172589329146 - syst_JES_EtaIntercalibration_Stat8: 0.03326692952467962 - syst_JES_EtaIntercalibration_Stat80: 8.981943108258925 - syst_JES_EtaIntercalibration_Stat81: 2.1443698375047155 - syst_JES_EtaIntercalibration_Stat82: 0.10872164181983274 + syst_JES_EtaIntercalibration_Stat78: 1.56504933e-01 + syst_JES_EtaIntercalibration_Stat79: 4.50717259e+00 + syst_JES_EtaIntercalibration_Stat8: 3.32669295e-02 + syst_JES_EtaIntercalibration_Stat80: 8.98194311e+00 + syst_JES_EtaIntercalibration_Stat81: 2.14436984e+00 + syst_JES_EtaIntercalibration_Stat82: 1.08721642e-01 syst_JES_EtaIntercalibration_Stat83: 0.0 syst_JES_EtaIntercalibration_Stat84: 0.0 syst_JES_EtaIntercalibration_Stat85: 0.0 @@ -24191,42 +24191,42 @@ bins: syst_JES_EtaIntercalibration_Stat89: 0.0 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 0.010873814969917411 - syst_JES_EtaIntercalibration_Stat92: 0.17622187009562693 - syst_JES_EtaIntercalibration_Stat93: 3.0555672141191725 - syst_JES_EtaIntercalibration_Stat94: 10.310705213514739 - syst_JES_EtaIntercalibration_Stat95: 6.3485012404503784 - syst_JES_EtaIntercalibration_Stat96: 0.12474539630783975 - syst_JES_EtaIntercalibration_Stat97: 0.047995127877733586 + syst_JES_EtaIntercalibration_Stat91: 1.08738150e-02 + syst_JES_EtaIntercalibration_Stat92: 1.76221870e-01 + syst_JES_EtaIntercalibration_Stat93: 3.05556721e+00 + syst_JES_EtaIntercalibration_Stat94: 1.03107052e+01 + syst_JES_EtaIntercalibration_Stat95: 6.34850124e+00 + syst_JES_EtaIntercalibration_Stat96: 1.24745396e-01 + syst_JES_EtaIntercalibration_Stat97: 4.79951279e-02 syst_JES_EtaIntercalibration_Stat98: 0.0 - syst_JES_EtaIntercalibration_Stat99: 0.24203340162052014 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.01654945767714157 - syst_JES_Flavour_Comp: 8.877484821164156 - syst_JES_Gjet_Generator: 105.64879919336519 - syst_JES_Gjet_OOC: 64.36339940330994 - syst_JES_Gjet_Purity: 26.233202244483994 + syst_JES_EtaIntercalibration_Stat99: 2.42033402e-01 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.65494577e-02 + syst_JES_Flavour_Comp: 8.87748482e+00 + syst_JES_Gjet_Generator: 1.05648799e+02 + syst_JES_Gjet_OOC: 6.43633994e+01 + syst_JES_Gjet_Purity: 2.62332022e+01 syst_JES_Gjet_Stat1: 0.0 - syst_JES_Gjet_Stat10: 0.7936719851424769 - syst_JES_Gjet_Stat11: 0.5164498112111185 - syst_JES_Gjet_Stat12: 0.007552979279727967 - syst_JES_Gjet_Stat13: 0.0008732080679883805 - syst_JES_Gjet_Stat14: 4.522383991145822e-19 - syst_JES_Gjet_Stat15: 2.351319628178293e-15 + syst_JES_Gjet_Stat10: 7.93671985e-01 + syst_JES_Gjet_Stat11: 5.16449811e-01 + syst_JES_Gjet_Stat12: 7.55297928e-03 + syst_JES_Gjet_Stat13: 8.73208068e-04 + syst_JES_Gjet_Stat14: 4.52238399e-19 + syst_JES_Gjet_Stat15: 2.35131963e-15 syst_JES_Gjet_Stat2: 0.0 syst_JES_Gjet_Stat3: 0.0 - syst_JES_Gjet_Stat4: 1.2736901772016616 - syst_JES_Gjet_Stat5: 2.095198498949443 - syst_JES_Gjet_Stat6: 6.089202472409667 - syst_JES_Gjet_Stat7: 10.182213659121478 - syst_JES_Gjet_Stat8: 3.88896453410159 - syst_JES_Gjet_Stat9: 1.3116428887086606 - syst_JES_Gjet_Veto: 19.86160366133611 - syst_JES_Gjet_dPhi: 12.142212102825415 - syst_JES_LArESZee: 66.5658202890192 - syst_JES_LArEsmear: 6.108931228128206 - syst_JES_LAr_JVT: 11.456134208361913 + syst_JES_Gjet_Stat4: 1.27369018e+00 + syst_JES_Gjet_Stat5: 2.09519850e+00 + syst_JES_Gjet_Stat6: 6.08920247e+00 + syst_JES_Gjet_Stat7: 1.01822137e+01 + syst_JES_Gjet_Stat8: 3.88896453e+00 + syst_JES_Gjet_Stat9: 1.31164289e+00 + syst_JES_Gjet_Veto: 1.98616037e+01 + syst_JES_Gjet_dPhi: 1.21422121e+01 + syst_JES_LArESZee: 6.65658203e+01 + syst_JES_LArEsmear: 6.10893123e+00 + syst_JES_LAr_JVT: 1.14561342e+01 syst_JES_MJB_Alpha: 0.0 - syst_JES_MJB_Asym: 4.1984911575469585e-06 + syst_JES_MJB_Asym: 4.19849116e-06 syst_JES_MJB_Beta: 0.0 syst_JES_MJB_Stat1: 0.0 syst_JES_MJB_Stat10: 0.0 @@ -24238,71 +24238,71 @@ bins: syst_JES_MJB_Stat16: 0.0 syst_JES_MJB_Stat2: 0.0 syst_JES_MJB_Stat3: 0.0 - syst_JES_MJB_Stat4: 1.3994970525156529e-15 + syst_JES_MJB_Stat4: 1.39949705e-15 syst_JES_MJB_Stat5: 0.0 syst_JES_MJB_Stat6: 0.0 syst_JES_MJB_Stat7: 0.0 syst_JES_MJB_Stat8: 0.0 syst_JES_MJB_Stat9: 0.0 - syst_JES_MJB_Threshold: 0.002238675668782774 - syst_JES_Pileup_MuOffset: 3.4391561101526055e-33 - syst_JES_Pileup_NPVOffset: 7.688862383343846 - syst_JES_Pileup_Pt_term: 24.47512359519355 - syst_JES_PunchThrough_MC15: 4.601192970306723e-34 + syst_JES_MJB_Threshold: 2.23867567e-03 + syst_JES_Pileup_MuOffset: 3.43915611e-33 + syst_JES_Pileup_NPVOffset: 7.68886238e+00 + syst_JES_Pileup_Pt_term: 2.44751236e+01 + syst_JES_PunchThrough_MC15: 4.60119297e-34 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 96.54089690903021 - syst_JES_Zjet_MuScale: 6.708574885920258 - syst_JES_Zjet_MuSmearID: 0.9684541961290684 - syst_JES_Zjet_MuSmearMS: 2.8376047557755464 - syst_JES_Zjet_OOC: 58.35991613256483 - syst_JES_Zjet_Stat1: 0.28613389785203713 - syst_JES_Zjet_Stat10: 6.959602197683428 - syst_JES_Zjet_Stat11: 2.1028002758226947 - syst_JES_Zjet_Stat12: 0.9983496419090859 - syst_JES_Zjet_Stat13: 0.0008518958078896739 - syst_JES_Zjet_Stat2: 0.0003623450289434091 + syst_JES_Zjet_MC: 9.65408969e+01 + syst_JES_Zjet_MuScale: 6.70857489e+00 + syst_JES_Zjet_MuSmearID: 9.68454196e-01 + syst_JES_Zjet_MuSmearMS: 2.83760476e+00 + syst_JES_Zjet_OOC: 5.83599161e+01 + syst_JES_Zjet_Stat1: 2.86133898e-01 + syst_JES_Zjet_Stat10: 6.95960220e+00 + syst_JES_Zjet_Stat11: 2.10280028e+00 + syst_JES_Zjet_Stat12: 9.98349642e-01 + syst_JES_Zjet_Stat13: 8.51895808e-04 + syst_JES_Zjet_Stat2: 3.62345029e-04 syst_JES_Zjet_Stat3: 0.0 syst_JES_Zjet_Stat4: 0.0 - syst_JES_Zjet_Stat5: 1.0632193882261554 - syst_JES_Zjet_Stat6: 2.38095878796757 - syst_JES_Zjet_Stat7: 4.082372594460237 - syst_JES_Zjet_Stat8: 7.383581295685719 - syst_JES_Zjet_Stat9: 11.33053117686898 - syst_JES_Zjet_Veto: 8.645496211901317 - syst_JES_Zjet_dPhi: 13.641968333052235 + syst_JES_Zjet_Stat5: 1.06321939e+00 + syst_JES_Zjet_Stat6: 2.38095879e+00 + syst_JES_Zjet_Stat7: 4.08237259e+00 + syst_JES_Zjet_Stat8: 7.38358130e+00 + syst_JES_Zjet_Stat9: 1.13305312e+01 + syst_JES_Zjet_Veto: 8.64549621e+00 + syst_JES_Zjet_dPhi: 1.36419683e+01 syst_PRW: 0.0 syst_Unfolding_bias: 7.657 - syst_cleaning: 40.911040074776885 + syst_cleaning: 4.09110401e+01 syst_lumi: 100.634 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 43.180974638722546 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 75.34753756427611 - syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0006846593570528339 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 4.31809746e+01 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 7.53475376e+01 + syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 6.84659357e-04 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 164.39166402223685 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.00544764628073446 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 34.78591201909187 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 1.64391664e+02 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 5.44764628e-03 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 3.47859120e+01 - stat: 16.503 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 41.4863191064235 - syst_JER_NP1: 3.760148958153121 - syst_JER_NP2: 2.4522348990257847 - syst_JER_NP3: 6.112588976857515 - syst_JER_NP4: 0.8299649510672124 - syst_JER_NP5: 2.4194972101657815 - syst_JER_NP6: 2.308397008748712 - syst_JER_NP7: 0.8184195501086226 - syst_JER_NP8: 2.9606514485835715 - syst_JES_EtaIntercalibration_Modelling: 62.71803379212393 + syst_JER_NP0: 4.14863191e+01 + syst_JER_NP1: 3.76014896e+00 + syst_JER_NP2: 2.45223490e+00 + syst_JER_NP3: 6.11258898e+00 + syst_JER_NP4: 8.29964951e-01 + syst_JER_NP5: 2.41949721e+00 + syst_JER_NP6: 2.30839701e+00 + syst_JER_NP7: 8.18419550e-01 + syst_JER_NP8: 2.96065145e+00 + syst_JES_EtaIntercalibration_Modelling: 6.27180338e+01 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 2.124278877642952 - syst_JES_EtaIntercalibration_Stat101: 3.459237199152437 - syst_JES_EtaIntercalibration_Stat102: 1.0381137654419192 - syst_JES_EtaIntercalibration_Stat103: 0.0839442390816666 + syst_JES_EtaIntercalibration_Stat100: 2.12427888e+00 + syst_JES_EtaIntercalibration_Stat101: 3.45923720e+00 + syst_JES_EtaIntercalibration_Stat102: 1.03811377e+00 + syst_JES_EtaIntercalibration_Stat103: 8.39442391e-02 syst_JES_EtaIntercalibration_Stat104: 0.0 syst_JES_EtaIntercalibration_Stat105: 0.0 syst_JES_EtaIntercalibration_Stat106: 0.0 @@ -24311,143 +24311,143 @@ bins: syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 syst_JES_EtaIntercalibration_Stat110: 0.0 - syst_JES_EtaIntercalibration_Stat111: 0.002463842273766728 - syst_JES_EtaIntercalibration_Stat112: 0.15003991568912586 - syst_JES_EtaIntercalibration_Stat113: 2.5467537670532656 - syst_JES_EtaIntercalibration_Stat114: 6.865673528503959 - syst_JES_EtaIntercalibration_Stat115: 5.225076554463102 - syst_JES_EtaIntercalibration_Stat116: 0.13180906645599155 + syst_JES_EtaIntercalibration_Stat111: 2.46384227e-03 + syst_JES_EtaIntercalibration_Stat112: 1.50039916e-01 + syst_JES_EtaIntercalibration_Stat113: 2.54675377e+00 + syst_JES_EtaIntercalibration_Stat114: 6.86567353e+00 + syst_JES_EtaIntercalibration_Stat115: 5.22507655e+00 + syst_JES_EtaIntercalibration_Stat116: 1.31809066e-01 syst_JES_EtaIntercalibration_Stat117: 0.0 syst_JES_EtaIntercalibration_Stat118: 0.0 - syst_JES_EtaIntercalibration_Stat119: 0.15477722926839077 + syst_JES_EtaIntercalibration_Stat119: 1.54777229e-01 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 5.7271677991831185 - syst_JES_EtaIntercalibration_Stat121: 8.490083745170008 - syst_JES_EtaIntercalibration_Stat122: 2.225557177427711 - syst_JES_EtaIntercalibration_Stat123: 0.18842892559264887 + syst_JES_EtaIntercalibration_Stat120: 5.72716780e+00 + syst_JES_EtaIntercalibration_Stat121: 8.49008375e+00 + syst_JES_EtaIntercalibration_Stat122: 2.22555718e+00 + syst_JES_EtaIntercalibration_Stat123: 1.88428926e-01 syst_JES_EtaIntercalibration_Stat124: 0.0 syst_JES_EtaIntercalibration_Stat125: 0.0 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 syst_JES_EtaIntercalibration_Stat128: 0.0 syst_JES_EtaIntercalibration_Stat129: 0.0 - syst_JES_EtaIntercalibration_Stat13: 0.02390957992102747 + syst_JES_EtaIntercalibration_Stat13: 2.39095799e-02 syst_JES_EtaIntercalibration_Stat130: 0.0 - syst_JES_EtaIntercalibration_Stat131: 0.09183720637628302 - syst_JES_EtaIntercalibration_Stat132: 1.6515937757208945 - syst_JES_EtaIntercalibration_Stat133: 3.9362891153979027 - syst_JES_EtaIntercalibration_Stat134: 2.927722835242434 - syst_JES_EtaIntercalibration_Stat135: 0.07267860259388591 + syst_JES_EtaIntercalibration_Stat131: 9.18372064e-02 + syst_JES_EtaIntercalibration_Stat132: 1.65159378e+00 + syst_JES_EtaIntercalibration_Stat133: 3.93628912e+00 + syst_JES_EtaIntercalibration_Stat134: 2.92772284e+00 + syst_JES_EtaIntercalibration_Stat135: 7.26786026e-02 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 - syst_JES_EtaIntercalibration_Stat138: 0.024598126976459002 - syst_JES_EtaIntercalibration_Stat139: 2.421258144023475 - syst_JES_EtaIntercalibration_Stat14: 0.010013774163620828 - syst_JES_EtaIntercalibration_Stat140: 3.6395393595893424 - syst_JES_EtaIntercalibration_Stat141: 1.4149194208505302 - syst_JES_EtaIntercalibration_Stat142: 0.07691085277774522 + syst_JES_EtaIntercalibration_Stat138: 2.45981270e-02 + syst_JES_EtaIntercalibration_Stat139: 2.42125814e+00 + syst_JES_EtaIntercalibration_Stat14: 1.00137742e-02 + syst_JES_EtaIntercalibration_Stat140: 3.63953936e+00 + syst_JES_EtaIntercalibration_Stat141: 1.41491942e+00 + syst_JES_EtaIntercalibration_Stat142: 7.69108528e-02 syst_JES_EtaIntercalibration_Stat143: 0.0 syst_JES_EtaIntercalibration_Stat144: 0.0 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 syst_JES_EtaIntercalibration_Stat147: 0.0 syst_JES_EtaIntercalibration_Stat148: 0.0 - syst_JES_EtaIntercalibration_Stat149: 0.015132145518729323 - syst_JES_EtaIntercalibration_Stat15: 0.007111108985770082 - syst_JES_EtaIntercalibration_Stat150: 0.11795265999544054 - syst_JES_EtaIntercalibration_Stat151: 0.9843555607604398 - syst_JES_EtaIntercalibration_Stat152: 0.7592503934803063 - syst_JES_EtaIntercalibration_Stat153: 0.016758427155655956 + syst_JES_EtaIntercalibration_Stat149: 1.51321455e-02 + syst_JES_EtaIntercalibration_Stat15: 7.11110899e-03 + syst_JES_EtaIntercalibration_Stat150: 1.17952660e-01 + syst_JES_EtaIntercalibration_Stat151: 9.84355561e-01 + syst_JES_EtaIntercalibration_Stat152: 7.59250393e-01 + syst_JES_EtaIntercalibration_Stat153: 1.67584272e-02 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 0.0018142461430302119 - syst_JES_EtaIntercalibration_Stat157: 0.5645552652309603 - syst_JES_EtaIntercalibration_Stat158: 0.9349329534784834 - syst_JES_EtaIntercalibration_Stat159: 0.10452382838377094 + syst_JES_EtaIntercalibration_Stat156: 1.81424614e-03 + syst_JES_EtaIntercalibration_Stat157: 5.64555265e-01 + syst_JES_EtaIntercalibration_Stat158: 9.34932953e-01 + syst_JES_EtaIntercalibration_Stat159: 1.04523828e-01 syst_JES_EtaIntercalibration_Stat16: 0.0 - syst_JES_EtaIntercalibration_Stat160: 0.04072079567002589 + syst_JES_EtaIntercalibration_Stat160: 4.07207957e-02 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 - syst_JES_EtaIntercalibration_Stat167: 0.0003010304303554719 - syst_JES_EtaIntercalibration_Stat168: 0.043074749854177904 - syst_JES_EtaIntercalibration_Stat169: 0.2142769411299312 + syst_JES_EtaIntercalibration_Stat167: 3.01030430e-04 + syst_JES_EtaIntercalibration_Stat168: 4.30747499e-02 + syst_JES_EtaIntercalibration_Stat169: 2.14276941e-01 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 0.14158368223421794 - syst_JES_EtaIntercalibration_Stat171: 0.00011021480934974209 + syst_JES_EtaIntercalibration_Stat170: 1.41583682e-01 + syst_JES_EtaIntercalibration_Stat171: 1.10214809e-04 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 - syst_JES_EtaIntercalibration_Stat174: 0.0006425345438184628 - syst_JES_EtaIntercalibration_Stat175: 0.2004050320600758 - syst_JES_EtaIntercalibration_Stat176: 0.1664220763600791 - syst_JES_EtaIntercalibration_Stat177: 0.06196528382893118 - syst_JES_EtaIntercalibration_Stat178: 0.0031966380319798484 + syst_JES_EtaIntercalibration_Stat174: 6.42534544e-04 + syst_JES_EtaIntercalibration_Stat175: 2.00405032e-01 + syst_JES_EtaIntercalibration_Stat176: 1.66422076e-01 + syst_JES_EtaIntercalibration_Stat177: 6.19652838e-02 + syst_JES_EtaIntercalibration_Stat178: 3.19663803e-03 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 syst_JES_EtaIntercalibration_Stat180: 0.0 syst_JES_EtaIntercalibration_Stat181: 0.0 syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 - syst_JES_EtaIntercalibration_Stat184: 5.633366591766242e-05 - syst_JES_EtaIntercalibration_Stat185: 0.002400215198685318 - syst_JES_EtaIntercalibration_Stat186: 0.0061444556105484235 - syst_JES_EtaIntercalibration_Stat187: 0.0011376722682741283 - syst_JES_EtaIntercalibration_Stat188: 7.138647403395128e-05 + syst_JES_EtaIntercalibration_Stat184: 5.63336659e-05 + syst_JES_EtaIntercalibration_Stat185: 2.40021520e-03 + syst_JES_EtaIntercalibration_Stat186: 6.14445561e-03 + syst_JES_EtaIntercalibration_Stat187: 1.13767227e-03 + syst_JES_EtaIntercalibration_Stat188: 7.13864740e-05 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 - syst_JES_EtaIntercalibration_Stat191: 4.654886545336826e-07 - syst_JES_EtaIntercalibration_Stat192: 0.0015433591310838836 - syst_JES_EtaIntercalibration_Stat193: 0.004464438150540335 - syst_JES_EtaIntercalibration_Stat194: 0.00248784016166634 - syst_JES_EtaIntercalibration_Stat195: 9.833718459972302e-06 - syst_JES_EtaIntercalibration_Stat196: 2.3729096063693726e-19 + syst_JES_EtaIntercalibration_Stat191: 4.65488655e-07 + syst_JES_EtaIntercalibration_Stat192: 1.54335913e-03 + syst_JES_EtaIntercalibration_Stat193: 4.46443815e-03 + syst_JES_EtaIntercalibration_Stat194: 2.48784016e-03 + syst_JES_EtaIntercalibration_Stat195: 9.83371846e-06 + syst_JES_EtaIntercalibration_Stat196: 2.37290961e-19 syst_JES_EtaIntercalibration_Stat197: 0.0 syst_JES_EtaIntercalibration_Stat198: 0.0 - syst_JES_EtaIntercalibration_Stat199: 3.253657442018136e-10 + syst_JES_EtaIntercalibration_Stat199: 3.25365744e-10 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 1.2875940470505446e-05 - syst_JES_EtaIntercalibration_Stat201: 0.00029152622523539795 - syst_JES_EtaIntercalibration_Stat202: 0.00024876048721611717 - syst_JES_EtaIntercalibration_Stat203: 3.772761717738181e-11 + syst_JES_EtaIntercalibration_Stat200: 1.28759405e-05 + syst_JES_EtaIntercalibration_Stat201: 2.91526225e-04 + syst_JES_EtaIntercalibration_Stat202: 2.48760487e-04 + syst_JES_EtaIntercalibration_Stat203: 3.77276172e-11 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 - syst_JES_EtaIntercalibration_Stat206: 1.0755490083336417e-10 - syst_JES_EtaIntercalibration_Stat207: 0.0001745509931223538 - syst_JES_EtaIntercalibration_Stat208: 0.0002774666826846063 - syst_JES_EtaIntercalibration_Stat209: 0.00010201418943828353 + syst_JES_EtaIntercalibration_Stat206: 1.07554901e-10 + syst_JES_EtaIntercalibration_Stat207: 1.74550993e-04 + syst_JES_EtaIntercalibration_Stat208: 2.77466683e-04 + syst_JES_EtaIntercalibration_Stat209: 1.02014189e-04 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 9.651843662443766e-14 - syst_JES_EtaIntercalibration_Stat211: 3.193901691080164e-33 - syst_JES_EtaIntercalibration_Stat212: 3.931195333483189e-25 - syst_JES_EtaIntercalibration_Stat213: 2.7556869833128722e-14 - syst_JES_EtaIntercalibration_Stat214: 5.7937099513182214e-11 - syst_JES_EtaIntercalibration_Stat215: 8.15709331558287e-11 - syst_JES_EtaIntercalibration_Stat216: 2.0836571200631386e-32 + syst_JES_EtaIntercalibration_Stat210: 9.65184366e-14 + syst_JES_EtaIntercalibration_Stat211: 3.19390169e-33 + syst_JES_EtaIntercalibration_Stat212: 3.93119533e-25 + syst_JES_EtaIntercalibration_Stat213: 2.75568698e-14 + syst_JES_EtaIntercalibration_Stat214: 5.79370995e-11 + syst_JES_EtaIntercalibration_Stat215: 8.15709332e-11 + syst_JES_EtaIntercalibration_Stat216: 2.08365712e-32 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 - syst_JES_EtaIntercalibration_Stat219: 1.0168004265833025e-18 + syst_JES_EtaIntercalibration_Stat219: 1.01680043e-18 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 6.626661508633137e-11 - syst_JES_EtaIntercalibration_Stat221: 2.8708377678301505e-08 - syst_JES_EtaIntercalibration_Stat222: 4.3136725705420094e-11 - syst_JES_EtaIntercalibration_Stat223: 2.327876285372571e-19 + syst_JES_EtaIntercalibration_Stat220: 6.62666151e-11 + syst_JES_EtaIntercalibration_Stat221: 2.87083777e-08 + syst_JES_EtaIntercalibration_Stat222: 4.31367257e-11 + syst_JES_EtaIntercalibration_Stat223: 2.32787629e-19 syst_JES_EtaIntercalibration_Stat224: 0.0 - syst_JES_EtaIntercalibration_Stat225: 9.53462357673338e-33 - syst_JES_EtaIntercalibration_Stat226: 1.315492588348562e-25 - syst_JES_EtaIntercalibration_Stat227: 8.248025945642994e-26 - syst_JES_EtaIntercalibration_Stat228: 2.586817881104118e-33 + syst_JES_EtaIntercalibration_Stat225: 9.53462358e-33 + syst_JES_EtaIntercalibration_Stat226: 1.31549259e-25 + syst_JES_EtaIntercalibration_Stat227: 8.24802595e-26 + syst_JES_EtaIntercalibration_Stat228: 2.58681788e-33 syst_JES_EtaIntercalibration_Stat229: 0.0 syst_JES_EtaIntercalibration_Stat23: 0.0 syst_JES_EtaIntercalibration_Stat230: 0.0 - syst_JES_EtaIntercalibration_Stat231: 2.1234942900794435e-32 - syst_JES_EtaIntercalibration_Stat232: 1.5328650995097917e-25 - syst_JES_EtaIntercalibration_Stat233: 1.7008738930326374e-25 - syst_JES_EtaIntercalibration_Stat234: 3.461330333845644e-41 + syst_JES_EtaIntercalibration_Stat231: 2.12349429e-32 + syst_JES_EtaIntercalibration_Stat232: 1.53286510e-25 + syst_JES_EtaIntercalibration_Stat233: 1.70087389e-25 + syst_JES_EtaIntercalibration_Stat234: 3.46133033e-41 syst_JES_EtaIntercalibration_Stat235: 0.0 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 @@ -24462,19 +24462,19 @@ bins: syst_JES_EtaIntercalibration_Stat245: 0.0 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 - syst_JES_EtaIntercalibration_Stat27: 0.010212790742495413 - syst_JES_EtaIntercalibration_Stat28: 0.020258659259684487 - syst_JES_EtaIntercalibration_Stat29: 0.054012304848062166 + syst_JES_EtaIntercalibration_Stat27: 1.02127907e-02 + syst_JES_EtaIntercalibration_Stat28: 2.02586593e-02 + syst_JES_EtaIntercalibration_Stat29: 5.40123048e-02 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 0.05182125082193598 - syst_JES_EtaIntercalibration_Stat31: 0.002431799333826704 + syst_JES_EtaIntercalibration_Stat30: 5.18212508e-02 + syst_JES_EtaIntercalibration_Stat31: 2.43179933e-03 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 - syst_JES_EtaIntercalibration_Stat34: 0.0004203687309969665 - syst_JES_EtaIntercalibration_Stat35: 0.05693442514358075 - syst_JES_EtaIntercalibration_Stat36: 0.05623631744700216 - syst_JES_EtaIntercalibration_Stat37: 0.04646439577784263 - syst_JES_EtaIntercalibration_Stat38: 0.014609779900806173 + syst_JES_EtaIntercalibration_Stat34: 4.20368731e-04 + syst_JES_EtaIntercalibration_Stat35: 5.69344251e-02 + syst_JES_EtaIntercalibration_Stat36: 5.62363174e-02 + syst_JES_EtaIntercalibration_Stat37: 4.64643958e-02 + syst_JES_EtaIntercalibration_Stat38: 1.46097799e-02 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 syst_JES_EtaIntercalibration_Stat40: 0.0 @@ -24485,21 +24485,21 @@ bins: syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 syst_JES_EtaIntercalibration_Stat47: 0.0 - syst_JES_EtaIntercalibration_Stat48: 0.005217803057801243 - syst_JES_EtaIntercalibration_Stat49: 0.01796481243987813 - syst_JES_EtaIntercalibration_Stat5: 0.0038070476750363923 - syst_JES_EtaIntercalibration_Stat50: 0.043440120856185475 - syst_JES_EtaIntercalibration_Stat51: 0.09573366218316313 - syst_JES_EtaIntercalibration_Stat52: 0.06354241654202332 - syst_JES_EtaIntercalibration_Stat53: 0.01104875318757732 - syst_JES_EtaIntercalibration_Stat54: 0.011648907706304484 + syst_JES_EtaIntercalibration_Stat48: 5.21780306e-03 + syst_JES_EtaIntercalibration_Stat49: 1.79648124e-02 + syst_JES_EtaIntercalibration_Stat5: 3.80704768e-03 + syst_JES_EtaIntercalibration_Stat50: 4.34401209e-02 + syst_JES_EtaIntercalibration_Stat51: 9.57336622e-02 + syst_JES_EtaIntercalibration_Stat52: 6.35424165e-02 + syst_JES_EtaIntercalibration_Stat53: 1.10487532e-02 + syst_JES_EtaIntercalibration_Stat54: 1.16489077e-02 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 0.0016679706322354718 - syst_JES_EtaIntercalibration_Stat57: 0.14203381173157328 - syst_JES_EtaIntercalibration_Stat58: 0.2171119545303759 - syst_JES_EtaIntercalibration_Stat59: 0.06562004800363987 - syst_JES_EtaIntercalibration_Stat6: 0.011308856562446975 - syst_JES_EtaIntercalibration_Stat60: 0.0164290531376583 + syst_JES_EtaIntercalibration_Stat56: 1.66797063e-03 + syst_JES_EtaIntercalibration_Stat57: 1.42033812e-01 + syst_JES_EtaIntercalibration_Stat58: 2.17111955e-01 + syst_JES_EtaIntercalibration_Stat59: 6.56200480e-02 + syst_JES_EtaIntercalibration_Stat6: 1.13088566e-02 + syst_JES_EtaIntercalibration_Stat60: 1.64290531e-02 syst_JES_EtaIntercalibration_Stat61: 0.0 syst_JES_EtaIntercalibration_Stat62: 0.0 syst_JES_EtaIntercalibration_Stat63: 0.0 @@ -24509,21 +24509,21 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 0.011775322694835161 - syst_JES_EtaIntercalibration_Stat70: 0.0038070476750363923 - syst_JES_EtaIntercalibration_Stat71: 0.04391471848936299 - syst_JES_EtaIntercalibration_Stat72: 0.40752885480662593 - syst_JES_EtaIntercalibration_Stat73: 1.9730696895953779 - syst_JES_EtaIntercalibration_Stat74: 0.8910282318759604 - syst_JES_EtaIntercalibration_Stat75: 0.013935197549729963 - syst_JES_EtaIntercalibration_Stat76: 0.011648907706304484 + syst_JES_EtaIntercalibration_Stat7: 1.17753227e-02 + syst_JES_EtaIntercalibration_Stat70: 3.80704768e-03 + syst_JES_EtaIntercalibration_Stat71: 4.39147185e-02 + syst_JES_EtaIntercalibration_Stat72: 4.07528855e-01 + syst_JES_EtaIntercalibration_Stat73: 1.97306969e+00 + syst_JES_EtaIntercalibration_Stat74: 8.91028232e-01 + syst_JES_EtaIntercalibration_Stat75: 1.39351975e-02 + syst_JES_EtaIntercalibration_Stat76: 1.16489077e-02 syst_JES_EtaIntercalibration_Stat77: 0.0 - syst_JES_EtaIntercalibration_Stat78: 0.027267366193079595 - syst_JES_EtaIntercalibration_Stat79: 1.1354735432849152 - syst_JES_EtaIntercalibration_Stat8: 0.01053264985651759 - syst_JES_EtaIntercalibration_Stat80: 2.2004401832360725 - syst_JES_EtaIntercalibration_Stat81: 0.5114486093440864 - syst_JES_EtaIntercalibration_Stat82: 0.06068605827329701 + syst_JES_EtaIntercalibration_Stat78: 2.72673662e-02 + syst_JES_EtaIntercalibration_Stat79: 1.13547354e+00 + syst_JES_EtaIntercalibration_Stat8: 1.05326499e-02 + syst_JES_EtaIntercalibration_Stat80: 2.20044018e+00 + syst_JES_EtaIntercalibration_Stat81: 5.11448609e-01 + syst_JES_EtaIntercalibration_Stat82: 6.06860583e-02 syst_JES_EtaIntercalibration_Stat83: 0.0 syst_JES_EtaIntercalibration_Stat84: 0.0 syst_JES_EtaIntercalibration_Stat85: 0.0 @@ -24533,118 +24533,118 @@ bins: syst_JES_EtaIntercalibration_Stat89: 0.0 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 0.003231140781519741 - syst_JES_EtaIntercalibration_Stat92: 0.06406011161401454 - syst_JES_EtaIntercalibration_Stat93: 0.9587506597129412 - syst_JES_EtaIntercalibration_Stat94: 3.327900351573045 - syst_JES_EtaIntercalibration_Stat95: 1.9919934738848921 - syst_JES_EtaIntercalibration_Stat96: 0.03365670326992826 - syst_JES_EtaIntercalibration_Stat97: 0.011648907706304484 + syst_JES_EtaIntercalibration_Stat91: 3.23114078e-03 + syst_JES_EtaIntercalibration_Stat92: 6.40601116e-02 + syst_JES_EtaIntercalibration_Stat93: 9.58750660e-01 + syst_JES_EtaIntercalibration_Stat94: 3.32790035e+00 + syst_JES_EtaIntercalibration_Stat95: 1.99199347e+00 + syst_JES_EtaIntercalibration_Stat96: 3.36567033e-02 + syst_JES_EtaIntercalibration_Stat97: 1.16489077e-02 syst_JES_EtaIntercalibration_Stat98: 0.0 - syst_JES_EtaIntercalibration_Stat99: 0.057440998424470306 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.06451764642328486 - syst_JES_Flavour_Comp: 3.583002511860688 - syst_JES_Gjet_Generator: 53.16419774622768 - syst_JES_Gjet_OOC: 29.865553318162384 - syst_JES_Gjet_Purity: 12.24813398032533 - syst_JES_Gjet_Stat1: 1.2609329879101427e-31 - syst_JES_Gjet_Stat10: 0.3187621997665344 - syst_JES_Gjet_Stat11: 0.424435469182301 - syst_JES_Gjet_Stat12: 0.02758176344978689 - syst_JES_Gjet_Stat13: 0.0025845233603123035 - syst_JES_Gjet_Stat14: 8.848068733317235e-13 - syst_JES_Gjet_Stat15: 1.1591541708464624e-10 - syst_JES_Gjet_Stat2: 1.3215547661750532e-31 + syst_JES_EtaIntercalibration_Stat99: 5.74409984e-02 + syst_JES_EtaIntercalibration_TotalStat_MJB: 6.45176464e-02 + syst_JES_Flavour_Comp: 3.58300251e+00 + syst_JES_Gjet_Generator: 5.31641977e+01 + syst_JES_Gjet_OOC: 2.98655533e+01 + syst_JES_Gjet_Purity: 1.22481340e+01 + syst_JES_Gjet_Stat1: 1.26093299e-31 + syst_JES_Gjet_Stat10: 3.18762200e-01 + syst_JES_Gjet_Stat11: 4.24435469e-01 + syst_JES_Gjet_Stat12: 2.75817634e-02 + syst_JES_Gjet_Stat13: 2.58452336e-03 + syst_JES_Gjet_Stat14: 8.84806873e-13 + syst_JES_Gjet_Stat15: 1.15915417e-10 + syst_JES_Gjet_Stat2: 1.32155477e-31 syst_JES_Gjet_Stat3: 0.0 - syst_JES_Gjet_Stat4: 0.3998667486488468 - syst_JES_Gjet_Stat5: 0.6675226513010626 - syst_JES_Gjet_Stat6: 2.3247472980949992 - syst_JES_Gjet_Stat7: 4.312701473554597 - syst_JES_Gjet_Stat8: 2.3015396477141126 - syst_JES_Gjet_Stat9: 1.6393614610573228 - syst_JES_Gjet_Veto: 10.708509268334225 - syst_JES_Gjet_dPhi: 5.656408047515667 - syst_JES_LArESZee: 36.06545715778465 - syst_JES_LArEsmear: 3.483312647466489 - syst_JES_LAr_JVT: 5.627704216641098 - syst_JES_MJB_Alpha: 7.788166456233456e-40 - syst_JES_MJB_Asym: 0.0006561008459070907 - syst_JES_MJB_Beta: 3.86507137708995e-40 - syst_JES_MJB_Stat1: 9.504628806534214e-32 + syst_JES_Gjet_Stat4: 3.99866749e-01 + syst_JES_Gjet_Stat5: 6.67522651e-01 + syst_JES_Gjet_Stat6: 2.32474730e+00 + syst_JES_Gjet_Stat7: 4.31270147e+00 + syst_JES_Gjet_Stat8: 2.30153965e+00 + syst_JES_Gjet_Stat9: 1.63936146e+00 + syst_JES_Gjet_Veto: 1.07085093e+01 + syst_JES_Gjet_dPhi: 5.65640805e+00 + syst_JES_LArESZee: 3.60654572e+01 + syst_JES_LArEsmear: 3.48331265e+00 + syst_JES_LAr_JVT: 5.62770422e+00 + syst_JES_MJB_Alpha: 7.78816646e-40 + syst_JES_MJB_Asym: 6.56100846e-04 + syst_JES_MJB_Beta: 3.86507138e-40 + syst_JES_MJB_Stat1: 9.50462881e-32 syst_JES_MJB_Stat10: 0.0 - syst_JES_MJB_Stat11: 2.884730620005965e-42 + syst_JES_MJB_Stat11: 2.88473062e-42 syst_JES_MJB_Stat12: 0.0 syst_JES_MJB_Stat13: 0.0 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 syst_JES_MJB_Stat2: 0.0 - syst_JES_MJB_Stat3: 1.0008655591536757e-39 - syst_JES_MJB_Stat4: 6.893562214124132e-11 + syst_JES_MJB_Stat3: 1.00086556e-39 + syst_JES_MJB_Stat4: 6.89356221e-11 syst_JES_MJB_Stat5: 0.0 syst_JES_MJB_Stat6: 0.0 syst_JES_MJB_Stat7: 0.0 syst_JES_MJB_Stat8: 0.0 syst_JES_MJB_Stat9: 0.0 - syst_JES_MJB_Threshold: 0.0037680765318660924 - syst_JES_Pileup_MuOffset: 1.0053090109513591e-22 - syst_JES_Pileup_NPVOffset: 3.2537209468545396 - syst_JES_Pileup_Pt_term: 11.7040874911289 - syst_JES_PunchThrough_MC15: 1.3449374520772333e-23 + syst_JES_MJB_Threshold: 3.76807653e-03 + syst_JES_Pileup_MuOffset: 1.00530901e-22 + syst_JES_Pileup_NPVOffset: 3.25372095e+00 + syst_JES_Pileup_Pt_term: 1.17040875e+01 + syst_JES_PunchThrough_MC15: 1.34493745e-23 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 46.33430576527504 - syst_JES_Zjet_MuScale: 3.5307956610373252 - syst_JES_Zjet_MuSmearID: 0.5565189552027855 - syst_JES_Zjet_MuSmearMS: 2.1985437794140013 - syst_JES_Zjet_OOC: 23.28705004932999 - syst_JES_Zjet_Stat1: 0.17991650146665256 - syst_JES_Zjet_Stat10: 5.2794396482960195 - syst_JES_Zjet_Stat11: 0.1875691946989164 - syst_JES_Zjet_Stat12: 0.9140724150744295 - syst_JES_Zjet_Stat13: 0.016022790112836152 - syst_JES_Zjet_Stat2: 0.001249674657660945 - syst_JES_Zjet_Stat3: 2.932362017214109e-31 - syst_JES_Zjet_Stat4: 3.1731170794661832e-40 - syst_JES_Zjet_Stat5: 0.30111703289584935 - syst_JES_Zjet_Stat6: 0.8098248251936958 - syst_JES_Zjet_Stat7: 1.3928168607178764 - syst_JES_Zjet_Stat8: 2.7885402543266253 - syst_JES_Zjet_Stat9: 5.627421323306084 - syst_JES_Zjet_Veto: 3.9430411191743864 - syst_JES_Zjet_dPhi: 5.478929457476159 + syst_JES_Zjet_MC: 4.63343058e+01 + syst_JES_Zjet_MuScale: 3.53079566e+00 + syst_JES_Zjet_MuSmearID: 5.56518955e-01 + syst_JES_Zjet_MuSmearMS: 2.19854378e+00 + syst_JES_Zjet_OOC: 2.32870500e+01 + syst_JES_Zjet_Stat1: 1.79916501e-01 + syst_JES_Zjet_Stat10: 5.27943965e+00 + syst_JES_Zjet_Stat11: 1.87569195e-01 + syst_JES_Zjet_Stat12: 9.14072415e-01 + syst_JES_Zjet_Stat13: 1.60227901e-02 + syst_JES_Zjet_Stat2: 1.24967466e-03 + syst_JES_Zjet_Stat3: 2.93236202e-31 + syst_JES_Zjet_Stat4: 3.17311708e-40 + syst_JES_Zjet_Stat5: 3.01117033e-01 + syst_JES_Zjet_Stat6: 8.09824825e-01 + syst_JES_Zjet_Stat7: 1.39281686e+00 + syst_JES_Zjet_Stat8: 2.78854025e+00 + syst_JES_Zjet_Stat9: 5.62742132e+00 + syst_JES_Zjet_Veto: 3.94304112e+00 + syst_JES_Zjet_dPhi: 5.47892946e+00 syst_PRW: 0.0 syst_Unfolding_bias: 3.458 - syst_cleaning: 15.216066344492587 + syst_cleaning: 1.52160663e+01 syst_lumi: 49.914 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 19.105456681273022 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 34.023898586140895 - syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0021127614039450834 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.91054567e+01 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 3.40238986e+01 + syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 2.11276140e-03 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 74.22861788252561 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.016871277270852972 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 15.536749981897758 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 7.42286179e+01 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.68712773e-02 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.55367500e+01 - stat: 7.73 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 21.044647775622188 - syst_JER_NP1: 2.507882573008553 - syst_JER_NP2: 0.6860378032586835 - syst_JER_NP3: 4.254029002016795 - syst_JER_NP4: 0.7392517889731481 - syst_JER_NP5: 1.2508925773222896 - syst_JER_NP6: 1.0871972992516121 - syst_JER_NP7: 0.12336796697279241 - syst_JER_NP8: 1.5695723844410616 - syst_JES_EtaIntercalibration_Modelling: 36.97250870579382 + syst_JER_NP0: 2.10446478e+01 + syst_JER_NP1: 2.50788257e+00 + syst_JER_NP2: 6.86037803e-01 + syst_JER_NP3: 4.25402900e+00 + syst_JER_NP4: 7.39251789e-01 + syst_JER_NP5: 1.25089258e+00 + syst_JER_NP6: 1.08719730e+00 + syst_JER_NP7: 1.23367967e-01 + syst_JER_NP8: 1.56957238e+00 + syst_JES_EtaIntercalibration_Modelling: 3.69725087e+01 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 0.5770149564785995 - syst_JES_EtaIntercalibration_Stat101: 0.9069557141889564 - syst_JES_EtaIntercalibration_Stat102: 0.25724406698697644 - syst_JES_EtaIntercalibration_Stat103: 0.013958058604261553 + syst_JES_EtaIntercalibration_Stat100: 5.77014956e-01 + syst_JES_EtaIntercalibration_Stat101: 9.06955714e-01 + syst_JES_EtaIntercalibration_Stat102: 2.57244067e-01 + syst_JES_EtaIntercalibration_Stat103: 1.39580586e-02 syst_JES_EtaIntercalibration_Stat104: 0.0 syst_JES_EtaIntercalibration_Stat105: 0.0 syst_JES_EtaIntercalibration_Stat106: 0.0 @@ -24653,143 +24653,143 @@ bins: syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 syst_JES_EtaIntercalibration_Stat110: 0.0 - syst_JES_EtaIntercalibration_Stat111: 0.0004334457145941115 - syst_JES_EtaIntercalibration_Stat112: 0.06626048143501526 - syst_JES_EtaIntercalibration_Stat113: 1.2542521706180139 - syst_JES_EtaIntercalibration_Stat114: 3.475223589929143 - syst_JES_EtaIntercalibration_Stat115: 2.4778815044307505 - syst_JES_EtaIntercalibration_Stat116: 0.06923007077852802 + syst_JES_EtaIntercalibration_Stat111: 4.33445715e-04 + syst_JES_EtaIntercalibration_Stat112: 6.62604814e-02 + syst_JES_EtaIntercalibration_Stat113: 1.25425217e+00 + syst_JES_EtaIntercalibration_Stat114: 3.47522359e+00 + syst_JES_EtaIntercalibration_Stat115: 2.47788150e+00 + syst_JES_EtaIntercalibration_Stat116: 6.92300708e-02 syst_JES_EtaIntercalibration_Stat117: 0.0 syst_JES_EtaIntercalibration_Stat118: 0.0 - syst_JES_EtaIntercalibration_Stat119: 0.06050647961169117 + syst_JES_EtaIntercalibration_Stat119: 6.05064796e-02 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 2.852201956383874 - syst_JES_EtaIntercalibration_Stat121: 4.221619920125448 - syst_JES_EtaIntercalibration_Stat122: 1.036518176396343 - syst_JES_EtaIntercalibration_Stat123: 0.06176588378708752 + syst_JES_EtaIntercalibration_Stat120: 2.85220196e+00 + syst_JES_EtaIntercalibration_Stat121: 4.22161992e+00 + syst_JES_EtaIntercalibration_Stat122: 1.03651818e+00 + syst_JES_EtaIntercalibration_Stat123: 6.17658838e-02 syst_JES_EtaIntercalibration_Stat124: 0.0 syst_JES_EtaIntercalibration_Stat125: 0.0 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 syst_JES_EtaIntercalibration_Stat128: 0.0 syst_JES_EtaIntercalibration_Stat129: 0.0 - syst_JES_EtaIntercalibration_Stat13: 0.015243519500102332 + syst_JES_EtaIntercalibration_Stat13: 1.52435195e-02 syst_JES_EtaIntercalibration_Stat130: 0.0 - syst_JES_EtaIntercalibration_Stat131: 0.052106052191660035 - syst_JES_EtaIntercalibration_Stat132: 1.9492605649322516 - syst_JES_EtaIntercalibration_Stat133: 5.196522178341972 - syst_JES_EtaIntercalibration_Stat134: 4.034339354838658 - syst_JES_EtaIntercalibration_Stat135: 0.05818648876672316 + syst_JES_EtaIntercalibration_Stat131: 5.21060522e-02 + syst_JES_EtaIntercalibration_Stat132: 1.94926056e+00 + syst_JES_EtaIntercalibration_Stat133: 5.19652218e+00 + syst_JES_EtaIntercalibration_Stat134: 4.03433935e+00 + syst_JES_EtaIntercalibration_Stat135: 5.81864888e-02 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 - syst_JES_EtaIntercalibration_Stat138: 0.01737791342480449 - syst_JES_EtaIntercalibration_Stat139: 2.919794984241188 - syst_JES_EtaIntercalibration_Stat14: 0.002835318853321439 - syst_JES_EtaIntercalibration_Stat140: 4.950576809827315 - syst_JES_EtaIntercalibration_Stat141: 1.7107702212746165 - syst_JES_EtaIntercalibration_Stat142: 0.052576310967963516 + syst_JES_EtaIntercalibration_Stat138: 1.73779134e-02 + syst_JES_EtaIntercalibration_Stat139: 2.91979498e+00 + syst_JES_EtaIntercalibration_Stat14: 2.83531885e-03 + syst_JES_EtaIntercalibration_Stat140: 4.95057681e+00 + syst_JES_EtaIntercalibration_Stat141: 1.71077022e+00 + syst_JES_EtaIntercalibration_Stat142: 5.25763110e-02 syst_JES_EtaIntercalibration_Stat143: 0.0 syst_JES_EtaIntercalibration_Stat144: 0.0 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 syst_JES_EtaIntercalibration_Stat147: 0.0 syst_JES_EtaIntercalibration_Stat148: 0.0 - syst_JES_EtaIntercalibration_Stat149: 0.007315345292602393 - syst_JES_EtaIntercalibration_Stat15: 0.002645654519993682 - syst_JES_EtaIntercalibration_Stat150: 0.03116825428220195 - syst_JES_EtaIntercalibration_Stat151: 0.1598962476107554 - syst_JES_EtaIntercalibration_Stat152: 0.17136752171867342 - syst_JES_EtaIntercalibration_Stat153: 0.01806231976207652 + syst_JES_EtaIntercalibration_Stat149: 7.31534529e-03 + syst_JES_EtaIntercalibration_Stat15: 2.64565452e-03 + syst_JES_EtaIntercalibration_Stat150: 3.11682543e-02 + syst_JES_EtaIntercalibration_Stat151: 1.59896248e-01 + syst_JES_EtaIntercalibration_Stat152: 1.71367522e-01 + syst_JES_EtaIntercalibration_Stat153: 1.80623198e-02 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 0.008072669573435729 - syst_JES_EtaIntercalibration_Stat157: 0.06720190677062296 - syst_JES_EtaIntercalibration_Stat158: 0.05680839902690446 - syst_JES_EtaIntercalibration_Stat159: 0.204090092054955 + syst_JES_EtaIntercalibration_Stat156: 8.07266957e-03 + syst_JES_EtaIntercalibration_Stat157: 6.72019068e-02 + syst_JES_EtaIntercalibration_Stat158: 5.68083990e-02 + syst_JES_EtaIntercalibration_Stat159: 2.04090092e-01 syst_JES_EtaIntercalibration_Stat16: 0.0 - syst_JES_EtaIntercalibration_Stat160: 0.01526648868437009 + syst_JES_EtaIntercalibration_Stat160: 1.52664887e-02 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 - syst_JES_EtaIntercalibration_Stat167: 0.002486358934672386 - syst_JES_EtaIntercalibration_Stat168: 0.06692927012899513 - syst_JES_EtaIntercalibration_Stat169: 0.2701406439246046 + syst_JES_EtaIntercalibration_Stat167: 2.48635893e-03 + syst_JES_EtaIntercalibration_Stat168: 6.69292701e-02 + syst_JES_EtaIntercalibration_Stat169: 2.70140644e-01 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 0.18143678651254821 - syst_JES_EtaIntercalibration_Stat171: 0.003803446693461077 + syst_JES_EtaIntercalibration_Stat170: 1.81436787e-01 + syst_JES_EtaIntercalibration_Stat171: 3.80344669e-03 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 - syst_JES_EtaIntercalibration_Stat174: 0.003457068519714355 - syst_JES_EtaIntercalibration_Stat175: 0.18324868430632726 - syst_JES_EtaIntercalibration_Stat176: 0.3005918661574195 - syst_JES_EtaIntercalibration_Stat177: 0.07686868071588064 - syst_JES_EtaIntercalibration_Stat178: 0.008364964173862312 + syst_JES_EtaIntercalibration_Stat174: 3.45706852e-03 + syst_JES_EtaIntercalibration_Stat175: 1.83248684e-01 + syst_JES_EtaIntercalibration_Stat176: 3.00591866e-01 + syst_JES_EtaIntercalibration_Stat177: 7.68686807e-02 + syst_JES_EtaIntercalibration_Stat178: 8.36496417e-03 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 syst_JES_EtaIntercalibration_Stat180: 0.0 syst_JES_EtaIntercalibration_Stat181: 0.0 syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 - syst_JES_EtaIntercalibration_Stat184: 0.0007512360109970434 - syst_JES_EtaIntercalibration_Stat185: 0.006250231355717962 - syst_JES_EtaIntercalibration_Stat186: 0.031030412098455924 - syst_JES_EtaIntercalibration_Stat187: 0.033518906232155005 - syst_JES_EtaIntercalibration_Stat188: 0.00024906890612840454 + syst_JES_EtaIntercalibration_Stat184: 7.51236011e-04 + syst_JES_EtaIntercalibration_Stat185: 6.25023136e-03 + syst_JES_EtaIntercalibration_Stat186: 3.10304121e-02 + syst_JES_EtaIntercalibration_Stat187: 3.35189062e-02 + syst_JES_EtaIntercalibration_Stat188: 2.49068906e-04 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 - syst_JES_EtaIntercalibration_Stat191: 4.608121155512123e-05 - syst_JES_EtaIntercalibration_Stat192: 0.03555402368227821 - syst_JES_EtaIntercalibration_Stat193: 0.049193011698817554 - syst_JES_EtaIntercalibration_Stat194: 0.01681897440392844 - syst_JES_EtaIntercalibration_Stat195: 0.00023902301144450506 - syst_JES_EtaIntercalibration_Stat196: 9.437944850602941e-14 + syst_JES_EtaIntercalibration_Stat191: 4.60812116e-05 + syst_JES_EtaIntercalibration_Stat192: 3.55540237e-02 + syst_JES_EtaIntercalibration_Stat193: 4.91930117e-02 + syst_JES_EtaIntercalibration_Stat194: 1.68189744e-02 + syst_JES_EtaIntercalibration_Stat195: 2.39023011e-04 + syst_JES_EtaIntercalibration_Stat196: 9.43794485e-14 syst_JES_EtaIntercalibration_Stat197: 0.0 syst_JES_EtaIntercalibration_Stat198: 0.0 - syst_JES_EtaIntercalibration_Stat199: 3.1583946476018477e-07 + syst_JES_EtaIntercalibration_Stat199: 3.15839465e-07 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 0.00018968861325867722 - syst_JES_EtaIntercalibration_Stat201: 0.0008229419952220206 - syst_JES_EtaIntercalibration_Stat202: 0.0008250760737653226 - syst_JES_EtaIntercalibration_Stat203: 3.5199111471846846e-08 + syst_JES_EtaIntercalibration_Stat200: 1.89688613e-04 + syst_JES_EtaIntercalibration_Stat201: 8.22941995e-04 + syst_JES_EtaIntercalibration_Stat202: 8.25076074e-04 + syst_JES_EtaIntercalibration_Stat203: 3.51991115e-08 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 - syst_JES_EtaIntercalibration_Stat206: 1.0441938894557611e-07 - syst_JES_EtaIntercalibration_Stat207: 0.0006167089426950124 - syst_JES_EtaIntercalibration_Stat208: 0.0009504679518531912 - syst_JES_EtaIntercalibration_Stat209: 0.0003603156620242867 + syst_JES_EtaIntercalibration_Stat206: 1.04419389e-07 + syst_JES_EtaIntercalibration_Stat207: 6.16708943e-04 + syst_JES_EtaIntercalibration_Stat208: 9.50467952e-04 + syst_JES_EtaIntercalibration_Stat209: 3.60315662e-04 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 1.4124498030062e-09 - syst_JES_EtaIntercalibration_Stat211: 4.803843461543235e-24 - syst_JES_EtaIntercalibration_Stat212: 7.21658373124015e-18 - syst_JES_EtaIntercalibration_Stat213: 4.035168490905925e-10 - syst_JES_EtaIntercalibration_Stat214: 5.6352273084326714e-08 - syst_JES_EtaIntercalibration_Stat215: 7.93367357940293e-08 - syst_JES_EtaIntercalibration_Stat216: 3.134145536914038e-23 + syst_JES_EtaIntercalibration_Stat210: 1.41244980e-09 + syst_JES_EtaIntercalibration_Stat211: 4.80384346e-24 + syst_JES_EtaIntercalibration_Stat212: 7.21658373e-18 + syst_JES_EtaIntercalibration_Stat213: 4.03516849e-10 + syst_JES_EtaIntercalibration_Stat214: 5.63522731e-08 + syst_JES_EtaIntercalibration_Stat215: 7.93367358e-08 + syst_JES_EtaIntercalibration_Stat216: 3.13414554e-23 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 - syst_JES_EtaIntercalibration_Stat219: 4.044338635570734e-13 + syst_JES_EtaIntercalibration_Stat219: 4.04433864e-13 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 6.430167897302527e-08 - syst_JES_EtaIntercalibration_Stat221: 1.6541761595126438e-06 - syst_JES_EtaIntercalibration_Stat222: 4.195906721413075e-08 - syst_JES_EtaIntercalibration_Stat223: 9.258677591859434e-14 - syst_JES_EtaIntercalibration_Stat224: 1.0130765173470363e-37 - syst_JES_EtaIntercalibration_Stat225: 1.4346674701825505e-23 - syst_JES_EtaIntercalibration_Stat226: 2.4153448511496002e-18 - syst_JES_EtaIntercalibration_Stat227: 1.5138124058151985e-18 - syst_JES_EtaIntercalibration_Stat228: 3.891918164607267e-24 + syst_JES_EtaIntercalibration_Stat220: 6.43016790e-08 + syst_JES_EtaIntercalibration_Stat221: 1.65417616e-06 + syst_JES_EtaIntercalibration_Stat222: 4.19590672e-08 + syst_JES_EtaIntercalibration_Stat223: 9.25867759e-14 + syst_JES_EtaIntercalibration_Stat224: 1.01307652e-37 + syst_JES_EtaIntercalibration_Stat225: 1.43466747e-23 + syst_JES_EtaIntercalibration_Stat226: 2.41534485e-18 + syst_JES_EtaIntercalibration_Stat227: 1.51381241e-18 + syst_JES_EtaIntercalibration_Stat228: 3.89191816e-24 syst_JES_EtaIntercalibration_Stat229: 0.0 syst_JES_EtaIntercalibration_Stat23: 0.0 syst_JES_EtaIntercalibration_Stat230: 0.0 - syst_JES_EtaIntercalibration_Stat231: 3.194767714560794e-23 - syst_JES_EtaIntercalibration_Stat232: 2.814602845199008e-18 - syst_JES_EtaIntercalibration_Stat233: 3.1228876060466856e-18 - syst_JES_EtaIntercalibration_Stat234: 9.099328917563097e-30 + syst_JES_EtaIntercalibration_Stat231: 3.19476771e-23 + syst_JES_EtaIntercalibration_Stat232: 2.81460285e-18 + syst_JES_EtaIntercalibration_Stat233: 3.12288761e-18 + syst_JES_EtaIntercalibration_Stat234: 9.09932892e-30 syst_JES_EtaIntercalibration_Stat235: 0.0 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 @@ -24804,19 +24804,19 @@ bins: syst_JES_EtaIntercalibration_Stat245: 0.0 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 - syst_JES_EtaIntercalibration_Stat27: 0.0018158378231549204 - syst_JES_EtaIntercalibration_Stat28: 0.006980475109188485 - syst_JES_EtaIntercalibration_Stat29: 0.01654915032886885 + syst_JES_EtaIntercalibration_Stat27: 1.81583782e-03 + syst_JES_EtaIntercalibration_Stat28: 6.98047511e-03 + syst_JES_EtaIntercalibration_Stat29: 1.65491503e-02 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 0.016190352065350525 - syst_JES_EtaIntercalibration_Stat31: 0.0004015759797348442 + syst_JES_EtaIntercalibration_Stat30: 1.61903521e-02 + syst_JES_EtaIntercalibration_Stat31: 4.01575980e-04 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 - syst_JES_EtaIntercalibration_Stat34: 4.14999373493503e-05 - syst_JES_EtaIntercalibration_Stat35: 0.008498989631126748 - syst_JES_EtaIntercalibration_Stat36: 0.013913098612458694 - syst_JES_EtaIntercalibration_Stat37: 0.011087618804324038 - syst_JES_EtaIntercalibration_Stat38: 0.0015423414237774981 + syst_JES_EtaIntercalibration_Stat34: 4.14999373e-05 + syst_JES_EtaIntercalibration_Stat35: 8.49898963e-03 + syst_JES_EtaIntercalibration_Stat36: 1.39130986e-02 + syst_JES_EtaIntercalibration_Stat37: 1.10876188e-02 + syst_JES_EtaIntercalibration_Stat38: 1.54234142e-03 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 syst_JES_EtaIntercalibration_Stat40: 0.0 @@ -24827,21 +24827,21 @@ bins: syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 syst_JES_EtaIntercalibration_Stat47: 0.0 - syst_JES_EtaIntercalibration_Stat48: 0.0010111712614587105 - syst_JES_EtaIntercalibration_Stat49: 0.004008287306319246 - syst_JES_EtaIntercalibration_Stat5: 0.0008104265728614777 - syst_JES_EtaIntercalibration_Stat50: 0.01582389322354015 - syst_JES_EtaIntercalibration_Stat51: 0.03698876417238078 - syst_JES_EtaIntercalibration_Stat52: 0.005957131923165711 - syst_JES_EtaIntercalibration_Stat53: 0.001041509341052686 - syst_JES_EtaIntercalibration_Stat54: 0.001035073562603161 + syst_JES_EtaIntercalibration_Stat48: 1.01117126e-03 + syst_JES_EtaIntercalibration_Stat49: 4.00828731e-03 + syst_JES_EtaIntercalibration_Stat5: 8.10426573e-04 + syst_JES_EtaIntercalibration_Stat50: 1.58238932e-02 + syst_JES_EtaIntercalibration_Stat51: 3.69887642e-02 + syst_JES_EtaIntercalibration_Stat52: 5.95713192e-03 + syst_JES_EtaIntercalibration_Stat53: 1.04150934e-03 + syst_JES_EtaIntercalibration_Stat54: 1.03507356e-03 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 0.00025145199840128534 - syst_JES_EtaIntercalibration_Stat57: 0.04710504219295425 - syst_JES_EtaIntercalibration_Stat58: 0.01203941679442987 - syst_JES_EtaIntercalibration_Stat59: 0.0030470626326841396 - syst_JES_EtaIntercalibration_Stat6: 0.002010029104266901 - syst_JES_EtaIntercalibration_Stat60: 0.0040226646330510825 + syst_JES_EtaIntercalibration_Stat56: 2.51451998e-04 + syst_JES_EtaIntercalibration_Stat57: 4.71050422e-02 + syst_JES_EtaIntercalibration_Stat58: 1.20394168e-02 + syst_JES_EtaIntercalibration_Stat59: 3.04706263e-03 + syst_JES_EtaIntercalibration_Stat6: 2.01002910e-03 + syst_JES_EtaIntercalibration_Stat60: 4.02266463e-03 syst_JES_EtaIntercalibration_Stat61: 0.0 syst_JES_EtaIntercalibration_Stat62: 0.0 syst_JES_EtaIntercalibration_Stat63: 0.0 @@ -24851,21 +24851,21 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 0.0027459883466613624 - syst_JES_EtaIntercalibration_Stat70: 0.0008104265728614777 - syst_JES_EtaIntercalibration_Stat71: 0.012120164149053427 - syst_JES_EtaIntercalibration_Stat72: 0.0806298336535553 - syst_JES_EtaIntercalibration_Stat73: 0.44981409901758307 - syst_JES_EtaIntercalibration_Stat74: 0.18188064080599672 - syst_JES_EtaIntercalibration_Stat75: 0.009133063306881213 - syst_JES_EtaIntercalibration_Stat76: 0.001035073562603161 + syst_JES_EtaIntercalibration_Stat7: 2.74598835e-03 + syst_JES_EtaIntercalibration_Stat70: 8.10426573e-04 + syst_JES_EtaIntercalibration_Stat71: 1.21201641e-02 + syst_JES_EtaIntercalibration_Stat72: 8.06298337e-02 + syst_JES_EtaIntercalibration_Stat73: 4.49814099e-01 + syst_JES_EtaIntercalibration_Stat74: 1.81880641e-01 + syst_JES_EtaIntercalibration_Stat75: 9.13306331e-03 + syst_JES_EtaIntercalibration_Stat76: 1.03507356e-03 syst_JES_EtaIntercalibration_Stat77: 0.0 - syst_JES_EtaIntercalibration_Stat78: 0.003127794006564371 - syst_JES_EtaIntercalibration_Stat79: 0.2173838353581057 - syst_JES_EtaIntercalibration_Stat8: 0.0011459134031417905 - syst_JES_EtaIntercalibration_Stat80: 0.4350697185509467 - syst_JES_EtaIntercalibration_Stat81: 0.0632272700264688 - syst_JES_EtaIntercalibration_Stat82: 0.015054497899299066 + syst_JES_EtaIntercalibration_Stat78: 3.12779401e-03 + syst_JES_EtaIntercalibration_Stat79: 2.17383835e-01 + syst_JES_EtaIntercalibration_Stat8: 1.14591340e-03 + syst_JES_EtaIntercalibration_Stat80: 4.35069719e-01 + syst_JES_EtaIntercalibration_Stat81: 6.32272700e-02 + syst_JES_EtaIntercalibration_Stat82: 1.50544979e-02 syst_JES_EtaIntercalibration_Stat83: 0.0 syst_JES_EtaIntercalibration_Stat84: 0.0 syst_JES_EtaIntercalibration_Stat85: 0.0 @@ -24875,118 +24875,118 @@ bins: syst_JES_EtaIntercalibration_Stat89: 0.0 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 0.0006929069255679295 - syst_JES_EtaIntercalibration_Stat92: 0.019541429911856503 - syst_JES_EtaIntercalibration_Stat93: 0.25785088714216203 - syst_JES_EtaIntercalibration_Stat94: 0.9590120228651985 - syst_JES_EtaIntercalibration_Stat95: 0.6007748413507343 - syst_JES_EtaIntercalibration_Stat96: 0.003602976440389251 - syst_JES_EtaIntercalibration_Stat97: 0.001035073562603161 + syst_JES_EtaIntercalibration_Stat91: 6.92906926e-04 + syst_JES_EtaIntercalibration_Stat92: 1.95414299e-02 + syst_JES_EtaIntercalibration_Stat93: 2.57850887e-01 + syst_JES_EtaIntercalibration_Stat94: 9.59012023e-01 + syst_JES_EtaIntercalibration_Stat95: 6.00774841e-01 + syst_JES_EtaIntercalibration_Stat96: 3.60297644e-03 + syst_JES_EtaIntercalibration_Stat97: 1.03507356e-03 syst_JES_EtaIntercalibration_Stat98: 0.0 - syst_JES_EtaIntercalibration_Stat99: 0.004073420430056293 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.09481906177030017 - syst_JES_Flavour_Comp: 1.5077031372256275 - syst_JES_Gjet_Generator: 28.36895618453383 - syst_JES_Gjet_OOC: 15.288311711892847 - syst_JES_Gjet_Purity: 6.0437153101382926 - syst_JES_Gjet_Stat1: 1.8965956342879207e-22 - syst_JES_Gjet_Stat10: 0.18193604006628264 - syst_JES_Gjet_Stat11: 0.33128901894720264 - syst_JES_Gjet_Stat12: 0.10690185966577008 - syst_JES_Gjet_Stat13: 0.006191166671153345 - syst_JES_Gjet_Stat14: 1.2951257365672068e-08 - syst_JES_Gjet_Stat15: 1.1446968428693249e-07 - syst_JES_Gjet_Stat2: 1.9883943270890711e-22 - syst_JES_Gjet_Stat3: 2.7392383521701796e-37 - syst_JES_Gjet_Stat4: 0.11046433179990724 - syst_JES_Gjet_Stat5: 0.16866438176153256 - syst_JES_Gjet_Stat6: 0.8684388565120748 - syst_JES_Gjet_Stat7: 1.7221738443026013 - syst_JES_Gjet_Stat8: 1.1334636032974328 - syst_JES_Gjet_Stat9: 1.2815815541743725 - syst_JES_Gjet_Veto: 6.018506521554995 - syst_JES_Gjet_dPhi: 2.624457039084465 - syst_JES_LArESZee: 21.365853013629014 - syst_JES_LArEsmear: 1.8748967971597799 - syst_JES_LAr_JVT: 2.9663801172472826 - syst_JES_MJB_Alpha: 2.130422490286713e-28 - syst_JES_MJB_Asym: 0.009923785101966108 - syst_JES_MJB_Beta: 1.053606506244148e-28 - syst_JES_MJB_Stat1: 1.4298079416481083e-22 + syst_JES_EtaIntercalibration_Stat99: 4.07342043e-03 + syst_JES_EtaIntercalibration_TotalStat_MJB: 9.48190618e-02 + syst_JES_Flavour_Comp: 1.50770314e+00 + syst_JES_Gjet_Generator: 2.83689562e+01 + syst_JES_Gjet_OOC: 1.52883117e+01 + syst_JES_Gjet_Purity: 6.04371531e+00 + syst_JES_Gjet_Stat1: 1.89659563e-22 + syst_JES_Gjet_Stat10: 1.81936040e-01 + syst_JES_Gjet_Stat11: 3.31289019e-01 + syst_JES_Gjet_Stat12: 1.06901860e-01 + syst_JES_Gjet_Stat13: 6.19116667e-03 + syst_JES_Gjet_Stat14: 1.29512574e-08 + syst_JES_Gjet_Stat15: 1.14469684e-07 + syst_JES_Gjet_Stat2: 1.98839433e-22 + syst_JES_Gjet_Stat3: 2.73923835e-37 + syst_JES_Gjet_Stat4: 1.10464332e-01 + syst_JES_Gjet_Stat5: 1.68664382e-01 + syst_JES_Gjet_Stat6: 8.68438857e-01 + syst_JES_Gjet_Stat7: 1.72217384e+00 + syst_JES_Gjet_Stat8: 1.13346360e+00 + syst_JES_Gjet_Stat9: 1.28158155e+00 + syst_JES_Gjet_Veto: 6.01850652e+00 + syst_JES_Gjet_dPhi: 2.62445704e+00 + syst_JES_LArESZee: 2.13658530e+01 + syst_JES_LArEsmear: 1.87489680e+00 + syst_JES_LAr_JVT: 2.96638012e+00 + syst_JES_MJB_Alpha: 2.13042249e-28 + syst_JES_MJB_Asym: 9.92378510e-03 + syst_JES_MJB_Beta: 1.05360651e-28 + syst_JES_MJB_Stat1: 1.42980794e-22 syst_JES_MJB_Stat10: 0.0 - syst_JES_MJB_Stat11: 7.68770747761999e-31 - syst_JES_MJB_Stat12: 5.12167423798117e-39 + syst_JES_MJB_Stat11: 7.68770748e-31 + syst_JES_MJB_Stat12: 5.12167424e-39 syst_JES_MJB_Stat13: 0.0 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 syst_JES_MJB_Stat2: 0.0 - syst_JES_MJB_Stat3: 2.7349082251512573e-28 - syst_JES_MJB_Stat4: 6.704768676099124e-08 + syst_JES_MJB_Stat3: 2.73490823e-28 + syst_JES_MJB_Stat4: 6.70476868e-08 syst_JES_MJB_Stat5: 0.0 syst_JES_MJB_Stat6: 0.0 syst_JES_MJB_Stat7: 0.0 syst_JES_MJB_Stat8: 0.0 syst_JES_MJB_Stat9: 0.0 - syst_JES_MJB_Threshold: 0.004350911628613348 - syst_JES_Pileup_MuOffset: 1.8455072473442094e-15 - syst_JES_Pileup_NPVOffset: 1.601474945167735 - syst_JES_Pileup_Pt_term: 5.835852208546752 - syst_JES_PunchThrough_MC15: 2.4690384261894344e-16 + syst_JES_MJB_Threshold: 4.35091163e-03 + syst_JES_Pileup_MuOffset: 1.84550725e-15 + syst_JES_Pileup_NPVOffset: 1.60147495e+00 + syst_JES_Pileup_Pt_term: 5.83585221e+00 + syst_JES_PunchThrough_MC15: 2.46903843e-16 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 24.318578803046858 - syst_JES_Zjet_MuScale: 1.8596216685121736 - syst_JES_Zjet_MuSmearID: 0.27143752043518227 - syst_JES_Zjet_MuSmearMS: 1.5079370013365943 - syst_JES_Zjet_OOC: 10.36061488281463 - syst_JES_Zjet_Stat1: 0.10191667380757675 - syst_JES_Zjet_Stat10: 3.4266741893562043 - syst_JES_Zjet_Stat11: 1.355870063833552 - syst_JES_Zjet_Stat12: 0.6463936474780674 - syst_JES_Zjet_Stat13: 0.06216527889425093 - syst_JES_Zjet_Stat2: 0.001565773930042265 - syst_JES_Zjet_Stat3: 4.410667381474145e-22 - syst_JES_Zjet_Stat4: 8.630809174115717e-29 - syst_JES_Zjet_Stat5: 0.08945176395689468 - syst_JES_Zjet_Stat6: 0.2840074294802867 - syst_JES_Zjet_Stat7: 0.4449161803081565 - syst_JES_Zjet_Stat8: 0.9929964551799769 - syst_JES_Zjet_Stat9: 2.586109964792681 - syst_JES_Zjet_Veto: 1.9457422748144213 - syst_JES_Zjet_dPhi: 2.360116681437594 + syst_JES_Zjet_MC: 2.43185788e+01 + syst_JES_Zjet_MuScale: 1.85962167e+00 + syst_JES_Zjet_MuSmearID: 2.71437520e-01 + syst_JES_Zjet_MuSmearMS: 1.50793700e+00 + syst_JES_Zjet_OOC: 1.03606149e+01 + syst_JES_Zjet_Stat1: 1.01916674e-01 + syst_JES_Zjet_Stat10: 3.42667419e+00 + syst_JES_Zjet_Stat11: 1.35587006e+00 + syst_JES_Zjet_Stat12: 6.46393647e-01 + syst_JES_Zjet_Stat13: 6.21652789e-02 + syst_JES_Zjet_Stat2: 1.56577393e-03 + syst_JES_Zjet_Stat3: 4.41066738e-22 + syst_JES_Zjet_Stat4: 8.63080917e-29 + syst_JES_Zjet_Stat5: 8.94517640e-02 + syst_JES_Zjet_Stat6: 2.84007429e-01 + syst_JES_Zjet_Stat7: 4.44916180e-01 + syst_JES_Zjet_Stat8: 9.92996455e-01 + syst_JES_Zjet_Stat9: 2.58610996e+00 + syst_JES_Zjet_Veto: 1.94574227e+00 + syst_JES_Zjet_dPhi: 2.36011668e+00 syst_PRW: 0.0 syst_Unfolding_bias: 1.561 - syst_cleaning: 6.4250424706767495 + syst_cleaning: 6.42504247e+00 syst_lumi: 26.65 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 9.139505949448251 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 16.696924866573486 - syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.008697830706561263 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 9.13950595e+00 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 1.66969249e+01 + syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 8.69783071e-03 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 36.42544577627019 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.06984171872885146 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 7.529416511257695 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 3.64254458e+01 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 6.98417187e-02 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 7.52941651e+00 - stat: 5.197 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 11.078556799060065 - syst_JER_NP1: 1.74349247202275 - syst_JER_NP2: 1.1638027839801723 - syst_JER_NP3: 2.778028932534721 - syst_JER_NP4: 0.7534006503846411 - syst_JER_NP5: 0.9489866226665157 - syst_JER_NP6: 0.5448261924687542 - syst_JER_NP7: 0.012535801719475307 - syst_JER_NP8: 0.8602342282773919 - syst_JES_EtaIntercalibration_Modelling: 20.095906921559923 + syst_JER_NP0: 1.10785568e+01 + syst_JER_NP1: 1.74349247e+00 + syst_JER_NP2: 1.16380278e+00 + syst_JER_NP3: 2.77802893e+00 + syst_JER_NP4: 7.53400650e-01 + syst_JER_NP5: 9.48986623e-01 + syst_JER_NP6: 5.44826192e-01 + syst_JER_NP7: 1.25358017e-02 + syst_JER_NP8: 8.60234228e-01 + syst_JES_EtaIntercalibration_Modelling: 2.00959069e+01 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 0.12081602739289188 - syst_JES_EtaIntercalibration_Stat101: 0.1992376658666729 - syst_JES_EtaIntercalibration_Stat102: 0.05384748717442626 - syst_JES_EtaIntercalibration_Stat103: 0.0021106352379082465 + syst_JES_EtaIntercalibration_Stat100: 1.20816027e-01 + syst_JES_EtaIntercalibration_Stat101: 1.99237666e-01 + syst_JES_EtaIntercalibration_Stat102: 5.38474872e-02 + syst_JES_EtaIntercalibration_Stat103: 2.11063524e-03 syst_JES_EtaIntercalibration_Stat104: 0.0 syst_JES_EtaIntercalibration_Stat105: 0.0 syst_JES_EtaIntercalibration_Stat106: 0.0 @@ -24995,170 +24995,170 @@ bins: syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 syst_JES_EtaIntercalibration_Stat110: 0.0 - syst_JES_EtaIntercalibration_Stat111: 4.717240374413837e-05 - syst_JES_EtaIntercalibration_Stat112: 0.021679577371341907 - syst_JES_EtaIntercalibration_Stat113: 0.45565272686553737 - syst_JES_EtaIntercalibration_Stat114: 1.2966995449987633 - syst_JES_EtaIntercalibration_Stat115: 0.9110786834845824 - syst_JES_EtaIntercalibration_Stat116: 0.02943620347463312 + syst_JES_EtaIntercalibration_Stat111: 4.71724037e-05 + syst_JES_EtaIntercalibration_Stat112: 2.16795774e-02 + syst_JES_EtaIntercalibration_Stat113: 4.55652727e-01 + syst_JES_EtaIntercalibration_Stat114: 1.29669954e+00 + syst_JES_EtaIntercalibration_Stat115: 9.11078683e-01 + syst_JES_EtaIntercalibration_Stat116: 2.94362035e-02 syst_JES_EtaIntercalibration_Stat117: 0.0 syst_JES_EtaIntercalibration_Stat118: 0.0 - syst_JES_EtaIntercalibration_Stat119: 0.013224829176590522 + syst_JES_EtaIntercalibration_Stat119: 1.32248292e-02 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 1.0826364856220207 - syst_JES_EtaIntercalibration_Stat121: 1.5505711044644164 - syst_JES_EtaIntercalibration_Stat122: 0.36744014896986965 - syst_JES_EtaIntercalibration_Stat123: 0.02069626060427342 + syst_JES_EtaIntercalibration_Stat120: 1.08263649e+00 + syst_JES_EtaIntercalibration_Stat121: 1.55057110e+00 + syst_JES_EtaIntercalibration_Stat122: 3.67440149e-01 + syst_JES_EtaIntercalibration_Stat123: 2.06962606e-02 syst_JES_EtaIntercalibration_Stat124: 0.0 syst_JES_EtaIntercalibration_Stat125: 0.0 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 syst_JES_EtaIntercalibration_Stat128: 0.0 syst_JES_EtaIntercalibration_Stat129: 0.0 - syst_JES_EtaIntercalibration_Stat13: 0.008920443991192366 + syst_JES_EtaIntercalibration_Stat13: 8.92044399e-03 syst_JES_EtaIntercalibration_Stat130: 0.0 - syst_JES_EtaIntercalibration_Stat131: 0.022832090399260423 - syst_JES_EtaIntercalibration_Stat132: 1.23172084499695 - syst_JES_EtaIntercalibration_Stat133: 3.6109769799875493 - syst_JES_EtaIntercalibration_Stat134: 2.8177510535886596 - syst_JES_EtaIntercalibration_Stat135: 0.036573051554389065 + syst_JES_EtaIntercalibration_Stat131: 2.28320904e-02 + syst_JES_EtaIntercalibration_Stat132: 1.23172084e+00 + syst_JES_EtaIntercalibration_Stat133: 3.61097698e+00 + syst_JES_EtaIntercalibration_Stat134: 2.81775105e+00 + syst_JES_EtaIntercalibration_Stat135: 3.65730516e-02 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 - syst_JES_EtaIntercalibration_Stat138: 0.010413035904576531 - syst_JES_EtaIntercalibration_Stat139: 1.966659096030626 - syst_JES_EtaIntercalibration_Stat14: 0.0006487635470647222 - syst_JES_EtaIntercalibration_Stat140: 3.5763004278164328 - syst_JES_EtaIntercalibration_Stat141: 1.1554766581372382 - syst_JES_EtaIntercalibration_Stat142: 0.03572064320179579 + syst_JES_EtaIntercalibration_Stat138: 1.04130359e-02 + syst_JES_EtaIntercalibration_Stat139: 1.96665910e+00 + syst_JES_EtaIntercalibration_Stat14: 6.48763547e-04 + syst_JES_EtaIntercalibration_Stat140: 3.57630043e+00 + syst_JES_EtaIntercalibration_Stat141: 1.15547666e+00 + syst_JES_EtaIntercalibration_Stat142: 3.57206432e-02 syst_JES_EtaIntercalibration_Stat143: 0.0 syst_JES_EtaIntercalibration_Stat144: 0.0 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 syst_JES_EtaIntercalibration_Stat147: 0.0 syst_JES_EtaIntercalibration_Stat148: 0.0 - syst_JES_EtaIntercalibration_Stat149: 0.004549732197338652 - syst_JES_EtaIntercalibration_Stat15: 0.0006349765493596988 - syst_JES_EtaIntercalibration_Stat150: 0.07661726747280928 - syst_JES_EtaIntercalibration_Stat151: 0.5085880725105535 - syst_JES_EtaIntercalibration_Stat152: 0.5212929376799574 - syst_JES_EtaIntercalibration_Stat153: 0.01878289984933104 + syst_JES_EtaIntercalibration_Stat149: 4.54973220e-03 + syst_JES_EtaIntercalibration_Stat15: 6.34976549e-04 + syst_JES_EtaIntercalibration_Stat150: 7.66172675e-02 + syst_JES_EtaIntercalibration_Stat151: 5.08588073e-01 + syst_JES_EtaIntercalibration_Stat152: 5.21292938e-01 + syst_JES_EtaIntercalibration_Stat153: 1.87828998e-02 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 0.009473895406333487 - syst_JES_EtaIntercalibration_Stat157: 0.468209512398029 - syst_JES_EtaIntercalibration_Stat158: 0.7011276114231987 - syst_JES_EtaIntercalibration_Stat159: 0.19654739886348027 + syst_JES_EtaIntercalibration_Stat156: 9.47389541e-03 + syst_JES_EtaIntercalibration_Stat157: 4.68209512e-01 + syst_JES_EtaIntercalibration_Stat158: 7.01127611e-01 + syst_JES_EtaIntercalibration_Stat159: 1.96547399e-01 syst_JES_EtaIntercalibration_Stat16: 0.0 - syst_JES_EtaIntercalibration_Stat160: 0.014828440225458645 + syst_JES_EtaIntercalibration_Stat160: 1.48284402e-02 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 - syst_JES_EtaIntercalibration_Stat167: 0.005499264418739269 - syst_JES_EtaIntercalibration_Stat168: 0.0744150105825431 - syst_JES_EtaIntercalibration_Stat169: 0.1968015321967794 + syst_JES_EtaIntercalibration_Stat167: 5.49926442e-03 + syst_JES_EtaIntercalibration_Stat168: 7.44150106e-02 + syst_JES_EtaIntercalibration_Stat169: 1.96801532e-01 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 0.1419204448802215 - syst_JES_EtaIntercalibration_Stat171: 0.007862199946579836 + syst_JES_EtaIntercalibration_Stat170: 1.41920445e-01 + syst_JES_EtaIntercalibration_Stat171: 7.86219995e-03 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 - syst_JES_EtaIntercalibration_Stat174: 0.007942911478167183 - syst_JES_EtaIntercalibration_Stat175: 0.15232478483490466 - syst_JES_EtaIntercalibration_Stat176: 0.24093492897460925 - syst_JES_EtaIntercalibration_Stat177: 0.056849161618708156 - syst_JES_EtaIntercalibration_Stat178: 0.003692465944325012 + syst_JES_EtaIntercalibration_Stat174: 7.94291148e-03 + syst_JES_EtaIntercalibration_Stat175: 1.52324785e-01 + syst_JES_EtaIntercalibration_Stat176: 2.40934929e-01 + syst_JES_EtaIntercalibration_Stat177: 5.68491616e-02 + syst_JES_EtaIntercalibration_Stat178: 3.69246594e-03 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 syst_JES_EtaIntercalibration_Stat180: 0.0 syst_JES_EtaIntercalibration_Stat181: 0.0 syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 - syst_JES_EtaIntercalibration_Stat184: 0.001514353958994726 - syst_JES_EtaIntercalibration_Stat185: 0.03706520470738021 - syst_JES_EtaIntercalibration_Stat186: 0.10405565530042085 - syst_JES_EtaIntercalibration_Stat187: 0.08756502312567502 - syst_JES_EtaIntercalibration_Stat188: 0.0003245863213384076 + syst_JES_EtaIntercalibration_Stat184: 1.51435396e-03 + syst_JES_EtaIntercalibration_Stat185: 3.70652047e-02 + syst_JES_EtaIntercalibration_Stat186: 1.04055655e-01 + syst_JES_EtaIntercalibration_Stat187: 8.75650231e-02 + syst_JES_EtaIntercalibration_Stat188: 3.24586321e-04 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 - syst_JES_EtaIntercalibration_Stat191: 0.0006003274343789637 - syst_JES_EtaIntercalibration_Stat192: 0.08070581701463655 - syst_JES_EtaIntercalibration_Stat193: 0.1449916894170145 - syst_JES_EtaIntercalibration_Stat194: 0.038261647899691935 - syst_JES_EtaIntercalibration_Stat195: 0.0017008738930326375 - syst_JES_EtaIntercalibration_Stat196: 7.18801092912219e-10 + syst_JES_EtaIntercalibration_Stat191: 6.00327434e-04 + syst_JES_EtaIntercalibration_Stat192: 8.07058170e-02 + syst_JES_EtaIntercalibration_Stat193: 1.44991689e-01 + syst_JES_EtaIntercalibration_Stat194: 3.82616479e-02 + syst_JES_EtaIntercalibration_Stat195: 1.70087389e-03 + syst_JES_EtaIntercalibration_Stat196: 7.18801093e-10 syst_JES_EtaIntercalibration_Stat197: 0.0 syst_JES_EtaIntercalibration_Stat198: 0.0 - syst_JES_EtaIntercalibration_Stat199: 2.2629243800887383e-05 + syst_JES_EtaIntercalibration_Stat199: 2.26292438e-05 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 0.00034715018003740107 - syst_JES_EtaIntercalibration_Stat201: 0.002287206374597623 - syst_JES_EtaIntercalibration_Stat202: 0.0017135836155554242 - syst_JES_EtaIntercalibration_Stat203: 1.7374699997410026e-06 + syst_JES_EtaIntercalibration_Stat200: 3.47150180e-04 + syst_JES_EtaIntercalibration_Stat201: 2.28720637e-03 + syst_JES_EtaIntercalibration_Stat202: 1.71358362e-03 + syst_JES_EtaIntercalibration_Stat203: 1.73747000e-06 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 - syst_JES_EtaIntercalibration_Stat206: 7.502525836010164e-06 - syst_JES_EtaIntercalibration_Stat207: 0.000954959831615969 - syst_JES_EtaIntercalibration_Stat208: 0.0013383349655448744 - syst_JES_EtaIntercalibration_Stat209: 0.0005370863315147761 + syst_JES_EtaIntercalibration_Stat206: 7.50252584e-06 + syst_JES_EtaIntercalibration_Stat207: 9.54959832e-04 + syst_JES_EtaIntercalibration_Stat208: 1.33833497e-03 + syst_JES_EtaIntercalibration_Stat209: 5.37086332e-04 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 8.211382944087479e-07 - syst_JES_EtaIntercalibration_Stat211: 2.3313563684813495e-17 - syst_JES_EtaIntercalibration_Stat212: 1.101266216679691e-12 - syst_JES_EtaIntercalibration_Stat213: 2.3633783510051877e-07 - syst_JES_EtaIntercalibration_Stat214: 4.092845229576487e-06 - syst_JES_EtaIntercalibration_Stat215: 5.76107396161772e-06 - syst_JES_EtaIntercalibration_Stat216: 1.5207289382680724e-16 + syst_JES_EtaIntercalibration_Stat210: 8.21138294e-07 + syst_JES_EtaIntercalibration_Stat211: 2.33135637e-17 + syst_JES_EtaIntercalibration_Stat212: 1.10126622e-12 + syst_JES_EtaIntercalibration_Stat213: 2.36337835e-07 + syst_JES_EtaIntercalibration_Stat214: 4.09284523e-06 + syst_JES_EtaIntercalibration_Stat215: 5.76107396e-06 + syst_JES_EtaIntercalibration_Stat216: 1.52072894e-16 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 - syst_JES_EtaIntercalibration_Stat219: 3.0804523114647907e-09 + syst_JES_EtaIntercalibration_Stat219: 3.08045231e-09 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 4.728915520497274e-06 - syst_JES_EtaIntercalibration_Stat221: 5.785852193713559e-05 - syst_JES_EtaIntercalibration_Stat222: 3.048586648622727e-06 - syst_JES_EtaIntercalibration_Stat223: 7.0511788376129e-10 - syst_JES_EtaIntercalibration_Stat224: 3.658957330989254e-27 - syst_JES_EtaIntercalibration_Stat225: 6.960808142737451e-17 - syst_JES_EtaIntercalibration_Stat226: 3.687536154124055e-13 - syst_JES_EtaIntercalibration_Stat227: 2.3114218027007093e-13 - syst_JES_EtaIntercalibration_Stat228: 1.8888014056538606e-17 + syst_JES_EtaIntercalibration_Stat220: 4.72891552e-06 + syst_JES_EtaIntercalibration_Stat221: 5.78585219e-05 + syst_JES_EtaIntercalibration_Stat222: 3.04858665e-06 + syst_JES_EtaIntercalibration_Stat223: 7.05117884e-10 + syst_JES_EtaIntercalibration_Stat224: 3.65895733e-27 + syst_JES_EtaIntercalibration_Stat225: 6.96080814e-17 + syst_JES_EtaIntercalibration_Stat226: 3.68753615e-13 + syst_JES_EtaIntercalibration_Stat227: 2.31142180e-13 + syst_JES_EtaIntercalibration_Stat228: 1.88880141e-17 syst_JES_EtaIntercalibration_Stat229: 0.0 syst_JES_EtaIntercalibration_Stat23: 0.0 syst_JES_EtaIntercalibration_Stat230: 0.0 - syst_JES_EtaIntercalibration_Stat231: 1.5501854727741453e-16 - syst_JES_EtaIntercalibration_Stat232: 4.2956049726971815e-13 - syst_JES_EtaIntercalibration_Stat233: 4.766603822429597e-13 - syst_JES_EtaIntercalibration_Stat234: 2.6595640150221938e-21 + syst_JES_EtaIntercalibration_Stat231: 1.55018547e-16 + syst_JES_EtaIntercalibration_Stat232: 4.29560497e-13 + syst_JES_EtaIntercalibration_Stat233: 4.76660382e-13 + syst_JES_EtaIntercalibration_Stat234: 2.65956402e-21 syst_JES_EtaIntercalibration_Stat235: 0.0 - syst_JES_EtaIntercalibration_Stat236: 5.610112565715594e-36 - syst_JES_EtaIntercalibration_Stat237: 1.3353840299704052e-35 - syst_JES_EtaIntercalibration_Stat238: 1.1768410045541412e-35 + syst_JES_EtaIntercalibration_Stat236: 5.61011257e-36 + syst_JES_EtaIntercalibration_Stat237: 1.33538403e-35 + syst_JES_EtaIntercalibration_Stat238: 1.17684100e-35 syst_JES_EtaIntercalibration_Stat239: 0.0 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 - syst_JES_EtaIntercalibration_Stat243: 5.745212528705965e-36 - syst_JES_EtaIntercalibration_Stat244: 9.536006711407035e-36 + syst_JES_EtaIntercalibration_Stat243: 5.74521253e-36 + syst_JES_EtaIntercalibration_Stat244: 9.53600671e-36 syst_JES_EtaIntercalibration_Stat245: 0.0 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 - syst_JES_EtaIntercalibration_Stat27: 0.00022181498303766586 - syst_JES_EtaIntercalibration_Stat28: 0.002503990415317119 - syst_JES_EtaIntercalibration_Stat29: 0.004642039718701253 + syst_JES_EtaIntercalibration_Stat27: 2.21814983e-04 + syst_JES_EtaIntercalibration_Stat28: 2.50399042e-03 + syst_JES_EtaIntercalibration_Stat29: 4.64203972e-03 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 0.004370571701734225 - syst_JES_EtaIntercalibration_Stat31: 4.255648834196732e-05 + syst_JES_EtaIntercalibration_Stat30: 4.37057170e-03 + syst_JES_EtaIntercalibration_Stat31: 4.25564883e-05 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 - syst_JES_EtaIntercalibration_Stat34: 3.1142273520088416e-06 - syst_JES_EtaIntercalibration_Stat35: 0.002095632961064509 - syst_JES_EtaIntercalibration_Stat36: 0.003770132513254673 - syst_JES_EtaIntercalibration_Stat37: 0.0023322398906416124 - syst_JES_EtaIntercalibration_Stat38: 0.000106030614800632 + syst_JES_EtaIntercalibration_Stat34: 3.11422735e-06 + syst_JES_EtaIntercalibration_Stat35: 2.09563296e-03 + syst_JES_EtaIntercalibration_Stat36: 3.77013251e-03 + syst_JES_EtaIntercalibration_Stat37: 2.33223989e-03 + syst_JES_EtaIntercalibration_Stat38: 1.06030615e-04 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 syst_JES_EtaIntercalibration_Stat40: 0.0 @@ -25169,21 +25169,21 @@ bins: syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 syst_JES_EtaIntercalibration_Stat47: 0.0 - syst_JES_EtaIntercalibration_Stat48: 0.00013025022072917956 - syst_JES_EtaIntercalibration_Stat49: 0.0007308894867727952 - syst_JES_EtaIntercalibration_Stat5: 0.00011377841754919954 - syst_JES_EtaIntercalibration_Stat50: 0.006743302935505715 - syst_JES_EtaIntercalibration_Stat51: 0.015825720973150006 - syst_JES_EtaIntercalibration_Stat52: 0.00850398971071814 - syst_JES_EtaIntercalibration_Stat53: 0.00019772955488494884 - syst_JES_EtaIntercalibration_Stat54: 0.00011059144406327282 + syst_JES_EtaIntercalibration_Stat48: 1.30250221e-04 + syst_JES_EtaIntercalibration_Stat49: 7.30889487e-04 + syst_JES_EtaIntercalibration_Stat5: 1.13778418e-04 + syst_JES_EtaIntercalibration_Stat50: 6.74330294e-03 + syst_JES_EtaIntercalibration_Stat51: 1.58257210e-02 + syst_JES_EtaIntercalibration_Stat52: 8.50398971e-03 + syst_JES_EtaIntercalibration_Stat53: 1.97729555e-04 + syst_JES_EtaIntercalibration_Stat54: 1.10591444e-04 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 2.55507084050521e-05 - syst_JES_EtaIntercalibration_Stat57: 0.006141535399840988 - syst_JES_EtaIntercalibration_Stat58: 0.01621053592574903 - syst_JES_EtaIntercalibration_Stat59: 0.0065785690693341515 - syst_JES_EtaIntercalibration_Stat6: 0.00024594499141068115 - syst_JES_EtaIntercalibration_Stat60: 0.0010085111600770713 + syst_JES_EtaIntercalibration_Stat56: 2.55507084e-05 + syst_JES_EtaIntercalibration_Stat57: 6.14153540e-03 + syst_JES_EtaIntercalibration_Stat58: 1.62105359e-02 + syst_JES_EtaIntercalibration_Stat59: 6.57856907e-03 + syst_JES_EtaIntercalibration_Stat6: 2.45944991e-04 + syst_JES_EtaIntercalibration_Stat60: 1.00851116e-03 syst_JES_EtaIntercalibration_Stat61: 0.0 syst_JES_EtaIntercalibration_Stat62: 0.0 syst_JES_EtaIntercalibration_Stat63: 0.0 @@ -25193,21 +25193,21 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 0.0006993530867880687 - syst_JES_EtaIntercalibration_Stat70: 0.00011377841754919954 - syst_JES_EtaIntercalibration_Stat71: 0.0021029262609040767 - syst_JES_EtaIntercalibration_Stat72: 0.010054137605980933 - syst_JES_EtaIntercalibration_Stat73: 0.09728431669596083 - syst_JES_EtaIntercalibration_Stat74: 0.03362035395411535 - syst_JES_EtaIntercalibration_Stat75: 0.003232922065253043 - syst_JES_EtaIntercalibration_Stat76: 0.00011059144406327282 + syst_JES_EtaIntercalibration_Stat7: 6.99353087e-04 + syst_JES_EtaIntercalibration_Stat70: 1.13778418e-04 + syst_JES_EtaIntercalibration_Stat71: 2.10292626e-03 + syst_JES_EtaIntercalibration_Stat72: 1.00541376e-02 + syst_JES_EtaIntercalibration_Stat73: 9.72843167e-02 + syst_JES_EtaIntercalibration_Stat74: 3.36203540e-02 + syst_JES_EtaIntercalibration_Stat75: 3.23292207e-03 + syst_JES_EtaIntercalibration_Stat76: 1.10591444e-04 syst_JES_EtaIntercalibration_Stat77: 0.0 - syst_JES_EtaIntercalibration_Stat78: 0.0016084015263608774 - syst_JES_EtaIntercalibration_Stat79: 0.022955343865862694 - syst_JES_EtaIntercalibration_Stat8: 0.0001855226139854654 - syst_JES_EtaIntercalibration_Stat80: 0.05208992416965108 - syst_JES_EtaIntercalibration_Stat81: 0.005947521783692768 - syst_JES_EtaIntercalibration_Stat82: 0.0019663377602792457 + syst_JES_EtaIntercalibration_Stat78: 1.60840153e-03 + syst_JES_EtaIntercalibration_Stat79: 2.29553439e-02 + syst_JES_EtaIntercalibration_Stat8: 1.85522614e-04 + syst_JES_EtaIntercalibration_Stat80: 5.20899242e-02 + syst_JES_EtaIntercalibration_Stat81: 5.94752178e-03 + syst_JES_EtaIntercalibration_Stat82: 1.96633776e-03 syst_JES_EtaIntercalibration_Stat83: 0.0 syst_JES_EtaIntercalibration_Stat84: 0.0 syst_JES_EtaIntercalibration_Stat85: 0.0 @@ -25217,118 +25217,118 @@ bins: syst_JES_EtaIntercalibration_Stat89: 0.0 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 9.776560783322528e-05 - syst_JES_EtaIntercalibration_Stat92: 0.005177130551763206 - syst_JES_EtaIntercalibration_Stat93: 0.058487149656997306 - syst_JES_EtaIntercalibration_Stat94: 0.24880257233396924 - syst_JES_EtaIntercalibration_Stat95: 0.16470000022768672 - syst_JES_EtaIntercalibration_Stat96: 0.0010043471212683392 - syst_JES_EtaIntercalibration_Stat97: 0.00011059144406327282 + syst_JES_EtaIntercalibration_Stat91: 9.77656078e-05 + syst_JES_EtaIntercalibration_Stat92: 5.17713055e-03 + syst_JES_EtaIntercalibration_Stat93: 5.84871497e-02 + syst_JES_EtaIntercalibration_Stat94: 2.48802572e-01 + syst_JES_EtaIntercalibration_Stat95: 1.64700000e-01 + syst_JES_EtaIntercalibration_Stat96: 1.00434712e-03 + syst_JES_EtaIntercalibration_Stat97: 1.10591444e-04 syst_JES_EtaIntercalibration_Stat98: 0.0 - syst_JES_EtaIntercalibration_Stat99: 0.003393355841935826 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.1001660325409767 - syst_JES_Flavour_Comp: 0.6877777747935738 - syst_JES_Gjet_Generator: 14.770819205446934 - syst_JES_Gjet_OOC: 8.135732588402842 - syst_JES_Gjet_Purity: 2.927442740686827 - syst_JES_Gjet_Stat1: 9.202385940613445e-16 - syst_JES_Gjet_Stat10: 0.38833749175169785 - syst_JES_Gjet_Stat11: 0.14694065570835052 - syst_JES_Gjet_Stat12: 0.1609820797480266 - syst_JES_Gjet_Stat13: 0.026999824198501738 - syst_JES_Gjet_Stat14: 7.591709393283899e-06 - syst_JES_Gjet_Stat15: 9.633401631822478e-06 - syst_JES_Gjet_Stat2: 9.647522998158646e-16 - syst_JES_Gjet_Stat3: 9.892608187429641e-27 - syst_JES_Gjet_Stat4: 0.035533290992391914 - syst_JES_Gjet_Stat5: 0.04597173125954689 - syst_JES_Gjet_Stat6: 0.30979507743022644 - syst_JES_Gjet_Stat7: 0.6875756467473233 - syst_JES_Gjet_Stat8: 0.5077175863607641 - syst_JES_Gjet_Stat9: 0.8296741092139733 - syst_JES_Gjet_Veto: 3.281043888764672 - syst_JES_Gjet_dPhi: 1.1852549135101698 - syst_JES_LArESZee: 12.454087391294474 - syst_JES_LArEsmear: 0.998246798141622 - syst_JES_LAr_JVT: 1.5831300483535773 - syst_JES_MJB_Alpha: 6.225855536037737e-20 - syst_JES_MJB_Asym: 0.033577536990055806 - syst_JES_MJB_Beta: 3.079586335857464e-20 - syst_JES_MJB_Stat1: 6.938595535120923e-16 - syst_JES_MJB_Stat10: 8.38572398484472e-43 - syst_JES_MJB_Stat11: 2.246468749906651e-22 - syst_JES_MJB_Stat12: 1.849830262483561e-28 - syst_JES_MJB_Stat13: 1.0995924551851015e-35 + syst_JES_EtaIntercalibration_Stat99: 3.39335584e-03 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.00166033e-01 + syst_JES_Flavour_Comp: 6.87777775e-01 + syst_JES_Gjet_Generator: 1.47708192e+01 + syst_JES_Gjet_OOC: 8.13573259e+00 + syst_JES_Gjet_Purity: 2.92744274e+00 + syst_JES_Gjet_Stat1: 9.20238594e-16 + syst_JES_Gjet_Stat10: 3.88337492e-01 + syst_JES_Gjet_Stat11: 1.46940656e-01 + syst_JES_Gjet_Stat12: 1.60982080e-01 + syst_JES_Gjet_Stat13: 2.69998242e-02 + syst_JES_Gjet_Stat14: 7.59170939e-06 + syst_JES_Gjet_Stat15: 9.63340163e-06 + syst_JES_Gjet_Stat2: 9.64752300e-16 + syst_JES_Gjet_Stat3: 9.89260819e-27 + syst_JES_Gjet_Stat4: 3.55332910e-02 + syst_JES_Gjet_Stat5: 4.59717313e-02 + syst_JES_Gjet_Stat6: 3.09795077e-01 + syst_JES_Gjet_Stat7: 6.87575647e-01 + syst_JES_Gjet_Stat8: 5.07717586e-01 + syst_JES_Gjet_Stat9: 8.29674109e-01 + syst_JES_Gjet_Veto: 3.28104389e+00 + syst_JES_Gjet_dPhi: 1.18525491e+00 + syst_JES_LArESZee: 1.24540874e+01 + syst_JES_LArEsmear: 9.98246798e-01 + syst_JES_LAr_JVT: 1.58313005e+00 + syst_JES_MJB_Alpha: 6.22585554e-20 + syst_JES_MJB_Asym: 3.35775370e-02 + syst_JES_MJB_Beta: 3.07958634e-20 + syst_JES_MJB_Stat1: 6.93859554e-16 + syst_JES_MJB_Stat10: 8.38572398e-43 + syst_JES_MJB_Stat11: 2.24646875e-22 + syst_JES_MJB_Stat12: 1.84983026e-28 + syst_JES_MJB_Stat13: 1.09959246e-35 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 syst_JES_MJB_Stat2: 0.0 - syst_JES_MJB_Stat3: 7.991682426122799e-20 - syst_JES_MJB_Stat4: 4.867062769268545e-06 + syst_JES_MJB_Stat3: 7.99168243e-20 + syst_JES_MJB_Stat4: 4.86706277e-06 syst_JES_MJB_Stat5: 0.0 syst_JES_MJB_Stat6: 0.0 syst_JES_MJB_Stat7: 0.0 syst_JES_MJB_Stat8: 0.0 syst_JES_MJB_Stat9: 0.0 - syst_JES_MJB_Threshold: 0.02688142858361185 - syst_JES_Pileup_MuOffset: 2.81730487345619e-10 - syst_JES_Pileup_NPVOffset: 0.8159765070147547 - syst_JES_Pileup_Pt_term: 2.978023967331358 - syst_JES_PunchThrough_MC15: 3.769808582673661e-11 + syst_JES_MJB_Threshold: 2.68814286e-02 + syst_JES_Pileup_MuOffset: 2.81730487e-10 + syst_JES_Pileup_NPVOffset: 8.15976507e-01 + syst_JES_Pileup_Pt_term: 2.97802397e+00 + syst_JES_PunchThrough_MC15: 3.76980858e-11 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 12.822685327184786 - syst_JES_Zjet_MuScale: 0.9478839169434198 - syst_JES_Zjet_MuSmearID: 0.1378039720037126 - syst_JES_Zjet_MuSmearMS: 0.972210357895862 - syst_JES_Zjet_OOC: 4.866337919832531 - syst_JES_Zjet_Stat1: 0.05611773605554665 - syst_JES_Zjet_Stat10: 1.8888490543185286 - syst_JES_Zjet_Stat11: 1.5128228581033538 - syst_JES_Zjet_Stat12: 0.19262917743685665 - syst_JES_Zjet_Stat13: 0.0984206547173915 - syst_JES_Zjet_Stat2: 0.0011691342951089922 - syst_JES_Zjet_Stat3: 2.140814798155132e-15 - syst_JES_Zjet_Stat4: 2.52273200122407e-20 - syst_JES_Zjet_Stat5: 0.036277804164529324 - syst_JES_Zjet_Stat6: 0.10485404999331213 - syst_JES_Zjet_Stat7: 0.1516924127140181 - syst_JES_Zjet_Stat8: 0.33522737060091023 - syst_JES_Zjet_Stat9: 1.0609452907666823 - syst_JES_Zjet_Veto: 0.9367067564077884 - syst_JES_Zjet_dPhi: 1.0302641348217456 + syst_JES_Zjet_MC: 1.28226853e+01 + syst_JES_Zjet_MuScale: 9.47883917e-01 + syst_JES_Zjet_MuSmearID: 1.37803972e-01 + syst_JES_Zjet_MuSmearMS: 9.72210358e-01 + syst_JES_Zjet_OOC: 4.86633792e+00 + syst_JES_Zjet_Stat1: 5.61177361e-02 + syst_JES_Zjet_Stat10: 1.88884905e+00 + syst_JES_Zjet_Stat11: 1.51282286e+00 + syst_JES_Zjet_Stat12: 1.92629177e-01 + syst_JES_Zjet_Stat13: 9.84206547e-02 + syst_JES_Zjet_Stat2: 1.16913430e-03 + syst_JES_Zjet_Stat3: 2.14081480e-15 + syst_JES_Zjet_Stat4: 2.52273200e-20 + syst_JES_Zjet_Stat5: 3.62778042e-02 + syst_JES_Zjet_Stat6: 1.04854050e-01 + syst_JES_Zjet_Stat7: 1.51692413e-01 + syst_JES_Zjet_Stat8: 3.35227371e-01 + syst_JES_Zjet_Stat9: 1.06094529e+00 + syst_JES_Zjet_Veto: 9.36706756e-01 + syst_JES_Zjet_dPhi: 1.03026413e+00 syst_PRW: 0.0 syst_Unfolding_bias: 0.7495 - syst_cleaning: 3.7039906519860444 + syst_cleaning: 3.70399065e+00 syst_lumi: 14.51 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 4.429528727754229 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 8.205012187681382 - syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.012624364805803102 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 4.42952873e+00 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 8.20501219e+00 + syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.26243648e-02 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 17.900022346354767 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.1020473331351682 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 3.7083609249909855 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 1.79000223e+01 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.02047333e-01 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 3.70836092e+00 - stat: 2.4128 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 5.352016512493211 - syst_JER_NP1: 0.8257178498131187 - syst_JER_NP2: 0.7424105602697202 - syst_JER_NP3: 1.3211560042250876 - syst_JER_NP4: 0.2802510793913201 - syst_JER_NP5: 0.6119450547230526 - syst_JER_NP6: 0.21964017733556856 - syst_JER_NP7: 0.0010483752989745609 - syst_JER_NP8: 0.4396169099340925 - syst_JES_EtaIntercalibration_Modelling: 9.261314863452164 + syst_JER_NP0: 5.35201651e+00 + syst_JER_NP1: 8.25717850e-01 + syst_JER_NP2: 7.42410560e-01 + syst_JER_NP3: 1.32115600e+00 + syst_JER_NP4: 2.80251079e-01 + syst_JER_NP5: 6.11945055e-01 + syst_JER_NP6: 2.19640177e-01 + syst_JER_NP7: 1.04837530e-03 + syst_JER_NP8: 4.39616910e-01 + syst_JES_EtaIntercalibration_Modelling: 9.26131486e+00 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 0.019818813486180246 - syst_JES_EtaIntercalibration_Stat101: 0.04344515853348909 - syst_JES_EtaIntercalibration_Stat102: 0.014227064375689035 - syst_JES_EtaIntercalibration_Stat103: 0.002898584611495756 + syst_JES_EtaIntercalibration_Stat100: 1.98188135e-02 + syst_JES_EtaIntercalibration_Stat101: 4.34451585e-02 + syst_JES_EtaIntercalibration_Stat102: 1.42270644e-02 + syst_JES_EtaIntercalibration_Stat103: 2.89858461e-03 syst_JES_EtaIntercalibration_Stat104: 0.0 syst_JES_EtaIntercalibration_Stat105: 0.0 syst_JES_EtaIntercalibration_Stat106: 0.0 @@ -25337,170 +25337,170 @@ bins: syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 syst_JES_EtaIntercalibration_Stat110: 0.0 - syst_JES_EtaIntercalibration_Stat111: 4.071185423190646e-06 - syst_JES_EtaIntercalibration_Stat112: 0.005374420840192923 - syst_JES_EtaIntercalibration_Stat113: 0.13393965460236187 - syst_JES_EtaIntercalibration_Stat114: 0.3947040251884949 - syst_JES_EtaIntercalibration_Stat115: 0.2974725533557676 - syst_JES_EtaIntercalibration_Stat116: 0.007155101887698624 + syst_JES_EtaIntercalibration_Stat111: 4.07118542e-06 + syst_JES_EtaIntercalibration_Stat112: 5.37442084e-03 + syst_JES_EtaIntercalibration_Stat113: 1.33939655e-01 + syst_JES_EtaIntercalibration_Stat114: 3.94704025e-01 + syst_JES_EtaIntercalibration_Stat115: 2.97472553e-01 + syst_JES_EtaIntercalibration_Stat116: 7.15510189e-03 syst_JES_EtaIntercalibration_Stat117: 0.0 syst_JES_EtaIntercalibration_Stat118: 0.0 - syst_JES_EtaIntercalibration_Stat119: 0.0007973566516935818 + syst_JES_EtaIntercalibration_Stat119: 7.97356652e-04 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 0.3559810774465407 - syst_JES_EtaIntercalibration_Stat121: 0.5218714472932965 - syst_JES_EtaIntercalibration_Stat122: 0.1186350474143286 - syst_JES_EtaIntercalibration_Stat123: 0.010485535784474725 + syst_JES_EtaIntercalibration_Stat120: 3.55981077e-01 + syst_JES_EtaIntercalibration_Stat121: 5.21871447e-01 + syst_JES_EtaIntercalibration_Stat122: 1.18635047e-01 + syst_JES_EtaIntercalibration_Stat123: 1.04855358e-02 syst_JES_EtaIntercalibration_Stat124: 0.0 syst_JES_EtaIntercalibration_Stat125: 0.0 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 syst_JES_EtaIntercalibration_Stat128: 0.0 syst_JES_EtaIntercalibration_Stat129: 0.0 - syst_JES_EtaIntercalibration_Stat13: 0.004978285122416654 + syst_JES_EtaIntercalibration_Stat13: 4.97828512e-03 syst_JES_EtaIntercalibration_Stat130: 0.0 - syst_JES_EtaIntercalibration_Stat131: 0.010223695702019892 - syst_JES_EtaIntercalibration_Stat132: 0.5789598086223257 - syst_JES_EtaIntercalibration_Stat133: 1.7496115997557857 - syst_JES_EtaIntercalibration_Stat134: 1.3526536918221161 - syst_JES_EtaIntercalibration_Stat135: 0.015585235537199944 + syst_JES_EtaIntercalibration_Stat131: 1.02236957e-02 + syst_JES_EtaIntercalibration_Stat132: 5.78959809e-01 + syst_JES_EtaIntercalibration_Stat133: 1.74961160e+00 + syst_JES_EtaIntercalibration_Stat134: 1.35265369e+00 + syst_JES_EtaIntercalibration_Stat135: 1.55852355e-02 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 - syst_JES_EtaIntercalibration_Stat138: 0.007256714597529656 - syst_JES_EtaIntercalibration_Stat139: 0.9883020831203383 - syst_JES_EtaIntercalibration_Stat14: 0.0001038464668392719 - syst_JES_EtaIntercalibration_Stat140: 1.860043547877307 - syst_JES_EtaIntercalibration_Stat141: 0.5882518742001593 - syst_JES_EtaIntercalibration_Stat142: 0.020407297714298184 + syst_JES_EtaIntercalibration_Stat138: 7.25671460e-03 + syst_JES_EtaIntercalibration_Stat139: 9.88302083e-01 + syst_JES_EtaIntercalibration_Stat14: 1.03846467e-04 + syst_JES_EtaIntercalibration_Stat140: 1.86004355e+00 + syst_JES_EtaIntercalibration_Stat141: 5.88251874e-01 + syst_JES_EtaIntercalibration_Stat142: 2.04072977e-02 syst_JES_EtaIntercalibration_Stat143: 0.0 syst_JES_EtaIntercalibration_Stat144: 0.0 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 syst_JES_EtaIntercalibration_Stat147: 0.0 syst_JES_EtaIntercalibration_Stat148: 0.0 - syst_JES_EtaIntercalibration_Stat149: 0.0026357482808492924 - syst_JES_EtaIntercalibration_Stat15: 0.00010155966210650516 - syst_JES_EtaIntercalibration_Stat150: 0.09574776864240754 - syst_JES_EtaIntercalibration_Stat151: 0.5220287994929016 - syst_JES_EtaIntercalibration_Stat152: 0.49829084880218294 - syst_JES_EtaIntercalibration_Stat153: 0.011396965692674519 + syst_JES_EtaIntercalibration_Stat149: 2.63574828e-03 + syst_JES_EtaIntercalibration_Stat15: 1.01559662e-04 + syst_JES_EtaIntercalibration_Stat150: 9.57477686e-02 + syst_JES_EtaIntercalibration_Stat151: 5.22028799e-01 + syst_JES_EtaIntercalibration_Stat152: 4.98290849e-01 + syst_JES_EtaIntercalibration_Stat153: 1.13969657e-02 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 0.0018829973581831621 - syst_JES_EtaIntercalibration_Stat157: 0.4787171816427733 - syst_JES_EtaIntercalibration_Stat158: 0.7919228939739021 - syst_JES_EtaIntercalibration_Stat159: 0.14758599764205274 + syst_JES_EtaIntercalibration_Stat156: 1.88299736e-03 + syst_JES_EtaIntercalibration_Stat157: 4.78717182e-01 + syst_JES_EtaIntercalibration_Stat158: 7.91922894e-01 + syst_JES_EtaIntercalibration_Stat159: 1.47585998e-01 syst_JES_EtaIntercalibration_Stat16: 0.0 - syst_JES_EtaIntercalibration_Stat160: 0.01388853076282729 + syst_JES_EtaIntercalibration_Stat160: 1.38885308e-02 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 - syst_JES_EtaIntercalibration_Stat167: 0.0026474002747412413 - syst_JES_EtaIntercalibration_Stat168: 0.026974938368789652 - syst_JES_EtaIntercalibration_Stat169: 0.043932631380330496 + syst_JES_EtaIntercalibration_Stat167: 2.64740027e-03 + syst_JES_EtaIntercalibration_Stat168: 2.69749384e-02 + syst_JES_EtaIntercalibration_Stat169: 4.39326314e-02 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 0.049871477820493754 - syst_JES_EtaIntercalibration_Stat171: 0.0014853596088153199 + syst_JES_EtaIntercalibration_Stat170: 4.98714778e-02 + syst_JES_EtaIntercalibration_Stat171: 1.48535961e-03 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 - syst_JES_EtaIntercalibration_Stat174: 0.0009395675813905032 - syst_JES_EtaIntercalibration_Stat175: 0.09867786378286673 - syst_JES_EtaIntercalibration_Stat176: 0.022906549980300398 - syst_JES_EtaIntercalibration_Stat177: 0.035733195700916535 - syst_JES_EtaIntercalibration_Stat178: 0.0034920695869355184 + syst_JES_EtaIntercalibration_Stat174: 9.39567581e-04 + syst_JES_EtaIntercalibration_Stat175: 9.86778638e-02 + syst_JES_EtaIntercalibration_Stat176: 2.29065500e-02 + syst_JES_EtaIntercalibration_Stat177: 3.57331957e-02 + syst_JES_EtaIntercalibration_Stat178: 3.49206959e-03 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 syst_JES_EtaIntercalibration_Stat180: 0.0 syst_JES_EtaIntercalibration_Stat181: 0.0 syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 - syst_JES_EtaIntercalibration_Stat184: 0.0004919188550970577 - syst_JES_EtaIntercalibration_Stat185: 0.0494802445426455 - syst_JES_EtaIntercalibration_Stat186: 0.136500154944967 - syst_JES_EtaIntercalibration_Stat187: 0.09326370515908103 - syst_JES_EtaIntercalibration_Stat188: 0.00024101486987320928 + syst_JES_EtaIntercalibration_Stat184: 4.91918855e-04 + syst_JES_EtaIntercalibration_Stat185: 4.94802445e-02 + syst_JES_EtaIntercalibration_Stat186: 1.36500155e-01 + syst_JES_EtaIntercalibration_Stat187: 9.32637052e-02 + syst_JES_EtaIntercalibration_Stat188: 2.41014870e-04 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 - syst_JES_EtaIntercalibration_Stat191: 0.0017082990236413726 - syst_JES_EtaIntercalibration_Stat192: 0.07744719960560227 - syst_JES_EtaIntercalibration_Stat193: 0.15696762428921449 - syst_JES_EtaIntercalibration_Stat194: 0.02966705917343342 - syst_JES_EtaIntercalibration_Stat195: 0.003045811345109871 - syst_JES_EtaIntercalibration_Stat196: 1.8974642113049448e-07 + syst_JES_EtaIntercalibration_Stat191: 1.70829902e-03 + syst_JES_EtaIntercalibration_Stat192: 7.74471996e-02 + syst_JES_EtaIntercalibration_Stat193: 1.56967624e-01 + syst_JES_EtaIntercalibration_Stat194: 2.96670592e-02 + syst_JES_EtaIntercalibration_Stat195: 3.04581135e-03 + syst_JES_EtaIntercalibration_Stat196: 1.89746421e-07 syst_JES_EtaIntercalibration_Stat197: 0.0 syst_JES_EtaIntercalibration_Stat198: 0.0 - syst_JES_EtaIntercalibration_Stat199: 0.00019537533109376936 + syst_JES_EtaIntercalibration_Stat199: 1.95375331e-04 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 0.00201334317740419 - syst_JES_EtaIntercalibration_Stat201: 0.012606573959645024 - syst_JES_EtaIntercalibration_Stat202: 0.010334261657225445 - syst_JES_EtaIntercalibration_Stat203: 1.6475288669701665e-05 + syst_JES_EtaIntercalibration_Stat200: 2.01334318e-03 + syst_JES_EtaIntercalibration_Stat201: 1.26065740e-02 + syst_JES_EtaIntercalibration_Stat202: 1.03342617e-02 + syst_JES_EtaIntercalibration_Stat203: 1.64752887e-05 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 - syst_JES_EtaIntercalibration_Stat206: 6.659315955862134e-05 - syst_JES_EtaIntercalibration_Stat207: 0.0081720690770453 - syst_JES_EtaIntercalibration_Stat208: 0.013255770318996933 - syst_JES_EtaIntercalibration_Stat209: 0.004098844372198096 + syst_JES_EtaIntercalibration_Stat206: 6.65931596e-05 + syst_JES_EtaIntercalibration_Stat207: 8.17206908e-03 + syst_JES_EtaIntercalibration_Stat208: 1.32557703e-02 + syst_JES_EtaIntercalibration_Stat209: 4.09884437e-03 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 3.196655043760587e-05 - syst_JES_EtaIntercalibration_Stat211: 7.655933507476332e-13 - syst_JES_EtaIntercalibration_Stat212: 2.7220236497870477e-09 - syst_JES_EtaIntercalibration_Stat213: 9.635120030388828e-06 - syst_JES_EtaIntercalibration_Stat214: 3.5244065303882016e-05 - syst_JES_EtaIntercalibration_Stat215: 4.921138593361805e-05 - syst_JES_EtaIntercalibration_Stat216: 4.995272606442516e-12 + syst_JES_EtaIntercalibration_Stat210: 3.19665504e-05 + syst_JES_EtaIntercalibration_Stat211: 7.65593351e-13 + syst_JES_EtaIntercalibration_Stat212: 2.72202365e-09 + syst_JES_EtaIntercalibration_Stat213: 9.63512003e-06 + syst_JES_EtaIntercalibration_Stat214: 3.52440653e-05 + syst_JES_EtaIntercalibration_Stat215: 4.92113859e-05 + syst_JES_EtaIntercalibration_Stat216: 4.99527261e-12 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 - syst_JES_EtaIntercalibration_Stat219: 8.130230151847036e-07 + syst_JES_EtaIntercalibration_Stat219: 8.13023015e-07 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 6.050742185881002e-05 - syst_JES_EtaIntercalibration_Stat221: 0.0007784119780039359 - syst_JES_EtaIntercalibration_Stat222: 2.6715819513539167e-05 - syst_JES_EtaIntercalibration_Stat223: 1.85935654192519e-07 - syst_JES_EtaIntercalibration_Stat224: 9.744517843382503e-20 - syst_JES_EtaIntercalibration_Stat225: 2.2837216883849924e-12 - syst_JES_EtaIntercalibration_Stat226: 9.161671967556779e-10 - syst_JES_EtaIntercalibration_Stat227: 5.742614453633378e-10 - syst_JES_EtaIntercalibration_Stat228: 6.202473941904149e-13 + syst_JES_EtaIntercalibration_Stat220: 6.05074219e-05 + syst_JES_EtaIntercalibration_Stat221: 7.78411978e-04 + syst_JES_EtaIntercalibration_Stat222: 2.67158195e-05 + syst_JES_EtaIntercalibration_Stat223: 1.85935654e-07 + syst_JES_EtaIntercalibration_Stat224: 9.74451784e-20 + syst_JES_EtaIntercalibration_Stat225: 2.28372169e-12 + syst_JES_EtaIntercalibration_Stat226: 9.16167197e-10 + syst_JES_EtaIntercalibration_Stat227: 5.74261445e-10 + syst_JES_EtaIntercalibration_Stat228: 6.20247394e-13 syst_JES_EtaIntercalibration_Stat229: 0.0 syst_JES_EtaIntercalibration_Stat23: 0.0 syst_JES_EtaIntercalibration_Stat230: 0.0 - syst_JES_EtaIntercalibration_Stat231: 5.088765272637361e-12 - syst_JES_EtaIntercalibration_Stat232: 1.0618118440703136e-09 - syst_JES_EtaIntercalibration_Stat233: 1.1827308940734908e-09 - syst_JES_EtaIntercalibration_Stat234: 1.8870693551849656e-15 - syst_JES_EtaIntercalibration_Stat235: 4.977047995549169e-33 - syst_JES_EtaIntercalibration_Stat236: 1.0398365969287265e-26 - syst_JES_EtaIntercalibration_Stat237: 2.4750806047480555e-26 - syst_JES_EtaIntercalibration_Stat238: 2.181982856829998e-26 + syst_JES_EtaIntercalibration_Stat231: 5.08876527e-12 + syst_JES_EtaIntercalibration_Stat232: 1.06181184e-09 + syst_JES_EtaIntercalibration_Stat233: 1.18273089e-09 + syst_JES_EtaIntercalibration_Stat234: 1.88706936e-15 + syst_JES_EtaIntercalibration_Stat235: 4.97704800e-33 + syst_JES_EtaIntercalibration_Stat236: 1.03983660e-26 + syst_JES_EtaIntercalibration_Stat237: 2.47508060e-26 + syst_JES_EtaIntercalibration_Stat238: 2.18198286e-26 syst_JES_EtaIntercalibration_Stat239: 0.0 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 - syst_JES_EtaIntercalibration_Stat243: 1.0649512908279927e-26 - syst_JES_EtaIntercalibration_Stat244: 1.767454313412372e-26 - syst_JES_EtaIntercalibration_Stat245: 2.1513490535010816e-33 + syst_JES_EtaIntercalibration_Stat243: 1.06495129e-26 + syst_JES_EtaIntercalibration_Stat244: 1.76745431e-26 + syst_JES_EtaIntercalibration_Stat245: 2.15134905e-33 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 - syst_JES_EtaIntercalibration_Stat27: 2.1637611883015186e-05 - syst_JES_EtaIntercalibration_Stat28: 0.0022791595353331452 - syst_JES_EtaIntercalibration_Stat29: 0.0013316008223187607 + syst_JES_EtaIntercalibration_Stat27: 2.16376119e-05 + syst_JES_EtaIntercalibration_Stat28: 2.27915954e-03 + syst_JES_EtaIntercalibration_Stat29: 1.33160082e-03 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 0.0013702667869798203 - syst_JES_EtaIntercalibration_Stat31: 3.630378492664367e-06 + syst_JES_EtaIntercalibration_Stat30: 1.37026679e-03 + syst_JES_EtaIntercalibration_Stat31: 3.63037849e-06 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 - syst_JES_EtaIntercalibration_Stat34: 2.15986735703839e-07 - syst_JES_EtaIntercalibration_Stat35: 0.0023437433199904804 - syst_JES_EtaIntercalibration_Stat36: 0.0016769033089298858 - syst_JES_EtaIntercalibration_Stat37: 0.001416942437080632 - syst_JES_EtaIntercalibration_Stat38: 4.691462112177823e-05 + syst_JES_EtaIntercalibration_Stat34: 2.15986736e-07 + syst_JES_EtaIntercalibration_Stat35: 2.34374332e-03 + syst_JES_EtaIntercalibration_Stat36: 1.67690331e-03 + syst_JES_EtaIntercalibration_Stat37: 1.41694244e-03 + syst_JES_EtaIntercalibration_Stat38: 4.69146211e-05 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 syst_JES_EtaIntercalibration_Stat40: 0.0 @@ -25511,21 +25511,21 @@ bins: syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 syst_JES_EtaIntercalibration_Stat47: 0.0 - syst_JES_EtaIntercalibration_Stat48: 1.3094304105220711e-05 - syst_JES_EtaIntercalibration_Stat49: 0.00010929693259648232 - syst_JES_EtaIntercalibration_Stat5: 1.209491078925347e-05 - syst_JES_EtaIntercalibration_Stat50: 0.0015240787405839634 - syst_JES_EtaIntercalibration_Stat51: 0.004136832967379756 - syst_JES_EtaIntercalibration_Stat52: 0.0039554465446394295 - syst_JES_EtaIntercalibration_Stat53: 5.45650932373436e-05 - syst_JES_EtaIntercalibration_Stat54: 3.9456117396419025e-05 + syst_JES_EtaIntercalibration_Stat48: 1.30943041e-05 + syst_JES_EtaIntercalibration_Stat49: 1.09296933e-04 + syst_JES_EtaIntercalibration_Stat5: 1.20949108e-05 + syst_JES_EtaIntercalibration_Stat50: 1.52407874e-03 + syst_JES_EtaIntercalibration_Stat51: 4.13683297e-03 + syst_JES_EtaIntercalibration_Stat52: 3.95544654e-03 + syst_JES_EtaIntercalibration_Stat53: 5.45650932e-05 + syst_JES_EtaIntercalibration_Stat54: 3.94561174e-05 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 2.13647934696313e-06 - syst_JES_EtaIntercalibration_Stat57: 0.002185812771030492 - syst_JES_EtaIntercalibration_Stat58: 0.005236251211506186 - syst_JES_EtaIntercalibration_Stat59: 0.0026456902218513793 - syst_JES_EtaIntercalibration_Stat6: 2.4021353349676202e-05 - syst_JES_EtaIntercalibration_Stat60: 0.00023091219516301 + syst_JES_EtaIntercalibration_Stat56: 2.13647935e-06 + syst_JES_EtaIntercalibration_Stat57: 2.18581277e-03 + syst_JES_EtaIntercalibration_Stat58: 5.23625121e-03 + syst_JES_EtaIntercalibration_Stat59: 2.64569022e-03 + syst_JES_EtaIntercalibration_Stat6: 2.40213533e-05 + syst_JES_EtaIntercalibration_Stat60: 2.30912195e-04 syst_JES_EtaIntercalibration_Stat61: 0.0 syst_JES_EtaIntercalibration_Stat62: 0.0 syst_JES_EtaIntercalibration_Stat63: 0.0 @@ -25535,21 +25535,21 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 0.0001633595650704298 - syst_JES_EtaIntercalibration_Stat70: 1.209491078925347e-05 - syst_JES_EtaIntercalibration_Stat71: 0.0003851579805742054 - syst_JES_EtaIntercalibration_Stat72: 0.001989101995876531 - syst_JES_EtaIntercalibration_Stat73: 0.013986287105590247 - syst_JES_EtaIntercalibration_Stat74: 0.007957837394669483 - syst_JES_EtaIntercalibration_Stat75: 0.00041610692135555735 - syst_JES_EtaIntercalibration_Stat76: 3.9456117396419025e-05 + syst_JES_EtaIntercalibration_Stat7: 1.63359565e-04 + syst_JES_EtaIntercalibration_Stat70: 1.20949108e-05 + syst_JES_EtaIntercalibration_Stat71: 3.85157981e-04 + syst_JES_EtaIntercalibration_Stat72: 1.98910200e-03 + syst_JES_EtaIntercalibration_Stat73: 1.39862871e-02 + syst_JES_EtaIntercalibration_Stat74: 7.95783739e-03 + syst_JES_EtaIntercalibration_Stat75: 4.16106921e-04 + syst_JES_EtaIntercalibration_Stat76: 3.94561174e-05 syst_JES_EtaIntercalibration_Stat77: 0.0 - syst_JES_EtaIntercalibration_Stat78: 0.0004097228697546672 - syst_JES_EtaIntercalibration_Stat79: 0.004900506172835619 - syst_JES_EtaIntercalibration_Stat8: 4.865023329851564e-05 - syst_JES_EtaIntercalibration_Stat80: 0.0032075514025499264 - syst_JES_EtaIntercalibration_Stat81: 0.003982676019964466 - syst_JES_EtaIntercalibration_Stat82: 0.00029942680240753336 + syst_JES_EtaIntercalibration_Stat78: 4.09722870e-04 + syst_JES_EtaIntercalibration_Stat79: 4.90050617e-03 + syst_JES_EtaIntercalibration_Stat8: 4.86502333e-05 + syst_JES_EtaIntercalibration_Stat80: 3.20755140e-03 + syst_JES_EtaIntercalibration_Stat81: 3.98267602e-03 + syst_JES_EtaIntercalibration_Stat82: 2.99426802e-04 syst_JES_EtaIntercalibration_Stat83: 0.0 syst_JES_EtaIntercalibration_Stat84: 0.0 syst_JES_EtaIntercalibration_Stat85: 0.0 @@ -25559,118 +25559,118 @@ bins: syst_JES_EtaIntercalibration_Stat89: 0.0 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 1.042088368373815e-05 - syst_JES_EtaIntercalibration_Stat92: 0.00042646374532309304 - syst_JES_EtaIntercalibration_Stat93: 0.009896593997431641 - syst_JES_EtaIntercalibration_Stat94: 0.058090207436365726 - syst_JES_EtaIntercalibration_Stat95: 0.03692607886033934 - syst_JES_EtaIntercalibration_Stat96: 0.0006296059779735259 - syst_JES_EtaIntercalibration_Stat97: 3.9456117396419025e-05 + syst_JES_EtaIntercalibration_Stat91: 1.04208837e-05 + syst_JES_EtaIntercalibration_Stat92: 4.26463745e-04 + syst_JES_EtaIntercalibration_Stat93: 9.89659400e-03 + syst_JES_EtaIntercalibration_Stat94: 5.80902074e-02 + syst_JES_EtaIntercalibration_Stat95: 3.69260789e-02 + syst_JES_EtaIntercalibration_Stat96: 6.29605978e-04 + syst_JES_EtaIntercalibration_Stat97: 3.94561174e-05 syst_JES_EtaIntercalibration_Stat98: 0.0 - syst_JES_EtaIntercalibration_Stat99: 0.003561963563822628 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.06669104643803393 - syst_JES_Flavour_Comp: 0.3881973306193643 - syst_JES_Gjet_Generator: 7.572723156170441 - syst_JES_Gjet_OOC: 4.389487754852495 - syst_JES_Gjet_Purity: 1.4425084921760425 - syst_JES_Gjet_Stat1: 3.022428659207691e-11 - syst_JES_Gjet_Stat10: 0.41727958253430036 - syst_JES_Gjet_Stat11: 0.13295111883696203 - syst_JES_Gjet_Stat12: 0.13570035630019547 - syst_JES_Gjet_Stat13: 0.04203814220443144 - syst_JES_Gjet_Stat14: 0.00031159853349301887 - syst_JES_Gjet_Stat15: 0.00016155049883859846 - syst_JES_Gjet_Stat2: 3.167920927043476e-11 - syst_JES_Gjet_Stat3: 2.634449278312262e-19 - syst_JES_Gjet_Stat4: 0.016516379748601085 - syst_JES_Gjet_Stat5: 0.018841035003417408 - syst_JES_Gjet_Stat6: 0.09997959529323971 - syst_JES_Gjet_Stat7: 0.29079292890302544 - syst_JES_Gjet_Stat8: 0.2039141179516514 - syst_JES_Gjet_Stat9: 0.4553739205312487 - syst_JES_Gjet_Veto: 1.7937226652969516 - syst_JES_Gjet_dPhi: 0.5404410675550111 - syst_JES_LArESZee: 7.07083267727359 - syst_JES_LArEsmear: 0.5756035506318563 - syst_JES_LAr_JVT: 0.8794813400521925 - syst_JES_MJB_Alpha: 4.419298560917602e-14 - syst_JES_MJB_Asym: 0.041266196198688 - syst_JES_MJB_Beta: 2.1858481191519234e-14 - syst_JES_MJB_Stat1: 2.2785128373568583e-11 - syst_JES_MJB_Stat10: 1.4713771610297614e-31 - syst_JES_MJB_Stat11: 1.5943222086740629e-16 - syst_JES_MJB_Stat12: 4.925952496725887e-21 - syst_JES_MJB_Stat13: 2.0386238005085687e-26 - syst_JES_MJB_Stat14: 1.988394327089071e-33 + syst_JES_EtaIntercalibration_Stat99: 3.56196356e-03 + syst_JES_EtaIntercalibration_TotalStat_MJB: 6.66910464e-02 + syst_JES_Flavour_Comp: 3.88197331e-01 + syst_JES_Gjet_Generator: 7.57272316e+00 + syst_JES_Gjet_OOC: 4.38948775e+00 + syst_JES_Gjet_Purity: 1.44250849e+00 + syst_JES_Gjet_Stat1: 3.02242866e-11 + syst_JES_Gjet_Stat10: 4.17279583e-01 + syst_JES_Gjet_Stat11: 1.32951119e-01 + syst_JES_Gjet_Stat12: 1.35700356e-01 + syst_JES_Gjet_Stat13: 4.20381422e-02 + syst_JES_Gjet_Stat14: 3.11598533e-04 + syst_JES_Gjet_Stat15: 1.61550499e-04 + syst_JES_Gjet_Stat2: 3.16792093e-11 + syst_JES_Gjet_Stat3: 2.63444928e-19 + syst_JES_Gjet_Stat4: 1.65163797e-02 + syst_JES_Gjet_Stat5: 1.88410350e-02 + syst_JES_Gjet_Stat6: 9.99795953e-02 + syst_JES_Gjet_Stat7: 2.90792929e-01 + syst_JES_Gjet_Stat8: 2.03914118e-01 + syst_JES_Gjet_Stat9: 4.55373921e-01 + syst_JES_Gjet_Veto: 1.79372267e+00 + syst_JES_Gjet_dPhi: 5.40441068e-01 + syst_JES_LArESZee: 7.07083268e+00 + syst_JES_LArEsmear: 5.75603551e-01 + syst_JES_LAr_JVT: 8.79481340e-01 + syst_JES_MJB_Alpha: 4.41929856e-14 + syst_JES_MJB_Asym: 4.12661962e-02 + syst_JES_MJB_Beta: 2.18584812e-14 + syst_JES_MJB_Stat1: 2.27851284e-11 + syst_JES_MJB_Stat10: 1.47137716e-31 + syst_JES_MJB_Stat11: 1.59432221e-16 + syst_JES_MJB_Stat12: 4.92595250e-21 + syst_JES_MJB_Stat13: 2.03862380e-26 + syst_JES_MJB_Stat14: 1.98839433e-33 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 syst_JES_MJB_Stat2: 0.0 - syst_JES_MJB_Stat3: 5.6724663947880727e-14 - syst_JES_MJB_Stat4: 4.135271303070695e-05 + syst_JES_MJB_Stat3: 5.67246639e-14 + syst_JES_MJB_Stat4: 4.13527130e-05 syst_JES_MJB_Stat5: 0.0 - syst_JES_MJB_Stat6: 1.4046932049383594e-39 + syst_JES_MJB_Stat6: 1.40469320e-39 syst_JES_MJB_Stat7: 0.0 syst_JES_MJB_Stat8: 0.0 syst_JES_MJB_Stat9: 0.0 - syst_JES_MJB_Threshold: 0.03513477499454339 - syst_JES_Pileup_MuOffset: 6.993304369180567e-07 - syst_JES_Pileup_NPVOffset: 0.36688296158311845 - syst_JES_Pileup_Pt_term: 1.5521577263603075 - syst_JES_PunchThrough_MC15: 9.353074360871938e-08 + syst_JES_MJB_Threshold: 3.51347750e-02 + syst_JES_Pileup_MuOffset: 6.99330437e-07 + syst_JES_Pileup_NPVOffset: 3.66882962e-01 + syst_JES_Pileup_Pt_term: 1.55215773e+00 + syst_JES_PunchThrough_MC15: 9.35307436e-08 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 6.757421401688665 - syst_JES_Zjet_MuScale: 0.4724855447524294 - syst_JES_Zjet_MuSmearID: 0.07179895316089226 - syst_JES_Zjet_MuSmearMS: 0.6296350847911828 - syst_JES_Zjet_OOC: 2.399876403067458 - syst_JES_Zjet_Stat1: 0.030698981660634932 - syst_JES_Zjet_Stat10: 0.9226794717018473 - syst_JES_Zjet_Stat11: 1.139300385104824 - syst_JES_Zjet_Stat12: 0.244235009775421 - syst_JES_Zjet_Stat13: 0.0872461122342996 - syst_JES_Zjet_Stat2: 0.0006935131433505785 - syst_JES_Zjet_Stat3: 7.030394227922038e-11 - syst_JES_Zjet_Stat4: 1.7900745096224347e-14 - syst_JES_Zjet_Stat5: 0.018498302598418948 - syst_JES_Zjet_Stat6: 0.040364668647221665 - syst_JES_Zjet_Stat7: 0.05230914711596816 - syst_JES_Zjet_Stat8: 0.10520477603226956 - syst_JES_Zjet_Stat9: 0.4173891310276299 - syst_JES_Zjet_Veto: 0.44361274497020486 - syst_JES_Zjet_dPhi: 0.4711285679090157 + syst_JES_Zjet_MC: 6.75742140e+00 + syst_JES_Zjet_MuScale: 4.72485545e-01 + syst_JES_Zjet_MuSmearID: 7.17989532e-02 + syst_JES_Zjet_MuSmearMS: 6.29635085e-01 + syst_JES_Zjet_OOC: 2.39987640e+00 + syst_JES_Zjet_Stat1: 3.06989817e-02 + syst_JES_Zjet_Stat10: 9.22679472e-01 + syst_JES_Zjet_Stat11: 1.13930039e+00 + syst_JES_Zjet_Stat12: 2.44235010e-01 + syst_JES_Zjet_Stat13: 8.72461122e-02 + syst_JES_Zjet_Stat2: 6.93513143e-04 + syst_JES_Zjet_Stat3: 7.03039423e-11 + syst_JES_Zjet_Stat4: 1.79007451e-14 + syst_JES_Zjet_Stat5: 1.84983026e-02 + syst_JES_Zjet_Stat6: 4.03646686e-02 + syst_JES_Zjet_Stat7: 5.23091471e-02 + syst_JES_Zjet_Stat8: 1.05204776e-01 + syst_JES_Zjet_Stat9: 4.17389131e-01 + syst_JES_Zjet_Veto: 4.43612745e-01 + syst_JES_Zjet_dPhi: 4.71128568e-01 syst_PRW: 0.0 syst_Unfolding_bias: 0.39196 - syst_cleaning: 2.035159698893431 + syst_cleaning: 2.03515970e+00 syst_lumi: 7.928 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 2.1701949221210524 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 4.014008968599845 - syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.010144038187526702 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 2.17019492e+00 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 4.01400897e+00 + syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.01440382e-02 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 8.75752081070893 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.08262591482095676 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.8498826989839112 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 8.75752081e+00 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 8.26259148e-02 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.84988270e+00 - stat: 1.4126 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 2.4374414864771627 - syst_JER_NP1: 0.2917086388847612 - syst_JER_NP2: 0.3374363051006812 - syst_JER_NP3: 0.5384164071608517 - syst_JER_NP4: 0.08491865637184799 - syst_JER_NP5: 0.28623002987108115 - syst_JER_NP6: 0.06221592963220915 - syst_JER_NP7: 8.356201170388371e-05 - syst_JER_NP8: 0.19877107435439395 - syst_JES_EtaIntercalibration_Modelling: 4.241739383790569 + syst_JER_NP0: 2.43744149e+00 + syst_JER_NP1: 2.91708639e-01 + syst_JER_NP2: 3.37436305e-01 + syst_JER_NP3: 5.38416407e-01 + syst_JER_NP4: 8.49186564e-02 + syst_JER_NP5: 2.86230030e-01 + syst_JER_NP6: 6.22159296e-02 + syst_JER_NP7: 8.35620117e-05 + syst_JER_NP8: 1.98771074e-01 + syst_JES_EtaIntercalibration_Modelling: 4.24173938e+00 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 0.003168051944018595 - syst_JES_EtaIntercalibration_Stat101: 0.00939119006037041 - syst_JES_EtaIntercalibration_Stat102: 0.0031971894168941572 - syst_JES_EtaIntercalibration_Stat103: 0.0018562813815529151 + syst_JES_EtaIntercalibration_Stat100: 3.16805194e-03 + syst_JES_EtaIntercalibration_Stat101: 9.39119006e-03 + syst_JES_EtaIntercalibration_Stat102: 3.19718942e-03 + syst_JES_EtaIntercalibration_Stat103: 1.85628138e-03 syst_JES_EtaIntercalibration_Stat104: 0.0 syst_JES_EtaIntercalibration_Stat105: 0.0 syst_JES_EtaIntercalibration_Stat106: 0.0 @@ -25679,170 +25679,170 @@ bins: syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 syst_JES_EtaIntercalibration_Stat110: 0.0 - syst_JES_EtaIntercalibration_Stat111: 3.293321405511463e-07 - syst_JES_EtaIntercalibration_Stat112: 0.0028058282433311914 - syst_JES_EtaIntercalibration_Stat113: 0.03802695359873046 - syst_JES_EtaIntercalibration_Stat114: 0.11552937061630691 - syst_JES_EtaIntercalibration_Stat115: 0.09074503002919775 - syst_JES_EtaIntercalibration_Stat116: 0.0007732757065617166 + syst_JES_EtaIntercalibration_Stat111: 3.29332141e-07 + syst_JES_EtaIntercalibration_Stat112: 2.80582824e-03 + syst_JES_EtaIntercalibration_Stat113: 3.80269536e-02 + syst_JES_EtaIntercalibration_Stat114: 1.15529371e-01 + syst_JES_EtaIntercalibration_Stat115: 9.07450300e-02 + syst_JES_EtaIntercalibration_Stat116: 7.73275707e-04 syst_JES_EtaIntercalibration_Stat117: 0.0 syst_JES_EtaIntercalibration_Stat118: 0.0 - syst_JES_EtaIntercalibration_Stat119: 0.0010577091531583718 + syst_JES_EtaIntercalibration_Stat119: 1.05770915e-03 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 0.11179678394300974 - syst_JES_EtaIntercalibration_Stat121: 0.1772440337500814 - syst_JES_EtaIntercalibration_Stat122: 0.03616769967802763 - syst_JES_EtaIntercalibration_Stat123: 0.0031210581871378177 + syst_JES_EtaIntercalibration_Stat120: 1.11796784e-01 + syst_JES_EtaIntercalibration_Stat121: 1.77244034e-01 + syst_JES_EtaIntercalibration_Stat122: 3.61676997e-02 + syst_JES_EtaIntercalibration_Stat123: 3.12105819e-03 syst_JES_EtaIntercalibration_Stat124: 0.0 syst_JES_EtaIntercalibration_Stat125: 0.0 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 syst_JES_EtaIntercalibration_Stat128: 0.0 syst_JES_EtaIntercalibration_Stat129: 0.0 - syst_JES_EtaIntercalibration_Stat13: 0.0028071151211104166 + syst_JES_EtaIntercalibration_Stat13: 2.80711512e-03 syst_JES_EtaIntercalibration_Stat130: 0.0 - syst_JES_EtaIntercalibration_Stat131: 0.004602812054331569 - syst_JES_EtaIntercalibration_Stat132: 0.24552490708683714 - syst_JES_EtaIntercalibration_Stat133: 0.711741006265622 - syst_JES_EtaIntercalibration_Stat134: 0.5369095454543531 - syst_JES_EtaIntercalibration_Stat135: 0.00625411553998645 + syst_JES_EtaIntercalibration_Stat131: 4.60281205e-03 + syst_JES_EtaIntercalibration_Stat132: 2.45524907e-01 + syst_JES_EtaIntercalibration_Stat133: 7.11741006e-01 + syst_JES_EtaIntercalibration_Stat134: 5.36909545e-01 + syst_JES_EtaIntercalibration_Stat135: 6.25411554e-03 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 - syst_JES_EtaIntercalibration_Stat138: 0.007212411801887078 - syst_JES_EtaIntercalibration_Stat139: 0.41181021560301295 - syst_JES_EtaIntercalibration_Stat14: 1.2966007982413093e-05 - syst_JES_EtaIntercalibration_Stat140: 0.7917998421318357 - syst_JES_EtaIntercalibration_Stat141: 0.24832017638524662 - syst_JES_EtaIntercalibration_Stat142: 0.00919213897849679 + syst_JES_EtaIntercalibration_Stat138: 7.21241180e-03 + syst_JES_EtaIntercalibration_Stat139: 4.11810216e-01 + syst_JES_EtaIntercalibration_Stat14: 1.29660080e-05 + syst_JES_EtaIntercalibration_Stat140: 7.91799842e-01 + syst_JES_EtaIntercalibration_Stat141: 2.48320176e-01 + syst_JES_EtaIntercalibration_Stat142: 9.19213898e-03 syst_JES_EtaIntercalibration_Stat143: 0.0 syst_JES_EtaIntercalibration_Stat144: 0.0 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 syst_JES_EtaIntercalibration_Stat147: 0.0 syst_JES_EtaIntercalibration_Stat148: 0.0 - syst_JES_EtaIntercalibration_Stat149: 0.0044694593353111515 - syst_JES_EtaIntercalibration_Stat15: 1.26136889827996e-05 - syst_JES_EtaIntercalibration_Stat150: 0.08467130372800456 - syst_JES_EtaIntercalibration_Stat151: 0.3755598701605378 - syst_JES_EtaIntercalibration_Stat152: 0.30200610507074194 - syst_JES_EtaIntercalibration_Stat153: 0.008400337790827224 + syst_JES_EtaIntercalibration_Stat149: 4.46945934e-03 + syst_JES_EtaIntercalibration_Stat15: 1.26136890e-05 + syst_JES_EtaIntercalibration_Stat150: 8.46713037e-02 + syst_JES_EtaIntercalibration_Stat151: 3.75559870e-01 + syst_JES_EtaIntercalibration_Stat152: 3.02006105e-01 + syst_JES_EtaIntercalibration_Stat153: 8.40033779e-03 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 0.00705466369521448 - syst_JES_EtaIntercalibration_Stat157: 0.30667410634091685 - syst_JES_EtaIntercalibration_Stat158: 0.5362705380682403 - syst_JES_EtaIntercalibration_Stat159: 0.09687701894670377 + syst_JES_EtaIntercalibration_Stat156: 7.05466370e-03 + syst_JES_EtaIntercalibration_Stat157: 3.06674106e-01 + syst_JES_EtaIntercalibration_Stat158: 5.36270538e-01 + syst_JES_EtaIntercalibration_Stat159: 9.68770189e-02 syst_JES_EtaIntercalibration_Stat16: 0.0 - syst_JES_EtaIntercalibration_Stat160: 0.007778056384470351 + syst_JES_EtaIntercalibration_Stat160: 7.77805638e-03 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 - syst_JES_EtaIntercalibration_Stat167: 0.0009833182163979267 - syst_JES_EtaIntercalibration_Stat168: 0.03198088296154439 - syst_JES_EtaIntercalibration_Stat169: 0.134786220642171 + syst_JES_EtaIntercalibration_Stat167: 9.83318216e-04 + syst_JES_EtaIntercalibration_Stat168: 3.19808830e-02 + syst_JES_EtaIntercalibration_Stat169: 1.34786221e-01 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 0.08952584249813013 - syst_JES_EtaIntercalibration_Stat171: 0.003449289275705939 + syst_JES_EtaIntercalibration_Stat170: 8.95258425e-02 + syst_JES_EtaIntercalibration_Stat171: 3.44928928e-03 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 - syst_JES_EtaIntercalibration_Stat174: 0.004685676914630372 - syst_JES_EtaIntercalibration_Stat175: 0.10413654341776474 - syst_JES_EtaIntercalibration_Stat176: 0.15220136267458317 - syst_JES_EtaIntercalibration_Stat177: 0.05977724880755219 - syst_JES_EtaIntercalibration_Stat178: 0.004473474823892497 + syst_JES_EtaIntercalibration_Stat174: 4.68567691e-03 + syst_JES_EtaIntercalibration_Stat175: 1.04136543e-01 + syst_JES_EtaIntercalibration_Stat176: 1.52201363e-01 + syst_JES_EtaIntercalibration_Stat177: 5.97772488e-02 + syst_JES_EtaIntercalibration_Stat178: 4.47347482e-03 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 syst_JES_EtaIntercalibration_Stat180: 0.0 syst_JES_EtaIntercalibration_Stat181: 0.0 syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 - syst_JES_EtaIntercalibration_Stat184: 0.0005255149189128697 - syst_JES_EtaIntercalibration_Stat185: 0.021468993339232283 - syst_JES_EtaIntercalibration_Stat186: 0.08635620244082066 - syst_JES_EtaIntercalibration_Stat187: 0.04640395672784811 - syst_JES_EtaIntercalibration_Stat188: 0.000147310921183733 + syst_JES_EtaIntercalibration_Stat184: 5.25514919e-04 + syst_JES_EtaIntercalibration_Stat185: 2.14689933e-02 + syst_JES_EtaIntercalibration_Stat186: 8.63562024e-02 + syst_JES_EtaIntercalibration_Stat187: 4.64039567e-02 + syst_JES_EtaIntercalibration_Stat188: 1.47310921e-04 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 - syst_JES_EtaIntercalibration_Stat191: 0.0020425016596504887 - syst_JES_EtaIntercalibration_Stat192: 0.04464672698810071 - syst_JES_EtaIntercalibration_Stat193: 0.0861713773535041 - syst_JES_EtaIntercalibration_Stat194: 0.017650957481111326 - syst_JES_EtaIntercalibration_Stat195: 0.0013570618077302153 - syst_JES_EtaIntercalibration_Stat196: 4.809293905880266e-06 + syst_JES_EtaIntercalibration_Stat191: 2.04250166e-03 + syst_JES_EtaIntercalibration_Stat192: 4.46467270e-02 + syst_JES_EtaIntercalibration_Stat193: 8.61713774e-02 + syst_JES_EtaIntercalibration_Stat194: 1.76509575e-02 + syst_JES_EtaIntercalibration_Stat195: 1.35706181e-03 + syst_JES_EtaIntercalibration_Stat196: 4.80929391e-06 syst_JES_EtaIntercalibration_Stat197: 0.0 syst_JES_EtaIntercalibration_Stat198: 0.0 - syst_JES_EtaIntercalibration_Stat199: 0.00041889648781053294 + syst_JES_EtaIntercalibration_Stat199: 4.18896488e-04 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 0.006444905895356425 - syst_JES_EtaIntercalibration_Stat201: 0.022562732547278044 - syst_JES_EtaIntercalibration_Stat202: 0.0183275994063598 - syst_JES_EtaIntercalibration_Stat203: 0.0002613584895789689 + syst_JES_EtaIntercalibration_Stat200: 6.44490590e-03 + syst_JES_EtaIntercalibration_Stat201: 2.25627325e-02 + syst_JES_EtaIntercalibration_Stat202: 1.83275994e-02 + syst_JES_EtaIntercalibration_Stat203: 2.61358490e-04 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 - syst_JES_EtaIntercalibration_Stat206: 0.0001730606252155585 - syst_JES_EtaIntercalibration_Stat207: 0.01644483733577198 - syst_JES_EtaIntercalibration_Stat208: 0.028863029553392348 - syst_JES_EtaIntercalibration_Stat209: 0.007628583141711179 + syst_JES_EtaIntercalibration_Stat206: 1.73060625e-04 + syst_JES_EtaIntercalibration_Stat207: 1.64448373e-02 + syst_JES_EtaIntercalibration_Stat208: 2.88630296e-02 + syst_JES_EtaIntercalibration_Stat209: 7.62858314e-03 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 0.00018788953581493035 - syst_JES_EtaIntercalibration_Stat211: 7.655221165733881e-10 - syst_JES_EtaIntercalibration_Stat212: 3.8130011801729097e-07 - syst_JES_EtaIntercalibration_Stat213: 6.594831669572773e-05 - syst_JES_EtaIntercalibration_Stat214: 2.6002875379465248e-05 - syst_JES_EtaIntercalibration_Stat215: 3.97006939485949e-05 - syst_JES_EtaIntercalibration_Stat216: 4.999795487817477e-09 + syst_JES_EtaIntercalibration_Stat210: 1.87889536e-04 + syst_JES_EtaIntercalibration_Stat211: 7.65522117e-10 + syst_JES_EtaIntercalibration_Stat212: 3.81300118e-07 + syst_JES_EtaIntercalibration_Stat213: 6.59483167e-05 + syst_JES_EtaIntercalibration_Stat214: 2.60028754e-05 + syst_JES_EtaIntercalibration_Stat215: 3.97006939e-05 + syst_JES_EtaIntercalibration_Stat216: 4.99979549e-09 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 - syst_JES_EtaIntercalibration_Stat219: 2.0583798543261347e-05 + syst_JES_EtaIntercalibration_Stat219: 2.05837985e-05 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 0.00031034115099354775 - syst_JES_EtaIntercalibration_Stat221: 0.0020967746101274213 - syst_JES_EtaIntercalibration_Stat222: 3.9841660356968055e-05 - syst_JES_EtaIntercalibration_Stat223: 4.6981878155305795e-06 - syst_JES_EtaIntercalibration_Stat224: 1.5709700824649717e-14 - syst_JES_EtaIntercalibration_Stat225: 2.2675089305226567e-09 - syst_JES_EtaIntercalibration_Stat226: 1.3275070471518801e-07 - syst_JES_EtaIntercalibration_Stat227: 8.302587382056893e-08 - syst_JES_EtaIntercalibration_Stat228: 6.207670094326857e-10 + syst_JES_EtaIntercalibration_Stat220: 3.10341151e-04 + syst_JES_EtaIntercalibration_Stat221: 2.09677461e-03 + syst_JES_EtaIntercalibration_Stat222: 3.98416604e-05 + syst_JES_EtaIntercalibration_Stat223: 4.69818782e-06 + syst_JES_EtaIntercalibration_Stat224: 1.57097008e-14 + syst_JES_EtaIntercalibration_Stat225: 2.26750893e-09 + syst_JES_EtaIntercalibration_Stat226: 1.32750705e-07 + syst_JES_EtaIntercalibration_Stat227: 8.30258738e-08 + syst_JES_EtaIntercalibration_Stat228: 6.20767009e-10 syst_JES_EtaIntercalibration_Stat229: 0.0 syst_JES_EtaIntercalibration_Stat23: 0.0 syst_JES_EtaIntercalibration_Stat230: 0.0 - syst_JES_EtaIntercalibration_Stat231: 5.062784510523828e-09 - syst_JES_EtaIntercalibration_Stat232: 1.490636774905275e-07 - syst_JES_EtaIntercalibration_Stat233: 1.6974099931149124e-07 - syst_JES_EtaIntercalibration_Stat234: 1.9277726877635427e-11 - syst_JES_EtaIntercalibration_Stat235: 8.87762641419428e-25 - syst_JES_EtaIntercalibration_Stat236: 4.2660223379620783e-20 - syst_JES_EtaIntercalibration_Stat237: 1.0153004333693549e-19 - syst_JES_EtaIntercalibration_Stat238: 8.950827671226835e-20 - syst_JES_EtaIntercalibration_Stat239: 2.9167735599459893e-39 + syst_JES_EtaIntercalibration_Stat231: 5.06278451e-09 + syst_JES_EtaIntercalibration_Stat232: 1.49063677e-07 + syst_JES_EtaIntercalibration_Stat233: 1.69740999e-07 + syst_JES_EtaIntercalibration_Stat234: 1.92777269e-11 + syst_JES_EtaIntercalibration_Stat235: 8.87762641e-25 + syst_JES_EtaIntercalibration_Stat236: 4.26602234e-20 + syst_JES_EtaIntercalibration_Stat237: 1.01530043e-19 + syst_JES_EtaIntercalibration_Stat238: 8.95082767e-20 + syst_JES_EtaIntercalibration_Stat239: 2.91677356e-39 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 - syst_JES_EtaIntercalibration_Stat243: 4.369071725863536e-20 - syst_JES_EtaIntercalibration_Stat244: 7.251807826328549e-20 - syst_JES_EtaIntercalibration_Stat245: 3.8381071832349863e-25 + syst_JES_EtaIntercalibration_Stat243: 4.36907173e-20 + syst_JES_EtaIntercalibration_Stat244: 7.25180783e-20 + syst_JES_EtaIntercalibration_Stat245: 3.83810718e-25 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 - syst_JES_EtaIntercalibration_Stat27: 1.924318809345271e-06 - syst_JES_EtaIntercalibration_Stat28: 0.0012921541044608417 - syst_JES_EtaIntercalibration_Stat29: 0.0003879704209086048 + syst_JES_EtaIntercalibration_Stat27: 1.92431881e-06 + syst_JES_EtaIntercalibration_Stat28: 1.29215410e-03 + syst_JES_EtaIntercalibration_Stat29: 3.87970421e-04 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 0.00041750538619280114 - syst_JES_EtaIntercalibration_Stat31: 2.9211036869649116e-07 + syst_JES_EtaIntercalibration_Stat30: 4.17505386e-04 + syst_JES_EtaIntercalibration_Stat31: 2.92110369e-07 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 - syst_JES_EtaIntercalibration_Stat34: 1.551917523581714e-08 - syst_JES_EtaIntercalibration_Stat35: 0.001985923263245587 - syst_JES_EtaIntercalibration_Stat36: 0.0005178854796188053 - syst_JES_EtaIntercalibration_Stat37: 0.0005826444702389271 - syst_JES_EtaIntercalibration_Stat38: 7.434423189965715e-06 + syst_JES_EtaIntercalibration_Stat34: 1.55191752e-08 + syst_JES_EtaIntercalibration_Stat35: 1.98592326e-03 + syst_JES_EtaIntercalibration_Stat36: 5.17885480e-04 + syst_JES_EtaIntercalibration_Stat37: 5.82644470e-04 + syst_JES_EtaIntercalibration_Stat38: 7.43442319e-06 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 syst_JES_EtaIntercalibration_Stat40: 0.0 @@ -25853,21 +25853,21 @@ bins: syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 syst_JES_EtaIntercalibration_Stat47: 0.0 - syst_JES_EtaIntercalibration_Stat48: 1.184116534594463e-06 - syst_JES_EtaIntercalibration_Stat49: 1.337853175800693e-05 - syst_JES_EtaIntercalibration_Stat5: 1.1304229595598278e-06 - syst_JES_EtaIntercalibration_Stat50: 0.0010868533238206524 - syst_JES_EtaIntercalibration_Stat51: 0.001220659587067582 - syst_JES_EtaIntercalibration_Stat52: 0.0015385739200636413 - syst_JES_EtaIntercalibration_Stat53: 8.071998389494389e-06 - syst_JES_EtaIntercalibration_Stat54: 6.018876556301849e-06 + syst_JES_EtaIntercalibration_Stat48: 1.18411653e-06 + syst_JES_EtaIntercalibration_Stat49: 1.33785318e-05 + syst_JES_EtaIntercalibration_Stat5: 1.13042296e-06 + syst_JES_EtaIntercalibration_Stat50: 1.08685332e-03 + syst_JES_EtaIntercalibration_Stat51: 1.22065959e-03 + syst_JES_EtaIntercalibration_Stat52: 1.53857392e-03 + syst_JES_EtaIntercalibration_Stat53: 8.07199839e-06 + syst_JES_EtaIntercalibration_Stat54: 6.01887656e-06 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 1.7033692692719333e-07 - syst_JES_EtaIntercalibration_Stat57: 0.0013562330183268655 - syst_JES_EtaIntercalibration_Stat58: 0.001308623062611996 - syst_JES_EtaIntercalibration_Stat59: 0.0006969861888875561 - syst_JES_EtaIntercalibration_Stat6: 2.1386478184123727e-06 - syst_JES_EtaIntercalibration_Stat60: 4.24816242627327e-05 + syst_JES_EtaIntercalibration_Stat56: 1.70336927e-07 + syst_JES_EtaIntercalibration_Stat57: 1.35623302e-03 + syst_JES_EtaIntercalibration_Stat58: 1.30862306e-03 + syst_JES_EtaIntercalibration_Stat59: 6.96986189e-04 + syst_JES_EtaIntercalibration_Stat6: 2.13864782e-06 + syst_JES_EtaIntercalibration_Stat60: 4.24816243e-05 syst_JES_EtaIntercalibration_Stat61: 0.0 syst_JES_EtaIntercalibration_Stat62: 0.0 syst_JES_EtaIntercalibration_Stat63: 0.0 @@ -25877,21 +25877,21 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 2.9196254468681423e-05 - syst_JES_EtaIntercalibration_Stat70: 1.1304229595598278e-06 - syst_JES_EtaIntercalibration_Stat71: 6.657639728161926e-05 - syst_JES_EtaIntercalibration_Stat72: 0.0014983250648640967 - syst_JES_EtaIntercalibration_Stat73: 0.0011072365736372691 - syst_JES_EtaIntercalibration_Stat74: 0.0036536698752026022 - syst_JES_EtaIntercalibration_Stat75: 2.0145739003570955e-05 - syst_JES_EtaIntercalibration_Stat76: 6.018876556301849e-06 + syst_JES_EtaIntercalibration_Stat7: 2.91962545e-05 + syst_JES_EtaIntercalibration_Stat70: 1.13042296e-06 + syst_JES_EtaIntercalibration_Stat71: 6.65763973e-05 + syst_JES_EtaIntercalibration_Stat72: 1.49832506e-03 + syst_JES_EtaIntercalibration_Stat73: 1.10723657e-03 + syst_JES_EtaIntercalibration_Stat74: 3.65366988e-03 + syst_JES_EtaIntercalibration_Stat75: 2.01457390e-05 + syst_JES_EtaIntercalibration_Stat76: 6.01887656e-06 syst_JES_EtaIntercalibration_Stat77: 0.0 - syst_JES_EtaIntercalibration_Stat78: 6.957820114806074e-05 - syst_JES_EtaIntercalibration_Stat79: 0.003636404371078662 - syst_JES_EtaIntercalibration_Stat8: 7.19341620858963e-06 - syst_JES_EtaIntercalibration_Stat80: 0.0028366391570836076 - syst_JES_EtaIntercalibration_Stat81: 0.0013107068627271317 - syst_JES_EtaIntercalibration_Stat82: 5.6389052128937226e-05 + syst_JES_EtaIntercalibration_Stat78: 6.95782011e-05 + syst_JES_EtaIntercalibration_Stat79: 3.63640437e-03 + syst_JES_EtaIntercalibration_Stat8: 7.19341621e-06 + syst_JES_EtaIntercalibration_Stat80: 2.83663916e-03 + syst_JES_EtaIntercalibration_Stat81: 1.31070686e-03 + syst_JES_EtaIntercalibration_Stat82: 5.63890521e-05 syst_JES_EtaIntercalibration_Stat83: 0.0 syst_JES_EtaIntercalibration_Stat84: 0.0 syst_JES_EtaIntercalibration_Stat85: 0.0 @@ -25901,118 +25901,118 @@ bins: syst_JES_EtaIntercalibration_Stat89: 0.0 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 9.753178097420347e-07 - syst_JES_EtaIntercalibration_Stat92: 0.0008716608095325842 - syst_JES_EtaIntercalibration_Stat93: 0.00300871107686913 - syst_JES_EtaIntercalibration_Stat94: 0.01305578035775725 - syst_JES_EtaIntercalibration_Stat95: 0.007840817097088797 - syst_JES_EtaIntercalibration_Stat96: 0.00019642445589844457 - syst_JES_EtaIntercalibration_Stat97: 6.018876556301849e-06 + syst_JES_EtaIntercalibration_Stat91: 9.75317810e-07 + syst_JES_EtaIntercalibration_Stat92: 8.71660810e-04 + syst_JES_EtaIntercalibration_Stat93: 3.00871108e-03 + syst_JES_EtaIntercalibration_Stat94: 1.30557804e-02 + syst_JES_EtaIntercalibration_Stat95: 7.84081710e-03 + syst_JES_EtaIntercalibration_Stat96: 1.96424456e-04 + syst_JES_EtaIntercalibration_Stat97: 6.01887656e-06 syst_JES_EtaIntercalibration_Stat98: 0.0 - syst_JES_EtaIntercalibration_Stat99: 0.002559826879146322 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.03386305631905514 - syst_JES_Flavour_Comp: 0.2656449886596771 - syst_JES_Gjet_Generator: 4.007014288407268 - syst_JES_Gjet_OOC: 2.430389834985326 - syst_JES_Gjet_Purity: 0.7652525204140134 - syst_JES_Gjet_Stat1: 3.02416071001526e-08 - syst_JES_Gjet_Stat10: 0.303744148091778 - syst_JES_Gjet_Stat11: 0.22879407772055638 - syst_JES_Gjet_Stat12: 0.06618350002077558 - syst_JES_Gjet_Stat13: 0.04659774323934583 - syst_JES_Gjet_Stat14: 0.0023471979613999324 - syst_JES_Gjet_Stat15: 0.000883344726975262 - syst_JES_Gjet_Stat2: 3.17051900325483e-08 - syst_JES_Gjet_Stat3: 4.247854605562672e-14 - syst_JES_Gjet_Stat4: 0.00899481376961191 - syst_JES_Gjet_Stat5: 0.009926251596146452 - syst_JES_Gjet_Stat6: 0.03534984337659786 - syst_JES_Gjet_Stat7: 0.11636066861272325 - syst_JES_Gjet_Stat8: 0.07728256255456337 - syst_JES_Gjet_Stat9: 0.21540018570094133 - syst_JES_Gjet_Veto: 1.01163642060772 - syst_JES_Gjet_dPhi: 0.24491992058630102 - syst_JES_LArESZee: 4.137858232225943 - syst_JES_LArEsmear: 0.3410429005271917 - syst_JES_LAr_JVT: 0.5161032648608223 - syst_JES_MJB_Alpha: 4.527112196757664e-10 - syst_JES_MJB_Asym: 0.030193343463927606 - syst_JES_MJB_Beta: 2.2395416941865584e-10 - syst_JES_MJB_Stat1: 2.280244888164427e-08 - syst_JES_MJB_Stat10: 2.6240569734668493e-23 - syst_JES_MJB_Stat11: 1.633697763017e-12 - syst_JES_MJB_Stat12: 7.942318978107088e-16 - syst_JES_MJB_Stat13: 8.362341298942539e-20 - syst_JES_MJB_Stat14: 3.546374028497276e-25 - syst_JES_MJB_Stat15: 5.601586293185172e-39 + syst_JES_EtaIntercalibration_Stat99: 2.55982688e-03 + syst_JES_EtaIntercalibration_TotalStat_MJB: 3.38630563e-02 + syst_JES_Flavour_Comp: 2.65644989e-01 + syst_JES_Gjet_Generator: 4.00701429e+00 + syst_JES_Gjet_OOC: 2.43038983e+00 + syst_JES_Gjet_Purity: 7.65252520e-01 + syst_JES_Gjet_Stat1: 3.02416071e-08 + syst_JES_Gjet_Stat10: 3.03744148e-01 + syst_JES_Gjet_Stat11: 2.28794078e-01 + syst_JES_Gjet_Stat12: 6.61835000e-02 + syst_JES_Gjet_Stat13: 4.65977432e-02 + syst_JES_Gjet_Stat14: 2.34719796e-03 + syst_JES_Gjet_Stat15: 8.83344727e-04 + syst_JES_Gjet_Stat2: 3.17051900e-08 + syst_JES_Gjet_Stat3: 4.24785461e-14 + syst_JES_Gjet_Stat4: 8.99481377e-03 + syst_JES_Gjet_Stat5: 9.92625160e-03 + syst_JES_Gjet_Stat6: 3.53498434e-02 + syst_JES_Gjet_Stat7: 1.16360669e-01 + syst_JES_Gjet_Stat8: 7.72825626e-02 + syst_JES_Gjet_Stat9: 2.15400186e-01 + syst_JES_Gjet_Veto: 1.01163642e+00 + syst_JES_Gjet_dPhi: 2.44919921e-01 + syst_JES_LArESZee: 4.13785823e+00 + syst_JES_LArEsmear: 3.41042901e-01 + syst_JES_LAr_JVT: 5.16103265e-01 + syst_JES_MJB_Alpha: 4.52711220e-10 + syst_JES_MJB_Asym: 3.01933435e-02 + syst_JES_MJB_Beta: 2.23954169e-10 + syst_JES_MJB_Stat1: 2.28024489e-08 + syst_JES_MJB_Stat10: 2.62405697e-23 + syst_JES_MJB_Stat11: 1.63369776e-12 + syst_JES_MJB_Stat12: 7.94231898e-16 + syst_JES_MJB_Stat13: 8.36234130e-20 + syst_JES_MJB_Stat14: 3.54637403e-25 + syst_JES_MJB_Stat15: 5.60158629e-39 syst_JES_MJB_Stat16: 0.0 syst_JES_MJB_Stat2: 0.0 - syst_JES_MJB_Stat3: 5.811896484797368e-10 - syst_JES_MJB_Stat4: 1.5804963619066004e-05 - syst_JES_MJB_Stat5: 5.730490096841631e-37 - syst_JES_MJB_Stat6: 1.9736718643942333e-29 - syst_JES_MJB_Stat7: 4.236596275313474e-37 - syst_JES_MJB_Stat8: 3.982850832004634e-37 + syst_JES_MJB_Stat3: 5.81189648e-10 + syst_JES_MJB_Stat4: 1.58049636e-05 + syst_JES_MJB_Stat5: 5.73049010e-37 + syst_JES_MJB_Stat6: 1.97367186e-29 + syst_JES_MJB_Stat7: 4.23659628e-37 + syst_JES_MJB_Stat8: 3.98285083e-37 syst_JES_MJB_Stat9: 0.0 - syst_JES_MJB_Threshold: 0.027011881677711756 - syst_JES_Pileup_MuOffset: 0.00010074236745282493 - syst_JES_Pileup_NPVOffset: 0.16473211587301367 - syst_JES_Pileup_Pt_term: 0.8163714274152423 - syst_JES_PunchThrough_MC15: 1.3432054012696643e-05 + syst_JES_MJB_Threshold: 2.70118817e-02 + syst_JES_Pileup_MuOffset: 1.00742367e-04 + syst_JES_Pileup_NPVOffset: 1.64732116e-01 + syst_JES_Pileup_Pt_term: 8.16371427e-01 + syst_JES_PunchThrough_MC15: 1.34320540e-05 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 3.6735360009124722 - syst_JES_Zjet_MuScale: 0.2430382840212628 - syst_JES_Zjet_MuSmearID: 0.03929531396998884 - syst_JES_Zjet_MuSmearMS: 0.40110039890281834 - syst_JES_Zjet_OOC: 1.2596370697546178 - syst_JES_Zjet_Stat1: 0.017231076576929252 - syst_JES_Zjet_Stat10: 0.4208349914158755 - syst_JES_Zjet_Stat11: 0.6851267236796416 - syst_JES_Zjet_Stat12: 0.4478249295204545 - syst_JES_Zjet_Stat13: 0.05848667540559986 - syst_JES_Zjet_Stat2: 0.0003958602120698669 - syst_JES_Zjet_Stat3: 7.034724354800035e-08 - syst_JES_Zjet_Stat4: 1.8342418052153493e-10 - syst_JES_Zjet_Stat5: 0.010266704725267995 - syst_JES_Zjet_Stat6: 0.018255264993968182 - syst_JES_Zjet_Stat7: 0.021343223749002865 - syst_JES_Zjet_Stat8: 0.036626360384291526 - syst_JES_Zjet_Stat9: 0.16251636071485231 - syst_JES_Zjet_Veto: 0.22965164924293488 - syst_JES_Zjet_dPhi: 0.23163710302971757 + syst_JES_Zjet_MC: 3.67353600e+00 + syst_JES_Zjet_MuScale: 2.43038284e-01 + syst_JES_Zjet_MuSmearID: 3.92953140e-02 + syst_JES_Zjet_MuSmearMS: 4.01100399e-01 + syst_JES_Zjet_OOC: 1.25963707e+00 + syst_JES_Zjet_Stat1: 1.72310766e-02 + syst_JES_Zjet_Stat10: 4.20834991e-01 + syst_JES_Zjet_Stat11: 6.85126724e-01 + syst_JES_Zjet_Stat12: 4.47824930e-01 + syst_JES_Zjet_Stat13: 5.84866754e-02 + syst_JES_Zjet_Stat2: 3.95860212e-04 + syst_JES_Zjet_Stat3: 7.03472435e-08 + syst_JES_Zjet_Stat4: 1.83424181e-10 + syst_JES_Zjet_Stat5: 1.02667047e-02 + syst_JES_Zjet_Stat6: 1.82552650e-02 + syst_JES_Zjet_Stat7: 2.13432237e-02 + syst_JES_Zjet_Stat8: 3.66263604e-02 + syst_JES_Zjet_Stat9: 1.62516361e-01 + syst_JES_Zjet_Veto: 2.29651649e-01 + syst_JES_Zjet_dPhi: 2.31637103e-01 syst_PRW: 0.0 syst_Unfolding_bias: 0.2179 - syst_cleaning: 1.1358789196036698 + syst_cleaning: 1.13587892e+00 syst_lumi: 4.45 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.0903249561483954 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 2.0524385496282216 - syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.005411539799354709 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.09032496e+00 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 2.05243855e+00 + syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 5.41153980e-03 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 4.477458291263024 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.04445698257866811 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.9481436283601763 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 4.47745829e+00 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 4.44569826e-02 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 9.48143628e-01 - stat: 0.8121 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 1.1258842424956486 - syst_JER_NP1: 0.10078550292576806 - syst_JER_NP2: 0.1500522575638234 - syst_JER_NP3: 0.23711849358495848 - syst_JER_NP4: 0.06622075429953966 - syst_JER_NP5: 0.125201314190387 - syst_JER_NP6: 0.012755300858858643 - syst_JER_NP7: 6.883663032862663e-06 - syst_JER_NP8: 0.09087054239411141 - syst_JES_EtaIntercalibration_Modelling: 2.286290171872328 + syst_JER_NP0: 1.12588424e+00 + syst_JER_NP1: 1.00785503e-01 + syst_JER_NP2: 1.50052258e-01 + syst_JER_NP3: 2.37118494e-01 + syst_JER_NP4: 6.62207543e-02 + syst_JER_NP5: 1.25201314e-01 + syst_JER_NP6: 1.27553009e-02 + syst_JER_NP7: 6.88366303e-06 + syst_JER_NP8: 9.08705424e-02 + syst_JES_EtaIntercalibration_Modelling: 2.28629017e+00 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 0.0012452031315010415 - syst_JES_EtaIntercalibration_Stat101: 0.0022986198184997884 - syst_JES_EtaIntercalibration_Stat102: 0.0005192645255551355 - syst_JES_EtaIntercalibration_Stat103: 0.0006404633225251857 + syst_JES_EtaIntercalibration_Stat100: 1.24520313e-03 + syst_JES_EtaIntercalibration_Stat101: 2.29861982e-03 + syst_JES_EtaIntercalibration_Stat102: 5.19264526e-04 + syst_JES_EtaIntercalibration_Stat103: 6.40463323e-04 syst_JES_EtaIntercalibration_Stat104: 0.0 syst_JES_EtaIntercalibration_Stat105: 0.0 syst_JES_EtaIntercalibration_Stat106: 0.0 @@ -26021,170 +26021,170 @@ bins: syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 syst_JES_EtaIntercalibration_Stat110: 0.0 - syst_JES_EtaIntercalibration_Stat111: 2.728846047324766e-08 - syst_JES_EtaIntercalibration_Stat112: 0.0011912684584089348 - syst_JES_EtaIntercalibration_Stat113: 0.012254115512757336 - syst_JES_EtaIntercalibration_Stat114: 0.03674598345397766 - syst_JES_EtaIntercalibration_Stat115: 0.02666700348745618 - syst_JES_EtaIntercalibration_Stat116: 7.412850208973266e-05 + syst_JES_EtaIntercalibration_Stat111: 2.72884605e-08 + syst_JES_EtaIntercalibration_Stat112: 1.19126846e-03 + syst_JES_EtaIntercalibration_Stat113: 1.22541155e-02 + syst_JES_EtaIntercalibration_Stat114: 3.67459835e-02 + syst_JES_EtaIntercalibration_Stat115: 2.66670035e-02 + syst_JES_EtaIntercalibration_Stat116: 7.41285021e-05 syst_JES_EtaIntercalibration_Stat117: 0.0 syst_JES_EtaIntercalibration_Stat118: 0.0 - syst_JES_EtaIntercalibration_Stat119: 0.0010799720209834142 + syst_JES_EtaIntercalibration_Stat119: 1.07997202e-03 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 0.032319741258246486 - syst_JES_EtaIntercalibration_Stat121: 0.05300667222152321 - syst_JES_EtaIntercalibration_Stat122: 0.00932776911967701 - syst_JES_EtaIntercalibration_Stat123: 0.000547566187780071 + syst_JES_EtaIntercalibration_Stat120: 3.23197413e-02 + syst_JES_EtaIntercalibration_Stat121: 5.30066722e-02 + syst_JES_EtaIntercalibration_Stat122: 9.32776912e-03 + syst_JES_EtaIntercalibration_Stat123: 5.47566188e-04 syst_JES_EtaIntercalibration_Stat124: 0.0 syst_JES_EtaIntercalibration_Stat125: 0.0 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 syst_JES_EtaIntercalibration_Stat128: 0.0 syst_JES_EtaIntercalibration_Stat129: 0.0 - syst_JES_EtaIntercalibration_Stat13: 0.0015766876818606363 + syst_JES_EtaIntercalibration_Stat13: 1.57668768e-03 syst_JES_EtaIntercalibration_Stat130: 0.0 - syst_JES_EtaIntercalibration_Stat131: 0.002275872744684992 - syst_JES_EtaIntercalibration_Stat132: 0.09732666746580815 - syst_JES_EtaIntercalibration_Stat133: 0.26596072548404587 - syst_JES_EtaIntercalibration_Stat134: 0.19806584763658777 - syst_JES_EtaIntercalibration_Stat135: 0.0026738002917196337 + syst_JES_EtaIntercalibration_Stat131: 2.27587274e-03 + syst_JES_EtaIntercalibration_Stat132: 9.73266675e-02 + syst_JES_EtaIntercalibration_Stat133: 2.65960725e-01 + syst_JES_EtaIntercalibration_Stat134: 1.98065848e-01 + syst_JES_EtaIntercalibration_Stat135: 2.67380029e-03 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 - syst_JES_EtaIntercalibration_Stat138: 0.003595681090906144 - syst_JES_EtaIntercalibration_Stat139: 0.14469444080544352 - syst_JES_EtaIntercalibration_Stat14: 1.4189999999999999e-06 - syst_JES_EtaIntercalibration_Stat140: 0.29607225469469445 - syst_JES_EtaIntercalibration_Stat141: 0.08673522165187565 - syst_JES_EtaIntercalibration_Stat142: 0.003402427368805982 + syst_JES_EtaIntercalibration_Stat138: 3.59568109e-03 + syst_JES_EtaIntercalibration_Stat139: 1.44694441e-01 + syst_JES_EtaIntercalibration_Stat14: 1.41900000e-06 + syst_JES_EtaIntercalibration_Stat140: 2.96072255e-01 + syst_JES_EtaIntercalibration_Stat141: 8.67352217e-02 + syst_JES_EtaIntercalibration_Stat142: 3.40242737e-03 syst_JES_EtaIntercalibration_Stat143: 0.0 syst_JES_EtaIntercalibration_Stat144: 0.0 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 syst_JES_EtaIntercalibration_Stat147: 0.0 syst_JES_EtaIntercalibration_Stat148: 0.0 - syst_JES_EtaIntercalibration_Stat149: 0.0033405891875535965 - syst_JES_EtaIntercalibration_Stat15: 1.3740433134003408e-06 - syst_JES_EtaIntercalibration_Stat150: 0.05181429990842296 - syst_JES_EtaIntercalibration_Stat151: 0.21534755628982652 - syst_JES_EtaIntercalibration_Stat152: 0.1519080513830653 - syst_JES_EtaIntercalibration_Stat153: 0.004273724458829792 + syst_JES_EtaIntercalibration_Stat149: 3.34058919e-03 + syst_JES_EtaIntercalibration_Stat15: 1.37404331e-06 + syst_JES_EtaIntercalibration_Stat150: 5.18142999e-02 + syst_JES_EtaIntercalibration_Stat151: 2.15347556e-01 + syst_JES_EtaIntercalibration_Stat152: 1.51908051e-01 + syst_JES_EtaIntercalibration_Stat153: 4.27372446e-03 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 0.004737160674588365 - syst_JES_EtaIntercalibration_Stat157: 0.14910734388352573 - syst_JES_EtaIntercalibration_Stat158: 0.2747093555014099 - syst_JES_EtaIntercalibration_Stat159: 0.05268651440359288 + syst_JES_EtaIntercalibration_Stat156: 4.73716067e-03 + syst_JES_EtaIntercalibration_Stat157: 1.49107344e-01 + syst_JES_EtaIntercalibration_Stat158: 2.74709356e-01 + syst_JES_EtaIntercalibration_Stat159: 5.26865144e-02 syst_JES_EtaIntercalibration_Stat16: 0.0 - syst_JES_EtaIntercalibration_Stat160: 0.0037553581813190603 + syst_JES_EtaIntercalibration_Stat160: 3.75535818e-03 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 - syst_JES_EtaIntercalibration_Stat167: 0.0017535239938692028 - syst_JES_EtaIntercalibration_Stat168: 0.04514346907361019 - syst_JES_EtaIntercalibration_Stat169: 0.14240112359107285 + syst_JES_EtaIntercalibration_Stat167: 1.75352399e-03 + syst_JES_EtaIntercalibration_Stat168: 4.51434691e-02 + syst_JES_EtaIntercalibration_Stat169: 1.42401124e-01 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 0.09865823166365796 - syst_JES_EtaIntercalibration_Stat171: 0.0030421835496892684 + syst_JES_EtaIntercalibration_Stat170: 9.86582317e-02 + syst_JES_EtaIntercalibration_Stat171: 3.04218355e-03 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 - syst_JES_EtaIntercalibration_Stat174: 0.003992322499347967 - syst_JES_EtaIntercalibration_Stat175: 0.09689392382910293 - syst_JES_EtaIntercalibration_Stat176: 0.15412644159909747 - syst_JES_EtaIntercalibration_Stat177: 0.049112015912605334 - syst_JES_EtaIntercalibration_Stat178: 0.0030555114968692228 + syst_JES_EtaIntercalibration_Stat174: 3.99232250e-03 + syst_JES_EtaIntercalibration_Stat175: 9.68939238e-02 + syst_JES_EtaIntercalibration_Stat176: 1.54126442e-01 + syst_JES_EtaIntercalibration_Stat177: 4.91120159e-02 + syst_JES_EtaIntercalibration_Stat178: 3.05551150e-03 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 syst_JES_EtaIntercalibration_Stat180: 0.0 syst_JES_EtaIntercalibration_Stat181: 0.0 syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 - syst_JES_EtaIntercalibration_Stat184: 0.0003189991161037911 - syst_JES_EtaIntercalibration_Stat185: 0.008280934005291916 - syst_JES_EtaIntercalibration_Stat186: 0.011641956321855877 - syst_JES_EtaIntercalibration_Stat187: 0.013551334805103149 - syst_JES_EtaIntercalibration_Stat188: 8.649861732998972e-05 + syst_JES_EtaIntercalibration_Stat184: 3.18999116e-04 + syst_JES_EtaIntercalibration_Stat185: 8.28093401e-03 + syst_JES_EtaIntercalibration_Stat186: 1.16419563e-02 + syst_JES_EtaIntercalibration_Stat187: 1.35513348e-02 + syst_JES_EtaIntercalibration_Stat188: 8.64986173e-05 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 - syst_JES_EtaIntercalibration_Stat191: 0.0015002795764456703 - syst_JES_EtaIntercalibration_Stat192: 0.017143388463194784 - syst_JES_EtaIntercalibration_Stat193: 0.005499807112072205 - syst_JES_EtaIntercalibration_Stat194: 0.002273408309581673 - syst_JES_EtaIntercalibration_Stat195: 0.0006017144505494247 - syst_JES_EtaIntercalibration_Stat196: 2.171548130543507e-05 + syst_JES_EtaIntercalibration_Stat191: 1.50027958e-03 + syst_JES_EtaIntercalibration_Stat192: 1.71433885e-02 + syst_JES_EtaIntercalibration_Stat193: 5.49980711e-03 + syst_JES_EtaIntercalibration_Stat194: 2.27340831e-03 + syst_JES_EtaIntercalibration_Stat195: 6.01714451e-04 + syst_JES_EtaIntercalibration_Stat196: 2.17154813e-05 syst_JES_EtaIntercalibration_Stat197: 0.0 syst_JES_EtaIntercalibration_Stat198: 0.0 - syst_JES_EtaIntercalibration_Stat199: 0.0003657225280181753 + syst_JES_EtaIntercalibration_Stat199: 3.65722528e-04 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 0.007918676451907856 - syst_JES_EtaIntercalibration_Stat201: 0.022295759686541294 - syst_JES_EtaIntercalibration_Stat202: 0.018404570084628438 - syst_JES_EtaIntercalibration_Stat203: 0.0007216196557051366 + syst_JES_EtaIntercalibration_Stat200: 7.91867645e-03 + syst_JES_EtaIntercalibration_Stat201: 2.22957597e-02 + syst_JES_EtaIntercalibration_Stat202: 1.84045701e-02 + syst_JES_EtaIntercalibration_Stat203: 7.21619656e-04 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 - syst_JES_EtaIntercalibration_Stat206: 0.0002608605901626384 - syst_JES_EtaIntercalibration_Stat207: 0.016861381912524252 - syst_JES_EtaIntercalibration_Stat208: 0.03192438879602866 - syst_JES_EtaIntercalibration_Stat209: 0.010103008017417387 + syst_JES_EtaIntercalibration_Stat206: 2.60860590e-04 + syst_JES_EtaIntercalibration_Stat207: 1.68613819e-02 + syst_JES_EtaIntercalibration_Stat208: 3.19243888e-02 + syst_JES_EtaIntercalibration_Stat209: 1.01030080e-02 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 0.00024998621336985765 - syst_JES_EtaIntercalibration_Stat211: 6.49766563371031e-08 - syst_JES_EtaIntercalibration_Stat212: 6.884069035098354e-06 - syst_JES_EtaIntercalibration_Stat213: 0.00012378318657083442 - syst_JES_EtaIntercalibration_Stat214: 0.0004005209701126771 - syst_JES_EtaIntercalibration_Stat215: 0.0005105420330393962 - syst_JES_EtaIntercalibration_Stat216: 4.2703263048624285e-07 + syst_JES_EtaIntercalibration_Stat210: 2.49986213e-04 + syst_JES_EtaIntercalibration_Stat211: 6.49766563e-08 + syst_JES_EtaIntercalibration_Stat212: 6.88406904e-06 + syst_JES_EtaIntercalibration_Stat213: 1.23783187e-04 + syst_JES_EtaIntercalibration_Stat214: 4.00520970e-04 + syst_JES_EtaIntercalibration_Stat215: 5.10542033e-04 + syst_JES_EtaIntercalibration_Stat216: 4.27032630e-07 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 - syst_JES_EtaIntercalibration_Stat219: 9.228006088684597e-05 + syst_JES_EtaIntercalibration_Stat219: 9.22800609e-05 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 0.0007875032491996462 - syst_JES_EtaIntercalibration_Stat221: 0.0024628604847818725 - syst_JES_EtaIntercalibration_Stat222: 0.00020168031014454533 - syst_JES_EtaIntercalibration_Stat223: 2.1572692808270367e-05 - syst_JES_EtaIntercalibration_Stat224: 6.483932198134093e-11 - syst_JES_EtaIntercalibration_Stat225: 1.8529141237520966e-07 - syst_JES_EtaIntercalibration_Stat226: 2.6837535126898295e-06 - syst_JES_EtaIntercalibration_Stat227: 1.6697728272308384e-06 - syst_JES_EtaIntercalibration_Stat228: 5.2931472679304883e-08 + syst_JES_EtaIntercalibration_Stat220: 7.87503249e-04 + syst_JES_EtaIntercalibration_Stat221: 2.46286048e-03 + syst_JES_EtaIntercalibration_Stat222: 2.01680310e-04 + syst_JES_EtaIntercalibration_Stat223: 2.15726928e-05 + syst_JES_EtaIntercalibration_Stat224: 6.48393220e-11 + syst_JES_EtaIntercalibration_Stat225: 1.85291412e-07 + syst_JES_EtaIntercalibration_Stat226: 2.68375351e-06 + syst_JES_EtaIntercalibration_Stat227: 1.66977283e-06 + syst_JES_EtaIntercalibration_Stat228: 5.29314727e-08 syst_JES_EtaIntercalibration_Stat229: 0.0 syst_JES_EtaIntercalibration_Stat23: 0.0 syst_JES_EtaIntercalibration_Stat230: 0.0 - syst_JES_EtaIntercalibration_Stat231: 4.180304624067485e-07 - syst_JES_EtaIntercalibration_Stat232: 2.7408849679437477e-06 - syst_JES_EtaIntercalibration_Stat233: 3.300419589084709e-06 - syst_JES_EtaIntercalibration_Stat234: 9.42848788393908e-09 - syst_JES_EtaIntercalibration_Stat235: 8.157093278245627e-19 - syst_JES_EtaIntercalibration_Stat236: 2.127651758846397e-15 - syst_JES_EtaIntercalibration_Stat237: 5.06424880905352e-15 - syst_JES_EtaIntercalibration_Stat238: 4.4647023137046885e-15 - syst_JES_EtaIntercalibration_Stat239: 3.8927841900110514e-30 + syst_JES_EtaIntercalibration_Stat231: 4.18030462e-07 + syst_JES_EtaIntercalibration_Stat232: 2.74088497e-06 + syst_JES_EtaIntercalibration_Stat233: 3.30041959e-06 + syst_JES_EtaIntercalibration_Stat234: 9.42848788e-09 + syst_JES_EtaIntercalibration_Stat235: 8.15709328e-19 + syst_JES_EtaIntercalibration_Stat236: 2.12765176e-15 + syst_JES_EtaIntercalibration_Stat237: 5.06424881e-15 + syst_JES_EtaIntercalibration_Stat238: 4.46470231e-15 + syst_JES_EtaIntercalibration_Stat239: 3.89278419e-30 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 - syst_JES_EtaIntercalibration_Stat243: 2.1795431583397173e-15 - syst_JES_EtaIntercalibration_Stat244: 3.617430174861707e-15 - syst_JES_EtaIntercalibration_Stat245: 3.5257888479034023e-19 + syst_JES_EtaIntercalibration_Stat243: 2.17954316e-15 + syst_JES_EtaIntercalibration_Stat244: 3.61743017e-15 + syst_JES_EtaIntercalibration_Stat245: 3.52578885e-19 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 - syst_JES_EtaIntercalibration_Stat27: 1.6959453610007606e-07 - syst_JES_EtaIntercalibration_Stat28: 0.0003083326744329897 - syst_JES_EtaIntercalibration_Stat29: 0.00014374089423333918 + syst_JES_EtaIntercalibration_Stat27: 1.69594536e-07 + syst_JES_EtaIntercalibration_Stat28: 3.08332674e-04 + syst_JES_EtaIntercalibration_Stat29: 1.43740894e-04 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 0.00014291468608928896 - syst_JES_EtaIntercalibration_Stat31: 2.414478825751015e-08 + syst_JES_EtaIntercalibration_Stat30: 1.42914686e-04 + syst_JES_EtaIntercalibration_Stat31: 2.41447883e-08 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 - syst_JES_EtaIntercalibration_Stat34: 1.2233474853858981e-09 - syst_JES_EtaIntercalibration_Stat35: 0.0013901625018950122 - syst_JES_EtaIntercalibration_Stat36: 0.00023662309919997244 - syst_JES_EtaIntercalibration_Stat37: 0.00010724747581178775 - syst_JES_EtaIntercalibration_Stat38: 8.915781559508678e-07 + syst_JES_EtaIntercalibration_Stat34: 1.22334749e-09 + syst_JES_EtaIntercalibration_Stat35: 1.39016250e-03 + syst_JES_EtaIntercalibration_Stat36: 2.36623099e-04 + syst_JES_EtaIntercalibration_Stat37: 1.07247476e-04 + syst_JES_EtaIntercalibration_Stat38: 8.91578156e-07 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 syst_JES_EtaIntercalibration_Stat40: 0.0 @@ -26195,21 +26195,21 @@ bins: syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 syst_JES_EtaIntercalibration_Stat47: 0.0 - syst_JES_EtaIntercalibration_Stat48: 1.0524806732192283e-07 - syst_JES_EtaIntercalibration_Stat49: 1.451774468538416e-06 - syst_JES_EtaIntercalibration_Stat5: 1.0230358094905574e-07 - syst_JES_EtaIntercalibration_Stat50: 0.00043930268571339284 - syst_JES_EtaIntercalibration_Stat51: 0.0007909490043612167 - syst_JES_EtaIntercalibration_Stat52: 0.0005289828352602758 - syst_JES_EtaIntercalibration_Stat53: 9.459977812209708e-07 - syst_JES_EtaIntercalibration_Stat54: 7.11006856507024e-07 + syst_JES_EtaIntercalibration_Stat48: 1.05248067e-07 + syst_JES_EtaIntercalibration_Stat49: 1.45177447e-06 + syst_JES_EtaIntercalibration_Stat5: 1.02303581e-07 + syst_JES_EtaIntercalibration_Stat50: 4.39302686e-04 + syst_JES_EtaIntercalibration_Stat51: 7.90949004e-04 + syst_JES_EtaIntercalibration_Stat52: 5.28982835e-04 + syst_JES_EtaIntercalibration_Stat53: 9.45997781e-07 + syst_JES_EtaIntercalibration_Stat54: 7.11006857e-07 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 1.4027636677288161e-08 - syst_JES_EtaIntercalibration_Stat57: 0.00056090230049448 - syst_JES_EtaIntercalibration_Stat58: 0.0004137511450135214 - syst_JES_EtaIntercalibration_Stat59: 0.00018202326087618582 - syst_JES_EtaIntercalibration_Stat6: 1.88669600293741e-07 - syst_JES_EtaIntercalibration_Stat60: 6.258014281703102e-06 + syst_JES_EtaIntercalibration_Stat56: 1.40276367e-08 + syst_JES_EtaIntercalibration_Stat57: 5.60902300e-04 + syst_JES_EtaIntercalibration_Stat58: 4.13751145e-04 + syst_JES_EtaIntercalibration_Stat59: 1.82023261e-04 + syst_JES_EtaIntercalibration_Stat6: 1.88669600e-07 + syst_JES_EtaIntercalibration_Stat60: 6.25801428e-06 syst_JES_EtaIntercalibration_Stat61: 0.0 syst_JES_EtaIntercalibration_Stat62: 0.0 syst_JES_EtaIntercalibration_Stat63: 0.0 @@ -26219,21 +26219,21 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 4.180681239941644e-06 - syst_JES_EtaIntercalibration_Stat70: 1.0230358094905574e-07 - syst_JES_EtaIntercalibration_Stat71: 9.486329848787676e-06 - syst_JES_EtaIntercalibration_Stat72: 0.0005059610138143056 - syst_JES_EtaIntercalibration_Stat73: 0.0013464747565402034 - syst_JES_EtaIntercalibration_Stat74: 0.0013801806720498589 - syst_JES_EtaIntercalibration_Stat75: 1.3381301085843634e-05 - syst_JES_EtaIntercalibration_Stat76: 7.11006856507024e-07 + syst_JES_EtaIntercalibration_Stat7: 4.18068124e-06 + syst_JES_EtaIntercalibration_Stat70: 1.02303581e-07 + syst_JES_EtaIntercalibration_Stat71: 9.48632985e-06 + syst_JES_EtaIntercalibration_Stat72: 5.05961014e-04 + syst_JES_EtaIntercalibration_Stat73: 1.34647476e-03 + syst_JES_EtaIntercalibration_Stat74: 1.38018067e-03 + syst_JES_EtaIntercalibration_Stat75: 1.33813011e-05 + syst_JES_EtaIntercalibration_Stat76: 7.11006857e-07 syst_JES_EtaIntercalibration_Stat77: 0.0 - syst_JES_EtaIntercalibration_Stat78: 9.486538502003775e-06 - syst_JES_EtaIntercalibration_Stat79: 0.0016053000560642863 - syst_JES_EtaIntercalibration_Stat8: 8.439318496626372e-07 - syst_JES_EtaIntercalibration_Stat80: 0.001334141345585242 - syst_JES_EtaIntercalibration_Stat81: 0.00048485936878645545 - syst_JES_EtaIntercalibration_Stat82: 8.44587994231507e-06 + syst_JES_EtaIntercalibration_Stat78: 9.48653850e-06 + syst_JES_EtaIntercalibration_Stat79: 1.60530006e-03 + syst_JES_EtaIntercalibration_Stat8: 8.43931850e-07 + syst_JES_EtaIntercalibration_Stat80: 1.33414135e-03 + syst_JES_EtaIntercalibration_Stat81: 4.84859369e-04 + syst_JES_EtaIntercalibration_Stat82: 8.44587994e-06 syst_JES_EtaIntercalibration_Stat83: 0.0 syst_JES_EtaIntercalibration_Stat84: 0.0 syst_JES_EtaIntercalibration_Stat85: 0.0 @@ -26243,118 +26243,118 @@ bins: syst_JES_EtaIntercalibration_Stat89: 0.0 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 8.834325144005058e-08 - syst_JES_EtaIntercalibration_Stat92: 0.0004497393919538292 - syst_JES_EtaIntercalibration_Stat93: 0.001379992865017787 - syst_JES_EtaIntercalibration_Stat94: 0.003864781373829573 - syst_JES_EtaIntercalibration_Stat95: 0.003104810622244133 - syst_JES_EtaIntercalibration_Stat96: 4.170690047222402e-05 - syst_JES_EtaIntercalibration_Stat97: 7.11006856507024e-07 + syst_JES_EtaIntercalibration_Stat91: 8.83432514e-08 + syst_JES_EtaIntercalibration_Stat92: 4.49739392e-04 + syst_JES_EtaIntercalibration_Stat93: 1.37999287e-03 + syst_JES_EtaIntercalibration_Stat94: 3.86478137e-03 + syst_JES_EtaIntercalibration_Stat95: 3.10481062e-03 + syst_JES_EtaIntercalibration_Stat96: 4.17069005e-05 + syst_JES_EtaIntercalibration_Stat97: 7.11006857e-07 syst_JES_EtaIntercalibration_Stat98: 0.0 - syst_JES_EtaIntercalibration_Stat99: 0.001552370231660927 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.03599667588819835 - syst_JES_Flavour_Comp: 0.20803011200304636 - syst_JES_Gjet_Generator: 2.2465146338272537 - syst_JES_Gjet_OOC: 1.4325211167728036 - syst_JES_Gjet_Purity: 0.4352309846506795 - syst_JES_Gjet_Stat1: 2.5790236524700584e-06 - syst_JES_Gjet_Stat10: 0.17853786713187764 - syst_JES_Gjet_Stat11: 0.19975001251564414 - syst_JES_Gjet_Stat12: 0.033622983013855266 - syst_JES_Gjet_Stat13: 0.04032808411950659 - syst_JES_Gjet_Stat14: 0.007369470062358622 - syst_JES_Gjet_Stat15: 0.0019188472340183834 - syst_JES_Gjet_Stat2: 2.7037313106150174e-06 - syst_JES_Gjet_Stat3: 1.7545674680666964e-10 - syst_JES_Gjet_Stat4: 0.005155641764125976 - syst_JES_Gjet_Stat5: 0.005657977200378241 - syst_JES_Gjet_Stat6: 0.01619862885401107 - syst_JES_Gjet_Stat7: 0.04042956344063092 - syst_JES_Gjet_Stat8: 0.028723879873721794 - syst_JES_Gjet_Stat9: 0.0925460300337081 - syst_JES_Gjet_Veto: 0.5949714783079942 - syst_JES_Gjet_dPhi: 0.11505224584944006 - syst_JES_LArESZee: 2.541177827307644 - syst_JES_LArEsmear: 0.19905553873228446 - syst_JES_LAr_JVT: 0.30105519012300724 - syst_JES_MJB_Alpha: 2.2618608907018906e-07 - syst_JES_MJB_Asym: 0.012910841052677396 - syst_JES_MJB_Beta: 1.1195976420125223e-07 - syst_JES_MJB_Stat1: 1.9442270314960647e-06 - syst_JES_MJB_Stat10: 2.4110147241358773e-17 - syst_JES_MJB_Stat11: 8.148203341074645e-10 - syst_JES_MJB_Stat12: 3.2839683311505915e-12 - syst_JES_MJB_Stat13: 4.170778344625941e-15 - syst_JES_MJB_Stat14: 3.2579875690370588e-19 - syst_JES_MJB_Stat15: 7.475270898101287e-30 - syst_JES_MJB_Stat16: 2.7236498949020596e-37 + syst_JES_EtaIntercalibration_Stat99: 1.55237023e-03 + syst_JES_EtaIntercalibration_TotalStat_MJB: 3.59966759e-02 + syst_JES_Flavour_Comp: 2.08030112e-01 + syst_JES_Gjet_Generator: 2.24651463e+00 + syst_JES_Gjet_OOC: 1.43252112e+00 + syst_JES_Gjet_Purity: 4.35230985e-01 + syst_JES_Gjet_Stat1: 2.57902365e-06 + syst_JES_Gjet_Stat10: 1.78537867e-01 + syst_JES_Gjet_Stat11: 1.99750013e-01 + syst_JES_Gjet_Stat12: 3.36229830e-02 + syst_JES_Gjet_Stat13: 4.03280841e-02 + syst_JES_Gjet_Stat14: 7.36947006e-03 + syst_JES_Gjet_Stat15: 1.91884723e-03 + syst_JES_Gjet_Stat2: 2.70373131e-06 + syst_JES_Gjet_Stat3: 1.75456747e-10 + syst_JES_Gjet_Stat4: 5.15564176e-03 + syst_JES_Gjet_Stat5: 5.65797720e-03 + syst_JES_Gjet_Stat6: 1.61986289e-02 + syst_JES_Gjet_Stat7: 4.04295634e-02 + syst_JES_Gjet_Stat8: 2.87238799e-02 + syst_JES_Gjet_Stat9: 9.25460300e-02 + syst_JES_Gjet_Veto: 5.94971478e-01 + syst_JES_Gjet_dPhi: 1.15052246e-01 + syst_JES_LArESZee: 2.54117783e+00 + syst_JES_LArEsmear: 1.99055539e-01 + syst_JES_LAr_JVT: 3.01055190e-01 + syst_JES_MJB_Alpha: 2.26186089e-07 + syst_JES_MJB_Asym: 1.29108411e-02 + syst_JES_MJB_Beta: 1.11959764e-07 + syst_JES_MJB_Stat1: 1.94422703e-06 + syst_JES_MJB_Stat10: 2.41101472e-17 + syst_JES_MJB_Stat11: 8.14820334e-10 + syst_JES_MJB_Stat12: 3.28396833e-12 + syst_JES_MJB_Stat13: 4.17077834e-15 + syst_JES_MJB_Stat14: 3.25798757e-19 + syst_JES_MJB_Stat15: 7.47527090e-30 + syst_JES_MJB_Stat16: 2.72364989e-37 syst_JES_MJB_Stat2: 0.0 - syst_JES_MJB_Stat3: 2.9055152296967917e-07 - syst_JES_MJB_Stat4: 0.0004472155185142841 - syst_JES_MJB_Stat5: 7.647870340820377e-28 - syst_JES_MJB_Stat6: 5.335578399107944e-22 - syst_JES_MJB_Stat7: 5.653413835904813e-28 - syst_JES_MJB_Stat8: 5.314797903025099e-28 - syst_JES_MJB_Stat9: 4.441844296010386e-43 - syst_JES_MJB_Threshold: 0.01662831229883237 - syst_JES_Pileup_MuOffset: 0.0020271888787185073 - syst_JES_Pileup_NPVOffset: 0.0911043427889143 - syst_JES_Pileup_Pt_term: 0.4509905181930104 - syst_JES_PunchThrough_MC15: 0.0002674286446885852 + syst_JES_MJB_Stat3: 2.90551523e-07 + syst_JES_MJB_Stat4: 4.47215519e-04 + syst_JES_MJB_Stat5: 7.64787034e-28 + syst_JES_MJB_Stat6: 5.33557840e-22 + syst_JES_MJB_Stat7: 5.65341384e-28 + syst_JES_MJB_Stat8: 5.31479790e-28 + syst_JES_MJB_Stat9: 4.44184430e-43 + syst_JES_MJB_Threshold: 1.66283123e-02 + syst_JES_Pileup_MuOffset: 2.02718888e-03 + syst_JES_Pileup_NPVOffset: 9.11043428e-02 + syst_JES_Pileup_Pt_term: 4.50990518e-01 + syst_JES_PunchThrough_MC15: 2.67428645e-04 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 2.1041684224415116 - syst_JES_Zjet_MuScale: 0.13201593653798016 - syst_JES_Zjet_MuSmearID: 0.022527922673872974 - syst_JES_Zjet_MuSmearMS: 0.2527405191100153 - syst_JES_Zjet_OOC: 0.7104682030182632 - syst_JES_Zjet_Stat1: 0.009927656017409145 - syst_JES_Zjet_Stat10: 0.1816161542925078 - syst_JES_Zjet_Stat11: 0.3432377601605045 - syst_JES_Zjet_Stat12: 0.4480504770670376 - syst_JES_Zjet_Stat13: 0.03176219608276481 - syst_JES_Zjet_Stat2: 0.0002286307065990918 - syst_JES_Zjet_Stat3: 5.998957901722414e-06 - syst_JES_Zjet_Stat4: 9.171209025233697e-08 - syst_JES_Zjet_Stat5: 0.005902310382753583 - syst_JES_Zjet_Stat6: 0.009744520036923316 - syst_JES_Zjet_Stat7: 0.011000198941382832 - syst_JES_Zjet_Stat8: 0.01664724333786228 - syst_JES_Zjet_Stat9: 0.06351213801313886 - syst_JES_Zjet_Veto: 0.13265988118116193 - syst_JES_Zjet_dPhi: 0.12343687617563885 + syst_JES_Zjet_MC: 2.10416842e+00 + syst_JES_Zjet_MuScale: 1.32015937e-01 + syst_JES_Zjet_MuSmearID: 2.25279227e-02 + syst_JES_Zjet_MuSmearMS: 2.52740519e-01 + syst_JES_Zjet_OOC: 7.10468203e-01 + syst_JES_Zjet_Stat1: 9.92765602e-03 + syst_JES_Zjet_Stat10: 1.81616154e-01 + syst_JES_Zjet_Stat11: 3.43237760e-01 + syst_JES_Zjet_Stat12: 4.48050477e-01 + syst_JES_Zjet_Stat13: 3.17621961e-02 + syst_JES_Zjet_Stat2: 2.28630707e-04 + syst_JES_Zjet_Stat3: 5.99895790e-06 + syst_JES_Zjet_Stat4: 9.17120903e-08 + syst_JES_Zjet_Stat5: 5.90231038e-03 + syst_JES_Zjet_Stat6: 9.74452004e-03 + syst_JES_Zjet_Stat7: 1.10001989e-02 + syst_JES_Zjet_Stat8: 1.66472433e-02 + syst_JES_Zjet_Stat9: 6.35121380e-02 + syst_JES_Zjet_Veto: 1.32659881e-01 + syst_JES_Zjet_dPhi: 1.23436876e-01 syst_PRW: 0.0 syst_Unfolding_bias: 0.1253 - syst_cleaning: 0.6454487334405421 + syst_cleaning: 6.45448733e-01 syst_lumi: 2.563 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.5772305605215302 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 1.1206313979181557 - syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0021829292375842146 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 5.77230561e-01 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 1.12063140e+00 + syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 2.18292924e-03 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 2.445149075209935 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.018099582678061946 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.5125774356133911 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 2.44514908e+00 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.80995827e-02 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 5.12577436e-01 - stat: 0.4084 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.5750063217043793 - syst_JER_NP1: 0.043190156285894586 - syst_JER_NP2: 0.08619254260085382 - syst_JER_NP3: 0.1195699368570545 - syst_JER_NP4: 0.043771505285973435 - syst_JER_NP5: 0.06320627975130319 - syst_JER_NP6: 0.002099880710897645 - syst_JER_NP7: 6.17914565291999e-07 - syst_JER_NP8: 0.04878623166427183 - syst_JES_EtaIntercalibration_Modelling: 1.4506205568652335 + syst_JER_NP0: 5.75006322e-01 + syst_JER_NP1: 4.31901563e-02 + syst_JER_NP2: 8.61925426e-02 + syst_JER_NP3: 1.19569937e-01 + syst_JER_NP4: 4.37715053e-02 + syst_JER_NP5: 6.32062798e-02 + syst_JER_NP6: 2.09988071e-03 + syst_JER_NP7: 6.17914565e-07 + syst_JER_NP8: 4.87862317e-02 + syst_JES_EtaIntercalibration_Modelling: 1.45062056e+00 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 0.0002816464228425421 - syst_JES_EtaIntercalibration_Stat101: 0.0007933782641338242 - syst_JES_EtaIntercalibration_Stat102: 0.0002540282070951964 - syst_JES_EtaIntercalibration_Stat103: 0.00015100854088676572 + syst_JES_EtaIntercalibration_Stat100: 2.81646423e-04 + syst_JES_EtaIntercalibration_Stat101: 7.93378264e-04 + syst_JES_EtaIntercalibration_Stat102: 2.54028207e-04 + syst_JES_EtaIntercalibration_Stat103: 1.51008541e-04 syst_JES_EtaIntercalibration_Stat104: 0.0 syst_JES_EtaIntercalibration_Stat105: 0.0 syst_JES_EtaIntercalibration_Stat106: 0.0 @@ -26363,170 +26363,170 @@ bins: syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 syst_JES_EtaIntercalibration_Stat110: 0.0 - syst_JES_EtaIntercalibration_Stat111: 2.449985867306177e-09 - syst_JES_EtaIntercalibration_Stat112: 0.00030661064886921326 - syst_JES_EtaIntercalibration_Stat113: 0.0045439563158111455 - syst_JES_EtaIntercalibration_Stat114: 0.013435419113298996 - syst_JES_EtaIntercalibration_Stat115: 0.009370734016073662 - syst_JES_EtaIntercalibration_Stat116: 5.0476171279129323e-05 + syst_JES_EtaIntercalibration_Stat111: 2.44998587e-09 + syst_JES_EtaIntercalibration_Stat112: 3.06610649e-04 + syst_JES_EtaIntercalibration_Stat113: 4.54395632e-03 + syst_JES_EtaIntercalibration_Stat114: 1.34354191e-02 + syst_JES_EtaIntercalibration_Stat115: 9.37073402e-03 + syst_JES_EtaIntercalibration_Stat116: 5.04761713e-05 syst_JES_EtaIntercalibration_Stat117: 0.0 syst_JES_EtaIntercalibration_Stat118: 0.0 - syst_JES_EtaIntercalibration_Stat119: 0.0006443050029701055 + syst_JES_EtaIntercalibration_Stat119: 6.44305003e-04 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 0.008671460430631049 - syst_JES_EtaIntercalibration_Stat121: 0.014234519591471994 - syst_JES_EtaIntercalibration_Stat122: 0.001982141960102757 - syst_JES_EtaIntercalibration_Stat123: 0.00012672405770018574 + syst_JES_EtaIntercalibration_Stat120: 8.67146043e-03 + syst_JES_EtaIntercalibration_Stat121: 1.42345196e-02 + syst_JES_EtaIntercalibration_Stat122: 1.98214196e-03 + syst_JES_EtaIntercalibration_Stat123: 1.26724058e-04 syst_JES_EtaIntercalibration_Stat124: 0.0 syst_JES_EtaIntercalibration_Stat125: 0.0 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 syst_JES_EtaIntercalibration_Stat128: 0.0 syst_JES_EtaIntercalibration_Stat129: 0.0 - syst_JES_EtaIntercalibration_Stat13: 0.0007569564884280943 + syst_JES_EtaIntercalibration_Stat13: 7.56956488e-04 syst_JES_EtaIntercalibration_Stat130: 0.0 - syst_JES_EtaIntercalibration_Stat131: 0.0010904543640152943 - syst_JES_EtaIntercalibration_Stat132: 0.03716226311730759 - syst_JES_EtaIntercalibration_Stat133: 0.0969538254789361 - syst_JES_EtaIntercalibration_Stat134: 0.07378803358268873 - syst_JES_EtaIntercalibration_Stat135: 0.001026276253013778 + syst_JES_EtaIntercalibration_Stat131: 1.09045436e-03 + syst_JES_EtaIntercalibration_Stat132: 3.71622631e-02 + syst_JES_EtaIntercalibration_Stat133: 9.69538255e-02 + syst_JES_EtaIntercalibration_Stat134: 7.37880336e-02 + syst_JES_EtaIntercalibration_Stat135: 1.02627625e-03 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 - syst_JES_EtaIntercalibration_Stat138: 0.0011628739324084103 - syst_JES_EtaIntercalibration_Stat139: 0.046319804619622484 - syst_JES_EtaIntercalibration_Stat14: 1.493790708231913e-07 - syst_JES_EtaIntercalibration_Stat140: 0.10445718584664244 - syst_JES_EtaIntercalibration_Stat141: 0.02860359592778502 - syst_JES_EtaIntercalibration_Stat142: 0.0009036183109449475 + syst_JES_EtaIntercalibration_Stat138: 1.16287393e-03 + syst_JES_EtaIntercalibration_Stat139: 4.63198046e-02 + syst_JES_EtaIntercalibration_Stat14: 1.49379071e-07 + syst_JES_EtaIntercalibration_Stat140: 1.04457186e-01 + syst_JES_EtaIntercalibration_Stat141: 2.86035959e-02 + syst_JES_EtaIntercalibration_Stat142: 9.03618311e-04 syst_JES_EtaIntercalibration_Stat143: 0.0 syst_JES_EtaIntercalibration_Stat144: 0.0 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 syst_JES_EtaIntercalibration_Stat147: 0.0 syst_JES_EtaIntercalibration_Stat148: 0.0 - syst_JES_EtaIntercalibration_Stat149: 0.0015482812244550408 - syst_JES_EtaIntercalibration_Stat15: 1.442494921020593e-07 - syst_JES_EtaIntercalibration_Stat150: 0.026110665924100825 - syst_JES_EtaIntercalibration_Stat151: 0.10494609854587258 - syst_JES_EtaIntercalibration_Stat152: 0.0696974504555224 - syst_JES_EtaIntercalibration_Stat153: 0.0014209932327425064 + syst_JES_EtaIntercalibration_Stat149: 1.54828122e-03 + syst_JES_EtaIntercalibration_Stat15: 1.44249492e-07 + syst_JES_EtaIntercalibration_Stat150: 2.61106659e-02 + syst_JES_EtaIntercalibration_Stat151: 1.04946099e-01 + syst_JES_EtaIntercalibration_Stat152: 6.96974505e-02 + syst_JES_EtaIntercalibration_Stat153: 1.42099323e-03 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 0.0023304745156498843 - syst_JES_EtaIntercalibration_Stat157: 0.06074358628694884 - syst_JES_EtaIntercalibration_Stat158: 0.11956061809810119 - syst_JES_EtaIntercalibration_Stat159: 0.025996922894835073 + syst_JES_EtaIntercalibration_Stat156: 2.33047452e-03 + syst_JES_EtaIntercalibration_Stat157: 6.07435863e-02 + syst_JES_EtaIntercalibration_Stat158: 1.19560618e-01 + syst_JES_EtaIntercalibration_Stat159: 2.59969229e-02 syst_JES_EtaIntercalibration_Stat16: 0.0 - syst_JES_EtaIntercalibration_Stat160: 0.0015920420848708741 + syst_JES_EtaIntercalibration_Stat160: 1.59204208e-03 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 - syst_JES_EtaIntercalibration_Stat167: 0.0014140210288393876 - syst_JES_EtaIntercalibration_Stat168: 0.03118066548359736 - syst_JES_EtaIntercalibration_Stat169: 0.10037143866658484 + syst_JES_EtaIntercalibration_Stat167: 1.41402103e-03 + syst_JES_EtaIntercalibration_Stat168: 3.11806655e-02 + syst_JES_EtaIntercalibration_Stat169: 1.00371439e-01 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 0.07204051134604751 - syst_JES_EtaIntercalibration_Stat171: 0.0017381475052480441 + syst_JES_EtaIntercalibration_Stat170: 7.20405113e-02 + syst_JES_EtaIntercalibration_Stat171: 1.73814751e-03 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 - syst_JES_EtaIntercalibration_Stat174: 0.002312093462369547 - syst_JES_EtaIntercalibration_Stat175: 0.06526657414021361 - syst_JES_EtaIntercalibration_Stat176: 0.10204882066932473 - syst_JES_EtaIntercalibration_Stat177: 0.032656426626316605 - syst_JES_EtaIntercalibration_Stat178: 0.0019694938149369752 + syst_JES_EtaIntercalibration_Stat174: 2.31209346e-03 + syst_JES_EtaIntercalibration_Stat175: 6.52665741e-02 + syst_JES_EtaIntercalibration_Stat176: 1.02048821e-01 + syst_JES_EtaIntercalibration_Stat177: 3.26564266e-02 + syst_JES_EtaIntercalibration_Stat178: 1.96949381e-03 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 syst_JES_EtaIntercalibration_Stat180: 0.0 syst_JES_EtaIntercalibration_Stat181: 0.0 syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 - syst_JES_EtaIntercalibration_Stat184: 0.000891752566578869 - syst_JES_EtaIntercalibration_Stat185: 0.020220239241908095 - syst_JES_EtaIntercalibration_Stat186: 0.059667965232610365 - syst_JES_EtaIntercalibration_Stat187: 0.044700933715080264 - syst_JES_EtaIntercalibration_Stat188: 5.162377431959039e-05 + syst_JES_EtaIntercalibration_Stat184: 8.91752567e-04 + syst_JES_EtaIntercalibration_Stat185: 2.02202392e-02 + syst_JES_EtaIntercalibration_Stat186: 5.96679652e-02 + syst_JES_EtaIntercalibration_Stat187: 4.47009337e-02 + syst_JES_EtaIntercalibration_Stat188: 5.16237743e-05 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 - syst_JES_EtaIntercalibration_Stat191: 0.0007664518771586381 - syst_JES_EtaIntercalibration_Stat192: 0.03631368440409208 - syst_JES_EtaIntercalibration_Stat193: 0.061290564322740576 - syst_JES_EtaIntercalibration_Stat194: 0.014458623404390891 - syst_JES_EtaIntercalibration_Stat195: 0.0010929240595132037 - syst_JES_EtaIntercalibration_Stat196: 2.294087068677865e-05 + syst_JES_EtaIntercalibration_Stat191: 7.66451877e-04 + syst_JES_EtaIntercalibration_Stat192: 3.63136844e-02 + syst_JES_EtaIntercalibration_Stat193: 6.12905643e-02 + syst_JES_EtaIntercalibration_Stat194: 1.44586234e-02 + syst_JES_EtaIntercalibration_Stat195: 1.09292406e-03 + syst_JES_EtaIntercalibration_Stat196: 2.29408707e-05 syst_JES_EtaIntercalibration_Stat197: 0.0 syst_JES_EtaIntercalibration_Stat198: 0.0 - syst_JES_EtaIntercalibration_Stat199: 0.00019095860166887588 + syst_JES_EtaIntercalibration_Stat199: 1.90958602e-04 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 0.00605315295940884 - syst_JES_EtaIntercalibration_Stat201: 0.012552706600570254 - syst_JES_EtaIntercalibration_Stat202: 0.010469392568339389 - syst_JES_EtaIntercalibration_Stat203: 0.0005554705932810485 + syst_JES_EtaIntercalibration_Stat200: 6.05315296e-03 + syst_JES_EtaIntercalibration_Stat201: 1.25527066e-02 + syst_JES_EtaIntercalibration_Stat202: 1.04693926e-02 + syst_JES_EtaIntercalibration_Stat203: 5.55470593e-04 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 - syst_JES_EtaIntercalibration_Stat206: 0.00027706091387996246 - syst_JES_EtaIntercalibration_Stat207: 0.009401189326356531 - syst_JES_EtaIntercalibration_Stat208: 0.01954408030581127 - syst_JES_EtaIntercalibration_Stat209: 0.008739047202069571 + syst_JES_EtaIntercalibration_Stat206: 2.77060914e-04 + syst_JES_EtaIntercalibration_Stat207: 9.40118933e-03 + syst_JES_EtaIntercalibration_Stat208: 1.95440803e-02 + syst_JES_EtaIntercalibration_Stat209: 8.73904720e-03 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 8.069358338802411e-05 - syst_JES_EtaIntercalibration_Stat211: 9.722484675740045e-07 - syst_JES_EtaIntercalibration_Stat212: 2.8075742198559954e-05 - syst_JES_EtaIntercalibration_Stat213: 0.00024178912299770643 - syst_JES_EtaIntercalibration_Stat214: 0.0014768862786281145 - syst_JES_EtaIntercalibration_Stat215: 0.0013857962936521368 - syst_JES_EtaIntercalibration_Stat216: 6.53948688105573e-06 + syst_JES_EtaIntercalibration_Stat210: 8.06935834e-05 + syst_JES_EtaIntercalibration_Stat211: 9.72248468e-07 + syst_JES_EtaIntercalibration_Stat212: 2.80757422e-05 + syst_JES_EtaIntercalibration_Stat213: 2.41789123e-04 + syst_JES_EtaIntercalibration_Stat214: 1.47688628e-03 + syst_JES_EtaIntercalibration_Stat215: 1.38579629e-03 + syst_JES_EtaIntercalibration_Stat216: 6.53948688e-06 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 - syst_JES_EtaIntercalibration_Stat219: 9.05076265888682e-05 + syst_JES_EtaIntercalibration_Stat219: 9.05076266e-05 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 0.001742462266449406 - syst_JES_EtaIntercalibration_Stat221: 0.0022831246133314755 - syst_JES_EtaIntercalibration_Stat222: 0.0005608384861080772 - syst_JES_EtaIntercalibration_Stat223: 3.256255518229489e-05 - syst_JES_EtaIntercalibration_Stat224: 1.8939975580765673e-08 - syst_JES_EtaIntercalibration_Stat225: 2.440988324429267e-06 - syst_JES_EtaIntercalibration_Stat226: 1.226411551927003e-05 - syst_JES_EtaIntercalibration_Stat227: 7.670364849906098e-06 - syst_JES_EtaIntercalibration_Stat228: 8.029787543889316e-07 + syst_JES_EtaIntercalibration_Stat220: 1.74246227e-03 + syst_JES_EtaIntercalibration_Stat221: 2.28312461e-03 + syst_JES_EtaIntercalibration_Stat222: 5.60838486e-04 + syst_JES_EtaIntercalibration_Stat223: 3.25625552e-05 + syst_JES_EtaIntercalibration_Stat224: 1.89399756e-08 + syst_JES_EtaIntercalibration_Stat225: 2.44098832e-06 + syst_JES_EtaIntercalibration_Stat226: 1.22641155e-05 + syst_JES_EtaIntercalibration_Stat227: 7.67036485e-06 + syst_JES_EtaIntercalibration_Stat228: 8.02978754e-07 syst_JES_EtaIntercalibration_Stat229: 0.0 syst_JES_EtaIntercalibration_Stat23: 0.0 syst_JES_EtaIntercalibration_Stat230: 0.0 - syst_JES_EtaIntercalibration_Stat231: 5.6404234548480485e-06 - syst_JES_EtaIntercalibration_Stat232: 1.2398481630828834e-05 - syst_JES_EtaIntercalibration_Stat233: 1.285060499127862e-05 - syst_JES_EtaIntercalibration_Stat234: 4.890115082170868e-07 - syst_JES_EtaIntercalibration_Stat235: 1.5943527683671515e-14 - syst_JES_EtaIntercalibration_Stat236: 4.297326175156244e-12 - syst_JES_EtaIntercalibration_Stat237: 1.0230558965667517e-11 - syst_JES_EtaIntercalibration_Stat238: 9.021201402806613e-12 - syst_JES_EtaIntercalibration_Stat239: 2.2585942530698158e-23 + syst_JES_EtaIntercalibration_Stat231: 5.64042345e-06 + syst_JES_EtaIntercalibration_Stat232: 1.23984816e-05 + syst_JES_EtaIntercalibration_Stat233: 1.28506050e-05 + syst_JES_EtaIntercalibration_Stat234: 4.89011508e-07 + syst_JES_EtaIntercalibration_Stat235: 1.59435277e-14 + syst_JES_EtaIntercalibration_Stat236: 4.29732618e-12 + syst_JES_EtaIntercalibration_Stat237: 1.02305590e-11 + syst_JES_EtaIntercalibration_Stat238: 9.02120140e-12 + syst_JES_EtaIntercalibration_Stat239: 2.25859425e-23 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 - syst_JES_EtaIntercalibration_Stat243: 4.4050874361356325e-12 - syst_JES_EtaIntercalibration_Stat244: 7.313854865937661e-12 - syst_JES_EtaIntercalibration_Stat245: 6.859561702470501e-15 + syst_JES_EtaIntercalibration_Stat243: 4.40508744e-12 + syst_JES_EtaIntercalibration_Stat244: 7.31385487e-12 + syst_JES_EtaIntercalibration_Stat245: 6.85956170e-15 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 - syst_JES_EtaIntercalibration_Stat27: 1.573670190986663e-08 - syst_JES_EtaIntercalibration_Stat28: 7.794596263277528e-05 - syst_JES_EtaIntercalibration_Stat29: 7.841025698688917e-05 + syst_JES_EtaIntercalibration_Stat27: 1.57367019e-08 + syst_JES_EtaIntercalibration_Stat28: 7.79459626e-05 + syst_JES_EtaIntercalibration_Stat29: 7.84102570e-05 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 7.656618884990946e-05 - syst_JES_EtaIntercalibration_Stat31: 2.1685276110762344e-09 + syst_JES_EtaIntercalibration_Stat30: 7.65661888e-05 + syst_JES_EtaIntercalibration_Stat31: 2.16852761e-09 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 - syst_JES_EtaIntercalibration_Stat34: 1.0947427129239089e-10 - syst_JES_EtaIntercalibration_Stat35: 0.0007224531117657394 - syst_JES_EtaIntercalibration_Stat36: 0.00014418533628632283 - syst_JES_EtaIntercalibration_Stat37: 6.178221838037219e-06 - syst_JES_EtaIntercalibration_Stat38: 9.768743087639269e-08 + syst_JES_EtaIntercalibration_Stat34: 1.09474271e-10 + syst_JES_EtaIntercalibration_Stat35: 7.22453112e-04 + syst_JES_EtaIntercalibration_Stat36: 1.44185336e-04 + syst_JES_EtaIntercalibration_Stat37: 6.17822184e-06 + syst_JES_EtaIntercalibration_Stat38: 9.76874309e-08 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 syst_JES_EtaIntercalibration_Stat40: 0.0 @@ -26537,21 +26537,21 @@ bins: syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 syst_JES_EtaIntercalibration_Stat47: 0.0 - syst_JES_EtaIntercalibration_Stat48: 9.802541545436061e-09 - syst_JES_EtaIntercalibration_Stat49: 1.521739360074517e-07 - syst_JES_EtaIntercalibration_Stat5: 9.610283905795915e-09 - syst_JES_EtaIntercalibration_Stat50: 0.00012876163510533716 - syst_JES_EtaIntercalibration_Stat51: 0.00019872617014374329 - syst_JES_EtaIntercalibration_Stat52: 0.00017153641829069417 - syst_JES_EtaIntercalibration_Stat53: 1.026733335730364e-07 - syst_JES_EtaIntercalibration_Stat54: 7.736204932006391e-08 + syst_JES_EtaIntercalibration_Stat48: 9.80254155e-09 + syst_JES_EtaIntercalibration_Stat49: 1.52173936e-07 + syst_JES_EtaIntercalibration_Stat5: 9.61028391e-09 + syst_JES_EtaIntercalibration_Stat50: 1.28761635e-04 + syst_JES_EtaIntercalibration_Stat51: 1.98726170e-04 + syst_JES_EtaIntercalibration_Stat52: 1.71536418e-04 + syst_JES_EtaIntercalibration_Stat53: 1.02673334e-07 + syst_JES_EtaIntercalibration_Stat54: 7.73620493e-08 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 1.2597175506834856e-09 - syst_JES_EtaIntercalibration_Stat57: 0.00020136016705148016 - syst_JES_EtaIntercalibration_Stat58: 0.0001878153952023103 - syst_JES_EtaIntercalibration_Stat59: 4.766716558596703e-05 - syst_JES_EtaIntercalibration_Stat6: 1.7508457242144436e-08 - syst_JES_EtaIntercalibration_Stat60: 8.07522697823411e-07 + syst_JES_EtaIntercalibration_Stat56: 1.25971755e-09 + syst_JES_EtaIntercalibration_Stat57: 2.01360167e-04 + syst_JES_EtaIntercalibration_Stat58: 1.87815395e-04 + syst_JES_EtaIntercalibration_Stat59: 4.76671656e-05 + syst_JES_EtaIntercalibration_Stat6: 1.75084572e-08 + syst_JES_EtaIntercalibration_Stat60: 8.07522698e-07 syst_JES_EtaIntercalibration_Stat61: 0.0 syst_JES_EtaIntercalibration_Stat62: 0.0 syst_JES_EtaIntercalibration_Stat63: 0.0 @@ -26561,21 +26561,21 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 5.294683630775308e-07 - syst_JES_EtaIntercalibration_Stat70: 9.610283905795915e-09 - syst_JES_EtaIntercalibration_Stat71: 1.1969144111004763e-06 - syst_JES_EtaIntercalibration_Stat72: 0.000207923225013465 - syst_JES_EtaIntercalibration_Stat73: 0.0005455796733750259 - syst_JES_EtaIntercalibration_Stat74: 0.0002799821120625388 - syst_JES_EtaIntercalibration_Stat75: 2.980267308480902e-06 - syst_JES_EtaIntercalibration_Stat76: 7.736204932006391e-08 + syst_JES_EtaIntercalibration_Stat7: 5.29468363e-07 + syst_JES_EtaIntercalibration_Stat70: 9.61028391e-09 + syst_JES_EtaIntercalibration_Stat71: 1.19691441e-06 + syst_JES_EtaIntercalibration_Stat72: 2.07923225e-04 + syst_JES_EtaIntercalibration_Stat73: 5.45579673e-04 + syst_JES_EtaIntercalibration_Stat74: 2.79982112e-04 + syst_JES_EtaIntercalibration_Stat75: 2.98026731e-06 + syst_JES_EtaIntercalibration_Stat76: 7.73620493e-08 syst_JES_EtaIntercalibration_Stat77: 0.0 - syst_JES_EtaIntercalibration_Stat78: 1.1628205826781706e-06 - syst_JES_EtaIntercalibration_Stat79: 0.0005717202200377384 - syst_JES_EtaIntercalibration_Stat8: 9.166249838810853e-08 - syst_JES_EtaIntercalibration_Stat80: 0.0006770945631889241 - syst_JES_EtaIntercalibration_Stat81: 0.00019191712456161905 - syst_JES_EtaIntercalibration_Stat82: 1.0883249181655263e-06 + syst_JES_EtaIntercalibration_Stat78: 1.16282058e-06 + syst_JES_EtaIntercalibration_Stat79: 5.71720220e-04 + syst_JES_EtaIntercalibration_Stat8: 9.16624984e-08 + syst_JES_EtaIntercalibration_Stat80: 6.77094563e-04 + syst_JES_EtaIntercalibration_Stat81: 1.91917125e-04 + syst_JES_EtaIntercalibration_Stat82: 1.08832492e-06 syst_JES_EtaIntercalibration_Stat83: 0.0 syst_JES_EtaIntercalibration_Stat84: 0.0 syst_JES_EtaIntercalibration_Stat85: 0.0 @@ -26585,118 +26585,118 @@ bins: syst_JES_EtaIntercalibration_Stat89: 0.0 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 8.30171952067763e-09 - syst_JES_EtaIntercalibration_Stat92: 0.00010300918458079356 - syst_JES_EtaIntercalibration_Stat93: 0.00034874232274703914 - syst_JES_EtaIntercalibration_Stat94: 0.0016135841584187668 - syst_JES_EtaIntercalibration_Stat95: 0.001365014727942523 - syst_JES_EtaIntercalibration_Stat96: 6.975242366219255e-06 - syst_JES_EtaIntercalibration_Stat97: 7.736204932006391e-08 + syst_JES_EtaIntercalibration_Stat91: 8.30171952e-09 + syst_JES_EtaIntercalibration_Stat92: 1.03009185e-04 + syst_JES_EtaIntercalibration_Stat93: 3.48742323e-04 + syst_JES_EtaIntercalibration_Stat94: 1.61358416e-03 + syst_JES_EtaIntercalibration_Stat95: 1.36501473e-03 + syst_JES_EtaIntercalibration_Stat96: 6.97524237e-06 + syst_JES_EtaIntercalibration_Stat97: 7.73620493e-08 syst_JES_EtaIntercalibration_Stat98: 0.0 - syst_JES_EtaIntercalibration_Stat99: 0.0007542785971661979 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.02740918720032938 - syst_JES_Flavour_Comp: 0.18430629397825785 - syst_JES_Gjet_Generator: 1.3393684957844871 - syst_JES_Gjet_OOC: 0.893335384947893 - syst_JES_Gjet_Purity: 0.2672569175905462 - syst_JES_Gjet_Stat1: 3.912702774298094e-05 - syst_JES_Gjet_Stat10: 0.09673789472073495 - syst_JES_Gjet_Stat11: 0.13805783462013302 - syst_JES_Gjet_Stat12: 0.06850321653032068 - syst_JES_Gjet_Stat13: 0.024533428215396235 - syst_JES_Gjet_Stat14: 0.014456156845787195 - syst_JES_Gjet_Stat15: 0.0029656336169527077 - syst_JES_Gjet_Stat2: 4.1014963123231013e-05 - syst_JES_Gjet_Stat3: 5.1450569223057405e-08 - syst_JES_Gjet_Stat4: 0.003063864716334584 - syst_JES_Gjet_Stat5: 0.0033593089691185 - syst_JES_Gjet_Stat6: 0.008974439369676528 - syst_JES_Gjet_Stat7: 0.014867385471225262 - syst_JES_Gjet_Stat8: 0.012016025798907058 - syst_JES_Gjet_Stat9: 0.041350229443136106 - syst_JES_Gjet_Veto: 0.3720185004472224 - syst_JES_Gjet_dPhi: 0.06192353894118133 - syst_JES_LArESZee: 1.6181528821468012 - syst_JES_LArEsmear: 0.12105164187238436 - syst_JES_LAr_JVT: 0.17870911420517982 - syst_JES_MJB_Alpha: 1.3047170485109024e-05 - syst_JES_MJB_Asym: 0.004732221756215573 - syst_JES_MJB_Beta: 6.478736045711384e-06 - syst_JES_MJB_Stat1: 2.949682525289798e-05 - syst_JES_MJB_Stat10: 4.704249993357071e-13 - syst_JES_MJB_Stat11: 4.670148002740384e-08 - syst_JES_MJB_Stat12: 9.69861849698193e-10 - syst_JES_MJB_Stat13: 8.426427179309871e-12 - syst_JES_MJB_Stat14: 6.3574924891831174e-15 - syst_JES_MJB_Stat15: 4.337535821177734e-23 - syst_JES_MJB_Stat16: 5.273227767966557e-29 + syst_JES_EtaIntercalibration_Stat99: 7.54278597e-04 + syst_JES_EtaIntercalibration_TotalStat_MJB: 2.74091872e-02 + syst_JES_Flavour_Comp: 1.84306294e-01 + syst_JES_Gjet_Generator: 1.33936850e+00 + syst_JES_Gjet_OOC: 8.93335385e-01 + syst_JES_Gjet_Purity: 2.67256918e-01 + syst_JES_Gjet_Stat1: 3.91270277e-05 + syst_JES_Gjet_Stat10: 9.67378947e-02 + syst_JES_Gjet_Stat11: 1.38057835e-01 + syst_JES_Gjet_Stat12: 6.85032165e-02 + syst_JES_Gjet_Stat13: 2.45334282e-02 + syst_JES_Gjet_Stat14: 1.44561568e-02 + syst_JES_Gjet_Stat15: 2.96563362e-03 + syst_JES_Gjet_Stat2: 4.10149631e-05 + syst_JES_Gjet_Stat3: 5.14505692e-08 + syst_JES_Gjet_Stat4: 3.06386472e-03 + syst_JES_Gjet_Stat5: 3.35930897e-03 + syst_JES_Gjet_Stat6: 8.97443937e-03 + syst_JES_Gjet_Stat7: 1.48673855e-02 + syst_JES_Gjet_Stat8: 1.20160258e-02 + syst_JES_Gjet_Stat9: 4.13502294e-02 + syst_JES_Gjet_Veto: 3.72018500e-01 + syst_JES_Gjet_dPhi: 6.19235389e-02 + syst_JES_LArESZee: 1.61815288e+00 + syst_JES_LArEsmear: 1.21051642e-01 + syst_JES_LAr_JVT: 1.78709114e-01 + syst_JES_MJB_Alpha: 1.30471705e-05 + syst_JES_MJB_Asym: 4.73222176e-03 + syst_JES_MJB_Beta: 6.47873605e-06 + syst_JES_MJB_Stat1: 2.94968253e-05 + syst_JES_MJB_Stat10: 4.70424999e-13 + syst_JES_MJB_Stat11: 4.67014800e-08 + syst_JES_MJB_Stat12: 9.69861850e-10 + syst_JES_MJB_Stat13: 8.42642718e-12 + syst_JES_MJB_Stat14: 6.35749249e-15 + syst_JES_MJB_Stat15: 4.33753582e-23 + syst_JES_MJB_Stat16: 5.27322777e-29 syst_JES_MJB_Stat2: 0.0 - syst_JES_MJB_Stat3: 1.6818213341493798e-05 - syst_JES_MJB_Stat4: 0.0011800462151966762 - syst_JES_MJB_Stat5: 4.437514168991464e-21 - syst_JES_MJB_Stat6: 1.460960984311172e-16 - syst_JES_MJB_Stat7: 3.280504229534462e-21 - syst_JES_MJB_Stat8: 3.0839164628752432e-21 - syst_JES_MJB_Stat9: 4.1283430998404186e-33 - syst_JES_MJB_Threshold: 0.008996964932687023 - syst_JES_Pileup_MuOffset: 0.010811316883247848 - syst_JES_Pileup_NPVOffset: 0.06533686000260495 - syst_JES_Pileup_Pt_term: 0.2668344945841898 - syst_JES_PunchThrough_MC15: 0.0013899707721084058 + syst_JES_MJB_Stat3: 1.68182133e-05 + syst_JES_MJB_Stat4: 1.18004622e-03 + syst_JES_MJB_Stat5: 4.43751417e-21 + syst_JES_MJB_Stat6: 1.46096098e-16 + syst_JES_MJB_Stat7: 3.28050423e-21 + syst_JES_MJB_Stat8: 3.08391646e-21 + syst_JES_MJB_Stat9: 4.12834310e-33 + syst_JES_MJB_Threshold: 8.99696493e-03 + syst_JES_Pileup_MuOffset: 1.08113169e-02 + syst_JES_Pileup_NPVOffset: 6.53368600e-02 + syst_JES_Pileup_Pt_term: 2.66834495e-01 + syst_JES_PunchThrough_MC15: 1.38997077e-03 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 1.270591012088469 - syst_JES_Zjet_MuScale: 0.0760841363228893 - syst_JES_Zjet_MuSmearID: 0.013447890615260076 - syst_JES_Zjet_MuSmearMS: 0.1673093168356144 - syst_JES_Zjet_OOC: 0.4299814996020177 - syst_JES_Zjet_Stat1: 0.005908016418392894 - syst_JES_Zjet_Stat10: 0.08046597712698206 - syst_JES_Zjet_Stat11: 0.15238001017193822 - syst_JES_Zjet_Stat12: 0.35560323395604826 - syst_JES_Zjet_Stat13: 0.0015551718023099571 - syst_JES_Zjet_Stat2: 0.0001360525909345353 - syst_JES_Zjet_Stat3: 9.101046762755985e-05 - syst_JES_Zjet_Stat4: 5.307003509788499e-06 - syst_JES_Zjet_Stat5: 0.0034780130341439206 - syst_JES_Zjet_Stat6: 0.005686391738176327 - syst_JES_Zjet_Stat7: 0.006369868503352325 - syst_JES_Zjet_Stat8: 0.009170534008442475 - syst_JES_Zjet_Stat9: 0.027915201503840165 - syst_JES_Zjet_Veto: 0.08202706992206901 - syst_JES_Zjet_dPhi: 0.07180097962423633 + syst_JES_Zjet_MC: 1.27059101e+00 + syst_JES_Zjet_MuScale: 7.60841363e-02 + syst_JES_Zjet_MuSmearID: 1.34478906e-02 + syst_JES_Zjet_MuSmearMS: 1.67309317e-01 + syst_JES_Zjet_OOC: 4.29981500e-01 + syst_JES_Zjet_Stat1: 5.90801642e-03 + syst_JES_Zjet_Stat10: 8.04659771e-02 + syst_JES_Zjet_Stat11: 1.52380010e-01 + syst_JES_Zjet_Stat12: 3.55603234e-01 + syst_JES_Zjet_Stat13: 1.55517180e-03 + syst_JES_Zjet_Stat2: 1.36052591e-04 + syst_JES_Zjet_Stat3: 9.10104676e-05 + syst_JES_Zjet_Stat4: 5.30700351e-06 + syst_JES_Zjet_Stat5: 3.47801303e-03 + syst_JES_Zjet_Stat6: 5.68639174e-03 + syst_JES_Zjet_Stat7: 6.36986850e-03 + syst_JES_Zjet_Stat8: 9.17053401e-03 + syst_JES_Zjet_Stat9: 2.79152015e-02 + syst_JES_Zjet_Veto: 8.20270699e-02 + syst_JES_Zjet_dPhi: 7.18009796e-02 syst_PRW: 0.0 syst_Unfolding_bias: 0.07449 - syst_cleaning: 0.37871290907493504 + syst_cleaning: 3.78712909e-01 syst_lumi: 1.524 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.3290619850423321 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 0.6533830633709447 - syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.00328073555319535 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 3.29061985e-01 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 6.53383063e-01 + syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 3.28073555e-03 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 1.425479809572903 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.027475008771609157 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.29869808753991045 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 1.42547981e+00 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 2.74750088e-02 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 2.98698088e-01 - stat: 0.27797 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.32567798129440684 - syst_JER_NP1: 0.01906033774622055 - syst_JER_NP2: 0.06553718181307464 - syst_JER_NP3: 0.06598411683882721 - syst_JER_NP4: 0.016994316697060814 - syst_JER_NP5: 0.03553797229724847 - syst_JER_NP6: 0.00027666540712564694 - syst_JER_NP7: 5.57463566074053e-08 - syst_JER_NP8: 0.030682136089262103 - syst_JES_EtaIntercalibration_Modelling: 0.9338433527631922 + syst_JER_NP0: 3.25677981e-01 + syst_JER_NP1: 1.90603377e-02 + syst_JER_NP2: 6.55371818e-02 + syst_JER_NP3: 6.59841168e-02 + syst_JER_NP4: 1.69943167e-02 + syst_JER_NP5: 3.55379723e-02 + syst_JER_NP6: 2.76665407e-04 + syst_JER_NP7: 5.57463566e-08 + syst_JER_NP8: 3.06821361e-02 + syst_JES_EtaIntercalibration_Modelling: 9.33843353e-01 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 0.00026941211011199923 - syst_JES_EtaIntercalibration_Stat101: 0.0006364197887401051 - syst_JES_EtaIntercalibration_Stat102: 7.85779884891437e-05 - syst_JES_EtaIntercalibration_Stat103: 2.5742250615476497e-05 + syst_JES_EtaIntercalibration_Stat100: 2.69412110e-04 + syst_JES_EtaIntercalibration_Stat101: 6.36419789e-04 + syst_JES_EtaIntercalibration_Stat102: 7.85779885e-05 + syst_JES_EtaIntercalibration_Stat103: 2.57422506e-05 syst_JES_EtaIntercalibration_Stat104: 0.0 syst_JES_EtaIntercalibration_Stat105: 0.0 syst_JES_EtaIntercalibration_Stat106: 0.0 @@ -26705,170 +26705,170 @@ bins: syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 syst_JES_EtaIntercalibration_Stat110: 0.0 - syst_JES_EtaIntercalibration_Stat111: 2.2031686272276122e-10 - syst_JES_EtaIntercalibration_Stat112: 8.598486770938244e-05 - syst_JES_EtaIntercalibration_Stat113: 0.0016410977446514269 - syst_JES_EtaIntercalibration_Stat114: 0.004582829693540881 - syst_JES_EtaIntercalibration_Stat115: 0.0034547179334932687 - syst_JES_EtaIntercalibration_Stat116: 1.8536134980086868e-05 + syst_JES_EtaIntercalibration_Stat111: 2.20316863e-10 + syst_JES_EtaIntercalibration_Stat112: 8.59848677e-05 + syst_JES_EtaIntercalibration_Stat113: 1.64109774e-03 + syst_JES_EtaIntercalibration_Stat114: 4.58282969e-03 + syst_JES_EtaIntercalibration_Stat115: 3.45471793e-03 + syst_JES_EtaIntercalibration_Stat116: 1.85361350e-05 syst_JES_EtaIntercalibration_Stat117: 0.0 syst_JES_EtaIntercalibration_Stat118: 0.0 - syst_JES_EtaIntercalibration_Stat119: 0.00017373095826548035 + syst_JES_EtaIntercalibration_Stat119: 1.73730958e-04 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 0.0023901739868679014 - syst_JES_EtaIntercalibration_Stat121: 0.0039636488240004306 - syst_JES_EtaIntercalibration_Stat122: 0.0006073128188997824 - syst_JES_EtaIntercalibration_Stat123: 4.3617492118988226e-05 + syst_JES_EtaIntercalibration_Stat120: 2.39017399e-03 + syst_JES_EtaIntercalibration_Stat121: 3.96364882e-03 + syst_JES_EtaIntercalibration_Stat122: 6.07312819e-04 + syst_JES_EtaIntercalibration_Stat123: 4.36174921e-05 syst_JES_EtaIntercalibration_Stat124: 0.0 syst_JES_EtaIntercalibration_Stat125: 0.0 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 syst_JES_EtaIntercalibration_Stat128: 0.0 syst_JES_EtaIntercalibration_Stat129: 0.0 - syst_JES_EtaIntercalibration_Stat13: 0.00019234072752901616 + syst_JES_EtaIntercalibration_Stat13: 1.92340728e-04 syst_JES_EtaIntercalibration_Stat130: 0.0 - syst_JES_EtaIntercalibration_Stat131: 0.00041075988119581495 - syst_JES_EtaIntercalibration_Stat132: 0.013201319025006555 - syst_JES_EtaIntercalibration_Stat133: 0.033298268723764006 - syst_JES_EtaIntercalibration_Stat134: 0.026370507674294028 - syst_JES_EtaIntercalibration_Stat135: 0.00023469987020661087 + syst_JES_EtaIntercalibration_Stat131: 4.10759881e-04 + syst_JES_EtaIntercalibration_Stat132: 1.32013190e-02 + syst_JES_EtaIntercalibration_Stat133: 3.32982687e-02 + syst_JES_EtaIntercalibration_Stat134: 2.63705077e-02 + syst_JES_EtaIntercalibration_Stat135: 2.34699870e-04 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 - syst_JES_EtaIntercalibration_Stat138: 0.00042782342712852924 - syst_JES_EtaIntercalibration_Stat139: 0.014530534634004352 - syst_JES_EtaIntercalibration_Stat14: 1.4445466659128737e-08 - syst_JES_EtaIntercalibration_Stat140: 0.03491133161310236 - syst_JES_EtaIntercalibration_Stat141: 0.009709184260276452 - syst_JES_EtaIntercalibration_Stat142: 4.680690974631844e-05 + syst_JES_EtaIntercalibration_Stat138: 4.27823427e-04 + syst_JES_EtaIntercalibration_Stat139: 1.45305346e-02 + syst_JES_EtaIntercalibration_Stat14: 1.44454667e-08 + syst_JES_EtaIntercalibration_Stat140: 3.49113316e-02 + syst_JES_EtaIntercalibration_Stat141: 9.70918426e-03 + syst_JES_EtaIntercalibration_Stat142: 4.68069097e-05 syst_JES_EtaIntercalibration_Stat143: 0.0 syst_JES_EtaIntercalibration_Stat144: 0.0 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 syst_JES_EtaIntercalibration_Stat147: 0.0 syst_JES_EtaIntercalibration_Stat148: 0.0 - syst_JES_EtaIntercalibration_Stat149: 0.0005886899587219065 - syst_JES_EtaIntercalibration_Stat15: 1.3931538168097305e-08 - syst_JES_EtaIntercalibration_Stat150: 0.011331076383115595 - syst_JES_EtaIntercalibration_Stat151: 0.043175005211348844 - syst_JES_EtaIntercalibration_Stat152: 0.028378151366852636 - syst_JES_EtaIntercalibration_Stat153: 0.00025087037987773684 + syst_JES_EtaIntercalibration_Stat149: 5.88689959e-04 + syst_JES_EtaIntercalibration_Stat15: 1.39315382e-08 + syst_JES_EtaIntercalibration_Stat150: 1.13310764e-02 + syst_JES_EtaIntercalibration_Stat151: 4.31750052e-02 + syst_JES_EtaIntercalibration_Stat152: 2.83781514e-02 + syst_JES_EtaIntercalibration_Stat153: 2.50870380e-04 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 0.0010445132533752526 - syst_JES_EtaIntercalibration_Stat157: 0.021430534571027386 - syst_JES_EtaIntercalibration_Stat158: 0.04614652180825766 - syst_JES_EtaIntercalibration_Stat159: 0.011719576912158561 + syst_JES_EtaIntercalibration_Stat156: 1.04451325e-03 + syst_JES_EtaIntercalibration_Stat157: 2.14305346e-02 + syst_JES_EtaIntercalibration_Stat158: 4.61465218e-02 + syst_JES_EtaIntercalibration_Stat159: 1.17195769e-02 syst_JES_EtaIntercalibration_Stat16: 0.0 - syst_JES_EtaIntercalibration_Stat160: 0.0005126240801015887 + syst_JES_EtaIntercalibration_Stat160: 5.12624080e-04 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 - syst_JES_EtaIntercalibration_Stat167: 0.000940284233623004 - syst_JES_EtaIntercalibration_Stat168: 0.015406230257593842 - syst_JES_EtaIntercalibration_Stat169: 0.05561151229736519 + syst_JES_EtaIntercalibration_Stat167: 9.40284234e-04 + syst_JES_EtaIntercalibration_Stat168: 1.54062303e-02 + syst_JES_EtaIntercalibration_Stat169: 5.56115123e-02 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 0.03927892819311647 - syst_JES_EtaIntercalibration_Stat171: 0.0007941142282442746 + syst_JES_EtaIntercalibration_Stat170: 3.92789282e-02 + syst_JES_EtaIntercalibration_Stat171: 7.94114228e-04 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 - syst_JES_EtaIntercalibration_Stat174: 0.0011763103448778674 - syst_JES_EtaIntercalibration_Stat175: 0.0349204123686992 - syst_JES_EtaIntercalibration_Stat176: 0.05549747269020455 - syst_JES_EtaIntercalibration_Stat177: 0.019964691332449894 - syst_JES_EtaIntercalibration_Stat178: 0.0010583644303830322 + syst_JES_EtaIntercalibration_Stat174: 1.17631034e-03 + syst_JES_EtaIntercalibration_Stat175: 3.49204124e-02 + syst_JES_EtaIntercalibration_Stat176: 5.54974727e-02 + syst_JES_EtaIntercalibration_Stat177: 1.99646913e-02 + syst_JES_EtaIntercalibration_Stat178: 1.05836443e-03 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 syst_JES_EtaIntercalibration_Stat180: 0.0 syst_JES_EtaIntercalibration_Stat181: 0.0 syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 - syst_JES_EtaIntercalibration_Stat184: 0.0008620248299788122 - syst_JES_EtaIntercalibration_Stat185: 0.021775607339406172 - syst_JES_EtaIntercalibration_Stat186: 0.06823695241582818 - syst_JES_EtaIntercalibration_Stat187: 0.04788686119385985 - syst_JES_EtaIntercalibration_Stat188: 3.0631318531855594e-05 + syst_JES_EtaIntercalibration_Stat184: 8.62024830e-04 + syst_JES_EtaIntercalibration_Stat185: 2.17756073e-02 + syst_JES_EtaIntercalibration_Stat186: 6.82369524e-02 + syst_JES_EtaIntercalibration_Stat187: 4.78868612e-02 + syst_JES_EtaIntercalibration_Stat188: 3.06313185e-05 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 - syst_JES_EtaIntercalibration_Stat191: 0.0003771700554126746 - syst_JES_EtaIntercalibration_Stat192: 0.04167882435961936 - syst_JES_EtaIntercalibration_Stat193: 0.07500207913784791 - syst_JES_EtaIntercalibration_Stat194: 0.01976287428488073 - syst_JES_EtaIntercalibration_Stat195: 0.0008859439012669018 - syst_JES_EtaIntercalibration_Stat196: 3.7289532804126145e-06 + syst_JES_EtaIntercalibration_Stat191: 3.77170055e-04 + syst_JES_EtaIntercalibration_Stat192: 4.16788244e-02 + syst_JES_EtaIntercalibration_Stat193: 7.50020791e-02 + syst_JES_EtaIntercalibration_Stat194: 1.97628743e-02 + syst_JES_EtaIntercalibration_Stat195: 8.85943901e-04 + syst_JES_EtaIntercalibration_Stat196: 3.72895328e-06 syst_JES_EtaIntercalibration_Stat197: 0.0 syst_JES_EtaIntercalibration_Stat198: 0.0 - syst_JES_EtaIntercalibration_Stat199: 7.921552950609031e-05 + syst_JES_EtaIntercalibration_Stat199: 7.92155295e-05 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 0.002363400674875083 - syst_JES_EtaIntercalibration_Stat201: 0.006772409966178953 - syst_JES_EtaIntercalibration_Stat202: 0.0013238150427835455 - syst_JES_EtaIntercalibration_Stat203: 0.00027873314747263195 + syst_JES_EtaIntercalibration_Stat200: 2.36340067e-03 + syst_JES_EtaIntercalibration_Stat201: 6.77240997e-03 + syst_JES_EtaIntercalibration_Stat202: 1.32381504e-03 + syst_JES_EtaIntercalibration_Stat203: 2.78733147e-04 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 - syst_JES_EtaIntercalibration_Stat206: 0.00021979072563463637 - syst_JES_EtaIntercalibration_Stat207: 0.0019240951139431752 - syst_JES_EtaIntercalibration_Stat208: 0.003666866243470029 - syst_JES_EtaIntercalibration_Stat209: 0.002752962540609661 + syst_JES_EtaIntercalibration_Stat206: 2.19790726e-04 + syst_JES_EtaIntercalibration_Stat207: 1.92409511e-03 + syst_JES_EtaIntercalibration_Stat208: 3.66686624e-03 + syst_JES_EtaIntercalibration_Stat209: 2.75296254e-03 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 0.00027790596264743947 - syst_JES_EtaIntercalibration_Stat211: 4.410352079766421e-06 - syst_JES_EtaIntercalibration_Stat212: 4.38708228780815e-05 - syst_JES_EtaIntercalibration_Stat213: 0.0005946378288504693 - syst_JES_EtaIntercalibration_Stat214: 0.0025306011143599854 - syst_JES_EtaIntercalibration_Stat215: 0.0018842698851279241 - syst_JES_EtaIntercalibration_Stat216: 3.207199139436153e-05 + syst_JES_EtaIntercalibration_Stat210: 2.77905963e-04 + syst_JES_EtaIntercalibration_Stat211: 4.41035208e-06 + syst_JES_EtaIntercalibration_Stat212: 4.38708229e-05 + syst_JES_EtaIntercalibration_Stat213: 5.94637829e-04 + syst_JES_EtaIntercalibration_Stat214: 2.53060111e-03 + syst_JES_EtaIntercalibration_Stat215: 1.88426989e-03 + syst_JES_EtaIntercalibration_Stat216: 3.20719914e-05 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 - syst_JES_EtaIntercalibration_Stat219: 3.1479992058448805e-05 + syst_JES_EtaIntercalibration_Stat219: 3.14799921e-05 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 0.0021252850985220787 - syst_JES_EtaIntercalibration_Stat221: 0.0024443289467663714 - syst_JES_EtaIntercalibration_Stat222: 0.0008101880460732558 - syst_JES_EtaIntercalibration_Stat223: 5.465486323283592e-05 - syst_JES_EtaIntercalibration_Stat224: 8.761579010087146e-07 - syst_JES_EtaIntercalibration_Stat225: 8.275140534607253e-06 - syst_JES_EtaIntercalibration_Stat226: 4.65926075144974e-06 - syst_JES_EtaIntercalibration_Stat227: 3.140307747657863e-06 - syst_JES_EtaIntercalibration_Stat228: 3.760282303232033e-06 + syst_JES_EtaIntercalibration_Stat220: 2.12528510e-03 + syst_JES_EtaIntercalibration_Stat221: 2.44432895e-03 + syst_JES_EtaIntercalibration_Stat222: 8.10188046e-04 + syst_JES_EtaIntercalibration_Stat223: 5.46548632e-05 + syst_JES_EtaIntercalibration_Stat224: 8.76157901e-07 + syst_JES_EtaIntercalibration_Stat225: 8.27514053e-06 + syst_JES_EtaIntercalibration_Stat226: 4.65926075e-06 + syst_JES_EtaIntercalibration_Stat227: 3.14030775e-06 + syst_JES_EtaIntercalibration_Stat228: 3.76028230e-06 syst_JES_EtaIntercalibration_Stat229: 0.0 syst_JES_EtaIntercalibration_Stat23: 0.0 syst_JES_EtaIntercalibration_Stat230: 0.0 - syst_JES_EtaIntercalibration_Stat231: 1.8429020592532853e-05 - syst_JES_EtaIntercalibration_Stat232: 4.1073035826439706e-05 - syst_JES_EtaIntercalibration_Stat233: 2.3700270436220764e-05 - syst_JES_EtaIntercalibration_Stat234: 4.026052671895265e-06 - syst_JES_EtaIntercalibration_Stat235: 2.2386756687827738e-11 - syst_JES_EtaIntercalibration_Stat236: 9.49048914479649e-10 - syst_JES_EtaIntercalibration_Stat237: 2.2631740432410404e-09 - syst_JES_EtaIntercalibration_Stat238: 1.9981227608683105e-09 - syst_JES_EtaIntercalibration_Stat239: 3.2259446290970337e-18 + syst_JES_EtaIntercalibration_Stat231: 1.84290206e-05 + syst_JES_EtaIntercalibration_Stat232: 4.10730358e-05 + syst_JES_EtaIntercalibration_Stat233: 2.37002704e-05 + syst_JES_EtaIntercalibration_Stat234: 4.02605267e-06 + syst_JES_EtaIntercalibration_Stat235: 2.23867567e-11 + syst_JES_EtaIntercalibration_Stat236: 9.49048914e-10 + syst_JES_EtaIntercalibration_Stat237: 2.26317404e-09 + syst_JES_EtaIntercalibration_Stat238: 1.99812276e-09 + syst_JES_EtaIntercalibration_Stat239: 3.22594463e-18 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 - syst_JES_EtaIntercalibration_Stat243: 9.780720355372604e-10 - syst_JES_EtaIntercalibration_Stat244: 1.6259175870873653e-09 - syst_JES_EtaIntercalibration_Stat245: 9.273719480337974e-12 + syst_JES_EtaIntercalibration_Stat243: 9.78072036e-10 + syst_JES_EtaIntercalibration_Stat244: 1.62591759e-09 + syst_JES_EtaIntercalibration_Stat245: 9.27371948e-12 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 - syst_JES_EtaIntercalibration_Stat27: 1.4307966967742134e-09 - syst_JES_EtaIntercalibration_Stat28: 7.856963211623178e-05 - syst_JES_EtaIntercalibration_Stat29: 4.646964087444618e-05 + syst_JES_EtaIntercalibration_Stat27: 1.43079670e-09 + syst_JES_EtaIntercalibration_Stat28: 7.85696321e-05 + syst_JES_EtaIntercalibration_Stat29: 4.64696409e-05 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 4.63619108401498e-05 - syst_JES_EtaIntercalibration_Stat31: 1.9520212601301246e-10 + syst_JES_EtaIntercalibration_Stat30: 4.63619108e-05 + syst_JES_EtaIntercalibration_Stat31: 1.95202126e-10 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 - syst_JES_EtaIntercalibration_Stat34: 1.0140291452911991e-11 - syst_JES_EtaIntercalibration_Stat35: 0.0001872646984638322 - syst_JES_EtaIntercalibration_Stat36: 7.954629909681531e-06 - syst_JES_EtaIntercalibration_Stat37: 1.9484366027151104e-06 - syst_JES_EtaIntercalibration_Stat38: 9.603489479699554e-09 + syst_JES_EtaIntercalibration_Stat34: 1.01402915e-11 + syst_JES_EtaIntercalibration_Stat35: 1.87264698e-04 + syst_JES_EtaIntercalibration_Stat36: 7.95462991e-06 + syst_JES_EtaIntercalibration_Stat37: 1.94843660e-06 + syst_JES_EtaIntercalibration_Stat38: 9.60348948e-09 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 syst_JES_EtaIntercalibration_Stat40: 0.0 @@ -26879,21 +26879,21 @@ bins: syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 syst_JES_EtaIntercalibration_Stat47: 0.0 - syst_JES_EtaIntercalibration_Stat48: 8.912267430345659e-10 - syst_JES_EtaIntercalibration_Stat49: 1.4682019615843047e-08 - syst_JES_EtaIntercalibration_Stat5: 8.757248883068244e-10 - syst_JES_EtaIntercalibration_Stat50: 8.308268151666748e-05 - syst_JES_EtaIntercalibration_Stat51: 4.8604859538424754e-05 - syst_JES_EtaIntercalibration_Stat52: 6.284310363914246e-05 - syst_JES_EtaIntercalibration_Stat53: 1.0054998677647849e-08 - syst_JES_EtaIntercalibration_Stat54: 7.578588308517623e-09 + syst_JES_EtaIntercalibration_Stat48: 8.91226743e-10 + syst_JES_EtaIntercalibration_Stat49: 1.46820196e-08 + syst_JES_EtaIntercalibration_Stat5: 8.75724888e-10 + syst_JES_EtaIntercalibration_Stat50: 8.30826815e-05 + syst_JES_EtaIntercalibration_Stat51: 4.86048595e-05 + syst_JES_EtaIntercalibration_Stat52: 6.28431036e-05 + syst_JES_EtaIntercalibration_Stat53: 1.00549987e-08 + syst_JES_EtaIntercalibration_Stat54: 7.57858831e-09 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 1.1362523168293212e-10 - syst_JES_EtaIntercalibration_Stat57: 3.956089830880992e-05 - syst_JES_EtaIntercalibration_Stat58: 2.8309459108220346e-05 - syst_JES_EtaIntercalibration_Stat59: 1.0207317607971253e-05 - syst_JES_EtaIntercalibration_Stat6: 1.5917612886359563e-09 - syst_JES_EtaIntercalibration_Stat60: 8.917300712659633e-08 + syst_JES_EtaIntercalibration_Stat56: 1.13625232e-10 + syst_JES_EtaIntercalibration_Stat57: 3.95608983e-05 + syst_JES_EtaIntercalibration_Stat58: 2.83094591e-05 + syst_JES_EtaIntercalibration_Stat59: 1.02073176e-05 + syst_JES_EtaIntercalibration_Stat6: 1.59176129e-09 + syst_JES_EtaIntercalibration_Stat60: 8.91730071e-08 syst_JES_EtaIntercalibration_Stat61: 0.0 syst_JES_EtaIntercalibration_Stat62: 0.0 syst_JES_EtaIntercalibration_Stat63: 0.0 @@ -26903,21 +26903,21 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 5.7807965714077854e-08 - syst_JES_EtaIntercalibration_Stat70: 8.757248883068244e-10 - syst_JES_EtaIntercalibration_Stat71: 1.3017470213140492e-07 - syst_JES_EtaIntercalibration_Stat72: 9.053029769088357e-05 - syst_JES_EtaIntercalibration_Stat73: 0.00021030224035896525 - syst_JES_EtaIntercalibration_Stat74: 0.00018633520198824485 - syst_JES_EtaIntercalibration_Stat75: 4.440069392194226e-07 - syst_JES_EtaIntercalibration_Stat76: 7.578588308517623e-09 + syst_JES_EtaIntercalibration_Stat7: 5.78079657e-08 + syst_JES_EtaIntercalibration_Stat70: 8.75724888e-10 + syst_JES_EtaIntercalibration_Stat71: 1.30174702e-07 + syst_JES_EtaIntercalibration_Stat72: 9.05302977e-05 + syst_JES_EtaIntercalibration_Stat73: 2.10302240e-04 + syst_JES_EtaIntercalibration_Stat74: 1.86335202e-04 + syst_JES_EtaIntercalibration_Stat75: 4.44006939e-07 + syst_JES_EtaIntercalibration_Stat76: 7.57858831e-09 syst_JES_EtaIntercalibration_Stat77: 0.0 - syst_JES_EtaIntercalibration_Stat78: 1.243557142836629e-07 - syst_JES_EtaIntercalibration_Stat79: 0.00031989495963519025 - syst_JES_EtaIntercalibration_Stat8: 8.979955900086592e-09 - syst_JES_EtaIntercalibration_Stat80: 0.00062755531031137 - syst_JES_EtaIntercalibration_Stat81: 6.814446914460483e-05 - syst_JES_EtaIntercalibration_Stat82: 1.1946894617430925e-07 + syst_JES_EtaIntercalibration_Stat78: 1.24355714e-07 + syst_JES_EtaIntercalibration_Stat79: 3.19894960e-04 + syst_JES_EtaIntercalibration_Stat8: 8.97995590e-09 + syst_JES_EtaIntercalibration_Stat80: 6.27555310e-04 + syst_JES_EtaIntercalibration_Stat81: 6.81444691e-05 + syst_JES_EtaIntercalibration_Stat82: 1.19468946e-07 syst_JES_EtaIntercalibration_Stat83: 0.0 syst_JES_EtaIntercalibration_Stat84: 0.0 syst_JES_EtaIntercalibration_Stat85: 0.0 @@ -26927,118 +26927,118 @@ bins: syst_JES_EtaIntercalibration_Stat89: 0.0 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 7.564731902057072e-10 - syst_JES_EtaIntercalibration_Stat92: 1.0407423585474937e-05 - syst_JES_EtaIntercalibration_Stat93: 6.09707274025823e-05 - syst_JES_EtaIntercalibration_Stat94: 0.0006085540970817631 - syst_JES_EtaIntercalibration_Stat95: 0.0005401082391521166 - syst_JES_EtaIntercalibration_Stat96: 9.267414333566833e-07 - syst_JES_EtaIntercalibration_Stat97: 7.578588308517623e-09 + syst_JES_EtaIntercalibration_Stat91: 7.56473190e-10 + syst_JES_EtaIntercalibration_Stat92: 1.04074236e-05 + syst_JES_EtaIntercalibration_Stat93: 6.09707274e-05 + syst_JES_EtaIntercalibration_Stat94: 6.08554097e-04 + syst_JES_EtaIntercalibration_Stat95: 5.40108239e-04 + syst_JES_EtaIntercalibration_Stat96: 9.26741433e-07 + syst_JES_EtaIntercalibration_Stat97: 7.57858831e-09 syst_JES_EtaIntercalibration_Stat98: 0.0 - syst_JES_EtaIntercalibration_Stat99: 0.00017758131444700503 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.024461551463470177 - syst_JES_Flavour_Comp: 0.16246651193399825 - syst_JES_Gjet_Generator: 0.7978201348048318 - syst_JES_Gjet_OOC: 0.5516674541786927 - syst_JES_Gjet_Purity: 0.1732511688272261 - syst_JES_Gjet_Stat1: 0.00018316437290040878 - syst_JES_Gjet_Stat10: 0.049555781448787584 - syst_JES_Gjet_Stat11: 0.08314678270985594 - syst_JES_Gjet_Stat12: 0.07741641880118197 - syst_JES_Gjet_Stat13: 0.005230275901661403 - syst_JES_Gjet_Stat14: 0.017867445256667225 - syst_JES_Gjet_Stat15: 0.003473863087399963 - syst_JES_Gjet_Stat2: 0.00019208443455932827 - syst_JES_Gjet_Stat3: 2.4231388929006347e-06 - syst_JES_Gjet_Stat4: 0.001816063324887103 - syst_JES_Gjet_Stat5: 0.001991384631355781 - syst_JES_Gjet_Stat6: 0.005276224478734771 - syst_JES_Gjet_Stat7: 0.007634188496493914 - syst_JES_Gjet_Stat8: 0.005827871738465081 - syst_JES_Gjet_Stat9: 0.01972787558253549 - syst_JES_Gjet_Veto: 0.23977011907241486 - syst_JES_Gjet_dPhi: 0.03657544360633238 - syst_JES_LArESZee: 1.0144634493169284 - syst_JES_LArEsmear: 0.07633679257081738 - syst_JES_LAr_JVT: 0.11018550120138312 - syst_JES_MJB_Alpha: 0.00016888161821820635 - syst_JES_MJB_Asym: 0.013341978414013416 - syst_JES_MJB_Beta: 8.480120753839709e-05 - syst_JES_MJB_Stat1: 0.00013813105190361796 - syst_JES_MJB_Stat10: 6.515109112670332e-10 - syst_JES_MJB_Stat11: 5.959074119987097e-07 - syst_JES_MJB_Stat12: 4.708580120375993e-08 - syst_JES_MJB_Stat13: 1.865418789351266e-09 - syst_JES_MJB_Stat14: 8.804880284181585e-12 - syst_JES_MJB_Stat15: 6.196625613993474e-18 - syst_JES_MJB_Stat16: 1.3258787647341798e-22 + syst_JES_EtaIntercalibration_Stat99: 1.77581314e-04 + syst_JES_EtaIntercalibration_TotalStat_MJB: 2.44615515e-02 + syst_JES_Flavour_Comp: 1.62466512e-01 + syst_JES_Gjet_Generator: 7.97820135e-01 + syst_JES_Gjet_OOC: 5.51667454e-01 + syst_JES_Gjet_Purity: 1.73251169e-01 + syst_JES_Gjet_Stat1: 1.83164373e-04 + syst_JES_Gjet_Stat10: 4.95557814e-02 + syst_JES_Gjet_Stat11: 8.31467827e-02 + syst_JES_Gjet_Stat12: 7.74164188e-02 + syst_JES_Gjet_Stat13: 5.23027590e-03 + syst_JES_Gjet_Stat14: 1.78674453e-02 + syst_JES_Gjet_Stat15: 3.47386309e-03 + syst_JES_Gjet_Stat2: 1.92084435e-04 + syst_JES_Gjet_Stat3: 2.42313889e-06 + syst_JES_Gjet_Stat4: 1.81606332e-03 + syst_JES_Gjet_Stat5: 1.99138463e-03 + syst_JES_Gjet_Stat6: 5.27622448e-03 + syst_JES_Gjet_Stat7: 7.63418850e-03 + syst_JES_Gjet_Stat8: 5.82787174e-03 + syst_JES_Gjet_Stat9: 1.97278756e-02 + syst_JES_Gjet_Veto: 2.39770119e-01 + syst_JES_Gjet_dPhi: 3.65754436e-02 + syst_JES_LArESZee: 1.01446345e+00 + syst_JES_LArEsmear: 7.63367926e-02 + syst_JES_LAr_JVT: 1.10185501e-01 + syst_JES_MJB_Alpha: 1.68881618e-04 + syst_JES_MJB_Asym: 1.33419784e-02 + syst_JES_MJB_Beta: 8.48012075e-05 + syst_JES_MJB_Stat1: 1.38131052e-04 + syst_JES_MJB_Stat10: 6.51510911e-10 + syst_JES_MJB_Stat11: 5.95907412e-07 + syst_JES_MJB_Stat12: 4.70858012e-08 + syst_JES_MJB_Stat13: 1.86541879e-09 + syst_JES_MJB_Stat14: 8.80488028e-12 + syst_JES_MJB_Stat15: 6.19662561e-18 + syst_JES_MJB_Stat16: 1.32587876e-22 syst_JES_MJB_Stat2: 0.0 - syst_JES_MJB_Stat3: 0.00022005705510162586 - syst_JES_MJB_Stat4: 0.001453190627550288 - syst_JES_MJB_Stat5: 6.339305955702091e-16 - syst_JES_MJB_Stat6: 1.729978013704876e-12 - syst_JES_MJB_Stat7: 4.686063459214222e-16 - syst_JES_MJB_Stat8: 4.4054712282867387e-16 - syst_JES_MJB_Stat9: 2.763487063476069e-25 - syst_JES_MJB_Threshold: 0.01066906831686816 - syst_JES_Pileup_MuOffset: 0.024025175857837127 - syst_JES_Pileup_NPVOffset: 0.05188769290496543 - syst_JES_Pileup_Pt_term: 0.15821690807243075 - syst_JES_PunchThrough_MC15: 0.002956609391090595 + syst_JES_MJB_Stat3: 2.20057055e-04 + syst_JES_MJB_Stat4: 1.45319063e-03 + syst_JES_MJB_Stat5: 6.33930596e-16 + syst_JES_MJB_Stat6: 1.72997801e-12 + syst_JES_MJB_Stat7: 4.68606346e-16 + syst_JES_MJB_Stat8: 4.40547123e-16 + syst_JES_MJB_Stat9: 2.76348706e-25 + syst_JES_MJB_Threshold: 1.06690683e-02 + syst_JES_Pileup_MuOffset: 2.40251759e-02 + syst_JES_Pileup_NPVOffset: 5.18876929e-02 + syst_JES_Pileup_Pt_term: 1.58216908e-01 + syst_JES_PunchThrough_MC15: 2.95660939e-03 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.7592022309635292 - syst_JES_Zjet_MuScale: 0.04452594384176488 - syst_JES_Zjet_MuSmearID: 0.007910618607289824 - syst_JES_Zjet_MuSmearMS: 0.1160751811327469 - syst_JES_Zjet_OOC: 0.2633569203571457 - syst_JES_Zjet_Stat1: 0.003561076663033246 - syst_JES_Zjet_Stat10: 0.03762535149337479 - syst_JES_Zjet_Stat11: 0.06084040844701817 - syst_JES_Zjet_Stat12: 0.24427260898430675 - syst_JES_Zjet_Stat13: 0.03164790040429223 - syst_JES_Zjet_Stat2: 8.066160610848261e-05 - syst_JES_Zjet_Stat3: 0.00042613967087158297 - syst_JES_Zjet_Stat4: 6.946366964492187e-05 - syst_JES_Zjet_Stat5: 0.0019778165404051003 - syst_JES_Zjet_Stat6: 0.0033574423301078456 - syst_JES_Zjet_Stat7: 0.0037557551837147213 - syst_JES_Zjet_Stat8: 0.005333028032928385 - syst_JES_Zjet_Stat9: 0.013865034826858531 - syst_JES_Zjet_Veto: 0.05195505822342999 - syst_JES_Zjet_dPhi: 0.04323522955877533 + syst_JES_Zjet_MC: 7.59202231e-01 + syst_JES_Zjet_MuScale: 4.45259438e-02 + syst_JES_Zjet_MuSmearID: 7.91061861e-03 + syst_JES_Zjet_MuSmearMS: 1.16075181e-01 + syst_JES_Zjet_OOC: 2.63356920e-01 + syst_JES_Zjet_Stat1: 3.56107666e-03 + syst_JES_Zjet_Stat10: 3.76253515e-02 + syst_JES_Zjet_Stat11: 6.08404084e-02 + syst_JES_Zjet_Stat12: 2.44272609e-01 + syst_JES_Zjet_Stat13: 3.16479004e-02 + syst_JES_Zjet_Stat2: 8.06616061e-05 + syst_JES_Zjet_Stat3: 4.26139671e-04 + syst_JES_Zjet_Stat4: 6.94636696e-05 + syst_JES_Zjet_Stat5: 1.97781654e-03 + syst_JES_Zjet_Stat6: 3.35744233e-03 + syst_JES_Zjet_Stat7: 3.75575518e-03 + syst_JES_Zjet_Stat8: 5.33302803e-03 + syst_JES_Zjet_Stat9: 1.38650348e-02 + syst_JES_Zjet_Veto: 5.19550582e-02 + syst_JES_Zjet_dPhi: 4.32352296e-02 syst_PRW: 0.0 syst_Unfolding_bias: 0.04416 - syst_cleaning: 0.2239541694186558 + syst_cleaning: 2.23954169e-01 syst_lumi: 0.9036 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.1922052028432113 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 0.37318707105150356 - syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.004761010081904889 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.92205203e-01 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 3.73187071e-01 + syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 4.76101008e-03 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 0.8141858387370786 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.040305099863416786 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.1785550545350089 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 8.14185839e-01 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 4.03050999e-02 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.78555055e-01 - stat: 0.13861 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.2052871890791045 - syst_JER_NP1: 0.0053692085776211 - syst_JER_NP2: 0.05364322697228421 - syst_JER_NP3: 0.040269460823308775 - syst_JER_NP4: 0.0045638253691393585 - syst_JER_NP5: 0.021877684978077547 - syst_JER_NP6: 3.421432448551338e-05 - syst_JER_NP7: 5.711137277285498e-09 - syst_JER_NP8: 0.022640377094916064 - syst_JES_EtaIntercalibration_Modelling: 0.5931712316018031 + syst_JER_NP0: 2.05287189e-01 + syst_JER_NP1: 5.36920858e-03 + syst_JER_NP2: 5.36432270e-02 + syst_JER_NP3: 4.02694608e-02 + syst_JER_NP4: 4.56382537e-03 + syst_JER_NP5: 2.18776850e-02 + syst_JER_NP6: 3.42143245e-05 + syst_JER_NP7: 5.71113728e-09 + syst_JER_NP8: 2.26403771e-02 + syst_JES_EtaIntercalibration_Modelling: 5.93171232e-01 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 0.0001986000042170191 - syst_JES_EtaIntercalibration_Stat101: 0.00040978598935908 - syst_JES_EtaIntercalibration_Stat102: 8.978110910430992e-05 - syst_JES_EtaIntercalibration_Stat103: 3.7969633797944378e-06 + syst_JES_EtaIntercalibration_Stat100: 1.98600004e-04 + syst_JES_EtaIntercalibration_Stat101: 4.09785989e-04 + syst_JES_EtaIntercalibration_Stat102: 8.97811091e-05 + syst_JES_EtaIntercalibration_Stat103: 3.79696338e-06 syst_JES_EtaIntercalibration_Stat104: 0.0 syst_JES_EtaIntercalibration_Stat105: 0.0 syst_JES_EtaIntercalibration_Stat106: 0.0 @@ -27047,170 +27047,170 @@ bins: syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 syst_JES_EtaIntercalibration_Stat110: 0.0 - syst_JES_EtaIntercalibration_Stat111: 2.243005795801696e-11 - syst_JES_EtaIntercalibration_Stat112: 2.6455807845348437e-05 - syst_JES_EtaIntercalibration_Stat113: 0.0005126170575341793 - syst_JES_EtaIntercalibration_Stat114: 0.0013321503030814502 - syst_JES_EtaIntercalibration_Stat115: 0.000993506732488512 - syst_JES_EtaIntercalibration_Stat116: 1.4654328609663425e-05 + syst_JES_EtaIntercalibration_Stat111: 2.24300580e-11 + syst_JES_EtaIntercalibration_Stat112: 2.64558078e-05 + syst_JES_EtaIntercalibration_Stat113: 5.12617058e-04 + syst_JES_EtaIntercalibration_Stat114: 1.33215030e-03 + syst_JES_EtaIntercalibration_Stat115: 9.93506732e-04 + syst_JES_EtaIntercalibration_Stat116: 1.46543286e-05 syst_JES_EtaIntercalibration_Stat117: 0.0 syst_JES_EtaIntercalibration_Stat118: 0.0 - syst_JES_EtaIntercalibration_Stat119: 2.3252151982109457e-05 + syst_JES_EtaIntercalibration_Stat119: 2.32521520e-05 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 0.0008528722577707637 - syst_JES_EtaIntercalibration_Stat121: 0.0013261160846622742 - syst_JES_EtaIntercalibration_Stat122: 0.00034568004617420423 - syst_JES_EtaIntercalibration_Stat123: 1.1279985239352044e-05 + syst_JES_EtaIntercalibration_Stat120: 8.52872258e-04 + syst_JES_EtaIntercalibration_Stat121: 1.32611608e-03 + syst_JES_EtaIntercalibration_Stat122: 3.45680046e-04 + syst_JES_EtaIntercalibration_Stat123: 1.12799852e-05 syst_JES_EtaIntercalibration_Stat124: 0.0 syst_JES_EtaIntercalibration_Stat125: 0.0 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 syst_JES_EtaIntercalibration_Stat128: 0.0 syst_JES_EtaIntercalibration_Stat129: 0.0 - syst_JES_EtaIntercalibration_Stat13: 2.1096739185108738e-05 + syst_JES_EtaIntercalibration_Stat13: 2.10967392e-05 syst_JES_EtaIntercalibration_Stat130: 0.0 - syst_JES_EtaIntercalibration_Stat131: 0.00011537878834517201 - syst_JES_EtaIntercalibration_Stat132: 0.004558852487194557 - syst_JES_EtaIntercalibration_Stat133: 0.011592796588830497 - syst_JES_EtaIntercalibration_Stat134: 0.009559979131776388 - syst_JES_EtaIntercalibration_Stat135: 7.983653596568428e-05 + syst_JES_EtaIntercalibration_Stat131: 1.15378788e-04 + syst_JES_EtaIntercalibration_Stat132: 4.55885249e-03 + syst_JES_EtaIntercalibration_Stat133: 1.15927966e-02 + syst_JES_EtaIntercalibration_Stat134: 9.55997913e-03 + syst_JES_EtaIntercalibration_Stat135: 7.98365360e-05 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 - syst_JES_EtaIntercalibration_Stat138: 0.000198178174304715 - syst_JES_EtaIntercalibration_Stat139: 0.005204555792764643 - syst_JES_EtaIntercalibration_Stat14: 1.479926765079948e-09 - syst_JES_EtaIntercalibration_Stat140: 0.012312795813705351 - syst_JES_EtaIntercalibration_Stat141: 0.003449287752565738 - syst_JES_EtaIntercalibration_Stat142: 0.00012790958056377167 + syst_JES_EtaIntercalibration_Stat138: 1.98178174e-04 + syst_JES_EtaIntercalibration_Stat139: 5.20455579e-03 + syst_JES_EtaIntercalibration_Stat14: 1.47992677e-09 + syst_JES_EtaIntercalibration_Stat140: 1.23127958e-02 + syst_JES_EtaIntercalibration_Stat141: 3.44928775e-03 + syst_JES_EtaIntercalibration_Stat142: 1.27909581e-04 syst_JES_EtaIntercalibration_Stat143: 0.0 syst_JES_EtaIntercalibration_Stat144: 0.0 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 syst_JES_EtaIntercalibration_Stat147: 0.0 syst_JES_EtaIntercalibration_Stat148: 0.0 - syst_JES_EtaIntercalibration_Stat149: 0.00017235613217985604 - syst_JES_EtaIntercalibration_Stat15: 1.4269083685678867e-09 - syst_JES_EtaIntercalibration_Stat150: 0.00438208854314926 - syst_JES_EtaIntercalibration_Stat151: 0.01665290665319421 - syst_JES_EtaIntercalibration_Stat152: 0.011136244104275014 - syst_JES_EtaIntercalibration_Stat153: 7.519581570805652e-05 + syst_JES_EtaIntercalibration_Stat149: 1.72356132e-04 + syst_JES_EtaIntercalibration_Stat15: 1.42690837e-09 + syst_JES_EtaIntercalibration_Stat150: 4.38208854e-03 + syst_JES_EtaIntercalibration_Stat151: 1.66529067e-02 + syst_JES_EtaIntercalibration_Stat152: 1.11362441e-02 + syst_JES_EtaIntercalibration_Stat153: 7.51958157e-05 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 0.00040391424974072507 - syst_JES_EtaIntercalibration_Stat157: 0.008163862933685255 - syst_JES_EtaIntercalibration_Stat158: 0.017663598161190147 - syst_JES_EtaIntercalibration_Stat159: 0.004976220553793813 + syst_JES_EtaIntercalibration_Stat156: 4.03914250e-04 + syst_JES_EtaIntercalibration_Stat157: 8.16386293e-03 + syst_JES_EtaIntercalibration_Stat158: 1.76635982e-02 + syst_JES_EtaIntercalibration_Stat159: 4.97622055e-03 syst_JES_EtaIntercalibration_Stat16: 0.0 - syst_JES_EtaIntercalibration_Stat160: 0.00012705689857304088 + syst_JES_EtaIntercalibration_Stat160: 1.27056899e-04 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 - syst_JES_EtaIntercalibration_Stat167: 0.0004900782386517482 - syst_JES_EtaIntercalibration_Stat168: 0.00621030134131992 - syst_JES_EtaIntercalibration_Stat169: 0.027447378745519578 + syst_JES_EtaIntercalibration_Stat167: 4.90078239e-04 + syst_JES_EtaIntercalibration_Stat168: 6.21030134e-03 + syst_JES_EtaIntercalibration_Stat169: 2.74473787e-02 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 0.018267065308910462 - syst_JES_EtaIntercalibration_Stat171: 0.00039289965640096965 + syst_JES_EtaIntercalibration_Stat170: 1.82670653e-02 + syst_JES_EtaIntercalibration_Stat171: 3.92899656e-04 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 - syst_JES_EtaIntercalibration_Stat174: 0.0005198832978637452 - syst_JES_EtaIntercalibration_Stat175: 0.017055635432313865 - syst_JES_EtaIntercalibration_Stat176: 0.027670336102042566 - syst_JES_EtaIntercalibration_Stat177: 0.010902642558114064 - syst_JES_EtaIntercalibration_Stat178: 0.0004262157700918632 + syst_JES_EtaIntercalibration_Stat174: 5.19883298e-04 + syst_JES_EtaIntercalibration_Stat175: 1.70556354e-02 + syst_JES_EtaIntercalibration_Stat176: 2.76703361e-02 + syst_JES_EtaIntercalibration_Stat177: 1.09026426e-02 + syst_JES_EtaIntercalibration_Stat178: 4.26215770e-04 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 syst_JES_EtaIntercalibration_Stat180: 0.0 syst_JES_EtaIntercalibration_Stat181: 0.0 syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 - syst_JES_EtaIntercalibration_Stat184: 0.0005145771370747052 - syst_JES_EtaIntercalibration_Stat185: 0.017155013115704693 - syst_JES_EtaIntercalibration_Stat186: 0.051552514002713774 - syst_JES_EtaIntercalibration_Stat187: 0.03538025826644006 - syst_JES_EtaIntercalibration_Stat188: 1.874078973789525e-05 + syst_JES_EtaIntercalibration_Stat184: 5.14577137e-04 + syst_JES_EtaIntercalibration_Stat185: 1.71550131e-02 + syst_JES_EtaIntercalibration_Stat186: 5.15525140e-02 + syst_JES_EtaIntercalibration_Stat187: 3.53802583e-02 + syst_JES_EtaIntercalibration_Stat188: 1.87407897e-05 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 - syst_JES_EtaIntercalibration_Stat191: 0.00027849849317366154 - syst_JES_EtaIntercalibration_Stat192: 0.03463531579183305 - syst_JES_EtaIntercalibration_Stat193: 0.06001608346935011 - syst_JES_EtaIntercalibration_Stat194: 0.016626306715563744 - syst_JES_EtaIntercalibration_Stat195: 0.0006558287329886421 - syst_JES_EtaIntercalibration_Stat196: 6.759398993253764e-06 + syst_JES_EtaIntercalibration_Stat191: 2.78498493e-04 + syst_JES_EtaIntercalibration_Stat192: 3.46353158e-02 + syst_JES_EtaIntercalibration_Stat193: 6.00160835e-02 + syst_JES_EtaIntercalibration_Stat194: 1.66263067e-02 + syst_JES_EtaIntercalibration_Stat195: 6.55828733e-04 + syst_JES_EtaIntercalibration_Stat196: 6.75939899e-06 syst_JES_EtaIntercalibration_Stat197: 0.0 syst_JES_EtaIntercalibration_Stat198: 0.0 - syst_JES_EtaIntercalibration_Stat199: 3.621755889083636e-05 + syst_JES_EtaIntercalibration_Stat199: 3.62175589e-05 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 0.0012643899833516556 - syst_JES_EtaIntercalibration_Stat201: 0.010860910735292873 - syst_JES_EtaIntercalibration_Stat202: 0.008160463268099428 - syst_JES_EtaIntercalibration_Stat203: 0.00041798376762740443 + syst_JES_EtaIntercalibration_Stat200: 1.26438998e-03 + syst_JES_EtaIntercalibration_Stat201: 1.08609107e-02 + syst_JES_EtaIntercalibration_Stat202: 8.16046327e-03 + syst_JES_EtaIntercalibration_Stat203: 4.17983768e-04 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 - syst_JES_EtaIntercalibration_Stat206: 0.00027562486734690684 - syst_JES_EtaIntercalibration_Stat207: 0.008473966883933403 - syst_JES_EtaIntercalibration_Stat208: 0.014806835946616007 - syst_JES_EtaIntercalibration_Stat209: 0.002483920439547129 + syst_JES_EtaIntercalibration_Stat206: 2.75624867e-04 + syst_JES_EtaIntercalibration_Stat207: 8.47396688e-03 + syst_JES_EtaIntercalibration_Stat208: 1.48068359e-02 + syst_JES_EtaIntercalibration_Stat209: 2.48392044e-03 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 0.000300528088329527 - syst_JES_EtaIntercalibration_Stat211: 7.888775744689414e-06 - syst_JES_EtaIntercalibration_Stat212: 5.416420220034631e-05 - syst_JES_EtaIntercalibration_Stat213: 0.0007224093766694894 - syst_JES_EtaIntercalibration_Stat214: 0.002527621164257017 - syst_JES_EtaIntercalibration_Stat215: 0.0017675708613801033 - syst_JES_EtaIntercalibration_Stat216: 7.22852023238505e-05 + syst_JES_EtaIntercalibration_Stat210: 3.00528088e-04 + syst_JES_EtaIntercalibration_Stat211: 7.88877574e-06 + syst_JES_EtaIntercalibration_Stat212: 5.41642022e-05 + syst_JES_EtaIntercalibration_Stat213: 7.22409377e-04 + syst_JES_EtaIntercalibration_Stat214: 2.52762116e-03 + syst_JES_EtaIntercalibration_Stat215: 1.76757086e-03 + syst_JES_EtaIntercalibration_Stat216: 7.22852023e-05 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 - syst_JES_EtaIntercalibration_Stat219: 5.324357144294512e-05 + syst_JES_EtaIntercalibration_Stat219: 5.32435714e-05 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 0.001220928158205879 - syst_JES_EtaIntercalibration_Stat221: 0.0020902346758199185 - syst_JES_EtaIntercalibration_Stat222: 0.000928915582816867 - syst_JES_EtaIntercalibration_Stat223: 9.861431272893403e-05 - syst_JES_EtaIntercalibration_Stat224: 8.829128991481026e-06 - syst_JES_EtaIntercalibration_Stat225: 3.079048067179205e-05 - syst_JES_EtaIntercalibration_Stat226: 0.00011908557458819266 - syst_JES_EtaIntercalibration_Stat227: 7.696428767129595e-05 - syst_JES_EtaIntercalibration_Stat228: 7.441756294719681e-06 + syst_JES_EtaIntercalibration_Stat220: 1.22092816e-03 + syst_JES_EtaIntercalibration_Stat221: 2.09023468e-03 + syst_JES_EtaIntercalibration_Stat222: 9.28915583e-04 + syst_JES_EtaIntercalibration_Stat223: 9.86143127e-05 + syst_JES_EtaIntercalibration_Stat224: 8.82912899e-06 + syst_JES_EtaIntercalibration_Stat225: 3.07904807e-05 + syst_JES_EtaIntercalibration_Stat226: 1.19085575e-04 + syst_JES_EtaIntercalibration_Stat227: 7.69642877e-05 + syst_JES_EtaIntercalibration_Stat228: 7.44175629e-06 syst_JES_EtaIntercalibration_Stat229: 0.0 syst_JES_EtaIntercalibration_Stat23: 0.0 syst_JES_EtaIntercalibration_Stat230: 0.0 - syst_JES_EtaIntercalibration_Stat231: 1.0460720852312235e-05 - syst_JES_EtaIntercalibration_Stat232: 0.00014903167138229377 - syst_JES_EtaIntercalibration_Stat233: 0.00020098971783402255 - syst_JES_EtaIntercalibration_Stat234: 5.20953923106449e-06 - syst_JES_EtaIntercalibration_Stat235: 3.4079831689725233e-09 - syst_JES_EtaIntercalibration_Stat236: 3.235476782485079e-08 - syst_JES_EtaIntercalibration_Stat237: 7.74794534054029e-08 - syst_JES_EtaIntercalibration_Stat238: 6.889383789570734e-08 - syst_JES_EtaIntercalibration_Stat239: 1.7381129853953683e-14 + syst_JES_EtaIntercalibration_Stat231: 1.04607209e-05 + syst_JES_EtaIntercalibration_Stat232: 1.49031671e-04 + syst_JES_EtaIntercalibration_Stat233: 2.00989718e-04 + syst_JES_EtaIntercalibration_Stat234: 5.20953923e-06 + syst_JES_EtaIntercalibration_Stat235: 3.40798317e-09 + syst_JES_EtaIntercalibration_Stat236: 3.23547678e-08 + syst_JES_EtaIntercalibration_Stat237: 7.74794534e-08 + syst_JES_EtaIntercalibration_Stat238: 6.88938379e-08 + syst_JES_EtaIntercalibration_Stat239: 1.73811299e-14 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 - syst_JES_EtaIntercalibration_Stat242: 4.341385349171391e-39 - syst_JES_EtaIntercalibration_Stat243: 3.407272798001358e-08 - syst_JES_EtaIntercalibration_Stat244: 5.666379156921994e-08 - syst_JES_EtaIntercalibration_Stat245: 1.1669296754732051e-09 + syst_JES_EtaIntercalibration_Stat242: 4.34138535e-39 + syst_JES_EtaIntercalibration_Stat243: 3.40727280e-08 + syst_JES_EtaIntercalibration_Stat244: 5.66637916e-08 + syst_JES_EtaIntercalibration_Stat245: 1.16692968e-09 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 - syst_JES_EtaIntercalibration_Stat27: 1.4484120986445813e-10 - syst_JES_EtaIntercalibration_Stat28: 2.7674630756322654e-05 - syst_JES_EtaIntercalibration_Stat29: 2.8344908972644456e-05 + syst_JES_EtaIntercalibration_Stat27: 1.44841210e-10 + syst_JES_EtaIntercalibration_Stat28: 2.76746308e-05 + syst_JES_EtaIntercalibration_Stat29: 2.83449090e-05 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 2.8527739147494675e-05 - syst_JES_EtaIntercalibration_Stat31: 1.991858428704209e-11 + syst_JES_EtaIntercalibration_Stat30: 2.85277391e-05 + syst_JES_EtaIntercalibration_Stat31: 1.99185843e-11 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 - syst_JES_EtaIntercalibration_Stat34: 1.0878145096936334e-12 - syst_JES_EtaIntercalibration_Stat35: 2.1453478770914403e-05 - syst_JES_EtaIntercalibration_Stat36: 6.88962282233759e-05 - syst_JES_EtaIntercalibration_Stat37: 6.664855842964648e-07 - syst_JES_EtaIntercalibration_Stat38: 9.857085804875344e-10 + syst_JES_EtaIntercalibration_Stat34: 1.08781451e-12 + syst_JES_EtaIntercalibration_Stat35: 2.14534788e-05 + syst_JES_EtaIntercalibration_Stat36: 6.88962282e-05 + syst_JES_EtaIntercalibration_Stat37: 6.66485584e-07 + syst_JES_EtaIntercalibration_Stat38: 9.85708580e-10 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 syst_JES_EtaIntercalibration_Stat40: 0.0 @@ -27221,21 +27221,21 @@ bins: syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 syst_JES_EtaIntercalibration_Stat47: 0.0 - syst_JES_EtaIntercalibration_Stat48: 9.00233407233924e-11 - syst_JES_EtaIntercalibration_Stat49: 1.5020420866274022e-09 - syst_JES_EtaIntercalibration_Stat5: 8.82479886456343e-11 - syst_JES_EtaIntercalibration_Stat50: 2.8658599578616888e-05 - syst_JES_EtaIntercalibration_Stat51: 2.7610481705323435e-05 - syst_JES_EtaIntercalibration_Stat52: 3.0814812004416e-05 - syst_JES_EtaIntercalibration_Stat53: 1.031593181770314e-09 - syst_JES_EtaIntercalibration_Stat54: 7.769113897350199e-10 + syst_JES_EtaIntercalibration_Stat48: 9.00233407e-11 + syst_JES_EtaIntercalibration_Stat49: 1.50204209e-09 + syst_JES_EtaIntercalibration_Stat5: 8.82479886e-11 + syst_JES_EtaIntercalibration_Stat50: 2.86585996e-05 + syst_JES_EtaIntercalibration_Stat51: 2.76104817e-05 + syst_JES_EtaIntercalibration_Stat52: 3.08148120e-05 + syst_JES_EtaIntercalibration_Stat53: 1.03159318e-09 + syst_JES_EtaIntercalibration_Stat54: 7.76911390e-10 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 1.1640932640901243e-11 - syst_JES_EtaIntercalibration_Stat57: 9.166209552890441e-05 - syst_JES_EtaIntercalibration_Stat58: 6.522251239411129e-05 - syst_JES_EtaIntercalibration_Stat59: 1.861277249632628e-06 - syst_JES_EtaIntercalibration_Stat6: 1.611062962767129e-10 - syst_JES_EtaIntercalibration_Stat60: 9.828232025649373e-09 + syst_JES_EtaIntercalibration_Stat56: 1.16409326e-11 + syst_JES_EtaIntercalibration_Stat57: 9.16620955e-05 + syst_JES_EtaIntercalibration_Stat58: 6.52225124e-05 + syst_JES_EtaIntercalibration_Stat59: 1.86127725e-06 + syst_JES_EtaIntercalibration_Stat6: 1.61106296e-10 + syst_JES_EtaIntercalibration_Stat60: 9.82823203e-09 syst_JES_EtaIntercalibration_Stat61: 0.0 syst_JES_EtaIntercalibration_Stat62: 0.0 syst_JES_EtaIntercalibration_Stat63: 0.0 @@ -27245,21 +27245,21 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 6.333161513020177e-09 - syst_JES_EtaIntercalibration_Stat70: 8.82479886456343e-11 - syst_JES_EtaIntercalibration_Stat71: 1.4214090781685616e-08 - syst_JES_EtaIntercalibration_Stat72: 2.295969661711583e-05 - syst_JES_EtaIntercalibration_Stat73: 0.00010808895364467175 - syst_JES_EtaIntercalibration_Stat74: 0.00016529639341195563 - syst_JES_EtaIntercalibration_Stat75: 5.8060404724304155e-08 - syst_JES_EtaIntercalibration_Stat76: 7.769113897350199e-10 + syst_JES_EtaIntercalibration_Stat7: 6.33316151e-09 + syst_JES_EtaIntercalibration_Stat70: 8.82479886e-11 + syst_JES_EtaIntercalibration_Stat71: 1.42140908e-08 + syst_JES_EtaIntercalibration_Stat72: 2.29596966e-05 + syst_JES_EtaIntercalibration_Stat73: 1.08088954e-04 + syst_JES_EtaIntercalibration_Stat74: 1.65296393e-04 + syst_JES_EtaIntercalibration_Stat75: 5.80604047e-08 + syst_JES_EtaIntercalibration_Stat76: 7.76911390e-10 syst_JES_EtaIntercalibration_Stat77: 0.0 - syst_JES_EtaIntercalibration_Stat78: 1.3465570569047568e-08 - syst_JES_EtaIntercalibration_Stat79: 0.00018239847223866762 - syst_JES_EtaIntercalibration_Stat8: 9.212703466816893e-10 - syst_JES_EtaIntercalibration_Stat80: 0.00040211846513185645 - syst_JES_EtaIntercalibration_Stat81: 2.4363387505640508e-05 - syst_JES_EtaIntercalibration_Stat82: 1.3085681898548505e-08 + syst_JES_EtaIntercalibration_Stat78: 1.34655706e-08 + syst_JES_EtaIntercalibration_Stat79: 1.82398472e-04 + syst_JES_EtaIntercalibration_Stat8: 9.21270347e-10 + syst_JES_EtaIntercalibration_Stat80: 4.02118465e-04 + syst_JES_EtaIntercalibration_Stat81: 2.43633875e-05 + syst_JES_EtaIntercalibration_Stat82: 1.30856819e-08 syst_JES_EtaIntercalibration_Stat83: 0.0 syst_JES_EtaIntercalibration_Stat84: 0.0 syst_JES_EtaIntercalibration_Stat85: 0.0 @@ -27269,118 +27269,118 @@ bins: syst_JES_EtaIntercalibration_Stat89: 0.0 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 7.622755604110629e-11 - syst_JES_EtaIntercalibration_Stat92: 3.979032580917126e-07 - syst_JES_EtaIntercalibration_Stat93: 9.69930444671163e-06 - syst_JES_EtaIntercalibration_Stat94: 0.00014957055550809457 - syst_JES_EtaIntercalibration_Stat95: 0.00027253357132654325 - syst_JES_EtaIntercalibration_Stat96: 1.1510635424250045e-07 - syst_JES_EtaIntercalibration_Stat97: 7.769113897350199e-10 + syst_JES_EtaIntercalibration_Stat91: 7.62275560e-11 + syst_JES_EtaIntercalibration_Stat92: 3.97903258e-07 + syst_JES_EtaIntercalibration_Stat93: 9.69930445e-06 + syst_JES_EtaIntercalibration_Stat94: 1.49570556e-04 + syst_JES_EtaIntercalibration_Stat95: 2.72533571e-04 + syst_JES_EtaIntercalibration_Stat96: 1.15106354e-07 + syst_JES_EtaIntercalibration_Stat97: 7.76911390e-10 syst_JES_EtaIntercalibration_Stat98: 0.0 - syst_JES_EtaIntercalibration_Stat99: 3.190877771073658e-05 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.029999876666413145 - syst_JES_Flavour_Comp: 0.13194254961914295 - syst_JES_Gjet_Generator: 0.48551614803217413 + syst_JES_EtaIntercalibration_Stat99: 3.19087777e-05 + syst_JES_EtaIntercalibration_TotalStat_MJB: 2.99998767e-02 + syst_JES_Flavour_Comp: 1.31942550e-01 + syst_JES_Gjet_Generator: 4.85516148e-01 syst_JES_Gjet_OOC: 0.3442 - syst_JES_Gjet_Purity: 0.11602002154800697 - syst_JES_Gjet_Stat1: 0.0003626048365645444 - syst_JES_Gjet_Stat10: 0.026036902177486474 - syst_JES_Gjet_Stat11: 0.04733102259617892 - syst_JES_Gjet_Stat12: 0.06567093782640841 - syst_JES_Gjet_Stat13: 0.016072466168886468 - syst_JES_Gjet_Stat14: 0.014999629995436555 - syst_JES_Gjet_Stat15: 0.0020419562109653577 - syst_JES_Gjet_Stat2: 0.0003801851519365802 - syst_JES_Gjet_Stat3: 2.5738132311518827e-05 - syst_JES_Gjet_Stat4: 0.0011051013528179214 - syst_JES_Gjet_Stat5: 0.0012116471516080908 - syst_JES_Gjet_Stat6: 0.003544084190591414 - syst_JES_Gjet_Stat7: 0.00512093848820702 - syst_JES_Gjet_Stat8: 0.0032827553975281194 - syst_JES_Gjet_Stat9: 0.010222927210442222 - syst_JES_Gjet_Veto: 0.1626507531491939 - syst_JES_Gjet_dPhi: 0.02389525632840125 - syst_JES_LArESZee: 0.6434609758951977 - syst_JES_LArEsmear: 0.04972592960418136 - syst_JES_LAr_JVT: 0.07099625817604756 - syst_JES_MJB_Alpha: 0.0006781111468631083 - syst_JES_MJB_Asym: 0.014496249583944116 - syst_JES_MJB_Beta: 0.0003486618266187813 - syst_JES_MJB_Stat1: 0.0002734042199747473 - syst_JES_MJB_Stat10: 9.301978862048655e-08 - syst_JES_MJB_Stat11: 2.3985286255327456e-06 - syst_JES_MJB_Stat12: 5.425649154709507e-07 - syst_JES_MJB_Stat13: 6.438936423101e-08 - syst_JES_MJB_Stat14: 1.257469088107921e-09 - syst_JES_MJB_Stat15: 3.343448668665335e-14 - syst_JES_MJB_Stat16: 6.850703587630014e-18 + syst_JES_Gjet_Purity: 1.16020022e-01 + syst_JES_Gjet_Stat1: 3.62604837e-04 + syst_JES_Gjet_Stat10: 2.60369022e-02 + syst_JES_Gjet_Stat11: 4.73310226e-02 + syst_JES_Gjet_Stat12: 6.56709378e-02 + syst_JES_Gjet_Stat13: 1.60724662e-02 + syst_JES_Gjet_Stat14: 1.49996300e-02 + syst_JES_Gjet_Stat15: 2.04195621e-03 + syst_JES_Gjet_Stat2: 3.80185152e-04 + syst_JES_Gjet_Stat3: 2.57381323e-05 + syst_JES_Gjet_Stat4: 1.10510135e-03 + syst_JES_Gjet_Stat5: 1.21164715e-03 + syst_JES_Gjet_Stat6: 3.54408419e-03 + syst_JES_Gjet_Stat7: 5.12093849e-03 + syst_JES_Gjet_Stat8: 3.28275540e-03 + syst_JES_Gjet_Stat9: 1.02229272e-02 + syst_JES_Gjet_Veto: 1.62650753e-01 + syst_JES_Gjet_dPhi: 2.38952563e-02 + syst_JES_LArESZee: 6.43460976e-01 + syst_JES_LArEsmear: 4.97259296e-02 + syst_JES_LAr_JVT: 7.09962582e-02 + syst_JES_MJB_Alpha: 6.78111147e-04 + syst_JES_MJB_Asym: 1.44962496e-02 + syst_JES_MJB_Beta: 3.48661827e-04 + syst_JES_MJB_Stat1: 2.73404220e-04 + syst_JES_MJB_Stat10: 9.30197886e-08 + syst_JES_MJB_Stat11: 2.39852863e-06 + syst_JES_MJB_Stat12: 5.42564915e-07 + syst_JES_MJB_Stat13: 6.43893642e-08 + syst_JES_MJB_Stat14: 1.25746909e-09 + syst_JES_MJB_Stat15: 3.34344867e-14 + syst_JES_MJB_Stat16: 6.85070359e-18 syst_JES_MJB_Stat2: 0.0 - syst_JES_MJB_Stat3: 0.00090490994441436 - syst_JES_MJB_Stat4: 0.0012027360807758283 - syst_JES_MJB_Stat5: 3.419674511923613e-12 - syst_JES_MJB_Stat6: 1.3197258689708063e-09 - syst_JES_MJB_Stat7: 2.5279281078051682e-12 - syst_JES_MJB_Stat8: 2.376373655156955e-12 - syst_JES_MJB_Stat9: 1.909586015316299e-19 - syst_JES_MJB_Threshold: 0.01414885581063006 - syst_JES_Pileup_MuOffset: 0.029585190129522577 - syst_JES_Pileup_NPVOffset: 0.04097364122213207 - syst_JES_Pileup_Pt_term: 0.09404804344057349 - syst_JES_PunchThrough_MC15: 0.0034621786478584095 + syst_JES_MJB_Stat3: 9.04909944e-04 + syst_JES_MJB_Stat4: 1.20273608e-03 + syst_JES_MJB_Stat5: 3.41967451e-12 + syst_JES_MJB_Stat6: 1.31972587e-09 + syst_JES_MJB_Stat7: 2.52792811e-12 + syst_JES_MJB_Stat8: 2.37637366e-12 + syst_JES_MJB_Stat9: 1.90958602e-19 + syst_JES_MJB_Threshold: 1.41488558e-02 + syst_JES_Pileup_MuOffset: 2.95851901e-02 + syst_JES_Pileup_NPVOffset: 4.09736412e-02 + syst_JES_Pileup_Pt_term: 9.40480434e-02 + syst_JES_PunchThrough_MC15: 3.46217865e-03 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.45425528890701977 - syst_JES_Zjet_MuScale: 0.02752913865343411 - syst_JES_Zjet_MuSmearID: 0.004728210655205624 - syst_JES_Zjet_MuSmearMS: 0.08242840408499973 - syst_JES_Zjet_OOC: 0.16411559950230203 - syst_JES_Zjet_Stat1: 0.00243179193188891 - syst_JES_Zjet_Stat10: 0.01959143371476421 - syst_JES_Zjet_Stat11: 0.025001935925043888 - syst_JES_Zjet_Stat12: 0.15325471444624467 - syst_JES_Zjet_Stat13: 0.04659617232133986 - syst_JES_Zjet_Stat2: 4.908631988650198e-05 - syst_JES_Zjet_Stat3: 0.0008424289187818757 - syst_JES_Zjet_Stat4: 0.00028558264200072314 - syst_JES_Zjet_Stat5: 0.0013387172965193212 - syst_JES_Zjet_Stat6: 0.0020420592547720057 - syst_JES_Zjet_Stat7: 0.002289971397201284 - syst_JES_Zjet_Stat8: 0.0035223517711892435 - syst_JES_Zjet_Stat9: 0.007735986620981192 - syst_JES_Zjet_Veto: 0.03382812254618929 - syst_JES_Zjet_dPhi: 0.02763093691860629 + syst_JES_Zjet_MC: 4.54255289e-01 + syst_JES_Zjet_MuScale: 2.75291387e-02 + syst_JES_Zjet_MuSmearID: 4.72821066e-03 + syst_JES_Zjet_MuSmearMS: 8.24284041e-02 + syst_JES_Zjet_OOC: 1.64115600e-01 + syst_JES_Zjet_Stat1: 2.43179193e-03 + syst_JES_Zjet_Stat10: 1.95914337e-02 + syst_JES_Zjet_Stat11: 2.50019359e-02 + syst_JES_Zjet_Stat12: 1.53254714e-01 + syst_JES_Zjet_Stat13: 4.65961723e-02 + syst_JES_Zjet_Stat2: 4.90863199e-05 + syst_JES_Zjet_Stat3: 8.42428919e-04 + syst_JES_Zjet_Stat4: 2.85582642e-04 + syst_JES_Zjet_Stat5: 1.33871730e-03 + syst_JES_Zjet_Stat6: 2.04205925e-03 + syst_JES_Zjet_Stat7: 2.28997140e-03 + syst_JES_Zjet_Stat8: 3.52235177e-03 + syst_JES_Zjet_Stat9: 7.73598662e-03 + syst_JES_Zjet_Veto: 3.38281225e-02 + syst_JES_Zjet_dPhi: 2.76309369e-02 syst_PRW: 0.0 syst_Unfolding_bias: 0.02687 - syst_cleaning: 0.13631239855567065 + syst_cleaning: 1.36312399e-01 syst_lumi: 0.5499 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.11616404467390072 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 0.20675436512925185 - syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.005086096636911256 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.16164045e-01 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 2.06754365e-01 + syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 5.08609664e-03 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 0.4511088671263291 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0435478139520229 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.1105635983269358 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 4.51108867e-01 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 4.35478140e-02 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.10563598e-01 - stat: 0.097031 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.12855585430076688 - syst_JER_NP1: 0.0016910844656610148 - syst_JER_NP2: 0.0398738695764532 - syst_JER_NP3: 0.02405208514869345 - syst_JER_NP4: 0.0009584254587603566 - syst_JER_NP5: 0.013653804305027956 - syst_JER_NP6: 4.161736416449268e-06 - syst_JER_NP7: 6.607659854290322e-10 - syst_JER_NP8: 0.01584354341679916 - syst_JES_EtaIntercalibration_Modelling: 0.37547988960795226 + syst_JER_NP0: 1.28555854e-01 + syst_JER_NP1: 1.69108447e-03 + syst_JER_NP2: 3.98738696e-02 + syst_JER_NP3: 2.40520851e-02 + syst_JER_NP4: 9.58425459e-04 + syst_JER_NP5: 1.36538043e-02 + syst_JER_NP6: 4.16173642e-06 + syst_JER_NP7: 6.60765985e-10 + syst_JER_NP8: 1.58435434e-02 + syst_JES_EtaIntercalibration_Modelling: 3.75479890e-01 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 6.839699226391464e-05 - syst_JES_EtaIntercalibration_Stat101: 0.00015947862176479957 - syst_JES_EtaIntercalibration_Stat102: 4.415212052665194e-05 - syst_JES_EtaIntercalibration_Stat103: 5.19983413196998e-07 + syst_JES_EtaIntercalibration_Stat100: 6.83969923e-05 + syst_JES_EtaIntercalibration_Stat101: 1.59478622e-04 + syst_JES_EtaIntercalibration_Stat102: 4.41521205e-05 + syst_JES_EtaIntercalibration_Stat103: 5.19983413e-07 syst_JES_EtaIntercalibration_Stat104: 0.0 syst_JES_EtaIntercalibration_Stat105: 0.0 syst_JES_EtaIntercalibration_Stat106: 0.0 @@ -27389,170 +27389,170 @@ bins: syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 syst_JES_EtaIntercalibration_Stat110: 0.0 - syst_JES_EtaIntercalibration_Stat111: 2.5738275000473516e-12 - syst_JES_EtaIntercalibration_Stat112: 6.262323590329711e-06 - syst_JES_EtaIntercalibration_Stat113: 0.00013579656356108572 - syst_JES_EtaIntercalibration_Stat114: 0.00033464590883499533 - syst_JES_EtaIntercalibration_Stat115: 0.0001731628352158742 - syst_JES_EtaIntercalibration_Stat116: 5.581454512938362e-06 + syst_JES_EtaIntercalibration_Stat111: 2.57382750e-12 + syst_JES_EtaIntercalibration_Stat112: 6.26232359e-06 + syst_JES_EtaIntercalibration_Stat113: 1.35796564e-04 + syst_JES_EtaIntercalibration_Stat114: 3.34645909e-04 + syst_JES_EtaIntercalibration_Stat115: 1.73162835e-04 + syst_JES_EtaIntercalibration_Stat116: 5.58145451e-06 syst_JES_EtaIntercalibration_Stat117: 0.0 syst_JES_EtaIntercalibration_Stat118: 0.0 - syst_JES_EtaIntercalibration_Stat119: 4.7484102539787386e-05 + syst_JES_EtaIntercalibration_Stat119: 4.74841025e-05 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 0.00030370093233310954 - syst_JES_EtaIntercalibration_Stat121: 0.0004708599022002192 - syst_JES_EtaIntercalibration_Stat122: 0.0001533335980794816 - syst_JES_EtaIntercalibration_Stat123: 2.8405314203507765e-06 + syst_JES_EtaIntercalibration_Stat120: 3.03700932e-04 + syst_JES_EtaIntercalibration_Stat121: 4.70859902e-04 + syst_JES_EtaIntercalibration_Stat122: 1.53333598e-04 + syst_JES_EtaIntercalibration_Stat123: 2.84053142e-06 syst_JES_EtaIntercalibration_Stat124: 0.0 syst_JES_EtaIntercalibration_Stat125: 0.0 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 syst_JES_EtaIntercalibration_Stat128: 0.0 syst_JES_EtaIntercalibration_Stat129: 0.0 - syst_JES_EtaIntercalibration_Stat13: 4.7536174161540055e-05 + syst_JES_EtaIntercalibration_Stat13: 4.75361742e-05 syst_JES_EtaIntercalibration_Stat130: 0.0 - syst_JES_EtaIntercalibration_Stat131: 2.238695309214722e-05 - syst_JES_EtaIntercalibration_Stat132: 0.001569060217933015 - syst_JES_EtaIntercalibration_Stat133: 0.004141272630484499 - syst_JES_EtaIntercalibration_Stat134: 0.0035477845463753855 - syst_JES_EtaIntercalibration_Stat135: 0.00011893747730215234 + syst_JES_EtaIntercalibration_Stat131: 2.23869531e-05 + syst_JES_EtaIntercalibration_Stat132: 1.56906022e-03 + syst_JES_EtaIntercalibration_Stat133: 4.14127263e-03 + syst_JES_EtaIntercalibration_Stat134: 3.54778455e-03 + syst_JES_EtaIntercalibration_Stat135: 1.18937477e-04 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 - syst_JES_EtaIntercalibration_Stat138: 8.398309608486699e-05 - syst_JES_EtaIntercalibration_Stat139: 0.002188063241773418 - syst_JES_EtaIntercalibration_Stat14: 1.631991105214731e-10 - syst_JES_EtaIntercalibration_Stat140: 0.004602136894965207 - syst_JES_EtaIntercalibration_Stat141: 0.0011189079084089092 - syst_JES_EtaIntercalibration_Stat142: 7.557450810293111e-05 + syst_JES_EtaIntercalibration_Stat138: 8.39830961e-05 + syst_JES_EtaIntercalibration_Stat139: 2.18806324e-03 + syst_JES_EtaIntercalibration_Stat14: 1.63199111e-10 + syst_JES_EtaIntercalibration_Stat140: 4.60213689e-03 + syst_JES_EtaIntercalibration_Stat141: 1.11890791e-03 + syst_JES_EtaIntercalibration_Stat142: 7.55745081e-05 syst_JES_EtaIntercalibration_Stat143: 0.0 syst_JES_EtaIntercalibration_Stat144: 0.0 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 syst_JES_EtaIntercalibration_Stat147: 0.0 syst_JES_EtaIntercalibration_Stat148: 0.0 - syst_JES_EtaIntercalibration_Stat149: 1.4842283744424239e-05 - syst_JES_EtaIntercalibration_Stat15: 1.5723322849233618e-10 - syst_JES_EtaIntercalibration_Stat150: 0.0015094822787962766 - syst_JES_EtaIntercalibration_Stat151: 0.006388177106968779 - syst_JES_EtaIntercalibration_Stat152: 0.004325789176554955 - syst_JES_EtaIntercalibration_Stat153: 0.00012258412277595335 + syst_JES_EtaIntercalibration_Stat149: 1.48422837e-05 + syst_JES_EtaIntercalibration_Stat15: 1.57233228e-10 + syst_JES_EtaIntercalibration_Stat150: 1.50948228e-03 + syst_JES_EtaIntercalibration_Stat151: 6.38817711e-03 + syst_JES_EtaIntercalibration_Stat152: 4.32578918e-03 + syst_JES_EtaIntercalibration_Stat153: 1.22584123e-04 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 0.00011570965436256709 - syst_JES_EtaIntercalibration_Stat157: 0.0035684958848231844 - syst_JES_EtaIntercalibration_Stat158: 0.006626645757847631 - syst_JES_EtaIntercalibration_Stat159: 0.0019723017010589428 + syst_JES_EtaIntercalibration_Stat156: 1.15709654e-04 + syst_JES_EtaIntercalibration_Stat157: 3.56849588e-03 + syst_JES_EtaIntercalibration_Stat158: 6.62664576e-03 + syst_JES_EtaIntercalibration_Stat159: 1.97230170e-03 syst_JES_EtaIntercalibration_Stat16: 0.0 - syst_JES_EtaIntercalibration_Stat160: 4.0982386455379526e-05 + syst_JES_EtaIntercalibration_Stat160: 4.09823865e-05 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 - syst_JES_EtaIntercalibration_Stat167: 0.00019700215100348524 - syst_JES_EtaIntercalibration_Stat168: 0.0020543088253716867 - syst_JES_EtaIntercalibration_Stat169: 0.012658639529981095 + syst_JES_EtaIntercalibration_Stat167: 1.97002151e-04 + syst_JES_EtaIntercalibration_Stat168: 2.05430883e-03 + syst_JES_EtaIntercalibration_Stat169: 1.26586395e-02 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 0.007957655936266659 - syst_JES_EtaIntercalibration_Stat171: 0.00022337048894325768 + syst_JES_EtaIntercalibration_Stat170: 7.95765594e-03 + syst_JES_EtaIntercalibration_Stat171: 2.23370489e-04 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 - syst_JES_EtaIntercalibration_Stat174: 0.00018290550262664942 - syst_JES_EtaIntercalibration_Stat175: 0.008143070735293904 - syst_JES_EtaIntercalibration_Stat176: 0.012230863951495823 - syst_JES_EtaIntercalibration_Stat177: 0.005071910562105763 - syst_JES_EtaIntercalibration_Stat178: 0.0001177975700088928 + syst_JES_EtaIntercalibration_Stat174: 1.82905503e-04 + syst_JES_EtaIntercalibration_Stat175: 8.14307074e-03 + syst_JES_EtaIntercalibration_Stat176: 1.22308640e-02 + syst_JES_EtaIntercalibration_Stat177: 5.07191056e-03 + syst_JES_EtaIntercalibration_Stat178: 1.17797570e-04 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 syst_JES_EtaIntercalibration_Stat180: 0.0 syst_JES_EtaIntercalibration_Stat181: 0.0 syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 - syst_JES_EtaIntercalibration_Stat184: 0.000276606304158094 - syst_JES_EtaIntercalibration_Stat185: 0.010797998460362921 - syst_JES_EtaIntercalibration_Stat186: 0.03164025600402121 - syst_JES_EtaIntercalibration_Stat187: 0.021420966364755815 - syst_JES_EtaIntercalibration_Stat188: 1.4159515351875579e-05 + syst_JES_EtaIntercalibration_Stat184: 2.76606304e-04 + syst_JES_EtaIntercalibration_Stat185: 1.07979985e-02 + syst_JES_EtaIntercalibration_Stat186: 3.16402560e-02 + syst_JES_EtaIntercalibration_Stat187: 2.14209664e-02 + syst_JES_EtaIntercalibration_Stat188: 1.41595154e-05 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 - syst_JES_EtaIntercalibration_Stat191: 0.000266765304153295 - syst_JES_EtaIntercalibration_Stat192: 0.022450404784769472 - syst_JES_EtaIntercalibration_Stat193: 0.03764193671956851 - syst_JES_EtaIntercalibration_Stat194: 0.010816616106712857 - syst_JES_EtaIntercalibration_Stat195: 0.00046456062350925474 - syst_JES_EtaIntercalibration_Stat196: 4.9990133033929805e-06 + syst_JES_EtaIntercalibration_Stat191: 2.66765304e-04 + syst_JES_EtaIntercalibration_Stat192: 2.24504048e-02 + syst_JES_EtaIntercalibration_Stat193: 3.76419367e-02 + syst_JES_EtaIntercalibration_Stat194: 1.08166161e-02 + syst_JES_EtaIntercalibration_Stat195: 4.64560624e-04 + syst_JES_EtaIntercalibration_Stat196: 4.99901330e-06 syst_JES_EtaIntercalibration_Stat197: 0.0 syst_JES_EtaIntercalibration_Stat198: 0.0 - syst_JES_EtaIntercalibration_Stat199: 2.0321961593310817e-05 + syst_JES_EtaIntercalibration_Stat199: 2.03219616e-05 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 0.0030185749535169737 - syst_JES_EtaIntercalibration_Stat201: 0.012022020244118707 - syst_JES_EtaIntercalibration_Stat202: 0.009580861808835361 - syst_JES_EtaIntercalibration_Stat203: 0.00021813873452461395 + syst_JES_EtaIntercalibration_Stat200: 3.01857495e-03 + syst_JES_EtaIntercalibration_Stat201: 1.20220202e-02 + syst_JES_EtaIntercalibration_Stat202: 9.58086181e-03 + syst_JES_EtaIntercalibration_Stat203: 2.18138735e-04 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 - syst_JES_EtaIntercalibration_Stat206: 0.0003761141585675817 - syst_JES_EtaIntercalibration_Stat207: 0.00957306851276016 - syst_JES_EtaIntercalibration_Stat208: 0.0171200058411205 - syst_JES_EtaIntercalibration_Stat209: 0.004131296051785686 + syst_JES_EtaIntercalibration_Stat206: 3.76114159e-04 + syst_JES_EtaIntercalibration_Stat207: 9.57306851e-03 + syst_JES_EtaIntercalibration_Stat208: 1.71200058e-02 + syst_JES_EtaIntercalibration_Stat209: 4.13129605e-03 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 0.00022516097086306943 - syst_JES_EtaIntercalibration_Stat211: 6.226186714193527e-06 - syst_JES_EtaIntercalibration_Stat212: 8.122572298847206e-05 - syst_JES_EtaIntercalibration_Stat213: 0.0005981094109776237 - syst_JES_EtaIntercalibration_Stat214: 0.0017876444696862967 - syst_JES_EtaIntercalibration_Stat215: 0.001230777100046958 - syst_JES_EtaIntercalibration_Stat216: 9.978553602601933e-05 + syst_JES_EtaIntercalibration_Stat210: 2.25160971e-04 + syst_JES_EtaIntercalibration_Stat211: 6.22618671e-06 + syst_JES_EtaIntercalibration_Stat212: 8.12257230e-05 + syst_JES_EtaIntercalibration_Stat213: 5.98109411e-04 + syst_JES_EtaIntercalibration_Stat214: 1.78764447e-03 + syst_JES_EtaIntercalibration_Stat215: 1.23077710e-03 + syst_JES_EtaIntercalibration_Stat216: 9.97855360e-05 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 - syst_JES_EtaIntercalibration_Stat219: 3.02684997150503e-07 + syst_JES_EtaIntercalibration_Stat219: 3.02684997e-07 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 0.00031318432220499157 - syst_JES_EtaIntercalibration_Stat221: 0.000997745954639757 - syst_JES_EtaIntercalibration_Stat222: 0.0007088611905725972 - syst_JES_EtaIntercalibration_Stat223: 8.593570081752985e-05 - syst_JES_EtaIntercalibration_Stat224: 2.9245677602956603e-05 - syst_JES_EtaIntercalibration_Stat225: 0.00013644912165345732 - syst_JES_EtaIntercalibration_Stat226: 0.00034589093656816163 - syst_JES_EtaIntercalibration_Stat227: 0.00020775034897684287 - syst_JES_EtaIntercalibration_Stat228: 8.480986779261007e-06 + syst_JES_EtaIntercalibration_Stat220: 3.13184322e-04 + syst_JES_EtaIntercalibration_Stat221: 9.97745955e-04 + syst_JES_EtaIntercalibration_Stat222: 7.08861191e-04 + syst_JES_EtaIntercalibration_Stat223: 8.59357008e-05 + syst_JES_EtaIntercalibration_Stat224: 2.92456776e-05 + syst_JES_EtaIntercalibration_Stat225: 1.36449122e-04 + syst_JES_EtaIntercalibration_Stat226: 3.45890937e-04 + syst_JES_EtaIntercalibration_Stat227: 2.07750349e-04 + syst_JES_EtaIntercalibration_Stat228: 8.48098678e-06 syst_JES_EtaIntercalibration_Stat229: 0.0 syst_JES_EtaIntercalibration_Stat23: 0.0 syst_JES_EtaIntercalibration_Stat230: 0.0 - syst_JES_EtaIntercalibration_Stat231: 2.1122359598302458e-05 - syst_JES_EtaIntercalibration_Stat232: 0.0002702420165333289 - syst_JES_EtaIntercalibration_Stat233: 0.0004161754437734163 - syst_JES_EtaIntercalibration_Stat234: 7.225020484400026e-05 - syst_JES_EtaIntercalibration_Stat235: 1.1004584805888863e-07 - syst_JES_EtaIntercalibration_Stat236: 2.6842285204505224e-07 - syst_JES_EtaIntercalibration_Stat237: 6.449421989604959e-07 - syst_JES_EtaIntercalibration_Stat238: 5.915836880780267e-07 - syst_JES_EtaIntercalibration_Stat239: 8.04450997575365e-12 + syst_JES_EtaIntercalibration_Stat231: 2.11223596e-05 + syst_JES_EtaIntercalibration_Stat232: 2.70242017e-04 + syst_JES_EtaIntercalibration_Stat233: 4.16175444e-04 + syst_JES_EtaIntercalibration_Stat234: 7.22502048e-05 + syst_JES_EtaIntercalibration_Stat235: 1.10045848e-07 + syst_JES_EtaIntercalibration_Stat236: 2.68422852e-07 + syst_JES_EtaIntercalibration_Stat237: 6.44942199e-07 + syst_JES_EtaIntercalibration_Stat238: 5.91583688e-07 + syst_JES_EtaIntercalibration_Stat239: 8.04450998e-12 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 - syst_JES_EtaIntercalibration_Stat242: 3.071792107223404e-31 - syst_JES_EtaIntercalibration_Stat243: 3.040976441868631e-07 - syst_JES_EtaIntercalibration_Stat244: 4.954115158128644e-07 - syst_JES_EtaIntercalibration_Stat245: 1.872580520965654e-08 + syst_JES_EtaIntercalibration_Stat242: 3.07179211e-31 + syst_JES_EtaIntercalibration_Stat243: 3.04097644e-07 + syst_JES_EtaIntercalibration_Stat244: 4.95411516e-07 + syst_JES_EtaIntercalibration_Stat245: 1.87258052e-08 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 - syst_JES_EtaIntercalibration_Stat27: 1.634436284319459e-11 - syst_JES_EtaIntercalibration_Stat28: 6.592763214995724e-06 - syst_JES_EtaIntercalibration_Stat29: 1.743537837097535e-05 + syst_JES_EtaIntercalibration_Stat27: 1.63443628e-11 + syst_JES_EtaIntercalibration_Stat28: 6.59276321e-06 + syst_JES_EtaIntercalibration_Stat29: 1.74353784e-05 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 1.7590230196182766e-05 - syst_JES_EtaIntercalibration_Stat31: 2.2923692438174088e-12 + syst_JES_EtaIntercalibration_Stat30: 1.75902302e-05 + syst_JES_EtaIntercalibration_Stat31: 2.29236924e-12 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 - syst_JES_EtaIntercalibration_Stat34: 1.33454514723182e-13 - syst_JES_EtaIntercalibration_Stat35: 4.73696523005637e-05 - syst_JES_EtaIntercalibration_Stat36: 5.677131090850378e-05 - syst_JES_EtaIntercalibration_Stat37: 1.334227833495839e-07 - syst_JES_EtaIntercalibration_Stat38: 1.0781339917267937e-10 + syst_JES_EtaIntercalibration_Stat34: 1.33454515e-13 + syst_JES_EtaIntercalibration_Stat35: 4.73696523e-05 + syst_JES_EtaIntercalibration_Stat36: 5.67713109e-05 + syst_JES_EtaIntercalibration_Stat37: 1.33422783e-07 + syst_JES_EtaIntercalibration_Stat38: 1.07813399e-10 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 syst_JES_EtaIntercalibration_Stat40: 0.0 @@ -27563,21 +27563,21 @@ bins: syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 syst_JES_EtaIntercalibration_Stat47: 0.0 - syst_JES_EtaIntercalibration_Stat48: 1.0119506843221165e-11 - syst_JES_EtaIntercalibration_Stat49: 1.6546963709393938e-10 - syst_JES_EtaIntercalibration_Stat5: 9.86489537450854e-12 - syst_JES_EtaIntercalibration_Stat50: 6.803703481928059e-06 - syst_JES_EtaIntercalibration_Stat51: 1.639958367970053e-05 - syst_JES_EtaIntercalibration_Stat52: 1.7744688890129913e-05 - syst_JES_EtaIntercalibration_Stat53: 1.1303841076377535e-10 - syst_JES_EtaIntercalibration_Stat54: 8.498307287336696e-11 + syst_JES_EtaIntercalibration_Stat48: 1.01195068e-11 + syst_JES_EtaIntercalibration_Stat49: 1.65469637e-10 + syst_JES_EtaIntercalibration_Stat5: 9.86489537e-12 + syst_JES_EtaIntercalibration_Stat50: 6.80370348e-06 + syst_JES_EtaIntercalibration_Stat51: 1.63995837e-05 + syst_JES_EtaIntercalibration_Stat52: 1.77446889e-05 + syst_JES_EtaIntercalibration_Stat53: 1.13038411e-10 + syst_JES_EtaIntercalibration_Stat54: 8.49830729e-11 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 1.3467846598472971e-12 - syst_JES_EtaIntercalibration_Stat57: 6.347605124507588e-05 - syst_JES_EtaIntercalibration_Stat58: 5.522247106703937e-05 - syst_JES_EtaIntercalibration_Stat59: 2.998559820980732e-07 - syst_JES_EtaIntercalibration_Stat6: 1.817539289121421e-11 - syst_JES_EtaIntercalibration_Stat60: 1.116308562853479e-09 + syst_JES_EtaIntercalibration_Stat56: 1.34678466e-12 + syst_JES_EtaIntercalibration_Stat57: 6.34760512e-05 + syst_JES_EtaIntercalibration_Stat58: 5.52224711e-05 + syst_JES_EtaIntercalibration_Stat59: 2.99855982e-07 + syst_JES_EtaIntercalibration_Stat6: 1.81753929e-11 + syst_JES_EtaIntercalibration_Stat60: 1.11630856e-09 syst_JES_EtaIntercalibration_Stat61: 0.0 syst_JES_EtaIntercalibration_Stat62: 0.0 syst_JES_EtaIntercalibration_Stat63: 0.0 @@ -27587,21 +27587,21 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 7.174817140526998e-10 - syst_JES_EtaIntercalibration_Stat70: 9.86489537450854e-12 - syst_JES_EtaIntercalibration_Stat71: 1.6053825673340295e-09 - syst_JES_EtaIntercalibration_Stat72: 3.7269814528650397e-06 - syst_JES_EtaIntercalibration_Stat73: 5.3107905955704944e-05 - syst_JES_EtaIntercalibration_Stat74: 0.00013095627820001605 - syst_JES_EtaIntercalibration_Stat75: 7.245527439048175e-09 - syst_JES_EtaIntercalibration_Stat76: 8.498307287336696e-11 + syst_JES_EtaIntercalibration_Stat7: 7.17481714e-10 + syst_JES_EtaIntercalibration_Stat70: 9.86489537e-12 + syst_JES_EtaIntercalibration_Stat71: 1.60538257e-09 + syst_JES_EtaIntercalibration_Stat72: 3.72698145e-06 + syst_JES_EtaIntercalibration_Stat73: 5.31079060e-05 + syst_JES_EtaIntercalibration_Stat74: 1.30956278e-04 + syst_JES_EtaIntercalibration_Stat75: 7.24552744e-09 + syst_JES_EtaIntercalibration_Stat76: 8.49830729e-11 syst_JES_EtaIntercalibration_Stat77: 0.0 - syst_JES_EtaIntercalibration_Stat78: 1.5175053237138905e-09 - syst_JES_EtaIntercalibration_Stat79: 8.185519572238526e-05 - syst_JES_EtaIntercalibration_Stat8: 1.0093667371178822e-10 - syst_JES_EtaIntercalibration_Stat80: 0.00016210494224421415 - syst_JES_EtaIntercalibration_Stat81: 7.610223830479627e-06 - syst_JES_EtaIntercalibration_Stat82: 1.47786425290011e-09 + syst_JES_EtaIntercalibration_Stat78: 1.51750532e-09 + syst_JES_EtaIntercalibration_Stat79: 8.18551957e-05 + syst_JES_EtaIntercalibration_Stat8: 1.00936674e-10 + syst_JES_EtaIntercalibration_Stat80: 1.62104942e-04 + syst_JES_EtaIntercalibration_Stat81: 7.61022383e-06 + syst_JES_EtaIntercalibration_Stat82: 1.47786425e-09 syst_JES_EtaIntercalibration_Stat83: 0.0 syst_JES_EtaIntercalibration_Stat84: 0.0 syst_JES_EtaIntercalibration_Stat85: 0.0 @@ -27611,118 +27611,118 @@ bins: syst_JES_EtaIntercalibration_Stat89: 0.0 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 8.519091897027524e-12 - syst_JES_EtaIntercalibration_Stat92: 3.894303614293575e-07 - syst_JES_EtaIntercalibration_Stat93: 2.277268264829596e-06 - syst_JES_EtaIntercalibration_Stat94: 2.499386914165152e-05 - syst_JES_EtaIntercalibration_Stat95: 0.000161159985961156 - syst_JES_EtaIntercalibration_Stat96: 1.4034413800369435e-08 - syst_JES_EtaIntercalibration_Stat97: 8.498307287336696e-11 + syst_JES_EtaIntercalibration_Stat91: 8.51909190e-12 + syst_JES_EtaIntercalibration_Stat92: 3.89430361e-07 + syst_JES_EtaIntercalibration_Stat93: 2.27726826e-06 + syst_JES_EtaIntercalibration_Stat94: 2.49938691e-05 + syst_JES_EtaIntercalibration_Stat95: 1.61159986e-04 + syst_JES_EtaIntercalibration_Stat96: 1.40344138e-08 + syst_JES_EtaIntercalibration_Stat97: 8.49830729e-11 syst_JES_EtaIntercalibration_Stat98: 0.0 - syst_JES_EtaIntercalibration_Stat99: 3.767260074591435e-05 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.02890699007160725 - syst_JES_Flavour_Comp: 0.09972122843206456 - syst_JES_Gjet_Generator: 0.29935368295713355 - syst_JES_Gjet_OOC: 0.21585334720592125 - syst_JES_Gjet_Purity: 0.07620315085349161 - syst_JES_Gjet_Stat1: 0.00041543238619539525 - syst_JES_Gjet_Stat10: 0.013717394313425564 - syst_JES_Gjet_Stat11: 0.025285720772799815 - syst_JES_Gjet_Stat12: 0.04612334875093091 - syst_JES_Gjet_Stat13: 0.02407867261706924 - syst_JES_Gjet_Stat14: 0.009894515791588792 - syst_JES_Gjet_Stat15: 0.0005369681065947958 - syst_JES_Gjet_Stat2: 0.00043543742172838794 - syst_JES_Gjet_Stat3: 9.588945016316798e-05 - syst_JES_Gjet_Stat4: 0.0006794489016842989 - syst_JES_Gjet_Stat5: 0.0007448837140789158 - syst_JES_Gjet_Stat6: 0.0027579062257444505 - syst_JES_Gjet_Stat7: 0.0034056624539140694 - syst_JES_Gjet_Stat8: 0.0019846425370831896 - syst_JES_Gjet_Stat9: 0.005643479157399273 - syst_JES_Gjet_Veto: 0.11346801080040136 - syst_JES_Gjet_dPhi: 0.015830006317118134 - syst_JES_LArESZee: 0.4089006327948148 - syst_JES_LArEsmear: 0.03187553450532241 - syst_JES_LAr_JVT: 0.04452115901456295 - syst_JES_MJB_Alpha: 0.0012285016361405466 - syst_JES_MJB_Asym: 0.011521372834866511 - syst_JES_MJB_Beta: 0.0006557539958058524 - syst_JES_MJB_Stat1: 0.0003132413885488315 - syst_JES_MJB_Stat10: 2.4984832899181055e-06 - syst_JES_MJB_Stat11: 4.835909602908226e-06 - syst_JES_MJB_Stat12: 2.346062818852044e-06 - syst_JES_MJB_Stat13: 5.803255081893524e-07 - syst_JES_MJB_Stat14: 3.3761698738756e-08 - syst_JES_MJB_Stat15: 1.5599705790494898e-11 - syst_JES_MJB_Stat16: 1.9164493503666486e-14 + syst_JES_EtaIntercalibration_Stat99: 3.76726007e-05 + syst_JES_EtaIntercalibration_TotalStat_MJB: 2.89069901e-02 + syst_JES_Flavour_Comp: 9.97212284e-02 + syst_JES_Gjet_Generator: 2.99353683e-01 + syst_JES_Gjet_OOC: 2.15853347e-01 + syst_JES_Gjet_Purity: 7.62031509e-02 + syst_JES_Gjet_Stat1: 4.15432386e-04 + syst_JES_Gjet_Stat10: 1.37173943e-02 + syst_JES_Gjet_Stat11: 2.52857208e-02 + syst_JES_Gjet_Stat12: 4.61233488e-02 + syst_JES_Gjet_Stat13: 2.40786726e-02 + syst_JES_Gjet_Stat14: 9.89451579e-03 + syst_JES_Gjet_Stat15: 5.36968107e-04 + syst_JES_Gjet_Stat2: 4.35437422e-04 + syst_JES_Gjet_Stat3: 9.58894502e-05 + syst_JES_Gjet_Stat4: 6.79448902e-04 + syst_JES_Gjet_Stat5: 7.44883714e-04 + syst_JES_Gjet_Stat6: 2.75790623e-03 + syst_JES_Gjet_Stat7: 3.40566245e-03 + syst_JES_Gjet_Stat8: 1.98464254e-03 + syst_JES_Gjet_Stat9: 5.64347916e-03 + syst_JES_Gjet_Veto: 1.13468011e-01 + syst_JES_Gjet_dPhi: 1.58300063e-02 + syst_JES_LArESZee: 4.08900633e-01 + syst_JES_LArEsmear: 3.18755345e-02 + syst_JES_LAr_JVT: 4.45211590e-02 + syst_JES_MJB_Alpha: 1.22850164e-03 + syst_JES_MJB_Asym: 1.15213728e-02 + syst_JES_MJB_Beta: 6.55753996e-04 + syst_JES_MJB_Stat1: 3.13241389e-04 + syst_JES_MJB_Stat10: 2.49848329e-06 + syst_JES_MJB_Stat11: 4.83590960e-06 + syst_JES_MJB_Stat12: 2.34606282e-06 + syst_JES_MJB_Stat13: 5.80325508e-07 + syst_JES_MJB_Stat14: 3.37616987e-08 + syst_JES_MJB_Stat15: 1.55997058e-11 + syst_JES_MJB_Stat16: 1.91644935e-14 syst_JES_MJB_Stat2: 0.0 - syst_JES_MJB_Stat3: 0.001701739918436422 - syst_JES_MJB_Stat4: 0.000766778892510742 - syst_JES_MJB_Stat5: 1.5926207175595826e-09 - syst_JES_MJB_Stat6: 1.3080289188985847e-07 - syst_JES_MJB_Stat7: 1.1774471294918391e-09 - syst_JES_MJB_Stat8: 1.107039110013073e-09 - syst_JES_MJB_Stat9: 4.2054193510950704e-15 - syst_JES_MJB_Threshold: 0.0135463389149984 - syst_JES_Pileup_MuOffset: 0.02626389917738796 - syst_JES_Pileup_NPVOffset: 0.031130629611365073 - syst_JES_Pileup_Pt_term: 0.05650220526669734 - syst_JES_PunchThrough_MC15: 0.0029367943807279053 + syst_JES_MJB_Stat3: 1.70173992e-03 + syst_JES_MJB_Stat4: 7.66778893e-04 + syst_JES_MJB_Stat5: 1.59262072e-09 + syst_JES_MJB_Stat6: 1.30802892e-07 + syst_JES_MJB_Stat7: 1.17744713e-09 + syst_JES_MJB_Stat8: 1.10703911e-09 + syst_JES_MJB_Stat9: 4.20541935e-15 + syst_JES_MJB_Threshold: 1.35463389e-02 + syst_JES_Pileup_MuOffset: 2.62638992e-02 + syst_JES_Pileup_NPVOffset: 3.11306296e-02 + syst_JES_Pileup_Pt_term: 5.65022053e-02 + syst_JES_PunchThrough_MC15: 2.93679438e-03 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.26865045598323484 - syst_JES_Zjet_MuScale: 0.017000119852518685 - syst_JES_Zjet_MuSmearID: 0.0028619906970498697 - syst_JES_Zjet_MuSmearMS: 0.05685902566875377 - syst_JES_Zjet_OOC: 0.10189286186971096 - syst_JES_Zjet_Stat1: 0.001999568640982349 - syst_JES_Zjet_Stat10: 0.010574959704414954 - syst_JES_Zjet_Stat11: 0.011095201699383387 - syst_JES_Zjet_Stat12: 0.08816724604409508 - syst_JES_Zjet_Stat13: 0.04388201995122831 - syst_JES_Zjet_Stat2: 3.018098532188769e-05 - syst_JES_Zjet_Stat3: 0.0009568441880996091 - syst_JES_Zjet_Stat4: 0.0005363271481922204 - syst_JES_Zjet_Stat5: 0.0011802651089903489 - syst_JES_Zjet_Stat6: 0.0012551554594949583 - syst_JES_Zjet_Stat7: 0.0014318462094442964 - syst_JES_Zjet_Stat8: 0.0026639903809886397 - syst_JES_Zjet_Stat9: 0.004490524997146771 - syst_JES_Zjet_Veto: 0.02121011786860224 - syst_JES_Zjet_dPhi: 0.017615069542865847 + syst_JES_Zjet_MC: 2.68650456e-01 + syst_JES_Zjet_MuScale: 1.70001199e-02 + syst_JES_Zjet_MuSmearID: 2.86199070e-03 + syst_JES_Zjet_MuSmearMS: 5.68590257e-02 + syst_JES_Zjet_OOC: 1.01892862e-01 + syst_JES_Zjet_Stat1: 1.99956864e-03 + syst_JES_Zjet_Stat10: 1.05749597e-02 + syst_JES_Zjet_Stat11: 1.10952017e-02 + syst_JES_Zjet_Stat12: 8.81672460e-02 + syst_JES_Zjet_Stat13: 4.38820200e-02 + syst_JES_Zjet_Stat2: 3.01809853e-05 + syst_JES_Zjet_Stat3: 9.56844188e-04 + syst_JES_Zjet_Stat4: 5.36327148e-04 + syst_JES_Zjet_Stat5: 1.18026511e-03 + syst_JES_Zjet_Stat6: 1.25515546e-03 + syst_JES_Zjet_Stat7: 1.43184621e-03 + syst_JES_Zjet_Stat8: 2.66399038e-03 + syst_JES_Zjet_Stat9: 4.49052500e-03 + syst_JES_Zjet_Veto: 2.12101179e-02 + syst_JES_Zjet_dPhi: 1.76150695e-02 syst_PRW: 0.0 syst_Unfolding_bias: 0.01652 - syst_cleaning: 0.08764177086298519 + syst_cleaning: 8.76417709e-02 syst_lumi: 0.3381 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.07102045620805318 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 0.10965538324678821 - syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.004235544002840721 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 7.10204562e-02 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 1.09655383e-01 + syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 4.23554400e-03 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 0.2392508463934872 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0367048062247984 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.06927046773337105 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 2.39250846e-01 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 3.67048062e-02 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 6.92704677e-02 - stat: 0.06978 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.07545934534568928 - syst_JER_NP1: 0.003080004342529406 - syst_JER_NP2: 0.02634613254350627 - syst_JER_NP3: 0.013297625464721135 - syst_JER_NP4: 0.0001641278998220595 - syst_JER_NP5: 0.007933434439131644 - syst_JER_NP6: 4.865535196666447e-07 - syst_JER_NP7: 8.134196702809687e-11 - syst_JER_NP8: 0.009731387054269293 - syst_JES_EtaIntercalibration_Modelling: 0.24422768065884753 + syst_JER_NP0: 7.54593453e-02 + syst_JER_NP1: 3.08000434e-03 + syst_JER_NP2: 2.63461325e-02 + syst_JER_NP3: 1.32976255e-02 + syst_JER_NP4: 1.64127900e-04 + syst_JER_NP5: 7.93343444e-03 + syst_JER_NP6: 4.86553520e-07 + syst_JER_NP7: 8.13419670e-11 + syst_JER_NP8: 9.73138705e-03 + syst_JES_EtaIntercalibration_Modelling: 2.44227681e-01 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 1.2731245922925218e-05 - syst_JES_EtaIntercalibration_Stat101: 4.714128627859023e-05 - syst_JES_EtaIntercalibration_Stat102: 8.784820814905676e-06 - syst_JES_EtaIntercalibration_Stat103: 6.567814457641141e-08 + syst_JES_EtaIntercalibration_Stat100: 1.27312459e-05 + syst_JES_EtaIntercalibration_Stat101: 4.71412863e-05 + syst_JES_EtaIntercalibration_Stat102: 8.78482081e-06 + syst_JES_EtaIntercalibration_Stat103: 6.56781446e-08 syst_JES_EtaIntercalibration_Stat104: 0.0 syst_JES_EtaIntercalibration_Stat105: 0.0 syst_JES_EtaIntercalibration_Stat106: 0.0 @@ -27731,170 +27731,170 @@ bins: syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 syst_JES_EtaIntercalibration_Stat110: 0.0 - syst_JES_EtaIntercalibration_Stat111: 3.135011961699668e-13 - syst_JES_EtaIntercalibration_Stat112: 1.1563005956497645e-06 - syst_JES_EtaIntercalibration_Stat113: 3.866749636322476e-05 - syst_JES_EtaIntercalibration_Stat114: 7.002088474162549e-05 - syst_JES_EtaIntercalibration_Stat115: 1.1263194973008325e-05 - syst_JES_EtaIntercalibration_Stat116: 1.4340598921093743e-05 + syst_JES_EtaIntercalibration_Stat111: 3.13501196e-13 + syst_JES_EtaIntercalibration_Stat112: 1.15630060e-06 + syst_JES_EtaIntercalibration_Stat113: 3.86674964e-05 + syst_JES_EtaIntercalibration_Stat114: 7.00208847e-05 + syst_JES_EtaIntercalibration_Stat115: 1.12631950e-05 + syst_JES_EtaIntercalibration_Stat116: 1.43405989e-05 syst_JES_EtaIntercalibration_Stat117: 0.0 syst_JES_EtaIntercalibration_Stat118: 0.0 - syst_JES_EtaIntercalibration_Stat119: 2.997313098908689e-05 + syst_JES_EtaIntercalibration_Stat119: 2.99731310e-05 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 9.551274509195095e-05 - syst_JES_EtaIntercalibration_Stat121: 0.00014951564031899807 - syst_JES_EtaIntercalibration_Stat122: 4.955745274930905e-05 - syst_JES_EtaIntercalibration_Stat123: 9.164709324359393e-07 + syst_JES_EtaIntercalibration_Stat120: 9.55127451e-05 + syst_JES_EtaIntercalibration_Stat121: 1.49515640e-04 + syst_JES_EtaIntercalibration_Stat122: 4.95574527e-05 + syst_JES_EtaIntercalibration_Stat123: 9.16470932e-07 syst_JES_EtaIntercalibration_Stat124: 0.0 syst_JES_EtaIntercalibration_Stat125: 0.0 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 syst_JES_EtaIntercalibration_Stat128: 0.0 syst_JES_EtaIntercalibration_Stat129: 0.0 - syst_JES_EtaIntercalibration_Stat13: 3.011170779003297e-05 + syst_JES_EtaIntercalibration_Stat13: 3.01117078e-05 syst_JES_EtaIntercalibration_Stat130: 0.0 - syst_JES_EtaIntercalibration_Stat131: 2.8990161693236553e-06 - syst_JES_EtaIntercalibration_Stat132: 0.0005734540260561434 - syst_JES_EtaIntercalibration_Stat133: 0.0014780856225198862 - syst_JES_EtaIntercalibration_Stat134: 0.0012992509024434041 - syst_JES_EtaIntercalibration_Stat135: 8.203205208179301e-05 + syst_JES_EtaIntercalibration_Stat131: 2.89901617e-06 + syst_JES_EtaIntercalibration_Stat132: 5.73454026e-04 + syst_JES_EtaIntercalibration_Stat133: 1.47808562e-03 + syst_JES_EtaIntercalibration_Stat134: 1.29925090e-03 + syst_JES_EtaIntercalibration_Stat135: 8.20320521e-05 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 - syst_JES_EtaIntercalibration_Stat138: 3.385162237648293e-05 - syst_JES_EtaIntercalibration_Stat139: 0.0009151479812030402 - syst_JES_EtaIntercalibration_Stat14: 1.847358189415361e-11 - syst_JES_EtaIntercalibration_Stat140: 0.0016949778759618075 - syst_JES_EtaIntercalibration_Stat141: 0.00029750457139344935 - syst_JES_EtaIntercalibration_Stat142: 2.105760962217697e-05 + syst_JES_EtaIntercalibration_Stat138: 3.38516224e-05 + syst_JES_EtaIntercalibration_Stat139: 9.15147981e-04 + syst_JES_EtaIntercalibration_Stat14: 1.84735819e-11 + syst_JES_EtaIntercalibration_Stat140: 1.69497788e-03 + syst_JES_EtaIntercalibration_Stat141: 2.97504571e-04 + syst_JES_EtaIntercalibration_Stat142: 2.10576096e-05 syst_JES_EtaIntercalibration_Stat143: 0.0 syst_JES_EtaIntercalibration_Stat144: 0.0 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 syst_JES_EtaIntercalibration_Stat147: 0.0 syst_JES_EtaIntercalibration_Stat148: 0.0 - syst_JES_EtaIntercalibration_Stat149: 1.615136040709884e-05 - syst_JES_EtaIntercalibration_Stat15: 1.779194878891854e-11 - syst_JES_EtaIntercalibration_Stat150: 0.00045284468363888296 - syst_JES_EtaIntercalibration_Stat151: 0.002439899741792683 - syst_JES_EtaIntercalibration_Stat152: 0.0016531185680404173 - syst_JES_EtaIntercalibration_Stat153: 8.419730652906895e-05 + syst_JES_EtaIntercalibration_Stat149: 1.61513604e-05 + syst_JES_EtaIntercalibration_Stat15: 1.77919488e-11 + syst_JES_EtaIntercalibration_Stat150: 4.52844684e-04 + syst_JES_EtaIntercalibration_Stat151: 2.43989974e-03 + syst_JES_EtaIntercalibration_Stat152: 1.65311857e-03 + syst_JES_EtaIntercalibration_Stat153: 8.41973065e-05 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 2.2109628578541076e-05 - syst_JES_EtaIntercalibration_Stat157: 0.0014823509807059866 - syst_JES_EtaIntercalibration_Stat158: 0.002361484861268435 - syst_JES_EtaIntercalibration_Stat159: 0.0007135228868088256 + syst_JES_EtaIntercalibration_Stat156: 2.21096286e-05 + syst_JES_EtaIntercalibration_Stat157: 1.48235098e-03 + syst_JES_EtaIntercalibration_Stat158: 2.36148486e-03 + syst_JES_EtaIntercalibration_Stat159: 7.13522887e-04 syst_JES_EtaIntercalibration_Stat16: 0.0 - syst_JES_EtaIntercalibration_Stat160: 1.8003266891039525e-05 + syst_JES_EtaIntercalibration_Stat160: 1.80032669e-05 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 - syst_JES_EtaIntercalibration_Stat167: 7.67544314194301e-05 - syst_JES_EtaIntercalibration_Stat168: 0.0005804929349268602 - syst_JES_EtaIntercalibration_Stat169: 0.00544137710051417 + syst_JES_EtaIntercalibration_Stat167: 7.67544314e-05 + syst_JES_EtaIntercalibration_Stat168: 5.80492935e-04 + syst_JES_EtaIntercalibration_Stat169: 5.44137710e-03 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 0.0033227944564778603 - syst_JES_EtaIntercalibration_Stat171: 0.00010530281335629168 + syst_JES_EtaIntercalibration_Stat170: 3.32279446e-03 + syst_JES_EtaIntercalibration_Stat171: 1.05302813e-04 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 - syst_JES_EtaIntercalibration_Stat174: 4.9476137089678766e-05 - syst_JES_EtaIntercalibration_Stat175: 0.0037170096852174057 - syst_JES_EtaIntercalibration_Stat176: 0.004693129952387852 - syst_JES_EtaIntercalibration_Stat177: 0.0021044160116288793 - syst_JES_EtaIntercalibration_Stat178: 2.2093530653790942e-05 + syst_JES_EtaIntercalibration_Stat174: 4.94761371e-05 + syst_JES_EtaIntercalibration_Stat175: 3.71700969e-03 + syst_JES_EtaIntercalibration_Stat176: 4.69312995e-03 + syst_JES_EtaIntercalibration_Stat177: 2.10441601e-03 + syst_JES_EtaIntercalibration_Stat178: 2.20935307e-05 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 syst_JES_EtaIntercalibration_Stat180: 0.0 syst_JES_EtaIntercalibration_Stat181: 0.0 syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 - syst_JES_EtaIntercalibration_Stat184: 0.0001616238234295922 - syst_JES_EtaIntercalibration_Stat185: 0.005641318529386547 - syst_JES_EtaIntercalibration_Stat186: 0.016948541972688982 - syst_JES_EtaIntercalibration_Stat187: 0.01134414416119612 - syst_JES_EtaIntercalibration_Stat188: 2.7963960288262628e-05 + syst_JES_EtaIntercalibration_Stat184: 1.61623823e-04 + syst_JES_EtaIntercalibration_Stat185: 5.64131853e-03 + syst_JES_EtaIntercalibration_Stat186: 1.69485420e-02 + syst_JES_EtaIntercalibration_Stat187: 1.13441442e-02 + syst_JES_EtaIntercalibration_Stat188: 2.79639603e-05 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 - syst_JES_EtaIntercalibration_Stat191: 0.0002264485095998647 - syst_JES_EtaIntercalibration_Stat192: 0.01213545478134215 - syst_JES_EtaIntercalibration_Stat193: 0.02017961037780462 - syst_JES_EtaIntercalibration_Stat194: 0.006111640921225657 - syst_JES_EtaIntercalibration_Stat195: 0.00025501803541514475 - syst_JES_EtaIntercalibration_Stat196: 2.3044668971369498e-06 + syst_JES_EtaIntercalibration_Stat191: 2.26448510e-04 + syst_JES_EtaIntercalibration_Stat192: 1.21354548e-02 + syst_JES_EtaIntercalibration_Stat193: 2.01796104e-02 + syst_JES_EtaIntercalibration_Stat194: 6.11164092e-03 + syst_JES_EtaIntercalibration_Stat195: 2.55018035e-04 + syst_JES_EtaIntercalibration_Stat196: 2.30446690e-06 syst_JES_EtaIntercalibration_Stat197: 0.0 syst_JES_EtaIntercalibration_Stat198: 0.0 - syst_JES_EtaIntercalibration_Stat199: 2.249351899436813e-05 + syst_JES_EtaIntercalibration_Stat199: 2.24935190e-05 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 0.0029277134422617253 - syst_JES_EtaIntercalibration_Stat201: 0.010364878713713922 - syst_JES_EtaIntercalibration_Stat202: 0.0076863654609965045 - syst_JES_EtaIntercalibration_Stat203: 7.117566016553692e-05 + syst_JES_EtaIntercalibration_Stat200: 2.92771344e-03 + syst_JES_EtaIntercalibration_Stat201: 1.03648787e-02 + syst_JES_EtaIntercalibration_Stat202: 7.68636546e-03 + syst_JES_EtaIntercalibration_Stat203: 7.11756602e-05 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 - syst_JES_EtaIntercalibration_Stat206: 0.00028957505883621957 - syst_JES_EtaIntercalibration_Stat207: 0.007537222830724856 - syst_JES_EtaIntercalibration_Stat208: 0.013931064603970507 - syst_JES_EtaIntercalibration_Stat209: 0.0035941272473300106 + syst_JES_EtaIntercalibration_Stat206: 2.89575059e-04 + syst_JES_EtaIntercalibration_Stat207: 7.53722283e-03 + syst_JES_EtaIntercalibration_Stat208: 1.39310646e-02 + syst_JES_EtaIntercalibration_Stat209: 3.59412725e-03 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 0.00014759189908324915 - syst_JES_EtaIntercalibration_Stat211: 2.2233779975523734e-06 - syst_JES_EtaIntercalibration_Stat212: 9.095386234239863e-05 - syst_JES_EtaIntercalibration_Stat213: 0.00039624908832702695 - syst_JES_EtaIntercalibration_Stat214: 0.0008033587360575597 - syst_JES_EtaIntercalibration_Stat215: 0.0004912767244639216 - syst_JES_EtaIntercalibration_Stat216: 9.142168602142492e-05 + syst_JES_EtaIntercalibration_Stat210: 1.47591899e-04 + syst_JES_EtaIntercalibration_Stat211: 2.22337800e-06 + syst_JES_EtaIntercalibration_Stat212: 9.09538623e-05 + syst_JES_EtaIntercalibration_Stat213: 3.96249088e-04 + syst_JES_EtaIntercalibration_Stat214: 8.03358736e-04 + syst_JES_EtaIntercalibration_Stat215: 4.91276724e-04 + syst_JES_EtaIntercalibration_Stat216: 9.14216860e-05 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 - syst_JES_EtaIntercalibration_Stat219: 2.950573437621914e-05 + syst_JES_EtaIntercalibration_Stat219: 2.95057344e-05 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 0.0004979181559252485 - syst_JES_EtaIntercalibration_Stat221: 0.00044330318067886676 - syst_JES_EtaIntercalibration_Stat222: 0.00022059475855060564 - syst_JES_EtaIntercalibration_Stat223: 1.7736200269505306e-05 - syst_JES_EtaIntercalibration_Stat224: 4.3491693645751264e-05 - syst_JES_EtaIntercalibration_Stat225: 0.0002542693982275492 - syst_JES_EtaIntercalibration_Stat226: 0.0005984585428415239 - syst_JES_EtaIntercalibration_Stat227: 0.0003151126941270377 - syst_JES_EtaIntercalibration_Stat228: 6.095086791834801e-06 + syst_JES_EtaIntercalibration_Stat220: 4.97918156e-04 + syst_JES_EtaIntercalibration_Stat221: 4.43303181e-04 + syst_JES_EtaIntercalibration_Stat222: 2.20594759e-04 + syst_JES_EtaIntercalibration_Stat223: 1.77362003e-05 + syst_JES_EtaIntercalibration_Stat224: 4.34916936e-05 + syst_JES_EtaIntercalibration_Stat225: 2.54269398e-04 + syst_JES_EtaIntercalibration_Stat226: 5.98458543e-04 + syst_JES_EtaIntercalibration_Stat227: 3.15112694e-04 + syst_JES_EtaIntercalibration_Stat228: 6.09508679e-06 syst_JES_EtaIntercalibration_Stat229: 0.0 syst_JES_EtaIntercalibration_Stat23: 0.0 syst_JES_EtaIntercalibration_Stat230: 0.0 - syst_JES_EtaIntercalibration_Stat231: 3.332379151222142e-05 - syst_JES_EtaIntercalibration_Stat232: 0.00036547404832628 - syst_JES_EtaIntercalibration_Stat233: 0.000527122357712135 - syst_JES_EtaIntercalibration_Stat234: 0.0001828883010883966 - syst_JES_EtaIntercalibration_Stat235: 1.2921099024463826e-06 - syst_JES_EtaIntercalibration_Stat236: 4.964579438381462e-07 - syst_JES_EtaIntercalibration_Stat237: 1.1642784632552472e-06 - syst_JES_EtaIntercalibration_Stat238: 1.369026559274874e-06 - syst_JES_EtaIntercalibration_Stat239: 6.574864865531458e-10 + syst_JES_EtaIntercalibration_Stat231: 3.33237915e-05 + syst_JES_EtaIntercalibration_Stat232: 3.65474048e-04 + syst_JES_EtaIntercalibration_Stat233: 5.27122358e-04 + syst_JES_EtaIntercalibration_Stat234: 1.82888301e-04 + syst_JES_EtaIntercalibration_Stat235: 1.29210990e-06 + syst_JES_EtaIntercalibration_Stat236: 4.96457944e-07 + syst_JES_EtaIntercalibration_Stat237: 1.16427846e-06 + syst_JES_EtaIntercalibration_Stat238: 1.36902656e-06 + syst_JES_EtaIntercalibration_Stat239: 6.57486487e-10 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 - syst_JES_EtaIntercalibration_Stat242: 4.949335182628068e-25 - syst_JES_EtaIntercalibration_Stat243: 7.824874567684776e-07 - syst_JES_EtaIntercalibration_Stat244: 1.0837003368090277e-06 - syst_JES_EtaIntercalibration_Stat245: 2.6914681866966213e-07 + syst_JES_EtaIntercalibration_Stat242: 4.94933518e-25 + syst_JES_EtaIntercalibration_Stat243: 7.82487457e-07 + syst_JES_EtaIntercalibration_Stat244: 1.08370034e-06 + syst_JES_EtaIntercalibration_Stat245: 2.69146819e-07 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 - syst_JES_EtaIntercalibration_Stat27: 1.943357082473522e-12 - syst_JES_EtaIntercalibration_Stat28: 1.2116347656464418e-06 - syst_JES_EtaIntercalibration_Stat29: 1.0714586592201866e-05 + syst_JES_EtaIntercalibration_Stat27: 1.94335708e-12 + syst_JES_EtaIntercalibration_Stat28: 1.21163477e-06 + syst_JES_EtaIntercalibration_Stat29: 1.07145866e-05 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 1.0812940616724019e-05 - syst_JES_EtaIntercalibration_Stat31: 2.803324232050228e-13 + syst_JES_EtaIntercalibration_Stat30: 1.08129406e-05 + syst_JES_EtaIntercalibration_Stat31: 2.80332423e-13 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 - syst_JES_EtaIntercalibration_Stat34: 1.7588975950861948e-14 - syst_JES_EtaIntercalibration_Stat35: 3.000971688491724e-05 - syst_JES_EtaIntercalibration_Stat36: 3.1532260639459385e-05 - syst_JES_EtaIntercalibration_Stat37: 2.093976538837052e-08 - syst_JES_EtaIntercalibration_Stat38: 1.2003459751567461e-11 + syst_JES_EtaIntercalibration_Stat34: 1.75889760e-14 + syst_JES_EtaIntercalibration_Stat35: 3.00097169e-05 + syst_JES_EtaIntercalibration_Stat36: 3.15322606e-05 + syst_JES_EtaIntercalibration_Stat37: 2.09397654e-08 + syst_JES_EtaIntercalibration_Stat38: 1.20034598e-11 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 syst_JES_EtaIntercalibration_Stat40: 0.0 @@ -27905,21 +27905,21 @@ bins: syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 syst_JES_EtaIntercalibration_Stat47: 0.0 - syst_JES_EtaIntercalibration_Stat48: 1.1972801207319865e-12 - syst_JES_EtaIntercalibration_Stat49: 1.8718305558997586e-11 - syst_JES_EtaIntercalibration_Stat5: 1.1578759648597946e-12 - syst_JES_EtaIntercalibration_Stat50: 1.2491098758215787e-06 - syst_JES_EtaIntercalibration_Stat51: 1.007035709731785e-05 - syst_JES_EtaIntercalibration_Stat52: 1.0717727699969802e-05 - syst_JES_EtaIntercalibration_Stat53: 1.2634693966614308e-11 - syst_JES_EtaIntercalibration_Stat54: 9.471719841190405e-12 + syst_JES_EtaIntercalibration_Stat48: 1.19728012e-12 + syst_JES_EtaIntercalibration_Stat49: 1.87183056e-11 + syst_JES_EtaIntercalibration_Stat5: 1.15787596e-12 + syst_JES_EtaIntercalibration_Stat50: 1.24910988e-06 + syst_JES_EtaIntercalibration_Stat51: 1.00703571e-05 + syst_JES_EtaIntercalibration_Stat52: 1.07177277e-05 + syst_JES_EtaIntercalibration_Stat53: 1.26346940e-11 + syst_JES_EtaIntercalibration_Stat54: 9.47171984e-12 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 1.6581352199081954e-13 - syst_JES_EtaIntercalibration_Stat57: 3.249528402564747e-05 - syst_JES_EtaIntercalibration_Stat58: 3.102983888001999e-05 - syst_JES_EtaIntercalibration_Stat59: 4.2530807548763987e-08 - syst_JES_EtaIntercalibration_Stat6: 2.1614073580655727e-12 - syst_JES_EtaIntercalibration_Stat60: 1.260582527048507e-10 + syst_JES_EtaIntercalibration_Stat56: 1.65813522e-13 + syst_JES_EtaIntercalibration_Stat57: 3.24952840e-05 + syst_JES_EtaIntercalibration_Stat58: 3.10298389e-05 + syst_JES_EtaIntercalibration_Stat59: 4.25308075e-08 + syst_JES_EtaIntercalibration_Stat6: 2.16140736e-12 + syst_JES_EtaIntercalibration_Stat60: 1.26058253e-10 syst_JES_EtaIntercalibration_Stat61: 0.0 syst_JES_EtaIntercalibration_Stat62: 0.0 syst_JES_EtaIntercalibration_Stat63: 0.0 @@ -27929,21 +27929,21 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 8.102485791409942e-11 - syst_JES_EtaIntercalibration_Stat70: 1.1578759648597946e-12 - syst_JES_EtaIntercalibration_Stat71: 1.8075958480810916e-10 - syst_JES_EtaIntercalibration_Stat72: 6.566263701679974e-07 - syst_JES_EtaIntercalibration_Stat73: 1.0947470152962283e-05 - syst_JES_EtaIntercalibration_Stat74: 7.757185249818391e-05 - syst_JES_EtaIntercalibration_Stat75: 8.549400556179364e-10 - syst_JES_EtaIntercalibration_Stat76: 9.471719841190405e-12 + syst_JES_EtaIntercalibration_Stat7: 8.10248579e-11 + syst_JES_EtaIntercalibration_Stat70: 1.15787596e-12 + syst_JES_EtaIntercalibration_Stat71: 1.80759585e-10 + syst_JES_EtaIntercalibration_Stat72: 6.56626370e-07 + syst_JES_EtaIntercalibration_Stat73: 1.09474702e-05 + syst_JES_EtaIntercalibration_Stat74: 7.75718525e-05 + syst_JES_EtaIntercalibration_Stat75: 8.54940056e-10 + syst_JES_EtaIntercalibration_Stat76: 9.47171984e-12 syst_JES_EtaIntercalibration_Stat77: 0.0 - syst_JES_EtaIntercalibration_Stat78: 1.709854599081454e-10 - syst_JES_EtaIntercalibration_Stat79: 3.354408789563371e-05 - syst_JES_EtaIntercalibration_Stat8: 1.1275739654231114e-11 - syst_JES_EtaIntercalibration_Stat80: 5.255310701328704e-05 - syst_JES_EtaIntercalibration_Stat81: 1.944900478173626e-06 - syst_JES_EtaIntercalibration_Stat82: 1.6604473516194366e-10 + syst_JES_EtaIntercalibration_Stat78: 1.70985460e-10 + syst_JES_EtaIntercalibration_Stat79: 3.35440879e-05 + syst_JES_EtaIntercalibration_Stat8: 1.12757397e-11 + syst_JES_EtaIntercalibration_Stat80: 5.25531070e-05 + syst_JES_EtaIntercalibration_Stat81: 1.94490048e-06 + syst_JES_EtaIntercalibration_Stat82: 1.66044735e-10 syst_JES_EtaIntercalibration_Stat83: 0.0 syst_JES_EtaIntercalibration_Stat84: 0.0 syst_JES_EtaIntercalibration_Stat85: 0.0 @@ -27953,118 +27953,118 @@ bins: syst_JES_EtaIntercalibration_Stat89: 0.0 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 9.994799185076208e-13 - syst_JES_EtaIntercalibration_Stat92: 9.398527343382047e-08 - syst_JES_EtaIntercalibration_Stat93: 9.864939064687628e-07 - syst_JES_EtaIntercalibration_Stat94: 1.4864519892347684e-05 - syst_JES_EtaIntercalibration_Stat95: 8.401520019871404e-05 - syst_JES_EtaIntercalibration_Stat96: 1.6418696416204912e-09 - syst_JES_EtaIntercalibration_Stat97: 9.471719841190405e-12 + syst_JES_EtaIntercalibration_Stat91: 9.99479919e-13 + syst_JES_EtaIntercalibration_Stat92: 9.39852734e-08 + syst_JES_EtaIntercalibration_Stat93: 9.86493906e-07 + syst_JES_EtaIntercalibration_Stat94: 1.48645199e-05 + syst_JES_EtaIntercalibration_Stat95: 8.40152002e-05 + syst_JES_EtaIntercalibration_Stat96: 1.64186964e-09 + syst_JES_EtaIntercalibration_Stat97: 9.47171984e-12 syst_JES_EtaIntercalibration_Stat98: 0.0 - syst_JES_EtaIntercalibration_Stat99: 1.3042398382852123e-05 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.023938485227766603 - syst_JES_Flavour_Comp: 0.07433969111450492 - syst_JES_Gjet_Generator: 0.18645838007448204 - syst_JES_Gjet_OOC: 0.1371250308113001 - syst_JES_Gjet_Purity: 0.04860506223635559 - syst_JES_Gjet_Stat1: 0.0003456307386503695 - syst_JES_Gjet_Stat10: 0.006957835439272763 - syst_JES_Gjet_Stat11: 0.012509250696984211 - syst_JES_Gjet_Stat12: 0.028966440927390442 - syst_JES_Gjet_Stat13: 0.02439786056194272 - syst_JES_Gjet_Stat14: 0.0052929737388352875 - syst_JES_Gjet_Stat15: 0.002767492366746474 - syst_JES_Gjet_Stat2: 0.00036233232901854064 - syst_JES_Gjet_Stat3: 0.00017780283080704874 - syst_JES_Gjet_Stat4: 0.00041743406509291977 - syst_JES_Gjet_Stat5: 0.00045769261245949777 - syst_JES_Gjet_Stat6: 0.001981029698793029 - syst_JES_Gjet_Stat7: 0.002103709758973419 - syst_JES_Gjet_Stat8: 0.001240588702995477 - syst_JES_Gjet_Stat9: 0.003275105303650556 - syst_JES_Gjet_Veto: 0.08070642895705397 - syst_JES_Gjet_dPhi: 0.01024714607829907 - syst_JES_LArESZee: 0.2614067089804697 - syst_JES_LArEsmear: 0.020367525009190486 - syst_JES_LAr_JVT: 0.027400005474452007 - syst_JES_MJB_Alpha: 0.0013393695345198802 - syst_JES_MJB_Asym: 0.008028878128356414 - syst_JES_MJB_Beta: 0.000751153494981605 - syst_JES_MJB_Stat1: 0.0002605870439987376 - syst_JES_MJB_Stat10: 2.105307756600095e-05 - syst_JES_MJB_Stat11: 6.769489345585825e-06 - syst_JES_MJB_Stat12: 5.321726106255375e-06 - syst_JES_MJB_Stat13: 2.1030792982434113e-06 - syst_JES_MJB_Stat14: 2.847822519558935e-07 - syst_JES_MJB_Stat15: 1.3186663717559495e-09 - syst_JES_MJB_Stat16: 7.005916097328029e-12 + syst_JES_EtaIntercalibration_Stat99: 1.30423984e-05 + syst_JES_EtaIntercalibration_TotalStat_MJB: 2.39384852e-02 + syst_JES_Flavour_Comp: 7.43396911e-02 + syst_JES_Gjet_Generator: 1.86458380e-01 + syst_JES_Gjet_OOC: 1.37125031e-01 + syst_JES_Gjet_Purity: 4.86050622e-02 + syst_JES_Gjet_Stat1: 3.45630739e-04 + syst_JES_Gjet_Stat10: 6.95783544e-03 + syst_JES_Gjet_Stat11: 1.25092507e-02 + syst_JES_Gjet_Stat12: 2.89664409e-02 + syst_JES_Gjet_Stat13: 2.43978606e-02 + syst_JES_Gjet_Stat14: 5.29297374e-03 + syst_JES_Gjet_Stat15: 2.76749237e-03 + syst_JES_Gjet_Stat2: 3.62332329e-04 + syst_JES_Gjet_Stat3: 1.77802831e-04 + syst_JES_Gjet_Stat4: 4.17434065e-04 + syst_JES_Gjet_Stat5: 4.57692612e-04 + syst_JES_Gjet_Stat6: 1.98102970e-03 + syst_JES_Gjet_Stat7: 2.10370976e-03 + syst_JES_Gjet_Stat8: 1.24058870e-03 + syst_JES_Gjet_Stat9: 3.27510530e-03 + syst_JES_Gjet_Veto: 8.07064290e-02 + syst_JES_Gjet_dPhi: 1.02471461e-02 + syst_JES_LArESZee: 2.61406709e-01 + syst_JES_LArEsmear: 2.03675250e-02 + syst_JES_LAr_JVT: 2.74000055e-02 + syst_JES_MJB_Alpha: 1.33936953e-03 + syst_JES_MJB_Asym: 8.02887813e-03 + syst_JES_MJB_Beta: 7.51153495e-04 + syst_JES_MJB_Stat1: 2.60587044e-04 + syst_JES_MJB_Stat10: 2.10530776e-05 + syst_JES_MJB_Stat11: 6.76948935e-06 + syst_JES_MJB_Stat12: 5.32172611e-06 + syst_JES_MJB_Stat13: 2.10307930e-06 + syst_JES_MJB_Stat14: 2.84782252e-07 + syst_JES_MJB_Stat15: 1.31866637e-09 + syst_JES_MJB_Stat16: 7.00591610e-12 syst_JES_MJB_Stat2: 0.0 - syst_JES_MJB_Stat3: 0.0019520212601301247 - syst_JES_MJB_Stat4: 0.0002827572943356192 - syst_JES_MJB_Stat5: 1.3371432234431734e-07 - syst_JES_MJB_Stat6: 3.0944661522627774e-06 - syst_JES_MJB_Stat7: 9.885478476520885e-08 - syst_JES_MJB_Stat8: 9.293952388620025e-08 - syst_JES_MJB_Stat9: 8.392650932050236e-12 - syst_JES_MJB_Threshold: 0.010992521855789054 - syst_JES_Pileup_MuOffset: 0.020358032198618807 - syst_JES_Pileup_NPVOffset: 0.022966551221287018 - syst_JES_Pileup_Pt_term: 0.03511809611866794 - syst_JES_PunchThrough_MC15: 0.0022472117723970745 + syst_JES_MJB_Stat3: 1.95202126e-03 + syst_JES_MJB_Stat4: 2.82757294e-04 + syst_JES_MJB_Stat5: 1.33714322e-07 + syst_JES_MJB_Stat6: 3.09446615e-06 + syst_JES_MJB_Stat7: 9.88547848e-08 + syst_JES_MJB_Stat8: 9.29395239e-08 + syst_JES_MJB_Stat9: 8.39265093e-12 + syst_JES_MJB_Threshold: 1.09925219e-02 + syst_JES_Pileup_MuOffset: 2.03580322e-02 + syst_JES_Pileup_NPVOffset: 2.29665512e-02 + syst_JES_Pileup_Pt_term: 3.51180961e-02 + syst_JES_PunchThrough_MC15: 2.24721177e-03 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.15700025477686333 - syst_JES_Zjet_MuScale: 0.010001550517294806 - syst_JES_Zjet_MuSmearID: 0.0017408542385851837 - syst_JES_Zjet_MuSmearMS: 0.03767600927646133 - syst_JES_Zjet_OOC: 0.0624550004002882 - syst_JES_Zjet_Stat1: 0.001694974041099155 - syst_JES_Zjet_Stat10: 0.005599600409850689 - syst_JES_Zjet_Stat11: 0.00545674875727296 - syst_JES_Zjet_Stat12: 0.0473754437973936 - syst_JES_Zjet_Stat13: 0.03397029437611632 - syst_JES_Zjet_Stat2: 1.854160389502483e-05 - syst_JES_Zjet_Stat3: 0.0007751420380001331 - syst_JES_Zjet_Stat4: 0.0006083010441385088 - syst_JES_Zjet_Stat5: 0.0009824867263734406 - syst_JES_Zjet_Stat6: 0.0007727603056575823 - syst_JES_Zjet_Stat7: 0.0009236734975087247 - syst_JES_Zjet_Stat8: 0.0018402194672103652 - syst_JES_Zjet_Stat9: 0.002585280400652896 - syst_JES_Zjet_Veto: 0.012787546940285303 - syst_JES_Zjet_dPhi: 0.010859289939954638 + syst_JES_Zjet_MC: 1.57000255e-01 + syst_JES_Zjet_MuScale: 1.00015505e-02 + syst_JES_Zjet_MuSmearID: 1.74085424e-03 + syst_JES_Zjet_MuSmearMS: 3.76760093e-02 + syst_JES_Zjet_OOC: 6.24550004e-02 + syst_JES_Zjet_Stat1: 1.69497404e-03 + syst_JES_Zjet_Stat10: 5.59960041e-03 + syst_JES_Zjet_Stat11: 5.45674876e-03 + syst_JES_Zjet_Stat12: 4.73754438e-02 + syst_JES_Zjet_Stat13: 3.39702944e-02 + syst_JES_Zjet_Stat2: 1.85416039e-05 + syst_JES_Zjet_Stat3: 7.75142038e-04 + syst_JES_Zjet_Stat4: 6.08301044e-04 + syst_JES_Zjet_Stat5: 9.82486726e-04 + syst_JES_Zjet_Stat6: 7.72760306e-04 + syst_JES_Zjet_Stat7: 9.23673498e-04 + syst_JES_Zjet_Stat8: 1.84021947e-03 + syst_JES_Zjet_Stat9: 2.58528040e-03 + syst_JES_Zjet_Veto: 1.27875469e-02 + syst_JES_Zjet_dPhi: 1.08592899e-02 syst_PRW: 0.0 syst_Unfolding_bias: 0.010151 - syst_cleaning: 0.05412658773652741 + syst_cleaning: 5.41265877e-02 syst_lumi: 0.2077 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.04354570328976212 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 0.05584094734153424 - syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.003093625866196493 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 4.35457033e-02 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 5.58409473e-02 + syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 3.09362587e-03 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 0.12182709335365428 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.02715560163207584 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.04358074345396141 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 1.21827093e-01 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 2.71556016e-02 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 4.35807435e-02 - stat: 0.04934 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.04358338989798752 - syst_JER_NP1: 0.002570405026450112 - syst_JER_NP2: 0.016341960561695158 - syst_JER_NP3: 0.007134382313837688 - syst_JER_NP4: 2.450014489753071e-05 - syst_JER_NP5: 0.004413864633175784 - syst_JER_NP6: 5.664855404156403e-08 - syst_JER_NP7: 1.0787260402901191e-11 - syst_JER_NP8: 0.00576670755284157 - syst_JES_EtaIntercalibration_Modelling: 0.16406659471080634 + syst_JER_NP0: 4.35833899e-02 + syst_JER_NP1: 2.57040503e-03 + syst_JER_NP2: 1.63419606e-02 + syst_JER_NP3: 7.13438231e-03 + syst_JER_NP4: 2.45001449e-05 + syst_JER_NP5: 4.41386463e-03 + syst_JER_NP6: 5.66485540e-08 + syst_JER_NP7: 1.07872604e-11 + syst_JER_NP8: 5.76670755e-03 + syst_JES_EtaIntercalibration_Modelling: 1.64066595e-01 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 9.399387639628445e-07 - syst_JES_EtaIntercalibration_Stat101: 1.9032888692996657e-05 - syst_JES_EtaIntercalibration_Stat102: 8.310502511882178e-07 - syst_JES_EtaIntercalibration_Stat103: 7.979095609779343e-09 + syst_JES_EtaIntercalibration_Stat100: 9.39938764e-07 + syst_JES_EtaIntercalibration_Stat101: 1.90328887e-05 + syst_JES_EtaIntercalibration_Stat102: 8.31050251e-07 + syst_JES_EtaIntercalibration_Stat103: 7.97909561e-09 syst_JES_EtaIntercalibration_Stat104: 0.0 syst_JES_EtaIntercalibration_Stat105: 0.0 syst_JES_EtaIntercalibration_Stat106: 0.0 @@ -28073,170 +28073,170 @@ bins: syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 syst_JES_EtaIntercalibration_Stat110: 0.0 - syst_JES_EtaIntercalibration_Stat111: 4.106692464745808e-14 - syst_JES_EtaIntercalibration_Stat112: 1.8060219177795156e-07 - syst_JES_EtaIntercalibration_Stat113: 5.146521422281267e-06 - syst_JES_EtaIntercalibration_Stat114: 4.780062133487388e-06 - syst_JES_EtaIntercalibration_Stat115: 6.597212820578096e-05 - syst_JES_EtaIntercalibration_Stat116: 9.278975103384371e-06 + syst_JES_EtaIntercalibration_Stat111: 4.10669246e-14 + syst_JES_EtaIntercalibration_Stat112: 1.80602192e-07 + syst_JES_EtaIntercalibration_Stat113: 5.14652142e-06 + syst_JES_EtaIntercalibration_Stat114: 4.78006213e-06 + syst_JES_EtaIntercalibration_Stat115: 6.59721282e-05 + syst_JES_EtaIntercalibration_Stat116: 9.27897510e-06 syst_JES_EtaIntercalibration_Stat117: 0.0 syst_JES_EtaIntercalibration_Stat118: 0.0 - syst_JES_EtaIntercalibration_Stat119: 1.2912437741876803e-05 + syst_JES_EtaIntercalibration_Stat119: 1.29124377e-05 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 2.983495044406811e-05 - syst_JES_EtaIntercalibration_Stat121: 3.391705876104235e-05 - syst_JES_EtaIntercalibration_Stat122: 1.5024074039687105e-05 - syst_JES_EtaIntercalibration_Stat123: 1.4895802789712276e-06 + syst_JES_EtaIntercalibration_Stat120: 2.98349504e-05 + syst_JES_EtaIntercalibration_Stat121: 3.39170588e-05 + syst_JES_EtaIntercalibration_Stat122: 1.50240740e-05 + syst_JES_EtaIntercalibration_Stat123: 1.48958028e-06 syst_JES_EtaIntercalibration_Stat124: 0.0 syst_JES_EtaIntercalibration_Stat125: 0.0 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 syst_JES_EtaIntercalibration_Stat128: 0.0 syst_JES_EtaIntercalibration_Stat129: 0.0 - syst_JES_EtaIntercalibration_Stat13: 1.296440082956816e-05 + syst_JES_EtaIntercalibration_Stat13: 1.29644008e-05 syst_JES_EtaIntercalibration_Stat130: 0.0 - syst_JES_EtaIntercalibration_Stat131: 4.539233938672912e-07 - syst_JES_EtaIntercalibration_Stat132: 0.0002240023399431354 - syst_JES_EtaIntercalibration_Stat133: 0.0005699523203742572 - syst_JES_EtaIntercalibration_Stat134: 0.0004669582074447348 - syst_JES_EtaIntercalibration_Stat135: 3.8115728967842134e-05 + syst_JES_EtaIntercalibration_Stat131: 4.53923394e-07 + syst_JES_EtaIntercalibration_Stat132: 2.24002340e-04 + syst_JES_EtaIntercalibration_Stat133: 5.69952320e-04 + syst_JES_EtaIntercalibration_Stat134: 4.66958207e-04 + syst_JES_EtaIntercalibration_Stat135: 3.81157290e-05 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 - syst_JES_EtaIntercalibration_Stat138: 1.2540917511963588e-05 - syst_JES_EtaIntercalibration_Stat139: 0.00031534666638478995 - syst_JES_EtaIntercalibration_Stat14: 2.1942572336670102e-12 - syst_JES_EtaIntercalibration_Stat140: 0.0005677493901361763 - syst_JES_EtaIntercalibration_Stat141: 6.235345379367529e-05 - syst_JES_EtaIntercalibration_Stat142: 3.3371593470345403e-06 + syst_JES_EtaIntercalibration_Stat138: 1.25409175e-05 + syst_JES_EtaIntercalibration_Stat139: 3.15346666e-04 + syst_JES_EtaIntercalibration_Stat14: 2.19425723e-12 + syst_JES_EtaIntercalibration_Stat140: 5.67749390e-04 + syst_JES_EtaIntercalibration_Stat141: 6.23534538e-05 + syst_JES_EtaIntercalibration_Stat142: 3.33715935e-06 syst_JES_EtaIntercalibration_Stat143: 0.0 syst_JES_EtaIntercalibration_Stat144: 0.0 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 syst_JES_EtaIntercalibration_Stat147: 0.0 syst_JES_EtaIntercalibration_Stat148: 0.0 - syst_JES_EtaIntercalibration_Stat149: 2.302387636780566e-06 - syst_JES_EtaIntercalibration_Stat15: 2.112406043010434e-12 - syst_JES_EtaIntercalibration_Stat150: 0.00014653149832032702 - syst_JES_EtaIntercalibration_Stat151: 0.0009984465471421092 - syst_JES_EtaIntercalibration_Stat152: 0.0006464132946497929 - syst_JES_EtaIntercalibration_Stat153: 3.918004809529972e-05 + syst_JES_EtaIntercalibration_Stat149: 2.30238764e-06 + syst_JES_EtaIntercalibration_Stat15: 2.11240604e-12 + syst_JES_EtaIntercalibration_Stat150: 1.46531498e-04 + syst_JES_EtaIntercalibration_Stat151: 9.98446547e-04 + syst_JES_EtaIntercalibration_Stat152: 6.46413295e-04 + syst_JES_EtaIntercalibration_Stat153: 3.91800481e-05 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 2.514071749807973e-06 - syst_JES_EtaIntercalibration_Stat157: 0.0005005296625326016 - syst_JES_EtaIntercalibration_Stat158: 0.000797818043165232 - syst_JES_EtaIntercalibration_Stat159: 0.00023633182180992892 + syst_JES_EtaIntercalibration_Stat156: 2.51407175e-06 + syst_JES_EtaIntercalibration_Stat157: 5.00529663e-04 + syst_JES_EtaIntercalibration_Stat158: 7.97818043e-04 + syst_JES_EtaIntercalibration_Stat159: 2.36331822e-04 syst_JES_EtaIntercalibration_Stat16: 0.0 - syst_JES_EtaIntercalibration_Stat160: 6.515278888888794e-06 + syst_JES_EtaIntercalibration_Stat160: 6.51527889e-06 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 - syst_JES_EtaIntercalibration_Stat167: 3.563914841855792e-05 - syst_JES_EtaIntercalibration_Stat168: 0.0001915399370888484 - syst_JES_EtaIntercalibration_Stat169: 0.002201257084031759 + syst_JES_EtaIntercalibration_Stat167: 3.56391484e-05 + syst_JES_EtaIntercalibration_Stat168: 1.91539937e-04 + syst_JES_EtaIntercalibration_Stat169: 2.20125708e-03 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 0.0013172609049368314 - syst_JES_EtaIntercalibration_Stat171: 3.690082105793853e-05 + syst_JES_EtaIntercalibration_Stat170: 1.31726090e-03 + syst_JES_EtaIntercalibration_Stat171: 3.69008211e-05 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 - syst_JES_EtaIntercalibration_Stat174: 1.066078492005347e-05 - syst_JES_EtaIntercalibration_Stat175: 0.0015370662802885243 - syst_JES_EtaIntercalibration_Stat176: 0.0016525693540665701 - syst_JES_EtaIntercalibration_Stat177: 0.0008662067824717144 - syst_JES_EtaIntercalibration_Stat178: 1.6103761889695215e-05 + syst_JES_EtaIntercalibration_Stat174: 1.06607849e-05 + syst_JES_EtaIntercalibration_Stat175: 1.53706628e-03 + syst_JES_EtaIntercalibration_Stat176: 1.65256935e-03 + syst_JES_EtaIntercalibration_Stat177: 8.66206782e-04 + syst_JES_EtaIntercalibration_Stat178: 1.61037619e-05 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 syst_JES_EtaIntercalibration_Stat180: 0.0 syst_JES_EtaIntercalibration_Stat181: 0.0 syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 - syst_JES_EtaIntercalibration_Stat184: 8.577197954460419e-05 - syst_JES_EtaIntercalibration_Stat185: 0.0026451179557819347 - syst_JES_EtaIntercalibration_Stat186: 0.008349577878551704 - syst_JES_EtaIntercalibration_Stat187: 0.005531821648426493 - syst_JES_EtaIntercalibration_Stat188: 6.521171299211925e-05 + syst_JES_EtaIntercalibration_Stat184: 8.57719795e-05 + syst_JES_EtaIntercalibration_Stat185: 2.64511796e-03 + syst_JES_EtaIntercalibration_Stat186: 8.34957788e-03 + syst_JES_EtaIntercalibration_Stat187: 5.53182165e-03 + syst_JES_EtaIntercalibration_Stat188: 6.52117130e-05 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 - syst_JES_EtaIntercalibration_Stat191: 0.0001098469735586739 - syst_JES_EtaIntercalibration_Stat192: 0.006030781955932415 - syst_JES_EtaIntercalibration_Stat193: 0.009982106528684214 - syst_JES_EtaIntercalibration_Stat194: 0.0031992765979202233 - syst_JES_EtaIntercalibration_Stat195: 9.186049463724871e-05 - syst_JES_EtaIntercalibration_Stat196: 1.616333402333813e-06 + syst_JES_EtaIntercalibration_Stat191: 1.09846974e-04 + syst_JES_EtaIntercalibration_Stat192: 6.03078196e-03 + syst_JES_EtaIntercalibration_Stat193: 9.98210653e-03 + syst_JES_EtaIntercalibration_Stat194: 3.19927660e-03 + syst_JES_EtaIntercalibration_Stat195: 9.18604946e-05 + syst_JES_EtaIntercalibration_Stat196: 1.61633340e-06 syst_JES_EtaIntercalibration_Stat197: 0.0 syst_JES_EtaIntercalibration_Stat198: 0.0 - syst_JES_EtaIntercalibration_Stat199: 4.807677721104026e-05 + syst_JES_EtaIntercalibration_Stat199: 4.80767772e-05 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 0.0021176389564795976 - syst_JES_EtaIntercalibration_Stat201: 0.007477523971877322 - syst_JES_EtaIntercalibration_Stat202: 0.004963034051867869 - syst_JES_EtaIntercalibration_Stat203: 1.48368839720475e-05 + syst_JES_EtaIntercalibration_Stat200: 2.11763896e-03 + syst_JES_EtaIntercalibration_Stat201: 7.47752397e-03 + syst_JES_EtaIntercalibration_Stat202: 4.96303405e-03 + syst_JES_EtaIntercalibration_Stat203: 1.48368840e-05 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 - syst_JES_EtaIntercalibration_Stat206: 0.0001322248422196071 - syst_JES_EtaIntercalibration_Stat207: 0.005020351382124562 - syst_JES_EtaIntercalibration_Stat208: 0.009604765522905803 - syst_JES_EtaIntercalibration_Stat209: 0.0023857822092554887 + syst_JES_EtaIntercalibration_Stat206: 1.32224842e-04 + syst_JES_EtaIntercalibration_Stat207: 5.02035138e-03 + syst_JES_EtaIntercalibration_Stat208: 9.60476552e-03 + syst_JES_EtaIntercalibration_Stat209: 2.38578221e-03 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 9.260685976211481e-05 - syst_JES_EtaIntercalibration_Stat211: 2.346096453153621e-06 - syst_JES_EtaIntercalibration_Stat212: 6.152250563818089e-05 - syst_JES_EtaIntercalibration_Stat213: 0.00020919247566535465 - syst_JES_EtaIntercalibration_Stat214: 0.0007211596130538648 - syst_JES_EtaIntercalibration_Stat215: 0.00026230718647227337 - syst_JES_EtaIntercalibration_Stat216: 6.497453833618211e-05 + syst_JES_EtaIntercalibration_Stat210: 9.26068598e-05 + syst_JES_EtaIntercalibration_Stat211: 2.34609645e-06 + syst_JES_EtaIntercalibration_Stat212: 6.15225056e-05 + syst_JES_EtaIntercalibration_Stat213: 2.09192476e-04 + syst_JES_EtaIntercalibration_Stat214: 7.21159613e-04 + syst_JES_EtaIntercalibration_Stat215: 2.62307186e-04 + syst_JES_EtaIntercalibration_Stat216: 6.49745383e-05 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 - syst_JES_EtaIntercalibration_Stat219: 2.7439262763556535e-05 + syst_JES_EtaIntercalibration_Stat219: 2.74392628e-05 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 0.0008223072464109749 - syst_JES_EtaIntercalibration_Stat221: 0.0011699174874750782 - syst_JES_EtaIntercalibration_Stat222: 0.0003391831391372513 - syst_JES_EtaIntercalibration_Stat223: 3.4308462396324325e-05 - syst_JES_EtaIntercalibration_Stat224: 3.4441936757997145e-05 - syst_JES_EtaIntercalibration_Stat225: 0.00021579737440478741 - syst_JES_EtaIntercalibration_Stat226: 0.0006820318760879143 - syst_JES_EtaIntercalibration_Stat227: 0.0003435856916403825 - syst_JES_EtaIntercalibration_Stat228: 1.2730573442331397e-06 + syst_JES_EtaIntercalibration_Stat220: 8.22307246e-04 + syst_JES_EtaIntercalibration_Stat221: 1.16991749e-03 + syst_JES_EtaIntercalibration_Stat222: 3.39183139e-04 + syst_JES_EtaIntercalibration_Stat223: 3.43084624e-05 + syst_JES_EtaIntercalibration_Stat224: 3.44419368e-05 + syst_JES_EtaIntercalibration_Stat225: 2.15797374e-04 + syst_JES_EtaIntercalibration_Stat226: 6.82031876e-04 + syst_JES_EtaIntercalibration_Stat227: 3.43585692e-04 + syst_JES_EtaIntercalibration_Stat228: 1.27305734e-06 syst_JES_EtaIntercalibration_Stat229: 0.0 syst_JES_EtaIntercalibration_Stat23: 0.0 syst_JES_EtaIntercalibration_Stat230: 0.0 - syst_JES_EtaIntercalibration_Stat231: 1.7320508075688774e-05 - syst_JES_EtaIntercalibration_Stat232: 0.00042534555363845056 - syst_JES_EtaIntercalibration_Stat233: 0.0005388827516259914 - syst_JES_EtaIntercalibration_Stat234: 0.00024870014073176557 - syst_JES_EtaIntercalibration_Stat235: 6.350564285951289e-06 - syst_JES_EtaIntercalibration_Stat236: 2.5148480570404253e-06 - syst_JES_EtaIntercalibration_Stat237: 6.208348089467923e-06 - syst_JES_EtaIntercalibration_Stat238: 3.833125226235115e-06 - syst_JES_EtaIntercalibration_Stat239: 1.2747893943706937e-08 + syst_JES_EtaIntercalibration_Stat231: 1.73205081e-05 + syst_JES_EtaIntercalibration_Stat232: 4.25345554e-04 + syst_JES_EtaIntercalibration_Stat233: 5.38882752e-04 + syst_JES_EtaIntercalibration_Stat234: 2.48700141e-04 + syst_JES_EtaIntercalibration_Stat235: 6.35056429e-06 + syst_JES_EtaIntercalibration_Stat236: 2.51484806e-06 + syst_JES_EtaIntercalibration_Stat237: 6.20834809e-06 + syst_JES_EtaIntercalibration_Stat238: 3.83312523e-06 + syst_JES_EtaIntercalibration_Stat239: 1.27478939e-08 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 - syst_JES_EtaIntercalibration_Stat242: 3.441931364800873e-20 - syst_JES_EtaIntercalibration_Stat243: 1.986951888572041e-06 - syst_JES_EtaIntercalibration_Stat244: 4.080737525252022e-06 - syst_JES_EtaIntercalibration_Stat245: 3.349481303127396e-06 + syst_JES_EtaIntercalibration_Stat242: 3.44193136e-20 + syst_JES_EtaIntercalibration_Stat243: 1.98695189e-06 + syst_JES_EtaIntercalibration_Stat244: 4.08073753e-06 + syst_JES_EtaIntercalibration_Stat245: 3.34948130e-06 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 - syst_JES_EtaIntercalibration_Stat27: 2.4758691216419334e-13 - syst_JES_EtaIntercalibration_Stat28: 1.884546923661759e-07 - syst_JES_EtaIntercalibration_Stat29: 6.60249084954008e-06 + syst_JES_EtaIntercalibration_Stat27: 2.47586912e-13 + syst_JES_EtaIntercalibration_Stat28: 1.88454692e-07 + syst_JES_EtaIntercalibration_Stat29: 6.60249085e-06 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 6.663827503477276e-06 - syst_JES_EtaIntercalibration_Stat31: 3.689268220121709e-14 + syst_JES_EtaIntercalibration_Stat30: 6.66382750e-06 + syst_JES_EtaIntercalibration_Stat31: 3.68926822e-14 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 - syst_JES_EtaIntercalibration_Stat34: 2.5123396963786565e-15 - syst_JES_EtaIntercalibration_Stat35: 1.2929993959554072e-05 - syst_JES_EtaIntercalibration_Stat36: 1.3147426513211627e-05 - syst_JES_EtaIntercalibration_Stat37: 2.8820558550928536e-09 - syst_JES_EtaIntercalibration_Stat38: 1.3912073630034454e-12 + syst_JES_EtaIntercalibration_Stat34: 2.51233970e-15 + syst_JES_EtaIntercalibration_Stat35: 1.29299940e-05 + syst_JES_EtaIntercalibration_Stat36: 1.31474265e-05 + syst_JES_EtaIntercalibration_Stat37: 2.88205586e-09 + syst_JES_EtaIntercalibration_Stat38: 1.39120736e-12 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 syst_JES_EtaIntercalibration_Stat40: 0.0 @@ -28247,21 +28247,21 @@ bins: syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 syst_JES_EtaIntercalibration_Stat47: 0.0 - syst_JES_EtaIntercalibration_Stat48: 1.5146784312189832e-13 - syst_JES_EtaIntercalibration_Stat49: 2.221639259645904e-12 - syst_JES_EtaIntercalibration_Stat5: 1.4505925513389345e-13 - syst_JES_EtaIntercalibration_Stat50: 1.9422861703415385e-07 - syst_JES_EtaIntercalibration_Stat51: 6.311464641428326e-06 - syst_JES_EtaIntercalibration_Stat52: 6.577680858432324e-06 - syst_JES_EtaIntercalibration_Stat53: 1.4717495100389876e-12 - syst_JES_EtaIntercalibration_Stat54: 1.09967905772548e-12 + syst_JES_EtaIntercalibration_Stat48: 1.51467843e-13 + syst_JES_EtaIntercalibration_Stat49: 2.22163926e-12 + syst_JES_EtaIntercalibration_Stat5: 1.45059255e-13 + syst_JES_EtaIntercalibration_Stat50: 1.94228617e-07 + syst_JES_EtaIntercalibration_Stat51: 6.31146464e-06 + syst_JES_EtaIntercalibration_Stat52: 6.57768086e-06 + syst_JES_EtaIntercalibration_Stat53: 1.47174951e-12 + syst_JES_EtaIntercalibration_Stat54: 1.09967906e-12 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 2.1984523533613367e-14 - syst_JES_EtaIntercalibration_Stat57: 1.312693782837414e-05 - syst_JES_EtaIntercalibration_Stat58: 1.3009010770180605e-05 - syst_JES_EtaIntercalibration_Stat59: 5.573651832506225e-09 - syst_JES_EtaIntercalibration_Stat6: 2.7526983906705076e-13 - syst_JES_EtaIntercalibration_Stat60: 1.4581555704039265e-11 + syst_JES_EtaIntercalibration_Stat56: 2.19845235e-14 + syst_JES_EtaIntercalibration_Stat57: 1.31269378e-05 + syst_JES_EtaIntercalibration_Stat58: 1.30090108e-05 + syst_JES_EtaIntercalibration_Stat59: 5.57365183e-09 + syst_JES_EtaIntercalibration_Stat6: 2.75269839e-13 + syst_JES_EtaIntercalibration_Stat60: 1.45815557e-11 syst_JES_EtaIntercalibration_Stat61: 0.0 syst_JES_EtaIntercalibration_Stat62: 0.0 syst_JES_EtaIntercalibration_Stat63: 0.0 @@ -28271,21 +28271,21 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 9.383915427474824e-12 - syst_JES_EtaIntercalibration_Stat70: 1.4505925513389345e-13 - syst_JES_EtaIntercalibration_Stat71: 2.086580695779581e-11 - syst_JES_EtaIntercalibration_Stat72: 1.7618732871577343e-07 - syst_JES_EtaIntercalibration_Stat73: 1.4279606113265169e-05 - syst_JES_EtaIntercalibration_Stat74: 3.370927295270546e-05 - syst_JES_EtaIntercalibration_Stat75: 9.937394963973204e-11 - syst_JES_EtaIntercalibration_Stat76: 1.09967905772548e-12 + syst_JES_EtaIntercalibration_Stat7: 9.38391543e-12 + syst_JES_EtaIntercalibration_Stat70: 1.45059255e-13 + syst_JES_EtaIntercalibration_Stat71: 2.08658070e-11 + syst_JES_EtaIntercalibration_Stat72: 1.76187329e-07 + syst_JES_EtaIntercalibration_Stat73: 1.42796061e-05 + syst_JES_EtaIntercalibration_Stat74: 3.37092730e-05 + syst_JES_EtaIntercalibration_Stat75: 9.93739496e-11 + syst_JES_EtaIntercalibration_Stat76: 1.09967906e-12 syst_JES_EtaIntercalibration_Stat77: 0.0 - syst_JES_EtaIntercalibration_Stat78: 1.9810974231470798e-11 - syst_JES_EtaIntercalibration_Stat79: 1.2487105754019824e-05 - syst_JES_EtaIntercalibration_Stat8: 1.313212727436039e-12 - syst_JES_EtaIntercalibration_Stat80: 2.0452862980705173e-05 - syst_JES_EtaIntercalibration_Stat81: 1.7010361636367406e-06 - syst_JES_EtaIntercalibration_Stat82: 1.9086698902638977e-11 + syst_JES_EtaIntercalibration_Stat78: 1.98109742e-11 + syst_JES_EtaIntercalibration_Stat79: 1.24871058e-05 + syst_JES_EtaIntercalibration_Stat8: 1.31321273e-12 + syst_JES_EtaIntercalibration_Stat80: 2.04528630e-05 + syst_JES_EtaIntercalibration_Stat81: 1.70103616e-06 + syst_JES_EtaIntercalibration_Stat82: 1.90866989e-11 syst_JES_EtaIntercalibration_Stat83: 0.0 syst_JES_EtaIntercalibration_Stat84: 0.0 syst_JES_EtaIntercalibration_Stat85: 0.0 @@ -28295,118 +28295,118 @@ bins: syst_JES_EtaIntercalibration_Stat89: 0.0 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 1.2514067084685137e-13 - syst_JES_EtaIntercalibration_Stat92: 1.6230148168734473e-08 - syst_JES_EtaIntercalibration_Stat93: 2.744922094978289e-07 - syst_JES_EtaIntercalibration_Stat94: 1.6198695441300206e-05 - syst_JES_EtaIntercalibration_Stat95: 3.487303542853705e-05 - syst_JES_EtaIntercalibration_Stat96: 1.911156731426023e-10 - syst_JES_EtaIntercalibration_Stat97: 1.09967905772548e-12 + syst_JES_EtaIntercalibration_Stat91: 1.25140671e-13 + syst_JES_EtaIntercalibration_Stat92: 1.62301482e-08 + syst_JES_EtaIntercalibration_Stat93: 2.74492209e-07 + syst_JES_EtaIntercalibration_Stat94: 1.61986954e-05 + syst_JES_EtaIntercalibration_Stat95: 3.48730354e-05 + syst_JES_EtaIntercalibration_Stat96: 1.91115673e-10 + syst_JES_EtaIntercalibration_Stat97: 1.09967906e-12 syst_JES_EtaIntercalibration_Stat98: 0.0 - syst_JES_EtaIntercalibration_Stat99: 2.5539153648279553e-06 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.01780671993939367 - syst_JES_Flavour_Comp: 0.055560895421150294 - syst_JES_Gjet_Generator: 0.11796339294459107 - syst_JES_Gjet_OOC: 0.08872036519311673 - syst_JES_Gjet_Purity: 0.030263765049973537 - syst_JES_Gjet_Stat1: 0.00024170769019623683 - syst_JES_Gjet_Stat10: 0.0035164550331264013 - syst_JES_Gjet_Stat11: 0.005984378392949429 - syst_JES_Gjet_Stat12: 0.017307670987166356 - syst_JES_Gjet_Stat13: 0.02047596334730066 - syst_JES_Gjet_Stat14: 0.0008625825931468824 - syst_JES_Gjet_Stat15: 0.0039426806553409825 - syst_JES_Gjet_Stat2: 0.0002531322194159211 - syst_JES_Gjet_Stat3: 0.0002012599405017054 - syst_JES_Gjet_Stat4: 0.0002573216469712566 - syst_JES_Gjet_Stat5: 0.0002821011653644841 - syst_JES_Gjet_Stat6: 0.0011858891474332664 - syst_JES_Gjet_Stat7: 0.0012528686044434188 - syst_JES_Gjet_Stat8: 0.0008039960385474546 - syst_JES_Gjet_Stat9: 0.0019631588702904304 - syst_JES_Gjet_Veto: 0.05803086484794105 - syst_JES_Gjet_dPhi: 0.00680701469074366 - syst_JES_LArESZee: 0.17024282657427892 - syst_JES_LArEsmear: 0.013289253139285142 - syst_JES_LAr_JVT: 0.01712658970723594 - syst_JES_MJB_Alpha: 0.001066844415788919 - syst_JES_MJB_Asym: 0.005447104735545297 - syst_JES_MJB_Beta: 0.0006279588899760876 - syst_JES_MJB_Stat1: 0.00018221174495624588 - syst_JES_MJB_Stat10: 7.265953138833107e-05 - syst_JES_MJB_Stat11: 7.044899857343609e-06 - syst_JES_MJB_Stat12: 7.44435437092667e-06 - syst_JES_MJB_Stat13: 4.153097247838052e-06 - syst_JES_MJB_Stat14: 9.970436536080053e-07 - syst_JES_MJB_Stat15: 2.841428294009898e-08 - syst_JES_MJB_Stat16: 4.899816129968552e-10 + syst_JES_EtaIntercalibration_Stat99: 2.55391536e-06 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.78067199e-02 + syst_JES_Flavour_Comp: 5.55608954e-02 + syst_JES_Gjet_Generator: 1.17963393e-01 + syst_JES_Gjet_OOC: 8.87203652e-02 + syst_JES_Gjet_Purity: 3.02637650e-02 + syst_JES_Gjet_Stat1: 2.41707690e-04 + syst_JES_Gjet_Stat10: 3.51645503e-03 + syst_JES_Gjet_Stat11: 5.98437839e-03 + syst_JES_Gjet_Stat12: 1.73076710e-02 + syst_JES_Gjet_Stat13: 2.04759633e-02 + syst_JES_Gjet_Stat14: 8.62582593e-04 + syst_JES_Gjet_Stat15: 3.94268066e-03 + syst_JES_Gjet_Stat2: 2.53132219e-04 + syst_JES_Gjet_Stat3: 2.01259941e-04 + syst_JES_Gjet_Stat4: 2.57321647e-04 + syst_JES_Gjet_Stat5: 2.82101165e-04 + syst_JES_Gjet_Stat6: 1.18588915e-03 + syst_JES_Gjet_Stat7: 1.25286860e-03 + syst_JES_Gjet_Stat8: 8.03996039e-04 + syst_JES_Gjet_Stat9: 1.96315887e-03 + syst_JES_Gjet_Veto: 5.80308648e-02 + syst_JES_Gjet_dPhi: 6.80701469e-03 + syst_JES_LArESZee: 1.70242827e-01 + syst_JES_LArEsmear: 1.32892531e-02 + syst_JES_LAr_JVT: 1.71265897e-02 + syst_JES_MJB_Alpha: 1.06684442e-03 + syst_JES_MJB_Asym: 5.44710474e-03 + syst_JES_MJB_Beta: 6.27958890e-04 + syst_JES_MJB_Stat1: 1.82211745e-04 + syst_JES_MJB_Stat10: 7.26595314e-05 + syst_JES_MJB_Stat11: 7.04489986e-06 + syst_JES_MJB_Stat12: 7.44435437e-06 + syst_JES_MJB_Stat13: 4.15309725e-06 + syst_JES_MJB_Stat14: 9.97043654e-07 + syst_JES_MJB_Stat15: 2.84142829e-08 + syst_JES_MJB_Stat16: 4.89981613e-10 syst_JES_MJB_Stat2: 0.0 - syst_JES_MJB_Stat3: 0.00165064441961314 - syst_JES_MJB_Stat4: 0.00012643970895252803 - syst_JES_MJB_Stat5: 2.8206447401259163e-06 - syst_JES_MJB_Stat6: 2.3491364769846814e-05 - syst_JES_MJB_Stat7: 2.084830032350539e-06 - syst_JES_MJB_Stat8: 1.960036886839633e-06 - syst_JES_MJB_Stat9: 2.3321955468619217e-09 - syst_JES_MJB_Threshold: 0.00815087791283859 - syst_JES_Pileup_MuOffset: 0.014975375621332507 - syst_JES_Pileup_NPVOffset: 0.01621667891400702 - syst_JES_Pileup_Pt_term: 0.022111542234769604 - syst_JES_PunchThrough_MC15: 0.0017398810390368649 + syst_JES_MJB_Stat3: 1.65064442e-03 + syst_JES_MJB_Stat4: 1.26439709e-04 + syst_JES_MJB_Stat5: 2.82064474e-06 + syst_JES_MJB_Stat6: 2.34913648e-05 + syst_JES_MJB_Stat7: 2.08483003e-06 + syst_JES_MJB_Stat8: 1.96003689e-06 + syst_JES_MJB_Stat9: 2.33219555e-09 + syst_JES_MJB_Threshold: 8.15087791e-03 + syst_JES_Pileup_MuOffset: 1.49753756e-02 + syst_JES_Pileup_NPVOffset: 1.62166789e-02 + syst_JES_Pileup_Pt_term: 2.21115422e-02 + syst_JES_PunchThrough_MC15: 1.73988104e-03 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.09181565375795132 - syst_JES_Zjet_MuScale: 0.0057414743751061014 - syst_JES_Zjet_MuSmearID: 0.001070205746573994 - syst_JES_Zjet_MuSmearMS: 0.023921857682880732 - syst_JES_Zjet_OOC: 0.03756701312321756 - syst_JES_Zjet_Stat1: 0.0012961167800395147 - syst_JES_Zjet_Stat10: 0.0029954089871000924 - syst_JES_Zjet_Stat11: 0.003161575991495381 - syst_JES_Zjet_Stat12: 0.02474669826461704 - syst_JES_Zjet_Stat13: 0.02346863012619186 - syst_JES_Zjet_Stat2: 1.1428071228339453e-05 - syst_JES_Zjet_Stat3: 0.0005300172143430815 - syst_JES_Zjet_Stat4: 0.000494852548038302 - syst_JES_Zjet_Stat5: 0.0007400886568513261 - syst_JES_Zjet_Stat6: 0.0004886653942116221 - syst_JES_Zjet_Stat7: 0.000624212982482742 - syst_JES_Zjet_Stat8: 0.0010554495819317948 - syst_JES_Zjet_Stat9: 0.0015437392914608348 - syst_JES_Zjet_Veto: 0.007811063691969231 - syst_JES_Zjet_dPhi: 0.006644560030581408 + syst_JES_Zjet_MC: 9.18156538e-02 + syst_JES_Zjet_MuScale: 5.74147438e-03 + syst_JES_Zjet_MuSmearID: 1.07020575e-03 + syst_JES_Zjet_MuSmearMS: 2.39218577e-02 + syst_JES_Zjet_OOC: 3.75670131e-02 + syst_JES_Zjet_Stat1: 1.29611678e-03 + syst_JES_Zjet_Stat10: 2.99540899e-03 + syst_JES_Zjet_Stat11: 3.16157599e-03 + syst_JES_Zjet_Stat12: 2.47466983e-02 + syst_JES_Zjet_Stat13: 2.34686301e-02 + syst_JES_Zjet_Stat2: 1.14280712e-05 + syst_JES_Zjet_Stat3: 5.30017214e-04 + syst_JES_Zjet_Stat4: 4.94852548e-04 + syst_JES_Zjet_Stat5: 7.40088657e-04 + syst_JES_Zjet_Stat6: 4.88665394e-04 + syst_JES_Zjet_Stat7: 6.24212982e-04 + syst_JES_Zjet_Stat8: 1.05544958e-03 + syst_JES_Zjet_Stat9: 1.54373929e-03 + syst_JES_Zjet_Veto: 7.81106369e-03 + syst_JES_Zjet_dPhi: 6.64456003e-03 syst_PRW: 0.0 syst_Unfolding_bias: 0.006256 - syst_cleaning: 0.03327529408960948 + syst_cleaning: 3.32752941e-02 syst_lumi: 0.12802 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.02662615020989704 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 0.027732077094945483 - syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0021103985405605263 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 2.66261502e-02 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 2.77320771e-02 + syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 2.11039854e-03 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 0.060504469256411134 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.018778463062774867 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.027366119107392627 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 6.05044693e-02 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.87784631e-02 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 2.73661191e-02 - stat: 0.019554 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.02677522128760097 - syst_JER_NP1: 0.0017844125083623461 - syst_JER_NP2: 0.010498399306560978 - syst_JER_NP3: 0.0038614547453000147 - syst_JER_NP4: 3.4208038528977367e-06 - syst_JER_NP5: 0.0025692971645957965 - syst_JER_NP6: 6.870373843540103e-09 - syst_JER_NP7: 1.5800405058098986e-12 - syst_JER_NP8: 0.003602158623658875 - syst_JES_EtaIntercalibration_Modelling: 0.11392005047400566 + syst_JER_NP0: 2.67752213e-02 + syst_JER_NP1: 1.78441251e-03 + syst_JER_NP2: 1.04983993e-02 + syst_JER_NP3: 3.86145475e-03 + syst_JER_NP4: 3.42080385e-06 + syst_JER_NP5: 2.56929716e-03 + syst_JER_NP6: 6.87037384e-09 + syst_JER_NP7: 1.58004051e-12 + syst_JER_NP8: 3.60215862e-03 + syst_JES_EtaIntercalibration_Modelling: 1.13920050e-01 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 2.407242511152543e-07 - syst_JES_EtaIntercalibration_Stat101: 1.041781026655794e-05 - syst_JES_EtaIntercalibration_Stat102: 8.395745000147397e-07 - syst_JES_EtaIntercalibration_Stat103: 9.805112187017545e-10 + syst_JES_EtaIntercalibration_Stat100: 2.40724251e-07 + syst_JES_EtaIntercalibration_Stat101: 1.04178103e-05 + syst_JES_EtaIntercalibration_Stat102: 8.39574500e-07 + syst_JES_EtaIntercalibration_Stat103: 9.80511219e-10 syst_JES_EtaIntercalibration_Stat104: 0.0 syst_JES_EtaIntercalibration_Stat105: 0.0 syst_JES_EtaIntercalibration_Stat106: 0.0 @@ -28415,170 +28415,170 @@ bins: syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 syst_JES_EtaIntercalibration_Stat110: 0.0 - syst_JES_EtaIntercalibration_Stat111: 5.930541965115836e-15 - syst_JES_EtaIntercalibration_Stat112: 2.5902356553024284e-08 - syst_JES_EtaIntercalibration_Stat113: 1.3166932368627097e-05 - syst_JES_EtaIntercalibration_Stat114: 1.2900720939156852e-05 - syst_JES_EtaIntercalibration_Stat115: 8.872613754131306e-05 - syst_JES_EtaIntercalibration_Stat116: 3.547506667754434e-06 + syst_JES_EtaIntercalibration_Stat111: 5.93054197e-15 + syst_JES_EtaIntercalibration_Stat112: 2.59023566e-08 + syst_JES_EtaIntercalibration_Stat113: 1.31669324e-05 + syst_JES_EtaIntercalibration_Stat114: 1.29007209e-05 + syst_JES_EtaIntercalibration_Stat115: 8.87261375e-05 + syst_JES_EtaIntercalibration_Stat116: 3.54750667e-06 syst_JES_EtaIntercalibration_Stat117: 0.0 syst_JES_EtaIntercalibration_Stat118: 0.0 - syst_JES_EtaIntercalibration_Stat119: 4.172510254473377e-06 + syst_JES_EtaIntercalibration_Stat119: 4.17251025e-06 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 9.842825661363712e-06 - syst_JES_EtaIntercalibration_Stat121: 1.0839085616416174e-06 - syst_JES_EtaIntercalibration_Stat122: 7.5421325067914305e-06 - syst_JES_EtaIntercalibration_Stat123: 1.2928993699433843e-06 + syst_JES_EtaIntercalibration_Stat120: 9.84282566e-06 + syst_JES_EtaIntercalibration_Stat121: 1.08390856e-06 + syst_JES_EtaIntercalibration_Stat122: 7.54213251e-06 + syst_JES_EtaIntercalibration_Stat123: 1.29289937e-06 syst_JES_EtaIntercalibration_Stat124: 0.0 syst_JES_EtaIntercalibration_Stat125: 0.0 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 syst_JES_EtaIntercalibration_Stat128: 0.0 syst_JES_EtaIntercalibration_Stat129: 0.0 - syst_JES_EtaIntercalibration_Stat13: 4.18636687085847e-06 + syst_JES_EtaIntercalibration_Stat13: 4.18636687e-06 syst_JES_EtaIntercalibration_Stat130: 0.0 - syst_JES_EtaIntercalibration_Stat131: 1.1512752711667179e-07 - syst_JES_EtaIntercalibration_Stat132: 8.808181878231171e-05 - syst_JES_EtaIntercalibration_Stat133: 0.00025459031305216623 - syst_JES_EtaIntercalibration_Stat134: 0.00017406145466472466 - syst_JES_EtaIntercalibration_Stat135: 1.4516030111139203e-05 + syst_JES_EtaIntercalibration_Stat131: 1.15127527e-07 + syst_JES_EtaIntercalibration_Stat132: 8.80818188e-05 + syst_JES_EtaIntercalibration_Stat133: 2.54590313e-04 + syst_JES_EtaIntercalibration_Stat134: 1.74061455e-04 + syst_JES_EtaIntercalibration_Stat135: 1.45160301e-05 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 - syst_JES_EtaIntercalibration_Stat138: 3.891078227329797e-06 - syst_JES_EtaIntercalibration_Stat139: 9.806322858237944e-05 - syst_JES_EtaIntercalibration_Stat14: 2.8256402371851943e-13 - syst_JES_EtaIntercalibration_Stat140: 0.00017615001419244903 - syst_JES_EtaIntercalibration_Stat141: 1.422433361356517e-05 - syst_JES_EtaIntercalibration_Stat142: 3.926334579477403e-06 + syst_JES_EtaIntercalibration_Stat138: 3.89107823e-06 + syst_JES_EtaIntercalibration_Stat139: 9.80632286e-05 + syst_JES_EtaIntercalibration_Stat14: 2.82564024e-13 + syst_JES_EtaIntercalibration_Stat140: 1.76150014e-04 + syst_JES_EtaIntercalibration_Stat141: 1.42243336e-05 + syst_JES_EtaIntercalibration_Stat142: 3.92633458e-06 syst_JES_EtaIntercalibration_Stat143: 0.0 syst_JES_EtaIntercalibration_Stat144: 0.0 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 syst_JES_EtaIntercalibration_Stat147: 0.0 syst_JES_EtaIntercalibration_Stat148: 0.0 - syst_JES_EtaIntercalibration_Stat149: 1.1122543265256377e-05 - syst_JES_EtaIntercalibration_Stat15: 2.7199506378029144e-13 - syst_JES_EtaIntercalibration_Stat150: 7.83752990424917e-05 - syst_JES_EtaIntercalibration_Stat151: 0.0004559345128414825 - syst_JES_EtaIntercalibration_Stat152: 0.0002712152788837679 - syst_JES_EtaIntercalibration_Stat153: 1.5090535676376764e-05 + syst_JES_EtaIntercalibration_Stat149: 1.11225433e-05 + syst_JES_EtaIntercalibration_Stat15: 2.71995064e-13 + syst_JES_EtaIntercalibration_Stat150: 7.83752990e-05 + syst_JES_EtaIntercalibration_Stat151: 4.55934513e-04 + syst_JES_EtaIntercalibration_Stat152: 2.71215279e-04 + syst_JES_EtaIntercalibration_Stat153: 1.50905357e-05 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 4.289423863003255e-08 - syst_JES_EtaIntercalibration_Stat157: 0.00013157546760319722 - syst_JES_EtaIntercalibration_Stat158: 0.00027293410688296175 - syst_JES_EtaIntercalibration_Stat159: 9.410867069510652e-05 + syst_JES_EtaIntercalibration_Stat156: 4.28942386e-08 + syst_JES_EtaIntercalibration_Stat157: 1.31575468e-04 + syst_JES_EtaIntercalibration_Stat158: 2.72934107e-04 + syst_JES_EtaIntercalibration_Stat159: 9.41086707e-05 syst_JES_EtaIntercalibration_Stat16: 0.0 - syst_JES_EtaIntercalibration_Stat160: 1.8785197017864892e-06 + syst_JES_EtaIntercalibration_Stat160: 1.87851970e-06 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 - syst_JES_EtaIntercalibration_Stat167: 1.4769855678035586e-05 - syst_JES_EtaIntercalibration_Stat168: 9.945937462099789e-05 - syst_JES_EtaIntercalibration_Stat169: 0.0008762830649966938 + syst_JES_EtaIntercalibration_Stat167: 1.47698557e-05 + syst_JES_EtaIntercalibration_Stat168: 9.94593746e-05 + syst_JES_EtaIntercalibration_Stat169: 8.76283065e-04 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 0.0005063614087783547 - syst_JES_EtaIntercalibration_Stat171: 1.0349406456410918e-05 + syst_JES_EtaIntercalibration_Stat170: 5.06361409e-04 + syst_JES_EtaIntercalibration_Stat171: 1.03494065e-05 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 - syst_JES_EtaIntercalibration_Stat174: 1.9632810862984293e-06 - syst_JES_EtaIntercalibration_Stat175: 0.0005829042352736855 - syst_JES_EtaIntercalibration_Stat176: 0.0005489876205343797 - syst_JES_EtaIntercalibration_Stat177: 0.0003599256416261559 - syst_JES_EtaIntercalibration_Stat178: 9.391965010049814e-06 + syst_JES_EtaIntercalibration_Stat174: 1.96328109e-06 + syst_JES_EtaIntercalibration_Stat175: 5.82904235e-04 + syst_JES_EtaIntercalibration_Stat176: 5.48987621e-04 + syst_JES_EtaIntercalibration_Stat177: 3.59925642e-04 + syst_JES_EtaIntercalibration_Stat178: 9.39196501e-06 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 syst_JES_EtaIntercalibration_Stat180: 0.0 syst_JES_EtaIntercalibration_Stat181: 0.0 syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 - syst_JES_EtaIntercalibration_Stat184: 4.0405656782188304e-05 - syst_JES_EtaIntercalibration_Stat185: 0.0012513168453673115 - syst_JES_EtaIntercalibration_Stat186: 0.0040636065517591635 - syst_JES_EtaIntercalibration_Stat187: 0.0026178790556479112 - syst_JES_EtaIntercalibration_Stat188: 8.623016796468207e-05 + syst_JES_EtaIntercalibration_Stat184: 4.04056568e-05 + syst_JES_EtaIntercalibration_Stat185: 1.25131685e-03 + syst_JES_EtaIntercalibration_Stat186: 4.06360655e-03 + syst_JES_EtaIntercalibration_Stat187: 2.61787906e-03 + syst_JES_EtaIntercalibration_Stat188: 8.62301680e-05 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 - syst_JES_EtaIntercalibration_Stat191: 3.144711274505181e-05 - syst_JES_EtaIntercalibration_Stat192: 0.0029725243060402386 - syst_JES_EtaIntercalibration_Stat193: 0.004817880732230718 - syst_JES_EtaIntercalibration_Stat194: 0.001577440131193574 - syst_JES_EtaIntercalibration_Stat195: 3.2837606775616274e-05 - syst_JES_EtaIntercalibration_Stat196: 1.3067703394246443e-06 + syst_JES_EtaIntercalibration_Stat191: 3.14471127e-05 + syst_JES_EtaIntercalibration_Stat192: 2.97252431e-03 + syst_JES_EtaIntercalibration_Stat193: 4.81788073e-03 + syst_JES_EtaIntercalibration_Stat194: 1.57744013e-03 + syst_JES_EtaIntercalibration_Stat195: 3.28376068e-05 + syst_JES_EtaIntercalibration_Stat196: 1.30677034e-06 syst_JES_EtaIntercalibration_Stat197: 0.0 syst_JES_EtaIntercalibration_Stat198: 0.0 - syst_JES_EtaIntercalibration_Stat199: 5.878866979912031e-05 + syst_JES_EtaIntercalibration_Stat199: 5.87886698e-05 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 0.0013522500018487706 - syst_JES_EtaIntercalibration_Stat201: 0.004726900332141561 - syst_JES_EtaIntercalibration_Stat202: 0.002789963216603402 - syst_JES_EtaIntercalibration_Stat203: 5.710584137152696e-05 + syst_JES_EtaIntercalibration_Stat200: 1.35225000e-03 + syst_JES_EtaIntercalibration_Stat201: 4.72690033e-03 + syst_JES_EtaIntercalibration_Stat202: 2.78996322e-03 + syst_JES_EtaIntercalibration_Stat203: 5.71058414e-05 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 - syst_JES_EtaIntercalibration_Stat206: 3.793185040305838e-05 - syst_JES_EtaIntercalibration_Stat207: 0.0030693768097123557 - syst_JES_EtaIntercalibration_Stat208: 0.00597633884581522 - syst_JES_EtaIntercalibration_Stat209: 0.0013905319953169005 + syst_JES_EtaIntercalibration_Stat206: 3.79318504e-05 + syst_JES_EtaIntercalibration_Stat207: 3.06937681e-03 + syst_JES_EtaIntercalibration_Stat208: 5.97633885e-03 + syst_JES_EtaIntercalibration_Stat209: 1.39053200e-03 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 5.8684664947497146e-05 - syst_JES_EtaIntercalibration_Stat211: 1.5998919557270112e-06 - syst_JES_EtaIntercalibration_Stat212: 2.860324588224211e-05 - syst_JES_EtaIntercalibration_Stat213: 0.0003153707827411252 - syst_JES_EtaIntercalibration_Stat214: 0.0010985990203436376 - syst_JES_EtaIntercalibration_Stat215: 0.0005417635531299609 - syst_JES_EtaIntercalibration_Stat216: 7.168002284458342e-05 + syst_JES_EtaIntercalibration_Stat210: 5.86846649e-05 + syst_JES_EtaIntercalibration_Stat211: 1.59989196e-06 + syst_JES_EtaIntercalibration_Stat212: 2.86032459e-05 + syst_JES_EtaIntercalibration_Stat213: 3.15370783e-04 + syst_JES_EtaIntercalibration_Stat214: 1.09859902e-03 + syst_JES_EtaIntercalibration_Stat215: 5.41763553e-04 + syst_JES_EtaIntercalibration_Stat216: 7.16800228e-05 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 - syst_JES_EtaIntercalibration_Stat219: 1.6446772350525195e-05 + syst_JES_EtaIntercalibration_Stat219: 1.64467724e-05 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 0.0009600449716028932 - syst_JES_EtaIntercalibration_Stat221: 0.0013047348265069038 - syst_JES_EtaIntercalibration_Stat222: 0.0003991980715133779 - syst_JES_EtaIntercalibration_Stat223: 4.6877955106851666e-05 - syst_JES_EtaIntercalibration_Stat224: 1.6974653675627672e-05 - syst_JES_EtaIntercalibration_Stat225: 9.061478190670659e-05 - syst_JES_EtaIntercalibration_Stat226: 0.0005545498782796729 - syst_JES_EtaIntercalibration_Stat227: 0.0003081153355482327 - syst_JES_EtaIntercalibration_Stat228: 8.791024515829523e-06 + syst_JES_EtaIntercalibration_Stat220: 9.60044972e-04 + syst_JES_EtaIntercalibration_Stat221: 1.30473483e-03 + syst_JES_EtaIntercalibration_Stat222: 3.99198072e-04 + syst_JES_EtaIntercalibration_Stat223: 4.68779551e-05 + syst_JES_EtaIntercalibration_Stat224: 1.69746537e-05 + syst_JES_EtaIntercalibration_Stat225: 9.06147819e-05 + syst_JES_EtaIntercalibration_Stat226: 5.54549878e-04 + syst_JES_EtaIntercalibration_Stat227: 3.08115336e-04 + syst_JES_EtaIntercalibration_Stat228: 8.79102452e-06 syst_JES_EtaIntercalibration_Stat229: 0.0 syst_JES_EtaIntercalibration_Stat23: 0.0 syst_JES_EtaIntercalibration_Stat230: 0.0 - syst_JES_EtaIntercalibration_Stat231: 3.6433688737211336e-07 - syst_JES_EtaIntercalibration_Stat232: 0.00037177400941297654 - syst_JES_EtaIntercalibration_Stat233: 0.0004395328656653561 - syst_JES_EtaIntercalibration_Stat234: 0.0002129781855026472 - syst_JES_EtaIntercalibration_Stat235: 1.3813105190363413e-05 - syst_JES_EtaIntercalibration_Stat236: 1.3693338964620718e-05 - syst_JES_EtaIntercalibration_Stat237: 3.204251394631826e-05 - syst_JES_EtaIntercalibration_Stat238: 2.3839129073856705e-05 - syst_JES_EtaIntercalibration_Stat239: 7.417507583411132e-08 + syst_JES_EtaIntercalibration_Stat231: 3.64336887e-07 + syst_JES_EtaIntercalibration_Stat232: 3.71774009e-04 + syst_JES_EtaIntercalibration_Stat233: 4.39532866e-04 + syst_JES_EtaIntercalibration_Stat234: 2.12978186e-04 + syst_JES_EtaIntercalibration_Stat235: 1.38131052e-05 + syst_JES_EtaIntercalibration_Stat236: 1.36933390e-05 + syst_JES_EtaIntercalibration_Stat237: 3.20425139e-05 + syst_JES_EtaIntercalibration_Stat238: 2.38391291e-05 + syst_JES_EtaIntercalibration_Stat239: 7.41750758e-08 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 - syst_JES_EtaIntercalibration_Stat242: 1.8385719322343631e-16 - syst_JES_EtaIntercalibration_Stat243: 1.5883034053668712e-05 - syst_JES_EtaIntercalibration_Stat244: 2.4685953495864812e-05 - syst_JES_EtaIntercalibration_Stat245: 1.3583350792422318e-05 + syst_JES_EtaIntercalibration_Stat242: 1.83857193e-16 + syst_JES_EtaIntercalibration_Stat243: 1.58830341e-05 + syst_JES_EtaIntercalibration_Stat244: 2.46859535e-05 + syst_JES_EtaIntercalibration_Stat245: 1.35833508e-05 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 - syst_JES_EtaIntercalibration_Stat27: 3.471031839381483e-14 - syst_JES_EtaIntercalibration_Stat28: 2.6960306834547026e-08 - syst_JES_EtaIntercalibration_Stat29: 4.13872487969749e-06 + syst_JES_EtaIntercalibration_Stat27: 3.47103184e-14 + syst_JES_EtaIntercalibration_Stat28: 2.69603068e-08 + syst_JES_EtaIntercalibration_Stat29: 4.13872488e-06 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 4.177677415574189e-06 - syst_JES_EtaIntercalibration_Stat31: 5.355501097002969e-15 + syst_JES_EtaIntercalibration_Stat30: 4.17767742e-06 + syst_JES_EtaIntercalibration_Stat31: 5.35550110e-15 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 - syst_JES_EtaIntercalibration_Stat34: 3.975922628774358e-16 - syst_JES_EtaIntercalibration_Stat35: 4.178601383832877e-06 - syst_JES_EtaIntercalibration_Stat36: 4.204701619834482e-06 - syst_JES_EtaIntercalibration_Stat37: 3.7794843388351274e-10 - syst_JES_EtaIntercalibration_Stat38: 1.733062234168179e-13 + syst_JES_EtaIntercalibration_Stat34: 3.97592263e-16 + syst_JES_EtaIntercalibration_Stat35: 4.17860138e-06 + syst_JES_EtaIntercalibration_Stat36: 4.20470162e-06 + syst_JES_EtaIntercalibration_Stat37: 3.77948434e-10 + syst_JES_EtaIntercalibration_Stat38: 1.73306223e-13 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 syst_JES_EtaIntercalibration_Stat40: 0.0 @@ -28589,21 +28589,21 @@ bins: syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 syst_JES_EtaIntercalibration_Stat47: 0.0 - syst_JES_EtaIntercalibration_Stat48: 2.1079058328113238e-14 - syst_JES_EtaIntercalibration_Stat49: 2.8602360042486007e-13 - syst_JES_EtaIntercalibration_Stat5: 1.9961885557231312e-14 - syst_JES_EtaIntercalibration_Stat50: 2.777215020033559e-08 - syst_JES_EtaIntercalibration_Stat51: 4.020944454378846e-06 - syst_JES_EtaIntercalibration_Stat52: 4.119603495122742e-06 - syst_JES_EtaIntercalibration_Stat53: 1.8494362945232796e-13 - syst_JES_EtaIntercalibration_Stat54: 1.3735162904021198e-13 + syst_JES_EtaIntercalibration_Stat48: 2.10790583e-14 + syst_JES_EtaIntercalibration_Stat49: 2.86023600e-13 + syst_JES_EtaIntercalibration_Stat5: 1.99618856e-14 + syst_JES_EtaIntercalibration_Stat50: 2.77721502e-08 + syst_JES_EtaIntercalibration_Stat51: 4.02094445e-06 + syst_JES_EtaIntercalibration_Stat52: 4.11960350e-06 + syst_JES_EtaIntercalibration_Stat53: 1.84943629e-13 + syst_JES_EtaIntercalibration_Stat54: 1.37351629e-13 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 3.219638916089815e-15 - syst_JES_EtaIntercalibration_Stat57: 4.156111577192677e-06 - syst_JES_EtaIntercalibration_Stat58: 4.174740167440724e-06 - syst_JES_EtaIntercalibration_Stat59: 7.155733924622965e-10 - syst_JES_EtaIntercalibration_Stat6: 3.858525454108084e-14 - syst_JES_EtaIntercalibration_Stat60: 1.7938598516885314e-12 + syst_JES_EtaIntercalibration_Stat56: 3.21963892e-15 + syst_JES_EtaIntercalibration_Stat57: 4.15611158e-06 + syst_JES_EtaIntercalibration_Stat58: 4.17474017e-06 + syst_JES_EtaIntercalibration_Stat59: 7.15573392e-10 + syst_JES_EtaIntercalibration_Stat6: 3.85852545e-14 + syst_JES_EtaIntercalibration_Stat60: 1.79385985e-12 syst_JES_EtaIntercalibration_Stat61: 0.0 syst_JES_EtaIntercalibration_Stat62: 0.0 syst_JES_EtaIntercalibration_Stat63: 0.0 @@ -28613,21 +28613,21 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 1.158241869170684e-12 - syst_JES_EtaIntercalibration_Stat70: 1.9961885557231312e-14 - syst_JES_EtaIntercalibration_Stat71: 2.565722266731144e-12 - syst_JES_EtaIntercalibration_Stat72: 3.943141260467345e-08 - syst_JES_EtaIntercalibration_Stat73: 1.039012871671954e-05 - syst_JES_EtaIntercalibration_Stat74: 1.2757936627840726e-05 - syst_JES_EtaIntercalibration_Stat75: 1.1927338855230869e-11 - syst_JES_EtaIntercalibration_Stat76: 1.3735162904021198e-13 + syst_JES_EtaIntercalibration_Stat7: 1.15824187e-12 + syst_JES_EtaIntercalibration_Stat70: 1.99618856e-14 + syst_JES_EtaIntercalibration_Stat71: 2.56572227e-12 + syst_JES_EtaIntercalibration_Stat72: 3.94314126e-08 + syst_JES_EtaIntercalibration_Stat73: 1.03901287e-05 + syst_JES_EtaIntercalibration_Stat74: 1.27579366e-05 + syst_JES_EtaIntercalibration_Stat75: 1.19273389e-11 + syst_JES_EtaIntercalibration_Stat76: 1.37351629e-13 syst_JES_EtaIntercalibration_Stat77: 0.0 - syst_JES_EtaIntercalibration_Stat78: 2.4509188073047213e-12 - syst_JES_EtaIntercalibration_Stat79: 3.8803082101518695e-06 - syst_JES_EtaIntercalibration_Stat8: 1.6487673334949355e-13 - syst_JES_EtaIntercalibration_Stat80: 1.1282101181960744e-05 - syst_JES_EtaIntercalibration_Stat81: 1.3411935919452493e-06 - syst_JES_EtaIntercalibration_Stat82: 2.3327247480146475e-12 + syst_JES_EtaIntercalibration_Stat78: 2.45091881e-12 + syst_JES_EtaIntercalibration_Stat79: 3.88030821e-06 + syst_JES_EtaIntercalibration_Stat8: 1.64876733e-13 + syst_JES_EtaIntercalibration_Stat80: 1.12821012e-05 + syst_JES_EtaIntercalibration_Stat81: 1.34119359e-06 + syst_JES_EtaIntercalibration_Stat82: 2.33272475e-12 syst_JES_EtaIntercalibration_Stat83: 0.0 syst_JES_EtaIntercalibration_Stat84: 0.0 syst_JES_EtaIntercalibration_Stat85: 0.0 @@ -28637,118 +28637,118 @@ bins: syst_JES_EtaIntercalibration_Stat89: 0.0 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 1.72079247731968e-14 - syst_JES_EtaIntercalibration_Stat92: 2.4320550627144526e-09 - syst_JES_EtaIntercalibration_Stat93: 5.7560322538620294e-08 - syst_JES_EtaIntercalibration_Stat94: 1.0624832081026035e-05 - syst_JES_EtaIntercalibration_Stat95: 1.2998189220041382e-05 - syst_JES_EtaIntercalibration_Stat96: 2.3150567746817786e-11 - syst_JES_EtaIntercalibration_Stat97: 1.3735162904021198e-13 + syst_JES_EtaIntercalibration_Stat91: 1.72079248e-14 + syst_JES_EtaIntercalibration_Stat92: 2.43205506e-09 + syst_JES_EtaIntercalibration_Stat93: 5.75603225e-08 + syst_JES_EtaIntercalibration_Stat94: 1.06248321e-05 + syst_JES_EtaIntercalibration_Stat95: 1.29981892e-05 + syst_JES_EtaIntercalibration_Stat96: 2.31505677e-11 + syst_JES_EtaIntercalibration_Stat97: 1.37351629e-13 syst_JES_EtaIntercalibration_Stat98: 0.0 - syst_JES_EtaIntercalibration_Stat99: 2.9392981648699763e-07 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.012790366843839936 - syst_JES_Flavour_Comp: 0.04172856216070714 - syst_JES_Gjet_Generator: 0.07712392235875973 - syst_JES_Gjet_OOC: 0.05912557885551735 - syst_JES_Gjet_Purity: 0.018900721547073274 - syst_JES_Gjet_Stat1: 0.0001593486742963338 - syst_JES_Gjet_Stat10: 0.0019196267215268702 - syst_JES_Gjet_Stat11: 0.0030074051938506724 - syst_JES_Gjet_Stat12: 0.010200801966022082 - syst_JES_Gjet_Stat13: 0.015743877381382262 - syst_JES_Gjet_Stat14: 0.00340243471649347 - syst_JES_Gjet_Stat15: 0.003994555309418058 - syst_JES_Gjet_Stat2: 0.00016520414527713886 - syst_JES_Gjet_Stat3: 0.00016751465249344606 - syst_JES_Gjet_Stat4: 0.0001623468740074782 - syst_JES_Gjet_Stat5: 0.0001779672652484158 - syst_JES_Gjet_Stat6: 0.0006683010904524995 - syst_JES_Gjet_Stat7: 0.0007652097947621946 - syst_JES_Gjet_Stat8: 0.0005436593119776392 - syst_JES_Gjet_Stat9: 0.001193670954451016 - syst_JES_Gjet_Veto: 0.042689437510934715 - syst_JES_Gjet_dPhi: 0.0048287100762004756 - syst_JES_LArESZee: 0.1139184576791663 - syst_JES_LArEsmear: 0.008826681539514157 - syst_JES_LAr_JVT: 0.011071784363868364 - syst_JES_MJB_Alpha: 0.0007369270248810258 - syst_JES_MJB_Asym: 0.003723840859918694 - syst_JES_MJB_Beta: 0.00044591765952359415 - syst_JES_MJB_Stat1: 0.00012016968502912871 - syst_JES_MJB_Stat10: 0.00013206888444056747 - syst_JES_MJB_Stat11: 5.862539482809476e-06 - syst_JES_MJB_Stat12: 7.47812933835945e-06 - syst_JES_MJB_Stat13: 8.372980890937231e-06 - syst_JES_MJB_Stat14: 2.184883545523651e-06 - syst_JES_MJB_Stat15: 2.1566447899457156e-07 - syst_JES_MJB_Stat16: 9.422971515795853e-09 + syst_JES_EtaIntercalibration_Stat99: 2.93929816e-07 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.27903668e-02 + syst_JES_Flavour_Comp: 4.17285622e-02 + syst_JES_Gjet_Generator: 7.71239224e-02 + syst_JES_Gjet_OOC: 5.91255789e-02 + syst_JES_Gjet_Purity: 1.89007215e-02 + syst_JES_Gjet_Stat1: 1.59348674e-04 + syst_JES_Gjet_Stat10: 1.91962672e-03 + syst_JES_Gjet_Stat11: 3.00740519e-03 + syst_JES_Gjet_Stat12: 1.02008020e-02 + syst_JES_Gjet_Stat13: 1.57438774e-02 + syst_JES_Gjet_Stat14: 3.40243472e-03 + syst_JES_Gjet_Stat15: 3.99455531e-03 + syst_JES_Gjet_Stat2: 1.65204145e-04 + syst_JES_Gjet_Stat3: 1.67514652e-04 + syst_JES_Gjet_Stat4: 1.62346874e-04 + syst_JES_Gjet_Stat5: 1.77967265e-04 + syst_JES_Gjet_Stat6: 6.68301090e-04 + syst_JES_Gjet_Stat7: 7.65209795e-04 + syst_JES_Gjet_Stat8: 5.43659312e-04 + syst_JES_Gjet_Stat9: 1.19367095e-03 + syst_JES_Gjet_Veto: 4.26894375e-02 + syst_JES_Gjet_dPhi: 4.82871008e-03 + syst_JES_LArESZee: 1.13918458e-01 + syst_JES_LArEsmear: 8.82668154e-03 + syst_JES_LAr_JVT: 1.10717844e-02 + syst_JES_MJB_Alpha: 7.36927025e-04 + syst_JES_MJB_Asym: 3.72384086e-03 + syst_JES_MJB_Beta: 4.45917660e-04 + syst_JES_MJB_Stat1: 1.20169685e-04 + syst_JES_MJB_Stat10: 1.32068884e-04 + syst_JES_MJB_Stat11: 5.86253948e-06 + syst_JES_MJB_Stat12: 7.47812934e-06 + syst_JES_MJB_Stat13: 8.37298089e-06 + syst_JES_MJB_Stat14: 2.18488355e-06 + syst_JES_MJB_Stat15: 2.15664479e-07 + syst_JES_MJB_Stat16: 9.42297152e-09 syst_JES_MJB_Stat2: 0.0 - syst_JES_MJB_Stat3: 0.0012217020371187075 - syst_JES_MJB_Stat4: 0.0003206026044809992 - syst_JES_MJB_Stat5: 2.0412218767199218e-05 - syst_JES_MJB_Stat6: 7.76446178108953e-05 - syst_JES_MJB_Stat7: 1.5097627629355383e-05 - syst_JES_MJB_Stat8: 1.4183509582479928e-05 - syst_JES_MJB_Stat9: 1.337039275005798e-07 - syst_JES_MJB_Threshold: 0.005714782498048374 - syst_JES_Pileup_MuOffset: 0.010791467879765013 - syst_JES_Pileup_NPVOffset: 0.011208847487587652 - syst_JES_Pileup_Pt_term: 0.014110700505290301 - syst_JES_PunchThrough_MC15: 0.0014642076995768053 + syst_JES_MJB_Stat3: 1.22170204e-03 + syst_JES_MJB_Stat4: 3.20602604e-04 + syst_JES_MJB_Stat5: 2.04122188e-05 + syst_JES_MJB_Stat6: 7.76446178e-05 + syst_JES_MJB_Stat7: 1.50976276e-05 + syst_JES_MJB_Stat8: 1.41835096e-05 + syst_JES_MJB_Stat9: 1.33703928e-07 + syst_JES_MJB_Threshold: 5.71478250e-03 + syst_JES_Pileup_MuOffset: 1.07914679e-02 + syst_JES_Pileup_NPVOffset: 1.12088475e-02 + syst_JES_Pileup_Pt_term: 1.41107005e-02 + syst_JES_PunchThrough_MC15: 1.46420770e-03 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.055012488582139245 - syst_JES_Zjet_MuScale: 0.003394010606936873 - syst_JES_Zjet_MuSmearID: 0.0006839045986100692 - syst_JES_Zjet_MuSmearMS: 0.01492204660896085 - syst_JES_Zjet_OOC: 0.02279888374460469 - syst_JES_Zjet_Stat1: 0.0009115625636784346 - syst_JES_Zjet_Stat10: 0.0017355520015257394 - syst_JES_Zjet_Stat11: 0.002107357290541877 - syst_JES_Zjet_Stat12: 0.013045127289528453 - syst_JES_Zjet_Stat13: 0.015408935719250698 - syst_JES_Zjet_Stat2: 7.2096614865054525e-06 - syst_JES_Zjet_Stat3: 0.000363620141768852 - syst_JES_Zjet_Stat4: 0.0003488305140035774 - syst_JES_Zjet_Stat5: 0.0005268188564392888 - syst_JES_Zjet_Stat6: 0.00034976521768180437 - syst_JES_Zjet_Stat7: 0.000452818029124283 - syst_JES_Zjet_Stat8: 0.0005740132293771635 - syst_JES_Zjet_Stat9: 0.0009988874260896472 - syst_JES_Zjet_Veto: 0.004966053060530062 - syst_JES_Zjet_dPhi: 0.004157711325958069 + syst_JES_Zjet_MC: 5.50124886e-02 + syst_JES_Zjet_MuScale: 3.39401061e-03 + syst_JES_Zjet_MuSmearID: 6.83904599e-04 + syst_JES_Zjet_MuSmearMS: 1.49220466e-02 + syst_JES_Zjet_OOC: 2.27988837e-02 + syst_JES_Zjet_Stat1: 9.11562564e-04 + syst_JES_Zjet_Stat10: 1.73555200e-03 + syst_JES_Zjet_Stat11: 2.10735729e-03 + syst_JES_Zjet_Stat12: 1.30451273e-02 + syst_JES_Zjet_Stat13: 1.54089357e-02 + syst_JES_Zjet_Stat2: 7.20966149e-06 + syst_JES_Zjet_Stat3: 3.63620142e-04 + syst_JES_Zjet_Stat4: 3.48830514e-04 + syst_JES_Zjet_Stat5: 5.26818856e-04 + syst_JES_Zjet_Stat6: 3.49765218e-04 + syst_JES_Zjet_Stat7: 4.52818029e-04 + syst_JES_Zjet_Stat8: 5.74013229e-04 + syst_JES_Zjet_Stat9: 9.98887426e-04 + syst_JES_Zjet_Veto: 4.96605306e-03 + syst_JES_Zjet_dPhi: 4.15771133e-03 syst_PRW: 0.0 - syst_Unfolding_bias: 0.0039472 - syst_cleaning: 0.021079058328113236 + syst_Unfolding_bias: 3.94720000e-03 + syst_cleaning: 2.10790583e-02 syst_lumi: 0.08077 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.01659738232372804 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 0.01407138574377094 - syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0013945083829077544 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.65973823e-02 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 1.40713857e-02 + syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.39450838e-03 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 0.030691166074295707 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.01259550160771694 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.01753780773072849 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 3.06911661e-02 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.25955016e-02 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.75378077e-02 - stat: 0.010458 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.016664672213998092 - syst_JER_NP1: 0.0011405230938038914 - syst_JER_NP2: 0.0068764348320914095 - syst_JER_NP3: 0.0019682908194674892 - syst_JER_NP4: 4.4868559147804154e-07 - syst_JER_NP5: 0.0014137670529475498 - syst_JER_NP6: 8.519554448443886e-10 - syst_JER_NP7: 2.4670583697999525e-13 - syst_JER_NP8: 0.0022218498486621455 - syst_JES_EtaIntercalibration_Modelling: 0.07833867547386796 + syst_JER_NP0: 1.66646722e-02 + syst_JER_NP1: 1.14052309e-03 + syst_JER_NP2: 6.87643483e-03 + syst_JER_NP3: 1.96829082e-03 + syst_JER_NP4: 4.48685591e-07 + syst_JER_NP5: 1.41376705e-03 + syst_JER_NP6: 8.51955445e-10 + syst_JER_NP7: 2.46705837e-13 + syst_JER_NP8: 2.22184985e-03 + syst_JES_EtaIntercalibration_Modelling: 7.83386755e-02 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 9.516423527250141e-08 - syst_JES_EtaIntercalibration_Stat101: 6.532512411584076e-06 - syst_JES_EtaIntercalibration_Stat102: 2.7891537551737806e-07 - syst_JES_EtaIntercalibration_Stat103: 1.2023974966707142e-10 + syst_JES_EtaIntercalibration_Stat100: 9.51642353e-08 + syst_JES_EtaIntercalibration_Stat101: 6.53251241e-06 + syst_JES_EtaIntercalibration_Stat102: 2.78915376e-07 + syst_JES_EtaIntercalibration_Stat103: 1.20239750e-10 syst_JES_EtaIntercalibration_Stat104: 0.0 syst_JES_EtaIntercalibration_Stat105: 0.0 syst_JES_EtaIntercalibration_Stat106: 0.0 @@ -28757,170 +28757,170 @@ bins: syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 syst_JES_EtaIntercalibration_Stat110: 0.0 - syst_JES_EtaIntercalibration_Stat111: 9.116649425638786e-16 - syst_JES_EtaIntercalibration_Stat112: 3.4482128947470744e-09 - syst_JES_EtaIntercalibration_Stat113: 6.051364639484222e-06 - syst_JES_EtaIntercalibration_Stat114: 1.0213743424915275e-05 - syst_JES_EtaIntercalibration_Stat115: 6.012949077407856e-05 - syst_JES_EtaIntercalibration_Stat116: 9.452997139676374e-07 + syst_JES_EtaIntercalibration_Stat111: 9.11664943e-16 + syst_JES_EtaIntercalibration_Stat112: 3.44821289e-09 + syst_JES_EtaIntercalibration_Stat113: 6.05136464e-06 + syst_JES_EtaIntercalibration_Stat114: 1.02137434e-05 + syst_JES_EtaIntercalibration_Stat115: 6.01294908e-05 + syst_JES_EtaIntercalibration_Stat116: 9.45299714e-07 syst_JES_EtaIntercalibration_Stat117: 0.0 syst_JES_EtaIntercalibration_Stat118: 0.0 - syst_JES_EtaIntercalibration_Stat119: 1.0281453388423117e-06 + syst_JES_EtaIntercalibration_Stat119: 1.02814534e-06 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 4.174654087466409e-06 - syst_JES_EtaIntercalibration_Stat121: 4.633282529697493e-06 - syst_JES_EtaIntercalibration_Stat122: 5.509237921890831e-06 - syst_JES_EtaIntercalibration_Stat123: 5.430641349785494e-07 + syst_JES_EtaIntercalibration_Stat120: 4.17465409e-06 + syst_JES_EtaIntercalibration_Stat121: 4.63328253e-06 + syst_JES_EtaIntercalibration_Stat122: 5.50923792e-06 + syst_JES_EtaIntercalibration_Stat123: 5.43064135e-07 syst_JES_EtaIntercalibration_Stat124: 0.0 syst_JES_EtaIntercalibration_Stat125: 0.0 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 syst_JES_EtaIntercalibration_Stat128: 0.0 syst_JES_EtaIntercalibration_Stat129: 0.0 - syst_JES_EtaIntercalibration_Stat13: 1.0310898551190347e-06 + syst_JES_EtaIntercalibration_Stat13: 1.03108986e-06 syst_JES_EtaIntercalibration_Stat130: 0.0 - syst_JES_EtaIntercalibration_Stat131: 2.3504218238435417e-08 - syst_JES_EtaIntercalibration_Stat132: 4.1536387360963404e-05 - syst_JES_EtaIntercalibration_Stat133: 0.0001113886110650456 - syst_JES_EtaIntercalibration_Stat134: 7.075617340557641e-05 - syst_JES_EtaIntercalibration_Stat135: 5.368800249590219e-06 + syst_JES_EtaIntercalibration_Stat131: 2.35042182e-08 + syst_JES_EtaIntercalibration_Stat132: 4.15363874e-05 + syst_JES_EtaIntercalibration_Stat133: 1.11388611e-04 + syst_JES_EtaIntercalibration_Stat134: 7.07561734e-05 + syst_JES_EtaIntercalibration_Stat135: 5.36880025e-06 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 - syst_JES_EtaIntercalibration_Stat138: 9.511074419227041e-07 - syst_JES_EtaIntercalibration_Stat139: 2.918958438809981e-05 - syst_JES_EtaIntercalibration_Stat14: 3.8361338284788763e-14 - syst_JES_EtaIntercalibration_Stat140: 5.594584098036243e-05 - syst_JES_EtaIntercalibration_Stat141: 6.8941519239134846e-06 - syst_JES_EtaIntercalibration_Stat142: 3.0772860689372056e-06 + syst_JES_EtaIntercalibration_Stat138: 9.51107442e-07 + syst_JES_EtaIntercalibration_Stat139: 2.91895844e-05 + syst_JES_EtaIntercalibration_Stat14: 3.83613383e-14 + syst_JES_EtaIntercalibration_Stat140: 5.59458410e-05 + syst_JES_EtaIntercalibration_Stat141: 6.89415192e-06 + syst_JES_EtaIntercalibration_Stat142: 3.07728607e-06 syst_JES_EtaIntercalibration_Stat143: 0.0 syst_JES_EtaIntercalibration_Stat144: 0.0 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 syst_JES_EtaIntercalibration_Stat147: 0.0 syst_JES_EtaIntercalibration_Stat148: 0.0 - syst_JES_EtaIntercalibration_Stat149: 7.1519060920848225e-06 - syst_JES_EtaIntercalibration_Stat15: 3.6900066622932735e-14 - syst_JES_EtaIntercalibration_Stat150: 4.492073769429883e-05 - syst_JES_EtaIntercalibration_Stat151: 0.00019519689418635738 - syst_JES_EtaIntercalibration_Stat152: 0.00011456449842774157 - syst_JES_EtaIntercalibration_Stat153: 5.743779197314257e-06 + syst_JES_EtaIntercalibration_Stat149: 7.15190609e-06 + syst_JES_EtaIntercalibration_Stat15: 3.69000666e-14 + syst_JES_EtaIntercalibration_Stat150: 4.49207377e-05 + syst_JES_EtaIntercalibration_Stat151: 1.95196894e-04 + syst_JES_EtaIntercalibration_Stat152: 1.14564498e-04 + syst_JES_EtaIntercalibration_Stat153: 5.74377920e-06 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 5.4750125968391355e-08 - syst_JES_EtaIntercalibration_Stat157: 2.5283952914843043e-05 - syst_JES_EtaIntercalibration_Stat158: 0.00010482470259914882 - syst_JES_EtaIntercalibration_Stat159: 4.4690576489904446e-05 + syst_JES_EtaIntercalibration_Stat156: 5.47501260e-08 + syst_JES_EtaIntercalibration_Stat157: 2.52839529e-05 + syst_JES_EtaIntercalibration_Stat158: 1.04824703e-04 + syst_JES_EtaIntercalibration_Stat159: 4.46905765e-05 syst_JES_EtaIntercalibration_Stat16: 0.0 - syst_JES_EtaIntercalibration_Stat160: 4.295455212198121e-07 + syst_JES_EtaIntercalibration_Stat160: 4.29545521e-07 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 - syst_JES_EtaIntercalibration_Stat167: 5.522244427766666e-06 - syst_JES_EtaIntercalibration_Stat168: 6.0304861329746876e-05 - syst_JES_EtaIntercalibration_Stat169: 0.0003372758366678526 + syst_JES_EtaIntercalibration_Stat167: 5.52224443e-06 + syst_JES_EtaIntercalibration_Stat168: 6.03048613e-05 + syst_JES_EtaIntercalibration_Stat169: 3.37275837e-04 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 0.00019058108912153377 - syst_JES_EtaIntercalibration_Stat171: 4.040948774731004e-06 + syst_JES_EtaIntercalibration_Stat170: 1.90581089e-04 + syst_JES_EtaIntercalibration_Stat171: 4.04094877e-06 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 - syst_JES_EtaIntercalibration_Stat174: 3.135013865805481e-07 - syst_JES_EtaIntercalibration_Stat175: 0.00021238702290865135 - syst_JES_EtaIntercalibration_Stat176: 0.0001612573409181734 - syst_JES_EtaIntercalibration_Stat177: 0.00013072532147598642 - syst_JES_EtaIntercalibration_Stat178: 4.768592114031142e-06 + syst_JES_EtaIntercalibration_Stat174: 3.13501387e-07 + syst_JES_EtaIntercalibration_Stat175: 2.12387023e-04 + syst_JES_EtaIntercalibration_Stat176: 1.61257341e-04 + syst_JES_EtaIntercalibration_Stat177: 1.30725321e-04 + syst_JES_EtaIntercalibration_Stat178: 4.76859211e-06 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 syst_JES_EtaIntercalibration_Stat180: 0.0 syst_JES_EtaIntercalibration_Stat181: 0.0 syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 - syst_JES_EtaIntercalibration_Stat184: 2.0357135573306967e-05 - syst_JES_EtaIntercalibration_Stat185: 0.0005820718254648647 - syst_JES_EtaIntercalibration_Stat186: 0.0019155471150561658 - syst_JES_EtaIntercalibration_Stat187: 0.0011410195528561288 - syst_JES_EtaIntercalibration_Stat188: 6.658087370739294e-05 + syst_JES_EtaIntercalibration_Stat184: 2.03571356e-05 + syst_JES_EtaIntercalibration_Stat185: 5.82071825e-04 + syst_JES_EtaIntercalibration_Stat186: 1.91554712e-03 + syst_JES_EtaIntercalibration_Stat187: 1.14101955e-03 + syst_JES_EtaIntercalibration_Stat188: 6.65808737e-05 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 - syst_JES_EtaIntercalibration_Stat191: 8.94386420010948e-06 - syst_JES_EtaIntercalibration_Stat192: 0.00137244405350455 - syst_JES_EtaIntercalibration_Stat193: 0.00216653363694174 - syst_JES_EtaIntercalibration_Stat194: 0.0007012391229102951 - syst_JES_EtaIntercalibration_Stat195: 2.4715359524595228e-05 - syst_JES_EtaIntercalibration_Stat196: 5.46585101036426e-07 + syst_JES_EtaIntercalibration_Stat191: 8.94386420e-06 + syst_JES_EtaIntercalibration_Stat192: 1.37244405e-03 + syst_JES_EtaIntercalibration_Stat193: 2.16653364e-03 + syst_JES_EtaIntercalibration_Stat194: 7.01239123e-04 + syst_JES_EtaIntercalibration_Stat195: 2.47153595e-05 + syst_JES_EtaIntercalibration_Stat196: 5.46585101e-07 syst_JES_EtaIntercalibration_Stat197: 0.0 syst_JES_EtaIntercalibration_Stat198: 0.0 - syst_JES_EtaIntercalibration_Stat199: 3.526758497544169e-05 + syst_JES_EtaIntercalibration_Stat199: 3.52675850e-05 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 0.0007622140824597772 - syst_JES_EtaIntercalibration_Stat201: 0.002570733504274607 - syst_JES_EtaIntercalibration_Stat202: 0.001361135256871998 - syst_JES_EtaIntercalibration_Stat203: 5.9117890581024627e-05 + syst_JES_EtaIntercalibration_Stat200: 7.62214082e-04 + syst_JES_EtaIntercalibration_Stat201: 2.57073350e-03 + syst_JES_EtaIntercalibration_Stat202: 1.36113526e-03 + syst_JES_EtaIntercalibration_Stat203: 5.91178906e-05 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 - syst_JES_EtaIntercalibration_Stat206: 3.78358665818559e-06 - syst_JES_EtaIntercalibration_Stat207: 0.0016456502514203923 - syst_JES_EtaIntercalibration_Stat208: 0.003239744550115024 - syst_JES_EtaIntercalibration_Stat209: 0.0007487345774705481 + syst_JES_EtaIntercalibration_Stat206: 3.78358666e-06 + syst_JES_EtaIntercalibration_Stat207: 1.64565025e-03 + syst_JES_EtaIntercalibration_Stat208: 3.23974455e-03 + syst_JES_EtaIntercalibration_Stat209: 7.48734577e-04 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 3.64069787266123e-05 - syst_JES_EtaIntercalibration_Stat211: 6.220559377379175e-07 - syst_JES_EtaIntercalibration_Stat212: 1.0669700124652052e-05 - syst_JES_EtaIntercalibration_Stat213: 0.0003325056042760783 - syst_JES_EtaIntercalibration_Stat214: 0.0009929932968051698 - syst_JES_EtaIntercalibration_Stat215: 0.0005441064969286804 - syst_JES_EtaIntercalibration_Stat216: 6.673374165292997e-05 + syst_JES_EtaIntercalibration_Stat210: 3.64069787e-05 + syst_JES_EtaIntercalibration_Stat211: 6.22055938e-07 + syst_JES_EtaIntercalibration_Stat212: 1.06697001e-05 + syst_JES_EtaIntercalibration_Stat213: 3.32505604e-04 + syst_JES_EtaIntercalibration_Stat214: 9.92993297e-04 + syst_JES_EtaIntercalibration_Stat215: 5.44106497e-04 + syst_JES_EtaIntercalibration_Stat216: 6.67337417e-05 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 - syst_JES_EtaIntercalibration_Stat219: 6.43352679329153e-06 + syst_JES_EtaIntercalibration_Stat219: 6.43352679e-06 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 0.0007766165511370461 - syst_JES_EtaIntercalibration_Stat221: 0.0010253539132904306 - syst_JES_EtaIntercalibration_Stat222: 0.00033133920308348665 - syst_JES_EtaIntercalibration_Stat223: 3.771540633481231e-05 - syst_JES_EtaIntercalibration_Stat224: 5.429685695323441e-06 - syst_JES_EtaIntercalibration_Stat225: 0.00011507905804272124 - syst_JES_EtaIntercalibration_Stat226: 0.00025586263892956316 - syst_JES_EtaIntercalibration_Stat227: 0.00017215622991922195 - syst_JES_EtaIntercalibration_Stat228: 3.3141525392001423e-07 + syst_JES_EtaIntercalibration_Stat220: 7.76616551e-04 + syst_JES_EtaIntercalibration_Stat221: 1.02535391e-03 + syst_JES_EtaIntercalibration_Stat222: 3.31339203e-04 + syst_JES_EtaIntercalibration_Stat223: 3.77154063e-05 + syst_JES_EtaIntercalibration_Stat224: 5.42968570e-06 + syst_JES_EtaIntercalibration_Stat225: 1.15079058e-04 + syst_JES_EtaIntercalibration_Stat226: 2.55862639e-04 + syst_JES_EtaIntercalibration_Stat227: 1.72156230e-04 + syst_JES_EtaIntercalibration_Stat228: 3.31415254e-07 syst_JES_EtaIntercalibration_Stat229: 0.0 syst_JES_EtaIntercalibration_Stat23: 0.0 syst_JES_EtaIntercalibration_Stat230: 0.0 - syst_JES_EtaIntercalibration_Stat231: 7.280675569615775e-06 - syst_JES_EtaIntercalibration_Stat232: 0.00019785425823064818 - syst_JES_EtaIntercalibration_Stat233: 0.00022024671152312352 - syst_JES_EtaIntercalibration_Stat234: 0.00010892375532912919 - syst_JES_EtaIntercalibration_Stat235: 1.2643970900538447e-05 - syst_JES_EtaIntercalibration_Stat236: 2.661686072774173e-05 - syst_JES_EtaIntercalibration_Stat237: 6.339698021199431e-05 - syst_JES_EtaIntercalibration_Stat238: 4.871276501082647e-05 - syst_JES_EtaIntercalibration_Stat239: 1.3250188669325373e-07 + syst_JES_EtaIntercalibration_Stat231: 7.28067557e-06 + syst_JES_EtaIntercalibration_Stat232: 1.97854258e-04 + syst_JES_EtaIntercalibration_Stat233: 2.20246712e-04 + syst_JES_EtaIntercalibration_Stat234: 1.08923755e-04 + syst_JES_EtaIntercalibration_Stat235: 1.26439709e-05 + syst_JES_EtaIntercalibration_Stat236: 2.66168607e-05 + syst_JES_EtaIntercalibration_Stat237: 6.33969802e-05 + syst_JES_EtaIntercalibration_Stat238: 4.87127650e-05 + syst_JES_EtaIntercalibration_Stat239: 1.32501887e-07 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 - syst_JES_EtaIntercalibration_Stat242: 1.1706931408358519e-13 - syst_JES_EtaIntercalibration_Stat243: 3.669229210610861e-05 - syst_JES_EtaIntercalibration_Stat244: 4.985278427530402e-05 - syst_JES_EtaIntercalibration_Stat245: 2.459470064871699e-05 + syst_JES_EtaIntercalibration_Stat242: 1.17069314e-13 + syst_JES_EtaIntercalibration_Stat243: 3.66922921e-05 + syst_JES_EtaIntercalibration_Stat244: 4.98527843e-05 + syst_JES_EtaIntercalibration_Stat245: 2.45947006e-05 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 - syst_JES_EtaIntercalibration_Stat27: 5.182402997645011e-15 - syst_JES_EtaIntercalibration_Stat28: 3.583733774442559e-09 - syst_JES_EtaIntercalibration_Stat29: 2.4196736736536015e-06 + syst_JES_EtaIntercalibration_Stat27: 5.18240300e-15 + syst_JES_EtaIntercalibration_Stat28: 3.58373377e-09 + syst_JES_EtaIntercalibration_Stat29: 2.41967367e-06 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 2.4430540735556855e-06 - syst_JES_EtaIntercalibration_Stat31: 8.281800936390586e-16 + syst_JES_EtaIntercalibration_Stat30: 2.44305407e-06 + syst_JES_EtaIntercalibration_Stat31: 8.28180094e-16 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 - syst_JES_EtaIntercalibration_Stat34: 6.716893031752106e-17 - syst_JES_EtaIntercalibration_Stat35: 1.0295345389360728e-06 - syst_JES_EtaIntercalibration_Stat36: 1.032493980245775e-06 - syst_JES_EtaIntercalibration_Stat37: 4.743689538921681e-11 - syst_JES_EtaIntercalibration_Stat38: 2.2562679743051356e-14 + syst_JES_EtaIntercalibration_Stat34: 6.71689303e-17 + syst_JES_EtaIntercalibration_Stat35: 1.02953454e-06 + syst_JES_EtaIntercalibration_Stat36: 1.03249398e-06 + syst_JES_EtaIntercalibration_Stat37: 4.74368954e-11 + syst_JES_EtaIntercalibration_Stat38: 2.25626797e-14 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 syst_JES_EtaIntercalibration_Stat40: 0.0 @@ -28931,21 +28931,21 @@ bins: syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 syst_JES_EtaIntercalibration_Stat47: 0.0 - syst_JES_EtaIntercalibration_Stat48: 3.120289529835333e-15 - syst_JES_EtaIntercalibration_Stat49: 3.881704136072197e-14 - syst_JES_EtaIntercalibration_Stat5: 2.918505610753558e-15 - syst_JES_EtaIntercalibration_Stat50: 3.6908664440074233e-09 - syst_JES_EtaIntercalibration_Stat51: 2.369841155588914e-06 - syst_JES_EtaIntercalibration_Stat52: 2.4084068706564893e-06 - syst_JES_EtaIntercalibration_Stat53: 2.4319805755803233e-14 - syst_JES_EtaIntercalibration_Stat54: 1.7935386112375727e-14 + syst_JES_EtaIntercalibration_Stat48: 3.12028953e-15 + syst_JES_EtaIntercalibration_Stat49: 3.88170414e-14 + syst_JES_EtaIntercalibration_Stat5: 2.91850561e-15 + syst_JES_EtaIntercalibration_Stat50: 3.69086644e-09 + syst_JES_EtaIntercalibration_Stat51: 2.36984116e-06 + syst_JES_EtaIntercalibration_Stat52: 2.40840687e-06 + syst_JES_EtaIntercalibration_Stat53: 2.43198058e-14 + syst_JES_EtaIntercalibration_Stat54: 1.79353861e-14 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 5.028362357666758e-16 - syst_JES_EtaIntercalibration_Stat57: 1.0175271077564997e-06 - syst_JES_EtaIntercalibration_Stat58: 1.0266769331502875e-06 - syst_JES_EtaIntercalibration_Stat59: 8.948618706258526e-11 - syst_JES_EtaIntercalibration_Stat6: 5.760468064315607e-15 - syst_JES_EtaIntercalibration_Stat60: 2.2951086945937876e-13 + syst_JES_EtaIntercalibration_Stat56: 5.02836236e-16 + syst_JES_EtaIntercalibration_Stat57: 1.01752711e-06 + syst_JES_EtaIntercalibration_Stat58: 1.02667693e-06 + syst_JES_EtaIntercalibration_Stat59: 8.94861871e-11 + syst_JES_EtaIntercalibration_Stat6: 5.76046806e-15 + syst_JES_EtaIntercalibration_Stat60: 2.29510869e-13 syst_JES_EtaIntercalibration_Stat61: 0.0 syst_JES_EtaIntercalibration_Stat62: 0.0 syst_JES_EtaIntercalibration_Stat63: 0.0 @@ -28955,21 +28955,21 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 1.4877818279237045e-13 - syst_JES_EtaIntercalibration_Stat70: 2.918505610753558e-15 - syst_JES_EtaIntercalibration_Stat71: 3.280862234230508e-13 - syst_JES_EtaIntercalibration_Stat72: 7.028889243685662e-09 - syst_JES_EtaIntercalibration_Stat73: 4.5912342567113695e-06 - syst_JES_EtaIntercalibration_Stat74: 5.076986384657733e-06 - syst_JES_EtaIntercalibration_Stat75: 1.4528498818529052e-12 - syst_JES_EtaIntercalibration_Stat76: 1.7935386112375727e-14 + syst_JES_EtaIntercalibration_Stat7: 1.48778183e-13 + syst_JES_EtaIntercalibration_Stat70: 2.91850561e-15 + syst_JES_EtaIntercalibration_Stat71: 3.28086223e-13 + syst_JES_EtaIntercalibration_Stat72: 7.02888924e-09 + syst_JES_EtaIntercalibration_Stat73: 4.59123426e-06 + syst_JES_EtaIntercalibration_Stat74: 5.07698638e-06 + syst_JES_EtaIntercalibration_Stat75: 1.45284988e-12 + syst_JES_EtaIntercalibration_Stat76: 1.79353861e-14 syst_JES_EtaIntercalibration_Stat77: 0.0 - syst_JES_EtaIntercalibration_Stat78: 3.1576153581460803e-13 - syst_JES_EtaIntercalibration_Stat79: 9.490232998621305e-07 - syst_JES_EtaIntercalibration_Stat8: 2.1676762183268975e-14 - syst_JES_EtaIntercalibration_Stat80: 6.9463584781380245e-06 - syst_JES_EtaIntercalibration_Stat81: 5.52912100676952e-07 - syst_JES_EtaIntercalibration_Stat82: 2.958368131250741e-13 + syst_JES_EtaIntercalibration_Stat78: 3.15761536e-13 + syst_JES_EtaIntercalibration_Stat79: 9.49023300e-07 + syst_JES_EtaIntercalibration_Stat8: 2.16767622e-14 + syst_JES_EtaIntercalibration_Stat80: 6.94635848e-06 + syst_JES_EtaIntercalibration_Stat81: 5.52912101e-07 + syst_JES_EtaIntercalibration_Stat82: 2.95836813e-13 syst_JES_EtaIntercalibration_Stat83: 0.0 syst_JES_EtaIntercalibration_Stat84: 0.0 syst_JES_EtaIntercalibration_Stat85: 0.0 @@ -28979,118 +28979,118 @@ bins: syst_JES_EtaIntercalibration_Stat89: 0.0 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 2.5149377725900096e-15 - syst_JES_EtaIntercalibration_Stat92: 3.296469711676417e-10 - syst_JES_EtaIntercalibration_Stat93: 9.854869332847595e-09 - syst_JES_EtaIntercalibration_Stat94: 4.61610623252975e-06 - syst_JES_EtaIntercalibration_Stat95: 5.130407074492237e-06 - syst_JES_EtaIntercalibration_Stat96: 2.866029225252248e-12 - syst_JES_EtaIntercalibration_Stat97: 1.7935386112375727e-14 + syst_JES_EtaIntercalibration_Stat91: 2.51493777e-15 + syst_JES_EtaIntercalibration_Stat92: 3.29646971e-10 + syst_JES_EtaIntercalibration_Stat93: 9.85486933e-09 + syst_JES_EtaIntercalibration_Stat94: 4.61610623e-06 + syst_JES_EtaIntercalibration_Stat95: 5.13040707e-06 + syst_JES_EtaIntercalibration_Stat96: 2.86602923e-12 + syst_JES_EtaIntercalibration_Stat97: 1.79353861e-14 syst_JES_EtaIntercalibration_Stat98: 0.0 - syst_JES_EtaIntercalibration_Stat99: 5.221368925333871e-09 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.009010615780844283 - syst_JES_Flavour_Comp: 0.029825704937184637 - syst_JES_Gjet_Generator: 0.049739162387398526 - syst_JES_Gjet_OOC: 0.03878449388608803 - syst_JES_Gjet_Purity: 0.01147229671861742 - syst_JES_Gjet_Stat1: 0.00010042430581333742 - syst_JES_Gjet_Stat10: 0.0011013032779393693 - syst_JES_Gjet_Stat11: 0.0015865141033095168 - syst_JES_Gjet_Stat12: 0.005664101958828071 - syst_JES_Gjet_Stat13: 0.011074213832141765 - syst_JES_Gjet_Stat14: 0.006187155323733194 - syst_JES_Gjet_Stat15: 0.0031294676863645675 - syst_JES_Gjet_Stat2: 0.0001007013768525535 - syst_JES_Gjet_Stat3: 0.00011662999903541113 - syst_JES_Gjet_Stat4: 0.00010095447525989128 - syst_JES_Gjet_Stat5: 0.00011068773407654527 - syst_JES_Gjet_Stat6: 0.00038030509791481894 - syst_JES_Gjet_Stat7: 0.0004683617912468949 - syst_JES_Gjet_Stat8: 0.0003579747581883393 - syst_JES_Gjet_Stat9: 0.0006928763309566867 - syst_JES_Gjet_Veto: 0.03057536058658998 - syst_JES_Gjet_dPhi: 0.003316888715347562 - syst_JES_LArESZee: 0.07406045706043138 - syst_JES_LArEsmear: 0.005633538142233529 - syst_JES_LAr_JVT: 0.007039863137874202 - syst_JES_MJB_Alpha: 0.00046355957545929306 - syst_JES_MJB_Asym: 0.002480008870951876 - syst_JES_MJB_Beta: 0.0002817284821863064 - syst_JES_MJB_Stat1: 7.569928054479778e-05 - syst_JES_MJB_Stat10: 0.00014705272472912792 - syst_JES_MJB_Stat11: 4.120908971331447e-06 - syst_JES_MJB_Stat12: 5.86470918512969e-06 - syst_JES_MJB_Stat13: 1.9951362027440635e-05 - syst_JES_MJB_Stat14: 6.127387126663371e-06 - syst_JES_MJB_Stat15: 6.651722389727341e-07 - syst_JES_MJB_Stat16: 6.549252858151073e-08 + syst_JES_EtaIntercalibration_Stat99: 5.22136893e-09 + syst_JES_EtaIntercalibration_TotalStat_MJB: 9.01061578e-03 + syst_JES_Flavour_Comp: 2.98257049e-02 + syst_JES_Gjet_Generator: 4.97391624e-02 + syst_JES_Gjet_OOC: 3.87844939e-02 + syst_JES_Gjet_Purity: 1.14722967e-02 + syst_JES_Gjet_Stat1: 1.00424306e-04 + syst_JES_Gjet_Stat10: 1.10130328e-03 + syst_JES_Gjet_Stat11: 1.58651410e-03 + syst_JES_Gjet_Stat12: 5.66410196e-03 + syst_JES_Gjet_Stat13: 1.10742138e-02 + syst_JES_Gjet_Stat14: 6.18715532e-03 + syst_JES_Gjet_Stat15: 3.12946769e-03 + syst_JES_Gjet_Stat2: 1.00701377e-04 + syst_JES_Gjet_Stat3: 1.16629999e-04 + syst_JES_Gjet_Stat4: 1.00954475e-04 + syst_JES_Gjet_Stat5: 1.10687734e-04 + syst_JES_Gjet_Stat6: 3.80305098e-04 + syst_JES_Gjet_Stat7: 4.68361791e-04 + syst_JES_Gjet_Stat8: 3.57974758e-04 + syst_JES_Gjet_Stat9: 6.92876331e-04 + syst_JES_Gjet_Veto: 3.05753606e-02 + syst_JES_Gjet_dPhi: 3.31688872e-03 + syst_JES_LArESZee: 7.40604571e-02 + syst_JES_LArEsmear: 5.63353814e-03 + syst_JES_LAr_JVT: 7.03986314e-03 + syst_JES_MJB_Alpha: 4.63559575e-04 + syst_JES_MJB_Asym: 2.48000887e-03 + syst_JES_MJB_Beta: 2.81728482e-04 + syst_JES_MJB_Stat1: 7.56992805e-05 + syst_JES_MJB_Stat10: 1.47052725e-04 + syst_JES_MJB_Stat11: 4.12090897e-06 + syst_JES_MJB_Stat12: 5.86470919e-06 + syst_JES_MJB_Stat13: 1.99513620e-05 + syst_JES_MJB_Stat14: 6.12738713e-06 + syst_JES_MJB_Stat15: 6.65172239e-07 + syst_JES_MJB_Stat16: 6.54925286e-08 syst_JES_MJB_Stat2: 0.0 - syst_JES_MJB_Stat3: 0.000819260031980079 - syst_JES_MJB_Stat4: 0.0003071792107223404 - syst_JES_MJB_Stat5: 6.277818152033396e-05 - syst_JES_MJB_Stat6: 0.00014108397100663137 - syst_JES_MJB_Stat7: 4.6531700022672714e-05 - syst_JES_MJB_Stat8: 4.364869607158958e-05 - syst_JES_MJB_Stat9: 2.10976576806692e-06 - syst_JES_MJB_Threshold: 0.0037043996814598718 - syst_JES_Pileup_MuOffset: 0.007401537188314331 - syst_JES_Pileup_NPVOffset: 0.00754683099055491 - syst_JES_Pileup_Pt_term: 0.008857076323482824 - syst_JES_PunchThrough_MC15: 0.001318964483032049 - syst_JES_SingleParticle_HighPt: 2.6699563198674246e-44 - syst_JES_Zjet_MC: 0.03239037356993587 - syst_JES_Zjet_MuScale: 0.0019833685361021537 - syst_JES_Zjet_MuSmearID: 0.00044173876895740085 - syst_JES_Zjet_MuSmearMS: 0.008953355125314755 - syst_JES_Zjet_OOC: 0.013768249997730285 - syst_JES_Zjet_Stat1: 0.0005885590709521009 - syst_JES_Zjet_Stat10: 0.0010532596261131442 - syst_JES_Zjet_Stat11: 0.0013957176173925727 - syst_JES_Zjet_Stat12: 0.0066839839167969275 - syst_JES_Zjet_Stat13: 0.009541252223895982 - syst_JES_Zjet_Stat2: 4.483413515392039e-06 - syst_JES_Zjet_Stat3: 0.00024659951338151505 - syst_JES_Zjet_Stat4: 0.00023962608372211903 - syst_JES_Zjet_Stat5: 0.0003479504831150547 - syst_JES_Zjet_Stat6: 0.00028210412971099876 - syst_JES_Zjet_Stat7: 0.00032738556397617774 - syst_JES_Zjet_Stat8: 0.00032253306807209707 - syst_JES_Zjet_Stat9: 0.000625936106963003 - syst_JES_Zjet_Veto: 0.003064436122682279 - syst_JES_Zjet_dPhi: 0.002517190695994247 + syst_JES_MJB_Stat3: 8.19260032e-04 + syst_JES_MJB_Stat4: 3.07179211e-04 + syst_JES_MJB_Stat5: 6.27781815e-05 + syst_JES_MJB_Stat6: 1.41083971e-04 + syst_JES_MJB_Stat7: 4.65317000e-05 + syst_JES_MJB_Stat8: 4.36486961e-05 + syst_JES_MJB_Stat9: 2.10976577e-06 + syst_JES_MJB_Threshold: 3.70439968e-03 + syst_JES_Pileup_MuOffset: 7.40153719e-03 + syst_JES_Pileup_NPVOffset: 7.54683099e-03 + syst_JES_Pileup_Pt_term: 8.85707632e-03 + syst_JES_PunchThrough_MC15: 1.31896448e-03 + syst_JES_SingleParticle_HighPt: 2.66995632e-44 + syst_JES_Zjet_MC: 3.23903736e-02 + syst_JES_Zjet_MuScale: 1.98336854e-03 + syst_JES_Zjet_MuSmearID: 4.41738769e-04 + syst_JES_Zjet_MuSmearMS: 8.95335513e-03 + syst_JES_Zjet_OOC: 1.37682500e-02 + syst_JES_Zjet_Stat1: 5.88559071e-04 + syst_JES_Zjet_Stat10: 1.05325963e-03 + syst_JES_Zjet_Stat11: 1.39571762e-03 + syst_JES_Zjet_Stat12: 6.68398392e-03 + syst_JES_Zjet_Stat13: 9.54125222e-03 + syst_JES_Zjet_Stat2: 4.48341352e-06 + syst_JES_Zjet_Stat3: 2.46599513e-04 + syst_JES_Zjet_Stat4: 2.39626084e-04 + syst_JES_Zjet_Stat5: 3.47950483e-04 + syst_JES_Zjet_Stat6: 2.82104130e-04 + syst_JES_Zjet_Stat7: 3.27385564e-04 + syst_JES_Zjet_Stat8: 3.22533068e-04 + syst_JES_Zjet_Stat9: 6.25936107e-04 + syst_JES_Zjet_Veto: 3.06443612e-03 + syst_JES_Zjet_dPhi: 2.51719070e-03 syst_PRW: 0.0 syst_Unfolding_bias: 0.002455 - syst_cleaning: 0.01332813096424251 + syst_cleaning: 1.33281310e-02 syst_lumi: 0.05023 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.010278182560647579 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 0.007413129635990456 - syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0008695216271030871 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.02781826e-02 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 7.41312964e-03 + syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 8.69521627e-04 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 0.01617526120345511 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.007974761861648283 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.011177316885102614 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 1.61752612e-02 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 7.97476186e-03 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.11773169e-02 - stat: 0.006575 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.010213039900049348 - syst_JER_NP1: 0.0007233407547622352 - syst_JER_NP2: 0.004559532541829261 - syst_JER_NP3: 0.0009719126812630855 - syst_JER_NP4: 5.867274899815075e-08 - syst_JER_NP5: 0.0006715940579695445 - syst_JER_NP6: 1.1252702075501688e-10 - syst_JER_NP7: 4.2221044515738836e-14 - syst_JER_NP8: 0.0013289532299896787 - syst_JES_EtaIntercalibration_Modelling: 0.0550767743699647 + syst_JER_NP0: 1.02130399e-02 + syst_JER_NP1: 7.23340755e-04 + syst_JER_NP2: 4.55953254e-03 + syst_JER_NP3: 9.71912681e-04 + syst_JER_NP4: 5.86727490e-08 + syst_JER_NP5: 6.71594058e-04 + syst_JER_NP6: 1.12527021e-10 + syst_JER_NP7: 4.22210445e-14 + syst_JER_NP8: 1.32895323e-03 + syst_JES_EtaIntercalibration_Modelling: 5.50767744e-02 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 2.148533425385791e-08 - syst_JES_EtaIntercalibration_Stat101: 4.147110537169223e-06 - syst_JES_EtaIntercalibration_Stat102: 6.437617960666817e-08 - syst_JES_EtaIntercalibration_Stat103: 1.5408364059821538e-11 + syst_JES_EtaIntercalibration_Stat100: 2.14853343e-08 + syst_JES_EtaIntercalibration_Stat101: 4.14711054e-06 + syst_JES_EtaIntercalibration_Stat102: 6.43761796e-08 + syst_JES_EtaIntercalibration_Stat103: 1.54083641e-11 syst_JES_EtaIntercalibration_Stat104: 0.0 syst_JES_EtaIntercalibration_Stat105: 0.0 syst_JES_EtaIntercalibration_Stat106: 0.0 @@ -29099,170 +29099,170 @@ bins: syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 syst_JES_EtaIntercalibration_Stat110: 0.0 - syst_JES_EtaIntercalibration_Stat111: 1.5337309901022409e-16 - syst_JES_EtaIntercalibration_Stat112: 4.5392482549426617e-10 - syst_JES_EtaIntercalibration_Stat113: 3.5355399428517277e-06 - syst_JES_EtaIntercalibration_Stat114: 2.4448940161078557e-06 - syst_JES_EtaIntercalibration_Stat115: 2.667324166182281e-05 - syst_JES_EtaIntercalibration_Stat116: 2.0187472219492187e-07 + syst_JES_EtaIntercalibration_Stat111: 1.53373099e-16 + syst_JES_EtaIntercalibration_Stat112: 4.53924825e-10 + syst_JES_EtaIntercalibration_Stat113: 3.53553994e-06 + syst_JES_EtaIntercalibration_Stat114: 2.44489402e-06 + syst_JES_EtaIntercalibration_Stat115: 2.66732417e-05 + syst_JES_EtaIntercalibration_Stat116: 2.01874722e-07 syst_JES_EtaIntercalibration_Stat117: 0.0 syst_JES_EtaIntercalibration_Stat118: 0.0 - syst_JES_EtaIntercalibration_Stat119: 2.1096378508946812e-07 + syst_JES_EtaIntercalibration_Stat119: 2.10963785e-07 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 2.6844323422280546e-06 - syst_JES_EtaIntercalibration_Stat121: 2.283719498975301e-06 - syst_JES_EtaIntercalibration_Stat122: 4.0447843189810495e-06 - syst_JES_EtaIntercalibration_Stat123: 1.5685647872737038e-07 + syst_JES_EtaIntercalibration_Stat120: 2.68443234e-06 + syst_JES_EtaIntercalibration_Stat121: 2.28371950e-06 + syst_JES_EtaIntercalibration_Stat122: 4.04478432e-06 + syst_JES_EtaIntercalibration_Stat123: 1.56856479e-07 syst_JES_EtaIntercalibration_Stat124: 0.0 syst_JES_EtaIntercalibration_Stat125: 0.0 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 syst_JES_EtaIntercalibration_Stat128: 0.0 syst_JES_EtaIntercalibration_Stat129: 0.0 - syst_JES_EtaIntercalibration_Stat13: 2.115700075330658e-07 + syst_JES_EtaIntercalibration_Stat13: 2.11570008e-07 syst_JES_EtaIntercalibration_Stat130: 0.0 - syst_JES_EtaIntercalibration_Stat131: 4.025639328106779e-09 - syst_JES_EtaIntercalibration_Stat132: 1.804481731689185e-05 - syst_JES_EtaIntercalibration_Stat133: 4.605351126678616e-05 - syst_JES_EtaIntercalibration_Stat134: 3.7439493212382026e-05 - syst_JES_EtaIntercalibration_Stat135: 2.1317844051404446e-06 + syst_JES_EtaIntercalibration_Stat131: 4.02563933e-09 + syst_JES_EtaIntercalibration_Stat132: 1.80448173e-05 + syst_JES_EtaIntercalibration_Stat133: 4.60535113e-05 + syst_JES_EtaIntercalibration_Stat134: 3.74394932e-05 + syst_JES_EtaIntercalibration_Stat135: 2.13178441e-06 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 - syst_JES_EtaIntercalibration_Stat138: 1.9524240678172352e-07 - syst_JES_EtaIntercalibration_Stat139: 9.538962941536151e-06 - syst_JES_EtaIntercalibration_Stat14: 5.673221835958823e-15 - syst_JES_EtaIntercalibration_Stat140: 1.8550860539338867e-05 - syst_JES_EtaIntercalibration_Stat141: 1.742435614305447e-06 - syst_JES_EtaIntercalibration_Stat142: 1.9961493998884452e-06 + syst_JES_EtaIntercalibration_Stat138: 1.95242407e-07 + syst_JES_EtaIntercalibration_Stat139: 9.53896294e-06 + syst_JES_EtaIntercalibration_Stat14: 5.67322184e-15 + syst_JES_EtaIntercalibration_Stat140: 1.85508605e-05 + syst_JES_EtaIntercalibration_Stat141: 1.74243561e-06 + syst_JES_EtaIntercalibration_Stat142: 1.99614940e-06 syst_JES_EtaIntercalibration_Stat143: 0.0 syst_JES_EtaIntercalibration_Stat144: 0.0 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 syst_JES_EtaIntercalibration_Stat147: 0.0 syst_JES_EtaIntercalibration_Stat148: 0.0 - syst_JES_EtaIntercalibration_Stat149: 2.372336465428123e-06 - syst_JES_EtaIntercalibration_Stat15: 5.449056446052725e-15 - syst_JES_EtaIntercalibration_Stat150: 1.9364328028620047e-05 - syst_JES_EtaIntercalibration_Stat151: 7.543617219212544e-05 - syst_JES_EtaIntercalibration_Stat152: 5.257063008943302e-05 - syst_JES_EtaIntercalibration_Stat153: 2.361380436841976e-06 + syst_JES_EtaIntercalibration_Stat149: 2.37233647e-06 + syst_JES_EtaIntercalibration_Stat15: 5.44905645e-15 + syst_JES_EtaIntercalibration_Stat150: 1.93643280e-05 + syst_JES_EtaIntercalibration_Stat151: 7.54361722e-05 + syst_JES_EtaIntercalibration_Stat152: 5.25706301e-05 + syst_JES_EtaIntercalibration_Stat153: 2.36138044e-06 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 1.5822284117173742e-08 - syst_JES_EtaIntercalibration_Stat157: 7.343992442806568e-06 - syst_JES_EtaIntercalibration_Stat158: 5.0724219806715605e-05 - syst_JES_EtaIntercalibration_Stat159: 1.917315635484935e-05 + syst_JES_EtaIntercalibration_Stat156: 1.58222841e-08 + syst_JES_EtaIntercalibration_Stat157: 7.34399244e-06 + syst_JES_EtaIntercalibration_Stat158: 5.07242198e-05 + syst_JES_EtaIntercalibration_Stat159: 1.91731564e-05 syst_JES_EtaIntercalibration_Stat16: 0.0 - syst_JES_EtaIntercalibration_Stat160: 8.393400143416255e-08 + syst_JES_EtaIntercalibration_Stat160: 8.39340014e-08 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 - syst_JES_EtaIntercalibration_Stat167: 5.684879132400267e-06 - syst_JES_EtaIntercalibration_Stat168: 3.7872568898874555e-05 - syst_JES_EtaIntercalibration_Stat169: 0.0001357286716209954 + syst_JES_EtaIntercalibration_Stat167: 5.68487913e-06 + syst_JES_EtaIntercalibration_Stat168: 3.78725689e-05 + syst_JES_EtaIntercalibration_Stat169: 1.35728672e-04 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 8.202563623648402e-05 - syst_JES_EtaIntercalibration_Stat171: 2.6830088091543794e-06 + syst_JES_EtaIntercalibration_Stat170: 8.20256362e-05 + syst_JES_EtaIntercalibration_Stat171: 2.68300881e-06 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 - syst_JES_EtaIntercalibration_Stat174: 4.6652814598158264e-08 - syst_JES_EtaIntercalibration_Stat175: 8.301943567623187e-05 - syst_JES_EtaIntercalibration_Stat176: 4.706530861473236e-05 - syst_JES_EtaIntercalibration_Stat177: 4.373865567207113e-05 - syst_JES_EtaIntercalibration_Stat178: 2.365003329807381e-06 + syst_JES_EtaIntercalibration_Stat174: 4.66528146e-08 + syst_JES_EtaIntercalibration_Stat175: 8.30194357e-05 + syst_JES_EtaIntercalibration_Stat176: 4.70653086e-05 + syst_JES_EtaIntercalibration_Stat177: 4.37386557e-05 + syst_JES_EtaIntercalibration_Stat178: 2.36500333e-06 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 syst_JES_EtaIntercalibration_Stat180: 0.0 syst_JES_EtaIntercalibration_Stat181: 0.0 syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 - syst_JES_EtaIntercalibration_Stat184: 1.2865919895211536e-05 - syst_JES_EtaIntercalibration_Stat185: 0.0002625194849911145 - syst_JES_EtaIntercalibration_Stat186: 0.0008670607288419883 - syst_JES_EtaIntercalibration_Stat187: 0.00046731745901474724 - syst_JES_EtaIntercalibration_Stat188: 3.7900077867138965e-05 + syst_JES_EtaIntercalibration_Stat184: 1.28659199e-05 + syst_JES_EtaIntercalibration_Stat185: 2.62519485e-04 + syst_JES_EtaIntercalibration_Stat186: 8.67060729e-04 + syst_JES_EtaIntercalibration_Stat187: 4.67317459e-04 + syst_JES_EtaIntercalibration_Stat188: 3.79000779e-05 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 - syst_JES_EtaIntercalibration_Stat191: 1.130108325559988e-05 - syst_JES_EtaIntercalibration_Stat192: 0.0005939028455900846 - syst_JES_EtaIntercalibration_Stat193: 0.0009211001248507135 - syst_JES_EtaIntercalibration_Stat194: 0.0002896061463436161 - syst_JES_EtaIntercalibration_Stat195: 1.1296431933579737e-05 - syst_JES_EtaIntercalibration_Stat196: 1.576999207450657e-07 + syst_JES_EtaIntercalibration_Stat191: 1.13010833e-05 + syst_JES_EtaIntercalibration_Stat192: 5.93902846e-04 + syst_JES_EtaIntercalibration_Stat193: 9.21100125e-04 + syst_JES_EtaIntercalibration_Stat194: 2.89606146e-04 + syst_JES_EtaIntercalibration_Stat195: 1.12964319e-05 + syst_JES_EtaIntercalibration_Stat196: 1.57699921e-07 syst_JES_EtaIntercalibration_Stat197: 0.0 syst_JES_EtaIntercalibration_Stat198: 0.0 - syst_JES_EtaIntercalibration_Stat199: 1.2589896931667074e-05 + syst_JES_EtaIntercalibration_Stat199: 1.25898969e-05 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 0.000390858004907153 - syst_JES_EtaIntercalibration_Stat201: 0.0012830004988307682 - syst_JES_EtaIntercalibration_Stat202: 0.0006189692460050016 - syst_JES_EtaIntercalibration_Stat203: 4.365714164658516e-05 + syst_JES_EtaIntercalibration_Stat200: 3.90858005e-04 + syst_JES_EtaIntercalibration_Stat201: 1.28300050e-03 + syst_JES_EtaIntercalibration_Stat202: 6.18969246e-04 + syst_JES_EtaIntercalibration_Stat203: 4.36571416e-05 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 - syst_JES_EtaIntercalibration_Stat206: 1.0436923684687936e-05 - syst_JES_EtaIntercalibration_Stat207: 0.0007940310384361558 - syst_JES_EtaIntercalibration_Stat208: 0.0015950902795766764 - syst_JES_EtaIntercalibration_Stat209: 0.0003851200170076855 + syst_JES_EtaIntercalibration_Stat206: 1.04369237e-05 + syst_JES_EtaIntercalibration_Stat207: 7.94031038e-04 + syst_JES_EtaIntercalibration_Stat208: 1.59509028e-03 + syst_JES_EtaIntercalibration_Stat209: 3.85120017e-04 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 2.221488619709766e-05 - syst_JES_EtaIntercalibration_Stat211: 1.7345133842954342e-07 - syst_JES_EtaIntercalibration_Stat212: 4.539842370611561e-06 - syst_JES_EtaIntercalibration_Stat213: 0.00023641066219610315 - syst_JES_EtaIntercalibration_Stat214: 0.0006835855542651556 - syst_JES_EtaIntercalibration_Stat215: 0.0004330403214482457 - syst_JES_EtaIntercalibration_Stat216: 4.7167239425262105e-05 + syst_JES_EtaIntercalibration_Stat210: 2.22148862e-05 + syst_JES_EtaIntercalibration_Stat211: 1.73451338e-07 + syst_JES_EtaIntercalibration_Stat212: 4.53984237e-06 + syst_JES_EtaIntercalibration_Stat213: 2.36410662e-04 + syst_JES_EtaIntercalibration_Stat214: 6.83585554e-04 + syst_JES_EtaIntercalibration_Stat215: 4.33040321e-04 + syst_JES_EtaIntercalibration_Stat216: 4.71672394e-05 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 - syst_JES_EtaIntercalibration_Stat219: 9.486806667683284e-06 + syst_JES_EtaIntercalibration_Stat219: 9.48680667e-06 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 0.0004983720974332331 - syst_JES_EtaIntercalibration_Stat221: 0.0006697156318169675 - syst_JES_EtaIntercalibration_Stat222: 0.00022648266396128425 - syst_JES_EtaIntercalibration_Stat223: 2.5019473915332432e-05 - syst_JES_EtaIntercalibration_Stat224: 2.9651586804081835e-06 - syst_JES_EtaIntercalibration_Stat225: 0.00012362070245310855 - syst_JES_EtaIntercalibration_Stat226: 8.510854995239902e-05 - syst_JES_EtaIntercalibration_Stat227: 4.2870514304705975e-05 - syst_JES_EtaIntercalibration_Stat228: 1.506515176170529e-05 + syst_JES_EtaIntercalibration_Stat220: 4.98372097e-04 + syst_JES_EtaIntercalibration_Stat221: 6.69715632e-04 + syst_JES_EtaIntercalibration_Stat222: 2.26482664e-04 + syst_JES_EtaIntercalibration_Stat223: 2.50194739e-05 + syst_JES_EtaIntercalibration_Stat224: 2.96515868e-06 + syst_JES_EtaIntercalibration_Stat225: 1.23620702e-04 + syst_JES_EtaIntercalibration_Stat226: 8.51085500e-05 + syst_JES_EtaIntercalibration_Stat227: 4.28705143e-05 + syst_JES_EtaIntercalibration_Stat228: 1.50651518e-05 syst_JES_EtaIntercalibration_Stat229: 0.0 syst_JES_EtaIntercalibration_Stat23: 0.0 syst_JES_EtaIntercalibration_Stat230: 0.0 - syst_JES_EtaIntercalibration_Stat231: 7.19753713085247e-06 - syst_JES_EtaIntercalibration_Stat232: 8.140386769066935e-05 - syst_JES_EtaIntercalibration_Stat233: 0.00019318955995343016 - syst_JES_EtaIntercalibration_Stat234: 6.941421666344726e-05 - syst_JES_EtaIntercalibration_Stat235: 2.986923987394229e-06 - syst_JES_EtaIntercalibration_Stat236: 2.4547331321347335e-05 - syst_JES_EtaIntercalibration_Stat237: 6.944166544661785e-05 - syst_JES_EtaIntercalibration_Stat238: 5.068871866599115e-05 - syst_JES_EtaIntercalibration_Stat239: 2.181513904812403e-08 + syst_JES_EtaIntercalibration_Stat231: 7.19753713e-06 + syst_JES_EtaIntercalibration_Stat232: 8.14038677e-05 + syst_JES_EtaIntercalibration_Stat233: 1.93189560e-04 + syst_JES_EtaIntercalibration_Stat234: 6.94142167e-05 + syst_JES_EtaIntercalibration_Stat235: 2.98692399e-06 + syst_JES_EtaIntercalibration_Stat236: 2.45473313e-05 + syst_JES_EtaIntercalibration_Stat237: 6.94416654e-05 + syst_JES_EtaIntercalibration_Stat238: 5.06887187e-05 + syst_JES_EtaIntercalibration_Stat239: 2.18151390e-08 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 - syst_JES_EtaIntercalibration_Stat242: 1.36832013802257e-11 - syst_JES_EtaIntercalibration_Stat243: 4.3102061145611125e-05 - syst_JES_EtaIntercalibration_Stat244: 5.223246380365376e-05 - syst_JES_EtaIntercalibration_Stat245: 2.1560452221602403e-05 + syst_JES_EtaIntercalibration_Stat242: 1.36832014e-11 + syst_JES_EtaIntercalibration_Stat243: 4.31020611e-05 + syst_JES_EtaIntercalibration_Stat244: 5.22324638e-05 + syst_JES_EtaIntercalibration_Stat245: 2.15604522e-05 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 - syst_JES_EtaIntercalibration_Stat27: 8.485628129372628e-16 - syst_JES_EtaIntercalibration_Stat28: 4.713944219051723e-10 - syst_JES_EtaIntercalibration_Stat29: 1.1631585476571311e-06 + syst_JES_EtaIntercalibration_Stat27: 8.48562813e-16 + syst_JES_EtaIntercalibration_Stat28: 4.71394422e-10 + syst_JES_EtaIntercalibration_Stat29: 1.16315855e-06 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 1.17545581463569e-06 - syst_JES_EtaIntercalibration_Stat31: 1.4020951287270062e-16 + syst_JES_EtaIntercalibration_Stat30: 1.17545581e-06 + syst_JES_EtaIntercalibration_Stat31: 1.40209513e-16 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 - syst_JES_EtaIntercalibration_Stat34: 1.2427464544306695e-17 - syst_JES_EtaIntercalibration_Stat35: 2.1122405151631657e-07 - syst_JES_EtaIntercalibration_Stat36: 2.1157237656228985e-07 - syst_JES_EtaIntercalibration_Stat37: 6.029192246793927e-12 - syst_JES_EtaIntercalibration_Stat38: 3.1658301964374213e-15 + syst_JES_EtaIntercalibration_Stat34: 1.24274645e-17 + syst_JES_EtaIntercalibration_Stat35: 2.11224052e-07 + syst_JES_EtaIntercalibration_Stat36: 2.11572377e-07 + syst_JES_EtaIntercalibration_Stat37: 6.02919225e-12 + syst_JES_EtaIntercalibration_Stat38: 3.16583020e-15 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 syst_JES_EtaIntercalibration_Stat40: 0.0 @@ -29273,21 +29273,21 @@ bins: syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 syst_JES_EtaIntercalibration_Stat47: 0.0 - syst_JES_EtaIntercalibration_Stat48: 5.061052459716259e-16 - syst_JES_EtaIntercalibration_Stat49: 5.7384538640647795e-15 - syst_JES_EtaIntercalibration_Stat5: 4.673073078820831e-16 - syst_JES_EtaIntercalibration_Stat50: 4.855003879504114e-10 - syst_JES_EtaIntercalibration_Stat51: 1.1420243478594087e-06 - syst_JES_EtaIntercalibration_Stat52: 1.1574416837249211e-06 - syst_JES_EtaIntercalibration_Stat53: 3.4591112568837684e-15 - syst_JES_EtaIntercalibration_Stat54: 2.5244640520316384e-15 + syst_JES_EtaIntercalibration_Stat48: 5.06105246e-16 + syst_JES_EtaIntercalibration_Stat49: 5.73845386e-15 + syst_JES_EtaIntercalibration_Stat5: 4.67307308e-16 + syst_JES_EtaIntercalibration_Stat50: 4.85500388e-10 + syst_JES_EtaIntercalibration_Stat51: 1.14202435e-06 + syst_JES_EtaIntercalibration_Stat52: 1.15744168e-06 + syst_JES_EtaIntercalibration_Stat53: 3.45911126e-15 + syst_JES_EtaIntercalibration_Stat54: 2.52446405e-15 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 8.605935785839911e-17 - syst_JES_EtaIntercalibration_Stat57: 2.0838144391968496e-07 - syst_JES_EtaIntercalibration_Stat58: 2.1055384224210365e-07 - syst_JES_EtaIntercalibration_Stat59: 1.148135349164026e-11 - syst_JES_EtaIntercalibration_Stat6: 9.428333044605499e-16 - syst_JES_EtaIntercalibration_Stat60: 3.1677531954841436e-14 + syst_JES_EtaIntercalibration_Stat56: 8.60593579e-17 + syst_JES_EtaIntercalibration_Stat57: 2.08381444e-07 + syst_JES_EtaIntercalibration_Stat58: 2.10553842e-07 + syst_JES_EtaIntercalibration_Stat59: 1.14813535e-11 + syst_JES_EtaIntercalibration_Stat6: 9.42833304e-16 + syst_JES_EtaIntercalibration_Stat60: 3.16775320e-14 syst_JES_EtaIntercalibration_Stat61: 0.0 syst_JES_EtaIntercalibration_Stat62: 0.0 syst_JES_EtaIntercalibration_Stat63: 0.0 @@ -29297,21 +29297,21 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 2.0629507992194092e-14 - syst_JES_EtaIntercalibration_Stat70: 4.673073078820831e-16 - syst_JES_EtaIntercalibration_Stat71: 4.523187949886672e-14 - syst_JES_EtaIntercalibration_Stat72: 1.1114326970176826e-09 - syst_JES_EtaIntercalibration_Stat73: 2.092334896712283e-06 - syst_JES_EtaIntercalibration_Stat74: 2.186835960926196e-06 - syst_JES_EtaIntercalibration_Stat75: 1.8710968619702723e-13 - syst_JES_EtaIntercalibration_Stat76: 2.5244640520316384e-15 + syst_JES_EtaIntercalibration_Stat7: 2.06295080e-14 + syst_JES_EtaIntercalibration_Stat70: 4.67307308e-16 + syst_JES_EtaIntercalibration_Stat71: 4.52318795e-14 + syst_JES_EtaIntercalibration_Stat72: 1.11143270e-09 + syst_JES_EtaIntercalibration_Stat73: 2.09233490e-06 + syst_JES_EtaIntercalibration_Stat74: 2.18683596e-06 + syst_JES_EtaIntercalibration_Stat75: 1.87109686e-13 + syst_JES_EtaIntercalibration_Stat76: 2.52446405e-15 syst_JES_EtaIntercalibration_Stat77: 0.0 - syst_JES_EtaIntercalibration_Stat78: 4.390611204604662e-14 - syst_JES_EtaIntercalibration_Stat79: 1.9489386811770835e-07 - syst_JES_EtaIntercalibration_Stat8: 3.0803559859211077e-15 - syst_JES_EtaIntercalibration_Stat80: 4.240726827202e-06 - syst_JES_EtaIntercalibration_Stat81: 1.5858953142231677e-07 - syst_JES_EtaIntercalibration_Stat82: 4.035738687031161e-14 + syst_JES_EtaIntercalibration_Stat78: 4.39061120e-14 + syst_JES_EtaIntercalibration_Stat79: 1.94893868e-07 + syst_JES_EtaIntercalibration_Stat8: 3.08035599e-15 + syst_JES_EtaIntercalibration_Stat80: 4.24072683e-06 + syst_JES_EtaIntercalibration_Stat81: 1.58589531e-07 + syst_JES_EtaIntercalibration_Stat82: 4.03573869e-14 syst_JES_EtaIntercalibration_Stat83: 0.0 syst_JES_EtaIntercalibration_Stat84: 0.0 syst_JES_EtaIntercalibration_Stat85: 0.0 @@ -29321,118 +29321,118 @@ bins: syst_JES_EtaIntercalibration_Stat89: 0.0 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 4.0244200513862867e-16 - syst_JES_EtaIntercalibration_Stat92: 4.3548275274314824e-11 - syst_JES_EtaIntercalibration_Stat93: 1.5240569946035482e-09 - syst_JES_EtaIntercalibration_Stat94: 2.100916685639866e-06 - syst_JES_EtaIntercalibration_Stat95: 2.19368259041731e-06 - syst_JES_EtaIntercalibration_Stat96: 3.7743577847761067e-13 - syst_JES_EtaIntercalibration_Stat97: 2.5244640520316384e-15 + syst_JES_EtaIntercalibration_Stat91: 4.02442005e-16 + syst_JES_EtaIntercalibration_Stat92: 4.35482753e-11 + syst_JES_EtaIntercalibration_Stat93: 1.52405699e-09 + syst_JES_EtaIntercalibration_Stat94: 2.10091669e-06 + syst_JES_EtaIntercalibration_Stat95: 2.19368259e-06 + syst_JES_EtaIntercalibration_Stat96: 3.77435778e-13 + syst_JES_EtaIntercalibration_Stat97: 2.52446405e-15 syst_JES_EtaIntercalibration_Stat98: 0.0 - syst_JES_EtaIntercalibration_Stat99: 6.1981297738539155e-09 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.006432730427275809 - syst_JES_Flavour_Comp: 0.020755570336659025 - syst_JES_Gjet_Generator: 0.03215492924887256 - syst_JES_Gjet_OOC: 0.025533109387616697 - syst_JES_Gjet_Purity: 0.00696443601449536 - syst_JES_Gjet_Stat1: 6.342769631232844e-05 - syst_JES_Gjet_Stat10: 0.000652362803584018 - syst_JES_Gjet_Stat11: 0.0008970836680600087 - syst_JES_Gjet_Stat12: 0.003102577436583977 - syst_JES_Gjet_Stat13: 0.007426541792786195 - syst_JES_Gjet_Stat14: 0.007012030572523198 - syst_JES_Gjet_Stat15: 0.0018923093695270867 - syst_JES_Gjet_Stat2: 6.32986634929996e-05 - syst_JES_Gjet_Stat3: 8.091978790753223e-05 - syst_JES_Gjet_Stat4: 6.369613547932089e-05 - syst_JES_Gjet_Stat5: 6.984786396161302e-05 - syst_JES_Gjet_Stat6: 0.00022971414845411681 - syst_JES_Gjet_Stat7: 0.00029541672261400504 - syst_JES_Gjet_Stat8: 0.00023282441882242506 - syst_JES_Gjet_Stat9: 0.00040080303142566175 - syst_JES_Gjet_Veto: 0.02158117408761627 - syst_JES_Gjet_dPhi: 0.0022251028627908423 - syst_JES_LArESZee: 0.047923024737593516 - syst_JES_LArEsmear: 0.0036210617227548053 - syst_JES_LAr_JVT: 0.004548928884913458 - syst_JES_MJB_Alpha: 0.0002826028662275031 - syst_JES_MJB_Asym: 0.0017468709168109702 - syst_JES_MJB_Beta: 0.00018463794050790322 - syst_JES_MJB_Stat1: 4.748417288950077e-05 - syst_JES_MJB_Stat10: 0.00011295486687021282 - syst_JES_MJB_Stat11: 2.8715425732522232e-06 - syst_JES_MJB_Stat12: 4.193294126474644e-06 - syst_JES_MJB_Stat13: 3.4816445826649225e-05 - syst_JES_MJB_Stat14: 1.613606301518434e-05 - syst_JES_MJB_Stat15: 4.766708553079368e-07 - syst_JES_MJB_Stat16: 2.2116301679982575e-07 + syst_JES_EtaIntercalibration_Stat99: 6.19812977e-09 + syst_JES_EtaIntercalibration_TotalStat_MJB: 6.43273043e-03 + syst_JES_Flavour_Comp: 2.07555703e-02 + syst_JES_Gjet_Generator: 3.21549292e-02 + syst_JES_Gjet_OOC: 2.55331094e-02 + syst_JES_Gjet_Purity: 6.96443601e-03 + syst_JES_Gjet_Stat1: 6.34276963e-05 + syst_JES_Gjet_Stat10: 6.52362804e-04 + syst_JES_Gjet_Stat11: 8.97083668e-04 + syst_JES_Gjet_Stat12: 3.10257744e-03 + syst_JES_Gjet_Stat13: 7.42654179e-03 + syst_JES_Gjet_Stat14: 7.01203057e-03 + syst_JES_Gjet_Stat15: 1.89230937e-03 + syst_JES_Gjet_Stat2: 6.32986635e-05 + syst_JES_Gjet_Stat3: 8.09197879e-05 + syst_JES_Gjet_Stat4: 6.36961355e-05 + syst_JES_Gjet_Stat5: 6.98478640e-05 + syst_JES_Gjet_Stat6: 2.29714148e-04 + syst_JES_Gjet_Stat7: 2.95416723e-04 + syst_JES_Gjet_Stat8: 2.32824419e-04 + syst_JES_Gjet_Stat9: 4.00803031e-04 + syst_JES_Gjet_Veto: 2.15811741e-02 + syst_JES_Gjet_dPhi: 2.22510286e-03 + syst_JES_LArESZee: 4.79230247e-02 + syst_JES_LArEsmear: 3.62106172e-03 + syst_JES_LAr_JVT: 4.54892888e-03 + syst_JES_MJB_Alpha: 2.82602866e-04 + syst_JES_MJB_Asym: 1.74687092e-03 + syst_JES_MJB_Beta: 1.84637941e-04 + syst_JES_MJB_Stat1: 4.74841729e-05 + syst_JES_MJB_Stat10: 1.12954867e-04 + syst_JES_MJB_Stat11: 2.87154257e-06 + syst_JES_MJB_Stat12: 4.19329413e-06 + syst_JES_MJB_Stat13: 3.48164458e-05 + syst_JES_MJB_Stat14: 1.61360630e-05 + syst_JES_MJB_Stat15: 4.76670855e-07 + syst_JES_MJB_Stat16: 2.21163017e-07 syst_JES_MJB_Stat2: 0.0 - syst_JES_MJB_Stat3: 0.0005054124256485984 - syst_JES_MJB_Stat4: 0.00020853891723129282 - syst_JES_MJB_Stat5: 0.00010358529854665671 - syst_JES_MJB_Stat6: 0.00017192140646237164 - syst_JES_MJB_Stat7: 7.76627288134405e-05 - syst_JES_MJB_Stat8: 7.266253070702947e-05 - syst_JES_MJB_Stat9: 1.2413076986287484e-05 - syst_JES_MJB_Threshold: 0.0023852934305866862 - syst_JES_Pileup_MuOffset: 0.005084508309561506 - syst_JES_Pileup_NPVOffset: 0.005190716207807936 - syst_JES_Pileup_Pt_term: 0.0056552321570382934 - syst_JES_PunchThrough_MC15: 0.0011944506802292006 - syst_JES_SingleParticle_HighPt: 3.245563279309156e-36 - syst_JES_Zjet_MC: 0.019178130122616228 - syst_JES_Zjet_MuScale: 0.0011697685925002432 - syst_JES_Zjet_MuSmearID: 0.0002881127904137544 - syst_JES_Zjet_MuSmearMS: 0.005364299837816674 - syst_JES_Zjet_OOC: 0.00855234020604887 - syst_JES_Zjet_Stat1: 0.00037033288376810396 - syst_JES_Zjet_Stat10: 0.0006612544196449655 - syst_JES_Zjet_Stat11: 0.0009102215554468043 - syst_JES_Zjet_Stat12: 0.003497434917192885 - syst_JES_Zjet_Stat13: 0.005824347688797433 - syst_JES_Zjet_Stat2: 2.8223767909334855e-06 - syst_JES_Zjet_Stat3: 0.00016430656560223028 - syst_JES_Zjet_Stat4: 0.00016715019443602213 - syst_JES_Zjet_Stat5: 0.00022529147786811644 - syst_JES_Zjet_Stat6: 0.0002307291268999213 - syst_JES_Zjet_Stat7: 0.00022549093108149607 - syst_JES_Zjet_Stat8: 0.00019880125754129425 - syst_JES_Zjet_Stat9: 0.00038162603095176826 - syst_JES_Zjet_Veto: 0.001895212587020253 - syst_JES_Zjet_dPhi: 0.0015299551464013578 + syst_JES_MJB_Stat3: 5.05412426e-04 + syst_JES_MJB_Stat4: 2.08538917e-04 + syst_JES_MJB_Stat5: 1.03585299e-04 + syst_JES_MJB_Stat6: 1.71921406e-04 + syst_JES_MJB_Stat7: 7.76627288e-05 + syst_JES_MJB_Stat8: 7.26625307e-05 + syst_JES_MJB_Stat9: 1.24130770e-05 + syst_JES_MJB_Threshold: 2.38529343e-03 + syst_JES_Pileup_MuOffset: 5.08450831e-03 + syst_JES_Pileup_NPVOffset: 5.19071621e-03 + syst_JES_Pileup_Pt_term: 5.65523216e-03 + syst_JES_PunchThrough_MC15: 1.19445068e-03 + syst_JES_SingleParticle_HighPt: 3.24556328e-36 + syst_JES_Zjet_MC: 1.91781301e-02 + syst_JES_Zjet_MuScale: 1.16976859e-03 + syst_JES_Zjet_MuSmearID: 2.88112790e-04 + syst_JES_Zjet_MuSmearMS: 5.36429984e-03 + syst_JES_Zjet_OOC: 8.55234021e-03 + syst_JES_Zjet_Stat1: 3.70332884e-04 + syst_JES_Zjet_Stat10: 6.61254420e-04 + syst_JES_Zjet_Stat11: 9.10221555e-04 + syst_JES_Zjet_Stat12: 3.49743492e-03 + syst_JES_Zjet_Stat13: 5.82434769e-03 + syst_JES_Zjet_Stat2: 2.82237679e-06 + syst_JES_Zjet_Stat3: 1.64306566e-04 + syst_JES_Zjet_Stat4: 1.67150194e-04 + syst_JES_Zjet_Stat5: 2.25291478e-04 + syst_JES_Zjet_Stat6: 2.30729127e-04 + syst_JES_Zjet_Stat7: 2.25490931e-04 + syst_JES_Zjet_Stat8: 1.98801258e-04 + syst_JES_Zjet_Stat9: 3.81626031e-04 + syst_JES_Zjet_Veto: 1.89521259e-03 + syst_JES_Zjet_dPhi: 1.52995515e-03 syst_PRW: 0.0 syst_Unfolding_bias: 0.001545 - syst_cleaning: 0.008577981624484865 + syst_cleaning: 8.57798162e-03 syst_lumi: 0.03162 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.00648460669586059 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 0.004259064774102409 - syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0005333405736487709 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 6.48460670e-03 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 4.25906477e-03 + syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 5.33340574e-04 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 0.009291596418269574 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0049718498569445956 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.007262895428133328 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 9.29159642e-03 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 4.97184986e-03 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 7.26289543e-03 - stat: 0.004227 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.006092219689899569 - syst_JER_NP1: 0.00046392694198548113 - syst_JER_NP2: 0.003053659239338928 - syst_JER_NP3: 0.0004957064126073012 - syst_JER_NP4: 7.819377021221064e-09 - syst_JER_NP5: 0.0002587258424433091 - syst_JER_NP6: 1.5931631272408985e-11 - syst_JER_NP7: 7.88819282218684e-15 - syst_JER_NP8: 0.0007759739299744548 - syst_JES_EtaIntercalibration_Modelling: 0.039075950746590926 + syst_JER_NP0: 6.09221969e-03 + syst_JER_NP1: 4.63926942e-04 + syst_JER_NP2: 3.05365924e-03 + syst_JER_NP3: 4.95706413e-04 + syst_JER_NP4: 7.81937702e-09 + syst_JER_NP5: 2.58725842e-04 + syst_JER_NP6: 1.59316313e-11 + syst_JER_NP7: 7.88819282e-15 + syst_JER_NP8: 7.75973930e-04 + syst_JES_EtaIntercalibration_Modelling: 3.90759507e-02 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 3.896183903192969e-09 - syst_JES_EtaIntercalibration_Stat101: 2.3881483129560863e-06 - syst_JES_EtaIntercalibration_Stat102: 1.2255395172331245e-08 - syst_JES_EtaIntercalibration_Stat103: 2.086853523848763e-12 + syst_JES_EtaIntercalibration_Stat100: 3.89618390e-09 + syst_JES_EtaIntercalibration_Stat101: 2.38814831e-06 + syst_JES_EtaIntercalibration_Stat102: 1.22553952e-08 + syst_JES_EtaIntercalibration_Stat103: 2.08685352e-12 syst_JES_EtaIntercalibration_Stat104: 0.0 syst_JES_EtaIntercalibration_Stat105: 0.0 syst_JES_EtaIntercalibration_Stat106: 0.0 @@ -29441,170 +29441,170 @@ bins: syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 syst_JES_EtaIntercalibration_Stat110: 0.0 - syst_JES_EtaIntercalibration_Stat111: 2.812850511491857e-17 - syst_JES_EtaIntercalibration_Stat112: 6.053085659397198e-11 - syst_JES_EtaIntercalibration_Stat113: 5.598441993090578e-06 - syst_JES_EtaIntercalibration_Stat114: 4.082479883600164e-06 - syst_JES_EtaIntercalibration_Stat115: 8.865568058505895e-06 - syst_JES_EtaIntercalibration_Stat116: 3.720501025522063e-08 + syst_JES_EtaIntercalibration_Stat111: 2.81285051e-17 + syst_JES_EtaIntercalibration_Stat112: 6.05308566e-11 + syst_JES_EtaIntercalibration_Stat113: 5.59844199e-06 + syst_JES_EtaIntercalibration_Stat114: 4.08247988e-06 + syst_JES_EtaIntercalibration_Stat115: 8.86556806e-06 + syst_JES_EtaIntercalibration_Stat116: 3.72050103e-08 syst_JES_EtaIntercalibration_Stat117: 0.0 syst_JES_EtaIntercalibration_Stat118: 0.0 - syst_JES_EtaIntercalibration_Stat119: 3.806181592677007e-08 + syst_JES_EtaIntercalibration_Stat119: 3.80618159e-08 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 1.9323126733269643e-06 - syst_JES_EtaIntercalibration_Stat121: 1.3753730066785519e-06 - syst_JES_EtaIntercalibration_Stat122: 2.7830944177501413e-06 - syst_JES_EtaIntercalibration_Stat123: 3.57001178188532e-08 + syst_JES_EtaIntercalibration_Stat120: 1.93231267e-06 + syst_JES_EtaIntercalibration_Stat121: 1.37537301e-06 + syst_JES_EtaIntercalibration_Stat122: 2.78309442e-06 + syst_JES_EtaIntercalibration_Stat123: 3.57001178e-08 syst_JES_EtaIntercalibration_Stat124: 0.0 syst_JES_EtaIntercalibration_Stat125: 0.0 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 syst_JES_EtaIntercalibration_Stat128: 0.0 syst_JES_EtaIntercalibration_Stat129: 0.0 - syst_JES_EtaIntercalibration_Stat13: 3.814841926091851e-08 + syst_JES_EtaIntercalibration_Stat13: 3.81484193e-08 syst_JES_EtaIntercalibration_Stat130: 0.0 - syst_JES_EtaIntercalibration_Stat131: 6.241105250674756e-10 - syst_JES_EtaIntercalibration_Stat132: 5.596991590801258e-06 - syst_JES_EtaIntercalibration_Stat133: 1.7673937733284e-05 - syst_JES_EtaIntercalibration_Stat134: 2.1985797688507916e-05 - syst_JES_EtaIntercalibration_Stat135: 7.960384464961475e-07 + syst_JES_EtaIntercalibration_Stat131: 6.24110525e-10 + syst_JES_EtaIntercalibration_Stat132: 5.59699159e-06 + syst_JES_EtaIntercalibration_Stat133: 1.76739377e-05 + syst_JES_EtaIntercalibration_Stat134: 2.19857977e-05 + syst_JES_EtaIntercalibration_Stat135: 7.96038446e-07 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 - syst_JES_EtaIntercalibration_Stat138: 3.529931060033326e-08 - syst_JES_EtaIntercalibration_Stat139: 2.820295826469273e-06 - syst_JES_EtaIntercalibration_Stat14: 9.138508672097435e-16 - syst_JES_EtaIntercalibration_Stat140: 5.489750551709977e-06 - syst_JES_EtaIntercalibration_Stat141: 3.4065050638447614e-06 - syst_JES_EtaIntercalibration_Stat142: 1.1460278931487663e-06 + syst_JES_EtaIntercalibration_Stat138: 3.52993106e-08 + syst_JES_EtaIntercalibration_Stat139: 2.82029583e-06 + syst_JES_EtaIntercalibration_Stat14: 9.13850867e-16 + syst_JES_EtaIntercalibration_Stat140: 5.48975055e-06 + syst_JES_EtaIntercalibration_Stat141: 3.40650506e-06 + syst_JES_EtaIntercalibration_Stat142: 1.14602789e-06 syst_JES_EtaIntercalibration_Stat143: 0.0 syst_JES_EtaIntercalibration_Stat144: 0.0 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 syst_JES_EtaIntercalibration_Stat147: 0.0 syst_JES_EtaIntercalibration_Stat148: 0.0 - syst_JES_EtaIntercalibration_Stat149: 4.696470141699508e-07 - syst_JES_EtaIntercalibration_Stat15: 8.760709084661755e-16 - syst_JES_EtaIntercalibration_Stat150: 5.861259932813081e-06 - syst_JES_EtaIntercalibration_Stat151: 2.6289071398586908e-05 - syst_JES_EtaIntercalibration_Stat152: 2.564529758064819e-05 - syst_JES_EtaIntercalibration_Stat153: 9.032813520939919e-07 + syst_JES_EtaIntercalibration_Stat149: 4.69647014e-07 + syst_JES_EtaIntercalibration_Stat15: 8.76070908e-16 + syst_JES_EtaIntercalibration_Stat150: 5.86125993e-06 + syst_JES_EtaIntercalibration_Stat151: 2.62890714e-05 + syst_JES_EtaIntercalibration_Stat152: 2.56452976e-05 + syst_JES_EtaIntercalibration_Stat153: 9.03281352e-07 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 3.111629273956318e-09 - syst_JES_EtaIntercalibration_Stat157: 5.1622246173524844e-06 - syst_JES_EtaIntercalibration_Stat158: 2.774878499592369e-05 - syst_JES_EtaIntercalibration_Stat159: 8.198681891011506e-06 + syst_JES_EtaIntercalibration_Stat156: 3.11162927e-09 + syst_JES_EtaIntercalibration_Stat157: 5.16222462e-06 + syst_JES_EtaIntercalibration_Stat158: 2.77487850e-05 + syst_JES_EtaIntercalibration_Stat159: 8.19868189e-06 syst_JES_EtaIntercalibration_Stat16: 0.0 - syst_JES_EtaIntercalibration_Stat160: 1.4661714113636235e-08 + syst_JES_EtaIntercalibration_Stat160: 1.46617141e-08 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 - syst_JES_EtaIntercalibration_Stat167: 8.814217804632468e-06 - syst_JES_EtaIntercalibration_Stat168: 2.328649052025659e-05 - syst_JES_EtaIntercalibration_Stat169: 5.971443460336872e-05 + syst_JES_EtaIntercalibration_Stat167: 8.81421780e-06 + syst_JES_EtaIntercalibration_Stat168: 2.32864905e-05 + syst_JES_EtaIntercalibration_Stat169: 5.97144346e-05 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 3.752542496428255e-05 - syst_JES_EtaIntercalibration_Stat171: 1.7584073106080968e-06 + syst_JES_EtaIntercalibration_Stat170: 3.75254250e-05 + syst_JES_EtaIntercalibration_Stat171: 1.75840731e-06 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 - syst_JES_EtaIntercalibration_Stat174: 6.696978310813305e-09 - syst_JES_EtaIntercalibration_Stat175: 3.292415830359222e-05 - syst_JES_EtaIntercalibration_Stat176: 1.7875035664300087e-05 - syst_JES_EtaIntercalibration_Stat177: 1.8112905012725045e-05 - syst_JES_EtaIntercalibration_Stat178: 1.345018270024612e-06 + syst_JES_EtaIntercalibration_Stat174: 6.69697831e-09 + syst_JES_EtaIntercalibration_Stat175: 3.29241583e-05 + syst_JES_EtaIntercalibration_Stat176: 1.78750357e-05 + syst_JES_EtaIntercalibration_Stat177: 1.81129050e-05 + syst_JES_EtaIntercalibration_Stat178: 1.34501827e-06 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 syst_JES_EtaIntercalibration_Stat180: 0.0 syst_JES_EtaIntercalibration_Stat181: 0.0 syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 - syst_JES_EtaIntercalibration_Stat184: 7.825170157894331e-06 - syst_JES_EtaIntercalibration_Stat185: 0.0001164088539373187 - syst_JES_EtaIntercalibration_Stat186: 0.0003690804079059196 - syst_JES_EtaIntercalibration_Stat187: 0.00018850185012354653 - syst_JES_EtaIntercalibration_Stat188: 1.8013225674695245e-05 + syst_JES_EtaIntercalibration_Stat184: 7.82517016e-06 + syst_JES_EtaIntercalibration_Stat185: 1.16408854e-04 + syst_JES_EtaIntercalibration_Stat186: 3.69080408e-04 + syst_JES_EtaIntercalibration_Stat187: 1.88501850e-04 + syst_JES_EtaIntercalibration_Stat188: 1.80132257e-05 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 - syst_JES_EtaIntercalibration_Stat191: 9.535156002918882e-06 - syst_JES_EtaIntercalibration_Stat192: 0.0002479696906881968 - syst_JES_EtaIntercalibration_Stat193: 0.0003730959762581205 - syst_JES_EtaIntercalibration_Stat194: 0.00011328452972493641 - syst_JES_EtaIntercalibration_Stat195: 3.659014348154432e-06 - syst_JES_EtaIntercalibration_Stat196: 3.588688097296142e-08 + syst_JES_EtaIntercalibration_Stat191: 9.53515600e-06 + syst_JES_EtaIntercalibration_Stat192: 2.47969691e-04 + syst_JES_EtaIntercalibration_Stat193: 3.73095976e-04 + syst_JES_EtaIntercalibration_Stat194: 1.13284530e-04 + syst_JES_EtaIntercalibration_Stat195: 3.65901435e-06 + syst_JES_EtaIntercalibration_Stat196: 3.58868810e-08 syst_JES_EtaIntercalibration_Stat197: 0.0 syst_JES_EtaIntercalibration_Stat198: 0.0 - syst_JES_EtaIntercalibration_Stat199: 5.667308592930157e-06 + syst_JES_EtaIntercalibration_Stat199: 5.66730859e-06 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 0.00018412633570459168 - syst_JES_EtaIntercalibration_Stat201: 0.0006038596256581492 - syst_JES_EtaIntercalibration_Stat202: 0.00027639505693843365 - syst_JES_EtaIntercalibration_Stat203: 2.5577593529298256e-05 + syst_JES_EtaIntercalibration_Stat200: 1.84126336e-04 + syst_JES_EtaIntercalibration_Stat201: 6.03859626e-04 + syst_JES_EtaIntercalibration_Stat202: 2.76395057e-04 + syst_JES_EtaIntercalibration_Stat203: 2.55775935e-05 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 - syst_JES_EtaIntercalibration_Stat206: 8.507693576992532e-06 - syst_JES_EtaIntercalibration_Stat207: 0.00035635433209096814 - syst_JES_EtaIntercalibration_Stat208: 0.0007445962311884208 - syst_JES_EtaIntercalibration_Stat209: 0.00018235418147111406 + syst_JES_EtaIntercalibration_Stat206: 8.50769358e-06 + syst_JES_EtaIntercalibration_Stat207: 3.56354332e-04 + syst_JES_EtaIntercalibration_Stat208: 7.44596231e-04 + syst_JES_EtaIntercalibration_Stat209: 1.82354181e-04 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 1.2351556855311805e-05 - syst_JES_EtaIntercalibration_Stat211: 3.874384700784758e-08 - syst_JES_EtaIntercalibration_Stat212: 2.538522995759542e-06 - syst_JES_EtaIntercalibration_Stat213: 0.00013173748014517356 - syst_JES_EtaIntercalibration_Stat214: 0.00039945463759981554 - syst_JES_EtaIntercalibration_Stat215: 0.0002869614782510015 - syst_JES_EtaIntercalibration_Stat216: 2.6214524003879984e-05 + syst_JES_EtaIntercalibration_Stat210: 1.23515569e-05 + syst_JES_EtaIntercalibration_Stat211: 3.87438470e-08 + syst_JES_EtaIntercalibration_Stat212: 2.53852300e-06 + syst_JES_EtaIntercalibration_Stat213: 1.31737480e-04 + syst_JES_EtaIntercalibration_Stat214: 3.99454638e-04 + syst_JES_EtaIntercalibration_Stat215: 2.86961478e-04 + syst_JES_EtaIntercalibration_Stat216: 2.62145240e-05 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 - syst_JES_EtaIntercalibration_Stat219: 8.592014010114276e-06 + syst_JES_EtaIntercalibration_Stat219: 8.59201401e-06 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 0.00028375089427171857 - syst_JES_EtaIntercalibration_Stat221: 0.0003860350761265095 - syst_JES_EtaIntercalibration_Stat222: 0.00012942831635697033 - syst_JES_EtaIntercalibration_Stat223: 1.3908367984778084e-05 - syst_JES_EtaIntercalibration_Stat224: 1.418137407834657e-06 - syst_JES_EtaIntercalibration_Stat225: 0.00011720521618085093 - syst_JES_EtaIntercalibration_Stat226: 0.00027141320435822573 - syst_JES_EtaIntercalibration_Stat227: 0.00017026061435340825 - syst_JES_EtaIntercalibration_Stat228: 1.69652859925054e-05 + syst_JES_EtaIntercalibration_Stat220: 2.83750894e-04 + syst_JES_EtaIntercalibration_Stat221: 3.86035076e-04 + syst_JES_EtaIntercalibration_Stat222: 1.29428316e-04 + syst_JES_EtaIntercalibration_Stat223: 1.39083680e-05 + syst_JES_EtaIntercalibration_Stat224: 1.41813741e-06 + syst_JES_EtaIntercalibration_Stat225: 1.17205216e-04 + syst_JES_EtaIntercalibration_Stat226: 2.71413204e-04 + syst_JES_EtaIntercalibration_Stat227: 1.70260614e-04 + syst_JES_EtaIntercalibration_Stat228: 1.69652860e-05 syst_JES_EtaIntercalibration_Stat229: 0.0 syst_JES_EtaIntercalibration_Stat23: 0.0 syst_JES_EtaIntercalibration_Stat230: 0.0 - syst_JES_EtaIntercalibration_Stat231: 5.275826759854801e-06 - syst_JES_EtaIntercalibration_Stat232: 0.00016086865162299338 - syst_JES_EtaIntercalibration_Stat233: 0.00030898574400771303 - syst_JES_EtaIntercalibration_Stat234: 8.767240900077972e-05 - syst_JES_EtaIntercalibration_Stat235: 4.212999926570504e-06 - syst_JES_EtaIntercalibration_Stat236: 9.789083511749198e-06 - syst_JES_EtaIntercalibration_Stat237: 3.9573620948808806e-05 - syst_JES_EtaIntercalibration_Stat238: 2.8530748325271808e-05 - syst_JES_EtaIntercalibration_Stat239: 1.0031611692562815e-07 + syst_JES_EtaIntercalibration_Stat231: 5.27582676e-06 + syst_JES_EtaIntercalibration_Stat232: 1.60868652e-04 + syst_JES_EtaIntercalibration_Stat233: 3.08985744e-04 + syst_JES_EtaIntercalibration_Stat234: 8.76724090e-05 + syst_JES_EtaIntercalibration_Stat235: 4.21299993e-06 + syst_JES_EtaIntercalibration_Stat236: 9.78908351e-06 + syst_JES_EtaIntercalibration_Stat237: 3.95736209e-05 + syst_JES_EtaIntercalibration_Stat238: 2.85307483e-05 + syst_JES_EtaIntercalibration_Stat239: 1.00316117e-07 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 - syst_JES_EtaIntercalibration_Stat242: 4.1170848008951544e-10 - syst_JES_EtaIntercalibration_Stat243: 2.7115689494276188e-05 - syst_JES_EtaIntercalibration_Stat244: 2.6492441846685253e-05 - syst_JES_EtaIntercalibration_Stat245: 4.162995195769507e-06 + syst_JES_EtaIntercalibration_Stat242: 4.11708480e-10 + syst_JES_EtaIntercalibration_Stat243: 2.71156895e-05 + syst_JES_EtaIntercalibration_Stat244: 2.64924418e-05 + syst_JES_EtaIntercalibration_Stat245: 4.16299520e-06 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 - syst_JES_EtaIntercalibration_Stat27: 1.519148797847005e-16 - syst_JES_EtaIntercalibration_Stat28: 6.285865618423472e-11 - syst_JES_EtaIntercalibration_Stat29: 3.4634085512595845e-07 + syst_JES_EtaIntercalibration_Stat27: 1.51914880e-16 + syst_JES_EtaIntercalibration_Stat28: 6.28586562e-11 + syst_JES_EtaIntercalibration_Stat29: 3.46340855e-07 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 3.515196471370657e-07 - syst_JES_EtaIntercalibration_Stat31: 2.5911480081230407e-17 + syst_JES_EtaIntercalibration_Stat30: 3.51519647e-07 + syst_JES_EtaIntercalibration_Stat31: 2.59114801e-17 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 - syst_JES_EtaIntercalibration_Stat34: 2.5062775185521655e-18 - syst_JES_EtaIntercalibration_Stat35: 3.8105179832073595e-08 - syst_JES_EtaIntercalibration_Stat36: 3.81400758451094e-08 - syst_JES_EtaIntercalibration_Stat37: 7.902919555649988e-13 - syst_JES_EtaIntercalibration_Stat38: 4.78372871382774e-16 + syst_JES_EtaIntercalibration_Stat34: 2.50627752e-18 + syst_JES_EtaIntercalibration_Stat35: 3.81051798e-08 + syst_JES_EtaIntercalibration_Stat36: 3.81400758e-08 + syst_JES_EtaIntercalibration_Stat37: 7.90291956e-13 + syst_JES_EtaIntercalibration_Stat38: 4.78372871e-16 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 syst_JES_EtaIntercalibration_Stat40: 0.0 @@ -29615,21 +29615,21 @@ bins: syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 syst_JES_EtaIntercalibration_Stat47: 0.0 - syst_JES_EtaIntercalibration_Stat48: 8.969425106995431e-17 - syst_JES_EtaIntercalibration_Stat49: 9.242816927214344e-16 - syst_JES_EtaIntercalibration_Stat5: 8.173547760917533e-17 - syst_JES_EtaIntercalibration_Stat50: 6.473639162016987e-11 - syst_JES_EtaIntercalibration_Stat51: 3.3918757031914876e-07 - syst_JES_EtaIntercalibration_Stat52: 3.445480320165974e-07 - syst_JES_EtaIntercalibration_Stat53: 5.31976269841992e-16 - syst_JES_EtaIntercalibration_Stat54: 3.827832284727219e-16 + syst_JES_EtaIntercalibration_Stat48: 8.96942511e-17 + syst_JES_EtaIntercalibration_Stat49: 9.24281693e-16 + syst_JES_EtaIntercalibration_Stat5: 8.17354776e-17 + syst_JES_EtaIntercalibration_Stat50: 6.47363916e-11 + syst_JES_EtaIntercalibration_Stat51: 3.39187570e-07 + syst_JES_EtaIntercalibration_Stat52: 3.44548032e-07 + syst_JES_EtaIntercalibration_Stat53: 5.31976270e-16 + syst_JES_EtaIntercalibration_Stat54: 3.82783228e-16 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 1.6076472770791483e-17 - syst_JES_EtaIntercalibration_Stat57: 3.7561619455371844e-08 - syst_JES_EtaIntercalibration_Stat58: 3.796963226530764e-08 - syst_JES_EtaIntercalibration_Stat59: 1.5357893735795935e-12 - syst_JES_EtaIntercalibration_Stat6: 1.687640921523296e-16 - syst_JES_EtaIntercalibration_Stat60: 4.7316673770986906e-15 + syst_JES_EtaIntercalibration_Stat56: 1.60764728e-17 + syst_JES_EtaIntercalibration_Stat57: 3.75616195e-08 + syst_JES_EtaIntercalibration_Stat58: 3.79696323e-08 + syst_JES_EtaIntercalibration_Stat59: 1.53578937e-12 + syst_JES_EtaIntercalibration_Stat6: 1.68764092e-16 + syst_JES_EtaIntercalibration_Stat60: 4.73166738e-15 syst_JES_EtaIntercalibration_Stat61: 0.0 syst_JES_EtaIntercalibration_Stat62: 0.0 syst_JES_EtaIntercalibration_Stat63: 0.0 @@ -29639,21 +29639,21 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 3.09706619238272e-15 - syst_JES_EtaIntercalibration_Stat70: 8.173547760917533e-17 - syst_JES_EtaIntercalibration_Stat71: 6.744758316648566e-15 - syst_JES_EtaIntercalibration_Stat72: 1.6471967095644648e-10 - syst_JES_EtaIntercalibration_Stat73: 1.1839561507399673e-06 - syst_JES_EtaIntercalibration_Stat74: 8.411493726294991e-07 - syst_JES_EtaIntercalibration_Stat75: 2.563327823513801e-14 - syst_JES_EtaIntercalibration_Stat76: 3.827832284727219e-16 + syst_JES_EtaIntercalibration_Stat7: 3.09706619e-15 + syst_JES_EtaIntercalibration_Stat70: 8.17354776e-17 + syst_JES_EtaIntercalibration_Stat71: 6.74475832e-15 + syst_JES_EtaIntercalibration_Stat72: 1.64719671e-10 + syst_JES_EtaIntercalibration_Stat73: 1.18395615e-06 + syst_JES_EtaIntercalibration_Stat74: 8.41149373e-07 + syst_JES_EtaIntercalibration_Stat75: 2.56332782e-14 + syst_JES_EtaIntercalibration_Stat76: 3.82783228e-16 syst_JES_EtaIntercalibration_Stat77: 0.0 - syst_JES_EtaIntercalibration_Stat78: 6.60221296233316e-15 - syst_JES_EtaIntercalibration_Stat79: 3.5243663072221936e-08 - syst_JES_EtaIntercalibration_Stat8: 4.733912546720735e-16 - syst_JES_EtaIntercalibration_Stat80: 2.3151056116973324e-06 - syst_JES_EtaIntercalibration_Stat81: 3.5994673839750235e-08 - syst_JES_EtaIntercalibration_Stat82: 5.939964204437599e-15 + syst_JES_EtaIntercalibration_Stat78: 6.60221296e-15 + syst_JES_EtaIntercalibration_Stat79: 3.52436631e-08 + syst_JES_EtaIntercalibration_Stat8: 4.73391255e-16 + syst_JES_EtaIntercalibration_Stat80: 2.31510561e-06 + syst_JES_EtaIntercalibration_Stat81: 3.59946738e-08 + syst_JES_EtaIntercalibration_Stat82: 5.93996420e-15 syst_JES_EtaIntercalibration_Stat83: 0.0 syst_JES_EtaIntercalibration_Stat84: 0.0 syst_JES_EtaIntercalibration_Stat85: 0.0 @@ -29663,118 +29663,118 @@ bins: syst_JES_EtaIntercalibration_Stat89: 0.0 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 7.033858329537211e-17 - syst_JES_EtaIntercalibration_Stat92: 5.770894555844441e-12 - syst_JES_EtaIntercalibration_Stat93: 2.2343569497061116e-10 - syst_JES_EtaIntercalibration_Stat94: 1.1894691846365756e-06 - syst_JES_EtaIntercalibration_Stat95: 8.44032659320716e-07 - syst_JES_EtaIntercalibration_Stat96: 5.326878042531104e-14 - syst_JES_EtaIntercalibration_Stat97: 3.827832284727219e-16 + syst_JES_EtaIntercalibration_Stat91: 7.03385833e-17 + syst_JES_EtaIntercalibration_Stat92: 5.77089456e-12 + syst_JES_EtaIntercalibration_Stat93: 2.23435695e-10 + syst_JES_EtaIntercalibration_Stat94: 1.18946918e-06 + syst_JES_EtaIntercalibration_Stat95: 8.44032659e-07 + syst_JES_EtaIntercalibration_Stat96: 5.32687804e-14 + syst_JES_EtaIntercalibration_Stat97: 3.82783228e-16 syst_JES_EtaIntercalibration_Stat98: 0.0 - syst_JES_EtaIntercalibration_Stat99: 1.835971764003845e-09 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.004556062773931017 - syst_JES_Flavour_Comp: 0.01407137519931865 - syst_JES_Gjet_Generator: 0.020744061800910638 - syst_JES_Gjet_OOC: 0.01672106156917078 - syst_JES_Gjet_Purity: 0.004240021314804915 - syst_JES_Gjet_Stat1: 4.030443793584857e-05 - syst_JES_Gjet_Stat10: 0.00038060459797537916 - syst_JES_Gjet_Stat11: 0.0005216240887842508 - syst_JES_Gjet_Stat12: 0.001736638347497832 - syst_JES_Gjet_Stat13: 0.0047888183041330775 - syst_JES_Gjet_Stat14: 0.006378126370651494 - syst_JES_Gjet_Stat15: 0.0006243879563220291 - syst_JES_Gjet_Stat2: 4.4867762090391806e-05 - syst_JES_Gjet_Stat3: 5.656334568428568e-05 - syst_JES_Gjet_Stat4: 4.122298479004159e-05 - syst_JES_Gjet_Stat5: 4.5307545453268597e-05 - syst_JES_Gjet_Stat6: 0.000143941009010636 - syst_JES_Gjet_Stat7: 0.0001902528514898003 - syst_JES_Gjet_Stat8: 0.0001498282349892703 - syst_JES_Gjet_Stat9: 0.00023979962468694566 - syst_JES_Gjet_Veto: 0.014893005069494874 - syst_JES_Gjet_dPhi: 0.0014948253242436055 - syst_JES_LArESZee: 0.03108965865042587 - syst_JES_LArEsmear: 0.002380295097251599 - syst_JES_LAr_JVT: 0.003014278810926421 - syst_JES_MJB_Alpha: 0.00017086374688622512 - syst_JES_MJB_Asym: 0.0013145664760673002 - syst_JES_MJB_Beta: 0.00014097643446689948 - syst_JES_MJB_Stat1: 2.8518216546621563e-05 - syst_JES_MJB_Stat10: 5.234680392106093e-05 - syst_JES_MJB_Stat11: 3.7707899702847414e-06 - syst_JES_MJB_Stat12: 4.074443857755313e-06 - syst_JES_MJB_Stat13: 4.465941446100699e-05 - syst_JES_MJB_Stat14: 2.8069710735061016e-05 - syst_JES_MJB_Stat15: 4.801249498828404e-06 - syst_JES_MJB_Stat16: 4.41201756569486e-07 + syst_JES_EtaIntercalibration_Stat99: 1.83597176e-09 + syst_JES_EtaIntercalibration_TotalStat_MJB: 4.55606277e-03 + syst_JES_Flavour_Comp: 1.40713752e-02 + syst_JES_Gjet_Generator: 2.07440618e-02 + syst_JES_Gjet_OOC: 1.67210616e-02 + syst_JES_Gjet_Purity: 4.24002131e-03 + syst_JES_Gjet_Stat1: 4.03044379e-05 + syst_JES_Gjet_Stat10: 3.80604598e-04 + syst_JES_Gjet_Stat11: 5.21624089e-04 + syst_JES_Gjet_Stat12: 1.73663835e-03 + syst_JES_Gjet_Stat13: 4.78881830e-03 + syst_JES_Gjet_Stat14: 6.37812637e-03 + syst_JES_Gjet_Stat15: 6.24387956e-04 + syst_JES_Gjet_Stat2: 4.48677621e-05 + syst_JES_Gjet_Stat3: 5.65633457e-05 + syst_JES_Gjet_Stat4: 4.12229848e-05 + syst_JES_Gjet_Stat5: 4.53075455e-05 + syst_JES_Gjet_Stat6: 1.43941009e-04 + syst_JES_Gjet_Stat7: 1.90252851e-04 + syst_JES_Gjet_Stat8: 1.49828235e-04 + syst_JES_Gjet_Stat9: 2.39799625e-04 + syst_JES_Gjet_Veto: 1.48930051e-02 + syst_JES_Gjet_dPhi: 1.49482532e-03 + syst_JES_LArESZee: 3.10896587e-02 + syst_JES_LArEsmear: 2.38029510e-03 + syst_JES_LAr_JVT: 3.01427881e-03 + syst_JES_MJB_Alpha: 1.70863747e-04 + syst_JES_MJB_Asym: 1.31456648e-03 + syst_JES_MJB_Beta: 1.40976434e-04 + syst_JES_MJB_Stat1: 2.85182165e-05 + syst_JES_MJB_Stat10: 5.23468039e-05 + syst_JES_MJB_Stat11: 3.77078997e-06 + syst_JES_MJB_Stat12: 4.07444386e-06 + syst_JES_MJB_Stat13: 4.46594145e-05 + syst_JES_MJB_Stat14: 2.80697107e-05 + syst_JES_MJB_Stat15: 4.80124950e-06 + syst_JES_MJB_Stat16: 4.41201757e-07 syst_JES_MJB_Stat2: 0.0 - syst_JES_MJB_Stat3: 0.00028085203844729347 - syst_JES_MJB_Stat4: 0.0001106434055874999 - syst_JES_MJB_Stat5: 0.00010776820124693554 - syst_JES_MJB_Stat6: 0.0001531166467109308 - syst_JES_MJB_Stat7: 8.497136046927811e-05 - syst_JES_MJB_Stat8: 8.040196934777157e-05 - syst_JES_MJB_Stat9: 3.412822368656183e-05 - syst_JES_MJB_Threshold: 0.0015758511985590519 - syst_JES_Pileup_MuOffset: 0.00351230020784101 - syst_JES_Pileup_NPVOffset: 0.0035911010498174516 - syst_JES_Pileup_Pt_term: 0.003634710011472717 - syst_JES_PunchThrough_MC15: 0.0010221112414996716 - syst_JES_SingleParticle_HighPt: 9.570122608932448e-30 - syst_JES_Zjet_MC: 0.011403493094223368 - syst_JES_Zjet_MuScale: 0.0006976726506750856 - syst_JES_Zjet_MuSmearID: 0.0001791527002308366 - syst_JES_Zjet_MuSmearMS: 0.003212565446804158 - syst_JES_Zjet_OOC: 0.005376560308412805 - syst_JES_Zjet_Stat1: 0.000233238590289 - syst_JES_Zjet_Stat10: 0.0004106530743827447 - syst_JES_Zjet_Stat11: 0.000579153321668796 - syst_JES_Zjet_Stat12: 0.001928748817238782 - syst_JES_Zjet_Stat13: 0.003520764796177103 - syst_JES_Zjet_Stat2: 1.7918065604300037e-06 - syst_JES_Zjet_Stat3: 0.00010839390976895335 - syst_JES_Zjet_Stat4: 0.00011421329782472792 - syst_JES_Zjet_Stat5: 0.00014584493366243478 - syst_JES_Zjet_Stat6: 0.00017374218687469088 - syst_JES_Zjet_Stat7: 0.00014458816298369654 - syst_JES_Zjet_Stat8: 0.00013309646464125183 - syst_JES_Zjet_Stat9: 0.00023527226780902162 - syst_JES_Zjet_Veto: 0.0011863003867065036 - syst_JES_Zjet_dPhi: 0.0009504214959690253 + syst_JES_MJB_Stat3: 2.80852038e-04 + syst_JES_MJB_Stat4: 1.10643406e-04 + syst_JES_MJB_Stat5: 1.07768201e-04 + syst_JES_MJB_Stat6: 1.53116647e-04 + syst_JES_MJB_Stat7: 8.49713605e-05 + syst_JES_MJB_Stat8: 8.04019693e-05 + syst_JES_MJB_Stat9: 3.41282237e-05 + syst_JES_MJB_Threshold: 1.57585120e-03 + syst_JES_Pileup_MuOffset: 3.51230021e-03 + syst_JES_Pileup_NPVOffset: 3.59110105e-03 + syst_JES_Pileup_Pt_term: 3.63471001e-03 + syst_JES_PunchThrough_MC15: 1.02211124e-03 + syst_JES_SingleParticle_HighPt: 9.57012261e-30 + syst_JES_Zjet_MC: 1.14034931e-02 + syst_JES_Zjet_MuScale: 6.97672651e-04 + syst_JES_Zjet_MuSmearID: 1.79152700e-04 + syst_JES_Zjet_MuSmearMS: 3.21256545e-03 + syst_JES_Zjet_OOC: 5.37656031e-03 + syst_JES_Zjet_Stat1: 2.33238590e-04 + syst_JES_Zjet_Stat10: 4.10653074e-04 + syst_JES_Zjet_Stat11: 5.79153322e-04 + syst_JES_Zjet_Stat12: 1.92874882e-03 + syst_JES_Zjet_Stat13: 3.52076480e-03 + syst_JES_Zjet_Stat2: 1.79180656e-06 + syst_JES_Zjet_Stat3: 1.08393910e-04 + syst_JES_Zjet_Stat4: 1.14213298e-04 + syst_JES_Zjet_Stat5: 1.45844934e-04 + syst_JES_Zjet_Stat6: 1.73742187e-04 + syst_JES_Zjet_Stat7: 1.44588163e-04 + syst_JES_Zjet_Stat8: 1.33096465e-04 + syst_JES_Zjet_Stat9: 2.35272268e-04 + syst_JES_Zjet_Veto: 1.18630039e-03 + syst_JES_Zjet_dPhi: 9.50421496e-04 syst_PRW: 0.0 syst_Unfolding_bias: 0.000981 - syst_cleaning: 0.005426515180113293 + syst_cleaning: 5.42651518e-03 syst_lumi: 0.02007 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.004110615292143014 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 0.002530506421647651 - syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0003236784978956743 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 4.11061529e-03 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 2.53050642e-03 + syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 3.23678498e-04 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 0.005521426514045079 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.003069689235085532 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0047453970329151595 -- stat: 0.0025952 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 5.52142651e-03 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 3.06968924e-03 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 4.74539703e-03 +- stat: 2.59520000e-03 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.003702760152912959 - syst_JER_NP1: 0.00030925581643681337 - syst_JER_NP2: 0.002131469680760202 - syst_JER_NP3: 0.00027277732677038975 - syst_JER_NP4: 1.0651991492204639e-09 - syst_JER_NP5: 7.967350983074612e-05 - syst_JER_NP6: 2.396002295491388e-12 - syst_JER_NP7: 1.5805355896024613e-15 - syst_JER_NP8: 0.00044848840286009623 - syst_JES_EtaIntercalibration_Modelling: 0.027054212241349778 + syst_JER_NP0: 3.70276015e-03 + syst_JER_NP1: 3.09255816e-04 + syst_JER_NP2: 2.13146968e-03 + syst_JER_NP3: 2.72777327e-04 + syst_JER_NP4: 1.06519915e-09 + syst_JER_NP5: 7.96735098e-05 + syst_JER_NP6: 2.39600230e-12 + syst_JER_NP7: 1.58053559e-15 + syst_JER_NP8: 4.48488403e-04 + syst_JES_EtaIntercalibration_Modelling: 2.70542122e-02 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 6.25564826436877e-10 - syst_JES_EtaIntercalibration_Stat101: 1.1472090478464463e-06 - syst_JES_EtaIntercalibration_Stat102: 2.0606200452291054e-09 - syst_JES_EtaIntercalibration_Stat103: 2.971005006727522e-13 + syst_JES_EtaIntercalibration_Stat100: 6.25564826e-10 + syst_JES_EtaIntercalibration_Stat101: 1.14720905e-06 + syst_JES_EtaIntercalibration_Stat102: 2.06062005e-09 + syst_JES_EtaIntercalibration_Stat103: 2.97100501e-13 syst_JES_EtaIntercalibration_Stat104: 0.0 syst_JES_EtaIntercalibration_Stat105: 0.0 syst_JES_EtaIntercalibration_Stat106: 0.0 @@ -29783,170 +29783,170 @@ bins: syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 syst_JES_EtaIntercalibration_Stat110: 0.0 - syst_JES_EtaIntercalibration_Stat111: 5.526974126952287e-18 - syst_JES_EtaIntercalibration_Stat112: 8.213348475956684e-12 - syst_JES_EtaIntercalibration_Stat113: 3.522842992527484e-06 - syst_JES_EtaIntercalibration_Stat114: 3.0840603106943286e-06 - syst_JES_EtaIntercalibration_Stat115: 3.1520812172277543e-06 - syst_JES_EtaIntercalibration_Stat116: 6.16617821489355e-09 + syst_JES_EtaIntercalibration_Stat111: 5.52697413e-18 + syst_JES_EtaIntercalibration_Stat112: 8.21334848e-12 + syst_JES_EtaIntercalibration_Stat113: 3.52284299e-06 + syst_JES_EtaIntercalibration_Stat114: 3.08406031e-06 + syst_JES_EtaIntercalibration_Stat115: 3.15208122e-06 + syst_JES_EtaIntercalibration_Stat116: 6.16617821e-09 syst_JES_EtaIntercalibration_Stat117: 0.0 syst_JES_EtaIntercalibration_Stat118: 0.0 - syst_JES_EtaIntercalibration_Stat119: 6.231918699169438e-09 + syst_JES_EtaIntercalibration_Stat119: 6.23191870e-09 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 1.4950569025542137e-06 - syst_JES_EtaIntercalibration_Stat121: 1.1523200336712021e-06 - syst_JES_EtaIntercalibration_Stat122: 1.812912375320773e-06 - syst_JES_EtaIntercalibration_Stat123: 6.863811033784365e-09 + syst_JES_EtaIntercalibration_Stat120: 1.49505690e-06 + syst_JES_EtaIntercalibration_Stat121: 1.15232003e-06 + syst_JES_EtaIntercalibration_Stat122: 1.81291238e-06 + syst_JES_EtaIntercalibration_Stat123: 6.86381103e-09 syst_JES_EtaIntercalibration_Stat124: 0.0 syst_JES_EtaIntercalibration_Stat125: 0.0 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 syst_JES_EtaIntercalibration_Stat128: 0.0 syst_JES_EtaIntercalibration_Stat129: 0.0 - syst_JES_EtaIntercalibration_Stat13: 6.245775250983687e-09 + syst_JES_EtaIntercalibration_Stat13: 6.24577525e-09 syst_JES_EtaIntercalibration_Stat130: 0.0 - syst_JES_EtaIntercalibration_Stat131: 9.094464401491711e-11 - syst_JES_EtaIntercalibration_Stat132: 9.394641504602503e-07 - syst_JES_EtaIntercalibration_Stat133: 5.4491414002574755e-06 - syst_JES_EtaIntercalibration_Stat134: 1.0246339480516931e-05 - syst_JES_EtaIntercalibration_Stat135: 2.490601629867771e-07 + syst_JES_EtaIntercalibration_Stat131: 9.09446440e-11 + syst_JES_EtaIntercalibration_Stat132: 9.39464150e-07 + syst_JES_EtaIntercalibration_Stat133: 5.44914140e-06 + syst_JES_EtaIntercalibration_Stat134: 1.02463395e-05 + syst_JES_EtaIntercalibration_Stat135: 2.49060163e-07 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 - syst_JES_EtaIntercalibration_Stat138: 5.791756912296195e-09 - syst_JES_EtaIntercalibration_Stat139: 1.2100225700374352e-06 - syst_JES_EtaIntercalibration_Stat14: 1.5799739895010931e-16 - syst_JES_EtaIntercalibration_Stat140: 1.3624944431079342e-06 - syst_JES_EtaIntercalibration_Stat141: 3.1124067006096746e-06 - syst_JES_EtaIntercalibration_Stat142: 5.492121781258019e-07 + syst_JES_EtaIntercalibration_Stat138: 5.79175691e-09 + syst_JES_EtaIntercalibration_Stat139: 1.21002257e-06 + syst_JES_EtaIntercalibration_Stat14: 1.57997399e-16 + syst_JES_EtaIntercalibration_Stat140: 1.36249444e-06 + syst_JES_EtaIntercalibration_Stat141: 3.11240670e-06 + syst_JES_EtaIntercalibration_Stat142: 5.49212178e-07 syst_JES_EtaIntercalibration_Stat143: 0.0 syst_JES_EtaIntercalibration_Stat144: 0.0 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 syst_JES_EtaIntercalibration_Stat147: 0.0 syst_JES_EtaIntercalibration_Stat148: 0.0 - syst_JES_EtaIntercalibration_Stat149: 4.405576276365556e-08 - syst_JES_EtaIntercalibration_Stat15: 1.510586643002893e-16 - syst_JES_EtaIntercalibration_Stat150: 9.62847043927539e-07 - syst_JES_EtaIntercalibration_Stat151: 7.752708220357581e-06 - syst_JES_EtaIntercalibration_Stat152: 1.0666975391365634e-05 - syst_JES_EtaIntercalibration_Stat153: 2.8645076792181934e-07 + syst_JES_EtaIntercalibration_Stat149: 4.40557628e-08 + syst_JES_EtaIntercalibration_Stat15: 1.51058664e-16 + syst_JES_EtaIntercalibration_Stat150: 9.62847044e-07 + syst_JES_EtaIntercalibration_Stat151: 7.75270822e-06 + syst_JES_EtaIntercalibration_Stat152: 1.06669754e-05 + syst_JES_EtaIntercalibration_Stat153: 2.86450768e-07 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 5.171037682351783e-10 - syst_JES_EtaIntercalibration_Stat157: 2.686873834030917e-06 - syst_JES_EtaIntercalibration_Stat158: 1.4183728027214846e-05 - syst_JES_EtaIntercalibration_Stat159: 3.716406429603737e-06 + syst_JES_EtaIntercalibration_Stat156: 5.17103768e-10 + syst_JES_EtaIntercalibration_Stat157: 2.68687383e-06 + syst_JES_EtaIntercalibration_Stat158: 1.41837280e-05 + syst_JES_EtaIntercalibration_Stat159: 3.71640643e-06 syst_JES_EtaIntercalibration_Stat16: 0.0 - syst_JES_EtaIntercalibration_Stat160: 2.351125425727007e-09 + syst_JES_EtaIntercalibration_Stat160: 2.35112543e-09 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 - syst_JES_EtaIntercalibration_Stat167: 6.505742880717005e-06 - syst_JES_EtaIntercalibration_Stat168: 1.2542719750915268e-05 - syst_JES_EtaIntercalibration_Stat169: 2.5943971843185458e-05 + syst_JES_EtaIntercalibration_Stat167: 6.50574288e-06 + syst_JES_EtaIntercalibration_Stat168: 1.25427198e-05 + syst_JES_EtaIntercalibration_Stat169: 2.59439718e-05 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 1.4826809392111304e-05 - syst_JES_EtaIntercalibration_Stat171: 1.1185994572356988e-06 + syst_JES_EtaIntercalibration_Stat170: 1.48268094e-05 + syst_JES_EtaIntercalibration_Stat171: 1.11859946e-06 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 - syst_JES_EtaIntercalibration_Stat174: 9.40850608932232e-10 - syst_JES_EtaIntercalibration_Stat175: 1.1800544521334598e-05 - syst_JES_EtaIntercalibration_Stat176: 9.415821406016576e-06 - syst_JES_EtaIntercalibration_Stat177: 9.161075238202119e-06 - syst_JES_EtaIntercalibration_Stat178: 1.4052552321553549e-06 + syst_JES_EtaIntercalibration_Stat174: 9.40850609e-10 + syst_JES_EtaIntercalibration_Stat175: 1.18005445e-05 + syst_JES_EtaIntercalibration_Stat176: 9.41582141e-06 + syst_JES_EtaIntercalibration_Stat177: 9.16107524e-06 + syst_JES_EtaIntercalibration_Stat178: 1.40525523e-06 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 syst_JES_EtaIntercalibration_Stat180: 0.0 syst_JES_EtaIntercalibration_Stat181: 0.0 syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 - syst_JES_EtaIntercalibration_Stat184: 3.902221770991495e-06 - syst_JES_EtaIntercalibration_Stat185: 5.0057835300779844e-05 - syst_JES_EtaIntercalibration_Stat186: 0.0001512500165289247 - syst_JES_EtaIntercalibration_Stat187: 7.741663048079526e-05 - syst_JES_EtaIntercalibration_Stat188: 6.895942437948564e-06 + syst_JES_EtaIntercalibration_Stat184: 3.90222177e-06 + syst_JES_EtaIntercalibration_Stat185: 5.00578353e-05 + syst_JES_EtaIntercalibration_Stat186: 1.51250017e-04 + syst_JES_EtaIntercalibration_Stat187: 7.74166305e-05 + syst_JES_EtaIntercalibration_Stat188: 6.89594244e-06 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 - syst_JES_EtaIntercalibration_Stat191: 5.220285624369609e-06 - syst_JES_EtaIntercalibration_Stat192: 0.00010693605788039878 - syst_JES_EtaIntercalibration_Stat193: 0.0001492083107604935 - syst_JES_EtaIntercalibration_Stat194: 4.4809205527435996e-05 - syst_JES_EtaIntercalibration_Stat195: 2.6111834802441597e-06 - syst_JES_EtaIntercalibration_Stat196: 6.899627091372403e-09 + syst_JES_EtaIntercalibration_Stat191: 5.22028562e-06 + syst_JES_EtaIntercalibration_Stat192: 1.06936058e-04 + syst_JES_EtaIntercalibration_Stat193: 1.49208311e-04 + syst_JES_EtaIntercalibration_Stat194: 4.48092055e-05 + syst_JES_EtaIntercalibration_Stat195: 2.61118348e-06 + syst_JES_EtaIntercalibration_Stat196: 6.89962709e-09 syst_JES_EtaIntercalibration_Stat197: 0.0 syst_JES_EtaIntercalibration_Stat198: 0.0 - syst_JES_EtaIntercalibration_Stat199: 4.075737502281028e-06 + syst_JES_EtaIntercalibration_Stat199: 4.07573750e-06 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 8.17485123717857e-05 - syst_JES_EtaIntercalibration_Stat201: 0.00026731681578232226 - syst_JES_EtaIntercalibration_Stat202: 0.00012777969351583215 - syst_JES_EtaIntercalibration_Stat203: 1.117513493207129e-05 + syst_JES_EtaIntercalibration_Stat200: 8.17485124e-05 + syst_JES_EtaIntercalibration_Stat201: 2.67316816e-04 + syst_JES_EtaIntercalibration_Stat202: 1.27779694e-04 + syst_JES_EtaIntercalibration_Stat203: 1.11751349e-05 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 - syst_JES_EtaIntercalibration_Stat206: 3.1539588087830196e-06 - syst_JES_EtaIntercalibration_Stat207: 0.0001581642421661736 - syst_JES_EtaIntercalibration_Stat208: 0.00034028774221238117 - syst_JES_EtaIntercalibration_Stat209: 8.141711552247476e-05 + syst_JES_EtaIntercalibration_Stat206: 3.15395881e-06 + syst_JES_EtaIntercalibration_Stat207: 1.58164242e-04 + syst_JES_EtaIntercalibration_Stat208: 3.40287742e-04 + syst_JES_EtaIntercalibration_Stat209: 8.14171155e-05 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 5.705630267551517e-06 - syst_JES_EtaIntercalibration_Stat211: 7.371518347667596e-09 - syst_JES_EtaIntercalibration_Stat212: 1.5650112803107843e-06 - syst_JES_EtaIntercalibration_Stat213: 6.52001784890195e-05 - syst_JES_EtaIntercalibration_Stat214: 0.00020580453712199835 - syst_JES_EtaIntercalibration_Stat215: 0.00015780572708238444 - syst_JES_EtaIntercalibration_Stat216: 1.0917978309536065e-05 + syst_JES_EtaIntercalibration_Stat210: 5.70563027e-06 + syst_JES_EtaIntercalibration_Stat211: 7.37151835e-09 + syst_JES_EtaIntercalibration_Stat212: 1.56501128e-06 + syst_JES_EtaIntercalibration_Stat213: 6.52001785e-05 + syst_JES_EtaIntercalibration_Stat214: 2.05804537e-04 + syst_JES_EtaIntercalibration_Stat215: 1.57805727e-04 + syst_JES_EtaIntercalibration_Stat216: 1.09179783e-05 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 - syst_JES_EtaIntercalibration_Stat219: 4.217787423519588e-06 + syst_JES_EtaIntercalibration_Stat219: 4.21778742e-06 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 0.00015761196020607065 - syst_JES_EtaIntercalibration_Stat221: 0.00020525620575271287 - syst_JES_EtaIntercalibration_Stat222: 6.677717031291457e-05 - syst_JES_EtaIntercalibration_Stat223: 5.85519775498659e-06 - syst_JES_EtaIntercalibration_Stat224: 1.460952709048106e-06 - syst_JES_EtaIntercalibration_Stat225: 0.00010010235798921024 - syst_JES_EtaIntercalibration_Stat226: 0.00029555373030973575 - syst_JES_EtaIntercalibration_Stat227: 0.00019544003556078268 - syst_JES_EtaIntercalibration_Stat228: 8.815521379220858e-06 + syst_JES_EtaIntercalibration_Stat220: 1.57611960e-04 + syst_JES_EtaIntercalibration_Stat221: 2.05256206e-04 + syst_JES_EtaIntercalibration_Stat222: 6.67771703e-05 + syst_JES_EtaIntercalibration_Stat223: 5.85519775e-06 + syst_JES_EtaIntercalibration_Stat224: 1.46095271e-06 + syst_JES_EtaIntercalibration_Stat225: 1.00102358e-04 + syst_JES_EtaIntercalibration_Stat226: 2.95553730e-04 + syst_JES_EtaIntercalibration_Stat227: 1.95440036e-04 + syst_JES_EtaIntercalibration_Stat228: 8.81552138e-06 syst_JES_EtaIntercalibration_Stat229: 0.0 syst_JES_EtaIntercalibration_Stat23: 0.0 syst_JES_EtaIntercalibration_Stat230: 0.0 - syst_JES_EtaIntercalibration_Stat231: 3.4779580215983056e-06 - syst_JES_EtaIntercalibration_Stat232: 0.000188822687990612 - syst_JES_EtaIntercalibration_Stat233: 0.0003092156529026304 - syst_JES_EtaIntercalibration_Stat234: 8.238365068385838e-05 - syst_JES_EtaIntercalibration_Stat235: 5.460232605821386e-06 - syst_JES_EtaIntercalibration_Stat236: 1.1628906827384938e-05 - syst_JES_EtaIntercalibration_Stat237: 2.1752222139358545e-06 - syst_JES_EtaIntercalibration_Stat238: 1.4718362230560844e-05 - syst_JES_EtaIntercalibration_Stat239: 4.2346958470089675e-08 + syst_JES_EtaIntercalibration_Stat231: 3.47795802e-06 + syst_JES_EtaIntercalibration_Stat232: 1.88822688e-04 + syst_JES_EtaIntercalibration_Stat233: 3.09215653e-04 + syst_JES_EtaIntercalibration_Stat234: 8.23836507e-05 + syst_JES_EtaIntercalibration_Stat235: 5.46023261e-06 + syst_JES_EtaIntercalibration_Stat236: 1.16289068e-05 + syst_JES_EtaIntercalibration_Stat237: 2.17522221e-06 + syst_JES_EtaIntercalibration_Stat238: 1.47183622e-05 + syst_JES_EtaIntercalibration_Stat239: 4.23469585e-08 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 - syst_JES_EtaIntercalibration_Stat242: 4.184637613308197e-09 - syst_JES_EtaIntercalibration_Stat243: 1.3898297980328383e-05 - syst_JES_EtaIntercalibration_Stat244: 7.561647836285421e-06 - syst_JES_EtaIntercalibration_Stat245: 1.164297015370219e-05 + syst_JES_EtaIntercalibration_Stat242: 4.18463761e-09 + syst_JES_EtaIntercalibration_Stat243: 1.38982980e-05 + syst_JES_EtaIntercalibration_Stat244: 7.56164784e-06 + syst_JES_EtaIntercalibration_Stat245: 1.16429702e-05 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 - syst_JES_EtaIntercalibration_Stat27: 2.9212942388605776e-17 - syst_JES_EtaIntercalibration_Stat28: 8.531624604073563e-12 - syst_JES_EtaIntercalibration_Stat29: 5.397932684284364e-09 + syst_JES_EtaIntercalibration_Stat27: 2.92129424e-17 + syst_JES_EtaIntercalibration_Stat28: 8.53162460e-12 + syst_JES_EtaIntercalibration_Stat29: 5.39793268e-09 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 6.942916300455722e-09 - syst_JES_EtaIntercalibration_Stat31: 5.1294684666152296e-18 + syst_JES_EtaIntercalibration_Stat30: 6.94291630e-09 + syst_JES_EtaIntercalibration_Stat31: 5.12946847e-18 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 - syst_JES_EtaIntercalibration_Stat34: 5.405730570422466e-19 - syst_JES_EtaIntercalibration_Stat35: 6.23885590876828e-09 - syst_JES_EtaIntercalibration_Stat36: 6.2432212755583005e-09 - syst_JES_EtaIntercalibration_Stat37: 1.0670366509975183e-13 - syst_JES_EtaIntercalibration_Stat38: 7.65795623567411e-17 + syst_JES_EtaIntercalibration_Stat34: 5.40573057e-19 + syst_JES_EtaIntercalibration_Stat35: 6.23885591e-09 + syst_JES_EtaIntercalibration_Stat36: 6.24322128e-09 + syst_JES_EtaIntercalibration_Stat37: 1.06703665e-13 + syst_JES_EtaIntercalibration_Stat38: 7.65795624e-17 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 syst_JES_EtaIntercalibration_Stat40: 0.0 @@ -29957,21 +29957,21 @@ bins: syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 syst_JES_EtaIntercalibration_Stat47: 0.0 - syst_JES_EtaIntercalibration_Stat48: 1.707802096262913e-17 - syst_JES_EtaIntercalibration_Stat49: 1.5987451329089323e-16 - syst_JES_EtaIntercalibration_Stat5: 1.53546304090981e-17 - syst_JES_EtaIntercalibration_Stat50: 8.787909350351766e-12 - syst_JES_EtaIntercalibration_Stat51: 4.1062809394968335e-09 - syst_JES_EtaIntercalibration_Stat52: 5.268007070566101e-09 - syst_JES_EtaIntercalibration_Stat53: 8.710310170567979e-17 - syst_JES_EtaIntercalibration_Stat54: 6.147048316061945e-17 + syst_JES_EtaIntercalibration_Stat48: 1.70780210e-17 + syst_JES_EtaIntercalibration_Stat49: 1.59874513e-16 + syst_JES_EtaIntercalibration_Stat5: 1.53546304e-17 + syst_JES_EtaIntercalibration_Stat50: 8.78790935e-12 + syst_JES_EtaIntercalibration_Stat51: 4.10628094e-09 + syst_JES_EtaIntercalibration_Stat52: 5.26800707e-09 + syst_JES_EtaIntercalibration_Stat53: 8.71031017e-17 + syst_JES_EtaIntercalibration_Stat54: 6.14704832e-17 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 3.2212547244823716e-18 - syst_JES_EtaIntercalibration_Stat57: 6.149932666952883e-09 - syst_JES_EtaIntercalibration_Stat58: 6.217617953742414e-09 - syst_JES_EtaIntercalibration_Stat59: 2.1363265199870546e-13 - syst_JES_EtaIntercalibration_Stat6: 3.2451293021234146e-17 - syst_JES_EtaIntercalibration_Stat60: 7.557922383168539e-16 + syst_JES_EtaIntercalibration_Stat56: 3.22125472e-18 + syst_JES_EtaIntercalibration_Stat57: 6.14993267e-09 + syst_JES_EtaIntercalibration_Stat58: 6.21761795e-09 + syst_JES_EtaIntercalibration_Stat59: 2.13632652e-13 + syst_JES_EtaIntercalibration_Stat6: 3.24512930e-17 + syst_JES_EtaIntercalibration_Stat60: 7.55792238e-16 syst_JES_EtaIntercalibration_Stat61: 0.0 syst_JES_EtaIntercalibration_Stat62: 0.0 syst_JES_EtaIntercalibration_Stat63: 0.0 @@ -29981,21 +29981,21 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 4.973878441417724e-16 - syst_JES_EtaIntercalibration_Stat70: 1.53546304090981e-17 - syst_JES_EtaIntercalibration_Stat71: 1.0747697846515784e-15 - syst_JES_EtaIntercalibration_Stat72: 2.3458791273209283e-11 - syst_JES_EtaIntercalibration_Stat73: 7.065001325058262e-07 - syst_JES_EtaIntercalibration_Stat74: 2.838773356905232e-07 - syst_JES_EtaIntercalibration_Stat75: 3.700419614043791e-15 - syst_JES_EtaIntercalibration_Stat76: 6.147048316061945e-17 + syst_JES_EtaIntercalibration_Stat7: 4.97387844e-16 + syst_JES_EtaIntercalibration_Stat70: 1.53546304e-17 + syst_JES_EtaIntercalibration_Stat71: 1.07476978e-15 + syst_JES_EtaIntercalibration_Stat72: 2.34587913e-11 + syst_JES_EtaIntercalibration_Stat73: 7.06500133e-07 + syst_JES_EtaIntercalibration_Stat74: 2.83877336e-07 + syst_JES_EtaIntercalibration_Stat75: 3.70041961e-15 + syst_JES_EtaIntercalibration_Stat76: 6.14704832e-17 syst_JES_EtaIntercalibration_Stat77: 0.0 - syst_JES_EtaIntercalibration_Stat78: 1.0597722538357003e-15 - syst_JES_EtaIntercalibration_Stat79: 5.784013399315458e-09 - syst_JES_EtaIntercalibration_Stat8: 7.746709285238474e-17 - syst_JES_EtaIntercalibration_Stat80: 1.0106825064698132e-06 - syst_JES_EtaIntercalibration_Stat81: 6.91125764785795e-09 - syst_JES_EtaIntercalibration_Stat82: 9.31653212037612e-16 + syst_JES_EtaIntercalibration_Stat78: 1.05977225e-15 + syst_JES_EtaIntercalibration_Stat79: 5.78401340e-09 + syst_JES_EtaIntercalibration_Stat8: 7.74670929e-17 + syst_JES_EtaIntercalibration_Stat80: 1.01068251e-06 + syst_JES_EtaIntercalibration_Stat81: 6.91125765e-09 + syst_JES_EtaIntercalibration_Stat82: 9.31653212e-16 syst_JES_EtaIntercalibration_Stat83: 0.0 syst_JES_EtaIntercalibration_Stat84: 0.0 syst_JES_EtaIntercalibration_Stat85: 0.0 @@ -30005,118 +30005,118 @@ bins: syst_JES_EtaIntercalibration_Stat89: 0.0 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 1.320688740771269e-17 - syst_JES_EtaIntercalibration_Stat92: 7.720538741065937e-13 - syst_JES_EtaIntercalibration_Stat93: 3.1679656357156086e-11 - syst_JES_EtaIntercalibration_Stat94: 7.098793691003305e-07 - syst_JES_EtaIntercalibration_Stat95: 2.8883396768169425e-07 - syst_JES_EtaIntercalibration_Stat96: 7.973351834078314e-15 - syst_JES_EtaIntercalibration_Stat97: 6.147048316061945e-17 + syst_JES_EtaIntercalibration_Stat91: 1.32068874e-17 + syst_JES_EtaIntercalibration_Stat92: 7.72053874e-13 + syst_JES_EtaIntercalibration_Stat93: 3.16796564e-11 + syst_JES_EtaIntercalibration_Stat94: 7.09879369e-07 + syst_JES_EtaIntercalibration_Stat95: 2.88833968e-07 + syst_JES_EtaIntercalibration_Stat96: 7.97335183e-15 + syst_JES_EtaIntercalibration_Stat97: 6.14704832e-17 syst_JES_EtaIntercalibration_Stat98: 0.0 - syst_JES_EtaIntercalibration_Stat99: 3.66241811285238e-10 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0031188127548796513 - syst_JES_Flavour_Comp: 0.00926401403280457 - syst_JES_Gjet_Generator: 0.01328195490129371 - syst_JES_Gjet_OOC: 0.010789519359081757 - syst_JES_Gjet_Purity: 0.0025493086807995614 - syst_JES_Gjet_Stat1: 2.5399710774488655e-05 - syst_JES_Gjet_Stat10: 0.0002184181025006856 - syst_JES_Gjet_Stat11: 0.0002970993562766503 - syst_JES_Gjet_Stat12: 0.0009873124163606978 - syst_JES_Gjet_Stat13: 0.002947054800983518 - syst_JES_Gjet_Stat14: 0.005029183507290224 - syst_JES_Gjet_Stat15: 0.000445463474933692 - syst_JES_Gjet_Stat2: 3.243353318711978e-05 - syst_JES_Gjet_Stat3: 3.784734345697198e-05 - syst_JES_Gjet_Stat4: 2.791574958692673e-05 - syst_JES_Gjet_Stat5: 3.100225475671084e-05 - syst_JES_Gjet_Stat6: 9.045121267843788e-05 - syst_JES_Gjet_Stat7: 0.00012114230309846351 - syst_JES_Gjet_Stat8: 9.468575024785938e-05 - syst_JES_Gjet_Stat9: 0.0001491834776374381 - syst_JES_Gjet_Veto: 0.009991882843088185 - syst_JES_Gjet_dPhi: 0.0009970148394081203 - syst_JES_LArESZee: 0.020127950715360964 - syst_JES_LArEsmear: 0.0015566579585766427 - syst_JES_LAr_JVT: 0.0019782903603869683 - syst_JES_MJB_Alpha: 0.00010359624800155651 - syst_JES_MJB_Asym: 0.0010067486516007853 - syst_JES_MJB_Beta: 0.00011081941391290606 - syst_JES_MJB_Stat1: 1.4246117892254016e-05 - syst_JES_MJB_Stat10: 1.0386379771123334e-05 - syst_JES_MJB_Stat11: 1.1317885800802197e-05 - syst_JES_MJB_Stat12: 8.449221857662397e-06 - syst_JES_MJB_Stat13: 4.3927009558470966e-05 - syst_JES_MJB_Stat14: 3.704488628677378e-05 - syst_JES_MJB_Stat15: 1.605678361316487e-05 - syst_JES_MJB_Stat16: 5.573641807651438e-07 + syst_JES_EtaIntercalibration_Stat99: 3.66241811e-10 + syst_JES_EtaIntercalibration_TotalStat_MJB: 3.11881275e-03 + syst_JES_Flavour_Comp: 9.26401403e-03 + syst_JES_Gjet_Generator: 1.32819549e-02 + syst_JES_Gjet_OOC: 1.07895194e-02 + syst_JES_Gjet_Purity: 2.54930868e-03 + syst_JES_Gjet_Stat1: 2.53997108e-05 + syst_JES_Gjet_Stat10: 2.18418103e-04 + syst_JES_Gjet_Stat11: 2.97099356e-04 + syst_JES_Gjet_Stat12: 9.87312416e-04 + syst_JES_Gjet_Stat13: 2.94705480e-03 + syst_JES_Gjet_Stat14: 5.02918351e-03 + syst_JES_Gjet_Stat15: 4.45463475e-04 + syst_JES_Gjet_Stat2: 3.24335332e-05 + syst_JES_Gjet_Stat3: 3.78473435e-05 + syst_JES_Gjet_Stat4: 2.79157496e-05 + syst_JES_Gjet_Stat5: 3.10022548e-05 + syst_JES_Gjet_Stat6: 9.04512127e-05 + syst_JES_Gjet_Stat7: 1.21142303e-04 + syst_JES_Gjet_Stat8: 9.46857502e-05 + syst_JES_Gjet_Stat9: 1.49183478e-04 + syst_JES_Gjet_Veto: 9.99188284e-03 + syst_JES_Gjet_dPhi: 9.97014839e-04 + syst_JES_LArESZee: 2.01279507e-02 + syst_JES_LArEsmear: 1.55665796e-03 + syst_JES_LAr_JVT: 1.97829036e-03 + syst_JES_MJB_Alpha: 1.03596248e-04 + syst_JES_MJB_Asym: 1.00674865e-03 + syst_JES_MJB_Beta: 1.10819414e-04 + syst_JES_MJB_Stat1: 1.42461179e-05 + syst_JES_MJB_Stat10: 1.03863798e-05 + syst_JES_MJB_Stat11: 1.13178858e-05 + syst_JES_MJB_Stat12: 8.44922186e-06 + syst_JES_MJB_Stat13: 4.39270096e-05 + syst_JES_MJB_Stat14: 3.70448863e-05 + syst_JES_MJB_Stat15: 1.60567836e-05 + syst_JES_MJB_Stat16: 5.57364181e-07 syst_JES_MJB_Stat2: 0.0 - syst_JES_MJB_Stat3: 0.0001393434874689162 - syst_JES_MJB_Stat4: 4.7588095937954906e-05 - syst_JES_MJB_Stat5: 7.930194622454105e-05 - syst_JES_MJB_Stat6: 0.00010752520355711958 - syst_JES_MJB_Stat7: 7.27172653157419e-05 - syst_JES_MJB_Stat8: 7.322649981393348e-05 - syst_JES_MJB_Stat9: 5.2186243021988084e-05 - syst_JES_MJB_Threshold: 0.0010515781426028215 - syst_JES_Pileup_MuOffset: 0.002356610012284595 - syst_JES_Pileup_NPVOffset: 0.002407565315832573 - syst_JES_Pileup_Pt_term: 0.0022613168729746828 - syst_JES_PunchThrough_MC15: 0.0008200106142605717 - syst_JES_SingleParticle_HighPt: 1.3033670357961336e-24 - syst_JES_Zjet_MC: 0.006743051534728177 - syst_JES_Zjet_MuScale: 0.0004168220333667595 - syst_JES_Zjet_MuSmearID: 0.00010415005712912498 - syst_JES_Zjet_MuSmearMS: 0.0018986827012431539 - syst_JES_Zjet_OOC: 0.003316156623261332 - syst_JES_Zjet_Stat1: 0.0001493379389170749 - syst_JES_Zjet_Stat10: 0.00024589759555554826 - syst_JES_Zjet_Stat11: 0.000349903458113806 - syst_JES_Zjet_Stat12: 0.0011053646050059682 - syst_JES_Zjet_Stat13: 0.002080908215179132 - syst_JES_Zjet_Stat2: 1.1293837290752863e-06 - syst_JES_Zjet_Stat3: 7.196386923310891e-05 - syst_JES_Zjet_Stat4: 7.663683497509536e-05 - syst_JES_Zjet_Stat5: 9.492848610928124e-05 - syst_JES_Zjet_Stat6: 0.00011798140446697522 - syst_JES_Zjet_Stat7: 8.890904734615033e-05 - syst_JES_Zjet_Stat8: 9.365158020556834e-05 - syst_JES_Zjet_Stat9: 0.0001482050859451186 - syst_JES_Zjet_Veto: 0.0007334848941866492 - syst_JES_Zjet_dPhi: 0.0005945340612614217 + syst_JES_MJB_Stat3: 1.39343487e-04 + syst_JES_MJB_Stat4: 4.75880959e-05 + syst_JES_MJB_Stat5: 7.93019462e-05 + syst_JES_MJB_Stat6: 1.07525204e-04 + syst_JES_MJB_Stat7: 7.27172653e-05 + syst_JES_MJB_Stat8: 7.32264998e-05 + syst_JES_MJB_Stat9: 5.21862430e-05 + syst_JES_MJB_Threshold: 1.05157814e-03 + syst_JES_Pileup_MuOffset: 2.35661001e-03 + syst_JES_Pileup_NPVOffset: 2.40756532e-03 + syst_JES_Pileup_Pt_term: 2.26131687e-03 + syst_JES_PunchThrough_MC15: 8.20010614e-04 + syst_JES_SingleParticle_HighPt: 1.30336704e-24 + syst_JES_Zjet_MC: 6.74305153e-03 + syst_JES_Zjet_MuScale: 4.16822033e-04 + syst_JES_Zjet_MuSmearID: 1.04150057e-04 + syst_JES_Zjet_MuSmearMS: 1.89868270e-03 + syst_JES_Zjet_OOC: 3.31615662e-03 + syst_JES_Zjet_Stat1: 1.49337939e-04 + syst_JES_Zjet_Stat10: 2.45897596e-04 + syst_JES_Zjet_Stat11: 3.49903458e-04 + syst_JES_Zjet_Stat12: 1.10536461e-03 + syst_JES_Zjet_Stat13: 2.08090822e-03 + syst_JES_Zjet_Stat2: 1.12938373e-06 + syst_JES_Zjet_Stat3: 7.19638692e-05 + syst_JES_Zjet_Stat4: 7.66368350e-05 + syst_JES_Zjet_Stat5: 9.49284861e-05 + syst_JES_Zjet_Stat6: 1.17981404e-04 + syst_JES_Zjet_Stat7: 8.89090473e-05 + syst_JES_Zjet_Stat8: 9.36515802e-05 + syst_JES_Zjet_Stat9: 1.48205086e-04 + syst_JES_Zjet_Veto: 7.33484894e-04 + syst_JES_Zjet_dPhi: 5.94534061e-04 syst_PRW: 0.0 - syst_Unfolding_bias: 0.0006183 - syst_cleaning: 0.003581015044648653 + syst_Unfolding_bias: 6.18300000e-04 + syst_cleaning: 3.58101504e-03 syst_lumi: 0.012652 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0025575419351400674 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 0.0014270745880997251 - syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.00019118343939787254 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 2.55754194e-03 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 1.42707459e-03 + syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.91183439e-04 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 0.003112892023504831 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.001846300896387152 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0030455345589896032 -- stat: 0.0018088 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 3.11289202e-03 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.84630090e-03 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 3.04553456e-03 +- stat: 1.80880000e-03 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.0024051415758744848 - syst_JER_NP1: 0.0002311121967789671 - syst_JER_NP2: 0.0015410463028410276 - syst_JER_NP3: 0.00016377712752396167 - syst_JER_NP4: 1.533391339482521e-10 - syst_JER_NP5: 2.0648566907173e-05 - syst_JER_NP6: 3.9150789197026407e-13 - syst_JER_NP7: 3.4525788550009975e-16 - syst_JER_NP8: 0.00026318394707884444 - syst_JES_EtaIntercalibration_Modelling: 0.01848781220155592 + syst_JER_NP0: 2.40514158e-03 + syst_JER_NP1: 2.31112197e-04 + syst_JER_NP2: 1.54104630e-03 + syst_JER_NP3: 1.63777128e-04 + syst_JER_NP4: 1.53339134e-10 + syst_JER_NP5: 2.06485669e-05 + syst_JER_NP6: 3.91507892e-13 + syst_JER_NP7: 3.45257886e-16 + syst_JER_NP8: 2.63183947e-04 + syst_JES_EtaIntercalibration_Modelling: 1.84878122e-02 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 9.612194518943111e-11 - syst_JES_EtaIntercalibration_Stat101: 4.5423226189995573e-07 - syst_JES_EtaIntercalibration_Stat102: 3.286384177492796e-10 - syst_JES_EtaIntercalibration_Stat103: 4.564903366994749e-14 + syst_JES_EtaIntercalibration_Stat100: 9.61219452e-11 + syst_JES_EtaIntercalibration_Stat101: 4.54232262e-07 + syst_JES_EtaIntercalibration_Stat102: 3.28638418e-10 + syst_JES_EtaIntercalibration_Stat103: 4.56490337e-14 syst_JES_EtaIntercalibration_Stat104: 0.0 syst_JES_EtaIntercalibration_Stat105: 0.0 syst_JES_EtaIntercalibration_Stat106: 0.0 @@ -30125,170 +30125,170 @@ bins: syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 syst_JES_EtaIntercalibration_Stat110: 0.0 - syst_JES_EtaIntercalibration_Stat111: 1.1829907015695434e-18 - syst_JES_EtaIntercalibration_Stat112: 1.1732156473023193e-12 - syst_JES_EtaIntercalibration_Stat113: 1.5241185411574782e-06 - syst_JES_EtaIntercalibration_Stat114: 1.5008536537584202e-06 - syst_JES_EtaIntercalibration_Stat115: 2.0089997529865453e-06 - syst_JES_EtaIntercalibration_Stat116: 9.775809185438916e-10 + syst_JES_EtaIntercalibration_Stat111: 1.18299070e-18 + syst_JES_EtaIntercalibration_Stat112: 1.17321565e-12 + syst_JES_EtaIntercalibration_Stat113: 1.52411854e-06 + syst_JES_EtaIntercalibration_Stat114: 1.50085365e-06 + syst_JES_EtaIntercalibration_Stat115: 2.00899975e-06 + syst_JES_EtaIntercalibration_Stat116: 9.77580919e-10 syst_JES_EtaIntercalibration_Stat117: 0.0 syst_JES_EtaIntercalibration_Stat118: 0.0 - syst_JES_EtaIntercalibration_Stat119: 9.81466568354348e-10 + syst_JES_EtaIntercalibration_Stat119: 9.81466568e-10 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 1.159562040165165e-06 - syst_JES_EtaIntercalibration_Stat121: 5.835856749441337e-07 - syst_JES_EtaIntercalibration_Stat122: 1.1694401536654996e-06 - syst_JES_EtaIntercalibration_Stat123: 1.20632749152127e-09 + syst_JES_EtaIntercalibration_Stat120: 1.15956204e-06 + syst_JES_EtaIntercalibration_Stat121: 5.83585675e-07 + syst_JES_EtaIntercalibration_Stat122: 1.16944015e-06 + syst_JES_EtaIntercalibration_Stat123: 1.20632749e-09 syst_JES_EtaIntercalibration_Stat124: 0.0 syst_JES_EtaIntercalibration_Stat125: 0.0 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 syst_JES_EtaIntercalibration_Stat128: 0.0 syst_JES_EtaIntercalibration_Stat129: 0.0 - syst_JES_EtaIntercalibration_Stat13: 9.835450584651838e-10 + syst_JES_EtaIntercalibration_Stat13: 9.83545058e-10 syst_JES_EtaIntercalibration_Stat130: 0.0 - syst_JES_EtaIntercalibration_Stat131: 1.3161028407765102e-11 - syst_JES_EtaIntercalibration_Stat132: 2.5511130644289366e-07 - syst_JES_EtaIntercalibration_Stat133: 1.0943341491518941e-06 - syst_JES_EtaIntercalibration_Stat134: 3.447381325005982e-06 - syst_JES_EtaIntercalibration_Stat135: 6.60384076101741e-08 + syst_JES_EtaIntercalibration_Stat131: 1.31610284e-11 + syst_JES_EtaIntercalibration_Stat132: 2.55111306e-07 + syst_JES_EtaIntercalibration_Stat133: 1.09433415e-06 + syst_JES_EtaIntercalibration_Stat134: 3.44738133e-06 + syst_JES_EtaIntercalibration_Stat135: 6.60384076e-08 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 - syst_JES_EtaIntercalibration_Stat138: 9.136447894976294e-10 - syst_JES_EtaIntercalibration_Stat139: 1.5649744055415093e-06 - syst_JES_EtaIntercalibration_Stat14: 2.990628821836638e-17 - syst_JES_EtaIntercalibration_Stat140: 2.9608148992296023e-07 - syst_JES_EtaIntercalibration_Stat141: 1.8049344254016545e-06 - syst_JES_EtaIntercalibration_Stat142: 2.1727031677038903e-07 + syst_JES_EtaIntercalibration_Stat138: 9.13644789e-10 + syst_JES_EtaIntercalibration_Stat139: 1.56497441e-06 + syst_JES_EtaIntercalibration_Stat14: 2.99062882e-17 + syst_JES_EtaIntercalibration_Stat140: 2.96081490e-07 + syst_JES_EtaIntercalibration_Stat141: 1.80493443e-06 + syst_JES_EtaIntercalibration_Stat142: 2.17270317e-07 syst_JES_EtaIntercalibration_Stat143: 0.0 syst_JES_EtaIntercalibration_Stat144: 0.0 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 syst_JES_EtaIntercalibration_Stat147: 0.0 syst_JES_EtaIntercalibration_Stat148: 0.0 - syst_JES_EtaIntercalibration_Stat149: 5.686300716799543e-09 - syst_JES_EtaIntercalibration_Stat15: 2.847457790292378e-17 - syst_JES_EtaIntercalibration_Stat150: 2.5591050681830165e-07 - syst_JES_EtaIntercalibration_Stat151: 1.623652056322413e-06 - syst_JES_EtaIntercalibration_Stat152: 3.1515375465794475e-06 - syst_JES_EtaIntercalibration_Stat153: 7.651874298497068e-08 + syst_JES_EtaIntercalibration_Stat149: 5.68630072e-09 + syst_JES_EtaIntercalibration_Stat15: 2.84745779e-17 + syst_JES_EtaIntercalibration_Stat150: 2.55910507e-07 + syst_JES_EtaIntercalibration_Stat151: 1.62365206e-06 + syst_JES_EtaIntercalibration_Stat152: 3.15153755e-06 + syst_JES_EtaIntercalibration_Stat153: 7.65187430e-08 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 8.059232399751589e-11 - syst_JES_EtaIntercalibration_Stat157: 1.3283947718957645e-06 - syst_JES_EtaIntercalibration_Stat158: 6.565294433610727e-06 - syst_JES_EtaIntercalibration_Stat159: 1.5855150582697094e-06 + syst_JES_EtaIntercalibration_Stat156: 8.05923240e-11 + syst_JES_EtaIntercalibration_Stat157: 1.32839477e-06 + syst_JES_EtaIntercalibration_Stat158: 6.56529443e-06 + syst_JES_EtaIntercalibration_Stat159: 1.58551506e-06 syst_JES_EtaIntercalibration_Stat16: 0.0 - syst_JES_EtaIntercalibration_Stat160: 3.653982961098752e-10 + syst_JES_EtaIntercalibration_Stat160: 3.65398296e-10 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 - syst_JES_EtaIntercalibration_Stat167: 3.1400202629720402e-06 - syst_JES_EtaIntercalibration_Stat168: 5.533396259757654e-06 - syst_JES_EtaIntercalibration_Stat169: 1.0349737424205504e-05 + syst_JES_EtaIntercalibration_Stat167: 3.14002026e-06 + syst_JES_EtaIntercalibration_Stat168: 5.53339626e-06 + syst_JES_EtaIntercalibration_Stat169: 1.03497374e-05 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 6.2266815399536855e-06 - syst_JES_EtaIntercalibration_Stat171: 7.081864359580745e-07 + syst_JES_EtaIntercalibration_Stat170: 6.22668154e-06 + syst_JES_EtaIntercalibration_Stat171: 7.08186436e-07 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 - syst_JES_EtaIntercalibration_Stat174: 1.349268629010888e-10 - syst_JES_EtaIntercalibration_Stat175: 3.48054410509334e-06 - syst_JES_EtaIntercalibration_Stat176: 5.750136694027369e-06 - syst_JES_EtaIntercalibration_Stat177: 4.4222362250336655e-06 - syst_JES_EtaIntercalibration_Stat178: 1.0148904115716141e-06 + syst_JES_EtaIntercalibration_Stat174: 1.34926863e-10 + syst_JES_EtaIntercalibration_Stat175: 3.48054411e-06 + syst_JES_EtaIntercalibration_Stat176: 5.75013669e-06 + syst_JES_EtaIntercalibration_Stat177: 4.42223623e-06 + syst_JES_EtaIntercalibration_Stat178: 1.01489041e-06 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 syst_JES_EtaIntercalibration_Stat180: 0.0 syst_JES_EtaIntercalibration_Stat181: 0.0 syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 - syst_JES_EtaIntercalibration_Stat184: 1.7327315775964838e-06 - syst_JES_EtaIntercalibration_Stat185: 2.0181380032098894e-05 - syst_JES_EtaIntercalibration_Stat186: 6.514492977200911e-05 - syst_JES_EtaIntercalibration_Stat187: 3.580704751861007e-05 - syst_JES_EtaIntercalibration_Stat188: 1.938367465162372e-06 + syst_JES_EtaIntercalibration_Stat184: 1.73273158e-06 + syst_JES_EtaIntercalibration_Stat185: 2.01813800e-05 + syst_JES_EtaIntercalibration_Stat186: 6.51449298e-05 + syst_JES_EtaIntercalibration_Stat187: 3.58070475e-05 + syst_JES_EtaIntercalibration_Stat188: 1.93836747e-06 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 - syst_JES_EtaIntercalibration_Stat191: 2.328196183207077e-06 - syst_JES_EtaIntercalibration_Stat192: 5.231863243625544e-05 - syst_JES_EtaIntercalibration_Stat193: 6.788325419424145e-05 - syst_JES_EtaIntercalibration_Stat194: 2.023706253387581e-05 - syst_JES_EtaIntercalibration_Stat195: 1.5891847178663657e-06 - syst_JES_EtaIntercalibration_Stat196: 1.2123999595327442e-09 + syst_JES_EtaIntercalibration_Stat191: 2.32819618e-06 + syst_JES_EtaIntercalibration_Stat192: 5.23186324e-05 + syst_JES_EtaIntercalibration_Stat193: 6.78832542e-05 + syst_JES_EtaIntercalibration_Stat194: 2.02370625e-05 + syst_JES_EtaIntercalibration_Stat195: 1.58918472e-06 + syst_JES_EtaIntercalibration_Stat196: 1.21239996e-09 syst_JES_EtaIntercalibration_Stat197: 0.0 syst_JES_EtaIntercalibration_Stat198: 0.0 - syst_JES_EtaIntercalibration_Stat199: 2.249878309486982e-06 + syst_JES_EtaIntercalibration_Stat199: 2.24987831e-06 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 3.693879667774791e-05 - syst_JES_EtaIntercalibration_Stat201: 0.0001201373591977117 - syst_JES_EtaIntercalibration_Stat202: 6.708271964522608e-05 - syst_JES_EtaIntercalibration_Stat203: 3.564408252080561e-06 + syst_JES_EtaIntercalibration_Stat200: 3.69387967e-05 + syst_JES_EtaIntercalibration_Stat201: 1.20137359e-04 + syst_JES_EtaIntercalibration_Stat202: 6.70827196e-05 + syst_JES_EtaIntercalibration_Stat203: 3.56440825e-06 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 - syst_JES_EtaIntercalibration_Stat206: 5.062817076490123e-07 - syst_JES_EtaIntercalibration_Stat207: 7.934696638813611e-05 - syst_JES_EtaIntercalibration_Stat208: 0.00016334292148728087 - syst_JES_EtaIntercalibration_Stat209: 3.85867344433291e-05 + syst_JES_EtaIntercalibration_Stat206: 5.06281708e-07 + syst_JES_EtaIntercalibration_Stat207: 7.93469664e-05 + syst_JES_EtaIntercalibration_Stat208: 1.63342921e-04 + syst_JES_EtaIntercalibration_Stat209: 3.85867344e-05 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 2.438896215504055e-06 - syst_JES_EtaIntercalibration_Stat211: 1.2874738121123084e-09 - syst_JES_EtaIntercalibration_Stat212: 9.970975579149716e-07 - syst_JES_EtaIntercalibration_Stat213: 3.388003947754489e-05 - syst_JES_EtaIntercalibration_Stat214: 0.00010337354448793945 - syst_JES_EtaIntercalibration_Stat215: 8.000780883763785e-05 - syst_JES_EtaIntercalibration_Stat216: 3.3428766336046562e-06 + syst_JES_EtaIntercalibration_Stat210: 2.43889622e-06 + syst_JES_EtaIntercalibration_Stat211: 1.28747381e-09 + syst_JES_EtaIntercalibration_Stat212: 9.97097558e-07 + syst_JES_EtaIntercalibration_Stat213: 3.38800395e-05 + syst_JES_EtaIntercalibration_Stat214: 1.03373544e-04 + syst_JES_EtaIntercalibration_Stat215: 8.00078088e-05 + syst_JES_EtaIntercalibration_Stat216: 3.34287663e-06 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 - syst_JES_EtaIntercalibration_Stat219: 1.4424323450339013e-06 + syst_JES_EtaIntercalibration_Stat219: 1.44243235e-06 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 9.468033005857129e-05 - syst_JES_EtaIntercalibration_Stat221: 0.000113091616289626 - syst_JES_EtaIntercalibration_Stat222: 3.553675430804001e-05 - syst_JES_EtaIntercalibration_Stat223: 1.865418719751681e-06 - syst_JES_EtaIntercalibration_Stat224: 2.7608250340035587e-06 - syst_JES_EtaIntercalibration_Stat225: 7.57737175741035e-05 - syst_JES_EtaIntercalibration_Stat226: 0.00023636770083917982 - syst_JES_EtaIntercalibration_Stat227: 0.00016238900055114572 - syst_JES_EtaIntercalibration_Stat228: 2.4246799788838114e-06 + syst_JES_EtaIntercalibration_Stat220: 9.46803301e-05 + syst_JES_EtaIntercalibration_Stat221: 1.13091616e-04 + syst_JES_EtaIntercalibration_Stat222: 3.55367543e-05 + syst_JES_EtaIntercalibration_Stat223: 1.86541872e-06 + syst_JES_EtaIntercalibration_Stat224: 2.76082503e-06 + syst_JES_EtaIntercalibration_Stat225: 7.57737176e-05 + syst_JES_EtaIntercalibration_Stat226: 2.36367701e-04 + syst_JES_EtaIntercalibration_Stat227: 1.62389001e-04 + syst_JES_EtaIntercalibration_Stat228: 2.42467998e-06 syst_JES_EtaIntercalibration_Stat229: 0.0 syst_JES_EtaIntercalibration_Stat23: 0.0 syst_JES_EtaIntercalibration_Stat230: 0.0 - syst_JES_EtaIntercalibration_Stat231: 2.2473359228206184e-06 - syst_JES_EtaIntercalibration_Stat232: 0.0001667972122069191 - syst_JES_EtaIntercalibration_Stat233: 0.0002469673409582733 - syst_JES_EtaIntercalibration_Stat234: 6.63668537373891e-05 - syst_JES_EtaIntercalibration_Stat235: 4.117688209116858e-06 - syst_JES_EtaIntercalibration_Stat236: 1.3494918923431885e-05 - syst_JES_EtaIntercalibration_Stat237: 2.151446722556708e-05 - syst_JES_EtaIntercalibration_Stat238: 1.9071995254823234e-05 - syst_JES_EtaIntercalibration_Stat239: 1.914079675144167e-07 + syst_JES_EtaIntercalibration_Stat231: 2.24733592e-06 + syst_JES_EtaIntercalibration_Stat232: 1.66797212e-04 + syst_JES_EtaIntercalibration_Stat233: 2.46967341e-04 + syst_JES_EtaIntercalibration_Stat234: 6.63668537e-05 + syst_JES_EtaIntercalibration_Stat235: 4.11768821e-06 + syst_JES_EtaIntercalibration_Stat236: 1.34949189e-05 + syst_JES_EtaIntercalibration_Stat237: 2.15144672e-05 + syst_JES_EtaIntercalibration_Stat238: 1.90719953e-05 + syst_JES_EtaIntercalibration_Stat239: 1.91407968e-07 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 - syst_JES_EtaIntercalibration_Stat242: 1.8637362108637908e-08 - syst_JES_EtaIntercalibration_Stat243: 1.9988963830073833e-05 - syst_JES_EtaIntercalibration_Stat244: 2.57452150894103e-05 - syst_JES_EtaIntercalibration_Stat245: 1.578087167269286e-05 + syst_JES_EtaIntercalibration_Stat242: 1.86373621e-08 + syst_JES_EtaIntercalibration_Stat243: 1.99889638e-05 + syst_JES_EtaIntercalibration_Stat244: 2.57452151e-05 + syst_JES_EtaIntercalibration_Stat245: 1.57808717e-05 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 - syst_JES_EtaIntercalibration_Stat27: 6.142821237021308e-18 - syst_JES_EtaIntercalibration_Stat28: 1.2194356655850075e-12 - syst_JES_EtaIntercalibration_Stat29: 5.016019198388622e-08 + syst_JES_EtaIntercalibration_Stat27: 6.14282124e-18 + syst_JES_EtaIntercalibration_Stat28: 1.21943567e-12 + syst_JES_EtaIntercalibration_Stat29: 5.01601920e-08 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 4.9857083972443624e-08 - syst_JES_EtaIntercalibration_Stat31: 1.1067804660365126e-18 + syst_JES_EtaIntercalibration_Stat30: 4.98570840e-08 + syst_JES_EtaIntercalibration_Stat31: 1.10678047e-18 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 - syst_JES_EtaIntercalibration_Stat34: 1.2669951657366337e-19 - syst_JES_EtaIntercalibration_Stat35: 9.824205961958925e-10 - syst_JES_EtaIntercalibration_Stat36: 9.83118626119231e-10 - syst_JES_EtaIntercalibration_Stat37: 1.527572288657725e-14 - syst_JES_EtaIntercalibration_Stat38: 1.3211048886727352e-17 + syst_JES_EtaIntercalibration_Stat34: 1.26699517e-19 + syst_JES_EtaIntercalibration_Stat35: 9.82420596e-10 + syst_JES_EtaIntercalibration_Stat36: 9.83118626e-10 + syst_JES_EtaIntercalibration_Stat37: 1.52757229e-14 + syst_JES_EtaIntercalibration_Stat38: 1.32110489e-17 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 syst_JES_EtaIntercalibration_Stat40: 0.0 @@ -30299,21 +30299,21 @@ bins: syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 syst_JES_EtaIntercalibration_Stat47: 0.0 - syst_JES_EtaIntercalibration_Stat48: 3.551570180919983e-18 - syst_JES_EtaIntercalibration_Stat49: 3.0271324302051935e-17 - syst_JES_EtaIntercalibration_Stat5: 3.1540645205829256e-18 - syst_JES_EtaIntercalibration_Stat50: 1.256334286724676e-12 - syst_JES_EtaIntercalibration_Stat51: 5.0005368651833405e-08 - syst_JES_EtaIntercalibration_Stat52: 4.997833006469694e-08 - syst_JES_EtaIntercalibration_Stat53: 1.546715781098777e-17 - syst_JES_EtaIntercalibration_Stat54: 1.0630461831453984e-17 + syst_JES_EtaIntercalibration_Stat48: 3.55157018e-18 + syst_JES_EtaIntercalibration_Stat49: 3.02713243e-17 + syst_JES_EtaIntercalibration_Stat5: 3.15406452e-18 + syst_JES_EtaIntercalibration_Stat50: 1.25633429e-12 + syst_JES_EtaIntercalibration_Stat51: 5.00053687e-08 + syst_JES_EtaIntercalibration_Stat52: 4.99783301e-08 + syst_JES_EtaIntercalibration_Stat53: 1.54671578e-17 + syst_JES_EtaIntercalibration_Stat54: 1.06304618e-17 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 7.037325255379349e-19 - syst_JES_EtaIntercalibration_Stat57: 9.685175255116488e-10 - syst_JES_EtaIntercalibration_Stat58: 9.791895359469482e-10 - syst_JES_EtaIntercalibration_Stat59: 3.183618695761162e-14 - syst_JES_EtaIntercalibration_Stat6: 6.822472773855532e-18 - syst_JES_EtaIntercalibration_Stat60: 1.318863571412904e-16 + syst_JES_EtaIntercalibration_Stat56: 7.03732526e-19 + syst_JES_EtaIntercalibration_Stat57: 9.68517526e-10 + syst_JES_EtaIntercalibration_Stat58: 9.79189536e-10 + syst_JES_EtaIntercalibration_Stat59: 3.18361870e-14 + syst_JES_EtaIntercalibration_Stat6: 6.82247277e-18 + syst_JES_EtaIntercalibration_Stat60: 1.31886357e-16 syst_JES_EtaIntercalibration_Stat61: 0.0 syst_JES_EtaIntercalibration_Stat62: 0.0 syst_JES_EtaIntercalibration_Stat63: 0.0 @@ -30323,21 +30323,21 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 8.724672257454718e-17 - syst_JES_EtaIntercalibration_Stat70: 3.1540645205829256e-18 - syst_JES_EtaIntercalibration_Stat71: 1.8686859019107518e-16 - syst_JES_EtaIntercalibration_Stat72: 3.368017400118355e-12 - syst_JES_EtaIntercalibration_Stat73: 3.984665402414612e-07 - syst_JES_EtaIntercalibration_Stat74: 1.0415349382041872e-07 - syst_JES_EtaIntercalibration_Stat75: 5.753574793558783e-16 - syst_JES_EtaIntercalibration_Stat76: 1.0630461831453984e-17 + syst_JES_EtaIntercalibration_Stat7: 8.72467226e-17 + syst_JES_EtaIntercalibration_Stat70: 3.15406452e-18 + syst_JES_EtaIntercalibration_Stat71: 1.86868590e-16 + syst_JES_EtaIntercalibration_Stat72: 3.36801740e-12 + syst_JES_EtaIntercalibration_Stat73: 3.98466540e-07 + syst_JES_EtaIntercalibration_Stat74: 1.04153494e-07 + syst_JES_EtaIntercalibration_Stat75: 5.75357479e-16 + syst_JES_EtaIntercalibration_Stat76: 1.06304618e-17 syst_JES_EtaIntercalibration_Stat77: 0.0 - syst_JES_EtaIntercalibration_Stat78: 1.8530199000550426e-16 - syst_JES_EtaIntercalibration_Stat79: 9.124584683254178e-10 - syst_JES_EtaIntercalibration_Stat8: 1.3750483937211083e-17 - syst_JES_EtaIntercalibration_Stat80: 3.4115781581928725e-07 - syst_JES_EtaIntercalibration_Stat81: 1.2135340352955702e-09 - syst_JES_EtaIntercalibration_Stat82: 1.5905190190626455e-16 + syst_JES_EtaIntercalibration_Stat78: 1.85301990e-16 + syst_JES_EtaIntercalibration_Stat79: 9.12458468e-10 + syst_JES_EtaIntercalibration_Stat8: 1.37504839e-17 + syst_JES_EtaIntercalibration_Stat80: 3.41157816e-07 + syst_JES_EtaIntercalibration_Stat81: 1.21353404e-09 + syst_JES_EtaIntercalibration_Stat82: 1.59051902e-16 syst_JES_EtaIntercalibration_Stat83: 0.0 syst_JES_EtaIntercalibration_Stat84: 0.0 syst_JES_EtaIntercalibration_Stat85: 0.0 @@ -30347,118 +30347,118 @@ bins: syst_JES_EtaIntercalibration_Stat89: 0.0 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 2.7097934884415084e-18 - syst_JES_EtaIntercalibration_Stat92: 1.0790924780206513e-13 - syst_JES_EtaIntercalibration_Stat93: 4.551962902693738e-12 - syst_JES_EtaIntercalibration_Stat94: 4.004008829598157e-07 - syst_JES_EtaIntercalibration_Stat95: 1.0731049936981935e-07 - syst_JES_EtaIntercalibration_Stat96: 1.2957936679888508e-15 - syst_JES_EtaIntercalibration_Stat97: 1.0630461831453984e-17 + syst_JES_EtaIntercalibration_Stat91: 2.70979349e-18 + syst_JES_EtaIntercalibration_Stat92: 1.07909248e-13 + syst_JES_EtaIntercalibration_Stat93: 4.55196290e-12 + syst_JES_EtaIntercalibration_Stat94: 4.00400883e-07 + syst_JES_EtaIntercalibration_Stat95: 1.07310499e-07 + syst_JES_EtaIntercalibration_Stat96: 1.29579367e-15 + syst_JES_EtaIntercalibration_Stat97: 1.06304618e-17 syst_JES_EtaIntercalibration_Stat98: 0.0 - syst_JES_EtaIntercalibration_Stat99: 6.331506002660814e-11 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0021361579412580898 - syst_JES_Flavour_Comp: 0.006145745906722795 - syst_JES_Gjet_Generator: 0.008687313206624935 - syst_JES_Gjet_OOC: 0.007084949117671911 - syst_JES_Gjet_Purity: 0.0015498873346150037 - syst_JES_Gjet_Stat1: 1.6128026967983404e-05 - syst_JES_Gjet_Stat10: 0.00013411021549457 - syst_JES_Gjet_Stat11: 0.0001733147642297101 - syst_JES_Gjet_Stat12: 0.0005779062467217326 - syst_JES_Gjet_Stat13: 0.001794369736146929 - syst_JES_Gjet_Stat14: 0.0036938207861237663 - syst_JES_Gjet_Stat15: 0.001079328620022651 - syst_JES_Gjet_Stat2: 2.2513788552795817e-05 - syst_JES_Gjet_Stat3: 2.479783206250095e-05 - syst_JES_Gjet_Stat4: 2.0594227346516307e-05 - syst_JES_Gjet_Stat5: 2.320831316576024e-05 - syst_JES_Gjet_Stat6: 5.835748538105459e-05 - syst_JES_Gjet_Stat7: 7.706446311368165e-05 - syst_JES_Gjet_Stat8: 6.08468635181798e-05 - syst_JES_Gjet_Stat9: 9.651087140835483e-05 - syst_JES_Gjet_Veto: 0.00675948272799036 - syst_JES_Gjet_dPhi: 0.0006720158089658307 - syst_JES_LArESZee: 0.013280577321788388 - syst_JES_LArEsmear: 0.0010320636257033769 - syst_JES_LAr_JVT: 0.0013030223789329174 - syst_JES_MJB_Alpha: 6.580506420481633e-05 - syst_JES_MJB_Asym: 0.0007961694087943846 - syst_JES_MJB_Beta: 8.371083128843006e-05 - syst_JES_MJB_Stat1: 4.5734801573856205e-06 - syst_JES_MJB_Stat10: 4.037932732228213e-05 - syst_JES_MJB_Stat11: 2.6505739001205002e-05 - syst_JES_MJB_Stat12: 1.8941589479238538e-05 - syst_JES_MJB_Stat13: 3.4366661795990604e-05 - syst_JES_MJB_Stat14: 4.186068650894297e-05 - syst_JES_MJB_Stat15: 2.8401603387837102e-05 - syst_JES_MJB_Stat16: 6.340423559983986e-07 + syst_JES_EtaIntercalibration_Stat99: 6.33150600e-11 + syst_JES_EtaIntercalibration_TotalStat_MJB: 2.13615794e-03 + syst_JES_Flavour_Comp: 6.14574591e-03 + syst_JES_Gjet_Generator: 8.68731321e-03 + syst_JES_Gjet_OOC: 7.08494912e-03 + syst_JES_Gjet_Purity: 1.54988733e-03 + syst_JES_Gjet_Stat1: 1.61280270e-05 + syst_JES_Gjet_Stat10: 1.34110215e-04 + syst_JES_Gjet_Stat11: 1.73314764e-04 + syst_JES_Gjet_Stat12: 5.77906247e-04 + syst_JES_Gjet_Stat13: 1.79436974e-03 + syst_JES_Gjet_Stat14: 3.69382079e-03 + syst_JES_Gjet_Stat15: 1.07932862e-03 + syst_JES_Gjet_Stat2: 2.25137886e-05 + syst_JES_Gjet_Stat3: 2.47978321e-05 + syst_JES_Gjet_Stat4: 2.05942273e-05 + syst_JES_Gjet_Stat5: 2.32083132e-05 + syst_JES_Gjet_Stat6: 5.83574854e-05 + syst_JES_Gjet_Stat7: 7.70644631e-05 + syst_JES_Gjet_Stat8: 6.08468635e-05 + syst_JES_Gjet_Stat9: 9.65108714e-05 + syst_JES_Gjet_Veto: 6.75948273e-03 + syst_JES_Gjet_dPhi: 6.72015809e-04 + syst_JES_LArESZee: 1.32805773e-02 + syst_JES_LArEsmear: 1.03206363e-03 + syst_JES_LAr_JVT: 1.30302238e-03 + syst_JES_MJB_Alpha: 6.58050642e-05 + syst_JES_MJB_Asym: 7.96169409e-04 + syst_JES_MJB_Beta: 8.37108313e-05 + syst_JES_MJB_Stat1: 4.57348016e-06 + syst_JES_MJB_Stat10: 4.03793273e-05 + syst_JES_MJB_Stat11: 2.65057390e-05 + syst_JES_MJB_Stat12: 1.89415895e-05 + syst_JES_MJB_Stat13: 3.43666618e-05 + syst_JES_MJB_Stat14: 4.18606865e-05 + syst_JES_MJB_Stat15: 2.84016034e-05 + syst_JES_MJB_Stat16: 6.34042356e-07 syst_JES_MJB_Stat2: 0.0 - syst_JES_MJB_Stat3: 6.38607132750645e-05 - syst_JES_MJB_Stat4: 1.84376808465707e-05 - syst_JES_MJB_Stat5: 4.6410301388808067e-05 - syst_JES_MJB_Stat6: 6.634550926777185e-05 - syst_JES_MJB_Stat7: 5.618747725249817e-05 - syst_JES_MJB_Stat8: 6.269367013503038e-05 - syst_JES_MJB_Stat9: 5.442163609264242e-05 - syst_JES_MJB_Threshold: 0.0007243141376502325 - syst_JES_Pileup_MuOffset: 0.0015771242817229083 - syst_JES_Pileup_NPVOffset: 0.0016120750602872066 - syst_JES_Pileup_Pt_term: 0.001391688243645106 - syst_JES_PunchThrough_MC15: 0.0006623771357768927 - syst_JES_SingleParticle_HighPt: 1.461954062205786e-20 - syst_JES_Zjet_MC: 0.004080889759599002 - syst_JES_Zjet_MuScale: 0.00026009922625798025 - syst_JES_Zjet_MuSmearID: 6.061005918987375e-05 - syst_JES_Zjet_MuSmearMS: 0.0011417101252069197 - syst_JES_Zjet_OOC: 0.002064503027365182 - syst_JES_Zjet_Stat1: 0.00010234872092508045 - syst_JES_Zjet_Stat10: 0.00015248035939097206 - syst_JES_Zjet_Stat11: 0.00021177577765174184 - syst_JES_Zjet_Stat12: 0.0006654101592251204 - syst_JES_Zjet_Stat13: 0.0012458909211885284 - syst_JES_Zjet_Stat2: 7.20533135948653e-07 - syst_JES_Zjet_Stat3: 5.037058069945194e-05 - syst_JES_Zjet_Stat4: 5.331844521364065e-05 - syst_JES_Zjet_Stat5: 6.465995205689531e-05 - syst_JES_Zjet_Stat6: 7.595102171794662e-05 - syst_JES_Zjet_Stat7: 5.715663740984069e-05 - syst_JES_Zjet_Stat8: 6.87674943196275e-05 - syst_JES_Zjet_Stat9: 9.73389392792011e-05 - syst_JES_Zjet_Veto: 0.0004581298833300443 - syst_JES_Zjet_dPhi: 0.00038146767136940974 + syst_JES_MJB_Stat3: 6.38607133e-05 + syst_JES_MJB_Stat4: 1.84376808e-05 + syst_JES_MJB_Stat5: 4.64103014e-05 + syst_JES_MJB_Stat6: 6.63455093e-05 + syst_JES_MJB_Stat7: 5.61874773e-05 + syst_JES_MJB_Stat8: 6.26936701e-05 + syst_JES_MJB_Stat9: 5.44216361e-05 + syst_JES_MJB_Threshold: 7.24314138e-04 + syst_JES_Pileup_MuOffset: 1.57712428e-03 + syst_JES_Pileup_NPVOffset: 1.61207506e-03 + syst_JES_Pileup_Pt_term: 1.39168824e-03 + syst_JES_PunchThrough_MC15: 6.62377136e-04 + syst_JES_SingleParticle_HighPt: 1.46195406e-20 + syst_JES_Zjet_MC: 4.08088976e-03 + syst_JES_Zjet_MuScale: 2.60099226e-04 + syst_JES_Zjet_MuSmearID: 6.06100592e-05 + syst_JES_Zjet_MuSmearMS: 1.14171013e-03 + syst_JES_Zjet_OOC: 2.06450303e-03 + syst_JES_Zjet_Stat1: 1.02348721e-04 + syst_JES_Zjet_Stat10: 1.52480359e-04 + syst_JES_Zjet_Stat11: 2.11775778e-04 + syst_JES_Zjet_Stat12: 6.65410159e-04 + syst_JES_Zjet_Stat13: 1.24589092e-03 + syst_JES_Zjet_Stat2: 7.20533136e-07 + syst_JES_Zjet_Stat3: 5.03705807e-05 + syst_JES_Zjet_Stat4: 5.33184452e-05 + syst_JES_Zjet_Stat5: 6.46599521e-05 + syst_JES_Zjet_Stat6: 7.59510217e-05 + syst_JES_Zjet_Stat7: 5.71566374e-05 + syst_JES_Zjet_Stat8: 6.87674943e-05 + syst_JES_Zjet_Stat9: 9.73389393e-05 + syst_JES_Zjet_Veto: 4.58129883e-04 + syst_JES_Zjet_dPhi: 3.81467671e-04 syst_PRW: 0.0 - syst_Unfolding_bias: 0.00039446 - syst_cleaning: 0.0022811109135682114 + syst_Unfolding_bias: 3.94460000e-04 + syst_cleaning: 2.28111091e-03 syst_lumi: 0.008072 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0016062847661607203 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 0.0007457842114177532 - syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0001131693748325933 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.60628477e-03 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 7.45784211e-04 + syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.13169375e-04 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 0.0016275585242933662 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0011142424635150108 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0019744585966790995 -- stat: 0.0013506 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 1.62755852e-03 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.11424246e-03 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.97445860e-03 +- stat: 1.35060000e-03 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.0015582948012170226 - syst_JER_NP1: 0.00018224030838428693 - syst_JER_NP2: 0.0010477790797682495 - syst_JER_NP3: 0.00010144430134315086 - syst_JER_NP4: 2.3081175771610944e-11 - syst_JER_NP5: 4.605363673660854e-06 - syst_JER_NP6: 6.830349679921227e-14 - syst_JER_NP7: 8.042189129832748e-17 - syst_JER_NP8: 0.00015326189187139772 - syst_JES_EtaIntercalibration_Modelling: 0.012271552581071394 + syst_JER_NP0: 1.55829480e-03 + syst_JER_NP1: 1.82240308e-04 + syst_JER_NP2: 1.04777908e-03 + syst_JER_NP3: 1.01444301e-04 + syst_JER_NP4: 2.30811758e-11 + syst_JER_NP5: 4.60536367e-06 + syst_JER_NP6: 6.83034968e-14 + syst_JER_NP7: 8.04218913e-17 + syst_JER_NP8: 1.53261892e-04 + syst_JES_EtaIntercalibration_Modelling: 1.22715526e-02 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 1.4382104113098333e-11 - syst_JES_EtaIntercalibration_Stat101: 1.4646507961861593e-07 - syst_JES_EtaIntercalibration_Stat102: 5.056440691583359e-11 - syst_JES_EtaIntercalibration_Stat103: 7.45669316788615e-15 + syst_JES_EtaIntercalibration_Stat100: 1.43821041e-11 + syst_JES_EtaIntercalibration_Stat101: 1.46465080e-07 + syst_JES_EtaIntercalibration_Stat102: 5.05644069e-11 + syst_JES_EtaIntercalibration_Stat103: 7.45669317e-15 syst_JES_EtaIntercalibration_Stat104: 0.0 syst_JES_EtaIntercalibration_Stat105: 0.0 syst_JES_EtaIntercalibration_Stat106: 0.0 @@ -30467,170 +30467,170 @@ bins: syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 syst_JES_EtaIntercalibration_Stat110: 0.0 - syst_JES_EtaIntercalibration_Stat111: 2.697669132788526e-19 - syst_JES_EtaIntercalibration_Stat112: 1.748013981637447e-13 - syst_JES_EtaIntercalibration_Stat113: 5.986750934354961e-07 - syst_JES_EtaIntercalibration_Stat114: 5.753258728755382e-07 - syst_JES_EtaIntercalibration_Stat115: 1.1476860230481155e-06 - syst_JES_EtaIntercalibration_Stat116: 1.5017058997943678e-10 + syst_JES_EtaIntercalibration_Stat111: 2.69766913e-19 + syst_JES_EtaIntercalibration_Stat112: 1.74801398e-13 + syst_JES_EtaIntercalibration_Stat113: 5.98675093e-07 + syst_JES_EtaIntercalibration_Stat114: 5.75325873e-07 + syst_JES_EtaIntercalibration_Stat115: 1.14768602e-06 + syst_JES_EtaIntercalibration_Stat116: 1.50170590e-10 syst_JES_EtaIntercalibration_Stat117: 0.0 syst_JES_EtaIntercalibration_Stat118: 0.0 - syst_JES_EtaIntercalibration_Stat119: 1.5025540280212123e-10 + syst_JES_EtaIntercalibration_Stat119: 1.50255403e-10 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 7.758152751802454e-07 - syst_JES_EtaIntercalibration_Stat121: 3.3913370151018613e-07 - syst_JES_EtaIntercalibration_Stat122: 7.42883314853563e-07 - syst_JES_EtaIntercalibration_Stat123: 1.9845583009009841e-10 + syst_JES_EtaIntercalibration_Stat120: 7.75815275e-07 + syst_JES_EtaIntercalibration_Stat121: 3.39133702e-07 + syst_JES_EtaIntercalibration_Stat122: 7.42883315e-07 + syst_JES_EtaIntercalibration_Stat123: 1.98455830e-10 syst_JES_EtaIntercalibration_Stat124: 0.0 syst_JES_EtaIntercalibration_Stat125: 0.0 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 syst_JES_EtaIntercalibration_Stat128: 0.0 syst_JES_EtaIntercalibration_Stat129: 0.0 - syst_JES_EtaIntercalibration_Stat13: 1.5060181922384342e-10 + syst_JES_EtaIntercalibration_Stat13: 1.50601819e-10 syst_JES_EtaIntercalibration_Stat130: 0.0 - syst_JES_EtaIntercalibration_Stat131: 1.901054452139654e-12 - syst_JES_EtaIntercalibration_Stat132: 2.842881031401068e-07 - syst_JES_EtaIntercalibration_Stat133: 4.678496633535178e-07 - syst_JES_EtaIntercalibration_Stat134: 8.864747937758862e-07 - syst_JES_EtaIntercalibration_Stat135: 1.5014487260226373e-08 + syst_JES_EtaIntercalibration_Stat131: 1.90105445e-12 + syst_JES_EtaIntercalibration_Stat132: 2.84288103e-07 + syst_JES_EtaIntercalibration_Stat133: 4.67849663e-07 + syst_JES_EtaIntercalibration_Stat134: 8.86474794e-07 + syst_JES_EtaIntercalibration_Stat135: 1.50144873e-08 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 - syst_JES_EtaIntercalibration_Stat138: 1.400846118487234e-10 - syst_JES_EtaIntercalibration_Stat139: 6.212129485933144e-07 - syst_JES_EtaIntercalibration_Stat14: 6.067557004264567e-18 - syst_JES_EtaIntercalibration_Stat140: 5.740831917718894e-08 - syst_JES_EtaIntercalibration_Stat141: 7.815712171645013e-07 - syst_JES_EtaIntercalibration_Stat142: 7.005054007236852e-08 + syst_JES_EtaIntercalibration_Stat138: 1.40084612e-10 + syst_JES_EtaIntercalibration_Stat139: 6.21212949e-07 + syst_JES_EtaIntercalibration_Stat14: 6.06755700e-18 + syst_JES_EtaIntercalibration_Stat140: 5.74083192e-08 + syst_JES_EtaIntercalibration_Stat141: 7.81571217e-07 + syst_JES_EtaIntercalibration_Stat142: 7.00505401e-08 syst_JES_EtaIntercalibration_Stat143: 0.0 syst_JES_EtaIntercalibration_Stat144: 0.0 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 syst_JES_EtaIntercalibration_Stat147: 0.0 syst_JES_EtaIntercalibration_Stat148: 0.0 - syst_JES_EtaIntercalibration_Stat149: 3.7051414297837537e-09 - syst_JES_EtaIntercalibration_Stat15: 5.746902673760449e-18 - syst_JES_EtaIntercalibration_Stat150: 2.878668442179474e-07 - syst_JES_EtaIntercalibration_Stat151: 5.948499033369678e-07 - syst_JES_EtaIntercalibration_Stat152: 3.5023447859969475e-07 - syst_JES_EtaIntercalibration_Stat153: 1.7471638229713892e-08 + syst_JES_EtaIntercalibration_Stat149: 3.70514143e-09 + syst_JES_EtaIntercalibration_Stat15: 5.74690267e-18 + syst_JES_EtaIntercalibration_Stat150: 2.87866844e-07 + syst_JES_EtaIntercalibration_Stat151: 5.94849903e-07 + syst_JES_EtaIntercalibration_Stat152: 3.50234479e-07 + syst_JES_EtaIntercalibration_Stat153: 1.74716382e-08 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 1.208971461874238e-11 - syst_JES_EtaIntercalibration_Stat157: 8.654769364344725e-07 - syst_JES_EtaIntercalibration_Stat158: 3.1528403067710236e-06 - syst_JES_EtaIntercalibration_Stat159: 6.856460602964186e-07 + syst_JES_EtaIntercalibration_Stat156: 1.20897146e-11 + syst_JES_EtaIntercalibration_Stat157: 8.65476936e-07 + syst_JES_EtaIntercalibration_Stat158: 3.15284031e-06 + syst_JES_EtaIntercalibration_Stat159: 6.85646060e-07 syst_JES_EtaIntercalibration_Stat16: 0.0 - syst_JES_EtaIntercalibration_Stat160: 5.5540936506328375e-11 + syst_JES_EtaIntercalibration_Stat160: 5.55409365e-11 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 - syst_JES_EtaIntercalibration_Stat167: 1.1103418187261072e-06 - syst_JES_EtaIntercalibration_Stat168: 2.12151641697631e-06 - syst_JES_EtaIntercalibration_Stat169: 4.397804737309287e-06 + syst_JES_EtaIntercalibration_Stat167: 1.11034182e-06 + syst_JES_EtaIntercalibration_Stat168: 2.12151642e-06 + syst_JES_EtaIntercalibration_Stat169: 4.39780474e-06 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 3.6718752702127563e-06 - syst_JES_EtaIntercalibration_Stat171: 4.380950867962342e-07 + syst_JES_EtaIntercalibration_Stat170: 3.67187527e-06 + syst_JES_EtaIntercalibration_Stat171: 4.38095087e-07 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 - syst_JES_EtaIntercalibration_Stat174: 1.9728078007764865e-11 - syst_JES_EtaIntercalibration_Stat175: 1.1673927391842043e-06 - syst_JES_EtaIntercalibration_Stat176: 3.6056195029425944e-06 - syst_JES_EtaIntercalibration_Stat177: 2.090386152723941e-06 - syst_JES_EtaIntercalibration_Stat178: 4.4099554136068094e-07 + syst_JES_EtaIntercalibration_Stat174: 1.97280780e-11 + syst_JES_EtaIntercalibration_Stat175: 1.16739274e-06 + syst_JES_EtaIntercalibration_Stat176: 3.60561950e-06 + syst_JES_EtaIntercalibration_Stat177: 2.09038615e-06 + syst_JES_EtaIntercalibration_Stat178: 4.40995541e-07 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 syst_JES_EtaIntercalibration_Stat180: 0.0 syst_JES_EtaIntercalibration_Stat181: 0.0 syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 - syst_JES_EtaIntercalibration_Stat184: 8.129758668004849e-07 - syst_JES_EtaIntercalibration_Stat185: 8.011869881619399e-06 - syst_JES_EtaIntercalibration_Stat186: 3.130469094241309e-05 - syst_JES_EtaIntercalibration_Stat187: 2.0002801678764903e-05 - syst_JES_EtaIntercalibration_Stat188: 7.51548539683233e-08 + syst_JES_EtaIntercalibration_Stat184: 8.12975867e-07 + syst_JES_EtaIntercalibration_Stat185: 8.01186988e-06 + syst_JES_EtaIntercalibration_Stat186: 3.13046909e-05 + syst_JES_EtaIntercalibration_Stat187: 2.00028017e-05 + syst_JES_EtaIntercalibration_Stat188: 7.51548540e-08 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 - syst_JES_EtaIntercalibration_Stat191: 1.1460455782821205e-06 - syst_JES_EtaIntercalibration_Stat192: 2.832535436671534e-05 - syst_JES_EtaIntercalibration_Stat193: 3.59864415023214e-05 - syst_JES_EtaIntercalibration_Stat194: 1.0228573605346936e-05 - syst_JES_EtaIntercalibration_Stat195: 7.254882700636861e-07 - syst_JES_EtaIntercalibration_Stat196: 1.994148140811008e-10 + syst_JES_EtaIntercalibration_Stat191: 1.14604558e-06 + syst_JES_EtaIntercalibration_Stat192: 2.83253544e-05 + syst_JES_EtaIntercalibration_Stat193: 3.59864415e-05 + syst_JES_EtaIntercalibration_Stat194: 1.02285736e-05 + syst_JES_EtaIntercalibration_Stat195: 7.25488270e-07 + syst_JES_EtaIntercalibration_Stat196: 1.99414814e-10 syst_JES_EtaIntercalibration_Stat197: 0.0 syst_JES_EtaIntercalibration_Stat198: 0.0 - syst_JES_EtaIntercalibration_Stat199: 7.665484785713165e-07 + syst_JES_EtaIntercalibration_Stat199: 7.66548479e-07 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 1.842614107728474e-05 - syst_JES_EtaIntercalibration_Stat201: 6.0428949188282265e-05 - syst_JES_EtaIntercalibration_Stat202: 4.011547707244674e-05 - syst_JES_EtaIntercalibration_Stat203: 8.03129608157986e-07 + syst_JES_EtaIntercalibration_Stat200: 1.84261411e-05 + syst_JES_EtaIntercalibration_Stat201: 6.04289492e-05 + syst_JES_EtaIntercalibration_Stat202: 4.01154771e-05 + syst_JES_EtaIntercalibration_Stat203: 8.03129608e-07 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 - syst_JES_EtaIntercalibration_Stat206: 6.09811731192505e-07 - syst_JES_EtaIntercalibration_Stat207: 4.598083160404996e-05 - syst_JES_EtaIntercalibration_Stat208: 8.591065475248107e-05 - syst_JES_EtaIntercalibration_Stat209: 2.009060974684442e-05 + syst_JES_EtaIntercalibration_Stat206: 6.09811731e-07 + syst_JES_EtaIntercalibration_Stat207: 4.59808316e-05 + syst_JES_EtaIntercalibration_Stat208: 8.59106548e-05 + syst_JES_EtaIntercalibration_Stat209: 2.00906097e-05 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 1.2367016859372352e-06 - syst_JES_EtaIntercalibration_Stat211: 2.109316407630681e-10 - syst_JES_EtaIntercalibration_Stat212: 6.284349190648146e-07 - syst_JES_EtaIntercalibration_Stat213: 1.9452929727935586e-05 - syst_JES_EtaIntercalibration_Stat214: 5.5958645444649566e-05 - syst_JES_EtaIntercalibration_Stat215: 4.28747556844351e-05 - syst_JES_EtaIntercalibration_Stat216: 7.497255547865499e-07 + syst_JES_EtaIntercalibration_Stat210: 1.23670169e-06 + syst_JES_EtaIntercalibration_Stat211: 2.10931641e-10 + syst_JES_EtaIntercalibration_Stat212: 6.28434919e-07 + syst_JES_EtaIntercalibration_Stat213: 1.94529297e-05 + syst_JES_EtaIntercalibration_Stat214: 5.59586454e-05 + syst_JES_EtaIntercalibration_Stat215: 4.28747557e-05 + syst_JES_EtaIntercalibration_Stat216: 7.49725555e-07 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 - syst_JES_EtaIntercalibration_Stat219: 5.771253070174623e-07 + syst_JES_EtaIntercalibration_Stat219: 5.77125307e-07 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 5.952330887979935e-05 - syst_JES_EtaIntercalibration_Stat221: 6.818458623472023e-05 - syst_JES_EtaIntercalibration_Stat222: 1.9844724109949226e-05 - syst_JES_EtaIntercalibration_Stat223: 6.543687950995218e-07 - syst_JES_EtaIntercalibration_Stat224: 2.4314828644683063e-06 - syst_JES_EtaIntercalibration_Stat225: 5.360032719116554e-05 - syst_JES_EtaIntercalibration_Stat226: 0.0001624192414709538 - syst_JES_EtaIntercalibration_Stat227: 0.00011640641047639945 - syst_JES_EtaIntercalibration_Stat228: 2.2003114143229817e-06 + syst_JES_EtaIntercalibration_Stat220: 5.95233089e-05 + syst_JES_EtaIntercalibration_Stat221: 6.81845862e-05 + syst_JES_EtaIntercalibration_Stat222: 1.98447241e-05 + syst_JES_EtaIntercalibration_Stat223: 6.54368795e-07 + syst_JES_EtaIntercalibration_Stat224: 2.43148286e-06 + syst_JES_EtaIntercalibration_Stat225: 5.36003272e-05 + syst_JES_EtaIntercalibration_Stat226: 1.62419241e-04 + syst_JES_EtaIntercalibration_Stat227: 1.16406410e-04 + syst_JES_EtaIntercalibration_Stat228: 2.20031141e-06 syst_JES_EtaIntercalibration_Stat229: 0.0 syst_JES_EtaIntercalibration_Stat23: 0.0 syst_JES_EtaIntercalibration_Stat230: 0.0 - syst_JES_EtaIntercalibration_Stat231: 1.4280758908405393e-06 - syst_JES_EtaIntercalibration_Stat232: 0.00012701144859814803 - syst_JES_EtaIntercalibration_Stat233: 0.0001733563598487232 - syst_JES_EtaIntercalibration_Stat234: 4.9744964318009115e-05 - syst_JES_EtaIntercalibration_Stat235: 2.560082709601391e-06 - syst_JES_EtaIntercalibration_Stat236: 1.0300988144348094e-05 - syst_JES_EtaIntercalibration_Stat237: 2.686857039367744e-05 - syst_JES_EtaIntercalibration_Stat238: 1.851472719215706e-05 - syst_JES_EtaIntercalibration_Stat239: 5.85744882606754e-08 + syst_JES_EtaIntercalibration_Stat231: 1.42807589e-06 + syst_JES_EtaIntercalibration_Stat232: 1.27011449e-04 + syst_JES_EtaIntercalibration_Stat233: 1.73356360e-04 + syst_JES_EtaIntercalibration_Stat234: 4.97449643e-05 + syst_JES_EtaIntercalibration_Stat235: 2.56008271e-06 + syst_JES_EtaIntercalibration_Stat236: 1.03009881e-05 + syst_JES_EtaIntercalibration_Stat237: 2.68685704e-05 + syst_JES_EtaIntercalibration_Stat238: 1.85147272e-05 + syst_JES_EtaIntercalibration_Stat239: 5.85744883e-08 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 - syst_JES_EtaIntercalibration_Stat242: 4.3626188624150974e-08 - syst_JES_EtaIntercalibration_Stat243: 1.9485509359521498e-05 - syst_JES_EtaIntercalibration_Stat244: 2.732890914398158e-05 - syst_JES_EtaIntercalibration_Stat245: 1.192443218773959e-05 + syst_JES_EtaIntercalibration_Stat242: 4.36261886e-08 + syst_JES_EtaIntercalibration_Stat243: 1.94855094e-05 + syst_JES_EtaIntercalibration_Stat244: 2.73289091e-05 + syst_JES_EtaIntercalibration_Stat245: 1.19244322e-05 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 - syst_JES_EtaIntercalibration_Stat27: 1.3813870447850596e-18 - syst_JES_EtaIntercalibration_Stat28: 1.8187888924370165e-13 - syst_JES_EtaIntercalibration_Stat29: 2.856151792070497e-08 + syst_JES_EtaIntercalibration_Stat27: 1.38138704e-18 + syst_JES_EtaIntercalibration_Stat28: 1.81878889e-13 + syst_JES_EtaIntercalibration_Stat29: 2.85615179e-08 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 2.8535537302900143e-08 - syst_JES_EtaIntercalibration_Stat31: 2.545248661722465e-19 + syst_JES_EtaIntercalibration_Stat30: 2.85355373e-08 + syst_JES_EtaIntercalibration_Stat31: 2.54524866e-19 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 - syst_JES_EtaIntercalibration_Stat34: 3.156662596794279e-20 - syst_JES_EtaIntercalibration_Stat35: 1.5042883959511747e-10 - syst_JES_EtaIntercalibration_Stat36: 1.5051625472561228e-10 - syst_JES_EtaIntercalibration_Stat37: 2.29014683343121e-15 - syst_JES_EtaIntercalibration_Stat38: 2.3979638758746973e-18 + syst_JES_EtaIntercalibration_Stat34: 3.15666260e-20 + syst_JES_EtaIntercalibration_Stat35: 1.50428840e-10 + syst_JES_EtaIntercalibration_Stat36: 1.50516255e-10 + syst_JES_EtaIntercalibration_Stat37: 2.29014683e-15 + syst_JES_EtaIntercalibration_Stat38: 2.39796388e-18 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 syst_JES_EtaIntercalibration_Stat40: 0.0 @@ -30641,21 +30641,21 @@ bins: syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 syst_JES_EtaIntercalibration_Stat47: 0.0 - syst_JES_EtaIntercalibration_Stat48: 7.89988373332165e-19 - syst_JES_EtaIntercalibration_Stat49: 6.146137893018672e-18 - syst_JES_EtaIntercalibration_Stat5: 6.927337204871725e-19 - syst_JES_EtaIntercalibration_Stat50: 1.874344490081799e-13 - syst_JES_EtaIntercalibration_Stat51: 2.8353825644826603e-08 - syst_JES_EtaIntercalibration_Stat52: 2.8448935188086635e-08 - syst_JES_EtaIntercalibration_Stat53: 2.9175726910395907e-18 - syst_JES_EtaIntercalibration_Stat54: 1.932968701246867e-18 + syst_JES_EtaIntercalibration_Stat48: 7.89988373e-19 + syst_JES_EtaIntercalibration_Stat49: 6.14613789e-18 + syst_JES_EtaIntercalibration_Stat5: 6.92733720e-19 + syst_JES_EtaIntercalibration_Stat50: 1.87434449e-13 + syst_JES_EtaIntercalibration_Stat51: 2.83538256e-08 + syst_JES_EtaIntercalibration_Stat52: 2.84489352e-08 + syst_JES_EtaIntercalibration_Stat53: 2.91757269e-18 + syst_JES_EtaIntercalibration_Stat54: 1.93296870e-18 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 1.6394416938397046e-19 - syst_JES_EtaIntercalibration_Stat57: 1.48356396762636e-10 - syst_JES_EtaIntercalibration_Stat58: 1.4991832103343166e-10 - syst_JES_EtaIntercalibration_Stat59: 5.018093163742578e-15 - syst_JES_EtaIntercalibration_Stat6: 1.5341124363944124e-18 - syst_JES_EtaIntercalibration_Stat60: 2.4663290777996354e-17 + syst_JES_EtaIntercalibration_Stat56: 1.63944169e-19 + syst_JES_EtaIntercalibration_Stat57: 1.48356397e-10 + syst_JES_EtaIntercalibration_Stat58: 1.49918321e-10 + syst_JES_EtaIntercalibration_Stat59: 5.01809316e-15 + syst_JES_EtaIntercalibration_Stat6: 1.53411244e-18 + syst_JES_EtaIntercalibration_Stat60: 2.46632908e-17 syst_JES_EtaIntercalibration_Stat61: 0.0 syst_JES_EtaIntercalibration_Stat62: 0.0 syst_JES_EtaIntercalibration_Stat63: 0.0 @@ -30665,21 +30665,21 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 1.6398807883501775e-17 - syst_JES_EtaIntercalibration_Stat70: 6.927337204871725e-19 - syst_JES_EtaIntercalibration_Stat71: 3.481010305931311e-17 - syst_JES_EtaIntercalibration_Stat72: 4.882341703271085e-13 - syst_JES_EtaIntercalibration_Stat73: 1.9213712373789195e-07 - syst_JES_EtaIntercalibration_Stat74: 3.775175591942711e-08 - syst_JES_EtaIntercalibration_Stat75: 9.457725071072854e-17 - syst_JES_EtaIntercalibration_Stat76: 1.932968701246867e-18 + syst_JES_EtaIntercalibration_Stat7: 1.63988079e-17 + syst_JES_EtaIntercalibration_Stat70: 6.92733720e-19 + syst_JES_EtaIntercalibration_Stat71: 3.48101031e-17 + syst_JES_EtaIntercalibration_Stat72: 4.88234170e-13 + syst_JES_EtaIntercalibration_Stat73: 1.92137124e-07 + syst_JES_EtaIntercalibration_Stat74: 3.77517559e-08 + syst_JES_EtaIntercalibration_Stat75: 9.45772507e-17 + syst_JES_EtaIntercalibration_Stat76: 1.93296870e-18 syst_JES_EtaIntercalibration_Stat77: 0.0 - syst_JES_EtaIntercalibration_Stat78: 3.45788838454916e-17 - syst_JES_EtaIntercalibration_Stat79: 1.3987838318375387e-10 - syst_JES_EtaIntercalibration_Stat8: 2.593217862039362e-18 - syst_JES_EtaIntercalibration_Stat80: 8.630007958226352e-08 - syst_JES_EtaIntercalibration_Stat81: 1.9953451041663822e-10 - syst_JES_EtaIntercalibration_Stat82: 2.9023095544755385e-17 + syst_JES_EtaIntercalibration_Stat78: 3.45788838e-17 + syst_JES_EtaIntercalibration_Stat79: 1.39878383e-10 + syst_JES_EtaIntercalibration_Stat8: 2.59321786e-18 + syst_JES_EtaIntercalibration_Stat80: 8.63000796e-08 + syst_JES_EtaIntercalibration_Stat81: 1.99534510e-10 + syst_JES_EtaIntercalibration_Stat82: 2.90230955e-17 syst_JES_EtaIntercalibration_Stat83: 0.0 syst_JES_EtaIntercalibration_Stat84: 0.0 syst_JES_EtaIntercalibration_Stat85: 0.0 @@ -30689,118 +30689,118 @@ bins: syst_JES_EtaIntercalibration_Stat89: 0.0 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 5.947862473191525e-19 - syst_JES_EtaIntercalibration_Stat92: 1.561496661399889e-14 - syst_JES_EtaIntercalibration_Stat93: 6.627668608756777e-13 - syst_JES_EtaIntercalibration_Stat94: 1.9314874844095547e-07 - syst_JES_EtaIntercalibration_Stat95: 3.8821170770598867e-08 - syst_JES_EtaIntercalibration_Stat96: 2.245546926697369e-16 - syst_JES_EtaIntercalibration_Stat97: 1.932968701246867e-18 + syst_JES_EtaIntercalibration_Stat91: 5.94786247e-19 + syst_JES_EtaIntercalibration_Stat92: 1.56149666e-14 + syst_JES_EtaIntercalibration_Stat93: 6.62766861e-13 + syst_JES_EtaIntercalibration_Stat94: 1.93148748e-07 + syst_JES_EtaIntercalibration_Stat95: 3.88211708e-08 + syst_JES_EtaIntercalibration_Stat96: 2.24554693e-16 + syst_JES_EtaIntercalibration_Stat97: 1.93296870e-18 syst_JES_EtaIntercalibration_Stat98: 0.0 - syst_JES_EtaIntercalibration_Stat99: 1.0110836087225558e-11 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0014602219009451952 - syst_JES_Flavour_Comp: 0.004053193432344428 - syst_JES_Gjet_Generator: 0.005665818806668635 - syst_JES_Gjet_OOC: 0.00464457368872537 - syst_JES_Gjet_Purity: 0.0009434553659288817 - syst_JES_Gjet_Stat1: 9.980001086548036e-06 - syst_JES_Gjet_Stat10: 8.807436460173869e-05 - syst_JES_Gjet_Stat11: 0.00010570512511226689 - syst_JES_Gjet_Stat12: 0.00034265035750747437 - syst_JES_Gjet_Stat13: 0.0010839656636628303 - syst_JES_Gjet_Stat14: 0.0025468189472359435 - syst_JES_Gjet_Stat15: 0.0012957185303915351 - syst_JES_Gjet_Stat2: 1.480411323754314e-05 - syst_JES_Gjet_Stat3: 1.588727792921116e-05 - syst_JES_Gjet_Stat4: 1.565704846866101e-05 - syst_JES_Gjet_Stat5: 1.765193119746392e-05 - syst_JES_Gjet_Stat6: 3.900102653456701e-05 - syst_JES_Gjet_Stat7: 4.9416984934332047e-05 - syst_JES_Gjet_Stat8: 3.982889999736372e-05 - syst_JES_Gjet_Stat9: 6.215464805627976e-05 - syst_JES_Gjet_Veto: 0.004528063824638519 - syst_JES_Gjet_dPhi: 0.0004495624873140552 - syst_JES_LArESZee: 0.008695494695530555 - syst_JES_LArEsmear: 0.0006840500328923317 - syst_JES_LAr_JVT: 0.0008529248091127377 - syst_JES_MJB_Alpha: 4.343711086156629e-05 - syst_JES_MJB_Asym: 0.0006273805603459515 - syst_JES_MJB_Beta: 5.915207096966259e-05 - syst_JES_MJB_Stat1: 2.992117770075236e-07 - syst_JES_MJB_Stat10: 5.024721584326837e-05 - syst_JES_MJB_Stat11: 3.972752203133238e-05 - syst_JES_MJB_Stat12: 3.2135830014953716e-05 - syst_JES_MJB_Stat13: 1.8077402329980932e-05 - syst_JES_MJB_Stat14: 3.765834795566582e-05 - syst_JES_MJB_Stat15: 3.40224440627066e-05 - syst_JES_MJB_Stat16: 3.2366938872868407e-06 + syst_JES_EtaIntercalibration_Stat99: 1.01108361e-11 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.46022190e-03 + syst_JES_Flavour_Comp: 4.05319343e-03 + syst_JES_Gjet_Generator: 5.66581881e-03 + syst_JES_Gjet_OOC: 4.64457369e-03 + syst_JES_Gjet_Purity: 9.43455366e-04 + syst_JES_Gjet_Stat1: 9.98000109e-06 + syst_JES_Gjet_Stat10: 8.80743646e-05 + syst_JES_Gjet_Stat11: 1.05705125e-04 + syst_JES_Gjet_Stat12: 3.42650358e-04 + syst_JES_Gjet_Stat13: 1.08396566e-03 + syst_JES_Gjet_Stat14: 2.54681895e-03 + syst_JES_Gjet_Stat15: 1.29571853e-03 + syst_JES_Gjet_Stat2: 1.48041132e-05 + syst_JES_Gjet_Stat3: 1.58872779e-05 + syst_JES_Gjet_Stat4: 1.56570485e-05 + syst_JES_Gjet_Stat5: 1.76519312e-05 + syst_JES_Gjet_Stat6: 3.90010265e-05 + syst_JES_Gjet_Stat7: 4.94169849e-05 + syst_JES_Gjet_Stat8: 3.98289000e-05 + syst_JES_Gjet_Stat9: 6.21546481e-05 + syst_JES_Gjet_Veto: 4.52806382e-03 + syst_JES_Gjet_dPhi: 4.49562487e-04 + syst_JES_LArESZee: 8.69549470e-03 + syst_JES_LArEsmear: 6.84050033e-04 + syst_JES_LAr_JVT: 8.52924809e-04 + syst_JES_MJB_Alpha: 4.34371109e-05 + syst_JES_MJB_Asym: 6.27380560e-04 + syst_JES_MJB_Beta: 5.91520710e-05 + syst_JES_MJB_Stat1: 2.99211777e-07 + syst_JES_MJB_Stat10: 5.02472158e-05 + syst_JES_MJB_Stat11: 3.97275220e-05 + syst_JES_MJB_Stat12: 3.21358300e-05 + syst_JES_MJB_Stat13: 1.80774023e-05 + syst_JES_MJB_Stat14: 3.76583480e-05 + syst_JES_MJB_Stat15: 3.40224441e-05 + syst_JES_MJB_Stat16: 3.23669389e-06 syst_JES_MJB_Stat2: 0.0 - syst_JES_MJB_Stat3: 2.690740929558251e-05 - syst_JES_MJB_Stat4: 7.231312121600062e-06 - syst_JES_MJB_Stat5: 2.2698525833190136e-05 - syst_JES_MJB_Stat6: 3.7498262293071654e-05 - syst_JES_MJB_Stat7: 3.9257741593219546e-05 - syst_JES_MJB_Stat8: 4.814429015989331e-05 - syst_JES_MJB_Stat9: 4.560078508096105e-05 - syst_JES_MJB_Threshold: 0.0005028114557167529 - syst_JES_Pileup_MuOffset: 0.0010514030816009625 - syst_JES_Pileup_NPVOffset: 0.0010764011241168414 - syst_JES_Pileup_Pt_term: 0.0008500030117593703 - syst_JES_PunchThrough_MC15: 0.0005439761276931185 - syst_JES_SingleParticle_HighPt: 2.0983376158283016e-17 - syst_JES_Zjet_MC: 0.0024854929088613392 - syst_JES_Zjet_MuScale: 0.0001689436222531055 - syst_JES_Zjet_MuSmearID: 3.6502742184663334e-05 - syst_JES_Zjet_MuSmearMS: 0.0006913037031580259 - syst_JES_Zjet_OOC: 0.001295520400263925 - syst_JES_Zjet_Stat1: 7.350232836448108e-05 - syst_JES_Zjet_Stat10: 0.00010060423984604227 - syst_JES_Zjet_Stat11: 0.00013285007216783887 - syst_JES_Zjet_Stat12: 0.00041186229191320724 - syst_JES_Zjet_Stat13: 0.0007503839867028081 - syst_JES_Zjet_Stat2: 4.5613558017326383e-07 - syst_JES_Zjet_Stat3: 3.6553629241841365e-05 - syst_JES_Zjet_Stat4: 3.811948419115873e-05 - syst_JES_Zjet_Stat5: 4.525905102849595e-05 - syst_JES_Zjet_Stat6: 4.8029070363687035e-05 - syst_JES_Zjet_Stat7: 3.900679684362713e-05 - syst_JES_Zjet_Stat8: 4.908062423197162e-05 - syst_JES_Zjet_Stat9: 6.487269128839962e-05 - syst_JES_Zjet_Veto: 0.00028813505080083535 - syst_JES_Zjet_dPhi: 0.00024672713673205875 + syst_JES_MJB_Stat3: 2.69074093e-05 + syst_JES_MJB_Stat4: 7.23131212e-06 + syst_JES_MJB_Stat5: 2.26985258e-05 + syst_JES_MJB_Stat6: 3.74982623e-05 + syst_JES_MJB_Stat7: 3.92577416e-05 + syst_JES_MJB_Stat8: 4.81442902e-05 + syst_JES_MJB_Stat9: 4.56007851e-05 + syst_JES_MJB_Threshold: 5.02811456e-04 + syst_JES_Pileup_MuOffset: 1.05140308e-03 + syst_JES_Pileup_NPVOffset: 1.07640112e-03 + syst_JES_Pileup_Pt_term: 8.50003012e-04 + syst_JES_PunchThrough_MC15: 5.43976128e-04 + syst_JES_SingleParticle_HighPt: 2.09833762e-17 + syst_JES_Zjet_MC: 2.48549291e-03 + syst_JES_Zjet_MuScale: 1.68943622e-04 + syst_JES_Zjet_MuSmearID: 3.65027422e-05 + syst_JES_Zjet_MuSmearMS: 6.91303703e-04 + syst_JES_Zjet_OOC: 1.29552040e-03 + syst_JES_Zjet_Stat1: 7.35023284e-05 + syst_JES_Zjet_Stat10: 1.00604240e-04 + syst_JES_Zjet_Stat11: 1.32850072e-04 + syst_JES_Zjet_Stat12: 4.11862292e-04 + syst_JES_Zjet_Stat13: 7.50383987e-04 + syst_JES_Zjet_Stat2: 4.56135580e-07 + syst_JES_Zjet_Stat3: 3.65536292e-05 + syst_JES_Zjet_Stat4: 3.81194842e-05 + syst_JES_Zjet_Stat5: 4.52590510e-05 + syst_JES_Zjet_Stat6: 4.80290704e-05 + syst_JES_Zjet_Stat7: 3.90067968e-05 + syst_JES_Zjet_Stat8: 4.90806242e-05 + syst_JES_Zjet_Stat9: 6.48726913e-05 + syst_JES_Zjet_Veto: 2.88135051e-04 + syst_JES_Zjet_dPhi: 2.46727137e-04 syst_PRW: 0.0 - syst_Unfolding_bias: 0.0002497 - syst_cleaning: 0.0015016880501622168 + syst_Unfolding_bias: 2.49700000e-04 + syst_cleaning: 1.50168805e-03 syst_lumi: 0.00511 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0010076007381398645 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 0.000352125559992455 - syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 6.65917359737678e-05 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.00760074e-03 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 3.52125560e-04 + syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 6.65917360e-05 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 0.0007682567018907156 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0006688667785889802 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.001279564718957193 -- stat: 0.00097057 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 7.68256702e-04 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 6.68866779e-04 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.27956472e-03 +- stat: 9.70570000e-04 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.000982351946860187 - syst_JER_NP1: 0.0001380728021733462 - syst_JER_NP2: 0.000668049189805661 - syst_JER_NP3: 6.370441016915547e-05 - syst_JER_NP4: 3.6873152116411205e-12 - syst_JER_NP5: 9.263003962909386e-07 - syst_JER_NP6: 1.2818835623799847e-14 - syst_JER_NP7: 2.0055450007416937e-17 - syst_JER_NP8: 8.939752177773163e-05 - syst_JES_EtaIntercalibration_Modelling: 0.008044491453783763 + syst_JER_NP0: 9.82351947e-04 + syst_JER_NP1: 1.38072802e-04 + syst_JER_NP2: 6.68049190e-04 + syst_JER_NP3: 6.37044102e-05 + syst_JER_NP4: 3.68731521e-12 + syst_JER_NP5: 9.26300396e-07 + syst_JER_NP6: 1.28188356e-14 + syst_JER_NP7: 2.00554500e-17 + syst_JER_NP8: 8.93975218e-05 + syst_JES_EtaIntercalibration_Modelling: 8.04449145e-03 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 2.162347894003183e-12 - syst_JES_EtaIntercalibration_Stat101: 3.993953747394053e-08 - syst_JES_EtaIntercalibration_Stat102: 7.75965235497055e-12 - syst_JES_EtaIntercalibration_Stat103: 1.3074477274445811e-15 + syst_JES_EtaIntercalibration_Stat100: 2.16234789e-12 + syst_JES_EtaIntercalibration_Stat101: 3.99395375e-08 + syst_JES_EtaIntercalibration_Stat102: 7.75965235e-12 + syst_JES_EtaIntercalibration_Stat103: 1.30744773e-15 syst_JES_EtaIntercalibration_Stat104: 0.0 syst_JES_EtaIntercalibration_Stat105: 0.0 syst_JES_EtaIntercalibration_Stat106: 0.0 @@ -30809,170 +30809,170 @@ bins: syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 syst_JES_EtaIntercalibration_Stat110: 0.0 - syst_JES_EtaIntercalibration_Stat111: 6.580927043357949e-20 - syst_JES_EtaIntercalibration_Stat112: 2.757255648226149e-14 - syst_JES_EtaIntercalibration_Stat113: 3.2918591415034755e-07 - syst_JES_EtaIntercalibration_Stat114: 1.626582807606179e-07 - syst_JES_EtaIntercalibration_Stat115: 4.1734629505963024e-07 - syst_JES_EtaIntercalibration_Stat116: 2.307121315480798e-11 + syst_JES_EtaIntercalibration_Stat111: 6.58092704e-20 + syst_JES_EtaIntercalibration_Stat112: 2.75725565e-14 + syst_JES_EtaIntercalibration_Stat113: 3.29185914e-07 + syst_JES_EtaIntercalibration_Stat114: 1.62658281e-07 + syst_JES_EtaIntercalibration_Stat115: 4.17346295e-07 + syst_JES_EtaIntercalibration_Stat116: 2.30712132e-11 syst_JES_EtaIntercalibration_Stat117: 0.0 syst_JES_EtaIntercalibration_Stat118: 0.0 - syst_JES_EtaIntercalibration_Stat119: 2.306225538728136e-11 + syst_JES_EtaIntercalibration_Stat119: 2.30622554e-11 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 4.420696450390398e-07 - syst_JES_EtaIntercalibration_Stat121: 4.846361418631508e-07 - syst_JES_EtaIntercalibration_Stat122: 4.702528138643684e-07 - syst_JES_EtaIntercalibration_Stat123: 3.1781122397265956e-11 + syst_JES_EtaIntercalibration_Stat120: 4.42069645e-07 + syst_JES_EtaIntercalibration_Stat121: 4.84636142e-07 + syst_JES_EtaIntercalibration_Stat122: 4.70252814e-07 + syst_JES_EtaIntercalibration_Stat123: 3.17811224e-11 syst_JES_EtaIntercalibration_Stat124: 0.0 syst_JES_EtaIntercalibration_Stat125: 0.0 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 syst_JES_EtaIntercalibration_Stat128: 0.0 syst_JES_EtaIntercalibration_Stat129: 0.0 - syst_JES_EtaIntercalibration_Stat13: 2.3105558103934882e-11 + syst_JES_EtaIntercalibration_Stat13: 2.31055581e-11 syst_JES_EtaIntercalibration_Stat130: 0.0 - syst_JES_EtaIntercalibration_Stat131: 2.8079124683650664e-13 - syst_JES_EtaIntercalibration_Stat132: 1.3702328535875755e-07 - syst_JES_EtaIntercalibration_Stat133: 3.0063620053978864e-07 - syst_JES_EtaIntercalibration_Stat134: 5.85732675800147e-07 - syst_JES_EtaIntercalibration_Stat135: 3.0620625158869632e-09 + syst_JES_EtaIntercalibration_Stat131: 2.80791247e-13 + syst_JES_EtaIntercalibration_Stat132: 1.37023285e-07 + syst_JES_EtaIntercalibration_Stat133: 3.00636201e-07 + syst_JES_EtaIntercalibration_Stat134: 5.85732676e-07 + syst_JES_EtaIntercalibration_Stat135: 3.06206252e-09 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 - syst_JES_EtaIntercalibration_Stat138: 2.1519352585569926e-11 - syst_JES_EtaIntercalibration_Stat139: 4.5910251913379876e-07 - syst_JES_EtaIntercalibration_Stat14: 1.326572828758376e-18 - syst_JES_EtaIntercalibration_Stat140: 1.037076066400146e-08 - syst_JES_EtaIntercalibration_Stat141: 2.189352294629624e-07 - syst_JES_EtaIntercalibration_Stat142: 1.9095518848372576e-08 + syst_JES_EtaIntercalibration_Stat138: 2.15193526e-11 + syst_JES_EtaIntercalibration_Stat139: 4.59102519e-07 + syst_JES_EtaIntercalibration_Stat14: 1.32657283e-18 + syst_JES_EtaIntercalibration_Stat140: 1.03707607e-08 + syst_JES_EtaIntercalibration_Stat141: 2.18935229e-07 + syst_JES_EtaIntercalibration_Stat142: 1.90955188e-08 syst_JES_EtaIntercalibration_Stat143: 0.0 syst_JES_EtaIntercalibration_Stat144: 0.0 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 syst_JES_EtaIntercalibration_Stat147: 0.0 syst_JES_EtaIntercalibration_Stat148: 0.0 - syst_JES_EtaIntercalibration_Stat149: 1.0581774821040184e-09 - syst_JES_EtaIntercalibration_Stat15: 1.2482318785077554e-18 - syst_JES_EtaIntercalibration_Stat150: 1.3830425698437486e-07 - syst_JES_EtaIntercalibration_Stat151: 6.43764300093598e-07 - syst_JES_EtaIntercalibration_Stat152: 4.5283654344034557e-07 - syst_JES_EtaIntercalibration_Stat153: 3.5735296581496283e-09 + syst_JES_EtaIntercalibration_Stat149: 1.05817748e-09 + syst_JES_EtaIntercalibration_Stat15: 1.24823188e-18 + syst_JES_EtaIntercalibration_Stat150: 1.38304257e-07 + syst_JES_EtaIntercalibration_Stat151: 6.43764300e-07 + syst_JES_EtaIntercalibration_Stat152: 4.52836543e-07 + syst_JES_EtaIntercalibration_Stat153: 3.57352966e-09 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 1.807395013246753e-12 - syst_JES_EtaIntercalibration_Stat157: 8.848638313322566e-07 - syst_JES_EtaIntercalibration_Stat158: 1.8545726407989522e-06 - syst_JES_EtaIntercalibration_Stat159: 4.5398205118704856e-07 + syst_JES_EtaIntercalibration_Stat156: 1.80739501e-12 + syst_JES_EtaIntercalibration_Stat157: 8.84863831e-07 + syst_JES_EtaIntercalibration_Stat158: 1.85457264e-06 + syst_JES_EtaIntercalibration_Stat159: 4.53982051e-07 syst_JES_EtaIntercalibration_Stat16: 0.0 - syst_JES_EtaIntercalibration_Stat160: 8.496086385507153e-12 + syst_JES_EtaIntercalibration_Stat160: 8.49608639e-12 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 - syst_JES_EtaIntercalibration_Stat167: 3.15045578726317e-07 - syst_JES_EtaIntercalibration_Stat168: 9.437318316131972e-07 - syst_JES_EtaIntercalibration_Stat169: 2.4123160551635846e-06 + syst_JES_EtaIntercalibration_Stat167: 3.15045579e-07 + syst_JES_EtaIntercalibration_Stat168: 9.43731832e-07 + syst_JES_EtaIntercalibration_Stat169: 2.41231606e-06 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 2.3763739183891077e-06 - syst_JES_EtaIntercalibration_Stat171: 2.6696033356427693e-07 + syst_JES_EtaIntercalibration_Stat170: 2.37637392e-06 + syst_JES_EtaIntercalibration_Stat171: 2.66960334e-07 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 - syst_JES_EtaIntercalibration_Stat174: 2.999915817612097e-12 - syst_JES_EtaIntercalibration_Stat175: 9.334755955567343e-07 - syst_JES_EtaIntercalibration_Stat176: 2.296411766212671e-06 - syst_JES_EtaIntercalibration_Stat177: 1.225428994270986e-06 - syst_JES_EtaIntercalibration_Stat178: 2.1579260297795194e-07 + syst_JES_EtaIntercalibration_Stat174: 2.99991582e-12 + syst_JES_EtaIntercalibration_Stat175: 9.33475596e-07 + syst_JES_EtaIntercalibration_Stat176: 2.29641177e-06 + syst_JES_EtaIntercalibration_Stat177: 1.22542899e-06 + syst_JES_EtaIntercalibration_Stat178: 2.15792603e-07 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 syst_JES_EtaIntercalibration_Stat180: 0.0 syst_JES_EtaIntercalibration_Stat181: 0.0 syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 - syst_JES_EtaIntercalibration_Stat184: 5.083515196200361e-07 - syst_JES_EtaIntercalibration_Stat185: 4.161342451661483e-06 - syst_JES_EtaIntercalibration_Stat186: 1.761429249217805e-05 - syst_JES_EtaIntercalibration_Stat187: 1.2673779665119638e-05 - syst_JES_EtaIntercalibration_Stat188: 6.420650434340745e-07 + syst_JES_EtaIntercalibration_Stat184: 5.08351520e-07 + syst_JES_EtaIntercalibration_Stat185: 4.16134245e-06 + syst_JES_EtaIntercalibration_Stat186: 1.76142925e-05 + syst_JES_EtaIntercalibration_Stat187: 1.26737797e-05 + syst_JES_EtaIntercalibration_Stat188: 6.42065043e-07 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 - syst_JES_EtaIntercalibration_Stat191: 6.851965518739861e-07 - syst_JES_EtaIntercalibration_Stat192: 1.608204278069176e-05 - syst_JES_EtaIntercalibration_Stat193: 2.0455538980921526e-05 - syst_JES_EtaIntercalibration_Stat194: 5.6805774988111905e-06 - syst_JES_EtaIntercalibration_Stat195: 2.7258226038207254e-07 - syst_JES_EtaIntercalibration_Stat196: 3.1941771083762716e-11 + syst_JES_EtaIntercalibration_Stat191: 6.85196552e-07 + syst_JES_EtaIntercalibration_Stat192: 1.60820428e-05 + syst_JES_EtaIntercalibration_Stat193: 2.04555390e-05 + syst_JES_EtaIntercalibration_Stat194: 5.68057750e-06 + syst_JES_EtaIntercalibration_Stat195: 2.72582260e-07 + syst_JES_EtaIntercalibration_Stat196: 3.19417711e-11 syst_JES_EtaIntercalibration_Stat197: 0.0 syst_JES_EtaIntercalibration_Stat198: 0.0 - syst_JES_EtaIntercalibration_Stat199: 2.0327590628256956e-07 + syst_JES_EtaIntercalibration_Stat199: 2.03275906e-07 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 1.0584870712483926e-05 - syst_JES_EtaIntercalibration_Stat201: 3.594109473499659e-05 - syst_JES_EtaIntercalibration_Stat202: 2.6101089536645784e-05 - syst_JES_EtaIntercalibration_Stat203: 3.643022920597673e-07 + syst_JES_EtaIntercalibration_Stat200: 1.05848707e-05 + syst_JES_EtaIntercalibration_Stat201: 3.59410947e-05 + syst_JES_EtaIntercalibration_Stat202: 2.61010895e-05 + syst_JES_EtaIntercalibration_Stat203: 3.64302292e-07 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 - syst_JES_EtaIntercalibration_Stat206: 5.388689335079543e-07 - syst_JES_EtaIntercalibration_Stat207: 2.8189336192964886e-05 - syst_JES_EtaIntercalibration_Stat208: 5.091167916107266e-05 - syst_JES_EtaIntercalibration_Stat209: 1.1510387254562723e-05 + syst_JES_EtaIntercalibration_Stat206: 5.38868934e-07 + syst_JES_EtaIntercalibration_Stat207: 2.81893362e-05 + syst_JES_EtaIntercalibration_Stat208: 5.09116792e-05 + syst_JES_EtaIntercalibration_Stat209: 1.15103873e-05 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 7.357588378674088e-07 - syst_JES_EtaIntercalibration_Stat211: 3.371694318095133e-11 - syst_JES_EtaIntercalibration_Stat212: 3.855037062078651e-07 - syst_JES_EtaIntercalibration_Stat213: 1.195903921726156e-05 - syst_JES_EtaIntercalibration_Stat214: 3.448778744715294e-05 - syst_JES_EtaIntercalibration_Stat215: 2.6762522302653014e-05 - syst_JES_EtaIntercalibration_Stat216: 3.9813971165911096e-07 + syst_JES_EtaIntercalibration_Stat210: 7.35758838e-07 + syst_JES_EtaIntercalibration_Stat211: 3.37169432e-11 + syst_JES_EtaIntercalibration_Stat212: 3.85503706e-07 + syst_JES_EtaIntercalibration_Stat213: 1.19590392e-05 + syst_JES_EtaIntercalibration_Stat214: 3.44877874e-05 + syst_JES_EtaIntercalibration_Stat215: 2.67625223e-05 + syst_JES_EtaIntercalibration_Stat216: 3.98139712e-07 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 - syst_JES_EtaIntercalibration_Stat219: 4.6593336634651956e-07 + syst_JES_EtaIntercalibration_Stat219: 4.65933366e-07 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 3.681112196062489e-05 - syst_JES_EtaIntercalibration_Stat221: 4.4140574395900195e-05 - syst_JES_EtaIntercalibration_Stat222: 1.167881299619101e-05 - syst_JES_EtaIntercalibration_Stat223: 4.865330718460976e-07 - syst_JES_EtaIntercalibration_Stat224: 1.5372824069065254e-06 - syst_JES_EtaIntercalibration_Stat225: 3.722739852245924e-05 - syst_JES_EtaIntercalibration_Stat226: 0.00010696296976056715 - syst_JES_EtaIntercalibration_Stat227: 7.971943552233671e-05 - syst_JES_EtaIntercalibration_Stat228: 2.231384341613968e-06 + syst_JES_EtaIntercalibration_Stat220: 3.68111220e-05 + syst_JES_EtaIntercalibration_Stat221: 4.41405744e-05 + syst_JES_EtaIntercalibration_Stat222: 1.16788130e-05 + syst_JES_EtaIntercalibration_Stat223: 4.86533072e-07 + syst_JES_EtaIntercalibration_Stat224: 1.53728241e-06 + syst_JES_EtaIntercalibration_Stat225: 3.72273985e-05 + syst_JES_EtaIntercalibration_Stat226: 1.06962970e-04 + syst_JES_EtaIntercalibration_Stat227: 7.97194355e-05 + syst_JES_EtaIntercalibration_Stat228: 2.23138434e-06 syst_JES_EtaIntercalibration_Stat229: 0.0 syst_JES_EtaIntercalibration_Stat23: 0.0 syst_JES_EtaIntercalibration_Stat230: 0.0 - syst_JES_EtaIntercalibration_Stat231: 9.036109063087016e-07 - syst_JES_EtaIntercalibration_Stat232: 8.98154445237566e-05 - syst_JES_EtaIntercalibration_Stat233: 0.00011413287289383371 - syst_JES_EtaIntercalibration_Stat234: 3.6056648041658e-05 - syst_JES_EtaIntercalibration_Stat235: 1.7189074633324505e-06 - syst_JES_EtaIntercalibration_Stat236: 6.909953020824382e-06 - syst_JES_EtaIntercalibration_Stat237: 2.3257390223324714e-05 - syst_JES_EtaIntercalibration_Stat238: 1.4052441736225058e-05 - syst_JES_EtaIntercalibration_Stat239: 1.9831654167012897e-07 + syst_JES_EtaIntercalibration_Stat231: 9.03610906e-07 + syst_JES_EtaIntercalibration_Stat232: 8.98154445e-05 + syst_JES_EtaIntercalibration_Stat233: 1.14132873e-04 + syst_JES_EtaIntercalibration_Stat234: 3.60566480e-05 + syst_JES_EtaIntercalibration_Stat235: 1.71890746e-06 + syst_JES_EtaIntercalibration_Stat236: 6.90995302e-06 + syst_JES_EtaIntercalibration_Stat237: 2.32573902e-05 + syst_JES_EtaIntercalibration_Stat238: 1.40524417e-05 + syst_JES_EtaIntercalibration_Stat239: 1.98316542e-07 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 - syst_JES_EtaIntercalibration_Stat242: 6.407720697307273e-08 - syst_JES_EtaIntercalibration_Stat243: 1.4451009203512397e-05 - syst_JES_EtaIntercalibration_Stat244: 2.1547617037621585e-05 - syst_JES_EtaIntercalibration_Stat245: 7.394737368561509e-06 + syst_JES_EtaIntercalibration_Stat242: 6.40772070e-08 + syst_JES_EtaIntercalibration_Stat243: 1.44510092e-05 + syst_JES_EtaIntercalibration_Stat244: 2.15476170e-05 + syst_JES_EtaIntercalibration_Stat245: 7.39473737e-06 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 - syst_JES_EtaIntercalibration_Stat27: 3.3339585885250586e-19 - syst_JES_EtaIntercalibration_Stat28: 2.8702834587968276e-14 - syst_JES_EtaIntercalibration_Stat29: 1.0161942107457533e-08 + syst_JES_EtaIntercalibration_Stat27: 3.33395859e-19 + syst_JES_EtaIntercalibration_Stat28: 2.87028346e-14 + syst_JES_EtaIntercalibration_Stat29: 1.01619421e-08 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 1.016800431069321e-08 - syst_JES_EtaIntercalibration_Stat31: 6.265693796380413e-20 + syst_JES_EtaIntercalibration_Stat30: 1.01680043e-08 + syst_JES_EtaIntercalibration_Stat31: 6.26569380e-20 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 - syst_JES_EtaIntercalibration_Stat34: 8.385723984844719e-21 - syst_JES_EtaIntercalibration_Stat35: 2.3088277367921456e-11 - syst_JES_EtaIntercalibration_Stat36: 2.310573326391432e-11 - syst_JES_EtaIntercalibration_Stat37: 3.6304748147177667e-16 - syst_JES_EtaIntercalibration_Stat38: 4.587706507613582e-19 + syst_JES_EtaIntercalibration_Stat34: 8.38572398e-21 + syst_JES_EtaIntercalibration_Stat35: 2.30882774e-11 + syst_JES_EtaIntercalibration_Stat36: 2.31057333e-11 + syst_JES_EtaIntercalibration_Stat37: 3.63047481e-16 + syst_JES_EtaIntercalibration_Stat38: 4.58770651e-19 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 syst_JES_EtaIntercalibration_Stat40: 0.0 @@ -30983,21 +30983,21 @@ bins: syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 syst_JES_EtaIntercalibration_Stat47: 0.0 - syst_JES_EtaIntercalibration_Stat48: 1.8862033294425074e-19 - syst_JES_EtaIntercalibration_Stat49: 1.3459053412108891e-18 - syst_JES_EtaIntercalibration_Stat5: 1.6341899369412357e-19 - syst_JES_EtaIntercalibration_Stat50: 2.958658398666531e-14 - syst_JES_EtaIntercalibration_Stat51: 1.0075362575454169e-08 - syst_JES_EtaIntercalibration_Stat52: 1.0119506964782272e-08 - syst_JES_EtaIntercalibration_Stat53: 5.873011727384851e-19 - syst_JES_EtaIntercalibration_Stat54: 3.6970624487557687e-19 + syst_JES_EtaIntercalibration_Stat48: 1.88620333e-19 + syst_JES_EtaIntercalibration_Stat49: 1.34590534e-18 + syst_JES_EtaIntercalibration_Stat5: 1.63418994e-19 + syst_JES_EtaIntercalibration_Stat50: 2.95865840e-14 + syst_JES_EtaIntercalibration_Stat51: 1.00753626e-08 + syst_JES_EtaIntercalibration_Stat52: 1.01195070e-08 + syst_JES_EtaIntercalibration_Stat53: 5.87301173e-19 + syst_JES_EtaIntercalibration_Stat54: 3.69706245e-19 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 4.087339324059112e-20 - syst_JES_EtaIntercalibration_Stat57: 2.276881003326438e-11 - syst_JES_EtaIntercalibration_Stat58: 2.3011805434548602e-11 - syst_JES_EtaIntercalibration_Stat59: 8.459668255906966e-16 - syst_JES_EtaIntercalibration_Stat6: 3.702180583115848e-19 - syst_JES_EtaIntercalibration_Stat60: 4.977248537093561e-18 + syst_JES_EtaIntercalibration_Stat56: 4.08733932e-20 + syst_JES_EtaIntercalibration_Stat57: 2.27688100e-11 + syst_JES_EtaIntercalibration_Stat58: 2.30118054e-11 + syst_JES_EtaIntercalibration_Stat59: 8.45966826e-16 + syst_JES_EtaIntercalibration_Stat6: 3.70218058e-19 + syst_JES_EtaIntercalibration_Stat60: 4.97724854e-18 syst_JES_EtaIntercalibration_Stat61: 0.0 syst_JES_EtaIntercalibration_Stat62: 0.0 syst_JES_EtaIntercalibration_Stat63: 0.0 @@ -31007,21 +31007,21 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 3.324150530586724e-18 - syst_JES_EtaIntercalibration_Stat70: 1.6341899369412357e-19 - syst_JES_EtaIntercalibration_Stat71: 6.991753052704307e-18 - syst_JES_EtaIntercalibration_Stat72: 7.30478930223179e-14 - syst_JES_EtaIntercalibration_Stat73: 7.718434444238027e-08 - syst_JES_EtaIntercalibration_Stat74: 1.1682360549135604e-08 - syst_JES_EtaIntercalibration_Stat75: 1.6538362917773936e-17 - syst_JES_EtaIntercalibration_Stat76: 3.6970624487557687e-19 + syst_JES_EtaIntercalibration_Stat7: 3.32415053e-18 + syst_JES_EtaIntercalibration_Stat70: 1.63418994e-19 + syst_JES_EtaIntercalibration_Stat71: 6.99175305e-18 + syst_JES_EtaIntercalibration_Stat72: 7.30478930e-14 + syst_JES_EtaIntercalibration_Stat73: 7.71843444e-08 + syst_JES_EtaIntercalibration_Stat74: 1.16823605e-08 + syst_JES_EtaIntercalibration_Stat75: 1.65383629e-17 + syst_JES_EtaIntercalibration_Stat76: 3.69706245e-19 syst_JES_EtaIntercalibration_Stat77: 0.0 - syst_JES_EtaIntercalibration_Stat78: 6.926052122241068e-18 - syst_JES_EtaIntercalibration_Stat79: 2.148855350652716e-11 - syst_JES_EtaIntercalibration_Stat8: 5.22380091504261e-19 - syst_JES_EtaIntercalibration_Stat80: 1.6376639057102662e-08 - syst_JES_EtaIntercalibration_Stat81: 3.1952949514752156e-11 - syst_JES_EtaIntercalibration_Stat82: 5.704078102550841e-18 + syst_JES_EtaIntercalibration_Stat78: 6.92605212e-18 + syst_JES_EtaIntercalibration_Stat79: 2.14885535e-11 + syst_JES_EtaIntercalibration_Stat8: 5.22380092e-19 + syst_JES_EtaIntercalibration_Stat80: 1.63766391e-08 + syst_JES_EtaIntercalibration_Stat81: 3.19529495e-11 + syst_JES_EtaIntercalibration_Stat82: 5.70407810e-18 syst_JES_EtaIntercalibration_Stat83: 0.0 syst_JES_EtaIntercalibration_Stat84: 0.0 syst_JES_EtaIntercalibration_Stat85: 0.0 @@ -31031,118 +31031,118 @@ bins: syst_JES_EtaIntercalibration_Stat89: 0.0 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 1.4020951287270061e-19 - syst_JES_EtaIntercalibration_Stat92: 2.3694877513241123e-15 - syst_JES_EtaIntercalibration_Stat93: 9.990273545804439e-14 - syst_JES_EtaIntercalibration_Stat94: 7.757777611971098e-08 - syst_JES_EtaIntercalibration_Stat95: 1.1957111388207437e-08 - syst_JES_EtaIntercalibration_Stat96: 4.179389787995372e-17 - syst_JES_EtaIntercalibration_Stat97: 3.6970624487557687e-19 + syst_JES_EtaIntercalibration_Stat91: 1.40209513e-19 + syst_JES_EtaIntercalibration_Stat92: 2.36948775e-15 + syst_JES_EtaIntercalibration_Stat93: 9.99027355e-14 + syst_JES_EtaIntercalibration_Stat94: 7.75777761e-08 + syst_JES_EtaIntercalibration_Stat95: 1.19571114e-08 + syst_JES_EtaIntercalibration_Stat96: 4.17938979e-17 + syst_JES_EtaIntercalibration_Stat97: 3.69706245e-19 syst_JES_EtaIntercalibration_Stat98: 0.0 - syst_JES_EtaIntercalibration_Stat99: 1.5692359711051149e-12 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.001006702740385661 - syst_JES_Flavour_Comp: 0.002683149082701146 - syst_JES_Gjet_Generator: 0.0036902951101504067 - syst_JES_Gjet_OOC: 0.003039055609889362 - syst_JES_Gjet_Purity: 0.0005813020041252224 - syst_JES_Gjet_Stat1: 6.239579052307936e-06 - syst_JES_Gjet_Stat10: 5.938081508366149e-05 - syst_JES_Gjet_Stat11: 6.640531661696977e-05 - syst_JES_Gjet_Stat12: 0.00020993205448430213 - syst_JES_Gjet_Stat13: 0.0006627472425442448 - syst_JES_Gjet_Stat14: 0.00168977357950703 - syst_JES_Gjet_Stat15: 0.0012252952980812421 - syst_JES_Gjet_Stat2: 9.540110062258192e-06 - syst_JES_Gjet_Stat3: 1.031198967222136e-05 - syst_JES_Gjet_Stat4: 1.1891049606742039e-05 - syst_JES_Gjet_Stat5: 1.2960232328164493e-05 - syst_JES_Gjet_Stat6: 2.767669236017917e-05 - syst_JES_Gjet_Stat7: 3.349256148759005e-05 - syst_JES_Gjet_Stat8: 2.6908022967137514e-05 - syst_JES_Gjet_Stat9: 4.0115920468063544e-05 - syst_JES_Gjet_Veto: 0.0030065519702809065 - syst_JES_Gjet_dPhi: 0.00030027338793173127 - syst_JES_LArESZee: 0.005658580807057544 - syst_JES_LArEsmear: 0.00045566997926130704 - syst_JES_LAr_JVT: 0.0005625604500851442 - syst_JES_MJB_Alpha: 2.9527957514870547e-05 - syst_JES_MJB_Asym: 0.0004847129872409032 - syst_JES_MJB_Beta: 4.018505692418514e-05 - syst_JES_MJB_Stat1: 1.5190085582379054e-06 - syst_JES_MJB_Stat10: 4.5285928001974294e-05 - syst_JES_MJB_Stat11: 4.262052791789421e-05 - syst_JES_MJB_Stat12: 4.251114089271188e-05 - syst_JES_MJB_Stat13: 4.739615464359952e-06 - syst_JES_MJB_Stat14: 2.3616233294071265e-05 - syst_JES_MJB_Stat15: 2.9106378596452015e-05 - syst_JES_MJB_Stat16: 9.33117467149769e-06 + syst_JES_EtaIntercalibration_Stat99: 1.56923597e-12 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.00670274e-03 + syst_JES_Flavour_Comp: 2.68314908e-03 + syst_JES_Gjet_Generator: 3.69029511e-03 + syst_JES_Gjet_OOC: 3.03905561e-03 + syst_JES_Gjet_Purity: 5.81302004e-04 + syst_JES_Gjet_Stat1: 6.23957905e-06 + syst_JES_Gjet_Stat10: 5.93808151e-05 + syst_JES_Gjet_Stat11: 6.64053166e-05 + syst_JES_Gjet_Stat12: 2.09932054e-04 + syst_JES_Gjet_Stat13: 6.62747243e-04 + syst_JES_Gjet_Stat14: 1.68977358e-03 + syst_JES_Gjet_Stat15: 1.22529530e-03 + syst_JES_Gjet_Stat2: 9.54011006e-06 + syst_JES_Gjet_Stat3: 1.03119897e-05 + syst_JES_Gjet_Stat4: 1.18910496e-05 + syst_JES_Gjet_Stat5: 1.29602323e-05 + syst_JES_Gjet_Stat6: 2.76766924e-05 + syst_JES_Gjet_Stat7: 3.34925615e-05 + syst_JES_Gjet_Stat8: 2.69080230e-05 + syst_JES_Gjet_Stat9: 4.01159205e-05 + syst_JES_Gjet_Veto: 3.00655197e-03 + syst_JES_Gjet_dPhi: 3.00273388e-04 + syst_JES_LArESZee: 5.65858081e-03 + syst_JES_LArEsmear: 4.55669979e-04 + syst_JES_LAr_JVT: 5.62560450e-04 + syst_JES_MJB_Alpha: 2.95279575e-05 + syst_JES_MJB_Asym: 4.84712987e-04 + syst_JES_MJB_Beta: 4.01850569e-05 + syst_JES_MJB_Stat1: 1.51900856e-06 + syst_JES_MJB_Stat10: 4.52859280e-05 + syst_JES_MJB_Stat11: 4.26205279e-05 + syst_JES_MJB_Stat12: 4.25111409e-05 + syst_JES_MJB_Stat13: 4.73961546e-06 + syst_JES_MJB_Stat14: 2.36162333e-05 + syst_JES_MJB_Stat15: 2.91063786e-05 + syst_JES_MJB_Stat16: 9.33117467e-06 syst_JES_MJB_Stat2: 0.0 - syst_JES_MJB_Stat3: 1.0766427819848141e-05 - syst_JES_MJB_Stat4: 3.281370254939238e-06 - syst_JES_MJB_Stat5: 9.941105610041571e-06 - syst_JES_MJB_Stat6: 2.0528655581893324e-05 - syst_JES_MJB_Stat7: 2.5419682826502773e-05 - syst_JES_MJB_Stat8: 3.2988756796823976e-05 - syst_JES_MJB_Stat9: 3.422706933115951e-05 - syst_JES_MJB_Threshold: 0.0003520618695627233 - syst_JES_Pileup_MuOffset: 0.0007033946402980335 - syst_JES_Pileup_NPVOffset: 0.00072152364306376 - syst_JES_Pileup_Pt_term: 0.0005275128150102138 - syst_JES_PunchThrough_MC15: 0.0004527161030933183 - syst_JES_SingleParticle_HighPt: 5.661146438664169e-15 - syst_JES_Zjet_MC: 0.0015305123325213687 - syst_JES_Zjet_MuScale: 0.00011252332558185436 - syst_JES_Zjet_MuSmearID: 2.3496201288718993e-05 - syst_JES_Zjet_MuSmearMS: 0.00042426491723921746 - syst_JES_Zjet_OOC: 0.0008282195647894343 - syst_JES_Zjet_Stat1: 5.3293544637226e-05 - syst_JES_Zjet_Stat10: 6.86518411989074e-05 - syst_JES_Zjet_Stat11: 8.81629502682391e-05 - syst_JES_Zjet_Stat12: 0.00026313420530216133 - syst_JES_Zjet_Stat13: 0.0004570730877004246 - syst_JES_Zjet_Stat2: 2.884730620005965e-07 - syst_JES_Zjet_Stat3: 2.683187656501125e-05 - syst_JES_Zjet_Stat4: 2.7485037293043645e-05 - syst_JES_Zjet_Stat5: 3.225838495647295e-05 - syst_JES_Zjet_Stat6: 3.1458154348276696e-05 - syst_JES_Zjet_Stat7: 2.801973010219763e-05 - syst_JES_Zjet_Stat8: 3.2759832111901914e-05 - syst_JES_Zjet_Stat9: 4.3550902114652e-05 - syst_JES_Zjet_Veto: 0.00018540264291535868 - syst_JES_Zjet_dPhi: 0.00016250221536951427 + syst_JES_MJB_Stat3: 1.07664278e-05 + syst_JES_MJB_Stat4: 3.28137025e-06 + syst_JES_MJB_Stat5: 9.94110561e-06 + syst_JES_MJB_Stat6: 2.05286556e-05 + syst_JES_MJB_Stat7: 2.54196828e-05 + syst_JES_MJB_Stat8: 3.29887568e-05 + syst_JES_MJB_Stat9: 3.42270693e-05 + syst_JES_MJB_Threshold: 3.52061870e-04 + syst_JES_Pileup_MuOffset: 7.03394640e-04 + syst_JES_Pileup_NPVOffset: 7.21523643e-04 + syst_JES_Pileup_Pt_term: 5.27512815e-04 + syst_JES_PunchThrough_MC15: 4.52716103e-04 + syst_JES_SingleParticle_HighPt: 5.66114644e-15 + syst_JES_Zjet_MC: 1.53051233e-03 + syst_JES_Zjet_MuScale: 1.12523326e-04 + syst_JES_Zjet_MuSmearID: 2.34962013e-05 + syst_JES_Zjet_MuSmearMS: 4.24264917e-04 + syst_JES_Zjet_OOC: 8.28219565e-04 + syst_JES_Zjet_Stat1: 5.32935446e-05 + syst_JES_Zjet_Stat10: 6.86518412e-05 + syst_JES_Zjet_Stat11: 8.81629503e-05 + syst_JES_Zjet_Stat12: 2.63134205e-04 + syst_JES_Zjet_Stat13: 4.57073088e-04 + syst_JES_Zjet_Stat2: 2.88473062e-07 + syst_JES_Zjet_Stat3: 2.68318766e-05 + syst_JES_Zjet_Stat4: 2.74850373e-05 + syst_JES_Zjet_Stat5: 3.22583850e-05 + syst_JES_Zjet_Stat6: 3.14581543e-05 + syst_JES_Zjet_Stat7: 2.80197301e-05 + syst_JES_Zjet_Stat8: 3.27598321e-05 + syst_JES_Zjet_Stat9: 4.35509021e-05 + syst_JES_Zjet_Veto: 1.85402643e-04 + syst_JES_Zjet_dPhi: 1.62502215e-04 syst_PRW: 0.0 - syst_Unfolding_bias: 0.0001579 - syst_cleaning: 0.0009639728769524586 + syst_Unfolding_bias: 1.57900000e-04 + syst_cleaning: 9.63972877e-04 syst_lumi: 0.003231 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.000633503575364812 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 0.0001565010223608779 - syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 3.927618759503015e-05 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 6.33503575e-04 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 1.56501022e-04 + syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 3.92761876e-05 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 0.0003414526431293218 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.000402899069619179 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0008317351020607464 -- stat: 0.0007866 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 3.41452643e-04 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 4.02899070e-04 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 8.31735102e-04 +- stat: 7.86600000e-04 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.0006151057043305646 - syst_JER_NP1: 9.723802998312954e-05 - syst_JER_NP2: 0.0004204683816888019 - syst_JER_NP3: 4.023950391095794e-05 - syst_JER_NP4: 6.308688829701462e-13 - syst_JER_NP5: 1.74960253366779e-07 - syst_JER_NP6: 2.601080160241126e-15 - syst_JER_NP7: 5.36563088089369e-18 - syst_JER_NP8: 5.303965497625338e-05 - syst_JES_EtaIntercalibration_Modelling: 0.005298393247013664 + syst_JER_NP0: 6.15105704e-04 + syst_JER_NP1: 9.72380300e-05 + syst_JER_NP2: 4.20468382e-04 + syst_JER_NP3: 4.02395039e-05 + syst_JER_NP4: 6.30868883e-13 + syst_JER_NP5: 1.74960253e-07 + syst_JER_NP6: 2.60108016e-15 + syst_JER_NP7: 5.36563088e-18 + syst_JER_NP8: 5.30396550e-05 + syst_JES_EtaIntercalibration_Modelling: 5.29839325e-03 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 3.3423950933424966e-13 - syst_JES_EtaIntercalibration_Stat101: 9.59828475789685e-09 - syst_JES_EtaIntercalibration_Stat102: 1.216848309856245e-12 - syst_JES_EtaIntercalibration_Stat103: 2.4753346501028903e-16 + syst_JES_EtaIntercalibration_Stat100: 3.34239509e-13 + syst_JES_EtaIntercalibration_Stat101: 9.59828476e-09 + syst_JES_EtaIntercalibration_Stat102: 1.21684831e-12 + syst_JES_EtaIntercalibration_Stat103: 2.47533465e-16 syst_JES_EtaIntercalibration_Stat104: 0.0 syst_JES_EtaIntercalibration_Stat105: 0.0 syst_JES_EtaIntercalibration_Stat106: 0.0 @@ -31151,170 +31151,170 @@ bins: syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 syst_JES_EtaIntercalibration_Stat110: 0.0 - syst_JES_EtaIntercalibration_Stat111: 1.721658502723464e-20 - syst_JES_EtaIntercalibration_Stat112: 4.648043176165644e-15 - syst_JES_EtaIntercalibration_Stat113: 2.2830438015947042e-07 - syst_JES_EtaIntercalibration_Stat114: 3.313836447382399e-08 - syst_JES_EtaIntercalibration_Stat115: 1.370536685937301e-07 - syst_JES_EtaIntercalibration_Stat116: 3.62869915699925e-12 + syst_JES_EtaIntercalibration_Stat111: 1.72165850e-20 + syst_JES_EtaIntercalibration_Stat112: 4.64804318e-15 + syst_JES_EtaIntercalibration_Stat113: 2.28304380e-07 + syst_JES_EtaIntercalibration_Stat114: 3.31383645e-08 + syst_JES_EtaIntercalibration_Stat115: 1.37053669e-07 + syst_JES_EtaIntercalibration_Stat116: 3.62869916e-12 syst_JES_EtaIntercalibration_Stat117: 0.0 syst_JES_EtaIntercalibration_Stat118: 0.0 - syst_JES_EtaIntercalibration_Stat119: 3.6303782107731852e-12 + syst_JES_EtaIntercalibration_Stat119: 3.63037821e-12 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 2.2749907756825038e-07 - syst_JES_EtaIntercalibration_Stat121: 5.111885366476834e-07 - syst_JES_EtaIntercalibration_Stat122: 2.9877892737857085e-07 - syst_JES_EtaIntercalibration_Stat123: 5.105846690087257e-12 + syst_JES_EtaIntercalibration_Stat120: 2.27499078e-07 + syst_JES_EtaIntercalibration_Stat121: 5.11188537e-07 + syst_JES_EtaIntercalibration_Stat122: 2.98778927e-07 + syst_JES_EtaIntercalibration_Stat123: 5.10584669e-12 syst_JES_EtaIntercalibration_Stat124: 0.0 syst_JES_EtaIntercalibration_Stat125: 0.0 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 syst_JES_EtaIntercalibration_Stat128: 0.0 syst_JES_EtaIntercalibration_Stat129: 0.0 - syst_JES_EtaIntercalibration_Stat13: 3.6373067746163584e-12 + syst_JES_EtaIntercalibration_Stat13: 3.63730677e-12 syst_JES_EtaIntercalibration_Stat130: 0.0 - syst_JES_EtaIntercalibration_Stat131: 4.3122748057144965e-14 - syst_JES_EtaIntercalibration_Stat132: 6.852073575436855e-08 - syst_JES_EtaIntercalibration_Stat133: 1.2578815620220373e-07 - syst_JES_EtaIntercalibration_Stat134: 5.333082411467124e-07 - syst_JES_EtaIntercalibration_Stat135: 5.841999946668521e-10 + syst_JES_EtaIntercalibration_Stat131: 4.31227481e-14 + syst_JES_EtaIntercalibration_Stat132: 6.85207358e-08 + syst_JES_EtaIntercalibration_Stat133: 1.25788156e-07 + syst_JES_EtaIntercalibration_Stat134: 5.33308241e-07 + syst_JES_EtaIntercalibration_Stat135: 5.84199995e-10 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 - syst_JES_EtaIntercalibration_Stat138: 3.3897439473960273e-12 - syst_JES_EtaIntercalibration_Stat139: 6.171746835378134e-07 - syst_JES_EtaIntercalibration_Stat14: 3.1346096547257683e-19 - syst_JES_EtaIntercalibration_Stat140: 1.8092597386983991e-09 - syst_JES_EtaIntercalibration_Stat141: 2.62824159991048e-07 - syst_JES_EtaIntercalibration_Stat142: 4.588148147703763e-09 + syst_JES_EtaIntercalibration_Stat138: 3.38974395e-12 + syst_JES_EtaIntercalibration_Stat139: 6.17174684e-07 + syst_JES_EtaIntercalibration_Stat14: 3.13460965e-19 + syst_JES_EtaIntercalibration_Stat140: 1.80925974e-09 + syst_JES_EtaIntercalibration_Stat141: 2.62824160e-07 + syst_JES_EtaIntercalibration_Stat142: 4.58814815e-09 syst_JES_EtaIntercalibration_Stat143: 0.0 syst_JES_EtaIntercalibration_Stat144: 0.0 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 syst_JES_EtaIntercalibration_Stat147: 0.0 syst_JES_EtaIntercalibration_Stat148: 0.0 - syst_JES_EtaIntercalibration_Stat149: 2.374981532068618e-10 - syst_JES_EtaIntercalibration_Stat15: 2.9258167715699495e-19 - syst_JES_EtaIntercalibration_Stat150: 6.925605154064155e-08 - syst_JES_EtaIntercalibration_Stat151: 4.911976340659634e-07 - syst_JES_EtaIntercalibration_Stat152: 5.095098554522769e-07 - syst_JES_EtaIntercalibration_Stat153: 6.828717898167049e-10 + syst_JES_EtaIntercalibration_Stat149: 2.37498153e-10 + syst_JES_EtaIntercalibration_Stat15: 2.92581677e-19 + syst_JES_EtaIntercalibration_Stat150: 6.92560515e-08 + syst_JES_EtaIntercalibration_Stat151: 4.91197634e-07 + syst_JES_EtaIntercalibration_Stat152: 5.09509855e-07 + syst_JES_EtaIntercalibration_Stat153: 6.82871790e-10 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 2.7565588484881304e-13 - syst_JES_EtaIntercalibration_Stat157: 1.197355686502553e-06 - syst_JES_EtaIntercalibration_Stat158: 1.2565710962774848e-06 - syst_JES_EtaIntercalibration_Stat159: 4.051022432670548e-07 + syst_JES_EtaIntercalibration_Stat156: 2.75655885e-13 + syst_JES_EtaIntercalibration_Stat157: 1.19735569e-06 + syst_JES_EtaIntercalibration_Stat158: 1.25657110e-06 + syst_JES_EtaIntercalibration_Stat159: 4.05102243e-07 syst_JES_EtaIntercalibration_Stat16: 0.0 - syst_JES_EtaIntercalibration_Stat160: 1.3377230031194798e-12 + syst_JES_EtaIntercalibration_Stat160: 1.33772300e-12 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 - syst_JES_EtaIntercalibration_Stat167: 7.678234032041482e-08 - syst_JES_EtaIntercalibration_Stat168: 4.4977959802552186e-07 - syst_JES_EtaIntercalibration_Stat169: 1.5877231339248035e-06 + syst_JES_EtaIntercalibration_Stat167: 7.67823403e-08 + syst_JES_EtaIntercalibration_Stat168: 4.49779598e-07 + syst_JES_EtaIntercalibration_Stat169: 1.58772313e-06 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 1.28968293777967e-06 - syst_JES_EtaIntercalibration_Stat171: 1.5284150366637983e-07 + syst_JES_EtaIntercalibration_Stat170: 1.28968294e-06 + syst_JES_EtaIntercalibration_Stat171: 1.52841504e-07 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 - syst_JES_EtaIntercalibration_Stat174: 4.815975422686262e-13 - syst_JES_EtaIntercalibration_Stat175: 8.699028149741787e-07 - syst_JES_EtaIntercalibration_Stat176: 1.5300129305009159e-06 - syst_JES_EtaIntercalibration_Stat177: 1.0966427255492101e-06 - syst_JES_EtaIntercalibration_Stat178: 1.9895446715266286e-07 + syst_JES_EtaIntercalibration_Stat174: 4.81597542e-13 + syst_JES_EtaIntercalibration_Stat175: 8.69902815e-07 + syst_JES_EtaIntercalibration_Stat176: 1.53001293e-06 + syst_JES_EtaIntercalibration_Stat177: 1.09664273e-06 + syst_JES_EtaIntercalibration_Stat178: 1.98954467e-07 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 syst_JES_EtaIntercalibration_Stat180: 0.0 syst_JES_EtaIntercalibration_Stat181: 0.0 syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 - syst_JES_EtaIntercalibration_Stat184: 3.580375818262658e-07 - syst_JES_EtaIntercalibration_Stat185: 2.8479640096040542e-06 - syst_JES_EtaIntercalibration_Stat186: 1.1286615214491897e-05 - syst_JES_EtaIntercalibration_Stat187: 8.284706633309355e-06 - syst_JES_EtaIntercalibration_Stat188: 8.377740551604591e-07 + syst_JES_EtaIntercalibration_Stat184: 3.58037582e-07 + syst_JES_EtaIntercalibration_Stat185: 2.84796401e-06 + syst_JES_EtaIntercalibration_Stat186: 1.12866152e-05 + syst_JES_EtaIntercalibration_Stat187: 8.28470663e-06 + syst_JES_EtaIntercalibration_Stat188: 8.37774055e-07 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 - syst_JES_EtaIntercalibration_Stat191: 4.4337172091908387e-07 - syst_JES_EtaIntercalibration_Stat192: 9.567699462253192e-06 - syst_JES_EtaIntercalibration_Stat193: 1.2570786490908195e-05 - syst_JES_EtaIntercalibration_Stat194: 3.4288924786292145e-06 - syst_JES_EtaIntercalibration_Stat195: 2.727341700264197e-07 - syst_JES_EtaIntercalibration_Stat196: 5.131726683096051e-12 + syst_JES_EtaIntercalibration_Stat191: 4.43371721e-07 + syst_JES_EtaIntercalibration_Stat192: 9.56769946e-06 + syst_JES_EtaIntercalibration_Stat193: 1.25707865e-05 + syst_JES_EtaIntercalibration_Stat194: 3.42889248e-06 + syst_JES_EtaIntercalibration_Stat195: 2.72734170e-07 + syst_JES_EtaIntercalibration_Stat196: 5.13172668e-12 syst_JES_EtaIntercalibration_Stat197: 0.0 syst_JES_EtaIntercalibration_Stat198: 0.0 - syst_JES_EtaIntercalibration_Stat199: 1.5424163275523247e-07 + syst_JES_EtaIntercalibration_Stat199: 1.54241633e-07 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 6.485886909282338e-06 - syst_JES_EtaIntercalibration_Stat201: 2.3426504220647174e-05 - syst_JES_EtaIntercalibration_Stat202: 1.7202327604135435e-05 - syst_JES_EtaIntercalibration_Stat203: 2.8103816022028037e-07 + syst_JES_EtaIntercalibration_Stat200: 6.48588691e-06 + syst_JES_EtaIntercalibration_Stat201: 2.34265042e-05 + syst_JES_EtaIntercalibration_Stat202: 1.72023276e-05 + syst_JES_EtaIntercalibration_Stat203: 2.81038160e-07 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 - syst_JES_EtaIntercalibration_Stat206: 7.231470994894468e-07 - syst_JES_EtaIntercalibration_Stat207: 1.7417608905931952e-05 - syst_JES_EtaIntercalibration_Stat208: 3.3176610737084036e-05 - syst_JES_EtaIntercalibration_Stat209: 7.178286477286902e-06 + syst_JES_EtaIntercalibration_Stat206: 7.23147099e-07 + syst_JES_EtaIntercalibration_Stat207: 1.74176089e-05 + syst_JES_EtaIntercalibration_Stat208: 3.31766107e-05 + syst_JES_EtaIntercalibration_Stat209: 7.17828648e-06 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 4.302467315390089e-07 - syst_JES_EtaIntercalibration_Stat211: 5.411425690148577e-12 - syst_JES_EtaIntercalibration_Stat212: 2.3042475452954267e-07 - syst_JES_EtaIntercalibration_Stat213: 7.546130183743188e-06 - syst_JES_EtaIntercalibration_Stat214: 2.2854707939503408e-05 - syst_JES_EtaIntercalibration_Stat215: 1.7929681397057784e-05 - syst_JES_EtaIntercalibration_Stat216: 3.0025109491890285e-07 + syst_JES_EtaIntercalibration_Stat210: 4.30246732e-07 + syst_JES_EtaIntercalibration_Stat211: 5.41142569e-12 + syst_JES_EtaIntercalibration_Stat212: 2.30424755e-07 + syst_JES_EtaIntercalibration_Stat213: 7.54613018e-06 + syst_JES_EtaIntercalibration_Stat214: 2.28547079e-05 + syst_JES_EtaIntercalibration_Stat215: 1.79296814e-05 + syst_JES_EtaIntercalibration_Stat216: 3.00251095e-07 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 - syst_JES_EtaIntercalibration_Stat219: 7.490450106413833e-07 + syst_JES_EtaIntercalibration_Stat219: 7.49045011e-07 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 2.248736700905644e-05 - syst_JES_EtaIntercalibration_Stat221: 2.8866601375984666e-05 - syst_JES_EtaIntercalibration_Stat222: 7.3023619980113275e-06 - syst_JES_EtaIntercalibration_Stat223: 4.428853914953619e-07 - syst_JES_EtaIntercalibration_Stat224: 8.396256017755295e-07 - syst_JES_EtaIntercalibration_Stat225: 2.5209141199176146e-05 - syst_JES_EtaIntercalibration_Stat226: 7.168062552042915e-05 - syst_JES_EtaIntercalibration_Stat227: 5.4531285515747746e-05 - syst_JES_EtaIntercalibration_Stat228: 1.4691870507188662e-06 + syst_JES_EtaIntercalibration_Stat220: 2.24873670e-05 + syst_JES_EtaIntercalibration_Stat221: 2.88666014e-05 + syst_JES_EtaIntercalibration_Stat222: 7.30236200e-06 + syst_JES_EtaIntercalibration_Stat223: 4.42885391e-07 + syst_JES_EtaIntercalibration_Stat224: 8.39625602e-07 + syst_JES_EtaIntercalibration_Stat225: 2.52091412e-05 + syst_JES_EtaIntercalibration_Stat226: 7.16806255e-05 + syst_JES_EtaIntercalibration_Stat227: 5.45312855e-05 + syst_JES_EtaIntercalibration_Stat228: 1.46918705e-06 syst_JES_EtaIntercalibration_Stat229: 0.0 syst_JES_EtaIntercalibration_Stat23: 0.0 syst_JES_EtaIntercalibration_Stat230: 0.0 - syst_JES_EtaIntercalibration_Stat231: 5.741748427319113e-07 - syst_JES_EtaIntercalibration_Stat232: 6.119274528079288e-05 - syst_JES_EtaIntercalibration_Stat233: 7.352126291080697e-05 - syst_JES_EtaIntercalibration_Stat234: 2.595168732471937e-05 - syst_JES_EtaIntercalibration_Stat235: 1.5812826336553502e-06 - syst_JES_EtaIntercalibration_Stat236: 4.655604042441754e-06 - syst_JES_EtaIntercalibration_Stat237: 1.6981378035954563e-05 - syst_JES_EtaIntercalibration_Stat238: 9.467654976286365e-06 - syst_JES_EtaIntercalibration_Stat239: 2.5444051623120083e-07 + syst_JES_EtaIntercalibration_Stat231: 5.74174843e-07 + syst_JES_EtaIntercalibration_Stat232: 6.11927453e-05 + syst_JES_EtaIntercalibration_Stat233: 7.35212629e-05 + syst_JES_EtaIntercalibration_Stat234: 2.59516873e-05 + syst_JES_EtaIntercalibration_Stat235: 1.58128263e-06 + syst_JES_EtaIntercalibration_Stat236: 4.65560404e-06 + syst_JES_EtaIntercalibration_Stat237: 1.69813780e-05 + syst_JES_EtaIntercalibration_Stat238: 9.46765498e-06 + syst_JES_EtaIntercalibration_Stat239: 2.54440516e-07 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 - syst_JES_EtaIntercalibration_Stat242: 6.918013729930001e-08 - syst_JES_EtaIntercalibration_Stat243: 9.746856877988924e-06 - syst_JES_EtaIntercalibration_Stat244: 1.5060244046827395e-05 - syst_JES_EtaIntercalibration_Stat245: 4.649644798261475e-06 + syst_JES_EtaIntercalibration_Stat242: 6.91801373e-08 + syst_JES_EtaIntercalibration_Stat243: 9.74685688e-06 + syst_JES_EtaIntercalibration_Stat244: 1.50602440e-05 + syst_JES_EtaIntercalibration_Stat245: 4.64964480e-06 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 - syst_JES_EtaIntercalibration_Stat27: 8.658704334367816e-20 - syst_JES_EtaIntercalibration_Stat28: 4.842552531154077e-15 - syst_JES_EtaIntercalibration_Stat29: 2.8396973029452597e-09 + syst_JES_EtaIntercalibration_Stat27: 8.65870433e-20 + syst_JES_EtaIntercalibration_Stat28: 4.84255253e-15 + syst_JES_EtaIntercalibration_Stat29: 2.83969730e-09 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 2.843161409388489e-09 - syst_JES_EtaIntercalibration_Stat31: 1.6541085212282776e-20 + syst_JES_EtaIntercalibration_Stat30: 2.84316141e-09 + syst_JES_EtaIntercalibration_Stat31: 1.65410852e-20 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 - syst_JES_EtaIntercalibration_Stat34: 2.381569860407206e-21 - syst_JES_EtaIntercalibration_Stat35: 3.633850244234989e-12 - syst_JES_EtaIntercalibration_Stat36: 3.636472596195056e-12 - syst_JES_EtaIntercalibration_Stat37: 6.12802828873203e-17 - syst_JES_EtaIntercalibration_Stat38: 9.230045859447286e-20 + syst_JES_EtaIntercalibration_Stat34: 2.38156986e-21 + syst_JES_EtaIntercalibration_Stat35: 3.63385024e-12 + syst_JES_EtaIntercalibration_Stat36: 3.63647260e-12 + syst_JES_EtaIntercalibration_Stat37: 6.12802829e-17 + syst_JES_EtaIntercalibration_Stat38: 9.23004586e-20 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 syst_JES_EtaIntercalibration_Stat40: 0.0 @@ -31325,21 +31325,21 @@ bins: syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 syst_JES_EtaIntercalibration_Stat47: 0.0 - syst_JES_EtaIntercalibration_Stat48: 4.84454610877015e-20 - syst_JES_EtaIntercalibration_Stat49: 3.185744448319733e-19 - syst_JES_EtaIntercalibration_Stat5: 4.151725785742598e-20 - syst_JES_EtaIntercalibration_Stat50: 4.9942030062363305e-15 - syst_JES_EtaIntercalibration_Stat51: 2.813720149106149e-09 - syst_JES_EtaIntercalibration_Stat52: 2.8275729670621955e-09 - syst_JES_EtaIntercalibration_Stat53: 1.2656519298369517e-19 - syst_JES_EtaIntercalibration_Stat54: 7.406249253164519e-20 + syst_JES_EtaIntercalibration_Stat48: 4.84454611e-20 + syst_JES_EtaIntercalibration_Stat49: 3.18574445e-19 + syst_JES_EtaIntercalibration_Stat5: 4.15172579e-20 + syst_JES_EtaIntercalibration_Stat50: 4.99420301e-15 + syst_JES_EtaIntercalibration_Stat51: 2.81372015e-09 + syst_JES_EtaIntercalibration_Stat52: 2.82757297e-09 + syst_JES_EtaIntercalibration_Stat53: 1.26565193e-19 + syst_JES_EtaIntercalibration_Stat54: 7.40624925e-20 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 1.0936452166950669e-20 - syst_JES_EtaIntercalibration_Stat57: 3.5846515184612784e-12 - syst_JES_EtaIntercalibration_Stat58: 3.622847034595168e-12 - syst_JES_EtaIntercalibration_Stat59: 1.5376946218284043e-16 - syst_JES_EtaIntercalibration_Stat6: 9.615121892103086e-20 - syst_JES_EtaIntercalibration_Stat60: 1.0881704884231146e-18 + syst_JES_EtaIntercalibration_Stat56: 1.09364522e-20 + syst_JES_EtaIntercalibration_Stat57: 3.58465152e-12 + syst_JES_EtaIntercalibration_Stat58: 3.62284703e-12 + syst_JES_EtaIntercalibration_Stat59: 1.53769462e-16 + syst_JES_EtaIntercalibration_Stat6: 9.61512189e-20 + syst_JES_EtaIntercalibration_Stat60: 1.08817049e-18 syst_JES_EtaIntercalibration_Stat61: 0.0 syst_JES_EtaIntercalibration_Stat62: 0.0 syst_JES_EtaIntercalibration_Stat63: 0.0 @@ -31349,21 +31349,21 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 7.298575665840562e-19 - syst_JES_EtaIntercalibration_Stat70: 4.151725785742598e-20 - syst_JES_EtaIntercalibration_Stat71: 1.5215728704206053e-18 - syst_JES_EtaIntercalibration_Stat72: 1.1462721666340853e-14 - syst_JES_EtaIntercalibration_Stat73: 2.610121687577612e-08 - syst_JES_EtaIntercalibration_Stat74: 3.0861775191974937e-09 - syst_JES_EtaIntercalibration_Stat75: 3.0861596633194466e-18 - syst_JES_EtaIntercalibration_Stat76: 7.406249253164519e-20 + syst_JES_EtaIntercalibration_Stat7: 7.29857567e-19 + syst_JES_EtaIntercalibration_Stat70: 4.15172579e-20 + syst_JES_EtaIntercalibration_Stat71: 1.52157287e-18 + syst_JES_EtaIntercalibration_Stat72: 1.14627217e-14 + syst_JES_EtaIntercalibration_Stat73: 2.61012169e-08 + syst_JES_EtaIntercalibration_Stat74: 3.08617752e-09 + syst_JES_EtaIntercalibration_Stat75: 3.08615966e-18 + syst_JES_EtaIntercalibration_Stat76: 7.40624925e-20 syst_JES_EtaIntercalibration_Stat77: 0.0 - syst_JES_EtaIntercalibration_Stat78: 1.4929606391328607e-18 - syst_JES_EtaIntercalibration_Stat79: 3.3853726143080614e-12 - syst_JES_EtaIntercalibration_Stat8: 1.127680835830777e-19 - syst_JES_EtaIntercalibration_Stat80: 2.202318464979492e-09 - syst_JES_EtaIntercalibration_Stat81: 5.132427468040829e-12 - syst_JES_EtaIntercalibration_Stat82: 1.2148439364790852e-18 + syst_JES_EtaIntercalibration_Stat78: 1.49296064e-18 + syst_JES_EtaIntercalibration_Stat79: 3.38537261e-12 + syst_JES_EtaIntercalibration_Stat8: 1.12768084e-19 + syst_JES_EtaIntercalibration_Stat80: 2.20231846e-09 + syst_JES_EtaIntercalibration_Stat81: 5.13242747e-12 + syst_JES_EtaIntercalibration_Stat82: 1.21484394e-18 syst_JES_EtaIntercalibration_Stat83: 0.0 syst_JES_EtaIntercalibration_Stat84: 0.0 syst_JES_EtaIntercalibration_Stat85: 0.0 @@ -31373,118 +31373,118 @@ bins: syst_JES_EtaIntercalibration_Stat89: 0.0 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 3.559364409554043e-20 - syst_JES_EtaIntercalibration_Stat92: 3.8052719003755827e-16 - syst_JES_EtaIntercalibration_Stat93: 1.584107917630614e-14 - syst_JES_EtaIntercalibration_Stat94: 2.6230260084865244e-08 - syst_JES_EtaIntercalibration_Stat95: 3.14704904752055e-09 - syst_JES_EtaIntercalibration_Stat96: 8.394142187859341e-18 - syst_JES_EtaIntercalibration_Stat97: 7.406249253164519e-20 + syst_JES_EtaIntercalibration_Stat91: 3.55936441e-20 + syst_JES_EtaIntercalibration_Stat92: 3.80527190e-16 + syst_JES_EtaIntercalibration_Stat93: 1.58410792e-14 + syst_JES_EtaIntercalibration_Stat94: 2.62302601e-08 + syst_JES_EtaIntercalibration_Stat95: 3.14704905e-09 + syst_JES_EtaIntercalibration_Stat96: 8.39414219e-18 + syst_JES_EtaIntercalibration_Stat97: 7.40624925e-20 syst_JES_EtaIntercalibration_Stat98: 0.0 - syst_JES_EtaIntercalibration_Stat99: 2.443919356496645e-13 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0007060167473226113 - syst_JES_Flavour_Comp: 0.0018136887136441027 - syst_JES_Gjet_Generator: 0.002426504893875139 - syst_JES_Gjet_OOC: 0.0020016360183609805 - syst_JES_Gjet_Purity: 0.00036667351963292906 - syst_JES_Gjet_Stat1: 4.692280625665947e-06 - syst_JES_Gjet_Stat10: 3.969783256992755e-05 - syst_JES_Gjet_Stat11: 4.187722412003928e-05 - syst_JES_Gjet_Stat12: 0.00013436493246007307 - syst_JES_Gjet_Stat13: 0.00041595668269063784 - syst_JES_Gjet_Stat14: 0.0011102242205969027 - syst_JES_Gjet_Stat15: 0.0010403191962085484 - syst_JES_Gjet_Stat2: 6.253120401047785e-06 - syst_JES_Gjet_Stat3: 7.316357085326002e-06 - syst_JES_Gjet_Stat4: 8.900736865563436e-06 - syst_JES_Gjet_Stat5: 9.074113221136266e-06 - syst_JES_Gjet_Stat6: 2.021774158999961e-05 - syst_JES_Gjet_Stat7: 2.367543188624022e-05 - syst_JES_Gjet_Stat8: 1.8592123836452897e-05 - syst_JES_Gjet_Stat9: 2.590162687940663e-05 - syst_JES_Gjet_Veto: 0.0019996201514287655 - syst_JES_Gjet_dPhi: 0.00020127649515032798 - syst_JES_LArESZee: 0.0036995441611095818 - syst_JES_LArEsmear: 0.00030723827886511794 - syst_JES_LAr_JVT: 0.0003786143170496858 - syst_JES_MJB_Alpha: 2.054888013980324e-05 - syst_JES_MJB_Asym: 0.00036741458446147725 - syst_JES_MJB_Beta: 2.6935974086711623e-05 - syst_JES_MJB_Stat1: 1.1761491008796461e-06 - syst_JES_MJB_Stat10: 3.4372234070540134e-05 - syst_JES_MJB_Stat11: 3.695500372074126e-05 - syst_JES_MJB_Stat12: 4.589784751761241e-05 - syst_JES_MJB_Stat13: 2.0117493898346284e-05 - syst_JES_MJB_Stat14: 4.879720586263111e-06 - syst_JES_MJB_Stat15: 1.5438898924469967e-05 - syst_JES_MJB_Stat16: 1.677806529371012e-05 + syst_JES_EtaIntercalibration_Stat99: 2.44391936e-13 + syst_JES_EtaIntercalibration_TotalStat_MJB: 7.06016747e-04 + syst_JES_Flavour_Comp: 1.81368871e-03 + syst_JES_Gjet_Generator: 2.42650489e-03 + syst_JES_Gjet_OOC: 2.00163602e-03 + syst_JES_Gjet_Purity: 3.66673520e-04 + syst_JES_Gjet_Stat1: 4.69228063e-06 + syst_JES_Gjet_Stat10: 3.96978326e-05 + syst_JES_Gjet_Stat11: 4.18772241e-05 + syst_JES_Gjet_Stat12: 1.34364932e-04 + syst_JES_Gjet_Stat13: 4.15956683e-04 + syst_JES_Gjet_Stat14: 1.11022422e-03 + syst_JES_Gjet_Stat15: 1.04031920e-03 + syst_JES_Gjet_Stat2: 6.25312040e-06 + syst_JES_Gjet_Stat3: 7.31635709e-06 + syst_JES_Gjet_Stat4: 8.90073687e-06 + syst_JES_Gjet_Stat5: 9.07411322e-06 + syst_JES_Gjet_Stat6: 2.02177416e-05 + syst_JES_Gjet_Stat7: 2.36754319e-05 + syst_JES_Gjet_Stat8: 1.85921238e-05 + syst_JES_Gjet_Stat9: 2.59016269e-05 + syst_JES_Gjet_Veto: 1.99962015e-03 + syst_JES_Gjet_dPhi: 2.01276495e-04 + syst_JES_LArESZee: 3.69954416e-03 + syst_JES_LArEsmear: 3.07238279e-04 + syst_JES_LAr_JVT: 3.78614317e-04 + syst_JES_MJB_Alpha: 2.05488801e-05 + syst_JES_MJB_Asym: 3.67414584e-04 + syst_JES_MJB_Beta: 2.69359741e-05 + syst_JES_MJB_Stat1: 1.17614910e-06 + syst_JES_MJB_Stat10: 3.43722341e-05 + syst_JES_MJB_Stat11: 3.69550037e-05 + syst_JES_MJB_Stat12: 4.58978475e-05 + syst_JES_MJB_Stat13: 2.01174939e-05 + syst_JES_MJB_Stat14: 4.87972059e-06 + syst_JES_MJB_Stat15: 1.54388989e-05 + syst_JES_MJB_Stat16: 1.67780653e-05 syst_JES_MJB_Stat2: 0.0 - syst_JES_MJB_Stat3: 4.3604379080546485e-06 - syst_JES_MJB_Stat4: 1.7675578491240392e-06 - syst_JES_MJB_Stat5: 4.255648834196731e-06 - syst_JES_MJB_Stat6: 1.1331773735827943e-05 - syst_JES_MJB_Stat7: 1.5985695949817137e-05 - syst_JES_MJB_Stat8: 2.0877219043732815e-05 - syst_JES_MJB_Stat9: 2.4242563808310375e-05 - syst_JES_MJB_Threshold: 0.00025179295065589106 - syst_JES_Pileup_MuOffset: 0.0004737940137865822 - syst_JES_Pileup_NPVOffset: 0.00048720329175817363 - syst_JES_Pileup_Pt_term: 0.00033881835841642345 - syst_JES_PunchThrough_MC15: 0.00038012054808310485 - syst_JES_SingleParticle_HighPt: 3.937540698202369e-13 - syst_JES_Zjet_MC: 0.0009645504963453183 - syst_JES_Zjet_MuScale: 7.502020711115106e-05 - syst_JES_Zjet_MuSmearID: 1.6340217256817608e-05 - syst_JES_Zjet_MuSmearMS: 0.0002667769855141181 - syst_JES_Zjet_OOC: 0.0005419461666069796 - syst_JES_Zjet_Stat1: 3.861502686778814e-05 - syst_JES_Zjet_Stat10: 4.6481100191368105e-05 - syst_JES_Zjet_Stat11: 6.12111199048016e-05 - syst_JES_Zjet_Stat12: 0.00017395551155396027 - syst_JES_Zjet_Stat13: 0.0002842682667833327 - syst_JES_Zjet_Stat2: 1.832509754407872e-07 - syst_JES_Zjet_Stat3: 1.960343847390044e-05 - syst_JES_Zjet_Stat4: 1.971207941846826e-05 - syst_JES_Zjet_Stat5: 2.3371676769115216e-05 - syst_JES_Zjet_Stat6: 2.1225999976443983e-05 - syst_JES_Zjet_Stat7: 2.0451977899459994e-05 - syst_JES_Zjet_Stat8: 2.0986231200479994e-05 - syst_JES_Zjet_Stat9: 2.8925656431617937e-05 - syst_JES_Zjet_Veto: 0.00012191827426600165 - syst_JES_Zjet_dPhi: 0.00010905832969104194 + syst_JES_MJB_Stat3: 4.36043791e-06 + syst_JES_MJB_Stat4: 1.76755785e-06 + syst_JES_MJB_Stat5: 4.25564883e-06 + syst_JES_MJB_Stat6: 1.13317737e-05 + syst_JES_MJB_Stat7: 1.59856959e-05 + syst_JES_MJB_Stat8: 2.08772190e-05 + syst_JES_MJB_Stat9: 2.42425638e-05 + syst_JES_MJB_Threshold: 2.51792951e-04 + syst_JES_Pileup_MuOffset: 4.73794014e-04 + syst_JES_Pileup_NPVOffset: 4.87203292e-04 + syst_JES_Pileup_Pt_term: 3.38818358e-04 + syst_JES_PunchThrough_MC15: 3.80120548e-04 + syst_JES_SingleParticle_HighPt: 3.93754070e-13 + syst_JES_Zjet_MC: 9.64550496e-04 + syst_JES_Zjet_MuScale: 7.50202071e-05 + syst_JES_Zjet_MuSmearID: 1.63402173e-05 + syst_JES_Zjet_MuSmearMS: 2.66776986e-04 + syst_JES_Zjet_OOC: 5.41946167e-04 + syst_JES_Zjet_Stat1: 3.86150269e-05 + syst_JES_Zjet_Stat10: 4.64811002e-05 + syst_JES_Zjet_Stat11: 6.12111199e-05 + syst_JES_Zjet_Stat12: 1.73955512e-04 + syst_JES_Zjet_Stat13: 2.84268267e-04 + syst_JES_Zjet_Stat2: 1.83250975e-07 + syst_JES_Zjet_Stat3: 1.96034385e-05 + syst_JES_Zjet_Stat4: 1.97120794e-05 + syst_JES_Zjet_Stat5: 2.33716768e-05 + syst_JES_Zjet_Stat6: 2.12260000e-05 + syst_JES_Zjet_Stat7: 2.04519779e-05 + syst_JES_Zjet_Stat8: 2.09862312e-05 + syst_JES_Zjet_Stat9: 2.89256564e-05 + syst_JES_Zjet_Veto: 1.21918274e-04 + syst_JES_Zjet_dPhi: 1.09058330e-04 syst_PRW: 0.0 - syst_Unfolding_bias: 0.00010032 - syst_cleaning: 0.0006090756664815958 + syst_Unfolding_bias: 1.00320000e-04 + syst_cleaning: 6.09075666e-04 syst_lumi: 0.002053 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0004008687973327433 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 6.970624846453867e-05 - syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 2.3455960329945992e-05 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 4.00868797e-04 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 6.97062485e-05 + syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 2.34559603e-05 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 0.00015205277866583037 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.00024603589169062306 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0005445922396619328 -- stat: 0.0005878 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 1.52052779e-04 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 2.46035892e-04 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 5.44592240e-04 +- stat: 5.87800000e-04 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.00038200576893549653 - syst_JER_NP1: 6.390519462453737e-05 - syst_JER_NP2: 0.0002649156988553151 - syst_JER_NP3: 2.435095686004967e-05 - syst_JER_NP4: 1.1157312624462935e-13 - syst_JER_NP5: 3.072026613658604e-08 - syst_JER_NP6: 5.502280254585367e-16 - syst_JER_NP7: 1.4905377385359956e-18 - syst_JER_NP8: 3.182754585261012e-05 - syst_JES_EtaIntercalibration_Modelling: 0.0034732179603359187 + syst_JER_NP0: 3.82005769e-04 + syst_JER_NP1: 6.39051946e-05 + syst_JER_NP2: 2.64915699e-04 + syst_JER_NP3: 2.43509569e-05 + syst_JER_NP4: 1.11573126e-13 + syst_JER_NP5: 3.07202661e-08 + syst_JER_NP6: 5.50228025e-16 + syst_JER_NP7: 1.49053774e-18 + syst_JER_NP8: 3.18275459e-05 + syst_JES_EtaIntercalibration_Modelling: 3.47321796e-03 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 5.1574246945544446e-14 - syst_JES_EtaIntercalibration_Stat101: 2.0340418715095244e-09 - syst_JES_EtaIntercalibration_Stat102: 1.8987004482210983e-13 - syst_JES_EtaIntercalibration_Stat103: 4.881278725907793e-17 + syst_JES_EtaIntercalibration_Stat100: 5.15742469e-14 + syst_JES_EtaIntercalibration_Stat101: 2.03404187e-09 + syst_JES_EtaIntercalibration_Stat102: 1.89870045e-13 + syst_JES_EtaIntercalibration_Stat103: 4.88127873e-17 syst_JES_EtaIntercalibration_Stat104: 0.0 syst_JES_EtaIntercalibration_Stat105: 0.0 syst_JES_EtaIntercalibration_Stat106: 0.0 @@ -31493,170 +31493,170 @@ bins: syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 syst_JES_EtaIntercalibration_Stat110: 0.0 - syst_JES_EtaIntercalibration_Stat111: 4.6722070534170464e-21 - syst_JES_EtaIntercalibration_Stat112: 8.0854697297064945e-16 - syst_JES_EtaIntercalibration_Stat113: 8.096150314110713e-08 - syst_JES_EtaIntercalibration_Stat114: 4.1018151357051667e-08 - syst_JES_EtaIntercalibration_Stat115: 1.7393041712133046e-08 - syst_JES_EtaIntercalibration_Stat116: 5.689017561334162e-13 + syst_JES_EtaIntercalibration_Stat111: 4.67220705e-21 + syst_JES_EtaIntercalibration_Stat112: 8.08546973e-16 + syst_JES_EtaIntercalibration_Stat113: 8.09615031e-08 + syst_JES_EtaIntercalibration_Stat114: 4.10181514e-08 + syst_JES_EtaIntercalibration_Stat115: 1.73930417e-08 + syst_JES_EtaIntercalibration_Stat116: 5.68901756e-13 syst_JES_EtaIntercalibration_Stat117: 0.0 syst_JES_EtaIntercalibration_Stat118: 0.0 - syst_JES_EtaIntercalibration_Stat119: 5.702776542603168e-13 + syst_JES_EtaIntercalibration_Stat119: 5.70277654e-13 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 1.079231730597219e-07 - syst_JES_EtaIntercalibration_Stat121: 3.6525619543000225e-07 - syst_JES_EtaIntercalibration_Stat122: 1.8775433416210233e-07 - syst_JES_EtaIntercalibration_Stat123: 8.046150188208023e-13 + syst_JES_EtaIntercalibration_Stat120: 1.07923173e-07 + syst_JES_EtaIntercalibration_Stat121: 3.65256195e-07 + syst_JES_EtaIntercalibration_Stat122: 1.87754334e-07 + syst_JES_EtaIntercalibration_Stat123: 8.04615019e-13 syst_JES_EtaIntercalibration_Stat124: 0.0 syst_JES_EtaIntercalibration_Stat125: 0.0 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 syst_JES_EtaIntercalibration_Stat128: 0.0 syst_JES_EtaIntercalibration_Stat129: 0.0 - syst_JES_EtaIntercalibration_Stat13: 5.714035809862627e-13 + syst_JES_EtaIntercalibration_Stat13: 5.71403581e-13 syst_JES_EtaIntercalibration_Stat130: 0.0 - syst_JES_EtaIntercalibration_Stat131: 6.664031362471217e-15 - syst_JES_EtaIntercalibration_Stat132: 2.9325353007599073e-08 - syst_JES_EtaIntercalibration_Stat133: 3.9587348888249644e-08 - syst_JES_EtaIntercalibration_Stat134: 2.878806188335714e-07 - syst_JES_EtaIntercalibration_Stat135: 1.0332153664975904e-10 + syst_JES_EtaIntercalibration_Stat131: 6.66403136e-15 + syst_JES_EtaIntercalibration_Stat132: 2.93253530e-08 + syst_JES_EtaIntercalibration_Stat133: 3.95873489e-08 + syst_JES_EtaIntercalibration_Stat134: 2.87880619e-07 + syst_JES_EtaIntercalibration_Stat135: 1.03321537e-10 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 - syst_JES_EtaIntercalibration_Stat138: 5.32967078876435e-13 - syst_JES_EtaIntercalibration_Stat139: 4.0452573465726503e-07 - syst_JES_EtaIntercalibration_Stat14: 7.73636456935685e-20 - syst_JES_EtaIntercalibration_Stat140: 3.0030628831244943e-10 - syst_JES_EtaIntercalibration_Stat141: 2.613319274409462e-07 - syst_JES_EtaIntercalibration_Stat142: 9.721046624042015e-10 + syst_JES_EtaIntercalibration_Stat138: 5.32967079e-13 + syst_JES_EtaIntercalibration_Stat139: 4.04525735e-07 + syst_JES_EtaIntercalibration_Stat14: 7.73636457e-20 + syst_JES_EtaIntercalibration_Stat140: 3.00306288e-10 + syst_JES_EtaIntercalibration_Stat141: 2.61331927e-07 + syst_JES_EtaIntercalibration_Stat142: 9.72104662e-10 syst_JES_EtaIntercalibration_Stat143: 0.0 syst_JES_EtaIntercalibration_Stat144: 0.0 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 syst_JES_EtaIntercalibration_Stat147: 0.0 syst_JES_EtaIntercalibration_Stat148: 0.0 - syst_JES_EtaIntercalibration_Stat149: 4.591209579316e-11 - syst_JES_EtaIntercalibration_Stat15: 7.149747270274663e-20 - syst_JES_EtaIntercalibration_Stat150: 2.7418364283815328e-08 - syst_JES_EtaIntercalibration_Stat151: 3.2754371560449757e-07 - syst_JES_EtaIntercalibration_Stat152: 2.827069647510475e-07 - syst_JES_EtaIntercalibration_Stat153: 1.20901876754995e-10 + syst_JES_EtaIntercalibration_Stat149: 4.59120958e-11 + syst_JES_EtaIntercalibration_Stat15: 7.14974727e-20 + syst_JES_EtaIntercalibration_Stat150: 2.74183643e-08 + syst_JES_EtaIntercalibration_Stat151: 3.27543716e-07 + syst_JES_EtaIntercalibration_Stat152: 2.82706965e-07 + syst_JES_EtaIntercalibration_Stat153: 1.20901877e-10 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 4.164716134580335e-14 - syst_JES_EtaIntercalibration_Stat157: 9.56345684101727e-07 - syst_JES_EtaIntercalibration_Stat158: 9.845465491788593e-07 - syst_JES_EtaIntercalibration_Stat159: 2.969988092147845e-07 + syst_JES_EtaIntercalibration_Stat156: 4.16471613e-14 + syst_JES_EtaIntercalibration_Stat157: 9.56345684e-07 + syst_JES_EtaIntercalibration_Stat158: 9.84546549e-07 + syst_JES_EtaIntercalibration_Stat159: 2.96998809e-07 syst_JES_EtaIntercalibration_Stat16: 0.0 - syst_JES_EtaIntercalibration_Stat160: 2.1060063408024203e-13 + syst_JES_EtaIntercalibration_Stat160: 2.10600634e-13 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 - syst_JES_EtaIntercalibration_Stat167: 1.6278521892358656e-08 - syst_JES_EtaIntercalibration_Stat168: 1.0045711361073442e-07 - syst_JES_EtaIntercalibration_Stat169: 1.0970484446914823e-06 + syst_JES_EtaIntercalibration_Stat167: 1.62785219e-08 + syst_JES_EtaIntercalibration_Stat168: 1.00457114e-07 + syst_JES_EtaIntercalibration_Stat169: 1.09704844e-06 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 6.691952405688493e-07 - syst_JES_EtaIntercalibration_Stat171: 7.175940862876449e-08 + syst_JES_EtaIntercalibration_Stat170: 6.69195241e-07 + syst_JES_EtaIntercalibration_Stat171: 7.17594086e-08 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 - syst_JES_EtaIntercalibration_Stat174: 7.898169817252588e-14 - syst_JES_EtaIntercalibration_Stat175: 7.917640557640894e-07 - syst_JES_EtaIntercalibration_Stat176: 1.0931149562145786e-06 - syst_JES_EtaIntercalibration_Stat177: 1.0525021235132972e-06 - syst_JES_EtaIntercalibration_Stat178: 1.5709656862898056e-07 + syst_JES_EtaIntercalibration_Stat174: 7.89816982e-14 + syst_JES_EtaIntercalibration_Stat175: 7.91764056e-07 + syst_JES_EtaIntercalibration_Stat176: 1.09311496e-06 + syst_JES_EtaIntercalibration_Stat177: 1.05250212e-06 + syst_JES_EtaIntercalibration_Stat178: 1.57096569e-07 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 syst_JES_EtaIntercalibration_Stat180: 0.0 syst_JES_EtaIntercalibration_Stat181: 0.0 syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 - syst_JES_EtaIntercalibration_Stat184: 1.501233115641938e-07 - syst_JES_EtaIntercalibration_Stat185: 1.9783343164136843e-06 - syst_JES_EtaIntercalibration_Stat186: 7.577763456324036e-06 - syst_JES_EtaIntercalibration_Stat187: 5.387645380869086e-06 - syst_JES_EtaIntercalibration_Stat188: 6.866757380306952e-07 + syst_JES_EtaIntercalibration_Stat184: 1.50123312e-07 + syst_JES_EtaIntercalibration_Stat185: 1.97833432e-06 + syst_JES_EtaIntercalibration_Stat186: 7.57776346e-06 + syst_JES_EtaIntercalibration_Stat187: 5.38764538e-06 + syst_JES_EtaIntercalibration_Stat188: 6.86675738e-07 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 - syst_JES_EtaIntercalibration_Stat191: 2.9010654508300913e-07 - syst_JES_EtaIntercalibration_Stat192: 6.188190426126202e-06 - syst_JES_EtaIntercalibration_Stat193: 8.616725291547827e-06 - syst_JES_EtaIntercalibration_Stat194: 2.3769650817797046e-06 - syst_JES_EtaIntercalibration_Stat195: 2.472319558633147e-07 - syst_JES_EtaIntercalibration_Stat196: 8.08634483249385e-13 + syst_JES_EtaIntercalibration_Stat191: 2.90106545e-07 + syst_JES_EtaIntercalibration_Stat192: 6.18819043e-06 + syst_JES_EtaIntercalibration_Stat193: 8.61672529e-06 + syst_JES_EtaIntercalibration_Stat194: 2.37696508e-06 + syst_JES_EtaIntercalibration_Stat195: 2.47231956e-07 + syst_JES_EtaIntercalibration_Stat196: 8.08634483e-13 syst_JES_EtaIntercalibration_Stat197: 0.0 syst_JES_EtaIntercalibration_Stat198: 0.0 - syst_JES_EtaIntercalibration_Stat199: 3.0819414059972e-07 + syst_JES_EtaIntercalibration_Stat199: 3.08194141e-07 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 3.990719484002853e-06 - syst_JES_EtaIntercalibration_Stat201: 1.5182262677216461e-05 - syst_JES_EtaIntercalibration_Stat202: 1.0945058371246816e-05 - syst_JES_EtaIntercalibration_Stat203: 1.5980100124842772e-07 + syst_JES_EtaIntercalibration_Stat200: 3.99071948e-06 + syst_JES_EtaIntercalibration_Stat201: 1.51822627e-05 + syst_JES_EtaIntercalibration_Stat202: 1.09450584e-05 + syst_JES_EtaIntercalibration_Stat203: 1.59801001e-07 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 - syst_JES_EtaIntercalibration_Stat206: 5.353776120646063e-07 - syst_JES_EtaIntercalibration_Stat207: 1.141334990263595e-05 - syst_JES_EtaIntercalibration_Stat208: 2.2330738904030923e-05 - syst_JES_EtaIntercalibration_Stat209: 4.701057105322164e-06 + syst_JES_EtaIntercalibration_Stat206: 5.35377612e-07 + syst_JES_EtaIntercalibration_Stat207: 1.14133499e-05 + syst_JES_EtaIntercalibration_Stat208: 2.23307389e-05 + syst_JES_EtaIntercalibration_Stat209: 4.70105711e-06 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 2.3959433277938777e-07 - syst_JES_EtaIntercalibration_Stat211: 8.526242240870242e-13 - syst_JES_EtaIntercalibration_Stat212: 1.379549458156539e-07 - syst_JES_EtaIntercalibration_Stat213: 4.784855771076073e-06 - syst_JES_EtaIntercalibration_Stat214: 1.5231279493200826e-05 - syst_JES_EtaIntercalibration_Stat215: 1.180070763768004e-05 - syst_JES_EtaIntercalibration_Stat216: 1.618323438006136e-07 + syst_JES_EtaIntercalibration_Stat210: 2.39594333e-07 + syst_JES_EtaIntercalibration_Stat211: 8.52624224e-13 + syst_JES_EtaIntercalibration_Stat212: 1.37954946e-07 + syst_JES_EtaIntercalibration_Stat213: 4.78485577e-06 + syst_JES_EtaIntercalibration_Stat214: 1.52312795e-05 + syst_JES_EtaIntercalibration_Stat215: 1.18007076e-05 + syst_JES_EtaIntercalibration_Stat216: 1.61832344e-07 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 - syst_JES_EtaIntercalibration_Stat219: 5.914979305754164e-07 + syst_JES_EtaIntercalibration_Stat219: 5.91497931e-07 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 1.4002103663378587e-05 - syst_JES_EtaIntercalibration_Stat221: 1.8664420698216165e-05 - syst_JES_EtaIntercalibration_Stat222: 4.7573447426059e-06 - syst_JES_EtaIntercalibration_Stat223: 3.0137684051698464e-07 - syst_JES_EtaIntercalibration_Stat224: 4.782214285808224e-07 - syst_JES_EtaIntercalibration_Stat225: 1.6251500699935375e-05 - syst_JES_EtaIntercalibration_Stat226: 4.781960058386101e-05 - syst_JES_EtaIntercalibration_Stat227: 3.6371026422139915e-05 - syst_JES_EtaIntercalibration_Stat228: 7.137919865058726e-07 + syst_JES_EtaIntercalibration_Stat220: 1.40021037e-05 + syst_JES_EtaIntercalibration_Stat221: 1.86644207e-05 + syst_JES_EtaIntercalibration_Stat222: 4.75734474e-06 + syst_JES_EtaIntercalibration_Stat223: 3.01376841e-07 + syst_JES_EtaIntercalibration_Stat224: 4.78221429e-07 + syst_JES_EtaIntercalibration_Stat225: 1.62515007e-05 + syst_JES_EtaIntercalibration_Stat226: 4.78196006e-05 + syst_JES_EtaIntercalibration_Stat227: 3.63710264e-05 + syst_JES_EtaIntercalibration_Stat228: 7.13791987e-07 syst_JES_EtaIntercalibration_Stat229: 0.0 syst_JES_EtaIntercalibration_Stat23: 0.0 syst_JES_EtaIntercalibration_Stat230: 0.0 - syst_JES_EtaIntercalibration_Stat231: 3.606129846252577e-07 - syst_JES_EtaIntercalibration_Stat232: 4.09344866829914e-05 - syst_JES_EtaIntercalibration_Stat233: 4.745631965291872e-05 - syst_JES_EtaIntercalibration_Stat234: 1.895025857343377e-05 - syst_JES_EtaIntercalibration_Stat235: 1.261647209008921e-06 - syst_JES_EtaIntercalibration_Stat236: 3.1498342813551317e-06 - syst_JES_EtaIntercalibration_Stat237: 1.1415284621944386e-05 - syst_JES_EtaIntercalibration_Stat238: 6.1646713416045144e-06 - syst_JES_EtaIntercalibration_Stat239: 1.4624560463480603e-07 + syst_JES_EtaIntercalibration_Stat231: 3.60612985e-07 + syst_JES_EtaIntercalibration_Stat232: 4.09344867e-05 + syst_JES_EtaIntercalibration_Stat233: 4.74563197e-05 + syst_JES_EtaIntercalibration_Stat234: 1.89502586e-05 + syst_JES_EtaIntercalibration_Stat235: 1.26164721e-06 + syst_JES_EtaIntercalibration_Stat236: 3.14983428e-06 + syst_JES_EtaIntercalibration_Stat237: 1.14152846e-05 + syst_JES_EtaIntercalibration_Stat238: 6.16467134e-06 + syst_JES_EtaIntercalibration_Stat239: 1.46245605e-07 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 - syst_JES_EtaIntercalibration_Stat242: 6.262362393697764e-08 - syst_JES_EtaIntercalibration_Stat243: 6.563154024552524e-06 - syst_JES_EtaIntercalibration_Stat244: 9.806485137397598e-06 - syst_JES_EtaIntercalibration_Stat245: 3.1434027342992493e-06 + syst_JES_EtaIntercalibration_Stat242: 6.26236239e-08 + syst_JES_EtaIntercalibration_Stat243: 6.56315402e-06 + syst_JES_EtaIntercalibration_Stat244: 9.80648514e-06 + syst_JES_EtaIntercalibration_Stat245: 3.14340273e-06 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 - syst_JES_EtaIntercalibration_Stat27: 2.340074094446584e-20 - syst_JES_EtaIntercalibration_Stat28: 8.426946838262762e-16 - syst_JES_EtaIntercalibration_Stat29: 6.609505889985132e-10 + syst_JES_EtaIntercalibration_Stat27: 2.34007409e-20 + syst_JES_EtaIntercalibration_Stat28: 8.42694684e-16 + syst_JES_EtaIntercalibration_Stat29: 6.60950589e-10 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 6.620764229795251e-10 - syst_JES_EtaIntercalibration_Stat31: 4.533642988811537e-21 + syst_JES_EtaIntercalibration_Stat30: 6.62076423e-10 + syst_JES_EtaIntercalibration_Stat31: 4.53364299e-21 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 - syst_JES_EtaIntercalibration_Stat34: 7.001815389597187e-22 - syst_JES_EtaIntercalibration_Stat35: 5.707988638137764e-13 - syst_JES_EtaIntercalibration_Stat36: 5.714096007560905e-13 - syst_JES_EtaIntercalibration_Stat37: 1.0587691046092154e-17 - syst_JES_EtaIntercalibration_Stat38: 1.8639099139979915e-20 + syst_JES_EtaIntercalibration_Stat34: 7.00181539e-22 + syst_JES_EtaIntercalibration_Stat35: 5.70798864e-13 + syst_JES_EtaIntercalibration_Stat36: 5.71409601e-13 + syst_JES_EtaIntercalibration_Stat37: 1.05876910e-17 + syst_JES_EtaIntercalibration_Stat38: 1.86390991e-20 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 syst_JES_EtaIntercalibration_Stat40: 0.0 @@ -31667,21 +31667,21 @@ bins: syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 syst_JES_EtaIntercalibration_Stat47: 0.0 - syst_JES_EtaIntercalibration_Stat48: 1.2947079786577358e-20 - syst_JES_EtaIntercalibration_Stat49: 7.880059454090432e-20 - syst_JES_EtaIntercalibration_Stat5: 1.097687199296776e-20 - syst_JES_EtaIntercalibration_Stat50: 8.695554294005644e-16 - syst_JES_EtaIntercalibration_Stat51: 6.54715780303924e-10 - syst_JES_EtaIntercalibration_Stat52: 6.580927091537831e-10 - syst_JES_EtaIntercalibration_Stat53: 2.8155110845990287e-20 - syst_JES_EtaIntercalibration_Stat54: 1.477439338856252e-20 + syst_JES_EtaIntercalibration_Stat48: 1.29470798e-20 + syst_JES_EtaIntercalibration_Stat49: 7.88005945e-20 + syst_JES_EtaIntercalibration_Stat5: 1.09768720e-20 + syst_JES_EtaIntercalibration_Stat50: 8.69555429e-16 + syst_JES_EtaIntercalibration_Stat51: 6.54715780e-10 + syst_JES_EtaIntercalibration_Stat52: 6.58092709e-10 + syst_JES_EtaIntercalibration_Stat53: 2.81551108e-20 + syst_JES_EtaIntercalibration_Stat54: 1.47743934e-20 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 3.037928735174675e-21 - syst_JES_EtaIntercalibration_Stat57: 5.633801891341495e-13 - syst_JES_EtaIntercalibration_Stat58: 5.691992827267155e-13 - syst_JES_EtaIntercalibration_Stat59: 2.907290491161831e-17 - syst_JES_EtaIntercalibration_Stat6: 2.598245694213694e-20 - syst_JES_EtaIntercalibration_Stat60: 2.4886219540139078e-19 + syst_JES_EtaIntercalibration_Stat56: 3.03792874e-21 + syst_JES_EtaIntercalibration_Stat57: 5.63380189e-13 + syst_JES_EtaIntercalibration_Stat58: 5.69199283e-13 + syst_JES_EtaIntercalibration_Stat59: 2.90729049e-17 + syst_JES_EtaIntercalibration_Stat6: 2.59824569e-20 + syst_JES_EtaIntercalibration_Stat60: 2.48862195e-19 syst_JES_EtaIntercalibration_Stat61: 0.0 syst_JES_EtaIntercalibration_Stat62: 0.0 syst_JES_EtaIntercalibration_Stat63: 0.0 @@ -31691,21 +31691,21 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 1.67513432297234e-19 - syst_JES_EtaIntercalibration_Stat70: 1.097687199296776e-20 - syst_JES_EtaIntercalibration_Stat71: 3.4674386050801245e-19 - syst_JES_EtaIntercalibration_Stat72: 1.8259437970540056e-15 - syst_JES_EtaIntercalibration_Stat73: 7.390717742929167e-09 - syst_JES_EtaIntercalibration_Stat74: 6.986363516701661e-10 - syst_JES_EtaIntercalibration_Stat75: 5.901682159139036e-19 - syst_JES_EtaIntercalibration_Stat76: 1.477439338856252e-20 + syst_JES_EtaIntercalibration_Stat7: 1.67513432e-19 + syst_JES_EtaIntercalibration_Stat70: 1.09768720e-20 + syst_JES_EtaIntercalibration_Stat71: 3.46743861e-19 + syst_JES_EtaIntercalibration_Stat72: 1.82594380e-15 + syst_JES_EtaIntercalibration_Stat73: 7.39071774e-09 + syst_JES_EtaIntercalibration_Stat74: 6.98636352e-10 + syst_JES_EtaIntercalibration_Stat75: 5.90168216e-19 + syst_JES_EtaIntercalibration_Stat76: 1.47743934e-20 syst_JES_EtaIntercalibration_Stat77: 0.0 - syst_JES_EtaIntercalibration_Stat78: 3.3404831985807084e-19 - syst_JES_EtaIntercalibration_Stat79: 5.321622041754093e-13 - syst_JES_EtaIntercalibration_Stat8: 2.5189319537256258e-20 - syst_JES_EtaIntercalibration_Stat80: 1.1445652433808952e-10 - syst_JES_EtaIntercalibration_Stat81: 8.088856092098252e-13 - syst_JES_EtaIntercalibration_Stat82: 2.713682507221506e-19 + syst_JES_EtaIntercalibration_Stat78: 3.34048320e-19 + syst_JES_EtaIntercalibration_Stat79: 5.32162204e-13 + syst_JES_EtaIntercalibration_Stat8: 2.51893195e-20 + syst_JES_EtaIntercalibration_Stat80: 1.14456524e-10 + syst_JES_EtaIntercalibration_Stat81: 8.08885609e-13 + syst_JES_EtaIntercalibration_Stat82: 2.71368251e-19 syst_JES_EtaIntercalibration_Stat83: 0.0 syst_JES_EtaIntercalibration_Stat84: 0.0 syst_JES_EtaIntercalibration_Stat85: 0.0 @@ -31715,118 +31715,118 @@ bins: syst_JES_EtaIntercalibration_Stat89: 0.0 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 9.403303834291434e-21 - syst_JES_EtaIntercalibration_Stat92: 6.221533269771608e-17 - syst_JES_EtaIntercalibration_Stat93: 2.5571161505688396e-15 - syst_JES_EtaIntercalibration_Stat94: 7.42781449064279e-09 - syst_JES_EtaIntercalibration_Stat95: 7.109176225660747e-10 - syst_JES_EtaIntercalibration_Stat96: 1.754138740236929e-18 - syst_JES_EtaIntercalibration_Stat97: 1.477439338856252e-20 + syst_JES_EtaIntercalibration_Stat91: 9.40330383e-21 + syst_JES_EtaIntercalibration_Stat92: 6.22153327e-17 + syst_JES_EtaIntercalibration_Stat93: 2.55711615e-15 + syst_JES_EtaIntercalibration_Stat94: 7.42781449e-09 + syst_JES_EtaIntercalibration_Stat95: 7.10917623e-10 + syst_JES_EtaIntercalibration_Stat96: 1.75413874e-18 + syst_JES_EtaIntercalibration_Stat97: 1.47743934e-20 syst_JES_EtaIntercalibration_Stat98: 0.0 - syst_JES_EtaIntercalibration_Stat99: 3.731694062852769e-14 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0004944493983210011 - syst_JES_Flavour_Comp: 0.0012422984303298464 - syst_JES_Gjet_Generator: 0.0015935648716007768 - syst_JES_Gjet_OOC: 0.0013156482613145507 - syst_JES_Gjet_Purity: 0.0002342550052827047 - syst_JES_Gjet_Stat1: 4.06652219347196e-06 - syst_JES_Gjet_Stat10: 2.6093736317361682e-05 - syst_JES_Gjet_Stat11: 2.643691500534811e-05 - syst_JES_Gjet_Stat12: 8.68914821774839e-05 - syst_JES_Gjet_Stat13: 0.0002650892444064829 - syst_JES_Gjet_Stat14: 0.0007217388360757649 - syst_JES_Gjet_Stat15: 0.0008235509941709743 - syst_JES_Gjet_Stat2: 4.288549026185896e-06 - syst_JES_Gjet_Stat3: 5.9529322948862775e-06 - syst_JES_Gjet_Stat4: 6.320585653244485e-06 - syst_JES_Gjet_Stat5: 6.015733766549182e-06 - syst_JES_Gjet_Stat6: 1.4291389951645712e-05 - syst_JES_Gjet_Stat7: 1.610752962902754e-05 - syst_JES_Gjet_Stat8: 1.2957726912927282e-05 - syst_JES_Gjet_Stat9: 1.6232358885879775e-05 - syst_JES_Gjet_Veto: 0.0013234677593353 - syst_JES_Gjet_dPhi: 0.0001342039887633747 - syst_JES_LArESZee: 0.002412150078249693 - syst_JES_LArEsmear: 0.00020733245645580914 - syst_JES_LAr_JVT: 0.0002566613089267644 - syst_JES_MJB_Alpha: 1.4875993034080112e-05 - syst_JES_MJB_Asym: 0.0002700878884733635 - syst_JES_MJB_Beta: 1.7791017396427895e-05 - syst_JES_MJB_Stat1: 6.085560512393249e-07 - syst_JES_MJB_Stat10: 2.353687479254627e-05 - syst_JES_MJB_Stat11: 2.8109621128716763e-05 - syst_JES_MJB_Stat12: 4.146962502844703e-05 - syst_JES_MJB_Stat13: 2.962208762055774e-05 - syst_JES_MJB_Stat14: 1.1669366853004493e-05 - syst_JES_MJB_Stat15: 4.438208281502795e-06 - syst_JES_MJB_Stat16: 2.0962724059625455e-05 + syst_JES_EtaIntercalibration_Stat99: 3.73169406e-14 + syst_JES_EtaIntercalibration_TotalStat_MJB: 4.94449398e-04 + syst_JES_Flavour_Comp: 1.24229843e-03 + syst_JES_Gjet_Generator: 1.59356487e-03 + syst_JES_Gjet_OOC: 1.31564826e-03 + syst_JES_Gjet_Purity: 2.34255005e-04 + syst_JES_Gjet_Stat1: 4.06652219e-06 + syst_JES_Gjet_Stat10: 2.60937363e-05 + syst_JES_Gjet_Stat11: 2.64369150e-05 + syst_JES_Gjet_Stat12: 8.68914822e-05 + syst_JES_Gjet_Stat13: 2.65089244e-04 + syst_JES_Gjet_Stat14: 7.21738836e-04 + syst_JES_Gjet_Stat15: 8.23550994e-04 + syst_JES_Gjet_Stat2: 4.28854903e-06 + syst_JES_Gjet_Stat3: 5.95293229e-06 + syst_JES_Gjet_Stat4: 6.32058565e-06 + syst_JES_Gjet_Stat5: 6.01573377e-06 + syst_JES_Gjet_Stat6: 1.42913900e-05 + syst_JES_Gjet_Stat7: 1.61075296e-05 + syst_JES_Gjet_Stat8: 1.29577269e-05 + syst_JES_Gjet_Stat9: 1.62323589e-05 + syst_JES_Gjet_Veto: 1.32346776e-03 + syst_JES_Gjet_dPhi: 1.34203989e-04 + syst_JES_LArESZee: 2.41215008e-03 + syst_JES_LArEsmear: 2.07332456e-04 + syst_JES_LAr_JVT: 2.56661309e-04 + syst_JES_MJB_Alpha: 1.48759930e-05 + syst_JES_MJB_Asym: 2.70087888e-04 + syst_JES_MJB_Beta: 1.77910174e-05 + syst_JES_MJB_Stat1: 6.08556051e-07 + syst_JES_MJB_Stat10: 2.35368748e-05 + syst_JES_MJB_Stat11: 2.81096211e-05 + syst_JES_MJB_Stat12: 4.14696250e-05 + syst_JES_MJB_Stat13: 2.96220876e-05 + syst_JES_MJB_Stat14: 1.16693669e-05 + syst_JES_MJB_Stat15: 4.43820828e-06 + syst_JES_MJB_Stat16: 2.09627241e-05 syst_JES_MJB_Stat2: 0.0 - syst_JES_MJB_Stat3: 1.9017917867106272e-06 - syst_JES_MJB_Stat4: 1.0421749709141936e-06 - syst_JES_MJB_Stat5: 1.9191122947863162e-06 - syst_JES_MJB_Stat6: 6.171414829680468e-06 - syst_JES_MJB_Stat7: 9.877381877299268e-06 - syst_JES_MJB_Stat8: 1.280322688817159e-05 - syst_JES_MJB_Stat9: 1.7007010319277166e-05 - syst_JES_MJB_Threshold: 0.0001818338458593449 - syst_JES_Pileup_MuOffset: 0.0003175540268993609 - syst_JES_Pileup_NPVOffset: 0.00032727777193081723 - syst_JES_Pileup_Pt_term: 0.00022219326609958278 - syst_JES_PunchThrough_MC15: 0.0003136515702176541 - syst_JES_SingleParticle_HighPt: 9.494783449347332e-12 - syst_JES_Zjet_MC: 0.0006159740578952981 - syst_JES_Zjet_MuScale: 4.920855819875238e-05 - syst_JES_Zjet_MuSmearID: 1.2199987540977244e-05 - syst_JES_Zjet_MuSmearMS: 0.00017063020688025903 - syst_JES_Zjet_OOC: 0.0003584311091409338 - syst_JES_Zjet_Stat1: 2.8403251134333197e-05 - syst_JES_Zjet_Stat10: 3.0825000811030005e-05 - syst_JES_Zjet_Stat11: 4.2921945435872316e-05 - syst_JES_Zjet_Stat12: 0.00011539595346024919 - syst_JES_Zjet_Stat13: 0.0001794750400473559 - syst_JES_Zjet_Stat2: 1.1514673768717896e-07 - syst_JES_Zjet_Stat3: 1.4553079674075862e-05 - syst_JES_Zjet_Stat4: 1.4266087165021808e-05 - syst_JES_Zjet_Stat5: 1.7154570819463832e-05 - syst_JES_Zjet_Stat6: 1.4075424354171351e-05 - syst_JES_Zjet_Stat7: 1.4491501328364844e-05 - syst_JES_Zjet_Stat8: 1.3464107842705362e-05 - syst_JES_Zjet_Stat9: 1.8508665538066216e-05 - syst_JES_Zjet_Veto: 7.959388717106358e-05 - syst_JES_Zjet_dPhi: 7.266898857146699e-05 + syst_JES_MJB_Stat3: 1.90179179e-06 + syst_JES_MJB_Stat4: 1.04217497e-06 + syst_JES_MJB_Stat5: 1.91911229e-06 + syst_JES_MJB_Stat6: 6.17141483e-06 + syst_JES_MJB_Stat7: 9.87738188e-06 + syst_JES_MJB_Stat8: 1.28032269e-05 + syst_JES_MJB_Stat9: 1.70070103e-05 + syst_JES_MJB_Threshold: 1.81833846e-04 + syst_JES_Pileup_MuOffset: 3.17554027e-04 + syst_JES_Pileup_NPVOffset: 3.27277772e-04 + syst_JES_Pileup_Pt_term: 2.22193266e-04 + syst_JES_PunchThrough_MC15: 3.13651570e-04 + syst_JES_SingleParticle_HighPt: 9.49478345e-12 + syst_JES_Zjet_MC: 6.15974058e-04 + syst_JES_Zjet_MuScale: 4.92085582e-05 + syst_JES_Zjet_MuSmearID: 1.21999875e-05 + syst_JES_Zjet_MuSmearMS: 1.70630207e-04 + syst_JES_Zjet_OOC: 3.58431109e-04 + syst_JES_Zjet_Stat1: 2.84032511e-05 + syst_JES_Zjet_Stat10: 3.08250008e-05 + syst_JES_Zjet_Stat11: 4.29219454e-05 + syst_JES_Zjet_Stat12: 1.15395953e-04 + syst_JES_Zjet_Stat13: 1.79475040e-04 + syst_JES_Zjet_Stat2: 1.15146738e-07 + syst_JES_Zjet_Stat3: 1.45530797e-05 + syst_JES_Zjet_Stat4: 1.42660872e-05 + syst_JES_Zjet_Stat5: 1.71545708e-05 + syst_JES_Zjet_Stat6: 1.40754244e-05 + syst_JES_Zjet_Stat7: 1.44915013e-05 + syst_JES_Zjet_Stat8: 1.34641078e-05 + syst_JES_Zjet_Stat9: 1.85086655e-05 + syst_JES_Zjet_Veto: 7.95938872e-05 + syst_JES_Zjet_dPhi: 7.26689886e-05 syst_PRW: 0.0 - syst_Unfolding_bias: 6.304e-05 - syst_cleaning: 0.0003816573954478021 + syst_Unfolding_bias: 6.30400000e-05 + syst_cleaning: 3.81657395e-04 syst_lumi: 0.00129 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.00025281461093061845 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 2.9892045764718076e-05 - syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.4071108698322246e-05 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 2.52814611e-04 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 2.98920458e-05 + syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.40711087e-05 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 6.521112079239244e-05 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.00015109026275706848 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0003558802151005307 -- stat: 0.0004201 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 6.52111208e-05 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.51090263e-04 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 3.55880215e-04 +- stat: 4.20100000e-04 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.00023671130095540436 - syst_JER_NP1: 4.048953568516192e-05 - syst_JER_NP2: 0.00016830339234549018 - syst_JER_NP3: 1.2431215336804362e-05 - syst_JER_NP4: 2.0715102582415565e-14 - syst_JER_NP5: 5.190612153255216e-09 - syst_JER_NP6: 1.2288607437378738e-16 - syst_JER_NP7: 4.341101588306822e-19 - syst_JER_NP8: 1.9537299583105135e-05 - syst_JES_EtaIntercalibration_Modelling: 0.0022645809214951887 + syst_JER_NP0: 2.36711301e-04 + syst_JER_NP1: 4.04895357e-05 + syst_JER_NP2: 1.68303392e-04 + syst_JER_NP3: 1.24312153e-05 + syst_JER_NP4: 2.07151026e-14 + syst_JER_NP5: 5.19061215e-09 + syst_JER_NP6: 1.22886074e-16 + syst_JER_NP7: 4.34110159e-19 + syst_JER_NP8: 1.95372996e-05 + syst_JES_EtaIntercalibration_Modelling: 2.26458092e-03 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 8.116627444326862e-15 - syst_JES_EtaIntercalibration_Stat101: 3.950405527520373e-10 - syst_JES_EtaIntercalibration_Stat102: 3.017880078382837e-14 - syst_JES_EtaIntercalibration_Stat103: 1.0153720894332283e-17 + syst_JES_EtaIntercalibration_Stat100: 8.11662744e-15 + syst_JES_EtaIntercalibration_Stat101: 3.95040553e-10 + syst_JES_EtaIntercalibration_Stat102: 3.01788008e-14 + syst_JES_EtaIntercalibration_Stat103: 1.01537209e-17 syst_JES_EtaIntercalibration_Stat104: 0.0 syst_JES_EtaIntercalibration_Stat105: 0.0 syst_JES_EtaIntercalibration_Stat106: 0.0 @@ -31835,170 +31835,170 @@ bins: syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 syst_JES_EtaIntercalibration_Stat110: 0.0 - syst_JES_EtaIntercalibration_Stat111: 1.3284829694053289e-21 - syst_JES_EtaIntercalibration_Stat112: 1.4739891451432064e-16 - syst_JES_EtaIntercalibration_Stat113: 5.331870130931095e-08 - syst_JES_EtaIntercalibration_Stat114: 1.0153240416048218e-07 - syst_JES_EtaIntercalibration_Stat115: 1.7781908652335384e-07 - syst_JES_EtaIntercalibration_Stat116: 9.100379883289284e-14 + syst_JES_EtaIntercalibration_Stat111: 1.32848297e-21 + syst_JES_EtaIntercalibration_Stat112: 1.47398915e-16 + syst_JES_EtaIntercalibration_Stat113: 5.33187013e-08 + syst_JES_EtaIntercalibration_Stat114: 1.01532404e-07 + syst_JES_EtaIntercalibration_Stat115: 1.77819087e-07 + syst_JES_EtaIntercalibration_Stat116: 9.10037988e-14 syst_JES_EtaIntercalibration_Stat117: 0.0 syst_JES_EtaIntercalibration_Stat118: 0.0 - syst_JES_EtaIntercalibration_Stat119: 9.150422365928736e-14 + syst_JES_EtaIntercalibration_Stat119: 9.15042237e-14 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 4.703369418906527e-08 - syst_JES_EtaIntercalibration_Stat121: 1.9552206591776284e-07 - syst_JES_EtaIntercalibration_Stat122: 1.1701735707711992e-07 - syst_JES_EtaIntercalibration_Stat123: 1.276790470946584e-13 + syst_JES_EtaIntercalibration_Stat120: 4.70336942e-08 + syst_JES_EtaIntercalibration_Stat121: 1.95522066e-07 + syst_JES_EtaIntercalibration_Stat122: 1.17017357e-07 + syst_JES_EtaIntercalibration_Stat123: 1.27679047e-13 syst_JES_EtaIntercalibration_Stat124: 0.0 syst_JES_EtaIntercalibration_Stat125: 0.0 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 syst_JES_EtaIntercalibration_Stat128: 0.0 syst_JES_EtaIntercalibration_Stat129: 0.0 - syst_JES_EtaIntercalibration_Stat13: 9.169477489400166e-14 + syst_JES_EtaIntercalibration_Stat13: 9.16947749e-14 syst_JES_EtaIntercalibration_Stat130: 0.0 - syst_JES_EtaIntercalibration_Stat131: 1.0547537627332742e-15 - syst_JES_EtaIntercalibration_Stat132: 1.3267398580901558e-07 - syst_JES_EtaIntercalibration_Stat133: 1.0306394805168294e-08 - syst_JES_EtaIntercalibration_Stat134: 2.0881134326228546e-08 - syst_JES_EtaIntercalibration_Stat135: 1.7540845925789897e-11 + syst_JES_EtaIntercalibration_Stat131: 1.05475376e-15 + syst_JES_EtaIntercalibration_Stat132: 1.32673986e-07 + syst_JES_EtaIntercalibration_Stat133: 1.03063948e-08 + syst_JES_EtaIntercalibration_Stat134: 2.08811343e-08 + syst_JES_EtaIntercalibration_Stat135: 1.75408459e-11 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 - syst_JES_EtaIntercalibration_Stat138: 8.558626862702728e-14 - syst_JES_EtaIntercalibration_Stat139: 1.8431857767192109e-07 - syst_JES_EtaIntercalibration_Stat14: 2.0151434955109277e-20 - syst_JES_EtaIntercalibration_Stat140: 4.889310790643196e-11 - syst_JES_EtaIntercalibration_Stat141: 1.854406542178656e-07 - syst_JES_EtaIntercalibration_Stat142: 1.88792042735186e-10 + syst_JES_EtaIntercalibration_Stat138: 8.55862686e-14 + syst_JES_EtaIntercalibration_Stat139: 1.84318578e-07 + syst_JES_EtaIntercalibration_Stat14: 2.01514350e-20 + syst_JES_EtaIntercalibration_Stat140: 4.88931079e-11 + syst_JES_EtaIntercalibration_Stat141: 1.85440654e-07 + syst_JES_EtaIntercalibration_Stat142: 1.88792043e-10 syst_JES_EtaIntercalibration_Stat143: 0.0 syst_JES_EtaIntercalibration_Stat144: 0.0 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 syst_JES_EtaIntercalibration_Stat147: 0.0 syst_JES_EtaIntercalibration_Stat148: 0.0 - syst_JES_EtaIntercalibration_Stat149: 8.176954729052298e-12 - syst_JES_EtaIntercalibration_Stat15: 1.8413398048160473e-20 - syst_JES_EtaIntercalibration_Stat150: 1.2739233689669092e-07 - syst_JES_EtaIntercalibration_Stat151: 2.0631861004152653e-07 - syst_JES_EtaIntercalibration_Stat152: 1.9608888542699202e-08 - syst_JES_EtaIntercalibration_Stat153: 2.053590134803133e-11 + syst_JES_EtaIntercalibration_Stat149: 8.17695473e-12 + syst_JES_EtaIntercalibration_Stat15: 1.84133980e-20 + syst_JES_EtaIntercalibration_Stat150: 1.27392337e-07 + syst_JES_EtaIntercalibration_Stat151: 2.06318610e-07 + syst_JES_EtaIntercalibration_Stat152: 1.96088885e-08 + syst_JES_EtaIntercalibration_Stat153: 2.05359013e-11 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 6.3540282950171845e-15 - syst_JES_EtaIntercalibration_Stat157: 4.905637038142956e-07 - syst_JES_EtaIntercalibration_Stat158: 7.726651085690359e-07 - syst_JES_EtaIntercalibration_Stat159: 1.8729302176803064e-07 + syst_JES_EtaIntercalibration_Stat156: 6.35402830e-15 + syst_JES_EtaIntercalibration_Stat157: 4.90563704e-07 + syst_JES_EtaIntercalibration_Stat158: 7.72665109e-07 + syst_JES_EtaIntercalibration_Stat159: 1.87293022e-07 syst_JES_EtaIntercalibration_Stat16: 0.0 - syst_JES_EtaIntercalibration_Stat160: 3.3961313917456136e-14 + syst_JES_EtaIntercalibration_Stat160: 3.39613139e-14 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 - syst_JES_EtaIntercalibration_Stat167: 3.1433045956004645e-09 - syst_JES_EtaIntercalibration_Stat168: 1.1809578612296038e-07 - syst_JES_EtaIntercalibration_Stat169: 7.340671682482468e-07 + syst_JES_EtaIntercalibration_Stat167: 3.14330460e-09 + syst_JES_EtaIntercalibration_Stat168: 1.18095786e-07 + syst_JES_EtaIntercalibration_Stat169: 7.34067168e-07 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 5.082936823333534e-07 - syst_JES_EtaIntercalibration_Stat171: 2.323683925838452e-08 + syst_JES_EtaIntercalibration_Stat170: 5.08293682e-07 + syst_JES_EtaIntercalibration_Stat171: 2.32368393e-08 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 - syst_JES_EtaIntercalibration_Stat174: 1.3484058030439163e-14 - syst_JES_EtaIntercalibration_Stat175: 6.144757358919878e-07 - syst_JES_EtaIntercalibration_Stat176: 8.278887651731964e-07 - syst_JES_EtaIntercalibration_Stat177: 7.988071448572553e-07 - syst_JES_EtaIntercalibration_Stat178: 1.071460688732909e-07 + syst_JES_EtaIntercalibration_Stat174: 1.34840580e-14 + syst_JES_EtaIntercalibration_Stat175: 6.14475736e-07 + syst_JES_EtaIntercalibration_Stat176: 8.27888765e-07 + syst_JES_EtaIntercalibration_Stat177: 7.98807145e-07 + syst_JES_EtaIntercalibration_Stat178: 1.07146069e-07 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 syst_JES_EtaIntercalibration_Stat180: 0.0 syst_JES_EtaIntercalibration_Stat181: 0.0 syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 - syst_JES_EtaIntercalibration_Stat184: 7.564277543162995e-08 - syst_JES_EtaIntercalibration_Stat185: 1.3085273860336283e-06 - syst_JES_EtaIntercalibration_Stat186: 5.095090848061494e-06 - syst_JES_EtaIntercalibration_Stat187: 3.6500419011293555e-06 - syst_JES_EtaIntercalibration_Stat188: 4.2390695992752937e-07 + syst_JES_EtaIntercalibration_Stat184: 7.56427754e-08 + syst_JES_EtaIntercalibration_Stat185: 1.30852739e-06 + syst_JES_EtaIntercalibration_Stat186: 5.09509085e-06 + syst_JES_EtaIntercalibration_Stat187: 3.65004190e-06 + syst_JES_EtaIntercalibration_Stat188: 4.23906960e-07 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 - syst_JES_EtaIntercalibration_Stat191: 1.7935239056115196e-07 - syst_JES_EtaIntercalibration_Stat192: 4.424469770492278e-06 - syst_JES_EtaIntercalibration_Stat193: 6.489634273208314e-06 - syst_JES_EtaIntercalibration_Stat194: 1.7750247885593036e-06 - syst_JES_EtaIntercalibration_Stat195: 1.661374938868406e-07 - syst_JES_EtaIntercalibration_Stat196: 1.2828908132319758e-13 + syst_JES_EtaIntercalibration_Stat191: 1.79352391e-07 + syst_JES_EtaIntercalibration_Stat192: 4.42446977e-06 + syst_JES_EtaIntercalibration_Stat193: 6.48963427e-06 + syst_JES_EtaIntercalibration_Stat194: 1.77502479e-06 + syst_JES_EtaIntercalibration_Stat195: 1.66137494e-07 + syst_JES_EtaIntercalibration_Stat196: 1.28289081e-13 syst_JES_EtaIntercalibration_Stat197: 0.0 syst_JES_EtaIntercalibration_Stat198: 0.0 - syst_JES_EtaIntercalibration_Stat199: 3.7842371754423636e-07 + syst_JES_EtaIntercalibration_Stat199: 3.78423718e-07 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 2.508086122923214e-06 - syst_JES_EtaIntercalibration_Stat201: 9.602831457440039e-06 - syst_JES_EtaIntercalibration_Stat202: 7.009969240303412e-06 - syst_JES_EtaIntercalibration_Stat203: 7.170879356815315e-08 + syst_JES_EtaIntercalibration_Stat200: 2.50808612e-06 + syst_JES_EtaIntercalibration_Stat201: 9.60283146e-06 + syst_JES_EtaIntercalibration_Stat202: 7.00996924e-06 + syst_JES_EtaIntercalibration_Stat203: 7.17087936e-08 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 - syst_JES_EtaIntercalibration_Stat206: 2.457270168296518e-07 - syst_JES_EtaIntercalibration_Stat207: 7.978749150086121e-06 - syst_JES_EtaIntercalibration_Stat208: 1.514016512459491e-05 - syst_JES_EtaIntercalibration_Stat209: 3.2468449300821255e-06 + syst_JES_EtaIntercalibration_Stat206: 2.45727017e-07 + syst_JES_EtaIntercalibration_Stat207: 7.97874915e-06 + syst_JES_EtaIntercalibration_Stat208: 1.51401651e-05 + syst_JES_EtaIntercalibration_Stat209: 3.24684493e-06 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 1.3775946329744464e-07 - syst_JES_EtaIntercalibration_Stat211: 1.3538974143837488e-13 - syst_JES_EtaIntercalibration_Stat212: 9.233640276185769e-08 - syst_JES_EtaIntercalibration_Stat213: 3.1067160716743977e-06 - syst_JES_EtaIntercalibration_Stat214: 1.0164236223150266e-05 - syst_JES_EtaIntercalibration_Stat215: 7.931784288544413e-06 - syst_JES_EtaIntercalibration_Stat216: 6.764047900480894e-08 + syst_JES_EtaIntercalibration_Stat210: 1.37759463e-07 + syst_JES_EtaIntercalibration_Stat211: 1.35389741e-13 + syst_JES_EtaIntercalibration_Stat212: 9.23364028e-08 + syst_JES_EtaIntercalibration_Stat213: 3.10671607e-06 + syst_JES_EtaIntercalibration_Stat214: 1.01642362e-05 + syst_JES_EtaIntercalibration_Stat215: 7.93178429e-06 + syst_JES_EtaIntercalibration_Stat216: 6.76404790e-08 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 - syst_JES_EtaIntercalibration_Stat219: 2.859149420282193e-07 + syst_JES_EtaIntercalibration_Stat219: 2.85914942e-07 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 8.952677630184166e-06 - syst_JES_EtaIntercalibration_Stat221: 1.2447140103252634e-05 - syst_JES_EtaIntercalibration_Stat222: 3.2688393582432283e-06 - syst_JES_EtaIntercalibration_Stat223: 1.4306739670518926e-07 - syst_JES_EtaIntercalibration_Stat224: 3.089116114057575e-07 - syst_JES_EtaIntercalibration_Stat225: 1.0242616011058892e-05 - syst_JES_EtaIntercalibration_Stat226: 3.124486317780892e-05 - syst_JES_EtaIntercalibration_Stat227: 2.3473314103466514e-05 - syst_JES_EtaIntercalibration_Stat228: 2.7142888571410375e-07 + syst_JES_EtaIntercalibration_Stat220: 8.95267763e-06 + syst_JES_EtaIntercalibration_Stat221: 1.24471401e-05 + syst_JES_EtaIntercalibration_Stat222: 3.26883936e-06 + syst_JES_EtaIntercalibration_Stat223: 1.43067397e-07 + syst_JES_EtaIntercalibration_Stat224: 3.08911611e-07 + syst_JES_EtaIntercalibration_Stat225: 1.02426160e-05 + syst_JES_EtaIntercalibration_Stat226: 3.12448632e-05 + syst_JES_EtaIntercalibration_Stat227: 2.34733141e-05 + syst_JES_EtaIntercalibration_Stat228: 2.71428886e-07 syst_JES_EtaIntercalibration_Stat229: 0.0 syst_JES_EtaIntercalibration_Stat23: 0.0 syst_JES_EtaIntercalibration_Stat230: 0.0 - syst_JES_EtaIntercalibration_Stat231: 2.2265565353119682e-07 - syst_JES_EtaIntercalibration_Stat232: 2.7351919036879296e-05 - syst_JES_EtaIntercalibration_Stat233: 3.158815917396897e-05 - syst_JES_EtaIntercalibration_Stat234: 1.413653567002892e-05 - syst_JES_EtaIntercalibration_Stat235: 7.019536808080716e-07 - syst_JES_EtaIntercalibration_Stat236: 2.1198292384057732e-06 - syst_JES_EtaIntercalibration_Stat237: 7.58090210660974e-06 - syst_JES_EtaIntercalibration_Stat238: 4.213057885906625e-06 - syst_JES_EtaIntercalibration_Stat239: 5.999905561756785e-08 + syst_JES_EtaIntercalibration_Stat231: 2.22655654e-07 + syst_JES_EtaIntercalibration_Stat232: 2.73519190e-05 + syst_JES_EtaIntercalibration_Stat233: 3.15881592e-05 + syst_JES_EtaIntercalibration_Stat234: 1.41365357e-05 + syst_JES_EtaIntercalibration_Stat235: 7.01953681e-07 + syst_JES_EtaIntercalibration_Stat236: 2.11982924e-06 + syst_JES_EtaIntercalibration_Stat237: 7.58090211e-06 + syst_JES_EtaIntercalibration_Stat238: 4.21305789e-06 + syst_JES_EtaIntercalibration_Stat239: 5.99990556e-08 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 - syst_JES_EtaIntercalibration_Stat242: 5.0192056144374074e-08 - syst_JES_EtaIntercalibration_Stat243: 4.6153451387734806e-06 - syst_JES_EtaIntercalibration_Stat244: 6.560790196310197e-06 - syst_JES_EtaIntercalibration_Stat245: 2.2442287650772144e-06 + syst_JES_EtaIntercalibration_Stat242: 5.01920561e-08 + syst_JES_EtaIntercalibration_Stat243: 4.61534514e-06 + syst_JES_EtaIntercalibration_Stat244: 6.56079020e-06 + syst_JES_EtaIntercalibration_Stat245: 2.24422877e-06 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 - syst_JES_EtaIntercalibration_Stat27: 6.643628733606356e-21 - syst_JES_EtaIntercalibration_Stat28: 1.5366643659466395e-16 - syst_JES_EtaIntercalibration_Stat29: 1.3639900128091664e-10 + syst_JES_EtaIntercalibration_Stat27: 6.64362873e-21 + syst_JES_EtaIntercalibration_Stat28: 1.53666437e-16 + syst_JES_EtaIntercalibration_Stat29: 1.36399001e-10 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 1.3665880910190175e-10 - syst_JES_EtaIntercalibration_Stat31: 1.3025022072917956e-21 + syst_JES_EtaIntercalibration_Stat30: 1.36658809e-10 + syst_JES_EtaIntercalibration_Stat31: 1.30250221e-21 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 - syst_JES_EtaIntercalibration_Stat34: 2.1520731284043303e-22 - syst_JES_EtaIntercalibration_Stat35: 9.159982560232733e-14 - syst_JES_EtaIntercalibration_Stat36: 9.172195521943177e-14 - syst_JES_EtaIntercalibration_Stat37: 1.894098477343509e-18 - syst_JES_EtaIntercalibration_Stat38: 3.7639296629320795e-21 + syst_JES_EtaIntercalibration_Stat34: 2.15207313e-22 + syst_JES_EtaIntercalibration_Stat35: 9.15998256e-14 + syst_JES_EtaIntercalibration_Stat36: 9.17219552e-14 + syst_JES_EtaIntercalibration_Stat37: 1.89409848e-18 + syst_JES_EtaIntercalibration_Stat38: 3.76392966e-21 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 syst_JES_EtaIntercalibration_Stat40: 0.0 @@ -32009,21 +32009,21 @@ bins: syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 syst_JES_EtaIntercalibration_Stat47: 0.0 - syst_JES_EtaIntercalibration_Stat48: 3.635574645087073e-21 - syst_JES_EtaIntercalibration_Stat49: 2.058478245573657e-20 - syst_JES_EtaIntercalibration_Stat5: 3.051873522936362e-21 - syst_JES_EtaIntercalibration_Stat50: 1.5861660403312134e-16 - syst_JES_EtaIntercalibration_Stat51: 1.3510005756061132e-10 - syst_JES_EtaIntercalibration_Stat52: 1.3579278434743432e-10 - syst_JES_EtaIntercalibration_Stat53: 6.547353110227063e-21 - syst_JES_EtaIntercalibration_Stat54: 2.8925248486400253e-21 + syst_JES_EtaIntercalibration_Stat48: 3.63557465e-21 + syst_JES_EtaIntercalibration_Stat49: 2.05847825e-20 + syst_JES_EtaIntercalibration_Stat5: 3.05187352e-21 + syst_JES_EtaIntercalibration_Stat50: 1.58616604e-16 + syst_JES_EtaIntercalibration_Stat51: 1.35100058e-10 + syst_JES_EtaIntercalibration_Stat52: 1.35792784e-10 + syst_JES_EtaIntercalibration_Stat53: 6.54735311e-21 + syst_JES_EtaIntercalibration_Stat54: 2.89252485e-21 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 8.848003221066322e-22 - syst_JES_EtaIntercalibration_Stat57: 9.044476168258281e-14 - syst_JES_EtaIntercalibration_Stat58: 9.13573553620171e-14 - syst_JES_EtaIntercalibration_Stat59: 5.801448504468518e-18 - syst_JES_EtaIntercalibration_Stat6: 7.378176197408139e-21 - syst_JES_EtaIntercalibration_Stat60: 6.025769660383643e-20 + syst_JES_EtaIntercalibration_Stat56: 8.84800322e-22 + syst_JES_EtaIntercalibration_Stat57: 9.04447617e-14 + syst_JES_EtaIntercalibration_Stat58: 9.13573554e-14 + syst_JES_EtaIntercalibration_Stat59: 5.80144850e-18 + syst_JES_EtaIntercalibration_Stat6: 7.37817620e-21 + syst_JES_EtaIntercalibration_Stat60: 6.02576966e-20 syst_JES_EtaIntercalibration_Stat61: 0.0 syst_JES_EtaIntercalibration_Stat62: 0.0 syst_JES_EtaIntercalibration_Stat63: 0.0 @@ -32033,21 +32033,21 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 4.0675086576429067e-20 - syst_JES_EtaIntercalibration_Stat70: 3.051873522936362e-21 - syst_JES_EtaIntercalibration_Stat71: 8.374803340974641e-20 - syst_JES_EtaIntercalibration_Stat72: 3.0090103157018255e-16 - syst_JES_EtaIntercalibration_Stat73: 1.8175064999417938e-09 - syst_JES_EtaIntercalibration_Stat74: 1.4206921798897886e-10 - syst_JES_EtaIntercalibration_Stat75: 1.1662885009722082e-19 - syst_JES_EtaIntercalibration_Stat76: 2.8925248486400253e-21 + syst_JES_EtaIntercalibration_Stat7: 4.06750866e-20 + syst_JES_EtaIntercalibration_Stat70: 3.05187352e-21 + syst_JES_EtaIntercalibration_Stat71: 8.37480334e-20 + syst_JES_EtaIntercalibration_Stat72: 3.00901032e-16 + syst_JES_EtaIntercalibration_Stat73: 1.81750650e-09 + syst_JES_EtaIntercalibration_Stat74: 1.42069218e-10 + syst_JES_EtaIntercalibration_Stat75: 1.16628850e-19 + syst_JES_EtaIntercalibration_Stat76: 2.89252485e-21 syst_JES_EtaIntercalibration_Stat77: 0.0 - syst_JES_EtaIntercalibration_Stat78: 7.836764431192252e-20 - syst_JES_EtaIntercalibration_Stat79: 8.54650544732758e-14 - syst_JES_EtaIntercalibration_Stat8: 5.899163055044334e-21 - syst_JES_EtaIntercalibration_Stat80: 3.90486394739339e-11 - syst_JES_EtaIntercalibration_Stat81: 1.283529918345011e-13 - syst_JES_EtaIntercalibration_Stat82: 6.45492567501749e-20 + syst_JES_EtaIntercalibration_Stat78: 7.83676443e-20 + syst_JES_EtaIntercalibration_Stat79: 8.54650545e-14 + syst_JES_EtaIntercalibration_Stat8: 5.89916306e-21 + syst_JES_EtaIntercalibration_Stat80: 3.90486395e-11 + syst_JES_EtaIntercalibration_Stat81: 1.28352992e-13 + syst_JES_EtaIntercalibration_Stat82: 6.45492568e-20 syst_JES_EtaIntercalibration_Stat83: 0.0 syst_JES_EtaIntercalibration_Stat84: 0.0 syst_JES_EtaIntercalibration_Stat85: 0.0 @@ -32057,118 +32057,118 @@ bins: syst_JES_EtaIntercalibration_Stat89: 0.0 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 2.6127986432176512e-21 - syst_JES_EtaIntercalibration_Stat92: 1.0482360549394397e-17 - syst_JES_EtaIntercalibration_Stat93: 4.28306697939689e-16 - syst_JES_EtaIntercalibration_Stat94: 1.827009685222464e-09 - syst_JES_EtaIntercalibration_Stat95: 1.4429224095563835e-10 - syst_JES_EtaIntercalibration_Stat96: 3.86109554498461e-19 - syst_JES_EtaIntercalibration_Stat97: 2.8925248486400253e-21 + syst_JES_EtaIntercalibration_Stat91: 2.61279864e-21 + syst_JES_EtaIntercalibration_Stat92: 1.04823605e-17 + syst_JES_EtaIntercalibration_Stat93: 4.28306698e-16 + syst_JES_EtaIntercalibration_Stat94: 1.82700969e-09 + syst_JES_EtaIntercalibration_Stat95: 1.44292241e-10 + syst_JES_EtaIntercalibration_Stat96: 3.86109554e-19 + syst_JES_EtaIntercalibration_Stat97: 2.89252485e-21 syst_JES_EtaIntercalibration_Stat98: 0.0 - syst_JES_EtaIntercalibration_Stat99: 5.7209425914323755e-15 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0003403801808272626 - syst_JES_Flavour_Comp: 0.0008524106756722372 - syst_JES_Gjet_Generator: 0.0010429376815035496 - syst_JES_Gjet_OOC: 0.0008632919016763681 - syst_JES_Gjet_Purity: 0.0001516748083895279 - syst_JES_Gjet_Stat1: 3.3590360224326263e-06 - syst_JES_Gjet_Stat10: 1.731900112593102e-05 - syst_JES_Gjet_Stat11: 1.725148399413801e-05 - syst_JES_Gjet_Stat12: 5.5555038250369336e-05 - syst_JES_Gjet_Stat13: 0.00017166026768008957 - syst_JES_Gjet_Stat14: 0.00046474716513390373 - syst_JES_Gjet_Stat15: 0.0006145565230310391 - syst_JES_Gjet_Stat2: 3.150251537576008e-06 - syst_JES_Gjet_Stat3: 4.981381635650897e-06 - syst_JES_Gjet_Stat4: 4.237843083456489e-06 - syst_JES_Gjet_Stat5: 3.853507683591665e-06 - syst_JES_Gjet_Stat6: 9.781935289092849e-06 - syst_JES_Gjet_Stat7: 1.0287729049697995e-05 - syst_JES_Gjet_Stat8: 9.086506644470139e-06 - syst_JES_Gjet_Stat9: 1.0125379647203357e-05 - syst_JES_Gjet_Veto: 0.0008719513676232178 - syst_JES_Gjet_dPhi: 8.971584085321833e-05 - syst_JES_LArESZee: 0.0015710603903096789 - syst_JES_LArEsmear: 0.00013977430692012032 - syst_JES_LAr_JVT: 0.00017422683490208964 - syst_JES_MJB_Alpha: 1.1482883903880594e-05 - syst_JES_MJB_Asym: 0.0001924006496870528 - syst_JES_MJB_Beta: 1.1761461505697324e-05 - syst_JES_MJB_Stat1: 2.576425576258705e-07 - syst_JES_MJB_Stat10: 1.547278901814408e-05 - syst_JES_MJB_Stat11: 1.994108071294031e-05 - syst_JES_MJB_Stat12: 3.2402458240078016e-05 - syst_JES_MJB_Stat13: 3.0061358502236722e-05 - syst_JES_MJB_Stat14: 1.9535103659822234e-05 - syst_JES_MJB_Stat15: 1.684160475578263e-05 - syst_JES_MJB_Stat16: 1.9692196423964493e-05 + syst_JES_EtaIntercalibration_Stat99: 5.72094259e-15 + syst_JES_EtaIntercalibration_TotalStat_MJB: 3.40380181e-04 + syst_JES_Flavour_Comp: 8.52410676e-04 + syst_JES_Gjet_Generator: 1.04293768e-03 + syst_JES_Gjet_OOC: 8.63291902e-04 + syst_JES_Gjet_Purity: 1.51674808e-04 + syst_JES_Gjet_Stat1: 3.35903602e-06 + syst_JES_Gjet_Stat10: 1.73190011e-05 + syst_JES_Gjet_Stat11: 1.72514840e-05 + syst_JES_Gjet_Stat12: 5.55550383e-05 + syst_JES_Gjet_Stat13: 1.71660268e-04 + syst_JES_Gjet_Stat14: 4.64747165e-04 + syst_JES_Gjet_Stat15: 6.14556523e-04 + syst_JES_Gjet_Stat2: 3.15025154e-06 + syst_JES_Gjet_Stat3: 4.98138164e-06 + syst_JES_Gjet_Stat4: 4.23784308e-06 + syst_JES_Gjet_Stat5: 3.85350768e-06 + syst_JES_Gjet_Stat6: 9.78193529e-06 + syst_JES_Gjet_Stat7: 1.02877290e-05 + syst_JES_Gjet_Stat8: 9.08650664e-06 + syst_JES_Gjet_Stat9: 1.01253796e-05 + syst_JES_Gjet_Veto: 8.71951368e-04 + syst_JES_Gjet_dPhi: 8.97158409e-05 + syst_JES_LArESZee: 1.57106039e-03 + syst_JES_LArEsmear: 1.39774307e-04 + syst_JES_LAr_JVT: 1.74226835e-04 + syst_JES_MJB_Alpha: 1.14828839e-05 + syst_JES_MJB_Asym: 1.92400650e-04 + syst_JES_MJB_Beta: 1.17614615e-05 + syst_JES_MJB_Stat1: 2.57642558e-07 + syst_JES_MJB_Stat10: 1.54727890e-05 + syst_JES_MJB_Stat11: 1.99410807e-05 + syst_JES_MJB_Stat12: 3.24024582e-05 + syst_JES_MJB_Stat13: 3.00613585e-05 + syst_JES_MJB_Stat14: 1.95351037e-05 + syst_JES_MJB_Stat15: 1.68416048e-05 + syst_JES_MJB_Stat16: 1.96921964e-05 syst_JES_MJB_Stat2: 0.0 - syst_JES_MJB_Stat3: 9.471719841190406e-07 - syst_JES_MJB_Stat4: 6.361822616200487e-07 - syst_JES_MJB_Stat5: 9.717671055865186e-07 - syst_JES_MJB_Stat6: 3.2648021486760875e-06 - syst_JES_MJB_Stat7: 5.97641587826684e-06 - syst_JES_MJB_Stat8: 7.897232600727928e-06 - syst_JES_MJB_Stat9: 1.1835892995460883e-05 - syst_JES_MJB_Threshold: 0.00013131732815969112 - syst_JES_Pileup_MuOffset: 0.00021198724018204492 - syst_JES_Pileup_NPVOffset: 0.00021876660508404842 - syst_JES_Pileup_Pt_term: 0.0001465147774117 - syst_JES_PunchThrough_MC15: 0.0002486271907897444 - syst_JES_SingleParticle_HighPt: 9.403198112876278e-11 - syst_JES_Zjet_MC: 0.00039730786888129966 - syst_JES_Zjet_MuScale: 3.210146881374744e-05 - syst_JES_Zjet_MuSmearID: 9.318003259819135e-06 - syst_JES_Zjet_MuSmearMS: 0.00011108994733998213 - syst_JES_Zjet_OOC: 0.0002391914870976808 - syst_JES_Zjet_Stat1: 2.148364668765524e-05 - syst_JES_Zjet_Stat10: 2.0432589165350533e-05 - syst_JES_Zjet_Stat11: 2.9801639216660548e-05 - syst_JES_Zjet_Stat12: 7.541683764253179e-05 - syst_JES_Zjet_Stat13: 0.00011514284867068383 - syst_JES_Zjet_Stat2: 7.175886495757859e-08 - syst_JES_Zjet_Stat3: 1.1350923872090763e-05 - syst_JES_Zjet_Stat4: 1.085422000882606e-05 - syst_JES_Zjet_Stat5: 1.2654926580190024e-05 - syst_JES_Zjet_Stat6: 9.23149417754244e-06 - syst_JES_Zjet_Stat7: 1.0064252431253898e-05 - syst_JES_Zjet_Stat8: 8.908232035594941e-06 - syst_JES_Zjet_Stat9: 1.1716928127713339e-05 - syst_JES_Zjet_Veto: 5.164224724002626e-05 - syst_JES_Zjet_dPhi: 4.8005074731740604e-05 + syst_JES_MJB_Stat3: 9.47171984e-07 + syst_JES_MJB_Stat4: 6.36182262e-07 + syst_JES_MJB_Stat5: 9.71767106e-07 + syst_JES_MJB_Stat6: 3.26480215e-06 + syst_JES_MJB_Stat7: 5.97641588e-06 + syst_JES_MJB_Stat8: 7.89723260e-06 + syst_JES_MJB_Stat9: 1.18358930e-05 + syst_JES_MJB_Threshold: 1.31317328e-04 + syst_JES_Pileup_MuOffset: 2.11987240e-04 + syst_JES_Pileup_NPVOffset: 2.18766605e-04 + syst_JES_Pileup_Pt_term: 1.46514777e-04 + syst_JES_PunchThrough_MC15: 2.48627191e-04 + syst_JES_SingleParticle_HighPt: 9.40319811e-11 + syst_JES_Zjet_MC: 3.97307869e-04 + syst_JES_Zjet_MuScale: 3.21014688e-05 + syst_JES_Zjet_MuSmearID: 9.31800326e-06 + syst_JES_Zjet_MuSmearMS: 1.11089947e-04 + syst_JES_Zjet_OOC: 2.39191487e-04 + syst_JES_Zjet_Stat1: 2.14836467e-05 + syst_JES_Zjet_Stat10: 2.04325892e-05 + syst_JES_Zjet_Stat11: 2.98016392e-05 + syst_JES_Zjet_Stat12: 7.54168376e-05 + syst_JES_Zjet_Stat13: 1.15142849e-04 + syst_JES_Zjet_Stat2: 7.17588650e-08 + syst_JES_Zjet_Stat3: 1.13509239e-05 + syst_JES_Zjet_Stat4: 1.08542200e-05 + syst_JES_Zjet_Stat5: 1.26549266e-05 + syst_JES_Zjet_Stat6: 9.23149418e-06 + syst_JES_Zjet_Stat7: 1.00642524e-05 + syst_JES_Zjet_Stat8: 8.90823204e-06 + syst_JES_Zjet_Stat9: 1.17169281e-05 + syst_JES_Zjet_Veto: 5.16422472e-05 + syst_JES_Zjet_dPhi: 4.80050747e-05 syst_PRW: 0.0 - syst_Unfolding_bias: 3.9285e-05 - syst_cleaning: 0.0002532258280665699 - syst_lumi: 0.0008039 + syst_Unfolding_bias: 3.92850000e-05 + syst_cleaning: 2.53225828e-04 + syst_lumi: 8.03900000e-04 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.00015934243000531904 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 9.071880331551998e-06 - syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 8.555365158776101e-06 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.59342430e-04 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 9.07188033e-06 + syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 8.55536516e-06 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 1.97894972144317e-05 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 9.422488246211826e-05 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.00023291364816171677 -- stat: 0.00030723 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 1.97894972e-05 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 9.42248825e-05 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 2.32913648e-04 +- stat: 3.07230000e-04 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.00014828420912221232 - syst_JER_NP1: 2.5599574215209127e-05 - syst_JER_NP2: 0.00010925072082142067 - syst_JER_NP3: 3.430688997854513e-06 - syst_JER_NP4: 4.2005971203508666e-15 - syst_JER_NP5: 8.954173714391517e-10 - syst_JER_NP6: 2.9962421464227486e-17 - syst_JER_NP7: 1.3629329367213928e-19 - syst_JER_NP8: 1.234645775111226e-05 - syst_JES_EtaIntercalibration_Modelling: 0.0014608410890647894 + syst_JER_NP0: 1.48284209e-04 + syst_JER_NP1: 2.55995742e-05 + syst_JER_NP2: 1.09250721e-04 + syst_JER_NP3: 3.43068900e-06 + syst_JER_NP4: 4.20059712e-15 + syst_JER_NP5: 8.95417371e-10 + syst_JER_NP6: 2.99624215e-17 + syst_JER_NP7: 1.36293294e-19 + syst_JER_NP8: 1.23464578e-05 + syst_JES_EtaIntercalibration_Modelling: 1.46084109e-03 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 1.365903200038348e-15 - syst_JES_EtaIntercalibration_Stat101: 7.502555283990031e-11 - syst_JES_EtaIntercalibration_Stat102: 5.130932898362636e-15 - syst_JES_EtaIntercalibration_Stat103: 2.309404383710224e-18 + syst_JES_EtaIntercalibration_Stat100: 1.36590320e-15 + syst_JES_EtaIntercalibration_Stat101: 7.50255528e-11 + syst_JES_EtaIntercalibration_Stat102: 5.13093290e-15 + syst_JES_EtaIntercalibration_Stat103: 2.30940438e-18 syst_JES_EtaIntercalibration_Stat104: 0.0 syst_JES_EtaIntercalibration_Stat105: 0.0 syst_JES_EtaIntercalibration_Stat106: 0.0 @@ -32177,170 +32177,170 @@ bins: syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 syst_JES_EtaIntercalibration_Stat110: 0.0 - syst_JES_EtaIntercalibration_Stat111: 4.0729174739982144e-22 - syst_JES_EtaIntercalibration_Stat112: 2.9325745698106294e-17 - syst_JES_EtaIntercalibration_Stat113: 9.12388944062783e-08 - syst_JES_EtaIntercalibration_Stat114: 1.0157031236230927e-07 - syst_JES_EtaIntercalibration_Stat115: 2.2109893304129718e-07 - syst_JES_EtaIntercalibration_Stat116: 1.5597499880991393e-14 + syst_JES_EtaIntercalibration_Stat111: 4.07291747e-22 + syst_JES_EtaIntercalibration_Stat112: 2.93257457e-17 + syst_JES_EtaIntercalibration_Stat113: 9.12388944e-08 + syst_JES_EtaIntercalibration_Stat114: 1.01570312e-07 + syst_JES_EtaIntercalibration_Stat115: 2.21098933e-07 + syst_JES_EtaIntercalibration_Stat116: 1.55974999e-14 syst_JES_EtaIntercalibration_Stat117: 0.0 syst_JES_EtaIntercalibration_Stat118: 0.0 - syst_JES_EtaIntercalibration_Stat119: 1.575299595761514e-14 + syst_JES_EtaIntercalibration_Stat119: 1.57529960e-14 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 1.8654162504376543e-08 - syst_JES_EtaIntercalibration_Stat121: 8.670378077108287e-08 - syst_JES_EtaIntercalibration_Stat122: 7.246900662208698e-08 - syst_JES_EtaIntercalibration_Stat123: 2.1495336175726583e-14 + syst_JES_EtaIntercalibration_Stat120: 1.86541625e-08 + syst_JES_EtaIntercalibration_Stat121: 8.67037808e-08 + syst_JES_EtaIntercalibration_Stat122: 7.24690066e-08 + syst_JES_EtaIntercalibration_Stat123: 2.14953362e-14 syst_JES_EtaIntercalibration_Stat124: 0.0 syst_JES_EtaIntercalibration_Stat125: 0.0 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 syst_JES_EtaIntercalibration_Stat128: 0.0 syst_JES_EtaIntercalibration_Stat129: 0.0 - syst_JES_EtaIntercalibration_Stat13: 1.5778984326886806e-14 + syst_JES_EtaIntercalibration_Stat13: 1.57789843e-14 syst_JES_EtaIntercalibration_Stat130: 0.0 - syst_JES_EtaIntercalibration_Stat131: 1.7866300141607384e-16 - syst_JES_EtaIntercalibration_Stat132: 1.484365661954902e-07 - syst_JES_EtaIntercalibration_Stat133: 2.4252103816112533e-09 - syst_JES_EtaIntercalibration_Stat134: 1.0636196086509265e-07 - syst_JES_EtaIntercalibration_Stat135: 3.0335967800080157e-12 + syst_JES_EtaIntercalibration_Stat131: 1.78663001e-16 + syst_JES_EtaIntercalibration_Stat132: 1.48436566e-07 + syst_JES_EtaIntercalibration_Stat133: 2.42521038e-09 + syst_JES_EtaIntercalibration_Stat134: 1.06361961e-07 + syst_JES_EtaIntercalibration_Stat135: 3.03359678e-12 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 - syst_JES_EtaIntercalibration_Stat138: 1.4745474106758147e-14 - syst_JES_EtaIntercalibration_Stat139: 6.711755861918698e-08 - syst_JES_EtaIntercalibration_Stat14: 5.711581392224049e-21 - syst_JES_EtaIntercalibration_Stat140: 8.26670010871932e-12 - syst_JES_EtaIntercalibration_Stat141: 1.1939067380139038e-07 - syst_JES_EtaIntercalibration_Stat142: 3.586183788205316e-11 + syst_JES_EtaIntercalibration_Stat138: 1.47454741e-14 + syst_JES_EtaIntercalibration_Stat139: 6.71175586e-08 + syst_JES_EtaIntercalibration_Stat14: 5.71158139e-21 + syst_JES_EtaIntercalibration_Stat140: 8.26670011e-12 + syst_JES_EtaIntercalibration_Stat141: 1.19390674e-07 + syst_JES_EtaIntercalibration_Stat142: 3.58618379e-11 syst_JES_EtaIntercalibration_Stat143: 0.0 syst_JES_EtaIntercalibration_Stat144: 0.0 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 syst_JES_EtaIntercalibration_Stat147: 0.0 syst_JES_EtaIntercalibration_Stat148: 0.0 - syst_JES_EtaIntercalibration_Stat149: 1.445654634036342e-12 - syst_JES_EtaIntercalibration_Stat15: 5.149030695072617e-21 - syst_JES_EtaIntercalibration_Stat150: 1.3865066714588864e-07 - syst_JES_EtaIntercalibration_Stat151: 1.2129847319227508e-07 - syst_JES_EtaIntercalibration_Stat152: 1.0659414907950015e-07 - syst_JES_EtaIntercalibration_Stat153: 3.552970627967532e-12 + syst_JES_EtaIntercalibration_Stat149: 1.44565463e-12 + syst_JES_EtaIntercalibration_Stat15: 5.14903070e-21 + syst_JES_EtaIntercalibration_Stat150: 1.38650667e-07 + syst_JES_EtaIntercalibration_Stat151: 1.21298473e-07 + syst_JES_EtaIntercalibration_Stat152: 1.06594149e-07 + syst_JES_EtaIntercalibration_Stat153: 3.55297063e-12 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 1.0238152036914125e-15 - syst_JES_EtaIntercalibration_Stat157: 1.6228185873658214e-07 - syst_JES_EtaIntercalibration_Stat158: 5.294818775935584e-07 - syst_JES_EtaIntercalibration_Stat159: 1.154400593381691e-07 + syst_JES_EtaIntercalibration_Stat156: 1.02381520e-15 + syst_JES_EtaIntercalibration_Stat157: 1.62281859e-07 + syst_JES_EtaIntercalibration_Stat158: 5.29481878e-07 + syst_JES_EtaIntercalibration_Stat159: 1.15440059e-07 syst_JES_EtaIntercalibration_Stat16: 0.0 - syst_JES_EtaIntercalibration_Stat160: 5.885386981329265e-15 + syst_JES_EtaIntercalibration_Stat160: 5.88538698e-15 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 - syst_JES_EtaIntercalibration_Stat167: 5.920100510869726e-10 - syst_JES_EtaIntercalibration_Stat168: 1.570913212115806e-07 - syst_JES_EtaIntercalibration_Stat169: 4.744219087478992e-07 + syst_JES_EtaIntercalibration_Stat167: 5.92010051e-10 + syst_JES_EtaIntercalibration_Stat168: 1.57091321e-07 + syst_JES_EtaIntercalibration_Stat169: 4.74421909e-07 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 4.566685313222272e-07 - syst_JES_EtaIntercalibration_Stat171: 2.9853964070454697e-09 + syst_JES_EtaIntercalibration_Stat170: 4.56668531e-07 + syst_JES_EtaIntercalibration_Stat171: 2.98539641e-09 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 - syst_JES_EtaIntercalibration_Stat174: 2.501092206068681e-15 - syst_JES_EtaIntercalibration_Stat175: 4.218821435839635e-07 - syst_JES_EtaIntercalibration_Stat176: 6.15234727563391e-07 - syst_JES_EtaIntercalibration_Stat177: 4.764021564812653e-07 - syst_JES_EtaIntercalibration_Stat178: 6.830921899714562e-08 + syst_JES_EtaIntercalibration_Stat174: 2.50109221e-15 + syst_JES_EtaIntercalibration_Stat175: 4.21882144e-07 + syst_JES_EtaIntercalibration_Stat176: 6.15234728e-07 + syst_JES_EtaIntercalibration_Stat177: 4.76402156e-07 + syst_JES_EtaIntercalibration_Stat178: 6.83092190e-08 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 syst_JES_EtaIntercalibration_Stat180: 0.0 syst_JES_EtaIntercalibration_Stat181: 0.0 syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 - syst_JES_EtaIntercalibration_Stat184: 1.144143787948001e-07 - syst_JES_EtaIntercalibration_Stat185: 8.413007354685958e-07 - syst_JES_EtaIntercalibration_Stat186: 3.368025951132206e-06 - syst_JES_EtaIntercalibration_Stat187: 2.5750077184350337e-06 - syst_JES_EtaIntercalibration_Stat188: 2.1998334664242203e-07 + syst_JES_EtaIntercalibration_Stat184: 1.14414379e-07 + syst_JES_EtaIntercalibration_Stat185: 8.41300735e-07 + syst_JES_EtaIntercalibration_Stat186: 3.36802595e-06 + syst_JES_EtaIntercalibration_Stat187: 2.57500772e-06 + syst_JES_EtaIntercalibration_Stat188: 2.19983347e-07 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 - syst_JES_EtaIntercalibration_Stat191: 9.466002152440069e-08 - syst_JES_EtaIntercalibration_Stat192: 3.2020575806815215e-06 - syst_JES_EtaIntercalibration_Stat193: 4.863445769205204e-06 - syst_JES_EtaIntercalibration_Stat194: 1.2117837760920882e-06 - syst_JES_EtaIntercalibration_Stat195: 1.0230747418932793e-07 - syst_JES_EtaIntercalibration_Stat196: 2.1602857312575573e-14 + syst_JES_EtaIntercalibration_Stat191: 9.46600215e-08 + syst_JES_EtaIntercalibration_Stat192: 3.20205758e-06 + syst_JES_EtaIntercalibration_Stat193: 4.86344577e-06 + syst_JES_EtaIntercalibration_Stat194: 1.21178378e-06 + syst_JES_EtaIntercalibration_Stat195: 1.02307474e-07 + syst_JES_EtaIntercalibration_Stat196: 2.16028573e-14 syst_JES_EtaIntercalibration_Stat197: 0.0 syst_JES_EtaIntercalibration_Stat198: 0.0 - syst_JES_EtaIntercalibration_Stat199: 2.864150304627884e-07 + syst_JES_EtaIntercalibration_Stat199: 2.86415030e-07 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 1.645694610187443e-06 - syst_JES_EtaIntercalibration_Stat201: 6.077850010488906e-06 - syst_JES_EtaIntercalibration_Stat202: 4.6643928597406975e-06 - syst_JES_EtaIntercalibration_Stat203: 2.977532199657965e-08 + syst_JES_EtaIntercalibration_Stat200: 1.64569461e-06 + syst_JES_EtaIntercalibration_Stat201: 6.07785001e-06 + syst_JES_EtaIntercalibration_Stat202: 4.66439286e-06 + syst_JES_EtaIntercalibration_Stat203: 2.97753220e-08 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 - syst_JES_EtaIntercalibration_Stat206: 6.928884619294797e-08 - syst_JES_EtaIntercalibration_Stat207: 5.344564037412219e-06 - syst_JES_EtaIntercalibration_Stat208: 9.996095775351494e-06 - syst_JES_EtaIntercalibration_Stat209: 2.3483581498570444e-06 + syst_JES_EtaIntercalibration_Stat206: 6.92888462e-08 + syst_JES_EtaIntercalibration_Stat207: 5.34456404e-06 + syst_JES_EtaIntercalibration_Stat208: 9.99609578e-06 + syst_JES_EtaIntercalibration_Stat209: 2.34835815e-06 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 8.305098193278633e-08 - syst_JES_EtaIntercalibration_Stat211: 2.2806492552944217e-14 - syst_JES_EtaIntercalibration_Stat212: 7.160827518520469e-08 - syst_JES_EtaIntercalibration_Stat213: 2.0615491141372305e-06 - syst_JES_EtaIntercalibration_Stat214: 6.772099822064054e-06 - syst_JES_EtaIntercalibration_Stat215: 5.528407795197456e-06 - syst_JES_EtaIntercalibration_Stat216: 4.519584936694962e-08 + syst_JES_EtaIntercalibration_Stat210: 8.30509819e-08 + syst_JES_EtaIntercalibration_Stat211: 2.28064926e-14 + syst_JES_EtaIntercalibration_Stat212: 7.16082752e-08 + syst_JES_EtaIntercalibration_Stat213: 2.06154911e-06 + syst_JES_EtaIntercalibration_Stat214: 6.77209982e-06 + syst_JES_EtaIntercalibration_Stat215: 5.52840780e-06 + syst_JES_EtaIntercalibration_Stat216: 4.51958494e-08 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 - syst_JES_EtaIntercalibration_Stat219: 7.655265708647871e-08 + syst_JES_EtaIntercalibration_Stat219: 7.65526571e-08 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 5.668052310979495e-06 - syst_JES_EtaIntercalibration_Stat221: 8.364776326955791e-06 - syst_JES_EtaIntercalibration_Stat222: 2.353755031858668e-06 - syst_JES_EtaIntercalibration_Stat223: 4.882651226536665e-08 - syst_JES_EtaIntercalibration_Stat224: 2.0775955348862172e-07 - syst_JES_EtaIntercalibration_Stat225: 6.501747822701215e-06 - syst_JES_EtaIntercalibration_Stat226: 2.022850216896941e-05 - syst_JES_EtaIntercalibration_Stat227: 1.5063368647151938e-05 - syst_JES_EtaIntercalibration_Stat228: 9.375335447332005e-08 + syst_JES_EtaIntercalibration_Stat220: 5.66805231e-06 + syst_JES_EtaIntercalibration_Stat221: 8.36477633e-06 + syst_JES_EtaIntercalibration_Stat222: 2.35375503e-06 + syst_JES_EtaIntercalibration_Stat223: 4.88265123e-08 + syst_JES_EtaIntercalibration_Stat224: 2.07759553e-07 + syst_JES_EtaIntercalibration_Stat225: 6.50174782e-06 + syst_JES_EtaIntercalibration_Stat226: 2.02285022e-05 + syst_JES_EtaIntercalibration_Stat227: 1.50633686e-05 + syst_JES_EtaIntercalibration_Stat228: 9.37533545e-08 syst_JES_EtaIntercalibration_Stat229: 0.0 syst_JES_EtaIntercalibration_Stat23: 0.0 syst_JES_EtaIntercalibration_Stat230: 0.0 - syst_JES_EtaIntercalibration_Stat231: 1.290516446322172e-07 - syst_JES_EtaIntercalibration_Stat232: 1.7977582568298775e-05 - syst_JES_EtaIntercalibration_Stat233: 2.108240202159137e-05 - syst_JES_EtaIntercalibration_Stat234: 1.0111661782318473e-05 - syst_JES_EtaIntercalibration_Stat235: 2.9132691259133617e-07 - syst_JES_EtaIntercalibration_Stat236: 1.4186257434573785e-06 - syst_JES_EtaIntercalibration_Stat237: 5.040065550168965e-06 - syst_JES_EtaIntercalibration_Stat238: 3.0201180026614853e-06 - syst_JES_EtaIntercalibration_Stat239: 6.070695759136674e-08 + syst_JES_EtaIntercalibration_Stat231: 1.29051645e-07 + syst_JES_EtaIntercalibration_Stat232: 1.79775826e-05 + syst_JES_EtaIntercalibration_Stat233: 2.10824020e-05 + syst_JES_EtaIntercalibration_Stat234: 1.01116618e-05 + syst_JES_EtaIntercalibration_Stat235: 2.91326913e-07 + syst_JES_EtaIntercalibration_Stat236: 1.41862574e-06 + syst_JES_EtaIntercalibration_Stat237: 5.04006555e-06 + syst_JES_EtaIntercalibration_Stat238: 3.02011800e-06 + syst_JES_EtaIntercalibration_Stat239: 6.07069576e-08 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 - syst_JES_EtaIntercalibration_Stat242: 3.195499139414686e-08 - syst_JES_EtaIntercalibration_Stat243: 3.240074497600325e-06 - syst_JES_EtaIntercalibration_Stat244: 4.622852146402695e-06 - syst_JES_EtaIntercalibration_Stat245: 1.5713849838597795e-06 + syst_JES_EtaIntercalibration_Stat242: 3.19549914e-08 + syst_JES_EtaIntercalibration_Stat243: 3.24007450e-06 + syst_JES_EtaIntercalibration_Stat244: 4.62285215e-06 + syst_JES_EtaIntercalibration_Stat245: 1.57138498e-06 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 - syst_JES_EtaIntercalibration_Stat27: 2.0386381410147317e-21 - syst_JES_EtaIntercalibration_Stat28: 3.053623627038989e-17 - syst_JES_EtaIntercalibration_Stat29: 2.690740934052923e-11 + syst_JES_EtaIntercalibration_Stat27: 2.03863814e-21 + syst_JES_EtaIntercalibration_Stat28: 3.05362363e-17 + syst_JES_EtaIntercalibration_Stat29: 2.69074093e-11 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 2.6968031164491414e-11 - syst_JES_EtaIntercalibration_Stat31: 4.0330803054241313e-22 + syst_JES_EtaIntercalibration_Stat30: 2.69680312e-11 + syst_JES_EtaIntercalibration_Stat31: 4.03308031e-22 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 - syst_JES_EtaIntercalibration_Stat34: 7.105738438051319e-23 - syst_JES_EtaIntercalibration_Stat35: 1.5761735356170933e-14 - syst_JES_EtaIntercalibration_Stat36: 1.5796566423331182e-14 - syst_JES_EtaIntercalibration_Stat37: 3.632378706853128e-19 - syst_JES_EtaIntercalibration_Stat38: 7.702504186951151e-22 + syst_JES_EtaIntercalibration_Stat34: 7.10573844e-23 + syst_JES_EtaIntercalibration_Stat35: 1.57617354e-14 + syst_JES_EtaIntercalibration_Stat36: 1.57965664e-14 + syst_JES_EtaIntercalibration_Stat37: 3.63237871e-19 + syst_JES_EtaIntercalibration_Stat38: 7.70250419e-22 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 syst_JES_EtaIntercalibration_Stat40: 0.0 @@ -32351,21 +32351,21 @@ bins: syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 syst_JES_EtaIntercalibration_Stat47: 0.0 - syst_JES_EtaIntercalibration_Stat48: 1.1034895695021316e-21 - syst_JES_EtaIntercalibration_Stat49: 5.850446262465796e-21 - syst_JES_EtaIntercalibration_Stat5: 9.179869280115049e-22 - syst_JES_EtaIntercalibration_Stat50: 3.15546421782913e-17 - syst_JES_EtaIntercalibration_Stat51: 2.664761848404268e-11 - syst_JES_EtaIntercalibration_Stat52: 2.679482623551992e-11 - syst_JES_EtaIntercalibration_Stat53: 1.6484833961857183e-21 - syst_JES_EtaIntercalibration_Stat54: 5.443835688188981e-22 + syst_JES_EtaIntercalibration_Stat48: 1.10348957e-21 + syst_JES_EtaIntercalibration_Stat49: 5.85044626e-21 + syst_JES_EtaIntercalibration_Stat5: 9.17986928e-22 + syst_JES_EtaIntercalibration_Stat50: 3.15546422e-17 + syst_JES_EtaIntercalibration_Stat51: 2.66476185e-11 + syst_JES_EtaIntercalibration_Stat52: 2.67948262e-11 + syst_JES_EtaIntercalibration_Stat53: 1.64848340e-21 + syst_JES_EtaIntercalibration_Stat54: 5.44383569e-22 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 2.7780095392204833e-22 - syst_JES_EtaIntercalibration_Stat57: 1.557230595659489e-14 - syst_JES_EtaIntercalibration_Stat58: 1.5728890525879056e-14 - syst_JES_EtaIntercalibration_Stat59: 1.267430537544366e-18 - syst_JES_EtaIntercalibration_Stat6: 2.264459376981623e-21 - syst_JES_EtaIntercalibration_Stat60: 1.5940690449287318e-20 + syst_JES_EtaIntercalibration_Stat56: 2.77800954e-22 + syst_JES_EtaIntercalibration_Stat57: 1.55723060e-14 + syst_JES_EtaIntercalibration_Stat58: 1.57288905e-14 + syst_JES_EtaIntercalibration_Stat59: 1.26743054e-18 + syst_JES_EtaIntercalibration_Stat6: 2.26445938e-21 + syst_JES_EtaIntercalibration_Stat60: 1.59406904e-20 syst_JES_EtaIntercalibration_Stat61: 0.0 syst_JES_EtaIntercalibration_Stat62: 0.0 syst_JES_EtaIntercalibration_Stat63: 0.0 @@ -32375,21 +32375,21 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 1.0784757333848546e-20 - syst_JES_EtaIntercalibration_Stat70: 9.179869280115049e-22 - syst_JES_EtaIntercalibration_Stat71: 2.2152394904389008e-20 - syst_JES_EtaIntercalibration_Stat72: 5.365993174613625e-17 - syst_JES_EtaIntercalibration_Stat73: 4.1408570976732276e-10 - syst_JES_EtaIntercalibration_Stat74: 2.7793738085223444e-11 - syst_JES_EtaIntercalibration_Stat75: 2.4548155674103095e-20 - syst_JES_EtaIntercalibration_Stat76: 5.443835688188981e-22 + syst_JES_EtaIntercalibration_Stat7: 1.07847573e-20 + syst_JES_EtaIntercalibration_Stat70: 9.17986928e-22 + syst_JES_EtaIntercalibration_Stat71: 2.21523949e-20 + syst_JES_EtaIntercalibration_Stat72: 5.36599317e-17 + syst_JES_EtaIntercalibration_Stat73: 4.14085710e-10 + syst_JES_EtaIntercalibration_Stat74: 2.77937381e-11 + syst_JES_EtaIntercalibration_Stat75: 2.45481557e-20 + syst_JES_EtaIntercalibration_Stat76: 5.44383569e-22 syst_JES_EtaIntercalibration_Stat77: 0.0 - syst_JES_EtaIntercalibration_Stat78: 1.9879657944743414e-20 - syst_JES_EtaIntercalibration_Stat79: 1.4725374657914378e-14 - syst_JES_EtaIntercalibration_Stat8: 1.5025678420623808e-21 - syst_JES_EtaIntercalibration_Stat80: 1.7043296953993148e-11 - syst_JES_EtaIntercalibration_Stat81: 2.1615157945948486e-14 - syst_JES_EtaIntercalibration_Stat82: 1.6949155930311102e-20 + syst_JES_EtaIntercalibration_Stat78: 1.98796579e-20 + syst_JES_EtaIntercalibration_Stat79: 1.47253747e-14 + syst_JES_EtaIntercalibration_Stat8: 1.50256784e-21 + syst_JES_EtaIntercalibration_Stat80: 1.70432970e-11 + syst_JES_EtaIntercalibration_Stat81: 2.16151579e-14 + syst_JES_EtaIntercalibration_Stat82: 1.69491559e-20 syst_JES_EtaIntercalibration_Stat83: 0.0 syst_JES_EtaIntercalibration_Stat84: 0.0 syst_JES_EtaIntercalibration_Stat85: 0.0 @@ -32399,118 +32399,118 @@ bins: syst_JES_EtaIntercalibration_Stat89: 0.0 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 7.852252336113506e-22 - syst_JES_EtaIntercalibration_Stat92: 1.888726782570735e-18 - syst_JES_EtaIntercalibration_Stat93: 7.780749647688196e-17 - syst_JES_EtaIntercalibration_Stat94: 4.1624687976424525e-10 - syst_JES_EtaIntercalibration_Stat95: 2.8214269771695315e-11 - syst_JES_EtaIntercalibration_Stat96: 9.252274891479392e-20 - syst_JES_EtaIntercalibration_Stat97: 5.443835688188981e-22 + syst_JES_EtaIntercalibration_Stat91: 7.85225234e-22 + syst_JES_EtaIntercalibration_Stat92: 1.88872678e-18 + syst_JES_EtaIntercalibration_Stat93: 7.78074965e-17 + syst_JES_EtaIntercalibration_Stat94: 4.16246880e-10 + syst_JES_EtaIntercalibration_Stat95: 2.82142698e-11 + syst_JES_EtaIntercalibration_Stat96: 9.25227489e-20 + syst_JES_EtaIntercalibration_Stat97: 5.44383569e-22 syst_JES_EtaIntercalibration_Stat98: 0.0 - syst_JES_EtaIntercalibration_Stat99: 9.252564059866664e-16 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.00022772808346798162 - syst_JES_Flavour_Comp: 0.0005745183809069994 - syst_JES_Gjet_Generator: 0.0006747938500016135 - syst_JES_Gjet_OOC: 0.0005602964639367271 - syst_JES_Gjet_Purity: 9.830289568471522e-05 - syst_JES_Gjet_Stat1: 2.551228870564144e-06 - syst_JES_Gjet_Stat10: 1.1663473367740845e-05 - syst_JES_Gjet_Stat11: 1.1644649704907401e-05 - syst_JES_Gjet_Stat12: 3.478272092577002e-05 - syst_JES_Gjet_Stat13: 0.00011148759605893384 - syst_JES_Gjet_Stat14: 0.0002955974078032485 - syst_JES_Gjet_Stat15: 0.00043348432497611724 - syst_JES_Gjet_Stat2: 2.3466522963575157e-06 - syst_JES_Gjet_Stat3: 3.703861768478948e-06 - syst_JES_Gjet_Stat4: 2.7327820988875054e-06 - syst_JES_Gjet_Stat5: 2.4578540945304297e-06 - syst_JES_Gjet_Stat6: 6.792155916938303e-06 - syst_JES_Gjet_Stat7: 6.365317274103468e-06 - syst_JES_Gjet_Stat8: 6.030498569770165e-06 - syst_JES_Gjet_Stat9: 6.52424524370444e-06 - syst_JES_Gjet_Veto: 0.0005674652125901641 - syst_JES_Gjet_dPhi: 5.990900683536658e-05 - syst_JES_LArESZee: 0.0010154197789584364 - syst_JES_LArEsmear: 9.298301834206071e-05 - syst_JES_LAr_JVT: 0.00011651683601523 - syst_JES_MJB_Alpha: 9.020479920713753e-06 - syst_JES_MJB_Asym: 0.00013290602949076467 - syst_JES_MJB_Beta: 7.890292960340573e-06 - syst_JES_MJB_Stat1: 1.035246767683918e-07 - syst_JES_MJB_Stat10: 9.950455705644843e-06 - syst_JES_MJB_Stat11: 1.344165268856475e-05 - syst_JES_MJB_Stat12: 2.2655072279734622e-05 - syst_JES_MJB_Stat13: 2.4601042660830455e-05 - syst_JES_MJB_Stat14: 1.965787628407504e-05 - syst_JES_MJB_Stat15: 2.460634674225331e-05 - syst_JES_MJB_Stat16: 1.470395769852457e-05 + syst_JES_EtaIntercalibration_Stat99: 9.25256406e-16 + syst_JES_EtaIntercalibration_TotalStat_MJB: 2.27728083e-04 + syst_JES_Flavour_Comp: 5.74518381e-04 + syst_JES_Gjet_Generator: 6.74793850e-04 + syst_JES_Gjet_OOC: 5.60296464e-04 + syst_JES_Gjet_Purity: 9.83028957e-05 + syst_JES_Gjet_Stat1: 2.55122887e-06 + syst_JES_Gjet_Stat10: 1.16634734e-05 + syst_JES_Gjet_Stat11: 1.16446497e-05 + syst_JES_Gjet_Stat12: 3.47827209e-05 + syst_JES_Gjet_Stat13: 1.11487596e-04 + syst_JES_Gjet_Stat14: 2.95597408e-04 + syst_JES_Gjet_Stat15: 4.33484325e-04 + syst_JES_Gjet_Stat2: 2.34665230e-06 + syst_JES_Gjet_Stat3: 3.70386177e-06 + syst_JES_Gjet_Stat4: 2.73278210e-06 + syst_JES_Gjet_Stat5: 2.45785409e-06 + syst_JES_Gjet_Stat6: 6.79215592e-06 + syst_JES_Gjet_Stat7: 6.36531727e-06 + syst_JES_Gjet_Stat8: 6.03049857e-06 + syst_JES_Gjet_Stat9: 6.52424524e-06 + syst_JES_Gjet_Veto: 5.67465213e-04 + syst_JES_Gjet_dPhi: 5.99090068e-05 + syst_JES_LArESZee: 1.01541978e-03 + syst_JES_LArEsmear: 9.29830183e-05 + syst_JES_LAr_JVT: 1.16516836e-04 + syst_JES_MJB_Alpha: 9.02047992e-06 + syst_JES_MJB_Asym: 1.32906029e-04 + syst_JES_MJB_Beta: 7.89029296e-06 + syst_JES_MJB_Stat1: 1.03524677e-07 + syst_JES_MJB_Stat10: 9.95045571e-06 + syst_JES_MJB_Stat11: 1.34416527e-05 + syst_JES_MJB_Stat12: 2.26550723e-05 + syst_JES_MJB_Stat13: 2.46010427e-05 + syst_JES_MJB_Stat14: 1.96578763e-05 + syst_JES_MJB_Stat15: 2.46063467e-05 + syst_JES_MJB_Stat16: 1.47039577e-05 syst_JES_MJB_Stat2: 0.0 - syst_JES_MJB_Stat3: 5.290549191719136e-07 - syst_JES_MJB_Stat4: 3.917032901317016e-07 - syst_JES_MJB_Stat5: 5.463754272476023e-07 - syst_JES_MJB_Stat6: 1.7125454738487967e-06 - syst_JES_MJB_Stat7: 3.4686135367751763e-06 - syst_JES_MJB_Stat8: 4.703154978309774e-06 - syst_JES_MJB_Stat9: 7.5969489928523285e-06 - syst_JES_MJB_Threshold: 9.28908621716905e-05 - syst_JES_Pileup_MuOffset: 0.00014000183097016982 - syst_JES_Pileup_NPVOffset: 0.00014457118488827575 - syst_JES_Pileup_Pt_term: 9.501209225672277e-05 - syst_JES_PunchThrough_MC15: 0.00018600344082838897 - syst_JES_SingleParticle_HighPt: 4.4350110484642537e-10 - syst_JES_Zjet_MC: 0.0002558978458291511 - syst_JES_Zjet_MuScale: 2.0794943495955935e-05 - syst_JES_Zjet_MuSmearID: 6.574375008318282e-06 - syst_JES_Zjet_MuSmearMS: 7.245053208914343e-05 - syst_JES_Zjet_OOC: 0.00015880403017555947 - syst_JES_Zjet_Stat1: 1.6133477616434717e-05 - syst_JES_Zjet_Stat10: 1.34771363705351e-05 - syst_JES_Zjet_Stat11: 2.0083402973599867e-05 - syst_JES_Zjet_Stat12: 4.813946068455691e-05 - syst_JES_Zjet_Stat13: 7.396882045835258e-05 - syst_JES_Zjet_Stat2: 4.444442372221739e-08 - syst_JES_Zjet_Stat3: 8.8656885801386e-06 - syst_JES_Zjet_Stat4: 8.413396519836682e-06 - syst_JES_Zjet_Stat5: 9.122048344533151e-06 - syst_JES_Zjet_Stat6: 6.2032456827051436e-06 - syst_JES_Zjet_Stat7: 7.101197416633339e-06 - syst_JES_Zjet_Stat8: 5.9715983413153296e-06 - syst_JES_Zjet_Stat9: 7.62747053419415e-06 - syst_JES_Zjet_Veto: 3.348719568730712e-05 - syst_JES_Zjet_dPhi: 3.146046089935747e-05 + syst_JES_MJB_Stat3: 5.29054919e-07 + syst_JES_MJB_Stat4: 3.91703290e-07 + syst_JES_MJB_Stat5: 5.46375427e-07 + syst_JES_MJB_Stat6: 1.71254547e-06 + syst_JES_MJB_Stat7: 3.46861354e-06 + syst_JES_MJB_Stat8: 4.70315498e-06 + syst_JES_MJB_Stat9: 7.59694899e-06 + syst_JES_MJB_Threshold: 9.28908622e-05 + syst_JES_Pileup_MuOffset: 1.40001831e-04 + syst_JES_Pileup_NPVOffset: 1.44571185e-04 + syst_JES_Pileup_Pt_term: 9.50120923e-05 + syst_JES_PunchThrough_MC15: 1.86003441e-04 + syst_JES_SingleParticle_HighPt: 4.43501105e-10 + syst_JES_Zjet_MC: 2.55897846e-04 + syst_JES_Zjet_MuScale: 2.07949435e-05 + syst_JES_Zjet_MuSmearID: 6.57437501e-06 + syst_JES_Zjet_MuSmearMS: 7.24505321e-05 + syst_JES_Zjet_OOC: 1.58804030e-04 + syst_JES_Zjet_Stat1: 1.61334776e-05 + syst_JES_Zjet_Stat10: 1.34771364e-05 + syst_JES_Zjet_Stat11: 2.00834030e-05 + syst_JES_Zjet_Stat12: 4.81394607e-05 + syst_JES_Zjet_Stat13: 7.39688205e-05 + syst_JES_Zjet_Stat2: 4.44444237e-08 + syst_JES_Zjet_Stat3: 8.86568858e-06 + syst_JES_Zjet_Stat4: 8.41339652e-06 + syst_JES_Zjet_Stat5: 9.12204834e-06 + syst_JES_Zjet_Stat6: 6.20324568e-06 + syst_JES_Zjet_Stat7: 7.10119742e-06 + syst_JES_Zjet_Stat8: 5.97159834e-06 + syst_JES_Zjet_Stat9: 7.62747053e-06 + syst_JES_Zjet_Veto: 3.34871957e-05 + syst_JES_Zjet_dPhi: 3.14604609e-05 syst_PRW: 0.0 - syst_Unfolding_bias: 2.433e-05 - syst_cleaning: 0.00015727021332725405 - syst_lumi: 0.0004979 + syst_Unfolding_bias: 2.43300000e-05 + syst_cleaning: 1.57270213e-04 + syst_lumi: 4.97900000e-04 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 9.975325859339132e-05 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 3.566309463226656e-06 - syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 5.262221465312915e-06 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 9.97532586e-05 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 3.56630946e-06 + syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 5.26222147e-06 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 7.781781463778073e-06 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 5.952201672490609e-05 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.00015147021984535444 -- stat: 0.00023734 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 7.78178146e-06 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 5.95220167e-05 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.51470220e-04 +- stat: 2.37340000e-04 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 9.766198889537321e-05 - syst_JER_NP1: 1.7340849892666738e-05 - syst_JER_NP2: 7.54778987518863e-05 - syst_JER_NP3: 3.2538328456606375e-06 - syst_JER_NP4: 9.542941737221286e-16 - syst_JER_NP5: 1.6389919062432099e-10 - syst_JER_NP6: 8.194404127207785e-18 - syst_JER_NP7: 4.755616127275203e-20 - syst_JER_NP8: 8.27466567300456e-06 - syst_JES_EtaIntercalibration_Modelling: 0.0009594995674829666 + syst_JER_NP0: 9.76619889e-05 + syst_JER_NP1: 1.73408499e-05 + syst_JER_NP2: 7.54778988e-05 + syst_JER_NP3: 3.25383285e-06 + syst_JER_NP4: 9.54294174e-16 + syst_JER_NP5: 1.63899191e-10 + syst_JER_NP6: 8.19440413e-18 + syst_JER_NP7: 4.75561613e-20 + syst_JER_NP8: 8.27466567e-06 + syst_JES_EtaIntercalibration_Modelling: 9.59499567e-04 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 2.5214156737832817e-16 - syst_JES_EtaIntercalibration_Stat101: 1.4608548831917288e-11 - syst_JES_EtaIntercalibration_Stat102: 9.599897377967122e-16 - syst_JES_EtaIntercalibration_Stat103: 5.891836291004698e-19 + syst_JES_EtaIntercalibration_Stat100: 2.52141567e-16 + syst_JES_EtaIntercalibration_Stat101: 1.46085488e-11 + syst_JES_EtaIntercalibration_Stat102: 9.59989738e-16 + syst_JES_EtaIntercalibration_Stat103: 5.89183629e-19 syst_JES_EtaIntercalibration_Stat104: 0.0 syst_JES_EtaIntercalibration_Stat105: 0.0 syst_JES_EtaIntercalibration_Stat106: 0.0 @@ -32519,170 +32519,170 @@ bins: syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 syst_JES_EtaIntercalibration_Stat110: 0.0 - syst_JES_EtaIntercalibration_Stat111: 1.3873726968626708e-22 - syst_JES_EtaIntercalibration_Stat112: 6.5311783584587554e-18 - syst_JES_EtaIntercalibration_Stat113: 6.793241409571848e-08 - syst_JES_EtaIntercalibration_Stat114: 6.366614264407883e-08 - syst_JES_EtaIntercalibration_Stat115: 1.7257996160331014e-07 - syst_JES_EtaIntercalibration_Stat116: 2.9489038055834103e-15 + syst_JES_EtaIntercalibration_Stat111: 1.38737270e-22 + syst_JES_EtaIntercalibration_Stat112: 6.53117836e-18 + syst_JES_EtaIntercalibration_Stat113: 6.79324141e-08 + syst_JES_EtaIntercalibration_Stat114: 6.36661426e-08 + syst_JES_EtaIntercalibration_Stat115: 1.72579962e-07 + syst_JES_EtaIntercalibration_Stat116: 2.94890381e-15 syst_JES_EtaIntercalibration_Stat117: 0.0 syst_JES_EtaIntercalibration_Stat118: 0.0 - syst_JES_EtaIntercalibration_Stat119: 2.9921157233741314e-15 + syst_JES_EtaIntercalibration_Stat119: 2.99211572e-15 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 6.874505053771549e-09 - syst_JES_EtaIntercalibration_Stat121: 3.263423366267393e-08 - syst_JES_EtaIntercalibration_Stat122: 4.5847385047878955e-08 - syst_JES_EtaIntercalibration_Stat123: 3.956691919811296e-15 + syst_JES_EtaIntercalibration_Stat120: 6.87450505e-09 + syst_JES_EtaIntercalibration_Stat121: 3.26342337e-08 + syst_JES_EtaIntercalibration_Stat122: 4.58473850e-08 + syst_JES_EtaIntercalibration_Stat123: 3.95669192e-15 syst_JES_EtaIntercalibration_Stat124: 0.0 syst_JES_EtaIntercalibration_Stat125: 0.0 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 syst_JES_EtaIntercalibration_Stat128: 0.0 syst_JES_EtaIntercalibration_Stat129: 0.0 - syst_JES_EtaIntercalibration_Stat13: 2.9981804187311666e-15 + syst_JES_EtaIntercalibration_Stat13: 2.99818042e-15 syst_JES_EtaIntercalibration_Stat130: 0.0 - syst_JES_EtaIntercalibration_Stat131: 3.3133149563541345e-17 - syst_JES_EtaIntercalibration_Stat132: 1.049535835817867e-07 - syst_JES_EtaIntercalibration_Stat133: 5.524575972868868e-10 - syst_JES_EtaIntercalibration_Stat134: 1.1734993944608579e-07 - syst_JES_EtaIntercalibration_Stat135: 5.561730159912022e-13 + syst_JES_EtaIntercalibration_Stat131: 3.31331496e-17 + syst_JES_EtaIntercalibration_Stat132: 1.04953584e-07 + syst_JES_EtaIntercalibration_Stat133: 5.52457597e-10 + syst_JES_EtaIntercalibration_Stat134: 1.17349939e-07 + syst_JES_EtaIntercalibration_Stat135: 5.56173016e-13 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 - syst_JES_EtaIntercalibration_Stat138: 2.8053304956625324e-15 - syst_JES_EtaIntercalibration_Stat139: 3.020613182782595e-08 - syst_JES_EtaIntercalibration_Stat14: 1.8124660569235495e-21 - syst_JES_EtaIntercalibration_Stat140: 1.5031941759799364e-12 - syst_JES_EtaIntercalibration_Stat141: 7.538888979688916e-08 - syst_JES_EtaIntercalibration_Stat142: 6.983572912669332e-12 + syst_JES_EtaIntercalibration_Stat138: 2.80533050e-15 + syst_JES_EtaIntercalibration_Stat139: 3.02061318e-08 + syst_JES_EtaIntercalibration_Stat14: 1.81246606e-21 + syst_JES_EtaIntercalibration_Stat140: 1.50319418e-12 + syst_JES_EtaIntercalibration_Stat141: 7.53888898e-08 + syst_JES_EtaIntercalibration_Stat142: 6.98357291e-12 syst_JES_EtaIntercalibration_Stat143: 0.0 syst_JES_EtaIntercalibration_Stat144: 0.0 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 syst_JES_EtaIntercalibration_Stat147: 0.0 syst_JES_EtaIntercalibration_Stat148: 0.0 - syst_JES_EtaIntercalibration_Stat149: 2.661869378619235e-13 - syst_JES_EtaIntercalibration_Stat15: 1.6089215830176436e-21 - syst_JES_EtaIntercalibration_Stat150: 9.151290441790164e-08 - syst_JES_EtaIntercalibration_Stat151: 6.032237860624187e-08 - syst_JES_EtaIntercalibration_Stat152: 1.1736993509489715e-07 - syst_JES_EtaIntercalibration_Stat153: 6.513895879448796e-13 + syst_JES_EtaIntercalibration_Stat149: 2.66186938e-13 + syst_JES_EtaIntercalibration_Stat15: 1.60892158e-21 + syst_JES_EtaIntercalibration_Stat150: 9.15129044e-08 + syst_JES_EtaIntercalibration_Stat151: 6.03223786e-08 + syst_JES_EtaIntercalibration_Stat152: 1.17369935e-07 + syst_JES_EtaIntercalibration_Stat153: 6.51389588e-13 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 1.7788160807329653e-16 - syst_JES_EtaIntercalibration_Stat157: 2.6320989096156703e-08 - syst_JES_EtaIntercalibration_Stat158: 3.317074404396139e-07 - syst_JES_EtaIntercalibration_Stat159: 7.181365242765472e-08 + syst_JES_EtaIntercalibration_Stat156: 1.77881608e-16 + syst_JES_EtaIntercalibration_Stat157: 2.63209891e-08 + syst_JES_EtaIntercalibration_Stat158: 3.31707440e-07 + syst_JES_EtaIntercalibration_Stat159: 7.18136524e-08 syst_JES_EtaIntercalibration_Stat16: 0.0 - syst_JES_EtaIntercalibration_Stat160: 1.1274149802424128e-15 + syst_JES_EtaIntercalibration_Stat160: 1.12741498e-15 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 - syst_JES_EtaIntercalibration_Stat167: 1.1430320595678846e-10 - syst_JES_EtaIntercalibration_Stat168: 1.0995861585160119e-07 - syst_JES_EtaIntercalibration_Stat169: 3.15071971936572e-07 + syst_JES_EtaIntercalibration_Stat167: 1.14303206e-10 + syst_JES_EtaIntercalibration_Stat168: 1.09958616e-07 + syst_JES_EtaIntercalibration_Stat169: 3.15071972e-07 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 3.6683439042707e-07 - syst_JES_EtaIntercalibration_Stat171: 2.0108997545128895e-09 + syst_JES_EtaIntercalibration_Stat170: 3.66834390e-07 + syst_JES_EtaIntercalibration_Stat171: 2.01089975e-09 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 - syst_JES_EtaIntercalibration_Stat174: 5.181460917347792e-16 - syst_JES_EtaIntercalibration_Stat175: 2.7998238283863505e-07 - syst_JES_EtaIntercalibration_Stat176: 4.3889479377181044e-07 - syst_JES_EtaIntercalibration_Stat177: 2.5703979691868725e-07 - syst_JES_EtaIntercalibration_Stat178: 4.3571931331994e-08 + syst_JES_EtaIntercalibration_Stat174: 5.18146092e-16 + syst_JES_EtaIntercalibration_Stat175: 2.79982383e-07 + syst_JES_EtaIntercalibration_Stat176: 4.38894794e-07 + syst_JES_EtaIntercalibration_Stat177: 2.57039797e-07 + syst_JES_EtaIntercalibration_Stat178: 4.35719313e-08 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 syst_JES_EtaIntercalibration_Stat180: 0.0 syst_JES_EtaIntercalibration_Stat181: 0.0 syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 - syst_JES_EtaIntercalibration_Stat184: 8.349013878896119e-08 - syst_JES_EtaIntercalibration_Stat185: 5.520761813373223e-07 - syst_JES_EtaIntercalibration_Stat186: 2.222005119256029e-06 - syst_JES_EtaIntercalibration_Stat187: 1.8106525639945396e-06 - syst_JES_EtaIntercalibration_Stat188: 1.0423651123766566e-07 + syst_JES_EtaIntercalibration_Stat184: 8.34901388e-08 + syst_JES_EtaIntercalibration_Stat185: 5.52076181e-07 + syst_JES_EtaIntercalibration_Stat186: 2.22200512e-06 + syst_JES_EtaIntercalibration_Stat187: 1.81065256e-06 + syst_JES_EtaIntercalibration_Stat188: 1.04236511e-07 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 - syst_JES_EtaIntercalibration_Stat191: 3.940352395408309e-08 - syst_JES_EtaIntercalibration_Stat192: 2.195730857823882e-06 - syst_JES_EtaIntercalibration_Stat193: 3.463125466973439e-06 - syst_JES_EtaIntercalibration_Stat194: 7.740425182120167e-07 - syst_JES_EtaIntercalibration_Stat195: 6.300090535063762e-08 - syst_JES_EtaIntercalibration_Stat196: 3.977201049419051e-15 + syst_JES_EtaIntercalibration_Stat191: 3.94035240e-08 + syst_JES_EtaIntercalibration_Stat192: 2.19573086e-06 + syst_JES_EtaIntercalibration_Stat193: 3.46312547e-06 + syst_JES_EtaIntercalibration_Stat194: 7.74042518e-07 + syst_JES_EtaIntercalibration_Stat195: 6.30009054e-08 + syst_JES_EtaIntercalibration_Stat196: 3.97720105e-15 syst_JES_EtaIntercalibration_Stat197: 0.0 syst_JES_EtaIntercalibration_Stat198: 0.0 - syst_JES_EtaIntercalibration_Stat199: 1.5506500669074247e-07 + syst_JES_EtaIntercalibration_Stat199: 1.55065007e-07 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 1.1418422077940541e-06 - syst_JES_EtaIntercalibration_Stat201: 4.060098085945707e-06 - syst_JES_EtaIntercalibration_Stat202: 3.239500694551554e-06 - syst_JES_EtaIntercalibration_Stat203: 9.74441849509246e-09 + syst_JES_EtaIntercalibration_Stat200: 1.14184221e-06 + syst_JES_EtaIntercalibration_Stat201: 4.06009809e-06 + syst_JES_EtaIntercalibration_Stat202: 3.23950069e-06 + syst_JES_EtaIntercalibration_Stat203: 9.74441850e-09 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 - syst_JES_EtaIntercalibration_Stat206: 1.2745732645379785e-08 - syst_JES_EtaIntercalibration_Stat207: 3.4278236171075084e-06 - syst_JES_EtaIntercalibration_Stat208: 6.549285972531663e-06 - syst_JES_EtaIntercalibration_Stat209: 1.7386164039258346e-06 + syst_JES_EtaIntercalibration_Stat206: 1.27457326e-08 + syst_JES_EtaIntercalibration_Stat207: 3.42782362e-06 + syst_JES_EtaIntercalibration_Stat208: 6.54928597e-06 + syst_JES_EtaIntercalibration_Stat209: 1.73861640e-06 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 5.241590479043551e-08 - syst_JES_EtaIntercalibration_Stat211: 4.205801491689782e-15 - syst_JES_EtaIntercalibration_Stat212: 5.503713201103415e-08 - syst_JES_EtaIntercalibration_Stat213: 1.3917228199250022e-06 - syst_JES_EtaIntercalibration_Stat214: 4.548873569357583e-06 - syst_JES_EtaIntercalibration_Stat215: 3.911227045314551e-06 - syst_JES_EtaIntercalibration_Stat216: 4.268305436221148e-08 + syst_JES_EtaIntercalibration_Stat210: 5.24159048e-08 + syst_JES_EtaIntercalibration_Stat211: 4.20580149e-15 + syst_JES_EtaIntercalibration_Stat212: 5.50371320e-08 + syst_JES_EtaIntercalibration_Stat213: 1.39172282e-06 + syst_JES_EtaIntercalibration_Stat214: 4.54887357e-06 + syst_JES_EtaIntercalibration_Stat215: 3.91122705e-06 + syst_JES_EtaIntercalibration_Stat216: 4.26830544e-08 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 - syst_JES_EtaIntercalibration_Stat219: 1.4124882653229372e-08 + syst_JES_EtaIntercalibration_Stat219: 1.41248827e-08 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 3.618511676090047e-06 - syst_JES_EtaIntercalibration_Stat221: 5.631923561271051e-06 - syst_JES_EtaIntercalibration_Stat222: 1.7328285402774276e-06 - syst_JES_EtaIntercalibration_Stat223: 1.2160728719941081e-08 - syst_JES_EtaIntercalibration_Stat224: 1.405559339807789e-07 - syst_JES_EtaIntercalibration_Stat225: 4.27808099502569e-06 - syst_JES_EtaIntercalibration_Stat226: 1.3479801435852088e-05 - syst_JES_EtaIntercalibration_Stat227: 1.0083295245107127e-05 - syst_JES_EtaIntercalibration_Stat228: 4.226153925261123e-08 + syst_JES_EtaIntercalibration_Stat220: 3.61851168e-06 + syst_JES_EtaIntercalibration_Stat221: 5.63192356e-06 + syst_JES_EtaIntercalibration_Stat222: 1.73282854e-06 + syst_JES_EtaIntercalibration_Stat223: 1.21607287e-08 + syst_JES_EtaIntercalibration_Stat224: 1.40555934e-07 + syst_JES_EtaIntercalibration_Stat225: 4.27808100e-06 + syst_JES_EtaIntercalibration_Stat226: 1.34798014e-05 + syst_JES_EtaIntercalibration_Stat227: 1.00832952e-05 + syst_JES_EtaIntercalibration_Stat228: 4.22615393e-08 syst_JES_EtaIntercalibration_Stat229: 0.0 syst_JES_EtaIntercalibration_Stat23: 0.0 syst_JES_EtaIntercalibration_Stat230: 0.0 - syst_JES_EtaIntercalibration_Stat231: 6.130646652050662e-08 - syst_JES_EtaIntercalibration_Stat232: 1.1894617805965857e-05 - syst_JES_EtaIntercalibration_Stat233: 1.406217603182381e-05 - syst_JES_EtaIntercalibration_Stat234: 6.834849010768271e-06 - syst_JES_EtaIntercalibration_Stat235: 1.525185951777684e-07 - syst_JES_EtaIntercalibration_Stat236: 9.619222980573846e-07 - syst_JES_EtaIntercalibration_Stat237: 3.3791410151102013e-06 - syst_JES_EtaIntercalibration_Stat238: 2.197451876606175e-06 - syst_JES_EtaIntercalibration_Stat239: 4.172624932821065e-08 + syst_JES_EtaIntercalibration_Stat231: 6.13064665e-08 + syst_JES_EtaIntercalibration_Stat232: 1.18946178e-05 + syst_JES_EtaIntercalibration_Stat233: 1.40621760e-05 + syst_JES_EtaIntercalibration_Stat234: 6.83484901e-06 + syst_JES_EtaIntercalibration_Stat235: 1.52518595e-07 + syst_JES_EtaIntercalibration_Stat236: 9.61922298e-07 + syst_JES_EtaIntercalibration_Stat237: 3.37914102e-06 + syst_JES_EtaIntercalibration_Stat238: 2.19745188e-06 + syst_JES_EtaIntercalibration_Stat239: 4.17262493e-08 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 - syst_JES_EtaIntercalibration_Stat242: 1.670576417737303e-08 - syst_JES_EtaIntercalibration_Stat243: 2.1846832150222607e-06 - syst_JES_EtaIntercalibration_Stat244: 3.2309123711422443e-06 - syst_JES_EtaIntercalibration_Stat245: 1.0894447702843865e-06 + syst_JES_EtaIntercalibration_Stat242: 1.67057642e-08 + syst_JES_EtaIntercalibration_Stat243: 2.18468322e-06 + syst_JES_EtaIntercalibration_Stat244: 3.23091237e-06 + syst_JES_EtaIntercalibration_Stat245: 1.08944477e-06 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 - syst_JES_EtaIntercalibration_Stat27: 6.965704899721204e-22 - syst_JES_EtaIntercalibration_Stat28: 6.786188019110637e-18 - syst_JES_EtaIntercalibration_Stat29: 5.367625464907324e-12 + syst_JES_EtaIntercalibration_Stat27: 6.96570490e-22 + syst_JES_EtaIntercalibration_Stat28: 6.78618802e-18 + syst_JES_EtaIntercalibration_Stat29: 5.36762546e-12 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 5.378883806899826e-12 - syst_JES_EtaIntercalibration_Stat31: 1.388238722266455e-22 + syst_JES_EtaIntercalibration_Stat30: 5.37888381e-12 + syst_JES_EtaIntercalibration_Stat31: 1.38823872e-22 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 - syst_JES_EtaIntercalibration_Stat34: 2.5998082621608846e-23 - syst_JES_EtaIntercalibration_Stat35: 2.9947346221881917e-15 - syst_JES_EtaIntercalibration_Stat36: 3.001708573956537e-15 - syst_JES_EtaIntercalibration_Stat37: 7.608494071102375e-20 - syst_JES_EtaIntercalibration_Stat38: 1.615786334884659e-22 + syst_JES_EtaIntercalibration_Stat34: 2.59980826e-23 + syst_JES_EtaIntercalibration_Stat35: 2.99473462e-15 + syst_JES_EtaIntercalibration_Stat36: 3.00170857e-15 + syst_JES_EtaIntercalibration_Stat37: 7.60849407e-20 + syst_JES_EtaIntercalibration_Stat38: 1.61578633e-22 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 syst_JES_EtaIntercalibration_Stat40: 0.0 @@ -32693,21 +32693,21 @@ bins: syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 syst_JES_EtaIntercalibration_Stat47: 0.0 - syst_JES_EtaIntercalibration_Stat48: 3.729971414099577e-22 - syst_JES_EtaIntercalibration_Stat49: 1.8617400644289738e-21 - syst_JES_EtaIntercalibration_Stat5: 3.0769882596461104e-22 - syst_JES_EtaIntercalibration_Stat50: 7.022220673512048e-18 - syst_JES_EtaIntercalibration_Stat51: 5.3148012147144984e-12 - syst_JES_EtaIntercalibration_Stat52: 5.344242830493244e-12 - syst_JES_EtaIntercalibration_Stat53: 4.645460445424113e-22 - syst_JES_EtaIntercalibration_Stat54: 8.39351821347878e-23 + syst_JES_EtaIntercalibration_Stat48: 3.72997141e-22 + syst_JES_EtaIntercalibration_Stat49: 1.86174006e-21 + syst_JES_EtaIntercalibration_Stat5: 3.07698826e-22 + syst_JES_EtaIntercalibration_Stat50: 7.02222067e-18 + syst_JES_EtaIntercalibration_Stat51: 5.31480121e-12 + syst_JES_EtaIntercalibration_Stat52: 5.34424283e-12 + syst_JES_EtaIntercalibration_Stat53: 4.64546045e-22 + syst_JES_EtaIntercalibration_Stat54: 8.39351821e-23 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 9.692665719501524e-23 - syst_JES_EtaIntercalibration_Stat57: 2.961208120795073e-15 - syst_JES_EtaIntercalibration_Stat58: 2.9890898221824983e-15 - syst_JES_EtaIntercalibration_Stat59: 3.112256255516245e-19 - syst_JES_EtaIntercalibration_Stat6: 7.737379789050037e-22 - syst_JES_EtaIntercalibration_Stat60: 4.737617201716491e-21 + syst_JES_EtaIntercalibration_Stat56: 9.69266572e-23 + syst_JES_EtaIntercalibration_Stat57: 2.96120812e-15 + syst_JES_EtaIntercalibration_Stat58: 2.98908982e-15 + syst_JES_EtaIntercalibration_Stat59: 3.11225626e-19 + syst_JES_EtaIntercalibration_Stat6: 7.73737979e-22 + syst_JES_EtaIntercalibration_Stat60: 4.73761720e-21 syst_JES_EtaIntercalibration_Stat61: 0.0 syst_JES_EtaIntercalibration_Stat62: 0.0 syst_JES_EtaIntercalibration_Stat63: 0.0 @@ -32717,21 +32717,21 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 3.2117781290120273e-21 - syst_JES_EtaIntercalibration_Stat70: 3.0769882596461104e-22 - syst_JES_EtaIntercalibration_Stat71: 6.6020728563080845e-21 - syst_JES_EtaIntercalibration_Stat72: 1.0631131207449187e-17 - syst_JES_EtaIntercalibration_Stat73: 9.254361346665514e-11 - syst_JES_EtaIntercalibration_Stat74: 5.5188923481075435e-12 - syst_JES_EtaIntercalibration_Stat75: 5.59284068318596e-21 - syst_JES_EtaIntercalibration_Stat76: 8.39351821347878e-23 + syst_JES_EtaIntercalibration_Stat7: 3.21177813e-21 + syst_JES_EtaIntercalibration_Stat70: 3.07698826e-22 + syst_JES_EtaIntercalibration_Stat71: 6.60207286e-21 + syst_JES_EtaIntercalibration_Stat72: 1.06311312e-17 + syst_JES_EtaIntercalibration_Stat73: 9.25436135e-11 + syst_JES_EtaIntercalibration_Stat74: 5.51889235e-12 + syst_JES_EtaIntercalibration_Stat75: 5.59284068e-21 + syst_JES_EtaIntercalibration_Stat76: 8.39351821e-23 syst_JES_EtaIntercalibration_Stat77: 0.0 - syst_JES_EtaIntercalibration_Stat78: 5.598670980688185e-21 - syst_JES_EtaIntercalibration_Stat79: 2.79967112447815e-15 - syst_JES_EtaIntercalibration_Stat8: 4.311611154777296e-22 - syst_JES_EtaIntercalibration_Stat80: 4.796031438067056e-12 - syst_JES_EtaIntercalibration_Stat81: 3.980371244394171e-15 - syst_JES_EtaIntercalibration_Stat82: 5.063791736436244e-21 + syst_JES_EtaIntercalibration_Stat78: 5.59867098e-21 + syst_JES_EtaIntercalibration_Stat79: 2.79967112e-15 + syst_JES_EtaIntercalibration_Stat8: 4.31161115e-22 + syst_JES_EtaIntercalibration_Stat80: 4.79603144e-12 + syst_JES_EtaIntercalibration_Stat81: 3.98037124e-15 + syst_JES_EtaIntercalibration_Stat82: 5.06379174e-21 syst_JES_EtaIntercalibration_Stat83: 0.0 syst_JES_EtaIntercalibration_Stat84: 0.0 syst_JES_EtaIntercalibration_Stat85: 0.0 @@ -32741,118 +32741,118 @@ bins: syst_JES_EtaIntercalibration_Stat89: 0.0 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 2.6301191512933403e-22 - syst_JES_EtaIntercalibration_Stat92: 3.7006975599202917e-19 - syst_JES_EtaIntercalibration_Stat93: 1.574260499409167e-17 - syst_JES_EtaIntercalibration_Stat94: 9.301056045493059e-11 - syst_JES_EtaIntercalibration_Stat95: 5.597889485109545e-12 - syst_JES_EtaIntercalibration_Stat96: 2.4786576745286956e-20 - syst_JES_EtaIntercalibration_Stat97: 8.39351821347878e-23 + syst_JES_EtaIntercalibration_Stat91: 2.63011915e-22 + syst_JES_EtaIntercalibration_Stat92: 3.70069756e-19 + syst_JES_EtaIntercalibration_Stat93: 1.57426050e-17 + syst_JES_EtaIntercalibration_Stat94: 9.30105605e-11 + syst_JES_EtaIntercalibration_Stat95: 5.59788949e-12 + syst_JES_EtaIntercalibration_Stat96: 2.47865767e-20 + syst_JES_EtaIntercalibration_Stat97: 8.39351821e-23 syst_JES_EtaIntercalibration_Stat98: 0.0 - syst_JES_EtaIntercalibration_Stat99: 1.620319919905431e-16 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.00015401041360895047 - syst_JES_Flavour_Comp: 0.0003896720429733188 - syst_JES_Gjet_Generator: 0.00044443486305644386 - syst_JES_Gjet_OOC: 0.00036973862051454674 - syst_JES_Gjet_Purity: 6.486719721862507e-05 - syst_JES_Gjet_Stat1: 1.8894588510999651e-06 - syst_JES_Gjet_Stat10: 8.185129015476788e-06 - syst_JES_Gjet_Stat11: 8.259566862130242e-06 - syst_JES_Gjet_Stat12: 2.201528559887425e-05 - syst_JES_Gjet_Stat13: 7.388873036532702e-05 - syst_JES_Gjet_Stat14: 0.00019258084016848614 - syst_JES_Gjet_Stat15: 0.00030287599772844335 - syst_JES_Gjet_Stat2: 1.727563257163106e-06 - syst_JES_Gjet_Stat3: 2.4993163400218068e-06 - syst_JES_Gjet_Stat4: 1.8013591396498368e-06 - syst_JES_Gjet_Stat5: 1.6813426182667234e-06 - syst_JES_Gjet_Stat6: 5.157979328186572e-06 - syst_JES_Gjet_Stat7: 4.125041498882163e-06 - syst_JES_Gjet_Stat8: 3.803108202510152e-06 - syst_JES_Gjet_Stat9: 4.455766793718002e-06 - syst_JES_Gjet_Veto: 0.00037558428890862834 - syst_JES_Gjet_dPhi: 4.0741078863967265e-05 - syst_JES_LArESZee: 0.0006688850125395246 - syst_JES_LArEsmear: 6.23180447382618e-05 - syst_JES_LAr_JVT: 7.829228106908114e-05 - syst_JES_MJB_Alpha: 7.167845282928476e-06 - syst_JES_MJB_Asym: 9.335846346207718e-05 - syst_JES_MJB_Beta: 5.5848083897301264e-06 - syst_JES_MJB_Stat1: 4.45050455004823e-08 - syst_JES_MJB_Stat10: 6.387851047104965e-06 - syst_JES_MJB_Stat11: 8.783240916654855e-06 - syst_JES_MJB_Stat12: 1.5112240072206369e-05 - syst_JES_MJB_Stat13: 1.8233142214111096e-05 - syst_JES_MJB_Stat14: 1.644156014494975e-05 - syst_JES_MJB_Stat15: 2.6379777766311834e-05 - syst_JES_MJB_Stat16: 8.720036969531723e-06 + syst_JES_EtaIntercalibration_Stat99: 1.62031992e-16 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.54010414e-04 + syst_JES_Flavour_Comp: 3.89672043e-04 + syst_JES_Gjet_Generator: 4.44434863e-04 + syst_JES_Gjet_OOC: 3.69738621e-04 + syst_JES_Gjet_Purity: 6.48671972e-05 + syst_JES_Gjet_Stat1: 1.88945885e-06 + syst_JES_Gjet_Stat10: 8.18512902e-06 + syst_JES_Gjet_Stat11: 8.25956686e-06 + syst_JES_Gjet_Stat12: 2.20152856e-05 + syst_JES_Gjet_Stat13: 7.38887304e-05 + syst_JES_Gjet_Stat14: 1.92580840e-04 + syst_JES_Gjet_Stat15: 3.02875998e-04 + syst_JES_Gjet_Stat2: 1.72756326e-06 + syst_JES_Gjet_Stat3: 2.49931634e-06 + syst_JES_Gjet_Stat4: 1.80135914e-06 + syst_JES_Gjet_Stat5: 1.68134262e-06 + syst_JES_Gjet_Stat6: 5.15797933e-06 + syst_JES_Gjet_Stat7: 4.12504150e-06 + syst_JES_Gjet_Stat8: 3.80310820e-06 + syst_JES_Gjet_Stat9: 4.45576679e-06 + syst_JES_Gjet_Veto: 3.75584289e-04 + syst_JES_Gjet_dPhi: 4.07410789e-05 + syst_JES_LArESZee: 6.68885013e-04 + syst_JES_LArEsmear: 6.23180447e-05 + syst_JES_LAr_JVT: 7.82922811e-05 + syst_JES_MJB_Alpha: 7.16784528e-06 + syst_JES_MJB_Asym: 9.33584635e-05 + syst_JES_MJB_Beta: 5.58480839e-06 + syst_JES_MJB_Stat1: 4.45050455e-08 + syst_JES_MJB_Stat10: 6.38785105e-06 + syst_JES_MJB_Stat11: 8.78324092e-06 + syst_JES_MJB_Stat12: 1.51122401e-05 + syst_JES_MJB_Stat13: 1.82331422e-05 + syst_JES_MJB_Stat14: 1.64415601e-05 + syst_JES_MJB_Stat15: 2.63797778e-05 + syst_JES_MJB_Stat16: 8.72003697e-06 syst_JES_MJB_Stat2: 0.0 - syst_JES_MJB_Stat3: 3.2250786036932496e-07 - syst_JES_MJB_Stat4: 2.482028807246201e-07 - syst_JES_MJB_Stat5: 3.337228893483334e-07 - syst_JES_MJB_Stat6: 9.577704356994948e-07 - syst_JES_MJB_Stat7: 1.949059965727068e-06 - syst_JES_MJB_Stat8: 2.6866582867942104e-06 - syst_JES_MJB_Stat9: 4.515723059488923e-06 - syst_JES_MJB_Threshold: 6.579299886766069e-05 - syst_JES_Pileup_MuOffset: 9.425730900041651e-05 - syst_JES_Pileup_NPVOffset: 9.71813411874934e-05 - syst_JES_Pileup_Pt_term: 6.178216085570334e-05 - syst_JES_PunchThrough_MC15: 0.00013679254475299448 - syst_JES_SingleParticle_HighPt: 1.3078838509210212e-09 - syst_JES_Zjet_MC: 0.00016872056039499158 - syst_JES_Zjet_MuScale: 1.3771666565815482e-05 - syst_JES_Zjet_MuSmearID: 4.372051778055699e-06 - syst_JES_Zjet_MuSmearMS: 4.801564016026445e-05 - syst_JES_Zjet_OOC: 0.0001071068488706488 - syst_JES_Zjet_Stat1: 1.2143057522716425e-05 - syst_JES_Zjet_Stat10: 9.004120945433819e-06 - syst_JES_Zjet_Stat11: 1.3480843297064172e-05 - syst_JES_Zjet_Stat12: 3.100167858358641e-05 - syst_JES_Zjet_Stat13: 4.8262385975001275e-05 - syst_JES_Zjet_Stat2: 2.821510765529701e-08 - syst_JES_Zjet_Stat3: 6.799513273021826e-06 - syst_JES_Zjet_Stat4: 6.521100578123297e-06 - syst_JES_Zjet_Stat5: 6.596274933627312e-06 - syst_JES_Zjet_Stat6: 4.473191589905355e-06 - syst_JES_Zjet_Stat7: 5.3175540194717346e-06 - syst_JES_Zjet_Stat8: 4.126245958192507e-06 - syst_JES_Zjet_Stat9: 5.281186112039605e-06 - syst_JES_Zjet_Veto: 2.231550357935039e-05 - syst_JES_Zjet_dPhi: 2.101408277798486e-05 + syst_JES_MJB_Stat3: 3.22507860e-07 + syst_JES_MJB_Stat4: 2.48202881e-07 + syst_JES_MJB_Stat5: 3.33722889e-07 + syst_JES_MJB_Stat6: 9.57770436e-07 + syst_JES_MJB_Stat7: 1.94905997e-06 + syst_JES_MJB_Stat8: 2.68665829e-06 + syst_JES_MJB_Stat9: 4.51572306e-06 + syst_JES_MJB_Threshold: 6.57929989e-05 + syst_JES_Pileup_MuOffset: 9.42573090e-05 + syst_JES_Pileup_NPVOffset: 9.71813412e-05 + syst_JES_Pileup_Pt_term: 6.17821609e-05 + syst_JES_PunchThrough_MC15: 1.36792545e-04 + syst_JES_SingleParticle_HighPt: 1.30788385e-09 + syst_JES_Zjet_MC: 1.68720560e-04 + syst_JES_Zjet_MuScale: 1.37716666e-05 + syst_JES_Zjet_MuSmearID: 4.37205178e-06 + syst_JES_Zjet_MuSmearMS: 4.80156402e-05 + syst_JES_Zjet_OOC: 1.07106849e-04 + syst_JES_Zjet_Stat1: 1.21430575e-05 + syst_JES_Zjet_Stat10: 9.00412095e-06 + syst_JES_Zjet_Stat11: 1.34808433e-05 + syst_JES_Zjet_Stat12: 3.10016786e-05 + syst_JES_Zjet_Stat13: 4.82623860e-05 + syst_JES_Zjet_Stat2: 2.82151077e-08 + syst_JES_Zjet_Stat3: 6.79951327e-06 + syst_JES_Zjet_Stat4: 6.52110058e-06 + syst_JES_Zjet_Stat5: 6.59627493e-06 + syst_JES_Zjet_Stat6: 4.47319159e-06 + syst_JES_Zjet_Stat7: 5.31755402e-06 + syst_JES_Zjet_Stat8: 4.12624596e-06 + syst_JES_Zjet_Stat9: 5.28118611e-06 + syst_JES_Zjet_Veto: 2.23155036e-05 + syst_JES_Zjet_dPhi: 2.10140828e-05 syst_PRW: 0.0 - syst_Unfolding_bias: 1.545e-05 - syst_cleaning: 9.710742852634911e-05 - syst_lumi: 0.0003161 + syst_Unfolding_bias: 1.54500000e-05 + syst_cleaning: 9.71074285e-05 + syst_lumi: 3.16100000e-04 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 6.36430332008147e-05 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 8.72171776372063e-06 - syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 3.340063622148536e-06 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 6.36430332e-05 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 8.72171776e-06 + syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 3.34006362e-06 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 1.9031219088644848e-05 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 3.886870592134501e-05 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.00010061291765971207 -- stat: 0.00016897 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 1.90312191e-05 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 3.88687059e-05 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.00612918e-04 +- stat: 1.68970000e-04 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 5.9706841107196425e-05 - syst_JER_NP1: 1.1857528863553316e-05 - syst_JER_NP2: 4.92124890144768e-05 - syst_JER_NP3: 5.772667039592705e-06 - syst_JER_NP4: 1.8930580418994026e-16 - syst_JER_NP5: 2.410719347862117e-11 - syst_JER_NP6: 2.0098365605192876e-18 - syst_JER_NP7: 1.5245368968968903e-20 - syst_JER_NP8: 5.274149435691029e-06 - syst_JES_EtaIntercalibration_Modelling: 0.0005705397707434601 + syst_JER_NP0: 5.97068411e-05 + syst_JER_NP1: 1.18575289e-05 + syst_JER_NP2: 4.92124890e-05 + syst_JER_NP3: 5.77266704e-06 + syst_JER_NP4: 1.89305804e-16 + syst_JER_NP5: 2.41071935e-11 + syst_JER_NP6: 2.00983656e-18 + syst_JER_NP7: 1.52453690e-20 + syst_JER_NP8: 5.27414944e-06 + syst_JES_EtaIntercalibration_Modelling: 5.70539771e-04 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 3.8523206911548786e-17 - syst_JES_EtaIntercalibration_Stat101: 2.2254799423452285e-12 - syst_JES_EtaIntercalibration_Stat102: 1.4990063554485017e-16 - syst_JES_EtaIntercalibration_Stat103: 1.3359609678055716e-19 + syst_JES_EtaIntercalibration_Stat100: 3.85232069e-17 + syst_JES_EtaIntercalibration_Stat101: 2.22547994e-12 + syst_JES_EtaIntercalibration_Stat102: 1.49900636e-16 + syst_JES_EtaIntercalibration_Stat103: 1.33596097e-19 syst_JES_EtaIntercalibration_Stat104: 0.0 syst_JES_EtaIntercalibration_Stat105: 0.0 syst_JES_EtaIntercalibration_Stat106: 0.0 @@ -32861,170 +32861,170 @@ bins: syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 syst_JES_EtaIntercalibration_Stat110: 0.0 - syst_JES_EtaIntercalibration_Stat111: 4.321466764884349e-23 - syst_JES_EtaIntercalibration_Stat112: 1.2663365222167448e-18 - syst_JES_EtaIntercalibration_Stat113: 2.972229443061025e-08 - syst_JES_EtaIntercalibration_Stat114: 2.10092102648848e-08 - syst_JES_EtaIntercalibration_Stat115: 8.695397465326125e-08 - syst_JES_EtaIntercalibration_Stat116: 4.669778800616194e-16 + syst_JES_EtaIntercalibration_Stat111: 4.32146676e-23 + syst_JES_EtaIntercalibration_Stat112: 1.26633652e-18 + syst_JES_EtaIntercalibration_Stat113: 2.97222944e-08 + syst_JES_EtaIntercalibration_Stat114: 2.10092103e-08 + syst_JES_EtaIntercalibration_Stat115: 8.69539747e-08 + syst_JES_EtaIntercalibration_Stat116: 4.66977880e-16 syst_JES_EtaIntercalibration_Stat117: 0.0 syst_JES_EtaIntercalibration_Stat118: 0.0 - syst_JES_EtaIntercalibration_Stat119: 4.771793722181614e-16 + syst_JES_EtaIntercalibration_Stat119: 4.77179372e-16 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 1.892264793665142e-09 - syst_JES_EtaIntercalibration_Stat121: 3.4756464146975595e-09 - syst_JES_EtaIntercalibration_Stat122: 2.528794182079629e-08 - syst_JES_EtaIntercalibration_Stat123: 6.034174849405674e-16 + syst_JES_EtaIntercalibration_Stat120: 1.89226479e-09 + syst_JES_EtaIntercalibration_Stat121: 3.47564641e-09 + syst_JES_EtaIntercalibration_Stat122: 2.52879418e-08 + syst_JES_EtaIntercalibration_Stat123: 6.03417485e-16 syst_JES_EtaIntercalibration_Stat124: 0.0 syst_JES_EtaIntercalibration_Stat125: 0.0 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 syst_JES_EtaIntercalibration_Stat128: 0.0 syst_JES_EtaIntercalibration_Stat129: 0.0 - syst_JES_EtaIntercalibration_Stat13: 4.782193661587137e-16 + syst_JES_EtaIntercalibration_Stat13: 4.78219366e-16 syst_JES_EtaIntercalibration_Stat130: 0.0 - syst_JES_EtaIntercalibration_Stat131: 5.048060815798479e-18 - syst_JES_EtaIntercalibration_Stat132: 4.75361289519968e-08 - syst_JES_EtaIntercalibration_Stat133: 9.522478063377201e-11 - syst_JES_EtaIntercalibration_Stat134: 7.68723275613655e-08 - syst_JES_EtaIntercalibration_Stat135: 8.181006632858514e-14 + syst_JES_EtaIntercalibration_Stat131: 5.04806082e-18 + syst_JES_EtaIntercalibration_Stat132: 4.75361290e-08 + syst_JES_EtaIntercalibration_Stat133: 9.52247806e-11 + syst_JES_EtaIntercalibration_Stat134: 7.68723276e-08 + syst_JES_EtaIntercalibration_Stat135: 8.18100663e-14 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 - syst_JES_EtaIntercalibration_Stat138: 4.483577503867503e-16 - syst_JES_EtaIntercalibration_Stat139: 1.6558775407619972e-08 - syst_JES_EtaIntercalibration_Stat14: 5.255505494241253e-22 - syst_JES_EtaIntercalibration_Stat140: 2.2246200641907376e-13 - syst_JES_EtaIntercalibration_Stat141: 3.581532014000014e-08 - syst_JES_EtaIntercalibration_Stat142: 1.0637292379472566e-12 + syst_JES_EtaIntercalibration_Stat138: 4.48357750e-16 + syst_JES_EtaIntercalibration_Stat139: 1.65587754e-08 + syst_JES_EtaIntercalibration_Stat14: 5.25550549e-22 + syst_JES_EtaIntercalibration_Stat140: 2.22462006e-13 + syst_JES_EtaIntercalibration_Stat141: 3.58153201e-08 + syst_JES_EtaIntercalibration_Stat142: 1.06372924e-12 syst_JES_EtaIntercalibration_Stat143: 0.0 syst_JES_EtaIntercalibration_Stat144: 0.0 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 syst_JES_EtaIntercalibration_Stat147: 0.0 syst_JES_EtaIntercalibration_Stat148: 0.0 - syst_JES_EtaIntercalibration_Stat149: 3.868413760737984e-14 - syst_JES_EtaIntercalibration_Stat15: 4.575657157379146e-22 - syst_JES_EtaIntercalibration_Stat150: 3.3910090710580703e-08 - syst_JES_EtaIntercalibration_Stat151: 1.0390253057397014e-08 - syst_JES_EtaIntercalibration_Stat152: 7.685938843730562e-08 - syst_JES_EtaIntercalibration_Stat153: 9.57975964475101e-14 + syst_JES_EtaIntercalibration_Stat149: 3.86841376e-14 + syst_JES_EtaIntercalibration_Stat15: 4.57565716e-22 + syst_JES_EtaIntercalibration_Stat150: 3.39100907e-08 + syst_JES_EtaIntercalibration_Stat151: 1.03902531e-08 + syst_JES_EtaIntercalibration_Stat152: 7.68593884e-08 + syst_JES_EtaIntercalibration_Stat153: 9.57975964e-14 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 2.4482535052492363e-17 - syst_JES_EtaIntercalibration_Stat157: 2.80238947150463e-08 - syst_JES_EtaIntercalibration_Stat158: 1.6665314498082537e-07 - syst_JES_EtaIntercalibration_Stat159: 3.381041509283788e-08 + syst_JES_EtaIntercalibration_Stat156: 2.44825351e-17 + syst_JES_EtaIntercalibration_Stat157: 2.80238947e-08 + syst_JES_EtaIntercalibration_Stat158: 1.66653145e-07 + syst_JES_EtaIntercalibration_Stat159: 3.38104151e-08 syst_JES_EtaIntercalibration_Stat16: 0.0 - syst_JES_EtaIntercalibration_Stat160: 1.8186435020366142e-16 + syst_JES_EtaIntercalibration_Stat160: 1.81864350e-16 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 - syst_JES_EtaIntercalibration_Stat167: 1.72611870614299e-11 - syst_JES_EtaIntercalibration_Stat168: 5.4153257519746684e-08 - syst_JES_EtaIntercalibration_Stat169: 1.9773118115259413e-07 + syst_JES_EtaIntercalibration_Stat167: 1.72611871e-11 + syst_JES_EtaIntercalibration_Stat168: 5.41532575e-08 + syst_JES_EtaIntercalibration_Stat169: 1.97731181e-07 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 2.3154655579386189e-07 - syst_JES_EtaIntercalibration_Stat171: 1.6798187671475061e-09 + syst_JES_EtaIntercalibration_Stat170: 2.31546556e-07 + syst_JES_EtaIntercalibration_Stat171: 1.67981877e-09 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 - syst_JES_EtaIntercalibration_Stat174: 9.22065183361933e-17 - syst_JES_EtaIntercalibration_Stat175: 1.6515305651122537e-07 - syst_JES_EtaIntercalibration_Stat176: 2.6197324290850776e-07 - syst_JES_EtaIntercalibration_Stat177: 1.2415620916812819e-07 - syst_JES_EtaIntercalibration_Stat178: 2.423027793381661e-08 + syst_JES_EtaIntercalibration_Stat174: 9.22065183e-17 + syst_JES_EtaIntercalibration_Stat175: 1.65153057e-07 + syst_JES_EtaIntercalibration_Stat176: 2.61973243e-07 + syst_JES_EtaIntercalibration_Stat177: 1.24156209e-07 + syst_JES_EtaIntercalibration_Stat178: 2.42302779e-08 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 syst_JES_EtaIntercalibration_Stat180: 0.0 syst_JES_EtaIntercalibration_Stat181: 0.0 syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 - syst_JES_EtaIntercalibration_Stat184: 3.821729211692006e-08 - syst_JES_EtaIntercalibration_Stat185: 3.2710641617064007e-07 - syst_JES_EtaIntercalibration_Stat186: 1.2631609596563694e-06 - syst_JES_EtaIntercalibration_Stat187: 1.0637975218527255e-06 - syst_JES_EtaIntercalibration_Stat188: 3.743675566872749e-08 + syst_JES_EtaIntercalibration_Stat184: 3.82172921e-08 + syst_JES_EtaIntercalibration_Stat185: 3.27106416e-07 + syst_JES_EtaIntercalibration_Stat186: 1.26316096e-06 + syst_JES_EtaIntercalibration_Stat187: 1.06379752e-06 + syst_JES_EtaIntercalibration_Stat188: 3.74367557e-08 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 - syst_JES_EtaIntercalibration_Stat191: 9.64478584521191e-09 - syst_JES_EtaIntercalibration_Stat192: 1.2649354766153096e-06 - syst_JES_EtaIntercalibration_Stat193: 2.0713169723632354e-06 - syst_JES_EtaIntercalibration_Stat194: 4.228645261783022e-07 - syst_JES_EtaIntercalibration_Stat195: 2.8325084289371493e-08 - syst_JES_EtaIntercalibration_Stat196: 6.065558509321298e-16 + syst_JES_EtaIntercalibration_Stat191: 9.64478585e-09 + syst_JES_EtaIntercalibration_Stat192: 1.26493548e-06 + syst_JES_EtaIntercalibration_Stat193: 2.07131697e-06 + syst_JES_EtaIntercalibration_Stat194: 4.22864526e-07 + syst_JES_EtaIntercalibration_Stat195: 2.83250843e-08 + syst_JES_EtaIntercalibration_Stat196: 6.06555851e-16 syst_JES_EtaIntercalibration_Stat197: 0.0 syst_JES_EtaIntercalibration_Stat198: 0.0 - syst_JES_EtaIntercalibration_Stat199: 4.851163780991114e-08 + syst_JES_EtaIntercalibration_Stat199: 4.85116378e-08 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 7.134460806536119e-07 - syst_JES_EtaIntercalibration_Stat201: 2.527665128137032e-06 - syst_JES_EtaIntercalibration_Stat202: 2.028251155552487e-06 - syst_JES_EtaIntercalibration_Stat203: 2.8483877031577007e-08 + syst_JES_EtaIntercalibration_Stat200: 7.13446081e-07 + syst_JES_EtaIntercalibration_Stat201: 2.52766513e-06 + syst_JES_EtaIntercalibration_Stat202: 2.02825116e-06 + syst_JES_EtaIntercalibration_Stat203: 2.84838770e-08 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 - syst_JES_EtaIntercalibration_Stat206: 1.84681904979887e-08 - syst_JES_EtaIntercalibration_Stat207: 1.956475594021045e-06 - syst_JES_EtaIntercalibration_Stat208: 3.871098648962591e-06 - syst_JES_EtaIntercalibration_Stat209: 1.1046320925991605e-06 + syst_JES_EtaIntercalibration_Stat206: 1.84681905e-08 + syst_JES_EtaIntercalibration_Stat207: 1.95647559e-06 + syst_JES_EtaIntercalibration_Stat208: 3.87109865e-06 + syst_JES_EtaIntercalibration_Stat209: 1.10463209e-06 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 3.0121273989491216e-08 - syst_JES_EtaIntercalibration_Stat211: 6.427500045118631e-16 - syst_JES_EtaIntercalibration_Stat212: 2.8038529686843425e-08 - syst_JES_EtaIntercalibration_Stat213: 8.079880862364246e-07 - syst_JES_EtaIntercalibration_Stat214: 2.663227177692508e-06 - syst_JES_EtaIntercalibration_Stat215: 2.416830310551405e-06 - syst_JES_EtaIntercalibration_Stat216: 4.3640791411247343e-08 + syst_JES_EtaIntercalibration_Stat210: 3.01212740e-08 + syst_JES_EtaIntercalibration_Stat211: 6.42750005e-16 + syst_JES_EtaIntercalibration_Stat212: 2.80385297e-08 + syst_JES_EtaIntercalibration_Stat213: 8.07988086e-07 + syst_JES_EtaIntercalibration_Stat214: 2.66322718e-06 + syst_JES_EtaIntercalibration_Stat215: 2.41683031e-06 + syst_JES_EtaIntercalibration_Stat216: 4.36407914e-08 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 - syst_JES_EtaIntercalibration_Stat219: 2.1756791767170086e-08 + syst_JES_EtaIntercalibration_Stat219: 2.17567918e-08 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 2.1329500697390923e-06 - syst_JES_EtaIntercalibration_Stat221: 3.3819072651390076e-06 - syst_JES_EtaIntercalibration_Stat222: 1.0904735989468061e-06 - syst_JES_EtaIntercalibration_Stat223: 1.1082527091875344e-09 - syst_JES_EtaIntercalibration_Stat224: 8.438551702773188e-08 - syst_JES_EtaIntercalibration_Stat225: 2.5307182280925703e-06 - syst_JES_EtaIntercalibration_Stat226: 8.100831238212535e-06 - syst_JES_EtaIntercalibration_Stat227: 6.170253053967884e-06 - syst_JES_EtaIntercalibration_Stat228: 1.495732847135477e-08 + syst_JES_EtaIntercalibration_Stat220: 2.13295007e-06 + syst_JES_EtaIntercalibration_Stat221: 3.38190727e-06 + syst_JES_EtaIntercalibration_Stat222: 1.09047360e-06 + syst_JES_EtaIntercalibration_Stat223: 1.10825271e-09 + syst_JES_EtaIntercalibration_Stat224: 8.43855170e-08 + syst_JES_EtaIntercalibration_Stat225: 2.53071823e-06 + syst_JES_EtaIntercalibration_Stat226: 8.10083124e-06 + syst_JES_EtaIntercalibration_Stat227: 6.17025305e-06 + syst_JES_EtaIntercalibration_Stat228: 1.49573285e-08 syst_JES_EtaIntercalibration_Stat229: 0.0 syst_JES_EtaIntercalibration_Stat23: 0.0 syst_JES_EtaIntercalibration_Stat230: 0.0 - syst_JES_EtaIntercalibration_Stat231: 6.723863621460507e-09 - syst_JES_EtaIntercalibration_Stat232: 7.10757426974914e-06 - syst_JES_EtaIntercalibration_Stat233: 8.347798197728548e-06 - syst_JES_EtaIntercalibration_Stat234: 3.85892951477479e-06 - syst_JES_EtaIntercalibration_Stat235: 8.716102727136711e-08 - syst_JES_EtaIntercalibration_Stat236: 5.696561835879604e-07 - syst_JES_EtaIntercalibration_Stat237: 1.966567250312076e-06 - syst_JES_EtaIntercalibration_Stat238: 1.3871579145865117e-06 - syst_JES_EtaIntercalibration_Stat239: 1.3610235376362895e-08 + syst_JES_EtaIntercalibration_Stat231: 6.72386362e-09 + syst_JES_EtaIntercalibration_Stat232: 7.10757427e-06 + syst_JES_EtaIntercalibration_Stat233: 8.34779820e-06 + syst_JES_EtaIntercalibration_Stat234: 3.85892951e-06 + syst_JES_EtaIntercalibration_Stat235: 8.71610273e-08 + syst_JES_EtaIntercalibration_Stat236: 5.69656184e-07 + syst_JES_EtaIntercalibration_Stat237: 1.96656725e-06 + syst_JES_EtaIntercalibration_Stat238: 1.38715791e-06 + syst_JES_EtaIntercalibration_Stat239: 1.36102354e-08 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 - syst_JES_EtaIntercalibration_Stat242: 1.0976850219894595e-08 - syst_JES_EtaIntercalibration_Stat243: 1.2565258085292162e-06 - syst_JES_EtaIntercalibration_Stat244: 1.922590440005359e-06 - syst_JES_EtaIntercalibration_Stat245: 6.776736437991373e-07 + syst_JES_EtaIntercalibration_Stat242: 1.09768502e-08 + syst_JES_EtaIntercalibration_Stat243: 1.25652581e-06 + syst_JES_EtaIntercalibration_Stat244: 1.92259044e-06 + syst_JES_EtaIntercalibration_Stat245: 6.77673644e-07 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 - syst_JES_EtaIntercalibration_Stat27: 2.184310131368712e-22 - syst_JES_EtaIntercalibration_Stat28: 1.3092627305269939e-18 - syst_JES_EtaIntercalibration_Stat29: 8.2999874998432e-13 + syst_JES_EtaIntercalibration_Stat27: 2.18431013e-22 + syst_JES_EtaIntercalibration_Stat28: 1.30926273e-18 + syst_JES_EtaIntercalibration_Stat29: 8.29998750e-13 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 8.318174060189669e-13 - syst_JES_EtaIntercalibration_Stat31: 4.3794904669379064e-23 + syst_JES_EtaIntercalibration_Stat30: 8.31817406e-13 + syst_JES_EtaIntercalibration_Stat31: 4.37949047e-23 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 - syst_JES_EtaIntercalibration_Stat34: 8.767641187913656e-24 - syst_JES_EtaIntercalibration_Stat35: 4.776173087146068e-16 - syst_JES_EtaIntercalibration_Stat36: 4.790992615290101e-16 - syst_JES_EtaIntercalibration_Stat37: 1.316084794950538e-20 - syst_JES_EtaIntercalibration_Stat38: 3.3730017417724525e-23 + syst_JES_EtaIntercalibration_Stat34: 8.76764119e-24 + syst_JES_EtaIntercalibration_Stat35: 4.77617309e-16 + syst_JES_EtaIntercalibration_Stat36: 4.79099262e-16 + syst_JES_EtaIntercalibration_Stat37: 1.31608479e-20 + syst_JES_EtaIntercalibration_Stat38: 3.37300174e-23 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 syst_JES_EtaIntercalibration_Stat40: 0.0 @@ -33035,21 +33035,21 @@ bins: syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 syst_JES_EtaIntercalibration_Stat47: 0.0 - syst_JES_EtaIntercalibration_Stat48: 1.1557975038907118e-22 - syst_JES_EtaIntercalibration_Stat49: 5.414081669129124e-22 - syst_JES_EtaIntercalibration_Stat5: 9.45093523149958e-23 - syst_JES_EtaIntercalibration_Stat50: 1.357228152918661e-18 - syst_JES_EtaIntercalibration_Stat51: 8.21858659562419e-13 - syst_JES_EtaIntercalibration_Stat52: 8.264480577762027e-13 - syst_JES_EtaIntercalibration_Stat53: 1.191762417598407e-22 - syst_JES_EtaIntercalibration_Stat54: 5.276692785258585e-24 + syst_JES_EtaIntercalibration_Stat48: 1.15579750e-22 + syst_JES_EtaIntercalibration_Stat49: 5.41408167e-22 + syst_JES_EtaIntercalibration_Stat5: 9.45093523e-23 + syst_JES_EtaIntercalibration_Stat50: 1.35722815e-18 + syst_JES_EtaIntercalibration_Stat51: 8.21858660e-13 + syst_JES_EtaIntercalibration_Stat52: 8.26448058e-13 + syst_JES_EtaIntercalibration_Stat53: 1.19176242e-22 + syst_JES_EtaIntercalibration_Stat54: 5.27669279e-24 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 3.106703719378467e-23 - syst_JES_EtaIntercalibration_Stat57: 4.728166391671088e-16 - syst_JES_EtaIntercalibration_Stat58: 4.770096595778407e-16 - syst_JES_EtaIntercalibration_Stat59: 6.770909613929283e-20 - syst_JES_EtaIntercalibration_Stat6: 2.426888338490257e-22 - syst_JES_EtaIntercalibration_Stat60: 1.2810175759918363e-21 + syst_JES_EtaIntercalibration_Stat56: 3.10670372e-23 + syst_JES_EtaIntercalibration_Stat57: 4.72816639e-16 + syst_JES_EtaIntercalibration_Stat58: 4.77009660e-16 + syst_JES_EtaIntercalibration_Stat59: 6.77090961e-20 + syst_JES_EtaIntercalibration_Stat6: 2.42688834e-22 + syst_JES_EtaIntercalibration_Stat60: 1.28101758e-21 syst_JES_EtaIntercalibration_Stat61: 0.0 syst_JES_EtaIntercalibration_Stat62: 0.0 syst_JES_EtaIntercalibration_Stat63: 0.0 @@ -33059,21 +33059,21 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 8.698495085358156e-22 - syst_JES_EtaIntercalibration_Stat70: 9.45093523149958e-23 - syst_JES_EtaIntercalibration_Stat71: 1.796947879043797e-21 - syst_JES_EtaIntercalibration_Stat72: 1.789190226750638e-18 - syst_JES_EtaIntercalibration_Stat73: 1.5751790898056856e-11 - syst_JES_EtaIntercalibration_Stat74: 8.511006193747011e-13 - syst_JES_EtaIntercalibration_Stat75: 1.0434251386659226e-21 - syst_JES_EtaIntercalibration_Stat76: 5.276692785258585e-24 + syst_JES_EtaIntercalibration_Stat7: 8.69849509e-22 + syst_JES_EtaIntercalibration_Stat70: 9.45093523e-23 + syst_JES_EtaIntercalibration_Stat71: 1.79694788e-21 + syst_JES_EtaIntercalibration_Stat72: 1.78919023e-18 + syst_JES_EtaIntercalibration_Stat73: 1.57517909e-11 + syst_JES_EtaIntercalibration_Stat74: 8.51100619e-13 + syst_JES_EtaIntercalibration_Stat75: 1.04342514e-21 + syst_JES_EtaIntercalibration_Stat76: 5.27669279e-24 syst_JES_EtaIntercalibration_Stat77: 0.0 - syst_JES_EtaIntercalibration_Stat78: 1.3981811148774682e-21 - syst_JES_EtaIntercalibration_Stat79: 4.473515919268422e-16 - syst_JES_EtaIntercalibration_Stat8: 1.1381743407756125e-22 - syst_JES_EtaIntercalibration_Stat80: 9.12787693157349e-13 - syst_JES_EtaIntercalibration_Stat81: 6.07309526672355e-16 - syst_JES_EtaIntercalibration_Stat82: 1.4002102984909088e-21 + syst_JES_EtaIntercalibration_Stat78: 1.39818111e-21 + syst_JES_EtaIntercalibration_Stat79: 4.47351592e-16 + syst_JES_EtaIntercalibration_Stat8: 1.13817434e-22 + syst_JES_EtaIntercalibration_Stat80: 9.12787693e-13 + syst_JES_EtaIntercalibration_Stat81: 6.07309527e-16 + syst_JES_EtaIntercalibration_Stat82: 1.40021030e-21 syst_JES_EtaIntercalibration_Stat83: 0.0 syst_JES_EtaIntercalibration_Stat84: 0.0 syst_JES_EtaIntercalibration_Stat85: 0.0 @@ -33083,118 +33083,118 @@ bins: syst_JES_EtaIntercalibration_Stat89: 0.0 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 8.072222788674754e-23 - syst_JES_EtaIntercalibration_Stat92: 5.881070390828102e-20 - syst_JES_EtaIntercalibration_Stat93: 2.721570507997175e-18 - syst_JES_EtaIntercalibration_Stat94: 1.5829629325877684e-11 - syst_JES_EtaIntercalibration_Stat95: 8.630488646073291e-13 - syst_JES_EtaIntercalibration_Stat96: 5.907965411840188e-21 - syst_JES_EtaIntercalibration_Stat97: 5.276692785258585e-24 + syst_JES_EtaIntercalibration_Stat91: 8.07222279e-23 + syst_JES_EtaIntercalibration_Stat92: 5.88107039e-20 + syst_JES_EtaIntercalibration_Stat93: 2.72157051e-18 + syst_JES_EtaIntercalibration_Stat94: 1.58296293e-11 + syst_JES_EtaIntercalibration_Stat95: 8.63048865e-13 + syst_JES_EtaIntercalibration_Stat96: 5.90796541e-21 + syst_JES_EtaIntercalibration_Stat97: 5.27669279e-24 syst_JES_EtaIntercalibration_Stat98: 0.0 - syst_JES_EtaIntercalibration_Stat99: 2.2871421442086822e-17 - syst_JES_EtaIntercalibration_TotalStat_MJB: 9.572640845137773e-05 - syst_JES_Flavour_Comp: 0.0002373853196808935 - syst_JES_Gjet_Generator: 0.00026603535479330565 - syst_JES_Gjet_OOC: 0.00022152775785440522 - syst_JES_Gjet_Purity: 3.8255796694749416e-05 - syst_JES_Gjet_Stat1: 1.2515597388858434e-06 - syst_JES_Gjet_Stat10: 5.42127316688617e-06 - syst_JES_Gjet_Stat11: 5.530069687626007e-06 - syst_JES_Gjet_Stat12: 1.2485999999999999e-05 - syst_JES_Gjet_Stat13: 4.459307008942085e-05 - syst_JES_Gjet_Stat14: 0.00011590436434837128 - syst_JES_Gjet_Stat15: 0.0001913122251713152 - syst_JES_Gjet_Stat2: 1.1084047218863693e-06 - syst_JES_Gjet_Stat3: 1.419105802961851e-06 - syst_JES_Gjet_Stat4: 1.121383226198787e-06 - syst_JES_Gjet_Stat5: 1.1585553968196772e-06 - syst_JES_Gjet_Stat6: 3.80097338684448e-06 - syst_JES_Gjet_Stat7: 2.6091823910949576e-06 - syst_JES_Gjet_Stat8: 2.054519651889463e-06 - syst_JES_Gjet_Stat9: 2.8393580260333497e-06 - syst_JES_Gjet_Veto: 0.0002264374692934012 - syst_JES_Gjet_dPhi: 2.4870176416744617e-05 - syst_JES_LArESZee: 0.0003996661943109525 - syst_JES_LArEsmear: 3.7317442999219544e-05 - syst_JES_LAr_JVT: 4.7103745074038436e-05 - syst_JES_MJB_Alpha: 5.216073307575344e-06 - syst_JES_MJB_Asym: 6.177739453068574e-05 - syst_JES_MJB_Beta: 3.813451039412988e-06 - syst_JES_MJB_Stat1: 1.7381129853953683e-08 - syst_JES_MJB_Stat10: 3.5874982926825206e-06 - syst_JES_MJB_Stat11: 4.78033897856627e-06 - syst_JES_MJB_Stat12: 8.64035559164089e-06 - syst_JES_MJB_Stat13: 1.1403308116507244e-05 - syst_JES_MJB_Stat14: 1.1528653466472135e-05 - syst_JES_MJB_Stat15: 2.1668748810210524e-05 - syst_JES_MJB_Stat16: 1.5472466408107016e-06 + syst_JES_EtaIntercalibration_Stat99: 2.28714214e-17 + syst_JES_EtaIntercalibration_TotalStat_MJB: 9.57264085e-05 + syst_JES_Flavour_Comp: 2.37385320e-04 + syst_JES_Gjet_Generator: 2.66035355e-04 + syst_JES_Gjet_OOC: 2.21527758e-04 + syst_JES_Gjet_Purity: 3.82557967e-05 + syst_JES_Gjet_Stat1: 1.25155974e-06 + syst_JES_Gjet_Stat10: 5.42127317e-06 + syst_JES_Gjet_Stat11: 5.53006969e-06 + syst_JES_Gjet_Stat12: 1.24860000e-05 + syst_JES_Gjet_Stat13: 4.45930701e-05 + syst_JES_Gjet_Stat14: 1.15904364e-04 + syst_JES_Gjet_Stat15: 1.91312225e-04 + syst_JES_Gjet_Stat2: 1.10840472e-06 + syst_JES_Gjet_Stat3: 1.41910580e-06 + syst_JES_Gjet_Stat4: 1.12138323e-06 + syst_JES_Gjet_Stat5: 1.15855540e-06 + syst_JES_Gjet_Stat6: 3.80097339e-06 + syst_JES_Gjet_Stat7: 2.60918239e-06 + syst_JES_Gjet_Stat8: 2.05451965e-06 + syst_JES_Gjet_Stat9: 2.83935803e-06 + syst_JES_Gjet_Veto: 2.26437469e-04 + syst_JES_Gjet_dPhi: 2.48701764e-05 + syst_JES_LArESZee: 3.99666194e-04 + syst_JES_LArEsmear: 3.73174430e-05 + syst_JES_LAr_JVT: 4.71037451e-05 + syst_JES_MJB_Alpha: 5.21607331e-06 + syst_JES_MJB_Asym: 6.17773945e-05 + syst_JES_MJB_Beta: 3.81345104e-06 + syst_JES_MJB_Stat1: 1.73811299e-08 + syst_JES_MJB_Stat10: 3.58749829e-06 + syst_JES_MJB_Stat11: 4.78033898e-06 + syst_JES_MJB_Stat12: 8.64035559e-06 + syst_JES_MJB_Stat13: 1.14033081e-05 + syst_JES_MJB_Stat14: 1.15286535e-05 + syst_JES_MJB_Stat15: 2.16687488e-05 + syst_JES_MJB_Stat16: 1.54724664e-06 syst_JES_MJB_Stat2: 0.0 - syst_JES_MJB_Stat3: 1.8255815511775967e-07 - syst_JES_MJB_Stat4: 1.4272098654367548e-07 - syst_JES_MJB_Stat5: 1.8905334564614294e-07 - syst_JES_MJB_Stat6: 5.171031110910086e-07 - syst_JES_MJB_Stat7: 9.034727389357136e-07 - syst_JES_MJB_Stat8: 1.2703297554178598e-06 - syst_JES_MJB_Stat9: 2.17736325632633e-06 - syst_JES_MJB_Threshold: 4.1950702020347646e-05 - syst_JES_Pileup_MuOffset: 5.829363001220631e-05 - syst_JES_Pileup_NPVOffset: 5.962761671406966e-05 - syst_JES_Pileup_Pt_term: 3.552820851098462e-05 - syst_JES_PunchThrough_MC15: 9.082092600276657e-05 - syst_JES_SingleParticle_HighPt: 3.098812837200724e-09 - syst_JES_Zjet_MC: 0.00010142474291315704 - syst_JES_Zjet_MuScale: 8.384146110368069e-06 - syst_JES_Zjet_MuSmearID: 2.55267756483266e-06 - syst_JES_Zjet_MuSmearMS: 2.847890930144622e-05 - syst_JES_Zjet_OOC: 6.544269554350585e-05 - syst_JES_Zjet_Stat1: 8.296339433750284e-06 - syst_JES_Zjet_Stat10: 5.409004621924445e-06 - syst_JES_Zjet_Stat11: 8.053273045787036e-06 - syst_JES_Zjet_Stat12: 1.7890139742327335e-05 - syst_JES_Zjet_Stat13: 2.814842269115625e-05 - syst_JES_Zjet_Stat2: 1.622931606692038e-08 - syst_JES_Zjet_Stat3: 4.517828100979496e-06 - syst_JES_Zjet_Stat4: 4.457719904839245e-06 - syst_JES_Zjet_Stat5: 4.326215089428633e-06 - syst_JES_Zjet_Stat6: 3.076060305000538e-06 - syst_JES_Zjet_Stat7: 3.7420523780406923e-06 - syst_JES_Zjet_Stat8: 2.6263255700693317e-06 - syst_JES_Zjet_Stat9: 3.3979771923896133e-06 - syst_JES_Zjet_Veto: 1.351646936148638e-05 - syst_JES_Zjet_dPhi: 1.2716283222703087e-05 + syst_JES_MJB_Stat3: 1.82558155e-07 + syst_JES_MJB_Stat4: 1.42720987e-07 + syst_JES_MJB_Stat5: 1.89053346e-07 + syst_JES_MJB_Stat6: 5.17103111e-07 + syst_JES_MJB_Stat7: 9.03472739e-07 + syst_JES_MJB_Stat8: 1.27032976e-06 + syst_JES_MJB_Stat9: 2.17736326e-06 + syst_JES_MJB_Threshold: 4.19507020e-05 + syst_JES_Pileup_MuOffset: 5.82936300e-05 + syst_JES_Pileup_NPVOffset: 5.96276167e-05 + syst_JES_Pileup_Pt_term: 3.55282085e-05 + syst_JES_PunchThrough_MC15: 9.08209260e-05 + syst_JES_SingleParticle_HighPt: 3.09881284e-09 + syst_JES_Zjet_MC: 1.01424743e-04 + syst_JES_Zjet_MuScale: 8.38414611e-06 + syst_JES_Zjet_MuSmearID: 2.55267756e-06 + syst_JES_Zjet_MuSmearMS: 2.84789093e-05 + syst_JES_Zjet_OOC: 6.54426955e-05 + syst_JES_Zjet_Stat1: 8.29633943e-06 + syst_JES_Zjet_Stat10: 5.40900462e-06 + syst_JES_Zjet_Stat11: 8.05327305e-06 + syst_JES_Zjet_Stat12: 1.78901397e-05 + syst_JES_Zjet_Stat13: 2.81484227e-05 + syst_JES_Zjet_Stat2: 1.62293161e-08 + syst_JES_Zjet_Stat3: 4.51782810e-06 + syst_JES_Zjet_Stat4: 4.45771990e-06 + syst_JES_Zjet_Stat5: 4.32621509e-06 + syst_JES_Zjet_Stat6: 3.07606031e-06 + syst_JES_Zjet_Stat7: 3.74205238e-06 + syst_JES_Zjet_Stat8: 2.62632557e-06 + syst_JES_Zjet_Stat9: 3.39797719e-06 + syst_JES_Zjet_Veto: 1.35164694e-05 + syst_JES_Zjet_dPhi: 1.27162832e-05 syst_PRW: 0.0 - syst_Unfolding_bias: 8.884e-06 - syst_cleaning: 5.587595905217198e-05 - syst_lumi: 0.0001818 + syst_Unfolding_bias: 8.88400000e-06 + syst_cleaning: 5.58759591e-05 + syst_lumi: 1.81800000e-04 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 3.684823028314929e-05 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 1.0314576918129022e-05 - syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.9369952891011374e-06 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 3.68482303e-05 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 1.03145769e-05 + syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.93699529e-06 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 2.2502346544305105e-05 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 2.3360224742069586e-05 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 6.11553129335465e-05 -- stat: 9.7091e-05 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 2.25023465e-05 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 2.33602247e-05 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 6.11553129e-05 +- stat: 9.70910000e-05 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 2.814610807909328e-05 - syst_JER_NP1: 7.713182919521615e-06 - syst_JER_NP2: 2.5540393007939404e-05 - syst_JER_NP3: 4.8995924320294235e-06 - syst_JER_NP4: 2.0591010174345504e-17 - syst_JER_NP5: 1.5797581499394141e-12 - syst_JER_NP6: 2.9657344368638265e-19 - syst_JER_NP7: 3.241574116073856e-21 - syst_JER_NP8: 3.0385262875282156e-06 - syst_JES_EtaIntercalibration_Modelling: 0.00025662517413535253 + syst_JER_NP0: 2.81461081e-05 + syst_JER_NP1: 7.71318292e-06 + syst_JER_NP2: 2.55403930e-05 + syst_JER_NP3: 4.89959243e-06 + syst_JER_NP4: 2.05910102e-17 + syst_JER_NP5: 1.57975815e-12 + syst_JER_NP6: 2.96573444e-19 + syst_JER_NP7: 3.24157412e-21 + syst_JER_NP8: 3.03852629e-06 + syst_JES_EtaIntercalibration_Modelling: 2.56625174e-04 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 2.738418717070127e-18 - syst_JES_EtaIntercalibration_Stat101: 1.4547652454123035e-13 - syst_JES_EtaIntercalibration_Stat102: 1.1235531739530621e-17 - syst_JES_EtaIntercalibration_Stat103: 1.7616839816493762e-20 + syst_JES_EtaIntercalibration_Stat100: 2.73841872e-18 + syst_JES_EtaIntercalibration_Stat101: 1.45476525e-13 + syst_JES_EtaIntercalibration_Stat102: 1.12355317e-17 + syst_JES_EtaIntercalibration_Stat103: 1.76168398e-20 syst_JES_EtaIntercalibration_Stat104: 0.0 syst_JES_EtaIntercalibration_Stat105: 0.0 syst_JES_EtaIntercalibration_Stat106: 0.0 @@ -33203,170 +33203,170 @@ bins: syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 syst_JES_EtaIntercalibration_Stat110: 0.0 - syst_JES_EtaIntercalibration_Stat111: 8.818736686736938e-24 - syst_JES_EtaIntercalibration_Stat112: 1.3326355390728554e-19 - syst_JES_EtaIntercalibration_Stat113: 4.807330861446617e-09 - syst_JES_EtaIntercalibration_Stat114: 1.2479778118708774e-09 - syst_JES_EtaIntercalibration_Stat115: 1.5868269054754367e-08 - syst_JES_EtaIntercalibration_Stat116: 3.595903668632757e-17 + syst_JES_EtaIntercalibration_Stat111: 8.81873669e-24 + syst_JES_EtaIntercalibration_Stat112: 1.33263554e-19 + syst_JES_EtaIntercalibration_Stat113: 4.80733086e-09 + syst_JES_EtaIntercalibration_Stat114: 1.24797781e-09 + syst_JES_EtaIntercalibration_Stat115: 1.58682691e-08 + syst_JES_EtaIntercalibration_Stat116: 3.59590367e-17 syst_JES_EtaIntercalibration_Stat117: 0.0 syst_JES_EtaIntercalibration_Stat118: 0.0 - syst_JES_EtaIntercalibration_Stat119: 3.719566635768921e-17 + syst_JES_EtaIntercalibration_Stat119: 3.71956664e-17 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 2.2603257738703347e-10 - syst_JES_EtaIntercalibration_Stat121: 9.446490016402918e-09 - syst_JES_EtaIntercalibration_Stat122: 6.031866940137402e-09 - syst_JES_EtaIntercalibration_Stat123: 4.3497869792755374e-17 + syst_JES_EtaIntercalibration_Stat120: 2.26032577e-10 + syst_JES_EtaIntercalibration_Stat121: 9.44649002e-09 + syst_JES_EtaIntercalibration_Stat122: 6.03186694e-09 + syst_JES_EtaIntercalibration_Stat123: 4.34978698e-17 syst_JES_EtaIntercalibration_Stat124: 0.0 syst_JES_EtaIntercalibration_Stat125: 0.0 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 syst_JES_EtaIntercalibration_Stat128: 0.0 syst_JES_EtaIntercalibration_Stat129: 0.0 - syst_JES_EtaIntercalibration_Stat13: 3.727375968592152e-17 + syst_JES_EtaIntercalibration_Stat13: 3.72737597e-17 syst_JES_EtaIntercalibration_Stat130: 0.0 - syst_JES_EtaIntercalibration_Stat131: 3.4742855765610293e-19 - syst_JES_EtaIntercalibration_Stat132: 8.952104190098092e-09 - syst_JES_EtaIntercalibration_Stat133: 6.848235391748739e-12 - syst_JES_EtaIntercalibration_Stat134: 2.966105965137395e-08 - syst_JES_EtaIntercalibration_Stat135: 5.353373551210489e-15 + syst_JES_EtaIntercalibration_Stat131: 3.47428558e-19 + syst_JES_EtaIntercalibration_Stat132: 8.95210419e-09 + syst_JES_EtaIntercalibration_Stat133: 6.84823539e-12 + syst_JES_EtaIntercalibration_Stat134: 2.96610597e-08 + syst_JES_EtaIntercalibration_Stat135: 5.35337355e-15 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 - syst_JES_EtaIntercalibration_Stat138: 3.511483783856619e-17 - syst_JES_EtaIntercalibration_Stat139: 1.5423045443426535e-08 - syst_JES_EtaIntercalibration_Stat14: 9.824755200512633e-23 - syst_JES_EtaIntercalibration_Stat140: 1.502086362763473e-14 - syst_JES_EtaIntercalibration_Stat141: 2.7316726151389367e-09 - syst_JES_EtaIntercalibration_Stat142: 6.951498452014267e-14 + syst_JES_EtaIntercalibration_Stat138: 3.51148378e-17 + syst_JES_EtaIntercalibration_Stat139: 1.54230454e-08 + syst_JES_EtaIntercalibration_Stat14: 9.82475520e-23 + syst_JES_EtaIntercalibration_Stat140: 1.50208636e-14 + syst_JES_EtaIntercalibration_Stat141: 2.73167262e-09 + syst_JES_EtaIntercalibration_Stat142: 6.95149845e-14 syst_JES_EtaIntercalibration_Stat143: 0.0 syst_JES_EtaIntercalibration_Stat144: 0.0 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 syst_JES_EtaIntercalibration_Stat147: 0.0 syst_JES_EtaIntercalibration_Stat148: 0.0 - syst_JES_EtaIntercalibration_Stat149: 2.419959339957337e-15 - syst_JES_EtaIntercalibration_Stat15: 8.283339174511689e-23 - syst_JES_EtaIntercalibration_Stat150: 1.1605606050329864e-09 - syst_JES_EtaIntercalibration_Stat151: 9.868323513499654e-09 - syst_JES_EtaIntercalibration_Stat152: 2.966134604460322e-08 - syst_JES_EtaIntercalibration_Stat153: 6.264709604347196e-15 + syst_JES_EtaIntercalibration_Stat149: 2.41995934e-15 + syst_JES_EtaIntercalibration_Stat15: 8.28333917e-23 + syst_JES_EtaIntercalibration_Stat150: 1.16056061e-09 + syst_JES_EtaIntercalibration_Stat151: 9.86832351e-09 + syst_JES_EtaIntercalibration_Stat152: 2.96613460e-08 + syst_JES_EtaIntercalibration_Stat153: 6.26470960e-15 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 1.307697712794806e-18 - syst_JES_EtaIntercalibration_Stat157: 2.6808448295266922e-08 - syst_JES_EtaIntercalibration_Stat158: 5.792625743132383e-08 - syst_JES_EtaIntercalibration_Stat159: 4.433118202800372e-09 + syst_JES_EtaIntercalibration_Stat156: 1.30769771e-18 + syst_JES_EtaIntercalibration_Stat157: 2.68084483e-08 + syst_JES_EtaIntercalibration_Stat158: 5.79262574e-08 + syst_JES_EtaIntercalibration_Stat159: 4.43311820e-09 syst_JES_EtaIntercalibration_Stat16: 0.0 - syst_JES_EtaIntercalibration_Stat160: 1.4461632964503007e-17 + syst_JES_EtaIntercalibration_Stat160: 1.44616330e-17 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 - syst_JES_EtaIntercalibration_Stat167: 1.1186520174866715e-12 - syst_JES_EtaIntercalibration_Stat168: 2.154286584347589e-08 - syst_JES_EtaIntercalibration_Stat169: 1.0093015852558639e-07 + syst_JES_EtaIntercalibration_Stat167: 1.11865202e-12 + syst_JES_EtaIntercalibration_Stat168: 2.15428658e-08 + syst_JES_EtaIntercalibration_Stat169: 1.00930159e-07 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 9.67864663834774e-08 - syst_JES_EtaIntercalibration_Stat171: 3.9930653157861577e-10 + syst_JES_EtaIntercalibration_Stat170: 9.67864664e-08 + syst_JES_EtaIntercalibration_Stat171: 3.99306532e-10 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 - syst_JES_EtaIntercalibration_Stat174: 8.553857050692104e-18 - syst_JES_EtaIntercalibration_Stat175: 7.59306464808512e-08 - syst_JES_EtaIntercalibration_Stat176: 1.0275012704006744e-07 - syst_JES_EtaIntercalibration_Stat177: 4.473801976850898e-08 - syst_JES_EtaIntercalibration_Stat178: 5.869736514529421e-09 + syst_JES_EtaIntercalibration_Stat174: 8.55385705e-18 + syst_JES_EtaIntercalibration_Stat175: 7.59306465e-08 + syst_JES_EtaIntercalibration_Stat176: 1.02750127e-07 + syst_JES_EtaIntercalibration_Stat177: 4.47380198e-08 + syst_JES_EtaIntercalibration_Stat178: 5.86973651e-09 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 syst_JES_EtaIntercalibration_Stat180: 0.0 syst_JES_EtaIntercalibration_Stat181: 0.0 syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 - syst_JES_EtaIntercalibration_Stat184: 8.88981725065257e-09 - syst_JES_EtaIntercalibration_Stat185: 1.3582515479468447e-07 - syst_JES_EtaIntercalibration_Stat186: 4.901865435729545e-07 - syst_JES_EtaIntercalibration_Stat187: 4.08801452419142e-07 - syst_JES_EtaIntercalibration_Stat188: 8.649399786545884e-09 + syst_JES_EtaIntercalibration_Stat184: 8.88981725e-09 + syst_JES_EtaIntercalibration_Stat185: 1.35825155e-07 + syst_JES_EtaIntercalibration_Stat186: 4.90186544e-07 + syst_JES_EtaIntercalibration_Stat187: 4.08801452e-07 + syst_JES_EtaIntercalibration_Stat188: 8.64939979e-09 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 - syst_JES_EtaIntercalibration_Stat191: 4.022062250885732e-09 - syst_JES_EtaIntercalibration_Stat192: 5.146379771256684e-07 - syst_JES_EtaIntercalibration_Stat193: 8.46213169065573e-07 - syst_JES_EtaIntercalibration_Stat194: 1.6050524313865887e-07 - syst_JES_EtaIntercalibration_Stat195: 1.7786499676721106e-08 - syst_JES_EtaIntercalibration_Stat196: 4.372792836857813e-17 + syst_JES_EtaIntercalibration_Stat191: 4.02206225e-09 + syst_JES_EtaIntercalibration_Stat192: 5.14637977e-07 + syst_JES_EtaIntercalibration_Stat193: 8.46213169e-07 + syst_JES_EtaIntercalibration_Stat194: 1.60505243e-07 + syst_JES_EtaIntercalibration_Stat195: 1.77864997e-08 + syst_JES_EtaIntercalibration_Stat196: 4.37279284e-17 syst_JES_EtaIntercalibration_Stat197: 0.0 syst_JES_EtaIntercalibration_Stat198: 0.0 - syst_JES_EtaIntercalibration_Stat199: 5.507612254870526e-09 + syst_JES_EtaIntercalibration_Stat199: 5.50761225e-09 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 3.1011779616784326e-07 - syst_JES_EtaIntercalibration_Stat201: 1.1715679013612486e-06 - syst_JES_EtaIntercalibration_Stat202: 9.07258055902509e-07 - syst_JES_EtaIntercalibration_Stat203: 2.6561574727414034e-08 + syst_JES_EtaIntercalibration_Stat200: 3.10117796e-07 + syst_JES_EtaIntercalibration_Stat201: 1.17156790e-06 + syst_JES_EtaIntercalibration_Stat202: 9.07258056e-07 + syst_JES_EtaIntercalibration_Stat203: 2.65615747e-08 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 - syst_JES_EtaIntercalibration_Stat206: 1.4104442943625955e-08 - syst_JES_EtaIntercalibration_Stat207: 8.727598867959044e-07 - syst_JES_EtaIntercalibration_Stat208: 1.7476174495581118e-06 - syst_JES_EtaIntercalibration_Stat209: 4.443967492005314e-07 + syst_JES_EtaIntercalibration_Stat206: 1.41044429e-08 + syst_JES_EtaIntercalibration_Stat207: 8.72759887e-07 + syst_JES_EtaIntercalibration_Stat208: 1.74761745e-06 + syst_JES_EtaIntercalibration_Stat209: 4.44396749e-07 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 1.2892883725140781e-08 - syst_JES_EtaIntercalibration_Stat211: 4.6515940261457685e-17 - syst_JES_EtaIntercalibration_Stat212: 5.138321978039134e-09 - syst_JES_EtaIntercalibration_Stat213: 2.9923933564957664e-07 - syst_JES_EtaIntercalibration_Stat214: 1.0795990644679162e-06 - syst_JES_EtaIntercalibration_Stat215: 1.0543118087169468e-06 - syst_JES_EtaIntercalibration_Stat216: 3.395770255774086e-08 + syst_JES_EtaIntercalibration_Stat210: 1.28928837e-08 + syst_JES_EtaIntercalibration_Stat211: 4.65159403e-17 + syst_JES_EtaIntercalibration_Stat212: 5.13832198e-09 + syst_JES_EtaIntercalibration_Stat213: 2.99239336e-07 + syst_JES_EtaIntercalibration_Stat214: 1.07959906e-06 + syst_JES_EtaIntercalibration_Stat215: 1.05431181e-06 + syst_JES_EtaIntercalibration_Stat216: 3.39577026e-08 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 - syst_JES_EtaIntercalibration_Stat219: 1.6279424951453292e-08 + syst_JES_EtaIntercalibration_Stat219: 1.62794250e-08 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 1.0237060808650109e-06 - syst_JES_EtaIntercalibration_Stat221: 1.4668353690854336e-06 - syst_JES_EtaIntercalibration_Stat222: 4.2986396394673517e-07 - syst_JES_EtaIntercalibration_Stat223: 2.520138841188619e-10 - syst_JES_EtaIntercalibration_Stat224: 3.8183060176004716e-08 - syst_JES_EtaIntercalibration_Stat225: 1.062610187227659e-06 - syst_JES_EtaIntercalibration_Stat226: 3.518979823755743e-06 - syst_JES_EtaIntercalibration_Stat227: 2.7783239551931306e-06 - syst_JES_EtaIntercalibration_Stat228: 1.860210439708368e-08 + syst_JES_EtaIntercalibration_Stat220: 1.02370608e-06 + syst_JES_EtaIntercalibration_Stat221: 1.46683537e-06 + syst_JES_EtaIntercalibration_Stat222: 4.29863964e-07 + syst_JES_EtaIntercalibration_Stat223: 2.52013884e-10 + syst_JES_EtaIntercalibration_Stat224: 3.81830602e-08 + syst_JES_EtaIntercalibration_Stat225: 1.06261019e-06 + syst_JES_EtaIntercalibration_Stat226: 3.51897982e-06 + syst_JES_EtaIntercalibration_Stat227: 2.77832396e-06 + syst_JES_EtaIntercalibration_Stat228: 1.86021044e-08 syst_JES_EtaIntercalibration_Stat229: 0.0 syst_JES_EtaIntercalibration_Stat23: 0.0 syst_JES_EtaIntercalibration_Stat230: 0.0 - syst_JES_EtaIntercalibration_Stat231: 1.9357045229063243e-08 - syst_JES_EtaIntercalibration_Stat232: 3.1901399655814477e-06 - syst_JES_EtaIntercalibration_Stat233: 3.7020687122202363e-06 - syst_JES_EtaIntercalibration_Stat234: 1.4609252787189358e-06 - syst_JES_EtaIntercalibration_Stat235: 6.022469636287095e-08 - syst_JES_EtaIntercalibration_Stat236: 2.3507557827218036e-07 - syst_JES_EtaIntercalibration_Stat237: 7.865546818244744e-07 - syst_JES_EtaIntercalibration_Stat238: 5.805697890865491e-07 - syst_JES_EtaIntercalibration_Stat239: 3.360514140723113e-09 + syst_JES_EtaIntercalibration_Stat231: 1.93570452e-08 + syst_JES_EtaIntercalibration_Stat232: 3.19013997e-06 + syst_JES_EtaIntercalibration_Stat233: 3.70206871e-06 + syst_JES_EtaIntercalibration_Stat234: 1.46092528e-06 + syst_JES_EtaIntercalibration_Stat235: 6.02246964e-08 + syst_JES_EtaIntercalibration_Stat236: 2.35075578e-07 + syst_JES_EtaIntercalibration_Stat237: 7.86554682e-07 + syst_JES_EtaIntercalibration_Stat238: 5.80569789e-07 + syst_JES_EtaIntercalibration_Stat239: 3.36051414e-09 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 - syst_JES_EtaIntercalibration_Stat242: 5.665395424857827e-09 - syst_JES_EtaIntercalibration_Stat243: 5.164627576118147e-07 - syst_JES_EtaIntercalibration_Stat244: 8.007498532625528e-07 - syst_JES_EtaIntercalibration_Stat245: 3.058474251975975e-07 + syst_JES_EtaIntercalibration_Stat242: 5.66539542e-09 + syst_JES_EtaIntercalibration_Stat243: 5.16462758e-07 + syst_JES_EtaIntercalibration_Stat244: 8.00749853e-07 + syst_JES_EtaIntercalibration_Stat245: 3.05847425e-07 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 - syst_JES_EtaIntercalibration_Stat27: 4.5176375117421714e-23 - syst_JES_EtaIntercalibration_Stat28: 1.3616891767918258e-19 - syst_JES_EtaIntercalibration_Stat29: 5.450763935586554e-14 + syst_JES_EtaIntercalibration_Stat27: 4.51763751e-23 + syst_JES_EtaIntercalibration_Stat28: 1.36168918e-19 + syst_JES_EtaIntercalibration_Stat29: 5.45076394e-14 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 5.462888327179593e-14 - syst_JES_EtaIntercalibration_Stat31: 9.104525069985803e-24 + syst_JES_EtaIntercalibration_Stat30: 5.46288833e-14 + syst_JES_EtaIntercalibration_Stat31: 9.10452507e-24 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 - syst_JES_EtaIntercalibration_Stat34: 1.996188555723131e-24 - syst_JES_EtaIntercalibration_Stat35: 3.723100689637685e-17 - syst_JES_EtaIntercalibration_Stat36: 3.7405379379667666e-17 - syst_JES_EtaIntercalibration_Stat37: 1.0297294826797958e-21 - syst_JES_EtaIntercalibration_Stat38: 1.0943112114476392e-23 + syst_JES_EtaIntercalibration_Stat34: 1.99618856e-24 + syst_JES_EtaIntercalibration_Stat35: 3.72310069e-17 + syst_JES_EtaIntercalibration_Stat36: 3.74053794e-17 + syst_JES_EtaIntercalibration_Stat37: 1.02972948e-21 + syst_JES_EtaIntercalibration_Stat38: 1.09431121e-23 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 syst_JES_EtaIntercalibration_Stat40: 0.0 @@ -33377,21 +33377,21 @@ bins: syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 syst_JES_EtaIntercalibration_Stat47: 0.0 - syst_JES_EtaIntercalibration_Stat48: 2.3503929458709666e-23 - syst_JES_EtaIntercalibration_Stat49: 1.015249121354951e-22 - syst_JES_EtaIntercalibration_Stat5: 1.9000597359030582e-23 - syst_JES_EtaIntercalibration_Stat50: 1.4163345326228546e-19 - syst_JES_EtaIntercalibration_Stat51: 5.3970748659200837e-14 - syst_JES_EtaIntercalibration_Stat52: 5.4273814116311545e-14 - syst_JES_EtaIntercalibration_Stat53: 2.0006109066982515e-23 - syst_JES_EtaIntercalibration_Stat54: 8.895812947673754e-24 + syst_JES_EtaIntercalibration_Stat48: 2.35039295e-23 + syst_JES_EtaIntercalibration_Stat49: 1.01524912e-22 + syst_JES_EtaIntercalibration_Stat5: 1.90005974e-23 + syst_JES_EtaIntercalibration_Stat50: 1.41633453e-19 + syst_JES_EtaIntercalibration_Stat51: 5.39707487e-14 + syst_JES_EtaIntercalibration_Stat52: 5.42738141e-14 + syst_JES_EtaIntercalibration_Stat53: 2.00061091e-23 + syst_JES_EtaIntercalibration_Stat54: 8.89581295e-24 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 6.607045406231139e-24 - syst_JES_EtaIntercalibration_Stat57: 3.69331610281746e-17 - syst_JES_EtaIntercalibration_Stat58: 3.72233708533698e-17 - syst_JES_EtaIntercalibration_Stat59: 8.450721078700917e-21 - syst_JES_EtaIntercalibration_Stat6: 5.021220350422793e-23 - syst_JES_EtaIntercalibration_Stat60: 2.1831552183708794e-22 + syst_JES_EtaIntercalibration_Stat56: 6.60704541e-24 + syst_JES_EtaIntercalibration_Stat57: 3.69331610e-17 + syst_JES_EtaIntercalibration_Stat58: 3.72233709e-17 + syst_JES_EtaIntercalibration_Stat59: 8.45072108e-21 + syst_JES_EtaIntercalibration_Stat6: 5.02122035e-23 + syst_JES_EtaIntercalibration_Stat60: 2.18315522e-22 syst_JES_EtaIntercalibration_Stat61: 0.0 syst_JES_EtaIntercalibration_Stat62: 0.0 syst_JES_EtaIntercalibration_Stat63: 0.0 @@ -33401,21 +33401,21 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 1.4858894036905976e-22 - syst_JES_EtaIntercalibration_Stat70: 1.9000597359030582e-23 - syst_JES_EtaIntercalibration_Stat71: 3.115117527477896e-22 - syst_JES_EtaIntercalibration_Stat72: 1.5229643561160583e-19 - syst_JES_EtaIntercalibration_Stat73: 1.1232474390443452e-12 - syst_JES_EtaIntercalibration_Stat74: 5.588025895385597e-14 - syst_JES_EtaIntercalibration_Stat75: 8.218140589573775e-23 - syst_JES_EtaIntercalibration_Stat76: 8.895812947673754e-24 + syst_JES_EtaIntercalibration_Stat7: 1.48588940e-22 + syst_JES_EtaIntercalibration_Stat70: 1.90005974e-23 + syst_JES_EtaIntercalibration_Stat71: 3.11511753e-22 + syst_JES_EtaIntercalibration_Stat72: 1.52296436e-19 + syst_JES_EtaIntercalibration_Stat73: 1.12324744e-12 + syst_JES_EtaIntercalibration_Stat74: 5.58802590e-14 + syst_JES_EtaIntercalibration_Stat75: 8.21814059e-23 + syst_JES_EtaIntercalibration_Stat76: 8.89581295e-24 syst_JES_EtaIntercalibration_Stat77: 0.0 - syst_JES_EtaIntercalibration_Stat78: 2.0400002450980241e-22 - syst_JES_EtaIntercalibration_Stat79: 3.50110625888886e-17 - syst_JES_EtaIntercalibration_Stat8: 1.9983487258233984e-23 - syst_JES_EtaIntercalibration_Stat80: 6.82078731132771e-14 - syst_JES_EtaIntercalibration_Stat81: 4.3818717144703124e-17 - syst_JES_EtaIntercalibration_Stat82: 2.535095643166151e-22 + syst_JES_EtaIntercalibration_Stat78: 2.04000025e-22 + syst_JES_EtaIntercalibration_Stat79: 3.50110626e-17 + syst_JES_EtaIntercalibration_Stat8: 1.99834873e-23 + syst_JES_EtaIntercalibration_Stat80: 6.82078731e-14 + syst_JES_EtaIntercalibration_Stat81: 4.38187171e-17 + syst_JES_EtaIntercalibration_Stat82: 2.53509564e-22 syst_JES_EtaIntercalibration_Stat83: 0.0 syst_JES_EtaIntercalibration_Stat84: 0.0 syst_JES_EtaIntercalibration_Stat85: 0.0 @@ -33425,118 +33425,118 @@ bins: syst_JES_EtaIntercalibration_Stat89: 0.0 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 1.621199555884469e-23 - syst_JES_EtaIntercalibration_Stat92: 3.860812060548272e-21 - syst_JES_EtaIntercalibration_Stat93: 2.4142647302025517e-19 - syst_JES_EtaIntercalibration_Stat94: 1.1289563110676016e-12 - syst_JES_EtaIntercalibration_Stat95: 5.665388043858956e-14 - syst_JES_EtaIntercalibration_Stat96: 8.27182840655559e-22 - syst_JES_EtaIntercalibration_Stat97: 8.895812947673754e-24 + syst_JES_EtaIntercalibration_Stat91: 1.62119956e-23 + syst_JES_EtaIntercalibration_Stat92: 3.86081206e-21 + syst_JES_EtaIntercalibration_Stat93: 2.41426473e-19 + syst_JES_EtaIntercalibration_Stat94: 1.12895631e-12 + syst_JES_EtaIntercalibration_Stat95: 5.66538804e-14 + syst_JES_EtaIntercalibration_Stat96: 8.27182841e-22 + syst_JES_EtaIntercalibration_Stat97: 8.89581295e-24 syst_JES_EtaIntercalibration_Stat98: 0.0 - syst_JES_EtaIntercalibration_Stat99: 1.384738410144052e-18 - syst_JES_EtaIntercalibration_TotalStat_MJB: 4.7912704995648067e-05 - syst_JES_Flavour_Comp: 0.00010763687147070003 - syst_JES_Gjet_Generator: 0.0001227271326968898 - syst_JES_Gjet_OOC: 0.00010226465567340459 - syst_JES_Gjet_Purity: 1.611512565883369e-05 - syst_JES_Gjet_Stat1: 5.904829887473474e-07 - syst_JES_Gjet_Stat10: 2.9761881660943417e-06 - syst_JES_Gjet_Stat11: 3.0582784372911507e-06 - syst_JES_Gjet_Stat12: 5.121658593658894e-06 - syst_JES_Gjet_Stat13: 2.154056173826486e-05 - syst_JES_Gjet_Stat14: 5.691515856957617e-05 - syst_JES_Gjet_Stat15: 9.616166387911557e-05 - syst_JES_Gjet_Stat2: 5.022047490814878e-07 - syst_JES_Gjet_Stat3: 5.853953279622241e-07 - syst_JES_Gjet_Stat4: 5.91593363299488e-07 - syst_JES_Gjet_Stat5: 7.227630784012144e-07 - syst_JES_Gjet_Stat6: 2.1093456331289096e-06 - syst_JES_Gjet_Stat7: 1.4566278419692518e-06 - syst_JES_Gjet_Stat8: 7.528772858175494e-07 - syst_JES_Gjet_Stat9: 1.4954674879448234e-06 - syst_JES_Gjet_Veto: 0.0001065217033050073 - syst_JES_Gjet_dPhi: 1.105850183117044e-05 - syst_JES_LArESZee: 0.00018209689728273788 - syst_JES_LArEsmear: 1.684085508517902e-05 - syst_JES_LAr_JVT: 2.159104212399207e-05 - syst_JES_MJB_Alpha: 2.9863646796732643e-06 - syst_JES_MJB_Asym: 3.656503350196742e-05 - syst_JES_MJB_Beta: 2.3105925646898457e-06 - syst_JES_MJB_Stat1: 3.9031764948564655e-09 - syst_JES_MJB_Stat10: 1.4123124680820459e-06 - syst_JES_MJB_Stat11: 1.608423329692777e-06 - syst_JES_MJB_Stat12: 3.2535882883364325e-06 - syst_JES_MJB_Stat13: 4.827044437334299e-06 - syst_JES_MJB_Stat14: 6.7667543734053185e-06 - syst_JES_MJB_Stat15: 1.070301130523555e-05 - syst_JES_MJB_Stat16: 7.119215318418175e-06 + syst_JES_EtaIntercalibration_Stat99: 1.38473841e-18 + syst_JES_EtaIntercalibration_TotalStat_MJB: 4.79127050e-05 + syst_JES_Flavour_Comp: 1.07636871e-04 + syst_JES_Gjet_Generator: 1.22727133e-04 + syst_JES_Gjet_OOC: 1.02264656e-04 + syst_JES_Gjet_Purity: 1.61151257e-05 + syst_JES_Gjet_Stat1: 5.90482989e-07 + syst_JES_Gjet_Stat10: 2.97618817e-06 + syst_JES_Gjet_Stat11: 3.05827844e-06 + syst_JES_Gjet_Stat12: 5.12165859e-06 + syst_JES_Gjet_Stat13: 2.15405617e-05 + syst_JES_Gjet_Stat14: 5.69151586e-05 + syst_JES_Gjet_Stat15: 9.61616639e-05 + syst_JES_Gjet_Stat2: 5.02204749e-07 + syst_JES_Gjet_Stat3: 5.85395328e-07 + syst_JES_Gjet_Stat4: 5.91593363e-07 + syst_JES_Gjet_Stat5: 7.22763078e-07 + syst_JES_Gjet_Stat6: 2.10934563e-06 + syst_JES_Gjet_Stat7: 1.45662784e-06 + syst_JES_Gjet_Stat8: 7.52877286e-07 + syst_JES_Gjet_Stat9: 1.49546749e-06 + syst_JES_Gjet_Veto: 1.06521703e-04 + syst_JES_Gjet_dPhi: 1.10585018e-05 + syst_JES_LArESZee: 1.82096897e-04 + syst_JES_LArEsmear: 1.68408551e-05 + syst_JES_LAr_JVT: 2.15910421e-05 + syst_JES_MJB_Alpha: 2.98636468e-06 + syst_JES_MJB_Asym: 3.65650335e-05 + syst_JES_MJB_Beta: 2.31059256e-06 + syst_JES_MJB_Stat1: 3.90317649e-09 + syst_JES_MJB_Stat10: 1.41231247e-06 + syst_JES_MJB_Stat11: 1.60842333e-06 + syst_JES_MJB_Stat12: 3.25358829e-06 + syst_JES_MJB_Stat13: 4.82704444e-06 + syst_JES_MJB_Stat14: 6.76675437e-06 + syst_JES_MJB_Stat15: 1.07030113e-05 + syst_JES_MJB_Stat16: 7.11921532e-06 syst_JES_MJB_Stat2: 0.0 - syst_JES_MJB_Stat3: 7.775176075176691e-08 - syst_JES_MJB_Stat4: 6.108077172891645e-08 - syst_JES_MJB_Stat5: 8.053170229791495e-08 - syst_JES_MJB_Stat6: 2.0339933628210295e-07 - syst_JES_MJB_Stat7: 2.6011414321408976e-07 - syst_JES_MJB_Stat8: 3.798990227678929e-07 - syst_JES_MJB_Stat9: 6.302528917030052e-07 - syst_JES_MJB_Threshold: 2.079058200243562e-05 - syst_JES_Pileup_MuOffset: 2.9375926793890265e-05 - syst_JES_Pileup_NPVOffset: 2.8780500343114256e-05 - syst_JES_Pileup_Pt_term: 1.4886412428788879e-05 - syst_JES_PunchThrough_MC15: 4.804700198763707e-05 - syst_JES_SingleParticle_HighPt: 6.9062067736203795e-09 - syst_JES_Zjet_MC: 4.71451914303039e-05 - syst_JES_Zjet_MuScale: 4.010198932721417e-06 - syst_JES_Zjet_MuSmearID: 1.063624260488637e-06 - syst_JES_Zjet_MuSmearMS: 1.2453510619500029e-05 - syst_JES_Zjet_OOC: 3.072509845386993e-05 - syst_JES_Zjet_Stat1: 4.420418305997748e-06 - syst_JES_Zjet_Stat10: 2.418612567154979e-06 - syst_JES_Zjet_Stat11: 3.5090113992405325e-06 - syst_JES_Zjet_Stat12: 7.501480037299307e-06 - syst_JES_Zjet_Stat13: 1.2194295223587132e-05 - syst_JES_Zjet_Stat2: 6.947255789158767e-09 - syst_JES_Zjet_Stat3: 2.0511409020347674e-06 - syst_JES_Zjet_Stat4: 2.147476891610245e-06 - syst_JES_Zjet_Stat5: 2.0759741689144403e-06 - syst_JES_Zjet_Stat6: 1.676625405390244e-06 - syst_JES_Zjet_Stat7: 1.9945452489226712e-06 - syst_JES_Zjet_Stat8: 1.2574072609938277e-06 - syst_JES_Zjet_Stat9: 1.6134673067651542e-06 - syst_JES_Zjet_Veto: 6.102901502564169e-06 - syst_JES_Zjet_dPhi: 5.7511364746456854e-06 + syst_JES_MJB_Stat3: 7.77517608e-08 + syst_JES_MJB_Stat4: 6.10807717e-08 + syst_JES_MJB_Stat5: 8.05317023e-08 + syst_JES_MJB_Stat6: 2.03399336e-07 + syst_JES_MJB_Stat7: 2.60114143e-07 + syst_JES_MJB_Stat8: 3.79899023e-07 + syst_JES_MJB_Stat9: 6.30252892e-07 + syst_JES_MJB_Threshold: 2.07905820e-05 + syst_JES_Pileup_MuOffset: 2.93759268e-05 + syst_JES_Pileup_NPVOffset: 2.87805003e-05 + syst_JES_Pileup_Pt_term: 1.48864124e-05 + syst_JES_PunchThrough_MC15: 4.80470020e-05 + syst_JES_SingleParticle_HighPt: 6.90620677e-09 + syst_JES_Zjet_MC: 4.71451914e-05 + syst_JES_Zjet_MuScale: 4.01019893e-06 + syst_JES_Zjet_MuSmearID: 1.06362426e-06 + syst_JES_Zjet_MuSmearMS: 1.24535106e-05 + syst_JES_Zjet_OOC: 3.07250985e-05 + syst_JES_Zjet_Stat1: 4.42041831e-06 + syst_JES_Zjet_Stat10: 2.41861257e-06 + syst_JES_Zjet_Stat11: 3.50901140e-06 + syst_JES_Zjet_Stat12: 7.50148004e-06 + syst_JES_Zjet_Stat13: 1.21942952e-05 + syst_JES_Zjet_Stat2: 6.94725579e-09 + syst_JES_Zjet_Stat3: 2.05114090e-06 + syst_JES_Zjet_Stat4: 2.14747689e-06 + syst_JES_Zjet_Stat5: 2.07597417e-06 + syst_JES_Zjet_Stat6: 1.67662541e-06 + syst_JES_Zjet_Stat7: 1.99454525e-06 + syst_JES_Zjet_Stat8: 1.25740726e-06 + syst_JES_Zjet_Stat9: 1.61346731e-06 + syst_JES_Zjet_Veto: 6.10290150e-06 + syst_JES_Zjet_dPhi: 5.75113647e-06 syst_PRW: 0.0 - syst_Unfolding_bias: 3.8036e-06 - syst_cleaning: 2.3902301144450504e-05 - syst_lumi: 7.783e-05 + syst_Unfolding_bias: 3.80360000e-06 + syst_cleaning: 2.39023011e-05 + syst_lumi: 7.78300000e-05 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.6640865362113835e-05 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 8.774503447489209e-06 - syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 9.134416606987005e-07 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.66408654e-05 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 8.77450345e-06 + syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 9.13441661e-07 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 1.9145011752412168e-05 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.1669173149799433e-05 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 2.981655035378841e-05 -- stat: 4.314e-05 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 1.91450118e-05 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.16691731e-05 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 2.98165504e-05 +- stat: 4.31400000e-05 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 9.58480391035727e-06 - syst_JER_NP1: 3.765519187310032e-06 - syst_JER_NP2: 9.511022868230314e-06 - syst_JER_NP3: 2.2877964835185845e-06 - syst_JER_NP4: 1.1884829100580286e-18 - syst_JER_NP5: 4.066216564778e-14 - syst_JER_NP6: 2.6060780878553888e-20 - syst_JER_NP7: 4.563610933241351e-22 - syst_JER_NP8: 1.530198538589029e-06 - syst_JES_EtaIntercalibration_Modelling: 8.169421705359564e-05 + syst_JER_NP0: 9.58480391e-06 + syst_JER_NP1: 3.76551919e-06 + syst_JER_NP2: 9.51102287e-06 + syst_JER_NP3: 2.28779648e-06 + syst_JER_NP4: 1.18848291e-18 + syst_JER_NP5: 4.06621656e-14 + syst_JER_NP6: 2.60607809e-20 + syst_JER_NP7: 4.56361093e-22 + syst_JER_NP8: 1.53019854e-06 + syst_JES_EtaIntercalibration_Modelling: 8.16942171e-05 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 7.691532552099093e-20 - syst_JES_EtaIntercalibration_Stat101: 3.4429475551510733e-15 - syst_JES_EtaIntercalibration_Stat102: 3.697143852692237e-19 - syst_JES_EtaIntercalibration_Stat103: 1.3263009913517933e-21 + syst_JES_EtaIntercalibration_Stat100: 7.69153255e-20 + syst_JES_EtaIntercalibration_Stat101: 3.44294756e-15 + syst_JES_EtaIntercalibration_Stat102: 3.69714385e-19 + syst_JES_EtaIntercalibration_Stat103: 1.32630099e-21 syst_JES_EtaIntercalibration_Stat104: 0.0 syst_JES_EtaIntercalibration_Stat105: 0.0 syst_JES_EtaIntercalibration_Stat106: 0.0 @@ -33545,170 +33545,170 @@ bins: syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 syst_JES_EtaIntercalibration_Stat110: 0.0 - syst_JES_EtaIntercalibration_Stat111: 1.1701735255935335e-24 - syst_JES_EtaIntercalibration_Stat112: 7.402092592638922e-21 - syst_JES_EtaIntercalibration_Stat113: 1.5666452324986082e-10 - syst_JES_EtaIntercalibration_Stat114: 1.0478050084179542e-09 - syst_JES_EtaIntercalibration_Stat115: 4.2528193883587394e-09 - syst_JES_EtaIntercalibration_Stat116: 1.2488657426415499e-18 + syst_JES_EtaIntercalibration_Stat111: 1.17017353e-24 + syst_JES_EtaIntercalibration_Stat112: 7.40209259e-21 + syst_JES_EtaIntercalibration_Stat113: 1.56664523e-10 + syst_JES_EtaIntercalibration_Stat114: 1.04780501e-09 + syst_JES_EtaIntercalibration_Stat115: 4.25281939e-09 + syst_JES_EtaIntercalibration_Stat116: 1.24886574e-18 syst_JES_EtaIntercalibration_Stat117: 0.0 syst_JES_EtaIntercalibration_Stat118: 0.0 - syst_JES_EtaIntercalibration_Stat119: 1.3189404672193624e-18 + syst_JES_EtaIntercalibration_Stat119: 1.31894047e-18 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 8.134574880213082e-12 - syst_JES_EtaIntercalibration_Stat121: 5.99769419627166e-09 - syst_JES_EtaIntercalibration_Stat122: 2.9696011094499964e-09 - syst_JES_EtaIntercalibration_Stat123: 1.3549373693274534e-18 + syst_JES_EtaIntercalibration_Stat120: 8.13457488e-12 + syst_JES_EtaIntercalibration_Stat121: 5.99769420e-09 + syst_JES_EtaIntercalibration_Stat122: 2.96960111e-09 + syst_JES_EtaIntercalibration_Stat123: 1.35493737e-18 syst_JES_EtaIntercalibration_Stat124: 0.0 syst_JES_EtaIntercalibration_Stat125: 0.0 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 syst_JES_EtaIntercalibration_Stat128: 0.0 syst_JES_EtaIntercalibration_Stat129: 0.0 - syst_JES_EtaIntercalibration_Stat13: 1.3215580345872598e-18 + syst_JES_EtaIntercalibration_Stat13: 1.32155803e-18 syst_JES_EtaIntercalibration_Stat130: 0.0 - syst_JES_EtaIntercalibration_Stat131: 8.73764150100014e-21 - syst_JES_EtaIntercalibration_Stat132: 4.55096336037277e-10 - syst_JES_EtaIntercalibration_Stat133: 1.6386324086871955e-13 - syst_JES_EtaIntercalibration_Stat134: 7.637470683447598e-09 - syst_JES_EtaIntercalibration_Stat135: 1.3723846735397294e-16 + syst_JES_EtaIntercalibration_Stat131: 8.73764150e-21 + syst_JES_EtaIntercalibration_Stat132: 4.55096336e-10 + syst_JES_EtaIntercalibration_Stat133: 1.63863241e-13 + syst_JES_EtaIntercalibration_Stat134: 7.63747068e-09 + syst_JES_EtaIntercalibration_Stat135: 1.37238467e-16 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 - syst_JES_EtaIntercalibration_Stat138: 1.2595851116456878e-18 - syst_JES_EtaIntercalibration_Stat139: 1.5548792975662132e-08 - syst_JES_EtaIntercalibration_Stat14: 1.188287081264456e-23 - syst_JES_EtaIntercalibration_Stat140: 4.1563990505604724e-16 - syst_JES_EtaIntercalibration_Stat141: 4.270407496019869e-09 - syst_JES_EtaIntercalibration_Stat142: 1.6454104426794585e-15 + syst_JES_EtaIntercalibration_Stat138: 1.25958511e-18 + syst_JES_EtaIntercalibration_Stat139: 1.55487930e-08 + syst_JES_EtaIntercalibration_Stat14: 1.18828708e-23 + syst_JES_EtaIntercalibration_Stat140: 4.15639905e-16 + syst_JES_EtaIntercalibration_Stat141: 4.27040750e-09 + syst_JES_EtaIntercalibration_Stat142: 1.64541044e-15 syst_JES_EtaIntercalibration_Stat143: 0.0 syst_JES_EtaIntercalibration_Stat144: 0.0 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 syst_JES_EtaIntercalibration_Stat147: 0.0 syst_JES_EtaIntercalibration_Stat148: 0.0 - syst_JES_EtaIntercalibration_Stat149: 5.507172569177399e-17 - syst_JES_EtaIntercalibration_Stat15: 9.506740347248368e-24 - syst_JES_EtaIntercalibration_Stat150: 9.394881365820591e-10 - syst_JES_EtaIntercalibration_Stat151: 1.7155972613611544e-09 - syst_JES_EtaIntercalibration_Stat152: 7.638343440438737e-09 - syst_JES_EtaIntercalibration_Stat153: 1.6025381810836053e-16 + syst_JES_EtaIntercalibration_Stat149: 5.50717257e-17 + syst_JES_EtaIntercalibration_Stat15: 9.50674035e-24 + syst_JES_EtaIntercalibration_Stat150: 9.39488137e-10 + syst_JES_EtaIntercalibration_Stat151: 1.71559726e-09 + syst_JES_EtaIntercalibration_Stat152: 7.63834344e-09 + syst_JES_EtaIntercalibration_Stat153: 1.60253818e-16 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 6.179075305653488e-22 - syst_JES_EtaIntercalibration_Stat157: 7.18042622342156e-09 - syst_JES_EtaIntercalibration_Stat158: 1.550174270848281e-08 - syst_JES_EtaIntercalibration_Stat159: 4.89740040735899e-09 + syst_JES_EtaIntercalibration_Stat156: 6.17907531e-22 + syst_JES_EtaIntercalibration_Stat157: 7.18042622e-09 + syst_JES_EtaIntercalibration_Stat158: 1.55017427e-08 + syst_JES_EtaIntercalibration_Stat159: 4.89740041e-09 syst_JES_EtaIntercalibration_Stat16: 0.0 - syst_JES_EtaIntercalibration_Stat160: 5.316510726736099e-19 + syst_JES_EtaIntercalibration_Stat160: 5.31651073e-19 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 - syst_JES_EtaIntercalibration_Stat167: 2.634110051859451e-14 - syst_JES_EtaIntercalibration_Stat168: 5.944792920489326e-09 - syst_JES_EtaIntercalibration_Stat169: 3.531004531291344e-08 + syst_JES_EtaIntercalibration_Stat167: 2.63411005e-14 + syst_JES_EtaIntercalibration_Stat168: 5.94479292e-09 + syst_JES_EtaIntercalibration_Stat169: 3.53100453e-08 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 2.7156326610939113e-08 - syst_JES_EtaIntercalibration_Stat171: 2.2793374986169045e-11 + syst_JES_EtaIntercalibration_Stat170: 2.71563266e-08 + syst_JES_EtaIntercalibration_Stat171: 2.27933750e-11 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 - syst_JES_EtaIntercalibration_Stat174: 3.9535226645402242e-19 - syst_JES_EtaIntercalibration_Stat175: 2.7427733172830743e-08 - syst_JES_EtaIntercalibration_Stat176: 2.5915123152321694e-08 - syst_JES_EtaIntercalibration_Stat177: 7.058177735270981e-09 - syst_JES_EtaIntercalibration_Stat178: 2.9706597250232145e-09 + syst_JES_EtaIntercalibration_Stat174: 3.95352266e-19 + syst_JES_EtaIntercalibration_Stat175: 2.74277332e-08 + syst_JES_EtaIntercalibration_Stat176: 2.59151232e-08 + syst_JES_EtaIntercalibration_Stat177: 7.05817774e-09 + syst_JES_EtaIntercalibration_Stat178: 2.97065973e-09 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 syst_JES_EtaIntercalibration_Stat180: 0.0 syst_JES_EtaIntercalibration_Stat181: 0.0 syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 - syst_JES_EtaIntercalibration_Stat184: 2.243264752542597e-09 - syst_JES_EtaIntercalibration_Stat185: 3.3652678942396245e-08 - syst_JES_EtaIntercalibration_Stat186: 1.4439230000245858e-07 - syst_JES_EtaIntercalibration_Stat187: 1.017461482071926e-07 - syst_JES_EtaIntercalibration_Stat188: 3.6737688968551084e-09 + syst_JES_EtaIntercalibration_Stat184: 2.24326475e-09 + syst_JES_EtaIntercalibration_Stat185: 3.36526789e-08 + syst_JES_EtaIntercalibration_Stat186: 1.44392300e-07 + syst_JES_EtaIntercalibration_Stat187: 1.01746148e-07 + syst_JES_EtaIntercalibration_Stat188: 3.67376890e-09 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 - syst_JES_EtaIntercalibration_Stat191: 3.5135983702608927e-09 - syst_JES_EtaIntercalibration_Stat192: 1.4044101964881913e-07 - syst_JES_EtaIntercalibration_Stat193: 2.211747499150841e-07 - syst_JES_EtaIntercalibration_Stat194: 3.89921437599935e-08 - syst_JES_EtaIntercalibration_Stat195: 4.8314379846997934e-09 - syst_JES_EtaIntercalibration_Stat196: 1.3636510736988403e-18 + syst_JES_EtaIntercalibration_Stat191: 3.51359837e-09 + syst_JES_EtaIntercalibration_Stat192: 1.40441020e-07 + syst_JES_EtaIntercalibration_Stat193: 2.21174750e-07 + syst_JES_EtaIntercalibration_Stat194: 3.89921438e-08 + syst_JES_EtaIntercalibration_Stat195: 4.83143798e-09 + syst_JES_EtaIntercalibration_Stat196: 1.36365107e-18 syst_JES_EtaIntercalibration_Stat197: 0.0 syst_JES_EtaIntercalibration_Stat198: 0.0 - syst_JES_EtaIntercalibration_Stat199: 5.778063927476054e-09 + syst_JES_EtaIntercalibration_Stat199: 5.77806393e-09 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 8.649196190976361e-08 - syst_JES_EtaIntercalibration_Stat201: 3.4132380520555555e-07 - syst_JES_EtaIntercalibration_Stat202: 2.544402483884969e-07 - syst_JES_EtaIntercalibration_Stat203: 3.5493086914919077e-09 + syst_JES_EtaIntercalibration_Stat200: 8.64919619e-08 + syst_JES_EtaIntercalibration_Stat201: 3.41323805e-07 + syst_JES_EtaIntercalibration_Stat202: 2.54440248e-07 + syst_JES_EtaIntercalibration_Stat203: 3.54930869e-09 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 - syst_JES_EtaIntercalibration_Stat206: 1.3265538238232175e-08 - syst_JES_EtaIntercalibration_Stat207: 2.4545367689240264e-07 - syst_JES_EtaIntercalibration_Stat208: 5.252377818664609e-07 - syst_JES_EtaIntercalibration_Stat209: 9.733057934174645e-08 + syst_JES_EtaIntercalibration_Stat206: 1.32655382e-08 + syst_JES_EtaIntercalibration_Stat207: 2.45453677e-07 + syst_JES_EtaIntercalibration_Stat208: 5.25237782e-07 + syst_JES_EtaIntercalibration_Stat209: 9.73305793e-08 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 3.841063915115186e-09 - syst_JES_EtaIntercalibration_Stat211: 1.459747464734911e-18 - syst_JES_EtaIntercalibration_Stat212: 7.722698152200436e-09 - syst_JES_EtaIntercalibration_Stat213: 6.613215008602095e-08 - syst_JES_EtaIntercalibration_Stat214: 3.044861080574941e-07 - syst_JES_EtaIntercalibration_Stat215: 3.0876330740552703e-07 - syst_JES_EtaIntercalibration_Stat216: 1.3039213933362703e-08 + syst_JES_EtaIntercalibration_Stat210: 3.84106392e-09 + syst_JES_EtaIntercalibration_Stat211: 1.45974746e-18 + syst_JES_EtaIntercalibration_Stat212: 7.72269815e-09 + syst_JES_EtaIntercalibration_Stat213: 6.61321501e-08 + syst_JES_EtaIntercalibration_Stat214: 3.04486108e-07 + syst_JES_EtaIntercalibration_Stat215: 3.08763307e-07 + syst_JES_EtaIntercalibration_Stat216: 1.30392139e-08 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 - syst_JES_EtaIntercalibration_Stat219: 1.987299280430605e-08 + syst_JES_EtaIntercalibration_Stat219: 1.98729928e-08 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 3.2267601010921156e-07 - syst_JES_EtaIntercalibration_Stat221: 3.7580524354378025e-07 - syst_JES_EtaIntercalibration_Stat222: 9.146671676079775e-08 - syst_JES_EtaIntercalibration_Stat223: 2.7824890309756837e-11 - syst_JES_EtaIntercalibration_Stat224: 1.2747893947648507e-08 - syst_JES_EtaIntercalibration_Stat225: 3.0045376932233683e-07 - syst_JES_EtaIntercalibration_Stat226: 1.0860171775805392e-06 - syst_JES_EtaIntercalibration_Stat227: 8.593772439970702e-07 - syst_JES_EtaIntercalibration_Stat228: 1.9420933937377985e-08 + syst_JES_EtaIntercalibration_Stat220: 3.22676010e-07 + syst_JES_EtaIntercalibration_Stat221: 3.75805244e-07 + syst_JES_EtaIntercalibration_Stat222: 9.14667168e-08 + syst_JES_EtaIntercalibration_Stat223: 2.78248903e-11 + syst_JES_EtaIntercalibration_Stat224: 1.27478939e-08 + syst_JES_EtaIntercalibration_Stat225: 3.00453769e-07 + syst_JES_EtaIntercalibration_Stat226: 1.08601718e-06 + syst_JES_EtaIntercalibration_Stat227: 8.59377244e-07 + syst_JES_EtaIntercalibration_Stat228: 1.94209339e-08 syst_JES_EtaIntercalibration_Stat229: 0.0 syst_JES_EtaIntercalibration_Stat23: 0.0 syst_JES_EtaIntercalibration_Stat230: 0.0 - syst_JES_EtaIntercalibration_Stat231: 1.8266454582102133e-08 - syst_JES_EtaIntercalibration_Stat232: 9.483002636296164e-07 - syst_JES_EtaIntercalibration_Stat233: 1.1176406969594477e-06 - syst_JES_EtaIntercalibration_Stat234: 3.5346146536786727e-07 - syst_JES_EtaIntercalibration_Stat235: 4.14463737858935e-08 - syst_JES_EtaIntercalibration_Stat236: 6.841061083633151e-08 - syst_JES_EtaIntercalibration_Stat237: 2.2512005685855713e-07 - syst_JES_EtaIntercalibration_Stat238: 1.2263541280967744e-07 - syst_JES_EtaIntercalibration_Stat239: 3.5190651680292527e-09 + syst_JES_EtaIntercalibration_Stat231: 1.82664546e-08 + syst_JES_EtaIntercalibration_Stat232: 9.48300264e-07 + syst_JES_EtaIntercalibration_Stat233: 1.11764070e-06 + syst_JES_EtaIntercalibration_Stat234: 3.53461465e-07 + syst_JES_EtaIntercalibration_Stat235: 4.14463738e-08 + syst_JES_EtaIntercalibration_Stat236: 6.84106108e-08 + syst_JES_EtaIntercalibration_Stat237: 2.25120057e-07 + syst_JES_EtaIntercalibration_Stat238: 1.22635413e-07 + syst_JES_EtaIntercalibration_Stat239: 3.51906517e-09 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 - syst_JES_EtaIntercalibration_Stat242: 3.5464840599528997e-09 - syst_JES_EtaIntercalibration_Stat243: 1.4082563687056415e-07 - syst_JES_EtaIntercalibration_Stat244: 2.1793064837236637e-07 - syst_JES_EtaIntercalibration_Stat245: 7.37731699196937e-08 + syst_JES_EtaIntercalibration_Stat242: 3.54648406e-09 + syst_JES_EtaIntercalibration_Stat243: 1.40825637e-07 + syst_JES_EtaIntercalibration_Stat244: 2.17930648e-07 + syst_JES_EtaIntercalibration_Stat245: 7.37731699e-08 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 - syst_JES_EtaIntercalibration_Stat27: 6.15253531074792e-24 - syst_JES_EtaIntercalibration_Stat28: 7.287503116177722e-21 - syst_JES_EtaIntercalibration_Stat29: 1.2669952047914975e-15 + syst_JES_EtaIntercalibration_Stat27: 6.15253531e-24 + syst_JES_EtaIntercalibration_Stat28: 7.28750312e-21 + syst_JES_EtaIntercalibration_Stat29: 1.26699520e-15 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 1.2704593341223442e-15 - syst_JES_EtaIntercalibration_Stat31: 1.241880429026885e-24 + syst_JES_EtaIntercalibration_Stat30: 1.27045933e-15 + syst_JES_EtaIntercalibration_Stat31: 1.24188043e-24 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 - syst_JES_EtaIntercalibration_Stat34: 3.0613998023779907e-25 - syst_JES_EtaIntercalibration_Stat35: 1.3198669463255301e-18 - syst_JES_EtaIntercalibration_Stat36: 1.3303367124091065e-18 - syst_JES_EtaIntercalibration_Stat37: 4.221846397016357e-23 - syst_JES_EtaIntercalibration_Stat38: 2.54853316782419e-24 + syst_JES_EtaIntercalibration_Stat34: 3.06139980e-25 + syst_JES_EtaIntercalibration_Stat35: 1.31986695e-18 + syst_JES_EtaIntercalibration_Stat36: 1.33033671e-18 + syst_JES_EtaIntercalibration_Stat37: 4.22184640e-23 + syst_JES_EtaIntercalibration_Stat38: 2.54853317e-24 syst_JES_EtaIntercalibration_Stat39: 0.0 syst_JES_EtaIntercalibration_Stat4: 0.0 syst_JES_EtaIntercalibration_Stat40: 0.0 @@ -33719,21 +33719,21 @@ bins: syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 syst_JES_EtaIntercalibration_Stat47: 0.0 - syst_JES_EtaIntercalibration_Stat48: 3.1280837584693923e-24 - syst_JES_EtaIntercalibration_Stat49: 1.2278486582229913e-23 - syst_JES_EtaIntercalibration_Stat5: 2.4967512391105366e-24 - syst_JES_EtaIntercalibration_Stat50: 7.649942006806326e-21 - syst_JES_EtaIntercalibration_Stat51: 1.2548725069252706e-15 - syst_JES_EtaIntercalibration_Stat52: 1.2617991765598001e-15 - syst_JES_EtaIntercalibration_Stat53: 2.5425522034955347e-24 - syst_JES_EtaIntercalibration_Stat54: 2.3495269204671817e-24 + syst_JES_EtaIntercalibration_Stat48: 3.12808376e-24 + syst_JES_EtaIntercalibration_Stat49: 1.22784866e-23 + syst_JES_EtaIntercalibration_Stat5: 2.49675124e-24 + syst_JES_EtaIntercalibration_Stat50: 7.64994201e-21 + syst_JES_EtaIntercalibration_Stat51: 1.25487251e-15 + syst_JES_EtaIntercalibration_Stat52: 1.26179918e-15 + syst_JES_EtaIntercalibration_Stat53: 2.54255220e-24 + syst_JES_EtaIntercalibration_Stat54: 2.34952692e-24 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 9.301320981452043e-25 - syst_JES_EtaIntercalibration_Stat57: 1.3158263171465705e-18 - syst_JES_EtaIntercalibration_Stat58: 1.3239268880972054e-18 - syst_JES_EtaIntercalibration_Stat59: 5.931892172823104e-22 - syst_JES_EtaIntercalibration_Stat6: 6.84209456233981e-24 - syst_JES_EtaIntercalibration_Stat60: 2.357778778320816e-23 + syst_JES_EtaIntercalibration_Stat56: 9.30132098e-25 + syst_JES_EtaIntercalibration_Stat57: 1.31582632e-18 + syst_JES_EtaIntercalibration_Stat58: 1.32392689e-18 + syst_JES_EtaIntercalibration_Stat59: 5.93189217e-22 + syst_JES_EtaIntercalibration_Stat6: 6.84209456e-24 + syst_JES_EtaIntercalibration_Stat60: 2.35777878e-23 syst_JES_EtaIntercalibration_Stat61: 0.0 syst_JES_EtaIntercalibration_Stat62: 0.0 syst_JES_EtaIntercalibration_Stat63: 0.0 @@ -33743,21 +33743,21 @@ bins: syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 syst_JES_EtaIntercalibration_Stat69: 0.0 - syst_JES_EtaIntercalibration_Stat7: 1.6125081418399102e-23 - syst_JES_EtaIntercalibration_Stat70: 2.4967512391105366e-24 - syst_JES_EtaIntercalibration_Stat71: 3.479342610321668e-23 - syst_JES_EtaIntercalibration_Stat72: 6.279753816830721e-21 - syst_JES_EtaIntercalibration_Stat73: 2.689712736724632e-14 - syst_JES_EtaIntercalibration_Stat74: 1.3058216982038551e-15 - syst_JES_EtaIntercalibration_Stat75: 4.104755138860295e-24 - syst_JES_EtaIntercalibration_Stat76: 2.3495269204671817e-24 + syst_JES_EtaIntercalibration_Stat7: 1.61250814e-23 + syst_JES_EtaIntercalibration_Stat70: 2.49675124e-24 + syst_JES_EtaIntercalibration_Stat71: 3.47934261e-23 + syst_JES_EtaIntercalibration_Stat72: 6.27975382e-21 + syst_JES_EtaIntercalibration_Stat73: 2.68971274e-14 + syst_JES_EtaIntercalibration_Stat74: 1.30582170e-15 + syst_JES_EtaIntercalibration_Stat75: 4.10475514e-24 + syst_JES_EtaIntercalibration_Stat76: 2.34952692e-24 syst_JES_EtaIntercalibration_Stat77: 0.0 - syst_JES_EtaIntercalibration_Stat78: 1.5803520968442445e-23 - syst_JES_EtaIntercalibration_Stat79: 1.2539877301500004e-18 - syst_JES_EtaIntercalibration_Stat8: 2.5944253699037093e-24 - syst_JES_EtaIntercalibration_Stat80: 1.5640285255790544e-15 - syst_JES_EtaIntercalibration_Stat81: 1.3679022783810253e-18 - syst_JES_EtaIntercalibration_Stat82: 3.072494932054404e-23 + syst_JES_EtaIntercalibration_Stat78: 1.58035210e-23 + syst_JES_EtaIntercalibration_Stat79: 1.25398773e-18 + syst_JES_EtaIntercalibration_Stat8: 2.59442537e-24 + syst_JES_EtaIntercalibration_Stat80: 1.56402853e-15 + syst_JES_EtaIntercalibration_Stat81: 1.36790228e-18 + syst_JES_EtaIntercalibration_Stat82: 3.07249493e-23 syst_JES_EtaIntercalibration_Stat83: 0.0 syst_JES_EtaIntercalibration_Stat84: 0.0 syst_JES_EtaIntercalibration_Stat85: 0.0 @@ -33767,110 +33767,110 @@ bins: syst_JES_EtaIntercalibration_Stat89: 0.0 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 2.1278244170983655e-24 - syst_JES_EtaIntercalibration_Stat92: 1.772611844144115e-23 - syst_JES_EtaIntercalibration_Stat93: 1.0511062886311736e-20 - syst_JES_EtaIntercalibration_Stat94: 2.703550994522071e-14 - syst_JES_EtaIntercalibration_Stat95: 1.3247100626174771e-15 - syst_JES_EtaIntercalibration_Stat96: 6.563062022219506e-23 - syst_JES_EtaIntercalibration_Stat97: 2.3495269204671817e-24 + syst_JES_EtaIntercalibration_Stat91: 2.12782442e-24 + syst_JES_EtaIntercalibration_Stat92: 1.77261184e-23 + syst_JES_EtaIntercalibration_Stat93: 1.05110629e-20 + syst_JES_EtaIntercalibration_Stat94: 2.70355099e-14 + syst_JES_EtaIntercalibration_Stat95: 1.32471006e-15 + syst_JES_EtaIntercalibration_Stat96: 6.56306202e-23 + syst_JES_EtaIntercalibration_Stat97: 2.34952692e-24 syst_JES_EtaIntercalibration_Stat98: 0.0 - syst_JES_EtaIntercalibration_Stat99: 2.521760280712033e-20 - syst_JES_EtaIntercalibration_TotalStat_MJB: 1.7778284506667115e-05 - syst_JES_Flavour_Comp: 3.308483640582193e-05 - syst_JES_Gjet_Generator: 4.108551174075845e-05 - syst_JES_Gjet_OOC: 3.4236478717882185e-05 - syst_JES_Gjet_Purity: 4.330881780884812e-06 - syst_JES_Gjet_Stat1: 1.4364586593424817e-07 - syst_JES_Gjet_Stat10: 1.2198868636066215e-06 - syst_JES_Gjet_Stat11: 1.2531233568567782e-06 - syst_JES_Gjet_Stat12: 1.3862871879592627e-06 - syst_JES_Gjet_Stat13: 8.127526314937405e-06 - syst_JES_Gjet_Stat14: 2.1667244287172286e-05 - syst_JES_Gjet_Stat15: 3.613829374776845e-05 - syst_JES_Gjet_Stat2: 1.4057729653112552e-07 - syst_JES_Gjet_Stat3: 1.7416427783848212e-07 - syst_JES_Gjet_Stat4: 2.2222382298034564e-07 - syst_JES_Gjet_Stat5: 3.2090551179435983e-07 - syst_JES_Gjet_Stat6: 6.683288169007827e-07 - syst_JES_Gjet_Stat7: 5.954130667024364e-07 - syst_JES_Gjet_Stat8: 1.5630036564256657e-07 - syst_JES_Gjet_Stat9: 5.824812700851418e-07 - syst_JES_Gjet_Veto: 3.688228029826789e-05 - syst_JES_Gjet_dPhi: 3.255462793521069e-06 - syst_JES_LArESZee: 5.9500010714284755e-05 - syst_JES_LArEsmear: 5.632752147041445e-06 - syst_JES_LAr_JVT: 7.2984844145891e-06 - syst_JES_MJB_Alpha: 1.131949427978123e-06 - syst_JES_MJB_Asym: 1.7317485383276636e-05 - syst_JES_MJB_Beta: 1.083209024150002e-06 - syst_JES_MJB_Stat1: 2.9843235414411753e-10 - syst_JES_MJB_Stat10: 3.795371490381409e-07 - syst_JES_MJB_Stat11: 3.192791093620126e-07 - syst_JES_MJB_Stat12: 6.486861953209734e-07 - syst_JES_MJB_Stat13: 1.1624005591877528e-06 - syst_JES_MJB_Stat14: 3.3679059888898323e-06 - syst_JES_MJB_Stat15: 2.984455144159483e-06 - syst_JES_MJB_Stat16: 7.873397662381852e-06 + syst_JES_EtaIntercalibration_Stat99: 2.52176028e-20 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.77782845e-05 + syst_JES_Flavour_Comp: 3.30848364e-05 + syst_JES_Gjet_Generator: 4.10855117e-05 + syst_JES_Gjet_OOC: 3.42364787e-05 + syst_JES_Gjet_Purity: 4.33088178e-06 + syst_JES_Gjet_Stat1: 1.43645866e-07 + syst_JES_Gjet_Stat10: 1.21988686e-06 + syst_JES_Gjet_Stat11: 1.25312336e-06 + syst_JES_Gjet_Stat12: 1.38628719e-06 + syst_JES_Gjet_Stat13: 8.12752631e-06 + syst_JES_Gjet_Stat14: 2.16672443e-05 + syst_JES_Gjet_Stat15: 3.61382937e-05 + syst_JES_Gjet_Stat2: 1.40577297e-07 + syst_JES_Gjet_Stat3: 1.74164278e-07 + syst_JES_Gjet_Stat4: 2.22223823e-07 + syst_JES_Gjet_Stat5: 3.20905512e-07 + syst_JES_Gjet_Stat6: 6.68328817e-07 + syst_JES_Gjet_Stat7: 5.95413067e-07 + syst_JES_Gjet_Stat8: 1.56300366e-07 + syst_JES_Gjet_Stat9: 5.82481270e-07 + syst_JES_Gjet_Veto: 3.68822803e-05 + syst_JES_Gjet_dPhi: 3.25546279e-06 + syst_JES_LArESZee: 5.95000107e-05 + syst_JES_LArEsmear: 5.63275215e-06 + syst_JES_LAr_JVT: 7.29848441e-06 + syst_JES_MJB_Alpha: 1.13194943e-06 + syst_JES_MJB_Asym: 1.73174854e-05 + syst_JES_MJB_Beta: 1.08320902e-06 + syst_JES_MJB_Stat1: 2.98432354e-10 + syst_JES_MJB_Stat10: 3.79537149e-07 + syst_JES_MJB_Stat11: 3.19279109e-07 + syst_JES_MJB_Stat12: 6.48686195e-07 + syst_JES_MJB_Stat13: 1.16240056e-06 + syst_JES_MJB_Stat14: 3.36790599e-06 + syst_JES_MJB_Stat15: 2.98445514e-06 + syst_JES_MJB_Stat16: 7.87339766e-06 syst_JES_MJB_Stat2: 0.0 - syst_JES_MJB_Stat3: 2.3183500059309423e-08 - syst_JES_MJB_Stat4: 1.8229834749662432e-08 - syst_JES_MJB_Stat5: 2.4014884446942483e-08 - syst_JES_MJB_Stat6: 4.15004996957868e-08 - syst_JES_MJB_Stat7: 5.281727061293494e-08 - syst_JES_MJB_Stat8: 7.693193615137994e-08 - syst_JES_MJB_Stat9: 1.0861907889500812e-07 - syst_JES_MJB_Threshold: 7.513748382132583e-06 - syst_JES_Pileup_MuOffset: 1.1443888008452374e-05 - syst_JES_Pileup_NPVOffset: 1.021451529687043e-05 - syst_JES_Pileup_Pt_term: 4.5103201660192585e-06 - syst_JES_PunchThrough_MC15: 1.8523586990645196e-05 - syst_JES_SingleParticle_HighPt: 6.463634329848803e-09 - syst_JES_Zjet_MC: 1.5942148537759896e-05 - syst_JES_Zjet_MuScale: 1.3689828340779149e-06 - syst_JES_Zjet_MuSmearID: 2.456984076057474e-07 - syst_JES_Zjet_MuSmearMS: 3.821193923370025e-06 - syst_JES_Zjet_OOC: 1.0381708566030932e-05 - syst_JES_Zjet_Stat1: 1.6150746112796152e-06 - syst_JES_Zjet_Stat10: 7.295721674378758e-07 - syst_JES_Zjet_Stat11: 9.947680973473165e-07 - syst_JES_Zjet_Stat12: 2.0933707268422384e-06 - syst_JES_Zjet_Stat13: 3.866842995261122e-06 - syst_JES_Zjet_Stat2: 2.0576763593918264e-09 - syst_JES_Zjet_Stat3: 5.173125457593311e-07 - syst_JES_Zjet_Stat4: 5.858527694736965e-07 - syst_JES_Zjet_Stat5: 5.740076197229441e-07 - syst_JES_Zjet_Stat6: 5.86054287161181e-07 - syst_JES_Zjet_Stat7: 6.339484363889543e-07 - syst_JES_Zjet_Stat8: 3.742853546426843e-07 - syst_JES_Zjet_Stat9: 4.822558527379424e-07 - syst_JES_Zjet_Veto: 1.870388729649535e-06 - syst_JES_Zjet_dPhi: 1.7699877824437097e-06 + syst_JES_MJB_Stat3: 2.31835001e-08 + syst_JES_MJB_Stat4: 1.82298347e-08 + syst_JES_MJB_Stat5: 2.40148844e-08 + syst_JES_MJB_Stat6: 4.15004997e-08 + syst_JES_MJB_Stat7: 5.28172706e-08 + syst_JES_MJB_Stat8: 7.69319362e-08 + syst_JES_MJB_Stat9: 1.08619079e-07 + syst_JES_MJB_Threshold: 7.51374838e-06 + syst_JES_Pileup_MuOffset: 1.14438880e-05 + syst_JES_Pileup_NPVOffset: 1.02145153e-05 + syst_JES_Pileup_Pt_term: 4.51032017e-06 + syst_JES_PunchThrough_MC15: 1.85235870e-05 + syst_JES_SingleParticle_HighPt: 6.46363433e-09 + syst_JES_Zjet_MC: 1.59421485e-05 + syst_JES_Zjet_MuScale: 1.36898283e-06 + syst_JES_Zjet_MuSmearID: 2.45698408e-07 + syst_JES_Zjet_MuSmearMS: 3.82119392e-06 + syst_JES_Zjet_OOC: 1.03817086e-05 + syst_JES_Zjet_Stat1: 1.61507461e-06 + syst_JES_Zjet_Stat10: 7.29572167e-07 + syst_JES_Zjet_Stat11: 9.94768097e-07 + syst_JES_Zjet_Stat12: 2.09337073e-06 + syst_JES_Zjet_Stat13: 3.86684300e-06 + syst_JES_Zjet_Stat2: 2.05767636e-09 + syst_JES_Zjet_Stat3: 5.17312546e-07 + syst_JES_Zjet_Stat4: 5.85852769e-07 + syst_JES_Zjet_Stat5: 5.74007620e-07 + syst_JES_Zjet_Stat6: 5.86054287e-07 + syst_JES_Zjet_Stat7: 6.33948436e-07 + syst_JES_Zjet_Stat8: 3.74285355e-07 + syst_JES_Zjet_Stat9: 4.82255853e-07 + syst_JES_Zjet_Veto: 1.87038873e-06 + syst_JES_Zjet_dPhi: 1.76998778e-06 syst_PRW: 0.0 - syst_Unfolding_bias: 1.1312e-06 - syst_cleaning: 7.114398692089164e-06 - syst_lumi: 2.323e-05 + syst_Unfolding_bias: 1.13120000e-06 + syst_cleaning: 7.11439869e-06 + syst_lumi: 2.32300000e-05 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 5.561950624556101e-06 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 4.660726767361502e-06 - syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 3.475744920157404e-07 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 5.56195062e-06 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 4.66072677e-06 + syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 3.47574492e-07 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 1.0168739056539901e-05 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 4.899115124183142e-06 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.1288120614167797e-05 -- stat: 5.319e-06 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 1.01687391e-05 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 4.89911512e-06 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.12881206e-05 +- stat: 5.31900000e-06 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 7.350554723964716e-07 - syst_JER_NP1: 3.902411914444707e-07 - syst_JER_NP2: 9.39251372104401e-07 - syst_JER_NP3: 2.522150421763143e-07 + syst_JER_NP0: 7.35055472e-07 + syst_JER_NP1: 3.90241191e-07 + syst_JER_NP2: 9.39251372e-07 + syst_JER_NP3: 2.52215042e-07 syst_JER_NP4: 0.0 syst_JER_NP5: 0.0 syst_JER_NP6: 0.0 syst_JER_NP7: 0.0 - syst_JER_NP8: 1.7144400689437937e-07 - syst_JES_EtaIntercalibration_Modelling: 5.9624464777472014e-06 + syst_JER_NP8: 1.71444007e-07 + syst_JES_EtaIntercalibration_Modelling: 5.96244648e-06 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 @@ -33891,7 +33891,7 @@ bins: syst_JES_EtaIntercalibration_Stat112: 0.0 syst_JES_EtaIntercalibration_Stat113: 0.0 syst_JES_EtaIntercalibration_Stat114: 0.0 - syst_JES_EtaIntercalibration_Stat115: 7.475531285467274e-10 + syst_JES_EtaIntercalibration_Stat115: 7.47553129e-10 syst_JES_EtaIntercalibration_Stat116: 0.0 syst_JES_EtaIntercalibration_Stat117: 0.0 syst_JES_EtaIntercalibration_Stat118: 0.0 @@ -33912,15 +33912,15 @@ bins: syst_JES_EtaIntercalibration_Stat131: 0.0 syst_JES_EtaIntercalibration_Stat132: 0.0 syst_JES_EtaIntercalibration_Stat133: 0.0 - syst_JES_EtaIntercalibration_Stat134: 4.6540205199375736e-10 + syst_JES_EtaIntercalibration_Stat134: 4.65402052e-10 syst_JES_EtaIntercalibration_Stat135: 0.0 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 syst_JES_EtaIntercalibration_Stat138: 0.0 - syst_JES_EtaIntercalibration_Stat139: 1.1213069784853745e-09 + syst_JES_EtaIntercalibration_Stat139: 1.12130698e-09 syst_JES_EtaIntercalibration_Stat14: 0.0 syst_JES_EtaIntercalibration_Stat140: 0.0 - syst_JES_EtaIntercalibration_Stat141: 4.0235540259825017e-10 + syst_JES_EtaIntercalibration_Stat141: 4.02355403e-10 syst_JES_EtaIntercalibration_Stat142: 0.0 syst_JES_EtaIntercalibration_Stat143: 0.0 syst_JES_EtaIntercalibration_Stat144: 0.0 @@ -33930,16 +33930,16 @@ bins: syst_JES_EtaIntercalibration_Stat148: 0.0 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 1.105654633011593e-10 - syst_JES_EtaIntercalibration_Stat151: 1.772754001546746e-09 - syst_JES_EtaIntercalibration_Stat152: 4.654886545341357e-10 + syst_JES_EtaIntercalibration_Stat150: 1.10565463e-10 + syst_JES_EtaIntercalibration_Stat151: 1.77275400e-09 + syst_JES_EtaIntercalibration_Stat152: 4.65488655e-10 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 syst_JES_EtaIntercalibration_Stat156: 0.0 - syst_JES_EtaIntercalibration_Stat157: 1.1130713487912622e-09 - syst_JES_EtaIntercalibration_Stat158: 1.4405814798198678e-09 - syst_JES_EtaIntercalibration_Stat159: 4.0235540259825017e-10 + syst_JES_EtaIntercalibration_Stat157: 1.11307135e-09 + syst_JES_EtaIntercalibration_Stat158: 1.44058148e-09 + syst_JES_EtaIntercalibration_Stat159: 4.02355403e-10 syst_JES_EtaIntercalibration_Stat16: 0.0 syst_JES_EtaIntercalibration_Stat160: 0.0 syst_JES_EtaIntercalibration_Stat161: 0.0 @@ -33949,16 +33949,16 @@ bins: syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 - syst_JES_EtaIntercalibration_Stat168: 3.5631588401304817e-09 - syst_JES_EtaIntercalibration_Stat169: 4.805613046220014e-09 + syst_JES_EtaIntercalibration_Stat168: 3.56315884e-09 + syst_JES_EtaIntercalibration_Stat169: 4.80561305e-09 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 6.9210156046638134e-09 + syst_JES_EtaIntercalibration_Stat170: 6.92101560e-09 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 - syst_JES_EtaIntercalibration_Stat175: 2.5168309438657177e-09 - syst_JES_EtaIntercalibration_Stat176: 4.629663351691999e-09 + syst_JES_EtaIntercalibration_Stat175: 2.51683094e-09 + syst_JES_EtaIntercalibration_Stat176: 4.62966335e-09 syst_JES_EtaIntercalibration_Stat177: 0.0 syst_JES_EtaIntercalibration_Stat178: 0.0 syst_JES_EtaIntercalibration_Stat179: 0.0 @@ -33967,75 +33967,75 @@ bins: syst_JES_EtaIntercalibration_Stat181: 0.0 syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 - syst_JES_EtaIntercalibration_Stat184: 9.597109652780882e-10 - syst_JES_EtaIntercalibration_Stat185: 5.685456775844841e-09 - syst_JES_EtaIntercalibration_Stat186: 1.9885499742274522e-08 - syst_JES_EtaIntercalibration_Stat187: 1.6874408878535565e-08 - syst_JES_EtaIntercalibration_Stat188: 7.345627474899609e-10 + syst_JES_EtaIntercalibration_Stat184: 9.59710965e-10 + syst_JES_EtaIntercalibration_Stat185: 5.68545678e-09 + syst_JES_EtaIntercalibration_Stat186: 1.98854997e-08 + syst_JES_EtaIntercalibration_Stat187: 1.68744089e-08 + syst_JES_EtaIntercalibration_Stat188: 7.34562747e-10 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 - syst_JES_EtaIntercalibration_Stat191: 1.1988389664587984e-09 - syst_JES_EtaIntercalibration_Stat192: 1.4103090468049902e-08 - syst_JES_EtaIntercalibration_Stat193: 1.8002029573078696e-08 - syst_JES_EtaIntercalibration_Stat194: 3.9738538913754744e-09 + syst_JES_EtaIntercalibration_Stat191: 1.19883897e-09 + syst_JES_EtaIntercalibration_Stat192: 1.41030905e-08 + syst_JES_EtaIntercalibration_Stat193: 1.80020296e-08 + syst_JES_EtaIntercalibration_Stat194: 3.97385389e-09 syst_JES_EtaIntercalibration_Stat195: 0.0 syst_JES_EtaIntercalibration_Stat196: 0.0 syst_JES_EtaIntercalibration_Stat197: 0.0 syst_JES_EtaIntercalibration_Stat198: 0.0 - syst_JES_EtaIntercalibration_Stat199: 7.925409321132884e-10 + syst_JES_EtaIntercalibration_Stat199: 7.92540932e-10 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 9.624591666663059e-09 - syst_JES_EtaIntercalibration_Stat201: 2.4087537752954326e-08 - syst_JES_EtaIntercalibration_Stat202: 2.973420252840153e-08 - syst_JES_EtaIntercalibration_Stat203: 7.175886495757859e-10 + syst_JES_EtaIntercalibration_Stat200: 9.62459167e-09 + syst_JES_EtaIntercalibration_Stat201: 2.40875378e-08 + syst_JES_EtaIntercalibration_Stat202: 2.97342025e-08 + syst_JES_EtaIntercalibration_Stat203: 7.17588650e-10 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 - syst_JES_EtaIntercalibration_Stat206: 1.1424994048138493e-09 - syst_JES_EtaIntercalibration_Stat207: 2.8986408452928416e-08 - syst_JES_EtaIntercalibration_Stat208: 3.89923386705645e-08 - syst_JES_EtaIntercalibration_Stat209: 6.775005147599521e-09 + syst_JES_EtaIntercalibration_Stat206: 1.14249940e-09 + syst_JES_EtaIntercalibration_Stat207: 2.89864085e-08 + syst_JES_EtaIntercalibration_Stat208: 3.89923387e-08 + syst_JES_EtaIntercalibration_Stat209: 6.77500515e-09 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 1.4098893573610662e-09 + syst_JES_EtaIntercalibration_Stat210: 1.40988936e-09 syst_JES_EtaIntercalibration_Stat211: 0.0 - syst_JES_EtaIntercalibration_Stat212: 1.0263267060249383e-10 - syst_JES_EtaIntercalibration_Stat213: 9.896561663022165e-09 - syst_JES_EtaIntercalibration_Stat214: 3.402199445579286e-08 - syst_JES_EtaIntercalibration_Stat215: 3.088757800475784e-08 - syst_JES_EtaIntercalibration_Stat216: 1.4679130594146237e-09 + syst_JES_EtaIntercalibration_Stat212: 1.02632671e-10 + syst_JES_EtaIntercalibration_Stat213: 9.89656166e-09 + syst_JES_EtaIntercalibration_Stat214: 3.40219945e-08 + syst_JES_EtaIntercalibration_Stat215: 3.08875780e-08 + syst_JES_EtaIntercalibration_Stat216: 1.46791306e-09 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 - syst_JES_EtaIntercalibration_Stat219: 1.1982327486761495e-09 + syst_JES_EtaIntercalibration_Stat219: 1.19823275e-09 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 3.465646368283989e-08 - syst_JES_EtaIntercalibration_Stat221: 3.301714504617261e-08 - syst_JES_EtaIntercalibration_Stat222: 6.823100669783497e-09 - syst_JES_EtaIntercalibration_Stat223: 1.4090233319572817e-09 - syst_JES_EtaIntercalibration_Stat224: 8.877626414194279e-10 - syst_JES_EtaIntercalibration_Stat225: 2.4946727240261396e-08 - syst_JES_EtaIntercalibration_Stat226: 8.879987091769897e-08 - syst_JES_EtaIntercalibration_Stat227: 8.204451398478754e-08 - syst_JES_EtaIntercalibration_Stat228: 2.9240123118755848e-09 + syst_JES_EtaIntercalibration_Stat220: 3.46564637e-08 + syst_JES_EtaIntercalibration_Stat221: 3.30171450e-08 + syst_JES_EtaIntercalibration_Stat222: 6.82310067e-09 + syst_JES_EtaIntercalibration_Stat223: 1.40902333e-09 + syst_JES_EtaIntercalibration_Stat224: 8.87762641e-10 + syst_JES_EtaIntercalibration_Stat225: 2.49467272e-08 + syst_JES_EtaIntercalibration_Stat226: 8.87998709e-08 + syst_JES_EtaIntercalibration_Stat227: 8.20445140e-08 + syst_JES_EtaIntercalibration_Stat228: 2.92401231e-09 syst_JES_EtaIntercalibration_Stat229: 0.0 syst_JES_EtaIntercalibration_Stat23: 0.0 syst_JES_EtaIntercalibration_Stat230: 0.0 - syst_JES_EtaIntercalibration_Stat231: 2.1239442083068e-09 - syst_JES_EtaIntercalibration_Stat232: 9.31743831479447e-08 - syst_JES_EtaIntercalibration_Stat233: 9.152169906639628e-08 - syst_JES_EtaIntercalibration_Stat234: 2.4572283166201712e-08 - syst_JES_EtaIntercalibration_Stat235: 4.054730940518742e-10 - syst_JES_EtaIntercalibration_Stat236: 8.024561467768815e-09 - syst_JES_EtaIntercalibration_Stat237: 2.7913928422921775e-08 - syst_JES_EtaIntercalibration_Stat238: 2.1735028755444517e-08 - syst_JES_EtaIntercalibration_Stat239: 7.34995760191853e-10 + syst_JES_EtaIntercalibration_Stat231: 2.12394421e-09 + syst_JES_EtaIntercalibration_Stat232: 9.31743831e-08 + syst_JES_EtaIntercalibration_Stat233: 9.15216991e-08 + syst_JES_EtaIntercalibration_Stat234: 2.45722832e-08 + syst_JES_EtaIntercalibration_Stat235: 4.05473094e-10 + syst_JES_EtaIntercalibration_Stat236: 8.02456147e-09 + syst_JES_EtaIntercalibration_Stat237: 2.79139284e-08 + syst_JES_EtaIntercalibration_Stat238: 2.17350288e-08 + syst_JES_EtaIntercalibration_Stat239: 7.34995760e-10 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 - syst_JES_EtaIntercalibration_Stat242: 1.1990987740799338e-09 - syst_JES_EtaIntercalibration_Stat243: 1.459255299801923e-08 - syst_JES_EtaIntercalibration_Stat244: 1.8122009180827603e-08 - syst_JES_EtaIntercalibration_Stat245: 3.5139247288466492e-09 + syst_JES_EtaIntercalibration_Stat242: 1.19909877e-09 + syst_JES_EtaIntercalibration_Stat243: 1.45925530e-08 + syst_JES_EtaIntercalibration_Stat244: 1.81220092e-08 + syst_JES_EtaIntercalibration_Stat245: 3.51392473e-09 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 syst_JES_EtaIntercalibration_Stat27: 0.0 @@ -34118,249 +34118,249 @@ bins: syst_JES_EtaIntercalibration_Stat97: 0.0 syst_JES_EtaIntercalibration_Stat98: 0.0 syst_JES_EtaIntercalibration_Stat99: 0.0 - syst_JES_EtaIntercalibration_TotalStat_MJB: 2.1989222360056302e-06 - syst_JES_Flavour_Comp: 1.547140588311224e-06 - syst_JES_Gjet_Generator: 3.744084583379494e-06 - syst_JES_Gjet_OOC: 3.118487774547144e-06 - syst_JES_Gjet_Purity: 1.0506623054054999e-08 - syst_JES_Gjet_Stat1: 6.463765311333634e-09 - syst_JES_Gjet_Stat10: 2.3104194424389696e-07 - syst_JES_Gjet_Stat11: 2.254842067640215e-07 - syst_JES_Gjet_Stat12: 1.0111369491814647e-07 - syst_JES_Gjet_Stat13: 9.50531235678239e-07 - syst_JES_Gjet_Stat14: 2.840880145307084e-06 - syst_JES_Gjet_Stat15: 4.526270070378038e-06 - syst_JES_Gjet_Stat2: 2.0666017395715122e-08 - syst_JES_Gjet_Stat3: 2.5237319092962308e-08 - syst_JES_Gjet_Stat4: 8.901608548459092e-08 - syst_JES_Gjet_Stat5: 8.799023056567132e-08 - syst_JES_Gjet_Stat6: 7.226864240457267e-08 - syst_JES_Gjet_Stat7: 6.843527215551934e-08 - syst_JES_Gjet_Stat8: 1.733782858376446e-08 - syst_JES_Gjet_Stat9: 6.636873567426157e-08 - syst_JES_Gjet_Veto: 3.7161594085830067e-06 - syst_JES_Gjet_dPhi: 1.4485316427334269e-07 - syst_JES_LArESZee: 4.728722316863192e-06 - syst_JES_LArEsmear: 4.821549206427328e-07 - syst_JES_LAr_JVT: 6.273411571864228e-07 - syst_JES_MJB_Alpha: 1.1342936160888856e-07 - syst_JES_MJB_Asym: 2.9907387047350025e-06 - syst_JES_MJB_Beta: 2.3834917138517597e-07 + syst_JES_EtaIntercalibration_TotalStat_MJB: 2.19892224e-06 + syst_JES_Flavour_Comp: 1.54714059e-06 + syst_JES_Gjet_Generator: 3.74408458e-06 + syst_JES_Gjet_OOC: 3.11848777e-06 + syst_JES_Gjet_Purity: 1.05066231e-08 + syst_JES_Gjet_Stat1: 6.46376531e-09 + syst_JES_Gjet_Stat10: 2.31041944e-07 + syst_JES_Gjet_Stat11: 2.25484207e-07 + syst_JES_Gjet_Stat12: 1.01113695e-07 + syst_JES_Gjet_Stat13: 9.50531236e-07 + syst_JES_Gjet_Stat14: 2.84088015e-06 + syst_JES_Gjet_Stat15: 4.52627007e-06 + syst_JES_Gjet_Stat2: 2.06660174e-08 + syst_JES_Gjet_Stat3: 2.52373191e-08 + syst_JES_Gjet_Stat4: 8.90160855e-08 + syst_JES_Gjet_Stat5: 8.79902306e-08 + syst_JES_Gjet_Stat6: 7.22686424e-08 + syst_JES_Gjet_Stat7: 6.84352722e-08 + syst_JES_Gjet_Stat8: 1.73378286e-08 + syst_JES_Gjet_Stat9: 6.63687357e-08 + syst_JES_Gjet_Veto: 3.71615941e-06 + syst_JES_Gjet_dPhi: 1.44853164e-07 + syst_JES_LArESZee: 4.72872232e-06 + syst_JES_LArEsmear: 4.82154921e-07 + syst_JES_LAr_JVT: 6.27341157e-07 + syst_JES_MJB_Alpha: 1.13429362e-07 + syst_JES_MJB_Asym: 2.99073870e-06 + syst_JES_MJB_Beta: 2.38349171e-07 syst_JES_MJB_Stat1: 0.0 - syst_JES_MJB_Stat10: 1.3856070582961101e-08 - syst_JES_MJB_Stat11: 1.710847158573787e-08 - syst_JES_MJB_Stat12: 3.2601314007260504e-08 - syst_JES_MJB_Stat13: 5.368200326925216e-08 - syst_JES_MJB_Stat14: 7.407484778924624e-07 - syst_JES_MJB_Stat15: 1.3492752304478135e-06 - syst_JES_MJB_Stat16: 2.2676708314920843e-06 + syst_JES_MJB_Stat10: 1.38560706e-08 + syst_JES_MJB_Stat11: 1.71084716e-08 + syst_JES_MJB_Stat12: 3.26013140e-08 + syst_JES_MJB_Stat13: 5.36820033e-08 + syst_JES_MJB_Stat14: 7.40748478e-07 + syst_JES_MJB_Stat15: 1.34927523e-06 + syst_JES_MJB_Stat16: 2.26767083e-06 syst_JES_MJB_Stat2: 0.0 - syst_JES_MJB_Stat3: 1.4713771610297614e-09 - syst_JES_MJB_Stat4: 1.1573563496175238e-09 - syst_JES_MJB_Stat5: 1.524204710660612e-09 - syst_JES_MJB_Stat6: 3.176948968743439e-09 - syst_JES_MJB_Stat7: 5.22399279765966e-09 - syst_JES_MJB_Stat8: 5.233626180766066e-09 - syst_JES_MJB_Stat9: 8.291564553810095e-09 - syst_JES_MJB_Threshold: 6.090630262953088e-07 - syst_JES_Pileup_MuOffset: 1.389387702371084e-06 - syst_JES_Pileup_NPVOffset: 9.943897073079547e-07 - syst_JES_Pileup_Pt_term: 3.3606548469011215e-07 - syst_JES_PunchThrough_MC15: 1.9775031605537323e-06 - syst_JES_SingleParticle_HighPt: 3.200663485904133e-08 - syst_JES_Zjet_MC: 1.3876158357052572e-06 - syst_JES_Zjet_MuScale: 1.7700350279019903e-07 - syst_JES_Zjet_MuSmearID: 1.5277341089011527e-08 - syst_JES_Zjet_MuSmearMS: 2.326398289201572e-07 - syst_JES_Zjet_OOC: 8.355593381083118e-07 - syst_JES_Zjet_Stat1: 1.855420976490241e-07 - syst_JES_Zjet_Stat10: 1.0761110491022756e-07 - syst_JES_Zjet_Stat11: 8.663965950994959e-08 - syst_JES_Zjet_Stat12: 1.4430992620052163e-07 - syst_JES_Zjet_Stat13: 3.363144473554474e-07 - syst_JES_Zjet_Stat2: 2.829304994163761e-09 - syst_JES_Zjet_Stat3: 4.1879200983304354e-08 - syst_JES_Zjet_Stat4: 6.244297458481619e-08 - syst_JES_Zjet_Stat5: 5.0421579457609214e-08 - syst_JES_Zjet_Stat6: 9.244630373898137e-08 - syst_JES_Zjet_Stat7: 7.569168431868854e-08 - syst_JES_Zjet_Stat8: 2.8465728077813156e-08 - syst_JES_Zjet_Stat9: 9.026809070762492e-08 - syst_JES_Zjet_Veto: 1.5702314319870178e-07 - syst_JES_Zjet_dPhi: 1.5191372551550436e-07 + syst_JES_MJB_Stat3: 1.47137716e-09 + syst_JES_MJB_Stat4: 1.15735635e-09 + syst_JES_MJB_Stat5: 1.52420471e-09 + syst_JES_MJB_Stat6: 3.17694897e-09 + syst_JES_MJB_Stat7: 5.22399280e-09 + syst_JES_MJB_Stat8: 5.23362618e-09 + syst_JES_MJB_Stat9: 8.29156455e-09 + syst_JES_MJB_Threshold: 6.09063026e-07 + syst_JES_Pileup_MuOffset: 1.38938770e-06 + syst_JES_Pileup_NPVOffset: 9.94389707e-07 + syst_JES_Pileup_Pt_term: 3.36065485e-07 + syst_JES_PunchThrough_MC15: 1.97750316e-06 + syst_JES_SingleParticle_HighPt: 3.20066349e-08 + syst_JES_Zjet_MC: 1.38761584e-06 + syst_JES_Zjet_MuScale: 1.77003503e-07 + syst_JES_Zjet_MuSmearID: 1.52773411e-08 + syst_JES_Zjet_MuSmearMS: 2.32639829e-07 + syst_JES_Zjet_OOC: 8.35559338e-07 + syst_JES_Zjet_Stat1: 1.85542098e-07 + syst_JES_Zjet_Stat10: 1.07611105e-07 + syst_JES_Zjet_Stat11: 8.66396595e-08 + syst_JES_Zjet_Stat12: 1.44309926e-07 + syst_JES_Zjet_Stat13: 3.36314447e-07 + syst_JES_Zjet_Stat2: 2.82930499e-09 + syst_JES_Zjet_Stat3: 4.18792010e-08 + syst_JES_Zjet_Stat4: 6.24429746e-08 + syst_JES_Zjet_Stat5: 5.04215795e-08 + syst_JES_Zjet_Stat6: 9.24463037e-08 + syst_JES_Zjet_Stat7: 7.56916843e-08 + syst_JES_Zjet_Stat8: 2.84657281e-08 + syst_JES_Zjet_Stat9: 9.02680907e-08 + syst_JES_Zjet_Veto: 1.57023143e-07 + syst_JES_Zjet_dPhi: 1.51913726e-07 syst_PRW: 0.0 - syst_Unfolding_bias: 7.108e-07 - syst_cleaning: 4.2469885801588867e-07 - syst_lumi: 1.475e-06 + syst_Unfolding_bias: 7.10800000e-07 + syst_cleaning: 4.24698858e-07 + syst_lumi: 1.47500000e-06 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 4.04512586701576e-07 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 8.322638584006878e-07 - syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 3.0555166502573676e-08 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 4.04512587e-07 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 8.32263858e-07 + syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 3.05551665e-08 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 1.8157954179917956e-06 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 6.785475720242466e-07 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.381640621688578e-06 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 1.81579542e-06 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 6.78547572e-07 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.38164062e-06 - stat: 65.18 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 229.93613787310602 - syst_JER_NP1: 35.6600655495752 - syst_JER_NP2: 9.138523882444035 - syst_JER_NP3: 49.480643922649186 - syst_JER_NP4: 5.019012751527934 - syst_JER_NP5: 15.655344135470163 - syst_JER_NP6: 23.095789118365275 - syst_JER_NP7: 6.708573022633055 - syst_JER_NP8: 30.187633229519665 - syst_JES_EtaIntercalibration_Modelling: 252.5814626511613 - syst_JES_EtaIntercalibration_NonClosure: 7.20359930867896e-40 - syst_JES_EtaIntercalibration_Stat0: 0.00938684935161953 + syst_JER_NP0: 2.29936138e+02 + syst_JER_NP1: 3.56600655e+01 + syst_JER_NP2: 9.13852388e+00 + syst_JER_NP3: 4.94806439e+01 + syst_JER_NP4: 5.01901275e+00 + syst_JER_NP5: 1.56553441e+01 + syst_JER_NP6: 2.30957891e+01 + syst_JER_NP7: 6.70857302e+00 + syst_JER_NP8: 3.01876332e+01 + syst_JES_EtaIntercalibration_Modelling: 2.52581463e+02 + syst_JES_EtaIntercalibration_NonClosure: 7.20359931e-40 + syst_JES_EtaIntercalibration_Stat0: 9.38684935e-03 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 0.1639170832996671 - syst_JES_EtaIntercalibration_Stat101: 5.325654701536704 - syst_JES_EtaIntercalibration_Stat102: 20.120367789878994 - syst_JES_EtaIntercalibration_Stat103: 17.623214803207727 - syst_JES_EtaIntercalibration_Stat104: 2.762118163656291 - syst_JES_EtaIntercalibration_Stat105: 0.05254203745573634 - syst_JES_EtaIntercalibration_Stat106: 0.00938684935161953 - syst_JES_EtaIntercalibration_Stat107: 0.00938684935161953 - syst_JES_EtaIntercalibration_Stat108: 0.00938684935161953 - syst_JES_EtaIntercalibration_Stat109: 0.00938684935161953 + syst_JES_EtaIntercalibration_Stat100: 1.63917083e-01 + syst_JES_EtaIntercalibration_Stat101: 5.32565470e+00 + syst_JES_EtaIntercalibration_Stat102: 2.01203678e+01 + syst_JES_EtaIntercalibration_Stat103: 1.76232148e+01 + syst_JES_EtaIntercalibration_Stat104: 2.76211816e+00 + syst_JES_EtaIntercalibration_Stat105: 5.25420375e-02 + syst_JES_EtaIntercalibration_Stat106: 9.38684935e-03 + syst_JES_EtaIntercalibration_Stat107: 9.38684935e-03 + syst_JES_EtaIntercalibration_Stat108: 9.38684935e-03 + syst_JES_EtaIntercalibration_Stat109: 9.38684935e-03 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 0.020233702257328904 - syst_JES_EtaIntercalibration_Stat111: 0.6243860606027332 - syst_JES_EtaIntercalibration_Stat112: 4.459474520613387 - syst_JES_EtaIntercalibration_Stat113: 4.440708811665092 - syst_JES_EtaIntercalibration_Stat114: 1.3237045317970322 - syst_JES_EtaIntercalibration_Stat115: 0.2979680310033276 - syst_JES_EtaIntercalibration_Stat116: 0.009431394869662706 - syst_JES_EtaIntercalibration_Stat117: 0.00938684935161953 - syst_JES_EtaIntercalibration_Stat118: 0.00938684935161953 - syst_JES_EtaIntercalibration_Stat119: 0.00938684935161953 + syst_JES_EtaIntercalibration_Stat110: 2.02337023e-02 + syst_JES_EtaIntercalibration_Stat111: 6.24386061e-01 + syst_JES_EtaIntercalibration_Stat112: 4.45947452e+00 + syst_JES_EtaIntercalibration_Stat113: 4.44070881e+00 + syst_JES_EtaIntercalibration_Stat114: 1.32370453e+00 + syst_JES_EtaIntercalibration_Stat115: 2.97968031e-01 + syst_JES_EtaIntercalibration_Stat116: 9.43139487e-03 + syst_JES_EtaIntercalibration_Stat117: 9.38684935e-03 + syst_JES_EtaIntercalibration_Stat118: 9.38684935e-03 + syst_JES_EtaIntercalibration_Stat119: 9.38684935e-03 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 0.05399668392595975 - syst_JES_EtaIntercalibration_Stat121: 1.9220198542158715 - syst_JES_EtaIntercalibration_Stat122: 3.872004487342441 - syst_JES_EtaIntercalibration_Stat123: 3.185823303323648 - syst_JES_EtaIntercalibration_Stat124: 0.27747951275724847 - syst_JES_EtaIntercalibration_Stat125: 0.0018273136019851654 - syst_JES_EtaIntercalibration_Stat126: 0.00938684935161953 - syst_JES_EtaIntercalibration_Stat127: 0.00938684935161953 - syst_JES_EtaIntercalibration_Stat128: 0.00938684935161953 - syst_JES_EtaIntercalibration_Stat129: 0.09931404226734504 + syst_JES_EtaIntercalibration_Stat120: 5.39966839e-02 + syst_JES_EtaIntercalibration_Stat121: 1.92201985e+00 + syst_JES_EtaIntercalibration_Stat122: 3.87200449e+00 + syst_JES_EtaIntercalibration_Stat123: 3.18582330e+00 + syst_JES_EtaIntercalibration_Stat124: 2.77479513e-01 + syst_JES_EtaIntercalibration_Stat125: 1.82731360e-03 + syst_JES_EtaIntercalibration_Stat126: 9.38684935e-03 + syst_JES_EtaIntercalibration_Stat127: 9.38684935e-03 + syst_JES_EtaIntercalibration_Stat128: 9.38684935e-03 + syst_JES_EtaIntercalibration_Stat129: 9.93140423e-02 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 2.6831060359218006 - syst_JES_EtaIntercalibration_Stat131: 7.243124256838343 - syst_JES_EtaIntercalibration_Stat132: 11.613345512814126 - syst_JES_EtaIntercalibration_Stat133: 2.8737913546393727 - syst_JES_EtaIntercalibration_Stat134: 0.17050527117951517 - syst_JES_EtaIntercalibration_Stat135: 0.00013120284867334245 + syst_JES_EtaIntercalibration_Stat130: 2.68310604e+00 + syst_JES_EtaIntercalibration_Stat131: 7.24312426e+00 + syst_JES_EtaIntercalibration_Stat132: 1.16133455e+01 + syst_JES_EtaIntercalibration_Stat133: 2.87379135e+00 + syst_JES_EtaIntercalibration_Stat134: 1.70505271e-01 + syst_JES_EtaIntercalibration_Stat135: 1.31202849e-04 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 syst_JES_EtaIntercalibration_Stat138: 0.0 - syst_JES_EtaIntercalibration_Stat139: 0.030929106788751593 - syst_JES_EtaIntercalibration_Stat14: 0.04250540671491099 - syst_JES_EtaIntercalibration_Stat140: 3.1904815859051747 - syst_JES_EtaIntercalibration_Stat141: 10.941543618246925 - syst_JES_EtaIntercalibration_Stat142: 6.076053879780856 - syst_JES_EtaIntercalibration_Stat143: 1.5511923438116886 - syst_JES_EtaIntercalibration_Stat144: 0.024292142944642756 + syst_JES_EtaIntercalibration_Stat139: 3.09291068e-02 + syst_JES_EtaIntercalibration_Stat14: 4.25054067e-02 + syst_JES_EtaIntercalibration_Stat140: 3.19048159e+00 + syst_JES_EtaIntercalibration_Stat141: 1.09415436e+01 + syst_JES_EtaIntercalibration_Stat142: 6.07605388e+00 + syst_JES_EtaIntercalibration_Stat143: 1.55119234e+00 + syst_JES_EtaIntercalibration_Stat144: 2.42921429e-02 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 5.4783315738649734e-08 - syst_JES_EtaIntercalibration_Stat148: 0.1105950210226482 - syst_JES_EtaIntercalibration_Stat149: 0.44939671505252465 - syst_JES_EtaIntercalibration_Stat15: 0.07581143185562451 - syst_JES_EtaIntercalibration_Stat150: 0.5865619234147406 - syst_JES_EtaIntercalibration_Stat151: 0.2654832574758717 - syst_JES_EtaIntercalibration_Stat152: 0.027132952290526736 + syst_JES_EtaIntercalibration_Stat147: 5.47833157e-08 + syst_JES_EtaIntercalibration_Stat148: 1.10595021e-01 + syst_JES_EtaIntercalibration_Stat149: 4.49396715e-01 + syst_JES_EtaIntercalibration_Stat15: 7.58114319e-02 + syst_JES_EtaIntercalibration_Stat150: 5.86561923e-01 + syst_JES_EtaIntercalibration_Stat151: 2.65483257e-01 + syst_JES_EtaIntercalibration_Stat152: 2.71329523e-02 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 syst_JES_EtaIntercalibration_Stat156: 0.0 - syst_JES_EtaIntercalibration_Stat157: 1.0536931088335725e-05 - syst_JES_EtaIntercalibration_Stat158: 0.21834071425183163 - syst_JES_EtaIntercalibration_Stat159: 0.7713437025736323 - syst_JES_EtaIntercalibration_Stat16: 0.10644452123054526 - syst_JES_EtaIntercalibration_Stat160: 0.441740557341071 - syst_JES_EtaIntercalibration_Stat161: 0.06988865483753426 - syst_JES_EtaIntercalibration_Stat162: 0.0004183964746505401 + syst_JES_EtaIntercalibration_Stat157: 1.05369311e-05 + syst_JES_EtaIntercalibration_Stat158: 2.18340714e-01 + syst_JES_EtaIntercalibration_Stat159: 7.71343703e-01 + syst_JES_EtaIntercalibration_Stat16: 1.06444521e-01 + syst_JES_EtaIntercalibration_Stat160: 4.41740557e-01 + syst_JES_EtaIntercalibration_Stat161: 6.98886548e-02 + syst_JES_EtaIntercalibration_Stat162: 4.18396475e-04 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 5.261104327963915e-12 - syst_JES_EtaIntercalibration_Stat166: 0.0002461007110920243 - syst_JES_EtaIntercalibration_Stat167: 0.01055551362120764 - syst_JES_EtaIntercalibration_Stat168: 0.04800449048526606 - syst_JES_EtaIntercalibration_Stat169: 0.004081800338086124 - syst_JES_EtaIntercalibration_Stat17: 0.0073386992716693335 - syst_JES_EtaIntercalibration_Stat170: 0.0007910276038167063 + syst_JES_EtaIntercalibration_Stat165: 5.26110433e-12 + syst_JES_EtaIntercalibration_Stat166: 2.46100711e-04 + syst_JES_EtaIntercalibration_Stat167: 1.05555136e-02 + syst_JES_EtaIntercalibration_Stat168: 4.80044905e-02 + syst_JES_EtaIntercalibration_Stat169: 4.08180034e-03 + syst_JES_EtaIntercalibration_Stat17: 7.33869927e-03 + syst_JES_EtaIntercalibration_Stat170: 7.91027604e-04 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 - syst_JES_EtaIntercalibration_Stat175: 1.1842031371348413e-07 - syst_JES_EtaIntercalibration_Stat176: 0.004183811095161922 - syst_JES_EtaIntercalibration_Stat177: 0.016330055113195425 - syst_JES_EtaIntercalibration_Stat178: 0.011707292342809246 - syst_JES_EtaIntercalibration_Stat179: 0.0011566634125794765 + syst_JES_EtaIntercalibration_Stat175: 1.18420314e-07 + syst_JES_EtaIntercalibration_Stat176: 4.18381110e-03 + syst_JES_EtaIntercalibration_Stat177: 1.63300551e-02 + syst_JES_EtaIntercalibration_Stat178: 1.17072923e-02 + syst_JES_EtaIntercalibration_Stat179: 1.15666341e-03 syst_JES_EtaIntercalibration_Stat18: 0.0 - syst_JES_EtaIntercalibration_Stat180: 4.505823629902529e-08 + syst_JES_EtaIntercalibration_Stat180: 4.50582363e-08 syst_JES_EtaIntercalibration_Stat181: 0.0 - syst_JES_EtaIntercalibration_Stat182: 4.476485312046735e-12 - syst_JES_EtaIntercalibration_Stat183: 1.222114045414748e-07 - syst_JES_EtaIntercalibration_Stat184: 0.0003414506125342287 - syst_JES_EtaIntercalibration_Stat185: 0.0007866914563537601 - syst_JES_EtaIntercalibration_Stat186: 2.6929947549150555e-05 - syst_JES_EtaIntercalibration_Stat187: 1.0765535929400873e-16 + syst_JES_EtaIntercalibration_Stat182: 4.47648531e-12 + syst_JES_EtaIntercalibration_Stat183: 1.22211405e-07 + syst_JES_EtaIntercalibration_Stat184: 3.41450613e-04 + syst_JES_EtaIntercalibration_Stat185: 7.86691456e-04 + syst_JES_EtaIntercalibration_Stat186: 2.69299475e-05 + syst_JES_EtaIntercalibration_Stat187: 1.07655359e-16 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 - syst_JES_EtaIntercalibration_Stat192: 1.346669502884802e-11 - syst_JES_EtaIntercalibration_Stat193: 0.00033835085547401824 - syst_JES_EtaIntercalibration_Stat194: 0.0012988885046454142 - syst_JES_EtaIntercalibration_Stat195: 0.0008861635402113992 - syst_JES_EtaIntercalibration_Stat196: 1.857624491240539e-05 - syst_JES_EtaIntercalibration_Stat197: 3.4866297959529274e-08 - syst_JES_EtaIntercalibration_Stat198: 2.1821747218188253e-08 - syst_JES_EtaIntercalibration_Stat199: 4.133195222827008e-08 + syst_JES_EtaIntercalibration_Stat192: 1.34666950e-11 + syst_JES_EtaIntercalibration_Stat193: 3.38350855e-04 + syst_JES_EtaIntercalibration_Stat194: 1.29888850e-03 + syst_JES_EtaIntercalibration_Stat195: 8.86163540e-04 + syst_JES_EtaIntercalibration_Stat196: 1.85762449e-05 + syst_JES_EtaIntercalibration_Stat197: 3.48662980e-08 + syst_JES_EtaIntercalibration_Stat198: 2.18217472e-08 + syst_JES_EtaIntercalibration_Stat199: 4.13319522e-08 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 4.6864267838087476e-08 - syst_JES_EtaIntercalibration_Stat201: 3.0733309963493794e-08 - syst_JES_EtaIntercalibration_Stat202: 3.0284908369798246e-29 + syst_JES_EtaIntercalibration_Stat200: 4.68642678e-08 + syst_JES_EtaIntercalibration_Stat201: 3.07333100e-08 + syst_JES_EtaIntercalibration_Stat202: 3.02849084e-29 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 - syst_JES_EtaIntercalibration_Stat207: 1.3553297569240869e-11 - syst_JES_EtaIntercalibration_Stat208: 6.764524430750325e-12 - syst_JES_EtaIntercalibration_Stat209: 4.636710199052772e-08 + syst_JES_EtaIntercalibration_Stat207: 1.35532976e-11 + syst_JES_EtaIntercalibration_Stat208: 6.76452443e-12 + syst_JES_EtaIntercalibration_Stat209: 4.63671020e-08 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 1.9929245324585174e-08 - syst_JES_EtaIntercalibration_Stat211: 4.262577037427007e-12 - syst_JES_EtaIntercalibration_Stat212: 8.137509493082019e-23 - syst_JES_EtaIntercalibration_Stat213: 1.4186880233159087e-22 - syst_JES_EtaIntercalibration_Stat214: 7.02779606386688e-23 - syst_JES_EtaIntercalibration_Stat215: 4.012295695733304e-39 + syst_JES_EtaIntercalibration_Stat210: 1.99292453e-08 + syst_JES_EtaIntercalibration_Stat211: 4.26257704e-12 + syst_JES_EtaIntercalibration_Stat212: 8.13750949e-23 + syst_JES_EtaIntercalibration_Stat213: 1.41868802e-22 + syst_JES_EtaIntercalibration_Stat214: 7.02779606e-23 + syst_JES_EtaIntercalibration_Stat215: 4.01229570e-39 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 syst_JES_EtaIntercalibration_Stat219: 0.0 - syst_JES_EtaIntercalibration_Stat22: 0.00938684935161953 + syst_JES_EtaIntercalibration_Stat22: 9.38684935e-03 syst_JES_EtaIntercalibration_Stat220: 0.0 - syst_JES_EtaIntercalibration_Stat221: 5.499174756270254e-23 - syst_JES_EtaIntercalibration_Stat222: 5.4897314071074036e-17 - syst_JES_EtaIntercalibration_Stat223: 1.156540145217623e-22 + syst_JES_EtaIntercalibration_Stat221: 5.49917476e-23 + syst_JES_EtaIntercalibration_Stat222: 5.48973141e-17 + syst_JES_EtaIntercalibration_Stat223: 1.15654015e-22 syst_JES_EtaIntercalibration_Stat224: 0.0 syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 syst_JES_EtaIntercalibration_Stat227: 0.0 syst_JES_EtaIntercalibration_Stat228: 0.0 syst_JES_EtaIntercalibration_Stat229: 0.0 - syst_JES_EtaIntercalibration_Stat23: 0.00938684935161953 + syst_JES_EtaIntercalibration_Stat23: 9.38684935e-03 syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 syst_JES_EtaIntercalibration_Stat232: 0.0 @@ -34378,117 +34378,117 @@ bins: syst_JES_EtaIntercalibration_Stat243: 0.0 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 - syst_JES_EtaIntercalibration_Stat25: 0.0027574248856496526 - syst_JES_EtaIntercalibration_Stat26: 0.062241101372003366 - syst_JES_EtaIntercalibration_Stat27: 0.5408476194826044 - syst_JES_EtaIntercalibration_Stat28: 1.0063934916323733 - syst_JES_EtaIntercalibration_Stat29: 0.5085035176869478 + syst_JES_EtaIntercalibration_Stat25: 2.75742489e-03 + syst_JES_EtaIntercalibration_Stat26: 6.22411014e-02 + syst_JES_EtaIntercalibration_Stat27: 5.40847619e-01 + syst_JES_EtaIntercalibration_Stat28: 1.00639349e+00 + syst_JES_EtaIntercalibration_Stat29: 5.08503518e-01 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 0.009413433061322527 + syst_JES_EtaIntercalibration_Stat30: 9.41343306e-03 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 0.01746174220259823 - syst_JES_EtaIntercalibration_Stat36: 0.07345489704573821 - syst_JES_EtaIntercalibration_Stat37: 1.056860222546009 - syst_JES_EtaIntercalibration_Stat38: 0.966066100222961 - syst_JES_EtaIntercalibration_Stat39: 0.15602984607760145 - syst_JES_EtaIntercalibration_Stat4: 0.0037802008875190748 - syst_JES_EtaIntercalibration_Stat40: 0.030423472434947328 + syst_JES_EtaIntercalibration_Stat35: 1.74617422e-02 + syst_JES_EtaIntercalibration_Stat36: 7.34548970e-02 + syst_JES_EtaIntercalibration_Stat37: 1.05686022e+00 + syst_JES_EtaIntercalibration_Stat38: 9.66066100e-01 + syst_JES_EtaIntercalibration_Stat39: 1.56029846e-01 + syst_JES_EtaIntercalibration_Stat4: 3.78020089e-03 + syst_JES_EtaIntercalibration_Stat40: 3.04234724e-02 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 - syst_JES_EtaIntercalibration_Stat44: 0.00938684935161953 + syst_JES_EtaIntercalibration_Stat44: 9.38684935e-03 syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 - syst_JES_EtaIntercalibration_Stat47: 0.0027582909110534367 - syst_JES_EtaIntercalibration_Stat48: 0.4437991550239816 - syst_JES_EtaIntercalibration_Stat49: 3.23821104160924 - syst_JES_EtaIntercalibration_Stat5: 0.0576225170831681 - syst_JES_EtaIntercalibration_Stat50: 3.865450038481936 - syst_JES_EtaIntercalibration_Stat51: 1.3872386627758038 - syst_JES_EtaIntercalibration_Stat52: 0.218335381237215 + syst_JES_EtaIntercalibration_Stat47: 2.75829091e-03 + syst_JES_EtaIntercalibration_Stat48: 4.43799155e-01 + syst_JES_EtaIntercalibration_Stat49: 3.23821104e+00 + syst_JES_EtaIntercalibration_Stat5: 5.76225171e-02 + syst_JES_EtaIntercalibration_Stat50: 3.86545004e+00 + syst_JES_EtaIntercalibration_Stat51: 1.38723866e+00 + syst_JES_EtaIntercalibration_Stat52: 2.18335381e-01 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 syst_JES_EtaIntercalibration_Stat56: 0.0 - syst_JES_EtaIntercalibration_Stat57: 0.021308486572255664 - syst_JES_EtaIntercalibration_Stat58: 0.8381642485217322 - syst_JES_EtaIntercalibration_Stat59: 3.153446685770983 - syst_JES_EtaIntercalibration_Stat6: 0.6033019393305478 - syst_JES_EtaIntercalibration_Stat60: 2.9771535062875074 - syst_JES_EtaIntercalibration_Stat61: 0.2628223925010957 - syst_JES_EtaIntercalibration_Stat62: 0.007485923590312688 + syst_JES_EtaIntercalibration_Stat57: 2.13084866e-02 + syst_JES_EtaIntercalibration_Stat58: 8.38164249e-01 + syst_JES_EtaIntercalibration_Stat59: 3.15344669e+00 + syst_JES_EtaIntercalibration_Stat6: 6.03301939e-01 + syst_JES_EtaIntercalibration_Stat60: 2.97715351e+00 + syst_JES_EtaIntercalibration_Stat61: 2.62822393e-01 + syst_JES_EtaIntercalibration_Stat62: 7.48592359e-03 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 - syst_JES_EtaIntercalibration_Stat69: 0.007726541399617297 - syst_JES_EtaIntercalibration_Stat7: 0.056420821511211625 - syst_JES_EtaIntercalibration_Stat70: 3.36238022091494 - syst_JES_EtaIntercalibration_Stat71: 13.181635217225516 - syst_JES_EtaIntercalibration_Stat72: 18.77718296230827 - syst_JES_EtaIntercalibration_Stat73: 6.3592521736050065 - syst_JES_EtaIntercalibration_Stat74: 0.3192090537563119 + syst_JES_EtaIntercalibration_Stat69: 7.72654140e-03 + syst_JES_EtaIntercalibration_Stat7: 5.64208215e-02 + syst_JES_EtaIntercalibration_Stat70: 3.36238022e+00 + syst_JES_EtaIntercalibration_Stat71: 1.31816352e+01 + syst_JES_EtaIntercalibration_Stat72: 1.87771830e+01 + syst_JES_EtaIntercalibration_Stat73: 6.35925217e+00 + syst_JES_EtaIntercalibration_Stat74: 3.19209054e-01 syst_JES_EtaIntercalibration_Stat75: 0.0 syst_JES_EtaIntercalibration_Stat76: 0.0 syst_JES_EtaIntercalibration_Stat77: 0.0 syst_JES_EtaIntercalibration_Stat78: 0.0 - syst_JES_EtaIntercalibration_Stat79: 0.16574406414710602 + syst_JES_EtaIntercalibration_Stat79: 1.65744064e-01 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 5.733820781119688 - syst_JES_EtaIntercalibration_Stat81: 18.45078047129714 - syst_JES_EtaIntercalibration_Stat82: 15.622966267645849 - syst_JES_EtaIntercalibration_Stat83: 3.5517906399448713 - syst_JES_EtaIntercalibration_Stat84: 0.03388813472293806 - syst_JES_EtaIntercalibration_Stat85: 0.00938684935161953 - syst_JES_EtaIntercalibration_Stat86: 0.00938684935161953 - syst_JES_EtaIntercalibration_Stat87: 0.00938684935161953 - syst_JES_EtaIntercalibration_Stat88: 0.00938684935161953 - syst_JES_EtaIntercalibration_Stat89: 0.00938684935161953 + syst_JES_EtaIntercalibration_Stat80: 5.73382078e+00 + syst_JES_EtaIntercalibration_Stat81: 1.84507805e+01 + syst_JES_EtaIntercalibration_Stat82: 1.56229663e+01 + syst_JES_EtaIntercalibration_Stat83: 3.55179064e+00 + syst_JES_EtaIntercalibration_Stat84: 3.38881347e-02 + syst_JES_EtaIntercalibration_Stat85: 9.38684935e-03 + syst_JES_EtaIntercalibration_Stat86: 9.38684935e-03 + syst_JES_EtaIntercalibration_Stat87: 9.38684935e-03 + syst_JES_EtaIntercalibration_Stat88: 9.38684935e-03 + syst_JES_EtaIntercalibration_Stat89: 9.38684935e-03 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 3.6527690865971807 - syst_JES_EtaIntercalibration_Stat92: 15.005050216510439 - syst_JES_EtaIntercalibration_Stat93: 18.69135361604397 - syst_JES_EtaIntercalibration_Stat94: 6.48815050688561 - syst_JES_EtaIntercalibration_Stat95: 0.3939497778905326 - syst_JES_EtaIntercalibration_Stat96: 0.009431394869662706 - syst_JES_EtaIntercalibration_Stat97: 0.00938684935161953 - syst_JES_EtaIntercalibration_Stat98: 0.00938684935161953 - syst_JES_EtaIntercalibration_Stat99: 0.00938684935161953 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.004939808903186438 - syst_JES_Flavour_Comp: 21.190834693329094 - syst_JES_Gjet_Generator: 183.14001446980396 - syst_JES_Gjet_OOC: 117.80819036892129 - syst_JES_Gjet_Purity: 48.51243209735005 + syst_JES_EtaIntercalibration_Stat91: 3.65276909e+00 + syst_JES_EtaIntercalibration_Stat92: 1.50050502e+01 + syst_JES_EtaIntercalibration_Stat93: 1.86913536e+01 + syst_JES_EtaIntercalibration_Stat94: 6.48815051e+00 + syst_JES_EtaIntercalibration_Stat95: 3.93949778e-01 + syst_JES_EtaIntercalibration_Stat96: 9.43139487e-03 + syst_JES_EtaIntercalibration_Stat97: 9.38684935e-03 + syst_JES_EtaIntercalibration_Stat98: 9.38684935e-03 + syst_JES_EtaIntercalibration_Stat99: 9.38684935e-03 + syst_JES_EtaIntercalibration_TotalStat_MJB: 4.93980890e-03 + syst_JES_Flavour_Comp: 2.11908347e+01 + syst_JES_Gjet_Generator: 1.83140014e+02 + syst_JES_Gjet_OOC: 1.17808190e+02 + syst_JES_Gjet_Purity: 4.85124321e+01 syst_JES_Gjet_Stat1: 0.0 - syst_JES_Gjet_Stat10: 1.3918540036584297 - syst_JES_Gjet_Stat11: 0.20537473718790245 - syst_JES_Gjet_Stat12: 0.020457044630151248 - syst_JES_Gjet_Stat13: 3.8705693056706794e-05 - syst_JES_Gjet_Stat14: 2.3543498040860454e-28 - syst_JES_Gjet_Stat15: 7.03732243115453e-17 - syst_JES_Gjet_Stat2: 1.4575207545692104 + syst_JES_Gjet_Stat10: 1.39185400e+00 + syst_JES_Gjet_Stat11: 2.05374737e-01 + syst_JES_Gjet_Stat12: 2.04570446e-02 + syst_JES_Gjet_Stat13: 3.87056931e-05 + syst_JES_Gjet_Stat14: 2.35434980e-28 + syst_JES_Gjet_Stat15: 7.03732243e-17 + syst_JES_Gjet_Stat2: 1.45752075e+00 syst_JES_Gjet_Stat3: 0.0 - syst_JES_Gjet_Stat4: 1.3968989763042996 - syst_JES_Gjet_Stat5: 5.44114206761779 - syst_JES_Gjet_Stat6: 14.227234473009856 - syst_JES_Gjet_Stat7: 20.292358167546716 - syst_JES_Gjet_Stat8: 5.366331707973334 - syst_JES_Gjet_Stat9: 0.28189817310511256 - syst_JES_Gjet_Veto: 33.91599143471999 - syst_JES_Gjet_dPhi: 22.21409631292707 - syst_JES_LArESZee: 109.67520394669891 - syst_JES_LArEsmear: 11.249661417127184 - syst_JES_LAr_JVT: 20.578753606572 - syst_JES_MJB_Alpha: 4.4929397948336674e-08 - syst_JES_MJB_Asym: 1.7606296458937638e-37 - syst_JES_MJB_Beta: 1.2220484472802214e-28 - syst_JES_MJB_Stat1: 0.0004360437908054649 + syst_JES_Gjet_Stat4: 1.39689898e+00 + syst_JES_Gjet_Stat5: 5.44114207e+00 + syst_JES_Gjet_Stat6: 1.42272345e+01 + syst_JES_Gjet_Stat7: 2.02923582e+01 + syst_JES_Gjet_Stat8: 5.36633171e+00 + syst_JES_Gjet_Stat9: 2.81898173e-01 + syst_JES_Gjet_Veto: 3.39159914e+01 + syst_JES_Gjet_dPhi: 2.22140963e+01 + syst_JES_LArESZee: 1.09675204e+02 + syst_JES_LArEsmear: 1.12496614e+01 + syst_JES_LAr_JVT: 2.05787536e+01 + syst_JES_MJB_Alpha: 4.49293979e-08 + syst_JES_MJB_Asym: 1.76062965e-37 + syst_JES_MJB_Beta: 1.22204845e-28 + syst_JES_MJB_Stat1: 4.36043791e-04 syst_JES_MJB_Stat10: 0.0 syst_JES_MJB_Stat11: 0.0 syst_JES_MJB_Stat12: 0.0 @@ -34496,219 +34496,219 @@ bins: syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 6.008484251456436e-08 - syst_JES_MJB_Stat3: 2.5989422367571005e-15 - syst_JES_MJB_Stat4: 8.019395239043901e-29 + syst_JES_MJB_Stat2: 6.00848425e-08 + syst_JES_MJB_Stat3: 2.59894224e-15 + syst_JES_MJB_Stat4: 8.01939524e-29 syst_JES_MJB_Stat5: 0.0 syst_JES_MJB_Stat6: 0.0 syst_JES_MJB_Stat7: 0.0 syst_JES_MJB_Stat8: 0.0 syst_JES_MJB_Stat9: 0.0 - syst_JES_MJB_Threshold: 6.547152052610356e-10 - syst_JES_Pileup_MuOffset: 6.1505124176770834e-37 - syst_JES_Pileup_NPVOffset: 14.288209081266974 - syst_JES_Pileup_Pt_term: 48.246614005544465 - syst_JES_PunchThrough_MC15: 0.306313185318556 + syst_JES_MJB_Threshold: 6.54715205e-10 + syst_JES_Pileup_MuOffset: 6.15051242e-37 + syst_JES_Pileup_NPVOffset: 1.42882091e+01 + syst_JES_Pileup_Pt_term: 4.82466140e+01 + syst_JES_PunchThrough_MC15: 3.06313185e-01 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 176.40004846938112 - syst_JES_Zjet_MuScale: 12.329006569874151 - syst_JES_Zjet_MuSmearID: 2.7109347244631326 - syst_JES_Zjet_MuSmearMS: 3.986305016867124 - syst_JES_Zjet_OOC: 122.3916935774238 - syst_JES_Zjet_Stat1: 3.5744502562911684 - syst_JES_Zjet_Stat10: 3.876941674825661 - syst_JES_Zjet_Stat11: 3.8337034715141964 - syst_JES_Zjet_Stat12: 0.7863796204760141 - syst_JES_Zjet_Stat13: 0.0008295292419009411 - syst_JES_Zjet_Stat2: 0.6127129731774904 - syst_JES_Zjet_Stat3: 0.3354462799359772 - syst_JES_Zjet_Stat4: 0.342729553584463 - syst_JES_Zjet_Stat5: 0.023642493523315176 - syst_JES_Zjet_Stat6: 5.845490740733407 - syst_JES_Zjet_Stat7: 9.555255451844289 - syst_JES_Zjet_Stat8: 16.482665894812037 - syst_JES_Zjet_Stat9: 19.723566487833786 - syst_JES_Zjet_Veto: 18.140542990770697 - syst_JES_Zjet_dPhi: 28.475527650949683 - syst_PRW: 6.341e-09 + syst_JES_Zjet_MC: 1.76400048e+02 + syst_JES_Zjet_MuScale: 1.23290066e+01 + syst_JES_Zjet_MuSmearID: 2.71093472e+00 + syst_JES_Zjet_MuSmearMS: 3.98630502e+00 + syst_JES_Zjet_OOC: 1.22391694e+02 + syst_JES_Zjet_Stat1: 3.57445026e+00 + syst_JES_Zjet_Stat10: 3.87694167e+00 + syst_JES_Zjet_Stat11: 3.83370347e+00 + syst_JES_Zjet_Stat12: 7.86379620e-01 + syst_JES_Zjet_Stat13: 8.29529242e-04 + syst_JES_Zjet_Stat2: 6.12712973e-01 + syst_JES_Zjet_Stat3: 3.35446280e-01 + syst_JES_Zjet_Stat4: 3.42729554e-01 + syst_JES_Zjet_Stat5: 2.36424935e-02 + syst_JES_Zjet_Stat6: 5.84549074e+00 + syst_JES_Zjet_Stat7: 9.55525545e+00 + syst_JES_Zjet_Stat8: 1.64826659e+01 + syst_JES_Zjet_Stat9: 1.97235665e+01 + syst_JES_Zjet_Veto: 1.81405430e+01 + syst_JES_Zjet_dPhi: 2.84755277e+01 + syst_PRW: 6.34100000e-09 syst_Unfolding_bias: 4.324 - syst_cleaning: 82.76085168725609 + syst_cleaning: 8.27608517e+01 syst_lumi: 173.13 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 51.45024931669428 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 207.23742036611054 - syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 2.440459587864548e-37 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 5.14502493e+01 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 2.07237420e+02 + syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 2.44045959e-37 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 288.55433786377216 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 6.034465013569968e-37 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 93.02510492334852 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 2.88554338e+02 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 6.03446501e-37 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 9.30251049e+01 - stat: 38.84 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 99.35424224460674 - syst_JER_NP1: 15.050397835273326 - syst_JER_NP2: 4.358149005024955 - syst_JER_NP3: 21.75335146592359 - syst_JER_NP4: 2.4000066666574074 - syst_JER_NP5: 6.325709821830275 - syst_JER_NP6: 9.641006210453346 - syst_JER_NP7: 3.207771305751082 - syst_JER_NP8: 11.952700197026612 - syst_JES_EtaIntercalibration_Modelling: 109.58819642073684 - syst_JES_EtaIntercalibration_NonClosure: 6.869313502818167e-28 - syst_JES_EtaIntercalibration_Stat0: 0.003232006806923525 + syst_JER_NP0: 9.93542422e+01 + syst_JER_NP1: 1.50503978e+01 + syst_JER_NP2: 4.35814901e+00 + syst_JER_NP3: 2.17533515e+01 + syst_JER_NP4: 2.40000667e+00 + syst_JER_NP5: 6.32570982e+00 + syst_JER_NP6: 9.64100621e+00 + syst_JER_NP7: 3.20777131e+00 + syst_JER_NP8: 1.19527002e+01 + syst_JES_EtaIntercalibration_Modelling: 1.09588196e+02 + syst_JES_EtaIntercalibration_NonClosure: 6.86931350e-28 + syst_JES_EtaIntercalibration_Stat0: 3.23200681e-03 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 0.103543487099624 - syst_JES_EtaIntercalibration_Stat101: 2.2638875303336072 - syst_JES_EtaIntercalibration_Stat102: 8.083027403145435 - syst_JES_EtaIntercalibration_Stat103: 6.870363673052541 - syst_JES_EtaIntercalibration_Stat104: 1.143248993001962 - syst_JES_EtaIntercalibration_Stat105: 0.010641500176196963 - syst_JES_EtaIntercalibration_Stat106: 0.003232006806923525 - syst_JES_EtaIntercalibration_Stat107: 0.003232006806923525 - syst_JES_EtaIntercalibration_Stat108: 0.003232006806923525 - syst_JES_EtaIntercalibration_Stat109: 0.003232006806923525 + syst_JES_EtaIntercalibration_Stat100: 1.03543487e-01 + syst_JES_EtaIntercalibration_Stat101: 2.26388753e+00 + syst_JES_EtaIntercalibration_Stat102: 8.08302740e+00 + syst_JES_EtaIntercalibration_Stat103: 6.87036367e+00 + syst_JES_EtaIntercalibration_Stat104: 1.14324899e+00 + syst_JES_EtaIntercalibration_Stat105: 1.06415002e-02 + syst_JES_EtaIntercalibration_Stat106: 3.23200681e-03 + syst_JES_EtaIntercalibration_Stat107: 3.23200681e-03 + syst_JES_EtaIntercalibration_Stat108: 3.23200681e-03 + syst_JES_EtaIntercalibration_Stat109: 3.23200681e-03 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 0.00973139363709022 - syst_JES_EtaIntercalibration_Stat111: 1.198005855578344 - syst_JES_EtaIntercalibration_Stat112: 7.268428630041021 - syst_JES_EtaIntercalibration_Stat113: 8.146977905947702 - syst_JES_EtaIntercalibration_Stat114: 1.7355877246627438 - syst_JES_EtaIntercalibration_Stat115: 0.09734258407808989 - syst_JES_EtaIntercalibration_Stat116: 0.004752991058270571 - syst_JES_EtaIntercalibration_Stat117: 0.003232006806923525 - syst_JES_EtaIntercalibration_Stat118: 0.003232006806923525 - syst_JES_EtaIntercalibration_Stat119: 0.003232006806923525 + syst_JES_EtaIntercalibration_Stat110: 9.73139364e-03 + syst_JES_EtaIntercalibration_Stat111: 1.19800586e+00 + syst_JES_EtaIntercalibration_Stat112: 7.26842863e+00 + syst_JES_EtaIntercalibration_Stat113: 8.14697791e+00 + syst_JES_EtaIntercalibration_Stat114: 1.73558772e+00 + syst_JES_EtaIntercalibration_Stat115: 9.73425841e-02 + syst_JES_EtaIntercalibration_Stat116: 4.75299106e-03 + syst_JES_EtaIntercalibration_Stat117: 3.23200681e-03 + syst_JES_EtaIntercalibration_Stat118: 3.23200681e-03 + syst_JES_EtaIntercalibration_Stat119: 3.23200681e-03 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 0.025946121097381782 - syst_JES_EtaIntercalibration_Stat121: 2.8925540185102854 - syst_JES_EtaIntercalibration_Stat122: 7.172535587224367 - syst_JES_EtaIntercalibration_Stat123: 6.168911147844488 - syst_JES_EtaIntercalibration_Stat124: 0.853545679796928 - syst_JES_EtaIntercalibration_Stat125: 0.009199787864402093 - syst_JES_EtaIntercalibration_Stat126: 0.003232006806923525 - syst_JES_EtaIntercalibration_Stat127: 0.003232006806923525 - syst_JES_EtaIntercalibration_Stat128: 0.003232006806923525 - syst_JES_EtaIntercalibration_Stat129: 0.08693083040555866 + syst_JES_EtaIntercalibration_Stat120: 2.59461211e-02 + syst_JES_EtaIntercalibration_Stat121: 2.89255402e+00 + syst_JES_EtaIntercalibration_Stat122: 7.17253559e+00 + syst_JES_EtaIntercalibration_Stat123: 6.16891115e+00 + syst_JES_EtaIntercalibration_Stat124: 8.53545680e-01 + syst_JES_EtaIntercalibration_Stat125: 9.19978786e-03 + syst_JES_EtaIntercalibration_Stat126: 3.23200681e-03 + syst_JES_EtaIntercalibration_Stat127: 3.23200681e-03 + syst_JES_EtaIntercalibration_Stat128: 3.23200681e-03 + syst_JES_EtaIntercalibration_Stat129: 8.69308304e-02 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 0.5685691925350862 - syst_JES_EtaIntercalibration_Stat131: 1.9812378756726816 - syst_JES_EtaIntercalibration_Stat132: 2.0352402192370316 - syst_JES_EtaIntercalibration_Stat133: 0.5585825878954697 - syst_JES_EtaIntercalibration_Stat134: 0.0587309279681498 - syst_JES_EtaIntercalibration_Stat135: 0.002570363398432214 + syst_JES_EtaIntercalibration_Stat130: 5.68569193e-01 + syst_JES_EtaIntercalibration_Stat131: 1.98123788e+00 + syst_JES_EtaIntercalibration_Stat132: 2.03524022e+00 + syst_JES_EtaIntercalibration_Stat133: 5.58582588e-01 + syst_JES_EtaIntercalibration_Stat134: 5.87309280e-02 + syst_JES_EtaIntercalibration_Stat135: 2.57036340e-03 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 syst_JES_EtaIntercalibration_Stat138: 0.0 - syst_JES_EtaIntercalibration_Stat139: 0.044860922713983495 - syst_JES_EtaIntercalibration_Stat14: 0.015414415939308243 - syst_JES_EtaIntercalibration_Stat140: 0.6215849961992326 - syst_JES_EtaIntercalibration_Stat141: 2.2182765269460885 - syst_JES_EtaIntercalibration_Stat142: 1.757795423250385 - syst_JES_EtaIntercalibration_Stat143: 0.4451347745346346 - syst_JES_EtaIntercalibration_Stat144: 0.0032915571889418844 + syst_JES_EtaIntercalibration_Stat139: 4.48609227e-02 + syst_JES_EtaIntercalibration_Stat14: 1.54144159e-02 + syst_JES_EtaIntercalibration_Stat140: 6.21584996e-01 + syst_JES_EtaIntercalibration_Stat141: 2.21827653e+00 + syst_JES_EtaIntercalibration_Stat142: 1.75779542e+00 + syst_JES_EtaIntercalibration_Stat143: 4.45134775e-01 + syst_JES_EtaIntercalibration_Stat144: 3.29155719e-03 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 1.2939993967154698e-05 - syst_JES_EtaIntercalibration_Stat148: 0.1394222065346837 - syst_JES_EtaIntercalibration_Stat149: 0.6616767847673061 - syst_JES_EtaIntercalibration_Stat15: 0.024762747182007088 - syst_JES_EtaIntercalibration_Stat150: 0.9816842262153345 - syst_JES_EtaIntercalibration_Stat151: 0.4137507311171788 - syst_JES_EtaIntercalibration_Stat152: 0.02528320193329951 + syst_JES_EtaIntercalibration_Stat147: 1.29399940e-05 + syst_JES_EtaIntercalibration_Stat148: 1.39422207e-01 + syst_JES_EtaIntercalibration_Stat149: 6.61676785e-01 + syst_JES_EtaIntercalibration_Stat15: 2.47627472e-02 + syst_JES_EtaIntercalibration_Stat150: 9.81684226e-01 + syst_JES_EtaIntercalibration_Stat151: 4.13750731e-01 + syst_JES_EtaIntercalibration_Stat152: 2.52832019e-02 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 syst_JES_EtaIntercalibration_Stat156: 0.0 - syst_JES_EtaIntercalibration_Stat157: 0.00021226291895924026 - syst_JES_EtaIntercalibration_Stat158: 0.2852293287865047 - syst_JES_EtaIntercalibration_Stat159: 1.0412021453589115 - syst_JES_EtaIntercalibration_Stat16: 0.03360932590814639 - syst_JES_EtaIntercalibration_Stat160: 0.6597764223583622 - syst_JES_EtaIntercalibration_Stat161: 0.12217381184198191 - syst_JES_EtaIntercalibration_Stat162: 0.001984053025375078 + syst_JES_EtaIntercalibration_Stat157: 2.12262919e-04 + syst_JES_EtaIntercalibration_Stat158: 2.85229329e-01 + syst_JES_EtaIntercalibration_Stat159: 1.04120215e+00 + syst_JES_EtaIntercalibration_Stat16: 3.36093259e-02 + syst_JES_EtaIntercalibration_Stat160: 6.59776422e-01 + syst_JES_EtaIntercalibration_Stat161: 1.22173812e-01 + syst_JES_EtaIntercalibration_Stat162: 1.98405303e-03 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 2.633583215591445e-08 - syst_JES_EtaIntercalibration_Stat166: 0.004957575692815996 - syst_JES_EtaIntercalibration_Stat167: 0.0173043137685376 - syst_JES_EtaIntercalibration_Stat168: 0.06379070680749666 - syst_JES_EtaIntercalibration_Stat169: 0.045278402136117835 - syst_JES_EtaIntercalibration_Stat17: 0.0025998082621608845 - syst_JES_EtaIntercalibration_Stat170: 0.007058107040843174 + syst_JES_EtaIntercalibration_Stat165: 2.63358322e-08 + syst_JES_EtaIntercalibration_Stat166: 4.95757569e-03 + syst_JES_EtaIntercalibration_Stat167: 1.73043138e-02 + syst_JES_EtaIntercalibration_Stat168: 6.37907068e-02 + syst_JES_EtaIntercalibration_Stat169: 4.52784021e-02 + syst_JES_EtaIntercalibration_Stat17: 2.59980826e-03 + syst_JES_EtaIntercalibration_Stat170: 7.05810704e-03 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 - syst_JES_EtaIntercalibration_Stat175: 2.8163146131069947e-05 - syst_JES_EtaIntercalibration_Stat176: 0.0051043890447339535 - syst_JES_EtaIntercalibration_Stat177: 0.007203239041396586 - syst_JES_EtaIntercalibration_Stat178: 0.013550291509779412 - syst_JES_EtaIntercalibration_Stat179: 0.0009103196732467118 + syst_JES_EtaIntercalibration_Stat175: 2.81631461e-05 + syst_JES_EtaIntercalibration_Stat176: 5.10438904e-03 + syst_JES_EtaIntercalibration_Stat177: 7.20323904e-03 + syst_JES_EtaIntercalibration_Stat178: 1.35502915e-02 + syst_JES_EtaIntercalibration_Stat179: 9.10319673e-04 syst_JES_EtaIntercalibration_Stat18: 0.0 - syst_JES_EtaIntercalibration_Stat180: 1.0670759837987171e-05 + syst_JES_EtaIntercalibration_Stat180: 1.06707598e-05 syst_JES_EtaIntercalibration_Stat181: 0.0 - syst_JES_EtaIntercalibration_Stat182: 2.241273583307231e-08 - syst_JES_EtaIntercalibration_Stat183: 2.8656634048680595e-05 - syst_JES_EtaIntercalibration_Stat184: 0.0016984829076266857 - syst_JES_EtaIntercalibration_Stat185: 0.0031809135087266993 - syst_JES_EtaIntercalibration_Stat186: 0.00047228811122025925 - syst_JES_EtaIntercalibration_Stat187: 2.029600249498967e-11 + syst_JES_EtaIntercalibration_Stat182: 2.24127358e-08 + syst_JES_EtaIntercalibration_Stat183: 2.86566340e-05 + syst_JES_EtaIntercalibration_Stat184: 1.69848291e-03 + syst_JES_EtaIntercalibration_Stat185: 3.18091351e-03 + syst_JES_EtaIntercalibration_Stat186: 4.72288111e-04 + syst_JES_EtaIntercalibration_Stat187: 2.02960025e-11 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 - syst_JES_EtaIntercalibration_Stat192: 6.653673177275841e-08 - syst_JES_EtaIntercalibration_Stat193: 0.001086022914122902 - syst_JES_EtaIntercalibration_Stat194: 0.003950898220658183 - syst_JES_EtaIntercalibration_Stat195: 0.002837278052993749 - syst_JES_EtaIntercalibration_Stat196: 0.00017675555313635406 - syst_JES_EtaIntercalibration_Stat197: 8.253422627461895e-06 - syst_JES_EtaIntercalibration_Stat198: 5.1244048978076475e-06 - syst_JES_EtaIntercalibration_Stat199: 9.878737166257638e-06 + syst_JES_EtaIntercalibration_Stat192: 6.65367318e-08 + syst_JES_EtaIntercalibration_Stat193: 1.08602291e-03 + syst_JES_EtaIntercalibration_Stat194: 3.95089822e-03 + syst_JES_EtaIntercalibration_Stat195: 2.83727805e-03 + syst_JES_EtaIntercalibration_Stat196: 1.76755553e-04 + syst_JES_EtaIntercalibration_Stat197: 8.25342263e-06 + syst_JES_EtaIntercalibration_Stat198: 5.12440490e-06 + syst_JES_EtaIntercalibration_Stat199: 9.87873717e-06 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 1.1216460348523503e-05 - syst_JES_EtaIntercalibration_Stat201: 7.326664456265211e-06 - syst_JES_EtaIntercalibration_Stat202: 6.607773778913745e-20 + syst_JES_EtaIntercalibration_Stat200: 1.12164603e-05 + syst_JES_EtaIntercalibration_Stat201: 7.32666446e-06 + syst_JES_EtaIntercalibration_Stat202: 6.60777378e-20 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 - syst_JES_EtaIntercalibration_Stat207: 6.680519985037947e-08 - syst_JES_EtaIntercalibration_Stat208: 3.3031100083856896e-08 - syst_JES_EtaIntercalibration_Stat209: 1.1093668318009153e-05 + syst_JES_EtaIntercalibration_Stat207: 6.68051999e-08 + syst_JES_EtaIntercalibration_Stat208: 3.30311001e-08 + syst_JES_EtaIntercalibration_Stat209: 1.10936683e-05 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 4.70861784844555e-06 - syst_JES_EtaIntercalibration_Stat211: 2.107039807416956e-08 - syst_JES_EtaIntercalibration_Stat212: 1.1437318566866974e-15 - syst_JES_EtaIntercalibration_Stat213: 1.993239253075255e-15 - syst_JES_EtaIntercalibration_Stat214: 9.877866593458565e-16 - syst_JES_EtaIntercalibration_Stat215: 3.837358564168847e-27 + syst_JES_EtaIntercalibration_Stat210: 4.70861785e-06 + syst_JES_EtaIntercalibration_Stat211: 2.10703981e-08 + syst_JES_EtaIntercalibration_Stat212: 1.14373186e-15 + syst_JES_EtaIntercalibration_Stat213: 1.99323925e-15 + syst_JES_EtaIntercalibration_Stat214: 9.87786659e-16 + syst_JES_EtaIntercalibration_Stat215: 3.83735856e-27 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 syst_JES_EtaIntercalibration_Stat219: 0.0 - syst_JES_EtaIntercalibration_Stat22: 0.003232006806923525 - syst_JES_EtaIntercalibration_Stat220: 1.6852854357645174e-35 - syst_JES_EtaIntercalibration_Stat221: 7.729744804972543e-16 - syst_JES_EtaIntercalibration_Stat222: 1.0350225926184753e-11 - syst_JES_EtaIntercalibration_Stat223: 1.6258491958050723e-15 - syst_JES_EtaIntercalibration_Stat224: 2.6784652321805484e-36 - syst_JES_EtaIntercalibration_Stat225: 4.398175843460559e-36 + syst_JES_EtaIntercalibration_Stat22: 3.23200681e-03 + syst_JES_EtaIntercalibration_Stat220: 1.68528544e-35 + syst_JES_EtaIntercalibration_Stat221: 7.72974480e-16 + syst_JES_EtaIntercalibration_Stat222: 1.03502259e-11 + syst_JES_EtaIntercalibration_Stat223: 1.62584920e-15 + syst_JES_EtaIntercalibration_Stat224: 2.67846523e-36 + syst_JES_EtaIntercalibration_Stat225: 4.39817584e-36 syst_JES_EtaIntercalibration_Stat226: 0.0 syst_JES_EtaIntercalibration_Stat227: 0.0 syst_JES_EtaIntercalibration_Stat228: 0.0 syst_JES_EtaIntercalibration_Stat229: 0.0 - syst_JES_EtaIntercalibration_Stat23: 0.003232006806923525 + syst_JES_EtaIntercalibration_Stat23: 3.23200681e-03 syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 syst_JES_EtaIntercalibration_Stat232: 0.0 syst_JES_EtaIntercalibration_Stat233: 0.0 - syst_JES_EtaIntercalibration_Stat234: 5.717719541040816e-36 - syst_JES_EtaIntercalibration_Stat235: 5.4140517867859376e-36 + syst_JES_EtaIntercalibration_Stat234: 5.71771954e-36 + syst_JES_EtaIntercalibration_Stat235: 5.41405179e-36 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 @@ -34720,117 +34720,117 @@ bins: syst_JES_EtaIntercalibration_Stat243: 0.0 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 - syst_JES_EtaIntercalibration_Stat25: 0.001772754001546746 - syst_JES_EtaIntercalibration_Stat26: 0.025797213027767166 - syst_JES_EtaIntercalibration_Stat27: 0.09456683594553643 - syst_JES_EtaIntercalibration_Stat28: 0.20333537487363088 - syst_JES_EtaIntercalibration_Stat29: 0.06927002454164427 + syst_JES_EtaIntercalibration_Stat25: 1.77275400e-03 + syst_JES_EtaIntercalibration_Stat26: 2.57972130e-02 + syst_JES_EtaIntercalibration_Stat27: 9.45668359e-02 + syst_JES_EtaIntercalibration_Stat28: 2.03335375e-01 + syst_JES_EtaIntercalibration_Stat29: 6.92700245e-02 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 0.0043014854039040975 + syst_JES_EtaIntercalibration_Stat30: 4.30148540e-03 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 0.0052111209926464 - syst_JES_EtaIntercalibration_Stat36: 0.042118552622330226 - syst_JES_EtaIntercalibration_Stat37: 0.2324417346347252 - syst_JES_EtaIntercalibration_Stat38: 0.17364641171069445 - syst_JES_EtaIntercalibration_Stat39: 0.034858142674990586 - syst_JES_EtaIntercalibration_Stat4: 0.0024309333084229193 - syst_JES_EtaIntercalibration_Stat40: 0.006160904722522497 + syst_JES_EtaIntercalibration_Stat35: 5.21112099e-03 + syst_JES_EtaIntercalibration_Stat36: 4.21185526e-02 + syst_JES_EtaIntercalibration_Stat37: 2.32441735e-01 + syst_JES_EtaIntercalibration_Stat38: 1.73646412e-01 + syst_JES_EtaIntercalibration_Stat39: 3.48581427e-02 + syst_JES_EtaIntercalibration_Stat4: 2.43093331e-03 + syst_JES_EtaIntercalibration_Stat40: 6.16090472e-03 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 - syst_JES_EtaIntercalibration_Stat44: 0.003232006806923525 + syst_JES_EtaIntercalibration_Stat44: 3.23200681e-03 syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 - syst_JES_EtaIntercalibration_Stat47: 0.0017736200269505304 - syst_JES_EtaIntercalibration_Stat48: 0.0650010544145247 - syst_JES_EtaIntercalibration_Stat49: 0.9147307472693808 - syst_JES_EtaIntercalibration_Stat5: 0.048752042777713424 - syst_JES_EtaIntercalibration_Stat50: 0.912455198900198 - syst_JES_EtaIntercalibration_Stat51: 0.2704967790935781 - syst_JES_EtaIntercalibration_Stat52: 0.028363743031377224 + syst_JES_EtaIntercalibration_Stat47: 1.77362003e-03 + syst_JES_EtaIntercalibration_Stat48: 6.50010544e-02 + syst_JES_EtaIntercalibration_Stat49: 9.14730747e-01 + syst_JES_EtaIntercalibration_Stat5: 4.87520428e-02 + syst_JES_EtaIntercalibration_Stat50: 9.12455199e-01 + syst_JES_EtaIntercalibration_Stat51: 2.70496779e-01 + syst_JES_EtaIntercalibration_Stat52: 2.83637430e-02 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 syst_JES_EtaIntercalibration_Stat56: 0.0 - syst_JES_EtaIntercalibration_Stat57: 0.010509659877940865 - syst_JES_EtaIntercalibration_Stat58: 0.11951106517808299 - syst_JES_EtaIntercalibration_Stat59: 0.8072320670042785 - syst_JES_EtaIntercalibration_Stat6: 0.10626961277806558 - syst_JES_EtaIntercalibration_Stat60: 0.7447527643453229 - syst_JES_EtaIntercalibration_Stat61: 0.027855890413878356 - syst_JES_EtaIntercalibration_Stat62: 0.002652635811791736 + syst_JES_EtaIntercalibration_Stat57: 1.05096599e-02 + syst_JES_EtaIntercalibration_Stat58: 1.19511065e-01 + syst_JES_EtaIntercalibration_Stat59: 8.07232067e-01 + syst_JES_EtaIntercalibration_Stat6: 1.06269613e-01 + syst_JES_EtaIntercalibration_Stat60: 7.44752764e-01 + syst_JES_EtaIntercalibration_Stat61: 2.78558904e-02 + syst_JES_EtaIntercalibration_Stat62: 2.65263581e-03 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 - syst_JES_EtaIntercalibration_Stat69: 0.003084901416577198 - syst_JES_EtaIntercalibration_Stat7: 0.016416105750146716 - syst_JES_EtaIntercalibration_Stat70: 0.9958475586152732 - syst_JES_EtaIntercalibration_Stat71: 4.359314252264913 - syst_JES_EtaIntercalibration_Stat72: 5.40081945171286 - syst_JES_EtaIntercalibration_Stat73: 1.7868775748494914 - syst_JES_EtaIntercalibration_Stat74: 0.05342977069714973 + syst_JES_EtaIntercalibration_Stat69: 3.08490142e-03 + syst_JES_EtaIntercalibration_Stat7: 1.64161058e-02 + syst_JES_EtaIntercalibration_Stat70: 9.95847559e-01 + syst_JES_EtaIntercalibration_Stat71: 4.35931425e+00 + syst_JES_EtaIntercalibration_Stat72: 5.40081945e+00 + syst_JES_EtaIntercalibration_Stat73: 1.78687757e+00 + syst_JES_EtaIntercalibration_Stat74: 5.34297707e-02 syst_JES_EtaIntercalibration_Stat75: 0.0 syst_JES_EtaIntercalibration_Stat76: 0.0 syst_JES_EtaIntercalibration_Stat77: 0.0 syst_JES_EtaIntercalibration_Stat78: 0.0 - syst_JES_EtaIntercalibration_Stat79: 0.1000683851173786 + syst_JES_EtaIntercalibration_Stat79: 1.00068385e-01 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 1.891211516462397 - syst_JES_EtaIntercalibration_Stat81: 5.715205245658287 - syst_JES_EtaIntercalibration_Stat82: 4.541529588145385 - syst_JES_EtaIntercalibration_Stat83: 0.9467703734274747 - syst_JES_EtaIntercalibration_Stat84: 0.005782684908414084 - syst_JES_EtaIntercalibration_Stat85: 0.003232006806923525 - syst_JES_EtaIntercalibration_Stat86: 0.003232006806923525 - syst_JES_EtaIntercalibration_Stat87: 0.003232006806923525 - syst_JES_EtaIntercalibration_Stat88: 0.003232006806923525 - syst_JES_EtaIntercalibration_Stat89: 0.003232006806923525 + syst_JES_EtaIntercalibration_Stat80: 1.89121152e+00 + syst_JES_EtaIntercalibration_Stat81: 5.71520525e+00 + syst_JES_EtaIntercalibration_Stat82: 4.54152959e+00 + syst_JES_EtaIntercalibration_Stat83: 9.46770373e-01 + syst_JES_EtaIntercalibration_Stat84: 5.78268491e-03 + syst_JES_EtaIntercalibration_Stat85: 3.23200681e-03 + syst_JES_EtaIntercalibration_Stat86: 3.23200681e-03 + syst_JES_EtaIntercalibration_Stat87: 3.23200681e-03 + syst_JES_EtaIntercalibration_Stat88: 3.23200681e-03 + syst_JES_EtaIntercalibration_Stat89: 3.23200681e-03 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 1.3699311542920687 - syst_JES_EtaIntercalibration_Stat92: 6.40292331673588 - syst_JES_EtaIntercalibration_Stat93: 7.403764633617144 - syst_JES_EtaIntercalibration_Stat94: 2.248839867576169 - syst_JES_EtaIntercalibration_Stat95: 0.07256827681569956 - syst_JES_EtaIntercalibration_Stat96: 0.004752991058270571 - syst_JES_EtaIntercalibration_Stat97: 0.003232006806923525 - syst_JES_EtaIntercalibration_Stat98: 0.003232006806923525 - syst_JES_EtaIntercalibration_Stat99: 0.003232006806923525 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.004660082697764065 - syst_JES_Flavour_Comp: 9.438265452401728 - syst_JES_Gjet_Generator: 87.8341702684667 - syst_JES_Gjet_OOC: 54.034929008929026 - syst_JES_Gjet_Purity: 22.801754318472955 + syst_JES_EtaIntercalibration_Stat91: 1.36993115e+00 + syst_JES_EtaIntercalibration_Stat92: 6.40292332e+00 + syst_JES_EtaIntercalibration_Stat93: 7.40376463e+00 + syst_JES_EtaIntercalibration_Stat94: 2.24883987e+00 + syst_JES_EtaIntercalibration_Stat95: 7.25682768e-02 + syst_JES_EtaIntercalibration_Stat96: 4.75299106e-03 + syst_JES_EtaIntercalibration_Stat97: 3.23200681e-03 + syst_JES_EtaIntercalibration_Stat98: 3.23200681e-03 + syst_JES_EtaIntercalibration_Stat99: 3.23200681e-03 + syst_JES_EtaIntercalibration_TotalStat_MJB: 4.66008270e-03 + syst_JES_Flavour_Comp: 9.43826545e+00 + syst_JES_Gjet_Generator: 8.78341703e+01 + syst_JES_Gjet_OOC: 5.40349290e+01 + syst_JES_Gjet_Purity: 2.28017543e+01 syst_JES_Gjet_Stat1: 0.0 - syst_JES_Gjet_Stat10: 0.8903157347256085 - syst_JES_Gjet_Stat11: 0.2449598742651539 - syst_JES_Gjet_Stat12: 0.0427925612694543 - syst_JES_Gjet_Stat13: 0.0007764210632768795 - syst_JES_Gjet_Stat14: 5.136148630053457e-19 - syst_JES_Gjet_Stat15: 1.3276169487589107e-11 - syst_JES_Gjet_Stat2: 0.5458558120053316 + syst_JES_Gjet_Stat10: 8.90315735e-01 + syst_JES_Gjet_Stat11: 2.44959874e-01 + syst_JES_Gjet_Stat12: 4.27925613e-02 + syst_JES_Gjet_Stat13: 7.76421063e-04 + syst_JES_Gjet_Stat14: 5.13614863e-19 + syst_JES_Gjet_Stat15: 1.32761695e-11 + syst_JES_Gjet_Stat2: 5.45855812e-01 syst_JES_Gjet_Stat3: 0.0 - syst_JES_Gjet_Stat4: 0.6482200147326524 - syst_JES_Gjet_Stat5: 1.80906633377552 - syst_JES_Gjet_Stat6: 5.447562574216105 - syst_JES_Gjet_Stat7: 8.717495210781593 - syst_JES_Gjet_Stat8: 3.013231280535897 - syst_JES_Gjet_Stat9: 0.9402434511869784 - syst_JES_Gjet_Veto: 17.368744197552108 - syst_JES_Gjet_dPhi: 10.575662851566324 - syst_JES_LArESZee: 56.01108515954676 - syst_JES_LArEsmear: 5.595886055844955 - syst_JES_LAr_JVT: 9.825749487952562 - syst_JES_MJB_Alpha: 1.024508052676991e-05 - syst_JES_MJB_Asym: 1.6844194044977413e-25 - syst_JES_MJB_Beta: 2.6664922182522868e-19 - syst_JES_MJB_Stat1: 0.008783229645181778 + syst_JES_Gjet_Stat4: 6.48220015e-01 + syst_JES_Gjet_Stat5: 1.80906633e+00 + syst_JES_Gjet_Stat6: 5.44756257e+00 + syst_JES_Gjet_Stat7: 8.71749521e+00 + syst_JES_Gjet_Stat8: 3.01323128e+00 + syst_JES_Gjet_Stat9: 9.40243451e-01 + syst_JES_Gjet_Veto: 1.73687442e+01 + syst_JES_Gjet_dPhi: 1.05756629e+01 + syst_JES_LArESZee: 5.60110852e+01 + syst_JES_LArEsmear: 5.59588606e+00 + syst_JES_LAr_JVT: 9.82574949e+00 + syst_JES_MJB_Alpha: 1.02450805e-05 + syst_JES_MJB_Asym: 1.68441940e-25 + syst_JES_MJB_Beta: 2.66649222e-19 + syst_JES_MJB_Stat1: 8.78322965e-03 syst_JES_MJB_Stat10: 0.0 syst_JES_MJB_Stat11: 0.0 syst_JES_MJB_Stat12: 0.0 @@ -34838,219 +34838,219 @@ bins: syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 1.3882387222664552e-05 - syst_JES_MJB_Stat3: 4.900837760016138e-10 - syst_JES_MJB_Stat4: 1.749371315644566e-19 + syst_JES_MJB_Stat2: 1.38823872e-05 + syst_JES_MJB_Stat3: 4.90083776e-10 + syst_JES_MJB_Stat4: 1.74937132e-19 syst_JES_MJB_Stat5: 0.0 syst_JES_MJB_Stat6: 0.0 syst_JES_MJB_Stat7: 0.0 syst_JES_MJB_Stat8: 0.0 syst_JES_MJB_Stat9: 0.0 - syst_JES_MJB_Threshold: 3.2328728323273093e-06 - syst_JES_Pileup_MuOffset: 5.883776585762622e-25 - syst_JES_Pileup_NPVOffset: 6.74259643979973 - syst_JES_Pileup_Pt_term: 23.907032438176007 - syst_JES_PunchThrough_MC15: 0.28890607470248875 + syst_JES_MJB_Threshold: 3.23287283e-06 + syst_JES_Pileup_MuOffset: 5.88377659e-25 + syst_JES_Pileup_NPVOffset: 6.74259644e+00 + syst_JES_Pileup_Pt_term: 2.39070324e+01 + syst_JES_PunchThrough_MC15: 2.88906075e-01 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 80.94148053223391 - syst_JES_Zjet_MuScale: 5.816652882027602 - syst_JES_Zjet_MuSmearID: 0.8916608099496132 - syst_JES_Zjet_MuSmearMS: 2.6073387045031184 - syst_JES_Zjet_OOC: 49.57185900034414 - syst_JES_Zjet_Stat1: 1.066017814250775 - syst_JES_Zjet_Stat10: 5.0715177954927855 - syst_JES_Zjet_Stat11: 1.8779179960797008 - syst_JES_Zjet_Stat12: 0.7401452154813946 - syst_JES_Zjet_Stat13: 0.016410719758743062 - syst_JES_Zjet_Stat2: 0.10241616425154772 - syst_JES_Zjet_Stat3: 0.1603880732235267 - syst_JES_Zjet_Stat4: 0.16385218797348033 - syst_JES_Zjet_Stat5: 0.07796826710271301 - syst_JES_Zjet_Stat6: 2.1075556339038832 - syst_JES_Zjet_Stat7: 3.439921783994514 - syst_JES_Zjet_Stat8: 6.339361225707208 - syst_JES_Zjet_Stat9: 9.755255967938515 - syst_JES_Zjet_Veto: 7.591923076533376 - syst_JES_Zjet_dPhi: 11.57330707922329 - syst_PRW: 3.131e-05 + syst_JES_Zjet_MC: 8.09414805e+01 + syst_JES_Zjet_MuScale: 5.81665288e+00 + syst_JES_Zjet_MuSmearID: 8.91660810e-01 + syst_JES_Zjet_MuSmearMS: 2.60733870e+00 + syst_JES_Zjet_OOC: 4.95718590e+01 + syst_JES_Zjet_Stat1: 1.06601781e+00 + syst_JES_Zjet_Stat10: 5.07151780e+00 + syst_JES_Zjet_Stat11: 1.87791800e+00 + syst_JES_Zjet_Stat12: 7.40145215e-01 + syst_JES_Zjet_Stat13: 1.64107198e-02 + syst_JES_Zjet_Stat2: 1.02416164e-01 + syst_JES_Zjet_Stat3: 1.60388073e-01 + syst_JES_Zjet_Stat4: 1.63852188e-01 + syst_JES_Zjet_Stat5: 7.79682671e-02 + syst_JES_Zjet_Stat6: 2.10755563e+00 + syst_JES_Zjet_Stat7: 3.43992178e+00 + syst_JES_Zjet_Stat8: 6.33936123e+00 + syst_JES_Zjet_Stat9: 9.75525597e+00 + syst_JES_Zjet_Veto: 7.59192308e+00 + syst_JES_Zjet_dPhi: 1.15733071e+01 + syst_PRW: 3.13100000e-05 syst_Unfolding_bias: 19.01 - syst_cleaning: 33.86765546579804 + syst_cleaning: 3.38676555e+01 syst_lumi: 82.787 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 22.795751248862146 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 90.32355936714406 - syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 2.3296083316854683e-25 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 2.27957512e+01 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 9.03235594e+01 + syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 2.32960833e-25 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 125.76683242015758 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 5.77552340669585e-25 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 41.33599139672351 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 1.25766832e+02 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 5.77552341e-25 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 4.13359914e+01 - stat: 14.485 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 41.20574179346853 - syst_JER_NP1: 5.541035710947909 - syst_JER_NP2: 1.964225228938881 - syst_JER_NP3: 8.654106193016123 - syst_JER_NP4: 1.1995033347181658 - syst_JER_NP5: 2.2500673323258575 - syst_JER_NP6: 3.5342887191060095 - syst_JER_NP7: 1.604140268181059 - syst_JER_NP8: 3.724469882748416 - syst_JES_EtaIntercalibration_Modelling: 48.88229414624481 - syst_JES_EtaIntercalibration_NonClosure: 1.1698271154320197e-19 - syst_JES_EtaIntercalibration_Stat0: 0.0007172422394142721 + syst_JER_NP0: 4.12057418e+01 + syst_JER_NP1: 5.54103571e+00 + syst_JER_NP2: 1.96422523e+00 + syst_JER_NP3: 8.65410619e+00 + syst_JER_NP4: 1.19950333e+00 + syst_JER_NP5: 2.25006733e+00 + syst_JER_NP6: 3.53428872e+00 + syst_JER_NP7: 1.60414027e+00 + syst_JER_NP8: 3.72446988e+00 + syst_JES_EtaIntercalibration_Modelling: 4.88822941e+01 + syst_JES_EtaIntercalibration_NonClosure: 1.16982712e-19 + syst_JES_EtaIntercalibration_Stat0: 7.17242239e-04 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 0.02687362586268366 - syst_JES_EtaIntercalibration_Stat101: 0.6868467569261719 - syst_JES_EtaIntercalibration_Stat102: 2.6284360368858133 - syst_JES_EtaIntercalibration_Stat103: 2.203913110809952 - syst_JES_EtaIntercalibration_Stat104: 0.4211200778875308 - syst_JES_EtaIntercalibration_Stat105: 0.0013856074588425107 - syst_JES_EtaIntercalibration_Stat106: 0.0007172422394142721 - syst_JES_EtaIntercalibration_Stat107: 0.0007172422394142721 - syst_JES_EtaIntercalibration_Stat108: 0.0007172422394142721 - syst_JES_EtaIntercalibration_Stat109: 0.0007172422394142721 + syst_JES_EtaIntercalibration_Stat100: 2.68736259e-02 + syst_JES_EtaIntercalibration_Stat101: 6.86846757e-01 + syst_JES_EtaIntercalibration_Stat102: 2.62843604e+00 + syst_JES_EtaIntercalibration_Stat103: 2.20391311e+00 + syst_JES_EtaIntercalibration_Stat104: 4.21120078e-01 + syst_JES_EtaIntercalibration_Stat105: 1.38560746e-03 + syst_JES_EtaIntercalibration_Stat106: 7.17242239e-04 + syst_JES_EtaIntercalibration_Stat107: 7.17242239e-04 + syst_JES_EtaIntercalibration_Stat108: 7.17242239e-04 + syst_JES_EtaIntercalibration_Stat109: 7.17242239e-04 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 0.004863812573485948 - syst_JES_EtaIntercalibration_Stat111: 0.9042761856866518 - syst_JES_EtaIntercalibration_Stat112: 5.516470066990304 - syst_JES_EtaIntercalibration_Stat113: 6.220142502386903 - syst_JES_EtaIntercalibration_Stat114: 1.4684388547025033 - syst_JES_EtaIntercalibration_Stat115: 0.05175154007370215 - syst_JES_EtaIntercalibration_Stat116: 0.008007354424527493 - syst_JES_EtaIntercalibration_Stat117: 0.0007172422394142721 - syst_JES_EtaIntercalibration_Stat118: 0.0007172422394142721 - syst_JES_EtaIntercalibration_Stat119: 0.0007172422394142721 + syst_JES_EtaIntercalibration_Stat110: 4.86381257e-03 + syst_JES_EtaIntercalibration_Stat111: 9.04276186e-01 + syst_JES_EtaIntercalibration_Stat112: 5.51647007e+00 + syst_JES_EtaIntercalibration_Stat113: 6.22014250e+00 + syst_JES_EtaIntercalibration_Stat114: 1.46843885e+00 + syst_JES_EtaIntercalibration_Stat115: 5.17515401e-02 + syst_JES_EtaIntercalibration_Stat116: 8.00735442e-03 + syst_JES_EtaIntercalibration_Stat117: 7.17242239e-04 + syst_JES_EtaIntercalibration_Stat118: 7.17242239e-04 + syst_JES_EtaIntercalibration_Stat119: 7.17242239e-04 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 0.01514678431218983 - syst_JES_EtaIntercalibration_Stat121: 2.0903279048991337 - syst_JES_EtaIntercalibration_Stat122: 5.370060334856584 - syst_JES_EtaIntercalibration_Stat123: 4.68680837564328 - syst_JES_EtaIntercalibration_Stat124: 0.7034160699756582 - syst_JES_EtaIntercalibration_Stat125: 0.01396032950900515 - syst_JES_EtaIntercalibration_Stat126: 0.0007172422394142721 - syst_JES_EtaIntercalibration_Stat127: 0.0007172422394142721 - syst_JES_EtaIntercalibration_Stat128: 0.0007172422394142721 - syst_JES_EtaIntercalibration_Stat129: 0.024670016214019805 + syst_JES_EtaIntercalibration_Stat120: 1.51467843e-02 + syst_JES_EtaIntercalibration_Stat121: 2.09032790e+00 + syst_JES_EtaIntercalibration_Stat122: 5.37006033e+00 + syst_JES_EtaIntercalibration_Stat123: 4.68680838e+00 + syst_JES_EtaIntercalibration_Stat124: 7.03416070e-01 + syst_JES_EtaIntercalibration_Stat125: 1.39603295e-02 + syst_JES_EtaIntercalibration_Stat126: 7.17242239e-04 + syst_JES_EtaIntercalibration_Stat127: 7.17242239e-04 + syst_JES_EtaIntercalibration_Stat128: 7.17242239e-04 + syst_JES_EtaIntercalibration_Stat129: 2.46700162e-02 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 1.0531143242782335 - syst_JES_EtaIntercalibration_Stat131: 2.1137116052101335 - syst_JES_EtaIntercalibration_Stat132: 3.8503237201565272 - syst_JES_EtaIntercalibration_Stat133: 0.9794634449534092 - syst_JES_EtaIntercalibration_Stat134: 0.03386742830508393 - syst_JES_EtaIntercalibration_Stat135: 0.0077396690336215285 + syst_JES_EtaIntercalibration_Stat130: 1.05311432e+00 + syst_JES_EtaIntercalibration_Stat131: 2.11371161e+00 + syst_JES_EtaIntercalibration_Stat132: 3.85032372e+00 + syst_JES_EtaIntercalibration_Stat133: 9.79463445e-01 + syst_JES_EtaIntercalibration_Stat134: 3.38674283e-02 + syst_JES_EtaIntercalibration_Stat135: 7.73966903e-03 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 syst_JES_EtaIntercalibration_Stat138: 0.0 - syst_JES_EtaIntercalibration_Stat139: 0.006902928708164383 - syst_JES_EtaIntercalibration_Stat14: 0.0067434433835763755 - syst_JES_EtaIntercalibration_Stat140: 1.1223651544840476 - syst_JES_EtaIntercalibration_Stat141: 3.3241580512965982 - syst_JES_EtaIntercalibration_Stat142: 1.4236397121463 - syst_JES_EtaIntercalibration_Stat143: 0.30928602862075744 - syst_JES_EtaIntercalibration_Stat144: 0.003925134742910108 + syst_JES_EtaIntercalibration_Stat139: 6.90292871e-03 + syst_JES_EtaIntercalibration_Stat14: 6.74344338e-03 + syst_JES_EtaIntercalibration_Stat140: 1.12236515e+00 + syst_JES_EtaIntercalibration_Stat141: 3.32415805e+00 + syst_JES_EtaIntercalibration_Stat142: 1.42363971e+00 + syst_JES_EtaIntercalibration_Stat143: 3.09286029e-01 + syst_JES_EtaIntercalibration_Stat144: 3.92513474e-03 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 0.00022455007352203203 - syst_JES_EtaIntercalibration_Stat148: 0.07708057472541315 - syst_JES_EtaIntercalibration_Stat149: 0.5162437868875519 - syst_JES_EtaIntercalibration_Stat15: 0.008402890975729722 - syst_JES_EtaIntercalibration_Stat150: 0.7017145929792253 - syst_JES_EtaIntercalibration_Stat151: 0.2582564810416188 - syst_JES_EtaIntercalibration_Stat152: 0.0158425755481866 + syst_JES_EtaIntercalibration_Stat147: 2.24550074e-04 + syst_JES_EtaIntercalibration_Stat148: 7.70805747e-02 + syst_JES_EtaIntercalibration_Stat149: 5.16243787e-01 + syst_JES_EtaIntercalibration_Stat15: 8.40289098e-03 + syst_JES_EtaIntercalibration_Stat150: 7.01714593e-01 + syst_JES_EtaIntercalibration_Stat151: 2.58256481e-01 + syst_JES_EtaIntercalibration_Stat152: 1.58425755e-02 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 syst_JES_EtaIntercalibration_Stat156: 0.0 - syst_JES_EtaIntercalibration_Stat157: 0.000737621478821455 - syst_JES_EtaIntercalibration_Stat158: 0.2105429409882934 - syst_JES_EtaIntercalibration_Stat159: 0.6978018128380006 - syst_JES_EtaIntercalibration_Stat16: 0.009248835061779403 - syst_JES_EtaIntercalibration_Stat160: 0.602732467600676 - syst_JES_EtaIntercalibration_Stat161: 0.14925366620287758 - syst_JES_EtaIntercalibration_Stat162: 0.0034534571200465197 + syst_JES_EtaIntercalibration_Stat157: 7.37621479e-04 + syst_JES_EtaIntercalibration_Stat158: 2.10542941e-01 + syst_JES_EtaIntercalibration_Stat159: 6.97801813e-01 + syst_JES_EtaIntercalibration_Stat16: 9.24883506e-03 + syst_JES_EtaIntercalibration_Stat160: 6.02732468e-01 + syst_JES_EtaIntercalibration_Stat161: 1.49253666e-01 + syst_JES_EtaIntercalibration_Stat162: 3.45345712e-03 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 4.880900593993656e-06 - syst_JES_EtaIntercalibration_Stat166: 0.017230905373775342 - syst_JES_EtaIntercalibration_Stat167: 0.07872433343636515 - syst_JES_EtaIntercalibration_Stat168: 0.1483232932507568 - syst_JES_EtaIntercalibration_Stat169: 0.07797070395347216 - syst_JES_EtaIntercalibration_Stat17: 0.0005867322110639572 - syst_JES_EtaIntercalibration_Stat170: 0.013917028238903456 + syst_JES_EtaIntercalibration_Stat165: 4.88090059e-06 + syst_JES_EtaIntercalibration_Stat166: 1.72309054e-02 + syst_JES_EtaIntercalibration_Stat167: 7.87243334e-02 + syst_JES_EtaIntercalibration_Stat168: 1.48323293e-01 + syst_JES_EtaIntercalibration_Stat169: 7.79707040e-02 + syst_JES_EtaIntercalibration_Stat17: 5.86732211e-04 + syst_JES_EtaIntercalibration_Stat170: 1.39170282e-02 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 - syst_JES_EtaIntercalibration_Stat175: 0.000518229601624608 - syst_JES_EtaIntercalibration_Stat176: 0.03396113182742884 - syst_JES_EtaIntercalibration_Stat177: 0.1120369421217841 - syst_JES_EtaIntercalibration_Stat178: 0.09255890921461857 - syst_JES_EtaIntercalibration_Stat179: 0.01942678159140108 + syst_JES_EtaIntercalibration_Stat175: 5.18229602e-04 + syst_JES_EtaIntercalibration_Stat176: 3.39611318e-02 + syst_JES_EtaIntercalibration_Stat177: 1.12036942e-01 + syst_JES_EtaIntercalibration_Stat178: 9.25589092e-02 + syst_JES_EtaIntercalibration_Stat179: 1.94267816e-02 syst_JES_EtaIntercalibration_Stat18: 0.0 - syst_JES_EtaIntercalibration_Stat180: 0.00019087068678820223 + syst_JES_EtaIntercalibration_Stat180: 1.90870687e-04 syst_JES_EtaIntercalibration_Stat181: 0.0 - syst_JES_EtaIntercalibration_Stat182: 4.165501946700181e-06 - syst_JES_EtaIntercalibration_Stat183: 0.0004612922148703574 - syst_JES_EtaIntercalibration_Stat184: 0.003440814293157944 - syst_JES_EtaIntercalibration_Stat185: 0.0015263706070283193 - syst_JES_EtaIntercalibration_Stat186: 0.0021824075581797276 - syst_JES_EtaIntercalibration_Stat187: 4.3859966569840204e-08 + syst_JES_EtaIntercalibration_Stat182: 4.16550195e-06 + syst_JES_EtaIntercalibration_Stat183: 4.61292215e-04 + syst_JES_EtaIntercalibration_Stat184: 3.44081429e-03 + syst_JES_EtaIntercalibration_Stat185: 1.52637061e-03 + syst_JES_EtaIntercalibration_Stat186: 2.18240756e-03 + syst_JES_EtaIntercalibration_Stat187: 4.38599666e-08 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 - syst_JES_EtaIntercalibration_Stat192: 1.053606506244148e-05 - syst_JES_EtaIntercalibration_Stat193: 0.0009438409098333257 - syst_JES_EtaIntercalibration_Stat194: 0.004481134315103711 - syst_JES_EtaIntercalibration_Stat195: 0.004145482722192917 - syst_JES_EtaIntercalibration_Stat196: 0.009593326656479648 - syst_JES_EtaIntercalibration_Stat197: 0.00014717556692603564 - syst_JES_EtaIntercalibration_Stat198: 8.35508831596052e-05 - syst_JES_EtaIntercalibration_Stat199: 0.000187636530291945 + syst_JES_EtaIntercalibration_Stat192: 1.05360651e-05 + syst_JES_EtaIntercalibration_Stat193: 9.43840910e-04 + syst_JES_EtaIntercalibration_Stat194: 4.48113432e-03 + syst_JES_EtaIntercalibration_Stat195: 4.14548272e-03 + syst_JES_EtaIntercalibration_Stat196: 9.59332666e-03 + syst_JES_EtaIntercalibration_Stat197: 1.47175567e-04 + syst_JES_EtaIntercalibration_Stat198: 8.35508832e-05 + syst_JES_EtaIntercalibration_Stat199: 1.87636530e-04 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 0.00021554194487384583 - syst_JES_EtaIntercalibration_Stat201: 0.0001360251119279084 - syst_JES_EtaIntercalibration_Stat202: 1.3025013225049123e-13 + syst_JES_EtaIntercalibration_Stat200: 2.15541945e-04 + syst_JES_EtaIntercalibration_Stat201: 1.36025112e-04 + syst_JES_EtaIntercalibration_Stat202: 1.30250132e-13 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 - syst_JES_EtaIntercalibration_Stat207: 1.029272196413841e-05 - syst_JES_EtaIntercalibration_Stat208: 4.434433678693594e-06 - syst_JES_EtaIntercalibration_Stat209: 0.0002132304387276826 + syst_JES_EtaIntercalibration_Stat207: 1.02927220e-05 + syst_JES_EtaIntercalibration_Stat208: 4.43443368e-06 + syst_JES_EtaIntercalibration_Stat209: 2.13230439e-04 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 8.334032802311255e-05 - syst_JES_EtaIntercalibration_Stat211: 3.3619108031093438e-06 - syst_JES_EtaIntercalibration_Stat212: 5.675450554801795e-11 - syst_JES_EtaIntercalibration_Stat213: 9.892387578335171e-11 - syst_JES_EtaIntercalibration_Stat214: 4.899594119682689e-11 - syst_JES_EtaIntercalibration_Stat215: 6.535027696957364e-19 + syst_JES_EtaIntercalibration_Stat210: 8.33403280e-05 + syst_JES_EtaIntercalibration_Stat211: 3.36191080e-06 + syst_JES_EtaIntercalibration_Stat212: 5.67545055e-11 + syst_JES_EtaIntercalibration_Stat213: 9.89238758e-11 + syst_JES_EtaIntercalibration_Stat214: 4.89959412e-11 + syst_JES_EtaIntercalibration_Stat215: 6.53502770e-19 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 syst_JES_EtaIntercalibration_Stat219: 0.0 - syst_JES_EtaIntercalibration_Stat22: 0.0007172422394142721 - syst_JES_EtaIntercalibration_Stat220: 4.964057614492402e-25 - syst_JES_EtaIntercalibration_Stat221: 3.8355205200858984e-11 - syst_JES_EtaIntercalibration_Stat222: 2.2456868330486334e-08 - syst_JES_EtaIntercalibration_Stat223: 8.06636919561707e-11 - syst_JES_EtaIntercalibration_Stat224: 7.888365229881283e-26 - syst_JES_EtaIntercalibration_Stat225: 1.2952447915355616e-25 - syst_JES_EtaIntercalibration_Stat226: 7.173288419546506e-42 + syst_JES_EtaIntercalibration_Stat22: 7.17242239e-04 + syst_JES_EtaIntercalibration_Stat220: 4.96405761e-25 + syst_JES_EtaIntercalibration_Stat221: 3.83552052e-11 + syst_JES_EtaIntercalibration_Stat222: 2.24568683e-08 + syst_JES_EtaIntercalibration_Stat223: 8.06636920e-11 + syst_JES_EtaIntercalibration_Stat224: 7.88836523e-26 + syst_JES_EtaIntercalibration_Stat225: 1.29524479e-25 + syst_JES_EtaIntercalibration_Stat226: 7.17328842e-42 syst_JES_EtaIntercalibration_Stat227: 0.0 syst_JES_EtaIntercalibration_Stat228: 0.0 syst_JES_EtaIntercalibration_Stat229: 0.0 - syst_JES_EtaIntercalibration_Stat23: 0.0007172422394142721 + syst_JES_EtaIntercalibration_Stat23: 7.17242239e-04 syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 syst_JES_EtaIntercalibration_Stat232: 0.0 - syst_JES_EtaIntercalibration_Stat233: 7.550009470192737e-33 - syst_JES_EtaIntercalibration_Stat234: 1.684371099253368e-25 - syst_JES_EtaIntercalibration_Stat235: 1.5950350309632703e-25 + syst_JES_EtaIntercalibration_Stat233: 7.55000947e-33 + syst_JES_EtaIntercalibration_Stat234: 1.68437110e-25 + syst_JES_EtaIntercalibration_Stat235: 1.59503503e-25 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 @@ -35062,337 +35062,337 @@ bins: syst_JES_EtaIntercalibration_Stat243: 0.0 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 - syst_JES_EtaIntercalibration_Stat25: 0.00050142870879119 - syst_JES_EtaIntercalibration_Stat26: 0.00887414293044686 - syst_JES_EtaIntercalibration_Stat27: 0.017081424669798475 - syst_JES_EtaIntercalibration_Stat28: 0.029466456777155953 - syst_JES_EtaIntercalibration_Stat29: 0.015020000890479335 + syst_JES_EtaIntercalibration_Stat25: 5.01428709e-04 + syst_JES_EtaIntercalibration_Stat26: 8.87414293e-03 + syst_JES_EtaIntercalibration_Stat27: 1.70814247e-02 + syst_JES_EtaIntercalibration_Stat28: 2.94664568e-02 + syst_JES_EtaIntercalibration_Stat29: 1.50200009e-02 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 0.0016586635305269118 + syst_JES_EtaIntercalibration_Stat30: 1.65866353e-03 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 0.0010634380658975867 - syst_JES_EtaIntercalibration_Stat36: 0.01834396562905633 - syst_JES_EtaIntercalibration_Stat37: 0.04242111511971367 - syst_JES_EtaIntercalibration_Stat38: 0.03135347349178397 - syst_JES_EtaIntercalibration_Stat39: 0.008414018941623557 - syst_JES_EtaIntercalibration_Stat4: 0.0006875375680644659 - syst_JES_EtaIntercalibration_Stat40: 0.0008023725366062824 + syst_JES_EtaIntercalibration_Stat35: 1.06343807e-03 + syst_JES_EtaIntercalibration_Stat36: 1.83439656e-02 + syst_JES_EtaIntercalibration_Stat37: 4.24211151e-02 + syst_JES_EtaIntercalibration_Stat38: 3.13534735e-02 + syst_JES_EtaIntercalibration_Stat39: 8.41401894e-03 + syst_JES_EtaIntercalibration_Stat4: 6.87537568e-04 + syst_JES_EtaIntercalibration_Stat40: 8.02372537e-04 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 - syst_JES_EtaIntercalibration_Stat44: 0.0007172422394142721 + syst_JES_EtaIntercalibration_Stat44: 7.17242239e-04 syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 - syst_JES_EtaIntercalibration_Stat47: 0.0005016885164123254 - syst_JES_EtaIntercalibration_Stat48: 0.0112036437264847 - syst_JES_EtaIntercalibration_Stat49: 0.15801456159164573 - syst_JES_EtaIntercalibration_Stat5: 0.03209763497128722 - syst_JES_EtaIntercalibration_Stat50: 0.13783784712480096 - syst_JES_EtaIntercalibration_Stat51: 0.028653011547654116 - syst_JES_EtaIntercalibration_Stat52: 0.021485293695630507 + syst_JES_EtaIntercalibration_Stat47: 5.01688516e-04 + syst_JES_EtaIntercalibration_Stat48: 1.12036437e-02 + syst_JES_EtaIntercalibration_Stat49: 1.58014562e-01 + syst_JES_EtaIntercalibration_Stat5: 3.20976350e-02 + syst_JES_EtaIntercalibration_Stat50: 1.37837847e-01 + syst_JES_EtaIntercalibration_Stat51: 2.86530115e-02 + syst_JES_EtaIntercalibration_Stat52: 2.14852937e-02 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 syst_JES_EtaIntercalibration_Stat56: 0.0 - syst_JES_EtaIntercalibration_Stat57: 0.005914446186034665 - syst_JES_EtaIntercalibration_Stat58: 0.022549728821429315 - syst_JES_EtaIntercalibration_Stat59: 0.1618046661873507 - syst_JES_EtaIntercalibration_Stat6: 0.027870114293809412 - syst_JES_EtaIntercalibration_Stat60: 0.1729577714356889 - syst_JES_EtaIntercalibration_Stat61: 0.03310710497763282 - syst_JES_EtaIntercalibration_Stat62: 0.0005985101565554256 + syst_JES_EtaIntercalibration_Stat57: 5.91444619e-03 + syst_JES_EtaIntercalibration_Stat58: 2.25497288e-02 + syst_JES_EtaIntercalibration_Stat59: 1.61804666e-01 + syst_JES_EtaIntercalibration_Stat6: 2.78701143e-02 + syst_JES_EtaIntercalibration_Stat60: 1.72957771e-01 + syst_JES_EtaIntercalibration_Stat61: 3.31071050e-02 + syst_JES_EtaIntercalibration_Stat62: 5.98510157e-04 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 - syst_JES_EtaIntercalibration_Stat69: 0.0007721971558481681 - syst_JES_EtaIntercalibration_Stat7: 0.022395180910186906 - syst_JES_EtaIntercalibration_Stat70: 0.21480563307325068 - syst_JES_EtaIntercalibration_Stat71: 1.077729098614304 - syst_JES_EtaIntercalibration_Stat72: 1.3027638773008712 - syst_JES_EtaIntercalibration_Stat73: 0.42012620425296016 - syst_JES_EtaIntercalibration_Stat74: 0.024110332157604133 + syst_JES_EtaIntercalibration_Stat69: 7.72197156e-04 + syst_JES_EtaIntercalibration_Stat7: 2.23951809e-02 + syst_JES_EtaIntercalibration_Stat70: 2.14805633e-01 + syst_JES_EtaIntercalibration_Stat71: 1.07772910e+00 + syst_JES_EtaIntercalibration_Stat72: 1.30276388e+00 + syst_JES_EtaIntercalibration_Stat73: 4.20126204e-01 + syst_JES_EtaIntercalibration_Stat74: 2.41103322e-02 syst_JES_EtaIntercalibration_Stat75: 0.0 syst_JES_EtaIntercalibration_Stat76: 0.0 syst_JES_EtaIntercalibration_Stat77: 0.0 syst_JES_EtaIntercalibration_Stat78: 0.0 - syst_JES_EtaIntercalibration_Stat79: 0.02563696963371451 + syst_JES_EtaIntercalibration_Stat79: 2.56369696e-02 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 0.42698628397174543 - syst_JES_EtaIntercalibration_Stat81: 1.3977833415805183 - syst_JES_EtaIntercalibration_Stat82: 1.0161418060487424 - syst_JES_EtaIntercalibration_Stat83: 0.23400822100943375 - syst_JES_EtaIntercalibration_Stat84: 0.0005509100176072314 - syst_JES_EtaIntercalibration_Stat85: 0.0007172422394142721 - syst_JES_EtaIntercalibration_Stat86: 0.0007172422394142721 - syst_JES_EtaIntercalibration_Stat87: 0.0007172422394142721 - syst_JES_EtaIntercalibration_Stat88: 0.0007172422394142721 - syst_JES_EtaIntercalibration_Stat89: 0.0007172422394142721 + syst_JES_EtaIntercalibration_Stat80: 4.26986284e-01 + syst_JES_EtaIntercalibration_Stat81: 1.39778334e+00 + syst_JES_EtaIntercalibration_Stat82: 1.01614181e+00 + syst_JES_EtaIntercalibration_Stat83: 2.34008221e-01 + syst_JES_EtaIntercalibration_Stat84: 5.50910018e-04 + syst_JES_EtaIntercalibration_Stat85: 7.17242239e-04 + syst_JES_EtaIntercalibration_Stat86: 7.17242239e-04 + syst_JES_EtaIntercalibration_Stat87: 7.17242239e-04 + syst_JES_EtaIntercalibration_Stat88: 7.17242239e-04 + syst_JES_EtaIntercalibration_Stat89: 7.17242239e-04 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 0.4285761863426385 - syst_JES_EtaIntercalibration_Stat92: 2.1782907863735734 - syst_JES_EtaIntercalibration_Stat93: 2.4909770673372322 - syst_JES_EtaIntercalibration_Stat94: 0.7746256563657056 - syst_JES_EtaIntercalibration_Stat95: 0.004830561328665645 - syst_JES_EtaIntercalibration_Stat96: 0.008007354424527493 - syst_JES_EtaIntercalibration_Stat97: 0.0007172422394142721 - syst_JES_EtaIntercalibration_Stat98: 0.0007172422394142721 - syst_JES_EtaIntercalibration_Stat99: 0.0007172422394142721 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0029522806015011512 - syst_JES_Flavour_Comp: 3.9189670514052555 - syst_JES_Gjet_Generator: 44.53796383704581 - syst_JES_Gjet_OOC: 25.99592419976639 - syst_JES_Gjet_Purity: 10.903873577770424 + syst_JES_EtaIntercalibration_Stat91: 4.28576186e-01 + syst_JES_EtaIntercalibration_Stat92: 2.17829079e+00 + syst_JES_EtaIntercalibration_Stat93: 2.49097707e+00 + syst_JES_EtaIntercalibration_Stat94: 7.74625656e-01 + syst_JES_EtaIntercalibration_Stat95: 4.83056133e-03 + syst_JES_EtaIntercalibration_Stat96: 8.00735442e-03 + syst_JES_EtaIntercalibration_Stat97: 7.17242239e-04 + syst_JES_EtaIntercalibration_Stat98: 7.17242239e-04 + syst_JES_EtaIntercalibration_Stat99: 7.17242239e-04 + syst_JES_EtaIntercalibration_TotalStat_MJB: 2.95228060e-03 + syst_JES_Flavour_Comp: 3.91896705e+00 + syst_JES_Gjet_Generator: 4.45379638e+01 + syst_JES_Gjet_OOC: 2.59959242e+01 + syst_JES_Gjet_Purity: 1.09038736e+01 syst_JES_Gjet_Stat1: 0.0 - syst_JES_Gjet_Stat10: 0.3663600779288049 - syst_JES_Gjet_Stat11: 0.2743453845064648 - syst_JES_Gjet_Stat12: 0.04523377720244021 - syst_JES_Gjet_Stat13: 0.0022079513128690133 - syst_JES_Gjet_Stat14: 1.012471002053886e-12 - syst_JES_Gjet_Stat15: 2.8916681995262205e-08 - syst_JES_Gjet_Stat2: 0.23131538535082358 + syst_JES_Gjet_Stat10: 3.66360078e-01 + syst_JES_Gjet_Stat11: 2.74345385e-01 + syst_JES_Gjet_Stat12: 4.52337772e-02 + syst_JES_Gjet_Stat13: 2.20795131e-03 + syst_JES_Gjet_Stat14: 1.01247100e-12 + syst_JES_Gjet_Stat15: 2.89166820e-08 + syst_JES_Gjet_Stat2: 2.31315385e-01 syst_JES_Gjet_Stat3: 0.0 - syst_JES_Gjet_Stat4: 0.2635315303716047 - syst_JES_Gjet_Stat5: 0.5646563268927393 - syst_JES_Gjet_Stat6: 1.9440989558147495 - syst_JES_Gjet_Stat7: 3.558811037411231 - syst_JES_Gjet_Stat8: 1.722093711155116 - syst_JES_Gjet_Stat9: 1.1735955095346946 - syst_JES_Gjet_Veto: 9.255013884376403 - syst_JES_Gjet_dPhi: 4.865517932348004 - syst_JES_LArESZee: 30.766112445351297 - syst_JES_LArEsmear: 2.9571068631349795 - syst_JES_LAr_JVT: 4.973306948098015 - syst_JES_MJB_Alpha: 0.0001241880429026885 - syst_JES_MJB_Asym: 2.868274409906217e-17 - syst_JES_MJB_Beta: 5.255908175567758e-13 - syst_JES_MJB_Stat1: 0.03051873522936362 - syst_JES_MJB_Stat10: 4.577846764582668e-42 + syst_JES_Gjet_Stat4: 2.63531530e-01 + syst_JES_Gjet_Stat5: 5.64656327e-01 + syst_JES_Gjet_Stat6: 1.94409896e+00 + syst_JES_Gjet_Stat7: 3.55881104e+00 + syst_JES_Gjet_Stat8: 1.72209371e+00 + syst_JES_Gjet_Stat9: 1.17359551e+00 + syst_JES_Gjet_Veto: 9.25501388e+00 + syst_JES_Gjet_dPhi: 4.86551793e+00 + syst_JES_LArESZee: 3.07661124e+01 + syst_JES_LArEsmear: 2.95710686e+00 + syst_JES_LAr_JVT: 4.97330695e+00 + syst_JES_MJB_Alpha: 1.24188043e-04 + syst_JES_MJB_Asym: 2.86827441e-17 + syst_JES_MJB_Beta: 5.25590818e-13 + syst_JES_MJB_Stat1: 3.05187352e-02 + syst_JES_MJB_Stat10: 4.57784676e-42 syst_JES_MJB_Stat11: 0.0 syst_JES_MJB_Stat12: 0.0 syst_JES_MJB_Stat13: 0.0 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 0.00019355667774582203 - syst_JES_MJB_Stat3: 1.0633925933069122e-06 - syst_JES_MJB_Stat4: 3.4489461705715266e-13 + syst_JES_MJB_Stat2: 1.93556678e-04 + syst_JES_MJB_Stat3: 1.06339259e-06 + syst_JES_MJB_Stat4: 3.44894617e-13 syst_JES_MJB_Stat5: 0.0 syst_JES_MJB_Stat6: 0.0 syst_JES_MJB_Stat7: 0.0 syst_JES_MJB_Stat8: 0.0 - syst_JES_MJB_Stat9: 2.391096139848835e-42 - syst_JES_MJB_Threshold: 0.0005090497323445049 - syst_JES_Pileup_MuOffset: 1.0020777723238478e-16 - syst_JES_Pileup_NPVOffset: 3.0599896650152263 - syst_JES_Pileup_Pt_term: 11.251258685142743 - syst_JES_PunchThrough_MC15: 0.1830777703600303 + syst_JES_MJB_Stat9: 2.39109614e-42 + syst_JES_MJB_Threshold: 5.09049732e-04 + syst_JES_Pileup_MuOffset: 1.00207777e-16 + syst_JES_Pileup_NPVOffset: 3.05998967e+00 + syst_JES_Pileup_Pt_term: 1.12512587e+01 + syst_JES_PunchThrough_MC15: 1.83077770e-01 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 39.30917990431751 - syst_JES_Zjet_MuScale: 2.8672781518366857 - syst_JES_Zjet_MuSmearID: 0.37871560239842245 - syst_JES_Zjet_MuSmearMS: 1.8734159728955018 - syst_JES_Zjet_OOC: 20.506005827561836 - syst_JES_Zjet_Stat1: 0.27962850726454913 - syst_JES_Zjet_Stat10: 4.475866033517984 - syst_JES_Zjet_Stat11: 0.10122148164668407 - syst_JES_Zjet_Stat12: 0.6409299961774296 - syst_JES_Zjet_Stat13: 0.054838829309167426 - syst_JES_Zjet_Stat2: 0.008507833566778325 - syst_JES_Zjet_Stat3: 0.08019453018910204 - syst_JES_Zjet_Stat4: 0.081937312979443 - syst_JES_Zjet_Stat5: 0.09122711603465276 - syst_JES_Zjet_Stat6: 0.6752356681189169 - syst_JES_Zjet_Stat7: 1.161506895158182 - syst_JES_Zjet_Stat8: 2.254418494867357 - syst_JES_Zjet_Stat9: 4.574441605267248 - syst_JES_Zjet_Veto: 3.3315753030661037 - syst_JES_Zjet_dPhi: 4.604654683035417 + syst_JES_Zjet_MC: 3.93091799e+01 + syst_JES_Zjet_MuScale: 2.86727815e+00 + syst_JES_Zjet_MuSmearID: 3.78715602e-01 + syst_JES_Zjet_MuSmearMS: 1.87341597e+00 + syst_JES_Zjet_OOC: 2.05060058e+01 + syst_JES_Zjet_Stat1: 2.79628507e-01 + syst_JES_Zjet_Stat10: 4.47586603e+00 + syst_JES_Zjet_Stat11: 1.01221482e-01 + syst_JES_Zjet_Stat12: 6.40929996e-01 + syst_JES_Zjet_Stat13: 5.48388293e-02 + syst_JES_Zjet_Stat2: 8.50783357e-03 + syst_JES_Zjet_Stat3: 8.01945302e-02 + syst_JES_Zjet_Stat4: 8.19373130e-02 + syst_JES_Zjet_Stat5: 9.12271160e-02 + syst_JES_Zjet_Stat6: 6.75235668e-01 + syst_JES_Zjet_Stat7: 1.16150690e+00 + syst_JES_Zjet_Stat8: 2.25441849e+00 + syst_JES_Zjet_Stat9: 4.57444161e+00 + syst_JES_Zjet_Veto: 3.33157530e+00 + syst_JES_Zjet_dPhi: 4.60465468e+00 syst_PRW: 0.00493 syst_Unfolding_bias: 9.99 - syst_cleaning: 12.661291403328493 + syst_cleaning: 1.26612914e+01 syst_lumi: 41.375 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 10.4835498281832 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 40.97917118183334 - syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 3.9525386239172487e-17 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.04835498e+01 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 4.09791712e+01 + syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 3.95253862e-17 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 57.05996553407652 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 9.84150940435374e-17 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 19.102065333361207 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 5.70599655e+01 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 9.84150940e-17 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.91020653e+01 - stat: 7.185 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 17.87617059104102 - syst_JER_NP1: 2.253833345658015 - syst_JER_NP2: 0.39327929960779784 - syst_JER_NP3: 3.7845746960523847 - syst_JER_NP4: 0.6306517481938824 - syst_JER_NP5: 0.8999363685839127 - syst_JER_NP6: 1.4357553656525193 - syst_JER_NP7: 0.8561314428871305 - syst_JER_NP8: 1.1279931859280004 - syst_JES_EtaIntercalibration_Modelling: 23.393116508922024 - syst_JES_EtaIntercalibration_NonClosure: 4.58127438601968e-14 - syst_JES_EtaIntercalibration_Stat0: 0.00010562045824555014 + syst_JER_NP0: 1.78761706e+01 + syst_JER_NP1: 2.25383335e+00 + syst_JER_NP2: 3.93279300e-01 + syst_JER_NP3: 3.78457470e+00 + syst_JER_NP4: 6.30651748e-01 + syst_JER_NP5: 8.99936369e-01 + syst_JER_NP6: 1.43575537e+00 + syst_JER_NP7: 8.56131443e-01 + syst_JER_NP8: 1.12799319e+00 + syst_JES_EtaIntercalibration_Modelling: 2.33931165e+01 + syst_JES_EtaIntercalibration_NonClosure: 4.58127439e-14 + syst_JES_EtaIntercalibration_Stat0: 1.05620458e-04 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 0.002524118459977661 - syst_JES_EtaIntercalibration_Stat101: 0.15015611975540658 - syst_JES_EtaIntercalibration_Stat102: 0.6568003806332637 - syst_JES_EtaIntercalibration_Stat103: 0.5745818892899427 - syst_JES_EtaIntercalibration_Stat104: 0.10593647849065024 - syst_JES_EtaIntercalibration_Stat105: 0.00013472322294244598 - syst_JES_EtaIntercalibration_Stat106: 0.00010562045824555014 - syst_JES_EtaIntercalibration_Stat107: 0.00010562045824555014 - syst_JES_EtaIntercalibration_Stat108: 0.00010562045824555014 - syst_JES_EtaIntercalibration_Stat109: 0.00010562045824555014 + syst_JES_EtaIntercalibration_Stat100: 2.52411846e-03 + syst_JES_EtaIntercalibration_Stat101: 1.50156120e-01 + syst_JES_EtaIntercalibration_Stat102: 6.56800381e-01 + syst_JES_EtaIntercalibration_Stat103: 5.74581889e-01 + syst_JES_EtaIntercalibration_Stat104: 1.05936478e-01 + syst_JES_EtaIntercalibration_Stat105: 1.34723223e-04 + syst_JES_EtaIntercalibration_Stat106: 1.05620458e-04 + syst_JES_EtaIntercalibration_Stat107: 1.05620458e-04 + syst_JES_EtaIntercalibration_Stat108: 1.05620458e-04 + syst_JES_EtaIntercalibration_Stat109: 1.05620458e-04 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 0.0020652670214768836 - syst_JES_EtaIntercalibration_Stat111: 0.4160611506437485 - syst_JES_EtaIntercalibration_Stat112: 2.771813981853761 - syst_JES_EtaIntercalibration_Stat113: 3.1806770898662444 - syst_JES_EtaIntercalibration_Stat114: 0.8084732695024617 - syst_JES_EtaIntercalibration_Stat115: 0.02053399376643521 - syst_JES_EtaIntercalibration_Stat116: 0.00636056989358658 - syst_JES_EtaIntercalibration_Stat117: 0.00010562045824555014 - syst_JES_EtaIntercalibration_Stat118: 0.00010562045824555014 - syst_JES_EtaIntercalibration_Stat119: 0.00010562045824555014 + syst_JES_EtaIntercalibration_Stat110: 2.06526702e-03 + syst_JES_EtaIntercalibration_Stat111: 4.16061151e-01 + syst_JES_EtaIntercalibration_Stat112: 2.77181398e+00 + syst_JES_EtaIntercalibration_Stat113: 3.18067709e+00 + syst_JES_EtaIntercalibration_Stat114: 8.08473270e-01 + syst_JES_EtaIntercalibration_Stat115: 2.05339938e-02 + syst_JES_EtaIntercalibration_Stat116: 6.36056989e-03 + syst_JES_EtaIntercalibration_Stat117: 1.05620458e-04 + syst_JES_EtaIntercalibration_Stat118: 1.05620458e-04 + syst_JES_EtaIntercalibration_Stat119: 1.05620458e-04 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 0.01322420791578838 - syst_JES_EtaIntercalibration_Stat121: 0.9564968622530865 - syst_JES_EtaIntercalibration_Stat122: 2.611552986251667 - syst_JES_EtaIntercalibration_Stat123: 2.373930706655104 - syst_JES_EtaIntercalibration_Stat124: 0.3663981850391729 - syst_JES_EtaIntercalibration_Stat125: 0.002857017807084863 - syst_JES_EtaIntercalibration_Stat126: 0.00010562045824555014 - syst_JES_EtaIntercalibration_Stat127: 0.00010562045824555014 - syst_JES_EtaIntercalibration_Stat128: 0.00010562045824555014 - syst_JES_EtaIntercalibration_Stat129: 0.01232597756772257 + syst_JES_EtaIntercalibration_Stat120: 1.32242079e-02 + syst_JES_EtaIntercalibration_Stat121: 9.56496862e-01 + syst_JES_EtaIntercalibration_Stat122: 2.61155299e+00 + syst_JES_EtaIntercalibration_Stat123: 2.37393071e+00 + syst_JES_EtaIntercalibration_Stat124: 3.66398185e-01 + syst_JES_EtaIntercalibration_Stat125: 2.85701781e-03 + syst_JES_EtaIntercalibration_Stat126: 1.05620458e-04 + syst_JES_EtaIntercalibration_Stat127: 1.05620458e-04 + syst_JES_EtaIntercalibration_Stat128: 1.05620458e-04 + syst_JES_EtaIntercalibration_Stat129: 1.23259776e-02 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 1.094090457869001 - syst_JES_EtaIntercalibration_Stat131: 3.038378844054836 - syst_JES_EtaIntercalibration_Stat132: 4.772713693487177 - syst_JES_EtaIntercalibration_Stat133: 1.2194555865221166 - syst_JES_EtaIntercalibration_Stat134: 0.03174987677141441 - syst_JES_EtaIntercalibration_Stat135: 0.006324583523837755 + syst_JES_EtaIntercalibration_Stat130: 1.09409046e+00 + syst_JES_EtaIntercalibration_Stat131: 3.03837884e+00 + syst_JES_EtaIntercalibration_Stat132: 4.77271369e+00 + syst_JES_EtaIntercalibration_Stat133: 1.21945559e+00 + syst_JES_EtaIntercalibration_Stat134: 3.17498768e-02 + syst_JES_EtaIntercalibration_Stat135: 6.32458352e-03 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 syst_JES_EtaIntercalibration_Stat138: 0.0 - syst_JES_EtaIntercalibration_Stat139: 0.010822384245165203 - syst_JES_EtaIntercalibration_Stat14: 0.0034466038040185296 - syst_JES_EtaIntercalibration_Stat140: 1.2190382961580821 - syst_JES_EtaIntercalibration_Stat141: 4.27141156410852 - syst_JES_EtaIntercalibration_Stat142: 2.2233609693434846 - syst_JES_EtaIntercalibration_Stat143: 0.5786990992735344 - syst_JES_EtaIntercalibration_Stat144: 0.00933183486780601 + syst_JES_EtaIntercalibration_Stat139: 1.08223842e-02 + syst_JES_EtaIntercalibration_Stat14: 3.44660380e-03 + syst_JES_EtaIntercalibration_Stat140: 1.21903830e+00 + syst_JES_EtaIntercalibration_Stat141: 4.27141156e+00 + syst_JES_EtaIntercalibration_Stat142: 2.22336097e+00 + syst_JES_EtaIntercalibration_Stat143: 5.78699099e-01 + syst_JES_EtaIntercalibration_Stat144: 9.33183487e-03 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 0.0005441110918560198 - syst_JES_EtaIntercalibration_Stat148: 0.05846247024373842 - syst_JES_EtaIntercalibration_Stat149: 0.05561216233882657 - syst_JES_EtaIntercalibration_Stat15: 0.0036521132676848892 - syst_JES_EtaIntercalibration_Stat150: 0.06774968487011582 - syst_JES_EtaIntercalibration_Stat151: 0.04961113887021744 - syst_JES_EtaIntercalibration_Stat152: 0.008793104741784895 + syst_JES_EtaIntercalibration_Stat147: 5.44111092e-04 + syst_JES_EtaIntercalibration_Stat148: 5.84624702e-02 + syst_JES_EtaIntercalibration_Stat149: 5.56121623e-02 + syst_JES_EtaIntercalibration_Stat15: 3.65211327e-03 + syst_JES_EtaIntercalibration_Stat150: 6.77496849e-02 + syst_JES_EtaIntercalibration_Stat151: 4.96111389e-02 + syst_JES_EtaIntercalibration_Stat152: 8.79310474e-03 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 syst_JES_EtaIntercalibration_Stat156: 0.0 - syst_JES_EtaIntercalibration_Stat157: 0.0009313912446979518 - syst_JES_EtaIntercalibration_Stat158: 0.07636507839718035 - syst_JES_EtaIntercalibration_Stat159: 0.0172082755672961 - syst_JES_EtaIntercalibration_Stat16: 0.003501308979153368 - syst_JES_EtaIntercalibration_Stat160: 0.13280233836420202 - syst_JES_EtaIntercalibration_Stat161: 0.03166440746327018 - syst_JES_EtaIntercalibration_Stat162: 0.00038820763452049735 + syst_JES_EtaIntercalibration_Stat157: 9.31391245e-04 + syst_JES_EtaIntercalibration_Stat158: 7.63650784e-02 + syst_JES_EtaIntercalibration_Stat159: 1.72082756e-02 + syst_JES_EtaIntercalibration_Stat16: 3.50130898e-03 + syst_JES_EtaIntercalibration_Stat160: 1.32802338e-01 + syst_JES_EtaIntercalibration_Stat161: 3.16644075e-02 + syst_JES_EtaIntercalibration_Stat162: 3.88207635e-04 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 0.00013560089394024362 - syst_JES_EtaIntercalibration_Stat166: 0.02154419353329337 - syst_JES_EtaIntercalibration_Stat167: 0.12191169703929151 - syst_JES_EtaIntercalibration_Stat168: 0.2041412716723397 - syst_JES_EtaIntercalibration_Stat169: 0.02399078496006331 - syst_JES_EtaIntercalibration_Stat17: 8.707885435052531e-05 - syst_JES_EtaIntercalibration_Stat170: 0.0003815720541457617 + syst_JES_EtaIntercalibration_Stat165: 1.35600894e-04 + syst_JES_EtaIntercalibration_Stat166: 2.15441935e-02 + syst_JES_EtaIntercalibration_Stat167: 1.21911697e-01 + syst_JES_EtaIntercalibration_Stat168: 2.04141272e-01 + syst_JES_EtaIntercalibration_Stat169: 2.39907850e-02 + syst_JES_EtaIntercalibration_Stat17: 8.70788544e-05 + syst_JES_EtaIntercalibration_Stat170: 3.81572054e-04 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 - syst_JES_EtaIntercalibration_Stat175: 0.001780548230180806 - syst_JES_EtaIntercalibration_Stat176: 0.05841794501692095 - syst_JES_EtaIntercalibration_Stat177: 0.2335118198293183 - syst_JES_EtaIntercalibration_Stat178: 0.14135710125423484 - syst_JES_EtaIntercalibration_Stat179: 0.04195030512403933 + syst_JES_EtaIntercalibration_Stat175: 1.78054823e-03 + syst_JES_EtaIntercalibration_Stat176: 5.84179450e-02 + syst_JES_EtaIntercalibration_Stat177: 2.33511820e-01 + syst_JES_EtaIntercalibration_Stat178: 1.41357101e-01 + syst_JES_EtaIntercalibration_Stat179: 4.19503051e-02 syst_JES_EtaIntercalibration_Stat18: 0.0 - syst_JES_EtaIntercalibration_Stat180: 0.0006458142999345866 + syst_JES_EtaIntercalibration_Stat180: 6.45814300e-04 syst_JES_EtaIntercalibration_Stat181: 0.0 - syst_JES_EtaIntercalibration_Stat182: 0.0001165244721773392 - syst_JES_EtaIntercalibration_Stat183: 0.0001471081574896511 - syst_JES_EtaIntercalibration_Stat184: 0.006616725549696012 - syst_JES_EtaIntercalibration_Stat185: 0.019481129638704218 - syst_JES_EtaIntercalibration_Stat186: 0.00827407401163417 - syst_JES_EtaIntercalibration_Stat187: 4.146414618378148e-06 + syst_JES_EtaIntercalibration_Stat182: 1.16524472e-04 + syst_JES_EtaIntercalibration_Stat183: 1.47108157e-04 + syst_JES_EtaIntercalibration_Stat184: 6.61672555e-03 + syst_JES_EtaIntercalibration_Stat185: 1.94811296e-02 + syst_JES_EtaIntercalibration_Stat186: 8.27407401e-03 + syst_JES_EtaIntercalibration_Stat187: 4.14641462e-06 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 - syst_JES_EtaIntercalibration_Stat192: 0.00016203335304806847 - syst_JES_EtaIntercalibration_Stat193: 0.009503295901948967 - syst_JES_EtaIntercalibration_Stat194: 0.03435410647942979 - syst_JES_EtaIntercalibration_Stat195: 0.02401240929186407 - syst_JES_EtaIntercalibration_Stat196: 0.035683460454810155 - syst_JES_EtaIntercalibration_Stat197: 0.000506525191871046 - syst_JES_EtaIntercalibration_Stat198: 7.705214127459405e-05 - syst_JES_EtaIntercalibration_Stat199: 0.0005920764878797333 + syst_JES_EtaIntercalibration_Stat192: 1.62033353e-04 + syst_JES_EtaIntercalibration_Stat193: 9.50329590e-03 + syst_JES_EtaIntercalibration_Stat194: 3.43541065e-02 + syst_JES_EtaIntercalibration_Stat195: 2.40124093e-02 + syst_JES_EtaIntercalibration_Stat196: 3.56834605e-02 + syst_JES_EtaIntercalibration_Stat197: 5.06525192e-04 + syst_JES_EtaIntercalibration_Stat198: 7.70521413e-05 + syst_JES_EtaIntercalibration_Stat199: 5.92076488e-04 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 0.000733075594669472 - syst_JES_EtaIntercalibration_Stat201: 0.0003589782671694764 - syst_JES_EtaIntercalibration_Stat202: 1.876642394224537e-09 + syst_JES_EtaIntercalibration_Stat200: 7.33075595e-04 + syst_JES_EtaIntercalibration_Stat201: 3.58978267e-04 + syst_JES_EtaIntercalibration_Stat202: 1.87664239e-09 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 - syst_JES_EtaIntercalibration_Stat207: 0.00013415689580377176 - syst_JES_EtaIntercalibration_Stat208: 3.58902451928097e-06 - syst_JES_EtaIntercalibration_Stat209: 0.0007954013200894252 + syst_JES_EtaIntercalibration_Stat207: 1.34156896e-04 + syst_JES_EtaIntercalibration_Stat208: 3.58902452e-06 + syst_JES_EtaIntercalibration_Stat209: 7.95401320e-04 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 0.00030813699875217843 - syst_JES_EtaIntercalibration_Stat211: 5.307271445729252e-05 - syst_JES_EtaIntercalibration_Stat212: 5.435246084585315e-08 - syst_JES_EtaIntercalibration_Stat213: 9.473525320597397e-08 - syst_JES_EtaIntercalibration_Stat214: 4.659865600980354e-08 - syst_JES_EtaIntercalibration_Stat215: 2.559105068168204e-13 + syst_JES_EtaIntercalibration_Stat210: 3.08136999e-04 + syst_JES_EtaIntercalibration_Stat211: 5.30727145e-05 + syst_JES_EtaIntercalibration_Stat212: 5.43524608e-08 + syst_JES_EtaIntercalibration_Stat213: 9.47352532e-08 + syst_JES_EtaIntercalibration_Stat214: 4.65986560e-08 + syst_JES_EtaIntercalibration_Stat215: 2.55910507e-13 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 syst_JES_EtaIntercalibration_Stat219: 0.0 - syst_JES_EtaIntercalibration_Stat22: 0.00010562045824555014 - syst_JES_EtaIntercalibration_Stat220: 8.97288920861057e-18 - syst_JES_EtaIntercalibration_Stat221: 3.672614429803379e-08 - syst_JES_EtaIntercalibration_Stat222: 2.1847955181892884e-06 - syst_JES_EtaIntercalibration_Stat223: 7.724160973853406e-08 - syst_JES_EtaIntercalibration_Stat224: 1.4257351393228685e-18 - syst_JES_EtaIntercalibration_Stat225: 2.341874196023348e-18 - syst_JES_EtaIntercalibration_Stat226: 1.8983276850954892e-30 + syst_JES_EtaIntercalibration_Stat22: 1.05620458e-04 + syst_JES_EtaIntercalibration_Stat220: 8.97288921e-18 + syst_JES_EtaIntercalibration_Stat221: 3.67261443e-08 + syst_JES_EtaIntercalibration_Stat222: 2.18479552e-06 + syst_JES_EtaIntercalibration_Stat223: 7.72416097e-08 + syst_JES_EtaIntercalibration_Stat224: 1.42573514e-18 + syst_JES_EtaIntercalibration_Stat225: 2.34187420e-18 + syst_JES_EtaIntercalibration_Stat226: 1.89832769e-30 syst_JES_EtaIntercalibration_Stat227: 0.0 syst_JES_EtaIntercalibration_Stat228: 0.0 syst_JES_EtaIntercalibration_Stat229: 0.0 - syst_JES_EtaIntercalibration_Stat23: 0.00010562045824555014 + syst_JES_EtaIntercalibration_Stat23: 1.05620458e-04 syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 - syst_JES_EtaIntercalibration_Stat232: 5.773791367030853e-39 - syst_JES_EtaIntercalibration_Stat233: 1.1182986039068457e-23 - syst_JES_EtaIntercalibration_Stat234: 3.0441505793899225e-18 - syst_JES_EtaIntercalibration_Stat235: 2.882066055800942e-18 + syst_JES_EtaIntercalibration_Stat232: 5.77379137e-39 + syst_JES_EtaIntercalibration_Stat233: 1.11829860e-23 + syst_JES_EtaIntercalibration_Stat234: 3.04415058e-18 + syst_JES_EtaIntercalibration_Stat235: 2.88206606e-18 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 @@ -35403,340 +35403,340 @@ bins: syst_JES_EtaIntercalibration_Stat242: 0.0 syst_JES_EtaIntercalibration_Stat243: 0.0 syst_JES_EtaIntercalibration_Stat244: 0.0 - syst_JES_EtaIntercalibration_Stat245: 5.812762510201152e-39 - syst_JES_EtaIntercalibration_Stat25: 8.151031100419136e-05 - syst_JES_EtaIntercalibration_Stat26: 0.0025003281284663417 - syst_JES_EtaIntercalibration_Stat27: 0.0076051832818151074 - syst_JES_EtaIntercalibration_Stat28: 0.03604381018635516 - syst_JES_EtaIntercalibration_Stat29: 0.005819383730258729 + syst_JES_EtaIntercalibration_Stat245: 5.81276251e-39 + syst_JES_EtaIntercalibration_Stat25: 8.15103110e-05 + syst_JES_EtaIntercalibration_Stat26: 2.50032813e-03 + syst_JES_EtaIntercalibration_Stat27: 7.60518328e-03 + syst_JES_EtaIntercalibration_Stat28: 3.60438102e-02 + syst_JES_EtaIntercalibration_Stat29: 5.81938373e-03 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 0.00041954481056854934 + syst_JES_EtaIntercalibration_Stat30: 4.19544811e-04 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 0.00015057996837229047 - syst_JES_EtaIntercalibration_Stat36: 0.005961559087185163 - syst_JES_EtaIntercalibration_Stat37: 0.013789876023735676 - syst_JES_EtaIntercalibration_Stat38: 0.01269112149299659 - syst_JES_EtaIntercalibration_Stat39: 0.00431876426191567 - syst_JES_EtaIntercalibration_Stat4: 0.0001117605783583818 - syst_JES_EtaIntercalibration_Stat40: 7.799424786482655e-05 + syst_JES_EtaIntercalibration_Stat35: 1.50579968e-04 + syst_JES_EtaIntercalibration_Stat36: 5.96155909e-03 + syst_JES_EtaIntercalibration_Stat37: 1.37898760e-02 + syst_JES_EtaIntercalibration_Stat38: 1.26911215e-02 + syst_JES_EtaIntercalibration_Stat39: 4.31876426e-03 + syst_JES_EtaIntercalibration_Stat4: 1.11760578e-04 + syst_JES_EtaIntercalibration_Stat40: 7.79942479e-05 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 - syst_JES_EtaIntercalibration_Stat44: 0.00010562045824555014 + syst_JES_EtaIntercalibration_Stat44: 1.05620458e-04 syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 - syst_JES_EtaIntercalibration_Stat47: 8.154495202034276e-05 - syst_JES_EtaIntercalibration_Stat48: 0.0034332176143524605 - syst_JES_EtaIntercalibration_Stat49: 0.01665916686842412 - syst_JES_EtaIntercalibration_Stat5: 0.009293524842598743 - syst_JES_EtaIntercalibration_Stat50: 0.01887093425562179 - syst_JES_EtaIntercalibration_Stat51: 0.0020362982394531506 - syst_JES_EtaIntercalibration_Stat52: 0.008281405027530052 + syst_JES_EtaIntercalibration_Stat47: 8.15449520e-05 + syst_JES_EtaIntercalibration_Stat48: 3.43321761e-03 + syst_JES_EtaIntercalibration_Stat49: 1.66591669e-02 + syst_JES_EtaIntercalibration_Stat5: 9.29352484e-03 + syst_JES_EtaIntercalibration_Stat50: 1.88709343e-02 + syst_JES_EtaIntercalibration_Stat51: 2.03629824e-03 + syst_JES_EtaIntercalibration_Stat52: 8.28140503e-03 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 syst_JES_EtaIntercalibration_Stat56: 0.0 - syst_JES_EtaIntercalibration_Stat57: 0.003341583863978278 - syst_JES_EtaIntercalibration_Stat58: 0.013556753593689014 - syst_JES_EtaIntercalibration_Stat59: 0.015130934166468374 - syst_JES_EtaIntercalibration_Stat6: 0.016866874331659672 - syst_JES_EtaIntercalibration_Stat60: 0.037376022350565884 - syst_JES_EtaIntercalibration_Stat61: 0.010922813190748984 - syst_JES_EtaIntercalibration_Stat62: 8.882822566616987e-05 + syst_JES_EtaIntercalibration_Stat57: 3.34158386e-03 + syst_JES_EtaIntercalibration_Stat58: 1.35567536e-02 + syst_JES_EtaIntercalibration_Stat59: 1.51309342e-02 + syst_JES_EtaIntercalibration_Stat6: 1.68668743e-02 + syst_JES_EtaIntercalibration_Stat60: 3.73760224e-02 + syst_JES_EtaIntercalibration_Stat61: 1.09228132e-02 + syst_JES_EtaIntercalibration_Stat62: 8.88282257e-05 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 - syst_JES_EtaIntercalibration_Stat69: 0.00012078628595581536 - syst_JES_EtaIntercalibration_Stat7: 0.008060612867983426 - syst_JES_EtaIntercalibration_Stat70: 0.02977763716281062 - syst_JES_EtaIntercalibration_Stat71: 0.23078376784340793 - syst_JES_EtaIntercalibration_Stat72: 0.3235637495146822 - syst_JES_EtaIntercalibration_Stat73: 0.10086728855283066 - syst_JES_EtaIntercalibration_Stat74: 0.012199807908323802 + syst_JES_EtaIntercalibration_Stat69: 1.20786286e-04 + syst_JES_EtaIntercalibration_Stat7: 8.06061287e-03 + syst_JES_EtaIntercalibration_Stat70: 2.97776372e-02 + syst_JES_EtaIntercalibration_Stat71: 2.30783768e-01 + syst_JES_EtaIntercalibration_Stat72: 3.23563750e-01 + syst_JES_EtaIntercalibration_Stat73: 1.00867289e-01 + syst_JES_EtaIntercalibration_Stat74: 1.21998079e-02 syst_JES_EtaIntercalibration_Stat75: 0.0 syst_JES_EtaIntercalibration_Stat76: 0.0 syst_JES_EtaIntercalibration_Stat77: 0.0 syst_JES_EtaIntercalibration_Stat78: 0.0 - syst_JES_EtaIntercalibration_Stat79: 0.002599947762456007 + syst_JES_EtaIntercalibration_Stat79: 2.59994776e-03 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 0.04997358001984649 - syst_JES_EtaIntercalibration_Stat81: 0.2614946796781915 - syst_JES_EtaIntercalibration_Stat82: 0.1731257563160375 - syst_JES_EtaIntercalibration_Stat83: 0.04171302074892203 - syst_JES_EtaIntercalibration_Stat84: 4.442568932498403e-05 - syst_JES_EtaIntercalibration_Stat85: 0.00010562045824555014 - syst_JES_EtaIntercalibration_Stat86: 0.00010562045824555014 - syst_JES_EtaIntercalibration_Stat87: 0.00010562045824555014 - syst_JES_EtaIntercalibration_Stat88: 0.00010562045824555014 - syst_JES_EtaIntercalibration_Stat89: 0.00010562045824555014 + syst_JES_EtaIntercalibration_Stat80: 4.99735800e-02 + syst_JES_EtaIntercalibration_Stat81: 2.61494680e-01 + syst_JES_EtaIntercalibration_Stat82: 1.73125756e-01 + syst_JES_EtaIntercalibration_Stat83: 4.17130207e-02 + syst_JES_EtaIntercalibration_Stat84: 4.44256893e-05 + syst_JES_EtaIntercalibration_Stat85: 1.05620458e-04 + syst_JES_EtaIntercalibration_Stat86: 1.05620458e-04 + syst_JES_EtaIntercalibration_Stat87: 1.05620458e-04 + syst_JES_EtaIntercalibration_Stat88: 1.05620458e-04 + syst_JES_EtaIntercalibration_Stat89: 1.05620458e-04 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 0.12775858513227203 - syst_JES_EtaIntercalibration_Stat92: 0.6321026736219362 - syst_JES_EtaIntercalibration_Stat93: 0.7669219305118351 - syst_JES_EtaIntercalibration_Stat94: 0.2562737745068738 - syst_JES_EtaIntercalibration_Stat95: 0.002200885503609854 - syst_JES_EtaIntercalibration_Stat96: 0.00636056989358658 - syst_JES_EtaIntercalibration_Stat97: 0.00010562045824555014 - syst_JES_EtaIntercalibration_Stat98: 0.00010562045824555014 - syst_JES_EtaIntercalibration_Stat99: 0.00010562045824555014 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.001646314292593728 - syst_JES_Flavour_Comp: 1.5702901005865124 - syst_JES_Gjet_Generator: 23.480674500533414 - syst_JES_Gjet_OOC: 13.098923114134228 - syst_JES_Gjet_Purity: 5.04877341539507 + syst_JES_EtaIntercalibration_Stat91: 1.27758585e-01 + syst_JES_EtaIntercalibration_Stat92: 6.32102674e-01 + syst_JES_EtaIntercalibration_Stat93: 7.66921931e-01 + syst_JES_EtaIntercalibration_Stat94: 2.56273775e-01 + syst_JES_EtaIntercalibration_Stat95: 2.20088550e-03 + syst_JES_EtaIntercalibration_Stat96: 6.36056989e-03 + syst_JES_EtaIntercalibration_Stat97: 1.05620458e-04 + syst_JES_EtaIntercalibration_Stat98: 1.05620458e-04 + syst_JES_EtaIntercalibration_Stat99: 1.05620458e-04 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.64631429e-03 + syst_JES_Flavour_Comp: 1.57029010e+00 + syst_JES_Gjet_Generator: 2.34806745e+01 + syst_JES_Gjet_OOC: 1.30989231e+01 + syst_JES_Gjet_Purity: 5.04877342e+00 syst_JES_Gjet_Stat1: 0.0 - syst_JES_Gjet_Stat10: 0.2633728678129165 - syst_JES_Gjet_Stat11: 0.23253464258041207 - syst_JES_Gjet_Stat12: 0.06928552807044196 - syst_JES_Gjet_Stat13: 0.006901689720640881 - syst_JES_Gjet_Stat14: 1.460494802284486e-08 - syst_JES_Gjet_Stat15: 2.9311183006434165e-06 - syst_JES_Gjet_Stat2: 0.10941364951412598 + syst_JES_Gjet_Stat10: 2.63372868e-01 + syst_JES_Gjet_Stat11: 2.32534643e-01 + syst_JES_Gjet_Stat12: 6.92855281e-02 + syst_JES_Gjet_Stat13: 6.90168972e-03 + syst_JES_Gjet_Stat14: 1.46049480e-08 + syst_JES_Gjet_Stat15: 2.93111830e-06 + syst_JES_Gjet_Stat2: 1.09413650e-01 syst_JES_Gjet_Stat3: 0.0 - syst_JES_Gjet_Stat4: 0.08851645652080747 - syst_JES_Gjet_Stat5: 0.18260128696151073 - syst_JES_Gjet_Stat6: 0.67340230917335 - syst_JES_Gjet_Stat7: 1.3943779285043205 - syst_JES_Gjet_Stat8: 0.9268175912767302 - syst_JES_Gjet_Stat9: 0.9843653437621622 - syst_JES_Gjet_Veto: 5.061454410542487 - syst_JES_Gjet_dPhi: 2.1599307280558793 - syst_JES_LArESZee: 17.856020693312377 - syst_JES_LArEsmear: 1.533547113720345 - syst_JES_LAr_JVT: 2.5593782448086877 - syst_JES_MJB_Alpha: 0.00040703193977868616 - syst_JES_MJB_Asym: 1.1233769370439812e-11 - syst_JES_MJB_Beta: 7.576856257710053e-09 - syst_JES_MJB_Stat1: 0.03765478455654739 - syst_JES_MJB_Stat10: 1.2490811452824031e-30 + syst_JES_Gjet_Stat4: 8.85164565e-02 + syst_JES_Gjet_Stat5: 1.82601287e-01 + syst_JES_Gjet_Stat6: 6.73402309e-01 + syst_JES_Gjet_Stat7: 1.39437793e+00 + syst_JES_Gjet_Stat8: 9.26817591e-01 + syst_JES_Gjet_Stat9: 9.84365344e-01 + syst_JES_Gjet_Veto: 5.06145441e+00 + syst_JES_Gjet_dPhi: 2.15993073e+00 + syst_JES_LArESZee: 1.78560207e+01 + syst_JES_LArEsmear: 1.53354711e+00 + syst_JES_LAr_JVT: 2.55937824e+00 + syst_JES_MJB_Alpha: 4.07031940e-04 + syst_JES_MJB_Asym: 1.12337694e-11 + syst_JES_MJB_Beta: 7.57685626e-09 + syst_JES_MJB_Stat1: 3.76547846e-02 + syst_JES_MJB_Stat10: 1.24908115e-30 syst_JES_MJB_Stat11: 0.0 - syst_JES_MJB_Stat12: 6.608639856279051e-39 + syst_JES_MJB_Stat12: 6.60863986e-39 syst_JES_MJB_Stat13: 0.0 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 0.0003040615192687164 - syst_JES_MJB_Stat3: 0.00010363726007088377 - syst_JES_MJB_Stat4: 4.971851843126462e-09 + syst_JES_MJB_Stat2: 3.04061519e-04 + syst_JES_MJB_Stat3: 1.03637260e-04 + syst_JES_MJB_Stat4: 4.97185184e-09 syst_JES_MJB_Stat5: 0.0 syst_JES_MJB_Stat6: 0.0 syst_JES_MJB_Stat7: 0.0 syst_JES_MJB_Stat8: 0.0 - syst_JES_MJB_Stat9: 9.534939695666669e-31 - syst_JES_MJB_Threshold: 0.007581186389370872 - syst_JES_Pileup_MuOffset: 3.9247869364719446e-11 - syst_JES_Pileup_NPVOffset: 1.3661284712646904 - syst_JES_Pileup_Pt_term: 5.642425542264602 - syst_JES_PunchThrough_MC15: 0.10209573484701771 + syst_JES_MJB_Stat9: 9.53493970e-31 + syst_JES_MJB_Threshold: 7.58118639e-03 + syst_JES_Pileup_MuOffset: 3.92478694e-11 + syst_JES_Pileup_NPVOffset: 1.36612847e+00 + syst_JES_Pileup_Pt_term: 5.64242554e+00 + syst_JES_PunchThrough_MC15: 1.02095735e-01 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 20.353071021347123 - syst_JES_Zjet_MuScale: 1.4355236631626802 - syst_JES_Zjet_MuSmearID: 0.22358244005288072 - syst_JES_Zjet_MuSmearMS: 1.2603612894721894 - syst_JES_Zjet_OOC: 8.931924540657517 - syst_JES_Zjet_Stat1: 0.104537837527854 - syst_JES_Zjet_Stat10: 2.92555375100168 - syst_JES_Zjet_Stat11: 1.0407800572167012 - syst_JES_Zjet_Stat12: 0.4320595169843502 - syst_JES_Zjet_Stat13: 0.08106314945769133 - syst_JES_Zjet_Stat2: 0.00024222730543850752 - syst_JES_Zjet_Stat3: 0.04255908599147778 - syst_JES_Zjet_Stat4: 0.04350991000622732 - syst_JES_Zjet_Stat5: 0.06419846318254037 - syst_JES_Zjet_Stat6: 0.20114697984309882 - syst_JES_Zjet_Stat7: 0.3811156345192362 - syst_JES_Zjet_Stat8: 0.7894401101413584 - syst_JES_Zjet_Stat9: 1.9821005902829454 - syst_JES_Zjet_Veto: 1.5312357754441348 - syst_JES_Zjet_dPhi: 1.8965581325126843 + syst_JES_Zjet_MC: 2.03530710e+01 + syst_JES_Zjet_MuScale: 1.43552366e+00 + syst_JES_Zjet_MuSmearID: 2.23582440e-01 + syst_JES_Zjet_MuSmearMS: 1.26036129e+00 + syst_JES_Zjet_OOC: 8.93192454e+00 + syst_JES_Zjet_Stat1: 1.04537838e-01 + syst_JES_Zjet_Stat10: 2.92555375e+00 + syst_JES_Zjet_Stat11: 1.04078006e+00 + syst_JES_Zjet_Stat12: 4.32059517e-01 + syst_JES_Zjet_Stat13: 8.10631495e-02 + syst_JES_Zjet_Stat2: 2.42227305e-04 + syst_JES_Zjet_Stat3: 4.25590860e-02 + syst_JES_Zjet_Stat4: 4.35099100e-02 + syst_JES_Zjet_Stat5: 6.41984632e-02 + syst_JES_Zjet_Stat6: 2.01146980e-01 + syst_JES_Zjet_Stat7: 3.81115635e-01 + syst_JES_Zjet_Stat8: 7.89440110e-01 + syst_JES_Zjet_Stat9: 1.98210059e+00 + syst_JES_Zjet_Veto: 1.53123578e+00 + syst_JES_Zjet_dPhi: 1.89655813e+00 syst_PRW: 0.07342 syst_Unfolding_bias: 3.302 - syst_cleaning: 5.096559501271421 + syst_cleaning: 5.09655950e+00 syst_lumi: 21.75 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 4.867484026681546 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 20.06964872637287 - syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.5397694518409887e-11 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 4.86748403e+00 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 2.00696487e+01 + syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.53976945e-11 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 27.938541032058204 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 3.85721774277331e-11 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 8.928471929731314 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 2.79385410e+01 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 3.85721774e-11 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 8.92847193e+00 - stat: 4.338 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 8.410951595984843 - syst_JER_NP1: 1.0290697388904215 - syst_JER_NP2: 0.3515163865312683 - syst_JER_NP3: 1.947540500220727 - syst_JER_NP4: 0.33305090827079276 - syst_JER_NP5: 0.42889015784930296 - syst_JER_NP6: 0.6618245292371687 - syst_JER_NP7: 0.48832008713547714 - syst_JER_NP8: 0.42148886995981283 - syst_JES_EtaIntercalibration_Modelling: 11.275892193081663 - syst_JES_EtaIntercalibration_NonClosure: 3.3908358659775914e-10 - syst_JES_EtaIntercalibration_Stat0: 1.0367190108703515e-05 + syst_JER_NP0: 8.41095160e+00 + syst_JER_NP1: 1.02906974e+00 + syst_JER_NP2: 3.51516387e-01 + syst_JER_NP3: 1.94754050e+00 + syst_JER_NP4: 3.33050908e-01 + syst_JER_NP5: 4.28890158e-01 + syst_JER_NP6: 6.61824529e-01 + syst_JER_NP7: 4.88320087e-01 + syst_JER_NP8: 4.21488870e-01 + syst_JES_EtaIntercalibration_Modelling: 1.12758922e+01 + syst_JES_EtaIntercalibration_NonClosure: 3.39083587e-10 + syst_JES_EtaIntercalibration_Stat0: 1.03671901e-05 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 0.0010506474462444574 - syst_JES_EtaIntercalibration_Stat101: 0.02279644873659053 - syst_JES_EtaIntercalibration_Stat102: 0.1102054593702145 - syst_JES_EtaIntercalibration_Stat103: 0.13552836188414588 - syst_JES_EtaIntercalibration_Stat104: 0.01390996286839041 - syst_JES_EtaIntercalibration_Stat105: 9.804583402037029e-06 - syst_JES_EtaIntercalibration_Stat106: 1.0367190108703515e-05 - syst_JES_EtaIntercalibration_Stat107: 1.0367190108703515e-05 - syst_JES_EtaIntercalibration_Stat108: 1.0367190108703515e-05 - syst_JES_EtaIntercalibration_Stat109: 1.0367190108703515e-05 + syst_JES_EtaIntercalibration_Stat100: 1.05064745e-03 + syst_JES_EtaIntercalibration_Stat101: 2.27964487e-02 + syst_JES_EtaIntercalibration_Stat102: 1.10205459e-01 + syst_JES_EtaIntercalibration_Stat103: 1.35528362e-01 + syst_JES_EtaIntercalibration_Stat104: 1.39099629e-02 + syst_JES_EtaIntercalibration_Stat105: 9.80458340e-06 + syst_JES_EtaIntercalibration_Stat106: 1.03671901e-05 + syst_JES_EtaIntercalibration_Stat107: 1.03671901e-05 + syst_JES_EtaIntercalibration_Stat108: 1.03671901e-05 + syst_JES_EtaIntercalibration_Stat109: 1.03671901e-05 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 0.0005374614474546057 - syst_JES_EtaIntercalibration_Stat111: 0.14034987246164496 - syst_JES_EtaIntercalibration_Stat112: 1.0359383138005853 - syst_JES_EtaIntercalibration_Stat113: 1.2219137571858334 - syst_JES_EtaIntercalibration_Stat114: 0.3363799451513125 - syst_JES_EtaIntercalibration_Stat115: 0.007550302041640454 - syst_JES_EtaIntercalibration_Stat116: 0.0018905503519162745 - syst_JES_EtaIntercalibration_Stat117: 1.0367190108703515e-05 - syst_JES_EtaIntercalibration_Stat118: 1.0367190108703515e-05 - syst_JES_EtaIntercalibration_Stat119: 1.0367190108703515e-05 + syst_JES_EtaIntercalibration_Stat110: 5.37461447e-04 + syst_JES_EtaIntercalibration_Stat111: 1.40349872e-01 + syst_JES_EtaIntercalibration_Stat112: 1.03593831e+00 + syst_JES_EtaIntercalibration_Stat113: 1.22191376e+00 + syst_JES_EtaIntercalibration_Stat114: 3.36379945e-01 + syst_JES_EtaIntercalibration_Stat115: 7.55030204e-03 + syst_JES_EtaIntercalibration_Stat116: 1.89055035e-03 + syst_JES_EtaIntercalibration_Stat117: 1.03671901e-05 + syst_JES_EtaIntercalibration_Stat118: 1.03671901e-05 + syst_JES_EtaIntercalibration_Stat119: 1.03671901e-05 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 0.008401312442112839 - syst_JES_EtaIntercalibration_Stat121: 0.3303213132693681 - syst_JES_EtaIntercalibration_Stat122: 0.9289053275226706 - syst_JES_EtaIntercalibration_Stat123: 0.9123555707617507 - syst_JES_EtaIntercalibration_Stat124: 0.16274430619840438 - syst_JES_EtaIntercalibration_Stat125: 0.0013856406460551018 - syst_JES_EtaIntercalibration_Stat126: 1.0367190108703515e-05 - syst_JES_EtaIntercalibration_Stat127: 1.0367190108703515e-05 - syst_JES_EtaIntercalibration_Stat128: 1.0367190108703515e-05 - syst_JES_EtaIntercalibration_Stat129: 0.025500724239715233 + syst_JES_EtaIntercalibration_Stat120: 8.40131244e-03 + syst_JES_EtaIntercalibration_Stat121: 3.30321313e-01 + syst_JES_EtaIntercalibration_Stat122: 9.28905328e-01 + syst_JES_EtaIntercalibration_Stat123: 9.12355571e-01 + syst_JES_EtaIntercalibration_Stat124: 1.62744306e-01 + syst_JES_EtaIntercalibration_Stat125: 1.38564065e-03 + syst_JES_EtaIntercalibration_Stat126: 1.03671901e-05 + syst_JES_EtaIntercalibration_Stat127: 1.03671901e-05 + syst_JES_EtaIntercalibration_Stat128: 1.03671901e-05 + syst_JES_EtaIntercalibration_Stat129: 2.55007242e-02 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 0.5964835873685043 - syst_JES_EtaIntercalibration_Stat131: 2.0855346436825255 - syst_JES_EtaIntercalibration_Stat132: 3.183065307215672 - syst_JES_EtaIntercalibration_Stat133: 0.8244689245205061 - syst_JES_EtaIntercalibration_Stat134: 0.017399554038825246 - syst_JES_EtaIntercalibration_Stat135: 0.0018870693548462918 + syst_JES_EtaIntercalibration_Stat130: 5.96483587e-01 + syst_JES_EtaIntercalibration_Stat131: 2.08553464e+00 + syst_JES_EtaIntercalibration_Stat132: 3.18306531e+00 + syst_JES_EtaIntercalibration_Stat133: 8.24468925e-01 + syst_JES_EtaIntercalibration_Stat134: 1.73995540e-02 + syst_JES_EtaIntercalibration_Stat135: 1.88706935e-03 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 syst_JES_EtaIntercalibration_Stat138: 0.0 - syst_JES_EtaIntercalibration_Stat139: 0.0023732860526072285 - syst_JES_EtaIntercalibration_Stat14: 0.0015603364600718997 - syst_JES_EtaIntercalibration_Stat140: 0.7195029308487909 - syst_JES_EtaIntercalibration_Stat141: 2.8662147512006144 - syst_JES_EtaIntercalibration_Stat142: 1.6739106158932144 - syst_JES_EtaIntercalibration_Stat143: 0.4801234710988414 - syst_JES_EtaIntercalibration_Stat144: 0.006737362169276638 + syst_JES_EtaIntercalibration_Stat139: 2.37328605e-03 + syst_JES_EtaIntercalibration_Stat14: 1.56033646e-03 + syst_JES_EtaIntercalibration_Stat140: 7.19502931e-01 + syst_JES_EtaIntercalibration_Stat141: 2.86621475e+00 + syst_JES_EtaIntercalibration_Stat142: 1.67391062e+00 + syst_JES_EtaIntercalibration_Stat143: 4.80123471e-01 + syst_JES_EtaIntercalibration_Stat144: 6.73736217e-03 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 0.0005250373391483696 - syst_JES_EtaIntercalibration_Stat148: 0.0390795803457509 - syst_JES_EtaIntercalibration_Stat149: 0.29569881636557155 - syst_JES_EtaIntercalibration_Stat15: 0.0015812267086980285 - syst_JES_EtaIntercalibration_Stat150: 0.45915126047959404 - syst_JES_EtaIntercalibration_Stat151: 0.2123138243261611 - syst_JES_EtaIntercalibration_Stat152: 0.004689694446336563 + syst_JES_EtaIntercalibration_Stat147: 5.25037339e-04 + syst_JES_EtaIntercalibration_Stat148: 3.90795803e-02 + syst_JES_EtaIntercalibration_Stat149: 2.95698816e-01 + syst_JES_EtaIntercalibration_Stat15: 1.58122671e-03 + syst_JES_EtaIntercalibration_Stat150: 4.59151260e-01 + syst_JES_EtaIntercalibration_Stat151: 2.12313824e-01 + syst_JES_EtaIntercalibration_Stat152: 4.68969445e-03 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 syst_JES_EtaIntercalibration_Stat156: 0.0 - syst_JES_EtaIntercalibration_Stat157: 0.0011440952888636506 - syst_JES_EtaIntercalibration_Stat158: 0.117277244489287 - syst_JES_EtaIntercalibration_Stat159: 0.4786700115946267 - syst_JES_EtaIntercalibration_Stat16: 0.0015417401424607845 - syst_JES_EtaIntercalibration_Stat160: 0.34770592326706196 - syst_JES_EtaIntercalibration_Stat161: 0.09734605937068022 - syst_JES_EtaIntercalibration_Stat162: 0.003282717025194222 + syst_JES_EtaIntercalibration_Stat157: 1.14409529e-03 + syst_JES_EtaIntercalibration_Stat158: 1.17277244e-01 + syst_JES_EtaIntercalibration_Stat159: 4.78670012e-01 + syst_JES_EtaIntercalibration_Stat16: 1.54174014e-03 + syst_JES_EtaIntercalibration_Stat160: 3.47705923e-01 + syst_JES_EtaIntercalibration_Stat161: 9.73460594e-02 + syst_JES_EtaIntercalibration_Stat162: 3.28271703e-03 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 0.0009892986553852179 - syst_JES_EtaIntercalibration_Stat166: 0.018604846142873638 - syst_JES_EtaIntercalibration_Stat167: 0.10128411573390964 - syst_JES_EtaIntercalibration_Stat168: 0.158983966723063 - syst_JES_EtaIntercalibration_Stat169: 0.04311121518816189 - syst_JES_EtaIntercalibration_Stat17: 8.581445726100002e-06 - syst_JES_EtaIntercalibration_Stat170: 0.006713581365582513 + syst_JES_EtaIntercalibration_Stat165: 9.89298655e-04 + syst_JES_EtaIntercalibration_Stat166: 1.86048461e-02 + syst_JES_EtaIntercalibration_Stat167: 1.01284116e-01 + syst_JES_EtaIntercalibration_Stat168: 1.58983967e-01 + syst_JES_EtaIntercalibration_Stat169: 4.31112152e-02 + syst_JES_EtaIntercalibration_Stat17: 8.58144573e-06 + syst_JES_EtaIntercalibration_Stat170: 6.71358137e-03 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 - syst_JES_EtaIntercalibration_Stat175: 0.0022499339990321226 - syst_JES_EtaIntercalibration_Stat176: 0.04650309044300174 - syst_JES_EtaIntercalibration_Stat177: 0.19476655256999337 - syst_JES_EtaIntercalibration_Stat178: 0.10226781409612705 - syst_JES_EtaIntercalibration_Stat179: 0.011633986075288212 + syst_JES_EtaIntercalibration_Stat175: 2.24993400e-03 + syst_JES_EtaIntercalibration_Stat176: 4.65030904e-02 + syst_JES_EtaIntercalibration_Stat177: 1.94766553e-01 + syst_JES_EtaIntercalibration_Stat178: 1.02267814e-01 + syst_JES_EtaIntercalibration_Stat179: 1.16339861e-02 syst_JES_EtaIntercalibration_Stat18: 0.0 - syst_JES_EtaIntercalibration_Stat180: 0.0010082143075755272 + syst_JES_EtaIntercalibration_Stat180: 1.00821431e-03 syst_JES_EtaIntercalibration_Stat181: 0.0 - syst_JES_EtaIntercalibration_Stat182: 0.0008499571812744451 - syst_JES_EtaIntercalibration_Stat183: 0.00959790939475884 - syst_JES_EtaIntercalibration_Stat184: 0.04771141870663668 - syst_JES_EtaIntercalibration_Stat185: 0.06058785583761815 - syst_JES_EtaIntercalibration_Stat186: 0.018524299581900525 - syst_JES_EtaIntercalibration_Stat187: 5.347876026984919e-05 + syst_JES_EtaIntercalibration_Stat182: 8.49957181e-04 + syst_JES_EtaIntercalibration_Stat183: 9.59790939e-03 + syst_JES_EtaIntercalibration_Stat184: 4.77114187e-02 + syst_JES_EtaIntercalibration_Stat185: 6.05878558e-02 + syst_JES_EtaIntercalibration_Stat186: 1.85242996e-02 + syst_JES_EtaIntercalibration_Stat187: 5.34787603e-05 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 - syst_JES_EtaIntercalibration_Stat192: 0.0005888106720330398 - syst_JES_EtaIntercalibration_Stat193: 0.024798674863790605 - syst_JES_EtaIntercalibration_Stat194: 0.06992859554574224 - syst_JES_EtaIntercalibration_Stat195: 0.053384232690936 - syst_JES_EtaIntercalibration_Stat196: 0.03989727833762599 - syst_JES_EtaIntercalibration_Stat197: 0.0008671633107437145 - syst_JES_EtaIntercalibration_Stat198: 0.0015743902565755418 - syst_JES_EtaIntercalibration_Stat199: 0.0011442704750189092 + syst_JES_EtaIntercalibration_Stat192: 5.88810672e-04 + syst_JES_EtaIntercalibration_Stat193: 2.47986749e-02 + syst_JES_EtaIntercalibration_Stat194: 6.99285955e-02 + syst_JES_EtaIntercalibration_Stat195: 5.33842327e-02 + syst_JES_EtaIntercalibration_Stat196: 3.98972783e-02 + syst_JES_EtaIntercalibration_Stat197: 8.67163311e-04 + syst_JES_EtaIntercalibration_Stat198: 1.57439026e-03 + syst_JES_EtaIntercalibration_Stat199: 1.14427048e-03 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 0.0014323040764795724 - syst_JES_EtaIntercalibration_Stat201: 0.0012853570515619385 - syst_JES_EtaIntercalibration_Stat202: 1.0554287286805242e-06 + syst_JES_EtaIntercalibration_Stat200: 1.43230408e-03 + syst_JES_EtaIntercalibration_Stat201: 1.28535705e-03 + syst_JES_EtaIntercalibration_Stat202: 1.05542873e-06 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 - syst_JES_EtaIntercalibration_Stat207: 0.0002994283395417842 - syst_JES_EtaIntercalibration_Stat208: 0.0007222806379794492 - syst_JES_EtaIntercalibration_Stat209: 0.0019062866206318503 + syst_JES_EtaIntercalibration_Stat207: 2.99428340e-04 + syst_JES_EtaIntercalibration_Stat208: 7.22280638e-04 + syst_JES_EtaIntercalibration_Stat209: 1.90628662e-03 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 0.0003862892310173816 - syst_JES_EtaIntercalibration_Stat211: 0.00014682528599239985 - syst_JES_EtaIntercalibration_Stat212: 3.830282887725135e-06 - syst_JES_EtaIntercalibration_Stat213: 6.67240067367061e-06 - syst_JES_EtaIntercalibration_Stat214: 3.117077392313993e-06 - syst_JES_EtaIntercalibration_Stat215: 1.8905334494899252e-09 + syst_JES_EtaIntercalibration_Stat210: 3.86289231e-04 + syst_JES_EtaIntercalibration_Stat211: 1.46825286e-04 + syst_JES_EtaIntercalibration_Stat212: 3.83028289e-06 + syst_JES_EtaIntercalibration_Stat213: 6.67240067e-06 + syst_JES_EtaIntercalibration_Stat214: 3.11707739e-06 + syst_JES_EtaIntercalibration_Stat215: 1.89053345e-09 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 syst_JES_EtaIntercalibration_Stat219: 0.0 - syst_JES_EtaIntercalibration_Stat22: 1.0367190108703515e-05 - syst_JES_EtaIntercalibration_Stat220: 1.3276169440015445e-12 - syst_JES_EtaIntercalibration_Stat221: 2.5870757623231678e-06 - syst_JES_EtaIntercalibration_Stat222: 2.6576323052672284e-05 - syst_JES_EtaIntercalibration_Stat223: 5.438525972172975e-06 - syst_JES_EtaIntercalibration_Stat224: 2.1104399422869156e-13 - syst_JES_EtaIntercalibration_Stat225: 3.465702382995401e-13 - syst_JES_EtaIntercalibration_Stat226: 5.380615833714188e-22 - syst_JES_EtaIntercalibration_Stat227: 6.872777604433305e-36 + syst_JES_EtaIntercalibration_Stat22: 1.03671901e-05 + syst_JES_EtaIntercalibration_Stat220: 1.32761694e-12 + syst_JES_EtaIntercalibration_Stat221: 2.58707576e-06 + syst_JES_EtaIntercalibration_Stat222: 2.65763231e-05 + syst_JES_EtaIntercalibration_Stat223: 5.43852597e-06 + syst_JES_EtaIntercalibration_Stat224: 2.11043994e-13 + syst_JES_EtaIntercalibration_Stat225: 3.46570238e-13 + syst_JES_EtaIntercalibration_Stat226: 5.38061583e-22 + syst_JES_EtaIntercalibration_Stat227: 6.87277760e-36 syst_JES_EtaIntercalibration_Stat228: 0.0 syst_JES_EtaIntercalibration_Stat229: 0.0 - syst_JES_EtaIntercalibration_Stat23: 1.0367190108703515e-05 + syst_JES_EtaIntercalibration_Stat23: 1.03671901e-05 syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 - syst_JES_EtaIntercalibration_Stat232: 2.0221692874997966e-28 - syst_JES_EtaIntercalibration_Stat233: 5.2628363787980334e-17 - syst_JES_EtaIntercalibration_Stat234: 4.5069666073757415e-13 - syst_JES_EtaIntercalibration_Stat235: 4.2607038042440826e-13 - syst_JES_EtaIntercalibration_Stat236: 1.710852161935683e-35 - syst_JES_EtaIntercalibration_Stat237: 1.2973060548690891e-35 + syst_JES_EtaIntercalibration_Stat232: 2.02216929e-28 + syst_JES_EtaIntercalibration_Stat233: 5.26283638e-17 + syst_JES_EtaIntercalibration_Stat234: 4.50696661e-13 + syst_JES_EtaIntercalibration_Stat235: 4.26070380e-13 + syst_JES_EtaIntercalibration_Stat236: 1.71085216e-35 + syst_JES_EtaIntercalibration_Stat237: 1.29730605e-35 syst_JES_EtaIntercalibration_Stat238: 0.0 syst_JES_EtaIntercalibration_Stat239: 0.0 syst_JES_EtaIntercalibration_Stat24: 0.0 @@ -35745,340 +35745,340 @@ bins: syst_JES_EtaIntercalibration_Stat242: 0.0 syst_JES_EtaIntercalibration_Stat243: 0.0 syst_JES_EtaIntercalibration_Stat244: 0.0 - syst_JES_EtaIntercalibration_Stat245: 2.036025689558052e-28 - syst_JES_EtaIntercalibration_Stat25: 8.377929756210659e-06 - syst_JES_EtaIntercalibration_Stat26: 0.0004982732382940106 - syst_JES_EtaIntercalibration_Stat27: 0.0027230884611962203 - syst_JES_EtaIntercalibration_Stat28: 0.01622678609583549 - syst_JES_EtaIntercalibration_Stat29: 0.0024168508435565483 + syst_JES_EtaIntercalibration_Stat245: 2.03602569e-28 + syst_JES_EtaIntercalibration_Stat25: 8.37792976e-06 + syst_JES_EtaIntercalibration_Stat26: 4.98273238e-04 + syst_JES_EtaIntercalibration_Stat27: 2.72308846e-03 + syst_JES_EtaIntercalibration_Stat28: 1.62267861e-02 + syst_JES_EtaIntercalibration_Stat29: 2.41685084e-03 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 6.358514879278022e-05 + syst_JES_EtaIntercalibration_Stat30: 6.35851488e-05 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 1.4504161704490198e-05 - syst_JES_EtaIntercalibration_Stat36: 0.001597414820107789 - syst_JES_EtaIntercalibration_Stat37: 0.004824510622850778 - syst_JES_EtaIntercalibration_Stat38: 0.00460143868806268 - syst_JES_EtaIntercalibration_Stat39: 0.002595985432836633 - syst_JES_EtaIntercalibration_Stat4: 1.1487826981200577e-05 - syst_JES_EtaIntercalibration_Stat40: 5.676796521806995e-06 + syst_JES_EtaIntercalibration_Stat35: 1.45041617e-05 + syst_JES_EtaIntercalibration_Stat36: 1.59741482e-03 + syst_JES_EtaIntercalibration_Stat37: 4.82451062e-03 + syst_JES_EtaIntercalibration_Stat38: 4.60143869e-03 + syst_JES_EtaIntercalibration_Stat39: 2.59598543e-03 + syst_JES_EtaIntercalibration_Stat4: 1.14878270e-05 + syst_JES_EtaIntercalibration_Stat40: 5.67679652e-06 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 - syst_JES_EtaIntercalibration_Stat44: 1.0367190108703515e-05 + syst_JES_EtaIntercalibration_Stat44: 1.03671901e-05 syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 - syst_JES_EtaIntercalibration_Stat47: 8.381393857825797e-06 - syst_JES_EtaIntercalibration_Stat48: 0.0006645879074283551 - syst_JES_EtaIntercalibration_Stat49: 0.0038135414888919193 - syst_JES_EtaIntercalibration_Stat5: 0.00103214871384893 - syst_JES_EtaIntercalibration_Stat50: 0.00429522930121315 - syst_JES_EtaIntercalibration_Stat51: 0.0024492515183214647 - syst_JES_EtaIntercalibration_Stat52: 0.0010680779126543158 + syst_JES_EtaIntercalibration_Stat47: 8.38139386e-06 + syst_JES_EtaIntercalibration_Stat48: 6.64587907e-04 + syst_JES_EtaIntercalibration_Stat49: 3.81354149e-03 + syst_JES_EtaIntercalibration_Stat5: 1.03214871e-03 + syst_JES_EtaIntercalibration_Stat50: 4.29522930e-03 + syst_JES_EtaIntercalibration_Stat51: 2.44925152e-03 + syst_JES_EtaIntercalibration_Stat52: 1.06807791e-03 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 syst_JES_EtaIntercalibration_Stat56: 0.0 - syst_JES_EtaIntercalibration_Stat57: 0.0015508982532310106 - syst_JES_EtaIntercalibration_Stat58: 0.00411131742875687 - syst_JES_EtaIntercalibration_Stat59: 0.0042222045189687345 - syst_JES_EtaIntercalibration_Stat6: 0.004218105750215374 - syst_JES_EtaIntercalibration_Stat60: 0.0075440756060633435 - syst_JES_EtaIntercalibration_Stat61: 0.0019209497514706103 - syst_JES_EtaIntercalibration_Stat62: 8.753784781453107e-06 + syst_JES_EtaIntercalibration_Stat57: 1.55089825e-03 + syst_JES_EtaIntercalibration_Stat58: 4.11131743e-03 + syst_JES_EtaIntercalibration_Stat59: 4.22220452e-03 + syst_JES_EtaIntercalibration_Stat6: 4.21810575e-03 + syst_JES_EtaIntercalibration_Stat60: 7.54407561e-03 + syst_JES_EtaIntercalibration_Stat61: 1.92094975e-03 + syst_JES_EtaIntercalibration_Stat62: 8.75378478e-06 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 - syst_JES_EtaIntercalibration_Stat69: 1.2220464516539459e-05 - syst_JES_EtaIntercalibration_Stat7: 0.0010116649159059535 - syst_JES_EtaIntercalibration_Stat70: 0.001380955353188509 - syst_JES_EtaIntercalibration_Stat71: 0.05151639512572673 - syst_JES_EtaIntercalibration_Stat72: 0.0849184472008291 - syst_JES_EtaIntercalibration_Stat73: 0.04220395084586276 - syst_JES_EtaIntercalibration_Stat74: 0.003110407489381415 + syst_JES_EtaIntercalibration_Stat69: 1.22204645e-05 + syst_JES_EtaIntercalibration_Stat7: 1.01166492e-03 + syst_JES_EtaIntercalibration_Stat70: 1.38095535e-03 + syst_JES_EtaIntercalibration_Stat71: 5.15163951e-02 + syst_JES_EtaIntercalibration_Stat72: 8.49184472e-02 + syst_JES_EtaIntercalibration_Stat73: 4.22039508e-02 + syst_JES_EtaIntercalibration_Stat74: 3.11040749e-03 syst_JES_EtaIntercalibration_Stat75: 0.0 syst_JES_EtaIntercalibration_Stat76: 0.0 syst_JES_EtaIntercalibration_Stat77: 0.0 syst_JES_EtaIntercalibration_Stat78: 0.0 - syst_JES_EtaIntercalibration_Stat79: 0.0011733863845724475 + syst_JES_EtaIntercalibration_Stat79: 1.17338638e-03 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 0.006682433164648937 - syst_JES_EtaIntercalibration_Stat81: 0.03170415863889152 - syst_JES_EtaIntercalibration_Stat82: 0.01768635844372719 - syst_JES_EtaIntercalibration_Stat83: 0.00499422825569677 - syst_JES_EtaIntercalibration_Stat84: 4.368896322871487e-06 - syst_JES_EtaIntercalibration_Stat85: 1.0367190108703515e-05 - syst_JES_EtaIntercalibration_Stat86: 1.0367190108703515e-05 - syst_JES_EtaIntercalibration_Stat87: 1.0367190108703515e-05 - syst_JES_EtaIntercalibration_Stat88: 1.0367190108703515e-05 - syst_JES_EtaIntercalibration_Stat89: 1.0367190108703515e-05 + syst_JES_EtaIntercalibration_Stat80: 6.68243316e-03 + syst_JES_EtaIntercalibration_Stat81: 3.17041586e-02 + syst_JES_EtaIntercalibration_Stat82: 1.76863584e-02 + syst_JES_EtaIntercalibration_Stat83: 4.99422826e-03 + syst_JES_EtaIntercalibration_Stat84: 4.36889632e-06 + syst_JES_EtaIntercalibration_Stat85: 1.03671901e-05 + syst_JES_EtaIntercalibration_Stat86: 1.03671901e-05 + syst_JES_EtaIntercalibration_Stat87: 1.03671901e-05 + syst_JES_EtaIntercalibration_Stat88: 1.03671901e-05 + syst_JES_EtaIntercalibration_Stat89: 1.03671901e-05 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 0.0337572581084424 - syst_JES_EtaIntercalibration_Stat92: 0.15072068230670932 - syst_JES_EtaIntercalibration_Stat93: 0.2104722012523269 - syst_JES_EtaIntercalibration_Stat94: 0.07158391771201127 - syst_JES_EtaIntercalibration_Stat95: 0.0016023239372860907 - syst_JES_EtaIntercalibration_Stat96: 0.0018905503519162745 - syst_JES_EtaIntercalibration_Stat97: 1.0367190108703515e-05 - syst_JES_EtaIntercalibration_Stat98: 1.0367190108703515e-05 - syst_JES_EtaIntercalibration_Stat99: 1.0367190108703515e-05 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0008794487250279275 - syst_JES_Flavour_Comp: 0.6999228671789486 - syst_JES_Gjet_Generator: 12.049078636974697 - syst_JES_Gjet_OOC: 6.656870191764295 - syst_JES_Gjet_Purity: 2.226898066818506 + syst_JES_EtaIntercalibration_Stat91: 3.37572581e-02 + syst_JES_EtaIntercalibration_Stat92: 1.50720682e-01 + syst_JES_EtaIntercalibration_Stat93: 2.10472201e-01 + syst_JES_EtaIntercalibration_Stat94: 7.15839177e-02 + syst_JES_EtaIntercalibration_Stat95: 1.60232394e-03 + syst_JES_EtaIntercalibration_Stat96: 1.89055035e-03 + syst_JES_EtaIntercalibration_Stat97: 1.03671901e-05 + syst_JES_EtaIntercalibration_Stat98: 1.03671901e-05 + syst_JES_EtaIntercalibration_Stat99: 1.03671901e-05 + syst_JES_EtaIntercalibration_TotalStat_MJB: 8.79448725e-04 + syst_JES_Flavour_Comp: 6.99922867e-01 + syst_JES_Gjet_Generator: 1.20490786e+01 + syst_JES_Gjet_OOC: 6.65687019e+00 + syst_JES_Gjet_Purity: 2.22689807e+00 syst_JES_Gjet_Stat1: 0.0 - syst_JES_Gjet_Stat10: 0.4535258302456432 - syst_JES_Gjet_Stat11: 0.1038493884189984 - syst_JES_Gjet_Stat12: 0.08776247660589347 - syst_JES_Gjet_Stat13: 0.02789239177177174 - syst_JES_Gjet_Stat14: 8.342821510136724e-06 - syst_JES_Gjet_Stat15: 4.498795606326209e-05 - syst_JES_Gjet_Stat2: 0.04046936711884682 + syst_JES_Gjet_Stat10: 4.53525830e-01 + syst_JES_Gjet_Stat11: 1.03849388e-01 + syst_JES_Gjet_Stat12: 8.77624766e-02 + syst_JES_Gjet_Stat13: 2.78923918e-02 + syst_JES_Gjet_Stat14: 8.34282151e-06 + syst_JES_Gjet_Stat15: 4.49879561e-05 + syst_JES_Gjet_Stat2: 4.04693671e-02 syst_JES_Gjet_Stat3: 0.0 - syst_JES_Gjet_Stat4: 0.02967869058769271 - syst_JES_Gjet_Stat5: 0.06074111293020568 - syst_JES_Gjet_Stat6: 0.24448858869076076 - syst_JES_Gjet_Stat7: 0.5159657619454996 - syst_JES_Gjet_Stat8: 0.4124815632243458 - syst_JES_Gjet_Stat9: 0.6216442873541106 - syst_JES_Gjet_Veto: 2.6876895282007554 - syst_JES_Gjet_dPhi: 0.952556182070118 - syst_JES_LArESZee: 10.242692163196159 - syst_JES_LArEsmear: 0.8076373815023672 - syst_JES_LAr_JVT: 1.2547704202363075 - syst_JES_MJB_Alpha: 0.002701133234403664 - syst_JES_MJB_Asym: 8.309232469974288e-08 - syst_JES_MJB_Beta: 4.305012282212445e-06 - syst_JES_MJB_Stat1: 0.02673420421482562 - syst_JES_MJB_Stat10: 3.5405371061464675e-22 + syst_JES_Gjet_Stat4: 2.96786906e-02 + syst_JES_Gjet_Stat5: 6.07411129e-02 + syst_JES_Gjet_Stat6: 2.44488589e-01 + syst_JES_Gjet_Stat7: 5.15965762e-01 + syst_JES_Gjet_Stat8: 4.12481563e-01 + syst_JES_Gjet_Stat9: 6.21644287e-01 + syst_JES_Gjet_Veto: 2.68768953e+00 + syst_JES_Gjet_dPhi: 9.52556182e-01 + syst_JES_LArESZee: 1.02426922e+01 + syst_JES_LArEsmear: 8.07637382e-01 + syst_JES_LAr_JVT: 1.25477042e+00 + syst_JES_MJB_Alpha: 2.70113323e-03 + syst_JES_MJB_Asym: 8.30923247e-08 + syst_JES_MJB_Beta: 4.30501228e-06 + syst_JES_MJB_Stat1: 2.67342042e-02 + syst_JES_MJB_Stat10: 3.54053711e-22 syst_JES_MJB_Stat11: 0.0 - syst_JES_MJB_Stat12: 2.3148859043158046e-28 - syst_JES_MJB_Stat13: 1.3345451472318199e-35 + syst_JES_MJB_Stat12: 2.31488590e-28 + syst_JES_MJB_Stat13: 1.33454515e-35 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 0.004699919866338149 - syst_JES_MJB_Stat3: 0.0013094304105220713 - syst_JES_MJB_Stat4: 2.824974867144839e-06 + syst_JES_MJB_Stat2: 4.69991987e-03 + syst_JES_MJB_Stat3: 1.30943041e-03 + syst_JES_MJB_Stat4: 2.82497487e-06 syst_JES_MJB_Stat5: 0.0 syst_JES_MJB_Stat6: 0.0 syst_JES_MJB_Stat7: 0.0 syst_JES_MJB_Stat8: 0.0 - syst_JES_MJB_Stat9: 2.7019992598074482e-22 - syst_JES_MJB_Threshold: 0.024872283946333094 - syst_JES_Pileup_MuOffset: 2.9031884189426975e-07 - syst_JES_Pileup_NPVOffset: 0.5626550519634567 - syst_JES_Pileup_Pt_term: 2.914780266160727 - syst_JES_PunchThrough_MC15: 0.054524921467367246 + syst_JES_MJB_Stat9: 2.70199926e-22 + syst_JES_MJB_Threshold: 2.48722839e-02 + syst_JES_Pileup_MuOffset: 2.90318842e-07 + syst_JES_Pileup_NPVOffset: 5.62655052e-01 + syst_JES_Pileup_Pt_term: 2.91478027e+00 + syst_JES_PunchThrough_MC15: 5.45249215e-02 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 10.552016620058934 - syst_JES_Zjet_MuScale: 0.745148387906731 - syst_JES_Zjet_MuSmearID: 0.13283750251717322 - syst_JES_Zjet_MuSmearMS: 0.7694547598787079 - syst_JES_Zjet_OOC: 3.9413824563850692 - syst_JES_Zjet_Stat1: 0.05203160073455361 - syst_JES_Zjet_Stat10: 1.5126033022574028 - syst_JES_Zjet_Stat11: 1.1781024350624187 - syst_JES_Zjet_Stat12: 0.36789355457795125 - syst_JES_Zjet_Stat13: 0.08487402827131513 - syst_JES_Zjet_Stat2: 2.602406338372238e-05 - syst_JES_Zjet_Stat3: 0.023836612070510358 - syst_JES_Zjet_Stat4: 0.024460357724285228 - syst_JES_Zjet_Stat5: 0.036650195079399046 - syst_JES_Zjet_Stat6: 0.06493543004400602 - syst_JES_Zjet_Stat7: 0.13790854650818418 - syst_JES_Zjet_Stat8: 0.2704481281133223 - syst_JES_Zjet_Stat9: 0.7817303675181104 - syst_JES_Zjet_Veto: 0.7520958981406559 - syst_JES_Zjet_dPhi: 0.8452621250239478 + syst_JES_Zjet_MC: 1.05520166e+01 + syst_JES_Zjet_MuScale: 7.45148388e-01 + syst_JES_Zjet_MuSmearID: 1.32837503e-01 + syst_JES_Zjet_MuSmearMS: 7.69454760e-01 + syst_JES_Zjet_OOC: 3.94138246e+00 + syst_JES_Zjet_Stat1: 5.20316007e-02 + syst_JES_Zjet_Stat10: 1.51260330e+00 + syst_JES_Zjet_Stat11: 1.17810244e+00 + syst_JES_Zjet_Stat12: 3.67893555e-01 + syst_JES_Zjet_Stat13: 8.48740283e-02 + syst_JES_Zjet_Stat2: 2.60240634e-05 + syst_JES_Zjet_Stat3: 2.38366121e-02 + syst_JES_Zjet_Stat4: 2.44603577e-02 + syst_JES_Zjet_Stat5: 3.66501951e-02 + syst_JES_Zjet_Stat6: 6.49354300e-02 + syst_JES_Zjet_Stat7: 1.37908547e-01 + syst_JES_Zjet_Stat8: 2.70448128e-01 + syst_JES_Zjet_Stat9: 7.81730368e-01 + syst_JES_Zjet_Veto: 7.52095898e-01 + syst_JES_Zjet_dPhi: 8.45262125e-01 syst_PRW: 0.2409 syst_Unfolding_bias: 0.7309 - syst_cleaning: 2.8457594768356653 + syst_cleaning: 2.84575948e+00 syst_lumi: 11.488 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 2.1972621600528237 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 9.894053908787843 - syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.1318066053937484e-07 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 2.19726216e+00 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 9.89405391e+00 + syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.13180661e-07 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 13.775945811449754 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 2.8570044586725797e-07 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 4.063987296978178 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 1.37759458e+01 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 2.85700446e-07 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 4.06398730e+00 - stat: 2.0823 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 4.293721462787263 - syst_JER_NP1: 0.44370731343983955 - syst_JER_NP2: 0.406394598881432 - syst_JER_NP3: 1.0346248341790372 - syst_JER_NP4: 0.18130049641410254 - syst_JER_NP5: 0.24091830565567243 - syst_JER_NP6: 0.3322934245512541 - syst_JER_NP7: 0.29521708537955593 - syst_JER_NP8: 0.20650435225437744 - syst_JES_EtaIntercalibration_Modelling: 5.601520597123606 - syst_JES_EtaIntercalibration_NonClosure: 9.072482130035407e-08 - syst_JES_EtaIntercalibration_Stat0: 8.622148920077871e-07 + syst_JER_NP0: 4.29372146e+00 + syst_JER_NP1: 4.43707313e-01 + syst_JER_NP2: 4.06394599e-01 + syst_JER_NP3: 1.03462483e+00 + syst_JER_NP4: 1.81300496e-01 + syst_JER_NP5: 2.40918306e-01 + syst_JER_NP6: 3.32293425e-01 + syst_JER_NP7: 2.95217085e-01 + syst_JER_NP8: 2.06504352e-01 + syst_JES_EtaIntercalibration_Modelling: 5.60152060e+00 + syst_JES_EtaIntercalibration_NonClosure: 9.07248213e-08 + syst_JES_EtaIntercalibration_Stat0: 8.62214892e-07 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 0.0002835998566202036 - syst_JES_EtaIntercalibration_Stat101: 0.0062178126982082695 - syst_JES_EtaIntercalibration_Stat102: 0.012321863688176397 - syst_JES_EtaIntercalibration_Stat103: 0.03855570612762785 - syst_JES_EtaIntercalibration_Stat104: 0.0006785524058611832 - syst_JES_EtaIntercalibration_Stat105: 6.773720894013866e-07 - syst_JES_EtaIntercalibration_Stat106: 8.621282894674088e-07 - syst_JES_EtaIntercalibration_Stat107: 8.621282894674088e-07 - syst_JES_EtaIntercalibration_Stat108: 8.621282894674088e-07 - syst_JES_EtaIntercalibration_Stat109: 8.621282894674088e-07 + syst_JES_EtaIntercalibration_Stat100: 2.83599857e-04 + syst_JES_EtaIntercalibration_Stat101: 6.21781270e-03 + syst_JES_EtaIntercalibration_Stat102: 1.23218637e-02 + syst_JES_EtaIntercalibration_Stat103: 3.85557061e-02 + syst_JES_EtaIntercalibration_Stat104: 6.78552406e-04 + syst_JES_EtaIntercalibration_Stat105: 6.77372089e-07 + syst_JES_EtaIntercalibration_Stat106: 8.62128289e-07 + syst_JES_EtaIntercalibration_Stat107: 8.62128289e-07 + syst_JES_EtaIntercalibration_Stat108: 8.62128289e-07 + syst_JES_EtaIntercalibration_Stat109: 8.62128289e-07 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 9.083984409387766e-05 - syst_JES_EtaIntercalibration_Stat111: 0.040660527234653514 - syst_JES_EtaIntercalibration_Stat112: 0.3352554361975358 - syst_JES_EtaIntercalibration_Stat113: 0.40179435271666025 - syst_JES_EtaIntercalibration_Stat114: 0.11373267373538704 - syst_JES_EtaIntercalibration_Stat115: 0.002359919473202423 - syst_JES_EtaIntercalibration_Stat116: 0.000237839533278611 - syst_JES_EtaIntercalibration_Stat117: 8.621282894674088e-07 - syst_JES_EtaIntercalibration_Stat118: 8.621282894674088e-07 - syst_JES_EtaIntercalibration_Stat119: 8.621282894674088e-07 + syst_JES_EtaIntercalibration_Stat110: 9.08398441e-05 + syst_JES_EtaIntercalibration_Stat111: 4.06605272e-02 + syst_JES_EtaIntercalibration_Stat112: 3.35255436e-01 + syst_JES_EtaIntercalibration_Stat113: 4.01794353e-01 + syst_JES_EtaIntercalibration_Stat114: 1.13732674e-01 + syst_JES_EtaIntercalibration_Stat115: 2.35991947e-03 + syst_JES_EtaIntercalibration_Stat116: 2.37839533e-04 + syst_JES_EtaIntercalibration_Stat117: 8.62128289e-07 + syst_JES_EtaIntercalibration_Stat118: 8.62128289e-07 + syst_JES_EtaIntercalibration_Stat119: 8.62128289e-07 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 0.0028881947216211025 - syst_JES_EtaIntercalibration_Stat121: 0.10985168216736602 - syst_JES_EtaIntercalibration_Stat122: 0.29188012950524744 - syst_JES_EtaIntercalibration_Stat123: 0.29685738579324583 - syst_JES_EtaIntercalibration_Stat124: 0.06440409303763232 - syst_JES_EtaIntercalibration_Stat125: 0.0007271149290174147 - syst_JES_EtaIntercalibration_Stat126: 8.621282894674088e-07 - syst_JES_EtaIntercalibration_Stat127: 8.621282894674088e-07 - syst_JES_EtaIntercalibration_Stat128: 8.621282894674088e-07 - syst_JES_EtaIntercalibration_Stat129: 0.01605241541793633 + syst_JES_EtaIntercalibration_Stat120: 2.88819472e-03 + syst_JES_EtaIntercalibration_Stat121: 1.09851682e-01 + syst_JES_EtaIntercalibration_Stat122: 2.91880130e-01 + syst_JES_EtaIntercalibration_Stat123: 2.96857386e-01 + syst_JES_EtaIntercalibration_Stat124: 6.44040930e-02 + syst_JES_EtaIntercalibration_Stat125: 7.27114929e-04 + syst_JES_EtaIntercalibration_Stat126: 8.62128289e-07 + syst_JES_EtaIntercalibration_Stat127: 8.62128289e-07 + syst_JES_EtaIntercalibration_Stat128: 8.62128289e-07 + syst_JES_EtaIntercalibration_Stat129: 1.60524154e-02 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 0.2616764175465569 - syst_JES_EtaIntercalibration_Stat131: 1.0272038940736157 - syst_JES_EtaIntercalibration_Stat132: 1.5295001634521 - syst_JES_EtaIntercalibration_Stat133: 0.3859463455909384 - syst_JES_EtaIntercalibration_Stat134: 0.006747615949355743 - syst_JES_EtaIntercalibration_Stat135: 0.0002375507682580715 + syst_JES_EtaIntercalibration_Stat130: 2.61676418e-01 + syst_JES_EtaIntercalibration_Stat131: 1.02720389e+00 + syst_JES_EtaIntercalibration_Stat132: 1.52950016e+00 + syst_JES_EtaIntercalibration_Stat133: 3.85946346e-01 + syst_JES_EtaIntercalibration_Stat134: 6.74761595e-03 + syst_JES_EtaIntercalibration_Stat135: 2.37550768e-04 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 syst_JES_EtaIntercalibration_Stat138: 0.0 - syst_JES_EtaIntercalibration_Stat139: 0.007650251891277829 - syst_JES_EtaIntercalibration_Stat14: 0.0003075355701495845 - syst_JES_EtaIntercalibration_Stat140: 0.36579927214252356 - syst_JES_EtaIntercalibration_Stat141: 1.4053314226544569 - syst_JES_EtaIntercalibration_Stat142: 0.8864053756605946 - syst_JES_EtaIntercalibration_Stat143: 0.2513026064329616 - syst_JES_EtaIntercalibration_Stat144: 0.01187473961819795 + syst_JES_EtaIntercalibration_Stat139: 7.65025189e-03 + syst_JES_EtaIntercalibration_Stat14: 3.07535570e-04 + syst_JES_EtaIntercalibration_Stat140: 3.65799272e-01 + syst_JES_EtaIntercalibration_Stat141: 1.40533142e+00 + syst_JES_EtaIntercalibration_Stat142: 8.86405376e-01 + syst_JES_EtaIntercalibration_Stat143: 2.51302606e-01 + syst_JES_EtaIntercalibration_Stat144: 1.18747396e-02 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 0.0019869007901754934 - syst_JES_EtaIntercalibration_Stat148: 0.04023750582478988 - syst_JES_EtaIntercalibration_Stat149: 0.34008831206026474 - syst_JES_EtaIntercalibration_Stat15: 0.00031111300166177566 - syst_JES_EtaIntercalibration_Stat150: 0.456725418057721 - syst_JES_EtaIntercalibration_Stat151: 0.17179642021881597 - syst_JES_EtaIntercalibration_Stat152: 0.0025554741609924367 + syst_JES_EtaIntercalibration_Stat147: 1.98690079e-03 + syst_JES_EtaIntercalibration_Stat148: 4.02375058e-02 + syst_JES_EtaIntercalibration_Stat149: 3.40088312e-01 + syst_JES_EtaIntercalibration_Stat15: 3.11113002e-04 + syst_JES_EtaIntercalibration_Stat150: 4.56725418e-01 + syst_JES_EtaIntercalibration_Stat151: 1.71796420e-01 + syst_JES_EtaIntercalibration_Stat152: 2.55547416e-03 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 syst_JES_EtaIntercalibration_Stat156: 0.0 - syst_JES_EtaIntercalibration_Stat157: 0.00225910180547491 - syst_JES_EtaIntercalibration_Stat158: 0.1376187748819179 - syst_JES_EtaIntercalibration_Stat159: 0.5307682804199965 - syst_JES_EtaIntercalibration_Stat16: 0.00030981460467310125 - syst_JES_EtaIntercalibration_Stat160: 0.3919664808054383 - syst_JES_EtaIntercalibration_Stat161: 0.09621333106695766 - syst_JES_EtaIntercalibration_Stat162: 0.004093067994487753 + syst_JES_EtaIntercalibration_Stat157: 2.25910181e-03 + syst_JES_EtaIntercalibration_Stat158: 1.37618775e-01 + syst_JES_EtaIntercalibration_Stat159: 5.30768280e-01 + syst_JES_EtaIntercalibration_Stat16: 3.09814605e-04 + syst_JES_EtaIntercalibration_Stat160: 3.91966481e-01 + syst_JES_EtaIntercalibration_Stat161: 9.62133311e-02 + syst_JES_EtaIntercalibration_Stat162: 4.09306799e-03 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 0.0013556780195440952 - syst_JES_EtaIntercalibration_Stat166: 0.011307507859824815 - syst_JES_EtaIntercalibration_Stat167: 0.042554992033837814 - syst_JES_EtaIntercalibration_Stat168: 0.06514181759822181 - syst_JES_EtaIntercalibration_Stat169: 0.04330662305006013 - syst_JES_EtaIntercalibration_Stat17: 7.149905733644326e-07 - syst_JES_EtaIntercalibration_Stat170: 0.0019997468081922273 + syst_JES_EtaIntercalibration_Stat165: 1.35567802e-03 + syst_JES_EtaIntercalibration_Stat166: 1.13075079e-02 + syst_JES_EtaIntercalibration_Stat167: 4.25549920e-02 + syst_JES_EtaIntercalibration_Stat168: 6.51418176e-02 + syst_JES_EtaIntercalibration_Stat169: 4.33066231e-02 + syst_JES_EtaIntercalibration_Stat17: 7.14990573e-07 + syst_JES_EtaIntercalibration_Stat170: 1.99974681e-03 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 - syst_JES_EtaIntercalibration_Stat175: 0.0016645008310129227 - syst_JES_EtaIntercalibration_Stat176: 0.013790190526240018 - syst_JES_EtaIntercalibration_Stat177: 0.012959772789289172 - syst_JES_EtaIntercalibration_Stat178: 0.007758587629684929 - syst_JES_EtaIntercalibration_Stat179: 0.01983046898083855 + syst_JES_EtaIntercalibration_Stat175: 1.66450083e-03 + syst_JES_EtaIntercalibration_Stat176: 1.37901905e-02 + syst_JES_EtaIntercalibration_Stat177: 1.29597728e-02 + syst_JES_EtaIntercalibration_Stat178: 7.75858763e-03 + syst_JES_EtaIntercalibration_Stat179: 1.98304690e-02 syst_JES_EtaIntercalibration_Stat18: 0.0 - syst_JES_EtaIntercalibration_Stat180: 0.000816540054130843 + syst_JES_EtaIntercalibration_Stat180: 8.16540054e-04 syst_JES_EtaIntercalibration_Stat181: 0.0 - syst_JES_EtaIntercalibration_Stat182: 0.0011471406932020152 - syst_JES_EtaIntercalibration_Stat183: 0.022149794581440254 - syst_JES_EtaIntercalibration_Stat184: 0.07738500290754016 - syst_JES_EtaIntercalibration_Stat185: 0.07630935460348226 - syst_JES_EtaIntercalibration_Stat186: 0.02114731188591117 - syst_JES_EtaIntercalibration_Stat187: 0.0003161182319955621 + syst_JES_EtaIntercalibration_Stat182: 1.14714069e-03 + syst_JES_EtaIntercalibration_Stat183: 2.21497946e-02 + syst_JES_EtaIntercalibration_Stat184: 7.73850029e-02 + syst_JES_EtaIntercalibration_Stat185: 7.63093546e-02 + syst_JES_EtaIntercalibration_Stat186: 2.11473119e-02 + syst_JES_EtaIntercalibration_Stat187: 3.16118232e-04 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 - syst_JES_EtaIntercalibration_Stat192: 0.0008459336144166397 - syst_JES_EtaIntercalibration_Stat193: 0.03144235519168372 - syst_JES_EtaIntercalibration_Stat194: 0.10093933376043256 - syst_JES_EtaIntercalibration_Stat195: 0.06990488466480724 - syst_JES_EtaIntercalibration_Stat196: 0.01597551210446789 - syst_JES_EtaIntercalibration_Stat197: 0.0007695150225954006 - syst_JES_EtaIntercalibration_Stat198: 0.0026032540924773367 - syst_JES_EtaIntercalibration_Stat199: 0.0076417633436269145 + syst_JES_EtaIntercalibration_Stat192: 8.45933614e-04 + syst_JES_EtaIntercalibration_Stat193: 3.14423552e-02 + syst_JES_EtaIntercalibration_Stat194: 1.00939334e-01 + syst_JES_EtaIntercalibration_Stat195: 6.99048847e-02 + syst_JES_EtaIntercalibration_Stat196: 1.59755121e-02 + syst_JES_EtaIntercalibration_Stat197: 7.69515023e-04 + syst_JES_EtaIntercalibration_Stat198: 2.60325409e-03 + syst_JES_EtaIntercalibration_Stat199: 7.64176334e-03 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 0.008901131950488096 - syst_JES_EtaIntercalibration_Stat201: 0.005674977422862579 - syst_JES_EtaIntercalibration_Stat202: 4.032327382501947e-05 + syst_JES_EtaIntercalibration_Stat200: 8.90113195e-03 + syst_JES_EtaIntercalibration_Stat201: 5.67497742e-03 + syst_JES_EtaIntercalibration_Stat202: 4.03232738e-05 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 - syst_JES_EtaIntercalibration_Stat207: 0.0005683062634486796 - syst_JES_EtaIntercalibration_Stat208: 0.0028946725203380084 - syst_JES_EtaIntercalibration_Stat209: 0.008469591769973332 + syst_JES_EtaIntercalibration_Stat207: 5.68306263e-04 + syst_JES_EtaIntercalibration_Stat208: 2.89467252e-03 + syst_JES_EtaIntercalibration_Stat209: 8.46959177e-03 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 0.0025131268869677073 - syst_JES_EtaIntercalibration_Stat211: 0.0004428941634295941 - syst_JES_EtaIntercalibration_Stat212: 3.259542452553732e-05 - syst_JES_EtaIntercalibration_Stat213: 5.717461674554539e-05 - syst_JES_EtaIntercalibration_Stat214: 2.1444745071170698e-05 - syst_JES_EtaIntercalibration_Stat215: 4.968385460693274e-07 + syst_JES_EtaIntercalibration_Stat210: 2.51312689e-03 + syst_JES_EtaIntercalibration_Stat211: 4.42894163e-04 + syst_JES_EtaIntercalibration_Stat212: 3.25954245e-05 + syst_JES_EtaIntercalibration_Stat213: 5.71746167e-05 + syst_JES_EtaIntercalibration_Stat214: 2.14447451e-05 + syst_JES_EtaIntercalibration_Stat215: 4.96838546e-07 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 syst_JES_EtaIntercalibration_Stat219: 0.0 - syst_JES_EtaIntercalibration_Stat22: 8.622148920077871e-07 - syst_JES_EtaIntercalibration_Stat220: 3.2701119246900407e-09 - syst_JES_EtaIntercalibration_Stat221: 2.2290017945259714e-05 - syst_JES_EtaIntercalibration_Stat222: 3.127923036137558e-05 - syst_JES_EtaIntercalibration_Stat223: 4.611140531365315e-05 - syst_JES_EtaIntercalibration_Stat224: 5.218369165745176e-10 - syst_JES_EtaIntercalibration_Stat225: 8.536185023182195e-10 - syst_JES_EtaIntercalibration_Stat226: 3.804449601540317e-16 - syst_JES_EtaIntercalibration_Stat227: 1.2695934455795577e-26 + syst_JES_EtaIntercalibration_Stat22: 8.62214892e-07 + syst_JES_EtaIntercalibration_Stat220: 3.27011192e-09 + syst_JES_EtaIntercalibration_Stat221: 2.22900179e-05 + syst_JES_EtaIntercalibration_Stat222: 3.12792304e-05 + syst_JES_EtaIntercalibration_Stat223: 4.61114053e-05 + syst_JES_EtaIntercalibration_Stat224: 5.21836917e-10 + syst_JES_EtaIntercalibration_Stat225: 8.53618502e-10 + syst_JES_EtaIntercalibration_Stat226: 3.80444960e-16 + syst_JES_EtaIntercalibration_Stat227: 1.26959345e-26 syst_JES_EtaIntercalibration_Stat228: 0.0 syst_JES_EtaIntercalibration_Stat229: 0.0 - syst_JES_EtaIntercalibration_Stat23: 8.622148920077871e-07 + syst_JES_EtaIntercalibration_Stat23: 8.62214892e-07 syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 - syst_JES_EtaIntercalibration_Stat232: 5.366753824091204e-21 - syst_JES_EtaIntercalibration_Stat233: 1.7225245281272486e-12 - syst_JES_EtaIntercalibration_Stat234: 1.114089972802915e-09 - syst_JES_EtaIntercalibration_Stat235: 1.0339944716970203e-09 - syst_JES_EtaIntercalibration_Stat236: 3.159795557864464e-26 - syst_JES_EtaIntercalibration_Stat237: 2.3954262073429507e-26 + syst_JES_EtaIntercalibration_Stat232: 5.36675382e-21 + syst_JES_EtaIntercalibration_Stat233: 1.72252453e-12 + syst_JES_EtaIntercalibration_Stat234: 1.11408997e-09 + syst_JES_EtaIntercalibration_Stat235: 1.03399447e-09 + syst_JES_EtaIntercalibration_Stat236: 3.15979556e-26 + syst_JES_EtaIntercalibration_Stat237: 2.39542621e-26 syst_JES_EtaIntercalibration_Stat238: 0.0 syst_JES_EtaIntercalibration_Stat239: 0.0 syst_JES_EtaIntercalibration_Stat24: 0.0 @@ -36086,8400 +36086,8400 @@ bins: syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 syst_JES_EtaIntercalibration_Stat243: 0.0 - syst_JES_EtaIntercalibration_Stat244: 4.14624022458902e-33 - syst_JES_EtaIntercalibration_Stat245: 5.402260051589578e-21 - syst_JES_EtaIntercalibration_Stat25: 7.120460869915655e-07 - syst_JES_EtaIntercalibration_Stat26: 7.374119811882635e-05 - syst_JES_EtaIntercalibration_Stat27: 0.0013049040271223013 - syst_JES_EtaIntercalibration_Stat28: 0.004105311924811561 - syst_JES_EtaIntercalibration_Stat29: 0.0010688073388127534 + syst_JES_EtaIntercalibration_Stat244: 4.14624022e-33 + syst_JES_EtaIntercalibration_Stat245: 5.40226005e-21 + syst_JES_EtaIntercalibration_Stat25: 7.12046087e-07 + syst_JES_EtaIntercalibration_Stat26: 7.37411981e-05 + syst_JES_EtaIntercalibration_Stat27: 1.30490403e-03 + syst_JES_EtaIntercalibration_Stat28: 4.10531192e-03 + syst_JES_EtaIntercalibration_Stat29: 1.06880734e-03 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 7.112201475998835e-06 + syst_JES_EtaIntercalibration_Stat30: 7.11220148e-06 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 1.1949986221226365e-06 - syst_JES_EtaIntercalibration_Stat36: 0.000246399969713878 - syst_JES_EtaIntercalibration_Stat37: 0.0012440286602405913 - syst_JES_EtaIntercalibration_Stat38: 0.0012436481616598803 - syst_JES_EtaIntercalibration_Stat39: 0.0008652246928255111 - syst_JES_EtaIntercalibration_Stat4: 9.762704376861976e-07 - syst_JES_EtaIntercalibration_Stat40: 3.9222290537397225e-07 + syst_JES_EtaIntercalibration_Stat35: 1.19499862e-06 + syst_JES_EtaIntercalibration_Stat36: 2.46399970e-04 + syst_JES_EtaIntercalibration_Stat37: 1.24402866e-03 + syst_JES_EtaIntercalibration_Stat38: 1.24364816e-03 + syst_JES_EtaIntercalibration_Stat39: 8.65224693e-04 + syst_JES_EtaIntercalibration_Stat4: 9.76270438e-07 + syst_JES_EtaIntercalibration_Stat40: 3.92222905e-07 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 - syst_JES_EtaIntercalibration_Stat44: 8.622148920077871e-07 + syst_JES_EtaIntercalibration_Stat44: 8.62214892e-07 syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 - syst_JES_EtaIntercalibration_Stat47: 7.123058946127008e-07 - syst_JES_EtaIntercalibration_Stat48: 0.0003431818614087872 - syst_JES_EtaIntercalibration_Stat49: 0.0021357312565020905 - syst_JES_EtaIntercalibration_Stat5: 4.2758115019256875e-05 - syst_JES_EtaIntercalibration_Stat50: 0.0027030228911350345 - syst_JES_EtaIntercalibration_Stat51: 0.0015181090433496534 - syst_JES_EtaIntercalibration_Stat52: 2.111060987909871e-05 + syst_JES_EtaIntercalibration_Stat47: 7.12305895e-07 + syst_JES_EtaIntercalibration_Stat48: 3.43181861e-04 + syst_JES_EtaIntercalibration_Stat49: 2.13573126e-03 + syst_JES_EtaIntercalibration_Stat5: 4.27581150e-05 + syst_JES_EtaIntercalibration_Stat50: 2.70302289e-03 + syst_JES_EtaIntercalibration_Stat51: 1.51810904e-03 + syst_JES_EtaIntercalibration_Stat52: 2.11106099e-05 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 syst_JES_EtaIntercalibration_Stat56: 0.0 - syst_JES_EtaIntercalibration_Stat57: 0.0003067931888736572 - syst_JES_EtaIntercalibration_Stat58: 0.000882654824945743 - syst_JES_EtaIntercalibration_Stat59: 0.0019942242269865244 - syst_JES_EtaIntercalibration_Stat6: 0.00045415505061597634 - syst_JES_EtaIntercalibration_Stat60: 0.002550598727750016 - syst_JES_EtaIntercalibration_Stat61: 0.0003758140480343969 - syst_JES_EtaIntercalibration_Stat62: 7.293665950672542e-07 + syst_JES_EtaIntercalibration_Stat57: 3.06793189e-04 + syst_JES_EtaIntercalibration_Stat58: 8.82654825e-04 + syst_JES_EtaIntercalibration_Stat59: 1.99422423e-03 + syst_JES_EtaIntercalibration_Stat6: 4.54155051e-04 + syst_JES_EtaIntercalibration_Stat60: 2.55059873e-03 + syst_JES_EtaIntercalibration_Stat61: 3.75814048e-04 + syst_JES_EtaIntercalibration_Stat62: 7.29366595e-07 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 - syst_JES_EtaIntercalibration_Stat69: 1.031402792317337e-06 - syst_JES_EtaIntercalibration_Stat7: 2.5150172703184368e-06 - syst_JES_EtaIntercalibration_Stat70: 0.0019625103184442113 - syst_JES_EtaIntercalibration_Stat71: 0.010371225807492574 - syst_JES_EtaIntercalibration_Stat72: 0.019044844361401327 - syst_JES_EtaIntercalibration_Stat73: 0.013635874281009633 - syst_JES_EtaIntercalibration_Stat74: 0.0005759155667283182 + syst_JES_EtaIntercalibration_Stat69: 1.03140279e-06 + syst_JES_EtaIntercalibration_Stat7: 2.51501727e-06 + syst_JES_EtaIntercalibration_Stat70: 1.96251032e-03 + syst_JES_EtaIntercalibration_Stat71: 1.03712258e-02 + syst_JES_EtaIntercalibration_Stat72: 1.90448444e-02 + syst_JES_EtaIntercalibration_Stat73: 1.36358743e-02 + syst_JES_EtaIntercalibration_Stat74: 5.75915567e-04 syst_JES_EtaIntercalibration_Stat75: 0.0 syst_JES_EtaIntercalibration_Stat76: 0.0 syst_JES_EtaIntercalibration_Stat77: 0.0 syst_JES_EtaIntercalibration_Stat78: 0.0 - syst_JES_EtaIntercalibration_Stat79: 0.00030986064738846723 + syst_JES_EtaIntercalibration_Stat79: 3.09860647e-04 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 0.004055341015253834 - syst_JES_EtaIntercalibration_Stat81: 0.0023318561276373805 - syst_JES_EtaIntercalibration_Stat82: 0.0018089903592888492 - syst_JES_EtaIntercalibration_Stat83: 0.0031549274761870517 - syst_JES_EtaIntercalibration_Stat84: 4.1175571337869736e-07 - syst_JES_EtaIntercalibration_Stat85: 8.621282894674088e-07 - syst_JES_EtaIntercalibration_Stat86: 8.621282894674088e-07 - syst_JES_EtaIntercalibration_Stat87: 8.621282894674088e-07 - syst_JES_EtaIntercalibration_Stat88: 8.621282894674088e-07 - syst_JES_EtaIntercalibration_Stat89: 8.621282894674088e-07 + syst_JES_EtaIntercalibration_Stat80: 4.05534102e-03 + syst_JES_EtaIntercalibration_Stat81: 2.33185613e-03 + syst_JES_EtaIntercalibration_Stat82: 1.80899036e-03 + syst_JES_EtaIntercalibration_Stat83: 3.15492748e-03 + syst_JES_EtaIntercalibration_Stat84: 4.11755713e-07 + syst_JES_EtaIntercalibration_Stat85: 8.62128289e-07 + syst_JES_EtaIntercalibration_Stat86: 8.62128289e-07 + syst_JES_EtaIntercalibration_Stat87: 8.62128289e-07 + syst_JES_EtaIntercalibration_Stat88: 8.62128289e-07 + syst_JES_EtaIntercalibration_Stat89: 8.62128289e-07 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 0.006286653004580418 - syst_JES_EtaIntercalibration_Stat92: 0.026838063920484278 - syst_JES_EtaIntercalibration_Stat93: 0.048773268036907264 - syst_JES_EtaIntercalibration_Stat94: 0.014306939531220505 - syst_JES_EtaIntercalibration_Stat95: 0.0008149290582621287 - syst_JES_EtaIntercalibration_Stat96: 0.000237839533278611 - syst_JES_EtaIntercalibration_Stat97: 8.621282894674088e-07 - syst_JES_EtaIntercalibration_Stat98: 8.621282894674088e-07 - syst_JES_EtaIntercalibration_Stat99: 8.621282894674088e-07 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0005400474736971625 - syst_JES_Flavour_Comp: 0.37999277295759193 - syst_JES_Gjet_Generator: 6.153947899519463 - syst_JES_Gjet_OOC: 3.494495779078864 - syst_JES_Gjet_Purity: 1.092570016063044 + syst_JES_EtaIntercalibration_Stat91: 6.28665300e-03 + syst_JES_EtaIntercalibration_Stat92: 2.68380639e-02 + syst_JES_EtaIntercalibration_Stat93: 4.87732680e-02 + syst_JES_EtaIntercalibration_Stat94: 1.43069395e-02 + syst_JES_EtaIntercalibration_Stat95: 8.14929058e-04 + syst_JES_EtaIntercalibration_Stat96: 2.37839533e-04 + syst_JES_EtaIntercalibration_Stat97: 8.62128289e-07 + syst_JES_EtaIntercalibration_Stat98: 8.62128289e-07 + syst_JES_EtaIntercalibration_Stat99: 8.62128289e-07 + syst_JES_EtaIntercalibration_TotalStat_MJB: 5.40047474e-04 + syst_JES_Flavour_Comp: 3.79992773e-01 + syst_JES_Gjet_Generator: 6.15394790e+00 + syst_JES_Gjet_OOC: 3.49449578e+00 + syst_JES_Gjet_Purity: 1.09257002e+00 syst_JES_Gjet_Stat1: 0.0 - syst_JES_Gjet_Stat10: 0.3843373095342163 - syst_JES_Gjet_Stat11: 0.08234713961147087 - syst_JES_Gjet_Stat12: 0.06512600920523229 - syst_JES_Gjet_Stat13: 0.03762299429869983 - syst_JES_Gjet_Stat14: 0.00035076966801592184 - syst_JES_Gjet_Stat15: 0.0002293333645046006 - syst_JES_Gjet_Stat2: 0.009339217954411387 + syst_JES_Gjet_Stat10: 3.84337310e-01 + syst_JES_Gjet_Stat11: 8.23471396e-02 + syst_JES_Gjet_Stat12: 6.51260092e-02 + syst_JES_Gjet_Stat13: 3.76229943e-02 + syst_JES_Gjet_Stat14: 3.50769668e-04 + syst_JES_Gjet_Stat15: 2.29333365e-04 + syst_JES_Gjet_Stat2: 9.33921795e-03 syst_JES_Gjet_Stat3: 0.0 - syst_JES_Gjet_Stat4: 0.013198227153674845 - syst_JES_Gjet_Stat5: 0.02320960792430583 - syst_JES_Gjet_Stat6: 0.0951228263877814 - syst_JES_Gjet_Stat7: 0.17940445925338644 - syst_JES_Gjet_Stat8: 0.15690006373485002 - syst_JES_Gjet_Stat9: 0.304622007576603 - syst_JES_Gjet_Veto: 1.4208766193797406 - syst_JES_Gjet_dPhi: 0.41157072524051075 - syst_JES_LArESZee: 5.832509644226917 - syst_JES_LArEsmear: 0.4590711056034784 - syst_JES_LAr_JVT: 0.680696011447107 - syst_JES_MJB_Alpha: 0.0037265073124844402 - syst_JES_MJB_Asym: 2.213632455675682e-05 - syst_JES_MJB_Beta: 0.00017502373410483525 - syst_JES_MJB_Stat1: 0.011283444985907451 - syst_JES_MJB_Stat10: 2.504088007638709e-16 + syst_JES_Gjet_Stat4: 1.31982272e-02 + syst_JES_Gjet_Stat5: 2.32096079e-02 + syst_JES_Gjet_Stat6: 9.51228264e-02 + syst_JES_Gjet_Stat7: 1.79404459e-01 + syst_JES_Gjet_Stat8: 1.56900064e-01 + syst_JES_Gjet_Stat9: 3.04622008e-01 + syst_JES_Gjet_Veto: 1.42087662e+00 + syst_JES_Gjet_dPhi: 4.11570725e-01 + syst_JES_LArESZee: 5.83250964e+00 + syst_JES_LArEsmear: 4.59071106e-01 + syst_JES_LAr_JVT: 6.80696011e-01 + syst_JES_MJB_Alpha: 3.72650731e-03 + syst_JES_MJB_Asym: 2.21363246e-05 + syst_JES_MJB_Beta: 1.75023734e-04 + syst_JES_MJB_Stat1: 1.12834450e-02 + syst_JES_MJB_Stat10: 2.50408801e-16 syst_JES_MJB_Stat11: 0.0 - syst_JES_MJB_Stat12: 6.1427181890430234e-21 - syst_JES_MJB_Stat13: 2.464708299170512e-26 - syst_JES_MJB_Stat14: 1.4116214081686353e-33 + syst_JES_MJB_Stat12: 6.14271819e-21 + syst_JES_MJB_Stat13: 2.46470830e-26 + syst_JES_MJB_Stat14: 1.41162141e-33 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 0.010400099074047325 - syst_JES_MJB_Stat3: 0.003713516931427673 - syst_JES_MJB_Stat4: 0.00011483496854181656 + syst_JES_MJB_Stat2: 1.04000991e-02 + syst_JES_MJB_Stat3: 3.71351693e-03 + syst_JES_MJB_Stat4: 1.14834969e-04 syst_JES_MJB_Stat5: 0.0 - syst_JES_MJB_Stat6: 3.6130579845886784e-40 + syst_JES_MJB_Stat6: 3.61305798e-40 syst_JES_MJB_Stat7: 0.0 syst_JES_MJB_Stat8: 0.0 - syst_JES_MJB_Stat9: 1.911318066152256e-16 - syst_JES_MJB_Threshold: 0.030501956962450786 - syst_JES_Pileup_MuOffset: 7.737180171747004e-05 - syst_JES_Pileup_NPVOffset: 0.25455421328275046 - syst_JES_Pileup_Pt_term: 1.5348107472910135 - syst_JES_PunchThrough_MC15: 0.029729170651471258 + syst_JES_MJB_Stat9: 1.91131807e-16 + syst_JES_MJB_Threshold: 3.05019570e-02 + syst_JES_Pileup_MuOffset: 7.73718017e-05 + syst_JES_Pileup_NPVOffset: 2.54554213e-01 + syst_JES_Pileup_Pt_term: 1.53481075e+00 + syst_JES_PunchThrough_MC15: 2.97291707e-02 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 5.501783597161924 - syst_JES_Zjet_MuScale: 0.37726346231778135 - syst_JES_Zjet_MuSmearID: 0.07468468517708299 - syst_JES_Zjet_MuSmearMS: 0.4716253465410865 - syst_JES_Zjet_OOC: 1.8910528813335707 - syst_JES_Zjet_Stat1: 0.028132946432963612 - syst_JES_Zjet_Stat10: 0.6974000143389733 - syst_JES_Zjet_Stat11: 0.8911890708486051 - syst_JES_Zjet_Stat12: 0.2698541340706123 - syst_JES_Zjet_Stat13: 0.06105561460668462 - syst_JES_Zjet_Stat2: 4.1759744970485626e-06 - syst_JES_Zjet_Stat3: 0.014420414236421921 - syst_JES_Zjet_Stat4: 0.01489727099169509 - syst_JES_Zjet_Stat5: 0.020238992033013152 - syst_JES_Zjet_Stat6: 0.028766867660557 - syst_JES_Zjet_Stat7: 0.05757761609340908 - syst_JES_Zjet_Stat8: 0.09218410966647125 - syst_JES_Zjet_Stat9: 0.28360089474470984 - syst_JES_Zjet_Veto: 0.38287171154317473 - syst_JES_Zjet_dPhi: 0.3869066554092861 + syst_JES_Zjet_MC: 5.50178360e+00 + syst_JES_Zjet_MuScale: 3.77263462e-01 + syst_JES_Zjet_MuSmearID: 7.46846852e-02 + syst_JES_Zjet_MuSmearMS: 4.71625347e-01 + syst_JES_Zjet_OOC: 1.89105288e+00 + syst_JES_Zjet_Stat1: 2.81329464e-02 + syst_JES_Zjet_Stat10: 6.97400014e-01 + syst_JES_Zjet_Stat11: 8.91189071e-01 + syst_JES_Zjet_Stat12: 2.69854134e-01 + syst_JES_Zjet_Stat13: 6.10556146e-02 + syst_JES_Zjet_Stat2: 4.17597450e-06 + syst_JES_Zjet_Stat3: 1.44204142e-02 + syst_JES_Zjet_Stat4: 1.48972710e-02 + syst_JES_Zjet_Stat5: 2.02389920e-02 + syst_JES_Zjet_Stat6: 2.87668677e-02 + syst_JES_Zjet_Stat7: 5.75776161e-02 + syst_JES_Zjet_Stat8: 9.21841097e-02 + syst_JES_Zjet_Stat9: 2.83600895e-01 + syst_JES_Zjet_Veto: 3.82871712e-01 + syst_JES_Zjet_dPhi: 3.86906655e-01 syst_PRW: 0.2953 syst_Unfolding_bias: 0.11509 - syst_cleaning: 1.565773930042265 + syst_cleaning: 1.56577393e+00 syst_lumi: 6.252 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.0395228424618674 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 4.931089433380823 - syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 2.9957779067714618e-05 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.03952284e+00 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 4.93108943e+00 + syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 2.99577791e-05 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 6.866122486527603 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 7.628914049566622e-05 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.9422270722034538 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 6.86612249e+00 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 7.62891405e-05 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.94222707e+00 - stat: 1.2459 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 2.2576245812800675 - syst_JER_NP1: 0.16780482710577788 - syst_JER_NP2: 0.3316044744873024 - syst_JER_NP3: 0.5604815853353257 - syst_JER_NP4: 0.10254028184084535 - syst_JER_NP5: 0.1619606356495306 - syst_JER_NP6: 0.1815559624468445 - syst_JER_NP7: 0.17815395027896516 - syst_JER_NP8: 0.11447830580507383 - syst_JES_EtaIntercalibration_Modelling: 3.0981015154445792 - syst_JES_EtaIntercalibration_NonClosure: 2.5184018573291995e-06 - syst_JES_EtaIntercalibration_Stat0: 6.923007077852803e-08 + syst_JER_NP0: 2.25762458e+00 + syst_JER_NP1: 1.67804827e-01 + syst_JER_NP2: 3.31604474e-01 + syst_JER_NP3: 5.60481585e-01 + syst_JER_NP4: 1.02540282e-01 + syst_JER_NP5: 1.61960636e-01 + syst_JER_NP6: 1.81555962e-01 + syst_JER_NP7: 1.78153950e-01 + syst_JER_NP8: 1.14478306e-01 + syst_JES_EtaIntercalibration_Modelling: 3.09810152e+00 + syst_JES_EtaIntercalibration_NonClosure: 2.51840186e-06 + syst_JES_EtaIntercalibration_Stat0: 6.92300708e-08 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 0.00011440937561231596 - syst_JES_EtaIntercalibration_Stat101: 0.003456730815380336 - syst_JES_EtaIntercalibration_Stat102: 0.001778081347970334 - syst_JES_EtaIntercalibration_Stat103: 0.010337835593101682 - syst_JES_EtaIntercalibration_Stat104: 0.0014390547826611743 - syst_JES_EtaIntercalibration_Stat105: 4.908825190409616e-08 - syst_JES_EtaIntercalibration_Stat106: 6.923007077852803e-08 - syst_JES_EtaIntercalibration_Stat107: 6.923007077852803e-08 - syst_JES_EtaIntercalibration_Stat108: 6.923007077852803e-08 - syst_JES_EtaIntercalibration_Stat109: 6.923007077852803e-08 + syst_JES_EtaIntercalibration_Stat100: 1.14409376e-04 + syst_JES_EtaIntercalibration_Stat101: 3.45673082e-03 + syst_JES_EtaIntercalibration_Stat102: 1.77808135e-03 + syst_JES_EtaIntercalibration_Stat103: 1.03378356e-02 + syst_JES_EtaIntercalibration_Stat104: 1.43905478e-03 + syst_JES_EtaIntercalibration_Stat105: 4.90882519e-08 + syst_JES_EtaIntercalibration_Stat106: 6.92300708e-08 + syst_JES_EtaIntercalibration_Stat107: 6.92300708e-08 + syst_JES_EtaIntercalibration_Stat108: 6.92300708e-08 + syst_JES_EtaIntercalibration_Stat109: 6.92300708e-08 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 1.1727276356852856e-05 - syst_JES_EtaIntercalibration_Stat111: 0.011438842194470557 - syst_JES_EtaIntercalibration_Stat112: 0.10049899651240306 - syst_JES_EtaIntercalibration_Stat113: 0.11954921120609704 - syst_JES_EtaIntercalibration_Stat114: 0.036159380525667195 - syst_JES_EtaIntercalibration_Stat115: 0.0006558352831885457 - syst_JES_EtaIntercalibration_Stat116: 9.226771522043882e-07 - syst_JES_EtaIntercalibration_Stat117: 6.923007077852803e-08 - syst_JES_EtaIntercalibration_Stat118: 6.923007077852803e-08 - syst_JES_EtaIntercalibration_Stat119: 6.923007077852803e-08 + syst_JES_EtaIntercalibration_Stat110: 1.17272764e-05 + syst_JES_EtaIntercalibration_Stat111: 1.14388422e-02 + syst_JES_EtaIntercalibration_Stat112: 1.00498997e-01 + syst_JES_EtaIntercalibration_Stat113: 1.19549211e-01 + syst_JES_EtaIntercalibration_Stat114: 3.61593805e-02 + syst_JES_EtaIntercalibration_Stat115: 6.55835283e-04 + syst_JES_EtaIntercalibration_Stat116: 9.22677152e-07 + syst_JES_EtaIntercalibration_Stat117: 6.92300708e-08 + syst_JES_EtaIntercalibration_Stat118: 6.92300708e-08 + syst_JES_EtaIntercalibration_Stat119: 6.92300708e-08 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 0.0006905686569777113 - syst_JES_EtaIntercalibration_Stat121: 0.03517152683634875 - syst_JES_EtaIntercalibration_Stat122: 0.08603360201107473 - syst_JES_EtaIntercalibration_Stat123: 0.09089408561617196 - syst_JES_EtaIntercalibration_Stat124: 0.02145561931056757 - syst_JES_EtaIntercalibration_Stat125: 0.00016627687752661223 - syst_JES_EtaIntercalibration_Stat126: 6.923007077852803e-08 - syst_JES_EtaIntercalibration_Stat127: 6.923007077852803e-08 - syst_JES_EtaIntercalibration_Stat128: 6.923007077852803e-08 - syst_JES_EtaIntercalibration_Stat129: 0.005010759415497815 + syst_JES_EtaIntercalibration_Stat120: 6.90568657e-04 + syst_JES_EtaIntercalibration_Stat121: 3.51715268e-02 + syst_JES_EtaIntercalibration_Stat122: 8.60336020e-02 + syst_JES_EtaIntercalibration_Stat123: 9.08940856e-02 + syst_JES_EtaIntercalibration_Stat124: 2.14556193e-02 + syst_JES_EtaIntercalibration_Stat125: 1.66276878e-04 + syst_JES_EtaIntercalibration_Stat126: 6.92300708e-08 + syst_JES_EtaIntercalibration_Stat127: 6.92300708e-08 + syst_JES_EtaIntercalibration_Stat128: 6.92300708e-08 + syst_JES_EtaIntercalibration_Stat129: 5.01075942e-03 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 0.10463532959760771 - syst_JES_EtaIntercalibration_Stat131: 0.45092206366510834 - syst_JES_EtaIntercalibration_Stat132: 0.6360508686418092 - syst_JES_EtaIntercalibration_Stat133: 0.1488084927011896 - syst_JES_EtaIntercalibration_Stat134: 0.0033704878222595614 - syst_JES_EtaIntercalibration_Stat135: 8.972889208610568e-07 + syst_JES_EtaIntercalibration_Stat130: 1.04635330e-01 + syst_JES_EtaIntercalibration_Stat131: 4.50922064e-01 + syst_JES_EtaIntercalibration_Stat132: 6.36050869e-01 + syst_JES_EtaIntercalibration_Stat133: 1.48808493e-01 + syst_JES_EtaIntercalibration_Stat134: 3.37048782e-03 + syst_JES_EtaIntercalibration_Stat135: 8.97288921e-07 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 syst_JES_EtaIntercalibration_Stat138: 0.0 - syst_JES_EtaIntercalibration_Stat139: 0.003671145189174626 - syst_JES_EtaIntercalibration_Stat14: 0.00011840855413275977 - syst_JES_EtaIntercalibration_Stat140: 0.1667844342257394 - syst_JES_EtaIntercalibration_Stat141: 0.5855195876313618 - syst_JES_EtaIntercalibration_Stat142: 0.3887038169030502 - syst_JES_EtaIntercalibration_Stat143: 0.10516632968778553 - syst_JES_EtaIntercalibration_Stat144: 0.0041996137545612456 + syst_JES_EtaIntercalibration_Stat139: 3.67114519e-03 + syst_JES_EtaIntercalibration_Stat14: 1.18408554e-04 + syst_JES_EtaIntercalibration_Stat140: 1.66784434e-01 + syst_JES_EtaIntercalibration_Stat141: 5.85519588e-01 + syst_JES_EtaIntercalibration_Stat142: 3.88703817e-01 + syst_JES_EtaIntercalibration_Stat143: 1.05166330e-01 + syst_JES_EtaIntercalibration_Stat144: 4.19961375e-03 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 0.0017775164556200318 - syst_JES_EtaIntercalibration_Stat148: 0.028581883685299677 - syst_JES_EtaIntercalibration_Stat149: 0.2515544622939534 - syst_JES_EtaIntercalibration_Stat15: 0.00011733755940056022 - syst_JES_EtaIntercalibration_Stat150: 0.3164836607156837 - syst_JES_EtaIntercalibration_Stat151: 0.09880125252242504 - syst_JES_EtaIntercalibration_Stat152: 0.001445034266029702 + syst_JES_EtaIntercalibration_Stat147: 1.77751646e-03 + syst_JES_EtaIntercalibration_Stat148: 2.85818837e-02 + syst_JES_EtaIntercalibration_Stat149: 2.51554462e-01 + syst_JES_EtaIntercalibration_Stat15: 1.17337559e-04 + syst_JES_EtaIntercalibration_Stat150: 3.16483661e-01 + syst_JES_EtaIntercalibration_Stat151: 9.88012525e-02 + syst_JES_EtaIntercalibration_Stat152: 1.44503427e-03 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 syst_JES_EtaIntercalibration_Stat156: 0.0 - syst_JES_EtaIntercalibration_Stat157: 0.0025602767584774894 - syst_JES_EtaIntercalibration_Stat158: 0.10419698796030528 - syst_JES_EtaIntercalibration_Stat159: 0.3608880539724196 - syst_JES_EtaIntercalibration_Stat16: 0.00011586204947776254 - syst_JES_EtaIntercalibration_Stat160: 0.26502262167596186 - syst_JES_EtaIntercalibration_Stat161: 0.05843510823982445 - syst_JES_EtaIntercalibration_Stat162: 0.001847587396444347 + syst_JES_EtaIntercalibration_Stat157: 2.56027676e-03 + syst_JES_EtaIntercalibration_Stat158: 1.04196988e-01 + syst_JES_EtaIntercalibration_Stat159: 3.60888054e-01 + syst_JES_EtaIntercalibration_Stat16: 1.15862049e-04 + syst_JES_EtaIntercalibration_Stat160: 2.65022622e-01 + syst_JES_EtaIntercalibration_Stat161: 5.84351082e-02 + syst_JES_EtaIntercalibration_Stat162: 1.84758740e-03 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 0.0005002629983318775 - syst_JES_EtaIntercalibration_Stat166: 0.007386129348312282 - syst_JES_EtaIntercalibration_Stat167: 0.07241771520146159 - syst_JES_EtaIntercalibration_Stat168: 0.1011479978793451 - syst_JES_EtaIntercalibration_Stat169: 0.030100960117577645 - syst_JES_EtaIntercalibration_Stat17: 5.74607855410975e-08 - syst_JES_EtaIntercalibration_Stat170: 0.0007963622856464262 + syst_JES_EtaIntercalibration_Stat165: 5.00262998e-04 + syst_JES_EtaIntercalibration_Stat166: 7.38612935e-03 + syst_JES_EtaIntercalibration_Stat167: 7.24177152e-02 + syst_JES_EtaIntercalibration_Stat168: 1.01147998e-01 + syst_JES_EtaIntercalibration_Stat169: 3.01009601e-02 + syst_JES_EtaIntercalibration_Stat17: 5.74607855e-08 + syst_JES_EtaIntercalibration_Stat170: 7.96362286e-04 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 - syst_JES_EtaIntercalibration_Stat175: 0.0010258986759526648 - syst_JES_EtaIntercalibration_Stat176: 0.028812165833203167 - syst_JES_EtaIntercalibration_Stat177: 0.12402368886628069 - syst_JES_EtaIntercalibration_Stat178: 0.06748810561869402 - syst_JES_EtaIntercalibration_Stat179: 0.021020475732009495 + syst_JES_EtaIntercalibration_Stat175: 1.02589868e-03 + syst_JES_EtaIntercalibration_Stat176: 2.88121658e-02 + syst_JES_EtaIntercalibration_Stat177: 1.24023689e-01 + syst_JES_EtaIntercalibration_Stat178: 6.74881056e-02 + syst_JES_EtaIntercalibration_Stat179: 2.10204757e-02 syst_JES_EtaIntercalibration_Stat18: 0.0 - syst_JES_EtaIntercalibration_Stat180: 0.0006550816742971826 + syst_JES_EtaIntercalibration_Stat180: 6.55081674e-04 syst_JES_EtaIntercalibration_Stat181: 0.0 - syst_JES_EtaIntercalibration_Stat182: 0.0006181302231730786 - syst_JES_EtaIntercalibration_Stat183: 0.01758258442322971 - syst_JES_EtaIntercalibration_Stat184: 0.048164356893869144 - syst_JES_EtaIntercalibration_Stat185: 0.03200475081921433 - syst_JES_EtaIntercalibration_Stat186: 0.0167296785297118 - syst_JES_EtaIntercalibration_Stat187: 0.0009068120574297631 + syst_JES_EtaIntercalibration_Stat182: 6.18130223e-04 + syst_JES_EtaIntercalibration_Stat183: 1.75825844e-02 + syst_JES_EtaIntercalibration_Stat184: 4.81643569e-02 + syst_JES_EtaIntercalibration_Stat185: 3.20047508e-02 + syst_JES_EtaIntercalibration_Stat186: 1.67296785e-02 + syst_JES_EtaIntercalibration_Stat187: 9.06812057e-04 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 - syst_JES_EtaIntercalibration_Stat192: 0.000745301462496888 - syst_JES_EtaIntercalibration_Stat193: 0.01882198918153977 - syst_JES_EtaIntercalibration_Stat194: 0.0727627272372332 - syst_JES_EtaIntercalibration_Stat195: 0.047299488369325945 - syst_JES_EtaIntercalibration_Stat196: 0.0060068583109226074 - syst_JES_EtaIntercalibration_Stat197: 0.000571200997898288 - syst_JES_EtaIntercalibration_Stat198: 0.0024256708927634847 - syst_JES_EtaIntercalibration_Stat199: 0.014987175142434282 + syst_JES_EtaIntercalibration_Stat192: 7.45301462e-04 + syst_JES_EtaIntercalibration_Stat193: 1.88219892e-02 + syst_JES_EtaIntercalibration_Stat194: 7.27627272e-02 + syst_JES_EtaIntercalibration_Stat195: 4.72994884e-02 + syst_JES_EtaIntercalibration_Stat196: 6.00685831e-03 + syst_JES_EtaIntercalibration_Stat197: 5.71200998e-04 + syst_JES_EtaIntercalibration_Stat198: 2.42567089e-03 + syst_JES_EtaIntercalibration_Stat199: 1.49871751e-02 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 0.01691359987554394 - syst_JES_EtaIntercalibration_Stat201: 0.006460382090093434 - syst_JES_EtaIntercalibration_Stat202: 0.00022306476164277945 + syst_JES_EtaIntercalibration_Stat200: 1.69135999e-02 + syst_JES_EtaIntercalibration_Stat201: 6.46038209e-03 + syst_JES_EtaIntercalibration_Stat202: 2.23064762e-04 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 - syst_JES_EtaIntercalibration_Stat207: 0.0013888375253696885 - syst_JES_EtaIntercalibration_Stat208: 0.005753209082764157 - syst_JES_EtaIntercalibration_Stat209: 0.0171425873193051 + syst_JES_EtaIntercalibration_Stat207: 1.38883753e-03 + syst_JES_EtaIntercalibration_Stat208: 5.75320908e-03 + syst_JES_EtaIntercalibration_Stat209: 1.71425873e-02 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 0.008737701113565283 - syst_JES_EtaIntercalibration_Stat211: 0.0023324893890433887 - syst_JES_EtaIntercalibration_Stat212: 1.526207622671306e-05 - syst_JES_EtaIntercalibration_Stat213: 4.221935338206875e-05 - syst_JES_EtaIntercalibration_Stat214: 1.6373980907219847e-05 - syst_JES_EtaIntercalibration_Stat215: 1.2661061288243016e-05 + syst_JES_EtaIntercalibration_Stat210: 8.73770111e-03 + syst_JES_EtaIntercalibration_Stat211: 2.33248939e-03 + syst_JES_EtaIntercalibration_Stat212: 1.52620762e-05 + syst_JES_EtaIntercalibration_Stat213: 4.22193534e-05 + syst_JES_EtaIntercalibration_Stat214: 1.63739809e-05 + syst_JES_EtaIntercalibration_Stat215: 1.26610613e-05 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 syst_JES_EtaIntercalibration_Stat219: 0.0 - syst_JES_EtaIntercalibration_Stat22: 6.923007077852803e-08 - syst_JES_EtaIntercalibration_Stat220: 4.615915402171058e-07 - syst_JES_EtaIntercalibration_Stat221: 2.0013597252867862e-05 - syst_JES_EtaIntercalibration_Stat222: 0.0002870530961337989 - syst_JES_EtaIntercalibration_Stat223: 2.167118932476942e-05 - syst_JES_EtaIntercalibration_Stat224: 7.557384120844989e-08 - syst_JES_EtaIntercalibration_Stat225: 1.2093349411970201e-07 - syst_JES_EtaIntercalibration_Stat226: 3.922230176918223e-12 - syst_JES_EtaIntercalibration_Stat227: 5.2507486483812e-20 + syst_JES_EtaIntercalibration_Stat22: 6.92300708e-08 + syst_JES_EtaIntercalibration_Stat220: 4.61591540e-07 + syst_JES_EtaIntercalibration_Stat221: 2.00135973e-05 + syst_JES_EtaIntercalibration_Stat222: 2.87053096e-04 + syst_JES_EtaIntercalibration_Stat223: 2.16711893e-05 + syst_JES_EtaIntercalibration_Stat224: 7.55738412e-08 + syst_JES_EtaIntercalibration_Stat225: 1.20933494e-07 + syst_JES_EtaIntercalibration_Stat226: 3.92223018e-12 + syst_JES_EtaIntercalibration_Stat227: 5.25074865e-20 syst_JES_EtaIntercalibration_Stat228: 0.0 syst_JES_EtaIntercalibration_Stat229: 0.0 - syst_JES_EtaIntercalibration_Stat23: 6.923007077852803e-08 + syst_JES_EtaIntercalibration_Stat23: 6.92300708e-08 syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 - syst_JES_EtaIntercalibration_Stat232: 8.723242168549827e-16 - syst_JES_EtaIntercalibration_Stat233: 1.7372469599915837e-09 - syst_JES_EtaIntercalibration_Stat234: 1.6123572805057816e-07 - syst_JES_EtaIntercalibration_Stat235: 1.363482306449189e-07 - syst_JES_EtaIntercalibration_Stat236: 1.3067031618542905e-19 - syst_JES_EtaIntercalibration_Stat237: 9.908185937783301e-20 + syst_JES_EtaIntercalibration_Stat232: 8.72324217e-16 + syst_JES_EtaIntercalibration_Stat233: 1.73724696e-09 + syst_JES_EtaIntercalibration_Stat234: 1.61235728e-07 + syst_JES_EtaIntercalibration_Stat235: 1.36348231e-07 + syst_JES_EtaIntercalibration_Stat236: 1.30670316e-19 + syst_JES_EtaIntercalibration_Stat237: 9.90818594e-20 syst_JES_EtaIntercalibration_Stat238: 0.0 syst_JES_EtaIntercalibration_Stat239: 0.0 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 - syst_JES_EtaIntercalibration_Stat243: 4.31737756861732e-38 - syst_JES_EtaIntercalibration_Stat244: 7.457212414837061e-25 - syst_JES_EtaIntercalibration_Stat245: 8.781232247403228e-16 - syst_JES_EtaIntercalibration_Stat25: 5.776389443242205e-08 - syst_JES_EtaIntercalibration_Stat26: 8.909175551082154e-06 - syst_JES_EtaIntercalibration_Stat27: 0.0004988035932859746 - syst_JES_EtaIntercalibration_Stat28: 0.0008437704945659099 - syst_JES_EtaIntercalibration_Stat29: 0.00043280107150976417 + syst_JES_EtaIntercalibration_Stat243: 4.31737757e-38 + syst_JES_EtaIntercalibration_Stat244: 7.45721241e-25 + syst_JES_EtaIntercalibration_Stat245: 8.78123225e-16 + syst_JES_EtaIntercalibration_Stat25: 5.77638944e-08 + syst_JES_EtaIntercalibration_Stat26: 8.90917555e-06 + syst_JES_EtaIntercalibration_Stat27: 4.98803593e-04 + syst_JES_EtaIntercalibration_Stat28: 8.43770495e-04 + syst_JES_EtaIntercalibration_Stat29: 4.32801072e-04 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 6.894335542289409e-07 + syst_JES_EtaIntercalibration_Stat30: 6.89433554e-07 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 9.554038063562444e-08 - syst_JES_EtaIntercalibration_Stat36: 0.00013025679128168328 - syst_JES_EtaIntercalibration_Stat37: 0.00023038749548315331 - syst_JES_EtaIntercalibration_Stat38: 0.0002551228901073951 - syst_JES_EtaIntercalibration_Stat39: 0.00017879933721353668 - syst_JES_EtaIntercalibration_Stat4: 7.919802317608691e-08 - syst_JES_EtaIntercalibration_Stat40: 2.8422953752205274e-08 + syst_JES_EtaIntercalibration_Stat35: 9.55403806e-08 + syst_JES_EtaIntercalibration_Stat36: 1.30256791e-04 + syst_JES_EtaIntercalibration_Stat37: 2.30387495e-04 + syst_JES_EtaIntercalibration_Stat38: 2.55122890e-04 + syst_JES_EtaIntercalibration_Stat39: 1.78799337e-04 + syst_JES_EtaIntercalibration_Stat4: 7.91980232e-08 + syst_JES_EtaIntercalibration_Stat40: 2.84229538e-08 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 - syst_JES_EtaIntercalibration_Stat44: 6.923007077852803e-08 + syst_JES_EtaIntercalibration_Stat44: 6.92300708e-08 syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 - syst_JES_EtaIntercalibration_Stat47: 5.7781214940497754e-08 - syst_JES_EtaIntercalibration_Stat48: 9.156245573377769e-05 - syst_JES_EtaIntercalibration_Stat49: 0.0008237181602344334 - syst_JES_EtaIntercalibration_Stat5: 2.5004890896582614e-05 - syst_JES_EtaIntercalibration_Stat50: 0.0010011578646746976 - syst_JES_EtaIntercalibration_Stat51: 0.001025258006552497 - syst_JES_EtaIntercalibration_Stat52: 1.8872367862830568e-05 + syst_JES_EtaIntercalibration_Stat47: 5.77812149e-08 + syst_JES_EtaIntercalibration_Stat48: 9.15624557e-05 + syst_JES_EtaIntercalibration_Stat49: 8.23718160e-04 + syst_JES_EtaIntercalibration_Stat5: 2.50048909e-05 + syst_JES_EtaIntercalibration_Stat50: 1.00115786e-03 + syst_JES_EtaIntercalibration_Stat51: 1.02525801e-03 + syst_JES_EtaIntercalibration_Stat52: 1.88723679e-05 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 syst_JES_EtaIntercalibration_Stat56: 0.0 - syst_JES_EtaIntercalibration_Stat57: 0.00011843569071306166 - syst_JES_EtaIntercalibration_Stat58: 0.000153582706301849 - syst_JES_EtaIntercalibration_Stat59: 0.00108673273163184 - syst_JES_EtaIntercalibration_Stat6: 2.9395048902833957e-05 - syst_JES_EtaIntercalibration_Stat60: 0.0008361236451626039 - syst_JES_EtaIntercalibration_Stat61: 0.00017263891884508546 - syst_JES_EtaIntercalibration_Stat62: 5.862125958216866e-08 + syst_JES_EtaIntercalibration_Stat57: 1.18435691e-04 + syst_JES_EtaIntercalibration_Stat58: 1.53582706e-04 + syst_JES_EtaIntercalibration_Stat59: 1.08673273e-03 + syst_JES_EtaIntercalibration_Stat6: 2.93950489e-05 + syst_JES_EtaIntercalibration_Stat60: 8.36123645e-04 + syst_JES_EtaIntercalibration_Stat61: 1.72638919e-04 + syst_JES_EtaIntercalibration_Stat62: 5.86212596e-08 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 - syst_JES_EtaIntercalibration_Stat69: 8.339960836238981e-08 - syst_JES_EtaIntercalibration_Stat7: 1.920175822027764e-05 - syst_JES_EtaIntercalibration_Stat70: 0.0007242844744987981 - syst_JES_EtaIntercalibration_Stat71: 0.0012300778308708762 - syst_JES_EtaIntercalibration_Stat72: 0.003804993017076379 - syst_JES_EtaIntercalibration_Stat73: 0.0020453120250954375 - syst_JES_EtaIntercalibration_Stat74: 0.00013393412214592664 + syst_JES_EtaIntercalibration_Stat69: 8.33996084e-08 + syst_JES_EtaIntercalibration_Stat7: 1.92017582e-05 + syst_JES_EtaIntercalibration_Stat70: 7.24284474e-04 + syst_JES_EtaIntercalibration_Stat71: 1.23007783e-03 + syst_JES_EtaIntercalibration_Stat72: 3.80499302e-03 + syst_JES_EtaIntercalibration_Stat73: 2.04531203e-03 + syst_JES_EtaIntercalibration_Stat74: 1.33934122e-04 syst_JES_EtaIntercalibration_Stat75: 0.0 syst_JES_EtaIntercalibration_Stat76: 0.0 syst_JES_EtaIntercalibration_Stat77: 0.0 syst_JES_EtaIntercalibration_Stat78: 0.0 - syst_JES_EtaIntercalibration_Stat79: 0.00010853510818163863 + syst_JES_EtaIntercalibration_Stat79: 1.08535108e-04 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 0.0011298940835317265 - syst_JES_EtaIntercalibration_Stat81: 0.0010337191639899108 - syst_JES_EtaIntercalibration_Stat82: 0.0018892839933424515 - syst_JES_EtaIntercalibration_Stat83: 0.0016285054866349083 - syst_JES_EtaIntercalibration_Stat84: 3.5561979697424047e-08 - syst_JES_EtaIntercalibration_Stat85: 6.923007077852803e-08 - syst_JES_EtaIntercalibration_Stat86: 6.923007077852803e-08 - syst_JES_EtaIntercalibration_Stat87: 6.923007077852803e-08 - syst_JES_EtaIntercalibration_Stat88: 6.923007077852803e-08 - syst_JES_EtaIntercalibration_Stat89: 6.923007077852803e-08 + syst_JES_EtaIntercalibration_Stat80: 1.12989408e-03 + syst_JES_EtaIntercalibration_Stat81: 1.03371916e-03 + syst_JES_EtaIntercalibration_Stat82: 1.88928399e-03 + syst_JES_EtaIntercalibration_Stat83: 1.62850549e-03 + syst_JES_EtaIntercalibration_Stat84: 3.55619797e-08 + syst_JES_EtaIntercalibration_Stat85: 6.92300708e-08 + syst_JES_EtaIntercalibration_Stat86: 6.92300708e-08 + syst_JES_EtaIntercalibration_Stat87: 6.92300708e-08 + syst_JES_EtaIntercalibration_Stat88: 6.92300708e-08 + syst_JES_EtaIntercalibration_Stat89: 6.92300708e-08 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 0.000421408820594681 - syst_JES_EtaIntercalibration_Stat92: 0.0035162435506517465 - syst_JES_EtaIntercalibration_Stat93: 0.010413948854781264 - syst_JES_EtaIntercalibration_Stat94: 0.0017744413205288026 - syst_JES_EtaIntercalibration_Stat95: 0.0003561202184656187 - syst_JES_EtaIntercalibration_Stat96: 9.226771522043882e-07 - syst_JES_EtaIntercalibration_Stat97: 6.923007077852803e-08 - syst_JES_EtaIntercalibration_Stat98: 6.923007077852803e-08 - syst_JES_EtaIntercalibration_Stat99: 6.923007077852803e-08 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0019403018194793819 - syst_JES_Flavour_Comp: 0.2376241307190833 - syst_JES_Gjet_Generator: 3.2954113552028677 - syst_JES_Gjet_OOC: 1.9594861571340583 - syst_JES_Gjet_Purity: 0.6168988977133937 + syst_JES_EtaIntercalibration_Stat91: 4.21408821e-04 + syst_JES_EtaIntercalibration_Stat92: 3.51624355e-03 + syst_JES_EtaIntercalibration_Stat93: 1.04139489e-02 + syst_JES_EtaIntercalibration_Stat94: 1.77444132e-03 + syst_JES_EtaIntercalibration_Stat95: 3.56120218e-04 + syst_JES_EtaIntercalibration_Stat96: 9.22677152e-07 + syst_JES_EtaIntercalibration_Stat97: 6.92300708e-08 + syst_JES_EtaIntercalibration_Stat98: 6.92300708e-08 + syst_JES_EtaIntercalibration_Stat99: 6.92300708e-08 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.94030182e-03 + syst_JES_Flavour_Comp: 2.37624131e-01 + syst_JES_Gjet_Generator: 3.29541136e+00 + syst_JES_Gjet_OOC: 1.95948616e+00 + syst_JES_Gjet_Purity: 6.16898898e-01 syst_JES_Gjet_Stat1: 0.0 - syst_JES_Gjet_Stat10: 0.25043074891075173 - syst_JES_Gjet_Stat11: 0.16120160568369038 - syst_JES_Gjet_Stat12: 0.024498228752299622 - syst_JES_Gjet_Stat13: 0.03458342955809906 - syst_JES_Gjet_Stat14: 0.0027759316904419676 - syst_JES_Gjet_Stat15: 0.0008328666339816957 - syst_JES_Gjet_Stat2: 0.0013475355282885867 + syst_JES_Gjet_Stat10: 2.50430749e-01 + syst_JES_Gjet_Stat11: 1.61201606e-01 + syst_JES_Gjet_Stat12: 2.44982288e-02 + syst_JES_Gjet_Stat13: 3.45834296e-02 + syst_JES_Gjet_Stat14: 2.77593169e-03 + syst_JES_Gjet_Stat15: 8.32866634e-04 + syst_JES_Gjet_Stat2: 1.34753553e-03 syst_JES_Gjet_Stat3: 0.0 - syst_JES_Gjet_Stat4: 0.007112666641281597 - syst_JES_Gjet_Stat5: 0.012373637167381303 - syst_JES_Gjet_Stat6: 0.03614497613777051 - syst_JES_Gjet_Stat7: 0.06194302139870156 - syst_JES_Gjet_Stat8: 0.059276980987563795 - syst_JES_Gjet_Stat9: 0.1466876528546285 - syst_JES_Gjet_Veto: 0.8120005341747011 - syst_JES_Gjet_dPhi: 0.1806093574541474 - syst_JES_LArESZee: 3.449090133643944 - syst_JES_LArEsmear: 0.27983543378207126 - syst_JES_LAr_JVT: 0.4219931151097136 - syst_JES_MJB_Alpha: 0.0029332280426530226 - syst_JES_MJB_Asym: 0.000603809802069327 - syst_JES_MJB_Beta: 0.0012323541496152177 - syst_JES_MJB_Stat1: 0.0030414812180909485 - syst_JES_MJB_Stat10: 2.586554464920467e-12 + syst_JES_Gjet_Stat4: 7.11266664e-03 + syst_JES_Gjet_Stat5: 1.23736372e-02 + syst_JES_Gjet_Stat6: 3.61449761e-02 + syst_JES_Gjet_Stat7: 6.19430214e-02 + syst_JES_Gjet_Stat8: 5.92769810e-02 + syst_JES_Gjet_Stat9: 1.46687653e-01 + syst_JES_Gjet_Veto: 8.12000534e-01 + syst_JES_Gjet_dPhi: 1.80609357e-01 + syst_JES_LArESZee: 3.44909013e+00 + syst_JES_LArEsmear: 2.79835434e-01 + syst_JES_LAr_JVT: 4.21993115e-01 + syst_JES_MJB_Alpha: 2.93322804e-03 + syst_JES_MJB_Asym: 6.03809802e-04 + syst_JES_MJB_Beta: 1.23235415e-03 + syst_JES_MJB_Stat1: 3.04148122e-03 + syst_JES_MJB_Stat10: 2.58655446e-12 syst_JES_MJB_Stat11: 0.0 - syst_JES_MJB_Stat12: 9.984406880230795e-16 - syst_JES_MJB_Stat13: 1.0196583104157981e-19 - syst_JES_MJB_Stat14: 2.539186483895974e-25 - syst_JES_MJB_Stat15: 4.544901319060734e-39 + syst_JES_MJB_Stat12: 9.98440688e-16 + syst_JES_MJB_Stat13: 1.01965831e-19 + syst_JES_MJB_Stat14: 2.53918648e-25 + syst_JES_MJB_Stat15: 4.54490132e-39 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 0.011279980884292313 - syst_JES_MJB_Stat3: 0.004477351337565548 - syst_JES_MJB_Stat4: 0.0008080017017308812 + syst_JES_MJB_Stat2: 1.12799809e-02 + syst_JES_MJB_Stat3: 4.47735134e-03 + syst_JES_MJB_Stat4: 8.08001702e-04 syst_JES_MJB_Stat5: 0.0 - syst_JES_MJB_Stat6: 5.119076161769817e-30 + syst_JES_MJB_Stat6: 5.11907616e-30 syst_JES_MJB_Stat7: 0.0 syst_JES_MJB_Stat8: 0.0 - syst_JES_MJB_Stat9: 1.9745379206285203e-12 - syst_JES_MJB_Threshold: 0.023545393865467616 - syst_JES_Pileup_MuOffset: 0.002110719910285351 - syst_JES_Pileup_NPVOffset: 0.13959656899437034 - syst_JES_Pileup_Pt_term: 0.8234476789693442 - syst_JES_PunchThrough_MC15: 0.017178223025316096 + syst_JES_MJB_Stat9: 1.97453792e-12 + syst_JES_MJB_Threshold: 2.35453939e-02 + syst_JES_Pileup_MuOffset: 2.11071991e-03 + syst_JES_Pileup_NPVOffset: 1.39596569e-01 + syst_JES_Pileup_Pt_term: 8.23447679e-01 + syst_JES_PunchThrough_MC15: 1.71782230e-02 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 3.0203342116394998 - syst_JES_Zjet_MuScale: 0.1965142997341415 - syst_JES_Zjet_MuSmearID: 0.03916654056717289 - syst_JES_Zjet_MuSmearMS: 0.31499296420713907 - syst_JES_Zjet_OOC: 1.019215757335021 - syst_JES_Zjet_Stat1: 0.015904341388438565 - syst_JES_Zjet_Stat10: 0.3186406596779513 - syst_JES_Zjet_Stat11: 0.5571393183037794 - syst_JES_Zjet_Stat12: 0.330557529032391 - syst_JES_Zjet_Stat13: 0.034956328468533415 - syst_JES_Zjet_Stat2: 4.125745023629066e-07 - syst_JES_Zjet_Stat3: 0.008762954467529772 - syst_JES_Zjet_Stat4: 0.009092940888403487 - syst_JES_Zjet_Stat5: 0.011472570176167011 - syst_JES_Zjet_Stat6: 0.015506155809871122 - syst_JES_Zjet_Stat7: 0.02553281564966935 - syst_JES_Zjet_Stat8: 0.035520222578131457 - syst_JES_Zjet_Stat9: 0.10869011029067917 - syst_JES_Zjet_Veto: 0.20059758223867005 - syst_JES_Zjet_dPhi: 0.18355309858457852 + syst_JES_Zjet_MC: 3.02033421e+00 + syst_JES_Zjet_MuScale: 1.96514300e-01 + syst_JES_Zjet_MuSmearID: 3.91665406e-02 + syst_JES_Zjet_MuSmearMS: 3.14992964e-01 + syst_JES_Zjet_OOC: 1.01921576e+00 + syst_JES_Zjet_Stat1: 1.59043414e-02 + syst_JES_Zjet_Stat10: 3.18640660e-01 + syst_JES_Zjet_Stat11: 5.57139318e-01 + syst_JES_Zjet_Stat12: 3.30557529e-01 + syst_JES_Zjet_Stat13: 3.49563285e-02 + syst_JES_Zjet_Stat2: 4.12574502e-07 + syst_JES_Zjet_Stat3: 8.76295447e-03 + syst_JES_Zjet_Stat4: 9.09294089e-03 + syst_JES_Zjet_Stat5: 1.14725702e-02 + syst_JES_Zjet_Stat6: 1.55061558e-02 + syst_JES_Zjet_Stat7: 2.55328156e-02 + syst_JES_Zjet_Stat8: 3.55202226e-02 + syst_JES_Zjet_Stat9: 1.08690110e-01 + syst_JES_Zjet_Veto: 2.00597582e-01 + syst_JES_Zjet_dPhi: 1.83553099e-01 syst_PRW: 0.2261 syst_Unfolding_bias: 0.01439 - syst_cleaning: 0.8747722603626614 + syst_cleaning: 8.74772260e-01 syst_lumi: 3.538 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.5374718853112226 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 2.5589651717051565 - syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0008142519995062953 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 5.37471885e-01 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 2.55896517e+00 + syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 8.14252000e-04 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 3.5636465874157612 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0020936952307045553 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.0149853040808028 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 3.56364659e+00 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 2.09369523e-03 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.01498530e+00 - stat: 0.696 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 1.1924614375316296 - syst_JER_NP1: 0.06549282327095085 - syst_JER_NP2: 0.2589557684238758 - syst_JER_NP3: 0.3118273079767069 - syst_JER_NP4: 0.05837515460364966 - syst_JER_NP5: 0.1137643195382454 - syst_JER_NP6: 0.10490982163267651 - syst_JER_NP7: 0.10639018140787242 - syst_JER_NP8: 0.065701306493859 - syst_JES_EtaIntercalibration_Modelling: 1.8930316954557311 - syst_JES_EtaIntercalibration_NonClosure: 1.4696380782305065e-05 - syst_JES_EtaIntercalibration_Stat0: 5.691518953671331e-09 + syst_JER_NP0: 1.19246144e+00 + syst_JER_NP1: 6.54928233e-02 + syst_JER_NP2: 2.58955768e-01 + syst_JER_NP3: 3.11827308e-01 + syst_JER_NP4: 5.83751546e-02 + syst_JER_NP5: 1.13764320e-01 + syst_JER_NP6: 1.04909822e-01 + syst_JER_NP7: 1.06390181e-01 + syst_JER_NP8: 6.57013065e-02 + syst_JES_EtaIntercalibration_Modelling: 1.89303170e+00 + syst_JES_EtaIntercalibration_NonClosure: 1.46963808e-05 + syst_JES_EtaIntercalibration_Stat0: 5.69151895e-09 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 8.545666182614143e-05 - syst_JES_EtaIntercalibration_Stat101: 0.0017641956261990903 - syst_JES_EtaIntercalibration_Stat102: 0.0014181588794983447 - syst_JES_EtaIntercalibration_Stat103: 0.004175108348294688 - syst_JES_EtaIntercalibration_Stat104: 0.0011737205459563193 - syst_JES_EtaIntercalibration_Stat105: 3.862884155653649e-09 - syst_JES_EtaIntercalibration_Stat106: 5.691518953671331e-09 - syst_JES_EtaIntercalibration_Stat107: 5.691518953671331e-09 - syst_JES_EtaIntercalibration_Stat108: 5.691518953671331e-09 - syst_JES_EtaIntercalibration_Stat109: 5.691518953671331e-09 + syst_JES_EtaIntercalibration_Stat100: 8.54566618e-05 + syst_JES_EtaIntercalibration_Stat101: 1.76419563e-03 + syst_JES_EtaIntercalibration_Stat102: 1.41815888e-03 + syst_JES_EtaIntercalibration_Stat103: 4.17510835e-03 + syst_JES_EtaIntercalibration_Stat104: 1.17372055e-03 + syst_JES_EtaIntercalibration_Stat105: 3.86288416e-09 + syst_JES_EtaIntercalibration_Stat106: 5.69151895e-09 + syst_JES_EtaIntercalibration_Stat107: 5.69151895e-09 + syst_JES_EtaIntercalibration_Stat108: 5.69151895e-09 + syst_JES_EtaIntercalibration_Stat109: 5.69151895e-09 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 1.2964580700894263e-06 - syst_JES_EtaIntercalibration_Stat111: 0.005158227838124253 - syst_JES_EtaIntercalibration_Stat112: 0.030821977142941364 - syst_JES_EtaIntercalibration_Stat113: 0.035708980663132904 - syst_JES_EtaIntercalibration_Stat114: 0.012405431582577044 - syst_JES_EtaIntercalibration_Stat115: 0.00031792480242975695 - syst_JES_EtaIntercalibration_Stat116: 5.2799944914164445e-06 - syst_JES_EtaIntercalibration_Stat117: 5.691518953671331e-09 - syst_JES_EtaIntercalibration_Stat118: 5.691518953671331e-09 - syst_JES_EtaIntercalibration_Stat119: 5.691518953671331e-09 + syst_JES_EtaIntercalibration_Stat110: 1.29645807e-06 + syst_JES_EtaIntercalibration_Stat111: 5.15822784e-03 + syst_JES_EtaIntercalibration_Stat112: 3.08219771e-02 + syst_JES_EtaIntercalibration_Stat113: 3.57089807e-02 + syst_JES_EtaIntercalibration_Stat114: 1.24054316e-02 + syst_JES_EtaIntercalibration_Stat115: 3.17924802e-04 + syst_JES_EtaIntercalibration_Stat116: 5.27999449e-06 + syst_JES_EtaIntercalibration_Stat117: 5.69151895e-09 + syst_JES_EtaIntercalibration_Stat118: 5.69151895e-09 + syst_JES_EtaIntercalibration_Stat119: 5.69151895e-09 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 0.00016237976320958224 - syst_JES_EtaIntercalibration_Stat121: 0.010020114408029482 - syst_JES_EtaIntercalibration_Stat122: 0.02432768176378506 - syst_JES_EtaIntercalibration_Stat123: 0.027538311495079 - syst_JES_EtaIntercalibration_Stat124: 0.007257644314789751 - syst_JES_EtaIntercalibration_Stat125: 2.616262744832789e-05 - syst_JES_EtaIntercalibration_Stat126: 5.691518953671331e-09 - syst_JES_EtaIntercalibration_Stat127: 5.691518953671331e-09 - syst_JES_EtaIntercalibration_Stat128: 5.691518953671331e-09 - syst_JES_EtaIntercalibration_Stat129: 0.0009227139766471515 + syst_JES_EtaIntercalibration_Stat120: 1.62379763e-04 + syst_JES_EtaIntercalibration_Stat121: 1.00201144e-02 + syst_JES_EtaIntercalibration_Stat122: 2.43276818e-02 + syst_JES_EtaIntercalibration_Stat123: 2.75383115e-02 + syst_JES_EtaIntercalibration_Stat124: 7.25764431e-03 + syst_JES_EtaIntercalibration_Stat125: 2.61626274e-05 + syst_JES_EtaIntercalibration_Stat126: 5.69151895e-09 + syst_JES_EtaIntercalibration_Stat127: 5.69151895e-09 + syst_JES_EtaIntercalibration_Stat128: 5.69151895e-09 + syst_JES_EtaIntercalibration_Stat129: 9.22713977e-04 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 0.03807912945433496 - syst_JES_EtaIntercalibration_Stat131: 0.18228304227217623 - syst_JES_EtaIntercalibration_Stat132: 0.24174399682308556 - syst_JES_EtaIntercalibration_Stat133: 0.054368286712016226 - syst_JES_EtaIntercalibration_Stat134: 0.0018955845819957492 - syst_JES_EtaIntercalibration_Stat135: 5.281888937681292e-06 + syst_JES_EtaIntercalibration_Stat130: 3.80791295e-02 + syst_JES_EtaIntercalibration_Stat131: 1.82283042e-01 + syst_JES_EtaIntercalibration_Stat132: 2.41743997e-01 + syst_JES_EtaIntercalibration_Stat133: 5.43682867e-02 + syst_JES_EtaIntercalibration_Stat134: 1.89558458e-03 + syst_JES_EtaIntercalibration_Stat135: 5.28188894e-06 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 syst_JES_EtaIntercalibration_Stat138: 0.0 - syst_JES_EtaIntercalibration_Stat139: 0.0015116033705969301 - syst_JES_EtaIntercalibration_Stat14: 8.72265160207687e-05 - syst_JES_EtaIntercalibration_Stat140: 0.06684780680770312 - syst_JES_EtaIntercalibration_Stat141: 0.2208476114881028 - syst_JES_EtaIntercalibration_Stat142: 0.14791709671298986 - syst_JES_EtaIntercalibration_Stat143: 0.038320889381641444 - syst_JES_EtaIntercalibration_Stat144: 0.0001854146434346543 + syst_JES_EtaIntercalibration_Stat139: 1.51160337e-03 + syst_JES_EtaIntercalibration_Stat14: 8.72265160e-05 + syst_JES_EtaIntercalibration_Stat140: 6.68478068e-02 + syst_JES_EtaIntercalibration_Stat141: 2.20847611e-01 + syst_JES_EtaIntercalibration_Stat142: 1.47917097e-01 + syst_JES_EtaIntercalibration_Stat143: 3.83208894e-02 + syst_JES_EtaIntercalibration_Stat144: 1.85414643e-04 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 0.000993077352223884 - syst_JES_EtaIntercalibration_Stat148: 0.01827810895579737 - syst_JES_EtaIntercalibration_Stat149: 0.13892828032837665 - syst_JES_EtaIntercalibration_Stat15: 8.691926720645241e-05 - syst_JES_EtaIntercalibration_Stat150: 0.16788456599699686 - syst_JES_EtaIntercalibration_Stat151: 0.05052054928442485 - syst_JES_EtaIntercalibration_Stat152: 0.0008092228741205972 + syst_JES_EtaIntercalibration_Stat147: 9.93077352e-04 + syst_JES_EtaIntercalibration_Stat148: 1.82781090e-02 + syst_JES_EtaIntercalibration_Stat149: 1.38928280e-01 + syst_JES_EtaIntercalibration_Stat15: 8.69192672e-05 + syst_JES_EtaIntercalibration_Stat150: 1.67884566e-01 + syst_JES_EtaIntercalibration_Stat151: 5.05205493e-02 + syst_JES_EtaIntercalibration_Stat152: 8.09222874e-04 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 syst_JES_EtaIntercalibration_Stat156: 0.0 - syst_JES_EtaIntercalibration_Stat157: 0.0016246762231287809 - syst_JES_EtaIntercalibration_Stat158: 0.058225536279196265 - syst_JES_EtaIntercalibration_Stat159: 0.18788778565941958 - syst_JES_EtaIntercalibration_Stat16: 8.63516218351242e-05 - syst_JES_EtaIntercalibration_Stat160: 0.1377848782522959 - syst_JES_EtaIntercalibration_Stat161: 0.027760685780434172 - syst_JES_EtaIntercalibration_Stat162: 0.0006567050507457667 + syst_JES_EtaIntercalibration_Stat157: 1.62467622e-03 + syst_JES_EtaIntercalibration_Stat158: 5.82255363e-02 + syst_JES_EtaIntercalibration_Stat159: 1.87887786e-01 + syst_JES_EtaIntercalibration_Stat16: 8.63516218e-05 + syst_JES_EtaIntercalibration_Stat160: 1.37784878e-01 + syst_JES_EtaIntercalibration_Stat161: 2.77606858e-02 + syst_JES_EtaIntercalibration_Stat162: 6.56705051e-04 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 0.0010744621945419951 - syst_JES_EtaIntercalibration_Stat166: 0.014885946493253295 - syst_JES_EtaIntercalibration_Stat167: 0.07700101038298134 - syst_JES_EtaIntercalibration_Stat168: 0.09235313151160604 - syst_JES_EtaIntercalibration_Stat169: 0.02131602917993874 - syst_JES_EtaIntercalibration_Stat17: 4.725900628451681e-09 - syst_JES_EtaIntercalibration_Stat170: 0.0011867410869688467 + syst_JES_EtaIntercalibration_Stat165: 1.07446219e-03 + syst_JES_EtaIntercalibration_Stat166: 1.48859465e-02 + syst_JES_EtaIntercalibration_Stat167: 7.70010104e-02 + syst_JES_EtaIntercalibration_Stat168: 9.23531315e-02 + syst_JES_EtaIntercalibration_Stat169: 2.13160292e-02 + syst_JES_EtaIntercalibration_Stat17: 4.72590063e-09 + syst_JES_EtaIntercalibration_Stat170: 1.18674109e-03 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 - syst_JES_EtaIntercalibration_Stat175: 0.0006017935897589804 - syst_JES_EtaIntercalibration_Stat176: 0.03245423046383938 - syst_JES_EtaIntercalibration_Stat177: 0.1312659041792651 - syst_JES_EtaIntercalibration_Stat178: 0.08385711225054199 - syst_JES_EtaIntercalibration_Stat179: 0.01483993634588774 + syst_JES_EtaIntercalibration_Stat175: 6.01793590e-04 + syst_JES_EtaIntercalibration_Stat176: 3.24542305e-02 + syst_JES_EtaIntercalibration_Stat177: 1.31265904e-01 + syst_JES_EtaIntercalibration_Stat178: 8.38571123e-02 + syst_JES_EtaIntercalibration_Stat179: 1.48399363e-02 syst_JES_EtaIntercalibration_Stat18: 0.0 - syst_JES_EtaIntercalibration_Stat180: 0.000776942473739208 + syst_JES_EtaIntercalibration_Stat180: 7.76942474e-04 syst_JES_EtaIntercalibration_Stat181: 0.0 - syst_JES_EtaIntercalibration_Stat182: 0.0010013693224779757 - syst_JES_EtaIntercalibration_Stat183: 0.0032310578376129385 - syst_JES_EtaIntercalibration_Stat184: 0.010088409327044577 - syst_JES_EtaIntercalibration_Stat185: 0.023150742428699776 - syst_JES_EtaIntercalibration_Stat186: 0.01639069451701178 - syst_JES_EtaIntercalibration_Stat187: 0.0012064667452938767 + syst_JES_EtaIntercalibration_Stat182: 1.00136932e-03 + syst_JES_EtaIntercalibration_Stat183: 3.23105784e-03 + syst_JES_EtaIntercalibration_Stat184: 1.00884093e-02 + syst_JES_EtaIntercalibration_Stat185: 2.31507424e-02 + syst_JES_EtaIntercalibration_Stat186: 1.63906945e-02 + syst_JES_EtaIntercalibration_Stat187: 1.20646675e-03 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 - syst_JES_EtaIntercalibration_Stat192: 0.0005085301171022223 - syst_JES_EtaIntercalibration_Stat193: 0.009632216635203967 - syst_JES_EtaIntercalibration_Stat194: 0.004998301558279573 - syst_JES_EtaIntercalibration_Stat195: 0.0030804418514232663 - syst_JES_EtaIntercalibration_Stat196: 0.005448499242910841 - syst_JES_EtaIntercalibration_Stat197: 0.0005135516794831851 - syst_JES_EtaIntercalibration_Stat198: 0.003280788409818591 - syst_JES_EtaIntercalibration_Stat199: 0.015492820111264443 + syst_JES_EtaIntercalibration_Stat192: 5.08530117e-04 + syst_JES_EtaIntercalibration_Stat193: 9.63221664e-03 + syst_JES_EtaIntercalibration_Stat194: 4.99830156e-03 + syst_JES_EtaIntercalibration_Stat195: 3.08044185e-03 + syst_JES_EtaIntercalibration_Stat196: 5.44849924e-03 + syst_JES_EtaIntercalibration_Stat197: 5.13551679e-04 + syst_JES_EtaIntercalibration_Stat198: 3.28078841e-03 + syst_JES_EtaIntercalibration_Stat199: 1.54928201e-02 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 0.017150504365761376 - syst_JES_EtaIntercalibration_Stat201: 0.003152876332414578 - syst_JES_EtaIntercalibration_Stat202: 0.00020654689337533012 + syst_JES_EtaIntercalibration_Stat200: 1.71505044e-02 + syst_JES_EtaIntercalibration_Stat201: 3.15287633e-03 + syst_JES_EtaIntercalibration_Stat202: 2.06546893e-04 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 - syst_JES_EtaIntercalibration_Stat207: 0.0013906628858479685 - syst_JES_EtaIntercalibration_Stat208: 0.006381510381563287 - syst_JES_EtaIntercalibration_Stat209: 0.018211120229134722 + syst_JES_EtaIntercalibration_Stat207: 1.39066289e-03 + syst_JES_EtaIntercalibration_Stat208: 6.38151038e-03 + syst_JES_EtaIntercalibration_Stat209: 1.82111202e-02 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 0.01223418832616206 - syst_JES_EtaIntercalibration_Stat211: 0.0039320746432386046 - syst_JES_EtaIntercalibration_Stat212: 0.0003592152697199828 - syst_JES_EtaIntercalibration_Stat213: 0.0005103258248413459 - syst_JES_EtaIntercalibration_Stat214: 0.00024063213147873665 - syst_JES_EtaIntercalibration_Stat215: 5.667911789453568e-05 + syst_JES_EtaIntercalibration_Stat210: 1.22341883e-02 + syst_JES_EtaIntercalibration_Stat211: 3.93207464e-03 + syst_JES_EtaIntercalibration_Stat212: 3.59215270e-04 + syst_JES_EtaIntercalibration_Stat213: 5.10325825e-04 + syst_JES_EtaIntercalibration_Stat214: 2.40632131e-04 + syst_JES_EtaIntercalibration_Stat215: 5.66791179e-05 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 syst_JES_EtaIntercalibration_Stat219: 0.0 - syst_JES_EtaIntercalibration_Stat22: 5.691518953671331e-09 - syst_JES_EtaIntercalibration_Stat220: 8.273140682352742e-06 - syst_JES_EtaIntercalibration_Stat221: 0.0001745249838848295 - syst_JES_EtaIntercalibration_Stat222: 0.0009516569760160433 - syst_JES_EtaIntercalibration_Stat223: 0.0004905193032644078 - syst_JES_EtaIntercalibration_Stat224: 1.4809348424221774e-06 - syst_JES_EtaIntercalibration_Stat225: 2.2584333220177214e-06 - syst_JES_EtaIntercalibration_Stat226: 1.9260964497576e-09 - syst_JES_EtaIntercalibration_Stat227: 2.6148667979073556e-15 + syst_JES_EtaIntercalibration_Stat22: 5.69151895e-09 + syst_JES_EtaIntercalibration_Stat220: 8.27314068e-06 + syst_JES_EtaIntercalibration_Stat221: 1.74524984e-04 + syst_JES_EtaIntercalibration_Stat222: 9.51656976e-04 + syst_JES_EtaIntercalibration_Stat223: 4.90519303e-04 + syst_JES_EtaIntercalibration_Stat224: 1.48093484e-06 + syst_JES_EtaIntercalibration_Stat225: 2.25843332e-06 + syst_JES_EtaIntercalibration_Stat226: 1.92609645e-09 + syst_JES_EtaIntercalibration_Stat227: 2.61486680e-15 syst_JES_EtaIntercalibration_Stat228: 0.0 syst_JES_EtaIntercalibration_Stat229: 0.0 - syst_JES_EtaIntercalibration_Stat23: 5.691518953671331e-09 + syst_JES_EtaIntercalibration_Stat23: 5.69151895e-09 syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 - syst_JES_EtaIntercalibration_Stat232: 3.596316914442234e-12 - syst_JES_EtaIntercalibration_Stat233: 1.4774393388562525e-07 - syst_JES_EtaIntercalibration_Stat234: 3.1413119472602527e-06 - syst_JES_EtaIntercalibration_Stat235: 3.4065931295063695e-06 - syst_JES_EtaIntercalibration_Stat236: 6.5089486094145804e-15 - syst_JES_EtaIntercalibration_Stat237: 4.9327825004962495e-15 - syst_JES_EtaIntercalibration_Stat238: 2.8267069179524077e-36 + syst_JES_EtaIntercalibration_Stat232: 3.59631691e-12 + syst_JES_EtaIntercalibration_Stat233: 1.47743934e-07 + syst_JES_EtaIntercalibration_Stat234: 3.14131195e-06 + syst_JES_EtaIntercalibration_Stat235: 3.40659313e-06 + syst_JES_EtaIntercalibration_Stat236: 6.50894861e-15 + syst_JES_EtaIntercalibration_Stat237: 4.93278250e-15 + syst_JES_EtaIntercalibration_Stat238: 2.82670692e-36 syst_JES_EtaIntercalibration_Stat239: 0.0 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 - syst_JES_EtaIntercalibration_Stat243: 5.753076265790329e-29 - syst_JES_EtaIntercalibration_Stat244: 6.840386100213934e-19 - syst_JES_EtaIntercalibration_Stat245: 3.620398325658483e-12 - syst_JES_EtaIntercalibration_Stat25: 4.767469847833335e-09 - syst_JES_EtaIntercalibration_Stat26: 9.514110363034475e-07 - syst_JES_EtaIntercalibration_Stat27: 0.00014126402514440822 - syst_JES_EtaIntercalibration_Stat28: 0.0002843149507148718 - syst_JES_EtaIntercalibration_Stat29: 0.0001337011954882977 + syst_JES_EtaIntercalibration_Stat243: 5.75307627e-29 + syst_JES_EtaIntercalibration_Stat244: 6.84038610e-19 + syst_JES_EtaIntercalibration_Stat245: 3.62039833e-12 + syst_JES_EtaIntercalibration_Stat25: 4.76746985e-09 + syst_JES_EtaIntercalibration_Stat26: 9.51411036e-07 + syst_JES_EtaIntercalibration_Stat27: 1.41264025e-04 + syst_JES_EtaIntercalibration_Stat28: 2.84314951e-04 + syst_JES_EtaIntercalibration_Stat29: 1.33701195e-04 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 6.319838644356358e-08 + syst_JES_EtaIntercalibration_Stat30: 6.31983864e-08 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 7.841116901787651e-09 - syst_JES_EtaIntercalibration_Stat36: 8.632291316185987e-05 - syst_JES_EtaIntercalibration_Stat37: 3.472576385049003e-05 - syst_JES_EtaIntercalibration_Stat38: 3.5340798632741736e-05 - syst_JES_EtaIntercalibration_Stat39: 2.7166157626493665e-05 - syst_JES_EtaIntercalibration_Stat4: 6.5367597477649435e-09 - syst_JES_EtaIntercalibration_Stat40: 2.2360775925714206e-09 + syst_JES_EtaIntercalibration_Stat35: 7.84111690e-09 + syst_JES_EtaIntercalibration_Stat36: 8.63229132e-05 + syst_JES_EtaIntercalibration_Stat37: 3.47257639e-05 + syst_JES_EtaIntercalibration_Stat38: 3.53407986e-05 + syst_JES_EtaIntercalibration_Stat39: 2.71661576e-05 + syst_JES_EtaIntercalibration_Stat4: 6.53675975e-09 + syst_JES_EtaIntercalibration_Stat40: 2.23607759e-09 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 - syst_JES_EtaIntercalibration_Stat44: 5.691518953671331e-09 + syst_JES_EtaIntercalibration_Stat44: 5.69151895e-09 syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 - syst_JES_EtaIntercalibration_Stat47: 4.770067924044687e-09 - syst_JES_EtaIntercalibration_Stat48: 1.7579322029020348e-05 - syst_JES_EtaIntercalibration_Stat49: 0.0002403555023293621 - syst_JES_EtaIntercalibration_Stat5: 4.784743700554921e-06 - syst_JES_EtaIntercalibration_Stat50: 0.0003576044567675297 - syst_JES_EtaIntercalibration_Stat51: 0.0007370859837902224 - syst_JES_EtaIntercalibration_Stat52: 3.943216041507236e-06 + syst_JES_EtaIntercalibration_Stat47: 4.77006792e-09 + syst_JES_EtaIntercalibration_Stat48: 1.75793220e-05 + syst_JES_EtaIntercalibration_Stat49: 2.40355502e-04 + syst_JES_EtaIntercalibration_Stat5: 4.78474370e-06 + syst_JES_EtaIntercalibration_Stat50: 3.57604457e-04 + syst_JES_EtaIntercalibration_Stat51: 7.37085984e-04 + syst_JES_EtaIntercalibration_Stat52: 3.94321604e-06 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 syst_JES_EtaIntercalibration_Stat56: 0.0 - syst_JES_EtaIntercalibration_Stat57: 8.721938908967264e-05 - syst_JES_EtaIntercalibration_Stat58: 7.498920122257605e-05 - syst_JES_EtaIntercalibration_Stat59: 0.0004764528756340967 - syst_JES_EtaIntercalibration_Stat6: 1.5154394519989903e-05 - syst_JES_EtaIntercalibration_Stat60: 0.00025548389381720323 - syst_JES_EtaIntercalibration_Stat61: 7.596145313907574e-05 - syst_JES_EtaIntercalibration_Stat62: 4.82116342286797e-09 + syst_JES_EtaIntercalibration_Stat57: 8.72193891e-05 + syst_JES_EtaIntercalibration_Stat58: 7.49892012e-05 + syst_JES_EtaIntercalibration_Stat59: 4.76452876e-04 + syst_JES_EtaIntercalibration_Stat6: 1.51543945e-05 + syst_JES_EtaIntercalibration_Stat60: 2.55483894e-04 + syst_JES_EtaIntercalibration_Stat61: 7.59614531e-05 + syst_JES_EtaIntercalibration_Stat62: 4.82116342e-09 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 - syst_JES_EtaIntercalibration_Stat69: 6.875853547015091e-09 - syst_JES_EtaIntercalibration_Stat7: 3.971831775727038e-06 - syst_JES_EtaIntercalibration_Stat70: 0.0001903347894500635 - syst_JES_EtaIntercalibration_Stat71: 0.0011425771702602847 - syst_JES_EtaIntercalibration_Stat72: 0.001042443172312045 - syst_JES_EtaIntercalibration_Stat73: 0.00022360127459386273 - syst_JES_EtaIntercalibration_Stat74: 2.7998582160530915e-05 + syst_JES_EtaIntercalibration_Stat69: 6.87585355e-09 + syst_JES_EtaIntercalibration_Stat7: 3.97183178e-06 + syst_JES_EtaIntercalibration_Stat70: 1.90334789e-04 + syst_JES_EtaIntercalibration_Stat71: 1.14257717e-03 + syst_JES_EtaIntercalibration_Stat72: 1.04244317e-03 + syst_JES_EtaIntercalibration_Stat73: 2.23601275e-04 + syst_JES_EtaIntercalibration_Stat74: 2.79985822e-05 syst_JES_EtaIntercalibration_Stat75: 0.0 syst_JES_EtaIntercalibration_Stat76: 0.0 syst_JES_EtaIntercalibration_Stat77: 0.0 syst_JES_EtaIntercalibration_Stat78: 0.0 - syst_JES_EtaIntercalibration_Stat79: 8.420455784390475e-05 + syst_JES_EtaIntercalibration_Stat79: 8.42045578e-05 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 0.00045348645790144605 - syst_JES_EtaIntercalibration_Stat81: 0.0007710805194660283 - syst_JES_EtaIntercalibration_Stat82: 0.0011877461134434412 - syst_JES_EtaIntercalibration_Stat83: 0.0010892778158027455 - syst_JES_EtaIntercalibration_Stat84: 3.012305761372839e-09 - syst_JES_EtaIntercalibration_Stat85: 5.691518953671331e-09 - syst_JES_EtaIntercalibration_Stat86: 5.691518953671331e-09 - syst_JES_EtaIntercalibration_Stat87: 5.691518953671331e-09 - syst_JES_EtaIntercalibration_Stat88: 5.691518953671331e-09 - syst_JES_EtaIntercalibration_Stat89: 5.691518953671331e-09 + syst_JES_EtaIntercalibration_Stat80: 4.53486458e-04 + syst_JES_EtaIntercalibration_Stat81: 7.71080519e-04 + syst_JES_EtaIntercalibration_Stat82: 1.18774611e-03 + syst_JES_EtaIntercalibration_Stat83: 1.08927782e-03 + syst_JES_EtaIntercalibration_Stat84: 3.01230576e-09 + syst_JES_EtaIntercalibration_Stat85: 5.69151895e-09 + syst_JES_EtaIntercalibration_Stat86: 5.69151895e-09 + syst_JES_EtaIntercalibration_Stat87: 5.69151895e-09 + syst_JES_EtaIntercalibration_Stat88: 5.69151895e-09 + syst_JES_EtaIntercalibration_Stat89: 5.69151895e-09 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 0.00023590639563182683 - syst_JES_EtaIntercalibration_Stat92: 0.0015315046286250656 - syst_JES_EtaIntercalibration_Stat93: 0.0032640312142349372 - syst_JES_EtaIntercalibration_Stat94: 0.0005746568899787073 - syst_JES_EtaIntercalibration_Stat95: 0.00011519625051189816 - syst_JES_EtaIntercalibration_Stat96: 5.2799944914164445e-06 - syst_JES_EtaIntercalibration_Stat97: 5.691518953671331e-09 - syst_JES_EtaIntercalibration_Stat98: 5.691518953671331e-09 - syst_JES_EtaIntercalibration_Stat99: 5.691518953671331e-09 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.009850059530276963 - syst_JES_Flavour_Comp: 0.17851238052303262 - syst_JES_Gjet_Generator: 1.8635972606762439 - syst_JES_Gjet_OOC: 1.168260322017315 - syst_JES_Gjet_Purity: 0.3650423973663881 - syst_JES_Gjet_Stat1: 1.794404636641357e-35 - syst_JES_Gjet_Stat10: 0.1421190655753126 - syst_JES_Gjet_Stat11: 0.1560075853925058 - syst_JES_Gjet_Stat12: 0.04599834861166214 - syst_JES_Gjet_Stat13: 0.024766963883366893 - syst_JES_Gjet_Stat14: 0.007847000127437238 - syst_JES_Gjet_Stat15: 0.001669630728394755 - syst_JES_Gjet_Stat2: 0.00012704592673517712 - syst_JES_Gjet_Stat3: 1.1771883313641875e-43 - syst_JES_Gjet_Stat4: 0.004054730940678611 - syst_JES_Gjet_Stat5: 0.007285516335168015 - syst_JES_Gjet_Stat6: 0.015179330378840826 - syst_JES_Gjet_Stat7: 0.024222772343396204 - syst_JES_Gjet_Stat8: 0.0233787996911732 - syst_JES_Gjet_Stat9: 0.07179855569577985 - syst_JES_Gjet_Veto: 0.4885658067241301 - syst_JES_Gjet_dPhi: 0.09020632516625429 - syst_JES_LArESZee: 2.104298160907812 - syst_JES_LArEsmear: 0.17056400558148252 - syst_JES_LAr_JVT: 0.2554665535838302 - syst_JES_MJB_Alpha: 0.0015908888116092494 - syst_JES_MJB_Asym: 0.0034998914536739562 - syst_JES_MJB_Beta: 0.002617994919193339 - syst_JES_MJB_Stat1: 0.009210180169247505 - syst_JES_MJB_Stat10: 1.2914380618132642e-09 - syst_JES_MJB_Stat11: 3.5314783915521835e-43 - syst_JES_MJB_Stat12: 4.117084769591222e-12 - syst_JES_MJB_Stat13: 5.077506942388164e-15 - syst_JES_MJB_Stat14: 2.32960833618014e-19 - syst_JES_MJB_Stat15: 6.0552496232607954e-30 + syst_JES_EtaIntercalibration_Stat91: 2.35906396e-04 + syst_JES_EtaIntercalibration_Stat92: 1.53150463e-03 + syst_JES_EtaIntercalibration_Stat93: 3.26403121e-03 + syst_JES_EtaIntercalibration_Stat94: 5.74656890e-04 + syst_JES_EtaIntercalibration_Stat95: 1.15196251e-04 + syst_JES_EtaIntercalibration_Stat96: 5.27999449e-06 + syst_JES_EtaIntercalibration_Stat97: 5.69151895e-09 + syst_JES_EtaIntercalibration_Stat98: 5.69151895e-09 + syst_JES_EtaIntercalibration_Stat99: 5.69151895e-09 + syst_JES_EtaIntercalibration_TotalStat_MJB: 9.85005953e-03 + syst_JES_Flavour_Comp: 1.78512381e-01 + syst_JES_Gjet_Generator: 1.86359726e+00 + syst_JES_Gjet_OOC: 1.16826032e+00 + syst_JES_Gjet_Purity: 3.65042397e-01 + syst_JES_Gjet_Stat1: 1.79440464e-35 + syst_JES_Gjet_Stat10: 1.42119066e-01 + syst_JES_Gjet_Stat11: 1.56007585e-01 + syst_JES_Gjet_Stat12: 4.59983486e-02 + syst_JES_Gjet_Stat13: 2.47669639e-02 + syst_JES_Gjet_Stat14: 7.84700013e-03 + syst_JES_Gjet_Stat15: 1.66963073e-03 + syst_JES_Gjet_Stat2: 1.27045927e-04 + syst_JES_Gjet_Stat3: 1.17718833e-43 + syst_JES_Gjet_Stat4: 4.05473094e-03 + syst_JES_Gjet_Stat5: 7.28551634e-03 + syst_JES_Gjet_Stat6: 1.51793304e-02 + syst_JES_Gjet_Stat7: 2.42227723e-02 + syst_JES_Gjet_Stat8: 2.33787997e-02 + syst_JES_Gjet_Stat9: 7.17985557e-02 + syst_JES_Gjet_Veto: 4.88565807e-01 + syst_JES_Gjet_dPhi: 9.02063252e-02 + syst_JES_LArESZee: 2.10429816e+00 + syst_JES_LArEsmear: 1.70564006e-01 + syst_JES_LAr_JVT: 2.55466554e-01 + syst_JES_MJB_Alpha: 1.59088881e-03 + syst_JES_MJB_Asym: 3.49989145e-03 + syst_JES_MJB_Beta: 2.61799492e-03 + syst_JES_MJB_Stat1: 9.21018017e-03 + syst_JES_MJB_Stat10: 1.29143806e-09 + syst_JES_MJB_Stat11: 3.53147839e-43 + syst_JES_MJB_Stat12: 4.11708477e-12 + syst_JES_MJB_Stat13: 5.07750694e-15 + syst_JES_MJB_Stat14: 2.32960834e-19 + syst_JES_MJB_Stat15: 6.05524962e-30 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 0.007997744603949291 - syst_JES_MJB_Stat3: 0.003012902379766062 - syst_JES_MJB_Stat4: 0.001709534147070482 + syst_JES_MJB_Stat2: 7.99774460e-03 + syst_JES_MJB_Stat3: 3.01290238e-03 + syst_JES_MJB_Stat4: 1.70953415e-03 syst_JES_MJB_Stat5: 0.0 - syst_JES_MJB_Stat6: 1.3813105190361798e-22 + syst_JES_MJB_Stat6: 1.38131052e-22 syst_JES_MJB_Stat7: 0.0 - syst_JES_MJB_Stat8: 4.708580120375993e-43 - syst_JES_MJB_Stat9: 9.854503069663127e-10 - syst_JES_MJB_Threshold: 0.015514521222068053 - syst_JES_Pileup_MuOffset: 0.011934989400916952 - syst_JES_Pileup_NPVOffset: 0.09136337709936078 - syst_JES_Pileup_Pt_term: 0.4427775246102719 - syst_JES_PunchThrough_MC15: 0.012715677203751281 + syst_JES_MJB_Stat8: 4.70858012e-43 + syst_JES_MJB_Stat9: 9.85450307e-10 + syst_JES_MJB_Threshold: 1.55145212e-02 + syst_JES_Pileup_MuOffset: 1.19349894e-02 + syst_JES_Pileup_NPVOffset: 9.13633771e-02 + syst_JES_Pileup_Pt_term: 4.42777525e-01 + syst_JES_PunchThrough_MC15: 1.27156772e-02 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 1.744433719004537 - syst_JES_Zjet_MuScale: 0.10888562164032495 - syst_JES_Zjet_MuSmearID: 0.019885534315174938 - syst_JES_Zjet_MuSmearMS: 0.20806164350980216 - syst_JES_Zjet_OOC: 0.5873173588444327 - syst_JES_Zjet_Stat1: 0.009144660682605998 - syst_JES_Zjet_Stat10: 0.1449675952583887 - syst_JES_Zjet_Stat11: 0.28465826880665174 - syst_JES_Zjet_Stat12: 0.3455362897005176 - syst_JES_Zjet_Stat13: 0.008314400925502691 - syst_JES_Zjet_Stat2: 3.6442348991249175e-08 - syst_JES_Zjet_Stat3: 0.00496272183383272 - syst_JES_Zjet_Stat4: 0.005160827162383952 - syst_JES_Zjet_Stat5: 0.006541762263144389 - syst_JES_Zjet_Stat6: 0.00884323521116565 - syst_JES_Zjet_Stat7: 0.012304200624177093 - syst_JES_Zjet_Stat8: 0.01624884303573642 - syst_JES_Zjet_Stat9: 0.04752347869211596 - syst_JES_Zjet_Veto: 0.1105242836439124 - syst_JES_Zjet_dPhi: 0.09798664858030404 + syst_JES_Zjet_MC: 1.74443372e+00 + syst_JES_Zjet_MuScale: 1.08885622e-01 + syst_JES_Zjet_MuSmearID: 1.98855343e-02 + syst_JES_Zjet_MuSmearMS: 2.08061644e-01 + syst_JES_Zjet_OOC: 5.87317359e-01 + syst_JES_Zjet_Stat1: 9.14466068e-03 + syst_JES_Zjet_Stat10: 1.44967595e-01 + syst_JES_Zjet_Stat11: 2.84658269e-01 + syst_JES_Zjet_Stat12: 3.45536290e-01 + syst_JES_Zjet_Stat13: 8.31440093e-03 + syst_JES_Zjet_Stat2: 3.64423490e-08 + syst_JES_Zjet_Stat3: 4.96272183e-03 + syst_JES_Zjet_Stat4: 5.16082716e-03 + syst_JES_Zjet_Stat5: 6.54176226e-03 + syst_JES_Zjet_Stat6: 8.84323521e-03 + syst_JES_Zjet_Stat7: 1.23042006e-02 + syst_JES_Zjet_Stat8: 1.62488430e-02 + syst_JES_Zjet_Stat9: 4.75234787e-02 + syst_JES_Zjet_Veto: 1.10524284e-01 + syst_JES_Zjet_dPhi: 9.79866486e-02 syst_PRW: 0.1425 syst_Unfolding_bias: 0.001567 - syst_cleaning: 0.4916426217284258 + syst_cleaning: 4.91642622e-01 syst_lumi: 2.035 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.29335033662840754 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 1.3792122271427265 - syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.004646503204561469 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 2.93350337e-01 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 1.37921223e+00 + syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 4.64650320e-03 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 1.9205004556104641 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.012071355847625401 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.5605001583407447 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 1.92050046e+00 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.20713558e-02 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 5.60500158e-01 - stat: 0.3728 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.621287507922057 - syst_JER_NP1: 0.030091581463924422 - syst_JER_NP2: 0.18128827871652375 - syst_JER_NP3: 0.16660591226003954 - syst_JER_NP4: 0.03039008226379126 - syst_JER_NP5: 0.07535035152539103 - syst_JER_NP6: 0.05661737895734842 - syst_JER_NP7: 0.05939453931128686 - syst_JER_NP8: 0.03838143394924166 - syst_JES_EtaIntercalibration_Modelling: 1.1540880328207204 - syst_JES_EtaIntercalibration_NonClosure: 2.6704680623207233e-05 - syst_JES_EtaIntercalibration_Stat0: 4.865330718460976e-10 + syst_JER_NP0: 6.21287508e-01 + syst_JER_NP1: 3.00915815e-02 + syst_JER_NP2: 1.81288279e-01 + syst_JER_NP3: 1.66605912e-01 + syst_JER_NP4: 3.03900823e-02 + syst_JER_NP5: 7.53503515e-02 + syst_JER_NP6: 5.66173790e-02 + syst_JER_NP7: 5.93945393e-02 + syst_JER_NP8: 3.83814339e-02 + syst_JES_EtaIntercalibration_Modelling: 1.15408803e+00 + syst_JES_EtaIntercalibration_NonClosure: 2.67046806e-05 + syst_JES_EtaIntercalibration_Stat0: 4.86533072e-10 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 2.4937424940640424e-05 - syst_JES_EtaIntercalibration_Stat101: 0.0007085155802803492 - syst_JES_EtaIntercalibration_Stat102: 0.0007961636562290443 - syst_JES_EtaIntercalibration_Stat103: 0.001268333326653526 - syst_JES_EtaIntercalibration_Stat104: 0.0006981418314891323 - syst_JES_EtaIntercalibration_Stat105: 3.2921456027946275e-10 - syst_JES_EtaIntercalibration_Stat106: 4.865330718460976e-10 - syst_JES_EtaIntercalibration_Stat107: 4.865330718460976e-10 - syst_JES_EtaIntercalibration_Stat108: 4.865330718460976e-10 - syst_JES_EtaIntercalibration_Stat109: 4.865330718460976e-10 + syst_JES_EtaIntercalibration_Stat100: 2.49374249e-05 + syst_JES_EtaIntercalibration_Stat101: 7.08515580e-04 + syst_JES_EtaIntercalibration_Stat102: 7.96163656e-04 + syst_JES_EtaIntercalibration_Stat103: 1.26833333e-03 + syst_JES_EtaIntercalibration_Stat104: 6.98141831e-04 + syst_JES_EtaIntercalibration_Stat105: 3.29214560e-10 + syst_JES_EtaIntercalibration_Stat106: 4.86533072e-10 + syst_JES_EtaIntercalibration_Stat107: 4.86533072e-10 + syst_JES_EtaIntercalibration_Stat108: 4.86533072e-10 + syst_JES_EtaIntercalibration_Stat109: 4.86533072e-10 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 1.3074765189096133e-07 - syst_JES_EtaIntercalibration_Stat111: 0.0018936697672772833 - syst_JES_EtaIntercalibration_Stat112: 0.009703561343651104 - syst_JES_EtaIntercalibration_Stat113: 0.011535373335961 - syst_JES_EtaIntercalibration_Stat114: 0.004141766893488816 - syst_JES_EtaIntercalibration_Stat115: 0.00022896476819589515 - syst_JES_EtaIntercalibration_Stat116: 1.195992197982257e-06 - syst_JES_EtaIntercalibration_Stat117: 4.865330718460976e-10 - syst_JES_EtaIntercalibration_Stat118: 4.865330718460976e-10 - syst_JES_EtaIntercalibration_Stat119: 4.865330718460976e-10 + syst_JES_EtaIntercalibration_Stat110: 1.30747652e-07 + syst_JES_EtaIntercalibration_Stat111: 1.89366977e-03 + syst_JES_EtaIntercalibration_Stat112: 9.70356134e-03 + syst_JES_EtaIntercalibration_Stat113: 1.15353733e-02 + syst_JES_EtaIntercalibration_Stat114: 4.14176689e-03 + syst_JES_EtaIntercalibration_Stat115: 2.28964768e-04 + syst_JES_EtaIntercalibration_Stat116: 1.19599220e-06 + syst_JES_EtaIntercalibration_Stat117: 4.86533072e-10 + syst_JES_EtaIntercalibration_Stat118: 4.86533072e-10 + syst_JES_EtaIntercalibration_Stat119: 4.86533072e-10 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 4.438380194395248e-05 - syst_JES_EtaIntercalibration_Stat121: 0.002465668671983322 - syst_JES_EtaIntercalibration_Stat122: 0.007160070041556856 - syst_JES_EtaIntercalibration_Stat123: 0.008097262176192643 - syst_JES_EtaIntercalibration_Stat124: 0.00201769050684861 - syst_JES_EtaIntercalibration_Stat125: 3.3005960189032526e-06 - syst_JES_EtaIntercalibration_Stat126: 4.865330718460976e-10 - syst_JES_EtaIntercalibration_Stat127: 4.865330718460976e-10 - syst_JES_EtaIntercalibration_Stat128: 4.865330718460976e-10 - syst_JES_EtaIntercalibration_Stat129: 0.00034070277468051236 + syst_JES_EtaIntercalibration_Stat120: 4.43838019e-05 + syst_JES_EtaIntercalibration_Stat121: 2.46566867e-03 + syst_JES_EtaIntercalibration_Stat122: 7.16007004e-03 + syst_JES_EtaIntercalibration_Stat123: 8.09726218e-03 + syst_JES_EtaIntercalibration_Stat124: 2.01769051e-03 + syst_JES_EtaIntercalibration_Stat125: 3.30059602e-06 + syst_JES_EtaIntercalibration_Stat126: 4.86533072e-10 + syst_JES_EtaIntercalibration_Stat127: 4.86533072e-10 + syst_JES_EtaIntercalibration_Stat128: 4.86533072e-10 + syst_JES_EtaIntercalibration_Stat129: 3.40702775e-04 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 0.012815594992039972 - syst_JES_EtaIntercalibration_Stat131: 0.06557096518276974 - syst_JES_EtaIntercalibration_Stat132: 0.0829408299632937 - syst_JES_EtaIntercalibration_Stat133: 0.019678340250132886 - syst_JES_EtaIntercalibration_Stat134: 0.0006651274069680185 - syst_JES_EtaIntercalibration_Stat135: 1.1961542877070666e-06 + syst_JES_EtaIntercalibration_Stat130: 1.28155950e-02 + syst_JES_EtaIntercalibration_Stat131: 6.55709652e-02 + syst_JES_EtaIntercalibration_Stat132: 8.29408300e-02 + syst_JES_EtaIntercalibration_Stat133: 1.96783403e-02 + syst_JES_EtaIntercalibration_Stat134: 6.65127407e-04 + syst_JES_EtaIntercalibration_Stat135: 1.19615429e-06 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 syst_JES_EtaIntercalibration_Stat138: 0.0 - syst_JES_EtaIntercalibration_Stat139: 0.0006576652126082084 - syst_JES_EtaIntercalibration_Stat14: 2.53139598381192e-05 - syst_JES_EtaIntercalibration_Stat140: 0.024182795537323637 - syst_JES_EtaIntercalibration_Stat141: 0.07806711263393824 - syst_JES_EtaIntercalibration_Stat142: 0.050401906709964854 - syst_JES_EtaIntercalibration_Stat143: 0.012470030904131714 - syst_JES_EtaIntercalibration_Stat144: 0.0004724094929983943 + syst_JES_EtaIntercalibration_Stat139: 6.57665213e-04 + syst_JES_EtaIntercalibration_Stat14: 2.53139598e-05 + syst_JES_EtaIntercalibration_Stat140: 2.41827955e-02 + syst_JES_EtaIntercalibration_Stat141: 7.80671126e-02 + syst_JES_EtaIntercalibration_Stat142: 5.04019067e-02 + syst_JES_EtaIntercalibration_Stat143: 1.24700309e-02 + syst_JES_EtaIntercalibration_Stat144: 4.72409493e-04 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 0.00028657224429452343 - syst_JES_EtaIntercalibration_Stat148: 0.011056304660690209 - syst_JES_EtaIntercalibration_Stat149: 0.06137840886663649 - syst_JES_EtaIntercalibration_Stat15: 2.525372457789678e-05 - syst_JES_EtaIntercalibration_Stat150: 0.07152020046811948 - syst_JES_EtaIntercalibration_Stat151: 0.022585521911171327 - syst_JES_EtaIntercalibration_Stat152: 0.0003688420088601622 + syst_JES_EtaIntercalibration_Stat147: 2.86572244e-04 + syst_JES_EtaIntercalibration_Stat148: 1.10563047e-02 + syst_JES_EtaIntercalibration_Stat149: 6.13784089e-02 + syst_JES_EtaIntercalibration_Stat15: 2.52537246e-05 + syst_JES_EtaIntercalibration_Stat150: 7.15202005e-02 + syst_JES_EtaIntercalibration_Stat151: 2.25855219e-02 + syst_JES_EtaIntercalibration_Stat152: 3.68842009e-04 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 syst_JES_EtaIntercalibration_Stat156: 0.0 - syst_JES_EtaIntercalibration_Stat157: 0.0005064103050639865 - syst_JES_EtaIntercalibration_Stat158: 0.0269345484461871 - syst_JES_EtaIntercalibration_Stat159: 0.08295150676750844 - syst_JES_EtaIntercalibration_Stat16: 2.512415627116013e-05 - syst_JES_EtaIntercalibration_Stat160: 0.06090968293301155 - syst_JES_EtaIntercalibration_Stat161: 0.011501466721683805 - syst_JES_EtaIntercalibration_Stat162: 0.0005145184253260518 + syst_JES_EtaIntercalibration_Stat157: 5.06410305e-04 + syst_JES_EtaIntercalibration_Stat158: 2.69345484e-02 + syst_JES_EtaIntercalibration_Stat159: 8.29515068e-02 + syst_JES_EtaIntercalibration_Stat16: 2.51241563e-05 + syst_JES_EtaIntercalibration_Stat160: 6.09096829e-02 + syst_JES_EtaIntercalibration_Stat161: 1.15014667e-02 + syst_JES_EtaIntercalibration_Stat162: 5.14518425e-04 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 0.00040430579614939976 - syst_JES_EtaIntercalibration_Stat166: 0.01236213234033676 - syst_JES_EtaIntercalibration_Stat167: 0.05390124581120552 - syst_JES_EtaIntercalibration_Stat168: 0.052108865848337176 - syst_JES_EtaIntercalibration_Stat169: 0.015105056131971174 - syst_JES_EtaIntercalibration_Stat17: 4.0400085086544057e-10 - syst_JES_EtaIntercalibration_Stat170: 0.0007369683354798902 + syst_JES_EtaIntercalibration_Stat165: 4.04305796e-04 + syst_JES_EtaIntercalibration_Stat166: 1.23621323e-02 + syst_JES_EtaIntercalibration_Stat167: 5.39012458e-02 + syst_JES_EtaIntercalibration_Stat168: 5.21088658e-02 + syst_JES_EtaIntercalibration_Stat169: 1.51050561e-02 + syst_JES_EtaIntercalibration_Stat17: 4.04000851e-10 + syst_JES_EtaIntercalibration_Stat170: 7.36968335e-04 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 - syst_JES_EtaIntercalibration_Stat175: 0.0003469379173209524 - syst_JES_EtaIntercalibration_Stat176: 0.02411641919937535 - syst_JES_EtaIntercalibration_Stat177: 0.09081677598329507 - syst_JES_EtaIntercalibration_Stat178: 0.0622107072777669 - syst_JES_EtaIntercalibration_Stat179: 0.009820782084437063 + syst_JES_EtaIntercalibration_Stat175: 3.46937917e-04 + syst_JES_EtaIntercalibration_Stat176: 2.41164192e-02 + syst_JES_EtaIntercalibration_Stat177: 9.08167760e-02 + syst_JES_EtaIntercalibration_Stat178: 6.22107073e-02 + syst_JES_EtaIntercalibration_Stat179: 9.82078208e-03 syst_JES_EtaIntercalibration_Stat18: 0.0 - syst_JES_EtaIntercalibration_Stat180: 0.0005656821550897641 + syst_JES_EtaIntercalibration_Stat180: 5.65682155e-04 syst_JES_EtaIntercalibration_Stat181: 0.0 - syst_JES_EtaIntercalibration_Stat182: 0.0003051206795269701 - syst_JES_EtaIntercalibration_Stat183: 0.00867953931669187 - syst_JES_EtaIntercalibration_Stat184: 0.03196794331826807 - syst_JES_EtaIntercalibration_Stat185: 0.041146458839127334 - syst_JES_EtaIntercalibration_Stat186: 0.01286064177053385 - syst_JES_EtaIntercalibration_Stat187: 0.0007913102872451488 + syst_JES_EtaIntercalibration_Stat182: 3.05120680e-04 + syst_JES_EtaIntercalibration_Stat183: 8.67953932e-03 + syst_JES_EtaIntercalibration_Stat184: 3.19679433e-02 + syst_JES_EtaIntercalibration_Stat185: 4.11464588e-02 + syst_JES_EtaIntercalibration_Stat186: 1.28606418e-02 + syst_JES_EtaIntercalibration_Stat187: 7.91310287e-04 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 - syst_JES_EtaIntercalibration_Stat192: 0.0003040615192687164 - syst_JES_EtaIntercalibration_Stat193: 0.018519449235870917 - syst_JES_EtaIntercalibration_Stat194: 0.05077022823466524 - syst_JES_EtaIntercalibration_Stat195: 0.033702155717401816 - syst_JES_EtaIntercalibration_Stat196: 0.0038158220608408874 - syst_JES_EtaIntercalibration_Stat197: 0.00012567023991383162 - syst_JES_EtaIntercalibration_Stat198: 0.0025901722852930075 - syst_JES_EtaIntercalibration_Stat199: 0.008664888747121915 + syst_JES_EtaIntercalibration_Stat192: 3.04061519e-04 + syst_JES_EtaIntercalibration_Stat193: 1.85194492e-02 + syst_JES_EtaIntercalibration_Stat194: 5.07702282e-02 + syst_JES_EtaIntercalibration_Stat195: 3.37021557e-02 + syst_JES_EtaIntercalibration_Stat196: 3.81582206e-03 + syst_JES_EtaIntercalibration_Stat197: 1.25670240e-04 + syst_JES_EtaIntercalibration_Stat198: 2.59017229e-03 + syst_JES_EtaIntercalibration_Stat199: 8.66488875e-03 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 0.010166692714447506 - syst_JES_EtaIntercalibration_Stat201: 0.003961236928031444 - syst_JES_EtaIntercalibration_Stat202: 0.00022857863389870892 + syst_JES_EtaIntercalibration_Stat200: 1.01666927e-02 + syst_JES_EtaIntercalibration_Stat201: 3.96123693e-03 + syst_JES_EtaIntercalibration_Stat202: 2.28578634e-04 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 - syst_JES_EtaIntercalibration_Stat207: 0.0004525160349368849 - syst_JES_EtaIntercalibration_Stat208: 0.004087686020231985 - syst_JES_EtaIntercalibration_Stat209: 0.011624664984419981 + syst_JES_EtaIntercalibration_Stat207: 4.52516035e-04 + syst_JES_EtaIntercalibration_Stat208: 4.08768602e-03 + syst_JES_EtaIntercalibration_Stat209: 1.16246650e-02 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 0.00879968272155309 - syst_JES_EtaIntercalibration_Stat211: 0.0032693893630921355 - syst_JES_EtaIntercalibration_Stat212: 0.000967366873269909 - syst_JES_EtaIntercalibration_Stat213: 0.0014553098467336774 - syst_JES_EtaIntercalibration_Stat214: 0.0005639894214433458 - syst_JES_EtaIntercalibration_Stat215: 5.889788330891018e-05 + syst_JES_EtaIntercalibration_Stat210: 8.79968272e-03 + syst_JES_EtaIntercalibration_Stat211: 3.26938936e-03 + syst_JES_EtaIntercalibration_Stat212: 9.67366873e-04 + syst_JES_EtaIntercalibration_Stat213: 1.45530985e-03 + syst_JES_EtaIntercalibration_Stat214: 5.63989421e-04 + syst_JES_EtaIntercalibration_Stat215: 5.88978833e-05 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 syst_JES_EtaIntercalibration_Stat219: 0.0 - syst_JES_EtaIntercalibration_Stat22: 4.865330718460976e-10 - syst_JES_EtaIntercalibration_Stat220: 3.0224286592076907e-05 - syst_JES_EtaIntercalibration_Stat221: 0.00047460594970986193 - syst_JES_EtaIntercalibration_Stat222: 0.0013824225719728394 - syst_JES_EtaIntercalibration_Stat223: 0.001236091723942847 - syst_JES_EtaIntercalibration_Stat224: 6.051614887779956e-06 - syst_JES_EtaIntercalibration_Stat225: 1.0946183878754276e-05 - syst_JES_EtaIntercalibration_Stat226: 9.793446634697869e-08 - syst_JES_EtaIntercalibration_Stat227: 5.037013659729344e-12 + syst_JES_EtaIntercalibration_Stat22: 4.86533072e-10 + syst_JES_EtaIntercalibration_Stat220: 3.02242866e-05 + syst_JES_EtaIntercalibration_Stat221: 4.74605950e-04 + syst_JES_EtaIntercalibration_Stat222: 1.38242257e-03 + syst_JES_EtaIntercalibration_Stat223: 1.23609172e-03 + syst_JES_EtaIntercalibration_Stat224: 6.05161489e-06 + syst_JES_EtaIntercalibration_Stat225: 1.09461839e-05 + syst_JES_EtaIntercalibration_Stat226: 9.79344663e-08 + syst_JES_EtaIntercalibration_Stat227: 5.03701366e-12 syst_JES_EtaIntercalibration_Stat228: 0.0 syst_JES_EtaIntercalibration_Stat229: 0.0 - syst_JES_EtaIntercalibration_Stat23: 4.865330718460976e-10 + syst_JES_EtaIntercalibration_Stat23: 4.86533072e-10 syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 - syst_JES_EtaIntercalibration_Stat232: 1.0023883711849164e-09 - syst_JES_EtaIntercalibration_Stat233: 2.0801930198902217e-06 - syst_JES_EtaIntercalibration_Stat234: 1.2227559149315125e-05 - syst_JES_EtaIntercalibration_Stat235: 4.6699922515995677e-05 - syst_JES_EtaIntercalibration_Stat236: 1.2526097425275759e-11 - syst_JES_EtaIntercalibration_Stat237: 9.464702398012682e-12 - syst_JES_EtaIntercalibration_Stat238: 5.212606905378536e-28 + syst_JES_EtaIntercalibration_Stat232: 1.00238837e-09 + syst_JES_EtaIntercalibration_Stat233: 2.08019302e-06 + syst_JES_EtaIntercalibration_Stat234: 1.22275591e-05 + syst_JES_EtaIntercalibration_Stat235: 4.66999225e-05 + syst_JES_EtaIntercalibration_Stat236: 1.25260974e-11 + syst_JES_EtaIntercalibration_Stat237: 9.46470240e-12 + syst_JES_EtaIntercalibration_Stat238: 5.21260691e-28 syst_JES_EtaIntercalibration_Stat239: 0.0 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 - syst_JES_EtaIntercalibration_Stat243: 3.178876221245489e-22 - syst_JES_EtaIntercalibration_Stat244: 1.2706875422384529e-14 - syst_JES_EtaIntercalibration_Stat245: 1.0088198136529388e-09 - syst_JES_EtaIntercalibration_Stat25: 4.077247601017137e-10 - syst_JES_EtaIntercalibration_Stat26: 9.422928366489898e-08 - syst_JES_EtaIntercalibration_Stat27: 2.939373465128241e-05 - syst_JES_EtaIntercalibration_Stat28: 0.00012094524329216093 - syst_JES_EtaIntercalibration_Stat29: 2.9647391432468388e-05 + syst_JES_EtaIntercalibration_Stat243: 3.17887622e-22 + syst_JES_EtaIntercalibration_Stat244: 1.27068754e-14 + syst_JES_EtaIntercalibration_Stat245: 1.00881981e-09 + syst_JES_EtaIntercalibration_Stat25: 4.07724760e-10 + syst_JES_EtaIntercalibration_Stat26: 9.42292837e-08 + syst_JES_EtaIntercalibration_Stat27: 2.93937347e-05 + syst_JES_EtaIntercalibration_Stat28: 1.20945243e-04 + syst_JES_EtaIntercalibration_Stat29: 2.96473914e-05 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 5.6902270243637906e-09 + syst_JES_EtaIntercalibration_Stat30: 5.69022702e-09 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 6.702518561518499e-10 - syst_JES_EtaIntercalibration_Stat36: 2.471246074918481e-05 - syst_JES_EtaIntercalibration_Stat37: 4.2462749934501415e-05 - syst_JES_EtaIntercalibration_Stat38: 4.040856553690071e-05 - syst_JES_EtaIntercalibration_Stat39: 3.376795995003992e-06 - syst_JES_EtaIntercalibration_Stat4: 5.590193981428552e-10 - syst_JES_EtaIntercalibration_Stat40: 1.9061219137295494e-10 + syst_JES_EtaIntercalibration_Stat35: 6.70251856e-10 + syst_JES_EtaIntercalibration_Stat36: 2.47124607e-05 + syst_JES_EtaIntercalibration_Stat37: 4.24627499e-05 + syst_JES_EtaIntercalibration_Stat38: 4.04085655e-05 + syst_JES_EtaIntercalibration_Stat39: 3.37679600e-06 + syst_JES_EtaIntercalibration_Stat4: 5.59019398e-10 + syst_JES_EtaIntercalibration_Stat40: 1.90612191e-10 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 - syst_JES_EtaIntercalibration_Stat44: 4.865330718460976e-10 + syst_JES_EtaIntercalibration_Stat44: 4.86533072e-10 syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 - syst_JES_EtaIntercalibration_Stat47: 4.078979651824706e-10 - syst_JES_EtaIntercalibration_Stat48: 2.6816388179618817e-06 - syst_JES_EtaIntercalibration_Stat49: 5.459514538857828e-05 - syst_JES_EtaIntercalibration_Stat5: 6.4497588379334e-07 - syst_JES_EtaIntercalibration_Stat50: 0.000138740198572728 - syst_JES_EtaIntercalibration_Stat51: 0.00038669332590568457 - syst_JES_EtaIntercalibration_Stat52: 5.466820168068454e-07 + syst_JES_EtaIntercalibration_Stat47: 4.07897965e-10 + syst_JES_EtaIntercalibration_Stat48: 2.68163882e-06 + syst_JES_EtaIntercalibration_Stat49: 5.45951454e-05 + syst_JES_EtaIntercalibration_Stat5: 6.44975884e-07 + syst_JES_EtaIntercalibration_Stat50: 1.38740199e-04 + syst_JES_EtaIntercalibration_Stat51: 3.86693326e-04 + syst_JES_EtaIntercalibration_Stat52: 5.46682017e-07 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 syst_JES_EtaIntercalibration_Stat56: 0.0 - syst_JES_EtaIntercalibration_Stat57: 2.531409099904348e-05 - syst_JES_EtaIntercalibration_Stat58: 2.21684915758831e-05 - syst_JES_EtaIntercalibration_Stat59: 0.0002547710090944415 - syst_JES_EtaIntercalibration_Stat6: 3.059477622078645e-06 - syst_JES_EtaIntercalibration_Stat60: 8.996529275226087e-05 - syst_JES_EtaIntercalibration_Stat61: 2.3631197792748466e-05 - syst_JES_EtaIntercalibration_Stat62: 4.121414896610143e-10 + syst_JES_EtaIntercalibration_Stat57: 2.53140910e-05 + syst_JES_EtaIntercalibration_Stat58: 2.21684916e-05 + syst_JES_EtaIntercalibration_Stat59: 2.54771009e-04 + syst_JES_EtaIntercalibration_Stat6: 3.05947762e-06 + syst_JES_EtaIntercalibration_Stat60: 8.99652928e-05 + syst_JES_EtaIntercalibration_Stat61: 2.36311978e-05 + syst_JES_EtaIntercalibration_Stat62: 4.12141490e-10 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 - syst_JES_EtaIntercalibration_Stat69: 5.878865281667883e-10 - syst_JES_EtaIntercalibration_Stat7: 5.486233728998428e-07 - syst_JES_EtaIntercalibration_Stat70: 3.7924393205429145e-05 - syst_JES_EtaIntercalibration_Stat71: 0.0005449625744030502 - syst_JES_EtaIntercalibration_Stat72: 0.0003263660455301684 - syst_JES_EtaIntercalibration_Stat73: 0.00016429787179084214 - syst_JES_EtaIntercalibration_Stat74: 4.504224100774738e-06 + syst_JES_EtaIntercalibration_Stat69: 5.87886528e-10 + syst_JES_EtaIntercalibration_Stat7: 5.48623373e-07 + syst_JES_EtaIntercalibration_Stat70: 3.79243932e-05 + syst_JES_EtaIntercalibration_Stat71: 5.44962574e-04 + syst_JES_EtaIntercalibration_Stat72: 3.26366046e-04 + syst_JES_EtaIntercalibration_Stat73: 1.64297872e-04 + syst_JES_EtaIntercalibration_Stat74: 4.50422410e-06 syst_JES_EtaIntercalibration_Stat75: 0.0 syst_JES_EtaIntercalibration_Stat76: 0.0 syst_JES_EtaIntercalibration_Stat77: 0.0 syst_JES_EtaIntercalibration_Stat78: 0.0 - syst_JES_EtaIntercalibration_Stat79: 2.471672753152559e-05 + syst_JES_EtaIntercalibration_Stat79: 2.47167275e-05 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 0.00023930275280489356 - syst_JES_EtaIntercalibration_Stat81: 0.0004112071831814225 - syst_JES_EtaIntercalibration_Stat82: 0.00031208378181988243 - syst_JES_EtaIntercalibration_Stat83: 0.0006212400555944537 - syst_JES_EtaIntercalibration_Stat84: 2.5806913041857606e-10 - syst_JES_EtaIntercalibration_Stat85: 4.865330718460976e-10 - syst_JES_EtaIntercalibration_Stat86: 4.865330718460976e-10 - syst_JES_EtaIntercalibration_Stat87: 4.865330718460976e-10 - syst_JES_EtaIntercalibration_Stat88: 4.865330718460976e-10 - syst_JES_EtaIntercalibration_Stat89: 4.865330718460976e-10 + syst_JES_EtaIntercalibration_Stat80: 2.39302753e-04 + syst_JES_EtaIntercalibration_Stat81: 4.11207183e-04 + syst_JES_EtaIntercalibration_Stat82: 3.12083782e-04 + syst_JES_EtaIntercalibration_Stat83: 6.21240056e-04 + syst_JES_EtaIntercalibration_Stat84: 2.58069130e-10 + syst_JES_EtaIntercalibration_Stat85: 4.86533072e-10 + syst_JES_EtaIntercalibration_Stat86: 4.86533072e-10 + syst_JES_EtaIntercalibration_Stat87: 4.86533072e-10 + syst_JES_EtaIntercalibration_Stat88: 4.86533072e-10 + syst_JES_EtaIntercalibration_Stat89: 4.86533072e-10 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 0.00012740429820064944 - syst_JES_EtaIntercalibration_Stat92: 0.0010700698610371193 - syst_JES_EtaIntercalibration_Stat93: 0.0012477549549090158 - syst_JES_EtaIntercalibration_Stat94: 0.0002668091218455621 - syst_JES_EtaIntercalibration_Stat95: 2.619423606444746e-05 - syst_JES_EtaIntercalibration_Stat96: 1.195992197982257e-06 - syst_JES_EtaIntercalibration_Stat97: 4.865330718460976e-10 - syst_JES_EtaIntercalibration_Stat98: 4.865330718460976e-10 - syst_JES_EtaIntercalibration_Stat99: 4.865330718460976e-10 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0207181532719497 - syst_JES_Flavour_Comp: 0.15443594141261288 - syst_JES_Gjet_Generator: 1.0585741636748933 - syst_JES_Gjet_OOC: 0.6997547641852824 - syst_JES_Gjet_Purity: 0.218579339142564 - syst_JES_Gjet_Stat1: 3.3083902475373126e-27 - syst_JES_Gjet_Stat10: 0.0732654802755022 - syst_JES_Gjet_Stat11: 0.10945157045469928 - syst_JES_Gjet_Stat12: 0.06551320324942142 - syst_JES_Gjet_Stat13: 0.013649748276067217 - syst_JES_Gjet_Stat14: 0.011652258922629553 - syst_JES_Gjet_Stat15: 0.0018209096270820253 - syst_JES_Gjet_Stat2: 7.179350597372996e-06 - syst_JES_Gjet_Stat3: 1.0250276679192617e-33 - syst_JES_Gjet_Stat4: 0.0022932355764871716 - syst_JES_Gjet_Stat5: 0.004164849995414001 - syst_JES_Gjet_Stat6: 0.007522359470272608 - syst_JES_Gjet_Stat7: 0.010781802122094434 - syst_JES_Gjet_Stat8: 0.00950833334501899 - syst_JES_Gjet_Stat9: 0.032863576722566276 - syst_JES_Gjet_Veto: 0.2963485574454514 - syst_JES_Gjet_dPhi: 0.05059179973078641 - syst_JES_LArESZee: 1.2700967079321166 - syst_JES_LArEsmear: 0.10056043904040993 - syst_JES_LAr_JVT: 0.14608490365195165 - syst_JES_MJB_Alpha: 0.0003177908859714464 - syst_JES_MJB_Asym: 0.00794161852206463 - syst_JES_MJB_Beta: 0.002055112790836689 - syst_JES_MJB_Stat1: 0.00815362917663049 - syst_JES_MJB_Stat10: 7.116104552351658e-08 - syst_JES_MJB_Stat11: 3.0492754189775556e-33 - syst_JES_MJB_Stat12: 1.1498219286045992e-09 - syst_JES_MJB_Stat13: 9.770498605496036e-12 - syst_JES_MJB_Stat14: 4.329260993518409e-15 - syst_JES_MJB_Stat15: 3.346322160223071e-23 - syst_JES_MJB_Stat16: 2.3339384631990622e-35 - syst_JES_MJB_Stat2: 0.003093442742318015 - syst_JES_MJB_Stat3: 0.00012358182512003937 - syst_JES_MJB_Stat4: 0.0013076983597145023 + syst_JES_EtaIntercalibration_Stat91: 1.27404298e-04 + syst_JES_EtaIntercalibration_Stat92: 1.07006986e-03 + syst_JES_EtaIntercalibration_Stat93: 1.24775495e-03 + syst_JES_EtaIntercalibration_Stat94: 2.66809122e-04 + syst_JES_EtaIntercalibration_Stat95: 2.61942361e-05 + syst_JES_EtaIntercalibration_Stat96: 1.19599220e-06 + syst_JES_EtaIntercalibration_Stat97: 4.86533072e-10 + syst_JES_EtaIntercalibration_Stat98: 4.86533072e-10 + syst_JES_EtaIntercalibration_Stat99: 4.86533072e-10 + syst_JES_EtaIntercalibration_TotalStat_MJB: 2.07181533e-02 + syst_JES_Flavour_Comp: 1.54435941e-01 + syst_JES_Gjet_Generator: 1.05857416e+00 + syst_JES_Gjet_OOC: 6.99754764e-01 + syst_JES_Gjet_Purity: 2.18579339e-01 + syst_JES_Gjet_Stat1: 3.30839025e-27 + syst_JES_Gjet_Stat10: 7.32654803e-02 + syst_JES_Gjet_Stat11: 1.09451570e-01 + syst_JES_Gjet_Stat12: 6.55132032e-02 + syst_JES_Gjet_Stat13: 1.36497483e-02 + syst_JES_Gjet_Stat14: 1.16522589e-02 + syst_JES_Gjet_Stat15: 1.82090963e-03 + syst_JES_Gjet_Stat2: 7.17935060e-06 + syst_JES_Gjet_Stat3: 1.02502767e-33 + syst_JES_Gjet_Stat4: 2.29323558e-03 + syst_JES_Gjet_Stat5: 4.16485000e-03 + syst_JES_Gjet_Stat6: 7.52235947e-03 + syst_JES_Gjet_Stat7: 1.07818021e-02 + syst_JES_Gjet_Stat8: 9.50833335e-03 + syst_JES_Gjet_Stat9: 3.28635767e-02 + syst_JES_Gjet_Veto: 2.96348557e-01 + syst_JES_Gjet_dPhi: 5.05917997e-02 + syst_JES_LArESZee: 1.27009671e+00 + syst_JES_LArEsmear: 1.00560439e-01 + syst_JES_LAr_JVT: 1.46084904e-01 + syst_JES_MJB_Alpha: 3.17790886e-04 + syst_JES_MJB_Asym: 7.94161852e-03 + syst_JES_MJB_Beta: 2.05511279e-03 + syst_JES_MJB_Stat1: 8.15362918e-03 + syst_JES_MJB_Stat10: 7.11610455e-08 + syst_JES_MJB_Stat11: 3.04927542e-33 + syst_JES_MJB_Stat12: 1.14982193e-09 + syst_JES_MJB_Stat13: 9.77049861e-12 + syst_JES_MJB_Stat14: 4.32926099e-15 + syst_JES_MJB_Stat15: 3.34632216e-23 + syst_JES_MJB_Stat16: 2.33393846e-35 + syst_JES_MJB_Stat2: 3.09344274e-03 + syst_JES_MJB_Stat3: 1.23581825e-04 + syst_JES_MJB_Stat4: 1.30769836e-03 syst_JES_MJB_Stat5: 0.0 - syst_JES_MJB_Stat6: 3.6026656797432646e-17 - syst_JES_MJB_Stat7: 1.604745073212565e-41 - syst_JES_MJB_Stat8: 4.7388910032932725e-33 - syst_JES_MJB_Stat9: 5.430845307132215e-08 - syst_JES_MJB_Threshold: 0.010840165681390668 - syst_JES_Pileup_MuOffset: 0.02346661800835391 - syst_JES_Pileup_NPVOffset: 0.062065604605127306 - syst_JES_Pileup_Pt_term: 0.24437431841337173 - syst_JES_PunchThrough_MC15: 0.014305508335952273 + syst_JES_MJB_Stat6: 3.60266568e-17 + syst_JES_MJB_Stat7: 1.60474507e-41 + syst_JES_MJB_Stat8: 4.73889100e-33 + syst_JES_MJB_Stat9: 5.43084531e-08 + syst_JES_MJB_Threshold: 1.08401657e-02 + syst_JES_Pileup_MuOffset: 2.34666180e-02 + syst_JES_Pileup_NPVOffset: 6.20656046e-02 + syst_JES_Pileup_Pt_term: 2.44374318e-01 + syst_JES_PunchThrough_MC15: 1.43055083e-02 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 1.001367289010381 - syst_JES_Zjet_MuScale: 0.06123502592471077 - syst_JES_Zjet_MuSmearID: 0.010369974963807772 - syst_JES_Zjet_MuSmearMS: 0.1345966964676325 - syst_JES_Zjet_OOC: 0.3405685246760187 - syst_JES_Zjet_Stat1: 0.005182222303220888 - syst_JES_Zjet_Stat10: 0.06377702309609629 - syst_JES_Zjet_Stat11: 0.11881601859597889 - syst_JES_Zjet_Stat12: 0.273598880662915 - syst_JES_Zjet_Stat13: 0.020219922125220956 - syst_JES_Zjet_Stat2: 3.1306818346807457e-09 - syst_JES_Zjet_Stat3: 0.0021759802819648895 - syst_JES_Zjet_Stat4: 0.0022502655529292536 - syst_JES_Zjet_Stat5: 0.0035402367604441373 - syst_JES_Zjet_Stat6: 0.0050035749219932745 - syst_JES_Zjet_Stat7: 0.006079904440038511 - syst_JES_Zjet_Stat8: 0.008035852848329167 - syst_JES_Zjet_Stat9: 0.021484209899365628 - syst_JES_Zjet_Veto: 0.06562936614047099 - syst_JES_Zjet_dPhi: 0.05773211476292896 + syst_JES_Zjet_MC: 1.00136729e+00 + syst_JES_Zjet_MuScale: 6.12350259e-02 + syst_JES_Zjet_MuSmearID: 1.03699750e-02 + syst_JES_Zjet_MuSmearMS: 1.34596696e-01 + syst_JES_Zjet_OOC: 3.40568525e-01 + syst_JES_Zjet_Stat1: 5.18222230e-03 + syst_JES_Zjet_Stat10: 6.37770231e-02 + syst_JES_Zjet_Stat11: 1.18816019e-01 + syst_JES_Zjet_Stat12: 2.73598881e-01 + syst_JES_Zjet_Stat13: 2.02199221e-02 + syst_JES_Zjet_Stat2: 3.13068183e-09 + syst_JES_Zjet_Stat3: 2.17598028e-03 + syst_JES_Zjet_Stat4: 2.25026555e-03 + syst_JES_Zjet_Stat5: 3.54023676e-03 + syst_JES_Zjet_Stat6: 5.00357492e-03 + syst_JES_Zjet_Stat7: 6.07990444e-03 + syst_JES_Zjet_Stat8: 8.03585285e-03 + syst_JES_Zjet_Stat9: 2.14842099e-02 + syst_JES_Zjet_Veto: 6.56293661e-02 + syst_JES_Zjet_dPhi: 5.77321148e-02 syst_PRW: 0.08257 - syst_Unfolding_bias: 0.0001569 - syst_cleaning: 0.27158556662679995 + syst_Unfolding_bias: 1.56900000e-04 + syst_cleaning: 2.71585567e-01 syst_lumi: 1.1524 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.16136765475150217 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 0.7386439873173002 - syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.009588600888555118 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.61367655e-01 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 7.38643987e-01 + syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 9.58860089e-03 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 1.0284606847128381 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.025188925086235815 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.31212699338570515 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 1.02846068e+00 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 2.51889251e-02 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 3.12126993e-01 - stat: 0.23454 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.33987506528134714 - syst_JER_NP1: 0.016405486887014355 - syst_JER_NP2: 0.11997882479837849 - syst_JER_NP3: 0.08273812467659633 - syst_JER_NP4: 0.013225534951373423 - syst_JER_NP5: 0.050646636610934 - syst_JER_NP6: 0.0253639601600381 - syst_JER_NP7: 0.027795744278576173 - syst_JER_NP8: 0.027372299866836182 - syst_JES_EtaIntercalibration_Modelling: 0.7083006917969232 - syst_JES_EtaIntercalibration_NonClosure: 8.478439877123622e-06 - syst_JES_EtaIntercalibration_Stat0: 4.337921247556253e-11 + syst_JER_NP0: 3.39875065e-01 + syst_JER_NP1: 1.64054869e-02 + syst_JER_NP2: 1.19978825e-01 + syst_JER_NP3: 8.27381247e-02 + syst_JER_NP4: 1.32255350e-02 + syst_JER_NP5: 5.06466366e-02 + syst_JER_NP6: 2.53639602e-02 + syst_JER_NP7: 2.77957443e-02 + syst_JER_NP8: 2.73722999e-02 + syst_JES_EtaIntercalibration_Modelling: 7.08300692e-01 + syst_JES_EtaIntercalibration_NonClosure: 8.47843988e-06 + syst_JES_EtaIntercalibration_Stat0: 4.33792125e-11 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 4.808512907117828e-06 - syst_JES_EtaIntercalibration_Stat101: 0.00034219190054704686 - syst_JES_EtaIntercalibration_Stat102: 0.000336522301192655 - syst_JES_EtaIntercalibration_Stat103: 0.00023194992455269307 - syst_JES_EtaIntercalibration_Stat104: 0.0002921621595963447 - syst_JES_EtaIntercalibration_Stat105: 3.0120841488909304e-11 - syst_JES_EtaIntercalibration_Stat106: 4.337921247556253e-11 - syst_JES_EtaIntercalibration_Stat107: 4.337921247556253e-11 - syst_JES_EtaIntercalibration_Stat108: 4.337921247556253e-11 - syst_JES_EtaIntercalibration_Stat109: 4.337921247556253e-11 + syst_JES_EtaIntercalibration_Stat100: 4.80851291e-06 + syst_JES_EtaIntercalibration_Stat101: 3.42191901e-04 + syst_JES_EtaIntercalibration_Stat102: 3.36522301e-04 + syst_JES_EtaIntercalibration_Stat103: 2.31949925e-04 + syst_JES_EtaIntercalibration_Stat104: 2.92162160e-04 + syst_JES_EtaIntercalibration_Stat105: 3.01208415e-11 + syst_JES_EtaIntercalibration_Stat106: 4.33792125e-11 + syst_JES_EtaIntercalibration_Stat107: 4.33792125e-11 + syst_JES_EtaIntercalibration_Stat108: 4.33792125e-11 + syst_JES_EtaIntercalibration_Stat109: 4.33792125e-11 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 1.2525981668116876e-08 - syst_JES_EtaIntercalibration_Stat111: 0.0004955544067002128 - syst_JES_EtaIntercalibration_Stat112: 0.0027475139217117716 - syst_JES_EtaIntercalibration_Stat113: 0.003864468398111181 - syst_JES_EtaIntercalibration_Stat114: 0.0013222509018715018 - syst_JES_EtaIntercalibration_Stat115: 5.121806029126835e-05 - syst_JES_EtaIntercalibration_Stat116: 1.7881979082097172e-07 - syst_JES_EtaIntercalibration_Stat117: 4.337921247556253e-11 - syst_JES_EtaIntercalibration_Stat118: 4.337921247556253e-11 - syst_JES_EtaIntercalibration_Stat119: 4.337921247556253e-11 + syst_JES_EtaIntercalibration_Stat110: 1.25259817e-08 + syst_JES_EtaIntercalibration_Stat111: 4.95554407e-04 + syst_JES_EtaIntercalibration_Stat112: 2.74751392e-03 + syst_JES_EtaIntercalibration_Stat113: 3.86446840e-03 + syst_JES_EtaIntercalibration_Stat114: 1.32225090e-03 + syst_JES_EtaIntercalibration_Stat115: 5.12180603e-05 + syst_JES_EtaIntercalibration_Stat116: 1.78819791e-07 + syst_JES_EtaIntercalibration_Stat117: 4.33792125e-11 + syst_JES_EtaIntercalibration_Stat118: 4.33792125e-11 + syst_JES_EtaIntercalibration_Stat119: 4.33792125e-11 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 1.2012638375893948e-05 - syst_JES_EtaIntercalibration_Stat121: 0.00075182360131882 - syst_JES_EtaIntercalibration_Stat122: 0.002607165702443939 - syst_JES_EtaIntercalibration_Stat123: 0.002515456370124515 - syst_JES_EtaIntercalibration_Stat124: 0.0003588625136107141 - syst_JES_EtaIntercalibration_Stat125: 3.6433688737211336e-07 - syst_JES_EtaIntercalibration_Stat126: 4.337921247556253e-11 - syst_JES_EtaIntercalibration_Stat127: 4.337921247556253e-11 - syst_JES_EtaIntercalibration_Stat128: 4.337921247556253e-11 - syst_JES_EtaIntercalibration_Stat129: 0.0003568232706466886 + syst_JES_EtaIntercalibration_Stat120: 1.20126384e-05 + syst_JES_EtaIntercalibration_Stat121: 7.51823601e-04 + syst_JES_EtaIntercalibration_Stat122: 2.60716570e-03 + syst_JES_EtaIntercalibration_Stat123: 2.51545637e-03 + syst_JES_EtaIntercalibration_Stat124: 3.58862514e-04 + syst_JES_EtaIntercalibration_Stat125: 3.64336887e-07 + syst_JES_EtaIntercalibration_Stat126: 4.33792125e-11 + syst_JES_EtaIntercalibration_Stat127: 4.33792125e-11 + syst_JES_EtaIntercalibration_Stat128: 4.33792125e-11 + syst_JES_EtaIntercalibration_Stat129: 3.56823271e-04 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 0.004207136912438196 - syst_JES_EtaIntercalibration_Stat131: 0.02285331267015791 - syst_JES_EtaIntercalibration_Stat132: 0.027204734882001695 - syst_JES_EtaIntercalibration_Stat133: 0.0072085699518004255 - syst_JES_EtaIntercalibration_Stat134: 0.00031485015483559794 - syst_JES_EtaIntercalibration_Stat135: 1.7883424588148658e-07 + syst_JES_EtaIntercalibration_Stat130: 4.20713691e-03 + syst_JES_EtaIntercalibration_Stat131: 2.28533127e-02 + syst_JES_EtaIntercalibration_Stat132: 2.72047349e-02 + syst_JES_EtaIntercalibration_Stat133: 7.20856995e-03 + syst_JES_EtaIntercalibration_Stat134: 3.14850155e-04 + syst_JES_EtaIntercalibration_Stat135: 1.78834246e-07 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 syst_JES_EtaIntercalibration_Stat138: 0.0 - syst_JES_EtaIntercalibration_Stat139: 0.00043700366954981055 - syst_JES_EtaIntercalibration_Stat14: 4.869664257340876e-06 - syst_JES_EtaIntercalibration_Stat140: 0.00856448286529899 - syst_JES_EtaIntercalibration_Stat141: 0.02721353156060418 - syst_JES_EtaIntercalibration_Stat142: 0.017205429375636055 - syst_JES_EtaIntercalibration_Stat143: 0.004083801262304521 - syst_JES_EtaIntercalibration_Stat144: 0.00021978058443463723 + syst_JES_EtaIntercalibration_Stat139: 4.37003670e-04 + syst_JES_EtaIntercalibration_Stat14: 4.86966426e-06 + syst_JES_EtaIntercalibration_Stat140: 8.56448287e-03 + syst_JES_EtaIntercalibration_Stat141: 2.72135316e-02 + syst_JES_EtaIntercalibration_Stat142: 1.72054294e-02 + syst_JES_EtaIntercalibration_Stat143: 4.08380126e-03 + syst_JES_EtaIntercalibration_Stat144: 2.19780584e-04 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 5.1856225277202735e-05 - syst_JES_EtaIntercalibration_Stat148: 0.005472339353512354 - syst_JES_EtaIntercalibration_Stat149: 0.025012772737143717 - syst_JES_EtaIntercalibration_Stat15: 4.858440289546769e-06 - syst_JES_EtaIntercalibration_Stat150: 0.028034981719273513 - syst_JES_EtaIntercalibration_Stat151: 0.009313509260745919 - syst_JES_EtaIntercalibration_Stat152: 0.0001071964803526683 + syst_JES_EtaIntercalibration_Stat147: 5.18562253e-05 + syst_JES_EtaIntercalibration_Stat148: 5.47233935e-03 + syst_JES_EtaIntercalibration_Stat149: 2.50127727e-02 + syst_JES_EtaIntercalibration_Stat15: 4.85844029e-06 + syst_JES_EtaIntercalibration_Stat150: 2.80349817e-02 + syst_JES_EtaIntercalibration_Stat151: 9.31350926e-03 + syst_JES_EtaIntercalibration_Stat152: 1.07196480e-04 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 syst_JES_EtaIntercalibration_Stat156: 0.0 - syst_JES_EtaIntercalibration_Stat157: 3.888898288728441e-05 - syst_JES_EtaIntercalibration_Stat158: 0.010813126039679738 - syst_JES_EtaIntercalibration_Stat159: 0.03404057578831474 - syst_JES_EtaIntercalibration_Stat16: 4.836819809210859e-06 - syst_JES_EtaIntercalibration_Stat160: 0.025444152569893148 - syst_JES_EtaIntercalibration_Stat161: 0.00483128492225412 - syst_JES_EtaIntercalibration_Stat162: 0.00022171181040936904 + syst_JES_EtaIntercalibration_Stat157: 3.88889829e-05 + syst_JES_EtaIntercalibration_Stat158: 1.08131260e-02 + syst_JES_EtaIntercalibration_Stat159: 3.40405758e-02 + syst_JES_EtaIntercalibration_Stat16: 4.83681981e-06 + syst_JES_EtaIntercalibration_Stat160: 2.54441526e-02 + syst_JES_EtaIntercalibration_Stat161: 4.83128492e-03 + syst_JES_EtaIntercalibration_Stat162: 2.21711810e-04 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 0.00026468561176422117 - syst_JES_EtaIntercalibration_Stat166: 0.007450850374789444 - syst_JES_EtaIntercalibration_Stat167: 0.030856822179219947 - syst_JES_EtaIntercalibration_Stat168: 0.028062763139078087 - syst_JES_EtaIntercalibration_Stat169: 0.009746531831887688 - syst_JES_EtaIntercalibration_Stat17: 3.600933628935696e-11 - syst_JES_EtaIntercalibration_Stat170: 0.0005086882222933808 + syst_JES_EtaIntercalibration_Stat165: 2.64685612e-04 + syst_JES_EtaIntercalibration_Stat166: 7.45085037e-03 + syst_JES_EtaIntercalibration_Stat167: 3.08568222e-02 + syst_JES_EtaIntercalibration_Stat168: 2.80627631e-02 + syst_JES_EtaIntercalibration_Stat169: 9.74653183e-03 + syst_JES_EtaIntercalibration_Stat17: 3.60093363e-11 + syst_JES_EtaIntercalibration_Stat170: 5.08688222e-04 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 - syst_JES_EtaIntercalibration_Stat175: 0.00022452625698345392 - syst_JES_EtaIntercalibration_Stat176: 0.013997976880606711 - syst_JES_EtaIntercalibration_Stat177: 0.05088000786163461 - syst_JES_EtaIntercalibration_Stat178: 0.03586641151551127 - syst_JES_EtaIntercalibration_Stat179: 0.006208337357940529 + syst_JES_EtaIntercalibration_Stat175: 2.24526257e-04 + syst_JES_EtaIntercalibration_Stat176: 1.39979769e-02 + syst_JES_EtaIntercalibration_Stat177: 5.08800079e-02 + syst_JES_EtaIntercalibration_Stat178: 3.58664115e-02 + syst_JES_EtaIntercalibration_Stat179: 6.20833736e-03 syst_JES_EtaIntercalibration_Stat18: 0.0 - syst_JES_EtaIntercalibration_Stat180: 0.0002651211708389204 + syst_JES_EtaIntercalibration_Stat180: 2.65121171e-04 syst_JES_EtaIntercalibration_Stat181: 0.0 - syst_JES_EtaIntercalibration_Stat182: 0.00044628320120188253 - syst_JES_EtaIntercalibration_Stat183: 0.009363925605748905 - syst_JES_EtaIntercalibration_Stat184: 0.035747885626285655 - syst_JES_EtaIntercalibration_Stat185: 0.04426738387345699 - syst_JES_EtaIntercalibration_Stat186: 0.009510334521981864 - syst_JES_EtaIntercalibration_Stat187: 0.0007819493893469065 + syst_JES_EtaIntercalibration_Stat182: 4.46283201e-04 + syst_JES_EtaIntercalibration_Stat183: 9.36392561e-03 + syst_JES_EtaIntercalibration_Stat184: 3.57478856e-02 + syst_JES_EtaIntercalibration_Stat185: 4.42673839e-02 + syst_JES_EtaIntercalibration_Stat186: 9.51033452e-03 + syst_JES_EtaIntercalibration_Stat187: 7.81949389e-04 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 - syst_JES_EtaIntercalibration_Stat192: 0.00018073950176979639 - syst_JES_EtaIntercalibration_Stat193: 0.019132647490611433 - syst_JES_EtaIntercalibration_Stat194: 0.05648818637555998 - syst_JES_EtaIntercalibration_Stat195: 0.038791913809452606 - syst_JES_EtaIntercalibration_Stat196: 0.005231952694740273 - syst_JES_EtaIntercalibration_Stat197: 0.00022968115263338436 - syst_JES_EtaIntercalibration_Stat198: 0.0019672078563283545 - syst_JES_EtaIntercalibration_Stat199: 0.0028744781700336497 + syst_JES_EtaIntercalibration_Stat192: 1.80739502e-04 + syst_JES_EtaIntercalibration_Stat193: 1.91326475e-02 + syst_JES_EtaIntercalibration_Stat194: 5.64881864e-02 + syst_JES_EtaIntercalibration_Stat195: 3.87919138e-02 + syst_JES_EtaIntercalibration_Stat196: 5.23195269e-03 + syst_JES_EtaIntercalibration_Stat197: 2.29681153e-04 + syst_JES_EtaIntercalibration_Stat198: 1.96720786e-03 + syst_JES_EtaIntercalibration_Stat199: 2.87447817e-03 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 0.0015779300554840826 - syst_JES_EtaIntercalibration_Stat201: 0.003756885245785397 - syst_JES_EtaIntercalibration_Stat202: 0.0004065815072958926 + syst_JES_EtaIntercalibration_Stat200: 1.57793006e-03 + syst_JES_EtaIntercalibration_Stat201: 3.75688525e-03 + syst_JES_EtaIntercalibration_Stat202: 4.06581507e-04 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 - syst_JES_EtaIntercalibration_Stat207: 0.00021812834478810865 - syst_JES_EtaIntercalibration_Stat208: 0.001020249278362891 - syst_JES_EtaIntercalibration_Stat209: 0.0018647447860431197 + syst_JES_EtaIntercalibration_Stat207: 2.18128345e-04 + syst_JES_EtaIntercalibration_Stat208: 1.02024928e-03 + syst_JES_EtaIntercalibration_Stat209: 1.86474479e-03 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 0.002566669437227942 - syst_JES_EtaIntercalibration_Stat211: 0.0009654764782220228 - syst_JES_EtaIntercalibration_Stat212: 0.0012931155661811517 - syst_JES_EtaIntercalibration_Stat213: 0.002149623920596344 - syst_JES_EtaIntercalibration_Stat214: 0.0006820251809867433 - syst_JES_EtaIntercalibration_Stat215: 2.0300852001824945e-05 + syst_JES_EtaIntercalibration_Stat210: 2.56666944e-03 + syst_JES_EtaIntercalibration_Stat211: 9.65476478e-04 + syst_JES_EtaIntercalibration_Stat212: 1.29311557e-03 + syst_JES_EtaIntercalibration_Stat213: 2.14962392e-03 + syst_JES_EtaIntercalibration_Stat214: 6.82025181e-04 + syst_JES_EtaIntercalibration_Stat215: 2.03008520e-05 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 syst_JES_EtaIntercalibration_Stat219: 0.0 - syst_JES_EtaIntercalibration_Stat22: 4.337921247556253e-11 - syst_JES_EtaIntercalibration_Stat220: 2.74356847918751e-05 - syst_JES_EtaIntercalibration_Stat221: 0.0006440044176867112 - syst_JES_EtaIntercalibration_Stat222: 0.0013730974792417324 - syst_JES_EtaIntercalibration_Stat223: 0.0015075085505561817 - syst_JES_EtaIntercalibration_Stat224: 3.8235615229782825e-06 - syst_JES_EtaIntercalibration_Stat225: 3.4892652335412966e-05 - syst_JES_EtaIntercalibration_Stat226: 9.03073791046446e-07 - syst_JES_EtaIntercalibration_Stat227: 1.1088214153776072e-09 + syst_JES_EtaIntercalibration_Stat22: 4.33792125e-11 + syst_JES_EtaIntercalibration_Stat220: 2.74356848e-05 + syst_JES_EtaIntercalibration_Stat221: 6.44004418e-04 + syst_JES_EtaIntercalibration_Stat222: 1.37309748e-03 + syst_JES_EtaIntercalibration_Stat223: 1.50750855e-03 + syst_JES_EtaIntercalibration_Stat224: 3.82356152e-06 + syst_JES_EtaIntercalibration_Stat225: 3.48926523e-05 + syst_JES_EtaIntercalibration_Stat226: 9.03073791e-07 + syst_JES_EtaIntercalibration_Stat227: 1.10882142e-09 syst_JES_EtaIntercalibration_Stat228: 0.0 syst_JES_EtaIntercalibration_Stat229: 0.0 - syst_JES_EtaIntercalibration_Stat23: 4.337921247556253e-11 + syst_JES_EtaIntercalibration_Stat23: 4.33792125e-11 syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 - syst_JES_EtaIntercalibration_Stat232: 4.6282879804523834e-08 - syst_JES_EtaIntercalibration_Stat233: 7.217455715139501e-06 - syst_JES_EtaIntercalibration_Stat234: 1.4677419962309454e-05 - syst_JES_EtaIntercalibration_Stat235: 0.0002216737224362644 - syst_JES_EtaIntercalibration_Stat236: 2.7371755821466772e-09 - syst_JES_EtaIntercalibration_Stat237: 2.0335686769462075e-09 - syst_JES_EtaIntercalibration_Stat238: 1.2947079786577358e-21 + syst_JES_EtaIntercalibration_Stat232: 4.62828798e-08 + syst_JES_EtaIntercalibration_Stat233: 7.21745572e-06 + syst_JES_EtaIntercalibration_Stat234: 1.46774200e-05 + syst_JES_EtaIntercalibration_Stat235: 2.21673722e-04 + syst_JES_EtaIntercalibration_Stat236: 2.73717558e-09 + syst_JES_EtaIntercalibration_Stat237: 2.03356868e-09 + syst_JES_EtaIntercalibration_Stat238: 1.29470798e-21 syst_JES_EtaIntercalibration_Stat239: 0.0 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 - syst_JES_EtaIntercalibration_Stat243: 4.486488382632903e-17 - syst_JES_EtaIntercalibration_Stat244: 1.732219024834908e-11 - syst_JES_EtaIntercalibration_Stat245: 4.6521290510367404e-08 - syst_JES_EtaIntercalibration_Stat25: 3.6260483656454444e-11 - syst_JES_EtaIntercalibration_Stat26: 8.948279988355305e-09 - syst_JES_EtaIntercalibration_Stat27: 4.800900135130911e-06 - syst_JES_EtaIntercalibration_Stat28: 6.398627740969153e-05 - syst_JES_EtaIntercalibration_Stat29: 5.053369975323398e-06 + syst_JES_EtaIntercalibration_Stat243: 4.48648838e-17 + syst_JES_EtaIntercalibration_Stat244: 1.73221902e-11 + syst_JES_EtaIntercalibration_Stat245: 4.65212905e-08 + syst_JES_EtaIntercalibration_Stat25: 3.62604837e-11 + syst_JES_EtaIntercalibration_Stat26: 8.94827999e-09 + syst_JES_EtaIntercalibration_Stat27: 4.80090014e-06 + syst_JES_EtaIntercalibration_Stat28: 6.39862774e-05 + syst_JES_EtaIntercalibration_Stat29: 5.05336998e-06 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 5.129023108221975e-10 + syst_JES_EtaIntercalibration_Stat30: 5.12902311e-10 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 5.980899286896578e-11 - syst_JES_EtaIntercalibration_Stat36: 4.7390726058665745e-06 - syst_JES_EtaIntercalibration_Stat37: 3.7802598684581194e-05 - syst_JES_EtaIntercalibration_Stat38: 3.7475280055090984e-05 - syst_JES_EtaIntercalibration_Stat39: 3.700817090481506e-07 - syst_JES_EtaIntercalibration_Stat4: 4.9718518431264624e-11 - syst_JES_EtaIntercalibration_Stat40: 1.7441751632218594e-11 + syst_JES_EtaIntercalibration_Stat35: 5.98089929e-11 + syst_JES_EtaIntercalibration_Stat36: 4.73907261e-06 + syst_JES_EtaIntercalibration_Stat37: 3.78025987e-05 + syst_JES_EtaIntercalibration_Stat38: 3.74752801e-05 + syst_JES_EtaIntercalibration_Stat39: 3.70081709e-07 + syst_JES_EtaIntercalibration_Stat4: 4.97185184e-11 + syst_JES_EtaIntercalibration_Stat40: 1.74417516e-11 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 - syst_JES_EtaIntercalibration_Stat44: 4.337921247556253e-11 + syst_JES_EtaIntercalibration_Stat44: 4.33792125e-11 syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 - syst_JES_EtaIntercalibration_Stat47: 3.627780416453013e-11 - syst_JES_EtaIntercalibration_Stat48: 3.456546831738288e-07 - syst_JES_EtaIntercalibration_Stat49: 1.0060219020975637e-05 - syst_JES_EtaIntercalibration_Stat5: 7.317507626917788e-08 - syst_JES_EtaIntercalibration_Stat50: 4.296676011756064e-06 - syst_JES_EtaIntercalibration_Stat51: 8.939434854620285e-05 - syst_JES_EtaIntercalibration_Stat52: 6.279946072021637e-08 + syst_JES_EtaIntercalibration_Stat47: 3.62778042e-11 + syst_JES_EtaIntercalibration_Stat48: 3.45654683e-07 + syst_JES_EtaIntercalibration_Stat49: 1.00602190e-05 + syst_JES_EtaIntercalibration_Stat5: 7.31750763e-08 + syst_JES_EtaIntercalibration_Stat50: 4.29667601e-06 + syst_JES_EtaIntercalibration_Stat51: 8.93943485e-05 + syst_JES_EtaIntercalibration_Stat52: 6.27994607e-08 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 syst_JES_EtaIntercalibration_Stat56: 0.0 - syst_JES_EtaIntercalibration_Stat57: 4.869675879866569e-06 - syst_JES_EtaIntercalibration_Stat58: 4.326349778681793e-06 - syst_JES_EtaIntercalibration_Stat59: 0.0001663424780385335 - syst_JES_EtaIntercalibration_Stat6: 4.406698764381337e-07 - syst_JES_EtaIntercalibration_Stat60: 3.7930916150285644e-05 - syst_JES_EtaIntercalibration_Stat61: 5.396428466298335e-06 - syst_JES_EtaIntercalibration_Stat62: 3.673679762853589e-11 + syst_JES_EtaIntercalibration_Stat57: 4.86967588e-06 + syst_JES_EtaIntercalibration_Stat58: 4.32634978e-06 + syst_JES_EtaIntercalibration_Stat59: 1.66342478e-04 + syst_JES_EtaIntercalibration_Stat6: 4.40669876e-07 + syst_JES_EtaIntercalibration_Stat60: 3.79309162e-05 + syst_JES_EtaIntercalibration_Stat61: 5.39642847e-06 + syst_JES_EtaIntercalibration_Stat62: 3.67367976e-11 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 - syst_JES_EtaIntercalibration_Stat69: 5.2322991839152315e-11 - syst_JES_EtaIntercalibration_Stat7: 6.292861832243797e-08 - syst_JES_EtaIntercalibration_Stat70: 6.055026506960973e-06 - syst_JES_EtaIntercalibration_Stat71: 0.00010973443158371032 - syst_JES_EtaIntercalibration_Stat72: 7.952837040955888e-05 - syst_JES_EtaIntercalibration_Stat73: 3.0078741662509753e-05 - syst_JES_EtaIntercalibration_Stat74: 5.953511799769948e-07 + syst_JES_EtaIntercalibration_Stat69: 5.23229918e-11 + syst_JES_EtaIntercalibration_Stat7: 6.29286183e-08 + syst_JES_EtaIntercalibration_Stat70: 6.05502651e-06 + syst_JES_EtaIntercalibration_Stat71: 1.09734432e-04 + syst_JES_EtaIntercalibration_Stat72: 7.95283704e-05 + syst_JES_EtaIntercalibration_Stat73: 3.00787417e-05 + syst_JES_EtaIntercalibration_Stat74: 5.95351180e-07 syst_JES_EtaIntercalibration_Stat75: 0.0 syst_JES_EtaIntercalibration_Stat76: 0.0 syst_JES_EtaIntercalibration_Stat77: 0.0 syst_JES_EtaIntercalibration_Stat78: 0.0 - syst_JES_EtaIntercalibration_Stat79: 4.776022112726029e-06 + syst_JES_EtaIntercalibration_Stat79: 4.77602211e-06 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 5.192276090502122e-05 - syst_JES_EtaIntercalibration_Stat81: 0.00011663892864305638 - syst_JES_EtaIntercalibration_Stat82: 0.00019600979771429796 - syst_JES_EtaIntercalibration_Stat83: 0.00023726741769572996 - syst_JES_EtaIntercalibration_Stat84: 2.2600861996835428e-11 - syst_JES_EtaIntercalibration_Stat85: 4.337921247556253e-11 - syst_JES_EtaIntercalibration_Stat86: 4.337921247556253e-11 - syst_JES_EtaIntercalibration_Stat87: 4.337921247556253e-11 - syst_JES_EtaIntercalibration_Stat88: 4.337921247556253e-11 - syst_JES_EtaIntercalibration_Stat89: 4.337921247556253e-11 + syst_JES_EtaIntercalibration_Stat80: 5.19227609e-05 + syst_JES_EtaIntercalibration_Stat81: 1.16638929e-04 + syst_JES_EtaIntercalibration_Stat82: 1.96009798e-04 + syst_JES_EtaIntercalibration_Stat83: 2.37267418e-04 + syst_JES_EtaIntercalibration_Stat84: 2.26008620e-11 + syst_JES_EtaIntercalibration_Stat85: 4.33792125e-11 + syst_JES_EtaIntercalibration_Stat86: 4.33792125e-11 + syst_JES_EtaIntercalibration_Stat87: 4.33792125e-11 + syst_JES_EtaIntercalibration_Stat88: 4.33792125e-11 + syst_JES_EtaIntercalibration_Stat89: 4.33792125e-11 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 5.9615588565407956e-05 - syst_JES_EtaIntercalibration_Stat92: 0.0005309590662188565 - syst_JES_EtaIntercalibration_Stat93: 0.0003506412526714448 - syst_JES_EtaIntercalibration_Stat94: 7.680329289815639e-05 - syst_JES_EtaIntercalibration_Stat95: 4.525584802818305e-06 - syst_JES_EtaIntercalibration_Stat96: 1.7881979082097172e-07 - syst_JES_EtaIntercalibration_Stat97: 4.337921247556253e-11 - syst_JES_EtaIntercalibration_Stat98: 4.337921247556253e-11 - syst_JES_EtaIntercalibration_Stat99: 4.337921247556253e-11 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.028009219910593724 - syst_JES_Flavour_Comp: 0.13717917079498623 - syst_JES_Gjet_Generator: 0.6253580954141396 - syst_JES_Gjet_OOC: 0.43050281067607443 - syst_JES_Gjet_Purity: 0.13883524651542922 - syst_JES_Gjet_Stat1: 8.215116980299185e-21 - syst_JES_Gjet_Stat10: 0.03749451259851233 - syst_JES_Gjet_Stat11: 0.06634830574325165 - syst_JES_Gjet_Stat12: 0.06496787417639582 - syst_JES_Gjet_Stat13: 0.002562739902428649 - syst_JES_Gjet_Stat14: 0.012456645003772082 - syst_JES_Gjet_Stat15: 0.0014176120299644753 - syst_JES_Gjet_Stat2: 2.147743001385408e-08 - syst_JES_Gjet_Stat3: 6.777514810017017e-26 - syst_JES_Gjet_Stat4: 0.0013432721273462826 - syst_JES_Gjet_Stat5: 0.0024086507556312516 - syst_JES_Gjet_Stat6: 0.004250804159215055 - syst_JES_Gjet_Stat7: 0.005833605488889353 - syst_JES_Gjet_Stat8: 0.00437694194044198 - syst_JES_Gjet_Stat9: 0.015135609502098022 - syst_JES_Gjet_Veto: 0.19149242152106177 - syst_JES_Gjet_dPhi: 0.031020465422040334 - syst_JES_LArESZee: 0.7953688515399632 - syst_JES_LArEsmear: 0.06215209952205959 - syst_JES_LAr_JVT: 0.08713659090760896 - syst_JES_MJB_Alpha: 0.002311277535710662 - syst_JES_MJB_Asym: 0.011802229482178357 - syst_JES_MJB_Beta: 0.00012031950616171927 - syst_JES_MJB_Stat1: 0.005640423454848048 - syst_JES_MJB_Stat10: 9.201029548371203e-07 - syst_JES_MJB_Stat11: 2.0161063715581364e-25 - syst_JES_MJB_Stat12: 5.350304944580262e-08 - syst_JES_MJB_Stat13: 2.1364846711362103e-09 - syst_JES_MJB_Stat14: 5.9236137618855605e-12 - syst_JES_MJB_Stat15: 4.722436526836569e-18 - syst_JES_MJB_Stat16: 1.5432572695438695e-27 - syst_JES_MJB_Stat2: 0.0012973060548690891 - syst_JES_MJB_Stat3: 0.0032094901464251296 - syst_JES_MJB_Stat4: 8.05230420438771e-06 + syst_JES_EtaIntercalibration_Stat91: 5.96155886e-05 + syst_JES_EtaIntercalibration_Stat92: 5.30959066e-04 + syst_JES_EtaIntercalibration_Stat93: 3.50641253e-04 + syst_JES_EtaIntercalibration_Stat94: 7.68032929e-05 + syst_JES_EtaIntercalibration_Stat95: 4.52558480e-06 + syst_JES_EtaIntercalibration_Stat96: 1.78819791e-07 + syst_JES_EtaIntercalibration_Stat97: 4.33792125e-11 + syst_JES_EtaIntercalibration_Stat98: 4.33792125e-11 + syst_JES_EtaIntercalibration_Stat99: 4.33792125e-11 + syst_JES_EtaIntercalibration_TotalStat_MJB: 2.80092199e-02 + syst_JES_Flavour_Comp: 1.37179171e-01 + syst_JES_Gjet_Generator: 6.25358095e-01 + syst_JES_Gjet_OOC: 4.30502811e-01 + syst_JES_Gjet_Purity: 1.38835247e-01 + syst_JES_Gjet_Stat1: 8.21511698e-21 + syst_JES_Gjet_Stat10: 3.74945126e-02 + syst_JES_Gjet_Stat11: 6.63483057e-02 + syst_JES_Gjet_Stat12: 6.49678742e-02 + syst_JES_Gjet_Stat13: 2.56273990e-03 + syst_JES_Gjet_Stat14: 1.24566450e-02 + syst_JES_Gjet_Stat15: 1.41761203e-03 + syst_JES_Gjet_Stat2: 2.14774300e-08 + syst_JES_Gjet_Stat3: 6.77751481e-26 + syst_JES_Gjet_Stat4: 1.34327213e-03 + syst_JES_Gjet_Stat5: 2.40865076e-03 + syst_JES_Gjet_Stat6: 4.25080416e-03 + syst_JES_Gjet_Stat7: 5.83360549e-03 + syst_JES_Gjet_Stat8: 4.37694194e-03 + syst_JES_Gjet_Stat9: 1.51356095e-02 + syst_JES_Gjet_Veto: 1.91492422e-01 + syst_JES_Gjet_dPhi: 3.10204654e-02 + syst_JES_LArESZee: 7.95368852e-01 + syst_JES_LArEsmear: 6.21520995e-02 + syst_JES_LAr_JVT: 8.71365909e-02 + syst_JES_MJB_Alpha: 2.31127754e-03 + syst_JES_MJB_Asym: 1.18022295e-02 + syst_JES_MJB_Beta: 1.20319506e-04 + syst_JES_MJB_Stat1: 5.64042345e-03 + syst_JES_MJB_Stat10: 9.20102955e-07 + syst_JES_MJB_Stat11: 2.01610637e-25 + syst_JES_MJB_Stat12: 5.35030494e-08 + syst_JES_MJB_Stat13: 2.13648467e-09 + syst_JES_MJB_Stat14: 5.92361376e-12 + syst_JES_MJB_Stat15: 4.72243653e-18 + syst_JES_MJB_Stat16: 1.54325727e-27 + syst_JES_MJB_Stat2: 1.29730605e-03 + syst_JES_MJB_Stat3: 3.20949015e-03 + syst_JES_MJB_Stat4: 8.05230420e-06 syst_JES_MJB_Stat5: 0.0 - syst_JES_MJB_Stat6: 4.215811665622647e-13 - syst_JES_MJB_Stat7: 4.43491609278011e-32 - syst_JES_MJB_Stat8: 3.133279739101564e-25 - syst_JES_MJB_Stat9: 7.022599999287891e-07 - syst_JES_MJB_Threshold: 0.013082603668612759 - syst_JES_Pileup_MuOffset: 0.02752405130063523 - syst_JES_Pileup_NPVOffset: 0.04399616320487504 - syst_JES_Pileup_Pt_term: 0.14287342755040214 - syst_JES_PunchThrough_MC15: 0.014747227095288118 + syst_JES_MJB_Stat6: 4.21581167e-13 + syst_JES_MJB_Stat7: 4.43491609e-32 + syst_JES_MJB_Stat8: 3.13327974e-25 + syst_JES_MJB_Stat9: 7.02260000e-07 + syst_JES_MJB_Threshold: 1.30826037e-02 + syst_JES_Pileup_MuOffset: 2.75240513e-02 + syst_JES_Pileup_NPVOffset: 4.39961632e-02 + syst_JES_Pileup_Pt_term: 1.42873428e-01 + syst_JES_PunchThrough_MC15: 1.47472271e-02 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.5892619175714651 - syst_JES_Zjet_MuScale: 0.03655736132436257 - syst_JES_Zjet_MuSmearID: 0.005831908328326157 - syst_JES_Zjet_MuSmearMS: 0.09285961501104772 - syst_JES_Zjet_OOC: 0.20612566555380726 - syst_JES_Zjet_Stat1: 0.003068993809052081 - syst_JES_Zjet_Stat10: 0.029375637865414937 - syst_JES_Zjet_Stat11: 0.044983946025221044 - syst_JES_Zjet_Stat12: 0.18884567111797929 - syst_JES_Zjet_Stat13: 0.03578643737507269 - syst_JES_Zjet_Stat2: 2.677750548501484e-10 - syst_JES_Zjet_Stat3: 0.0020732397352935337 - syst_JES_Zjet_Stat4: 0.002048845223534467 - syst_JES_Zjet_Stat5: 0.0023949936847515903 - syst_JES_Zjet_Stat6: 0.0029497799917959987 - syst_JES_Zjet_Stat7: 0.0032526067622754523 - syst_JES_Zjet_Stat8: 0.004345033141415609 - syst_JES_Zjet_Stat9: 0.010086413175653673 - syst_JES_Zjet_Veto: 0.04250559684323936 - syst_JES_Zjet_dPhi: 0.03592339186379816 + syst_JES_Zjet_MC: 5.89261918e-01 + syst_JES_Zjet_MuScale: 3.65573613e-02 + syst_JES_Zjet_MuSmearID: 5.83190833e-03 + syst_JES_Zjet_MuSmearMS: 9.28596150e-02 + syst_JES_Zjet_OOC: 2.06125666e-01 + syst_JES_Zjet_Stat1: 3.06899381e-03 + syst_JES_Zjet_Stat10: 2.93756379e-02 + syst_JES_Zjet_Stat11: 4.49839460e-02 + syst_JES_Zjet_Stat12: 1.88845671e-01 + syst_JES_Zjet_Stat13: 3.57864374e-02 + syst_JES_Zjet_Stat2: 2.67775055e-10 + syst_JES_Zjet_Stat3: 2.07323974e-03 + syst_JES_Zjet_Stat4: 2.04884522e-03 + syst_JES_Zjet_Stat5: 2.39499368e-03 + syst_JES_Zjet_Stat6: 2.94977999e-03 + syst_JES_Zjet_Stat7: 3.25260676e-03 + syst_JES_Zjet_Stat8: 4.34503314e-03 + syst_JES_Zjet_Stat9: 1.00864132e-02 + syst_JES_Zjet_Veto: 4.25055968e-02 + syst_JES_Zjet_dPhi: 3.59233919e-02 syst_PRW: 0.0486 - syst_Unfolding_bias: 1.498e-05 - syst_cleaning: 0.1589156615944445 + syst_Unfolding_bias: 1.49800000e-05 + syst_cleaning: 1.58915662e-01 syst_lumi: 0.6749 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0932946740173307 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 0.39961331068296513 - syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.012389359012878753 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 9.32946740e-02 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 3.99613311e-01 + syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.23893590e-02 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 0.5564259519468876 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.03294501945666446 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.1829289206221914 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 5.56425952e-01 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 3.29450195e-02 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.82928921e-01 - stat: 0.11683 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.1938582149407138 - syst_JER_NP1: 0.009449353628688048 - syst_JER_NP2: 0.07562239879823966 - syst_JER_NP3: 0.03539985134149577 - syst_JER_NP4: 0.0043330113085474405 - syst_JER_NP5: 0.03283943779969444 - syst_JER_NP6: 0.008443116530641987 - syst_JER_NP7: 0.00957729204942608 - syst_JER_NP8: 0.022871783380401276 - syst_JES_EtaIntercalibration_Modelling: 0.440656737154897 - syst_JES_EtaIntercalibration_NonClosure: 7.370775179721601e-05 - syst_JES_EtaIntercalibration_Stat0: 4.28076357090648e-12 + syst_JER_NP0: 1.93858215e-01 + syst_JER_NP1: 9.44935363e-03 + syst_JER_NP2: 7.56223988e-02 + syst_JER_NP3: 3.53998513e-02 + syst_JER_NP4: 4.33301131e-03 + syst_JER_NP5: 3.28394378e-02 + syst_JER_NP6: 8.44311653e-03 + syst_JER_NP7: 9.57729205e-03 + syst_JER_NP8: 2.28717834e-02 + syst_JES_EtaIntercalibration_Modelling: 4.40656737e-01 + syst_JES_EtaIntercalibration_NonClosure: 7.37077518e-05 + syst_JES_EtaIntercalibration_Stat0: 4.28076357e-12 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 7.353726197422417e-07 - syst_JES_EtaIntercalibration_Stat101: 0.00022882042730217508 - syst_JES_EtaIntercalibration_Stat102: 7.237798076763402e-05 - syst_JES_EtaIntercalibration_Stat103: 6.861600839454303e-05 - syst_JES_EtaIntercalibration_Stat104: 9.549394431062109e-05 - syst_JES_EtaIntercalibration_Stat105: 3.1116161492060684e-12 - syst_JES_EtaIntercalibration_Stat106: 4.28076357090648e-12 - syst_JES_EtaIntercalibration_Stat107: 4.28076357090648e-12 - syst_JES_EtaIntercalibration_Stat108: 4.28076357090648e-12 - syst_JES_EtaIntercalibration_Stat109: 4.28076357090648e-12 + syst_JES_EtaIntercalibration_Stat100: 7.35372620e-07 + syst_JES_EtaIntercalibration_Stat101: 2.28820427e-04 + syst_JES_EtaIntercalibration_Stat102: 7.23779808e-05 + syst_JES_EtaIntercalibration_Stat103: 6.86160084e-05 + syst_JES_EtaIntercalibration_Stat104: 9.54939443e-05 + syst_JES_EtaIntercalibration_Stat105: 3.11161615e-12 + syst_JES_EtaIntercalibration_Stat106: 4.28076357e-12 + syst_JES_EtaIntercalibration_Stat107: 4.28076357e-12 + syst_JES_EtaIntercalibration_Stat108: 4.28076357e-12 + syst_JES_EtaIntercalibration_Stat109: 4.28076357e-12 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 1.2364171585674472e-09 - syst_JES_EtaIntercalibration_Stat111: 0.00016445834388987383 - syst_JES_EtaIntercalibration_Stat112: 0.0006488586498614317 - syst_JES_EtaIntercalibration_Stat113: 0.001235451083612783 - syst_JES_EtaIntercalibration_Stat114: 0.00045165582028797104 - syst_JES_EtaIntercalibration_Stat115: 2.9907860170864783e-05 - syst_JES_EtaIntercalibration_Stat116: 2.2619156985726432e-08 - syst_JES_EtaIntercalibration_Stat117: 4.28076357090648e-12 - syst_JES_EtaIntercalibration_Stat118: 4.28076357090648e-12 - syst_JES_EtaIntercalibration_Stat119: 4.28076357090648e-12 + syst_JES_EtaIntercalibration_Stat110: 1.23641716e-09 + syst_JES_EtaIntercalibration_Stat111: 1.64458344e-04 + syst_JES_EtaIntercalibration_Stat112: 6.48858650e-04 + syst_JES_EtaIntercalibration_Stat113: 1.23545108e-03 + syst_JES_EtaIntercalibration_Stat114: 4.51655820e-04 + syst_JES_EtaIntercalibration_Stat115: 2.99078602e-05 + syst_JES_EtaIntercalibration_Stat116: 2.26191570e-08 + syst_JES_EtaIntercalibration_Stat117: 4.28076357e-12 + syst_JES_EtaIntercalibration_Stat118: 4.28076357e-12 + syst_JES_EtaIntercalibration_Stat119: 4.28076357e-12 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 2.7175877170755687e-06 - syst_JES_EtaIntercalibration_Stat121: 0.0005256434980811615 - syst_JES_EtaIntercalibration_Stat122: 0.0010807977331582445 - syst_JES_EtaIntercalibration_Stat123: 0.0007817429244962821 - syst_JES_EtaIntercalibration_Stat124: 4.8387533847779435e-05 - syst_JES_EtaIntercalibration_Stat125: 3.884123935973208e-08 - syst_JES_EtaIntercalibration_Stat126: 4.28076357090648e-12 - syst_JES_EtaIntercalibration_Stat127: 4.28076357090648e-12 - syst_JES_EtaIntercalibration_Stat128: 4.28076357090648e-12 - syst_JES_EtaIntercalibration_Stat129: 0.00022781472889170268 + syst_JES_EtaIntercalibration_Stat120: 2.71758772e-06 + syst_JES_EtaIntercalibration_Stat121: 5.25643498e-04 + syst_JES_EtaIntercalibration_Stat122: 1.08079773e-03 + syst_JES_EtaIntercalibration_Stat123: 7.81742924e-04 + syst_JES_EtaIntercalibration_Stat124: 4.83875338e-05 + syst_JES_EtaIntercalibration_Stat125: 3.88412394e-08 + syst_JES_EtaIntercalibration_Stat126: 4.28076357e-12 + syst_JES_EtaIntercalibration_Stat127: 4.28076357e-12 + syst_JES_EtaIntercalibration_Stat128: 4.28076357e-12 + syst_JES_EtaIntercalibration_Stat129: 2.27814729e-04 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 0.0013604045969857644 - syst_JES_EtaIntercalibration_Stat131: 0.007913895816852784 - syst_JES_EtaIntercalibration_Stat132: 0.008628789182150645 - syst_JES_EtaIntercalibration_Stat133: 0.0024408516444061074 - syst_JES_EtaIntercalibration_Stat134: 0.00016957703470694375 - syst_JES_EtaIntercalibration_Stat135: 2.262058354684954e-08 + syst_JES_EtaIntercalibration_Stat130: 1.36040460e-03 + syst_JES_EtaIntercalibration_Stat131: 7.91389582e-03 + syst_JES_EtaIntercalibration_Stat132: 8.62878918e-03 + syst_JES_EtaIntercalibration_Stat133: 2.44085164e-03 + syst_JES_EtaIntercalibration_Stat134: 1.69577035e-04 + syst_JES_EtaIntercalibration_Stat135: 2.26205835e-08 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 syst_JES_EtaIntercalibration_Stat138: 0.0 - syst_JES_EtaIntercalibration_Stat139: 0.0003680546523679431 - syst_JES_EtaIntercalibration_Stat14: 7.438295717257266e-07 - syst_JES_EtaIntercalibration_Stat140: 0.0029810596689767883 - syst_JES_EtaIntercalibration_Stat141: 0.009349908381904071 - syst_JES_EtaIntercalibration_Stat142: 0.006264114143276764 - syst_JES_EtaIntercalibration_Stat143: 0.0015392511840177352 - syst_JES_EtaIntercalibration_Stat144: 5.975223860869147e-05 + syst_JES_EtaIntercalibration_Stat139: 3.68054652e-04 + syst_JES_EtaIntercalibration_Stat14: 7.43829572e-07 + syst_JES_EtaIntercalibration_Stat140: 2.98105967e-03 + syst_JES_EtaIntercalibration_Stat141: 9.34990838e-03 + syst_JES_EtaIntercalibration_Stat142: 6.26411414e-03 + syst_JES_EtaIntercalibration_Stat143: 1.53925118e-03 + syst_JES_EtaIntercalibration_Stat144: 5.97522386e-05 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 5.244029384690746e-05 - syst_JES_EtaIntercalibration_Stat148: 0.002249465714341963 - syst_JES_EtaIntercalibration_Stat149: 0.009683972570696387 - syst_JES_EtaIntercalibration_Stat15: 7.422740995884155e-07 - syst_JES_EtaIntercalibration_Stat150: 0.010367382360075278 - syst_JES_EtaIntercalibration_Stat151: 0.003469543053487015 - syst_JES_EtaIntercalibration_Stat152: 4.7959337724785156e-05 + syst_JES_EtaIntercalibration_Stat147: 5.24402938e-05 + syst_JES_EtaIntercalibration_Stat148: 2.24946571e-03 + syst_JES_EtaIntercalibration_Stat149: 9.68397257e-03 + syst_JES_EtaIntercalibration_Stat15: 7.42274100e-07 + syst_JES_EtaIntercalibration_Stat150: 1.03673824e-02 + syst_JES_EtaIntercalibration_Stat151: 3.46954305e-03 + syst_JES_EtaIntercalibration_Stat152: 4.79593377e-05 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 syst_JES_EtaIntercalibration_Stat156: 0.0 - syst_JES_EtaIntercalibration_Stat157: 4.4206633834753804e-05 - syst_JES_EtaIntercalibration_Stat158: 0.003704623158973123 - syst_JES_EtaIntercalibration_Stat159: 0.01320752281845464 - syst_JES_EtaIntercalibration_Stat16: 7.391594258272482e-07 - syst_JES_EtaIntercalibration_Stat160: 0.010139320132533543 - syst_JES_EtaIntercalibration_Stat161: 0.0020192178560026653 - syst_JES_EtaIntercalibration_Stat162: 6.014930333761148e-05 + syst_JES_EtaIntercalibration_Stat157: 4.42066338e-05 + syst_JES_EtaIntercalibration_Stat158: 3.70462316e-03 + syst_JES_EtaIntercalibration_Stat159: 1.32075228e-02 + syst_JES_EtaIntercalibration_Stat16: 7.39159426e-07 + syst_JES_EtaIntercalibration_Stat160: 1.01393201e-02 + syst_JES_EtaIntercalibration_Stat161: 2.01921786e-03 + syst_JES_EtaIntercalibration_Stat162: 6.01493033e-05 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 0.00014869706475919423 - syst_JES_EtaIntercalibration_Stat166: 0.0034472559387866753 - syst_JES_EtaIntercalibration_Stat167: 0.015219415231867484 - syst_JES_EtaIntercalibration_Stat168: 0.015553619152788845 - syst_JES_EtaIntercalibration_Stat169: 0.0051179957747149426 - syst_JES_EtaIntercalibration_Stat17: 3.5524362063237675e-12 - syst_JES_EtaIntercalibration_Stat170: 0.00030554676810596443 + syst_JES_EtaIntercalibration_Stat165: 1.48697065e-04 + syst_JES_EtaIntercalibration_Stat166: 3.44725594e-03 + syst_JES_EtaIntercalibration_Stat167: 1.52194152e-02 + syst_JES_EtaIntercalibration_Stat168: 1.55536192e-02 + syst_JES_EtaIntercalibration_Stat169: 5.11799577e-03 + syst_JES_EtaIntercalibration_Stat17: 3.55243621e-12 + syst_JES_EtaIntercalibration_Stat170: 3.05546768e-04 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 - syst_JES_EtaIntercalibration_Stat175: 0.00017585487958825596 - syst_JES_EtaIntercalibration_Stat176: 0.006535034429901651 - syst_JES_EtaIntercalibration_Stat177: 0.0243729911992763 - syst_JES_EtaIntercalibration_Stat178: 0.017599558943337187 - syst_JES_EtaIntercalibration_Stat179: 0.0033316847089723245 + syst_JES_EtaIntercalibration_Stat175: 1.75854880e-04 + syst_JES_EtaIntercalibration_Stat176: 6.53503443e-03 + syst_JES_EtaIntercalibration_Stat177: 2.43729912e-02 + syst_JES_EtaIntercalibration_Stat178: 1.75995589e-02 + syst_JES_EtaIntercalibration_Stat179: 3.33168471e-03 syst_JES_EtaIntercalibration_Stat18: 0.0 - syst_JES_EtaIntercalibration_Stat180: 9.85720223833822e-05 + syst_JES_EtaIntercalibration_Stat180: 9.85720224e-05 syst_JES_EtaIntercalibration_Stat181: 0.0 - syst_JES_EtaIntercalibration_Stat182: 0.00033436682894689176 - syst_JES_EtaIntercalibration_Stat183: 0.006665151367373437 - syst_JES_EtaIntercalibration_Stat184: 0.026512357496080954 - syst_JES_EtaIntercalibration_Stat185: 0.03444308457441058 - syst_JES_EtaIntercalibration_Stat186: 0.007194467132686531 - syst_JES_EtaIntercalibration_Stat187: 0.0006026115830284048 + syst_JES_EtaIntercalibration_Stat182: 3.34366829e-04 + syst_JES_EtaIntercalibration_Stat183: 6.66515137e-03 + syst_JES_EtaIntercalibration_Stat184: 2.65123575e-02 + syst_JES_EtaIntercalibration_Stat185: 3.44430846e-02 + syst_JES_EtaIntercalibration_Stat186: 7.19446713e-03 + syst_JES_EtaIntercalibration_Stat187: 6.02611583e-04 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 - syst_JES_EtaIntercalibration_Stat192: 0.00010684155398194983 - syst_JES_EtaIntercalibration_Stat193: 0.013792340945249287 - syst_JES_EtaIntercalibration_Stat194: 0.041989884496149786 - syst_JES_EtaIntercalibration_Stat195: 0.0300020015998933 - syst_JES_EtaIntercalibration_Stat196: 0.004681243531370698 - syst_JES_EtaIntercalibration_Stat197: 0.00022664842267264951 - syst_JES_EtaIntercalibration_Stat198: 0.0023019803664453783 - syst_JES_EtaIntercalibration_Stat199: 0.00632603388783209 + syst_JES_EtaIntercalibration_Stat192: 1.06841554e-04 + syst_JES_EtaIntercalibration_Stat193: 1.37923409e-02 + syst_JES_EtaIntercalibration_Stat194: 4.19898845e-02 + syst_JES_EtaIntercalibration_Stat195: 3.00020016e-02 + syst_JES_EtaIntercalibration_Stat196: 4.68124353e-03 + syst_JES_EtaIntercalibration_Stat197: 2.26648423e-04 + syst_JES_EtaIntercalibration_Stat198: 2.30198037e-03 + syst_JES_EtaIntercalibration_Stat199: 6.32603389e-03 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 0.006971435863579325 - syst_JES_EtaIntercalibration_Stat201: 0.002516479149029453 - syst_JES_EtaIntercalibration_Stat202: 0.00025963278433202536 + syst_JES_EtaIntercalibration_Stat200: 6.97143586e-03 + syst_JES_EtaIntercalibration_Stat201: 2.51647915e-03 + syst_JES_EtaIntercalibration_Stat202: 2.59632784e-04 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 - syst_JES_EtaIntercalibration_Stat207: 0.00030058295872354443 - syst_JES_EtaIntercalibration_Stat208: 0.0026691187216008206 - syst_JES_EtaIntercalibration_Stat209: 0.008596250694343435 + syst_JES_EtaIntercalibration_Stat207: 3.00582959e-04 + syst_JES_EtaIntercalibration_Stat208: 2.66911872e-03 + syst_JES_EtaIntercalibration_Stat209: 8.59625069e-03 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 0.005896058238348737 - syst_JES_EtaIntercalibration_Stat211: 0.0016676430313469367 - syst_JES_EtaIntercalibration_Stat212: 0.0011064920921543 - syst_JES_EtaIntercalibration_Stat213: 0.0019981156122707215 - syst_JES_EtaIntercalibration_Stat214: 0.0004769082930711103 - syst_JES_EtaIntercalibration_Stat215: 3.159264662464985e-05 + syst_JES_EtaIntercalibration_Stat210: 5.89605824e-03 + syst_JES_EtaIntercalibration_Stat211: 1.66764303e-03 + syst_JES_EtaIntercalibration_Stat212: 1.10649209e-03 + syst_JES_EtaIntercalibration_Stat213: 1.99811561e-03 + syst_JES_EtaIntercalibration_Stat214: 4.76908293e-04 + syst_JES_EtaIntercalibration_Stat215: 3.15926466e-05 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 syst_JES_EtaIntercalibration_Stat219: 0.0 - syst_JES_EtaIntercalibration_Stat22: 4.28076357090648e-12 - syst_JES_EtaIntercalibration_Stat220: 5.765131195669571e-06 - syst_JES_EtaIntercalibration_Stat221: 0.0006227084952046182 - syst_JES_EtaIntercalibration_Stat222: 0.001034059054164703 - syst_JES_EtaIntercalibration_Stat223: 0.0012178262068127783 - syst_JES_EtaIntercalibration_Stat224: 6.25897148100229e-05 - syst_JES_EtaIntercalibration_Stat225: 0.00011897612323487431 - syst_JES_EtaIntercalibration_Stat226: 2.2954602517795856e-06 - syst_JES_EtaIntercalibration_Stat227: 3.787519758364304e-08 + syst_JES_EtaIntercalibration_Stat22: 4.28076357e-12 + syst_JES_EtaIntercalibration_Stat220: 5.76513120e-06 + syst_JES_EtaIntercalibration_Stat221: 6.22708495e-04 + syst_JES_EtaIntercalibration_Stat222: 1.03405905e-03 + syst_JES_EtaIntercalibration_Stat223: 1.21782621e-03 + syst_JES_EtaIntercalibration_Stat224: 6.25897148e-05 + syst_JES_EtaIntercalibration_Stat225: 1.18976123e-04 + syst_JES_EtaIntercalibration_Stat226: 2.29546025e-06 + syst_JES_EtaIntercalibration_Stat227: 3.78751976e-08 syst_JES_EtaIntercalibration_Stat228: 0.0 syst_JES_EtaIntercalibration_Stat229: 0.0 - syst_JES_EtaIntercalibration_Stat23: 4.28076357090648e-12 + syst_JES_EtaIntercalibration_Stat23: 4.28076357e-12 syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 - syst_JES_EtaIntercalibration_Stat232: 4.6415653186721394e-07 - syst_JES_EtaIntercalibration_Stat233: 8.456738068513341e-06 - syst_JES_EtaIntercalibration_Stat234: 0.0001524444215935762 - syst_JES_EtaIntercalibration_Stat235: 0.0004288449953071622 - syst_JES_EtaIntercalibration_Stat236: 9.0247172254869e-08 - syst_JES_EtaIntercalibration_Stat237: 6.260951573417175e-08 - syst_JES_EtaIntercalibration_Stat238: 6.439764902541085e-17 + syst_JES_EtaIntercalibration_Stat232: 4.64156532e-07 + syst_JES_EtaIntercalibration_Stat233: 8.45673807e-06 + syst_JES_EtaIntercalibration_Stat234: 1.52444422e-04 + syst_JES_EtaIntercalibration_Stat235: 4.28844995e-04 + syst_JES_EtaIntercalibration_Stat236: 9.02471723e-08 + syst_JES_EtaIntercalibration_Stat237: 6.26095157e-08 + syst_JES_EtaIntercalibration_Stat238: 6.43976490e-17 syst_JES_EtaIntercalibration_Stat239: 0.0 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 - syst_JES_EtaIntercalibration_Stat243: 2.3291025698324236e-13 - syst_JES_EtaIntercalibration_Stat244: 2.336507650319168e-09 - syst_JES_EtaIntercalibration_Stat245: 4.649352264563313e-07 - syst_JES_EtaIntercalibration_Stat25: 3.5628285111691803e-12 - syst_JES_EtaIntercalibration_Stat26: 8.809290550322426e-10 - syst_JES_EtaIntercalibration_Stat27: 6.729246094474477e-07 - syst_JES_EtaIntercalibration_Stat28: 3.725920432255633e-05 - syst_JES_EtaIntercalibration_Stat29: 7.267501845201005e-07 + syst_JES_EtaIntercalibration_Stat243: 2.32910257e-13 + syst_JES_EtaIntercalibration_Stat244: 2.33650765e-09 + syst_JES_EtaIntercalibration_Stat245: 4.64935226e-07 + syst_JES_EtaIntercalibration_Stat25: 3.56282851e-12 + syst_JES_EtaIntercalibration_Stat26: 8.80929055e-10 + syst_JES_EtaIntercalibration_Stat27: 6.72924609e-07 + syst_JES_EtaIntercalibration_Stat28: 3.72592043e-05 + syst_JES_EtaIntercalibration_Stat29: 7.26750185e-07 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 4.965047917623756e-11 + syst_JES_EtaIntercalibration_Stat30: 4.96504792e-11 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 5.913305765813231e-12 - syst_JES_EtaIntercalibration_Stat36: 7.232275538687669e-07 - syst_JES_EtaIntercalibration_Stat37: 2.4777635248870603e-05 - syst_JES_EtaIntercalibration_Stat38: 2.4724924545947558e-05 - syst_JES_EtaIntercalibration_Stat39: 3.9332210988323554e-08 - syst_JES_EtaIntercalibration_Stat4: 4.885249302748018e-12 - syst_JES_EtaIntercalibration_Stat40: 1.8013328398716324e-12 + syst_JES_EtaIntercalibration_Stat35: 5.91330577e-12 + syst_JES_EtaIntercalibration_Stat36: 7.23227554e-07 + syst_JES_EtaIntercalibration_Stat37: 2.47776352e-05 + syst_JES_EtaIntercalibration_Stat38: 2.47249245e-05 + syst_JES_EtaIntercalibration_Stat39: 3.93322110e-08 + syst_JES_EtaIntercalibration_Stat4: 4.88524930e-12 + syst_JES_EtaIntercalibration_Stat40: 1.80133284e-12 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 - syst_JES_EtaIntercalibration_Stat44: 4.28076357090648e-12 + syst_JES_EtaIntercalibration_Stat44: 4.28076357e-12 syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 - syst_JES_EtaIntercalibration_Stat47: 3.5645605619767495e-12 - syst_JES_EtaIntercalibration_Stat48: 4.104278834338622e-08 - syst_JES_EtaIntercalibration_Stat49: 1.5847399628961214e-06 - syst_JES_EtaIntercalibration_Stat5: 7.881243929735965e-09 - syst_JES_EtaIntercalibration_Stat50: 4.4411527516710115e-05 - syst_JES_EtaIntercalibration_Stat51: 2.228167535779121e-05 - syst_JES_EtaIntercalibration_Stat52: 6.8021097462478505e-09 + syst_JES_EtaIntercalibration_Stat47: 3.56456056e-12 + syst_JES_EtaIntercalibration_Stat48: 4.10427883e-08 + syst_JES_EtaIntercalibration_Stat49: 1.58473996e-06 + syst_JES_EtaIntercalibration_Stat5: 7.88124393e-09 + syst_JES_EtaIntercalibration_Stat50: 4.44115275e-05 + syst_JES_EtaIntercalibration_Stat51: 2.22816754e-05 + syst_JES_EtaIntercalibration_Stat52: 6.80210975e-09 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 syst_JES_EtaIntercalibration_Stat56: 0.0 - syst_JES_EtaIntercalibration_Stat57: 7.437441034589061e-07 - syst_JES_EtaIntercalibration_Stat58: 6.658323203329798e-07 - syst_JES_EtaIntercalibration_Stat59: 0.00013545900966713143 - syst_JES_EtaIntercalibration_Stat6: 5.4857303506461196e-08 - syst_JES_EtaIntercalibration_Stat60: 2.2040326381430924e-05 - syst_JES_EtaIntercalibration_Stat61: 9.710025698301473e-07 - syst_JES_EtaIntercalibration_Stat62: 3.6234502894340913e-12 + syst_JES_EtaIntercalibration_Stat57: 7.43744103e-07 + syst_JES_EtaIntercalibration_Stat58: 6.65832320e-07 + syst_JES_EtaIntercalibration_Stat59: 1.35459010e-04 + syst_JES_EtaIntercalibration_Stat6: 5.48573035e-08 + syst_JES_EtaIntercalibration_Stat60: 2.20403264e-05 + syst_JES_EtaIntercalibration_Stat61: 9.71002570e-07 + syst_JES_EtaIntercalibration_Stat62: 3.62345029e-12 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 - syst_JES_EtaIntercalibration_Stat69: 5.1481399310819055e-12 - syst_JES_EtaIntercalibration_Stat7: 6.811616321200185e-09 - syst_JES_EtaIntercalibration_Stat70: 8.384607012257641e-07 - syst_JES_EtaIntercalibration_Stat71: 1.4413044673142451e-05 - syst_JES_EtaIntercalibration_Stat72: 5.2447360991760106e-05 - syst_JES_EtaIntercalibration_Stat73: 4.394286461702286e-05 - syst_JES_EtaIntercalibration_Stat74: 7.147198104851998e-08 + syst_JES_EtaIntercalibration_Stat69: 5.14813993e-12 + syst_JES_EtaIntercalibration_Stat7: 6.81161632e-09 + syst_JES_EtaIntercalibration_Stat70: 8.38460701e-07 + syst_JES_EtaIntercalibration_Stat71: 1.44130447e-05 + syst_JES_EtaIntercalibration_Stat72: 5.24473610e-05 + syst_JES_EtaIntercalibration_Stat73: 4.39428646e-05 + syst_JES_EtaIntercalibration_Stat74: 7.14719810e-08 syst_JES_EtaIntercalibration_Stat75: 0.0 syst_JES_EtaIntercalibration_Stat76: 0.0 syst_JES_EtaIntercalibration_Stat77: 0.0 syst_JES_EtaIntercalibration_Stat78: 0.0 - syst_JES_EtaIntercalibration_Stat79: 7.309970128001071e-07 + syst_JES_EtaIntercalibration_Stat79: 7.30997013e-07 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 5.9549042944702314e-05 - syst_JES_EtaIntercalibration_Stat81: 7.135933300381947e-05 - syst_JES_EtaIntercalibration_Stat82: 0.00019039781590133852 - syst_JES_EtaIntercalibration_Stat83: 6.22153160162351e-05 - syst_JES_EtaIntercalibration_Stat84: 2.1609573960400055e-12 - syst_JES_EtaIntercalibration_Stat85: 4.28076357090648e-12 - syst_JES_EtaIntercalibration_Stat86: 4.28076357090648e-12 - syst_JES_EtaIntercalibration_Stat87: 4.28076357090648e-12 - syst_JES_EtaIntercalibration_Stat88: 4.28076357090648e-12 - syst_JES_EtaIntercalibration_Stat89: 4.28076357090648e-12 + syst_JES_EtaIntercalibration_Stat80: 5.95490429e-05 + syst_JES_EtaIntercalibration_Stat81: 7.13593330e-05 + syst_JES_EtaIntercalibration_Stat82: 1.90397816e-04 + syst_JES_EtaIntercalibration_Stat83: 6.22153160e-05 + syst_JES_EtaIntercalibration_Stat84: 2.16095740e-12 + syst_JES_EtaIntercalibration_Stat85: 4.28076357e-12 + syst_JES_EtaIntercalibration_Stat86: 4.28076357e-12 + syst_JES_EtaIntercalibration_Stat87: 4.28076357e-12 + syst_JES_EtaIntercalibration_Stat88: 4.28076357e-12 + syst_JES_EtaIntercalibration_Stat89: 4.28076357e-12 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 2.290339380965188e-05 - syst_JES_EtaIntercalibration_Stat92: 0.0001754783749497356 - syst_JES_EtaIntercalibration_Stat93: 5.4325119887120365e-05 - syst_JES_EtaIntercalibration_Stat94: 4.9998910738135085e-05 - syst_JES_EtaIntercalibration_Stat95: 6.556641595168978e-07 - syst_JES_EtaIntercalibration_Stat96: 2.2619156985726432e-08 - syst_JES_EtaIntercalibration_Stat97: 4.28076357090648e-12 - syst_JES_EtaIntercalibration_Stat98: 4.28076357090648e-12 - syst_JES_EtaIntercalibration_Stat99: 4.28076357090648e-12 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.028426776109858113 - syst_JES_Flavour_Comp: 0.10960313909738169 - syst_JES_Gjet_Generator: 0.37342327146952153 - syst_JES_Gjet_OOC: 0.2634251838758018 - syst_JES_Gjet_Purity: 0.08956169828671183 - syst_JES_Gjet_Stat1: 4.0876399058625503e-16 - syst_JES_Gjet_Stat10: 0.01889694353592665 - syst_JES_Gjet_Stat11: 0.035784489307519825 - syst_JES_Gjet_Stat12: 0.050570033369575704 - syst_JES_Gjet_Stat13: 0.011385127173202766 - syst_JES_Gjet_Stat14: 0.01044563147923571 - syst_JES_Gjet_Stat15: 0.0007671182568548345 - syst_JES_Gjet_Stat2: 6.577462941742812e-08 - syst_JES_Gjet_Stat3: 4.509394277505572e-20 - syst_JES_Gjet_Stat4: 0.0007889649434840246 - syst_JES_Gjet_Stat5: 0.0012815592221853845 - syst_JES_Gjet_Stat6: 0.0025078682182283823 - syst_JES_Gjet_Stat7: 0.0036921390480316417 - syst_JES_Gjet_Stat8: 0.00229258385888063 - syst_JES_Gjet_Stat9: 0.007473837484853413 - syst_JES_Gjet_Veto: 0.12802304743677992 - syst_JES_Gjet_dPhi: 0.018915804899607102 - syst_JES_LArESZee: 0.4991605227779937 - syst_JES_LArEsmear: 0.03942263766860356 - syst_JES_LAr_JVT: 0.05309490064968574 - syst_JES_MJB_Alpha: 0.002907558023853522 - syst_JES_MJB_Asym: 0.011687190637616897 - syst_JES_MJB_Beta: 0.001061066600548712 - syst_JES_MJB_Stat1: 0.0033555886320435642 - syst_JES_MJB_Stat10: 3.6421533465794654e-06 - syst_JES_MJB_Stat11: 1.3414635127021101e-19 - syst_JES_MJB_Stat12: 5.472414526513868e-07 - syst_JES_MJB_Stat13: 7.100542285628612e-08 - syst_JES_MJB_Stat14: 8.142370846381291e-10 - syst_JES_MJB_Stat15: 2.4525839435498995e-14 - syst_JES_MJB_Stat16: 1.0267597187268304e-21 - syst_JES_MJB_Stat2: 0.0031176914536239792 - syst_JES_MJB_Stat3: 0.003844286767399123 - syst_JES_MJB_Stat4: 0.0008029787543889315 + syst_JES_EtaIntercalibration_Stat91: 2.29033938e-05 + syst_JES_EtaIntercalibration_Stat92: 1.75478375e-04 + syst_JES_EtaIntercalibration_Stat93: 5.43251199e-05 + syst_JES_EtaIntercalibration_Stat94: 4.99989107e-05 + syst_JES_EtaIntercalibration_Stat95: 6.55664160e-07 + syst_JES_EtaIntercalibration_Stat96: 2.26191570e-08 + syst_JES_EtaIntercalibration_Stat97: 4.28076357e-12 + syst_JES_EtaIntercalibration_Stat98: 4.28076357e-12 + syst_JES_EtaIntercalibration_Stat99: 4.28076357e-12 + syst_JES_EtaIntercalibration_TotalStat_MJB: 2.84267761e-02 + syst_JES_Flavour_Comp: 1.09603139e-01 + syst_JES_Gjet_Generator: 3.73423271e-01 + syst_JES_Gjet_OOC: 2.63425184e-01 + syst_JES_Gjet_Purity: 8.95616983e-02 + syst_JES_Gjet_Stat1: 4.08763991e-16 + syst_JES_Gjet_Stat10: 1.88969435e-02 + syst_JES_Gjet_Stat11: 3.57844893e-02 + syst_JES_Gjet_Stat12: 5.05700334e-02 + syst_JES_Gjet_Stat13: 1.13851272e-02 + syst_JES_Gjet_Stat14: 1.04456315e-02 + syst_JES_Gjet_Stat15: 7.67118257e-04 + syst_JES_Gjet_Stat2: 6.57746294e-08 + syst_JES_Gjet_Stat3: 4.50939428e-20 + syst_JES_Gjet_Stat4: 7.88964943e-04 + syst_JES_Gjet_Stat5: 1.28155922e-03 + syst_JES_Gjet_Stat6: 2.50786822e-03 + syst_JES_Gjet_Stat7: 3.69213905e-03 + syst_JES_Gjet_Stat8: 2.29258386e-03 + syst_JES_Gjet_Stat9: 7.47383748e-03 + syst_JES_Gjet_Veto: 1.28023047e-01 + syst_JES_Gjet_dPhi: 1.89158049e-02 + syst_JES_LArESZee: 4.99160523e-01 + syst_JES_LArEsmear: 3.94226377e-02 + syst_JES_LAr_JVT: 5.30949006e-02 + syst_JES_MJB_Alpha: 2.90755802e-03 + syst_JES_MJB_Asym: 1.16871906e-02 + syst_JES_MJB_Beta: 1.06106660e-03 + syst_JES_MJB_Stat1: 3.35558863e-03 + syst_JES_MJB_Stat10: 3.64215335e-06 + syst_JES_MJB_Stat11: 1.34146351e-19 + syst_JES_MJB_Stat12: 5.47241453e-07 + syst_JES_MJB_Stat13: 7.10054229e-08 + syst_JES_MJB_Stat14: 8.14237085e-10 + syst_JES_MJB_Stat15: 2.45258394e-14 + syst_JES_MJB_Stat16: 1.02675972e-21 + syst_JES_MJB_Stat2: 3.11769145e-03 + syst_JES_MJB_Stat3: 3.84428677e-03 + syst_JES_MJB_Stat4: 8.02978754e-04 syst_JES_MJB_Stat5: 0.0 - syst_JES_MJB_Stat6: 3.0995049201445064e-10 - syst_JES_MJB_Stat7: 5.679394598018349e-25 - syst_JES_MJB_Stat8: 2.0845209472139031e-19 - syst_JES_MJB_Stat9: 2.77994154554183e-06 - syst_JES_MJB_Threshold: 0.013877029473197786 - syst_JES_Pileup_MuOffset: 0.02493484910722341 - syst_JES_Pileup_NPVOffset: 0.032096658315157976 - syst_JES_Pileup_Pt_term: 0.08302242272422554 - syst_JES_PunchThrough_MC15: 0.011322628879814086 + syst_JES_MJB_Stat6: 3.09950492e-10 + syst_JES_MJB_Stat7: 5.67939460e-25 + syst_JES_MJB_Stat8: 2.08452095e-19 + syst_JES_MJB_Stat9: 2.77994155e-06 + syst_JES_MJB_Threshold: 1.38770295e-02 + syst_JES_Pileup_MuOffset: 2.49348491e-02 + syst_JES_Pileup_NPVOffset: 3.20966583e-02 + syst_JES_Pileup_Pt_term: 8.30224227e-02 + syst_JES_PunchThrough_MC15: 1.13226289e-02 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.34315668068682564 - syst_JES_Zjet_MuScale: 0.021711179148079452 - syst_JES_Zjet_MuSmearID: 0.0033128344359475616 - syst_JES_Zjet_MuSmearMS: 0.06490611527429445 - syst_JES_Zjet_OOC: 0.1255875418781656 - syst_JES_Zjet_Stat1: 0.0019499463454156884 - syst_JES_Zjet_Stat10: 0.014295393488813101 - syst_JES_Zjet_Stat11: 0.017232443239424872 - syst_JES_Zjet_Stat12: 0.11559917852216771 - syst_JES_Zjet_Stat13: 0.039938294242493635 - syst_JES_Zjet_Stat2: 2.4395935624607638e-11 - syst_JES_Zjet_Stat3: 0.0021980355957081314 - syst_JES_Zjet_Stat4: 0.0021857846989124983 - syst_JES_Zjet_Stat5: 0.0021292282052424536 - syst_JES_Zjet_Stat6: 0.00180145295525584 - syst_JES_Zjet_Stat7: 0.001833102493042874 - syst_JES_Zjet_Stat8: 0.0024205083660256165 - syst_JES_Zjet_Stat9: 0.005281400950505462 - syst_JES_Zjet_Veto: 0.026734552549088977 - syst_JES_Zjet_dPhi: 0.021775841545161923 + syst_JES_Zjet_MC: 3.43156681e-01 + syst_JES_Zjet_MuScale: 2.17111791e-02 + syst_JES_Zjet_MuSmearID: 3.31283444e-03 + syst_JES_Zjet_MuSmearMS: 6.49061153e-02 + syst_JES_Zjet_OOC: 1.25587542e-01 + syst_JES_Zjet_Stat1: 1.94994635e-03 + syst_JES_Zjet_Stat10: 1.42953935e-02 + syst_JES_Zjet_Stat11: 1.72324432e-02 + syst_JES_Zjet_Stat12: 1.15599179e-01 + syst_JES_Zjet_Stat13: 3.99382942e-02 + syst_JES_Zjet_Stat2: 2.43959356e-11 + syst_JES_Zjet_Stat3: 2.19803560e-03 + syst_JES_Zjet_Stat4: 2.18578470e-03 + syst_JES_Zjet_Stat5: 2.12922821e-03 + syst_JES_Zjet_Stat6: 1.80145296e-03 + syst_JES_Zjet_Stat7: 1.83310249e-03 + syst_JES_Zjet_Stat8: 2.42050837e-03 + syst_JES_Zjet_Stat9: 5.28140095e-03 + syst_JES_Zjet_Veto: 2.67345525e-02 + syst_JES_Zjet_dPhi: 2.17758415e-02 syst_PRW: 0.0285 - syst_Unfolding_bias: 1.477e-06 - syst_cleaning: 0.09331423725777326 + syst_Unfolding_bias: 1.47700000e-06 + syst_cleaning: 9.33142373e-02 syst_lumi: 0.39546 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.05523609055680896 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 0.2077141485311003 - syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.01196695788410739 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 5.52360906e-02 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 2.07714149e-01 + syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.19669579e-02 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 0.2892381847197911 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.03224163767552759 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.1098520395805194 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 2.89238185e-01 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 3.22416377e-02 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.09852040e-01 - stat: 0.07817 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.11776127419487274 - syst_JER_NP1: 0.005767579279905912 - syst_JER_NP2: 0.04884707872534447 - syst_JER_NP3: 0.014463108612950398 - syst_JER_NP4: 0.0011447031536603715 - syst_JER_NP5: 0.020773078731858692 - syst_JER_NP6: 0.0022490799785690146 - syst_JER_NP7: 0.002609196571743877 - syst_JER_NP8: 0.017826954310818214 - syst_JES_EtaIntercalibration_Modelling: 0.3051985706060892 - syst_JES_EtaIntercalibration_NonClosure: 0.00035771564125713034 - syst_JES_EtaIntercalibration_Stat0: 4.936344801571301e-13 + syst_JER_NP0: 1.17761274e-01 + syst_JER_NP1: 5.76757928e-03 + syst_JER_NP2: 4.88470787e-02 + syst_JER_NP3: 1.44631086e-02 + syst_JER_NP4: 1.14470315e-03 + syst_JER_NP5: 2.07730787e-02 + syst_JER_NP6: 2.24907998e-03 + syst_JER_NP7: 2.60919657e-03 + syst_JER_NP8: 1.78269543e-02 + syst_JES_EtaIntercalibration_Modelling: 3.05198571e-01 + syst_JES_EtaIntercalibration_NonClosure: 3.57715641e-04 + syst_JES_EtaIntercalibration_Stat0: 4.93634480e-13 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 1.0445636312335919e-07 - syst_JES_EtaIntercalibration_Stat101: 0.000132017524120853 - syst_JES_EtaIntercalibration_Stat102: 4.986412212202276e-05 - syst_JES_EtaIntercalibration_Stat103: 4.115877207534258e-05 - syst_JES_EtaIntercalibration_Stat104: 2.9509609756823285e-05 - syst_JES_EtaIntercalibration_Stat105: 3.8032792101027765e-13 - syst_JES_EtaIntercalibration_Stat106: 4.936344801571301e-13 - syst_JES_EtaIntercalibration_Stat107: 4.936344801571301e-13 - syst_JES_EtaIntercalibration_Stat108: 4.936344801571301e-13 - syst_JES_EtaIntercalibration_Stat109: 4.936344801571301e-13 + syst_JES_EtaIntercalibration_Stat100: 1.04456363e-07 + syst_JES_EtaIntercalibration_Stat101: 1.32017524e-04 + syst_JES_EtaIntercalibration_Stat102: 4.98641221e-05 + syst_JES_EtaIntercalibration_Stat103: 4.11587721e-05 + syst_JES_EtaIntercalibration_Stat104: 2.95096098e-05 + syst_JES_EtaIntercalibration_Stat105: 3.80327921e-13 + syst_JES_EtaIntercalibration_Stat106: 4.93634480e-13 + syst_JES_EtaIntercalibration_Stat107: 4.93634480e-13 + syst_JES_EtaIntercalibration_Stat108: 4.93634480e-13 + syst_JES_EtaIntercalibration_Stat109: 4.93634480e-13 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 1.3567668213440362e-10 - syst_JES_EtaIntercalibration_Stat111: 4.6900770857204466e-05 - syst_JES_EtaIntercalibration_Stat112: 0.0001444236448785309 - syst_JES_EtaIntercalibration_Stat113: 0.0003962124051566281 - syst_JES_EtaIntercalibration_Stat114: 0.00014565561849788012 - syst_JES_EtaIntercalibration_Stat115: 2.3686315003182745e-05 - syst_JES_EtaIntercalibration_Stat116: 2.817016132128994e-09 - syst_JES_EtaIntercalibration_Stat117: 4.936344801571301e-13 - syst_JES_EtaIntercalibration_Stat118: 4.936344801571301e-13 - syst_JES_EtaIntercalibration_Stat119: 4.936344801571301e-13 + syst_JES_EtaIntercalibration_Stat110: 1.35676682e-10 + syst_JES_EtaIntercalibration_Stat111: 4.69007709e-05 + syst_JES_EtaIntercalibration_Stat112: 1.44423645e-04 + syst_JES_EtaIntercalibration_Stat113: 3.96212405e-04 + syst_JES_EtaIntercalibration_Stat114: 1.45655618e-04 + syst_JES_EtaIntercalibration_Stat115: 2.36863150e-05 + syst_JES_EtaIntercalibration_Stat116: 2.81701613e-09 + syst_JES_EtaIntercalibration_Stat117: 4.93634480e-13 + syst_JES_EtaIntercalibration_Stat118: 4.93634480e-13 + syst_JES_EtaIntercalibration_Stat119: 4.93634480e-13 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 5.365027376444597e-07 - syst_JES_EtaIntercalibration_Stat121: 0.00029124444629898097 - syst_JES_EtaIntercalibration_Stat122: 0.00042431239376195467 - syst_JES_EtaIntercalibration_Stat123: 0.0001948501154734069 - syst_JES_EtaIntercalibration_Stat124: 2.8330285914547353e-05 - syst_JES_EtaIntercalibration_Stat125: 4.3994090512249485e-09 - syst_JES_EtaIntercalibration_Stat126: 4.936344801571301e-13 - syst_JES_EtaIntercalibration_Stat127: 4.936344801571301e-13 - syst_JES_EtaIntercalibration_Stat128: 4.936344801571301e-13 - syst_JES_EtaIntercalibration_Stat129: 9.348610533523151e-05 + syst_JES_EtaIntercalibration_Stat120: 5.36502738e-07 + syst_JES_EtaIntercalibration_Stat121: 2.91244446e-04 + syst_JES_EtaIntercalibration_Stat122: 4.24312394e-04 + syst_JES_EtaIntercalibration_Stat123: 1.94850115e-04 + syst_JES_EtaIntercalibration_Stat124: 2.83302859e-05 + syst_JES_EtaIntercalibration_Stat125: 4.39940905e-09 + syst_JES_EtaIntercalibration_Stat126: 4.93634480e-13 + syst_JES_EtaIntercalibration_Stat127: 4.93634480e-13 + syst_JES_EtaIntercalibration_Stat128: 4.93634480e-13 + syst_JES_EtaIntercalibration_Stat129: 9.34861053e-05 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 0.0004636997304290784 - syst_JES_EtaIntercalibration_Stat131: 0.0027672984569792974 - syst_JES_EtaIntercalibration_Stat132: 0.0029350122657324624 - syst_JES_EtaIntercalibration_Stat133: 0.000822618166283726 - syst_JES_EtaIntercalibration_Stat134: 5.979751478536267e-05 - syst_JES_EtaIntercalibration_Stat135: 2.8171806385107787e-09 + syst_JES_EtaIntercalibration_Stat130: 4.63699730e-04 + syst_JES_EtaIntercalibration_Stat131: 2.76729846e-03 + syst_JES_EtaIntercalibration_Stat132: 2.93501227e-03 + syst_JES_EtaIntercalibration_Stat133: 8.22618166e-04 + syst_JES_EtaIntercalibration_Stat134: 5.97975148e-05 + syst_JES_EtaIntercalibration_Stat135: 2.81718064e-09 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 syst_JES_EtaIntercalibration_Stat138: 0.0 - syst_JES_EtaIntercalibration_Stat139: 0.00022571407371938508 - syst_JES_EtaIntercalibration_Stat14: 1.0558586029979912e-07 - syst_JES_EtaIntercalibration_Stat140: 0.0010331387648810785 - syst_JES_EtaIntercalibration_Stat141: 0.0033426562416736783 - syst_JES_EtaIntercalibration_Stat142: 0.0023261655143175003 - syst_JES_EtaIntercalibration_Stat143: 0.0005908152742609148 - syst_JES_EtaIntercalibration_Stat144: 1.2774367773005441e-05 + syst_JES_EtaIntercalibration_Stat139: 2.25714074e-04 + syst_JES_EtaIntercalibration_Stat14: 1.05585860e-07 + syst_JES_EtaIntercalibration_Stat140: 1.03313876e-03 + syst_JES_EtaIntercalibration_Stat141: 3.34265624e-03 + syst_JES_EtaIntercalibration_Stat142: 2.32616551e-03 + syst_JES_EtaIntercalibration_Stat143: 5.90815274e-04 + syst_JES_EtaIntercalibration_Stat144: 1.27743678e-05 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 1.780178089405664e-05 - syst_JES_EtaIntercalibration_Stat148: 0.0008332113582399126 - syst_JES_EtaIntercalibration_Stat149: 0.003725969193377745 - syst_JES_EtaIntercalibration_Stat15: 1.0536974043405729e-07 - syst_JES_EtaIntercalibration_Stat150: 0.0037889639744922354 - syst_JES_EtaIntercalibration_Stat151: 0.0012567371194883996 - syst_JES_EtaIntercalibration_Stat152: 2.3619768732991436e-05 + syst_JES_EtaIntercalibration_Stat147: 1.78017809e-05 + syst_JES_EtaIntercalibration_Stat148: 8.33211358e-04 + syst_JES_EtaIntercalibration_Stat149: 3.72596919e-03 + syst_JES_EtaIntercalibration_Stat15: 1.05369740e-07 + syst_JES_EtaIntercalibration_Stat150: 3.78896397e-03 + syst_JES_EtaIntercalibration_Stat151: 1.25673712e-03 + syst_JES_EtaIntercalibration_Stat152: 2.36197687e-05 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 syst_JES_EtaIntercalibration_Stat156: 0.0 - syst_JES_EtaIntercalibration_Stat157: 1.9386832722237018e-05 - syst_JES_EtaIntercalibration_Stat158: 0.0012744257844221451 - syst_JES_EtaIntercalibration_Stat159: 0.00517235292202688 - syst_JES_EtaIntercalibration_Stat16: 1.0495440246103742e-07 - syst_JES_EtaIntercalibration_Stat160: 0.003916438305399435 - syst_JES_EtaIntercalibration_Stat161: 0.000773635616747316 - syst_JES_EtaIntercalibration_Stat162: 1.2870523843988441e-05 + syst_JES_EtaIntercalibration_Stat157: 1.93868327e-05 + syst_JES_EtaIntercalibration_Stat158: 1.27442578e-03 + syst_JES_EtaIntercalibration_Stat159: 5.17235292e-03 + syst_JES_EtaIntercalibration_Stat16: 1.04954402e-07 + syst_JES_EtaIntercalibration_Stat160: 3.91643831e-03 + syst_JES_EtaIntercalibration_Stat161: 7.73635617e-04 + syst_JES_EtaIntercalibration_Stat162: 1.28705238e-05 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 4.469820357687767e-05 - syst_JES_EtaIntercalibration_Stat166: 0.001574666633767287 - syst_JES_EtaIntercalibration_Stat167: 0.007049705100215185 - syst_JES_EtaIntercalibration_Stat168: 0.007816487906182673 - syst_JES_EtaIntercalibration_Stat169: 0.0023815173209531773 - syst_JES_EtaIntercalibration_Stat17: 4.0945681090928254e-13 - syst_JES_EtaIntercalibration_Stat170: 0.00011864705887947667 + syst_JES_EtaIntercalibration_Stat165: 4.46982036e-05 + syst_JES_EtaIntercalibration_Stat166: 1.57466663e-03 + syst_JES_EtaIntercalibration_Stat167: 7.04970510e-03 + syst_JES_EtaIntercalibration_Stat168: 7.81648791e-03 + syst_JES_EtaIntercalibration_Stat169: 2.38151732e-03 + syst_JES_EtaIntercalibration_Stat17: 4.09456811e-13 + syst_JES_EtaIntercalibration_Stat170: 1.18647059e-04 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 - syst_JES_EtaIntercalibration_Stat175: 0.00013651262652223785 - syst_JES_EtaIntercalibration_Stat176: 0.0028278505971850777 - syst_JES_EtaIntercalibration_Stat177: 0.011128572988034 - syst_JES_EtaIntercalibration_Stat178: 0.0082484711765272 - syst_JES_EtaIntercalibration_Stat179: 0.0015546609759043931 + syst_JES_EtaIntercalibration_Stat175: 1.36512627e-04 + syst_JES_EtaIntercalibration_Stat176: 2.82785060e-03 + syst_JES_EtaIntercalibration_Stat177: 1.11285730e-02 + syst_JES_EtaIntercalibration_Stat178: 8.24847118e-03 + syst_JES_EtaIntercalibration_Stat179: 1.55466098e-03 syst_JES_EtaIntercalibration_Stat18: 0.0 - syst_JES_EtaIntercalibration_Stat180: 4.0349471210498846e-05 + syst_JES_EtaIntercalibration_Stat180: 4.03494712e-05 syst_JES_EtaIntercalibration_Stat181: 0.0 - syst_JES_EtaIntercalibration_Stat182: 0.00013908252046896475 - syst_JES_EtaIntercalibration_Stat183: 0.003972790801187498 - syst_JES_EtaIntercalibration_Stat184: 0.016531361105486746 - syst_JES_EtaIntercalibration_Stat185: 0.022405010042399 - syst_JES_EtaIntercalibration_Stat186: 0.005025189909844204 - syst_JES_EtaIntercalibration_Stat187: 0.00025876384987088126 + syst_JES_EtaIntercalibration_Stat182: 1.39082520e-04 + syst_JES_EtaIntercalibration_Stat183: 3.97279080e-03 + syst_JES_EtaIntercalibration_Stat184: 1.65313611e-02 + syst_JES_EtaIntercalibration_Stat185: 2.24050100e-02 + syst_JES_EtaIntercalibration_Stat186: 5.02518991e-03 + syst_JES_EtaIntercalibration_Stat187: 2.58763850e-04 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 - syst_JES_EtaIntercalibration_Stat192: 6.984491032913085e-05 - syst_JES_EtaIntercalibration_Stat193: 0.008475307251067656 - syst_JES_EtaIntercalibration_Stat194: 0.026664860772184804 - syst_JES_EtaIntercalibration_Stat195: 0.018984741241323252 - syst_JES_EtaIntercalibration_Stat196: 0.003253422313503121 - syst_JES_EtaIntercalibration_Stat197: 0.00010436619411955193 - syst_JES_EtaIntercalibration_Stat198: 0.0019732835598311764 - syst_JES_EtaIntercalibration_Stat199: 0.007035804484918551 + syst_JES_EtaIntercalibration_Stat192: 6.98449103e-05 + syst_JES_EtaIntercalibration_Stat193: 8.47530725e-03 + syst_JES_EtaIntercalibration_Stat194: 2.66648608e-02 + syst_JES_EtaIntercalibration_Stat195: 1.89847412e-02 + syst_JES_EtaIntercalibration_Stat196: 3.25342231e-03 + syst_JES_EtaIntercalibration_Stat197: 1.04366194e-04 + syst_JES_EtaIntercalibration_Stat198: 1.97328356e-03 + syst_JES_EtaIntercalibration_Stat199: 7.03580448e-03 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 0.00891785775845298 - syst_JES_EtaIntercalibration_Stat201: 0.002263899456689718 - syst_JES_EtaIntercalibration_Stat202: 0.0001692824267311879 + syst_JES_EtaIntercalibration_Stat200: 8.91785776e-03 + syst_JES_EtaIntercalibration_Stat201: 2.26389946e-03 + syst_JES_EtaIntercalibration_Stat202: 1.69282427e-04 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 - syst_JES_EtaIntercalibration_Stat207: 0.00016248316466637398 - syst_JES_EtaIntercalibration_Stat208: 0.003742831281262889 - syst_JES_EtaIntercalibration_Stat209: 0.011556830307225248 + syst_JES_EtaIntercalibration_Stat207: 1.62483165e-04 + syst_JES_EtaIntercalibration_Stat208: 3.74283128e-03 + syst_JES_EtaIntercalibration_Stat209: 1.15568303e-02 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 0.00683096991649063 - syst_JES_EtaIntercalibration_Stat211: 0.001904610030294916 - syst_JES_EtaIntercalibration_Stat212: 0.0007872754965702921 - syst_JES_EtaIntercalibration_Stat213: 0.0012121950039081996 - syst_JES_EtaIntercalibration_Stat214: 0.0003917860289430954 - syst_JES_EtaIntercalibration_Stat215: 3.750850912459731e-05 + syst_JES_EtaIntercalibration_Stat210: 6.83096992e-03 + syst_JES_EtaIntercalibration_Stat211: 1.90461003e-03 + syst_JES_EtaIntercalibration_Stat212: 7.87275497e-04 + syst_JES_EtaIntercalibration_Stat213: 1.21219500e-03 + syst_JES_EtaIntercalibration_Stat214: 3.91786029e-04 + syst_JES_EtaIntercalibration_Stat215: 3.75085091e-05 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 syst_JES_EtaIntercalibration_Stat219: 0.0 - syst_JES_EtaIntercalibration_Stat22: 4.936344801571301e-13 - syst_JES_EtaIntercalibration_Stat220: 1.1783180006429285e-05 - syst_JES_EtaIntercalibration_Stat221: 0.0004526683885583353 - syst_JES_EtaIntercalibration_Stat222: 0.0005518521065466726 - syst_JES_EtaIntercalibration_Stat223: 0.0007956926165297752 - syst_JES_EtaIntercalibration_Stat224: 0.00016173235815692544 - syst_JES_EtaIntercalibration_Stat225: 0.0002564341387179172 - syst_JES_EtaIntercalibration_Stat226: 2.6655586187514244e-05 - syst_JES_EtaIntercalibration_Stat227: 3.6931186319965403e-07 + syst_JES_EtaIntercalibration_Stat22: 4.93634480e-13 + syst_JES_EtaIntercalibration_Stat220: 1.17831800e-05 + syst_JES_EtaIntercalibration_Stat221: 4.52668389e-04 + syst_JES_EtaIntercalibration_Stat222: 5.51852107e-04 + syst_JES_EtaIntercalibration_Stat223: 7.95692617e-04 + syst_JES_EtaIntercalibration_Stat224: 1.61732358e-04 + syst_JES_EtaIntercalibration_Stat225: 2.56434139e-04 + syst_JES_EtaIntercalibration_Stat226: 2.66555862e-05 + syst_JES_EtaIntercalibration_Stat227: 3.69311863e-07 syst_JES_EtaIntercalibration_Stat228: 0.0 syst_JES_EtaIntercalibration_Stat229: 0.0 - syst_JES_EtaIntercalibration_Stat23: 4.936344801571301e-13 + syst_JES_EtaIntercalibration_Stat23: 4.93634480e-13 syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 - syst_JES_EtaIntercalibration_Stat232: 1.6803368434632389e-06 - syst_JES_EtaIntercalibration_Stat233: 7.970031946566364e-05 - syst_JES_EtaIntercalibration_Stat234: 0.000329426835579617 - syst_JES_EtaIntercalibration_Stat235: 0.0005223896725625422 - syst_JES_EtaIntercalibration_Stat236: 7.405388899308395e-07 - syst_JES_EtaIntercalibration_Stat237: 3.9804493926565627e-07 - syst_JES_EtaIntercalibration_Stat238: 1.7909405350262192e-13 + syst_JES_EtaIntercalibration_Stat232: 1.68033684e-06 + syst_JES_EtaIntercalibration_Stat233: 7.97003195e-05 + syst_JES_EtaIntercalibration_Stat234: 3.29426836e-04 + syst_JES_EtaIntercalibration_Stat235: 5.22389673e-04 + syst_JES_EtaIntercalibration_Stat236: 7.40538890e-07 + syst_JES_EtaIntercalibration_Stat237: 3.98044939e-07 + syst_JES_EtaIntercalibration_Stat238: 1.79094054e-13 syst_JES_EtaIntercalibration_Stat239: 0.0 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 - syst_JES_EtaIntercalibration_Stat243: 1.0786164390899112e-10 - syst_JES_EtaIntercalibration_Stat244: 5.7894707011954036e-08 - syst_JES_EtaIntercalibration_Stat245: 1.6828572154226274e-06 - syst_JES_EtaIntercalibration_Stat25: 4.0850418296511974e-13 - syst_JES_EtaIntercalibration_Stat26: 9.682476168315625e-11 - syst_JES_EtaIntercalibration_Stat27: 9.106421727962087e-08 - syst_JES_EtaIntercalibration_Stat28: 2.2912801446080308e-05 - syst_JES_EtaIntercalibration_Stat29: 9.987523701473754e-08 + syst_JES_EtaIntercalibration_Stat243: 1.07861644e-10 + syst_JES_EtaIntercalibration_Stat244: 5.78947070e-08 + syst_JES_EtaIntercalibration_Stat245: 1.68285722e-06 + syst_JES_EtaIntercalibration_Stat25: 4.08504183e-13 + syst_JES_EtaIntercalibration_Stat26: 9.68247617e-11 + syst_JES_EtaIntercalibration_Stat27: 9.10642173e-08 + syst_JES_EtaIntercalibration_Stat28: 2.29128014e-05 + syst_JES_EtaIntercalibration_Stat29: 9.98752370e-08 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 5.5016364364682436e-12 + syst_JES_EtaIntercalibration_Stat30: 5.50163644e-12 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 6.835818195907495e-13 - syst_JES_EtaIntercalibration_Stat36: 1.0263804534707147e-07 - syst_JES_EtaIntercalibration_Stat37: 1.56038896009281e-05 - syst_JES_EtaIntercalibration_Stat38: 1.5586484307523714e-05 - syst_JES_EtaIntercalibration_Stat39: 4.451684909680266e-09 - syst_JES_EtaIntercalibration_Stat4: 5.60145231167775e-13 - syst_JES_EtaIntercalibration_Stat40: 2.2014365764200434e-13 + syst_JES_EtaIntercalibration_Stat35: 6.83581820e-13 + syst_JES_EtaIntercalibration_Stat36: 1.02638045e-07 + syst_JES_EtaIntercalibration_Stat37: 1.56038896e-05 + syst_JES_EtaIntercalibration_Stat38: 1.55864843e-05 + syst_JES_EtaIntercalibration_Stat39: 4.45168491e-09 + syst_JES_EtaIntercalibration_Stat4: 5.60145231e-13 + syst_JES_EtaIntercalibration_Stat40: 2.20143658e-13 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 - syst_JES_EtaIntercalibration_Stat44: 4.936344801571301e-13 + syst_JES_EtaIntercalibration_Stat44: 4.93634480e-13 syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 - syst_JES_EtaIntercalibration_Stat47: 4.0867738804587664e-13 - syst_JES_EtaIntercalibration_Stat48: 4.970384391573754e-09 - syst_JES_EtaIntercalibration_Stat49: 2.362243848547393e-07 - syst_JES_EtaIntercalibration_Stat5: 8.938620714629299e-10 - syst_JES_EtaIntercalibration_Stat50: 2.4474440832216678e-05 - syst_JES_EtaIntercalibration_Stat51: 2.2430026677425064e-05 - syst_JES_EtaIntercalibration_Stat52: 7.730730346319163e-10 + syst_JES_EtaIntercalibration_Stat47: 4.08677388e-13 + syst_JES_EtaIntercalibration_Stat48: 4.97038439e-09 + syst_JES_EtaIntercalibration_Stat49: 2.36224385e-07 + syst_JES_EtaIntercalibration_Stat5: 8.93862071e-10 + syst_JES_EtaIntercalibration_Stat50: 2.44744408e-05 + syst_JES_EtaIntercalibration_Stat51: 2.24300267e-05 + syst_JES_EtaIntercalibration_Stat52: 7.73073035e-10 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 syst_JES_EtaIntercalibration_Stat56: 0.0 - syst_JES_EtaIntercalibration_Stat57: 1.055773289113911e-07 - syst_JES_EtaIntercalibration_Stat58: 9.490306407461247e-08 - syst_JES_EtaIntercalibration_Stat59: 8.085325658252734e-05 - syst_JES_EtaIntercalibration_Stat6: 6.7799299465407466e-09 - syst_JES_EtaIntercalibration_Stat60: 1.4735885407738486e-05 - syst_JES_EtaIntercalibration_Stat61: 1.570860267237987e-07 - syst_JES_EtaIntercalibration_Stat62: 4.176840522452347e-13 + syst_JES_EtaIntercalibration_Stat57: 1.05577329e-07 + syst_JES_EtaIntercalibration_Stat58: 9.49030641e-08 + syst_JES_EtaIntercalibration_Stat59: 8.08532566e-05 + syst_JES_EtaIntercalibration_Stat6: 6.77992995e-09 + syst_JES_EtaIntercalibration_Stat60: 1.47358854e-05 + syst_JES_EtaIntercalibration_Stat61: 1.57086027e-07 + syst_JES_EtaIntercalibration_Stat62: 4.17684052e-13 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 - syst_JES_EtaIntercalibration_Stat69: 5.91336655383378e-13 - syst_JES_EtaIntercalibration_Stat7: 7.740326128505698e-10 - syst_JES_EtaIntercalibration_Stat70: 1.1272850970362378e-07 - syst_JES_EtaIntercalibration_Stat71: 2.7694396353188493e-05 - syst_JES_EtaIntercalibration_Stat72: 2.021504667320855e-05 - syst_JES_EtaIntercalibration_Stat73: 2.422258037451832e-05 - syst_JES_EtaIntercalibration_Stat74: 8.697188669334476e-09 + syst_JES_EtaIntercalibration_Stat69: 5.91336655e-13 + syst_JES_EtaIntercalibration_Stat7: 7.74032613e-10 + syst_JES_EtaIntercalibration_Stat70: 1.12728510e-07 + syst_JES_EtaIntercalibration_Stat71: 2.76943964e-05 + syst_JES_EtaIntercalibration_Stat72: 2.02150467e-05 + syst_JES_EtaIntercalibration_Stat73: 2.42225804e-05 + syst_JES_EtaIntercalibration_Stat74: 8.69718867e-09 syst_JES_EtaIntercalibration_Stat75: 0.0 syst_JES_EtaIntercalibration_Stat76: 0.0 syst_JES_EtaIntercalibration_Stat77: 0.0 syst_JES_EtaIntercalibration_Stat78: 0.0 - syst_JES_EtaIntercalibration_Stat79: 1.038893272485729e-07 + syst_JES_EtaIntercalibration_Stat79: 1.03889327e-07 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 3.786530436956766e-05 - syst_JES_EtaIntercalibration_Stat81: 4.962917967284973e-05 - syst_JES_EtaIntercalibration_Stat82: 8.271994000844053e-05 - syst_JES_EtaIntercalibration_Stat83: 1.3166454648081997e-05 - syst_JES_EtaIntercalibration_Stat84: 2.3911373862662097e-13 - syst_JES_EtaIntercalibration_Stat85: 4.936344801571301e-13 - syst_JES_EtaIntercalibration_Stat86: 4.936344801571301e-13 - syst_JES_EtaIntercalibration_Stat87: 4.936344801571301e-13 - syst_JES_EtaIntercalibration_Stat88: 4.936344801571301e-13 - syst_JES_EtaIntercalibration_Stat89: 4.936344801571301e-13 + syst_JES_EtaIntercalibration_Stat80: 3.78653044e-05 + syst_JES_EtaIntercalibration_Stat81: 4.96291797e-05 + syst_JES_EtaIntercalibration_Stat82: 8.27199400e-05 + syst_JES_EtaIntercalibration_Stat83: 1.31664546e-05 + syst_JES_EtaIntercalibration_Stat84: 2.39113739e-13 + syst_JES_EtaIntercalibration_Stat85: 4.93634480e-13 + syst_JES_EtaIntercalibration_Stat86: 4.93634480e-13 + syst_JES_EtaIntercalibration_Stat87: 4.93634480e-13 + syst_JES_EtaIntercalibration_Stat88: 4.93634480e-13 + syst_JES_EtaIntercalibration_Stat89: 4.93634480e-13 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 7.179906213175769e-06 - syst_JES_EtaIntercalibration_Stat92: 5.043002553043177e-05 - syst_JES_EtaIntercalibration_Stat93: 2.0325803182162325e-06 - syst_JES_EtaIntercalibration_Stat94: 2.5060115736963386e-05 - syst_JES_EtaIntercalibration_Stat95: 9.049374020754143e-08 - syst_JES_EtaIntercalibration_Stat96: 2.817016132128994e-09 - syst_JES_EtaIntercalibration_Stat97: 4.936344801571301e-13 - syst_JES_EtaIntercalibration_Stat98: 4.936344801571301e-13 - syst_JES_EtaIntercalibration_Stat99: 4.936344801571301e-13 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.024402481431198754 - syst_JES_Flavour_Comp: 0.08440684850768924 - syst_JES_Gjet_Generator: 0.23546460455873192 - syst_JES_Gjet_OOC: 0.16965178307344725 - syst_JES_Gjet_Purity: 0.05921016889014927 - syst_JES_Gjet_Stat1: 1.1387368034361584e-12 - syst_JES_Gjet_Stat10: 0.009931510408794825 - syst_JES_Gjet_Stat11: 0.0187012352533195 - syst_JES_Gjet_Stat12: 0.034723942748484074 - syst_JES_Gjet_Stat13: 0.017907346955928452 - syst_JES_Gjet_Stat14: 0.007601972572957626 - syst_JES_Gjet_Stat15: 0.0009531241419668269 - syst_JES_Gjet_Stat2: 1.2082786433600488e-08 - syst_JES_Gjet_Stat3: 9.89434023823721e-16 - syst_JES_Gjet_Stat4: 0.0005023930934039599 - syst_JES_Gjet_Stat5: 0.0005927765076239542 - syst_JES_Gjet_Stat6: 0.0015923567439490435 - syst_JES_Gjet_Stat7: 0.0024424550661168777 - syst_JES_Gjet_Stat8: 0.001353682336259139 - syst_JES_Gjet_Stat9: 0.0042063211955341686 - syst_JES_Gjet_Veto: 0.09229000433416396 - syst_JES_Gjet_dPhi: 0.012219369245177919 - syst_JES_LArESZee: 0.32582969477934326 - syst_JES_LArEsmear: 0.025671406272349005 - syst_JES_LAr_JVT: 0.03329761365323348 - syst_JES_MJB_Alpha: 0.002361199667541904 - syst_JES_MJB_Asym: 0.009027779793504047 - syst_JES_MJB_Beta: 0.0011604708397887473 - syst_JES_MJB_Stat1: 0.0016852854357645177 - syst_JES_MJB_Stat10: 6.8245382994016535e-06 - syst_JES_MJB_Stat11: 2.9433917877931233e-15 - syst_JES_MJB_Stat12: 2.0308295718745085e-06 - syst_JES_MJB_Stat13: 6.373946971853469e-07 - syst_JES_MJB_Stat14: 2.1780538905178632e-08 - syst_JES_MJB_Stat15: 1.1382171957167619e-11 - syst_JES_MJB_Stat16: 2.2533981006471093e-17 - syst_JES_MJB_Stat2: 0.0029245677885800492 - syst_JES_MJB_Stat3: 0.002971333160384409 - syst_JES_MJB_Stat4: 0.0008726071968532004 + syst_JES_EtaIntercalibration_Stat91: 7.17990621e-06 + syst_JES_EtaIntercalibration_Stat92: 5.04300255e-05 + syst_JES_EtaIntercalibration_Stat93: 2.03258032e-06 + syst_JES_EtaIntercalibration_Stat94: 2.50601157e-05 + syst_JES_EtaIntercalibration_Stat95: 9.04937402e-08 + syst_JES_EtaIntercalibration_Stat96: 2.81701613e-09 + syst_JES_EtaIntercalibration_Stat97: 4.93634480e-13 + syst_JES_EtaIntercalibration_Stat98: 4.93634480e-13 + syst_JES_EtaIntercalibration_Stat99: 4.93634480e-13 + syst_JES_EtaIntercalibration_TotalStat_MJB: 2.44024814e-02 + syst_JES_Flavour_Comp: 8.44068485e-02 + syst_JES_Gjet_Generator: 2.35464605e-01 + syst_JES_Gjet_OOC: 1.69651783e-01 + syst_JES_Gjet_Purity: 5.92101689e-02 + syst_JES_Gjet_Stat1: 1.13873680e-12 + syst_JES_Gjet_Stat10: 9.93151041e-03 + syst_JES_Gjet_Stat11: 1.87012353e-02 + syst_JES_Gjet_Stat12: 3.47239427e-02 + syst_JES_Gjet_Stat13: 1.79073470e-02 + syst_JES_Gjet_Stat14: 7.60197257e-03 + syst_JES_Gjet_Stat15: 9.53124142e-04 + syst_JES_Gjet_Stat2: 1.20827864e-08 + syst_JES_Gjet_Stat3: 9.89434024e-16 + syst_JES_Gjet_Stat4: 5.02393093e-04 + syst_JES_Gjet_Stat5: 5.92776508e-04 + syst_JES_Gjet_Stat6: 1.59235674e-03 + syst_JES_Gjet_Stat7: 2.44245507e-03 + syst_JES_Gjet_Stat8: 1.35368234e-03 + syst_JES_Gjet_Stat9: 4.20632120e-03 + syst_JES_Gjet_Veto: 9.22900043e-02 + syst_JES_Gjet_dPhi: 1.22193692e-02 + syst_JES_LArESZee: 3.25829695e-01 + syst_JES_LArEsmear: 2.56714063e-02 + syst_JES_LAr_JVT: 3.32976137e-02 + syst_JES_MJB_Alpha: 2.36119967e-03 + syst_JES_MJB_Asym: 9.02777979e-03 + syst_JES_MJB_Beta: 1.16047084e-03 + syst_JES_MJB_Stat1: 1.68528544e-03 + syst_JES_MJB_Stat10: 6.82453830e-06 + syst_JES_MJB_Stat11: 2.94339179e-15 + syst_JES_MJB_Stat12: 2.03082957e-06 + syst_JES_MJB_Stat13: 6.37394697e-07 + syst_JES_MJB_Stat14: 2.17805389e-08 + syst_JES_MJB_Stat15: 1.13821720e-11 + syst_JES_MJB_Stat16: 2.25339810e-17 + syst_JES_MJB_Stat2: 2.92456779e-03 + syst_JES_MJB_Stat3: 2.97133316e-03 + syst_JES_MJB_Stat4: 8.72607197e-04 syst_JES_MJB_Stat5: 0.0 - syst_JES_MJB_Stat6: 3.0752562088385417e-08 - syst_JES_MJB_Stat7: 1.3198227153674846e-19 - syst_JES_MJB_Stat8: 4.573429035305271e-15 - syst_JES_MJB_Stat9: 5.209141115304725e-06 - syst_JES_MJB_Threshold: 0.011294045864967964 - syst_JES_Pileup_MuOffset: 0.0201893313410821 - syst_JES_Pileup_NPVOffset: 0.02392083349300354 - syst_JES_Pileup_Pt_term: 0.050860751813161395 - syst_JES_PunchThrough_MC15: 0.007921804213687687 + syst_JES_MJB_Stat6: 3.07525621e-08 + syst_JES_MJB_Stat7: 1.31982272e-19 + syst_JES_MJB_Stat8: 4.57342904e-15 + syst_JES_MJB_Stat9: 5.20914112e-06 + syst_JES_MJB_Threshold: 1.12940459e-02 + syst_JES_Pileup_MuOffset: 2.01893313e-02 + syst_JES_Pileup_NPVOffset: 2.39208335e-02 + syst_JES_Pileup_Pt_term: 5.08607518e-02 + syst_JES_PunchThrough_MC15: 7.92180421e-03 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.20647674808558955 - syst_JES_Zjet_MuScale: 0.012783598505506966 - syst_JES_Zjet_MuSmearID: 0.0019718034891946005 - syst_JES_Zjet_MuSmearMS: 0.045250019889498394 - syst_JES_Zjet_OOC: 0.07914220286926565 - syst_JES_Zjet_Stat1: 0.0014936387615484541 - syst_JES_Zjet_Stat10: 0.007432016280929422 - syst_JES_Zjet_Stat11: 0.007840722925853203 - syst_JES_Zjet_Stat12: 0.06751017923246834 - syst_JES_Zjet_Stat13: 0.03544149263222417 - syst_JES_Zjet_Stat2: 2.5010813661294586e-12 - syst_JES_Zjet_Stat3: 0.0015732977809365905 - syst_JES_Zjet_Stat4: 0.0015694539711313615 - syst_JES_Zjet_Stat5: 0.0016842607243238797 - syst_JES_Zjet_Stat6: 0.0012167510016433108 - syst_JES_Zjet_Stat7: 0.0011090214459152717 - syst_JES_Zjet_Stat8: 0.0014285340842976062 - syst_JES_Zjet_Stat9: 0.00318459805156004 - syst_JES_Zjet_Veto: 0.016636444181374818 - syst_JES_Zjet_dPhi: 0.0135265029848812 + syst_JES_Zjet_MC: 2.06476748e-01 + syst_JES_Zjet_MuScale: 1.27835985e-02 + syst_JES_Zjet_MuSmearID: 1.97180349e-03 + syst_JES_Zjet_MuSmearMS: 4.52500199e-02 + syst_JES_Zjet_OOC: 7.91422029e-02 + syst_JES_Zjet_Stat1: 1.49363876e-03 + syst_JES_Zjet_Stat10: 7.43201628e-03 + syst_JES_Zjet_Stat11: 7.84072293e-03 + syst_JES_Zjet_Stat12: 6.75101792e-02 + syst_JES_Zjet_Stat13: 3.54414926e-02 + syst_JES_Zjet_Stat2: 2.50108137e-12 + syst_JES_Zjet_Stat3: 1.57329778e-03 + syst_JES_Zjet_Stat4: 1.56945397e-03 + syst_JES_Zjet_Stat5: 1.68426072e-03 + syst_JES_Zjet_Stat6: 1.21675100e-03 + syst_JES_Zjet_Stat7: 1.10902145e-03 + syst_JES_Zjet_Stat8: 1.42853408e-03 + syst_JES_Zjet_Stat9: 3.18459805e-03 + syst_JES_Zjet_Veto: 1.66364442e-02 + syst_JES_Zjet_dPhi: 1.35265030e-02 syst_PRW: 0.01746 - syst_Unfolding_bias: 1.623e-07 - syst_cleaning: 0.06094220766431095 + syst_Unfolding_bias: 1.62300000e-07 + syst_cleaning: 6.09422077e-02 syst_lumi: 0.2422 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.03440419741833836 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 0.10801788833336819 - syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.009735603114342737 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 3.44041974e-02 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 1.08017888e-01 + syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 9.73560311e-03 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 0.15037528886090293 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.026581860356265512 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.06944342787478164 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 1.50375289e-01 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 2.65818604e-02 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 6.94434279e-02 - stat: 0.05673 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.06829486272773377 - syst_JER_NP1: 0.003466737767700349 - syst_JER_NP2: 0.029862506174130797 - syst_JER_NP3: 0.006049591556460651 - syst_JER_NP4: 0.00023455052227611858 - syst_JER_NP5: 0.01148213885780868 - syst_JER_NP6: 0.00046309164049894056 - syst_JER_NP7: 0.0005449555096519348 - syst_JER_NP8: 0.010829877238454739 - syst_JES_EtaIntercalibration_Modelling: 0.21771460102620588 - syst_JES_EtaIntercalibration_NonClosure: 0.0008162608502647913 - syst_JES_EtaIntercalibration_Stat0: 5.953058625614231e-14 + syst_JER_NP0: 6.82948627e-02 + syst_JER_NP1: 3.46673777e-03 + syst_JER_NP2: 2.98625062e-02 + syst_JER_NP3: 6.04959156e-03 + syst_JER_NP4: 2.34550522e-04 + syst_JER_NP5: 1.14821389e-02 + syst_JER_NP6: 4.63091640e-04 + syst_JER_NP7: 5.44955510e-04 + syst_JER_NP8: 1.08298772e-02 + syst_JES_EtaIntercalibration_Modelling: 2.17714601e-01 + syst_JES_EtaIntercalibration_NonClosure: 8.16260850e-04 + syst_JES_EtaIntercalibration_Stat0: 5.95305863e-14 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 1.3183387074251708e-08 - syst_JES_EtaIntercalibration_Stat101: 5.185537677039866e-05 - syst_JES_EtaIntercalibration_Stat102: 3.30438538158006e-05 - syst_JES_EtaIntercalibration_Stat103: 2.2476678847196266e-05 - syst_JES_EtaIntercalibration_Stat104: 8.105393649138825e-06 - syst_JES_EtaIntercalibration_Stat105: 4.9063757245037805e-14 - syst_JES_EtaIntercalibration_Stat106: 5.953058625614231e-14 - syst_JES_EtaIntercalibration_Stat107: 5.953058625614231e-14 - syst_JES_EtaIntercalibration_Stat108: 5.953058625614231e-14 - syst_JES_EtaIntercalibration_Stat109: 5.953058625614231e-14 + syst_JES_EtaIntercalibration_Stat100: 1.31833871e-08 + syst_JES_EtaIntercalibration_Stat101: 5.18553768e-05 + syst_JES_EtaIntercalibration_Stat102: 3.30438538e-05 + syst_JES_EtaIntercalibration_Stat103: 2.24766788e-05 + syst_JES_EtaIntercalibration_Stat104: 8.10539365e-06 + syst_JES_EtaIntercalibration_Stat105: 4.90637572e-14 + syst_JES_EtaIntercalibration_Stat106: 5.95305863e-14 + syst_JES_EtaIntercalibration_Stat107: 5.95305863e-14 + syst_JES_EtaIntercalibration_Stat108: 5.95305863e-14 + syst_JES_EtaIntercalibration_Stat109: 5.95305863e-14 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 1.4997920755891465e-11 - syst_JES_EtaIntercalibration_Stat111: 1.0581638436461528e-05 - syst_JES_EtaIntercalibration_Stat112: 4.631323813986666e-05 - syst_JES_EtaIntercalibration_Stat113: 0.00011138508607529108 - syst_JES_EtaIntercalibration_Stat114: 5.3881742926059845e-05 - syst_JES_EtaIntercalibration_Stat115: 7.624988641871869e-06 - syst_JES_EtaIntercalibration_Stat116: 3.2534590551425527e-10 - syst_JES_EtaIntercalibration_Stat117: 5.953058625614231e-14 - syst_JES_EtaIntercalibration_Stat118: 5.953058625614231e-14 - syst_JES_EtaIntercalibration_Stat119: 5.953058625614231e-14 + syst_JES_EtaIntercalibration_Stat110: 1.49979208e-11 + syst_JES_EtaIntercalibration_Stat111: 1.05816384e-05 + syst_JES_EtaIntercalibration_Stat112: 4.63132381e-05 + syst_JES_EtaIntercalibration_Stat113: 1.11385086e-04 + syst_JES_EtaIntercalibration_Stat114: 5.38817429e-05 + syst_JES_EtaIntercalibration_Stat115: 7.62498864e-06 + syst_JES_EtaIntercalibration_Stat116: 3.25345906e-10 + syst_JES_EtaIntercalibration_Stat117: 5.95305863e-14 + syst_JES_EtaIntercalibration_Stat118: 5.95305863e-14 + syst_JES_EtaIntercalibration_Stat119: 5.95305863e-14 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 8.743392476607693e-08 - syst_JES_EtaIntercalibration_Stat121: 9.626653974772337e-05 - syst_JES_EtaIntercalibration_Stat122: 0.00011770069530380864 - syst_JES_EtaIntercalibration_Stat123: 1.826202069870692e-05 - syst_JES_EtaIntercalibration_Stat124: 1.6626541281938345e-05 - syst_JES_EtaIntercalibration_Stat125: 4.856670464423132e-10 - syst_JES_EtaIntercalibration_Stat126: 5.953058625614231e-14 - syst_JES_EtaIntercalibration_Stat127: 5.953058625614231e-14 - syst_JES_EtaIntercalibration_Stat128: 5.953058625614231e-14 - syst_JES_EtaIntercalibration_Stat129: 2.6073816809205362e-05 + syst_JES_EtaIntercalibration_Stat120: 8.74339248e-08 + syst_JES_EtaIntercalibration_Stat121: 9.62665397e-05 + syst_JES_EtaIntercalibration_Stat122: 1.17700695e-04 + syst_JES_EtaIntercalibration_Stat123: 1.82620207e-05 + syst_JES_EtaIntercalibration_Stat124: 1.66265413e-05 + syst_JES_EtaIntercalibration_Stat125: 4.85667046e-10 + syst_JES_EtaIntercalibration_Stat126: 5.95305863e-14 + syst_JES_EtaIntercalibration_Stat127: 5.95305863e-14 + syst_JES_EtaIntercalibration_Stat128: 5.95305863e-14 + syst_JES_EtaIntercalibration_Stat129: 2.60738168e-05 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 0.00014720663945624193 - syst_JES_EtaIntercalibration_Stat131: 0.0008984004786285457 - syst_JES_EtaIntercalibration_Stat132: 0.0010358306847646484 - syst_JES_EtaIntercalibration_Stat133: 0.0003136488163535772 - syst_JES_EtaIntercalibration_Stat134: 9.977046055822335e-06 - syst_JES_EtaIntercalibration_Stat135: 3.253657442018136e-10 + syst_JES_EtaIntercalibration_Stat130: 1.47206639e-04 + syst_JES_EtaIntercalibration_Stat131: 8.98400479e-04 + syst_JES_EtaIntercalibration_Stat132: 1.03583068e-03 + syst_JES_EtaIntercalibration_Stat133: 3.13648816e-04 + syst_JES_EtaIntercalibration_Stat134: 9.97704606e-06 + syst_JES_EtaIntercalibration_Stat135: 3.25365744e-10 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 syst_JES_EtaIntercalibration_Stat138: 0.0 - syst_JES_EtaIntercalibration_Stat139: 8.976456539191844e-05 - syst_JES_EtaIntercalibration_Stat14: 1.332813652124812e-08 - syst_JES_EtaIntercalibration_Stat140: 0.00032452415934718944 - syst_JES_EtaIntercalibration_Stat141: 0.0011730216792540536 - syst_JES_EtaIntercalibration_Stat142: 0.0007523719293009276 - syst_JES_EtaIntercalibration_Stat143: 0.0001683957252893899 - syst_JES_EtaIntercalibration_Stat144: 2.1732656602449687e-06 + syst_JES_EtaIntercalibration_Stat139: 8.97645654e-05 + syst_JES_EtaIntercalibration_Stat14: 1.33281365e-08 + syst_JES_EtaIntercalibration_Stat140: 3.24524159e-04 + syst_JES_EtaIntercalibration_Stat141: 1.17302168e-03 + syst_JES_EtaIntercalibration_Stat142: 7.52371929e-04 + syst_JES_EtaIntercalibration_Stat143: 1.68395725e-04 + syst_JES_EtaIntercalibration_Stat144: 2.17326566e-06 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 3.3313453543576056e-06 - syst_JES_EtaIntercalibration_Stat148: 0.00024074004652321557 - syst_JES_EtaIntercalibration_Stat149: 0.0012950370757240889 - syst_JES_EtaIntercalibration_Stat15: 1.3302201962386204e-08 - syst_JES_EtaIntercalibration_Stat150: 0.0012845433692561727 - syst_JES_EtaIntercalibration_Stat151: 0.00042603752792447756 - syst_JES_EtaIntercalibration_Stat152: 5.983341878081178e-06 + syst_JES_EtaIntercalibration_Stat147: 3.33134535e-06 + syst_JES_EtaIntercalibration_Stat148: 2.40740047e-04 + syst_JES_EtaIntercalibration_Stat149: 1.29503708e-03 + syst_JES_EtaIntercalibration_Stat15: 1.33022020e-08 + syst_JES_EtaIntercalibration_Stat150: 1.28454337e-03 + syst_JES_EtaIntercalibration_Stat151: 4.26037528e-04 + syst_JES_EtaIntercalibration_Stat152: 5.98334188e-06 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 syst_JES_EtaIntercalibration_Stat156: 0.0 - syst_JES_EtaIntercalibration_Stat157: 6.3913419561153196e-06 - syst_JES_EtaIntercalibration_Stat158: 0.0004809702797470962 - syst_JES_EtaIntercalibration_Stat159: 0.0019426746382243216 - syst_JES_EtaIntercalibration_Stat16: 1.325028414552012e-08 - syst_JES_EtaIntercalibration_Stat160: 0.0012626453500488568 - syst_JES_EtaIntercalibration_Stat161: 0.00022200492674713323 - syst_JES_EtaIntercalibration_Stat162: 2.1824811096719714e-06 + syst_JES_EtaIntercalibration_Stat157: 6.39134196e-06 + syst_JES_EtaIntercalibration_Stat158: 4.80970280e-04 + syst_JES_EtaIntercalibration_Stat159: 1.94267464e-03 + syst_JES_EtaIntercalibration_Stat16: 1.32502841e-08 + syst_JES_EtaIntercalibration_Stat160: 1.26264535e-03 + syst_JES_EtaIntercalibration_Stat161: 2.22004927e-04 + syst_JES_EtaIntercalibration_Stat162: 2.18248111e-06 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 7.827479318401296e-06 - syst_JES_EtaIntercalibration_Stat166: 0.0007710774069443352 - syst_JES_EtaIntercalibration_Stat167: 0.002959972086017029 - syst_JES_EtaIntercalibration_Stat168: 0.0033354402093276983 - syst_JES_EtaIntercalibration_Stat169: 0.0009660533253915128 - syst_JES_EtaIntercalibration_Stat17: 4.9346127507637315e-14 - syst_JES_EtaIntercalibration_Stat170: 2.7510598448597954e-05 + syst_JES_EtaIntercalibration_Stat165: 7.82747932e-06 + syst_JES_EtaIntercalibration_Stat166: 7.71077407e-04 + syst_JES_EtaIntercalibration_Stat167: 2.95997209e-03 + syst_JES_EtaIntercalibration_Stat168: 3.33544021e-03 + syst_JES_EtaIntercalibration_Stat169: 9.66053325e-04 + syst_JES_EtaIntercalibration_Stat17: 4.93461275e-14 + syst_JES_EtaIntercalibration_Stat170: 2.75105984e-05 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 - syst_JES_EtaIntercalibration_Stat175: 7.187811419340382e-05 - syst_JES_EtaIntercalibration_Stat176: 0.001165848729467078 - syst_JES_EtaIntercalibration_Stat177: 0.004699539631708621 - syst_JES_EtaIntercalibration_Stat178: 0.0035554837575216118 - syst_JES_EtaIntercalibration_Stat179: 0.0006032550766466869 + syst_JES_EtaIntercalibration_Stat175: 7.18781142e-05 + syst_JES_EtaIntercalibration_Stat176: 1.16584873e-03 + syst_JES_EtaIntercalibration_Stat177: 4.69953963e-03 + syst_JES_EtaIntercalibration_Stat178: 3.55548376e-03 + syst_JES_EtaIntercalibration_Stat179: 6.03255077e-04 syst_JES_EtaIntercalibration_Stat18: 0.0 - syst_JES_EtaIntercalibration_Stat180: 1.951071100441803e-05 + syst_JES_EtaIntercalibration_Stat180: 1.95107110e-05 syst_JES_EtaIntercalibration_Stat181: 0.0 - syst_JES_EtaIntercalibration_Stat182: 3.893959552948644e-05 - syst_JES_EtaIntercalibration_Stat183: 0.0019791136905190666 - syst_JES_EtaIntercalibration_Stat184: 0.008795628274887474 - syst_JES_EtaIntercalibration_Stat185: 0.012340369564968466 - syst_JES_EtaIntercalibration_Stat186: 0.0028448062653720373 - syst_JES_EtaIntercalibration_Stat187: 8.525582135549456e-05 + syst_JES_EtaIntercalibration_Stat182: 3.89395955e-05 + syst_JES_EtaIntercalibration_Stat183: 1.97911369e-03 + syst_JES_EtaIntercalibration_Stat184: 8.79562827e-03 + syst_JES_EtaIntercalibration_Stat185: 1.23403696e-02 + syst_JES_EtaIntercalibration_Stat186: 2.84480627e-03 + syst_JES_EtaIntercalibration_Stat187: 8.52558214e-05 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 - syst_JES_EtaIntercalibration_Stat192: 4.9455548894390524e-05 - syst_JES_EtaIntercalibration_Stat193: 0.0045451178202550475 - syst_JES_EtaIntercalibration_Stat194: 0.01433580024798058 - syst_JES_EtaIntercalibration_Stat195: 0.009777149277780308 - syst_JES_EtaIntercalibration_Stat196: 0.0017711625419480845 - syst_JES_EtaIntercalibration_Stat197: 2.2509125327297813e-05 - syst_JES_EtaIntercalibration_Stat198: 0.001215034265977713 - syst_JES_EtaIntercalibration_Stat199: 0.005982060347405399 + syst_JES_EtaIntercalibration_Stat192: 4.94555489e-05 + syst_JES_EtaIntercalibration_Stat193: 4.54511782e-03 + syst_JES_EtaIntercalibration_Stat194: 1.43358002e-02 + syst_JES_EtaIntercalibration_Stat195: 9.77714928e-03 + syst_JES_EtaIntercalibration_Stat196: 1.77116254e-03 + syst_JES_EtaIntercalibration_Stat197: 2.25091253e-05 + syst_JES_EtaIntercalibration_Stat198: 1.21503427e-03 + syst_JES_EtaIntercalibration_Stat199: 5.98206035e-03 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 0.007767747228122192 - syst_JES_EtaIntercalibration_Stat201: 0.002083198502303609 - syst_JES_EtaIntercalibration_Stat202: 0.00013452155366334422 + syst_JES_EtaIntercalibration_Stat200: 7.76774723e-03 + syst_JES_EtaIntercalibration_Stat201: 2.08319850e-03 + syst_JES_EtaIntercalibration_Stat202: 1.34521554e-04 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 - syst_JES_EtaIntercalibration_Stat207: 3.728157393069665e-05 - syst_JES_EtaIntercalibration_Stat208: 0.003339414132748438 - syst_JES_EtaIntercalibration_Stat209: 0.009353987104438407 + syst_JES_EtaIntercalibration_Stat207: 3.72815739e-05 + syst_JES_EtaIntercalibration_Stat208: 3.33941413e-03 + syst_JES_EtaIntercalibration_Stat209: 9.35398710e-03 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 0.005329100369668411 - syst_JES_EtaIntercalibration_Stat211: 0.0013653617542614851 - syst_JES_EtaIntercalibration_Stat212: 0.000682682371238631 - syst_JES_EtaIntercalibration_Stat213: 0.0001995726120989551 - syst_JES_EtaIntercalibration_Stat214: 0.00033991126415580875 - syst_JES_EtaIntercalibration_Stat215: 1.3285831249869163e-05 + syst_JES_EtaIntercalibration_Stat210: 5.32910037e-03 + syst_JES_EtaIntercalibration_Stat211: 1.36536175e-03 + syst_JES_EtaIntercalibration_Stat212: 6.82682371e-04 + syst_JES_EtaIntercalibration_Stat213: 1.99572612e-04 + syst_JES_EtaIntercalibration_Stat214: 3.39911264e-04 + syst_JES_EtaIntercalibration_Stat215: 1.32858312e-05 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 syst_JES_EtaIntercalibration_Stat219: 0.0 - syst_JES_EtaIntercalibration_Stat22: 5.953058625614231e-14 - syst_JES_EtaIntercalibration_Stat220: 5.378336629868081e-06 - syst_JES_EtaIntercalibration_Stat221: 0.0001712358954045559 - syst_JES_EtaIntercalibration_Stat222: 0.00023475789124116788 - syst_JES_EtaIntercalibration_Stat223: 0.00035502733345476375 - syst_JES_EtaIntercalibration_Stat224: 0.0002575812299062181 - syst_JES_EtaIntercalibration_Stat225: 0.0003797111369185792 - syst_JES_EtaIntercalibration_Stat226: 9.412630171742645e-05 - syst_JES_EtaIntercalibration_Stat227: 1.5595440487527118e-06 + syst_JES_EtaIntercalibration_Stat22: 5.95305863e-14 + syst_JES_EtaIntercalibration_Stat220: 5.37833663e-06 + syst_JES_EtaIntercalibration_Stat221: 1.71235895e-04 + syst_JES_EtaIntercalibration_Stat222: 2.34757891e-04 + syst_JES_EtaIntercalibration_Stat223: 3.55027333e-04 + syst_JES_EtaIntercalibration_Stat224: 2.57581230e-04 + syst_JES_EtaIntercalibration_Stat225: 3.79711137e-04 + syst_JES_EtaIntercalibration_Stat226: 9.41263017e-05 + syst_JES_EtaIntercalibration_Stat227: 1.55954405e-06 syst_JES_EtaIntercalibration_Stat228: 0.0 syst_JES_EtaIntercalibration_Stat229: 0.0 - syst_JES_EtaIntercalibration_Stat23: 5.953058625614231e-14 + syst_JES_EtaIntercalibration_Stat23: 5.95305863e-14 syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 - syst_JES_EtaIntercalibration_Stat232: 3.077074259747398e-06 - syst_JES_EtaIntercalibration_Stat233: 0.00016393916493224583 - syst_JES_EtaIntercalibration_Stat234: 0.0003895497015786304 - syst_JES_EtaIntercalibration_Stat235: 0.00046350647244671785 - syst_JES_EtaIntercalibration_Stat236: 1.1464268958376717e-06 - syst_JES_EtaIntercalibration_Stat237: 6.492129980792128e-07 - syst_JES_EtaIntercalibration_Stat238: 6.335841854086952e-11 + syst_JES_EtaIntercalibration_Stat232: 3.07707426e-06 + syst_JES_EtaIntercalibration_Stat233: 1.63939165e-04 + syst_JES_EtaIntercalibration_Stat234: 3.89549702e-04 + syst_JES_EtaIntercalibration_Stat235: 4.63506472e-04 + syst_JES_EtaIntercalibration_Stat236: 1.14642690e-06 + syst_JES_EtaIntercalibration_Stat237: 6.49212998e-07 + syst_JES_EtaIntercalibration_Stat238: 6.33584185e-11 syst_JES_EtaIntercalibration_Stat239: 0.0 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 - syst_JES_EtaIntercalibration_Stat243: 8.789767517261193e-09 - syst_JES_EtaIntercalibration_Stat244: 3.3484657930909195e-07 - syst_JES_EtaIntercalibration_Stat245: 3.054745979619255e-06 - syst_JES_EtaIntercalibration_Stat25: 4.89131148057451e-14 - syst_JES_EtaIntercalibration_Stat26: 1.0754181454206545e-11 - syst_JES_EtaIntercalibration_Stat27: 1.1185250042243134e-08 - syst_JES_EtaIntercalibration_Stat28: 1.3803427227623582e-05 - syst_JES_EtaIntercalibration_Stat29: 1.238118721084533e-08 + syst_JES_EtaIntercalibration_Stat243: 8.78976752e-09 + syst_JES_EtaIntercalibration_Stat244: 3.34846579e-07 + syst_JES_EtaIntercalibration_Stat245: 3.05474598e-06 + syst_JES_EtaIntercalibration_Stat25: 4.89131148e-14 + syst_JES_EtaIntercalibration_Stat26: 1.07541815e-11 + syst_JES_EtaIntercalibration_Stat27: 1.11852500e-08 + syst_JES_EtaIntercalibration_Stat28: 1.38034272e-05 + syst_JES_EtaIntercalibration_Stat29: 1.23811872e-08 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 6.276877840286124e-13 + syst_JES_EtaIntercalibration_Stat30: 6.27687784e-13 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 8.268747426303454e-14 - syst_JES_EtaIntercalibration_Stat36: 1.2952507285644546e-08 - syst_JES_EtaIntercalibration_Stat37: 9.458520708708295e-06 - syst_JES_EtaIntercalibration_Stat38: 9.450717157567207e-06 - syst_JES_EtaIntercalibration_Stat39: 4.917722254001338e-10 - syst_JES_EtaIntercalibration_Stat4: 6.706500726906693e-14 - syst_JES_EtaIntercalibration_Stat40: 2.840563324412959e-14 + syst_JES_EtaIntercalibration_Stat35: 8.26874743e-14 + syst_JES_EtaIntercalibration_Stat36: 1.29525073e-08 + syst_JES_EtaIntercalibration_Stat37: 9.45852071e-06 + syst_JES_EtaIntercalibration_Stat38: 9.45071716e-06 + syst_JES_EtaIntercalibration_Stat39: 4.91772225e-10 + syst_JES_EtaIntercalibration_Stat4: 6.70650073e-14 + syst_JES_EtaIntercalibration_Stat40: 2.84056332e-14 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 - syst_JES_EtaIntercalibration_Stat44: 5.953058625614231e-14 + syst_JES_EtaIntercalibration_Stat44: 5.95305863e-14 syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 - syst_JES_EtaIntercalibration_Stat47: 4.893043531382078e-14 - syst_JES_EtaIntercalibration_Stat48: 5.687719402361547e-10 - syst_JES_EtaIntercalibration_Stat49: 3.12421638175079e-08 - syst_JES_EtaIntercalibration_Stat5: 9.821045209141438e-11 - syst_JES_EtaIntercalibration_Stat50: 3.6332900370979197e-06 - syst_JES_EtaIntercalibration_Stat51: 7.456072584491114e-06 - syst_JES_EtaIntercalibration_Stat52: 8.49369598408137e-11 + syst_JES_EtaIntercalibration_Stat47: 4.89304353e-14 + syst_JES_EtaIntercalibration_Stat48: 5.68771940e-10 + syst_JES_EtaIntercalibration_Stat49: 3.12421638e-08 + syst_JES_EtaIntercalibration_Stat5: 9.82104521e-11 + syst_JES_EtaIntercalibration_Stat50: 3.63329004e-06 + syst_JES_EtaIntercalibration_Stat51: 7.45607258e-06 + syst_JES_EtaIntercalibration_Stat52: 8.49369598e-11 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 syst_JES_EtaIntercalibration_Stat56: 0.0 - syst_JES_EtaIntercalibration_Stat57: 1.3328151772076152e-08 - syst_JES_EtaIntercalibration_Stat58: 1.2004991844541171e-08 - syst_JES_EtaIntercalibration_Stat59: 3.975414892498643e-05 - syst_JES_EtaIntercalibration_Stat6: 7.805627374369084e-10 - syst_JES_EtaIntercalibration_Stat60: 9.314836183207947e-06 - syst_JES_EtaIntercalibration_Stat61: 2.1871750935603555e-08 - syst_JES_EtaIntercalibration_Stat62: 5.033339646795157e-14 + syst_JES_EtaIntercalibration_Stat57: 1.33281518e-08 + syst_JES_EtaIntercalibration_Stat58: 1.20049918e-08 + syst_JES_EtaIntercalibration_Stat59: 3.97541489e-05 + syst_JES_EtaIntercalibration_Stat6: 7.80562737e-10 + syst_JES_EtaIntercalibration_Stat60: 9.31483618e-06 + syst_JES_EtaIntercalibration_Stat61: 2.18717509e-08 + syst_JES_EtaIntercalibration_Stat62: 5.03333965e-14 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 - syst_JES_EtaIntercalibration_Stat69: 7.096240606828379e-14 - syst_JES_EtaIntercalibration_Stat7: 8.505920600775674e-11 - syst_JES_EtaIntercalibration_Stat70: 1.3791988544078769e-08 - syst_JES_EtaIntercalibration_Stat71: 2.1547576053859862e-05 - syst_JES_EtaIntercalibration_Stat72: 1.8337927990915442e-05 - syst_JES_EtaIntercalibration_Stat73: 3.556018434640068e-06 - syst_JES_EtaIntercalibration_Stat74: 9.969500288379553e-10 + syst_JES_EtaIntercalibration_Stat69: 7.09624061e-14 + syst_JES_EtaIntercalibration_Stat7: 8.50592060e-11 + syst_JES_EtaIntercalibration_Stat70: 1.37919885e-08 + syst_JES_EtaIntercalibration_Stat71: 2.15475761e-05 + syst_JES_EtaIntercalibration_Stat72: 1.83379280e-05 + syst_JES_EtaIntercalibration_Stat73: 3.55601843e-06 + syst_JES_EtaIntercalibration_Stat74: 9.96950029e-10 syst_JES_EtaIntercalibration_Stat75: 0.0 syst_JES_EtaIntercalibration_Stat76: 0.0 syst_JES_EtaIntercalibration_Stat77: 0.0 syst_JES_EtaIntercalibration_Stat78: 0.0 - syst_JES_EtaIntercalibration_Stat79: 1.3114614834464287e-08 + syst_JES_EtaIntercalibration_Stat79: 1.31146148e-08 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 1.5556628064911753e-05 - syst_JES_EtaIntercalibration_Stat81: 2.2617930646944694e-05 - syst_JES_EtaIntercalibration_Stat82: 2.2118982503722908e-05 - syst_JES_EtaIntercalibration_Stat83: 2.2251208658183044e-06 - syst_JES_EtaIntercalibration_Stat84: 2.7472576781219486e-14 - syst_JES_EtaIntercalibration_Stat85: 5.953058625614231e-14 - syst_JES_EtaIntercalibration_Stat86: 5.953058625614231e-14 - syst_JES_EtaIntercalibration_Stat87: 5.953058625614231e-14 - syst_JES_EtaIntercalibration_Stat88: 5.953058625614231e-14 - syst_JES_EtaIntercalibration_Stat89: 5.953058625614231e-14 + syst_JES_EtaIntercalibration_Stat80: 1.55566281e-05 + syst_JES_EtaIntercalibration_Stat81: 2.26179306e-05 + syst_JES_EtaIntercalibration_Stat82: 2.21189825e-05 + syst_JES_EtaIntercalibration_Stat83: 2.22512087e-06 + syst_JES_EtaIntercalibration_Stat84: 2.74725768e-14 + syst_JES_EtaIntercalibration_Stat85: 5.95305863e-14 + syst_JES_EtaIntercalibration_Stat86: 5.95305863e-14 + syst_JES_EtaIntercalibration_Stat87: 5.95305863e-14 + syst_JES_EtaIntercalibration_Stat88: 5.95305863e-14 + syst_JES_EtaIntercalibration_Stat89: 5.95305863e-14 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 1.7318970531760828e-06 - syst_JES_EtaIntercalibration_Stat92: 2.113004639725147e-05 - syst_JES_EtaIntercalibration_Stat93: 2.060592115752169e-05 - syst_JES_EtaIntercalibration_Stat94: 3.6618272761013726e-06 - syst_JES_EtaIntercalibration_Stat95: 1.1243770842115202e-08 - syst_JES_EtaIntercalibration_Stat96: 3.2534590551425527e-10 - syst_JES_EtaIntercalibration_Stat97: 5.953058625614231e-14 - syst_JES_EtaIntercalibration_Stat98: 5.953058625614231e-14 - syst_JES_EtaIntercalibration_Stat99: 5.953058625614231e-14 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.018616210677793697 - syst_JES_Flavour_Comp: 0.061408678539763416 - syst_JES_Gjet_Generator: 0.14597098170526907 - syst_JES_Gjet_OOC: 0.1077287343284047 - syst_JES_Gjet_Purity: 0.037055421668090616 - syst_JES_Gjet_Stat1: 4.064257219960371e-10 - syst_JES_Gjet_Stat10: 0.005195861117274017 - syst_JES_Gjet_Stat11: 0.009190521462354571 - syst_JES_Gjet_Stat12: 0.020890234560674514 - syst_JES_Gjet_Stat13: 0.018361764621081494 - syst_JES_Gjet_Stat14: 0.0037823144700037835 - syst_JES_Gjet_Stat15: 0.0021635343768935124 - syst_JES_Gjet_Stat2: 1.603013022404996e-09 - syst_JES_Gjet_Stat3: 1.932968701246867e-12 - syst_JES_Gjet_Stat4: 0.00037491015923818335 - syst_JES_Gjet_Stat5: 0.00020793072325380583 - syst_JES_Gjet_Stat6: 0.0010044107824988737 - syst_JES_Gjet_Stat7: 0.0014714283808599045 - syst_JES_Gjet_Stat8: 0.000806904980465482 - syst_JES_Gjet_Stat9: 0.002407193542281135 - syst_JES_Gjet_Veto: 0.06581509306382541 - syst_JES_Gjet_dPhi: 0.007968077999116223 - syst_JES_LArESZee: 0.2065011561710975 - syst_JES_LArEsmear: 0.0157009259281101 - syst_JES_LAr_JVT: 0.02023901368644233 - syst_JES_MJB_Alpha: 0.0014812802165694377 - syst_JES_MJB_Asym: 0.00601204247739485 - syst_JES_MJB_Beta: 0.0008463116846056186 - syst_JES_MJB_Stat1: 0.0006258765593150137 - syst_JES_MJB_Stat10: 7.654485662015444e-06 - syst_JES_MJB_Stat11: 5.749004223232119e-12 - syst_JES_MJB_Stat12: 3.6935983471406305e-06 - syst_JES_MJB_Stat13: 2.2473359228206184e-06 - syst_JES_MJB_Stat14: 1.7978687382564948e-07 - syst_JES_MJB_Stat15: 9.355682777472326e-10 - syst_JES_MJB_Stat16: 4.4063372544552616e-14 - syst_JES_MJB_Stat2: 0.0020230353432404485 - syst_JES_MJB_Stat3: 0.0019017917867106273 - syst_JES_MJB_Stat4: 0.0006426774521484319 + syst_JES_EtaIntercalibration_Stat91: 1.73189705e-06 + syst_JES_EtaIntercalibration_Stat92: 2.11300464e-05 + syst_JES_EtaIntercalibration_Stat93: 2.06059212e-05 + syst_JES_EtaIntercalibration_Stat94: 3.66182728e-06 + syst_JES_EtaIntercalibration_Stat95: 1.12437708e-08 + syst_JES_EtaIntercalibration_Stat96: 3.25345906e-10 + syst_JES_EtaIntercalibration_Stat97: 5.95305863e-14 + syst_JES_EtaIntercalibration_Stat98: 5.95305863e-14 + syst_JES_EtaIntercalibration_Stat99: 5.95305863e-14 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.86162107e-02 + syst_JES_Flavour_Comp: 6.14086785e-02 + syst_JES_Gjet_Generator: 1.45970982e-01 + syst_JES_Gjet_OOC: 1.07728734e-01 + syst_JES_Gjet_Purity: 3.70554217e-02 + syst_JES_Gjet_Stat1: 4.06425722e-10 + syst_JES_Gjet_Stat10: 5.19586112e-03 + syst_JES_Gjet_Stat11: 9.19052146e-03 + syst_JES_Gjet_Stat12: 2.08902346e-02 + syst_JES_Gjet_Stat13: 1.83617646e-02 + syst_JES_Gjet_Stat14: 3.78231447e-03 + syst_JES_Gjet_Stat15: 2.16353438e-03 + syst_JES_Gjet_Stat2: 1.60301302e-09 + syst_JES_Gjet_Stat3: 1.93296870e-12 + syst_JES_Gjet_Stat4: 3.74910159e-04 + syst_JES_Gjet_Stat5: 2.07930723e-04 + syst_JES_Gjet_Stat6: 1.00441078e-03 + syst_JES_Gjet_Stat7: 1.47142838e-03 + syst_JES_Gjet_Stat8: 8.06904980e-04 + syst_JES_Gjet_Stat9: 2.40719354e-03 + syst_JES_Gjet_Veto: 6.58150931e-02 + syst_JES_Gjet_dPhi: 7.96807800e-03 + syst_JES_LArESZee: 2.06501156e-01 + syst_JES_LArEsmear: 1.57009259e-02 + syst_JES_LAr_JVT: 2.02390137e-02 + syst_JES_MJB_Alpha: 1.48128022e-03 + syst_JES_MJB_Asym: 6.01204248e-03 + syst_JES_MJB_Beta: 8.46311685e-04 + syst_JES_MJB_Stat1: 6.25876559e-04 + syst_JES_MJB_Stat10: 7.65448566e-06 + syst_JES_MJB_Stat11: 5.74900422e-12 + syst_JES_MJB_Stat12: 3.69359835e-06 + syst_JES_MJB_Stat13: 2.24733592e-06 + syst_JES_MJB_Stat14: 1.79786874e-07 + syst_JES_MJB_Stat15: 9.35568278e-10 + syst_JES_MJB_Stat16: 4.40633725e-14 + syst_JES_MJB_Stat2: 2.02303534e-03 + syst_JES_MJB_Stat3: 1.90179179e-03 + syst_JES_MJB_Stat4: 6.42677452e-04 syst_JES_MJB_Stat5: 0.0 - syst_JES_MJB_Stat6: 7.227848019984925e-07 - syst_JES_MJB_Stat7: 1.8143232209283986e-15 - syst_JES_MJB_Stat8: 8.929751549694259e-12 - syst_JES_MJB_Stat9: 5.841604869024265e-06 - syst_JES_MJB_Threshold: 0.008075025572714927 - syst_JES_Pileup_MuOffset: 0.014919001935451311 - syst_JES_Pileup_NPVOffset: 0.0170836961750085 - syst_JES_Pileup_Pt_term: 0.03157760440565434 - syst_JES_PunchThrough_MC15: 0.005552952795585426 + syst_JES_MJB_Stat6: 7.22784802e-07 + syst_JES_MJB_Stat7: 1.81432322e-15 + syst_JES_MJB_Stat8: 8.92975155e-12 + syst_JES_MJB_Stat9: 5.84160487e-06 + syst_JES_MJB_Threshold: 8.07502557e-03 + syst_JES_Pileup_MuOffset: 1.49190019e-02 + syst_JES_Pileup_NPVOffset: 1.70836962e-02 + syst_JES_Pileup_Pt_term: 3.15776044e-02 + syst_JES_PunchThrough_MC15: 5.55295280e-03 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.12033510990147471 - syst_JES_Zjet_MuScale: 0.007163734134513927 - syst_JES_Zjet_MuSmearID: 0.001164062833355657 - syst_JES_Zjet_MuSmearMS: 0.028941672377386905 - syst_JES_Zjet_OOC: 0.047580134510108306 - syst_JES_Zjet_Stat1: 0.001203194572793611 - syst_JES_Zjet_Stat10: 0.004000203008285954 - syst_JES_Zjet_Stat11: 0.004183002151565308 - syst_JES_Zjet_Stat12: 0.03568520246544778 - syst_JES_Zjet_Stat13: 0.02611368032277335 - syst_JES_Zjet_Stat2: 2.548712763337603e-13 - syst_JES_Zjet_Stat3: 0.0009255914690077906 - syst_JES_Zjet_Stat4: 0.0009246537568192755 - syst_JES_Zjet_Stat5: 0.0011081691973701489 - syst_JES_Zjet_Stat6: 0.0008252487867304017 - syst_JES_Zjet_Stat7: 0.0006648912448664068 - syst_JES_Zjet_Stat8: 0.0008397817261050635 - syst_JES_Zjet_Stat9: 0.001948260955313738 - syst_JES_Zjet_Veto: 0.009800116121761007 - syst_JES_Zjet_dPhi: 0.00810901231655249 + syst_JES_Zjet_MC: 1.20335110e-01 + syst_JES_Zjet_MuScale: 7.16373413e-03 + syst_JES_Zjet_MuSmearID: 1.16406283e-03 + syst_JES_Zjet_MuSmearMS: 2.89416724e-02 + syst_JES_Zjet_OOC: 4.75801345e-02 + syst_JES_Zjet_Stat1: 1.20319457e-03 + syst_JES_Zjet_Stat10: 4.00020301e-03 + syst_JES_Zjet_Stat11: 4.18300215e-03 + syst_JES_Zjet_Stat12: 3.56852025e-02 + syst_JES_Zjet_Stat13: 2.61136803e-02 + syst_JES_Zjet_Stat2: 2.54871276e-13 + syst_JES_Zjet_Stat3: 9.25591469e-04 + syst_JES_Zjet_Stat4: 9.24653757e-04 + syst_JES_Zjet_Stat5: 1.10816920e-03 + syst_JES_Zjet_Stat6: 8.25248787e-04 + syst_JES_Zjet_Stat7: 6.64891245e-04 + syst_JES_Zjet_Stat8: 8.39781726e-04 + syst_JES_Zjet_Stat9: 1.94826096e-03 + syst_JES_Zjet_Veto: 9.80011612e-03 + syst_JES_Zjet_dPhi: 8.10901232e-03 syst_PRW: 0.010503 - syst_Unfolding_bias: 1.798e-08 - syst_cleaning: 0.03713516931427673 + syst_Unfolding_bias: 1.79800000e-08 + syst_cleaning: 3.71351693e-02 syst_lumi: 0.1457 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.020745030127719746 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 0.05273501185171006 - syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.006869061507949977 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 2.07450301e-02 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 5.27350119e-02 + syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 6.86906151e-03 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 0.07342501668368893 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.01902841033822847 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.04253504760782572 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 7.34250167e-02 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.90284103e-02 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 4.25350476e-02 - stat: 0.04533 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.039258905995964787 - syst_JER_NP1: 0.002134268668654441 - syst_JER_NP2: 0.018198843369840845 - syst_JER_NP3: 0.003043687894643601 - syst_JER_NP4: 4.09351032122798e-05 - syst_JER_NP5: 0.005828483057365785 - syst_JER_NP6: 8.103697350592506e-05 - syst_JER_NP7: 9.623469280877869e-05 - syst_JER_NP8: 0.005617932960618167 - syst_JES_EtaIntercalibration_Modelling: 0.15928580445224869 - syst_JES_EtaIntercalibration_NonClosure: 0.0007052421086938868 - syst_JES_EtaIntercalibration_Stat0: 7.893821555495158e-15 + syst_JER_NP0: 3.92589060e-02 + syst_JER_NP1: 2.13426867e-03 + syst_JER_NP2: 1.81988434e-02 + syst_JER_NP3: 3.04368789e-03 + syst_JER_NP4: 4.09351032e-05 + syst_JER_NP5: 5.82848306e-03 + syst_JER_NP6: 8.10369735e-05 + syst_JER_NP7: 9.62346928e-05 + syst_JER_NP8: 5.61793296e-03 + syst_JES_EtaIntercalibration_Modelling: 1.59285804e-01 + syst_JES_EtaIntercalibration_NonClosure: 7.05242109e-04 + syst_JES_EtaIntercalibration_Stat0: 7.89382156e-15 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 1.6154324461095457e-09 - syst_JES_EtaIntercalibration_Stat101: 1.4901787032097863e-05 - syst_JES_EtaIntercalibration_Stat102: 1.264847748742907e-05 - syst_JES_EtaIntercalibration_Stat103: 9.091749047900518e-06 - syst_JES_EtaIntercalibration_Stat104: 1.9741780758267476e-06 - syst_JES_EtaIntercalibration_Stat105: 7.0023390377787344e-15 - syst_JES_EtaIntercalibration_Stat106: 7.892955530091373e-15 - syst_JES_EtaIntercalibration_Stat107: 7.892955530091373e-15 - syst_JES_EtaIntercalibration_Stat108: 7.892955530091373e-15 - syst_JES_EtaIntercalibration_Stat109: 7.892955530091373e-15 + syst_JES_EtaIntercalibration_Stat100: 1.61543245e-09 + syst_JES_EtaIntercalibration_Stat101: 1.49017870e-05 + syst_JES_EtaIntercalibration_Stat102: 1.26484775e-05 + syst_JES_EtaIntercalibration_Stat103: 9.09174905e-06 + syst_JES_EtaIntercalibration_Stat104: 1.97417808e-06 + syst_JES_EtaIntercalibration_Stat105: 7.00233904e-15 + syst_JES_EtaIntercalibration_Stat106: 7.89295553e-15 + syst_JES_EtaIntercalibration_Stat107: 7.89295553e-15 + syst_JES_EtaIntercalibration_Stat108: 7.89295553e-15 + syst_JES_EtaIntercalibration_Stat109: 7.89295553e-15 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 1.7729463387254563e-12 - syst_JES_EtaIntercalibration_Stat111: 3.239502098702824e-06 - syst_JES_EtaIntercalibration_Stat112: 2.501154683341276e-05 - syst_JES_EtaIntercalibration_Stat113: 2.643097516173022e-05 - syst_JES_EtaIntercalibration_Stat114: 3.7475555272737454e-05 - syst_JES_EtaIntercalibration_Stat115: 1.4654813138586073e-06 - syst_JES_EtaIntercalibration_Stat116: 3.7730096591563966e-11 - syst_JES_EtaIntercalibration_Stat117: 7.892955530091373e-15 - syst_JES_EtaIntercalibration_Stat118: 7.892955530091373e-15 - syst_JES_EtaIntercalibration_Stat119: 7.892955530091373e-15 + syst_JES_EtaIntercalibration_Stat110: 1.77294634e-12 + syst_JES_EtaIntercalibration_Stat111: 3.23950210e-06 + syst_JES_EtaIntercalibration_Stat112: 2.50115468e-05 + syst_JES_EtaIntercalibration_Stat113: 2.64309752e-05 + syst_JES_EtaIntercalibration_Stat114: 3.74755553e-05 + syst_JES_EtaIntercalibration_Stat115: 1.46548131e-06 + syst_JES_EtaIntercalibration_Stat116: 3.77300966e-11 + syst_JES_EtaIntercalibration_Stat117: 7.89295553e-15 + syst_JES_EtaIntercalibration_Stat118: 7.89295553e-15 + syst_JES_EtaIntercalibration_Stat119: 7.89295553e-15 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 1.2843156738123224e-08 - syst_JES_EtaIntercalibration_Stat121: 2.2592810250165867e-05 - syst_JES_EtaIntercalibration_Stat122: 3.386826833482928e-05 - syst_JES_EtaIntercalibration_Stat123: 2.7450440797917982e-05 - syst_JES_EtaIntercalibration_Stat124: 9.676907602638356e-06 - syst_JES_EtaIntercalibration_Stat125: 5.590193981428551e-11 - syst_JES_EtaIntercalibration_Stat126: 7.892955530091373e-15 - syst_JES_EtaIntercalibration_Stat127: 7.892955530091373e-15 - syst_JES_EtaIntercalibration_Stat128: 7.892955530091373e-15 - syst_JES_EtaIntercalibration_Stat129: 5.635539678398157e-06 + syst_JES_EtaIntercalibration_Stat120: 1.28431567e-08 + syst_JES_EtaIntercalibration_Stat121: 2.25928103e-05 + syst_JES_EtaIntercalibration_Stat122: 3.38682683e-05 + syst_JES_EtaIntercalibration_Stat123: 2.74504408e-05 + syst_JES_EtaIntercalibration_Stat124: 9.67690760e-06 + syst_JES_EtaIntercalibration_Stat125: 5.59019398e-11 + syst_JES_EtaIntercalibration_Stat126: 7.89295553e-15 + syst_JES_EtaIntercalibration_Stat127: 7.89295553e-15 + syst_JES_EtaIntercalibration_Stat128: 7.89295553e-15 + syst_JES_EtaIntercalibration_Stat129: 5.63553968e-06 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 6.362381851948214e-05 - syst_JES_EtaIntercalibration_Stat131: 0.0003012416430376119 - syst_JES_EtaIntercalibration_Stat132: 0.00038122674027407893 - syst_JES_EtaIntercalibration_Stat133: 0.00014379394310957608 - syst_JES_EtaIntercalibration_Stat134: 3.0203686873459667e-06 - syst_JES_EtaIntercalibration_Stat135: 3.7732726842887996e-11 + syst_JES_EtaIntercalibration_Stat130: 6.36238185e-05 + syst_JES_EtaIntercalibration_Stat131: 3.01241643e-04 + syst_JES_EtaIntercalibration_Stat132: 3.81226740e-04 + syst_JES_EtaIntercalibration_Stat133: 1.43793943e-04 + syst_JES_EtaIntercalibration_Stat134: 3.02036869e-06 + syst_JES_EtaIntercalibration_Stat135: 3.77327268e-11 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 syst_JES_EtaIntercalibration_Stat138: 0.0 - syst_JES_EtaIntercalibration_Stat139: 2.5818356972317194e-05 - syst_JES_EtaIntercalibration_Stat14: 1.6315926540106952e-09 - syst_JES_EtaIntercalibration_Stat140: 0.00010902389864153639 - syst_JES_EtaIntercalibration_Stat141: 0.00044245380267322827 - syst_JES_EtaIntercalibration_Stat142: 0.0002575553144472076 - syst_JES_EtaIntercalibration_Stat143: 3.329562746067417e-05 - syst_JES_EtaIntercalibration_Stat144: 3.2776754243670923e-07 + syst_JES_EtaIntercalibration_Stat139: 2.58183570e-05 + syst_JES_EtaIntercalibration_Stat14: 1.63159265e-09 + syst_JES_EtaIntercalibration_Stat140: 1.09023899e-04 + syst_JES_EtaIntercalibration_Stat141: 4.42453803e-04 + syst_JES_EtaIntercalibration_Stat142: 2.57555314e-04 + syst_JES_EtaIntercalibration_Stat143: 3.32956275e-05 + syst_JES_EtaIntercalibration_Stat144: 3.27767542e-07 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 3.8113833118698513e-07 - syst_JES_EtaIntercalibration_Stat148: 7.229723853647523e-05 - syst_JES_EtaIntercalibration_Stat149: 0.0004350688681117048 - syst_JES_EtaIntercalibration_Stat15: 1.6281346181515224e-09 - syst_JES_EtaIntercalibration_Stat150: 0.00043702274540348586 - syst_JES_EtaIntercalibration_Stat151: 0.00014822549949317088 - syst_JES_EtaIntercalibration_Stat152: 8.008848528346631e-07 + syst_JES_EtaIntercalibration_Stat147: 3.81138331e-07 + syst_JES_EtaIntercalibration_Stat148: 7.22972385e-05 + syst_JES_EtaIntercalibration_Stat149: 4.35068868e-04 + syst_JES_EtaIntercalibration_Stat15: 1.62813462e-09 + syst_JES_EtaIntercalibration_Stat150: 4.37022745e-04 + syst_JES_EtaIntercalibration_Stat151: 1.48225499e-04 + syst_JES_EtaIntercalibration_Stat152: 8.00884853e-07 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 syst_JES_EtaIntercalibration_Stat156: 0.0 - syst_JES_EtaIntercalibration_Stat157: 2.130067614108763e-06 - syst_JES_EtaIntercalibration_Stat158: 0.00019500132326474094 - syst_JES_EtaIntercalibration_Stat159: 0.0007602326749094648 - syst_JES_EtaIntercalibration_Stat16: 1.6220783815477373e-09 - syst_JES_EtaIntercalibration_Stat160: 0.0003429257791417845 - syst_JES_EtaIntercalibration_Stat161: 4.45938927993509e-05 - syst_JES_EtaIntercalibration_Stat162: 3.272250336924117e-07 + syst_JES_EtaIntercalibration_Stat157: 2.13006761e-06 + syst_JES_EtaIntercalibration_Stat158: 1.95001323e-04 + syst_JES_EtaIntercalibration_Stat159: 7.60232675e-04 + syst_JES_EtaIntercalibration_Stat16: 1.62207838e-09 + syst_JES_EtaIntercalibration_Stat160: 3.42925779e-04 + syst_JES_EtaIntercalibration_Stat161: 4.45938928e-05 + syst_JES_EtaIntercalibration_Stat162: 3.27225034e-07 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 7.751840104130116e-07 - syst_JES_EtaIntercalibration_Stat166: 0.0003668198842756483 - syst_JES_EtaIntercalibration_Stat167: 0.0012302089690373746 - syst_JES_EtaIntercalibration_Stat168: 0.001398616640648895 - syst_JES_EtaIntercalibration_Stat169: 0.00035118904481774485 - syst_JES_EtaIntercalibration_Stat17: 6.538491798572511e-15 - syst_JES_EtaIntercalibration_Stat170: 4.50298868752743e-06 + syst_JES_EtaIntercalibration_Stat165: 7.75184010e-07 + syst_JES_EtaIntercalibration_Stat166: 3.66819884e-04 + syst_JES_EtaIntercalibration_Stat167: 1.23020897e-03 + syst_JES_EtaIntercalibration_Stat168: 1.39861664e-03 + syst_JES_EtaIntercalibration_Stat169: 3.51189045e-04 + syst_JES_EtaIntercalibration_Stat17: 6.53849180e-15 + syst_JES_EtaIntercalibration_Stat170: 4.50298869e-06 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 - syst_JES_EtaIntercalibration_Stat175: 3.053210891831745e-05 - syst_JES_EtaIntercalibration_Stat176: 0.0005488436389355352 - syst_JES_EtaIntercalibration_Stat177: 0.002048258284494414 - syst_JES_EtaIntercalibration_Stat178: 0.0015448575177018753 - syst_JES_EtaIntercalibration_Stat179: 0.0002077371115135666 + syst_JES_EtaIntercalibration_Stat175: 3.05321089e-05 + syst_JES_EtaIntercalibration_Stat176: 5.48843639e-04 + syst_JES_EtaIntercalibration_Stat177: 2.04825828e-03 + syst_JES_EtaIntercalibration_Stat178: 1.54485752e-03 + syst_JES_EtaIntercalibration_Stat179: 2.07737112e-04 syst_JES_EtaIntercalibration_Stat18: 0.0 - syst_JES_EtaIntercalibration_Stat180: 1.1010549010862005e-05 + syst_JES_EtaIntercalibration_Stat180: 1.10105490e-05 syst_JES_EtaIntercalibration_Stat181: 0.0 - syst_JES_EtaIntercalibration_Stat182: 1.1516693405661194e-05 - syst_JES_EtaIntercalibration_Stat183: 0.0009661223680259142 - syst_JES_EtaIntercalibration_Stat184: 0.004292838687861448 - syst_JES_EtaIntercalibration_Stat185: 0.0063142052548202775 - syst_JES_EtaIntercalibration_Stat186: 0.0014060463559925755 - syst_JES_EtaIntercalibration_Stat187: 3.807449351928401e-05 + syst_JES_EtaIntercalibration_Stat182: 1.15166934e-05 + syst_JES_EtaIntercalibration_Stat183: 9.66122368e-04 + syst_JES_EtaIntercalibration_Stat184: 4.29283869e-03 + syst_JES_EtaIntercalibration_Stat185: 6.31420525e-03 + syst_JES_EtaIntercalibration_Stat186: 1.40604636e-03 + syst_JES_EtaIntercalibration_Stat187: 3.80744935e-05 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 - syst_JES_EtaIntercalibration_Stat192: 2.6980146757708714e-05 - syst_JES_EtaIntercalibration_Stat193: 0.002343291275108581 - syst_JES_EtaIntercalibration_Stat194: 0.007082292337230933 - syst_JES_EtaIntercalibration_Stat195: 0.0046741761840991825 - syst_JES_EtaIntercalibration_Stat196: 0.0008413717534479037 - syst_JES_EtaIntercalibration_Stat197: 5.830900166355106e-06 - syst_JES_EtaIntercalibration_Stat198: 0.0006616138677506692 - syst_JES_EtaIntercalibration_Stat199: 0.00456491979666675 + syst_JES_EtaIntercalibration_Stat192: 2.69801468e-05 + syst_JES_EtaIntercalibration_Stat193: 2.34329128e-03 + syst_JES_EtaIntercalibration_Stat194: 7.08229234e-03 + syst_JES_EtaIntercalibration_Stat195: 4.67417618e-03 + syst_JES_EtaIntercalibration_Stat196: 8.41371753e-04 + syst_JES_EtaIntercalibration_Stat197: 5.83090017e-06 + syst_JES_EtaIntercalibration_Stat198: 6.61613868e-04 + syst_JES_EtaIntercalibration_Stat199: 4.56491980e-03 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 0.005690142594874051 - syst_JES_EtaIntercalibration_Stat201: 0.001513904554455135 - syst_JES_EtaIntercalibration_Stat202: 9.236168943344422e-05 + syst_JES_EtaIntercalibration_Stat200: 5.69014259e-03 + syst_JES_EtaIntercalibration_Stat201: 1.51390455e-03 + syst_JES_EtaIntercalibration_Stat202: 9.23616894e-05 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 - syst_JES_EtaIntercalibration_Stat207: 1.241331188684148e-05 - syst_JES_EtaIntercalibration_Stat208: 0.0022962057290234253 - syst_JES_EtaIntercalibration_Stat209: 0.0061364790189488965 + syst_JES_EtaIntercalibration_Stat207: 1.24133119e-05 + syst_JES_EtaIntercalibration_Stat208: 2.29620573e-03 + syst_JES_EtaIntercalibration_Stat209: 6.13647902e-03 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 0.0037177259218506144 - syst_JES_EtaIntercalibration_Stat211: 0.0008011172620159922 - syst_JES_EtaIntercalibration_Stat212: 0.0006739769144414369 - syst_JES_EtaIntercalibration_Stat213: 0.0005672991626998932 - syst_JES_EtaIntercalibration_Stat214: 0.0002300957685399712 - syst_JES_EtaIntercalibration_Stat215: 7.0707899535695445e-06 + syst_JES_EtaIntercalibration_Stat210: 3.71772592e-03 + syst_JES_EtaIntercalibration_Stat211: 8.01117262e-04 + syst_JES_EtaIntercalibration_Stat212: 6.73976914e-04 + syst_JES_EtaIntercalibration_Stat213: 5.67299163e-04 + syst_JES_EtaIntercalibration_Stat214: 2.30095769e-04 + syst_JES_EtaIntercalibration_Stat215: 7.07078995e-06 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 syst_JES_EtaIntercalibration_Stat219: 0.0 - syst_JES_EtaIntercalibration_Stat22: 7.893821555495158e-15 - syst_JES_EtaIntercalibration_Stat220: 7.622867198108596e-06 - syst_JES_EtaIntercalibration_Stat221: 0.00013260379962504846 - syst_JES_EtaIntercalibration_Stat222: 0.000790196943805783 - syst_JES_EtaIntercalibration_Stat223: 0.0006586397706637521 - syst_JES_EtaIntercalibration_Stat224: 0.00030660313109947195 - syst_JES_EtaIntercalibration_Stat225: 0.0004469304727807223 - syst_JES_EtaIntercalibration_Stat226: 0.00016166984876593408 - syst_JES_EtaIntercalibration_Stat227: 3.6036507877428972e-06 + syst_JES_EtaIntercalibration_Stat22: 7.89382156e-15 + syst_JES_EtaIntercalibration_Stat220: 7.62286720e-06 + syst_JES_EtaIntercalibration_Stat221: 1.32603800e-04 + syst_JES_EtaIntercalibration_Stat222: 7.90196944e-04 + syst_JES_EtaIntercalibration_Stat223: 6.58639771e-04 + syst_JES_EtaIntercalibration_Stat224: 3.06603131e-04 + syst_JES_EtaIntercalibration_Stat225: 4.46930473e-04 + syst_JES_EtaIntercalibration_Stat226: 1.61669849e-04 + syst_JES_EtaIntercalibration_Stat227: 3.60365079e-06 syst_JES_EtaIntercalibration_Stat228: 0.0 syst_JES_EtaIntercalibration_Stat229: 0.0 - syst_JES_EtaIntercalibration_Stat23: 7.893821555495158e-15 + syst_JES_EtaIntercalibration_Stat23: 7.89382156e-15 syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 - syst_JES_EtaIntercalibration_Stat232: 3.805414037920184e-06 - syst_JES_EtaIntercalibration_Stat233: 0.00017843992605615146 - syst_JES_EtaIntercalibration_Stat234: 0.00033134173824014385 - syst_JES_EtaIntercalibration_Stat235: 0.0003196335714533128 - syst_JES_EtaIntercalibration_Stat236: 8.678983160918103e-06 - syst_JES_EtaIntercalibration_Stat237: 1.1453784231859792e-05 - syst_JES_EtaIntercalibration_Stat238: 4.241792427736181e-09 + syst_JES_EtaIntercalibration_Stat232: 3.80541404e-06 + syst_JES_EtaIntercalibration_Stat233: 1.78439926e-04 + syst_JES_EtaIntercalibration_Stat234: 3.31341738e-04 + syst_JES_EtaIntercalibration_Stat235: 3.19633571e-04 + syst_JES_EtaIntercalibration_Stat236: 8.67898316e-06 + syst_JES_EtaIntercalibration_Stat237: 1.14537842e-05 + syst_JES_EtaIntercalibration_Stat238: 4.24179243e-09 syst_JES_EtaIntercalibration_Stat239: 0.0 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 - syst_JES_EtaIntercalibration_Stat243: 1.8050207150265617e-07 - syst_JES_EtaIntercalibration_Stat244: 5.767006936011088e-07 - syst_JES_EtaIntercalibration_Stat245: 1.1453003841787534e-06 - syst_JES_EtaIntercalibration_Stat25: 6.430238623099458e-15 - syst_JES_EtaIntercalibration_Stat26: 1.2808902246094315e-12 - syst_JES_EtaIntercalibration_Stat27: 1.3513419978536152e-09 - syst_JES_EtaIntercalibration_Stat28: 8.50659500660439e-06 - syst_JES_EtaIntercalibration_Stat29: 1.5026016795877741e-09 + syst_JES_EtaIntercalibration_Stat243: 1.80502072e-07 + syst_JES_EtaIntercalibration_Stat244: 5.76700694e-07 + syst_JES_EtaIntercalibration_Stat245: 1.14530038e-06 + syst_JES_EtaIntercalibration_Stat25: 6.43023862e-15 + syst_JES_EtaIntercalibration_Stat26: 1.28089022e-12 + syst_JES_EtaIntercalibration_Stat27: 1.35134200e-09 + syst_JES_EtaIntercalibration_Stat28: 8.50659501e-06 + syst_JES_EtaIntercalibration_Stat29: 1.50260168e-09 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 7.786999843770065e-14 + syst_JES_EtaIntercalibration_Stat30: 7.78699984e-14 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 1.100419466703493e-14 - syst_JES_EtaIntercalibration_Stat36: 1.5863430971498568e-09 - syst_JES_EtaIntercalibration_Stat37: 6.0205844886884075e-06 - syst_JES_EtaIntercalibration_Stat38: 6.016253290720125e-06 - syst_JES_EtaIntercalibration_Stat39: 5.6698743568155906e-11 - syst_JES_EtaIntercalibration_Stat4: 8.81700463592937e-15 - syst_JES_EtaIntercalibration_Stat40: 4.054730940518742e-15 + syst_JES_EtaIntercalibration_Stat35: 1.10041947e-14 + syst_JES_EtaIntercalibration_Stat36: 1.58634310e-09 + syst_JES_EtaIntercalibration_Stat37: 6.02058449e-06 + syst_JES_EtaIntercalibration_Stat38: 6.01625329e-06 + syst_JES_EtaIntercalibration_Stat39: 5.66987436e-11 + syst_JES_EtaIntercalibration_Stat4: 8.81700464e-15 + syst_JES_EtaIntercalibration_Stat40: 4.05473094e-15 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 - syst_JES_EtaIntercalibration_Stat44: 7.893821555495158e-15 + syst_JES_EtaIntercalibration_Stat44: 7.89382156e-15 syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 - syst_JES_EtaIntercalibration_Stat47: 6.4328366993108105e-15 - syst_JES_EtaIntercalibration_Stat48: 6.616158005217227e-11 - syst_JES_EtaIntercalibration_Stat49: 3.970732918177701e-09 - syst_JES_EtaIntercalibration_Stat5: 1.1192140599880793e-11 - syst_JES_EtaIntercalibration_Stat50: 3.6154188321359114e-06 - syst_JES_EtaIntercalibration_Stat51: 1.447420490010041e-06 - syst_JES_EtaIntercalibration_Stat52: 9.664081870902172e-12 + syst_JES_EtaIntercalibration_Stat47: 6.43283670e-15 + syst_JES_EtaIntercalibration_Stat48: 6.61615801e-11 + syst_JES_EtaIntercalibration_Stat49: 3.97073292e-09 + syst_JES_EtaIntercalibration_Stat5: 1.11921406e-11 + syst_JES_EtaIntercalibration_Stat50: 3.61541883e-06 + syst_JES_EtaIntercalibration_Stat51: 1.44742049e-06 + syst_JES_EtaIntercalibration_Stat52: 9.66408187e-12 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 syst_JES_EtaIntercalibration_Stat56: 0.0 - syst_JES_EtaIntercalibration_Stat57: 1.6315946308752866e-09 - syst_JES_EtaIntercalibration_Stat58: 1.4720681411113414e-09 - syst_JES_EtaIntercalibration_Stat59: 2.150920500622931e-05 - syst_JES_EtaIntercalibration_Stat6: 9.050229233975237e-11 - syst_JES_EtaIntercalibration_Stat60: 6.025008501958732e-06 - syst_JES_EtaIntercalibration_Stat61: 2.864768189174824e-09 - syst_JES_EtaIntercalibration_Stat62: 6.6692616345439614e-15 + syst_JES_EtaIntercalibration_Stat57: 1.63159463e-09 + syst_JES_EtaIntercalibration_Stat58: 1.47206814e-09 + syst_JES_EtaIntercalibration_Stat59: 2.15092050e-05 + syst_JES_EtaIntercalibration_Stat6: 9.05022923e-11 + syst_JES_EtaIntercalibration_Stat60: 6.02500850e-06 + syst_JES_EtaIntercalibration_Stat61: 2.86476819e-09 + syst_JES_EtaIntercalibration_Stat62: 6.66926163e-15 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 - syst_JES_EtaIntercalibration_Stat69: 9.35512356946716e-15 - syst_JES_EtaIntercalibration_Stat7: 9.679523680429733e-12 - syst_JES_EtaIntercalibration_Stat70: 1.6637782627201259e-09 - syst_JES_EtaIntercalibration_Stat71: 1.4449826251269425e-05 - syst_JES_EtaIntercalibration_Stat72: 2.8211502454672634e-05 - syst_JES_EtaIntercalibration_Stat73: 3.6398135127366067e-06 - syst_JES_EtaIntercalibration_Stat74: 1.1596324503910711e-10 + syst_JES_EtaIntercalibration_Stat69: 9.35512357e-15 + syst_JES_EtaIntercalibration_Stat7: 9.67952368e-12 + syst_JES_EtaIntercalibration_Stat70: 1.66377826e-09 + syst_JES_EtaIntercalibration_Stat71: 1.44498263e-05 + syst_JES_EtaIntercalibration_Stat72: 2.82115025e-05 + syst_JES_EtaIntercalibration_Stat73: 3.63981351e-06 + syst_JES_EtaIntercalibration_Stat74: 1.15963245e-10 syst_JES_EtaIntercalibration_Stat75: 0.0 syst_JES_EtaIntercalibration_Stat76: 0.0 syst_JES_EtaIntercalibration_Stat77: 0.0 syst_JES_EtaIntercalibration_Stat78: 0.0 - syst_JES_EtaIntercalibration_Stat79: 1.6068338963776809e-09 + syst_JES_EtaIntercalibration_Stat79: 1.60683390e-09 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 5.1833079206236635e-06 - syst_JES_EtaIntercalibration_Stat81: 6.3521073731479064e-06 - syst_JES_EtaIntercalibration_Stat82: 6.319225294771108e-06 - syst_JES_EtaIntercalibration_Stat83: 3.33360601601329e-07 - syst_JES_EtaIntercalibration_Stat84: 3.460943910264944e-15 - syst_JES_EtaIntercalibration_Stat85: 7.892955530091373e-15 - syst_JES_EtaIntercalibration_Stat86: 7.892955530091373e-15 - syst_JES_EtaIntercalibration_Stat87: 7.892955530091373e-15 - syst_JES_EtaIntercalibration_Stat88: 7.892955530091373e-15 - syst_JES_EtaIntercalibration_Stat89: 7.892955530091373e-15 + syst_JES_EtaIntercalibration_Stat80: 5.18330792e-06 + syst_JES_EtaIntercalibration_Stat81: 6.35210737e-06 + syst_JES_EtaIntercalibration_Stat82: 6.31922529e-06 + syst_JES_EtaIntercalibration_Stat83: 3.33360602e-07 + syst_JES_EtaIntercalibration_Stat84: 3.46094391e-15 + syst_JES_EtaIntercalibration_Stat85: 7.89295553e-15 + syst_JES_EtaIntercalibration_Stat86: 7.89295553e-15 + syst_JES_EtaIntercalibration_Stat87: 7.89295553e-15 + syst_JES_EtaIntercalibration_Stat88: 7.89295553e-15 + syst_JES_EtaIntercalibration_Stat89: 7.89295553e-15 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 3.482745530468742e-07 - syst_JES_EtaIntercalibration_Stat92: 1.348444893822139e-05 - syst_JES_EtaIntercalibration_Stat93: 2.875413097278372e-05 - syst_JES_EtaIntercalibration_Stat94: 3.715878668632764e-06 - syst_JES_EtaIntercalibration_Stat95: 1.3665387178927644e-09 - syst_JES_EtaIntercalibration_Stat96: 3.7730096591563966e-11 - syst_JES_EtaIntercalibration_Stat97: 7.892955530091373e-15 - syst_JES_EtaIntercalibration_Stat98: 7.892955530091373e-15 - syst_JES_EtaIntercalibration_Stat99: 7.892955530091373e-15 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.014216915101385392 - syst_JES_Flavour_Comp: 0.0448462314470235 - syst_JES_Gjet_Generator: 0.09179330735407674 - syst_JES_Gjet_OOC: 0.06951057545438678 - syst_JES_Gjet_Purity: 0.023430721286379554 - syst_JES_Gjet_Stat1: 2.811118460684288e-08 - syst_JES_Gjet_Stat10: 0.0028780421730753005 - syst_JES_Gjet_Stat11: 0.0045550028540056915 - syst_JES_Gjet_Stat12: 0.012410778218951462 - syst_JES_Gjet_Stat13: 0.016125075968813296 - syst_JES_Gjet_Stat14: 0.002279417071862892 - syst_JES_Gjet_Stat15: 0.0028086345436884454 - syst_JES_Gjet_Stat2: 1.9104520407484715e-10 - syst_JES_Gjet_Stat3: 5.366759427252167e-10 - syst_JES_Gjet_Stat4: 0.0003152360544100246 - syst_JES_Gjet_Stat5: 5.7356633981048545e-05 - syst_JES_Gjet_Stat6: 0.0006416480402058437 - syst_JES_Gjet_Stat7: 0.0008761144274579663 - syst_JES_Gjet_Stat8: 0.000501400548464 - syst_JES_Gjet_Stat9: 0.0014215742356627036 - syst_JES_Gjet_Veto: 0.047255025923175625 - syst_JES_Gjet_dPhi: 0.005405199788166945 - syst_JES_LArESZee: 0.13245204669992836 - syst_JES_LArEsmear: 0.009800323872199326 - syst_JES_LAr_JVT: 0.013017317494399527 - syst_JES_MJB_Alpha: 0.0008870108905757584 - syst_JES_MJB_Asym: 0.004090877373803815 - syst_JES_MJB_Beta: 0.0005869464605055558 - syst_JES_MJB_Stat1: 0.00017900745096224348 - syst_JES_MJB_Stat10: 6.4011426323743175e-06 - syst_JES_MJB_Stat11: 1.5926593376095844e-09 - syst_JES_MJB_Stat12: 4.221007818040014e-06 - syst_JES_MJB_Stat13: 4.100630286919317e-06 - syst_JES_MJB_Stat14: 6.198143814885227e-07 - syst_JES_MJB_Stat15: 1.972082635603206e-08 - syst_JES_MJB_Stat16: 1.2288900479991447e-11 - syst_JES_MJB_Stat2: 0.001260066962506358 - syst_JES_MJB_Stat3: 0.0012462105560458073 - syst_JES_MJB_Stat4: 0.0004239194351524827 + syst_JES_EtaIntercalibration_Stat91: 3.48274553e-07 + syst_JES_EtaIntercalibration_Stat92: 1.34844489e-05 + syst_JES_EtaIntercalibration_Stat93: 2.87541310e-05 + syst_JES_EtaIntercalibration_Stat94: 3.71587867e-06 + syst_JES_EtaIntercalibration_Stat95: 1.36653872e-09 + syst_JES_EtaIntercalibration_Stat96: 3.77300966e-11 + syst_JES_EtaIntercalibration_Stat97: 7.89295553e-15 + syst_JES_EtaIntercalibration_Stat98: 7.89295553e-15 + syst_JES_EtaIntercalibration_Stat99: 7.89295553e-15 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.42169151e-02 + syst_JES_Flavour_Comp: 4.48462314e-02 + syst_JES_Gjet_Generator: 9.17933074e-02 + syst_JES_Gjet_OOC: 6.95105755e-02 + syst_JES_Gjet_Purity: 2.34307213e-02 + syst_JES_Gjet_Stat1: 2.81111846e-08 + syst_JES_Gjet_Stat10: 2.87804217e-03 + syst_JES_Gjet_Stat11: 4.55500285e-03 + syst_JES_Gjet_Stat12: 1.24107782e-02 + syst_JES_Gjet_Stat13: 1.61250760e-02 + syst_JES_Gjet_Stat14: 2.27941707e-03 + syst_JES_Gjet_Stat15: 2.80863454e-03 + syst_JES_Gjet_Stat2: 1.91045204e-10 + syst_JES_Gjet_Stat3: 5.36675943e-10 + syst_JES_Gjet_Stat4: 3.15236054e-04 + syst_JES_Gjet_Stat5: 5.73566340e-05 + syst_JES_Gjet_Stat6: 6.41648040e-04 + syst_JES_Gjet_Stat7: 8.76114427e-04 + syst_JES_Gjet_Stat8: 5.01400548e-04 + syst_JES_Gjet_Stat9: 1.42157424e-03 + syst_JES_Gjet_Veto: 4.72550259e-02 + syst_JES_Gjet_dPhi: 5.40519979e-03 + syst_JES_LArESZee: 1.32452047e-01 + syst_JES_LArEsmear: 9.80032387e-03 + syst_JES_LAr_JVT: 1.30173175e-02 + syst_JES_MJB_Alpha: 8.87010891e-04 + syst_JES_MJB_Asym: 4.09087737e-03 + syst_JES_MJB_Beta: 5.86946461e-04 + syst_JES_MJB_Stat1: 1.79007451e-04 + syst_JES_MJB_Stat10: 6.40114263e-06 + syst_JES_MJB_Stat11: 1.59265934e-09 + syst_JES_MJB_Stat12: 4.22100782e-06 + syst_JES_MJB_Stat13: 4.10063029e-06 + syst_JES_MJB_Stat14: 6.19814381e-07 + syst_JES_MJB_Stat15: 1.97208264e-08 + syst_JES_MJB_Stat16: 1.22889005e-11 + syst_JES_MJB_Stat2: 1.26006696e-03 + syst_JES_MJB_Stat3: 1.24621056e-03 + syst_JES_MJB_Stat4: 4.23919435e-04 syst_JES_MJB_Stat5: 0.0 - syst_JES_MJB_Stat6: 5.621370895964792e-06 - syst_JES_MJB_Stat7: 2.504545467744597e-12 - syst_JES_MJB_Stat8: 2.4698020522300973e-09 - syst_JES_MJB_Stat9: 4.844999388028858e-06 - syst_JES_MJB_Threshold: 0.005966234490866076 - syst_JES_Pileup_MuOffset: 0.011238851275819962 - syst_JES_Pileup_NPVOffset: 0.012617532920503912 - syst_JES_Pileup_Pt_term: 0.020263071706925383 - syst_JES_PunchThrough_MC15: 0.004335973593093021 + syst_JES_MJB_Stat6: 5.62137090e-06 + syst_JES_MJB_Stat7: 2.50454547e-12 + syst_JES_MJB_Stat8: 2.46980205e-09 + syst_JES_MJB_Stat9: 4.84499939e-06 + syst_JES_MJB_Threshold: 5.96623449e-03 + syst_JES_Pileup_MuOffset: 1.12388513e-02 + syst_JES_Pileup_NPVOffset: 1.26175329e-02 + syst_JES_Pileup_Pt_term: 2.02630717e-02 + syst_JES_PunchThrough_MC15: 4.33597359e-03 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.07081500317729288 - syst_JES_Zjet_MuScale: 0.004270871339668288 - syst_JES_Zjet_MuSmearID: 0.0007105113721820361 - syst_JES_Zjet_MuSmearMS: 0.018280547037766676 - syst_JES_Zjet_OOC: 0.028855021660016127 - syst_JES_Zjet_Stat1: 0.0009395200516753221 - syst_JES_Zjet_Stat10: 0.0024185050651177064 - syst_JES_Zjet_Stat11: 0.002674248445825481 - syst_JES_Zjet_Stat12: 0.018409108479228428 - syst_JES_Zjet_Stat13: 0.01804013858039899 - syst_JES_Zjet_Stat2: 2.6560999129652e-14 - syst_JES_Zjet_Stat3: 0.0005422830142093702 - syst_JES_Zjet_Stat4: 0.0005420888672533315 - syst_JES_Zjet_Stat5: 0.0006867879439827115 - syst_JES_Zjet_Stat6: 0.0005576241386453782 - syst_JES_Zjet_Stat7: 0.0004091191635697355 - syst_JES_Zjet_Stat8: 0.0005157230337109252 - syst_JES_Zjet_Stat9: 0.0012319462924575892 - syst_JES_Zjet_Veto: 0.005851206029529297 - syst_JES_Zjet_dPhi: 0.004930152330303801 + syst_JES_Zjet_MC: 7.08150032e-02 + syst_JES_Zjet_MuScale: 4.27087134e-03 + syst_JES_Zjet_MuSmearID: 7.10511372e-04 + syst_JES_Zjet_MuSmearMS: 1.82805470e-02 + syst_JES_Zjet_OOC: 2.88550217e-02 + syst_JES_Zjet_Stat1: 9.39520052e-04 + syst_JES_Zjet_Stat10: 2.41850507e-03 + syst_JES_Zjet_Stat11: 2.67424845e-03 + syst_JES_Zjet_Stat12: 1.84091085e-02 + syst_JES_Zjet_Stat13: 1.80401386e-02 + syst_JES_Zjet_Stat2: 2.65609991e-14 + syst_JES_Zjet_Stat3: 5.42283014e-04 + syst_JES_Zjet_Stat4: 5.42088867e-04 + syst_JES_Zjet_Stat5: 6.86787944e-04 + syst_JES_Zjet_Stat6: 5.57624139e-04 + syst_JES_Zjet_Stat7: 4.09119164e-04 + syst_JES_Zjet_Stat8: 5.15723034e-04 + syst_JES_Zjet_Stat9: 1.23194629e-03 + syst_JES_Zjet_Veto: 5.85120603e-03 + syst_JES_Zjet_dPhi: 4.93015233e-03 syst_PRW: 0.006467 - syst_Unfolding_bias: 2.134e-09 - syst_cleaning: 0.022707186087227983 + syst_Unfolding_bias: 2.13400000e-09 + syst_cleaning: 2.27071861e-02 syst_lumi: 0.08972 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.012752028309253394 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 0.025535079302794417 - syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.004755667224480704 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.27520283e-02 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 2.55350793e-02 + syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 4.75566722e-03 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 0.03555511882978315 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.01337729703639715 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.026590060172929284 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 3.55551188e-02 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.33772970e-02 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 2.65900602e-02 - stat: 0.016125 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.0225776172347748 - syst_JER_NP1: 0.0012742077960442718 - syst_JER_NP2: 0.01115571453336809 - syst_JER_NP3: 0.0017275145751917695 - syst_JER_NP4: 6.076016458173892e-06 - syst_JER_NP5: 0.0028200756638785424 - syst_JER_NP6: 1.204706050246283e-05 - syst_JER_NP7: 1.4388727905899119e-05 - syst_JER_NP8: 0.0027025637827810837 - syst_JES_EtaIntercalibration_Modelling: 0.11078777312952906 - syst_JES_EtaIntercalibration_NonClosure: 0.00013720752603264878 - syst_JES_EtaIntercalibration_Stat0: 1.0956087383276933e-15 + syst_JER_NP0: 2.25776172e-02 + syst_JER_NP1: 1.27420780e-03 + syst_JER_NP2: 1.11557145e-02 + syst_JER_NP3: 1.72751458e-03 + syst_JER_NP4: 6.07601646e-06 + syst_JER_NP5: 2.82007566e-03 + syst_JER_NP6: 1.20470605e-05 + syst_JER_NP7: 1.43887279e-05 + syst_JER_NP8: 2.70256378e-03 + syst_JES_EtaIntercalibration_Modelling: 1.10787773e-01 + syst_JES_EtaIntercalibration_NonClosure: 1.37207526e-04 + syst_JES_EtaIntercalibration_Stat0: 1.09560874e-15 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 1.8839662868699556e-10 - syst_JES_EtaIntercalibration_Stat101: 3.1896493020393322e-06 - syst_JES_EtaIntercalibration_Stat102: 4.463560910304686e-06 - syst_JES_EtaIntercalibration_Stat103: 4.144633638815378e-06 - syst_JES_EtaIntercalibration_Stat104: 3.960418781123406e-07 - syst_JES_EtaIntercalibration_Stat105: 1.0495346159131675e-15 - syst_JES_EtaIntercalibration_Stat106: 1.0956087383276933e-15 - syst_JES_EtaIntercalibration_Stat107: 1.0956087383276933e-15 - syst_JES_EtaIntercalibration_Stat108: 1.0956087383276933e-15 - syst_JES_EtaIntercalibration_Stat109: 1.0956087383276933e-15 + syst_JES_EtaIntercalibration_Stat100: 1.88396629e-10 + syst_JES_EtaIntercalibration_Stat101: 3.18964930e-06 + syst_JES_EtaIntercalibration_Stat102: 4.46356091e-06 + syst_JES_EtaIntercalibration_Stat103: 4.14463364e-06 + syst_JES_EtaIntercalibration_Stat104: 3.96041878e-07 + syst_JES_EtaIntercalibration_Stat105: 1.04953462e-15 + syst_JES_EtaIntercalibration_Stat106: 1.09560874e-15 + syst_JES_EtaIntercalibration_Stat107: 1.09560874e-15 + syst_JES_EtaIntercalibration_Stat108: 1.09560874e-15 + syst_JES_EtaIntercalibration_Stat109: 1.09560874e-15 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 2.1523886730792837e-13 - syst_JES_EtaIntercalibration_Stat111: 9.299990362898232e-07 - syst_JES_EtaIntercalibration_Stat112: 1.3084213426874386e-05 - syst_JES_EtaIntercalibration_Stat113: 8.612791249502103e-06 - syst_JES_EtaIntercalibration_Stat114: 2.2605646971498074e-05 - syst_JES_EtaIntercalibration_Stat115: 1.571725395869377e-07 - syst_JES_EtaIntercalibration_Stat116: 4.278666441872807e-12 - syst_JES_EtaIntercalibration_Stat117: 1.0956087383276933e-15 - syst_JES_EtaIntercalibration_Stat118: 1.0956087383276933e-15 - syst_JES_EtaIntercalibration_Stat119: 1.0956087383276933e-15 + syst_JES_EtaIntercalibration_Stat110: 2.15238867e-13 + syst_JES_EtaIntercalibration_Stat111: 9.29999036e-07 + syst_JES_EtaIntercalibration_Stat112: 1.30842134e-05 + syst_JES_EtaIntercalibration_Stat113: 8.61279125e-06 + syst_JES_EtaIntercalibration_Stat114: 2.26056470e-05 + syst_JES_EtaIntercalibration_Stat115: 1.57172540e-07 + syst_JES_EtaIntercalibration_Stat116: 4.27866644e-12 + syst_JES_EtaIntercalibration_Stat117: 1.09560874e-15 + syst_JES_EtaIntercalibration_Stat118: 1.09560874e-15 + syst_JES_EtaIntercalibration_Stat119: 1.09560874e-15 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 1.6861514611683021e-09 - syst_JES_EtaIntercalibration_Stat121: 1.3275088728517036e-05 - syst_JES_EtaIntercalibration_Stat122: 2.1829815093124357e-05 - syst_JES_EtaIntercalibration_Stat123: 1.6612310758892035e-05 - syst_JES_EtaIntercalibration_Stat124: 6.192651350592894e-06 - syst_JES_EtaIntercalibration_Stat125: 6.477003994903817e-12 - syst_JES_EtaIntercalibration_Stat126: 1.0956087383276933e-15 - syst_JES_EtaIntercalibration_Stat127: 1.0956087383276933e-15 - syst_JES_EtaIntercalibration_Stat128: 1.0956087383276933e-15 - syst_JES_EtaIntercalibration_Stat129: 9.66032535515756e-07 + syst_JES_EtaIntercalibration_Stat120: 1.68615146e-09 + syst_JES_EtaIntercalibration_Stat121: 1.32750887e-05 + syst_JES_EtaIntercalibration_Stat122: 2.18298151e-05 + syst_JES_EtaIntercalibration_Stat123: 1.66123108e-05 + syst_JES_EtaIntercalibration_Stat124: 6.19265135e-06 + syst_JES_EtaIntercalibration_Stat125: 6.47700399e-12 + syst_JES_EtaIntercalibration_Stat126: 1.09560874e-15 + syst_JES_EtaIntercalibration_Stat127: 1.09560874e-15 + syst_JES_EtaIntercalibration_Stat128: 1.09560874e-15 + syst_JES_EtaIntercalibration_Stat129: 9.66032536e-07 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 2.834212700204415e-05 - syst_JES_EtaIntercalibration_Stat131: 0.00010311097225804827 - syst_JES_EtaIntercalibration_Stat132: 0.00014144228531454093 - syst_JES_EtaIntercalibration_Stat133: 4.6551695208123195e-05 - syst_JES_EtaIntercalibration_Stat134: 4.0346636848782085e-06 - syst_JES_EtaIntercalibration_Stat135: 4.2790315200989115e-12 + syst_JES_EtaIntercalibration_Stat130: 2.83421270e-05 + syst_JES_EtaIntercalibration_Stat131: 1.03110972e-04 + syst_JES_EtaIntercalibration_Stat132: 1.41442285e-04 + syst_JES_EtaIntercalibration_Stat133: 4.65516952e-05 + syst_JES_EtaIntercalibration_Stat134: 4.03466368e-06 + syst_JES_EtaIntercalibration_Stat135: 4.27903152e-12 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 syst_JES_EtaIntercalibration_Stat138: 0.0 - syst_JES_EtaIntercalibration_Stat139: 5.511938588191998e-06 - syst_JES_EtaIntercalibration_Stat14: 1.90352502628537e-10 - syst_JES_EtaIntercalibration_Stat140: 2.5108151997906978e-05 - syst_JES_EtaIntercalibration_Stat141: 0.0001714743931320359 - syst_JES_EtaIntercalibration_Stat142: 8.41471009601638e-05 - syst_JES_EtaIntercalibration_Stat143: 7.328929090834537e-06 - syst_JES_EtaIntercalibration_Stat144: 4.3753723270140105e-08 + syst_JES_EtaIntercalibration_Stat139: 5.51193859e-06 + syst_JES_EtaIntercalibration_Stat14: 1.90352503e-10 + syst_JES_EtaIntercalibration_Stat140: 2.51081520e-05 + syst_JES_EtaIntercalibration_Stat141: 1.71474393e-04 + syst_JES_EtaIntercalibration_Stat142: 8.41471010e-05 + syst_JES_EtaIntercalibration_Stat143: 7.32892909e-06 + syst_JES_EtaIntercalibration_Stat144: 4.37537233e-08 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 3.858262141171851e-08 - syst_JES_EtaIntercalibration_Stat148: 2.6671398281070677e-05 - syst_JES_EtaIntercalibration_Stat149: 0.0001448959223028723 - syst_JES_EtaIntercalibration_Stat15: 1.9000692479392106e-10 - syst_JES_EtaIntercalibration_Stat150: 0.0001447302604848067 - syst_JES_EtaIntercalibration_Stat151: 3.39298936485218e-05 - syst_JES_EtaIntercalibration_Stat152: 1.6361867466765523e-07 + syst_JES_EtaIntercalibration_Stat147: 3.85826214e-08 + syst_JES_EtaIntercalibration_Stat148: 2.66713983e-05 + syst_JES_EtaIntercalibration_Stat149: 1.44895922e-04 + syst_JES_EtaIntercalibration_Stat15: 1.90006925e-10 + syst_JES_EtaIntercalibration_Stat150: 1.44730260e-04 + syst_JES_EtaIntercalibration_Stat151: 3.39298936e-05 + syst_JES_EtaIntercalibration_Stat152: 1.63618675e-07 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 syst_JES_EtaIntercalibration_Stat156: 0.0 - syst_JES_EtaIntercalibration_Stat157: 6.12357090838344e-07 - syst_JES_EtaIntercalibration_Stat158: 5.682795328885248e-05 - syst_JES_EtaIntercalibration_Stat159: 0.0002852737763973408 - syst_JES_EtaIntercalibration_Stat16: 1.892283501074501e-10 - syst_JES_EtaIntercalibration_Stat160: 0.00010890576695014822 - syst_JES_EtaIntercalibration_Stat161: 2.420994578680423e-06 - syst_JES_EtaIntercalibration_Stat162: 4.3373927744671684e-08 + syst_JES_EtaIntercalibration_Stat157: 6.12357091e-07 + syst_JES_EtaIntercalibration_Stat158: 5.68279533e-05 + syst_JES_EtaIntercalibration_Stat159: 2.85273776e-04 + syst_JES_EtaIntercalibration_Stat16: 1.89228350e-10 + syst_JES_EtaIntercalibration_Stat160: 1.08905767e-04 + syst_JES_EtaIntercalibration_Stat161: 2.42099458e-06 + syst_JES_EtaIntercalibration_Stat162: 4.33739277e-08 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 4.4429486830257225e-08 - syst_JES_EtaIntercalibration_Stat166: 0.00013555109848319193 - syst_JES_EtaIntercalibration_Stat167: 0.0004616518493410375 - syst_JES_EtaIntercalibration_Stat168: 0.0005938875590547423 - syst_JES_EtaIntercalibration_Stat169: 0.00010627502481768706 - syst_JES_EtaIntercalibration_Stat17: 9.067285977623072e-16 - syst_JES_EtaIntercalibration_Stat170: 3.696047179081999e-06 + syst_JES_EtaIntercalibration_Stat165: 4.44294868e-08 + syst_JES_EtaIntercalibration_Stat166: 1.35551098e-04 + syst_JES_EtaIntercalibration_Stat167: 4.61651849e-04 + syst_JES_EtaIntercalibration_Stat168: 5.93887559e-04 + syst_JES_EtaIntercalibration_Stat169: 1.06275025e-04 + syst_JES_EtaIntercalibration_Stat17: 9.06728598e-16 + syst_JES_EtaIntercalibration_Stat170: 3.69604718e-06 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 - syst_JES_EtaIntercalibration_Stat175: 2.6368937156245035e-05 - syst_JES_EtaIntercalibration_Stat176: 0.00031012331015259077 - syst_JES_EtaIntercalibration_Stat177: 0.0009170646814701785 - syst_JES_EtaIntercalibration_Stat178: 0.0006449342369575367 - syst_JES_EtaIntercalibration_Stat179: 5.4203784000750357e-05 + syst_JES_EtaIntercalibration_Stat175: 2.63689372e-05 + syst_JES_EtaIntercalibration_Stat176: 3.10123310e-04 + syst_JES_EtaIntercalibration_Stat177: 9.17064681e-04 + syst_JES_EtaIntercalibration_Stat178: 6.44934237e-04 + syst_JES_EtaIntercalibration_Stat179: 5.42037840e-05 syst_JES_EtaIntercalibration_Stat18: 0.0 - syst_JES_EtaIntercalibration_Stat180: 6.11845825066613e-06 + syst_JES_EtaIntercalibration_Stat180: 6.11845825e-06 syst_JES_EtaIntercalibration_Stat181: 0.0 - syst_JES_EtaIntercalibration_Stat182: 5.269646827587215e-06 - syst_JES_EtaIntercalibration_Stat183: 0.00045468139119607696 - syst_JES_EtaIntercalibration_Stat184: 0.0018675836661311855 - syst_JES_EtaIntercalibration_Stat185: 0.0029765663103650153 - syst_JES_EtaIntercalibration_Stat186: 0.0006117307495949506 - syst_JES_EtaIntercalibration_Stat187: 1.4905949709763548e-05 + syst_JES_EtaIntercalibration_Stat182: 5.26964683e-06 + syst_JES_EtaIntercalibration_Stat183: 4.54681391e-04 + syst_JES_EtaIntercalibration_Stat184: 1.86758367e-03 + syst_JES_EtaIntercalibration_Stat185: 2.97656631e-03 + syst_JES_EtaIntercalibration_Stat186: 6.11730750e-04 + syst_JES_EtaIntercalibration_Stat187: 1.49059497e-05 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 - syst_JES_EtaIntercalibration_Stat192: 2.204540938608308e-06 - syst_JES_EtaIntercalibration_Stat193: 0.0010989264431707885 - syst_JES_EtaIntercalibration_Stat194: 0.003149128887486189 - syst_JES_EtaIntercalibration_Stat195: 0.002131112561550891 - syst_JES_EtaIntercalibration_Stat196: 0.00035205120376871315 - syst_JES_EtaIntercalibration_Stat197: 5.212015541035925e-06 - syst_JES_EtaIntercalibration_Stat198: 0.00035302465919535993 - syst_JES_EtaIntercalibration_Stat199: 0.002921820793614831 + syst_JES_EtaIntercalibration_Stat192: 2.20454094e-06 + syst_JES_EtaIntercalibration_Stat193: 1.09892644e-03 + syst_JES_EtaIntercalibration_Stat194: 3.14912889e-03 + syst_JES_EtaIntercalibration_Stat195: 2.13111256e-03 + syst_JES_EtaIntercalibration_Stat196: 3.52051204e-04 + syst_JES_EtaIntercalibration_Stat197: 5.21201554e-06 + syst_JES_EtaIntercalibration_Stat198: 3.53024659e-04 + syst_JES_EtaIntercalibration_Stat199: 2.92182079e-03 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 0.003493976352238235 - syst_JES_EtaIntercalibration_Stat201: 0.000906356254460684 - syst_JES_EtaIntercalibration_Stat202: 5.445988043275527e-05 + syst_JES_EtaIntercalibration_Stat200: 3.49397635e-03 + syst_JES_EtaIntercalibration_Stat201: 9.06356254e-04 + syst_JES_EtaIntercalibration_Stat202: 5.44598804e-05 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 - syst_JES_EtaIntercalibration_Stat207: 9.407346955970105e-06 - syst_JES_EtaIntercalibration_Stat208: 0.0012375074979570832 - syst_JES_EtaIntercalibration_Stat209: 0.003474645017839952 + syst_JES_EtaIntercalibration_Stat207: 9.40734696e-06 + syst_JES_EtaIntercalibration_Stat208: 1.23750750e-03 + syst_JES_EtaIntercalibration_Stat209: 3.47464502e-03 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 0.0023161672543234005 - syst_JES_EtaIntercalibration_Stat211: 0.0004019448603975426 - syst_JES_EtaIntercalibration_Stat212: 0.0006050153799697988 - syst_JES_EtaIntercalibration_Stat213: 0.0008524977653929657 - syst_JES_EtaIntercalibration_Stat214: 0.00011311118280258588 - syst_JES_EtaIntercalibration_Stat215: 5.386327977388677e-06 + syst_JES_EtaIntercalibration_Stat210: 2.31616725e-03 + syst_JES_EtaIntercalibration_Stat211: 4.01944860e-04 + syst_JES_EtaIntercalibration_Stat212: 6.05015380e-04 + syst_JES_EtaIntercalibration_Stat213: 8.52497765e-04 + syst_JES_EtaIntercalibration_Stat214: 1.13111183e-04 + syst_JES_EtaIntercalibration_Stat215: 5.38632798e-06 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 syst_JES_EtaIntercalibration_Stat219: 0.0 - syst_JES_EtaIntercalibration_Stat22: 1.0956087383276933e-15 - syst_JES_EtaIntercalibration_Stat220: 4.764306743903041e-06 - syst_JES_EtaIntercalibration_Stat221: 0.00019263652301679452 - syst_JES_EtaIntercalibration_Stat222: 0.0009171248442823911 - syst_JES_EtaIntercalibration_Stat223: 0.0007837814539142911 - syst_JES_EtaIntercalibration_Stat224: 0.00024379039419140366 - syst_JES_EtaIntercalibration_Stat225: 0.00032818219890024507 - syst_JES_EtaIntercalibration_Stat226: 0.0001335206478414481 - syst_JES_EtaIntercalibration_Stat227: 4.723498537101499e-06 + syst_JES_EtaIntercalibration_Stat22: 1.09560874e-15 + syst_JES_EtaIntercalibration_Stat220: 4.76430674e-06 + syst_JES_EtaIntercalibration_Stat221: 1.92636523e-04 + syst_JES_EtaIntercalibration_Stat222: 9.17124844e-04 + syst_JES_EtaIntercalibration_Stat223: 7.83781454e-04 + syst_JES_EtaIntercalibration_Stat224: 2.43790394e-04 + syst_JES_EtaIntercalibration_Stat225: 3.28182199e-04 + syst_JES_EtaIntercalibration_Stat226: 1.33520648e-04 + syst_JES_EtaIntercalibration_Stat227: 4.72349854e-06 syst_JES_EtaIntercalibration_Stat228: 0.0 syst_JES_EtaIntercalibration_Stat229: 0.0 - syst_JES_EtaIntercalibration_Stat23: 1.0956087383276933e-15 + syst_JES_EtaIntercalibration_Stat23: 1.09560874e-15 syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 - syst_JES_EtaIntercalibration_Stat232: 3.3057287774407625e-06 - syst_JES_EtaIntercalibration_Stat233: 0.0001111889503278091 - syst_JES_EtaIntercalibration_Stat234: 0.00020149178643309512 - syst_JES_EtaIntercalibration_Stat235: 0.00017941931334168016 - syst_JES_EtaIntercalibration_Stat236: 3.55241680937077e-05 - syst_JES_EtaIntercalibration_Stat237: 3.178957064824877e-05 - syst_JES_EtaIntercalibration_Stat238: 6.819084029398671e-08 + syst_JES_EtaIntercalibration_Stat232: 3.30572878e-06 + syst_JES_EtaIntercalibration_Stat233: 1.11188950e-04 + syst_JES_EtaIntercalibration_Stat234: 2.01491786e-04 + syst_JES_EtaIntercalibration_Stat235: 1.79419313e-04 + syst_JES_EtaIntercalibration_Stat236: 3.55241681e-05 + syst_JES_EtaIntercalibration_Stat237: 3.17895706e-05 + syst_JES_EtaIntercalibration_Stat238: 6.81908403e-08 syst_JES_EtaIntercalibration_Stat239: 0.0 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 - syst_JES_EtaIntercalibration_Stat243: 1.1663957887762626e-06 - syst_JES_EtaIntercalibration_Stat244: 8.443451945146606e-06 - syst_JES_EtaIntercalibration_Stat245: 2.22243396977278e-05 - syst_JES_EtaIntercalibration_Stat25: 8.839521296427766e-16 - syst_JES_EtaIntercalibration_Stat26: 1.5707631902995433e-13 - syst_JES_EtaIntercalibration_Stat27: 1.5695845985721827e-10 - syst_JES_EtaIntercalibration_Stat28: 5.082554906283322e-06 - syst_JES_EtaIntercalibration_Stat29: 1.7486472714644312e-10 + syst_JES_EtaIntercalibration_Stat243: 1.16639579e-06 + syst_JES_EtaIntercalibration_Stat244: 8.44345195e-06 + syst_JES_EtaIntercalibration_Stat245: 2.22243397e-05 + syst_JES_EtaIntercalibration_Stat25: 8.83952130e-16 + syst_JES_EtaIntercalibration_Stat26: 1.57076319e-13 + syst_JES_EtaIntercalibration_Stat27: 1.56958460e-10 + syst_JES_EtaIntercalibration_Stat28: 5.08255491e-06 + syst_JES_EtaIntercalibration_Stat29: 1.74864727e-10 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 1.0036001633957618e-14 + syst_JES_EtaIntercalibration_Stat30: 1.00360016e-14 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 1.533468313986305e-15 - syst_JES_EtaIntercalibration_Stat36: 1.850634461062138e-10 - syst_JES_EtaIntercalibration_Stat37: 4.555290812505952e-06 - syst_JES_EtaIntercalibration_Stat38: 4.552692612453595e-06 - syst_JES_EtaIntercalibration_Stat39: 6.588967319717105e-12 - syst_JES_EtaIntercalibration_Stat4: 1.2120025525963218e-15 - syst_JES_EtaIntercalibration_Stat40: 6.076900258355406e-16 + syst_JES_EtaIntercalibration_Stat35: 1.53346831e-15 + syst_JES_EtaIntercalibration_Stat36: 1.85063446e-10 + syst_JES_EtaIntercalibration_Stat37: 4.55529081e-06 + syst_JES_EtaIntercalibration_Stat38: 4.55269261e-06 + syst_JES_EtaIntercalibration_Stat39: 6.58896732e-12 + syst_JES_EtaIntercalibration_Stat4: 1.21200255e-15 + syst_JES_EtaIntercalibration_Stat40: 6.07690026e-16 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 - syst_JES_EtaIntercalibration_Stat44: 1.0956087383276933e-15 + syst_JES_EtaIntercalibration_Stat44: 1.09560874e-15 syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 - syst_JES_EtaIntercalibration_Stat47: 8.843851423446686e-16 - syst_JES_EtaIntercalibration_Stat48: 7.59670263996163e-12 - syst_JES_EtaIntercalibration_Stat49: 4.74965922461812e-10 - syst_JES_EtaIntercalibration_Stat5: 1.2771493373916772e-12 - syst_JES_EtaIntercalibration_Stat50: 4.007072321985138e-06 - syst_JES_EtaIntercalibration_Stat51: 1.5628288341884246e-07 - syst_JES_EtaIntercalibration_Stat52: 1.0994749417335532e-12 + syst_JES_EtaIntercalibration_Stat47: 8.84385142e-16 + syst_JES_EtaIntercalibration_Stat48: 7.59670264e-12 + syst_JES_EtaIntercalibration_Stat49: 4.74965922e-10 + syst_JES_EtaIntercalibration_Stat5: 1.27714934e-12 + syst_JES_EtaIntercalibration_Stat50: 4.00707232e-06 + syst_JES_EtaIntercalibration_Stat51: 1.56282883e-07 + syst_JES_EtaIntercalibration_Stat52: 1.09947494e-12 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 syst_JES_EtaIntercalibration_Stat56: 0.0 - syst_JES_EtaIntercalibration_Stat57: 1.9035277000228465e-10 - syst_JES_EtaIntercalibration_Stat58: 1.7172558363563653e-10 - syst_JES_EtaIntercalibration_Stat59: 1.2471435537559419e-05 - syst_JES_EtaIntercalibration_Stat6: 1.0281349993434714e-11 - syst_JES_EtaIntercalibration_Stat60: 4.574079848811309e-06 - syst_JES_EtaIntercalibration_Stat61: 3.4807234291271976e-10 - syst_JES_EtaIntercalibration_Stat62: 9.249151312417804e-16 + syst_JES_EtaIntercalibration_Stat57: 1.90352770e-10 + syst_JES_EtaIntercalibration_Stat58: 1.71725584e-10 + syst_JES_EtaIntercalibration_Stat59: 1.24714355e-05 + syst_JES_EtaIntercalibration_Stat6: 1.02813500e-11 + syst_JES_EtaIntercalibration_Stat60: 4.57407985e-06 + syst_JES_EtaIntercalibration_Stat61: 3.48072343e-10 + syst_JES_EtaIntercalibration_Stat62: 9.24915131e-16 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 - syst_JES_EtaIntercalibration_Stat69: 1.2900214213337699e-15 - syst_JES_EtaIntercalibration_Stat7: 1.1018434016719437e-12 - syst_JES_EtaIntercalibration_Stat70: 1.9315891145634467e-10 - syst_JES_EtaIntercalibration_Stat71: 8.879742507622336e-06 - syst_JES_EtaIntercalibration_Stat72: 2.3951677389433498e-05 - syst_JES_EtaIntercalibration_Stat73: 4.0132685739607255e-06 - syst_JES_EtaIntercalibration_Stat74: 1.3301781346872307e-11 + syst_JES_EtaIntercalibration_Stat69: 1.29002142e-15 + syst_JES_EtaIntercalibration_Stat7: 1.10184340e-12 + syst_JES_EtaIntercalibration_Stat70: 1.93158911e-10 + syst_JES_EtaIntercalibration_Stat71: 8.87974251e-06 + syst_JES_EtaIntercalibration_Stat72: 2.39516774e-05 + syst_JES_EtaIntercalibration_Stat73: 4.01326857e-06 + syst_JES_EtaIntercalibration_Stat74: 1.33017813e-11 syst_JES_EtaIntercalibration_Stat75: 0.0 syst_JES_EtaIntercalibration_Stat76: 0.0 syst_JES_EtaIntercalibration_Stat77: 0.0 syst_JES_EtaIntercalibration_Stat78: 0.0 - syst_JES_EtaIntercalibration_Stat79: 1.8745173031921444e-10 + syst_JES_EtaIntercalibration_Stat79: 1.87451730e-10 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 1.3197149190260751e-06 - syst_JES_EtaIntercalibration_Stat81: 2.796714635067368e-06 - syst_JES_EtaIntercalibration_Stat82: 4.4029672665147085e-06 - syst_JES_EtaIntercalibration_Stat83: 4.4204643271380436e-08 - syst_JES_EtaIntercalibration_Stat84: 4.584883095565252e-16 - syst_JES_EtaIntercalibration_Stat85: 1.0956087383276933e-15 - syst_JES_EtaIntercalibration_Stat86: 1.0956087383276933e-15 - syst_JES_EtaIntercalibration_Stat87: 1.0956087383276933e-15 - syst_JES_EtaIntercalibration_Stat88: 1.0956087383276933e-15 - syst_JES_EtaIntercalibration_Stat89: 1.0956087383276933e-15 + syst_JES_EtaIntercalibration_Stat80: 1.31971492e-06 + syst_JES_EtaIntercalibration_Stat81: 2.79671464e-06 + syst_JES_EtaIntercalibration_Stat82: 4.40296727e-06 + syst_JES_EtaIntercalibration_Stat83: 4.42046433e-08 + syst_JES_EtaIntercalibration_Stat84: 4.58488310e-16 + syst_JES_EtaIntercalibration_Stat85: 1.09560874e-15 + syst_JES_EtaIntercalibration_Stat86: 1.09560874e-15 + syst_JES_EtaIntercalibration_Stat87: 1.09560874e-15 + syst_JES_EtaIntercalibration_Stat88: 1.09560874e-15 + syst_JES_EtaIntercalibration_Stat89: 1.09560874e-15 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 5.795348913799324e-08 - syst_JES_EtaIntercalibration_Stat92: 8.580751626023214e-06 - syst_JES_EtaIntercalibration_Stat93: 2.4052611433064813e-05 - syst_JES_EtaIntercalibration_Stat94: 4.0368097293864055e-06 - syst_JES_EtaIntercalibration_Stat95: 1.5901353110663256e-10 - syst_JES_EtaIntercalibration_Stat96: 4.278666441872807e-12 - syst_JES_EtaIntercalibration_Stat97: 1.0956087383276933e-15 - syst_JES_EtaIntercalibration_Stat98: 1.0956087383276933e-15 - syst_JES_EtaIntercalibration_Stat99: 1.0956087383276933e-15 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.010225401752498529 - syst_JES_Flavour_Comp: 0.03124677263334567 - syst_JES_Gjet_Generator: 0.05589764283938993 - syst_JES_Gjet_OOC: 0.04339950690964127 - syst_JES_Gjet_Purity: 0.014228676783172776 - syst_JES_Gjet_Stat1: 4.968387741511325e-07 - syst_JES_Gjet_Stat10: 0.0015874308646363156 - syst_JES_Gjet_Stat11: 0.0022119653591320095 - syst_JES_Gjet_Stat12: 0.0071595038061307015 - syst_JES_Gjet_Stat13: 0.01209463364472029 - syst_JES_Gjet_Stat14: 0.004503500721660872 - syst_JES_Gjet_Stat15: 0.002506583880503503 - syst_JES_Gjet_Stat2: 2.0620064864107484e-11 - syst_JES_Gjet_Stat3: 2.9150415091384204e-08 - syst_JES_Gjet_Stat4: 0.00018072458908516018 - syst_JES_Gjet_Stat5: 1.2236046245173678e-05 - syst_JES_Gjet_Stat6: 0.000390691473544023 - syst_JES_Gjet_Stat7: 0.0005100076077863937 - syst_JES_Gjet_Stat8: 0.00031573837270753143 - syst_JES_Gjet_Stat9: 0.000817630605775004 - syst_JES_Gjet_Veto: 0.03249944114904132 - syst_JES_Gjet_dPhi: 0.003622761377733841 - syst_JES_LArESZee: 0.08230828436433359 - syst_JES_LArEsmear: 0.006182967006219586 - syst_JES_LAr_JVT: 0.008334686136862024 - syst_JES_MJB_Alpha: 0.0005295933038662781 - syst_JES_MJB_Asym: 0.0027936662291691183 - syst_JES_MJB_Beta: 0.0003884130887341465 - syst_JES_MJB_Stat1: 3.907506621875391e-05 - syst_JES_MJB_Stat10: 4.352882722977958e-06 - syst_JES_MJB_Stat11: 8.588659375449698e-08 - syst_JES_MJB_Stat12: 3.4250438424099714e-06 - syst_JES_MJB_Stat13: 4.503332099679078e-06 - syst_JES_MJB_Stat14: 1.06832893810848e-06 - syst_JES_MJB_Stat15: 1.357358600500251e-07 - syst_JES_MJB_Stat16: 6.769720688192763e-10 - syst_JES_MJB_Stat2: 0.0006934265408102 - syst_JES_MJB_Stat3: 0.0008391786162671211 - syst_JES_MJB_Stat4: 0.00026500377355803825 + syst_JES_EtaIntercalibration_Stat91: 5.79534891e-08 + syst_JES_EtaIntercalibration_Stat92: 8.58075163e-06 + syst_JES_EtaIntercalibration_Stat93: 2.40526114e-05 + syst_JES_EtaIntercalibration_Stat94: 4.03680973e-06 + syst_JES_EtaIntercalibration_Stat95: 1.59013531e-10 + syst_JES_EtaIntercalibration_Stat96: 4.27866644e-12 + syst_JES_EtaIntercalibration_Stat97: 1.09560874e-15 + syst_JES_EtaIntercalibration_Stat98: 1.09560874e-15 + syst_JES_EtaIntercalibration_Stat99: 1.09560874e-15 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.02254018e-02 + syst_JES_Flavour_Comp: 3.12467726e-02 + syst_JES_Gjet_Generator: 5.58976428e-02 + syst_JES_Gjet_OOC: 4.33995069e-02 + syst_JES_Gjet_Purity: 1.42286768e-02 + syst_JES_Gjet_Stat1: 4.96838774e-07 + syst_JES_Gjet_Stat10: 1.58743086e-03 + syst_JES_Gjet_Stat11: 2.21196536e-03 + syst_JES_Gjet_Stat12: 7.15950381e-03 + syst_JES_Gjet_Stat13: 1.20946336e-02 + syst_JES_Gjet_Stat14: 4.50350072e-03 + syst_JES_Gjet_Stat15: 2.50658388e-03 + syst_JES_Gjet_Stat2: 2.06200649e-11 + syst_JES_Gjet_Stat3: 2.91504151e-08 + syst_JES_Gjet_Stat4: 1.80724589e-04 + syst_JES_Gjet_Stat5: 1.22360462e-05 + syst_JES_Gjet_Stat6: 3.90691474e-04 + syst_JES_Gjet_Stat7: 5.10007608e-04 + syst_JES_Gjet_Stat8: 3.15738373e-04 + syst_JES_Gjet_Stat9: 8.17630606e-04 + syst_JES_Gjet_Veto: 3.24994411e-02 + syst_JES_Gjet_dPhi: 3.62276138e-03 + syst_JES_LArESZee: 8.23082844e-02 + syst_JES_LArEsmear: 6.18296701e-03 + syst_JES_LAr_JVT: 8.33468614e-03 + syst_JES_MJB_Alpha: 5.29593304e-04 + syst_JES_MJB_Asym: 2.79366623e-03 + syst_JES_MJB_Beta: 3.88413089e-04 + syst_JES_MJB_Stat1: 3.90750662e-05 + syst_JES_MJB_Stat10: 4.35288272e-06 + syst_JES_MJB_Stat11: 8.58865938e-08 + syst_JES_MJB_Stat12: 3.42504384e-06 + syst_JES_MJB_Stat13: 4.50333210e-06 + syst_JES_MJB_Stat14: 1.06832894e-06 + syst_JES_MJB_Stat15: 1.35735860e-07 + syst_JES_MJB_Stat16: 6.76972069e-10 + syst_JES_MJB_Stat2: 6.93426541e-04 + syst_JES_MJB_Stat3: 8.39178616e-04 + syst_JES_MJB_Stat4: 2.65003774e-04 syst_JES_MJB_Stat5: 0.0 - syst_JES_MJB_Stat6: 1.780548230180806e-05 - syst_JES_MJB_Stat7: 5.036803748410295e-10 - syst_JES_MJB_Stat8: 1.324811543172462e-07 - syst_JES_MJB_Stat9: 3.3197595345898178e-06 - syst_JES_MJB_Threshold: 0.004216196508703075 - syst_JES_Pileup_MuOffset: 0.008077449024908792 - syst_JES_Pileup_NPVOffset: 0.00884630606524554 - syst_JES_Pileup_Pt_term: 0.012064153886617992 - syst_JES_PunchThrough_MC15: 0.0035393703889251265 + syst_JES_MJB_Stat6: 1.78054823e-05 + syst_JES_MJB_Stat7: 5.03680375e-10 + syst_JES_MJB_Stat8: 1.32481154e-07 + syst_JES_MJB_Stat9: 3.31975953e-06 + syst_JES_MJB_Threshold: 4.21619651e-03 + syst_JES_Pileup_MuOffset: 8.07744902e-03 + syst_JES_Pileup_NPVOffset: 8.84630607e-03 + syst_JES_Pileup_Pt_term: 1.20641539e-02 + syst_JES_PunchThrough_MC15: 3.53937039e-03 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.04020090406943605 - syst_JES_Zjet_MuScale: 0.002536297054763105 - syst_JES_Zjet_MuSmearID: 0.0004231653902435785 - syst_JES_Zjet_MuSmearMS: 0.011031301736422586 - syst_JES_Zjet_OOC: 0.016988827946624218 - syst_JES_Zjet_Stat1: 0.00064758023441115 - syst_JES_Zjet_Stat10: 0.0014630580986413357 - syst_JES_Zjet_Stat11: 0.0017055763688559947 - syst_JES_Zjet_Stat12: 0.009201788847827361 - syst_JES_Zjet_Stat13: 0.011464745123638816 - syst_JES_Zjet_Stat2: 2.556344509201909e-15 - syst_JES_Zjet_Stat3: 0.0003150117462889281 - syst_JES_Zjet_Stat4: 0.00031495790972763327 - syst_JES_Zjet_Stat5: 0.00040408636453114817 - syst_JES_Zjet_Stat6: 0.00036193540860214276 - syst_JES_Zjet_Stat7: 0.00024435582661356777 - syst_JES_Zjet_Stat8: 0.0003194917369823514 - syst_JES_Zjet_Stat9: 0.0007502914900223779 - syst_JES_Zjet_Veto: 0.0034641273071294595 - syst_JES_Zjet_dPhi: 0.002939402447777439 - syst_PRW: 0.0038639 - syst_Unfolding_bias: 2.603e-10 - syst_cleaning: 0.013683201379794133 + syst_JES_Zjet_MC: 4.02009041e-02 + syst_JES_Zjet_MuScale: 2.53629705e-03 + syst_JES_Zjet_MuSmearID: 4.23165390e-04 + syst_JES_Zjet_MuSmearMS: 1.10313017e-02 + syst_JES_Zjet_OOC: 1.69888279e-02 + syst_JES_Zjet_Stat1: 6.47580234e-04 + syst_JES_Zjet_Stat10: 1.46305810e-03 + syst_JES_Zjet_Stat11: 1.70557637e-03 + syst_JES_Zjet_Stat12: 9.20178885e-03 + syst_JES_Zjet_Stat13: 1.14647451e-02 + syst_JES_Zjet_Stat2: 2.55634451e-15 + syst_JES_Zjet_Stat3: 3.15011746e-04 + syst_JES_Zjet_Stat4: 3.14957910e-04 + syst_JES_Zjet_Stat5: 4.04086365e-04 + syst_JES_Zjet_Stat6: 3.61935409e-04 + syst_JES_Zjet_Stat7: 2.44355827e-04 + syst_JES_Zjet_Stat8: 3.19491737e-04 + syst_JES_Zjet_Stat9: 7.50291490e-04 + syst_JES_Zjet_Veto: 3.46412731e-03 + syst_JES_Zjet_dPhi: 2.93940245e-03 + syst_PRW: 3.86390000e-03 + syst_Unfolding_bias: 2.60300000e-10 + syst_cleaning: 1.36832014e-02 syst_lumi: 0.0536 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.00764294766435045 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 0.011964941318284851 - syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0031029539152233635 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 7.64294766e-03 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 1.19649413e-02 + syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 3.10295392e-03 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 0.016661340732366046 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.008871203793736224 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.016224167158902177 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 1.66613407e-02 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 8.87120379e-03 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.62241672e-02 - stat: 0.009228 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.014012257598260174 - syst_JER_NP1: 0.000757674803263247 - syst_JER_NP2: 0.00734009419217492 - syst_JER_NP3: 0.0010834389449802884 - syst_JER_NP4: 8.410023305556293e-07 - syst_JER_NP5: 0.0014868806904052524 - syst_JER_NP6: 1.669281881528701e-06 - syst_JER_NP7: 2.000553610878749e-06 - syst_JER_NP8: 0.0014176610340627975 - syst_JES_EtaIntercalibration_Modelling: 0.07619585421792972 - syst_JES_EtaIntercalibration_NonClosure: 0.0006095137715220224 - syst_JES_EtaIntercalibration_Stat0: 1.6696969784963975e-16 + syst_JER_NP0: 1.40122576e-02 + syst_JER_NP1: 7.57674803e-04 + syst_JER_NP2: 7.34009419e-03 + syst_JER_NP3: 1.08343894e-03 + syst_JER_NP4: 8.41002331e-07 + syst_JER_NP5: 1.48688069e-03 + syst_JER_NP6: 1.66928188e-06 + syst_JER_NP7: 2.00055361e-06 + syst_JER_NP8: 1.41766103e-03 + syst_JES_EtaIntercalibration_Modelling: 7.61958542e-02 + syst_JES_EtaIntercalibration_NonClosure: 6.09513772e-04 + syst_JES_EtaIntercalibration_Stat0: 1.66969698e-16 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 2.2512796331642143e-11 - syst_JES_EtaIntercalibration_Stat101: 5.709972591878178e-07 - syst_JES_EtaIntercalibration_Stat102: 3.629285156886959e-06 - syst_JES_EtaIntercalibration_Stat103: 3.6610182668214044e-06 - syst_JES_EtaIntercalibration_Stat104: 6.980497409210894e-08 - syst_JES_EtaIntercalibration_Stat105: 1.7293565508593072e-16 - syst_JES_EtaIntercalibration_Stat106: 1.6696969784963975e-16 - syst_JES_EtaIntercalibration_Stat107: 1.6696969784963975e-16 - syst_JES_EtaIntercalibration_Stat108: 1.6696969784963975e-16 - syst_JES_EtaIntercalibration_Stat109: 1.6696969784963975e-16 + syst_JES_EtaIntercalibration_Stat100: 2.25127963e-11 + syst_JES_EtaIntercalibration_Stat101: 5.70997259e-07 + syst_JES_EtaIntercalibration_Stat102: 3.62928516e-06 + syst_JES_EtaIntercalibration_Stat103: 3.66101827e-06 + syst_JES_EtaIntercalibration_Stat104: 6.98049741e-08 + syst_JES_EtaIntercalibration_Stat105: 1.72935655e-16 + syst_JES_EtaIntercalibration_Stat106: 1.66969698e-16 + syst_JES_EtaIntercalibration_Stat107: 1.66969698e-16 + syst_JES_EtaIntercalibration_Stat108: 1.66969698e-16 + syst_JES_EtaIntercalibration_Stat109: 1.66969698e-16 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 2.8326273259114052e-14 - syst_JES_EtaIntercalibration_Stat111: 2.1415732534751175e-07 - syst_JES_EtaIntercalibration_Stat112: 7.667182843130845e-06 - syst_JES_EtaIntercalibration_Stat113: 4.783124083692582e-06 - syst_JES_EtaIntercalibration_Stat114: 8.921915123447432e-06 - syst_JES_EtaIntercalibration_Stat115: 2.19811297689632e-09 - syst_JES_EtaIntercalibration_Stat116: 5.06482626571613e-13 - syst_JES_EtaIntercalibration_Stat117: 1.6696969784963975e-16 - syst_JES_EtaIntercalibration_Stat118: 1.6696969784963975e-16 - syst_JES_EtaIntercalibration_Stat119: 1.6696969784963975e-16 + syst_JES_EtaIntercalibration_Stat110: 2.83262733e-14 + syst_JES_EtaIntercalibration_Stat111: 2.14157325e-07 + syst_JES_EtaIntercalibration_Stat112: 7.66718284e-06 + syst_JES_EtaIntercalibration_Stat113: 4.78312408e-06 + syst_JES_EtaIntercalibration_Stat114: 8.92191512e-06 + syst_JES_EtaIntercalibration_Stat115: 2.19811298e-09 + syst_JES_EtaIntercalibration_Stat116: 5.06482627e-13 + syst_JES_EtaIntercalibration_Stat117: 1.66969698e-16 + syst_JES_EtaIntercalibration_Stat118: 1.66969698e-16 + syst_JES_EtaIntercalibration_Stat119: 1.66969698e-16 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 2.1494750521929767e-10 - syst_JES_EtaIntercalibration_Stat121: 1.2203894081398774e-05 - syst_JES_EtaIntercalibration_Stat122: 8.526335833756491e-06 - syst_JES_EtaIntercalibration_Stat123: 7.695778371938735e-06 - syst_JES_EtaIntercalibration_Stat124: 4.465290891980051e-06 - syst_JES_EtaIntercalibration_Stat125: 8.015931137428764e-13 - syst_JES_EtaIntercalibration_Stat126: 1.6696969784963975e-16 - syst_JES_EtaIntercalibration_Stat127: 1.6696969784963975e-16 - syst_JES_EtaIntercalibration_Stat128: 1.6696969784963975e-16 - syst_JES_EtaIntercalibration_Stat129: 1.4666248222364163e-07 + syst_JES_EtaIntercalibration_Stat120: 2.14947505e-10 + syst_JES_EtaIntercalibration_Stat121: 1.22038941e-05 + syst_JES_EtaIntercalibration_Stat122: 8.52633583e-06 + syst_JES_EtaIntercalibration_Stat123: 7.69577837e-06 + syst_JES_EtaIntercalibration_Stat124: 4.46529089e-06 + syst_JES_EtaIntercalibration_Stat125: 8.01593114e-13 + syst_JES_EtaIntercalibration_Stat126: 1.66969698e-16 + syst_JES_EtaIntercalibration_Stat127: 1.66969698e-16 + syst_JES_EtaIntercalibration_Stat128: 1.66969698e-16 + syst_JES_EtaIntercalibration_Stat129: 1.46662482e-07 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 1.2421572847268578e-05 - syst_JES_EtaIntercalibration_Stat131: 4.2954879524915445e-05 - syst_JES_EtaIntercalibration_Stat132: 6.632051824850286e-05 - syst_JES_EtaIntercalibration_Stat133: 1.1023590919024525e-05 - syst_JES_EtaIntercalibration_Stat134: 2.902774745149027e-06 - syst_JES_EtaIntercalibration_Stat135: 5.065382586735181e-13 + syst_JES_EtaIntercalibration_Stat130: 1.24215728e-05 + syst_JES_EtaIntercalibration_Stat131: 4.29548795e-05 + syst_JES_EtaIntercalibration_Stat132: 6.63205182e-05 + syst_JES_EtaIntercalibration_Stat133: 1.10235909e-05 + syst_JES_EtaIntercalibration_Stat134: 2.90277475e-06 + syst_JES_EtaIntercalibration_Stat135: 5.06538259e-13 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 syst_JES_EtaIntercalibration_Stat138: 0.0 - syst_JES_EtaIntercalibration_Stat139: 9.838131568036688e-07 - syst_JES_EtaIntercalibration_Stat14: 2.2741846687167947e-11 - syst_JES_EtaIntercalibration_Stat140: 1.5183484448571086e-05 - syst_JES_EtaIntercalibration_Stat141: 6.875414242065711e-05 - syst_JES_EtaIntercalibration_Stat142: 5.265995999808584e-05 - syst_JES_EtaIntercalibration_Stat143: 7.441842564177235e-06 - syst_JES_EtaIntercalibration_Stat144: 5.635507674557812e-09 + syst_JES_EtaIntercalibration_Stat139: 9.83813157e-07 + syst_JES_EtaIntercalibration_Stat14: 2.27418467e-11 + syst_JES_EtaIntercalibration_Stat140: 1.51834844e-05 + syst_JES_EtaIntercalibration_Stat141: 6.87541424e-05 + syst_JES_EtaIntercalibration_Stat142: 5.26599600e-05 + syst_JES_EtaIntercalibration_Stat143: 7.44184256e-06 + syst_JES_EtaIntercalibration_Stat144: 5.63550767e-09 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 1.0922669579823424e-08 - syst_JES_EtaIntercalibration_Stat148: 8.451646940093984e-06 - syst_JES_EtaIntercalibration_Stat149: 5.731752960482509e-05 - syst_JES_EtaIntercalibration_Stat15: 2.2698670665201457e-11 - syst_JES_EtaIntercalibration_Stat150: 5.868132134674542e-05 - syst_JES_EtaIntercalibration_Stat151: 5.327273599131173e-06 - syst_JES_EtaIntercalibration_Stat152: 6.010333850960361e-08 + syst_JES_EtaIntercalibration_Stat147: 1.09226696e-08 + syst_JES_EtaIntercalibration_Stat148: 8.45164694e-06 + syst_JES_EtaIntercalibration_Stat149: 5.73175296e-05 + syst_JES_EtaIntercalibration_Stat15: 2.26986707e-11 + syst_JES_EtaIntercalibration_Stat150: 5.86813213e-05 + syst_JES_EtaIntercalibration_Stat151: 5.32727360e-06 + syst_JES_EtaIntercalibration_Stat152: 6.01033385e-08 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 syst_JES_EtaIntercalibration_Stat156: 0.0 - syst_JES_EtaIntercalibration_Stat157: 1.4654873465165094e-07 - syst_JES_EtaIntercalibration_Stat158: 1.5041678762691353e-05 - syst_JES_EtaIntercalibration_Stat159: 0.00010016756099157052 - syst_JES_EtaIntercalibration_Stat16: 2.261220132950729e-11 - syst_JES_EtaIntercalibration_Stat160: 5.8649797876953506e-05 - syst_JES_EtaIntercalibration_Stat161: 5.882185031941787e-06 - syst_JES_EtaIntercalibration_Stat162: 5.552370081325631e-09 + syst_JES_EtaIntercalibration_Stat157: 1.46548735e-07 + syst_JES_EtaIntercalibration_Stat158: 1.50416788e-05 + syst_JES_EtaIntercalibration_Stat159: 1.00167561e-04 + syst_JES_EtaIntercalibration_Stat16: 2.26122013e-11 + syst_JES_EtaIntercalibration_Stat160: 5.86497979e-05 + syst_JES_EtaIntercalibration_Stat161: 5.88218503e-06 + syst_JES_EtaIntercalibration_Stat162: 5.55237008e-09 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 2.3049391244672818e-08 - syst_JES_EtaIntercalibration_Stat166: 5.22944887798896e-05 - syst_JES_EtaIntercalibration_Stat167: 0.00016392885865521058 - syst_JES_EtaIntercalibration_Stat168: 0.0002691063415733639 - syst_JES_EtaIntercalibration_Stat169: 3.69057864704168e-05 - syst_JES_EtaIntercalibration_Stat17: 1.3804444936323952e-16 - syst_JES_EtaIntercalibration_Stat170: 2.735977024757335e-06 + syst_JES_EtaIntercalibration_Stat165: 2.30493912e-08 + syst_JES_EtaIntercalibration_Stat166: 5.22944888e-05 + syst_JES_EtaIntercalibration_Stat167: 1.63928859e-04 + syst_JES_EtaIntercalibration_Stat168: 2.69106342e-04 + syst_JES_EtaIntercalibration_Stat169: 3.69057865e-05 + syst_JES_EtaIntercalibration_Stat17: 1.38044449e-16 + syst_JES_EtaIntercalibration_Stat170: 2.73597702e-06 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 - syst_JES_EtaIntercalibration_Stat175: 2.935050862847184e-05 - syst_JES_EtaIntercalibration_Stat176: 0.0001736633601972506 - syst_JES_EtaIntercalibration_Stat177: 0.0004122940061412487 - syst_JES_EtaIntercalibration_Stat178: 0.0002580125578339163 - syst_JES_EtaIntercalibration_Stat179: 9.262667708063374e-06 + syst_JES_EtaIntercalibration_Stat175: 2.93505086e-05 + syst_JES_EtaIntercalibration_Stat176: 1.73663360e-04 + syst_JES_EtaIntercalibration_Stat177: 4.12294006e-04 + syst_JES_EtaIntercalibration_Stat178: 2.58012558e-04 + syst_JES_EtaIntercalibration_Stat179: 9.26266771e-06 syst_JES_EtaIntercalibration_Stat18: 0.0 - syst_JES_EtaIntercalibration_Stat180: 3.3173955601618936e-06 + syst_JES_EtaIntercalibration_Stat180: 3.31739556e-06 syst_JES_EtaIntercalibration_Stat181: 0.0 - syst_JES_EtaIntercalibration_Stat182: 3.090638424338894e-06 - syst_JES_EtaIntercalibration_Stat183: 0.00020894915051275034 - syst_JES_EtaIntercalibration_Stat184: 0.0007814728786080806 - syst_JES_EtaIntercalibration_Stat185: 0.0013800872255042432 - syst_JES_EtaIntercalibration_Stat186: 0.00026122968949757603 - syst_JES_EtaIntercalibration_Stat187: 2.3824056644492765e-06 + syst_JES_EtaIntercalibration_Stat182: 3.09063842e-06 + syst_JES_EtaIntercalibration_Stat183: 2.08949151e-04 + syst_JES_EtaIntercalibration_Stat184: 7.81472879e-04 + syst_JES_EtaIntercalibration_Stat185: 1.38008723e-03 + syst_JES_EtaIntercalibration_Stat186: 2.61229689e-04 + syst_JES_EtaIntercalibration_Stat187: 2.38240566e-06 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 - syst_JES_EtaIntercalibration_Stat192: 8.814517457013742e-06 - syst_JES_EtaIntercalibration_Stat193: 0.000484942738887799 - syst_JES_EtaIntercalibration_Stat194: 0.0013254595080574888 - syst_JES_EtaIntercalibration_Stat195: 0.0009477624333133278 - syst_JES_EtaIntercalibration_Stat196: 0.00015637500143884892 - syst_JES_EtaIntercalibration_Stat197: 4.079535390212959e-06 - syst_JES_EtaIntercalibration_Stat198: 0.00020794626108684908 - syst_JES_EtaIntercalibration_Stat199: 0.00162255631643404 + syst_JES_EtaIntercalibration_Stat192: 8.81451746e-06 + syst_JES_EtaIntercalibration_Stat193: 4.84942739e-04 + syst_JES_EtaIntercalibration_Stat194: 1.32545951e-03 + syst_JES_EtaIntercalibration_Stat195: 9.47762433e-04 + syst_JES_EtaIntercalibration_Stat196: 1.56375001e-04 + syst_JES_EtaIntercalibration_Stat197: 4.07953539e-06 + syst_JES_EtaIntercalibration_Stat198: 2.07946261e-04 + syst_JES_EtaIntercalibration_Stat199: 1.62255632e-03 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 0.0019213887555619763 - syst_JES_EtaIntercalibration_Stat201: 0.0005261255743641437 - syst_JES_EtaIntercalibration_Stat202: 3.4959643519349565e-05 + syst_JES_EtaIntercalibration_Stat200: 1.92138876e-03 + syst_JES_EtaIntercalibration_Stat201: 5.26125574e-04 + syst_JES_EtaIntercalibration_Stat202: 3.49596435e-05 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 - syst_JES_EtaIntercalibration_Stat207: 5.514278009630998e-06 - syst_JES_EtaIntercalibration_Stat208: 0.0006131564298774008 - syst_JES_EtaIntercalibration_Stat209: 0.0018334810470795708 + syst_JES_EtaIntercalibration_Stat207: 5.51427801e-06 + syst_JES_EtaIntercalibration_Stat208: 6.13156430e-04 + syst_JES_EtaIntercalibration_Stat209: 1.83348105e-03 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 0.0012752441060440154 - syst_JES_EtaIntercalibration_Stat211: 0.0002235750880576814 - syst_JES_EtaIntercalibration_Stat212: 0.000492749680365193 - syst_JES_EtaIntercalibration_Stat213: 0.000768026991713182 - syst_JES_EtaIntercalibration_Stat214: 0.0001085565220288491 - syst_JES_EtaIntercalibration_Stat215: 4.338120676053168e-06 + syst_JES_EtaIntercalibration_Stat210: 1.27524411e-03 + syst_JES_EtaIntercalibration_Stat211: 2.23575088e-04 + syst_JES_EtaIntercalibration_Stat212: 4.92749680e-04 + syst_JES_EtaIntercalibration_Stat213: 7.68026992e-04 + syst_JES_EtaIntercalibration_Stat214: 1.08556522e-04 + syst_JES_EtaIntercalibration_Stat215: 4.33812068e-06 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 syst_JES_EtaIntercalibration_Stat219: 0.0 - syst_JES_EtaIntercalibration_Stat22: 1.6696969784963975e-16 - syst_JES_EtaIntercalibration_Stat220: 9.364829843622359e-06 - syst_JES_EtaIntercalibration_Stat221: 0.00017158760881835262 - syst_JES_EtaIntercalibration_Stat222: 0.0007058111078751877 - syst_JES_EtaIntercalibration_Stat223: 0.0006143901915720986 - syst_JES_EtaIntercalibration_Stat224: 0.00017599922585057019 - syst_JES_EtaIntercalibration_Stat225: 0.00016119204966436775 - syst_JES_EtaIntercalibration_Stat226: 6.173605272130297e-05 - syst_JES_EtaIntercalibration_Stat227: 4.09597177114296e-06 + syst_JES_EtaIntercalibration_Stat22: 1.66969698e-16 + syst_JES_EtaIntercalibration_Stat220: 9.36482984e-06 + syst_JES_EtaIntercalibration_Stat221: 1.71587609e-04 + syst_JES_EtaIntercalibration_Stat222: 7.05811108e-04 + syst_JES_EtaIntercalibration_Stat223: 6.14390192e-04 + syst_JES_EtaIntercalibration_Stat224: 1.75999226e-04 + syst_JES_EtaIntercalibration_Stat225: 1.61192050e-04 + syst_JES_EtaIntercalibration_Stat226: 6.17360527e-05 + syst_JES_EtaIntercalibration_Stat227: 4.09597177e-06 syst_JES_EtaIntercalibration_Stat228: 0.0 syst_JES_EtaIntercalibration_Stat229: 0.0 - syst_JES_EtaIntercalibration_Stat23: 1.6696969784963975e-16 + syst_JES_EtaIntercalibration_Stat23: 1.66969698e-16 syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 - syst_JES_EtaIntercalibration_Stat232: 1.9774862955783033e-06 - syst_JES_EtaIntercalibration_Stat233: 4.5642557717551274e-05 - syst_JES_EtaIntercalibration_Stat234: 7.34960561441905e-05 - syst_JES_EtaIntercalibration_Stat235: 9.809924872291327e-05 - syst_JES_EtaIntercalibration_Stat236: 5.781243183779766e-05 - syst_JES_EtaIntercalibration_Stat237: 3.804612036725952e-05 - syst_JES_EtaIntercalibration_Stat238: 3.4245242541848055e-07 + syst_JES_EtaIntercalibration_Stat232: 1.97748630e-06 + syst_JES_EtaIntercalibration_Stat233: 4.56425577e-05 + syst_JES_EtaIntercalibration_Stat234: 7.34960561e-05 + syst_JES_EtaIntercalibration_Stat235: 9.80992487e-05 + syst_JES_EtaIntercalibration_Stat236: 5.78124318e-05 + syst_JES_EtaIntercalibration_Stat237: 3.80461204e-05 + syst_JES_EtaIntercalibration_Stat238: 3.42452425e-07 syst_JES_EtaIntercalibration_Stat239: 0.0 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 - syst_JES_EtaIntercalibration_Stat243: 3.138714336714955e-06 - syst_JES_EtaIntercalibration_Stat244: 2.111152765670926e-05 - syst_JES_EtaIntercalibration_Stat245: 6.063900230049963e-05 - syst_JES_EtaIntercalibration_Stat25: 1.332813096424251e-16 - syst_JES_EtaIntercalibration_Stat26: 2.091630464494147e-14 - syst_JES_EtaIntercalibration_Stat27: 1.8809668348152765e-11 - syst_JES_EtaIntercalibration_Stat28: 3.0830325371432474e-06 - syst_JES_EtaIntercalibration_Stat29: 2.0929090060248676e-11 + syst_JES_EtaIntercalibration_Stat243: 3.13871434e-06 + syst_JES_EtaIntercalibration_Stat244: 2.11115277e-05 + syst_JES_EtaIntercalibration_Stat245: 6.06390023e-05 + syst_JES_EtaIntercalibration_Stat25: 1.33281310e-16 + syst_JES_EtaIntercalibration_Stat26: 2.09163046e-14 + syst_JES_EtaIntercalibration_Stat27: 1.88096683e-11 + syst_JES_EtaIntercalibration_Stat28: 3.08303254e-06 + syst_JES_EtaIntercalibration_Stat29: 2.09290901e-11 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 1.414228621263196e-15 + syst_JES_EtaIntercalibration_Stat30: 1.41422862e-15 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 2.348048951789549e-16 - syst_JES_EtaIntercalibration_Stat36: 2.2111777146753153e-11 - syst_JES_EtaIntercalibration_Stat37: 4.060792767489596e-06 - syst_JES_EtaIntercalibration_Stat38: 4.0599267267571725e-06 - syst_JES_EtaIntercalibration_Stat39: 8.18775613996289e-13 - syst_JES_EtaIntercalibration_Stat4: 1.82817962738895e-16 - syst_JES_EtaIntercalibration_Stat40: 1.001125366774811e-16 + syst_JES_EtaIntercalibration_Stat35: 2.34804895e-16 + syst_JES_EtaIntercalibration_Stat36: 2.21117771e-11 + syst_JES_EtaIntercalibration_Stat37: 4.06079277e-06 + syst_JES_EtaIntercalibration_Stat38: 4.05992673e-06 + syst_JES_EtaIntercalibration_Stat39: 8.18775614e-13 + syst_JES_EtaIntercalibration_Stat4: 1.82817963e-16 + syst_JES_EtaIntercalibration_Stat40: 1.00112537e-16 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 - syst_JES_EtaIntercalibration_Stat44: 1.6696969784963975e-16 + syst_JES_EtaIntercalibration_Stat44: 1.66969698e-16 syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 - syst_JES_EtaIntercalibration_Stat47: 1.3336791218280356e-16 - syst_JES_EtaIntercalibration_Stat48: 9.184107309232618e-13 - syst_JES_EtaIntercalibration_Stat49: 5.7566511749453775e-11 - syst_JES_EtaIntercalibration_Stat5: 1.5479161769294874e-13 - syst_JES_EtaIntercalibration_Stat50: 2.877799130224296e-06 - syst_JES_EtaIntercalibration_Stat51: 2.34332934322088e-09 - syst_JES_EtaIntercalibration_Stat52: 1.3268718245181033e-13 + syst_JES_EtaIntercalibration_Stat47: 1.33367912e-16 + syst_JES_EtaIntercalibration_Stat48: 9.18410731e-13 + syst_JES_EtaIntercalibration_Stat49: 5.75665117e-11 + syst_JES_EtaIntercalibration_Stat5: 1.54791618e-13 + syst_JES_EtaIntercalibration_Stat50: 2.87779913e-06 + syst_JES_EtaIntercalibration_Stat51: 2.34332934e-09 + syst_JES_EtaIntercalibration_Stat52: 1.32687182e-13 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 syst_JES_EtaIntercalibration_Stat56: 0.0 - syst_JES_EtaIntercalibration_Stat57: 2.2741886282397923e-11 - syst_JES_EtaIntercalibration_Stat58: 2.051506454486556e-11 - syst_JES_EtaIntercalibration_Stat59: 7.451776333692978e-06 - syst_JES_EtaIntercalibration_Stat6: 1.221178473934093e-12 - syst_JES_EtaIntercalibration_Stat60: 4.073639124572773e-06 - syst_JES_EtaIntercalibration_Stat61: 4.239942946255292e-11 - syst_JES_EtaIntercalibration_Stat62: 1.4081573065534972e-16 + syst_JES_EtaIntercalibration_Stat57: 2.27418863e-11 + syst_JES_EtaIntercalibration_Stat58: 2.05150645e-11 + syst_JES_EtaIntercalibration_Stat59: 7.45177633e-06 + syst_JES_EtaIntercalibration_Stat6: 1.22117847e-12 + syst_JES_EtaIntercalibration_Stat60: 4.07363912e-06 + syst_JES_EtaIntercalibration_Stat61: 4.23994295e-11 + syst_JES_EtaIntercalibration_Stat62: 1.40815731e-16 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 - syst_JES_EtaIntercalibration_Stat69: 1.9525677965182155e-16 - syst_JES_EtaIntercalibration_Stat7: 1.3305941138555366e-13 - syst_JES_EtaIntercalibration_Stat70: 2.315039344698055e-11 - syst_JES_EtaIntercalibration_Stat71: 5.429055725809081e-06 - syst_JES_EtaIntercalibration_Stat72: 1.6507942924553016e-05 - syst_JES_EtaIntercalibration_Stat73: 2.879326941158056e-06 - syst_JES_EtaIntercalibration_Stat74: 1.60432819818764e-12 + syst_JES_EtaIntercalibration_Stat69: 1.95256780e-16 + syst_JES_EtaIntercalibration_Stat7: 1.33059411e-13 + syst_JES_EtaIntercalibration_Stat70: 2.31503934e-11 + syst_JES_EtaIntercalibration_Stat71: 5.42905573e-06 + syst_JES_EtaIntercalibration_Stat72: 1.65079429e-05 + syst_JES_EtaIntercalibration_Stat73: 2.87932694e-06 + syst_JES_EtaIntercalibration_Stat74: 1.60432820e-12 syst_JES_EtaIntercalibration_Stat75: 0.0 syst_JES_EtaIntercalibration_Stat76: 0.0 syst_JES_EtaIntercalibration_Stat77: 0.0 syst_JES_EtaIntercalibration_Stat78: 0.0 - syst_JES_EtaIntercalibration_Stat79: 2.2401265822341378e-11 + syst_JES_EtaIntercalibration_Stat79: 2.24012658e-11 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 2.7622208023979545e-07 - syst_JES_EtaIntercalibration_Stat81: 3.5001032484771075e-06 - syst_JES_EtaIntercalibration_Stat82: 3.883155257004283e-06 - syst_JES_EtaIntercalibration_Stat83: 5.6633979861916824e-09 - syst_JES_EtaIntercalibration_Stat84: 6.755730363920691e-17 - syst_JES_EtaIntercalibration_Stat85: 1.6696969784963975e-16 - syst_JES_EtaIntercalibration_Stat86: 1.6696969784963975e-16 - syst_JES_EtaIntercalibration_Stat87: 1.6696969784963975e-16 - syst_JES_EtaIntercalibration_Stat88: 1.6696969784963975e-16 - syst_JES_EtaIntercalibration_Stat89: 1.6696969784963975e-16 + syst_JES_EtaIntercalibration_Stat80: 2.76222080e-07 + syst_JES_EtaIntercalibration_Stat81: 3.50010325e-06 + syst_JES_EtaIntercalibration_Stat82: 3.88315526e-06 + syst_JES_EtaIntercalibration_Stat83: 5.66339799e-09 + syst_JES_EtaIntercalibration_Stat84: 6.75573036e-17 + syst_JES_EtaIntercalibration_Stat85: 1.66969698e-16 + syst_JES_EtaIntercalibration_Stat86: 1.66969698e-16 + syst_JES_EtaIntercalibration_Stat87: 1.66969698e-16 + syst_JES_EtaIntercalibration_Stat88: 1.66969698e-16 + syst_JES_EtaIntercalibration_Stat89: 1.66969698e-16 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 8.743270847914984e-09 - syst_JES_EtaIntercalibration_Stat92: 5.365008311009406e-06 - syst_JES_EtaIntercalibration_Stat93: 1.6536708977263283e-05 - syst_JES_EtaIntercalibration_Stat94: 2.8849376629014016e-06 - syst_JES_EtaIntercalibration_Stat95: 1.9038521128228423e-11 - syst_JES_EtaIntercalibration_Stat96: 5.06482626571613e-13 - syst_JES_EtaIntercalibration_Stat97: 1.6696969784963975e-16 - syst_JES_EtaIntercalibration_Stat98: 1.6696969784963975e-16 - syst_JES_EtaIntercalibration_Stat99: 1.6696969784963975e-16 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.00716287553989318 - syst_JES_Flavour_Comp: 0.021492037479029297 - syst_JES_Gjet_Generator: 0.03482072191956967 - syst_JES_Gjet_OOC: 0.02755042467912246 - syst_JES_Gjet_Purity: 0.008534994669008292 - syst_JES_Gjet_Stat1: 3.135877987103452e-06 - syst_JES_Gjet_Stat10: 0.000869526323638336 - syst_JES_Gjet_Stat11: 0.001112244874117206 - syst_JES_Gjet_Stat12: 0.004074499781261498 - syst_JES_Gjet_Stat13: 0.0083104833794431 - syst_JES_Gjet_Stat14: 0.005664554417604265 - syst_JES_Gjet_Stat15: 0.0018244442304438905 - syst_JES_Gjet_Stat2: 2.1572692808271644e-12 - syst_JES_Gjet_Stat3: 4.490341718622314e-07 - syst_JES_Gjet_Stat4: 6.736766799251701e-05 - syst_JES_Gjet_Stat5: 2.22481592381433e-06 - syst_JES_Gjet_Stat6: 0.0002387297007077251 - syst_JES_Gjet_Stat7: 0.0003056353709896811 - syst_JES_Gjet_Stat8: 0.00021515166743485862 - syst_JES_Gjet_Stat9: 0.00048146402513583506 - syst_JES_Gjet_Veto: 0.022425097547167993 - syst_JES_Gjet_dPhi: 0.002477523107863981 - syst_JES_LArESZee: 0.05196414533118004 - syst_JES_LArEsmear: 0.004053850716294324 - syst_JES_LAr_JVT: 0.005313748653257886 - syst_JES_MJB_Alpha: 0.0003256483225812778 - syst_JES_MJB_Asym: 0.001952782822026044 - syst_JES_MJB_Beta: 0.00025043268057503993 - syst_JES_MJB_Stat1: 7.207063410410867e-06 - syst_JES_MJB_Stat10: 2.874126084569012e-06 - syst_JES_MJB_Stat11: 1.3013384264191233e-06 - syst_JES_MJB_Stat12: 2.469887674250279e-06 - syst_JES_MJB_Stat13: 3.698794499511434e-06 - syst_JES_MJB_Stat14: 1.1768419211313132e-06 - syst_JES_MJB_Stat15: 4.2483473998720955e-07 - syst_JES_MJB_Stat16: 1.0810629188196833e-08 - syst_JES_MJB_Stat2: 0.00034401993139933037 - syst_JES_MJB_Stat3: 0.0005598854235466396 - syst_JES_MJB_Stat4: 0.00017970027128527103 + syst_JES_EtaIntercalibration_Stat91: 8.74327085e-09 + syst_JES_EtaIntercalibration_Stat92: 5.36500831e-06 + syst_JES_EtaIntercalibration_Stat93: 1.65367090e-05 + syst_JES_EtaIntercalibration_Stat94: 2.88493766e-06 + syst_JES_EtaIntercalibration_Stat95: 1.90385211e-11 + syst_JES_EtaIntercalibration_Stat96: 5.06482627e-13 + syst_JES_EtaIntercalibration_Stat97: 1.66969698e-16 + syst_JES_EtaIntercalibration_Stat98: 1.66969698e-16 + syst_JES_EtaIntercalibration_Stat99: 1.66969698e-16 + syst_JES_EtaIntercalibration_TotalStat_MJB: 7.16287554e-03 + syst_JES_Flavour_Comp: 2.14920375e-02 + syst_JES_Gjet_Generator: 3.48207219e-02 + syst_JES_Gjet_OOC: 2.75504247e-02 + syst_JES_Gjet_Purity: 8.53499467e-03 + syst_JES_Gjet_Stat1: 3.13587799e-06 + syst_JES_Gjet_Stat10: 8.69526324e-04 + syst_JES_Gjet_Stat11: 1.11224487e-03 + syst_JES_Gjet_Stat12: 4.07449978e-03 + syst_JES_Gjet_Stat13: 8.31048338e-03 + syst_JES_Gjet_Stat14: 5.66455442e-03 + syst_JES_Gjet_Stat15: 1.82444423e-03 + syst_JES_Gjet_Stat2: 2.15726928e-12 + syst_JES_Gjet_Stat3: 4.49034172e-07 + syst_JES_Gjet_Stat4: 6.73676680e-05 + syst_JES_Gjet_Stat5: 2.22481592e-06 + syst_JES_Gjet_Stat6: 2.38729701e-04 + syst_JES_Gjet_Stat7: 3.05635371e-04 + syst_JES_Gjet_Stat8: 2.15151667e-04 + syst_JES_Gjet_Stat9: 4.81464025e-04 + syst_JES_Gjet_Veto: 2.24250975e-02 + syst_JES_Gjet_dPhi: 2.47752311e-03 + syst_JES_LArESZee: 5.19641453e-02 + syst_JES_LArEsmear: 4.05385072e-03 + syst_JES_LAr_JVT: 5.31374865e-03 + syst_JES_MJB_Alpha: 3.25648323e-04 + syst_JES_MJB_Asym: 1.95278282e-03 + syst_JES_MJB_Beta: 2.50432681e-04 + syst_JES_MJB_Stat1: 7.20706341e-06 + syst_JES_MJB_Stat10: 2.87412608e-06 + syst_JES_MJB_Stat11: 1.30133843e-06 + syst_JES_MJB_Stat12: 2.46988767e-06 + syst_JES_MJB_Stat13: 3.69879450e-06 + syst_JES_MJB_Stat14: 1.17684192e-06 + syst_JES_MJB_Stat15: 4.24834740e-07 + syst_JES_MJB_Stat16: 1.08106292e-08 + syst_JES_MJB_Stat2: 3.44019931e-04 + syst_JES_MJB_Stat3: 5.59885424e-04 + syst_JES_MJB_Stat4: 1.79700271e-04 syst_JES_MJB_Stat5: 0.0 - syst_JES_MJB_Stat6: 3.0224286592076907e-05 - syst_JES_MJB_Stat7: 2.232613490956283e-08 - syst_JES_MJB_Stat8: 1.9738350314046003e-06 - syst_JES_MJB_Stat9: 1.3315503257481483e-05 - syst_JES_MJB_Threshold: 0.002824446981269077 - syst_JES_Pileup_MuOffset: 0.0056016748388316865 - syst_JES_Pileup_NPVOffset: 0.005971659966039593 - syst_JES_Pileup_Pt_term: 0.007011096971943834 - syst_JES_PunchThrough_MC15: 0.0029887881741602227 + syst_JES_MJB_Stat6: 3.02242866e-05 + syst_JES_MJB_Stat7: 2.23261349e-08 + syst_JES_MJB_Stat8: 1.97383503e-06 + syst_JES_MJB_Stat9: 1.33155033e-05 + syst_JES_MJB_Threshold: 2.82444698e-03 + syst_JES_Pileup_MuOffset: 5.60167484e-03 + syst_JES_Pileup_NPVOffset: 5.97165997e-03 + syst_JES_Pileup_Pt_term: 7.01109697e-03 + syst_JES_PunchThrough_MC15: 2.98878817e-03 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.023133561658335276 - syst_JES_Zjet_MuScale: 0.0014706062525366877 - syst_JES_Zjet_MuSmearID: 0.000256450828620225 - syst_JES_Zjet_MuSmearMS: 0.006558461157161793 - syst_JES_Zjet_OOC: 0.010208239025414716 - syst_JES_Zjet_Stat1: 0.00042159576610777296 - syst_JES_Zjet_Stat10: 0.000852422646050655 - syst_JES_Zjet_Stat11: 0.001034122110778026 - syst_JES_Zjet_Stat12: 0.004737744822170143 - syst_JES_Zjet_Stat13: 0.007009963391487861 - syst_JES_Zjet_Stat2: 1.5003413344969205e-15 - syst_JES_Zjet_Stat3: 0.0001893869152687165 - syst_JES_Zjet_Stat4: 0.00018936326221049318 - syst_JES_Zjet_Stat5: 0.00024243652133084238 - syst_JES_Zjet_Stat6: 0.00025795218064594844 - syst_JES_Zjet_Stat7: 0.00014823230712297507 - syst_JES_Zjet_Stat8: 0.00021177230106886026 - syst_JES_Zjet_Stat9: 0.00045801666727314635 - syst_JES_Zjet_Veto: 0.0021473085479269158 - syst_JES_Zjet_dPhi: 0.0018069683865524597 + syst_JES_Zjet_MC: 2.31335617e-02 + syst_JES_Zjet_MuScale: 1.47060625e-03 + syst_JES_Zjet_MuSmearID: 2.56450829e-04 + syst_JES_Zjet_MuSmearMS: 6.55846116e-03 + syst_JES_Zjet_OOC: 1.02082390e-02 + syst_JES_Zjet_Stat1: 4.21595766e-04 + syst_JES_Zjet_Stat10: 8.52422646e-04 + syst_JES_Zjet_Stat11: 1.03412211e-03 + syst_JES_Zjet_Stat12: 4.73774482e-03 + syst_JES_Zjet_Stat13: 7.00996339e-03 + syst_JES_Zjet_Stat2: 1.50034133e-15 + syst_JES_Zjet_Stat3: 1.89386915e-04 + syst_JES_Zjet_Stat4: 1.89363262e-04 + syst_JES_Zjet_Stat5: 2.42436521e-04 + syst_JES_Zjet_Stat6: 2.57952181e-04 + syst_JES_Zjet_Stat7: 1.48232307e-04 + syst_JES_Zjet_Stat8: 2.11772301e-04 + syst_JES_Zjet_Stat9: 4.58016667e-04 + syst_JES_Zjet_Veto: 2.14730855e-03 + syst_JES_Zjet_dPhi: 1.80696839e-03 syst_PRW: 0.002343 - syst_Unfolding_bias: 3.445e-11 - syst_cleaning: 0.008474058576030731 + syst_Unfolding_bias: 3.44500000e-11 + syst_cleaning: 8.47405858e-03 syst_lumi: 0.03251 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.004668142671341569 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 0.005914121490128521 - syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0019394777647604006 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 4.66814267e-03 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 5.91412149e-03 + syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.93947776e-03 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 0.008234585645313309 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.005640425582347487 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.010093145037598538 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 8.23458565e-03 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 5.64042558e-03 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.00931450e-02 - stat: 0.005487 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.008793674772243968 - syst_JER_NP1: 0.00038038023660542616 - syst_JER_NP2: 0.004906345686964994 - syst_JER_NP3: 0.0006665330751733181 - syst_JER_NP4: 1.1123530768150912e-07 - syst_JER_NP5: 0.0008516585466018644 - syst_JER_NP6: 2.2084670588442112e-07 - syst_JER_NP7: 2.652397170485597e-07 - syst_JER_NP8: 0.0008256585371689679 - syst_JES_EtaIntercalibration_Modelling: 0.051542202126024846 - syst_JES_EtaIntercalibration_NonClosure: 0.0004993808441460285 - syst_JES_EtaIntercalibration_Stat0: 2.756558860245868e-17 + syst_JER_NP0: 8.79367477e-03 + syst_JER_NP1: 3.80380237e-04 + syst_JER_NP2: 4.90634569e-03 + syst_JER_NP3: 6.66533075e-04 + syst_JER_NP4: 1.11235308e-07 + syst_JER_NP5: 8.51658547e-04 + syst_JER_NP6: 2.20846706e-07 + syst_JER_NP7: 2.65239717e-07 + syst_JER_NP8: 8.25658537e-04 + syst_JES_EtaIntercalibration_Modelling: 5.15422021e-02 + syst_JES_EtaIntercalibration_NonClosure: 4.99380844e-04 + syst_JES_EtaIntercalibration_Stat0: 2.75655886e-17 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 2.771100680918685e-12 - syst_JES_EtaIntercalibration_Stat101: 8.966260131738316e-08 - syst_JES_EtaIntercalibration_Stat102: 2.0207407057809277e-06 - syst_JES_EtaIntercalibration_Stat103: 2.0634172505821506e-06 - syst_JES_EtaIntercalibration_Stat104: 1.1030794837635228e-08 - syst_JES_EtaIntercalibration_Stat105: 3.083120943135381e-17 - syst_JES_EtaIntercalibration_Stat106: 2.756558860245868e-17 - syst_JES_EtaIntercalibration_Stat107: 2.756558860245868e-17 - syst_JES_EtaIntercalibration_Stat108: 2.756558860245868e-17 - syst_JES_EtaIntercalibration_Stat109: 2.756558860245868e-17 + syst_JES_EtaIntercalibration_Stat100: 2.77110068e-12 + syst_JES_EtaIntercalibration_Stat101: 8.96626013e-08 + syst_JES_EtaIntercalibration_Stat102: 2.02074071e-06 + syst_JES_EtaIntercalibration_Stat103: 2.06341725e-06 + syst_JES_EtaIntercalibration_Stat104: 1.10307948e-08 + syst_JES_EtaIntercalibration_Stat105: 3.08312094e-17 + syst_JES_EtaIntercalibration_Stat106: 2.75655886e-17 + syst_JES_EtaIntercalibration_Stat107: 2.75655886e-17 + syst_JES_EtaIntercalibration_Stat108: 2.75655886e-17 + syst_JES_EtaIntercalibration_Stat109: 2.75655886e-17 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 4.006065494971344e-15 - syst_JES_EtaIntercalibration_Stat111: 4.0809491543022194e-08 - syst_JES_EtaIntercalibration_Stat112: 4.353911152056276e-06 - syst_JES_EtaIntercalibration_Stat113: 2.4705809094219116e-06 - syst_JES_EtaIntercalibration_Stat114: 1.9758130554280687e-06 - syst_JES_EtaIntercalibration_Stat115: 3.2538901744680938e-09 - syst_JES_EtaIntercalibration_Stat116: 6.253517153219997e-14 - syst_JES_EtaIntercalibration_Stat117: 2.756558860245868e-17 - syst_JES_EtaIntercalibration_Stat118: 2.756558860245868e-17 - syst_JES_EtaIntercalibration_Stat119: 2.756558860245868e-17 + syst_JES_EtaIntercalibration_Stat110: 4.00606549e-15 + syst_JES_EtaIntercalibration_Stat111: 4.08094915e-08 + syst_JES_EtaIntercalibration_Stat112: 4.35391115e-06 + syst_JES_EtaIntercalibration_Stat113: 2.47058091e-06 + syst_JES_EtaIntercalibration_Stat114: 1.97581306e-06 + syst_JES_EtaIntercalibration_Stat115: 3.25389017e-09 + syst_JES_EtaIntercalibration_Stat116: 6.25351715e-14 + syst_JES_EtaIntercalibration_Stat117: 2.75655886e-17 + syst_JES_EtaIntercalibration_Stat118: 2.75655886e-17 + syst_JES_EtaIntercalibration_Stat119: 2.75655886e-17 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 2.707195412230155e-11 - syst_JES_EtaIntercalibration_Stat121: 8.668037032685082e-06 - syst_JES_EtaIntercalibration_Stat122: 3.854607762146494e-06 - syst_JES_EtaIntercalibration_Stat123: 8.690270421569169e-06 - syst_JES_EtaIntercalibration_Stat124: 1.6603174899699152e-06 - syst_JES_EtaIntercalibration_Stat125: 1.054385929107554e-13 - syst_JES_EtaIntercalibration_Stat126: 2.756558860245868e-17 - syst_JES_EtaIntercalibration_Stat127: 2.756558860245868e-17 - syst_JES_EtaIntercalibration_Stat128: 2.756558860245868e-17 - syst_JES_EtaIntercalibration_Stat129: 2.049153041502757e-08 + syst_JES_EtaIntercalibration_Stat120: 2.70719541e-11 + syst_JES_EtaIntercalibration_Stat121: 8.66803703e-06 + syst_JES_EtaIntercalibration_Stat122: 3.85460776e-06 + syst_JES_EtaIntercalibration_Stat123: 8.69027042e-06 + syst_JES_EtaIntercalibration_Stat124: 1.66031749e-06 + syst_JES_EtaIntercalibration_Stat125: 1.05438593e-13 + syst_JES_EtaIntercalibration_Stat126: 2.75655886e-17 + syst_JES_EtaIntercalibration_Stat127: 2.75655886e-17 + syst_JES_EtaIntercalibration_Stat128: 2.75655886e-17 + syst_JES_EtaIntercalibration_Stat129: 2.04915304e-08 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 2.1577775603615865e-05 - syst_JES_EtaIntercalibration_Stat131: 2.204083158027392e-05 - syst_JES_EtaIntercalibration_Stat132: 3.456833190580651e-05 - syst_JES_EtaIntercalibration_Stat133: 7.486979547855063e-06 - syst_JES_EtaIntercalibration_Stat134: 1.841367281885936e-06 - syst_JES_EtaIntercalibration_Stat135: 6.254435466131216e-14 + syst_JES_EtaIntercalibration_Stat130: 2.15777756e-05 + syst_JES_EtaIntercalibration_Stat131: 2.20408316e-05 + syst_JES_EtaIntercalibration_Stat132: 3.45683319e-05 + syst_JES_EtaIntercalibration_Stat133: 7.48697955e-06 + syst_JES_EtaIntercalibration_Stat134: 1.84136728e-06 + syst_JES_EtaIntercalibration_Stat135: 6.25443547e-14 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 syst_JES_EtaIntercalibration_Stat138: 0.0 - syst_JES_EtaIntercalibration_Stat139: 1.5400564502640804e-07 - syst_JES_EtaIntercalibration_Stat14: 2.7998636219782594e-12 - syst_JES_EtaIntercalibration_Stat140: 1.2681098059710762e-05 - syst_JES_EtaIntercalibration_Stat141: 3.0121414309424454e-05 - syst_JES_EtaIntercalibration_Stat142: 3.148819313647577e-05 - syst_JES_EtaIntercalibration_Stat143: 7.3626827311789e-06 - syst_JES_EtaIntercalibration_Stat144: 7.130440886088321e-10 + syst_JES_EtaIntercalibration_Stat139: 1.54005645e-07 + syst_JES_EtaIntercalibration_Stat14: 2.79986362e-12 + syst_JES_EtaIntercalibration_Stat140: 1.26810981e-05 + syst_JES_EtaIntercalibration_Stat141: 3.01214143e-05 + syst_JES_EtaIntercalibration_Stat142: 3.14881931e-05 + syst_JES_EtaIntercalibration_Stat143: 7.36268273e-06 + syst_JES_EtaIntercalibration_Stat144: 7.13044089e-10 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 2.395798196843799e-09 - syst_JES_EtaIntercalibration_Stat148: 1.1130388223238218e-05 - syst_JES_EtaIntercalibration_Stat149: 2.6585237082824744e-05 - syst_JES_EtaIntercalibration_Stat15: 2.793821835519078e-12 - syst_JES_EtaIntercalibration_Stat150: 2.9481436108168137e-05 - syst_JES_EtaIntercalibration_Stat151: 1.08482632135287e-05 - syst_JES_EtaIntercalibration_Stat152: 1.4392381343961117e-08 + syst_JES_EtaIntercalibration_Stat147: 2.39579820e-09 + syst_JES_EtaIntercalibration_Stat148: 1.11303882e-05 + syst_JES_EtaIntercalibration_Stat149: 2.65852371e-05 + syst_JES_EtaIntercalibration_Stat15: 2.79382184e-12 + syst_JES_EtaIntercalibration_Stat150: 2.94814361e-05 + syst_JES_EtaIntercalibration_Stat151: 1.08482632e-05 + syst_JES_EtaIntercalibration_Stat152: 1.43923813e-08 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 syst_JES_EtaIntercalibration_Stat156: 0.0 - syst_JES_EtaIntercalibration_Stat157: 2.91827833319579e-08 - syst_JES_EtaIntercalibration_Stat158: 1.2074100629032374e-05 - syst_JES_EtaIntercalibration_Stat159: 3.5114555112517086e-05 - syst_JES_EtaIntercalibration_Stat16: 2.783452214178154e-12 - syst_JES_EtaIntercalibration_Stat160: 2.8931643519682737e-05 - syst_JES_EtaIntercalibration_Stat161: 6.8798868268308015e-06 - syst_JES_EtaIntercalibration_Stat162: 6.993253599541489e-10 + syst_JES_EtaIntercalibration_Stat157: 2.91827833e-08 + syst_JES_EtaIntercalibration_Stat158: 1.20741006e-05 + syst_JES_EtaIntercalibration_Stat159: 3.51145551e-05 + syst_JES_EtaIntercalibration_Stat16: 2.78345221e-12 + syst_JES_EtaIntercalibration_Stat160: 2.89316435e-05 + syst_JES_EtaIntercalibration_Stat161: 6.87988683e-06 + syst_JES_EtaIntercalibration_Stat162: 6.99325360e-10 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 5.422902699431367e-09 - syst_JES_EtaIntercalibration_Stat166: 2.5565931446947126e-05 - syst_JES_EtaIntercalibration_Stat167: 5.9908740597679066e-05 - syst_JES_EtaIntercalibration_Stat168: 0.00012187657814362856 - syst_JES_EtaIntercalibration_Stat169: 2.135288270936737e-05 - syst_JES_EtaIntercalibration_Stat17: 2.276780786549289e-17 - syst_JES_EtaIntercalibration_Stat170: 1.7809149860394797e-06 + syst_JES_EtaIntercalibration_Stat165: 5.42290270e-09 + syst_JES_EtaIntercalibration_Stat166: 2.55659314e-05 + syst_JES_EtaIntercalibration_Stat167: 5.99087406e-05 + syst_JES_EtaIntercalibration_Stat168: 1.21876578e-04 + syst_JES_EtaIntercalibration_Stat169: 2.13528827e-05 + syst_JES_EtaIntercalibration_Stat17: 2.27678079e-17 + syst_JES_EtaIntercalibration_Stat170: 1.78091499e-06 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 - syst_JES_EtaIntercalibration_Stat175: 1.967913397688018e-05 - syst_JES_EtaIntercalibration_Stat176: 7.25889734532732e-05 - syst_JES_EtaIntercalibration_Stat177: 0.0001675133726005181 - syst_JES_EtaIntercalibration_Stat178: 9.893260572227944e-05 - syst_JES_EtaIntercalibration_Stat179: 5.7165844417799e-06 + syst_JES_EtaIntercalibration_Stat175: 1.96791340e-05 + syst_JES_EtaIntercalibration_Stat176: 7.25889735e-05 + syst_JES_EtaIntercalibration_Stat177: 1.67513373e-04 + syst_JES_EtaIntercalibration_Stat178: 9.89326057e-05 + syst_JES_EtaIntercalibration_Stat179: 5.71658444e-06 syst_JES_EtaIntercalibration_Stat18: 0.0 - syst_JES_EtaIntercalibration_Stat180: 1.9520210892345047e-06 + syst_JES_EtaIntercalibration_Stat180: 1.95202109e-06 syst_JES_EtaIntercalibration_Stat181: 0.0 - syst_JES_EtaIntercalibration_Stat182: 1.862966706170564e-06 - syst_JES_EtaIntercalibration_Stat183: 9.008370149477652e-05 - syst_JES_EtaIntercalibration_Stat184: 0.0003062608487874348 - syst_JES_EtaIntercalibration_Stat185: 0.0006123216862891596 - syst_JES_EtaIntercalibration_Stat186: 0.00011007687177604567 - syst_JES_EtaIntercalibration_Stat187: 1.6958895650587041e-06 + syst_JES_EtaIntercalibration_Stat182: 1.86296671e-06 + syst_JES_EtaIntercalibration_Stat183: 9.00837015e-05 + syst_JES_EtaIntercalibration_Stat184: 3.06260849e-04 + syst_JES_EtaIntercalibration_Stat185: 6.12321686e-04 + syst_JES_EtaIntercalibration_Stat186: 1.10076872e-04 + syst_JES_EtaIntercalibration_Stat187: 1.69588957e-06 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 - syst_JES_EtaIntercalibration_Stat192: 7.298249293494982e-06 - syst_JES_EtaIntercalibration_Stat193: 0.00019950406010906145 - syst_JES_EtaIntercalibration_Stat194: 0.0005262195620651136 - syst_JES_EtaIntercalibration_Stat195: 0.00038530532049272303 - syst_JES_EtaIntercalibration_Stat196: 7.449600173834834e-05 - syst_JES_EtaIntercalibration_Stat197: 2.0461174819643178e-06 - syst_JES_EtaIntercalibration_Stat198: 0.00012447944127445305 - syst_JES_EtaIntercalibration_Stat199: 0.0008007342677193226 + syst_JES_EtaIntercalibration_Stat192: 7.29824929e-06 + syst_JES_EtaIntercalibration_Stat193: 1.99504060e-04 + syst_JES_EtaIntercalibration_Stat194: 5.26219562e-04 + syst_JES_EtaIntercalibration_Stat195: 3.85305320e-04 + syst_JES_EtaIntercalibration_Stat196: 7.44960017e-05 + syst_JES_EtaIntercalibration_Stat197: 2.04611748e-06 + syst_JES_EtaIntercalibration_Stat198: 1.24479441e-04 + syst_JES_EtaIntercalibration_Stat199: 8.00734268e-04 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 0.0009499474235451139 - syst_JES_EtaIntercalibration_Stat201: 0.0002886737951390808 - syst_JES_EtaIntercalibration_Stat202: 2.5957347105395803e-05 + syst_JES_EtaIntercalibration_Stat200: 9.49947424e-04 + syst_JES_EtaIntercalibration_Stat201: 2.88673795e-04 + syst_JES_EtaIntercalibration_Stat202: 2.59573471e-05 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 - syst_JES_EtaIntercalibration_Stat207: 5.952340212051055e-06 - syst_JES_EtaIntercalibration_Stat208: 0.00030726429584317154 - syst_JES_EtaIntercalibration_Stat209: 0.000895300541717696 + syst_JES_EtaIntercalibration_Stat207: 5.95234021e-06 + syst_JES_EtaIntercalibration_Stat208: 3.07264296e-04 + syst_JES_EtaIntercalibration_Stat209: 8.95300542e-04 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 0.00061290053842365 - syst_JES_EtaIntercalibration_Stat211: 0.00014935117910481994 - syst_JES_EtaIntercalibration_Stat212: 0.00034670587073195057 - syst_JES_EtaIntercalibration_Stat213: 0.0005298334714794829 - syst_JES_EtaIntercalibration_Stat214: 0.00010678726270019285 - syst_JES_EtaIntercalibration_Stat215: 3.6087054119171327e-06 + syst_JES_EtaIntercalibration_Stat210: 6.12900538e-04 + syst_JES_EtaIntercalibration_Stat211: 1.49351179e-04 + syst_JES_EtaIntercalibration_Stat212: 3.46705871e-04 + syst_JES_EtaIntercalibration_Stat213: 5.29833471e-04 + syst_JES_EtaIntercalibration_Stat214: 1.06787263e-04 + syst_JES_EtaIntercalibration_Stat215: 3.60870541e-06 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 syst_JES_EtaIntercalibration_Stat219: 0.0 - syst_JES_EtaIntercalibration_Stat22: 2.756558860245868e-17 - syst_JES_EtaIntercalibration_Stat220: 7.321663523407778e-06 - syst_JES_EtaIntercalibration_Stat221: 0.00012859480267491373 - syst_JES_EtaIntercalibration_Stat222: 0.0004450194462043204 - syst_JES_EtaIntercalibration_Stat223: 0.0004020794044713059 - syst_JES_EtaIntercalibration_Stat224: 0.00019566738409862794 - syst_JES_EtaIntercalibration_Stat225: 0.0002231409751704066 - syst_JES_EtaIntercalibration_Stat226: 7.389810004830977e-05 - syst_JES_EtaIntercalibration_Stat227: 2.7097536327127602e-06 + syst_JES_EtaIntercalibration_Stat22: 2.75655886e-17 + syst_JES_EtaIntercalibration_Stat220: 7.32166352e-06 + syst_JES_EtaIntercalibration_Stat221: 1.28594803e-04 + syst_JES_EtaIntercalibration_Stat222: 4.45019446e-04 + syst_JES_EtaIntercalibration_Stat223: 4.02079404e-04 + syst_JES_EtaIntercalibration_Stat224: 1.95667384e-04 + syst_JES_EtaIntercalibration_Stat225: 2.23140975e-04 + syst_JES_EtaIntercalibration_Stat226: 7.38981000e-05 + syst_JES_EtaIntercalibration_Stat227: 2.70975363e-06 syst_JES_EtaIntercalibration_Stat228: 0.0 syst_JES_EtaIntercalibration_Stat229: 0.0 - syst_JES_EtaIntercalibration_Stat23: 2.756558860245868e-17 + syst_JES_EtaIntercalibration_Stat23: 2.75655886e-17 syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 - syst_JES_EtaIntercalibration_Stat232: 4.85292929579651e-06 - syst_JES_EtaIntercalibration_Stat233: 3.763623456192184e-05 - syst_JES_EtaIntercalibration_Stat234: 0.00015277037245487097 - syst_JES_EtaIntercalibration_Stat235: 0.0001673669844981381 - syst_JES_EtaIntercalibration_Stat236: 5.2879505245416203e-05 - syst_JES_EtaIntercalibration_Stat237: 2.402825836385151e-05 - syst_JES_EtaIntercalibration_Stat238: 5.882044542503908e-07 + syst_JES_EtaIntercalibration_Stat232: 4.85292930e-06 + syst_JES_EtaIntercalibration_Stat233: 3.76362346e-05 + syst_JES_EtaIntercalibration_Stat234: 1.52770372e-04 + syst_JES_EtaIntercalibration_Stat235: 1.67366984e-04 + syst_JES_EtaIntercalibration_Stat236: 5.28795052e-05 + syst_JES_EtaIntercalibration_Stat237: 2.40282584e-05 + syst_JES_EtaIntercalibration_Stat238: 5.88204454e-07 syst_JES_EtaIntercalibration_Stat239: 0.0 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 - syst_JES_EtaIntercalibration_Stat243: 4.232757357185355e-06 - syst_JES_EtaIntercalibration_Stat244: 2.0125696428943768e-05 - syst_JES_EtaIntercalibration_Stat245: 7.386943581076006e-05 - syst_JES_EtaIntercalibration_Stat25: 2.1754558143065098e-17 - syst_JES_EtaIntercalibration_Stat26: 2.999388604365896e-15 - syst_JES_EtaIntercalibration_Stat27: 2.3350812158627377e-12 - syst_JES_EtaIntercalibration_Stat28: 1.8697466453443945e-06 - syst_JES_EtaIntercalibration_Stat29: 2.5904818446574762e-12 + syst_JES_EtaIntercalibration_Stat243: 4.23275736e-06 + syst_JES_EtaIntercalibration_Stat244: 2.01256964e-05 + syst_JES_EtaIntercalibration_Stat245: 7.38694358e-05 + syst_JES_EtaIntercalibration_Stat25: 2.17545581e-17 + syst_JES_EtaIntercalibration_Stat26: 2.99938860e-15 + syst_JES_EtaIntercalibration_Stat27: 2.33508122e-12 + syst_JES_EtaIntercalibration_Stat28: 1.86974665e-06 + syst_JES_EtaIntercalibration_Stat29: 2.59048184e-12 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 2.1523782648677253e-16 + syst_JES_EtaIntercalibration_Stat30: 2.15237826e-16 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 3.893941995908516e-17 - syst_JES_EtaIntercalibration_Stat36: 2.7226182945001676e-12 - syst_JES_EtaIntercalibration_Stat37: 1.937298781615892e-06 - syst_JES_EtaIntercalibration_Stat38: 1.936432754191382e-06 - syst_JES_EtaIntercalibration_Stat39: 1.0827262842819508e-13 - syst_JES_EtaIntercalibration_Stat4: 2.9825914906336065e-17 - syst_JES_EtaIntercalibration_Stat40: 1.784878357199728e-17 + syst_JES_EtaIntercalibration_Stat35: 3.89394200e-17 + syst_JES_EtaIntercalibration_Stat36: 2.72261829e-12 + syst_JES_EtaIntercalibration_Stat37: 1.93729878e-06 + syst_JES_EtaIntercalibration_Stat38: 1.93643275e-06 + syst_JES_EtaIntercalibration_Stat39: 1.08272628e-13 + syst_JES_EtaIntercalibration_Stat4: 2.98259149e-17 + syst_JES_EtaIntercalibration_Stat40: 1.78487836e-17 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 - syst_JES_EtaIntercalibration_Stat44: 2.756558860245868e-17 + syst_JES_EtaIntercalibration_Stat44: 2.75655886e-17 syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 - syst_JES_EtaIntercalibration_Stat47: 2.1763218397102943e-17 - syst_JES_EtaIntercalibration_Stat48: 1.1685868677595175e-13 - syst_JES_EtaIntercalibration_Stat49: 7.1236670858484115e-12 - syst_JES_EtaIntercalibration_Stat5: 1.980865979817918e-14 - syst_JES_EtaIntercalibration_Stat50: 1.8351074134840352e-06 - syst_JES_EtaIntercalibration_Stat51: 3.197904306973045e-09 - syst_JES_EtaIntercalibration_Stat52: 1.688867903856012e-14 + syst_JES_EtaIntercalibration_Stat47: 2.17632184e-17 + syst_JES_EtaIntercalibration_Stat48: 1.16858687e-13 + syst_JES_EtaIntercalibration_Stat49: 7.12366709e-12 + syst_JES_EtaIntercalibration_Stat5: 1.98086598e-14 + syst_JES_EtaIntercalibration_Stat50: 1.83510741e-06 + syst_JES_EtaIntercalibration_Stat51: 3.19790431e-09 + syst_JES_EtaIntercalibration_Stat52: 1.68886790e-14 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 syst_JES_EtaIntercalibration_Stat56: 0.0 - syst_JES_EtaIntercalibration_Stat57: 2.799003923010382e-12 - syst_JES_EtaIntercalibration_Stat58: 2.5237781587730724e-12 - syst_JES_EtaIntercalibration_Stat59: 2.1581841800691502e-06 - syst_JES_EtaIntercalibration_Stat6: 1.5153450786866996e-13 - syst_JES_EtaIntercalibration_Stat60: 1.9442088629622804e-06 - syst_JES_EtaIntercalibration_Stat61: 5.230461808299054e-12 - syst_JES_EtaIntercalibration_Stat62: 2.3226801329498644e-17 + syst_JES_EtaIntercalibration_Stat57: 2.79900392e-12 + syst_JES_EtaIntercalibration_Stat58: 2.52377816e-12 + syst_JES_EtaIntercalibration_Stat59: 2.15818418e-06 + syst_JES_EtaIntercalibration_Stat6: 1.51534508e-13 + syst_JES_EtaIntercalibration_Stat60: 1.94420886e-06 + syst_JES_EtaIntercalibration_Stat61: 5.23046181e-12 + syst_JES_EtaIntercalibration_Stat62: 2.32268013e-17 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 - syst_JES_EtaIntercalibration_Stat69: 3.198122066150696e-17 - syst_JES_EtaIntercalibration_Stat7: 1.695121541564203e-14 - syst_JES_EtaIntercalibration_Stat70: 2.8760519379872126e-12 - syst_JES_EtaIntercalibration_Stat71: 3.299289896770616e-06 - syst_JES_EtaIntercalibration_Stat72: 9.779268784105896e-06 - syst_JES_EtaIntercalibration_Stat73: 1.8350817041208398e-06 - syst_JES_EtaIntercalibration_Stat74: 2.0334795075190702e-13 + syst_JES_EtaIntercalibration_Stat69: 3.19812207e-17 + syst_JES_EtaIntercalibration_Stat7: 1.69512154e-14 + syst_JES_EtaIntercalibration_Stat70: 2.87605194e-12 + syst_JES_EtaIntercalibration_Stat71: 3.29928990e-06 + syst_JES_EtaIntercalibration_Stat72: 9.77926878e-06 + syst_JES_EtaIntercalibration_Stat73: 1.83508170e-06 + syst_JES_EtaIntercalibration_Stat74: 2.03347951e-13 syst_JES_EtaIntercalibration_Stat75: 0.0 syst_JES_EtaIntercalibration_Stat76: 0.0 syst_JES_EtaIntercalibration_Stat77: 0.0 syst_JES_EtaIntercalibration_Stat78: 0.0 - syst_JES_EtaIntercalibration_Stat79: 2.7565336141086238e-12 + syst_JES_EtaIntercalibration_Stat79: 2.75653361e-12 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 4.927575881455302e-08 - syst_JES_EtaIntercalibration_Stat81: 1.9820239655463306e-06 - syst_JES_EtaIntercalibration_Stat82: 1.9512315982476298e-06 - syst_JES_EtaIntercalibration_Stat83: 7.139269640516458e-10 - syst_JES_EtaIntercalibration_Stat84: 1.1023030847616276e-17 - syst_JES_EtaIntercalibration_Stat85: 2.756558860245868e-17 - syst_JES_EtaIntercalibration_Stat86: 2.756558860245868e-17 - syst_JES_EtaIntercalibration_Stat87: 2.756558860245868e-17 - syst_JES_EtaIntercalibration_Stat88: 2.756558860245868e-17 - syst_JES_EtaIntercalibration_Stat89: 2.756558860245868e-17 + syst_JES_EtaIntercalibration_Stat80: 4.92757588e-08 + syst_JES_EtaIntercalibration_Stat81: 1.98202397e-06 + syst_JES_EtaIntercalibration_Stat82: 1.95123160e-06 + syst_JES_EtaIntercalibration_Stat83: 7.13926964e-10 + syst_JES_EtaIntercalibration_Stat84: 1.10230308e-17 + syst_JES_EtaIntercalibration_Stat85: 2.75655886e-17 + syst_JES_EtaIntercalibration_Stat86: 2.75655886e-17 + syst_JES_EtaIntercalibration_Stat87: 2.75655886e-17 + syst_JES_EtaIntercalibration_Stat88: 2.75655886e-17 + syst_JES_EtaIntercalibration_Stat89: 2.75655886e-17 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 1.2280710695537943e-09 - syst_JES_EtaIntercalibration_Stat92: 3.2881578214131923e-06 - syst_JES_EtaIntercalibration_Stat93: 9.787391030565807e-06 - syst_JES_EtaIntercalibration_Stat94: 1.835772651139151e-06 - syst_JES_EtaIntercalibration_Stat95: 2.354421556879736e-12 - syst_JES_EtaIntercalibration_Stat96: 6.253517153219997e-14 - syst_JES_EtaIntercalibration_Stat97: 2.756558860245868e-17 - syst_JES_EtaIntercalibration_Stat98: 2.756558860245868e-17 - syst_JES_EtaIntercalibration_Stat99: 2.756558860245868e-17 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0048671460580097655 - syst_JES_Flavour_Comp: 0.014356633031459709 - syst_JES_Gjet_Generator: 0.021927573395157066 - syst_JES_Gjet_OOC: 0.017526214651201782 - syst_JES_Gjet_Purity: 0.005000793736998158 - syst_JES_Gjet_Stat1: 8.93911421786297e-06 - syst_JES_Gjet_Stat10: 0.00047137300251499345 - syst_JES_Gjet_Stat11: 0.0005775201035461882 - syst_JES_Gjet_Stat12: 0.0022176239536945844 - syst_JES_Gjet_Stat13: 0.005354534036683304 - syst_JES_Gjet_Stat14: 0.0055435092450540745 - syst_JES_Gjet_Stat15: 0.001020284983472755 - syst_JES_Gjet_Stat2: 2.128690554017378e-13 - syst_JES_Gjet_Stat3: 2.5599710935867885e-06 - syst_JES_Gjet_Stat4: 4.5036443853839086e-05 - syst_JES_Gjet_Stat5: 3.5732163646661995e-07 - syst_JES_Gjet_Stat6: 0.00014531543990574435 - syst_JES_Gjet_Stat7: 0.0001847065984203055 - syst_JES_Gjet_Stat8: 0.00014972387518361925 - syst_JES_Gjet_Stat9: 0.00029354506894172145 - syst_JES_Gjet_Veto: 0.015206882487873706 - syst_JES_Gjet_dPhi: 0.0016362275972492337 - syst_JES_LArESZee: 0.03289324550724662 - syst_JES_LArEsmear: 0.002642998675746925 - syst_JES_LAr_JVT: 0.003333349179129003 - syst_JES_MJB_Alpha: 0.00019994364205945636 - syst_JES_MJB_Asym: 0.001401397840550641 - syst_JES_MJB_Beta: 0.00015902773343036744 - syst_JES_MJB_Stat1: 1.1680951150560054e-06 - syst_JES_MJB_Stat10: 3.2258002108004146e-06 - syst_JES_MJB_Stat11: 7.25121498440089e-06 - syst_JES_MJB_Stat12: 2.896702577115702e-06 - syst_JES_MJB_Stat13: 2.5582389366045347e-06 - syst_JES_MJB_Stat14: 9.6405933350991e-07 - syst_JES_MJB_Stat15: 9.6774662360558e-07 - syst_JES_MJB_Stat16: 6.603184920048109e-08 - syst_JES_MJB_Stat2: 0.00015302668884871067 - syst_JES_MJB_Stat3: 0.0003364941706404436 - syst_JES_MJB_Stat4: 0.0001320688740771269 + syst_JES_EtaIntercalibration_Stat91: 1.22807107e-09 + syst_JES_EtaIntercalibration_Stat92: 3.28815782e-06 + syst_JES_EtaIntercalibration_Stat93: 9.78739103e-06 + syst_JES_EtaIntercalibration_Stat94: 1.83577265e-06 + syst_JES_EtaIntercalibration_Stat95: 2.35442156e-12 + syst_JES_EtaIntercalibration_Stat96: 6.25351715e-14 + syst_JES_EtaIntercalibration_Stat97: 2.75655886e-17 + syst_JES_EtaIntercalibration_Stat98: 2.75655886e-17 + syst_JES_EtaIntercalibration_Stat99: 2.75655886e-17 + syst_JES_EtaIntercalibration_TotalStat_MJB: 4.86714606e-03 + syst_JES_Flavour_Comp: 1.43566330e-02 + syst_JES_Gjet_Generator: 2.19275734e-02 + syst_JES_Gjet_OOC: 1.75262147e-02 + syst_JES_Gjet_Purity: 5.00079374e-03 + syst_JES_Gjet_Stat1: 8.93911422e-06 + syst_JES_Gjet_Stat10: 4.71373003e-04 + syst_JES_Gjet_Stat11: 5.77520104e-04 + syst_JES_Gjet_Stat12: 2.21762395e-03 + syst_JES_Gjet_Stat13: 5.35453404e-03 + syst_JES_Gjet_Stat14: 5.54350925e-03 + syst_JES_Gjet_Stat15: 1.02028498e-03 + syst_JES_Gjet_Stat2: 2.12869055e-13 + syst_JES_Gjet_Stat3: 2.55997109e-06 + syst_JES_Gjet_Stat4: 4.50364439e-05 + syst_JES_Gjet_Stat5: 3.57321636e-07 + syst_JES_Gjet_Stat6: 1.45315440e-04 + syst_JES_Gjet_Stat7: 1.84706598e-04 + syst_JES_Gjet_Stat8: 1.49723875e-04 + syst_JES_Gjet_Stat9: 2.93545069e-04 + syst_JES_Gjet_Veto: 1.52068825e-02 + syst_JES_Gjet_dPhi: 1.63622760e-03 + syst_JES_LArESZee: 3.28932455e-02 + syst_JES_LArEsmear: 2.64299868e-03 + syst_JES_LAr_JVT: 3.33334918e-03 + syst_JES_MJB_Alpha: 1.99943642e-04 + syst_JES_MJB_Asym: 1.40139784e-03 + syst_JES_MJB_Beta: 1.59027733e-04 + syst_JES_MJB_Stat1: 1.16809512e-06 + syst_JES_MJB_Stat10: 3.22580021e-06 + syst_JES_MJB_Stat11: 7.25121498e-06 + syst_JES_MJB_Stat12: 2.89670258e-06 + syst_JES_MJB_Stat13: 2.55823894e-06 + syst_JES_MJB_Stat14: 9.64059334e-07 + syst_JES_MJB_Stat15: 9.67746624e-07 + syst_JES_MJB_Stat16: 6.60318492e-08 + syst_JES_MJB_Stat2: 1.53026689e-04 + syst_JES_MJB_Stat3: 3.36494171e-04 + syst_JES_MJB_Stat4: 1.32068874e-04 syst_JES_MJB_Stat5: 0.0 - syst_JES_MJB_Stat6: 3.286566407361945e-05 - syst_JES_MJB_Stat7: 2.949682525289798e-07 - syst_JES_MJB_Stat8: 1.0487435972033392e-05 - syst_JES_MJB_Stat9: 3.82502591233053e-05 - syst_JES_MJB_Threshold: 0.0018060199334448109 - syst_JES_Pileup_MuOffset: 0.003746939651235392 - syst_JES_Pileup_NPVOffset: 0.0039003914428554476 - syst_JES_Pileup_Pt_term: 0.004166384043748248 - syst_JES_PunchThrough_MC15: 0.002391572495242408 + syst_JES_MJB_Stat6: 3.28656641e-05 + syst_JES_MJB_Stat7: 2.94968253e-07 + syst_JES_MJB_Stat8: 1.04874360e-05 + syst_JES_MJB_Stat9: 3.82502591e-05 + syst_JES_MJB_Threshold: 1.80601993e-03 + syst_JES_Pileup_MuOffset: 3.74693965e-03 + syst_JES_Pileup_NPVOffset: 3.90039144e-03 + syst_JES_Pileup_Pt_term: 4.16638404e-03 + syst_JES_PunchThrough_MC15: 2.39157250e-03 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.013298530548523022 - syst_JES_Zjet_MuScale: 0.0008376479615566434 - syst_JES_Zjet_MuSmearID: 0.00015582316997160597 - syst_JES_Zjet_MuSmearMS: 0.00378228141040563 - syst_JES_Zjet_OOC: 0.00618132760820845 - syst_JES_Zjet_Stat1: 0.00026699844568835976 - syst_JES_Zjet_Stat10: 0.00047914836950573047 - syst_JES_Zjet_Stat11: 0.0006103386498494095 - syst_JES_Zjet_Stat12: 0.002463189548126575 - syst_JES_Zjet_Stat13: 0.004115817415775389 - syst_JES_Zjet_Stat2: 6.719491513783061e-13 - syst_JES_Zjet_Stat3: 0.0001162220405086746 - syst_JES_Zjet_Stat4: 0.00011620548900546823 - syst_JES_Zjet_Stat5: 0.00014774526007625422 - syst_JES_Zjet_Stat6: 0.0001959674654119913 - syst_JES_Zjet_Stat7: 9.022117323555486e-05 - syst_JES_Zjet_Stat8: 0.00014319981424568959 - syst_JES_Zjet_Stat9: 0.0002834228466443734 - syst_JES_Zjet_Veto: 0.0013177079304610717 - syst_JES_Zjet_dPhi: 0.0011036043256076884 + syst_JES_Zjet_MC: 1.32985305e-02 + syst_JES_Zjet_MuScale: 8.37647962e-04 + syst_JES_Zjet_MuSmearID: 1.55823170e-04 + syst_JES_Zjet_MuSmearMS: 3.78228141e-03 + syst_JES_Zjet_OOC: 6.18132761e-03 + syst_JES_Zjet_Stat1: 2.66998446e-04 + syst_JES_Zjet_Stat10: 4.79148370e-04 + syst_JES_Zjet_Stat11: 6.10338650e-04 + syst_JES_Zjet_Stat12: 2.46318955e-03 + syst_JES_Zjet_Stat13: 4.11581742e-03 + syst_JES_Zjet_Stat2: 6.71949151e-13 + syst_JES_Zjet_Stat3: 1.16222041e-04 + syst_JES_Zjet_Stat4: 1.16205489e-04 + syst_JES_Zjet_Stat5: 1.47745260e-04 + syst_JES_Zjet_Stat6: 1.95967465e-04 + syst_JES_Zjet_Stat7: 9.02211732e-05 + syst_JES_Zjet_Stat8: 1.43199814e-04 + syst_JES_Zjet_Stat9: 2.83422847e-04 + syst_JES_Zjet_Veto: 1.31770793e-03 + syst_JES_Zjet_dPhi: 1.10360433e-03 syst_PRW: 0.001421 - syst_Unfolding_bias: 4.905e-12 - syst_cleaning: 0.005297477394949412 + syst_Unfolding_bias: 4.90500000e-12 + syst_cleaning: 5.29747739e-03 syst_lumi: 0.01971 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0028694028995594188 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 0.0031027192509152355 - syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0011484618974959507 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 2.86940290e-03 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 3.10271925e-03 + syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.14846190e-03 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 0.004319712490432667 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0034006544958287074 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.006327377241005945 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 4.31971249e-03 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 3.40065450e-03 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 6.32737724e-03 - stat: 0.003105 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.005395127130105462 - syst_JER_NP1: 5.49017331238277e-05 - syst_JER_NP2: 0.0032889706596441384 - syst_JER_NP3: 0.0003374332729222179 - syst_JER_NP4: 1.4275043782769985e-08 - syst_JER_NP5: 0.0005053100310700352 - syst_JER_NP6: 2.8353779289540928e-08 - syst_JER_NP7: 3.4081330666510075e-08 - syst_JER_NP8: 0.0005160247353567462 - syst_JES_EtaIntercalibration_Modelling: 0.03421347979963453 - syst_JES_EtaIntercalibration_NonClosure: 0.00022534174646523 - syst_JES_EtaIntercalibration_Stat0: 4.846278159577719e-18 + syst_JER_NP0: 5.39512713e-03 + syst_JER_NP1: 5.49017331e-05 + syst_JER_NP2: 3.28897066e-03 + syst_JER_NP3: 3.37433273e-04 + syst_JER_NP4: 1.42750438e-08 + syst_JER_NP5: 5.05310031e-04 + syst_JER_NP6: 2.83537793e-08 + syst_JER_NP7: 3.40813307e-08 + syst_JER_NP8: 5.16024735e-04 + syst_JES_EtaIntercalibration_Modelling: 3.42134798e-02 + syst_JES_EtaIntercalibration_NonClosure: 2.25341746e-04 + syst_JES_EtaIntercalibration_Stat0: 4.84627816e-18 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 3.5110417117859407e-13 - syst_JES_EtaIntercalibration_Stat101: 1.2793382537468346e-08 - syst_JES_EtaIntercalibration_Stat102: 1.4523218789235397e-06 - syst_JES_EtaIntercalibration_Stat103: 1.607915181220701e-06 - syst_JES_EtaIntercalibration_Stat104: 1.5969782252350844e-09 - syst_JES_EtaIntercalibration_Stat105: 5.843722507956721e-18 - syst_JES_EtaIntercalibration_Stat106: 4.846278159577719e-18 - syst_JES_EtaIntercalibration_Stat107: 4.846278159577719e-18 - syst_JES_EtaIntercalibration_Stat108: 4.846278159577719e-18 - syst_JES_EtaIntercalibration_Stat109: 4.846278159577719e-18 + syst_JES_EtaIntercalibration_Stat100: 3.51104171e-13 + syst_JES_EtaIntercalibration_Stat101: 1.27933825e-08 + syst_JES_EtaIntercalibration_Stat102: 1.45232188e-06 + syst_JES_EtaIntercalibration_Stat103: 1.60791518e-06 + syst_JES_EtaIntercalibration_Stat104: 1.59697823e-09 + syst_JES_EtaIntercalibration_Stat105: 5.84372251e-18 + syst_JES_EtaIntercalibration_Stat106: 4.84627816e-18 + syst_JES_EtaIntercalibration_Stat107: 4.84627816e-18 + syst_JES_EtaIntercalibration_Stat108: 4.84627816e-18 + syst_JES_EtaIntercalibration_Stat109: 4.84627816e-18 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 6.013497713477574e-16 - syst_JES_EtaIntercalibration_Stat111: 6.722099579000597e-09 - syst_JES_EtaIntercalibration_Stat112: 1.9978973115503207e-06 - syst_JES_EtaIntercalibration_Stat113: 9.028907076717536e-07 - syst_JES_EtaIntercalibration_Stat114: 5.019626450992145e-07 - syst_JES_EtaIntercalibration_Stat115: 8.929400573558956e-10 - syst_JES_EtaIntercalibration_Stat116: 8.001326634903239e-15 - syst_JES_EtaIntercalibration_Stat117: 4.846278159577719e-18 - syst_JES_EtaIntercalibration_Stat118: 4.846278159577719e-18 - syst_JES_EtaIntercalibration_Stat119: 4.846278159577719e-18 + syst_JES_EtaIntercalibration_Stat110: 6.01349771e-16 + syst_JES_EtaIntercalibration_Stat111: 6.72209958e-09 + syst_JES_EtaIntercalibration_Stat112: 1.99789731e-06 + syst_JES_EtaIntercalibration_Stat113: 9.02890708e-07 + syst_JES_EtaIntercalibration_Stat114: 5.01962645e-07 + syst_JES_EtaIntercalibration_Stat115: 8.92940057e-10 + syst_JES_EtaIntercalibration_Stat116: 8.00132663e-15 + syst_JES_EtaIntercalibration_Stat117: 4.84627816e-18 + syst_JES_EtaIntercalibration_Stat118: 4.84627816e-18 + syst_JES_EtaIntercalibration_Stat119: 4.84627816e-18 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 3.3987166971520297e-12 - syst_JES_EtaIntercalibration_Stat121: 5.6224863717042475e-06 - syst_JES_EtaIntercalibration_Stat122: 2.9116945444191086e-06 - syst_JES_EtaIntercalibration_Stat123: 5.7375751629063645e-06 - syst_JES_EtaIntercalibration_Stat124: 3.68397193087841e-06 - syst_JES_EtaIntercalibration_Stat125: 1.4601188307805636e-14 - syst_JES_EtaIntercalibration_Stat126: 4.846278159577719e-18 - syst_JES_EtaIntercalibration_Stat127: 4.846278159577719e-18 - syst_JES_EtaIntercalibration_Stat128: 4.846278159577719e-18 - syst_JES_EtaIntercalibration_Stat129: 2.704701589362494e-09 + syst_JES_EtaIntercalibration_Stat120: 3.39871670e-12 + syst_JES_EtaIntercalibration_Stat121: 5.62248637e-06 + syst_JES_EtaIntercalibration_Stat122: 2.91169454e-06 + syst_JES_EtaIntercalibration_Stat123: 5.73757516e-06 + syst_JES_EtaIntercalibration_Stat124: 3.68397193e-06 + syst_JES_EtaIntercalibration_Stat125: 1.46011883e-14 + syst_JES_EtaIntercalibration_Stat126: 4.84627816e-18 + syst_JES_EtaIntercalibration_Stat127: 4.84627816e-18 + syst_JES_EtaIntercalibration_Stat128: 4.84627816e-18 + syst_JES_EtaIntercalibration_Stat129: 2.70470159e-09 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 1.532838775303848e-05 - syst_JES_EtaIntercalibration_Stat131: 8.84655910123347e-06 - syst_JES_EtaIntercalibration_Stat132: 1.4287881884660159e-05 - syst_JES_EtaIntercalibration_Stat133: 7.029363609175443e-06 - syst_JES_EtaIntercalibration_Stat134: 1.1116248405295142e-06 - syst_JES_EtaIntercalibration_Stat135: 8.002940756371998e-15 + syst_JES_EtaIntercalibration_Stat130: 1.53283878e-05 + syst_JES_EtaIntercalibration_Stat131: 8.84655910e-06 + syst_JES_EtaIntercalibration_Stat132: 1.42878819e-05 + syst_JES_EtaIntercalibration_Stat133: 7.02936361e-06 + syst_JES_EtaIntercalibration_Stat134: 1.11162484e-06 + syst_JES_EtaIntercalibration_Stat135: 8.00294076e-15 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 syst_JES_EtaIntercalibration_Stat138: 0.0 - syst_JES_EtaIntercalibration_Stat139: 2.1915882522727667e-08 - syst_JES_EtaIntercalibration_Stat14: 3.5463806478675326e-13 - syst_JES_EtaIntercalibration_Stat140: 2.2268832479499234e-06 - syst_JES_EtaIntercalibration_Stat141: 1.791790534632885e-05 - syst_JES_EtaIntercalibration_Stat142: 1.4050243378674975e-05 - syst_JES_EtaIntercalibration_Stat143: 4.91928470410079e-06 - syst_JES_EtaIntercalibration_Stat144: 8.943978644876117e-11 + syst_JES_EtaIntercalibration_Stat139: 2.19158825e-08 + syst_JES_EtaIntercalibration_Stat14: 3.54638065e-13 + syst_JES_EtaIntercalibration_Stat140: 2.22688325e-06 + syst_JES_EtaIntercalibration_Stat141: 1.79179053e-05 + syst_JES_EtaIntercalibration_Stat142: 1.40502434e-05 + syst_JES_EtaIntercalibration_Stat143: 4.91928470e-06 + syst_JES_EtaIntercalibration_Stat144: 8.94397864e-11 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 4.0955908914343484e-10 - syst_JES_EtaIntercalibration_Stat148: 6.102992764210031e-06 - syst_JES_EtaIntercalibration_Stat149: 9.309607334361639e-06 - syst_JES_EtaIntercalibration_Stat15: 3.5394877717523007e-13 - syst_JES_EtaIntercalibration_Stat150: 1.2893815988682326e-05 - syst_JES_EtaIntercalibration_Stat151: 1.3177087728326012e-05 - syst_JES_EtaIntercalibration_Stat152: 2.6670413326380976e-09 + syst_JES_EtaIntercalibration_Stat147: 4.09559089e-10 + syst_JES_EtaIntercalibration_Stat148: 6.10299276e-06 + syst_JES_EtaIntercalibration_Stat149: 9.30960733e-06 + syst_JES_EtaIntercalibration_Stat15: 3.53948777e-13 + syst_JES_EtaIntercalibration_Stat150: 1.28938160e-05 + syst_JES_EtaIntercalibration_Stat151: 1.31770877e-05 + syst_JES_EtaIntercalibration_Stat152: 2.66704133e-09 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 syst_JES_EtaIntercalibration_Stat156: 0.0 - syst_JES_EtaIntercalibration_Stat157: 4.987419844719311e-09 - syst_JES_EtaIntercalibration_Stat158: 3.8068956841500133e-06 - syst_JES_EtaIntercalibration_Stat159: 1.745305918743187e-05 - syst_JES_EtaIntercalibration_Stat16: 3.5256725073412063e-13 - syst_JES_EtaIntercalibration_Stat160: 1.3910590533834285e-05 - syst_JES_EtaIntercalibration_Stat161: 4.5003719846252706e-06 - syst_JES_EtaIntercalibration_Stat162: 8.751869785937174e-11 + syst_JES_EtaIntercalibration_Stat157: 4.98741984e-09 + syst_JES_EtaIntercalibration_Stat158: 3.80689568e-06 + syst_JES_EtaIntercalibration_Stat159: 1.74530592e-05 + syst_JES_EtaIntercalibration_Stat16: 3.52567251e-13 + syst_JES_EtaIntercalibration_Stat160: 1.39105905e-05 + syst_JES_EtaIntercalibration_Stat161: 4.50037198e-06 + syst_JES_EtaIntercalibration_Stat162: 8.75186979e-11 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 9.415694291978685e-10 - syst_JES_EtaIntercalibration_Stat166: 1.0186131782354869e-05 - syst_JES_EtaIntercalibration_Stat167: 2.392806302231754e-05 - syst_JES_EtaIntercalibration_Stat168: 4.9662721431673474e-05 - syst_JES_EtaIntercalibration_Stat169: 1.3291091405524228e-05 - syst_JES_EtaIntercalibration_Stat17: 3.999305314676537e-18 - syst_JES_EtaIntercalibration_Stat170: 1.095808132236205e-06 + syst_JES_EtaIntercalibration_Stat165: 9.41569429e-10 + syst_JES_EtaIntercalibration_Stat166: 1.01861318e-05 + syst_JES_EtaIntercalibration_Stat167: 2.39280630e-05 + syst_JES_EtaIntercalibration_Stat168: 4.96627214e-05 + syst_JES_EtaIntercalibration_Stat169: 1.32910914e-05 + syst_JES_EtaIntercalibration_Stat17: 3.99930531e-18 + syst_JES_EtaIntercalibration_Stat170: 1.09580813e-06 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 - syst_JES_EtaIntercalibration_Stat175: 8.498227428860857e-06 - syst_JES_EtaIntercalibration_Stat176: 1.882581952399417e-05 - syst_JES_EtaIntercalibration_Stat177: 6.506741638485424e-05 - syst_JES_EtaIntercalibration_Stat178: 3.912547124316844e-05 - syst_JES_EtaIntercalibration_Stat179: 3.92365460635872e-06 + syst_JES_EtaIntercalibration_Stat175: 8.49822743e-06 + syst_JES_EtaIntercalibration_Stat176: 1.88258195e-05 + syst_JES_EtaIntercalibration_Stat177: 6.50674164e-05 + syst_JES_EtaIntercalibration_Stat178: 3.91254712e-05 + syst_JES_EtaIntercalibration_Stat179: 3.92365461e-06 syst_JES_EtaIntercalibration_Stat18: 0.0 - syst_JES_EtaIntercalibration_Stat180: 1.2730573210002778e-06 + syst_JES_EtaIntercalibration_Stat180: 1.27305732e-06 syst_JES_EtaIntercalibration_Stat181: 0.0 - syst_JES_EtaIntercalibration_Stat182: 1.0097019289810234e-06 - syst_JES_EtaIntercalibration_Stat183: 3.532057683560675e-05 - syst_JES_EtaIntercalibration_Stat184: 0.0001120161250668849 - syst_JES_EtaIntercalibration_Stat185: 0.00025250086633514746 - syst_JES_EtaIntercalibration_Stat186: 4.175474194627479e-05 - syst_JES_EtaIntercalibration_Stat187: 1.0578814574776326e-06 + syst_JES_EtaIntercalibration_Stat182: 1.00970193e-06 + syst_JES_EtaIntercalibration_Stat183: 3.53205768e-05 + syst_JES_EtaIntercalibration_Stat184: 1.12016125e-04 + syst_JES_EtaIntercalibration_Stat185: 2.52500866e-04 + syst_JES_EtaIntercalibration_Stat186: 4.17547419e-05 + syst_JES_EtaIntercalibration_Stat187: 1.05788146e-06 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 - syst_JES_EtaIntercalibration_Stat192: 2.2859297889480332e-06 - syst_JES_EtaIntercalibration_Stat193: 8.322656712252405e-05 - syst_JES_EtaIntercalibration_Stat194: 0.00021430956581543437 - syst_JES_EtaIntercalibration_Stat195: 0.0001551115082771101 - syst_JES_EtaIntercalibration_Stat196: 3.536340905512363e-05 - syst_JES_EtaIntercalibration_Stat197: 1.1195357028697209e-06 - syst_JES_EtaIntercalibration_Stat198: 6.831136270782482e-05 - syst_JES_EtaIntercalibration_Stat199: 0.0003647585528469483 + syst_JES_EtaIntercalibration_Stat192: 2.28592979e-06 + syst_JES_EtaIntercalibration_Stat193: 8.32265671e-05 + syst_JES_EtaIntercalibration_Stat194: 2.14309566e-04 + syst_JES_EtaIntercalibration_Stat195: 1.55111508e-04 + syst_JES_EtaIntercalibration_Stat196: 3.53634091e-05 + syst_JES_EtaIntercalibration_Stat197: 1.11953570e-06 + syst_JES_EtaIntercalibration_Stat198: 6.83113627e-05 + syst_JES_EtaIntercalibration_Stat199: 3.64758553e-04 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 0.000419234099281058 - syst_JES_EtaIntercalibration_Stat201: 0.0001394607912640682 - syst_JES_EtaIntercalibration_Stat202: 1.651923130982492e-05 + syst_JES_EtaIntercalibration_Stat200: 4.19234099e-04 + syst_JES_EtaIntercalibration_Stat201: 1.39460791e-04 + syst_JES_EtaIntercalibration_Stat202: 1.65192313e-05 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 - syst_JES_EtaIntercalibration_Stat207: 1.6893445970257222e-06 - syst_JES_EtaIntercalibration_Stat208: 0.0001567664594229263 - syst_JES_EtaIntercalibration_Stat209: 0.0004186132433404371 + syst_JES_EtaIntercalibration_Stat207: 1.68934460e-06 + syst_JES_EtaIntercalibration_Stat208: 1.56766459e-04 + syst_JES_EtaIntercalibration_Stat209: 4.18613243e-04 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 0.0002755803149718789 - syst_JES_EtaIntercalibration_Stat211: 9.306540818155799e-05 - syst_JES_EtaIntercalibration_Stat212: 0.00021097338102234607 - syst_JES_EtaIntercalibration_Stat213: 0.0002973333608931228 - syst_JES_EtaIntercalibration_Stat214: 7.014343233689096e-05 - syst_JES_EtaIntercalibration_Stat215: 2.3215934183228555e-06 + syst_JES_EtaIntercalibration_Stat210: 2.75580315e-04 + syst_JES_EtaIntercalibration_Stat211: 9.30654082e-05 + syst_JES_EtaIntercalibration_Stat212: 2.10973381e-04 + syst_JES_EtaIntercalibration_Stat213: 2.97333361e-04 + syst_JES_EtaIntercalibration_Stat214: 7.01434323e-05 + syst_JES_EtaIntercalibration_Stat215: 2.32159342e-06 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 syst_JES_EtaIntercalibration_Stat219: 0.0 - syst_JES_EtaIntercalibration_Stat22: 4.846278159577719e-18 - syst_JES_EtaIntercalibration_Stat220: 3.478319421789782e-06 - syst_JES_EtaIntercalibration_Stat221: 8.721825726302951e-05 - syst_JES_EtaIntercalibration_Stat222: 0.00026384573144168925 - syst_JES_EtaIntercalibration_Stat223: 0.00023858597506978485 - syst_JES_EtaIntercalibration_Stat224: 0.00020576168253588908 - syst_JES_EtaIntercalibration_Stat225: 0.00025811648533171993 - syst_JES_EtaIntercalibration_Stat226: 7.763342321448927e-05 - syst_JES_EtaIntercalibration_Stat227: 1.5997744028456013e-06 + syst_JES_EtaIntercalibration_Stat22: 4.84627816e-18 + syst_JES_EtaIntercalibration_Stat220: 3.47831942e-06 + syst_JES_EtaIntercalibration_Stat221: 8.72182573e-05 + syst_JES_EtaIntercalibration_Stat222: 2.63845731e-04 + syst_JES_EtaIntercalibration_Stat223: 2.38585975e-04 + syst_JES_EtaIntercalibration_Stat224: 2.05761683e-04 + syst_JES_EtaIntercalibration_Stat225: 2.58116485e-04 + syst_JES_EtaIntercalibration_Stat226: 7.76334232e-05 + syst_JES_EtaIntercalibration_Stat227: 1.59977440e-06 syst_JES_EtaIntercalibration_Stat228: 0.0 syst_JES_EtaIntercalibration_Stat229: 0.0 - syst_JES_EtaIntercalibration_Stat23: 4.846278159577719e-18 + syst_JES_EtaIntercalibration_Stat23: 4.84627816e-18 syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 - syst_JES_EtaIntercalibration_Stat232: 7.681595524856799e-06 - syst_JES_EtaIntercalibration_Stat233: 6.206936019486587e-05 - syst_JES_EtaIntercalibration_Stat234: 0.00023038256769990217 - syst_JES_EtaIntercalibration_Stat235: 0.00023861250491120537 - syst_JES_EtaIntercalibration_Stat236: 2.7343146248191704e-05 - syst_JES_EtaIntercalibration_Stat237: 1.132143987088215e-05 - syst_JES_EtaIntercalibration_Stat238: 2.3044935994703912e-07 + syst_JES_EtaIntercalibration_Stat232: 7.68159552e-06 + syst_JES_EtaIntercalibration_Stat233: 6.20693602e-05 + syst_JES_EtaIntercalibration_Stat234: 2.30382568e-04 + syst_JES_EtaIntercalibration_Stat235: 2.38612505e-04 + syst_JES_EtaIntercalibration_Stat236: 2.73431462e-05 + syst_JES_EtaIntercalibration_Stat237: 1.13214399e-05 + syst_JES_EtaIntercalibration_Stat238: 2.30449360e-07 syst_JES_EtaIntercalibration_Stat239: 0.0 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 - syst_JES_EtaIntercalibration_Stat243: 3.3440106890977482e-06 - syst_JES_EtaIntercalibration_Stat244: 5.6718625688569005e-06 - syst_JES_EtaIntercalibration_Stat245: 4.6736862881455796e-05 - syst_JES_EtaIntercalibration_Stat25: 3.7776028113077216e-18 - syst_JES_EtaIntercalibration_Stat26: 4.573398736169852e-16 - syst_JES_EtaIntercalibration_Stat27: 2.996728718319361e-13 - syst_JES_EtaIntercalibration_Stat28: 1.1157002515779993e-06 - syst_JES_EtaIntercalibration_Stat29: 3.310498788324804e-13 + syst_JES_EtaIntercalibration_Stat243: 3.34401069e-06 + syst_JES_EtaIntercalibration_Stat244: 5.67186257e-06 + syst_JES_EtaIntercalibration_Stat245: 4.67368629e-05 + syst_JES_EtaIntercalibration_Stat25: 3.77760281e-18 + syst_JES_EtaIntercalibration_Stat26: 4.57339874e-16 + syst_JES_EtaIntercalibration_Stat27: 2.99672872e-13 + syst_JES_EtaIntercalibration_Stat28: 1.11570025e-06 + syst_JES_EtaIntercalibration_Stat29: 3.31049879e-13 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 3.4882427628642765e-17 + syst_JES_EtaIntercalibration_Stat30: 3.48824276e-17 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 6.880924405921054e-18 - syst_JES_EtaIntercalibration_Stat36: 3.4500622741824167e-13 - syst_JES_EtaIntercalibration_Stat37: 7.041652623613926e-07 - syst_JES_EtaIntercalibration_Stat38: 7.044250702625428e-07 - syst_JES_EtaIntercalibration_Stat39: 1.509346258111438e-14 - syst_JES_EtaIntercalibration_Stat4: 5.178831914630943e-18 - syst_JES_EtaIntercalibration_Stat40: 3.3833880475050447e-18 + syst_JES_EtaIntercalibration_Stat35: 6.88092441e-18 + syst_JES_EtaIntercalibration_Stat36: 3.45006227e-13 + syst_JES_EtaIntercalibration_Stat37: 7.04165262e-07 + syst_JES_EtaIntercalibration_Stat38: 7.04425070e-07 + syst_JES_EtaIntercalibration_Stat39: 1.50934626e-14 + syst_JES_EtaIntercalibration_Stat4: 5.17883191e-18 + syst_JES_EtaIntercalibration_Stat40: 3.38338805e-18 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 - syst_JES_EtaIntercalibration_Stat44: 4.846278159577719e-18 + syst_JES_EtaIntercalibration_Stat44: 4.84627816e-18 syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 - syst_JES_EtaIntercalibration_Stat47: 3.778468836711506e-18 - syst_JES_EtaIntercalibration_Stat48: 1.554603733270958e-14 - syst_JES_EtaIntercalibration_Stat49: 9.017195628353641e-13 - syst_JES_EtaIntercalibration_Stat5: 2.64913111934838e-15 - syst_JES_EtaIntercalibration_Stat50: 1.1104177173645274e-06 - syst_JES_EtaIntercalibration_Stat51: 8.815265280238139e-10 - syst_JES_EtaIntercalibration_Stat52: 2.2438885406142613e-15 + syst_JES_EtaIntercalibration_Stat47: 3.77846884e-18 + syst_JES_EtaIntercalibration_Stat48: 1.55460373e-14 + syst_JES_EtaIntercalibration_Stat49: 9.01719563e-13 + syst_JES_EtaIntercalibration_Stat5: 2.64913112e-15 + syst_JES_EtaIntercalibration_Stat50: 1.11041772e-06 + syst_JES_EtaIntercalibration_Stat51: 8.81526528e-10 + syst_JES_EtaIntercalibration_Stat52: 2.24388854e-15 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 syst_JES_EtaIntercalibration_Stat56: 0.0 - syst_JES_EtaIntercalibration_Stat57: 3.546391383986095e-13 - syst_JES_EtaIntercalibration_Stat58: 3.194246432259102e-13 - syst_JES_EtaIntercalibration_Stat59: 2.8055230921509095e-06 - syst_JES_EtaIntercalibration_Stat6: 1.9522235399666712e-14 - syst_JES_EtaIntercalibration_Stat60: 7.015694572821632e-07 - syst_JES_EtaIntercalibration_Stat61: 6.559162730690176e-13 - syst_JES_EtaIntercalibration_Stat62: 4.0789796518247064e-18 + syst_JES_EtaIntercalibration_Stat57: 3.54639138e-13 + syst_JES_EtaIntercalibration_Stat58: 3.19424643e-13 + syst_JES_EtaIntercalibration_Stat59: 2.80552309e-06 + syst_JES_EtaIntercalibration_Stat6: 1.95222354e-14 + syst_JES_EtaIntercalibration_Stat60: 7.01569457e-07 + syst_JES_EtaIntercalibration_Stat61: 6.55916273e-13 + syst_JES_EtaIntercalibration_Stat62: 4.07897965e-18 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 - syst_JES_EtaIntercalibration_Stat69: 5.5773458741591414e-18 - syst_JES_EtaIntercalibration_Stat7: 2.253604820964625e-15 - syst_JES_EtaIntercalibration_Stat70: 3.6957167099224477e-13 - syst_JES_EtaIntercalibration_Stat71: 1.9702068958315656e-06 - syst_JES_EtaIntercalibration_Stat72: 4.444084357290743e-06 - syst_JES_EtaIntercalibration_Stat73: 1.1104144977516422e-06 - syst_JES_EtaIntercalibration_Stat74: 2.6955490628070565e-14 + syst_JES_EtaIntercalibration_Stat69: 5.57734587e-18 + syst_JES_EtaIntercalibration_Stat7: 2.25360482e-15 + syst_JES_EtaIntercalibration_Stat70: 3.69571671e-13 + syst_JES_EtaIntercalibration_Stat71: 1.97020690e-06 + syst_JES_EtaIntercalibration_Stat72: 4.44408436e-06 + syst_JES_EtaIntercalibration_Stat73: 1.11041450e-06 + syst_JES_EtaIntercalibration_Stat74: 2.69554906e-14 syst_JES_EtaIntercalibration_Stat75: 0.0 syst_JES_EtaIntercalibration_Stat76: 0.0 syst_JES_EtaIntercalibration_Stat77: 0.0 syst_JES_EtaIntercalibration_Stat78: 0.0 - syst_JES_EtaIntercalibration_Stat79: 3.4922337390539885e-13 + syst_JES_EtaIntercalibration_Stat79: 3.49223374e-13 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 7.757474202341892e-09 - syst_JES_EtaIntercalibration_Stat81: 1.4436261799718098e-06 - syst_JES_EtaIntercalibration_Stat82: 1.4255861987266853e-06 - syst_JES_EtaIntercalibration_Stat83: 8.945082825217438e-11 - syst_JES_EtaIntercalibration_Stat84: 1.971580256418693e-18 - syst_JES_EtaIntercalibration_Stat85: 4.846278159577719e-18 - syst_JES_EtaIntercalibration_Stat86: 4.846278159577719e-18 - syst_JES_EtaIntercalibration_Stat87: 4.846278159577719e-18 - syst_JES_EtaIntercalibration_Stat88: 4.846278159577719e-18 - syst_JES_EtaIntercalibration_Stat89: 4.846278159577719e-18 + syst_JES_EtaIntercalibration_Stat80: 7.75747420e-09 + syst_JES_EtaIntercalibration_Stat81: 1.44362618e-06 + syst_JES_EtaIntercalibration_Stat82: 1.42558620e-06 + syst_JES_EtaIntercalibration_Stat83: 8.94508283e-11 + syst_JES_EtaIntercalibration_Stat84: 1.97158026e-18 + syst_JES_EtaIntercalibration_Stat85: 4.84627816e-18 + syst_JES_EtaIntercalibration_Stat86: 4.84627816e-18 + syst_JES_EtaIntercalibration_Stat87: 4.84627816e-18 + syst_JES_EtaIntercalibration_Stat88: 4.84627816e-18 + syst_JES_EtaIntercalibration_Stat89: 4.84627816e-18 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 1.63747256795343e-10 - syst_JES_EtaIntercalibration_Stat92: 1.968912018114319e-06 - syst_JES_EtaIntercalibration_Stat93: 4.447570891331217e-06 - syst_JES_EtaIntercalibration_Stat94: 1.110651798284929e-06 - syst_JES_EtaIntercalibration_Stat95: 3.005198075002711e-13 - syst_JES_EtaIntercalibration_Stat96: 8.001326634903239e-15 - syst_JES_EtaIntercalibration_Stat97: 4.846278159577719e-18 - syst_JES_EtaIntercalibration_Stat98: 4.846278159577719e-18 - syst_JES_EtaIntercalibration_Stat99: 4.846278159577719e-18 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0031974516415420582 - syst_JES_Flavour_Comp: 0.009316948427462717 - syst_JES_Gjet_Generator: 0.013777817062219979 - syst_JES_Gjet_OOC: 0.011073936190442855 - syst_JES_Gjet_Purity: 0.00286580407564788 - syst_JES_Gjet_Stat1: 1.3994970525116438e-05 - syst_JES_Gjet_Stat10: 0.00027193805820443736 - syst_JES_Gjet_Stat11: 0.0003252464142769294 - syst_JES_Gjet_Stat12: 0.0011692471937105515 - syst_JES_Gjet_Stat13: 0.0032550273040329483 - syst_JES_Gjet_Stat14: 0.004602782202103419 - syst_JES_Gjet_Stat15: 0.00016215001541782228 - syst_JES_Gjet_Stat2: 1.809064384343465e-14 - syst_JES_Gjet_Stat3: 6.754998149436465e-06 - syst_JES_Gjet_Stat4: 3.874409987340008e-05 - syst_JES_Gjet_Stat5: 5.2169307624036784e-08 - syst_JES_Gjet_Stat6: 8.775392982653255e-05 - syst_JES_Gjet_Stat7: 0.00011078786350498866 - syst_JES_Gjet_Stat8: 9.880326765851422e-05 - syst_JES_Gjet_Stat9: 0.00018529707903796003 - syst_JES_Gjet_Veto: 0.010058016541545355 - syst_JES_Gjet_dPhi: 0.0010316651237199017 - syst_JES_LArESZee: 0.020736964580188682 - syst_JES_LArEsmear: 0.0016826618049982593 - syst_JES_LAr_JVT: 0.0020750409032113076 - syst_JES_MJB_Alpha: 0.00012215827601926935 - syst_JES_MJB_Asym: 0.0010294165665560274 - syst_JES_MJB_Beta: 0.00010458262188337029 - syst_JES_MJB_Stat1: 1.7156390819459107e-07 - syst_JES_MJB_Stat10: 8.99634207608848e-06 - syst_JES_MJB_Stat11: 1.8973413787455332e-05 - syst_JES_MJB_Stat12: 7.935330568413643e-06 - syst_JES_MJB_Stat13: 1.6038466928242007e-06 - syst_JES_MJB_Stat14: 6.5692239852216e-07 - syst_JES_MJB_Stat15: 2.875345627920233e-06 - syst_JES_MJB_Stat16: 1.9154594478349052e-07 - syst_JES_MJB_Stat2: 6.561008459113315e-05 - syst_JES_MJB_Stat3: 0.00017900745096224348 - syst_JES_MJB_Stat4: 9.24049105837996e-05 + syst_JES_EtaIntercalibration_Stat91: 1.63747257e-10 + syst_JES_EtaIntercalibration_Stat92: 1.96891202e-06 + syst_JES_EtaIntercalibration_Stat93: 4.44757089e-06 + syst_JES_EtaIntercalibration_Stat94: 1.11065180e-06 + syst_JES_EtaIntercalibration_Stat95: 3.00519808e-13 + syst_JES_EtaIntercalibration_Stat96: 8.00132663e-15 + syst_JES_EtaIntercalibration_Stat97: 4.84627816e-18 + syst_JES_EtaIntercalibration_Stat98: 4.84627816e-18 + syst_JES_EtaIntercalibration_Stat99: 4.84627816e-18 + syst_JES_EtaIntercalibration_TotalStat_MJB: 3.19745164e-03 + syst_JES_Flavour_Comp: 9.31694843e-03 + syst_JES_Gjet_Generator: 1.37778171e-02 + syst_JES_Gjet_OOC: 1.10739362e-02 + syst_JES_Gjet_Purity: 2.86580408e-03 + syst_JES_Gjet_Stat1: 1.39949705e-05 + syst_JES_Gjet_Stat10: 2.71938058e-04 + syst_JES_Gjet_Stat11: 3.25246414e-04 + syst_JES_Gjet_Stat12: 1.16924719e-03 + syst_JES_Gjet_Stat13: 3.25502730e-03 + syst_JES_Gjet_Stat14: 4.60278220e-03 + syst_JES_Gjet_Stat15: 1.62150015e-04 + syst_JES_Gjet_Stat2: 1.80906438e-14 + syst_JES_Gjet_Stat3: 6.75499815e-06 + syst_JES_Gjet_Stat4: 3.87440999e-05 + syst_JES_Gjet_Stat5: 5.21693076e-08 + syst_JES_Gjet_Stat6: 8.77539298e-05 + syst_JES_Gjet_Stat7: 1.10787864e-04 + syst_JES_Gjet_Stat8: 9.88032677e-05 + syst_JES_Gjet_Stat9: 1.85297079e-04 + syst_JES_Gjet_Veto: 1.00580165e-02 + syst_JES_Gjet_dPhi: 1.03166512e-03 + syst_JES_LArESZee: 2.07369646e-02 + syst_JES_LArEsmear: 1.68266180e-03 + syst_JES_LAr_JVT: 2.07504090e-03 + syst_JES_MJB_Alpha: 1.22158276e-04 + syst_JES_MJB_Asym: 1.02941657e-03 + syst_JES_MJB_Beta: 1.04582622e-04 + syst_JES_MJB_Stat1: 1.71563908e-07 + syst_JES_MJB_Stat10: 8.99634208e-06 + syst_JES_MJB_Stat11: 1.89734138e-05 + syst_JES_MJB_Stat12: 7.93533057e-06 + syst_JES_MJB_Stat13: 1.60384669e-06 + syst_JES_MJB_Stat14: 6.56922399e-07 + syst_JES_MJB_Stat15: 2.87534563e-06 + syst_JES_MJB_Stat16: 1.91545945e-07 + syst_JES_MJB_Stat2: 6.56100846e-05 + syst_JES_MJB_Stat3: 1.79007451e-04 + syst_JES_MJB_Stat4: 9.24049106e-05 syst_JES_MJB_Stat5: 0.0 - syst_JES_MJB_Stat6: 2.6422435069463223e-05 - syst_JES_MJB_Stat7: 1.49649189773951e-06 - syst_JES_MJB_Stat8: 2.4417211895505188e-05 - syst_JES_MJB_Stat9: 5.647425681671251e-05 - syst_JES_MJB_Threshold: 0.0011374962274662717 - syst_JES_Pileup_MuOffset: 0.0024315297139866497 - syst_JES_Pileup_NPVOffset: 0.00248929287147977 - syst_JES_Pileup_Pt_term: 0.002520525540437946 - syst_JES_PunchThrough_MC15: 0.0017655488523402574 + syst_JES_MJB_Stat6: 2.64224351e-05 + syst_JES_MJB_Stat7: 1.49649190e-06 + syst_JES_MJB_Stat8: 2.44172119e-05 + syst_JES_MJB_Stat9: 5.64742568e-05 + syst_JES_MJB_Threshold: 1.13749623e-03 + syst_JES_Pileup_MuOffset: 2.43152971e-03 + syst_JES_Pileup_NPVOffset: 2.48929287e-03 + syst_JES_Pileup_Pt_term: 2.52052554e-03 + syst_JES_PunchThrough_MC15: 1.76554885e-03 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.007558385806506572 - syst_JES_Zjet_MuScale: 0.0004909207140669459 - syst_JES_Zjet_MuSmearID: 9.355238145018009e-05 - syst_JES_Zjet_MuSmearMS: 0.0021409460525664815 - syst_JES_Zjet_OOC: 0.0036808423967890826 - syst_JES_Zjet_Stat1: 0.00016732000239062873 - syst_JES_Zjet_Stat10: 0.00027987198859478595 - syst_JES_Zjet_Stat11: 0.00036983279357028355 - syst_JES_Zjet_Stat12: 0.0012877796968037663 - syst_JES_Zjet_Stat13: 0.0023476479719072023 - syst_JES_Zjet_Stat2: 5.695849287208474e-11 - syst_JES_Zjet_Stat3: 7.317661016335752e-05 - syst_JES_Zjet_Stat4: 7.313531568264404e-05 - syst_JES_Zjet_Stat5: 9.147097244481443e-05 - syst_JES_Zjet_Stat6: 0.00013772943149523273 - syst_JES_Zjet_Stat7: 5.543569856148653e-05 - syst_JES_Zjet_Stat8: 9.294494176661795e-05 - syst_JES_Zjet_Stat9: 0.00017748856301181776 - syst_JES_Zjet_Veto: 0.0007772069013460959 - syst_JES_Zjet_dPhi: 0.0006541119858250573 - syst_PRW: 0.0008482 - syst_Unfolding_bias: 7.419e-13 - syst_cleaning: 0.003160992723813201 + syst_JES_Zjet_MC: 7.55838581e-03 + syst_JES_Zjet_MuScale: 4.90920714e-04 + syst_JES_Zjet_MuSmearID: 9.35523815e-05 + syst_JES_Zjet_MuSmearMS: 2.14094605e-03 + syst_JES_Zjet_OOC: 3.68084240e-03 + syst_JES_Zjet_Stat1: 1.67320002e-04 + syst_JES_Zjet_Stat10: 2.79871989e-04 + syst_JES_Zjet_Stat11: 3.69832794e-04 + syst_JES_Zjet_Stat12: 1.28777970e-03 + syst_JES_Zjet_Stat13: 2.34764797e-03 + syst_JES_Zjet_Stat2: 5.69584929e-11 + syst_JES_Zjet_Stat3: 7.31766102e-05 + syst_JES_Zjet_Stat4: 7.31353157e-05 + syst_JES_Zjet_Stat5: 9.14709724e-05 + syst_JES_Zjet_Stat6: 1.37729431e-04 + syst_JES_Zjet_Stat7: 5.54356986e-05 + syst_JES_Zjet_Stat8: 9.29449418e-05 + syst_JES_Zjet_Stat9: 1.77488563e-04 + syst_JES_Zjet_Veto: 7.77206901e-04 + syst_JES_Zjet_dPhi: 6.54111986e-04 + syst_PRW: 8.48200000e-04 + syst_Unfolding_bias: 7.41900000e-13 + syst_cleaning: 3.16099272e-03 syst_lumi: 0.011766 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0017405070381931813 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 0.0016201783852403413 - syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0006543868809809682 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.74050704e-03 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 1.62017839e-03 + syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 6.54386881e-04 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 0.0022557448326439764 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0019748513868137014 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.003916663420246882 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 2.25574483e-03 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.97485139e-03 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 3.91666342e-03 - stat: 0.002121 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.003474032347287515 - syst_JER_NP1: 0.00018759325680844713 - syst_JER_NP2: 0.002344873290819783 - syst_JER_NP3: 0.00013227278660026787 - syst_JER_NP4: 1.896004746829501e-09 - syst_JER_NP5: 0.00031386242208967933 - syst_JER_NP6: 3.765193321729975e-09 - syst_JER_NP7: 4.527032444107288e-09 - syst_JER_NP8: 0.00034243797613582523 - syst_JES_EtaIntercalibration_Modelling: 0.023087777610675306 - syst_JES_EtaIntercalibration_NonClosure: 6.844876386758201e-05 - syst_JES_EtaIntercalibration_Stat0: 9.428418571001185e-19 + syst_JER_NP0: 3.47403235e-03 + syst_JER_NP1: 1.87593257e-04 + syst_JER_NP2: 2.34487329e-03 + syst_JER_NP3: 1.32272787e-04 + syst_JER_NP4: 1.89600475e-09 + syst_JER_NP5: 3.13862422e-04 + syst_JER_NP6: 3.76519332e-09 + syst_JER_NP7: 4.52703244e-09 + syst_JER_NP8: 3.42437976e-04 + syst_JES_EtaIntercalibration_Modelling: 2.30877776e-02 + syst_JES_EtaIntercalibration_NonClosure: 6.84487639e-05 + syst_JES_EtaIntercalibration_Stat0: 9.42841857e-19 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 4.814251898197761e-14 - syst_JES_EtaIntercalibration_Stat101: 1.7964838177673628e-09 - syst_JES_EtaIntercalibration_Stat102: 1.8486107128057004e-06 - syst_JES_EtaIntercalibration_Stat103: 1.7007504424518018e-06 - syst_JES_EtaIntercalibration_Stat104: 2.2785717435874165e-10 - syst_JES_EtaIntercalibration_Stat105: 1.2223067976167031e-18 - syst_JES_EtaIntercalibration_Stat106: 9.428418571001185e-19 - syst_JES_EtaIntercalibration_Stat107: 9.428418571001185e-19 - syst_JES_EtaIntercalibration_Stat108: 9.428418571001185e-19 - syst_JES_EtaIntercalibration_Stat109: 9.428418571001185e-19 + syst_JES_EtaIntercalibration_Stat100: 4.81425190e-14 + syst_JES_EtaIntercalibration_Stat101: 1.79648382e-09 + syst_JES_EtaIntercalibration_Stat102: 1.84861071e-06 + syst_JES_EtaIntercalibration_Stat103: 1.70075044e-06 + syst_JES_EtaIntercalibration_Stat104: 2.27857174e-10 + syst_JES_EtaIntercalibration_Stat105: 1.22230680e-18 + syst_JES_EtaIntercalibration_Stat106: 9.42841857e-19 + syst_JES_EtaIntercalibration_Stat107: 9.42841857e-19 + syst_JES_EtaIntercalibration_Stat108: 9.42841857e-19 + syst_JES_EtaIntercalibration_Stat109: 9.42841857e-19 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 9.985103604870608e-17 - syst_JES_EtaIntercalibration_Stat111: 1.0454615954208935e-09 - syst_JES_EtaIntercalibration_Stat112: 1.0206578368875634e-06 - syst_JES_EtaIntercalibration_Stat113: 1.4070038592697605e-07 - syst_JES_EtaIntercalibration_Stat114: 1.0644154660187911e-06 - syst_JES_EtaIntercalibration_Stat115: 1.7199494731261728e-10 - syst_JES_EtaIntercalibration_Stat116: 1.110103848016377e-15 - syst_JES_EtaIntercalibration_Stat117: 9.428418571001185e-19 - syst_JES_EtaIntercalibration_Stat118: 9.428418571001185e-19 - syst_JES_EtaIntercalibration_Stat119: 9.428418571001185e-19 + syst_JES_EtaIntercalibration_Stat110: 9.98510360e-17 + syst_JES_EtaIntercalibration_Stat111: 1.04546160e-09 + syst_JES_EtaIntercalibration_Stat112: 1.02065784e-06 + syst_JES_EtaIntercalibration_Stat113: 1.40700386e-07 + syst_JES_EtaIntercalibration_Stat114: 1.06441547e-06 + syst_JES_EtaIntercalibration_Stat115: 1.71994947e-10 + syst_JES_EtaIntercalibration_Stat116: 1.11010385e-15 + syst_JES_EtaIntercalibration_Stat117: 9.42841857e-19 + syst_JES_EtaIntercalibration_Stat118: 9.42841857e-19 + syst_JES_EtaIntercalibration_Stat119: 9.42841857e-19 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 4.508528252101788e-13 - syst_JES_EtaIntercalibration_Stat121: 3.3450763817886132e-06 - syst_JES_EtaIntercalibration_Stat122: 2.5205224592334026e-06 - syst_JES_EtaIntercalibration_Stat123: 3.9816268973875495e-06 - syst_JES_EtaIntercalibration_Stat124: 4.6621081677176905e-06 - syst_JES_EtaIntercalibration_Stat125: 2.2256852877260072e-15 - syst_JES_EtaIntercalibration_Stat126: 9.428418571001185e-19 - syst_JES_EtaIntercalibration_Stat127: 9.428418571001185e-19 - syst_JES_EtaIntercalibration_Stat128: 9.428418571001185e-19 - syst_JES_EtaIntercalibration_Stat129: 3.625299022149759e-10 + syst_JES_EtaIntercalibration_Stat120: 4.50852825e-13 + syst_JES_EtaIntercalibration_Stat121: 3.34507638e-06 + syst_JES_EtaIntercalibration_Stat122: 2.52052246e-06 + syst_JES_EtaIntercalibration_Stat123: 3.98162690e-06 + syst_JES_EtaIntercalibration_Stat124: 4.66210817e-06 + syst_JES_EtaIntercalibration_Stat125: 2.22568529e-15 + syst_JES_EtaIntercalibration_Stat126: 9.42841857e-19 + syst_JES_EtaIntercalibration_Stat127: 9.42841857e-19 + syst_JES_EtaIntercalibration_Stat128: 9.42841857e-19 + syst_JES_EtaIntercalibration_Stat129: 3.62529902e-10 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 6.903239010058973e-06 - syst_JES_EtaIntercalibration_Stat131: 3.0678442382233163e-06 - syst_JES_EtaIntercalibration_Stat132: 4.282131969883694e-06 - syst_JES_EtaIntercalibration_Stat133: 4.4661399440680315e-06 - syst_JES_EtaIntercalibration_Stat134: 6.81549387267938e-07 - syst_JES_EtaIntercalibration_Stat135: 1.1104177727324073e-15 + syst_JES_EtaIntercalibration_Stat130: 6.90323901e-06 + syst_JES_EtaIntercalibration_Stat131: 3.06784424e-06 + syst_JES_EtaIntercalibration_Stat132: 4.28213197e-06 + syst_JES_EtaIntercalibration_Stat133: 4.46613994e-06 + syst_JES_EtaIntercalibration_Stat134: 6.81549387e-07 + syst_JES_EtaIntercalibration_Stat135: 1.11041777e-15 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 syst_JES_EtaIntercalibration_Stat138: 0.0 - syst_JES_EtaIntercalibration_Stat139: 3.070370672655014e-09 - syst_JES_EtaIntercalibration_Stat14: 4.8636125126705064e-14 - syst_JES_EtaIntercalibration_Stat140: 2.82592051374415e-06 - syst_JES_EtaIntercalibration_Stat141: 1.0468172810954164e-05 - syst_JES_EtaIntercalibration_Stat142: 4.242093076241963e-06 - syst_JES_EtaIntercalibration_Stat143: 3.0781736013421986e-06 - syst_JES_EtaIntercalibration_Stat144: 1.1799576973349511e-11 + syst_JES_EtaIntercalibration_Stat139: 3.07037067e-09 + syst_JES_EtaIntercalibration_Stat14: 4.86361251e-14 + syst_JES_EtaIntercalibration_Stat140: 2.82592051e-06 + syst_JES_EtaIntercalibration_Stat141: 1.04681728e-05 + syst_JES_EtaIntercalibration_Stat142: 4.24209308e-06 + syst_JES_EtaIntercalibration_Stat143: 3.07817360e-06 + syst_JES_EtaIntercalibration_Stat144: 1.17995770e-11 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 6.361011476172638e-11 - syst_JES_EtaIntercalibration_Stat148: 2.004576730260032e-06 - syst_JES_EtaIntercalibration_Stat149: 2.0876015586073888e-06 - syst_JES_EtaIntercalibration_Stat15: 4.853287890143374e-14 - syst_JES_EtaIntercalibration_Stat150: 4.928195207172703e-06 - syst_JES_EtaIntercalibration_Stat151: 8.282478297587022e-06 - syst_JES_EtaIntercalibration_Stat152: 4.4242809890421746e-10 + syst_JES_EtaIntercalibration_Stat147: 6.36101148e-11 + syst_JES_EtaIntercalibration_Stat148: 2.00457673e-06 + syst_JES_EtaIntercalibration_Stat149: 2.08760156e-06 + syst_JES_EtaIntercalibration_Stat15: 4.85328789e-14 + syst_JES_EtaIntercalibration_Stat150: 4.92819521e-06 + syst_JES_EtaIntercalibration_Stat151: 8.28247830e-06 + syst_JES_EtaIntercalibration_Stat152: 4.42428099e-10 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 syst_JES_EtaIntercalibration_Stat156: 0.0 - syst_JES_EtaIntercalibration_Stat157: 7.967765727448316e-10 - syst_JES_EtaIntercalibration_Stat158: 3.0964303641451392e-06 - syst_JES_EtaIntercalibration_Stat159: 1.0653213634861547e-05 - syst_JES_EtaIntercalibration_Stat16: 4.834317966898689e-14 - syst_JES_EtaIntercalibration_Stat160: 7.36730188060731e-06 - syst_JES_EtaIntercalibration_Stat161: 2.6758569482504107e-06 - syst_JES_EtaIntercalibration_Stat162: 1.1544166448903966e-11 + syst_JES_EtaIntercalibration_Stat157: 7.96776573e-10 + syst_JES_EtaIntercalibration_Stat158: 3.09643036e-06 + syst_JES_EtaIntercalibration_Stat159: 1.06532136e-05 + syst_JES_EtaIntercalibration_Stat16: 4.83431797e-14 + syst_JES_EtaIntercalibration_Stat160: 7.36730188e-06 + syst_JES_EtaIntercalibration_Stat161: 2.67585695e-06 + syst_JES_EtaIntercalibration_Stat162: 1.15441664e-11 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 1.4686818682069986e-10 - syst_JES_EtaIntercalibration_Stat166: 3.6294355439241513e-06 - syst_JES_EtaIntercalibration_Stat167: 1.0646535633716725e-05 - syst_JES_EtaIntercalibration_Stat168: 1.791743583077668e-05 - syst_JES_EtaIntercalibration_Stat169: 7.187452034622562e-06 - syst_JES_EtaIntercalibration_Stat17: 7.771711973561552e-19 - syst_JES_EtaIntercalibration_Stat170: 6.782070134190224e-07 + syst_JES_EtaIntercalibration_Stat165: 1.46868187e-10 + syst_JES_EtaIntercalibration_Stat166: 3.62943554e-06 + syst_JES_EtaIntercalibration_Stat167: 1.06465356e-05 + syst_JES_EtaIntercalibration_Stat168: 1.79174358e-05 + syst_JES_EtaIntercalibration_Stat169: 7.18745203e-06 + syst_JES_EtaIntercalibration_Stat17: 7.77171197e-19 + syst_JES_EtaIntercalibration_Stat170: 6.78207013e-07 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 - syst_JES_EtaIntercalibration_Stat175: 2.73830628680723e-06 - syst_JES_EtaIntercalibration_Stat176: 2.8545169468756006e-06 - syst_JES_EtaIntercalibration_Stat177: 2.854591170377993e-05 - syst_JES_EtaIntercalibration_Stat178: 1.8149845040660817e-05 - syst_JES_EtaIntercalibration_Stat179: 1.0736548921790465e-06 + syst_JES_EtaIntercalibration_Stat175: 2.73830629e-06 + syst_JES_EtaIntercalibration_Stat176: 2.85451695e-06 + syst_JES_EtaIntercalibration_Stat177: 2.85459117e-05 + syst_JES_EtaIntercalibration_Stat178: 1.81498450e-05 + syst_JES_EtaIntercalibration_Stat179: 1.07365489e-06 syst_JES_EtaIntercalibration_Stat18: 0.0 - syst_JES_EtaIntercalibration_Stat180: 4.944138997616825e-07 + syst_JES_EtaIntercalibration_Stat180: 4.94413900e-07 syst_JES_EtaIntercalibration_Stat181: 0.0 - syst_JES_EtaIntercalibration_Stat182: 4.71999763638712e-07 - syst_JES_EtaIntercalibration_Stat183: 1.334833573896012e-05 - syst_JES_EtaIntercalibration_Stat184: 4.5803948519751e-05 - syst_JES_EtaIntercalibration_Stat185: 0.00010358432458630022 - syst_JES_EtaIntercalibration_Stat186: 1.3521882524264142e-05 - syst_JES_EtaIntercalibration_Stat187: 4.1068809414810165e-07 + syst_JES_EtaIntercalibration_Stat182: 4.71999764e-07 + syst_JES_EtaIntercalibration_Stat183: 1.33483357e-05 + syst_JES_EtaIntercalibration_Stat184: 4.58039485e-05 + syst_JES_EtaIntercalibration_Stat185: 1.03584325e-04 + syst_JES_EtaIntercalibration_Stat186: 1.35218825e-05 + syst_JES_EtaIntercalibration_Stat187: 4.10688094e-07 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 - syst_JES_EtaIntercalibration_Stat192: 1.6920907392926656e-06 - syst_JES_EtaIntercalibration_Stat193: 3.968910020396029e-05 - syst_JES_EtaIntercalibration_Stat194: 0.00010424225007164801 - syst_JES_EtaIntercalibration_Stat195: 7.439277787527496e-05 - syst_JES_EtaIntercalibration_Stat196: 1.7873264020597915e-05 - syst_JES_EtaIntercalibration_Stat197: 1.637374398236396e-06 - syst_JES_EtaIntercalibration_Stat198: 3.53847689691483e-05 - syst_JES_EtaIntercalibration_Stat199: 0.00016611600615232716 + syst_JES_EtaIntercalibration_Stat192: 1.69209074e-06 + syst_JES_EtaIntercalibration_Stat193: 3.96891002e-05 + syst_JES_EtaIntercalibration_Stat194: 1.04242250e-04 + syst_JES_EtaIntercalibration_Stat195: 7.43927779e-05 + syst_JES_EtaIntercalibration_Stat196: 1.78732640e-05 + syst_JES_EtaIntercalibration_Stat197: 1.63737440e-06 + syst_JES_EtaIntercalibration_Stat198: 3.53847690e-05 + syst_JES_EtaIntercalibration_Stat199: 1.66116006e-04 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 0.00017544433533175132 - syst_JES_EtaIntercalibration_Stat201: 6.145641606048957e-05 - syst_JES_EtaIntercalibration_Stat202: 7.6161953932065055e-06 + syst_JES_EtaIntercalibration_Stat200: 1.75444335e-04 + syst_JES_EtaIntercalibration_Stat201: 6.14564161e-05 + syst_JES_EtaIntercalibration_Stat202: 7.61619539e-06 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 - syst_JES_EtaIntercalibration_Stat207: 1.999353563029811e-06 - syst_JES_EtaIntercalibration_Stat208: 8.32786599315815e-05 - syst_JES_EtaIntercalibration_Stat209: 0.00020662721868137317 + syst_JES_EtaIntercalibration_Stat207: 1.99935356e-06 + syst_JES_EtaIntercalibration_Stat208: 8.32786599e-05 + syst_JES_EtaIntercalibration_Stat209: 2.06627219e-04 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 0.0001322015940713273 - syst_JES_EtaIntercalibration_Stat211: 5.165522916414174e-05 - syst_JES_EtaIntercalibration_Stat212: 0.00011936066060474029 - syst_JES_EtaIntercalibration_Stat213: 0.00014977053673870572 - syst_JES_EtaIntercalibration_Stat214: 3.6468497364163496e-05 - syst_JES_EtaIntercalibration_Stat215: 1.2618875415424307e-06 + syst_JES_EtaIntercalibration_Stat210: 1.32201594e-04 + syst_JES_EtaIntercalibration_Stat211: 5.16552292e-05 + syst_JES_EtaIntercalibration_Stat212: 1.19360661e-04 + syst_JES_EtaIntercalibration_Stat213: 1.49770537e-04 + syst_JES_EtaIntercalibration_Stat214: 3.64684974e-05 + syst_JES_EtaIntercalibration_Stat215: 1.26188754e-06 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 syst_JES_EtaIntercalibration_Stat219: 0.0 - syst_JES_EtaIntercalibration_Stat22: 9.428418571001185e-19 - syst_JES_EtaIntercalibration_Stat220: 1.8087743778592176e-06 - syst_JES_EtaIntercalibration_Stat221: 5.409708379386083e-05 - syst_JES_EtaIntercalibration_Stat222: 0.00015976309805458832 - syst_JES_EtaIntercalibration_Stat223: 0.00014066132197587225 - syst_JES_EtaIntercalibration_Stat224: 0.00018790005321979024 - syst_JES_EtaIntercalibration_Stat225: 0.000225230831592835 - syst_JES_EtaIntercalibration_Stat226: 6.16995581426642e-05 - syst_JES_EtaIntercalibration_Stat227: 9.851446429332093e-07 + syst_JES_EtaIntercalibration_Stat22: 9.42841857e-19 + syst_JES_EtaIntercalibration_Stat220: 1.80877438e-06 + syst_JES_EtaIntercalibration_Stat221: 5.40970838e-05 + syst_JES_EtaIntercalibration_Stat222: 1.59763098e-04 + syst_JES_EtaIntercalibration_Stat223: 1.40661322e-04 + syst_JES_EtaIntercalibration_Stat224: 1.87900053e-04 + syst_JES_EtaIntercalibration_Stat225: 2.25230832e-04 + syst_JES_EtaIntercalibration_Stat226: 6.16995581e-05 + syst_JES_EtaIntercalibration_Stat227: 9.85144643e-07 syst_JES_EtaIntercalibration_Stat228: 0.0 syst_JES_EtaIntercalibration_Stat229: 0.0 - syst_JES_EtaIntercalibration_Stat23: 9.428418571001185e-19 + syst_JES_EtaIntercalibration_Stat23: 9.42841857e-19 syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 - syst_JES_EtaIntercalibration_Stat232: 6.6056486030896315e-06 - syst_JES_EtaIntercalibration_Stat233: 6.68109173339208e-05 - syst_JES_EtaIntercalibration_Stat234: 0.0002286888005565642 - syst_JES_EtaIntercalibration_Stat235: 0.00023171053061956423 - syst_JES_EtaIntercalibration_Stat236: 1.6053653415967347e-05 - syst_JES_EtaIntercalibration_Stat237: 5.587698005440164e-06 - syst_JES_EtaIntercalibration_Stat238: 3.2094901464251297e-07 + syst_JES_EtaIntercalibration_Stat232: 6.60564860e-06 + syst_JES_EtaIntercalibration_Stat233: 6.68109173e-05 + syst_JES_EtaIntercalibration_Stat234: 2.28688801e-04 + syst_JES_EtaIntercalibration_Stat235: 2.31710531e-04 + syst_JES_EtaIntercalibration_Stat236: 1.60536534e-05 + syst_JES_EtaIntercalibration_Stat237: 5.58769801e-06 + syst_JES_EtaIntercalibration_Stat238: 3.20949015e-07 syst_JES_EtaIntercalibration_Stat239: 0.0 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 - syst_JES_EtaIntercalibration_Stat243: 1.8833713767337552e-06 - syst_JES_EtaIntercalibration_Stat244: 1.0694512050579961e-05 - syst_JES_EtaIntercalibration_Stat245: 3.095370198780753e-05 - syst_JES_EtaIntercalibration_Stat25: 7.253828782098457e-19 - syst_JES_EtaIntercalibration_Stat26: 7.724992297730788e-17 - syst_JES_EtaIntercalibration_Stat27: 4.178993183770464e-14 - syst_JES_EtaIntercalibration_Stat28: 6.821681733392386e-07 - syst_JES_EtaIntercalibration_Stat29: 4.590698866185845e-14 + syst_JES_EtaIntercalibration_Stat243: 1.88337138e-06 + syst_JES_EtaIntercalibration_Stat244: 1.06945121e-05 + syst_JES_EtaIntercalibration_Stat245: 3.09537020e-05 + syst_JES_EtaIntercalibration_Stat25: 7.25382878e-19 + syst_JES_EtaIntercalibration_Stat26: 7.72499230e-17 + syst_JES_EtaIntercalibration_Stat27: 4.17899318e-14 + syst_JES_EtaIntercalibration_Stat28: 6.82168173e-07 + syst_JES_EtaIntercalibration_Stat29: 4.59069887e-14 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 6.259673799392425e-18 + syst_JES_EtaIntercalibration_Stat30: 6.25967380e-18 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 1.3461484613518674e-18 - syst_JES_EtaIntercalibration_Stat36: 4.731760604877956e-14 - syst_JES_EtaIntercalibration_Stat37: 1.4687790858310802e-06 - syst_JES_EtaIntercalibration_Stat38: 1.4687790858732269e-06 - syst_JES_EtaIntercalibration_Stat39: 2.3170375536878982e-15 - syst_JES_EtaIntercalibration_Stat4: 9.946301762464278e-19 - syst_JES_EtaIntercalibration_Stat40: 7.078025625130217e-19 + syst_JES_EtaIntercalibration_Stat35: 1.34614846e-18 + syst_JES_EtaIntercalibration_Stat36: 4.73176060e-14 + syst_JES_EtaIntercalibration_Stat37: 1.46877909e-06 + syst_JES_EtaIntercalibration_Stat38: 1.46877909e-06 + syst_JES_EtaIntercalibration_Stat39: 2.31703755e-15 + syst_JES_EtaIntercalibration_Stat4: 9.94630176e-19 + syst_JES_EtaIntercalibration_Stat40: 7.07802563e-19 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 - syst_JES_EtaIntercalibration_Stat44: 9.428418571001185e-19 + syst_JES_EtaIntercalibration_Stat44: 9.42841857e-19 syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 - syst_JES_EtaIntercalibration_Stat47: 7.257292883713596e-19 - syst_JES_EtaIntercalibration_Stat48: 2.266847129274491e-15 - syst_JES_EtaIntercalibration_Stat49: 1.2302759477044165e-13 - syst_JES_EtaIntercalibration_Stat5: 3.859267011687582e-16 - syst_JES_EtaIntercalibration_Stat50: 6.813021771118423e-07 - syst_JES_EtaIntercalibration_Stat51: 1.7005191479929026e-10 - syst_JES_EtaIntercalibration_Stat52: 3.242962509804885e-16 + syst_JES_EtaIntercalibration_Stat47: 7.25729288e-19 + syst_JES_EtaIntercalibration_Stat48: 2.26684713e-15 + syst_JES_EtaIntercalibration_Stat49: 1.23027595e-13 + syst_JES_EtaIntercalibration_Stat5: 3.85926701e-16 + syst_JES_EtaIntercalibration_Stat50: 6.81302177e-07 + syst_JES_EtaIntercalibration_Stat51: 1.70051915e-10 + syst_JES_EtaIntercalibration_Stat52: 3.24296251e-16 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 syst_JES_EtaIntercalibration_Stat56: 0.0 - syst_JES_EtaIntercalibration_Stat57: 4.862766600054192e-14 - syst_JES_EtaIntercalibration_Stat58: 4.375061744421443e-14 - syst_JES_EtaIntercalibration_Stat59: 4.402963082490494e-06 - syst_JES_EtaIntercalibration_Stat6: 2.7325538018491056e-15 - syst_JES_EtaIntercalibration_Stat60: 1.4670473355611326e-06 - syst_JES_EtaIntercalibration_Stat61: 8.820982751466812e-14 - syst_JES_EtaIntercalibration_Stat62: 7.927596546242751e-19 + syst_JES_EtaIntercalibration_Stat57: 4.86276660e-14 + syst_JES_EtaIntercalibration_Stat58: 4.37506174e-14 + syst_JES_EtaIntercalibration_Stat59: 4.40296308e-06 + syst_JES_EtaIntercalibration_Stat6: 2.73255380e-15 + syst_JES_EtaIntercalibration_Stat60: 1.46704734e-06 + syst_JES_EtaIntercalibration_Stat61: 8.82098275e-14 + syst_JES_EtaIntercalibration_Stat62: 7.92759655e-19 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 - syst_JES_EtaIntercalibration_Stat69: 1.0760833517901855e-18 - syst_JES_EtaIntercalibration_Stat7: 3.2601649761745183e-16 - syst_JES_EtaIntercalibration_Stat70: 5.1618108256696126e-14 - syst_JES_EtaIntercalibration_Stat71: 1.2047278159980355e-06 - syst_JES_EtaIntercalibration_Stat72: 1.2660783128062842e-06 - syst_JES_EtaIntercalibration_Stat73: 6.813883541086478e-07 - syst_JES_EtaIntercalibration_Stat74: 3.910949341272525e-15 + syst_JES_EtaIntercalibration_Stat69: 1.07608335e-18 + syst_JES_EtaIntercalibration_Stat7: 3.26016498e-16 + syst_JES_EtaIntercalibration_Stat70: 5.16181083e-14 + syst_JES_EtaIntercalibration_Stat71: 1.20472782e-06 + syst_JES_EtaIntercalibration_Stat72: 1.26607831e-06 + syst_JES_EtaIntercalibration_Stat73: 6.81388354e-07 + syst_JES_EtaIntercalibration_Stat74: 3.91094934e-15 syst_JES_EtaIntercalibration_Stat75: 0.0 syst_JES_EtaIntercalibration_Stat76: 0.0 syst_JES_EtaIntercalibration_Stat77: 0.0 syst_JES_EtaIntercalibration_Stat78: 0.0 - syst_JES_EtaIntercalibration_Stat79: 4.787832604030633e-14 + syst_JES_EtaIntercalibration_Stat79: 4.78783260e-14 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 1.1695851946309855e-09 - syst_JES_EtaIntercalibration_Stat81: 1.8492200599171533e-06 - syst_JES_EtaIntercalibration_Stat82: 1.6477652836493432e-06 - syst_JES_EtaIntercalibration_Stat83: 1.1813412663155385e-11 - syst_JES_EtaIntercalibration_Stat84: 4.018575206152051e-19 - syst_JES_EtaIntercalibration_Stat85: 9.428418571001185e-19 - syst_JES_EtaIntercalibration_Stat86: 9.428418571001185e-19 - syst_JES_EtaIntercalibration_Stat87: 9.428418571001185e-19 - syst_JES_EtaIntercalibration_Stat88: 9.428418571001185e-19 - syst_JES_EtaIntercalibration_Stat89: 9.428418571001185e-19 + syst_JES_EtaIntercalibration_Stat80: 1.16958519e-09 + syst_JES_EtaIntercalibration_Stat81: 1.84922006e-06 + syst_JES_EtaIntercalibration_Stat82: 1.64776528e-06 + syst_JES_EtaIntercalibration_Stat83: 1.18134127e-11 + syst_JES_EtaIntercalibration_Stat84: 4.01857521e-19 + syst_JES_EtaIntercalibration_Stat85: 9.42841857e-19 + syst_JES_EtaIntercalibration_Stat86: 9.42841857e-19 + syst_JES_EtaIntercalibration_Stat87: 9.42841857e-19 + syst_JES_EtaIntercalibration_Stat88: 9.42841857e-19 + syst_JES_EtaIntercalibration_Stat89: 9.42841857e-19 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 2.2184358288837204e-11 - syst_JES_EtaIntercalibration_Stat92: 1.2044908927248392e-06 - syst_JES_EtaIntercalibration_Stat93: 1.2676753069070437e-06 - syst_JES_EtaIntercalibration_Stat94: 6.813853658112919e-07 - syst_JES_EtaIntercalibration_Stat95: 4.1615780141071484e-14 - syst_JES_EtaIntercalibration_Stat96: 1.110103848016377e-15 - syst_JES_EtaIntercalibration_Stat97: 9.428418571001185e-19 - syst_JES_EtaIntercalibration_Stat98: 9.428418571001185e-19 - syst_JES_EtaIntercalibration_Stat99: 9.428418571001185e-19 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.002148906931442123 + syst_JES_EtaIntercalibration_Stat91: 2.21843583e-11 + syst_JES_EtaIntercalibration_Stat92: 1.20449089e-06 + syst_JES_EtaIntercalibration_Stat93: 1.26767531e-06 + syst_JES_EtaIntercalibration_Stat94: 6.81385366e-07 + syst_JES_EtaIntercalibration_Stat95: 4.16157801e-14 + syst_JES_EtaIntercalibration_Stat96: 1.11010385e-15 + syst_JES_EtaIntercalibration_Stat97: 9.42841857e-19 + syst_JES_EtaIntercalibration_Stat98: 9.42841857e-19 + syst_JES_EtaIntercalibration_Stat99: 9.42841857e-19 + syst_JES_EtaIntercalibration_TotalStat_MJB: 2.14890693e-03 syst_JES_Flavour_Comp: 0.006171 - syst_JES_Gjet_Generator: 0.008913418914759925 - syst_JES_Gjet_OOC: 0.007223502803349632 - syst_JES_Gjet_Purity: 0.0016842003295332775 - syst_JES_Gjet_Stat1: 1.49389381796706e-05 - syst_JES_Gjet_Stat10: 0.00017555411558832794 - syst_JES_Gjet_Stat11: 0.0002054166680189317 - syst_JES_Gjet_Stat12: 0.0006464645620604428 - syst_JES_Gjet_Stat13: 0.0019564975721937405 - syst_JES_Gjet_Stat14: 0.003531559535106268 - syst_JES_Gjet_Stat15: 0.0005462100969407284 - syst_JES_Gjet_Stat2: 2.0293538690718164e-13 - syst_JES_Gjet_Stat3: 1.0488433592256265e-05 - syst_JES_Gjet_Stat4: 2.759300047113398e-05 - syst_JES_Gjet_Stat5: 7.473789497698159e-09 - syst_JES_Gjet_Stat6: 5.594119948660379e-05 - syst_JES_Gjet_Stat7: 6.953280376915632e-05 - syst_JES_Gjet_Stat8: 6.306277091121196e-05 - syst_JES_Gjet_Stat9: 0.00012014109486349789 - syst_JES_Gjet_Veto: 0.00678000368731463 - syst_JES_Gjet_dPhi: 0.0006696376389510973 - syst_JES_LArESZee: 0.013489264796496508 - syst_JES_LArEsmear: 0.0010905956079134008 - syst_JES_LAr_JVT: 0.001330882589674987 - syst_JES_MJB_Alpha: 7.872147864464945e-05 - syst_JES_MJB_Asym: 0.0007811835507740802 - syst_JES_MJB_Beta: 7.632257251298597e-05 - syst_JES_MJB_Stat1: 2.475977049949171e-08 - syst_JES_MJB_Stat10: 2.1040377254222417e-05 - syst_JES_MJB_Stat11: 3.088419660603138e-05 - syst_JES_MJB_Stat12: 1.810152557106721e-05 - syst_JES_MJB_Stat13: 1.0032674239487445e-06 - syst_JES_MJB_Stat14: 4.198500535905647e-07 - syst_JES_MJB_Stat15: 6.727917243099829e-06 - syst_JES_MJB_Stat16: 3.1017168322559684e-07 - syst_JES_MJB_Stat2: 3.138476072864179e-05 - syst_JES_MJB_Stat3: 8.850779626676963e-05 - syst_JES_MJB_Stat4: 5.672466394788074e-05 + syst_JES_Gjet_Generator: 8.91341891e-03 + syst_JES_Gjet_OOC: 7.22350280e-03 + syst_JES_Gjet_Purity: 1.68420033e-03 + syst_JES_Gjet_Stat1: 1.49389382e-05 + syst_JES_Gjet_Stat10: 1.75554116e-04 + syst_JES_Gjet_Stat11: 2.05416668e-04 + syst_JES_Gjet_Stat12: 6.46464562e-04 + syst_JES_Gjet_Stat13: 1.95649757e-03 + syst_JES_Gjet_Stat14: 3.53155954e-03 + syst_JES_Gjet_Stat15: 5.46210097e-04 + syst_JES_Gjet_Stat2: 2.02935387e-13 + syst_JES_Gjet_Stat3: 1.04884336e-05 + syst_JES_Gjet_Stat4: 2.75930005e-05 + syst_JES_Gjet_Stat5: 7.47378950e-09 + syst_JES_Gjet_Stat6: 5.59411995e-05 + syst_JES_Gjet_Stat7: 6.95328038e-05 + syst_JES_Gjet_Stat8: 6.30627709e-05 + syst_JES_Gjet_Stat9: 1.20141095e-04 + syst_JES_Gjet_Veto: 6.78000369e-03 + syst_JES_Gjet_dPhi: 6.69637639e-04 + syst_JES_LArESZee: 1.34892648e-02 + syst_JES_LArEsmear: 1.09059561e-03 + syst_JES_LAr_JVT: 1.33088259e-03 + syst_JES_MJB_Alpha: 7.87214786e-05 + syst_JES_MJB_Asym: 7.81183551e-04 + syst_JES_MJB_Beta: 7.63225725e-05 + syst_JES_MJB_Stat1: 2.47597705e-08 + syst_JES_MJB_Stat10: 2.10403773e-05 + syst_JES_MJB_Stat11: 3.08841966e-05 + syst_JES_MJB_Stat12: 1.81015256e-05 + syst_JES_MJB_Stat13: 1.00326742e-06 + syst_JES_MJB_Stat14: 4.19850054e-07 + syst_JES_MJB_Stat15: 6.72791724e-06 + syst_JES_MJB_Stat16: 3.10171683e-07 + syst_JES_MJB_Stat2: 3.13847607e-05 + syst_JES_MJB_Stat3: 8.85077963e-05 + syst_JES_MJB_Stat4: 5.67246639e-05 syst_JES_MJB_Stat5: 0.0 - syst_JES_MJB_Stat6: 1.8472321862722078e-05 - syst_JES_MJB_Stat7: 3.806181649632608e-06 - syst_JES_MJB_Stat8: 3.130678859289148e-05 - syst_JES_MJB_Stat9: 5.295270224455028e-05 - syst_JES_MJB_Threshold: 0.0007490298325167029 - syst_JES_Pileup_MuOffset: 0.0016027372679263436 - syst_JES_Pileup_NPVOffset: 0.001630581108071598 - syst_JES_Pileup_Pt_term: 0.0015618681122297107 - syst_JES_PunchThrough_MC15: 0.0012751727441801758 + syst_JES_MJB_Stat6: 1.84723219e-05 + syst_JES_MJB_Stat7: 3.80618165e-06 + syst_JES_MJB_Stat8: 3.13067886e-05 + syst_JES_MJB_Stat9: 5.29527022e-05 + syst_JES_MJB_Threshold: 7.49029833e-04 + syst_JES_Pileup_MuOffset: 1.60273727e-03 + syst_JES_Pileup_NPVOffset: 1.63058111e-03 + syst_JES_Pileup_Pt_term: 1.56186811e-03 + syst_JES_PunchThrough_MC15: 1.27517274e-03 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.004445027221513946 - syst_JES_Zjet_MuScale: 0.0003062420733668057 - syst_JES_Zjet_MuSmearID: 5.7616191083757004e-05 - syst_JES_Zjet_MuSmearMS: 0.0012577748238456676 - syst_JES_Zjet_OOC: 0.0022296822643596555 - syst_JES_Zjet_Stat1: 0.00010849012708537122 - syst_JES_Zjet_Stat10: 0.00017953425160676165 - syst_JES_Zjet_Stat11: 0.0002395381963278508 - syst_JES_Zjet_Stat12: 0.0007213967753601342 - syst_JES_Zjet_Stat13: 0.0013730046858987772 - syst_JES_Zjet_Stat2: 1.3639900117783076e-09 - syst_JES_Zjet_Stat3: 4.939862447477662e-05 - syst_JES_Zjet_Stat4: 4.938493368427257e-05 - syst_JES_Zjet_Stat5: 6.050828930816009e-05 - syst_JES_Zjet_Stat6: 8.983935162277164e-05 - syst_JES_Zjet_Stat7: 3.754797564450046e-05 - syst_JES_Zjet_Stat8: 5.9881897254095077e-05 - syst_JES_Zjet_Stat9: 0.00011287736387336479 - syst_JES_Zjet_Veto: 0.00047537651130446064 - syst_JES_Zjet_dPhi: 0.0004002180059667481 - syst_PRW: 0.0005186 - syst_Unfolding_bias: 1.2422e-13 - syst_cleaning: 0.0020455520037388443 + syst_JES_Zjet_MC: 4.44502722e-03 + syst_JES_Zjet_MuScale: 3.06242073e-04 + syst_JES_Zjet_MuSmearID: 5.76161911e-05 + syst_JES_Zjet_MuSmearMS: 1.25777482e-03 + syst_JES_Zjet_OOC: 2.22968226e-03 + syst_JES_Zjet_Stat1: 1.08490127e-04 + syst_JES_Zjet_Stat10: 1.79534252e-04 + syst_JES_Zjet_Stat11: 2.39538196e-04 + syst_JES_Zjet_Stat12: 7.21396775e-04 + syst_JES_Zjet_Stat13: 1.37300469e-03 + syst_JES_Zjet_Stat2: 1.36399001e-09 + syst_JES_Zjet_Stat3: 4.93986245e-05 + syst_JES_Zjet_Stat4: 4.93849337e-05 + syst_JES_Zjet_Stat5: 6.05082893e-05 + syst_JES_Zjet_Stat6: 8.98393516e-05 + syst_JES_Zjet_Stat7: 3.75479756e-05 + syst_JES_Zjet_Stat8: 5.98818973e-05 + syst_JES_Zjet_Stat9: 1.12877364e-04 + syst_JES_Zjet_Veto: 4.75376511e-04 + syst_JES_Zjet_dPhi: 4.00218006e-04 + syst_PRW: 5.18600000e-04 + syst_Unfolding_bias: 1.24220000e-13 + syst_cleaning: 2.04555200e-03 syst_lumi: 0.007194 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0010744431162234694 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 0.000805436569507494 - syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0003798370391365223 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.07444312e-03 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 8.05436570e-04 + syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 3.79837039e-04 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 0.0011214710283819194 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0011693807453092427 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0024708287577248247 -- stat: 0.0013453 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 1.12147103e-03 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.16938075e-03 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 2.47082876e-03 +- stat: 1.34530000e-03 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.002192385629856208 - syst_JER_NP1: 0.0002534706491884218 - syst_JER_NP2: 0.0015982962022103413 - syst_JER_NP3: 8.328335728103185e-05 - syst_JER_NP4: 2.4930064179620555e-10 - syst_JER_NP5: 0.00018869597240004886 - syst_JER_NP6: 4.949745852061498e-10 - syst_JER_NP7: 5.947389847655861e-10 - syst_JER_NP8: 0.00020993657970920645 - syst_JES_EtaIntercalibration_Modelling: 0.014651020672635746 - syst_JES_EtaIntercalibration_NonClosure: 1.3652696171452731e-05 - syst_JES_EtaIntercalibration_Stat0: 1.9017917867106274e-19 + syst_JER_NP0: 2.19238563e-03 + syst_JER_NP1: 2.53470649e-04 + syst_JER_NP2: 1.59829620e-03 + syst_JER_NP3: 8.32833573e-05 + syst_JER_NP4: 2.49300642e-10 + syst_JER_NP5: 1.88695972e-04 + syst_JER_NP6: 4.94974585e-10 + syst_JER_NP7: 5.94738985e-10 + syst_JER_NP8: 2.09936580e-04 + syst_JES_EtaIntercalibration_Modelling: 1.46510207e-02 + syst_JES_EtaIntercalibration_NonClosure: 1.36526962e-05 + syst_JES_EtaIntercalibration_Stat0: 1.90179179e-19 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 6.759783529191079e-15 - syst_JES_EtaIntercalibration_Stat101: 2.4046159776563075e-10 - syst_JES_EtaIntercalibration_Stat102: 1.1285947767024264e-06 - syst_JES_EtaIntercalibration_Stat103: 8.354752958645756e-07 - syst_JES_EtaIntercalibration_Stat104: 3.093688216364894e-11 - syst_JES_EtaIntercalibration_Stat105: 2.6430237811075406e-19 - syst_JES_EtaIntercalibration_Stat106: 1.9017917867106274e-19 - syst_JES_EtaIntercalibration_Stat107: 1.9017917867106274e-19 - syst_JES_EtaIntercalibration_Stat108: 1.9017917867106274e-19 - syst_JES_EtaIntercalibration_Stat109: 1.9017917867106274e-19 + syst_JES_EtaIntercalibration_Stat100: 6.75978353e-15 + syst_JES_EtaIntercalibration_Stat101: 2.40461598e-10 + syst_JES_EtaIntercalibration_Stat102: 1.12859478e-06 + syst_JES_EtaIntercalibration_Stat103: 8.35475296e-07 + syst_JES_EtaIntercalibration_Stat104: 3.09368822e-11 + syst_JES_EtaIntercalibration_Stat105: 2.64302378e-19 + syst_JES_EtaIntercalibration_Stat106: 1.90179179e-19 + syst_JES_EtaIntercalibration_Stat107: 1.90179179e-19 + syst_JES_EtaIntercalibration_Stat108: 1.90179179e-19 + syst_JES_EtaIntercalibration_Stat109: 1.90179179e-19 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 1.7219939568709295e-17 - syst_JES_EtaIntercalibration_Stat111: 1.4970956816449642e-10 - syst_JES_EtaIntercalibration_Stat112: 5.402666481238686e-07 - syst_JES_EtaIntercalibration_Stat113: 3.4902204428946894e-07 - syst_JES_EtaIntercalibration_Stat114: 1.2391980013503694e-06 - syst_JES_EtaIntercalibration_Stat115: 2.7363492344122944e-11 - syst_JES_EtaIntercalibration_Stat116: 1.5720692251971606e-16 - syst_JES_EtaIntercalibration_Stat117: 1.9017917867106274e-19 - syst_JES_EtaIntercalibration_Stat118: 1.9017917867106274e-19 - syst_JES_EtaIntercalibration_Stat119: 1.9017917867106274e-19 + syst_JES_EtaIntercalibration_Stat110: 1.72199396e-17 + syst_JES_EtaIntercalibration_Stat111: 1.49709568e-10 + syst_JES_EtaIntercalibration_Stat112: 5.40266648e-07 + syst_JES_EtaIntercalibration_Stat113: 3.49022044e-07 + syst_JES_EtaIntercalibration_Stat114: 1.23919800e-06 + syst_JES_EtaIntercalibration_Stat115: 2.73634923e-11 + syst_JES_EtaIntercalibration_Stat116: 1.57206923e-16 + syst_JES_EtaIntercalibration_Stat117: 1.90179179e-19 + syst_JES_EtaIntercalibration_Stat118: 1.90179179e-19 + syst_JES_EtaIntercalibration_Stat119: 1.90179179e-19 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 6.020608607109418e-14 - syst_JES_EtaIntercalibration_Stat121: 1.530249622610638e-06 - syst_JES_EtaIntercalibration_Stat122: 1.5048436222744207e-06 - syst_JES_EtaIntercalibration_Stat123: 2.995840002403333e-06 - syst_JES_EtaIntercalibration_Stat124: 2.969085157081218e-06 - syst_JES_EtaIntercalibration_Stat125: 3.5091349361345457e-16 - syst_JES_EtaIntercalibration_Stat126: 1.9017917867106274e-19 - syst_JES_EtaIntercalibration_Stat127: 1.9017917867106274e-19 - syst_JES_EtaIntercalibration_Stat128: 1.9017917867106274e-19 - syst_JES_EtaIntercalibration_Stat129: 4.7462555101363854e-11 + syst_JES_EtaIntercalibration_Stat120: 6.02060861e-14 + syst_JES_EtaIntercalibration_Stat121: 1.53024962e-06 + syst_JES_EtaIntercalibration_Stat122: 1.50484362e-06 + syst_JES_EtaIntercalibration_Stat123: 2.99584000e-06 + syst_JES_EtaIntercalibration_Stat124: 2.96908516e-06 + syst_JES_EtaIntercalibration_Stat125: 3.50913494e-16 + syst_JES_EtaIntercalibration_Stat126: 1.90179179e-19 + syst_JES_EtaIntercalibration_Stat127: 1.90179179e-19 + syst_JES_EtaIntercalibration_Stat128: 1.90179179e-19 + syst_JES_EtaIntercalibration_Stat129: 4.74625551e-11 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 2.1210755802658233e-06 - syst_JES_EtaIntercalibration_Stat131: 1.151715251266562e-06 - syst_JES_EtaIntercalibration_Stat132: 1.107707175881785e-06 - syst_JES_EtaIntercalibration_Stat133: 1.9925049830552494e-06 - syst_JES_EtaIntercalibration_Stat134: 4.013145090838255e-07 - syst_JES_EtaIntercalibration_Stat135: 1.5727021332725405e-16 + syst_JES_EtaIntercalibration_Stat130: 2.12107558e-06 + syst_JES_EtaIntercalibration_Stat131: 1.15171525e-06 + syst_JES_EtaIntercalibration_Stat132: 1.10770718e-06 + syst_JES_EtaIntercalibration_Stat133: 1.99250498e-06 + syst_JES_EtaIntercalibration_Stat134: 4.01314509e-07 + syst_JES_EtaIntercalibration_Stat135: 1.57270213e-16 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 syst_JES_EtaIntercalibration_Stat138: 0.0 - syst_JES_EtaIntercalibration_Stat139: 4.104593280703948e-10 - syst_JES_EtaIntercalibration_Stat14: 6.8269081970561035e-15 - syst_JES_EtaIntercalibration_Stat140: 2.53355071145221e-06 - syst_JES_EtaIntercalibration_Stat141: 4.630013039938441e-06 - syst_JES_EtaIntercalibration_Stat142: 1.806144479270692e-07 - syst_JES_EtaIntercalibration_Stat143: 2.673005624292624e-06 - syst_JES_EtaIntercalibration_Stat144: 1.5610723261591693e-12 + syst_JES_EtaIntercalibration_Stat139: 4.10459328e-10 + syst_JES_EtaIntercalibration_Stat14: 6.82690820e-15 + syst_JES_EtaIntercalibration_Stat140: 2.53355071e-06 + syst_JES_EtaIntercalibration_Stat141: 4.63001304e-06 + syst_JES_EtaIntercalibration_Stat142: 1.80614448e-07 + syst_JES_EtaIntercalibration_Stat143: 2.67300562e-06 + syst_JES_EtaIntercalibration_Stat144: 1.56107233e-12 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 8.96815555172857e-12 - syst_JES_EtaIntercalibration_Stat148: 3.662594505265359e-07 - syst_JES_EtaIntercalibration_Stat149: 5.329305466005866e-07 - syst_JES_EtaIntercalibration_Stat15: 6.812320098161914e-15 - syst_JES_EtaIntercalibration_Stat150: 2.3049818806229257e-06 - syst_JES_EtaIntercalibration_Stat151: 3.3222247064279085e-06 - syst_JES_EtaIntercalibration_Stat152: 6.564645040480103e-11 + syst_JES_EtaIntercalibration_Stat147: 8.96815555e-12 + syst_JES_EtaIntercalibration_Stat148: 3.66259451e-07 + syst_JES_EtaIntercalibration_Stat149: 5.32930547e-07 + syst_JES_EtaIntercalibration_Stat15: 6.81232010e-15 + syst_JES_EtaIntercalibration_Stat150: 2.30498188e-06 + syst_JES_EtaIntercalibration_Stat151: 3.32222471e-06 + syst_JES_EtaIntercalibration_Stat152: 6.56464504e-11 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 syst_JES_EtaIntercalibration_Stat156: 0.0 - syst_JES_EtaIntercalibration_Stat157: 1.162346961571716e-10 - syst_JES_EtaIntercalibration_Stat158: 2.5401531464657795e-06 - syst_JES_EtaIntercalibration_Stat159: 5.688684975457861e-06 - syst_JES_EtaIntercalibration_Stat16: 6.7856453829753e-15 - syst_JES_EtaIntercalibration_Stat160: 3.319504179843731e-06 - syst_JES_EtaIntercalibration_Stat161: 2.4987874434413186e-06 - syst_JES_EtaIntercalibration_Stat162: 1.5285603709045972e-12 + syst_JES_EtaIntercalibration_Stat157: 1.16234696e-10 + syst_JES_EtaIntercalibration_Stat158: 2.54015315e-06 + syst_JES_EtaIntercalibration_Stat159: 5.68868498e-06 + syst_JES_EtaIntercalibration_Stat16: 6.78564538e-15 + syst_JES_EtaIntercalibration_Stat160: 3.31950418e-06 + syst_JES_EtaIntercalibration_Stat161: 2.49878744e-06 + syst_JES_EtaIntercalibration_Stat162: 1.52856037e-12 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 2.073395448895362e-11 - syst_JES_EtaIntercalibration_Stat166: 1.5872699927863566e-06 - syst_JES_EtaIntercalibration_Stat167: 4.296275005164357e-06 - syst_JES_EtaIntercalibration_Stat168: 5.504516236691468e-06 - syst_JES_EtaIntercalibration_Stat169: 2.7972498547680724e-06 - syst_JES_EtaIntercalibration_Stat17: 1.5657739300422653e-19 - syst_JES_EtaIntercalibration_Stat170: 4.007663000063129e-07 + syst_JES_EtaIntercalibration_Stat165: 2.07339545e-11 + syst_JES_EtaIntercalibration_Stat166: 1.58726999e-06 + syst_JES_EtaIntercalibration_Stat167: 4.29627501e-06 + syst_JES_EtaIntercalibration_Stat168: 5.50451624e-06 + syst_JES_EtaIntercalibration_Stat169: 2.79724985e-06 + syst_JES_EtaIntercalibration_Stat17: 1.56577393e-19 + syst_JES_EtaIntercalibration_Stat170: 4.00766300e-07 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 - syst_JES_EtaIntercalibration_Stat175: 6.7255813347373e-07 - syst_JES_EtaIntercalibration_Stat176: 2.641233879742572e-06 - syst_JES_EtaIntercalibration_Stat177: 1.321493064681007e-05 - syst_JES_EtaIntercalibration_Stat178: 9.249464025012476e-06 - syst_JES_EtaIntercalibration_Stat179: 5.588562784831176e-07 + syst_JES_EtaIntercalibration_Stat175: 6.72558133e-07 + syst_JES_EtaIntercalibration_Stat176: 2.64123388e-06 + syst_JES_EtaIntercalibration_Stat177: 1.32149306e-05 + syst_JES_EtaIntercalibration_Stat178: 9.24946403e-06 + syst_JES_EtaIntercalibration_Stat179: 5.58856278e-07 syst_JES_EtaIntercalibration_Stat18: 0.0 - syst_JES_EtaIntercalibration_Stat180: 2.0481500848057132e-07 + syst_JES_EtaIntercalibration_Stat180: 2.04815008e-07 syst_JES_EtaIntercalibration_Stat181: 0.0 - syst_JES_EtaIntercalibration_Stat182: 1.727091134651556e-07 - syst_JES_EtaIntercalibration_Stat183: 4.661342590928069e-06 - syst_JES_EtaIntercalibration_Stat184: 2.2832995861253075e-05 - syst_JES_EtaIntercalibration_Stat185: 4.295279123642607e-05 - syst_JES_EtaIntercalibration_Stat186: 4.212615903450017e-06 - syst_JES_EtaIntercalibration_Stat187: 9.644070095176362e-07 + syst_JES_EtaIntercalibration_Stat182: 1.72709113e-07 + syst_JES_EtaIntercalibration_Stat183: 4.66134259e-06 + syst_JES_EtaIntercalibration_Stat184: 2.28329959e-05 + syst_JES_EtaIntercalibration_Stat185: 4.29527912e-05 + syst_JES_EtaIntercalibration_Stat186: 4.21261590e-06 + syst_JES_EtaIntercalibration_Stat187: 9.64407010e-07 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 - syst_JES_EtaIntercalibration_Stat192: 2.1433077325246602e-06 - syst_JES_EtaIntercalibration_Stat193: 1.930167868347207e-05 - syst_JES_EtaIntercalibration_Stat194: 5.5252169866893005e-05 - syst_JES_EtaIntercalibration_Stat195: 3.9868892635737955e-05 - syst_JES_EtaIntercalibration_Stat196: 8.69897758360142e-06 - syst_JES_EtaIntercalibration_Stat197: 9.900242724297218e-07 - syst_JES_EtaIntercalibration_Stat198: 1.672080831628663e-05 - syst_JES_EtaIntercalibration_Stat199: 7.371701838788652e-05 + syst_JES_EtaIntercalibration_Stat192: 2.14330773e-06 + syst_JES_EtaIntercalibration_Stat193: 1.93016787e-05 + syst_JES_EtaIntercalibration_Stat194: 5.52521699e-05 + syst_JES_EtaIntercalibration_Stat195: 3.98688926e-05 + syst_JES_EtaIntercalibration_Stat196: 8.69897758e-06 + syst_JES_EtaIntercalibration_Stat197: 9.90024272e-07 + syst_JES_EtaIntercalibration_Stat198: 1.67208083e-05 + syst_JES_EtaIntercalibration_Stat199: 7.37170184e-05 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 7.353385121833345e-05 - syst_JES_EtaIntercalibration_Stat201: 2.4264465273316867e-05 - syst_JES_EtaIntercalibration_Stat202: 2.4345193504057426e-06 + syst_JES_EtaIntercalibration_Stat200: 7.35338512e-05 + syst_JES_EtaIntercalibration_Stat201: 2.42644653e-05 + syst_JES_EtaIntercalibration_Stat202: 2.43451935e-06 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 - syst_JES_EtaIntercalibration_Stat207: 2.3005199819823344e-06 - syst_JES_EtaIntercalibration_Stat208: 4.204379621299675e-05 - syst_JES_EtaIntercalibration_Stat209: 0.00010240532847464532 + syst_JES_EtaIntercalibration_Stat207: 2.30051998e-06 + syst_JES_EtaIntercalibration_Stat208: 4.20437962e-05 + syst_JES_EtaIntercalibration_Stat209: 1.02405328e-04 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 6.894629866787628e-05 - syst_JES_EtaIntercalibration_Stat211: 2.6243902148880223e-05 - syst_JES_EtaIntercalibration_Stat212: 6.126778496893779e-05 - syst_JES_EtaIntercalibration_Stat213: 7.286518578855063e-05 - syst_JES_EtaIntercalibration_Stat214: 1.549904251074885e-05 - syst_JES_EtaIntercalibration_Stat215: 5.861856766417958e-07 + syst_JES_EtaIntercalibration_Stat210: 6.89462987e-05 + syst_JES_EtaIntercalibration_Stat211: 2.62439021e-05 + syst_JES_EtaIntercalibration_Stat212: 6.12677850e-05 + syst_JES_EtaIntercalibration_Stat213: 7.28651858e-05 + syst_JES_EtaIntercalibration_Stat214: 1.54990425e-05 + syst_JES_EtaIntercalibration_Stat215: 5.86185677e-07 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 syst_JES_EtaIntercalibration_Stat219: 0.0 - syst_JES_EtaIntercalibration_Stat22: 1.9017917867106274e-19 - syst_JES_EtaIntercalibration_Stat220: 2.2470276071957816e-06 - syst_JES_EtaIntercalibration_Stat221: 2.9162506750963643e-05 - syst_JES_EtaIntercalibration_Stat222: 9.079085017225028e-05 - syst_JES_EtaIntercalibration_Stat223: 8.11174646731516e-05 - syst_JES_EtaIntercalibration_Stat224: 0.000141855490112297 - syst_JES_EtaIntercalibration_Stat225: 0.00015969957756675502 - syst_JES_EtaIntercalibration_Stat226: 4.161762457180852e-05 - syst_JES_EtaIntercalibration_Stat227: 6.034766834766691e-07 + syst_JES_EtaIntercalibration_Stat22: 1.90179179e-19 + syst_JES_EtaIntercalibration_Stat220: 2.24702761e-06 + syst_JES_EtaIntercalibration_Stat221: 2.91625068e-05 + syst_JES_EtaIntercalibration_Stat222: 9.07908502e-05 + syst_JES_EtaIntercalibration_Stat223: 8.11174647e-05 + syst_JES_EtaIntercalibration_Stat224: 1.41855490e-04 + syst_JES_EtaIntercalibration_Stat225: 1.59699578e-04 + syst_JES_EtaIntercalibration_Stat226: 4.16176246e-05 + syst_JES_EtaIntercalibration_Stat227: 6.03476683e-07 syst_JES_EtaIntercalibration_Stat228: 0.0 syst_JES_EtaIntercalibration_Stat229: 0.0 - syst_JES_EtaIntercalibration_Stat23: 1.9017917867106274e-19 + syst_JES_EtaIntercalibration_Stat23: 1.90179179e-19 syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 - syst_JES_EtaIntercalibration_Stat232: 3.1422747663913797e-06 - syst_JES_EtaIntercalibration_Stat233: 5.0380674866460453e-05 - syst_JES_EtaIntercalibration_Stat234: 0.0001708020125759647 - syst_JES_EtaIntercalibration_Stat235: 0.00017013130223448005 - syst_JES_EtaIntercalibration_Stat236: 2.6240073837548553e-05 - syst_JES_EtaIntercalibration_Stat237: 2.49217033928261e-06 - syst_JES_EtaIntercalibration_Stat238: 4.143065531704755e-07 + syst_JES_EtaIntercalibration_Stat232: 3.14227477e-06 + syst_JES_EtaIntercalibration_Stat233: 5.03806749e-05 + syst_JES_EtaIntercalibration_Stat234: 1.70802013e-04 + syst_JES_EtaIntercalibration_Stat235: 1.70131302e-04 + syst_JES_EtaIntercalibration_Stat236: 2.62400738e-05 + syst_JES_EtaIntercalibration_Stat237: 2.49217034e-06 + syst_JES_EtaIntercalibration_Stat238: 4.14306553e-07 syst_JES_EtaIntercalibration_Stat239: 0.0 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 - syst_JES_EtaIntercalibration_Stat243: 8.288673698940018e-07 - syst_JES_EtaIntercalibration_Stat244: 1.2681660409820159e-05 - syst_JES_EtaIntercalibration_Stat245: 3.490929062584915e-05 - syst_JES_EtaIntercalibration_Stat25: 1.4436643481086593e-19 - syst_JES_EtaIntercalibration_Stat26: 1.3579066352293887e-17 - syst_JES_EtaIntercalibration_Stat27: 5.987210108222359e-15 - syst_JES_EtaIntercalibration_Stat28: 4.0140276954453765e-07 - syst_JES_EtaIntercalibration_Stat29: 6.533966231929884e-15 + syst_JES_EtaIntercalibration_Stat243: 8.28867370e-07 + syst_JES_EtaIntercalibration_Stat244: 1.26816604e-05 + syst_JES_EtaIntercalibration_Stat245: 3.49092906e-05 + syst_JES_EtaIntercalibration_Stat25: 1.44366435e-19 + syst_JES_EtaIntercalibration_Stat26: 1.35790664e-17 + syst_JES_EtaIntercalibration_Stat27: 5.98721011e-15 + syst_JES_EtaIntercalibration_Stat28: 4.01402770e-07 + syst_JES_EtaIntercalibration_Stat29: 6.53396623e-15 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 1.1671970094204319e-18 + syst_JES_EtaIntercalibration_Stat30: 1.16719701e-18 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 2.7302406487341e-19 - syst_JES_EtaIntercalibration_Stat36: 6.6454261320700865e-15 - syst_JES_EtaIntercalibration_Stat37: 8.817004637554611e-07 - syst_JES_EtaIntercalibration_Stat38: 8.817004637620429e-07 - syst_JES_EtaIntercalibration_Stat39: 3.6866846851439576e-16 - syst_JES_EtaIntercalibration_Stat4: 1.9797340730512265e-19 - syst_JES_EtaIntercalibration_Stat40: 1.5302668884871032e-19 + syst_JES_EtaIntercalibration_Stat35: 2.73024065e-19 + syst_JES_EtaIntercalibration_Stat36: 6.64542613e-15 + syst_JES_EtaIntercalibration_Stat37: 8.81700464e-07 + syst_JES_EtaIntercalibration_Stat38: 8.81700464e-07 + syst_JES_EtaIntercalibration_Stat39: 3.68668469e-16 + syst_JES_EtaIntercalibration_Stat4: 1.97973407e-19 + syst_JES_EtaIntercalibration_Stat40: 1.53026689e-19 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 - syst_JES_EtaIntercalibration_Stat44: 1.9017917867106274e-19 + syst_JES_EtaIntercalibration_Stat44: 1.90179179e-19 syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 - syst_JES_EtaIntercalibration_Stat47: 1.4445303735124437e-19 - syst_JES_EtaIntercalibration_Stat48: 3.4147868161863344e-16 - syst_JES_EtaIntercalibration_Stat49: 1.7150373173782546e-14 - syst_JES_EtaIntercalibration_Stat5: 5.751433027515838e-17 - syst_JES_EtaIntercalibration_Stat50: 4.0131617090762415e-07 - syst_JES_EtaIntercalibration_Stat51: 2.7084341884334202e-11 - syst_JES_EtaIntercalibration_Stat52: 4.7877812092346076e-17 + syst_JES_EtaIntercalibration_Stat47: 1.44453037e-19 + syst_JES_EtaIntercalibration_Stat48: 3.41478682e-16 + syst_JES_EtaIntercalibration_Stat49: 1.71503732e-14 + syst_JES_EtaIntercalibration_Stat5: 5.75143303e-17 + syst_JES_EtaIntercalibration_Stat50: 4.01316171e-07 + syst_JES_EtaIntercalibration_Stat51: 2.70843419e-11 + syst_JES_EtaIntercalibration_Stat52: 4.78778121e-17 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 syst_JES_EtaIntercalibration_Stat56: 0.0 - syst_JES_EtaIntercalibration_Stat57: 6.826947167569357e-15 - syst_JES_EtaIntercalibration_Stat58: 6.132547350612142e-15 - syst_JES_EtaIntercalibration_Stat59: 3.0155147629885922e-06 - syst_JES_EtaIntercalibration_Stat6: 3.911722838788556e-16 - syst_JES_EtaIntercalibration_Stat60: 8.81440696129407e-07 - syst_JES_EtaIntercalibration_Stat61: 1.2069560428187723e-14 - syst_JES_EtaIntercalibration_Stat62: 1.5978168699822894e-19 + syst_JES_EtaIntercalibration_Stat57: 6.82694717e-15 + syst_JES_EtaIntercalibration_Stat58: 6.13254735e-15 + syst_JES_EtaIntercalibration_Stat59: 3.01551476e-06 + syst_JES_EtaIntercalibration_Stat6: 3.91172284e-16 + syst_JES_EtaIntercalibration_Stat60: 8.81440696e-07 + syst_JES_EtaIntercalibration_Stat61: 1.20695604e-14 + syst_JES_EtaIntercalibration_Stat62: 1.59781687e-19 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 - syst_JES_EtaIntercalibration_Stat69: 2.1525210800361513e-19 - syst_JES_EtaIntercalibration_Stat7: 4.81806615897914e-17 - syst_JES_EtaIntercalibration_Stat70: 7.405213501311086e-15 - syst_JES_EtaIntercalibration_Stat71: 7.091881858558909e-07 - syst_JES_EtaIntercalibration_Stat72: 5.2569529619774046e-08 - syst_JES_EtaIntercalibration_Stat73: 4.013161144364501e-07 - syst_JES_EtaIntercalibration_Stat74: 5.860593549291744e-16 + syst_JES_EtaIntercalibration_Stat69: 2.15252108e-19 + syst_JES_EtaIntercalibration_Stat7: 4.81806616e-17 + syst_JES_EtaIntercalibration_Stat70: 7.40521350e-15 + syst_JES_EtaIntercalibration_Stat71: 7.09188186e-07 + syst_JES_EtaIntercalibration_Stat72: 5.25695296e-08 + syst_JES_EtaIntercalibration_Stat73: 4.01316114e-07 + syst_JES_EtaIntercalibration_Stat74: 5.86059355e-16 syst_JES_EtaIntercalibration_Stat75: 0.0 syst_JES_EtaIntercalibration_Stat76: 0.0 syst_JES_EtaIntercalibration_Stat77: 0.0 syst_JES_EtaIntercalibration_Stat78: 0.0 - syst_JES_EtaIntercalibration_Stat79: 6.720726104828853e-15 + syst_JES_EtaIntercalibration_Stat79: 6.72072610e-15 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 1.6411337910115678e-10 - syst_JES_EtaIntercalibration_Stat81: 1.1295594838254423e-06 - syst_JES_EtaIntercalibration_Stat82: 8.323870058452378e-07 - syst_JES_EtaIntercalibration_Stat83: 1.567225563695284e-12 - syst_JES_EtaIntercalibration_Stat84: 8.698933900197196e-20 - syst_JES_EtaIntercalibration_Stat85: 1.9017917867106274e-19 - syst_JES_EtaIntercalibration_Stat86: 1.9017917867106274e-19 - syst_JES_EtaIntercalibration_Stat87: 1.9017917867106274e-19 - syst_JES_EtaIntercalibration_Stat88: 1.9017917867106274e-19 - syst_JES_EtaIntercalibration_Stat89: 1.9017917867106274e-19 + syst_JES_EtaIntercalibration_Stat80: 1.64113379e-10 + syst_JES_EtaIntercalibration_Stat81: 1.12955948e-06 + syst_JES_EtaIntercalibration_Stat82: 8.32387006e-07 + syst_JES_EtaIntercalibration_Stat83: 1.56722556e-12 + syst_JES_EtaIntercalibration_Stat84: 8.69893390e-20 + syst_JES_EtaIntercalibration_Stat85: 1.90179179e-19 + syst_JES_EtaIntercalibration_Stat86: 1.90179179e-19 + syst_JES_EtaIntercalibration_Stat87: 1.90179179e-19 + syst_JES_EtaIntercalibration_Stat88: 1.90179179e-19 + syst_JES_EtaIntercalibration_Stat89: 1.90179179e-19 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 2.929345638308153e-12 - syst_JES_EtaIntercalibration_Stat92: 7.091794018911788e-07 - syst_JES_EtaIntercalibration_Stat93: 5.280971957274414e-08 - syst_JES_EtaIntercalibration_Stat94: 4.013157220711928e-07 - syst_JES_EtaIntercalibration_Stat95: 5.912342429189974e-15 - syst_JES_EtaIntercalibration_Stat96: 1.5720692251971606e-16 - syst_JES_EtaIntercalibration_Stat97: 1.9017917867106274e-19 - syst_JES_EtaIntercalibration_Stat98: 1.9017917867106274e-19 - syst_JES_EtaIntercalibration_Stat99: 1.9017917867106274e-19 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0013893877023710842 - syst_JES_Flavour_Comp: 0.00387815061949636 - syst_JES_Gjet_Generator: 0.00547672475116287 - syst_JES_Gjet_OOC: 0.004484002007136036 - syst_JES_Gjet_Purity: 0.0009532346195979246 - syst_JES_Gjet_Stat1: 1.1770145544191004e-05 - syst_JES_Gjet_Stat10: 0.00010774410471111634 - syst_JES_Gjet_Stat11: 0.00012366663818508207 - syst_JES_Gjet_Stat12: 0.00035651490852417375 - syst_JES_Gjet_Stat13: 0.0011066441467337184 - syst_JES_Gjet_Stat14: 0.0023951507259460728 - syst_JES_Gjet_Stat15: 0.0008759430161260491 - syst_JES_Gjet_Stat2: 3.254517624679154e-11 - syst_JES_Gjet_Stat3: 1.0626119984276305e-05 - syst_JES_Gjet_Stat4: 1.7100636501311875e-05 - syst_JES_Gjet_Stat5: 1.0158462291221396e-09 - syst_JES_Gjet_Stat6: 3.589325110657991e-05 - syst_JES_Gjet_Stat7: 4.355331560283327e-05 - syst_JES_Gjet_Stat8: 3.6899719172373116e-05 - syst_JES_Gjet_Stat9: 7.126245715662631e-05 - syst_JES_Gjet_Veto: 0.004314000927213623 - syst_JES_Gjet_dPhi: 0.0004235779827847524 - syst_JES_LArESZee: 0.008339929136389588 - syst_JES_LArEsmear: 0.000673149077099568 - syst_JES_LAr_JVT: 0.0008175465858285998 - syst_JES_MJB_Alpha: 5.0125487279427026e-05 - syst_JES_MJB_Asym: 0.000563184203880045 - syst_JES_MJB_Beta: 5.386070993776446e-05 - syst_JES_MJB_Stat1: 4.847274356532752e-09 - syst_JES_MJB_Stat10: 3.000018833274218e-05 - syst_JES_MJB_Stat11: 3.494284619203192e-05 - syst_JES_MJB_Stat12: 2.5047452699825586e-05 - syst_JES_MJB_Stat13: 7.397129358744513e-07 - syst_JES_MJB_Stat14: 2.63218559376044e-07 - syst_JES_MJB_Stat15: 9.594088402109917e-06 - syst_JES_MJB_Stat16: 7.065998089442142e-07 - syst_JES_MJB_Stat2: 1.615137872847765e-05 - syst_JES_MJB_Stat3: 3.706588728197397e-05 - syst_JES_MJB_Stat4: 2.6994011835960952e-05 + syst_JES_EtaIntercalibration_Stat91: 2.92934564e-12 + syst_JES_EtaIntercalibration_Stat92: 7.09179402e-07 + syst_JES_EtaIntercalibration_Stat93: 5.28097196e-08 + syst_JES_EtaIntercalibration_Stat94: 4.01315722e-07 + syst_JES_EtaIntercalibration_Stat95: 5.91234243e-15 + syst_JES_EtaIntercalibration_Stat96: 1.57206923e-16 + syst_JES_EtaIntercalibration_Stat97: 1.90179179e-19 + syst_JES_EtaIntercalibration_Stat98: 1.90179179e-19 + syst_JES_EtaIntercalibration_Stat99: 1.90179179e-19 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.38938770e-03 + syst_JES_Flavour_Comp: 3.87815062e-03 + syst_JES_Gjet_Generator: 5.47672475e-03 + syst_JES_Gjet_OOC: 4.48400201e-03 + syst_JES_Gjet_Purity: 9.53234620e-04 + syst_JES_Gjet_Stat1: 1.17701455e-05 + syst_JES_Gjet_Stat10: 1.07744105e-04 + syst_JES_Gjet_Stat11: 1.23666638e-04 + syst_JES_Gjet_Stat12: 3.56514909e-04 + syst_JES_Gjet_Stat13: 1.10664415e-03 + syst_JES_Gjet_Stat14: 2.39515073e-03 + syst_JES_Gjet_Stat15: 8.75943016e-04 + syst_JES_Gjet_Stat2: 3.25451762e-11 + syst_JES_Gjet_Stat3: 1.06261200e-05 + syst_JES_Gjet_Stat4: 1.71006365e-05 + syst_JES_Gjet_Stat5: 1.01584623e-09 + syst_JES_Gjet_Stat6: 3.58932511e-05 + syst_JES_Gjet_Stat7: 4.35533156e-05 + syst_JES_Gjet_Stat8: 3.68997192e-05 + syst_JES_Gjet_Stat9: 7.12624572e-05 + syst_JES_Gjet_Veto: 4.31400093e-03 + syst_JES_Gjet_dPhi: 4.23577983e-04 + syst_JES_LArESZee: 8.33992914e-03 + syst_JES_LArEsmear: 6.73149077e-04 + syst_JES_LAr_JVT: 8.17546586e-04 + syst_JES_MJB_Alpha: 5.01254873e-05 + syst_JES_MJB_Asym: 5.63184204e-04 + syst_JES_MJB_Beta: 5.38607099e-05 + syst_JES_MJB_Stat1: 4.84727436e-09 + syst_JES_MJB_Stat10: 3.00001883e-05 + syst_JES_MJB_Stat11: 3.49428462e-05 + syst_JES_MJB_Stat12: 2.50474527e-05 + syst_JES_MJB_Stat13: 7.39712936e-07 + syst_JES_MJB_Stat14: 2.63218559e-07 + syst_JES_MJB_Stat15: 9.59408840e-06 + syst_JES_MJB_Stat16: 7.06599809e-07 + syst_JES_MJB_Stat2: 1.61513787e-05 + syst_JES_MJB_Stat3: 3.70658873e-05 + syst_JES_MJB_Stat4: 2.69940118e-05 syst_JES_MJB_Stat5: 0.0 - syst_JES_MJB_Stat6: 1.1455784041260553e-05 - syst_JES_MJB_Stat7: 5.507055542665245e-06 - syst_JES_MJB_Stat8: 2.4615916151953394e-05 - syst_JES_MJB_Stat9: 3.527438022134478e-05 - syst_JES_MJB_Threshold: 0.0004819356051382799 - syst_JES_Pileup_MuOffset: 0.0010056403880115395 - syst_JES_Pileup_NPVOffset: 0.0010261019247618628 - syst_JES_Pileup_Pt_term: 0.0009277101419624558 - syst_JES_PunchThrough_MC15: 0.0008653163641119934 + syst_JES_MJB_Stat6: 1.14557840e-05 + syst_JES_MJB_Stat7: 5.50705554e-06 + syst_JES_MJB_Stat8: 2.46159162e-05 + syst_JES_MJB_Stat9: 3.52743802e-05 + syst_JES_MJB_Threshold: 4.81935605e-04 + syst_JES_Pileup_MuOffset: 1.00564039e-03 + syst_JES_Pileup_NPVOffset: 1.02610192e-03 + syst_JES_Pileup_Pt_term: 9.27710142e-04 + syst_JES_PunchThrough_MC15: 8.65316364e-04 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.0025325719634395386 - syst_JES_Zjet_MuScale: 0.00017971095542565008 - syst_JES_Zjet_MuSmearID: 3.402452754998958e-05 - syst_JES_Zjet_MuSmearMS: 0.0007136478753559069 - syst_JES_Zjet_OOC: 0.0012979935593060545 - syst_JES_Zjet_Stat1: 6.781997419639734e-05 - syst_JES_Zjet_Stat10: 0.00010993347113140747 - syst_JES_Zjet_Stat11: 0.00014749700022373337 - syst_JES_Zjet_Stat12: 0.00040987098884893037 - syst_JES_Zjet_Stat13: 0.0007735105865468165 - syst_JES_Zjet_Stat2: 1.1376975729767203e-08 - syst_JES_Zjet_Stat3: 3.2459750780774636e-05 - syst_JES_Zjet_Stat4: 3.227754313373309e-05 - syst_JES_Zjet_Stat5: 3.967190945744861e-05 - syst_JES_Zjet_Stat6: 5.268296380235265e-05 - syst_JES_Zjet_Stat7: 2.6583163844809742e-05 - syst_JES_Zjet_Stat8: 3.676238668802666e-05 - syst_JES_Zjet_Stat9: 6.689461189064483e-05 - syst_JES_Zjet_Veto: 0.00028639910527094876 - syst_JES_Zjet_dPhi: 0.00024115755741838156 - syst_PRW: 0.0003052 - syst_Unfolding_bias: 2.162e-14 - syst_cleaning: 0.0011999647994837184 + syst_JES_Zjet_MC: 2.53257196e-03 + syst_JES_Zjet_MuScale: 1.79710955e-04 + syst_JES_Zjet_MuSmearID: 3.40245275e-05 + syst_JES_Zjet_MuSmearMS: 7.13647875e-04 + syst_JES_Zjet_OOC: 1.29799356e-03 + syst_JES_Zjet_Stat1: 6.78199742e-05 + syst_JES_Zjet_Stat10: 1.09933471e-04 + syst_JES_Zjet_Stat11: 1.47497000e-04 + syst_JES_Zjet_Stat12: 4.09870989e-04 + syst_JES_Zjet_Stat13: 7.73510587e-04 + syst_JES_Zjet_Stat2: 1.13769757e-08 + syst_JES_Zjet_Stat3: 3.24597508e-05 + syst_JES_Zjet_Stat4: 3.22775431e-05 + syst_JES_Zjet_Stat5: 3.96719095e-05 + syst_JES_Zjet_Stat6: 5.26829638e-05 + syst_JES_Zjet_Stat7: 2.65831638e-05 + syst_JES_Zjet_Stat8: 3.67623867e-05 + syst_JES_Zjet_Stat9: 6.68946119e-05 + syst_JES_Zjet_Veto: 2.86399105e-04 + syst_JES_Zjet_dPhi: 2.41157557e-04 + syst_PRW: 3.05200000e-04 + syst_Unfolding_bias: 2.16200000e-14 + syst_cleaning: 1.19996480e-03 syst_lumi: 0.004233 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0006300817327934528 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 0.00033034144456910034 - syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.00020936183988492265 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 6.30081733e-04 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 3.30341445e-04 + syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 2.09361840e-04 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 0.00045995879163246786 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0006581417172615637 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.001481421952044724 -- stat: 0.0009143 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 4.59958792e-04 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 6.58141717e-04 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.48142195e-03 +- stat: 9.14300000e-04 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.0013541273019919509 - syst_JER_NP1: 0.00020973457035024056 - syst_JER_NP2: 0.0010285866322289046 - syst_JER_NP3: 7.71693182229829e-05 - syst_JER_NP4: 3.410508869655671e-11 - syst_JER_NP5: 0.00011316767239366548 - syst_JER_NP6: 6.769404460512017e-11 - syst_JER_NP7: 8.12746098114288e-11 - syst_JER_NP8: 0.00011412132348952145 - syst_JES_EtaIntercalibration_Modelling: 0.009061682666591233 - syst_JES_EtaIntercalibration_NonClosure: 3.5469249710136245e-06 - syst_JES_EtaIntercalibration_Stat0: 4.115352718783652e-20 + syst_JER_NP0: 1.35412730e-03 + syst_JER_NP1: 2.09734570e-04 + syst_JER_NP2: 1.02858663e-03 + syst_JER_NP3: 7.71693182e-05 + syst_JER_NP4: 3.41050887e-11 + syst_JER_NP5: 1.13167672e-04 + syst_JER_NP6: 6.76940446e-11 + syst_JER_NP7: 8.12746098e-11 + syst_JER_NP8: 1.14121323e-04 + syst_JES_EtaIntercalibration_Modelling: 9.06168267e-03 + syst_JES_EtaIntercalibration_NonClosure: 3.54692497e-06 + syst_JES_EtaIntercalibration_Stat0: 4.11535272e-20 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 1.0123515067860571e-15 - syst_JES_EtaIntercalibration_Stat101: 3.2564544645979624e-11 - syst_JES_EtaIntercalibration_Stat102: 4.833708514174185e-07 - syst_JES_EtaIntercalibration_Stat103: 3.922716246429252e-07 - syst_JES_EtaIntercalibration_Stat104: 4.236989080030771e-12 - syst_JES_EtaIntercalibration_Stat105: 6.108268658138736e-20 - syst_JES_EtaIntercalibration_Stat106: 4.114486693379868e-20 - syst_JES_EtaIntercalibration_Stat107: 4.114486693379868e-20 - syst_JES_EtaIntercalibration_Stat108: 4.114486693379868e-20 - syst_JES_EtaIntercalibration_Stat109: 4.114486693379868e-20 + syst_JES_EtaIntercalibration_Stat100: 1.01235151e-15 + syst_JES_EtaIntercalibration_Stat101: 3.25645446e-11 + syst_JES_EtaIntercalibration_Stat102: 4.83370851e-07 + syst_JES_EtaIntercalibration_Stat103: 3.92271625e-07 + syst_JES_EtaIntercalibration_Stat104: 4.23698908e-12 + syst_JES_EtaIntercalibration_Stat105: 6.10826866e-20 + syst_JES_EtaIntercalibration_Stat106: 4.11448669e-20 + syst_JES_EtaIntercalibration_Stat107: 4.11448669e-20 + syst_JES_EtaIntercalibration_Stat108: 4.11448669e-20 + syst_JES_EtaIntercalibration_Stat109: 4.11448669e-20 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 3.1981195537377896e-18 - syst_JES_EtaIntercalibration_Stat111: 2.1071584539374345e-11 - syst_JES_EtaIntercalibration_Stat112: 1.9661712107545466e-07 - syst_JES_EtaIntercalibration_Stat113: 1.7286958306191404e-07 - syst_JES_EtaIntercalibration_Stat114: 8.081272667550993e-07 - syst_JES_EtaIntercalibration_Stat115: 4.049579467768073e-12 - syst_JES_EtaIntercalibration_Stat116: 2.3576848956128023e-17 - syst_JES_EtaIntercalibration_Stat117: 4.114486693379868e-20 - syst_JES_EtaIntercalibration_Stat118: 4.114486693379868e-20 - syst_JES_EtaIntercalibration_Stat119: 4.114486693379868e-20 + syst_JES_EtaIntercalibration_Stat110: 3.19811955e-18 + syst_JES_EtaIntercalibration_Stat111: 2.10715845e-11 + syst_JES_EtaIntercalibration_Stat112: 1.96617121e-07 + syst_JES_EtaIntercalibration_Stat113: 1.72869583e-07 + syst_JES_EtaIntercalibration_Stat114: 8.08127267e-07 + syst_JES_EtaIntercalibration_Stat115: 4.04957947e-12 + syst_JES_EtaIntercalibration_Stat116: 2.35768490e-17 + syst_JES_EtaIntercalibration_Stat117: 4.11448669e-20 + syst_JES_EtaIntercalibration_Stat118: 4.11448669e-20 + syst_JES_EtaIntercalibration_Stat119: 4.11448669e-20 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 8.474924601434516e-15 - syst_JES_EtaIntercalibration_Stat121: 5.451498203934402e-07 - syst_JES_EtaIntercalibration_Stat122: 6.571554363314664e-07 - syst_JES_EtaIntercalibration_Stat123: 1.7188256688797732e-06 - syst_JES_EtaIntercalibration_Stat124: 1.2812145604854793e-06 - syst_JES_EtaIntercalibration_Stat125: 5.940934269961248e-17 - syst_JES_EtaIntercalibration_Stat126: 4.114486693379868e-20 - syst_JES_EtaIntercalibration_Stat127: 4.114486693379868e-20 - syst_JES_EtaIntercalibration_Stat128: 4.114486693379868e-20 - syst_JES_EtaIntercalibration_Stat129: 6.404890241057999e-12 + syst_JES_EtaIntercalibration_Stat120: 8.47492460e-15 + syst_JES_EtaIntercalibration_Stat121: 5.45149820e-07 + syst_JES_EtaIntercalibration_Stat122: 6.57155436e-07 + syst_JES_EtaIntercalibration_Stat123: 1.71882567e-06 + syst_JES_EtaIntercalibration_Stat124: 1.28121456e-06 + syst_JES_EtaIntercalibration_Stat125: 5.94093427e-17 + syst_JES_EtaIntercalibration_Stat126: 4.11448669e-20 + syst_JES_EtaIntercalibration_Stat127: 4.11448669e-20 + syst_JES_EtaIntercalibration_Stat128: 4.11448669e-20 + syst_JES_EtaIntercalibration_Stat129: 6.40489024e-12 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 4.6863940850082164e-07 - syst_JES_EtaIntercalibration_Stat131: 3.920275755606996e-07 - syst_JES_EtaIntercalibration_Stat132: 5.700244446512798e-07 - syst_JES_EtaIntercalibration_Stat133: 7.041773285188895e-07 - syst_JES_EtaIntercalibration_Stat134: 2.3573189150528447e-07 - syst_JES_EtaIntercalibration_Stat135: 2.3590531999088108e-17 + syst_JES_EtaIntercalibration_Stat130: 4.68639409e-07 + syst_JES_EtaIntercalibration_Stat131: 3.92027576e-07 + syst_JES_EtaIntercalibration_Stat132: 5.70024445e-07 + syst_JES_EtaIntercalibration_Stat133: 7.04177329e-07 + syst_JES_EtaIntercalibration_Stat134: 2.35731892e-07 + syst_JES_EtaIntercalibration_Stat135: 2.35905320e-17 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 syst_JES_EtaIntercalibration_Stat138: 0.0 - syst_JES_EtaIntercalibration_Stat139: 5.552993517014044e-11 - syst_JES_EtaIntercalibration_Stat14: 1.0221767038171145e-15 - syst_JES_EtaIntercalibration_Stat140: 1.1839398295521608e-06 - syst_JES_EtaIntercalibration_Stat141: 1.7507982265241192e-06 - syst_JES_EtaIntercalibration_Stat142: 8.712926087142024e-07 - syst_JES_EtaIntercalibration_Stat143: 1.659400828823464e-06 - syst_JES_EtaIntercalibration_Stat144: 2.1689822498121095e-13 + syst_JES_EtaIntercalibration_Stat139: 5.55299352e-11 + syst_JES_EtaIntercalibration_Stat14: 1.02217670e-15 + syst_JES_EtaIntercalibration_Stat140: 1.18393983e-06 + syst_JES_EtaIntercalibration_Stat141: 1.75079823e-06 + syst_JES_EtaIntercalibration_Stat142: 8.71292609e-07 + syst_JES_EtaIntercalibration_Stat143: 1.65940083e-06 + syst_JES_EtaIntercalibration_Stat144: 2.16898225e-13 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 1.236952303041633e-12 - syst_JES_EtaIntercalibration_Stat148: 2.9151399623345703e-08 - syst_JES_EtaIntercalibration_Stat149: 2.952321628820275e-07 - syst_JES_EtaIntercalibration_Stat15: 1.0199536213601653e-15 - syst_JES_EtaIntercalibration_Stat150: 1.2142601781743483e-06 - syst_JES_EtaIntercalibration_Stat151: 1.0014253941257931e-06 - syst_JES_EtaIntercalibration_Stat152: 9.407008000421812e-12 + syst_JES_EtaIntercalibration_Stat147: 1.23695230e-12 + syst_JES_EtaIntercalibration_Stat148: 2.91513996e-08 + syst_JES_EtaIntercalibration_Stat149: 2.95232163e-07 + syst_JES_EtaIntercalibration_Stat15: 1.01995362e-15 + syst_JES_EtaIntercalibration_Stat150: 1.21426018e-06 + syst_JES_EtaIntercalibration_Stat151: 1.00142539e-06 + syst_JES_EtaIntercalibration_Stat152: 9.40700800e-12 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 syst_JES_EtaIntercalibration_Stat156: 0.0 - syst_JES_EtaIntercalibration_Stat157: 1.655530507360103e-11 - syst_JES_EtaIntercalibration_Stat158: 1.269039723570543e-06 - syst_JES_EtaIntercalibration_Stat159: 2.6318561890802466e-06 - syst_JES_EtaIntercalibration_Stat16: 1.0158350895537168e-15 - syst_JES_EtaIntercalibration_Stat160: 1.287935662212985e-06 - syst_JES_EtaIntercalibration_Stat161: 1.5917336358511746e-06 - syst_JES_EtaIntercalibration_Stat162: 2.1291718376108116e-13 + syst_JES_EtaIntercalibration_Stat157: 1.65553051e-11 + syst_JES_EtaIntercalibration_Stat158: 1.26903972e-06 + syst_JES_EtaIntercalibration_Stat159: 2.63185619e-06 + syst_JES_EtaIntercalibration_Stat16: 1.01583509e-15 + syst_JES_EtaIntercalibration_Stat160: 1.28793566e-06 + syst_JES_EtaIntercalibration_Stat161: 1.59173364e-06 + syst_JES_EtaIntercalibration_Stat162: 2.12917184e-13 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 2.856579358253504e-12 - syst_JES_EtaIntercalibration_Stat166: 7.815208442517704e-07 - syst_JES_EtaIntercalibration_Stat167: 1.254779640696724e-06 - syst_JES_EtaIntercalibration_Stat168: 1.6389487484360211e-06 - syst_JES_EtaIntercalibration_Stat169: 9.64894118543584e-07 - syst_JES_EtaIntercalibration_Stat17: 3.384167470368451e-20 - syst_JES_EtaIntercalibration_Stat170: 2.3562918065019026e-07 + syst_JES_EtaIntercalibration_Stat165: 2.85657936e-12 + syst_JES_EtaIntercalibration_Stat166: 7.81520844e-07 + syst_JES_EtaIntercalibration_Stat167: 1.25477964e-06 + syst_JES_EtaIntercalibration_Stat168: 1.63894875e-06 + syst_JES_EtaIntercalibration_Stat169: 9.64894119e-07 + syst_JES_EtaIntercalibration_Stat17: 3.38416747e-20 + syst_JES_EtaIntercalibration_Stat170: 2.35629181e-07 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 - syst_JES_EtaIntercalibration_Stat175: 1.3948459018539466e-07 - syst_JES_EtaIntercalibration_Stat176: 1.1098070179990755e-06 - syst_JES_EtaIntercalibration_Stat177: 6.630885517787198e-06 - syst_JES_EtaIntercalibration_Stat178: 4.836918337123338e-06 - syst_JES_EtaIntercalibration_Stat179: 3.1685933787723536e-07 + syst_JES_EtaIntercalibration_Stat175: 1.39484590e-07 + syst_JES_EtaIntercalibration_Stat176: 1.10980702e-06 + syst_JES_EtaIntercalibration_Stat177: 6.63088552e-06 + syst_JES_EtaIntercalibration_Stat178: 4.83691834e-06 + syst_JES_EtaIntercalibration_Stat179: 3.16859338e-07 syst_JES_EtaIntercalibration_Stat18: 0.0 - syst_JES_EtaIntercalibration_Stat180: 3.62171823940277e-07 + syst_JES_EtaIntercalibration_Stat180: 3.62171824e-07 syst_JES_EtaIntercalibration_Stat181: 0.0 - syst_JES_EtaIntercalibration_Stat182: 5.173593100242326e-08 - syst_JES_EtaIntercalibration_Stat183: 2.3443185593046013e-06 - syst_JES_EtaIntercalibration_Stat184: 1.2670035516919437e-05 - syst_JES_EtaIntercalibration_Stat185: 1.982394763915603e-05 - syst_JES_EtaIntercalibration_Stat186: 2.4445584267664784e-06 - syst_JES_EtaIntercalibration_Stat187: 6.914525278035506e-07 + syst_JES_EtaIntercalibration_Stat182: 5.17359310e-08 + syst_JES_EtaIntercalibration_Stat183: 2.34431856e-06 + syst_JES_EtaIntercalibration_Stat184: 1.26700355e-05 + syst_JES_EtaIntercalibration_Stat185: 1.98239476e-05 + syst_JES_EtaIntercalibration_Stat186: 2.44455843e-06 + syst_JES_EtaIntercalibration_Stat187: 6.91452528e-07 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 - syst_JES_EtaIntercalibration_Stat192: 1.1729785224427598e-06 - syst_JES_EtaIntercalibration_Stat193: 1.0068894775495472e-05 - syst_JES_EtaIntercalibration_Stat194: 3.0178148965766607e-05 - syst_JES_EtaIntercalibration_Stat195: 2.264209078243438e-05 - syst_JES_EtaIntercalibration_Stat196: 4.237521297881581e-06 - syst_JES_EtaIntercalibration_Stat197: 3.9816311669967625e-07 - syst_JES_EtaIntercalibration_Stat198: 7.571692743369873e-06 - syst_JES_EtaIntercalibration_Stat199: 3.397282443365579e-05 + syst_JES_EtaIntercalibration_Stat192: 1.17297852e-06 + syst_JES_EtaIntercalibration_Stat193: 1.00688948e-05 + syst_JES_EtaIntercalibration_Stat194: 3.01781490e-05 + syst_JES_EtaIntercalibration_Stat195: 2.26420908e-05 + syst_JES_EtaIntercalibration_Stat196: 4.23752130e-06 + syst_JES_EtaIntercalibration_Stat197: 3.98163117e-07 + syst_JES_EtaIntercalibration_Stat198: 7.57169274e-06 + syst_JES_EtaIntercalibration_Stat199: 3.39728244e-05 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 3.6571301590181335e-05 - syst_JES_EtaIntercalibration_Stat201: 1.0148264531435904e-05 - syst_JES_EtaIntercalibration_Stat202: 5.925777417352089e-07 + syst_JES_EtaIntercalibration_Stat200: 3.65713016e-05 + syst_JES_EtaIntercalibration_Stat201: 1.01482645e-05 + syst_JES_EtaIntercalibration_Stat202: 5.92577742e-07 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 - syst_JES_EtaIntercalibration_Stat207: 1.1608461859781425e-06 - syst_JES_EtaIntercalibration_Stat208: 2.0932235308251243e-05 - syst_JES_EtaIntercalibration_Stat209: 5.240238615750241e-05 + syst_JES_EtaIntercalibration_Stat207: 1.16084619e-06 + syst_JES_EtaIntercalibration_Stat208: 2.09322353e-05 + syst_JES_EtaIntercalibration_Stat209: 5.24023862e-05 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 3.750639545464213e-05 - syst_JES_EtaIntercalibration_Stat211: 1.4040898146130111e-05 - syst_JES_EtaIntercalibration_Stat212: 3.060224991728549e-05 - syst_JES_EtaIntercalibration_Stat213: 3.910232058331066e-05 - syst_JES_EtaIntercalibration_Stat214: 7.077414994191028e-06 - syst_JES_EtaIntercalibration_Stat215: 2.6926828085572947e-07 + syst_JES_EtaIntercalibration_Stat210: 3.75063955e-05 + syst_JES_EtaIntercalibration_Stat211: 1.40408981e-05 + syst_JES_EtaIntercalibration_Stat212: 3.06022499e-05 + syst_JES_EtaIntercalibration_Stat213: 3.91023206e-05 + syst_JES_EtaIntercalibration_Stat214: 7.07741499e-06 + syst_JES_EtaIntercalibration_Stat215: 2.69268281e-07 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 syst_JES_EtaIntercalibration_Stat219: 0.0 - syst_JES_EtaIntercalibration_Stat22: 4.115352718783652e-20 - syst_JES_EtaIntercalibration_Stat220: 1.528065249752117e-06 - syst_JES_EtaIntercalibration_Stat221: 1.5373115331643094e-05 - syst_JES_EtaIntercalibration_Stat222: 5.0025706141942665e-05 - syst_JES_EtaIntercalibration_Stat223: 4.631295364150293e-05 - syst_JES_EtaIntercalibration_Stat224: 9.257113589018988e-05 - syst_JES_EtaIntercalibration_Stat225: 0.0001046877542981986 - syst_JES_EtaIntercalibration_Stat226: 2.607242365028614e-05 - syst_JES_EtaIntercalibration_Stat227: 3.698931568710078e-07 + syst_JES_EtaIntercalibration_Stat22: 4.11535272e-20 + syst_JES_EtaIntercalibration_Stat220: 1.52806525e-06 + syst_JES_EtaIntercalibration_Stat221: 1.53731153e-05 + syst_JES_EtaIntercalibration_Stat222: 5.00257061e-05 + syst_JES_EtaIntercalibration_Stat223: 4.63129536e-05 + syst_JES_EtaIntercalibration_Stat224: 9.25711359e-05 + syst_JES_EtaIntercalibration_Stat225: 1.04687754e-04 + syst_JES_EtaIntercalibration_Stat226: 2.60724237e-05 + syst_JES_EtaIntercalibration_Stat227: 3.69893157e-07 syst_JES_EtaIntercalibration_Stat228: 0.0 syst_JES_EtaIntercalibration_Stat229: 0.0 - syst_JES_EtaIntercalibration_Stat23: 4.115352718783652e-20 + syst_JES_EtaIntercalibration_Stat23: 4.11535272e-20 syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 - syst_JES_EtaIntercalibration_Stat232: 1.1736855711816517e-06 - syst_JES_EtaIntercalibration_Stat233: 3.2311475902533455e-05 - syst_JES_EtaIntercalibration_Stat234: 0.00011096158975068805 - syst_JES_EtaIntercalibration_Stat235: 0.00011007282714185186 - syst_JES_EtaIntercalibration_Stat236: 2.3550152865745906e-05 - syst_JES_EtaIntercalibration_Stat237: 2.8948308702754985e-06 - syst_JES_EtaIntercalibration_Stat238: 2.1061737820037547e-07 + syst_JES_EtaIntercalibration_Stat232: 1.17368557e-06 + syst_JES_EtaIntercalibration_Stat233: 3.23114759e-05 + syst_JES_EtaIntercalibration_Stat234: 1.10961590e-04 + syst_JES_EtaIntercalibration_Stat235: 1.10072827e-04 + syst_JES_EtaIntercalibration_Stat236: 2.35501529e-05 + syst_JES_EtaIntercalibration_Stat237: 2.89483087e-06 + syst_JES_EtaIntercalibration_Stat238: 2.10617378e-07 syst_JES_EtaIntercalibration_Stat239: 0.0 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 - syst_JES_EtaIntercalibration_Stat243: 3.417321477414731e-07 - syst_JES_EtaIntercalibration_Stat244: 9.20350209159535e-06 - syst_JES_EtaIntercalibration_Stat245: 3.0011367846201217e-05 - syst_JES_EtaIntercalibration_Stat25: 3.0804523612612484e-20 - syst_JES_EtaIntercalibration_Stat26: 2.57181706192334e-18 - syst_JES_EtaIntercalibration_Stat27: 9.177113778716052e-16 - syst_JES_EtaIntercalibration_Stat28: 2.3581871670572083e-07 - syst_JES_EtaIntercalibration_Stat29: 9.94043694965166e-16 + syst_JES_EtaIntercalibration_Stat243: 3.41732148e-07 + syst_JES_EtaIntercalibration_Stat244: 9.20350209e-06 + syst_JES_EtaIntercalibration_Stat245: 3.00113678e-05 + syst_JES_EtaIntercalibration_Stat25: 3.08045236e-20 + syst_JES_EtaIntercalibration_Stat26: 2.57181706e-18 + syst_JES_EtaIntercalibration_Stat27: 9.17711378e-16 + syst_JES_EtaIntercalibration_Stat28: 2.35818717e-07 + syst_JES_EtaIntercalibration_Stat29: 9.94043695e-16 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 2.340181910087333e-19 + syst_JES_EtaIntercalibration_Stat30: 2.34018191e-19 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 5.939426882073723e-20 - syst_JES_EtaIntercalibration_Stat36: 9.9534472401676e-16 - syst_JES_EtaIntercalibration_Stat37: 3.193901689437862e-07 - syst_JES_EtaIntercalibration_Stat38: 3.1947677148526156e-07 - syst_JES_EtaIntercalibration_Stat39: 6.306436974036925e-17 - syst_JES_EtaIntercalibration_Stat4: 4.223605894256707e-20 - syst_JES_EtaIntercalibration_Stat40: 3.5368477490556476e-20 + syst_JES_EtaIntercalibration_Stat35: 5.93942688e-20 + syst_JES_EtaIntercalibration_Stat36: 9.95344724e-16 + syst_JES_EtaIntercalibration_Stat37: 3.19390169e-07 + syst_JES_EtaIntercalibration_Stat38: 3.19476771e-07 + syst_JES_EtaIntercalibration_Stat39: 6.30643697e-17 + syst_JES_EtaIntercalibration_Stat4: 4.22360589e-20 + syst_JES_EtaIntercalibration_Stat40: 3.53684775e-20 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 - syst_JES_EtaIntercalibration_Stat44: 4.115352718783652e-20 + syst_JES_EtaIntercalibration_Stat44: 4.11535272e-20 syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 - syst_JES_EtaIntercalibration_Stat47: 3.082184412068817e-20 - syst_JES_EtaIntercalibration_Stat48: 5.52203719201528e-17 - syst_JES_EtaIntercalibration_Stat49: 2.5485518927422296e-15 - syst_JES_EtaIntercalibration_Stat5: 9.06974744686973e-18 - syst_JES_EtaIntercalibration_Stat50: 2.357321147161634e-07 - syst_JES_EtaIntercalibration_Stat51: 4.008967227138182e-12 - syst_JES_EtaIntercalibration_Stat52: 7.465230175118515e-18 + syst_JES_EtaIntercalibration_Stat47: 3.08218441e-20 + syst_JES_EtaIntercalibration_Stat48: 5.52203719e-17 + syst_JES_EtaIntercalibration_Stat49: 2.54855189e-15 + syst_JES_EtaIntercalibration_Stat5: 9.06974745e-18 + syst_JES_EtaIntercalibration_Stat50: 2.35732115e-07 + syst_JES_EtaIntercalibration_Stat51: 4.00896723e-12 + syst_JES_EtaIntercalibration_Stat52: 7.46523018e-18 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 syst_JES_EtaIntercalibration_Stat56: 0.0 - syst_JES_EtaIntercalibration_Stat57: 1.0220981762126976e-15 - syst_JES_EtaIntercalibration_Stat58: 9.166417031070536e-16 - syst_JES_EtaIntercalibration_Stat59: 1.3535998218283666e-06 - syst_JES_EtaIntercalibration_Stat6: 5.945342476888948e-17 - syst_JES_EtaIntercalibration_Stat60: 3.193035720073748e-07 - syst_JES_EtaIntercalibration_Stat61: 1.754755880991712e-15 - syst_JES_EtaIntercalibration_Stat62: 3.4521504645655293e-20 + syst_JES_EtaIntercalibration_Stat57: 1.02209818e-15 + syst_JES_EtaIntercalibration_Stat58: 9.16641703e-16 + syst_JES_EtaIntercalibration_Stat59: 1.35359982e-06 + syst_JES_EtaIntercalibration_Stat6: 5.94534248e-17 + syst_JES_EtaIntercalibration_Stat60: 3.19303572e-07 + syst_JES_EtaIntercalibration_Stat61: 1.75475588e-15 + syst_JES_EtaIntercalibration_Stat62: 3.45215046e-20 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 - syst_JES_EtaIntercalibration_Stat69: 4.61577393293909e-20 - syst_JES_EtaIntercalibration_Stat7: 7.518642115892668e-18 - syst_JES_EtaIntercalibration_Stat70: 1.136205028813022e-15 - syst_JES_EtaIntercalibration_Stat71: 4.201089207864153e-07 - syst_JES_EtaIntercalibration_Stat72: 9.520311173528682e-08 - syst_JES_EtaIntercalibration_Stat73: 2.3573210682722153e-07 - syst_JES_EtaIntercalibration_Stat74: 9.426091501783758e-17 + syst_JES_EtaIntercalibration_Stat69: 4.61577393e-20 + syst_JES_EtaIntercalibration_Stat7: 7.51864212e-18 + syst_JES_EtaIntercalibration_Stat70: 1.13620503e-15 + syst_JES_EtaIntercalibration_Stat71: 4.20108921e-07 + syst_JES_EtaIntercalibration_Stat72: 9.52031117e-08 + syst_JES_EtaIntercalibration_Stat73: 2.35732107e-07 + syst_JES_EtaIntercalibration_Stat74: 9.42609150e-17 syst_JES_EtaIntercalibration_Stat75: 0.0 syst_JES_EtaIntercalibration_Stat76: 0.0 syst_JES_EtaIntercalibration_Stat77: 0.0 syst_JES_EtaIntercalibration_Stat78: 0.0 - syst_JES_EtaIntercalibration_Stat79: 1.0062696288901648e-15 + syst_JES_EtaIntercalibration_Stat79: 1.00626963e-15 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 2.280228295587966e-11 - syst_JES_EtaIntercalibration_Stat81: 4.83827117884064e-07 - syst_JES_EtaIntercalibration_Stat82: 4.005382753245936e-07 - syst_JES_EtaIntercalibration_Stat83: 2.1868953953035797e-13 - syst_JES_EtaIntercalibration_Stat84: 2.051235968873401e-20 - syst_JES_EtaIntercalibration_Stat85: 4.114486693379868e-20 - syst_JES_EtaIntercalibration_Stat86: 4.114486693379868e-20 - syst_JES_EtaIntercalibration_Stat87: 4.114486693379868e-20 - syst_JES_EtaIntercalibration_Stat88: 4.114486693379868e-20 - syst_JES_EtaIntercalibration_Stat89: 4.114486693379868e-20 + syst_JES_EtaIntercalibration_Stat80: 2.28022830e-11 + syst_JES_EtaIntercalibration_Stat81: 4.83827118e-07 + syst_JES_EtaIntercalibration_Stat82: 4.00538275e-07 + syst_JES_EtaIntercalibration_Stat83: 2.18689540e-13 + syst_JES_EtaIntercalibration_Stat84: 2.05123597e-20 + syst_JES_EtaIntercalibration_Stat85: 4.11448669e-20 + syst_JES_EtaIntercalibration_Stat86: 4.11448669e-20 + syst_JES_EtaIntercalibration_Stat87: 4.11448669e-20 + syst_JES_EtaIntercalibration_Stat88: 4.11448669e-20 + syst_JES_EtaIntercalibration_Stat89: 4.11448669e-20 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 3.98050138915627e-13 - syst_JES_EtaIntercalibration_Stat92: 4.201077190369801e-07 - syst_JES_EtaIntercalibration_Stat93: 9.515394167006e-08 - syst_JES_EtaIntercalibration_Stat94: 2.3573205327804742e-07 - syst_JES_EtaIntercalibration_Stat95: 8.977166744023417e-16 - syst_JES_EtaIntercalibration_Stat96: 2.3576848956128023e-17 - syst_JES_EtaIntercalibration_Stat97: 4.114486693379868e-20 - syst_JES_EtaIntercalibration_Stat98: 4.114486693379868e-20 - syst_JES_EtaIntercalibration_Stat99: 4.114486693379868e-20 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0008844700489558707 - syst_JES_Flavour_Comp: 0.002389675867141818 - syst_JES_Gjet_Generator: 0.003299788326544598 - syst_JES_Gjet_OOC: 0.002719194549862146 - syst_JES_Gjet_Purity: 0.000540308381852438 - syst_JES_Gjet_Stat1: 7.925626655680419e-06 - syst_JES_Gjet_Stat10: 6.110613880781537e-05 - syst_JES_Gjet_Stat11: 6.897833337360363e-05 - syst_JES_Gjet_Stat12: 0.00019885152124135232 - syst_JES_Gjet_Stat13: 0.0006221875340281257 - syst_JES_Gjet_Stat14: 0.0015110026472511555 - syst_JES_Gjet_Stat15: 0.0008754786919165994 - syst_JES_Gjet_Stat2: 1.3535976785581516e-09 - syst_JES_Gjet_Stat3: 8.331542951641116e-06 - syst_JES_Gjet_Stat4: 1.0204121520248572e-05 - syst_JES_Gjet_Stat5: 1.3899680482907946e-10 - syst_JES_Gjet_Stat6: 2.375958069916218e-05 - syst_JES_Gjet_Stat7: 2.7909551680383545e-05 - syst_JES_Gjet_Stat8: 2.1038234241494698e-05 - syst_JES_Gjet_Stat9: 4.017297692479361e-05 - syst_JES_Gjet_Veto: 0.0026661083998967485 - syst_JES_Gjet_dPhi: 0.00026740543655655167 - syst_JES_LArESZee: 0.0050524709548893 - syst_JES_LArEsmear: 0.00041219510853478117 - syst_JES_LAr_JVT: 0.000499052449648331 - syst_JES_MJB_Alpha: 3.189712682985726e-05 - syst_JES_MJB_Asym: 0.0003976907777406964 - syst_JES_MJB_Beta: 3.562493007712436e-05 - syst_JES_MJB_Stat1: 9.687443118155585e-09 - syst_JES_MJB_Stat10: 3.01382062339483e-05 - syst_JES_MJB_Stat11: 3.1423346018525776e-05 - syst_JES_MJB_Stat12: 2.5849804641428146e-05 - syst_JES_MJB_Stat13: 1.6660038055178623e-06 - syst_JES_MJB_Stat14: 1.2434728465069111e-06 - syst_JES_MJB_Stat15: 9.687411664113382e-06 - syst_JES_MJB_Stat16: 2.8273805456641313e-06 - syst_JES_MJB_Stat2: 8.65427352929605e-06 - syst_JES_MJB_Stat3: 1.3163586137523467e-05 - syst_JES_MJB_Stat4: 1.0244214501366124e-05 + syst_JES_EtaIntercalibration_Stat91: 3.98050139e-13 + syst_JES_EtaIntercalibration_Stat92: 4.20107719e-07 + syst_JES_EtaIntercalibration_Stat93: 9.51539417e-08 + syst_JES_EtaIntercalibration_Stat94: 2.35732053e-07 + syst_JES_EtaIntercalibration_Stat95: 8.97716674e-16 + syst_JES_EtaIntercalibration_Stat96: 2.35768490e-17 + syst_JES_EtaIntercalibration_Stat97: 4.11448669e-20 + syst_JES_EtaIntercalibration_Stat98: 4.11448669e-20 + syst_JES_EtaIntercalibration_Stat99: 4.11448669e-20 + syst_JES_EtaIntercalibration_TotalStat_MJB: 8.84470049e-04 + syst_JES_Flavour_Comp: 2.38967587e-03 + syst_JES_Gjet_Generator: 3.29978833e-03 + syst_JES_Gjet_OOC: 2.71919455e-03 + syst_JES_Gjet_Purity: 5.40308382e-04 + syst_JES_Gjet_Stat1: 7.92562666e-06 + syst_JES_Gjet_Stat10: 6.11061388e-05 + syst_JES_Gjet_Stat11: 6.89783334e-05 + syst_JES_Gjet_Stat12: 1.98851521e-04 + syst_JES_Gjet_Stat13: 6.22187534e-04 + syst_JES_Gjet_Stat14: 1.51100265e-03 + syst_JES_Gjet_Stat15: 8.75478692e-04 + syst_JES_Gjet_Stat2: 1.35359768e-09 + syst_JES_Gjet_Stat3: 8.33154295e-06 + syst_JES_Gjet_Stat4: 1.02041215e-05 + syst_JES_Gjet_Stat5: 1.38996805e-10 + syst_JES_Gjet_Stat6: 2.37595807e-05 + syst_JES_Gjet_Stat7: 2.79095517e-05 + syst_JES_Gjet_Stat8: 2.10382342e-05 + syst_JES_Gjet_Stat9: 4.01729769e-05 + syst_JES_Gjet_Veto: 2.66610840e-03 + syst_JES_Gjet_dPhi: 2.67405437e-04 + syst_JES_LArESZee: 5.05247095e-03 + syst_JES_LArEsmear: 4.12195109e-04 + syst_JES_LAr_JVT: 4.99052450e-04 + syst_JES_MJB_Alpha: 3.18971268e-05 + syst_JES_MJB_Asym: 3.97690778e-04 + syst_JES_MJB_Beta: 3.56249301e-05 + syst_JES_MJB_Stat1: 9.68744312e-09 + syst_JES_MJB_Stat10: 3.01382062e-05 + syst_JES_MJB_Stat11: 3.14233460e-05 + syst_JES_MJB_Stat12: 2.58498046e-05 + syst_JES_MJB_Stat13: 1.66600381e-06 + syst_JES_MJB_Stat14: 1.24347285e-06 + syst_JES_MJB_Stat15: 9.68741166e-06 + syst_JES_MJB_Stat16: 2.82738055e-06 + syst_JES_MJB_Stat2: 8.65427353e-06 + syst_JES_MJB_Stat3: 1.31635861e-05 + syst_JES_MJB_Stat4: 1.02442145e-05 syst_JES_MJB_Stat5: 0.0 - syst_JES_MJB_Stat6: 6.851992994742479e-06 - syst_JES_MJB_Stat7: 5.492333110800909e-06 - syst_JES_MJB_Stat8: 1.4618287887095396e-05 - syst_JES_MJB_Stat9: 2.1819447747365194e-05 - syst_JES_MJB_Threshold: 0.0003108350366351901 - syst_JES_Pileup_MuOffset: 0.0006215369236819322 - syst_JES_Pileup_NPVOffset: 0.0006381527168319508 - syst_JES_Pileup_Pt_term: 0.0005522130091730909 - syst_JES_PunchThrough_MC15: 0.0006061163254689648 + syst_JES_MJB_Stat6: 6.85199299e-06 + syst_JES_MJB_Stat7: 5.49233311e-06 + syst_JES_MJB_Stat8: 1.46182879e-05 + syst_JES_MJB_Stat9: 2.18194477e-05 + syst_JES_MJB_Threshold: 3.10835037e-04 + syst_JES_Pileup_MuOffset: 6.21536924e-04 + syst_JES_Pileup_NPVOffset: 6.38152717e-04 + syst_JES_Pileup_Pt_term: 5.52213009e-04 + syst_JES_PunchThrough_MC15: 6.06116325e-04 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.0014360006963786613 - syst_JES_Zjet_MuScale: 0.00010087297408126719 - syst_JES_Zjet_MuSmearID: 1.9965264836710785e-05 - syst_JES_Zjet_MuSmearMS: 0.0004017667341567741 - syst_JES_Zjet_OOC: 0.0007575213181818713 - syst_JES_Zjet_Stat1: 4.2233935111471675e-05 - syst_JES_Zjet_Stat10: 6.414559279482885e-05 - syst_JES_Zjet_Stat11: 8.653702372395298e-05 - syst_JES_Zjet_Stat12: 0.0002413120541953924 - syst_JES_Zjet_Stat13: 0.0004340345925153892 - syst_JES_Zjet_Stat2: 4.302414206008415e-08 - syst_JES_Zjet_Stat3: 2.1387889096402198e-05 - syst_JES_Zjet_Stat4: 2.0713946769024968e-05 - syst_JES_Zjet_Stat5: 2.6131097852941425e-05 - syst_JES_Zjet_Stat6: 3.0416265385480842e-05 - syst_JES_Zjet_Stat7: 1.9005847277877404e-05 - syst_JES_Zjet_Stat8: 2.3061413660051286e-05 - syst_JES_Zjet_Stat9: 3.902925921664412e-05 - syst_JES_Zjet_Veto: 0.00017130706348542665 - syst_JES_Zjet_dPhi: 0.0001459989383523045 - syst_PRW: 0.0001795 - syst_Unfolding_bias: 4.053e-15 - syst_cleaning: 0.0007352555678129884 + syst_JES_Zjet_MC: 1.43600070e-03 + syst_JES_Zjet_MuScale: 1.00872974e-04 + syst_JES_Zjet_MuSmearID: 1.99652648e-05 + syst_JES_Zjet_MuSmearMS: 4.01766734e-04 + syst_JES_Zjet_OOC: 7.57521318e-04 + syst_JES_Zjet_Stat1: 4.22339351e-05 + syst_JES_Zjet_Stat10: 6.41455928e-05 + syst_JES_Zjet_Stat11: 8.65370237e-05 + syst_JES_Zjet_Stat12: 2.41312054e-04 + syst_JES_Zjet_Stat13: 4.34034593e-04 + syst_JES_Zjet_Stat2: 4.30241421e-08 + syst_JES_Zjet_Stat3: 2.13878891e-05 + syst_JES_Zjet_Stat4: 2.07139468e-05 + syst_JES_Zjet_Stat5: 2.61310979e-05 + syst_JES_Zjet_Stat6: 3.04162654e-05 + syst_JES_Zjet_Stat7: 1.90058473e-05 + syst_JES_Zjet_Stat8: 2.30614137e-05 + syst_JES_Zjet_Stat9: 3.90292592e-05 + syst_JES_Zjet_Veto: 1.71307063e-04 + syst_JES_Zjet_dPhi: 1.45998938e-04 + syst_PRW: 1.79500000e-04 + syst_Unfolding_bias: 4.05300000e-15 + syst_cleaning: 7.35255568e-04 syst_lumi: 0.002486 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.00036382290678295675 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 9.881761115813315e-05 - syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0001132380354607055 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 3.63822907e-04 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 9.88176112e-05 + syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.13238035e-04 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 0.00013758936759430217 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0003637797513606275 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0008757270165411137 -- stat: 0.0006315 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 1.37589368e-04 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 3.63779751e-04 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 8.75727017e-04 +- stat: 6.31500000e-04 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.0008123457761323069 - syst_JER_NP1: 0.00014086961728847 - syst_JER_NP2: 0.0006315280575714748 - syst_JER_NP3: 5.732395136415493e-05 - syst_JER_NP4: 4.915013021345925e-12 - syst_JER_NP5: 6.76000059171595e-05 - syst_JER_NP6: 9.752429581904193e-12 - syst_JER_NP7: 1.1694328999562139e-11 - syst_JER_NP8: 5.237497398567373e-05 - syst_JES_EtaIntercalibration_Modelling: 0.005570340115289191 - syst_JES_EtaIntercalibration_NonClosure: 1.728438312465909e-06 - syst_JES_EtaIntercalibration_Stat0: 9.54273392430073e-21 + syst_JER_NP0: 8.12345776e-04 + syst_JER_NP1: 1.40869617e-04 + syst_JER_NP2: 6.31528058e-04 + syst_JER_NP3: 5.73239514e-05 + syst_JER_NP4: 4.91501302e-12 + syst_JER_NP5: 6.76000059e-05 + syst_JER_NP6: 9.75242958e-12 + syst_JER_NP7: 1.16943290e-11 + syst_JER_NP8: 5.23749740e-05 + syst_JES_EtaIntercalibration_Modelling: 5.57034012e-03 + syst_JES_EtaIntercalibration_NonClosure: 1.72843831e-06 + syst_JES_EtaIntercalibration_Stat0: 9.54273392e-21 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 1.6249596792373034e-16 - syst_JES_EtaIntercalibration_Stat101: 4.547743286510354e-12 - syst_JES_EtaIntercalibration_Stat102: 1.8604963551428958e-07 - syst_JES_EtaIntercalibration_Stat103: 2.0476061437688648e-07 - syst_JES_EtaIntercalibration_Stat104: 5.966805734450805e-13 - syst_JES_EtaIntercalibration_Stat105: 1.5072668078346315e-20 - syst_JES_EtaIntercalibration_Stat106: 9.54273392430073e-21 - syst_JES_EtaIntercalibration_Stat107: 9.54273392430073e-21 - syst_JES_EtaIntercalibration_Stat108: 9.54273392430073e-21 - syst_JES_EtaIntercalibration_Stat109: 9.54273392430073e-21 + syst_JES_EtaIntercalibration_Stat100: 1.62495968e-16 + syst_JES_EtaIntercalibration_Stat101: 4.54774329e-12 + syst_JES_EtaIntercalibration_Stat102: 1.86049636e-07 + syst_JES_EtaIntercalibration_Stat103: 2.04760614e-07 + syst_JES_EtaIntercalibration_Stat104: 5.96680573e-13 + syst_JES_EtaIntercalibration_Stat105: 1.50726681e-20 + syst_JES_EtaIntercalibration_Stat106: 9.54273392e-21 + syst_JES_EtaIntercalibration_Stat107: 9.54273392e-21 + syst_JES_EtaIntercalibration_Stat108: 9.54273392e-21 + syst_JES_EtaIntercalibration_Stat109: 9.54273392e-21 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 6.396873826331109e-19 - syst_JES_EtaIntercalibration_Stat111: 2.9872463490646366e-12 - syst_JES_EtaIntercalibration_Stat112: 1.491162079554064e-08 - syst_JES_EtaIntercalibration_Stat113: 1.007639102990252e-08 - syst_JES_EtaIntercalibration_Stat114: 3.480750275147901e-07 - syst_JES_EtaIntercalibration_Stat115: 5.83264631711685e-13 - syst_JES_EtaIntercalibration_Stat116: 3.74325579766742e-18 - syst_JES_EtaIntercalibration_Stat117: 9.54273392430073e-21 - syst_JES_EtaIntercalibration_Stat118: 9.54273392430073e-21 - syst_JES_EtaIntercalibration_Stat119: 9.54273392430073e-21 + syst_JES_EtaIntercalibration_Stat110: 6.39687383e-19 + syst_JES_EtaIntercalibration_Stat111: 2.98724635e-12 + syst_JES_EtaIntercalibration_Stat112: 1.49116208e-08 + syst_JES_EtaIntercalibration_Stat113: 1.00763910e-08 + syst_JES_EtaIntercalibration_Stat114: 3.48075028e-07 + syst_JES_EtaIntercalibration_Stat115: 5.83264632e-13 + syst_JES_EtaIntercalibration_Stat116: 3.74325580e-18 + syst_JES_EtaIntercalibration_Stat117: 9.54273392e-21 + syst_JES_EtaIntercalibration_Stat118: 9.54273392e-21 + syst_JES_EtaIntercalibration_Stat119: 9.54273392e-21 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 1.2695932419479869e-15 - syst_JES_EtaIntercalibration_Stat121: 1.6699407796386074e-07 - syst_JES_EtaIntercalibration_Stat122: 2.609700580526433e-07 - syst_JES_EtaIntercalibration_Stat123: 6.906238171935573e-07 - syst_JES_EtaIntercalibration_Stat124: 4.337844971872554e-07 - syst_JES_EtaIntercalibration_Stat125: 1.0819255369478993e-17 - syst_JES_EtaIntercalibration_Stat126: 9.54273392430073e-21 - syst_JES_EtaIntercalibration_Stat127: 9.54273392430073e-21 - syst_JES_EtaIntercalibration_Stat128: 9.54273392430073e-21 - syst_JES_EtaIntercalibration_Stat129: 9.040564594509572e-13 + syst_JES_EtaIntercalibration_Stat120: 1.26959324e-15 + syst_JES_EtaIntercalibration_Stat121: 1.66994078e-07 + syst_JES_EtaIntercalibration_Stat122: 2.60970058e-07 + syst_JES_EtaIntercalibration_Stat123: 6.90623817e-07 + syst_JES_EtaIntercalibration_Stat124: 4.33784497e-07 + syst_JES_EtaIntercalibration_Stat125: 1.08192554e-17 + syst_JES_EtaIntercalibration_Stat126: 9.54273392e-21 + syst_JES_EtaIntercalibration_Stat127: 9.54273392e-21 + syst_JES_EtaIntercalibration_Stat128: 9.54273392e-21 + syst_JES_EtaIntercalibration_Stat129: 9.04056459e-13 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 3.179298989950458e-08 - syst_JES_EtaIntercalibration_Stat131: 1.91217531361536e-08 - syst_JES_EtaIntercalibration_Stat132: 4.7058515666667595e-07 - syst_JES_EtaIntercalibration_Stat133: 2.1054569830561727e-07 - syst_JES_EtaIntercalibration_Stat134: 1.3847743099794164e-07 - syst_JES_EtaIntercalibration_Stat135: 3.7464258967714815e-18 + syst_JES_EtaIntercalibration_Stat130: 3.17929899e-08 + syst_JES_EtaIntercalibration_Stat131: 1.91217531e-08 + syst_JES_EtaIntercalibration_Stat132: 4.70585157e-07 + syst_JES_EtaIntercalibration_Stat133: 2.10545698e-07 + syst_JES_EtaIntercalibration_Stat134: 1.38477431e-07 + syst_JES_EtaIntercalibration_Stat135: 3.74642590e-18 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 syst_JES_EtaIntercalibration_Stat138: 0.0 - syst_JES_EtaIntercalibration_Stat139: 7.755089361187272e-12 - syst_JES_EtaIntercalibration_Stat14: 1.6402691906129439e-16 - syst_JES_EtaIntercalibration_Stat140: 4.591373990111783e-07 - syst_JES_EtaIntercalibration_Stat141: 8.159060305574411e-07 - syst_JES_EtaIntercalibration_Stat142: 4.860717308175821e-07 - syst_JES_EtaIntercalibration_Stat143: 6.959117665875466e-07 - syst_JES_EtaIntercalibration_Stat144: 3.1978320828336186e-14 + syst_JES_EtaIntercalibration_Stat139: 7.75508936e-12 + syst_JES_EtaIntercalibration_Stat14: 1.64026919e-16 + syst_JES_EtaIntercalibration_Stat140: 4.59137399e-07 + syst_JES_EtaIntercalibration_Stat141: 8.15906031e-07 + syst_JES_EtaIntercalibration_Stat142: 4.86071731e-07 + syst_JES_EtaIntercalibration_Stat143: 6.95911767e-07 + syst_JES_EtaIntercalibration_Stat144: 3.19783208e-14 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 1.7139069607186966e-13 - syst_JES_EtaIntercalibration_Stat148: 8.747418658524352e-08 - syst_JES_EtaIntercalibration_Stat149: 1.8291816177460345e-07 - syst_JES_EtaIntercalibration_Stat15: 1.6360042189533864e-16 - syst_JES_EtaIntercalibration_Stat150: 5.252981773002834e-07 - syst_JES_EtaIntercalibration_Stat151: 2.3218619146441503e-07 - syst_JES_EtaIntercalibration_Stat152: 1.341434214516314e-12 + syst_JES_EtaIntercalibration_Stat147: 1.71390696e-13 + syst_JES_EtaIntercalibration_Stat148: 8.74741866e-08 + syst_JES_EtaIntercalibration_Stat149: 1.82918162e-07 + syst_JES_EtaIntercalibration_Stat15: 1.63600422e-16 + syst_JES_EtaIntercalibration_Stat150: 5.25298177e-07 + syst_JES_EtaIntercalibration_Stat151: 2.32186191e-07 + syst_JES_EtaIntercalibration_Stat152: 1.34143421e-12 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 syst_JES_EtaIntercalibration_Stat156: 0.0 - syst_JES_EtaIntercalibration_Stat157: 2.364151931391043e-12 - syst_JES_EtaIntercalibration_Stat158: 9.446931088983343e-07 - syst_JES_EtaIntercalibration_Stat159: 9.803780737552221e-07 - syst_JES_EtaIntercalibration_Stat16: 1.6300338687080914e-16 - syst_JES_EtaIntercalibration_Stat160: 4.904186351220761e-07 - syst_JES_EtaIntercalibration_Stat161: 6.722411825379341e-07 - syst_JES_EtaIntercalibration_Stat162: 3.1493516297009455e-14 + syst_JES_EtaIntercalibration_Stat157: 2.36415193e-12 + syst_JES_EtaIntercalibration_Stat158: 9.44693109e-07 + syst_JES_EtaIntercalibration_Stat159: 9.80378074e-07 + syst_JES_EtaIntercalibration_Stat16: 1.63003387e-16 + syst_JES_EtaIntercalibration_Stat160: 4.90418635e-07 + syst_JES_EtaIntercalibration_Stat161: 6.72241183e-07 + syst_JES_EtaIntercalibration_Stat162: 3.14935163e-14 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 3.950451770051117e-13 - syst_JES_EtaIntercalibration_Stat166: 4.335616075023248e-07 - syst_JES_EtaIntercalibration_Stat167: 1.571773021145229e-07 - syst_JES_EtaIntercalibration_Stat168: 7.23020876254621e-07 - syst_JES_EtaIntercalibration_Stat169: 5.275750809837402e-07 - syst_JES_EtaIntercalibration_Stat17: 7.839261955056739e-21 - syst_JES_EtaIntercalibration_Stat170: 1.3846151722861735e-07 + syst_JES_EtaIntercalibration_Stat165: 3.95045177e-13 + syst_JES_EtaIntercalibration_Stat166: 4.33561608e-07 + syst_JES_EtaIntercalibration_Stat167: 1.57177302e-07 + syst_JES_EtaIntercalibration_Stat168: 7.23020876e-07 + syst_JES_EtaIntercalibration_Stat169: 5.27575081e-07 + syst_JES_EtaIntercalibration_Stat17: 7.83926196e-21 + syst_JES_EtaIntercalibration_Stat170: 1.38461517e-07 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 - syst_JES_EtaIntercalibration_Stat175: 2.5825777888936373e-08 - syst_JES_EtaIntercalibration_Stat176: 7.257111546614122e-07 - syst_JES_EtaIntercalibration_Stat177: 3.4362511560565537e-06 - syst_JES_EtaIntercalibration_Stat178: 2.2537229199704206e-06 - syst_JES_EtaIntercalibration_Stat179: 1.5746149624590768e-07 + syst_JES_EtaIntercalibration_Stat175: 2.58257779e-08 + syst_JES_EtaIntercalibration_Stat176: 7.25711155e-07 + syst_JES_EtaIntercalibration_Stat177: 3.43625116e-06 + syst_JES_EtaIntercalibration_Stat178: 2.25372292e-06 + syst_JES_EtaIntercalibration_Stat179: 1.57461496e-07 syst_JES_EtaIntercalibration_Stat18: 0.0 - syst_JES_EtaIntercalibration_Stat180: 2.1815179922664843e-07 + syst_JES_EtaIntercalibration_Stat180: 2.18151799e-07 syst_JES_EtaIntercalibration_Stat181: 0.0 - syst_JES_EtaIntercalibration_Stat182: 1.3110326955391186e-08 - syst_JES_EtaIntercalibration_Stat183: 1.7907878733953946e-06 - syst_JES_EtaIntercalibration_Stat184: 6.881204618378966e-06 - syst_JES_EtaIntercalibration_Stat185: 9.5791123153453e-06 - syst_JES_EtaIntercalibration_Stat186: 1.6509888453590471e-06 - syst_JES_EtaIntercalibration_Stat187: 3.005262306403038e-07 + syst_JES_EtaIntercalibration_Stat182: 1.31103270e-08 + syst_JES_EtaIntercalibration_Stat183: 1.79078787e-06 + syst_JES_EtaIntercalibration_Stat184: 6.88120462e-06 + syst_JES_EtaIntercalibration_Stat185: 9.57911232e-06 + syst_JES_EtaIntercalibration_Stat186: 1.65098885e-06 + syst_JES_EtaIntercalibration_Stat187: 3.00526231e-07 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 - syst_JES_EtaIntercalibration_Stat192: 4.0120075195686013e-07 - syst_JES_EtaIntercalibration_Stat193: 5.114005352949878e-06 - syst_JES_EtaIntercalibration_Stat194: 1.6456997539040953e-05 - syst_JES_EtaIntercalibration_Stat195: 1.2631060555234465e-05 - syst_JES_EtaIntercalibration_Stat196: 2.285462043001371e-06 - syst_JES_EtaIntercalibration_Stat197: 1.4003338566213414e-07 - syst_JES_EtaIntercalibration_Stat198: 3.5312038977521536e-06 - syst_JES_EtaIntercalibration_Stat199: 1.6131028857453575e-05 + syst_JES_EtaIntercalibration_Stat192: 4.01200752e-07 + syst_JES_EtaIntercalibration_Stat193: 5.11400535e-06 + syst_JES_EtaIntercalibration_Stat194: 1.64569975e-05 + syst_JES_EtaIntercalibration_Stat195: 1.26310606e-05 + syst_JES_EtaIntercalibration_Stat196: 2.28546204e-06 + syst_JES_EtaIntercalibration_Stat197: 1.40033386e-07 + syst_JES_EtaIntercalibration_Stat198: 3.53120390e-06 + syst_JES_EtaIntercalibration_Stat199: 1.61310289e-05 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 2.0287180681405686e-05 - syst_JES_EtaIntercalibration_Stat201: 4.648234503550783e-06 - syst_JES_EtaIntercalibration_Stat202: 1.3282991676576479e-07 + syst_JES_EtaIntercalibration_Stat200: 2.02871807e-05 + syst_JES_EtaIntercalibration_Stat201: 4.64823450e-06 + syst_JES_EtaIntercalibration_Stat202: 1.32829917e-07 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 - syst_JES_EtaIntercalibration_Stat207: 4.1824971010151334e-07 - syst_JES_EtaIntercalibration_Stat208: 1.0697821962904412e-05 - syst_JES_EtaIntercalibration_Stat209: 2.775823256261104e-05 + syst_JES_EtaIntercalibration_Stat207: 4.18249710e-07 + syst_JES_EtaIntercalibration_Stat208: 1.06978220e-05 + syst_JES_EtaIntercalibration_Stat209: 2.77582326e-05 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 1.9346053260290588e-05 - syst_JES_EtaIntercalibration_Stat211: 7.976705084181061e-06 - syst_JES_EtaIntercalibration_Stat212: 1.5347299045760462e-05 - syst_JES_EtaIntercalibration_Stat213: 2.216729742210358e-05 - syst_JES_EtaIntercalibration_Stat214: 3.7089475596184967e-06 - syst_JES_EtaIntercalibration_Stat215: 1.3574728284573508e-07 + syst_JES_EtaIntercalibration_Stat210: 1.93460533e-05 + syst_JES_EtaIntercalibration_Stat211: 7.97670508e-06 + syst_JES_EtaIntercalibration_Stat212: 1.53472990e-05 + syst_JES_EtaIntercalibration_Stat213: 2.21672974e-05 + syst_JES_EtaIntercalibration_Stat214: 3.70894756e-06 + syst_JES_EtaIntercalibration_Stat215: 1.35747283e-07 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 syst_JES_EtaIntercalibration_Stat219: 0.0 - syst_JES_EtaIntercalibration_Stat22: 9.54273392430073e-21 - syst_JES_EtaIntercalibration_Stat220: 7.125692387410502e-07 - syst_JES_EtaIntercalibration_Stat221: 8.531309439353375e-06 - syst_JES_EtaIntercalibration_Stat222: 2.7339213595127422e-05 - syst_JES_EtaIntercalibration_Stat223: 2.536483146011422e-05 - syst_JES_EtaIntercalibration_Stat224: 5.339162481138779e-05 - syst_JES_EtaIntercalibration_Stat225: 6.813158078307005e-05 - syst_JES_EtaIntercalibration_Stat226: 1.5294792144713834e-05 - syst_JES_EtaIntercalibration_Stat227: 2.2483481647645234e-07 + syst_JES_EtaIntercalibration_Stat22: 9.54273392e-21 + syst_JES_EtaIntercalibration_Stat220: 7.12569239e-07 + syst_JES_EtaIntercalibration_Stat221: 8.53130944e-06 + syst_JES_EtaIntercalibration_Stat222: 2.73392136e-05 + syst_JES_EtaIntercalibration_Stat223: 2.53648315e-05 + syst_JES_EtaIntercalibration_Stat224: 5.33916248e-05 + syst_JES_EtaIntercalibration_Stat225: 6.81315808e-05 + syst_JES_EtaIntercalibration_Stat226: 1.52947921e-05 + syst_JES_EtaIntercalibration_Stat227: 2.24834816e-07 syst_JES_EtaIntercalibration_Stat228: 0.0 syst_JES_EtaIntercalibration_Stat229: 0.0 - syst_JES_EtaIntercalibration_Stat23: 9.54273392430073e-21 + syst_JES_EtaIntercalibration_Stat23: 9.54273392e-21 syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 - syst_JES_EtaIntercalibration_Stat232: 1.2322727070042693e-06 - syst_JES_EtaIntercalibration_Stat233: 1.9847969039677587e-05 - syst_JES_EtaIntercalibration_Stat234: 6.761439251372447e-05 - syst_JES_EtaIntercalibration_Stat235: 6.840481763004709e-05 - syst_JES_EtaIntercalibration_Stat236: 1.56759146702832e-05 - syst_JES_EtaIntercalibration_Stat237: 2.438678552003113e-06 - syst_JES_EtaIntercalibration_Stat238: 4.143931557108539e-08 + syst_JES_EtaIntercalibration_Stat232: 1.23227271e-06 + syst_JES_EtaIntercalibration_Stat233: 1.98479690e-05 + syst_JES_EtaIntercalibration_Stat234: 6.76143925e-05 + syst_JES_EtaIntercalibration_Stat235: 6.84048176e-05 + syst_JES_EtaIntercalibration_Stat236: 1.56759147e-05 + syst_JES_EtaIntercalibration_Stat237: 2.43867855e-06 + syst_JES_EtaIntercalibration_Stat238: 4.14393156e-08 syst_JES_EtaIntercalibration_Stat239: 0.0 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 - syst_JES_EtaIntercalibration_Stat243: 1.4569642909831387e-07 - syst_JES_EtaIntercalibration_Stat244: 5.087545650900835e-06 - syst_JES_EtaIntercalibration_Stat245: 2.1057751541890696e-05 - syst_JES_EtaIntercalibration_Stat25: 7.04338460897884e-21 - syst_JES_EtaIntercalibration_Stat26: 5.253265912744185e-19 - syst_JES_EtaIntercalibration_Stat27: 1.5116837442649834e-16 - syst_JES_EtaIntercalibration_Stat28: 1.384774619491998e-07 - syst_JES_EtaIntercalibration_Stat29: 1.6240893163554769e-16 + syst_JES_EtaIntercalibration_Stat243: 1.45696429e-07 + syst_JES_EtaIntercalibration_Stat244: 5.08754565e-06 + syst_JES_EtaIntercalibration_Stat245: 2.10577515e-05 + syst_JES_EtaIntercalibration_Stat25: 7.04338461e-21 + syst_JES_EtaIntercalibration_Stat26: 5.25326591e-19 + syst_JES_EtaIntercalibration_Stat27: 1.51168374e-16 + syst_JES_EtaIntercalibration_Stat28: 1.38477462e-07 + syst_JES_EtaIntercalibration_Stat29: 1.62408932e-16 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 5.0436709845111827e-20 + syst_JES_EtaIntercalibration_Stat30: 5.04367098e-20 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 1.3852283855018277e-20 - syst_JES_EtaIntercalibration_Stat36: 1.5981275743857246e-16 - syst_JES_EtaIntercalibration_Stat37: 8.216849031630122e-08 - syst_JES_EtaIntercalibration_Stat38: 8.216849031649752e-08 - syst_JES_EtaIntercalibration_Stat39: 1.1621036409460215e-17 - syst_JES_EtaIntercalibration_Stat4: 9.657915303004059e-21 - syst_JES_EtaIntercalibration_Stat40: 8.727804019339573e-21 + syst_JES_EtaIntercalibration_Stat35: 1.38522839e-20 + syst_JES_EtaIntercalibration_Stat36: 1.59812757e-16 + syst_JES_EtaIntercalibration_Stat37: 8.21684903e-08 + syst_JES_EtaIntercalibration_Stat38: 8.21684903e-08 + syst_JES_EtaIntercalibration_Stat39: 1.16210364e-17 + syst_JES_EtaIntercalibration_Stat4: 9.65791530e-21 + syst_JES_EtaIntercalibration_Stat40: 8.72780402e-21 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 - syst_JES_EtaIntercalibration_Stat44: 9.54273392430073e-21 + syst_JES_EtaIntercalibration_Stat44: 9.54273392e-21 syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 - syst_JES_EtaIntercalibration_Stat47: 7.046848710593976e-21 - syst_JES_EtaIntercalibration_Stat48: 9.61509910245339e-18 - syst_JES_EtaIntercalibration_Stat49: 4.0610711641142173e-16 - syst_JES_EtaIntercalibration_Stat5: 1.5108577795411453e-18 - syst_JES_EtaIntercalibration_Stat50: 1.3847746203159058e-07 - syst_JES_EtaIntercalibration_Stat51: 5.777827689524044e-13 - syst_JES_EtaIntercalibration_Stat52: 1.2261404188346456e-18 + syst_JES_EtaIntercalibration_Stat47: 7.04684871e-21 + syst_JES_EtaIntercalibration_Stat48: 9.61509910e-18 + syst_JES_EtaIntercalibration_Stat49: 4.06107116e-16 + syst_JES_EtaIntercalibration_Stat5: 1.51085778e-18 + syst_JES_EtaIntercalibration_Stat50: 1.38477462e-07 + syst_JES_EtaIntercalibration_Stat51: 5.77782769e-13 + syst_JES_EtaIntercalibration_Stat52: 1.22614042e-18 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 syst_JES_EtaIntercalibration_Stat56: 0.0 - syst_JES_EtaIntercalibration_Stat57: 1.6402870965174442e-16 - syst_JES_EtaIntercalibration_Stat58: 1.4679898405217253e-16 - syst_JES_EtaIntercalibration_Stat59: 4.5457703894179967e-07 - syst_JES_EtaIntercalibration_Stat6: 9.599158439675845e-18 - syst_JES_EtaIntercalibration_Stat60: 8.213385013496083e-08 - syst_JES_EtaIntercalibration_Stat61: 2.7278298068382124e-16 - syst_JES_EtaIntercalibration_Stat62: 7.996878578545508e-21 + syst_JES_EtaIntercalibration_Stat57: 1.64028710e-16 + syst_JES_EtaIntercalibration_Stat58: 1.46798984e-16 + syst_JES_EtaIntercalibration_Stat59: 4.54577039e-07 + syst_JES_EtaIntercalibration_Stat6: 9.59915844e-18 + syst_JES_EtaIntercalibration_Stat60: 8.21338501e-08 + syst_JES_EtaIntercalibration_Stat61: 2.72782981e-16 + syst_JES_EtaIntercalibration_Stat62: 7.99687858e-21 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 - syst_JES_EtaIntercalibration_Stat69: 1.061176907965868e-20 - syst_JES_EtaIntercalibration_Stat7: 1.234787102094932e-18 - syst_JES_EtaIntercalibration_Stat70: 1.8727105355606884e-16 - syst_JES_EtaIntercalibration_Stat71: 2.647439655220767e-07 - syst_JES_EtaIntercalibration_Stat72: 1.5883037949803907e-08 - syst_JES_EtaIntercalibration_Stat73: 1.3847746086135646e-07 - syst_JES_EtaIntercalibration_Stat74: 1.632840031203302e-17 + syst_JES_EtaIntercalibration_Stat69: 1.06117691e-20 + syst_JES_EtaIntercalibration_Stat7: 1.23478710e-18 + syst_JES_EtaIntercalibration_Stat70: 1.87271054e-16 + syst_JES_EtaIntercalibration_Stat71: 2.64743966e-07 + syst_JES_EtaIntercalibration_Stat72: 1.58830379e-08 + syst_JES_EtaIntercalibration_Stat73: 1.38477461e-07 + syst_JES_EtaIntercalibration_Stat74: 1.63284003e-17 syst_JES_EtaIntercalibration_Stat75: 0.0 syst_JES_EtaIntercalibration_Stat76: 0.0 syst_JES_EtaIntercalibration_Stat77: 0.0 syst_JES_EtaIntercalibration_Stat78: 0.0 - syst_JES_EtaIntercalibration_Stat79: 1.6148936983828842e-16 + syst_JES_EtaIntercalibration_Stat79: 1.61489370e-16 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 3.2124658753051367e-12 - syst_JES_EtaIntercalibration_Stat81: 1.8615720963744595e-07 - syst_JES_EtaIntercalibration_Stat82: 2.0821660524559513e-07 - syst_JES_EtaIntercalibration_Stat83: 3.2401496520222643e-14 - syst_JES_EtaIntercalibration_Stat84: 5.223947048688377e-21 - syst_JES_EtaIntercalibration_Stat85: 9.54273392430073e-21 - syst_JES_EtaIntercalibration_Stat86: 9.54273392430073e-21 - syst_JES_EtaIntercalibration_Stat87: 9.54273392430073e-21 - syst_JES_EtaIntercalibration_Stat88: 9.54273392430073e-21 - syst_JES_EtaIntercalibration_Stat89: 9.54273392430073e-21 + syst_JES_EtaIntercalibration_Stat80: 3.21246588e-12 + syst_JES_EtaIntercalibration_Stat81: 1.86157210e-07 + syst_JES_EtaIntercalibration_Stat82: 2.08216605e-07 + syst_JES_EtaIntercalibration_Stat83: 3.24014965e-14 + syst_JES_EtaIntercalibration_Stat84: 5.22394705e-21 + syst_JES_EtaIntercalibration_Stat85: 9.54273392e-21 + syst_JES_EtaIntercalibration_Stat86: 9.54273392e-21 + syst_JES_EtaIntercalibration_Stat87: 9.54273392e-21 + syst_JES_EtaIntercalibration_Stat88: 9.54273392e-21 + syst_JES_EtaIntercalibration_Stat89: 9.54273392e-21 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 5.6465262892064895e-14 - syst_JES_EtaIntercalibration_Stat92: 2.647437985923505e-07 - syst_JES_EtaIntercalibration_Stat93: 1.585745377793739e-08 - syst_JES_EtaIntercalibration_Stat94: 1.3847745317393986e-07 - syst_JES_EtaIntercalibration_Stat95: 1.4635858251226677e-16 - syst_JES_EtaIntercalibration_Stat96: 3.74325579766742e-18 - syst_JES_EtaIntercalibration_Stat97: 9.54273392430073e-21 - syst_JES_EtaIntercalibration_Stat98: 9.54273392430073e-21 - syst_JES_EtaIntercalibration_Stat99: 9.54273392430073e-21 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0005562000179791439 - syst_JES_Flavour_Comp: 0.00147413118480005 - syst_JES_Gjet_Generator: 0.0019880188630895836 - syst_JES_Gjet_OOC: 0.001638664700297166 - syst_JES_Gjet_Purity: 0.0003082577938998461 - syst_JES_Gjet_Stat1: 4.9243335404093004e-06 - syst_JES_Gjet_Stat10: 3.2969071491323504e-05 - syst_JES_Gjet_Stat11: 3.649979495832819e-05 - syst_JES_Gjet_Stat12: 0.00010978929182757305 - syst_JES_Gjet_Stat13: 0.00035280819151487967 - syst_JES_Gjet_Stat14: 0.0009139523619970572 - syst_JES_Gjet_Stat15: 0.0007301548654223979 - syst_JES_Gjet_Stat2: 1.9121840907333166e-08 - syst_JES_Gjet_Stat3: 5.612787724640493e-06 - syst_JES_Gjet_Stat4: 6.021342769681859e-06 - syst_JES_Gjet_Stat5: 1.952016156407123e-11 - syst_JES_Gjet_Stat6: 1.6018973125640732e-05 - syst_JES_Gjet_Stat7: 1.777242808397322e-05 - syst_JES_Gjet_Stat8: 1.2006609762959734e-05 - syst_JES_Gjet_Stat9: 2.2389262493436447e-05 - syst_JES_Gjet_Veto: 0.0016295523925299242 - syst_JES_Gjet_dPhi: 0.00016522185085514568 - syst_JES_LArESZee: 0.0030581994702765874 - syst_JES_LArEsmear: 0.00025196080548371013 - syst_JES_LAr_JVT: 0.0003054665734577189 - syst_JES_MJB_Alpha: 1.9884367603723284e-05 - syst_JES_MJB_Asym: 0.0002768092484004102 - syst_JES_MJB_Beta: 2.2169151427152102e-05 - syst_JES_MJB_Stat1: 1.903086403858414e-08 - syst_JES_MJB_Stat10: 2.4568327171380634e-05 - syst_JES_MJB_Stat11: 2.4471505879287445e-05 - syst_JES_MJB_Stat12: 2.4943281159462562e-05 - syst_JES_MJB_Stat13: 5.074850201483784e-06 - syst_JES_MJB_Stat14: 4.364628255361504e-06 - syst_JES_MJB_Stat15: 8.112379228685011e-06 - syst_JES_MJB_Stat16: 6.03515774441729e-06 - syst_JES_MJB_Stat2: 4.334137280233604e-06 - syst_JES_MJB_Stat3: 3.9482098158532555e-06 - syst_JES_MJB_Stat4: 3.1791792572926745e-06 + syst_JES_EtaIntercalibration_Stat91: 5.64652629e-14 + syst_JES_EtaIntercalibration_Stat92: 2.64743799e-07 + syst_JES_EtaIntercalibration_Stat93: 1.58574538e-08 + syst_JES_EtaIntercalibration_Stat94: 1.38477453e-07 + syst_JES_EtaIntercalibration_Stat95: 1.46358583e-16 + syst_JES_EtaIntercalibration_Stat96: 3.74325580e-18 + syst_JES_EtaIntercalibration_Stat97: 9.54273392e-21 + syst_JES_EtaIntercalibration_Stat98: 9.54273392e-21 + syst_JES_EtaIntercalibration_Stat99: 9.54273392e-21 + syst_JES_EtaIntercalibration_TotalStat_MJB: 5.56200018e-04 + syst_JES_Flavour_Comp: 1.47413118e-03 + syst_JES_Gjet_Generator: 1.98801886e-03 + syst_JES_Gjet_OOC: 1.63866470e-03 + syst_JES_Gjet_Purity: 3.08257794e-04 + syst_JES_Gjet_Stat1: 4.92433354e-06 + syst_JES_Gjet_Stat10: 3.29690715e-05 + syst_JES_Gjet_Stat11: 3.64997950e-05 + syst_JES_Gjet_Stat12: 1.09789292e-04 + syst_JES_Gjet_Stat13: 3.52808192e-04 + syst_JES_Gjet_Stat14: 9.13952362e-04 + syst_JES_Gjet_Stat15: 7.30154865e-04 + syst_JES_Gjet_Stat2: 1.91218409e-08 + syst_JES_Gjet_Stat3: 5.61278772e-06 + syst_JES_Gjet_Stat4: 6.02134277e-06 + syst_JES_Gjet_Stat5: 1.95201616e-11 + syst_JES_Gjet_Stat6: 1.60189731e-05 + syst_JES_Gjet_Stat7: 1.77724281e-05 + syst_JES_Gjet_Stat8: 1.20066098e-05 + syst_JES_Gjet_Stat9: 2.23892625e-05 + syst_JES_Gjet_Veto: 1.62955239e-03 + syst_JES_Gjet_dPhi: 1.65221851e-04 + syst_JES_LArESZee: 3.05819947e-03 + syst_JES_LArEsmear: 2.51960805e-04 + syst_JES_LAr_JVT: 3.05466573e-04 + syst_JES_MJB_Alpha: 1.98843676e-05 + syst_JES_MJB_Asym: 2.76809248e-04 + syst_JES_MJB_Beta: 2.21691514e-05 + syst_JES_MJB_Stat1: 1.90308640e-08 + syst_JES_MJB_Stat10: 2.45683272e-05 + syst_JES_MJB_Stat11: 2.44715059e-05 + syst_JES_MJB_Stat12: 2.49432812e-05 + syst_JES_MJB_Stat13: 5.07485020e-06 + syst_JES_MJB_Stat14: 4.36462826e-06 + syst_JES_MJB_Stat15: 8.11237923e-06 + syst_JES_MJB_Stat16: 6.03515774e-06 + syst_JES_MJB_Stat2: 4.33413728e-06 + syst_JES_MJB_Stat3: 3.94820982e-06 + syst_JES_MJB_Stat4: 3.17917926e-06 syst_JES_MJB_Stat5: 0.0 - syst_JES_MJB_Stat6: 4.047802737288466e-06 - syst_JES_MJB_Stat7: 4.2946199773670315e-06 - syst_JES_MJB_Stat8: 7.846664195694881e-06 - syst_JES_MJB_Stat9: 1.4462382480075682e-05 - syst_JES_MJB_Threshold: 0.00020000582491517592 - syst_JES_Pileup_MuOffset: 0.0003818825233956118 - syst_JES_Pileup_NPVOffset: 0.00039447603146452385 - syst_JES_Pileup_Pt_term: 0.000325525851507987 - syst_JES_PunchThrough_MC15: 0.00046306516550049414 + syst_JES_MJB_Stat6: 4.04780274e-06 + syst_JES_MJB_Stat7: 4.29461998e-06 + syst_JES_MJB_Stat8: 7.84666420e-06 + syst_JES_MJB_Stat9: 1.44623825e-05 + syst_JES_MJB_Threshold: 2.00005825e-04 + syst_JES_Pileup_MuOffset: 3.81882523e-04 + syst_JES_Pileup_NPVOffset: 3.94476031e-04 + syst_JES_Pileup_Pt_term: 3.25525852e-04 + syst_JES_PunchThrough_MC15: 4.63065166e-04 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.0008154294742649423 - syst_JES_Zjet_MuScale: 5.683557226772684e-05 - syst_JES_Zjet_MuSmearID: 1.170814898905886e-05 - syst_JES_Zjet_MuSmearMS: 0.00022565399952139114 - syst_JES_Zjet_OOC: 0.0004477613063899113 - syst_JES_Zjet_Stat1: 2.6643300752722062e-05 - syst_JES_Zjet_Stat10: 3.713329604277002e-05 - syst_JES_Zjet_Stat11: 5.019204991828885e-05 - syst_JES_Zjet_Stat12: 0.0001435978718505257 - syst_JES_Zjet_Stat13: 0.00024336406369881316 - syst_JES_Zjet_Stat2: 8.931319989231055e-08 - syst_JES_Zjet_Stat3: 1.4326267369765233e-05 - syst_JES_Zjet_Stat4: 1.3860348507523178e-05 - syst_JES_Zjet_Stat5: 1.7132898178650336e-05 - syst_JES_Zjet_Stat6: 1.7966843768453043e-05 - syst_JES_Zjet_Stat7: 1.3155152631193603e-05 - syst_JES_Zjet_Stat8: 1.5230508855583256e-05 - syst_JES_Zjet_Stat9: 2.3138800206579423e-05 - syst_JES_Zjet_Veto: 9.934412312764154e-05 - syst_JES_Zjet_dPhi: 8.675746480851086e-05 - syst_PRW: 0.00010708 - syst_Unfolding_bias: 8.189e-16 - syst_cleaning: 0.0004396810975013595 + syst_JES_Zjet_MC: 8.15429474e-04 + syst_JES_Zjet_MuScale: 5.68355723e-05 + syst_JES_Zjet_MuSmearID: 1.17081490e-05 + syst_JES_Zjet_MuSmearMS: 2.25654000e-04 + syst_JES_Zjet_OOC: 4.47761306e-04 + syst_JES_Zjet_Stat1: 2.66433008e-05 + syst_JES_Zjet_Stat10: 3.71332960e-05 + syst_JES_Zjet_Stat11: 5.01920499e-05 + syst_JES_Zjet_Stat12: 1.43597872e-04 + syst_JES_Zjet_Stat13: 2.43364064e-04 + syst_JES_Zjet_Stat2: 8.93131999e-08 + syst_JES_Zjet_Stat3: 1.43262674e-05 + syst_JES_Zjet_Stat4: 1.38603485e-05 + syst_JES_Zjet_Stat5: 1.71328982e-05 + syst_JES_Zjet_Stat6: 1.79668438e-05 + syst_JES_Zjet_Stat7: 1.31551526e-05 + syst_JES_Zjet_Stat8: 1.52305089e-05 + syst_JES_Zjet_Stat9: 2.31388002e-05 + syst_JES_Zjet_Veto: 9.93441231e-05 + syst_JES_Zjet_dPhi: 8.67574648e-05 + syst_PRW: 1.07080000e-04 + syst_Unfolding_bias: 8.18900000e-16 + syst_cleaning: 4.39681098e-04 syst_lumi: 0.001461 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0002098000476644369 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 1.3665306171103523e-05 - syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 6.115512815782499e-05 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 2.09800048e-04 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 1.36653062e-05 + syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 6.11551282e-05 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 1.9030602479953174e-05 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.00020101611875668083 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0005174001739466272 -- stat: 0.0004644 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 1.90306025e-05 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 2.01016119e-04 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 5.17400174e-04 +- stat: 4.64400000e-04 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.0004870660607145606 - syst_JER_NP1: 8.968857285072608e-05 - syst_JER_NP2: 0.00038773744660530274 - syst_JER_NP3: 3.814097181509669e-05 - syst_JER_NP4: 7.538019103186195e-13 - syst_JER_NP5: 4.030695070332163e-05 - syst_JER_NP6: 1.494740335309113e-12 - syst_JER_NP7: 1.7893386348033734e-12 - syst_JER_NP8: 2.005037343791881e-05 - syst_JES_EtaIntercalibration_Modelling: 0.003469476437447011 - syst_JES_EtaIntercalibration_NonClosure: 6.588025557782848e-07 - syst_JES_EtaIntercalibration_Stat0: 2.372909606369362e-21 + syst_JER_NP0: 4.87066061e-04 + syst_JER_NP1: 8.96885729e-05 + syst_JER_NP2: 3.87737447e-04 + syst_JER_NP3: 3.81409718e-05 + syst_JER_NP4: 7.53801910e-13 + syst_JER_NP5: 4.03069507e-05 + syst_JER_NP6: 1.49474034e-12 + syst_JER_NP7: 1.78933863e-12 + syst_JER_NP8: 2.00503734e-05 + syst_JES_EtaIntercalibration_Modelling: 3.46947644e-03 + syst_JES_EtaIntercalibration_NonClosure: 6.58802556e-07 + syst_JES_EtaIntercalibration_Stat0: 2.37290961e-21 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 2.8084578843429364e-17 - syst_JES_EtaIntercalibration_Stat101: 6.649355683071856e-13 - syst_JES_EtaIntercalibration_Stat102: 7.617117614294793e-08 - syst_JES_EtaIntercalibration_Stat103: 7.854344148304173e-08 - syst_JES_EtaIntercalibration_Stat104: 8.779020530218619e-14 - syst_JES_EtaIntercalibration_Stat105: 3.973110116772502e-21 - syst_JES_EtaIntercalibration_Stat106: 2.372909606369362e-21 - syst_JES_EtaIntercalibration_Stat107: 2.372909606369362e-21 - syst_JES_EtaIntercalibration_Stat108: 2.372909606369362e-21 - syst_JES_EtaIntercalibration_Stat109: 2.372909606369362e-21 + syst_JES_EtaIntercalibration_Stat100: 2.80845788e-17 + syst_JES_EtaIntercalibration_Stat101: 6.64935568e-13 + syst_JES_EtaIntercalibration_Stat102: 7.61711761e-08 + syst_JES_EtaIntercalibration_Stat103: 7.85434415e-08 + syst_JES_EtaIntercalibration_Stat104: 8.77902053e-14 + syst_JES_EtaIntercalibration_Stat105: 3.97311012e-21 + syst_JES_EtaIntercalibration_Stat106: 2.37290961e-21 + syst_JES_EtaIntercalibration_Stat107: 2.37290961e-21 + syst_JES_EtaIntercalibration_Stat108: 2.37290961e-21 + syst_JES_EtaIntercalibration_Stat109: 2.37290961e-21 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 1.3794898866972528e-19 - syst_JES_EtaIntercalibration_Stat111: 4.3525907227764937e-13 - syst_JES_EtaIntercalibration_Stat112: 1.0173265894858937e-07 - syst_JES_EtaIntercalibration_Stat113: 9.856612429274002e-08 - syst_JES_EtaIntercalibration_Stat114: 1.0317257860577717e-07 - syst_JES_EtaIntercalibration_Stat115: 8.427204362462086e-14 - syst_JES_EtaIntercalibration_Stat116: 6.279474585504746e-19 - syst_JES_EtaIntercalibration_Stat117: 2.372909606369362e-21 - syst_JES_EtaIntercalibration_Stat118: 2.372909606369362e-21 - syst_JES_EtaIntercalibration_Stat119: 2.372909606369362e-21 + syst_JES_EtaIntercalibration_Stat110: 1.37948989e-19 + syst_JES_EtaIntercalibration_Stat111: 4.35259072e-13 + syst_JES_EtaIntercalibration_Stat112: 1.01732659e-07 + syst_JES_EtaIntercalibration_Stat113: 9.85661243e-08 + syst_JES_EtaIntercalibration_Stat114: 1.03172579e-07 + syst_JES_EtaIntercalibration_Stat115: 8.42720436e-14 + syst_JES_EtaIntercalibration_Stat116: 6.27947459e-19 + syst_JES_EtaIntercalibration_Stat117: 2.37290961e-21 + syst_JES_EtaIntercalibration_Stat118: 2.37290961e-21 + syst_JES_EtaIntercalibration_Stat119: 2.37290961e-21 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 2.0403558513161376e-16 - syst_JES_EtaIntercalibration_Stat121: 5.944369392963395e-08 - syst_JES_EtaIntercalibration_Stat122: 1.1114606909378308e-07 - syst_JES_EtaIntercalibration_Stat123: 1.9703863522352664e-07 - syst_JES_EtaIntercalibration_Stat124: 1.2407586822182629e-07 - syst_JES_EtaIntercalibration_Stat125: 2.122628264675659e-18 - syst_JES_EtaIntercalibration_Stat126: 2.372909606369362e-21 - syst_JES_EtaIntercalibration_Stat127: 2.372909606369362e-21 - syst_JES_EtaIntercalibration_Stat128: 2.372909606369362e-21 - syst_JES_EtaIntercalibration_Stat129: 1.3507953645445338e-13 + syst_JES_EtaIntercalibration_Stat120: 2.04035585e-16 + syst_JES_EtaIntercalibration_Stat121: 5.94436939e-08 + syst_JES_EtaIntercalibration_Stat122: 1.11146069e-07 + syst_JES_EtaIntercalibration_Stat123: 1.97038635e-07 + syst_JES_EtaIntercalibration_Stat124: 1.24075868e-07 + syst_JES_EtaIntercalibration_Stat125: 2.12262826e-18 + syst_JES_EtaIntercalibration_Stat126: 2.37290961e-21 + syst_JES_EtaIntercalibration_Stat127: 2.37290961e-21 + syst_JES_EtaIntercalibration_Stat128: 2.37290961e-21 + syst_JES_EtaIntercalibration_Stat129: 1.35079536e-13 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 7.657246953540156e-08 - syst_JES_EtaIntercalibration_Stat131: 1.4553651191367754e-07 - syst_JES_EtaIntercalibration_Stat132: 3.6206718823997293e-07 - syst_JES_EtaIntercalibration_Stat133: 1.264915122646575e-07 - syst_JES_EtaIntercalibration_Stat134: 8.16661910475607e-08 - syst_JES_EtaIntercalibration_Stat135: 6.287344431475024e-19 + syst_JES_EtaIntercalibration_Stat130: 7.65724695e-08 + syst_JES_EtaIntercalibration_Stat131: 1.45536512e-07 + syst_JES_EtaIntercalibration_Stat132: 3.62067188e-07 + syst_JES_EtaIntercalibration_Stat133: 1.26491512e-07 + syst_JES_EtaIntercalibration_Stat134: 8.16661910e-08 + syst_JES_EtaIntercalibration_Stat135: 6.28734443e-19 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 syst_JES_EtaIntercalibration_Stat138: 0.0 - syst_JES_EtaIntercalibration_Stat139: 1.13452210533775e-12 - syst_JES_EtaIntercalibration_Stat14: 2.831948077689386e-17 - syst_JES_EtaIntercalibration_Stat140: 1.8118797442159345e-07 - syst_JES_EtaIntercalibration_Stat141: 4.794482532036174e-07 - syst_JES_EtaIntercalibration_Stat142: 1.96300698101153e-07 - syst_JES_EtaIntercalibration_Stat143: 2.1432351900806405e-07 - syst_JES_EtaIntercalibration_Stat144: 5.039719114196743e-15 + syst_JES_EtaIntercalibration_Stat139: 1.13452211e-12 + syst_JES_EtaIntercalibration_Stat14: 2.83194808e-17 + syst_JES_EtaIntercalibration_Stat140: 1.81187974e-07 + syst_JES_EtaIntercalibration_Stat141: 4.79448253e-07 + syst_JES_EtaIntercalibration_Stat142: 1.96300698e-07 + syst_JES_EtaIntercalibration_Stat143: 2.14323519e-07 + syst_JES_EtaIntercalibration_Stat144: 5.03971911e-15 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 2.435166415257898e-14 - syst_JES_EtaIntercalibration_Stat148: 1.0321610631470023e-07 - syst_JES_EtaIntercalibration_Stat149: 1.8920923517365635e-07 - syst_JES_EtaIntercalibration_Stat15: 2.825179134977297e-17 - syst_JES_EtaIntercalibration_Stat150: 1.8619185669625834e-07 - syst_JES_EtaIntercalibration_Stat151: 1.1499983130422409e-07 - syst_JES_EtaIntercalibration_Stat152: 1.950220610597683e-13 + syst_JES_EtaIntercalibration_Stat147: 2.43516642e-14 + syst_JES_EtaIntercalibration_Stat148: 1.03216106e-07 + syst_JES_EtaIntercalibration_Stat149: 1.89209235e-07 + syst_JES_EtaIntercalibration_Stat15: 2.82517913e-17 + syst_JES_EtaIntercalibration_Stat150: 1.86191857e-07 + syst_JES_EtaIntercalibration_Stat151: 1.14999831e-07 + syst_JES_EtaIntercalibration_Stat152: 1.95022061e-13 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 syst_JES_EtaIntercalibration_Stat156: 0.0 - syst_JES_EtaIntercalibration_Stat157: 3.4576865606753597e-13 - syst_JES_EtaIntercalibration_Stat158: 7.148686573070608e-07 - syst_JES_EtaIntercalibration_Stat159: 3.3347048969886376e-07 - syst_JES_EtaIntercalibration_Stat16: 2.813289860480208e-17 - syst_JES_EtaIntercalibration_Stat160: 2.0733859915606646e-07 - syst_JES_EtaIntercalibration_Stat161: 2.0704900386140474e-07 - syst_JES_EtaIntercalibration_Stat162: 4.981096147435824e-15 + syst_JES_EtaIntercalibration_Stat157: 3.45768656e-13 + syst_JES_EtaIntercalibration_Stat158: 7.14868657e-07 + syst_JES_EtaIntercalibration_Stat159: 3.33470490e-07 + syst_JES_EtaIntercalibration_Stat16: 2.81328986e-17 + syst_JES_EtaIntercalibration_Stat160: 2.07338599e-07 + syst_JES_EtaIntercalibration_Stat161: 2.07049004e-07 + syst_JES_EtaIntercalibration_Stat162: 4.98109615e-15 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 5.592573411900822e-14 - syst_JES_EtaIntercalibration_Stat166: 3.6184660949081727e-07 - syst_JES_EtaIntercalibration_Stat167: 3.6892618164071793e-07 - syst_JES_EtaIntercalibration_Stat168: 3.8349881199294474e-07 - syst_JES_EtaIntercalibration_Stat169: 6.494010163219643e-07 - syst_JES_EtaIntercalibration_Stat17: 1.9468251077074182e-21 - syst_JES_EtaIntercalibration_Stat170: 8.165509342336644e-08 + syst_JES_EtaIntercalibration_Stat165: 5.59257341e-14 + syst_JES_EtaIntercalibration_Stat166: 3.61846609e-07 + syst_JES_EtaIntercalibration_Stat167: 3.68926182e-07 + syst_JES_EtaIntercalibration_Stat168: 3.83498812e-07 + syst_JES_EtaIntercalibration_Stat169: 6.49401016e-07 + syst_JES_EtaIntercalibration_Stat17: 1.94682511e-21 + syst_JES_EtaIntercalibration_Stat170: 8.16550934e-08 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 - syst_JES_EtaIntercalibration_Stat175: 4.46678452993963e-09 - syst_JES_EtaIntercalibration_Stat176: 5.911762913886178e-07 - syst_JES_EtaIntercalibration_Stat177: 1.6572033429848012e-06 - syst_JES_EtaIntercalibration_Stat178: 8.753735816781314e-07 - syst_JES_EtaIntercalibration_Stat179: 1.195591347409306e-07 + syst_JES_EtaIntercalibration_Stat175: 4.46678453e-09 + syst_JES_EtaIntercalibration_Stat176: 5.91176291e-07 + syst_JES_EtaIntercalibration_Stat177: 1.65720334e-06 + syst_JES_EtaIntercalibration_Stat178: 8.75373582e-07 + syst_JES_EtaIntercalibration_Stat179: 1.19559135e-07 syst_JES_EtaIntercalibration_Stat18: 0.0 - syst_JES_EtaIntercalibration_Stat180: 8.272274657196555e-08 + syst_JES_EtaIntercalibration_Stat180: 8.27227466e-08 syst_JES_EtaIntercalibration_Stat181: 0.0 - syst_JES_EtaIntercalibration_Stat182: 2.9243798805214084e-09 - syst_JES_EtaIntercalibration_Stat183: 1.2739944927275e-06 - syst_JES_EtaIntercalibration_Stat184: 3.6819305737615424e-06 - syst_JES_EtaIntercalibration_Stat185: 4.738021396110405e-06 - syst_JES_EtaIntercalibration_Stat186: 1.0363068597186839e-06 - syst_JES_EtaIntercalibration_Stat187: 8.445708450916692e-08 + syst_JES_EtaIntercalibration_Stat182: 2.92437988e-09 + syst_JES_EtaIntercalibration_Stat183: 1.27399449e-06 + syst_JES_EtaIntercalibration_Stat184: 3.68193057e-06 + syst_JES_EtaIntercalibration_Stat185: 4.73802140e-06 + syst_JES_EtaIntercalibration_Stat186: 1.03630686e-06 + syst_JES_EtaIntercalibration_Stat187: 8.44570845e-08 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 - syst_JES_EtaIntercalibration_Stat192: 8.610658810200007e-08 - syst_JES_EtaIntercalibration_Stat193: 2.2641778126949302e-06 - syst_JES_EtaIntercalibration_Stat194: 9.165848283165065e-06 - syst_JES_EtaIntercalibration_Stat195: 6.739397154048721e-06 - syst_JES_EtaIntercalibration_Stat196: 1.5179782178937879e-06 - syst_JES_EtaIntercalibration_Stat197: 5.208444969470255e-08 - syst_JES_EtaIntercalibration_Stat198: 1.9085667397290565e-06 - syst_JES_EtaIntercalibration_Stat199: 8.092151629820094e-06 + syst_JES_EtaIntercalibration_Stat192: 8.61065881e-08 + syst_JES_EtaIntercalibration_Stat193: 2.26417781e-06 + syst_JES_EtaIntercalibration_Stat194: 9.16584828e-06 + syst_JES_EtaIntercalibration_Stat195: 6.73939715e-06 + syst_JES_EtaIntercalibration_Stat196: 1.51797822e-06 + syst_JES_EtaIntercalibration_Stat197: 5.20844497e-08 + syst_JES_EtaIntercalibration_Stat198: 1.90856674e-06 + syst_JES_EtaIntercalibration_Stat199: 8.09215163e-06 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 1.2656549727315103e-05 - syst_JES_EtaIntercalibration_Stat201: 2.4352646673411083e-06 - syst_JES_EtaIntercalibration_Stat202: 5.859491680171582e-08 + syst_JES_EtaIntercalibration_Stat200: 1.26565497e-05 + syst_JES_EtaIntercalibration_Stat201: 2.43526467e-06 + syst_JES_EtaIntercalibration_Stat202: 5.85949168e-08 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 - syst_JES_EtaIntercalibration_Stat207: 1.6845955093137344e-07 - syst_JES_EtaIntercalibration_Stat208: 5.830155486777347e-06 - syst_JES_EtaIntercalibration_Stat209: 1.5361175475854703e-05 + syst_JES_EtaIntercalibration_Stat207: 1.68459551e-07 + syst_JES_EtaIntercalibration_Stat208: 5.83015549e-06 + syst_JES_EtaIntercalibration_Stat209: 1.53611755e-05 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 1.0002218491414794e-05 - syst_JES_EtaIntercalibration_Stat211: 4.500880663825692e-06 - syst_JES_EtaIntercalibration_Stat212: 8.077777215917754e-06 - syst_JES_EtaIntercalibration_Stat213: 1.4027558162417293e-05 - syst_JES_EtaIntercalibration_Stat214: 2.21637694221899e-06 - syst_JES_EtaIntercalibration_Stat215: 7.641793962643851e-08 + syst_JES_EtaIntercalibration_Stat210: 1.00022185e-05 + syst_JES_EtaIntercalibration_Stat211: 4.50088066e-06 + syst_JES_EtaIntercalibration_Stat212: 8.07777722e-06 + syst_JES_EtaIntercalibration_Stat213: 1.40275582e-05 + syst_JES_EtaIntercalibration_Stat214: 2.21637694e-06 + syst_JES_EtaIntercalibration_Stat215: 7.64179396e-08 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 syst_JES_EtaIntercalibration_Stat219: 0.0 - syst_JES_EtaIntercalibration_Stat22: 2.372909606369362e-21 - syst_JES_EtaIntercalibration_Stat220: 2.668583000395528e-07 - syst_JES_EtaIntercalibration_Stat221: 5.007489390902391e-06 - syst_JES_EtaIntercalibration_Stat222: 1.5281317245250816e-05 - syst_JES_EtaIntercalibration_Stat223: 1.375701554662202e-05 - syst_JES_EtaIntercalibration_Stat224: 2.9036788303805226e-05 - syst_JES_EtaIntercalibration_Stat225: 4.565893861009036e-05 - syst_JES_EtaIntercalibration_Stat226: 8.954674030918156e-06 - syst_JES_EtaIntercalibration_Stat227: 1.41103762086629e-07 + syst_JES_EtaIntercalibration_Stat22: 2.37290961e-21 + syst_JES_EtaIntercalibration_Stat220: 2.66858300e-07 + syst_JES_EtaIntercalibration_Stat221: 5.00748939e-06 + syst_JES_EtaIntercalibration_Stat222: 1.52813172e-05 + syst_JES_EtaIntercalibration_Stat223: 1.37570155e-05 + syst_JES_EtaIntercalibration_Stat224: 2.90367883e-05 + syst_JES_EtaIntercalibration_Stat225: 4.56589386e-05 + syst_JES_EtaIntercalibration_Stat226: 8.95467403e-06 + syst_JES_EtaIntercalibration_Stat227: 1.41103762e-07 syst_JES_EtaIntercalibration_Stat228: 0.0 syst_JES_EtaIntercalibration_Stat229: 0.0 - syst_JES_EtaIntercalibration_Stat23: 2.372909606369362e-21 + syst_JES_EtaIntercalibration_Stat23: 2.37290961e-21 syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 - syst_JES_EtaIntercalibration_Stat232: 9.205865412876727e-07 - syst_JES_EtaIntercalibration_Stat233: 1.2408313050128933e-05 - syst_JES_EtaIntercalibration_Stat234: 4.076561035971373e-05 - syst_JES_EtaIntercalibration_Stat235: 4.220036255768427e-05 - syst_JES_EtaIntercalibration_Stat236: 9.456134622561167e-06 - syst_JES_EtaIntercalibration_Stat237: 1.7145598174167033e-06 - syst_JES_EtaIntercalibration_Stat238: 2.3270102599687864e-08 + syst_JES_EtaIntercalibration_Stat232: 9.20586541e-07 + syst_JES_EtaIntercalibration_Stat233: 1.24083131e-05 + syst_JES_EtaIntercalibration_Stat234: 4.07656104e-05 + syst_JES_EtaIntercalibration_Stat235: 4.22003626e-05 + syst_JES_EtaIntercalibration_Stat236: 9.45613462e-06 + syst_JES_EtaIntercalibration_Stat237: 1.71455982e-06 + syst_JES_EtaIntercalibration_Stat238: 2.32701026e-08 syst_JES_EtaIntercalibration_Stat239: 0.0 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 - syst_JES_EtaIntercalibration_Stat243: 6.640817241123264e-08 - syst_JES_EtaIntercalibration_Stat244: 2.2880988150645945e-06 - syst_JES_EtaIntercalibration_Stat245: 1.3389629597192001e-05 - syst_JES_EtaIntercalibration_Stat25: 1.7259886297423864e-21 - syst_JES_EtaIntercalibration_Stat26: 1.1580989368357094e-19 - syst_JES_EtaIntercalibration_Stat27: 2.6868986341133156e-17 - syst_JES_EtaIntercalibration_Stat28: 8.166619555751112e-08 - syst_JES_EtaIntercalibration_Stat29: 2.861364644710632e-17 + syst_JES_EtaIntercalibration_Stat243: 6.64081724e-08 + syst_JES_EtaIntercalibration_Stat244: 2.28809882e-06 + syst_JES_EtaIntercalibration_Stat245: 1.33896296e-05 + syst_JES_EtaIntercalibration_Stat25: 1.72598863e-21 + syst_JES_EtaIntercalibration_Stat26: 1.15809894e-19 + syst_JES_EtaIntercalibration_Stat27: 2.68689863e-17 + syst_JES_EtaIntercalibration_Stat28: 8.16661956e-08 + syst_JES_EtaIntercalibration_Stat29: 2.86136464e-17 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 1.1692307599443319e-20 + syst_JES_EtaIntercalibration_Stat30: 1.16923076e-20 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 3.463211382517677e-21 - syst_JES_EtaIntercalibration_Stat36: 2.7604494678720347e-17 - syst_JES_EtaIntercalibration_Stat37: 1.6203335305861086e-08 - syst_JES_EtaIntercalibration_Stat38: 1.620333530589833e-08 - syst_JES_EtaIntercalibration_Stat39: 2.311173350502943e-18 - syst_JES_EtaIntercalibration_Stat4: 2.3668474285428708e-21 - syst_JES_EtaIntercalibration_Stat40: 2.3001634724514692e-21 + syst_JES_EtaIntercalibration_Stat35: 3.46321138e-21 + syst_JES_EtaIntercalibration_Stat36: 2.76044947e-17 + syst_JES_EtaIntercalibration_Stat37: 1.62033353e-08 + syst_JES_EtaIntercalibration_Stat38: 1.62033353e-08 + syst_JES_EtaIntercalibration_Stat39: 2.31117335e-18 + syst_JES_EtaIntercalibration_Stat4: 2.36684743e-21 + syst_JES_EtaIntercalibration_Stat40: 2.30016347e-21 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 - syst_JES_EtaIntercalibration_Stat44: 2.372909606369362e-21 + syst_JES_EtaIntercalibration_Stat44: 2.37290961e-21 syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 - syst_JES_EtaIntercalibration_Stat47: 1.7268546551461707e-21 - syst_JES_EtaIntercalibration_Stat48: 1.8064971713235533e-18 - syst_JES_EtaIntercalibration_Stat49: 6.974096930786092e-17 - syst_JES_EtaIntercalibration_Stat5: 2.6474211239430724e-19 - syst_JES_EtaIntercalibration_Stat50: 8.165753531658203e-08 - syst_JES_EtaIntercalibration_Stat51: 8.351696561065945e-14 - syst_JES_EtaIntercalibration_Stat52: 2.108724369731616e-19 + syst_JES_EtaIntercalibration_Stat47: 1.72685466e-21 + syst_JES_EtaIntercalibration_Stat48: 1.80649717e-18 + syst_JES_EtaIntercalibration_Stat49: 6.97409693e-17 + syst_JES_EtaIntercalibration_Stat5: 2.64742112e-19 + syst_JES_EtaIntercalibration_Stat50: 8.16575353e-08 + syst_JES_EtaIntercalibration_Stat51: 8.35169656e-14 + syst_JES_EtaIntercalibration_Stat52: 2.10872437e-19 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 syst_JES_EtaIntercalibration_Stat56: 0.0 - syst_JES_EtaIntercalibration_Stat57: 2.831990549747077e-17 - syst_JES_EtaIntercalibration_Stat58: 2.5307306667245333e-17 - syst_JES_EtaIntercalibration_Stat59: 1.2418808683910617e-07 - syst_JES_EtaIntercalibration_Stat6: 1.6457524327796086e-18 - syst_JES_EtaIntercalibration_Stat60: 1.6203335438954186e-08 - syst_JES_EtaIntercalibration_Stat61: 4.5602224784625366e-17 - syst_JES_EtaIntercalibration_Stat62: 1.9857962508777176e-21 + syst_JES_EtaIntercalibration_Stat57: 2.83199055e-17 + syst_JES_EtaIntercalibration_Stat58: 2.53073067e-17 + syst_JES_EtaIntercalibration_Stat59: 1.24188087e-07 + syst_JES_EtaIntercalibration_Stat6: 1.64575243e-18 + syst_JES_EtaIntercalibration_Stat60: 1.62033354e-08 + syst_JES_EtaIntercalibration_Stat61: 4.56022248e-17 + syst_JES_EtaIntercalibration_Stat62: 1.98579625e-21 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 - syst_JES_EtaIntercalibration_Stat69: 2.615338362430376e-21 - syst_JES_EtaIntercalibration_Stat7: 2.123839961502514e-19 - syst_JES_EtaIntercalibration_Stat70: 3.3257301453966467e-17 - syst_JES_EtaIntercalibration_Stat71: 1.8862033287289026e-07 - syst_JES_EtaIntercalibration_Stat72: 2.897719061459696e-08 - syst_JES_EtaIntercalibration_Stat73: 8.166619538496134e-08 - syst_JES_EtaIntercalibration_Stat74: 3.0550958528334264e-18 + syst_JES_EtaIntercalibration_Stat69: 2.61533836e-21 + syst_JES_EtaIntercalibration_Stat7: 2.12383996e-19 + syst_JES_EtaIntercalibration_Stat70: 3.32573015e-17 + syst_JES_EtaIntercalibration_Stat71: 1.88620333e-07 + syst_JES_EtaIntercalibration_Stat72: 2.89771906e-08 + syst_JES_EtaIntercalibration_Stat73: 8.16661954e-08 + syst_JES_EtaIntercalibration_Stat74: 3.05509585e-18 syst_JES_EtaIntercalibration_Stat75: 0.0 syst_JES_EtaIntercalibration_Stat76: 0.0 syst_JES_EtaIntercalibration_Stat77: 0.0 syst_JES_EtaIntercalibration_Stat78: 0.0 - syst_JES_EtaIntercalibration_Stat79: 2.789289753983082e-17 + syst_JES_EtaIntercalibration_Stat79: 2.78928975e-17 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 4.672646680415715e-13 - syst_JES_EtaIntercalibration_Stat81: 7.617734440107505e-08 - syst_JES_EtaIntercalibration_Stat82: 7.951690323446959e-08 - syst_JES_EtaIntercalibration_Stat83: 5.138115092862362e-15 - syst_JES_EtaIntercalibration_Stat84: 1.4282376377900142e-21 - syst_JES_EtaIntercalibration_Stat85: 2.372909606369362e-21 - syst_JES_EtaIntercalibration_Stat86: 2.372909606369362e-21 - syst_JES_EtaIntercalibration_Stat87: 2.372909606369362e-21 - syst_JES_EtaIntercalibration_Stat88: 2.372909606369362e-21 - syst_JES_EtaIntercalibration_Stat89: 2.372909606369362e-21 + syst_JES_EtaIntercalibration_Stat80: 4.67264668e-13 + syst_JES_EtaIntercalibration_Stat81: 7.61773444e-08 + syst_JES_EtaIntercalibration_Stat82: 7.95169032e-08 + syst_JES_EtaIntercalibration_Stat83: 5.13811509e-15 + syst_JES_EtaIntercalibration_Stat84: 1.42823764e-21 + syst_JES_EtaIntercalibration_Stat85: 2.37290961e-21 + syst_JES_EtaIntercalibration_Stat86: 2.37290961e-21 + syst_JES_EtaIntercalibration_Stat87: 2.37290961e-21 + syst_JES_EtaIntercalibration_Stat88: 2.37290961e-21 + syst_JES_EtaIntercalibration_Stat89: 2.37290961e-21 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 8.46697816269181e-15 - syst_JES_EtaIntercalibration_Stat92: 1.8870691146109672e-07 - syst_JES_EtaIntercalibration_Stat93: 2.8985793218090942e-08 - syst_JES_EtaIntercalibration_Stat94: 8.166619421143928e-08 - syst_JES_EtaIntercalibration_Stat95: 2.5723024861007306e-17 - syst_JES_EtaIntercalibration_Stat96: 6.279474585504746e-19 - syst_JES_EtaIntercalibration_Stat97: 2.372909606369362e-21 - syst_JES_EtaIntercalibration_Stat98: 2.372909606369362e-21 - syst_JES_EtaIntercalibration_Stat99: 2.372909606369362e-21 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.00035488837681727474 - syst_JES_Flavour_Comp: 0.000934512507941975 - syst_JES_Gjet_Generator: 0.0012242367448741277 - syst_JES_Gjet_OOC: 0.0010073168369485344 - syst_JES_Gjet_Purity: 0.00017879269420197235 - syst_JES_Gjet_Stat1: 2.947336357098558e-06 - syst_JES_Gjet_Stat10: 1.8488845285739183e-05 - syst_JES_Gjet_Stat11: 1.996282232050368e-05 - syst_JES_Gjet_Stat12: 6.0797452249251375e-05 - syst_JES_Gjet_Stat13: 0.00020469460178519606 - syst_JES_Gjet_Stat14: 0.0005525751442111743 - syst_JES_Gjet_Stat15: 0.0005664309843220089 - syst_JES_Gjet_Stat2: 1.1506013514456272e-07 - syst_JES_Gjet_Stat3: 3.474882111309677e-06 - syst_JES_Gjet_Stat4: 3.5540465317719186e-06 - syst_JES_Gjet_Stat5: 2.8604715800528686e-12 - syst_JES_Gjet_Stat6: 1.0816921327253887e-05 - syst_JES_Gjet_Stat7: 1.1070207529671701e-05 - syst_JES_Gjet_Stat8: 6.988502897616914e-06 - syst_JES_Gjet_Stat9: 1.2727630494322184e-05 - syst_JES_Gjet_Veto: 0.0010115501865948127 - syst_JES_Gjet_dPhi: 9.977355398601374e-05 - syst_JES_LArESZee: 0.0018845738908304978 - syst_JES_LArEsmear: 0.00015488837916383526 - syst_JES_LAr_JVT: 0.0001896116293901827 - syst_JES_MJB_Alpha: 1.21594352150912e-05 - syst_JES_MJB_Asym: 0.00019211501763266714 - syst_JES_MJB_Beta: 1.3446799870229348e-05 - syst_JES_MJB_Stat1: 2.322129078484374e-08 - syst_JES_MJB_Stat10: 1.8160198236803474e-05 - syst_JES_MJB_Stat11: 1.8145607595228108e-05 - syst_JES_MJB_Stat12: 2.3094481483679166e-05 - syst_JES_MJB_Stat13: 1.0008867405955581e-05 - syst_JES_MJB_Stat14: 8.69807914139668e-06 - syst_JES_MJB_Stat15: 8.119391029350662e-06 - syst_JES_MJB_Stat16: 8.126523734045204e-06 - syst_JES_MJB_Stat2: 1.835190585874666e-06 - syst_JES_MJB_Stat3: 1.0231224120309357e-06 - syst_JES_MJB_Stat4: 8.386590010248502e-07 + syst_JES_EtaIntercalibration_Stat91: 8.46697816e-15 + syst_JES_EtaIntercalibration_Stat92: 1.88706911e-07 + syst_JES_EtaIntercalibration_Stat93: 2.89857932e-08 + syst_JES_EtaIntercalibration_Stat94: 8.16661942e-08 + syst_JES_EtaIntercalibration_Stat95: 2.57230249e-17 + syst_JES_EtaIntercalibration_Stat96: 6.27947459e-19 + syst_JES_EtaIntercalibration_Stat97: 2.37290961e-21 + syst_JES_EtaIntercalibration_Stat98: 2.37290961e-21 + syst_JES_EtaIntercalibration_Stat99: 2.37290961e-21 + syst_JES_EtaIntercalibration_TotalStat_MJB: 3.54888377e-04 + syst_JES_Flavour_Comp: 9.34512508e-04 + syst_JES_Gjet_Generator: 1.22423674e-03 + syst_JES_Gjet_OOC: 1.00731684e-03 + syst_JES_Gjet_Purity: 1.78792694e-04 + syst_JES_Gjet_Stat1: 2.94733636e-06 + syst_JES_Gjet_Stat10: 1.84888453e-05 + syst_JES_Gjet_Stat11: 1.99628223e-05 + syst_JES_Gjet_Stat12: 6.07974522e-05 + syst_JES_Gjet_Stat13: 2.04694602e-04 + syst_JES_Gjet_Stat14: 5.52575144e-04 + syst_JES_Gjet_Stat15: 5.66430984e-04 + syst_JES_Gjet_Stat2: 1.15060135e-07 + syst_JES_Gjet_Stat3: 3.47488211e-06 + syst_JES_Gjet_Stat4: 3.55404653e-06 + syst_JES_Gjet_Stat5: 2.86047158e-12 + syst_JES_Gjet_Stat6: 1.08169213e-05 + syst_JES_Gjet_Stat7: 1.10702075e-05 + syst_JES_Gjet_Stat8: 6.98850290e-06 + syst_JES_Gjet_Stat9: 1.27276305e-05 + syst_JES_Gjet_Veto: 1.01155019e-03 + syst_JES_Gjet_dPhi: 9.97735540e-05 + syst_JES_LArESZee: 1.88457389e-03 + syst_JES_LArEsmear: 1.54888379e-04 + syst_JES_LAr_JVT: 1.89611629e-04 + syst_JES_MJB_Alpha: 1.21594352e-05 + syst_JES_MJB_Asym: 1.92115018e-04 + syst_JES_MJB_Beta: 1.34467999e-05 + syst_JES_MJB_Stat1: 2.32212908e-08 + syst_JES_MJB_Stat10: 1.81601982e-05 + syst_JES_MJB_Stat11: 1.81456076e-05 + syst_JES_MJB_Stat12: 2.30944815e-05 + syst_JES_MJB_Stat13: 1.00088674e-05 + syst_JES_MJB_Stat14: 8.69807914e-06 + syst_JES_MJB_Stat15: 8.11939103e-06 + syst_JES_MJB_Stat16: 8.12652373e-06 + syst_JES_MJB_Stat2: 1.83519059e-06 + syst_JES_MJB_Stat3: 1.02312241e-06 + syst_JES_MJB_Stat4: 8.38659001e-07 syst_JES_MJB_Stat5: 0.0 - syst_JES_MJB_Stat6: 2.391096139848835e-06 - syst_JES_MJB_Stat7: 2.912443432927067e-06 - syst_JES_MJB_Stat8: 4.304194106624374e-06 - syst_JES_MJB_Stat9: 1.0044497847080261e-05 - syst_JES_MJB_Threshold: 0.00013022271489644195 - syst_JES_Pileup_MuOffset: 0.0002375410438219046 - syst_JES_Pileup_NPVOffset: 0.000246322836943715 - syst_JES_Pileup_Pt_term: 0.00018807691910492365 - syst_JES_PunchThrough_MC15: 0.0003762243249711533 + syst_JES_MJB_Stat6: 2.39109614e-06 + syst_JES_MJB_Stat7: 2.91244343e-06 + syst_JES_MJB_Stat8: 4.30419411e-06 + syst_JES_MJB_Stat9: 1.00444978e-05 + syst_JES_MJB_Threshold: 1.30222715e-04 + syst_JES_Pileup_MuOffset: 2.37541044e-04 + syst_JES_Pileup_NPVOffset: 2.46322837e-04 + syst_JES_Pileup_Pt_term: 1.88076919e-04 + syst_JES_PunchThrough_MC15: 3.76224325e-04 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.00047355558279889385 - syst_JES_Zjet_MuScale: 3.4177376654740487e-05 - syst_JES_Zjet_MuSmearID: 6.947828635624226e-06 - syst_JES_Zjet_MuSmearMS: 0.00012974663617990254 - syst_JES_Zjet_OOC: 0.00027178470799513356 - syst_JES_Zjet_Stat1: 1.778430768964595e-05 - syst_JES_Zjet_Stat10: 2.2633716000692416e-05 - syst_JES_Zjet_Stat11: 3.058167261612746e-05 - syst_JES_Zjet_Stat12: 8.568493624902804e-05 - syst_JES_Zjet_Stat13: 0.0001389496738931042 - syst_JES_Zjet_Stat2: 1.192690186091993e-07 - syst_JES_Zjet_Stat3: 9.608653638777911e-06 - syst_JES_Zjet_Stat4: 9.920238202785255e-06 - syst_JES_Zjet_Stat5: 1.1534356538186255e-05 - syst_JES_Zjet_Stat6: 1.0831062413263068e-05 - syst_JES_Zjet_Stat7: 9.20752804774441e-06 - syst_JES_Zjet_Stat8: 1.029901126322328e-05 - syst_JES_Zjet_Stat9: 1.4323732640272227e-05 - syst_JES_Zjet_Veto: 5.612503608016657e-05 - syst_JES_Zjet_dPhi: 5.042718983841952e-05 - syst_PRW: 6.801e-05 - syst_Unfolding_bias: 1.784e-16 - syst_cleaning: 0.00025772916016624897 - syst_lumi: 0.0008612 + syst_JES_Zjet_MC: 4.73555583e-04 + syst_JES_Zjet_MuScale: 3.41773767e-05 + syst_JES_Zjet_MuSmearID: 6.94782864e-06 + syst_JES_Zjet_MuSmearMS: 1.29746636e-04 + syst_JES_Zjet_OOC: 2.71784708e-04 + syst_JES_Zjet_Stat1: 1.77843077e-05 + syst_JES_Zjet_Stat10: 2.26337160e-05 + syst_JES_Zjet_Stat11: 3.05816726e-05 + syst_JES_Zjet_Stat12: 8.56849362e-05 + syst_JES_Zjet_Stat13: 1.38949674e-04 + syst_JES_Zjet_Stat2: 1.19269019e-07 + syst_JES_Zjet_Stat3: 9.60865364e-06 + syst_JES_Zjet_Stat4: 9.92023820e-06 + syst_JES_Zjet_Stat5: 1.15343565e-05 + syst_JES_Zjet_Stat6: 1.08310624e-05 + syst_JES_Zjet_Stat7: 9.20752805e-06 + syst_JES_Zjet_Stat8: 1.02990113e-05 + syst_JES_Zjet_Stat9: 1.43237326e-05 + syst_JES_Zjet_Veto: 5.61250361e-05 + syst_JES_Zjet_dPhi: 5.04271898e-05 + syst_PRW: 6.80100000e-05 + syst_Unfolding_bias: 1.78400000e-16 + syst_cleaning: 2.57729160e-04 + syst_lumi: 8.61200000e-04 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.00012287978108704457 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 2.8748350822264566e-05 - syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 3.4061654393173565e-05 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.22879781e-04 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 2.87483508e-05 + syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 3.40616544e-05 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 4.002488725780498e-05 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.00011466438799819236 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.00031080100948999503 -- stat: 0.00033448 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 4.00248873e-05 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.14664388e-04 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 3.10801009e-04 +- stat: 3.34480000e-04 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.00029345069006563945 - syst_JER_NP1: 5.923885295986073e-05 - syst_JER_NP2: 0.00024182475059430952 - syst_JER_NP3: 2.5941755930352905e-05 - syst_JER_NP4: 1.178203063991942e-13 - syst_JER_NP5: 2.3428189750810882e-05 - syst_JER_NP6: 2.335093306486916e-13 - syst_JER_NP7: 2.790103044692077e-13 - syst_JER_NP8: 6.250393907586945e-06 - syst_JES_EtaIntercalibration_Modelling: 0.002136365839457278 - syst_JES_EtaIntercalibration_NonClosure: 1.957414243332259e-07 - syst_JES_EtaIntercalibration_Stat0: 6.065641928106209e-22 + syst_JER_NP0: 2.93450690e-04 + syst_JER_NP1: 5.92388530e-05 + syst_JER_NP2: 2.41824751e-04 + syst_JER_NP3: 2.59417559e-05 + syst_JER_NP4: 1.17820306e-13 + syst_JER_NP5: 2.34281898e-05 + syst_JER_NP6: 2.33509331e-13 + syst_JER_NP7: 2.79010304e-13 + syst_JER_NP8: 6.25039391e-06 + syst_JES_EtaIntercalibration_Modelling: 2.13636584e-03 + syst_JES_EtaIntercalibration_NonClosure: 1.95741424e-07 + syst_JES_EtaIntercalibration_Stat0: 6.06564193e-22 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 4.99315019572564e-18 - syst_JES_EtaIntercalibration_Stat101: 9.77893464289439e-14 - syst_JES_EtaIntercalibration_Stat102: 3.363037930205367e-08 - syst_JES_EtaIntercalibration_Stat103: 2.124443999614958e-08 - syst_JES_EtaIntercalibration_Stat104: 1.2968729855598813e-14 - syst_JES_EtaIntercalibration_Stat105: 1.074111432766638e-21 - syst_JES_EtaIntercalibration_Stat106: 6.065641928106209e-22 - syst_JES_EtaIntercalibration_Stat107: 6.065641928106209e-22 - syst_JES_EtaIntercalibration_Stat108: 6.065641928106209e-22 - syst_JES_EtaIntercalibration_Stat109: 6.065641928106209e-22 + syst_JES_EtaIntercalibration_Stat100: 4.99315020e-18 + syst_JES_EtaIntercalibration_Stat101: 9.77893464e-14 + syst_JES_EtaIntercalibration_Stat102: 3.36303793e-08 + syst_JES_EtaIntercalibration_Stat103: 2.12444400e-08 + syst_JES_EtaIntercalibration_Stat104: 1.29687299e-14 + syst_JES_EtaIntercalibration_Stat105: 1.07411143e-21 + syst_JES_EtaIntercalibration_Stat106: 6.06564193e-22 + syst_JES_EtaIntercalibration_Stat107: 6.06564193e-22 + syst_JES_EtaIntercalibration_Stat108: 6.06564193e-22 + syst_JES_EtaIntercalibration_Stat109: 6.06564193e-22 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 3.070585688024354e-20 - syst_JES_EtaIntercalibration_Stat111: 6.28266287094891e-14 - syst_JES_EtaIntercalibration_Stat112: 9.880034199778866e-08 - syst_JES_EtaIntercalibration_Stat113: 1.0040933960203541e-07 - syst_JES_EtaIntercalibration_Stat114: 1.4506362908958908e-08 - syst_JES_EtaIntercalibration_Stat115: 1.1822279796641382e-14 - syst_JES_EtaIntercalibration_Stat116: 1.0541982132464465e-19 - syst_JES_EtaIntercalibration_Stat117: 6.065641928106209e-22 - syst_JES_EtaIntercalibration_Stat118: 6.065641928106209e-22 - syst_JES_EtaIntercalibration_Stat119: 6.065641928106209e-22 + syst_JES_EtaIntercalibration_Stat110: 3.07058569e-20 + syst_JES_EtaIntercalibration_Stat111: 6.28266287e-14 + syst_JES_EtaIntercalibration_Stat112: 9.88003420e-08 + syst_JES_EtaIntercalibration_Stat113: 1.00409340e-07 + syst_JES_EtaIntercalibration_Stat114: 1.45063629e-08 + syst_JES_EtaIntercalibration_Stat115: 1.18222798e-14 + syst_JES_EtaIntercalibration_Stat116: 1.05419821e-19 + syst_JES_EtaIntercalibration_Stat117: 6.06564193e-22 + syst_JES_EtaIntercalibration_Stat118: 6.06564193e-22 + syst_JES_EtaIntercalibration_Stat119: 6.06564193e-22 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 3.3675397826157896e-17 - syst_JES_EtaIntercalibration_Stat121: 2.7785842492175754e-08 - syst_JES_EtaIntercalibration_Stat122: 4.828764438238834e-08 - syst_JES_EtaIntercalibration_Stat123: 3.3107982704326764e-08 - syst_JES_EtaIntercalibration_Stat124: 2.929342246989928e-08 - syst_JES_EtaIntercalibration_Stat125: 4.2911558757518933e-19 - syst_JES_EtaIntercalibration_Stat126: 6.065641928106209e-22 - syst_JES_EtaIntercalibration_Stat127: 6.065641928106209e-22 - syst_JES_EtaIntercalibration_Stat128: 6.065641928106209e-22 - syst_JES_EtaIntercalibration_Stat129: 2.045343364816773e-14 + syst_JES_EtaIntercalibration_Stat120: 3.36753978e-17 + syst_JES_EtaIntercalibration_Stat121: 2.77858425e-08 + syst_JES_EtaIntercalibration_Stat122: 4.82876444e-08 + syst_JES_EtaIntercalibration_Stat123: 3.31079827e-08 + syst_JES_EtaIntercalibration_Stat124: 2.92934225e-08 + syst_JES_EtaIntercalibration_Stat125: 4.29115588e-19 + syst_JES_EtaIntercalibration_Stat126: 6.06564193e-22 + syst_JES_EtaIntercalibration_Stat127: 6.06564193e-22 + syst_JES_EtaIntercalibration_Stat128: 6.06564193e-22 + syst_JES_EtaIntercalibration_Stat129: 2.04534336e-14 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 7.302286929982141e-08 - syst_JES_EtaIntercalibration_Stat131: 1.290089464920941e-07 - syst_JES_EtaIntercalibration_Stat132: 2.1580154123638693e-07 - syst_JES_EtaIntercalibration_Stat133: 1.04052021003919e-07 - syst_JES_EtaIntercalibration_Stat134: 4.7189723587972614e-08 - syst_JES_EtaIntercalibration_Stat135: 1.0562045824555015e-19 + syst_JES_EtaIntercalibration_Stat130: 7.30228693e-08 + syst_JES_EtaIntercalibration_Stat131: 1.29008946e-07 + syst_JES_EtaIntercalibration_Stat132: 2.15801541e-07 + syst_JES_EtaIntercalibration_Stat133: 1.04052021e-07 + syst_JES_EtaIntercalibration_Stat134: 4.71897236e-08 + syst_JES_EtaIntercalibration_Stat135: 1.05620458e-19 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 syst_JES_EtaIntercalibration_Stat138: 0.0 - syst_JES_EtaIntercalibration_Stat139: 1.6697512292254798e-13 - syst_JES_EtaIntercalibration_Stat14: 5.028265153846152e-18 - syst_JES_EtaIntercalibration_Stat140: 5.339714107515495e-08 - syst_JES_EtaIntercalibration_Stat141: 2.3780014192594585e-07 - syst_JES_EtaIntercalibration_Stat142: 8.697709238644392e-08 - syst_JES_EtaIntercalibration_Stat143: 4.907884068516696e-08 - syst_JES_EtaIntercalibration_Stat144: 8.126235097971261e-16 + syst_JES_EtaIntercalibration_Stat139: 1.66975123e-13 + syst_JES_EtaIntercalibration_Stat14: 5.02826515e-18 + syst_JES_EtaIntercalibration_Stat140: 5.33971411e-08 + syst_JES_EtaIntercalibration_Stat141: 2.37800142e-07 + syst_JES_EtaIntercalibration_Stat142: 8.69770924e-08 + syst_JES_EtaIntercalibration_Stat143: 4.90788407e-08 + syst_JES_EtaIntercalibration_Stat144: 8.12623510e-16 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 3.414278294164083e-15 - syst_JES_EtaIntercalibration_Stat148: 7.893331326089052e-08 - syst_JES_EtaIntercalibration_Stat149: 1.3948885932216954e-07 - syst_JES_EtaIntercalibration_Stat15: 5.015674677371629e-18 - syst_JES_EtaIntercalibration_Stat150: 8.902210736665358e-08 - syst_JES_EtaIntercalibration_Stat151: 1.0511890695778758e-07 - syst_JES_EtaIntercalibration_Stat152: 2.7880254876883746e-14 + syst_JES_EtaIntercalibration_Stat147: 3.41427829e-15 + syst_JES_EtaIntercalibration_Stat148: 7.89333133e-08 + syst_JES_EtaIntercalibration_Stat149: 1.39488859e-07 + syst_JES_EtaIntercalibration_Stat15: 5.01567468e-18 + syst_JES_EtaIntercalibration_Stat150: 8.90221074e-08 + syst_JES_EtaIntercalibration_Stat151: 1.05118907e-07 + syst_JES_EtaIntercalibration_Stat152: 2.78802549e-14 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 syst_JES_EtaIntercalibration_Stat156: 0.0 - syst_JES_EtaIntercalibration_Stat157: 4.9980114165535876e-14 - syst_JES_EtaIntercalibration_Stat158: 3.729172927071095e-07 - syst_JES_EtaIntercalibration_Stat159: 1.6782875222976546e-07 - syst_JES_EtaIntercalibration_Stat16: 4.994643236800824e-18 - syst_JES_EtaIntercalibration_Stat160: 1.0498744591616657e-07 - syst_JES_EtaIntercalibration_Stat161: 4.716382379536248e-08 - syst_JES_EtaIntercalibration_Stat162: 8.063843116498485e-16 + syst_JES_EtaIntercalibration_Stat157: 4.99801142e-14 + syst_JES_EtaIntercalibration_Stat158: 3.72917293e-07 + syst_JES_EtaIntercalibration_Stat159: 1.67828752e-07 + syst_JES_EtaIntercalibration_Stat16: 4.99464324e-18 + syst_JES_EtaIntercalibration_Stat160: 1.04987446e-07 + syst_JES_EtaIntercalibration_Stat161: 4.71638238e-08 + syst_JES_EtaIntercalibration_Stat162: 8.06384312e-16 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 7.79779206442439e-15 - syst_JES_EtaIntercalibration_Stat166: 2.4785339921009756e-07 - syst_JES_EtaIntercalibration_Stat167: 2.854441873203937e-07 - syst_JES_EtaIntercalibration_Stat168: 5.9438345962434046e-08 - syst_JES_EtaIntercalibration_Stat169: 6.927182188126714e-07 - syst_JES_EtaIntercalibration_Stat17: 4.971851843126462e-22 - syst_JES_EtaIntercalibration_Stat170: 4.718070460858463e-08 + syst_JES_EtaIntercalibration_Stat165: 7.79779206e-15 + syst_JES_EtaIntercalibration_Stat166: 2.47853399e-07 + syst_JES_EtaIntercalibration_Stat167: 2.85444187e-07 + syst_JES_EtaIntercalibration_Stat168: 5.94383460e-08 + syst_JES_EtaIntercalibration_Stat169: 6.92718219e-07 + syst_JES_EtaIntercalibration_Stat17: 4.97185184e-22 + syst_JES_EtaIntercalibration_Stat170: 4.71807046e-08 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 - syst_JES_EtaIntercalibration_Stat175: 7.108953912657474e-10 - syst_JES_EtaIntercalibration_Stat176: 2.954844163403546e-07 - syst_JES_EtaIntercalibration_Stat177: 7.026074348453765e-07 - syst_JES_EtaIntercalibration_Stat178: 4.1216873668438265e-07 - syst_JES_EtaIntercalibration_Stat179: 2.188109729309753e-07 + syst_JES_EtaIntercalibration_Stat175: 7.10895391e-10 + syst_JES_EtaIntercalibration_Stat176: 2.95484416e-07 + syst_JES_EtaIntercalibration_Stat177: 7.02607435e-07 + syst_JES_EtaIntercalibration_Stat178: 4.12168737e-07 + syst_JES_EtaIntercalibration_Stat179: 2.18810973e-07 syst_JES_EtaIntercalibration_Stat18: 0.0 - syst_JES_EtaIntercalibration_Stat180: 2.1979724748522768e-08 + syst_JES_EtaIntercalibration_Stat180: 2.19797247e-08 syst_JES_EtaIntercalibration_Stat181: 0.0 - syst_JES_EtaIntercalibration_Stat182: 5.697314474482113e-10 - syst_JES_EtaIntercalibration_Stat183: 8.04263974078163e-07 - syst_JES_EtaIntercalibration_Stat184: 1.9567454484423875e-06 - syst_JES_EtaIntercalibration_Stat185: 2.683117776021023e-06 - syst_JES_EtaIntercalibration_Stat186: 6.120387079262225e-07 - syst_JES_EtaIntercalibration_Stat187: 7.649066783120573e-09 + syst_JES_EtaIntercalibration_Stat182: 5.69731447e-10 + syst_JES_EtaIntercalibration_Stat183: 8.04263974e-07 + syst_JES_EtaIntercalibration_Stat184: 1.95674545e-06 + syst_JES_EtaIntercalibration_Stat185: 2.68311778e-06 + syst_JES_EtaIntercalibration_Stat186: 6.12038708e-07 + syst_JES_EtaIntercalibration_Stat187: 7.64906678e-09 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 - syst_JES_EtaIntercalibration_Stat192: 1.1216812782604513e-09 - syst_JES_EtaIntercalibration_Stat193: 8.311656453439352e-07 - syst_JES_EtaIntercalibration_Stat194: 5.292668325145644e-06 - syst_JES_EtaIntercalibration_Stat195: 3.4675987008303023e-06 - syst_JES_EtaIntercalibration_Stat196: 1.1958436383992684e-06 - syst_JES_EtaIntercalibration_Stat197: 1.872303415581994e-08 - syst_JES_EtaIntercalibration_Stat198: 1.042447201300862e-06 - syst_JES_EtaIntercalibration_Stat199: 4.375584846623363e-06 + syst_JES_EtaIntercalibration_Stat192: 1.12168128e-09 + syst_JES_EtaIntercalibration_Stat193: 8.31165645e-07 + syst_JES_EtaIntercalibration_Stat194: 5.29266833e-06 + syst_JES_EtaIntercalibration_Stat195: 3.46759870e-06 + syst_JES_EtaIntercalibration_Stat196: 1.19584364e-06 + syst_JES_EtaIntercalibration_Stat197: 1.87230342e-08 + syst_JES_EtaIntercalibration_Stat198: 1.04244720e-06 + syst_JES_EtaIntercalibration_Stat199: 4.37558485e-06 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 8.684723297261691e-06 - syst_JES_EtaIntercalibration_Stat201: 1.7894945515424183e-06 - syst_JES_EtaIntercalibration_Stat202: 3.746790993637089e-08 + syst_JES_EtaIntercalibration_Stat200: 8.68472330e-06 + syst_JES_EtaIntercalibration_Stat201: 1.78949455e-06 + syst_JES_EtaIntercalibration_Stat202: 3.74679099e-08 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 - syst_JES_EtaIntercalibration_Stat207: 9.057969198446194e-08 - syst_JES_EtaIntercalibration_Stat208: 3.417875656017931e-06 - syst_JES_EtaIntercalibration_Stat209: 8.907697850735621e-06 + syst_JES_EtaIntercalibration_Stat207: 9.05796920e-08 + syst_JES_EtaIntercalibration_Stat208: 3.41787566e-06 + syst_JES_EtaIntercalibration_Stat209: 8.90769785e-06 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 5.522052335862093e-06 - syst_JES_EtaIntercalibration_Stat211: 2.3971806606928897e-06 - syst_JES_EtaIntercalibration_Stat212: 4.504422937513749e-06 - syst_JES_EtaIntercalibration_Stat213: 9.761157052317108e-06 - syst_JES_EtaIntercalibration_Stat214: 1.7481420851864416e-06 - syst_JES_EtaIntercalibration_Stat215: 4.446976763959983e-08 + syst_JES_EtaIntercalibration_Stat210: 5.52205234e-06 + syst_JES_EtaIntercalibration_Stat211: 2.39718066e-06 + syst_JES_EtaIntercalibration_Stat212: 4.50442294e-06 + syst_JES_EtaIntercalibration_Stat213: 9.76115705e-06 + syst_JES_EtaIntercalibration_Stat214: 1.74814209e-06 + syst_JES_EtaIntercalibration_Stat215: 4.44697676e-08 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 syst_JES_EtaIntercalibration_Stat219: 0.0 - syst_JES_EtaIntercalibration_Stat22: 6.065641928106209e-22 - syst_JES_EtaIntercalibration_Stat220: 9.845503440657566e-08 - syst_JES_EtaIntercalibration_Stat221: 2.9291596064400455e-06 - syst_JES_EtaIntercalibration_Stat222: 8.89591213704362e-06 - syst_JES_EtaIntercalibration_Stat223: 7.628090390130416e-06 - syst_JES_EtaIntercalibration_Stat224: 1.5960265505310367e-05 - syst_JES_EtaIntercalibration_Stat225: 3.0153412327628862e-05 - syst_JES_EtaIntercalibration_Stat226: 5.781403008786016e-06 - syst_JES_EtaIntercalibration_Stat227: 9.3472569238253e-08 + syst_JES_EtaIntercalibration_Stat22: 6.06564193e-22 + syst_JES_EtaIntercalibration_Stat220: 9.84550344e-08 + syst_JES_EtaIntercalibration_Stat221: 2.92915961e-06 + syst_JES_EtaIntercalibration_Stat222: 8.89591214e-06 + syst_JES_EtaIntercalibration_Stat223: 7.62809039e-06 + syst_JES_EtaIntercalibration_Stat224: 1.59602655e-05 + syst_JES_EtaIntercalibration_Stat225: 3.01534123e-05 + syst_JES_EtaIntercalibration_Stat226: 5.78140301e-06 + syst_JES_EtaIntercalibration_Stat227: 9.34725692e-08 syst_JES_EtaIntercalibration_Stat228: 0.0 syst_JES_EtaIntercalibration_Stat229: 0.0 - syst_JES_EtaIntercalibration_Stat23: 6.065641928106209e-22 + syst_JES_EtaIntercalibration_Stat23: 6.06564193e-22 syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 - syst_JES_EtaIntercalibration_Stat232: 4.5768730318854157e-07 - syst_JES_EtaIntercalibration_Stat233: 7.964520512874581e-06 - syst_JES_EtaIntercalibration_Stat234: 2.4722623242690087e-05 - syst_JES_EtaIntercalibration_Stat235: 2.5427451209273807e-05 - syst_JES_EtaIntercalibration_Stat236: 5.7214203656085255e-06 - syst_JES_EtaIntercalibration_Stat237: 1.2244011546466296e-06 - syst_JES_EtaIntercalibration_Stat238: 3.141940164929943e-08 + syst_JES_EtaIntercalibration_Stat232: 4.57687303e-07 + syst_JES_EtaIntercalibration_Stat233: 7.96452051e-06 + syst_JES_EtaIntercalibration_Stat234: 2.47226232e-05 + syst_JES_EtaIntercalibration_Stat235: 2.54274512e-05 + syst_JES_EtaIntercalibration_Stat236: 5.72142037e-06 + syst_JES_EtaIntercalibration_Stat237: 1.22440115e-06 + syst_JES_EtaIntercalibration_Stat238: 3.14194016e-08 syst_JES_EtaIntercalibration_Stat239: 0.0 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 - syst_JES_EtaIntercalibration_Stat243: 3.15621917033656e-08 - syst_JES_EtaIntercalibration_Stat244: 8.419008062117533e-07 - syst_JES_EtaIntercalibration_Stat245: 7.961253230490786e-06 - syst_JES_EtaIntercalibration_Stat25: 4.349179577805451e-22 - syst_JES_EtaIntercalibration_Stat26: 2.6391045829978013e-20 - syst_JES_EtaIntercalibration_Stat27: 4.9263897450364196e-18 - syst_JES_EtaIntercalibration_Stat28: 4.71897242489018e-08 - syst_JES_EtaIntercalibration_Stat29: 5.197511549530217e-18 + syst_JES_EtaIntercalibration_Stat243: 3.15621917e-08 + syst_JES_EtaIntercalibration_Stat244: 8.41900806e-07 + syst_JES_EtaIntercalibration_Stat245: 7.96125323e-06 + syst_JES_EtaIntercalibration_Stat25: 4.34917958e-22 + syst_JES_EtaIntercalibration_Stat26: 2.63910458e-20 + syst_JES_EtaIntercalibration_Stat27: 4.92638975e-18 + syst_JES_EtaIntercalibration_Stat28: 4.71897242e-08 + syst_JES_EtaIntercalibration_Stat29: 5.19751155e-18 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 2.7938052166892377e-21 + syst_JES_EtaIntercalibration_Stat30: 2.79380522e-21 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 8.907152785823311e-22 - syst_JES_EtaIntercalibration_Stat36: 4.905397845669605e-18 - syst_JES_EtaIntercalibration_Stat37: 2.3945602416834526e-09 - syst_JES_EtaIntercalibration_Stat38: 2.394560241690756e-09 - syst_JES_EtaIntercalibration_Stat39: 4.744509879850605e-19 - syst_JES_EtaIntercalibration_Stat4: 5.9634509304596445e-22 - syst_JES_EtaIntercalibration_Stat40: 6.218928424576055e-22 + syst_JES_EtaIntercalibration_Stat35: 8.90715279e-22 + syst_JES_EtaIntercalibration_Stat36: 4.90539785e-18 + syst_JES_EtaIntercalibration_Stat37: 2.39456024e-09 + syst_JES_EtaIntercalibration_Stat38: 2.39456024e-09 + syst_JES_EtaIntercalibration_Stat39: 4.74450988e-19 + syst_JES_EtaIntercalibration_Stat4: 5.96345093e-22 + syst_JES_EtaIntercalibration_Stat40: 6.21892842e-22 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 - syst_JES_EtaIntercalibration_Stat44: 6.065641928106209e-22 + syst_JES_EtaIntercalibration_Stat44: 6.06564193e-22 syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 - syst_JES_EtaIntercalibration_Stat47: 4.35091162861302e-22 - syst_JES_EtaIntercalibration_Stat48: 3.501288155807802e-19 - syst_JES_EtaIntercalibration_Stat49: 1.234161394429432e-17 - syst_JES_EtaIntercalibration_Stat5: 4.6215081953838404e-20 - syst_JES_EtaIntercalibration_Stat50: 4.718106399697533e-08 - syst_JES_EtaIntercalibration_Stat51: 1.1722486233767593e-14 - syst_JES_EtaIntercalibration_Stat52: 3.578930212717203e-20 + syst_JES_EtaIntercalibration_Stat47: 4.35091163e-22 + syst_JES_EtaIntercalibration_Stat48: 3.50128816e-19 + syst_JES_EtaIntercalibration_Stat49: 1.23416139e-17 + syst_JES_EtaIntercalibration_Stat5: 4.62150820e-20 + syst_JES_EtaIntercalibration_Stat50: 4.71810640e-08 + syst_JES_EtaIntercalibration_Stat51: 1.17224862e-14 + syst_JES_EtaIntercalibration_Stat52: 3.57893021e-20 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 syst_JES_EtaIntercalibration_Stat56: 0.0 - syst_JES_EtaIntercalibration_Stat57: 5.0283684991636566e-18 - syst_JES_EtaIntercalibration_Stat58: 4.487006845325734e-18 - syst_JES_EtaIntercalibration_Stat59: 2.8067889488326165e-08 - syst_JES_EtaIntercalibration_Stat6: 2.845687738930609e-19 - syst_JES_EtaIntercalibration_Stat60: 2.392828212601489e-09 - syst_JES_EtaIntercalibration_Stat61: 7.83995412661962e-18 - syst_JES_EtaIntercalibration_Stat62: 5.071444764561672e-22 + syst_JES_EtaIntercalibration_Stat57: 5.02836850e-18 + syst_JES_EtaIntercalibration_Stat58: 4.48700685e-18 + syst_JES_EtaIntercalibration_Stat59: 2.80678895e-08 + syst_JES_EtaIntercalibration_Stat6: 2.84568774e-19 + syst_JES_EtaIntercalibration_Stat60: 2.39282821e-09 + syst_JES_EtaIntercalibration_Stat61: 7.83995413e-18 + syst_JES_EtaIntercalibration_Stat62: 5.07144476e-22 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 - syst_JES_EtaIntercalibration_Stat69: 6.627926598869364e-22 - syst_JES_EtaIntercalibration_Stat7: 3.595373442008493e-20 - syst_JES_EtaIntercalibration_Stat70: 6.084349842012702e-18 - syst_JES_EtaIntercalibration_Stat71: 1.1604740409452855e-07 - syst_JES_EtaIntercalibration_Stat72: 3.295745990420763e-08 - syst_JES_EtaIntercalibration_Stat73: 4.718106396684054e-08 - syst_JES_EtaIntercalibration_Stat74: 5.905024364894696e-19 + syst_JES_EtaIntercalibration_Stat69: 6.62792660e-22 + syst_JES_EtaIntercalibration_Stat7: 3.59537344e-20 + syst_JES_EtaIntercalibration_Stat70: 6.08434984e-18 + syst_JES_EtaIntercalibration_Stat71: 1.16047404e-07 + syst_JES_EtaIntercalibration_Stat72: 3.29574599e-08 + syst_JES_EtaIntercalibration_Stat73: 4.71810640e-08 + syst_JES_EtaIntercalibration_Stat74: 5.90502436e-19 syst_JES_EtaIntercalibration_Stat75: 0.0 syst_JES_EtaIntercalibration_Stat76: 0.0 syst_JES_EtaIntercalibration_Stat77: 0.0 syst_JES_EtaIntercalibration_Stat78: 0.0 - syst_JES_EtaIntercalibration_Stat79: 4.956830685233761e-18 + syst_JES_EtaIntercalibration_Stat79: 4.95683069e-18 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 6.758972314634821e-14 - syst_JES_EtaIntercalibration_Stat81: 3.3630637817323656e-08 - syst_JES_EtaIntercalibration_Stat82: 2.1484173407417843e-08 - syst_JES_EtaIntercalibration_Stat83: 8.342228284457336e-16 - syst_JES_EtaIntercalibration_Stat84: 4.0112412044154114e-22 - syst_JES_EtaIntercalibration_Stat85: 6.065641928106209e-22 - syst_JES_EtaIntercalibration_Stat86: 6.065641928106209e-22 - syst_JES_EtaIntercalibration_Stat87: 6.065641928106209e-22 - syst_JES_EtaIntercalibration_Stat88: 6.065641928106209e-22 - syst_JES_EtaIntercalibration_Stat89: 6.065641928106209e-22 + syst_JES_EtaIntercalibration_Stat80: 6.75897231e-14 + syst_JES_EtaIntercalibration_Stat81: 3.36306378e-08 + syst_JES_EtaIntercalibration_Stat82: 2.14841734e-08 + syst_JES_EtaIntercalibration_Stat83: 8.34222828e-16 + syst_JES_EtaIntercalibration_Stat84: 4.01124120e-22 + syst_JES_EtaIntercalibration_Stat85: 6.06564193e-22 + syst_JES_EtaIntercalibration_Stat86: 6.06564193e-22 + syst_JES_EtaIntercalibration_Stat87: 6.06564193e-22 + syst_JES_EtaIntercalibration_Stat88: 6.06564193e-22 + syst_JES_EtaIntercalibration_Stat89: 6.06564193e-22 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 1.2866146723378372e-15 - syst_JES_EtaIntercalibration_Stat92: 1.1604740068083002e-07 - syst_JES_EtaIntercalibration_Stat93: 3.296437983575465e-08 - syst_JES_EtaIntercalibration_Stat94: 4.718106378449889e-08 - syst_JES_EtaIntercalibration_Stat95: 4.660220883177105e-18 - syst_JES_EtaIntercalibration_Stat96: 1.0541982132464465e-19 - syst_JES_EtaIntercalibration_Stat97: 6.065641928106209e-22 - syst_JES_EtaIntercalibration_Stat98: 6.065641928106209e-22 - syst_JES_EtaIntercalibration_Stat99: 6.065641928106209e-22 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0002289925053358734 - syst_JES_Flavour_Comp: 0.0005955537822061077 - syst_JES_Gjet_Generator: 0.0007517484020601574 - syst_JES_Gjet_OOC: 0.0006204376257932781 - syst_JES_Gjet_Purity: 0.00010420597619618561 - syst_JES_Gjet_Stat1: 1.6729166984640926e-06 - syst_JES_Gjet_Stat10: 1.128206562425516e-05 - syst_JES_Gjet_Stat11: 1.1817458387910658e-05 - syst_JES_Gjet_Stat12: 3.418566366183345e-05 - syst_JES_Gjet_Stat13: 0.00012012797634189965 - syst_JES_Gjet_Stat14: 0.0003342996672149106 - syst_JES_Gjet_Stat15: 0.00041363431322244046 - syst_JES_Gjet_Stat2: 3.548106079299052e-07 - syst_JES_Gjet_Stat3: 1.9830068154194526e-06 - syst_JES_Gjet_Stat4: 2.054152562493838e-06 - syst_JES_Gjet_Stat5: 4.202799657469976e-13 - syst_JES_Gjet_Stat6: 6.953560436927258e-06 - syst_JES_Gjet_Stat7: 6.615332247892013e-06 - syst_JES_Gjet_Stat8: 4.1205907671109495e-06 - syst_JES_Gjet_Stat9: 7.256513418991245e-06 - syst_JES_Gjet_Veto: 0.0006270330992060946 - syst_JES_Gjet_dPhi: 5.956381703685553e-05 - syst_JES_LArESZee: 0.0011522619233490276 - syst_JES_LArEsmear: 9.467664482331425e-05 - syst_JES_LAr_JVT: 0.00011747939255460933 - syst_JES_MJB_Alpha: 7.283104901070697e-06 - syst_JES_MJB_Asym: 0.00013118301747939783 - syst_JES_MJB_Beta: 8.11845065267998e-06 - syst_JES_MJB_Stat1: 1.874125166364296e-08 - syst_JES_MJB_Stat10: 1.2256588462945145e-05 - syst_JES_MJB_Stat11: 1.2912509157789589e-05 - syst_JES_MJB_Stat12: 1.8955739895873232e-05 - syst_JES_MJB_Stat13: 1.310325603619192e-05 - syst_JES_MJB_Stat14: 1.1745416840197711e-05 - syst_JES_MJB_Stat15: 1.1373410867017862e-05 - syst_JES_MJB_Stat16: 7.783410306543012e-06 - syst_JES_MJB_Stat2: 5.656809033074654e-07 - syst_JES_MJB_Stat3: 2.2629243800887383e-07 - syst_JES_MJB_Stat4: 1.8732129483857407e-07 + syst_JES_EtaIntercalibration_Stat91: 1.28661467e-15 + syst_JES_EtaIntercalibration_Stat92: 1.16047401e-07 + syst_JES_EtaIntercalibration_Stat93: 3.29643798e-08 + syst_JES_EtaIntercalibration_Stat94: 4.71810638e-08 + syst_JES_EtaIntercalibration_Stat95: 4.66022088e-18 + syst_JES_EtaIntercalibration_Stat96: 1.05419821e-19 + syst_JES_EtaIntercalibration_Stat97: 6.06564193e-22 + syst_JES_EtaIntercalibration_Stat98: 6.06564193e-22 + syst_JES_EtaIntercalibration_Stat99: 6.06564193e-22 + syst_JES_EtaIntercalibration_TotalStat_MJB: 2.28992505e-04 + syst_JES_Flavour_Comp: 5.95553782e-04 + syst_JES_Gjet_Generator: 7.51748402e-04 + syst_JES_Gjet_OOC: 6.20437626e-04 + syst_JES_Gjet_Purity: 1.04205976e-04 + syst_JES_Gjet_Stat1: 1.67291670e-06 + syst_JES_Gjet_Stat10: 1.12820656e-05 + syst_JES_Gjet_Stat11: 1.18174584e-05 + syst_JES_Gjet_Stat12: 3.41856637e-05 + syst_JES_Gjet_Stat13: 1.20127976e-04 + syst_JES_Gjet_Stat14: 3.34299667e-04 + syst_JES_Gjet_Stat15: 4.13634313e-04 + syst_JES_Gjet_Stat2: 3.54810608e-07 + syst_JES_Gjet_Stat3: 1.98300682e-06 + syst_JES_Gjet_Stat4: 2.05415256e-06 + syst_JES_Gjet_Stat5: 4.20279966e-13 + syst_JES_Gjet_Stat6: 6.95356044e-06 + syst_JES_Gjet_Stat7: 6.61533225e-06 + syst_JES_Gjet_Stat8: 4.12059077e-06 + syst_JES_Gjet_Stat9: 7.25651342e-06 + syst_JES_Gjet_Veto: 6.27033099e-04 + syst_JES_Gjet_dPhi: 5.95638170e-05 + syst_JES_LArESZee: 1.15226192e-03 + syst_JES_LArEsmear: 9.46766448e-05 + syst_JES_LAr_JVT: 1.17479393e-04 + syst_JES_MJB_Alpha: 7.28310490e-06 + syst_JES_MJB_Asym: 1.31183017e-04 + syst_JES_MJB_Beta: 8.11845065e-06 + syst_JES_MJB_Stat1: 1.87412517e-08 + syst_JES_MJB_Stat10: 1.22565885e-05 + syst_JES_MJB_Stat11: 1.29125092e-05 + syst_JES_MJB_Stat12: 1.89557399e-05 + syst_JES_MJB_Stat13: 1.31032560e-05 + syst_JES_MJB_Stat14: 1.17454168e-05 + syst_JES_MJB_Stat15: 1.13734109e-05 + syst_JES_MJB_Stat16: 7.78341031e-06 + syst_JES_MJB_Stat2: 5.65680903e-07 + syst_JES_MJB_Stat3: 2.26292438e-07 + syst_JES_MJB_Stat4: 1.87321295e-07 syst_JES_MJB_Stat5: 0.0 - syst_JES_MJB_Stat6: 1.382176544439964e-06 - syst_JES_MJB_Stat7: 1.7900745096224345e-06 - syst_JES_MJB_Stat8: 2.4050037422008307e-06 - syst_JES_MJB_Stat9: 6.858272304305217e-06 - syst_JES_MJB_Threshold: 8.583981287840741e-05 - syst_JES_Pileup_MuOffset: 0.00014743137386594485 - syst_JES_Pileup_NPVOffset: 0.00015301532602978043 - syst_JES_Pileup_Pt_term: 0.0001061118221500319 - syst_JES_PunchThrough_MC15: 0.00029778292009448765 + syst_JES_MJB_Stat6: 1.38217654e-06 + syst_JES_MJB_Stat7: 1.79007451e-06 + syst_JES_MJB_Stat8: 2.40500374e-06 + syst_JES_MJB_Stat9: 6.85827230e-06 + syst_JES_MJB_Threshold: 8.58398129e-05 + syst_JES_Pileup_MuOffset: 1.47431374e-04 + syst_JES_Pileup_NPVOffset: 1.53015326e-04 + syst_JES_Pileup_Pt_term: 1.06111822e-04 + syst_JES_PunchThrough_MC15: 2.97782920e-04 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.0002798898488691578 - syst_JES_Zjet_MuScale: 2.147747832032429e-05 - syst_JES_Zjet_MuSmearID: 4.1887964858656e-06 - syst_JES_Zjet_MuSmearMS: 7.642521491628269e-05 - syst_JES_Zjet_OOC: 0.00016670755081879166 - syst_JES_Zjet_Stat1: 1.2633580994714049e-05 - syst_JES_Zjet_Stat10: 1.4416458476338771e-05 - syst_JES_Zjet_Stat11: 1.9263750932775267e-05 - syst_JES_Zjet_Stat12: 5.065287454824257e-05 - syst_JES_Zjet_Stat13: 8.066079019573266e-05 - syst_JES_Zjet_Stat2: 1.1417678923494232e-07 - syst_JES_Zjet_Stat3: 6.27433972621821e-06 - syst_JES_Zjet_Stat4: 6.909693390447944e-06 - syst_JES_Zjet_Stat5: 7.999008000996124e-06 - syst_JES_Zjet_Stat6: 6.405192502961952e-06 - syst_JES_Zjet_Stat7: 6.4652482357601715e-06 - syst_JES_Zjet_Stat8: 6.602788653288852e-06 - syst_JES_Zjet_Stat9: 9.084878920492005e-06 - syst_JES_Zjet_Veto: 3.1534544153990876e-05 - syst_JES_Zjet_dPhi: 2.8818443313267288e-05 - syst_PRW: 4.721e-05 - syst_Unfolding_bias: 4.014e-17 - syst_cleaning: 0.0001485233567490312 - syst_lumi: 0.0004975 + syst_JES_Zjet_MC: 2.79889849e-04 + syst_JES_Zjet_MuScale: 2.14774783e-05 + syst_JES_Zjet_MuSmearID: 4.18879649e-06 + syst_JES_Zjet_MuSmearMS: 7.64252149e-05 + syst_JES_Zjet_OOC: 1.66707551e-04 + syst_JES_Zjet_Stat1: 1.26335810e-05 + syst_JES_Zjet_Stat10: 1.44164585e-05 + syst_JES_Zjet_Stat11: 1.92637509e-05 + syst_JES_Zjet_Stat12: 5.06528745e-05 + syst_JES_Zjet_Stat13: 8.06607902e-05 + syst_JES_Zjet_Stat2: 1.14176789e-07 + syst_JES_Zjet_Stat3: 6.27433973e-06 + syst_JES_Zjet_Stat4: 6.90969339e-06 + syst_JES_Zjet_Stat5: 7.99900800e-06 + syst_JES_Zjet_Stat6: 6.40519250e-06 + syst_JES_Zjet_Stat7: 6.46524824e-06 + syst_JES_Zjet_Stat8: 6.60278865e-06 + syst_JES_Zjet_Stat9: 9.08487892e-06 + syst_JES_Zjet_Veto: 3.15345442e-05 + syst_JES_Zjet_dPhi: 2.88184433e-05 + syst_PRW: 4.72100000e-05 + syst_Unfolding_bias: 4.01400000e-17 + syst_cleaning: 1.48523357e-04 + syst_lumi: 4.97500000e-04 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 7.182251927494609e-05 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 3.10424076869047e-05 - syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.9379210510234927e-05 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 7.18225193e-05 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 3.10424077e-05 + syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.93792105e-05 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 4.3224076624029805e-05 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 6.691125521913335e-05 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.00018668038863255026 -- stat: 0.00022037 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 4.32240766e-05 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 6.69112552e-05 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.86680389e-04 +- stat: 2.20370000e-04 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.00017072682126719282 - syst_JER_NP1: 3.9363826033555226e-05 - syst_JER_NP2: 0.0001468469784333338 - syst_JER_NP3: 1.917230033146779e-05 - syst_JER_NP4: 1.815004958670912e-14 - syst_JER_NP5: 1.2651377276802713e-05 - syst_JER_NP6: 3.593688527126412e-14 - syst_JER_NP7: 4.28492497017159e-14 - syst_JER_NP8: 1.5538979591659161e-06 - syst_JES_EtaIntercalibration_Modelling: 0.0012284822536365756 - syst_JES_EtaIntercalibration_NonClosure: 4.6911645409215824e-08 - syst_JES_EtaIntercalibration_Stat0: 1.5311329138908874e-22 + syst_JER_NP0: 1.70726821e-04 + syst_JER_NP1: 3.93638260e-05 + syst_JER_NP2: 1.46846978e-04 + syst_JER_NP3: 1.91723003e-05 + syst_JER_NP4: 1.81500496e-14 + syst_JER_NP5: 1.26513773e-05 + syst_JER_NP6: 3.59368853e-14 + syst_JER_NP7: 4.28492497e-14 + syst_JER_NP8: 1.55389796e-06 + syst_JES_EtaIntercalibration_Modelling: 1.22848225e-03 + syst_JES_EtaIntercalibration_NonClosure: 4.69116454e-08 + syst_JES_EtaIntercalibration_Stat0: 1.53113291e-22 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 8.799451270545227e-19 - syst_JES_EtaIntercalibration_Stat101: 1.4020328767543223e-14 - syst_JES_EtaIntercalibration_Stat102: 1.5295206905024203e-08 - syst_JES_EtaIntercalibration_Stat103: 4.071875514735194e-09 - syst_JES_EtaIntercalibration_Stat104: 1.8683721863897994e-15 - syst_JES_EtaIntercalibration_Stat105: 2.858581355760231e-22 - syst_JES_EtaIntercalibration_Stat106: 1.5311329138908874e-22 - syst_JES_EtaIntercalibration_Stat107: 1.5311329138908874e-22 - syst_JES_EtaIntercalibration_Stat108: 1.5311329138908874e-22 - syst_JES_EtaIntercalibration_Stat109: 1.5311329138908874e-22 + syst_JES_EtaIntercalibration_Stat100: 8.79945127e-19 + syst_JES_EtaIntercalibration_Stat101: 1.40203288e-14 + syst_JES_EtaIntercalibration_Stat102: 1.52952069e-08 + syst_JES_EtaIntercalibration_Stat103: 4.07187551e-09 + syst_JES_EtaIntercalibration_Stat104: 1.86837219e-15 + syst_JES_EtaIntercalibration_Stat105: 2.85858136e-22 + syst_JES_EtaIntercalibration_Stat106: 1.53113291e-22 + syst_JES_EtaIntercalibration_Stat107: 1.53113291e-22 + syst_JES_EtaIntercalibration_Stat108: 1.53113291e-22 + syst_JES_EtaIntercalibration_Stat109: 1.53113291e-22 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 6.781900618558193e-21 - syst_JES_EtaIntercalibration_Stat111: 8.733300006297734e-15 - syst_JES_EtaIntercalibration_Stat112: 4.124022254833623e-08 - syst_JES_EtaIntercalibration_Stat113: 5.041042343192954e-08 - syst_JES_EtaIntercalibration_Stat114: 6.306336515237487e-09 - syst_JES_EtaIntercalibration_Stat115: 1.5679324019494589e-15 - syst_JES_EtaIntercalibration_Stat116: 1.68197565880128e-20 - syst_JES_EtaIntercalibration_Stat117: 1.5311329138908874e-22 - syst_JES_EtaIntercalibration_Stat118: 1.5311329138908874e-22 - syst_JES_EtaIntercalibration_Stat119: 1.5311329138908874e-22 + syst_JES_EtaIntercalibration_Stat110: 6.78190062e-21 + syst_JES_EtaIntercalibration_Stat111: 8.73330001e-15 + syst_JES_EtaIntercalibration_Stat112: 4.12402225e-08 + syst_JES_EtaIntercalibration_Stat113: 5.04104234e-08 + syst_JES_EtaIntercalibration_Stat114: 6.30633652e-09 + syst_JES_EtaIntercalibration_Stat115: 1.56793240e-15 + syst_JES_EtaIntercalibration_Stat116: 1.68197566e-20 + syst_JES_EtaIntercalibration_Stat117: 1.53113291e-22 + syst_JES_EtaIntercalibration_Stat118: 1.53113291e-22 + syst_JES_EtaIntercalibration_Stat119: 1.53113291e-22 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 5.510519644280383e-18 - syst_JES_EtaIntercalibration_Stat121: 1.3492356465792029e-08 - syst_JES_EtaIntercalibration_Stat122: 1.9785977022881634e-08 - syst_JES_EtaIntercalibration_Stat123: 2.7824818251877223e-09 - syst_JES_EtaIntercalibration_Stat124: 5.503642611943476e-09 - syst_JES_EtaIntercalibration_Stat125: 8.596168157964338e-20 - syst_JES_EtaIntercalibration_Stat126: 1.5311329138908874e-22 - syst_JES_EtaIntercalibration_Stat127: 1.5311329138908874e-22 - syst_JES_EtaIntercalibration_Stat128: 1.5311329138908874e-22 - syst_JES_EtaIntercalibration_Stat129: 3.0402108347941925e-15 + syst_JES_EtaIntercalibration_Stat120: 5.51051964e-18 + syst_JES_EtaIntercalibration_Stat121: 1.34923565e-08 + syst_JES_EtaIntercalibration_Stat122: 1.97859770e-08 + syst_JES_EtaIntercalibration_Stat123: 2.78248183e-09 + syst_JES_EtaIntercalibration_Stat124: 5.50364261e-09 + syst_JES_EtaIntercalibration_Stat125: 8.59616816e-20 + syst_JES_EtaIntercalibration_Stat126: 1.53113291e-22 + syst_JES_EtaIntercalibration_Stat127: 1.53113291e-22 + syst_JES_EtaIntercalibration_Stat128: 1.53113291e-22 + syst_JES_EtaIntercalibration_Stat129: 3.04021083e-15 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 8.43497708835507e-09 - syst_JES_EtaIntercalibration_Stat131: 6.042624181595278e-08 - syst_JES_EtaIntercalibration_Stat132: 9.300701818680136e-08 - syst_JES_EtaIntercalibration_Stat133: 4.309161824531541e-08 - syst_JES_EtaIntercalibration_Stat134: 2.5513108300746386e-08 - syst_JES_EtaIntercalibration_Stat135: 1.6870174865720865e-20 + syst_JES_EtaIntercalibration_Stat130: 8.43497709e-09 + syst_JES_EtaIntercalibration_Stat131: 6.04262418e-08 + syst_JES_EtaIntercalibration_Stat132: 9.30070182e-08 + syst_JES_EtaIntercalibration_Stat133: 4.30916182e-08 + syst_JES_EtaIntercalibration_Stat134: 2.55131083e-08 + syst_JES_EtaIntercalibration_Stat135: 1.68701749e-20 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 syst_JES_EtaIntercalibration_Stat138: 0.0 - syst_JES_EtaIntercalibration_Stat139: 2.3981765823224942e-14 - syst_JES_EtaIntercalibration_Stat14: 8.845041274289787e-19 - syst_JES_EtaIntercalibration_Stat140: 2.0538122479915247e-08 - syst_JES_EtaIntercalibration_Stat141: 5.680059924859947e-08 - syst_JES_EtaIntercalibration_Stat142: 9.600328887595466e-09 - syst_JES_EtaIntercalibration_Stat143: 8.154748969159015e-09 - syst_JES_EtaIntercalibration_Stat144: 1.2938602242900892e-16 + syst_JES_EtaIntercalibration_Stat139: 2.39817658e-14 + syst_JES_EtaIntercalibration_Stat14: 8.84504127e-19 + syst_JES_EtaIntercalibration_Stat140: 2.05381225e-08 + syst_JES_EtaIntercalibration_Stat141: 5.68005992e-08 + syst_JES_EtaIntercalibration_Stat142: 9.60032889e-09 + syst_JES_EtaIntercalibration_Stat143: 8.15474897e-09 + syst_JES_EtaIntercalibration_Stat144: 1.29386022e-16 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 4.583523535447374e-16 - syst_JES_EtaIntercalibration_Stat148: 9.736501221177964e-09 - syst_JES_EtaIntercalibration_Stat149: 6.234044273182538e-08 - syst_JES_EtaIntercalibration_Stat15: 8.821784436751942e-19 - syst_JES_EtaIntercalibration_Stat150: 7.875222321147511e-08 - syst_JES_EtaIntercalibration_Stat151: 5.202507714554587e-08 - syst_JES_EtaIntercalibration_Stat152: 3.81632858648204e-15 + syst_JES_EtaIntercalibration_Stat147: 4.58352354e-16 + syst_JES_EtaIntercalibration_Stat148: 9.73650122e-09 + syst_JES_EtaIntercalibration_Stat149: 6.23404427e-08 + syst_JES_EtaIntercalibration_Stat15: 8.82178444e-19 + syst_JES_EtaIntercalibration_Stat150: 7.87522232e-08 + syst_JES_EtaIntercalibration_Stat151: 5.20250771e-08 + syst_JES_EtaIntercalibration_Stat152: 3.81632859e-15 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 syst_JES_EtaIntercalibration_Stat156: 0.0 - syst_JES_EtaIntercalibration_Stat157: 6.945249795363735e-15 - syst_JES_EtaIntercalibration_Stat158: 1.4483870364995675e-07 - syst_JES_EtaIntercalibration_Stat159: 4.55332260552665e-08 - syst_JES_EtaIntercalibration_Stat16: 8.784421425735377e-19 - syst_JES_EtaIntercalibration_Stat160: 4.6422840722536574e-08 - syst_JES_EtaIntercalibration_Stat161: 7.734808930251608e-09 - syst_JES_EtaIntercalibration_Stat162: 1.289469079699083e-16 + syst_JES_EtaIntercalibration_Stat157: 6.94524980e-15 + syst_JES_EtaIntercalibration_Stat158: 1.44838704e-07 + syst_JES_EtaIntercalibration_Stat159: 4.55332261e-08 + syst_JES_EtaIntercalibration_Stat16: 8.78442143e-19 + syst_JES_EtaIntercalibration_Stat160: 4.64228407e-08 + syst_JES_EtaIntercalibration_Stat161: 7.73480893e-09 + syst_JES_EtaIntercalibration_Stat162: 1.28946908e-16 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 1.0376436996869397e-15 - syst_JES_EtaIntercalibration_Stat166: 1.0740300589368996e-07 - syst_JES_EtaIntercalibration_Stat167: 1.3292627543115772e-07 - syst_JES_EtaIntercalibration_Stat168: 7.631584267372011e-08 - syst_JES_EtaIntercalibration_Stat169: 4.6374285460802526e-07 - syst_JES_EtaIntercalibration_Stat17: 1.254004784679867e-22 - syst_JES_EtaIntercalibration_Stat170: 2.5513058686018807e-08 + syst_JES_EtaIntercalibration_Stat165: 1.03764370e-15 + syst_JES_EtaIntercalibration_Stat166: 1.07403006e-07 + syst_JES_EtaIntercalibration_Stat167: 1.32926275e-07 + syst_JES_EtaIntercalibration_Stat168: 7.63158427e-08 + syst_JES_EtaIntercalibration_Stat169: 4.63742855e-07 + syst_JES_EtaIntercalibration_Stat17: 1.25400478e-22 + syst_JES_EtaIntercalibration_Stat170: 2.55130587e-08 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 - syst_JES_EtaIntercalibration_Stat175: 1.026564087411306e-10 - syst_JES_EtaIntercalibration_Stat176: 1.0322686229853158e-07 - syst_JES_EtaIntercalibration_Stat177: 2.698630949203688e-07 - syst_JES_EtaIntercalibration_Stat178: 2.7650966470450904e-07 - syst_JES_EtaIntercalibration_Stat179: 2.1695969203690808e-07 + syst_JES_EtaIntercalibration_Stat175: 1.02656409e-10 + syst_JES_EtaIntercalibration_Stat176: 1.03226862e-07 + syst_JES_EtaIntercalibration_Stat177: 2.69863095e-07 + syst_JES_EtaIntercalibration_Stat178: 2.76509665e-07 + syst_JES_EtaIntercalibration_Stat179: 2.16959692e-07 syst_JES_EtaIntercalibration_Stat18: 0.0 - syst_JES_EtaIntercalibration_Stat180: 4.154323862043932e-09 + syst_JES_EtaIntercalibration_Stat180: 4.15432386e-09 syst_JES_EtaIntercalibration_Stat181: 0.0 - syst_JES_EtaIntercalibration_Stat182: 9.582210303310766e-11 - syst_JES_EtaIntercalibration_Stat183: 4.4148013262206937e-07 - syst_JES_EtaIntercalibration_Stat184: 1.0041562166814484e-06 - syst_JES_EtaIntercalibration_Stat185: 1.8026665158869512e-06 - syst_JES_EtaIntercalibration_Stat186: 3.3246101651171074e-07 - syst_JES_EtaIntercalibration_Stat187: 8.015885816457639e-09 + syst_JES_EtaIntercalibration_Stat182: 9.58221030e-11 + syst_JES_EtaIntercalibration_Stat183: 4.41480133e-07 + syst_JES_EtaIntercalibration_Stat184: 1.00415622e-06 + syst_JES_EtaIntercalibration_Stat185: 1.80266652e-06 + syst_JES_EtaIntercalibration_Stat186: 3.32461017e-07 + syst_JES_EtaIntercalibration_Stat187: 8.01588582e-09 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 - syst_JES_EtaIntercalibration_Stat192: 1.0241330869701458e-08 - syst_JES_EtaIntercalibration_Stat193: 3.494887261057215e-07 - syst_JES_EtaIntercalibration_Stat194: 3.0151237122214404e-06 - syst_JES_EtaIntercalibration_Stat195: 1.6586713809552512e-06 - syst_JES_EtaIntercalibration_Stat196: 8.150512515786967e-07 - syst_JES_EtaIntercalibration_Stat197: 5.598739182173071e-09 - syst_JES_EtaIntercalibration_Stat198: 5.253654823073172e-07 - syst_JES_EtaIntercalibration_Stat199: 2.3614529489278418e-06 + syst_JES_EtaIntercalibration_Stat192: 1.02413309e-08 + syst_JES_EtaIntercalibration_Stat193: 3.49488726e-07 + syst_JES_EtaIntercalibration_Stat194: 3.01512371e-06 + syst_JES_EtaIntercalibration_Stat195: 1.65867138e-06 + syst_JES_EtaIntercalibration_Stat196: 8.15051252e-07 + syst_JES_EtaIntercalibration_Stat197: 5.59873918e-09 + syst_JES_EtaIntercalibration_Stat198: 5.25365482e-07 + syst_JES_EtaIntercalibration_Stat199: 2.36145295e-06 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 5.445836460085815e-06 - syst_JES_EtaIntercalibration_Stat201: 1.3194173969976293e-06 - syst_JES_EtaIntercalibration_Stat202: 2.2172168381779894e-08 + syst_JES_EtaIntercalibration_Stat200: 5.44583646e-06 + syst_JES_EtaIntercalibration_Stat201: 1.31941740e-06 + syst_JES_EtaIntercalibration_Stat202: 2.21721684e-08 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 - syst_JES_EtaIntercalibration_Stat207: 5.6268486739915084e-08 - syst_JES_EtaIntercalibration_Stat208: 2.0211127504421913e-06 - syst_JES_EtaIntercalibration_Stat209: 5.326022343175064e-06 + syst_JES_EtaIntercalibration_Stat207: 5.62684867e-08 + syst_JES_EtaIntercalibration_Stat208: 2.02111275e-06 + syst_JES_EtaIntercalibration_Stat209: 5.32602234e-06 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 3.0048661783846548e-06 - syst_JES_EtaIntercalibration_Stat211: 1.1272326645373616e-06 - syst_JES_EtaIntercalibration_Stat212: 2.5521075114500954e-06 - syst_JES_EtaIntercalibration_Stat213: 6.136788410887245e-06 - syst_JES_EtaIntercalibration_Stat214: 1.3108778003688978e-06 - syst_JES_EtaIntercalibration_Stat215: 2.4355107391405094e-08 + syst_JES_EtaIntercalibration_Stat210: 3.00486618e-06 + syst_JES_EtaIntercalibration_Stat211: 1.12723266e-06 + syst_JES_EtaIntercalibration_Stat212: 2.55210751e-06 + syst_JES_EtaIntercalibration_Stat213: 6.13678841e-06 + syst_JES_EtaIntercalibration_Stat214: 1.31087780e-06 + syst_JES_EtaIntercalibration_Stat215: 2.43551074e-08 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 syst_JES_EtaIntercalibration_Stat219: 0.0 - syst_JES_EtaIntercalibration_Stat22: 1.5311329138908874e-22 - syst_JES_EtaIntercalibration_Stat220: 5.129421677928224e-08 - syst_JES_EtaIntercalibration_Stat221: 1.6237771614356448e-06 - syst_JES_EtaIntercalibration_Stat222: 5.3453840834873595e-06 - syst_JES_EtaIntercalibration_Stat223: 4.27099648794049e-06 - syst_JES_EtaIntercalibration_Stat224: 9.043142263616114e-06 - syst_JES_EtaIntercalibration_Stat225: 1.7981620477587664e-05 - syst_JES_EtaIntercalibration_Stat226: 4.103889797497003e-06 - syst_JES_EtaIntercalibration_Stat227: 5.716964491756092e-08 + syst_JES_EtaIntercalibration_Stat22: 1.53113291e-22 + syst_JES_EtaIntercalibration_Stat220: 5.12942168e-08 + syst_JES_EtaIntercalibration_Stat221: 1.62377716e-06 + syst_JES_EtaIntercalibration_Stat222: 5.34538408e-06 + syst_JES_EtaIntercalibration_Stat223: 4.27099649e-06 + syst_JES_EtaIntercalibration_Stat224: 9.04314226e-06 + syst_JES_EtaIntercalibration_Stat225: 1.79816205e-05 + syst_JES_EtaIntercalibration_Stat226: 4.10388980e-06 + syst_JES_EtaIntercalibration_Stat227: 5.71696449e-08 syst_JES_EtaIntercalibration_Stat228: 0.0 syst_JES_EtaIntercalibration_Stat229: 0.0 - syst_JES_EtaIntercalibration_Stat23: 1.5311329138908874e-22 + syst_JES_EtaIntercalibration_Stat23: 1.53113291e-22 syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 - syst_JES_EtaIntercalibration_Stat232: 1.707961658673871e-07 - syst_JES_EtaIntercalibration_Stat233: 5.020601955941139e-06 - syst_JES_EtaIntercalibration_Stat234: 1.4728903115982535e-05 - syst_JES_EtaIntercalibration_Stat235: 1.4291273281272036e-05 - syst_JES_EtaIntercalibration_Stat236: 3.433841580504261e-06 - syst_JES_EtaIntercalibration_Stat237: 7.977820049988592e-07 - syst_JES_EtaIntercalibration_Stat238: 2.1780538905178632e-08 + syst_JES_EtaIntercalibration_Stat232: 1.70796166e-07 + syst_JES_EtaIntercalibration_Stat233: 5.02060196e-06 + syst_JES_EtaIntercalibration_Stat234: 1.47289031e-05 + syst_JES_EtaIntercalibration_Stat235: 1.42912733e-05 + syst_JES_EtaIntercalibration_Stat236: 3.43384158e-06 + syst_JES_EtaIntercalibration_Stat237: 7.97782005e-07 + syst_JES_EtaIntercalibration_Stat238: 2.17805389e-08 syst_JES_EtaIntercalibration_Stat239: 0.0 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 - syst_JES_EtaIntercalibration_Stat243: 1.4990915693722652e-08 - syst_JES_EtaIntercalibration_Stat244: 3.568275038446448e-07 - syst_JES_EtaIntercalibration_Stat245: 4.437110630804691e-06 - syst_JES_EtaIntercalibration_Stat25: 1.0815791267863855e-22 - syst_JES_EtaIntercalibration_Stat26: 5.9707780690626904e-21 - syst_JES_EtaIntercalibration_Stat27: 8.975496302712178e-19 - syst_JES_EtaIntercalibration_Stat28: 2.55131083949304e-08 - syst_JES_EtaIntercalibration_Stat29: 9.374997119999558e-19 + syst_JES_EtaIntercalibration_Stat243: 1.49909157e-08 + syst_JES_EtaIntercalibration_Stat244: 3.56827504e-07 + syst_JES_EtaIntercalibration_Stat245: 4.43711063e-06 + syst_JES_EtaIntercalibration_Stat25: 1.08157913e-22 + syst_JES_EtaIntercalibration_Stat26: 5.97077807e-21 + syst_JES_EtaIntercalibration_Stat27: 8.97549630e-19 + syst_JES_EtaIntercalibration_Stat28: 2.55131084e-08 + syst_JES_EtaIntercalibration_Stat29: 9.37499712e-19 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 6.610194300283464e-22 + syst_JES_EtaIntercalibration_Stat30: 6.61019430e-22 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 2.261653754998762e-22 - syst_JES_EtaIntercalibration_Stat36: 8.637325232493853e-19 - syst_JES_EtaIntercalibration_Stat37: 2.401488445148623e-10 - syst_JES_EtaIntercalibration_Stat38: 2.4014884451627684e-10 - syst_JES_EtaIntercalibration_Stat39: 9.672068988587705e-20 - syst_JES_EtaIntercalibration_Stat4: 1.482635491278959e-22 - syst_JES_EtaIntercalibration_Stat40: 1.6549745466320625e-22 + syst_JES_EtaIntercalibration_Stat35: 2.26165375e-22 + syst_JES_EtaIntercalibration_Stat36: 8.63732523e-19 + syst_JES_EtaIntercalibration_Stat37: 2.40148845e-10 + syst_JES_EtaIntercalibration_Stat38: 2.40148845e-10 + syst_JES_EtaIntercalibration_Stat39: 9.67206899e-20 + syst_JES_EtaIntercalibration_Stat4: 1.48263549e-22 + syst_JES_EtaIntercalibration_Stat40: 1.65497455e-22 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 - syst_JES_EtaIntercalibration_Stat44: 1.5311329138908874e-22 + syst_JES_EtaIntercalibration_Stat44: 1.53113291e-22 syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 - syst_JES_EtaIntercalibration_Stat47: 1.0820987420286562e-22 - syst_JES_EtaIntercalibration_Stat48: 6.731590326215642e-20 - syst_JES_EtaIntercalibration_Stat49: 2.168509338232141e-18 - syst_JES_EtaIntercalibration_Stat5: 7.639781852252066e-21 - syst_JES_EtaIntercalibration_Stat50: 2.5513108395260993e-08 - syst_JES_EtaIntercalibration_Stat51: 1.5556354712888232e-15 - syst_JES_EtaIntercalibration_Stat52: 5.6221892417456024e-21 + syst_JES_EtaIntercalibration_Stat47: 1.08209874e-22 + syst_JES_EtaIntercalibration_Stat48: 6.73159033e-20 + syst_JES_EtaIntercalibration_Stat49: 2.16850934e-18 + syst_JES_EtaIntercalibration_Stat5: 7.63978185e-21 + syst_JES_EtaIntercalibration_Stat50: 2.55131084e-08 + syst_JES_EtaIntercalibration_Stat51: 1.55563547e-15 + syst_JES_EtaIntercalibration_Stat52: 5.62218924e-21 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 syst_JES_EtaIntercalibration_Stat56: 0.0 - syst_JES_EtaIntercalibration_Stat57: 8.846154909921641e-19 - syst_JES_EtaIntercalibration_Stat58: 7.883903295164141e-19 - syst_JES_EtaIntercalibration_Stat59: 5.25764103986236e-09 - syst_JES_EtaIntercalibration_Stat6: 4.7391809967546084e-20 - syst_JES_EtaIntercalibration_Stat60: 2.39715835318237e-10 - syst_JES_EtaIntercalibration_Stat61: 1.336510723750468e-18 - syst_JES_EtaIntercalibration_Stat62: 1.279119521389616e-22 + syst_JES_EtaIntercalibration_Stat57: 8.84615491e-19 + syst_JES_EtaIntercalibration_Stat58: 7.88390330e-19 + syst_JES_EtaIntercalibration_Stat59: 5.25764104e-09 + syst_JES_EtaIntercalibration_Stat6: 4.73918100e-20 + syst_JES_EtaIntercalibration_Stat60: 2.39715835e-10 + syst_JES_EtaIntercalibration_Stat61: 1.33651072e-18 + syst_JES_EtaIntercalibration_Stat62: 1.27911952e-22 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 - syst_JES_EtaIntercalibration_Stat69: 1.6583584503960535e-22 - syst_JES_EtaIntercalibration_Stat7: 5.60913965662293e-21 - syst_JES_EtaIntercalibration_Stat70: 1.103305400829707e-18 - syst_JES_EtaIntercalibration_Stat71: 2.2707186085036648e-08 - syst_JES_EtaIntercalibration_Stat72: 2.243871780069277e-08 - syst_JES_EtaIntercalibration_Stat73: 2.5513108390431975e-08 - syst_JES_EtaIntercalibration_Stat74: 1.135629423304539e-19 + syst_JES_EtaIntercalibration_Stat69: 1.65835845e-22 + syst_JES_EtaIntercalibration_Stat7: 5.60913966e-21 + syst_JES_EtaIntercalibration_Stat70: 1.10330540e-18 + syst_JES_EtaIntercalibration_Stat71: 2.27071861e-08 + syst_JES_EtaIntercalibration_Stat72: 2.24387178e-08 + syst_JES_EtaIntercalibration_Stat73: 2.55131084e-08 + syst_JES_EtaIntercalibration_Stat74: 1.13562942e-19 syst_JES_EtaIntercalibration_Stat75: 0.0 syst_JES_EtaIntercalibration_Stat76: 0.0 syst_JES_EtaIntercalibration_Stat77: 0.0 syst_JES_EtaIntercalibration_Stat78: 0.0 - syst_JES_EtaIntercalibration_Stat79: 8.730058713846086e-19 + syst_JES_EtaIntercalibration_Stat79: 8.73005871e-19 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 9.447522254538488e-15 - syst_JES_EtaIntercalibration_Stat81: 1.5288140076542992e-08 - syst_JES_EtaIntercalibration_Stat82: 4.1233938291169815e-09 - syst_JES_EtaIntercalibration_Stat83: 1.3385249605442552e-16 - syst_JES_EtaIntercalibration_Stat84: 1.1086635772406342e-22 - syst_JES_EtaIntercalibration_Stat85: 1.5311329138908874e-22 - syst_JES_EtaIntercalibration_Stat86: 1.5311329138908874e-22 - syst_JES_EtaIntercalibration_Stat87: 1.5311329138908874e-22 - syst_JES_EtaIntercalibration_Stat88: 1.5311329138908874e-22 - syst_JES_EtaIntercalibration_Stat89: 1.5311329138908874e-22 + syst_JES_EtaIntercalibration_Stat80: 9.44752225e-15 + syst_JES_EtaIntercalibration_Stat81: 1.52881401e-08 + syst_JES_EtaIntercalibration_Stat82: 4.12339383e-09 + syst_JES_EtaIntercalibration_Stat83: 1.33852496e-16 + syst_JES_EtaIntercalibration_Stat84: 1.10866358e-22 + syst_JES_EtaIntercalibration_Stat85: 1.53113291e-22 + syst_JES_EtaIntercalibration_Stat86: 1.53113291e-22 + syst_JES_EtaIntercalibration_Stat87: 1.53113291e-22 + syst_JES_EtaIntercalibration_Stat88: 1.53113291e-22 + syst_JES_EtaIntercalibration_Stat89: 1.53113291e-22 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 1.919717842079924e-16 - syst_JES_EtaIntercalibration_Stat92: 2.2707185616398875e-08 - syst_JES_EtaIntercalibration_Stat93: 2.243871666186976e-08 - syst_JES_EtaIntercalibration_Stat94: 2.5513108362557504e-08 - syst_JES_EtaIntercalibration_Stat95: 8.383316333647443e-19 - syst_JES_EtaIntercalibration_Stat96: 1.68197565880128e-20 - syst_JES_EtaIntercalibration_Stat97: 1.5311329138908874e-22 - syst_JES_EtaIntercalibration_Stat98: 1.5311329138908874e-22 - syst_JES_EtaIntercalibration_Stat99: 1.5311329138908874e-22 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.00014144170071092897 - syst_JES_Flavour_Comp: 0.0003570087779032891 - syst_JES_Gjet_Generator: 0.0004328159510692738 - syst_JES_Gjet_OOC: 0.0003601937395347121 - syst_JES_Gjet_Purity: 5.8792057924519025e-05 - syst_JES_Gjet_Stat1: 8.801580128022469e-07 - syst_JES_Gjet_Stat10: 6.994453570508564e-06 - syst_JES_Gjet_Stat11: 7.1767537229585915e-06 - syst_JES_Gjet_Stat12: 1.9226416072684998e-05 - syst_JES_Gjet_Stat13: 6.851910299325291e-05 - syst_JES_Gjet_Stat14: 0.00019305337992379205 - syst_JES_Gjet_Stat15: 0.00027053282148382663 - syst_JES_Gjet_Stat2: 6.061311801085869e-07 - syst_JES_Gjet_Stat3: 1.1011378421887062e-06 - syst_JES_Gjet_Stat4: 1.1082882871798293e-06 - syst_JES_Gjet_Stat5: 6.00930524488913e-14 - syst_JES_Gjet_Stat6: 4.016848764890209e-06 - syst_JES_Gjet_Stat7: 3.670820115451042e-06 - syst_JES_Gjet_Stat8: 2.401039930946589e-06 - syst_JES_Gjet_Stat9: 4.009220965474465e-06 - syst_JES_Gjet_Veto: 0.0003656150996266429 - syst_JES_Gjet_dPhi: 3.4835064231317274e-05 - syst_JES_LArESZee: 0.0006587049168633859 - syst_JES_LArEsmear: 5.550460949326641e-05 - syst_JES_LAr_JVT: 6.940646565702651e-05 - syst_JES_MJB_Alpha: 4.330650448546962e-06 - syst_JES_MJB_Asym: 8.418182865084365e-05 - syst_JES_MJB_Beta: 4.89430536440055e-06 - syst_JES_MJB_Stat1: 1.019838103233334e-08 - syst_JES_MJB_Stat10: 7.069188973991288e-06 - syst_JES_MJB_Stat11: 8.01578667380813e-06 - syst_JES_MJB_Stat12: 1.3038656986054968e-05 - syst_JES_MJB_Stat13: 1.2020253023543222e-05 - syst_JES_MJB_Stat14: 1.1614635853095008e-05 - syst_JES_MJB_Stat15: 1.3442913997716416e-05 - syst_JES_MJB_Stat16: 5.4347585962947795e-06 - syst_JES_MJB_Stat2: 7.872247932293545e-08 - syst_JES_MJB_Stat3: 4.214079614815079e-08 - syst_JES_MJB_Stat4: 3.5091349361345455e-08 + syst_JES_EtaIntercalibration_Stat91: 1.91971784e-16 + syst_JES_EtaIntercalibration_Stat92: 2.27071856e-08 + syst_JES_EtaIntercalibration_Stat93: 2.24387167e-08 + syst_JES_EtaIntercalibration_Stat94: 2.55131084e-08 + syst_JES_EtaIntercalibration_Stat95: 8.38331633e-19 + syst_JES_EtaIntercalibration_Stat96: 1.68197566e-20 + syst_JES_EtaIntercalibration_Stat97: 1.53113291e-22 + syst_JES_EtaIntercalibration_Stat98: 1.53113291e-22 + syst_JES_EtaIntercalibration_Stat99: 1.53113291e-22 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.41441701e-04 + syst_JES_Flavour_Comp: 3.57008778e-04 + syst_JES_Gjet_Generator: 4.32815951e-04 + syst_JES_Gjet_OOC: 3.60193740e-04 + syst_JES_Gjet_Purity: 5.87920579e-05 + syst_JES_Gjet_Stat1: 8.80158013e-07 + syst_JES_Gjet_Stat10: 6.99445357e-06 + syst_JES_Gjet_Stat11: 7.17675372e-06 + syst_JES_Gjet_Stat12: 1.92264161e-05 + syst_JES_Gjet_Stat13: 6.85191030e-05 + syst_JES_Gjet_Stat14: 1.93053380e-04 + syst_JES_Gjet_Stat15: 2.70532821e-04 + syst_JES_Gjet_Stat2: 6.06131180e-07 + syst_JES_Gjet_Stat3: 1.10113784e-06 + syst_JES_Gjet_Stat4: 1.10828829e-06 + syst_JES_Gjet_Stat5: 6.00930524e-14 + syst_JES_Gjet_Stat6: 4.01684876e-06 + syst_JES_Gjet_Stat7: 3.67082012e-06 + syst_JES_Gjet_Stat8: 2.40103993e-06 + syst_JES_Gjet_Stat9: 4.00922097e-06 + syst_JES_Gjet_Veto: 3.65615100e-04 + syst_JES_Gjet_dPhi: 3.48350642e-05 + syst_JES_LArESZee: 6.58704917e-04 + syst_JES_LArEsmear: 5.55046095e-05 + syst_JES_LAr_JVT: 6.94064657e-05 + syst_JES_MJB_Alpha: 4.33065045e-06 + syst_JES_MJB_Asym: 8.41818287e-05 + syst_JES_MJB_Beta: 4.89430536e-06 + syst_JES_MJB_Stat1: 1.01983810e-08 + syst_JES_MJB_Stat10: 7.06918897e-06 + syst_JES_MJB_Stat11: 8.01578667e-06 + syst_JES_MJB_Stat12: 1.30386570e-05 + syst_JES_MJB_Stat13: 1.20202530e-05 + syst_JES_MJB_Stat14: 1.16146359e-05 + syst_JES_MJB_Stat15: 1.34429140e-05 + syst_JES_MJB_Stat16: 5.43475860e-06 + syst_JES_MJB_Stat2: 7.87224793e-08 + syst_JES_MJB_Stat3: 4.21407961e-08 + syst_JES_MJB_Stat4: 3.50913494e-08 syst_JES_MJB_Stat5: 0.0 - syst_JES_MJB_Stat6: 7.455612701180232e-07 - syst_JES_MJB_Stat7: 9.89607228904478e-07 - syst_JES_MJB_Stat8: 1.281083669203538e-06 - syst_JES_MJB_Stat9: 4.192179236387681e-06 - syst_JES_MJB_Threshold: 5.466258866903396e-05 - syst_JES_Pileup_MuOffset: 8.714991394143771e-05 - syst_JES_Pileup_NPVOffset: 9.01492333578051e-05 - syst_JES_Pileup_Pt_term: 5.802711176682844e-05 - syst_JES_PunchThrough_MC15: 0.00021079095687434032 + syst_JES_MJB_Stat6: 7.45561270e-07 + syst_JES_MJB_Stat7: 9.89607229e-07 + syst_JES_MJB_Stat8: 1.28108367e-06 + syst_JES_MJB_Stat9: 4.19217924e-06 + syst_JES_MJB_Threshold: 5.46625887e-05 + syst_JES_Pileup_MuOffset: 8.71499139e-05 + syst_JES_Pileup_NPVOffset: 9.01492334e-05 + syst_JES_Pileup_Pt_term: 5.80271118e-05 + syst_JES_PunchThrough_MC15: 2.10790957e-04 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.00016087767868787762 - syst_JES_Zjet_MuScale: 1.3090669453851473e-05 - syst_JES_Zjet_MuSmearID: 2.5405536306088875e-06 - syst_JES_Zjet_MuSmearMS: 4.3890899683191724e-05 - syst_JES_Zjet_OOC: 9.83768746962415e-05 - syst_JES_Zjet_Stat1: 8.946763548904151e-06 - syst_JES_Zjet_Stat10: 8.843646532963651e-06 - syst_JES_Zjet_Stat11: 1.1707572197086804e-05 - syst_JES_Zjet_Stat12: 2.8735432831262522e-05 - syst_JES_Zjet_Stat13: 4.5433158320768323e-05 - syst_JES_Zjet_Stat2: 8.188270192781924e-08 - syst_JES_Zjet_Stat3: 3.854323124752257e-06 - syst_JES_Zjet_Stat4: 4.3160114399755706e-06 - syst_JES_Zjet_Stat5: 5.3326710708612064e-06 - syst_JES_Zjet_Stat6: 3.5569308047809984e-06 - syst_JES_Zjet_Stat7: 4.14250440554986e-06 - syst_JES_Zjet_Stat8: 3.7855991269546754e-06 - syst_JES_Zjet_Stat9: 5.501948268568144e-06 - syst_JES_Zjet_Veto: 1.797354931559151e-05 - syst_JES_Zjet_dPhi: 1.63311818310862e-05 - syst_PRW: 3.277e-05 + syst_JES_Zjet_MC: 1.60877679e-04 + syst_JES_Zjet_MuScale: 1.30906695e-05 + syst_JES_Zjet_MuSmearID: 2.54055363e-06 + syst_JES_Zjet_MuSmearMS: 4.38908997e-05 + syst_JES_Zjet_OOC: 9.83768747e-05 + syst_JES_Zjet_Stat1: 8.94676355e-06 + syst_JES_Zjet_Stat10: 8.84364653e-06 + syst_JES_Zjet_Stat11: 1.17075722e-05 + syst_JES_Zjet_Stat12: 2.87354328e-05 + syst_JES_Zjet_Stat13: 4.54331583e-05 + syst_JES_Zjet_Stat2: 8.18827019e-08 + syst_JES_Zjet_Stat3: 3.85432312e-06 + syst_JES_Zjet_Stat4: 4.31601144e-06 + syst_JES_Zjet_Stat5: 5.33267107e-06 + syst_JES_Zjet_Stat6: 3.55693080e-06 + syst_JES_Zjet_Stat7: 4.14250441e-06 + syst_JES_Zjet_Stat8: 3.78559913e-06 + syst_JES_Zjet_Stat9: 5.50194827e-06 + syst_JES_Zjet_Veto: 1.79735493e-05 + syst_JES_Zjet_dPhi: 1.63311818e-05 + syst_PRW: 3.27700000e-05 syst_Unfolding_bias: 8.96e-18 - syst_cleaning: 8.597034183368123e-05 - syst_lumi: 0.0002684 + syst_cleaning: 8.59703418e-05 + syst_lumi: 2.68400000e-04 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 4.00870328161115e-05 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 2.5331029884313826e-05 - syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.0640028324680342e-05 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 4.00870328e-05 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 2.53310299e-05 + syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.06400283e-05 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 3.526247970577225e-05 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 3.775221011742226e-05 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.00010721113783091755 -- stat: 0.00015794 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 3.52624797e-05 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 3.77522101e-05 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.07211138e-04 +- stat: 1.57940000e-04 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.00010121230397041657 - syst_JER_NP1: 2.63883724393908e-05 - syst_JER_NP2: 9.080634049998933e-05 - syst_JER_NP3: 1.4646103474986102e-05 - syst_JER_NP4: 3.0730081353618317e-15 - syst_JER_NP5: 6.7617355760189256e-06 - syst_JER_NP6: 6.080938167750105e-15 - syst_JER_NP7: 7.23363122850481e-15 - syst_JER_NP8: 3.504708020292133e-07 - syst_JES_EtaIntercalibration_Modelling: 0.0007031001280045396 - syst_JES_EtaIntercalibration_NonClosure: 1.0508350715026598e-08 - syst_JES_EtaIntercalibration_Stat0: 4.2010892337583116e-23 + syst_JER_NP0: 1.01212304e-04 + syst_JER_NP1: 2.63883724e-05 + syst_JER_NP2: 9.08063405e-05 + syst_JER_NP3: 1.46461035e-05 + syst_JER_NP4: 3.07300814e-15 + syst_JER_NP5: 6.76173558e-06 + syst_JER_NP6: 6.08093817e-15 + syst_JER_NP7: 7.23363123e-15 + syst_JER_NP8: 3.50470802e-07 + syst_JES_EtaIntercalibration_Modelling: 7.03100128e-04 + syst_JES_EtaIntercalibration_NonClosure: 1.05083507e-08 + syst_JES_EtaIntercalibration_Stat0: 4.20108923e-23 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 1.7065898914345971e-19 - syst_JES_EtaIntercalibration_Stat101: 2.1955664417184007e-15 - syst_JES_EtaIntercalibration_Stat102: 7.652157779046427e-09 - syst_JES_EtaIntercalibration_Stat103: 6.290057419229176e-10 - syst_JES_EtaIntercalibration_Stat104: 2.938692316333066e-16 - syst_JES_EtaIntercalibration_Stat105: 8.236078800011569e-23 - syst_JES_EtaIntercalibration_Stat106: 4.2010892337583116e-23 - syst_JES_EtaIntercalibration_Stat107: 4.2010892337583116e-23 - syst_JES_EtaIntercalibration_Stat108: 4.2010892337583116e-23 - syst_JES_EtaIntercalibration_Stat109: 4.2010892337583116e-23 + syst_JES_EtaIntercalibration_Stat100: 1.70658989e-19 + syst_JES_EtaIntercalibration_Stat101: 2.19556644e-15 + syst_JES_EtaIntercalibration_Stat102: 7.65215778e-09 + syst_JES_EtaIntercalibration_Stat103: 6.29005742e-10 + syst_JES_EtaIntercalibration_Stat104: 2.93869232e-16 + syst_JES_EtaIntercalibration_Stat105: 8.23607880e-23 + syst_JES_EtaIntercalibration_Stat106: 4.20108923e-23 + syst_JES_EtaIntercalibration_Stat107: 4.20108923e-23 + syst_JES_EtaIntercalibration_Stat108: 4.20108923e-23 + syst_JES_EtaIntercalibration_Stat109: 4.20108923e-23 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 1.6392867107373256e-21 - syst_JES_EtaIntercalibration_Stat111: 1.3136977125655658e-15 - syst_JES_EtaIntercalibration_Stat112: 1.970034484284159e-09 - syst_JES_EtaIntercalibration_Stat113: 1.1166394355848828e-08 - syst_JES_EtaIntercalibration_Stat114: 7.463398053096134e-09 - syst_JES_EtaIntercalibration_Stat115: 2.2093674466730858e-16 - syst_JES_EtaIntercalibration_Stat116: 2.7696852429608313e-21 - syst_JES_EtaIntercalibration_Stat117: 4.2010892337583116e-23 - syst_JES_EtaIntercalibration_Stat118: 4.2010892337583116e-23 - syst_JES_EtaIntercalibration_Stat119: 4.2010892337583116e-23 + syst_JES_EtaIntercalibration_Stat110: 1.63928671e-21 + syst_JES_EtaIntercalibration_Stat111: 1.31369771e-15 + syst_JES_EtaIntercalibration_Stat112: 1.97003448e-09 + syst_JES_EtaIntercalibration_Stat113: 1.11663944e-08 + syst_JES_EtaIntercalibration_Stat114: 7.46339805e-09 + syst_JES_EtaIntercalibration_Stat115: 2.20936745e-16 + syst_JES_EtaIntercalibration_Stat116: 2.76968524e-21 + syst_JES_EtaIntercalibration_Stat117: 4.20108923e-23 + syst_JES_EtaIntercalibration_Stat118: 4.20108923e-23 + syst_JES_EtaIntercalibration_Stat119: 4.20108923e-23 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 9.95669406730969e-19 - syst_JES_EtaIntercalibration_Stat121: 7.055628444724113e-09 - syst_JES_EtaIntercalibration_Stat122: 8.749117826958328e-09 - syst_JES_EtaIntercalibration_Stat123: 5.657288367654596e-09 - syst_JES_EtaIntercalibration_Stat124: 9.412426294532138e-10 - syst_JES_EtaIntercalibration_Stat125: 1.8862033294425075e-20 - syst_JES_EtaIntercalibration_Stat126: 4.2010892337583116e-23 - syst_JES_EtaIntercalibration_Stat127: 4.2010892337583116e-23 - syst_JES_EtaIntercalibration_Stat128: 4.2010892337583116e-23 - syst_JES_EtaIntercalibration_Stat129: 4.954712789859772e-16 + syst_JES_EtaIntercalibration_Stat120: 9.95669407e-19 + syst_JES_EtaIntercalibration_Stat121: 7.05562844e-09 + syst_JES_EtaIntercalibration_Stat122: 8.74911783e-09 + syst_JES_EtaIntercalibration_Stat123: 5.65728837e-09 + syst_JES_EtaIntercalibration_Stat124: 9.41242629e-10 + syst_JES_EtaIntercalibration_Stat125: 1.88620333e-20 + syst_JES_EtaIntercalibration_Stat126: 4.20108923e-23 + syst_JES_EtaIntercalibration_Stat127: 4.20108923e-23 + syst_JES_EtaIntercalibration_Stat128: 4.20108923e-23 + syst_JES_EtaIntercalibration_Stat129: 4.95471279e-16 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 3.8457322204146906e-08 - syst_JES_EtaIntercalibration_Stat131: 1.425865361806647e-08 - syst_JES_EtaIntercalibration_Stat132: 3.267035911832008e-08 - syst_JES_EtaIntercalibration_Stat133: 9.39145860609522e-10 - syst_JES_EtaIntercalibration_Stat134: 1.3986310256419346e-08 - syst_JES_EtaIntercalibration_Stat135: 2.783405647763186e-21 + syst_JES_EtaIntercalibration_Stat130: 3.84573222e-08 + syst_JES_EtaIntercalibration_Stat131: 1.42586536e-08 + syst_JES_EtaIntercalibration_Stat132: 3.26703591e-08 + syst_JES_EtaIntercalibration_Stat133: 9.39145861e-10 + syst_JES_EtaIntercalibration_Stat134: 1.39863103e-08 + syst_JES_EtaIntercalibration_Stat135: 2.78340565e-21 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 syst_JES_EtaIntercalibration_Stat138: 0.0 - syst_JES_EtaIntercalibration_Stat139: 3.760527722275159e-15 - syst_JES_EtaIntercalibration_Stat14: 1.7104934637540149e-19 - syst_JES_EtaIntercalibration_Stat140: 1.7289034906552766e-08 - syst_JES_EtaIntercalibration_Stat141: 2.981118828560848e-08 - syst_JES_EtaIntercalibration_Stat142: 4.309555982639047e-08 - syst_JES_EtaIntercalibration_Stat143: 1.071824276642398e-09 - syst_JES_EtaIntercalibration_Stat144: 2.2673165350254914e-17 + syst_JES_EtaIntercalibration_Stat139: 3.76052772e-15 + syst_JES_EtaIntercalibration_Stat14: 1.71049346e-19 + syst_JES_EtaIntercalibration_Stat140: 1.72890349e-08 + syst_JES_EtaIntercalibration_Stat141: 2.98111883e-08 + syst_JES_EtaIntercalibration_Stat142: 4.30955598e-08 + syst_JES_EtaIntercalibration_Stat143: 1.07182428e-09 + syst_JES_EtaIntercalibration_Stat144: 2.26731654e-17 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 6.606899632202687e-17 - syst_JES_EtaIntercalibration_Stat148: 3.814910815403588e-08 - syst_JES_EtaIntercalibration_Stat149: 1.4404836791855714e-08 - syst_JES_EtaIntercalibration_Stat15: 1.705564619932416e-19 - syst_JES_EtaIntercalibration_Stat150: 6.274783620173687e-08 - syst_JES_EtaIntercalibration_Stat151: 1.167256164986932e-08 - syst_JES_EtaIntercalibration_Stat152: 5.625960102062581e-16 + syst_JES_EtaIntercalibration_Stat147: 6.60689963e-17 + syst_JES_EtaIntercalibration_Stat148: 3.81491082e-08 + syst_JES_EtaIntercalibration_Stat149: 1.44048368e-08 + syst_JES_EtaIntercalibration_Stat15: 1.70556462e-19 + syst_JES_EtaIntercalibration_Stat150: 6.27478362e-08 + syst_JES_EtaIntercalibration_Stat151: 1.16725616e-08 + syst_JES_EtaIntercalibration_Stat152: 5.62596010e-16 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 syst_JES_EtaIntercalibration_Stat156: 0.0 - syst_JES_EtaIntercalibration_Stat157: 1.0436332557018053e-15 - syst_JES_EtaIntercalibration_Stat158: 5.6698891523556265e-08 - syst_JES_EtaIntercalibration_Stat159: 3.377484863030477e-08 - syst_JES_EtaIntercalibration_Stat16: 1.698223967316664e-19 - syst_JES_EtaIntercalibration_Stat160: 6.368143430388483e-08 - syst_JES_EtaIntercalibration_Stat161: 9.809634848836118e-10 - syst_JES_EtaIntercalibration_Stat162: 2.2688692133968414e-17 + syst_JES_EtaIntercalibration_Stat157: 1.04363326e-15 + syst_JES_EtaIntercalibration_Stat158: 5.66988915e-08 + syst_JES_EtaIntercalibration_Stat159: 3.37748486e-08 + syst_JES_EtaIntercalibration_Stat16: 1.69822397e-19 + syst_JES_EtaIntercalibration_Stat160: 6.36814343e-08 + syst_JES_EtaIntercalibration_Stat161: 9.80963485e-10 + syst_JES_EtaIntercalibration_Stat162: 2.26886921e-17 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 1.4760937470228642e-16 - syst_JES_EtaIntercalibration_Stat166: 3.093706353227468e-08 - syst_JES_EtaIntercalibration_Stat167: 4.8867194517385584e-08 - syst_JES_EtaIntercalibration_Stat168: 5.1813629615261473e-08 - syst_JES_EtaIntercalibration_Stat169: 2.2200182448574605e-07 - syst_JES_EtaIntercalibration_Stat17: 3.435003161570597e-23 - syst_JES_EtaIntercalibration_Stat170: 1.3986302973426513e-08 + syst_JES_EtaIntercalibration_Stat165: 1.47609375e-16 + syst_JES_EtaIntercalibration_Stat166: 3.09370635e-08 + syst_JES_EtaIntercalibration_Stat167: 4.88671945e-08 + syst_JES_EtaIntercalibration_Stat168: 5.18136296e-08 + syst_JES_EtaIntercalibration_Stat169: 2.22001824e-07 + syst_JES_EtaIntercalibration_Stat17: 3.43500316e-23 + syst_JES_EtaIntercalibration_Stat170: 1.39863030e-08 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 - syst_JES_EtaIntercalibration_Stat175: 1.5298650373242078e-11 - syst_JES_EtaIntercalibration_Stat176: 4.326321532202618e-08 - syst_JES_EtaIntercalibration_Stat177: 1.146156153192051e-07 - syst_JES_EtaIntercalibration_Stat178: 1.7309926537972367e-07 - syst_JES_EtaIntercalibration_Stat179: 1.2440965426766527e-07 + syst_JES_EtaIntercalibration_Stat175: 1.52986504e-11 + syst_JES_EtaIntercalibration_Stat176: 4.32632153e-08 + syst_JES_EtaIntercalibration_Stat177: 1.14615615e-07 + syst_JES_EtaIntercalibration_Stat178: 1.73099265e-07 + syst_JES_EtaIntercalibration_Stat179: 1.24409654e-07 syst_JES_EtaIntercalibration_Stat18: 0.0 - syst_JES_EtaIntercalibration_Stat180: 6.341038006697529e-10 + syst_JES_EtaIntercalibration_Stat180: 6.34103801e-10 syst_JES_EtaIntercalibration_Stat181: 0.0 - syst_JES_EtaIntercalibration_Stat182: 1.5882382606373226e-11 - syst_JES_EtaIntercalibration_Stat183: 2.2733285618229493e-07 - syst_JES_EtaIntercalibration_Stat184: 5.514405566332603e-07 - syst_JES_EtaIntercalibration_Stat185: 1.280944849515388e-06 - syst_JES_EtaIntercalibration_Stat186: 1.8010104406971106e-07 - syst_JES_EtaIntercalibration_Stat187: 7.200128553126566e-09 + syst_JES_EtaIntercalibration_Stat182: 1.58823826e-11 + syst_JES_EtaIntercalibration_Stat183: 2.27332856e-07 + syst_JES_EtaIntercalibration_Stat184: 5.51440557e-07 + syst_JES_EtaIntercalibration_Stat185: 1.28094485e-06 + syst_JES_EtaIntercalibration_Stat186: 1.80101044e-07 + syst_JES_EtaIntercalibration_Stat187: 7.20012855e-09 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 - syst_JES_EtaIntercalibration_Stat192: 7.473472351000488e-09 - syst_JES_EtaIntercalibration_Stat193: 3.9814900263594787e-07 - syst_JES_EtaIntercalibration_Stat194: 1.7033801689581805e-06 - syst_JES_EtaIntercalibration_Stat195: 7.641292822553e-07 - syst_JES_EtaIntercalibration_Stat196: 4.383501142922173e-07 - syst_JES_EtaIntercalibration_Stat197: 1.4945128393142028e-09 - syst_JES_EtaIntercalibration_Stat198: 2.99417634751195e-07 - syst_JES_EtaIntercalibration_Stat199: 1.4044250807714877e-06 + syst_JES_EtaIntercalibration_Stat192: 7.47347235e-09 + syst_JES_EtaIntercalibration_Stat193: 3.98149003e-07 + syst_JES_EtaIntercalibration_Stat194: 1.70338017e-06 + syst_JES_EtaIntercalibration_Stat195: 7.64129282e-07 + syst_JES_EtaIntercalibration_Stat196: 4.38350114e-07 + syst_JES_EtaIntercalibration_Stat197: 1.49451284e-09 + syst_JES_EtaIntercalibration_Stat198: 2.99417635e-07 + syst_JES_EtaIntercalibration_Stat199: 1.40442508e-06 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 3.2119283927260895e-06 - syst_JES_EtaIntercalibration_Stat201: 8.940301672762502e-07 - syst_JES_EtaIntercalibration_Stat202: 1.2548601784661113e-08 + syst_JES_EtaIntercalibration_Stat200: 3.21192839e-06 + syst_JES_EtaIntercalibration_Stat201: 8.94030167e-07 + syst_JES_EtaIntercalibration_Stat202: 1.25486018e-08 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 - syst_JES_EtaIntercalibration_Stat207: 2.392189366981636e-08 - syst_JES_EtaIntercalibration_Stat208: 1.2328078763538136e-06 - syst_JES_EtaIntercalibration_Stat209: 3.4239893034295537e-06 + syst_JES_EtaIntercalibration_Stat207: 2.39218937e-08 + syst_JES_EtaIntercalibration_Stat208: 1.23280788e-06 + syst_JES_EtaIntercalibration_Stat209: 3.42398930e-06 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 1.5961356670095435e-06 - syst_JES_EtaIntercalibration_Stat211: 4.613268323780874e-07 - syst_JES_EtaIntercalibration_Stat212: 1.5285552026341738e-06 - syst_JES_EtaIntercalibration_Stat213: 3.5993967202852203e-06 - syst_JES_EtaIntercalibration_Stat214: 8.93042652956733e-07 - syst_JES_EtaIntercalibration_Stat215: 1.3142369393715761e-08 + syst_JES_EtaIntercalibration_Stat210: 1.59613567e-06 + syst_JES_EtaIntercalibration_Stat211: 4.61326832e-07 + syst_JES_EtaIntercalibration_Stat212: 1.52855520e-06 + syst_JES_EtaIntercalibration_Stat213: 3.59939672e-06 + syst_JES_EtaIntercalibration_Stat214: 8.93042653e-07 + syst_JES_EtaIntercalibration_Stat215: 1.31423694e-08 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 syst_JES_EtaIntercalibration_Stat219: 0.0 - syst_JES_EtaIntercalibration_Stat22: 4.2010892337583116e-23 - syst_JES_EtaIntercalibration_Stat220: 2.2405151193419785e-08 - syst_JES_EtaIntercalibration_Stat221: 9.312819283117225e-07 - syst_JES_EtaIntercalibration_Stat222: 3.4523623795887944e-06 - syst_JES_EtaIntercalibration_Stat223: 2.514332055934538e-06 - syst_JES_EtaIntercalibration_Stat224: 5.603913989347088e-06 - syst_JES_EtaIntercalibration_Stat225: 1.0471931758276504e-05 - syst_JES_EtaIntercalibration_Stat226: 3.039603715947196e-06 - syst_JES_EtaIntercalibration_Stat227: 4.115469718027336e-08 + syst_JES_EtaIntercalibration_Stat22: 4.20108923e-23 + syst_JES_EtaIntercalibration_Stat220: 2.24051512e-08 + syst_JES_EtaIntercalibration_Stat221: 9.31281928e-07 + syst_JES_EtaIntercalibration_Stat222: 3.45236238e-06 + syst_JES_EtaIntercalibration_Stat223: 2.51433206e-06 + syst_JES_EtaIntercalibration_Stat224: 5.60391399e-06 + syst_JES_EtaIntercalibration_Stat225: 1.04719318e-05 + syst_JES_EtaIntercalibration_Stat226: 3.03960372e-06 + syst_JES_EtaIntercalibration_Stat227: 4.11546972e-08 syst_JES_EtaIntercalibration_Stat228: 0.0 syst_JES_EtaIntercalibration_Stat229: 0.0 - syst_JES_EtaIntercalibration_Stat23: 4.2010892337583116e-23 + syst_JES_EtaIntercalibration_Stat23: 4.20108923e-23 syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 - syst_JES_EtaIntercalibration_Stat232: 6.499776073065902e-08 - syst_JES_EtaIntercalibration_Stat233: 3.1421404340831108e-06 - syst_JES_EtaIntercalibration_Stat234: 9.080153123708872e-06 - syst_JES_EtaIntercalibration_Stat235: 7.93806449961198e-06 - syst_JES_EtaIntercalibration_Stat236: 2.132585461359052e-06 - syst_JES_EtaIntercalibration_Stat237: 4.867973294914425e-07 - syst_JES_EtaIntercalibration_Stat238: 1.2695932419479872e-08 + syst_JES_EtaIntercalibration_Stat232: 6.49977607e-08 + syst_JES_EtaIntercalibration_Stat233: 3.14214043e-06 + syst_JES_EtaIntercalibration_Stat234: 9.08015312e-06 + syst_JES_EtaIntercalibration_Stat235: 7.93806450e-06 + syst_JES_EtaIntercalibration_Stat236: 2.13258546e-06 + syst_JES_EtaIntercalibration_Stat237: 4.86797329e-07 + syst_JES_EtaIntercalibration_Stat238: 1.26959324e-08 syst_JES_EtaIntercalibration_Stat239: 0.0 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 - syst_JES_EtaIntercalibration_Stat243: 7.65341511821017e-09 - syst_JES_EtaIntercalibration_Stat244: 4.013356040460402e-07 - syst_JES_EtaIntercalibration_Stat245: 2.606775162916817e-06 - syst_JES_EtaIntercalibration_Stat25: 2.9237017631762646e-23 - syst_JES_EtaIntercalibration_Stat26: 1.4795484674386304e-21 - syst_JES_EtaIntercalibration_Stat27: 1.8011144857282117e-19 - syst_JES_EtaIntercalibration_Stat28: 1.3986310271015394e-08 - syst_JES_EtaIntercalibration_Stat29: 1.8625742267088312e-19 + syst_JES_EtaIntercalibration_Stat243: 7.65341512e-09 + syst_JES_EtaIntercalibration_Stat244: 4.01335604e-07 + syst_JES_EtaIntercalibration_Stat245: 2.60677516e-06 + syst_JES_EtaIntercalibration_Stat25: 2.92370176e-23 + syst_JES_EtaIntercalibration_Stat26: 1.47954847e-21 + syst_JES_EtaIntercalibration_Stat27: 1.80111449e-19 + syst_JES_EtaIntercalibration_Stat28: 1.39863103e-08 + syst_JES_EtaIntercalibration_Stat29: 1.86257423e-19 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 1.7058533157044892e-22 + syst_JES_EtaIntercalibration_Stat30: 1.70585332e-22 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 6.239556909749282e-23 - syst_JES_EtaIntercalibration_Stat36: 1.6722130643775632e-19 - syst_JES_EtaIntercalibration_Stat37: 1.172425192677696e-11 - syst_JES_EtaIntercalibration_Stat38: 1.1725983977873204e-11 - syst_JES_EtaIntercalibration_Stat39: 2.1644678779552262e-20 - syst_JES_EtaIntercalibration_Stat4: 4.0088315941181665e-23 - syst_JES_EtaIntercalibration_Stat40: 4.768335873237119e-23 + syst_JES_EtaIntercalibration_Stat35: 6.23955691e-23 + syst_JES_EtaIntercalibration_Stat36: 1.67221306e-19 + syst_JES_EtaIntercalibration_Stat37: 1.17242519e-11 + syst_JES_EtaIntercalibration_Stat38: 1.17259840e-11 + syst_JES_EtaIntercalibration_Stat39: 2.16446788e-20 + syst_JES_EtaIntercalibration_Stat4: 4.00883159e-23 + syst_JES_EtaIntercalibration_Stat40: 4.76833587e-23 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 - syst_JES_EtaIntercalibration_Stat44: 4.2010892337583116e-23 + syst_JES_EtaIntercalibration_Stat44: 4.20108923e-23 syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 - syst_JES_EtaIntercalibration_Stat47: 2.924567788580049e-23 - syst_JES_EtaIntercalibration_Stat48: 1.4209730495333118e-20 - syst_JES_EtaIntercalibration_Stat49: 4.197005956631465e-19 - syst_JES_EtaIntercalibration_Stat5: 1.3190787808163694e-21 - syst_JES_EtaIntercalibration_Stat50: 1.3986310271070966e-08 - syst_JES_EtaIntercalibration_Stat51: 2.1959251456164782e-16 - syst_JES_EtaIntercalibration_Stat52: 8.631442289675579e-22 + syst_JES_EtaIntercalibration_Stat47: 2.92456779e-23 + syst_JES_EtaIntercalibration_Stat48: 1.42097305e-20 + syst_JES_EtaIntercalibration_Stat49: 4.19700596e-19 + syst_JES_EtaIntercalibration_Stat5: 1.31907878e-21 + syst_JES_EtaIntercalibration_Stat50: 1.39863103e-08 + syst_JES_EtaIntercalibration_Stat51: 2.19592515e-16 + syst_JES_EtaIntercalibration_Stat52: 8.63144229e-22 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 syst_JES_EtaIntercalibration_Stat56: 0.0 - syst_JES_EtaIntercalibration_Stat57: 1.710557818302295e-19 - syst_JES_EtaIntercalibration_Stat58: 1.5239309720259642e-19 - syst_JES_EtaIntercalibration_Stat59: 9.39377869687806e-10 - syst_JES_EtaIntercalibration_Stat6: 8.338700303404603e-21 - syst_JES_EtaIntercalibration_Stat60: 1.1641980135561566e-11 - syst_JES_EtaIntercalibration_Stat61: 2.5079201623656208e-19 - syst_JES_EtaIntercalibration_Stat62: 3.503938783711839e-23 + syst_JES_EtaIntercalibration_Stat57: 1.71055782e-19 + syst_JES_EtaIntercalibration_Stat58: 1.52393097e-19 + syst_JES_EtaIntercalibration_Stat59: 9.39377870e-10 + syst_JES_EtaIntercalibration_Stat6: 8.33870030e-21 + syst_JES_EtaIntercalibration_Stat60: 1.16419801e-11 + syst_JES_EtaIntercalibration_Stat61: 2.50792016e-19 + syst_JES_EtaIntercalibration_Stat62: 3.50393878e-23 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 - syst_JES_EtaIntercalibration_Stat69: 4.5107738526776097e-23 - syst_JES_EtaIntercalibration_Stat7: 8.447593799420045e-22 - syst_JES_EtaIntercalibration_Stat70: 2.197230913559155e-19 - syst_JES_EtaIntercalibration_Stat71: 3.4197611145057335e-08 - syst_JES_EtaIntercalibration_Stat72: 1.3388752677930795e-08 - syst_JES_EtaIntercalibration_Stat73: 1.3986310270220327e-08 - syst_JES_EtaIntercalibration_Stat74: 2.4066928943053786e-20 + syst_JES_EtaIntercalibration_Stat69: 4.51077385e-23 + syst_JES_EtaIntercalibration_Stat7: 8.44759380e-22 + syst_JES_EtaIntercalibration_Stat70: 2.19723091e-19 + syst_JES_EtaIntercalibration_Stat71: 3.41976111e-08 + syst_JES_EtaIntercalibration_Stat72: 1.33887527e-08 + syst_JES_EtaIntercalibration_Stat73: 1.39863103e-08 + syst_JES_EtaIntercalibration_Stat74: 2.40669289e-20 syst_JES_EtaIntercalibration_Stat75: 0.0 syst_JES_EtaIntercalibration_Stat76: 0.0 syst_JES_EtaIntercalibration_Stat77: 0.0 syst_JES_EtaIntercalibration_Stat78: 0.0 - syst_JES_EtaIntercalibration_Stat79: 1.6920930574882694e-19 + syst_JES_EtaIntercalibration_Stat79: 1.69209306e-19 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 1.4326314948373849e-15 - syst_JES_EtaIntercalibration_Stat81: 7.652464915921585e-09 - syst_JES_EtaIntercalibration_Stat82: 6.397440292560378e-10 - syst_JES_EtaIntercalibration_Stat83: 2.365789525718634e-17 - syst_JES_EtaIntercalibration_Stat84: 3.3090003022060907e-23 - syst_JES_EtaIntercalibration_Stat85: 4.2010892337583116e-23 - syst_JES_EtaIntercalibration_Stat86: 4.2010892337583116e-23 - syst_JES_EtaIntercalibration_Stat87: 4.2010892337583116e-23 - syst_JES_EtaIntercalibration_Stat88: 4.2010892337583116e-23 - syst_JES_EtaIntercalibration_Stat89: 4.2010892337583116e-23 + syst_JES_EtaIntercalibration_Stat80: 1.43263149e-15 + syst_JES_EtaIntercalibration_Stat81: 7.65246492e-09 + syst_JES_EtaIntercalibration_Stat82: 6.39744029e-10 + syst_JES_EtaIntercalibration_Stat83: 2.36578953e-17 + syst_JES_EtaIntercalibration_Stat84: 3.30900030e-23 + syst_JES_EtaIntercalibration_Stat85: 4.20108923e-23 + syst_JES_EtaIntercalibration_Stat86: 4.20108923e-23 + syst_JES_EtaIntercalibration_Stat87: 4.20108923e-23 + syst_JES_EtaIntercalibration_Stat88: 4.20108923e-23 + syst_JES_EtaIntercalibration_Stat89: 4.20108923e-23 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 3.1406614012139226e-17 - syst_JES_EtaIntercalibration_Stat92: 3.41976112144993e-08 - syst_JES_EtaIntercalibration_Stat93: 1.3388752508940389e-08 - syst_JES_EtaIntercalibration_Stat94: 1.3986310265544366e-08 - syst_JES_EtaIntercalibration_Stat95: 1.661163781058328e-19 - syst_JES_EtaIntercalibration_Stat96: 2.7696852429608313e-21 - syst_JES_EtaIntercalibration_Stat97: 4.2010892337583116e-23 - syst_JES_EtaIntercalibration_Stat98: 4.2010892337583116e-23 - syst_JES_EtaIntercalibration_Stat99: 4.2010892337583116e-23 - syst_JES_EtaIntercalibration_TotalStat_MJB: 8.737795645928096e-05 - syst_JES_Flavour_Comp: 0.00021214450263912097 - syst_JES_Gjet_Generator: 0.00024872379761494475 - syst_JES_Gjet_OOC: 0.00020870253951497573 - syst_JES_Gjet_Purity: 3.417696702459128e-05 - syst_JES_Gjet_Stat1: 5.163685892848247e-07 - syst_JES_Gjet_Stat10: 4.452544441103312e-06 - syst_JES_Gjet_Stat11: 4.5717037305582264e-06 - syst_JES_Gjet_Stat12: 1.1461524505928521e-05 - syst_JES_Gjet_Stat13: 4.035380913866745e-05 - syst_JES_Gjet_Stat14: 0.00011258846954728533 - syst_JES_Gjet_Stat15: 0.00016979146032707298 - syst_JES_Gjet_Stat2: 6.870179528221585e-07 - syst_JES_Gjet_Stat3: 7.927321237341149e-07 - syst_JES_Gjet_Stat4: 5.993379096970256e-07 - syst_JES_Gjet_Stat5: 9.3702917875934e-15 - syst_JES_Gjet_Stat6: 2.297406146069954e-06 - syst_JES_Gjet_Stat7: 2.0514050672648734e-06 - syst_JES_Gjet_Stat8: 1.480454054504901e-06 - syst_JES_Gjet_Stat9: 2.353249402422106e-06 - syst_JES_Gjet_Veto: 0.00021251134087384608 - syst_JES_Gjet_dPhi: 2.122501060070407e-05 - syst_JES_LArESZee: 0.00037557520844699004 - syst_JES_LArEsmear: 3.313370300766276e-05 - syst_JES_LAr_JVT: 4.150697863010508e-05 - syst_JES_MJB_Alpha: 2.8930365967266986e-06 - syst_JES_MJB_Asym: 5.39918834177879e-05 - syst_JES_MJB_Beta: 3.1689043453534536e-06 - syst_JES_MJB_Stat1: 4.329271238695914e-09 - syst_JES_MJB_Stat10: 3.8051763099756625e-06 - syst_JES_MJB_Stat11: 4.635611798889117e-06 - syst_JES_MJB_Stat12: 8.184503940374151e-06 - syst_JES_MJB_Stat13: 9.103106763627459e-06 - syst_JES_MJB_Stat14: 9.655971869780896e-06 - syst_JES_MJB_Stat15: 1.2610257650024443e-05 - syst_JES_MJB_Stat16: 2.8162909562046324e-06 - syst_JES_MJB_Stat2: 3.779025280082154e-08 - syst_JES_MJB_Stat3: 7.549143444788951e-09 - syst_JES_MJB_Stat4: 6.3072630157620665e-09 + syst_JES_EtaIntercalibration_Stat91: 3.14066140e-17 + syst_JES_EtaIntercalibration_Stat92: 3.41976112e-08 + syst_JES_EtaIntercalibration_Stat93: 1.33887525e-08 + syst_JES_EtaIntercalibration_Stat94: 1.39863103e-08 + syst_JES_EtaIntercalibration_Stat95: 1.66116378e-19 + syst_JES_EtaIntercalibration_Stat96: 2.76968524e-21 + syst_JES_EtaIntercalibration_Stat97: 4.20108923e-23 + syst_JES_EtaIntercalibration_Stat98: 4.20108923e-23 + syst_JES_EtaIntercalibration_Stat99: 4.20108923e-23 + syst_JES_EtaIntercalibration_TotalStat_MJB: 8.73779565e-05 + syst_JES_Flavour_Comp: 2.12144503e-04 + syst_JES_Gjet_Generator: 2.48723798e-04 + syst_JES_Gjet_OOC: 2.08702540e-04 + syst_JES_Gjet_Purity: 3.41769670e-05 + syst_JES_Gjet_Stat1: 5.16368589e-07 + syst_JES_Gjet_Stat10: 4.45254444e-06 + syst_JES_Gjet_Stat11: 4.57170373e-06 + syst_JES_Gjet_Stat12: 1.14615245e-05 + syst_JES_Gjet_Stat13: 4.03538091e-05 + syst_JES_Gjet_Stat14: 1.12588470e-04 + syst_JES_Gjet_Stat15: 1.69791460e-04 + syst_JES_Gjet_Stat2: 6.87017953e-07 + syst_JES_Gjet_Stat3: 7.92732124e-07 + syst_JES_Gjet_Stat4: 5.99337910e-07 + syst_JES_Gjet_Stat5: 9.37029179e-15 + syst_JES_Gjet_Stat6: 2.29740615e-06 + syst_JES_Gjet_Stat7: 2.05140507e-06 + syst_JES_Gjet_Stat8: 1.48045405e-06 + syst_JES_Gjet_Stat9: 2.35324940e-06 + syst_JES_Gjet_Veto: 2.12511341e-04 + syst_JES_Gjet_dPhi: 2.12250106e-05 + syst_JES_LArESZee: 3.75575208e-04 + syst_JES_LArEsmear: 3.31337030e-05 + syst_JES_LAr_JVT: 4.15069786e-05 + syst_JES_MJB_Alpha: 2.89303660e-06 + syst_JES_MJB_Asym: 5.39918834e-05 + syst_JES_MJB_Beta: 3.16890435e-06 + syst_JES_MJB_Stat1: 4.32927124e-09 + syst_JES_MJB_Stat10: 3.80517631e-06 + syst_JES_MJB_Stat11: 4.63561180e-06 + syst_JES_MJB_Stat12: 8.18450394e-06 + syst_JES_MJB_Stat13: 9.10310676e-06 + syst_JES_MJB_Stat14: 9.65597187e-06 + syst_JES_MJB_Stat15: 1.26102577e-05 + syst_JES_MJB_Stat16: 2.81629096e-06 + syst_JES_MJB_Stat2: 3.77902528e-08 + syst_JES_MJB_Stat3: 7.54914344e-09 + syst_JES_MJB_Stat4: 6.30726302e-09 syst_JES_MJB_Stat5: 0.0 - syst_JES_MJB_Stat6: 4.030482229212778e-07 - syst_JES_MJB_Stat7: 5.395338265577053e-07 - syst_JES_MJB_Stat8: 6.894585756229304e-07 - syst_JES_MJB_Stat9: 2.364965489705928e-06 - syst_JES_MJB_Threshold: 3.501925577450212e-05 - syst_JES_Pileup_MuOffset: 5.230774703617047e-05 - syst_JES_Pileup_NPVOffset: 5.374847974594258e-05 - syst_JES_Pileup_Pt_term: 3.3229750224760946e-05 - syst_JES_PunchThrough_MC15: 0.00014254788248164194 + syst_JES_MJB_Stat6: 4.03048223e-07 + syst_JES_MJB_Stat7: 5.39533827e-07 + syst_JES_MJB_Stat8: 6.89458576e-07 + syst_JES_MJB_Stat9: 2.36496549e-06 + syst_JES_MJB_Threshold: 3.50192558e-05 + syst_JES_Pileup_MuOffset: 5.23077470e-05 + syst_JES_Pileup_NPVOffset: 5.37484797e-05 + syst_JES_Pileup_Pt_term: 3.32297502e-05 + syst_JES_PunchThrough_MC15: 1.42547882e-04 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 9.467174908598657e-05 - syst_JES_Zjet_MuScale: 8.11326215218022e-06 - syst_JES_Zjet_MuSmearID: 1.6469335953522838e-06 - syst_JES_Zjet_MuSmearMS: 2.5769703141479916e-05 - syst_JES_Zjet_OOC: 5.901017030987116e-05 - syst_JES_Zjet_Stat1: 6.445513478381687e-06 - syst_JES_Zjet_Stat10: 5.38604370108524e-06 - syst_JES_Zjet_Stat11: 7.208777618292855e-06 - syst_JES_Zjet_Stat12: 1.680874995352123e-05 - syst_JES_Zjet_Stat13: 2.6183298111582508e-05 - syst_JES_Zjet_Stat2: 5.108683856924421e-08 - syst_JES_Zjet_Stat3: 2.3854384817051983e-06 - syst_JES_Zjet_Stat4: 2.635200751366013e-06 - syst_JES_Zjet_Stat5: 3.536102656880877e-06 - syst_JES_Zjet_Stat6: 2.0375148465716763e-06 - syst_JES_Zjet_Stat7: 2.5850711789039776e-06 - syst_JES_Zjet_Stat8: 2.1193915990208134e-06 - syst_JES_Zjet_Stat9: 3.330738943162613e-06 - syst_JES_Zjet_Veto: 1.1183226938142677e-05 - syst_JES_Zjet_dPhi: 9.978963611016928e-06 - syst_PRW: 2.215e-05 - syst_Unfolding_bias: 2.189e-18 - syst_cleaning: 4.649690392918651e-05 - syst_lumi: 0.0001451 + syst_JES_Zjet_MC: 9.46717491e-05 + syst_JES_Zjet_MuScale: 8.11326215e-06 + syst_JES_Zjet_MuSmearID: 1.64693360e-06 + syst_JES_Zjet_MuSmearMS: 2.57697031e-05 + syst_JES_Zjet_OOC: 5.90101703e-05 + syst_JES_Zjet_Stat1: 6.44551348e-06 + syst_JES_Zjet_Stat10: 5.38604370e-06 + syst_JES_Zjet_Stat11: 7.20877762e-06 + syst_JES_Zjet_Stat12: 1.68087500e-05 + syst_JES_Zjet_Stat13: 2.61832981e-05 + syst_JES_Zjet_Stat2: 5.10868386e-08 + syst_JES_Zjet_Stat3: 2.38543848e-06 + syst_JES_Zjet_Stat4: 2.63520075e-06 + syst_JES_Zjet_Stat5: 3.53610266e-06 + syst_JES_Zjet_Stat6: 2.03751485e-06 + syst_JES_Zjet_Stat7: 2.58507118e-06 + syst_JES_Zjet_Stat8: 2.11939160e-06 + syst_JES_Zjet_Stat9: 3.33073894e-06 + syst_JES_Zjet_Veto: 1.11832269e-05 + syst_JES_Zjet_dPhi: 9.97896361e-06 + syst_PRW: 2.21500000e-05 + syst_Unfolding_bias: 2.18900000e-18 + syst_cleaning: 4.64969039e-05 + syst_lumi: 1.45100000e-04 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 2.28056659626506e-05 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 1.9208258640491074e-05 - syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 5.985965001568251e-06 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 2.28056660e-05 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 1.92082586e-05 + syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 5.98596500e-06 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 2.674573003303518e-05 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 2.185358780612465e-05 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 6.285664404022855e-05 -- stat: 0.00011602 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 2.67457300e-05 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 2.18535878e-05 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 6.28566440e-05 +- stat: 1.16020000e-04 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 6.237429338277108e-05 - syst_JER_NP1: 1.7716632721823866e-05 - syst_JER_NP2: 5.8151508148972376e-05 - syst_JER_NP3: 1.0748482532432196e-05 - syst_JER_NP4: 5.912016914725465e-16 - syst_JER_NP5: 3.618725293525332e-06 - syst_JER_NP6: 1.1687013433722062e-15 - syst_JER_NP7: 1.386572998438957e-15 - syst_JER_NP8: 7.674868256198278e-08 - syst_JES_EtaIntercalibration_Modelling: 0.0004165917573596482 - syst_JES_EtaIntercalibration_NonClosure: 2.3495142732062727e-09 - syst_JES_EtaIntercalibration_Stat0: 1.2999041310804423e-23 + syst_JER_NP0: 6.23742934e-05 + syst_JER_NP1: 1.77166327e-05 + syst_JER_NP2: 5.81515081e-05 + syst_JER_NP3: 1.07484825e-05 + syst_JER_NP4: 5.91201691e-16 + syst_JER_NP5: 3.61872529e-06 + syst_JER_NP6: 1.16870134e-15 + syst_JER_NP7: 1.38657300e-15 + syst_JER_NP8: 7.67486826e-08 + syst_JES_EtaIntercalibration_Modelling: 4.16591757e-04 + syst_JES_EtaIntercalibration_NonClosure: 2.34951427e-09 + syst_JES_EtaIntercalibration_Stat0: 1.29990413e-23 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 3.761125206221537e-20 - syst_JES_EtaIntercalibration_Stat101: 3.882619734148581e-16 - syst_JES_EtaIntercalibration_Stat102: 4.34131572045296e-09 - syst_JES_EtaIntercalibration_Stat103: 7.778560020980748e-11 - syst_JES_EtaIntercalibration_Stat104: 5.225604534405565e-17 - syst_JES_EtaIntercalibration_Stat105: 2.668335437590259e-23 - syst_JES_EtaIntercalibration_Stat106: 1.2999041310804423e-23 - syst_JES_EtaIntercalibration_Stat107: 1.2999041310804423e-23 - syst_JES_EtaIntercalibration_Stat108: 1.2999041310804423e-23 - syst_JES_EtaIntercalibration_Stat109: 1.2999041310804423e-23 + syst_JES_EtaIntercalibration_Stat100: 3.76112521e-20 + syst_JES_EtaIntercalibration_Stat101: 3.88261973e-16 + syst_JES_EtaIntercalibration_Stat102: 4.34131572e-09 + syst_JES_EtaIntercalibration_Stat103: 7.77856002e-11 + syst_JES_EtaIntercalibration_Stat104: 5.22560453e-17 + syst_JES_EtaIntercalibration_Stat105: 2.66833544e-23 + syst_JES_EtaIntercalibration_Stat106: 1.29990413e-23 + syst_JES_EtaIntercalibration_Stat107: 1.29990413e-23 + syst_JES_EtaIntercalibration_Stat108: 1.29990413e-23 + syst_JES_EtaIntercalibration_Stat109: 1.29990413e-23 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 4.495137039067885e-22 - syst_JES_EtaIntercalibration_Stat111: 2.2127455795911107e-16 - syst_JES_EtaIntercalibration_Stat112: 2.0645577149006922e-08 - syst_JES_EtaIntercalibration_Stat113: 1.1396050502124234e-08 - syst_JES_EtaIntercalibration_Stat114: 5.5364989682158895e-09 - syst_JES_EtaIntercalibration_Stat115: 3.418293018452339e-17 - syst_JES_EtaIntercalibration_Stat116: 4.60106457328084e-22 - syst_JES_EtaIntercalibration_Stat117: 1.2999041310804423e-23 - syst_JES_EtaIntercalibration_Stat118: 1.2999041310804423e-23 - syst_JES_EtaIntercalibration_Stat119: 1.2999041310804423e-23 + syst_JES_EtaIntercalibration_Stat110: 4.49513704e-22 + syst_JES_EtaIntercalibration_Stat111: 2.21274558e-16 + syst_JES_EtaIntercalibration_Stat112: 2.06455771e-08 + syst_JES_EtaIntercalibration_Stat113: 1.13960505e-08 + syst_JES_EtaIntercalibration_Stat114: 5.53649897e-09 + syst_JES_EtaIntercalibration_Stat115: 3.41829302e-17 + syst_JES_EtaIntercalibration_Stat116: 4.60106457e-22 + syst_JES_EtaIntercalibration_Stat117: 1.29990413e-23 + syst_JES_EtaIntercalibration_Stat118: 1.29990413e-23 + syst_JES_EtaIntercalibration_Stat119: 1.29990413e-23 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 2.0533462323729043e-19 - syst_JES_EtaIntercalibration_Stat121: 4.155821370980711e-09 - syst_JES_EtaIntercalibration_Stat122: 4.6020123283189925e-09 - syst_JES_EtaIntercalibration_Stat123: 4.0986650176649895e-09 - syst_JES_EtaIntercalibration_Stat124: 1.6191423748392232e-10 - syst_JES_EtaIntercalibration_Stat125: 4.692991663107873e-21 - syst_JES_EtaIntercalibration_Stat126: 1.2999041310804423e-23 - syst_JES_EtaIntercalibration_Stat127: 1.2999041310804423e-23 - syst_JES_EtaIntercalibration_Stat128: 1.2999041310804423e-23 - syst_JES_EtaIntercalibration_Stat129: 9.144622505467352e-17 + syst_JES_EtaIntercalibration_Stat120: 2.05334623e-19 + syst_JES_EtaIntercalibration_Stat121: 4.15582137e-09 + syst_JES_EtaIntercalibration_Stat122: 4.60201233e-09 + syst_JES_EtaIntercalibration_Stat123: 4.09866502e-09 + syst_JES_EtaIntercalibration_Stat124: 1.61914237e-10 + syst_JES_EtaIntercalibration_Stat125: 4.69299166e-21 + syst_JES_EtaIntercalibration_Stat126: 1.29990413e-23 + syst_JES_EtaIntercalibration_Stat127: 1.29990413e-23 + syst_JES_EtaIntercalibration_Stat128: 1.29990413e-23 + syst_JES_EtaIntercalibration_Stat129: 9.14462251e-17 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 4.466910883783857e-08 - syst_JES_EtaIntercalibration_Stat131: 1.0935779200404515e-08 - syst_JES_EtaIntercalibration_Stat132: 1.0205822638082635e-08 - syst_JES_EtaIntercalibration_Stat133: 1.98213809669937e-08 - syst_JES_EtaIntercalibration_Stat134: 8.279202857620416e-09 - syst_JES_EtaIntercalibration_Stat135: 4.642762189688376e-22 + syst_JES_EtaIntercalibration_Stat130: 4.46691088e-08 + syst_JES_EtaIntercalibration_Stat131: 1.09357792e-08 + syst_JES_EtaIntercalibration_Stat132: 1.02058226e-08 + syst_JES_EtaIntercalibration_Stat133: 1.98213810e-08 + syst_JES_EtaIntercalibration_Stat134: 8.27920286e-09 + syst_JES_EtaIntercalibration_Stat135: 4.64276219e-22 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 syst_JES_EtaIntercalibration_Stat138: 0.0 - syst_JES_EtaIntercalibration_Stat139: 6.659009141756752e-16 - syst_JES_EtaIntercalibration_Stat14: 3.75625454524368e-20 - syst_JES_EtaIntercalibration_Stat140: 2.0916648871174367e-09 - syst_JES_EtaIntercalibration_Stat141: 4.663843130938261e-08 - syst_JES_EtaIntercalibration_Stat142: 4.816293789834669e-08 - syst_JES_EtaIntercalibration_Stat143: 9.893155752842466e-11 - syst_JES_EtaIntercalibration_Stat144: 4.513650712006856e-18 + syst_JES_EtaIntercalibration_Stat139: 6.65900914e-16 + syst_JES_EtaIntercalibration_Stat14: 3.75625455e-20 + syst_JES_EtaIntercalibration_Stat140: 2.09166489e-09 + syst_JES_EtaIntercalibration_Stat141: 4.66384313e-08 + syst_JES_EtaIntercalibration_Stat142: 4.81629379e-08 + syst_JES_EtaIntercalibration_Stat143: 9.89315575e-11 + syst_JES_EtaIntercalibration_Stat144: 4.51365071e-18 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 1.0556533273286264e-17 - syst_JES_EtaIntercalibration_Stat148: 4.4591759707294824e-08 - syst_JES_EtaIntercalibration_Stat149: 1.0897722757874693e-08 - syst_JES_EtaIntercalibration_Stat15: 3.74407656852999e-20 - syst_JES_EtaIntercalibration_Stat150: 4.573610031769215e-08 - syst_JES_EtaIntercalibration_Stat151: 1.123575861903414e-08 - syst_JES_EtaIntercalibration_Stat152: 9.250133551468326e-17 + syst_JES_EtaIntercalibration_Stat147: 1.05565333e-17 + syst_JES_EtaIntercalibration_Stat148: 4.45917597e-08 + syst_JES_EtaIntercalibration_Stat149: 1.08977228e-08 + syst_JES_EtaIntercalibration_Stat15: 3.74407657e-20 + syst_JES_EtaIntercalibration_Stat150: 4.57361003e-08 + syst_JES_EtaIntercalibration_Stat151: 1.12357586e-08 + syst_JES_EtaIntercalibration_Stat152: 9.25013355e-17 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 syst_JES_EtaIntercalibration_Stat156: 0.0 - syst_JES_EtaIntercalibration_Stat157: 1.7567365244395642e-16 - syst_JES_EtaIntercalibration_Stat158: 2.624551413099008e-08 - syst_JES_EtaIntercalibration_Stat159: 5.073228040409774e-08 - syst_JES_EtaIntercalibration_Stat16: 3.7281969693714883e-20 - syst_JES_EtaIntercalibration_Stat160: 6.427505328663679e-08 - syst_JES_EtaIntercalibration_Stat161: 7.54385001640409e-11 - syst_JES_EtaIntercalibration_Stat162: 4.536098562366122e-18 + syst_JES_EtaIntercalibration_Stat157: 1.75673652e-16 + syst_JES_EtaIntercalibration_Stat158: 2.62455141e-08 + syst_JES_EtaIntercalibration_Stat159: 5.07322804e-08 + syst_JES_EtaIntercalibration_Stat16: 3.72819697e-20 + syst_JES_EtaIntercalibration_Stat160: 6.42750533e-08 + syst_JES_EtaIntercalibration_Stat161: 7.54385002e-11 + syst_JES_EtaIntercalibration_Stat162: 4.53609856e-18 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 2.3114191917521148e-17 - syst_JES_EtaIntercalibration_Stat166: 2.0660409162211672e-08 - syst_JES_EtaIntercalibration_Stat167: 1.778908302864428e-08 - syst_JES_EtaIntercalibration_Stat168: 4.206182661163802e-09 - syst_JES_EtaIntercalibration_Stat169: 8.342300037010177e-08 - syst_JES_EtaIntercalibration_Stat17: 1.0614873374185865e-23 - syst_JES_EtaIntercalibration_Stat170: 8.279201677477883e-09 + syst_JES_EtaIntercalibration_Stat165: 2.31141919e-17 + syst_JES_EtaIntercalibration_Stat166: 2.06604092e-08 + syst_JES_EtaIntercalibration_Stat167: 1.77890830e-08 + syst_JES_EtaIntercalibration_Stat168: 4.20618266e-09 + syst_JES_EtaIntercalibration_Stat169: 8.34230004e-08 + syst_JES_EtaIntercalibration_Stat17: 1.06148734e-23 + syst_JES_EtaIntercalibration_Stat170: 8.27920168e-09 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 - syst_JES_EtaIntercalibration_Stat175: 2.4628295738521472e-12 - syst_JES_EtaIntercalibration_Stat176: 2.6470254692909548e-08 - syst_JES_EtaIntercalibration_Stat177: 5.7306321003882286e-08 - syst_JES_EtaIntercalibration_Stat178: 1.0291083069823117e-07 - syst_JES_EtaIntercalibration_Stat179: 5.8477051909274637e-08 + syst_JES_EtaIntercalibration_Stat175: 2.46282957e-12 + syst_JES_EtaIntercalibration_Stat176: 2.64702547e-08 + syst_JES_EtaIntercalibration_Stat177: 5.73063210e-08 + syst_JES_EtaIntercalibration_Stat178: 1.02910831e-07 + syst_JES_EtaIntercalibration_Stat179: 5.84770519e-08 syst_JES_EtaIntercalibration_Stat18: 0.0 - syst_JES_EtaIntercalibration_Stat180: 7.708492119531291e-11 + syst_JES_EtaIntercalibration_Stat180: 7.70849212e-11 syst_JES_EtaIntercalibration_Stat181: 0.0 - syst_JES_EtaIntercalibration_Stat182: 2.7391541848484763e-12 - syst_JES_EtaIntercalibration_Stat183: 1.139891489353263e-07 - syst_JES_EtaIntercalibration_Stat184: 3.604706229361832e-07 - syst_JES_EtaIntercalibration_Stat185: 8.655846810104718e-07 - syst_JES_EtaIntercalibration_Stat186: 1.0131151797796734e-07 - syst_JES_EtaIntercalibration_Stat187: 4.8540713033715935e-09 + syst_JES_EtaIntercalibration_Stat182: 2.73915418e-12 + syst_JES_EtaIntercalibration_Stat183: 1.13989149e-07 + syst_JES_EtaIntercalibration_Stat184: 3.60470623e-07 + syst_JES_EtaIntercalibration_Stat185: 8.65584681e-07 + syst_JES_EtaIntercalibration_Stat186: 1.01311518e-07 + syst_JES_EtaIntercalibration_Stat187: 4.85407130e-09 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 - syst_JES_EtaIntercalibration_Stat192: 4.527377475894868e-09 - syst_JES_EtaIntercalibration_Stat193: 4.007804511200615e-07 - syst_JES_EtaIntercalibration_Stat194: 9.478542292989992e-07 - syst_JES_EtaIntercalibration_Stat195: 3.5463408476202624e-07 - syst_JES_EtaIntercalibration_Stat196: 1.9167222229629417e-07 - syst_JES_EtaIntercalibration_Stat197: 3.772265363041153e-10 - syst_JES_EtaIntercalibration_Stat198: 2.0749782528980877e-07 - syst_JES_EtaIntercalibration_Stat199: 9.37875108956411e-07 + syst_JES_EtaIntercalibration_Stat192: 4.52737748e-09 + syst_JES_EtaIntercalibration_Stat193: 4.00780451e-07 + syst_JES_EtaIntercalibration_Stat194: 9.47854229e-07 + syst_JES_EtaIntercalibration_Stat195: 3.54634085e-07 + syst_JES_EtaIntercalibration_Stat196: 1.91672222e-07 + syst_JES_EtaIntercalibration_Stat197: 3.77226536e-10 + syst_JES_EtaIntercalibration_Stat198: 2.07497825e-07 + syst_JES_EtaIntercalibration_Stat199: 9.37875109e-07 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 1.9009094533932962e-06 - syst_JES_EtaIntercalibration_Stat201: 5.826121072377401e-07 - syst_JES_EtaIntercalibration_Stat202: 6.9229481487297014e-09 + syst_JES_EtaIntercalibration_Stat200: 1.90090945e-06 + syst_JES_EtaIntercalibration_Stat201: 5.82612107e-07 + syst_JES_EtaIntercalibration_Stat202: 6.92294815e-09 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 - syst_JES_EtaIntercalibration_Stat207: 1.6316015713096136e-09 - syst_JES_EtaIntercalibration_Stat208: 8.135238333939578e-07 - syst_JES_EtaIntercalibration_Stat209: 2.28557799035605e-06 + syst_JES_EtaIntercalibration_Stat207: 1.63160157e-09 + syst_JES_EtaIntercalibration_Stat208: 8.13523833e-07 + syst_JES_EtaIntercalibration_Stat209: 2.28557799e-06 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 8.536159836249553e-07 - syst_JES_EtaIntercalibration_Stat211: 1.5372052298489618e-07 - syst_JES_EtaIntercalibration_Stat212: 9.708586753487864e-07 - syst_JES_EtaIntercalibration_Stat213: 2.1256479012291754e-06 - syst_JES_EtaIntercalibration_Stat214: 5.829765068165269e-07 - syst_JES_EtaIntercalibration_Stat215: 7.071291955519638e-09 + syst_JES_EtaIntercalibration_Stat210: 8.53615984e-07 + syst_JES_EtaIntercalibration_Stat211: 1.53720523e-07 + syst_JES_EtaIntercalibration_Stat212: 9.70858675e-07 + syst_JES_EtaIntercalibration_Stat213: 2.12564790e-06 + syst_JES_EtaIntercalibration_Stat214: 5.82976507e-07 + syst_JES_EtaIntercalibration_Stat215: 7.07129196e-09 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 syst_JES_EtaIntercalibration_Stat219: 0.0 - syst_JES_EtaIntercalibration_Stat22: 1.2999041310804423e-23 - syst_JES_EtaIntercalibration_Stat220: 6.075511892013709e-09 - syst_JES_EtaIntercalibration_Stat221: 5.624660523089372e-07 - syst_JES_EtaIntercalibration_Stat222: 2.309245980834437e-06 - syst_JES_EtaIntercalibration_Stat223: 1.5080933881892062e-06 - syst_JES_EtaIntercalibration_Stat224: 3.6515059181110466e-06 - syst_JES_EtaIntercalibration_Stat225: 6.357153195416955e-06 - syst_JES_EtaIntercalibration_Stat226: 2.2035686397296547e-06 - syst_JES_EtaIntercalibration_Stat227: 3.60972131992208e-08 + syst_JES_EtaIntercalibration_Stat22: 1.29990413e-23 + syst_JES_EtaIntercalibration_Stat220: 6.07551189e-09 + syst_JES_EtaIntercalibration_Stat221: 5.62466052e-07 + syst_JES_EtaIntercalibration_Stat222: 2.30924598e-06 + syst_JES_EtaIntercalibration_Stat223: 1.50809339e-06 + syst_JES_EtaIntercalibration_Stat224: 3.65150592e-06 + syst_JES_EtaIntercalibration_Stat225: 6.35715320e-06 + syst_JES_EtaIntercalibration_Stat226: 2.20356864e-06 + syst_JES_EtaIntercalibration_Stat227: 3.60972132e-08 syst_JES_EtaIntercalibration_Stat228: 0.0 syst_JES_EtaIntercalibration_Stat229: 0.0 - syst_JES_EtaIntercalibration_Stat23: 1.2999041310804423e-23 + syst_JES_EtaIntercalibration_Stat23: 1.29990413e-23 syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 - syst_JES_EtaIntercalibration_Stat232: 3.0689057443166936e-08 - syst_JES_EtaIntercalibration_Stat233: 1.933052939652714e-06 - syst_JES_EtaIntercalibration_Stat234: 5.745034094763929e-06 - syst_JES_EtaIntercalibration_Stat235: 4.4839314223123445e-06 - syst_JES_EtaIntercalibration_Stat236: 1.3863982788145694e-06 - syst_JES_EtaIntercalibration_Stat237: 2.939611198781227e-07 - syst_JES_EtaIntercalibration_Stat238: 7.009609618231246e-09 + syst_JES_EtaIntercalibration_Stat232: 3.06890574e-08 + syst_JES_EtaIntercalibration_Stat233: 1.93305294e-06 + syst_JES_EtaIntercalibration_Stat234: 5.74503409e-06 + syst_JES_EtaIntercalibration_Stat235: 4.48393142e-06 + syst_JES_EtaIntercalibration_Stat236: 1.38639828e-06 + syst_JES_EtaIntercalibration_Stat237: 2.93961120e-07 + syst_JES_EtaIntercalibration_Stat238: 7.00960962e-09 syst_JES_EtaIntercalibration_Stat239: 0.0 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 - syst_JES_EtaIntercalibration_Stat243: 4.370481160361522e-09 - syst_JES_EtaIntercalibration_Stat244: 4.019739763653861e-07 - syst_JES_EtaIntercalibration_Stat245: 1.6637553906749633e-06 - syst_JES_EtaIntercalibration_Stat25: 8.911401404941875e-24 - syst_JES_EtaIntercalibration_Stat26: 4.161387028383685e-22 - syst_JES_EtaIntercalibration_Stat27: 4.117213198268945e-20 - syst_JES_EtaIntercalibration_Stat28: 8.279202860157684e-09 - syst_JES_EtaIntercalibration_Stat29: 4.2123293460981894e-20 + syst_JES_EtaIntercalibration_Stat243: 4.37048116e-09 + syst_JES_EtaIntercalibration_Stat244: 4.01973976e-07 + syst_JES_EtaIntercalibration_Stat245: 1.66375539e-06 + syst_JES_EtaIntercalibration_Stat25: 8.91140140e-24 + syst_JES_EtaIntercalibration_Stat26: 4.16138703e-22 + syst_JES_EtaIntercalibration_Stat27: 4.11721320e-20 + syst_JES_EtaIntercalibration_Stat28: 8.27920286e-09 + syst_JES_EtaIntercalibration_Stat29: 4.21232935e-20 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 4.979926291623201e-23 + syst_JES_EtaIntercalibration_Stat30: 4.97992629e-23 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 1.940846400414005e-23 - syst_JES_EtaIntercalibration_Stat36: 3.675568777220064e-20 - syst_JES_EtaIntercalibration_Stat37: 2.517535846122458e-12 - syst_JES_EtaIntercalibration_Stat38: 2.516669820652567e-12 - syst_JES_EtaIntercalibration_Stat39: 5.50296086484358e-21 - syst_JES_EtaIntercalibration_Stat4: 1.2218752421994646e-23 - syst_JES_EtaIntercalibration_Stat40: 1.5449893203514384e-23 + syst_JES_EtaIntercalibration_Stat35: 1.94084640e-23 + syst_JES_EtaIntercalibration_Stat36: 3.67556878e-20 + syst_JES_EtaIntercalibration_Stat37: 2.51753585e-12 + syst_JES_EtaIntercalibration_Stat38: 2.51666982e-12 + syst_JES_EtaIntercalibration_Stat39: 5.50296086e-21 + syst_JES_EtaIntercalibration_Stat4: 1.22187524e-23 + syst_JES_EtaIntercalibration_Stat40: 1.54498932e-23 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 - syst_JES_EtaIntercalibration_Stat44: 1.2999041310804423e-23 + syst_JES_EtaIntercalibration_Stat44: 1.29990413e-23 syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 - syst_JES_EtaIntercalibration_Stat47: 8.914865506557012e-24 - syst_JES_EtaIntercalibration_Stat48: 3.401264470752017e-21 - syst_JES_EtaIntercalibration_Stat49: 9.244500027043108e-20 - syst_JES_EtaIntercalibration_Stat5: 2.565160813672313e-22 - syst_JES_EtaIntercalibration_Stat50: 8.279202860167933e-09 - syst_JES_EtaIntercalibration_Stat51: 3.4040885350003386e-17 - syst_JES_EtaIntercalibration_Stat52: 1.1617386313194546e-22 + syst_JES_EtaIntercalibration_Stat47: 8.91486551e-24 + syst_JES_EtaIntercalibration_Stat48: 3.40126447e-21 + syst_JES_EtaIntercalibration_Stat49: 9.24450003e-20 + syst_JES_EtaIntercalibration_Stat5: 2.56516081e-22 + syst_JES_EtaIntercalibration_Stat50: 8.27920286e-09 + syst_JES_EtaIntercalibration_Stat51: 3.40408854e-17 + syst_JES_EtaIntercalibration_Stat52: 1.16173863e-22 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 syst_JES_EtaIntercalibration_Stat56: 0.0 - syst_JES_EtaIntercalibration_Stat57: 3.7573086277817265e-20 - syst_JES_EtaIntercalibration_Stat58: 3.347573371862072e-20 - syst_JES_EtaIntercalibration_Stat59: 1.7052041957104516e-10 - syst_JES_EtaIntercalibration_Stat6: 1.5644280328605725e-21 - syst_JES_EtaIntercalibration_Stat60: 2.5339902034747385e-12 - syst_JES_EtaIntercalibration_Stat61: 5.3567765260462383e-20 - syst_JES_EtaIntercalibration_Stat62: 1.082878164892062e-23 + syst_JES_EtaIntercalibration_Stat57: 3.75730863e-20 + syst_JES_EtaIntercalibration_Stat58: 3.34757337e-20 + syst_JES_EtaIntercalibration_Stat59: 1.70520420e-10 + syst_JES_EtaIntercalibration_Stat6: 1.56442803e-21 + syst_JES_EtaIntercalibration_Stat60: 2.53399020e-12 + syst_JES_EtaIntercalibration_Stat61: 5.35677653e-20 + syst_JES_EtaIntercalibration_Stat62: 1.08287816e-23 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 - syst_JES_EtaIntercalibration_Stat69: 1.3837546097484192e-23 - syst_JES_EtaIntercalibration_Stat7: 1.0586405763997524e-22 - syst_JES_EtaIntercalibration_Stat70: 4.9622584575977094e-20 - syst_JES_EtaIntercalibration_Stat71: 4.3474475270068453e-08 - syst_JES_EtaIntercalibration_Stat72: 8.17008364786191e-09 - syst_JES_EtaIntercalibration_Stat73: 8.279202859997973e-09 - syst_JES_EtaIntercalibration_Stat74: 5.8165349193054796e-21 + syst_JES_EtaIntercalibration_Stat69: 1.38375461e-23 + syst_JES_EtaIntercalibration_Stat7: 1.05864058e-22 + syst_JES_EtaIntercalibration_Stat70: 4.96225846e-20 + syst_JES_EtaIntercalibration_Stat71: 4.34744753e-08 + syst_JES_EtaIntercalibration_Stat72: 8.17008365e-09 + syst_JES_EtaIntercalibration_Stat73: 8.27920286e-09 + syst_JES_EtaIntercalibration_Stat74: 5.81653492e-21 syst_JES_EtaIntercalibration_Stat75: 0.0 syst_JES_EtaIntercalibration_Stat76: 0.0 syst_JES_EtaIntercalibration_Stat77: 0.0 syst_JES_EtaIntercalibration_Stat78: 0.0 - syst_JES_EtaIntercalibration_Stat79: 3.726232869628521e-20 + syst_JES_EtaIntercalibration_Stat79: 3.72623287e-20 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 2.4410273964050466e-16 - syst_JES_EtaIntercalibration_Stat81: 4.341375952784872e-09 - syst_JES_EtaIntercalibration_Stat82: 8.006864581719864e-11 - syst_JES_EtaIntercalibration_Stat83: 4.7516340039506414e-18 - syst_JES_EtaIntercalibration_Stat84: 1.1078531344451756e-23 - syst_JES_EtaIntercalibration_Stat85: 1.2999041310804423e-23 - syst_JES_EtaIntercalibration_Stat86: 1.2999041310804423e-23 - syst_JES_EtaIntercalibration_Stat87: 1.2999041310804423e-23 - syst_JES_EtaIntercalibration_Stat88: 1.2999041310804423e-23 - syst_JES_EtaIntercalibration_Stat89: 1.2999041310804423e-23 + syst_JES_EtaIntercalibration_Stat80: 2.44102740e-16 + syst_JES_EtaIntercalibration_Stat81: 4.34137595e-09 + syst_JES_EtaIntercalibration_Stat82: 8.00686458e-11 + syst_JES_EtaIntercalibration_Stat83: 4.75163400e-18 + syst_JES_EtaIntercalibration_Stat84: 1.10785313e-23 + syst_JES_EtaIntercalibration_Stat85: 1.29990413e-23 + syst_JES_EtaIntercalibration_Stat86: 1.29990413e-23 + syst_JES_EtaIntercalibration_Stat87: 1.29990413e-23 + syst_JES_EtaIntercalibration_Stat88: 1.29990413e-23 + syst_JES_EtaIntercalibration_Stat89: 1.29990413e-23 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 5.827347568791482e-18 - syst_JES_EtaIntercalibration_Stat92: 4.3474475281528716e-08 - syst_JES_EtaIntercalibration_Stat93: 8.17008361987226e-09 - syst_JES_EtaIntercalibration_Stat94: 8.279202859108825e-09 - syst_JES_EtaIntercalibration_Stat95: 3.744529977180047e-20 - syst_JES_EtaIntercalibration_Stat96: 4.60106457328084e-22 - syst_JES_EtaIntercalibration_Stat97: 1.2999041310804423e-23 - syst_JES_EtaIntercalibration_Stat98: 1.2999041310804423e-23 - syst_JES_EtaIntercalibration_Stat99: 1.2999041310804423e-23 - syst_JES_EtaIntercalibration_TotalStat_MJB: 5.522768395469794e-05 - syst_JES_Flavour_Comp: 0.00012943304523961414 - syst_JES_Gjet_Generator: 0.00014845666034233695 - syst_JES_Gjet_OOC: 0.0001251969272785878 - syst_JES_Gjet_Purity: 2.0751049973435083e-05 - syst_JES_Gjet_Stat1: 3.5987300093227335e-07 - syst_JES_Gjet_Stat10: 2.968422308230418e-06 - syst_JES_Gjet_Stat11: 3.0852401851395623e-06 - syst_JES_Gjet_Stat12: 7.16204138147777e-06 - syst_JES_Gjet_Stat13: 2.504290867690892e-05 - syst_JES_Gjet_Stat14: 6.831334477977199e-05 - syst_JES_Gjet_Stat15: 0.00010788745385817574 - syst_JES_Gjet_Stat2: 6.064775902702318e-07 - syst_JES_Gjet_Stat3: 6.411366210683961e-07 - syst_JES_Gjet_Stat4: 3.392346201377448e-07 - syst_JES_Gjet_Stat5: 1.6488855179937572e-15 - syst_JES_Gjet_Stat6: 1.4313322465451549e-06 - syst_JES_Gjet_Stat7: 1.1976293781884278e-06 - syst_JES_Gjet_Stat8: 9.590364161490427e-07 - syst_JES_Gjet_Stat9: 1.5176459007291524e-06 - syst_JES_Gjet_Veto: 0.00012791370870629935 - syst_JES_Gjet_dPhi: 1.3500564460421646e-05 - syst_JES_LArESZee: 0.00022242632488084677 - syst_JES_LArEsmear: 2.0504599484018215e-05 - syst_JES_LAr_JVT: 2.575137035188613e-05 - syst_JES_MJB_Alpha: 2.1692468739173054e-06 - syst_JES_MJB_Asym: 3.593101828504169e-05 - syst_JES_MJB_Beta: 2.1903143039299176e-06 - syst_JES_MJB_Stat1: 1.5865603364552683e-09 - syst_JES_MJB_Stat10: 2.0697185195093554e-06 - syst_JES_MJB_Stat11: 2.6823307029521916e-06 - syst_JES_MJB_Stat12: 4.949022529752719e-06 - syst_JES_MJB_Stat13: 6.314647317942627e-06 - syst_JES_MJB_Stat14: 7.354322334518659e-06 - syst_JES_MJB_Stat15: 1.0192357430938144e-05 - syst_JES_MJB_Stat16: 4.3337993435321857e-07 - syst_JES_MJB_Stat2: 4.476626554393386e-08 - syst_JES_MJB_Stat3: 1.3787124428248263e-09 - syst_JES_MJB_Stat4: 1.1544118632446569e-09 + syst_JES_EtaIntercalibration_Stat91: 5.82734757e-18 + syst_JES_EtaIntercalibration_Stat92: 4.34744753e-08 + syst_JES_EtaIntercalibration_Stat93: 8.17008362e-09 + syst_JES_EtaIntercalibration_Stat94: 8.27920286e-09 + syst_JES_EtaIntercalibration_Stat95: 3.74452998e-20 + syst_JES_EtaIntercalibration_Stat96: 4.60106457e-22 + syst_JES_EtaIntercalibration_Stat97: 1.29990413e-23 + syst_JES_EtaIntercalibration_Stat98: 1.29990413e-23 + syst_JES_EtaIntercalibration_Stat99: 1.29990413e-23 + syst_JES_EtaIntercalibration_TotalStat_MJB: 5.52276840e-05 + syst_JES_Flavour_Comp: 1.29433045e-04 + syst_JES_Gjet_Generator: 1.48456660e-04 + syst_JES_Gjet_OOC: 1.25196927e-04 + syst_JES_Gjet_Purity: 2.07510500e-05 + syst_JES_Gjet_Stat1: 3.59873001e-07 + syst_JES_Gjet_Stat10: 2.96842231e-06 + syst_JES_Gjet_Stat11: 3.08524019e-06 + syst_JES_Gjet_Stat12: 7.16204138e-06 + syst_JES_Gjet_Stat13: 2.50429087e-05 + syst_JES_Gjet_Stat14: 6.83133448e-05 + syst_JES_Gjet_Stat15: 1.07887454e-04 + syst_JES_Gjet_Stat2: 6.06477590e-07 + syst_JES_Gjet_Stat3: 6.41136621e-07 + syst_JES_Gjet_Stat4: 3.39234620e-07 + syst_JES_Gjet_Stat5: 1.64888552e-15 + syst_JES_Gjet_Stat6: 1.43133225e-06 + syst_JES_Gjet_Stat7: 1.19762938e-06 + syst_JES_Gjet_Stat8: 9.59036416e-07 + syst_JES_Gjet_Stat9: 1.51764590e-06 + syst_JES_Gjet_Veto: 1.27913709e-04 + syst_JES_Gjet_dPhi: 1.35005645e-05 + syst_JES_LArESZee: 2.22426325e-04 + syst_JES_LArEsmear: 2.05045995e-05 + syst_JES_LAr_JVT: 2.57513704e-05 + syst_JES_MJB_Alpha: 2.16924687e-06 + syst_JES_MJB_Asym: 3.59310183e-05 + syst_JES_MJB_Beta: 2.19031430e-06 + syst_JES_MJB_Stat1: 1.58656034e-09 + syst_JES_MJB_Stat10: 2.06971852e-06 + syst_JES_MJB_Stat11: 2.68233070e-06 + syst_JES_MJB_Stat12: 4.94902253e-06 + syst_JES_MJB_Stat13: 6.31464732e-06 + syst_JES_MJB_Stat14: 7.35432233e-06 + syst_JES_MJB_Stat15: 1.01923574e-05 + syst_JES_MJB_Stat16: 4.33379934e-07 + syst_JES_MJB_Stat2: 4.47662655e-08 + syst_JES_MJB_Stat3: 1.37871244e-09 + syst_JES_MJB_Stat4: 1.15441186e-09 syst_JES_MJB_Stat5: 0.0 - syst_JES_MJB_Stat6: 2.2637904054925227e-07 - syst_JES_MJB_Stat7: 3.0380171164758106e-07 - syst_JES_MJB_Stat8: 3.867648768955113e-07 - syst_JES_MJB_Stat9: 1.268522711661088e-06 - syst_JES_MJB_Threshold: 2.2941801912665885e-05 - syst_JES_Pileup_MuOffset: 3.285534659686305e-05 - syst_JES_Pileup_NPVOffset: 3.3446993885848694e-05 - syst_JES_Pileup_Pt_term: 2.0215357404705958e-05 - syst_JES_PunchThrough_MC15: 9.735066859041083e-05 + syst_JES_MJB_Stat6: 2.26379041e-07 + syst_JES_MJB_Stat7: 3.03801712e-07 + syst_JES_MJB_Stat8: 3.86764877e-07 + syst_JES_MJB_Stat9: 1.26852271e-06 + syst_JES_MJB_Threshold: 2.29418019e-05 + syst_JES_Pileup_MuOffset: 3.28553466e-05 + syst_JES_Pileup_NPVOffset: 3.34469939e-05 + syst_JES_Pileup_Pt_term: 2.02153574e-05 + syst_JES_PunchThrough_MC15: 9.73506686e-05 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 5.8001035335586896e-05 - syst_JES_Zjet_MuScale: 5.199544114631589e-06 - syst_JES_Zjet_MuSmearID: 1.1209265575852864e-06 - syst_JES_Zjet_MuSmearMS: 1.5744294204568206e-05 - syst_JES_Zjet_OOC: 3.668752376489861e-05 - syst_JES_Zjet_Stat1: 4.6764859403188624e-06 - syst_JES_Zjet_Stat10: 3.327172222774168e-06 - syst_JES_Zjet_Stat11: 4.556182256012154e-06 - syst_JES_Zjet_Stat12: 1.0281494772162267e-05 - syst_JES_Zjet_Stat13: 1.5763965237211097e-05 - syst_JES_Zjet_Stat2: 3.072658132627194e-08 - syst_JES_Zjet_Stat3: 1.5412893401305285e-06 - syst_JES_Zjet_Stat4: 1.6853708048972488e-06 - syst_JES_Zjet_Stat5: 2.3750618413001375e-06 - syst_JES_Zjet_Stat6: 1.2776936800344596e-06 - syst_JES_Zjet_Stat7: 1.7043740053169082e-06 - syst_JES_Zjet_Stat8: 1.220957553521006e-06 - syst_JES_Zjet_Stat9: 2.0756648934738958e-06 - syst_JES_Zjet_Veto: 7.396408097853985e-06 - syst_JES_Zjet_dPhi: 6.525697721316855e-06 - syst_PRW: 1.459e-05 - syst_Unfolding_bias: 6.065e-19 - syst_cleaning: 2.5409185347035432e-05 - syst_lumi: 8.159e-05 + syst_JES_Zjet_MC: 5.80010353e-05 + syst_JES_Zjet_MuScale: 5.19954411e-06 + syst_JES_Zjet_MuSmearID: 1.12092656e-06 + syst_JES_Zjet_MuSmearMS: 1.57442942e-05 + syst_JES_Zjet_OOC: 3.66875238e-05 + syst_JES_Zjet_Stat1: 4.67648594e-06 + syst_JES_Zjet_Stat10: 3.32717222e-06 + syst_JES_Zjet_Stat11: 4.55618226e-06 + syst_JES_Zjet_Stat12: 1.02814948e-05 + syst_JES_Zjet_Stat13: 1.57639652e-05 + syst_JES_Zjet_Stat2: 3.07265813e-08 + syst_JES_Zjet_Stat3: 1.54128934e-06 + syst_JES_Zjet_Stat4: 1.68537080e-06 + syst_JES_Zjet_Stat5: 2.37506184e-06 + syst_JES_Zjet_Stat6: 1.27769368e-06 + syst_JES_Zjet_Stat7: 1.70437401e-06 + syst_JES_Zjet_Stat8: 1.22095755e-06 + syst_JES_Zjet_Stat9: 2.07566489e-06 + syst_JES_Zjet_Veto: 7.39640810e-06 + syst_JES_Zjet_dPhi: 6.52569772e-06 + syst_PRW: 1.45900000e-05 + syst_Unfolding_bias: 6.06500000e-19 + syst_cleaning: 2.54091853e-05 + syst_lumi: 8.15900000e-05 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.3567512327247027e-05 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 1.4491907120872669e-05 - syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 3.561880542634747e-06 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.35675123e-05 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 1.44919071e-05 + syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 3.56188054e-06 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 2.0176537735696874e-05 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.3405321555263044e-05 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 3.86080395869824e-05 -- stat: 7.561e-05 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 2.01765377e-05 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.34053216e-05 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 3.86080396e-05 +- stat: 7.56100000e-05 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 3.49682537167643e-05 - syst_JER_NP1: 1.045562920153541e-05 - syst_JER_NP2: 3.391547545000659e-05 - syst_JER_NP3: 6.627660296062254e-06 - syst_JER_NP4: 9.926025790818801e-17 - syst_JER_NP5: 1.5933934699251156e-06 - syst_JER_NP6: 1.9596190956407828e-16 - syst_JER_NP7: 2.3183448298301095e-16 - syst_JER_NP8: 1.271812828210189e-08 - syst_JES_EtaIntercalibration_Modelling: 0.00022653526767371122 - syst_JES_EtaIntercalibration_NonClosure: 4.0737724531446276e-10 - syst_JES_EtaIntercalibration_Stat0: 3.716981033042811e-24 + syst_JER_NP0: 3.49682537e-05 + syst_JER_NP1: 1.04556292e-05 + syst_JER_NP2: 3.39154755e-05 + syst_JER_NP3: 6.62766030e-06 + syst_JER_NP4: 9.92602579e-17 + syst_JER_NP5: 1.59339347e-06 + syst_JER_NP6: 1.95961910e-16 + syst_JER_NP7: 2.31834483e-16 + syst_JER_NP8: 1.27181283e-08 + syst_JES_EtaIntercalibration_Modelling: 2.26535268e-04 + syst_JES_EtaIntercalibration_NonClosure: 4.07377245e-10 + syst_JES_EtaIntercalibration_Stat0: 3.71698103e-24 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 7.375329523490798e-21 - syst_JES_EtaIntercalibration_Stat101: 5.883202762951485e-17 - syst_JES_EtaIntercalibration_Stat102: 2.4834371335234156e-09 - syst_JES_EtaIntercalibration_Stat103: 3.1042531964226115e-12 - syst_JES_EtaIntercalibration_Stat104: 7.984795031026155e-18 - syst_JES_EtaIntercalibration_Stat105: 8.022153700846176e-24 - syst_JES_EtaIntercalibration_Stat106: 3.716981033042811e-24 - syst_JES_EtaIntercalibration_Stat107: 3.716981033042811e-24 - syst_JES_EtaIntercalibration_Stat108: 3.716981033042811e-24 - syst_JES_EtaIntercalibration_Stat109: 3.716981033042811e-24 + syst_JES_EtaIntercalibration_Stat100: 7.37532952e-21 + syst_JES_EtaIntercalibration_Stat101: 5.88320276e-17 + syst_JES_EtaIntercalibration_Stat102: 2.48343713e-09 + syst_JES_EtaIntercalibration_Stat103: 3.10425320e-12 + syst_JES_EtaIntercalibration_Stat104: 7.98479503e-18 + syst_JES_EtaIntercalibration_Stat105: 8.02215370e-24 + syst_JES_EtaIntercalibration_Stat106: 3.71698103e-24 + syst_JES_EtaIntercalibration_Stat107: 3.71698103e-24 + syst_JES_EtaIntercalibration_Stat108: 3.71698103e-24 + syst_JES_EtaIntercalibration_Stat109: 3.71698103e-24 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 1.1268995474309144e-22 - syst_JES_EtaIntercalibration_Stat111: 3.1474121115608615e-17 - syst_JES_EtaIntercalibration_Stat112: 2.84142311737527e-08 - syst_JES_EtaIntercalibration_Stat113: 2.824975158447037e-08 - syst_JES_EtaIntercalibration_Stat114: 3.3813093935566787e-09 - syst_JES_EtaIntercalibration_Stat115: 4.278526951510298e-18 - syst_JES_EtaIntercalibration_Stat116: 4.418466569976512e-23 - syst_JES_EtaIntercalibration_Stat117: 3.716981033042811e-24 - syst_JES_EtaIntercalibration_Stat118: 3.716981033042811e-24 - syst_JES_EtaIntercalibration_Stat119: 3.716981033042811e-24 + syst_JES_EtaIntercalibration_Stat110: 1.12689955e-22 + syst_JES_EtaIntercalibration_Stat111: 3.14741211e-17 + syst_JES_EtaIntercalibration_Stat112: 2.84142312e-08 + syst_JES_EtaIntercalibration_Stat113: 2.82497516e-08 + syst_JES_EtaIntercalibration_Stat114: 3.38130939e-09 + syst_JES_EtaIntercalibration_Stat115: 4.27852695e-18 + syst_JES_EtaIntercalibration_Stat116: 4.41846657e-23 + syst_JES_EtaIntercalibration_Stat117: 3.71698103e-24 + syst_JES_EtaIntercalibration_Stat118: 3.71698103e-24 + syst_JES_EtaIntercalibration_Stat119: 3.71698103e-24 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 3.754220125405542e-20 - syst_JES_EtaIntercalibration_Stat121: 2.443834767900645e-09 - syst_JES_EtaIntercalibration_Stat122: 2.5478424809041866e-09 - syst_JES_EtaIntercalibration_Stat123: 2.4956243316948986e-09 - syst_JES_EtaIntercalibration_Stat124: 2.3245839799843753e-11 - syst_JES_EtaIntercalibration_Stat125: 1.0518744554365792e-21 - syst_JES_EtaIntercalibration_Stat126: 3.716981033042811e-24 - syst_JES_EtaIntercalibration_Stat127: 3.716981033042811e-24 - syst_JES_EtaIntercalibration_Stat128: 3.716981033042811e-24 - syst_JES_EtaIntercalibration_Stat129: 1.459293130894201e-17 + syst_JES_EtaIntercalibration_Stat120: 3.75422013e-20 + syst_JES_EtaIntercalibration_Stat121: 2.44383477e-09 + syst_JES_EtaIntercalibration_Stat122: 2.54784248e-09 + syst_JES_EtaIntercalibration_Stat123: 2.49562433e-09 + syst_JES_EtaIntercalibration_Stat124: 2.32458398e-11 + syst_JES_EtaIntercalibration_Stat125: 1.05187446e-21 + syst_JES_EtaIntercalibration_Stat126: 3.71698103e-24 + syst_JES_EtaIntercalibration_Stat127: 3.71698103e-24 + syst_JES_EtaIntercalibration_Stat128: 3.71698103e-24 + syst_JES_EtaIntercalibration_Stat129: 1.45929313e-17 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 2.623184539537703e-08 - syst_JES_EtaIntercalibration_Stat131: 2.9325297779732776e-08 - syst_JES_EtaIntercalibration_Stat132: 2.3198752804407393e-09 - syst_JES_EtaIntercalibration_Stat133: 2.7327769664925093e-08 - syst_JES_EtaIntercalibration_Stat134: 4.8341538035479e-09 - syst_JES_EtaIntercalibration_Stat135: 4.5284468363888293e-23 + syst_JES_EtaIntercalibration_Stat130: 2.62318454e-08 + syst_JES_EtaIntercalibration_Stat131: 2.93252978e-08 + syst_JES_EtaIntercalibration_Stat132: 2.31987528e-09 + syst_JES_EtaIntercalibration_Stat133: 2.73277697e-08 + syst_JES_EtaIntercalibration_Stat134: 4.83415380e-09 + syst_JES_EtaIntercalibration_Stat135: 4.52844684e-23 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 syst_JES_EtaIntercalibration_Stat138: 0.0 - syst_JES_EtaIntercalibration_Stat139: 1.0106221202803747e-16 - syst_JES_EtaIntercalibration_Stat14: 7.319689599034016e-21 - syst_JES_EtaIntercalibration_Stat140: 1.137593374486244e-08 - syst_JES_EtaIntercalibration_Stat141: 2.9743241047337126e-08 - syst_JES_EtaIntercalibration_Stat142: 2.864173262915496e-08 - syst_JES_EtaIntercalibration_Stat143: 9.465985527138734e-12 - syst_JES_EtaIntercalibration_Stat144: 7.871370020523745e-19 + syst_JES_EtaIntercalibration_Stat139: 1.01062212e-16 + syst_JES_EtaIntercalibration_Stat14: 7.31968960e-21 + syst_JES_EtaIntercalibration_Stat140: 1.13759337e-08 + syst_JES_EtaIntercalibration_Stat141: 2.97432410e-08 + syst_JES_EtaIntercalibration_Stat142: 2.86417326e-08 + syst_JES_EtaIntercalibration_Stat143: 9.46598553e-12 + syst_JES_EtaIntercalibration_Stat144: 7.87137002e-19 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 1.3893241630375541e-18 - syst_JES_EtaIntercalibration_Stat148: 2.6214603544908153e-08 - syst_JES_EtaIntercalibration_Stat149: 2.8156377174052418e-08 - syst_JES_EtaIntercalibration_Stat15: 7.292521995184039e-21 - syst_JES_EtaIntercalibration_Stat150: 3.881398752264833e-08 - syst_JES_EtaIntercalibration_Stat151: 2.8202570848686825e-08 - syst_JES_EtaIntercalibration_Stat152: 1.2733886877147921e-17 + syst_JES_EtaIntercalibration_Stat147: 1.38932416e-18 + syst_JES_EtaIntercalibration_Stat148: 2.62146035e-08 + syst_JES_EtaIntercalibration_Stat149: 2.81563772e-08 + syst_JES_EtaIntercalibration_Stat15: 7.29252200e-21 + syst_JES_EtaIntercalibration_Stat150: 3.88139875e-08 + syst_JES_EtaIntercalibration_Stat151: 2.82025708e-08 + syst_JES_EtaIntercalibration_Stat152: 1.27338869e-17 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 syst_JES_EtaIntercalibration_Stat156: 0.0 - syst_JES_EtaIntercalibration_Stat157: 2.4989428794342215e-17 - syst_JES_EtaIntercalibration_Stat158: 1.1760816770956003e-08 - syst_JES_EtaIntercalibration_Stat159: 3.2550382286541584e-08 - syst_JES_EtaIntercalibration_Stat16: 7.261263501751951e-21 - syst_JES_EtaIntercalibration_Stat160: 3.846608376219237e-08 - syst_JES_EtaIntercalibration_Stat161: 8.762595663814462e-12 - syst_JES_EtaIntercalibration_Stat162: 7.953736457162758e-19 + syst_JES_EtaIntercalibration_Stat157: 2.49894288e-17 + syst_JES_EtaIntercalibration_Stat158: 1.17608168e-08 + syst_JES_EtaIntercalibration_Stat159: 3.25503823e-08 + syst_JES_EtaIntercalibration_Stat16: 7.26126350e-21 + syst_JES_EtaIntercalibration_Stat160: 3.84660838e-08 + syst_JES_EtaIntercalibration_Stat161: 8.76259566e-12 + syst_JES_EtaIntercalibration_Stat162: 7.95373646e-19 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 2.9256824003127886e-18 - syst_JES_EtaIntercalibration_Stat166: 2.7996256334553017e-08 - syst_JES_EtaIntercalibration_Stat167: 7.141255544370331e-09 - syst_JES_EtaIntercalibration_Stat168: 1.9657093112326325e-08 - syst_JES_EtaIntercalibration_Stat169: 2.5217324897776134e-08 - syst_JES_EtaIntercalibration_Stat17: 3.0319549386493193e-24 - syst_JES_EtaIntercalibration_Stat170: 4.8332876197207816e-09 + syst_JES_EtaIntercalibration_Stat165: 2.92568240e-18 + syst_JES_EtaIntercalibration_Stat166: 2.79962563e-08 + syst_JES_EtaIntercalibration_Stat167: 7.14125554e-09 + syst_JES_EtaIntercalibration_Stat168: 1.96570931e-08 + syst_JES_EtaIntercalibration_Stat169: 2.52173249e-08 + syst_JES_EtaIntercalibration_Stat17: 3.03195494e-24 + syst_JES_EtaIntercalibration_Stat170: 4.83328762e-09 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 - syst_JES_EtaIntercalibration_Stat175: 3.2121175087787496e-13 - syst_JES_EtaIntercalibration_Stat176: 1.5165504704858162e-08 - syst_JES_EtaIntercalibration_Stat177: 2.7951102518505418e-08 - syst_JES_EtaIntercalibration_Stat178: 4.7827524502110706e-08 - syst_JES_EtaIntercalibration_Stat179: 2.629404820011555e-08 + syst_JES_EtaIntercalibration_Stat175: 3.21211751e-13 + syst_JES_EtaIntercalibration_Stat176: 1.51655047e-08 + syst_JES_EtaIntercalibration_Stat177: 2.79511025e-08 + syst_JES_EtaIntercalibration_Stat178: 4.78275245e-08 + syst_JES_EtaIntercalibration_Stat179: 2.62940482e-08 syst_JES_EtaIntercalibration_Stat18: 0.0 - syst_JES_EtaIntercalibration_Stat180: 2.679482600259949e-12 + syst_JES_EtaIntercalibration_Stat180: 2.67948260e-12 syst_JES_EtaIntercalibration_Stat181: 0.0 - syst_JES_EtaIntercalibration_Stat182: 3.718601108709172e-13 - syst_JES_EtaIntercalibration_Stat183: 4.856666655227637e-08 - syst_JES_EtaIntercalibration_Stat184: 2.587521375274029e-07 - syst_JES_EtaIntercalibration_Stat185: 4.937142164248462e-07 - syst_JES_EtaIntercalibration_Stat186: 5.1933151984065055e-08 - syst_JES_EtaIntercalibration_Stat187: 3.738631520711054e-09 + syst_JES_EtaIntercalibration_Stat182: 3.71860111e-13 + syst_JES_EtaIntercalibration_Stat183: 4.85666666e-08 + syst_JES_EtaIntercalibration_Stat184: 2.58752138e-07 + syst_JES_EtaIntercalibration_Stat185: 4.93714216e-07 + syst_JES_EtaIntercalibration_Stat186: 5.19331520e-08 + syst_JES_EtaIntercalibration_Stat187: 3.73863152e-09 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 - syst_JES_EtaIntercalibration_Stat192: 2.3945331187773036e-09 - syst_JES_EtaIntercalibration_Stat193: 2.633670633222765e-07 - syst_JES_EtaIntercalibration_Stat194: 4.6775592994637705e-07 - syst_JES_EtaIntercalibration_Stat195: 1.482034638596548e-07 - syst_JES_EtaIntercalibration_Stat196: 5.519908581670533e-08 - syst_JES_EtaIntercalibration_Stat197: 7.108898661654631e-11 - syst_JES_EtaIntercalibration_Stat198: 1.4171813821808414e-07 - syst_JES_EtaIntercalibration_Stat199: 5.733901355098464e-07 + syst_JES_EtaIntercalibration_Stat192: 2.39453312e-09 + syst_JES_EtaIntercalibration_Stat193: 2.63367063e-07 + syst_JES_EtaIntercalibration_Stat194: 4.67755930e-07 + syst_JES_EtaIntercalibration_Stat195: 1.48203464e-07 + syst_JES_EtaIntercalibration_Stat196: 5.51990858e-08 + syst_JES_EtaIntercalibration_Stat197: 7.10889866e-11 + syst_JES_EtaIntercalibration_Stat198: 1.41718138e-07 + syst_JES_EtaIntercalibration_Stat199: 5.73390136e-07 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 1.001665283415573e-06 - syst_JES_EtaIntercalibration_Stat201: 3.3885709008371066e-07 - syst_JES_EtaIntercalibration_Stat202: 3.094625161772424e-09 + syst_JES_EtaIntercalibration_Stat200: 1.00166528e-06 + syst_JES_EtaIntercalibration_Stat201: 3.38857090e-07 + syst_JES_EtaIntercalibration_Stat202: 3.09462516e-09 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 - syst_JES_EtaIntercalibration_Stat207: 1.432819038326892e-08 - syst_JES_EtaIntercalibration_Stat208: 4.828685224779102e-07 - syst_JES_EtaIntercalibration_Stat209: 1.3259454098868473e-06 + syst_JES_EtaIntercalibration_Stat207: 1.43281904e-08 + syst_JES_EtaIntercalibration_Stat208: 4.82868522e-07 + syst_JES_EtaIntercalibration_Stat209: 1.32594541e-06 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 4.1986153372272626e-07 - syst_JES_EtaIntercalibration_Stat211: 2.5008121240908922e-08 - syst_JES_EtaIntercalibration_Stat212: 5.626068876222545e-07 - syst_JES_EtaIntercalibration_Stat213: 1.121921392077003e-06 - syst_JES_EtaIntercalibration_Stat214: 3.3920596619163407e-07 - syst_JES_EtaIntercalibration_Stat215: 3.121064431143623e-09 + syst_JES_EtaIntercalibration_Stat210: 4.19861534e-07 + syst_JES_EtaIntercalibration_Stat211: 2.50081212e-08 + syst_JES_EtaIntercalibration_Stat212: 5.62606888e-07 + syst_JES_EtaIntercalibration_Stat213: 1.12192139e-06 + syst_JES_EtaIntercalibration_Stat214: 3.39205966e-07 + syst_JES_EtaIntercalibration_Stat215: 3.12106443e-09 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 syst_JES_EtaIntercalibration_Stat219: 0.0 - syst_JES_EtaIntercalibration_Stat22: 3.716981033042811e-24 - syst_JES_EtaIntercalibration_Stat220: 1.4894978575009767e-08 - syst_JES_EtaIntercalibration_Stat221: 3.109458594353686e-07 - syst_JES_EtaIntercalibration_Stat222: 1.3363019671840641e-06 - syst_JES_EtaIntercalibration_Stat223: 7.757169329078745e-07 - syst_JES_EtaIntercalibration_Stat224: 2.05415578766558e-06 - syst_JES_EtaIntercalibration_Stat225: 3.555174081532436e-06 - syst_JES_EtaIntercalibration_Stat226: 1.3435663614053457e-06 - syst_JES_EtaIntercalibration_Stat227: 1.9998489942993196e-08 + syst_JES_EtaIntercalibration_Stat22: 3.71698103e-24 + syst_JES_EtaIntercalibration_Stat220: 1.48949786e-08 + syst_JES_EtaIntercalibration_Stat221: 3.10945859e-07 + syst_JES_EtaIntercalibration_Stat222: 1.33630197e-06 + syst_JES_EtaIntercalibration_Stat223: 7.75716933e-07 + syst_JES_EtaIntercalibration_Stat224: 2.05415579e-06 + syst_JES_EtaIntercalibration_Stat225: 3.55517408e-06 + syst_JES_EtaIntercalibration_Stat226: 1.34356636e-06 + syst_JES_EtaIntercalibration_Stat227: 1.99984899e-08 syst_JES_EtaIntercalibration_Stat228: 0.0 syst_JES_EtaIntercalibration_Stat229: 0.0 - syst_JES_EtaIntercalibration_Stat23: 3.716981033042811e-24 + syst_JES_EtaIntercalibration_Stat23: 3.71698103e-24 syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 - syst_JES_EtaIntercalibration_Stat232: 1.4877944725918967e-08 - syst_JES_EtaIntercalibration_Stat233: 1.038118089380972e-06 - syst_JES_EtaIntercalibration_Stat234: 3.162048505320562e-06 - syst_JES_EtaIntercalibration_Stat235: 2.2544357941622555e-06 - syst_JES_EtaIntercalibration_Stat236: 8.210461862769962e-07 - syst_JES_EtaIntercalibration_Stat237: 1.5753790020182444e-07 - syst_JES_EtaIntercalibration_Stat238: 3.1237536314504702e-09 + syst_JES_EtaIntercalibration_Stat232: 1.48779447e-08 + syst_JES_EtaIntercalibration_Stat233: 1.03811809e-06 + syst_JES_EtaIntercalibration_Stat234: 3.16204851e-06 + syst_JES_EtaIntercalibration_Stat235: 2.25443579e-06 + syst_JES_EtaIntercalibration_Stat236: 8.21046186e-07 + syst_JES_EtaIntercalibration_Stat237: 1.57537900e-07 + syst_JES_EtaIntercalibration_Stat238: 3.12375363e-09 syst_JES_EtaIntercalibration_Stat239: 0.0 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 - syst_JES_EtaIntercalibration_Stat243: 2.500286305128521e-09 - syst_JES_EtaIntercalibration_Stat244: 2.6371093283508366e-07 - syst_JES_EtaIntercalibration_Stat245: 9.550195966575763e-07 - syst_JES_EtaIntercalibration_Stat25: 2.5054114931483812e-24 - syst_JES_EtaIntercalibration_Stat26: 1.074758852022164e-22 - syst_JES_EtaIntercalibration_Stat27: 8.42702386299576e-21 - syst_JES_EtaIntercalibration_Stat28: 4.8332877785170285e-09 - syst_JES_EtaIntercalibration_Stat29: 8.516485718886635e-21 + syst_JES_EtaIntercalibration_Stat243: 2.50028631e-09 + syst_JES_EtaIntercalibration_Stat244: 2.63710933e-07 + syst_JES_EtaIntercalibration_Stat245: 9.55019597e-07 + syst_JES_EtaIntercalibration_Stat25: 2.50541149e-24 + syst_JES_EtaIntercalibration_Stat26: 1.07475885e-22 + syst_JES_EtaIntercalibration_Stat27: 8.42702386e-21 + syst_JES_EtaIntercalibration_Stat28: 4.83328778e-09 + syst_JES_EtaIntercalibration_Stat29: 8.51648572e-21 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 1.337023511386393e-23 + syst_JES_EtaIntercalibration_Stat30: 1.33702351e-23 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 5.5879875196711034e-24 - syst_JES_EtaIntercalibration_Stat36: 7.1722416997756e-21 - syst_JES_EtaIntercalibration_Stat37: 9.273400017404671e-13 - syst_JES_EtaIntercalibration_Stat38: 9.27340001727188e-13 - syst_JES_EtaIntercalibration_Stat39: 1.2690431486754104e-21 - syst_JES_EtaIntercalibration_Stat4: 3.435695981893625e-24 - syst_JES_EtaIntercalibration_Stat40: 4.644494240495945e-24 + syst_JES_EtaIntercalibration_Stat35: 5.58798752e-24 + syst_JES_EtaIntercalibration_Stat36: 7.17224170e-21 + syst_JES_EtaIntercalibration_Stat37: 9.27340002e-13 + syst_JES_EtaIntercalibration_Stat38: 9.27340002e-13 + syst_JES_EtaIntercalibration_Stat39: 1.26904315e-21 + syst_JES_EtaIntercalibration_Stat4: 3.43569598e-24 + syst_JES_EtaIntercalibration_Stat40: 4.64449424e-24 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 - syst_JES_EtaIntercalibration_Stat44: 3.716981033042811e-24 + syst_JES_EtaIntercalibration_Stat44: 3.71698103e-24 syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 - syst_JES_EtaIntercalibration_Stat47: 2.50714354395595e-24 - syst_JES_EtaIntercalibration_Stat48: 7.296829311420131e-22 - syst_JES_EtaIntercalibration_Stat49: 1.8105034520817683e-20 - syst_JES_EtaIntercalibration_Stat5: 5.766913409268427e-23 - syst_JES_EtaIntercalibration_Stat50: 4.83328777851856e-09 - syst_JES_EtaIntercalibration_Stat51: 4.279148245480635e-18 - syst_JES_EtaIntercalibration_Stat52: 1.4246074865730558e-23 + syst_JES_EtaIntercalibration_Stat47: 2.50714354e-24 + syst_JES_EtaIntercalibration_Stat48: 7.29682931e-22 + syst_JES_EtaIntercalibration_Stat49: 1.81050345e-20 + syst_JES_EtaIntercalibration_Stat5: 5.76691341e-23 + syst_JES_EtaIntercalibration_Stat50: 4.83328778e-09 + syst_JES_EtaIntercalibration_Stat51: 4.27914825e-18 + syst_JES_EtaIntercalibration_Stat52: 1.42460749e-23 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 syst_JES_EtaIntercalibration_Stat56: 0.0 - syst_JES_EtaIntercalibration_Stat57: 7.323656920515051e-21 - syst_JES_EtaIntercalibration_Stat58: 6.5386826654915744e-21 - syst_JES_EtaIntercalibration_Stat59: 2.3997566113746047e-11 - syst_JES_EtaIntercalibration_Stat6: 2.216177113860713e-22 - syst_JES_EtaIntercalibration_Stat60: 9.298514532784328e-13 - syst_JES_EtaIntercalibration_Stat61: 1.0139370632835157e-20 - syst_JES_EtaIntercalibration_Stat62: 3.093442742318015e-24 + syst_JES_EtaIntercalibration_Stat57: 7.32365692e-21 + syst_JES_EtaIntercalibration_Stat58: 6.53868267e-21 + syst_JES_EtaIntercalibration_Stat59: 2.39975661e-11 + syst_JES_EtaIntercalibration_Stat6: 2.21617711e-22 + syst_JES_EtaIntercalibration_Stat60: 9.29851453e-13 + syst_JES_EtaIntercalibration_Stat61: 1.01393706e-20 + syst_JES_EtaIntercalibration_Stat62: 3.09344274e-24 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 - syst_JES_EtaIntercalibration_Stat69: 3.920229223846483e-24 - syst_JES_EtaIntercalibration_Stat7: 1.518081539312036e-23 - syst_JES_EtaIntercalibration_Stat70: 9.948659055370226e-21 - syst_JES_EtaIntercalibration_Stat71: 2.598942236758784e-08 - syst_JES_EtaIntercalibration_Stat72: 4.822895471937714e-09 - syst_JES_EtaIntercalibration_Stat73: 4.833287778488871e-09 - syst_JES_EtaIntercalibration_Stat74: 1.272303881743666e-21 + syst_JES_EtaIntercalibration_Stat69: 3.92022922e-24 + syst_JES_EtaIntercalibration_Stat7: 1.51808154e-23 + syst_JES_EtaIntercalibration_Stat70: 9.94865906e-21 + syst_JES_EtaIntercalibration_Stat71: 2.59894224e-08 + syst_JES_EtaIntercalibration_Stat72: 4.82289547e-09 + syst_JES_EtaIntercalibration_Stat73: 4.83328778e-09 + syst_JES_EtaIntercalibration_Stat74: 1.27230388e-21 syst_JES_EtaIntercalibration_Stat75: 0.0 syst_JES_EtaIntercalibration_Stat76: 0.0 syst_JES_EtaIntercalibration_Stat77: 0.0 syst_JES_EtaIntercalibration_Stat78: 0.0 - syst_JES_EtaIntercalibration_Stat79: 7.299183676211676e-21 + syst_JES_EtaIntercalibration_Stat79: 7.29918368e-21 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 3.528870119457501e-17 - syst_JES_EtaIntercalibration_Stat81: 2.4834463039498215e-09 - syst_JES_EtaIntercalibration_Stat82: 3.4663149290709294e-12 - syst_JES_EtaIntercalibration_Stat83: 8.384644938815239e-19 - syst_JES_EtaIntercalibration_Stat84: 3.446503554328648e-24 - syst_JES_EtaIntercalibration_Stat85: 3.716981033042811e-24 - syst_JES_EtaIntercalibration_Stat86: 3.716981033042811e-24 - syst_JES_EtaIntercalibration_Stat87: 3.716981033042811e-24 - syst_JES_EtaIntercalibration_Stat88: 3.716981033042811e-24 - syst_JES_EtaIntercalibration_Stat89: 3.716981033042811e-24 + syst_JES_EtaIntercalibration_Stat80: 3.52887012e-17 + syst_JES_EtaIntercalibration_Stat81: 2.48344630e-09 + syst_JES_EtaIntercalibration_Stat82: 3.46631493e-12 + syst_JES_EtaIntercalibration_Stat83: 8.38464494e-19 + syst_JES_EtaIntercalibration_Stat84: 3.44650355e-24 + syst_JES_EtaIntercalibration_Stat85: 3.71698103e-24 + syst_JES_EtaIntercalibration_Stat86: 3.71698103e-24 + syst_JES_EtaIntercalibration_Stat87: 3.71698103e-24 + syst_JES_EtaIntercalibration_Stat88: 3.71698103e-24 + syst_JES_EtaIntercalibration_Stat89: 3.71698103e-24 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 9.367972729865306e-19 - syst_JES_EtaIntercalibration_Stat92: 2.5989422369161027e-08 - syst_JES_EtaIntercalibration_Stat93: 4.822895468055034e-09 - syst_JES_EtaIntercalibration_Stat94: 4.833287778342146e-09 - syst_JES_EtaIntercalibration_Stat95: 7.542876573297485e-21 - syst_JES_EtaIntercalibration_Stat96: 4.418466569976512e-23 - syst_JES_EtaIntercalibration_Stat97: 3.716981033042811e-24 - syst_JES_EtaIntercalibration_Stat98: 3.716981033042811e-24 - syst_JES_EtaIntercalibration_Stat99: 3.716981033042811e-24 - syst_JES_EtaIntercalibration_TotalStat_MJB: 3.182031426620422e-05 - syst_JES_Flavour_Comp: 7.182392428710645e-05 - syst_JES_Gjet_Generator: 8.154080006352647e-05 - syst_JES_Gjet_OOC: 6.893928415642276e-05 - syst_JES_Gjet_Purity: 1.1285556875936605e-05 - syst_JES_Gjet_Stat1: 2.345112950371474e-07 - syst_JES_Gjet_Stat10: 1.8439069933160946e-06 - syst_JES_Gjet_Stat11: 1.9353621754080037e-06 - syst_JES_Gjet_Stat12: 3.931989827046861e-06 - syst_JES_Gjet_Stat13: 1.4391256677232882e-05 - syst_JES_Gjet_Stat14: 3.8319579368777e-05 - syst_JES_Gjet_Stat15: 6.27173731911661e-05 - syst_JES_Gjet_Stat2: 4.00709954331057e-07 - syst_JES_Gjet_Stat3: 4.2675784702803067e-07 - syst_JES_Gjet_Stat4: 1.8781380859777056e-07 - syst_JES_Gjet_Stat5: 2.483697096265486e-16 - syst_JES_Gjet_Stat6: 9.142544175447007e-07 - syst_JES_Gjet_Stat7: 6.38473445023362e-07 - syst_JES_Gjet_Stat8: 5.436384092390823e-07 - syst_JES_Gjet_Stat9: 9.300632397853384e-07 - syst_JES_Gjet_Veto: 7.093325084190066e-05 - syst_JES_Gjet_dPhi: 7.687406389673958e-06 - syst_JES_LArESZee: 0.00012123156519652792 - syst_JES_LArEsmear: 1.1459620238035814e-05 - syst_JES_LAr_JVT: 1.456247918453448e-05 - syst_JES_MJB_Alpha: 1.5285502935788537e-06 - syst_JES_MJB_Asym: 2.2520537293768106e-05 - syst_JES_MJB_Beta: 1.4157519980561566e-06 - syst_JES_MJB_Stat1: 4.197627827798505e-10 - syst_JES_MJB_Stat10: 1.0050868656489348e-06 - syst_JES_MJB_Stat11: 1.3671587938129207e-06 - syst_JES_MJB_Stat12: 2.5321155186918307e-06 - syst_JES_MJB_Stat13: 3.6095033938202636e-06 - syst_JES_MJB_Stat14: 4.791582828252058e-06 - syst_JES_MJB_Stat15: 6.455518414503981e-06 - syst_JES_MJB_Stat16: 1.8298393372096905e-06 - syst_JES_MJB_Stat2: 2.9205505422779454e-08 - syst_JES_MJB_Stat3: 1.9563513871490468e-10 - syst_JES_MJB_Stat4: 1.640252114767727e-10 + syst_JES_EtaIntercalibration_Stat91: 9.36797273e-19 + syst_JES_EtaIntercalibration_Stat92: 2.59894224e-08 + syst_JES_EtaIntercalibration_Stat93: 4.82289547e-09 + syst_JES_EtaIntercalibration_Stat94: 4.83328778e-09 + syst_JES_EtaIntercalibration_Stat95: 7.54287657e-21 + syst_JES_EtaIntercalibration_Stat96: 4.41846657e-23 + syst_JES_EtaIntercalibration_Stat97: 3.71698103e-24 + syst_JES_EtaIntercalibration_Stat98: 3.71698103e-24 + syst_JES_EtaIntercalibration_Stat99: 3.71698103e-24 + syst_JES_EtaIntercalibration_TotalStat_MJB: 3.18203143e-05 + syst_JES_Flavour_Comp: 7.18239243e-05 + syst_JES_Gjet_Generator: 8.15408001e-05 + syst_JES_Gjet_OOC: 6.89392842e-05 + syst_JES_Gjet_Purity: 1.12855569e-05 + syst_JES_Gjet_Stat1: 2.34511295e-07 + syst_JES_Gjet_Stat10: 1.84390699e-06 + syst_JES_Gjet_Stat11: 1.93536218e-06 + syst_JES_Gjet_Stat12: 3.93198983e-06 + syst_JES_Gjet_Stat13: 1.43912567e-05 + syst_JES_Gjet_Stat14: 3.83195794e-05 + syst_JES_Gjet_Stat15: 6.27173732e-05 + syst_JES_Gjet_Stat2: 4.00709954e-07 + syst_JES_Gjet_Stat3: 4.26757847e-07 + syst_JES_Gjet_Stat4: 1.87813809e-07 + syst_JES_Gjet_Stat5: 2.48369710e-16 + syst_JES_Gjet_Stat6: 9.14254418e-07 + syst_JES_Gjet_Stat7: 6.38473445e-07 + syst_JES_Gjet_Stat8: 5.43638409e-07 + syst_JES_Gjet_Stat9: 9.30063240e-07 + syst_JES_Gjet_Veto: 7.09332508e-05 + syst_JES_Gjet_dPhi: 7.68740639e-06 + syst_JES_LArESZee: 1.21231565e-04 + syst_JES_LArEsmear: 1.14596202e-05 + syst_JES_LAr_JVT: 1.45624792e-05 + syst_JES_MJB_Alpha: 1.52855029e-06 + syst_JES_MJB_Asym: 2.25205373e-05 + syst_JES_MJB_Beta: 1.41575200e-06 + syst_JES_MJB_Stat1: 4.19762783e-10 + syst_JES_MJB_Stat10: 1.00508687e-06 + syst_JES_MJB_Stat11: 1.36715879e-06 + syst_JES_MJB_Stat12: 2.53211552e-06 + syst_JES_MJB_Stat13: 3.60950339e-06 + syst_JES_MJB_Stat14: 4.79158283e-06 + syst_JES_MJB_Stat15: 6.45551841e-06 + syst_JES_MJB_Stat16: 1.82983934e-06 + syst_JES_MJB_Stat2: 2.92055054e-08 + syst_JES_MJB_Stat3: 1.95635139e-10 + syst_JES_MJB_Stat4: 1.64025211e-10 syst_JES_MJB_Stat5: 0.0 - syst_JES_MJB_Stat6: 1.144539173641514e-07 - syst_JES_MJB_Stat7: 1.5371950917173786e-07 - syst_JES_MJB_Stat8: 1.9658516602226122e-07 - syst_JES_MJB_Stat9: 5.605917832969014e-07 - syst_JES_MJB_Threshold: 1.3586332249728034e-05 - syst_JES_Pileup_MuOffset: 1.9108141589385403e-05 - syst_JES_Pileup_NPVOffset: 1.91731394142952e-05 - syst_JES_Pileup_Pt_term: 1.1282537480549311e-05 - syst_JES_PunchThrough_MC15: 6.114676769870997e-05 + syst_JES_MJB_Stat6: 1.14453917e-07 + syst_JES_MJB_Stat7: 1.53719509e-07 + syst_JES_MJB_Stat8: 1.96585166e-07 + syst_JES_MJB_Stat9: 5.60591783e-07 + syst_JES_MJB_Threshold: 1.35863322e-05 + syst_JES_Pileup_MuOffset: 1.91081416e-05 + syst_JES_Pileup_NPVOffset: 1.91731394e-05 + syst_JES_Pileup_Pt_term: 1.12825375e-05 + syst_JES_PunchThrough_MC15: 6.11467677e-05 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 3.2390521761774695e-05 - syst_JES_Zjet_MuScale: 2.978263252299904e-06 - syst_JES_Zjet_MuSmearID: 6.763490297176451e-07 - syst_JES_Zjet_MuSmearMS: 8.677214645264919e-06 - syst_JES_Zjet_OOC: 2.0727799569660064e-05 - syst_JES_Zjet_Stat1: 2.9581374207429918e-06 - syst_JES_Zjet_Stat10: 1.8288019985772106e-06 - syst_JES_Zjet_Stat11: 2.5500192156138745e-06 - syst_JES_Zjet_Stat12: 5.570831446023116e-06 - syst_JES_Zjet_Stat13: 8.606086683272485e-06 - syst_JES_Zjet_Stat2: 1.6263957083071776e-08 - syst_JES_Zjet_Stat3: 9.341257557202885e-07 - syst_JES_Zjet_Stat4: 1.0296334626943706e-06 - syst_JES_Zjet_Stat5: 1.4163815446411324e-06 - syst_JES_Zjet_Stat6: 7.838883641820434e-07 - syst_JES_Zjet_Stat7: 1.08033609006642e-06 - syst_JES_Zjet_Stat8: 6.346959665855771e-07 - syst_JES_Zjet_Stat9: 1.1778307009073927e-06 - syst_JES_Zjet_Veto: 4.327917368665903e-06 - syst_JES_Zjet_dPhi: 3.845277720789488e-06 - syst_PRW: 8.466e-06 - syst_Unfolding_bias: 1.539e-19 - syst_cleaning: 1.3025022072917958e-05 - syst_lumi: 4.182e-05 + syst_JES_Zjet_MC: 3.23905218e-05 + syst_JES_Zjet_MuScale: 2.97826325e-06 + syst_JES_Zjet_MuSmearID: 6.76349030e-07 + syst_JES_Zjet_MuSmearMS: 8.67721465e-06 + syst_JES_Zjet_OOC: 2.07277996e-05 + syst_JES_Zjet_Stat1: 2.95813742e-06 + syst_JES_Zjet_Stat10: 1.82880200e-06 + syst_JES_Zjet_Stat11: 2.55001922e-06 + syst_JES_Zjet_Stat12: 5.57083145e-06 + syst_JES_Zjet_Stat13: 8.60608668e-06 + syst_JES_Zjet_Stat2: 1.62639571e-08 + syst_JES_Zjet_Stat3: 9.34125756e-07 + syst_JES_Zjet_Stat4: 1.02963346e-06 + syst_JES_Zjet_Stat5: 1.41638154e-06 + syst_JES_Zjet_Stat6: 7.83888364e-07 + syst_JES_Zjet_Stat7: 1.08033609e-06 + syst_JES_Zjet_Stat8: 6.34695967e-07 + syst_JES_Zjet_Stat9: 1.17783070e-06 + syst_JES_Zjet_Veto: 4.32791737e-06 + syst_JES_Zjet_dPhi: 3.84527772e-06 + syst_PRW: 8.46600000e-06 + syst_Unfolding_bias: 1.53900000e-19 + syst_cleaning: 1.30250221e-05 + syst_lumi: 4.18200000e-05 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 7.381520778267849e-06 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 9.976651479830295e-06 - syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.967769803610168e-06 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 7.38152078e-06 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 9.97665148e-06 + syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.96776980e-06 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 1.3891510815962388e-05 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 7.690881353915167e-06 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 2.1846566663894807e-05 -- stat: 3.551e-05 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 1.38915108e-05 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 7.69088135e-06 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 2.18465667e-05 +- stat: 3.55100000e-05 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 1.2237059481346001e-05 - syst_JER_NP1: 3.6791596866675953e-06 - syst_JER_NP2: 1.2599935823249258e-05 - syst_JER_NP3: 2.342528708468692e-06 - syst_JER_NP4: 7.522520770991597e-18 - syst_JER_NP5: 3.0871541506701605e-07 - syst_JER_NP6: 1.482714830134237e-17 - syst_JER_NP7: 1.7451202680617745e-17 - syst_JER_NP8: 7.400242614266102e-10 - syst_JES_EtaIntercalibration_Modelling: 8.002364447461762e-05 - syst_JES_EtaIntercalibration_NonClosure: 2.563382563625648e-11 - syst_JES_EtaIntercalibration_Stat0: 5.942666320768818e-25 + syst_JER_NP0: 1.22370595e-05 + syst_JER_NP1: 3.67915969e-06 + syst_JER_NP2: 1.25999358e-05 + syst_JER_NP3: 2.34252871e-06 + syst_JER_NP4: 7.52252077e-18 + syst_JER_NP5: 3.08715415e-07 + syst_JER_NP6: 1.48271483e-17 + syst_JER_NP7: 1.74512027e-17 + syst_JER_NP8: 7.40024261e-10 + syst_JES_EtaIntercalibration_Modelling: 8.00236445e-05 + syst_JES_EtaIntercalibration_NonClosure: 2.56338256e-11 + syst_JES_EtaIntercalibration_Stat0: 5.94266632e-25 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 6.972685889531738e-22 - syst_JES_EtaIntercalibration_Stat101: 3.811195088158044e-18 - syst_JES_EtaIntercalibration_Stat102: 1.0224914138906826e-09 - syst_JES_EtaIntercalibration_Stat103: 4.638852013160153e-13 - syst_JES_EtaIntercalibration_Stat104: 5.264099535533119e-19 - syst_JES_EtaIntercalibration_Stat105: 1.3700936719801315e-24 - syst_JES_EtaIntercalibration_Stat106: 5.942666320768818e-25 - syst_JES_EtaIntercalibration_Stat107: 5.942666320768818e-25 - syst_JES_EtaIntercalibration_Stat108: 5.942666320768818e-25 - syst_JES_EtaIntercalibration_Stat109: 5.942666320768818e-25 + syst_JES_EtaIntercalibration_Stat100: 6.97268589e-22 + syst_JES_EtaIntercalibration_Stat101: 3.81119509e-18 + syst_JES_EtaIntercalibration_Stat102: 1.02249141e-09 + syst_JES_EtaIntercalibration_Stat103: 4.63885201e-13 + syst_JES_EtaIntercalibration_Stat104: 5.26409954e-19 + syst_JES_EtaIntercalibration_Stat105: 1.37009367e-24 + syst_JES_EtaIntercalibration_Stat106: 5.94266632e-25 + syst_JES_EtaIntercalibration_Stat107: 5.94266632e-25 + syst_JES_EtaIntercalibration_Stat108: 5.94266632e-25 + syst_JES_EtaIntercalibration_Stat109: 5.94266632e-25 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 1.5067104922645223e-23 - syst_JES_EtaIntercalibration_Stat111: 1.8356947097761108e-18 - syst_JES_EtaIntercalibration_Stat112: 1.8169209961095214e-08 - syst_JES_EtaIntercalibration_Stat113: 1.9347007664362315e-08 - syst_JES_EtaIntercalibration_Stat114: 1.4116213979957236e-09 - syst_JES_EtaIntercalibration_Stat115: 1.9109526474510037e-19 - syst_JES_EtaIntercalibration_Stat116: 4.921345576161057e-24 - syst_JES_EtaIntercalibration_Stat117: 5.942666320768818e-25 - syst_JES_EtaIntercalibration_Stat118: 5.942666320768818e-25 - syst_JES_EtaIntercalibration_Stat119: 5.942666320768818e-25 + syst_JES_EtaIntercalibration_Stat110: 1.50671049e-23 + syst_JES_EtaIntercalibration_Stat111: 1.83569471e-18 + syst_JES_EtaIntercalibration_Stat112: 1.81692100e-08 + syst_JES_EtaIntercalibration_Stat113: 1.93470077e-08 + syst_JES_EtaIntercalibration_Stat114: 1.41162140e-09 + syst_JES_EtaIntercalibration_Stat115: 1.91095265e-19 + syst_JES_EtaIntercalibration_Stat116: 4.92134558e-24 + syst_JES_EtaIntercalibration_Stat117: 5.94266632e-25 + syst_JES_EtaIntercalibration_Stat118: 5.94266632e-25 + syst_JES_EtaIntercalibration_Stat119: 5.94266632e-25 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 3.2510593658067828e-21 - syst_JES_EtaIntercalibration_Stat121: 1.0203295428806322e-09 - syst_JES_EtaIntercalibration_Stat122: 1.0339145163285986e-09 - syst_JES_EtaIntercalibration_Stat123: 1.032982446736371e-09 - syst_JES_EtaIntercalibration_Stat124: 1.4368281873627062e-12 - syst_JES_EtaIntercalibration_Stat125: 1.1939892241976055e-22 - syst_JES_EtaIntercalibration_Stat126: 5.942666320768818e-25 - syst_JES_EtaIntercalibration_Stat127: 5.942666320768818e-25 - syst_JES_EtaIntercalibration_Stat128: 5.942666320768818e-25 - syst_JES_EtaIntercalibration_Stat129: 1.0226967481614478e-18 + syst_JES_EtaIntercalibration_Stat120: 3.25105937e-21 + syst_JES_EtaIntercalibration_Stat121: 1.02032954e-09 + syst_JES_EtaIntercalibration_Stat122: 1.03391452e-09 + syst_JES_EtaIntercalibration_Stat123: 1.03298245e-09 + syst_JES_EtaIntercalibration_Stat124: 1.43682819e-12 + syst_JES_EtaIntercalibration_Stat125: 1.19398922e-22 + syst_JES_EtaIntercalibration_Stat126: 5.94266632e-25 + syst_JES_EtaIntercalibration_Stat127: 5.94266632e-25 + syst_JES_EtaIntercalibration_Stat128: 5.94266632e-25 + syst_JES_EtaIntercalibration_Stat129: 1.02269675e-18 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 4.784787251216009e-09 - syst_JES_EtaIntercalibration_Stat131: 2.361586533388702e-08 - syst_JES_EtaIntercalibration_Stat132: 1.8598619510060416e-10 - syst_JES_EtaIntercalibration_Stat133: 1.43416184841482e-08 - syst_JES_EtaIntercalibration_Stat134: 2.0117770129685378e-09 - syst_JES_EtaIntercalibration_Stat135: 4.6912596123003045e-24 + syst_JES_EtaIntercalibration_Stat130: 4.78478725e-09 + syst_JES_EtaIntercalibration_Stat131: 2.36158653e-08 + syst_JES_EtaIntercalibration_Stat132: 1.85986195e-10 + syst_JES_EtaIntercalibration_Stat133: 1.43416185e-08 + syst_JES_EtaIntercalibration_Stat134: 2.01177701e-09 + syst_JES_EtaIntercalibration_Stat135: 4.69125961e-24 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 syst_JES_EtaIntercalibration_Stat138: 0.0 - syst_JES_EtaIntercalibration_Stat139: 6.558811553932617e-18 - syst_JES_EtaIntercalibration_Stat14: 6.823235724243795e-22 - syst_JES_EtaIntercalibration_Stat140: 8.061624782267841e-09 - syst_JES_EtaIntercalibration_Stat141: 6.680499546254008e-09 - syst_JES_EtaIntercalibration_Stat142: 5.850973829201426e-09 - syst_JES_EtaIntercalibration_Stat143: 1.699859900109418e-12 - syst_JES_EtaIntercalibration_Stat144: 6.278595762588956e-20 + syst_JES_EtaIntercalibration_Stat139: 6.55881155e-18 + syst_JES_EtaIntercalibration_Stat14: 6.82323572e-22 + syst_JES_EtaIntercalibration_Stat140: 8.06162478e-09 + syst_JES_EtaIntercalibration_Stat141: 6.68049955e-09 + syst_JES_EtaIntercalibration_Stat142: 5.85097383e-09 + syst_JES_EtaIntercalibration_Stat143: 1.69985990e-12 + syst_JES_EtaIntercalibration_Stat144: 6.27859576e-20 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 6.960123184973094e-20 - syst_JES_EtaIntercalibration_Stat148: 4.781326962125736e-09 - syst_JES_EtaIntercalibration_Stat149: 1.9337713996236135e-08 - syst_JES_EtaIntercalibration_Stat15: 6.791265142247062e-22 - syst_JES_EtaIntercalibration_Stat150: 2.06996513887608e-08 - syst_JES_EtaIntercalibration_Stat151: 1.9338590776246318e-08 - syst_JES_EtaIntercalibration_Stat152: 7.029291909573823e-19 + syst_JES_EtaIntercalibration_Stat147: 6.96012318e-20 + syst_JES_EtaIntercalibration_Stat148: 4.78132696e-09 + syst_JES_EtaIntercalibration_Stat149: 1.93377140e-08 + syst_JES_EtaIntercalibration_Stat15: 6.79126514e-22 + syst_JES_EtaIntercalibration_Stat150: 2.06996514e-08 + syst_JES_EtaIntercalibration_Stat151: 1.93385908e-08 + syst_JES_EtaIntercalibration_Stat152: 7.02929191e-19 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 syst_JES_EtaIntercalibration_Stat156: 0.0 - syst_JES_EtaIntercalibration_Stat157: 1.4640875392885494e-18 - syst_JES_EtaIntercalibration_Stat158: 3.3329160736620714e-09 - syst_JES_EtaIntercalibration_Stat159: 7.354917181722715e-09 - syst_JES_EtaIntercalibration_Stat16: 6.761978172901773e-22 - syst_JES_EtaIntercalibration_Stat160: 8.305088485380515e-09 - syst_JES_EtaIntercalibration_Stat161: 1.7697313763111057e-12 - syst_JES_EtaIntercalibration_Stat162: 6.399111740702768e-20 + syst_JES_EtaIntercalibration_Stat157: 1.46408754e-18 + syst_JES_EtaIntercalibration_Stat158: 3.33291607e-09 + syst_JES_EtaIntercalibration_Stat159: 7.35491718e-09 + syst_JES_EtaIntercalibration_Stat16: 6.76197817e-22 + syst_JES_EtaIntercalibration_Stat160: 8.30508849e-09 + syst_JES_EtaIntercalibration_Stat161: 1.76973138e-12 + syst_JES_EtaIntercalibration_Stat162: 6.39911174e-20 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 1.2971543740048828e-19 - syst_JES_EtaIntercalibration_Stat166: 1.813364496922778e-08 - syst_JES_EtaIntercalibration_Stat167: 2.0411496833892414e-09 - syst_JES_EtaIntercalibration_Stat168: 1.1270372652363781e-08 - syst_JES_EtaIntercalibration_Stat169: 6.618951484185393e-09 - syst_JES_EtaIntercalibration_Stat17: 4.839349956347443e-25 - syst_JES_EtaIntercalibration_Stat170: 2.0117770046081253e-09 + syst_JES_EtaIntercalibration_Stat165: 1.29715437e-19 + syst_JES_EtaIntercalibration_Stat166: 1.81336450e-08 + syst_JES_EtaIntercalibration_Stat167: 2.04114968e-09 + syst_JES_EtaIntercalibration_Stat168: 1.12703727e-08 + syst_JES_EtaIntercalibration_Stat169: 6.61895148e-09 + syst_JES_EtaIntercalibration_Stat17: 4.83934996e-25 + syst_JES_EtaIntercalibration_Stat170: 2.01177700e-09 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 - syst_JES_EtaIntercalibration_Stat175: 1.5765668894108767e-14 - syst_JES_EtaIntercalibration_Stat176: 5.2136853667127825e-09 - syst_JES_EtaIntercalibration_Stat177: 8.805076119347294e-09 - syst_JES_EtaIntercalibration_Stat178: 9.153096893947972e-09 - syst_JES_EtaIntercalibration_Stat179: 6.462033193972312e-09 + syst_JES_EtaIntercalibration_Stat175: 1.57656689e-14 + syst_JES_EtaIntercalibration_Stat176: 5.21368537e-09 + syst_JES_EtaIntercalibration_Stat177: 8.80507612e-09 + syst_JES_EtaIntercalibration_Stat178: 9.15309689e-09 + syst_JES_EtaIntercalibration_Stat179: 6.46203319e-09 syst_JES_EtaIntercalibration_Stat18: 0.0 - syst_JES_EtaIntercalibration_Stat180: 4.826359574278293e-13 + syst_JES_EtaIntercalibration_Stat180: 4.82635957e-13 syst_JES_EtaIntercalibration_Stat181: 0.0 - syst_JES_EtaIntercalibration_Stat182: 1.823792118976579e-14 - syst_JES_EtaIntercalibration_Stat183: 1.2487334503407844e-08 - syst_JES_EtaIntercalibration_Stat184: 1.1317569173634416e-07 - syst_JES_EtaIntercalibration_Stat185: 1.526979733820983e-07 - syst_JES_EtaIntercalibration_Stat186: 1.676711289995985e-08 - syst_JES_EtaIntercalibration_Stat187: 4.973583885972371e-09 + syst_JES_EtaIntercalibration_Stat182: 1.82379212e-14 + syst_JES_EtaIntercalibration_Stat183: 1.24873345e-08 + syst_JES_EtaIntercalibration_Stat184: 1.13175692e-07 + syst_JES_EtaIntercalibration_Stat185: 1.52697973e-07 + syst_JES_EtaIntercalibration_Stat186: 1.67671129e-08 + syst_JES_EtaIntercalibration_Stat187: 4.97358389e-09 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 - syst_JES_EtaIntercalibration_Stat192: 8.600485355301735e-10 - syst_JES_EtaIntercalibration_Stat193: 6.279447586786596e-08 - syst_JES_EtaIntercalibration_Stat194: 1.6368833189937515e-07 - syst_JES_EtaIntercalibration_Stat195: 3.4809631928533806e-08 - syst_JES_EtaIntercalibration_Stat196: 5.0302223360404255e-09 - syst_JES_EtaIntercalibration_Stat197: 4.7117523889419315e-12 - syst_JES_EtaIntercalibration_Stat198: 5.4507620338811345e-08 - syst_JES_EtaIntercalibration_Stat199: 1.8597749191770494e-07 + syst_JES_EtaIntercalibration_Stat192: 8.60048536e-10 + syst_JES_EtaIntercalibration_Stat193: 6.27944759e-08 + syst_JES_EtaIntercalibration_Stat194: 1.63688332e-07 + syst_JES_EtaIntercalibration_Stat195: 3.48096319e-08 + syst_JES_EtaIntercalibration_Stat196: 5.03022234e-09 + syst_JES_EtaIntercalibration_Stat197: 4.71175239e-12 + syst_JES_EtaIntercalibration_Stat198: 5.45076203e-08 + syst_JES_EtaIntercalibration_Stat199: 1.85977492e-07 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 3.1985344690967453e-07 - syst_JES_EtaIntercalibration_Stat201: 1.245788957849603e-07 - syst_JES_EtaIntercalibration_Stat202: 6.036982743457197e-10 + syst_JES_EtaIntercalibration_Stat200: 3.19853447e-07 + syst_JES_EtaIntercalibration_Stat201: 1.24578896e-07 + syst_JES_EtaIntercalibration_Stat202: 6.03698274e-10 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 - syst_JES_EtaIntercalibration_Stat207: 8.660156296856741e-09 - syst_JES_EtaIntercalibration_Stat208: 1.6409049332609127e-07 - syst_JES_EtaIntercalibration_Stat209: 4.433450659475078e-07 + syst_JES_EtaIntercalibration_Stat207: 8.66015630e-09 + syst_JES_EtaIntercalibration_Stat208: 1.64090493e-07 + syst_JES_EtaIntercalibration_Stat209: 4.43345066e-07 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 1.4265124009275206e-07 - syst_JES_EtaIntercalibration_Stat211: 3.442236077029e-09 - syst_JES_EtaIntercalibration_Stat212: 1.770308094654713e-07 - syst_JES_EtaIntercalibration_Stat213: 3.575767994431406e-07 - syst_JES_EtaIntercalibration_Stat214: 1.2467100093847004e-07 - syst_JES_EtaIntercalibration_Stat215: 6.053472857996103e-10 + syst_JES_EtaIntercalibration_Stat210: 1.42651240e-07 + syst_JES_EtaIntercalibration_Stat211: 3.44223608e-09 + syst_JES_EtaIntercalibration_Stat212: 1.77030809e-07 + syst_JES_EtaIntercalibration_Stat213: 3.57576799e-07 + syst_JES_EtaIntercalibration_Stat214: 1.24671001e-07 + syst_JES_EtaIntercalibration_Stat215: 6.05347286e-10 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 syst_JES_EtaIntercalibration_Stat219: 0.0 - syst_JES_EtaIntercalibration_Stat22: 5.942666320768818e-25 - syst_JES_EtaIntercalibration_Stat220: 8.709741239985262e-09 - syst_JES_EtaIntercalibration_Stat221: 1.2752141731881748e-07 - syst_JES_EtaIntercalibration_Stat222: 4.4291478582228437e-07 - syst_JES_EtaIntercalibration_Stat223: 2.2364672605473125e-07 - syst_JES_EtaIntercalibration_Stat224: 6.161888996079043e-07 - syst_JES_EtaIntercalibration_Stat225: 1.2146782536951917e-06 - syst_JES_EtaIntercalibration_Stat226: 4.490122576277846e-07 - syst_JES_EtaIntercalibration_Stat227: 9.420561169590695e-09 + syst_JES_EtaIntercalibration_Stat22: 5.94266632e-25 + syst_JES_EtaIntercalibration_Stat220: 8.70974124e-09 + syst_JES_EtaIntercalibration_Stat221: 1.27521417e-07 + syst_JES_EtaIntercalibration_Stat222: 4.42914786e-07 + syst_JES_EtaIntercalibration_Stat223: 2.23646726e-07 + syst_JES_EtaIntercalibration_Stat224: 6.16188900e-07 + syst_JES_EtaIntercalibration_Stat225: 1.21467825e-06 + syst_JES_EtaIntercalibration_Stat226: 4.49012258e-07 + syst_JES_EtaIntercalibration_Stat227: 9.42056117e-09 syst_JES_EtaIntercalibration_Stat228: 0.0 syst_JES_EtaIntercalibration_Stat229: 0.0 - syst_JES_EtaIntercalibration_Stat23: 5.942666320768818e-25 + syst_JES_EtaIntercalibration_Stat23: 5.94266632e-25 syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 - syst_JES_EtaIntercalibration_Stat232: 4.742012874895534e-09 - syst_JES_EtaIntercalibration_Stat233: 3.8434103020624796e-07 - syst_JES_EtaIntercalibration_Stat234: 1.0233708553110157e-06 - syst_JES_EtaIntercalibration_Stat235: 7.019858118224328e-07 - syst_JES_EtaIntercalibration_Stat236: 2.9012885068534635e-07 - syst_JES_EtaIntercalibration_Stat237: 5.2091663440516083e-08 - syst_JES_EtaIntercalibration_Stat238: 6.078632309162975e-10 + syst_JES_EtaIntercalibration_Stat232: 4.74201287e-09 + syst_JES_EtaIntercalibration_Stat233: 3.84341030e-07 + syst_JES_EtaIntercalibration_Stat234: 1.02337086e-06 + syst_JES_EtaIntercalibration_Stat235: 7.01985812e-07 + syst_JES_EtaIntercalibration_Stat236: 2.90128851e-07 + syst_JES_EtaIntercalibration_Stat237: 5.20916634e-08 + syst_JES_EtaIntercalibration_Stat238: 6.07863231e-10 syst_JES_EtaIntercalibration_Stat239: 0.0 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 - syst_JES_EtaIntercalibration_Stat243: 1.0262435982333416e-09 - syst_JES_EtaIntercalibration_Stat244: 6.284635127091706e-08 - syst_JES_EtaIntercalibration_Stat245: 3.1462808202701806e-07 - syst_JES_EtaIntercalibration_Stat25: 3.9083726472791715e-25 - syst_JES_EtaIntercalibration_Stat26: 1.5016957106884203e-23 - syst_JES_EtaIntercalibration_Stat27: 8.488695518600017e-22 - syst_JES_EtaIntercalibration_Stat28: 2.011777012990928e-09 - syst_JES_EtaIntercalibration_Stat29: 8.423647473036844e-22 + syst_JES_EtaIntercalibration_Stat243: 1.02624360e-09 + syst_JES_EtaIntercalibration_Stat244: 6.28463513e-08 + syst_JES_EtaIntercalibration_Stat245: 3.14628082e-07 + syst_JES_EtaIntercalibration_Stat25: 3.90837265e-25 + syst_JES_EtaIntercalibration_Stat26: 1.50169571e-23 + syst_JES_EtaIntercalibration_Stat27: 8.48869552e-22 + syst_JES_EtaIntercalibration_Stat28: 2.01177701e-09 + syst_JES_EtaIntercalibration_Stat29: 8.42364747e-22 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 1.963219597370605e-24 + syst_JES_EtaIntercalibration_Stat30: 1.96321960e-24 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 9.014344291183913e-25 - syst_JES_EtaIntercalibration_Stat36: 6.701611760427487e-22 - syst_JES_EtaIntercalibration_Stat37: 7.198403148456252e-14 - syst_JES_EtaIntercalibration_Stat38: 7.197537122931224e-14 - syst_JES_EtaIntercalibration_Stat39: 1.510127362410204e-22 - syst_JES_EtaIntercalibration_Stat4: 5.358965198618106e-25 - syst_JES_EtaIntercalibration_Stat40: 7.934524749473027e-25 + syst_JES_EtaIntercalibration_Stat35: 9.01434429e-25 + syst_JES_EtaIntercalibration_Stat36: 6.70161176e-22 + syst_JES_EtaIntercalibration_Stat37: 7.19840315e-14 + syst_JES_EtaIntercalibration_Stat38: 7.19753712e-14 + syst_JES_EtaIntercalibration_Stat39: 1.51012736e-22 + syst_JES_EtaIntercalibration_Stat4: 5.35896520e-25 + syst_JES_EtaIntercalibration_Stat40: 7.93452475e-25 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 - syst_JES_EtaIntercalibration_Stat44: 5.942666320768818e-25 + syst_JES_EtaIntercalibration_Stat44: 5.94266632e-25 syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 - syst_JES_EtaIntercalibration_Stat47: 3.9101046980867404e-25 - syst_JES_EtaIntercalibration_Stat48: 7.755713684117021e-23 - syst_JES_EtaIntercalibration_Stat49: 1.701511901221969e-21 - syst_JES_EtaIntercalibration_Stat5: 1.188318243359076e-23 - syst_JES_EtaIntercalibration_Stat50: 2.0117770129910015e-09 - syst_JES_EtaIntercalibration_Stat51: 1.9368391035912093e-19 - syst_JES_EtaIntercalibration_Stat52: 6.692464140359662e-24 + syst_JES_EtaIntercalibration_Stat47: 3.91010470e-25 + syst_JES_EtaIntercalibration_Stat48: 7.75571368e-23 + syst_JES_EtaIntercalibration_Stat49: 1.70151190e-21 + syst_JES_EtaIntercalibration_Stat5: 1.18831824e-23 + syst_JES_EtaIntercalibration_Stat50: 2.01177701e-09 + syst_JES_EtaIntercalibration_Stat51: 1.93683910e-19 + syst_JES_EtaIntercalibration_Stat52: 6.69246414e-24 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 syst_JES_EtaIntercalibration_Stat56: 0.0 - syst_JES_EtaIntercalibration_Stat57: 6.8308886778693e-22 - syst_JES_EtaIntercalibration_Stat58: 6.150290785808425e-22 - syst_JES_EtaIntercalibration_Stat59: 1.2006577137993991e-12 - syst_JES_EtaIntercalibration_Stat6: 9.423604976334693e-24 - syst_JES_EtaIntercalibration_Stat60: 7.211393350828902e-14 - syst_JES_EtaIntercalibration_Stat61: 9.110468938534394e-22 - syst_JES_EtaIntercalibration_Stat62: 4.936344801571301e-25 + syst_JES_EtaIntercalibration_Stat57: 6.83088868e-22 + syst_JES_EtaIntercalibration_Stat58: 6.15029079e-22 + syst_JES_EtaIntercalibration_Stat59: 1.20065771e-12 + syst_JES_EtaIntercalibration_Stat6: 9.42360498e-24 + syst_JES_EtaIntercalibration_Stat60: 7.21139335e-14 + syst_JES_EtaIntercalibration_Stat61: 9.11046894e-22 + syst_JES_EtaIntercalibration_Stat62: 4.93634480e-25 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 - syst_JES_EtaIntercalibration_Stat69: 6.183503274843477e-25 - syst_JES_EtaIntercalibration_Stat7: 7.49612920112774e-24 - syst_JES_EtaIntercalibration_Stat70: 9.545230052230276e-22 - syst_JES_EtaIntercalibration_Stat71: 4.766603822430988e-09 - syst_JES_EtaIntercalibration_Stat72: 2.0126430382820535e-09 - syst_JES_EtaIntercalibration_Stat73: 2.011777012988647e-09 - syst_JES_EtaIntercalibration_Stat74: 1.421130290253149e-22 + syst_JES_EtaIntercalibration_Stat69: 6.18350327e-25 + syst_JES_EtaIntercalibration_Stat7: 7.49612920e-24 + syst_JES_EtaIntercalibration_Stat70: 9.54523005e-22 + syst_JES_EtaIntercalibration_Stat71: 4.76660382e-09 + syst_JES_EtaIntercalibration_Stat72: 2.01264304e-09 + syst_JES_EtaIntercalibration_Stat73: 2.01177701e-09 + syst_JES_EtaIntercalibration_Stat74: 1.42113029e-22 syst_JES_EtaIntercalibration_Stat75: 0.0 syst_JES_EtaIntercalibration_Stat76: 0.0 syst_JES_EtaIntercalibration_Stat77: 0.0 syst_JES_EtaIntercalibration_Stat78: 0.0 - syst_JES_EtaIntercalibration_Stat79: 6.887074342563756e-22 + syst_JES_EtaIntercalibration_Stat79: 6.88707434e-22 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 2.123049153340544e-18 - syst_JES_EtaIntercalibration_Stat81: 1.022491904544196e-09 - syst_JES_EtaIntercalibration_Stat82: 4.416266480863672e-13 - syst_JES_EtaIntercalibration_Stat83: 6.820882127701666e-20 - syst_JES_EtaIntercalibration_Stat84: 6.152039255401416e-25 - syst_JES_EtaIntercalibration_Stat85: 5.942666320768818e-25 - syst_JES_EtaIntercalibration_Stat86: 5.942666320768818e-25 - syst_JES_EtaIntercalibration_Stat87: 5.942666320768818e-25 - syst_JES_EtaIntercalibration_Stat88: 5.942666320768818e-25 - syst_JES_EtaIntercalibration_Stat89: 5.942666320768818e-25 + syst_JES_EtaIntercalibration_Stat80: 2.12304915e-18 + syst_JES_EtaIntercalibration_Stat81: 1.02249190e-09 + syst_JES_EtaIntercalibration_Stat82: 4.41626648e-13 + syst_JES_EtaIntercalibration_Stat83: 6.82088213e-20 + syst_JES_EtaIntercalibration_Stat84: 6.15203926e-25 + syst_JES_EtaIntercalibration_Stat85: 5.94266632e-25 + syst_JES_EtaIntercalibration_Stat86: 5.94266632e-25 + syst_JES_EtaIntercalibration_Stat87: 5.94266632e-25 + syst_JES_EtaIntercalibration_Stat88: 5.94266632e-25 + syst_JES_EtaIntercalibration_Stat89: 5.94266632e-25 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 6.651168270875426e-20 - syst_JES_EtaIntercalibration_Stat92: 4.766603822514883e-09 - syst_JES_EtaIntercalibration_Stat93: 2.0126430380664365e-09 - syst_JES_EtaIntercalibration_Stat94: 2.0117770129779056e-09 - syst_JES_EtaIntercalibration_Stat95: 7.419274947729057e-22 - syst_JES_EtaIntercalibration_Stat96: 4.921345576161057e-24 - syst_JES_EtaIntercalibration_Stat97: 5.942666320768818e-25 - syst_JES_EtaIntercalibration_Stat98: 5.942666320768818e-25 - syst_JES_EtaIntercalibration_Stat99: 5.942666320768818e-25 - syst_JES_EtaIntercalibration_TotalStat_MJB: 1.248298573058545e-05 - syst_JES_Flavour_Comp: 2.511123055527148e-05 - syst_JES_Gjet_Generator: 2.9304212581129013e-05 - syst_JES_Gjet_OOC: 2.4751539346068963e-05 - syst_JES_Gjet_Purity: 3.542361359319515e-06 - syst_JES_Gjet_Stat1: 9.198490351682715e-08 - syst_JES_Gjet_Stat10: 8.048363187630142e-07 - syst_JES_Gjet_Stat11: 8.370806815952688e-07 - syst_JES_Gjet_Stat12: 1.2316614175576013e-06 - syst_JES_Gjet_Stat13: 5.509843441514468e-06 - syst_JES_Gjet_Stat14: 1.4731415410611434e-05 - syst_JES_Gjet_Stat15: 2.455195053351159e-05 - syst_JES_Gjet_Stat2: 1.2074126179562604e-07 - syst_JES_Gjet_Stat3: 1.3543715175312864e-07 - syst_JES_Gjet_Stat4: 1.103638817729786e-07 - syst_JES_Gjet_Stat5: 1.5968713304224567e-17 - syst_JES_Gjet_Stat6: 4.293180027671796e-07 - syst_JES_Gjet_Stat7: 2.1293607021826997e-07 - syst_JES_Gjet_Stat8: 1.53852873551325e-07 - syst_JES_Gjet_Stat9: 3.805766628420613e-07 - syst_JES_Gjet_Veto: 2.603048021070683e-05 - syst_JES_Gjet_dPhi: 2.5863480044263187e-06 - syst_JES_LArESZee: 4.293243994929708e-05 - syst_JES_LArEsmear: 4.027631761655973e-06 - syst_JES_LAr_JVT: 5.244345621714877e-06 - syst_JES_MJB_Alpha: 7.187967932594023e-07 - syst_JES_MJB_Asym: 1.0415818402794856e-05 - syst_JES_MJB_Beta: 6.740500927230854e-07 - syst_JES_MJB_Stat1: 3.977656400666058e-11 - syst_JES_MJB_Stat10: 2.6086013014640627e-07 - syst_JES_MJB_Stat11: 3.661045069375683e-07 - syst_JES_MJB_Stat12: 7.087501746031531e-07 - syst_JES_MJB_Stat13: 1.1047023852603922e-06 - syst_JES_MJB_Stat14: 2.1035010696455567e-06 - syst_JES_MJB_Stat15: 1.593015693582458e-06 - syst_JES_MJB_Stat16: 3.0417588250878804e-06 - syst_JES_MJB_Stat2: 1.0319043305946535e-08 - syst_JES_MJB_Stat3: 9.896938314448565e-12 - syst_JES_MJB_Stat4: 8.299121444466276e-12 + syst_JES_EtaIntercalibration_Stat91: 6.65116827e-20 + syst_JES_EtaIntercalibration_Stat92: 4.76660382e-09 + syst_JES_EtaIntercalibration_Stat93: 2.01264304e-09 + syst_JES_EtaIntercalibration_Stat94: 2.01177701e-09 + syst_JES_EtaIntercalibration_Stat95: 7.41927495e-22 + syst_JES_EtaIntercalibration_Stat96: 4.92134558e-24 + syst_JES_EtaIntercalibration_Stat97: 5.94266632e-25 + syst_JES_EtaIntercalibration_Stat98: 5.94266632e-25 + syst_JES_EtaIntercalibration_Stat99: 5.94266632e-25 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.24829857e-05 + syst_JES_Flavour_Comp: 2.51112306e-05 + syst_JES_Gjet_Generator: 2.93042126e-05 + syst_JES_Gjet_OOC: 2.47515393e-05 + syst_JES_Gjet_Purity: 3.54236136e-06 + syst_JES_Gjet_Stat1: 9.19849035e-08 + syst_JES_Gjet_Stat10: 8.04836319e-07 + syst_JES_Gjet_Stat11: 8.37080682e-07 + syst_JES_Gjet_Stat12: 1.23166142e-06 + syst_JES_Gjet_Stat13: 5.50984344e-06 + syst_JES_Gjet_Stat14: 1.47314154e-05 + syst_JES_Gjet_Stat15: 2.45519505e-05 + syst_JES_Gjet_Stat2: 1.20741262e-07 + syst_JES_Gjet_Stat3: 1.35437152e-07 + syst_JES_Gjet_Stat4: 1.10363882e-07 + syst_JES_Gjet_Stat5: 1.59687133e-17 + syst_JES_Gjet_Stat6: 4.29318003e-07 + syst_JES_Gjet_Stat7: 2.12936070e-07 + syst_JES_Gjet_Stat8: 1.53852874e-07 + syst_JES_Gjet_Stat9: 3.80576663e-07 + syst_JES_Gjet_Veto: 2.60304802e-05 + syst_JES_Gjet_dPhi: 2.58634800e-06 + syst_JES_LArESZee: 4.29324399e-05 + syst_JES_LArEsmear: 4.02763176e-06 + syst_JES_LAr_JVT: 5.24434562e-06 + syst_JES_MJB_Alpha: 7.18796793e-07 + syst_JES_MJB_Asym: 1.04158184e-05 + syst_JES_MJB_Beta: 6.74050093e-07 + syst_JES_MJB_Stat1: 3.97765640e-11 + syst_JES_MJB_Stat10: 2.60860130e-07 + syst_JES_MJB_Stat11: 3.66104507e-07 + syst_JES_MJB_Stat12: 7.08750175e-07 + syst_JES_MJB_Stat13: 1.10470239e-06 + syst_JES_MJB_Stat14: 2.10350107e-06 + syst_JES_MJB_Stat15: 1.59301569e-06 + syst_JES_MJB_Stat16: 3.04175883e-06 + syst_JES_MJB_Stat2: 1.03190433e-08 + syst_JES_MJB_Stat3: 9.89693831e-12 + syst_JES_MJB_Stat4: 8.29912144e-12 syst_JES_MJB_Stat5: 0.0 - syst_JES_MJB_Stat6: 3.153198495179141e-08 - syst_JES_MJB_Stat7: 4.2262039704680604e-08 - syst_JES_MJB_Stat8: 5.820188721167038e-08 - syst_JES_MJB_Stat9: 1.221536704319604e-07 - syst_JES_MJB_Threshold: 5.144754513093894e-06 - syst_JES_Pileup_MuOffset: 7.45492821897032e-06 - syst_JES_Pileup_NPVOffset: 7.146547890415343e-06 - syst_JES_Pileup_Pt_term: 3.864675148055784e-06 - syst_JES_PunchThrough_MC15: 2.6161485049591508e-05 + syst_JES_MJB_Stat6: 3.15319850e-08 + syst_JES_MJB_Stat7: 4.22620397e-08 + syst_JES_MJB_Stat8: 5.82018872e-08 + syst_JES_MJB_Stat9: 1.22153670e-07 + syst_JES_MJB_Threshold: 5.14475451e-06 + syst_JES_Pileup_MuOffset: 7.45492822e-06 + syst_JES_Pileup_NPVOffset: 7.14654789e-06 + syst_JES_Pileup_Pt_term: 3.86467515e-06 + syst_JES_PunchThrough_MC15: 2.61614850e-05 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 1.1561908438921317e-05 - syst_JES_Zjet_MuScale: 1.0606400932927248e-06 - syst_JES_Zjet_MuSmearID: 2.1238262423042053e-07 - syst_JES_Zjet_MuSmearMS: 2.879223680091562e-06 - syst_JES_Zjet_OOC: 7.403510704388831e-06 - syst_JES_Zjet_Stat1: 1.1535833162368464e-06 - syst_JES_Zjet_Stat10: 6.20204756511912e-07 - syst_JES_Zjet_Stat11: 8.392691642137222e-07 - syst_JES_Zjet_Stat12: 1.7515647290351563e-06 - syst_JES_Zjet_Stat13: 2.8838548420473592e-06 - syst_JES_Zjet_Stat2: 5.300941496564552e-09 - syst_JES_Zjet_Stat3: 3.69916179694806e-07 - syst_JES_Zjet_Stat4: 4.1711372549941335e-07 - syst_JES_Zjet_Stat5: 5.090222784908339e-07 - syst_JES_Zjet_Stat6: 3.434419419639948e-07 - syst_JES_Zjet_Stat7: 4.566134114324721e-07 - syst_JES_Zjet_Stat8: 1.9271328444090202e-07 - syst_JES_Zjet_Stat9: 4.375217108898712e-07 - syst_JES_Zjet_Veto: 1.4830411322684209e-06 - syst_JES_Zjet_dPhi: 1.3601506414732156e-06 - syst_PRW: 3.429e-06 + syst_JES_Zjet_MC: 1.15619084e-05 + syst_JES_Zjet_MuScale: 1.06064009e-06 + syst_JES_Zjet_MuSmearID: 2.12382624e-07 + syst_JES_Zjet_MuSmearMS: 2.87922368e-06 + syst_JES_Zjet_OOC: 7.40351070e-06 + syst_JES_Zjet_Stat1: 1.15358332e-06 + syst_JES_Zjet_Stat10: 6.20204757e-07 + syst_JES_Zjet_Stat11: 8.39269164e-07 + syst_JES_Zjet_Stat12: 1.75156473e-06 + syst_JES_Zjet_Stat13: 2.88385484e-06 + syst_JES_Zjet_Stat2: 5.30094150e-09 + syst_JES_Zjet_Stat3: 3.69916180e-07 + syst_JES_Zjet_Stat4: 4.17113725e-07 + syst_JES_Zjet_Stat5: 5.09022278e-07 + syst_JES_Zjet_Stat6: 3.43441942e-07 + syst_JES_Zjet_Stat7: 4.56613411e-07 + syst_JES_Zjet_Stat8: 1.92713284e-07 + syst_JES_Zjet_Stat9: 4.37521711e-07 + syst_JES_Zjet_Veto: 1.48304113e-06 + syst_JES_Zjet_dPhi: 1.36015064e-06 + syst_PRW: 3.42900000e-06 syst_Unfolding_bias: 2.09e-20 - syst_cleaning: 4.203687309969665e-06 - syst_lumi: 1.3436e-05 + syst_cleaning: 4.20368731e-06 + syst_lumi: 1.34360000e-05 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 2.591500096469224e-06 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 4.788082810478532e-06 - syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 7.29818902194236e-07 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 2.59150010e-06 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 4.78808281e-06 + syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 7.29818902e-07 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 6.667499981252344e-06 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 3.0309790497461378e-06 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 8.172000489476245e-06 -- stat: 1.1494e-05 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 6.66749998e-06 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 3.03097905e-06 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 8.17200049e-06 +- stat: 1.14940000e-05 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 2.1244545182234423e-06 - syst_JER_NP1: 6.291565524573355e-07 - syst_JER_NP2: 2.4153554603825912e-06 - syst_JER_NP3: 4.1788554653158325e-07 - syst_JER_NP4: 2.0025061173439646e-19 - syst_JER_NP5: 1.2680922166782666e-08 - syst_JER_NP6: 3.935024650494581e-19 - syst_JER_NP7: 4.594939254223063e-19 - syst_JER_NP8: 9.485912436344752e-12 - syst_JES_EtaIntercalibration_Modelling: 1.468508086460541e-05 - syst_JES_EtaIntercalibration_NonClosure: 3.575602187044862e-13 - syst_JES_EtaIntercalibration_Stat0: 4.2755674184837735e-26 + syst_JER_NP0: 2.12445452e-06 + syst_JER_NP1: 6.29156552e-07 + syst_JER_NP2: 2.41535546e-06 + syst_JER_NP3: 4.17885547e-07 + syst_JER_NP4: 2.00250612e-19 + syst_JER_NP5: 1.26809222e-08 + syst_JER_NP6: 3.93502465e-19 + syst_JER_NP7: 4.59493925e-19 + syst_JER_NP8: 9.48591244e-12 + syst_JES_EtaIntercalibration_Modelling: 1.46850809e-05 + syst_JES_EtaIntercalibration_NonClosure: 3.57560219e-13 + syst_JES_EtaIntercalibration_Stat0: 4.27556742e-26 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 2.507223367008811e-23 - syst_JES_EtaIntercalibration_Stat101: 8.045938525119368e-20 - syst_JES_EtaIntercalibration_Stat102: 2.0455487330704877e-10 - syst_JES_EtaIntercalibration_Stat103: 1.2071165780797643e-14 - syst_JES_EtaIntercalibration_Stat104: 1.1545230639740376e-20 - syst_JES_EtaIntercalibration_Stat105: 1.071417019652012e-25 - syst_JES_EtaIntercalibration_Stat106: 4.2755674184837735e-26 - syst_JES_EtaIntercalibration_Stat107: 4.2755674184837735e-26 - syst_JES_EtaIntercalibration_Stat108: 4.2755674184837735e-26 - syst_JES_EtaIntercalibration_Stat109: 4.2755674184837735e-26 + syst_JES_EtaIntercalibration_Stat100: 2.50722337e-23 + syst_JES_EtaIntercalibration_Stat101: 8.04593853e-20 + syst_JES_EtaIntercalibration_Stat102: 2.04554873e-10 + syst_JES_EtaIntercalibration_Stat103: 1.20711658e-14 + syst_JES_EtaIntercalibration_Stat104: 1.15452306e-20 + syst_JES_EtaIntercalibration_Stat105: 1.07141702e-25 + syst_JES_EtaIntercalibration_Stat106: 4.27556742e-26 + syst_JES_EtaIntercalibration_Stat107: 4.27556742e-26 + syst_JES_EtaIntercalibration_Stat108: 4.27556742e-26 + syst_JES_EtaIntercalibration_Stat109: 4.27556742e-26 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 8.623001855502526e-25 - syst_JES_EtaIntercalibration_Stat111: 3.2619231087657476e-20 - syst_JES_EtaIntercalibration_Stat112: 1.776218066855215e-09 - syst_JES_EtaIntercalibration_Stat113: 1.0148085491338021e-10 - syst_JES_EtaIntercalibration_Stat114: 3.490948401110949e-10 - syst_JES_EtaIntercalibration_Stat115: 1.5915284375404667e-21 - syst_JES_EtaIntercalibration_Stat116: 8.868230870218706e-25 - syst_JES_EtaIntercalibration_Stat117: 4.2755674184837735e-26 - syst_JES_EtaIntercalibration_Stat118: 4.2755674184837735e-26 - syst_JES_EtaIntercalibration_Stat119: 4.2755674184837735e-26 + syst_JES_EtaIntercalibration_Stat110: 8.62300186e-25 + syst_JES_EtaIntercalibration_Stat111: 3.26192311e-20 + syst_JES_EtaIntercalibration_Stat112: 1.77621807e-09 + syst_JES_EtaIntercalibration_Stat113: 1.01480855e-10 + syst_JES_EtaIntercalibration_Stat114: 3.49094840e-10 + syst_JES_EtaIntercalibration_Stat115: 1.59152844e-21 + syst_JES_EtaIntercalibration_Stat116: 8.86823087e-25 + syst_JES_EtaIntercalibration_Stat117: 4.27556742e-26 + syst_JES_EtaIntercalibration_Stat118: 4.27556742e-26 + syst_JES_EtaIntercalibration_Stat119: 4.27556742e-26 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 1.0659906695182653e-22 - syst_JES_EtaIntercalibration_Stat121: 2.0459582949383402e-10 - syst_JES_EtaIntercalibration_Stat122: 2.0543648061429475e-10 - syst_JES_EtaIntercalibration_Stat123: 2.0542107018224274e-10 - syst_JES_EtaIntercalibration_Stat124: 2.1776907493948722e-14 - syst_JES_EtaIntercalibration_Stat125: 5.40832864663382e-24 - syst_JES_EtaIntercalibration_Stat126: 4.2755674184837735e-26 - syst_JES_EtaIntercalibration_Stat127: 4.2755674184837735e-26 - syst_JES_EtaIntercalibration_Stat128: 4.2755674184837735e-26 - syst_JES_EtaIntercalibration_Stat129: 2.4186438364298288e-20 + syst_JES_EtaIntercalibration_Stat120: 1.06599067e-22 + syst_JES_EtaIntercalibration_Stat121: 2.04595829e-10 + syst_JES_EtaIntercalibration_Stat122: 2.05436481e-10 + syst_JES_EtaIntercalibration_Stat123: 2.05421070e-10 + syst_JES_EtaIntercalibration_Stat124: 2.17769075e-14 + syst_JES_EtaIntercalibration_Stat125: 5.40832865e-24 + syst_JES_EtaIntercalibration_Stat126: 4.27556742e-26 + syst_JES_EtaIntercalibration_Stat127: 4.27556742e-26 + syst_JES_EtaIntercalibration_Stat128: 4.27556742e-26 + syst_JES_EtaIntercalibration_Stat129: 2.41864384e-20 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 9.091530910466481e-11 - syst_JES_EtaIntercalibration_Stat131: 2.4716768473846953e-09 - syst_JES_EtaIntercalibration_Stat132: 3.038150114078466e-12 - syst_JES_EtaIntercalibration_Stat133: 7.506679774593576e-10 - syst_JES_EtaIntercalibration_Stat134: 4.0408745340543156e-10 - syst_JES_EtaIntercalibration_Stat135: 8.716545689090376e-25 + syst_JES_EtaIntercalibration_Stat130: 9.09153091e-11 + syst_JES_EtaIntercalibration_Stat131: 2.47167685e-09 + syst_JES_EtaIntercalibration_Stat132: 3.03815011e-12 + syst_JES_EtaIntercalibration_Stat133: 7.50667977e-10 + syst_JES_EtaIntercalibration_Stat134: 4.04087453e-10 + syst_JES_EtaIntercalibration_Stat135: 8.71654569e-25 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 syst_JES_EtaIntercalibration_Stat138: 0.0 - syst_JES_EtaIntercalibration_Stat139: 1.3865581560107747e-19 - syst_JES_EtaIntercalibration_Stat14: 2.3689295310776976e-23 - syst_JES_EtaIntercalibration_Stat140: 6.1969158337167e-10 - syst_JES_EtaIntercalibration_Stat141: 5.829671609962263e-10 - syst_JES_EtaIntercalibration_Stat142: 2.873530363507579e-10 - syst_JES_EtaIntercalibration_Stat143: 3.307570399477538e-14 - syst_JES_EtaIntercalibration_Stat144: 1.773263657779068e-21 + syst_JES_EtaIntercalibration_Stat139: 1.38655816e-19 + syst_JES_EtaIntercalibration_Stat14: 2.36892953e-23 + syst_JES_EtaIntercalibration_Stat140: 6.19691583e-10 + syst_JES_EtaIntercalibration_Stat141: 5.82967161e-10 + syst_JES_EtaIntercalibration_Stat142: 2.87353036e-10 + syst_JES_EtaIntercalibration_Stat143: 3.30757040e-14 + syst_JES_EtaIntercalibration_Stat144: 1.77326366e-21 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 - syst_JES_EtaIntercalibration_Stat147: 9.551814696695072e-22 - syst_JES_EtaIntercalibration_Stat148: 9.065554827193606e-11 - syst_JES_EtaIntercalibration_Stat149: 1.0144903170664407e-10 - syst_JES_EtaIntercalibration_Stat15: 2.352326251473369e-23 - syst_JES_EtaIntercalibration_Stat150: 1.6284181192801804e-11 - syst_JES_EtaIntercalibration_Stat151: 1.0185899674862083e-10 - syst_JES_EtaIntercalibration_Stat152: 1.1461916462791028e-20 + syst_JES_EtaIntercalibration_Stat147: 9.55181470e-22 + syst_JES_EtaIntercalibration_Stat148: 9.06555483e-11 + syst_JES_EtaIntercalibration_Stat149: 1.01449032e-10 + syst_JES_EtaIntercalibration_Stat15: 2.35232625e-23 + syst_JES_EtaIntercalibration_Stat150: 1.62841812e-11 + syst_JES_EtaIntercalibration_Stat151: 1.01858997e-10 + syst_JES_EtaIntercalibration_Stat152: 1.14619165e-20 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 syst_JES_EtaIntercalibration_Stat156: 0.0 - syst_JES_EtaIntercalibration_Stat157: 2.6601055674540437e-20 - syst_JES_EtaIntercalibration_Stat158: 4.85184079232563e-10 - syst_JES_EtaIntercalibration_Stat159: 6.452369100377007e-10 - syst_JES_EtaIntercalibration_Stat16: 2.3421581394090365e-23 - syst_JES_EtaIntercalibration_Stat160: 4.412997315600815e-10 - syst_JES_EtaIntercalibration_Stat161: 3.408745356799185e-14 - syst_JES_EtaIntercalibration_Stat162: 1.8356586610805397e-21 + syst_JES_EtaIntercalibration_Stat157: 2.66010557e-20 + syst_JES_EtaIntercalibration_Stat158: 4.85184079e-10 + syst_JES_EtaIntercalibration_Stat159: 6.45236910e-10 + syst_JES_EtaIntercalibration_Stat16: 2.34215814e-23 + syst_JES_EtaIntercalibration_Stat160: 4.41299732e-10 + syst_JES_EtaIntercalibration_Stat161: 3.40874536e-14 + syst_JES_EtaIntercalibration_Stat162: 1.83565866e-21 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 8.829268415333174e-22 - syst_JES_EtaIntercalibration_Stat166: 1.7753920148144044e-09 - syst_JES_EtaIntercalibration_Stat167: 1.590055119893647e-10 - syst_JES_EtaIntercalibration_Stat168: 5.407452390660688e-10 - syst_JES_EtaIntercalibration_Stat169: 1.9329702196360914e-10 - syst_JES_EtaIntercalibration_Stat17: 3.472761869175599e-26 - syst_JES_EtaIntercalibration_Stat170: 4.040008507375864e-10 + syst_JES_EtaIntercalibration_Stat165: 8.82926842e-22 + syst_JES_EtaIntercalibration_Stat166: 1.77539201e-09 + syst_JES_EtaIntercalibration_Stat167: 1.59005512e-10 + syst_JES_EtaIntercalibration_Stat168: 5.40745239e-10 + syst_JES_EtaIntercalibration_Stat169: 1.93297022e-10 + syst_JES_EtaIntercalibration_Stat17: 3.47276187e-26 + syst_JES_EtaIntercalibration_Stat170: 4.04000851e-10 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 - syst_JES_EtaIntercalibration_Stat175: 2.0754032356852172e-16 - syst_JES_EtaIntercalibration_Stat176: 8.285514383674378e-10 - syst_JES_EtaIntercalibration_Stat177: 1.35506958558177e-09 - syst_JES_EtaIntercalibration_Stat178: 6.065366121471976e-10 - syst_JES_EtaIntercalibration_Stat179: 4.4124971388092707e-10 + syst_JES_EtaIntercalibration_Stat175: 2.07540324e-16 + syst_JES_EtaIntercalibration_Stat176: 8.28551438e-10 + syst_JES_EtaIntercalibration_Stat177: 1.35506959e-09 + syst_JES_EtaIntercalibration_Stat178: 6.06536612e-10 + syst_JES_EtaIntercalibration_Stat179: 4.41249714e-10 syst_JES_EtaIntercalibration_Stat18: 0.0 - syst_JES_EtaIntercalibration_Stat180: 1.2358182507743092e-14 + syst_JES_EtaIntercalibration_Stat180: 1.23581825e-14 syst_JES_EtaIntercalibration_Stat181: 0.0 - syst_JES_EtaIntercalibration_Stat182: 2.2004939184459672e-16 - syst_JES_EtaIntercalibration_Stat183: 1.8500468665144674e-09 - syst_JES_EtaIntercalibration_Stat184: 9.533792569067149e-09 - syst_JES_EtaIntercalibration_Stat185: 1.2202777747299998e-08 - syst_JES_EtaIntercalibration_Stat186: 6.159277431647319e-09 - syst_JES_EtaIntercalibration_Stat187: 2.885596645284291e-09 + syst_JES_EtaIntercalibration_Stat182: 2.20049392e-16 + syst_JES_EtaIntercalibration_Stat183: 1.85004687e-09 + syst_JES_EtaIntercalibration_Stat184: 9.53379257e-09 + syst_JES_EtaIntercalibration_Stat185: 1.22027777e-08 + syst_JES_EtaIntercalibration_Stat186: 6.15927743e-09 + syst_JES_EtaIntercalibration_Stat187: 2.88559665e-09 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 - syst_JES_EtaIntercalibration_Stat192: 1.8593563934596155e-10 - syst_JES_EtaIntercalibration_Stat193: 1.3129059862640585e-09 - syst_JES_EtaIntercalibration_Stat194: 3.471722483148675e-08 - syst_JES_EtaIntercalibration_Stat195: 2.2403473547644346e-09 - syst_JES_EtaIntercalibration_Stat196: 6.970847572569638e-10 - syst_JES_EtaIntercalibration_Stat197: 6.632526037544067e-14 - syst_JES_EtaIntercalibration_Stat198: 4.013066906992704e-09 - syst_JES_EtaIntercalibration_Stat199: 1.903839076707903e-08 + syst_JES_EtaIntercalibration_Stat192: 1.85935639e-10 + syst_JES_EtaIntercalibration_Stat193: 1.31290599e-09 + syst_JES_EtaIntercalibration_Stat194: 3.47172248e-08 + syst_JES_EtaIntercalibration_Stat195: 2.24034735e-09 + syst_JES_EtaIntercalibration_Stat196: 6.97084757e-10 + syst_JES_EtaIntercalibration_Stat197: 6.63252604e-14 + syst_JES_EtaIntercalibration_Stat198: 4.01306691e-09 + syst_JES_EtaIntercalibration_Stat199: 1.90383908e-08 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 5.425001658985922e-08 - syst_JES_EtaIntercalibration_Stat201: 2.60651205253304e-08 - syst_JES_EtaIntercalibration_Stat202: 2.485773834429985e-11 + syst_JES_EtaIntercalibration_Stat200: 5.42500166e-08 + syst_JES_EtaIntercalibration_Stat201: 2.60651205e-08 + syst_JES_EtaIntercalibration_Stat202: 2.48577383e-11 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 - syst_JES_EtaIntercalibration_Stat207: 6.217346788066493e-10 - syst_JES_EtaIntercalibration_Stat208: 3.460185074529973e-08 - syst_JES_EtaIntercalibration_Stat209: 7.522287019251525e-08 + syst_JES_EtaIntercalibration_Stat207: 6.21734679e-10 + syst_JES_EtaIntercalibration_Stat208: 3.46018507e-08 + syst_JES_EtaIntercalibration_Stat209: 7.52228702e-08 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 2.6455381305133366e-08 - syst_JES_EtaIntercalibration_Stat211: 5.747592887461672e-10 - syst_JES_EtaIntercalibration_Stat212: 1.610274686971139e-08 - syst_JES_EtaIntercalibration_Stat213: 6.081509187693463e-08 - syst_JES_EtaIntercalibration_Stat214: 2.6065021786869854e-08 - syst_JES_EtaIntercalibration_Stat215: 2.487219549943951e-11 + syst_JES_EtaIntercalibration_Stat210: 2.64553813e-08 + syst_JES_EtaIntercalibration_Stat211: 5.74759289e-10 + syst_JES_EtaIntercalibration_Stat212: 1.61027469e-08 + syst_JES_EtaIntercalibration_Stat213: 6.08150919e-08 + syst_JES_EtaIntercalibration_Stat214: 2.60650218e-08 + syst_JES_EtaIntercalibration_Stat215: 2.48721955e-11 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 syst_JES_EtaIntercalibration_Stat219: 0.0 - syst_JES_EtaIntercalibration_Stat22: 4.2755674184837735e-26 - syst_JES_EtaIntercalibration_Stat220: 6.227359726264413e-10 - syst_JES_EtaIntercalibration_Stat221: 3.6016046434193745e-08 - syst_JES_EtaIntercalibration_Stat222: 7.513432770711401e-08 - syst_JES_EtaIntercalibration_Stat223: 3.233181521350139e-08 - syst_JES_EtaIntercalibration_Stat224: 6.873435876619494e-08 - syst_JES_EtaIntercalibration_Stat225: 1.8211509410260315e-07 - syst_JES_EtaIntercalibration_Stat226: 6.766300244594529e-08 - syst_JES_EtaIntercalibration_Stat227: 8.315594206068499e-10 + syst_JES_EtaIntercalibration_Stat22: 4.27556742e-26 + syst_JES_EtaIntercalibration_Stat220: 6.22735973e-10 + syst_JES_EtaIntercalibration_Stat221: 3.60160464e-08 + syst_JES_EtaIntercalibration_Stat222: 7.51343277e-08 + syst_JES_EtaIntercalibration_Stat223: 3.23318152e-08 + syst_JES_EtaIntercalibration_Stat224: 6.87343588e-08 + syst_JES_EtaIntercalibration_Stat225: 1.82115094e-07 + syst_JES_EtaIntercalibration_Stat226: 6.76630024e-08 + syst_JES_EtaIntercalibration_Stat227: 8.31559421e-10 syst_JES_EtaIntercalibration_Stat228: 0.0 syst_JES_EtaIntercalibration_Stat229: 0.0 - syst_JES_EtaIntercalibration_Stat23: 4.2755674184837735e-26 + syst_JES_EtaIntercalibration_Stat23: 4.27556742e-26 syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 - syst_JES_EtaIntercalibration_Stat232: 7.421337792411487e-10 - syst_JES_EtaIntercalibration_Stat233: 9.429551795817232e-08 - syst_JES_EtaIntercalibration_Stat234: 1.9007193164694256e-07 - syst_JES_EtaIntercalibration_Stat235: 1.1829709971085513e-07 - syst_JES_EtaIntercalibration_Stat236: 4.4402918822978294e-08 - syst_JES_EtaIntercalibration_Stat237: 1.238350962974552e-08 - syst_JES_EtaIntercalibration_Stat238: 2.5002153407256742e-11 + syst_JES_EtaIntercalibration_Stat232: 7.42133779e-10 + syst_JES_EtaIntercalibration_Stat233: 9.42955180e-08 + syst_JES_EtaIntercalibration_Stat234: 1.90071932e-07 + syst_JES_EtaIntercalibration_Stat235: 1.18297100e-07 + syst_JES_EtaIntercalibration_Stat236: 4.44029188e-08 + syst_JES_EtaIntercalibration_Stat237: 1.23835096e-08 + syst_JES_EtaIntercalibration_Stat238: 2.50021534e-11 syst_JES_EtaIntercalibration_Stat239: 0.0 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 - syst_JES_EtaIntercalibration_Stat243: 2.047284471104971e-10 - syst_JES_EtaIntercalibration_Stat244: 1.3163697948223935e-09 - syst_JES_EtaIntercalibration_Stat245: 5.7143110477117e-08 - syst_JES_EtaIntercalibration_Stat25: 2.717587717075568e-26 - syst_JES_EtaIntercalibration_Stat26: 9.15560062202366e-25 - syst_JES_EtaIntercalibration_Stat27: 3.330160982595286e-23 - syst_JES_EtaIntercalibration_Stat28: 4.04000850865432e-10 - syst_JES_EtaIntercalibration_Stat29: 3.220901468145215e-23 + syst_JES_EtaIntercalibration_Stat243: 2.04728447e-10 + syst_JES_EtaIntercalibration_Stat244: 1.31636979e-09 + syst_JES_EtaIntercalibration_Stat245: 5.71431105e-08 + syst_JES_EtaIntercalibration_Stat25: 2.71758772e-26 + syst_JES_EtaIntercalibration_Stat26: 9.15560062e-25 + syst_JES_EtaIntercalibration_Stat27: 3.33016098e-23 + syst_JES_EtaIntercalibration_Stat28: 4.04000851e-10 + syst_JES_EtaIntercalibration_Stat29: 3.22090147e-23 syst_JES_EtaIntercalibration_Stat3: 0.0 - syst_JES_EtaIntercalibration_Stat30: 1.2680491098829729e-25 + syst_JES_EtaIntercalibration_Stat30: 1.26804911e-25 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 6.565338433774759e-26 - syst_JES_EtaIntercalibration_Stat36: 2.337192187219528e-23 - syst_JES_EtaIntercalibration_Stat37: 9.522815299414418e-16 - syst_JES_EtaIntercalibration_Stat38: 9.5228152990911e-16 - syst_JES_EtaIntercalibration_Stat39: 7.421276250585204e-24 - syst_JES_EtaIntercalibration_Stat4: 3.725641287080655e-26 - syst_JES_EtaIntercalibration_Stat40: 6.203339967307934e-26 + syst_JES_EtaIntercalibration_Stat35: 6.56533843e-26 + syst_JES_EtaIntercalibration_Stat36: 2.33719219e-23 + syst_JES_EtaIntercalibration_Stat37: 9.52281530e-16 + syst_JES_EtaIntercalibration_Stat38: 9.52281530e-16 + syst_JES_EtaIntercalibration_Stat39: 7.42127625e-24 + syst_JES_EtaIntercalibration_Stat4: 3.72564129e-26 + syst_JES_EtaIntercalibration_Stat40: 6.20333997e-26 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 - syst_JES_EtaIntercalibration_Stat44: 4.2755674184837735e-26 + syst_JES_EtaIntercalibration_Stat44: 4.27556742e-26 syst_JES_EtaIntercalibration_Stat45: 0.0 syst_JES_EtaIntercalibration_Stat46: 0.0 - syst_JES_EtaIntercalibration_Stat47: 2.718453742479353e-26 - syst_JES_EtaIntercalibration_Stat48: 3.157316646695418e-24 - syst_JES_EtaIntercalibration_Stat49: 5.915020456431237e-23 - syst_JES_EtaIntercalibration_Stat5: 1.145838473564228e-24 - syst_JES_EtaIntercalibration_Stat50: 4.0400085086543075e-10 - syst_JES_EtaIntercalibration_Stat51: 1.7525107585119128e-21 - syst_JES_EtaIntercalibration_Stat52: 7.444139921567501e-25 + syst_JES_EtaIntercalibration_Stat47: 2.71845374e-26 + syst_JES_EtaIntercalibration_Stat48: 3.15731665e-24 + syst_JES_EtaIntercalibration_Stat49: 5.91502046e-23 + syst_JES_EtaIntercalibration_Stat5: 1.14583847e-24 + syst_JES_EtaIntercalibration_Stat50: 4.04000851e-10 + syst_JES_EtaIntercalibration_Stat51: 1.75251076e-21 + syst_JES_EtaIntercalibration_Stat52: 7.44413992e-25 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 syst_JES_EtaIntercalibration_Stat56: 0.0 - syst_JES_EtaIntercalibration_Stat57: 2.3745706461343702e-23 - syst_JES_EtaIntercalibration_Stat58: 2.2028106835359227e-23 - syst_JES_EtaIntercalibration_Stat59: 1.4254778779067866e-14 - syst_JES_EtaIntercalibration_Stat6: 1.5997514650719967e-24 - syst_JES_EtaIntercalibration_Stat60: 9.539269281997187e-16 - syst_JES_EtaIntercalibration_Stat61: 3.039855112912456e-23 - syst_JES_EtaIntercalibration_Stat62: 3.5429099268821386e-26 + syst_JES_EtaIntercalibration_Stat57: 2.37457065e-23 + syst_JES_EtaIntercalibration_Stat58: 2.20281068e-23 + syst_JES_EtaIntercalibration_Stat59: 1.42547788e-14 + syst_JES_EtaIntercalibration_Stat6: 1.59975147e-24 + syst_JES_EtaIntercalibration_Stat60: 9.53926928e-16 + syst_JES_EtaIntercalibration_Stat61: 3.03985511e-23 + syst_JES_EtaIntercalibration_Stat62: 3.54290993e-26 syst_JES_EtaIntercalibration_Stat63: 0.0 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 syst_JES_EtaIntercalibration_Stat68: 0.0 - syst_JES_EtaIntercalibration_Stat69: 4.3695121867320614e-26 - syst_JES_EtaIntercalibration_Stat7: 8.293082539080386e-25 - syst_JES_EtaIntercalibration_Stat70: 3.289453831185354e-23 - syst_JES_EtaIntercalibration_Stat71: 9.06295585060801e-11 - syst_JES_EtaIntercalibration_Stat72: 4.0408745340342916e-10 - syst_JES_EtaIntercalibration_Stat73: 4.0400085086536664e-10 - syst_JES_EtaIntercalibration_Stat74: 6.584883452271574e-24 + syst_JES_EtaIntercalibration_Stat69: 4.36951219e-26 + syst_JES_EtaIntercalibration_Stat7: 8.29308254e-25 + syst_JES_EtaIntercalibration_Stat70: 3.28945383e-23 + syst_JES_EtaIntercalibration_Stat71: 9.06295585e-11 + syst_JES_EtaIntercalibration_Stat72: 4.04087453e-10 + syst_JES_EtaIntercalibration_Stat73: 4.04000851e-10 + syst_JES_EtaIntercalibration_Stat74: 6.58488345e-24 syst_JES_EtaIntercalibration_Stat75: 0.0 syst_JES_EtaIntercalibration_Stat76: 0.0 syst_JES_EtaIntercalibration_Stat77: 0.0 syst_JES_EtaIntercalibration_Stat78: 0.0 - syst_JES_EtaIntercalibration_Stat79: 2.4676284993237942e-23 + syst_JES_EtaIntercalibration_Stat79: 2.46762850e-23 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 4.0147716832716654e-20 - syst_JES_EtaIntercalibration_Stat81: 2.0455487928254831e-10 - syst_JES_EtaIntercalibration_Stat82: 1.1774673622652986e-14 - syst_JES_EtaIntercalibration_Stat83: 1.995048051319817e-21 - syst_JES_EtaIntercalibration_Stat84: 5.0637099048029995e-26 - syst_JES_EtaIntercalibration_Stat85: 4.2755674184837735e-26 - syst_JES_EtaIntercalibration_Stat86: 4.2755674184837735e-26 - syst_JES_EtaIntercalibration_Stat87: 4.2755674184837735e-26 - syst_JES_EtaIntercalibration_Stat88: 4.2755674184837735e-26 - syst_JES_EtaIntercalibration_Stat89: 4.2755674184837735e-26 + syst_JES_EtaIntercalibration_Stat80: 4.01477168e-20 + syst_JES_EtaIntercalibration_Stat81: 2.04554879e-10 + syst_JES_EtaIntercalibration_Stat82: 1.17746736e-14 + syst_JES_EtaIntercalibration_Stat83: 1.99504805e-21 + syst_JES_EtaIntercalibration_Stat84: 5.06370990e-26 + syst_JES_EtaIntercalibration_Stat85: 4.27556742e-26 + syst_JES_EtaIntercalibration_Stat86: 4.27556742e-26 + syst_JES_EtaIntercalibration_Stat87: 4.27556742e-26 + syst_JES_EtaIntercalibration_Stat88: 4.27556742e-26 + syst_JES_EtaIntercalibration_Stat89: 4.27556742e-26 syst_JES_EtaIntercalibration_Stat9: 0.0 syst_JES_EtaIntercalibration_Stat90: 0.0 - syst_JES_EtaIntercalibration_Stat91: 1.6084146363132704e-21 - syst_JES_EtaIntercalibration_Stat92: 9.064687901526303e-11 - syst_JES_EtaIntercalibration_Stat93: 4.0417405594038646e-10 - syst_JES_EtaIntercalibration_Stat94: 4.040874534054813e-10 - syst_JES_EtaIntercalibration_Stat95: 2.812852233498944e-23 - syst_JES_EtaIntercalibration_Stat96: 8.868230870218706e-25 - syst_JES_EtaIntercalibration_Stat97: 4.2755674184837735e-26 - syst_JES_EtaIntercalibration_Stat98: 4.2755674184837735e-26 - syst_JES_EtaIntercalibration_Stat99: 4.2755674184837735e-26 - syst_JES_EtaIntercalibration_TotalStat_MJB: 2.7783453708997376e-06 - syst_JES_Flavour_Comp: 4.181862966430153e-06 - syst_JES_Gjet_Generator: 5.5684741850887665e-06 - syst_JES_Gjet_OOC: 4.677235374663114e-06 - syst_JES_Gjet_Purity: 4.3675516024427236e-07 - syst_JES_Gjet_Stat1: 1.5939673044011912e-08 - syst_JES_Gjet_Stat10: 2.138612342150863e-07 - syst_JES_Gjet_Stat11: 2.1560521793314745e-07 - syst_JES_Gjet_Stat12: 1.9837420214080257e-07 - syst_JES_Gjet_Stat13: 1.1424872997105919e-06 - syst_JES_Gjet_Stat14: 3.2789675204246835e-06 - syst_JES_Gjet_Stat15: 5.307875916974699e-06 - syst_JES_Gjet_Stat2: 5.980771438535311e-09 - syst_JES_Gjet_Stat3: 1.4624176446897788e-08 - syst_JES_Gjet_Stat4: 5.544636911466791e-08 - syst_JES_Gjet_Stat5: 3.3465085665539165e-19 - syst_JES_Gjet_Stat6: 9.349046515554408e-08 - syst_JES_Gjet_Stat7: 4.177869642533142e-08 - syst_JES_Gjet_Stat8: 7.642125959934186e-09 - syst_JES_Gjet_Stat9: 8.170867946552557e-08 - syst_JES_Gjet_Veto: 5.137499781021893e-06 - syst_JES_Gjet_dPhi: 3.7661511852287605e-07 - syst_JES_LArESZee: 7.865633016483798e-06 - syst_JES_LArEsmear: 7.251031030136335e-07 - syst_JES_LAr_JVT: 9.470153153460612e-07 - syst_JES_MJB_Alpha: 1.8097742621664173e-07 - syst_JES_MJB_Asym: 2.8605353956908135e-06 - syst_JES_MJB_Beta: 2.046962811093548e-07 - syst_JES_MJB_Stat1: 7.539620731646684e-13 - syst_JES_MJB_Stat10: 2.138762960217892e-08 - syst_JES_MJB_Stat11: 3.027777196228282e-08 - syst_JES_MJB_Stat12: 8.474032378389879e-08 - syst_JES_MJB_Stat13: 1.4412204272768271e-07 - syst_JES_MJB_Stat14: 5.636945449443343e-07 - syst_JES_MJB_Stat15: 2.950506863235536e-07 - syst_JES_MJB_Stat16: 1.4885485380060672e-06 - syst_JES_MJB_Stat2: 1.684814520206898e-09 - syst_JES_MJB_Stat3: 1.186108393023167e-13 - syst_JES_MJB_Stat4: 9.933311381407511e-14 + syst_JES_EtaIntercalibration_Stat91: 1.60841464e-21 + syst_JES_EtaIntercalibration_Stat92: 9.06468790e-11 + syst_JES_EtaIntercalibration_Stat93: 4.04174056e-10 + syst_JES_EtaIntercalibration_Stat94: 4.04087453e-10 + syst_JES_EtaIntercalibration_Stat95: 2.81285223e-23 + syst_JES_EtaIntercalibration_Stat96: 8.86823087e-25 + syst_JES_EtaIntercalibration_Stat97: 4.27556742e-26 + syst_JES_EtaIntercalibration_Stat98: 4.27556742e-26 + syst_JES_EtaIntercalibration_Stat99: 4.27556742e-26 + syst_JES_EtaIntercalibration_TotalStat_MJB: 2.77834537e-06 + syst_JES_Flavour_Comp: 4.18186297e-06 + syst_JES_Gjet_Generator: 5.56847419e-06 + syst_JES_Gjet_OOC: 4.67723537e-06 + syst_JES_Gjet_Purity: 4.36755160e-07 + syst_JES_Gjet_Stat1: 1.59396730e-08 + syst_JES_Gjet_Stat10: 2.13861234e-07 + syst_JES_Gjet_Stat11: 2.15605218e-07 + syst_JES_Gjet_Stat12: 1.98374202e-07 + syst_JES_Gjet_Stat13: 1.14248730e-06 + syst_JES_Gjet_Stat14: 3.27896752e-06 + syst_JES_Gjet_Stat15: 5.30787592e-06 + syst_JES_Gjet_Stat2: 5.98077144e-09 + syst_JES_Gjet_Stat3: 1.46241764e-08 + syst_JES_Gjet_Stat4: 5.54463691e-08 + syst_JES_Gjet_Stat5: 3.34650857e-19 + syst_JES_Gjet_Stat6: 9.34904652e-08 + syst_JES_Gjet_Stat7: 4.17786964e-08 + syst_JES_Gjet_Stat8: 7.64212596e-09 + syst_JES_Gjet_Stat9: 8.17086795e-08 + syst_JES_Gjet_Veto: 5.13749978e-06 + syst_JES_Gjet_dPhi: 3.76615119e-07 + syst_JES_LArESZee: 7.86563302e-06 + syst_JES_LArEsmear: 7.25103103e-07 + syst_JES_LAr_JVT: 9.47015315e-07 + syst_JES_MJB_Alpha: 1.80977426e-07 + syst_JES_MJB_Asym: 2.86053540e-06 + syst_JES_MJB_Beta: 2.04696281e-07 + syst_JES_MJB_Stat1: 7.53962073e-13 + syst_JES_MJB_Stat10: 2.13876296e-08 + syst_JES_MJB_Stat11: 3.02777720e-08 + syst_JES_MJB_Stat12: 8.47403238e-08 + syst_JES_MJB_Stat13: 1.44122043e-07 + syst_JES_MJB_Stat14: 5.63694545e-07 + syst_JES_MJB_Stat15: 2.95050686e-07 + syst_JES_MJB_Stat16: 1.48854854e-06 + syst_JES_MJB_Stat2: 1.68481452e-09 + syst_JES_MJB_Stat3: 1.18610839e-13 + syst_JES_MJB_Stat4: 9.93331138e-14 syst_JES_MJB_Stat5: 0.0 - syst_JES_MJB_Stat6: 2.1234942900794432e-09 - syst_JES_MJB_Stat7: 2.7721473175139883e-09 - syst_JES_MJB_Stat8: 7.792446791605318e-09 - syst_JES_MJB_Stat9: 1.0283071173049421e-08 - syst_JES_MJB_Threshold: 9.626136192678764e-07 - syst_JES_Pileup_MuOffset: 1.5915076971224486e-06 - syst_JES_Pileup_NPVOffset: 1.3585660896695458e-06 - syst_JES_Pileup_Pt_term: 5.947218089157316e-07 - syst_JES_PunchThrough_MC15: 5.989579451013234e-06 + syst_JES_MJB_Stat6: 2.12349429e-09 + syst_JES_MJB_Stat7: 2.77214732e-09 + syst_JES_MJB_Stat8: 7.79244679e-09 + syst_JES_MJB_Stat9: 1.02830712e-08 + syst_JES_MJB_Threshold: 9.62613619e-07 + syst_JES_Pileup_MuOffset: 1.59150770e-06 + syst_JES_Pileup_NPVOffset: 1.35856609e-06 + syst_JES_Pileup_Pt_term: 5.94721809e-07 + syst_JES_PunchThrough_MC15: 5.98957945e-06 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 2.1149077403045265e-06 - syst_JES_Zjet_MuScale: 2.1299635560262524e-07 - syst_JES_Zjet_MuSmearID: 1.2759457786285434e-08 - syst_JES_Zjet_MuSmearMS: 4.4212146521063646e-07 - syst_JES_Zjet_OOC: 1.3157598033075794e-06 - syst_JES_Zjet_Stat1: 2.3926873489864903e-07 - syst_JES_Zjet_Stat10: 1.1641391497583096e-07 - syst_JES_Zjet_Stat11: 1.3299274416298055e-07 - syst_JES_Zjet_Stat12: 2.662672905183812e-07 - syst_JES_Zjet_Stat13: 4.738153437785653e-07 - syst_JES_Zjet_Stat2: 8.496575236529131e-10 - syst_JES_Zjet_Stat3: 7.162234916560612e-08 - syst_JES_Zjet_Stat4: 8.187077668496861e-08 - syst_JES_Zjet_Stat5: 8.501772697502562e-08 - syst_JES_Zjet_Stat6: 8.466768258904929e-08 - syst_JES_Zjet_Stat7: 9.253364077458534e-08 - syst_JES_Zjet_Stat8: 3.1951757181726325e-08 - syst_JES_Zjet_Stat9: 8.92354189769959e-08 - syst_JES_Zjet_Veto: 2.499186817746925e-07 - syst_JES_Zjet_dPhi: 2.391089866567127e-07 - syst_PRW: 8.508e-07 - syst_Unfolding_bias: 1.221e-21 - syst_cleaning: 6.746337895480777e-07 - syst_lumi: 2.147e-06 + syst_JES_Zjet_MC: 2.11490774e-06 + syst_JES_Zjet_MuScale: 2.12996356e-07 + syst_JES_Zjet_MuSmearID: 1.27594578e-08 + syst_JES_Zjet_MuSmearMS: 4.42121465e-07 + syst_JES_Zjet_OOC: 1.31575980e-06 + syst_JES_Zjet_Stat1: 2.39268735e-07 + syst_JES_Zjet_Stat10: 1.16413915e-07 + syst_JES_Zjet_Stat11: 1.32992744e-07 + syst_JES_Zjet_Stat12: 2.66267291e-07 + syst_JES_Zjet_Stat13: 4.73815344e-07 + syst_JES_Zjet_Stat2: 8.49657524e-10 + syst_JES_Zjet_Stat3: 7.16223492e-08 + syst_JES_Zjet_Stat4: 8.18707767e-08 + syst_JES_Zjet_Stat5: 8.50177270e-08 + syst_JES_Zjet_Stat6: 8.46676826e-08 + syst_JES_Zjet_Stat7: 9.25336408e-08 + syst_JES_Zjet_Stat8: 3.19517572e-08 + syst_JES_Zjet_Stat9: 8.92354190e-08 + syst_JES_Zjet_Veto: 2.49918682e-07 + syst_JES_Zjet_dPhi: 2.39108987e-07 + syst_PRW: 8.50800000e-07 + syst_Unfolding_bias: 1.22100000e-21 + syst_cleaning: 6.74633790e-07 + syst_lumi: 2.14700000e-06 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 4.7755013087633e-07 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 1.258114028019718e-06 - syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.502149792796977e-07 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 4.77550131e-07 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 1.25811403e-06 + syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.50214979e-07 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 1.7517764554874003e-06 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 6.913708773154971e-07 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.6755001492091844e-06 -- stat: 2.2598e-06 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 1.75177646e-06 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 6.91370877e-07 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.67550015e-06 +- stat: 2.25980000e-06 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 2.5034058799962907e-07 - syst_JER_NP1: 1.1356907270467606e-07 - syst_JER_NP2: 3.3983475219582827e-07 - syst_JER_NP3: 8.668366109019622e-08 + syst_JER_NP0: 2.50340588e-07 + syst_JER_NP1: 1.13569073e-07 + syst_JER_NP2: 3.39834752e-07 + syst_JER_NP3: 8.66836611e-08 syst_JER_NP4: 0.0 syst_JER_NP5: 0.0 syst_JER_NP6: 0.0 syst_JER_NP7: 0.0 syst_JER_NP8: 0.0 - syst_JES_EtaIntercalibration_Modelling: 1.2202153283334874e-06 + syst_JES_EtaIntercalibration_Modelling: 1.22021533e-06 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 syst_JES_EtaIntercalibration_Stat100: 0.0 syst_JES_EtaIntercalibration_Stat101: 0.0 - syst_JES_EtaIntercalibration_Stat102: 1.388238722266455e-11 + syst_JES_EtaIntercalibration_Stat102: 1.38823872e-11 syst_JES_EtaIntercalibration_Stat103: 0.0 syst_JES_EtaIntercalibration_Stat104: 0.0 syst_JES_EtaIntercalibration_Stat105: 0.0 @@ -44490,9 +44490,9 @@ bins: syst_JES_EtaIntercalibration_Stat11: 0.0 syst_JES_EtaIntercalibration_Stat110: 0.0 syst_JES_EtaIntercalibration_Stat111: 0.0 - syst_JES_EtaIntercalibration_Stat112: 3.864205351686165e-11 + syst_JES_EtaIntercalibration_Stat112: 3.86420535e-11 syst_JES_EtaIntercalibration_Stat113: 0.0 - syst_JES_EtaIntercalibration_Stat114: 2.8596158832962164e-11 + syst_JES_EtaIntercalibration_Stat114: 2.85961588e-11 syst_JES_EtaIntercalibration_Stat115: 0.0 syst_JES_EtaIntercalibration_Stat116: 0.0 syst_JES_EtaIntercalibration_Stat117: 0.0 @@ -44500,9 +44500,9 @@ bins: syst_JES_EtaIntercalibration_Stat119: 0.0 syst_JES_EtaIntercalibration_Stat12: 0.0 syst_JES_EtaIntercalibration_Stat120: 0.0 - syst_JES_EtaIntercalibration_Stat121: 1.3891047476702395e-11 - syst_JES_EtaIntercalibration_Stat122: 1.3925688492853775e-11 - syst_JES_EtaIntercalibration_Stat123: 1.3925688492853775e-11 + syst_JES_EtaIntercalibration_Stat121: 1.38910475e-11 + syst_JES_EtaIntercalibration_Stat122: 1.39256885e-11 + syst_JES_EtaIntercalibration_Stat123: 1.39256885e-11 syst_JES_EtaIntercalibration_Stat124: 0.0 syst_JES_EtaIntercalibration_Stat125: 0.0 syst_JES_EtaIntercalibration_Stat126: 0.0 @@ -44511,19 +44511,19 @@ bins: syst_JES_EtaIntercalibration_Stat129: 0.0 syst_JES_EtaIntercalibration_Stat13: 0.0 syst_JES_EtaIntercalibration_Stat130: 0.0 - syst_JES_EtaIntercalibration_Stat131: 5.416122875267879e-11 + syst_JES_EtaIntercalibration_Stat131: 5.41612288e-11 syst_JES_EtaIntercalibration_Stat132: 0.0 syst_JES_EtaIntercalibration_Stat133: 0.0 - syst_JES_EtaIntercalibration_Stat134: 2.7453005299966705e-11 + syst_JES_EtaIntercalibration_Stat134: 2.74530053e-11 syst_JES_EtaIntercalibration_Stat135: 0.0 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 syst_JES_EtaIntercalibration_Stat138: 0.0 syst_JES_EtaIntercalibration_Stat139: 0.0 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 1.3137605375409935e-11 - syst_JES_EtaIntercalibration_Stat141: 1.3492675790961553e-11 - syst_JES_EtaIntercalibration_Stat142: 1.453190627550288e-11 + syst_JES_EtaIntercalibration_Stat140: 1.31376054e-11 + syst_JES_EtaIntercalibration_Stat141: 1.34926758e-11 + syst_JES_EtaIntercalibration_Stat142: 1.45319063e-11 syst_JES_EtaIntercalibration_Stat143: 0.0 syst_JES_EtaIntercalibration_Stat144: 0.0 syst_JES_EtaIntercalibration_Stat145: 0.0 @@ -44532,7 +44532,7 @@ bins: syst_JES_EtaIntercalibration_Stat148: 0.0 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 3.523857367998881e-10 + syst_JES_EtaIntercalibration_Stat150: 3.52385737e-10 syst_JES_EtaIntercalibration_Stat151: 0.0 syst_JES_EtaIntercalibration_Stat152: 0.0 syst_JES_EtaIntercalibration_Stat153: 0.0 @@ -44540,108 +44540,108 @@ bins: syst_JES_EtaIntercalibration_Stat155: 0.0 syst_JES_EtaIntercalibration_Stat156: 0.0 syst_JES_EtaIntercalibration_Stat157: 0.0 - syst_JES_EtaIntercalibration_Stat158: 1.3215547661750534e-11 - syst_JES_EtaIntercalibration_Stat159: 1.3847746206513175e-11 + syst_JES_EtaIntercalibration_Stat158: 1.32155477e-11 + syst_JES_EtaIntercalibration_Stat159: 1.38477462e-11 syst_JES_EtaIntercalibration_Stat16: 0.0 - syst_JES_EtaIntercalibration_Stat160: 1.4298079416481082e-11 + syst_JES_EtaIntercalibration_Stat160: 1.42980794e-11 syst_JES_EtaIntercalibration_Stat161: 0.0 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 syst_JES_EtaIntercalibration_Stat165: 0.0 - syst_JES_EtaIntercalibration_Stat166: 3.865071377089949e-11 + syst_JES_EtaIntercalibration_Stat166: 3.86507138e-11 syst_JES_EtaIntercalibration_Stat167: 0.0 - syst_JES_EtaIntercalibration_Stat168: 1.738979010799153e-11 + syst_JES_EtaIntercalibration_Stat168: 1.73897901e-11 syst_JES_EtaIntercalibration_Stat169: 0.0 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 2.7453005299966705e-11 + syst_JES_EtaIntercalibration_Stat170: 2.74530053e-11 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 syst_JES_EtaIntercalibration_Stat175: 0.0 - syst_JES_EtaIntercalibration_Stat176: 2.3997563938866794e-11 - syst_JES_EtaIntercalibration_Stat177: 2.77647744453291e-11 - syst_JES_EtaIntercalibration_Stat178: 1.3492675790961553e-11 - syst_JES_EtaIntercalibration_Stat179: 1.459252805376779e-11 + syst_JES_EtaIntercalibration_Stat176: 2.39975639e-11 + syst_JES_EtaIntercalibration_Stat177: 2.77647744e-11 + syst_JES_EtaIntercalibration_Stat178: 1.34926758e-11 + syst_JES_EtaIntercalibration_Stat179: 1.45925281e-11 syst_JES_EtaIntercalibration_Stat18: 0.0 syst_JES_EtaIntercalibration_Stat180: 0.0 syst_JES_EtaIntercalibration_Stat181: 0.0 syst_JES_EtaIntercalibration_Stat182: 0.0 - syst_JES_EtaIntercalibration_Stat183: 1.184895957457869e-10 - syst_JES_EtaIntercalibration_Stat184: 3.3987845724611614e-09 + syst_JES_EtaIntercalibration_Stat183: 1.18489596e-10 + syst_JES_EtaIntercalibration_Stat184: 3.39878457e-09 syst_JES_EtaIntercalibration_Stat185: 0.0 - syst_JES_EtaIntercalibration_Stat186: 4.924952502174513e-09 - syst_JES_EtaIntercalibration_Stat187: 2.980859439826038e-10 + syst_JES_EtaIntercalibration_Stat186: 4.92495250e-09 + syst_JES_EtaIntercalibration_Stat187: 2.98085944e-10 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 - syst_JES_EtaIntercalibration_Stat192: 1.4471284497237969e-11 - syst_JES_EtaIntercalibration_Stat193: 3.264915772267334e-11 - syst_JES_EtaIntercalibration_Stat194: 3.4934108747755397e-09 - syst_JES_EtaIntercalibration_Stat195: 3.1644568254283386e-11 - syst_JES_EtaIntercalibration_Stat196: 1.3059663089069336e-11 + syst_JES_EtaIntercalibration_Stat192: 1.44712845e-11 + syst_JES_EtaIntercalibration_Stat193: 3.26491577e-11 + syst_JES_EtaIntercalibration_Stat194: 3.49341087e-09 + syst_JES_EtaIntercalibration_Stat195: 3.16445683e-11 + syst_JES_EtaIntercalibration_Stat196: 1.30596631e-11 syst_JES_EtaIntercalibration_Stat197: 0.0 - syst_JES_EtaIntercalibration_Stat198: 1.3800274227347804e-10 - syst_JES_EtaIntercalibration_Stat199: 4.618513478382412e-09 + syst_JES_EtaIntercalibration_Stat198: 1.38002742e-10 + syst_JES_EtaIntercalibration_Stat199: 4.61851348e-09 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 1.1897638084930975e-08 - syst_JES_EtaIntercalibration_Stat201: 6.625960364354741e-09 + syst_JES_EtaIntercalibration_Stat200: 1.18976381e-08 + syst_JES_EtaIntercalibration_Stat201: 6.62596036e-09 syst_JES_EtaIntercalibration_Stat202: 0.0 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 - syst_JES_EtaIntercalibration_Stat207: 1.3206887407712687e-11 - syst_JES_EtaIntercalibration_Stat208: 5.222714152622179e-09 - syst_JES_EtaIntercalibration_Stat209: 5.812603095859893e-09 + syst_JES_EtaIntercalibration_Stat207: 1.32068874e-11 + syst_JES_EtaIntercalibration_Stat208: 5.22271415e-09 + syst_JES_EtaIntercalibration_Stat209: 5.81260310e-09 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 3.633209766515003e-09 - syst_JES_EtaIntercalibration_Stat211: 1.357927833134e-11 - syst_JES_EtaIntercalibration_Stat212: 4.915238408002199e-09 - syst_JES_EtaIntercalibration_Stat213: 1.1743887974176184e-08 - syst_JES_EtaIntercalibration_Stat214: 6.625960364354741e-09 + syst_JES_EtaIntercalibration_Stat210: 3.63320977e-09 + syst_JES_EtaIntercalibration_Stat211: 1.35792783e-11 + syst_JES_EtaIntercalibration_Stat212: 4.91523841e-09 + syst_JES_EtaIntercalibration_Stat213: 1.17438880e-08 + syst_JES_EtaIntercalibration_Stat214: 6.62596036e-09 syst_JES_EtaIntercalibration_Stat215: 0.0 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 syst_JES_EtaIntercalibration_Stat219: 0.0 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 1.3206887407712687e-11 - syst_JES_EtaIntercalibration_Stat221: 3.3637730734994596e-09 - syst_JES_EtaIntercalibration_Stat222: 5.8054065103143295e-09 - syst_JES_EtaIntercalibration_Stat223: 3.6459407520556333e-09 - syst_JES_EtaIntercalibration_Stat224: 5.844041580960902e-09 - syst_JES_EtaIntercalibration_Stat225: 1.9316875394328142e-08 - syst_JES_EtaIntercalibration_Stat226: 1.1693616410247089e-08 - syst_JES_EtaIntercalibration_Stat227: 3.242399111768939e-10 + syst_JES_EtaIntercalibration_Stat220: 1.32068874e-11 + syst_JES_EtaIntercalibration_Stat221: 3.36377307e-09 + syst_JES_EtaIntercalibration_Stat222: 5.80540651e-09 + syst_JES_EtaIntercalibration_Stat223: 3.64594075e-09 + syst_JES_EtaIntercalibration_Stat224: 5.84404158e-09 + syst_JES_EtaIntercalibration_Stat225: 1.93168754e-08 + syst_JES_EtaIntercalibration_Stat226: 1.16936164e-08 + syst_JES_EtaIntercalibration_Stat227: 3.24239911e-10 syst_JES_EtaIntercalibration_Stat228: 0.0 syst_JES_EtaIntercalibration_Stat229: 0.0 syst_JES_EtaIntercalibration_Stat23: 0.0 syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 - syst_JES_EtaIntercalibration_Stat232: 2.3755076825807152e-11 - syst_JES_EtaIntercalibration_Stat233: 1.0186514991890015e-08 - syst_JES_EtaIntercalibration_Stat234: 1.7350616149001742e-08 - syst_JES_EtaIntercalibration_Stat235: 5.595388190286711e-09 - syst_JES_EtaIntercalibration_Stat236: 6.296160318003347e-09 - syst_JES_EtaIntercalibration_Stat237: 6.546695196814955e-09 + syst_JES_EtaIntercalibration_Stat232: 2.37550768e-11 + syst_JES_EtaIntercalibration_Stat233: 1.01865150e-08 + syst_JES_EtaIntercalibration_Stat234: 1.73506161e-08 + syst_JES_EtaIntercalibration_Stat235: 5.59538819e-09 + syst_JES_EtaIntercalibration_Stat236: 6.29616032e-09 + syst_JES_EtaIntercalibration_Stat237: 6.54669520e-09 syst_JES_EtaIntercalibration_Stat238: 0.0 syst_JES_EtaIntercalibration_Stat239: 0.0 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 - syst_JES_EtaIntercalibration_Stat243: 1.3891047476702395e-11 - syst_JES_EtaIntercalibration_Stat244: 3.2588535944408424e-11 - syst_JES_EtaIntercalibration_Stat245: 4.901706114201462e-09 + syst_JES_EtaIntercalibration_Stat243: 1.38910475e-11 + syst_JES_EtaIntercalibration_Stat244: 3.25885359e-11 + syst_JES_EtaIntercalibration_Stat245: 4.90170611e-09 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 syst_JES_EtaIntercalibration_Stat27: 0.0 - syst_JES_EtaIntercalibration_Stat28: 2.7453005299966705e-11 + syst_JES_EtaIntercalibration_Stat28: 2.74530053e-11 syst_JES_EtaIntercalibration_Stat29: 0.0 syst_JES_EtaIntercalibration_Stat3: 0.0 syst_JES_EtaIntercalibration_Stat30: 0.0 @@ -44666,7 +44666,7 @@ bins: syst_JES_EtaIntercalibration_Stat48: 0.0 syst_JES_EtaIntercalibration_Stat49: 0.0 syst_JES_EtaIntercalibration_Stat5: 0.0 - syst_JES_EtaIntercalibration_Stat50: 2.7453005299966705e-11 + syst_JES_EtaIntercalibration_Stat50: 2.74530053e-11 syst_JES_EtaIntercalibration_Stat51: 0.0 syst_JES_EtaIntercalibration_Stat52: 0.0 syst_JES_EtaIntercalibration_Stat53: 0.0 @@ -44690,8 +44690,8 @@ bins: syst_JES_EtaIntercalibration_Stat7: 0.0 syst_JES_EtaIntercalibration_Stat70: 0.0 syst_JES_EtaIntercalibration_Stat71: 0.0 - syst_JES_EtaIntercalibration_Stat72: 2.7453005299966705e-11 - syst_JES_EtaIntercalibration_Stat73: 2.7453005299966705e-11 + syst_JES_EtaIntercalibration_Stat72: 2.74530053e-11 + syst_JES_EtaIntercalibration_Stat73: 2.74530053e-11 syst_JES_EtaIntercalibration_Stat74: 0.0 syst_JES_EtaIntercalibration_Stat75: 0.0 syst_JES_EtaIntercalibration_Stat76: 0.0 @@ -44700,7 +44700,7 @@ bins: syst_JES_EtaIntercalibration_Stat79: 0.0 syst_JES_EtaIntercalibration_Stat8: 0.0 syst_JES_EtaIntercalibration_Stat80: 0.0 - syst_JES_EtaIntercalibration_Stat81: 1.388238722266455e-11 + syst_JES_EtaIntercalibration_Stat81: 1.38823872e-11 syst_JES_EtaIntercalibration_Stat82: 0.0 syst_JES_EtaIntercalibration_Stat83: 0.0 syst_JES_EtaIntercalibration_Stat84: 0.0 @@ -44713,206 +44713,206 @@ bins: syst_JES_EtaIntercalibration_Stat90: 0.0 syst_JES_EtaIntercalibration_Stat91: 0.0 syst_JES_EtaIntercalibration_Stat92: 0.0 - syst_JES_EtaIntercalibration_Stat93: 2.7453005299966705e-11 - syst_JES_EtaIntercalibration_Stat94: 2.7453005299966705e-11 + syst_JES_EtaIntercalibration_Stat93: 2.74530053e-11 + syst_JES_EtaIntercalibration_Stat94: 2.74530053e-11 syst_JES_EtaIntercalibration_Stat95: 0.0 syst_JES_EtaIntercalibration_Stat96: 0.0 syst_JES_EtaIntercalibration_Stat97: 0.0 syst_JES_EtaIntercalibration_Stat98: 0.0 syst_JES_EtaIntercalibration_Stat99: 0.0 - syst_JES_EtaIntercalibration_TotalStat_MJB: 2.6712935068988584e-07 - syst_JES_Flavour_Comp: 2.0967390753262552e-07 - syst_JES_Gjet_Generator: 5.191181079484706e-07 - syst_JES_Gjet_OOC: 4.3698806619860913e-07 - syst_JES_Gjet_Purity: 6.891830163316562e-09 - syst_JES_Gjet_Stat1: 1.1525906591240448e-09 - syst_JES_Gjet_Stat10: 3.670752647618742e-08 - syst_JES_Gjet_Stat11: 3.668968894662368e-08 - syst_JES_Gjet_Stat12: 1.521178727171794e-08 - syst_JES_Gjet_Stat13: 1.2410220102802368e-07 - syst_JES_Gjet_Stat14: 4.0330111182589124e-07 - syst_JES_Gjet_Stat15: 6.370050078296088e-07 - syst_JES_Gjet_Stat2: 1.157616157238659e-10 - syst_JES_Gjet_Stat3: 8.635820891351327e-09 - syst_JES_Gjet_Stat4: 1.6021469970012115e-08 + syst_JES_EtaIntercalibration_TotalStat_MJB: 2.67129351e-07 + syst_JES_Flavour_Comp: 2.09673908e-07 + syst_JES_Gjet_Generator: 5.19118108e-07 + syst_JES_Gjet_OOC: 4.36988066e-07 + syst_JES_Gjet_Purity: 6.89183016e-09 + syst_JES_Gjet_Stat1: 1.15259066e-09 + syst_JES_Gjet_Stat10: 3.67075265e-08 + syst_JES_Gjet_Stat11: 3.66896889e-08 + syst_JES_Gjet_Stat12: 1.52117873e-08 + syst_JES_Gjet_Stat13: 1.24102201e-07 + syst_JES_Gjet_Stat14: 4.03301112e-07 + syst_JES_Gjet_Stat15: 6.37005008e-07 + syst_JES_Gjet_Stat2: 1.15761616e-10 + syst_JES_Gjet_Stat3: 8.63582089e-09 + syst_JES_Gjet_Stat4: 1.60214700e-08 syst_JES_Gjet_Stat5: 0.0 - syst_JES_Gjet_Stat6: 1.028983304043365e-08 - syst_JES_Gjet_Stat7: 1.5545155997930673e-08 - syst_JES_Gjet_Stat8: 1.4800374150676056e-10 - syst_JES_Gjet_Stat9: 1.474977683729486e-08 - syst_JES_Gjet_Veto: 5.13641088212382e-07 - syst_JES_Gjet_dPhi: 2.262058354684954e-08 - syst_JES_LArESZee: 6.71990602612864e-07 - syst_JES_LArEsmear: 6.290469139897278e-08 - syst_JES_LAr_JVT: 8.138050995170773e-08 - syst_JES_MJB_Alpha: 1.7588605743492006e-08 - syst_JES_MJB_Asym: 4.2620972243720585e-07 - syst_JES_MJB_Beta: 3.7186538895143227e-08 + syst_JES_Gjet_Stat6: 1.02898330e-08 + syst_JES_Gjet_Stat7: 1.55451560e-08 + syst_JES_Gjet_Stat8: 1.48003742e-10 + syst_JES_Gjet_Stat9: 1.47497768e-08 + syst_JES_Gjet_Veto: 5.13641088e-07 + syst_JES_Gjet_dPhi: 2.26205835e-08 + syst_JES_LArESZee: 6.71990603e-07 + syst_JES_LArEsmear: 6.29046914e-08 + syst_JES_LAr_JVT: 8.13805100e-08 + syst_JES_MJB_Alpha: 1.75886057e-08 + syst_JES_MJB_Asym: 4.26209722e-07 + syst_JES_MJB_Beta: 3.71865389e-08 syst_JES_MJB_Stat1: 0.0 - syst_JES_MJB_Stat10: 1.4714928576109365e-09 - syst_JES_MJB_Stat11: 2.001833176740759e-09 - syst_JES_MJB_Stat12: 4.390165600521238e-09 - syst_JES_MJB_Stat13: 9.568262694972374e-09 - syst_JES_MJB_Stat14: 1.0039104342519803e-07 - syst_JES_MJB_Stat15: 1.8140005512678324e-07 - syst_JES_MJB_Stat16: 3.2216649034311436e-07 - syst_JES_MJB_Stat2: 1.0710722244554753e-10 + syst_JES_MJB_Stat10: 1.47149286e-09 + syst_JES_MJB_Stat11: 2.00183318e-09 + syst_JES_MJB_Stat12: 4.39016560e-09 + syst_JES_MJB_Stat13: 9.56826269e-09 + syst_JES_MJB_Stat14: 1.00391043e-07 + syst_JES_MJB_Stat15: 1.81400055e-07 + syst_JES_MJB_Stat16: 3.22166490e-07 + syst_JES_MJB_Stat2: 1.07107222e-10 syst_JES_MJB_Stat3: 0.0 syst_JES_MJB_Stat4: 0.0 syst_JES_MJB_Stat5: 0.0 - syst_JES_MJB_Stat6: 2.5686313476246448e-11 - syst_JES_MJB_Stat7: 4.318868688672996e-11 - syst_JES_MJB_Stat8: 5.420149644382524e-10 - syst_JES_MJB_Stat9: 7.273084952068139e-10 - syst_JES_MJB_Threshold: 7.877619992738924e-08 - syst_JES_Pileup_MuOffset: 1.9454444222336448e-07 - syst_JES_Pileup_NPVOffset: 1.2635185426023633e-07 - syst_JES_Pileup_Pt_term: 4.2869941392542163e-08 - syst_JES_PunchThrough_MC15: 7.690699886876356e-07 + syst_JES_MJB_Stat6: 2.56863135e-11 + syst_JES_MJB_Stat7: 4.31886869e-11 + syst_JES_MJB_Stat8: 5.42014964e-10 + syst_JES_MJB_Stat9: 7.27308495e-10 + syst_JES_MJB_Threshold: 7.87761999e-08 + syst_JES_Pileup_MuOffset: 1.94544442e-07 + syst_JES_Pileup_NPVOffset: 1.26351854e-07 + syst_JES_Pileup_Pt_term: 4.28699414e-08 + syst_JES_PunchThrough_MC15: 7.69069989e-07 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 1.9263506949670405e-07 - syst_JES_Zjet_MuScale: 2.570884187881671e-08 - syst_JES_Zjet_MuSmearID: 2.638779405331184e-10 - syst_JES_Zjet_MuSmearMS: 3.4099156514494605e-08 - syst_JES_Zjet_OOC: 1.1372445064716734e-07 - syst_JES_Zjet_Stat1: 2.527917812647397e-08 - syst_JES_Zjet_Stat10: 1.6981923352494556e-08 - syst_JES_Zjet_Stat11: 1.54671302687344e-08 - syst_JES_Zjet_Stat12: 2.4439236894796858e-08 - syst_JES_Zjet_Stat13: 4.326835564243226e-08 - syst_JES_Zjet_Stat2: 5.3927401893656996e-11 - syst_JES_Zjet_Stat3: 9.638862744120802e-09 - syst_JES_Zjet_Stat4: 1.1147478997513294e-08 - syst_JES_Zjet_Stat5: 1.0570842480616197e-08 - syst_JES_Zjet_Stat6: 1.7456031249972027e-08 - syst_JES_Zjet_Stat7: 1.031978753415011e-08 - syst_JES_Zjet_Stat8: 1.0174066443659586e-08 - syst_JES_Zjet_Stat9: 1.4572223577752297e-08 - syst_JES_Zjet_Veto: 2.469904451593219e-08 - syst_JES_Zjet_dPhi: 2.4863589342651232e-08 - syst_PRW: 7.018e-08 + syst_JES_Zjet_MC: 1.92635069e-07 + syst_JES_Zjet_MuScale: 2.57088419e-08 + syst_JES_Zjet_MuSmearID: 2.63877941e-10 + syst_JES_Zjet_MuSmearMS: 3.40991565e-08 + syst_JES_Zjet_OOC: 1.13724451e-07 + syst_JES_Zjet_Stat1: 2.52791781e-08 + syst_JES_Zjet_Stat10: 1.69819234e-08 + syst_JES_Zjet_Stat11: 1.54671303e-08 + syst_JES_Zjet_Stat12: 2.44392369e-08 + syst_JES_Zjet_Stat13: 4.32683556e-08 + syst_JES_Zjet_Stat2: 5.39274019e-11 + syst_JES_Zjet_Stat3: 9.63886274e-09 + syst_JES_Zjet_Stat4: 1.11474790e-08 + syst_JES_Zjet_Stat5: 1.05708425e-08 + syst_JES_Zjet_Stat6: 1.74560312e-08 + syst_JES_Zjet_Stat7: 1.03197875e-08 + syst_JES_Zjet_Stat8: 1.01740664e-08 + syst_JES_Zjet_Stat9: 1.45722236e-08 + syst_JES_Zjet_Veto: 2.46990445e-08 + syst_JES_Zjet_dPhi: 2.48635893e-08 + syst_PRW: 7.01800000e-08 syst_Unfolding_bias: 0.0 - syst_cleaning: 4.0919700328814725e-08 - syst_lumi: 1.3622e-07 + syst_cleaning: 4.09197003e-08 + syst_lumi: 1.36220000e-07 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 - syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 4.3736690261152596e-08 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 1.7948916401833285e-07 - syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.508356333894614e-08 + syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 4.37366903e-08 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 1.79489164e-07 + syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.50835633e-08 syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 2.499255089021527e-07 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 8.735053677568331e-08 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.9425272198865067e-07 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 2.49925509e-07 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 8.73505368e-08 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.94252722e-07 - stat: 62.71 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 186.41985087431007 - syst_JER_NP1: 44.79688440896309 - syst_JER_NP2: 26.163078947249307 - syst_JER_NP3: 40.64922202207565 - syst_JER_NP4: 4.9414241621216854 - syst_JER_NP5: 16.808868938747782 - syst_JER_NP6: 9.838982099282426 - syst_JER_NP7: 12.348081662752316 - syst_JER_NP8: 17.013982485003325 - syst_JES_EtaIntercalibration_Modelling: 247.80916745552412 - syst_JES_EtaIntercalibration_NonClosure: 233.2954472337598 + syst_JER_NP0: 1.86419851e+02 + syst_JER_NP1: 4.47968844e+01 + syst_JER_NP2: 2.61630789e+01 + syst_JER_NP3: 4.06492220e+01 + syst_JER_NP4: 4.94142416e+00 + syst_JER_NP5: 1.68088689e+01 + syst_JER_NP6: 9.83898210e+00 + syst_JER_NP7: 1.23480817e+01 + syst_JER_NP8: 1.70139825e+01 + syst_JES_EtaIntercalibration_Modelling: 2.47809167e+02 + syst_JES_EtaIntercalibration_NonClosure: 2.33295447e+02 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 0.3020696608400122 + syst_JES_EtaIntercalibration_Stat100: 3.02069661e-01 syst_JES_EtaIntercalibration_Stat101: 0.0 - syst_JES_EtaIntercalibration_Stat102: 1.1429566078815065 - syst_JES_EtaIntercalibration_Stat103: 9.545608885765223 - syst_JES_EtaIntercalibration_Stat104: 18.438137107636443 - syst_JES_EtaIntercalibration_Stat105: 8.261657506215082 - syst_JES_EtaIntercalibration_Stat106: 0.15470114192209442 + syst_JES_EtaIntercalibration_Stat102: 1.14295661e+00 + syst_JES_EtaIntercalibration_Stat103: 9.54560889e+00 + syst_JES_EtaIntercalibration_Stat104: 1.84381371e+01 + syst_JES_EtaIntercalibration_Stat105: 8.26165751e+00 + syst_JES_EtaIntercalibration_Stat106: 1.54701142e-01 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 0.11832731330931164 + syst_JES_EtaIntercalibration_Stat109: 1.18327313e-01 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 0.7736921917015835 - syst_JES_EtaIntercalibration_Stat111: 3.960704104070386 - syst_JES_EtaIntercalibration_Stat112: 2.5074841475072183 - syst_JES_EtaIntercalibration_Stat113: 1.0545544936132984 - syst_JES_EtaIntercalibration_Stat114: 9.249151312417805e-08 + syst_JES_EtaIntercalibration_Stat110: 7.73692192e-01 + syst_JES_EtaIntercalibration_Stat111: 3.96070410e+00 + syst_JES_EtaIntercalibration_Stat112: 2.50748415e+00 + syst_JES_EtaIntercalibration_Stat113: 1.05455449e+00 + syst_JES_EtaIntercalibration_Stat114: 9.24915131e-08 syst_JES_EtaIntercalibration_Stat115: 0.0 - syst_JES_EtaIntercalibration_Stat116: 0.011118034133784623 - syst_JES_EtaIntercalibration_Stat117: 0.10720528473447566 - syst_JES_EtaIntercalibration_Stat118: 0.3020696608400122 - syst_JES_EtaIntercalibration_Stat119: 0.3020696608400122 + syst_JES_EtaIntercalibration_Stat116: 1.11180341e-02 + syst_JES_EtaIntercalibration_Stat117: 1.07205285e-01 + syst_JES_EtaIntercalibration_Stat118: 3.02069661e-01 + syst_JES_EtaIntercalibration_Stat119: 3.02069661e-01 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 0.3020696608400122 - syst_JES_EtaIntercalibration_Stat121: 0.011063474533346204 - syst_JES_EtaIntercalibration_Stat122: 0.712122439753165 - syst_JES_EtaIntercalibration_Stat123: 2.5269170702656627 - syst_JES_EtaIntercalibration_Stat124: 4.3478798281461275 - syst_JES_EtaIntercalibration_Stat125: 3.5888652160815404 - syst_JES_EtaIntercalibration_Stat126: 0.05629828127927175 + syst_JES_EtaIntercalibration_Stat120: 3.02069661e-01 + syst_JES_EtaIntercalibration_Stat121: 1.10634745e-02 + syst_JES_EtaIntercalibration_Stat122: 7.12122440e-01 + syst_JES_EtaIntercalibration_Stat123: 2.52691707e+00 + syst_JES_EtaIntercalibration_Stat124: 4.34787983e+00 + syst_JES_EtaIntercalibration_Stat125: 3.58886522e+00 + syst_JES_EtaIntercalibration_Stat126: 5.62982813e-02 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 0.07108637773863569 - syst_JES_EtaIntercalibration_Stat129: 4.495328769956655 + syst_JES_EtaIntercalibration_Stat128: 7.10863777e-02 + syst_JES_EtaIntercalibration_Stat129: 4.49532877e+00 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 12.099634746553305 - syst_JES_EtaIntercalibration_Stat131: 3.8195935320397645 - syst_JES_EtaIntercalibration_Stat132: 0.5144269117182731 - syst_JES_EtaIntercalibration_Stat133: 0.00021323303547534563 + syst_JES_EtaIntercalibration_Stat130: 1.20996347e+01 + syst_JES_EtaIntercalibration_Stat131: 3.81959353e+00 + syst_JES_EtaIntercalibration_Stat132: 5.14426912e-01 + syst_JES_EtaIntercalibration_Stat133: 2.13233035e-04 syst_JES_EtaIntercalibration_Stat134: 0.0 - syst_JES_EtaIntercalibration_Stat135: 0.011118034133784623 - syst_JES_EtaIntercalibration_Stat136: 0.011118034133784623 - syst_JES_EtaIntercalibration_Stat137: 0.3020696608400122 - syst_JES_EtaIntercalibration_Stat138: 0.3020696608400122 - syst_JES_EtaIntercalibration_Stat139: 0.3020696608400122 + syst_JES_EtaIntercalibration_Stat135: 1.11180341e-02 + syst_JES_EtaIntercalibration_Stat136: 1.11180341e-02 + syst_JES_EtaIntercalibration_Stat137: 3.02069661e-01 + syst_JES_EtaIntercalibration_Stat138: 3.02069661e-01 + syst_JES_EtaIntercalibration_Stat139: 3.02069661e-01 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 0.027591569364572216 - syst_JES_EtaIntercalibration_Stat141: 0.5838415260154078 - syst_JES_EtaIntercalibration_Stat142: 3.291547470415701 - syst_JES_EtaIntercalibration_Stat143: 9.085698693551311 - syst_JES_EtaIntercalibration_Stat144: 5.249716278047797 - syst_JES_EtaIntercalibration_Stat145: 0.07207085732111142 - syst_JES_EtaIntercalibration_Stat146: 0.0013056109173486565 - syst_JES_EtaIntercalibration_Stat147: 0.13506538296321527 - syst_JES_EtaIntercalibration_Stat148: 0.4487764114790348 - syst_JES_EtaIntercalibration_Stat149: 0.239893476359821 + syst_JES_EtaIntercalibration_Stat140: 2.75915694e-02 + syst_JES_EtaIntercalibration_Stat141: 5.83841526e-01 + syst_JES_EtaIntercalibration_Stat142: 3.29154747e+00 + syst_JES_EtaIntercalibration_Stat143: 9.08569869e+00 + syst_JES_EtaIntercalibration_Stat144: 5.24971628e+00 + syst_JES_EtaIntercalibration_Stat145: 7.20708573e-02 + syst_JES_EtaIntercalibration_Stat146: 1.30561092e-03 + syst_JES_EtaIntercalibration_Stat147: 1.35065383e-01 + syst_JES_EtaIntercalibration_Stat148: 4.48776411e-01 + syst_JES_EtaIntercalibration_Stat149: 2.39893476e-01 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 0.028452773151311634 - syst_JES_EtaIntercalibration_Stat151: 9.214510296266427e-08 + syst_JES_EtaIntercalibration_Stat150: 2.84527732e-02 + syst_JES_EtaIntercalibration_Stat151: 9.21451030e-08 syst_JES_EtaIntercalibration_Stat152: 0.0 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 0.3020696608400122 + syst_JES_EtaIntercalibration_Stat156: 3.02069661e-01 syst_JES_EtaIntercalibration_Stat157: 0.0 syst_JES_EtaIntercalibration_Stat158: 0.0 - syst_JES_EtaIntercalibration_Stat159: 0.028654944193803624 - syst_JES_EtaIntercalibration_Stat16: 0.048116464957434275 - syst_JES_EtaIntercalibration_Stat160: 0.20826316885133578 - syst_JES_EtaIntercalibration_Stat161: 0.3872402968442205 - syst_JES_EtaIntercalibration_Stat162: 0.21734785483183405 - syst_JES_EtaIntercalibration_Stat163: 0.0010588846584968542 - syst_JES_EtaIntercalibration_Stat164: 6.619558910342894e-06 - syst_JES_EtaIntercalibration_Stat165: 0.01569870734423698 - syst_JES_EtaIntercalibration_Stat166: 0.013060076071753945 - syst_JES_EtaIntercalibration_Stat167: 0.003874612847756534 - syst_JES_EtaIntercalibration_Stat168: 0.00019543788157598183 - syst_JES_EtaIntercalibration_Stat169: 9.214510296266427e-08 - syst_JES_EtaIntercalibration_Stat17: 0.10300152371688488 + syst_JES_EtaIntercalibration_Stat159: 2.86549442e-02 + syst_JES_EtaIntercalibration_Stat16: 4.81164650e-02 + syst_JES_EtaIntercalibration_Stat160: 2.08263169e-01 + syst_JES_EtaIntercalibration_Stat161: 3.87240297e-01 + syst_JES_EtaIntercalibration_Stat162: 2.17347855e-01 + syst_JES_EtaIntercalibration_Stat163: 1.05888466e-03 + syst_JES_EtaIntercalibration_Stat164: 6.61955891e-06 + syst_JES_EtaIntercalibration_Stat165: 1.56987073e-02 + syst_JES_EtaIntercalibration_Stat166: 1.30600761e-02 + syst_JES_EtaIntercalibration_Stat167: 3.87461285e-03 + syst_JES_EtaIntercalibration_Stat168: 1.95437882e-04 + syst_JES_EtaIntercalibration_Stat169: 9.21451030e-08 + syst_JES_EtaIntercalibration_Stat17: 1.03001524e-01 syst_JES_EtaIntercalibration_Stat170: 0.0 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 syst_JES_EtaIntercalibration_Stat175: 0.0 - syst_JES_EtaIntercalibration_Stat176: 4.324064841095702e-23 - syst_JES_EtaIntercalibration_Stat177: 4.1976251321431745e-07 - syst_JES_EtaIntercalibration_Stat178: 0.004760922852504543 - syst_JES_EtaIntercalibration_Stat179: 0.008280915936658214 - syst_JES_EtaIntercalibration_Stat18: 0.030801929594588714 - syst_JES_EtaIntercalibration_Stat180: 0.003113015552434769 - syst_JES_EtaIntercalibration_Stat181: 2.896854975658947e-07 - syst_JES_EtaIntercalibration_Stat182: 0.00026920452610422436 - syst_JES_EtaIntercalibration_Stat183: 0.0007223119547674675 - syst_JES_EtaIntercalibration_Stat184: 3.0430949705850455e-05 - syst_JES_EtaIntercalibration_Stat185: 2.4854156206759463e-07 + syst_JES_EtaIntercalibration_Stat176: 4.32406484e-23 + syst_JES_EtaIntercalibration_Stat177: 4.19762513e-07 + syst_JES_EtaIntercalibration_Stat178: 4.76092285e-03 + syst_JES_EtaIntercalibration_Stat179: 8.28091594e-03 + syst_JES_EtaIntercalibration_Stat18: 3.08019296e-02 + syst_JES_EtaIntercalibration_Stat180: 3.11301555e-03 + syst_JES_EtaIntercalibration_Stat181: 2.89685498e-07 + syst_JES_EtaIntercalibration_Stat182: 2.69204526e-04 + syst_JES_EtaIntercalibration_Stat183: 7.22311955e-04 + syst_JES_EtaIntercalibration_Stat184: 3.04309497e-05 + syst_JES_EtaIntercalibration_Stat185: 2.48541562e-07 syst_JES_EtaIntercalibration_Stat186: 0.0 syst_JES_EtaIntercalibration_Stat187: 0.0 syst_JES_EtaIntercalibration_Stat188: 0.0 @@ -44921,16 +44921,16 @@ bins: syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 syst_JES_EtaIntercalibration_Stat192: 0.0 - syst_JES_EtaIntercalibration_Stat193: 8.603824754578628e-22 - syst_JES_EtaIntercalibration_Stat194: 2.3872784477248398e-08 - syst_JES_EtaIntercalibration_Stat195: 2.398930334544961e-05 - syst_JES_EtaIntercalibration_Stat196: 0.000676970876404591 - syst_JES_EtaIntercalibration_Stat197: 3.3450179117607126e-05 - syst_JES_EtaIntercalibration_Stat198: 3.390026991042992e-08 - syst_JES_EtaIntercalibration_Stat199: 2.0305897542339764e-08 + syst_JES_EtaIntercalibration_Stat193: 8.60382475e-22 + syst_JES_EtaIntercalibration_Stat194: 2.38727845e-08 + syst_JES_EtaIntercalibration_Stat195: 2.39893033e-05 + syst_JES_EtaIntercalibration_Stat196: 6.76970876e-04 + syst_JES_EtaIntercalibration_Stat197: 3.34501791e-05 + syst_JES_EtaIntercalibration_Stat198: 3.39002699e-08 + syst_JES_EtaIntercalibration_Stat199: 2.03058975e-08 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 6.08729256320082e-17 + syst_JES_EtaIntercalibration_Stat200: 6.08729256e-17 syst_JES_EtaIntercalibration_Stat201: 0.0 syst_JES_EtaIntercalibration_Stat202: 0.0 syst_JES_EtaIntercalibration_Stat203: 0.0 @@ -44941,9 +44941,9 @@ bins: syst_JES_EtaIntercalibration_Stat208: 0.0 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 1.313383085775053e-11 - syst_JES_EtaIntercalibration_Stat211: 3.894731569697711e-08 - syst_JES_EtaIntercalibration_Stat212: 3.0137684018038944e-30 + syst_JES_EtaIntercalibration_Stat210: 1.31338309e-11 + syst_JES_EtaIntercalibration_Stat211: 3.89473157e-08 + syst_JES_EtaIntercalibration_Stat212: 3.01376840e-30 syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 syst_JES_EtaIntercalibration_Stat215: 0.0 @@ -44955,7 +44955,7 @@ bins: syst_JES_EtaIntercalibration_Stat220: 0.0 syst_JES_EtaIntercalibration_Stat221: 0.0 syst_JES_EtaIntercalibration_Stat222: 0.0 - syst_JES_EtaIntercalibration_Stat223: 6.036197064377537e-23 + syst_JES_EtaIntercalibration_Stat223: 6.03619706e-23 syst_JES_EtaIntercalibration_Stat224: 0.0 syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 @@ -44973,124 +44973,124 @@ bins: syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 syst_JES_EtaIntercalibration_Stat239: 0.0 - syst_JES_EtaIntercalibration_Stat24: 0.03169652977851046 + syst_JES_EtaIntercalibration_Stat24: 3.16965298e-02 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 syst_JES_EtaIntercalibration_Stat243: 0.0 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 - syst_JES_EtaIntercalibration_Stat25: 0.39114348635858687 - syst_JES_EtaIntercalibration_Stat26: 0.6026702311380578 - syst_JES_EtaIntercalibration_Stat27: 0.6302014140510953 - syst_JES_EtaIntercalibration_Stat28: 0.2096967738712258 + syst_JES_EtaIntercalibration_Stat25: 3.91143486e-01 + syst_JES_EtaIntercalibration_Stat26: 6.02670231e-01 + syst_JES_EtaIntercalibration_Stat27: 6.30201414e-01 + syst_JES_EtaIntercalibration_Stat28: 2.09696774e-01 syst_JES_EtaIntercalibration_Stat29: 0.0 - syst_JES_EtaIntercalibration_Stat3: 0.045713235807586405 + syst_JES_EtaIntercalibration_Stat3: 4.57132358e-02 syst_JES_EtaIntercalibration_Stat30: 0.0 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 0.00983545051077987 - syst_JES_EtaIntercalibration_Stat36: 0.00983545051077987 - syst_JES_EtaIntercalibration_Stat37: 0.034440070775188604 - syst_JES_EtaIntercalibration_Stat38: 0.6962273510140203 - syst_JES_EtaIntercalibration_Stat39: 0.765649724284981 - syst_JES_EtaIntercalibration_Stat4: 0.14158975836902893 - syst_JES_EtaIntercalibration_Stat40: 0.21989597540655445 + syst_JES_EtaIntercalibration_Stat35: 9.83545051e-03 + syst_JES_EtaIntercalibration_Stat36: 9.83545051e-03 + syst_JES_EtaIntercalibration_Stat37: 3.44400708e-02 + syst_JES_EtaIntercalibration_Stat38: 6.96227351e-01 + syst_JES_EtaIntercalibration_Stat39: 7.65649724e-01 + syst_JES_EtaIntercalibration_Stat4: 1.41589758e-01 + syst_JES_EtaIntercalibration_Stat40: 2.19895975e-01 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 syst_JES_EtaIntercalibration_Stat44: 0.0 syst_JES_EtaIntercalibration_Stat45: 0.0 - syst_JES_EtaIntercalibration_Stat46: 0.1433924519457004 - syst_JES_EtaIntercalibration_Stat47: 0.9594378510356989 - syst_JES_EtaIntercalibration_Stat48: 2.5669396175212227 - syst_JES_EtaIntercalibration_Stat49: 1.6818420704691626 - syst_JES_EtaIntercalibration_Stat5: 0.16852143860277838 - syst_JES_EtaIntercalibration_Stat50: 0.3796704819287378 + syst_JES_EtaIntercalibration_Stat46: 1.43392452e-01 + syst_JES_EtaIntercalibration_Stat47: 9.59437851e-01 + syst_JES_EtaIntercalibration_Stat48: 2.56693962e+00 + syst_JES_EtaIntercalibration_Stat49: 1.68184207e+00 + syst_JES_EtaIntercalibration_Stat5: 1.68521439e-01 + syst_JES_EtaIntercalibration_Stat50: 3.79670482e-01 syst_JES_EtaIntercalibration_Stat51: 0.0 syst_JES_EtaIntercalibration_Stat52: 0.0 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 0.3020696608400122 - syst_JES_EtaIntercalibration_Stat57: 0.00983545051077987 - syst_JES_EtaIntercalibration_Stat58: 0.00983545051077987 - syst_JES_EtaIntercalibration_Stat59: 0.17693773389246284 + syst_JES_EtaIntercalibration_Stat56: 3.02069661e-01 + syst_JES_EtaIntercalibration_Stat57: 9.83545051e-03 + syst_JES_EtaIntercalibration_Stat58: 9.83545051e-03 + syst_JES_EtaIntercalibration_Stat59: 1.76937734e-01 syst_JES_EtaIntercalibration_Stat6: 0.0 - syst_JES_EtaIntercalibration_Stat60: 2.6510790765271413 - syst_JES_EtaIntercalibration_Stat61: 3.6623766873438894 - syst_JES_EtaIntercalibration_Stat62: 0.5122548977803921 - syst_JES_EtaIntercalibration_Stat63: 0.012839380826192515 + syst_JES_EtaIntercalibration_Stat60: 2.65107908e+00 + syst_JES_EtaIntercalibration_Stat61: 3.66237669e+00 + syst_JES_EtaIntercalibration_Stat62: 5.12254898e-01 + syst_JES_EtaIntercalibration_Stat63: 1.28393808e-02 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 0.18282810526557453 - syst_JES_EtaIntercalibration_Stat69: 9.375500026665243 + syst_JES_EtaIntercalibration_Stat68: 1.82828105e-01 + syst_JES_EtaIntercalibration_Stat69: 9.37550003e+00 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 19.26951672979891 - syst_JES_EtaIntercalibration_Stat71: 8.06606558366593 - syst_JES_EtaIntercalibration_Stat72: 1.4940327974981005 + syst_JES_EtaIntercalibration_Stat70: 1.92695167e+01 + syst_JES_EtaIntercalibration_Stat71: 8.06606558e+00 + syst_JES_EtaIntercalibration_Stat72: 1.49403280e+00 syst_JES_EtaIntercalibration_Stat73: 0.0 syst_JES_EtaIntercalibration_Stat74: 0.0 syst_JES_EtaIntercalibration_Stat75: 0.0 - syst_JES_EtaIntercalibration_Stat76: 0.07213991613524373 - syst_JES_EtaIntercalibration_Stat77: 0.3020696608400122 - syst_JES_EtaIntercalibration_Stat78: 0.3020696608400122 - syst_JES_EtaIntercalibration_Stat79: 0.00983545051077987 + syst_JES_EtaIntercalibration_Stat76: 7.21399161e-02 + syst_JES_EtaIntercalibration_Stat77: 3.02069661e-01 + syst_JES_EtaIntercalibration_Stat78: 3.02069661e-01 + syst_JES_EtaIntercalibration_Stat79: 9.83545051e-03 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 0.009851904993451774 - syst_JES_EtaIntercalibration_Stat81: 0.9775482289892402 - syst_JES_EtaIntercalibration_Stat82: 8.361652393516486 - syst_JES_EtaIntercalibration_Stat83: 19.452927800205295 - syst_JES_EtaIntercalibration_Stat84: 8.491089726884296 - syst_JES_EtaIntercalibration_Stat85: 0.11804044592850367 + syst_JES_EtaIntercalibration_Stat80: 9.85190499e-03 + syst_JES_EtaIntercalibration_Stat81: 9.77548229e-01 + syst_JES_EtaIntercalibration_Stat82: 8.36165239e+00 + syst_JES_EtaIntercalibration_Stat83: 1.94529278e+01 + syst_JES_EtaIntercalibration_Stat84: 8.49108973e+00 + syst_JES_EtaIntercalibration_Stat85: 1.18040446e-01 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 0.22531620003896746 + syst_JES_EtaIntercalibration_Stat89: 2.25316200e-01 syst_JES_EtaIntercalibration_Stat9: 0.0 - syst_JES_EtaIntercalibration_Stat90: 7.53120820320352 - syst_JES_EtaIntercalibration_Stat91: 20.400019607833713 - syst_JES_EtaIntercalibration_Stat92: 9.05519480740199 - syst_JES_EtaIntercalibration_Stat93: 1.3655720120154777 + syst_JES_EtaIntercalibration_Stat90: 7.53120820e+00 + syst_JES_EtaIntercalibration_Stat91: 2.04000196e+01 + syst_JES_EtaIntercalibration_Stat92: 9.05519481e+00 + syst_JES_EtaIntercalibration_Stat93: 1.36557201e+00 syst_JES_EtaIntercalibration_Stat94: 0.0 syst_JES_EtaIntercalibration_Stat95: 0.0 - syst_JES_EtaIntercalibration_Stat96: 0.10720528473447566 - syst_JES_EtaIntercalibration_Stat97: 0.07213991613524373 - syst_JES_EtaIntercalibration_Stat98: 0.3020696608400122 - syst_JES_EtaIntercalibration_Stat99: 0.3020696608400122 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.00316975750935667 - syst_JES_Flavour_Comp: 20.736557091282055 - syst_JES_Gjet_Generator: 150.73719713461574 - syst_JES_Gjet_OOC: 96.66561002109282 - syst_JES_Gjet_Purity: 41.35643255891398 - syst_JES_Gjet_Stat1: 0.018368398814267942 - syst_JES_Gjet_Stat10: 1.3909265796583228 - syst_JES_Gjet_Stat11: 0.05192890909695677 - syst_JES_Gjet_Stat12: 0.004676537180435969 - syst_JES_Gjet_Stat13: 2.2967168881778935e-05 - syst_JES_Gjet_Stat14: 6.431970673907892e-16 + syst_JES_EtaIntercalibration_Stat96: 1.07205285e-01 + syst_JES_EtaIntercalibration_Stat97: 7.21399161e-02 + syst_JES_EtaIntercalibration_Stat98: 3.02069661e-01 + syst_JES_EtaIntercalibration_Stat99: 3.02069661e-01 + syst_JES_EtaIntercalibration_TotalStat_MJB: 3.16975751e-03 + syst_JES_Flavour_Comp: 2.07365571e+01 + syst_JES_Gjet_Generator: 1.50737197e+02 + syst_JES_Gjet_OOC: 9.66656100e+01 + syst_JES_Gjet_Purity: 4.13564326e+01 + syst_JES_Gjet_Stat1: 1.83683988e-02 + syst_JES_Gjet_Stat10: 1.39092658e+00 + syst_JES_Gjet_Stat11: 5.19289091e-02 + syst_JES_Gjet_Stat12: 4.67653718e-03 + syst_JES_Gjet_Stat13: 2.29671689e-05 + syst_JES_Gjet_Stat14: 6.43197067e-16 syst_JES_Gjet_Stat15: 0.0 syst_JES_Gjet_Stat2: 0.0 - syst_JES_Gjet_Stat3: 2.451717918113746 - syst_JES_Gjet_Stat4: 3.917169226622715 - syst_JES_Gjet_Stat5: 4.639986422393928 - syst_JES_Gjet_Stat6: 11.29310129016826 - syst_JES_Gjet_Stat7: 15.727822481195545 - syst_JES_Gjet_Stat8: 4.569748433995027 - syst_JES_Gjet_Stat9: 1.5402885326037943 - syst_JES_Gjet_Veto: 28.936686057667348 - syst_JES_Gjet_dPhi: 18.6468891507404 - syst_JES_LArESZee: 90.45660768981999 - syst_JES_LArEsmear: 8.940234602626488 - syst_JES_LAr_JVT: 17.15558436777949 + syst_JES_Gjet_Stat3: 2.45171792e+00 + syst_JES_Gjet_Stat4: 3.91716923e+00 + syst_JES_Gjet_Stat5: 4.63998642e+00 + syst_JES_Gjet_Stat6: 1.12931013e+01 + syst_JES_Gjet_Stat7: 1.57278225e+01 + syst_JES_Gjet_Stat8: 4.56974843e+00 + syst_JES_Gjet_Stat9: 1.54028853e+00 + syst_JES_Gjet_Veto: 2.89366861e+01 + syst_JES_Gjet_dPhi: 1.86468892e+01 + syst_JES_LArESZee: 9.04566077e+01 + syst_JES_LArEsmear: 8.94023460e+00 + syst_JES_LAr_JVT: 1.71555844e+01 syst_JES_MJB_Alpha: 0.0 - syst_JES_MJB_Asym: 0.0002909845356715714 + syst_JES_MJB_Asym: 2.90984536e-04 syst_JES_MJB_Beta: 0.0 - syst_JES_MJB_Stat1: 5.251578048548837e-38 + syst_JES_MJB_Stat1: 5.25157805e-38 syst_JES_MJB_Stat10: 0.0 syst_JES_MJB_Stat11: 0.0 syst_JES_MJB_Stat12: 0.0 @@ -45098,164 +45098,164 @@ bins: syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 2.039489825912353e-07 - syst_JES_MJB_Stat3: 5.887240694926614e-12 + syst_JES_MJB_Stat2: 2.03948983e-07 + syst_JES_MJB_Stat3: 5.88724069e-12 syst_JES_MJB_Stat4: 0.0 syst_JES_MJB_Stat5: 0.0 syst_JES_MJB_Stat6: 0.0 syst_JES_MJB_Stat7: 0.0 syst_JES_MJB_Stat8: 0.0 syst_JES_MJB_Stat9: 0.0 - syst_JES_MJB_Threshold: 0.00034600696524781114 - syst_JES_Pileup_MuOffset: 1.0324754863918077e-27 - syst_JES_Pileup_NPVOffset: 11.2311047875977 - syst_JES_Pileup_Pt_term: 50.91853388256579 - syst_JES_PunchThrough_MC15: 1.0786346404135184e-37 + syst_JES_MJB_Threshold: 3.46006965e-04 + syst_JES_Pileup_MuOffset: 1.03247549e-27 + syst_JES_Pileup_NPVOffset: 1.12311048e+01 + syst_JES_Pileup_Pt_term: 5.09185339e+01 + syst_JES_PunchThrough_MC15: 1.07863464e-37 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 142.2400520906471 - syst_JES_Zjet_MuScale: 9.973330988190456 - syst_JES_Zjet_MuSmearID: 1.6699888472681483 - syst_JES_Zjet_MuSmearMS: 4.023519230723274 - syst_JES_Zjet_OOC: 99.37427180110554 - syst_JES_Zjet_Stat1: 3.5115349806032117 - syst_JES_Zjet_Stat10: 5.190404680754671 - syst_JES_Zjet_Stat11: 3.2633502340386324 - syst_JES_Zjet_Stat12: 0.44640229334088327 - syst_JES_Zjet_Stat13: 0.0036581982952677674 - syst_JES_Zjet_Stat2: 0.06321985447626402 - syst_JES_Zjet_Stat3: 3.6832060422952175e-38 - syst_JES_Zjet_Stat4: 1.1751574054142704 - syst_JES_Zjet_Stat5: 3.4252801345291455 - syst_JES_Zjet_Stat6: 5.327027384010711 - syst_JES_Zjet_Stat7: 8.224498221776207 - syst_JES_Zjet_Stat8: 12.981487848085827 - syst_JES_Zjet_Stat9: 14.932791935870531 - syst_JES_Zjet_Veto: 14.25845180936556 - syst_JES_Zjet_dPhi: 23.154037984766287 + syst_JES_Zjet_MC: 1.42240052e+02 + syst_JES_Zjet_MuScale: 9.97333099e+00 + syst_JES_Zjet_MuSmearID: 1.66998885e+00 + syst_JES_Zjet_MuSmearMS: 4.02351923e+00 + syst_JES_Zjet_OOC: 9.93742718e+01 + syst_JES_Zjet_Stat1: 3.51153498e+00 + syst_JES_Zjet_Stat10: 5.19040468e+00 + syst_JES_Zjet_Stat11: 3.26335023e+00 + syst_JES_Zjet_Stat12: 4.46402293e-01 + syst_JES_Zjet_Stat13: 3.65819830e-03 + syst_JES_Zjet_Stat2: 6.32198545e-02 + syst_JES_Zjet_Stat3: 3.68320604e-38 + syst_JES_Zjet_Stat4: 1.17515741e+00 + syst_JES_Zjet_Stat5: 3.42528013e+00 + syst_JES_Zjet_Stat6: 5.32702738e+00 + syst_JES_Zjet_Stat7: 8.22449822e+00 + syst_JES_Zjet_Stat8: 1.29814878e+01 + syst_JES_Zjet_Stat9: 1.49327919e+01 + syst_JES_Zjet_Veto: 1.42584518e+01 + syst_JES_Zjet_dPhi: 2.31540380e+01 syst_PRW: 0.0 syst_Unfolding_bias: 0.0 - syst_cleaning: 66.42588052107402 + syst_cleaning: 6.64258805e+01 syst_lumi: 139.573 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 216.54616159147218 - syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0023728081095020625 - syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 20.419996939274988 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 190.97580651747487 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0029653602563211013 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 79.10420774522679 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 2.16546162e+02 + syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 2.37280811e-03 + syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 2.04199969e+01 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 1.90975807e+02 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 2.96536026e-03 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 7.91042077e+01 - stat: 36.0 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 78.70422205161552 - syst_JER_NP1: 17.828731727186877 - syst_JER_NP2: 10.138209149055863 - syst_JER_NP3: 18.46106172461378 - syst_JER_NP4: 1.9326191425110122 - syst_JER_NP5: 7.8469215619884976 - syst_JER_NP6: 4.468064793621507 - syst_JER_NP7: 5.386688314725477 - syst_JER_NP8: 5.915178441940699 - syst_JES_EtaIntercalibration_Modelling: 97.22483528785224 - syst_JES_EtaIntercalibration_NonClosure: 165.14167576659744 + syst_JER_NP0: 7.87042221e+01 + syst_JER_NP1: 1.78287317e+01 + syst_JER_NP2: 1.01382091e+01 + syst_JER_NP3: 1.84610617e+01 + syst_JER_NP4: 1.93261914e+00 + syst_JER_NP5: 7.84692156e+00 + syst_JER_NP6: 4.46806479e+00 + syst_JER_NP7: 5.38668831e+00 + syst_JER_NP8: 5.91517844e+00 + syst_JES_EtaIntercalibration_Modelling: 9.72248353e+01 + syst_JES_EtaIntercalibration_NonClosure: 1.65141676e+02 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 0.05377151732097579 + syst_JES_EtaIntercalibration_Stat100: 5.37715173e-02 syst_JES_EtaIntercalibration_Stat101: 0.0 - syst_JES_EtaIntercalibration_Stat102: 0.39925560994806325 - syst_JES_EtaIntercalibration_Stat103: 3.6942845423708226 - syst_JES_EtaIntercalibration_Stat104: 7.1158727328417 - syst_JES_EtaIntercalibration_Stat105: 3.1123513619127263 - syst_JES_EtaIntercalibration_Stat106: 0.02839088446579289 + syst_JES_EtaIntercalibration_Stat102: 3.99255610e-01 + syst_JES_EtaIntercalibration_Stat103: 3.69428454e+00 + syst_JES_EtaIntercalibration_Stat104: 7.11587273e+00 + syst_JES_EtaIntercalibration_Stat105: 3.11235136e+00 + syst_JES_EtaIntercalibration_Stat106: 2.83908845e-02 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 0.07264037720166382 + syst_JES_EtaIntercalibration_Stat109: 7.26403772e-02 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 2.2435691988436637 - syst_JES_EtaIntercalibration_Stat111: 6.014359878657078 - syst_JES_EtaIntercalibration_Stat112: 3.7661984480374904 - syst_JES_EtaIntercalibration_Stat113: 0.6640846086907903 - syst_JES_EtaIntercalibration_Stat114: 2.0819250706977905e-05 + syst_JES_EtaIntercalibration_Stat110: 2.24356920e+00 + syst_JES_EtaIntercalibration_Stat111: 6.01435988e+00 + syst_JES_EtaIntercalibration_Stat112: 3.76619845e+00 + syst_JES_EtaIntercalibration_Stat113: 6.64084609e-01 + syst_JES_EtaIntercalibration_Stat114: 2.08192507e-05 syst_JES_EtaIntercalibration_Stat115: 0.0 - syst_JES_EtaIntercalibration_Stat116: 0.007466005006025646 - syst_JES_EtaIntercalibration_Stat117: 0.0385727714845589 - syst_JES_EtaIntercalibration_Stat118: 0.05377151732097579 - syst_JES_EtaIntercalibration_Stat119: 0.05377151732097579 + syst_JES_EtaIntercalibration_Stat116: 7.46600501e-03 + syst_JES_EtaIntercalibration_Stat117: 3.85727715e-02 + syst_JES_EtaIntercalibration_Stat118: 5.37715173e-02 + syst_JES_EtaIntercalibration_Stat119: 5.37715173e-02 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 0.05377151732097579 - syst_JES_EtaIntercalibration_Stat121: 0.004454834677067153 - syst_JES_EtaIntercalibration_Stat122: 0.3970442135329515 - syst_JES_EtaIntercalibration_Stat123: 3.387270693345898 - syst_JES_EtaIntercalibration_Stat124: 7.139404106786505 - syst_JES_EtaIntercalibration_Stat125: 2.2336263675915005 - syst_JES_EtaIntercalibration_Stat126: 0.051753282898285784 + syst_JES_EtaIntercalibration_Stat120: 5.37715173e-02 + syst_JES_EtaIntercalibration_Stat121: 4.45483468e-03 + syst_JES_EtaIntercalibration_Stat122: 3.97044214e-01 + syst_JES_EtaIntercalibration_Stat123: 3.38727069e+00 + syst_JES_EtaIntercalibration_Stat124: 7.13940411e+00 + syst_JES_EtaIntercalibration_Stat125: 2.23362637e+00 + syst_JES_EtaIntercalibration_Stat126: 5.17532829e-02 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 0.06371655991969434 - syst_JES_EtaIntercalibration_Stat129: 1.0719358702832926 + syst_JES_EtaIntercalibration_Stat128: 6.37165599e-02 + syst_JES_EtaIntercalibration_Stat129: 1.07193587e+00 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 1.5690073390523067 - syst_JES_EtaIntercalibration_Stat131: 0.6787892014462222 - syst_JES_EtaIntercalibration_Stat132: 0.07174277721833747 - syst_JES_EtaIntercalibration_Stat133: 6.856585812195454e-05 + syst_JES_EtaIntercalibration_Stat130: 1.56900734e+00 + syst_JES_EtaIntercalibration_Stat131: 6.78789201e-01 + syst_JES_EtaIntercalibration_Stat132: 7.17427772e-02 + syst_JES_EtaIntercalibration_Stat133: 6.85658581e-05 syst_JES_EtaIntercalibration_Stat134: 0.0 - syst_JES_EtaIntercalibration_Stat135: 0.007466005006025646 - syst_JES_EtaIntercalibration_Stat136: 0.007466005006025646 - syst_JES_EtaIntercalibration_Stat137: 0.05377151732097579 - syst_JES_EtaIntercalibration_Stat138: 0.05377151732097579 - syst_JES_EtaIntercalibration_Stat139: 0.05377151732097579 + syst_JES_EtaIntercalibration_Stat135: 7.46600501e-03 + syst_JES_EtaIntercalibration_Stat136: 7.46600501e-03 + syst_JES_EtaIntercalibration_Stat137: 5.37715173e-02 + syst_JES_EtaIntercalibration_Stat138: 5.37715173e-02 + syst_JES_EtaIntercalibration_Stat139: 5.37715173e-02 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 0.003990645060638693 - syst_JES_EtaIntercalibration_Stat141: 0.1966756178965761 - syst_JES_EtaIntercalibration_Stat142: 0.7655039777819577 - syst_JES_EtaIntercalibration_Stat143: 2.1985710700361727 - syst_JES_EtaIntercalibration_Stat144: 1.209582220231432 - syst_JES_EtaIntercalibration_Stat145: 0.059390284559008466 - syst_JES_EtaIntercalibration_Stat146: 0.007827652904926227 - syst_JES_EtaIntercalibration_Stat147: 0.31703731641559174 - syst_JES_EtaIntercalibration_Stat148: 0.6972420383195495 - syst_JES_EtaIntercalibration_Stat149: 0.28657063701642566 + syst_JES_EtaIntercalibration_Stat140: 3.99064506e-03 + syst_JES_EtaIntercalibration_Stat141: 1.96675618e-01 + syst_JES_EtaIntercalibration_Stat142: 7.65503978e-01 + syst_JES_EtaIntercalibration_Stat143: 2.19857107e+00 + syst_JES_EtaIntercalibration_Stat144: 1.20958222e+00 + syst_JES_EtaIntercalibration_Stat145: 5.93902846e-02 + syst_JES_EtaIntercalibration_Stat146: 7.82765290e-03 + syst_JES_EtaIntercalibration_Stat147: 3.17037316e-01 + syst_JES_EtaIntercalibration_Stat148: 6.97242038e-01 + syst_JES_EtaIntercalibration_Stat149: 2.86570637e-01 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 0.02565758778120032 - syst_JES_EtaIntercalibration_Stat151: 2.0741308420637303e-05 + syst_JES_EtaIntercalibration_Stat150: 2.56575878e-02 + syst_JES_EtaIntercalibration_Stat151: 2.07413084e-05 syst_JES_EtaIntercalibration_Stat152: 0.0 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 0.05377151732097579 + syst_JES_EtaIntercalibration_Stat156: 5.37715173e-02 syst_JES_EtaIntercalibration_Stat157: 0.0 syst_JES_EtaIntercalibration_Stat158: 0.0 - syst_JES_EtaIntercalibration_Stat159: 0.019239737524197154 - syst_JES_EtaIntercalibration_Stat16: 0.011344868884213691 - syst_JES_EtaIntercalibration_Stat160: 0.4253866564667961 - syst_JES_EtaIntercalibration_Stat161: 0.8203906752273578 - syst_JES_EtaIntercalibration_Stat162: 0.3427004235480312 - syst_JES_EtaIntercalibration_Stat163: 0.0033479779072598435 - syst_JES_EtaIntercalibration_Stat164: 0.00016839164676432143 - syst_JES_EtaIntercalibration_Stat165: 0.004752128444181618 - syst_JES_EtaIntercalibration_Stat166: 0.01916320432776053 - syst_JES_EtaIntercalibration_Stat167: 0.00540441680479957 - syst_JES_EtaIntercalibration_Stat168: 0.0035032429361949763 - syst_JES_EtaIntercalibration_Stat169: 2.0741308420637303e-05 - syst_JES_EtaIntercalibration_Stat17: 0.02221647109691366 + syst_JES_EtaIntercalibration_Stat159: 1.92397375e-02 + syst_JES_EtaIntercalibration_Stat16: 1.13448689e-02 + syst_JES_EtaIntercalibration_Stat160: 4.25386656e-01 + syst_JES_EtaIntercalibration_Stat161: 8.20390675e-01 + syst_JES_EtaIntercalibration_Stat162: 3.42700424e-01 + syst_JES_EtaIntercalibration_Stat163: 3.34797791e-03 + syst_JES_EtaIntercalibration_Stat164: 1.68391647e-04 + syst_JES_EtaIntercalibration_Stat165: 4.75212844e-03 + syst_JES_EtaIntercalibration_Stat166: 1.91632043e-02 + syst_JES_EtaIntercalibration_Stat167: 5.40441680e-03 + syst_JES_EtaIntercalibration_Stat168: 3.50324294e-03 + syst_JES_EtaIntercalibration_Stat169: 2.07413084e-05 + syst_JES_EtaIntercalibration_Stat17: 2.22164711e-02 syst_JES_EtaIntercalibration_Stat170: 0.0 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 syst_JES_EtaIntercalibration_Stat175: 0.0 - syst_JES_EtaIntercalibration_Stat176: 5.826618916661703e-16 - syst_JES_EtaIntercalibration_Stat177: 9.570446737221831e-05 - syst_JES_EtaIntercalibration_Stat178: 0.008957519299448928 - syst_JES_EtaIntercalibration_Stat179: 0.006961212017314226 - syst_JES_EtaIntercalibration_Stat18: 0.006748253329566104 - syst_JES_EtaIntercalibration_Stat180: 0.0037806692635034868 - syst_JES_EtaIntercalibration_Stat181: 6.605175754663913e-05 - syst_JES_EtaIntercalibration_Stat182: 0.0011471750291476884 - syst_JES_EtaIntercalibration_Stat183: 0.002767782641393648 - syst_JES_EtaIntercalibration_Stat184: 0.0005837907844425089 - syst_JES_EtaIntercalibration_Stat185: 5.6664864554677975e-05 - syst_JES_EtaIntercalibration_Stat186: 2.3235461583536488e-36 + syst_JES_EtaIntercalibration_Stat176: 5.82661892e-16 + syst_JES_EtaIntercalibration_Stat177: 9.57044674e-05 + syst_JES_EtaIntercalibration_Stat178: 8.95751930e-03 + syst_JES_EtaIntercalibration_Stat179: 6.96121202e-03 + syst_JES_EtaIntercalibration_Stat18: 6.74825333e-03 + syst_JES_EtaIntercalibration_Stat180: 3.78066926e-03 + syst_JES_EtaIntercalibration_Stat181: 6.60517575e-05 + syst_JES_EtaIntercalibration_Stat182: 1.14717503e-03 + syst_JES_EtaIntercalibration_Stat183: 2.76778264e-03 + syst_JES_EtaIntercalibration_Stat184: 5.83790784e-04 + syst_JES_EtaIntercalibration_Stat185: 5.66648646e-05 + syst_JES_EtaIntercalibration_Stat186: 2.32354616e-36 syst_JES_EtaIntercalibration_Stat187: 0.0 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 @@ -45263,17 +45263,17 @@ bins: syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 syst_JES_EtaIntercalibration_Stat192: 0.0 - syst_JES_EtaIntercalibration_Stat193: 1.1593407914306301e-14 - syst_JES_EtaIntercalibration_Stat194: 5.436054803504101e-06 - syst_JES_EtaIntercalibration_Stat195: 0.00047430999093419913 - syst_JES_EtaIntercalibration_Stat196: 0.0023852925921152737 - syst_JES_EtaIntercalibration_Stat197: 0.0006421493809854527 - syst_JES_EtaIntercalibration_Stat198: 7.76202525118284e-06 - syst_JES_EtaIntercalibration_Stat199: 4.631663281155054e-06 + syst_JES_EtaIntercalibration_Stat193: 1.15934079e-14 + syst_JES_EtaIntercalibration_Stat194: 5.43605480e-06 + syst_JES_EtaIntercalibration_Stat195: 4.74309991e-04 + syst_JES_EtaIntercalibration_Stat196: 2.38529259e-03 + syst_JES_EtaIntercalibration_Stat197: 6.42149381e-04 + syst_JES_EtaIntercalibration_Stat198: 7.76202525e-06 + syst_JES_EtaIntercalibration_Stat199: 4.63166328e-06 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 1.0974273916756415e-11 - syst_JES_EtaIntercalibration_Stat201: 2.3235461583536488e-36 + syst_JES_EtaIntercalibration_Stat200: 1.09742739e-11 + syst_JES_EtaIntercalibration_Stat201: 2.32354616e-36 syst_JES_EtaIntercalibration_Stat202: 0.0 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 @@ -45283,11 +45283,11 @@ bins: syst_JES_EtaIntercalibration_Stat208: 0.0 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 6.217416565584133e-08 - syst_JES_EtaIntercalibration_Stat211: 8.968896253162927e-06 - syst_JES_EtaIntercalibration_Stat212: 6.304661852753544e-21 - syst_JES_EtaIntercalibration_Stat213: 2.406684597116955e-35 - syst_JES_EtaIntercalibration_Stat214: 2.3235461583536488e-36 + syst_JES_EtaIntercalibration_Stat210: 6.21741657e-08 + syst_JES_EtaIntercalibration_Stat211: 8.96889625e-06 + syst_JES_EtaIntercalibration_Stat212: 6.30466185e-21 + syst_JES_EtaIntercalibration_Stat213: 2.40668460e-35 + syst_JES_EtaIntercalibration_Stat214: 2.32354616e-36 syst_JES_EtaIntercalibration_Stat215: 0.0 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 @@ -45297,7 +45297,7 @@ bins: syst_JES_EtaIntercalibration_Stat220: 0.0 syst_JES_EtaIntercalibration_Stat221: 0.0 syst_JES_EtaIntercalibration_Stat222: 0.0 - syst_JES_EtaIntercalibration_Stat223: 8.134576617713348e-16 + syst_JES_EtaIntercalibration_Stat223: 8.13457662e-16 syst_JES_EtaIntercalibration_Stat224: 0.0 syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 @@ -45310,129 +45310,129 @@ bins: syst_JES_EtaIntercalibration_Stat232: 0.0 syst_JES_EtaIntercalibration_Stat233: 0.0 syst_JES_EtaIntercalibration_Stat234: 0.0 - syst_JES_EtaIntercalibration_Stat235: 2.0516141815653354e-36 + syst_JES_EtaIntercalibration_Stat235: 2.05161418e-36 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 syst_JES_EtaIntercalibration_Stat239: 0.0 - syst_JES_EtaIntercalibration_Stat24: 0.01895729608884136 + syst_JES_EtaIntercalibration_Stat24: 1.89572961e-02 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 syst_JES_EtaIntercalibration_Stat243: 0.0 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 - syst_JES_EtaIntercalibration_Stat25: 0.12593768727033225 - syst_JES_EtaIntercalibration_Stat26: 0.2076787933323959 - syst_JES_EtaIntercalibration_Stat27: 0.11009535726814278 - syst_JES_EtaIntercalibration_Stat28: 0.03099348426685841 + syst_JES_EtaIntercalibration_Stat25: 1.25937687e-01 + syst_JES_EtaIntercalibration_Stat26: 2.07678793e-01 + syst_JES_EtaIntercalibration_Stat27: 1.10095357e-01 + syst_JES_EtaIntercalibration_Stat28: 3.09934843e-02 syst_JES_EtaIntercalibration_Stat29: 0.0 - syst_JES_EtaIntercalibration_Stat3: 0.009929477377989236 + syst_JES_EtaIntercalibration_Stat3: 9.92947738e-03 syst_JES_EtaIntercalibration_Stat30: 0.0 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 0.02716721691671784 - syst_JES_EtaIntercalibration_Stat36: 0.02716721691671784 - syst_JES_EtaIntercalibration_Stat37: 0.009504269093412707 - syst_JES_EtaIntercalibration_Stat38: 0.1325003417467291 - syst_JES_EtaIntercalibration_Stat39: 0.1414611384329633 - syst_JES_EtaIntercalibration_Stat4: 0.02538282826538445 - syst_JES_EtaIntercalibration_Stat40: 0.11004960824555443 + syst_JES_EtaIntercalibration_Stat35: 2.71672169e-02 + syst_JES_EtaIntercalibration_Stat36: 2.71672169e-02 + syst_JES_EtaIntercalibration_Stat37: 9.50426909e-03 + syst_JES_EtaIntercalibration_Stat38: 1.32500342e-01 + syst_JES_EtaIntercalibration_Stat39: 1.41461138e-01 + syst_JES_EtaIntercalibration_Stat4: 2.53828283e-02 + syst_JES_EtaIntercalibration_Stat40: 1.10049608e-01 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 syst_JES_EtaIntercalibration_Stat44: 0.0 syst_JES_EtaIntercalibration_Stat45: 0.0 - syst_JES_EtaIntercalibration_Stat46: 0.03761639536159732 - syst_JES_EtaIntercalibration_Stat47: 0.18326590190212688 - syst_JES_EtaIntercalibration_Stat48: 0.6891430239797831 - syst_JES_EtaIntercalibration_Stat49: 0.4478532879191577 - syst_JES_EtaIntercalibration_Stat5: 0.029902957913892067 - syst_JES_EtaIntercalibration_Stat50: 0.06195298055783918 + syst_JES_EtaIntercalibration_Stat46: 3.76163954e-02 + syst_JES_EtaIntercalibration_Stat47: 1.83265902e-01 + syst_JES_EtaIntercalibration_Stat48: 6.89143024e-01 + syst_JES_EtaIntercalibration_Stat49: 4.47853288e-01 + syst_JES_EtaIntercalibration_Stat5: 2.99029579e-02 + syst_JES_EtaIntercalibration_Stat50: 6.19529806e-02 syst_JES_EtaIntercalibration_Stat51: 0.0 syst_JES_EtaIntercalibration_Stat52: 0.0 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 0.05377151732097579 - syst_JES_EtaIntercalibration_Stat57: 0.02716721691671784 - syst_JES_EtaIntercalibration_Stat58: 0.02716721691671784 - syst_JES_EtaIntercalibration_Stat59: 0.03729342905593424 + syst_JES_EtaIntercalibration_Stat56: 5.37715173e-02 + syst_JES_EtaIntercalibration_Stat57: 2.71672169e-02 + syst_JES_EtaIntercalibration_Stat58: 2.71672169e-02 + syst_JES_EtaIntercalibration_Stat59: 3.72934291e-02 syst_JES_EtaIntercalibration_Stat6: 0.0 - syst_JES_EtaIntercalibration_Stat60: 0.6721227175895782 - syst_JES_EtaIntercalibration_Stat61: 1.015556921102899 - syst_JES_EtaIntercalibration_Stat62: 0.11465267931888902 - syst_JES_EtaIntercalibration_Stat63: 0.005737770705378528 + syst_JES_EtaIntercalibration_Stat60: 6.72122718e-01 + syst_JES_EtaIntercalibration_Stat61: 1.01555692e+00 + syst_JES_EtaIntercalibration_Stat62: 1.14652679e-01 + syst_JES_EtaIntercalibration_Stat63: 5.73777071e-03 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 0.0633857531311256 - syst_JES_EtaIntercalibration_Stat69: 2.6552169402894368 + syst_JES_EtaIntercalibration_Stat68: 6.33857531e-02 + syst_JES_EtaIntercalibration_Stat69: 2.65521694e+00 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 5.225183920207977 - syst_JES_EtaIntercalibration_Stat71: 2.2575249168060143 - syst_JES_EtaIntercalibration_Stat72: 0.37751229119063134 + syst_JES_EtaIntercalibration_Stat70: 5.22518392e+00 + syst_JES_EtaIntercalibration_Stat71: 2.25752492e+00 + syst_JES_EtaIntercalibration_Stat72: 3.77512291e-01 syst_JES_EtaIntercalibration_Stat73: 0.0 syst_JES_EtaIntercalibration_Stat74: 0.0 syst_JES_EtaIntercalibration_Stat75: 0.0 - syst_JES_EtaIntercalibration_Stat76: 0.031765811810813206 - syst_JES_EtaIntercalibration_Stat77: 0.05377151732097579 - syst_JES_EtaIntercalibration_Stat78: 0.05377151732097579 - syst_JES_EtaIntercalibration_Stat79: 0.02716721691671784 + syst_JES_EtaIntercalibration_Stat76: 3.17658118e-02 + syst_JES_EtaIntercalibration_Stat77: 5.37715173e-02 + syst_JES_EtaIntercalibration_Stat78: 5.37715173e-02 + syst_JES_EtaIntercalibration_Stat79: 2.71672169e-02 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 0.027219178440944906 - syst_JES_EtaIntercalibration_Stat81: 0.2283566235080559 - syst_JES_EtaIntercalibration_Stat82: 2.5964410257119264 - syst_JES_EtaIntercalibration_Stat83: 5.843954825287409 - syst_JES_EtaIntercalibration_Stat84: 2.409572731834422 - syst_JES_EtaIntercalibration_Stat85: 0.03911430596022382 + syst_JES_EtaIntercalibration_Stat80: 2.72191784e-02 + syst_JES_EtaIntercalibration_Stat81: 2.28356624e-01 + syst_JES_EtaIntercalibration_Stat82: 2.59644103e+00 + syst_JES_EtaIntercalibration_Stat83: 5.84395483e+00 + syst_JES_EtaIntercalibration_Stat84: 2.40957273e+00 + syst_JES_EtaIntercalibration_Stat85: 3.91143060e-02 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 0.10349374473851063 + syst_JES_EtaIntercalibration_Stat89: 1.03493745e-01 syst_JES_EtaIntercalibration_Stat9: 0.0 - syst_JES_EtaIntercalibration_Stat90: 2.944066575334192 - syst_JES_EtaIntercalibration_Stat91: 7.434601721006983 - syst_JES_EtaIntercalibration_Stat92: 3.213061001599565 - syst_JES_EtaIntercalibration_Stat93: 0.4714381779989822 + syst_JES_EtaIntercalibration_Stat90: 2.94406658e+00 + syst_JES_EtaIntercalibration_Stat91: 7.43460172e+00 + syst_JES_EtaIntercalibration_Stat92: 3.21306100e+00 + syst_JES_EtaIntercalibration_Stat93: 4.71438178e-01 syst_JES_EtaIntercalibration_Stat94: 0.0 syst_JES_EtaIntercalibration_Stat95: 0.0 - syst_JES_EtaIntercalibration_Stat96: 0.0385727714845589 - syst_JES_EtaIntercalibration_Stat97: 0.031765811810813206 - syst_JES_EtaIntercalibration_Stat98: 0.05377151732097579 - syst_JES_EtaIntercalibration_Stat99: 0.05377151732097579 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0031493941905547484 - syst_JES_Flavour_Comp: 8.86325995331289 - syst_JES_Gjet_Generator: 68.76178446637347 - syst_JES_Gjet_OOC: 41.967440057740006 - syst_JES_Gjet_Purity: 18.2251659800398 - syst_JES_Gjet_Stat1: 0.1431539992455677 - syst_JES_Gjet_Stat10: 0.5081156831864178 - syst_JES_Gjet_Stat11: 0.2695803188291015 - syst_JES_Gjet_Stat12: 0.005820556738835213 - syst_JES_Gjet_Stat13: 0.0004418157267422132 - syst_JES_Gjet_Stat14: 1.1627257089344446e-10 + syst_JES_EtaIntercalibration_Stat96: 3.85727715e-02 + syst_JES_EtaIntercalibration_Stat97: 3.17658118e-02 + syst_JES_EtaIntercalibration_Stat98: 5.37715173e-02 + syst_JES_EtaIntercalibration_Stat99: 5.37715173e-02 + syst_JES_EtaIntercalibration_TotalStat_MJB: 3.14939419e-03 + syst_JES_Flavour_Comp: 8.86325995e+00 + syst_JES_Gjet_Generator: 6.87617845e+01 + syst_JES_Gjet_OOC: 4.19674401e+01 + syst_JES_Gjet_Purity: 1.82251660e+01 + syst_JES_Gjet_Stat1: 1.43153999e-01 + syst_JES_Gjet_Stat10: 5.08115683e-01 + syst_JES_Gjet_Stat11: 2.69580319e-01 + syst_JES_Gjet_Stat12: 5.82055674e-03 + syst_JES_Gjet_Stat13: 4.41815727e-04 + syst_JES_Gjet_Stat14: 1.16272571e-10 syst_JES_Gjet_Stat15: 0.0 syst_JES_Gjet_Stat2: 0.0 - syst_JES_Gjet_Stat3: 0.803671574711959 - syst_JES_Gjet_Stat4: 1.3166691944068563 - syst_JES_Gjet_Stat5: 1.5876397576276553 - syst_JES_Gjet_Stat6: 4.245500529972879 - syst_JES_Gjet_Stat7: 6.620789756516967 - syst_JES_Gjet_Stat8: 2.318019143579276 - syst_JES_Gjet_Stat9: 0.7188531891144394 - syst_JES_Gjet_Veto: 13.850092382363377 - syst_JES_Gjet_dPhi: 7.857022527650026 - syst_JES_LArESZee: 43.67505364335572 - syst_JES_LArEsmear: 4.383225153924904 - syst_JES_LAr_JVT: 7.431427773315165 + syst_JES_Gjet_Stat3: 8.03671575e-01 + syst_JES_Gjet_Stat4: 1.31666919e+00 + syst_JES_Gjet_Stat5: 1.58763976e+00 + syst_JES_Gjet_Stat6: 4.24550053e+00 + syst_JES_Gjet_Stat7: 6.62078976e+00 + syst_JES_Gjet_Stat8: 2.31801914e+00 + syst_JES_Gjet_Stat9: 7.18853189e-01 + syst_JES_Gjet_Veto: 1.38500924e+01 + syst_JES_Gjet_dPhi: 7.85702253e+00 + syst_JES_LArESZee: 4.36750536e+01 + syst_JES_LArEsmear: 4.38322515e+00 + syst_JES_LAr_JVT: 7.43142777e+00 syst_JES_MJB_Alpha: 0.0 - syst_JES_MJB_Asym: 0.0009201519915209662 + syst_JES_MJB_Asym: 9.20151992e-04 syst_JES_MJB_Beta: 0.0 - syst_JES_MJB_Stat1: 4.816833295849048e-26 + syst_JES_MJB_Stat1: 4.81683330e-26 syst_JES_MJB_Stat10: 0.0 syst_JES_MJB_Stat11: 0.0 syst_JES_MJB_Stat12: 0.0 @@ -45440,164 +45440,164 @@ bins: syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 4.649690392918651e-05 - syst_JES_MJB_Stat3: 2.7868697493783236e-08 + syst_JES_MJB_Stat2: 4.64969039e-05 + syst_JES_MJB_Stat3: 2.78686975e-08 syst_JES_MJB_Stat4: 0.0 - syst_JES_MJB_Stat5: 7.155967911470816e-35 + syst_JES_MJB_Stat5: 7.15596791e-35 syst_JES_MJB_Stat6: 0.0 syst_JES_MJB_Stat7: 0.0 syst_JES_MJB_Stat8: 0.0 syst_JES_MJB_Stat9: 0.0 - syst_JES_MJB_Threshold: 0.001048171608468766 - syst_JES_Pileup_MuOffset: 2.1598673570383894e-18 - syst_JES_Pileup_NPVOffset: 4.816708731073533 - syst_JES_Pileup_Pt_term: 23.946930387838854 - syst_JES_PunchThrough_MC15: 9.892608187429642e-26 + syst_JES_MJB_Threshold: 1.04817161e-03 + syst_JES_Pileup_MuOffset: 2.15986736e-18 + syst_JES_Pileup_NPVOffset: 4.81670873e+00 + syst_JES_Pileup_Pt_term: 2.39469304e+01 + syst_JES_PunchThrough_MC15: 9.89260819e-26 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 62.306717830022144 - syst_JES_Zjet_MuScale: 4.525548889361378 - syst_JES_Zjet_MuSmearID: 0.777079307406908 - syst_JES_Zjet_MuSmearMS: 2.3256536178029608 - syst_JES_Zjet_OOC: 38.35013307669219 - syst_JES_Zjet_Stat1: 1.1678488461697427 - syst_JES_Zjet_Stat10: 4.115924926429053 - syst_JES_Zjet_Stat11: 0.5633492056442433 - syst_JES_Zjet_Stat12: 0.5783392149076526 - syst_JES_Zjet_Stat13: 0.008834481011921415 - syst_JES_Zjet_Stat2: 0.028985870264663798 - syst_JES_Zjet_Stat3: 3.3784517027034735e-26 - syst_JES_Zjet_Stat4: 0.4663557357854624 - syst_JES_Zjet_Stat5: 1.0420937481819954 - syst_JES_Zjet_Stat6: 1.7677162526831052 - syst_JES_Zjet_Stat7: 2.805520406270466 - syst_JES_Zjet_Stat8: 4.917866508965041 - syst_JES_Zjet_Stat9: 7.246571102942412 - syst_JES_Zjet_Veto: 5.751797523383451 - syst_JES_Zjet_dPhi: 8.625046825959846 + syst_JES_Zjet_MC: 6.23067178e+01 + syst_JES_Zjet_MuScale: 4.52554889e+00 + syst_JES_Zjet_MuSmearID: 7.77079307e-01 + syst_JES_Zjet_MuSmearMS: 2.32565362e+00 + syst_JES_Zjet_OOC: 3.83501331e+01 + syst_JES_Zjet_Stat1: 1.16784885e+00 + syst_JES_Zjet_Stat10: 4.11592493e+00 + syst_JES_Zjet_Stat11: 5.63349206e-01 + syst_JES_Zjet_Stat12: 5.78339215e-01 + syst_JES_Zjet_Stat13: 8.83448101e-03 + syst_JES_Zjet_Stat2: 2.89858703e-02 + syst_JES_Zjet_Stat3: 3.37845170e-26 + syst_JES_Zjet_Stat4: 4.66355736e-01 + syst_JES_Zjet_Stat5: 1.04209375e+00 + syst_JES_Zjet_Stat6: 1.76771625e+00 + syst_JES_Zjet_Stat7: 2.80552041e+00 + syst_JES_Zjet_Stat8: 4.91786651e+00 + syst_JES_Zjet_Stat9: 7.24657110e+00 + syst_JES_Zjet_Veto: 5.75179752e+00 + syst_JES_Zjet_dPhi: 8.62504683e+00 syst_PRW: 0.0 syst_Unfolding_bias: 0.0 - syst_cleaning: 26.153967194290047 + syst_cleaning: 2.61539672e+01 syst_lumi: 63.988 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 88.91476177075437 - syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.003505511138193687 - syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 8.673524355762195 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 78.41512063371452 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0043955945203692295 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 33.68287509996734 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 8.89147618e+01 + syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 3.50551114e-03 + syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 8.67352436e+00 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 7.84151206e+01 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 4.39559452e-03 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 3.36828751e+01 - stat: 13.501 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 33.45914934662865 - syst_JER_NP1: 6.533234114892868 - syst_JER_NP2: 3.7814965291535048 - syst_JER_NP3: 8.548145105810967 - syst_JER_NP4: 0.09008302947836513 - syst_JER_NP5: 3.2440642333344756 - syst_JER_NP6: 2.033830376408023 - syst_JER_NP7: 1.9270419689254306 - syst_JER_NP8: 2.353494582530412 - syst_JES_EtaIntercalibration_Modelling: 37.91699139897574 - syst_JES_EtaIntercalibration_NonClosure: 89.42734350298012 + syst_JER_NP0: 3.34591493e+01 + syst_JER_NP1: 6.53323411e+00 + syst_JER_NP2: 3.78149653e+00 + syst_JER_NP3: 8.54814511e+00 + syst_JER_NP4: 9.00830295e-02 + syst_JER_NP5: 3.24406423e+00 + syst_JER_NP6: 2.03383038e+00 + syst_JER_NP7: 1.92704197e+00 + syst_JER_NP8: 2.35349458e+00 + syst_JES_EtaIntercalibration_Modelling: 3.79169914e+01 + syst_JES_EtaIntercalibration_NonClosure: 8.94273435e+01 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 0.005720097791996217 + syst_JES_EtaIntercalibration_Stat100: 5.72009779e-03 syst_JES_EtaIntercalibration_Stat101: 0.0 - syst_JES_EtaIntercalibration_Stat102: 0.11547229711060572 - syst_JES_EtaIntercalibration_Stat103: 1.1926983136988165 - syst_JES_EtaIntercalibration_Stat104: 2.3576125635905494 - syst_JES_EtaIntercalibration_Stat105: 1.0346376986655763 - syst_JES_EtaIntercalibration_Stat106: 0.0034398424382520772 + syst_JES_EtaIntercalibration_Stat102: 1.15472297e-01 + syst_JES_EtaIntercalibration_Stat103: 1.19269831e+00 + syst_JES_EtaIntercalibration_Stat104: 2.35761256e+00 + syst_JES_EtaIntercalibration_Stat105: 1.03463770e+00 + syst_JES_EtaIntercalibration_Stat106: 3.43984244e-03 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 0.04018099550782683 + syst_JES_EtaIntercalibration_Stat109: 4.01809955e-02 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 1.7313320738668248 - syst_JES_EtaIntercalibration_Stat111: 4.503267563669741 - syst_JES_EtaIntercalibration_Stat112: 2.6947212750115734 - syst_JES_EtaIntercalibration_Stat113: 0.35552671840524164 - syst_JES_EtaIntercalibration_Stat114: 0.0003326923191178299 + syst_JES_EtaIntercalibration_Stat110: 1.73133207e+00 + syst_JES_EtaIntercalibration_Stat111: 4.50326756e+00 + syst_JES_EtaIntercalibration_Stat112: 2.69472128e+00 + syst_JES_EtaIntercalibration_Stat113: 3.55526718e-01 + syst_JES_EtaIntercalibration_Stat114: 3.32692319e-04 syst_JES_EtaIntercalibration_Stat115: 0.0 - syst_JES_EtaIntercalibration_Stat116: 0.0015978168699822895 - syst_JES_EtaIntercalibration_Stat117: 0.010346405499012687 - syst_JES_EtaIntercalibration_Stat118: 0.005720097791996217 - syst_JES_EtaIntercalibration_Stat119: 0.005720097791996217 + syst_JES_EtaIntercalibration_Stat116: 1.59781687e-03 + syst_JES_EtaIntercalibration_Stat117: 1.03464055e-02 + syst_JES_EtaIntercalibration_Stat118: 5.72009779e-03 + syst_JES_EtaIntercalibration_Stat119: 5.72009779e-03 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 0.005720097791996217 - syst_JES_EtaIntercalibration_Stat121: 0.002011777012991251 - syst_JES_EtaIntercalibration_Stat122: 0.2248719802465394 - syst_JES_EtaIntercalibration_Stat123: 2.5899034731047412 - syst_JES_EtaIntercalibration_Stat124: 4.829314961772529 - syst_JES_EtaIntercalibration_Stat125: 1.7228999586453069 - syst_JES_EtaIntercalibration_Stat126: 0.04209476804485327 + syst_JES_EtaIntercalibration_Stat120: 5.72009779e-03 + syst_JES_EtaIntercalibration_Stat121: 2.01177701e-03 + syst_JES_EtaIntercalibration_Stat122: 2.24871980e-01 + syst_JES_EtaIntercalibration_Stat123: 2.58990347e+00 + syst_JES_EtaIntercalibration_Stat124: 4.82931496e+00 + syst_JES_EtaIntercalibration_Stat125: 1.72289996e+00 + syst_JES_EtaIntercalibration_Stat126: 4.20947680e-02 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 0.039333671793388425 - syst_JES_EtaIntercalibration_Stat129: 0.8860873207534345 + syst_JES_EtaIntercalibration_Stat128: 3.93336718e-02 + syst_JES_EtaIntercalibration_Stat129: 8.86087321e-01 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 4.551572777623137 - syst_JES_EtaIntercalibration_Stat131: 1.12354365625017 - syst_JES_EtaIntercalibration_Stat132: 0.2702352817453709 - syst_JES_EtaIntercalibration_Stat133: 0.0018653092719439317 + syst_JES_EtaIntercalibration_Stat130: 4.55157278e+00 + syst_JES_EtaIntercalibration_Stat131: 1.12354366e+00 + syst_JES_EtaIntercalibration_Stat132: 2.70235282e-01 + syst_JES_EtaIntercalibration_Stat133: 1.86530927e-03 syst_JES_EtaIntercalibration_Stat134: 0.0 - syst_JES_EtaIntercalibration_Stat135: 0.0015978168699822895 - syst_JES_EtaIntercalibration_Stat136: 0.0015978168699822895 - syst_JES_EtaIntercalibration_Stat137: 0.005720097791996217 - syst_JES_EtaIntercalibration_Stat138: 0.005720097791996217 - syst_JES_EtaIntercalibration_Stat139: 0.005720097791996217 + syst_JES_EtaIntercalibration_Stat135: 1.59781687e-03 + syst_JES_EtaIntercalibration_Stat136: 1.59781687e-03 + syst_JES_EtaIntercalibration_Stat137: 5.72009779e-03 + syst_JES_EtaIntercalibration_Stat138: 5.72009779e-03 + syst_JES_EtaIntercalibration_Stat139: 5.72009779e-03 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 0.014150855097837728 - syst_JES_EtaIntercalibration_Stat141: 0.18608173150527166 - syst_JES_EtaIntercalibration_Stat142: 0.9592921387669139 - syst_JES_EtaIntercalibration_Stat143: 2.3166814088259957 - syst_JES_EtaIntercalibration_Stat144: 1.2999748728340867 - syst_JES_EtaIntercalibration_Stat145: 0.02161537024318575 - syst_JES_EtaIntercalibration_Stat146: 0.016794770704001885 - syst_JES_EtaIntercalibration_Stat147: 0.32941934248006743 - syst_JES_EtaIntercalibration_Stat148: 0.5600157775232765 - syst_JES_EtaIntercalibration_Stat149: 0.09928635757242785 + syst_JES_EtaIntercalibration_Stat140: 1.41508551e-02 + syst_JES_EtaIntercalibration_Stat141: 1.86081732e-01 + syst_JES_EtaIntercalibration_Stat142: 9.59292139e-01 + syst_JES_EtaIntercalibration_Stat143: 2.31668141e+00 + syst_JES_EtaIntercalibration_Stat144: 1.29997487e+00 + syst_JES_EtaIntercalibration_Stat145: 2.16153702e-02 + syst_JES_EtaIntercalibration_Stat146: 1.67947707e-02 + syst_JES_EtaIntercalibration_Stat147: 3.29419342e-01 + syst_JES_EtaIntercalibration_Stat148: 5.60015778e-01 + syst_JES_EtaIntercalibration_Stat149: 9.92863576e-02 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 0.018026298309691872 - syst_JES_EtaIntercalibration_Stat151: 0.00033133265923388834 + syst_JES_EtaIntercalibration_Stat150: 1.80262983e-02 + syst_JES_EtaIntercalibration_Stat151: 3.31332659e-04 syst_JES_EtaIntercalibration_Stat152: 0.0 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 0.005720097791996217 + syst_JES_EtaIntercalibration_Stat156: 5.72009779e-03 syst_JES_EtaIntercalibration_Stat157: 0.0 syst_JES_EtaIntercalibration_Stat158: 0.0 - syst_JES_EtaIntercalibration_Stat159: 0.05306049943225186 - syst_JES_EtaIntercalibration_Stat16: 0.0016902502499630044 - syst_JES_EtaIntercalibration_Stat160: 0.3181964782960365 - syst_JES_EtaIntercalibration_Stat161: 0.7210678400816389 - syst_JES_EtaIntercalibration_Stat162: 0.19955482329425164 - syst_JES_EtaIntercalibration_Stat163: 0.0037886441836097514 - syst_JES_EtaIntercalibration_Stat164: 0.0017507362758279728 - syst_JES_EtaIntercalibration_Stat165: 0.05182790368131824 - syst_JES_EtaIntercalibration_Stat166: 0.10181217154643153 - syst_JES_EtaIntercalibration_Stat167: 0.03245149149114721 - syst_JES_EtaIntercalibration_Stat168: 0.007802200122401373 - syst_JES_EtaIntercalibration_Stat169: 0.00033133265923388834 - syst_JES_EtaIntercalibration_Stat17: 0.004312155350575858 + syst_JES_EtaIntercalibration_Stat159: 5.30604994e-02 + syst_JES_EtaIntercalibration_Stat16: 1.69025025e-03 + syst_JES_EtaIntercalibration_Stat160: 3.18196478e-01 + syst_JES_EtaIntercalibration_Stat161: 7.21067840e-01 + syst_JES_EtaIntercalibration_Stat162: 1.99554823e-01 + syst_JES_EtaIntercalibration_Stat163: 3.78864418e-03 + syst_JES_EtaIntercalibration_Stat164: 1.75073628e-03 + syst_JES_EtaIntercalibration_Stat165: 5.18279037e-02 + syst_JES_EtaIntercalibration_Stat166: 1.01812172e-01 + syst_JES_EtaIntercalibration_Stat167: 3.24514915e-02 + syst_JES_EtaIntercalibration_Stat168: 7.80220012e-03 + syst_JES_EtaIntercalibration_Stat169: 3.31332659e-04 + syst_JES_EtaIntercalibration_Stat17: 4.31215535e-03 syst_JES_EtaIntercalibration_Stat170: 0.0 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 syst_JES_EtaIntercalibration_Stat175: 0.0 - syst_JES_EtaIntercalibration_Stat176: 2.7963960288199523e-11 - syst_JES_EtaIntercalibration_Stat177: 0.0017034719692439909 - syst_JES_EtaIntercalibration_Stat178: 0.05502653428119929 - syst_JES_EtaIntercalibration_Stat179: 0.07938430071493985 - syst_JES_EtaIntercalibration_Stat18: 0.0010179583623606617 - syst_JES_EtaIntercalibration_Stat180: 0.02569829602814163 - syst_JES_EtaIntercalibration_Stat181: 0.0011754562805566186 - syst_JES_EtaIntercalibration_Stat182: 0.001056775652633992 - syst_JES_EtaIntercalibration_Stat183: 0.00460169364120429 - syst_JES_EtaIntercalibration_Stat184: 0.0013832700495564848 - syst_JES_EtaIntercalibration_Stat185: 0.0010083732976928733 - syst_JES_EtaIntercalibration_Stat186: 6.619898186528248e-26 + syst_JES_EtaIntercalibration_Stat176: 2.79639603e-11 + syst_JES_EtaIntercalibration_Stat177: 1.70347197e-03 + syst_JES_EtaIntercalibration_Stat178: 5.50265343e-02 + syst_JES_EtaIntercalibration_Stat179: 7.93843007e-02 + syst_JES_EtaIntercalibration_Stat18: 1.01795836e-03 + syst_JES_EtaIntercalibration_Stat180: 2.56982960e-02 + syst_JES_EtaIntercalibration_Stat181: 1.17545628e-03 + syst_JES_EtaIntercalibration_Stat182: 1.05677565e-03 + syst_JES_EtaIntercalibration_Stat183: 4.60169364e-03 + syst_JES_EtaIntercalibration_Stat184: 1.38327005e-03 + syst_JES_EtaIntercalibration_Stat185: 1.00837330e-03 + syst_JES_EtaIntercalibration_Stat186: 6.61989819e-26 syst_JES_EtaIntercalibration_Stat187: 0.0 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 @@ -45605,31 +45605,31 @@ bins: syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 syst_JES_EtaIntercalibration_Stat192: 0.0 - syst_JES_EtaIntercalibration_Stat193: 5.561307379339861e-10 - syst_JES_EtaIntercalibration_Stat194: 9.464928595610218e-05 - syst_JES_EtaIntercalibration_Stat195: 0.0014630953591615278 - syst_JES_EtaIntercalibration_Stat196: 0.003862849207515095 - syst_JES_EtaIntercalibration_Stat197: 0.00158355390419777 - syst_JES_EtaIntercalibration_Stat198: 0.00014188382809538232 - syst_JES_EtaIntercalibration_Stat199: 8.197003049895737e-05 + syst_JES_EtaIntercalibration_Stat193: 5.56130738e-10 + syst_JES_EtaIntercalibration_Stat194: 9.46492860e-05 + syst_JES_EtaIntercalibration_Stat195: 1.46309536e-03 + syst_JES_EtaIntercalibration_Stat196: 3.86284921e-03 + syst_JES_EtaIntercalibration_Stat197: 1.58355390e-03 + syst_JES_EtaIntercalibration_Stat198: 1.41883828e-04 + syst_JES_EtaIntercalibration_Stat199: 8.19700305e-05 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 2.1633314587777735e-08 - syst_JES_EtaIntercalibration_Stat201: 6.619898186528248e-26 + syst_JES_EtaIntercalibration_Stat200: 2.16333146e-08 + syst_JES_EtaIntercalibration_Stat201: 6.61989819e-26 syst_JES_EtaIntercalibration_Stat202: 0.0 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 syst_JES_EtaIntercalibration_Stat207: 0.0 - syst_JES_EtaIntercalibration_Stat208: 1.7874764334110814e-42 - syst_JES_EtaIntercalibration_Stat209: 2.019571241625311e-40 + syst_JES_EtaIntercalibration_Stat208: 1.78747643e-42 + syst_JES_EtaIntercalibration_Stat209: 2.01957124e-40 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 9.465369881837688e-06 - syst_JES_EtaIntercalibration_Stat211: 0.0001706472018522425 - syst_JES_EtaIntercalibration_Stat212: 1.2017326257422686e-14 - syst_JES_EtaIntercalibration_Stat213: 6.854591070953832e-25 - syst_JES_EtaIntercalibration_Stat214: 6.619898186528248e-26 + syst_JES_EtaIntercalibration_Stat210: 9.46536988e-06 + syst_JES_EtaIntercalibration_Stat211: 1.70647202e-04 + syst_JES_EtaIntercalibration_Stat212: 1.20173263e-14 + syst_JES_EtaIntercalibration_Stat213: 6.85459107e-25 + syst_JES_EtaIntercalibration_Stat214: 6.61989819e-26 syst_JES_EtaIntercalibration_Stat215: 0.0 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 @@ -45639,9 +45639,9 @@ bins: syst_JES_EtaIntercalibration_Stat220: 0.0 syst_JES_EtaIntercalibration_Stat221: 0.0 syst_JES_EtaIntercalibration_Stat222: 0.0 - syst_JES_EtaIntercalibration_Stat223: 3.9049084898631335e-11 - syst_JES_EtaIntercalibration_Stat224: 8.830861010814635e-33 - syst_JES_EtaIntercalibration_Stat225: 4.128e-42 + syst_JES_EtaIntercalibration_Stat223: 3.90490849e-11 + syst_JES_EtaIntercalibration_Stat224: 8.83086101e-33 + syst_JES_EtaIntercalibration_Stat225: 4.12800000e-42 syst_JES_EtaIntercalibration_Stat226: 0.0 syst_JES_EtaIntercalibration_Stat227: 0.0 syst_JES_EtaIntercalibration_Stat228: 0.0 @@ -45651,130 +45651,130 @@ bins: syst_JES_EtaIntercalibration_Stat231: 0.0 syst_JES_EtaIntercalibration_Stat232: 0.0 syst_JES_EtaIntercalibration_Stat233: 0.0 - syst_JES_EtaIntercalibration_Stat234: 3.574952866822163e-42 - syst_JES_EtaIntercalibration_Stat235: 5.845671475544961e-26 + syst_JES_EtaIntercalibration_Stat234: 3.57495287e-42 + syst_JES_EtaIntercalibration_Stat235: 5.84567148e-26 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 syst_JES_EtaIntercalibration_Stat239: 0.0 - syst_JES_EtaIntercalibration_Stat24: 0.004809905092618772 + syst_JES_EtaIntercalibration_Stat24: 4.80990509e-03 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 syst_JES_EtaIntercalibration_Stat243: 0.0 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 - syst_JES_EtaIntercalibration_Stat25: 0.02283583525952138 - syst_JES_EtaIntercalibration_Stat26: 0.0541665474878176 - syst_JES_EtaIntercalibration_Stat27: 0.008289415706188224 - syst_JES_EtaIntercalibration_Stat28: 0.001532673437983447 + syst_JES_EtaIntercalibration_Stat25: 2.28358353e-02 + syst_JES_EtaIntercalibration_Stat26: 5.41665475e-02 + syst_JES_EtaIntercalibration_Stat27: 8.28941571e-03 + syst_JES_EtaIntercalibration_Stat28: 1.53267344e-03 syst_JES_EtaIntercalibration_Stat29: 0.0 - syst_JES_EtaIntercalibration_Stat3: 0.0018084072411932 + syst_JES_EtaIntercalibration_Stat3: 1.80840724e-03 syst_JES_EtaIntercalibration_Stat30: 0.0 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 0.020308295718745085 - syst_JES_EtaIntercalibration_Stat36: 0.020308295718745085 - syst_JES_EtaIntercalibration_Stat37: 0.002721470742080466 - syst_JES_EtaIntercalibration_Stat38: 0.015686681508528182 - syst_JES_EtaIntercalibration_Stat39: 0.01682002378119603 - syst_JES_EtaIntercalibration_Stat4: 0.0022893026159728205 - syst_JES_EtaIntercalibration_Stat40: 0.02145895120922735 + syst_JES_EtaIntercalibration_Stat35: 2.03082957e-02 + syst_JES_EtaIntercalibration_Stat36: 2.03082957e-02 + syst_JES_EtaIntercalibration_Stat37: 2.72147074e-03 + syst_JES_EtaIntercalibration_Stat38: 1.56866815e-02 + syst_JES_EtaIntercalibration_Stat39: 1.68200238e-02 + syst_JES_EtaIntercalibration_Stat4: 2.28930262e-03 + syst_JES_EtaIntercalibration_Stat40: 2.14589512e-02 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 syst_JES_EtaIntercalibration_Stat44: 0.0 syst_JES_EtaIntercalibration_Stat45: 0.0 - syst_JES_EtaIntercalibration_Stat46: 0.006517130561067501 - syst_JES_EtaIntercalibration_Stat47: 0.05007408411543839 - syst_JES_EtaIntercalibration_Stat48: 0.15385611679423083 - syst_JES_EtaIntercalibration_Stat49: 0.11308216614479934 - syst_JES_EtaIntercalibration_Stat5: 0.0019785803673341147 - syst_JES_EtaIntercalibration_Stat50: 0.013687839886190956 + syst_JES_EtaIntercalibration_Stat46: 6.51713056e-03 + syst_JES_EtaIntercalibration_Stat47: 5.00740841e-02 + syst_JES_EtaIntercalibration_Stat48: 1.53856117e-01 + syst_JES_EtaIntercalibration_Stat49: 1.13082166e-01 + syst_JES_EtaIntercalibration_Stat5: 1.97858037e-03 + syst_JES_EtaIntercalibration_Stat50: 1.36878399e-02 syst_JES_EtaIntercalibration_Stat51: 0.0 syst_JES_EtaIntercalibration_Stat52: 0.0 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 0.005720097791996217 - syst_JES_EtaIntercalibration_Stat57: 0.020308295718745085 - syst_JES_EtaIntercalibration_Stat58: 0.020308295718745085 - syst_JES_EtaIntercalibration_Stat59: 0.018307576812620508 + syst_JES_EtaIntercalibration_Stat56: 5.72009779e-03 + syst_JES_EtaIntercalibration_Stat57: 2.03082957e-02 + syst_JES_EtaIntercalibration_Stat58: 2.03082957e-02 + syst_JES_EtaIntercalibration_Stat59: 1.83075768e-02 syst_JES_EtaIntercalibration_Stat6: 0.0 - syst_JES_EtaIntercalibration_Stat60: 0.13190869067275285 - syst_JES_EtaIntercalibration_Stat61: 0.20426208654569258 - syst_JES_EtaIntercalibration_Stat62: 0.06097258743689659 - syst_JES_EtaIntercalibration_Stat63: 0.0021052083390249053 + syst_JES_EtaIntercalibration_Stat60: 1.31908691e-01 + syst_JES_EtaIntercalibration_Stat61: 2.04262087e-01 + syst_JES_EtaIntercalibration_Stat62: 6.09725874e-02 + syst_JES_EtaIntercalibration_Stat63: 2.10520834e-03 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 0.01890671708018079 - syst_JES_EtaIntercalibration_Stat69: 0.6434972649514527 + syst_JES_EtaIntercalibration_Stat68: 1.89067171e-02 + syst_JES_EtaIntercalibration_Stat69: 6.43497265e-01 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 1.1435143724501236 - syst_JES_EtaIntercalibration_Stat71: 0.5593483440576186 - syst_JES_EtaIntercalibration_Stat72: 0.08475989794708344 + syst_JES_EtaIntercalibration_Stat70: 1.14351437e+00 + syst_JES_EtaIntercalibration_Stat71: 5.59348344e-01 + syst_JES_EtaIntercalibration_Stat72: 8.47598979e-02 syst_JES_EtaIntercalibration_Stat73: 0.0 syst_JES_EtaIntercalibration_Stat74: 0.0 syst_JES_EtaIntercalibration_Stat75: 0.0 - syst_JES_EtaIntercalibration_Stat76: 0.011513807743314113 - syst_JES_EtaIntercalibration_Stat77: 0.005720097791996217 - syst_JES_EtaIntercalibration_Stat78: 0.005720097791996217 - syst_JES_EtaIntercalibration_Stat79: 0.020308295718745085 + syst_JES_EtaIntercalibration_Stat76: 1.15138077e-02 + syst_JES_EtaIntercalibration_Stat77: 5.72009779e-03 + syst_JES_EtaIntercalibration_Stat78: 5.72009779e-03 + syst_JES_EtaIntercalibration_Stat79: 2.03082957e-02 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 0.02035159698893431 - syst_JES_EtaIntercalibration_Stat81: 0.0609716678056292 - syst_JES_EtaIntercalibration_Stat82: 0.6102082492887161 - syst_JES_EtaIntercalibration_Stat83: 1.4606163082753798 - syst_JES_EtaIntercalibration_Stat84: 0.5545758446777139 - syst_JES_EtaIntercalibration_Stat85: 0.0077022921750606165 + syst_JES_EtaIntercalibration_Stat80: 2.03515970e-02 + syst_JES_EtaIntercalibration_Stat81: 6.09716678e-02 + syst_JES_EtaIntercalibration_Stat82: 6.10208249e-01 + syst_JES_EtaIntercalibration_Stat83: 1.46061631e+00 + syst_JES_EtaIntercalibration_Stat84: 5.54575845e-01 + syst_JES_EtaIntercalibration_Stat85: 7.70229218e-03 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 0.037235749958876886 + syst_JES_EtaIntercalibration_Stat89: 3.72357500e-02 syst_JES_EtaIntercalibration_Stat9: 0.0 - syst_JES_EtaIntercalibration_Stat90: 0.955656852641156 - syst_JES_EtaIntercalibration_Stat91: 2.3769259033465895 - syst_JES_EtaIntercalibration_Stat92: 1.0593504094491115 - syst_JES_EtaIntercalibration_Stat93: 0.13843894349134567 + syst_JES_EtaIntercalibration_Stat90: 9.55656853e-01 + syst_JES_EtaIntercalibration_Stat91: 2.37692590e+00 + syst_JES_EtaIntercalibration_Stat92: 1.05935041e+00 + syst_JES_EtaIntercalibration_Stat93: 1.38438943e-01 syst_JES_EtaIntercalibration_Stat94: 0.0 syst_JES_EtaIntercalibration_Stat95: 0.0 - syst_JES_EtaIntercalibration_Stat96: 0.010346405499012687 - syst_JES_EtaIntercalibration_Stat97: 0.011513807743314113 - syst_JES_EtaIntercalibration_Stat98: 0.005720097791996217 - syst_JES_EtaIntercalibration_Stat99: 0.005720097791996217 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.012496948137445398 - syst_JES_Flavour_Comp: 3.853703770400626 - syst_JES_Gjet_Generator: 32.940437155569136 - syst_JES_Gjet_OOC: 19.084026697738608 - syst_JES_Gjet_Purity: 8.03083437445948 - syst_JES_Gjet_Stat1: 0.042461225547551024 - syst_JES_Gjet_Stat10: 0.2987583429797401 - syst_JES_Gjet_Stat11: 0.31512570932089945 - syst_JES_Gjet_Stat12: 0.00957304481343322 - syst_JES_Gjet_Stat13: 0.0012742959261882619 - syst_JES_Gjet_Stat14: 2.439597019653772e-07 - syst_JES_Gjet_Stat15: 7.131719200164852e-40 + syst_JES_EtaIntercalibration_Stat96: 1.03464055e-02 + syst_JES_EtaIntercalibration_Stat97: 1.15138077e-02 + syst_JES_EtaIntercalibration_Stat98: 5.72009779e-03 + syst_JES_EtaIntercalibration_Stat99: 5.72009779e-03 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.24969481e-02 + syst_JES_Flavour_Comp: 3.85370377e+00 + syst_JES_Gjet_Generator: 3.29404372e+01 + syst_JES_Gjet_OOC: 1.90840267e+01 + syst_JES_Gjet_Purity: 8.03083437e+00 + syst_JES_Gjet_Stat1: 4.24612255e-02 + syst_JES_Gjet_Stat10: 2.98758343e-01 + syst_JES_Gjet_Stat11: 3.15125709e-01 + syst_JES_Gjet_Stat12: 9.57304481e-03 + syst_JES_Gjet_Stat13: 1.27429593e-03 + syst_JES_Gjet_Stat14: 2.43959702e-07 + syst_JES_Gjet_Stat15: 7.13171920e-40 syst_JES_Gjet_Stat2: 0.0 - syst_JES_Gjet_Stat3: 0.23980243430791104 - syst_JES_Gjet_Stat4: 0.3991652981848497 - syst_JES_Gjet_Stat5: 0.4744787034209228 - syst_JES_Gjet_Stat6: 1.525743343423133 - syst_JES_Gjet_Stat7: 2.708769600759725 - syst_JES_Gjet_Stat8: 1.2983639118136334 - syst_JES_Gjet_Stat9: 0.717428440682414 - syst_JES_Gjet_Veto: 6.947596994644983 - syst_JES_Gjet_dPhi: 3.5797058021574903 - syst_JES_LArESZee: 22.6148800571659 - syst_JES_LArEsmear: 2.340288443760726 - syst_JES_LAr_JVT: 3.681515007439193 - syst_JES_MJB_Alpha: 4.376026365322768e-31 - syst_JES_MJB_Asym: 0.0010413089455103988 + syst_JES_Gjet_Stat3: 2.39802434e-01 + syst_JES_Gjet_Stat4: 3.99165298e-01 + syst_JES_Gjet_Stat5: 4.74478703e-01 + syst_JES_Gjet_Stat6: 1.52574334e+00 + syst_JES_Gjet_Stat7: 2.70876960e+00 + syst_JES_Gjet_Stat8: 1.29836391e+00 + syst_JES_Gjet_Stat9: 7.17428441e-01 + syst_JES_Gjet_Veto: 6.94759699e+00 + syst_JES_Gjet_dPhi: 3.57970580e+00 + syst_JES_LArESZee: 2.26148801e+01 + syst_JES_LArEsmear: 2.34028844e+00 + syst_JES_LAr_JVT: 3.68151501e+00 + syst_JES_MJB_Alpha: 4.37602637e-31 + syst_JES_MJB_Asym: 1.04130895e-03 syst_JES_MJB_Beta: 0.0 - syst_JES_MJB_Stat1: 7.932792698665459e-18 + syst_JES_MJB_Stat1: 7.93279270e-18 syst_JES_MJB_Stat10: 0.0 syst_JES_MJB_Stat11: 0.0 syst_JES_MJB_Stat12: 0.0 @@ -45782,164 +45782,164 @@ bins: syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 0.0008274872733160312 - syst_JES_MJB_Stat3: 4.244390503947534e-06 + syst_JES_MJB_Stat2: 8.27487273e-04 + syst_JES_MJB_Stat3: 4.24439050e-06 syst_JES_MJB_Stat4: 0.0 - syst_JES_MJB_Stat5: 2.0386238005085685e-24 + syst_JES_MJB_Stat5: 2.03862380e-24 syst_JES_MJB_Stat6: 0.0 syst_JES_MJB_Stat7: 0.0 syst_JES_MJB_Stat8: 0.0 syst_JES_MJB_Stat9: 0.0 - syst_JES_MJB_Threshold: 0.0013939457198901251 - syst_JES_Pileup_MuOffset: 4.1170847695727864e-12 - syst_JES_Pileup_NPVOffset: 2.1161252325890354 - syst_JES_Pileup_Pt_term: 11.662710523287457 - syst_JES_PunchThrough_MC15: 1.629859809922287e-17 + syst_JES_MJB_Threshold: 1.39394572e-03 + syst_JES_Pileup_MuOffset: 4.11708477e-12 + syst_JES_Pileup_NPVOffset: 2.11612523e+00 + syst_JES_Pileup_Pt_term: 1.16627105e+01 + syst_JES_PunchThrough_MC15: 1.62985981e-17 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 28.764019190648586 - syst_JES_Zjet_MuScale: 2.2514744058061154 - syst_JES_Zjet_MuSmearID: 0.38647663254070097 - syst_JES_Zjet_MuSmearMS: 1.627643081268126 - syst_JES_Zjet_OOC: 15.145943351273965 - syst_JES_Zjet_Stat1: 0.3444072298892693 - syst_JES_Zjet_Stat10: 3.369187253626607 - syst_JES_Zjet_Stat11: 0.6303654713735517 - syst_JES_Zjet_Stat12: 0.5683794925047876 - syst_JES_Zjet_Stat13: 0.033546104106885494 - syst_JES_Zjet_Stat2: 0.014012290967789566 - syst_JES_Zjet_Stat3: 5.565079244718803e-18 - syst_JES_Zjet_Stat4: 0.15492936293679133 - syst_JES_Zjet_Stat5: 0.2693567708449149 - syst_JES_Zjet_Stat6: 0.5438197380566469 - syst_JES_Zjet_Stat7: 0.9470554616810992 - syst_JES_Zjet_Stat8: 1.7727370786442076 - syst_JES_Zjet_Stat9: 3.524696689078367 - syst_JES_Zjet_Veto: 2.594035273468732 - syst_JES_Zjet_dPhi: 3.4341413410050556 + syst_JES_Zjet_MC: 2.87640192e+01 + syst_JES_Zjet_MuScale: 2.25147441e+00 + syst_JES_Zjet_MuSmearID: 3.86476633e-01 + syst_JES_Zjet_MuSmearMS: 1.62764308e+00 + syst_JES_Zjet_OOC: 1.51459434e+01 + syst_JES_Zjet_Stat1: 3.44407230e-01 + syst_JES_Zjet_Stat10: 3.36918725e+00 + syst_JES_Zjet_Stat11: 6.30365471e-01 + syst_JES_Zjet_Stat12: 5.68379493e-01 + syst_JES_Zjet_Stat13: 3.35461041e-02 + syst_JES_Zjet_Stat2: 1.40122910e-02 + syst_JES_Zjet_Stat3: 5.56507924e-18 + syst_JES_Zjet_Stat4: 1.54929363e-01 + syst_JES_Zjet_Stat5: 2.69356771e-01 + syst_JES_Zjet_Stat6: 5.43819738e-01 + syst_JES_Zjet_Stat7: 9.47055462e-01 + syst_JES_Zjet_Stat8: 1.77273708e+00 + syst_JES_Zjet_Stat9: 3.52469669e+00 + syst_JES_Zjet_Veto: 2.59403527e+00 + syst_JES_Zjet_dPhi: 3.43414134e+00 syst_PRW: 0.0 syst_Unfolding_bias: 0.0 - syst_cleaning: 9.471719841190405 + syst_cleaning: 9.47171984e+00 syst_lumi: 30.93 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 37.57096086074989 - syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.010537166258060086 - syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 3.739623407510441 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 33.13582162856385 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.013295260311479427 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 14.578071503117277 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 3.75709609e+01 + syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.05371663e-02 + syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 3.73962341e+00 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 3.31358216e+01 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.32952603e-02 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.45780715e+01 - stat: 5.854 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 14.945516886344212 - syst_JER_NP1: 1.9621255693762312 - syst_JER_NP2: 1.4540587161459473 - syst_JER_NP3: 4.38951987693415 - syst_JER_NP4: 0.88168939542222 - syst_JER_NP5: 1.271965923285683 - syst_JER_NP6: 0.9432757006835275 - syst_JER_NP7: 0.4664088442557667 - syst_JER_NP8: 1.1040887645474886 - syst_JES_EtaIntercalibration_Modelling: 17.932029305128854 - syst_JES_EtaIntercalibration_NonClosure: 34.22044125957466 + syst_JER_NP0: 1.49455169e+01 + syst_JER_NP1: 1.96212557e+00 + syst_JER_NP2: 1.45405872e+00 + syst_JER_NP3: 4.38951988e+00 + syst_JER_NP4: 8.81689395e-01 + syst_JER_NP5: 1.27196592e+00 + syst_JER_NP6: 9.43275701e-01 + syst_JER_NP7: 4.66408844e-01 + syst_JER_NP8: 1.10408876e+00 + syst_JES_EtaIntercalibration_Modelling: 1.79320293e+01 + syst_JES_EtaIntercalibration_NonClosure: 3.42204413e+01 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 0.0004188098852701545 + syst_JES_EtaIntercalibration_Stat100: 4.18809885e-04 syst_JES_EtaIntercalibration_Stat101: 0.0 - syst_JES_EtaIntercalibration_Stat102: 0.028033841602605948 - syst_JES_EtaIntercalibration_Stat103: 0.33439746933851044 - syst_JES_EtaIntercalibration_Stat104: 0.6856503336249462 - syst_JES_EtaIntercalibration_Stat105: 0.3112737862397025 - syst_JES_EtaIntercalibration_Stat106: 0.0012184481269528877 + syst_JES_EtaIntercalibration_Stat102: 2.80338416e-02 + syst_JES_EtaIntercalibration_Stat103: 3.34397469e-01 + syst_JES_EtaIntercalibration_Stat104: 6.85650334e-01 + syst_JES_EtaIntercalibration_Stat105: 3.11273786e-01 + syst_JES_EtaIntercalibration_Stat106: 1.21844813e-03 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 0.023477755261796216 + syst_JES_EtaIntercalibration_Stat109: 2.34777553e-02 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 0.9130284045417207 - syst_JES_EtaIntercalibration_Stat111: 2.3416889204162024 - syst_JES_EtaIntercalibration_Stat112: 1.3908045899766075 - syst_JES_EtaIntercalibration_Stat113: 0.14261298783771414 - syst_JES_EtaIntercalibration_Stat114: 0.0006553214230436848 + syst_JES_EtaIntercalibration_Stat110: 9.13028405e-01 + syst_JES_EtaIntercalibration_Stat111: 2.34168892e+00 + syst_JES_EtaIntercalibration_Stat112: 1.39080459e+00 + syst_JES_EtaIntercalibration_Stat113: 1.42612988e-01 + syst_JES_EtaIntercalibration_Stat114: 6.55321423e-04 syst_JES_EtaIntercalibration_Stat115: 0.0 - syst_JES_EtaIntercalibration_Stat116: 0.014306739670518926 - syst_JES_EtaIntercalibration_Stat117: 0.0001829911678196519 - syst_JES_EtaIntercalibration_Stat118: 0.0004188098852701545 - syst_JES_EtaIntercalibration_Stat119: 0.0004188098852701545 + syst_JES_EtaIntercalibration_Stat116: 1.43067397e-02 + syst_JES_EtaIntercalibration_Stat117: 1.82991168e-04 + syst_JES_EtaIntercalibration_Stat118: 4.18809885e-04 + syst_JES_EtaIntercalibration_Stat119: 4.18809885e-04 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 0.0004188098852701545 - syst_JES_EtaIntercalibration_Stat121: 0.0010239884374347202 - syst_JES_EtaIntercalibration_Stat122: 0.11018411534790302 - syst_JES_EtaIntercalibration_Stat123: 1.286892096292459 - syst_JES_EtaIntercalibration_Stat124: 2.2725027502733632 - syst_JES_EtaIntercalibration_Stat125: 0.9715462366763612 - syst_JES_EtaIntercalibration_Stat126: 0.017550484095887497 + syst_JES_EtaIntercalibration_Stat120: 4.18809885e-04 + syst_JES_EtaIntercalibration_Stat121: 1.02398844e-03 + syst_JES_EtaIntercalibration_Stat122: 1.10184115e-01 + syst_JES_EtaIntercalibration_Stat123: 1.28689210e+00 + syst_JES_EtaIntercalibration_Stat124: 2.27250275e+00 + syst_JES_EtaIntercalibration_Stat125: 9.71546237e-01 + syst_JES_EtaIntercalibration_Stat126: 1.75504841e-02 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 0.019848205158149692 - syst_JES_EtaIntercalibration_Stat129: 1.4148108106739927 + syst_JES_EtaIntercalibration_Stat128: 1.98482052e-02 + syst_JES_EtaIntercalibration_Stat129: 1.41481081e+00 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 5.228616906027826 - syst_JES_EtaIntercalibration_Stat131: 1.2993955633293506 - syst_JES_EtaIntercalibration_Stat132: 0.20947002172148646 - syst_JES_EtaIntercalibration_Stat133: 0.002561047246733258 + syst_JES_EtaIntercalibration_Stat130: 5.22861691e+00 + syst_JES_EtaIntercalibration_Stat131: 1.29939556e+00 + syst_JES_EtaIntercalibration_Stat132: 2.09470022e-01 + syst_JES_EtaIntercalibration_Stat133: 2.56104725e-03 syst_JES_EtaIntercalibration_Stat134: 0.0 - syst_JES_EtaIntercalibration_Stat135: 0.014306739670518926 - syst_JES_EtaIntercalibration_Stat136: 0.014306739670518926 - syst_JES_EtaIntercalibration_Stat137: 0.0004188098852701545 - syst_JES_EtaIntercalibration_Stat138: 0.0004188098852701545 - syst_JES_EtaIntercalibration_Stat139: 0.0004188098852701545 + syst_JES_EtaIntercalibration_Stat135: 1.43067397e-02 + syst_JES_EtaIntercalibration_Stat136: 1.43067397e-02 + syst_JES_EtaIntercalibration_Stat137: 4.18809885e-04 + syst_JES_EtaIntercalibration_Stat138: 4.18809885e-04 + syst_JES_EtaIntercalibration_Stat139: 4.18809885e-04 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 0.005146788974690919 - syst_JES_EtaIntercalibration_Stat141: 0.21139140829276865 - syst_JES_EtaIntercalibration_Stat142: 1.1440946114723205 - syst_JES_EtaIntercalibration_Stat143: 3.3978582960447308 - syst_JES_EtaIntercalibration_Stat144: 1.8616124059535057 - syst_JES_EtaIntercalibration_Stat145: 0.038271982898721094 - syst_JES_EtaIntercalibration_Stat146: 0.0008503324879128165 - syst_JES_EtaIntercalibration_Stat147: 0.06030574588710432 - syst_JES_EtaIntercalibration_Stat148: 0.17914775096271793 - syst_JES_EtaIntercalibration_Stat149: 0.11144736066861341 + syst_JES_EtaIntercalibration_Stat140: 5.14678897e-03 + syst_JES_EtaIntercalibration_Stat141: 2.11391408e-01 + syst_JES_EtaIntercalibration_Stat142: 1.14409461e+00 + syst_JES_EtaIntercalibration_Stat143: 3.39785830e+00 + syst_JES_EtaIntercalibration_Stat144: 1.86161241e+00 + syst_JES_EtaIntercalibration_Stat145: 3.82719829e-02 + syst_JES_EtaIntercalibration_Stat146: 8.50332488e-04 + syst_JES_EtaIntercalibration_Stat147: 6.03057459e-02 + syst_JES_EtaIntercalibration_Stat148: 1.79147751e-01 + syst_JES_EtaIntercalibration_Stat149: 1.11447361e-01 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 0.010511962364373266 - syst_JES_EtaIntercalibration_Stat151: 0.000651337706186276 + syst_JES_EtaIntercalibration_Stat150: 1.05119624e-02 + syst_JES_EtaIntercalibration_Stat151: 6.51337706e-04 syst_JES_EtaIntercalibration_Stat152: 0.0 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 0.0004188098852701545 + syst_JES_EtaIntercalibration_Stat156: 4.18809885e-04 syst_JES_EtaIntercalibration_Stat157: 0.0 syst_JES_EtaIntercalibration_Stat158: 0.0 - syst_JES_EtaIntercalibration_Stat159: 0.06583559523540439 - syst_JES_EtaIntercalibration_Stat16: 0.0005902677443330272 - syst_JES_EtaIntercalibration_Stat160: 0.09180885074435907 - syst_JES_EtaIntercalibration_Stat161: 0.14028679303483987 - syst_JES_EtaIntercalibration_Stat162: 0.15170927031661577 - syst_JES_EtaIntercalibration_Stat163: 0.00260486352809509 - syst_JES_EtaIntercalibration_Stat164: 0.004485768384569136 - syst_JES_EtaIntercalibration_Stat165: 0.07481774037619687 - syst_JES_EtaIntercalibration_Stat166: 0.15740406602118 - syst_JES_EtaIntercalibration_Stat167: 0.04900868570978006 - syst_JES_EtaIntercalibration_Stat168: 0.009896604171128599 - syst_JES_EtaIntercalibration_Stat169: 0.000651337706186276 - syst_JES_EtaIntercalibration_Stat17: 0.0013014216895668367 + syst_JES_EtaIntercalibration_Stat159: 6.58355952e-02 + syst_JES_EtaIntercalibration_Stat16: 5.90267744e-04 + syst_JES_EtaIntercalibration_Stat160: 9.18088507e-02 + syst_JES_EtaIntercalibration_Stat161: 1.40286793e-01 + syst_JES_EtaIntercalibration_Stat162: 1.51709270e-01 + syst_JES_EtaIntercalibration_Stat163: 2.60486353e-03 + syst_JES_EtaIntercalibration_Stat164: 4.48576838e-03 + syst_JES_EtaIntercalibration_Stat165: 7.48177404e-02 + syst_JES_EtaIntercalibration_Stat166: 1.57404066e-01 + syst_JES_EtaIntercalibration_Stat167: 4.90086857e-02 + syst_JES_EtaIntercalibration_Stat168: 9.89660417e-03 + syst_JES_EtaIntercalibration_Stat169: 6.51337706e-04 + syst_JES_EtaIntercalibration_Stat17: 1.30142169e-03 syst_JES_EtaIntercalibration_Stat170: 0.0 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 syst_JES_EtaIntercalibration_Stat175: 0.0 - syst_JES_EtaIntercalibration_Stat176: 2.616262744832789e-08 - syst_JES_EtaIntercalibration_Stat177: 0.005717499715784864 - syst_JES_EtaIntercalibration_Stat178: 0.08386335612172935 - syst_JES_EtaIntercalibration_Stat179: 0.1552727396389978 - syst_JES_EtaIntercalibration_Stat18: 0.00011685757485075583 - syst_JES_EtaIntercalibration_Stat180: 0.045263417090957686 - syst_JES_EtaIntercalibration_Stat181: 0.003945611739641902 - syst_JES_EtaIntercalibration_Stat182: 0.009464578596007326 - syst_JES_EtaIntercalibration_Stat183: 0.025938083969329735 - syst_JES_EtaIntercalibration_Stat184: 0.006226431642602366 - syst_JES_EtaIntercalibration_Stat185: 0.003383562028395519 - syst_JES_EtaIntercalibration_Stat186: 1.1690476925686137e-18 + syst_JES_EtaIntercalibration_Stat176: 2.61626274e-08 + syst_JES_EtaIntercalibration_Stat177: 5.71749972e-03 + syst_JES_EtaIntercalibration_Stat178: 8.38633561e-02 + syst_JES_EtaIntercalibration_Stat179: 1.55272740e-01 + syst_JES_EtaIntercalibration_Stat18: 1.16857575e-04 + syst_JES_EtaIntercalibration_Stat180: 4.52634171e-02 + syst_JES_EtaIntercalibration_Stat181: 3.94561174e-03 + syst_JES_EtaIntercalibration_Stat182: 9.46457860e-03 + syst_JES_EtaIntercalibration_Stat183: 2.59380840e-02 + syst_JES_EtaIntercalibration_Stat184: 6.22643164e-03 + syst_JES_EtaIntercalibration_Stat185: 3.38356203e-03 + syst_JES_EtaIntercalibration_Stat186: 1.16904769e-18 syst_JES_EtaIntercalibration_Stat187: 0.0 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 @@ -45947,31 +45947,31 @@ bins: syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 syst_JES_EtaIntercalibration_Stat192: 0.0 - syst_JES_EtaIntercalibration_Stat193: 5.170306461661631e-07 - syst_JES_EtaIntercalibration_Stat194: 0.00019412982460199156 - syst_JES_EtaIntercalibration_Stat195: 0.004273403415311969 - syst_JES_EtaIntercalibration_Stat196: 0.02267044128375096 - syst_JES_EtaIntercalibration_Stat197: 0.006223125449697684 - syst_JES_EtaIntercalibration_Stat198: 0.0004764831030582302 - syst_JES_EtaIntercalibration_Stat199: 0.00019810554636354836 + syst_JES_EtaIntercalibration_Stat193: 5.17030646e-07 + syst_JES_EtaIntercalibration_Stat194: 1.94129825e-04 + syst_JES_EtaIntercalibration_Stat195: 4.27340342e-03 + syst_JES_EtaIntercalibration_Stat196: 2.26704413e-02 + syst_JES_EtaIntercalibration_Stat197: 6.22312545e-03 + syst_JES_EtaIntercalibration_Stat198: 4.76483103e-04 + syst_JES_EtaIntercalibration_Stat199: 1.98105546e-04 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 8.33376721510797e-07 - syst_JES_EtaIntercalibration_Stat201: 1.1690476925686137e-18 + syst_JES_EtaIntercalibration_Stat200: 8.33376722e-07 + syst_JES_EtaIntercalibration_Stat201: 1.16904769e-18 syst_JES_EtaIntercalibration_Stat202: 0.0 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 syst_JES_EtaIntercalibration_Stat207: 0.0 - syst_JES_EtaIntercalibration_Stat208: 4.762273695410628e-31 - syst_JES_EtaIntercalibration_Stat209: 5.304405567502181e-29 + syst_JES_EtaIntercalibration_Stat208: 4.76227370e-31 + syst_JES_EtaIntercalibration_Stat209: 5.30440557e-29 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 0.00013413175127463295 - syst_JES_EtaIntercalibration_Stat211: 0.0005773333352578908 - syst_JES_EtaIntercalibration_Stat212: 1.6876794368253114e-10 - syst_JES_EtaIntercalibration_Stat213: 1.2106169119502667e-17 - syst_JES_EtaIntercalibration_Stat214: 1.1690476925686137e-18 + syst_JES_EtaIntercalibration_Stat210: 1.34131751e-04 + syst_JES_EtaIntercalibration_Stat211: 5.77333335e-04 + syst_JES_EtaIntercalibration_Stat212: 1.68767944e-10 + syst_JES_EtaIntercalibration_Stat213: 1.21061691e-17 + syst_JES_EtaIntercalibration_Stat214: 1.16904769e-18 syst_JES_EtaIntercalibration_Stat215: 0.0 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 @@ -45980,10 +45980,10 @@ bins: syst_JES_EtaIntercalibration_Stat22: 0.0 syst_JES_EtaIntercalibration_Stat220: 0.0 syst_JES_EtaIntercalibration_Stat221: 0.0 - syst_JES_EtaIntercalibration_Stat222: 4.101496312323101e-37 - syst_JES_EtaIntercalibration_Stat223: 3.663266105206346e-08 - syst_JES_EtaIntercalibration_Stat224: 1.2782526594074816e-23 - syst_JES_EtaIntercalibration_Stat225: 9.12840763769892e-31 + syst_JES_EtaIntercalibration_Stat222: 4.10149631e-37 + syst_JES_EtaIntercalibration_Stat223: 3.66326611e-08 + syst_JES_EtaIntercalibration_Stat224: 1.27825266e-23 + syst_JES_EtaIntercalibration_Stat225: 9.12840764e-31 syst_JES_EtaIntercalibration_Stat226: 0.0 syst_JES_EtaIntercalibration_Stat227: 0.0 syst_JES_EtaIntercalibration_Stat228: 0.0 @@ -45993,130 +45993,130 @@ bins: syst_JES_EtaIntercalibration_Stat231: 0.0 syst_JES_EtaIntercalibration_Stat232: 0.0 syst_JES_EtaIntercalibration_Stat233: 0.0 - syst_JES_EtaIntercalibration_Stat234: 1.0458988801504664e-30 - syst_JES_EtaIntercalibration_Stat235: 1.0323888838514292e-18 + syst_JES_EtaIntercalibration_Stat234: 1.04589888e-30 + syst_JES_EtaIntercalibration_Stat235: 1.03238888e-18 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 syst_JES_EtaIntercalibration_Stat239: 0.0 - syst_JES_EtaIntercalibration_Stat24: 0.0006683118041004513 + syst_JES_EtaIntercalibration_Stat24: 6.68311804e-04 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 syst_JES_EtaIntercalibration_Stat243: 0.0 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 - syst_JES_EtaIntercalibration_Stat25: 0.0032478189400734765 - syst_JES_EtaIntercalibration_Stat26: 0.011922061262634075 - syst_JES_EtaIntercalibration_Stat27: 0.005999787058721335 - syst_JES_EtaIntercalibration_Stat28: 0.001904655246363499 + syst_JES_EtaIntercalibration_Stat25: 3.24781894e-03 + syst_JES_EtaIntercalibration_Stat26: 1.19220613e-02 + syst_JES_EtaIntercalibration_Stat27: 5.99978706e-03 + syst_JES_EtaIntercalibration_Stat28: 1.90465525e-03 syst_JES_EtaIntercalibration_Stat29: 0.0 - syst_JES_EtaIntercalibration_Stat3: 0.0005214963734293844 + syst_JES_EtaIntercalibration_Stat3: 5.21496373e-04 syst_JES_EtaIntercalibration_Stat30: 0.0 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 0.005892436847349321 - syst_JES_EtaIntercalibration_Stat36: 0.005892436847349321 - syst_JES_EtaIntercalibration_Stat37: 0.0012843082992412685 - syst_JES_EtaIntercalibration_Stat38: 0.0026934256194482147 - syst_JES_EtaIntercalibration_Stat39: 0.011442460732180817 - syst_JES_EtaIntercalibration_Stat4: 0.0009710517596915212 - syst_JES_EtaIntercalibration_Stat40: 0.0049082831010446 + syst_JES_EtaIntercalibration_Stat35: 5.89243685e-03 + syst_JES_EtaIntercalibration_Stat36: 5.89243685e-03 + syst_JES_EtaIntercalibration_Stat37: 1.28430830e-03 + syst_JES_EtaIntercalibration_Stat38: 2.69342562e-03 + syst_JES_EtaIntercalibration_Stat39: 1.14424607e-02 + syst_JES_EtaIntercalibration_Stat4: 9.71051760e-04 + syst_JES_EtaIntercalibration_Stat40: 4.90828310e-03 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 syst_JES_EtaIntercalibration_Stat44: 0.0 syst_JES_EtaIntercalibration_Stat45: 0.0 - syst_JES_EtaIntercalibration_Stat46: 0.0008655359499610631 - syst_JES_EtaIntercalibration_Stat47: 0.019426064623335317 - syst_JES_EtaIntercalibration_Stat48: 0.03268199925035186 - syst_JES_EtaIntercalibration_Stat49: 0.020124088749555843 - syst_JES_EtaIntercalibration_Stat5: 0.0008626327032260023 - syst_JES_EtaIntercalibration_Stat50: 0.004906371775558799 + syst_JES_EtaIntercalibration_Stat46: 8.65535950e-04 + syst_JES_EtaIntercalibration_Stat47: 1.94260646e-02 + syst_JES_EtaIntercalibration_Stat48: 3.26819993e-02 + syst_JES_EtaIntercalibration_Stat49: 2.01240887e-02 + syst_JES_EtaIntercalibration_Stat5: 8.62632703e-04 + syst_JES_EtaIntercalibration_Stat50: 4.90637178e-03 syst_JES_EtaIntercalibration_Stat51: 0.0 syst_JES_EtaIntercalibration_Stat52: 0.0 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 0.0004188098852701545 - syst_JES_EtaIntercalibration_Stat57: 0.005892436847349321 - syst_JES_EtaIntercalibration_Stat58: 0.005892436847349321 - syst_JES_EtaIntercalibration_Stat59: 0.003337988765709076 + syst_JES_EtaIntercalibration_Stat56: 4.18809885e-04 + syst_JES_EtaIntercalibration_Stat57: 5.89243685e-03 + syst_JES_EtaIntercalibration_Stat58: 5.89243685e-03 + syst_JES_EtaIntercalibration_Stat59: 3.33798877e-03 syst_JES_EtaIntercalibration_Stat6: 0.0 - syst_JES_EtaIntercalibration_Stat60: 0.021865041207370272 - syst_JES_EtaIntercalibration_Stat61: 0.04666855981279046 - syst_JES_EtaIntercalibration_Stat62: 0.026563440604522596 - syst_JES_EtaIntercalibration_Stat63: 0.0005147923477315877 + syst_JES_EtaIntercalibration_Stat60: 2.18650412e-02 + syst_JES_EtaIntercalibration_Stat61: 4.66685598e-02 + syst_JES_EtaIntercalibration_Stat62: 2.65634406e-02 + syst_JES_EtaIntercalibration_Stat63: 5.14792348e-04 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 0.00423057343719501 - syst_JES_EtaIntercalibration_Stat69: 0.15814664081162141 + syst_JES_EtaIntercalibration_Stat68: 4.23057344e-03 + syst_JES_EtaIntercalibration_Stat69: 1.58146641e-01 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 0.249546483645833 - syst_JES_EtaIntercalibration_Stat71: 0.11225613702599961 - syst_JES_EtaIntercalibration_Stat72: 0.01288444659269462 + syst_JES_EtaIntercalibration_Stat70: 2.49546484e-01 + syst_JES_EtaIntercalibration_Stat71: 1.12256137e-01 + syst_JES_EtaIntercalibration_Stat72: 1.28844466e-02 syst_JES_EtaIntercalibration_Stat73: 0.0 syst_JES_EtaIntercalibration_Stat74: 0.0 syst_JES_EtaIntercalibration_Stat75: 0.0 - syst_JES_EtaIntercalibration_Stat76: 0.002808520384472934 - syst_JES_EtaIntercalibration_Stat77: 0.0004188098852701545 - syst_JES_EtaIntercalibration_Stat78: 0.0004188098852701545 - syst_JES_EtaIntercalibration_Stat79: 0.005892436847349321 + syst_JES_EtaIntercalibration_Stat76: 2.80852038e-03 + syst_JES_EtaIntercalibration_Stat77: 4.18809885e-04 + syst_JES_EtaIntercalibration_Stat78: 4.18809885e-04 + syst_JES_EtaIntercalibration_Stat79: 5.89243685e-03 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 0.005910623380828794 - syst_JES_EtaIntercalibration_Stat81: 0.009449250452152277 - syst_JES_EtaIntercalibration_Stat82: 0.12122537389094744 - syst_JES_EtaIntercalibration_Stat83: 0.3360864323354931 - syst_JES_EtaIntercalibration_Stat84: 0.11737491757185604 - syst_JES_EtaIntercalibration_Stat85: 0.0008214525716680179 + syst_JES_EtaIntercalibration_Stat80: 5.91062338e-03 + syst_JES_EtaIntercalibration_Stat81: 9.44925045e-03 + syst_JES_EtaIntercalibration_Stat82: 1.21225374e-01 + syst_JES_EtaIntercalibration_Stat83: 3.36086432e-01 + syst_JES_EtaIntercalibration_Stat84: 1.17374918e-01 + syst_JES_EtaIntercalibration_Stat85: 8.21452572e-04 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 0.008023023292375512 + syst_JES_EtaIntercalibration_Stat89: 8.02302329e-03 syst_JES_EtaIntercalibration_Stat9: 0.0 - syst_JES_EtaIntercalibration_Stat90: 0.2619814306396543 - syst_JES_EtaIntercalibration_Stat91: 0.6939732181431787 - syst_JES_EtaIntercalibration_Stat92: 0.3218217014124436 - syst_JES_EtaIntercalibration_Stat93: 0.028231143706906388 + syst_JES_EtaIntercalibration_Stat90: 2.61981431e-01 + syst_JES_EtaIntercalibration_Stat91: 6.93973218e-01 + syst_JES_EtaIntercalibration_Stat92: 3.21821701e-01 + syst_JES_EtaIntercalibration_Stat93: 2.82311437e-02 syst_JES_EtaIntercalibration_Stat94: 0.0 syst_JES_EtaIntercalibration_Stat95: 0.0 - syst_JES_EtaIntercalibration_Stat96: 0.0001829911678196519 - syst_JES_EtaIntercalibration_Stat97: 0.002808520384472934 - syst_JES_EtaIntercalibration_Stat98: 0.0004188098852701545 - syst_JES_EtaIntercalibration_Stat99: 0.0004188098852701545 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.03994117948621448 - syst_JES_Flavour_Comp: 1.6367203999156361 - syst_JES_Gjet_Generator: 16.90605808578688 - syst_JES_Gjet_OOC: 9.514363194665211 - syst_JES_Gjet_Purity: 3.6641625520028445 - syst_JES_Gjet_Stat1: 0.00200571483516476 - syst_JES_Gjet_Stat10: 0.44291748291865835 - syst_JES_Gjet_Stat11: 0.2378545353782433 - syst_JES_Gjet_Stat12: 0.048125031701975796 - syst_JES_Gjet_Stat13: 0.005602159672840466 - syst_JES_Gjet_Stat14: 2.3240335614996505e-05 - syst_JES_Gjet_Stat15: 1.8732129405972858e-28 + syst_JES_EtaIntercalibration_Stat96: 1.82991168e-04 + syst_JES_EtaIntercalibration_Stat97: 2.80852038e-03 + syst_JES_EtaIntercalibration_Stat98: 4.18809885e-04 + syst_JES_EtaIntercalibration_Stat99: 4.18809885e-04 + syst_JES_EtaIntercalibration_TotalStat_MJB: 3.99411795e-02 + syst_JES_Flavour_Comp: 1.63672040e+00 + syst_JES_Gjet_Generator: 1.69060581e+01 + syst_JES_Gjet_OOC: 9.51436319e+00 + syst_JES_Gjet_Purity: 3.66416255e+00 + syst_JES_Gjet_Stat1: 2.00571484e-03 + syst_JES_Gjet_Stat10: 4.42917483e-01 + syst_JES_Gjet_Stat11: 2.37854535e-01 + syst_JES_Gjet_Stat12: 4.81250317e-02 + syst_JES_Gjet_Stat13: 5.60215967e-03 + syst_JES_Gjet_Stat14: 2.32403356e-05 + syst_JES_Gjet_Stat15: 1.87321294e-28 syst_JES_Gjet_Stat2: 0.0 - syst_JES_Gjet_Stat3: 0.05442969662785197 - syst_JES_Gjet_Stat4: 0.10168552146200559 - syst_JES_Gjet_Stat5: 0.12480450713015134 - syst_JES_Gjet_Stat6: 0.5180243623614628 - syst_JES_Gjet_Stat7: 1.0895434032198992 - syst_JES_Gjet_Stat8: 0.7236718247935316 - syst_JES_Gjet_Stat9: 0.6874087648553807 - syst_JES_Gjet_Veto: 3.620300065947573 - syst_JES_Gjet_dPhi: 1.6748143180663342 - syst_JES_LArESZee: 12.85172536082218 - syst_JES_LArEsmear: 1.280437300300175 - syst_JES_LAr_JVT: 1.9234133071183634 - syst_JES_MJB_Alpha: 6.3332437778756e-22 - syst_JES_MJB_Asym: 0.0007159431974002229 + syst_JES_Gjet_Stat3: 5.44296966e-02 + syst_JES_Gjet_Stat4: 1.01685521e-01 + syst_JES_Gjet_Stat5: 1.24804507e-01 + syst_JES_Gjet_Stat6: 5.18024362e-01 + syst_JES_Gjet_Stat7: 1.08954340e+00 + syst_JES_Gjet_Stat8: 7.23671825e-01 + syst_JES_Gjet_Stat9: 6.87408765e-01 + syst_JES_Gjet_Veto: 3.62030007e+00 + syst_JES_Gjet_dPhi: 1.67481432e+00 + syst_JES_LArESZee: 1.28517254e+01 + syst_JES_LArEsmear: 1.28043730e+00 + syst_JES_LAr_JVT: 1.92341331e+00 + syst_JES_MJB_Alpha: 6.33324378e-22 + syst_JES_MJB_Asym: 7.15943197e-04 syst_JES_MJB_Beta: 0.0 - syst_JES_MJB_Stat1: 3.0354190402644577e-12 + syst_JES_MJB_Stat1: 3.03541904e-12 syst_JES_MJB_Stat10: 0.0 syst_JES_MJB_Stat11: 0.0 syst_JES_MJB_Stat12: 0.0 @@ -46124,164 +46124,164 @@ bins: syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 0.0027782094953405514 - syst_JES_MJB_Stat3: 6.176493179790617e-05 - syst_JES_MJB_Stat4: 6.4189802928502594e-37 - syst_JES_MJB_Stat5: 3.600067603531912e-17 + syst_JES_MJB_Stat2: 2.77820950e-03 + syst_JES_MJB_Stat3: 6.17649318e-05 + syst_JES_MJB_Stat4: 6.41898029e-37 + syst_JES_MJB_Stat5: 3.60006760e-17 syst_JES_MJB_Stat6: 0.0 syst_JES_MJB_Stat7: 0.0 syst_JES_MJB_Stat8: 0.0 syst_JES_MJB_Stat9: 0.0 - syst_JES_MJB_Threshold: 0.0013705744005707973 - syst_JES_Pileup_MuOffset: 5.7997720965904913e-08 - syst_JES_Pileup_NPVOffset: 0.9551484910735084 - syst_JES_Pileup_Pt_term: 5.575514415728831 - syst_JES_PunchThrough_MC15: 6.235382906866243e-12 + syst_JES_MJB_Threshold: 1.37057440e-03 + syst_JES_Pileup_MuOffset: 5.79977210e-08 + syst_JES_Pileup_NPVOffset: 9.55148491e-01 + syst_JES_Pileup_Pt_term: 5.57551442e+00 + syst_JES_PunchThrough_MC15: 6.23538291e-12 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 14.638370810988496 - syst_JES_Zjet_MuScale: 1.1847046245794772 - syst_JES_Zjet_MuSmearID: 0.20606141681547274 - syst_JES_Zjet_MuSmearMS: 1.045902877900238 - syst_JES_Zjet_OOC: 6.452675937159714 - syst_JES_Zjet_Stat1: 0.09599847954525113 - syst_JES_Zjet_Stat10: 2.134037195083535 - syst_JES_Zjet_Stat11: 0.6995392251332302 - syst_JES_Zjet_Stat12: 0.41818221805810923 - syst_JES_Zjet_Stat13: 0.04840224788168418 - syst_JES_Zjet_Stat2: 0.007196609850670774 - syst_JES_Zjet_Stat3: 2.1295564679059347e-12 - syst_JES_Zjet_Stat4: 0.037524973124573986 - syst_JES_Zjet_Stat5: 0.05656810408702063 - syst_JES_Zjet_Stat6: 0.16378541662797697 - syst_JES_Zjet_Stat7: 0.3219448205826582 - syst_JES_Zjet_Stat8: 0.6529335092488362 - syst_JES_Zjet_Stat9: 1.6088631288894653 - syst_JES_Zjet_Veto: 1.2882181181771972 - syst_JES_Zjet_dPhi: 1.5288487065435874 + syst_JES_Zjet_MC: 1.46383708e+01 + syst_JES_Zjet_MuScale: 1.18470462e+00 + syst_JES_Zjet_MuSmearID: 2.06061417e-01 + syst_JES_Zjet_MuSmearMS: 1.04590288e+00 + syst_JES_Zjet_OOC: 6.45267594e+00 + syst_JES_Zjet_Stat1: 9.59984795e-02 + syst_JES_Zjet_Stat10: 2.13403720e+00 + syst_JES_Zjet_Stat11: 6.99539225e-01 + syst_JES_Zjet_Stat12: 4.18182218e-01 + syst_JES_Zjet_Stat13: 4.84022479e-02 + syst_JES_Zjet_Stat2: 7.19660985e-03 + syst_JES_Zjet_Stat3: 2.12955647e-12 + syst_JES_Zjet_Stat4: 3.75249731e-02 + syst_JES_Zjet_Stat5: 5.65681041e-02 + syst_JES_Zjet_Stat6: 1.63785417e-01 + syst_JES_Zjet_Stat7: 3.21944821e-01 + syst_JES_Zjet_Stat8: 6.52933509e-01 + syst_JES_Zjet_Stat9: 1.60886313e+00 + syst_JES_Zjet_Veto: 1.28821812e+00 + syst_JES_Zjet_dPhi: 1.52884871e+00 syst_PRW: 0.0 syst_Unfolding_bias: 0.0 - syst_cleaning: 3.7074547536011817 + syst_cleaning: 3.70745475e+00 syst_lumi: 15.89 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 17.81202683582079 - syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.031503737663172604 - syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.6874702960348664 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 15.706733428692294 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.040080699105055545 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 6.614522431740632 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 1.78120268e+01 + syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 3.15037377e-02 + syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.68747030e+00 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 1.57067334e+01 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 4.00806991e-02 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 6.61452243e+00 - stat: 3.91 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 6.757851433702874 - syst_JER_NP1: 0.42499494996999665 - syst_JER_NP2: 0.6239323375775614 - syst_JER_NP3: 2.1287973130385147 - syst_JER_NP4: 0.6373366045505311 - syst_JER_NP5: 0.5351976527414894 - syst_JER_NP6: 0.4528386108758837 - syst_JER_NP7: 0.06835081491833145 - syst_JER_NP8: 0.5351384493754864 - syst_JES_EtaIntercalibration_Modelling: 9.767842277084537 - syst_JES_EtaIntercalibration_NonClosure: 9.623821070655875 + syst_JER_NP0: 6.75785143e+00 + syst_JER_NP1: 4.24994950e-01 + syst_JER_NP2: 6.23932338e-01 + syst_JER_NP3: 2.12879731e+00 + syst_JER_NP4: 6.37336605e-01 + syst_JER_NP5: 5.35197653e-01 + syst_JER_NP6: 4.52838611e-01 + syst_JER_NP7: 6.83508149e-02 + syst_JER_NP8: 5.35138449e-01 + syst_JES_EtaIntercalibration_Modelling: 9.76784228e+00 + syst_JES_EtaIntercalibration_NonClosure: 9.62382107e+00 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 2.0672026388334553e-05 + syst_JES_EtaIntercalibration_Stat100: 2.06720264e-05 syst_JES_EtaIntercalibration_Stat101: 0.0 - syst_JES_EtaIntercalibration_Stat102: 0.004756898580745653 - syst_JES_EtaIntercalibration_Stat103: 0.06524405470998872 - syst_JES_EtaIntercalibration_Stat104: 0.15539526215428834 - syst_JES_EtaIntercalibration_Stat105: 0.07613320103607886 - syst_JES_EtaIntercalibration_Stat106: 0.0006756400224971875 + syst_JES_EtaIntercalibration_Stat102: 4.75689858e-03 + syst_JES_EtaIntercalibration_Stat103: 6.52440547e-02 + syst_JES_EtaIntercalibration_Stat104: 1.55395262e-01 + syst_JES_EtaIntercalibration_Stat105: 7.61332010e-02 + syst_JES_EtaIntercalibration_Stat106: 6.75640022e-04 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 0.012363828331063158 + syst_JES_EtaIntercalibration_Stat109: 1.23638283e-02 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 0.3240511379396777 - syst_JES_EtaIntercalibration_Stat111: 0.8684934124678206 - syst_JES_EtaIntercalibration_Stat112: 0.5241871302311799 - syst_JES_EtaIntercalibration_Stat113: 0.0377231920540932 - syst_JES_EtaIntercalibration_Stat114: 0.00018870693548462918 + syst_JES_EtaIntercalibration_Stat110: 3.24051138e-01 + syst_JES_EtaIntercalibration_Stat111: 8.68493412e-01 + syst_JES_EtaIntercalibration_Stat112: 5.24187130e-01 + syst_JES_EtaIntercalibration_Stat113: 3.77231921e-02 + syst_JES_EtaIntercalibration_Stat114: 1.88706935e-04 syst_JES_EtaIntercalibration_Stat115: 0.0 - syst_JES_EtaIntercalibration_Stat116: 0.01695677740609931 - syst_JES_EtaIntercalibration_Stat117: 0.005953058625614231 - syst_JES_EtaIntercalibration_Stat118: 2.0672026388334553e-05 - syst_JES_EtaIntercalibration_Stat119: 2.0672026388334553e-05 + syst_JES_EtaIntercalibration_Stat116: 1.69567774e-02 + syst_JES_EtaIntercalibration_Stat117: 5.95305863e-03 + syst_JES_EtaIntercalibration_Stat118: 2.06720264e-05 + syst_JES_EtaIntercalibration_Stat119: 2.06720264e-05 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 2.0672026388334553e-05 - syst_JES_EtaIntercalibration_Stat121: 0.0004230534097486983 - syst_JES_EtaIntercalibration_Stat122: 0.04553638545163636 - syst_JES_EtaIntercalibration_Stat123: 0.4818392548350539 - syst_JES_EtaIntercalibration_Stat124: 0.8340286805620056 - syst_JES_EtaIntercalibration_Stat125: 0.3837711134256981 - syst_JES_EtaIntercalibration_Stat126: 0.003776639908701914 + syst_JES_EtaIntercalibration_Stat120: 2.06720264e-05 + syst_JES_EtaIntercalibration_Stat121: 4.23053410e-04 + syst_JES_EtaIntercalibration_Stat122: 4.55363855e-02 + syst_JES_EtaIntercalibration_Stat123: 4.81839255e-01 + syst_JES_EtaIntercalibration_Stat124: 8.34028681e-01 + syst_JES_EtaIntercalibration_Stat125: 3.83771113e-01 + syst_JES_EtaIntercalibration_Stat126: 3.77663991e-03 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 0.012284585982034558 - syst_JES_EtaIntercalibration_Stat129: 1.2117084498756292 + syst_JES_EtaIntercalibration_Stat128: 1.22845860e-02 + syst_JES_EtaIntercalibration_Stat129: 1.21170845e+00 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 3.312176135111175 - syst_JES_EtaIntercalibration_Stat131: 0.9708029305683002 - syst_JES_EtaIntercalibration_Stat132: 0.10990693915763462 - syst_JES_EtaIntercalibration_Stat133: 0.0008080488165946411 + syst_JES_EtaIntercalibration_Stat130: 3.31217614e+00 + syst_JES_EtaIntercalibration_Stat131: 9.70802931e-01 + syst_JES_EtaIntercalibration_Stat132: 1.09906939e-01 + syst_JES_EtaIntercalibration_Stat133: 8.08048817e-04 syst_JES_EtaIntercalibration_Stat134: 0.0 - syst_JES_EtaIntercalibration_Stat135: 0.01695677740609931 - syst_JES_EtaIntercalibration_Stat136: 0.01695677740609931 - syst_JES_EtaIntercalibration_Stat137: 2.0672026388334553e-05 - syst_JES_EtaIntercalibration_Stat138: 2.0672026388334553e-05 - syst_JES_EtaIntercalibration_Stat139: 2.0672026388334553e-05 + syst_JES_EtaIntercalibration_Stat135: 1.69567774e-02 + syst_JES_EtaIntercalibration_Stat136: 1.69567774e-02 + syst_JES_EtaIntercalibration_Stat137: 2.06720264e-05 + syst_JES_EtaIntercalibration_Stat138: 2.06720264e-05 + syst_JES_EtaIntercalibration_Stat139: 2.06720264e-05 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 0.0006664065482121256 - syst_JES_EtaIntercalibration_Stat141: 0.1321271368795979 - syst_JES_EtaIntercalibration_Stat142: 0.7713723274139408 - syst_JES_EtaIntercalibration_Stat143: 2.3725329818571543 - syst_JES_EtaIntercalibration_Stat144: 1.293824667410542 - syst_JES_EtaIntercalibration_Stat145: 0.021606936918499114 - syst_JES_EtaIntercalibration_Stat146: 0.007401636221133811 - syst_JES_EtaIntercalibration_Stat147: 0.1764452155061168 - syst_JES_EtaIntercalibration_Stat148: 0.3341533864484991 - syst_JES_EtaIntercalibration_Stat149: 0.1648050723582257 + syst_JES_EtaIntercalibration_Stat140: 6.66406548e-04 + syst_JES_EtaIntercalibration_Stat141: 1.32127137e-01 + syst_JES_EtaIntercalibration_Stat142: 7.71372327e-01 + syst_JES_EtaIntercalibration_Stat143: 2.37253298e+00 + syst_JES_EtaIntercalibration_Stat144: 1.29382467e+00 + syst_JES_EtaIntercalibration_Stat145: 2.16069369e-02 + syst_JES_EtaIntercalibration_Stat146: 7.40163622e-03 + syst_JES_EtaIntercalibration_Stat147: 1.76445216e-01 + syst_JES_EtaIntercalibration_Stat148: 3.34153386e-01 + syst_JES_EtaIntercalibration_Stat149: 1.64805072e-01 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 0.015016752203788938 - syst_JES_EtaIntercalibration_Stat151: 0.0001921710371560297 + syst_JES_EtaIntercalibration_Stat150: 1.50167522e-02 + syst_JES_EtaIntercalibration_Stat151: 1.92171037e-04 syst_JES_EtaIntercalibration_Stat152: 0.0 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 2.0672026388334553e-05 + syst_JES_EtaIntercalibration_Stat156: 2.06720264e-05 syst_JES_EtaIntercalibration_Stat157: 0.0 syst_JES_EtaIntercalibration_Stat158: 0.0 - syst_JES_EtaIntercalibration_Stat159: 0.03298407911402105 - syst_JES_EtaIntercalibration_Stat16: 0.0003702383452588346 - syst_JES_EtaIntercalibration_Stat160: 0.19191855876907787 - syst_JES_EtaIntercalibration_Stat161: 0.374712556501647 - syst_JES_EtaIntercalibration_Stat162: 0.11699994049143786 - syst_JES_EtaIntercalibration_Stat163: 0.0014508648041771503 - syst_JES_EtaIntercalibration_Stat164: 0.004858522692135953 - syst_JES_EtaIntercalibration_Stat165: 0.06316325286113754 - syst_JES_EtaIntercalibration_Stat166: 0.14374584341816637 - syst_JES_EtaIntercalibration_Stat167: 0.04096824501977111 - syst_JES_EtaIntercalibration_Stat168: 0.015696086797351752 - syst_JES_EtaIntercalibration_Stat169: 0.0001921710371560297 - syst_JES_EtaIntercalibration_Stat17: 0.0005694372952195878 + syst_JES_EtaIntercalibration_Stat159: 3.29840791e-02 + syst_JES_EtaIntercalibration_Stat16: 3.70238345e-04 + syst_JES_EtaIntercalibration_Stat160: 1.91918559e-01 + syst_JES_EtaIntercalibration_Stat161: 3.74712557e-01 + syst_JES_EtaIntercalibration_Stat162: 1.16999940e-01 + syst_JES_EtaIntercalibration_Stat163: 1.45086480e-03 + syst_JES_EtaIntercalibration_Stat164: 4.85852269e-03 + syst_JES_EtaIntercalibration_Stat165: 6.31632529e-02 + syst_JES_EtaIntercalibration_Stat166: 1.43745843e-01 + syst_JES_EtaIntercalibration_Stat167: 4.09682450e-02 + syst_JES_EtaIntercalibration_Stat168: 1.56960868e-02 + syst_JES_EtaIntercalibration_Stat169: 1.92171037e-04 + syst_JES_EtaIntercalibration_Stat17: 5.69437295e-04 syst_JES_EtaIntercalibration_Stat170: 0.0 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 syst_JES_EtaIntercalibration_Stat175: 0.0 - syst_JES_EtaIntercalibration_Stat176: 1.8021988652754169e-06 - syst_JES_EtaIntercalibration_Stat177: 0.007046848710593978 - syst_JES_EtaIntercalibration_Stat178: 0.03298991664130117 - syst_JES_EtaIntercalibration_Stat179: 0.09454841021931569 - syst_JES_EtaIntercalibration_Stat18: 9.776902628133308e-06 - syst_JES_EtaIntercalibration_Stat180: 0.05023175489667866 - syst_JES_EtaIntercalibration_Stat181: 0.004846278159577719 - syst_JES_EtaIntercalibration_Stat182: 0.02837996828750871 - syst_JES_EtaIntercalibration_Stat183: 0.06438718408969288 - syst_JES_EtaIntercalibration_Stat184: 0.025855975614932806 - syst_JES_EtaIntercalibration_Stat185: 0.00404087527647167 - syst_JES_EtaIntercalibration_Stat186: 1.6878835119758712e-13 + syst_JES_EtaIntercalibration_Stat176: 1.80219887e-06 + syst_JES_EtaIntercalibration_Stat177: 7.04684871e-03 + syst_JES_EtaIntercalibration_Stat178: 3.29899166e-02 + syst_JES_EtaIntercalibration_Stat179: 9.45484102e-02 + syst_JES_EtaIntercalibration_Stat18: 9.77690263e-06 + syst_JES_EtaIntercalibration_Stat180: 5.02317549e-02 + syst_JES_EtaIntercalibration_Stat181: 4.84627816e-03 + syst_JES_EtaIntercalibration_Stat182: 2.83799683e-02 + syst_JES_EtaIntercalibration_Stat183: 6.43871841e-02 + syst_JES_EtaIntercalibration_Stat184: 2.58559756e-02 + syst_JES_EtaIntercalibration_Stat185: 4.04087528e-03 + syst_JES_EtaIntercalibration_Stat186: 1.68788351e-13 syst_JES_EtaIntercalibration_Stat187: 0.0 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 @@ -46289,31 +46289,31 @@ bins: syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 syst_JES_EtaIntercalibration_Stat192: 0.0 - syst_JES_EtaIntercalibration_Stat193: 3.3859755507091305e-05 - syst_JES_EtaIntercalibration_Stat194: 0.0010408901707192743 - syst_JES_EtaIntercalibration_Stat195: 0.022197082578573248 - syst_JES_EtaIntercalibration_Stat196: 0.05369617002170639 - syst_JES_EtaIntercalibration_Stat197: 0.02525142467267936 - syst_JES_EtaIntercalibration_Stat198: 0.0016093137264063832 - syst_JES_EtaIntercalibration_Stat199: 0.0007019556164744321 + syst_JES_EtaIntercalibration_Stat193: 3.38597555e-05 + syst_JES_EtaIntercalibration_Stat194: 1.04089017e-03 + syst_JES_EtaIntercalibration_Stat195: 2.21970826e-02 + syst_JES_EtaIntercalibration_Stat196: 5.36961700e-02 + syst_JES_EtaIntercalibration_Stat197: 2.52514247e-02 + syst_JES_EtaIntercalibration_Stat198: 1.60931373e-03 + syst_JES_EtaIntercalibration_Stat199: 7.01955616e-04 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 6.694033149204408e-05 - syst_JES_EtaIntercalibration_Stat201: 1.6878835119758712e-13 + syst_JES_EtaIntercalibration_Stat200: 6.69403315e-05 + syst_JES_EtaIntercalibration_Stat201: 1.68788351e-13 syst_JES_EtaIntercalibration_Stat202: 0.0 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 syst_JES_EtaIntercalibration_Stat207: 0.0 - syst_JES_EtaIntercalibration_Stat208: 1.3172246391561313e-22 - syst_JES_EtaIntercalibration_Stat209: 1.467045985834421e-20 + syst_JES_EtaIntercalibration_Stat208: 1.31722464e-22 + syst_JES_EtaIntercalibration_Stat209: 1.46704599e-20 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 0.00019184676176573843 - syst_JES_EtaIntercalibration_Stat211: 0.000989698159794187 - syst_JES_EtaIntercalibration_Stat212: 8.992268679677004e-08 - syst_JES_EtaIntercalibration_Stat213: 1.7485052902407819e-12 - syst_JES_EtaIntercalibration_Stat214: 1.6878835119758712e-13 + syst_JES_EtaIntercalibration_Stat210: 1.91846762e-04 + syst_JES_EtaIntercalibration_Stat211: 9.89698160e-04 + syst_JES_EtaIntercalibration_Stat212: 8.99226868e-08 + syst_JES_EtaIntercalibration_Stat213: 1.74850529e-12 + syst_JES_EtaIntercalibration_Stat214: 1.68788351e-13 syst_JES_EtaIntercalibration_Stat215: 0.0 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 @@ -46322,10 +46322,10 @@ bins: syst_JES_EtaIntercalibration_Stat22: 0.0 syst_JES_EtaIntercalibration_Stat220: 0.0 syst_JES_EtaIntercalibration_Stat221: 0.0 - syst_JES_EtaIntercalibration_Stat222: 1.4012291033232216e-26 - syst_JES_EtaIntercalibration_Stat223: 2.5644997619845374e-06 - syst_JES_EtaIntercalibration_Stat224: 5.868822911388712e-17 - syst_JES_EtaIntercalibration_Stat225: 2.524114498195357e-22 + syst_JES_EtaIntercalibration_Stat222: 1.40122910e-26 + syst_JES_EtaIntercalibration_Stat223: 2.56449976e-06 + syst_JES_EtaIntercalibration_Stat224: 5.86882291e-17 + syst_JES_EtaIntercalibration_Stat225: 2.52411450e-22 syst_JES_EtaIntercalibration_Stat226: 0.0 syst_JES_EtaIntercalibration_Stat227: 0.0 syst_JES_EtaIntercalibration_Stat228: 0.0 @@ -46335,295 +46335,295 @@ bins: syst_JES_EtaIntercalibration_Stat231: 0.0 syst_JES_EtaIntercalibration_Stat232: 0.0 syst_JES_EtaIntercalibration_Stat233: 0.0 - syst_JES_EtaIntercalibration_Stat234: 2.892524848640025e-22 - syst_JES_EtaIntercalibration_Stat235: 1.4912957453168032e-13 + syst_JES_EtaIntercalibration_Stat234: 2.89252485e-22 + syst_JES_EtaIntercalibration_Stat235: 1.49129575e-13 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 syst_JES_EtaIntercalibration_Stat239: 0.0 - syst_JES_EtaIntercalibration_Stat24: 5.47674465353279e-05 + syst_JES_EtaIntercalibration_Stat24: 5.47674465e-05 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 syst_JES_EtaIntercalibration_Stat243: 0.0 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 - syst_JES_EtaIntercalibration_Stat25: 0.0009297910128087923 - syst_JES_EtaIntercalibration_Stat26: 0.007153711257102848 - syst_JES_EtaIntercalibration_Stat27: 0.0017508985885824455 - syst_JES_EtaIntercalibration_Stat28: 0.0004910650050655208 + syst_JES_EtaIntercalibration_Stat25: 9.29791013e-04 + syst_JES_EtaIntercalibration_Stat26: 7.15371126e-03 + syst_JES_EtaIntercalibration_Stat27: 1.75089859e-03 + syst_JES_EtaIntercalibration_Stat28: 4.91065005e-04 syst_JES_EtaIntercalibration_Stat29: 0.0 - syst_JES_EtaIntercalibration_Stat3: 0.00012293328221031112 + syst_JES_EtaIntercalibration_Stat3: 1.22933282e-04 syst_JES_EtaIntercalibration_Stat30: 0.0 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 0.0006547152052610356 - syst_JES_EtaIntercalibration_Stat36: 0.0006547152052610356 - syst_JES_EtaIntercalibration_Stat37: 0.0005121172290599097 - syst_JES_EtaIntercalibration_Stat38: 0.00124390092350637 - syst_JES_EtaIntercalibration_Stat39: 0.0034260334481000035 - syst_JES_EtaIntercalibration_Stat4: 0.0006302493648350627 - syst_JES_EtaIntercalibration_Stat40: 0.0021973584323000195 + syst_JES_EtaIntercalibration_Stat35: 6.54715205e-04 + syst_JES_EtaIntercalibration_Stat36: 6.54715205e-04 + syst_JES_EtaIntercalibration_Stat37: 5.12117229e-04 + syst_JES_EtaIntercalibration_Stat38: 1.24390092e-03 + syst_JES_EtaIntercalibration_Stat39: 3.42603345e-03 + syst_JES_EtaIntercalibration_Stat4: 6.30249365e-04 + syst_JES_EtaIntercalibration_Stat40: 2.19735843e-03 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 syst_JES_EtaIntercalibration_Stat44: 0.0 syst_JES_EtaIntercalibration_Stat45: 0.0 - syst_JES_EtaIntercalibration_Stat46: 0.00015521461368054232 - syst_JES_EtaIntercalibration_Stat47: 0.004145896646082727 - syst_JES_EtaIntercalibration_Stat48: 0.011486830502797541 - syst_JES_EtaIntercalibration_Stat49: 0.003393768225365427 - syst_JES_EtaIntercalibration_Stat5: 0.0006277611169449729 - syst_JES_EtaIntercalibration_Stat50: 0.0009225078251700633 + syst_JES_EtaIntercalibration_Stat46: 1.55214614e-04 + syst_JES_EtaIntercalibration_Stat47: 4.14589665e-03 + syst_JES_EtaIntercalibration_Stat48: 1.14868305e-02 + syst_JES_EtaIntercalibration_Stat49: 3.39376823e-03 + syst_JES_EtaIntercalibration_Stat5: 6.27761117e-04 + syst_JES_EtaIntercalibration_Stat50: 9.22507825e-04 syst_JES_EtaIntercalibration_Stat51: 0.0 syst_JES_EtaIntercalibration_Stat52: 0.0 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 2.0672026388334553e-05 - syst_JES_EtaIntercalibration_Stat57: 0.0006547152052610356 - syst_JES_EtaIntercalibration_Stat58: 0.0006547152052610356 - syst_JES_EtaIntercalibration_Stat59: 0.0007709784481423589 + syst_JES_EtaIntercalibration_Stat56: 2.06720264e-05 + syst_JES_EtaIntercalibration_Stat57: 6.54715205e-04 + syst_JES_EtaIntercalibration_Stat58: 6.54715205e-04 + syst_JES_EtaIntercalibration_Stat59: 7.70978448e-04 syst_JES_EtaIntercalibration_Stat6: 0.0 - syst_JES_EtaIntercalibration_Stat60: 0.002585687155148511 - syst_JES_EtaIntercalibration_Stat61: 0.00868437055652711 - syst_JES_EtaIntercalibration_Stat62: 0.00572434546476713 - syst_JES_EtaIntercalibration_Stat63: 7.575168659429306e-05 + syst_JES_EtaIntercalibration_Stat60: 2.58568716e-03 + syst_JES_EtaIntercalibration_Stat61: 8.68437056e-03 + syst_JES_EtaIntercalibration_Stat62: 5.72434546e-03 + syst_JES_EtaIntercalibration_Stat63: 7.57516866e-05 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 0.0005216600497450422 - syst_JES_EtaIntercalibration_Stat69: 0.03462378316634391 + syst_JES_EtaIntercalibration_Stat68: 5.21660050e-04 + syst_JES_EtaIntercalibration_Stat69: 3.46237832e-02 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 0.06966784839508107 - syst_JES_EtaIntercalibration_Stat71: 0.013946886821079463 - syst_JES_EtaIntercalibration_Stat72: 0.0036984583274656483 + syst_JES_EtaIntercalibration_Stat70: 6.96678484e-02 + syst_JES_EtaIntercalibration_Stat71: 1.39468868e-02 + syst_JES_EtaIntercalibration_Stat72: 3.69845833e-03 syst_JES_EtaIntercalibration_Stat73: 0.0 syst_JES_EtaIntercalibration_Stat74: 0.0 syst_JES_EtaIntercalibration_Stat75: 0.0 - syst_JES_EtaIntercalibration_Stat76: 0.0004133539252263126 - syst_JES_EtaIntercalibration_Stat77: 2.0672026388334553e-05 - syst_JES_EtaIntercalibration_Stat78: 2.0672026388334553e-05 - syst_JES_EtaIntercalibration_Stat79: 0.0006547152052610356 + syst_JES_EtaIntercalibration_Stat76: 4.13353925e-04 + syst_JES_EtaIntercalibration_Stat77: 2.06720264e-05 + syst_JES_EtaIntercalibration_Stat78: 2.06720264e-05 + syst_JES_EtaIntercalibration_Stat79: 6.54715205e-04 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 0.0006601711653048776 - syst_JES_EtaIntercalibration_Stat81: 0.0011050401893143978 - syst_JES_EtaIntercalibration_Stat82: 0.023171628141975695 - syst_JES_EtaIntercalibration_Stat83: 0.05566820165049344 - syst_JES_EtaIntercalibration_Stat84: 0.0177025446405312 - syst_JES_EtaIntercalibration_Stat85: 9.386993807923813e-05 + syst_JES_EtaIntercalibration_Stat80: 6.60171165e-04 + syst_JES_EtaIntercalibration_Stat81: 1.10504019e-03 + syst_JES_EtaIntercalibration_Stat82: 2.31716281e-02 + syst_JES_EtaIntercalibration_Stat83: 5.56682017e-02 + syst_JES_EtaIntercalibration_Stat84: 1.77025446e-02 + syst_JES_EtaIntercalibration_Stat85: 9.38699381e-05 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 0.0007614475753458015 + syst_JES_EtaIntercalibration_Stat89: 7.61447575e-04 syst_JES_EtaIntercalibration_Stat9: 0.0 - syst_JES_EtaIntercalibration_Stat90: 0.05475616198200893 - syst_JES_EtaIntercalibration_Stat91: 0.16753017250632796 - syst_JES_EtaIntercalibration_Stat92: 0.08017527798517445 - syst_JES_EtaIntercalibration_Stat93: 0.00837021008483658 + syst_JES_EtaIntercalibration_Stat90: 5.47561620e-02 + syst_JES_EtaIntercalibration_Stat91: 1.67530173e-01 + syst_JES_EtaIntercalibration_Stat92: 8.01752780e-02 + syst_JES_EtaIntercalibration_Stat93: 8.37021008e-03 syst_JES_EtaIntercalibration_Stat94: 0.0 syst_JES_EtaIntercalibration_Stat95: 0.0 - syst_JES_EtaIntercalibration_Stat96: 0.005953058625614231 - syst_JES_EtaIntercalibration_Stat97: 0.0004133539252263126 - syst_JES_EtaIntercalibration_Stat98: 2.0672026388334553e-05 - syst_JES_EtaIntercalibration_Stat99: 2.0672026388334553e-05 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.04901233646346091 - syst_JES_Flavour_Comp: 0.7119940870540991 - syst_JES_Gjet_Generator: 8.595433555091914 - syst_JES_Gjet_OOC: 4.765510255995679 - syst_JES_Gjet_Purity: 1.6653849404867331 - syst_JES_Gjet_Stat1: 0.002941022271251954 - syst_JES_Gjet_Stat10: 0.31974867798788476 - syst_JES_Gjet_Stat11: 0.10007035062894504 - syst_JES_Gjet_Stat12: 0.061860293348716615 - syst_JES_Gjet_Stat13: 0.020045767633094024 - syst_JES_Gjet_Stat14: 0.00028911257654891116 - syst_JES_Gjet_Stat15: 5.178829252763e-20 + syst_JES_EtaIntercalibration_Stat96: 5.95305863e-03 + syst_JES_EtaIntercalibration_Stat97: 4.13353925e-04 + syst_JES_EtaIntercalibration_Stat98: 2.06720264e-05 + syst_JES_EtaIntercalibration_Stat99: 2.06720264e-05 + syst_JES_EtaIntercalibration_TotalStat_MJB: 4.90123365e-02 + syst_JES_Flavour_Comp: 7.11994087e-01 + syst_JES_Gjet_Generator: 8.59543356e+00 + syst_JES_Gjet_OOC: 4.76551026e+00 + syst_JES_Gjet_Purity: 1.66538494e+00 + syst_JES_Gjet_Stat1: 2.94102227e-03 + syst_JES_Gjet_Stat10: 3.19748678e-01 + syst_JES_Gjet_Stat11: 1.00070351e-01 + syst_JES_Gjet_Stat12: 6.18602933e-02 + syst_JES_Gjet_Stat13: 2.00457676e-02 + syst_JES_Gjet_Stat14: 2.89112577e-04 + syst_JES_Gjet_Stat15: 5.17882925e-20 syst_JES_Gjet_Stat2: 0.0 - syst_JES_Gjet_Stat3: 0.007811549142135637 - syst_JES_Gjet_Stat4: 0.015076514542492902 - syst_JES_Gjet_Stat5: 0.039742561568172734 - syst_JES_Gjet_Stat6: 0.1568120265636536 - syst_JES_Gjet_Stat7: 0.3755837057168482 - syst_JES_Gjet_Stat8: 0.30909019719169356 - syst_JES_Gjet_Stat9: 0.41231098396719923 - syst_JES_Gjet_Veto: 1.8705822622916106 - syst_JES_Gjet_dPhi: 0.7092102791133248 - syst_JES_LArESZee: 7.372804215493586 - syst_JES_LArEsmear: 0.6467101881832387 - syst_JES_LAr_JVT: 1.0157660200558 - syst_JES_MJB_Alpha: 2.908113305908145e-15 - syst_JES_MJB_Asym: 0.0004119400714324393 + syst_JES_Gjet_Stat3: 7.81154914e-03 + syst_JES_Gjet_Stat4: 1.50765145e-02 + syst_JES_Gjet_Stat5: 3.97425616e-02 + syst_JES_Gjet_Stat6: 1.56812027e-01 + syst_JES_Gjet_Stat7: 3.75583706e-01 + syst_JES_Gjet_Stat8: 3.09090197e-01 + syst_JES_Gjet_Stat9: 4.12310984e-01 + syst_JES_Gjet_Veto: 1.87058226e+00 + syst_JES_Gjet_dPhi: 7.09210279e-01 + syst_JES_LArESZee: 7.37280422e+00 + syst_JES_LArEsmear: 6.46710188e-01 + syst_JES_LAr_JVT: 1.01576602e+00 + syst_JES_MJB_Alpha: 2.90811331e-15 + syst_JES_MJB_Asym: 4.11940071e-04 syst_JES_MJB_Beta: 0.0 - syst_JES_MJB_Stat1: 2.191910296978414e-08 + syst_JES_MJB_Stat1: 2.19191030e-08 syst_JES_MJB_Stat10: 0.0 - syst_JES_MJB_Stat11: 1.2973060548690891e-35 + syst_JES_MJB_Stat11: 1.29730605e-35 syst_JES_MJB_Stat12: 0.0 syst_JES_MJB_Stat13: 0.0 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 0.0034252170849578727 - syst_JES_MJB_Stat3: 0.00019771359968091525 - syst_JES_MJB_Stat4: 2.1936423477859832e-26 - syst_JES_MJB_Stat5: 5.200482549725555e-12 + syst_JES_MJB_Stat2: 3.42521708e-03 + syst_JES_MJB_Stat3: 1.97713600e-04 + syst_JES_MJB_Stat4: 2.19364235e-26 + syst_JES_MJB_Stat5: 5.20048255e-12 syst_JES_MJB_Stat6: 0.0 syst_JES_MJB_Stat7: 0.0 syst_JES_MJB_Stat8: 0.0 syst_JES_MJB_Stat9: 0.0 - syst_JES_MJB_Threshold: 0.0009381353900157483 - syst_JES_Pileup_MuOffset: 3.214681596357409e-05 - syst_JES_Pileup_NPVOffset: 0.4293731098939476 - syst_JES_Pileup_Pt_term: 2.6003407469022206 - syst_JES_PunchThrough_MC15: 4.5024658989917815e-08 + syst_JES_MJB_Threshold: 9.38135390e-04 + syst_JES_Pileup_MuOffset: 3.21468160e-05 + syst_JES_Pileup_NPVOffset: 4.29373110e-01 + syst_JES_Pileup_Pt_term: 2.60034075e+00 + syst_JES_PunchThrough_MC15: 4.50246590e-08 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 7.604991568042663 - syst_JES_Zjet_MuScale: 0.5422309540223612 - syst_JES_Zjet_MuSmearID: 0.10239446176429659 - syst_JES_Zjet_MuSmearMS: 0.5932304864047363 - syst_JES_Zjet_OOC: 2.8119251412510966 - syst_JES_Zjet_Stat1: 0.03732067527524121 - syst_JES_Zjet_Stat10: 1.1186685031768795 - syst_JES_Zjet_Stat11: 0.598632798550163 - syst_JES_Zjet_Stat12: 0.17798395341996423 - syst_JES_Zjet_Stat13: 0.05050783181844178 - syst_JES_Zjet_Stat2: 0.0037041224438556296 - syst_JES_Zjet_Stat3: 1.5380611171211632e-08 - syst_JES_Zjet_Stat4: 0.005584237272895914 - syst_JES_Zjet_Stat5: 0.007988139896120999 - syst_JES_Zjet_Stat6: 0.05636627604339318 - syst_JES_Zjet_Stat7: 0.10585636057885232 - syst_JES_Zjet_Stat8: 0.20961278586956475 - syst_JES_Zjet_Stat9: 0.6083098121023529 - syst_JES_Zjet_Veto: 0.5738921915307786 - syst_JES_Zjet_dPhi: 0.7071586172846936 + syst_JES_Zjet_MC: 7.60499157e+00 + syst_JES_Zjet_MuScale: 5.42230954e-01 + syst_JES_Zjet_MuSmearID: 1.02394462e-01 + syst_JES_Zjet_MuSmearMS: 5.93230486e-01 + syst_JES_Zjet_OOC: 2.81192514e+00 + syst_JES_Zjet_Stat1: 3.73206753e-02 + syst_JES_Zjet_Stat10: 1.11866850e+00 + syst_JES_Zjet_Stat11: 5.98632799e-01 + syst_JES_Zjet_Stat12: 1.77983953e-01 + syst_JES_Zjet_Stat13: 5.05078318e-02 + syst_JES_Zjet_Stat2: 3.70412244e-03 + syst_JES_Zjet_Stat3: 1.53806112e-08 + syst_JES_Zjet_Stat4: 5.58423727e-03 + syst_JES_Zjet_Stat5: 7.98813990e-03 + syst_JES_Zjet_Stat6: 5.63662760e-02 + syst_JES_Zjet_Stat7: 1.05856361e-01 + syst_JES_Zjet_Stat8: 2.09612786e-01 + syst_JES_Zjet_Stat9: 6.08309812e-01 + syst_JES_Zjet_Veto: 5.73892192e-01 + syst_JES_Zjet_dPhi: 7.07158617e-01 syst_PRW: 0.0 syst_Unfolding_bias: 0.0 - syst_cleaning: 2.0611404610069637 + syst_cleaning: 2.06114046e+00 syst_lumi: 8.187 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 8.884032530332158 - syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.03813071563713433 - syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.7546554230243099 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 7.835028717241565 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.04903514440429436 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 2.9788061366930205 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 8.88403253e+00 + syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 3.81307156e-02 + syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 7.54655423e-01 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 7.83502872e+00 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 4.90351444e-02 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 2.97880614e+00 - stat: 1.7133 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 3.228914368638475 - syst_JER_NP1: 0.29707589939273094 - syst_JER_NP2: 0.31978227014642324 - syst_JER_NP3: 0.9860124276600168 - syst_JER_NP4: 0.27563172440776845 - syst_JER_NP5: 0.26405000946790363 - syst_JER_NP6: 0.24015896298077236 - syst_JER_NP7: 0.007484234630207688 - syst_JER_NP8: 0.27376141072108756 - syst_JES_EtaIntercalibration_Modelling: 5.482503693569207 - syst_JES_EtaIntercalibration_NonClosure: 3.7373630115363423 + syst_JER_NP0: 3.22891437e+00 + syst_JER_NP1: 2.97075899e-01 + syst_JER_NP2: 3.19782270e-01 + syst_JER_NP3: 9.86012428e-01 + syst_JER_NP4: 2.75631724e-01 + syst_JER_NP5: 2.64050009e-01 + syst_JER_NP6: 2.40158963e-01 + syst_JER_NP7: 7.48423463e-03 + syst_JER_NP8: 2.73761411e-01 + syst_JES_EtaIntercalibration_Modelling: 5.48250369e+00 + syst_JES_EtaIntercalibration_NonClosure: 3.73736301e+00 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 9.181601330922619e-07 + syst_JES_EtaIntercalibration_Stat100: 9.18160133e-07 syst_JES_EtaIntercalibration_Stat101: 0.0 - syst_JES_EtaIntercalibration_Stat102: 0.000743660169365013 - syst_JES_EtaIntercalibration_Stat103: 0.007410531070712814 - syst_JES_EtaIntercalibration_Stat104: 0.0353073675031147 - syst_JES_EtaIntercalibration_Stat105: 0.013918314939316468 - syst_JES_EtaIntercalibration_Stat106: 0.0002841651943412493 + syst_JES_EtaIntercalibration_Stat102: 7.43660169e-04 + syst_JES_EtaIntercalibration_Stat103: 7.41053107e-03 + syst_JES_EtaIntercalibration_Stat104: 3.53073675e-02 + syst_JES_EtaIntercalibration_Stat105: 1.39183149e-02 + syst_JES_EtaIntercalibration_Stat106: 2.84165194e-04 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 0.004911751496920421 + syst_JES_EtaIntercalibration_Stat109: 4.91175150e-03 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 0.09952993167886734 - syst_JES_EtaIntercalibration_Stat111: 0.2897287697140206 - syst_JES_EtaIntercalibration_Stat112: 0.17310929351135368 - syst_JES_EtaIntercalibration_Stat113: 0.007232916631622405 - syst_JES_EtaIntercalibration_Stat114: 0.0005525242076144718 + syst_JES_EtaIntercalibration_Stat110: 9.95299317e-02 + syst_JES_EtaIntercalibration_Stat111: 2.89728770e-01 + syst_JES_EtaIntercalibration_Stat112: 1.73109294e-01 + syst_JES_EtaIntercalibration_Stat113: 7.23291663e-03 + syst_JES_EtaIntercalibration_Stat114: 5.52524208e-04 syst_JES_EtaIntercalibration_Stat115: 0.0 - syst_JES_EtaIntercalibration_Stat116: 0.008814406559718017 - syst_JES_EtaIntercalibration_Stat117: 0.005006492859277839 - syst_JES_EtaIntercalibration_Stat118: 9.181601330922619e-07 - syst_JES_EtaIntercalibration_Stat119: 9.181601330922619e-07 + syst_JES_EtaIntercalibration_Stat116: 8.81440656e-03 + syst_JES_EtaIntercalibration_Stat117: 5.00649286e-03 + syst_JES_EtaIntercalibration_Stat118: 9.18160133e-07 + syst_JES_EtaIntercalibration_Stat119: 9.18160133e-07 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 9.181601330922619e-07 - syst_JES_EtaIntercalibration_Stat121: 0.00011535458378408724 - syst_JES_EtaIntercalibration_Stat122: 0.013619217185653511 - syst_JES_EtaIntercalibration_Stat123: 0.16591693704983826 - syst_JES_EtaIntercalibration_Stat124: 0.26904677567293017 - syst_JES_EtaIntercalibration_Stat125: 0.1159678278661802 - syst_JES_EtaIntercalibration_Stat126: 0.0010479666033204492 + syst_JES_EtaIntercalibration_Stat120: 9.18160133e-07 + syst_JES_EtaIntercalibration_Stat121: 1.15354584e-04 + syst_JES_EtaIntercalibration_Stat122: 1.36192172e-02 + syst_JES_EtaIntercalibration_Stat123: 1.65916937e-01 + syst_JES_EtaIntercalibration_Stat124: 2.69046776e-01 + syst_JES_EtaIntercalibration_Stat125: 1.15967828e-01 + syst_JES_EtaIntercalibration_Stat126: 1.04796660e-03 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 0.00603653979942152 - syst_JES_EtaIntercalibration_Stat129: 0.6852302149642848 + syst_JES_EtaIntercalibration_Stat128: 6.03653980e-03 + syst_JES_EtaIntercalibration_Stat129: 6.85230215e-01 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 1.5966316889001047 - syst_JES_EtaIntercalibration_Stat131: 0.5457236113638478 - syst_JES_EtaIntercalibration_Stat132: 0.05329195811752464 - syst_JES_EtaIntercalibration_Stat133: 0.0016889142162940071 + syst_JES_EtaIntercalibration_Stat130: 1.59663169e+00 + syst_JES_EtaIntercalibration_Stat131: 5.45723611e-01 + syst_JES_EtaIntercalibration_Stat132: 5.32919581e-02 + syst_JES_EtaIntercalibration_Stat133: 1.68891422e-03 syst_JES_EtaIntercalibration_Stat134: 0.0 - syst_JES_EtaIntercalibration_Stat135: 0.008814406559718017 - syst_JES_EtaIntercalibration_Stat136: 0.008814406559718017 - syst_JES_EtaIntercalibration_Stat137: 9.181601330922619e-07 - syst_JES_EtaIntercalibration_Stat138: 9.181601330922619e-07 - syst_JES_EtaIntercalibration_Stat139: 9.181601330922619e-07 + syst_JES_EtaIntercalibration_Stat135: 8.81440656e-03 + syst_JES_EtaIntercalibration_Stat136: 8.81440656e-03 + syst_JES_EtaIntercalibration_Stat137: 9.18160133e-07 + syst_JES_EtaIntercalibration_Stat138: 9.18160133e-07 + syst_JES_EtaIntercalibration_Stat139: 9.18160133e-07 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 1.5025540755660012e-05 - syst_JES_EtaIntercalibration_Stat141: 0.06426292146331351 - syst_JES_EtaIntercalibration_Stat142: 0.40580946267922346 - syst_JES_EtaIntercalibration_Stat143: 1.1789009882089334 - syst_JES_EtaIntercalibration_Stat144: 0.6433921587958622 - syst_JES_EtaIntercalibration_Stat145: 0.008876874154227938 - syst_JES_EtaIntercalibration_Stat146: 0.0073364064173135875 - syst_JES_EtaIntercalibration_Stat147: 0.1772799765201925 - syst_JES_EtaIntercalibration_Stat148: 0.4063695608679371 - syst_JES_EtaIntercalibration_Stat149: 0.13978625218525603 + syst_JES_EtaIntercalibration_Stat140: 1.50255408e-05 + syst_JES_EtaIntercalibration_Stat141: 6.42629215e-02 + syst_JES_EtaIntercalibration_Stat142: 4.05809463e-01 + syst_JES_EtaIntercalibration_Stat143: 1.17890099e+00 + syst_JES_EtaIntercalibration_Stat144: 6.43392159e-01 + syst_JES_EtaIntercalibration_Stat145: 8.87687415e-03 + syst_JES_EtaIntercalibration_Stat146: 7.33640642e-03 + syst_JES_EtaIntercalibration_Stat147: 1.77279977e-01 + syst_JES_EtaIntercalibration_Stat148: 4.06369561e-01 + syst_JES_EtaIntercalibration_Stat149: 1.39786252e-01 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 0.014978270527667738 - syst_JES_EtaIntercalibration_Stat151: 0.0005539099843709867 + syst_JES_EtaIntercalibration_Stat150: 1.49782705e-02 + syst_JES_EtaIntercalibration_Stat151: 5.53909984e-04 syst_JES_EtaIntercalibration_Stat152: 0.0 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 9.181601330922619e-07 + syst_JES_EtaIntercalibration_Stat156: 9.18160133e-07 syst_JES_EtaIntercalibration_Stat157: 0.0 syst_JES_EtaIntercalibration_Stat158: 0.0 - syst_JES_EtaIntercalibration_Stat159: 0.01191446192658317 - syst_JES_EtaIntercalibration_Stat16: 0.0002060068193701364 - syst_JES_EtaIntercalibration_Stat160: 0.20633078951043635 - syst_JES_EtaIntercalibration_Stat161: 0.40932846224028935 - syst_JES_EtaIntercalibration_Stat162: 0.10628446782103207 - syst_JES_EtaIntercalibration_Stat163: 0.0007871376690262003 - syst_JES_EtaIntercalibration_Stat164: 0.002381539004509479 - syst_JES_EtaIntercalibration_Stat165: 0.016699423543344243 - syst_JES_EtaIntercalibration_Stat166: 0.03153895887232171 - syst_JES_EtaIntercalibration_Stat167: 0.019645922242287332 - syst_JES_EtaIntercalibration_Stat168: 0.007188126219236485 - syst_JES_EtaIntercalibration_Stat169: 0.0005539099843709867 - syst_JES_EtaIntercalibration_Stat17: 0.00022962777923613684 + syst_JES_EtaIntercalibration_Stat159: 1.19144619e-02 + syst_JES_EtaIntercalibration_Stat16: 2.06006819e-04 + syst_JES_EtaIntercalibration_Stat160: 2.06330790e-01 + syst_JES_EtaIntercalibration_Stat161: 4.09328462e-01 + syst_JES_EtaIntercalibration_Stat162: 1.06284468e-01 + syst_JES_EtaIntercalibration_Stat163: 7.87137669e-04 + syst_JES_EtaIntercalibration_Stat164: 2.38153900e-03 + syst_JES_EtaIntercalibration_Stat165: 1.66994235e-02 + syst_JES_EtaIntercalibration_Stat166: 3.15389589e-02 + syst_JES_EtaIntercalibration_Stat167: 1.96459222e-02 + syst_JES_EtaIntercalibration_Stat168: 7.18812622e-03 + syst_JES_EtaIntercalibration_Stat169: 5.53909984e-04 + syst_JES_EtaIntercalibration_Stat17: 2.29627779e-04 syst_JES_EtaIntercalibration_Stat170: 0.0 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 syst_JES_EtaIntercalibration_Stat175: 0.0 - syst_JES_EtaIntercalibration_Stat176: 1.622931606692038e-05 - syst_JES_EtaIntercalibration_Stat177: 0.005008224910085409 - syst_JES_EtaIntercalibration_Stat178: 0.027911468086612712 - syst_JES_EtaIntercalibration_Stat179: 0.05581830220232428 - syst_JES_EtaIntercalibration_Stat18: 7.432082211601267e-07 - syst_JES_EtaIntercalibration_Stat180: 0.02615027533315854 - syst_JES_EtaIntercalibration_Stat181: 0.003368405808022522 - syst_JES_EtaIntercalibration_Stat182: 0.03218072870523599 - syst_JES_EtaIntercalibration_Stat183: 0.07086598055484733 - syst_JES_EtaIntercalibration_Stat184: 0.0313799725143283 - syst_JES_EtaIntercalibration_Stat185: 0.002105253620707016 - syst_JES_EtaIntercalibration_Stat186: 4.083309778843628e-10 + syst_JES_EtaIntercalibration_Stat176: 1.62293161e-05 + syst_JES_EtaIntercalibration_Stat177: 5.00822491e-03 + syst_JES_EtaIntercalibration_Stat178: 2.79114681e-02 + syst_JES_EtaIntercalibration_Stat179: 5.58183022e-02 + syst_JES_EtaIntercalibration_Stat18: 7.43208221e-07 + syst_JES_EtaIntercalibration_Stat180: 2.61502753e-02 + syst_JES_EtaIntercalibration_Stat181: 3.36840581e-03 + syst_JES_EtaIntercalibration_Stat182: 3.21807287e-02 + syst_JES_EtaIntercalibration_Stat183: 7.08659806e-02 + syst_JES_EtaIntercalibration_Stat184: 3.13799725e-02 + syst_JES_EtaIntercalibration_Stat185: 2.10525362e-03 + syst_JES_EtaIntercalibration_Stat186: 4.08330978e-10 syst_JES_EtaIntercalibration_Stat187: 0.0 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 @@ -46631,31 +46631,31 @@ bins: syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 syst_JES_EtaIntercalibration_Stat192: 0.0 - syst_JES_EtaIntercalibration_Stat193: 0.00024423026900857313 - syst_JES_EtaIntercalibration_Stat194: 0.0033493675641828266 - syst_JES_EtaIntercalibration_Stat195: 0.036547515647441756 - syst_JES_EtaIntercalibration_Stat196: 0.07034785764328576 - syst_JES_EtaIntercalibration_Stat197: 0.03399204759940184 - syst_JES_EtaIntercalibration_Stat198: 0.006598716314556945 - syst_JES_EtaIntercalibration_Stat199: 0.0030020403061917743 + syst_JES_EtaIntercalibration_Stat193: 2.44230269e-04 + syst_JES_EtaIntercalibration_Stat194: 3.34936756e-03 + syst_JES_EtaIntercalibration_Stat195: 3.65475156e-02 + syst_JES_EtaIntercalibration_Stat196: 7.03478576e-02 + syst_JES_EtaIntercalibration_Stat197: 3.39920476e-02 + syst_JES_EtaIntercalibration_Stat198: 6.59871631e-03 + syst_JES_EtaIntercalibration_Stat199: 3.00204031e-03 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 0.000766746767653441 - syst_JES_EtaIntercalibration_Stat201: 4.083309778843628e-10 + syst_JES_EtaIntercalibration_Stat200: 7.66746768e-04 + syst_JES_EtaIntercalibration_Stat201: 4.08330978e-10 syst_JES_EtaIntercalibration_Stat202: 0.0 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 syst_JES_EtaIntercalibration_Stat207: 0.0 - syst_JES_EtaIntercalibration_Stat208: 9.150424416386379e-17 - syst_JES_EtaIntercalibration_Stat209: 1.0191979688839783e-14 + syst_JES_EtaIntercalibration_Stat208: 9.15042442e-17 + syst_JES_EtaIntercalibration_Stat209: 1.01919797e-14 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 0.0017322084170214623 - syst_JES_EtaIntercalibration_Stat211: 0.007665363526930736 - syst_JES_EtaIntercalibration_Stat212: 2.8738425439644395e-06 - syst_JES_EtaIntercalibration_Stat213: 4.229668072083198e-09 - syst_JES_EtaIntercalibration_Stat214: 4.083309778843628e-10 + syst_JES_EtaIntercalibration_Stat210: 1.73220842e-03 + syst_JES_EtaIntercalibration_Stat211: 7.66536353e-03 + syst_JES_EtaIntercalibration_Stat212: 2.87384254e-06 + syst_JES_EtaIntercalibration_Stat213: 4.22966807e-09 + syst_JES_EtaIntercalibration_Stat214: 4.08330978e-10 syst_JES_EtaIntercalibration_Stat215: 0.0 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 @@ -46663,11 +46663,11 @@ bins: syst_JES_EtaIntercalibration_Stat219: 0.0 syst_JES_EtaIntercalibration_Stat22: 0.0 syst_JES_EtaIntercalibration_Stat220: 0.0 - syst_JES_EtaIntercalibration_Stat221: 4.300682155193522e-42 - syst_JES_EtaIntercalibration_Stat222: 3.653761178566746e-19 - syst_JES_EtaIntercalibration_Stat223: 2.246282343579052e-05 - syst_JES_EtaIntercalibration_Stat224: 1.8854680660957902e-12 - syst_JES_EtaIntercalibration_Stat225: 1.753575418965492e-16 + syst_JES_EtaIntercalibration_Stat221: 4.30068216e-42 + syst_JES_EtaIntercalibration_Stat222: 3.65376118e-19 + syst_JES_EtaIntercalibration_Stat223: 2.24628234e-05 + syst_JES_EtaIntercalibration_Stat224: 1.88546807e-12 + syst_JES_EtaIntercalibration_Stat225: 1.75357542e-16 syst_JES_EtaIntercalibration_Stat226: 0.0 syst_JES_EtaIntercalibration_Stat227: 0.0 syst_JES_EtaIntercalibration_Stat228: 0.0 @@ -46676,296 +46676,296 @@ bins: syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 syst_JES_EtaIntercalibration_Stat232: 0.0 - syst_JES_EtaIntercalibration_Stat233: 4.300682155193522e-42 - syst_JES_EtaIntercalibration_Stat234: 2.0091789367798977e-16 - syst_JES_EtaIntercalibration_Stat235: 3.6217182386265283e-10 + syst_JES_EtaIntercalibration_Stat233: 4.30068216e-42 + syst_JES_EtaIntercalibration_Stat234: 2.00917894e-16 + syst_JES_EtaIntercalibration_Stat235: 3.62171824e-10 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 syst_JES_EtaIntercalibration_Stat239: 0.0 - syst_JES_EtaIntercalibration_Stat24: 3.576684917629732e-06 + syst_JES_EtaIntercalibration_Stat24: 3.57668492e-06 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 syst_JES_EtaIntercalibration_Stat243: 0.0 - syst_JES_EtaIntercalibration_Stat244: 4.300682155193522e-42 + syst_JES_EtaIntercalibration_Stat244: 4.30068216e-42 syst_JES_EtaIntercalibration_Stat245: 0.0 - syst_JES_EtaIntercalibration_Stat25: 0.0002012098158639384 - syst_JES_EtaIntercalibration_Stat26: 0.0037423599142118865 - syst_JES_EtaIntercalibration_Stat27: 0.001640883965276034 - syst_JES_EtaIntercalibration_Stat28: 7.772281744764533e-05 + syst_JES_EtaIntercalibration_Stat25: 2.01209816e-04 + syst_JES_EtaIntercalibration_Stat26: 3.74235991e-03 + syst_JES_EtaIntercalibration_Stat27: 1.64088397e-03 + syst_JES_EtaIntercalibration_Stat28: 7.77228174e-05 syst_JES_EtaIntercalibration_Stat29: 0.0 - syst_JES_EtaIntercalibration_Stat3: 1.9713800624689297e-05 + syst_JES_EtaIntercalibration_Stat3: 1.97138006e-05 syst_JES_EtaIntercalibration_Stat30: 0.0 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 2.558239042779232e-06 - syst_JES_EtaIntercalibration_Stat36: 2.558239042779232e-06 - syst_JES_EtaIntercalibration_Stat37: 0.00013495881568834252 - syst_JES_EtaIntercalibration_Stat38: 0.00042276128902727126 - syst_JES_EtaIntercalibration_Stat39: 0.000661367802361137 - syst_JES_EtaIntercalibration_Stat4: 0.00034913226238884025 - syst_JES_EtaIntercalibration_Stat40: 0.0005827120959787947 + syst_JES_EtaIntercalibration_Stat35: 2.55823904e-06 + syst_JES_EtaIntercalibration_Stat36: 2.55823904e-06 + syst_JES_EtaIntercalibration_Stat37: 1.34958816e-04 + syst_JES_EtaIntercalibration_Stat38: 4.22761289e-04 + syst_JES_EtaIntercalibration_Stat39: 6.61367802e-04 + syst_JES_EtaIntercalibration_Stat4: 3.49132262e-04 + syst_JES_EtaIntercalibration_Stat40: 5.82712096e-04 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 syst_JES_EtaIntercalibration_Stat44: 0.0 syst_JES_EtaIntercalibration_Stat45: 0.0 - syst_JES_EtaIntercalibration_Stat46: 2.5645592213867863e-05 - syst_JES_EtaIntercalibration_Stat47: 0.0006468645630949341 - syst_JES_EtaIntercalibration_Stat48: 0.003632546747118336 - syst_JES_EtaIntercalibration_Stat49: 0.0012145960099967396 - syst_JES_EtaIntercalibration_Stat5: 0.0003490610390534584 - syst_JES_EtaIntercalibration_Stat50: 0.00015680797771478337 + syst_JES_EtaIntercalibration_Stat46: 2.56455922e-05 + syst_JES_EtaIntercalibration_Stat47: 6.46864563e-04 + syst_JES_EtaIntercalibration_Stat48: 3.63254675e-03 + syst_JES_EtaIntercalibration_Stat49: 1.21459601e-03 + syst_JES_EtaIntercalibration_Stat5: 3.49061039e-04 + syst_JES_EtaIntercalibration_Stat50: 1.56807978e-04 syst_JES_EtaIntercalibration_Stat51: 0.0 syst_JES_EtaIntercalibration_Stat52: 0.0 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 9.181601330922619e-07 - syst_JES_EtaIntercalibration_Stat57: 2.558239042779232e-06 - syst_JES_EtaIntercalibration_Stat58: 2.558239042779232e-06 - syst_JES_EtaIntercalibration_Stat59: 0.0001797980163961772 + syst_JES_EtaIntercalibration_Stat56: 9.18160133e-07 + syst_JES_EtaIntercalibration_Stat57: 2.55823904e-06 + syst_JES_EtaIntercalibration_Stat58: 2.55823904e-06 + syst_JES_EtaIntercalibration_Stat59: 1.79798016e-04 syst_JES_EtaIntercalibration_Stat6: 0.0 - syst_JES_EtaIntercalibration_Stat60: 0.0005977176151829558 - syst_JES_EtaIntercalibration_Stat61: 0.0006523640318104608 - syst_JES_EtaIntercalibration_Stat62: 0.0007101050837728174 - syst_JES_EtaIntercalibration_Stat63: 8.306909063789912e-06 + syst_JES_EtaIntercalibration_Stat60: 5.97717615e-04 + syst_JES_EtaIntercalibration_Stat61: 6.52364032e-04 + syst_JES_EtaIntercalibration_Stat62: 7.10105084e-04 + syst_JES_EtaIntercalibration_Stat63: 8.30690906e-06 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 7.859942557042005e-05 - syst_JES_EtaIntercalibration_Stat69: 0.006028142499974598 + syst_JES_EtaIntercalibration_Stat68: 7.85994256e-05 + syst_JES_EtaIntercalibration_Stat69: 6.02814250e-03 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 0.019401095329903414 - syst_JES_EtaIntercalibration_Stat71: 0.0007928009144797956 - syst_JES_EtaIntercalibration_Stat72: 0.0016093246783356054 + syst_JES_EtaIntercalibration_Stat70: 1.94010953e-02 + syst_JES_EtaIntercalibration_Stat71: 7.92800914e-04 + syst_JES_EtaIntercalibration_Stat72: 1.60932468e-03 syst_JES_EtaIntercalibration_Stat73: 0.0 syst_JES_EtaIntercalibration_Stat74: 0.0 syst_JES_EtaIntercalibration_Stat75: 0.0 - syst_JES_EtaIntercalibration_Stat76: 4.53450901421532e-05 - syst_JES_EtaIntercalibration_Stat77: 9.181601330922619e-07 - syst_JES_EtaIntercalibration_Stat78: 9.181601330922619e-07 - syst_JES_EtaIntercalibration_Stat79: 2.558239042779232e-06 + syst_JES_EtaIntercalibration_Stat76: 4.53450901e-05 + syst_JES_EtaIntercalibration_Stat77: 9.18160133e-07 + syst_JES_EtaIntercalibration_Stat78: 9.18160133e-07 + syst_JES_EtaIntercalibration_Stat79: 2.55823904e-06 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 1.3700521887869821e-06 - syst_JES_EtaIntercalibration_Stat81: 0.00036486692094515774 - syst_JES_EtaIntercalibration_Stat82: 0.006637181235283545 - syst_JES_EtaIntercalibration_Stat83: 0.0042060635694197495 - syst_JES_EtaIntercalibration_Stat84: 0.0016467426848175157 - syst_JES_EtaIntercalibration_Stat85: 1.9516679039990385e-05 + syst_JES_EtaIntercalibration_Stat80: 1.37005219e-06 + syst_JES_EtaIntercalibration_Stat81: 3.64866921e-04 + syst_JES_EtaIntercalibration_Stat82: 6.63718124e-03 + syst_JES_EtaIntercalibration_Stat83: 4.20606357e-03 + syst_JES_EtaIntercalibration_Stat84: 1.64674268e-03 + syst_JES_EtaIntercalibration_Stat85: 1.95166790e-05 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 7.762670803273832e-05 + syst_JES_EtaIntercalibration_Stat89: 7.76267080e-05 syst_JES_EtaIntercalibration_Stat9: 0.0 - syst_JES_EtaIntercalibration_Stat90: 0.009227879062926648 - syst_JES_EtaIntercalibration_Stat91: 0.035004260812078296 - syst_JES_EtaIntercalibration_Stat92: 0.018109717695204416 - syst_JES_EtaIntercalibration_Stat93: 0.0037856606513923035 + syst_JES_EtaIntercalibration_Stat90: 9.22787906e-03 + syst_JES_EtaIntercalibration_Stat91: 3.50042608e-02 + syst_JES_EtaIntercalibration_Stat92: 1.81097177e-02 + syst_JES_EtaIntercalibration_Stat93: 3.78566065e-03 syst_JES_EtaIntercalibration_Stat94: 0.0 syst_JES_EtaIntercalibration_Stat95: 0.0 - syst_JES_EtaIntercalibration_Stat96: 0.005006492859277839 - syst_JES_EtaIntercalibration_Stat97: 4.53450901421532e-05 - syst_JES_EtaIntercalibration_Stat98: 9.181601330922619e-07 - syst_JES_EtaIntercalibration_Stat99: 9.181601330922619e-07 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.03556778499945562 - syst_JES_Flavour_Comp: 0.3724903220219285 - syst_JES_Gjet_Generator: 4.512560332006654 - syst_JES_Gjet_OOC: 2.575187954305472 - syst_JES_Gjet_Purity: 0.8457052367698807 - syst_JES_Gjet_Stat1: 0.0020178391908177423 - syst_JES_Gjet_Stat10: 0.24722979189410002 - syst_JES_Gjet_Stat11: 0.07609746119286767 - syst_JES_Gjet_Stat12: 0.04311950808062054 - syst_JES_Gjet_Stat13: 0.024575171922084287 - syst_JES_Gjet_Stat14: 0.0009433778816041852 - syst_JES_Gjet_Stat15: 3.59826616057569e-14 + syst_JES_EtaIntercalibration_Stat96: 5.00649286e-03 + syst_JES_EtaIntercalibration_Stat97: 4.53450901e-05 + syst_JES_EtaIntercalibration_Stat98: 9.18160133e-07 + syst_JES_EtaIntercalibration_Stat99: 9.18160133e-07 + syst_JES_EtaIntercalibration_TotalStat_MJB: 3.55677850e-02 + syst_JES_Flavour_Comp: 3.72490322e-01 + syst_JES_Gjet_Generator: 4.51256033e+00 + syst_JES_Gjet_OOC: 2.57518795e+00 + syst_JES_Gjet_Purity: 8.45705237e-01 + syst_JES_Gjet_Stat1: 2.01783919e-03 + syst_JES_Gjet_Stat10: 2.47229792e-01 + syst_JES_Gjet_Stat11: 7.60974612e-02 + syst_JES_Gjet_Stat12: 4.31195081e-02 + syst_JES_Gjet_Stat13: 2.45751719e-02 + syst_JES_Gjet_Stat14: 9.43377882e-04 + syst_JES_Gjet_Stat15: 3.59826616e-14 syst_JES_Gjet_Stat2: 0.0 - syst_JES_Gjet_Stat3: 0.0008492245109510206 - syst_JES_Gjet_Stat4: 0.00265677905884174 - syst_JES_Gjet_Stat5: 0.013123957749093829 - syst_JES_Gjet_Stat6: 0.057074297849382255 - syst_JES_Gjet_Stat7: 0.1164841049242342 - syst_JES_Gjet_Stat8: 0.11095319643885884 - syst_JES_Gjet_Stat9: 0.23188748888200073 - syst_JES_Gjet_Veto: 1.091093170861224 - syst_JES_Gjet_dPhi: 0.3037697606741 - syst_JES_LArESZee: 4.336661936328447 - syst_JES_LArEsmear: 0.3360920558418482 - syst_JES_LAr_JVT: 0.5452543878778052 - syst_JES_MJB_Alpha: 9.348744233853016e-11 - syst_JES_MJB_Asym: 0.0007384405257026458 + syst_JES_Gjet_Stat3: 8.49224511e-04 + syst_JES_Gjet_Stat4: 2.65677906e-03 + syst_JES_Gjet_Stat5: 1.31239577e-02 + syst_JES_Gjet_Stat6: 5.70742978e-02 + syst_JES_Gjet_Stat7: 1.16484105e-01 + syst_JES_Gjet_Stat8: 1.10953196e-01 + syst_JES_Gjet_Stat9: 2.31887489e-01 + syst_JES_Gjet_Veto: 1.09109317e+00 + syst_JES_Gjet_dPhi: 3.03769761e-01 + syst_JES_LArESZee: 4.33666194e+00 + syst_JES_LArEsmear: 3.36092056e-01 + syst_JES_LAr_JVT: 5.45254388e-01 + syst_JES_MJB_Alpha: 9.34874423e-11 + syst_JES_MJB_Asym: 7.38440526e-04 syst_JES_MJB_Beta: 0.0 - syst_JES_MJB_Stat1: 5.762533036781655e-06 + syst_JES_MJB_Stat1: 5.76253304e-06 syst_JES_MJB_Stat10: 0.0 - syst_JES_MJB_Stat11: 2.3547230728898886e-26 + syst_JES_MJB_Stat11: 2.35472307e-26 syst_JES_MJB_Stat12: 0.0 syst_JES_MJB_Stat13: 0.0 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 0.0024898484201199404 - syst_JES_MJB_Stat3: 0.0002381568872851209 - syst_JES_MJB_Stat4: 5.718365741188647e-19 - syst_JES_MJB_Stat5: 1.2626650387177116e-08 + syst_JES_MJB_Stat2: 2.48984842e-03 + syst_JES_MJB_Stat3: 2.38156887e-04 + syst_JES_MJB_Stat4: 5.71836574e-19 + syst_JES_MJB_Stat5: 1.26266504e-08 syst_JES_MJB_Stat6: 0.0 - syst_JES_MJB_Stat7: 2.7357742505550418e-39 + syst_JES_MJB_Stat7: 2.73577425e-39 syst_JES_MJB_Stat8: 0.0 syst_JES_MJB_Stat9: 0.0 - syst_JES_MJB_Threshold: 0.0005420465754895975 - syst_JES_Pileup_MuOffset: 0.001285067329344304 - syst_JES_Pileup_NPVOffset: 0.21697047610216463 - syst_JES_Pileup_Pt_term: 1.374031909200074 - syst_JES_PunchThrough_MC15: 1.1835912845208742e-05 + syst_JES_MJB_Threshold: 5.42046575e-04 + syst_JES_Pileup_MuOffset: 1.28506733e-03 + syst_JES_Pileup_NPVOffset: 2.16970476e-01 + syst_JES_Pileup_Pt_term: 1.37403191e+00 + syst_JES_PunchThrough_MC15: 1.18359128e-05 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 4.09207062500148 - syst_JES_Zjet_MuScale: 0.26769954706722987 - syst_JES_Zjet_MuSmearID: 0.04837219797311261 - syst_JES_Zjet_MuSmearMS: 0.3573644778094207 - syst_JES_Zjet_OOC: 1.420496346352218 - syst_JES_Zjet_Stat1: 0.019907662913247755 - syst_JES_Zjet_Stat10: 0.5465607079730486 - syst_JES_Zjet_Stat11: 0.48445640412734764 - syst_JES_Zjet_Stat12: 0.1773822223335811 - syst_JES_Zjet_Stat13: 0.03605414539272842 - syst_JES_Zjet_Stat2: 0.0019481812925585236 - syst_JES_Zjet_Stat3: 4.041740559461975e-06 - syst_JES_Zjet_Stat4: 0.0006180737861089079 - syst_JES_Zjet_Stat5: 0.0008691875214819871 - syst_JES_Zjet_Stat6: 0.026526908979374136 - syst_JES_Zjet_Stat7: 0.042049794149317775 - syst_JES_Zjet_Stat8: 0.07088371516081815 - syst_JES_Zjet_Stat9: 0.22857335802757064 - syst_JES_Zjet_Veto: 0.2707846515222013 - syst_JES_Zjet_dPhi: 0.35854919704274896 + syst_JES_Zjet_MC: 4.09207063e+00 + syst_JES_Zjet_MuScale: 2.67699547e-01 + syst_JES_Zjet_MuSmearID: 4.83721980e-02 + syst_JES_Zjet_MuSmearMS: 3.57364478e-01 + syst_JES_Zjet_OOC: 1.42049635e+00 + syst_JES_Zjet_Stat1: 1.99076629e-02 + syst_JES_Zjet_Stat10: 5.46560708e-01 + syst_JES_Zjet_Stat11: 4.84456404e-01 + syst_JES_Zjet_Stat12: 1.77382222e-01 + syst_JES_Zjet_Stat13: 3.60541454e-02 + syst_JES_Zjet_Stat2: 1.94818129e-03 + syst_JES_Zjet_Stat3: 4.04174056e-06 + syst_JES_Zjet_Stat4: 6.18073786e-04 + syst_JES_Zjet_Stat5: 8.69187521e-04 + syst_JES_Zjet_Stat6: 2.65269090e-02 + syst_JES_Zjet_Stat7: 4.20497941e-02 + syst_JES_Zjet_Stat8: 7.08837152e-02 + syst_JES_Zjet_Stat9: 2.28573358e-01 + syst_JES_Zjet_Veto: 2.70784652e-01 + syst_JES_Zjet_dPhi: 3.58549197e-01 syst_PRW: 0.0 syst_Unfolding_bias: 0.0 - syst_cleaning: 1.0938766875201245 + syst_cleaning: 1.09387669e+00 syst_lumi: 4.378 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 4.554505900753671 - syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0274177839434098 - syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.37735772110160937 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 4.016705016241547 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0356849819378895 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.5021704297449074 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 4.55450590e+00 + syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 2.74177839e-02 + syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 3.77357721e-01 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 4.01670502e+00 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 3.56849819e-02 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.50217043e+00 - stat: 1.1017 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 1.5282742252292285 - syst_JER_NP1: 0.19517196436732404 - syst_JER_NP2: 0.14574505240316052 - syst_JER_NP3: 0.47293964466938065 - syst_JER_NP4: 0.1123382089940907 - syst_JER_NP5: 0.13288486623765705 - syst_JER_NP6: 0.12978350001059458 - syst_JER_NP7: 0.0006983852232113736 - syst_JER_NP8: 0.12576085827871883 - syst_JES_EtaIntercalibration_Modelling: 2.9922620206125 - syst_JES_EtaIntercalibration_NonClosure: 2.1952860861400274 + syst_JER_NP0: 1.52827423e+00 + syst_JER_NP1: 1.95171964e-01 + syst_JER_NP2: 1.45745052e-01 + syst_JER_NP3: 4.72939645e-01 + syst_JER_NP4: 1.12338209e-01 + syst_JER_NP5: 1.32884866e-01 + syst_JER_NP6: 1.29783500e-01 + syst_JER_NP7: 6.98385223e-04 + syst_JER_NP8: 1.25760858e-01 + syst_JES_EtaIntercalibration_Modelling: 2.99226202e+00 + syst_JES_EtaIntercalibration_NonClosure: 2.19528609e+00 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 4.2539167833891626e-08 + syst_JES_EtaIntercalibration_Stat100: 4.25391678e-08 syst_JES_EtaIntercalibration_Stat101: 0.0 - syst_JES_EtaIntercalibration_Stat102: 0.00032686836417738564 - syst_JES_EtaIntercalibration_Stat103: 0.000876945578414077 - syst_JES_EtaIntercalibration_Stat104: 0.009696186918062172 - syst_JES_EtaIntercalibration_Stat105: 0.001637561562201556 - syst_JES_EtaIntercalibration_Stat106: 7.690855397808491e-05 + syst_JES_EtaIntercalibration_Stat102: 3.26868364e-04 + syst_JES_EtaIntercalibration_Stat103: 8.76945578e-04 + syst_JES_EtaIntercalibration_Stat104: 9.69618692e-03 + syst_JES_EtaIntercalibration_Stat105: 1.63756156e-03 + syst_JES_EtaIntercalibration_Stat106: 7.69085540e-05 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 0.0012919150929917955 + syst_JES_EtaIntercalibration_Stat109: 1.29191509e-03 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 0.029542130508817405 - syst_JES_EtaIntercalibration_Stat111: 0.09481617688981138 - syst_JES_EtaIntercalibration_Stat112: 0.05482680981964936 - syst_JES_EtaIntercalibration_Stat113: 0.0008745838839128011 - syst_JES_EtaIntercalibration_Stat114: 0.0002545248661722465 + syst_JES_EtaIntercalibration_Stat110: 2.95421305e-02 + syst_JES_EtaIntercalibration_Stat111: 9.48161769e-02 + syst_JES_EtaIntercalibration_Stat112: 5.48268098e-02 + syst_JES_EtaIntercalibration_Stat113: 8.74583884e-04 + syst_JES_EtaIntercalibration_Stat114: 2.54524866e-04 syst_JES_EtaIntercalibration_Stat115: 0.0 - syst_JES_EtaIntercalibration_Stat116: 0.0024751006040159254 - syst_JES_EtaIntercalibration_Stat117: 0.0016982758168212844 - syst_JES_EtaIntercalibration_Stat118: 4.2539167833891626e-08 - syst_JES_EtaIntercalibration_Stat119: 4.2539167833891626e-08 + syst_JES_EtaIntercalibration_Stat116: 2.47510060e-03 + syst_JES_EtaIntercalibration_Stat117: 1.69827582e-03 + syst_JES_EtaIntercalibration_Stat118: 4.25391678e-08 + syst_JES_EtaIntercalibration_Stat119: 4.25391678e-08 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 4.2539167833891626e-08 - syst_JES_EtaIntercalibration_Stat121: 2.1217622392718747e-05 - syst_JES_EtaIntercalibration_Stat122: 0.0025750834452498814 - syst_JES_EtaIntercalibration_Stat123: 0.05200006538457427 - syst_JES_EtaIntercalibration_Stat124: 0.07818347907326714 - syst_JES_EtaIntercalibration_Stat125: 0.03226569811735057 - syst_JES_EtaIntercalibration_Stat126: 0.00042030624644418495 + syst_JES_EtaIntercalibration_Stat120: 4.25391678e-08 + syst_JES_EtaIntercalibration_Stat121: 2.12176224e-05 + syst_JES_EtaIntercalibration_Stat122: 2.57508345e-03 + syst_JES_EtaIntercalibration_Stat123: 5.20000654e-02 + syst_JES_EtaIntercalibration_Stat124: 7.81834791e-02 + syst_JES_EtaIntercalibration_Stat125: 3.22656981e-02 + syst_JES_EtaIntercalibration_Stat126: 4.20306246e-04 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 0.004102883711488787 - syst_JES_EtaIntercalibration_Stat129: 0.2931502132013552 + syst_JES_EtaIntercalibration_Stat128: 4.10288371e-03 + syst_JES_EtaIntercalibration_Stat129: 2.93150213e-01 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 0.6431290908519066 - syst_JES_EtaIntercalibration_Stat131: 0.24350537468400982 - syst_JES_EtaIntercalibration_Stat132: 0.023683762370028966 - syst_JES_EtaIntercalibration_Stat133: 0.0007062388901781041 + syst_JES_EtaIntercalibration_Stat130: 6.43129091e-01 + syst_JES_EtaIntercalibration_Stat131: 2.43505375e-01 + syst_JES_EtaIntercalibration_Stat132: 2.36837624e-02 + syst_JES_EtaIntercalibration_Stat133: 7.06238890e-04 syst_JES_EtaIntercalibration_Stat134: 0.0 - syst_JES_EtaIntercalibration_Stat135: 0.0024751006040159254 - syst_JES_EtaIntercalibration_Stat136: 0.0024751006040159254 - syst_JES_EtaIntercalibration_Stat137: 4.2539167833891626e-08 - syst_JES_EtaIntercalibration_Stat138: 4.2539167833891626e-08 - syst_JES_EtaIntercalibration_Stat139: 4.2539167833891626e-08 + syst_JES_EtaIntercalibration_Stat135: 2.47510060e-03 + syst_JES_EtaIntercalibration_Stat136: 2.47510060e-03 + syst_JES_EtaIntercalibration_Stat137: 4.25391678e-08 + syst_JES_EtaIntercalibration_Stat138: 4.25391678e-08 + syst_JES_EtaIntercalibration_Stat139: 4.25391678e-08 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 8.414302823169605e-06 - syst_JES_EtaIntercalibration_Stat141: 0.022662547848818763 - syst_JES_EtaIntercalibration_Stat142: 0.1805072851715409 - syst_JES_EtaIntercalibration_Stat143: 0.4901761596609937 - syst_JES_EtaIntercalibration_Stat144: 0.2634500094894665 - syst_JES_EtaIntercalibration_Stat145: 0.003633269739504625 - syst_JES_EtaIntercalibration_Stat146: 0.003077202747626487 - syst_JES_EtaIntercalibration_Stat147: 0.11888280952265555 - syst_JES_EtaIntercalibration_Stat148: 0.2832203382527463 - syst_JES_EtaIntercalibration_Stat149: 0.09815121140362966 + syst_JES_EtaIntercalibration_Stat140: 8.41430282e-06 + syst_JES_EtaIntercalibration_Stat141: 2.26625478e-02 + syst_JES_EtaIntercalibration_Stat142: 1.80507285e-01 + syst_JES_EtaIntercalibration_Stat143: 4.90176160e-01 + syst_JES_EtaIntercalibration_Stat144: 2.63450009e-01 + syst_JES_EtaIntercalibration_Stat145: 3.63326974e-03 + syst_JES_EtaIntercalibration_Stat146: 3.07720275e-03 + syst_JES_EtaIntercalibration_Stat147: 1.18882810e-01 + syst_JES_EtaIntercalibration_Stat148: 2.83220338e-01 + syst_JES_EtaIntercalibration_Stat149: 9.81512114e-02 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 0.007038247420345494 - syst_JES_EtaIntercalibration_Stat151: 0.0002548031947983673 + syst_JES_EtaIntercalibration_Stat150: 7.03824742e-03 + syst_JES_EtaIntercalibration_Stat151: 2.54803195e-04 syst_JES_EtaIntercalibration_Stat152: 0.0 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 4.2539167833891626e-08 + syst_JES_EtaIntercalibration_Stat156: 4.25391678e-08 syst_JES_EtaIntercalibration_Stat157: 0.0 syst_JES_EtaIntercalibration_Stat158: 0.0 - syst_JES_EtaIntercalibration_Stat159: 0.0076666213386341175 - syst_JES_EtaIntercalibration_Stat16: 0.00011306944341788368 - syst_JES_EtaIntercalibration_Stat160: 0.13482007565640955 - syst_JES_EtaIntercalibration_Stat161: 0.26570993112791247 - syst_JES_EtaIntercalibration_Stat162: 0.07973090163167602 - syst_JES_EtaIntercalibration_Stat163: 0.00043107791639099307 - syst_JES_EtaIntercalibration_Stat164: 0.0029827850660079417 - syst_JES_EtaIntercalibration_Stat165: 0.0467358478579345 - syst_JES_EtaIntercalibration_Stat166: 0.08895567477682353 - syst_JES_EtaIntercalibration_Stat167: 0.044747542357094876 - syst_JES_EtaIntercalibration_Stat168: 0.00608628053494086 - syst_JES_EtaIntercalibration_Stat169: 0.0002548031947983673 - syst_JES_EtaIntercalibration_Stat17: 6.463396387881142e-05 + syst_JES_EtaIntercalibration_Stat159: 7.66662134e-03 + syst_JES_EtaIntercalibration_Stat16: 1.13069443e-04 + syst_JES_EtaIntercalibration_Stat160: 1.34820076e-01 + syst_JES_EtaIntercalibration_Stat161: 2.65709931e-01 + syst_JES_EtaIntercalibration_Stat162: 7.97309016e-02 + syst_JES_EtaIntercalibration_Stat163: 4.31077916e-04 + syst_JES_EtaIntercalibration_Stat164: 2.98278507e-03 + syst_JES_EtaIntercalibration_Stat165: 4.67358479e-02 + syst_JES_EtaIntercalibration_Stat166: 8.89556748e-02 + syst_JES_EtaIntercalibration_Stat167: 4.47475424e-02 + syst_JES_EtaIntercalibration_Stat168: 6.08628053e-03 + syst_JES_EtaIntercalibration_Stat169: 2.54803195e-04 + syst_JES_EtaIntercalibration_Stat17: 6.46339639e-05 syst_JES_EtaIntercalibration_Stat170: 0.0 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 syst_JES_EtaIntercalibration_Stat175: 0.0 - syst_JES_EtaIntercalibration_Stat176: 3.9871809590235554e-05 - syst_JES_EtaIntercalibration_Stat177: 0.0022456038720130495 - syst_JES_EtaIntercalibration_Stat178: 0.038893457997457616 - syst_JES_EtaIntercalibration_Stat179: 0.07408720857880934 - syst_JES_EtaIntercalibration_Stat18: 5.5488910664654425e-08 - syst_JES_EtaIntercalibration_Stat180: 0.033688145140390265 - syst_JES_EtaIntercalibration_Stat181: 0.0016878835413254739 - syst_JES_EtaIntercalibration_Stat182: 0.019786724716334435 - syst_JES_EtaIntercalibration_Stat183: 0.03845571739026592 - syst_JES_EtaIntercalibration_Stat184: 0.0182529031937388 - syst_JES_EtaIntercalibration_Stat185: 0.0028369453642959007 - syst_JES_EtaIntercalibration_Stat186: 5.55468693987339e-08 + syst_JES_EtaIntercalibration_Stat176: 3.98718096e-05 + syst_JES_EtaIntercalibration_Stat177: 2.24560387e-03 + syst_JES_EtaIntercalibration_Stat178: 3.88934580e-02 + syst_JES_EtaIntercalibration_Stat179: 7.40872086e-02 + syst_JES_EtaIntercalibration_Stat18: 5.54889107e-08 + syst_JES_EtaIntercalibration_Stat180: 3.36881451e-02 + syst_JES_EtaIntercalibration_Stat181: 1.68788354e-03 + syst_JES_EtaIntercalibration_Stat182: 1.97867247e-02 + syst_JES_EtaIntercalibration_Stat183: 3.84557174e-02 + syst_JES_EtaIntercalibration_Stat184: 1.82529032e-02 + syst_JES_EtaIntercalibration_Stat185: 2.83694536e-03 + syst_JES_EtaIntercalibration_Stat186: 5.55468694e-08 syst_JES_EtaIntercalibration_Stat187: 0.0 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 @@ -46973,31 +46973,31 @@ bins: syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 syst_JES_EtaIntercalibration_Stat192: 0.0 - syst_JES_EtaIntercalibration_Stat193: 0.00028272106938641837 - syst_JES_EtaIntercalibration_Stat194: 0.004367288679203609 - syst_JES_EtaIntercalibration_Stat195: 0.027512829734507502 - syst_JES_EtaIntercalibration_Stat196: 0.04322943788669938 - syst_JES_EtaIntercalibration_Stat197: 0.02631461191049566 - syst_JES_EtaIntercalibration_Stat198: 0.011961995851445527 - syst_JES_EtaIntercalibration_Stat199: 0.005558069876314978 + syst_JES_EtaIntercalibration_Stat193: 2.82721069e-04 + syst_JES_EtaIntercalibration_Stat194: 4.36728868e-03 + syst_JES_EtaIntercalibration_Stat195: 2.75128297e-02 + syst_JES_EtaIntercalibration_Stat196: 4.32294379e-02 + syst_JES_EtaIntercalibration_Stat197: 2.63146119e-02 + syst_JES_EtaIntercalibration_Stat198: 1.19619959e-02 + syst_JES_EtaIntercalibration_Stat199: 5.55806988e-03 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 0.0018684850021006326 - syst_JES_EtaIntercalibration_Stat201: 5.55468693987339e-08 + syst_JES_EtaIntercalibration_Stat200: 1.86848500e-03 + syst_JES_EtaIntercalibration_Stat201: 5.55468694e-08 syst_JES_EtaIntercalibration_Stat202: 0.0 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 syst_JES_EtaIntercalibration_Stat207: 0.0 - syst_JES_EtaIntercalibration_Stat208: 9.114917374831217e-13 - syst_JES_EtaIntercalibration_Stat209: 1.0148139103264202e-10 + syst_JES_EtaIntercalibration_Stat208: 9.11491737e-13 + syst_JES_EtaIntercalibration_Stat209: 1.01481391e-10 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 0.00516550159713459 - syst_JES_EtaIntercalibration_Stat211: 0.01453520811684511 - syst_JES_EtaIntercalibration_Stat212: 2.377735680747547e-05 - syst_JES_EtaIntercalibration_Stat213: 5.759934960570302e-07 - syst_JES_EtaIntercalibration_Stat214: 5.55468693987339e-08 + syst_JES_EtaIntercalibration_Stat210: 5.16550160e-03 + syst_JES_EtaIntercalibration_Stat211: 1.45352081e-02 + syst_JES_EtaIntercalibration_Stat212: 2.37773568e-05 + syst_JES_EtaIntercalibration_Stat213: 5.75993496e-07 + syst_JES_EtaIntercalibration_Stat214: 5.55468694e-08 syst_JES_EtaIntercalibration_Stat215: 0.0 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 @@ -47005,11 +47005,11 @@ bins: syst_JES_EtaIntercalibration_Stat219: 0.0 syst_JES_EtaIntercalibration_Stat22: 0.0 syst_JES_EtaIntercalibration_Stat220: 0.0 - syst_JES_EtaIntercalibration_Stat221: 5.895034923560674e-32 - syst_JES_EtaIntercalibration_Stat222: 5.726159970168281e-14 - syst_JES_EtaIntercalibration_Stat223: 2.61957897380476e-05 - syst_JES_EtaIntercalibration_Stat224: 1.8231486150818861e-09 - syst_JES_EtaIntercalibration_Stat225: 1.7445517332541333e-12 + syst_JES_EtaIntercalibration_Stat221: 5.89503492e-32 + syst_JES_EtaIntercalibration_Stat222: 5.72615997e-14 + syst_JES_EtaIntercalibration_Stat223: 2.61957897e-05 + syst_JES_EtaIntercalibration_Stat224: 1.82314862e-09 + syst_JES_EtaIntercalibration_Stat225: 1.74455173e-12 syst_JES_EtaIntercalibration_Stat226: 0.0 syst_JES_EtaIntercalibration_Stat227: 0.0 syst_JES_EtaIntercalibration_Stat228: 0.0 @@ -47018,296 +47018,296 @@ bins: syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 syst_JES_EtaIntercalibration_Stat232: 0.0 - syst_JES_EtaIntercalibration_Stat233: 5.895034923560674e-32 - syst_JES_EtaIntercalibration_Stat234: 1.9996526573382688e-12 - syst_JES_EtaIntercalibration_Stat235: 5.0532582313029786e-08 + syst_JES_EtaIntercalibration_Stat233: 5.89503492e-32 + syst_JES_EtaIntercalibration_Stat234: 1.99965266e-12 + syst_JES_EtaIntercalibration_Stat235: 5.05325823e-08 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 syst_JES_EtaIntercalibration_Stat239: 0.0 - syst_JES_EtaIntercalibration_Stat24: 2.1676615856724498e-07 + syst_JES_EtaIntercalibration_Stat24: 2.16766159e-07 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 syst_JES_EtaIntercalibration_Stat243: 0.0 - syst_JES_EtaIntercalibration_Stat244: 5.895034923560674e-32 + syst_JES_EtaIntercalibration_Stat244: 5.89503492e-32 syst_JES_EtaIntercalibration_Stat245: 0.0 - syst_JES_EtaIntercalibration_Stat25: 3.196348033303006e-05 - syst_JES_EtaIntercalibration_Stat26: 0.0010047463398788772 - syst_JES_EtaIntercalibration_Stat27: 0.0007066187222965437 - syst_JES_EtaIntercalibration_Stat28: 9.34480032973819e-06 + syst_JES_EtaIntercalibration_Stat25: 3.19634803e-05 + syst_JES_EtaIntercalibration_Stat26: 1.00474634e-03 + syst_JES_EtaIntercalibration_Stat27: 7.06618722e-04 + syst_JES_EtaIntercalibration_Stat28: 9.34480033e-06 syst_JES_EtaIntercalibration_Stat29: 0.0 - syst_JES_EtaIntercalibration_Stat3: 2.4065607528587346e-06 + syst_JES_EtaIntercalibration_Stat3: 2.40656075e-06 syst_JES_EtaIntercalibration_Stat30: 0.0 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 1.1900921098805757e-05 - syst_JES_EtaIntercalibration_Stat36: 1.1900921098805757e-05 - syst_JES_EtaIntercalibration_Stat37: 2.436015153909146e-05 - syst_JES_EtaIntercalibration_Stat38: 0.00011159896969394477 - syst_JES_EtaIntercalibration_Stat39: 0.00018462758921677984 - syst_JES_EtaIntercalibration_Stat4: 0.0001914973354780361 - syst_JES_EtaIntercalibration_Stat40: 0.00012045320937193829 + syst_JES_EtaIntercalibration_Stat35: 1.19009211e-05 + syst_JES_EtaIntercalibration_Stat36: 1.19009211e-05 + syst_JES_EtaIntercalibration_Stat37: 2.43601515e-05 + syst_JES_EtaIntercalibration_Stat38: 1.11598970e-04 + syst_JES_EtaIntercalibration_Stat39: 1.84627589e-04 + syst_JES_EtaIntercalibration_Stat4: 1.91497335e-04 + syst_JES_EtaIntercalibration_Stat40: 1.20453209e-04 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 syst_JES_EtaIntercalibration_Stat44: 0.0 syst_JES_EtaIntercalibration_Stat45: 0.0 - syst_JES_EtaIntercalibration_Stat46: 3.2011561583278004e-06 - syst_JES_EtaIntercalibration_Stat47: 0.00015171337548153095 - syst_JES_EtaIntercalibration_Stat48: 0.0006816583082454141 - syst_JES_EtaIntercalibration_Stat49: 0.0004555137978151705 - syst_JES_EtaIntercalibration_Stat5: 0.00019137539042550977 - syst_JES_EtaIntercalibration_Stat50: 2.5125307460805328e-05 + syst_JES_EtaIntercalibration_Stat46: 3.20115616e-06 + syst_JES_EtaIntercalibration_Stat47: 1.51713375e-04 + syst_JES_EtaIntercalibration_Stat48: 6.81658308e-04 + syst_JES_EtaIntercalibration_Stat49: 4.55513798e-04 + syst_JES_EtaIntercalibration_Stat5: 1.91375390e-04 + syst_JES_EtaIntercalibration_Stat50: 2.51253075e-05 syst_JES_EtaIntercalibration_Stat51: 0.0 syst_JES_EtaIntercalibration_Stat52: 0.0 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 4.2539167833891626e-08 - syst_JES_EtaIntercalibration_Stat57: 1.1900921098805757e-05 - syst_JES_EtaIntercalibration_Stat58: 1.1900921098805757e-05 - syst_JES_EtaIntercalibration_Stat59: 3.064472879631993e-05 + syst_JES_EtaIntercalibration_Stat56: 4.25391678e-08 + syst_JES_EtaIntercalibration_Stat57: 1.19009211e-05 + syst_JES_EtaIntercalibration_Stat58: 1.19009211e-05 + syst_JES_EtaIntercalibration_Stat59: 3.06447288e-05 syst_JES_EtaIntercalibration_Stat6: 0.0 - syst_JES_EtaIntercalibration_Stat60: 0.000281472036799395 - syst_JES_EtaIntercalibration_Stat61: 0.0006168792649295322 - syst_JES_EtaIntercalibration_Stat62: 0.0001534899119649236 - syst_JES_EtaIntercalibration_Stat63: 7.757068079809536e-07 + syst_JES_EtaIntercalibration_Stat60: 2.81472037e-04 + syst_JES_EtaIntercalibration_Stat61: 6.16879265e-04 + syst_JES_EtaIntercalibration_Stat62: 1.53489912e-04 + syst_JES_EtaIntercalibration_Stat63: 7.75706808e-07 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 1.566538311054026e-05 - syst_JES_EtaIntercalibration_Stat69: 0.0009282939512891378 + syst_JES_EtaIntercalibration_Stat68: 1.56653831e-05 + syst_JES_EtaIntercalibration_Stat69: 9.28293951e-04 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 0.0029605958859662018 - syst_JES_EtaIntercalibration_Stat71: 0.0004409989115632826 - syst_JES_EtaIntercalibration_Stat72: 0.0004589515085496505 + syst_JES_EtaIntercalibration_Stat70: 2.96059589e-03 + syst_JES_EtaIntercalibration_Stat71: 4.40998912e-04 + syst_JES_EtaIntercalibration_Stat72: 4.58951509e-04 syst_JES_EtaIntercalibration_Stat73: 0.0 syst_JES_EtaIntercalibration_Stat74: 0.0 syst_JES_EtaIntercalibration_Stat75: 0.0 - syst_JES_EtaIntercalibration_Stat76: 4.2357302499096896e-06 - syst_JES_EtaIntercalibration_Stat77: 4.2539167833891626e-08 - syst_JES_EtaIntercalibration_Stat78: 4.2539167833891626e-08 - syst_JES_EtaIntercalibration_Stat79: 1.1900921098805757e-05 + syst_JES_EtaIntercalibration_Stat76: 4.23573025e-06 + syst_JES_EtaIntercalibration_Stat77: 4.25391678e-08 + syst_JES_EtaIntercalibration_Stat78: 4.25391678e-08 + syst_JES_EtaIntercalibration_Stat79: 1.19009211e-05 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 1.1704333332146688e-05 - syst_JES_EtaIntercalibration_Stat81: 9.40272051057565e-05 - syst_JES_EtaIntercalibration_Stat82: 0.0015711227927822828 - syst_JES_EtaIntercalibration_Stat83: 0.0010617140113396827 - syst_JES_EtaIntercalibration_Stat84: 0.000528511293635245 - syst_JES_EtaIntercalibration_Stat85: 2.710752701280587e-06 + syst_JES_EtaIntercalibration_Stat80: 1.17043333e-05 + syst_JES_EtaIntercalibration_Stat81: 9.40272051e-05 + syst_JES_EtaIntercalibration_Stat82: 1.57112279e-03 + syst_JES_EtaIntercalibration_Stat83: 1.06171401e-03 + syst_JES_EtaIntercalibration_Stat84: 5.28511294e-04 + syst_JES_EtaIntercalibration_Stat85: 2.71075270e-06 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 2.1979639595543873e-05 + syst_JES_EtaIntercalibration_Stat89: 2.19796396e-05 syst_JES_EtaIntercalibration_Stat9: 0.0 - syst_JES_EtaIntercalibration_Stat90: 0.0012922132592958486 - syst_JES_EtaIntercalibration_Stat91: 0.0053266697851471895 - syst_JES_EtaIntercalibration_Stat92: 0.004147955408089629 - syst_JES_EtaIntercalibration_Stat93: 0.000978855745245437 + syst_JES_EtaIntercalibration_Stat90: 1.29221326e-03 + syst_JES_EtaIntercalibration_Stat91: 5.32666979e-03 + syst_JES_EtaIntercalibration_Stat92: 4.14795541e-03 + syst_JES_EtaIntercalibration_Stat93: 9.78855745e-04 syst_JES_EtaIntercalibration_Stat94: 0.0 syst_JES_EtaIntercalibration_Stat95: 0.0 - syst_JES_EtaIntercalibration_Stat96: 0.0016982758168212844 - syst_JES_EtaIntercalibration_Stat97: 4.2357302499096896e-06 - syst_JES_EtaIntercalibration_Stat98: 4.2539167833891626e-08 - syst_JES_EtaIntercalibration_Stat99: 4.2539167833891626e-08 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.020312755075321515 - syst_JES_Flavour_Comp: 0.21318857849331424 - syst_JES_Gjet_Generator: 2.443563944323946 - syst_JES_Gjet_OOC: 1.468082422754254 - syst_JES_Gjet_Purity: 0.45437881497710697 - syst_JES_Gjet_Stat1: 0.0011401224440822134 - syst_JES_Gjet_Stat10: 0.15621158303723828 - syst_JES_Gjet_Stat11: 0.13314700400309426 - syst_JES_Gjet_Stat12: 0.01124895198451838 - syst_JES_Gjet_Stat13: 0.01777027011612373 - syst_JES_Gjet_Stat14: 0.002522825500802622 - syst_JES_Gjet_Stat15: 3.5833927390628003e-10 + syst_JES_EtaIntercalibration_Stat96: 1.69827582e-03 + syst_JES_EtaIntercalibration_Stat97: 4.23573025e-06 + syst_JES_EtaIntercalibration_Stat98: 4.25391678e-08 + syst_JES_EtaIntercalibration_Stat99: 4.25391678e-08 + syst_JES_EtaIntercalibration_TotalStat_MJB: 2.03127551e-02 + syst_JES_Flavour_Comp: 2.13188578e-01 + syst_JES_Gjet_Generator: 2.44356394e+00 + syst_JES_Gjet_OOC: 1.46808242e+00 + syst_JES_Gjet_Purity: 4.54378815e-01 + syst_JES_Gjet_Stat1: 1.14012244e-03 + syst_JES_Gjet_Stat10: 1.56211583e-01 + syst_JES_Gjet_Stat11: 1.33147004e-01 + syst_JES_Gjet_Stat12: 1.12489520e-02 + syst_JES_Gjet_Stat13: 1.77702701e-02 + syst_JES_Gjet_Stat14: 2.52282550e-03 + syst_JES_Gjet_Stat15: 3.58339274e-10 syst_JES_Gjet_Stat2: 0.0 - syst_JES_Gjet_Stat3: 7.902481809533001e-05 - syst_JES_Gjet_Stat4: 0.002856937996540177 - syst_JES_Gjet_Stat5: 0.001350156571476064 - syst_JES_Gjet_Stat6: 0.025910204553418716 - syst_JES_Gjet_Stat7: 0.0395050816351517 - syst_JES_Gjet_Stat8: 0.0420813153311538 - syst_JES_Gjet_Stat9: 0.11780038741447331 - syst_JES_Gjet_Veto: 0.6352500983864544 - syst_JES_Gjet_dPhi: 0.13455395599907122 - syst_JES_LArESZee: 2.582632523221219 - syst_JES_LArEsmear: 0.18121260303853043 - syst_JES_LAr_JVT: 0.28238990775167583 - syst_JES_MJB_Alpha: 9.095864815947958e-08 - syst_JES_MJB_Asym: 0.0035892915735559854 - syst_JES_MJB_Beta: 5.179697940034727e-37 - syst_JES_MJB_Stat1: 0.00015441232949476541 + syst_JES_Gjet_Stat3: 7.90248181e-05 + syst_JES_Gjet_Stat4: 2.85693800e-03 + syst_JES_Gjet_Stat5: 1.35015657e-03 + syst_JES_Gjet_Stat6: 2.59102046e-02 + syst_JES_Gjet_Stat7: 3.95050816e-02 + syst_JES_Gjet_Stat8: 4.20813153e-02 + syst_JES_Gjet_Stat9: 1.17800387e-01 + syst_JES_Gjet_Veto: 6.35250098e-01 + syst_JES_Gjet_dPhi: 1.34553956e-01 + syst_JES_LArESZee: 2.58263252e+00 + syst_JES_LArEsmear: 1.81212603e-01 + syst_JES_LAr_JVT: 2.82389908e-01 + syst_JES_MJB_Alpha: 9.09586482e-08 + syst_JES_MJB_Asym: 3.58929157e-03 + syst_JES_MJB_Beta: 5.17969794e-37 + syst_JES_MJB_Stat1: 1.54412329e-04 syst_JES_MJB_Stat10: 0.0 - syst_JES_MJB_Stat11: 9.390313453234669e-20 + syst_JES_MJB_Stat11: 9.39031345e-20 syst_JES_MJB_Stat12: 0.0 syst_JES_MJB_Stat13: 0.0 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 0.0014836162269266267 - syst_JES_MJB_Stat3: 0.0001758806445788379 - syst_JES_MJB_Stat4: 8.96336292916894e-14 - syst_JES_MJB_Stat5: 1.7640937475089017e-06 + syst_JES_MJB_Stat2: 1.48361623e-03 + syst_JES_MJB_Stat3: 1.75880645e-04 + syst_JES_MJB_Stat4: 8.96336293e-14 + syst_JES_MJB_Stat5: 1.76409375e-06 syst_JES_MJB_Stat6: 0.0 - syst_JES_MJB_Stat7: 3.736899617329852e-29 + syst_JES_MJB_Stat7: 3.73689962e-29 syst_JES_MJB_Stat8: 0.0 syst_JES_MJB_Stat9: 0.0 - syst_JES_MJB_Threshold: 0.0003009925082124138 - syst_JES_Pileup_MuOffset: 0.008800114344984388 - syst_JES_Pileup_NPVOffset: 0.11935315705920811 - syst_JES_Pileup_Pt_term: 0.7684757445749345 - syst_JES_PunchThrough_MC15: 0.0003171703238979137 + syst_JES_MJB_Threshold: 3.00992508e-04 + syst_JES_Pileup_MuOffset: 8.80011434e-03 + syst_JES_Pileup_NPVOffset: 1.19353157e-01 + syst_JES_Pileup_Pt_term: 7.68475745e-01 + syst_JES_PunchThrough_MC15: 3.17170324e-04 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 2.2455250499604764 - syst_JES_Zjet_MuScale: 0.13975452872805233 - syst_JES_Zjet_MuSmearID: 0.024110310553785905 - syst_JES_Zjet_MuSmearMS: 0.22132082482224757 - syst_JES_Zjet_OOC: 0.7696747023905619 - syst_JES_Zjet_Stat1: 0.010942293290288832 - syst_JES_Zjet_Stat10: 0.24428663491890013 - syst_JES_Zjet_Stat11: 0.32656472559050215 - syst_JES_Zjet_Stat12: 0.28157266824036736 - syst_JES_Zjet_Stat13: 0.019955895789214775 - syst_JES_Zjet_Stat2: 0.0010232466271627774 - syst_JES_Zjet_Stat3: 0.00010832245750535758 - syst_JES_Zjet_Stat4: 5.802438501828348e-05 - syst_JES_Zjet_Stat5: 8.110761431579651e-05 - syst_JES_Zjet_Stat6: 0.014125487708394354 - syst_JES_Zjet_Stat7: 0.020028291864260417 - syst_JES_Zjet_Stat8: 0.029375531910077815 - syst_JES_Zjet_Stat9: 0.0929842696373962 - syst_JES_Zjet_Veto: 0.1364866589634313 - syst_JES_Zjet_dPhi: 0.1771282868431804 + syst_JES_Zjet_MC: 2.24552505e+00 + syst_JES_Zjet_MuScale: 1.39754529e-01 + syst_JES_Zjet_MuSmearID: 2.41103106e-02 + syst_JES_Zjet_MuSmearMS: 2.21320825e-01 + syst_JES_Zjet_OOC: 7.69674702e-01 + syst_JES_Zjet_Stat1: 1.09422933e-02 + syst_JES_Zjet_Stat10: 2.44286635e-01 + syst_JES_Zjet_Stat11: 3.26564726e-01 + syst_JES_Zjet_Stat12: 2.81572668e-01 + syst_JES_Zjet_Stat13: 1.99558958e-02 + syst_JES_Zjet_Stat2: 1.02324663e-03 + syst_JES_Zjet_Stat3: 1.08322458e-04 + syst_JES_Zjet_Stat4: 5.80243850e-05 + syst_JES_Zjet_Stat5: 8.11076143e-05 + syst_JES_Zjet_Stat6: 1.41254877e-02 + syst_JES_Zjet_Stat7: 2.00282919e-02 + syst_JES_Zjet_Stat8: 2.93755319e-02 + syst_JES_Zjet_Stat9: 9.29842696e-02 + syst_JES_Zjet_Veto: 1.36486659e-01 + syst_JES_Zjet_dPhi: 1.77128287e-01 syst_PRW: 0.0 syst_Unfolding_bias: 0.0 - syst_cleaning: 0.5852599678775237 + syst_cleaning: 5.85259968e-01 syst_lumi: 2.389 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 2.294879245189167 - syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.015377368221106627 - syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.19655210505105256 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 2.023847017439806 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.020283803267632034 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.7891109110891826 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 2.29487925e+00 + syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.53773682e-02 + syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.96552105e-01 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 2.02384702e+00 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 2.02838033e-02 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 7.89110911e-01 - stat: 0.5589 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.7167769579862344 - syst_JER_NP1: 0.1100736783931563 - syst_JER_NP2: 0.05623643547558825 - syst_JER_NP3: 0.2304454978948385 - syst_JER_NP4: 0.05337635501792905 - syst_JER_NP5: 0.06188610183231773 - syst_JER_NP6: 0.057984927998575624 - syst_JER_NP7: 6.146327928120984e-05 - syst_JER_NP8: 0.03201352682851422 - syst_JES_EtaIntercalibration_Modelling: 1.6334111546086614 - syst_JES_EtaIntercalibration_NonClosure: 1.193953504119821 + syst_JER_NP0: 7.16776958e-01 + syst_JER_NP1: 1.10073678e-01 + syst_JER_NP2: 5.62364355e-02 + syst_JER_NP3: 2.30445498e-01 + syst_JER_NP4: 5.33763550e-02 + syst_JER_NP5: 6.18861018e-02 + syst_JER_NP6: 5.79849280e-02 + syst_JER_NP7: 6.14632793e-05 + syst_JER_NP8: 3.20135268e-02 + syst_JES_EtaIntercalibration_Modelling: 1.63341115e+00 + syst_JES_EtaIntercalibration_NonClosure: 1.19395350e+00 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 2.463842273766728e-09 + syst_JES_EtaIntercalibration_Stat100: 2.46384227e-09 syst_JES_EtaIntercalibration_Stat101: 0.0 - syst_JES_EtaIntercalibration_Stat102: 0.00013434943245135055 - syst_JES_EtaIntercalibration_Stat103: 0.00034024216375987267 - syst_JES_EtaIntercalibration_Stat104: 0.002398707568671096 - syst_JES_EtaIntercalibration_Stat105: 0.00015633520940594282 - syst_JES_EtaIntercalibration_Stat106: 1.4768130382685547e-05 + syst_JES_EtaIntercalibration_Stat102: 1.34349432e-04 + syst_JES_EtaIntercalibration_Stat103: 3.40242164e-04 + syst_JES_EtaIntercalibration_Stat104: 2.39870757e-03 + syst_JES_EtaIntercalibration_Stat105: 1.56335209e-04 + syst_JES_EtaIntercalibration_Stat106: 1.47681304e-05 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 0.00023482453023481175 + syst_JES_EtaIntercalibration_Stat109: 2.34824530e-04 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 0.006955536715451943 - syst_JES_EtaIntercalibration_Stat111: 0.029571694236211764 - syst_JES_EtaIntercalibration_Stat112: 0.016556161239852676 - syst_JES_EtaIntercalibration_Stat113: 0.00015694649024428677 - syst_JES_EtaIntercalibration_Stat114: 6.182555357617108e-05 + syst_JES_EtaIntercalibration_Stat110: 6.95553672e-03 + syst_JES_EtaIntercalibration_Stat111: 2.95716942e-02 + syst_JES_EtaIntercalibration_Stat112: 1.65561612e-02 + syst_JES_EtaIntercalibration_Stat113: 1.56946490e-04 + syst_JES_EtaIntercalibration_Stat114: 6.18255536e-05 syst_JES_EtaIntercalibration_Stat115: 0.0 - syst_JES_EtaIntercalibration_Stat116: 0.0004131807201455557 - syst_JES_EtaIntercalibration_Stat117: 0.0002974797261999547 - syst_JES_EtaIntercalibration_Stat118: 2.463842273766728e-09 - syst_JES_EtaIntercalibration_Stat119: 2.463842273766728e-09 + syst_JES_EtaIntercalibration_Stat116: 4.13180720e-04 + syst_JES_EtaIntercalibration_Stat117: 2.97479726e-04 + syst_JES_EtaIntercalibration_Stat118: 2.46384227e-09 + syst_JES_EtaIntercalibration_Stat119: 2.46384227e-09 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 2.463842273766728e-09 - syst_JES_EtaIntercalibration_Stat121: 2.981725465229822e-06 - syst_JES_EtaIntercalibration_Stat122: 0.0002582147871443462 - syst_JES_EtaIntercalibration_Stat123: 0.015436722450053961 - syst_JES_EtaIntercalibration_Stat124: 0.02324000430292559 - syst_JES_EtaIntercalibration_Stat125: 0.009116592784587891 - syst_JES_EtaIntercalibration_Stat126: 0.0005651306110095258 + syst_JES_EtaIntercalibration_Stat120: 2.46384227e-09 + syst_JES_EtaIntercalibration_Stat121: 2.98172547e-06 + syst_JES_EtaIntercalibration_Stat122: 2.58214787e-04 + syst_JES_EtaIntercalibration_Stat123: 1.54367225e-02 + syst_JES_EtaIntercalibration_Stat124: 2.32400043e-02 + syst_JES_EtaIntercalibration_Stat125: 9.11659278e-03 + syst_JES_EtaIntercalibration_Stat126: 5.65130611e-04 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 0.0023260440064624744 - syst_JES_EtaIntercalibration_Stat129: 0.10716223401926632 + syst_JES_EtaIntercalibration_Stat128: 2.32604401e-03 + syst_JES_EtaIntercalibration_Stat129: 1.07162234e-01 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 0.22372543440565715 - syst_JES_EtaIntercalibration_Stat131: 0.09195458376285545 - syst_JES_EtaIntercalibration_Stat132: 0.0085487962164272 - syst_JES_EtaIntercalibration_Stat133: 0.00011391649781748032 + syst_JES_EtaIntercalibration_Stat130: 2.23725434e-01 + syst_JES_EtaIntercalibration_Stat131: 9.19545838e-02 + syst_JES_EtaIntercalibration_Stat132: 8.54879622e-03 + syst_JES_EtaIntercalibration_Stat133: 1.13916498e-04 syst_JES_EtaIntercalibration_Stat134: 0.0 - syst_JES_EtaIntercalibration_Stat135: 0.0004131807201455557 - syst_JES_EtaIntercalibration_Stat136: 0.0004131807201455557 - syst_JES_EtaIntercalibration_Stat137: 2.463842273766728e-09 - syst_JES_EtaIntercalibration_Stat138: 2.463842273766728e-09 - syst_JES_EtaIntercalibration_Stat139: 2.463842273766728e-09 + syst_JES_EtaIntercalibration_Stat135: 4.13180720e-04 + syst_JES_EtaIntercalibration_Stat136: 4.13180720e-04 + syst_JES_EtaIntercalibration_Stat137: 2.46384227e-09 + syst_JES_EtaIntercalibration_Stat138: 2.46384227e-09 + syst_JES_EtaIntercalibration_Stat139: 2.46384227e-09 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 1.8177873225435368e-06 - syst_JES_EtaIntercalibration_Stat141: 0.006094743636938308 - syst_JES_EtaIntercalibration_Stat142: 0.06927930481031114 - syst_JES_EtaIntercalibration_Stat143: 0.18400524449047642 - syst_JES_EtaIntercalibration_Stat144: 0.09842854921210613 - syst_JES_EtaIntercalibration_Stat145: 0.0012783085337663986 - syst_JES_EtaIntercalibration_Stat146: 0.002077199075678593 - syst_JES_EtaIntercalibration_Stat147: 0.06113722434000419 - syst_JES_EtaIntercalibration_Stat148: 0.1451961321798897 - syst_JES_EtaIntercalibration_Stat149: 0.05502847512879128 + syst_JES_EtaIntercalibration_Stat140: 1.81778732e-06 + syst_JES_EtaIntercalibration_Stat141: 6.09474364e-03 + syst_JES_EtaIntercalibration_Stat142: 6.92793048e-02 + syst_JES_EtaIntercalibration_Stat143: 1.84005244e-01 + syst_JES_EtaIntercalibration_Stat144: 9.84285492e-02 + syst_JES_EtaIntercalibration_Stat145: 1.27830853e-03 + syst_JES_EtaIntercalibration_Stat146: 2.07719908e-03 + syst_JES_EtaIntercalibration_Stat147: 6.11372243e-02 + syst_JES_EtaIntercalibration_Stat148: 1.45196132e-01 + syst_JES_EtaIntercalibration_Stat149: 5.50284751e-02 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 0.0026668683882036625 - syst_JES_EtaIntercalibration_Stat151: 6.21932435645545e-05 + syst_JES_EtaIntercalibration_Stat150: 2.66686839e-03 + syst_JES_EtaIntercalibration_Stat151: 6.21932436e-05 syst_JES_EtaIntercalibration_Stat152: 0.0 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 2.463842273766728e-09 + syst_JES_EtaIntercalibration_Stat156: 2.46384227e-09 syst_JES_EtaIntercalibration_Stat157: 0.0 syst_JES_EtaIntercalibration_Stat158: 0.0 - syst_JES_EtaIntercalibration_Stat159: 0.004776278258225749 - syst_JES_EtaIntercalibration_Stat16: 6.253052617001258e-05 - syst_JES_EtaIntercalibration_Stat160: 0.0684517879605785 - syst_JES_EtaIntercalibration_Stat161: 0.1360218379525876 - syst_JES_EtaIntercalibration_Stat162: 0.04746341083403088 - syst_JES_EtaIntercalibration_Stat163: 0.0002488255814822905 - syst_JES_EtaIntercalibration_Stat164: 0.002054402102802662 - syst_JES_EtaIntercalibration_Stat165: 0.04190311715135283 - syst_JES_EtaIntercalibration_Stat166: 0.08724965558671278 - syst_JES_EtaIntercalibration_Stat167: 0.03890863239693731 - syst_JES_EtaIntercalibration_Stat168: 0.004229922339712634 - syst_JES_EtaIntercalibration_Stat169: 6.21932435645545e-05 - syst_JES_EtaIntercalibration_Stat17: 1.2867279506764436e-05 + syst_JES_EtaIntercalibration_Stat159: 4.77627826e-03 + syst_JES_EtaIntercalibration_Stat16: 6.25305262e-05 + syst_JES_EtaIntercalibration_Stat160: 6.84517880e-02 + syst_JES_EtaIntercalibration_Stat161: 1.36021838e-01 + syst_JES_EtaIntercalibration_Stat162: 4.74634108e-02 + syst_JES_EtaIntercalibration_Stat163: 2.48825581e-04 + syst_JES_EtaIntercalibration_Stat164: 2.05440210e-03 + syst_JES_EtaIntercalibration_Stat165: 4.19031172e-02 + syst_JES_EtaIntercalibration_Stat166: 8.72496556e-02 + syst_JES_EtaIntercalibration_Stat167: 3.89086324e-02 + syst_JES_EtaIntercalibration_Stat168: 4.22992234e-03 + syst_JES_EtaIntercalibration_Stat169: 6.21932436e-05 + syst_JES_EtaIntercalibration_Stat17: 1.28672795e-05 syst_JES_EtaIntercalibration_Stat170: 0.0 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 syst_JES_EtaIntercalibration_Stat175: 0.0 - syst_JES_EtaIntercalibration_Stat176: 4.5249827347736924e-05 - syst_JES_EtaIntercalibration_Stat177: 4.7510153651614304e-05 - syst_JES_EtaIntercalibration_Stat178: 0.040020025924529336 - syst_JES_EtaIntercalibration_Stat179: 0.08491718598140191 - syst_JES_EtaIntercalibration_Stat18: 4.319085277000213e-09 - syst_JES_EtaIntercalibration_Stat180: 0.03745470998419291 - syst_JES_EtaIntercalibration_Stat181: 0.0007141385815618695 - syst_JES_EtaIntercalibration_Stat182: 0.006611207756529816 - syst_JES_EtaIntercalibration_Stat183: 0.008883144094294542 - syst_JES_EtaIntercalibration_Stat184: 0.00476000785188428 - syst_JES_EtaIntercalibration_Stat185: 0.003766643864237765 - syst_JES_EtaIntercalibration_Stat186: 9.536671746474238e-07 + syst_JES_EtaIntercalibration_Stat176: 4.52498273e-05 + syst_JES_EtaIntercalibration_Stat177: 4.75101537e-05 + syst_JES_EtaIntercalibration_Stat178: 4.00200259e-02 + syst_JES_EtaIntercalibration_Stat179: 8.49171860e-02 + syst_JES_EtaIntercalibration_Stat18: 4.31908528e-09 + syst_JES_EtaIntercalibration_Stat180: 3.74547100e-02 + syst_JES_EtaIntercalibration_Stat181: 7.14138582e-04 + syst_JES_EtaIntercalibration_Stat182: 6.61120776e-03 + syst_JES_EtaIntercalibration_Stat183: 8.88314409e-03 + syst_JES_EtaIntercalibration_Stat184: 4.76000785e-03 + syst_JES_EtaIntercalibration_Stat185: 3.76664386e-03 + syst_JES_EtaIntercalibration_Stat186: 9.53667175e-07 syst_JES_EtaIntercalibration_Stat187: 0.0 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 @@ -47315,31 +47315,31 @@ bins: syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 syst_JES_EtaIntercalibration_Stat192: 0.0 - syst_JES_EtaIntercalibration_Stat193: 0.00010882770373392979 - syst_JES_EtaIntercalibration_Stat194: 0.0028960327877114926 - syst_JES_EtaIntercalibration_Stat195: 0.005409167773327057 - syst_JES_EtaIntercalibration_Stat196: 0.01089389942812031 - syst_JES_EtaIntercalibration_Stat197: 0.006164519097829124 - syst_JES_EtaIntercalibration_Stat198: 0.010845910335236967 - syst_JES_EtaIntercalibration_Stat199: 0.007543268986321514 + syst_JES_EtaIntercalibration_Stat193: 1.08827704e-04 + syst_JES_EtaIntercalibration_Stat194: 2.89603279e-03 + syst_JES_EtaIntercalibration_Stat195: 5.40916777e-03 + syst_JES_EtaIntercalibration_Stat196: 1.08938994e-02 + syst_JES_EtaIntercalibration_Stat197: 6.16451910e-03 + syst_JES_EtaIntercalibration_Stat198: 1.08459103e-02 + syst_JES_EtaIntercalibration_Stat199: 7.54326899e-03 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 0.0016297586286011803 - syst_JES_EtaIntercalibration_Stat201: 9.536671746474238e-07 + syst_JES_EtaIntercalibration_Stat200: 1.62975863e-03 + syst_JES_EtaIntercalibration_Stat201: 9.53667175e-07 syst_JES_EtaIntercalibration_Stat202: 0.0 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 syst_JES_EtaIntercalibration_Stat207: 0.0 - syst_JES_EtaIntercalibration_Stat208: 4.371696238303846e-10 - syst_JES_EtaIntercalibration_Stat209: 4.852938264276087e-08 + syst_JES_EtaIntercalibration_Stat208: 4.37169624e-10 + syst_JES_EtaIntercalibration_Stat209: 4.85293826e-08 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 0.006043150233942558 - syst_JES_EtaIntercalibration_Stat211: 0.013560762036109918 - syst_JES_EtaIntercalibration_Stat212: 0.0001410821041096283 - syst_JES_EtaIntercalibration_Stat213: 9.932445356003728e-06 - syst_JES_EtaIntercalibration_Stat214: 9.536671746474238e-07 + syst_JES_EtaIntercalibration_Stat210: 6.04315023e-03 + syst_JES_EtaIntercalibration_Stat211: 1.35607620e-02 + syst_JES_EtaIntercalibration_Stat212: 1.41082104e-04 + syst_JES_EtaIntercalibration_Stat213: 9.93244536e-06 + syst_JES_EtaIntercalibration_Stat214: 9.53667175e-07 syst_JES_EtaIntercalibration_Stat215: 0.0 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 @@ -47347,11 +47347,11 @@ bins: syst_JES_EtaIntercalibration_Stat219: 0.0 syst_JES_EtaIntercalibration_Stat22: 0.0 syst_JES_EtaIntercalibration_Stat220: 0.0 - syst_JES_EtaIntercalibration_Stat221: 1.5285348376795342e-24 - syst_JES_EtaIntercalibration_Stat222: 2.2663885121591042e-10 - syst_JES_EtaIntercalibration_Stat223: 0.00029010419175703057 - syst_JES_EtaIntercalibration_Stat224: 1.4565060487344362e-07 - syst_JES_EtaIntercalibration_Stat225: 8.282698035664466e-10 + syst_JES_EtaIntercalibration_Stat221: 1.52853484e-24 + syst_JES_EtaIntercalibration_Stat222: 2.26638851e-10 + syst_JES_EtaIntercalibration_Stat223: 2.90104192e-04 + syst_JES_EtaIntercalibration_Stat224: 1.45650605e-07 + syst_JES_EtaIntercalibration_Stat225: 8.28269804e-10 syst_JES_EtaIntercalibration_Stat226: 0.0 syst_JES_EtaIntercalibration_Stat227: 0.0 syst_JES_EtaIntercalibration_Stat228: 0.0 @@ -47360,296 +47360,296 @@ bins: syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 syst_JES_EtaIntercalibration_Stat232: 0.0 - syst_JES_EtaIntercalibration_Stat233: 1.5285348376795342e-24 - syst_JES_EtaIntercalibration_Stat234: 9.500298679515293e-10 - syst_JES_EtaIntercalibration_Stat235: 9.44141000832074e-07 - syst_JES_EtaIntercalibration_Stat236: 3.0969068439331524e-35 + syst_JES_EtaIntercalibration_Stat233: 1.52853484e-24 + syst_JES_EtaIntercalibration_Stat234: 9.50029868e-10 + syst_JES_EtaIntercalibration_Stat235: 9.44141001e-07 + syst_JES_EtaIntercalibration_Stat236: 3.09690684e-35 syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 syst_JES_EtaIntercalibration_Stat239: 0.0 - syst_JES_EtaIntercalibration_Stat24: 1.3813105190361796e-08 + syst_JES_EtaIntercalibration_Stat24: 1.38131052e-08 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 syst_JES_EtaIntercalibration_Stat243: 0.0 - syst_JES_EtaIntercalibration_Stat244: 1.5285348376795342e-24 - syst_JES_EtaIntercalibration_Stat245: 7.645272264609025e-44 - syst_JES_EtaIntercalibration_Stat25: 4.153903465416595e-06 - syst_JES_EtaIntercalibration_Stat26: 0.00011204113920788203 - syst_JES_EtaIntercalibration_Stat27: 0.00010935959582953844 - syst_JES_EtaIntercalibration_Stat28: 9.719495604252054e-07 + syst_JES_EtaIntercalibration_Stat244: 1.52853484e-24 + syst_JES_EtaIntercalibration_Stat245: 7.64527226e-44 + syst_JES_EtaIntercalibration_Stat25: 4.15390347e-06 + syst_JES_EtaIntercalibration_Stat26: 1.12041139e-04 + syst_JES_EtaIntercalibration_Stat27: 1.09359596e-04 + syst_JES_EtaIntercalibration_Stat28: 9.71949560e-07 syst_JES_EtaIntercalibration_Stat29: 0.0 - syst_JES_EtaIntercalibration_Stat3: 2.528491832906525e-07 + syst_JES_EtaIntercalibration_Stat3: 2.52849183e-07 syst_JES_EtaIntercalibration_Stat30: 0.0 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 2.2949673200287624e-06 - syst_JES_EtaIntercalibration_Stat36: 2.2949673200287624e-06 - syst_JES_EtaIntercalibration_Stat37: 3.3883681883763383e-06 - syst_JES_EtaIntercalibration_Stat38: 5.280083782479214e-05 - syst_JES_EtaIntercalibration_Stat39: 2.660559903478965e-05 - syst_JES_EtaIntercalibration_Stat4: 0.00010571975186048584 - syst_JES_EtaIntercalibration_Stat40: 2.040215299300542e-05 + syst_JES_EtaIntercalibration_Stat35: 2.29496732e-06 + syst_JES_EtaIntercalibration_Stat36: 2.29496732e-06 + syst_JES_EtaIntercalibration_Stat37: 3.38836819e-06 + syst_JES_EtaIntercalibration_Stat38: 5.28008378e-05 + syst_JES_EtaIntercalibration_Stat39: 2.66055990e-05 + syst_JES_EtaIntercalibration_Stat4: 1.05719752e-04 + syst_JES_EtaIntercalibration_Stat40: 2.04021530e-05 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 syst_JES_EtaIntercalibration_Stat44: 0.0 syst_JES_EtaIntercalibration_Stat45: 0.0 - syst_JES_EtaIntercalibration_Stat46: 3.395838335374639e-07 - syst_JES_EtaIntercalibration_Stat47: 3.130808322143022e-05 - syst_JES_EtaIntercalibration_Stat48: 2.2227070589711098e-05 - syst_JES_EtaIntercalibration_Stat49: 0.0001821968693474177 - syst_JES_EtaIntercalibration_Stat5: 0.00010565381212200537 - syst_JES_EtaIntercalibration_Stat50: 3.391412638930863e-06 + syst_JES_EtaIntercalibration_Stat46: 3.39583834e-07 + syst_JES_EtaIntercalibration_Stat47: 3.13080832e-05 + syst_JES_EtaIntercalibration_Stat48: 2.22270706e-05 + syst_JES_EtaIntercalibration_Stat49: 1.82196869e-04 + syst_JES_EtaIntercalibration_Stat5: 1.05653812e-04 + syst_JES_EtaIntercalibration_Stat50: 3.39141264e-06 syst_JES_EtaIntercalibration_Stat51: 0.0 syst_JES_EtaIntercalibration_Stat52: 0.0 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 2.463842273766728e-09 - syst_JES_EtaIntercalibration_Stat57: 2.2949673200287624e-06 - syst_JES_EtaIntercalibration_Stat58: 2.2949673200287624e-06 - syst_JES_EtaIntercalibration_Stat59: 4.14683957580951e-06 + syst_JES_EtaIntercalibration_Stat56: 2.46384227e-09 + syst_JES_EtaIntercalibration_Stat57: 2.29496732e-06 + syst_JES_EtaIntercalibration_Stat58: 2.29496732e-06 + syst_JES_EtaIntercalibration_Stat59: 4.14683958e-06 syst_JES_EtaIntercalibration_Stat6: 0.0 - syst_JES_EtaIntercalibration_Stat60: 0.0002893991735907343 - syst_JES_EtaIntercalibration_Stat61: 0.00026151521117327 - syst_JES_EtaIntercalibration_Stat62: 3.9676765241133255e-05 - syst_JES_EtaIntercalibration_Stat63: 6.828602989768478e-08 + syst_JES_EtaIntercalibration_Stat60: 2.89399174e-04 + syst_JES_EtaIntercalibration_Stat61: 2.61515211e-04 + syst_JES_EtaIntercalibration_Stat62: 3.96767652e-05 + syst_JES_EtaIntercalibration_Stat63: 6.82860299e-08 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 2.3561950746913975e-06 - syst_JES_EtaIntercalibration_Stat69: 0.0007266758424497129 + syst_JES_EtaIntercalibration_Stat68: 2.35619507e-06 + syst_JES_EtaIntercalibration_Stat69: 7.26675842e-04 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 0.00037072015336639034 - syst_JES_EtaIntercalibration_Stat71: 0.00024399086048456818 - syst_JES_EtaIntercalibration_Stat72: 0.0001496336874771186 + syst_JES_EtaIntercalibration_Stat70: 3.70720153e-04 + syst_JES_EtaIntercalibration_Stat71: 2.43990860e-04 + syst_JES_EtaIntercalibration_Stat72: 1.49633687e-04 syst_JES_EtaIntercalibration_Stat73: 0.0 syst_JES_EtaIntercalibration_Stat74: 0.0 syst_JES_EtaIntercalibration_Stat75: 0.0 - syst_JES_EtaIntercalibration_Stat76: 3.729105388695793e-07 - syst_JES_EtaIntercalibration_Stat77: 2.463842273766728e-09 - syst_JES_EtaIntercalibration_Stat78: 2.463842273766728e-09 - syst_JES_EtaIntercalibration_Stat79: 2.2949673200287624e-06 + syst_JES_EtaIntercalibration_Stat76: 3.72910539e-07 + syst_JES_EtaIntercalibration_Stat77: 2.46384227e-09 + syst_JES_EtaIntercalibration_Stat78: 2.46384227e-09 + syst_JES_EtaIntercalibration_Stat79: 2.29496732e-06 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 2.2681205325114447e-06 - syst_JES_EtaIntercalibration_Stat81: 1.7353048723495248e-05 - syst_JES_EtaIntercalibration_Stat82: 0.0004813587351186223 - syst_JES_EtaIntercalibration_Stat83: 0.0010582825898596273 - syst_JES_EtaIntercalibration_Stat84: 0.0004443553532928348 - syst_JES_EtaIntercalibration_Stat85: 3.009962821614247e-07 + syst_JES_EtaIntercalibration_Stat80: 2.26812053e-06 + syst_JES_EtaIntercalibration_Stat81: 1.73530487e-05 + syst_JES_EtaIntercalibration_Stat82: 4.81358735e-04 + syst_JES_EtaIntercalibration_Stat83: 1.05828259e-03 + syst_JES_EtaIntercalibration_Stat84: 4.44355353e-04 + syst_JES_EtaIntercalibration_Stat85: 3.00996282e-07 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 3.611044119087996e-06 + syst_JES_EtaIntercalibration_Stat89: 3.61104412e-06 syst_JES_EtaIntercalibration_Stat9: 0.0 - syst_JES_EtaIntercalibration_Stat90: 0.0008510840308101192 - syst_JES_EtaIntercalibration_Stat91: 0.0007999103496642609 - syst_JES_EtaIntercalibration_Stat92: 0.0010670304904265857 - syst_JES_EtaIntercalibration_Stat93: 0.00010185826328776668 + syst_JES_EtaIntercalibration_Stat90: 8.51084031e-04 + syst_JES_EtaIntercalibration_Stat91: 7.99910350e-04 + syst_JES_EtaIntercalibration_Stat92: 1.06703049e-03 + syst_JES_EtaIntercalibration_Stat93: 1.01858263e-04 syst_JES_EtaIntercalibration_Stat94: 0.0 syst_JES_EtaIntercalibration_Stat95: 0.0 - syst_JES_EtaIntercalibration_Stat96: 0.0002974797261999547 - syst_JES_EtaIntercalibration_Stat97: 3.729105388695793e-07 - syst_JES_EtaIntercalibration_Stat98: 2.463842273766728e-09 - syst_JES_EtaIntercalibration_Stat99: 2.463842273766728e-09 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.009080250037856888 - syst_JES_Flavour_Comp: 0.15074762751035256 - syst_JES_Gjet_Generator: 1.3411826301812888 - syst_JES_Gjet_OOC: 0.8412570400894129 - syst_JES_Gjet_Purity: 0.2563624192427587 - syst_JES_Gjet_Stat1: 0.0006330645701664246 - syst_JES_Gjet_Stat10: 0.08530662503580833 - syst_JES_Gjet_Stat11: 0.11447264258328275 - syst_JES_Gjet_Stat12: 0.024291146535311996 - syst_JES_Gjet_Stat13: 0.009129357959352892 - syst_JES_Gjet_Stat14: 0.005053767381864741 - syst_JES_Gjet_Stat15: 1.7147938370763407e-07 - syst_JES_Gjet_Stat2: 4.3154045870578575e-35 - syst_JES_Gjet_Stat3: 6.947255789158767e-06 - syst_JES_Gjet_Stat4: 0.0017812231912795208 - syst_JES_Gjet_Stat5: 0.001388455545516312 - syst_JES_Gjet_Stat6: 0.012704910891068854 - syst_JES_Gjet_Stat7: 0.017309884459464193 - syst_JES_Gjet_Stat8: 0.019055715677979666 - syst_JES_Gjet_Stat9: 0.05272985563226966 - syst_JES_Gjet_Veto: 0.35861069420752084 - syst_JES_Gjet_dPhi: 0.06472792036671655 - syst_JES_LArESZee: 1.533189078359222 - syst_JES_LArEsmear: 0.10851008570635265 - syst_JES_LAr_JVT: 0.16185326688083873 - syst_JES_MJB_Alpha: 7.440024243912113e-06 - syst_JES_MJB_Asym: 0.0076448551462732104 - syst_JES_MJB_Beta: 6.631156516777447e-28 - syst_JES_MJB_Stat1: 0.0008820468737544509 + syst_JES_EtaIntercalibration_Stat96: 2.97479726e-04 + syst_JES_EtaIntercalibration_Stat97: 3.72910539e-07 + syst_JES_EtaIntercalibration_Stat98: 2.46384227e-09 + syst_JES_EtaIntercalibration_Stat99: 2.46384227e-09 + syst_JES_EtaIntercalibration_TotalStat_MJB: 9.08025004e-03 + syst_JES_Flavour_Comp: 1.50747628e-01 + syst_JES_Gjet_Generator: 1.34118263e+00 + syst_JES_Gjet_OOC: 8.41257040e-01 + syst_JES_Gjet_Purity: 2.56362419e-01 + syst_JES_Gjet_Stat1: 6.33064570e-04 + syst_JES_Gjet_Stat10: 8.53066250e-02 + syst_JES_Gjet_Stat11: 1.14472643e-01 + syst_JES_Gjet_Stat12: 2.42911465e-02 + syst_JES_Gjet_Stat13: 9.12935796e-03 + syst_JES_Gjet_Stat14: 5.05376738e-03 + syst_JES_Gjet_Stat15: 1.71479384e-07 + syst_JES_Gjet_Stat2: 4.31540459e-35 + syst_JES_Gjet_Stat3: 6.94725579e-06 + syst_JES_Gjet_Stat4: 1.78122319e-03 + syst_JES_Gjet_Stat5: 1.38845555e-03 + syst_JES_Gjet_Stat6: 1.27049109e-02 + syst_JES_Gjet_Stat7: 1.73098845e-02 + syst_JES_Gjet_Stat8: 1.90557157e-02 + syst_JES_Gjet_Stat9: 5.27298556e-02 + syst_JES_Gjet_Veto: 3.58610694e-01 + syst_JES_Gjet_dPhi: 6.47279204e-02 + syst_JES_LArESZee: 1.53318908e+00 + syst_JES_LArEsmear: 1.08510086e-01 + syst_JES_LAr_JVT: 1.61853267e-01 + syst_JES_MJB_Alpha: 7.44002424e-06 + syst_JES_MJB_Asym: 7.64485515e-03 + syst_JES_MJB_Beta: 6.63115652e-28 + syst_JES_MJB_Stat1: 8.82046874e-04 syst_JES_MJB_Stat10: 0.0 - syst_JES_MJB_Stat11: 4.492939794833668e-15 + syst_JES_MJB_Stat11: 4.49293979e-15 syst_JES_MJB_Stat12: 0.0 syst_JES_MJB_Stat13: 0.0 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 0.0009211038310092951 - syst_JES_MJB_Stat3: 0.00011409883467853648 - syst_JES_MJB_Stat4: 3.551570180919983e-10 - syst_JES_MJB_Stat5: 3.36866561564071e-05 + syst_JES_MJB_Stat2: 9.21103831e-04 + syst_JES_MJB_Stat3: 1.14098835e-04 + syst_JES_MJB_Stat4: 3.55157018e-10 + syst_JES_MJB_Stat5: 3.36866562e-05 syst_JES_MJB_Stat6: 0.0 - syst_JES_MJB_Stat7: 9.691690293751651e-22 + syst_JES_MJB_Stat7: 9.69169029e-22 syst_JES_MJB_Stat8: 0.0 syst_JES_MJB_Stat9: 0.0 - syst_JES_MJB_Threshold: 0.00020951445654178615 - syst_JES_Pileup_MuOffset: 0.01941152796742183 - syst_JES_Pileup_NPVOffset: 0.0695808831504746 - syst_JES_Pileup_Pt_term: 0.42111958812194905 - syst_JES_PunchThrough_MC15: 0.0018072865034838832 + syst_JES_MJB_Threshold: 2.09514457e-04 + syst_JES_Pileup_MuOffset: 1.94115280e-02 + syst_JES_Pileup_NPVOffset: 6.95808832e-02 + syst_JES_Pileup_Pt_term: 4.21119588e-01 + syst_JES_PunchThrough_MC15: 1.80728650e-03 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 1.2410798201566249 - syst_JES_Zjet_MuScale: 0.07386217892128555 - syst_JES_Zjet_MuSmearID: 0.012878079592858556 - syst_JES_Zjet_MuSmearMS: 0.14587363435521855 - syst_JES_Zjet_OOC: 0.41927216399374767 - syst_JES_Zjet_Stat1: 0.006056585494347186 - syst_JES_Zjet_Stat10: 0.10211420603912073 - syst_JES_Zjet_Stat11: 0.17278544498886472 - syst_JES_Zjet_Stat12: 0.25970972257503183 - syst_JES_Zjet_Stat13: 0.005938286874175075 - syst_JES_Zjet_Stat2: 0.0005752936358938799 - syst_JES_Zjet_Stat3: 0.0006186885484636029 - syst_JES_Zjet_Stat4: 5.122815931692256e-06 - syst_JES_Zjet_Stat5: 7.145340276536871e-06 - syst_JES_Zjet_Stat6: 0.0077907869307278586 - syst_JES_Zjet_Stat7: 0.009714963342699756 - syst_JES_Zjet_Stat8: 0.013802692155880316 - syst_JES_Zjet_Stat9: 0.038255752508609735 - syst_JES_Zjet_Veto: 0.07193091685777403 - syst_JES_Zjet_dPhi: 0.08428744434967761 + syst_JES_Zjet_MC: 1.24107982e+00 + syst_JES_Zjet_MuScale: 7.38621789e-02 + syst_JES_Zjet_MuSmearID: 1.28780796e-02 + syst_JES_Zjet_MuSmearMS: 1.45873634e-01 + syst_JES_Zjet_OOC: 4.19272164e-01 + syst_JES_Zjet_Stat1: 6.05658549e-03 + syst_JES_Zjet_Stat10: 1.02114206e-01 + syst_JES_Zjet_Stat11: 1.72785445e-01 + syst_JES_Zjet_Stat12: 2.59709723e-01 + syst_JES_Zjet_Stat13: 5.93828687e-03 + syst_JES_Zjet_Stat2: 5.75293636e-04 + syst_JES_Zjet_Stat3: 6.18688548e-04 + syst_JES_Zjet_Stat4: 5.12281593e-06 + syst_JES_Zjet_Stat5: 7.14534028e-06 + syst_JES_Zjet_Stat6: 7.79078693e-03 + syst_JES_Zjet_Stat7: 9.71496334e-03 + syst_JES_Zjet_Stat8: 1.38026922e-02 + syst_JES_Zjet_Stat9: 3.82557525e-02 + syst_JES_Zjet_Veto: 7.19309169e-02 + syst_JES_Zjet_dPhi: 8.42874443e-02 syst_PRW: 0.0 syst_Unfolding_bias: 0.0 - syst_cleaning: 0.31272177330656076 + syst_cleaning: 3.12721773e-01 syst_lumi: 1.3199 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 1.1352299007249589 - syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.00619390353492852 - syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.10208872317744011 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 1.0012384468746693 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.008286270813822102 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.4138957477433176 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 1.13522990e+00 + syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 6.19390353e-03 + syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.02088723e-01 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 1.00123845e+00 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 8.28627081e-03 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 4.13895748e-01 - stat: 0.31641 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.377288043144757 - syst_JER_NP1: 0.053477826246024616 - syst_JER_NP2: 0.027888097761410692 - syst_JER_NP3: 0.11577607125395124 - syst_JER_NP4: 0.029365341816501984 - syst_JER_NP5: 0.03039866896757159 - syst_JER_NP6: 0.019238843520336665 - syst_JER_NP7: 5.621530285429405e-06 - syst_JER_NP8: 0.0006188030603511912 - syst_JES_EtaIntercalibration_Modelling: 0.97234901527178 - syst_JES_EtaIntercalibration_NonClosure: 0.6059343281247563 + syst_JER_NP0: 3.77288043e-01 + syst_JER_NP1: 5.34778262e-02 + syst_JER_NP2: 2.78880978e-02 + syst_JER_NP3: 1.15776071e-01 + syst_JER_NP4: 2.93653418e-02 + syst_JER_NP5: 3.03986690e-02 + syst_JER_NP6: 1.92388435e-02 + syst_JER_NP7: 5.62153029e-06 + syst_JER_NP8: 6.18803060e-04 + syst_JES_EtaIntercalibration_Modelling: 9.72349015e-01 + syst_JES_EtaIntercalibration_NonClosure: 6.05934328e-01 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 2.086255197716713e-10 + syst_JES_EtaIntercalibration_Stat100: 2.08625520e-10 syst_JES_EtaIntercalibration_Stat101: 0.0 - syst_JES_EtaIntercalibration_Stat102: 4.2248153509946446e-05 - syst_JES_EtaIntercalibration_Stat103: 0.0002660458795020137 - syst_JES_EtaIntercalibration_Stat104: 0.0007074972420440944 - syst_JES_EtaIntercalibration_Stat105: 0.00016193893316617842 - syst_JES_EtaIntercalibration_Stat106: 2.3161102629192767e-06 + syst_JES_EtaIntercalibration_Stat102: 4.22481535e-05 + syst_JES_EtaIntercalibration_Stat103: 2.66045880e-04 + syst_JES_EtaIntercalibration_Stat104: 7.07497242e-04 + syst_JES_EtaIntercalibration_Stat105: 1.61938933e-04 + syst_JES_EtaIntercalibration_Stat106: 2.31611026e-06 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 4.0448596119024955e-05 + syst_JES_EtaIntercalibration_Stat109: 4.04485961e-05 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 0.0009718688427457689 - syst_JES_EtaIntercalibration_Stat111: 0.009232201958362914 - syst_JES_EtaIntercalibration_Stat112: 0.004591077732951164 - syst_JES_EtaIntercalibration_Stat113: 0.00013992919352301007 - syst_JES_EtaIntercalibration_Stat114: 1.0902393808242298e-05 + syst_JES_EtaIntercalibration_Stat110: 9.71868843e-04 + syst_JES_EtaIntercalibration_Stat111: 9.23220196e-03 + syst_JES_EtaIntercalibration_Stat112: 4.59107773e-03 + syst_JES_EtaIntercalibration_Stat113: 1.39929194e-04 + syst_JES_EtaIntercalibration_Stat114: 1.09023938e-05 syst_JES_EtaIntercalibration_Stat115: 0.0 - syst_JES_EtaIntercalibration_Stat116: 4.040874534058191e-05 - syst_JES_EtaIntercalibration_Stat117: 2.5409185347035432e-05 - syst_JES_EtaIntercalibration_Stat118: 2.086255197716713e-10 - syst_JES_EtaIntercalibration_Stat119: 2.086255197716713e-10 + syst_JES_EtaIntercalibration_Stat116: 4.04087453e-05 + syst_JES_EtaIntercalibration_Stat117: 2.54091853e-05 + syst_JES_EtaIntercalibration_Stat118: 2.08625520e-10 + syst_JES_EtaIntercalibration_Stat119: 2.08625520e-10 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 2.086255197716713e-10 - syst_JES_EtaIntercalibration_Stat121: 3.693598347140631e-07 - syst_JES_EtaIntercalibration_Stat122: 9.656916588642567e-05 - syst_JES_EtaIntercalibration_Stat123: 0.004830092623335499 - syst_JES_EtaIntercalibration_Stat124: 0.007705166497227688 - syst_JES_EtaIntercalibration_Stat125: 0.003184725972513177 - syst_JES_EtaIntercalibration_Stat126: 0.00027239303235398663 + syst_JES_EtaIntercalibration_Stat120: 2.08625520e-10 + syst_JES_EtaIntercalibration_Stat121: 3.69359835e-07 + syst_JES_EtaIntercalibration_Stat122: 9.65691659e-05 + syst_JES_EtaIntercalibration_Stat123: 4.83009262e-03 + syst_JES_EtaIntercalibration_Stat124: 7.70516650e-03 + syst_JES_EtaIntercalibration_Stat125: 3.18472597e-03 + syst_JES_EtaIntercalibration_Stat126: 2.72393032e-04 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 0.0007966676780188839 - syst_JES_EtaIntercalibration_Stat129: 0.03815528272729741 + syst_JES_EtaIntercalibration_Stat128: 7.96667678e-04 + syst_JES_EtaIntercalibration_Stat129: 3.81552827e-02 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 0.07462500033500837 - syst_JES_EtaIntercalibration_Stat131: 0.03204570954121627 - syst_JES_EtaIntercalibration_Stat132: 0.002409730430981856 - syst_JES_EtaIntercalibration_Stat133: 2.7129001211802838e-05 + syst_JES_EtaIntercalibration_Stat130: 7.46250003e-02 + syst_JES_EtaIntercalibration_Stat131: 3.20457095e-02 + syst_JES_EtaIntercalibration_Stat132: 2.40973043e-03 + syst_JES_EtaIntercalibration_Stat133: 2.71290012e-05 syst_JES_EtaIntercalibration_Stat134: 0.0 - syst_JES_EtaIntercalibration_Stat135: 4.040874534058191e-05 - syst_JES_EtaIntercalibration_Stat136: 4.040874534058191e-05 - syst_JES_EtaIntercalibration_Stat137: 2.086255197716713e-10 - syst_JES_EtaIntercalibration_Stat138: 2.086255197716713e-10 - syst_JES_EtaIntercalibration_Stat139: 2.086255197716713e-10 + syst_JES_EtaIntercalibration_Stat135: 4.04087453e-05 + syst_JES_EtaIntercalibration_Stat136: 4.04087453e-05 + syst_JES_EtaIntercalibration_Stat137: 2.08625520e-10 + syst_JES_EtaIntercalibration_Stat138: 2.08625520e-10 + syst_JES_EtaIntercalibration_Stat139: 2.08625520e-10 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 2.6067364653911604e-07 - syst_JES_EtaIntercalibration_Stat141: 0.00165757362430753 - syst_JES_EtaIntercalibration_Stat142: 0.025844159881876605 - syst_JES_EtaIntercalibration_Stat143: 0.06786191476078464 - syst_JES_EtaIntercalibration_Stat144: 0.03731108832505426 - syst_JES_EtaIntercalibration_Stat145: 0.0003329392201288398 - syst_JES_EtaIntercalibration_Stat146: 0.0013963572134307182 - syst_JES_EtaIntercalibration_Stat147: 0.027856059933163556 - syst_JES_EtaIntercalibration_Stat148: 0.06487140568077741 - syst_JES_EtaIntercalibration_Stat149: 0.025745428234931346 + syst_JES_EtaIntercalibration_Stat140: 2.60673647e-07 + syst_JES_EtaIntercalibration_Stat141: 1.65757362e-03 + syst_JES_EtaIntercalibration_Stat142: 2.58441599e-02 + syst_JES_EtaIntercalibration_Stat143: 6.78619148e-02 + syst_JES_EtaIntercalibration_Stat144: 3.73110883e-02 + syst_JES_EtaIntercalibration_Stat145: 3.32939220e-04 + syst_JES_EtaIntercalibration_Stat146: 1.39635721e-03 + syst_JES_EtaIntercalibration_Stat147: 2.78560599e-02 + syst_JES_EtaIntercalibration_Stat148: 6.48714057e-02 + syst_JES_EtaIntercalibration_Stat149: 2.57454282e-02 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 0.001203775410946743 - syst_JES_EtaIntercalibration_Stat151: 1.2515537263737422e-05 + syst_JES_EtaIntercalibration_Stat150: 1.20377541e-03 + syst_JES_EtaIntercalibration_Stat151: 1.25155373e-05 syst_JES_EtaIntercalibration_Stat152: 0.0 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 2.086255197716713e-10 + syst_JES_EtaIntercalibration_Stat156: 2.08625520e-10 syst_JES_EtaIntercalibration_Stat157: 0.0 syst_JES_EtaIntercalibration_Stat158: 0.0 - syst_JES_EtaIntercalibration_Stat159: 0.002694886407624633 - syst_JES_EtaIntercalibration_Stat16: 3.599231898699149e-05 - syst_JES_EtaIntercalibration_Stat160: 0.03092051543878271 - syst_JES_EtaIntercalibration_Stat161: 0.06344197092619365 - syst_JES_EtaIntercalibration_Stat162: 0.024891221344080325 - syst_JES_EtaIntercalibration_Stat163: 0.00018521058285098075 - syst_JES_EtaIntercalibration_Stat164: 0.0013188618606586515 - syst_JES_EtaIntercalibration_Stat165: 0.027028393866450888 - syst_JES_EtaIntercalibration_Stat166: 0.062499011192178065 - syst_JES_EtaIntercalibration_Stat167: 0.026642687552122065 - syst_JES_EtaIntercalibration_Stat168: 0.0023084969135781837 - syst_JES_EtaIntercalibration_Stat169: 1.2515537263737422e-05 - syst_JES_EtaIntercalibration_Stat17: 2.063577074046469e-06 + syst_JES_EtaIntercalibration_Stat159: 2.69488641e-03 + syst_JES_EtaIntercalibration_Stat16: 3.59923190e-05 + syst_JES_EtaIntercalibration_Stat160: 3.09205154e-02 + syst_JES_EtaIntercalibration_Stat161: 6.34419709e-02 + syst_JES_EtaIntercalibration_Stat162: 2.48912213e-02 + syst_JES_EtaIntercalibration_Stat163: 1.85210583e-04 + syst_JES_EtaIntercalibration_Stat164: 1.31886186e-03 + syst_JES_EtaIntercalibration_Stat165: 2.70283939e-02 + syst_JES_EtaIntercalibration_Stat166: 6.24990112e-02 + syst_JES_EtaIntercalibration_Stat167: 2.66426876e-02 + syst_JES_EtaIntercalibration_Stat168: 2.30849691e-03 + syst_JES_EtaIntercalibration_Stat169: 1.25155373e-05 + syst_JES_EtaIntercalibration_Stat17: 2.06357707e-06 syst_JES_EtaIntercalibration_Stat170: 0.0 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 syst_JES_EtaIntercalibration_Stat175: 0.0 - syst_JES_EtaIntercalibration_Stat176: 3.467565716752893e-05 - syst_JES_EtaIntercalibration_Stat177: 0.0010319558711495375 - syst_JES_EtaIntercalibration_Stat178: 0.03014162362912788 - syst_JES_EtaIntercalibration_Stat179: 0.06656824824944699 - syst_JES_EtaIntercalibration_Stat18: 3.747803073802037e-10 - syst_JES_EtaIntercalibration_Stat180: 0.028868347285565206 - syst_JES_EtaIntercalibration_Stat181: 0.00031956538669065834 - syst_JES_EtaIntercalibration_Stat182: 0.014874046255138511 - syst_JES_EtaIntercalibration_Stat183: 0.038378206054999496 - syst_JES_EtaIntercalibration_Stat184: 0.011930234322929285 - syst_JES_EtaIntercalibration_Stat185: 0.003059207904016986 - syst_JES_EtaIntercalibration_Stat186: 3.4944125042702103e-06 + syst_JES_EtaIntercalibration_Stat176: 3.46756572e-05 + syst_JES_EtaIntercalibration_Stat177: 1.03195587e-03 + syst_JES_EtaIntercalibration_Stat178: 3.01416236e-02 + syst_JES_EtaIntercalibration_Stat179: 6.65682482e-02 + syst_JES_EtaIntercalibration_Stat18: 3.74780307e-10 + syst_JES_EtaIntercalibration_Stat180: 2.88683473e-02 + syst_JES_EtaIntercalibration_Stat181: 3.19565387e-04 + syst_JES_EtaIntercalibration_Stat182: 1.48740463e-02 + syst_JES_EtaIntercalibration_Stat183: 3.83782061e-02 + syst_JES_EtaIntercalibration_Stat184: 1.19302343e-02 + syst_JES_EtaIntercalibration_Stat185: 3.05920790e-03 + syst_JES_EtaIntercalibration_Stat186: 3.49441250e-06 syst_JES_EtaIntercalibration_Stat187: 0.0 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 @@ -47657,31 +47657,31 @@ bins: syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 syst_JES_EtaIntercalibration_Stat192: 0.0 - syst_JES_EtaIntercalibration_Stat193: 0.0002403069899274676 - syst_JES_EtaIntercalibration_Stat194: 0.00256419461039914 - syst_JES_EtaIntercalibration_Stat195: 0.01741897456798189 - syst_JES_EtaIntercalibration_Stat196: 0.03967568079756162 - syst_JES_EtaIntercalibration_Stat197: 0.014908189049981892 - syst_JES_EtaIntercalibration_Stat198: 0.007016488451319506 - syst_JES_EtaIntercalibration_Stat199: 0.0069433321071370345 + syst_JES_EtaIntercalibration_Stat193: 2.40306990e-04 + syst_JES_EtaIntercalibration_Stat194: 2.56419461e-03 + syst_JES_EtaIntercalibration_Stat195: 1.74189746e-02 + syst_JES_EtaIntercalibration_Stat196: 3.96756808e-02 + syst_JES_EtaIntercalibration_Stat197: 1.49081890e-02 + syst_JES_EtaIntercalibration_Stat198: 7.01648845e-03 + syst_JES_EtaIntercalibration_Stat199: 6.94333211e-03 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 0.0008267343043566052 - syst_JES_EtaIntercalibration_Stat201: 3.4944125042702103e-06 + syst_JES_EtaIntercalibration_Stat200: 8.26734304e-04 + syst_JES_EtaIntercalibration_Stat201: 3.49441250e-06 syst_JES_EtaIntercalibration_Stat202: 0.0 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 syst_JES_EtaIntercalibration_Stat207: 0.0 - syst_JES_EtaIntercalibration_Stat208: 2.448253816498608e-08 - syst_JES_EtaIntercalibration_Stat209: 2.6826695435703593e-06 + syst_JES_EtaIntercalibration_Stat208: 2.44825382e-08 + syst_JES_EtaIntercalibration_Stat209: 2.68266954e-06 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 0.004333662048429711 - syst_JES_EtaIntercalibration_Stat211: 0.00780721550874574 - syst_JES_EtaIntercalibration_Stat212: 0.0003680358334456035 - syst_JES_EtaIntercalibration_Stat213: 3.6910002709292775e-05 - syst_JES_EtaIntercalibration_Stat214: 3.4944125042702103e-06 + syst_JES_EtaIntercalibration_Stat210: 4.33366205e-03 + syst_JES_EtaIntercalibration_Stat211: 7.80721551e-03 + syst_JES_EtaIntercalibration_Stat212: 3.68035833e-04 + syst_JES_EtaIntercalibration_Stat213: 3.69100027e-05 + syst_JES_EtaIntercalibration_Stat214: 3.49441250e-06 syst_JES_EtaIntercalibration_Stat215: 0.0 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 @@ -47689,11 +47689,11 @@ bins: syst_JES_EtaIntercalibration_Stat219: 0.0 syst_JES_EtaIntercalibration_Stat22: 0.0 syst_JES_EtaIntercalibration_Stat220: 0.0 - syst_JES_EtaIntercalibration_Stat221: 4.049534788096035e-19 - syst_JES_EtaIntercalibration_Stat222: 6.381746950916935e-08 - syst_JES_EtaIntercalibration_Stat223: 0.0006820592838419547 - syst_JES_EtaIntercalibration_Stat224: 2.2015247823951467e-06 - syst_JES_EtaIntercalibration_Stat225: 4.4322329586789546e-08 + syst_JES_EtaIntercalibration_Stat221: 4.04953479e-19 + syst_JES_EtaIntercalibration_Stat222: 6.38174695e-08 + syst_JES_EtaIntercalibration_Stat223: 6.82059284e-04 + syst_JES_EtaIntercalibration_Stat224: 2.20152478e-06 + syst_JES_EtaIntercalibration_Stat225: 4.43223296e-08 syst_JES_EtaIntercalibration_Stat226: 0.0 syst_JES_EtaIntercalibration_Stat227: 0.0 syst_JES_EtaIntercalibration_Stat228: 0.0 @@ -47702,296 +47702,296 @@ bins: syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 syst_JES_EtaIntercalibration_Stat232: 0.0 - syst_JES_EtaIntercalibration_Stat233: 4.049534788096035e-19 - syst_JES_EtaIntercalibration_Stat234: 5.071444764561673e-08 - syst_JES_EtaIntercalibration_Stat235: 3.6349151848080124e-06 - syst_JES_EtaIntercalibration_Stat236: 5.802370205355719e-27 + syst_JES_EtaIntercalibration_Stat233: 4.04953479e-19 + syst_JES_EtaIntercalibration_Stat234: 5.07144476e-08 + syst_JES_EtaIntercalibration_Stat235: 3.63491518e-06 + syst_JES_EtaIntercalibration_Stat236: 5.80237021e-27 syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 syst_JES_EtaIntercalibration_Stat239: 0.0 - syst_JES_EtaIntercalibration_Stat24: 1.0442534318832762e-09 + syst_JES_EtaIntercalibration_Stat24: 1.04425343e-09 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 syst_JES_EtaIntercalibration_Stat243: 0.0 - syst_JES_EtaIntercalibration_Stat244: 4.049534788096035e-19 - syst_JES_EtaIntercalibration_Stat245: 8.669206088650795e-34 - syst_JES_EtaIntercalibration_Stat25: 4.937168621791239e-07 - syst_JES_EtaIntercalibration_Stat26: 3.145514458319974e-05 - syst_JES_EtaIntercalibration_Stat27: 2.3565321194501042e-05 - syst_JES_EtaIntercalibration_Stat28: 9.841052193475045e-08 + syst_JES_EtaIntercalibration_Stat244: 4.04953479e-19 + syst_JES_EtaIntercalibration_Stat245: 8.66920609e-34 + syst_JES_EtaIntercalibration_Stat25: 4.93716862e-07 + syst_JES_EtaIntercalibration_Stat26: 3.14551446e-05 + syst_JES_EtaIntercalibration_Stat27: 2.35653212e-05 + syst_JES_EtaIntercalibration_Stat28: 9.84105219e-08 syst_JES_EtaIntercalibration_Stat29: 0.0 - syst_JES_EtaIntercalibration_Stat3: 2.5754560758630693e-08 + syst_JES_EtaIntercalibration_Stat3: 2.57545608e-08 syst_JES_EtaIntercalibration_Stat30: 0.0 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 3.1791792572926744e-07 - syst_JES_EtaIntercalibration_Stat36: 3.1791792572926744e-07 - syst_JES_EtaIntercalibration_Stat37: 4.172925237842993e-07 - syst_JES_EtaIntercalibration_Stat38: 3.406185888570969e-05 - syst_JES_EtaIntercalibration_Stat39: 1.8416828411808587e-05 - syst_JES_EtaIntercalibration_Stat4: 5.892316537380836e-05 - syst_JES_EtaIntercalibration_Stat40: 3.0195361915863837e-06 + syst_JES_EtaIntercalibration_Stat35: 3.17917926e-07 + syst_JES_EtaIntercalibration_Stat36: 3.17917926e-07 + syst_JES_EtaIntercalibration_Stat37: 4.17292524e-07 + syst_JES_EtaIntercalibration_Stat38: 3.40618589e-05 + syst_JES_EtaIntercalibration_Stat39: 1.84168284e-05 + syst_JES_EtaIntercalibration_Stat4: 5.89231654e-05 + syst_JES_EtaIntercalibration_Stat40: 3.01953619e-06 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 syst_JES_EtaIntercalibration_Stat44: 0.0 syst_JES_EtaIntercalibration_Stat45: 0.0 - syst_JES_EtaIntercalibration_Stat46: 3.4724194375103944e-08 - syst_JES_EtaIntercalibration_Stat47: 5.0995879000170194e-06 - syst_JES_EtaIntercalibration_Stat48: 0.00011653408363221466 - syst_JES_EtaIntercalibration_Stat49: 7.922297034793634e-05 - syst_JES_EtaIntercalibration_Stat5: 5.8880955356972926e-05 - syst_JES_EtaIntercalibration_Stat50: 4.131605589840347e-07 + syst_JES_EtaIntercalibration_Stat46: 3.47241944e-08 + syst_JES_EtaIntercalibration_Stat47: 5.09958790e-06 + syst_JES_EtaIntercalibration_Stat48: 1.16534084e-04 + syst_JES_EtaIntercalibration_Stat49: 7.92229703e-05 + syst_JES_EtaIntercalibration_Stat5: 5.88809554e-05 + syst_JES_EtaIntercalibration_Stat50: 4.13160559e-07 syst_JES_EtaIntercalibration_Stat51: 0.0 syst_JES_EtaIntercalibration_Stat52: 0.0 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 2.086255197716713e-10 - syst_JES_EtaIntercalibration_Stat57: 3.1791792572926744e-07 - syst_JES_EtaIntercalibration_Stat58: 3.1791792572926744e-07 - syst_JES_EtaIntercalibration_Stat59: 5.040639121182949e-07 + syst_JES_EtaIntercalibration_Stat56: 2.08625520e-10 + syst_JES_EtaIntercalibration_Stat57: 3.17917926e-07 + syst_JES_EtaIntercalibration_Stat58: 3.17917926e-07 + syst_JES_EtaIntercalibration_Stat59: 5.04063912e-07 syst_JES_EtaIntercalibration_Stat6: 0.0 - syst_JES_EtaIntercalibration_Stat60: 0.00032170680362715365 - syst_JES_EtaIntercalibration_Stat61: 0.0001091054955387216 - syst_JES_EtaIntercalibration_Stat62: 7.84684501885949e-06 - syst_JES_EtaIntercalibration_Stat63: 6.245946160516836e-09 + syst_JES_EtaIntercalibration_Stat60: 3.21706804e-04 + syst_JES_EtaIntercalibration_Stat61: 1.09105496e-04 + syst_JES_EtaIntercalibration_Stat62: 7.84684502e-06 + syst_JES_EtaIntercalibration_Stat63: 6.24594616e-09 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 3.00944338208912e-07 - syst_JES_EtaIntercalibration_Stat69: 0.00038141255844655926 + syst_JES_EtaIntercalibration_Stat68: 3.00944338e-07 + syst_JES_EtaIntercalibration_Stat69: 3.81412558e-04 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 0.0004778729407488982 - syst_JES_EtaIntercalibration_Stat71: 0.00010749203784467015 - syst_JES_EtaIntercalibration_Stat72: 6.763145246850758e-05 + syst_JES_EtaIntercalibration_Stat70: 4.77872941e-04 + syst_JES_EtaIntercalibration_Stat71: 1.07492038e-04 + syst_JES_EtaIntercalibration_Stat72: 6.76314525e-05 syst_JES_EtaIntercalibration_Stat73: 0.0 syst_JES_EtaIntercalibration_Stat74: 0.0 syst_JES_EtaIntercalibration_Stat75: 0.0 - syst_JES_EtaIntercalibration_Stat76: 3.411533873128039e-08 - syst_JES_EtaIntercalibration_Stat77: 2.086255197716713e-10 - syst_JES_EtaIntercalibration_Stat78: 2.086255197716713e-10 - syst_JES_EtaIntercalibration_Stat79: 3.1791792572926744e-07 + syst_JES_EtaIntercalibration_Stat76: 3.41153387e-08 + syst_JES_EtaIntercalibration_Stat77: 2.08625520e-10 + syst_JES_EtaIntercalibration_Stat78: 2.08625520e-10 + syst_JES_EtaIntercalibration_Stat79: 3.17917926e-07 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 3.14713631735265e-07 - syst_JES_EtaIntercalibration_Stat81: 2.649488063758733e-06 - syst_JES_EtaIntercalibration_Stat82: 0.00020047919468114392 - syst_JES_EtaIntercalibration_Stat83: 0.00045840084947565266 - syst_JES_EtaIntercalibration_Stat84: 0.00024190985650650944 - syst_JES_EtaIntercalibration_Stat85: 3.141224396234691e-08 + syst_JES_EtaIntercalibration_Stat80: 3.14713632e-07 + syst_JES_EtaIntercalibration_Stat81: 2.64948806e-06 + syst_JES_EtaIntercalibration_Stat82: 2.00479195e-04 + syst_JES_EtaIntercalibration_Stat83: 4.58400849e-04 + syst_JES_EtaIntercalibration_Stat84: 2.41909857e-04 + syst_JES_EtaIntercalibration_Stat85: 3.14122440e-08 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 4.7490585119579224e-07 + syst_JES_EtaIntercalibration_Stat89: 4.74905851e-07 syst_JES_EtaIntercalibration_Stat9: 0.0 - syst_JES_EtaIntercalibration_Stat90: 0.000421323910637647 - syst_JES_EtaIntercalibration_Stat91: 0.0006464518719904831 - syst_JES_EtaIntercalibration_Stat92: 3.570555792870348e-05 - syst_JES_EtaIntercalibration_Stat93: 3.562801982639507e-05 + syst_JES_EtaIntercalibration_Stat90: 4.21323911e-04 + syst_JES_EtaIntercalibration_Stat91: 6.46451872e-04 + syst_JES_EtaIntercalibration_Stat92: 3.57055579e-05 + syst_JES_EtaIntercalibration_Stat93: 3.56280198e-05 syst_JES_EtaIntercalibration_Stat94: 0.0 syst_JES_EtaIntercalibration_Stat95: 0.0 - syst_JES_EtaIntercalibration_Stat96: 2.5409185347035432e-05 - syst_JES_EtaIntercalibration_Stat97: 3.411533873128039e-08 - syst_JES_EtaIntercalibration_Stat98: 2.086255197716713e-10 - syst_JES_EtaIntercalibration_Stat99: 2.086255197716713e-10 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.014788671441343203 - syst_JES_Flavour_Comp: 0.128994896410672 - syst_JES_Gjet_Generator: 0.7761438204353623 - syst_JES_Gjet_OOC: 0.5036846831103761 - syst_JES_Gjet_Purity: 0.15953034194158802 - syst_JES_Gjet_Stat1: 0.0003645966949932486 - syst_JES_Gjet_Stat10: 0.0460343141037205 - syst_JES_Gjet_Stat11: 0.07977143646067807 - syst_JES_Gjet_Stat12: 0.04320410483970244 - syst_JES_Gjet_Stat13: 0.007376388886169166 - syst_JES_Gjet_Stat14: 0.006671284808790582 - syst_JES_Gjet_Stat15: 9.511430915876958e-06 - syst_JES_Gjet_Stat2: 8.086079195135303e-27 - syst_JES_Gjet_Stat3: 6.351430311355074e-07 - syst_JES_Gjet_Stat4: 0.0010477551094510349 - syst_JES_Gjet_Stat5: 0.00129078915927302 - syst_JES_Gjet_Stat6: 0.0068410710236044186 - syst_JES_Gjet_Stat7: 0.009274037241137217 - syst_JES_Gjet_Stat8: 0.009816565629078228 - syst_JES_Gjet_Stat9: 0.023446459754086543 - syst_JES_Gjet_Veto: 0.21735415224927265 - syst_JES_Gjet_dPhi: 0.035324260784905324 - syst_JES_LArESZee: 0.9437546079357705 - syst_JES_LArEsmear: 0.07182473877432483 - syst_JES_LAr_JVT: 0.10215670450342454 - syst_JES_MJB_Alpha: 0.00010923178417933124 - syst_JES_MJB_Asym: 0.009931442833244321 - syst_JES_MJB_Beta: 3.723909236273086e-21 - syst_JES_MJB_Stat1: 0.0018905334564614296 + syst_JES_EtaIntercalibration_Stat96: 2.54091853e-05 + syst_JES_EtaIntercalibration_Stat97: 3.41153387e-08 + syst_JES_EtaIntercalibration_Stat98: 2.08625520e-10 + syst_JES_EtaIntercalibration_Stat99: 2.08625520e-10 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.47886714e-02 + syst_JES_Flavour_Comp: 1.28994896e-01 + syst_JES_Gjet_Generator: 7.76143820e-01 + syst_JES_Gjet_OOC: 5.03684683e-01 + syst_JES_Gjet_Purity: 1.59530342e-01 + syst_JES_Gjet_Stat1: 3.64596695e-04 + syst_JES_Gjet_Stat10: 4.60343141e-02 + syst_JES_Gjet_Stat11: 7.97714365e-02 + syst_JES_Gjet_Stat12: 4.32041048e-02 + syst_JES_Gjet_Stat13: 7.37638889e-03 + syst_JES_Gjet_Stat14: 6.67128481e-03 + syst_JES_Gjet_Stat15: 9.51143092e-06 + syst_JES_Gjet_Stat2: 8.08607920e-27 + syst_JES_Gjet_Stat3: 6.35143031e-07 + syst_JES_Gjet_Stat4: 1.04775511e-03 + syst_JES_Gjet_Stat5: 1.29078916e-03 + syst_JES_Gjet_Stat6: 6.84107102e-03 + syst_JES_Gjet_Stat7: 9.27403724e-03 + syst_JES_Gjet_Stat8: 9.81656563e-03 + syst_JES_Gjet_Stat9: 2.34464598e-02 + syst_JES_Gjet_Veto: 2.17354152e-01 + syst_JES_Gjet_dPhi: 3.53242608e-02 + syst_JES_LArESZee: 9.43754608e-01 + syst_JES_LArEsmear: 7.18247388e-02 + syst_JES_LAr_JVT: 1.02156705e-01 + syst_JES_MJB_Alpha: 1.09231784e-04 + syst_JES_MJB_Asym: 9.93144283e-03 + syst_JES_MJB_Beta: 3.72390924e-21 + syst_JES_MJB_Stat1: 1.89053346e-03 syst_JES_MJB_Stat10: 0.0 - syst_JES_MJB_Stat11: 8.784961695989346e-12 + syst_JES_MJB_Stat11: 8.78496170e-12 syst_JES_MJB_Stat12: 0.0 syst_JES_MJB_Stat13: 0.0 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 - syst_JES_MJB_Stat16: 3.956004044487316e-43 - syst_JES_MJB_Stat2: 0.0012657269561402254 - syst_JES_MJB_Stat3: 0.00034618985409020877 - syst_JES_MJB_Stat4: 1.0077937623839513e-07 - syst_JES_MJB_Stat5: 0.00016939456898023623 + syst_JES_MJB_Stat16: 3.95600404e-43 + syst_JES_MJB_Stat2: 1.26572696e-03 + syst_JES_MJB_Stat3: 3.46189854e-04 + syst_JES_MJB_Stat4: 1.00779376e-07 + syst_JES_MJB_Stat5: 1.69394569e-04 syst_JES_MJB_Stat6: 0.0 - syst_JES_MJB_Stat7: 2.5677653222208606e-16 + syst_JES_MJB_Stat7: 2.56776532e-16 syst_JES_MJB_Stat8: 0.0 syst_JES_MJB_Stat9: 0.0 - syst_JES_MJB_Threshold: 0.0008584263320169064 - syst_JES_Pileup_MuOffset: 0.02285740691220244 - syst_JES_Pileup_NPVOffset: 0.046538952233586006 - syst_JES_Pileup_Pt_term: 0.23260477209206176 - syst_JES_PunchThrough_MC15: 0.003821951596697687 + syst_JES_MJB_Threshold: 8.58426332e-04 + syst_JES_Pileup_MuOffset: 2.28574069e-02 + syst_JES_Pileup_NPVOffset: 4.65389522e-02 + syst_JES_Pileup_Pt_term: 2.32604772e-01 + syst_JES_PunchThrough_MC15: 3.82195160e-03 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.7211048814146248 - syst_JES_Zjet_MuScale: 0.04232019139843297 - syst_JES_Zjet_MuSmearID: 0.007356502752667194 - syst_JES_Zjet_MuSmearMS: 0.10036586708139378 - syst_JES_Zjet_OOC: 0.2449255192910694 - syst_JES_Zjet_Stat1: 0.003490674218609853 - syst_JES_Zjet_Stat10: 0.043299370376484694 - syst_JES_Zjet_Stat11: 0.0797726983372131 - syst_JES_Zjet_Stat12: 0.20005281177729045 - syst_JES_Zjet_Stat13: 0.019348472807950504 - syst_JES_Zjet_Stat2: 0.0003442261284388505 - syst_JES_Zjet_Stat3: 0.0013258848931939756 - syst_JES_Zjet_Stat4: 4.6921181642729337e-07 - syst_JES_Zjet_Stat5: 6.540614497124869e-07 - syst_JES_Zjet_Stat6: 0.004557445775870516 - syst_JES_Zjet_Stat7: 0.004789145095943533 - syst_JES_Zjet_Stat8: 0.0070936004081143455 - syst_JES_Zjet_Stat9: 0.018101861782700693 - syst_JES_Zjet_Veto: 0.043250279478865804 - syst_JES_Zjet_dPhi: 0.04376630762355901 + syst_JES_Zjet_MC: 7.21104881e-01 + syst_JES_Zjet_MuScale: 4.23201914e-02 + syst_JES_Zjet_MuSmearID: 7.35650275e-03 + syst_JES_Zjet_MuSmearMS: 1.00365867e-01 + syst_JES_Zjet_OOC: 2.44925519e-01 + syst_JES_Zjet_Stat1: 3.49067422e-03 + syst_JES_Zjet_Stat10: 4.32993704e-02 + syst_JES_Zjet_Stat11: 7.97726983e-02 + syst_JES_Zjet_Stat12: 2.00052812e-01 + syst_JES_Zjet_Stat13: 1.93484728e-02 + syst_JES_Zjet_Stat2: 3.44226128e-04 + syst_JES_Zjet_Stat3: 1.32588489e-03 + syst_JES_Zjet_Stat4: 4.69211816e-07 + syst_JES_Zjet_Stat5: 6.54061450e-07 + syst_JES_Zjet_Stat6: 4.55744578e-03 + syst_JES_Zjet_Stat7: 4.78914510e-03 + syst_JES_Zjet_Stat8: 7.09360041e-03 + syst_JES_Zjet_Stat9: 1.81018618e-02 + syst_JES_Zjet_Veto: 4.32502795e-02 + syst_JES_Zjet_dPhi: 4.37663076e-02 syst_PRW: 0.0 syst_Unfolding_bias: 0.0 - syst_cleaning: 0.17285867059537396 + syst_cleaning: 1.72858671e-01 syst_lumi: 0.7596 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 0.5829921676146258 - syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.011023560631665251 - syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.056851189081671805 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 0.5141938423396375 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.014975048681056098 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.23290519530487078 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 5.82992168e-01 + syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.10235606e-02 + syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 5.68511891e-02 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 5.14193842e-01 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.49750487e-02 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 2.32905195e-01 - stat: 0.19395 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.19401706110546052 - syst_JER_NP1: 0.027559406742526226 - syst_JER_NP2: 0.014701952616914532 - syst_JER_NP3: 0.05739037441069713 - syst_JER_NP4: 0.015908929662299724 - syst_JER_NP5: 0.015719143130272718 - syst_JER_NP6: 0.004166697583218633 - syst_JER_NP7: 4.651508250019557e-07 - syst_JER_NP8: 0.00554597374227466 - syst_JES_EtaIntercalibration_Modelling: 0.565772489610444 - syst_JES_EtaIntercalibration_NonClosure: 0.3049369893928908 + syst_JER_NP0: 1.94017061e-01 + syst_JER_NP1: 2.75594067e-02 + syst_JER_NP2: 1.47019526e-02 + syst_JER_NP3: 5.73903744e-02 + syst_JER_NP4: 1.59089297e-02 + syst_JER_NP5: 1.57191431e-02 + syst_JER_NP6: 4.16669758e-03 + syst_JER_NP7: 4.65150825e-07 + syst_JER_NP8: 5.54597374e-03 + syst_JES_EtaIntercalibration_Modelling: 5.65772490e-01 + syst_JES_EtaIntercalibration_NonClosure: 3.04936989e-01 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 2.0819250706977904e-11 + syst_JES_EtaIntercalibration_Stat100: 2.08192507e-11 syst_JES_EtaIntercalibration_Stat101: 0.0 - syst_JES_EtaIntercalibration_Stat102: 8.915229834390137e-06 - syst_JES_EtaIntercalibration_Stat103: 0.00020879028425671535 - syst_JES_EtaIntercalibration_Stat104: 0.00030400035670209334 - syst_JES_EtaIntercalibration_Stat105: 9.938692305831789e-05 - syst_JES_EtaIntercalibration_Stat106: 2.739120955251885e-07 + syst_JES_EtaIntercalibration_Stat102: 8.91522983e-06 + syst_JES_EtaIntercalibration_Stat103: 2.08790284e-04 + syst_JES_EtaIntercalibration_Stat104: 3.04000357e-04 + syst_JES_EtaIntercalibration_Stat105: 9.93869231e-05 + syst_JES_EtaIntercalibration_Stat106: 2.73912096e-07 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 7.260687708475004e-06 + syst_JES_EtaIntercalibration_Stat109: 7.26068771e-06 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 0.00018202191427613872 - syst_JES_EtaIntercalibration_Stat111: 0.002739153896278922 - syst_JES_EtaIntercalibration_Stat112: 0.0010025314197071333 - syst_JES_EtaIntercalibration_Stat113: 7.127625603944136e-05 - syst_JES_EtaIntercalibration_Stat114: 1.376114366613473e-06 + syst_JES_EtaIntercalibration_Stat110: 1.82021914e-04 + syst_JES_EtaIntercalibration_Stat111: 2.73915390e-03 + syst_JES_EtaIntercalibration_Stat112: 1.00253142e-03 + syst_JES_EtaIntercalibration_Stat113: 7.12762560e-05 + syst_JES_EtaIntercalibration_Stat114: 1.37611437e-06 syst_JES_EtaIntercalibration_Stat115: 0.0 - syst_JES_EtaIntercalibration_Stat116: 9.13310390831069e-08 - syst_JES_EtaIntercalibration_Stat117: 1.474841262644899e-06 - syst_JES_EtaIntercalibration_Stat118: 2.0819250706977904e-11 - syst_JES_EtaIntercalibration_Stat119: 2.0819250706977904e-11 + syst_JES_EtaIntercalibration_Stat116: 9.13310391e-08 + syst_JES_EtaIntercalibration_Stat117: 1.47484126e-06 + syst_JES_EtaIntercalibration_Stat118: 2.08192507e-11 + syst_JES_EtaIntercalibration_Stat119: 2.08192507e-11 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 2.0819250706977904e-11 - syst_JES_EtaIntercalibration_Stat121: 3.6771438644687264e-08 - syst_JES_EtaIntercalibration_Stat122: 5.340050631782437e-05 - syst_JES_EtaIntercalibration_Stat123: 0.0013004357846506686 - syst_JES_EtaIntercalibration_Stat124: 0.0022794878262451853 - syst_JES_EtaIntercalibration_Stat125: 0.0010956071946984466 - syst_JES_EtaIntercalibration_Stat126: 6.154060669184209e-05 + syst_JES_EtaIntercalibration_Stat120: 2.08192507e-11 + syst_JES_EtaIntercalibration_Stat121: 3.67714386e-08 + syst_JES_EtaIntercalibration_Stat122: 5.34005063e-05 + syst_JES_EtaIntercalibration_Stat123: 1.30043578e-03 + syst_JES_EtaIntercalibration_Stat124: 2.27948783e-03 + syst_JES_EtaIntercalibration_Stat125: 1.09560719e-03 + syst_JES_EtaIntercalibration_Stat126: 6.15406067e-05 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 0.000155835880656542 - syst_JES_EtaIntercalibration_Stat129: 0.012682251170435001 + syst_JES_EtaIntercalibration_Stat128: 1.55835881e-04 + syst_JES_EtaIntercalibration_Stat129: 1.26822512e-02 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 0.023040110676817504 - syst_JES_EtaIntercalibration_Stat131: 0.010215666057580387 - syst_JES_EtaIntercalibration_Stat132: 0.0005250661363104652 - syst_JES_EtaIntercalibration_Stat133: 2.5411105190447737e-05 + syst_JES_EtaIntercalibration_Stat130: 2.30401107e-02 + syst_JES_EtaIntercalibration_Stat131: 1.02156661e-02 + syst_JES_EtaIntercalibration_Stat132: 5.25066136e-04 + syst_JES_EtaIntercalibration_Stat133: 2.54111052e-05 syst_JES_EtaIntercalibration_Stat134: 0.0 - syst_JES_EtaIntercalibration_Stat135: 9.13310390831069e-08 - syst_JES_EtaIntercalibration_Stat136: 9.13310390831069e-08 - syst_JES_EtaIntercalibration_Stat137: 2.0819250706977904e-11 - syst_JES_EtaIntercalibration_Stat138: 2.0819250706977904e-11 - syst_JES_EtaIntercalibration_Stat139: 2.0819250706977904e-11 + syst_JES_EtaIntercalibration_Stat135: 9.13310391e-08 + syst_JES_EtaIntercalibration_Stat136: 9.13310391e-08 + syst_JES_EtaIntercalibration_Stat137: 2.08192507e-11 + syst_JES_EtaIntercalibration_Stat138: 2.08192507e-11 + syst_JES_EtaIntercalibration_Stat139: 2.08192507e-11 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 2.767817190495066e-08 - syst_JES_EtaIntercalibration_Stat141: 0.0004071191742905264 - syst_JES_EtaIntercalibration_Stat142: 0.008905467197177247 - syst_JES_EtaIntercalibration_Stat143: 0.022261326892168847 - syst_JES_EtaIntercalibration_Stat144: 0.012634114294243185 - syst_JES_EtaIntercalibration_Stat145: 4.730779296268216e-05 - syst_JES_EtaIntercalibration_Stat146: 0.0007404925293850033 - syst_JES_EtaIntercalibration_Stat147: 0.0111606114527834 - syst_JES_EtaIntercalibration_Stat148: 0.02490868121759962 - syst_JES_EtaIntercalibration_Stat149: 0.010120551603050101 + syst_JES_EtaIntercalibration_Stat140: 2.76781719e-08 + syst_JES_EtaIntercalibration_Stat141: 4.07119174e-04 + syst_JES_EtaIntercalibration_Stat142: 8.90546720e-03 + syst_JES_EtaIntercalibration_Stat143: 2.22613269e-02 + syst_JES_EtaIntercalibration_Stat144: 1.26341143e-02 + syst_JES_EtaIntercalibration_Stat145: 4.73077930e-05 + syst_JES_EtaIntercalibration_Stat146: 7.40492529e-04 + syst_JES_EtaIntercalibration_Stat147: 1.11606115e-02 + syst_JES_EtaIntercalibration_Stat148: 2.49086812e-02 + syst_JES_EtaIntercalibration_Stat149: 1.01205516e-02 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 0.0005833097183315225 - syst_JES_EtaIntercalibration_Stat151: 3.3659986631013386e-06 + syst_JES_EtaIntercalibration_Stat150: 5.83309718e-04 + syst_JES_EtaIntercalibration_Stat151: 3.36599866e-06 syst_JES_EtaIntercalibration_Stat152: 0.0 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 2.0819250706977904e-11 + syst_JES_EtaIntercalibration_Stat156: 2.08192507e-11 syst_JES_EtaIntercalibration_Stat157: 0.0 syst_JES_EtaIntercalibration_Stat158: 0.0 - syst_JES_EtaIntercalibration_Stat159: 0.001245718751364047 - syst_JES_EtaIntercalibration_Stat16: 1.9347032395808637e-05 - syst_JES_EtaIntercalibration_Stat160: 0.011582165460310087 - syst_JES_EtaIntercalibration_Stat161: 0.024765213506045124 - syst_JES_EtaIntercalibration_Stat162: 0.01025143443621428 - syst_JES_EtaIntercalibration_Stat163: 0.00014806230951866175 - syst_JES_EtaIntercalibration_Stat164: 0.0007868382362341067 - syst_JES_EtaIntercalibration_Stat165: 0.013882368205749335 - syst_JES_EtaIntercalibration_Stat166: 0.03312078916632271 - syst_JES_EtaIntercalibration_Stat167: 0.014848948615979518 - syst_JES_EtaIntercalibration_Stat168: 0.0011467409155951488 - syst_JES_EtaIntercalibration_Stat169: 3.3651996597527464e-06 - syst_JES_EtaIntercalibration_Stat17: 2.4758345021599543e-07 + syst_JES_EtaIntercalibration_Stat159: 1.24571875e-03 + syst_JES_EtaIntercalibration_Stat16: 1.93470324e-05 + syst_JES_EtaIntercalibration_Stat160: 1.15821655e-02 + syst_JES_EtaIntercalibration_Stat161: 2.47652135e-02 + syst_JES_EtaIntercalibration_Stat162: 1.02514344e-02 + syst_JES_EtaIntercalibration_Stat163: 1.48062310e-04 + syst_JES_EtaIntercalibration_Stat164: 7.86838236e-04 + syst_JES_EtaIntercalibration_Stat165: 1.38823682e-02 + syst_JES_EtaIntercalibration_Stat166: 3.31207892e-02 + syst_JES_EtaIntercalibration_Stat167: 1.48489486e-02 + syst_JES_EtaIntercalibration_Stat168: 1.14674092e-03 + syst_JES_EtaIntercalibration_Stat169: 3.36519966e-06 + syst_JES_EtaIntercalibration_Stat17: 2.47583450e-07 syst_JES_EtaIntercalibration_Stat170: 0.0 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 syst_JES_EtaIntercalibration_Stat175: 0.0 - syst_JES_EtaIntercalibration_Stat176: 1.8870693548462917e-05 - syst_JES_EtaIntercalibration_Stat177: 0.0009431882672664963 - syst_JES_EtaIntercalibration_Stat178: 0.015287563573048519 - syst_JES_EtaIntercalibration_Stat179: 0.03544266778898 - syst_JES_EtaIntercalibration_Stat18: 3.0940137309811665e-11 - syst_JES_EtaIntercalibration_Stat180: 0.01585778909558328 - syst_JES_EtaIntercalibration_Stat181: 0.0001613145984559364 - syst_JES_EtaIntercalibration_Stat182: 0.017040845049468643 - syst_JES_EtaIntercalibration_Stat183: 0.04119142993390737 - syst_JES_EtaIntercalibration_Stat184: 0.014842192391961505 - syst_JES_EtaIntercalibration_Stat185: 0.0018616814980012021 - syst_JES_EtaIntercalibration_Stat186: 2.64570760856146e-06 + syst_JES_EtaIntercalibration_Stat176: 1.88706935e-05 + syst_JES_EtaIntercalibration_Stat177: 9.43188267e-04 + syst_JES_EtaIntercalibration_Stat178: 1.52875636e-02 + syst_JES_EtaIntercalibration_Stat179: 3.54426678e-02 + syst_JES_EtaIntercalibration_Stat18: 3.09401373e-11 + syst_JES_EtaIntercalibration_Stat180: 1.58577891e-02 + syst_JES_EtaIntercalibration_Stat181: 1.61314598e-04 + syst_JES_EtaIntercalibration_Stat182: 1.70408450e-02 + syst_JES_EtaIntercalibration_Stat183: 4.11914299e-02 + syst_JES_EtaIntercalibration_Stat184: 1.48421924e-02 + syst_JES_EtaIntercalibration_Stat185: 1.86168150e-03 + syst_JES_EtaIntercalibration_Stat186: 2.64570761e-06 syst_JES_EtaIntercalibration_Stat187: 0.0 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 @@ -47999,31 +47999,31 @@ bins: syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 syst_JES_EtaIntercalibration_Stat192: 0.0 - syst_JES_EtaIntercalibration_Stat193: 0.00011526823532526212 - syst_JES_EtaIntercalibration_Stat194: 0.0022207338877046926 - syst_JES_EtaIntercalibration_Stat195: 0.019719413657611626 - syst_JES_EtaIntercalibration_Stat196: 0.0400747072727924 - syst_JES_EtaIntercalibration_Stat197: 0.01708693653057797 - syst_JES_EtaIntercalibration_Stat198: 0.004754191433619391 - syst_JES_EtaIntercalibration_Stat199: 0.0021575056778604315 + syst_JES_EtaIntercalibration_Stat193: 1.15268235e-04 + syst_JES_EtaIntercalibration_Stat194: 2.22073389e-03 + syst_JES_EtaIntercalibration_Stat195: 1.97194137e-02 + syst_JES_EtaIntercalibration_Stat196: 4.00747073e-02 + syst_JES_EtaIntercalibration_Stat197: 1.70869365e-02 + syst_JES_EtaIntercalibration_Stat198: 4.75419143e-03 + syst_JES_EtaIntercalibration_Stat199: 2.15750568e-03 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 0.0008027065762157427 - syst_JES_EtaIntercalibration_Stat201: 2.64570760856146e-06 + syst_JES_EtaIntercalibration_Stat200: 8.02706576e-04 + syst_JES_EtaIntercalibration_Stat201: 2.64570761e-06 syst_JES_EtaIntercalibration_Stat202: 0.0 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 syst_JES_EtaIntercalibration_Stat207: 0.0 - syst_JES_EtaIntercalibration_Stat208: 2.906381255100576e-07 - syst_JES_EtaIntercalibration_Stat209: 3.0894903657399546e-05 + syst_JES_EtaIntercalibration_Stat208: 2.90638126e-07 + syst_JES_EtaIntercalibration_Stat209: 3.08949037e-05 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 0.0012729758952941723 - syst_JES_EtaIntercalibration_Stat211: 0.003902316843876212 - syst_JES_EtaIntercalibration_Stat212: 0.0006792676258294665 - syst_JES_EtaIntercalibration_Stat213: 2.936692144233031e-05 - syst_JES_EtaIntercalibration_Stat214: 2.64570760856146e-06 + syst_JES_EtaIntercalibration_Stat210: 1.27297590e-03 + syst_JES_EtaIntercalibration_Stat211: 3.90231684e-03 + syst_JES_EtaIntercalibration_Stat212: 6.79267626e-04 + syst_JES_EtaIntercalibration_Stat213: 2.93669214e-05 + syst_JES_EtaIntercalibration_Stat214: 2.64570761e-06 syst_JES_EtaIntercalibration_Stat215: 0.0 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 @@ -48031,11 +48031,11 @@ bins: syst_JES_EtaIntercalibration_Stat219: 0.0 syst_JES_EtaIntercalibration_Stat22: 0.0 syst_JES_EtaIntercalibration_Stat220: 0.0 - syst_JES_EtaIntercalibration_Stat221: 4.346581501594097e-15 - syst_JES_EtaIntercalibration_Stat222: 2.636253563553785e-06 - syst_JES_EtaIntercalibration_Stat223: 0.0008577535004300477 - syst_JES_EtaIntercalibration_Stat224: 1.263045204060409e-05 - syst_JES_EtaIntercalibration_Stat225: 4.683809000162154e-07 + syst_JES_EtaIntercalibration_Stat221: 4.34658150e-15 + syst_JES_EtaIntercalibration_Stat222: 2.63625356e-06 + syst_JES_EtaIntercalibration_Stat223: 8.57753500e-04 + syst_JES_EtaIntercalibration_Stat224: 1.26304520e-05 + syst_JES_EtaIntercalibration_Stat225: 4.68380900e-07 syst_JES_EtaIntercalibration_Stat226: 0.0 syst_JES_EtaIntercalibration_Stat227: 0.0 syst_JES_EtaIntercalibration_Stat228: 0.0 @@ -48044,296 +48044,296 @@ bins: syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 syst_JES_EtaIntercalibration_Stat232: 0.0 - syst_JES_EtaIntercalibration_Stat233: 4.346581501594097e-15 - syst_JES_EtaIntercalibration_Stat234: 4.702517942549502e-07 - syst_JES_EtaIntercalibration_Stat235: 5.096291854868596e-06 - syst_JES_EtaIntercalibration_Stat236: 1.3224207915739273e-20 + syst_JES_EtaIntercalibration_Stat233: 4.34658150e-15 + syst_JES_EtaIntercalibration_Stat234: 4.70251794e-07 + syst_JES_EtaIntercalibration_Stat235: 5.09629185e-06 + syst_JES_EtaIntercalibration_Stat236: 1.32242079e-20 syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 syst_JES_EtaIntercalibration_Stat239: 0.0 - syst_JES_EtaIntercalibration_Stat24: 8.188270192781867e-11 + syst_JES_EtaIntercalibration_Stat24: 8.18827019e-11 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 syst_JES_EtaIntercalibration_Stat243: 0.0 - syst_JES_EtaIntercalibration_Stat244: 4.346581501594097e-15 - syst_JES_EtaIntercalibration_Stat245: 5.262364286136033e-26 - syst_JES_EtaIntercalibration_Stat25: 4.806449417189367e-08 - syst_JES_EtaIntercalibration_Stat26: 2.4392325094586616e-05 - syst_JES_EtaIntercalibration_Stat27: 2.5161766370974434e-05 - syst_JES_EtaIntercalibration_Stat28: 8.59841566613728e-09 + syst_JES_EtaIntercalibration_Stat244: 4.34658150e-15 + syst_JES_EtaIntercalibration_Stat245: 5.26236429e-26 + syst_JES_EtaIntercalibration_Stat25: 4.80644942e-08 + syst_JES_EtaIntercalibration_Stat26: 2.43923251e-05 + syst_JES_EtaIntercalibration_Stat27: 2.51617664e-05 + syst_JES_EtaIntercalibration_Stat28: 8.59841567e-09 syst_JES_EtaIntercalibration_Stat29: 0.0 - syst_JES_EtaIntercalibration_Stat3: 2.2574725098658457e-09 + syst_JES_EtaIntercalibration_Stat3: 2.25747251e-09 syst_JES_EtaIntercalibration_Stat30: 0.0 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 3.3238921022650537e-08 - syst_JES_EtaIntercalibration_Stat36: 3.3238921022650537e-08 - syst_JES_EtaIntercalibration_Stat37: 4.1414284737452607e-08 - syst_JES_EtaIntercalibration_Stat38: 1.911035926160207e-05 - syst_JES_EtaIntercalibration_Stat39: 1.655838101710128e-05 - syst_JES_EtaIntercalibration_Stat4: 2.4794208065426264e-05 - syst_JES_EtaIntercalibration_Stat40: 3.4718526033048985e-07 + syst_JES_EtaIntercalibration_Stat35: 3.32389210e-08 + syst_JES_EtaIntercalibration_Stat36: 3.32389210e-08 + syst_JES_EtaIntercalibration_Stat37: 4.14142847e-08 + syst_JES_EtaIntercalibration_Stat38: 1.91103593e-05 + syst_JES_EtaIntercalibration_Stat39: 1.65583810e-05 + syst_JES_EtaIntercalibration_Stat4: 2.47942081e-05 + syst_JES_EtaIntercalibration_Stat40: 3.47185260e-07 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 syst_JES_EtaIntercalibration_Stat44: 0.0 syst_JES_EtaIntercalibration_Stat45: 0.0 - syst_JES_EtaIntercalibration_Stat46: 3.0486351044360824e-09 - syst_JES_EtaIntercalibration_Stat47: 6.135440061641871e-07 - syst_JES_EtaIntercalibration_Stat48: 7.321293307025747e-05 - syst_JES_EtaIntercalibration_Stat49: 3.2900108916992965e-05 - syst_JES_EtaIntercalibration_Stat5: 2.4776977671491743e-05 - syst_JES_EtaIntercalibration_Stat50: 4.0747358083070866e-08 + syst_JES_EtaIntercalibration_Stat46: 3.04863510e-09 + syst_JES_EtaIntercalibration_Stat47: 6.13544006e-07 + syst_JES_EtaIntercalibration_Stat48: 7.32129331e-05 + syst_JES_EtaIntercalibration_Stat49: 3.29001089e-05 + syst_JES_EtaIntercalibration_Stat5: 2.47769777e-05 + syst_JES_EtaIntercalibration_Stat50: 4.07473581e-08 syst_JES_EtaIntercalibration_Stat51: 0.0 syst_JES_EtaIntercalibration_Stat52: 0.0 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 2.0819250706977904e-11 - syst_JES_EtaIntercalibration_Stat57: 3.3238921022650537e-08 - syst_JES_EtaIntercalibration_Stat58: 3.3238921022650537e-08 - syst_JES_EtaIntercalibration_Stat59: 4.96788393659715e-08 + syst_JES_EtaIntercalibration_Stat56: 2.08192507e-11 + syst_JES_EtaIntercalibration_Stat57: 3.32389210e-08 + syst_JES_EtaIntercalibration_Stat58: 3.32389210e-08 + syst_JES_EtaIntercalibration_Stat59: 4.96788394e-08 syst_JES_EtaIntercalibration_Stat6: 0.0 - syst_JES_EtaIntercalibration_Stat60: 0.00012734471445647049 - syst_JES_EtaIntercalibration_Stat61: 4.7571002459481555e-05 - syst_JES_EtaIntercalibration_Stat62: 1.1131948526650667e-06 - syst_JES_EtaIntercalibration_Stat63: 5.167959587387947e-10 + syst_JES_EtaIntercalibration_Stat60: 1.27344714e-04 + syst_JES_EtaIntercalibration_Stat61: 4.75710025e-05 + syst_JES_EtaIntercalibration_Stat62: 1.11319485e-06 + syst_JES_EtaIntercalibration_Stat63: 5.16795959e-10 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 3.036206545592707e-08 - syst_JES_EtaIntercalibration_Stat69: 0.0003779209540366874 + syst_JES_EtaIntercalibration_Stat68: 3.03620655e-08 + syst_JES_EtaIntercalibration_Stat69: 3.77920954e-04 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 0.00026971734033057643 - syst_JES_EtaIntercalibration_Stat71: 4.49951272361797e-05 - syst_JES_EtaIntercalibration_Stat72: 3.064369872371806e-05 + syst_JES_EtaIntercalibration_Stat70: 2.69717340e-04 + syst_JES_EtaIntercalibration_Stat71: 4.49951272e-05 + syst_JES_EtaIntercalibration_Stat72: 3.06436987e-05 syst_JES_EtaIntercalibration_Stat73: 0.0 syst_JES_EtaIntercalibration_Stat74: 0.0 syst_JES_EtaIntercalibration_Stat75: 0.0 - syst_JES_EtaIntercalibration_Stat76: 2.82324281633727e-09 - syst_JES_EtaIntercalibration_Stat77: 2.0819250706977904e-11 - syst_JES_EtaIntercalibration_Stat78: 2.0819250706977904e-11 - syst_JES_EtaIntercalibration_Stat79: 3.3238921022650537e-08 + syst_JES_EtaIntercalibration_Stat76: 2.82324282e-09 + syst_JES_EtaIntercalibration_Stat77: 2.08192507e-11 + syst_JES_EtaIntercalibration_Stat78: 2.08192507e-11 + syst_JES_EtaIntercalibration_Stat79: 3.32389210e-08 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 3.292715187728814e-08 - syst_JES_EtaIntercalibration_Stat81: 3.082394645401526e-07 - syst_JES_EtaIntercalibration_Stat82: 7.027506723582697e-05 - syst_JES_EtaIntercalibration_Stat83: 9.649322294855737e-05 - syst_JES_EtaIntercalibration_Stat84: 5.683599827574071e-05 - syst_JES_EtaIntercalibration_Stat85: 2.7788231087998384e-09 + syst_JES_EtaIntercalibration_Stat80: 3.29271519e-08 + syst_JES_EtaIntercalibration_Stat81: 3.08239465e-07 + syst_JES_EtaIntercalibration_Stat82: 7.02750672e-05 + syst_JES_EtaIntercalibration_Stat83: 9.64932229e-05 + syst_JES_EtaIntercalibration_Stat84: 5.68359983e-05 + syst_JES_EtaIntercalibration_Stat85: 2.77882311e-09 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 4.850361210260531e-08 + syst_JES_EtaIntercalibration_Stat89: 4.85036121e-08 syst_JES_EtaIntercalibration_Stat9: 0.0 - syst_JES_EtaIntercalibration_Stat90: 0.0003604959639163801 - syst_JES_EtaIntercalibration_Stat91: 0.0004082216599777626 - syst_JES_EtaIntercalibration_Stat92: 0.0002650980520486712 - syst_JES_EtaIntercalibration_Stat93: 2.8434133946368048e-05 + syst_JES_EtaIntercalibration_Stat90: 3.60495964e-04 + syst_JES_EtaIntercalibration_Stat91: 4.08221660e-04 + syst_JES_EtaIntercalibration_Stat92: 2.65098052e-04 + syst_JES_EtaIntercalibration_Stat93: 2.84341339e-05 syst_JES_EtaIntercalibration_Stat94: 0.0 syst_JES_EtaIntercalibration_Stat95: 0.0 - syst_JES_EtaIntercalibration_Stat96: 1.474841262644899e-06 - syst_JES_EtaIntercalibration_Stat97: 2.82324281633727e-09 - syst_JES_EtaIntercalibration_Stat98: 2.0819250706977904e-11 - syst_JES_EtaIntercalibration_Stat99: 2.0819250706977904e-11 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.02092724719116205 - syst_JES_Flavour_Comp: 0.10313159021366829 - syst_JES_Gjet_Generator: 0.42952981270221513 - syst_JES_Gjet_OOC: 0.290186164384176 - syst_JES_Gjet_Purity: 0.09651614320930982 - syst_JES_Gjet_Stat1: 0.00019606815141679691 - syst_JES_Gjet_Stat10: 0.023033165218875152 - syst_JES_Gjet_Stat11: 0.043632736276791075 - syst_JES_Gjet_Stat12: 0.041328228549019616 - syst_JES_Gjet_Stat13: 0.008182690923528763 - syst_JES_Gjet_Stat14: 0.005961711394390037 - syst_JES_Gjet_Stat15: 0.00011015832288120586 - syst_JES_Gjet_Stat2: 1.8437680846570698e-20 - syst_JES_Gjet_Stat3: 5.2567742009715423e-08 - syst_JES_Gjet_Stat4: 0.0005655391765202206 - syst_JES_Gjet_Stat5: 0.0007728750707019623 - syst_JES_Gjet_Stat6: 0.0035904441229463522 - syst_JES_Gjet_Stat7: 0.0048632841527099764 - syst_JES_Gjet_Stat8: 0.004712875237050096 - syst_JES_Gjet_Stat9: 0.010546869523702283 - syst_JES_Gjet_Veto: 0.13318992979951602 - syst_JES_Gjet_dPhi: 0.01918201501406982 - syst_JES_LArESZee: 0.5492982864528162 - syst_JES_LArEsmear: 0.04268363887955197 - syst_JES_LAr_JVT: 0.05843479956327394 - syst_JES_MJB_Alpha: 0.0004638432062669454 - syst_JES_MJB_Asym: 0.009702265044823294 - syst_JES_MJB_Beta: 4.824627524483108e-16 - syst_JES_MJB_Stat1: 0.0020299635464707242 + syst_JES_EtaIntercalibration_Stat96: 1.47484126e-06 + syst_JES_EtaIntercalibration_Stat97: 2.82324282e-09 + syst_JES_EtaIntercalibration_Stat98: 2.08192507e-11 + syst_JES_EtaIntercalibration_Stat99: 2.08192507e-11 + syst_JES_EtaIntercalibration_TotalStat_MJB: 2.09272472e-02 + syst_JES_Flavour_Comp: 1.03131590e-01 + syst_JES_Gjet_Generator: 4.29529813e-01 + syst_JES_Gjet_OOC: 2.90186164e-01 + syst_JES_Gjet_Purity: 9.65161432e-02 + syst_JES_Gjet_Stat1: 1.96068151e-04 + syst_JES_Gjet_Stat10: 2.30331652e-02 + syst_JES_Gjet_Stat11: 4.36327363e-02 + syst_JES_Gjet_Stat12: 4.13282285e-02 + syst_JES_Gjet_Stat13: 8.18269092e-03 + syst_JES_Gjet_Stat14: 5.96171139e-03 + syst_JES_Gjet_Stat15: 1.10158323e-04 + syst_JES_Gjet_Stat2: 1.84376808e-20 + syst_JES_Gjet_Stat3: 5.25677420e-08 + syst_JES_Gjet_Stat4: 5.65539177e-04 + syst_JES_Gjet_Stat5: 7.72875071e-04 + syst_JES_Gjet_Stat6: 3.59044412e-03 + syst_JES_Gjet_Stat7: 4.86328415e-03 + syst_JES_Gjet_Stat8: 4.71287524e-03 + syst_JES_Gjet_Stat9: 1.05468695e-02 + syst_JES_Gjet_Veto: 1.33189930e-01 + syst_JES_Gjet_dPhi: 1.91820150e-02 + syst_JES_LArESZee: 5.49298286e-01 + syst_JES_LArEsmear: 4.26836389e-02 + syst_JES_LAr_JVT: 5.84347996e-02 + syst_JES_MJB_Alpha: 4.63843206e-04 + syst_JES_MJB_Asym: 9.70226504e-03 + syst_JES_MJB_Beta: 4.82462752e-16 + syst_JES_MJB_Stat1: 2.02996355e-03 syst_JES_MJB_Stat10: 0.0 - syst_JES_MJB_Stat11: 1.763227722105117e-09 + syst_JES_MJB_Stat11: 1.76322772e-09 syst_JES_MJB_Stat12: 0.0 syst_JES_MJB_Stat13: 0.0 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 - syst_JES_MJB_Stat16: 1.0265865136460735e-33 - syst_JES_MJB_Stat2: 0.002068381674159777 - syst_JES_MJB_Stat3: 0.0013051276441406027 - syst_JES_MJB_Stat4: 4.305012282212445e-06 - syst_JES_MJB_Stat5: 0.0003267513848478687 + syst_JES_MJB_Stat16: 1.02658651e-33 + syst_JES_MJB_Stat2: 2.06838167e-03 + syst_JES_MJB_Stat3: 1.30512764e-03 + syst_JES_MJB_Stat4: 4.30501228e-06 + syst_JES_MJB_Stat5: 3.26751385e-04 syst_JES_MJB_Stat6: 0.0 - syst_JES_MJB_Stat7: 2.757424885649653e-12 + syst_JES_MJB_Stat7: 2.75742489e-12 syst_JES_MJB_Stat8: 0.0 syst_JES_MJB_Stat9: 0.0 - syst_JES_MJB_Threshold: 0.0033278165138721214 - syst_JES_Pileup_MuOffset: 0.02006458751133449 - syst_JES_Pileup_NPVOffset: 0.03291669902951996 - syst_JES_Pileup_Pt_term: 0.12285287654344933 - syst_JES_PunchThrough_MC15: 0.003978373623416986 + syst_JES_MJB_Threshold: 3.32781651e-03 + syst_JES_Pileup_MuOffset: 2.00645875e-02 + syst_JES_Pileup_NPVOffset: 3.29166990e-02 + syst_JES_Pileup_Pt_term: 1.22852877e-01 + syst_JES_PunchThrough_MC15: 3.97837362e-03 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.39615040587509176 - syst_JES_Zjet_MuScale: 0.02329502682977635 - syst_JES_Zjet_MuSmearID: 0.004005411183636456 - syst_JES_Zjet_MuSmearMS: 0.06377528576964592 - syst_JES_Zjet_OOC: 0.13992667034915107 - syst_JES_Zjet_Stat1: 0.0019268838230776103 - syst_JES_Zjet_Stat10: 0.01806670141448073 - syst_JES_Zjet_Stat11: 0.031153989712394782 - syst_JES_Zjet_Stat12: 0.1258295302184666 - syst_JES_Zjet_Stat13: 0.029617435321107735 - syst_JES_Zjet_Stat2: 0.00018226916689336129 - syst_JES_Zjet_Stat3: 0.0014237457638216172 - syst_JES_Zjet_Stat4: 3.88378425861942e-08 - syst_JES_Zjet_Stat5: 5.41471034382265e-08 - syst_JES_Zjet_Stat6: 0.0025733897392350032 - syst_JES_Zjet_Stat7: 0.001919049960266798 - syst_JES_Zjet_Stat8: 0.003573425150678267 - syst_JES_Zjet_Stat9: 0.009080753534261351 - syst_JES_Zjet_Veto: 0.0256734235153787 - syst_JES_Zjet_dPhi: 0.022947315202437084 + syst_JES_Zjet_MC: 3.96150406e-01 + syst_JES_Zjet_MuScale: 2.32950268e-02 + syst_JES_Zjet_MuSmearID: 4.00541118e-03 + syst_JES_Zjet_MuSmearMS: 6.37752858e-02 + syst_JES_Zjet_OOC: 1.39926670e-01 + syst_JES_Zjet_Stat1: 1.92688382e-03 + syst_JES_Zjet_Stat10: 1.80667014e-02 + syst_JES_Zjet_Stat11: 3.11539897e-02 + syst_JES_Zjet_Stat12: 1.25829530e-01 + syst_JES_Zjet_Stat13: 2.96174353e-02 + syst_JES_Zjet_Stat2: 1.82269167e-04 + syst_JES_Zjet_Stat3: 1.42374576e-03 + syst_JES_Zjet_Stat4: 3.88378426e-08 + syst_JES_Zjet_Stat5: 5.41471034e-08 + syst_JES_Zjet_Stat6: 2.57338974e-03 + syst_JES_Zjet_Stat7: 1.91904996e-03 + syst_JES_Zjet_Stat8: 3.57342515e-03 + syst_JES_Zjet_Stat9: 9.08075353e-03 + syst_JES_Zjet_Veto: 2.56734235e-02 + syst_JES_Zjet_dPhi: 2.29473152e-02 syst_PRW: 0.0 syst_Unfolding_bias: 0.0 - syst_cleaning: 0.09366064741928704 + syst_cleaning: 9.36606474e-02 syst_lumi: 0.4084 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 0.28100562271954627 - syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.014970026720083034 - syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.031185000801667456 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 0.24778123415626133 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.02067503022972397 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.12921500483689966 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 2.81005623e-01 + syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.49700267e-02 + syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 3.11850008e-02 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 2.47781234e-01 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 2.06750302e-02 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.29215005e-01 - stat: 0.08995 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.0974210207039528 - syst_JER_NP1: 0.031819282078639044 - syst_JER_NP2: 0.005916366536988729 - syst_JER_NP3: 0.032293531860110934 - syst_JER_NP4: 0.009881488994579714 - syst_JER_NP5: 0.008105257286940372 - syst_JER_NP6: 0.0007267206409618485 - syst_JER_NP7: 4.281812787827137e-08 - syst_JER_NP8: 0.011692880269634167 - syst_JES_EtaIntercalibration_Modelling: 0.3412796031115836 - syst_JES_EtaIntercalibration_NonClosure: 0.16773385913404604 + syst_JER_NP0: 9.74210207e-02 + syst_JER_NP1: 3.18192821e-02 + syst_JER_NP2: 5.91636654e-03 + syst_JER_NP3: 3.22935319e-02 + syst_JER_NP4: 9.88148899e-03 + syst_JER_NP5: 8.10525729e-03 + syst_JER_NP6: 7.26720641e-04 + syst_JER_NP7: 4.28181279e-08 + syst_JER_NP8: 1.16928803e-02 + syst_JES_EtaIntercalibration_Modelling: 3.41279603e-01 + syst_JES_EtaIntercalibration_NonClosure: 1.67733859e-01 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 2.592014033526825e-12 + syst_JES_EtaIntercalibration_Stat100: 2.59201403e-12 syst_JES_EtaIntercalibration_Stat101: 0.0 - syst_JES_EtaIntercalibration_Stat102: 1.5360588164194754e-06 - syst_JES_EtaIntercalibration_Stat103: 7.49800213390207e-05 - syst_JES_EtaIntercalibration_Stat104: 0.00011262614028279581 - syst_JES_EtaIntercalibration_Stat105: 2.751931685198599e-05 - syst_JES_EtaIntercalibration_Stat106: 3.083405206504653e-08 + syst_JES_EtaIntercalibration_Stat102: 1.53605882e-06 + syst_JES_EtaIntercalibration_Stat103: 7.49800213e-05 + syst_JES_EtaIntercalibration_Stat104: 1.12626140e-04 + syst_JES_EtaIntercalibration_Stat105: 2.75193169e-05 + syst_JES_EtaIntercalibration_Stat106: 3.08340521e-08 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 1.2663206416622926e-06 + syst_JES_EtaIntercalibration_Stat109: 1.26632064e-06 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 0.00015211045591937458 - syst_JES_EtaIntercalibration_Stat111: 0.000751368869247988 - syst_JES_EtaIntercalibration_Stat112: 0.00025948528257880064 - syst_JES_EtaIntercalibration_Stat113: 2.9214987164125192e-05 - syst_JES_EtaIntercalibration_Stat114: 1.6047450732125649e-07 + syst_JES_EtaIntercalibration_Stat110: 1.52110456e-04 + syst_JES_EtaIntercalibration_Stat111: 7.51368869e-04 + syst_JES_EtaIntercalibration_Stat112: 2.59485283e-04 + syst_JES_EtaIntercalibration_Stat113: 2.92149872e-05 + syst_JES_EtaIntercalibration_Stat114: 1.60474507e-07 syst_JES_EtaIntercalibration_Stat115: 0.0 - syst_JES_EtaIntercalibration_Stat116: 6.302066863339361e-07 - syst_JES_EtaIntercalibration_Stat117: 7.953577308356285e-07 - syst_JES_EtaIntercalibration_Stat118: 2.592014033526825e-12 - syst_JES_EtaIntercalibration_Stat119: 2.592014033526825e-12 + syst_JES_EtaIntercalibration_Stat116: 6.30206686e-07 + syst_JES_EtaIntercalibration_Stat117: 7.95357731e-07 + syst_JES_EtaIntercalibration_Stat118: 2.59201403e-12 + syst_JES_EtaIntercalibration_Stat119: 2.59201403e-12 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 2.592014033526825e-12 - syst_JES_EtaIntercalibration_Stat121: 3.6953303979481996e-09 - syst_JES_EtaIntercalibration_Stat122: 1.9368639601169718e-05 - syst_JES_EtaIntercalibration_Stat123: 0.0003403493609513613 - syst_JES_EtaIntercalibration_Stat124: 0.0006680494349222968 - syst_JES_EtaIntercalibration_Stat125: 0.0003157612710577407 - syst_JES_EtaIntercalibration_Stat126: 8.461871780522323e-06 + syst_JES_EtaIntercalibration_Stat120: 2.59201403e-12 + syst_JES_EtaIntercalibration_Stat121: 3.69533040e-09 + syst_JES_EtaIntercalibration_Stat122: 1.93686396e-05 + syst_JES_EtaIntercalibration_Stat123: 3.40349361e-04 + syst_JES_EtaIntercalibration_Stat124: 6.68049435e-04 + syst_JES_EtaIntercalibration_Stat125: 3.15761271e-04 + syst_JES_EtaIntercalibration_Stat126: 8.46187178e-06 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 5.143116564885536e-05 - syst_JES_EtaIntercalibration_Stat129: 0.004364890376630323 + syst_JES_EtaIntercalibration_Stat128: 5.14311656e-05 + syst_JES_EtaIntercalibration_Stat129: 4.36489038e-03 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 0.007937934806988527 - syst_JES_EtaIntercalibration_Stat131: 0.003673859919417179 - syst_JES_EtaIntercalibration_Stat132: 0.00020437049609716175 - syst_JES_EtaIntercalibration_Stat133: 1.1886540876449295e-05 + syst_JES_EtaIntercalibration_Stat130: 7.93793481e-03 + syst_JES_EtaIntercalibration_Stat131: 3.67385992e-03 + syst_JES_EtaIntercalibration_Stat132: 2.04370496e-04 + syst_JES_EtaIntercalibration_Stat133: 1.18865409e-05 syst_JES_EtaIntercalibration_Stat134: 0.0 - syst_JES_EtaIntercalibration_Stat135: 6.302066863339361e-07 - syst_JES_EtaIntercalibration_Stat136: 6.302066863339361e-07 - syst_JES_EtaIntercalibration_Stat137: 2.592014033526825e-12 - syst_JES_EtaIntercalibration_Stat138: 2.592014033526825e-12 - syst_JES_EtaIntercalibration_Stat139: 2.592014033526825e-12 + syst_JES_EtaIntercalibration_Stat135: 6.30206686e-07 + syst_JES_EtaIntercalibration_Stat136: 6.30206686e-07 + syst_JES_EtaIntercalibration_Stat137: 2.59201403e-12 + syst_JES_EtaIntercalibration_Stat138: 2.59201403e-12 + syst_JES_EtaIntercalibration_Stat139: 2.59201403e-12 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 2.857017807084863e-09 - syst_JES_EtaIntercalibration_Stat141: 5.518989286998118e-05 - syst_JES_EtaIntercalibration_Stat142: 0.003251155333108524 - syst_JES_EtaIntercalibration_Stat143: 0.007462416816956823 - syst_JES_EtaIntercalibration_Stat144: 0.004352039866545343 - syst_JES_EtaIntercalibration_Stat145: 2.4050737010536704e-06 - syst_JES_EtaIntercalibration_Stat146: 0.0002780785793620214 - syst_JES_EtaIntercalibration_Stat147: 0.004287189289033084 - syst_JES_EtaIntercalibration_Stat148: 0.0097855134765632 - syst_JES_EtaIntercalibration_Stat149: 0.004019442682760882 + syst_JES_EtaIntercalibration_Stat140: 2.85701781e-09 + syst_JES_EtaIntercalibration_Stat141: 5.51898929e-05 + syst_JES_EtaIntercalibration_Stat142: 3.25115533e-03 + syst_JES_EtaIntercalibration_Stat143: 7.46241682e-03 + syst_JES_EtaIntercalibration_Stat144: 4.35203987e-03 + syst_JES_EtaIntercalibration_Stat145: 2.40507370e-06 + syst_JES_EtaIntercalibration_Stat146: 2.78078579e-04 + syst_JES_EtaIntercalibration_Stat147: 4.28718929e-03 + syst_JES_EtaIntercalibration_Stat148: 9.78551348e-03 + syst_JES_EtaIntercalibration_Stat149: 4.01944268e-03 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 0.0002832025953270909 - syst_JES_EtaIntercalibration_Stat151: 1.3604868687348658e-06 + syst_JES_EtaIntercalibration_Stat150: 2.83202595e-04 + syst_JES_EtaIntercalibration_Stat151: 1.36048687e-06 syst_JES_EtaIntercalibration_Stat152: 0.0 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 2.592014033526825e-12 + syst_JES_EtaIntercalibration_Stat156: 2.59201403e-12 syst_JES_EtaIntercalibration_Stat157: 0.0 syst_JES_EtaIntercalibration_Stat158: 0.0 - syst_JES_EtaIntercalibration_Stat159: 0.0004848519774116632 - syst_JES_EtaIntercalibration_Stat16: 1.0778554519545256e-05 - syst_JES_EtaIntercalibration_Stat160: 0.004300351613531154 - syst_JES_EtaIntercalibration_Stat161: 0.009266919269638643 - syst_JES_EtaIntercalibration_Stat162: 0.003921513355835984 - syst_JES_EtaIntercalibration_Stat163: 9.948429165828141e-05 - syst_JES_EtaIntercalibration_Stat164: 0.0003586824047817233 - syst_JES_EtaIntercalibration_Stat165: 0.006844988732642296 - syst_JES_EtaIntercalibration_Stat166: 0.01600790742102165 - syst_JES_EtaIntercalibration_Stat167: 0.007446785078139425 - syst_JES_EtaIntercalibration_Stat168: 0.0005820270869985348 - syst_JES_EtaIntercalibration_Stat169: 1.3604868687348658e-06 - syst_JES_EtaIntercalibration_Stat17: 2.809262503509394e-08 + syst_JES_EtaIntercalibration_Stat159: 4.84851977e-04 + syst_JES_EtaIntercalibration_Stat16: 1.07785545e-05 + syst_JES_EtaIntercalibration_Stat160: 4.30035161e-03 + syst_JES_EtaIntercalibration_Stat161: 9.26691927e-03 + syst_JES_EtaIntercalibration_Stat162: 3.92151336e-03 + syst_JES_EtaIntercalibration_Stat163: 9.94842917e-05 + syst_JES_EtaIntercalibration_Stat164: 3.58682405e-04 + syst_JES_EtaIntercalibration_Stat165: 6.84498873e-03 + syst_JES_EtaIntercalibration_Stat166: 1.60079074e-02 + syst_JES_EtaIntercalibration_Stat167: 7.44678508e-03 + syst_JES_EtaIntercalibration_Stat168: 5.82027087e-04 + syst_JES_EtaIntercalibration_Stat169: 1.36048687e-06 + syst_JES_EtaIntercalibration_Stat17: 2.80926250e-08 syst_JES_EtaIntercalibration_Stat170: 0.0 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 syst_JES_EtaIntercalibration_Stat175: 0.0 - syst_JES_EtaIntercalibration_Stat176: 8.0973375253845e-06 - syst_JES_EtaIntercalibration_Stat177: 0.0005983369548743958 - syst_JES_EtaIntercalibration_Stat178: 0.006591157011481368 - syst_JES_EtaIntercalibration_Stat179: 0.016311268344307253 - syst_JES_EtaIntercalibration_Stat18: 2.948422152185809e-12 - syst_JES_EtaIntercalibration_Stat180: 0.00751925554825742 - syst_JES_EtaIntercalibration_Stat181: 0.00014781308627790708 - syst_JES_EtaIntercalibration_Stat182: 0.013324046269808583 - syst_JES_EtaIntercalibration_Stat183: 0.031248473162700283 - syst_JES_EtaIntercalibration_Stat184: 0.013032426136372306 - syst_JES_EtaIntercalibration_Stat185: 0.0010675654300791124 - syst_JES_EtaIntercalibration_Stat186: 1.405559230342144e-06 + syst_JES_EtaIntercalibration_Stat176: 8.09733753e-06 + syst_JES_EtaIntercalibration_Stat177: 5.98336955e-04 + syst_JES_EtaIntercalibration_Stat178: 6.59115701e-03 + syst_JES_EtaIntercalibration_Stat179: 1.63112683e-02 + syst_JES_EtaIntercalibration_Stat18: 2.94842215e-12 + syst_JES_EtaIntercalibration_Stat180: 7.51925555e-03 + syst_JES_EtaIntercalibration_Stat181: 1.47813086e-04 + syst_JES_EtaIntercalibration_Stat182: 1.33240463e-02 + syst_JES_EtaIntercalibration_Stat183: 3.12484732e-02 + syst_JES_EtaIntercalibration_Stat184: 1.30324261e-02 + syst_JES_EtaIntercalibration_Stat185: 1.06756543e-03 + syst_JES_EtaIntercalibration_Stat186: 1.40555923e-06 syst_JES_EtaIntercalibration_Stat187: 0.0 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 @@ -48341,31 +48341,31 @@ bins: syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 syst_JES_EtaIntercalibration_Stat192: 0.0 - syst_JES_EtaIntercalibration_Stat193: 2.9160167124864016e-05 - syst_JES_EtaIntercalibration_Stat194: 0.0014707197829634303 - syst_JES_EtaIntercalibration_Stat195: 0.01437738067243126 - syst_JES_EtaIntercalibration_Stat196: 0.028816163866830016 - syst_JES_EtaIntercalibration_Stat197: 0.012494507433268427 - syst_JES_EtaIntercalibration_Stat198: 0.0064764995753879276 - syst_JES_EtaIntercalibration_Stat199: 0.0029672724849598834 + syst_JES_EtaIntercalibration_Stat193: 2.91601671e-05 + syst_JES_EtaIntercalibration_Stat194: 1.47071978e-03 + syst_JES_EtaIntercalibration_Stat195: 1.43773807e-02 + syst_JES_EtaIntercalibration_Stat196: 2.88161639e-02 + syst_JES_EtaIntercalibration_Stat197: 1.24945074e-02 + syst_JES_EtaIntercalibration_Stat198: 6.47649958e-03 + syst_JES_EtaIntercalibration_Stat199: 2.96727248e-03 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 0.0005061947722961983 - syst_JES_EtaIntercalibration_Stat201: 1.405559230342144e-06 + syst_JES_EtaIntercalibration_Stat200: 5.06194772e-04 + syst_JES_EtaIntercalibration_Stat201: 1.40555923e-06 syst_JES_EtaIntercalibration_Stat202: 0.0 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 syst_JES_EtaIntercalibration_Stat207: 0.0 - syst_JES_EtaIntercalibration_Stat208: 1.0937034824393676e-06 - syst_JES_EtaIntercalibration_Stat209: 0.00011568937980644549 + syst_JES_EtaIntercalibration_Stat208: 1.09370348e-06 + syst_JES_EtaIntercalibration_Stat209: 1.15689380e-04 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 0.0018564478231288917 - syst_JES_EtaIntercalibration_Stat211: 0.005087942413196125 - syst_JES_EtaIntercalibration_Stat212: 0.0008026976812598876 - syst_JES_EtaIntercalibration_Stat213: 1.354463731518862e-05 - syst_JES_EtaIntercalibration_Stat214: 1.405559230342144e-06 + syst_JES_EtaIntercalibration_Stat210: 1.85644782e-03 + syst_JES_EtaIntercalibration_Stat211: 5.08794241e-03 + syst_JES_EtaIntercalibration_Stat212: 8.02697681e-04 + syst_JES_EtaIntercalibration_Stat213: 1.35446373e-05 + syst_JES_EtaIntercalibration_Stat214: 1.40555923e-06 syst_JES_EtaIntercalibration_Stat215: 0.0 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 @@ -48373,11 +48373,11 @@ bins: syst_JES_EtaIntercalibration_Stat219: 0.0 syst_JES_EtaIntercalibration_Stat22: 0.0 syst_JES_EtaIntercalibration_Stat220: 0.0 - syst_JES_EtaIntercalibration_Stat221: 3.017232506784984e-12 - syst_JES_EtaIntercalibration_Stat222: 2.3218935849161996e-05 - syst_JES_EtaIntercalibration_Stat223: 0.0008145962604259856 - syst_JES_EtaIntercalibration_Stat224: 2.2139236662541014e-05 - syst_JES_EtaIntercalibration_Stat225: 1.8538270975201545e-06 + syst_JES_EtaIntercalibration_Stat221: 3.01723251e-12 + syst_JES_EtaIntercalibration_Stat222: 2.32189358e-05 + syst_JES_EtaIntercalibration_Stat223: 8.14596260e-04 + syst_JES_EtaIntercalibration_Stat224: 2.21392367e-05 + syst_JES_EtaIntercalibration_Stat225: 1.85382710e-06 syst_JES_EtaIntercalibration_Stat226: 0.0 syst_JES_EtaIntercalibration_Stat227: 0.0 syst_JES_EtaIntercalibration_Stat228: 0.0 @@ -48386,296 +48386,296 @@ bins: syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 syst_JES_EtaIntercalibration_Stat232: 0.0 - syst_JES_EtaIntercalibration_Stat233: 3.017232506784984e-12 - syst_JES_EtaIntercalibration_Stat234: 1.8662847451554652e-07 - syst_JES_EtaIntercalibration_Stat235: 4.3431322372223484e-05 - syst_JES_EtaIntercalibration_Stat236: 6.257033536364107e-16 + syst_JES_EtaIntercalibration_Stat233: 3.01723251e-12 + syst_JES_EtaIntercalibration_Stat234: 1.86628475e-07 + syst_JES_EtaIntercalibration_Stat235: 4.34313224e-05 + syst_JES_EtaIntercalibration_Stat236: 6.25703354e-16 syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 syst_JES_EtaIntercalibration_Stat239: 0.0 - syst_JES_EtaIntercalibration_Stat24: 8.010734985006058e-12 + syst_JES_EtaIntercalibration_Stat24: 8.01073499e-12 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 syst_JES_EtaIntercalibration_Stat243: 0.0 - syst_JES_EtaIntercalibration_Stat244: 3.017232506784984e-12 - syst_JES_EtaIntercalibration_Stat245: 3.328157260407026e-20 - syst_JES_EtaIntercalibration_Stat25: 4.778778714274182e-09 - syst_JES_EtaIntercalibration_Stat26: 6.93556135206805e-06 - syst_JES_EtaIntercalibration_Stat27: 1.184319157914369e-05 - syst_JES_EtaIntercalibration_Stat28: 8.046073904748514e-10 + syst_JES_EtaIntercalibration_Stat244: 3.01723251e-12 + syst_JES_EtaIntercalibration_Stat245: 3.32815726e-20 + syst_JES_EtaIntercalibration_Stat25: 4.77877871e-09 + syst_JES_EtaIntercalibration_Stat26: 6.93556135e-06 + syst_JES_EtaIntercalibration_Stat27: 1.18431916e-05 + syst_JES_EtaIntercalibration_Stat28: 8.04607390e-10 syst_JES_EtaIntercalibration_Stat29: 0.0 - syst_JES_EtaIntercalibration_Stat3: 2.116197461178895e-10 + syst_JES_EtaIntercalibration_Stat3: 2.11619746e-10 syst_JES_EtaIntercalibration_Stat30: 0.0 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 3.4072903486494955e-09 - syst_JES_EtaIntercalibration_Stat36: 3.4072903486494955e-09 - syst_JES_EtaIntercalibration_Stat37: 4.1554288074590756e-09 - syst_JES_EtaIntercalibration_Stat38: 1.0749199174993223e-05 - syst_JES_EtaIntercalibration_Stat39: 1.038058605411443e-05 - syst_JES_EtaIntercalibration_Stat4: 5.495788049928379e-06 - syst_JES_EtaIntercalibration_Stat40: 3.8540227975843626e-08 + syst_JES_EtaIntercalibration_Stat35: 3.40729035e-09 + syst_JES_EtaIntercalibration_Stat36: 3.40729035e-09 + syst_JES_EtaIntercalibration_Stat37: 4.15542881e-09 + syst_JES_EtaIntercalibration_Stat38: 1.07491992e-05 + syst_JES_EtaIntercalibration_Stat39: 1.03805861e-05 + syst_JES_EtaIntercalibration_Stat4: 5.49578805e-06 + syst_JES_EtaIntercalibration_Stat40: 3.85402280e-08 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 syst_JES_EtaIntercalibration_Stat44: 0.0 syst_JES_EtaIntercalibration_Stat45: 0.0 - syst_JES_EtaIntercalibration_Stat46: 2.8562249123624704e-10 - syst_JES_EtaIntercalibration_Stat47: 6.951432280472852e-08 - syst_JES_EtaIntercalibration_Stat48: 3.832164614157382e-06 - syst_JES_EtaIntercalibration_Stat49: 1.2801201991610007e-05 - syst_JES_EtaIntercalibration_Stat5: 5.487136105343711e-06 - syst_JES_EtaIntercalibration_Stat50: 4.073554070771615e-09 + syst_JES_EtaIntercalibration_Stat46: 2.85622491e-10 + syst_JES_EtaIntercalibration_Stat47: 6.95143228e-08 + syst_JES_EtaIntercalibration_Stat48: 3.83216461e-06 + syst_JES_EtaIntercalibration_Stat49: 1.28012020e-05 + syst_JES_EtaIntercalibration_Stat5: 5.48713611e-06 + syst_JES_EtaIntercalibration_Stat50: 4.07355407e-09 syst_JES_EtaIntercalibration_Stat51: 0.0 syst_JES_EtaIntercalibration_Stat52: 0.0 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 2.592014033526825e-12 - syst_JES_EtaIntercalibration_Stat57: 3.4072903486494955e-09 - syst_JES_EtaIntercalibration_Stat58: 3.4072903486494955e-09 - syst_JES_EtaIntercalibration_Stat59: 4.970484892593478e-09 + syst_JES_EtaIntercalibration_Stat56: 2.59201403e-12 + syst_JES_EtaIntercalibration_Stat57: 3.40729035e-09 + syst_JES_EtaIntercalibration_Stat58: 3.40729035e-09 + syst_JES_EtaIntercalibration_Stat59: 4.97048489e-09 syst_JES_EtaIntercalibration_Stat6: 0.0 - syst_JES_EtaIntercalibration_Stat60: 2.8887841192273264e-05 - syst_JES_EtaIntercalibration_Stat61: 2.086119009069233e-05 - syst_JES_EtaIntercalibration_Stat62: 1.430567310545016e-07 - syst_JES_EtaIntercalibration_Stat63: 4.7566997719006826e-11 + syst_JES_EtaIntercalibration_Stat60: 2.88878412e-05 + syst_JES_EtaIntercalibration_Stat61: 2.08611901e-05 + syst_JES_EtaIntercalibration_Stat62: 1.43056731e-07 + syst_JES_EtaIntercalibration_Stat63: 4.75669977e-11 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 3.0644896292041843e-09 - syst_JES_EtaIntercalibration_Stat69: 0.00019113124077450026 + syst_JES_EtaIntercalibration_Stat68: 3.06448963e-09 + syst_JES_EtaIntercalibration_Stat69: 1.91131241e-04 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 0.00012165846744061838 - syst_JES_EtaIntercalibration_Stat71: 1.5716964425422613e-05 - syst_JES_EtaIntercalibration_Stat72: 1.2447527217029895e-05 + syst_JES_EtaIntercalibration_Stat70: 1.21658467e-04 + syst_JES_EtaIntercalibration_Stat71: 1.57169644e-05 + syst_JES_EtaIntercalibration_Stat72: 1.24475272e-05 syst_JES_EtaIntercalibration_Stat73: 0.0 syst_JES_EtaIntercalibration_Stat74: 0.0 syst_JES_EtaIntercalibration_Stat75: 0.0 - syst_JES_EtaIntercalibration_Stat76: 2.598076211353316e-10 - syst_JES_EtaIntercalibration_Stat77: 2.592014033526825e-12 - syst_JES_EtaIntercalibration_Stat78: 2.592014033526825e-12 - syst_JES_EtaIntercalibration_Stat79: 3.4072903486494955e-09 + syst_JES_EtaIntercalibration_Stat76: 2.59807621e-10 + syst_JES_EtaIntercalibration_Stat77: 2.59201403e-12 + syst_JES_EtaIntercalibration_Stat78: 2.59201403e-12 + syst_JES_EtaIntercalibration_Stat79: 3.40729035e-09 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 3.3762000366536344e-09 - syst_JES_EtaIntercalibration_Stat81: 3.434076986615181e-08 - syst_JES_EtaIntercalibration_Stat82: 2.159306543777423e-05 - syst_JES_EtaIntercalibration_Stat83: 3.0833317612608605e-05 - syst_JES_EtaIntercalibration_Stat84: 8.313412701772962e-06 - syst_JES_EtaIntercalibration_Stat85: 2.602702961826416e-10 + syst_JES_EtaIntercalibration_Stat80: 3.37620004e-09 + syst_JES_EtaIntercalibration_Stat81: 3.43407699e-08 + syst_JES_EtaIntercalibration_Stat82: 2.15930654e-05 + syst_JES_EtaIntercalibration_Stat83: 3.08333176e-05 + syst_JES_EtaIntercalibration_Stat84: 8.31341270e-06 + syst_JES_EtaIntercalibration_Stat85: 2.60270296e-10 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 4.919521989736402e-09 + syst_JES_EtaIntercalibration_Stat89: 4.91952199e-09 syst_JES_EtaIntercalibration_Stat9: 0.0 - syst_JES_EtaIntercalibration_Stat90: 0.00017648559339220865 - syst_JES_EtaIntercalibration_Stat91: 0.00023628742560703481 - syst_JES_EtaIntercalibration_Stat92: 0.00013573521724298378 - syst_JES_EtaIntercalibration_Stat93: 1.2600750851834187e-05 + syst_JES_EtaIntercalibration_Stat90: 1.76485593e-04 + syst_JES_EtaIntercalibration_Stat91: 2.36287426e-04 + syst_JES_EtaIntercalibration_Stat92: 1.35735217e-04 + syst_JES_EtaIntercalibration_Stat93: 1.26007509e-05 syst_JES_EtaIntercalibration_Stat94: 0.0 syst_JES_EtaIntercalibration_Stat95: 0.0 - syst_JES_EtaIntercalibration_Stat96: 7.953577308356285e-07 - syst_JES_EtaIntercalibration_Stat97: 2.598076211353316e-10 - syst_JES_EtaIntercalibration_Stat98: 2.592014033526825e-12 - syst_JES_EtaIntercalibration_Stat99: 2.592014033526825e-12 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.020745852597567543 - syst_JES_Flavour_Comp: 0.07781248807228823 - syst_JES_Gjet_Generator: 0.24740327402845744 - syst_JES_Gjet_OOC: 0.1744656054928879 - syst_JES_Gjet_Purity: 0.06008327283861957 - syst_JES_Gjet_Stat1: 0.00010921446367125557 - syst_JES_Gjet_Stat10: 0.01212840698525573 - syst_JES_Gjet_Stat11: 0.021941710849430134 - syst_JES_Gjet_Stat12: 0.0314245811427933 - syst_JES_Gjet_Stat13: 0.011365447549480838 - syst_JES_Gjet_Stat14: 0.0042037528471593096 - syst_JES_Gjet_Stat15: 0.0004097878597518477 - syst_JES_Gjet_Stat2: 8.7208758161093e-16 - syst_JES_Gjet_Stat3: 4.841082007155012e-09 - syst_JES_Gjet_Stat4: 0.00031523551169904384 - syst_JES_Gjet_Stat5: 0.00044055025338727725 - syst_JES_Gjet_Stat6: 0.001979317559160227 - syst_JES_Gjet_Stat7: 0.0026874878139258604 - syst_JES_Gjet_Stat8: 0.0023301332043469103 - syst_JES_Gjet_Stat9: 0.0056486438195375716 - syst_JES_Gjet_Veto: 0.08798465590658408 - syst_JES_Gjet_dPhi: 0.01146062790600934 - syst_JES_LArESZee: 0.32970945922129685 - syst_JES_LArEsmear: 0.024784140089984964 - syst_JES_LAr_JVT: 0.034366963787917024 - syst_JES_MJB_Alpha: 0.0008404776543727977 - syst_JES_MJB_Asym: 0.008032362214815764 - syst_JES_MJB_Beta: 2.3824358858109906e-12 - syst_JES_MJB_Stat1: 0.0015294008630833186 + syst_JES_EtaIntercalibration_Stat96: 7.95357731e-07 + syst_JES_EtaIntercalibration_Stat97: 2.59807621e-10 + syst_JES_EtaIntercalibration_Stat98: 2.59201403e-12 + syst_JES_EtaIntercalibration_Stat99: 2.59201403e-12 + syst_JES_EtaIntercalibration_TotalStat_MJB: 2.07458526e-02 + syst_JES_Flavour_Comp: 7.78124881e-02 + syst_JES_Gjet_Generator: 2.47403274e-01 + syst_JES_Gjet_OOC: 1.74465605e-01 + syst_JES_Gjet_Purity: 6.00832728e-02 + syst_JES_Gjet_Stat1: 1.09214464e-04 + syst_JES_Gjet_Stat10: 1.21284070e-02 + syst_JES_Gjet_Stat11: 2.19417108e-02 + syst_JES_Gjet_Stat12: 3.14245811e-02 + syst_JES_Gjet_Stat13: 1.13654475e-02 + syst_JES_Gjet_Stat14: 4.20375285e-03 + syst_JES_Gjet_Stat15: 4.09787860e-04 + syst_JES_Gjet_Stat2: 8.72087582e-16 + syst_JES_Gjet_Stat3: 4.84108201e-09 + syst_JES_Gjet_Stat4: 3.15235512e-04 + syst_JES_Gjet_Stat5: 4.40550253e-04 + syst_JES_Gjet_Stat6: 1.97931756e-03 + syst_JES_Gjet_Stat7: 2.68748781e-03 + syst_JES_Gjet_Stat8: 2.33013320e-03 + syst_JES_Gjet_Stat9: 5.64864382e-03 + syst_JES_Gjet_Veto: 8.79846559e-02 + syst_JES_Gjet_dPhi: 1.14606279e-02 + syst_JES_LArESZee: 3.29709459e-01 + syst_JES_LArEsmear: 2.47841401e-02 + syst_JES_LAr_JVT: 3.43669638e-02 + syst_JES_MJB_Alpha: 8.40477654e-04 + syst_JES_MJB_Asym: 8.03236221e-03 + syst_JES_MJB_Beta: 2.38243589e-12 + syst_JES_MJB_Stat1: 1.52940086e-03 syst_JES_MJB_Stat10: 0.0 - syst_JES_MJB_Stat11: 5.572007447949078e-08 + syst_JES_MJB_Stat11: 5.57200745e-08 syst_JES_MJB_Stat12: 0.0 syst_JES_MJB_Stat13: 0.0 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 - syst_JES_MJB_Stat16: 1.2496746576609448e-26 - syst_JES_MJB_Stat2: 0.0021343574841155358 - syst_JES_MJB_Stat3: 0.002108774762747316 - syst_JES_MJB_Stat4: 4.185500776490192e-05 - syst_JES_MJB_Stat5: 0.00034935464788664257 + syst_JES_MJB_Stat16: 1.24967466e-26 + syst_JES_MJB_Stat2: 2.13435748e-03 + syst_JES_MJB_Stat3: 2.10877476e-03 + syst_JES_MJB_Stat4: 4.18550078e-05 + syst_JES_MJB_Stat5: 3.49354648e-04 syst_JES_MJB_Stat6: 0.0 - syst_JES_MJB_Stat7: 1.9217103709976693e-09 + syst_JES_MJB_Stat7: 1.92171037e-09 syst_JES_MJB_Stat8: 0.0 syst_JES_MJB_Stat9: 0.0 - syst_JES_MJB_Threshold: 0.005856416737220807 - syst_JES_Pileup_MuOffset: 0.017414921044897103 - syst_JES_Pileup_NPVOffset: 0.02409335800589034 - syst_JES_Pileup_Pt_term: 0.07055389287629704 - syst_JES_PunchThrough_MC15: 0.003075300473124537 + syst_JES_MJB_Threshold: 5.85641674e-03 + syst_JES_Pileup_MuOffset: 1.74149210e-02 + syst_JES_Pileup_NPVOffset: 2.40933580e-02 + syst_JES_Pileup_Pt_term: 7.05538929e-02 + syst_JES_PunchThrough_MC15: 3.07530047e-03 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.2229036338869333 - syst_JES_Zjet_MuScale: 0.013128623461734287 - syst_JES_Zjet_MuSmearID: 0.0023420277538919133 - syst_JES_Zjet_MuSmearMS: 0.04206782945434671 - syst_JES_Zjet_OOC: 0.08283956240830827 - syst_JES_Zjet_Stat1: 0.0012410123127631918 - syst_JES_Zjet_Stat10: 0.00878713394685662 - syst_JES_Zjet_Stat11: 0.01245618083523196 - syst_JES_Zjet_Stat12: 0.07302876419603443 - syst_JES_Zjet_Stat13: 0.029047417699341195 - syst_JES_Zjet_Stat2: 9.829500025433643e-05 - syst_JES_Zjet_Stat3: 0.0010729188727485412 - syst_JES_Zjet_Stat4: 3.5729888619333816e-09 - syst_JES_Zjet_Stat5: 4.986362008518836e-09 - syst_JES_Zjet_Stat6: 0.001524690404639578 - syst_JES_Zjet_Stat7: 0.0006083140595736713 - syst_JES_Zjet_Stat8: 0.0019389081334606857 - syst_JES_Zjet_Stat9: 0.004928896123880072 - syst_JES_Zjet_Veto: 0.015535014483417774 - syst_JES_Zjet_dPhi: 0.012951835120939427 + syst_JES_Zjet_MC: 2.22903634e-01 + syst_JES_Zjet_MuScale: 1.31286235e-02 + syst_JES_Zjet_MuSmearID: 2.34202775e-03 + syst_JES_Zjet_MuSmearMS: 4.20678295e-02 + syst_JES_Zjet_OOC: 8.28395624e-02 + syst_JES_Zjet_Stat1: 1.24101231e-03 + syst_JES_Zjet_Stat10: 8.78713395e-03 + syst_JES_Zjet_Stat11: 1.24561808e-02 + syst_JES_Zjet_Stat12: 7.30287642e-02 + syst_JES_Zjet_Stat13: 2.90474177e-02 + syst_JES_Zjet_Stat2: 9.82950003e-05 + syst_JES_Zjet_Stat3: 1.07291887e-03 + syst_JES_Zjet_Stat4: 3.57298886e-09 + syst_JES_Zjet_Stat5: 4.98636201e-09 + syst_JES_Zjet_Stat6: 1.52469040e-03 + syst_JES_Zjet_Stat7: 6.08314060e-04 + syst_JES_Zjet_Stat8: 1.93890813e-03 + syst_JES_Zjet_Stat9: 4.92889612e-03 + syst_JES_Zjet_Veto: 1.55350145e-02 + syst_JES_Zjet_dPhi: 1.29518351e-02 syst_PRW: 0.0 syst_Unfolding_bias: 0.0 - syst_cleaning: 0.052065447275520454 + syst_cleaning: 5.20654473e-02 syst_lumi: 0.2275 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 0.13822185391608666 - syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.01377797924225465 - syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.018090796002387513 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 0.12190047538873669 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.019356487284628892 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.07585849639295524 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 1.38221854e-01 + syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.37779792e-02 + syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.80907960e-02 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 1.21900475e-01 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.93564873e-02 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 7.58584964e-02 - stat: 0.05875 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.048586811739401055 - syst_JER_NP1: 0.027800003597122067 - syst_JER_NP2: 2.9397947207245608e-05 - syst_JER_NP3: 0.018859673247434594 - syst_JER_NP4: 0.0073787439818711695 - syst_JER_NP5: 0.0035845857763903487 - syst_JER_NP6: 0.00011260606822014522 - syst_JER_NP7: 4.493454239223985e-09 - syst_JER_NP8: 0.010065802054481302 - syst_JES_EtaIntercalibration_Modelling: 0.21312322140020315 - syst_JES_EtaIntercalibration_NonClosure: 0.09260787007592822 + syst_JER_NP0: 4.85868117e-02 + syst_JER_NP1: 2.78000036e-02 + syst_JER_NP2: 2.93979472e-05 + syst_JER_NP3: 1.88596732e-02 + syst_JER_NP4: 7.37874398e-03 + syst_JER_NP5: 3.58458578e-03 + syst_JER_NP6: 1.12606068e-04 + syst_JER_NP7: 4.49345424e-09 + syst_JER_NP8: 1.00658021e-02 + syst_JES_EtaIntercalibration_Modelling: 2.13123221e-01 + syst_JES_EtaIntercalibration_NonClosure: 9.26078701e-02 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 3.7620143540396015e-13 + syst_JES_EtaIntercalibration_Stat100: 3.76201435e-13 syst_JES_EtaIntercalibration_Stat101: 0.0 - syst_JES_EtaIntercalibration_Stat102: 2.3655090361273194e-07 - syst_JES_EtaIntercalibration_Stat103: 1.6097708431637096e-05 - syst_JES_EtaIntercalibration_Stat104: 3.7182702547690105e-05 - syst_JES_EtaIntercalibration_Stat105: 5.388385286892541e-06 - syst_JES_EtaIntercalibration_Stat106: 3.525910913508735e-09 + syst_JES_EtaIntercalibration_Stat102: 2.36550904e-07 + syst_JES_EtaIntercalibration_Stat103: 1.60977084e-05 + syst_JES_EtaIntercalibration_Stat104: 3.71827025e-05 + syst_JES_EtaIntercalibration_Stat105: 5.38838529e-06 + syst_JES_EtaIntercalibration_Stat106: 3.52591091e-09 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 1.9971539750354756e-07 + syst_JES_EtaIntercalibration_Stat109: 1.99715398e-07 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 6.954227131752313e-05 - syst_JES_EtaIntercalibration_Stat111: 0.00015663434872338825 - syst_JES_EtaIntercalibration_Stat112: 0.00011918194158512437 - syst_JES_EtaIntercalibration_Stat113: 9.767053512062887e-06 - syst_JES_EtaIntercalibration_Stat114: 1.8706148721743877e-08 + syst_JES_EtaIntercalibration_Stat110: 6.95422713e-05 + syst_JES_EtaIntercalibration_Stat111: 1.56634349e-04 + syst_JES_EtaIntercalibration_Stat112: 1.19181942e-04 + syst_JES_EtaIntercalibration_Stat113: 9.76705351e-06 + syst_JES_EtaIntercalibration_Stat114: 1.87061487e-08 syst_JES_EtaIntercalibration_Stat115: 0.0 - syst_JES_EtaIntercalibration_Stat116: 1.450592551338935e-07 - syst_JES_EtaIntercalibration_Stat117: 1.6350559623450202e-07 - syst_JES_EtaIntercalibration_Stat118: 3.7620143540396015e-13 - syst_JES_EtaIntercalibration_Stat119: 3.7620143540396015e-13 + syst_JES_EtaIntercalibration_Stat116: 1.45059255e-07 + syst_JES_EtaIntercalibration_Stat117: 1.63505596e-07 + syst_JES_EtaIntercalibration_Stat118: 3.76201435e-13 + syst_JES_EtaIntercalibration_Stat119: 3.76201435e-13 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 3.7620143540396015e-13 - syst_JES_EtaIntercalibration_Stat121: 3.950807892064609e-10 - syst_JES_EtaIntercalibration_Stat122: 5.079446426531143e-06 - syst_JES_EtaIntercalibration_Stat123: 0.00012156826053977863 - syst_JES_EtaIntercalibration_Stat124: 0.0002672386025633273 - syst_JES_EtaIntercalibration_Stat125: 8.090749949788338e-05 - syst_JES_EtaIntercalibration_Stat126: 6.165394218539476e-07 + syst_JES_EtaIntercalibration_Stat120: 3.76201435e-13 + syst_JES_EtaIntercalibration_Stat121: 3.95080789e-10 + syst_JES_EtaIntercalibration_Stat122: 5.07944643e-06 + syst_JES_EtaIntercalibration_Stat123: 1.21568261e-04 + syst_JES_EtaIntercalibration_Stat124: 2.67238603e-04 + syst_JES_EtaIntercalibration_Stat125: 8.09074995e-05 + syst_JES_EtaIntercalibration_Stat126: 6.16539422e-07 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 3.1603393409569165e-05 - syst_JES_EtaIntercalibration_Stat129: 0.001435573902660535 + syst_JES_EtaIntercalibration_Stat128: 3.16033934e-05 + syst_JES_EtaIntercalibration_Stat129: 1.43557390e-03 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 0.002975479457163164 - syst_JES_EtaIntercalibration_Stat131: 0.0014134965581847024 - syst_JES_EtaIntercalibration_Stat132: 9.77903820360162e-05 - syst_JES_EtaIntercalibration_Stat133: 4.093003432917568e-06 + syst_JES_EtaIntercalibration_Stat130: 2.97547946e-03 + syst_JES_EtaIntercalibration_Stat131: 1.41349656e-03 + syst_JES_EtaIntercalibration_Stat132: 9.77903820e-05 + syst_JES_EtaIntercalibration_Stat133: 4.09300343e-06 syst_JES_EtaIntercalibration_Stat134: 0.0 - syst_JES_EtaIntercalibration_Stat135: 1.450592551338935e-07 - syst_JES_EtaIntercalibration_Stat136: 1.450592551338935e-07 - syst_JES_EtaIntercalibration_Stat137: 3.7620143540396015e-13 - syst_JES_EtaIntercalibration_Stat138: 3.7620143540396015e-13 - syst_JES_EtaIntercalibration_Stat139: 3.7620143540396015e-13 + syst_JES_EtaIntercalibration_Stat135: 1.45059255e-07 + syst_JES_EtaIntercalibration_Stat136: 1.45059255e-07 + syst_JES_EtaIntercalibration_Stat137: 3.76201435e-13 + syst_JES_EtaIntercalibration_Stat138: 3.76201435e-13 + syst_JES_EtaIntercalibration_Stat139: 3.76201435e-13 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 3.0752562088385417e-10 - syst_JES_EtaIntercalibration_Stat141: 4.622891600502871e-05 - syst_JES_EtaIntercalibration_Stat142: 0.0011841763498313923 - syst_JES_EtaIntercalibration_Stat143: 0.0026819239362815646 - syst_JES_EtaIntercalibration_Stat144: 0.001562745670286755 - syst_JES_EtaIntercalibration_Stat145: 1.032164754290709e-06 - syst_JES_EtaIntercalibration_Stat146: 0.00012901585251433252 - syst_JES_EtaIntercalibration_Stat147: 0.0015034268148134116 - syst_JES_EtaIntercalibration_Stat148: 0.003975163392868273 - syst_JES_EtaIntercalibration_Stat149: 0.0015484757021019093 + syst_JES_EtaIntercalibration_Stat140: 3.07525621e-10 + syst_JES_EtaIntercalibration_Stat141: 4.62289160e-05 + syst_JES_EtaIntercalibration_Stat142: 1.18417635e-03 + syst_JES_EtaIntercalibration_Stat143: 2.68192394e-03 + syst_JES_EtaIntercalibration_Stat144: 1.56274567e-03 + syst_JES_EtaIntercalibration_Stat145: 1.03216475e-06 + syst_JES_EtaIntercalibration_Stat146: 1.29015853e-04 + syst_JES_EtaIntercalibration_Stat147: 1.50342681e-03 + syst_JES_EtaIntercalibration_Stat148: 3.97516339e-03 + syst_JES_EtaIntercalibration_Stat149: 1.54847570e-03 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 0.00011544210756911881 - syst_JES_EtaIntercalibration_Stat151: 2.671570546340673e-06 + syst_JES_EtaIntercalibration_Stat150: 1.15442108e-04 + syst_JES_EtaIntercalibration_Stat151: 2.67157055e-06 syst_JES_EtaIntercalibration_Stat152: 0.0 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 3.7620143540396015e-13 + syst_JES_EtaIntercalibration_Stat156: 3.76201435e-13 syst_JES_EtaIntercalibration_Stat157: 0.0 syst_JES_EtaIntercalibration_Stat158: 0.0 - syst_JES_EtaIntercalibration_Stat159: 0.0001632834345547643 - syst_JES_EtaIntercalibration_Stat16: 6.2501055965239535e-06 - syst_JES_EtaIntercalibration_Stat160: 0.0017045306538751362 - syst_JES_EtaIntercalibration_Stat161: 0.003518893966859473 - syst_JES_EtaIntercalibration_Stat162: 0.0015344900227762968 - syst_JES_EtaIntercalibration_Stat163: 5.429764083272864e-05 - syst_JES_EtaIntercalibration_Stat164: 0.0001627034255171046 - syst_JES_EtaIntercalibration_Stat165: 0.003365880679703308 - syst_JES_EtaIntercalibration_Stat166: 0.007597213173262942 - syst_JES_EtaIntercalibration_Stat167: 0.0033956130521600953 - syst_JES_EtaIntercalibration_Stat168: 0.0002732839320194292 - syst_JES_EtaIntercalibration_Stat169: 2.671570546340673e-06 - syst_JES_EtaIntercalibration_Stat17: 3.2266754328750184e-09 + syst_JES_EtaIntercalibration_Stat159: 1.63283435e-04 + syst_JES_EtaIntercalibration_Stat16: 6.25010560e-06 + syst_JES_EtaIntercalibration_Stat160: 1.70453065e-03 + syst_JES_EtaIntercalibration_Stat161: 3.51889397e-03 + syst_JES_EtaIntercalibration_Stat162: 1.53449002e-03 + syst_JES_EtaIntercalibration_Stat163: 5.42976408e-05 + syst_JES_EtaIntercalibration_Stat164: 1.62703426e-04 + syst_JES_EtaIntercalibration_Stat165: 3.36588068e-03 + syst_JES_EtaIntercalibration_Stat166: 7.59721317e-03 + syst_JES_EtaIntercalibration_Stat167: 3.39561305e-03 + syst_JES_EtaIntercalibration_Stat168: 2.73283932e-04 + syst_JES_EtaIntercalibration_Stat169: 2.67157055e-06 + syst_JES_EtaIntercalibration_Stat17: 3.22667543e-09 syst_JES_EtaIntercalibration_Stat170: 0.0 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 syst_JES_EtaIntercalibration_Stat175: 0.0 - syst_JES_EtaIntercalibration_Stat176: 2.738372326766395e-06 - syst_JES_EtaIntercalibration_Stat177: 0.00031991010352054827 - syst_JES_EtaIntercalibration_Stat178: 0.0027694459283401796 - syst_JES_EtaIntercalibration_Stat179: 0.007387780231571592 - syst_JES_EtaIntercalibration_Stat18: 3.2863554049280797e-13 - syst_JES_EtaIntercalibration_Stat180: 0.003462579529772566 - syst_JES_EtaIntercalibration_Stat181: 0.00017485261965438209 - syst_JES_EtaIntercalibration_Stat182: 0.008980849333442802 - syst_JES_EtaIntercalibration_Stat183: 0.019663399375489474 - syst_JES_EtaIntercalibration_Stat184: 0.00900803574593263 - syst_JES_EtaIntercalibration_Stat185: 0.0005699394616974684 - syst_JES_EtaIntercalibration_Stat186: 2.6777505485014848e-06 + syst_JES_EtaIntercalibration_Stat176: 2.73837233e-06 + syst_JES_EtaIntercalibration_Stat177: 3.19910104e-04 + syst_JES_EtaIntercalibration_Stat178: 2.76944593e-03 + syst_JES_EtaIntercalibration_Stat179: 7.38778023e-03 + syst_JES_EtaIntercalibration_Stat18: 3.28635540e-13 + syst_JES_EtaIntercalibration_Stat180: 3.46257953e-03 + syst_JES_EtaIntercalibration_Stat181: 1.74852620e-04 + syst_JES_EtaIntercalibration_Stat182: 8.98084933e-03 + syst_JES_EtaIntercalibration_Stat183: 1.96633994e-02 + syst_JES_EtaIntercalibration_Stat184: 9.00803575e-03 + syst_JES_EtaIntercalibration_Stat185: 5.69939462e-04 + syst_JES_EtaIntercalibration_Stat186: 2.67775055e-06 syst_JES_EtaIntercalibration_Stat187: 0.0 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 @@ -48683,31 +48683,31 @@ bins: syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 syst_JES_EtaIntercalibration_Stat192: 0.0 - syst_JES_EtaIntercalibration_Stat193: 4.163043209900661e-06 - syst_JES_EtaIntercalibration_Stat194: 0.0009015628208838251 - syst_JES_EtaIntercalibration_Stat195: 0.008534518893880311 - syst_JES_EtaIntercalibration_Stat196: 0.017760948032129367 - syst_JES_EtaIntercalibration_Stat197: 0.007836049690373334 - syst_JES_EtaIntercalibration_Stat198: 0.007918870626547702 - syst_JES_EtaIntercalibration_Stat199: 0.004583320057556531 + syst_JES_EtaIntercalibration_Stat193: 4.16304321e-06 + syst_JES_EtaIntercalibration_Stat194: 9.01562821e-04 + syst_JES_EtaIntercalibration_Stat195: 8.53451889e-03 + syst_JES_EtaIntercalibration_Stat196: 1.77609480e-02 + syst_JES_EtaIntercalibration_Stat197: 7.83604969e-03 + syst_JES_EtaIntercalibration_Stat198: 7.91887063e-03 + syst_JES_EtaIntercalibration_Stat199: 4.58332006e-03 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 0.00027427674322661773 - syst_JES_EtaIntercalibration_Stat201: 2.6777505485014848e-06 + syst_JES_EtaIntercalibration_Stat200: 2.74276743e-04 + syst_JES_EtaIntercalibration_Stat201: 2.67775055e-06 syst_JES_EtaIntercalibration_Stat202: 0.0 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 syst_JES_EtaIntercalibration_Stat207: 0.0 - syst_JES_EtaIntercalibration_Stat208: 1.9398969044771426e-06 - syst_JES_EtaIntercalibration_Stat209: 0.0002233846178679275 + syst_JES_EtaIntercalibration_Stat208: 1.93989690e-06 + syst_JES_EtaIntercalibration_Stat209: 2.23384618e-04 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 0.002557448093314897 - syst_JES_EtaIntercalibration_Stat211: 0.006878426200810763 - syst_JES_EtaIntercalibration_Stat212: 0.0006646801787325992 - syst_JES_EtaIntercalibration_Stat213: 2.9037831788892172e-05 - syst_JES_EtaIntercalibration_Stat214: 2.6777505485014848e-06 + syst_JES_EtaIntercalibration_Stat210: 2.55744809e-03 + syst_JES_EtaIntercalibration_Stat211: 6.87842620e-03 + syst_JES_EtaIntercalibration_Stat212: 6.64680179e-04 + syst_JES_EtaIntercalibration_Stat213: 2.90378318e-05 + syst_JES_EtaIntercalibration_Stat214: 2.67775055e-06 syst_JES_EtaIntercalibration_Stat215: 0.0 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 @@ -48715,11 +48715,11 @@ bins: syst_JES_EtaIntercalibration_Stat219: 0.0 syst_JES_EtaIntercalibration_Stat22: 0.0 syst_JES_EtaIntercalibration_Stat220: 0.0 - syst_JES_EtaIntercalibration_Stat221: 2.7487646316118087e-10 - syst_JES_EtaIntercalibration_Stat222: 6.611231257209205e-05 - syst_JES_EtaIntercalibration_Stat223: 0.0005704355002977987 - syst_JES_EtaIntercalibration_Stat224: 2.424265395434254e-05 - syst_JES_EtaIntercalibration_Stat225: 5.561417153028534e-06 + syst_JES_EtaIntercalibration_Stat221: 2.74876463e-10 + syst_JES_EtaIntercalibration_Stat222: 6.61123126e-05 + syst_JES_EtaIntercalibration_Stat223: 5.70435500e-04 + syst_JES_EtaIntercalibration_Stat224: 2.42426540e-05 + syst_JES_EtaIntercalibration_Stat225: 5.56141715e-06 syst_JES_EtaIntercalibration_Stat226: 0.0 syst_JES_EtaIntercalibration_Stat227: 0.0 syst_JES_EtaIntercalibration_Stat228: 0.0 @@ -48728,296 +48728,296 @@ bins: syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 syst_JES_EtaIntercalibration_Stat232: 0.0 - syst_JES_EtaIntercalibration_Stat233: 2.7487646316118087e-10 - syst_JES_EtaIntercalibration_Stat234: 9.961890219732398e-06 - syst_JES_EtaIntercalibration_Stat235: 8.402641913112804e-05 - syst_JES_EtaIntercalibration_Stat236: 1.6489122372852218e-12 + syst_JES_EtaIntercalibration_Stat233: 2.74876463e-10 + syst_JES_EtaIntercalibration_Stat234: 9.96189022e-06 + syst_JES_EtaIntercalibration_Stat235: 8.40264191e-05 + syst_JES_EtaIntercalibration_Stat236: 1.64891224e-12 syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 syst_JES_EtaIntercalibration_Stat239: 0.0 - syst_JES_EtaIntercalibration_Stat24: 9.561786483183987e-13 + syst_JES_EtaIntercalibration_Stat24: 9.56178648e-13 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 syst_JES_EtaIntercalibration_Stat243: 0.0 - syst_JES_EtaIntercalibration_Stat244: 2.7487646316118087e-10 - syst_JES_EtaIntercalibration_Stat245: 6.913035203150639e-16 - syst_JES_EtaIntercalibration_Stat25: 5.087663903993659e-10 - syst_JES_EtaIntercalibration_Stat26: 1.5033455505212365e-06 - syst_JES_EtaIntercalibration_Stat27: 4.080959760659617e-06 - syst_JES_EtaIntercalibration_Stat28: 8.355710357658108e-11 + syst_JES_EtaIntercalibration_Stat244: 2.74876463e-10 + syst_JES_EtaIntercalibration_Stat245: 6.91303520e-16 + syst_JES_EtaIntercalibration_Stat25: 5.08766390e-10 + syst_JES_EtaIntercalibration_Stat26: 1.50334555e-06 + syst_JES_EtaIntercalibration_Stat27: 4.08095976e-06 + syst_JES_EtaIntercalibration_Stat28: 8.35571036e-11 syst_JES_EtaIntercalibration_Stat29: 0.0 - syst_JES_EtaIntercalibration_Stat3: 2.198512956591341e-11 + syst_JES_EtaIntercalibration_Stat3: 2.19851296e-11 syst_JES_EtaIntercalibration_Stat30: 0.0 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 3.657225280181684e-10 - syst_JES_EtaIntercalibration_Stat36: 3.657225280181684e-10 - syst_JES_EtaIntercalibration_Stat37: 4.4401191880969534e-10 - syst_JES_EtaIntercalibration_Stat38: 6.2456278608072705e-06 - syst_JES_EtaIntercalibration_Stat39: 6.187300685225182e-06 - syst_JES_EtaIntercalibration_Stat4: 9.503772460447125e-07 - syst_JES_EtaIntercalibration_Stat40: 4.37914948546804e-09 + syst_JES_EtaIntercalibration_Stat35: 3.65722528e-10 + syst_JES_EtaIntercalibration_Stat36: 3.65722528e-10 + syst_JES_EtaIntercalibration_Stat37: 4.44011919e-10 + syst_JES_EtaIntercalibration_Stat38: 6.24562786e-06 + syst_JES_EtaIntercalibration_Stat39: 6.18730069e-06 + syst_JES_EtaIntercalibration_Stat4: 9.50377246e-07 + syst_JES_EtaIntercalibration_Stat40: 4.37914949e-09 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 syst_JES_EtaIntercalibration_Stat44: 0.0 syst_JES_EtaIntercalibration_Stat45: 0.0 - syst_JES_EtaIntercalibration_Stat46: 2.963135501457873e-11 - syst_JES_EtaIntercalibration_Stat47: 7.965607117476985e-09 - syst_JES_EtaIntercalibration_Stat48: 2.124450866216197e-05 - syst_JES_EtaIntercalibration_Stat49: 4.187748902080329e-06 - syst_JES_EtaIntercalibration_Stat5: 9.534074596333076e-07 - syst_JES_EtaIntercalibration_Stat50: 4.3398222313822946e-10 + syst_JES_EtaIntercalibration_Stat46: 2.96313550e-11 + syst_JES_EtaIntercalibration_Stat47: 7.96560712e-09 + syst_JES_EtaIntercalibration_Stat48: 2.12445087e-05 + syst_JES_EtaIntercalibration_Stat49: 4.18774890e-06 + syst_JES_EtaIntercalibration_Stat5: 9.53407460e-07 + syst_JES_EtaIntercalibration_Stat50: 4.33982223e-10 syst_JES_EtaIntercalibration_Stat51: 0.0 syst_JES_EtaIntercalibration_Stat52: 0.0 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 3.7620143540396015e-13 - syst_JES_EtaIntercalibration_Stat57: 3.657225280181684e-10 - syst_JES_EtaIntercalibration_Stat58: 3.657225280181684e-10 - syst_JES_EtaIntercalibration_Stat59: 5.305859685291347e-10 + syst_JES_EtaIntercalibration_Stat56: 3.76201435e-13 + syst_JES_EtaIntercalibration_Stat57: 3.65722528e-10 + syst_JES_EtaIntercalibration_Stat58: 3.65722528e-10 + syst_JES_EtaIntercalibration_Stat59: 5.30585969e-10 syst_JES_EtaIntercalibration_Stat6: 0.0 - syst_JES_EtaIntercalibration_Stat60: 6.378975995408667e-06 - syst_JES_EtaIntercalibration_Stat61: 9.02669766581334e-06 - syst_JES_EtaIntercalibration_Stat62: 1.7923561887917257e-08 - syst_JES_EtaIntercalibration_Stat63: 4.991388363491665e-12 + syst_JES_EtaIntercalibration_Stat60: 6.37897600e-06 + syst_JES_EtaIntercalibration_Stat61: 9.02669767e-06 + syst_JES_EtaIntercalibration_Stat62: 1.79235619e-08 + syst_JES_EtaIntercalibration_Stat63: 4.99138836e-12 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 3.270999521553007e-10 - syst_JES_EtaIntercalibration_Stat69: 6.299286388155408e-05 + syst_JES_EtaIntercalibration_Stat68: 3.27099952e-10 + syst_JES_EtaIntercalibration_Stat69: 6.29928639e-05 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 4.9807334178010364e-05 - syst_JES_EtaIntercalibration_Stat71: 2.3503304421931822e-06 - syst_JES_EtaIntercalibration_Stat72: 4.1406930188435846e-06 + syst_JES_EtaIntercalibration_Stat70: 4.98073342e-05 + syst_JES_EtaIntercalibration_Stat71: 2.35033044e-06 + syst_JES_EtaIntercalibration_Stat72: 4.14069302e-06 syst_JES_EtaIntercalibration_Stat73: 0.0 syst_JES_EtaIntercalibration_Stat74: 0.0 syst_JES_EtaIntercalibration_Stat75: 0.0 - syst_JES_EtaIntercalibration_Stat76: 2.7262479711134127e-11 - syst_JES_EtaIntercalibration_Stat77: 3.7620143540396015e-13 - syst_JES_EtaIntercalibration_Stat78: 3.7620143540396015e-13 - syst_JES_EtaIntercalibration_Stat79: 3.657225280181684e-10 + syst_JES_EtaIntercalibration_Stat76: 2.72624797e-11 + syst_JES_EtaIntercalibration_Stat77: 3.76201435e-13 + syst_JES_EtaIntercalibration_Stat78: 3.76201435e-13 + syst_JES_EtaIntercalibration_Stat79: 3.65722528e-10 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 3.6243163148378757e-10 - syst_JES_EtaIntercalibration_Stat81: 3.904853134242055e-09 - syst_JES_EtaIntercalibration_Stat82: 5.1928990698837965e-06 - syst_JES_EtaIntercalibration_Stat83: 2.5313576806725677e-05 - syst_JES_EtaIntercalibration_Stat84: 1.0673931142273684e-06 - syst_JES_EtaIntercalibration_Stat85: 2.68464280678082e-11 + syst_JES_EtaIntercalibration_Stat80: 3.62431631e-10 + syst_JES_EtaIntercalibration_Stat81: 3.90485313e-09 + syst_JES_EtaIntercalibration_Stat82: 5.19289907e-06 + syst_JES_EtaIntercalibration_Stat83: 2.53135768e-05 + syst_JES_EtaIntercalibration_Stat84: 1.06739311e-06 + syst_JES_EtaIntercalibration_Stat85: 2.68464281e-11 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 5.259008443375995e-10 + syst_JES_EtaIntercalibration_Stat89: 5.25900844e-10 syst_JES_EtaIntercalibration_Stat9: 0.0 - syst_JES_EtaIntercalibration_Stat90: 7.92277148477728e-05 - syst_JES_EtaIntercalibration_Stat91: 0.00014345426414017815 - syst_JES_EtaIntercalibration_Stat92: 4.113358964094916e-05 - syst_JES_EtaIntercalibration_Stat93: 4.257327121656351e-06 + syst_JES_EtaIntercalibration_Stat90: 7.92277148e-05 + syst_JES_EtaIntercalibration_Stat91: 1.43454264e-04 + syst_JES_EtaIntercalibration_Stat92: 4.11335896e-05 + syst_JES_EtaIntercalibration_Stat93: 4.25732712e-06 syst_JES_EtaIntercalibration_Stat94: 0.0 syst_JES_EtaIntercalibration_Stat95: 0.0 - syst_JES_EtaIntercalibration_Stat96: 1.6350559623450202e-07 - syst_JES_EtaIntercalibration_Stat97: 2.7262479711134127e-11 - syst_JES_EtaIntercalibration_Stat98: 3.7620143540396015e-13 - syst_JES_EtaIntercalibration_Stat99: 3.7620143540396015e-13 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.01700339598433207 - syst_JES_Flavour_Comp: 0.05581903170066639 - syst_JES_Gjet_Generator: 0.14640245899574228 - syst_JES_Gjet_OOC: 0.1070583068939538 - syst_JES_Gjet_Purity: 0.037009611008493454 - syst_JES_Gjet_Stat1: 6.333243777875599e-05 - syst_JES_Gjet_Stat10: 0.0062806689731269875 - syst_JES_Gjet_Stat11: 0.010684500584959506 - syst_JES_Gjet_Stat12: 0.020956769789259033 - syst_JES_Gjet_Stat13: 0.013440875975917642 - syst_JES_Gjet_Stat14: 0.0024646120891531798 - syst_JES_Gjet_Stat15: 0.0008134977443115623 - syst_JES_Gjet_Stat2: 2.3001634724521134e-12 - syst_JES_Gjet_Stat3: 5.085301171022231e-10 - syst_JES_Gjet_Stat4: 0.0001828182006661795 - syst_JES_Gjet_Stat5: 0.00025660365579965367 - syst_JES_Gjet_Stat6: 0.0011068828393285353 - syst_JES_Gjet_Stat7: 0.001566395464114985 - syst_JES_Gjet_Stat8: 0.0011805959977909464 - syst_JES_Gjet_Stat9: 0.003202732075900199 - syst_JES_Gjet_Veto: 0.060553344251164196 - syst_JES_Gjet_dPhi: 0.007484807596057497 - syst_JES_LArESZee: 0.20298692076091995 - syst_JES_LArEsmear: 0.014936387615484544 - syst_JES_LAr_JVT: 0.021240340745854337 - syst_JES_MJB_Alpha: 0.0009081142384083624 - syst_JES_MJB_Asym: 0.005707092429600207 - syst_JES_MJB_Beta: 1.0465050979331158e-09 - syst_JES_MJB_Stat1: 0.0009934177406811296 + syst_JES_EtaIntercalibration_Stat96: 1.63505596e-07 + syst_JES_EtaIntercalibration_Stat97: 2.72624797e-11 + syst_JES_EtaIntercalibration_Stat98: 3.76201435e-13 + syst_JES_EtaIntercalibration_Stat99: 3.76201435e-13 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.70033960e-02 + syst_JES_Flavour_Comp: 5.58190317e-02 + syst_JES_Gjet_Generator: 1.46402459e-01 + syst_JES_Gjet_OOC: 1.07058307e-01 + syst_JES_Gjet_Purity: 3.70096110e-02 + syst_JES_Gjet_Stat1: 6.33324378e-05 + syst_JES_Gjet_Stat10: 6.28066897e-03 + syst_JES_Gjet_Stat11: 1.06845006e-02 + syst_JES_Gjet_Stat12: 2.09567698e-02 + syst_JES_Gjet_Stat13: 1.34408760e-02 + syst_JES_Gjet_Stat14: 2.46461209e-03 + syst_JES_Gjet_Stat15: 8.13497744e-04 + syst_JES_Gjet_Stat2: 2.30016347e-12 + syst_JES_Gjet_Stat3: 5.08530117e-10 + syst_JES_Gjet_Stat4: 1.82818201e-04 + syst_JES_Gjet_Stat5: 2.56603656e-04 + syst_JES_Gjet_Stat6: 1.10688284e-03 + syst_JES_Gjet_Stat7: 1.56639546e-03 + syst_JES_Gjet_Stat8: 1.18059600e-03 + syst_JES_Gjet_Stat9: 3.20273208e-03 + syst_JES_Gjet_Veto: 6.05533443e-02 + syst_JES_Gjet_dPhi: 7.48480760e-03 + syst_JES_LArESZee: 2.02986921e-01 + syst_JES_LArEsmear: 1.49363876e-02 + syst_JES_LAr_JVT: 2.12403407e-02 + syst_JES_MJB_Alpha: 9.08114238e-04 + syst_JES_MJB_Asym: 5.70709243e-03 + syst_JES_MJB_Beta: 1.04650510e-09 + syst_JES_MJB_Stat1: 9.93417741e-04 syst_JES_MJB_Stat10: 0.0 - syst_JES_MJB_Stat11: 4.7354269078933106e-07 + syst_JES_MJB_Stat11: 4.73542691e-07 syst_JES_MJB_Stat12: 0.0 syst_JES_MJB_Stat13: 0.0 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 - syst_JES_MJB_Stat16: 2.7496306570155925e-21 - syst_JES_MJB_Stat2: 0.0015878259098528404 - syst_JES_MJB_Stat3: 0.0019836514310735136 - syst_JES_MJB_Stat4: 0.00014705111356259768 - syst_JES_MJB_Stat5: 0.0002726247971113413 - syst_JES_MJB_Stat6: 3.966395940857582e-37 - syst_JES_MJB_Stat7: 1.783146306392159e-07 - syst_JES_MJB_Stat8: 1.2981720802728736e-43 - syst_JES_MJB_Stat9: 1.5294008630833188e-43 - syst_JES_MJB_Threshold: 0.006197282307592578 - syst_JES_Pileup_MuOffset: 0.01344927875389606 - syst_JES_Pileup_NPVOffset: 0.016670755081879162 - syst_JES_Pileup_Pt_term: 0.0426735644163925 - syst_JES_PunchThrough_MC15: 0.002373380447800141 + syst_JES_MJB_Stat16: 2.74963066e-21 + syst_JES_MJB_Stat2: 1.58782591e-03 + syst_JES_MJB_Stat3: 1.98365143e-03 + syst_JES_MJB_Stat4: 1.47051114e-04 + syst_JES_MJB_Stat5: 2.72624797e-04 + syst_JES_MJB_Stat6: 3.96639594e-37 + syst_JES_MJB_Stat7: 1.78314631e-07 + syst_JES_MJB_Stat8: 1.29817208e-43 + syst_JES_MJB_Stat9: 1.52940086e-43 + syst_JES_MJB_Threshold: 6.19728231e-03 + syst_JES_Pileup_MuOffset: 1.34492788e-02 + syst_JES_Pileup_NPVOffset: 1.66707551e-02 + syst_JES_Pileup_Pt_term: 4.26735644e-02 + syst_JES_PunchThrough_MC15: 2.37338045e-03 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.1269150049245557 - syst_JES_Zjet_MuScale: 0.0074322994254806506 - syst_JES_Zjet_MuSmearID: 0.0014232261485793466 - syst_JES_Zjet_MuSmearMS: 0.027848879241362662 - syst_JES_Zjet_OOC: 0.04879695764082019 - syst_JES_Zjet_Stat1: 0.0009547061854503899 - syst_JES_Zjet_Stat10: 0.0048142420743041165 - syst_JES_Zjet_Stat11: 0.005489161206413964 - syst_JES_Zjet_Stat12: 0.039934017337978904 - syst_JES_Zjet_Stat13: 0.02323952828695109 - syst_JES_Zjet_Stat2: 5.636873867668141e-05 - syst_JES_Zjet_Stat3: 0.0006968040398849594 - syst_JES_Zjet_Stat4: 3.746282087617002e-10 - syst_JES_Zjet_Stat5: 5.236210487318095e-10 - syst_JES_Zjet_Stat6: 0.0009206005974362606 - syst_JES_Zjet_Stat7: 0.00015386011197431905 - syst_JES_Zjet_Stat8: 0.001096185498672556 - syst_JES_Zjet_Stat9: 0.002663657776442011 - syst_JES_Zjet_Veto: 0.009484803582573547 - syst_JES_Zjet_dPhi: 0.0076838725100043135 + syst_JES_Zjet_MC: 1.26915005e-01 + syst_JES_Zjet_MuScale: 7.43229943e-03 + syst_JES_Zjet_MuSmearID: 1.42322615e-03 + syst_JES_Zjet_MuSmearMS: 2.78488792e-02 + syst_JES_Zjet_OOC: 4.87969576e-02 + syst_JES_Zjet_Stat1: 9.54706185e-04 + syst_JES_Zjet_Stat10: 4.81424207e-03 + syst_JES_Zjet_Stat11: 5.48916121e-03 + syst_JES_Zjet_Stat12: 3.99340173e-02 + syst_JES_Zjet_Stat13: 2.32395283e-02 + syst_JES_Zjet_Stat2: 5.63687387e-05 + syst_JES_Zjet_Stat3: 6.96804040e-04 + syst_JES_Zjet_Stat4: 3.74628209e-10 + syst_JES_Zjet_Stat5: 5.23621049e-10 + syst_JES_Zjet_Stat6: 9.20600597e-04 + syst_JES_Zjet_Stat7: 1.53860112e-04 + syst_JES_Zjet_Stat8: 1.09618550e-03 + syst_JES_Zjet_Stat9: 2.66365778e-03 + syst_JES_Zjet_Veto: 9.48480358e-03 + syst_JES_Zjet_dPhi: 7.68387251e-03 syst_PRW: 0.0 syst_Unfolding_bias: 0.0 - syst_cleaning: 0.033290882546877607 + syst_cleaning: 3.32908825e-02 syst_lumi: 0.13192 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 0.06715992313128417 - syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.01060389337696301 - syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.010627216133588325 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 0.05922930587977543 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.015160987459595104 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.04512396370001199 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 6.71599231e-02 + syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.06038934e-02 + syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.06272161e-02 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 5.92293059e-02 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.51609875e-02 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 4.51239637e-02 - stat: 0.04088 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.02479016891834342 - syst_JER_NP1: 0.020033163304880235 - syst_JER_NP2: 0.0024666870605219602 - syst_JER_NP3: 0.00996746611481574 - syst_JER_NP4: 0.00545853678264606 - syst_JER_NP5: 0.0011716170478018831 - syst_JER_NP6: 1.466174446476271e-05 - syst_JER_NP7: 4.762587741973895e-10 - syst_JER_NP8: 0.005728984268611671 - syst_JES_EtaIntercalibration_Modelling: 0.13029991366075422 - syst_JES_EtaIntercalibration_NonClosure: 0.045376130288952585 + syst_JER_NP0: 2.47901689e-02 + syst_JER_NP1: 2.00331633e-02 + syst_JER_NP2: 2.46668706e-03 + syst_JER_NP3: 9.96746611e-03 + syst_JER_NP4: 5.45853678e-03 + syst_JER_NP5: 1.17161705e-03 + syst_JER_NP6: 1.46617445e-05 + syst_JER_NP7: 4.76258774e-10 + syst_JER_NP8: 5.72898427e-03 + syst_JES_EtaIntercalibration_Modelling: 1.30299914e-01 + syst_JES_EtaIntercalibration_NonClosure: 4.53761303e-02 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 5.5053234918576763e-14 + syst_JES_EtaIntercalibration_Stat100: 5.50532349e-14 syst_JES_EtaIntercalibration_Stat101: 0.0 - syst_JES_EtaIntercalibration_Stat102: 3.069229354414557e-08 - syst_JES_EtaIntercalibration_Stat103: 1.6820084445388494e-06 - syst_JES_EtaIntercalibration_Stat104: 2.4408525150037226e-05 - syst_JES_EtaIntercalibration_Stat105: 9.023336027767114e-07 - syst_JES_EtaIntercalibration_Stat106: 3.740658514219121e-10 + syst_JES_EtaIntercalibration_Stat102: 3.06922935e-08 + syst_JES_EtaIntercalibration_Stat103: 1.68200844e-06 + syst_JES_EtaIntercalibration_Stat104: 2.44085252e-05 + syst_JES_EtaIntercalibration_Stat105: 9.02333603e-07 + syst_JES_EtaIntercalibration_Stat106: 3.74065851e-10 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 2.6314731140560794e-08 + syst_JES_EtaIntercalibration_Stat109: 2.63147311e-08 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 2.9197051220970928e-05 - syst_JES_EtaIntercalibration_Stat111: 2.5326634201962174e-05 - syst_JES_EtaIntercalibration_Stat112: 5.460710645145007e-05 - syst_JES_EtaIntercalibration_Stat113: 2.422927840444284e-06 - syst_JES_EtaIntercalibration_Stat114: 2.0031167589534065e-09 + syst_JES_EtaIntercalibration_Stat110: 2.91970512e-05 + syst_JES_EtaIntercalibration_Stat111: 2.53266342e-05 + syst_JES_EtaIntercalibration_Stat112: 5.46071065e-05 + syst_JES_EtaIntercalibration_Stat113: 2.42292784e-06 + syst_JES_EtaIntercalibration_Stat114: 2.00311676e-09 syst_JES_EtaIntercalibration_Stat115: 0.0 - syst_JES_EtaIntercalibration_Stat116: 2.2092308050541032e-08 - syst_JES_EtaIntercalibration_Stat117: 2.404952546309386e-08 - syst_JES_EtaIntercalibration_Stat118: 5.5053234918576763e-14 - syst_JES_EtaIntercalibration_Stat119: 5.5053234918576763e-14 + syst_JES_EtaIntercalibration_Stat116: 2.20923081e-08 + syst_JES_EtaIntercalibration_Stat117: 2.40495255e-08 + syst_JES_EtaIntercalibration_Stat118: 5.50532349e-14 + syst_JES_EtaIntercalibration_Stat119: 5.50532349e-14 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 5.5053234918576763e-14 - syst_JES_EtaIntercalibration_Stat121: 4.0529988897111735e-11 - syst_JES_EtaIntercalibration_Stat122: 2.1546825172168636e-06 - syst_JES_EtaIntercalibration_Stat123: 3.6287829915827155e-05 - syst_JES_EtaIntercalibration_Stat124: 0.0001114919932381133 - syst_JES_EtaIntercalibration_Stat125: 2.5639103548096217e-05 - syst_JES_EtaIntercalibration_Stat126: 4.3825653660270716e-08 + syst_JES_EtaIntercalibration_Stat120: 5.50532349e-14 + syst_JES_EtaIntercalibration_Stat121: 4.05299889e-11 + syst_JES_EtaIntercalibration_Stat122: 2.15468252e-06 + syst_JES_EtaIntercalibration_Stat123: 3.62878299e-05 + syst_JES_EtaIntercalibration_Stat124: 1.11491993e-04 + syst_JES_EtaIntercalibration_Stat125: 2.56391035e-05 + syst_JES_EtaIntercalibration_Stat126: 4.38256537e-08 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 1.5576629513473062e-05 - syst_JES_EtaIntercalibration_Stat129: 0.00038017952009544124 + syst_JES_EtaIntercalibration_Stat128: 1.55766295e-05 + syst_JES_EtaIntercalibration_Stat129: 3.80179520e-04 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 0.00099354315834794 - syst_JES_EtaIntercalibration_Stat131: 0.00045505868577580186 - syst_JES_EtaIntercalibration_Stat132: 3.139353112903995e-05 - syst_JES_EtaIntercalibration_Stat133: 1.0178116514889924e-06 + syst_JES_EtaIntercalibration_Stat130: 9.93543158e-04 + syst_JES_EtaIntercalibration_Stat131: 4.55058686e-04 + syst_JES_EtaIntercalibration_Stat132: 3.13935311e-05 + syst_JES_EtaIntercalibration_Stat133: 1.01781165e-06 syst_JES_EtaIntercalibration_Stat134: 0.0 - syst_JES_EtaIntercalibration_Stat135: 2.2092308050541032e-08 - syst_JES_EtaIntercalibration_Stat136: 2.2092308050541032e-08 - syst_JES_EtaIntercalibration_Stat137: 5.5053234918576763e-14 - syst_JES_EtaIntercalibration_Stat138: 5.5053234918576763e-14 - syst_JES_EtaIntercalibration_Stat139: 5.5053234918576763e-14 + syst_JES_EtaIntercalibration_Stat135: 2.20923081e-08 + syst_JES_EtaIntercalibration_Stat136: 2.20923081e-08 + syst_JES_EtaIntercalibration_Stat137: 5.50532349e-14 + syst_JES_EtaIntercalibration_Stat138: 5.50532349e-14 + syst_JES_EtaIntercalibration_Stat139: 5.50532349e-14 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 3.1341459362958834e-11 - syst_JES_EtaIntercalibration_Stat141: 4.504465201330786e-05 - syst_JES_EtaIntercalibration_Stat142: 0.00036353281237736987 - syst_JES_EtaIntercalibration_Stat143: 0.0009569478721435143 - syst_JES_EtaIntercalibration_Stat144: 0.0005068984217769868 - syst_JES_EtaIntercalibration_Stat145: 3.3146648985983486e-07 - syst_JES_EtaIntercalibration_Stat146: 6.883797117143997e-05 - syst_JES_EtaIntercalibration_Stat147: 0.0004155675997957492 - syst_JES_EtaIntercalibration_Stat148: 0.0014142131663932422 - syst_JES_EtaIntercalibration_Stat149: 0.0004574460152575383 + syst_JES_EtaIntercalibration_Stat140: 3.13414594e-11 + syst_JES_EtaIntercalibration_Stat141: 4.50446520e-05 + syst_JES_EtaIntercalibration_Stat142: 3.63532812e-04 + syst_JES_EtaIntercalibration_Stat143: 9.56947872e-04 + syst_JES_EtaIntercalibration_Stat144: 5.06898422e-04 + syst_JES_EtaIntercalibration_Stat145: 3.31466490e-07 + syst_JES_EtaIntercalibration_Stat146: 6.88379712e-05 + syst_JES_EtaIntercalibration_Stat147: 4.15567600e-04 + syst_JES_EtaIntercalibration_Stat148: 1.41421317e-03 + syst_JES_EtaIntercalibration_Stat149: 4.57446015e-04 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 3.138305434466186e-05 - syst_JES_EtaIntercalibration_Stat151: 1.5027532944389109e-06 + syst_JES_EtaIntercalibration_Stat150: 3.13830543e-05 + syst_JES_EtaIntercalibration_Stat151: 1.50275329e-06 syst_JES_EtaIntercalibration_Stat152: 0.0 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 5.5053234918576763e-14 + syst_JES_EtaIntercalibration_Stat156: 5.50532349e-14 syst_JES_EtaIntercalibration_Stat157: 0.0 syst_JES_EtaIntercalibration_Stat158: 0.0 - syst_JES_EtaIntercalibration_Stat159: 4.3166828410250384e-05 - syst_JES_EtaIntercalibration_Stat16: 3.4900824062862342e-06 - syst_JES_EtaIntercalibration_Stat160: 0.0006504767943593376 - syst_JES_EtaIntercalibration_Stat161: 0.0012858530738385316 - syst_JES_EtaIntercalibration_Stat162: 0.0005486716026003168 - syst_JES_EtaIntercalibration_Stat163: 2.1249101316291002e-05 - syst_JES_EtaIntercalibration_Stat164: 8.052366064083277e-05 - syst_JES_EtaIntercalibration_Stat165: 0.0014767623370061955 - syst_JES_EtaIntercalibration_Stat166: 0.0031824334635621216 - syst_JES_EtaIntercalibration_Stat167: 0.0013208030284641234 - syst_JES_EtaIntercalibration_Stat168: 0.00010346982313699003 - syst_JES_EtaIntercalibration_Stat169: 1.5027532944389109e-06 - syst_JES_EtaIntercalibration_Stat17: 3.4308681479050217e-10 + syst_JES_EtaIntercalibration_Stat159: 4.31668284e-05 + syst_JES_EtaIntercalibration_Stat16: 3.49008241e-06 + syst_JES_EtaIntercalibration_Stat160: 6.50476794e-04 + syst_JES_EtaIntercalibration_Stat161: 1.28585307e-03 + syst_JES_EtaIntercalibration_Stat162: 5.48671603e-04 + syst_JES_EtaIntercalibration_Stat163: 2.12491013e-05 + syst_JES_EtaIntercalibration_Stat164: 8.05236606e-05 + syst_JES_EtaIntercalibration_Stat165: 1.47676234e-03 + syst_JES_EtaIntercalibration_Stat166: 3.18243346e-03 + syst_JES_EtaIntercalibration_Stat167: 1.32080303e-03 + syst_JES_EtaIntercalibration_Stat168: 1.03469823e-04 + syst_JES_EtaIntercalibration_Stat169: 1.50275329e-06 + syst_JES_EtaIntercalibration_Stat17: 3.43086815e-10 syst_JES_EtaIntercalibration_Stat170: 0.0 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 syst_JES_EtaIntercalibration_Stat175: 0.0 - syst_JES_EtaIntercalibration_Stat176: 6.776648784613232e-07 - syst_JES_EtaIntercalibration_Stat177: 0.00012861174259007108 - syst_JES_EtaIntercalibration_Stat178: 0.00107534354510547 - syst_JES_EtaIntercalibration_Stat179: 0.0033041470911568086 - syst_JES_EtaIntercalibration_Stat18: 3.7728161322147674e-14 - syst_JES_EtaIntercalibration_Stat180: 0.0015468552962381453 - syst_JES_EtaIntercalibration_Stat181: 0.0001398799238632907 - syst_JES_EtaIntercalibration_Stat182: 0.0051401660479015645 - syst_JES_EtaIntercalibration_Stat183: 0.010278398549871474 - syst_JES_EtaIntercalibration_Stat184: 0.004789592988970983 - syst_JES_EtaIntercalibration_Stat185: 0.00023759446016268982 - syst_JES_EtaIntercalibration_Stat186: 1.5034201009697855e-06 + syst_JES_EtaIntercalibration_Stat176: 6.77664878e-07 + syst_JES_EtaIntercalibration_Stat177: 1.28611743e-04 + syst_JES_EtaIntercalibration_Stat178: 1.07534355e-03 + syst_JES_EtaIntercalibration_Stat179: 3.30414709e-03 + syst_JES_EtaIntercalibration_Stat18: 3.77281613e-14 + syst_JES_EtaIntercalibration_Stat180: 1.54685530e-03 + syst_JES_EtaIntercalibration_Stat181: 1.39879924e-04 + syst_JES_EtaIntercalibration_Stat182: 5.14016605e-03 + syst_JES_EtaIntercalibration_Stat183: 1.02783985e-02 + syst_JES_EtaIntercalibration_Stat184: 4.78959299e-03 + syst_JES_EtaIntercalibration_Stat185: 2.37594460e-04 + syst_JES_EtaIntercalibration_Stat186: 1.50342010e-06 syst_JES_EtaIntercalibration_Stat187: 0.0 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 @@ -49025,31 +49025,31 @@ bins: syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 syst_JES_EtaIntercalibration_Stat192: 0.0 - syst_JES_EtaIntercalibration_Stat193: 1.9418384974039424e-06 - syst_JES_EtaIntercalibration_Stat194: 0.0004911018911590547 - syst_JES_EtaIntercalibration_Stat195: 0.004373387331348551 - syst_JES_EtaIntercalibration_Stat196: 0.009543050809358607 - syst_JES_EtaIntercalibration_Stat197: 0.004446515321855981 - syst_JES_EtaIntercalibration_Stat198: 0.006979283398028769 - syst_JES_EtaIntercalibration_Stat199: 0.003503421157597242 + syst_JES_EtaIntercalibration_Stat193: 1.94183850e-06 + syst_JES_EtaIntercalibration_Stat194: 4.91101891e-04 + syst_JES_EtaIntercalibration_Stat195: 4.37338733e-03 + syst_JES_EtaIntercalibration_Stat196: 9.54305081e-03 + syst_JES_EtaIntercalibration_Stat197: 4.44651532e-03 + syst_JES_EtaIntercalibration_Stat198: 6.97928340e-03 + syst_JES_EtaIntercalibration_Stat199: 3.50342116e-03 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 0.00017908375135673252 - syst_JES_EtaIntercalibration_Stat201: 1.5034201009697855e-06 + syst_JES_EtaIntercalibration_Stat200: 1.79083751e-04 + syst_JES_EtaIntercalibration_Stat201: 1.50342010e-06 syst_JES_EtaIntercalibration_Stat202: 0.0 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 syst_JES_EtaIntercalibration_Stat207: 0.0 - syst_JES_EtaIntercalibration_Stat208: 2.019571241625311e-06 - syst_JES_EtaIntercalibration_Stat209: 0.000247049812790862 + syst_JES_EtaIntercalibration_Stat208: 2.01957124e-06 + syst_JES_EtaIntercalibration_Stat209: 2.47049813e-04 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 0.0022537246393470518 - syst_JES_EtaIntercalibration_Stat211: 0.006581608390051782 - syst_JES_EtaIntercalibration_Stat212: 0.00036223266004047734 - syst_JES_EtaIntercalibration_Stat213: 2.374641657105801e-05 - syst_JES_EtaIntercalibration_Stat214: 1.5034201009697855e-06 + syst_JES_EtaIntercalibration_Stat210: 2.25372464e-03 + syst_JES_EtaIntercalibration_Stat211: 6.58160839e-03 + syst_JES_EtaIntercalibration_Stat212: 3.62232660e-04 + syst_JES_EtaIntercalibration_Stat213: 2.37464166e-05 + syst_JES_EtaIntercalibration_Stat214: 1.50342010e-06 syst_JES_EtaIntercalibration_Stat215: 0.0 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 @@ -49057,11 +49057,11 @@ bins: syst_JES_EtaIntercalibration_Stat219: 0.0 syst_JES_EtaIntercalibration_Stat22: 0.0 syst_JES_EtaIntercalibration_Stat220: 0.0 - syst_JES_EtaIntercalibration_Stat221: 5.289683166315351e-09 - syst_JES_EtaIntercalibration_Stat222: 8.032554968377123e-05 - syst_JES_EtaIntercalibration_Stat223: 0.00021667950266464987 - syst_JES_EtaIntercalibration_Stat224: 0.00011884776312577364 - syst_JES_EtaIntercalibration_Stat225: 9.11651956615023e-06 + syst_JES_EtaIntercalibration_Stat221: 5.28968317e-09 + syst_JES_EtaIntercalibration_Stat222: 8.03255497e-05 + syst_JES_EtaIntercalibration_Stat223: 2.16679503e-04 + syst_JES_EtaIntercalibration_Stat224: 1.18847763e-04 + syst_JES_EtaIntercalibration_Stat225: 9.11651957e-06 syst_JES_EtaIntercalibration_Stat226: 0.0 syst_JES_EtaIntercalibration_Stat227: 0.0 syst_JES_EtaIntercalibration_Stat228: 0.0 @@ -49070,296 +49070,296 @@ bins: syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 syst_JES_EtaIntercalibration_Stat232: 0.0 - syst_JES_EtaIntercalibration_Stat233: 5.289683166315351e-09 - syst_JES_EtaIntercalibration_Stat234: 2.3936942160601885e-05 - syst_JES_EtaIntercalibration_Stat235: 0.00011900447554609029 - syst_JES_EtaIntercalibration_Stat236: 5.445550952744458e-10 + syst_JES_EtaIntercalibration_Stat233: 5.28968317e-09 + syst_JES_EtaIntercalibration_Stat234: 2.39369422e-05 + syst_JES_EtaIntercalibration_Stat235: 1.19004476e-04 + syst_JES_EtaIntercalibration_Stat236: 5.44555095e-10 syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 syst_JES_EtaIntercalibration_Stat239: 0.0 - syst_JES_EtaIntercalibration_Stat24: 1.1938160191168486e-13 + syst_JES_EtaIntercalibration_Stat24: 1.19381602e-13 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 syst_JES_EtaIntercalibration_Stat243: 0.0 - syst_JES_EtaIntercalibration_Stat244: 5.289683166315351e-09 - syst_JES_EtaIntercalibration_Stat245: 1.2530205703319478e-12 - syst_JES_EtaIntercalibration_Stat25: 5.221274557040646e-11 - syst_JES_EtaIntercalibration_Stat26: 2.5704443820106644e-06 - syst_JES_EtaIntercalibration_Stat27: 1.0150049697001822e-06 - syst_JES_EtaIntercalibration_Stat28: 8.586012242774582e-12 + syst_JES_EtaIntercalibration_Stat244: 5.28968317e-09 + syst_JES_EtaIntercalibration_Stat245: 1.25302057e-12 + syst_JES_EtaIntercalibration_Stat25: 5.22127456e-11 + syst_JES_EtaIntercalibration_Stat26: 2.57044438e-06 + syst_JES_EtaIntercalibration_Stat27: 1.01500497e-06 + syst_JES_EtaIntercalibration_Stat28: 8.58601224e-12 syst_JES_EtaIntercalibration_Stat29: 0.0 - syst_JES_EtaIntercalibration_Stat3: 2.2593209347224223e-12 + syst_JES_EtaIntercalibration_Stat3: 2.25932093e-12 syst_JES_EtaIntercalibration_Stat30: 0.0 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 3.728239363292009e-11 - syst_JES_EtaIntercalibration_Stat36: 3.728239363292009e-11 - syst_JES_EtaIntercalibration_Stat37: 4.554969473898892e-11 - syst_JES_EtaIntercalibration_Stat38: 3.4885181367086344e-06 - syst_JES_EtaIntercalibration_Stat39: 3.4764547194067734e-06 - syst_JES_EtaIntercalibration_Stat4: 1.174590358729509e-06 - syst_JES_EtaIntercalibration_Stat40: 4.63694607269429e-10 + syst_JES_EtaIntercalibration_Stat35: 3.72823936e-11 + syst_JES_EtaIntercalibration_Stat36: 3.72823936e-11 + syst_JES_EtaIntercalibration_Stat37: 4.55496947e-11 + syst_JES_EtaIntercalibration_Stat38: 3.48851814e-06 + syst_JES_EtaIntercalibration_Stat39: 3.47645472e-06 + syst_JES_EtaIntercalibration_Stat4: 1.17459036e-06 + syst_JES_EtaIntercalibration_Stat40: 4.63694607e-10 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 syst_JES_EtaIntercalibration_Stat44: 0.0 syst_JES_EtaIntercalibration_Stat45: 0.0 - syst_JES_EtaIntercalibration_Stat46: 3.037478024611866e-12 - syst_JES_EtaIntercalibration_Stat47: 8.445001065719292e-10 - syst_JES_EtaIntercalibration_Stat48: 1.2595623102590518e-05 - syst_JES_EtaIntercalibration_Stat49: 1.0239547155670509e-06 - syst_JES_EtaIntercalibration_Stat5: 1.1753696883103958e-06 - syst_JES_EtaIntercalibration_Stat50: 4.440797338316623e-11 + syst_JES_EtaIntercalibration_Stat46: 3.03747802e-12 + syst_JES_EtaIntercalibration_Stat47: 8.44500107e-10 + syst_JES_EtaIntercalibration_Stat48: 1.25956231e-05 + syst_JES_EtaIntercalibration_Stat49: 1.02395472e-06 + syst_JES_EtaIntercalibration_Stat5: 1.17536969e-06 + syst_JES_EtaIntercalibration_Stat50: 4.44079734e-11 syst_JES_EtaIntercalibration_Stat51: 0.0 syst_JES_EtaIntercalibration_Stat52: 0.0 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 5.5053234918576763e-14 - syst_JES_EtaIntercalibration_Stat57: 3.728239363292009e-11 - syst_JES_EtaIntercalibration_Stat58: 3.728239363292009e-11 - syst_JES_EtaIntercalibration_Stat59: 5.4457212855598847e-11 + syst_JES_EtaIntercalibration_Stat56: 5.50532349e-14 + syst_JES_EtaIntercalibration_Stat57: 3.72823936e-11 + syst_JES_EtaIntercalibration_Stat58: 3.72823936e-11 + syst_JES_EtaIntercalibration_Stat59: 5.44572129e-11 syst_JES_EtaIntercalibration_Stat6: 0.0 - syst_JES_EtaIntercalibration_Stat60: 3.3706355939941056e-06 - syst_JES_EtaIntercalibration_Stat61: 4.014434867761588e-06 - syst_JES_EtaIntercalibration_Stat62: 2.0151805049424234e-09 - syst_JES_EtaIntercalibration_Stat63: 5.289760485038524e-13 + syst_JES_EtaIntercalibration_Stat60: 3.37063559e-06 + syst_JES_EtaIntercalibration_Stat61: 4.01443487e-06 + syst_JES_EtaIntercalibration_Stat62: 2.01518050e-09 + syst_JES_EtaIntercalibration_Stat63: 5.28976049e-13 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 3.3363743656100705e-11 - syst_JES_EtaIntercalibration_Stat69: 1.780160405693824e-05 + syst_JES_EtaIntercalibration_Stat68: 3.33637437e-11 + syst_JES_EtaIntercalibration_Stat69: 1.78016041e-05 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 2.899245591528941e-05 - syst_JES_EtaIntercalibration_Stat71: 1.0478018093489819e-06 - syst_JES_EtaIntercalibration_Stat72: 1.0187266283538424e-06 + syst_JES_EtaIntercalibration_Stat70: 2.89924559e-05 + syst_JES_EtaIntercalibration_Stat71: 1.04780181e-06 + syst_JES_EtaIntercalibration_Stat72: 1.01872663e-06 syst_JES_EtaIntercalibration_Stat73: 0.0 syst_JES_EtaIntercalibration_Stat74: 0.0 syst_JES_EtaIntercalibration_Stat75: 0.0 - syst_JES_EtaIntercalibration_Stat76: 2.8890607470248872e-12 - syst_JES_EtaIntercalibration_Stat77: 5.5053234918576763e-14 - syst_JES_EtaIntercalibration_Stat78: 5.5053234918576763e-14 - syst_JES_EtaIntercalibration_Stat79: 3.728239363292009e-11 + syst_JES_EtaIntercalibration_Stat76: 2.88906075e-12 + syst_JES_EtaIntercalibration_Stat77: 5.50532349e-14 + syst_JES_EtaIntercalibration_Stat78: 5.50532349e-14 + syst_JES_EtaIntercalibration_Stat79: 3.72823936e-11 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 3.693598347140631e-11 - syst_JES_EtaIntercalibration_Stat81: 4.1292004295626046e-10 - syst_JES_EtaIntercalibration_Stat82: 2.0965888366582515e-06 - syst_JES_EtaIntercalibration_Stat83: 1.3320399810347286e-05 - syst_JES_EtaIntercalibration_Stat84: 2.0424940636388642e-07 - syst_JES_EtaIntercalibration_Stat85: 2.721503108118747e-12 + syst_JES_EtaIntercalibration_Stat80: 3.69359835e-11 + syst_JES_EtaIntercalibration_Stat81: 4.12920043e-10 + syst_JES_EtaIntercalibration_Stat82: 2.09658884e-06 + syst_JES_EtaIntercalibration_Stat83: 1.33203998e-05 + syst_JES_EtaIntercalibration_Stat84: 2.04249406e-07 + syst_JES_EtaIntercalibration_Stat85: 2.72150311e-12 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 5.360169206284443e-11 + syst_JES_EtaIntercalibration_Stat89: 5.36016921e-11 syst_JES_EtaIntercalibration_Stat9: 0.0 - syst_JES_EtaIntercalibration_Stat90: 4.1286252469799194e-05 - syst_JES_EtaIntercalibration_Stat91: 7.181385381665574e-05 - syst_JES_EtaIntercalibration_Stat92: 8.454119795697244e-06 - syst_JES_EtaIntercalibration_Stat93: 1.0511741055671178e-06 + syst_JES_EtaIntercalibration_Stat90: 4.12862525e-05 + syst_JES_EtaIntercalibration_Stat91: 7.18138538e-05 + syst_JES_EtaIntercalibration_Stat92: 8.45411980e-06 + syst_JES_EtaIntercalibration_Stat93: 1.05117411e-06 syst_JES_EtaIntercalibration_Stat94: 0.0 syst_JES_EtaIntercalibration_Stat95: 0.0 - syst_JES_EtaIntercalibration_Stat96: 2.404952546309386e-08 - syst_JES_EtaIntercalibration_Stat97: 2.8890607470248872e-12 - syst_JES_EtaIntercalibration_Stat98: 5.5053234918576763e-14 - syst_JES_EtaIntercalibration_Stat99: 5.5053234918576763e-14 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.011621689464101165 - syst_JES_Flavour_Comp: 0.037462563323269804 - syst_JES_Gjet_Generator: 0.0842719471413827 - syst_JES_Gjet_OOC: 0.06320936065963648 - syst_JES_Gjet_Purity: 0.021101319271552666 - syst_JES_Gjet_Stat1: 3.536847749051856e-05 - syst_JES_Gjet_Stat10: 0.0029024408693373925 - syst_JES_Gjet_Stat11: 0.004680526332582693 - syst_JES_Gjet_Stat12: 0.012056436994402616 - syst_JES_Gjet_Stat13: 0.011787296382122576 - syst_JES_Gjet_Stat14: 0.0011291305537890646 - syst_JES_Gjet_Stat15: 0.001128447366960462 - syst_JES_Gjet_Stat2: 7.621023554062853e-10 - syst_JES_Gjet_Stat3: 5.3962042986884635e-11 - syst_JES_Gjet_Stat4: 0.00010211308061643568 - syst_JES_Gjet_Stat5: 0.00014350044426175108 - syst_JES_Gjet_Stat6: 0.0005745288047609101 - syst_JES_Gjet_Stat7: 0.0008577224070175618 - syst_JES_Gjet_Stat8: 0.0005349722492802782 - syst_JES_Gjet_Stat9: 0.0015715994241536232 - syst_JES_Gjet_Veto: 0.04044197102948866 - syst_JES_Gjet_dPhi: 0.004748787950624875 - syst_JES_LArESZee: 0.12125073525550267 - syst_JES_LArEsmear: 0.009110919862999566 - syst_JES_LAr_JVT: 0.01276167272539145 - syst_JES_MJB_Alpha: 0.0006868447477414383 - syst_JES_MJB_Asym: 0.0035489726795229068 - syst_JES_MJB_Beta: 7.987352299103877e-08 - syst_JES_MJB_Stat1: 0.000574781060491732 + syst_JES_EtaIntercalibration_Stat96: 2.40495255e-08 + syst_JES_EtaIntercalibration_Stat97: 2.88906075e-12 + syst_JES_EtaIntercalibration_Stat98: 5.50532349e-14 + syst_JES_EtaIntercalibration_Stat99: 5.50532349e-14 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.16216895e-02 + syst_JES_Flavour_Comp: 3.74625633e-02 + syst_JES_Gjet_Generator: 8.42719471e-02 + syst_JES_Gjet_OOC: 6.32093607e-02 + syst_JES_Gjet_Purity: 2.11013193e-02 + syst_JES_Gjet_Stat1: 3.53684775e-05 + syst_JES_Gjet_Stat10: 2.90244087e-03 + syst_JES_Gjet_Stat11: 4.68052633e-03 + syst_JES_Gjet_Stat12: 1.20564370e-02 + syst_JES_Gjet_Stat13: 1.17872964e-02 + syst_JES_Gjet_Stat14: 1.12913055e-03 + syst_JES_Gjet_Stat15: 1.12844737e-03 + syst_JES_Gjet_Stat2: 7.62102355e-10 + syst_JES_Gjet_Stat3: 5.39620430e-11 + syst_JES_Gjet_Stat4: 1.02113081e-04 + syst_JES_Gjet_Stat5: 1.43500444e-04 + syst_JES_Gjet_Stat6: 5.74528805e-04 + syst_JES_Gjet_Stat7: 8.57722407e-04 + syst_JES_Gjet_Stat8: 5.34972249e-04 + syst_JES_Gjet_Stat9: 1.57159942e-03 + syst_JES_Gjet_Veto: 4.04419710e-02 + syst_JES_Gjet_dPhi: 4.74878795e-03 + syst_JES_LArESZee: 1.21250735e-01 + syst_JES_LArEsmear: 9.11091986e-03 + syst_JES_LAr_JVT: 1.27616727e-02 + syst_JES_MJB_Alpha: 6.86844748e-04 + syst_JES_MJB_Asym: 3.54897268e-03 + syst_JES_MJB_Beta: 7.98735230e-08 + syst_JES_MJB_Stat1: 5.74781060e-04 syst_JES_MJB_Stat10: 0.0 - syst_JES_MJB_Stat11: 1.5501854727741452e-06 + syst_JES_MJB_Stat11: 1.55018547e-06 syst_JES_MJB_Stat12: 0.0 syst_JES_MJB_Stat13: 0.0 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 - syst_JES_MJB_Stat16: 3.51000096153833e-17 - syst_JES_MJB_Stat2: 0.0009078700523064961 - syst_JES_MJB_Stat3: 0.0013200035255634735 - syst_JES_MJB_Stat4: 0.000248376085805377 - syst_JES_MJB_Stat5: 0.00017181944011083263 - syst_JES_MJB_Stat6: 1.0504858149127933e-29 - syst_JES_MJB_Stat7: 3.7403637189449903e-06 - syst_JES_MJB_Stat8: 9.433614723423889e-35 - syst_JES_MJB_Stat9: 1.1136220667264098e-34 - syst_JES_MJB_Threshold: 0.004751927082773893 - syst_JES_Pileup_MuOffset: 0.008912547783883125 - syst_JES_Pileup_NPVOffset: 0.0107155771193156 - syst_JES_Pileup_Pt_term: 0.02465032859821548 - syst_JES_PunchThrough_MC15: 0.001765261099667695 + syst_JES_MJB_Stat16: 3.51000096e-17 + syst_JES_MJB_Stat2: 9.07870052e-04 + syst_JES_MJB_Stat3: 1.32000353e-03 + syst_JES_MJB_Stat4: 2.48376086e-04 + syst_JES_MJB_Stat5: 1.71819440e-04 + syst_JES_MJB_Stat6: 1.05048581e-29 + syst_JES_MJB_Stat7: 3.74036372e-06 + syst_JES_MJB_Stat8: 9.43361472e-35 + syst_JES_MJB_Stat9: 1.11362207e-34 + syst_JES_MJB_Threshold: 4.75192708e-03 + syst_JES_Pileup_MuOffset: 8.91254778e-03 + syst_JES_Pileup_NPVOffset: 1.07155771e-02 + syst_JES_Pileup_Pt_term: 2.46503286e-02 + syst_JES_PunchThrough_MC15: 1.76526110e-03 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.06884256241599378 - syst_JES_Zjet_MuScale: 0.0039724898992949 - syst_JES_Zjet_MuSmearID: 0.0007680536569797712 - syst_JES_Zjet_MuSmearMS: 0.016722125313488115 - syst_JES_Zjet_OOC: 0.026803956331109033 - syst_JES_Zjet_Stat1: 0.0007018269639106215 - syst_JES_Zjet_Stat10: 0.002515618611793131 - syst_JES_Zjet_Stat11: 0.002516559556219562 - syst_JES_Zjet_Stat12: 0.019589441033373057 - syst_JES_Zjet_Stat13: 0.01550987024446046 - syst_JES_Zjet_Stat2: 3.147790909113882e-05 - syst_JES_Zjet_Stat3: 0.0004040008508654406 - syst_JES_Zjet_Stat4: 3.963795771731939e-11 - syst_JES_Zjet_Stat5: 5.552755262029833e-11 - syst_JES_Zjet_Stat6: 0.0005191365427322565 - syst_JES_Zjet_Stat7: 2.947354486229982e-05 - syst_JES_Zjet_Stat8: 0.0005538871432882335 - syst_JES_Zjet_Stat9: 0.001244340575365121 - syst_JES_Zjet_Veto: 0.005422982827743418 - syst_JES_Zjet_dPhi: 0.00437889061292926 - syst_PRW: 1.999e-39 + syst_JES_Zjet_MC: 6.88425624e-02 + syst_JES_Zjet_MuScale: 3.97248990e-03 + syst_JES_Zjet_MuSmearID: 7.68053657e-04 + syst_JES_Zjet_MuSmearMS: 1.67221253e-02 + syst_JES_Zjet_OOC: 2.68039563e-02 + syst_JES_Zjet_Stat1: 7.01826964e-04 + syst_JES_Zjet_Stat10: 2.51561861e-03 + syst_JES_Zjet_Stat11: 2.51655956e-03 + syst_JES_Zjet_Stat12: 1.95894410e-02 + syst_JES_Zjet_Stat13: 1.55098702e-02 + syst_JES_Zjet_Stat2: 3.14779091e-05 + syst_JES_Zjet_Stat3: 4.04000851e-04 + syst_JES_Zjet_Stat4: 3.96379577e-11 + syst_JES_Zjet_Stat5: 5.55275526e-11 + syst_JES_Zjet_Stat6: 5.19136543e-04 + syst_JES_Zjet_Stat7: 2.94735449e-05 + syst_JES_Zjet_Stat8: 5.53887143e-04 + syst_JES_Zjet_Stat9: 1.24434058e-03 + syst_JES_Zjet_Veto: 5.42298283e-03 + syst_JES_Zjet_dPhi: 4.37889061e-03 + syst_PRW: 1.99900000e-39 syst_Unfolding_bias: 0.0 - syst_cleaning: 0.01893131532672783 + syst_cleaning: 1.89313153e-02 syst_lumi: 0.07368 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 0.02947171991927176 - syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.007000005928568918 - syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.00588630478313857 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 0.025991003732060834 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.01019814380169254 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.02532627637454823 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 2.94717199e-02 + syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 7.00000593e-03 + syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 5.88630478e-03 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 2.59910037e-02 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.01981438e-02 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 2.53262764e-02 - stat: 0.03015 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.01428191314215291 - syst_JER_NP1: 0.014293001670397999 - syst_JER_NP2: 0.0025237238274573286 - syst_JER_NP3: 0.005126363330861363 - syst_JER_NP4: 0.0038071869864770235 - syst_JER_NP5: 0.0003019106416818559 - syst_JER_NP6: 1.7989723920894395e-06 - syst_JER_NP7: 5.515541383218877e-11 - syst_JER_NP8: 0.002805212291431791 - syst_JES_EtaIntercalibration_Modelling: 0.08217341784299836 - syst_JES_EtaIntercalibration_NonClosure: 0.02041934377006274 + syst_JER_NP0: 1.42819131e-02 + syst_JER_NP1: 1.42930017e-02 + syst_JER_NP2: 2.52372383e-03 + syst_JER_NP3: 5.12636333e-03 + syst_JER_NP4: 3.80718699e-03 + syst_JER_NP5: 3.01910642e-04 + syst_JER_NP6: 1.79897239e-06 + syst_JER_NP7: 5.51554138e-11 + syst_JER_NP8: 2.80521229e-03 + syst_JES_EtaIntercalibration_Modelling: 8.21734178e-02 + syst_JES_EtaIntercalibration_NonClosure: 2.04193438e-02 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 8.680172622131429e-15 + syst_JES_EtaIntercalibration_Stat100: 8.68017262e-15 syst_JES_EtaIntercalibration_Stat101: 0.0 - syst_JES_EtaIntercalibration_Stat102: 3.759469883840008e-09 - syst_JES_EtaIntercalibration_Stat103: 1.4598457610566261e-06 - syst_JES_EtaIntercalibration_Stat104: 1.2942755917887041e-05 - syst_JES_EtaIntercalibration_Stat105: 1.659616832283886e-07 - syst_JES_EtaIntercalibration_Stat106: 4.056947713491018e-11 + syst_JES_EtaIntercalibration_Stat102: 3.75946988e-09 + syst_JES_EtaIntercalibration_Stat103: 1.45984576e-06 + syst_JES_EtaIntercalibration_Stat104: 1.29427559e-05 + syst_JES_EtaIntercalibration_Stat105: 1.65961683e-07 + syst_JES_EtaIntercalibration_Stat106: 4.05694771e-11 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 3.2488753053941604e-09 + syst_JES_EtaIntercalibration_Stat109: 3.24887531e-09 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 1.4562395433100973e-05 - syst_JES_EtaIntercalibration_Stat111: 4.846719586483212e-06 - syst_JES_EtaIntercalibration_Stat112: 2.0772275753484497e-05 - syst_JES_EtaIntercalibration_Stat113: 4.90500636773287e-07 - syst_JES_EtaIntercalibration_Stat114: 2.1763218397102944e-10 + syst_JES_EtaIntercalibration_Stat110: 1.45623954e-05 + syst_JES_EtaIntercalibration_Stat111: 4.84671959e-06 + syst_JES_EtaIntercalibration_Stat112: 2.07722758e-05 + syst_JES_EtaIntercalibration_Stat113: 4.90500637e-07 + syst_JES_EtaIntercalibration_Stat114: 2.17632184e-10 syst_JES_EtaIntercalibration_Stat115: 0.0 - syst_JES_EtaIntercalibration_Stat116: 2.9107113821194982e-09 - syst_JES_EtaIntercalibration_Stat117: 3.1246196568542545e-09 - syst_JES_EtaIntercalibration_Stat118: 8.680172622131429e-15 - syst_JES_EtaIntercalibration_Stat119: 8.680172622131429e-15 + syst_JES_EtaIntercalibration_Stat116: 2.91071138e-09 + syst_JES_EtaIntercalibration_Stat117: 3.12461966e-09 + syst_JES_EtaIntercalibration_Stat118: 8.68017262e-15 + syst_JES_EtaIntercalibration_Stat119: 8.68017262e-15 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 8.680172622131429e-15 - syst_JES_EtaIntercalibration_Stat121: 4.3673661112849246e-12 - syst_JES_EtaIntercalibration_Stat122: 1.6451859492166836e-06 - syst_JES_EtaIntercalibration_Stat123: 8.384781988817599e-06 - syst_JES_EtaIntercalibration_Stat124: 3.815250999279078e-05 - syst_JES_EtaIntercalibration_Stat125: 1.0820790913791838e-05 - syst_JES_EtaIntercalibration_Stat126: 2.163509855460566e-08 + syst_JES_EtaIntercalibration_Stat120: 8.68017262e-15 + syst_JES_EtaIntercalibration_Stat121: 4.36736611e-12 + syst_JES_EtaIntercalibration_Stat122: 1.64518595e-06 + syst_JES_EtaIntercalibration_Stat123: 8.38478199e-06 + syst_JES_EtaIntercalibration_Stat124: 3.81525100e-05 + syst_JES_EtaIntercalibration_Stat125: 1.08207909e-05 + syst_JES_EtaIntercalibration_Stat126: 2.16350986e-08 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 6.740962023331685e-06 - syst_JES_EtaIntercalibration_Stat129: 7.810250108031112e-05 + syst_JES_EtaIntercalibration_Stat128: 6.74096202e-06 + syst_JES_EtaIntercalibration_Stat129: 7.81025011e-05 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 0.0003258835183006345 - syst_JES_EtaIntercalibration_Stat131: 0.00010954340817685015 - syst_JES_EtaIntercalibration_Stat132: 5.435812358792382e-06 - syst_JES_EtaIntercalibration_Stat133: 2.0523357265593758e-07 + syst_JES_EtaIntercalibration_Stat130: 3.25883518e-04 + syst_JES_EtaIntercalibration_Stat131: 1.09543408e-04 + syst_JES_EtaIntercalibration_Stat132: 5.43581236e-06 + syst_JES_EtaIntercalibration_Stat133: 2.05233573e-07 syst_JES_EtaIntercalibration_Stat134: 0.0 - syst_JES_EtaIntercalibration_Stat135: 2.9107113821194982e-09 - syst_JES_EtaIntercalibration_Stat136: 2.9107113821194982e-09 - syst_JES_EtaIntercalibration_Stat137: 8.680172622131429e-15 - syst_JES_EtaIntercalibration_Stat138: 8.680172622131429e-15 - syst_JES_EtaIntercalibration_Stat139: 8.680172622131429e-15 + syst_JES_EtaIntercalibration_Stat135: 2.91071138e-09 + syst_JES_EtaIntercalibration_Stat136: 2.91071138e-09 + syst_JES_EtaIntercalibration_Stat137: 8.68017262e-15 + syst_JES_EtaIntercalibration_Stat138: 8.68017262e-15 + syst_JES_EtaIntercalibration_Stat139: 8.68017262e-15 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 3.3196485777865104e-12 - syst_JES_EtaIntercalibration_Stat141: 2.1672042053069203e-05 - syst_JES_EtaIntercalibration_Stat142: 0.00010249866486935329 - syst_JES_EtaIntercalibration_Stat143: 0.0003532255193215802 - syst_JES_EtaIntercalibration_Stat144: 0.00015494940166067115 - syst_JES_EtaIntercalibration_Stat145: 6.571780692475974e-08 - syst_JES_EtaIntercalibration_Stat146: 2.9255729490135775e-05 - syst_JES_EtaIntercalibration_Stat147: 8.877802473022252e-05 - syst_JES_EtaIntercalibration_Stat148: 0.0004714231240350859 - syst_JES_EtaIntercalibration_Stat149: 8.512463391991769e-05 + syst_JES_EtaIntercalibration_Stat140: 3.31964858e-12 + syst_JES_EtaIntercalibration_Stat141: 2.16720421e-05 + syst_JES_EtaIntercalibration_Stat142: 1.02498665e-04 + syst_JES_EtaIntercalibration_Stat143: 3.53225519e-04 + syst_JES_EtaIntercalibration_Stat144: 1.54949402e-04 + syst_JES_EtaIntercalibration_Stat145: 6.57178069e-08 + syst_JES_EtaIntercalibration_Stat146: 2.92557295e-05 + syst_JES_EtaIntercalibration_Stat147: 8.87780247e-05 + syst_JES_EtaIntercalibration_Stat148: 4.71423124e-04 + syst_JES_EtaIntercalibration_Stat149: 8.51246339e-05 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 6.024677577057547e-06 - syst_JES_EtaIntercalibration_Stat151: 5.078513390394747e-07 + syst_JES_EtaIntercalibration_Stat150: 6.02467758e-06 + syst_JES_EtaIntercalibration_Stat151: 5.07851339e-07 syst_JES_EtaIntercalibration_Stat152: 0.0 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 8.680172622131429e-15 + syst_JES_EtaIntercalibration_Stat156: 8.68017262e-15 syst_JES_EtaIntercalibration_Stat157: 0.0 syst_JES_EtaIntercalibration_Stat158: 0.0 - syst_JES_EtaIntercalibration_Stat159: 1.032156997505709e-05 - syst_JES_EtaIntercalibration_Stat16: 1.9797340766729446e-06 - syst_JES_EtaIntercalibration_Stat160: 0.00022409151590365933 - syst_JES_EtaIntercalibration_Stat161: 0.0005043615246031363 - syst_JES_EtaIntercalibration_Stat162: 0.00014841832871987208 - syst_JES_EtaIntercalibration_Stat163: 6.3007157331528605e-06 - syst_JES_EtaIntercalibration_Stat164: 3.507606295965954e-05 - syst_JES_EtaIntercalibration_Stat165: 0.0005928684677059491 - syst_JES_EtaIntercalibration_Stat166: 0.0012873706964196443 - syst_JES_EtaIntercalibration_Stat167: 0.0005119363900915816 - syst_JES_EtaIntercalibration_Stat168: 5.093584741613709e-05 - syst_JES_EtaIntercalibration_Stat169: 5.078513390394747e-07 - syst_JES_EtaIntercalibration_Stat17: 3.7237222123740653e-11 + syst_JES_EtaIntercalibration_Stat159: 1.03215700e-05 + syst_JES_EtaIntercalibration_Stat16: 1.97973408e-06 + syst_JES_EtaIntercalibration_Stat160: 2.24091516e-04 + syst_JES_EtaIntercalibration_Stat161: 5.04361525e-04 + syst_JES_EtaIntercalibration_Stat162: 1.48418329e-04 + syst_JES_EtaIntercalibration_Stat163: 6.30071573e-06 + syst_JES_EtaIntercalibration_Stat164: 3.50760630e-05 + syst_JES_EtaIntercalibration_Stat165: 5.92868468e-04 + syst_JES_EtaIntercalibration_Stat166: 1.28737070e-03 + syst_JES_EtaIntercalibration_Stat167: 5.11936390e-04 + syst_JES_EtaIntercalibration_Stat168: 5.09358474e-05 + syst_JES_EtaIntercalibration_Stat169: 5.07851339e-07 + syst_JES_EtaIntercalibration_Stat17: 3.72372221e-11 syst_JES_EtaIntercalibration_Stat170: 0.0 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 syst_JES_EtaIntercalibration_Stat175: 0.0 - syst_JES_EtaIntercalibration_Stat176: 1.3648560363642756e-07 - syst_JES_EtaIntercalibration_Stat177: 4.7084516406988825e-05 - syst_JES_EtaIntercalibration_Stat178: 0.0004170981029685942 - syst_JES_EtaIntercalibration_Stat179: 0.0015455598298027803 - syst_JES_EtaIntercalibration_Stat18: 4.801649687347048e-15 - syst_JES_EtaIntercalibration_Stat180: 0.0007082147326199873 - syst_JES_EtaIntercalibration_Stat181: 7.805358207667346e-05 - syst_JES_EtaIntercalibration_Stat182: 0.0028262844867422672 - syst_JES_EtaIntercalibration_Stat183: 0.0052765648626734414 - syst_JES_EtaIntercalibration_Stat184: 0.002309981980449198 - syst_JES_EtaIntercalibration_Stat185: 8.761020074740155e-05 - syst_JES_EtaIntercalibration_Stat186: 5.079238993195733e-07 + syst_JES_EtaIntercalibration_Stat176: 1.36485604e-07 + syst_JES_EtaIntercalibration_Stat177: 4.70845164e-05 + syst_JES_EtaIntercalibration_Stat178: 4.17098103e-04 + syst_JES_EtaIntercalibration_Stat179: 1.54555983e-03 + syst_JES_EtaIntercalibration_Stat18: 4.80164969e-15 + syst_JES_EtaIntercalibration_Stat180: 7.08214733e-04 + syst_JES_EtaIntercalibration_Stat181: 7.80535821e-05 + syst_JES_EtaIntercalibration_Stat182: 2.82628449e-03 + syst_JES_EtaIntercalibration_Stat183: 5.27656486e-03 + syst_JES_EtaIntercalibration_Stat184: 2.30998198e-03 + syst_JES_EtaIntercalibration_Stat185: 8.76102007e-05 + syst_JES_EtaIntercalibration_Stat186: 5.07923899e-07 syst_JES_EtaIntercalibration_Stat187: 0.0 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 @@ -49367,31 +49367,31 @@ bins: syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 syst_JES_EtaIntercalibration_Stat192: 0.0 - syst_JES_EtaIntercalibration_Stat193: 1.6085516639439187e-06 - syst_JES_EtaIntercalibration_Stat194: 0.00024128661380192645 - syst_JES_EtaIntercalibration_Stat195: 0.002295233975001242 - syst_JES_EtaIntercalibration_Stat196: 0.004930124820935064 - syst_JES_EtaIntercalibration_Stat197: 0.0024652985620407116 - syst_JES_EtaIntercalibration_Stat198: 0.005260739563027236 - syst_JES_EtaIntercalibration_Stat199: 0.0022485112852729913 + syst_JES_EtaIntercalibration_Stat193: 1.60855166e-06 + syst_JES_EtaIntercalibration_Stat194: 2.41286614e-04 + syst_JES_EtaIntercalibration_Stat195: 2.29523398e-03 + syst_JES_EtaIntercalibration_Stat196: 4.93012482e-03 + syst_JES_EtaIntercalibration_Stat197: 2.46529856e-03 + syst_JES_EtaIntercalibration_Stat198: 5.26073956e-03 + syst_JES_EtaIntercalibration_Stat199: 2.24851129e-03 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 0.00011456527517096968 - syst_JES_EtaIntercalibration_Stat201: 5.079238993195733e-07 + syst_JES_EtaIntercalibration_Stat200: 1.14565275e-04 + syst_JES_EtaIntercalibration_Stat201: 5.07923899e-07 syst_JES_EtaIntercalibration_Stat202: 0.0 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 syst_JES_EtaIntercalibration_Stat207: 0.0 - syst_JES_EtaIntercalibration_Stat208: 1.5510514981779297e-06 - syst_JES_EtaIntercalibration_Stat209: 0.00017531957698728342 + syst_JES_EtaIntercalibration_Stat208: 1.55105150e-06 + syst_JES_EtaIntercalibration_Stat209: 1.75319577e-04 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 0.0018309415610554042 - syst_JES_EtaIntercalibration_Stat211: 0.00526411158221404 - syst_JES_EtaIntercalibration_Stat212: 0.000306149350481101 - syst_JES_EtaIntercalibration_Stat213: 3.321293934485958e-05 - syst_JES_EtaIntercalibration_Stat214: 5.079238993195733e-07 + syst_JES_EtaIntercalibration_Stat210: 1.83094156e-03 + syst_JES_EtaIntercalibration_Stat211: 5.26411158e-03 + syst_JES_EtaIntercalibration_Stat212: 3.06149350e-04 + syst_JES_EtaIntercalibration_Stat213: 3.32129393e-05 + syst_JES_EtaIntercalibration_Stat214: 5.07923899e-07 syst_JES_EtaIntercalibration_Stat215: 0.0 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 @@ -49399,11 +49399,11 @@ bins: syst_JES_EtaIntercalibration_Stat219: 0.0 syst_JES_EtaIntercalibration_Stat22: 0.0 syst_JES_EtaIntercalibration_Stat220: 0.0 - syst_JES_EtaIntercalibration_Stat221: 1.9892603524928556e-08 - syst_JES_EtaIntercalibration_Stat222: 6.440982766628086e-05 - syst_JES_EtaIntercalibration_Stat223: 0.00024484172438536694 - syst_JES_EtaIntercalibration_Stat224: 0.00019129654335612028 - syst_JES_EtaIntercalibration_Stat225: 1.0105541746982197e-05 + syst_JES_EtaIntercalibration_Stat221: 1.98926035e-08 + syst_JES_EtaIntercalibration_Stat222: 6.44098277e-05 + syst_JES_EtaIntercalibration_Stat223: 2.44841724e-04 + syst_JES_EtaIntercalibration_Stat224: 1.91296543e-04 + syst_JES_EtaIntercalibration_Stat225: 1.01055417e-05 syst_JES_EtaIntercalibration_Stat226: 0.0 syst_JES_EtaIntercalibration_Stat227: 0.0 syst_JES_EtaIntercalibration_Stat228: 0.0 @@ -49412,296 +49412,296 @@ bins: syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 syst_JES_EtaIntercalibration_Stat232: 0.0 - syst_JES_EtaIntercalibration_Stat233: 1.9892603524928556e-08 - syst_JES_EtaIntercalibration_Stat234: 1.5882905905406603e-05 - syst_JES_EtaIntercalibration_Stat235: 0.00017547728307390676 - syst_JES_EtaIntercalibration_Stat236: 3.468215953489844e-08 + syst_JES_EtaIntercalibration_Stat233: 1.98926035e-08 + syst_JES_EtaIntercalibration_Stat234: 1.58829059e-05 + syst_JES_EtaIntercalibration_Stat235: 1.75477283e-04 + syst_JES_EtaIntercalibration_Stat236: 3.46821595e-08 syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 syst_JES_EtaIntercalibration_Stat239: 0.0 - syst_JES_EtaIntercalibration_Stat24: 1.6480463434017867e-14 + syst_JES_EtaIntercalibration_Stat24: 1.64804634e-14 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 syst_JES_EtaIntercalibration_Stat243: 0.0 - syst_JES_EtaIntercalibration_Stat244: 1.9892603524928556e-08 - syst_JES_EtaIntercalibration_Stat245: 3.2303771838594944e-10 - syst_JES_EtaIntercalibration_Stat25: 5.648777279199455e-12 - syst_JES_EtaIntercalibration_Stat26: 7.726591390014031e-07 - syst_JES_EtaIntercalibration_Stat27: 2.0472157631243146e-07 - syst_JES_EtaIntercalibration_Stat28: 9.491294797659327e-13 + syst_JES_EtaIntercalibration_Stat244: 1.98926035e-08 + syst_JES_EtaIntercalibration_Stat245: 3.23037718e-10 + syst_JES_EtaIntercalibration_Stat25: 5.64877728e-12 + syst_JES_EtaIntercalibration_Stat26: 7.72659139e-07 + syst_JES_EtaIntercalibration_Stat27: 2.04721576e-07 + syst_JES_EtaIntercalibration_Stat28: 9.49129480e-13 syst_JES_EtaIntercalibration_Stat29: 0.0 - syst_JES_EtaIntercalibration_Stat3: 2.495849842598709e-13 + syst_JES_EtaIntercalibration_Stat3: 2.49584984e-13 syst_JES_EtaIntercalibration_Stat30: 0.0 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 3.956004044487316e-12 - syst_JES_EtaIntercalibration_Stat36: 3.956004044487316e-12 - syst_JES_EtaIntercalibration_Stat37: 4.91018382045754e-12 - syst_JES_EtaIntercalibration_Stat38: 1.9797522746877894e-06 - syst_JES_EtaIntercalibration_Stat39: 1.9745626786496506e-06 - syst_JES_EtaIntercalibration_Stat4: 4.5423033642661557e-07 - syst_JES_EtaIntercalibration_Stat40: 5.03399174133957e-11 + syst_JES_EtaIntercalibration_Stat35: 3.95600404e-12 + syst_JES_EtaIntercalibration_Stat36: 3.95600404e-12 + syst_JES_EtaIntercalibration_Stat37: 4.91018382e-12 + syst_JES_EtaIntercalibration_Stat38: 1.97975227e-06 + syst_JES_EtaIntercalibration_Stat39: 1.97456268e-06 + syst_JES_EtaIntercalibration_Stat4: 4.54230336e-07 + syst_JES_EtaIntercalibration_Stat40: 5.03399174e-11 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 syst_JES_EtaIntercalibration_Stat44: 0.0 syst_JES_EtaIntercalibration_Stat45: 0.0 - syst_JES_EtaIntercalibration_Stat46: 3.345818584442378e-13 - syst_JES_EtaIntercalibration_Stat47: 9.138364405078187e-11 - syst_JES_EtaIntercalibration_Stat48: 1.1427388402608664e-06 - syst_JES_EtaIntercalibration_Stat49: 2.051663118769441e-07 - syst_JES_EtaIntercalibration_Stat5: 4.5440353062836005e-07 - syst_JES_EtaIntercalibration_Stat50: 4.776674261450115e-12 + syst_JES_EtaIntercalibration_Stat46: 3.34581858e-13 + syst_JES_EtaIntercalibration_Stat47: 9.13836441e-11 + syst_JES_EtaIntercalibration_Stat48: 1.14273884e-06 + syst_JES_EtaIntercalibration_Stat49: 2.05166312e-07 + syst_JES_EtaIntercalibration_Stat5: 4.54403531e-07 + syst_JES_EtaIntercalibration_Stat50: 4.77667426e-12 syst_JES_EtaIntercalibration_Stat51: 0.0 syst_JES_EtaIntercalibration_Stat52: 0.0 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 8.680172622131429e-15 - syst_JES_EtaIntercalibration_Stat57: 3.956004044487316e-12 - syst_JES_EtaIntercalibration_Stat58: 3.956004044487316e-12 - syst_JES_EtaIntercalibration_Stat59: 5.880565677509265e-12 + syst_JES_EtaIntercalibration_Stat56: 8.68017262e-15 + syst_JES_EtaIntercalibration_Stat57: 3.95600404e-12 + syst_JES_EtaIntercalibration_Stat58: 3.95600404e-12 + syst_JES_EtaIntercalibration_Stat59: 5.88056568e-12 syst_JES_EtaIntercalibration_Stat6: 0.0 - syst_JES_EtaIntercalibration_Stat60: 1.979140816288725e-06 - syst_JES_EtaIntercalibration_Stat61: 2.059643724045496e-06 - syst_JES_EtaIntercalibration_Stat62: 2.2522753755924254e-10 - syst_JES_EtaIntercalibration_Stat63: 6.122927112909314e-14 + syst_JES_EtaIntercalibration_Stat60: 1.97914082e-06 + syst_JES_EtaIntercalibration_Stat61: 2.05964372e-06 + syst_JES_EtaIntercalibration_Stat62: 2.25227538e-10 + syst_JES_EtaIntercalibration_Stat63: 6.12292711e-14 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 3.5607628631376172e-12 - syst_JES_EtaIntercalibration_Stat69: 8.959969334768955e-06 + syst_JES_EtaIntercalibration_Stat68: 3.56076286e-12 + syst_JES_EtaIntercalibration_Stat69: 8.95996933e-06 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 1.6637415845016316e-05 - syst_JES_EtaIntercalibration_Stat71: 1.4171165180029307e-06 - syst_JES_EtaIntercalibration_Stat72: 2.046348006141934e-07 + syst_JES_EtaIntercalibration_Stat70: 1.66374158e-05 + syst_JES_EtaIntercalibration_Stat71: 1.41711652e-06 + syst_JES_EtaIntercalibration_Stat72: 2.04634801e-07 syst_JES_EtaIntercalibration_Stat73: 0.0 syst_JES_EtaIntercalibration_Stat74: 0.0 syst_JES_EtaIntercalibration_Stat75: 0.0 - syst_JES_EtaIntercalibration_Stat76: 3.34467671195588e-13 - syst_JES_EtaIntercalibration_Stat77: 8.680172622131429e-15 - syst_JES_EtaIntercalibration_Stat78: 8.680172622131429e-15 - syst_JES_EtaIntercalibration_Stat79: 3.956004044487316e-12 + syst_JES_EtaIntercalibration_Stat76: 3.34467671e-13 + syst_JES_EtaIntercalibration_Stat77: 8.68017262e-15 + syst_JES_EtaIntercalibration_Stat78: 8.68017262e-15 + syst_JES_EtaIntercalibration_Stat79: 3.95600404e-12 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 3.919630977528369e-12 - syst_JES_EtaIntercalibration_Stat81: 4.472524790316986e-11 - syst_JES_EtaIntercalibration_Stat82: 1.628641381642994e-06 - syst_JES_EtaIntercalibration_Stat83: 3.3996916194708017e-06 - syst_JES_EtaIntercalibration_Stat84: 4.087203567232736e-08 - syst_JES_EtaIntercalibration_Stat85: 2.948264689609805e-13 + syst_JES_EtaIntercalibration_Stat80: 3.91963098e-12 + syst_JES_EtaIntercalibration_Stat81: 4.47252479e-11 + syst_JES_EtaIntercalibration_Stat82: 1.62864138e-06 + syst_JES_EtaIntercalibration_Stat83: 3.39969162e-06 + syst_JES_EtaIntercalibration_Stat84: 4.08720357e-08 + syst_JES_EtaIntercalibration_Stat85: 2.94826469e-13 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 5.7056380070505704e-12 + syst_JES_EtaIntercalibration_Stat89: 5.70563801e-12 syst_JES_EtaIntercalibration_Stat9: 0.0 - syst_JES_EtaIntercalibration_Stat90: 2.009529467313182e-05 - syst_JES_EtaIntercalibration_Stat91: 2.7872771659811658e-05 - syst_JES_EtaIntercalibration_Stat92: 1.4069848142393008e-06 - syst_JES_EtaIntercalibration_Stat93: 2.113867166796502e-07 + syst_JES_EtaIntercalibration_Stat90: 2.00952947e-05 + syst_JES_EtaIntercalibration_Stat91: 2.78727717e-05 + syst_JES_EtaIntercalibration_Stat92: 1.40698481e-06 + syst_JES_EtaIntercalibration_Stat93: 2.11386717e-07 syst_JES_EtaIntercalibration_Stat94: 0.0 syst_JES_EtaIntercalibration_Stat95: 0.0 - syst_JES_EtaIntercalibration_Stat96: 3.1246196568542545e-09 - syst_JES_EtaIntercalibration_Stat97: 3.34467671195588e-13 - syst_JES_EtaIntercalibration_Stat98: 8.680172622131429e-15 - syst_JES_EtaIntercalibration_Stat99: 8.680172622131429e-15 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.00796141802695977 - syst_JES_Flavour_Comp: 0.025550473576824363 - syst_JES_Gjet_Generator: 0.05093041208354788 - syst_JES_Gjet_OOC: 0.03870875607340024 - syst_JES_Gjet_Purity: 0.012353053499034155 - syst_JES_Gjet_Stat1: 2.0316955923967966e-05 - syst_JES_Gjet_Stat10: 0.001380081340899876 - syst_JES_Gjet_Stat11: 0.002087352569644141 - syst_JES_Gjet_Stat12: 0.006931989090441503 - syst_JES_Gjet_Stat13: 0.009194457895928395 - syst_JES_Gjet_Stat14: 0.001970604528437911 - syst_JES_Gjet_Stat15: 0.0012140786177179796 - syst_JES_Gjet_Stat2: 4.9172923039449095e-08 - syst_JES_Gjet_Stat3: 6.259387357565974e-12 - syst_JES_Gjet_Stat4: 5.865590352866191e-05 - syst_JES_Gjet_Stat5: 8.242830197105746e-05 - syst_JES_Gjet_Stat6: 0.0003160406837734661 - syst_JES_Gjet_Stat7: 0.0004555429370542364 - syst_JES_Gjet_Stat8: 0.0002550340516480103 - syst_JES_Gjet_Stat9: 0.0007526418670257455 - syst_JES_Gjet_Veto: 0.02745985205713971 - syst_JES_Gjet_dPhi: 0.003030143395946799 - syst_JES_LArESZee: 0.0749709948913578 - syst_JES_LArEsmear: 0.006015861783651617 - syst_JES_LAr_JVT: 0.007990704724866262 - syst_JES_MJB_Alpha: 0.0004476485312161764 - syst_JES_MJB_Asym: 0.0023842621500162267 - syst_JES_MJB_Beta: 1.5709700824649715e-06 - syst_JES_MJB_Stat1: 0.0003257121543633274 - syst_JES_MJB_Stat10: 9.647522998158647e-40 - syst_JES_MJB_Stat11: 2.6387794053311846e-06 + syst_JES_EtaIntercalibration_Stat96: 3.12461966e-09 + syst_JES_EtaIntercalibration_Stat97: 3.34467671e-13 + syst_JES_EtaIntercalibration_Stat98: 8.68017262e-15 + syst_JES_EtaIntercalibration_Stat99: 8.68017262e-15 + syst_JES_EtaIntercalibration_TotalStat_MJB: 7.96141803e-03 + syst_JES_Flavour_Comp: 2.55504736e-02 + syst_JES_Gjet_Generator: 5.09304121e-02 + syst_JES_Gjet_OOC: 3.87087561e-02 + syst_JES_Gjet_Purity: 1.23530535e-02 + syst_JES_Gjet_Stat1: 2.03169559e-05 + syst_JES_Gjet_Stat10: 1.38008134e-03 + syst_JES_Gjet_Stat11: 2.08735257e-03 + syst_JES_Gjet_Stat12: 6.93198909e-03 + syst_JES_Gjet_Stat13: 9.19445790e-03 + syst_JES_Gjet_Stat14: 1.97060453e-03 + syst_JES_Gjet_Stat15: 1.21407862e-03 + syst_JES_Gjet_Stat2: 4.91729230e-08 + syst_JES_Gjet_Stat3: 6.25938736e-12 + syst_JES_Gjet_Stat4: 5.86559035e-05 + syst_JES_Gjet_Stat5: 8.24283020e-05 + syst_JES_Gjet_Stat6: 3.16040684e-04 + syst_JES_Gjet_Stat7: 4.55542937e-04 + syst_JES_Gjet_Stat8: 2.55034052e-04 + syst_JES_Gjet_Stat9: 7.52641867e-04 + syst_JES_Gjet_Veto: 2.74598521e-02 + syst_JES_Gjet_dPhi: 3.03014340e-03 + syst_JES_LArESZee: 7.49709949e-02 + syst_JES_LArEsmear: 6.01586178e-03 + syst_JES_LAr_JVT: 7.99070472e-03 + syst_JES_MJB_Alpha: 4.47648531e-04 + syst_JES_MJB_Asym: 2.38426215e-03 + syst_JES_MJB_Beta: 1.57097008e-06 + syst_JES_MJB_Stat1: 3.25712154e-04 + syst_JES_MJB_Stat10: 9.64752300e-40 + syst_JES_MJB_Stat11: 2.63877941e-06 syst_JES_MJB_Stat12: 0.0 syst_JES_MJB_Stat13: 0.0 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 - syst_JES_MJB_Stat16: 4.5189205569472003e-14 - syst_JES_MJB_Stat2: 0.00047562785039881756 - syst_JES_MJB_Stat3: 0.000780573473479595 - syst_JES_MJB_Stat4: 0.0002647439659369029 - syst_JES_MJB_Stat5: 0.00010284917695343993 - syst_JES_MJB_Stat6: 7.508105072251138e-24 - syst_JES_MJB_Stat7: 2.449985867306177e-05 - syst_JES_MJB_Stat8: 1.0542127240267761e-27 - syst_JES_MJB_Stat9: 1.244478505238153e-27 - syst_JES_MJB_Threshold: 0.0033863617644900256 - syst_JES_Pileup_MuOffset: 0.006161930054779914 - syst_JES_Pileup_NPVOffset: 0.007160412331004409 - syst_JES_Pileup_Pt_term: 0.014216451412008554 - syst_JES_PunchThrough_MC15: 0.0013418318337258214 + syst_JES_MJB_Stat16: 4.51892056e-14 + syst_JES_MJB_Stat2: 4.75627850e-04 + syst_JES_MJB_Stat3: 7.80573473e-04 + syst_JES_MJB_Stat4: 2.64743966e-04 + syst_JES_MJB_Stat5: 1.02849177e-04 + syst_JES_MJB_Stat6: 7.50810507e-24 + syst_JES_MJB_Stat7: 2.44998587e-05 + syst_JES_MJB_Stat8: 1.05421272e-27 + syst_JES_MJB_Stat9: 1.24447851e-27 + syst_JES_MJB_Threshold: 3.38636176e-03 + syst_JES_Pileup_MuOffset: 6.16193005e-03 + syst_JES_Pileup_NPVOffset: 7.16041233e-03 + syst_JES_Pileup_Pt_term: 1.42164514e-02 + syst_JES_PunchThrough_MC15: 1.34183183e-03 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.03837017954088826 - syst_JES_Zjet_MuScale: 0.0021765203307113857 - syst_JES_Zjet_MuSmearID: 0.0004131705943070005 - syst_JES_Zjet_MuSmearMS: 0.010015095955606217 - syst_JES_Zjet_OOC: 0.01534695735316939 - syst_JES_Zjet_Stat1: 0.0004779594176434571 - syst_JES_Zjet_Stat10: 0.001301551697013991 - syst_JES_Zjet_Stat11: 0.0012771890414108634 - syst_JES_Zjet_Stat12: 0.009765500640008171 - syst_JES_Zjet_Stat13: 0.009918641779497837 - syst_JES_Zjet_Stat2: 1.8102090176275227e-05 - syst_JES_Zjet_Stat3: 0.000234519679344826 - syst_JES_Zjet_Stat4: 4.5810753440103996e-12 - syst_JES_Zjet_Stat5: 6.4367264636226385e-12 - syst_JES_Zjet_Stat6: 0.00029589671897471253 - syst_JES_Zjet_Stat7: 4.815496133058358e-06 - syst_JES_Zjet_Stat8: 0.0002402959425375302 - syst_JES_Zjet_Stat9: 0.0005600820006927558 - syst_JES_Zjet_Veto: 0.0031476009912312585 - syst_JES_Zjet_dPhi: 0.002521915343543474 - syst_PRW: 4.858e-31 + syst_JES_Zjet_MC: 3.83701795e-02 + syst_JES_Zjet_MuScale: 2.17652033e-03 + syst_JES_Zjet_MuSmearID: 4.13170594e-04 + syst_JES_Zjet_MuSmearMS: 1.00150960e-02 + syst_JES_Zjet_OOC: 1.53469574e-02 + syst_JES_Zjet_Stat1: 4.77959418e-04 + syst_JES_Zjet_Stat10: 1.30155170e-03 + syst_JES_Zjet_Stat11: 1.27718904e-03 + syst_JES_Zjet_Stat12: 9.76550064e-03 + syst_JES_Zjet_Stat13: 9.91864178e-03 + syst_JES_Zjet_Stat2: 1.81020902e-05 + syst_JES_Zjet_Stat3: 2.34519679e-04 + syst_JES_Zjet_Stat4: 4.58107534e-12 + syst_JES_Zjet_Stat5: 6.43672646e-12 + syst_JES_Zjet_Stat6: 2.95896719e-04 + syst_JES_Zjet_Stat7: 4.81549613e-06 + syst_JES_Zjet_Stat8: 2.40295943e-04 + syst_JES_Zjet_Stat9: 5.60082001e-04 + syst_JES_Zjet_Veto: 3.14760099e-03 + syst_JES_Zjet_dPhi: 2.52191534e-03 + syst_PRW: 4.85800000e-31 syst_Unfolding_bias: 0.0 - syst_cleaning: 0.010853030360226586 + syst_cleaning: 1.08530304e-02 syst_lumi: 0.04233 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 0.013033809755785143 - syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0045616780629500805 - syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.00341914419116831 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 0.011494036801750724 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.006778766462270255 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.014928124463575455 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 1.30338098e-02 + syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 4.56167806e-03 + syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 3.41914419e-03 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 1.14940368e-02 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 6.77876646e-03 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.49281245e-02 - stat: 0.010017 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.007845419746578255 - syst_JER_NP1: 0.009061840486347129 - syst_JER_NP2: 0.0017415906753731455 - syst_JER_NP3: 0.002443444034554506 - syst_JER_NP4: 0.0021830869771953657 - syst_JER_NP5: 5.983829166904751e-05 - syst_JER_NP6: 2.0347460941110072e-07 - syst_JER_NP7: 6.605685127221853e-12 - syst_JER_NP8: 0.001309511767797449 - syst_JES_EtaIntercalibration_Modelling: 0.04902450611683916 - syst_JES_EtaIntercalibration_NonClosure: 0.010429460101079058 + syst_JER_NP0: 7.84541975e-03 + syst_JER_NP1: 9.06184049e-03 + syst_JER_NP2: 1.74159068e-03 + syst_JER_NP3: 2.44344403e-03 + syst_JER_NP4: 2.18308698e-03 + syst_JER_NP5: 5.98382917e-05 + syst_JER_NP6: 2.03474609e-07 + syst_JER_NP7: 6.60568513e-12 + syst_JER_NP8: 1.30951177e-03 + syst_JES_EtaIntercalibration_Modelling: 4.90245061e-02 + syst_JES_EtaIntercalibration_NonClosure: 1.04294601e-02 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 1.3899707730740241e-15 + syst_JES_EtaIntercalibration_Stat100: 1.38997077e-15 syst_JES_EtaIntercalibration_Stat101: 0.0 - syst_JES_EtaIntercalibration_Stat102: 4.246335129261467e-10 - syst_JES_EtaIntercalibration_Stat103: 7.81343998297165e-07 - syst_JES_EtaIntercalibration_Stat104: 1.1409077075732287e-05 - syst_JES_EtaIntercalibration_Stat105: 2.8071453026161644e-08 - syst_JES_EtaIntercalibration_Stat106: 4.328047221322799e-12 + syst_JES_EtaIntercalibration_Stat102: 4.24633513e-10 + syst_JES_EtaIntercalibration_Stat103: 7.81343998e-07 + syst_JES_EtaIntercalibration_Stat104: 1.14090771e-05 + syst_JES_EtaIntercalibration_Stat105: 2.80714530e-08 + syst_JES_EtaIntercalibration_Stat106: 4.32804722e-12 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 3.679023613677956e-10 + syst_JES_EtaIntercalibration_Stat109: 3.67902361e-10 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 8.254803268400767e-06 - syst_JES_EtaIntercalibration_Stat111: 5.267862090070316e-06 - syst_JES_EtaIntercalibration_Stat112: 7.64896182497991e-06 - syst_JES_EtaIntercalibration_Stat113: 7.990652460844483e-08 - syst_JES_EtaIntercalibration_Stat114: 2.3140198789120202e-11 + syst_JES_EtaIntercalibration_Stat110: 8.25480327e-06 + syst_JES_EtaIntercalibration_Stat111: 5.26786209e-06 + syst_JES_EtaIntercalibration_Stat112: 7.64896182e-06 + syst_JES_EtaIntercalibration_Stat113: 7.99065246e-08 + syst_JES_EtaIntercalibration_Stat114: 2.31401988e-11 syst_JES_EtaIntercalibration_Stat115: 0.0 - syst_JES_EtaIntercalibration_Stat116: 3.3878047770643455e-10 - syst_JES_EtaIntercalibration_Stat117: 3.620852213222738e-10 - syst_JES_EtaIntercalibration_Stat118: 1.3899707730740241e-15 - syst_JES_EtaIntercalibration_Stat119: 1.3899707730740241e-15 + syst_JES_EtaIntercalibration_Stat116: 3.38780478e-10 + syst_JES_EtaIntercalibration_Stat117: 3.62085221e-10 + syst_JES_EtaIntercalibration_Stat118: 1.38997077e-15 + syst_JES_EtaIntercalibration_Stat119: 1.38997077e-15 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 1.3899707730740241e-15 - syst_JES_EtaIntercalibration_Stat121: 4.727632679259251e-13 - syst_JES_EtaIntercalibration_Stat122: 8.014163669404313e-07 - syst_JES_EtaIntercalibration_Stat123: 1.6037022150948098e-05 - syst_JES_EtaIntercalibration_Stat124: 1.1432462672145491e-05 - syst_JES_EtaIntercalibration_Stat125: 3.841639363605074e-06 - syst_JES_EtaIntercalibration_Stat126: 4.13006253604894e-09 + syst_JES_EtaIntercalibration_Stat120: 1.38997077e-15 + syst_JES_EtaIntercalibration_Stat121: 4.72763268e-13 + syst_JES_EtaIntercalibration_Stat122: 8.01416367e-07 + syst_JES_EtaIntercalibration_Stat123: 1.60370222e-05 + syst_JES_EtaIntercalibration_Stat124: 1.14324627e-05 + syst_JES_EtaIntercalibration_Stat125: 3.84163936e-06 + syst_JES_EtaIntercalibration_Stat126: 4.13006254e-09 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 2.4346972604412237e-06 - syst_JES_EtaIntercalibration_Stat129: 7.642805554899327e-06 + syst_JES_EtaIntercalibration_Stat128: 2.43469726e-06 + syst_JES_EtaIntercalibration_Stat129: 7.64280555e-06 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 0.00014051222037602282 - syst_JES_EtaIntercalibration_Stat131: 1.807731984642635e-05 - syst_JES_EtaIntercalibration_Stat132: 5.19656588527462e-06 - syst_JES_EtaIntercalibration_Stat133: 3.33037442952842e-08 + syst_JES_EtaIntercalibration_Stat130: 1.40512220e-04 + syst_JES_EtaIntercalibration_Stat131: 1.80773198e-05 + syst_JES_EtaIntercalibration_Stat132: 5.19656589e-06 + syst_JES_EtaIntercalibration_Stat133: 3.33037443e-08 syst_JES_EtaIntercalibration_Stat134: 0.0 - syst_JES_EtaIntercalibration_Stat135: 3.3878047770643455e-10 - syst_JES_EtaIntercalibration_Stat136: 3.3878047770643455e-10 - syst_JES_EtaIntercalibration_Stat137: 1.3899707730740241e-15 - syst_JES_EtaIntercalibration_Stat138: 1.3899707730740241e-15 - syst_JES_EtaIntercalibration_Stat139: 1.3899707730740241e-15 + syst_JES_EtaIntercalibration_Stat135: 3.38780478e-10 + syst_JES_EtaIntercalibration_Stat136: 3.38780478e-10 + syst_JES_EtaIntercalibration_Stat137: 1.38997077e-15 + syst_JES_EtaIntercalibration_Stat138: 1.38997077e-15 + syst_JES_EtaIntercalibration_Stat139: 1.38997077e-15 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 3.4952785296739947e-13 - syst_JES_EtaIntercalibration_Stat141: 8.676139228222424e-06 - syst_JES_EtaIntercalibration_Stat142: 3.843680809783768e-05 - syst_JES_EtaIntercalibration_Stat143: 0.0001406457275390902 - syst_JES_EtaIntercalibration_Stat144: 8.066891673222097e-05 - syst_JES_EtaIntercalibration_Stat145: 9.941089071122943e-09 - syst_JES_EtaIntercalibration_Stat146: 8.582733873888903e-06 - syst_JES_EtaIntercalibration_Stat147: 9.892847163481299e-06 - syst_JES_EtaIntercalibration_Stat148: 0.0001799774994270117 - syst_JES_EtaIntercalibration_Stat149: 1.1904423327066287e-05 + syst_JES_EtaIntercalibration_Stat140: 3.49527853e-13 + syst_JES_EtaIntercalibration_Stat141: 8.67613923e-06 + syst_JES_EtaIntercalibration_Stat142: 3.84368081e-05 + syst_JES_EtaIntercalibration_Stat143: 1.40645728e-04 + syst_JES_EtaIntercalibration_Stat144: 8.06689167e-05 + syst_JES_EtaIntercalibration_Stat145: 9.94108907e-09 + syst_JES_EtaIntercalibration_Stat146: 8.58273387e-06 + syst_JES_EtaIntercalibration_Stat147: 9.89284716e-06 + syst_JES_EtaIntercalibration_Stat148: 1.79977499e-04 + syst_JES_EtaIntercalibration_Stat149: 1.19044233e-05 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 6.2512821748822065e-06 - syst_JES_EtaIntercalibration_Stat151: 1.1700963542320224e-07 + syst_JES_EtaIntercalibration_Stat150: 6.25128217e-06 + syst_JES_EtaIntercalibration_Stat151: 1.17009635e-07 syst_JES_EtaIntercalibration_Stat152: 0.0 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 1.3899707730740241e-15 + syst_JES_EtaIntercalibration_Stat156: 1.38997077e-15 syst_JES_EtaIntercalibration_Stat157: 0.0 syst_JES_EtaIntercalibration_Stat158: 0.0 - syst_JES_EtaIntercalibration_Stat159: 1.5726191528784072e-05 - syst_JES_EtaIntercalibration_Stat16: 8.684502753861529e-07 - syst_JES_EtaIntercalibration_Stat160: 5.963441623760561e-05 - syst_JES_EtaIntercalibration_Stat161: 0.0002110646050383626 - syst_JES_EtaIntercalibration_Stat162: 2.4778028387060984e-05 - syst_JES_EtaIntercalibration_Stat163: 1.4335513271243553e-06 - syst_JES_EtaIntercalibration_Stat164: 1.3124613775269733e-05 - syst_JES_EtaIntercalibration_Stat165: 0.00022004324734015357 - syst_JES_EtaIntercalibration_Stat166: 0.0005277543557375913 - syst_JES_EtaIntercalibration_Stat167: 0.00020873238847864508 - syst_JES_EtaIntercalibration_Stat168: 3.663981783087902e-05 - syst_JES_EtaIntercalibration_Stat169: 1.1700963542320224e-07 - syst_JES_EtaIntercalibration_Stat17: 3.970485664269237e-12 + syst_JES_EtaIntercalibration_Stat159: 1.57261915e-05 + syst_JES_EtaIntercalibration_Stat16: 8.68450275e-07 + syst_JES_EtaIntercalibration_Stat160: 5.96344162e-05 + syst_JES_EtaIntercalibration_Stat161: 2.11064605e-04 + syst_JES_EtaIntercalibration_Stat162: 2.47780284e-05 + syst_JES_EtaIntercalibration_Stat163: 1.43355133e-06 + syst_JES_EtaIntercalibration_Stat164: 1.31246138e-05 + syst_JES_EtaIntercalibration_Stat165: 2.20043247e-04 + syst_JES_EtaIntercalibration_Stat166: 5.27754356e-04 + syst_JES_EtaIntercalibration_Stat167: 2.08732388e-04 + syst_JES_EtaIntercalibration_Stat168: 3.66398178e-05 + syst_JES_EtaIntercalibration_Stat169: 1.17009635e-07 + syst_JES_EtaIntercalibration_Stat17: 3.97048566e-12 syst_JES_EtaIntercalibration_Stat170: 0.0 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 syst_JES_EtaIntercalibration_Stat175: 0.0 - syst_JES_EtaIntercalibration_Stat176: 2.2126949066692407e-08 - syst_JES_EtaIntercalibration_Stat177: 2.916671590473463e-05 - syst_JES_EtaIntercalibration_Stat178: 0.00016438010828564387 - syst_JES_EtaIntercalibration_Stat179: 0.0006484428193757719 - syst_JES_EtaIntercalibration_Stat18: 6.384863036902201e-16 - syst_JES_EtaIntercalibration_Stat180: 0.00032151878638735873 - syst_JES_EtaIntercalibration_Stat181: 3.040094200843125e-05 - syst_JES_EtaIntercalibration_Stat182: 0.001487215319817544 - syst_JES_EtaIntercalibration_Stat183: 0.0026832826910335034 - syst_JES_EtaIntercalibration_Stat184: 0.0010478272376685004 - syst_JES_EtaIntercalibration_Stat185: 4.570090918132811e-05 - syst_JES_EtaIntercalibration_Stat186: 1.1701735255935335e-07 + syst_JES_EtaIntercalibration_Stat176: 2.21269491e-08 + syst_JES_EtaIntercalibration_Stat177: 2.91667159e-05 + syst_JES_EtaIntercalibration_Stat178: 1.64380108e-04 + syst_JES_EtaIntercalibration_Stat179: 6.48442819e-04 + syst_JES_EtaIntercalibration_Stat18: 6.38486304e-16 + syst_JES_EtaIntercalibration_Stat180: 3.21518786e-04 + syst_JES_EtaIntercalibration_Stat181: 3.04009420e-05 + syst_JES_EtaIntercalibration_Stat182: 1.48721532e-03 + syst_JES_EtaIntercalibration_Stat183: 2.68328269e-03 + syst_JES_EtaIntercalibration_Stat184: 1.04782724e-03 + syst_JES_EtaIntercalibration_Stat185: 4.57009092e-05 + syst_JES_EtaIntercalibration_Stat186: 1.17017353e-07 syst_JES_EtaIntercalibration_Stat187: 0.0 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 @@ -49709,31 +49709,31 @@ bins: syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 syst_JES_EtaIntercalibration_Stat192: 0.0 - syst_JES_EtaIntercalibration_Stat193: 7.630748534834246e-07 - syst_JES_EtaIntercalibration_Stat194: 0.00010980145388381702 - syst_JES_EtaIntercalibration_Stat195: 0.0011470194015359985 - syst_JES_EtaIntercalibration_Stat196: 0.002297513166447583 - syst_JES_EtaIntercalibration_Stat197: 0.0012444075487958116 - syst_JES_EtaIntercalibration_Stat198: 0.0033819391996308865 - syst_JES_EtaIntercalibration_Stat199: 0.0013836886165246862 + syst_JES_EtaIntercalibration_Stat193: 7.63074853e-07 + syst_JES_EtaIntercalibration_Stat194: 1.09801454e-04 + syst_JES_EtaIntercalibration_Stat195: 1.14701940e-03 + syst_JES_EtaIntercalibration_Stat196: 2.29751317e-03 + syst_JES_EtaIntercalibration_Stat197: 1.24440755e-03 + syst_JES_EtaIntercalibration_Stat198: 3.38193920e-03 + syst_JES_EtaIntercalibration_Stat199: 1.38368862e-03 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 6.2945885290462e-05 - syst_JES_EtaIntercalibration_Stat201: 1.1701735255935335e-07 + syst_JES_EtaIntercalibration_Stat200: 6.29458853e-05 + syst_JES_EtaIntercalibration_Stat201: 1.17017353e-07 syst_JES_EtaIntercalibration_Stat202: 0.0 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 syst_JES_EtaIntercalibration_Stat207: 0.0 - syst_JES_EtaIntercalibration_Stat208: 7.517966530252712e-07 - syst_JES_EtaIntercalibration_Stat209: 0.00010547313117566955 + syst_JES_EtaIntercalibration_Stat208: 7.51796653e-07 + syst_JES_EtaIntercalibration_Stat209: 1.05473131e-04 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 0.0012441838569922051 - syst_JES_EtaIntercalibration_Stat211: 0.003462661115385102 - syst_JES_EtaIntercalibration_Stat212: 0.0003531382448843512 - syst_JES_EtaIntercalibration_Stat213: 4.793433509075935e-05 - syst_JES_EtaIntercalibration_Stat214: 1.1701735255935335e-07 + syst_JES_EtaIntercalibration_Stat210: 1.24418386e-03 + syst_JES_EtaIntercalibration_Stat211: 3.46266112e-03 + syst_JES_EtaIntercalibration_Stat212: 3.53138245e-04 + syst_JES_EtaIntercalibration_Stat213: 4.79343351e-05 + syst_JES_EtaIntercalibration_Stat214: 1.17017353e-07 syst_JES_EtaIntercalibration_Stat215: 0.0 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 @@ -49741,11 +49741,11 @@ bins: syst_JES_EtaIntercalibration_Stat219: 0.0 syst_JES_EtaIntercalibration_Stat22: 0.0 syst_JES_EtaIntercalibration_Stat220: 0.0 - syst_JES_EtaIntercalibration_Stat221: 1.1097249524093797e-07 - syst_JES_EtaIntercalibration_Stat222: 4.378355056411026e-05 - syst_JES_EtaIntercalibration_Stat223: 0.0003823405942350354 - syst_JES_EtaIntercalibration_Stat224: 0.00018015956816111654 - syst_JES_EtaIntercalibration_Stat225: 2.30293896304266e-05 + syst_JES_EtaIntercalibration_Stat221: 1.10972495e-07 + syst_JES_EtaIntercalibration_Stat222: 4.37835506e-05 + syst_JES_EtaIntercalibration_Stat223: 3.82340594e-04 + syst_JES_EtaIntercalibration_Stat224: 1.80159568e-04 + syst_JES_EtaIntercalibration_Stat225: 2.30293896e-05 syst_JES_EtaIntercalibration_Stat226: 0.0 syst_JES_EtaIntercalibration_Stat227: 0.0 syst_JES_EtaIntercalibration_Stat228: 0.0 @@ -49754,296 +49754,296 @@ bins: syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 syst_JES_EtaIntercalibration_Stat232: 0.0 - syst_JES_EtaIntercalibration_Stat233: 1.1097249524093797e-07 - syst_JES_EtaIntercalibration_Stat234: 4.122280922013928e-06 - syst_JES_EtaIntercalibration_Stat235: 0.00017273674095281527 - syst_JES_EtaIntercalibration_Stat236: 5.478812028668327e-07 + syst_JES_EtaIntercalibration_Stat233: 1.10972495e-07 + syst_JES_EtaIntercalibration_Stat234: 4.12228092e-06 + syst_JES_EtaIntercalibration_Stat235: 1.72736741e-04 + syst_JES_EtaIntercalibration_Stat236: 5.47881203e-07 syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 syst_JES_EtaIntercalibration_Stat239: 0.0 - syst_JES_EtaIntercalibration_Stat24: 2.3477948696596134e-15 + syst_JES_EtaIntercalibration_Stat24: 2.34779487e-15 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 syst_JES_EtaIntercalibration_Stat243: 0.0 - syst_JES_EtaIntercalibration_Stat244: 1.1097249524093797e-07 - syst_JES_EtaIntercalibration_Stat245: 1.6044652403526854e-08 - syst_JES_EtaIntercalibration_Stat25: 6.156659869604622e-13 - syst_JES_EtaIntercalibration_Stat26: 4.105825494509178e-06 - syst_JES_EtaIntercalibration_Stat27: 3.3212201606591225e-08 - syst_JES_EtaIntercalibration_Stat28: 1.0726260898575049e-13 + syst_JES_EtaIntercalibration_Stat244: 1.10972495e-07 + syst_JES_EtaIntercalibration_Stat245: 1.60446524e-08 + syst_JES_EtaIntercalibration_Stat25: 6.15665987e-13 + syst_JES_EtaIntercalibration_Stat26: 4.10582549e-06 + syst_JES_EtaIntercalibration_Stat27: 3.32122016e-08 + syst_JES_EtaIntercalibration_Stat28: 1.07262609e-13 syst_JES_EtaIntercalibration_Stat29: 0.0 - syst_JES_EtaIntercalibration_Stat3: 2.8189146697266307e-14 + syst_JES_EtaIntercalibration_Stat3: 2.81891467e-14 syst_JES_EtaIntercalibration_Stat30: 0.0 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 4.18117064947127e-13 - syst_JES_EtaIntercalibration_Stat36: 4.18117064947127e-13 - syst_JES_EtaIntercalibration_Stat37: 5.319583834549466e-13 - syst_JES_EtaIntercalibration_Stat38: 8.681058078432488e-07 - syst_JES_EtaIntercalibration_Stat39: 8.658548196169616e-07 - syst_JES_EtaIntercalibration_Stat4: 1.0960417657779988e-07 - syst_JES_EtaIntercalibration_Stat40: 5.387995264242537e-12 + syst_JES_EtaIntercalibration_Stat35: 4.18117065e-13 + syst_JES_EtaIntercalibration_Stat36: 4.18117065e-13 + syst_JES_EtaIntercalibration_Stat37: 5.31958383e-13 + syst_JES_EtaIntercalibration_Stat38: 8.68105808e-07 + syst_JES_EtaIntercalibration_Stat39: 8.65854820e-07 + syst_JES_EtaIntercalibration_Stat4: 1.09604177e-07 + syst_JES_EtaIntercalibration_Stat40: 5.38799526e-12 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 syst_JES_EtaIntercalibration_Stat44: 0.0 syst_JES_EtaIntercalibration_Stat45: 0.0 - syst_JES_EtaIntercalibration_Stat46: 3.765065373602429e-14 - syst_JES_EtaIntercalibration_Stat47: 9.708639181162311e-12 - syst_JES_EtaIntercalibration_Stat48: 4.4028218287945326e-06 - syst_JES_EtaIntercalibration_Stat49: 3.319545018866742e-08 - syst_JES_EtaIntercalibration_Stat5: 1.0963015602623942e-07 - syst_JES_EtaIntercalibration_Stat50: 5.161942536487596e-13 + syst_JES_EtaIntercalibration_Stat46: 3.76506537e-14 + syst_JES_EtaIntercalibration_Stat47: 9.70863918e-12 + syst_JES_EtaIntercalibration_Stat48: 4.40282183e-06 + syst_JES_EtaIntercalibration_Stat49: 3.31954502e-08 + syst_JES_EtaIntercalibration_Stat5: 1.09630156e-07 + syst_JES_EtaIntercalibration_Stat50: 5.16194254e-13 syst_JES_EtaIntercalibration_Stat51: 0.0 syst_JES_EtaIntercalibration_Stat52: 0.0 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 1.3899707730740241e-15 - syst_JES_EtaIntercalibration_Stat57: 4.18117064947127e-13 - syst_JES_EtaIntercalibration_Stat58: 4.18117064947127e-13 - syst_JES_EtaIntercalibration_Stat59: 6.387502876711681e-13 + syst_JES_EtaIntercalibration_Stat56: 1.38997077e-15 + syst_JES_EtaIntercalibration_Stat57: 4.18117065e-13 + syst_JES_EtaIntercalibration_Stat58: 4.18117065e-13 + syst_JES_EtaIntercalibration_Stat59: 6.38750288e-13 syst_JES_EtaIntercalibration_Stat6: 0.0 - syst_JES_EtaIntercalibration_Stat60: 8.686651413339609e-07 - syst_JES_EtaIntercalibration_Stat61: 8.761759179525537e-07 - syst_JES_EtaIntercalibration_Stat62: 2.41814322776795e-11 - syst_JES_EtaIntercalibration_Stat63: 7.331358530606726e-15 + syst_JES_EtaIntercalibration_Stat60: 8.68665141e-07 + syst_JES_EtaIntercalibration_Stat61: 8.76175918e-07 + syst_JES_EtaIntercalibration_Stat62: 2.41814323e-11 + syst_JES_EtaIntercalibration_Stat63: 7.33135853e-15 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 3.8008008037780674e-13 - syst_JES_EtaIntercalibration_Stat69: 7.4074618931993165e-06 + syst_JES_EtaIntercalibration_Stat68: 3.80080080e-13 + syst_JES_EtaIntercalibration_Stat69: 7.40746189e-06 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 9.22070424371154e-06 - syst_JES_EtaIntercalibration_Stat71: 4.355625041735888e-06 - syst_JES_EtaIntercalibration_Stat72: 3.314984200517298e-08 + syst_JES_EtaIntercalibration_Stat70: 9.22070424e-06 + syst_JES_EtaIntercalibration_Stat71: 4.35562504e-06 + syst_JES_EtaIntercalibration_Stat72: 3.31498420e-08 syst_JES_EtaIntercalibration_Stat73: 0.0 syst_JES_EtaIntercalibration_Stat74: 0.0 syst_JES_EtaIntercalibration_Stat75: 0.0 - syst_JES_EtaIntercalibration_Stat76: 4.0045014670992444e-14 - syst_JES_EtaIntercalibration_Stat77: 1.3899707730740241e-15 - syst_JES_EtaIntercalibration_Stat78: 1.3899707730740241e-15 - syst_JES_EtaIntercalibration_Stat79: 4.18117064947127e-13 + syst_JES_EtaIntercalibration_Stat76: 4.00450147e-14 + syst_JES_EtaIntercalibration_Stat77: 1.38997077e-15 + syst_JES_EtaIntercalibration_Stat78: 1.38997077e-15 + syst_JES_EtaIntercalibration_Stat79: 4.18117065e-13 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 4.1404674554934005e-13 - syst_JES_EtaIntercalibration_Stat81: 4.7697474775924984e-12 - syst_JES_EtaIntercalibration_Stat82: 7.942416664183516e-07 - syst_JES_EtaIntercalibration_Stat83: 4.2568325630684604e-07 - syst_JES_EtaIntercalibration_Stat84: 6.43137829318102e-09 - syst_JES_EtaIntercalibration_Stat85: 3.244696883762796e-14 + syst_JES_EtaIntercalibration_Stat80: 4.14046746e-13 + syst_JES_EtaIntercalibration_Stat81: 4.76974748e-12 + syst_JES_EtaIntercalibration_Stat82: 7.94241666e-07 + syst_JES_EtaIntercalibration_Stat83: 4.25683256e-07 + syst_JES_EtaIntercalibration_Stat84: 6.43137829e-09 + syst_JES_EtaIntercalibration_Stat85: 3.24469688e-14 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 6.064538105247587e-13 + syst_JES_EtaIntercalibration_Stat89: 6.06453811e-13 syst_JES_EtaIntercalibration_Stat9: 0.0 - syst_JES_EtaIntercalibration_Stat90: 9.764988312845029e-06 - syst_JES_EtaIntercalibration_Stat91: 1.0748214305176465e-05 - syst_JES_EtaIntercalibration_Stat92: 1.9308543264575917e-07 - syst_JES_EtaIntercalibration_Stat93: 3.424329469878195e-08 + syst_JES_EtaIntercalibration_Stat90: 9.76498831e-06 + syst_JES_EtaIntercalibration_Stat91: 1.07482143e-05 + syst_JES_EtaIntercalibration_Stat92: 1.93085433e-07 + syst_JES_EtaIntercalibration_Stat93: 3.42432947e-08 syst_JES_EtaIntercalibration_Stat94: 0.0 syst_JES_EtaIntercalibration_Stat95: 0.0 - syst_JES_EtaIntercalibration_Stat96: 3.620852213222738e-10 - syst_JES_EtaIntercalibration_Stat97: 4.0045014670992444e-14 - syst_JES_EtaIntercalibration_Stat98: 1.3899707730740241e-15 - syst_JES_EtaIntercalibration_Stat99: 1.3899707730740241e-15 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.005449969976981525 - syst_JES_Flavour_Comp: 0.01636512373922055 - syst_JES_Gjet_Generator: 0.02978097043415476 - syst_JES_Gjet_OOC: 0.02293508829283201 - syst_JES_Gjet_Purity: 0.007035340130370386 - syst_JES_Gjet_Stat1: 1.1272177539326995e-05 - syst_JES_Gjet_Stat10: 0.0006822469201103072 - syst_JES_Gjet_Stat11: 0.0009652633565509467 - syst_JES_Gjet_Stat12: 0.0038163987370294526 - syst_JES_Gjet_Stat13: 0.0062953431002607 - syst_JES_Gjet_Stat14: 0.003045344151323459 - syst_JES_Gjet_Stat15: 0.0009678778060788459 - syst_JES_Gjet_Stat2: 8.062701670757747e-07 - syst_JES_Gjet_Stat3: 1.954104470083419e-12 - syst_JES_Gjet_Stat4: 3.254523502605647e-05 - syst_JES_Gjet_Stat5: 4.572614180392658e-05 - syst_JES_Gjet_Stat6: 0.00017804905805704225 - syst_JES_Gjet_Stat7: 0.00023196395129416122 - syst_JES_Gjet_Stat8: 0.000139460426913874 - syst_JES_Gjet_Stat9: 0.00038293833707269374 - syst_JES_Gjet_Veto: 0.01758002275311383 - syst_JES_Gjet_dPhi: 0.001872467890245384 - syst_JES_LArESZee: 0.044227091245072854 - syst_JES_LArEsmear: 0.003740840162316482 - syst_JES_LAr_JVT: 0.004710565013881032 - syst_JES_MJB_Alpha: 0.0002595478135141963 - syst_JES_MJB_Asym: 0.001668518129958437 - syst_JES_MJB_Beta: 1.0017315845574601e-05 - syst_JES_MJB_Stat1: 0.00016082091748277025 - syst_JES_MJB_Stat10: 7.56646395286464e-32 - syst_JES_MJB_Stat11: 2.690740929558251e-06 + syst_JES_EtaIntercalibration_Stat96: 3.62085221e-10 + syst_JES_EtaIntercalibration_Stat97: 4.00450147e-14 + syst_JES_EtaIntercalibration_Stat98: 1.38997077e-15 + syst_JES_EtaIntercalibration_Stat99: 1.38997077e-15 + syst_JES_EtaIntercalibration_TotalStat_MJB: 5.44996998e-03 + syst_JES_Flavour_Comp: 1.63651237e-02 + syst_JES_Gjet_Generator: 2.97809704e-02 + syst_JES_Gjet_OOC: 2.29350883e-02 + syst_JES_Gjet_Purity: 7.03534013e-03 + syst_JES_Gjet_Stat1: 1.12721775e-05 + syst_JES_Gjet_Stat10: 6.82246920e-04 + syst_JES_Gjet_Stat11: 9.65263357e-04 + syst_JES_Gjet_Stat12: 3.81639874e-03 + syst_JES_Gjet_Stat13: 6.29534310e-03 + syst_JES_Gjet_Stat14: 3.04534415e-03 + syst_JES_Gjet_Stat15: 9.67877806e-04 + syst_JES_Gjet_Stat2: 8.06270167e-07 + syst_JES_Gjet_Stat3: 1.95410447e-12 + syst_JES_Gjet_Stat4: 3.25452350e-05 + syst_JES_Gjet_Stat5: 4.57261418e-05 + syst_JES_Gjet_Stat6: 1.78049058e-04 + syst_JES_Gjet_Stat7: 2.31963951e-04 + syst_JES_Gjet_Stat8: 1.39460427e-04 + syst_JES_Gjet_Stat9: 3.82938337e-04 + syst_JES_Gjet_Veto: 1.75800228e-02 + syst_JES_Gjet_dPhi: 1.87246789e-03 + syst_JES_LArESZee: 4.42270912e-02 + syst_JES_LArEsmear: 3.74084016e-03 + syst_JES_LAr_JVT: 4.71056501e-03 + syst_JES_MJB_Alpha: 2.59547814e-04 + syst_JES_MJB_Asym: 1.66851813e-03 + syst_JES_MJB_Beta: 1.00173158e-05 + syst_JES_MJB_Stat1: 1.60820917e-04 + syst_JES_MJB_Stat10: 7.56646395e-32 + syst_JES_MJB_Stat11: 2.69074093e-06 syst_JES_MJB_Stat12: 0.0 syst_JES_MJB_Stat13: 0.0 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 - syst_JES_MJB_Stat16: 8.439417559879354e-12 - syst_JES_MJB_Stat2: 0.00023747227643453457 - syst_JES_MJB_Stat3: 0.0004126536804634123 - syst_JES_MJB_Stat4: 0.00019935904795117778 - syst_JES_MJB_Stat5: 5.7746573924346286e-05 - syst_JES_MJB_Stat6: 2.564917095714727e-19 - syst_JES_MJB_Stat7: 5.7711932908194994e-05 - syst_JES_MJB_Stat8: 3.51606313934828e-22 - syst_JES_MJB_Stat9: 4.150859760271986e-22 - syst_JES_MJB_Threshold: 0.002274936207896828 - syst_JES_Pileup_MuOffset: 0.004315169869194026 - syst_JES_Pileup_NPVOffset: 0.004544624379417952 - syst_JES_Pileup_Pt_term: 0.007497836537962135 - syst_JES_PunchThrough_MC15: 0.001001336061220208 + syst_JES_MJB_Stat16: 8.43941756e-12 + syst_JES_MJB_Stat2: 2.37472276e-04 + syst_JES_MJB_Stat3: 4.12653680e-04 + syst_JES_MJB_Stat4: 1.99359048e-04 + syst_JES_MJB_Stat5: 5.77465739e-05 + syst_JES_MJB_Stat6: 2.56491710e-19 + syst_JES_MJB_Stat7: 5.77119329e-05 + syst_JES_MJB_Stat8: 3.51606314e-22 + syst_JES_MJB_Stat9: 4.15085976e-22 + syst_JES_MJB_Threshold: 2.27493621e-03 + syst_JES_Pileup_MuOffset: 4.31516987e-03 + syst_JES_Pileup_NPVOffset: 4.54462438e-03 + syst_JES_Pileup_Pt_term: 7.49783654e-03 + syst_JES_PunchThrough_MC15: 1.00133606e-03 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.020350122849752038 - syst_JES_Zjet_MuScale: 0.0011512897810716466 - syst_JES_Zjet_MuSmearID: 0.00023188152723966604 - syst_JES_Zjet_MuSmearMS: 0.005713509845095219 - syst_JES_Zjet_OOC: 0.008679732527560973 - syst_JES_Zjet_Stat1: 0.0002867410108682681 - syst_JES_Zjet_Stat10: 0.0006549778374113127 - syst_JES_Zjet_Stat11: 0.000665374616287697 - syst_JES_Zjet_Stat12: 0.004779810116521367 - syst_JES_Zjet_Stat13: 0.00589700423944226 - syst_JES_Zjet_Stat2: 1.0017605053105258e-05 - syst_JES_Zjet_Stat3: 0.00013042342580993647 - syst_JES_Zjet_Stat4: 5.474462233863707e-13 - syst_JES_Zjet_Stat5: 7.719484616864003e-13 - syst_JES_Zjet_Stat6: 0.0001652929072888489 - syst_JES_Zjet_Stat7: 6.649622973334653e-07 - syst_JES_Zjet_Stat8: 7.874981952360272e-05 - syst_JES_Zjet_Stat9: 0.00027688010040448916 - syst_JES_Zjet_Veto: 0.001799881871123769 - syst_JES_Zjet_dPhi: 0.0013905596427338167 - syst_PRW: 2.089e-24 - syst_Unfolding_bias: 4.238e-37 - syst_cleaning: 0.006048321420030519 + syst_JES_Zjet_MC: 2.03501228e-02 + syst_JES_Zjet_MuScale: 1.15128978e-03 + syst_JES_Zjet_MuSmearID: 2.31881527e-04 + syst_JES_Zjet_MuSmearMS: 5.71350985e-03 + syst_JES_Zjet_OOC: 8.67973253e-03 + syst_JES_Zjet_Stat1: 2.86741011e-04 + syst_JES_Zjet_Stat10: 6.54977837e-04 + syst_JES_Zjet_Stat11: 6.65374616e-04 + syst_JES_Zjet_Stat12: 4.77981012e-03 + syst_JES_Zjet_Stat13: 5.89700424e-03 + syst_JES_Zjet_Stat2: 1.00176051e-05 + syst_JES_Zjet_Stat3: 1.30423426e-04 + syst_JES_Zjet_Stat4: 5.47446223e-13 + syst_JES_Zjet_Stat5: 7.71948462e-13 + syst_JES_Zjet_Stat6: 1.65292907e-04 + syst_JES_Zjet_Stat7: 6.64962297e-07 + syst_JES_Zjet_Stat8: 7.87498195e-05 + syst_JES_Zjet_Stat9: 2.76880100e-04 + syst_JES_Zjet_Veto: 1.79988187e-03 + syst_JES_Zjet_dPhi: 1.39055964e-03 + syst_PRW: 2.08900000e-24 + syst_Unfolding_bias: 4.23800000e-37 + syst_cleaning: 6.04832142e-03 syst_lumi: 0.02348 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 0.005682759980854374 - syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0027640361792132897 - syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.001967215544875548 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 0.005011545470211759 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.004194053647725551 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.008718919256421636 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 5.68275998e-03 + syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 2.76403618e-03 + syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.96721554e-03 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 5.01154547e-03 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 4.19405365e-03 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 8.71891926e-03 - stat: 0.005387 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.004107938990540147 - syst_JER_NP1: 0.005238106814489372 - syst_JER_NP2: 0.0010346419961717796 - syst_JER_NP3: 0.00114189914615959 - syst_JER_NP4: 0.0010492947762664217 - syst_JER_NP5: 9.675295838457603e-06 - syst_JER_NP6: 2.2052593384906e-08 - syst_JER_NP7: 8.282163410003452e-13 - syst_JER_NP8: 0.0006384259628179293 - syst_JES_EtaIntercalibration_Modelling: 0.028079264591509515 - syst_JES_EtaIntercalibration_NonClosure: 0.008361179522053093 + syst_JER_NP0: 4.10793899e-03 + syst_JER_NP1: 5.23810681e-03 + syst_JER_NP2: 1.03464200e-03 + syst_JER_NP3: 1.14189915e-03 + syst_JER_NP4: 1.04929478e-03 + syst_JER_NP5: 9.67529584e-06 + syst_JER_NP6: 2.20525934e-08 + syst_JER_NP7: 8.28216341e-13 + syst_JER_NP8: 6.38425963e-04 + syst_JES_EtaIntercalibration_Modelling: 2.80792646e-02 + syst_JES_EtaIntercalibration_NonClosure: 8.36117952e-03 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 2.285441040587134e-16 + syst_JES_EtaIntercalibration_Stat100: 2.28544104e-16 syst_JES_EtaIntercalibration_Stat101: 0.0 - syst_JES_EtaIntercalibration_Stat102: 4.599886750779849e-11 - syst_JES_EtaIntercalibration_Stat103: 3.0915862298017824e-07 - syst_JES_EtaIntercalibration_Stat104: 1.5923687167471606e-05 - syst_JES_EtaIntercalibration_Stat105: 4.0930549715340996e-09 - syst_JES_EtaIntercalibration_Stat106: 4.657337594323606e-13 + syst_JES_EtaIntercalibration_Stat102: 4.59988675e-11 + syst_JES_EtaIntercalibration_Stat103: 3.09158623e-07 + syst_JES_EtaIntercalibration_Stat104: 1.59236872e-05 + syst_JES_EtaIntercalibration_Stat105: 4.09305497e-09 + syst_JES_EtaIntercalibration_Stat106: 4.65733759e-13 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 3.981504615092139e-11 + syst_JES_EtaIntercalibration_Stat109: 3.98150462e-11 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 3.457493709321826e-06 - syst_JES_EtaIntercalibration_Stat111: 3.174260386294735e-06 - syst_JES_EtaIntercalibration_Stat112: 2.5318168871385623e-06 - syst_JES_EtaIntercalibration_Stat113: 1.1106258190767943e-08 - syst_JES_EtaIntercalibration_Stat114: 2.472502527804572e-12 + syst_JES_EtaIntercalibration_Stat110: 3.45749371e-06 + syst_JES_EtaIntercalibration_Stat111: 3.17426039e-06 + syst_JES_EtaIntercalibration_Stat112: 2.53181689e-06 + syst_JES_EtaIntercalibration_Stat113: 1.11062582e-08 + syst_JES_EtaIntercalibration_Stat114: 2.47250253e-12 syst_JES_EtaIntercalibration_Stat115: 0.0 - syst_JES_EtaIntercalibration_Stat116: 3.6840720676990024e-11 - syst_JES_EtaIntercalibration_Stat117: 3.939549561815411e-11 - syst_JES_EtaIntercalibration_Stat118: 2.285441040587134e-16 - syst_JES_EtaIntercalibration_Stat119: 2.285441040587134e-16 + syst_JES_EtaIntercalibration_Stat116: 3.68407207e-11 + syst_JES_EtaIntercalibration_Stat117: 3.93954956e-11 + syst_JES_EtaIntercalibration_Stat118: 2.28544104e-16 + syst_JES_EtaIntercalibration_Stat119: 2.28544104e-16 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 2.285441040587134e-16 - syst_JES_EtaIntercalibration_Stat121: 5.24638189612613e-14 - syst_JES_EtaIntercalibration_Stat122: 3.0424134642582685e-07 - syst_JES_EtaIntercalibration_Stat123: 1.6769240179790497e-05 - syst_JES_EtaIntercalibration_Stat124: 4.748547641911157e-06 - syst_JES_EtaIntercalibration_Stat125: 1.092975498353005e-06 - syst_JES_EtaIntercalibration_Stat126: 5.88280161864226e-10 + syst_JES_EtaIntercalibration_Stat120: 2.28544104e-16 + syst_JES_EtaIntercalibration_Stat121: 5.24638190e-14 + syst_JES_EtaIntercalibration_Stat122: 3.04241346e-07 + syst_JES_EtaIntercalibration_Stat123: 1.67692402e-05 + syst_JES_EtaIntercalibration_Stat124: 4.74854764e-06 + syst_JES_EtaIntercalibration_Stat125: 1.09297550e-06 + syst_JES_EtaIntercalibration_Stat126: 5.88280162e-10 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 7.195061292303215e-07 - syst_JES_EtaIntercalibration_Stat129: 3.1300488814074447e-06 + syst_JES_EtaIntercalibration_Stat128: 7.19506129e-07 + syst_JES_EtaIntercalibration_Stat129: 3.13004888e-06 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 7.376077730576054e-05 - syst_JES_EtaIntercalibration_Stat131: 7.660080292007388e-06 - syst_JES_EtaIntercalibration_Stat132: 2.218547639785993e-06 - syst_JES_EtaIntercalibration_Stat133: 4.6141354333361316e-09 + syst_JES_EtaIntercalibration_Stat130: 7.37607773e-05 + syst_JES_EtaIntercalibration_Stat131: 7.66008029e-06 + syst_JES_EtaIntercalibration_Stat132: 2.21854764e-06 + syst_JES_EtaIntercalibration_Stat133: 4.61413543e-09 syst_JES_EtaIntercalibration_Stat134: 0.0 - syst_JES_EtaIntercalibration_Stat135: 3.6840720676990024e-11 - syst_JES_EtaIntercalibration_Stat136: 3.6840720676990024e-11 - syst_JES_EtaIntercalibration_Stat137: 2.285441040587134e-16 - syst_JES_EtaIntercalibration_Stat138: 2.285441040587134e-16 - syst_JES_EtaIntercalibration_Stat139: 2.285441040587134e-16 + syst_JES_EtaIntercalibration_Stat135: 3.68407207e-11 + syst_JES_EtaIntercalibration_Stat136: 3.68407207e-11 + syst_JES_EtaIntercalibration_Stat137: 2.28544104e-16 + syst_JES_EtaIntercalibration_Stat138: 2.28544104e-16 + syst_JES_EtaIntercalibration_Stat139: 2.28544104e-16 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 3.7334355157147146e-14 - syst_JES_EtaIntercalibration_Stat141: 1.5493637750702704e-05 - syst_JES_EtaIntercalibration_Stat142: 2.0915306852876915e-05 - syst_JES_EtaIntercalibration_Stat143: 6.2244459608868e-05 - syst_JES_EtaIntercalibration_Stat144: 4.036138291424118e-05 - syst_JES_EtaIntercalibration_Stat145: 1.2821925415911605e-09 - syst_JES_EtaIntercalibration_Stat146: 2.603575946174799e-06 - syst_JES_EtaIntercalibration_Stat147: 2.670844576159384e-06 - syst_JES_EtaIntercalibration_Stat148: 8.655082614857006e-05 - syst_JES_EtaIntercalibration_Stat149: 1.0048216820909072e-05 + syst_JES_EtaIntercalibration_Stat140: 3.73343552e-14 + syst_JES_EtaIntercalibration_Stat141: 1.54936378e-05 + syst_JES_EtaIntercalibration_Stat142: 2.09153069e-05 + syst_JES_EtaIntercalibration_Stat143: 6.22444596e-05 + syst_JES_EtaIntercalibration_Stat144: 4.03613829e-05 + syst_JES_EtaIntercalibration_Stat145: 1.28219254e-09 + syst_JES_EtaIntercalibration_Stat146: 2.60357595e-06 + syst_JES_EtaIntercalibration_Stat147: 2.67084458e-06 + syst_JES_EtaIntercalibration_Stat148: 8.65508261e-05 + syst_JES_EtaIntercalibration_Stat149: 1.00482168e-05 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 2.425959902198509e-06 - syst_JES_EtaIntercalibration_Stat151: 2.067120206368154e-08 + syst_JES_EtaIntercalibration_Stat150: 2.42595990e-06 + syst_JES_EtaIntercalibration_Stat151: 2.06712021e-08 syst_JES_EtaIntercalibration_Stat152: 0.0 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 2.285441040587134e-16 + syst_JES_EtaIntercalibration_Stat156: 2.28544104e-16 syst_JES_EtaIntercalibration_Stat157: 0.0 syst_JES_EtaIntercalibration_Stat158: 0.0 - syst_JES_EtaIntercalibration_Stat159: 1.586150359541932e-05 - syst_JES_EtaIntercalibration_Stat16: 2.886462670168345e-07 - syst_JES_EtaIntercalibration_Stat160: 1.380255826830664e-05 - syst_JES_EtaIntercalibration_Stat161: 8.730260978344231e-05 - syst_JES_EtaIntercalibration_Stat162: 2.145001864801054e-05 - syst_JES_EtaIntercalibration_Stat163: 2.762913365905634e-07 - syst_JES_EtaIntercalibration_Stat164: 4.152212994295933e-06 - syst_JES_EtaIntercalibration_Stat165: 9.83954525117904e-05 - syst_JES_EtaIntercalibration_Stat166: 0.0002337500106951869 - syst_JES_EtaIntercalibration_Stat167: 9.33254354396485e-05 - syst_JES_EtaIntercalibration_Stat168: 2.199697753669808e-05 - syst_JES_EtaIntercalibration_Stat169: 2.067120206368154e-08 - syst_JES_EtaIntercalibration_Stat17: 4.2674471443869144e-13 + syst_JES_EtaIntercalibration_Stat159: 1.58615036e-05 + syst_JES_EtaIntercalibration_Stat16: 2.88646267e-07 + syst_JES_EtaIntercalibration_Stat160: 1.38025583e-05 + syst_JES_EtaIntercalibration_Stat161: 8.73026098e-05 + syst_JES_EtaIntercalibration_Stat162: 2.14500186e-05 + syst_JES_EtaIntercalibration_Stat163: 2.76291337e-07 + syst_JES_EtaIntercalibration_Stat164: 4.15221299e-06 + syst_JES_EtaIntercalibration_Stat165: 9.83954525e-05 + syst_JES_EtaIntercalibration_Stat166: 2.33750011e-04 + syst_JES_EtaIntercalibration_Stat167: 9.33254354e-05 + syst_JES_EtaIntercalibration_Stat168: 2.19969775e-05 + syst_JES_EtaIntercalibration_Stat169: 2.06712021e-08 + syst_JES_EtaIntercalibration_Stat17: 4.26744714e-13 syst_JES_EtaIntercalibration_Stat170: 0.0 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 syst_JES_EtaIntercalibration_Stat175: 0.0 - syst_JES_EtaIntercalibration_Stat176: 3.064863903993128e-09 - syst_JES_EtaIntercalibration_Stat177: 1.9722149155391253e-05 - syst_JES_EtaIntercalibration_Stat178: 7.393014067347635e-05 - syst_JES_EtaIntercalibration_Stat179: 0.0002459162662371076 - syst_JES_EtaIntercalibration_Stat18: 8.944862254389388e-17 - syst_JES_EtaIntercalibration_Stat180: 0.00015461336835797867 - syst_JES_EtaIntercalibration_Stat181: 8.996298280404001e-06 - syst_JES_EtaIntercalibration_Stat182: 0.0007288366535102361 - syst_JES_EtaIntercalibration_Stat183: 0.0013112000076266016 - syst_JES_EtaIntercalibration_Stat184: 0.00046286357331291476 - syst_JES_EtaIntercalibration_Stat185: 3.378688135948626e-05 - syst_JES_EtaIntercalibration_Stat186: 2.067202638833455e-08 + syst_JES_EtaIntercalibration_Stat176: 3.06486390e-09 + syst_JES_EtaIntercalibration_Stat177: 1.97221492e-05 + syst_JES_EtaIntercalibration_Stat178: 7.39301407e-05 + syst_JES_EtaIntercalibration_Stat179: 2.45916266e-04 + syst_JES_EtaIntercalibration_Stat18: 8.94486225e-17 + syst_JES_EtaIntercalibration_Stat180: 1.54613368e-04 + syst_JES_EtaIntercalibration_Stat181: 8.99629828e-06 + syst_JES_EtaIntercalibration_Stat182: 7.28836654e-04 + syst_JES_EtaIntercalibration_Stat183: 1.31120001e-03 + syst_JES_EtaIntercalibration_Stat184: 4.62863573e-04 + syst_JES_EtaIntercalibration_Stat185: 3.37868814e-05 + syst_JES_EtaIntercalibration_Stat186: 2.06720264e-08 syst_JES_EtaIntercalibration_Stat187: 0.0 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 @@ -50051,31 +50051,31 @@ bins: syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 syst_JES_EtaIntercalibration_Stat192: 0.0 - syst_JES_EtaIntercalibration_Stat193: 3.267433726213892e-07 - syst_JES_EtaIntercalibration_Stat194: 5.212041730454583e-05 - syst_JES_EtaIntercalibration_Stat195: 0.0005155196674230771 - syst_JES_EtaIntercalibration_Stat196: 0.0009999010000995101 - syst_JES_EtaIntercalibration_Stat197: 0.0005867296736999076 - syst_JES_EtaIntercalibration_Stat198: 0.0019055295195824179 - syst_JES_EtaIntercalibration_Stat199: 0.000800786432202744 + syst_JES_EtaIntercalibration_Stat193: 3.26743373e-07 + syst_JES_EtaIntercalibration_Stat194: 5.21204173e-05 + syst_JES_EtaIntercalibration_Stat195: 5.15519667e-04 + syst_JES_EtaIntercalibration_Stat196: 9.99901000e-04 + syst_JES_EtaIntercalibration_Stat197: 5.86729674e-04 + syst_JES_EtaIntercalibration_Stat198: 1.90552952e-03 + syst_JES_EtaIntercalibration_Stat199: 8.00786432e-04 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 3.4878219564650946e-05 - syst_JES_EtaIntercalibration_Stat201: 2.067202638833455e-08 + syst_JES_EtaIntercalibration_Stat200: 3.48782196e-05 + syst_JES_EtaIntercalibration_Stat201: 2.06720264e-08 syst_JES_EtaIntercalibration_Stat202: 0.0 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 syst_JES_EtaIntercalibration_Stat207: 0.0 - syst_JES_EtaIntercalibration_Stat208: 3.236336933942447e-07 - syst_JES_EtaIntercalibration_Stat209: 6.707900416672865e-05 + syst_JES_EtaIntercalibration_Stat208: 3.23633693e-07 + syst_JES_EtaIntercalibration_Stat209: 6.70790042e-05 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 0.0006893658172552508 - syst_JES_EtaIntercalibration_Stat211: 0.0019480513340258774 - syst_JES_EtaIntercalibration_Stat212: 0.0003105898702469222 - syst_JES_EtaIntercalibration_Stat213: 4.654213167729535e-05 - syst_JES_EtaIntercalibration_Stat214: 2.067202638833455e-08 + syst_JES_EtaIntercalibration_Stat210: 6.89365817e-04 + syst_JES_EtaIntercalibration_Stat211: 1.94805133e-03 + syst_JES_EtaIntercalibration_Stat212: 3.10589870e-04 + syst_JES_EtaIntercalibration_Stat213: 4.65421317e-05 + syst_JES_EtaIntercalibration_Stat214: 2.06720264e-08 syst_JES_EtaIntercalibration_Stat215: 0.0 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 @@ -50083,11 +50083,11 @@ bins: syst_JES_EtaIntercalibration_Stat219: 0.0 syst_JES_EtaIntercalibration_Stat22: 0.0 syst_JES_EtaIntercalibration_Stat220: 0.0 - syst_JES_EtaIntercalibration_Stat221: 6.877107731452227e-07 - syst_JES_EtaIntercalibration_Stat222: 2.066185980859419e-05 - syst_JES_EtaIntercalibration_Stat223: 0.0003524584230799428 - syst_JES_EtaIntercalibration_Stat224: 0.00011375744467157962 - syst_JES_EtaIntercalibration_Stat225: 2.2848315211411103e-05 + syst_JES_EtaIntercalibration_Stat221: 6.87710773e-07 + syst_JES_EtaIntercalibration_Stat222: 2.06618598e-05 + syst_JES_EtaIntercalibration_Stat223: 3.52458423e-04 + syst_JES_EtaIntercalibration_Stat224: 1.13757445e-04 + syst_JES_EtaIntercalibration_Stat225: 2.28483152e-05 syst_JES_EtaIntercalibration_Stat226: 0.0 syst_JES_EtaIntercalibration_Stat227: 0.0 syst_JES_EtaIntercalibration_Stat228: 0.0 @@ -50096,296 +50096,296 @@ bins: syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 syst_JES_EtaIntercalibration_Stat232: 0.0 - syst_JES_EtaIntercalibration_Stat233: 6.877107731452227e-07 - syst_JES_EtaIntercalibration_Stat234: 1.1886198666941421e-05 - syst_JES_EtaIntercalibration_Stat235: 0.0001038117348858018 - syst_JES_EtaIntercalibration_Stat236: 2.8115497296108776e-06 + syst_JES_EtaIntercalibration_Stat233: 6.87710773e-07 + syst_JES_EtaIntercalibration_Stat234: 1.18861987e-05 + syst_JES_EtaIntercalibration_Stat235: 1.03811735e-04 + syst_JES_EtaIntercalibration_Stat236: 2.81154973e-06 syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 syst_JES_EtaIntercalibration_Stat239: 0.0 - syst_JES_EtaIntercalibration_Stat24: 3.472761869175599e-16 + syst_JES_EtaIntercalibration_Stat24: 3.47276187e-16 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 syst_JES_EtaIntercalibration_Stat243: 0.0 - syst_JES_EtaIntercalibration_Stat244: 6.877107731452227e-07 - syst_JES_EtaIntercalibration_Stat245: 2.1110449278733978e-07 - syst_JES_EtaIntercalibration_Stat25: 6.89584962133021e-14 - syst_JES_EtaIntercalibration_Stat26: 1.529400758149936e-06 - syst_JES_EtaIntercalibration_Stat27: 4.6011111078653296e-09 - syst_JES_EtaIntercalibration_Stat28: 1.2589108038983541e-14 + syst_JES_EtaIntercalibration_Stat244: 6.87710773e-07 + syst_JES_EtaIntercalibration_Stat245: 2.11104493e-07 + syst_JES_EtaIntercalibration_Stat25: 6.89584962e-14 + syst_JES_EtaIntercalibration_Stat26: 1.52940076e-06 + syst_JES_EtaIntercalibration_Stat27: 4.60111111e-09 + syst_JES_EtaIntercalibration_Stat28: 1.25891080e-14 syst_JES_EtaIntercalibration_Stat29: 0.0 - syst_JES_EtaIntercalibration_Stat3: 3.3071787111524533e-15 + syst_JES_EtaIntercalibration_Stat3: 3.30717871e-15 syst_JES_EtaIntercalibration_Stat30: 0.0 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 4.488609667814745e-14 - syst_JES_EtaIntercalibration_Stat36: 4.488609667814745e-14 - syst_JES_EtaIntercalibration_Stat37: 5.909335731298401e-14 - syst_JES_EtaIntercalibration_Stat38: 2.8881926270004026e-07 - syst_JES_EtaIntercalibration_Stat39: 2.898584241339522e-07 - syst_JES_EtaIntercalibration_Stat4: 1.976269990217294e-08 - syst_JES_EtaIntercalibration_Stat40: 5.829329866073801e-13 + syst_JES_EtaIntercalibration_Stat35: 4.48860967e-14 + syst_JES_EtaIntercalibration_Stat36: 4.48860967e-14 + syst_JES_EtaIntercalibration_Stat37: 5.90933573e-14 + syst_JES_EtaIntercalibration_Stat38: 2.88819263e-07 + syst_JES_EtaIntercalibration_Stat39: 2.89858424e-07 + syst_JES_EtaIntercalibration_Stat4: 1.97626999e-08 + syst_JES_EtaIntercalibration_Stat40: 5.82932987e-13 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 syst_JES_EtaIntercalibration_Stat44: 0.0 syst_JES_EtaIntercalibration_Stat45: 0.0 - syst_JES_EtaIntercalibration_Stat46: 4.397756473475993e-15 - syst_JES_EtaIntercalibration_Stat47: 1.038895599904052e-12 - syst_JES_EtaIntercalibration_Stat48: 1.8195138048759284e-06 - syst_JES_EtaIntercalibration_Stat49: 4.593319269761574e-09 - syst_JES_EtaIntercalibration_Stat5: 1.976269973597111e-08 - syst_JES_EtaIntercalibration_Stat50: 5.717847912457973e-14 + syst_JES_EtaIntercalibration_Stat46: 4.39775647e-15 + syst_JES_EtaIntercalibration_Stat47: 1.03889560e-12 + syst_JES_EtaIntercalibration_Stat48: 1.81951380e-06 + syst_JES_EtaIntercalibration_Stat49: 4.59331927e-09 + syst_JES_EtaIntercalibration_Stat5: 1.97626997e-08 + syst_JES_EtaIntercalibration_Stat50: 5.71784791e-14 syst_JES_EtaIntercalibration_Stat51: 0.0 syst_JES_EtaIntercalibration_Stat52: 0.0 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 2.285441040587134e-16 - syst_JES_EtaIntercalibration_Stat57: 4.488609667814745e-14 - syst_JES_EtaIntercalibration_Stat58: 4.488609667814745e-14 - syst_JES_EtaIntercalibration_Stat59: 7.123069435819084e-14 + syst_JES_EtaIntercalibration_Stat56: 2.28544104e-16 + syst_JES_EtaIntercalibration_Stat57: 4.48860967e-14 + syst_JES_EtaIntercalibration_Stat58: 4.48860967e-14 + syst_JES_EtaIntercalibration_Stat59: 7.12306944e-14 syst_JES_EtaIntercalibration_Stat6: 0.0 - syst_JES_EtaIntercalibration_Stat60: 2.8959929620598183e-07 - syst_JES_EtaIntercalibration_Stat61: 2.897164770650782e-07 - syst_JES_EtaIntercalibration_Stat62: 2.5706553308446466e-12 - syst_JES_EtaIntercalibration_Stat63: 9.188439851264197e-16 + syst_JES_EtaIntercalibration_Stat60: 2.89599296e-07 + syst_JES_EtaIntercalibration_Stat61: 2.89716477e-07 + syst_JES_EtaIntercalibration_Stat62: 2.57065533e-12 + syst_JES_EtaIntercalibration_Stat63: 9.18843985e-16 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 4.140674582721999e-14 - syst_JES_EtaIntercalibration_Stat69: 2.6234961406512493e-06 + syst_JES_EtaIntercalibration_Stat68: 4.14067458e-14 + syst_JES_EtaIntercalibration_Stat69: 2.62349614e-06 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 2.934028556013046e-06 - syst_JES_EtaIntercalibration_Stat71: 1.6098873949244673e-06 - syst_JES_EtaIntercalibration_Stat72: 4.588988137672299e-09 + syst_JES_EtaIntercalibration_Stat70: 2.93402856e-06 + syst_JES_EtaIntercalibration_Stat71: 1.60988739e-06 + syst_JES_EtaIntercalibration_Stat72: 4.58898814e-09 syst_JES_EtaIntercalibration_Stat73: 0.0 syst_JES_EtaIntercalibration_Stat74: 0.0 syst_JES_EtaIntercalibration_Stat75: 0.0 - syst_JES_EtaIntercalibration_Stat76: 5.018617214930822e-15 - syst_JES_EtaIntercalibration_Stat77: 2.285441040587134e-16 - syst_JES_EtaIntercalibration_Stat78: 2.285441040587134e-16 - syst_JES_EtaIntercalibration_Stat79: 4.488609667814745e-14 + syst_JES_EtaIntercalibration_Stat76: 5.01861721e-15 + syst_JES_EtaIntercalibration_Stat77: 2.28544104e-16 + syst_JES_EtaIntercalibration_Stat78: 2.28544104e-16 + syst_JES_EtaIntercalibration_Stat79: 4.48860967e-14 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 4.4444423722217396e-14 - syst_JES_EtaIntercalibration_Stat81: 5.135727285399801e-13 - syst_JES_EtaIntercalibration_Stat82: 3.0760906288339424e-07 - syst_JES_EtaIntercalibration_Stat83: 4.5505655165045146e-07 - syst_JES_EtaIntercalibration_Stat84: 8.522799232059852e-10 - syst_JES_EtaIntercalibration_Stat85: 3.682390553363399e-15 + syst_JES_EtaIntercalibration_Stat80: 4.44444237e-14 + syst_JES_EtaIntercalibration_Stat81: 5.13572729e-13 + syst_JES_EtaIntercalibration_Stat82: 3.07609063e-07 + syst_JES_EtaIntercalibration_Stat83: 4.55056552e-07 + syst_JES_EtaIntercalibration_Stat84: 8.52279923e-10 + syst_JES_EtaIntercalibration_Stat85: 3.68239055e-15 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 6.563387768523203e-14 + syst_JES_EtaIntercalibration_Stat89: 6.56338777e-14 syst_JES_EtaIntercalibration_Stat9: 0.0 - syst_JES_EtaIntercalibration_Stat90: 2.991343087561171e-06 - syst_JES_EtaIntercalibration_Stat91: 3.0804939031752685e-06 - syst_JES_EtaIntercalibration_Stat92: 2.340773185829845e-08 - syst_JES_EtaIntercalibration_Stat93: 4.740504484437018e-09 + syst_JES_EtaIntercalibration_Stat90: 2.99134309e-06 + syst_JES_EtaIntercalibration_Stat91: 3.08049390e-06 + syst_JES_EtaIntercalibration_Stat92: 2.34077319e-08 + syst_JES_EtaIntercalibration_Stat93: 4.74050448e-09 syst_JES_EtaIntercalibration_Stat94: 0.0 syst_JES_EtaIntercalibration_Stat95: 0.0 - syst_JES_EtaIntercalibration_Stat96: 3.939549561815411e-11 - syst_JES_EtaIntercalibration_Stat97: 5.018617214930822e-15 - syst_JES_EtaIntercalibration_Stat98: 2.285441040587134e-16 - syst_JES_EtaIntercalibration_Stat99: 2.285441040587134e-16 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0035750044755216742 - syst_JES_Flavour_Comp: 0.009990090089683875 - syst_JES_Gjet_Generator: 0.01689191818592548 - syst_JES_Gjet_OOC: 0.013263694847213578 - syst_JES_Gjet_Purity: 0.0038644439121301786 - syst_JES_Gjet_Stat1: 6.077407025940033e-06 - syst_JES_Gjet_Stat10: 0.00035327726717126876 - syst_JES_Gjet_Stat11: 0.0004681232636816932 - syst_JES_Gjet_Stat12: 0.0019199845702505007 - syst_JES_Gjet_Stat13: 0.003898606770373232 - syst_JES_Gjet_Stat14: 0.003232289088246904 - syst_JES_Gjet_Stat15: 0.0005341606008495947 - syst_JES_Gjet_Stat2: 4.497339467993783e-06 - syst_JES_Gjet_Stat3: 2.1168808720256393e-10 - syst_JES_Gjet_Stat4: 1.7545674724926625e-05 - syst_JES_Gjet_Stat5: 2.4655743306537953e-05 - syst_JES_Gjet_Stat6: 9.8083825511651e-05 - syst_JES_Gjet_Stat7: 0.00011247311545431648 - syst_JES_Gjet_Stat8: 7.875620124274342e-05 - syst_JES_Gjet_Stat9: 0.00020061452788868508 - syst_JES_Gjet_Veto: 0.010846126220914082 - syst_JES_Gjet_dPhi: 0.0011555017990033593 - syst_JES_LArESZee: 0.025218760873603606 - syst_JES_LArEsmear: 0.002107094385641042 - syst_JES_LAr_JVT: 0.002583303505204141 - syst_JES_MJB_Alpha: 0.00014185496113989105 - syst_JES_MJB_Asym: 0.0011315570809729398 - syst_JES_MJB_Beta: 2.6994011835960952e-05 - syst_JES_MJB_Stat1: 6.314191218992343e-05 - syst_JES_MJB_Stat10: 1.3102964359258558e-25 - syst_JES_MJB_Stat11: 1.965011641186891e-06 + syst_JES_EtaIntercalibration_Stat96: 3.93954956e-11 + syst_JES_EtaIntercalibration_Stat97: 5.01861721e-15 + syst_JES_EtaIntercalibration_Stat98: 2.28544104e-16 + syst_JES_EtaIntercalibration_Stat99: 2.28544104e-16 + syst_JES_EtaIntercalibration_TotalStat_MJB: 3.57500448e-03 + syst_JES_Flavour_Comp: 9.99009009e-03 + syst_JES_Gjet_Generator: 1.68919182e-02 + syst_JES_Gjet_OOC: 1.32636948e-02 + syst_JES_Gjet_Purity: 3.86444391e-03 + syst_JES_Gjet_Stat1: 6.07740703e-06 + syst_JES_Gjet_Stat10: 3.53277267e-04 + syst_JES_Gjet_Stat11: 4.68123264e-04 + syst_JES_Gjet_Stat12: 1.91998457e-03 + syst_JES_Gjet_Stat13: 3.89860677e-03 + syst_JES_Gjet_Stat14: 3.23228909e-03 + syst_JES_Gjet_Stat15: 5.34160601e-04 + syst_JES_Gjet_Stat2: 4.49733947e-06 + syst_JES_Gjet_Stat3: 2.11688087e-10 + syst_JES_Gjet_Stat4: 1.75456747e-05 + syst_JES_Gjet_Stat5: 2.46557433e-05 + syst_JES_Gjet_Stat6: 9.80838255e-05 + syst_JES_Gjet_Stat7: 1.12473115e-04 + syst_JES_Gjet_Stat8: 7.87562012e-05 + syst_JES_Gjet_Stat9: 2.00614528e-04 + syst_JES_Gjet_Veto: 1.08461262e-02 + syst_JES_Gjet_dPhi: 1.15550180e-03 + syst_JES_LArESZee: 2.52187609e-02 + syst_JES_LArEsmear: 2.10709439e-03 + syst_JES_LAr_JVT: 2.58330351e-03 + syst_JES_MJB_Alpha: 1.41854961e-04 + syst_JES_MJB_Asym: 1.13155708e-03 + syst_JES_MJB_Beta: 2.69940118e-05 + syst_JES_MJB_Stat1: 6.31419122e-05 + syst_JES_MJB_Stat10: 1.31029644e-25 + syst_JES_MJB_Stat11: 1.96501164e-06 syst_JES_MJB_Stat12: 0.0 syst_JES_MJB_Stat13: 0.0 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 - syst_JES_MJB_Stat16: 3.326316973395651e-10 - syst_JES_MJB_Stat2: 0.0001199414289174095 - syst_JES_MJB_Stat3: 0.00020522899405298463 - syst_JES_MJB_Stat4: 0.00012245599209511964 - syst_JES_MJB_Stat5: 3.122887606022529e-05 - syst_JES_MJB_Stat6: 7.256580376975094e-16 - syst_JES_MJB_Stat7: 5.5486247620466887e-05 - syst_JES_MJB_Stat8: 6.562740507013375e-18 - syst_JES_MJB_Stat9: 7.747463250679716e-18 - syst_JES_MJB_Threshold: 0.0014200450697072963 - syst_JES_Pileup_MuOffset: 0.0028362910199766175 - syst_JES_Pileup_NPVOffset: 0.0027377894367536736 - syst_JES_Pileup_Pt_term: 0.0038113214243881348 - syst_JES_PunchThrough_MC15: 0.0007208865791509785 + syst_JES_MJB_Stat16: 3.32631697e-10 + syst_JES_MJB_Stat2: 1.19941429e-04 + syst_JES_MJB_Stat3: 2.05228994e-04 + syst_JES_MJB_Stat4: 1.22455992e-04 + syst_JES_MJB_Stat5: 3.12288761e-05 + syst_JES_MJB_Stat6: 7.25658038e-16 + syst_JES_MJB_Stat7: 5.54862476e-05 + syst_JES_MJB_Stat8: 6.56274051e-18 + syst_JES_MJB_Stat9: 7.74746325e-18 + syst_JES_MJB_Threshold: 1.42004507e-03 + syst_JES_Pileup_MuOffset: 2.83629102e-03 + syst_JES_Pileup_NPVOffset: 2.73778944e-03 + syst_JES_Pileup_Pt_term: 3.81132142e-03 + syst_JES_PunchThrough_MC15: 7.20886579e-04 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.010412744919088338 - syst_JES_Zjet_MuScale: 0.000606712607005986 - syst_JES_Zjet_MuSmearID: 0.00013027543762352133 - syst_JES_Zjet_MuSmearMS: 0.003064787268310804 - syst_JES_Zjet_OOC: 0.00478200823399542 - syst_JES_Zjet_Stat1: 0.00015917546917474385 - syst_JES_Zjet_Stat10: 0.0003329002553318336 - syst_JES_Zjet_Stat11: 0.0003599144481678945 - syst_JES_Zjet_Stat12: 0.0022398256628586074 - syst_JES_Zjet_Stat13: 0.003249330238679965 - syst_JES_Zjet_Stat2: 5.26473558215415e-06 - syst_JES_Zjet_Stat3: 7.038188456556133e-05 - syst_JES_Zjet_Stat4: 6.84584623841348e-14 - syst_JES_Zjet_Stat5: 9.699329603122063e-14 - syst_JES_Zjet_Stat6: 9.121855261266756e-05 - syst_JES_Zjet_Stat7: 8.193237765377007e-08 - syst_JES_Zjet_Stat8: 1.96033485659976e-05 - syst_JES_Zjet_Stat9: 0.00015446043789592206 - syst_JES_Zjet_Veto: 0.001026756858998273 - syst_JES_Zjet_dPhi: 0.0007709998832684736 - syst_PRW: 3.245e-19 - syst_Unfolding_bias: 1.747e-29 - syst_cleaning: 0.003346841775465342 + syst_JES_Zjet_MC: 1.04127449e-02 + syst_JES_Zjet_MuScale: 6.06712607e-04 + syst_JES_Zjet_MuSmearID: 1.30275438e-04 + syst_JES_Zjet_MuSmearMS: 3.06478727e-03 + syst_JES_Zjet_OOC: 4.78200823e-03 + syst_JES_Zjet_Stat1: 1.59175469e-04 + syst_JES_Zjet_Stat10: 3.32900255e-04 + syst_JES_Zjet_Stat11: 3.59914448e-04 + syst_JES_Zjet_Stat12: 2.23982566e-03 + syst_JES_Zjet_Stat13: 3.24933024e-03 + syst_JES_Zjet_Stat2: 5.26473558e-06 + syst_JES_Zjet_Stat3: 7.03818846e-05 + syst_JES_Zjet_Stat4: 6.84584624e-14 + syst_JES_Zjet_Stat5: 9.69932960e-14 + syst_JES_Zjet_Stat6: 9.12185526e-05 + syst_JES_Zjet_Stat7: 8.19323777e-08 + syst_JES_Zjet_Stat8: 1.96033486e-05 + syst_JES_Zjet_Stat9: 1.54460438e-04 + syst_JES_Zjet_Veto: 1.02675686e-03 + syst_JES_Zjet_dPhi: 7.70999883e-04 + syst_PRW: 3.24500000e-19 + syst_Unfolding_bias: 1.74700000e-29 + syst_cleaning: 3.34684178e-03 syst_lumi: 0.012661 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 0.002371187255363861 - syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0015214745314989669 - syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0011078808284287621 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 0.0020914288775858484 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.002359526223630498 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.004989024052858434 -- stat: 0.0031704 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 2.37118726e-03 + syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.52147453e-03 + syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.10788083e-03 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 2.09142888e-03 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 2.35952622e-03 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 4.98902405e-03 +- stat: 3.17040000e-03 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.0022592131373555704 - syst_JER_NP1: 0.003064019255814167 - syst_JER_NP2: 0.0005862127544199771 - syst_JER_NP3: 0.0005669105072231419 - syst_JER_NP4: 0.0005088922552957551 - syst_JER_NP5: 1.3764189718352475e-06 - syst_JER_NP6: 2.4096429196044796e-09 - syst_JER_NP7: 1.1178379220620492e-13 - syst_JER_NP8: 0.0003293515295243063 - syst_JES_EtaIntercalibration_Modelling: 0.016017118186490355 - syst_JES_EtaIntercalibration_NonClosure: 0.007199313213772547 + syst_JER_NP0: 2.25921314e-03 + syst_JER_NP1: 3.06401926e-03 + syst_JER_NP2: 5.86212754e-04 + syst_JER_NP3: 5.66910507e-04 + syst_JER_NP4: 5.08892255e-04 + syst_JER_NP5: 1.37641897e-06 + syst_JER_NP6: 2.40964292e-09 + syst_JER_NP7: 1.11783792e-13 + syst_JER_NP8: 3.29351530e-04 + syst_JES_EtaIntercalibration_Modelling: 1.60171182e-02 + syst_JES_EtaIntercalibration_NonClosure: 7.19931321e-03 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 3.970726476351652e-17 + syst_JES_EtaIntercalibration_Stat100: 3.97072648e-17 syst_JES_EtaIntercalibration_Stat101: 0.0 - syst_JES_EtaIntercalibration_Stat102: 5.024319512879331e-12 - syst_JES_EtaIntercalibration_Stat103: 8.898832431059425e-07 - syst_JES_EtaIntercalibration_Stat104: 8.121931394736106e-06 - syst_JES_EtaIntercalibration_Stat105: 5.386999419899728e-10 - syst_JES_EtaIntercalibration_Stat106: 5.2577047539777276e-14 + syst_JES_EtaIntercalibration_Stat102: 5.02431951e-12 + syst_JES_EtaIntercalibration_Stat103: 8.89883243e-07 + syst_JES_EtaIntercalibration_Stat104: 8.12193139e-06 + syst_JES_EtaIntercalibration_Stat105: 5.38699942e-10 + syst_JES_EtaIntercalibration_Stat106: 5.25770475e-14 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 4.331473738809921e-12 + syst_JES_EtaIntercalibration_Stat109: 4.33147374e-12 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 1.4166843923400863e-06 - syst_JES_EtaIntercalibration_Stat111: 1.4703425204692952e-06 - syst_JES_EtaIntercalibration_Stat112: 2.69835313293127e-06 - syst_JES_EtaIntercalibration_Stat113: 1.4139668198016528e-09 - syst_JES_EtaIntercalibration_Stat114: 2.760022961861006e-13 + syst_JES_EtaIntercalibration_Stat110: 1.41668439e-06 + syst_JES_EtaIntercalibration_Stat111: 1.47034252e-06 + syst_JES_EtaIntercalibration_Stat112: 2.69835313e-06 + syst_JES_EtaIntercalibration_Stat113: 1.41396682e-09 + syst_JES_EtaIntercalibration_Stat114: 2.76002296e-13 syst_JES_EtaIntercalibration_Stat115: 0.0 - syst_JES_EtaIntercalibration_Stat116: 3.962932247717591e-12 - syst_JES_EtaIntercalibration_Stat117: 4.258246910408085e-12 - syst_JES_EtaIntercalibration_Stat118: 3.970726476351652e-17 - syst_JES_EtaIntercalibration_Stat119: 3.970726476351652e-17 + syst_JES_EtaIntercalibration_Stat116: 3.96293225e-12 + syst_JES_EtaIntercalibration_Stat117: 4.25824691e-12 + syst_JES_EtaIntercalibration_Stat118: 3.97072648e-17 + syst_JES_EtaIntercalibration_Stat119: 3.97072648e-17 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 3.970726476351652e-17 - syst_JES_EtaIntercalibration_Stat121: 6.1773592051944006e-15 - syst_JES_EtaIntercalibration_Stat122: 8.878619039244264e-07 - syst_JES_EtaIntercalibration_Stat123: 8.35288968680899e-06 - syst_JES_EtaIntercalibration_Stat124: 2.631159197008041e-06 - syst_JES_EtaIntercalibration_Stat125: 2.62807860755724e-07 - syst_JES_EtaIntercalibration_Stat126: 7.379731308624995e-11 + syst_JES_EtaIntercalibration_Stat120: 3.97072648e-17 + syst_JES_EtaIntercalibration_Stat121: 6.17735921e-15 + syst_JES_EtaIntercalibration_Stat122: 8.87861904e-07 + syst_JES_EtaIntercalibration_Stat123: 8.35288969e-06 + syst_JES_EtaIntercalibration_Stat124: 2.63115920e-06 + syst_JES_EtaIntercalibration_Stat125: 2.62807861e-07 + syst_JES_EtaIntercalibration_Stat126: 7.37973131e-11 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 1.7482205238470342e-07 - syst_JES_EtaIntercalibration_Stat129: 3.352296497552089e-06 + syst_JES_EtaIntercalibration_Stat128: 1.74822052e-07 + syst_JES_EtaIntercalibration_Stat129: 3.35229650e-06 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 3.420270923114133e-05 - syst_JES_EtaIntercalibration_Stat131: 4.034435152533748e-06 - syst_JES_EtaIntercalibration_Stat132: 2.4720091837764274e-06 - syst_JES_EtaIntercalibration_Stat133: 5.860440663397251e-10 + syst_JES_EtaIntercalibration_Stat130: 3.42027092e-05 + syst_JES_EtaIntercalibration_Stat131: 4.03443515e-06 + syst_JES_EtaIntercalibration_Stat132: 2.47200918e-06 + syst_JES_EtaIntercalibration_Stat133: 5.86044066e-10 syst_JES_EtaIntercalibration_Stat134: 0.0 - syst_JES_EtaIntercalibration_Stat135: 3.962932247717591e-12 - syst_JES_EtaIntercalibration_Stat136: 3.962932247717591e-12 - syst_JES_EtaIntercalibration_Stat137: 3.970726476351652e-17 - syst_JES_EtaIntercalibration_Stat138: 3.970726476351652e-17 - syst_JES_EtaIntercalibration_Stat139: 3.970726476351652e-17 + syst_JES_EtaIntercalibration_Stat135: 3.96293225e-12 + syst_JES_EtaIntercalibration_Stat136: 3.96293225e-12 + syst_JES_EtaIntercalibration_Stat137: 3.97072648e-17 + syst_JES_EtaIntercalibration_Stat138: 3.97072648e-17 + syst_JES_EtaIntercalibration_Stat139: 3.97072648e-17 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 4.18117064947127e-15 - syst_JES_EtaIntercalibration_Stat141: 8.405032716622822e-06 - syst_JES_EtaIntercalibration_Stat142: 9.034264275523493e-06 - syst_JES_EtaIntercalibration_Stat143: 2.7832605196064565e-05 - syst_JES_EtaIntercalibration_Stat144: 1.4257046082551604e-05 - syst_JES_EtaIntercalibration_Stat145: 1.5357135100906678e-10 - syst_JES_EtaIntercalibration_Stat146: 1.5840697806599306e-06 - syst_JES_EtaIntercalibration_Stat147: 3.267485511444542e-06 - syst_JES_EtaIntercalibration_Stat148: 3.951882441002009e-05 - syst_JES_EtaIntercalibration_Stat149: 4.795173073779506e-06 + syst_JES_EtaIntercalibration_Stat140: 4.18117065e-15 + syst_JES_EtaIntercalibration_Stat141: 8.40503272e-06 + syst_JES_EtaIntercalibration_Stat142: 9.03426428e-06 + syst_JES_EtaIntercalibration_Stat143: 2.78326052e-05 + syst_JES_EtaIntercalibration_Stat144: 1.42570461e-05 + syst_JES_EtaIntercalibration_Stat145: 1.53571351e-10 + syst_JES_EtaIntercalibration_Stat146: 1.58406978e-06 + syst_JES_EtaIntercalibration_Stat147: 3.26748551e-06 + syst_JES_EtaIntercalibration_Stat148: 3.95188244e-05 + syst_JES_EtaIntercalibration_Stat149: 4.79517307e-06 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 2.431851233499903e-06 - syst_JES_EtaIntercalibration_Stat151: 3.10460902498574e-09 + syst_JES_EtaIntercalibration_Stat150: 2.43185123e-06 + syst_JES_EtaIntercalibration_Stat151: 3.10460902e-09 syst_JES_EtaIntercalibration_Stat152: 0.0 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 3.970726476351652e-17 + syst_JES_EtaIntercalibration_Stat156: 3.97072648e-17 syst_JES_EtaIntercalibration_Stat157: 0.0 syst_JES_EtaIntercalibration_Stat158: 0.0 - syst_JES_EtaIntercalibration_Stat159: 7.846964827243716e-06 - syst_JES_EtaIntercalibration_Stat16: 8.831727067698384e-07 - syst_JES_EtaIntercalibration_Stat160: 3.774943594464293e-06 - syst_JES_EtaIntercalibration_Stat161: 3.3164254672764766e-05 - syst_JES_EtaIntercalibration_Stat162: 1.4109138058364867e-05 - syst_JES_EtaIntercalibration_Stat163: 4.836117052127151e-08 - syst_JES_EtaIntercalibration_Stat164: 1.1319770080703935e-06 - syst_JES_EtaIntercalibration_Stat165: 5.0519933894948836e-05 - syst_JES_EtaIntercalibration_Stat166: 0.00011281486205283414 - syst_JES_EtaIntercalibration_Stat167: 4.812870557162327e-05 - syst_JES_EtaIntercalibration_Stat168: 9.636178547536362e-06 - syst_JES_EtaIntercalibration_Stat169: 3.10460902498574e-09 - syst_JES_EtaIntercalibration_Stat17: 4.805964865859404e-14 + syst_JES_EtaIntercalibration_Stat159: 7.84696483e-06 + syst_JES_EtaIntercalibration_Stat16: 8.83172707e-07 + syst_JES_EtaIntercalibration_Stat160: 3.77494359e-06 + syst_JES_EtaIntercalibration_Stat161: 3.31642547e-05 + syst_JES_EtaIntercalibration_Stat162: 1.41091381e-05 + syst_JES_EtaIntercalibration_Stat163: 4.83611705e-08 + syst_JES_EtaIntercalibration_Stat164: 1.13197701e-06 + syst_JES_EtaIntercalibration_Stat165: 5.05199339e-05 + syst_JES_EtaIntercalibration_Stat166: 1.12814862e-04 + syst_JES_EtaIntercalibration_Stat167: 4.81287056e-05 + syst_JES_EtaIntercalibration_Stat168: 9.63617855e-06 + syst_JES_EtaIntercalibration_Stat169: 3.10460902e-09 + syst_JES_EtaIntercalibration_Stat17: 4.80596487e-14 syst_JES_EtaIntercalibration_Stat170: 0.0 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 syst_JES_EtaIntercalibration_Stat175: 0.0 - syst_JES_EtaIntercalibration_Stat176: 3.8927841900110514e-10 - syst_JES_EtaIntercalibration_Stat177: 8.474305210529061e-06 - syst_JES_EtaIntercalibration_Stat178: 3.9783944940138854e-05 - syst_JES_EtaIntercalibration_Stat179: 9.294774593824209e-05 - syst_JES_EtaIntercalibration_Stat18: 1.3530460773750464e-17 - syst_JES_EtaIntercalibration_Stat180: 7.357409394617102e-05 - syst_JES_EtaIntercalibration_Stat181: 2.253963133571621e-06 - syst_JES_EtaIntercalibration_Stat182: 0.00032996970694292526 - syst_JES_EtaIntercalibration_Stat183: 0.0006092859509294466 - syst_JES_EtaIntercalibration_Stat184: 0.00020712286208914745 - syst_JES_EtaIntercalibration_Stat185: 2.4190736672329763e-05 - syst_JES_EtaIntercalibration_Stat186: 3.1047010725672124e-09 + syst_JES_EtaIntercalibration_Stat176: 3.89278419e-10 + syst_JES_EtaIntercalibration_Stat177: 8.47430521e-06 + syst_JES_EtaIntercalibration_Stat178: 3.97839449e-05 + syst_JES_EtaIntercalibration_Stat179: 9.29477459e-05 + syst_JES_EtaIntercalibration_Stat18: 1.35304608e-17 + syst_JES_EtaIntercalibration_Stat180: 7.35740939e-05 + syst_JES_EtaIntercalibration_Stat181: 2.25396313e-06 + syst_JES_EtaIntercalibration_Stat182: 3.29969707e-04 + syst_JES_EtaIntercalibration_Stat183: 6.09285951e-04 + syst_JES_EtaIntercalibration_Stat184: 2.07122862e-04 + syst_JES_EtaIntercalibration_Stat185: 2.41907367e-05 + syst_JES_EtaIntercalibration_Stat186: 3.10470107e-09 syst_JES_EtaIntercalibration_Stat187: 0.0 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 @@ -50393,31 +50393,31 @@ bins: syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 syst_JES_EtaIntercalibration_Stat192: 0.0 - syst_JES_EtaIntercalibration_Stat193: 8.97368749566041e-07 - syst_JES_EtaIntercalibration_Stat194: 2.3397397034713073e-05 - syst_JES_EtaIntercalibration_Stat195: 0.0002112004261359337 - syst_JES_EtaIntercalibration_Stat196: 0.0004460547135722254 - syst_JES_EtaIntercalibration_Stat197: 0.00025847404124979364 - syst_JES_EtaIntercalibration_Stat198: 0.0009878589815859346 - syst_JES_EtaIntercalibration_Stat199: 0.0004095238942967797 + syst_JES_EtaIntercalibration_Stat193: 8.97368750e-07 + syst_JES_EtaIntercalibration_Stat194: 2.33973970e-05 + syst_JES_EtaIntercalibration_Stat195: 2.11200426e-04 + syst_JES_EtaIntercalibration_Stat196: 4.46054714e-04 + syst_JES_EtaIntercalibration_Stat197: 2.58474041e-04 + syst_JES_EtaIntercalibration_Stat198: 9.87858982e-04 + syst_JES_EtaIntercalibration_Stat199: 4.09523894e-04 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 2.5759928183129706e-05 - syst_JES_EtaIntercalibration_Stat201: 3.1047010725672124e-09 + syst_JES_EtaIntercalibration_Stat200: 2.57599282e-05 + syst_JES_EtaIntercalibration_Stat201: 3.10470107e-09 syst_JES_EtaIntercalibration_Stat202: 0.0 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 syst_JES_EtaIntercalibration_Stat207: 0.0 - syst_JES_EtaIntercalibration_Stat208: 8.945176395689467e-07 - syst_JES_EtaIntercalibration_Stat209: 3.4593392530221725e-05 + syst_JES_EtaIntercalibration_Stat208: 8.94517640e-07 + syst_JES_EtaIntercalibration_Stat209: 3.45933925e-05 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 0.0003380471084035478 - syst_JES_EtaIntercalibration_Stat211: 0.0010121206845035823 - syst_JES_EtaIntercalibration_Stat212: 0.00021118541616314324 - syst_JES_EtaIntercalibration_Stat213: 3.223348344609995e-05 - syst_JES_EtaIntercalibration_Stat214: 3.1047010725672124e-09 + syst_JES_EtaIntercalibration_Stat210: 3.38047108e-04 + syst_JES_EtaIntercalibration_Stat211: 1.01212068e-03 + syst_JES_EtaIntercalibration_Stat212: 2.11185416e-04 + syst_JES_EtaIntercalibration_Stat213: 3.22334834e-05 + syst_JES_EtaIntercalibration_Stat214: 3.10470107e-09 syst_JES_EtaIntercalibration_Stat215: 0.0 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 @@ -50425,11 +50425,11 @@ bins: syst_JES_EtaIntercalibration_Stat219: 0.0 syst_JES_EtaIntercalibration_Stat22: 0.0 syst_JES_EtaIntercalibration_Stat220: 0.0 - syst_JES_EtaIntercalibration_Stat221: 1.0119506843221165e-06 - syst_JES_EtaIntercalibration_Stat222: 5.380606006761692e-06 - syst_JES_EtaIntercalibration_Stat223: 0.00024200929734206493 - syst_JES_EtaIntercalibration_Stat224: 7.587824062272398e-05 - syst_JES_EtaIntercalibration_Stat225: 3.1505500960149795e-06 + syst_JES_EtaIntercalibration_Stat221: 1.01195068e-06 + syst_JES_EtaIntercalibration_Stat222: 5.38060601e-06 + syst_JES_EtaIntercalibration_Stat223: 2.42009297e-04 + syst_JES_EtaIntercalibration_Stat224: 7.58782406e-05 + syst_JES_EtaIntercalibration_Stat225: 3.15055010e-06 syst_JES_EtaIntercalibration_Stat226: 0.0 syst_JES_EtaIntercalibration_Stat227: 0.0 syst_JES_EtaIntercalibration_Stat228: 0.0 @@ -50438,296 +50438,296 @@ bins: syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 syst_JES_EtaIntercalibration_Stat232: 0.0 - syst_JES_EtaIntercalibration_Stat233: 1.0119506843221165e-06 - syst_JES_EtaIntercalibration_Stat234: 1.323286816982622e-05 - syst_JES_EtaIntercalibration_Stat235: 9.985142062084043e-05 - syst_JES_EtaIntercalibration_Stat236: 5.916285090113559e-06 + syst_JES_EtaIntercalibration_Stat233: 1.01195068e-06 + syst_JES_EtaIntercalibration_Stat234: 1.32328682e-05 + syst_JES_EtaIntercalibration_Stat235: 9.98514206e-05 + syst_JES_EtaIntercalibration_Stat236: 5.91628509e-06 syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 syst_JES_EtaIntercalibration_Stat239: 0.0 - syst_JES_EtaIntercalibration_Stat24: 5.467218374091162e-17 + syst_JES_EtaIntercalibration_Stat24: 5.46721837e-17 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 syst_JES_EtaIntercalibration_Stat243: 0.0 - syst_JES_EtaIntercalibration_Stat244: 1.0119506843221165e-06 - syst_JES_EtaIntercalibration_Stat245: 9.7802440954968e-07 - syst_JES_EtaIntercalibration_Stat25: 8.214466674714799e-15 - syst_JES_EtaIntercalibration_Stat26: 2.692472992726889e-06 - syst_JES_EtaIntercalibration_Stat27: 5.844709212190686e-10 - syst_JES_EtaIntercalibration_Stat28: 1.5802782224342648e-15 + syst_JES_EtaIntercalibration_Stat244: 1.01195068e-06 + syst_JES_EtaIntercalibration_Stat245: 9.78024410e-07 + syst_JES_EtaIntercalibration_Stat25: 8.21446667e-15 + syst_JES_EtaIntercalibration_Stat26: 2.69247299e-06 + syst_JES_EtaIntercalibration_Stat27: 5.84470921e-10 + syst_JES_EtaIntercalibration_Stat28: 1.58027822e-15 syst_JES_EtaIntercalibration_Stat29: 0.0 - syst_JES_EtaIntercalibration_Stat3: 4.154627709855601e-16 + syst_JES_EtaIntercalibration_Stat3: 4.15462771e-16 syst_JES_EtaIntercalibration_Stat30: 0.0 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 5.062784510523828e-15 - syst_JES_EtaIntercalibration_Stat36: 5.062784510523828e-15 - syst_JES_EtaIntercalibration_Stat37: 6.9679925690169186e-15 - syst_JES_EtaIntercalibration_Stat38: 8.83172683084918e-07 - syst_JES_EtaIntercalibration_Stat39: 8.836056885959143e-07 - syst_JES_EtaIntercalibration_Stat4: 2.9973139482650853e-09 - syst_JES_EtaIntercalibration_Stat40: 6.626736574664788e-14 + syst_JES_EtaIntercalibration_Stat35: 5.06278451e-15 + syst_JES_EtaIntercalibration_Stat36: 5.06278451e-15 + syst_JES_EtaIntercalibration_Stat37: 6.96799257e-15 + syst_JES_EtaIntercalibration_Stat38: 8.83172683e-07 + syst_JES_EtaIntercalibration_Stat39: 8.83605689e-07 + syst_JES_EtaIntercalibration_Stat4: 2.99731395e-09 + syst_JES_EtaIntercalibration_Stat40: 6.62673657e-14 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 syst_JES_EtaIntercalibration_Stat44: 0.0 syst_JES_EtaIntercalibration_Stat45: 0.0 - syst_JES_EtaIntercalibration_Stat46: 5.499723265765288e-16 - syst_JES_EtaIntercalibration_Stat47: 1.1637361943327192e-13 - syst_JES_EtaIntercalibration_Stat48: 2.5920146400338505e-06 - syst_JES_EtaIntercalibration_Stat49: 5.830767355122995e-10 - syst_JES_EtaIntercalibration_Stat5: 2.9981799510246142e-09 - syst_JES_EtaIntercalibration_Stat50: 6.720545569371583e-15 + syst_JES_EtaIntercalibration_Stat46: 5.49972327e-16 + syst_JES_EtaIntercalibration_Stat47: 1.16373619e-13 + syst_JES_EtaIntercalibration_Stat48: 2.59201464e-06 + syst_JES_EtaIntercalibration_Stat49: 5.83076736e-10 + syst_JES_EtaIntercalibration_Stat5: 2.99817995e-09 + syst_JES_EtaIntercalibration_Stat50: 6.72054557e-15 syst_JES_EtaIntercalibration_Stat51: 0.0 syst_JES_EtaIntercalibration_Stat52: 0.0 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 3.970726476351652e-17 - syst_JES_EtaIntercalibration_Stat57: 5.062784510523828e-15 - syst_JES_EtaIntercalibration_Stat58: 5.062784510523828e-15 - syst_JES_EtaIntercalibration_Stat59: 8.438419816529632e-15 + syst_JES_EtaIntercalibration_Stat56: 3.97072648e-17 + syst_JES_EtaIntercalibration_Stat57: 5.06278451e-15 + syst_JES_EtaIntercalibration_Stat58: 5.06278451e-15 + syst_JES_EtaIntercalibration_Stat59: 8.43841982e-15 syst_JES_EtaIntercalibration_Stat6: 0.0 - syst_JES_EtaIntercalibration_Stat60: 8.837617106166289e-07 - syst_JES_EtaIntercalibration_Stat61: 8.840778087407636e-07 - syst_JES_EtaIntercalibration_Stat62: 2.822680414074537e-13 - syst_JES_EtaIntercalibration_Stat63: 1.239455477995075e-16 + syst_JES_EtaIntercalibration_Stat60: 8.83761711e-07 + syst_JES_EtaIntercalibration_Stat61: 8.84077809e-07 + syst_JES_EtaIntercalibration_Stat62: 2.82268041e-13 + syst_JES_EtaIntercalibration_Stat63: 1.23945548e-16 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 4.7606380874836516e-15 - syst_JES_EtaIntercalibration_Stat69: 2.3988091203592566e-06 + syst_JES_EtaIntercalibration_Stat68: 4.76063809e-15 + syst_JES_EtaIntercalibration_Stat69: 2.39880912e-06 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 2.360365345041949e-06 - syst_JES_EtaIntercalibration_Stat71: 2.6699622810621906e-06 - syst_JES_EtaIntercalibration_Stat72: 5.827393264612602e-10 + syst_JES_EtaIntercalibration_Stat70: 2.36036535e-06 + syst_JES_EtaIntercalibration_Stat71: 2.66996228e-06 + syst_JES_EtaIntercalibration_Stat72: 5.82739326e-10 syst_JES_EtaIntercalibration_Stat73: 0.0 syst_JES_EtaIntercalibration_Stat74: 0.0 syst_JES_EtaIntercalibration_Stat75: 0.0 - syst_JES_EtaIntercalibration_Stat76: 6.770586606786741e-16 - syst_JES_EtaIntercalibration_Stat77: 3.970726476351652e-17 - syst_JES_EtaIntercalibration_Stat78: 3.970726476351652e-17 - syst_JES_EtaIntercalibration_Stat79: 5.062784510523828e-15 + syst_JES_EtaIntercalibration_Stat76: 6.77058661e-16 + syst_JES_EtaIntercalibration_Stat77: 3.97072648e-17 + syst_JES_EtaIntercalibration_Stat78: 3.97072648e-17 + syst_JES_EtaIntercalibration_Stat79: 5.06278451e-15 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 5.009090935489193e-15 - syst_JES_EtaIntercalibration_Stat81: 5.799647920348268e-14 - syst_JES_EtaIntercalibration_Stat82: 8.892584611104244e-07 - syst_JES_EtaIntercalibration_Stat83: 5.3634641156625635e-08 - syst_JES_EtaIntercalibration_Stat84: 1.0371838638833522e-10 - syst_JES_EtaIntercalibration_Stat85: 4.438612733726609e-16 + syst_JES_EtaIntercalibration_Stat80: 5.00909094e-15 + syst_JES_EtaIntercalibration_Stat81: 5.79964792e-14 + syst_JES_EtaIntercalibration_Stat82: 8.89258461e-07 + syst_JES_EtaIntercalibration_Stat83: 5.36346412e-08 + syst_JES_EtaIntercalibration_Stat84: 1.03718386e-10 + syst_JES_EtaIntercalibration_Stat85: 4.43861273e-16 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 7.481006884103235e-15 + syst_JES_EtaIntercalibration_Stat89: 7.48100688e-15 syst_JES_EtaIntercalibration_Stat9: 0.0 - syst_JES_EtaIntercalibration_Stat90: 2.3634260486632536e-06 - syst_JES_EtaIntercalibration_Stat91: 2.343803176612746e-06 - syst_JES_EtaIntercalibration_Stat92: 2.694453881587139e-09 - syst_JES_EtaIntercalibration_Stat93: 6.019605184888126e-10 + syst_JES_EtaIntercalibration_Stat90: 2.36342605e-06 + syst_JES_EtaIntercalibration_Stat91: 2.34380318e-06 + syst_JES_EtaIntercalibration_Stat92: 2.69445388e-09 + syst_JES_EtaIntercalibration_Stat93: 6.01960518e-10 syst_JES_EtaIntercalibration_Stat94: 0.0 syst_JES_EtaIntercalibration_Stat95: 0.0 - syst_JES_EtaIntercalibration_Stat96: 4.258246910408085e-12 - syst_JES_EtaIntercalibration_Stat97: 6.770586606786741e-16 - syst_JES_EtaIntercalibration_Stat98: 3.970726476351652e-17 - syst_JES_EtaIntercalibration_Stat99: 3.970726476351652e-17 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0022306474396461672 - syst_JES_Flavour_Comp: 0.0060326558620561145 - syst_JES_Gjet_Generator: 0.009590130238948792 - syst_JES_Gjet_OOC: 0.007663588372949059 - syst_JES_Gjet_Purity: 0.002094242345097625 - syst_JES_Gjet_Stat1: 3.260731476781705e-06 - syst_JES_Gjet_Stat10: 0.00018924444509681122 - syst_JES_Gjet_Stat11: 0.0002325034838448663 - syst_JES_Gjet_Stat12: 0.0008868109198132372 - syst_JES_Gjet_Stat13: 0.002281632967854383 - syst_JES_Gjet_Stat14: 0.002750159404470948 - syst_JES_Gjet_Stat15: 8.883022177164707e-05 - syst_JES_Gjet_Stat2: 1.1073465588225396e-05 - syst_JES_Gjet_Stat3: 6.681390248166034e-09 - syst_JES_Gjet_Stat4: 9.425820500782726e-06 - syst_JES_Gjet_Stat5: 1.3241528432079762e-05 - syst_JES_Gjet_Stat6: 5.187743903921531e-05 - syst_JES_Gjet_Stat7: 4.660969841942769e-05 - syst_JES_Gjet_Stat8: 4.3449299266501415e-05 - syst_JES_Gjet_Stat9: 0.00011310808138678687 - syst_JES_Gjet_Veto: 0.006648061446767772 - syst_JES_Gjet_dPhi: 0.0007078052486383526 - syst_JES_LArESZee: 0.014400165511201598 - syst_JES_LArEsmear: 0.0011510436166800979 - syst_JES_LAr_JVT: 0.0014150559988919166 - syst_JES_MJB_Alpha: 7.64440623920524e-05 - syst_JES_MJB_Asym: 0.0007352343163917201 - syst_JES_MJB_Beta: 3.930023282373783e-05 - syst_JES_MJB_Stat1: 1.8913994818652142e-05 - syst_JES_MJB_Stat10: 1.0142889529123346e-20 - syst_JES_MJB_Stat11: 1.203775311260374e-06 + syst_JES_EtaIntercalibration_Stat96: 4.25824691e-12 + syst_JES_EtaIntercalibration_Stat97: 6.77058661e-16 + syst_JES_EtaIntercalibration_Stat98: 3.97072648e-17 + syst_JES_EtaIntercalibration_Stat99: 3.97072648e-17 + syst_JES_EtaIntercalibration_TotalStat_MJB: 2.23064744e-03 + syst_JES_Flavour_Comp: 6.03265586e-03 + syst_JES_Gjet_Generator: 9.59013024e-03 + syst_JES_Gjet_OOC: 7.66358837e-03 + syst_JES_Gjet_Purity: 2.09424235e-03 + syst_JES_Gjet_Stat1: 3.26073148e-06 + syst_JES_Gjet_Stat10: 1.89244445e-04 + syst_JES_Gjet_Stat11: 2.32503484e-04 + syst_JES_Gjet_Stat12: 8.86810920e-04 + syst_JES_Gjet_Stat13: 2.28163297e-03 + syst_JES_Gjet_Stat14: 2.75015940e-03 + syst_JES_Gjet_Stat15: 8.88302218e-05 + syst_JES_Gjet_Stat2: 1.10734656e-05 + syst_JES_Gjet_Stat3: 6.68139025e-09 + syst_JES_Gjet_Stat4: 9.42582050e-06 + syst_JES_Gjet_Stat5: 1.32415284e-05 + syst_JES_Gjet_Stat6: 5.18774390e-05 + syst_JES_Gjet_Stat7: 4.66096984e-05 + syst_JES_Gjet_Stat8: 4.34492993e-05 + syst_JES_Gjet_Stat9: 1.13108081e-04 + syst_JES_Gjet_Veto: 6.64806145e-03 + syst_JES_Gjet_dPhi: 7.07805249e-04 + syst_JES_LArESZee: 1.44001655e-02 + syst_JES_LArEsmear: 1.15104362e-03 + syst_JES_LAr_JVT: 1.41505600e-03 + syst_JES_MJB_Alpha: 7.64440624e-05 + syst_JES_MJB_Asym: 7.35234316e-04 + syst_JES_MJB_Beta: 3.93002328e-05 + syst_JES_MJB_Stat1: 1.89139948e-05 + syst_JES_MJB_Stat10: 1.01428895e-20 + syst_JES_MJB_Stat11: 1.20377531e-06 syst_JES_MJB_Stat12: 0.0 syst_JES_MJB_Stat13: 0.0 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 - syst_JES_MJB_Stat16: 3.891918164607267e-09 - syst_JES_MJB_Stat2: 6.262453832165153e-05 - syst_JES_MJB_Stat3: 0.0001029899961161277 - syst_JES_MJB_Stat4: 6.894428239534768e-05 - syst_JES_MJB_Stat5: 1.6783572232908646e-05 - syst_JES_MJB_Stat6: 2.7485372473372086e-13 - syst_JES_MJB_Stat7: 1.8047969411065563e-05 - syst_JES_MJB_Stat8: 1.1891394597603905e-14 - syst_JES_MJB_Stat9: 1.4038270899298362e-14 - syst_JES_MJB_Threshold: 0.000823714785286752 - syst_JES_Pileup_MuOffset: 0.0017415541909455471 - syst_JES_Pileup_NPVOffset: 0.001663109963291664 - syst_JES_Pileup_Pt_term: 0.0020581943542824135 - syst_JES_PunchThrough_MC15: 0.0004966020136890306 + syst_JES_MJB_Stat16: 3.89191816e-09 + syst_JES_MJB_Stat2: 6.26245383e-05 + syst_JES_MJB_Stat3: 1.02989996e-04 + syst_JES_MJB_Stat4: 6.89442824e-05 + syst_JES_MJB_Stat5: 1.67835722e-05 + syst_JES_MJB_Stat6: 2.74853725e-13 + syst_JES_MJB_Stat7: 1.80479694e-05 + syst_JES_MJB_Stat8: 1.18913946e-14 + syst_JES_MJB_Stat9: 1.40382709e-14 + syst_JES_MJB_Threshold: 8.23714785e-04 + syst_JES_Pileup_MuOffset: 1.74155419e-03 + syst_JES_Pileup_NPVOffset: 1.66310996e-03 + syst_JES_Pileup_Pt_term: 2.05819435e-03 + syst_JES_PunchThrough_MC15: 4.96602014e-04 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.005421147549181815 - syst_JES_Zjet_MuScale: 0.0003372228195125591 - syst_JES_Zjet_MuSmearID: 7.1584479239567e-05 - syst_JES_Zjet_MuSmearMS: 0.0015844641838804686 - syst_JES_Zjet_OOC: 0.0026258413889646876 - syst_JES_Zjet_Stat1: 8.624746995736122e-05 - syst_JES_Zjet_Stat10: 0.00017219346677502023 - syst_JES_Zjet_Stat11: 0.00021079546959078605 - syst_JES_Zjet_Stat12: 0.0010193252768375756 - syst_JES_Zjet_Stat13: 0.0017075879918762606 - syst_JES_Zjet_Stat2: 2.5266438371879797e-06 - syst_JES_Zjet_Stat3: 3.781066912922859e-05 - syst_JES_Zjet_Stat4: 9.214469206091037e-15 - syst_JES_Zjet_Stat5: 1.3128486279842014e-14 - syst_JES_Zjet_Stat6: 4.989532242605513e-05 - syst_JES_Zjet_Stat7: 9.604160071031719e-09 - syst_JES_Zjet_Stat8: 3.941250404376764e-06 - syst_JES_Zjet_Stat9: 9.65421207297623e-05 - syst_JES_Zjet_Veto: 0.0005755496742245625 - syst_JES_Zjet_dPhi: 0.00044437723839098694 - syst_PRW: 3.397e-15 - syst_Unfolding_bias: 1.886e-23 - syst_cleaning: 0.0018463661608684235 + syst_JES_Zjet_MC: 5.42114755e-03 + syst_JES_Zjet_MuScale: 3.37222820e-04 + syst_JES_Zjet_MuSmearID: 7.15844792e-05 + syst_JES_Zjet_MuSmearMS: 1.58446418e-03 + syst_JES_Zjet_OOC: 2.62584139e-03 + syst_JES_Zjet_Stat1: 8.62474700e-05 + syst_JES_Zjet_Stat10: 1.72193467e-04 + syst_JES_Zjet_Stat11: 2.10795470e-04 + syst_JES_Zjet_Stat12: 1.01932528e-03 + syst_JES_Zjet_Stat13: 1.70758799e-03 + syst_JES_Zjet_Stat2: 2.52664384e-06 + syst_JES_Zjet_Stat3: 3.78106691e-05 + syst_JES_Zjet_Stat4: 9.21446921e-15 + syst_JES_Zjet_Stat5: 1.31284863e-14 + syst_JES_Zjet_Stat6: 4.98953224e-05 + syst_JES_Zjet_Stat7: 9.60416007e-09 + syst_JES_Zjet_Stat8: 3.94125040e-06 + syst_JES_Zjet_Stat9: 9.65421207e-05 + syst_JES_Zjet_Veto: 5.75549674e-04 + syst_JES_Zjet_dPhi: 4.44377238e-04 + syst_PRW: 3.39700000e-15 + syst_Unfolding_bias: 1.88600000e-23 + syst_cleaning: 1.84636616e-03 syst_lumi: 0.006801 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 0.000901402910745245 - syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0007786360044976086 - syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0006229086349537948 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 0.0007949527831890395 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0012352731965035101 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0028530633974729685 -- stat: 0.0018538 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 9.01402911e-04 + syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 7.78636004e-04 + syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 6.22908635e-04 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 7.94952783e-04 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.23527320e-03 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 2.85306340e-03 +- stat: 1.85380000e-03 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.001278145422086235 - syst_JER_NP1: 0.0018874088607135444 - syst_JER_NP2: 0.000326578198109534 - syst_JER_NP3: 0.0002968599796200222 - syst_JER_NP4: 0.0002683289206831794 - syst_JER_NP5: 1.818882008512578e-07 - syst_JER_NP6: 2.7320918725401606e-10 - syst_JER_NP7: 1.6414508064514148e-14 - syst_JER_NP8: 0.00017559626277344287 - syst_JES_EtaIntercalibration_Modelling: 0.009173852230660792 - syst_JES_EtaIntercalibration_NonClosure: 0.005330604749932226 + syst_JER_NP0: 1.27814542e-03 + syst_JER_NP1: 1.88740886e-03 + syst_JER_NP2: 3.26578198e-04 + syst_JER_NP3: 2.96859980e-04 + syst_JER_NP4: 2.68328921e-04 + syst_JER_NP5: 1.81888201e-07 + syst_JER_NP6: 2.73209187e-10 + syst_JER_NP7: 1.64145081e-14 + syst_JER_NP8: 1.75596263e-04 + syst_JES_EtaIntercalibration_Modelling: 9.17385223e-03 + syst_JES_EtaIntercalibration_NonClosure: 5.33060475e-03 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 7.37334028782071e-18 + syst_JES_EtaIntercalibration_Stat100: 7.37334029e-18 syst_JES_EtaIntercalibration_Stat101: 0.0 - syst_JES_EtaIntercalibration_Stat102: 5.695307068762843e-13 - syst_JES_EtaIntercalibration_Stat103: 1.5268492985618292e-07 - syst_JES_EtaIntercalibration_Stat104: 2.4539945847281324e-06 - syst_JES_EtaIntercalibration_Stat105: 6.715122839531681e-11 - syst_JES_EtaIntercalibration_Stat106: 6.3443539466205695e-15 + syst_JES_EtaIntercalibration_Stat102: 5.69530707e-13 + syst_JES_EtaIntercalibration_Stat103: 1.52684930e-07 + syst_JES_EtaIntercalibration_Stat104: 2.45399458e-06 + syst_JES_EtaIntercalibration_Stat105: 6.71512284e-11 + syst_JES_EtaIntercalibration_Stat106: 6.34435395e-15 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 4.877468605742122e-13 + syst_JES_EtaIntercalibration_Stat109: 4.87746861e-13 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 2.867475887867237e-06 - syst_JES_EtaIntercalibration_Stat111: 2.865123543584116e-06 - syst_JES_EtaIntercalibration_Stat112: 3.1220891190835663e-06 - syst_JES_EtaIntercalibration_Stat113: 1.7291394991440104e-10 - syst_JES_EtaIntercalibration_Stat114: 3.284834356554376e-14 + syst_JES_EtaIntercalibration_Stat110: 2.86747589e-06 + syst_JES_EtaIntercalibration_Stat111: 2.86512354e-06 + syst_JES_EtaIntercalibration_Stat112: 3.12208912e-06 + syst_JES_EtaIntercalibration_Stat113: 1.72913950e-10 + syst_JES_EtaIntercalibration_Stat114: 3.28483436e-14 syst_JES_EtaIntercalibration_Stat115: 0.0 - syst_JES_EtaIntercalibration_Stat116: 4.350045603209235e-13 - syst_JES_EtaIntercalibration_Stat117: 4.716374349010053e-13 - syst_JES_EtaIntercalibration_Stat118: 7.37334028782071e-18 - syst_JES_EtaIntercalibration_Stat119: 7.37334028782071e-18 + syst_JES_EtaIntercalibration_Stat116: 4.35004560e-13 + syst_JES_EtaIntercalibration_Stat117: 4.71637435e-13 + syst_JES_EtaIntercalibration_Stat118: 7.37334029e-18 + syst_JES_EtaIntercalibration_Stat119: 7.37334029e-18 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 7.37334028782071e-18 - syst_JES_EtaIntercalibration_Stat121: 7.840994005864309e-16 - syst_JES_EtaIntercalibration_Stat122: 1.5187066712596842e-07 - syst_JES_EtaIntercalibration_Stat123: 2.6029422333198255e-06 - syst_JES_EtaIntercalibration_Stat124: 2.6073670028402217e-06 - syst_JES_EtaIntercalibration_Stat125: 5.5242652678885726e-08 - syst_JES_EtaIntercalibration_Stat126: 8.79240437920709e-12 + syst_JES_EtaIntercalibration_Stat120: 7.37334029e-18 + syst_JES_EtaIntercalibration_Stat121: 7.84099401e-16 + syst_JES_EtaIntercalibration_Stat122: 1.51870667e-07 + syst_JES_EtaIntercalibration_Stat123: 2.60294223e-06 + syst_JES_EtaIntercalibration_Stat124: 2.60736700e-06 + syst_JES_EtaIntercalibration_Stat125: 5.52426527e-08 + syst_JES_EtaIntercalibration_Stat126: 8.79240438e-12 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 3.5678181736181565e-08 - syst_JES_EtaIntercalibration_Stat129: 3.050899211707919e-06 + syst_JES_EtaIntercalibration_Stat128: 3.56781817e-08 + syst_JES_EtaIntercalibration_Stat129: 3.05089921e-06 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 1.1451436940401847e-05 - syst_JES_EtaIntercalibration_Stat131: 2.3037110821455023e-06 - syst_JES_EtaIntercalibration_Stat132: 3.07556970821261e-06 - syst_JES_EtaIntercalibration_Stat133: 7.157052832322254e-11 + syst_JES_EtaIntercalibration_Stat130: 1.14514369e-05 + syst_JES_EtaIntercalibration_Stat131: 2.30371108e-06 + syst_JES_EtaIntercalibration_Stat132: 3.07556971e-06 + syst_JES_EtaIntercalibration_Stat133: 7.15705283e-11 syst_JES_EtaIntercalibration_Stat134: 0.0 - syst_JES_EtaIntercalibration_Stat135: 4.350045603209235e-13 - syst_JES_EtaIntercalibration_Stat136: 4.350045603209235e-13 - syst_JES_EtaIntercalibration_Stat137: 7.37334028782071e-18 - syst_JES_EtaIntercalibration_Stat138: 7.37334028782071e-18 - syst_JES_EtaIntercalibration_Stat139: 7.37334028782071e-18 + syst_JES_EtaIntercalibration_Stat135: 4.35004560e-13 + syst_JES_EtaIntercalibration_Stat136: 4.35004560e-13 + syst_JES_EtaIntercalibration_Stat137: 7.37334029e-18 + syst_JES_EtaIntercalibration_Stat138: 7.37334029e-18 + syst_JES_EtaIntercalibration_Stat139: 7.37334029e-18 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 4.981378122568091e-16 - syst_JES_EtaIntercalibration_Stat141: 2.494195908504382e-06 - syst_JES_EtaIntercalibration_Stat142: 3.069345695746897e-06 - syst_JES_EtaIntercalibration_Stat143: 1.1581190571598198e-05 - syst_JES_EtaIntercalibration_Stat144: 4.5603335404332e-06 - syst_JES_EtaIntercalibration_Stat145: 1.79623142848437e-11 - syst_JES_EtaIntercalibration_Stat146: 3.0275150198141046e-07 - syst_JES_EtaIntercalibration_Stat147: 3.036982178084027e-06 - syst_JES_EtaIntercalibration_Stat148: 1.3524261791314156e-05 - syst_JES_EtaIntercalibration_Stat149: 2.473271669267248e-06 + syst_JES_EtaIntercalibration_Stat140: 4.98137812e-16 + syst_JES_EtaIntercalibration_Stat141: 2.49419591e-06 + syst_JES_EtaIntercalibration_Stat142: 3.06934570e-06 + syst_JES_EtaIntercalibration_Stat143: 1.15811906e-05 + syst_JES_EtaIntercalibration_Stat144: 4.56033354e-06 + syst_JES_EtaIntercalibration_Stat145: 1.79623143e-11 + syst_JES_EtaIntercalibration_Stat146: 3.02751502e-07 + syst_JES_EtaIntercalibration_Stat147: 3.03698218e-06 + syst_JES_EtaIntercalibration_Stat148: 1.35242618e-05 + syst_JES_EtaIntercalibration_Stat149: 2.47327167e-06 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 3.0694441250289927e-06 - syst_JES_EtaIntercalibration_Stat151: 4.2399508360375114e-10 + syst_JES_EtaIntercalibration_Stat150: 3.06944413e-06 + syst_JES_EtaIntercalibration_Stat151: 4.23995084e-10 syst_JES_EtaIntercalibration_Stat152: 0.0 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 7.37334028782071e-18 + syst_JES_EtaIntercalibration_Stat156: 7.37334029e-18 syst_JES_EtaIntercalibration_Stat157: 0.0 syst_JES_EtaIntercalibration_Stat158: 0.0 - syst_JES_EtaIntercalibration_Stat159: 2.274349408072559e-06 - syst_JES_EtaIntercalibration_Stat16: 1.5034201009544483e-07 - syst_JES_EtaIntercalibration_Stat160: 1.7505524842174825e-06 - syst_JES_EtaIntercalibration_Stat161: 1.1567218593940378e-05 - syst_JES_EtaIntercalibration_Stat162: 6.029467886969794e-06 - syst_JES_EtaIntercalibration_Stat163: 7.809542872025225e-09 - syst_JES_EtaIntercalibration_Stat164: 2.8385250687769167e-06 - syst_JES_EtaIntercalibration_Stat165: 2.159606817802722e-05 - syst_JES_EtaIntercalibration_Stat166: 5.510261767829184e-05 - syst_JES_EtaIntercalibration_Stat167: 2.7396147758398443e-05 - syst_JES_EtaIntercalibration_Stat168: 4.244783475043221e-06 - syst_JES_EtaIntercalibration_Stat169: 4.2399508360375114e-10 - syst_JES_EtaIntercalibration_Stat17: 5.785159212602796e-15 + syst_JES_EtaIntercalibration_Stat159: 2.27434941e-06 + syst_JES_EtaIntercalibration_Stat16: 1.50342010e-07 + syst_JES_EtaIntercalibration_Stat160: 1.75055248e-06 + syst_JES_EtaIntercalibration_Stat161: 1.15672186e-05 + syst_JES_EtaIntercalibration_Stat162: 6.02946789e-06 + syst_JES_EtaIntercalibration_Stat163: 7.80954287e-09 + syst_JES_EtaIntercalibration_Stat164: 2.83852507e-06 + syst_JES_EtaIntercalibration_Stat165: 2.15960682e-05 + syst_JES_EtaIntercalibration_Stat166: 5.51026177e-05 + syst_JES_EtaIntercalibration_Stat167: 2.73961478e-05 + syst_JES_EtaIntercalibration_Stat168: 4.24478348e-06 + syst_JES_EtaIntercalibration_Stat169: 4.23995084e-10 + syst_JES_EtaIntercalibration_Stat17: 5.78515921e-15 syst_JES_EtaIntercalibration_Stat170: 0.0 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 syst_JES_EtaIntercalibration_Stat175: 0.0 - syst_JES_EtaIntercalibration_Stat176: 4.754479466776568e-11 - syst_JES_EtaIntercalibration_Stat177: 2.4000416663049836e-06 - syst_JES_EtaIntercalibration_Stat178: 2.248905066915898e-05 - syst_JES_EtaIntercalibration_Stat179: 3.624310693083583e-05 - syst_JES_EtaIntercalibration_Stat18: 2.2303152484570426e-18 - syst_JES_EtaIntercalibration_Stat180: 2.904358044783735e-05 - syst_JES_EtaIntercalibration_Stat181: 5.177225527973453e-07 - syst_JES_EtaIntercalibration_Stat182: 0.00014242232549709332 - syst_JES_EtaIntercalibration_Stat183: 0.0002695969398936123 - syst_JES_EtaIntercalibration_Stat184: 9.521107432961777e-05 - syst_JES_EtaIntercalibration_Stat185: 1.3396317432414027e-05 - syst_JES_EtaIntercalibration_Stat186: 4.240060376928612e-10 + syst_JES_EtaIntercalibration_Stat176: 4.75447947e-11 + syst_JES_EtaIntercalibration_Stat177: 2.40004167e-06 + syst_JES_EtaIntercalibration_Stat178: 2.24890507e-05 + syst_JES_EtaIntercalibration_Stat179: 3.62431069e-05 + syst_JES_EtaIntercalibration_Stat18: 2.23031525e-18 + syst_JES_EtaIntercalibration_Stat180: 2.90435804e-05 + syst_JES_EtaIntercalibration_Stat181: 5.17722553e-07 + syst_JES_EtaIntercalibration_Stat182: 1.42422325e-04 + syst_JES_EtaIntercalibration_Stat183: 2.69596940e-04 + syst_JES_EtaIntercalibration_Stat184: 9.52110743e-05 + syst_JES_EtaIntercalibration_Stat185: 1.33963174e-05 + syst_JES_EtaIntercalibration_Stat186: 4.24006038e-10 syst_JES_EtaIntercalibration_Stat187: 0.0 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 @@ -50735,31 +50735,31 @@ bins: syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 syst_JES_EtaIntercalibration_Stat192: 0.0 - syst_JES_EtaIntercalibration_Stat193: 1.5500616995676036e-07 - syst_JES_EtaIntercalibration_Stat194: 1.1644882609970785e-05 - syst_JES_EtaIntercalibration_Stat195: 8.16010911385381e-05 - syst_JES_EtaIntercalibration_Stat196: 0.0002120182067653625 - syst_JES_EtaIntercalibration_Stat197: 0.00011014460166072598 - syst_JES_EtaIntercalibration_Stat198: 0.0004767164566070695 - syst_JES_EtaIntercalibration_Stat199: 0.00018867752250864437 + syst_JES_EtaIntercalibration_Stat193: 1.55006170e-07 + syst_JES_EtaIntercalibration_Stat194: 1.16448826e-05 + syst_JES_EtaIntercalibration_Stat195: 8.16010911e-05 + syst_JES_EtaIntercalibration_Stat196: 2.12018207e-04 + syst_JES_EtaIntercalibration_Stat197: 1.10144602e-04 + syst_JES_EtaIntercalibration_Stat198: 4.76716457e-04 + syst_JES_EtaIntercalibration_Stat199: 1.88677523e-04 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 2.0734739852479464e-05 - syst_JES_EtaIntercalibration_Stat201: 4.240060376928612e-10 + syst_JES_EtaIntercalibration_Stat200: 2.07347399e-05 + syst_JES_EtaIntercalibration_Stat201: 4.24006038e-10 syst_JES_EtaIntercalibration_Stat202: 0.0 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 syst_JES_EtaIntercalibration_Stat207: 0.0 - syst_JES_EtaIntercalibration_Stat208: 1.5380611171211632e-07 - syst_JES_EtaIntercalibration_Stat209: 1.4315520353797832e-05 + syst_JES_EtaIntercalibration_Stat208: 1.53806112e-07 + syst_JES_EtaIntercalibration_Stat209: 1.43155204e-05 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 0.00015673691332931115 - syst_JES_EtaIntercalibration_Stat211: 0.0005055590239279683 - syst_JES_EtaIntercalibration_Stat212: 0.00012001809894761706 - syst_JES_EtaIntercalibration_Stat213: 1.6206598902916057e-05 - syst_JES_EtaIntercalibration_Stat214: 4.240060376928612e-10 + syst_JES_EtaIntercalibration_Stat210: 1.56736913e-04 + syst_JES_EtaIntercalibration_Stat211: 5.05559024e-04 + syst_JES_EtaIntercalibration_Stat212: 1.20018099e-04 + syst_JES_EtaIntercalibration_Stat213: 1.62065989e-05 + syst_JES_EtaIntercalibration_Stat214: 4.24006038e-10 syst_JES_EtaIntercalibration_Stat215: 0.0 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 @@ -50767,11 +50767,11 @@ bins: syst_JES_EtaIntercalibration_Stat219: 0.0 syst_JES_EtaIntercalibration_Stat22: 0.0 syst_JES_EtaIntercalibration_Stat220: 0.0 - syst_JES_EtaIntercalibration_Stat221: 1.8368398814267945e-07 - syst_JES_EtaIntercalibration_Stat222: 5.33225915419534e-06 - syst_JES_EtaIntercalibration_Stat223: 0.00013915252207559876 - syst_JES_EtaIntercalibration_Stat224: 9.31944401506871e-05 - syst_JES_EtaIntercalibration_Stat225: 1.887777663682882e-05 + syst_JES_EtaIntercalibration_Stat221: 1.83683988e-07 + syst_JES_EtaIntercalibration_Stat222: 5.33225915e-06 + syst_JES_EtaIntercalibration_Stat223: 1.39152522e-04 + syst_JES_EtaIntercalibration_Stat224: 9.31944402e-05 + syst_JES_EtaIntercalibration_Stat225: 1.88777766e-05 syst_JES_EtaIntercalibration_Stat226: 0.0 syst_JES_EtaIntercalibration_Stat227: 0.0 syst_JES_EtaIntercalibration_Stat228: 0.0 @@ -50780,296 +50780,296 @@ bins: syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 syst_JES_EtaIntercalibration_Stat232: 0.0 - syst_JES_EtaIntercalibration_Stat233: 1.8368398814267945e-07 - syst_JES_EtaIntercalibration_Stat234: 1.2288900479701186e-05 - syst_JES_EtaIntercalibration_Stat235: 0.0001561050417987837 - syst_JES_EtaIntercalibration_Stat236: 6.152306315521033e-06 + syst_JES_EtaIntercalibration_Stat233: 1.83683988e-07 + syst_JES_EtaIntercalibration_Stat234: 1.22889005e-05 + syst_JES_EtaIntercalibration_Stat235: 1.56105042e-04 + syst_JES_EtaIntercalibration_Stat236: 6.15230632e-06 syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 syst_JES_EtaIntercalibration_Stat239: 0.0 - syst_JES_EtaIntercalibration_Stat24: 9.246553236206451e-18 + syst_JES_EtaIntercalibration_Stat24: 9.24655324e-18 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 syst_JES_EtaIntercalibration_Stat243: 0.0 - syst_JES_EtaIntercalibration_Stat244: 1.8368398814267945e-07 - syst_JES_EtaIntercalibration_Stat245: 2.0033969071304868e-06 - syst_JES_EtaIntercalibration_Stat25: 1.0569662376348642e-15 - syst_JES_EtaIntercalibration_Stat26: 3.1315478616543455e-06 - syst_JES_EtaIntercalibration_Stat27: 7.137659421083333e-11 - syst_JES_EtaIntercalibration_Stat28: 2.148776583896055e-16 + syst_JES_EtaIntercalibration_Stat244: 1.83683988e-07 + syst_JES_EtaIntercalibration_Stat245: 2.00339691e-06 + syst_JES_EtaIntercalibration_Stat25: 1.05696624e-15 + syst_JES_EtaIntercalibration_Stat26: 3.13154786e-06 + syst_JES_EtaIntercalibration_Stat27: 7.13765942e-11 + syst_JES_EtaIntercalibration_Stat28: 2.14877658e-16 syst_JES_EtaIntercalibration_Stat29: 0.0 - syst_JES_EtaIntercalibration_Stat3: 5.659233934023226e-17 + syst_JES_EtaIntercalibration_Stat3: 5.65923393e-17 syst_JES_EtaIntercalibration_Stat30: 0.0 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 6.082096410778112e-16 - syst_JES_EtaIntercalibration_Stat36: 6.082096410778112e-16 - syst_JES_EtaIntercalibration_Stat37: 8.858777503508879e-16 - syst_JES_EtaIntercalibration_Stat38: 1.5034200722985733e-07 - syst_JES_EtaIntercalibration_Stat39: 1.505152115346556e-07 - syst_JES_EtaIntercalibration_Stat4: 4.115352757264049e-10 - syst_JES_EtaIntercalibration_Stat40: 8.065309657415516e-15 + syst_JES_EtaIntercalibration_Stat35: 6.08209641e-16 + syst_JES_EtaIntercalibration_Stat36: 6.08209641e-16 + syst_JES_EtaIntercalibration_Stat37: 8.85877750e-16 + syst_JES_EtaIntercalibration_Stat38: 1.50342007e-07 + syst_JES_EtaIntercalibration_Stat39: 1.50515212e-07 + syst_JES_EtaIntercalibration_Stat4: 4.11535276e-10 + syst_JES_EtaIntercalibration_Stat40: 8.06530966e-15 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 syst_JES_EtaIntercalibration_Stat44: 0.0 syst_JES_EtaIntercalibration_Stat45: 0.0 - syst_JES_EtaIntercalibration_Stat46: 7.46098952887618e-17 - syst_JES_EtaIntercalibration_Stat47: 1.3906410140650964e-14 - syst_JES_EtaIntercalibration_Stat48: 3.106433191646457e-06 - syst_JES_EtaIntercalibration_Stat49: 7.119230810436757e-11 - syst_JES_EtaIntercalibration_Stat5: 4.116218749094914e-10 - syst_JES_EtaIntercalibration_Stat50: 8.512553612165976e-16 + syst_JES_EtaIntercalibration_Stat46: 7.46098953e-17 + syst_JES_EtaIntercalibration_Stat47: 1.39064101e-14 + syst_JES_EtaIntercalibration_Stat48: 3.10643319e-06 + syst_JES_EtaIntercalibration_Stat49: 7.11923081e-11 + syst_JES_EtaIntercalibration_Stat5: 4.11621875e-10 + syst_JES_EtaIntercalibration_Stat50: 8.51255361e-16 syst_JES_EtaIntercalibration_Stat51: 0.0 syst_JES_EtaIntercalibration_Stat52: 0.0 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 7.37334028782071e-18 - syst_JES_EtaIntercalibration_Stat57: 6.082096410778112e-16 - syst_JES_EtaIntercalibration_Stat58: 6.082096410778112e-16 - syst_JES_EtaIntercalibration_Stat59: 1.0789231796101146e-15 + syst_JES_EtaIntercalibration_Stat56: 7.37334029e-18 + syst_JES_EtaIntercalibration_Stat57: 6.08209641e-16 + syst_JES_EtaIntercalibration_Stat58: 6.08209641e-16 + syst_JES_EtaIntercalibration_Stat59: 1.07892318e-15 syst_JES_EtaIntercalibration_Stat6: 0.0 - syst_JES_EtaIntercalibration_Stat60: 1.5058815968261474e-07 - syst_JES_EtaIntercalibration_Stat61: 1.5074808559603102e-07 - syst_JES_EtaIntercalibration_Stat62: 3.275895478720284e-14 - syst_JES_EtaIntercalibration_Stat63: 1.8190800407554914e-17 + syst_JES_EtaIntercalibration_Stat60: 1.50588160e-07 + syst_JES_EtaIntercalibration_Stat61: 1.50748086e-07 + syst_JES_EtaIntercalibration_Stat62: 3.27589548e-14 + syst_JES_EtaIntercalibration_Stat63: 1.81908004e-17 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 5.865400071606369e-16 - syst_JES_EtaIntercalibration_Stat69: 3.0641273423924336e-06 + syst_JES_EtaIntercalibration_Stat68: 5.86540007e-16 + syst_JES_EtaIntercalibration_Stat69: 3.06412734e-06 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 3.058205244965092e-06 - syst_JES_EtaIntercalibration_Stat71: 3.125486358335789e-06 - syst_JES_EtaIntercalibration_Stat72: 7.116885086902042e-11 + syst_JES_EtaIntercalibration_Stat70: 3.05820524e-06 + syst_JES_EtaIntercalibration_Stat71: 3.12548636e-06 + syst_JES_EtaIntercalibration_Stat72: 7.11688509e-11 syst_JES_EtaIntercalibration_Stat73: 0.0 syst_JES_EtaIntercalibration_Stat74: 0.0 syst_JES_EtaIntercalibration_Stat75: 0.0 - syst_JES_EtaIntercalibration_Stat76: 9.935909457618864e-17 - syst_JES_EtaIntercalibration_Stat77: 7.37334028782071e-18 - syst_JES_EtaIntercalibration_Stat78: 7.37334028782071e-18 - syst_JES_EtaIntercalibration_Stat79: 6.082096410778112e-16 + syst_JES_EtaIntercalibration_Stat76: 9.93590946e-17 + syst_JES_EtaIntercalibration_Stat77: 7.37334029e-18 + syst_JES_EtaIntercalibration_Stat78: 7.37334029e-18 + syst_JES_EtaIntercalibration_Stat79: 6.08209641e-16 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 6.014546429282927e-16 - syst_JES_EtaIntercalibration_Stat81: 6.998656067417515e-15 - syst_JES_EtaIntercalibration_Stat82: 1.5239165424985547e-07 - syst_JES_EtaIntercalibration_Stat83: 7.638766745691021e-08 - syst_JES_EtaIntercalibration_Stat84: 1.222998850162992e-11 - syst_JES_EtaIntercalibration_Stat85: 5.751439471993077e-17 + syst_JES_EtaIntercalibration_Stat80: 6.01454643e-16 + syst_JES_EtaIntercalibration_Stat81: 6.99865607e-15 + syst_JES_EtaIntercalibration_Stat82: 1.52391654e-07 + syst_JES_EtaIntercalibration_Stat83: 7.63876675e-08 + syst_JES_EtaIntercalibration_Stat84: 1.22299885e-11 + syst_JES_EtaIntercalibration_Stat85: 5.75143947e-17 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 9.107102653972888e-16 + syst_JES_EtaIntercalibration_Stat89: 9.10710265e-16 syst_JES_EtaIntercalibration_Stat9: 0.0 - syst_JES_EtaIntercalibration_Stat90: 3.0602274678199988e-06 - syst_JES_EtaIntercalibration_Stat91: 3.0544581150958675e-06 - syst_JES_EtaIntercalibration_Stat92: 3.081254382146985e-10 - syst_JES_EtaIntercalibration_Stat93: 7.350652747535282e-11 + syst_JES_EtaIntercalibration_Stat90: 3.06022747e-06 + syst_JES_EtaIntercalibration_Stat91: 3.05445812e-06 + syst_JES_EtaIntercalibration_Stat92: 3.08125438e-10 + syst_JES_EtaIntercalibration_Stat93: 7.35065275e-11 syst_JES_EtaIntercalibration_Stat94: 0.0 syst_JES_EtaIntercalibration_Stat95: 0.0 - syst_JES_EtaIntercalibration_Stat96: 4.716374349010053e-13 - syst_JES_EtaIntercalibration_Stat97: 9.935909457618864e-17 - syst_JES_EtaIntercalibration_Stat98: 7.37334028782071e-18 - syst_JES_EtaIntercalibration_Stat99: 7.37334028782071e-18 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0013520195144671545 - syst_JES_Flavour_Comp: 0.003614767489064822 - syst_JES_Gjet_Generator: 0.005476658926754523 - syst_JES_Gjet_OOC: 0.004421950559425106 - syst_JES_Gjet_Purity: 0.0011303050959807267 - syst_JES_Gjet_Stat1: 1.7447811366185733e-06 - syst_JES_Gjet_Stat10: 0.00010274654446744183 - syst_JES_Gjet_Stat11: 0.00011707539056095436 - syst_JES_Gjet_Stat12: 0.00040297286509143515 - syst_JES_Gjet_Stat13: 0.0012812417882663678 - syst_JES_Gjet_Stat14: 0.002018445193707275 - syst_JES_Gjet_Stat15: 0.0002623531732226618 - syst_JES_Gjet_Stat2: 1.4554232066573454e-05 - syst_JES_Gjet_Stat3: 6.754132186843946e-08 - syst_JES_Gjet_Stat4: 5.0956934767512715e-06 - syst_JES_Gjet_Stat5: 7.1576999634870686e-06 - syst_JES_Gjet_Stat6: 2.508285506934966e-05 - syst_JES_Gjet_Stat7: 1.5487581409229137e-05 - syst_JES_Gjet_Stat8: 2.36800135293458e-05 - syst_JES_Gjet_Stat9: 6.546625695730588e-05 - syst_JES_Gjet_Veto: 0.00403052622711973 - syst_JES_Gjet_dPhi: 0.00041647233026336823 - syst_JES_LArESZee: 0.008258773032357771 - syst_JES_LArEsmear: 0.000653477145736559 - syst_JES_LAr_JVT: 0.0008068421329479516 - syst_JES_MJB_Alpha: 4.131807201455557e-05 - syst_JES_MJB_Asym: 0.0004764425253899992 - syst_JES_MJB_Beta: 3.7550861508093255e-05 - syst_JES_MJB_Stat1: 4.256514859600516e-06 - syst_JES_MJB_Stat10: 6.259631618553922e-17 - syst_JES_MJB_Stat11: 6.827744283704463e-07 + syst_JES_EtaIntercalibration_Stat96: 4.71637435e-13 + syst_JES_EtaIntercalibration_Stat97: 9.93590946e-17 + syst_JES_EtaIntercalibration_Stat98: 7.37334029e-18 + syst_JES_EtaIntercalibration_Stat99: 7.37334029e-18 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.35201951e-03 + syst_JES_Flavour_Comp: 3.61476749e-03 + syst_JES_Gjet_Generator: 5.47665893e-03 + syst_JES_Gjet_OOC: 4.42195056e-03 + syst_JES_Gjet_Purity: 1.13030510e-03 + syst_JES_Gjet_Stat1: 1.74478114e-06 + syst_JES_Gjet_Stat10: 1.02746544e-04 + syst_JES_Gjet_Stat11: 1.17075391e-04 + syst_JES_Gjet_Stat12: 4.02972865e-04 + syst_JES_Gjet_Stat13: 1.28124179e-03 + syst_JES_Gjet_Stat14: 2.01844519e-03 + syst_JES_Gjet_Stat15: 2.62353173e-04 + syst_JES_Gjet_Stat2: 1.45542321e-05 + syst_JES_Gjet_Stat3: 6.75413219e-08 + syst_JES_Gjet_Stat4: 5.09569348e-06 + syst_JES_Gjet_Stat5: 7.15769996e-06 + syst_JES_Gjet_Stat6: 2.50828551e-05 + syst_JES_Gjet_Stat7: 1.54875814e-05 + syst_JES_Gjet_Stat8: 2.36800135e-05 + syst_JES_Gjet_Stat9: 6.54662570e-05 + syst_JES_Gjet_Veto: 4.03052623e-03 + syst_JES_Gjet_dPhi: 4.16472330e-04 + syst_JES_LArESZee: 8.25877303e-03 + syst_JES_LArEsmear: 6.53477146e-04 + syst_JES_LAr_JVT: 8.06842133e-04 + syst_JES_MJB_Alpha: 4.13180720e-05 + syst_JES_MJB_Asym: 4.76442525e-04 + syst_JES_MJB_Beta: 3.75508615e-05 + syst_JES_MJB_Stat1: 4.25651486e-06 + syst_JES_MJB_Stat10: 6.25963162e-17 + syst_JES_MJB_Stat11: 6.82774428e-07 syst_JES_MJB_Stat12: 0.0 syst_JES_MJB_Stat13: 0.0 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 - syst_JES_MJB_Stat16: 1.786610408007297e-08 - syst_JES_MJB_Stat2: 3.333358816569257e-05 - syst_JES_MJB_Stat3: 5.334619574065239e-05 - syst_JES_MJB_Stat4: 3.7585502543138424e-05 - syst_JES_MJB_Stat5: 9.063814786168813e-06 - syst_JES_MJB_Stat6: 2.052629378991736e-11 - syst_JES_MJB_Stat7: 1.0704075039244161e-05 - syst_JES_MJB_Stat8: 3.2796368355251404e-12 - syst_JES_MJB_Stat9: 3.871128026819191e-12 - syst_JES_MJB_Threshold: 0.00045968280368097306 - syst_JES_Pileup_MuOffset: 0.0010344726905530178 - syst_JES_Pileup_NPVOffset: 0.0010193833172560752 - syst_JES_Pileup_Pt_term: 0.0011691328880841564 - syst_JES_PunchThrough_MC15: 0.00034204418939663337 + syst_JES_MJB_Stat16: 1.78661041e-08 + syst_JES_MJB_Stat2: 3.33335882e-05 + syst_JES_MJB_Stat3: 5.33461957e-05 + syst_JES_MJB_Stat4: 3.75855025e-05 + syst_JES_MJB_Stat5: 9.06381479e-06 + syst_JES_MJB_Stat6: 2.05262938e-11 + syst_JES_MJB_Stat7: 1.07040750e-05 + syst_JES_MJB_Stat8: 3.27963684e-12 + syst_JES_MJB_Stat9: 3.87112803e-12 + syst_JES_MJB_Threshold: 4.59682804e-04 + syst_JES_Pileup_MuOffset: 1.03447269e-03 + syst_JES_Pileup_NPVOffset: 1.01938332e-03 + syst_JES_Pileup_Pt_term: 1.16913289e-03 + syst_JES_PunchThrough_MC15: 3.42044189e-04 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.0028952662658208142 - syst_JES_Zjet_MuScale: 0.0001900445934511161 - syst_JES_Zjet_MuSmearID: 3.896958003366215e-05 - syst_JES_Zjet_MuSmearMS: 0.0008169824049512939 - syst_JES_Zjet_OOC: 0.0014525790856266655 - syst_JES_Zjet_Stat1: 4.647092316625776e-05 - syst_JES_Zjet_Stat10: 8.840087556127484e-05 - syst_JES_Zjet_Stat11: 0.00012508857381871456 - syst_JES_Zjet_Stat12: 0.0004781378880615925 - syst_JES_Zjet_Stat13: 0.0008872896426759415 - syst_JES_Zjet_Stat2: 1.0366254772095851e-06 - syst_JES_Zjet_Stat3: 2.0420879021237066e-05 - syst_JES_Zjet_Stat4: 1.3493630969831655e-15 - syst_JES_Zjet_Stat5: 1.9348135743528368e-15 - syst_JES_Zjet_Stat6: 2.7176180223129225e-05 - syst_JES_Zjet_Stat7: 1.1156856966345853e-09 - syst_JES_Zjet_Stat8: 6.778162582883358e-07 - syst_JES_Zjet_Stat9: 5.9008550863413005e-05 - syst_JES_Zjet_Veto: 0.0003028096885834401 - syst_JES_Zjet_dPhi: 0.0002473793190628513 - syst_PRW: 3.992e-12 - syst_Unfolding_bias: 1.0401e-18 - syst_cleaning: 0.0009941105610041573 + syst_JES_Zjet_MC: 2.89526627e-03 + syst_JES_Zjet_MuScale: 1.90044593e-04 + syst_JES_Zjet_MuSmearID: 3.89695800e-05 + syst_JES_Zjet_MuSmearMS: 8.16982405e-04 + syst_JES_Zjet_OOC: 1.45257909e-03 + syst_JES_Zjet_Stat1: 4.64709232e-05 + syst_JES_Zjet_Stat10: 8.84008756e-05 + syst_JES_Zjet_Stat11: 1.25088574e-04 + syst_JES_Zjet_Stat12: 4.78137888e-04 + syst_JES_Zjet_Stat13: 8.87289643e-04 + syst_JES_Zjet_Stat2: 1.03662548e-06 + syst_JES_Zjet_Stat3: 2.04208790e-05 + syst_JES_Zjet_Stat4: 1.34936310e-15 + syst_JES_Zjet_Stat5: 1.93481357e-15 + syst_JES_Zjet_Stat6: 2.71761802e-05 + syst_JES_Zjet_Stat7: 1.11568570e-09 + syst_JES_Zjet_Stat8: 6.77816258e-07 + syst_JES_Zjet_Stat9: 5.90085509e-05 + syst_JES_Zjet_Veto: 3.02809689e-04 + syst_JES_Zjet_dPhi: 2.47379319e-04 + syst_PRW: 3.99200000e-12 + syst_Unfolding_bias: 1.04010000e-18 + syst_cleaning: 9.94110561e-04 syst_lumi: 0.003673 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 0.00029116098639755977 - syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.00039104380096735965 - syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.00034974786275258354 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 0.00025676146030898016 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0006351957887139996 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0016309637488307333 -- stat: 0.0010623 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 2.91160986e-04 + syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 3.91043801e-04 + syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 3.49747863e-04 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 2.56761460e-04 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 6.35195789e-04 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.63096375e-03 +- stat: 1.06230000e-03 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.0006732732042046527 - syst_JER_NP1: 0.0011582379418755026 - syst_JER_NP2: 0.00017069360920392242 - syst_JER_NP3: 0.0001450572939324321 - syst_JER_NP4: 0.00013299841882800714 - syst_JER_NP5: 2.168679819136979e-08 - syst_JER_NP6: 3.054276141739643e-11 - syst_JER_NP7: 2.4549425146019206e-15 - syst_JER_NP8: 8.903972526350248e-05 - syst_JES_EtaIntercalibration_Modelling: 0.004953041565543339 - syst_JES_EtaIntercalibration_NonClosure: 0.0030704978016601807 + syst_JER_NP0: 6.73273204e-04 + syst_JER_NP1: 1.15823794e-03 + syst_JER_NP2: 1.70693609e-04 + syst_JER_NP3: 1.45057294e-04 + syst_JER_NP4: 1.32998419e-04 + syst_JER_NP5: 2.16867982e-08 + syst_JER_NP6: 3.05427614e-11 + syst_JER_NP7: 2.45494251e-15 + syst_JER_NP8: 8.90397253e-05 + syst_JES_EtaIntercalibration_Modelling: 4.95304157e-03 + syst_JES_EtaIntercalibration_NonClosure: 3.07049780e-03 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 1.3717842395945507e-18 + syst_JES_EtaIntercalibration_Stat100: 1.37178424e-18 syst_JES_EtaIntercalibration_Stat101: 0.0 - syst_JES_EtaIntercalibration_Stat102: 6.367152238638558e-14 - syst_JES_EtaIntercalibration_Stat103: 6.81485650370071e-07 - syst_JES_EtaIntercalibration_Stat104: 4.7627387402103007e-07 - syst_JES_EtaIntercalibration_Stat105: 7.68403058296881e-12 - syst_JES_EtaIntercalibration_Stat106: 7.718109825598493e-16 + syst_JES_EtaIntercalibration_Stat102: 6.36715224e-14 + syst_JES_EtaIntercalibration_Stat103: 6.81485650e-07 + syst_JES_EtaIntercalibration_Stat104: 4.76273874e-07 + syst_JES_EtaIntercalibration_Stat105: 7.68403058e-12 + syst_JES_EtaIntercalibration_Stat106: 7.71810983e-16 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 5.404352574545817e-14 + syst_JES_EtaIntercalibration_Stat109: 5.40435257e-14 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 2.2761322131798496e-06 - syst_JES_EtaIntercalibration_Stat111: 2.273786084502014e-06 - syst_JES_EtaIntercalibration_Stat112: 1.4807136007682242e-06 - syst_JES_EtaIntercalibration_Stat113: 1.9627019845101295e-11 - syst_JES_EtaIntercalibration_Stat114: 3.931755333181351e-15 + syst_JES_EtaIntercalibration_Stat110: 2.27613221e-06 + syst_JES_EtaIntercalibration_Stat111: 2.27378608e-06 + syst_JES_EtaIntercalibration_Stat112: 1.48071360e-06 + syst_JES_EtaIntercalibration_Stat113: 1.96270198e-11 + syst_JES_EtaIntercalibration_Stat114: 3.93175533e-15 syst_JES_EtaIntercalibration_Stat115: 0.0 - syst_JES_EtaIntercalibration_Stat116: 4.6323698848429624e-14 - syst_JES_EtaIntercalibration_Stat117: 5.089631298041146e-14 - syst_JES_EtaIntercalibration_Stat118: 1.3717842395945507e-18 - syst_JES_EtaIntercalibration_Stat119: 1.3717842395945507e-18 + syst_JES_EtaIntercalibration_Stat116: 4.63236988e-14 + syst_JES_EtaIntercalibration_Stat117: 5.08963130e-14 + syst_JES_EtaIntercalibration_Stat118: 1.37178424e-18 + syst_JES_EtaIntercalibration_Stat119: 1.37178424e-18 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 1.3717842395945507e-18 - syst_JES_EtaIntercalibration_Stat121: 1.0091794030300062e-16 - syst_JES_EtaIntercalibration_Stat122: 6.817386245018487e-07 - syst_JES_EtaIntercalibration_Stat123: 6.082095362619696e-07 - syst_JES_EtaIntercalibration_Stat124: 2.4671576419029247e-06 - syst_JES_EtaIntercalibration_Stat125: 9.692997059733382e-09 - syst_JES_EtaIntercalibration_Stat126: 9.688090901720525e-13 + syst_JES_EtaIntercalibration_Stat120: 1.37178424e-18 + syst_JES_EtaIntercalibration_Stat121: 1.00917940e-16 + syst_JES_EtaIntercalibration_Stat122: 6.81738625e-07 + syst_JES_EtaIntercalibration_Stat123: 6.08209536e-07 + syst_JES_EtaIntercalibration_Stat124: 2.46715764e-06 + syst_JES_EtaIntercalibration_Stat125: 9.69299706e-09 + syst_JES_EtaIntercalibration_Stat126: 9.68809090e-13 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 5.931725634248435e-09 - syst_JES_EtaIntercalibration_Stat129: 2.4442506965325795e-06 + syst_JES_EtaIntercalibration_Stat128: 5.93172563e-09 + syst_JES_EtaIntercalibration_Stat129: 2.44425070e-06 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 2.8591942693703062e-06 - syst_JES_EtaIntercalibration_Stat131: 8.179982090444941e-07 - syst_JES_EtaIntercalibration_Stat132: 1.472043760310389e-06 - syst_JES_EtaIntercalibration_Stat133: 8.11768677440444e-12 + syst_JES_EtaIntercalibration_Stat130: 2.85919427e-06 + syst_JES_EtaIntercalibration_Stat131: 8.17998209e-07 + syst_JES_EtaIntercalibration_Stat132: 1.47204376e-06 + syst_JES_EtaIntercalibration_Stat133: 8.11768677e-12 syst_JES_EtaIntercalibration_Stat134: 0.0 - syst_JES_EtaIntercalibration_Stat135: 4.6323698848429624e-14 - syst_JES_EtaIntercalibration_Stat136: 4.6323698848429624e-14 - syst_JES_EtaIntercalibration_Stat137: 1.3717842395945507e-18 - syst_JES_EtaIntercalibration_Stat138: 1.3717842395945507e-18 - syst_JES_EtaIntercalibration_Stat139: 1.3717842395945507e-18 + syst_JES_EtaIntercalibration_Stat135: 4.63236988e-14 + syst_JES_EtaIntercalibration_Stat136: 4.63236988e-14 + syst_JES_EtaIntercalibration_Stat137: 1.37178424e-18 + syst_JES_EtaIntercalibration_Stat138: 1.37178424e-18 + syst_JES_EtaIntercalibration_Stat139: 1.37178424e-18 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 5.920149660270423e-17 - syst_JES_EtaIntercalibration_Stat141: 6.395908125512749e-07 - syst_JES_EtaIntercalibration_Stat142: 1.1002052717561391e-06 - syst_JES_EtaIntercalibration_Stat143: 3.968006838451769e-06 - syst_JES_EtaIntercalibration_Stat144: 1.936661836124211e-06 - syst_JES_EtaIntercalibration_Stat145: 1.9768232850459853e-12 - syst_JES_EtaIntercalibration_Stat146: 7.891805558238036e-07 - syst_JES_EtaIntercalibration_Stat147: 2.441973826129183e-06 - syst_JES_EtaIntercalibration_Stat148: 3.280560703218278e-06 - syst_JES_EtaIntercalibration_Stat149: 8.446792231373992e-07 + syst_JES_EtaIntercalibration_Stat140: 5.92014966e-17 + syst_JES_EtaIntercalibration_Stat141: 6.39590813e-07 + syst_JES_EtaIntercalibration_Stat142: 1.10020527e-06 + syst_JES_EtaIntercalibration_Stat143: 3.96800684e-06 + syst_JES_EtaIntercalibration_Stat144: 1.93666184e-06 + syst_JES_EtaIntercalibration_Stat145: 1.97682329e-12 + syst_JES_EtaIntercalibration_Stat146: 7.89180556e-07 + syst_JES_EtaIntercalibration_Stat147: 2.44197383e-06 + syst_JES_EtaIntercalibration_Stat148: 3.28056070e-06 + syst_JES_EtaIntercalibration_Stat149: 8.44679223e-07 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 1.4709741747573274e-06 - syst_JES_EtaIntercalibration_Stat151: 5.1561841512229976e-11 + syst_JES_EtaIntercalibration_Stat150: 1.47097417e-06 + syst_JES_EtaIntercalibration_Stat151: 5.15618415e-11 syst_JES_EtaIntercalibration_Stat152: 0.0 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 1.3717842395945507e-18 + syst_JES_EtaIntercalibration_Stat156: 1.37178424e-18 syst_JES_EtaIntercalibration_Stat157: 0.0 syst_JES_EtaIntercalibration_Stat158: 0.0 - syst_JES_EtaIntercalibration_Stat159: 8.141871575381179e-07 - syst_JES_EtaIntercalibration_Stat16: 6.821682105612536e-07 - syst_JES_EtaIntercalibration_Stat160: 9.820853768894026e-07 - syst_JES_EtaIntercalibration_Stat161: 3.6156105210600323e-06 - syst_JES_EtaIntercalibration_Stat162: 1.49518025669148e-06 - syst_JES_EtaIntercalibration_Stat163: 1.0988379987514084e-09 - syst_JES_EtaIntercalibration_Stat164: 2.2734641511798683e-06 - syst_JES_EtaIntercalibration_Stat165: 7.731686038633489e-06 - syst_JES_EtaIntercalibration_Stat166: 2.422848891284803e-05 - syst_JES_EtaIntercalibration_Stat167: 1.2147578742593109e-05 - syst_JES_EtaIntercalibration_Stat168: 1.6040519216970503e-06 - syst_JES_EtaIntercalibration_Stat169: 5.1561841512229976e-11 - syst_JES_EtaIntercalibration_Stat17: 7.017046167150605e-16 + syst_JES_EtaIntercalibration_Stat159: 8.14187158e-07 + syst_JES_EtaIntercalibration_Stat16: 6.82168211e-07 + syst_JES_EtaIntercalibration_Stat160: 9.82085377e-07 + syst_JES_EtaIntercalibration_Stat161: 3.61561052e-06 + syst_JES_EtaIntercalibration_Stat162: 1.49518026e-06 + syst_JES_EtaIntercalibration_Stat163: 1.09883800e-09 + syst_JES_EtaIntercalibration_Stat164: 2.27346415e-06 + syst_JES_EtaIntercalibration_Stat165: 7.73168604e-06 + syst_JES_EtaIntercalibration_Stat166: 2.42284889e-05 + syst_JES_EtaIntercalibration_Stat167: 1.21475787e-05 + syst_JES_EtaIntercalibration_Stat168: 1.60405192e-06 + syst_JES_EtaIntercalibration_Stat169: 5.15618415e-11 + syst_JES_EtaIntercalibration_Stat17: 7.01704617e-16 syst_JES_EtaIntercalibration_Stat170: 0.0 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 syst_JES_EtaIntercalibration_Stat175: 0.0 - syst_JES_EtaIntercalibration_Stat176: 5.3927401893656994e-12 - syst_JES_EtaIntercalibration_Stat177: 1.6064857671327188e-06 - syst_JES_EtaIntercalibration_Stat178: 9.990438866736537e-06 - syst_JES_EtaIntercalibration_Stat179: 1.3363849557668628e-05 - syst_JES_EtaIntercalibration_Stat18: 3.740206812463717e-19 - syst_JES_EtaIntercalibration_Stat180: 7.896415497395005e-06 - syst_JES_EtaIntercalibration_Stat181: 1.0570539050052036e-07 - syst_JES_EtaIntercalibration_Stat182: 5.806804176997878e-05 - syst_JES_EtaIntercalibration_Stat183: 0.0001104319885721524 - syst_JES_EtaIntercalibration_Stat184: 4.197891613655598e-05 - syst_JES_EtaIntercalibration_Stat185: 4.583810423654102e-06 - syst_JES_EtaIntercalibration_Stat186: 5.156315254132547e-11 + syst_JES_EtaIntercalibration_Stat176: 5.39274019e-12 + syst_JES_EtaIntercalibration_Stat177: 1.60648577e-06 + syst_JES_EtaIntercalibration_Stat178: 9.99043887e-06 + syst_JES_EtaIntercalibration_Stat179: 1.33638496e-05 + syst_JES_EtaIntercalibration_Stat18: 3.74020681e-19 + syst_JES_EtaIntercalibration_Stat180: 7.89641550e-06 + syst_JES_EtaIntercalibration_Stat181: 1.05705391e-07 + syst_JES_EtaIntercalibration_Stat182: 5.80680418e-05 + syst_JES_EtaIntercalibration_Stat183: 1.10431989e-04 + syst_JES_EtaIntercalibration_Stat184: 4.19789161e-05 + syst_JES_EtaIntercalibration_Stat185: 4.58381042e-06 + syst_JES_EtaIntercalibration_Stat186: 5.15631525e-11 syst_JES_EtaIntercalibration_Stat187: 0.0 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 @@ -51077,31 +51077,31 @@ bins: syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 syst_JES_EtaIntercalibration_Stat192: 0.0 - syst_JES_EtaIntercalibration_Stat193: 6.80957227044016e-07 - syst_JES_EtaIntercalibration_Stat194: 5.567284221907483e-06 - syst_JES_EtaIntercalibration_Stat195: 3.023164401748605e-05 - syst_JES_EtaIntercalibration_Stat196: 9.697506483627635e-05 - syst_JES_EtaIntercalibration_Stat197: 4.628331650821924e-05 - syst_JES_EtaIntercalibration_Stat198: 0.0002076257390113278 - syst_JES_EtaIntercalibration_Stat199: 8.046396522667771e-05 + syst_JES_EtaIntercalibration_Stat193: 6.80957227e-07 + syst_JES_EtaIntercalibration_Stat194: 5.56728422e-06 + syst_JES_EtaIntercalibration_Stat195: 3.02316440e-05 + syst_JES_EtaIntercalibration_Stat196: 9.69750648e-05 + syst_JES_EtaIntercalibration_Stat197: 4.62833165e-05 + syst_JES_EtaIntercalibration_Stat198: 2.07625739e-04 + syst_JES_EtaIntercalibration_Stat199: 8.04639652e-05 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 1.0951254482934819e-05 - syst_JES_EtaIntercalibration_Stat201: 5.156315254132547e-11 + syst_JES_EtaIntercalibration_Stat200: 1.09512545e-05 + syst_JES_EtaIntercalibration_Stat201: 5.15631525e-11 syst_JES_EtaIntercalibration_Stat202: 0.0 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 syst_JES_EtaIntercalibration_Stat207: 0.0 - syst_JES_EtaIntercalibration_Stat208: 6.813021851572179e-07 - syst_JES_EtaIntercalibration_Stat209: 5.785922808852534e-06 + syst_JES_EtaIntercalibration_Stat208: 6.81302185e-07 + syst_JES_EtaIntercalibration_Stat209: 5.78592281e-06 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 6.719741364070494e-05 - syst_JES_EtaIntercalibration_Stat211: 0.00022666206122772288 - syst_JES_EtaIntercalibration_Stat212: 6.104664937570284e-05 - syst_JES_EtaIntercalibration_Stat213: 5.04841054194288e-06 - syst_JES_EtaIntercalibration_Stat214: 5.156315254132547e-11 + syst_JES_EtaIntercalibration_Stat210: 6.71974136e-05 + syst_JES_EtaIntercalibration_Stat211: 2.26662061e-04 + syst_JES_EtaIntercalibration_Stat212: 6.10466494e-05 + syst_JES_EtaIntercalibration_Stat213: 5.04841054e-06 + syst_JES_EtaIntercalibration_Stat214: 5.15631525e-11 syst_JES_EtaIntercalibration_Stat215: 0.0 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 @@ -51109,11 +51109,11 @@ bins: syst_JES_EtaIntercalibration_Stat219: 0.0 syst_JES_EtaIntercalibration_Stat22: 0.0 syst_JES_EtaIntercalibration_Stat220: 0.0 - syst_JES_EtaIntercalibration_Stat221: 6.754998149518622e-07 - syst_JES_EtaIntercalibration_Stat222: 4.1586739172481415e-06 - syst_JES_EtaIntercalibration_Stat223: 6.931466132788935e-05 - syst_JES_EtaIntercalibration_Stat224: 9.297474226907004e-05 - syst_JES_EtaIntercalibration_Stat225: 1.635347658083748e-05 + syst_JES_EtaIntercalibration_Stat221: 6.75499815e-07 + syst_JES_EtaIntercalibration_Stat222: 4.15867392e-06 + syst_JES_EtaIntercalibration_Stat223: 6.93146613e-05 + syst_JES_EtaIntercalibration_Stat224: 9.29747423e-05 + syst_JES_EtaIntercalibration_Stat225: 1.63534766e-05 syst_JES_EtaIntercalibration_Stat226: 0.0 syst_JES_EtaIntercalibration_Stat227: 0.0 syst_JES_EtaIntercalibration_Stat228: 0.0 @@ -51122,296 +51122,296 @@ bins: syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 syst_JES_EtaIntercalibration_Stat232: 0.0 - syst_JES_EtaIntercalibration_Stat233: 6.754998149518622e-07 - syst_JES_EtaIntercalibration_Stat234: 8.24282979322645e-06 - syst_JES_EtaIntercalibration_Stat235: 0.00014730977564303058 - syst_JES_EtaIntercalibration_Stat236: 4.399418825254081e-06 + syst_JES_EtaIntercalibration_Stat233: 6.75499815e-07 + syst_JES_EtaIntercalibration_Stat234: 8.24282979e-06 + syst_JES_EtaIntercalibration_Stat235: 1.47309776e-04 + syst_JES_EtaIntercalibration_Stat236: 4.39941883e-06 syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 syst_JES_EtaIntercalibration_Stat239: 0.0 - syst_JES_EtaIntercalibration_Stat24: 1.5735681586763251e-18 + syst_JES_EtaIntercalibration_Stat24: 1.57356816e-18 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 syst_JES_EtaIntercalibration_Stat243: 0.0 - syst_JES_EtaIntercalibration_Stat244: 6.754998149518622e-07 - syst_JES_EtaIntercalibration_Stat245: 2.0624124902647386e-06 - syst_JES_EtaIntercalibration_Stat25: 1.3811430727842788e-16 - syst_JES_EtaIntercalibration_Stat26: 1.4835015168847294e-06 - syst_JES_EtaIntercalibration_Stat27: 8.09458282616906e-12 - syst_JES_EtaIntercalibration_Stat28: 2.9690521270390317e-17 + syst_JES_EtaIntercalibration_Stat244: 6.75499815e-07 + syst_JES_EtaIntercalibration_Stat245: 2.06241249e-06 + syst_JES_EtaIntercalibration_Stat25: 1.38114307e-16 + syst_JES_EtaIntercalibration_Stat26: 1.48350152e-06 + syst_JES_EtaIntercalibration_Stat27: 8.09458283e-12 + syst_JES_EtaIntercalibration_Stat28: 2.96905213e-17 syst_JES_EtaIntercalibration_Stat29: 0.0 - syst_JES_EtaIntercalibration_Stat3: 7.844974147025598e-18 + syst_JES_EtaIntercalibration_Stat3: 7.84497415e-18 syst_JES_EtaIntercalibration_Stat30: 0.0 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 7.30492428092174e-17 - syst_JES_EtaIntercalibration_Stat36: 7.30492428092174e-17 - syst_JES_EtaIntercalibration_Stat37: 1.1421100214457231e-16 - syst_JES_EtaIntercalibration_Stat38: 6.821682109109343e-07 - syst_JES_EtaIntercalibration_Stat39: 6.821682109919943e-07 - syst_JES_EtaIntercalibration_Stat4: 5.017751248099225e-11 - syst_JES_EtaIntercalibration_Stat40: 9.911286840264486e-16 + syst_JES_EtaIntercalibration_Stat35: 7.30492428e-17 + syst_JES_EtaIntercalibration_Stat36: 7.30492428e-17 + syst_JES_EtaIntercalibration_Stat37: 1.14211002e-16 + syst_JES_EtaIntercalibration_Stat38: 6.82168211e-07 + syst_JES_EtaIntercalibration_Stat39: 6.82168211e-07 + syst_JES_EtaIntercalibration_Stat4: 5.01775125e-11 + syst_JES_EtaIntercalibration_Stat40: 9.91128684e-16 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 syst_JES_EtaIntercalibration_Stat44: 0.0 syst_JES_EtaIntercalibration_Stat45: 0.0 - syst_JES_EtaIntercalibration_Stat46: 1.0307751743227036e-17 - syst_JES_EtaIntercalibration_Stat47: 1.67153554254763e-15 - syst_JES_EtaIntercalibration_Stat48: 1.4791713972184497e-06 - syst_JES_EtaIntercalibration_Stat49: 8.075105959812044e-12 - syst_JES_EtaIntercalibration_Stat5: 5.018617222774126e-11 - syst_JES_EtaIntercalibration_Stat50: 1.0926285004520064e-16 + syst_JES_EtaIntercalibration_Stat46: 1.03077517e-17 + syst_JES_EtaIntercalibration_Stat47: 1.67153554e-15 + syst_JES_EtaIntercalibration_Stat48: 1.47917140e-06 + syst_JES_EtaIntercalibration_Stat49: 8.07510596e-12 + syst_JES_EtaIntercalibration_Stat5: 5.01861722e-11 + syst_JES_EtaIntercalibration_Stat50: 1.09262850e-16 syst_JES_EtaIntercalibration_Stat51: 0.0 syst_JES_EtaIntercalibration_Stat52: 0.0 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 1.3717842395945507e-18 - syst_JES_EtaIntercalibration_Stat57: 7.30492428092174e-17 - syst_JES_EtaIntercalibration_Stat58: 7.30492428092174e-17 - syst_JES_EtaIntercalibration_Stat59: 1.4001892836327522e-16 + syst_JES_EtaIntercalibration_Stat56: 1.37178424e-18 + syst_JES_EtaIntercalibration_Stat57: 7.30492428e-17 + syst_JES_EtaIntercalibration_Stat58: 7.30492428e-17 + syst_JES_EtaIntercalibration_Stat59: 1.40018928e-16 syst_JES_EtaIntercalibration_Stat6: 0.0 - syst_JES_EtaIntercalibration_Stat60: 6.820832035430214e-07 - syst_JES_EtaIntercalibration_Stat61: 6.820846642790493e-07 - syst_JES_EtaIntercalibration_Stat62: 3.796443961129941e-15 - syst_JES_EtaIntercalibration_Stat63: 2.7190550918103886e-18 + syst_JES_EtaIntercalibration_Stat60: 6.82083204e-07 + syst_JES_EtaIntercalibration_Stat61: 6.82084664e-07 + syst_JES_EtaIntercalibration_Stat62: 3.79644396e-15 + syst_JES_EtaIntercalibration_Stat63: 2.71905509e-18 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 7.27375851950008e-17 - syst_JES_EtaIntercalibration_Stat69: 1.4705282981638698e-06 + syst_JES_EtaIntercalibration_Stat68: 7.27375852e-17 + syst_JES_EtaIntercalibration_Stat69: 1.47052830e-06 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 1.469763996215946e-06 - syst_JES_EtaIntercalibration_Stat71: 1.4826355661901717e-06 - syst_JES_EtaIntercalibration_Stat72: 8.072086023666054e-12 + syst_JES_EtaIntercalibration_Stat70: 1.46976400e-06 + syst_JES_EtaIntercalibration_Stat71: 1.48263557e-06 + syst_JES_EtaIntercalibration_Stat72: 8.07208602e-12 syst_JES_EtaIntercalibration_Stat73: 0.0 syst_JES_EtaIntercalibration_Stat74: 0.0 syst_JES_EtaIntercalibration_Stat75: 0.0 - syst_JES_EtaIntercalibration_Stat76: 1.485233567490312e-17 - syst_JES_EtaIntercalibration_Stat77: 1.3717842395945507e-18 - syst_JES_EtaIntercalibration_Stat78: 1.3717842395945507e-18 - syst_JES_EtaIntercalibration_Stat79: 7.30492428092174e-17 + syst_JES_EtaIntercalibration_Stat76: 1.48523357e-17 + syst_JES_EtaIntercalibration_Stat77: 1.37178424e-18 + syst_JES_EtaIntercalibration_Stat78: 1.37178424e-18 + syst_JES_EtaIntercalibration_Stat79: 7.30492428e-17 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 7.216589689735728e-17 - syst_JES_EtaIntercalibration_Stat81: 8.507753684140132e-16 - syst_JES_EtaIntercalibration_Stat82: 6.815652620869786e-07 - syst_JES_EtaIntercalibration_Stat83: 6.755676701947538e-08 - syst_JES_EtaIntercalibration_Stat84: 1.3505469558664e-12 - syst_JES_EtaIntercalibration_Stat85: 7.508734297469848e-18 + syst_JES_EtaIntercalibration_Stat80: 7.21658969e-17 + syst_JES_EtaIntercalibration_Stat81: 8.50775368e-16 + syst_JES_EtaIntercalibration_Stat82: 6.81565262e-07 + syst_JES_EtaIntercalibration_Stat83: 6.75567670e-08 + syst_JES_EtaIntercalibration_Stat84: 1.35054696e-12 + syst_JES_EtaIntercalibration_Stat85: 7.50873430e-18 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 1.1116132061108306e-16 + syst_JES_EtaIntercalibration_Stat89: 1.11161321e-16 syst_JES_EtaIntercalibration_Stat9: 0.0 - syst_JES_EtaIntercalibration_Stat90: 1.470623155481126e-06 - syst_JES_EtaIntercalibration_Stat91: 1.4685393946595373e-06 - syst_JES_EtaIntercalibration_Stat92: 3.366655561161551e-11 - syst_JES_EtaIntercalibration_Stat93: 8.336146102140083e-12 + syst_JES_EtaIntercalibration_Stat90: 1.47062316e-06 + syst_JES_EtaIntercalibration_Stat91: 1.46853939e-06 + syst_JES_EtaIntercalibration_Stat92: 3.36665556e-11 + syst_JES_EtaIntercalibration_Stat93: 8.33614610e-12 syst_JES_EtaIntercalibration_Stat94: 0.0 syst_JES_EtaIntercalibration_Stat95: 0.0 - syst_JES_EtaIntercalibration_Stat96: 5.089631298041146e-14 - syst_JES_EtaIntercalibration_Stat97: 1.485233567490312e-17 - syst_JES_EtaIntercalibration_Stat98: 1.3717842395945507e-18 - syst_JES_EtaIntercalibration_Stat99: 1.3717842395945507e-18 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0007672006435737656 - syst_JES_Flavour_Comp: 0.002017844889975441 - syst_JES_Gjet_Generator: 0.0029400062499933565 - syst_JES_Gjet_OOC: 0.002387112691097762 - syst_JES_Gjet_Purity: 0.0005701297396207288 - syst_JES_Gjet_Stat1: 8.641884486036595e-07 - syst_JES_Gjet_Stat10: 5.1756103746321555e-05 - syst_JES_Gjet_Stat11: 5.6532965604149936e-05 - syst_JES_Gjet_Stat12: 0.000183729366188424 - syst_JES_Gjet_Stat13: 0.0006533872722206946 - syst_JES_Gjet_Stat14: 0.0012484172569698 - syst_JES_Gjet_Stat15: 0.0003851480332287834 - syst_JES_Gjet_Stat2: 1.0938414146026837e-05 - syst_JES_Gjet_Stat3: 2.6465736349069027e-07 - syst_JES_Gjet_Stat4: 2.6335832530412685e-06 - syst_JES_Gjet_Stat5: 3.677143864649956e-06 - syst_JES_Gjet_Stat6: 9.686170434402856e-06 - syst_JES_Gjet_Stat7: 3.878945604155851e-06 - syst_JES_Gjet_Stat8: 1.1963603251111264e-05 - syst_JES_Gjet_Stat9: 3.4542882045365006e-05 - syst_JES_Gjet_Veto: 0.002256965385201997 - syst_JES_Gjet_dPhi: 0.0002193560290942558 - syst_JES_LArESZee: 0.004455195057458203 - syst_JES_LArEsmear: 0.00036278038811380086 - syst_JES_LAr_JVT: 0.0004463535006023813 - syst_JES_MJB_Alpha: 2.102709680388617e-05 - syst_JES_MJB_Asym: 0.00030296063688208734 - syst_JES_MJB_Beta: 2.566899296817076e-05 - syst_JES_MJB_Stat1: 6.457085410616774e-07 - syst_JES_MJB_Stat10: 4.62803975782404e-14 - syst_JES_MJB_Stat11: 3.529919743943161e-07 + syst_JES_EtaIntercalibration_Stat96: 5.08963130e-14 + syst_JES_EtaIntercalibration_Stat97: 1.48523357e-17 + syst_JES_EtaIntercalibration_Stat98: 1.37178424e-18 + syst_JES_EtaIntercalibration_Stat99: 1.37178424e-18 + syst_JES_EtaIntercalibration_TotalStat_MJB: 7.67200644e-04 + syst_JES_Flavour_Comp: 2.01784489e-03 + syst_JES_Gjet_Generator: 2.94000625e-03 + syst_JES_Gjet_OOC: 2.38711269e-03 + syst_JES_Gjet_Purity: 5.70129740e-04 + syst_JES_Gjet_Stat1: 8.64188449e-07 + syst_JES_Gjet_Stat10: 5.17561037e-05 + syst_JES_Gjet_Stat11: 5.65329656e-05 + syst_JES_Gjet_Stat12: 1.83729366e-04 + syst_JES_Gjet_Stat13: 6.53387272e-04 + syst_JES_Gjet_Stat14: 1.24841726e-03 + syst_JES_Gjet_Stat15: 3.85148033e-04 + syst_JES_Gjet_Stat2: 1.09384141e-05 + syst_JES_Gjet_Stat3: 2.64657363e-07 + syst_JES_Gjet_Stat4: 2.63358325e-06 + syst_JES_Gjet_Stat5: 3.67714386e-06 + syst_JES_Gjet_Stat6: 9.68617043e-06 + syst_JES_Gjet_Stat7: 3.87894560e-06 + syst_JES_Gjet_Stat8: 1.19636033e-05 + syst_JES_Gjet_Stat9: 3.45428820e-05 + syst_JES_Gjet_Veto: 2.25696539e-03 + syst_JES_Gjet_dPhi: 2.19356029e-04 + syst_JES_LArESZee: 4.45519506e-03 + syst_JES_LArEsmear: 3.62780388e-04 + syst_JES_LAr_JVT: 4.46353501e-04 + syst_JES_MJB_Alpha: 2.10270968e-05 + syst_JES_MJB_Asym: 3.02960637e-04 + syst_JES_MJB_Beta: 2.56689930e-05 + syst_JES_MJB_Stat1: 6.45708541e-07 + syst_JES_MJB_Stat10: 4.62803976e-14 + syst_JES_MJB_Stat11: 3.52991974e-07 syst_JES_MJB_Stat12: 0.0 syst_JES_MJB_Stat13: 0.0 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 - syst_JES_MJB_Stat16: 3.782798963730428e-08 - syst_JES_MJB_Stat2: 1.6307485542152106e-05 - syst_JES_MJB_Stat3: 2.6004039590032933e-05 - syst_JES_MJB_Stat4: 1.8472322935439127e-05 - syst_JES_MJB_Stat5: 4.587195245918918e-06 - syst_JES_MJB_Stat6: 4.029749961225883e-10 - syst_JES_MJB_Stat7: 1.6367939657204532e-05 - syst_JES_MJB_Stat8: 1.8619445002930073e-10 - syst_JES_MJB_Stat9: 2.1979315985603473e-10 - syst_JES_MJB_Threshold: 0.0002508089711314171 - syst_JES_Pileup_MuOffset: 0.0005671124293294938 - syst_JES_Pileup_NPVOffset: 0.000576108705020155 - syst_JES_Pileup_Pt_term: 0.0006272849591692759 - syst_JES_PunchThrough_MC15: 0.0002337308708750301 + syst_JES_MJB_Stat16: 3.78279896e-08 + syst_JES_MJB_Stat2: 1.63074855e-05 + syst_JES_MJB_Stat3: 2.60040396e-05 + syst_JES_MJB_Stat4: 1.84723229e-05 + syst_JES_MJB_Stat5: 4.58719525e-06 + syst_JES_MJB_Stat6: 4.02974996e-10 + syst_JES_MJB_Stat7: 1.63679397e-05 + syst_JES_MJB_Stat8: 1.86194450e-10 + syst_JES_MJB_Stat9: 2.19793160e-10 + syst_JES_MJB_Threshold: 2.50808971e-04 + syst_JES_Pileup_MuOffset: 5.67112429e-04 + syst_JES_Pileup_NPVOffset: 5.76108705e-04 + syst_JES_Pileup_Pt_term: 6.27284959e-04 + syst_JES_PunchThrough_MC15: 2.33730871e-04 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.0014576594252430847 - syst_JES_Zjet_MuScale: 9.13477108361233e-05 - syst_JES_Zjet_MuSmearID: 1.9702095237562935e-05 - syst_JES_Zjet_MuSmearMS: 0.0004021665658654384 - syst_JES_Zjet_OOC: 0.0007584608411117874 - syst_JES_Zjet_Stat1: 2.2889051421900226e-05 - syst_JES_Zjet_Stat10: 4.209870870941293e-05 - syst_JES_Zjet_Stat11: 6.286437942109983e-05 - syst_JES_Zjet_Stat12: 0.00022583219433907112 - syst_JES_Zjet_Stat13: 0.00044034287492816326 - syst_JES_Zjet_Stat2: 3.4337068060625093e-07 - syst_JES_Zjet_Stat3: 1.039143882000948e-05 - syst_JES_Zjet_Stat4: 2.0121743730352991e-16 - syst_JES_Zjet_Stat5: 2.907474107795287e-16 - syst_JES_Zjet_Stat6: 1.3865970814721197e-05 - syst_JES_Zjet_Stat7: 1.2329389938983192e-10 - syst_JES_Zjet_Stat8: 9.790752473635517e-08 - syst_JES_Zjet_Stat9: 3.1500409521147496e-05 - syst_JES_Zjet_Veto: 0.00014128227171163407 - syst_JES_Zjet_dPhi: 0.0001184197047581187 - syst_PRW: 7.483e-10 - syst_Unfolding_bias: 4.748e-15 - syst_cleaning: 0.000538494596073164 + syst_JES_Zjet_MC: 1.45765943e-03 + syst_JES_Zjet_MuScale: 9.13477108e-05 + syst_JES_Zjet_MuSmearID: 1.97020952e-05 + syst_JES_Zjet_MuSmearMS: 4.02166566e-04 + syst_JES_Zjet_OOC: 7.58460841e-04 + syst_JES_Zjet_Stat1: 2.28890514e-05 + syst_JES_Zjet_Stat10: 4.20987087e-05 + syst_JES_Zjet_Stat11: 6.28643794e-05 + syst_JES_Zjet_Stat12: 2.25832194e-04 + syst_JES_Zjet_Stat13: 4.40342875e-04 + syst_JES_Zjet_Stat2: 3.43370681e-07 + syst_JES_Zjet_Stat3: 1.03914388e-05 + syst_JES_Zjet_Stat4: 2.01217437e-16 + syst_JES_Zjet_Stat5: 2.90747411e-16 + syst_JES_Zjet_Stat6: 1.38659708e-05 + syst_JES_Zjet_Stat7: 1.23293899e-10 + syst_JES_Zjet_Stat8: 9.79075247e-08 + syst_JES_Zjet_Stat9: 3.15004095e-05 + syst_JES_Zjet_Veto: 1.41282272e-04 + syst_JES_Zjet_dPhi: 1.18419705e-04 + syst_PRW: 7.48300000e-10 + syst_Unfolding_bias: 4.74800000e-15 + syst_cleaning: 5.38494596e-04 syst_lumi: 0.001869 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 4.922286536763174e-05 - syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.00019037428266443972 - syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.00018305307290510038 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 4.340861780798831e-05 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.00031688977184503764 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0008698653157242218 -- stat: 0.0006215 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 4.92228654e-05 + syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.90374283e-04 + syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.83053073e-04 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 4.34086178e-05 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 3.16889772e-04 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 8.69865316e-04 +- stat: 6.21500000e-04 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.0003551507144861178 - syst_JER_NP1: 0.0007057517747055264 - syst_JER_NP2: 9.050831520135187e-05 - syst_JER_NP3: 6.306609593916131e-05 - syst_JER_NP4: 5.820336791904744e-05 - syst_JER_NP5: 2.462159806179932e-09 - syst_JER_NP6: 3.4843999483411777e-12 - syst_JER_NP7: 3.8289936367144827e-16 - syst_JER_NP8: 4.3721304589410406e-05 - syst_JES_EtaIntercalibration_Modelling: 0.0026093416794279738 - syst_JES_EtaIntercalibration_NonClosure: 0.0014335884372789843 + syst_JER_NP0: 3.55150714e-04 + syst_JER_NP1: 7.05751775e-04 + syst_JER_NP2: 9.05083152e-05 + syst_JER_NP3: 6.30660959e-05 + syst_JER_NP4: 5.82033679e-05 + syst_JER_NP5: 2.46215981e-09 + syst_JER_NP6: 3.48439995e-12 + syst_JER_NP7: 3.82899364e-16 + syst_JER_NP8: 4.37213046e-05 + syst_JES_EtaIntercalibration_Modelling: 2.60934168e-03 + syst_JES_EtaIntercalibration_NonClosure: 1.43358844e-03 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 2.617994795640358e-19 + syst_JES_EtaIntercalibration_Stat100: 2.61799480e-19 syst_JES_EtaIntercalibration_Stat101: 0.0 - syst_JES_EtaIntercalibration_Stat102: 7.263343942702975e-15 - syst_JES_EtaIntercalibration_Stat103: 6.355772305897413e-07 - syst_JES_EtaIntercalibration_Stat104: 7.472002141327315e-08 - syst_JES_EtaIntercalibration_Stat105: 8.490668878245105e-13 - syst_JES_EtaIntercalibration_Stat106: 9.738398777519845e-17 + syst_JES_EtaIntercalibration_Stat102: 7.26334394e-15 + syst_JES_EtaIntercalibration_Stat103: 6.35577231e-07 + syst_JES_EtaIntercalibration_Stat104: 7.47200214e-08 + syst_JES_EtaIntercalibration_Stat105: 8.49066888e-13 + syst_JES_EtaIntercalibration_Stat106: 9.73839878e-17 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 6.099730567820189e-15 + syst_JES_EtaIntercalibration_Stat109: 6.09973057e-15 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 1.1677102399168855e-06 - syst_JES_EtaIntercalibration_Stat111: 1.1666320935594905e-06 - syst_JES_EtaIntercalibration_Stat112: 4.144016104252009e-07 - syst_JES_EtaIntercalibration_Stat113: 2.169457118151912e-12 - syst_JES_EtaIntercalibration_Stat114: 4.869660845479898e-16 + syst_JES_EtaIntercalibration_Stat110: 1.16771024e-06 + syst_JES_EtaIntercalibration_Stat111: 1.16663209e-06 + syst_JES_EtaIntercalibration_Stat112: 4.14401610e-07 + syst_JES_EtaIntercalibration_Stat113: 2.16945712e-12 + syst_JES_EtaIntercalibration_Stat114: 4.86966085e-16 syst_JES_EtaIntercalibration_Stat115: 0.0 - syst_JES_EtaIntercalibration_Stat116: 4.942406979397791e-15 - syst_JES_EtaIntercalibration_Stat117: 5.5373664317977005e-15 - syst_JES_EtaIntercalibration_Stat118: 2.617994795640358e-19 - syst_JES_EtaIntercalibration_Stat119: 2.617994795640358e-19 + syst_JES_EtaIntercalibration_Stat116: 4.94240698e-15 + syst_JES_EtaIntercalibration_Stat117: 5.53736643e-15 + syst_JES_EtaIntercalibration_Stat118: 2.61799480e-19 + syst_JES_EtaIntercalibration_Stat119: 2.61799480e-19 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 2.617994795640358e-19 - syst_JES_EtaIntercalibration_Stat121: 1.3518656553075088e-17 - syst_JES_EtaIntercalibration_Stat122: 6.356630249761189e-07 - syst_JES_EtaIntercalibration_Stat123: 1.9045747734074397e-07 - syst_JES_EtaIntercalibration_Stat124: 1.3954664998845368e-06 - syst_JES_EtaIntercalibration_Stat125: 1.486779993812131e-09 - syst_JES_EtaIntercalibration_Stat126: 1.037206838918834e-13 + syst_JES_EtaIntercalibration_Stat120: 2.61799480e-19 + syst_JES_EtaIntercalibration_Stat121: 1.35186566e-17 + syst_JES_EtaIntercalibration_Stat122: 6.35663025e-07 + syst_JES_EtaIntercalibration_Stat123: 1.90457477e-07 + syst_JES_EtaIntercalibration_Stat124: 1.39546650e-06 + syst_JES_EtaIntercalibration_Stat125: 1.48677999e-09 + syst_JES_EtaIntercalibration_Stat126: 1.03720684e-13 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 8.558604559155657e-10 - syst_JES_EtaIntercalibration_Stat129: 1.4562128553202653e-06 + syst_JES_EtaIntercalibration_Stat128: 8.55860456e-10 + syst_JES_EtaIntercalibration_Stat129: 1.45621286e-06 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 1.5557155106252555e-06 - syst_JES_EtaIntercalibration_Stat131: 7.384465925170215e-07 - syst_JES_EtaIntercalibration_Stat132: 4.135266245394605e-07 - syst_JES_EtaIntercalibration_Stat133: 8.968430611718015e-13 + syst_JES_EtaIntercalibration_Stat130: 1.55571551e-06 + syst_JES_EtaIntercalibration_Stat131: 7.38446593e-07 + syst_JES_EtaIntercalibration_Stat132: 4.13526625e-07 + syst_JES_EtaIntercalibration_Stat133: 8.96843061e-13 syst_JES_EtaIntercalibration_Stat134: 0.0 - syst_JES_EtaIntercalibration_Stat135: 4.942406979397791e-15 - syst_JES_EtaIntercalibration_Stat136: 4.942406979397791e-15 - syst_JES_EtaIntercalibration_Stat137: 2.617994795640358e-19 - syst_JES_EtaIntercalibration_Stat138: 2.617994795640358e-19 - syst_JES_EtaIntercalibration_Stat139: 2.617994795640358e-19 + syst_JES_EtaIntercalibration_Stat135: 4.94240698e-15 + syst_JES_EtaIntercalibration_Stat136: 4.94240698e-15 + syst_JES_EtaIntercalibration_Stat137: 2.61799480e-19 + syst_JES_EtaIntercalibration_Stat138: 2.61799480e-19 + syst_JES_EtaIntercalibration_Stat139: 2.61799480e-19 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 7.180216622776781e-18 - syst_JES_EtaIntercalibration_Stat141: 6.098840522591159e-07 - syst_JES_EtaIntercalibration_Stat142: 4.815758585103701e-07 - syst_JES_EtaIntercalibration_Stat143: 1.2025229841878284e-06 - syst_JES_EtaIntercalibration_Stat144: 9.434794645353973e-07 - syst_JES_EtaIntercalibration_Stat145: 2.1427023362742198e-13 - syst_JES_EtaIntercalibration_Stat146: 7.540543690109354e-07 - syst_JES_EtaIntercalibration_Stat147: 1.4560803274544988e-06 - syst_JES_EtaIntercalibration_Stat148: 1.5706790911895403e-06 - syst_JES_EtaIntercalibration_Stat149: 7.320361056669268e-07 + syst_JES_EtaIntercalibration_Stat140: 7.18021662e-18 + syst_JES_EtaIntercalibration_Stat141: 6.09884052e-07 + syst_JES_EtaIntercalibration_Stat142: 4.81575859e-07 + syst_JES_EtaIntercalibration_Stat143: 1.20252298e-06 + syst_JES_EtaIntercalibration_Stat144: 9.43479465e-07 + syst_JES_EtaIntercalibration_Stat145: 2.14270234e-13 + syst_JES_EtaIntercalibration_Stat146: 7.54054369e-07 + syst_JES_EtaIntercalibration_Stat147: 1.45608033e-06 + syst_JES_EtaIntercalibration_Stat148: 1.57067909e-06 + syst_JES_EtaIntercalibration_Stat149: 7.32036106e-07 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 4.1333113037564384e-07 - syst_JES_EtaIntercalibration_Stat151: 5.913925091653518e-12 + syst_JES_EtaIntercalibration_Stat150: 4.13331130e-07 + syst_JES_EtaIntercalibration_Stat151: 5.91392509e-12 syst_JES_EtaIntercalibration_Stat152: 0.0 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 2.617994795640358e-19 + syst_JES_EtaIntercalibration_Stat156: 2.61799480e-19 syst_JES_EtaIntercalibration_Stat157: 0.0 syst_JES_EtaIntercalibration_Stat158: 0.0 - syst_JES_EtaIntercalibration_Stat159: 6.539554256025406e-07 - syst_JES_EtaIntercalibration_Stat16: 6.358358514585776e-07 - syst_JES_EtaIntercalibration_Stat160: 4.975745471786112e-07 - syst_JES_EtaIntercalibration_Stat161: 1.1034296352735865e-06 - syst_JES_EtaIntercalibration_Stat162: 6.610617369051092e-07 - syst_JES_EtaIntercalibration_Stat163: 1.4080864914840992e-10 - syst_JES_EtaIntercalibration_Stat164: 1.1673434751249309e-06 - syst_JES_EtaIntercalibration_Stat165: 3.5623552251284543e-06 - syst_JES_EtaIntercalibration_Stat166: 1.068063625211532e-05 - syst_JES_EtaIntercalibration_Stat167: 3.836901206377355e-06 - syst_JES_EtaIntercalibration_Stat168: 4.208330057160441e-07 - syst_JES_EtaIntercalibration_Stat169: 5.913925091653518e-12 - syst_JES_EtaIntercalibration_Stat17: 8.82533772581537e-17 + syst_JES_EtaIntercalibration_Stat159: 6.53955426e-07 + syst_JES_EtaIntercalibration_Stat16: 6.35835851e-07 + syst_JES_EtaIntercalibration_Stat160: 4.97574547e-07 + syst_JES_EtaIntercalibration_Stat161: 1.10342964e-06 + syst_JES_EtaIntercalibration_Stat162: 6.61061737e-07 + syst_JES_EtaIntercalibration_Stat163: 1.40808649e-10 + syst_JES_EtaIntercalibration_Stat164: 1.16734348e-06 + syst_JES_EtaIntercalibration_Stat165: 3.56235523e-06 + syst_JES_EtaIntercalibration_Stat166: 1.06806363e-05 + syst_JES_EtaIntercalibration_Stat167: 3.83690121e-06 + syst_JES_EtaIntercalibration_Stat168: 4.20833006e-07 + syst_JES_EtaIntercalibration_Stat169: 5.91392509e-12 + syst_JES_EtaIntercalibration_Stat17: 8.82533773e-17 syst_JES_EtaIntercalibration_Stat170: 0.0 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 syst_JES_EtaIntercalibration_Stat175: 0.0 - syst_JES_EtaIntercalibration_Stat176: 5.959120803440722e-13 - syst_JES_EtaIntercalibration_Stat177: 9.707793296110089e-07 - syst_JES_EtaIntercalibration_Stat178: 3.0363698720676303e-06 - syst_JES_EtaIntercalibration_Stat179: 5.8341204992697915e-06 - syst_JES_EtaIntercalibration_Stat18: 6.52658461601472e-20 - syst_JES_EtaIntercalibration_Stat180: 1.3831590906327442e-06 - syst_JES_EtaIntercalibration_Stat181: 1.9640948144883434e-08 - syst_JES_EtaIntercalibration_Stat182: 2.3951820390108137e-05 - syst_JES_EtaIntercalibration_Stat183: 4.623501351789572e-05 - syst_JES_EtaIntercalibration_Stat184: 1.8558219203361084e-05 - syst_JES_EtaIntercalibration_Stat185: 1.4585932220807827e-06 - syst_JES_EtaIntercalibration_Stat186: 5.914087482443932e-12 + syst_JES_EtaIntercalibration_Stat176: 5.95912080e-13 + syst_JES_EtaIntercalibration_Stat177: 9.70779330e-07 + syst_JES_EtaIntercalibration_Stat178: 3.03636987e-06 + syst_JES_EtaIntercalibration_Stat179: 5.83412050e-06 + syst_JES_EtaIntercalibration_Stat18: 6.52658462e-20 + syst_JES_EtaIntercalibration_Stat180: 1.38315909e-06 + syst_JES_EtaIntercalibration_Stat181: 1.96409481e-08 + syst_JES_EtaIntercalibration_Stat182: 2.39518204e-05 + syst_JES_EtaIntercalibration_Stat183: 4.62350135e-05 + syst_JES_EtaIntercalibration_Stat184: 1.85582192e-05 + syst_JES_EtaIntercalibration_Stat185: 1.45859322e-06 + syst_JES_EtaIntercalibration_Stat186: 5.91408748e-12 syst_JES_EtaIntercalibration_Stat187: 0.0 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 @@ -51419,31 +51419,31 @@ bins: syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 syst_JES_EtaIntercalibration_Stat192: 0.0 - syst_JES_EtaIntercalibration_Stat193: 6.355762046296122e-07 - syst_JES_EtaIntercalibration_Stat194: 1.842399768644145e-06 - syst_JES_EtaIntercalibration_Stat195: 1.2264373893517761e-05 - syst_JES_EtaIntercalibration_Stat196: 4.249333854558853e-05 - syst_JES_EtaIntercalibration_Stat197: 2.088540878220965e-05 - syst_JES_EtaIntercalibration_Stat198: 8.945744505070552e-05 - syst_JES_EtaIntercalibration_Stat199: 3.557753785747406e-05 + syst_JES_EtaIntercalibration_Stat193: 6.35576205e-07 + syst_JES_EtaIntercalibration_Stat194: 1.84239977e-06 + syst_JES_EtaIntercalibration_Stat195: 1.22643739e-05 + syst_JES_EtaIntercalibration_Stat196: 4.24933385e-05 + syst_JES_EtaIntercalibration_Stat197: 2.08854088e-05 + syst_JES_EtaIntercalibration_Stat198: 8.94574451e-05 + syst_JES_EtaIntercalibration_Stat199: 3.55775379e-05 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 5.043902730029595e-06 - syst_JES_EtaIntercalibration_Stat201: 5.914087482443932e-12 + syst_JES_EtaIntercalibration_Stat200: 5.04390273e-06 + syst_JES_EtaIntercalibration_Stat201: 5.91408748e-12 syst_JES_EtaIntercalibration_Stat202: 0.0 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 syst_JES_EtaIntercalibration_Stat207: 0.0 - syst_JES_EtaIntercalibration_Stat208: 6.356626463777779e-07 - syst_JES_EtaIntercalibration_Stat209: 2.4530219628042467e-06 + syst_JES_EtaIntercalibration_Stat208: 6.35662646e-07 + syst_JES_EtaIntercalibration_Stat209: 2.45302196e-06 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 2.908382153362931e-05 - syst_JES_EtaIntercalibration_Stat211: 9.652722452759119e-05 - syst_JES_EtaIntercalibration_Stat212: 3.180606545927993e-05 - syst_JES_EtaIntercalibration_Stat213: 2.2419003339800814e-06 - syst_JES_EtaIntercalibration_Stat214: 5.914087482443932e-12 + syst_JES_EtaIntercalibration_Stat210: 2.90838215e-05 + syst_JES_EtaIntercalibration_Stat211: 9.65272245e-05 + syst_JES_EtaIntercalibration_Stat212: 3.18060655e-05 + syst_JES_EtaIntercalibration_Stat213: 2.24190033e-06 + syst_JES_EtaIntercalibration_Stat214: 5.91408748e-12 syst_JES_EtaIntercalibration_Stat215: 0.0 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 @@ -51451,11 +51451,11 @@ bins: syst_JES_EtaIntercalibration_Stat219: 0.0 syst_JES_EtaIntercalibration_Stat22: 0.0 syst_JES_EtaIntercalibration_Stat220: 0.0 - syst_JES_EtaIntercalibration_Stat221: 6.347100184336151e-07 - syst_JES_EtaIntercalibration_Stat222: 2.0425578939163513e-06 - syst_JES_EtaIntercalibration_Stat223: 3.375711480562283e-05 - syst_JES_EtaIntercalibration_Stat224: 6.975890964600866e-05 - syst_JES_EtaIntercalibration_Stat225: 9.341226989400269e-06 + syst_JES_EtaIntercalibration_Stat221: 6.34710018e-07 + syst_JES_EtaIntercalibration_Stat222: 2.04255789e-06 + syst_JES_EtaIntercalibration_Stat223: 3.37571148e-05 + syst_JES_EtaIntercalibration_Stat224: 6.97589096e-05 + syst_JES_EtaIntercalibration_Stat225: 9.34122699e-06 syst_JES_EtaIntercalibration_Stat226: 0.0 syst_JES_EtaIntercalibration_Stat227: 0.0 syst_JES_EtaIntercalibration_Stat228: 0.0 @@ -51464,296 +51464,296 @@ bins: syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 syst_JES_EtaIntercalibration_Stat232: 0.0 - syst_JES_EtaIntercalibration_Stat233: 6.347100184336151e-07 - syst_JES_EtaIntercalibration_Stat234: 3.847750872762996e-06 - syst_JES_EtaIntercalibration_Stat235: 0.00010156578606991628 - syst_JES_EtaIntercalibration_Stat236: 3.374908406164529e-06 + syst_JES_EtaIntercalibration_Stat233: 6.34710018e-07 + syst_JES_EtaIntercalibration_Stat234: 3.84775087e-06 + syst_JES_EtaIntercalibration_Stat235: 1.01565786e-04 + syst_JES_EtaIntercalibration_Stat236: 3.37490841e-06 syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 syst_JES_EtaIntercalibration_Stat239: 0.0 - syst_JES_EtaIntercalibration_Stat24: 2.7608889872647903e-19 + syst_JES_EtaIntercalibration_Stat24: 2.76088899e-19 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 syst_JES_EtaIntercalibration_Stat243: 0.0 - syst_JES_EtaIntercalibration_Stat244: 6.347100184336151e-07 - syst_JES_EtaIntercalibration_Stat245: 1.3382818873466082e-06 - syst_JES_EtaIntercalibration_Stat25: 1.8820376271477678e-17 - syst_JES_EtaIntercalibration_Stat26: 4.157787963839405e-07 - syst_JES_EtaIntercalibration_Stat27: 8.944101071540254e-13 - syst_JES_EtaIntercalibration_Stat28: 4.269582264718645e-18 + syst_JES_EtaIntercalibration_Stat244: 6.34710018e-07 + syst_JES_EtaIntercalibration_Stat245: 1.33828189e-06 + syst_JES_EtaIntercalibration_Stat25: 1.88203763e-17 + syst_JES_EtaIntercalibration_Stat26: 4.15778796e-07 + syst_JES_EtaIntercalibration_Stat27: 8.94410107e-13 + syst_JES_EtaIntercalibration_Stat28: 4.26958226e-18 syst_JES_EtaIntercalibration_Stat29: 0.0 - syst_JES_EtaIntercalibration_Stat3: 1.1337830395626845e-18 + syst_JES_EtaIntercalibration_Stat3: 1.13378304e-18 syst_JES_EtaIntercalibration_Stat30: 0.0 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 8.97288920861057e-18 - syst_JES_EtaIntercalibration_Stat36: 8.97288920861057e-18 - syst_JES_EtaIntercalibration_Stat37: 1.5329167133523594e-17 - syst_JES_EtaIntercalibration_Stat38: 6.358358515028464e-07 - syst_JES_EtaIntercalibration_Stat39: 6.357492489706952e-07 - syst_JES_EtaIntercalibration_Stat4: 5.761667104302402e-12 - syst_JES_EtaIntercalibration_Stat40: 1.2647536865631188e-16 + syst_JES_EtaIntercalibration_Stat35: 8.97288921e-18 + syst_JES_EtaIntercalibration_Stat36: 8.97288921e-18 + syst_JES_EtaIntercalibration_Stat37: 1.53291671e-17 + syst_JES_EtaIntercalibration_Stat38: 6.35835852e-07 + syst_JES_EtaIntercalibration_Stat39: 6.35749249e-07 + syst_JES_EtaIntercalibration_Stat4: 5.76166710e-12 + syst_JES_EtaIntercalibration_Stat40: 1.26475369e-16 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 syst_JES_EtaIntercalibration_Stat44: 0.0 syst_JES_EtaIntercalibration_Stat45: 0.0 - syst_JES_EtaIntercalibration_Stat46: 1.4875401868521065e-18 - syst_JES_EtaIntercalibration_Stat47: 2.0787016981760516e-16 - syst_JES_EtaIntercalibration_Stat48: 4.149127718038502e-07 - syst_JES_EtaIntercalibration_Stat49: 8.925230621801924e-13 - syst_JES_EtaIntercalibration_Stat5: 5.763399075227782e-12 - syst_JES_EtaIntercalibration_Stat50: 1.4589373487233784e-17 + syst_JES_EtaIntercalibration_Stat46: 1.48754019e-18 + syst_JES_EtaIntercalibration_Stat47: 2.07870170e-16 + syst_JES_EtaIntercalibration_Stat48: 4.14912772e-07 + syst_JES_EtaIntercalibration_Stat49: 8.92523062e-13 + syst_JES_EtaIntercalibration_Stat5: 5.76339908e-12 + syst_JES_EtaIntercalibration_Stat50: 1.45893735e-17 syst_JES_EtaIntercalibration_Stat51: 0.0 syst_JES_EtaIntercalibration_Stat52: 0.0 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 2.617994795640358e-19 - syst_JES_EtaIntercalibration_Stat57: 8.97288920861057e-18 - syst_JES_EtaIntercalibration_Stat58: 8.97288920861057e-18 - syst_JES_EtaIntercalibration_Stat59: 1.8935785687620675e-17 + syst_JES_EtaIntercalibration_Stat56: 2.61799480e-19 + syst_JES_EtaIntercalibration_Stat57: 8.97288921e-18 + syst_JES_EtaIntercalibration_Stat58: 8.97288921e-18 + syst_JES_EtaIntercalibration_Stat59: 1.89357857e-17 syst_JES_EtaIntercalibration_Stat6: 0.0 - syst_JES_EtaIntercalibration_Stat60: 6.357494252122567e-07 - syst_JES_EtaIntercalibration_Stat61: 6.357495866687816e-07 - syst_JES_EtaIntercalibration_Stat62: 4.53060843044287e-16 - syst_JES_EtaIntercalibration_Stat63: 4.23800591571968e-19 + syst_JES_EtaIntercalibration_Stat60: 6.35749425e-07 + syst_JES_EtaIntercalibration_Stat61: 6.35749587e-07 + syst_JES_EtaIntercalibration_Stat62: 4.53060843e-16 + syst_JES_EtaIntercalibration_Stat63: 4.23800592e-19 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 9.309600676183699e-18 - syst_JES_EtaIntercalibration_Stat69: 4.134425690288789e-07 + syst_JES_EtaIntercalibration_Stat68: 9.30960068e-18 + syst_JES_EtaIntercalibration_Stat69: 4.13442569e-07 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 4.1314416923716535e-07 - syst_JES_EtaIntercalibration_Stat71: 4.1551899714488103e-07 - syst_JES_EtaIntercalibration_Stat72: 8.920755041152217e-13 + syst_JES_EtaIntercalibration_Stat70: 4.13144169e-07 + syst_JES_EtaIntercalibration_Stat71: 4.15518997e-07 + syst_JES_EtaIntercalibration_Stat72: 8.92075504e-13 syst_JES_EtaIntercalibration_Stat73: 0.0 syst_JES_EtaIntercalibration_Stat74: 0.0 syst_JES_EtaIntercalibration_Stat75: 0.0 - syst_JES_EtaIntercalibration_Stat76: 2.3157519297195892e-18 - syst_JES_EtaIntercalibration_Stat77: 2.617994795640358e-19 - syst_JES_EtaIntercalibration_Stat78: 2.617994795640358e-19 - syst_JES_EtaIntercalibration_Stat79: 8.97288920861057e-18 + syst_JES_EtaIntercalibration_Stat76: 2.31575193e-18 + syst_JES_EtaIntercalibration_Stat77: 2.61799480e-19 + syst_JES_EtaIntercalibration_Stat78: 2.61799480e-19 + syst_JES_EtaIntercalibration_Stat79: 8.97288921e-18 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 8.852511677484531e-18 - syst_JES_EtaIntercalibration_Stat81: 1.0709400298336038e-16 - syst_JES_EtaIntercalibration_Stat82: 6.356630077132654e-07 - syst_JES_EtaIntercalibration_Stat83: 3.849265163729655e-08 - syst_JES_EtaIntercalibration_Stat84: 1.4628533863651543e-13 - syst_JES_EtaIntercalibration_Stat85: 1.0115646828058006e-18 + syst_JES_EtaIntercalibration_Stat80: 8.85251168e-18 + syst_JES_EtaIntercalibration_Stat81: 1.07094003e-16 + syst_JES_EtaIntercalibration_Stat82: 6.35663008e-07 + syst_JES_EtaIntercalibration_Stat83: 3.84926516e-08 + syst_JES_EtaIntercalibration_Stat84: 1.46285339e-13 + syst_JES_EtaIntercalibration_Stat85: 1.01156468e-18 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 1.393035953412546e-17 + syst_JES_EtaIntercalibration_Stat89: 1.39303595e-17 syst_JES_EtaIntercalibration_Stat9: 0.0 - syst_JES_EtaIntercalibration_Stat90: 4.1341094111679e-07 - syst_JES_EtaIntercalibration_Stat91: 4.1279253244101634e-07 - syst_JES_EtaIntercalibration_Stat92: 3.6682171078059155e-12 - syst_JES_EtaIntercalibration_Stat93: 9.21163382655027e-13 + syst_JES_EtaIntercalibration_Stat90: 4.13410941e-07 + syst_JES_EtaIntercalibration_Stat91: 4.12792532e-07 + syst_JES_EtaIntercalibration_Stat92: 3.66821711e-12 + syst_JES_EtaIntercalibration_Stat93: 9.21163383e-13 syst_JES_EtaIntercalibration_Stat94: 0.0 syst_JES_EtaIntercalibration_Stat95: 0.0 - syst_JES_EtaIntercalibration_Stat96: 5.5373664317977005e-15 - syst_JES_EtaIntercalibration_Stat97: 2.3157519297195892e-18 - syst_JES_EtaIntercalibration_Stat98: 2.617994795640358e-19 - syst_JES_EtaIntercalibration_Stat99: 2.617994795640358e-19 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0004273170602725803 - syst_JES_Flavour_Comp: 0.0011009110624841591 - syst_JES_Gjet_Generator: 0.0015361487558176127 - syst_JES_Gjet_OOC: 0.001255376902567512 - syst_JES_Gjet_Purity: 0.0002827653974587414 - syst_JES_Gjet_Stat1: 4.158433118375238e-07 - syst_JES_Gjet_Stat10: 2.422370068754979e-05 - syst_JES_Gjet_Stat11: 2.6976539807766307e-05 - syst_JES_Gjet_Stat12: 8.787543968595549e-05 - syst_JES_Gjet_Stat13: 0.0003195714004725704 - syst_JES_Gjet_Stat14: 0.0006978809067455565 - syst_JES_Gjet_Stat15: 0.0003608686326074906 - syst_JES_Gjet_Stat2: 5.381286730885096e-06 - syst_JES_Gjet_Stat3: 5.102621679245396e-07 - syst_JES_Gjet_Stat4: 1.4220137130348704e-06 - syst_JES_Gjet_Stat5: 1.9165142186033017e-06 - syst_JES_Gjet_Stat6: 2.950650092242513e-06 - syst_JES_Gjet_Stat7: 7.776394966017351e-07 - syst_JES_Gjet_Stat8: 5.5103217662401524e-06 - syst_JES_Gjet_Stat9: 1.6867384948473786e-05 - syst_JES_Gjet_Veto: 0.0012176975363365078 - syst_JES_Gjet_dPhi: 0.00010773590615481916 - syst_JES_LArESZee: 0.002344534708636236 - syst_JES_LArEsmear: 0.00019953929437581966 - syst_JES_LAr_JVT: 0.0002462233945018223 - syst_JES_MJB_Alpha: 1.0337745244974843e-05 - syst_JES_MJB_Asym: 0.00019280147172674798 - syst_JES_MJB_Beta: 1.4445303735124435e-05 - syst_JES_MJB_Stat1: 5.128602441211445e-08 - syst_JES_MJB_Stat10: 6.2076700943268565e-12 - syst_JES_MJB_Stat11: 1.7433357119843275e-07 + syst_JES_EtaIntercalibration_Stat96: 5.53736643e-15 + syst_JES_EtaIntercalibration_Stat97: 2.31575193e-18 + syst_JES_EtaIntercalibration_Stat98: 2.61799480e-19 + syst_JES_EtaIntercalibration_Stat99: 2.61799480e-19 + syst_JES_EtaIntercalibration_TotalStat_MJB: 4.27317060e-04 + syst_JES_Flavour_Comp: 1.10091106e-03 + syst_JES_Gjet_Generator: 1.53614876e-03 + syst_JES_Gjet_OOC: 1.25537690e-03 + syst_JES_Gjet_Purity: 2.82765397e-04 + syst_JES_Gjet_Stat1: 4.15843312e-07 + syst_JES_Gjet_Stat10: 2.42237007e-05 + syst_JES_Gjet_Stat11: 2.69765398e-05 + syst_JES_Gjet_Stat12: 8.78754397e-05 + syst_JES_Gjet_Stat13: 3.19571400e-04 + syst_JES_Gjet_Stat14: 6.97880907e-04 + syst_JES_Gjet_Stat15: 3.60868633e-04 + syst_JES_Gjet_Stat2: 5.38128673e-06 + syst_JES_Gjet_Stat3: 5.10262168e-07 + syst_JES_Gjet_Stat4: 1.42201371e-06 + syst_JES_Gjet_Stat5: 1.91651422e-06 + syst_JES_Gjet_Stat6: 2.95065009e-06 + syst_JES_Gjet_Stat7: 7.77639497e-07 + syst_JES_Gjet_Stat8: 5.51032177e-06 + syst_JES_Gjet_Stat9: 1.68673849e-05 + syst_JES_Gjet_Veto: 1.21769754e-03 + syst_JES_Gjet_dPhi: 1.07735906e-04 + syst_JES_LArESZee: 2.34453471e-03 + syst_JES_LArEsmear: 1.99539294e-04 + syst_JES_LAr_JVT: 2.46223395e-04 + syst_JES_MJB_Alpha: 1.03377452e-05 + syst_JES_MJB_Asym: 1.92801472e-04 + syst_JES_MJB_Beta: 1.44453037e-05 + syst_JES_MJB_Stat1: 5.12860244e-08 + syst_JES_MJB_Stat10: 6.20767009e-12 + syst_JES_MJB_Stat11: 1.74333571e-07 syst_JES_MJB_Stat12: 0.0 syst_JES_MJB_Stat13: 0.0 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 - syst_JES_MJB_Stat16: 4.5717481065780515e-08 - syst_JES_MJB_Stat2: 7.00122395585229e-06 - syst_JES_MJB_Stat3: 1.1613006619734614e-05 - syst_JES_MJB_Stat4: 7.873920436208712e-06 - syst_JES_MJB_Stat5: 2.1744732146142888e-06 - syst_JES_MJB_Stat6: 3.3815725631723474e-09 - syst_JES_MJB_Stat7: 1.1413451604883544e-05 - syst_JES_MJB_Stat8: 3.028355155178386e-09 - syst_JES_MJB_Stat9: 3.5778688220084312e-09 - syst_JES_MJB_Threshold: 0.00014403062174412774 - syst_JES_Pileup_MuOffset: 0.00030016400100611664 - syst_JES_Pileup_NPVOffset: 0.0003130955564999286 - syst_JES_Pileup_Pt_term: 0.0003235826440030429 - syst_JES_PunchThrough_MC15: 0.00015780382599924503 + syst_JES_MJB_Stat16: 4.57174811e-08 + syst_JES_MJB_Stat2: 7.00122396e-06 + syst_JES_MJB_Stat3: 1.16130066e-05 + syst_JES_MJB_Stat4: 7.87392044e-06 + syst_JES_MJB_Stat5: 2.17447321e-06 + syst_JES_MJB_Stat6: 3.38157256e-09 + syst_JES_MJB_Stat7: 1.14134516e-05 + syst_JES_MJB_Stat8: 3.02835516e-09 + syst_JES_MJB_Stat9: 3.57786882e-09 + syst_JES_MJB_Threshold: 1.44030622e-04 + syst_JES_Pileup_MuOffset: 3.00164001e-04 + syst_JES_Pileup_NPVOffset: 3.13095556e-04 + syst_JES_Pileup_Pt_term: 3.23582644e-04 + syst_JES_PunchThrough_MC15: 1.57803826e-04 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.0007134155591238531 - syst_JES_Zjet_MuScale: 3.842605756514712e-05 - syst_JES_Zjet_MuSmearID: 9.148413322538504e-06 - syst_JES_Zjet_MuSmearMS: 0.00019759404722814906 - syst_JES_Zjet_OOC: 0.00038858447096480836 - syst_JES_Zjet_Stat1: 9.968818422943474e-06 - syst_JES_Zjet_Stat10: 1.9985605588773138e-05 - syst_JES_Zjet_Stat11: 2.868066029574633e-05 - syst_JES_Zjet_Stat12: 0.0001090635249522039 - syst_JES_Zjet_Stat13: 0.0002183011452100057 - syst_JES_Zjet_Stat2: 1.1661108212772918e-07 - syst_JES_Zjet_Stat3: 5.097425526675206e-06 - syst_JES_Zjet_Stat4: 3.129591709792189e-17 - syst_JES_Zjet_Stat5: 4.561479228276722e-17 - syst_JES_Zjet_Stat6: 6.8126206736762285e-06 - syst_JES_Zjet_Stat7: 1.3536573649469055e-11 - syst_JES_Zjet_Stat8: 1.2678375793058037e-08 - syst_JES_Zjet_Stat9: 1.5036182585683111e-05 - syst_JES_Zjet_Veto: 6.654614092492517e-05 - syst_JES_Zjet_dPhi: 5.506680011585929e-05 + syst_JES_Zjet_MC: 7.13415559e-04 + syst_JES_Zjet_MuScale: 3.84260576e-05 + syst_JES_Zjet_MuSmearID: 9.14841332e-06 + syst_JES_Zjet_MuSmearMS: 1.97594047e-04 + syst_JES_Zjet_OOC: 3.88584471e-04 + syst_JES_Zjet_Stat1: 9.96881842e-06 + syst_JES_Zjet_Stat10: 1.99856056e-05 + syst_JES_Zjet_Stat11: 2.86806603e-05 + syst_JES_Zjet_Stat12: 1.09063525e-04 + syst_JES_Zjet_Stat13: 2.18301145e-04 + syst_JES_Zjet_Stat2: 1.16611082e-07 + syst_JES_Zjet_Stat3: 5.09742553e-06 + syst_JES_Zjet_Stat4: 3.12959171e-17 + syst_JES_Zjet_Stat5: 4.56147923e-17 + syst_JES_Zjet_Stat6: 6.81262067e-06 + syst_JES_Zjet_Stat7: 1.35365736e-11 + syst_JES_Zjet_Stat8: 1.26783758e-08 + syst_JES_Zjet_Stat9: 1.50361826e-05 + syst_JES_Zjet_Veto: 6.65461409e-05 + syst_JES_Zjet_dPhi: 5.50668001e-05 syst_PRW: 3.24e-08 - syst_Unfolding_bias: 2.887e-12 - syst_cleaning: 0.0002641377481542538 - syst_lumi: 0.0009188 + syst_Unfolding_bias: 2.88700000e-12 + syst_cleaning: 2.64137748e-04 + syst_lumi: 9.18800000e-04 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 3.228088085461733e-05 - syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 9.233698216316147e-05 - syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 9.317024149373018e-05 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 2.8466019655020265e-05 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.00015770615079951702 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0004514512459834395 -- stat: 0.0004009 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 3.22808809e-05 + syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 9.23369822e-05 + syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 9.31702415e-05 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 2.84660197e-05 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.57706151e-04 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 4.51451246e-04 +- stat: 4.00900000e-04 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.00020161355981183408 - syst_JER_NP1: 0.00042013858427904476 - syst_JER_NP2: 5.5174478507712434e-05 - syst_JER_NP3: 2.3981455128060934e-05 - syst_JER_NP4: 2.2188850846314687e-05 - syst_JER_NP5: 2.8664000220680993e-10 - syst_JER_NP6: 4.3001363641168404e-13 - syst_JER_NP7: 6.540439797903502e-17 - syst_JER_NP8: 2.1843095018792555e-05 - syst_JES_EtaIntercalibration_Modelling: 0.0014166028483664714 - syst_JES_EtaIntercalibration_NonClosure: 0.0005741829564694515 + syst_JER_NP0: 2.01613560e-04 + syst_JER_NP1: 4.20138584e-04 + syst_JER_NP2: 5.51744785e-05 + syst_JER_NP3: 2.39814551e-05 + syst_JER_NP4: 2.21888508e-05 + syst_JER_NP5: 2.86640002e-10 + syst_JER_NP6: 4.30013636e-13 + syst_JER_NP7: 6.54043980e-17 + syst_JER_NP8: 2.18430950e-05 + syst_JES_EtaIntercalibration_Modelling: 1.41660285e-03 + syst_JES_EtaIntercalibration_NonClosure: 5.74182956e-04 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 5.3918741639619153e-20 + syst_JES_EtaIntercalibration_Stat100: 5.39187416e-20 syst_JES_EtaIntercalibration_Stat101: 0.0 - syst_JES_EtaIntercalibration_Stat102: 8.960307849064117e-16 - syst_JES_EtaIntercalibration_Stat103: 2.9488178811991205e-07 - syst_JES_EtaIntercalibration_Stat104: 2.0656253580937664e-08 - syst_JES_EtaIntercalibration_Stat105: 9.728871414506412e-14 - syst_JES_EtaIntercalibration_Stat106: 1.3444949795369264e-17 + syst_JES_EtaIntercalibration_Stat102: 8.96030785e-16 + syst_JES_EtaIntercalibration_Stat103: 2.94881788e-07 + syst_JES_EtaIntercalibration_Stat104: 2.06562536e-08 + syst_JES_EtaIntercalibration_Stat105: 9.72887141e-14 + syst_JES_EtaIntercalibration_Stat106: 1.34449498e-17 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 7.433012579028775e-16 + syst_JES_EtaIntercalibration_Stat109: 7.43301258e-16 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 4.2901163053186277e-07 - syst_JES_EtaIntercalibration_Stat111: 4.2862537491234696e-07 - syst_JES_EtaIntercalibration_Stat112: 7.977739468550912e-08 - syst_JES_EtaIntercalibration_Stat113: 2.5022616611927297e-13 - syst_JES_EtaIntercalibration_Stat114: 6.582659094165519e-17 + syst_JES_EtaIntercalibration_Stat110: 4.29011631e-07 + syst_JES_EtaIntercalibration_Stat111: 4.28625375e-07 + syst_JES_EtaIntercalibration_Stat112: 7.97773947e-08 + syst_JES_EtaIntercalibration_Stat113: 2.50226166e-13 + syst_JES_EtaIntercalibration_Stat114: 6.58265909e-17 syst_JES_EtaIntercalibration_Stat115: 0.0 - syst_JES_EtaIntercalibration_Stat116: 5.580667701986922e-16 - syst_JES_EtaIntercalibration_Stat117: 6.427640546888104e-16 - syst_JES_EtaIntercalibration_Stat118: 5.3918741639619153e-20 - syst_JES_EtaIntercalibration_Stat119: 5.3918741639619153e-20 + syst_JES_EtaIntercalibration_Stat116: 5.58066770e-16 + syst_JES_EtaIntercalibration_Stat117: 6.42764055e-16 + syst_JES_EtaIntercalibration_Stat118: 5.39187416e-20 + syst_JES_EtaIntercalibration_Stat119: 5.39187416e-20 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 5.3918741639619153e-20 - syst_JES_EtaIntercalibration_Stat121: 1.984064200070149e-18 - syst_JES_EtaIntercalibration_Stat122: 2.949682962055536e-07 - syst_JES_EtaIntercalibration_Stat123: 9.112702459067782e-08 - syst_JES_EtaIntercalibration_Stat124: 5.219888496893396e-07 - syst_JES_EtaIntercalibration_Stat125: 2.1496300303773203e-10 - syst_JES_EtaIntercalibration_Stat126: 1.154170712708913e-14 + syst_JES_EtaIntercalibration_Stat120: 5.39187416e-20 + syst_JES_EtaIntercalibration_Stat121: 1.98406420e-18 + syst_JES_EtaIntercalibration_Stat122: 2.94968296e-07 + syst_JES_EtaIntercalibration_Stat123: 9.11270246e-08 + syst_JES_EtaIntercalibration_Stat124: 5.21988850e-07 + syst_JES_EtaIntercalibration_Stat125: 2.14963003e-10 + syst_JES_EtaIntercalibration_Stat126: 1.15417071e-14 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 1.1701943204015306e-10 - syst_JES_EtaIntercalibration_Stat129: 6.923552321604856e-07 + syst_JES_EtaIntercalibration_Stat128: 1.17019432e-10 + syst_JES_EtaIntercalibration_Stat129: 6.92355232e-07 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 1.124259492955252e-06 - syst_JES_EtaIntercalibration_Stat131: 6.272278214492721e-07 - syst_JES_EtaIntercalibration_Stat132: 7.978912317781212e-08 - syst_JES_EtaIntercalibration_Stat133: 1.0345105092619445e-13 + syst_JES_EtaIntercalibration_Stat130: 1.12425949e-06 + syst_JES_EtaIntercalibration_Stat131: 6.27227821e-07 + syst_JES_EtaIntercalibration_Stat132: 7.97891232e-08 + syst_JES_EtaIntercalibration_Stat133: 1.03451051e-13 syst_JES_EtaIntercalibration_Stat134: 0.0 - syst_JES_EtaIntercalibration_Stat135: 5.580667701986922e-16 - syst_JES_EtaIntercalibration_Stat136: 5.580667701986922e-16 - syst_JES_EtaIntercalibration_Stat137: 5.3918741639619153e-20 - syst_JES_EtaIntercalibration_Stat138: 5.3918741639619153e-20 - syst_JES_EtaIntercalibration_Stat139: 5.3918741639619153e-20 + syst_JES_EtaIntercalibration_Stat135: 5.58066770e-16 + syst_JES_EtaIntercalibration_Stat136: 5.58066770e-16 + syst_JES_EtaIntercalibration_Stat137: 5.39187416e-20 + syst_JES_EtaIntercalibration_Stat138: 5.39187416e-20 + syst_JES_EtaIntercalibration_Stat139: 5.39187416e-20 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 9.30457693826001e-19 - syst_JES_EtaIntercalibration_Stat141: 2.921111430924024e-07 - syst_JES_EtaIntercalibration_Stat142: 2.123626877979039e-07 - syst_JES_EtaIntercalibration_Stat143: 4.280615259515856e-07 - syst_JES_EtaIntercalibration_Stat144: 4.6727654210328173e-07 - syst_JES_EtaIntercalibration_Stat145: 2.4420280602145015e-14 - syst_JES_EtaIntercalibration_Stat146: 3.511043576166625e-07 - syst_JES_EtaIntercalibration_Stat147: 6.922415979988489e-07 - syst_JES_EtaIntercalibration_Stat148: 1.1210361769363198e-06 - syst_JES_EtaIntercalibration_Stat149: 6.25434031293469e-07 + syst_JES_EtaIntercalibration_Stat140: 9.30457694e-19 + syst_JES_EtaIntercalibration_Stat141: 2.92111143e-07 + syst_JES_EtaIntercalibration_Stat142: 2.12362688e-07 + syst_JES_EtaIntercalibration_Stat143: 4.28061526e-07 + syst_JES_EtaIntercalibration_Stat144: 4.67276542e-07 + syst_JES_EtaIntercalibration_Stat145: 2.44202806e-14 + syst_JES_EtaIntercalibration_Stat146: 3.51104358e-07 + syst_JES_EtaIntercalibration_Stat147: 6.92241598e-07 + syst_JES_EtaIntercalibration_Stat148: 1.12103618e-06 + syst_JES_EtaIntercalibration_Stat149: 6.25434031e-07 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 7.974329068324103e-08 - syst_JES_EtaIntercalibration_Stat151: 6.90719911105581e-13 + syst_JES_EtaIntercalibration_Stat150: 7.97432907e-08 + syst_JES_EtaIntercalibration_Stat151: 6.90719911e-13 syst_JES_EtaIntercalibration_Stat152: 0.0 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 5.3918741639619153e-20 + syst_JES_EtaIntercalibration_Stat156: 5.39187416e-20 syst_JES_EtaIntercalibration_Stat157: 0.0 syst_JES_EtaIntercalibration_Stat158: 0.0 - syst_JES_EtaIntercalibration_Stat159: 3.000299122100161e-07 - syst_JES_EtaIntercalibration_Stat16: 2.949682525289878e-07 - syst_JES_EtaIntercalibration_Stat160: 2.3054413720587215e-07 - syst_JES_EtaIntercalibration_Stat161: 4.2526476964357164e-07 - syst_JES_EtaIntercalibration_Stat162: 5.812515526860982e-07 - syst_JES_EtaIntercalibration_Stat163: 1.773034316503773e-11 - syst_JES_EtaIntercalibration_Stat164: 4.28947151354555e-07 - syst_JES_EtaIntercalibration_Stat165: 1.6490074310020557e-06 - syst_JES_EtaIntercalibration_Stat166: 5.32452089393966e-06 - syst_JES_EtaIntercalibration_Stat167: 1.2141359767340724e-06 - syst_JES_EtaIntercalibration_Stat168: 7.81449649481654e-08 - syst_JES_EtaIntercalibration_Stat169: 6.90719911105581e-13 - syst_JES_EtaIntercalibration_Stat17: 1.214049010591083e-17 + syst_JES_EtaIntercalibration_Stat159: 3.00029912e-07 + syst_JES_EtaIntercalibration_Stat16: 2.94968253e-07 + syst_JES_EtaIntercalibration_Stat160: 2.30544137e-07 + syst_JES_EtaIntercalibration_Stat161: 4.25264770e-07 + syst_JES_EtaIntercalibration_Stat162: 5.81251553e-07 + syst_JES_EtaIntercalibration_Stat163: 1.77303432e-11 + syst_JES_EtaIntercalibration_Stat164: 4.28947151e-07 + syst_JES_EtaIntercalibration_Stat165: 1.64900743e-06 + syst_JES_EtaIntercalibration_Stat166: 5.32452089e-06 + syst_JES_EtaIntercalibration_Stat167: 1.21413598e-06 + syst_JES_EtaIntercalibration_Stat168: 7.81449649e-08 + syst_JES_EtaIntercalibration_Stat169: 6.90719911e-13 + syst_JES_EtaIntercalibration_Stat17: 1.21404901e-17 syst_JES_EtaIntercalibration_Stat170: 0.0 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 syst_JES_EtaIntercalibration_Stat175: 0.0 - syst_JES_EtaIntercalibration_Stat176: 6.875375680644659e-14 - syst_JES_EtaIntercalibration_Stat177: 3.664478299986507e-07 - syst_JES_EtaIntercalibration_Stat178: 7.823694395872067e-07 - syst_JES_EtaIntercalibration_Stat179: 3.981186844083055e-06 - syst_JES_EtaIntercalibration_Stat18: 1.2434675186750959e-20 - syst_JES_EtaIntercalibration_Stat180: 5.421602415338108e-07 - syst_JES_EtaIntercalibration_Stat181: 3.459045240680584e-09 - syst_JES_EtaIntercalibration_Stat182: 1.0777506889350616e-05 - syst_JES_EtaIntercalibration_Stat183: 2.0794871362910613e-05 - syst_JES_EtaIntercalibration_Stat184: 8.497264309764644e-06 - syst_JES_EtaIntercalibration_Stat185: 7.633756791383913e-07 - syst_JES_EtaIntercalibration_Stat186: 6.907418620584682e-13 + syst_JES_EtaIntercalibration_Stat176: 6.87537568e-14 + syst_JES_EtaIntercalibration_Stat177: 3.66447830e-07 + syst_JES_EtaIntercalibration_Stat178: 7.82369440e-07 + syst_JES_EtaIntercalibration_Stat179: 3.98118684e-06 + syst_JES_EtaIntercalibration_Stat18: 1.24346752e-20 + syst_JES_EtaIntercalibration_Stat180: 5.42160242e-07 + syst_JES_EtaIntercalibration_Stat181: 3.45904524e-09 + syst_JES_EtaIntercalibration_Stat182: 1.07775069e-05 + syst_JES_EtaIntercalibration_Stat183: 2.07948714e-05 + syst_JES_EtaIntercalibration_Stat184: 8.49726431e-06 + syst_JES_EtaIntercalibration_Stat185: 7.63375679e-07 + syst_JES_EtaIntercalibration_Stat186: 6.90741862e-13 syst_JES_EtaIntercalibration_Stat187: 0.0 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 @@ -51761,31 +51761,31 @@ bins: syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 syst_JES_EtaIntercalibration_Stat192: 0.0 - syst_JES_EtaIntercalibration_Stat193: 2.9488166814338507e-07 - syst_JES_EtaIntercalibration_Stat194: 4.0514768603559865e-07 - syst_JES_EtaIntercalibration_Stat195: 6.136811224080467e-06 - syst_JES_EtaIntercalibration_Stat196: 1.9676033009730392e-05 - syst_JES_EtaIntercalibration_Stat197: 1.0774962969773956e-05 - syst_JES_EtaIntercalibration_Stat198: 4.100792362458747e-05 - syst_JES_EtaIntercalibration_Stat199: 1.731751425580473e-05 + syst_JES_EtaIntercalibration_Stat193: 2.94881668e-07 + syst_JES_EtaIntercalibration_Stat194: 4.05147686e-07 + syst_JES_EtaIntercalibration_Stat195: 6.13681122e-06 + syst_JES_EtaIntercalibration_Stat196: 1.96760330e-05 + syst_JES_EtaIntercalibration_Stat197: 1.07749630e-05 + syst_JES_EtaIntercalibration_Stat198: 4.10079236e-05 + syst_JES_EtaIntercalibration_Stat199: 1.73175143e-05 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 2.361342132665235e-06 - syst_JES_EtaIntercalibration_Stat201: 6.907418620584682e-13 + syst_JES_EtaIntercalibration_Stat200: 2.36134213e-06 + syst_JES_EtaIntercalibration_Stat201: 6.90741862e-13 syst_JES_EtaIntercalibration_Stat202: 0.0 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 syst_JES_EtaIntercalibration_Stat207: 0.0 - syst_JES_EtaIntercalibration_Stat208: 2.948816499886014e-07 - syst_JES_EtaIntercalibration_Stat209: 1.4656339652177826e-06 + syst_JES_EtaIntercalibration_Stat208: 2.94881650e-07 + syst_JES_EtaIntercalibration_Stat209: 1.46563397e-06 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 1.3900594618576575e-05 - syst_JES_EtaIntercalibration_Stat211: 4.2164917511481035e-05 - syst_JES_EtaIntercalibration_Stat212: 1.724402124650744e-05 - syst_JES_EtaIntercalibration_Stat213: 1.6910655664402844e-06 - syst_JES_EtaIntercalibration_Stat214: 6.907418620584682e-13 + syst_JES_EtaIntercalibration_Stat210: 1.39005946e-05 + syst_JES_EtaIntercalibration_Stat211: 4.21649175e-05 + syst_JES_EtaIntercalibration_Stat212: 1.72440212e-05 + syst_JES_EtaIntercalibration_Stat213: 1.69106557e-06 + syst_JES_EtaIntercalibration_Stat214: 6.90741862e-13 syst_JES_EtaIntercalibration_Stat215: 0.0 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 @@ -51793,11 +51793,11 @@ bins: syst_JES_EtaIntercalibration_Stat219: 0.0 syst_JES_EtaIntercalibration_Stat22: 0.0 syst_JES_EtaIntercalibration_Stat220: 0.0 - syst_JES_EtaIntercalibration_Stat221: 2.9479504744822294e-07 - syst_JES_EtaIntercalibration_Stat222: 1.3869877820298202e-06 - syst_JES_EtaIntercalibration_Stat223: 1.7776925352827465e-05 - syst_JES_EtaIntercalibration_Stat224: 4.410976422516901e-05 - syst_JES_EtaIntercalibration_Stat225: 4.724582718875817e-06 + syst_JES_EtaIntercalibration_Stat221: 2.94795047e-07 + syst_JES_EtaIntercalibration_Stat222: 1.38698778e-06 + syst_JES_EtaIntercalibration_Stat223: 1.77769254e-05 + syst_JES_EtaIntercalibration_Stat224: 4.41097642e-05 + syst_JES_EtaIntercalibration_Stat225: 4.72458272e-06 syst_JES_EtaIntercalibration_Stat226: 0.0 syst_JES_EtaIntercalibration_Stat227: 0.0 syst_JES_EtaIntercalibration_Stat228: 0.0 @@ -51806,296 +51806,296 @@ bins: syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 syst_JES_EtaIntercalibration_Stat232: 0.0 - syst_JES_EtaIntercalibration_Stat233: 2.9479504744822294e-07 - syst_JES_EtaIntercalibration_Stat234: 1.3432058645938946e-06 - syst_JES_EtaIntercalibration_Stat235: 5.9522883624703535e-05 - syst_JES_EtaIntercalibration_Stat236: 1.975659573408334e-06 + syst_JES_EtaIntercalibration_Stat233: 2.94795047e-07 + syst_JES_EtaIntercalibration_Stat234: 1.34320586e-06 + syst_JES_EtaIntercalibration_Stat235: 5.95228836e-05 + syst_JES_EtaIntercalibration_Stat236: 1.97565957e-06 syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 syst_JES_EtaIntercalibration_Stat239: 0.0 - syst_JES_EtaIntercalibration_Stat24: 5.248113946933698e-20 + syst_JES_EtaIntercalibration_Stat24: 5.24811395e-20 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 syst_JES_EtaIntercalibration_Stat243: 0.0 - syst_JES_EtaIntercalibration_Stat244: 2.9479504744822294e-07 - syst_JES_EtaIntercalibration_Stat245: 6.070865403713049e-07 - syst_JES_EtaIntercalibration_Stat25: 2.8123354116285636e-18 - syst_JES_EtaIntercalibration_Stat26: 8.027189468074024e-08 - syst_JES_EtaIntercalibration_Stat27: 1.0315788246495149e-13 - syst_JES_EtaIntercalibration_Stat28: 6.71267178029732e-19 + syst_JES_EtaIntercalibration_Stat244: 2.94795047e-07 + syst_JES_EtaIntercalibration_Stat245: 6.07086540e-07 + syst_JES_EtaIntercalibration_Stat25: 2.81233541e-18 + syst_JES_EtaIntercalibration_Stat26: 8.02718947e-08 + syst_JES_EtaIntercalibration_Stat27: 1.03157882e-13 + syst_JES_EtaIntercalibration_Stat28: 6.71267178e-19 syst_JES_EtaIntercalibration_Stat29: 0.0 - syst_JES_EtaIntercalibration_Stat3: 1.7966278600478175e-19 + syst_JES_EtaIntercalibration_Stat3: 1.79662786e-19 syst_JES_EtaIntercalibration_Stat30: 0.0 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 1.1814318558427313e-18 - syst_JES_EtaIntercalibration_Stat36: 1.1814318558427313e-18 - syst_JES_EtaIntercalibration_Stat37: 2.253245037423804e-18 - syst_JES_EtaIntercalibration_Stat38: 2.9496825253511996e-07 - syst_JES_EtaIntercalibration_Stat39: 2.9496825253594555e-07 - syst_JES_EtaIntercalibration_Stat4: 6.730749599639808e-13 - syst_JES_EtaIntercalibration_Stat40: 1.7670094569073478e-17 + syst_JES_EtaIntercalibration_Stat35: 1.18143186e-18 + syst_JES_EtaIntercalibration_Stat36: 1.18143186e-18 + syst_JES_EtaIntercalibration_Stat37: 2.25324504e-18 + syst_JES_EtaIntercalibration_Stat38: 2.94968253e-07 + syst_JES_EtaIntercalibration_Stat39: 2.94968253e-07 + syst_JES_EtaIntercalibration_Stat4: 6.73074960e-13 + syst_JES_EtaIntercalibration_Stat40: 1.76700946e-17 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 syst_JES_EtaIntercalibration_Stat44: 0.0 syst_JES_EtaIntercalibration_Stat45: 0.0 - syst_JES_EtaIntercalibration_Stat46: 2.3603971593780563e-19 - syst_JES_EtaIntercalibration_Stat47: 2.8181165252700253e-17 - syst_JES_EtaIntercalibration_Stat48: 8.009002944527286e-08 - syst_JES_EtaIntercalibration_Stat49: 1.0299036032925605e-13 - syst_JES_EtaIntercalibration_Stat5: 6.731615487287803e-13 - syst_JES_EtaIntercalibration_Stat50: 2.133299029672118e-18 + syst_JES_EtaIntercalibration_Stat46: 2.36039716e-19 + syst_JES_EtaIntercalibration_Stat47: 2.81811653e-17 + syst_JES_EtaIntercalibration_Stat48: 8.00900294e-08 + syst_JES_EtaIntercalibration_Stat49: 1.02990360e-13 + syst_JES_EtaIntercalibration_Stat5: 6.73161549e-13 + syst_JES_EtaIntercalibration_Stat50: 2.13329903e-18 syst_JES_EtaIntercalibration_Stat51: 0.0 syst_JES_EtaIntercalibration_Stat52: 0.0 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 5.3918741639619153e-20 - syst_JES_EtaIntercalibration_Stat57: 1.1814318558427313e-18 - syst_JES_EtaIntercalibration_Stat58: 1.1814318558427313e-18 - syst_JES_EtaIntercalibration_Stat59: 2.8083458133748413e-18 + syst_JES_EtaIntercalibration_Stat56: 5.39187416e-20 + syst_JES_EtaIntercalibration_Stat57: 1.18143186e-18 + syst_JES_EtaIntercalibration_Stat58: 1.18143186e-18 + syst_JES_EtaIntercalibration_Stat59: 2.80834581e-18 syst_JES_EtaIntercalibration_Stat6: 0.0 - syst_JES_EtaIntercalibration_Stat60: 2.9496827241581523e-07 - syst_JES_EtaIntercalibration_Stat61: 2.949682915116906e-07 - syst_JES_EtaIntercalibration_Stat62: 5.877185891223792e-17 - syst_JES_EtaIntercalibration_Stat63: 7.23309451777557e-20 + syst_JES_EtaIntercalibration_Stat60: 2.94968272e-07 + syst_JES_EtaIntercalibration_Stat61: 2.94968292e-07 + syst_JES_EtaIntercalibration_Stat62: 5.87718589e-17 + syst_JES_EtaIntercalibration_Stat63: 7.23309452e-20 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 1.2925617461073186e-18 - syst_JES_EtaIntercalibration_Stat69: 7.983046149729701e-08 + syst_JES_EtaIntercalibration_Stat68: 1.29256175e-18 + syst_JES_EtaIntercalibration_Stat69: 7.98304615e-08 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 7.974460244943902e-08 - syst_JES_EtaIntercalibration_Stat71: 8.021127391436256e-08 - syst_JES_EtaIntercalibration_Stat72: 1.0293341834790245e-13 + syst_JES_EtaIntercalibration_Stat70: 7.97446024e-08 + syst_JES_EtaIntercalibration_Stat71: 8.02112739e-08 + syst_JES_EtaIntercalibration_Stat72: 1.02933418e-13 syst_JES_EtaIntercalibration_Stat73: 0.0 syst_JES_EtaIntercalibration_Stat74: 0.0 syst_JES_EtaIntercalibration_Stat75: 0.0 - syst_JES_EtaIntercalibration_Stat76: 3.952539942872178e-19 - syst_JES_EtaIntercalibration_Stat77: 5.3918741639619153e-20 - syst_JES_EtaIntercalibration_Stat78: 5.3918741639619153e-20 - syst_JES_EtaIntercalibration_Stat79: 1.1814318558427313e-18 + syst_JES_EtaIntercalibration_Stat76: 3.95253994e-19 + syst_JES_EtaIntercalibration_Stat77: 5.39187416e-20 + syst_JES_EtaIntercalibration_Stat78: 5.39187416e-20 + syst_JES_EtaIntercalibration_Stat79: 1.18143186e-18 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 1.1635917325247716e-18 - syst_JES_EtaIntercalibration_Stat81: 1.4711430929722643e-17 - syst_JES_EtaIntercalibration_Stat82: 2.948816917021819e-07 - syst_JES_EtaIntercalibration_Stat83: 1.9372734896882774e-08 - syst_JES_EtaIntercalibration_Stat84: 1.6624329663177402e-14 - syst_JES_EtaIntercalibration_Stat85: 1.478646951608125e-19 + syst_JES_EtaIntercalibration_Stat80: 1.16359173e-18 + syst_JES_EtaIntercalibration_Stat81: 1.47114309e-17 + syst_JES_EtaIntercalibration_Stat82: 2.94881692e-07 + syst_JES_EtaIntercalibration_Stat83: 1.93727349e-08 + syst_JES_EtaIntercalibration_Stat84: 1.66243297e-14 + syst_JES_EtaIntercalibration_Stat85: 1.47864695e-19 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 1.8802240205624434e-18 + syst_JES_EtaIntercalibration_Stat89: 1.88022402e-18 syst_JES_EtaIntercalibration_Stat9: 0.0 - syst_JES_EtaIntercalibration_Stat90: 7.982415866946528e-08 - syst_JES_EtaIntercalibration_Stat91: 7.964365057133117e-08 - syst_JES_EtaIntercalibration_Stat92: 4.2491677076222824e-13 - syst_JES_EtaIntercalibration_Stat93: 1.0625738298505509e-13 + syst_JES_EtaIntercalibration_Stat90: 7.98241587e-08 + syst_JES_EtaIntercalibration_Stat91: 7.96436506e-08 + syst_JES_EtaIntercalibration_Stat92: 4.24916771e-13 + syst_JES_EtaIntercalibration_Stat93: 1.06257383e-13 syst_JES_EtaIntercalibration_Stat94: 0.0 syst_JES_EtaIntercalibration_Stat95: 0.0 - syst_JES_EtaIntercalibration_Stat96: 6.427640546888104e-16 - syst_JES_EtaIntercalibration_Stat97: 3.952539942872178e-19 - syst_JES_EtaIntercalibration_Stat98: 5.3918741639619153e-20 - syst_JES_EtaIntercalibration_Stat99: 5.3918741639619153e-20 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.00024314810301542556 - syst_JES_Flavour_Comp: 0.0006235785014735514 - syst_JES_Gjet_Generator: 0.0008268144834241839 - syst_JES_Gjet_OOC: 0.0006818241048833635 - syst_JES_Gjet_Purity: 0.00014524654901236037 - syst_JES_Gjet_Stat1: 2.142738143124353e-07 - syst_JES_Gjet_Stat10: 1.1187229415722196e-05 - syst_JES_Gjet_Stat11: 1.3301118449213208e-05 - syst_JES_Gjet_Stat12: 4.4162458499838975e-05 - syst_JES_Gjet_Stat13: 0.00015839109823471772 - syst_JES_Gjet_Stat14: 0.0003793611370449008 - syst_JES_Gjet_Stat15: 0.0002799676409873112 - syst_JES_Gjet_Stat2: 2.075252439463691e-06 - syst_JES_Gjet_Stat3: 6.108077172916951e-07 - syst_JES_Gjet_Stat4: 9.105391095425361e-07 - syst_JES_Gjet_Stat5: 1.127998088434087e-06 - syst_JES_Gjet_Stat6: 7.506657552699254e-07 - syst_JES_Gjet_Stat7: 1.3715783506147215e-07 - syst_JES_Gjet_Stat8: 2.1676634609643627e-06 - syst_JES_Gjet_Stat9: 7.874501555654174e-06 - syst_JES_Gjet_Veto: 0.0006727806180323568 - syst_JES_Gjet_dPhi: 5.201573103398625e-05 - syst_JES_LArESZee: 0.0012696234638663543 - syst_JES_LArEsmear: 0.00011191986184319564 - syst_JES_LAr_JVT: 0.0001391659451877506 - syst_JES_MJB_Alpha: 5.164975508170392e-06 - syst_JES_MJB_Asym: 0.00012101332819156739 - syst_JES_MJB_Beta: 7.621889578706844e-06 - syst_JES_MJB_Stat1: 5.354635071599184e-09 - syst_JES_MJB_Stat10: 2.1962404239973364e-10 - syst_JES_MJB_Stat11: 8.730318468055732e-08 + syst_JES_EtaIntercalibration_Stat96: 6.42764055e-16 + syst_JES_EtaIntercalibration_Stat97: 3.95253994e-19 + syst_JES_EtaIntercalibration_Stat98: 5.39187416e-20 + syst_JES_EtaIntercalibration_Stat99: 5.39187416e-20 + syst_JES_EtaIntercalibration_TotalStat_MJB: 2.43148103e-04 + syst_JES_Flavour_Comp: 6.23578501e-04 + syst_JES_Gjet_Generator: 8.26814483e-04 + syst_JES_Gjet_OOC: 6.81824105e-04 + syst_JES_Gjet_Purity: 1.45246549e-04 + syst_JES_Gjet_Stat1: 2.14273814e-07 + syst_JES_Gjet_Stat10: 1.11872294e-05 + syst_JES_Gjet_Stat11: 1.33011184e-05 + syst_JES_Gjet_Stat12: 4.41624585e-05 + syst_JES_Gjet_Stat13: 1.58391098e-04 + syst_JES_Gjet_Stat14: 3.79361137e-04 + syst_JES_Gjet_Stat15: 2.79967641e-04 + syst_JES_Gjet_Stat2: 2.07525244e-06 + syst_JES_Gjet_Stat3: 6.10807717e-07 + syst_JES_Gjet_Stat4: 9.10539110e-07 + syst_JES_Gjet_Stat5: 1.12799809e-06 + syst_JES_Gjet_Stat6: 7.50665755e-07 + syst_JES_Gjet_Stat7: 1.37157835e-07 + syst_JES_Gjet_Stat8: 2.16766346e-06 + syst_JES_Gjet_Stat9: 7.87450156e-06 + syst_JES_Gjet_Veto: 6.72780618e-04 + syst_JES_Gjet_dPhi: 5.20157310e-05 + syst_JES_LArESZee: 1.26962346e-03 + syst_JES_LArEsmear: 1.11919862e-04 + syst_JES_LAr_JVT: 1.39165945e-04 + syst_JES_MJB_Alpha: 5.16497551e-06 + syst_JES_MJB_Asym: 1.21013328e-04 + syst_JES_MJB_Beta: 7.62188958e-06 + syst_JES_MJB_Stat1: 5.35463507e-09 + syst_JES_MJB_Stat10: 2.19624042e-10 + syst_JES_MJB_Stat11: 8.73031847e-08 syst_JES_MJB_Stat12: 0.0 syst_JES_MJB_Stat13: 0.0 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 - syst_JES_MJB_Stat16: 3.8789277835505004e-08 - syst_JES_MJB_Stat2: 2.575261285287378e-06 - syst_JES_MJB_Stat3: 4.889003656165539e-06 - syst_JES_MJB_Stat4: 2.828549788298608e-06 - syst_JES_MJB_Stat5: 9.579898194817885e-07 - syst_JES_MJB_Stat6: 1.7570112883814946e-08 - syst_JES_MJB_Stat7: 6.199094651888693e-06 - syst_JES_MJB_Stat8: 1.9151683196711457e-08 - syst_JES_MJB_Stat9: 2.2687850598681113e-08 - syst_JES_MJB_Threshold: 8.567159797739271e-05 - syst_JES_Pileup_MuOffset: 0.00016145682859513872 - syst_JES_Pileup_NPVOffset: 0.00017337683668818045 - syst_JES_Pileup_Pt_term: 0.00017012442505413502 - syst_JES_PunchThrough_MC15: 0.00010347170482793835 + syst_JES_MJB_Stat16: 3.87892778e-08 + syst_JES_MJB_Stat2: 2.57526129e-06 + syst_JES_MJB_Stat3: 4.88900366e-06 + syst_JES_MJB_Stat4: 2.82854979e-06 + syst_JES_MJB_Stat5: 9.57989819e-07 + syst_JES_MJB_Stat6: 1.75701129e-08 + syst_JES_MJB_Stat7: 6.19909465e-06 + syst_JES_MJB_Stat8: 1.91516832e-08 + syst_JES_MJB_Stat9: 2.26878506e-08 + syst_JES_MJB_Threshold: 8.56715980e-05 + syst_JES_Pileup_MuOffset: 1.61456829e-04 + syst_JES_Pileup_NPVOffset: 1.73376837e-04 + syst_JES_Pileup_Pt_term: 1.70124425e-04 + syst_JES_PunchThrough_MC15: 1.03471705e-04 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.0003582549476280823 - syst_JES_Zjet_MuScale: 1.589471195083447e-05 - syst_JES_Zjet_MuSmearID: 3.7183245581847747e-06 - syst_JES_Zjet_MuSmearMS: 0.00010053292793905885 - syst_JES_Zjet_OOC: 0.00020494664549584608 - syst_JES_Zjet_Stat1: 3.793191268572544e-06 - syst_JES_Zjet_Stat10: 1.009690056403449e-05 - syst_JES_Zjet_Stat11: 1.4170051058482464e-05 - syst_JES_Zjet_Stat12: 5.4629343763219416e-05 - syst_JES_Zjet_Stat13: 0.00011073014799502436 - syst_JES_Zjet_Stat2: 5.1599835997801387e-08 - syst_JES_Zjet_Stat3: 2.4863589342651238e-06 - syst_JES_Zjet_Stat4: 5.330400641602844e-18 - syst_JES_Zjet_Stat5: 7.844816568919887e-18 - syst_JES_Zjet_Stat6: 3.3381715339424225e-06 - syst_JES_Zjet_Stat7: 1.5744611201296779e-12 - syst_JES_Zjet_Stat8: 1.6016526425851517e-09 - syst_JES_Zjet_Stat9: 6.565635746064505e-06 - syst_JES_Zjet_Veto: 3.2215277416157695e-05 - syst_JES_Zjet_dPhi: 2.675869675451329e-05 - syst_PRW: 4.547e-07 + syst_JES_Zjet_MC: 3.58254948e-04 + syst_JES_Zjet_MuScale: 1.58947120e-05 + syst_JES_Zjet_MuSmearID: 3.71832456e-06 + syst_JES_Zjet_MuSmearMS: 1.00532928e-04 + syst_JES_Zjet_OOC: 2.04946645e-04 + syst_JES_Zjet_Stat1: 3.79319127e-06 + syst_JES_Zjet_Stat10: 1.00969006e-05 + syst_JES_Zjet_Stat11: 1.41700511e-05 + syst_JES_Zjet_Stat12: 5.46293438e-05 + syst_JES_Zjet_Stat13: 1.10730148e-04 + syst_JES_Zjet_Stat2: 5.15998360e-08 + syst_JES_Zjet_Stat3: 2.48635893e-06 + syst_JES_Zjet_Stat4: 5.33040064e-18 + syst_JES_Zjet_Stat5: 7.84481657e-18 + syst_JES_Zjet_Stat6: 3.33817153e-06 + syst_JES_Zjet_Stat7: 1.57446112e-12 + syst_JES_Zjet_Stat8: 1.60165264e-09 + syst_JES_Zjet_Stat9: 6.56563575e-06 + syst_JES_Zjet_Veto: 3.22152774e-05 + syst_JES_Zjet_dPhi: 2.67586968e-05 + syst_PRW: 4.54700000e-07 syst_Unfolding_bias: 3.57e-10 - syst_cleaning: 0.00013639900109604908 - syst_lumi: 0.0004591 + syst_cleaning: 1.36399001e-04 + syst_lumi: 4.59100000e-04 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 4.628112439213205e-05 - syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 4.515530865800831e-05 - syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 4.854055932928668e-05 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 4.081193054732893e-05 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 7.918959717033544e-05 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.00024009895355873586 -- stat: 0.00024171 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 4.62811244e-05 + syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 4.51553087e-05 + syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 4.85405593e-05 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 4.08119305e-05 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 7.91895972e-05 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 2.40098954e-04 +- stat: 2.41710000e-04 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.00011152993051194822 - syst_JER_NP1: 0.00022515809445809406 - syst_JER_NP2: 3.5394458256930856e-05 - syst_JER_NP3: 7.148568107728148e-06 - syst_JER_NP4: 6.619579458098151e-06 - syst_JER_NP5: 3.218625508620217e-11 - syst_JER_NP6: 5.333875771894205e-14 - syst_JER_NP7: 1.1289946368340287e-17 - syst_JER_NP8: 1.025742745526382e-05 - syst_JES_EtaIntercalibration_Modelling: 0.0007313688057334685 - syst_JES_EtaIntercalibration_NonClosure: 0.00017899253476053126 + syst_JER_NP0: 1.11529931e-04 + syst_JER_NP1: 2.25158094e-04 + syst_JER_NP2: 3.53944583e-05 + syst_JER_NP3: 7.14856811e-06 + syst_JER_NP4: 6.61957946e-06 + syst_JER_NP5: 3.21862551e-11 + syst_JER_NP6: 5.33387577e-14 + syst_JER_NP7: 1.12899464e-17 + syst_JER_NP8: 1.02574275e-05 + syst_JES_EtaIntercalibration_Modelling: 7.31368806e-04 + syst_JES_EtaIntercalibration_NonClosure: 1.78992535e-04 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 1.1066938634961341e-20 + syst_JES_EtaIntercalibration_Stat100: 1.10669386e-20 syst_JES_EtaIntercalibration_Stat101: 0.0 - syst_JES_EtaIntercalibration_Stat102: 1.1105807129605663e-16 - syst_JES_EtaIntercalibration_Stat103: 8.259285805582862e-08 - syst_JES_EtaIntercalibration_Stat104: 8.140015582755354e-09 - syst_JES_EtaIntercalibration_Stat105: 1.085206029977718e-14 - syst_JES_EtaIntercalibration_Stat106: 1.8783642371755272e-18 + syst_JES_EtaIntercalibration_Stat102: 1.11058071e-16 + syst_JES_EtaIntercalibration_Stat103: 8.25928581e-08 + syst_JES_EtaIntercalibration_Stat104: 8.14001558e-09 + syst_JES_EtaIntercalibration_Stat105: 1.08520603e-14 + syst_JES_EtaIntercalibration_Stat106: 1.87836424e-18 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 9.090062417277451e-17 + syst_JES_EtaIntercalibration_Stat109: 9.09006242e-17 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 1.0672298705834793e-07 - syst_JES_EtaIntercalibration_Stat111: 1.0660488981805665e-07 - syst_JES_EtaIntercalibration_Stat112: 9.592081095919697e-09 - syst_JES_EtaIntercalibration_Stat113: 2.823069129068575e-14 - syst_JES_EtaIntercalibration_Stat114: 8.99280779289761e-18 + syst_JES_EtaIntercalibration_Stat110: 1.06722987e-07 + syst_JES_EtaIntercalibration_Stat111: 1.06604890e-07 + syst_JES_EtaIntercalibration_Stat112: 9.59208110e-09 + syst_JES_EtaIntercalibration_Stat113: 2.82306913e-14 + syst_JES_EtaIntercalibration_Stat114: 8.99280779e-18 syst_JES_EtaIntercalibration_Stat115: 0.0 - syst_JES_EtaIntercalibration_Stat116: 6.15570857009979e-17 - syst_JES_EtaIntercalibration_Stat117: 7.380268491050985e-17 - syst_JES_EtaIntercalibration_Stat118: 1.1066938634961341e-20 - syst_JES_EtaIntercalibration_Stat119: 1.1066938634961341e-20 + syst_JES_EtaIntercalibration_Stat116: 6.15570857e-17 + syst_JES_EtaIntercalibration_Stat117: 7.38026849e-17 + syst_JES_EtaIntercalibration_Stat118: 1.10669386e-20 + syst_JES_EtaIntercalibration_Stat119: 1.10669386e-20 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 1.1066938634961341e-20 - syst_JES_EtaIntercalibration_Stat121: 2.949682525289798e-19 - syst_JES_EtaIntercalibration_Stat122: 8.259284768949439e-08 - syst_JES_EtaIntercalibration_Stat123: 3.910429204074023e-08 - syst_JES_EtaIntercalibration_Stat124: 1.2705245732373693e-07 - syst_JES_EtaIntercalibration_Stat125: 2.7843668042842342e-11 - syst_JES_EtaIntercalibration_Stat126: 1.247902418731128e-15 + syst_JES_EtaIntercalibration_Stat120: 1.10669386e-20 + syst_JES_EtaIntercalibration_Stat121: 2.94968253e-19 + syst_JES_EtaIntercalibration_Stat122: 8.25928477e-08 + syst_JES_EtaIntercalibration_Stat123: 3.91042920e-08 + syst_JES_EtaIntercalibration_Stat124: 1.27052457e-07 + syst_JES_EtaIntercalibration_Stat125: 2.78436680e-11 + syst_JES_EtaIntercalibration_Stat126: 1.24790242e-15 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 1.4470011852102955e-11 - syst_JES_EtaIntercalibration_Stat129: 2.680107835050672e-07 + syst_JES_EtaIntercalibration_Stat128: 1.44700119e-11 + syst_JES_EtaIntercalibration_Stat129: 2.68010784e-07 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 5.834780115822704e-07 - syst_JES_EtaIntercalibration_Stat131: 2.92091128759502e-07 - syst_JES_EtaIntercalibration_Stat132: 9.63580461333728e-09 - syst_JES_EtaIntercalibration_Stat133: 1.167697250265499e-14 + syst_JES_EtaIntercalibration_Stat130: 5.83478012e-07 + syst_JES_EtaIntercalibration_Stat131: 2.92091129e-07 + syst_JES_EtaIntercalibration_Stat132: 9.63580461e-09 + syst_JES_EtaIntercalibration_Stat133: 1.16769725e-14 syst_JES_EtaIntercalibration_Stat134: 0.0 - syst_JES_EtaIntercalibration_Stat135: 6.15570857009979e-17 - syst_JES_EtaIntercalibration_Stat136: 6.15570857009979e-17 - syst_JES_EtaIntercalibration_Stat137: 1.1066938634961341e-20 - syst_JES_EtaIntercalibration_Stat138: 1.1066938634961341e-20 - syst_JES_EtaIntercalibration_Stat139: 1.1066938634961341e-20 + syst_JES_EtaIntercalibration_Stat135: 6.15570857e-17 + syst_JES_EtaIntercalibration_Stat136: 6.15570857e-17 + syst_JES_EtaIntercalibration_Stat137: 1.10669386e-20 + syst_JES_EtaIntercalibration_Stat138: 1.10669386e-20 + syst_JES_EtaIntercalibration_Stat139: 1.10669386e-20 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 1.1807390355197035e-19 - syst_JES_EtaIntercalibration_Stat141: 8.243756597765366e-08 - syst_JES_EtaIntercalibration_Stat142: 7.895177180247444e-08 - syst_JES_EtaIntercalibration_Stat143: 2.439640291108507e-07 - syst_JES_EtaIntercalibration_Stat144: 2.1173348814016172e-07 - syst_JES_EtaIntercalibration_Stat145: 2.7334445082487044e-15 - syst_JES_EtaIntercalibration_Stat146: 9.840035824216261e-08 - syst_JES_EtaIntercalibration_Stat147: 2.679761756201472e-07 - syst_JES_EtaIntercalibration_Stat148: 5.807471114865747e-07 - syst_JES_EtaIntercalibration_Stat149: 2.917639585349774e-07 + syst_JES_EtaIntercalibration_Stat140: 1.18073904e-19 + syst_JES_EtaIntercalibration_Stat141: 8.24375660e-08 + syst_JES_EtaIntercalibration_Stat142: 7.89517718e-08 + syst_JES_EtaIntercalibration_Stat143: 2.43964029e-07 + syst_JES_EtaIntercalibration_Stat144: 2.11733488e-07 + syst_JES_EtaIntercalibration_Stat145: 2.73344451e-15 + syst_JES_EtaIntercalibration_Stat146: 9.84003582e-08 + syst_JES_EtaIntercalibration_Stat147: 2.67976176e-07 + syst_JES_EtaIntercalibration_Stat148: 5.80747111e-07 + syst_JES_EtaIntercalibration_Stat149: 2.91763959e-07 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 9.62426542786347e-09 - syst_JES_EtaIntercalibration_Stat151: 7.744565299042985e-14 + syst_JES_EtaIntercalibration_Stat150: 9.62426543e-09 + syst_JES_EtaIntercalibration_Stat151: 7.74456530e-14 syst_JES_EtaIntercalibration_Stat152: 0.0 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 1.1066938634961341e-20 + syst_JES_EtaIntercalibration_Stat156: 1.10669386e-20 syst_JES_EtaIntercalibration_Stat157: 0.0 syst_JES_EtaIntercalibration_Stat158: 0.0 - syst_JES_EtaIntercalibration_Stat159: 8.364017374926656e-08 - syst_JES_EtaIntercalibration_Stat16: 8.260150301296126e-08 - syst_JES_EtaIntercalibration_Stat160: 9.136080724249322e-08 - syst_JES_EtaIntercalibration_Stat161: 2.4840064412154815e-07 - syst_JES_EtaIntercalibration_Stat162: 3.0436279716811644e-07 - syst_JES_EtaIntercalibration_Stat163: 2.07657032628322e-12 - syst_JES_EtaIntercalibration_Stat164: 1.0671067194020791e-07 - syst_JES_EtaIntercalibration_Stat165: 7.348077911944048e-07 - syst_JES_EtaIntercalibration_Stat166: 2.651647931004416e-06 - syst_JES_EtaIntercalibration_Stat167: 5.256151324876406e-07 - syst_JES_EtaIntercalibration_Stat168: 8.921453299070729e-09 - syst_JES_EtaIntercalibration_Stat169: 7.744565299042985e-14 - syst_JES_EtaIntercalibration_Stat17: 1.6906470095264563e-18 + syst_JES_EtaIntercalibration_Stat159: 8.36401737e-08 + syst_JES_EtaIntercalibration_Stat16: 8.26015030e-08 + syst_JES_EtaIntercalibration_Stat160: 9.13608072e-08 + syst_JES_EtaIntercalibration_Stat161: 2.48400644e-07 + syst_JES_EtaIntercalibration_Stat162: 3.04362797e-07 + syst_JES_EtaIntercalibration_Stat163: 2.07657033e-12 + syst_JES_EtaIntercalibration_Stat164: 1.06710672e-07 + syst_JES_EtaIntercalibration_Stat165: 7.34807791e-07 + syst_JES_EtaIntercalibration_Stat166: 2.65164793e-06 + syst_JES_EtaIntercalibration_Stat167: 5.25615132e-07 + syst_JES_EtaIntercalibration_Stat168: 8.92145330e-09 + syst_JES_EtaIntercalibration_Stat169: 7.74456530e-14 + syst_JES_EtaIntercalibration_Stat17: 1.69064701e-18 syst_JES_EtaIntercalibration_Stat170: 0.0 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 syst_JES_EtaIntercalibration_Stat175: 0.0 - syst_JES_EtaIntercalibration_Stat176: 7.763051719523707e-15 - syst_JES_EtaIntercalibration_Stat177: 8.738734364178546e-08 - syst_JES_EtaIntercalibration_Stat178: 3.554361968061216e-07 - syst_JES_EtaIntercalibration_Stat179: 2.916551559633397e-06 - syst_JES_EtaIntercalibration_Stat18: 2.3833588205513662e-21 - syst_JES_EtaIntercalibration_Stat180: 3.667657665322651e-07 - syst_JES_EtaIntercalibration_Stat181: 5.343442067684462e-10 - syst_JES_EtaIntercalibration_Stat182: 4.8358545263479545e-06 - syst_JES_EtaIntercalibration_Stat183: 8.99830472922539e-06 - syst_JES_EtaIntercalibration_Stat184: 3.3725797247804242e-06 - syst_JES_EtaIntercalibration_Stat185: 3.015163179663747e-07 - syst_JES_EtaIntercalibration_Stat186: 7.744865186044236e-14 + syst_JES_EtaIntercalibration_Stat176: 7.76305172e-15 + syst_JES_EtaIntercalibration_Stat177: 8.73873436e-08 + syst_JES_EtaIntercalibration_Stat178: 3.55436197e-07 + syst_JES_EtaIntercalibration_Stat179: 2.91655156e-06 + syst_JES_EtaIntercalibration_Stat18: 2.38335882e-21 + syst_JES_EtaIntercalibration_Stat180: 3.66765767e-07 + syst_JES_EtaIntercalibration_Stat181: 5.34344207e-10 + syst_JES_EtaIntercalibration_Stat182: 4.83585453e-06 + syst_JES_EtaIntercalibration_Stat183: 8.99830473e-06 + syst_JES_EtaIntercalibration_Stat184: 3.37257972e-06 + syst_JES_EtaIntercalibration_Stat185: 3.01516318e-07 + syst_JES_EtaIntercalibration_Stat186: 7.74486519e-14 syst_JES_EtaIntercalibration_Stat187: 0.0 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 @@ -52103,31 +52103,31 @@ bins: syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 syst_JES_EtaIntercalibration_Stat192: 0.0 - syst_JES_EtaIntercalibration_Stat193: 8.259284472508845e-08 - syst_JES_EtaIntercalibration_Stat194: 2.3775180267455387e-07 - syst_JES_EtaIntercalibration_Stat195: 3.3161940157355093e-06 - syst_JES_EtaIntercalibration_Stat196: 9.359520220075386e-06 - syst_JES_EtaIntercalibration_Stat197: 6.006039210661215e-06 - syst_JES_EtaIntercalibration_Stat198: 1.807044825121945e-05 - syst_JES_EtaIntercalibration_Stat199: 8.389905899353103e-06 + syst_JES_EtaIntercalibration_Stat193: 8.25928447e-08 + syst_JES_EtaIntercalibration_Stat194: 2.37751803e-07 + syst_JES_EtaIntercalibration_Stat195: 3.31619402e-06 + syst_JES_EtaIntercalibration_Stat196: 9.35952022e-06 + syst_JES_EtaIntercalibration_Stat197: 6.00603921e-06 + syst_JES_EtaIntercalibration_Stat198: 1.80704483e-05 + syst_JES_EtaIntercalibration_Stat199: 8.38990590e-06 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 7.484384083376534e-07 - syst_JES_EtaIntercalibration_Stat201: 7.744865186044236e-14 + syst_JES_EtaIntercalibration_Stat200: 7.48438408e-07 + syst_JES_EtaIntercalibration_Stat201: 7.74486519e-14 syst_JES_EtaIntercalibration_Stat202: 0.0 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 syst_JES_EtaIntercalibration_Stat207: 0.0 - syst_JES_EtaIntercalibration_Stat208: 8.260150301295975e-08 - syst_JES_EtaIntercalibration_Stat209: 7.462396850208384e-07 + syst_JES_EtaIntercalibration_Stat208: 8.26015030e-08 + syst_JES_EtaIntercalibration_Stat209: 7.46239685e-07 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 6.42844497137527e-06 - syst_JES_EtaIntercalibration_Stat211: 1.7697915131449806e-05 - syst_JES_EtaIntercalibration_Stat212: 7.944894587091762e-06 - syst_JES_EtaIntercalibration_Stat213: 7.013940172969826e-07 - syst_JES_EtaIntercalibration_Stat214: 7.744865186044236e-14 + syst_JES_EtaIntercalibration_Stat210: 6.42844497e-06 + syst_JES_EtaIntercalibration_Stat211: 1.76979151e-05 + syst_JES_EtaIntercalibration_Stat212: 7.94489459e-06 + syst_JES_EtaIntercalibration_Stat213: 7.01394017e-07 + syst_JES_EtaIntercalibration_Stat214: 7.74486519e-14 syst_JES_EtaIntercalibration_Stat215: 0.0 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 @@ -52135,11 +52135,11 @@ bins: syst_JES_EtaIntercalibration_Stat219: 0.0 syst_JES_EtaIntercalibration_Stat22: 0.0 syst_JES_EtaIntercalibration_Stat220: 0.0 - syst_JES_EtaIntercalibration_Stat221: 8.258418250488408e-08 - syst_JES_EtaIntercalibration_Stat222: 7.385898117358512e-07 - syst_JES_EtaIntercalibration_Stat223: 9.11475172453973e-06 - syst_JES_EtaIntercalibration_Stat224: 2.3440317297340494e-05 - syst_JES_EtaIntercalibration_Stat225: 1.7177115307000765e-06 + syst_JES_EtaIntercalibration_Stat221: 8.25841825e-08 + syst_JES_EtaIntercalibration_Stat222: 7.38589812e-07 + syst_JES_EtaIntercalibration_Stat223: 9.11475172e-06 + syst_JES_EtaIntercalibration_Stat224: 2.34403173e-05 + syst_JES_EtaIntercalibration_Stat225: 1.71771153e-06 syst_JES_EtaIntercalibration_Stat226: 0.0 syst_JES_EtaIntercalibration_Stat227: 0.0 syst_JES_EtaIntercalibration_Stat228: 0.0 @@ -52148,296 +52148,296 @@ bins: syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 syst_JES_EtaIntercalibration_Stat232: 0.0 - syst_JES_EtaIntercalibration_Stat233: 8.258418250488408e-08 - syst_JES_EtaIntercalibration_Stat234: 5.191102385216738e-07 - syst_JES_EtaIntercalibration_Stat235: 2.9223334426447646e-05 - syst_JES_EtaIntercalibration_Stat236: 7.348263633675645e-07 + syst_JES_EtaIntercalibration_Stat233: 8.25841825e-08 + syst_JES_EtaIntercalibration_Stat234: 5.19110239e-07 + syst_JES_EtaIntercalibration_Stat235: 2.92233344e-05 + syst_JES_EtaIntercalibration_Stat236: 7.34826363e-07 syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 syst_JES_EtaIntercalibration_Stat239: 0.0 - syst_JES_EtaIntercalibration_Stat24: 9.980076753211871e-21 + syst_JES_EtaIntercalibration_Stat24: 9.98007675e-21 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 syst_JES_EtaIntercalibration_Stat243: 0.0 - syst_JES_EtaIntercalibration_Stat244: 8.258418250488408e-08 - syst_JES_EtaIntercalibration_Stat245: 8.626985626509413e-08 - syst_JES_EtaIntercalibration_Stat25: 4.264272124290381e-19 - syst_JES_EtaIntercalibration_Stat26: 9.73499156452804e-09 - syst_JES_EtaIntercalibration_Stat27: 1.1644123275545781e-14 - syst_JES_EtaIntercalibration_Stat28: 1.0653536214328087e-19 + syst_JES_EtaIntercalibration_Stat244: 8.25841825e-08 + syst_JES_EtaIntercalibration_Stat245: 8.62698563e-08 + syst_JES_EtaIntercalibration_Stat25: 4.26427212e-19 + syst_JES_EtaIntercalibration_Stat26: 9.73499156e-09 + syst_JES_EtaIntercalibration_Stat27: 1.16441233e-14 + syst_JES_EtaIntercalibration_Stat28: 1.06535362e-19 syst_JES_EtaIntercalibration_Stat29: 0.0 - syst_JES_EtaIntercalibration_Stat3: 2.880989573046039e-20 + syst_JES_EtaIntercalibration_Stat3: 2.88098957e-20 syst_JES_EtaIntercalibration_Stat30: 0.0 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 1.5302668884871032e-19 - syst_JES_EtaIntercalibration_Stat36: 1.5302668884871032e-19 - syst_JES_EtaIntercalibration_Stat37: 3.356929387103637e-19 - syst_JES_EtaIntercalibration_Stat38: 8.260150301382175e-08 - syst_JES_EtaIntercalibration_Stat39: 8.260150301388755e-08 - syst_JES_EtaIntercalibration_Stat4: 7.541349499431845e-14 - syst_JES_EtaIntercalibration_Stat40: 2.500907288865383e-18 + syst_JES_EtaIntercalibration_Stat35: 1.53026689e-19 + syst_JES_EtaIntercalibration_Stat36: 1.53026689e-19 + syst_JES_EtaIntercalibration_Stat37: 3.35692939e-19 + syst_JES_EtaIntercalibration_Stat38: 8.26015030e-08 + syst_JES_EtaIntercalibration_Stat39: 8.26015030e-08 + syst_JES_EtaIntercalibration_Stat4: 7.54134950e-14 + syst_JES_EtaIntercalibration_Stat40: 2.50090729e-18 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 syst_JES_EtaIntercalibration_Stat44: 0.0 syst_JES_EtaIntercalibration_Stat45: 0.0 - syst_JES_EtaIntercalibration_Stat46: 3.8097573085434195e-20 - syst_JES_EtaIntercalibration_Stat47: 3.855824036441497e-18 - syst_JES_EtaIntercalibration_Stat48: 9.6968864587375e-09 - syst_JES_EtaIntercalibration_Stat49: 1.163364307640023e-14 - syst_JES_EtaIntercalibration_Stat5: 7.54221528483108e-14 - syst_JES_EtaIntercalibration_Stat50: 3.1589126293710625e-19 + syst_JES_EtaIntercalibration_Stat46: 3.80975731e-20 + syst_JES_EtaIntercalibration_Stat47: 3.85582404e-18 + syst_JES_EtaIntercalibration_Stat48: 9.69688646e-09 + syst_JES_EtaIntercalibration_Stat49: 1.16336431e-14 + syst_JES_EtaIntercalibration_Stat5: 7.54221528e-14 + syst_JES_EtaIntercalibration_Stat50: 3.15891263e-19 syst_JES_EtaIntercalibration_Stat51: 0.0 syst_JES_EtaIntercalibration_Stat52: 0.0 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 1.1066938634961341e-20 - syst_JES_EtaIntercalibration_Stat57: 1.5302668884871032e-19 - syst_JES_EtaIntercalibration_Stat58: 1.5302668884871032e-19 - syst_JES_EtaIntercalibration_Stat59: 4.2242800200152454e-19 + syst_JES_EtaIntercalibration_Stat56: 1.10669386e-20 + syst_JES_EtaIntercalibration_Stat57: 1.53026689e-19 + syst_JES_EtaIntercalibration_Stat58: 1.53026689e-19 + syst_JES_EtaIntercalibration_Stat59: 4.22428002e-19 syst_JES_EtaIntercalibration_Stat6: 0.0 - syst_JES_EtaIntercalibration_Stat60: 8.260150516647648e-08 - syst_JES_EtaIntercalibration_Stat61: 8.260150741814325e-08 - syst_JES_EtaIntercalibration_Stat62: 7.67816219872959e-18 - syst_JES_EtaIntercalibration_Stat63: 1.2472001960691794e-20 + syst_JES_EtaIntercalibration_Stat60: 8.26015052e-08 + syst_JES_EtaIntercalibration_Stat61: 8.26015074e-08 + syst_JES_EtaIntercalibration_Stat62: 7.67816220e-18 + syst_JES_EtaIntercalibration_Stat63: 1.24720020e-20 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 1.7976314193960897e-19 - syst_JES_EtaIntercalibration_Stat69: 9.653611621804001e-09 + syst_JES_EtaIntercalibration_Stat68: 1.79763142e-19 + syst_JES_EtaIntercalibration_Stat69: 9.65361162e-09 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 9.632469692900713e-09 - syst_JES_EtaIntercalibration_Stat71: 9.72373335655182e-09 - syst_JES_EtaIntercalibration_Stat72: 1.1625202375163523e-14 + syst_JES_EtaIntercalibration_Stat70: 9.63246969e-09 + syst_JES_EtaIntercalibration_Stat71: 9.72373336e-09 + syst_JES_EtaIntercalibration_Stat72: 1.16252024e-14 syst_JES_EtaIntercalibration_Stat73: 0.0 syst_JES_EtaIntercalibration_Stat74: 0.0 syst_JES_EtaIntercalibration_Stat75: 0.0 - syst_JES_EtaIntercalibration_Stat76: 6.819084029398669e-20 - syst_JES_EtaIntercalibration_Stat77: 1.1066938634961341e-20 - syst_JES_EtaIntercalibration_Stat78: 1.1066938634961341e-20 - syst_JES_EtaIntercalibration_Stat79: 1.5302668884871032e-19 + syst_JES_EtaIntercalibration_Stat76: 6.81908403e-20 + syst_JES_EtaIntercalibration_Stat77: 1.10669386e-20 + syst_JES_EtaIntercalibration_Stat78: 1.10669386e-20 + syst_JES_EtaIntercalibration_Stat79: 1.53026689e-19 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 1.5034201009697856e-19 - syst_JES_EtaIntercalibration_Stat81: 2.040471024053025e-18 - syst_JES_EtaIntercalibration_Stat82: 8.25928474758747e-08 - syst_JES_EtaIntercalibration_Stat83: 8.15013660338469e-09 - syst_JES_EtaIntercalibration_Stat84: 1.8548118145785033e-15 - syst_JES_EtaIntercalibration_Stat85: 2.1725493665277207e-20 + syst_JES_EtaIntercalibration_Stat80: 1.50342010e-19 + syst_JES_EtaIntercalibration_Stat81: 2.04047102e-18 + syst_JES_EtaIntercalibration_Stat82: 8.25928475e-08 + syst_JES_EtaIntercalibration_Stat83: 8.15013660e-09 + syst_JES_EtaIntercalibration_Stat84: 1.85481181e-15 + syst_JES_EtaIntercalibration_Stat85: 2.17254937e-20 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 2.5164518413830215e-19 + syst_JES_EtaIntercalibration_Stat89: 2.51645184e-19 syst_JES_EtaIntercalibration_Stat9: 0.0 - syst_JES_EtaIntercalibration_Stat90: 9.651770535403076e-09 - syst_JES_EtaIntercalibration_Stat91: 9.608817956235563e-09 - syst_JES_EtaIntercalibration_Stat92: 4.883489261532168e-14 - syst_JES_EtaIntercalibration_Stat93: 1.1995625122313218e-14 + syst_JES_EtaIntercalibration_Stat90: 9.65177054e-09 + syst_JES_EtaIntercalibration_Stat91: 9.60881796e-09 + syst_JES_EtaIntercalibration_Stat92: 4.88348926e-14 + syst_JES_EtaIntercalibration_Stat93: 1.19956251e-14 syst_JES_EtaIntercalibration_Stat94: 0.0 syst_JES_EtaIntercalibration_Stat95: 0.0 - syst_JES_EtaIntercalibration_Stat96: 7.380268491050985e-17 - syst_JES_EtaIntercalibration_Stat97: 6.819084029398669e-20 - syst_JES_EtaIntercalibration_Stat98: 1.1066938634961341e-20 - syst_JES_EtaIntercalibration_Stat99: 1.1066938634961341e-20 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0001276461659236187 - syst_JES_Flavour_Comp: 0.00033554461700346195 - syst_JES_Gjet_Generator: 0.0004229902215181812 - syst_JES_Gjet_OOC: 0.00035180302372208233 - syst_JES_Gjet_Purity: 6.90103345521524e-05 - syst_JES_Gjet_Stat1: 1.0707531029607152e-07 - syst_JES_Gjet_Stat10: 4.998502850854444e-06 - syst_JES_Gjet_Stat11: 6.216785503779264e-06 - syst_JES_Gjet_Stat12: 2.0791709886394623e-05 - syst_JES_Gjet_Stat13: 7.234501140368976e-05 - syst_JES_Gjet_Stat14: 0.00018932418625204758 - syst_JES_Gjet_Stat15: 0.0001823301058519958 - syst_JES_Gjet_Stat2: 7.442305607135466e-07 - syst_JES_Gjet_Stat3: 4.897373658405391e-07 - syst_JES_Gjet_Stat4: 5.959986828850722e-07 - syst_JES_Gjet_Stat5: 6.73161546362485e-07 - syst_JES_Gjet_Stat6: 1.519770458204949e-07 - syst_JES_Gjet_Stat7: 2.0510088166741263e-08 - syst_JES_Gjet_Stat8: 5.298069719246813e-07 - syst_JES_Gjet_Stat9: 3.1600659407676924e-06 - syst_JES_Gjet_Veto: 0.0003507661150966552 - syst_JES_Gjet_dPhi: 2.3610922790098653e-05 - syst_JES_LArESZee: 0.0006487886154210784 - syst_JES_LArEsmear: 5.700338301364227e-05 - syst_JES_LAr_JVT: 7.191349021567511e-05 - syst_JES_MJB_Alpha: 2.4257371560002126e-06 - syst_JES_MJB_Asym: 6.824039621074895e-05 - syst_JES_MJB_Beta: 3.650297076951409e-06 - syst_JES_MJB_Stat1: 3.1635908000245545e-09 - syst_JES_MJB_Stat10: 2.4802967564386324e-09 - syst_JES_MJB_Stat11: 4.2140549687919355e-08 + syst_JES_EtaIntercalibration_Stat96: 7.38026849e-17 + syst_JES_EtaIntercalibration_Stat97: 6.81908403e-20 + syst_JES_EtaIntercalibration_Stat98: 1.10669386e-20 + syst_JES_EtaIntercalibration_Stat99: 1.10669386e-20 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.27646166e-04 + syst_JES_Flavour_Comp: 3.35544617e-04 + syst_JES_Gjet_Generator: 4.22990222e-04 + syst_JES_Gjet_OOC: 3.51803024e-04 + syst_JES_Gjet_Purity: 6.90103346e-05 + syst_JES_Gjet_Stat1: 1.07075310e-07 + syst_JES_Gjet_Stat10: 4.99850285e-06 + syst_JES_Gjet_Stat11: 6.21678550e-06 + syst_JES_Gjet_Stat12: 2.07917099e-05 + syst_JES_Gjet_Stat13: 7.23450114e-05 + syst_JES_Gjet_Stat14: 1.89324186e-04 + syst_JES_Gjet_Stat15: 1.82330106e-04 + syst_JES_Gjet_Stat2: 7.44230561e-07 + syst_JES_Gjet_Stat3: 4.89737366e-07 + syst_JES_Gjet_Stat4: 5.95998683e-07 + syst_JES_Gjet_Stat5: 6.73161546e-07 + syst_JES_Gjet_Stat6: 1.51977046e-07 + syst_JES_Gjet_Stat7: 2.05100882e-08 + syst_JES_Gjet_Stat8: 5.29806972e-07 + syst_JES_Gjet_Stat9: 3.16006594e-06 + syst_JES_Gjet_Veto: 3.50766115e-04 + syst_JES_Gjet_dPhi: 2.36109228e-05 + syst_JES_LArESZee: 6.48788615e-04 + syst_JES_LArEsmear: 5.70033830e-05 + syst_JES_LAr_JVT: 7.19134902e-05 + syst_JES_MJB_Alpha: 2.42573716e-06 + syst_JES_MJB_Asym: 6.82403962e-05 + syst_JES_MJB_Beta: 3.65029708e-06 + syst_JES_MJB_Stat1: 3.16359080e-09 + syst_JES_MJB_Stat10: 2.48029676e-09 + syst_JES_MJB_Stat11: 4.21405497e-08 syst_JES_MJB_Stat12: 0.0 syst_JES_MJB_Stat13: 0.0 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 - syst_JES_MJB_Stat16: 2.424871130596428e-08 - syst_JES_MJB_Stat2: 7.181968317077151e-07 - syst_JES_MJB_Stat3: 1.8319507853651528e-06 - syst_JES_MJB_Stat4: 7.476074638329395e-07 - syst_JES_MJB_Stat5: 3.403438227733831e-07 - syst_JES_MJB_Stat6: 4.818002983602231e-08 - syst_JES_MJB_Stat7: 2.61651173551257e-06 - syst_JES_MJB_Stat8: 5.3500988886257984e-08 - syst_JES_MJB_Stat9: 6.404295093612958e-08 - syst_JES_MJB_Threshold: 4.574437970942442e-05 - syst_JES_Pileup_MuOffset: 8.099119751553252e-05 - syst_JES_Pileup_NPVOffset: 8.938972913595835e-05 - syst_JES_Pileup_Pt_term: 8.428742655343086e-05 - syst_JES_PunchThrough_MC15: 6.142861466775887e-05 + syst_JES_MJB_Stat16: 2.42487113e-08 + syst_JES_MJB_Stat2: 7.18196832e-07 + syst_JES_MJB_Stat3: 1.83195079e-06 + syst_JES_MJB_Stat4: 7.47607464e-07 + syst_JES_MJB_Stat5: 3.40343823e-07 + syst_JES_MJB_Stat6: 4.81800298e-08 + syst_JES_MJB_Stat7: 2.61651174e-06 + syst_JES_MJB_Stat8: 5.35009889e-08 + syst_JES_MJB_Stat9: 6.40429509e-08 + syst_JES_MJB_Threshold: 4.57443797e-05 + syst_JES_Pileup_MuOffset: 8.09911975e-05 + syst_JES_Pileup_NPVOffset: 8.93897291e-05 + syst_JES_Pileup_Pt_term: 8.42874266e-05 + syst_JES_PunchThrough_MC15: 6.14286147e-05 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.00016895129475680263 - syst_JES_Zjet_MuScale: 5.701959904278528e-06 - syst_JES_Zjet_MuSmearID: 1.027693548680734e-06 - syst_JES_Zjet_MuSmearMS: 4.678982234418079e-05 - syst_JES_Zjet_OOC: 0.00010116752344502657 - syst_JES_Zjet_Stat1: 1.1309425748015258e-06 - syst_JES_Zjet_Stat10: 4.8475497852007665e-06 - syst_JES_Zjet_Stat11: 6.862973146348454e-06 - syst_JES_Zjet_Stat12: 2.5631671814378395e-05 - syst_JES_Zjet_Stat13: 5.1165004397537194e-05 - syst_JES_Zjet_Stat2: 2.1908055978338196e-08 - syst_JES_Zjet_Stat3: 1.0135961325893072e-06 - syst_JES_Zjet_Stat4: 9.175174916588784e-19 - syst_JES_Zjet_Stat5: 1.3647820586086264e-18 - syst_JES_Zjet_Stat6: 1.3977333859816096e-06 - syst_JES_Zjet_Stat7: 1.8136210554233757e-13 - syst_JES_Zjet_Stat8: 1.8767493173037256e-10 - syst_JES_Zjet_Stat9: 2.334934009774152e-06 - syst_JES_Zjet_Veto: 1.2720148220441458e-05 - syst_JES_Zjet_dPhi: 1.0817981454504347e-05 + syst_JES_Zjet_MC: 1.68951295e-04 + syst_JES_Zjet_MuScale: 5.70195990e-06 + syst_JES_Zjet_MuSmearID: 1.02769355e-06 + syst_JES_Zjet_MuSmearMS: 4.67898223e-05 + syst_JES_Zjet_OOC: 1.01167523e-04 + syst_JES_Zjet_Stat1: 1.13094257e-06 + syst_JES_Zjet_Stat10: 4.84754979e-06 + syst_JES_Zjet_Stat11: 6.86297315e-06 + syst_JES_Zjet_Stat12: 2.56316718e-05 + syst_JES_Zjet_Stat13: 5.11650044e-05 + syst_JES_Zjet_Stat2: 2.19080560e-08 + syst_JES_Zjet_Stat3: 1.01359613e-06 + syst_JES_Zjet_Stat4: 9.17517492e-19 + syst_JES_Zjet_Stat5: 1.36478206e-18 + syst_JES_Zjet_Stat6: 1.39773339e-06 + syst_JES_Zjet_Stat7: 1.81362106e-13 + syst_JES_Zjet_Stat8: 1.87674932e-10 + syst_JES_Zjet_Stat9: 2.33493401e-06 + syst_JES_Zjet_Veto: 1.27201482e-05 + syst_JES_Zjet_dPhi: 1.08179815e-05 syst_PRW: 2.43e-06 - syst_Unfolding_bias: 1.1252e-08 - syst_cleaning: 6.551482179629278e-05 - syst_lumi: 0.0002156 + syst_Unfolding_bias: 1.12520000e-08 + syst_cleaning: 6.55148218e-05 + syst_lumi: 2.15600000e-04 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 3.6315639537257225e-05 - syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 2.0350707604405307e-05 - syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 2.3641053276028123e-05 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 3.202456669496092e-05 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 3.668626003015298e-05 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.00011950651561735035 -- stat: 0.00016258 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 3.63156395e-05 + syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 2.03507076e-05 + syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 2.36410533e-05 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 3.20245667e-05 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 3.66862600e-05 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.19506516e-04 +- stat: 1.62580000e-04 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 6.47914948122051e-05 - syst_JER_NP1: 0.0001240823416123342 - syst_JER_NP2: 2.465574324635207e-05 - syst_JER_NP3: 1.819137949787294e-06 - syst_JER_NP4: 1.6853521982977327e-06 - syst_JER_NP5: 3.824394044117414e-12 - syst_JER_NP6: 7.217315913828353e-15 - syst_JER_NP7: 2.1263214714619236e-18 - syst_JER_NP8: 4.905174079479749e-06 - syst_JES_EtaIntercalibration_Modelling: 0.00038933296803635837 - syst_JES_EtaIntercalibration_NonClosure: 4.553155389397555e-05 + syst_JER_NP0: 6.47914948e-05 + syst_JER_NP1: 1.24082342e-04 + syst_JER_NP2: 2.46557432e-05 + syst_JER_NP3: 1.81913795e-06 + syst_JER_NP4: 1.68535220e-06 + syst_JER_NP5: 3.82439404e-12 + syst_JER_NP6: 7.21731591e-15 + syst_JER_NP7: 2.12632147e-18 + syst_JER_NP8: 4.90517408e-06 + syst_JES_EtaIntercalibration_Modelling: 3.89332968e-04 + syst_JES_EtaIntercalibration_NonClosure: 4.55315539e-05 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 2.4473877910948238e-21 + syst_JES_EtaIntercalibration_Stat100: 2.44738779e-21 syst_JES_EtaIntercalibration_Stat101: 0.0 - syst_JES_EtaIntercalibration_Stat102: 1.500422329712538e-17 - syst_JES_EtaIntercalibration_Stat103: 1.6541086983305487e-08 - syst_JES_EtaIntercalibration_Stat104: 3.010214198358648e-09 - syst_JES_EtaIntercalibration_Stat105: 1.2895039540458958e-15 - syst_JES_EtaIntercalibration_Stat106: 2.8759867228483516e-19 + syst_JES_EtaIntercalibration_Stat102: 1.50042233e-17 + syst_JES_EtaIntercalibration_Stat103: 1.65410870e-08 + syst_JES_EtaIntercalibration_Stat104: 3.01021420e-09 + syst_JES_EtaIntercalibration_Stat105: 1.28950395e-15 + syst_JES_EtaIntercalibration_Stat106: 2.87598672e-19 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 1.2117469568767235e-17 + syst_JES_EtaIntercalibration_Stat109: 1.21174696e-17 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 1.9592044094656046e-08 - syst_JES_EtaIntercalibration_Stat111: 1.956405651147788e-08 - syst_JES_EtaIntercalibration_Stat112: 4.86855369488722e-10 - syst_JES_EtaIntercalibration_Stat113: 3.407135801153221e-15 - syst_JES_EtaIntercalibration_Stat114: 1.3440714266734488e-18 + syst_JES_EtaIntercalibration_Stat110: 1.95920441e-08 + syst_JES_EtaIntercalibration_Stat111: 1.95640565e-08 + syst_JES_EtaIntercalibration_Stat112: 4.86855369e-10 + syst_JES_EtaIntercalibration_Stat113: 3.40713580e-15 + syst_JES_EtaIntercalibration_Stat114: 1.34407143e-18 syst_JES_EtaIntercalibration_Stat115: 0.0 - syst_JES_EtaIntercalibration_Stat116: 7.12565702233836e-18 - syst_JES_EtaIntercalibration_Stat117: 9.064687901411719e-18 - syst_JES_EtaIntercalibration_Stat118: 2.4473877910948238e-21 - syst_JES_EtaIntercalibration_Stat119: 2.4473877910948238e-21 + syst_JES_EtaIntercalibration_Stat116: 7.12565702e-18 + syst_JES_EtaIntercalibration_Stat117: 9.06468790e-18 + syst_JES_EtaIntercalibration_Stat118: 2.44738779e-21 + syst_JES_EtaIntercalibration_Stat119: 2.44738779e-21 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 2.4473877910948238e-21 - syst_JES_EtaIntercalibration_Stat121: 4.803842914792281e-20 - syst_JES_EtaIntercalibration_Stat122: 1.654108580753099e-08 - syst_JES_EtaIntercalibration_Stat123: 1.417877059127483e-08 - syst_JES_EtaIntercalibration_Stat124: 2.2114431339512216e-08 - syst_JES_EtaIntercalibration_Stat125: 3.578689250270272e-12 - syst_JES_EtaIntercalibration_Stat126: 1.4259992465197868e-16 + syst_JES_EtaIntercalibration_Stat120: 2.44738779e-21 + syst_JES_EtaIntercalibration_Stat121: 4.80384291e-20 + syst_JES_EtaIntercalibration_Stat122: 1.65410858e-08 + syst_JES_EtaIntercalibration_Stat123: 1.41787706e-08 + syst_JES_EtaIntercalibration_Stat124: 2.21144313e-08 + syst_JES_EtaIntercalibration_Stat125: 3.57868925e-12 + syst_JES_EtaIntercalibration_Stat126: 1.42599925e-16 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 1.796397227786772e-12 - syst_JES_EtaIntercalibration_Stat129: 9.810569963055155e-08 + syst_JES_EtaIntercalibration_Stat128: 1.79639723e-12 + syst_JES_EtaIntercalibration_Stat129: 9.81056996e-08 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 2.422895530145697e-07 - syst_JES_EtaIntercalibration_Stat131: 9.926330691650364e-08 - syst_JES_EtaIntercalibration_Stat132: 5.020145296381048e-10 - syst_JES_EtaIntercalibration_Stat133: 1.4103292684203217e-15 + syst_JES_EtaIntercalibration_Stat130: 2.42289553e-07 + syst_JES_EtaIntercalibration_Stat131: 9.92633069e-08 + syst_JES_EtaIntercalibration_Stat132: 5.02014530e-10 + syst_JES_EtaIntercalibration_Stat133: 1.41032927e-15 syst_JES_EtaIntercalibration_Stat134: 0.0 - syst_JES_EtaIntercalibration_Stat135: 7.12565702233836e-18 - syst_JES_EtaIntercalibration_Stat136: 7.12565702233836e-18 - syst_JES_EtaIntercalibration_Stat137: 2.4473877910948238e-21 - syst_JES_EtaIntercalibration_Stat138: 2.4473877910948238e-21 - syst_JES_EtaIntercalibration_Stat139: 2.4473877910948238e-21 + syst_JES_EtaIntercalibration_Stat135: 7.12565702e-18 + syst_JES_EtaIntercalibration_Stat136: 7.12565702e-18 + syst_JES_EtaIntercalibration_Stat137: 2.44738779e-21 + syst_JES_EtaIntercalibration_Stat138: 2.44738779e-21 + syst_JES_EtaIntercalibration_Stat139: 2.44738779e-21 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 1.564041879234696e-20 - syst_JES_EtaIntercalibration_Stat141: 1.6550045858169095e-08 - syst_JES_EtaIntercalibration_Stat142: 2.6501980966034877e-08 - syst_JES_EtaIntercalibration_Stat143: 1.6214792844806868e-07 - syst_JES_EtaIntercalibration_Stat144: 9.001993914128138e-08 - syst_JES_EtaIntercalibration_Stat145: 3.2763264199404796e-16 - syst_JES_EtaIntercalibration_Stat146: 1.971107994745688e-08 - syst_JES_EtaIntercalibration_Stat147: 9.809445295224395e-08 - syst_JES_EtaIntercalibration_Stat148: 2.4189094133513973e-07 - syst_JES_EtaIntercalibration_Stat149: 9.919427604453798e-08 + syst_JES_EtaIntercalibration_Stat140: 1.56404188e-20 + syst_JES_EtaIntercalibration_Stat141: 1.65500459e-08 + syst_JES_EtaIntercalibration_Stat142: 2.65019810e-08 + syst_JES_EtaIntercalibration_Stat143: 1.62147928e-07 + syst_JES_EtaIntercalibration_Stat144: 9.00199391e-08 + syst_JES_EtaIntercalibration_Stat145: 3.27632642e-16 + syst_JES_EtaIntercalibration_Stat146: 1.97110799e-08 + syst_JES_EtaIntercalibration_Stat147: 9.80944530e-08 + syst_JES_EtaIntercalibration_Stat148: 2.41890941e-07 + syst_JES_EtaIntercalibration_Stat149: 9.91942760e-08 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 4.986903064143993e-10 - syst_JES_EtaIntercalibration_Stat151: 9.151708242555416e-15 + syst_JES_EtaIntercalibration_Stat150: 4.98690306e-10 + syst_JES_EtaIntercalibration_Stat151: 9.15170824e-15 syst_JES_EtaIntercalibration_Stat152: 0.0 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 2.4473877910948238e-21 + syst_JES_EtaIntercalibration_Stat156: 2.44738779e-21 syst_JES_EtaIntercalibration_Stat157: 0.0 syst_JES_EtaIntercalibration_Stat158: 0.0 - syst_JES_EtaIntercalibration_Stat159: 1.6724523345076236e-08 - syst_JES_EtaIntercalibration_Stat16: 1.6549745466320927e-08 - syst_JES_EtaIntercalibration_Stat160: 3.557304073311698e-08 - syst_JES_EtaIntercalibration_Stat161: 1.6336373427110435e-07 - syst_JES_EtaIntercalibration_Stat162: 1.1158978161440232e-07 - syst_JES_EtaIntercalibration_Stat163: 2.4976942226781883e-13 - syst_JES_EtaIntercalibration_Stat164: 1.9592859718897615e-08 - syst_JES_EtaIntercalibration_Stat165: 4.514909522902978e-07 - syst_JES_EtaIntercalibration_Stat166: 1.203898691751096e-06 - syst_JES_EtaIntercalibration_Stat167: 2.514863954073858e-07 - syst_JES_EtaIntercalibration_Stat168: 3.5935194447783354e-10 - syst_JES_EtaIntercalibration_Stat169: 9.151708242555416e-15 - syst_JES_EtaIntercalibration_Stat17: 2.580211471975117e-19 + syst_JES_EtaIntercalibration_Stat159: 1.67245233e-08 + syst_JES_EtaIntercalibration_Stat16: 1.65497455e-08 + syst_JES_EtaIntercalibration_Stat160: 3.55730407e-08 + syst_JES_EtaIntercalibration_Stat161: 1.63363734e-07 + syst_JES_EtaIntercalibration_Stat162: 1.11589782e-07 + syst_JES_EtaIntercalibration_Stat163: 2.49769422e-13 + syst_JES_EtaIntercalibration_Stat164: 1.95928597e-08 + syst_JES_EtaIntercalibration_Stat165: 4.51490952e-07 + syst_JES_EtaIntercalibration_Stat166: 1.20389869e-06 + syst_JES_EtaIntercalibration_Stat167: 2.51486395e-07 + syst_JES_EtaIntercalibration_Stat168: 3.59351944e-10 + syst_JES_EtaIntercalibration_Stat169: 9.15170824e-15 + syst_JES_EtaIntercalibration_Stat17: 2.58021147e-19 syst_JES_EtaIntercalibration_Stat170: 0.0 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 syst_JES_EtaIntercalibration_Stat175: 0.0 - syst_JES_EtaIntercalibration_Stat176: 9.378189097581685e-16 - syst_JES_EtaIntercalibration_Stat177: 1.4313927917591313e-08 - syst_JES_EtaIntercalibration_Stat178: 6.240375247531193e-07 - syst_JES_EtaIntercalibration_Stat179: 1.8528085080493344e-06 - syst_JES_EtaIntercalibration_Stat18: 4.9637899834702915e-22 - syst_JES_EtaIntercalibration_Stat180: 1.9765127036019777e-07 - syst_JES_EtaIntercalibration_Stat181: 7.931010873778952e-11 - syst_JES_EtaIntercalibration_Stat182: 2.141463051280596e-06 - syst_JES_EtaIntercalibration_Stat183: 4.429275223724531e-06 - syst_JES_EtaIntercalibration_Stat184: 1.4597209211010165e-06 - syst_JES_EtaIntercalibration_Stat185: 9.77869330483373e-08 - syst_JES_EtaIntercalibration_Stat186: 9.152156467193948e-15 + syst_JES_EtaIntercalibration_Stat176: 9.37818910e-16 + syst_JES_EtaIntercalibration_Stat177: 1.43139279e-08 + syst_JES_EtaIntercalibration_Stat178: 6.24037525e-07 + syst_JES_EtaIntercalibration_Stat179: 1.85280851e-06 + syst_JES_EtaIntercalibration_Stat18: 4.96378998e-22 + syst_JES_EtaIntercalibration_Stat180: 1.97651270e-07 + syst_JES_EtaIntercalibration_Stat181: 7.93101087e-11 + syst_JES_EtaIntercalibration_Stat182: 2.14146305e-06 + syst_JES_EtaIntercalibration_Stat183: 4.42927522e-06 + syst_JES_EtaIntercalibration_Stat184: 1.45972092e-06 + syst_JES_EtaIntercalibration_Stat185: 9.77869330e-08 + syst_JES_EtaIntercalibration_Stat186: 9.15215647e-15 syst_JES_EtaIntercalibration_Stat187: 0.0 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 @@ -52445,31 +52445,31 @@ bins: syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 syst_JES_EtaIntercalibration_Stat192: 0.0 - syst_JES_EtaIntercalibration_Stat193: 1.6541085435688476e-08 - syst_JES_EtaIntercalibration_Stat194: 2.881343604553265e-07 - syst_JES_EtaIntercalibration_Stat195: 1.6687264605081326e-06 - syst_JES_EtaIntercalibration_Stat196: 4.552501839648173e-06 - syst_JES_EtaIntercalibration_Stat197: 3.4648702183487334e-06 - syst_JES_EtaIntercalibration_Stat198: 8.549439338342601e-06 - syst_JES_EtaIntercalibration_Stat199: 4.624124214378329e-06 + syst_JES_EtaIntercalibration_Stat193: 1.65410854e-08 + syst_JES_EtaIntercalibration_Stat194: 2.88134360e-07 + syst_JES_EtaIntercalibration_Stat195: 1.66872646e-06 + syst_JES_EtaIntercalibration_Stat196: 4.55250184e-06 + syst_JES_EtaIntercalibration_Stat197: 3.46487022e-06 + syst_JES_EtaIntercalibration_Stat198: 8.54943934e-06 + syst_JES_EtaIntercalibration_Stat199: 4.62412421e-06 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 1.7973099252772184e-07 - syst_JES_EtaIntercalibration_Stat201: 9.152156467193948e-15 + syst_JES_EtaIntercalibration_Stat200: 1.79730993e-07 + syst_JES_EtaIntercalibration_Stat201: 9.15215647e-15 syst_JES_EtaIntercalibration_Stat202: 0.0 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 syst_JES_EtaIntercalibration_Stat207: 0.0 - syst_JES_EtaIntercalibration_Stat208: 1.6541085212282778e-08 - syst_JES_EtaIntercalibration_Stat209: 3.2703037702941293e-07 + syst_JES_EtaIntercalibration_Stat208: 1.65410852e-08 + syst_JES_EtaIntercalibration_Stat209: 3.27030377e-07 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 2.7234879750055806e-06 - syst_JES_EtaIntercalibration_Stat211: 8.331530051557158e-06 - syst_JES_EtaIntercalibration_Stat212: 3.5117513703991067e-06 - syst_JES_EtaIntercalibration_Stat213: 2.1324541612892877e-07 - syst_JES_EtaIntercalibration_Stat214: 9.152156467193948e-15 + syst_JES_EtaIntercalibration_Stat210: 2.72348798e-06 + syst_JES_EtaIntercalibration_Stat211: 8.33153005e-06 + syst_JES_EtaIntercalibration_Stat212: 3.51175137e-06 + syst_JES_EtaIntercalibration_Stat213: 2.13245416e-07 + syst_JES_EtaIntercalibration_Stat214: 9.15215647e-15 syst_JES_EtaIntercalibration_Stat215: 0.0 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 @@ -52477,11 +52477,11 @@ bins: syst_JES_EtaIntercalibration_Stat219: 0.0 syst_JES_EtaIntercalibration_Stat22: 0.0 syst_JES_EtaIntercalibration_Stat220: 0.0 - syst_JES_EtaIntercalibration_Stat221: 1.6541085212282778e-08 - syst_JES_EtaIntercalibration_Stat222: 3.2739662108824517e-07 - syst_JES_EtaIntercalibration_Stat223: 4.717949024735219e-06 - syst_JES_EtaIntercalibration_Stat224: 1.2487658577571698e-05 - syst_JES_EtaIntercalibration_Stat225: 4.987210442722464e-07 + syst_JES_EtaIntercalibration_Stat221: 1.65410852e-08 + syst_JES_EtaIntercalibration_Stat222: 3.27396621e-07 + syst_JES_EtaIntercalibration_Stat223: 4.71794902e-06 + syst_JES_EtaIntercalibration_Stat224: 1.24876586e-05 + syst_JES_EtaIntercalibration_Stat225: 4.98721044e-07 syst_JES_EtaIntercalibration_Stat226: 0.0 syst_JES_EtaIntercalibration_Stat227: 0.0 syst_JES_EtaIntercalibration_Stat228: 0.0 @@ -52490,296 +52490,296 @@ bins: syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 syst_JES_EtaIntercalibration_Stat232: 0.0 - syst_JES_EtaIntercalibration_Stat233: 1.6541085212282778e-08 - syst_JES_EtaIntercalibration_Stat234: 3.528955209676194e-07 - syst_JES_EtaIntercalibration_Stat235: 1.4283643337748253e-05 - syst_JES_EtaIntercalibration_Stat236: 2.0057520802681473e-07 + syst_JES_EtaIntercalibration_Stat233: 1.65410852e-08 + syst_JES_EtaIntercalibration_Stat234: 3.52895521e-07 + syst_JES_EtaIntercalibration_Stat235: 1.42836433e-05 + syst_JES_EtaIntercalibration_Stat236: 2.00575208e-07 syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 syst_JES_EtaIntercalibration_Stat239: 0.0 - syst_JES_EtaIntercalibration_Stat24: 2.0524802069691195e-21 + syst_JES_EtaIntercalibration_Stat24: 2.05248021e-21 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 syst_JES_EtaIntercalibration_Stat243: 0.0 - syst_JES_EtaIntercalibration_Stat244: 1.6541085212282778e-08 - syst_JES_EtaIntercalibration_Stat245: 2.477341645796962e-07 - syst_JES_EtaIntercalibration_Stat25: 7.087954906036012e-20 - syst_JES_EtaIntercalibration_Stat26: 5.224731261983857e-10 - syst_JES_EtaIntercalibration_Stat27: 1.4063515147217595e-15 - syst_JES_EtaIntercalibration_Stat28: 1.8429945930468703e-20 + syst_JES_EtaIntercalibration_Stat244: 1.65410852e-08 + syst_JES_EtaIntercalibration_Stat245: 2.47734165e-07 + syst_JES_EtaIntercalibration_Stat25: 7.08795491e-20 + syst_JES_EtaIntercalibration_Stat26: 5.22473126e-10 + syst_JES_EtaIntercalibration_Stat27: 1.40635151e-15 + syst_JES_EtaIntercalibration_Stat28: 1.84299459e-20 syst_JES_EtaIntercalibration_Stat29: 0.0 - syst_JES_EtaIntercalibration_Stat3: 5.054560942356913e-21 + syst_JES_EtaIntercalibration_Stat3: 5.05456094e-21 syst_JES_EtaIntercalibration_Stat30: 0.0 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 2.0853891723129284e-20 - syst_JES_EtaIntercalibration_Stat36: 2.0853891723129284e-20 - syst_JES_EtaIntercalibration_Stat37: 5.476888963277875e-20 - syst_JES_EtaIntercalibration_Stat38: 1.654974546645324e-08 - syst_JES_EtaIntercalibration_Stat39: 1.6549745466454973e-08 - syst_JES_EtaIntercalibration_Stat4: 8.899277591420927e-15 - syst_JES_EtaIntercalibration_Stat40: 3.880129497838957e-19 + syst_JES_EtaIntercalibration_Stat35: 2.08538917e-20 + syst_JES_EtaIntercalibration_Stat36: 2.08538917e-20 + syst_JES_EtaIntercalibration_Stat37: 5.47688896e-20 + syst_JES_EtaIntercalibration_Stat38: 1.65497455e-08 + syst_JES_EtaIntercalibration_Stat39: 1.65497455e-08 + syst_JES_EtaIntercalibration_Stat4: 8.89927759e-15 + syst_JES_EtaIntercalibration_Stat40: 3.88012950e-19 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 syst_JES_EtaIntercalibration_Stat44: 0.0 syst_JES_EtaIntercalibration_Stat45: 0.0 - syst_JES_EtaIntercalibration_Stat46: 6.7646489007190905e-21 - syst_JES_EtaIntercalibration_Stat47: 5.76202280019786e-19 - syst_JES_EtaIntercalibration_Stat48: 5.140726813477682e-10 - syst_JES_EtaIntercalibration_Stat49: 1.405962542893213e-15 - syst_JES_EtaIntercalibration_Stat5: 8.901009186092786e-15 - syst_JES_EtaIntercalibration_Stat50: 5.1194626671165406e-20 + syst_JES_EtaIntercalibration_Stat46: 6.76464890e-21 + syst_JES_EtaIntercalibration_Stat47: 5.76202280e-19 + syst_JES_EtaIntercalibration_Stat48: 5.14072681e-10 + syst_JES_EtaIntercalibration_Stat49: 1.40596254e-15 + syst_JES_EtaIntercalibration_Stat5: 8.90100919e-15 + syst_JES_EtaIntercalibration_Stat50: 5.11946267e-20 syst_JES_EtaIntercalibration_Stat51: 0.0 syst_JES_EtaIntercalibration_Stat52: 0.0 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 2.4473877910948238e-21 - syst_JES_EtaIntercalibration_Stat57: 2.0853891723129284e-20 - syst_JES_EtaIntercalibration_Stat58: 2.0853891723129284e-20 - syst_JES_EtaIntercalibration_Stat59: 6.965940617569173e-20 + syst_JES_EtaIntercalibration_Stat56: 2.44738779e-21 + syst_JES_EtaIntercalibration_Stat57: 2.08538917e-20 + syst_JES_EtaIntercalibration_Stat58: 2.08538917e-20 + syst_JES_EtaIntercalibration_Stat59: 6.96594062e-20 syst_JES_EtaIntercalibration_Stat6: 0.0 - syst_JES_EtaIntercalibration_Stat60: 1.654974571111715e-08 - syst_JES_EtaIntercalibration_Stat61: 1.654974599921499e-08 - syst_JES_EtaIntercalibration_Stat62: 1.0935775555487595e-18 - syst_JES_EtaIntercalibration_Stat63: 2.3480133840919646e-21 + syst_JES_EtaIntercalibration_Stat60: 1.65497457e-08 + syst_JES_EtaIntercalibration_Stat61: 1.65497460e-08 + syst_JES_EtaIntercalibration_Stat62: 1.09357756e-18 + syst_JES_EtaIntercalibration_Stat63: 2.34801338e-21 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 2.701179186947804e-20 - syst_JES_EtaIntercalibration_Stat69: 5.066278785182802e-10 + syst_JES_EtaIntercalibration_Stat68: 2.70117919e-20 + syst_JES_EtaIntercalibration_Stat69: 5.06627879e-10 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 5.016171785138618e-10 - syst_JES_EtaIntercalibration_Stat71: 5.200482711412517e-10 - syst_JES_EtaIntercalibration_Stat72: 1.4046457531600342e-15 + syst_JES_EtaIntercalibration_Stat70: 5.01617179e-10 + syst_JES_EtaIntercalibration_Stat71: 5.20048271e-10 + syst_JES_EtaIntercalibration_Stat72: 1.40464575e-15 syst_JES_EtaIntercalibration_Stat73: 0.0 syst_JES_EtaIntercalibration_Stat74: 0.0 syst_JES_EtaIntercalibration_Stat75: 0.0 - syst_JES_EtaIntercalibration_Stat76: 1.2834496484085379e-20 - syst_JES_EtaIntercalibration_Stat77: 2.4473877910948238e-21 - syst_JES_EtaIntercalibration_Stat78: 2.4473877910948238e-21 - syst_JES_EtaIntercalibration_Stat79: 2.0853891723129284e-20 + syst_JES_EtaIntercalibration_Stat76: 1.28344965e-20 + syst_JES_EtaIntercalibration_Stat77: 2.44738779e-21 + syst_JES_EtaIntercalibration_Stat78: 2.44738779e-21 + syst_JES_EtaIntercalibration_Stat79: 2.08538917e-20 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 2.041221876719922e-20 - syst_JES_EtaIntercalibration_Stat81: 3.08800032383418e-19 - syst_JES_EtaIntercalibration_Stat82: 1.6541085783282273e-08 - syst_JES_EtaIntercalibration_Stat83: 3.0085688651596933e-09 - syst_JES_EtaIntercalibration_Stat84: 2.2161919479142595e-16 - syst_JES_EtaIntercalibration_Stat85: 3.486213526162734e-21 + syst_JES_EtaIntercalibration_Stat80: 2.04122188e-20 + syst_JES_EtaIntercalibration_Stat81: 3.08800032e-19 + syst_JES_EtaIntercalibration_Stat82: 1.65410858e-08 + syst_JES_EtaIntercalibration_Stat83: 3.00856887e-09 + syst_JES_EtaIntercalibration_Stat84: 2.21619195e-16 + syst_JES_EtaIntercalibration_Stat85: 3.48621353e-21 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 3.584659084208706e-20 + syst_JES_EtaIntercalibration_Stat89: 3.58465908e-20 syst_JES_EtaIntercalibration_Stat9: 0.0 - syst_JES_EtaIntercalibration_Stat90: 5.061546242983141e-10 - syst_JES_EtaIntercalibration_Stat91: 4.967768296065347e-10 - syst_JES_EtaIntercalibration_Stat92: 6.063817362025343e-15 - syst_JES_EtaIntercalibration_Stat93: 1.4487744380656467e-15 + syst_JES_EtaIntercalibration_Stat90: 5.06154624e-10 + syst_JES_EtaIntercalibration_Stat91: 4.96776830e-10 + syst_JES_EtaIntercalibration_Stat92: 6.06381736e-15 + syst_JES_EtaIntercalibration_Stat93: 1.44877444e-15 syst_JES_EtaIntercalibration_Stat94: 0.0 syst_JES_EtaIntercalibration_Stat95: 0.0 - syst_JES_EtaIntercalibration_Stat96: 9.064687901411719e-18 - syst_JES_EtaIntercalibration_Stat97: 1.2834496484085379e-20 - syst_JES_EtaIntercalibration_Stat98: 2.4473877910948238e-21 - syst_JES_EtaIntercalibration_Stat99: 2.4473877910948238e-21 - syst_JES_EtaIntercalibration_TotalStat_MJB: 6.757599721794714e-05 - syst_JES_Flavour_Comp: 0.00018497499155291236 - syst_JES_Gjet_Generator: 0.0002233587473102408 - syst_JES_Gjet_OOC: 0.00018681468759174156 - syst_JES_Gjet_Purity: 3.200765221005752e-05 - syst_JES_Gjet_Stat1: 5.3751652067634163e-08 - syst_JES_Gjet_Stat10: 2.3988502053067006e-06 - syst_JES_Gjet_Stat11: 2.9677406810568876e-06 - syst_JES_Gjet_Stat12: 9.920219806032526e-06 - syst_JES_Gjet_Stat13: 3.397121281320407e-05 - syst_JES_Gjet_Stat14: 9.849992791875535e-05 - syst_JES_Gjet_Stat15: 0.00011581544402626103 - syst_JES_Gjet_Stat2: 3.464477663371493e-07 - syst_JES_Gjet_Stat3: 3.209490146425961e-07 - syst_JES_Gjet_Stat4: 3.7507560237915823e-07 - syst_JES_Gjet_Stat5: 3.981984806602439e-07 - syst_JES_Gjet_Stat6: 2.7486412451549923e-08 - syst_JES_Gjet_Stat7: 2.9170506884008716e-09 - syst_JES_Gjet_Stat8: 7.977788086305627e-08 - syst_JES_Gjet_Stat9: 1.1065463433584696e-06 - syst_JES_Gjet_Veto: 0.00018747671855459815 - syst_JES_Gjet_dPhi: 1.1715815464576079e-05 - syst_JES_LArESZee: 0.0003392968427498258 - syst_JES_LArEsmear: 2.783018280572371e-05 - syst_JES_LAr_JVT: 3.6134119499442625e-05 - syst_JES_MJB_Alpha: 1.160127630909634e-06 - syst_JES_MJB_Asym: 3.975698393993186e-05 - syst_JES_MJB_Beta: 1.7562995188748414e-06 - syst_JES_MJB_Stat1: 8.113792008056405e-10 - syst_JES_MJB_Stat10: 1.210270501788753e-08 - syst_JES_MJB_Stat11: 2.8782193714169875e-08 + syst_JES_EtaIntercalibration_Stat96: 9.06468790e-18 + syst_JES_EtaIntercalibration_Stat97: 1.28344965e-20 + syst_JES_EtaIntercalibration_Stat98: 2.44738779e-21 + syst_JES_EtaIntercalibration_Stat99: 2.44738779e-21 + syst_JES_EtaIntercalibration_TotalStat_MJB: 6.75759972e-05 + syst_JES_Flavour_Comp: 1.84974992e-04 + syst_JES_Gjet_Generator: 2.23358747e-04 + syst_JES_Gjet_OOC: 1.86814688e-04 + syst_JES_Gjet_Purity: 3.20076522e-05 + syst_JES_Gjet_Stat1: 5.37516521e-08 + syst_JES_Gjet_Stat10: 2.39885021e-06 + syst_JES_Gjet_Stat11: 2.96774068e-06 + syst_JES_Gjet_Stat12: 9.92021981e-06 + syst_JES_Gjet_Stat13: 3.39712128e-05 + syst_JES_Gjet_Stat14: 9.84999279e-05 + syst_JES_Gjet_Stat15: 1.15815444e-04 + syst_JES_Gjet_Stat2: 3.46447766e-07 + syst_JES_Gjet_Stat3: 3.20949015e-07 + syst_JES_Gjet_Stat4: 3.75075602e-07 + syst_JES_Gjet_Stat5: 3.98198481e-07 + syst_JES_Gjet_Stat6: 2.74864125e-08 + syst_JES_Gjet_Stat7: 2.91705069e-09 + syst_JES_Gjet_Stat8: 7.97778809e-08 + syst_JES_Gjet_Stat9: 1.10654634e-06 + syst_JES_Gjet_Veto: 1.87476719e-04 + syst_JES_Gjet_dPhi: 1.17158155e-05 + syst_JES_LArESZee: 3.39296843e-04 + syst_JES_LArEsmear: 2.78301828e-05 + syst_JES_LAr_JVT: 3.61341195e-05 + syst_JES_MJB_Alpha: 1.16012763e-06 + syst_JES_MJB_Asym: 3.97569839e-05 + syst_JES_MJB_Beta: 1.75629952e-06 + syst_JES_MJB_Stat1: 8.11379201e-10 + syst_JES_MJB_Stat10: 1.21027050e-08 + syst_JES_MJB_Stat11: 2.87821937e-08 syst_JES_MJB_Stat12: 0.0 syst_JES_MJB_Stat13: 0.0 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 - syst_JES_MJB_Stat16: 1.3336791218280354e-08 - syst_JES_MJB_Stat2: 1.6277027392924052e-07 - syst_JES_MJB_Stat3: 6.456038626743183e-07 - syst_JES_MJB_Stat4: 1.4990730360792964e-07 - syst_JES_MJB_Stat5: 1.01832317070761e-07 - syst_JES_MJB_Stat6: 7.649190594435466e-08 - syst_JES_MJB_Stat7: 9.311175453185276e-07 - syst_JES_MJB_Stat8: 8.413287658024953e-08 - syst_JES_MJB_Stat9: 1.0366002485046973e-07 - syst_JES_MJB_Threshold: 2.4362364417272805e-05 - syst_JES_Pileup_MuOffset: 4.240162614806182e-05 - syst_JES_Pileup_NPVOffset: 4.600532711545479e-05 - syst_JES_Pileup_Pt_term: 4.252758722288393e-05 - syst_JES_PunchThrough_MC15: 3.8158148539990776e-05 + syst_JES_MJB_Stat16: 1.33367912e-08 + syst_JES_MJB_Stat2: 1.62770274e-07 + syst_JES_MJB_Stat3: 6.45603863e-07 + syst_JES_MJB_Stat4: 1.49907304e-07 + syst_JES_MJB_Stat5: 1.01832317e-07 + syst_JES_MJB_Stat6: 7.64919059e-08 + syst_JES_MJB_Stat7: 9.31117545e-07 + syst_JES_MJB_Stat8: 8.41328766e-08 + syst_JES_MJB_Stat9: 1.03660025e-07 + syst_JES_MJB_Threshold: 2.43623644e-05 + syst_JES_Pileup_MuOffset: 4.24016261e-05 + syst_JES_Pileup_NPVOffset: 4.60053271e-05 + syst_JES_Pileup_Pt_term: 4.25275872e-05 + syst_JES_PunchThrough_MC15: 3.81581485e-05 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 8.261587438259066e-05 - syst_JES_Zjet_MuScale: 1.7825951776833687e-06 - syst_JES_Zjet_MuSmearID: 1.1397588692350675e-07 - syst_JES_Zjet_MuSmearMS: 2.1276707334547797e-05 - syst_JES_Zjet_OOC: 5.0488078543355164e-05 - syst_JES_Zjet_Stat1: 2.8778024167746037e-07 - syst_JES_Zjet_Stat10: 2.35042038254862e-06 - syst_JES_Zjet_Stat11: 3.2513309551628237e-06 - syst_JES_Zjet_Stat12: 1.2186142570559398e-05 - syst_JES_Zjet_Stat13: 2.363622378892195e-05 - syst_JES_Zjet_Stat2: 8.21033515028467e-09 - syst_JES_Zjet_Stat3: 2.7175877170755683e-07 - syst_JES_Zjet_Stat4: 1.723626998512149e-19 - syst_JES_Zjet_Stat5: 2.5931271213536755e-19 - syst_JES_Zjet_Stat6: 4.3430794203201025e-07 - syst_JES_Zjet_Stat7: 2.2535680809940047e-14 - syst_JES_Zjet_Stat8: 2.2538444378439254e-11 - syst_JES_Zjet_Stat9: 7.159232780123859e-07 - syst_JES_Zjet_Veto: 4.177159569312621e-06 - syst_JES_Zjet_dPhi: 3.6408207546513468e-06 - syst_PRW: 6.526e-06 - syst_Unfolding_bias: 1.256e-07 - syst_cleaning: 3.1557965713904944e-05 - syst_lumi: 0.0001031 + syst_JES_Zjet_MC: 8.26158744e-05 + syst_JES_Zjet_MuScale: 1.78259518e-06 + syst_JES_Zjet_MuSmearID: 1.13975887e-07 + syst_JES_Zjet_MuSmearMS: 2.12767073e-05 + syst_JES_Zjet_OOC: 5.04880785e-05 + syst_JES_Zjet_Stat1: 2.87780242e-07 + syst_JES_Zjet_Stat10: 2.35042038e-06 + syst_JES_Zjet_Stat11: 3.25133096e-06 + syst_JES_Zjet_Stat12: 1.21861426e-05 + syst_JES_Zjet_Stat13: 2.36362238e-05 + syst_JES_Zjet_Stat2: 8.21033515e-09 + syst_JES_Zjet_Stat3: 2.71758772e-07 + syst_JES_Zjet_Stat4: 1.72362700e-19 + syst_JES_Zjet_Stat5: 2.59312712e-19 + syst_JES_Zjet_Stat6: 4.34307942e-07 + syst_JES_Zjet_Stat7: 2.25356808e-14 + syst_JES_Zjet_Stat8: 2.25384444e-11 + syst_JES_Zjet_Stat9: 7.15923278e-07 + syst_JES_Zjet_Veto: 4.17715957e-06 + syst_JES_Zjet_dPhi: 3.64082075e-06 + syst_PRW: 6.52600000e-06 + syst_Unfolding_bias: 1.25600000e-07 + syst_cleaning: 3.15579657e-05 + syst_lumi: 1.03100000e-04 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 2.62154458287476e-05 - syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 9.471881901185213e-06 - syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.1627306857135919e-05 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 2.3113724818817068e-05 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.7569157634900996e-05 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 6.0130279186113886e-05 -- stat: 0.00010313 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 2.62154458e-05 + syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 9.47188190e-06 + syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.16273069e-05 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 2.31137248e-05 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.75691576e-05 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 6.01302792e-05 +- stat: 1.03130000e-04 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 3.2338627058055506e-05 - syst_JER_NP1: 5.9541339210669425e-05 - syst_JER_NP2: 1.5034201009775479e-05 - syst_JER_NP3: 3.320120835215876e-07 - syst_JER_NP4: 3.076159790403735e-07 - syst_JER_NP5: 3.940087360875137e-13 - syst_JER_NP6: 8.682834905720597e-16 - syst_JER_NP7: 3.5692700934504804e-19 - syst_JER_NP8: 1.9867779820604012e-06 - syst_JES_EtaIntercalibration_Modelling: 0.00017700963250625657 - syst_JES_EtaIntercalibration_NonClosure: 7.271297408303418e-06 + syst_JER_NP0: 3.23386271e-05 + syst_JER_NP1: 5.95413392e-05 + syst_JER_NP2: 1.50342010e-05 + syst_JER_NP3: 3.32012084e-07 + syst_JER_NP4: 3.07615979e-07 + syst_JER_NP5: 3.94008736e-13 + syst_JER_NP6: 8.68283491e-16 + syst_JER_NP7: 3.56927009e-19 + syst_JER_NP8: 1.98677798e-06 + syst_JES_EtaIntercalibration_Modelling: 1.77009633e-04 + syst_JES_EtaIntercalibration_NonClosure: 7.27129741e-06 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 4.776996127274964e-22 + syst_JES_EtaIntercalibration_Stat100: 4.77699613e-22 syst_JES_EtaIntercalibration_Stat101: 0.0 - syst_JES_EtaIntercalibration_Stat102: 1.8016339438132265e-18 - syst_JES_EtaIntercalibration_Stat103: 1.9156483688011945e-09 - syst_JES_EtaIntercalibration_Stat104: 7.950332223718705e-10 - syst_JES_EtaIntercalibration_Stat105: 1.3352563452386211e-16 - syst_JES_EtaIntercalibration_Stat106: 3.9330200187006424e-20 + syst_JES_EtaIntercalibration_Stat102: 1.80163394e-18 + syst_JES_EtaIntercalibration_Stat103: 1.91564837e-09 + syst_JES_EtaIntercalibration_Stat104: 7.95033222e-10 + syst_JES_EtaIntercalibration_Stat105: 1.33525635e-16 + syst_JES_EtaIntercalibration_Stat106: 3.93302002e-20 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 1.435724249290232e-18 + syst_JES_EtaIntercalibration_Stat109: 1.43572425e-18 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 1.9990544348703664e-09 - syst_JES_EtaIntercalibration_Stat111: 1.992882724600409e-09 - syst_JES_EtaIntercalibration_Stat112: 1.0170944590843074e-10 - syst_JES_EtaIntercalibration_Stat113: 3.596831662380101e-16 - syst_JES_EtaIntercalibration_Stat114: 1.7900745096224347e-19 + syst_JES_EtaIntercalibration_Stat110: 1.99905443e-09 + syst_JES_EtaIntercalibration_Stat111: 1.99288272e-09 + syst_JES_EtaIntercalibration_Stat112: 1.01709446e-10 + syst_JES_EtaIntercalibration_Stat113: 3.59683166e-16 + syst_JES_EtaIntercalibration_Stat114: 1.79007451e-19 syst_JES_EtaIntercalibration_Stat115: 0.0 - syst_JES_EtaIntercalibration_Stat116: 6.886634010893856e-19 - syst_JES_EtaIntercalibration_Stat117: 9.633666591698095e-19 - syst_JES_EtaIntercalibration_Stat118: 4.776996127274964e-22 - syst_JES_EtaIntercalibration_Stat119: 4.776996127274964e-22 + syst_JES_EtaIntercalibration_Stat116: 6.88663401e-19 + syst_JES_EtaIntercalibration_Stat117: 9.63366659e-19 + syst_JES_EtaIntercalibration_Stat118: 4.77699613e-22 + syst_JES_EtaIntercalibration_Stat119: 4.77699613e-22 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 4.776996127274964e-22 - syst_JES_EtaIntercalibration_Stat121: 6.987092957732851e-21 - syst_JES_EtaIntercalibration_Stat122: 1.9165142814484157e-09 - syst_JES_EtaIntercalibration_Stat123: 3.5465559527060897e-09 - syst_JES_EtaIntercalibration_Stat124: 1.9601928218417695e-09 - syst_JES_EtaIntercalibration_Stat125: 3.783227321679204e-13 - syst_JES_EtaIntercalibration_Stat126: 1.398647975394452e-17 + syst_JES_EtaIntercalibration_Stat120: 4.77699613e-22 + syst_JES_EtaIntercalibration_Stat121: 6.98709296e-21 + syst_JES_EtaIntercalibration_Stat122: 1.91651428e-09 + syst_JES_EtaIntercalibration_Stat123: 3.54655595e-09 + syst_JES_EtaIntercalibration_Stat124: 1.96019282e-09 + syst_JES_EtaIntercalibration_Stat125: 3.78322732e-13 + syst_JES_EtaIntercalibration_Stat126: 1.39864798e-17 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 1.8543761080212397e-13 - syst_JES_EtaIntercalibration_Stat129: 2.825914200307575e-08 + syst_JES_EtaIntercalibration_Stat128: 1.85437611e-13 + syst_JES_EtaIntercalibration_Stat129: 2.82591420e-08 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 6.861096195215456e-08 - syst_JES_EtaIntercalibration_Stat131: 2.1509476981089057e-08 - syst_JES_EtaIntercalibration_Stat132: 9.853821038331628e-11 - syst_JES_EtaIntercalibration_Stat133: 1.4892819957384665e-16 + syst_JES_EtaIntercalibration_Stat130: 6.86109620e-08 + syst_JES_EtaIntercalibration_Stat131: 2.15094770e-08 + syst_JES_EtaIntercalibration_Stat132: 9.85382104e-11 + syst_JES_EtaIntercalibration_Stat133: 1.48928200e-16 syst_JES_EtaIntercalibration_Stat134: 0.0 - syst_JES_EtaIntercalibration_Stat135: 6.886634010893856e-19 - syst_JES_EtaIntercalibration_Stat136: 6.886634010893856e-19 - syst_JES_EtaIntercalibration_Stat137: 4.776996127274964e-22 - syst_JES_EtaIntercalibration_Stat138: 4.776996127274964e-22 - syst_JES_EtaIntercalibration_Stat139: 4.776996127274964e-22 + syst_JES_EtaIntercalibration_Stat135: 6.88663401e-19 + syst_JES_EtaIntercalibration_Stat136: 6.88663401e-19 + syst_JES_EtaIntercalibration_Stat137: 4.77699613e-22 + syst_JES_EtaIntercalibration_Stat138: 4.77699613e-22 + syst_JES_EtaIntercalibration_Stat139: 4.77699613e-22 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 1.7026059438402063e-21 - syst_JES_EtaIntercalibration_Stat141: 1.919354479297662e-09 - syst_JES_EtaIntercalibration_Stat142: 6.676293259711933e-09 - syst_JES_EtaIntercalibration_Stat143: 7.639029781326945e-08 - syst_JES_EtaIntercalibration_Stat144: 2.8409645311935877e-08 - syst_JES_EtaIntercalibration_Stat145: 3.42620674908856e-17 - syst_JES_EtaIntercalibration_Stat146: 2.2820132623898146e-09 - syst_JES_EtaIntercalibration_Stat147: 2.8254591321588783e-08 - syst_JES_EtaIntercalibration_Stat148: 6.871894989739002e-08 - syst_JES_EtaIntercalibration_Stat149: 2.1499937209210633e-08 + syst_JES_EtaIntercalibration_Stat140: 1.70260594e-21 + syst_JES_EtaIntercalibration_Stat141: 1.91935448e-09 + syst_JES_EtaIntercalibration_Stat142: 6.67629326e-09 + syst_JES_EtaIntercalibration_Stat143: 7.63902978e-08 + syst_JES_EtaIntercalibration_Stat144: 2.84096453e-08 + syst_JES_EtaIntercalibration_Stat145: 3.42620675e-17 + syst_JES_EtaIntercalibration_Stat146: 2.28201326e-09 + syst_JES_EtaIntercalibration_Stat147: 2.82545913e-08 + syst_JES_EtaIntercalibration_Stat148: 6.87189499e-08 + syst_JES_EtaIntercalibration_Stat149: 2.14999372e-08 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 9.919983257959058e-11 - syst_JES_EtaIntercalibration_Stat151: 9.345549330000243e-16 + syst_JES_EtaIntercalibration_Stat150: 9.91998326e-11 + syst_JES_EtaIntercalibration_Stat151: 9.34554933e-16 syst_JES_EtaIntercalibration_Stat152: 0.0 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 4.776996127274964e-22 + syst_JES_EtaIntercalibration_Stat156: 4.77699613e-22 syst_JES_EtaIntercalibration_Stat157: 0.0 syst_JES_EtaIntercalibration_Stat158: 0.0 - syst_JES_EtaIntercalibration_Stat159: 1.938570874916623e-09 - syst_JES_EtaIntercalibration_Stat16: 1.9165142185750182e-09 - syst_JES_EtaIntercalibration_Stat160: 1.2260874094757683e-08 - syst_JES_EtaIntercalibration_Stat161: 7.659865722060668e-08 - syst_JES_EtaIntercalibration_Stat162: 2.4563645555983748e-08 - syst_JES_EtaIntercalibration_Stat163: 2.541996748621052e-14 - syst_JES_EtaIntercalibration_Stat164: 1.9982849778518245e-09 - syst_JES_EtaIntercalibration_Stat165: 1.6906527400681668e-07 - syst_JES_EtaIntercalibration_Stat166: 3.870656870287006e-07 - syst_JES_EtaIntercalibration_Stat167: 7.994007162087108e-08 - syst_JES_EtaIntercalibration_Stat168: 1.3348244332120985e-10 - syst_JES_EtaIntercalibration_Stat169: 9.345549330000243e-16 - syst_JES_EtaIntercalibration_Stat17: 3.517003710719787e-20 + syst_JES_EtaIntercalibration_Stat159: 1.93857087e-09 + syst_JES_EtaIntercalibration_Stat16: 1.91651422e-09 + syst_JES_EtaIntercalibration_Stat160: 1.22608741e-08 + syst_JES_EtaIntercalibration_Stat161: 7.65986572e-08 + syst_JES_EtaIntercalibration_Stat162: 2.45636456e-08 + syst_JES_EtaIntercalibration_Stat163: 2.54199675e-14 + syst_JES_EtaIntercalibration_Stat164: 1.99828498e-09 + syst_JES_EtaIntercalibration_Stat165: 1.69065274e-07 + syst_JES_EtaIntercalibration_Stat166: 3.87065687e-07 + syst_JES_EtaIntercalibration_Stat167: 7.99400716e-08 + syst_JES_EtaIntercalibration_Stat168: 1.33482443e-10 + syst_JES_EtaIntercalibration_Stat169: 9.34554933e-16 + syst_JES_EtaIntercalibration_Stat17: 3.51700371e-20 syst_JES_EtaIntercalibration_Stat170: 0.0 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 syst_JES_EtaIntercalibration_Stat175: 0.0 - syst_JES_EtaIntercalibration_Stat176: 9.909928695505331e-17 - syst_JES_EtaIntercalibration_Stat177: 9.975558889982054e-10 - syst_JES_EtaIntercalibration_Stat178: 3.8632182442977513e-07 - syst_JES_EtaIntercalibration_Stat179: 7.527554822616705e-07 - syst_JES_EtaIntercalibration_Stat18: 9.185983058442902e-23 - syst_JES_EtaIntercalibration_Stat180: 7.930935442934837e-08 - syst_JES_EtaIntercalibration_Stat181: 9.360752857943639e-12 - syst_JES_EtaIntercalibration_Stat182: 6.92199109722051e-07 - syst_JES_EtaIntercalibration_Stat183: 2.1998710757678503e-06 - syst_JES_EtaIntercalibration_Stat184: 8.577789225668813e-07 - syst_JES_EtaIntercalibration_Stat185: 2.413175681026974e-08 - syst_JES_EtaIntercalibration_Stat186: 9.346146157641662e-16 + syst_JES_EtaIntercalibration_Stat176: 9.90992870e-17 + syst_JES_EtaIntercalibration_Stat177: 9.97555889e-10 + syst_JES_EtaIntercalibration_Stat178: 3.86321824e-07 + syst_JES_EtaIntercalibration_Stat179: 7.52755482e-07 + syst_JES_EtaIntercalibration_Stat18: 9.18598306e-23 + syst_JES_EtaIntercalibration_Stat180: 7.93093544e-08 + syst_JES_EtaIntercalibration_Stat181: 9.36075286e-12 + syst_JES_EtaIntercalibration_Stat182: 6.92199110e-07 + syst_JES_EtaIntercalibration_Stat183: 2.19987108e-06 + syst_JES_EtaIntercalibration_Stat184: 8.57778923e-07 + syst_JES_EtaIntercalibration_Stat185: 2.41317568e-08 + syst_JES_EtaIntercalibration_Stat186: 9.34614616e-16 syst_JES_EtaIntercalibration_Stat187: 0.0 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 @@ -52787,31 +52787,31 @@ bins: syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 syst_JES_EtaIntercalibration_Stat192: 0.0 - syst_JES_EtaIntercalibration_Stat193: 1.9156482148882095e-09 - syst_JES_EtaIntercalibration_Stat194: 1.695625192038323e-07 - syst_JES_EtaIntercalibration_Stat195: 6.368681810233574e-07 - syst_JES_EtaIntercalibration_Stat196: 1.7138112111606691e-06 - syst_JES_EtaIntercalibration_Stat197: 1.3800844856384698e-06 - syst_JES_EtaIntercalibration_Stat198: 3.82617442754509e-06 - syst_JES_EtaIntercalibration_Stat199: 2.4626623413492967e-06 + syst_JES_EtaIntercalibration_Stat193: 1.91564821e-09 + syst_JES_EtaIntercalibration_Stat194: 1.69562519e-07 + syst_JES_EtaIntercalibration_Stat195: 6.36868181e-07 + syst_JES_EtaIntercalibration_Stat196: 1.71381121e-06 + syst_JES_EtaIntercalibration_Stat197: 1.38008449e-06 + syst_JES_EtaIntercalibration_Stat198: 3.82617443e-06 + syst_JES_EtaIntercalibration_Stat199: 2.46266234e-06 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 9.578267836618477e-08 - syst_JES_EtaIntercalibration_Stat201: 9.346146157641662e-16 + syst_JES_EtaIntercalibration_Stat200: 9.57826784e-08 + syst_JES_EtaIntercalibration_Stat201: 9.34614616e-16 syst_JES_EtaIntercalibration_Stat202: 0.0 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 syst_JES_EtaIntercalibration_Stat207: 0.0 - syst_JES_EtaIntercalibration_Stat208: 1.916514218574963e-09 - syst_JES_EtaIntercalibration_Stat209: 1.5556083014370937e-07 + syst_JES_EtaIntercalibration_Stat208: 1.91651422e-09 + syst_JES_EtaIntercalibration_Stat209: 1.55560830e-07 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 9.585167017324215e-07 - syst_JES_EtaIntercalibration_Stat211: 3.7707124005285793e-06 - syst_JES_EtaIntercalibration_Stat212: 1.5597903288583372e-06 - syst_JES_EtaIntercalibration_Stat213: 1.0907890492666307e-07 - syst_JES_EtaIntercalibration_Stat214: 9.346146157641662e-16 + syst_JES_EtaIntercalibration_Stat210: 9.58516702e-07 + syst_JES_EtaIntercalibration_Stat211: 3.77071240e-06 + syst_JES_EtaIntercalibration_Stat212: 1.55979033e-06 + syst_JES_EtaIntercalibration_Stat213: 1.09078905e-07 + syst_JES_EtaIntercalibration_Stat214: 9.34614616e-16 syst_JES_EtaIntercalibration_Stat215: 0.0 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 @@ -52819,11 +52819,11 @@ bins: syst_JES_EtaIntercalibration_Stat219: 0.0 syst_JES_EtaIntercalibration_Stat22: 0.0 syst_JES_EtaIntercalibration_Stat220: 0.0 - syst_JES_EtaIntercalibration_Stat221: 1.916514218574963e-09 - syst_JES_EtaIntercalibration_Stat222: 1.5572591908542393e-07 - syst_JES_EtaIntercalibration_Stat223: 2.0268413850126503e-06 - syst_JES_EtaIntercalibration_Stat224: 5.9102948107518286e-06 - syst_JES_EtaIntercalibration_Stat225: 3.2469712040607937e-07 + syst_JES_EtaIntercalibration_Stat221: 1.91651422e-09 + syst_JES_EtaIntercalibration_Stat222: 1.55725919e-07 + syst_JES_EtaIntercalibration_Stat223: 2.02684139e-06 + syst_JES_EtaIntercalibration_Stat224: 5.91029481e-06 + syst_JES_EtaIntercalibration_Stat225: 3.24697120e-07 syst_JES_EtaIntercalibration_Stat226: 0.0 syst_JES_EtaIntercalibration_Stat227: 0.0 syst_JES_EtaIntercalibration_Stat228: 0.0 @@ -52832,296 +52832,296 @@ bins: syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 syst_JES_EtaIntercalibration_Stat232: 0.0 - syst_JES_EtaIntercalibration_Stat233: 1.916514218574963e-09 - syst_JES_EtaIntercalibration_Stat234: 1.8853143696211513e-07 - syst_JES_EtaIntercalibration_Stat235: 6.415279573019401e-06 - syst_JES_EtaIntercalibration_Stat236: 3.560057022015238e-08 + syst_JES_EtaIntercalibration_Stat233: 1.91651422e-09 + syst_JES_EtaIntercalibration_Stat234: 1.88531437e-07 + syst_JES_EtaIntercalibration_Stat235: 6.41527957e-06 + syst_JES_EtaIntercalibration_Stat236: 3.56005702e-08 syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 syst_JES_EtaIntercalibration_Stat239: 0.0 - syst_JES_EtaIntercalibration_Stat24: 3.735167566522284e-22 + syst_JES_EtaIntercalibration_Stat24: 3.73516757e-22 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 syst_JES_EtaIntercalibration_Stat243: 0.0 - syst_JES_EtaIntercalibration_Stat244: 1.916514218574963e-09 - syst_JES_EtaIntercalibration_Stat245: 1.6362589140093324e-07 - syst_JES_EtaIntercalibration_Stat25: 1.0537657080679747e-20 - syst_JES_EtaIntercalibration_Stat26: 9.526279440252132e-11 - syst_JES_EtaIntercalibration_Stat27: 1.4851266730138273e-16 - syst_JES_EtaIntercalibration_Stat28: 2.8330382957524595e-21 + syst_JES_EtaIntercalibration_Stat244: 1.91651422e-09 + syst_JES_EtaIntercalibration_Stat245: 1.63625891e-07 + syst_JES_EtaIntercalibration_Stat25: 1.05376571e-20 + syst_JES_EtaIntercalibration_Stat26: 9.52627944e-11 + syst_JES_EtaIntercalibration_Stat27: 1.48512667e-16 + syst_JES_EtaIntercalibration_Stat28: 2.83303830e-21 syst_JES_EtaIntercalibration_Stat29: 0.0 - syst_JES_EtaIntercalibration_Stat3: 7.91644219330881e-22 + syst_JES_EtaIntercalibration_Stat3: 7.91644219e-22 syst_JES_EtaIntercalibration_Stat30: 0.0 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 2.3737756317731465e-21 - syst_JES_EtaIntercalibration_Stat36: 2.3737756317731465e-21 - syst_JES_EtaIntercalibration_Stat37: 7.979714249739773e-21 - syst_JES_EtaIntercalibration_Stat38: 1.9165142185931898e-09 - syst_JES_EtaIntercalibration_Stat39: 1.916514218592156e-09 - syst_JES_EtaIntercalibration_Stat4: 9.069018952191448e-16 - syst_JES_EtaIntercalibration_Stat40: 5.376894526583165e-20 + syst_JES_EtaIntercalibration_Stat35: 2.37377563e-21 + syst_JES_EtaIntercalibration_Stat36: 2.37377563e-21 + syst_JES_EtaIntercalibration_Stat37: 7.97971425e-21 + syst_JES_EtaIntercalibration_Stat38: 1.91651422e-09 + syst_JES_EtaIntercalibration_Stat39: 1.91651422e-09 + syst_JES_EtaIntercalibration_Stat4: 9.06901895e-16 + syst_JES_EtaIntercalibration_Stat40: 5.37689453e-20 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 syst_JES_EtaIntercalibration_Stat44: 0.0 syst_JES_EtaIntercalibration_Stat45: 0.0 - syst_JES_EtaIntercalibration_Stat46: 1.0803369601656698e-21 - syst_JES_EtaIntercalibration_Stat47: 7.657563124127675e-20 - syst_JES_EtaIntercalibration_Stat48: 9.671771690019453e-11 - syst_JES_EtaIntercalibration_Stat49: 1.4872220983830055e-16 - syst_JES_EtaIntercalibration_Stat5: 9.070750231167944e-16 - syst_JES_EtaIntercalibration_Stat50: 7.401662178186735e-21 + syst_JES_EtaIntercalibration_Stat46: 1.08033696e-21 + syst_JES_EtaIntercalibration_Stat47: 7.65756312e-20 + syst_JES_EtaIntercalibration_Stat48: 9.67177169e-11 + syst_JES_EtaIntercalibration_Stat49: 1.48722210e-16 + syst_JES_EtaIntercalibration_Stat5: 9.07075023e-16 + syst_JES_EtaIntercalibration_Stat50: 7.40166218e-21 syst_JES_EtaIntercalibration_Stat51: 0.0 syst_JES_EtaIntercalibration_Stat52: 0.0 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 4.776996127274964e-22 - syst_JES_EtaIntercalibration_Stat57: 2.3737756317731465e-21 - syst_JES_EtaIntercalibration_Stat58: 2.3737756317731465e-21 - syst_JES_EtaIntercalibration_Stat59: 1.027072129891567e-20 + syst_JES_EtaIntercalibration_Stat56: 4.77699613e-22 + syst_JES_EtaIntercalibration_Stat57: 2.37377563e-21 + syst_JES_EtaIntercalibration_Stat58: 2.37377563e-21 + syst_JES_EtaIntercalibration_Stat59: 1.02707213e-20 syst_JES_EtaIntercalibration_Stat6: 0.0 - syst_JES_EtaIntercalibration_Stat60: 1.9165142423820025e-09 - syst_JES_EtaIntercalibration_Stat61: 1.916514274953223e-09 - syst_JES_EtaIntercalibration_Stat62: 1.382103978541412e-19 - syst_JES_EtaIntercalibration_Stat63: 3.9372662144024503e-22 + syst_JES_EtaIntercalibration_Stat60: 1.91651424e-09 + syst_JES_EtaIntercalibration_Stat61: 1.91651427e-09 + syst_JES_EtaIntercalibration_Stat62: 1.38210398e-19 + syst_JES_EtaIntercalibration_Stat63: 3.93726621e-22 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 3.5596750905103684e-21 - syst_JES_EtaIntercalibration_Stat69: 9.777397632678717e-11 + syst_JES_EtaIntercalibration_Stat68: 3.55967509e-21 + syst_JES_EtaIntercalibration_Stat69: 9.77739763e-11 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 9.861159528884357e-11 - syst_JES_EtaIntercalibration_Stat71: 9.563518345313503e-11 - syst_JES_EtaIntercalibration_Stat72: 1.485172753603387e-16 + syst_JES_EtaIntercalibration_Stat70: 9.86115953e-11 + syst_JES_EtaIntercalibration_Stat71: 9.56351835e-11 + syst_JES_EtaIntercalibration_Stat72: 1.48517275e-16 syst_JES_EtaIntercalibration_Stat73: 0.0 syst_JES_EtaIntercalibration_Stat74: 0.0 syst_JES_EtaIntercalibration_Stat75: 0.0 - syst_JES_EtaIntercalibration_Stat76: 2.153805179211899e-21 - syst_JES_EtaIntercalibration_Stat77: 4.776996127274964e-22 - syst_JES_EtaIntercalibration_Stat78: 4.776996127274964e-22 - syst_JES_EtaIntercalibration_Stat79: 2.3737756317731465e-21 + syst_JES_EtaIntercalibration_Stat76: 2.15380518e-21 + syst_JES_EtaIntercalibration_Stat77: 4.77699613e-22 + syst_JES_EtaIntercalibration_Stat78: 4.77699613e-22 + syst_JES_EtaIntercalibration_Stat79: 2.37377563e-21 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 2.3079577010855292e-21 - syst_JES_EtaIntercalibration_Stat81: 4.1517315363592576e-20 - syst_JES_EtaIntercalibration_Stat82: 1.916514279052411e-09 - syst_JES_EtaIntercalibration_Stat83: 7.886889855260504e-10 - syst_JES_EtaIntercalibration_Stat84: 2.313973368472507e-17 - syst_JES_EtaIntercalibration_Stat85: 5.053025504586336e-22 + syst_JES_EtaIntercalibration_Stat80: 2.30795770e-21 + syst_JES_EtaIntercalibration_Stat81: 4.15173154e-20 + syst_JES_EtaIntercalibration_Stat82: 1.91651428e-09 + syst_JES_EtaIntercalibration_Stat83: 7.88688986e-10 + syst_JES_EtaIntercalibration_Stat84: 2.31397337e-17 + syst_JES_EtaIntercalibration_Stat85: 5.05302550e-22 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 4.36693153140738e-21 + syst_JES_EtaIntercalibration_Stat89: 4.36693153e-21 syst_JES_EtaIntercalibration_Stat9: 0.0 - syst_JES_EtaIntercalibration_Stat90: 9.78545253924554e-11 - syst_JES_EtaIntercalibration_Stat91: 9.938975148354118e-11 - syst_JES_EtaIntercalibration_Stat92: 6.634105893034871e-16 - syst_JES_EtaIntercalibration_Stat93: 1.530149981939518e-16 + syst_JES_EtaIntercalibration_Stat90: 9.78545254e-11 + syst_JES_EtaIntercalibration_Stat91: 9.93897515e-11 + syst_JES_EtaIntercalibration_Stat92: 6.63410589e-16 + syst_JES_EtaIntercalibration_Stat93: 1.53014998e-16 syst_JES_EtaIntercalibration_Stat94: 0.0 syst_JES_EtaIntercalibration_Stat95: 0.0 - syst_JES_EtaIntercalibration_Stat96: 9.633666591698095e-19 - syst_JES_EtaIntercalibration_Stat97: 2.153805179211899e-21 - syst_JES_EtaIntercalibration_Stat98: 4.776996127274964e-22 - syst_JES_EtaIntercalibration_Stat99: 4.776996127274964e-22 - syst_JES_EtaIntercalibration_TotalStat_MJB: 3.151e-05 - syst_JES_Flavour_Comp: 8.680858986874513e-05 - syst_JES_Gjet_Generator: 0.00010140304285375267 - syst_JES_Gjet_OOC: 8.51474208358656e-05 - syst_JES_Gjet_Purity: 1.191578964022108e-05 - syst_JES_Gjet_Stat1: 2.2274597639463655e-08 - syst_JES_Gjet_Stat10: 9.941740444710876e-07 - syst_JES_Gjet_Stat11: 1.2015599360830903e-06 - syst_JES_Gjet_Stat12: 4.007538430258654e-06 - syst_JES_Gjet_Stat13: 1.4486123316815994e-05 - syst_JES_Gjet_Stat14: 4.57363990711993e-05 - syst_JES_Gjet_Stat15: 6.142446153610138e-05 - syst_JES_Gjet_Stat2: 1.5139871828059674e-07 - syst_JES_Gjet_Stat3: 1.5294008630834592e-07 - syst_JES_Gjet_Stat4: 1.762361696701532e-07 - syst_JES_Gjet_Stat5: 1.809993093909745e-07 - syst_JES_Gjet_Stat6: 3.754094799402011e-09 - syst_JES_Gjet_Stat7: 3.303905743672934e-10 - syst_JES_Gjet_Stat8: 1.0323953639473591e-07 - syst_JES_Gjet_Stat9: 2.2335068838040324e-07 - syst_JES_Gjet_Veto: 8.589337750956124e-05 - syst_JES_Gjet_dPhi: 5.0248226543331854e-06 - syst_JES_LArESZee: 0.00015151098970041745 - syst_JES_LArEsmear: 1.0727597447704682e-05 - syst_JES_LAr_JVT: 1.4478748866873824e-05 - syst_JES_MJB_Alpha: 4.699053840934364e-07 - syst_JES_MJB_Asym: 2.0639498540420016e-05 - syst_JES_MJB_Beta: 7.128255098549715e-07 - syst_JES_MJB_Stat1: 1.3397412996545264e-10 - syst_JES_MJB_Stat10: 2.612798643217651e-08 - syst_JES_MJB_Stat11: 3.696902145039817e-08 + syst_JES_EtaIntercalibration_Stat96: 9.63366659e-19 + syst_JES_EtaIntercalibration_Stat97: 2.15380518e-21 + syst_JES_EtaIntercalibration_Stat98: 4.77699613e-22 + syst_JES_EtaIntercalibration_Stat99: 4.77699613e-22 + syst_JES_EtaIntercalibration_TotalStat_MJB: 3.15100000e-05 + syst_JES_Flavour_Comp: 8.68085899e-05 + syst_JES_Gjet_Generator: 1.01403043e-04 + syst_JES_Gjet_OOC: 8.51474208e-05 + syst_JES_Gjet_Purity: 1.19157896e-05 + syst_JES_Gjet_Stat1: 2.22745976e-08 + syst_JES_Gjet_Stat10: 9.94174044e-07 + syst_JES_Gjet_Stat11: 1.20155994e-06 + syst_JES_Gjet_Stat12: 4.00753843e-06 + syst_JES_Gjet_Stat13: 1.44861233e-05 + syst_JES_Gjet_Stat14: 4.57363991e-05 + syst_JES_Gjet_Stat15: 6.14244615e-05 + syst_JES_Gjet_Stat2: 1.51398718e-07 + syst_JES_Gjet_Stat3: 1.52940086e-07 + syst_JES_Gjet_Stat4: 1.76236170e-07 + syst_JES_Gjet_Stat5: 1.80999309e-07 + syst_JES_Gjet_Stat6: 3.75409480e-09 + syst_JES_Gjet_Stat7: 3.30390574e-10 + syst_JES_Gjet_Stat8: 1.03239536e-07 + syst_JES_Gjet_Stat9: 2.23350688e-07 + syst_JES_Gjet_Veto: 8.58933775e-05 + syst_JES_Gjet_dPhi: 5.02482265e-06 + syst_JES_LArESZee: 1.51510990e-04 + syst_JES_LArEsmear: 1.07275974e-05 + syst_JES_LAr_JVT: 1.44787489e-05 + syst_JES_MJB_Alpha: 4.69905384e-07 + syst_JES_MJB_Asym: 2.06394985e-05 + syst_JES_MJB_Beta: 7.12825510e-07 + syst_JES_MJB_Stat1: 1.33974130e-10 + syst_JES_MJB_Stat10: 2.61279864e-08 + syst_JES_MJB_Stat11: 3.69690215e-08 syst_JES_MJB_Stat12: 0.0 syst_JES_MJB_Stat13: 0.0 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 - syst_JES_MJB_Stat16: 5.746944579513534e-09 - syst_JES_MJB_Stat2: 2.4619976990241076e-08 - syst_JES_MJB_Stat3: 1.6486219904817475e-07 - syst_JES_MJB_Stat4: 1.630548680659366e-08 - syst_JES_MJB_Stat5: 2.2128907988194987e-08 - syst_JES_MJB_Stat6: 6.514308643862371e-08 - syst_JES_MJB_Stat7: 2.392608091602133e-07 - syst_JES_MJB_Stat8: 7.085959258103309e-08 - syst_JES_MJB_Stat9: 9.314898352639174e-08 - syst_JES_MJB_Threshold: 1.1580722386794356e-05 - syst_JES_Pileup_MuOffset: 2.01377375839492e-05 - syst_JES_Pileup_NPVOffset: 1.9395783046837783e-05 - syst_JES_Pileup_Pt_term: 1.827123148558958e-05 - syst_JES_PunchThrough_MC15: 2.1102030115607357e-05 + syst_JES_MJB_Stat16: 5.74694458e-09 + syst_JES_MJB_Stat2: 2.46199770e-08 + syst_JES_MJB_Stat3: 1.64862199e-07 + syst_JES_MJB_Stat4: 1.63054868e-08 + syst_JES_MJB_Stat5: 2.21289080e-08 + syst_JES_MJB_Stat6: 6.51430864e-08 + syst_JES_MJB_Stat7: 2.39260809e-07 + syst_JES_MJB_Stat8: 7.08595926e-08 + syst_JES_MJB_Stat9: 9.31489835e-08 + syst_JES_MJB_Threshold: 1.15807224e-05 + syst_JES_Pileup_MuOffset: 2.01377376e-05 + syst_JES_Pileup_NPVOffset: 1.93957830e-05 + syst_JES_Pileup_Pt_term: 1.82712315e-05 + syst_JES_PunchThrough_MC15: 2.11020301e-05 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 3.629330620100627e-05 - syst_JES_Zjet_MuScale: 3.935386939997133e-07 - syst_JES_Zjet_MuSmearID: 1.0648972212730204e-07 - syst_JES_Zjet_MuSmearMS: 8.493470963039787e-06 - syst_JES_Zjet_OOC: 2.1287866849452057e-05 - syst_JES_Zjet_Stat1: 5.252444073950785e-08 - syst_JES_Zjet_Stat10: 9.579586297137262e-07 - syst_JES_Zjet_Stat11: 1.1825118471605263e-06 - syst_JES_Zjet_Stat12: 4.907354149641128e-06 - syst_JES_Zjet_Stat13: 9.632228130084959e-06 - syst_JES_Zjet_Stat2: 2.1697250219094586e-09 - syst_JES_Zjet_Stat3: 4.20455333537345e-08 - syst_JES_Zjet_Stat4: 2.8871587776739957e-20 - syst_JES_Zjet_Stat5: 4.3969058154570466e-20 - syst_JES_Zjet_Stat6: 8.568935798757136e-09 - syst_JES_Zjet_Stat7: 2.4671083894055e-15 - syst_JES_Zjet_Stat8: 2.2892983095263053e-12 - syst_JES_Zjet_Stat9: 1.5601450317198076e-07 - syst_JES_Zjet_Veto: 9.489762341992555e-07 - syst_JES_Zjet_dPhi: 8.434017829599366e-07 - syst_PRW: 8.751e-06 - syst_Unfolding_bias: 5.244e-07 - syst_cleaning: 1.283449648408538e-05 - syst_lumi: 4.176e-05 + syst_JES_Zjet_MC: 3.62933062e-05 + syst_JES_Zjet_MuScale: 3.93538694e-07 + syst_JES_Zjet_MuSmearID: 1.06489722e-07 + syst_JES_Zjet_MuSmearMS: 8.49347096e-06 + syst_JES_Zjet_OOC: 2.12878668e-05 + syst_JES_Zjet_Stat1: 5.25244407e-08 + syst_JES_Zjet_Stat10: 9.57958630e-07 + syst_JES_Zjet_Stat11: 1.18251185e-06 + syst_JES_Zjet_Stat12: 4.90735415e-06 + syst_JES_Zjet_Stat13: 9.63222813e-06 + syst_JES_Zjet_Stat2: 2.16972502e-09 + syst_JES_Zjet_Stat3: 4.20455334e-08 + syst_JES_Zjet_Stat4: 2.88715878e-20 + syst_JES_Zjet_Stat5: 4.39690582e-20 + syst_JES_Zjet_Stat6: 8.56893580e-09 + syst_JES_Zjet_Stat7: 2.46710839e-15 + syst_JES_Zjet_Stat8: 2.28929831e-12 + syst_JES_Zjet_Stat9: 1.56014503e-07 + syst_JES_Zjet_Veto: 9.48976234e-07 + syst_JES_Zjet_dPhi: 8.43401783e-07 + syst_PRW: 8.75100000e-06 + syst_Unfolding_bias: 5.24400000e-07 + syst_cleaning: 1.28344965e-05 + syst_lumi: 4.17600000e-05 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 1.5194581270966306e-05 - syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 3.93080946625501e-06 - syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 4.774376922698919e-06 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 1.3401860617093433e-05 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 7.512517603972718e-06 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 2.5300029150180837e-05 -- stat: 5.711e-05 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 1.51945813e-05 + syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 3.93080947e-06 + syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 4.77437692e-06 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 1.34018606e-05 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 7.51251760e-06 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 2.53000292e-05 +- stat: 5.71100000e-05 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 1.5486689349244402e-05 - syst_JER_NP1: 2.763616606912037e-05 - syst_JER_NP2: 8.540742532132407e-06 - syst_JER_NP3: 5.1810305876912173e-08 - syst_JER_NP4: 4.800404228869377e-08 - syst_JER_NP5: 4.129227440243605e-14 - syst_JER_NP6: 1.0830283318085451e-16 - syst_JER_NP7: 6.202500685207539e-20 - syst_JER_NP8: 7.843079242236433e-07 - syst_JES_EtaIntercalibration_Modelling: 7.770946966103939e-05 - syst_JES_EtaIntercalibration_NonClosure: 6.64540027011165e-07 + syst_JER_NP0: 1.54866893e-05 + syst_JER_NP1: 2.76361661e-05 + syst_JER_NP2: 8.54074253e-06 + syst_JER_NP3: 5.18103059e-08 + syst_JER_NP4: 4.80040423e-08 + syst_JER_NP5: 4.12922744e-14 + syst_JER_NP6: 1.08302833e-16 + syst_JER_NP7: 6.20250069e-20 + syst_JER_NP8: 7.84307924e-07 + syst_JES_EtaIntercalibration_Modelling: 7.77094697e-05 + syst_JES_EtaIntercalibration_NonClosure: 6.64540027e-07 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 9.562652508587772e-23 + syst_JES_EtaIntercalibration_Stat100: 9.56265251e-23 syst_JES_EtaIntercalibration_Stat101: 0.0 - syst_JES_EtaIntercalibration_Stat102: 2.239671866033058e-19 - syst_JES_EtaIntercalibration_Stat103: 1.0899797480826031e-10 - syst_JES_EtaIntercalibration_Stat104: 1.726073014446376e-10 - syst_JES_EtaIntercalibration_Stat105: 1.4120206514070536e-17 - syst_JES_EtaIntercalibration_Stat106: 5.589687082476084e-21 + syst_JES_EtaIntercalibration_Stat102: 2.23967187e-19 + syst_JES_EtaIntercalibration_Stat103: 1.08997975e-10 + syst_JES_EtaIntercalibration_Stat104: 1.72607301e-10 + syst_JES_EtaIntercalibration_Stat105: 1.41202065e-17 + syst_JES_EtaIntercalibration_Stat106: 5.58968708e-21 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 1.765501274426048e-19 + syst_JES_EtaIntercalibration_Stat109: 1.76550127e-19 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 5.55310203569237e-11 - syst_JES_EtaIntercalibration_Stat111: 5.441771428209292e-11 - syst_JES_EtaIntercalibration_Stat112: 3.171877923041017e-11 - syst_JES_EtaIntercalibration_Stat113: 3.887817921083753e-17 - syst_JES_EtaIntercalibration_Stat114: 2.4725025278045727e-20 + syst_JES_EtaIntercalibration_Stat110: 5.55310204e-11 + syst_JES_EtaIntercalibration_Stat111: 5.44177143e-11 + syst_JES_EtaIntercalibration_Stat112: 3.17187792e-11 + syst_JES_EtaIntercalibration_Stat113: 3.88781792e-17 + syst_JES_EtaIntercalibration_Stat114: 2.47250253e-20 syst_JES_EtaIntercalibration_Stat115: 0.0 - syst_JES_EtaIntercalibration_Stat116: 6.179957281405754e-20 - syst_JES_EtaIntercalibration_Stat117: 1.022169784086773e-19 - syst_JES_EtaIntercalibration_Stat118: 9.562652508587772e-23 - syst_JES_EtaIntercalibration_Stat119: 9.562652508587772e-23 + syst_JES_EtaIntercalibration_Stat116: 6.17995728e-20 + syst_JES_EtaIntercalibration_Stat117: 1.02216978e-19 + syst_JES_EtaIntercalibration_Stat118: 9.56265251e-23 + syst_JES_EtaIntercalibration_Stat119: 9.56265251e-23 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 9.562652508587772e-23 - syst_JES_EtaIntercalibration_Stat121: 1.0553385570517169e-21 - syst_JES_EtaIntercalibration_Stat122: 1.0902394488361084e-10 - syst_JES_EtaIntercalibration_Stat123: 7.23816547143508e-10 - syst_JES_EtaIntercalibration_Stat124: 2.546629244216755e-11 - syst_JES_EtaIntercalibration_Stat125: 3.8908484010559954e-14 - syst_JES_EtaIntercalibration_Stat126: 1.3670084564478744e-18 + syst_JES_EtaIntercalibration_Stat120: 9.56265251e-23 + syst_JES_EtaIntercalibration_Stat121: 1.05533856e-21 + syst_JES_EtaIntercalibration_Stat122: 1.09023945e-10 + syst_JES_EtaIntercalibration_Stat123: 7.23816547e-10 + syst_JES_EtaIntercalibration_Stat124: 2.54662924e-11 + syst_JES_EtaIntercalibration_Stat125: 3.89084840e-14 + syst_JES_EtaIntercalibration_Stat126: 1.36700846e-18 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 1.8813335695723922e-14 - syst_JES_EtaIntercalibration_Stat129: 7.1931315850608485e-09 + syst_JES_EtaIntercalibration_Stat128: 1.88133357e-14 + syst_JES_EtaIntercalibration_Stat129: 7.19313159e-09 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 1.4281267477013374e-08 - syst_JES_EtaIntercalibration_Stat131: 3.4346729101910126e-09 - syst_JES_EtaIntercalibration_Stat132: 3.1201328684486946e-11 - syst_JES_EtaIntercalibration_Stat133: 1.6107459215043817e-17 + syst_JES_EtaIntercalibration_Stat130: 1.42812675e-08 + syst_JES_EtaIntercalibration_Stat131: 3.43467291e-09 + syst_JES_EtaIntercalibration_Stat132: 3.12013287e-11 + syst_JES_EtaIntercalibration_Stat133: 1.61074592e-17 syst_JES_EtaIntercalibration_Stat134: 0.0 - syst_JES_EtaIntercalibration_Stat135: 6.179957281405754e-20 - syst_JES_EtaIntercalibration_Stat136: 6.179957281405754e-20 - syst_JES_EtaIntercalibration_Stat137: 9.562652508587772e-23 - syst_JES_EtaIntercalibration_Stat138: 9.562652508587772e-23 - syst_JES_EtaIntercalibration_Stat139: 9.562652508587772e-23 + syst_JES_EtaIntercalibration_Stat135: 6.17995728e-20 + syst_JES_EtaIntercalibration_Stat136: 6.17995728e-20 + syst_JES_EtaIntercalibration_Stat137: 9.56265251e-23 + syst_JES_EtaIntercalibration_Stat138: 9.56265251e-23 + syst_JES_EtaIntercalibration_Stat139: 9.56265251e-23 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 1.6376540385563734e-22 - syst_JES_EtaIntercalibration_Stat141: 1.0949236351453921e-10 - syst_JES_EtaIntercalibration_Stat142: 1.465661259500554e-09 - syst_JES_EtaIntercalibration_Stat143: 2.8863154834494445e-08 - syst_JES_EtaIntercalibration_Stat144: 7.532283018447992e-09 - syst_JES_EtaIntercalibration_Stat145: 3.64792614885499e-18 - syst_JES_EtaIntercalibration_Stat146: 1.2947446763137178e-10 - syst_JES_EtaIntercalibration_Stat147: 7.193244799810444e-09 - syst_JES_EtaIntercalibration_Stat148: 1.4336753712050717e-08 - syst_JES_EtaIntercalibration_Stat149: 3.431457707738797e-09 + syst_JES_EtaIntercalibration_Stat140: 1.63765404e-22 + syst_JES_EtaIntercalibration_Stat141: 1.09492364e-10 + syst_JES_EtaIntercalibration_Stat142: 1.46566126e-09 + syst_JES_EtaIntercalibration_Stat143: 2.88631548e-08 + syst_JES_EtaIntercalibration_Stat144: 7.53228302e-09 + syst_JES_EtaIntercalibration_Stat145: 3.64792615e-18 + syst_JES_EtaIntercalibration_Stat146: 1.29474468e-10 + syst_JES_EtaIntercalibration_Stat147: 7.19324480e-09 + syst_JES_EtaIntercalibration_Stat148: 1.43367537e-08 + syst_JES_EtaIntercalibration_Stat149: 3.43145771e-09 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 3.130561735392613e-11 - syst_JES_EtaIntercalibration_Stat151: 9.678741474351752e-17 + syst_JES_EtaIntercalibration_Stat150: 3.13056174e-11 + syst_JES_EtaIntercalibration_Stat151: 9.67874147e-17 syst_JES_EtaIntercalibration_Stat152: 0.0 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 9.562652508587772e-23 + syst_JES_EtaIntercalibration_Stat156: 9.56265251e-23 syst_JES_EtaIntercalibration_Stat157: 0.0 syst_JES_EtaIntercalibration_Stat158: 0.0 - syst_JES_EtaIntercalibration_Stat159: 1.1169335337431677e-10 - syst_JES_EtaIntercalibration_Stat16: 1.0907589960666039e-10 - syst_JES_EtaIntercalibration_Stat160: 4.404286277116873e-09 - syst_JES_EtaIntercalibration_Stat161: 2.8896938259095895e-08 - syst_JES_EtaIntercalibration_Stat162: 3.7062279028009056e-09 - syst_JES_EtaIntercalibration_Stat163: 2.580401059912974e-15 - syst_JES_EtaIntercalibration_Stat164: 5.5376873382606206e-11 - syst_JES_EtaIntercalibration_Stat165: 4.132384917635336e-08 - syst_JES_EtaIntercalibration_Stat166: 1.0131083357667135e-07 - syst_JES_EtaIntercalibration_Stat167: 1.7946096288608284e-08 - syst_JES_EtaIntercalibration_Stat168: 3.60160567941578e-11 - syst_JES_EtaIntercalibration_Stat169: 9.678741474351752e-17 - syst_JES_EtaIntercalibration_Stat17: 4.9836444769942205e-21 + syst_JES_EtaIntercalibration_Stat159: 1.11693353e-10 + syst_JES_EtaIntercalibration_Stat16: 1.09075900e-10 + syst_JES_EtaIntercalibration_Stat160: 4.40428628e-09 + syst_JES_EtaIntercalibration_Stat161: 2.88969383e-08 + syst_JES_EtaIntercalibration_Stat162: 3.70622790e-09 + syst_JES_EtaIntercalibration_Stat163: 2.58040106e-15 + syst_JES_EtaIntercalibration_Stat164: 5.53768734e-11 + syst_JES_EtaIntercalibration_Stat165: 4.13238492e-08 + syst_JES_EtaIntercalibration_Stat166: 1.01310834e-07 + syst_JES_EtaIntercalibration_Stat167: 1.79460963e-08 + syst_JES_EtaIntercalibration_Stat168: 3.60160568e-11 + syst_JES_EtaIntercalibration_Stat169: 9.67874147e-17 + syst_JES_EtaIntercalibration_Stat17: 4.98364448e-21 syst_JES_EtaIntercalibration_Stat170: 0.0 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 syst_JES_EtaIntercalibration_Stat175: 0.0 - syst_JES_EtaIntercalibration_Stat176: 1.072918872748541e-17 - syst_JES_EtaIntercalibration_Stat177: 1.011720483532878e-10 - syst_JES_EtaIntercalibration_Stat178: 1.3824615242656844e-07 - syst_JES_EtaIntercalibration_Stat179: 2.208519130548794e-07 - syst_JES_EtaIntercalibration_Stat18: 1.752543068657658e-23 - syst_JES_EtaIntercalibration_Stat180: 2.8018426200448875e-08 - syst_JES_EtaIntercalibration_Stat181: 1.0393503436642525e-12 - syst_JES_EtaIntercalibration_Stat182: 1.7568242676773336e-07 - syst_JES_EtaIntercalibration_Stat183: 1.0323722717605311e-06 - syst_JES_EtaIntercalibration_Stat184: 5.068242275927622e-07 - syst_JES_EtaIntercalibration_Stat185: 5.46219464203721e-09 - syst_JES_EtaIntercalibration_Stat186: 9.67956593809867e-17 + syst_JES_EtaIntercalibration_Stat176: 1.07291887e-17 + syst_JES_EtaIntercalibration_Stat177: 1.01172048e-10 + syst_JES_EtaIntercalibration_Stat178: 1.38246152e-07 + syst_JES_EtaIntercalibration_Stat179: 2.20851913e-07 + syst_JES_EtaIntercalibration_Stat18: 1.75254307e-23 + syst_JES_EtaIntercalibration_Stat180: 2.80184262e-08 + syst_JES_EtaIntercalibration_Stat181: 1.03935034e-12 + syst_JES_EtaIntercalibration_Stat182: 1.75682427e-07 + syst_JES_EtaIntercalibration_Stat183: 1.03237227e-06 + syst_JES_EtaIntercalibration_Stat184: 5.06824228e-07 + syst_JES_EtaIntercalibration_Stat185: 5.46219464e-09 + syst_JES_EtaIntercalibration_Stat186: 9.67956594e-17 syst_JES_EtaIntercalibration_Stat187: 0.0 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 @@ -53129,31 +53129,31 @@ bins: syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 syst_JES_EtaIntercalibration_Stat192: 0.0 - syst_JES_EtaIntercalibration_Stat193: 1.0901527993455908e-10 - syst_JES_EtaIntercalibration_Stat194: 6.024550522653122e-08 - syst_JES_EtaIntercalibration_Stat195: 3.48698709023994e-07 - syst_JES_EtaIntercalibration_Stat196: 5.88663763705564e-07 - syst_JES_EtaIntercalibration_Stat197: 4.041018593705676e-07 - syst_JES_EtaIntercalibration_Stat198: 1.7299474522366279e-06 - syst_JES_EtaIntercalibration_Stat199: 1.2773968334076925e-06 + syst_JES_EtaIntercalibration_Stat193: 1.09015280e-10 + syst_JES_EtaIntercalibration_Stat194: 6.02455052e-08 + syst_JES_EtaIntercalibration_Stat195: 3.48698709e-07 + syst_JES_EtaIntercalibration_Stat196: 5.88663764e-07 + syst_JES_EtaIntercalibration_Stat197: 4.04101859e-07 + syst_JES_EtaIntercalibration_Stat198: 1.72994745e-06 + syst_JES_EtaIntercalibration_Stat199: 1.27739683e-06 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 8.592022464472495e-08 - syst_JES_EtaIntercalibration_Stat201: 9.67956593809867e-17 + syst_JES_EtaIntercalibration_Stat200: 8.59202246e-08 + syst_JES_EtaIntercalibration_Stat201: 9.67956594e-17 syst_JES_EtaIntercalibration_Stat202: 0.0 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 syst_JES_EtaIntercalibration_Stat207: 0.0 - syst_JES_EtaIntercalibration_Stat208: 1.0906723935261221e-10 - syst_JES_EtaIntercalibration_Stat209: 5.778360041352564e-08 + syst_JES_EtaIntercalibration_Stat208: 1.09067239e-10 + syst_JES_EtaIntercalibration_Stat209: 5.77836004e-08 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 5.381841413494083e-07 - syst_JES_EtaIntercalibration_Stat211: 1.6572940203838306e-06 - syst_JES_EtaIntercalibration_Stat212: 8.429852949488502e-07 - syst_JES_EtaIntercalibration_Stat213: 8.867092066032697e-08 - syst_JES_EtaIntercalibration_Stat214: 9.67956593809867e-17 + syst_JES_EtaIntercalibration_Stat210: 5.38184141e-07 + syst_JES_EtaIntercalibration_Stat211: 1.65729402e-06 + syst_JES_EtaIntercalibration_Stat212: 8.42985295e-07 + syst_JES_EtaIntercalibration_Stat213: 8.86709207e-08 + syst_JES_EtaIntercalibration_Stat214: 9.67956594e-17 syst_JES_EtaIntercalibration_Stat215: 0.0 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 @@ -53161,11 +53161,11 @@ bins: syst_JES_EtaIntercalibration_Stat219: 0.0 syst_JES_EtaIntercalibration_Stat22: 0.0 syst_JES_EtaIntercalibration_Stat220: 0.0 - syst_JES_EtaIntercalibration_Stat221: 1.0904991884453651e-10 - syst_JES_EtaIntercalibration_Stat222: 5.780104973743989e-08 - syst_JES_EtaIntercalibration_Stat223: 8.283922304681521e-07 - syst_JES_EtaIntercalibration_Stat224: 2.774060922186101e-06 - syst_JES_EtaIntercalibration_Stat225: 2.627088645249718e-07 + syst_JES_EtaIntercalibration_Stat221: 1.09049919e-10 + syst_JES_EtaIntercalibration_Stat222: 5.78010497e-08 + syst_JES_EtaIntercalibration_Stat223: 8.28392230e-07 + syst_JES_EtaIntercalibration_Stat224: 2.77406092e-06 + syst_JES_EtaIntercalibration_Stat225: 2.62708865e-07 syst_JES_EtaIntercalibration_Stat226: 0.0 syst_JES_EtaIntercalibration_Stat227: 0.0 syst_JES_EtaIntercalibration_Stat228: 0.0 @@ -53174,296 +53174,296 @@ bins: syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 syst_JES_EtaIntercalibration_Stat232: 0.0 - syst_JES_EtaIntercalibration_Stat233: 1.0904991884453651e-10 - syst_JES_EtaIntercalibration_Stat234: 7.193567562065433e-08 - syst_JES_EtaIntercalibration_Stat235: 2.9742308249360877e-06 - syst_JES_EtaIntercalibration_Stat236: 5.50983690774963e-09 + syst_JES_EtaIntercalibration_Stat233: 1.09049919e-10 + syst_JES_EtaIntercalibration_Stat234: 7.19356756e-08 + syst_JES_EtaIntercalibration_Stat235: 2.97423082e-06 + syst_JES_EtaIntercalibration_Stat236: 5.50983691e-09 syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 syst_JES_EtaIntercalibration_Stat239: 0.0 - syst_JES_EtaIntercalibration_Stat24: 6.990557059347988e-23 + syst_JES_EtaIntercalibration_Stat24: 6.99055706e-23 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 syst_JES_EtaIntercalibration_Stat243: 0.0 - syst_JES_EtaIntercalibration_Stat244: 1.0904991884453651e-10 - syst_JES_EtaIntercalibration_Stat245: 5.947856228928201e-08 - syst_JES_EtaIntercalibration_Stat25: 1.6292884182980006e-21 - syst_JES_EtaIntercalibration_Stat26: 3.07265813242093e-11 - syst_JES_EtaIntercalibration_Stat27: 1.6063162809736663e-17 - syst_JES_EtaIntercalibration_Stat28: 4.493983140544699e-22 + syst_JES_EtaIntercalibration_Stat244: 1.09049919e-10 + syst_JES_EtaIntercalibration_Stat245: 5.94785623e-08 + syst_JES_EtaIntercalibration_Stat25: 1.62928842e-21 + syst_JES_EtaIntercalibration_Stat26: 3.07265813e-11 + syst_JES_EtaIntercalibration_Stat27: 1.60631628e-17 + syst_JES_EtaIntercalibration_Stat28: 4.49398314e-22 syst_JES_EtaIntercalibration_Stat29: 0.0 - syst_JES_EtaIntercalibration_Stat3: 1.2865044762844786e-22 + syst_JES_EtaIntercalibration_Stat3: 1.28650448e-22 syst_JES_EtaIntercalibration_Stat30: 0.0 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 2.49155508668783e-22 - syst_JES_EtaIntercalibration_Stat36: 2.49155508668783e-22 - syst_JES_EtaIntercalibration_Stat37: 1.207256882357686e-21 - syst_JES_EtaIntercalibration_Stat38: 1.0907589960925475e-10 - syst_JES_EtaIntercalibration_Stat39: 1.0907589960890893e-10 - syst_JES_EtaIntercalibration_Stat4: 9.367798421442515e-17 - syst_JES_EtaIntercalibration_Stat40: 7.74053804525241e-21 + syst_JES_EtaIntercalibration_Stat35: 2.49155509e-22 + syst_JES_EtaIntercalibration_Stat36: 2.49155509e-22 + syst_JES_EtaIntercalibration_Stat37: 1.20725688e-21 + syst_JES_EtaIntercalibration_Stat38: 1.09075900e-10 + syst_JES_EtaIntercalibration_Stat39: 1.09075900e-10 + syst_JES_EtaIntercalibration_Stat4: 9.36779842e-17 + syst_JES_EtaIntercalibration_Stat40: 7.74053805e-21 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 syst_JES_EtaIntercalibration_Stat44: 0.0 syst_JES_EtaIntercalibration_Stat45: 0.0 - syst_JES_EtaIntercalibration_Stat46: 1.8067112885018457e-22 - syst_JES_EtaIntercalibration_Stat47: 1.0530144443453756e-20 - syst_JES_EtaIntercalibration_Stat48: 3.095174790779232e-11 - syst_JES_EtaIntercalibration_Stat49: 1.6117041707927512e-17 - syst_JES_EtaIntercalibration_Stat5: 9.368663095152749e-17 - syst_JES_EtaIntercalibration_Stat50: 1.1101547820011407e-21 + syst_JES_EtaIntercalibration_Stat46: 1.80671129e-22 + syst_JES_EtaIntercalibration_Stat47: 1.05301444e-20 + syst_JES_EtaIntercalibration_Stat48: 3.09517479e-11 + syst_JES_EtaIntercalibration_Stat49: 1.61170417e-17 + syst_JES_EtaIntercalibration_Stat5: 9.36866310e-17 + syst_JES_EtaIntercalibration_Stat50: 1.11015478e-21 syst_JES_EtaIntercalibration_Stat51: 0.0 syst_JES_EtaIntercalibration_Stat52: 0.0 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 9.562652508587772e-23 - syst_JES_EtaIntercalibration_Stat57: 2.49155508668783e-22 - syst_JES_EtaIntercalibration_Stat58: 2.49155508668783e-22 - syst_JES_EtaIntercalibration_Stat59: 1.5745155826475647e-21 + syst_JES_EtaIntercalibration_Stat56: 9.56265251e-23 + syst_JES_EtaIntercalibration_Stat57: 2.49155509e-22 + syst_JES_EtaIntercalibration_Stat58: 2.49155509e-22 + syst_JES_EtaIntercalibration_Stat59: 1.57451558e-21 syst_JES_EtaIntercalibration_Stat6: 0.0 - syst_JES_EtaIntercalibration_Stat60: 1.0907590191662866e-10 - syst_JES_EtaIntercalibration_Stat61: 1.0907590572367753e-10 - syst_JES_EtaIntercalibration_Stat62: 1.8042273103741666e-20 - syst_JES_EtaIntercalibration_Stat63: 6.83511646352862e-23 + syst_JES_EtaIntercalibration_Stat60: 1.09075902e-10 + syst_JES_EtaIntercalibration_Stat61: 1.09075906e-10 + syst_JES_EtaIntercalibration_Stat62: 1.80422731e-20 + syst_JES_EtaIntercalibration_Stat63: 6.83511646e-23 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 4.765920976054892e-22 - syst_JES_EtaIntercalibration_Stat69: 3.109028399447417e-11 + syst_JES_EtaIntercalibration_Stat68: 4.76592098e-22 + syst_JES_EtaIntercalibration_Stat69: 3.10902840e-11 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 3.1218185505301536e-11 - syst_JES_EtaIntercalibration_Stat71: 3.077854262279201e-11 - syst_JES_EtaIntercalibration_Stat72: 1.6089970421972442e-17 + syst_JES_EtaIntercalibration_Stat70: 3.12181855e-11 + syst_JES_EtaIntercalibration_Stat71: 3.07785426e-11 + syst_JES_EtaIntercalibration_Stat72: 1.60899704e-17 syst_JES_EtaIntercalibration_Stat73: 0.0 syst_JES_EtaIntercalibration_Stat74: 0.0 syst_JES_EtaIntercalibration_Stat75: 0.0 - syst_JES_EtaIntercalibration_Stat76: 3.739497693541206e-22 - syst_JES_EtaIntercalibration_Stat77: 9.562652508587772e-23 - syst_JES_EtaIntercalibration_Stat78: 9.562652508587772e-23 - syst_JES_EtaIntercalibration_Stat79: 2.49155508668783e-22 + syst_JES_EtaIntercalibration_Stat76: 3.73949769e-22 + syst_JES_EtaIntercalibration_Stat77: 9.56265251e-23 + syst_JES_EtaIntercalibration_Stat78: 9.56265251e-23 + syst_JES_EtaIntercalibration_Stat79: 2.49155509e-22 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 2.3902301144450504e-22 - syst_JES_EtaIntercalibration_Stat81: 5.762866539318779e-21 - syst_JES_EtaIntercalibration_Stat82: 1.0901528439574604e-10 - syst_JES_EtaIntercalibration_Stat83: 1.7034716017608615e-10 - syst_JES_EtaIntercalibration_Stat84: 2.4708947266122047e-18 - syst_JES_EtaIntercalibration_Stat85: 7.877921220093534e-23 + syst_JES_EtaIntercalibration_Stat80: 2.39023011e-22 + syst_JES_EtaIntercalibration_Stat81: 5.76286654e-21 + syst_JES_EtaIntercalibration_Stat82: 1.09015284e-10 + syst_JES_EtaIntercalibration_Stat83: 1.70347160e-10 + syst_JES_EtaIntercalibration_Stat84: 2.47089473e-18 + syst_JES_EtaIntercalibration_Stat85: 7.87792122e-23 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 5.183771696361636e-22 + syst_JES_EtaIntercalibration_Stat89: 5.18377170e-22 syst_JES_EtaIntercalibration_Stat9: 0.0 - syst_JES_EtaIntercalibration_Stat90: 3.110523781556095e-11 - syst_JES_EtaIntercalibration_Stat91: 3.132890739436356e-11 - syst_JES_EtaIntercalibration_Stat92: 7.473010554656001e-17 - syst_JES_EtaIntercalibration_Stat93: 1.6565443101892324e-17 + syst_JES_EtaIntercalibration_Stat90: 3.11052378e-11 + syst_JES_EtaIntercalibration_Stat91: 3.13289074e-11 + syst_JES_EtaIntercalibration_Stat92: 7.47301055e-17 + syst_JES_EtaIntercalibration_Stat93: 1.65654431e-17 syst_JES_EtaIntercalibration_Stat94: 0.0 syst_JES_EtaIntercalibration_Stat95: 0.0 - syst_JES_EtaIntercalibration_Stat96: 1.022169784086773e-19 - syst_JES_EtaIntercalibration_Stat97: 3.739497693541206e-22 - syst_JES_EtaIntercalibration_Stat98: 9.562652508587772e-23 - syst_JES_EtaIntercalibration_Stat99: 9.562652508587772e-23 - syst_JES_EtaIntercalibration_TotalStat_MJB: 1.509534365292821e-05 - syst_JES_Flavour_Comp: 3.9120143788079315e-05 - syst_JES_Gjet_Generator: 4.466226259382747e-05 - syst_JES_Gjet_OOC: 3.765581329622294e-05 - syst_JES_Gjet_Purity: 4.030293537696728e-06 - syst_JES_Gjet_Stat1: 8.756864550168627e-09 - syst_JES_Gjet_Stat10: 3.990031281832261e-07 - syst_JES_Gjet_Stat11: 4.7422094797678433e-07 - syst_JES_Gjet_Stat12: 1.5798439796384956e-06 - syst_JES_Gjet_Stat13: 6.355644164834906e-06 - syst_JES_Gjet_Stat14: 2.0885748131201812e-05 - syst_JES_Gjet_Stat15: 3.0540003274394064e-05 - syst_JES_Gjet_Stat2: 5.988948578005992e-08 - syst_JES_Gjet_Stat3: 6.17822523059843e-08 - syst_JES_Gjet_Stat4: 6.974968602080219e-08 - syst_JES_Gjet_Stat5: 7.048580761402014e-08 - syst_JES_Gjet_Stat6: 4.6279114559577724e-10 - syst_JES_Gjet_Stat7: 3.542890936438773e-11 - syst_JES_Gjet_Stat8: 5.563542127098526e-08 - syst_JES_Gjet_Stat9: 4.087476574856424e-08 - syst_JES_Gjet_Veto: 3.814279180592317e-05 - syst_JES_Gjet_dPhi: 1.911387276299599e-06 - syst_JES_LArESZee: 6.552754592535875e-05 - syst_JES_LArEsmear: 3.701254483279959e-06 - syst_JES_LAr_JVT: 5.172164029688154e-06 - syst_JES_MJB_Alpha: 1.8550264149062675e-07 - syst_JES_MJB_Asym: 1.028271257985946e-05 - syst_JES_MJB_Beta: 2.81544858770321e-07 - syst_JES_MJB_Stat1: 1.863686668944112e-11 - syst_JES_MJB_Stat10: 3.251059365806783e-08 - syst_JES_MJB_Stat11: 4.2897347330575113e-08 + syst_JES_EtaIntercalibration_Stat96: 1.02216978e-19 + syst_JES_EtaIntercalibration_Stat97: 3.73949769e-22 + syst_JES_EtaIntercalibration_Stat98: 9.56265251e-23 + syst_JES_EtaIntercalibration_Stat99: 9.56265251e-23 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.50953437e-05 + syst_JES_Flavour_Comp: 3.91201438e-05 + syst_JES_Gjet_Generator: 4.46622626e-05 + syst_JES_Gjet_OOC: 3.76558133e-05 + syst_JES_Gjet_Purity: 4.03029354e-06 + syst_JES_Gjet_Stat1: 8.75686455e-09 + syst_JES_Gjet_Stat10: 3.99003128e-07 + syst_JES_Gjet_Stat11: 4.74220948e-07 + syst_JES_Gjet_Stat12: 1.57984398e-06 + syst_JES_Gjet_Stat13: 6.35564416e-06 + syst_JES_Gjet_Stat14: 2.08857481e-05 + syst_JES_Gjet_Stat15: 3.05400033e-05 + syst_JES_Gjet_Stat2: 5.98894858e-08 + syst_JES_Gjet_Stat3: 6.17822523e-08 + syst_JES_Gjet_Stat4: 6.97496860e-08 + syst_JES_Gjet_Stat5: 7.04858076e-08 + syst_JES_Gjet_Stat6: 4.62791146e-10 + syst_JES_Gjet_Stat7: 3.54289094e-11 + syst_JES_Gjet_Stat8: 5.56354213e-08 + syst_JES_Gjet_Stat9: 4.08747657e-08 + syst_JES_Gjet_Veto: 3.81427918e-05 + syst_JES_Gjet_dPhi: 1.91138728e-06 + syst_JES_LArESZee: 6.55275459e-05 + syst_JES_LArEsmear: 3.70125448e-06 + syst_JES_LAr_JVT: 5.17216403e-06 + syst_JES_MJB_Alpha: 1.85502641e-07 + syst_JES_MJB_Asym: 1.02827126e-05 + syst_JES_MJB_Beta: 2.81544859e-07 + syst_JES_MJB_Stat1: 1.86368667e-11 + syst_JES_MJB_Stat10: 3.25105937e-08 + syst_JES_MJB_Stat11: 4.28973473e-08 syst_JES_MJB_Stat12: 0.0 syst_JES_MJB_Stat13: 0.0 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 - syst_JES_MJB_Stat16: 2.3244121837574332e-09 - syst_JES_MJB_Stat2: 3.0206637461822858e-09 - syst_JES_MJB_Stat3: 3.357043152370103e-08 - syst_JES_MJB_Stat4: 8.710929244776357e-10 - syst_JES_MJB_Stat5: 6.081871669149227e-09 - syst_JES_MJB_Stat6: 3.720620567526337e-08 - syst_JES_MJB_Stat7: 6.060382228044696e-08 - syst_JES_MJB_Stat8: 4.007756283757784e-08 - syst_JES_MJB_Stat9: 5.9364889016993873e-08 - syst_JES_MJB_Threshold: 5.673272864934313e-06 - syst_JES_Pileup_MuOffset: 9.567710110052455e-06 - syst_JES_Pileup_NPVOffset: 7.506862510396737e-06 - syst_JES_Pileup_Pt_term: 7.53276846517932e-06 - syst_JES_PunchThrough_MC15: 1.0898296793536135e-05 + syst_JES_MJB_Stat16: 2.32441218e-09 + syst_JES_MJB_Stat2: 3.02066375e-09 + syst_JES_MJB_Stat3: 3.35704315e-08 + syst_JES_MJB_Stat4: 8.71092924e-10 + syst_JES_MJB_Stat5: 6.08187167e-09 + syst_JES_MJB_Stat6: 3.72062057e-08 + syst_JES_MJB_Stat7: 6.06038223e-08 + syst_JES_MJB_Stat8: 4.00775628e-08 + syst_JES_MJB_Stat9: 5.93648890e-08 + syst_JES_MJB_Threshold: 5.67327286e-06 + syst_JES_Pileup_MuOffset: 9.56771011e-06 + syst_JES_Pileup_NPVOffset: 7.50686251e-06 + syst_JES_Pileup_Pt_term: 7.53276847e-06 + syst_JES_PunchThrough_MC15: 1.08982968e-05 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 1.618200234828805e-05 - syst_JES_Zjet_MuScale: 7.222632047079514e-08 - syst_JES_Zjet_MuSmearID: 7.479244396996263e-08 - syst_JES_Zjet_MuSmearMS: 3.804887481910602e-06 - syst_JES_Zjet_OOC: 8.629330564997496e-06 - syst_JES_Zjet_Stat1: 8.197796472220282e-09 - syst_JES_Zjet_Stat10: 3.790130402334463e-07 - syst_JES_Zjet_Stat11: 3.6587163717176816e-07 - syst_JES_Zjet_Stat12: 1.930228678162253e-06 - syst_JES_Zjet_Stat13: 4.146412786976231e-06 - syst_JES_Zjet_Stat2: 4.703382398359716e-10 - syst_JES_Zjet_Stat3: 8.595302132560554e-08 - syst_JES_Zjet_Stat4: 5.00568943802949e-21 - syst_JES_Zjet_Stat5: 7.723839378832266e-21 - syst_JES_Zjet_Stat6: 7.291071776491337e-08 - syst_JES_Zjet_Stat7: 2.7832630342953576e-16 - syst_JES_Zjet_Stat8: 2.316025906590857e-13 - syst_JES_Zjet_Stat9: 2.847317479663973e-08 - syst_JES_Zjet_Veto: 1.774196355311328e-07 - syst_JES_Zjet_dPhi: 1.599167388072618e-07 - syst_PRW: 7.549e-06 - syst_Unfolding_bias: 1.0793e-06 - syst_cleaning: 5.378883782905149e-06 - syst_lumi: 1.649e-05 + syst_JES_Zjet_MC: 1.61820023e-05 + syst_JES_Zjet_MuScale: 7.22263205e-08 + syst_JES_Zjet_MuSmearID: 7.47924440e-08 + syst_JES_Zjet_MuSmearMS: 3.80488748e-06 + syst_JES_Zjet_OOC: 8.62933056e-06 + syst_JES_Zjet_Stat1: 8.19779647e-09 + syst_JES_Zjet_Stat10: 3.79013040e-07 + syst_JES_Zjet_Stat11: 3.65871637e-07 + syst_JES_Zjet_Stat12: 1.93022868e-06 + syst_JES_Zjet_Stat13: 4.14641279e-06 + syst_JES_Zjet_Stat2: 4.70338240e-10 + syst_JES_Zjet_Stat3: 8.59530213e-08 + syst_JES_Zjet_Stat4: 5.00568944e-21 + syst_JES_Zjet_Stat5: 7.72383938e-21 + syst_JES_Zjet_Stat6: 7.29107178e-08 + syst_JES_Zjet_Stat7: 2.78326303e-16 + syst_JES_Zjet_Stat8: 2.31602591e-13 + syst_JES_Zjet_Stat9: 2.84731748e-08 + syst_JES_Zjet_Veto: 1.77419636e-07 + syst_JES_Zjet_dPhi: 1.59916739e-07 + syst_PRW: 7.54900000e-06 + syst_Unfolding_bias: 1.07930000e-06 + syst_cleaning: 5.37888378e-06 + syst_lumi: 1.64900000e-05 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 7.867070738209999e-06 - syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.6934323133801363e-06 - syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.8555503226805788e-06 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 6.938404139281597e-06 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 3.340519720043574e-06 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.0089043302018285e-05 -- stat: 3.602e-05 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 7.86707074e-06 + syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.69343231e-06 + syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.85555032e-06 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 6.93840414e-06 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 3.34051972e-06 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.00890433e-05 +- stat: 3.60200000e-05 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 7.619588965292026e-06 - syst_JER_NP1: 1.3060509484702349e-05 - syst_JER_NP2: 4.569150030368288e-06 - syst_JER_NP3: 8.016340582837221e-09 - syst_JER_NP4: 7.427806853353957e-09 - syst_JER_NP5: 5.008775918662239e-15 - syst_JER_NP6: 1.5798275443857788e-17 - syst_JER_NP7: 1.2481207032975617e-20 - syst_JER_NP8: 3.256955134784635e-07 - syst_JES_EtaIntercalibration_Modelling: 3.497669902949677e-05 - syst_JES_EtaIntercalibration_NonClosure: 5.019321268856976e-08 + syst_JER_NP0: 7.61958897e-06 + syst_JER_NP1: 1.30605095e-05 + syst_JER_NP2: 4.56915003e-06 + syst_JER_NP3: 8.01634058e-09 + syst_JER_NP4: 7.42780685e-09 + syst_JER_NP5: 5.00877592e-15 + syst_JER_NP6: 1.57982754e-17 + syst_JER_NP7: 1.24812070e-20 + syst_JER_NP8: 3.25695513e-07 + syst_JES_EtaIntercalibration_Modelling: 3.49766990e-05 + syst_JES_EtaIntercalibration_NonClosure: 5.01932127e-08 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 2.1919102969784144e-23 + syst_JES_EtaIntercalibration_Stat100: 2.19191030e-23 syst_JES_EtaIntercalibration_Stat101: 0.0 - syst_JES_EtaIntercalibration_Stat102: 3.2509615789024635e-20 - syst_JES_EtaIntercalibration_Stat103: 1.2173717112027476e-11 - syst_JES_EtaIntercalibration_Stat104: 3.517054174572095e-11 - syst_JES_EtaIntercalibration_Stat105: 1.7333697672452926e-18 - syst_JES_EtaIntercalibration_Stat106: 9.28112120112651e-22 + syst_JES_EtaIntercalibration_Stat102: 3.25096158e-20 + syst_JES_EtaIntercalibration_Stat103: 1.21737171e-11 + syst_JES_EtaIntercalibration_Stat104: 3.51705417e-11 + syst_JES_EtaIntercalibration_Stat105: 1.73336977e-18 + syst_JES_EtaIntercalibration_Stat106: 9.28112120e-22 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 2.5478247584949797e-20 + syst_JES_EtaIntercalibration_Stat109: 2.54782476e-20 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 2.97621562642726e-11 - syst_JES_EtaIntercalibration_Stat111: 2.996053961427931e-11 - syst_JES_EtaIntercalibration_Stat112: 6.212403147534777e-12 - syst_JES_EtaIntercalibration_Stat113: 4.887503995650541e-18 - syst_JES_EtaIntercalibration_Stat114: 3.984582882812202e-21 + syst_JES_EtaIntercalibration_Stat110: 2.97621563e-11 + syst_JES_EtaIntercalibration_Stat111: 2.99605396e-11 + syst_JES_EtaIntercalibration_Stat112: 6.21240315e-12 + syst_JES_EtaIntercalibration_Stat113: 4.88750400e-18 + syst_JES_EtaIntercalibration_Stat114: 3.98458288e-21 syst_JES_EtaIntercalibration_Stat115: 0.0 - syst_JES_EtaIntercalibration_Stat116: 5.1078178315206194e-21 - syst_JES_EtaIntercalibration_Stat117: 1.204987746825668e-20 - syst_JES_EtaIntercalibration_Stat118: 2.1919102969784144e-23 - syst_JES_EtaIntercalibration_Stat119: 2.1919102969784144e-23 + syst_JES_EtaIntercalibration_Stat116: 5.10781783e-21 + syst_JES_EtaIntercalibration_Stat117: 1.20498775e-20 + syst_JES_EtaIntercalibration_Stat118: 2.19191030e-23 + syst_JES_EtaIntercalibration_Stat119: 2.19191030e-23 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 2.1919102969784144e-23 - syst_JES_EtaIntercalibration_Stat121: 1.8576244911176208e-22 - syst_JES_EtaIntercalibration_Stat122: 1.2170254144327208e-11 - syst_JES_EtaIntercalibration_Stat123: 1.3936853140174791e-10 - syst_JES_EtaIntercalibration_Stat124: 5.181290670045447e-11 - syst_JES_EtaIntercalibration_Stat125: 4.471206202748874e-15 - syst_JES_EtaIntercalibration_Stat126: 1.4933507391098715e-19 + syst_JES_EtaIntercalibration_Stat120: 2.19191030e-23 + syst_JES_EtaIntercalibration_Stat121: 1.85762449e-22 + syst_JES_EtaIntercalibration_Stat122: 1.21702541e-11 + syst_JES_EtaIntercalibration_Stat123: 1.39368531e-10 + syst_JES_EtaIntercalibration_Stat124: 5.18129067e-11 + syst_JES_EtaIntercalibration_Stat125: 4.47120620e-15 + syst_JES_EtaIntercalibration_Stat126: 1.49335074e-19 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 2.151147600700612e-15 - syst_JES_EtaIntercalibration_Stat129: 1.7629571974384402e-09 + syst_JES_EtaIntercalibration_Stat128: 2.15114760e-15 + syst_JES_EtaIntercalibration_Stat129: 1.76295720e-09 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 2.19213724022927e-09 - syst_JES_EtaIntercalibration_Stat131: 4.488537965292039e-10 - syst_JES_EtaIntercalibration_Stat132: 6.128681150983402e-12 - syst_JES_EtaIntercalibration_Stat133: 2.0269259226392564e-18 + syst_JES_EtaIntercalibration_Stat130: 2.19213724e-09 + syst_JES_EtaIntercalibration_Stat131: 4.48853797e-10 + syst_JES_EtaIntercalibration_Stat132: 6.12868115e-12 + syst_JES_EtaIntercalibration_Stat133: 2.02692592e-18 syst_JES_EtaIntercalibration_Stat134: 0.0 - syst_JES_EtaIntercalibration_Stat135: 5.1078178315206194e-21 - syst_JES_EtaIntercalibration_Stat136: 5.1078178315206194e-21 - syst_JES_EtaIntercalibration_Stat137: 2.1919102969784144e-23 - syst_JES_EtaIntercalibration_Stat138: 2.1919102969784144e-23 - syst_JES_EtaIntercalibration_Stat139: 2.1919102969784144e-23 + syst_JES_EtaIntercalibration_Stat135: 5.10781783e-21 + syst_JES_EtaIntercalibration_Stat136: 5.10781783e-21 + syst_JES_EtaIntercalibration_Stat137: 2.19191030e-23 + syst_JES_EtaIntercalibration_Stat138: 2.19191030e-23 + syst_JES_EtaIntercalibration_Stat139: 2.19191030e-23 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 1.1621194893383381e-23 - syst_JES_EtaIntercalibration_Stat141: 1.2150296570454567e-11 - syst_JES_EtaIntercalibration_Stat142: 3.1398243321276356e-10 - syst_JES_EtaIntercalibration_Stat143: 1.000593252563198e-08 - syst_JES_EtaIntercalibration_Stat144: 1.871152105488755e-09 - syst_JES_EtaIntercalibration_Stat145: 4.475827711999201e-19 - syst_JES_EtaIntercalibration_Stat146: 1.4600781609864616e-11 - syst_JES_EtaIntercalibration_Stat147: 1.7631389621921466e-09 - syst_JES_EtaIntercalibration_Stat148: 2.2117652384464316e-09 - syst_JES_EtaIntercalibration_Stat149: 4.477072048728611e-10 + syst_JES_EtaIntercalibration_Stat140: 1.16211949e-23 + syst_JES_EtaIntercalibration_Stat141: 1.21502966e-11 + syst_JES_EtaIntercalibration_Stat142: 3.13982433e-10 + syst_JES_EtaIntercalibration_Stat143: 1.00059325e-08 + syst_JES_EtaIntercalibration_Stat144: 1.87115211e-09 + syst_JES_EtaIntercalibration_Stat145: 4.47582771e-19 + syst_JES_EtaIntercalibration_Stat146: 1.46007816e-11 + syst_JES_EtaIntercalibration_Stat147: 1.76313896e-09 + syst_JES_EtaIntercalibration_Stat148: 2.21176524e-09 + syst_JES_EtaIntercalibration_Stat149: 4.47707205e-10 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 6.1469127661772715e-12 - syst_JES_EtaIntercalibration_Stat151: 1.157743119856957e-17 + syst_JES_EtaIntercalibration_Stat150: 6.14691277e-12 + syst_JES_EtaIntercalibration_Stat151: 1.15774312e-17 syst_JES_EtaIntercalibration_Stat152: 0.0 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 2.1919102969784144e-23 + syst_JES_EtaIntercalibration_Stat156: 2.19191030e-23 syst_JES_EtaIntercalibration_Stat157: 0.0 syst_JES_EtaIntercalibration_Stat158: 0.0 - syst_JES_EtaIntercalibration_Stat159: 1.1875111820526153e-11 - syst_JES_EtaIntercalibration_Stat16: 1.2158996669131284e-11 - syst_JES_EtaIntercalibration_Stat160: 1.6801452321748852e-09 - syst_JES_EtaIntercalibration_Stat161: 1.0017617518651829e-08 - syst_JES_EtaIntercalibration_Stat162: 3.728228891511357e-10 - syst_JES_EtaIntercalibration_Stat163: 2.9902139187690236e-16 - syst_JES_EtaIntercalibration_Stat164: 2.978695781464095e-11 - syst_JES_EtaIntercalibration_Stat165: 7.602433217727073e-09 - syst_JES_EtaIntercalibration_Stat166: 2.303567830561974e-08 - syst_JES_EtaIntercalibration_Stat167: 3.134863434027071e-09 - syst_JES_EtaIntercalibration_Stat168: 6.818499620151048e-12 - syst_JES_EtaIntercalibration_Stat169: 1.157743119856957e-17 - syst_JES_EtaIntercalibration_Stat17: 8.253688885999702e-22 + syst_JES_EtaIntercalibration_Stat159: 1.18751118e-11 + syst_JES_EtaIntercalibration_Stat16: 1.21589967e-11 + syst_JES_EtaIntercalibration_Stat160: 1.68014523e-09 + syst_JES_EtaIntercalibration_Stat161: 1.00176175e-08 + syst_JES_EtaIntercalibration_Stat162: 3.72822889e-10 + syst_JES_EtaIntercalibration_Stat163: 2.99021392e-16 + syst_JES_EtaIntercalibration_Stat164: 2.97869578e-11 + syst_JES_EtaIntercalibration_Stat165: 7.60243322e-09 + syst_JES_EtaIntercalibration_Stat166: 2.30356783e-08 + syst_JES_EtaIntercalibration_Stat167: 3.13486343e-09 + syst_JES_EtaIntercalibration_Stat168: 6.81849962e-12 + syst_JES_EtaIntercalibration_Stat169: 1.15774312e-17 + syst_JES_EtaIntercalibration_Stat17: 8.25368889e-22 syst_JES_EtaIntercalibration_Stat170: 0.0 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 syst_JES_EtaIntercalibration_Stat175: 0.0 - syst_JES_EtaIntercalibration_Stat176: 1.3509996299037244e-18 - syst_JES_EtaIntercalibration_Stat177: 5.3304633224584705e-11 - syst_JES_EtaIntercalibration_Stat178: 3.649005270960841e-08 - syst_JES_EtaIntercalibration_Stat179: 5.292294794085076e-08 - syst_JES_EtaIntercalibration_Stat18: 3.852497724853319e-24 - syst_JES_EtaIntercalibration_Stat180: 9.632377276664364e-09 - syst_JES_EtaIntercalibration_Stat181: 1.250029216138567e-13 - syst_JES_EtaIntercalibration_Stat182: 3.783121032956783e-08 - syst_JES_EtaIntercalibration_Stat183: 4.366509017510441e-07 - syst_JES_EtaIntercalibration_Stat184: 2.1900965732131538e-07 - syst_JES_EtaIntercalibration_Stat185: 1.2493460169224537e-09 - syst_JES_EtaIntercalibration_Stat186: 1.1578759648597945e-17 + syst_JES_EtaIntercalibration_Stat176: 1.35099963e-18 + syst_JES_EtaIntercalibration_Stat177: 5.33046332e-11 + syst_JES_EtaIntercalibration_Stat178: 3.64900527e-08 + syst_JES_EtaIntercalibration_Stat179: 5.29229479e-08 + syst_JES_EtaIntercalibration_Stat18: 3.85249772e-24 + syst_JES_EtaIntercalibration_Stat180: 9.63237728e-09 + syst_JES_EtaIntercalibration_Stat181: 1.25002922e-13 + syst_JES_EtaIntercalibration_Stat182: 3.78312103e-08 + syst_JES_EtaIntercalibration_Stat183: 4.36650902e-07 + syst_JES_EtaIntercalibration_Stat184: 2.19009657e-07 + syst_JES_EtaIntercalibration_Stat185: 1.24934602e-09 + syst_JES_EtaIntercalibration_Stat186: 1.15787596e-17 syst_JES_EtaIntercalibration_Stat187: 0.0 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 @@ -53471,31 +53471,31 @@ bins: syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 syst_JES_EtaIntercalibration_Stat192: 0.0 - syst_JES_EtaIntercalibration_Stat193: 1.2171120794452629e-11 - syst_JES_EtaIntercalibration_Stat194: 1.5957172956072138e-08 - syst_JES_EtaIntercalibration_Stat195: 2.1674426607179254e-07 - syst_JES_EtaIntercalibration_Stat196: 2.1000508773598796e-07 - syst_JES_EtaIntercalibration_Stat197: 9.693873863425292e-08 - syst_JES_EtaIntercalibration_Stat198: 7.805887167228335e-07 - syst_JES_EtaIntercalibration_Stat199: 6.529165088278899e-07 + syst_JES_EtaIntercalibration_Stat193: 1.21711208e-11 + syst_JES_EtaIntercalibration_Stat194: 1.59571730e-08 + syst_JES_EtaIntercalibration_Stat195: 2.16744266e-07 + syst_JES_EtaIntercalibration_Stat196: 2.10005088e-07 + syst_JES_EtaIntercalibration_Stat197: 9.69387386e-08 + syst_JES_EtaIntercalibration_Stat198: 7.80588717e-07 + syst_JES_EtaIntercalibration_Stat199: 6.52916509e-07 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 5.161017154350487e-08 - syst_JES_EtaIntercalibration_Stat201: 1.1578759648597945e-17 + syst_JES_EtaIntercalibration_Stat200: 5.16101715e-08 + syst_JES_EtaIntercalibration_Stat201: 1.15787596e-17 syst_JES_EtaIntercalibration_Stat202: 0.0 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 syst_JES_EtaIntercalibration_Stat207: 0.0 - syst_JES_EtaIntercalibration_Stat208: 1.2161594745344873e-11 - syst_JES_EtaIntercalibration_Stat209: 1.660578896048002e-08 + syst_JES_EtaIntercalibration_Stat208: 1.21615947e-11 + syst_JES_EtaIntercalibration_Stat209: 1.66057890e-08 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 3.2141363925633275e-07 - syst_JES_EtaIntercalibration_Stat211: 6.695465004762552e-07 - syst_JES_EtaIntercalibration_Stat212: 4.926910898321584e-07 - syst_JES_EtaIntercalibration_Stat213: 5.197744203738772e-08 - syst_JES_EtaIntercalibration_Stat214: 1.1578759648597945e-17 + syst_JES_EtaIntercalibration_Stat210: 3.21413639e-07 + syst_JES_EtaIntercalibration_Stat211: 6.69546500e-07 + syst_JES_EtaIntercalibration_Stat212: 4.92691090e-07 + syst_JES_EtaIntercalibration_Stat213: 5.19774420e-08 + syst_JES_EtaIntercalibration_Stat214: 1.15787596e-17 syst_JES_EtaIntercalibration_Stat215: 0.0 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 @@ -53503,11 +53503,11 @@ bins: syst_JES_EtaIntercalibration_Stat219: 0.0 syst_JES_EtaIntercalibration_Stat22: 0.0 syst_JES_EtaIntercalibration_Stat220: 0.0 - syst_JES_EtaIntercalibration_Stat221: 1.216332679615244e-11 - syst_JES_EtaIntercalibration_Stat222: 1.6604498208316925e-08 - syst_JES_EtaIntercalibration_Stat223: 3.3988199422740826e-07 - syst_JES_EtaIntercalibration_Stat224: 1.3329700624920275e-06 - syst_JES_EtaIntercalibration_Stat225: 1.868866278656662e-07 + syst_JES_EtaIntercalibration_Stat221: 1.21633268e-11 + syst_JES_EtaIntercalibration_Stat222: 1.66044982e-08 + syst_JES_EtaIntercalibration_Stat223: 3.39881994e-07 + syst_JES_EtaIntercalibration_Stat224: 1.33297006e-06 + syst_JES_EtaIntercalibration_Stat225: 1.86886628e-07 syst_JES_EtaIntercalibration_Stat226: 0.0 syst_JES_EtaIntercalibration_Stat227: 0.0 syst_JES_EtaIntercalibration_Stat228: 0.0 @@ -53516,296 +53516,296 @@ bins: syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 syst_JES_EtaIntercalibration_Stat232: 0.0 - syst_JES_EtaIntercalibration_Stat233: 1.216332679615244e-11 - syst_JES_EtaIntercalibration_Stat234: 2.3647898574714837e-08 - syst_JES_EtaIntercalibration_Stat235: 1.3992046338902685e-06 - syst_JES_EtaIntercalibration_Stat236: 1.0650638127361195e-09 + syst_JES_EtaIntercalibration_Stat233: 1.21633268e-11 + syst_JES_EtaIntercalibration_Stat234: 2.36478986e-08 + syst_JES_EtaIntercalibration_Stat235: 1.39920463e-06 + syst_JES_EtaIntercalibration_Stat236: 1.06506381e-09 syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 syst_JES_EtaIntercalibration_Stat239: 0.0 - syst_JES_EtaIntercalibration_Stat24: 1.5042861263735698e-23 + syst_JES_EtaIntercalibration_Stat24: 1.50428613e-23 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 syst_JES_EtaIntercalibration_Stat243: 0.0 - syst_JES_EtaIntercalibration_Stat244: 1.216332679615244e-11 - syst_JES_EtaIntercalibration_Stat245: 1.5911551676376507e-08 - syst_JES_EtaIntercalibration_Stat25: 2.9410227587524715e-22 - syst_JES_EtaIntercalibration_Stat26: 6.059579749920317e-12 - syst_JES_EtaIntercalibration_Stat27: 2.021021327753982e-18 - syst_JES_EtaIntercalibration_Stat28: 8.242469108677327e-23 + syst_JES_EtaIntercalibration_Stat244: 1.21633268e-11 + syst_JES_EtaIntercalibration_Stat245: 1.59115517e-08 + syst_JES_EtaIntercalibration_Stat25: 2.94102276e-22 + syst_JES_EtaIntercalibration_Stat26: 6.05957975e-12 + syst_JES_EtaIntercalibration_Stat27: 2.02102133e-18 + syst_JES_EtaIntercalibration_Stat28: 8.24246911e-23 syst_JES_EtaIntercalibration_Stat29: 0.0 - syst_JES_EtaIntercalibration_Stat3: 2.4313017665440054e-23 + syst_JES_EtaIntercalibration_Stat3: 2.43130177e-23 syst_JES_EtaIntercalibration_Stat30: 0.0 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 2.332206412391493e-23 - syst_JES_EtaIntercalibration_Stat36: 2.332206412391493e-23 - syst_JES_EtaIntercalibration_Stat37: 2.128682227858353e-22 - syst_JES_EtaIntercalibration_Stat38: 1.2158996668698775e-11 - syst_JES_EtaIntercalibration_Stat39: 1.215986269419502e-11 - syst_JES_EtaIntercalibration_Stat4: 1.1166534878473953e-17 - syst_JES_EtaIntercalibration_Stat40: 1.3002139516248854e-21 + syst_JES_EtaIntercalibration_Stat35: 2.33220641e-23 + syst_JES_EtaIntercalibration_Stat36: 2.33220641e-23 + syst_JES_EtaIntercalibration_Stat37: 2.12868223e-22 + syst_JES_EtaIntercalibration_Stat38: 1.21589967e-11 + syst_JES_EtaIntercalibration_Stat39: 1.21598627e-11 + syst_JES_EtaIntercalibration_Stat4: 1.11665349e-17 + syst_JES_EtaIntercalibration_Stat40: 1.30021395e-21 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 syst_JES_EtaIntercalibration_Stat44: 0.0 syst_JES_EtaIntercalibration_Stat45: 0.0 - syst_JES_EtaIntercalibration_Stat46: 3.5420471594827765e-23 - syst_JES_EtaIntercalibration_Stat47: 1.6850681736950584e-21 - syst_JES_EtaIntercalibration_Stat48: 6.0942207631396205e-12 - syst_JES_EtaIntercalibration_Stat49: 2.032089429854897e-18 - syst_JES_EtaIntercalibration_Stat5: 1.1169130215154448e-17 - syst_JES_EtaIntercalibration_Stat50: 1.9383679810603557e-22 + syst_JES_EtaIntercalibration_Stat46: 3.54204716e-23 + syst_JES_EtaIntercalibration_Stat47: 1.68506817e-21 + syst_JES_EtaIntercalibration_Stat48: 6.09422076e-12 + syst_JES_EtaIntercalibration_Stat49: 2.03208943e-18 + syst_JES_EtaIntercalibration_Stat5: 1.11691302e-17 + syst_JES_EtaIntercalibration_Stat50: 1.93836798e-22 syst_JES_EtaIntercalibration_Stat51: 0.0 syst_JES_EtaIntercalibration_Stat52: 0.0 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 2.1919102969784144e-23 - syst_JES_EtaIntercalibration_Stat57: 2.332206412391493e-23 - syst_JES_EtaIntercalibration_Stat58: 2.332206412391493e-23 - syst_JES_EtaIntercalibration_Stat59: 2.8158733838145135e-22 + syst_JES_EtaIntercalibration_Stat56: 2.19191030e-23 + syst_JES_EtaIntercalibration_Stat57: 2.33220641e-23 + syst_JES_EtaIntercalibration_Stat58: 2.33220641e-23 + syst_JES_EtaIntercalibration_Stat59: 2.81587338e-22 syst_JES_EtaIntercalibration_Stat6: 0.0 - syst_JES_EtaIntercalibration_Stat60: 1.2159862442033184e-11 - syst_JES_EtaIntercalibration_Stat61: 1.2159861922908865e-11 - syst_JES_EtaIntercalibration_Stat62: 2.736788080944522e-21 - syst_JES_EtaIntercalibration_Stat63: 1.3737486632113605e-23 + syst_JES_EtaIntercalibration_Stat60: 1.21598624e-11 + syst_JES_EtaIntercalibration_Stat61: 1.21598619e-11 + syst_JES_EtaIntercalibration_Stat62: 2.73678808e-21 + syst_JES_EtaIntercalibration_Stat63: 1.37374866e-23 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 7.270054401447076e-23 - syst_JES_EtaIntercalibration_Stat69: 6.114136322521974e-12 + syst_JES_EtaIntercalibration_Stat68: 7.27005440e-23 + syst_JES_EtaIntercalibration_Stat69: 6.11413632e-12 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 6.1321001446250294e-12 - syst_JES_EtaIntercalibration_Stat71: 6.067373946830423e-12 - syst_JES_EtaIntercalibration_Stat72: 2.027253921882182e-18 + syst_JES_EtaIntercalibration_Stat70: 6.13210014e-12 + syst_JES_EtaIntercalibration_Stat71: 6.06737395e-12 + syst_JES_EtaIntercalibration_Stat72: 2.02725392e-18 syst_JES_EtaIntercalibration_Stat73: 0.0 syst_JES_EtaIntercalibration_Stat74: 0.0 syst_JES_EtaIntercalibration_Stat75: 0.0 - syst_JES_EtaIntercalibration_Stat76: 7.519698581060281e-23 - syst_JES_EtaIntercalibration_Stat77: 2.1919102969784144e-23 - syst_JES_EtaIntercalibration_Stat78: 2.1919102969784144e-23 - syst_JES_EtaIntercalibration_Stat79: 2.332206412391493e-23 + syst_JES_EtaIntercalibration_Stat76: 7.51969858e-23 + syst_JES_EtaIntercalibration_Stat77: 2.19191030e-23 + syst_JES_EtaIntercalibration_Stat78: 2.19191030e-23 + syst_JES_EtaIntercalibration_Stat79: 2.33220641e-23 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 2.1503410775967612e-23 - syst_JES_EtaIntercalibration_Stat81: 9.27035900059971e-22 - syst_JES_EtaIntercalibration_Stat82: 1.217112019513439e-11 - syst_JES_EtaIntercalibration_Stat83: 3.4598576435016585e-11 - syst_JES_EtaIntercalibration_Stat84: 3.0631749460323026e-19 - syst_JES_EtaIntercalibration_Stat85: 1.5182915497360842e-23 + syst_JES_EtaIntercalibration_Stat80: 2.15034108e-23 + syst_JES_EtaIntercalibration_Stat81: 9.27035900e-22 + syst_JES_EtaIntercalibration_Stat82: 1.21711202e-11 + syst_JES_EtaIntercalibration_Stat83: 3.45985764e-11 + syst_JES_EtaIntercalibration_Stat84: 3.06317495e-19 + syst_JES_EtaIntercalibration_Stat85: 1.51829155e-23 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 6.535959818572938e-23 + syst_JES_EtaIntercalibration_Stat89: 6.53595982e-23 syst_JES_EtaIntercalibration_Stat9: 0.0 - syst_JES_EtaIntercalibration_Stat90: 6.1156060108226556e-12 - syst_JES_EtaIntercalibration_Stat91: 6.148346322102554e-12 - syst_JES_EtaIntercalibration_Stat92: 9.809303989070784e-18 - syst_JES_EtaIntercalibration_Stat93: 2.0842654010319e-18 + syst_JES_EtaIntercalibration_Stat90: 6.11560601e-12 + syst_JES_EtaIntercalibration_Stat91: 6.14834632e-12 + syst_JES_EtaIntercalibration_Stat92: 9.80930399e-18 + syst_JES_EtaIntercalibration_Stat93: 2.08426540e-18 syst_JES_EtaIntercalibration_Stat94: 0.0 syst_JES_EtaIntercalibration_Stat95: 0.0 - syst_JES_EtaIntercalibration_Stat96: 1.204987746825668e-20 - syst_JES_EtaIntercalibration_Stat97: 7.519698581060281e-23 - syst_JES_EtaIntercalibration_Stat98: 2.1919102969784144e-23 - syst_JES_EtaIntercalibration_Stat99: 2.1919102969784144e-23 - syst_JES_EtaIntercalibration_TotalStat_MJB: 7.597583365781517e-06 - syst_JES_Flavour_Comp: 1.7869848208644636e-05 - syst_JES_Gjet_Generator: 2.013571640145937e-05 - syst_JES_Gjet_OOC: 1.7031202981586475e-05 - syst_JES_Gjet_Purity: 1.3216035364283796e-06 - syst_JES_Gjet_Stat1: 3.5220463866905555e-09 - syst_JES_Gjet_Stat10: 1.66948438988659e-07 - syst_JES_Gjet_Stat11: 1.9693330723877055e-07 - syst_JES_Gjet_Stat12: 6.554287966667319e-07 - syst_JES_Gjet_Stat13: 2.9039159767458834e-06 - syst_JES_Gjet_Stat14: 9.587959428366394e-06 - syst_JES_Gjet_Stat15: 1.494237932860761e-05 - syst_JES_Gjet_Stat2: 2.2257975020203432e-08 - syst_JES_Gjet_Stat3: 2.3140198789120697e-08 - syst_JES_Gjet_Stat4: 2.553042890356596e-08 - syst_JES_Gjet_Stat5: 2.5617031443944642e-08 - syst_JES_Gjet_Stat6: 5.968496005616547e-11 - syst_JES_Gjet_Stat7: 4.150978862244423e-12 - syst_JES_Gjet_Stat8: 2.2724527981896565e-08 - syst_JES_Gjet_Stat9: 4.5102629709918246e-08 - syst_JES_Gjet_Veto: 1.730270137868651e-05 - syst_JES_Gjet_dPhi: 6.71673949974986e-07 - syst_JES_LArESZee: 2.9203552866046968e-05 - syst_JES_LArEsmear: 1.2255220969040093e-06 - syst_JES_LAr_JVT: 1.7531522324088117e-06 - syst_JES_MJB_Alpha: 7.703295966662582e-08 - syst_JES_MJB_Asym: 4.953238006597301e-06 - syst_JES_MJB_Beta: 1.1694807052705059e-07 - syst_JES_MJB_Stat1: 2.6015403129684536e-12 - syst_JES_MJB_Stat10: 2.805922308261581e-08 - syst_JES_MJB_Stat11: 3.648952161922653e-08 + syst_JES_EtaIntercalibration_Stat96: 1.20498775e-20 + syst_JES_EtaIntercalibration_Stat97: 7.51969858e-23 + syst_JES_EtaIntercalibration_Stat98: 2.19191030e-23 + syst_JES_EtaIntercalibration_Stat99: 2.19191030e-23 + syst_JES_EtaIntercalibration_TotalStat_MJB: 7.59758337e-06 + syst_JES_Flavour_Comp: 1.78698482e-05 + syst_JES_Gjet_Generator: 2.01357164e-05 + syst_JES_Gjet_OOC: 1.70312030e-05 + syst_JES_Gjet_Purity: 1.32160354e-06 + syst_JES_Gjet_Stat1: 3.52204639e-09 + syst_JES_Gjet_Stat10: 1.66948439e-07 + syst_JES_Gjet_Stat11: 1.96933307e-07 + syst_JES_Gjet_Stat12: 6.55428797e-07 + syst_JES_Gjet_Stat13: 2.90391598e-06 + syst_JES_Gjet_Stat14: 9.58795943e-06 + syst_JES_Gjet_Stat15: 1.49423793e-05 + syst_JES_Gjet_Stat2: 2.22579750e-08 + syst_JES_Gjet_Stat3: 2.31401988e-08 + syst_JES_Gjet_Stat4: 2.55304289e-08 + syst_JES_Gjet_Stat5: 2.56170314e-08 + syst_JES_Gjet_Stat6: 5.96849601e-11 + syst_JES_Gjet_Stat7: 4.15097886e-12 + syst_JES_Gjet_Stat8: 2.27245280e-08 + syst_JES_Gjet_Stat9: 4.51026297e-08 + syst_JES_Gjet_Veto: 1.73027014e-05 + syst_JES_Gjet_dPhi: 6.71673950e-07 + syst_JES_LArESZee: 2.92035529e-05 + syst_JES_LArEsmear: 1.22552210e-06 + syst_JES_LAr_JVT: 1.75315223e-06 + syst_JES_MJB_Alpha: 7.70329597e-08 + syst_JES_MJB_Asym: 4.95323801e-06 + syst_JES_MJB_Beta: 1.16948071e-07 + syst_JES_MJB_Stat1: 2.60154031e-12 + syst_JES_MJB_Stat10: 2.80592231e-08 + syst_JES_MJB_Stat11: 3.64895216e-08 syst_JES_MJB_Stat12: 0.0 syst_JES_MJB_Stat13: 0.0 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 - syst_JES_MJB_Stat16: 9.73585758934466e-10 - syst_JES_MJB_Stat2: 4.601820373504381e-10 - syst_JES_MJB_Stat3: 5.932867160993915e-09 - syst_JES_MJB_Stat4: 6.021843135618861e-10 - syst_JES_MJB_Stat5: 2.7222233707027057e-09 - syst_JES_MJB_Stat6: 1.6924369316166557e-08 - syst_JES_MJB_Stat7: 1.949984027498687e-08 - syst_JES_MJB_Stat8: 1.8055031674023727e-08 - syst_JES_MJB_Stat9: 3.1968053314989324e-08 - syst_JES_MJB_Threshold: 2.8674934611956836e-06 - syst_JES_Pileup_MuOffset: 4.5343855978511575e-06 - syst_JES_Pileup_NPVOffset: 2.793507606934336e-06 - syst_JES_Pileup_Pt_term: 3.1214920711095834e-06 - syst_JES_PunchThrough_MC15: 5.2890355217184916e-06 + syst_JES_MJB_Stat16: 9.73585759e-10 + syst_JES_MJB_Stat2: 4.60182037e-10 + syst_JES_MJB_Stat3: 5.93286716e-09 + syst_JES_MJB_Stat4: 6.02184314e-10 + syst_JES_MJB_Stat5: 2.72222337e-09 + syst_JES_MJB_Stat6: 1.69243693e-08 + syst_JES_MJB_Stat7: 1.94998403e-08 + syst_JES_MJB_Stat8: 1.80550317e-08 + syst_JES_MJB_Stat9: 3.19680533e-08 + syst_JES_MJB_Threshold: 2.86749346e-06 + syst_JES_Pileup_MuOffset: 4.53438560e-06 + syst_JES_Pileup_NPVOffset: 2.79350761e-06 + syst_JES_Pileup_Pt_term: 3.12149207e-06 + syst_JES_PunchThrough_MC15: 5.28903552e-06 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 7.411243620337953e-06 - syst_JES_Zjet_MuScale: 1.2739682700915279e-08 - syst_JES_Zjet_MuSmearID: 3.787020513213521e-08 - syst_JES_Zjet_MuSmearMS: 1.899060049076911e-06 - syst_JES_Zjet_OOC: 3.5369498893820927e-06 - syst_JES_Zjet_Stat1: 1.2687272165435508e-09 - syst_JES_Zjet_Stat10: 1.574792221051082e-07 - syst_JES_Zjet_Stat11: 1.0476518156223231e-07 - syst_JES_Zjet_Stat12: 8.002437175635932e-07 - syst_JES_Zjet_Stat13: 1.9437933712203053e-06 - syst_JES_Zjet_Stat2: 9.568141512366704e-11 - syst_JES_Zjet_Stat3: 5.888972745734183e-08 - syst_JES_Zjet_Stat4: 1.0052579308316846e-21 - syst_JES_Zjet_Stat5: 1.5724600948831738e-21 - syst_JES_Zjet_Stat6: 5.5798021266278185e-08 - syst_JES_Zjet_Stat7: 3.6619804324299715e-17 - syst_JES_Zjet_Stat8: 2.6709486610565916e-14 - syst_JES_Zjet_Stat9: 5.009871618115578e-09 - syst_JES_Zjet_Veto: 3.1674413539637946e-08 - syst_JES_Zjet_dPhi: 2.8843324180258765e-08 - syst_PRW: 5.007e-06 - syst_Unfolding_bias: 1.3398e-06 - syst_cleaning: 2.2083647796503186e-06 - syst_lumi: 6.846e-06 + syst_JES_Zjet_MC: 7.41124362e-06 + syst_JES_Zjet_MuScale: 1.27396827e-08 + syst_JES_Zjet_MuSmearID: 3.78702051e-08 + syst_JES_Zjet_MuSmearMS: 1.89906005e-06 + syst_JES_Zjet_OOC: 3.53694989e-06 + syst_JES_Zjet_Stat1: 1.26872722e-09 + syst_JES_Zjet_Stat10: 1.57479222e-07 + syst_JES_Zjet_Stat11: 1.04765182e-07 + syst_JES_Zjet_Stat12: 8.00243718e-07 + syst_JES_Zjet_Stat13: 1.94379337e-06 + syst_JES_Zjet_Stat2: 9.56814151e-11 + syst_JES_Zjet_Stat3: 5.88897275e-08 + syst_JES_Zjet_Stat4: 1.00525793e-21 + syst_JES_Zjet_Stat5: 1.57246009e-21 + syst_JES_Zjet_Stat6: 5.57980213e-08 + syst_JES_Zjet_Stat7: 3.66198043e-17 + syst_JES_Zjet_Stat8: 2.67094866e-14 + syst_JES_Zjet_Stat9: 5.00987162e-09 + syst_JES_Zjet_Veto: 3.16744135e-08 + syst_JES_Zjet_dPhi: 2.88433242e-08 + syst_PRW: 5.00700000e-06 + syst_Unfolding_bias: 1.33980000e-06 + syst_cleaning: 2.20836478e-06 + syst_lumi: 6.84600000e-06 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 3.9502064503010476e-06 - syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 7.840935849756712e-07 - syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 7.281684884008646e-07 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 3.4839782935603952e-06 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.598725776204287e-06 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 4.0698797279526576e-06 -- stat: 2.084e-05 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 3.95020645e-06 + syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 7.84093585e-07 + syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 7.28168488e-07 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 3.48397829e-06 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.59872578e-06 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 4.06987973e-06 +- stat: 2.08400000e-05 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 3.376436694208852e-06 - syst_JER_NP1: 5.497805844834829e-06 - syst_JER_NP2: 2.026499444855844e-06 - syst_JER_NP3: 1.1325351765195674e-09 - syst_JER_NP4: 1.049338996218773e-09 - syst_JER_NP5: 6.290220859324019e-16 - syst_JER_NP6: 2.4084588433269937e-18 - syst_JER_NP7: 2.6062487889685433e-21 - syst_JER_NP8: 1.2438713800067915e-07 - syst_JES_EtaIntercalibration_Modelling: 1.4124939672437542e-05 - syst_JES_EtaIntercalibration_NonClosure: 4.136934046791174e-08 + syst_JER_NP0: 3.37643669e-06 + syst_JER_NP1: 5.49780584e-06 + syst_JER_NP2: 2.02649944e-06 + syst_JER_NP3: 1.13253518e-09 + syst_JER_NP4: 1.04933900e-09 + syst_JER_NP5: 6.29022086e-16 + syst_JER_NP6: 2.40845884e-18 + syst_JER_NP7: 2.60624879e-21 + syst_JER_NP8: 1.24387138e-07 + syst_JES_EtaIntercalibration_Modelling: 1.41249397e-05 + syst_JES_EtaIntercalibration_NonClosure: 4.13693405e-08 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 - syst_JES_EtaIntercalibration_Stat100: 5.169305635189315e-24 + syst_JES_EtaIntercalibration_Stat100: 5.16930564e-24 syst_JES_EtaIntercalibration_Stat101: 0.0 - syst_JES_EtaIntercalibration_Stat102: 4.9184416556466335e-21 - syst_JES_EtaIntercalibration_Stat103: 5.5867296495084295e-12 - syst_JES_EtaIntercalibration_Stat104: 6.221793057364975e-12 - syst_JES_EtaIntercalibration_Stat105: 2.2071458379545294e-19 - syst_JES_EtaIntercalibration_Stat106: 1.6092492038214591e-22 + syst_JES_EtaIntercalibration_Stat102: 4.91844166e-21 + syst_JES_EtaIntercalibration_Stat103: 5.58672965e-12 + syst_JES_EtaIntercalibration_Stat104: 6.22179306e-12 + syst_JES_EtaIntercalibration_Stat105: 2.20714584e-19 + syst_JES_EtaIntercalibration_Stat106: 1.60924920e-22 syst_JES_EtaIntercalibration_Stat107: 0.0 syst_JES_EtaIntercalibration_Stat108: 0.0 - syst_JES_EtaIntercalibration_Stat109: 3.860956714339077e-21 + syst_JES_EtaIntercalibration_Stat109: 3.86095671e-21 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 9.273904078171454e-12 - syst_JES_EtaIntercalibration_Stat111: 9.304852381542695e-12 - syst_JES_EtaIntercalibration_Stat112: 9.783708887574283e-13 - syst_JES_EtaIntercalibration_Stat113: 6.382032122098728e-19 - syst_JES_EtaIntercalibration_Stat114: 6.693510345849926e-22 + syst_JES_EtaIntercalibration_Stat110: 9.27390408e-12 + syst_JES_EtaIntercalibration_Stat111: 9.30485238e-12 + syst_JES_EtaIntercalibration_Stat112: 9.78370889e-13 + syst_JES_EtaIntercalibration_Stat113: 6.38203212e-19 + syst_JES_EtaIntercalibration_Stat114: 6.69351035e-22 syst_JES_EtaIntercalibration_Stat115: 0.0 - syst_JES_EtaIntercalibration_Stat116: 1.13085597226172e-22 - syst_JES_EtaIntercalibration_Stat117: 1.3570618077302153e-21 - syst_JES_EtaIntercalibration_Stat118: 5.169305635189315e-24 - syst_JES_EtaIntercalibration_Stat119: 5.169305635189315e-24 + syst_JES_EtaIntercalibration_Stat116: 1.13085597e-22 + syst_JES_EtaIntercalibration_Stat117: 1.35706181e-21 + syst_JES_EtaIntercalibration_Stat118: 5.16930564e-24 + syst_JES_EtaIntercalibration_Stat119: 5.16930564e-24 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 5.169305635189315e-24 - syst_JES_EtaIntercalibration_Stat121: 3.4091956045378215e-23 - syst_JES_EtaIntercalibration_Stat122: 5.5858637428107176e-12 - syst_JES_EtaIntercalibration_Stat123: 2.3491784124052283e-11 - syst_JES_EtaIntercalibration_Stat124: 1.3586496347476784e-11 - syst_JES_EtaIntercalibration_Stat125: 5.168033354188032e-16 - syst_JES_EtaIntercalibration_Stat126: 1.589907151377086e-20 + syst_JES_EtaIntercalibration_Stat120: 5.16930564e-24 + syst_JES_EtaIntercalibration_Stat121: 3.40919560e-23 + syst_JES_EtaIntercalibration_Stat122: 5.58586374e-12 + syst_JES_EtaIntercalibration_Stat123: 2.34917841e-11 + syst_JES_EtaIntercalibration_Stat124: 1.35864963e-11 + syst_JES_EtaIntercalibration_Stat125: 5.16803335e-16 + syst_JES_EtaIntercalibration_Stat126: 1.58990715e-20 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 2.4917453220584164e-16 - syst_JES_EtaIntercalibration_Stat129: 3.749163206636916e-10 + syst_JES_EtaIntercalibration_Stat128: 2.49174532e-16 + syst_JES_EtaIntercalibration_Stat129: 3.74916321e-10 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 1.2345396353297045e-10 - syst_JES_EtaIntercalibration_Stat131: 5.2544069836661876e-11 - syst_JES_EtaIntercalibration_Stat132: 9.663764688267088e-13 - syst_JES_EtaIntercalibration_Stat133: 2.6478710364507934e-19 + syst_JES_EtaIntercalibration_Stat130: 1.23453964e-10 + syst_JES_EtaIntercalibration_Stat131: 5.25440698e-11 + syst_JES_EtaIntercalibration_Stat132: 9.66376469e-13 + syst_JES_EtaIntercalibration_Stat133: 2.64787104e-19 syst_JES_EtaIntercalibration_Stat134: 0.0 - syst_JES_EtaIntercalibration_Stat135: 1.13085597226172e-22 - syst_JES_EtaIntercalibration_Stat136: 1.13085597226172e-22 - syst_JES_EtaIntercalibration_Stat137: 5.169305635189315e-24 - syst_JES_EtaIntercalibration_Stat138: 5.169305635189315e-24 - syst_JES_EtaIntercalibration_Stat139: 5.169305635189315e-24 + syst_JES_EtaIntercalibration_Stat135: 1.13085597e-22 + syst_JES_EtaIntercalibration_Stat136: 1.13085597e-22 + syst_JES_EtaIntercalibration_Stat137: 5.16930564e-24 + syst_JES_EtaIntercalibration_Stat138: 5.16930564e-24 + syst_JES_EtaIntercalibration_Stat139: 5.16930564e-24 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 1.195634672464796e-24 - syst_JES_EtaIntercalibration_Stat141: 5.5839117678447435e-12 - syst_JES_EtaIntercalibration_Stat142: 5.949352082562269e-11 - syst_JES_EtaIntercalibration_Stat143: 3.0006495575958216e-09 - syst_JES_EtaIntercalibration_Stat144: 3.987483176140057e-10 - syst_JES_EtaIntercalibration_Stat145: 5.627583220841785e-20 - syst_JES_EtaIntercalibration_Stat146: 6.677011321793334e-12 - syst_JES_EtaIntercalibration_Stat147: 3.748585482552052e-10 - syst_JES_EtaIntercalibration_Stat148: 1.2904270252517188e-10 - syst_JES_EtaIntercalibration_Stat149: 5.226110216977824e-11 + syst_JES_EtaIntercalibration_Stat140: 1.19563467e-24 + syst_JES_EtaIntercalibration_Stat141: 5.58391177e-12 + syst_JES_EtaIntercalibration_Stat142: 5.94935208e-11 + syst_JES_EtaIntercalibration_Stat143: 3.00064956e-09 + syst_JES_EtaIntercalibration_Stat144: 3.98748318e-10 + syst_JES_EtaIntercalibration_Stat145: 5.62758322e-20 + syst_JES_EtaIntercalibration_Stat146: 6.67701132e-12 + syst_JES_EtaIntercalibration_Stat147: 3.74858548e-10 + syst_JES_EtaIntercalibration_Stat148: 1.29042703e-10 + syst_JES_EtaIntercalibration_Stat149: 5.22611022e-11 syst_JES_EtaIntercalibration_Stat15: 0.0 - syst_JES_EtaIntercalibration_Stat150: 9.689803061133922e-13 - syst_JES_EtaIntercalibration_Stat151: 1.429584790936406e-18 + syst_JES_EtaIntercalibration_Stat150: 9.68980306e-13 + syst_JES_EtaIntercalibration_Stat151: 1.42958479e-18 syst_JES_EtaIntercalibration_Stat152: 0.0 syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 5.169305635189315e-24 + syst_JES_EtaIntercalibration_Stat156: 5.16930564e-24 syst_JES_EtaIntercalibration_Stat157: 0.0 syst_JES_EtaIntercalibration_Stat158: 0.0 - syst_JES_EtaIntercalibration_Stat159: 5.549009334347439e-12 - syst_JES_EtaIntercalibration_Stat16: 5.584131803601562e-12 - syst_JES_EtaIntercalibration_Stat160: 5.677057146471224e-10 - syst_JES_EtaIntercalibration_Stat161: 3.005529039536966e-09 - syst_JES_EtaIntercalibration_Stat162: 6.8003767542688395e-12 - syst_JES_EtaIntercalibration_Stat163: 3.54659851230725e-17 - syst_JES_EtaIntercalibration_Stat164: 9.276372038694262e-12 - syst_JES_EtaIntercalibration_Stat165: 8.821256157005078e-10 - syst_JES_EtaIntercalibration_Stat166: 3.795110538574601e-09 - syst_JES_EtaIntercalibration_Stat167: 3.7496508327442977e-10 - syst_JES_EtaIntercalibration_Stat168: 1.0583175888172699e-12 - syst_JES_EtaIntercalibration_Stat169: 1.429584790936406e-18 - syst_JES_EtaIntercalibration_Stat17: 1.4284875266276392e-22 + syst_JES_EtaIntercalibration_Stat159: 5.54900933e-12 + syst_JES_EtaIntercalibration_Stat16: 5.58413180e-12 + syst_JES_EtaIntercalibration_Stat160: 5.67705715e-10 + syst_JES_EtaIntercalibration_Stat161: 3.00552904e-09 + syst_JES_EtaIntercalibration_Stat162: 6.80037675e-12 + syst_JES_EtaIntercalibration_Stat163: 3.54659851e-17 + syst_JES_EtaIntercalibration_Stat164: 9.27637204e-12 + syst_JES_EtaIntercalibration_Stat165: 8.82125616e-10 + syst_JES_EtaIntercalibration_Stat166: 3.79511054e-09 + syst_JES_EtaIntercalibration_Stat167: 3.74965083e-10 + syst_JES_EtaIntercalibration_Stat168: 1.05831759e-12 + syst_JES_EtaIntercalibration_Stat169: 1.42958479e-18 + syst_JES_EtaIntercalibration_Stat17: 1.42848753e-22 syst_JES_EtaIntercalibration_Stat170: 0.0 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 syst_JES_EtaIntercalibration_Stat175: 0.0 - syst_JES_EtaIntercalibration_Stat176: 1.7675578491240393e-19 - syst_JES_EtaIntercalibration_Stat177: 1.244027206563727e-11 - syst_JES_EtaIntercalibration_Stat178: 6.685334786493493e-09 - syst_JES_EtaIntercalibration_Stat179: 9.501009936185732e-09 - syst_JES_EtaIntercalibration_Stat18: 8.750067242598768e-25 - syst_JES_EtaIntercalibration_Stat180: 2.933893414475038e-09 - syst_JES_EtaIntercalibration_Stat181: 1.472170738331665e-14 - syst_JES_EtaIntercalibration_Stat182: 6.0110006654466444e-09 - syst_JES_EtaIntercalibration_Stat183: 1.700264999933834e-07 - syst_JES_EtaIntercalibration_Stat184: 5.535171609805788e-08 - syst_JES_EtaIntercalibration_Stat185: 2.562533259784154e-10 - syst_JES_EtaIntercalibration_Stat186: 1.4298079416481081e-18 + syst_JES_EtaIntercalibration_Stat176: 1.76755785e-19 + syst_JES_EtaIntercalibration_Stat177: 1.24402721e-11 + syst_JES_EtaIntercalibration_Stat178: 6.68533479e-09 + syst_JES_EtaIntercalibration_Stat179: 9.50100994e-09 + syst_JES_EtaIntercalibration_Stat18: 8.75006724e-25 + syst_JES_EtaIntercalibration_Stat180: 2.93389341e-09 + syst_JES_EtaIntercalibration_Stat181: 1.47217074e-14 + syst_JES_EtaIntercalibration_Stat182: 6.01100067e-09 + syst_JES_EtaIntercalibration_Stat183: 1.70026500e-07 + syst_JES_EtaIntercalibration_Stat184: 5.53517161e-08 + syst_JES_EtaIntercalibration_Stat185: 2.56253326e-10 + syst_JES_EtaIntercalibration_Stat186: 1.42980794e-18 syst_JES_EtaIntercalibration_Stat187: 0.0 syst_JES_EtaIntercalibration_Stat188: 0.0 syst_JES_EtaIntercalibration_Stat189: 0.0 @@ -53813,31 +53813,31 @@ bins: syst_JES_EtaIntercalibration_Stat190: 0.0 syst_JES_EtaIntercalibration_Stat191: 0.0 syst_JES_EtaIntercalibration_Stat192: 0.0 - syst_JES_EtaIntercalibration_Stat193: 5.585863829390156e-12 - syst_JES_EtaIntercalibration_Stat194: 2.9648147003649315e-09 - syst_JES_EtaIntercalibration_Stat195: 1.0264580702590828e-07 - syst_JES_EtaIntercalibration_Stat196: 6.815975498782255e-08 - syst_JES_EtaIntercalibration_Stat197: 1.7227787873084576e-08 - syst_JES_EtaIntercalibration_Stat198: 3.078103433934604e-07 - syst_JES_EtaIntercalibration_Stat199: 3.003073936818739e-07 + syst_JES_EtaIntercalibration_Stat193: 5.58586383e-12 + syst_JES_EtaIntercalibration_Stat194: 2.96481470e-09 + syst_JES_EtaIntercalibration_Stat195: 1.02645807e-07 + syst_JES_EtaIntercalibration_Stat196: 6.81597550e-08 + syst_JES_EtaIntercalibration_Stat197: 1.72277879e-08 + syst_JES_EtaIntercalibration_Stat198: 3.07810343e-07 + syst_JES_EtaIntercalibration_Stat199: 3.00307394e-07 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 1.9880528908645766e-08 - syst_JES_EtaIntercalibration_Stat201: 1.4298079416481081e-18 + syst_JES_EtaIntercalibration_Stat200: 1.98805289e-08 + syst_JES_EtaIntercalibration_Stat201: 1.42980794e-18 syst_JES_EtaIntercalibration_Stat202: 0.0 syst_JES_EtaIntercalibration_Stat203: 0.0 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 syst_JES_EtaIntercalibration_Stat207: 0.0 - syst_JES_EtaIntercalibration_Stat208: 5.58413180360206e-12 - syst_JES_EtaIntercalibration_Stat209: 3.6592229707958494e-09 + syst_JES_EtaIntercalibration_Stat208: 5.58413180e-12 + syst_JES_EtaIntercalibration_Stat209: 3.65922297e-09 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 1.454554292558377e-07 - syst_JES_EtaIntercalibration_Stat211: 2.0766731400728425e-07 - syst_JES_EtaIntercalibration_Stat212: 2.519476731386897e-07 - syst_JES_EtaIntercalibration_Stat213: 1.9891552581937893e-08 - syst_JES_EtaIntercalibration_Stat214: 1.4298079416481081e-18 + syst_JES_EtaIntercalibration_Stat210: 1.45455429e-07 + syst_JES_EtaIntercalibration_Stat211: 2.07667314e-07 + syst_JES_EtaIntercalibration_Stat212: 2.51947673e-07 + syst_JES_EtaIntercalibration_Stat213: 1.98915526e-08 + syst_JES_EtaIntercalibration_Stat214: 1.42980794e-18 syst_JES_EtaIntercalibration_Stat215: 0.0 syst_JES_EtaIntercalibration_Stat216: 0.0 syst_JES_EtaIntercalibration_Stat217: 0.0 @@ -53845,11 +53845,11 @@ bins: syst_JES_EtaIntercalibration_Stat219: 0.0 syst_JES_EtaIntercalibration_Stat22: 0.0 syst_JES_EtaIntercalibration_Stat220: 0.0 - syst_JES_EtaIntercalibration_Stat221: 5.584997829005845e-12 - syst_JES_EtaIntercalibration_Stat222: 3.6574213251962097e-09 - syst_JES_EtaIntercalibration_Stat223: 1.2105291776739627e-07 - syst_JES_EtaIntercalibration_Stat224: 5.712882000356738e-07 - syst_JES_EtaIntercalibration_Stat225: 1.1096654033987003e-07 + syst_JES_EtaIntercalibration_Stat221: 5.58499783e-12 + syst_JES_EtaIntercalibration_Stat222: 3.65742133e-09 + syst_JES_EtaIntercalibration_Stat223: 1.21052918e-07 + syst_JES_EtaIntercalibration_Stat224: 5.71288200e-07 + syst_JES_EtaIntercalibration_Stat225: 1.10966540e-07 syst_JES_EtaIntercalibration_Stat226: 0.0 syst_JES_EtaIntercalibration_Stat227: 0.0 syst_JES_EtaIntercalibration_Stat228: 0.0 @@ -53858,197 +53858,197 @@ bins: syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 syst_JES_EtaIntercalibration_Stat232: 0.0 - syst_JES_EtaIntercalibration_Stat233: 5.584997829005845e-12 - syst_JES_EtaIntercalibration_Stat234: 7.496977841103709e-09 - syst_JES_EtaIntercalibration_Stat235: 5.786090454702554e-07 - syst_JES_EtaIntercalibration_Stat236: 2.250821154045785e-10 + syst_JES_EtaIntercalibration_Stat233: 5.58499783e-12 + syst_JES_EtaIntercalibration_Stat234: 7.49697784e-09 + syst_JES_EtaIntercalibration_Stat235: 5.78609045e-07 + syst_JES_EtaIntercalibration_Stat236: 2.25082115e-10 syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 syst_JES_EtaIntercalibration_Stat239: 0.0 - syst_JES_EtaIntercalibration_Stat24: 3.338614534129389e-24 + syst_JES_EtaIntercalibration_Stat24: 3.33861453e-24 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 syst_JES_EtaIntercalibration_Stat243: 0.0 - syst_JES_EtaIntercalibration_Stat244: 5.584997829005845e-12 - syst_JES_EtaIntercalibration_Stat245: 3.0261792197422814e-09 - syst_JES_EtaIntercalibration_Stat25: 5.545608319201781e-23 - syst_JES_EtaIntercalibration_Stat26: 9.5687146857633e-13 - syst_JES_EtaIntercalibration_Stat27: 2.639996285100985e-19 - syst_JES_EtaIntercalibration_Stat28: 1.5629412197200507e-23 + syst_JES_EtaIntercalibration_Stat244: 5.58499783e-12 + syst_JES_EtaIntercalibration_Stat245: 3.02617922e-09 + syst_JES_EtaIntercalibration_Stat25: 5.54560832e-23 + syst_JES_EtaIntercalibration_Stat26: 9.56871469e-13 + syst_JES_EtaIntercalibration_Stat27: 2.63999629e-19 + syst_JES_EtaIntercalibration_Stat28: 1.56294122e-23 syst_JES_EtaIntercalibration_Stat29: 0.0 - syst_JES_EtaIntercalibration_Stat3: 4.784337885225081e-24 + syst_JES_EtaIntercalibration_Stat3: 4.78433789e-24 syst_JES_EtaIntercalibration_Stat30: 0.0 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 - syst_JES_EtaIntercalibration_Stat35: 2.3659814031390863e-25 - syst_JES_EtaIntercalibration_Stat36: 2.3659814031390863e-25 - syst_JES_EtaIntercalibration_Stat37: 3.910721072577281e-23 - syst_JES_EtaIntercalibration_Stat38: 5.5841318035262546e-12 - syst_JES_EtaIntercalibration_Stat39: 5.584131803548829e-12 - syst_JES_EtaIntercalibration_Stat4: 1.373516992750159e-18 - syst_JES_EtaIntercalibration_Stat40: 2.2781710575591115e-22 + syst_JES_EtaIntercalibration_Stat35: 2.36598140e-25 + syst_JES_EtaIntercalibration_Stat36: 2.36598140e-25 + syst_JES_EtaIntercalibration_Stat37: 3.91072107e-23 + syst_JES_EtaIntercalibration_Stat38: 5.58413180e-12 + syst_JES_EtaIntercalibration_Stat39: 5.58413180e-12 + syst_JES_EtaIntercalibration_Stat4: 1.37351699e-18 + syst_JES_EtaIntercalibration_Stat40: 2.27817106e-22 syst_JES_EtaIntercalibration_Stat41: 0.0 syst_JES_EtaIntercalibration_Stat42: 0.0 syst_JES_EtaIntercalibration_Stat43: 0.0 syst_JES_EtaIntercalibration_Stat44: 0.0 syst_JES_EtaIntercalibration_Stat45: 0.0 - syst_JES_EtaIntercalibration_Stat46: 7.298899420460594e-24 - syst_JES_EtaIntercalibration_Stat47: 2.8039448550212254e-22 - syst_JES_EtaIntercalibration_Stat48: 9.617212104245731e-13 - syst_JES_EtaIntercalibration_Stat49: 2.6625201323834157e-19 - syst_JES_EtaIntercalibration_Stat5: 1.3743824425632024e-18 - syst_JES_EtaIntercalibration_Stat50: 3.5200894544741335e-23 + syst_JES_EtaIntercalibration_Stat46: 7.29889942e-24 + syst_JES_EtaIntercalibration_Stat47: 2.80394486e-22 + syst_JES_EtaIntercalibration_Stat48: 9.61721210e-13 + syst_JES_EtaIntercalibration_Stat49: 2.66252013e-19 + syst_JES_EtaIntercalibration_Stat5: 1.37438244e-18 + syst_JES_EtaIntercalibration_Stat50: 3.52008945e-23 syst_JES_EtaIntercalibration_Stat51: 0.0 syst_JES_EtaIntercalibration_Stat52: 0.0 syst_JES_EtaIntercalibration_Stat53: 0.0 syst_JES_EtaIntercalibration_Stat54: 0.0 syst_JES_EtaIntercalibration_Stat55: 0.0 - syst_JES_EtaIntercalibration_Stat56: 5.169305635189315e-24 - syst_JES_EtaIntercalibration_Stat57: 2.3659814031390863e-25 - syst_JES_EtaIntercalibration_Stat58: 2.3659814031390863e-25 - syst_JES_EtaIntercalibration_Stat59: 5.2568040357236066e-23 + syst_JES_EtaIntercalibration_Stat56: 5.16930564e-24 + syst_JES_EtaIntercalibration_Stat57: 2.36598140e-25 + syst_JES_EtaIntercalibration_Stat58: 2.36598140e-25 + syst_JES_EtaIntercalibration_Stat59: 5.25680404e-23 syst_JES_EtaIntercalibration_Stat6: 0.0 - syst_JES_EtaIntercalibration_Stat60: 5.584131776232771e-12 - syst_JES_EtaIntercalibration_Stat61: 5.584131702363698e-12 - syst_JES_EtaIntercalibration_Stat62: 4.307301939729789e-22 - syst_JES_EtaIntercalibration_Stat63: 2.8651290039368213e-24 + syst_JES_EtaIntercalibration_Stat60: 5.58413178e-12 + syst_JES_EtaIntercalibration_Stat61: 5.58413170e-12 + syst_JES_EtaIntercalibration_Stat62: 4.30730194e-22 + syst_JES_EtaIntercalibration_Stat63: 2.86512900e-24 syst_JES_EtaIntercalibration_Stat64: 0.0 syst_JES_EtaIntercalibration_Stat65: 0.0 syst_JES_EtaIntercalibration_Stat66: 0.0 syst_JES_EtaIntercalibration_Stat67: 0.0 - syst_JES_EtaIntercalibration_Stat68: 1.1280463244033908e-23 - syst_JES_EtaIntercalibration_Stat69: 9.644055627013369e-13 + syst_JES_EtaIntercalibration_Stat68: 1.12804632e-23 + syst_JES_EtaIntercalibration_Stat69: 9.64405563e-13 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 9.669791394674912e-13 - syst_JES_EtaIntercalibration_Stat71: 9.57910694417676e-13 - syst_JES_EtaIntercalibration_Stat72: 2.655947383653183e-19 + syst_JES_EtaIntercalibration_Stat70: 9.66979139e-13 + syst_JES_EtaIntercalibration_Stat71: 9.57910694e-13 + syst_JES_EtaIntercalibration_Stat72: 2.65594738e-19 syst_JES_EtaIntercalibration_Stat73: 0.0 syst_JES_EtaIntercalibration_Stat74: 0.0 syst_JES_EtaIntercalibration_Stat75: 0.0 - syst_JES_EtaIntercalibration_Stat76: 1.5692380316574028e-23 - syst_JES_EtaIntercalibration_Stat77: 5.169305635189315e-24 - syst_JES_EtaIntercalibration_Stat78: 5.169305635189315e-24 - syst_JES_EtaIntercalibration_Stat79: 2.3659814031390863e-25 + syst_JES_EtaIntercalibration_Stat76: 1.56923803e-23 + syst_JES_EtaIntercalibration_Stat77: 5.16930564e-24 + syst_JES_EtaIntercalibration_Stat78: 5.16930564e-24 + syst_JES_EtaIntercalibration_Stat79: 2.36598140e-25 syst_JES_EtaIntercalibration_Stat8: 0.0 - syst_JES_EtaIntercalibration_Stat80: 1.0268463212672088e-25 - syst_JES_EtaIntercalibration_Stat81: 1.5415436257206604e-22 - syst_JES_EtaIntercalibration_Stat82: 5.585863745405907e-12 - syst_JES_EtaIntercalibration_Stat83: 6.109808659916885e-12 - syst_JES_EtaIntercalibration_Stat84: 3.938515127240214e-20 - syst_JES_EtaIntercalibration_Stat85: 3.2564261514734212e-24 + syst_JES_EtaIntercalibration_Stat80: 1.02684632e-25 + syst_JES_EtaIntercalibration_Stat81: 1.54154363e-22 + syst_JES_EtaIntercalibration_Stat82: 5.58586375e-12 + syst_JES_EtaIntercalibration_Stat83: 6.10980866e-12 + syst_JES_EtaIntercalibration_Stat84: 3.93851513e-20 + syst_JES_EtaIntercalibration_Stat85: 3.25642615e-24 syst_JES_EtaIntercalibration_Stat86: 0.0 syst_JES_EtaIntercalibration_Stat87: 0.0 syst_JES_EtaIntercalibration_Stat88: 0.0 - syst_JES_EtaIntercalibration_Stat89: 7.649344726837719e-24 + syst_JES_EtaIntercalibration_Stat89: 7.64934473e-24 syst_JES_EtaIntercalibration_Stat9: 0.0 - syst_JES_EtaIntercalibration_Stat90: 9.646366687122378e-13 - syst_JES_EtaIntercalibration_Stat91: 9.691207725081946e-13 - syst_JES_EtaIntercalibration_Stat92: 1.3394428421922303e-18 - syst_JES_EtaIntercalibration_Stat93: 2.7232344565240797e-19 + syst_JES_EtaIntercalibration_Stat90: 9.64636669e-13 + syst_JES_EtaIntercalibration_Stat91: 9.69120773e-13 + syst_JES_EtaIntercalibration_Stat92: 1.33944284e-18 + syst_JES_EtaIntercalibration_Stat93: 2.72323446e-19 syst_JES_EtaIntercalibration_Stat94: 0.0 syst_JES_EtaIntercalibration_Stat95: 0.0 - syst_JES_EtaIntercalibration_Stat96: 1.3570618077302153e-21 - syst_JES_EtaIntercalibration_Stat97: 1.5692380316574028e-23 - syst_JES_EtaIntercalibration_Stat98: 5.169305635189315e-24 - syst_JES_EtaIntercalibration_Stat99: 5.169305635189315e-24 - syst_JES_EtaIntercalibration_TotalStat_MJB: 3.3791179322420814e-06 - syst_JES_Flavour_Comp: 7.247715691857677e-06 - syst_JES_Gjet_Generator: 8.115039063368704e-06 - syst_JES_Gjet_OOC: 6.880352516404955e-06 - syst_JES_Gjet_Purity: 3.7081201005361195e-07 - syst_JES_Gjet_Stat1: 1.2789610265758688e-09 - syst_JES_Gjet_Stat10: 6.395401429837537e-08 - syst_JES_Gjet_Stat11: 7.521071117201326e-08 - syst_JES_Gjet_Stat12: 2.5017415434053134e-07 - syst_JES_Gjet_Stat13: 1.1925062347845399e-06 - syst_JES_Gjet_Stat14: 3.863832691771216e-06 - syst_JES_Gjet_Stat15: 6.341370888853608e-06 - syst_JES_Gjet_Stat2: 6.993981535577571e-09 - syst_JES_Gjet_Stat3: 7.31964671278618e-09 - syst_JES_Gjet_Stat4: 7.912874114378564e-09 - syst_JES_Gjet_Stat5: 7.914606165186183e-09 - syst_JES_Gjet_Stat6: 7.348042462724503e-12 - syst_JES_Gjet_Stat7: 4.804426203895217e-13 - syst_JES_Gjet_Stat8: 7.3546216082134374e-09 - syst_JES_Gjet_Stat9: 2.5227386918783327e-08 - syst_JES_Gjet_Veto: 7.006671891847084e-06 - syst_JES_Gjet_dPhi: 1.9547563297761693e-07 - syst_JES_LArESZee: 1.172243161634991e-05 - syst_JES_LArEsmear: 3.454927860317781e-07 - syst_JES_LAr_JVT: 5.01185025714057e-07 - syst_JES_MJB_Alpha: 2.941888296655738e-08 - syst_JES_MJB_Asym: 2.023493699026513e-06 - syst_JES_MJB_Beta: 4.46609300731635e-08 - syst_JES_MJB_Stat1: 3.3767196518959047e-13 - syst_JES_MJB_Stat10: 1.678357232534242e-08 - syst_JES_MJB_Stat11: 2.1726035539589362e-08 + syst_JES_EtaIntercalibration_Stat96: 1.35706181e-21 + syst_JES_EtaIntercalibration_Stat97: 1.56923803e-23 + syst_JES_EtaIntercalibration_Stat98: 5.16930564e-24 + syst_JES_EtaIntercalibration_Stat99: 5.16930564e-24 + syst_JES_EtaIntercalibration_TotalStat_MJB: 3.37911793e-06 + syst_JES_Flavour_Comp: 7.24771569e-06 + syst_JES_Gjet_Generator: 8.11503906e-06 + syst_JES_Gjet_OOC: 6.88035252e-06 + syst_JES_Gjet_Purity: 3.70812010e-07 + syst_JES_Gjet_Stat1: 1.27896103e-09 + syst_JES_Gjet_Stat10: 6.39540143e-08 + syst_JES_Gjet_Stat11: 7.52107112e-08 + syst_JES_Gjet_Stat12: 2.50174154e-07 + syst_JES_Gjet_Stat13: 1.19250623e-06 + syst_JES_Gjet_Stat14: 3.86383269e-06 + syst_JES_Gjet_Stat15: 6.34137089e-06 + syst_JES_Gjet_Stat2: 6.99398154e-09 + syst_JES_Gjet_Stat3: 7.31964671e-09 + syst_JES_Gjet_Stat4: 7.91287411e-09 + syst_JES_Gjet_Stat5: 7.91460617e-09 + syst_JES_Gjet_Stat6: 7.34804246e-12 + syst_JES_Gjet_Stat7: 4.80442620e-13 + syst_JES_Gjet_Stat8: 7.35462161e-09 + syst_JES_Gjet_Stat9: 2.52273869e-08 + syst_JES_Gjet_Veto: 7.00667189e-06 + syst_JES_Gjet_dPhi: 1.95475633e-07 + syst_JES_LArESZee: 1.17224316e-05 + syst_JES_LArEsmear: 3.45492786e-07 + syst_JES_LAr_JVT: 5.01185026e-07 + syst_JES_MJB_Alpha: 2.94188830e-08 + syst_JES_MJB_Asym: 2.02349370e-06 + syst_JES_MJB_Beta: 4.46609301e-08 + syst_JES_MJB_Stat1: 3.37671965e-13 + syst_JES_MJB_Stat10: 1.67835723e-08 + syst_JES_MJB_Stat11: 2.17260355e-08 syst_JES_MJB_Stat12: 0.0 syst_JES_MJB_Stat13: 0.0 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 - syst_JES_MJB_Stat16: 3.7282393632920083e-10 - syst_JES_MJB_Stat2: 9.80820340327422e-11 - syst_JES_MJB_Stat3: 9.774973964159701e-10 - syst_JES_MJB_Stat4: 2.2724110543649447e-10 - syst_JES_MJB_Stat5: 1.1405647843064419e-09 - syst_JES_MJB_Stat6: 5.9719123402809585e-09 - syst_JES_MJB_Stat7: 6.22239088052173e-09 - syst_JES_MJB_Stat8: 6.323924073508472e-09 - syst_JES_MJB_Stat9: 1.3970602232903205e-08 - syst_JES_MJB_Threshold: 1.2564850337349823e-06 - syst_JES_Pileup_MuOffset: 1.8474084551067748e-06 - syst_JES_Pileup_NPVOffset: 8.703319539118394e-07 - syst_JES_Pileup_Pt_term: 1.136409902939956e-06 - syst_JES_PunchThrough_MC15: 2.1422410578644037e-06 + syst_JES_MJB_Stat16: 3.72823936e-10 + syst_JES_MJB_Stat2: 9.80820340e-11 + syst_JES_MJB_Stat3: 9.77497396e-10 + syst_JES_MJB_Stat4: 2.27241105e-10 + syst_JES_MJB_Stat5: 1.14056478e-09 + syst_JES_MJB_Stat6: 5.97191234e-09 + syst_JES_MJB_Stat7: 6.22239088e-09 + syst_JES_MJB_Stat8: 6.32392407e-09 + syst_JES_MJB_Stat9: 1.39706022e-08 + syst_JES_MJB_Threshold: 1.25648503e-06 + syst_JES_Pileup_MuOffset: 1.84740846e-06 + syst_JES_Pileup_NPVOffset: 8.70331954e-07 + syst_JES_Pileup_Pt_term: 1.13640990e-06 + syst_JES_PunchThrough_MC15: 2.14224106e-06 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 2.982373719036566e-06 - syst_JES_Zjet_MuScale: 1.9966759186395276e-09 - syst_JES_Zjet_MuSmearID: 1.559103687219038e-08 - syst_JES_Zjet_MuSmearMS: 8.346783789580271e-07 - syst_JES_Zjet_OOC: 1.290649955448804e-06 - syst_JES_Zjet_Stat1: 1.791806560428631e-10 - syst_JES_Zjet_Stat10: 6.016518629774261e-08 - syst_JES_Zjet_Stat11: 2.5215774680471353e-08 - syst_JES_Zjet_Stat12: 3.053605573743931e-07 - syst_JES_Zjet_Stat13: 8.207658055133632e-07 - syst_JES_Zjet_Stat2: 1.6907915591700682e-11 - syst_JES_Zjet_Stat3: 2.811984486088072e-08 - syst_JES_Zjet_Stat4: 2.0951384870695302e-22 - syst_JES_Zjet_Stat5: 3.32432143451863e-22 - syst_JES_Zjet_Stat6: 2.7504967354490035e-08 - syst_JES_Zjet_Stat7: 5.022078656293626e-18 - syst_JES_Zjet_Stat8: 3.1482585662553194e-15 - syst_JES_Zjet_Stat9: 7.850150762883475e-10 - syst_JES_Zjet_Veto: 5.009162179354448e-09 - syst_JES_Zjet_dPhi: 4.593729706314358e-09 - syst_PRW: 2.496e-06 - syst_Unfolding_bias: 1.0387e-06 - syst_cleaning: 8.347618867078205e-07 - syst_lumi: 2.614e-06 + syst_JES_Zjet_MC: 2.98237372e-06 + syst_JES_Zjet_MuScale: 1.99667592e-09 + syst_JES_Zjet_MuSmearID: 1.55910369e-08 + syst_JES_Zjet_MuSmearMS: 8.34678379e-07 + syst_JES_Zjet_OOC: 1.29064996e-06 + syst_JES_Zjet_Stat1: 1.79180656e-10 + syst_JES_Zjet_Stat10: 6.01651863e-08 + syst_JES_Zjet_Stat11: 2.52157747e-08 + syst_JES_Zjet_Stat12: 3.05360557e-07 + syst_JES_Zjet_Stat13: 8.20765806e-07 + syst_JES_Zjet_Stat2: 1.69079156e-11 + syst_JES_Zjet_Stat3: 2.81198449e-08 + syst_JES_Zjet_Stat4: 2.09513849e-22 + syst_JES_Zjet_Stat5: 3.32432143e-22 + syst_JES_Zjet_Stat6: 2.75049674e-08 + syst_JES_Zjet_Stat7: 5.02207866e-18 + syst_JES_Zjet_Stat8: 3.14825857e-15 + syst_JES_Zjet_Stat9: 7.85015076e-10 + syst_JES_Zjet_Veto: 5.00916218e-09 + syst_JES_Zjet_dPhi: 4.59372971e-09 + syst_PRW: 2.49600000e-06 + syst_Unfolding_bias: 1.03870000e-06 + syst_cleaning: 8.34761887e-07 + syst_lumi: 2.61400000e-06 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 1.7407903686256998e-06 - syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 3.2482128547864595e-07 - syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 2.561860798326092e-07 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 1.5352994756724176e-06 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 6.858700077274118e-07 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.474300332361083e-06 -- stat: 1.2883e-05 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 1.74079037e-06 + syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 3.24821285e-07 + syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 2.56186080e-07 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 1.53529948e-06 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 6.85870008e-07 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.47430033e-06 +- stat: 1.28830000e-05 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 2.0897652380111984e-06 - syst_JER_NP1: 2.585820179362827e-06 - syst_JER_NP2: 8.35454707030848e-07 + syst_JER_NP0: 2.08976524e-06 + syst_JER_NP1: 2.58582018e-06 + syst_JER_NP2: 8.35454707e-07 syst_JER_NP3: 0.0 syst_JER_NP4: 0.0 syst_JER_NP5: 0.0 syst_JER_NP6: 0.0 syst_JER_NP7: 0.0 - syst_JER_NP8: 4.398103085422168e-08 - syst_JES_EtaIntercalibration_Modelling: 5.861064131196655e-06 + syst_JER_NP8: 4.39810309e-08 + syst_JES_EtaIntercalibration_Modelling: 5.86106413e-06 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 @@ -54086,7 +54086,7 @@ bins: syst_JES_EtaIntercalibration_Stat128: 0.0 syst_JES_EtaIntercalibration_Stat129: 0.0 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 7.054642939228037e-11 + syst_JES_EtaIntercalibration_Stat130: 7.05464294e-11 syst_JES_EtaIntercalibration_Stat131: 0.0 syst_JES_EtaIntercalibration_Stat132: 0.0 syst_JES_EtaIntercalibration_Stat133: 0.0 @@ -54100,12 +54100,12 @@ bins: syst_JES_EtaIntercalibration_Stat140: 0.0 syst_JES_EtaIntercalibration_Stat141: 0.0 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 4.194432589755139e-10 + syst_JES_EtaIntercalibration_Stat143: 4.19443259e-10 syst_JES_EtaIntercalibration_Stat144: 0.0 syst_JES_EtaIntercalibration_Stat145: 0.0 syst_JES_EtaIntercalibration_Stat146: 0.0 syst_JES_EtaIntercalibration_Stat147: 0.0 - syst_JES_EtaIntercalibration_Stat148: 6.883169909278719e-11 + syst_JES_EtaIntercalibration_Stat148: 6.88316991e-11 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 syst_JES_EtaIntercalibration_Stat150: 0.0 @@ -54120,13 +54120,13 @@ bins: syst_JES_EtaIntercalibration_Stat159: 0.0 syst_JES_EtaIntercalibration_Stat16: 0.0 syst_JES_EtaIntercalibration_Stat160: 0.0 - syst_JES_EtaIntercalibration_Stat161: 4.2109040597002445e-10 + syst_JES_EtaIntercalibration_Stat161: 4.21090406e-10 syst_JES_EtaIntercalibration_Stat162: 0.0 syst_JES_EtaIntercalibration_Stat163: 0.0 syst_JES_EtaIntercalibration_Stat164: 0.0 - syst_JES_EtaIntercalibration_Stat165: 6.511645011055194e-11 - syst_JES_EtaIntercalibration_Stat166: 4.00186369083206e-10 - syst_JES_EtaIntercalibration_Stat167: 6.829476334244083e-11 + syst_JES_EtaIntercalibration_Stat165: 6.51164501e-11 + syst_JES_EtaIntercalibration_Stat166: 4.00186369e-10 + syst_JES_EtaIntercalibration_Stat167: 6.82947633e-11 syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 syst_JES_EtaIntercalibration_Stat17: 0.0 @@ -54138,14 +54138,14 @@ bins: syst_JES_EtaIntercalibration_Stat175: 0.0 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 - syst_JES_EtaIntercalibration_Stat178: 5.469043883532112e-10 - syst_JES_EtaIntercalibration_Stat179: 8.549073326975269e-10 + syst_JES_EtaIntercalibration_Stat178: 5.46904388e-10 + syst_JES_EtaIntercalibration_Stat179: 8.54907333e-10 syst_JES_EtaIntercalibration_Stat18: 0.0 - syst_JES_EtaIntercalibration_Stat180: 3.3453824994311187e-10 + syst_JES_EtaIntercalibration_Stat180: 3.34538250e-10 syst_JES_EtaIntercalibration_Stat181: 0.0 - syst_JES_EtaIntercalibration_Stat182: 6.799847553438239e-10 - syst_JES_EtaIntercalibration_Stat183: 1.3760134374343877e-07 - syst_JES_EtaIntercalibration_Stat184: 6.019656863144277e-08 + syst_JES_EtaIntercalibration_Stat182: 6.79984755e-10 + syst_JES_EtaIntercalibration_Stat183: 1.37601344e-07 + syst_JES_EtaIntercalibration_Stat184: 6.01965686e-08 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 syst_JES_EtaIntercalibration_Stat187: 0.0 @@ -54156,15 +54156,15 @@ bins: syst_JES_EtaIntercalibration_Stat191: 0.0 syst_JES_EtaIntercalibration_Stat192: 0.0 syst_JES_EtaIntercalibration_Stat193: 0.0 - syst_JES_EtaIntercalibration_Stat194: 2.4586461213440213e-10 - syst_JES_EtaIntercalibration_Stat195: 3.058576139317117e-08 - syst_JES_EtaIntercalibration_Stat196: 8.27746958617185e-08 - syst_JES_EtaIntercalibration_Stat197: 1.2576215130157404e-09 - syst_JES_EtaIntercalibration_Stat198: 1.0737848981523254e-07 - syst_JES_EtaIntercalibration_Stat199: 3.093306969490743e-07 + syst_JES_EtaIntercalibration_Stat194: 2.45864612e-10 + syst_JES_EtaIntercalibration_Stat195: 3.05857614e-08 + syst_JES_EtaIntercalibration_Stat196: 8.27746959e-08 + syst_JES_EtaIntercalibration_Stat197: 1.25762151e-09 + syst_JES_EtaIntercalibration_Stat198: 1.07378490e-07 + syst_JES_EtaIntercalibration_Stat199: 3.09330697e-07 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 3.93521943479649e-09 + syst_JES_EtaIntercalibration_Stat200: 3.93521943e-09 syst_JES_EtaIntercalibration_Stat201: 0.0 syst_JES_EtaIntercalibration_Stat202: 0.0 syst_JES_EtaIntercalibration_Stat203: 0.0 @@ -54173,12 +54173,12 @@ bins: syst_JES_EtaIntercalibration_Stat206: 0.0 syst_JES_EtaIntercalibration_Stat207: 0.0 syst_JES_EtaIntercalibration_Stat208: 0.0 - syst_JES_EtaIntercalibration_Stat209: 4.2501226747001076e-10 + syst_JES_EtaIntercalibration_Stat209: 4.25012267e-10 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 4.5217023342984443e-08 - syst_JES_EtaIntercalibration_Stat211: 1.057503620561178e-07 - syst_JES_EtaIntercalibration_Stat212: 2.8907733965151956e-07 - syst_JES_EtaIntercalibration_Stat213: 3.94907584125704e-09 + syst_JES_EtaIntercalibration_Stat210: 4.52170233e-08 + syst_JES_EtaIntercalibration_Stat211: 1.05750362e-07 + syst_JES_EtaIntercalibration_Stat212: 2.89077340e-07 + syst_JES_EtaIntercalibration_Stat213: 3.94907584e-09 syst_JES_EtaIntercalibration_Stat214: 0.0 syst_JES_EtaIntercalibration_Stat215: 0.0 syst_JES_EtaIntercalibration_Stat216: 0.0 @@ -54188,10 +54188,10 @@ bins: syst_JES_EtaIntercalibration_Stat22: 0.0 syst_JES_EtaIntercalibration_Stat220: 0.0 syst_JES_EtaIntercalibration_Stat221: 0.0 - syst_JES_EtaIntercalibration_Stat222: 4.240190886033316e-10 - syst_JES_EtaIntercalibration_Stat223: 4.869478924895353e-08 - syst_JES_EtaIntercalibration_Stat224: 3.719863169526535e-07 - syst_JES_EtaIntercalibration_Stat225: 1.7725415989476807e-07 + syst_JES_EtaIntercalibration_Stat222: 4.24019089e-10 + syst_JES_EtaIntercalibration_Stat223: 4.86947892e-08 + syst_JES_EtaIntercalibration_Stat224: 3.71986317e-07 + syst_JES_EtaIntercalibration_Stat225: 1.77254160e-07 syst_JES_EtaIntercalibration_Stat226: 0.0 syst_JES_EtaIntercalibration_Stat227: 0.0 syst_JES_EtaIntercalibration_Stat228: 0.0 @@ -54201,8 +54201,8 @@ bins: syst_JES_EtaIntercalibration_Stat231: 0.0 syst_JES_EtaIntercalibration_Stat232: 0.0 syst_JES_EtaIntercalibration_Stat233: 0.0 - syst_JES_EtaIntercalibration_Stat234: 6.6207642119320335e-09 - syst_JES_EtaIntercalibration_Stat235: 3.1820778223513014e-07 + syst_JES_EtaIntercalibration_Stat234: 6.62076421e-09 + syst_JES_EtaIntercalibration_Stat235: 3.18207782e-07 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 @@ -54213,7 +54213,7 @@ bins: syst_JES_EtaIntercalibration_Stat242: 0.0 syst_JES_EtaIntercalibration_Stat243: 0.0 syst_JES_EtaIntercalibration_Stat244: 0.0 - syst_JES_EtaIntercalibration_Stat245: 3.045787582875733e-10 + syst_JES_EtaIntercalibration_Stat245: 3.04578758e-10 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 syst_JES_EtaIntercalibration_Stat27: 0.0 @@ -54296,159 +54296,159 @@ bins: syst_JES_EtaIntercalibration_Stat97: 0.0 syst_JES_EtaIntercalibration_Stat98: 0.0 syst_JES_EtaIntercalibration_Stat99: 0.0 - syst_JES_EtaIntercalibration_TotalStat_MJB: 1.7398254941229017e-06 - syst_JES_Flavour_Comp: 3.027447935142734e-06 - syst_JES_Gjet_Generator: 3.3087784875993135e-06 - syst_JES_Gjet_OOC: 2.8899388834368104e-06 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.73982549e-06 + syst_JES_Flavour_Comp: 3.02744794e-06 + syst_JES_Gjet_Generator: 3.30877849e-06 + syst_JES_Gjet_OOC: 2.88993888e-06 syst_JES_Gjet_Purity: 0.0 - syst_JES_Gjet_Stat1: 4.279031520098911e-10 - syst_JES_Gjet_Stat10: 2.2655224563000915e-08 - syst_JES_Gjet_Stat11: 2.6595595500007137e-08 - syst_JES_Gjet_Stat12: 8.844522994486476e-08 - syst_JES_Gjet_Stat13: 5.262836378798034e-07 - syst_JES_Gjet_Stat14: 1.5373115331643095e-06 - syst_JES_Gjet_Stat15: 2.896821361423586e-06 - syst_JES_Gjet_Stat2: 6.651924683879095e-10 - syst_JES_Gjet_Stat3: 6.712562904733185e-10 - syst_JES_Gjet_Stat4: 6.715160980944538e-10 - syst_JES_Gjet_Stat5: 6.708232777714262e-10 + syst_JES_Gjet_Stat1: 4.27903152e-10 + syst_JES_Gjet_Stat10: 2.26552246e-08 + syst_JES_Gjet_Stat11: 2.65955955e-08 + syst_JES_Gjet_Stat12: 8.84452299e-08 + syst_JES_Gjet_Stat13: 5.26283638e-07 + syst_JES_Gjet_Stat14: 1.53731153e-06 + syst_JES_Gjet_Stat15: 2.89682136e-06 + syst_JES_Gjet_Stat2: 6.65192468e-10 + syst_JES_Gjet_Stat3: 6.71256290e-10 + syst_JES_Gjet_Stat4: 6.71516098e-10 + syst_JES_Gjet_Stat5: 6.70823278e-10 syst_JES_Gjet_Stat6: 0.0 syst_JES_Gjet_Stat7: 0.0 - syst_JES_Gjet_Stat8: 8.101134426733086e-10 - syst_JES_Gjet_Stat9: 1.2263785742991436e-08 - syst_JES_Gjet_Veto: 3.0482786536010775e-06 + syst_JES_Gjet_Stat8: 8.10113443e-10 + syst_JES_Gjet_Stat9: 1.22637857e-08 + syst_JES_Gjet_Veto: 3.04827865e-06 syst_JES_Gjet_dPhi: 0.0 - syst_JES_LArESZee: 4.801360302039413e-06 + syst_JES_LArESZee: 4.80136030e-06 syst_JES_LArEsmear: 0.0 syst_JES_LAr_JVT: 0.0 - syst_JES_MJB_Alpha: 1.0400965099451108e-08 - syst_JES_MJB_Asym: 6.905584316334136e-07 - syst_JES_MJB_Beta: 1.5787643110990315e-08 + syst_JES_MJB_Alpha: 1.04009651e-08 + syst_JES_MJB_Asym: 6.90558432e-07 + syst_JES_MJB_Beta: 1.57876431e-08 syst_JES_MJB_Stat1: 0.0 - syst_JES_MJB_Stat10: 1.2262053692183868e-08 - syst_JES_MJB_Stat11: 1.5803752651822923e-08 + syst_JES_MJB_Stat10: 1.22620537e-08 + syst_JES_MJB_Stat11: 1.58037527e-08 syst_JES_MJB_Stat12: 0.0 syst_JES_MJB_Stat13: 0.0 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 - syst_JES_MJB_Stat16: 1.3198227153674847e-10 + syst_JES_MJB_Stat16: 1.31982272e-10 syst_JES_MJB_Stat2: 0.0 - syst_JES_MJB_Stat3: 4.636327102351601e-10 - syst_JES_MJB_Stat4: 8.83086104238992e-11 - syst_JES_MJB_Stat5: 4.377758416130337e-10 - syst_JES_MJB_Stat6: 6.938130349741204e-10 - syst_JES_MJB_Stat7: 7.033456813686994e-10 - syst_JES_MJB_Stat8: 9.083764032602344e-10 - syst_JES_MJB_Stat9: 5.819504789928435e-09 - syst_JES_MJB_Threshold: 5.423005070991544e-07 - syst_JES_Pileup_MuOffset: 6.483329449441853e-07 + syst_JES_MJB_Stat3: 4.63632710e-10 + syst_JES_MJB_Stat4: 8.83086104e-11 + syst_JES_MJB_Stat5: 4.37775842e-10 + syst_JES_MJB_Stat6: 6.93813035e-10 + syst_JES_MJB_Stat7: 7.03345681e-10 + syst_JES_MJB_Stat8: 9.08376403e-10 + syst_JES_MJB_Stat9: 5.81950479e-09 + syst_JES_MJB_Threshold: 5.42300507e-07 + syst_JES_Pileup_MuOffset: 6.48332945e-07 syst_JES_Pileup_NPVOffset: 0.0 syst_JES_Pileup_Pt_term: 0.0 - syst_JES_PunchThrough_MC15: 6.561012174199953e-07 + syst_JES_PunchThrough_MC15: 6.56101217e-07 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 1.064028208037738e-06 + syst_JES_Zjet_MC: 1.06402821e-06 syst_JES_Zjet_MuScale: 0.0 - syst_JES_Zjet_MuSmearID: 5.78785489797386e-09 - syst_JES_Zjet_MuSmearMS: 3.6095938829735407e-07 - syst_JES_Zjet_OOC: 4.5293128617926147e-07 + syst_JES_Zjet_MuSmearID: 5.78785490e-09 + syst_JES_Zjet_MuSmearMS: 3.60959388e-07 + syst_JES_Zjet_OOC: 4.52931286e-07 syst_JES_Zjet_Stat1: 0.0 - syst_JES_Zjet_Stat10: 2.1269583916945813e-08 + syst_JES_Zjet_Stat10: 2.12695839e-08 syst_JES_Zjet_Stat11: 0.0 - syst_JES_Zjet_Stat12: 1.0792868432441859e-07 - syst_JES_Zjet_Stat13: 3.4094446761899515e-07 + syst_JES_Zjet_Stat12: 1.07928684e-07 + syst_JES_Zjet_Stat13: 3.40944468e-07 syst_JES_Zjet_Stat2: 0.0 - syst_JES_Zjet_Stat3: 1.2228278701436273e-08 + syst_JES_Zjet_Stat3: 1.22282787e-08 syst_JES_Zjet_Stat4: 0.0 syst_JES_Zjet_Stat5: 0.0 - syst_JES_Zjet_Stat6: 1.2239537031685471e-08 + syst_JES_Zjet_Stat6: 1.22395370e-08 syst_JES_Zjet_Stat7: 0.0 syst_JES_Zjet_Stat8: 0.0 syst_JES_Zjet_Stat9: 0.0 syst_JES_Zjet_Veto: 0.0 syst_JES_Zjet_dPhi: 0.0 - syst_PRW: 1.2337e-06 + syst_PRW: 1.23370000e-06 syst_Unfolding_bias: 1.7e-06 - syst_cleaning: 2.967003033365487e-07 - syst_lumi: 9.244e-07 + syst_cleaning: 2.96700303e-07 + syst_lumi: 9.24400000e-07 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 1.1377841754919955e-06 - syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.3221343984255159e-07 - syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 8.205590700857556e-08 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 1.003463635365029e-06 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 2.913318726126615e-07 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 4.896507632997216e-07 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 1.13778418e-06 + syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.32213440e-07 + syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 8.20559070e-08 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 1.00346364e-06 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 2.91331873e-07 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 4.89650763e-07 - stat: 50.93 syst_JER_CROSS_CALIB_FORWARD: 75.622 syst_JER_NOISE_FORWARD: 43.732 - syst_JER_NP0: 145.269613225719 - syst_JER_NP1: 41.244194355084694 - syst_JER_NP2: 30.48882254203989 - syst_JER_NP3: 39.18226028128036 - syst_JER_NP4: 4.307453627144464 - syst_JER_NP5: 28.683271692748022 - syst_JER_NP6: 21.428977460438936 - syst_JER_NP7: 21.86047346239326 - syst_JER_NP8: 21.782451652649204 - syst_JES_EtaIntercalibration_Modelling: 174.78233434761077 - syst_JES_EtaIntercalibration_NonClosure: 35.56426814585111 + syst_JER_NP0: 1.45269613e+02 + syst_JER_NP1: 4.12441944e+01 + syst_JER_NP2: 3.04888225e+01 + syst_JER_NP3: 3.91822603e+01 + syst_JER_NP4: 4.30745363e+00 + syst_JER_NP5: 2.86832717e+01 + syst_JER_NP6: 2.14289775e+01 + syst_JER_NP7: 2.18604735e+01 + syst_JER_NP8: 2.17824517e+01 + syst_JES_EtaIntercalibration_Modelling: 1.74782334e+02 + syst_JES_EtaIntercalibration_NonClosure: 3.55642681e+01 syst_JES_EtaIntercalibration_Stat0: 0.0 - syst_JES_EtaIntercalibration_Stat1: 0.03955138019083532 + syst_JES_EtaIntercalibration_Stat1: 3.95513802e-02 syst_JES_EtaIntercalibration_Stat10: 0.0 syst_JES_EtaIntercalibration_Stat100: 0.0 syst_JES_EtaIntercalibration_Stat101: 0.0 syst_JES_EtaIntercalibration_Stat102: 0.0 - syst_JES_EtaIntercalibration_Stat103: 0.16484590622760398 - syst_JES_EtaIntercalibration_Stat104: 3.0304544213698383 - syst_JES_EtaIntercalibration_Stat105: 14.625083760443903 - syst_JES_EtaIntercalibration_Stat106: 14.257947783604763 - syst_JES_EtaIntercalibration_Stat107: 1.1706840179997333 - syst_JES_EtaIntercalibration_Stat108: 0.4120669116478536 - syst_JES_EtaIntercalibration_Stat109: 3.4693424088723215 + syst_JES_EtaIntercalibration_Stat103: 1.64845906e-01 + syst_JES_EtaIntercalibration_Stat104: 3.03045442e+00 + syst_JES_EtaIntercalibration_Stat105: 1.46250838e+01 + syst_JES_EtaIntercalibration_Stat106: 1.42579478e+01 + syst_JES_EtaIntercalibration_Stat107: 1.17068402e+00 + syst_JES_EtaIntercalibration_Stat108: 4.12066912e-01 + syst_JES_EtaIntercalibration_Stat109: 3.46934241e+00 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 4.336740567523033 - syst_JES_EtaIntercalibration_Stat111: 1.2107736865327063 - syst_JES_EtaIntercalibration_Stat112: 0.11080828534004125 + syst_JES_EtaIntercalibration_Stat110: 4.33674057e+00 + syst_JES_EtaIntercalibration_Stat111: 1.21077369e+00 + syst_JES_EtaIntercalibration_Stat112: 1.10808285e-01 syst_JES_EtaIntercalibration_Stat113: 0.0 syst_JES_EtaIntercalibration_Stat114: 0.0 syst_JES_EtaIntercalibration_Stat115: 0.0 syst_JES_EtaIntercalibration_Stat116: 0.0 syst_JES_EtaIntercalibration_Stat117: 0.0 - syst_JES_EtaIntercalibration_Stat118: 0.01842036033849501 - syst_JES_EtaIntercalibration_Stat119: 0.01842036033849501 + syst_JES_EtaIntercalibration_Stat118: 1.84203603e-02 + syst_JES_EtaIntercalibration_Stat119: 1.84203603e-02 syst_JES_EtaIntercalibration_Stat12: 0.0 syst_JES_EtaIntercalibration_Stat120: 0.0 syst_JES_EtaIntercalibration_Stat121: 0.0 syst_JES_EtaIntercalibration_Stat122: 0.0 - syst_JES_EtaIntercalibration_Stat123: 0.025734489445100716 - syst_JES_EtaIntercalibration_Stat124: 1.3180233192170767 - syst_JES_EtaIntercalibration_Stat125: 4.343037732969862 - syst_JES_EtaIntercalibration_Stat126: 3.851748531511371 - syst_JES_EtaIntercalibration_Stat127: 0.2677141483000105 - syst_JES_EtaIntercalibration_Stat128: 4.102725877998675 - syst_JES_EtaIntercalibration_Stat129: 7.633059805870776 + syst_JES_EtaIntercalibration_Stat123: 2.57344894e-02 + syst_JES_EtaIntercalibration_Stat124: 1.31802332e+00 + syst_JES_EtaIntercalibration_Stat125: 4.34303773e+00 + syst_JES_EtaIntercalibration_Stat126: 3.85174853e+00 + syst_JES_EtaIntercalibration_Stat127: 2.67714148e-01 + syst_JES_EtaIntercalibration_Stat128: 4.10272588e+00 + syst_JES_EtaIntercalibration_Stat129: 7.63305981e+00 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 0.6379463457062828 - syst_JES_EtaIntercalibration_Stat131: 0.05726175687140589 + syst_JES_EtaIntercalibration_Stat130: 6.37946346e-01 + syst_JES_EtaIntercalibration_Stat131: 5.72617569e-02 syst_JES_EtaIntercalibration_Stat132: 0.0 syst_JES_EtaIntercalibration_Stat133: 0.0 syst_JES_EtaIntercalibration_Stat134: 0.0 syst_JES_EtaIntercalibration_Stat135: 0.0 syst_JES_EtaIntercalibration_Stat136: 0.0 - syst_JES_EtaIntercalibration_Stat137: 0.01842036033849501 - syst_JES_EtaIntercalibration_Stat138: 0.01842036033849501 - syst_JES_EtaIntercalibration_Stat139: 0.00038711335549164406 + syst_JES_EtaIntercalibration_Stat137: 1.84203603e-02 + syst_JES_EtaIntercalibration_Stat138: 1.84203603e-02 + syst_JES_EtaIntercalibration_Stat139: 3.87113355e-04 syst_JES_EtaIntercalibration_Stat14: 0.0 syst_JES_EtaIntercalibration_Stat140: 0.0 syst_JES_EtaIntercalibration_Stat141: 0.0 - syst_JES_EtaIntercalibration_Stat142: 0.032843093349287304 - syst_JES_EtaIntercalibration_Stat143: 0.6613030678138428 - syst_JES_EtaIntercalibration_Stat144: 7.659476924046445 - syst_JES_EtaIntercalibration_Stat145: 3.6317236610182775 - syst_JES_EtaIntercalibration_Stat146: 0.33262316515841167 - syst_JES_EtaIntercalibration_Stat147: 0.2284704521376889 - syst_JES_EtaIntercalibration_Stat148: 0.03665176628758838 - syst_JES_EtaIntercalibration_Stat149: 1.6012809715974272e-05 + syst_JES_EtaIntercalibration_Stat142: 3.28430933e-02 + syst_JES_EtaIntercalibration_Stat143: 6.61303068e-01 + syst_JES_EtaIntercalibration_Stat144: 7.65947692e+00 + syst_JES_EtaIntercalibration_Stat145: 3.63172366e+00 + syst_JES_EtaIntercalibration_Stat146: 3.32623165e-01 + syst_JES_EtaIntercalibration_Stat147: 2.28470452e-01 + syst_JES_EtaIntercalibration_Stat148: 3.66517663e-02 + syst_JES_EtaIntercalibration_Stat149: 1.60128097e-05 syst_JES_EtaIntercalibration_Stat15: 0.0 syst_JES_EtaIntercalibration_Stat150: 0.0 syst_JES_EtaIntercalibration_Stat151: 0.0 @@ -54456,60 +54456,60 @@ bins: syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 0.01842036033849501 - syst_JES_EtaIntercalibration_Stat157: 0.00038711335549164406 + syst_JES_EtaIntercalibration_Stat156: 1.84203603e-02 + syst_JES_EtaIntercalibration_Stat157: 3.87113355e-04 syst_JES_EtaIntercalibration_Stat158: 0.0 syst_JES_EtaIntercalibration_Stat159: 0.0 - syst_JES_EtaIntercalibration_Stat16: 0.008650727758402758 - syst_JES_EtaIntercalibration_Stat160: 0.004651524328300213 - syst_JES_EtaIntercalibration_Stat161: 0.039320036558986055 - syst_JES_EtaIntercalibration_Stat162: 0.30879204572009294 - syst_JES_EtaIntercalibration_Stat163: 0.2656873491530976 - syst_JES_EtaIntercalibration_Stat164: 0.007647964614850149 - syst_JES_EtaIntercalibration_Stat165: 0.0047702254663694885 - syst_JES_EtaIntercalibration_Stat166: 0.0006967996178959918 - syst_JES_EtaIntercalibration_Stat167: 1.2860477246198914e-22 + syst_JES_EtaIntercalibration_Stat16: 8.65072776e-03 + syst_JES_EtaIntercalibration_Stat160: 4.65152433e-03 + syst_JES_EtaIntercalibration_Stat161: 3.93200366e-02 + syst_JES_EtaIntercalibration_Stat162: 3.08792046e-01 + syst_JES_EtaIntercalibration_Stat163: 2.65687349e-01 + syst_JES_EtaIntercalibration_Stat164: 7.64796461e-03 + syst_JES_EtaIntercalibration_Stat165: 4.77022547e-03 + syst_JES_EtaIntercalibration_Stat166: 6.96799618e-04 + syst_JES_EtaIntercalibration_Stat167: 1.28604772e-22 syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 - syst_JES_EtaIntercalibration_Stat17: 0.021562921578487458 + syst_JES_EtaIntercalibration_Stat17: 2.15629216e-02 syst_JES_EtaIntercalibration_Stat170: 0.0 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 - syst_JES_EtaIntercalibration_Stat174: 0.00038711335549164406 - syst_JES_EtaIntercalibration_Stat175: 0.00038711335549164406 + syst_JES_EtaIntercalibration_Stat174: 3.87113355e-04 + syst_JES_EtaIntercalibration_Stat175: 3.87113355e-04 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 - syst_JES_EtaIntercalibration_Stat178: 5.853500193010145e-12 - syst_JES_EtaIntercalibration_Stat179: 0.0003782047163904755 - syst_JES_EtaIntercalibration_Stat18: 0.15627872791906133 - syst_JES_EtaIntercalibration_Stat180: 0.005430669825168899 - syst_JES_EtaIntercalibration_Stat181: 0.0062672656717263865 - syst_JES_EtaIntercalibration_Stat182: 0.0003243377225593717 - syst_JES_EtaIntercalibration_Stat183: 4.925086471322107e-06 - syst_JES_EtaIntercalibration_Stat184: 1.0232956171131946e-28 + syst_JES_EtaIntercalibration_Stat178: 5.85350019e-12 + syst_JES_EtaIntercalibration_Stat179: 3.78204716e-04 + syst_JES_EtaIntercalibration_Stat18: 1.56278728e-01 + syst_JES_EtaIntercalibration_Stat180: 5.43066983e-03 + syst_JES_EtaIntercalibration_Stat181: 6.26726567e-03 + syst_JES_EtaIntercalibration_Stat182: 3.24337723e-04 + syst_JES_EtaIntercalibration_Stat183: 4.92508647e-06 + syst_JES_EtaIntercalibration_Stat184: 1.02329562e-28 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 syst_JES_EtaIntercalibration_Stat187: 0.0 - syst_JES_EtaIntercalibration_Stat188: 3.0865145390877394e-12 + syst_JES_EtaIntercalibration_Stat188: 3.08651454e-12 syst_JES_EtaIntercalibration_Stat189: 0.0 - syst_JES_EtaIntercalibration_Stat19: 0.0414583875711538 + syst_JES_EtaIntercalibration_Stat19: 4.14583876e-02 syst_JES_EtaIntercalibration_Stat190: 0.0 - syst_JES_EtaIntercalibration_Stat191: 0.00038711335549164406 - syst_JES_EtaIntercalibration_Stat192: 0.00038711335549164406 + syst_JES_EtaIntercalibration_Stat191: 3.87113355e-04 + syst_JES_EtaIntercalibration_Stat192: 3.87113355e-04 syst_JES_EtaIntercalibration_Stat193: 0.0 syst_JES_EtaIntercalibration_Stat194: 0.0 - syst_JES_EtaIntercalibration_Stat195: 1.0348137549820257e-16 - syst_JES_EtaIntercalibration_Stat196: 7.507479736902391e-06 - syst_JES_EtaIntercalibration_Stat197: 0.0003205738721418201 - syst_JES_EtaIntercalibration_Stat198: 6.649072942899633e-12 - syst_JES_EtaIntercalibration_Stat199: 1.0541261214864187e-22 - syst_JES_EtaIntercalibration_Stat2: 0.07381766861666657 + syst_JES_EtaIntercalibration_Stat195: 1.03481375e-16 + syst_JES_EtaIntercalibration_Stat196: 7.50747974e-06 + syst_JES_EtaIntercalibration_Stat197: 3.20573872e-04 + syst_JES_EtaIntercalibration_Stat198: 6.64907294e-12 + syst_JES_EtaIntercalibration_Stat199: 1.05412612e-22 + syst_JES_EtaIntercalibration_Stat2: 7.38176686e-02 syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 syst_JES_EtaIntercalibration_Stat201: 0.0 syst_JES_EtaIntercalibration_Stat202: 0.0 - syst_JES_EtaIntercalibration_Stat203: 3.0865145390877394e-12 + syst_JES_EtaIntercalibration_Stat203: 3.08651454e-12 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 @@ -54517,8 +54517,8 @@ bins: syst_JES_EtaIntercalibration_Stat208: 0.0 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 5.578069625775569e-39 - syst_JES_EtaIntercalibration_Stat211: 5.891091834286748e-12 + syst_JES_EtaIntercalibration_Stat210: 5.57806963e-39 + syst_JES_EtaIntercalibration_Stat211: 5.89109183e-12 syst_JES_EtaIntercalibration_Stat212: 0.0 syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 @@ -54538,7 +54538,7 @@ bins: syst_JES_EtaIntercalibration_Stat227: 0.0 syst_JES_EtaIntercalibration_Stat228: 0.0 syst_JES_EtaIntercalibration_Stat229: 0.0 - syst_JES_EtaIntercalibration_Stat23: 0.056509752255694774 + syst_JES_EtaIntercalibration_Stat23: 5.65097523e-02 syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 syst_JES_EtaIntercalibration_Stat232: 0.0 @@ -54549,19 +54549,19 @@ bins: syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 syst_JES_EtaIntercalibration_Stat239: 0.0 - syst_JES_EtaIntercalibration_Stat24: 0.9703749392374065 + syst_JES_EtaIntercalibration_Stat24: 9.70374939e-01 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 syst_JES_EtaIntercalibration_Stat243: 0.0 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 - syst_JES_EtaIntercalibration_Stat25: 0.7665325033552067 - syst_JES_EtaIntercalibration_Stat26: 0.2602041365447521 + syst_JES_EtaIntercalibration_Stat25: 7.66532503e-01 + syst_JES_EtaIntercalibration_Stat26: 2.60204137e-01 syst_JES_EtaIntercalibration_Stat27: 0.0 syst_JES_EtaIntercalibration_Stat28: 0.0 syst_JES_EtaIntercalibration_Stat29: 0.0 - syst_JES_EtaIntercalibration_Stat3: 0.0308255105391622 + syst_JES_EtaIntercalibration_Stat3: 3.08255105e-02 syst_JES_EtaIntercalibration_Stat30: 0.0 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 @@ -54570,19 +54570,19 @@ bins: syst_JES_EtaIntercalibration_Stat35: 0.0 syst_JES_EtaIntercalibration_Stat36: 0.0 syst_JES_EtaIntercalibration_Stat37: 0.0 - syst_JES_EtaIntercalibration_Stat38: 0.008650727758402758 - syst_JES_EtaIntercalibration_Stat39: 0.16612901101252606 + syst_JES_EtaIntercalibration_Stat38: 8.65072776e-03 + syst_JES_EtaIntercalibration_Stat39: 1.66129011e-01 syst_JES_EtaIntercalibration_Stat4: 0.0 - syst_JES_EtaIntercalibration_Stat40: 1.1346286650265804 - syst_JES_EtaIntercalibration_Stat41: 0.5923855226961576 - syst_JES_EtaIntercalibration_Stat42: 0.005222133184820166 + syst_JES_EtaIntercalibration_Stat40: 1.13462867e+00 + syst_JES_EtaIntercalibration_Stat41: 5.92385523e-01 + syst_JES_EtaIntercalibration_Stat42: 5.22213318e-03 syst_JES_EtaIntercalibration_Stat43: 0.0 - syst_JES_EtaIntercalibration_Stat44: 0.13986310271118685 - syst_JES_EtaIntercalibration_Stat45: 0.19443055392607408 - syst_JES_EtaIntercalibration_Stat46: 2.05149689434325 - syst_JES_EtaIntercalibration_Stat47: 3.09257463450763 - syst_JES_EtaIntercalibration_Stat48: 0.4961531492392244 - syst_JES_EtaIntercalibration_Stat49: 0.034433170054469275 + syst_JES_EtaIntercalibration_Stat44: 1.39863103e-01 + syst_JES_EtaIntercalibration_Stat45: 1.94430554e-01 + syst_JES_EtaIntercalibration_Stat46: 2.05149689e+00 + syst_JES_EtaIntercalibration_Stat47: 3.09257463e+00 + syst_JES_EtaIntercalibration_Stat48: 4.96153149e-01 + syst_JES_EtaIntercalibration_Stat49: 3.44331701e-02 syst_JES_EtaIntercalibration_Stat5: 0.0 syst_JES_EtaIntercalibration_Stat50: 0.0 syst_JES_EtaIntercalibration_Stat51: 0.0 @@ -54593,21 +54593,21 @@ bins: syst_JES_EtaIntercalibration_Stat56: 0.0 syst_JES_EtaIntercalibration_Stat57: 0.0 syst_JES_EtaIntercalibration_Stat58: 0.0 - syst_JES_EtaIntercalibration_Stat59: 0.008650727758402758 + syst_JES_EtaIntercalibration_Stat59: 8.65072776e-03 syst_JES_EtaIntercalibration_Stat6: 0.0 - syst_JES_EtaIntercalibration_Stat60: 0.009084258968127229 - syst_JES_EtaIntercalibration_Stat61: 0.7428507319778315 - syst_JES_EtaIntercalibration_Stat62: 3.0250119008030367 - syst_JES_EtaIntercalibration_Stat63: 2.925975734690908 - syst_JES_EtaIntercalibration_Stat64: 0.1191233943228617 + syst_JES_EtaIntercalibration_Stat60: 9.08425897e-03 + syst_JES_EtaIntercalibration_Stat61: 7.42850732e-01 + syst_JES_EtaIntercalibration_Stat62: 3.02501190e+00 + syst_JES_EtaIntercalibration_Stat63: 2.92597573e+00 + syst_JES_EtaIntercalibration_Stat64: 1.19123394e-01 syst_JES_EtaIntercalibration_Stat65: 0.0 - syst_JES_EtaIntercalibration_Stat66: 0.13986310271118685 - syst_JES_EtaIntercalibration_Stat67: 0.6626332828193887 - syst_JES_EtaIntercalibration_Stat68: 10.252296559795761 - syst_JES_EtaIntercalibration_Stat69: 17.461683767609582 + syst_JES_EtaIntercalibration_Stat66: 1.39863103e-01 + syst_JES_EtaIntercalibration_Stat67: 6.62633283e-01 + syst_JES_EtaIntercalibration_Stat68: 1.02522966e+01 + syst_JES_EtaIntercalibration_Stat69: 1.74616838e+01 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 2.352310513091331 - syst_JES_EtaIntercalibration_Stat71: 0.3837573486918524 + syst_JES_EtaIntercalibration_Stat70: 2.35231051e+00 + syst_JES_EtaIntercalibration_Stat71: 3.83757349e-01 syst_JES_EtaIntercalibration_Stat72: 0.0 syst_JES_EtaIntercalibration_Stat73: 0.0 syst_JES_EtaIntercalibration_Stat74: 0.0 @@ -54618,19 +54618,19 @@ bins: syst_JES_EtaIntercalibration_Stat79: 0.0 syst_JES_EtaIntercalibration_Stat8: 0.0 syst_JES_EtaIntercalibration_Stat80: 0.0 - syst_JES_EtaIntercalibration_Stat81: 0.008650727758402758 - syst_JES_EtaIntercalibration_Stat82: 0.17539356280947144 - syst_JES_EtaIntercalibration_Stat83: 2.9159041479445107 - syst_JES_EtaIntercalibration_Stat84: 14.651747336068828 - syst_JES_EtaIntercalibration_Stat85: 11.564588222241206 - syst_JES_EtaIntercalibration_Stat86: 0.7990463816325057 + syst_JES_EtaIntercalibration_Stat81: 8.65072776e-03 + syst_JES_EtaIntercalibration_Stat82: 1.75393563e-01 + syst_JES_EtaIntercalibration_Stat83: 2.91590415e+00 + syst_JES_EtaIntercalibration_Stat84: 1.46517473e+01 + syst_JES_EtaIntercalibration_Stat85: 1.15645882e+01 + syst_JES_EtaIntercalibration_Stat86: 7.99046382e-01 syst_JES_EtaIntercalibration_Stat87: 0.0 - syst_JES_EtaIntercalibration_Stat88: 0.7216150913056073 - syst_JES_EtaIntercalibration_Stat89: 12.627882512519665 + syst_JES_EtaIntercalibration_Stat88: 7.21615091e-01 + syst_JES_EtaIntercalibration_Stat89: 1.26278825e+01 syst_JES_EtaIntercalibration_Stat9: 0.0 - syst_JES_EtaIntercalibration_Stat90: 14.308774475824265 - syst_JES_EtaIntercalibration_Stat91: 2.9332831435100157 - syst_JES_EtaIntercalibration_Stat92: 0.3719686285115319 + syst_JES_EtaIntercalibration_Stat90: 1.43087745e+01 + syst_JES_EtaIntercalibration_Stat91: 2.93328314e+00 + syst_JES_EtaIntercalibration_Stat92: 3.71968629e-01 syst_JES_EtaIntercalibration_Stat93: 0.0 syst_JES_EtaIntercalibration_Stat94: 0.0 syst_JES_EtaIntercalibration_Stat95: 0.0 @@ -54638,35 +54638,35 @@ bins: syst_JES_EtaIntercalibration_Stat97: 0.0 syst_JES_EtaIntercalibration_Stat98: 0.0 syst_JES_EtaIntercalibration_Stat99: 0.0 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0010749973337176237 - syst_JES_Flavour_Comp: 23.731347938960397 - syst_JES_Gjet_Generator: 125.22151630610452 - syst_JES_Gjet_OOC: 80.91613720853213 - syst_JES_Gjet_Purity: 34.039002629336835 - syst_JES_Gjet_Stat1: 0.396921059531993 - syst_JES_Gjet_Stat10: 0.5854956425969369 - syst_JES_Gjet_Stat11: 0.1076580915444817 - syst_JES_Gjet_Stat12: 0.002519786250855417 - syst_JES_Gjet_Stat13: 1.7248447082273812e-05 - syst_JES_Gjet_Stat14: 1.398809067564262e-11 - syst_JES_Gjet_Stat15: 1.0071007798544703e-16 - syst_JES_Gjet_Stat2: 0.829818359642639 - syst_JES_Gjet_Stat3: 2.240011774522625 - syst_JES_Gjet_Stat4: 3.1730860372829475 - syst_JES_Gjet_Stat5: 4.668945384131195 - syst_JES_Gjet_Stat6: 9.063726110160214 - syst_JES_Gjet_Stat7: 12.212134457170048 - syst_JES_Gjet_Stat8: 5.099922621962023 - syst_JES_Gjet_Stat9: 0.963685741048398 - syst_JES_Gjet_Veto: 26.215405775993627 - syst_JES_Gjet_dPhi: 14.984893017636129 - syst_JES_LArESZee: 78.27353593009582 - syst_JES_LArEsmear: 8.70686786393362 - syst_JES_LAr_JVT: 13.856831780749884 - syst_JES_MJB_Alpha: 2.1026294847166966e-10 - syst_JES_MJB_Asym: 0.0002554988992148499 - syst_JES_MJB_Beta: 1.254052307808518e-11 - syst_JES_MJB_Stat1: 0.0001697754060015761 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.07499733e-03 + syst_JES_Flavour_Comp: 2.37313479e+01 + syst_JES_Gjet_Generator: 1.25221516e+02 + syst_JES_Gjet_OOC: 8.09161372e+01 + syst_JES_Gjet_Purity: 3.40390026e+01 + syst_JES_Gjet_Stat1: 3.96921060e-01 + syst_JES_Gjet_Stat10: 5.85495643e-01 + syst_JES_Gjet_Stat11: 1.07658092e-01 + syst_JES_Gjet_Stat12: 2.51978625e-03 + syst_JES_Gjet_Stat13: 1.72484471e-05 + syst_JES_Gjet_Stat14: 1.39880907e-11 + syst_JES_Gjet_Stat15: 1.00710078e-16 + syst_JES_Gjet_Stat2: 8.29818360e-01 + syst_JES_Gjet_Stat3: 2.24001177e+00 + syst_JES_Gjet_Stat4: 3.17308604e+00 + syst_JES_Gjet_Stat5: 4.66894538e+00 + syst_JES_Gjet_Stat6: 9.06372611e+00 + syst_JES_Gjet_Stat7: 1.22121345e+01 + syst_JES_Gjet_Stat8: 5.09992262e+00 + syst_JES_Gjet_Stat9: 9.63685741e-01 + syst_JES_Gjet_Veto: 2.62154058e+01 + syst_JES_Gjet_dPhi: 1.49848930e+01 + syst_JES_LArESZee: 7.82735359e+01 + syst_JES_LArEsmear: 8.70686786e+00 + syst_JES_LAr_JVT: 1.38568318e+01 + syst_JES_MJB_Alpha: 2.10262948e-10 + syst_JES_MJB_Asym: 2.55498899e-04 + syst_JES_MJB_Beta: 1.25405231e-11 + syst_JES_MJB_Stat1: 1.69775406e-04 syst_JES_MJB_Stat10: 0.0 syst_JES_MJB_Stat11: 0.0 syst_JES_MJB_Stat12: 0.0 @@ -54674,123 +54674,123 @@ bins: syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 4.871392896287471e-06 - syst_JES_MJB_Stat3: 1.2302804680234504e-11 - syst_JES_MJB_Stat4: 2.850955629258372e-12 - syst_JES_MJB_Stat5: 1.011257863999089e-22 - syst_JES_MJB_Stat6: 3.53338364744051e-39 + syst_JES_MJB_Stat2: 4.87139290e-06 + syst_JES_MJB_Stat3: 1.23028047e-11 + syst_JES_MJB_Stat4: 2.85095563e-12 + syst_JES_MJB_Stat5: 1.01125786e-22 + syst_JES_MJB_Stat6: 3.53338365e-39 syst_JES_MJB_Stat7: 0.0 syst_JES_MJB_Stat8: 0.0 syst_JES_MJB_Stat9: 0.0 - syst_JES_MJB_Threshold: 0.00025598571737501293 - syst_JES_Pileup_MuOffset: 4.475381184882467 - syst_JES_Pileup_NPVOffset: 13.949715516812521 - syst_JES_Pileup_Pt_term: 78.47666956968804 - syst_JES_PunchThrough_MC15: 0.00040902991333153127 + syst_JES_MJB_Threshold: 2.55985717e-04 + syst_JES_Pileup_MuOffset: 4.47538118e+00 + syst_JES_Pileup_NPVOffset: 1.39497155e+01 + syst_JES_Pileup_Pt_term: 7.84766696e+01 + syst_JES_PunchThrough_MC15: 4.09029913e-04 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 117.9030216777755 - syst_JES_Zjet_MuScale: 9.329373652609268 - syst_JES_Zjet_MuSmearID: 2.289973089361532 - syst_JES_Zjet_MuSmearMS: 4.5316385557544185 - syst_JES_Zjet_OOC: 78.85113343985614 - syst_JES_Zjet_Stat1: 2.909249516627957 - syst_JES_Zjet_Stat10: 5.916270848262442 - syst_JES_Zjet_Stat11: 1.7311118594706698 - syst_JES_Zjet_Stat12: 0.24235768504423372 - syst_JES_Zjet_Stat13: 0.0009477655129302817 - syst_JES_Zjet_Stat2: 0.16415679181806642 - syst_JES_Zjet_Stat3: 0.9831012206278659 - syst_JES_Zjet_Stat4: 2.2109628558616716 - syst_JES_Zjet_Stat5: 2.62739352781421 - syst_JES_Zjet_Stat6: 4.752024489625448 - syst_JES_Zjet_Stat7: 7.4688232506868175 - syst_JES_Zjet_Stat8: 11.601144975820276 - syst_JES_Zjet_Stat9: 13.559771679493723 - syst_JES_Zjet_Veto: 12.172723031433845 - syst_JES_Zjet_dPhi: 20.725296137811878 + syst_JES_Zjet_MC: 1.17903022e+02 + syst_JES_Zjet_MuScale: 9.32937365e+00 + syst_JES_Zjet_MuSmearID: 2.28997309e+00 + syst_JES_Zjet_MuSmearMS: 4.53163856e+00 + syst_JES_Zjet_OOC: 7.88511334e+01 + syst_JES_Zjet_Stat1: 2.90924952e+00 + syst_JES_Zjet_Stat10: 5.91627085e+00 + syst_JES_Zjet_Stat11: 1.73111186e+00 + syst_JES_Zjet_Stat12: 2.42357685e-01 + syst_JES_Zjet_Stat13: 9.47765513e-04 + syst_JES_Zjet_Stat2: 1.64156792e-01 + syst_JES_Zjet_Stat3: 9.83101221e-01 + syst_JES_Zjet_Stat4: 2.21096286e+00 + syst_JES_Zjet_Stat5: 2.62739353e+00 + syst_JES_Zjet_Stat6: 4.75202449e+00 + syst_JES_Zjet_Stat7: 7.46882325e+00 + syst_JES_Zjet_Stat8: 1.16011450e+01 + syst_JES_Zjet_Stat9: 1.35597717e+01 + syst_JES_Zjet_Veto: 1.21727230e+01 + syst_JES_Zjet_dPhi: 2.07252961e+01 syst_PRW: 0.0 syst_Unfolding_bias: 14.73 - syst_cleaning: 49.074195530849 + syst_cleaning: 4.90741955e+01 syst_lumi: 102.582 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 194.7401912163999 - syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.000906535294403919 - syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 47.543871347945576 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 84.90402769450928 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0005021506419392491 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 41.957413442084345 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 1.94740191e+02 + syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 9.06535294e-04 + syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 4.75438713e+01 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 8.49040277e+01 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 5.02150642e-04 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 4.19574134e+01 - stat: 28.919 syst_JER_CROSS_CALIB_FORWARD: 29.26 syst_JER_NOISE_FORWARD: 17.42 - syst_JER_NP0: 56.03190096721688 - syst_JER_NP1: 13.475314467573659 - syst_JER_NP2: 10.0005800206788 - syst_JER_NP3: 13.750744588930447 - syst_JER_NP4: 1.689708575465012 - syst_JER_NP5: 9.161606900538791 - syst_JER_NP6: 6.774730603500038 - syst_JER_NP7: 7.465455160269867 - syst_JER_NP8: 6.578775189957475 - syst_JES_EtaIntercalibration_Modelling: 86.77581564439483 - syst_JES_EtaIntercalibration_NonClosure: 33.82346337973094 + syst_JER_NP0: 5.60319010e+01 + syst_JER_NP1: 1.34753145e+01 + syst_JER_NP2: 1.00005800e+01 + syst_JER_NP3: 1.37507446e+01 + syst_JER_NP4: 1.68970858e+00 + syst_JER_NP5: 9.16160690e+00 + syst_JER_NP6: 6.77473060e+00 + syst_JER_NP7: 7.46545516e+00 + syst_JER_NP8: 6.57877519e+00 + syst_JES_EtaIntercalibration_Modelling: 8.67758156e+01 + syst_JES_EtaIntercalibration_NonClosure: 3.38234634e+01 syst_JES_EtaIntercalibration_Stat0: 0.0 - syst_JES_EtaIntercalibration_Stat1: 0.0059062932538098715 + syst_JES_EtaIntercalibration_Stat1: 5.90629325e-03 syst_JES_EtaIntercalibration_Stat10: 0.0 syst_JES_EtaIntercalibration_Stat100: 0.0 syst_JES_EtaIntercalibration_Stat101: 0.0 syst_JES_EtaIntercalibration_Stat102: 0.0 - syst_JES_EtaIntercalibration_Stat103: 0.028450720113909242 - syst_JES_EtaIntercalibration_Stat104: 1.1255164359084235 - syst_JES_EtaIntercalibration_Stat105: 5.505839332018326 - syst_JES_EtaIntercalibration_Stat106: 5.079601633002335 - syst_JES_EtaIntercalibration_Stat107: 0.4329032236828458 - syst_JES_EtaIntercalibration_Stat108: 0.18452156378049694 - syst_JES_EtaIntercalibration_Stat109: 5.2265861468074934 + syst_JES_EtaIntercalibration_Stat103: 2.84507201e-02 + syst_JES_EtaIntercalibration_Stat104: 1.12551644e+00 + syst_JES_EtaIntercalibration_Stat105: 5.50583933e+00 + syst_JES_EtaIntercalibration_Stat106: 5.07960163e+00 + syst_JES_EtaIntercalibration_Stat107: 4.32903224e-01 + syst_JES_EtaIntercalibration_Stat108: 1.84521564e-01 + syst_JES_EtaIntercalibration_Stat109: 5.22658615e+00 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 4.362247008996625 - syst_JES_EtaIntercalibration_Stat111: 0.8582878538112957 - syst_JES_EtaIntercalibration_Stat112: 0.04745082796959396 + syst_JES_EtaIntercalibration_Stat110: 4.36224701e+00 + syst_JES_EtaIntercalibration_Stat111: 8.58287854e-01 + syst_JES_EtaIntercalibration_Stat112: 4.74508280e-02 syst_JES_EtaIntercalibration_Stat113: 0.0 syst_JES_EtaIntercalibration_Stat114: 0.0 syst_JES_EtaIntercalibration_Stat115: 0.0 syst_JES_EtaIntercalibration_Stat116: 0.0 syst_JES_EtaIntercalibration_Stat117: 0.0 - syst_JES_EtaIntercalibration_Stat118: 0.010549055443498248 - syst_JES_EtaIntercalibration_Stat119: 0.010549055443498248 + syst_JES_EtaIntercalibration_Stat118: 1.05490554e-02 + syst_JES_EtaIntercalibration_Stat119: 1.05490554e-02 syst_JES_EtaIntercalibration_Stat12: 0.0 syst_JES_EtaIntercalibration_Stat120: 0.0 syst_JES_EtaIntercalibration_Stat121: 0.0 syst_JES_EtaIntercalibration_Stat122: 0.0 - syst_JES_EtaIntercalibration_Stat123: 0.014032059720511456 - syst_JES_EtaIntercalibration_Stat124: 1.037902571294628 - syst_JES_EtaIntercalibration_Stat125: 5.354510505172251 - syst_JES_EtaIntercalibration_Stat126: 3.215884442886591 - syst_JES_EtaIntercalibration_Stat127: 0.2555056106526822 - syst_JES_EtaIntercalibration_Stat128: 0.36298015097247394 - syst_JES_EtaIntercalibration_Stat129: 1.5844673576631363 + syst_JES_EtaIntercalibration_Stat123: 1.40320597e-02 + syst_JES_EtaIntercalibration_Stat124: 1.03790257e+00 + syst_JES_EtaIntercalibration_Stat125: 5.35451051e+00 + syst_JES_EtaIntercalibration_Stat126: 3.21588444e+00 + syst_JES_EtaIntercalibration_Stat127: 2.55505611e-01 + syst_JES_EtaIntercalibration_Stat128: 3.62980151e-01 + syst_JES_EtaIntercalibration_Stat129: 1.58446736e+00 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 0.35830450736768577 - syst_JES_EtaIntercalibration_Stat131: 0.024798094180803493 + syst_JES_EtaIntercalibration_Stat130: 3.58304507e-01 + syst_JES_EtaIntercalibration_Stat131: 2.47980942e-02 syst_JES_EtaIntercalibration_Stat132: 0.0 syst_JES_EtaIntercalibration_Stat133: 0.0 syst_JES_EtaIntercalibration_Stat134: 0.0 syst_JES_EtaIntercalibration_Stat135: 0.0 syst_JES_EtaIntercalibration_Stat136: 0.0 - syst_JES_EtaIntercalibration_Stat137: 0.010549055443498248 - syst_JES_EtaIntercalibration_Stat138: 0.010549055443498248 - syst_JES_EtaIntercalibration_Stat139: 0.000728154159501956 + syst_JES_EtaIntercalibration_Stat137: 1.05490554e-02 + syst_JES_EtaIntercalibration_Stat138: 1.05490554e-02 + syst_JES_EtaIntercalibration_Stat139: 7.28154160e-04 syst_JES_EtaIntercalibration_Stat14: 0.0 syst_JES_EtaIntercalibration_Stat140: 0.0 syst_JES_EtaIntercalibration_Stat141: 0.0 - syst_JES_EtaIntercalibration_Stat142: 0.012690815576628635 - syst_JES_EtaIntercalibration_Stat143: 0.2055313848460862 - syst_JES_EtaIntercalibration_Stat144: 0.9293352947133774 - syst_JES_EtaIntercalibration_Stat145: 0.8014498908228761 - syst_JES_EtaIntercalibration_Stat146: 0.5121431245267284 - syst_JES_EtaIntercalibration_Stat147: 0.4666799840361701 - syst_JES_EtaIntercalibration_Stat148: 0.0581714132263434 - syst_JES_EtaIntercalibration_Stat149: 0.0003053605573738287 + syst_JES_EtaIntercalibration_Stat142: 1.26908156e-02 + syst_JES_EtaIntercalibration_Stat143: 2.05531385e-01 + syst_JES_EtaIntercalibration_Stat144: 9.29335295e-01 + syst_JES_EtaIntercalibration_Stat145: 8.01449891e-01 + syst_JES_EtaIntercalibration_Stat146: 5.12143125e-01 + syst_JES_EtaIntercalibration_Stat147: 4.66679984e-01 + syst_JES_EtaIntercalibration_Stat148: 5.81714132e-02 + syst_JES_EtaIntercalibration_Stat149: 3.05360557e-04 syst_JES_EtaIntercalibration_Stat15: 0.0 syst_JES_EtaIntercalibration_Stat150: 0.0 syst_JES_EtaIntercalibration_Stat151: 0.0 @@ -54798,60 +54798,60 @@ bins: syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 0.010549055443498248 - syst_JES_EtaIntercalibration_Stat157: 0.000728154159501956 + syst_JES_EtaIntercalibration_Stat156: 1.05490554e-02 + syst_JES_EtaIntercalibration_Stat157: 7.28154160e-04 syst_JES_EtaIntercalibration_Stat158: 0.0 syst_JES_EtaIntercalibration_Stat159: 0.0 - syst_JES_EtaIntercalibration_Stat16: 0.0016419841655752956 - syst_JES_EtaIntercalibration_Stat160: 0.013065080241621176 - syst_JES_EtaIntercalibration_Stat161: 0.05464419708441145 - syst_JES_EtaIntercalibration_Stat162: 0.4773004164045952 - syst_JES_EtaIntercalibration_Stat163: 0.43949409552347807 - syst_JES_EtaIntercalibration_Stat164: 0.042838370892810576 - syst_JES_EtaIntercalibration_Stat165: 0.011706704521341607 - syst_JES_EtaIntercalibration_Stat166: 0.001103592292243834 - syst_JES_EtaIntercalibration_Stat167: 1.6930796643984426e-15 + syst_JES_EtaIntercalibration_Stat16: 1.64198417e-03 + syst_JES_EtaIntercalibration_Stat160: 1.30650802e-02 + syst_JES_EtaIntercalibration_Stat161: 5.46441971e-02 + syst_JES_EtaIntercalibration_Stat162: 4.77300416e-01 + syst_JES_EtaIntercalibration_Stat163: 4.39494096e-01 + syst_JES_EtaIntercalibration_Stat164: 4.28383709e-02 + syst_JES_EtaIntercalibration_Stat165: 1.17067045e-02 + syst_JES_EtaIntercalibration_Stat166: 1.10359229e-03 + syst_JES_EtaIntercalibration_Stat167: 1.69307966e-15 syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 - syst_JES_EtaIntercalibration_Stat17: 0.004765408796735072 + syst_JES_EtaIntercalibration_Stat17: 4.76540880e-03 syst_JES_EtaIntercalibration_Stat170: 0.0 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 - syst_JES_EtaIntercalibration_Stat174: 0.000728154159501956 - syst_JES_EtaIntercalibration_Stat175: 0.000728154159501956 + syst_JES_EtaIntercalibration_Stat174: 7.28154160e-04 + syst_JES_EtaIntercalibration_Stat175: 7.28154160e-04 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 - syst_JES_EtaIntercalibration_Stat178: 2.7043409639087673e-08 - syst_JES_EtaIntercalibration_Stat179: 0.0033303853031593804 - syst_JES_EtaIntercalibration_Stat18: 0.029924673348258955 - syst_JES_EtaIntercalibration_Stat180: 0.008788499914661204 - syst_JES_EtaIntercalibration_Stat181: 0.012077398638779793 - syst_JES_EtaIntercalibration_Stat182: 0.0010967020424892079 - syst_JES_EtaIntercalibration_Stat183: 9.204984022733978e-05 - syst_JES_EtaIntercalibration_Stat184: 2.0923173768921825e-19 + syst_JES_EtaIntercalibration_Stat178: 2.70434096e-08 + syst_JES_EtaIntercalibration_Stat179: 3.33038530e-03 + syst_JES_EtaIntercalibration_Stat18: 2.99246733e-02 + syst_JES_EtaIntercalibration_Stat180: 8.78849991e-03 + syst_JES_EtaIntercalibration_Stat181: 1.20773986e-02 + syst_JES_EtaIntercalibration_Stat182: 1.09670204e-03 + syst_JES_EtaIntercalibration_Stat183: 9.20498402e-05 + syst_JES_EtaIntercalibration_Stat184: 2.09231738e-19 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 syst_JES_EtaIntercalibration_Stat187: 0.0 - syst_JES_EtaIntercalibration_Stat188: 1.425477814629186e-08 + syst_JES_EtaIntercalibration_Stat188: 1.42547781e-08 syst_JES_EtaIntercalibration_Stat189: 0.0 - syst_JES_EtaIntercalibration_Stat19: 0.009371935912606317 + syst_JES_EtaIntercalibration_Stat19: 9.37193591e-03 syst_JES_EtaIntercalibration_Stat190: 0.0 - syst_JES_EtaIntercalibration_Stat191: 0.000728154159501956 - syst_JES_EtaIntercalibration_Stat192: 0.000728154159501956 + syst_JES_EtaIntercalibration_Stat191: 7.28154160e-04 + syst_JES_EtaIntercalibration_Stat192: 7.28154160e-04 syst_JES_EtaIntercalibration_Stat193: 0.0 syst_JES_EtaIntercalibration_Stat194: 0.0 - syst_JES_EtaIntercalibration_Stat195: 1.82817962738895e-11 - syst_JES_EtaIntercalibration_Stat196: 0.00014217372295892094 - syst_JES_EtaIntercalibration_Stat197: 0.0012951953288983095 - syst_JES_EtaIntercalibration_Stat198: 3.0766531734987614e-08 - syst_JES_EtaIntercalibration_Stat199: 1.3882387222663202e-15 - syst_JES_EtaIntercalibration_Stat2: 0.03305403495414743 + syst_JES_EtaIntercalibration_Stat195: 1.82817963e-11 + syst_JES_EtaIntercalibration_Stat196: 1.42173723e-04 + syst_JES_EtaIntercalibration_Stat197: 1.29519533e-03 + syst_JES_EtaIntercalibration_Stat198: 3.07665317e-08 + syst_JES_EtaIntercalibration_Stat199: 1.38823872e-15 + syst_JES_EtaIntercalibration_Stat2: 3.30540350e-02 syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 syst_JES_EtaIntercalibration_Stat201: 0.0 syst_JES_EtaIntercalibration_Stat202: 0.0 - syst_JES_EtaIntercalibration_Stat203: 1.425477814629186e-08 + syst_JES_EtaIntercalibration_Stat203: 1.42547781e-08 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 @@ -54859,8 +54859,8 @@ bins: syst_JES_EtaIntercalibration_Stat208: 0.0 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 5.003028757662702e-27 - syst_JES_EtaIntercalibration_Stat211: 2.725786996447081e-08 + syst_JES_EtaIntercalibration_Stat210: 5.00302876e-27 + syst_JES_EtaIntercalibration_Stat211: 2.72578700e-08 syst_JES_EtaIntercalibration_Stat212: 0.0 syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 @@ -54880,7 +54880,7 @@ bins: syst_JES_EtaIntercalibration_Stat227: 0.0 syst_JES_EtaIntercalibration_Stat228: 0.0 syst_JES_EtaIntercalibration_Stat229: 0.0 - syst_JES_EtaIntercalibration_Stat23: 0.028127462892162884 + syst_JES_EtaIntercalibration_Stat23: 2.81274629e-02 syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 syst_JES_EtaIntercalibration_Stat232: 0.0 @@ -54891,19 +54891,19 @@ bins: syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 syst_JES_EtaIntercalibration_Stat239: 0.0 - syst_JES_EtaIntercalibration_Stat24: 0.27897127284901574 + syst_JES_EtaIntercalibration_Stat24: 2.78971273e-01 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 syst_JES_EtaIntercalibration_Stat243: 0.0 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 - syst_JES_EtaIntercalibration_Stat25: 0.2228111870508301 - syst_JES_EtaIntercalibration_Stat26: 0.03389201428065319 + syst_JES_EtaIntercalibration_Stat25: 2.22811187e-01 + syst_JES_EtaIntercalibration_Stat26: 3.38920143e-02 syst_JES_EtaIntercalibration_Stat27: 0.0 syst_JES_EtaIntercalibration_Stat28: 0.0 syst_JES_EtaIntercalibration_Stat29: 0.0 - syst_JES_EtaIntercalibration_Stat3: 0.013710030151316225 + syst_JES_EtaIntercalibration_Stat3: 1.37100302e-02 syst_JES_EtaIntercalibration_Stat30: 0.0 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 @@ -54912,19 +54912,19 @@ bins: syst_JES_EtaIntercalibration_Stat35: 0.0 syst_JES_EtaIntercalibration_Stat36: 0.0 syst_JES_EtaIntercalibration_Stat37: 0.0 - syst_JES_EtaIntercalibration_Stat38: 0.0016419841655752956 - syst_JES_EtaIntercalibration_Stat39: 0.037799032725719314 + syst_JES_EtaIntercalibration_Stat38: 1.64198417e-03 + syst_JES_EtaIntercalibration_Stat39: 3.77990327e-02 syst_JES_EtaIntercalibration_Stat4: 0.0 - syst_JES_EtaIntercalibration_Stat40: 0.18899955026401516 - syst_JES_EtaIntercalibration_Stat41: 0.16123939562030118 - syst_JES_EtaIntercalibration_Stat42: 0.002247335922820618 + syst_JES_EtaIntercalibration_Stat40: 1.88999550e-01 + syst_JES_EtaIntercalibration_Stat41: 1.61239396e-01 + syst_JES_EtaIntercalibration_Stat42: 2.24733592e-03 syst_JES_EtaIntercalibration_Stat43: 0.0 - syst_JES_EtaIntercalibration_Stat44: 0.0414219950630097 - syst_JES_EtaIntercalibration_Stat45: 0.10825112562925156 - syst_JES_EtaIntercalibration_Stat46: 0.48688096081075094 - syst_JES_EtaIntercalibration_Stat47: 0.7553685921455829 - syst_JES_EtaIntercalibration_Stat48: 0.17164553788257939 - syst_JES_EtaIntercalibration_Stat49: 0.012138212059442693 + syst_JES_EtaIntercalibration_Stat44: 4.14219951e-02 + syst_JES_EtaIntercalibration_Stat45: 1.08251126e-01 + syst_JES_EtaIntercalibration_Stat46: 4.86880961e-01 + syst_JES_EtaIntercalibration_Stat47: 7.55368592e-01 + syst_JES_EtaIntercalibration_Stat48: 1.71645538e-01 + syst_JES_EtaIntercalibration_Stat49: 1.21382121e-02 syst_JES_EtaIntercalibration_Stat5: 0.0 syst_JES_EtaIntercalibration_Stat50: 0.0 syst_JES_EtaIntercalibration_Stat51: 0.0 @@ -54935,21 +54935,21 @@ bins: syst_JES_EtaIntercalibration_Stat56: 0.0 syst_JES_EtaIntercalibration_Stat57: 0.0 syst_JES_EtaIntercalibration_Stat58: 0.0 - syst_JES_EtaIntercalibration_Stat59: 0.0016419841655752956 + syst_JES_EtaIntercalibration_Stat59: 1.64198417e-03 syst_JES_EtaIntercalibration_Stat6: 0.0 - syst_JES_EtaIntercalibration_Stat60: 0.0023275697089453623 - syst_JES_EtaIntercalibration_Stat61: 0.11129543869808861 - syst_JES_EtaIntercalibration_Stat62: 0.6184686956507985 - syst_JES_EtaIntercalibration_Stat63: 0.4684092334700502 - syst_JES_EtaIntercalibration_Stat64: 0.027184022421267977 + syst_JES_EtaIntercalibration_Stat60: 2.32756971e-03 + syst_JES_EtaIntercalibration_Stat61: 1.11295439e-01 + syst_JES_EtaIntercalibration_Stat62: 6.18468696e-01 + syst_JES_EtaIntercalibration_Stat63: 4.68409233e-01 + syst_JES_EtaIntercalibration_Stat64: 2.71840224e-02 syst_JES_EtaIntercalibration_Stat65: 0.0 - syst_JES_EtaIntercalibration_Stat66: 0.0414219950630097 - syst_JES_EtaIntercalibration_Stat67: 0.21677028094275286 - syst_JES_EtaIntercalibration_Stat68: 2.8312341390284206 - syst_JES_EtaIntercalibration_Stat69: 4.9766071524684365 + syst_JES_EtaIntercalibration_Stat66: 4.14219951e-02 + syst_JES_EtaIntercalibration_Stat67: 2.16770281e-01 + syst_JES_EtaIntercalibration_Stat68: 2.83123414e+00 + syst_JES_EtaIntercalibration_Stat69: 4.97660715e+00 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 0.6673670710336254 - syst_JES_EtaIntercalibration_Stat71: 0.05971812770633387 + syst_JES_EtaIntercalibration_Stat70: 6.67367071e-01 + syst_JES_EtaIntercalibration_Stat71: 5.97181277e-02 syst_JES_EtaIntercalibration_Stat72: 0.0 syst_JES_EtaIntercalibration_Stat73: 0.0 syst_JES_EtaIntercalibration_Stat74: 0.0 @@ -54960,19 +54960,19 @@ bins: syst_JES_EtaIntercalibration_Stat79: 0.0 syst_JES_EtaIntercalibration_Stat8: 0.0 syst_JES_EtaIntercalibration_Stat80: 0.0 - syst_JES_EtaIntercalibration_Stat81: 0.0016419841655752956 - syst_JES_EtaIntercalibration_Stat82: 0.029305326149865658 - syst_JES_EtaIntercalibration_Stat83: 0.8894297274096475 - syst_JES_EtaIntercalibration_Stat84: 4.2089982181036865 - syst_JES_EtaIntercalibration_Stat85: 2.971592965060996 - syst_JES_EtaIntercalibration_Stat86: 0.25005187461804795 + syst_JES_EtaIntercalibration_Stat81: 1.64198417e-03 + syst_JES_EtaIntercalibration_Stat82: 2.93053261e-02 + syst_JES_EtaIntercalibration_Stat83: 8.89429727e-01 + syst_JES_EtaIntercalibration_Stat84: 4.20899822e+00 + syst_JES_EtaIntercalibration_Stat85: 2.97159297e+00 + syst_JES_EtaIntercalibration_Stat86: 2.50051875e-01 syst_JES_EtaIntercalibration_Stat87: 0.0 - syst_JES_EtaIntercalibration_Stat88: 0.30391062419731235 - syst_JES_EtaIntercalibration_Stat89: 4.684256291024222 + syst_JES_EtaIntercalibration_Stat88: 3.03910624e-01 + syst_JES_EtaIntercalibration_Stat89: 4.68425629e+00 syst_JES_EtaIntercalibration_Stat9: 0.0 - syst_JES_EtaIntercalibration_Stat90: 5.673355510630371 - syst_JES_EtaIntercalibration_Stat91: 1.1252028383807073 - syst_JES_EtaIntercalibration_Stat92: 0.05691102363119117 + syst_JES_EtaIntercalibration_Stat90: 5.67335551e+00 + syst_JES_EtaIntercalibration_Stat91: 1.12520284e+00 + syst_JES_EtaIntercalibration_Stat92: 5.69110236e-02 syst_JES_EtaIntercalibration_Stat93: 0.0 syst_JES_EtaIntercalibration_Stat94: 0.0 syst_JES_EtaIntercalibration_Stat95: 0.0 @@ -54980,35 +54980,35 @@ bins: syst_JES_EtaIntercalibration_Stat97: 0.0 syst_JES_EtaIntercalibration_Stat98: 0.0 syst_JES_EtaIntercalibration_Stat99: 0.0 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0029020511280816535 - syst_JES_Flavour_Comp: 10.108675927142981 - syst_JES_Gjet_Generator: 55.63133035214959 - syst_JES_Gjet_OOC: 33.14071023680694 - syst_JES_Gjet_Purity: 14.381014454828978 - syst_JES_Gjet_Stat1: 0.13071669824471546 - syst_JES_Gjet_Stat10: 0.29191964489393313 - syst_JES_Gjet_Stat11: 0.21445616685001156 - syst_JES_Gjet_Stat12: 0.004159045848208457 - syst_JES_Gjet_Stat13: 0.00029509440438612184 - syst_JES_Gjet_Stat14: 6.471060712897075e-08 - syst_JES_Gjet_Stat15: 1.77879481843944e-11 - syst_JES_Gjet_Stat2: 0.2651907002517245 - syst_JES_Gjet_Stat3: 0.7562248937981346 - syst_JES_Gjet_Stat4: 1.0789332185079854 - syst_JES_Gjet_Stat5: 1.423274773190335 - syst_JES_Gjet_Stat6: 3.0941917393723357 - syst_JES_Gjet_Stat7: 4.920835904599949 - syst_JES_Gjet_Stat8: 2.449117392041468 - syst_JES_Gjet_Stat9: 1.0499321263777006 - syst_JES_Gjet_Veto: 11.694495500020512 - syst_JES_Gjet_dPhi: 6.675376318980077 - syst_JES_LArESZee: 36.18503385379099 - syst_JES_LArEsmear: 4.047915759993037 - syst_JES_LAr_JVT: 6.5178107520853965 - syst_JES_MJB_Alpha: 9.71462629234908e-07 - syst_JES_MJB_Asym: 0.0006392016426762371 - syst_JES_MJB_Beta: 5.802153206767295e-08 - syst_JES_MJB_Stat1: 0.000507205061784679 + syst_JES_EtaIntercalibration_TotalStat_MJB: 2.90205113e-03 + syst_JES_Flavour_Comp: 1.01086759e+01 + syst_JES_Gjet_Generator: 5.56313304e+01 + syst_JES_Gjet_OOC: 3.31407102e+01 + syst_JES_Gjet_Purity: 1.43810145e+01 + syst_JES_Gjet_Stat1: 1.30716698e-01 + syst_JES_Gjet_Stat10: 2.91919645e-01 + syst_JES_Gjet_Stat11: 2.14456167e-01 + syst_JES_Gjet_Stat12: 4.15904585e-03 + syst_JES_Gjet_Stat13: 2.95094404e-04 + syst_JES_Gjet_Stat14: 6.47106071e-08 + syst_JES_Gjet_Stat15: 1.77879482e-11 + syst_JES_Gjet_Stat2: 2.65190700e-01 + syst_JES_Gjet_Stat3: 7.56224894e-01 + syst_JES_Gjet_Stat4: 1.07893322e+00 + syst_JES_Gjet_Stat5: 1.42327477e+00 + syst_JES_Gjet_Stat6: 3.09419174e+00 + syst_JES_Gjet_Stat7: 4.92083590e+00 + syst_JES_Gjet_Stat8: 2.44911739e+00 + syst_JES_Gjet_Stat9: 1.04993213e+00 + syst_JES_Gjet_Veto: 1.16944955e+01 + syst_JES_Gjet_dPhi: 6.67537632e+00 + syst_JES_LArESZee: 3.61850339e+01 + syst_JES_LArEsmear: 4.04791576e+00 + syst_JES_LAr_JVT: 6.51781075e+00 + syst_JES_MJB_Alpha: 9.71462629e-07 + syst_JES_MJB_Asym: 6.39201643e-04 + syst_JES_MJB_Beta: 5.80215321e-08 + syst_JES_MJB_Stat1: 5.07205062e-04 syst_JES_MJB_Stat10: 0.0 syst_JES_MJB_Stat11: 0.0 syst_JES_MJB_Stat12: 0.0 @@ -55016,123 +55016,123 @@ bins: syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 9.123577633262697e-05 - syst_JES_MJB_Stat3: 5.6855454223847344e-08 - syst_JES_MJB_Stat4: 1.3189566899637002e-08 - syst_JES_MJB_Stat5: 1.3319470710187794e-15 - syst_JES_MJB_Stat6: 3.168786952447261e-27 + syst_JES_MJB_Stat2: 9.12357763e-05 + syst_JES_MJB_Stat3: 5.68554542e-08 + syst_JES_MJB_Stat4: 1.31895669e-08 + syst_JES_MJB_Stat5: 1.33194707e-15 + syst_JES_MJB_Stat6: 3.16878695e-27 syst_JES_MJB_Stat7: 0.0 syst_JES_MJB_Stat8: 0.0 syst_JES_MJB_Stat9: 0.0 - syst_JES_MJB_Threshold: 0.0006374692992607565 - syst_JES_Pileup_MuOffset: 1.8399458551816137 - syst_JES_Pileup_NPVOffset: 4.690997655083618 - syst_JES_Pileup_Pt_term: 33.762983798829154 - syst_JES_PunchThrough_MC15: 0.0074763822133435635 + syst_JES_MJB_Threshold: 6.37469299e-04 + syst_JES_Pileup_MuOffset: 1.83994586e+00 + syst_JES_Pileup_NPVOffset: 4.69099766e+00 + syst_JES_Pileup_Pt_term: 3.37629838e+01 + syst_JES_PunchThrough_MC15: 7.47638221e-03 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 49.956107201722595 - syst_JES_Zjet_MuScale: 4.125988608806379 - syst_JES_Zjet_MuSmearID: 0.8588815576084982 - syst_JES_Zjet_MuSmearMS: 2.3611531081232324 - syst_JES_Zjet_OOC: 28.731710704376795 - syst_JES_Zjet_Stat1: 0.9737986804262984 - syst_JES_Zjet_Stat10: 4.58668049901015 - syst_JES_Zjet_Stat11: 0.7332855037432555 - syst_JES_Zjet_Stat12: 0.3920166705638932 - syst_JES_Zjet_Stat13: 0.0025915062704921247 - syst_JES_Zjet_Stat2: 0.042473587969466396 - syst_JES_Zjet_Stat3: 0.4023327007278926 - syst_JES_Zjet_Stat4: 0.6460549512232188 - syst_JES_Zjet_Stat5: 0.8746754376338689 - syst_JES_Zjet_Stat6: 1.469685907770773 - syst_JES_Zjet_Stat7: 2.342480896400225 - syst_JES_Zjet_Stat8: 4.090148499749123 - syst_JES_Zjet_Stat9: 6.424744275066518 - syst_JES_Zjet_Veto: 4.993577950728315 - syst_JES_Zjet_dPhi: 7.4456432898709295 + syst_JES_Zjet_MC: 4.99561072e+01 + syst_JES_Zjet_MuScale: 4.12598861e+00 + syst_JES_Zjet_MuSmearID: 8.58881558e-01 + syst_JES_Zjet_MuSmearMS: 2.36115311e+00 + syst_JES_Zjet_OOC: 2.87317107e+01 + syst_JES_Zjet_Stat1: 9.73798680e-01 + syst_JES_Zjet_Stat10: 4.58668050e+00 + syst_JES_Zjet_Stat11: 7.33285504e-01 + syst_JES_Zjet_Stat12: 3.92016671e-01 + syst_JES_Zjet_Stat13: 2.59150627e-03 + syst_JES_Zjet_Stat2: 4.24735880e-02 + syst_JES_Zjet_Stat3: 4.02332701e-01 + syst_JES_Zjet_Stat4: 6.46054951e-01 + syst_JES_Zjet_Stat5: 8.74675438e-01 + syst_JES_Zjet_Stat6: 1.46968591e+00 + syst_JES_Zjet_Stat7: 2.34248090e+00 + syst_JES_Zjet_Stat8: 4.09014850e+00 + syst_JES_Zjet_Stat9: 6.42474428e+00 + syst_JES_Zjet_Veto: 4.99357795e+00 + syst_JES_Zjet_dPhi: 7.44564329e+00 syst_PRW: 0.0 syst_Unfolding_bias: 3.515 - syst_cleaning: 18.732129483857406 + syst_cleaning: 1.87321295e+01 syst_lumi: 45.966 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 77.89675020660361 - syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.004498003557135099 - syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 18.77852230608149 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 33.96230851988716 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0025141073962740733 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 16.652569621532887 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 7.78967502e+01 + syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 4.49800356e-03 + syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.87785223e+01 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 3.39623085e+01 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 2.51410740e-03 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.66525696e+01 - stat: 10.762 syst_JER_CROSS_CALIB_FORWARD: 10.671 syst_JER_NOISE_FORWARD: 6.871 - syst_JER_NP0: 21.643749097603216 - syst_JER_NP1: 3.9103770917905094 - syst_JER_NP2: 3.2155803131005767 - syst_JER_NP3: 5.021340159758149 - syst_JER_NP4: 0.6107465748573626 - syst_JER_NP5: 2.4763575569775864 - syst_JER_NP6: 1.9597527267489643 - syst_JER_NP7: 1.9960462795235987 - syst_JER_NP8: 1.704078269916027 - syst_JES_EtaIntercalibration_Modelling: 40.368058719116036 - syst_JES_EtaIntercalibration_NonClosure: 20.9861764025751 + syst_JER_NP0: 2.16437491e+01 + syst_JER_NP1: 3.91037709e+00 + syst_JER_NP2: 3.21558031e+00 + syst_JER_NP3: 5.02134016e+00 + syst_JER_NP4: 6.10746575e-01 + syst_JER_NP5: 2.47635756e+00 + syst_JER_NP6: 1.95975273e+00 + syst_JER_NP7: 1.99604628e+00 + syst_JER_NP8: 1.70407827e+00 + syst_JES_EtaIntercalibration_Modelling: 4.03680587e+01 + syst_JES_EtaIntercalibration_NonClosure: 2.09861764e+01 syst_JES_EtaIntercalibration_Stat0: 0.0 - syst_JES_EtaIntercalibration_Stat1: 0.0001360525909345353 + syst_JES_EtaIntercalibration_Stat1: 1.36052591e-04 syst_JES_EtaIntercalibration_Stat10: 0.0 syst_JES_EtaIntercalibration_Stat100: 0.0 syst_JES_EtaIntercalibration_Stat101: 0.0 syst_JES_EtaIntercalibration_Stat102: 0.0 - syst_JES_EtaIntercalibration_Stat103: 0.0029248964084220143 - syst_JES_EtaIntercalibration_Stat104: 0.3004280279867376 - syst_JES_EtaIntercalibration_Stat105: 1.6009874296820696 - syst_JES_EtaIntercalibration_Stat106: 1.524858026178175 - syst_JES_EtaIntercalibration_Stat107: 0.10536639253101532 - syst_JES_EtaIntercalibration_Stat108: 0.15958636118102323 - syst_JES_EtaIntercalibration_Stat109: 3.514475352026245 + syst_JES_EtaIntercalibration_Stat103: 2.92489641e-03 + syst_JES_EtaIntercalibration_Stat104: 3.00428028e-01 + syst_JES_EtaIntercalibration_Stat105: 1.60098743e+00 + syst_JES_EtaIntercalibration_Stat106: 1.52485803e+00 + syst_JES_EtaIntercalibration_Stat107: 1.05366393e-01 + syst_JES_EtaIntercalibration_Stat108: 1.59586361e-01 + syst_JES_EtaIntercalibration_Stat109: 3.51447535e+00 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 3.0695554645583454 - syst_JES_EtaIntercalibration_Stat111: 0.5013376597414162 - syst_JES_EtaIntercalibration_Stat112: 0.01716715454203171 + syst_JES_EtaIntercalibration_Stat110: 3.06955546e+00 + syst_JES_EtaIntercalibration_Stat111: 5.01337660e-01 + syst_JES_EtaIntercalibration_Stat112: 1.71671545e-02 syst_JES_EtaIntercalibration_Stat113: 0.0 syst_JES_EtaIntercalibration_Stat114: 0.0 syst_JES_EtaIntercalibration_Stat115: 0.0 syst_JES_EtaIntercalibration_Stat116: 0.0 syst_JES_EtaIntercalibration_Stat117: 0.0 - syst_JES_EtaIntercalibration_Stat118: 0.0022975653962401155 - syst_JES_EtaIntercalibration_Stat119: 0.0022975653962401155 + syst_JES_EtaIntercalibration_Stat118: 2.29756540e-03 + syst_JES_EtaIntercalibration_Stat119: 2.29756540e-03 syst_JES_EtaIntercalibration_Stat12: 0.0 syst_JES_EtaIntercalibration_Stat120: 0.0 syst_JES_EtaIntercalibration_Stat121: 0.0 syst_JES_EtaIntercalibration_Stat122: 0.0 - syst_JES_EtaIntercalibration_Stat123: 0.012698441587454737 - syst_JES_EtaIntercalibration_Stat124: 0.5546072123584402 - syst_JES_EtaIntercalibration_Stat125: 3.577973029523839 - syst_JES_EtaIntercalibration_Stat126: 2.356583119688334 - syst_JES_EtaIntercalibration_Stat127: 0.155571816213606 - syst_JES_EtaIntercalibration_Stat128: 1.6753047483965418 - syst_JES_EtaIntercalibration_Stat129: 2.4605122942184217 + syst_JES_EtaIntercalibration_Stat123: 1.26984416e-02 + syst_JES_EtaIntercalibration_Stat124: 5.54607212e-01 + syst_JES_EtaIntercalibration_Stat125: 3.57797303e+00 + syst_JES_EtaIntercalibration_Stat126: 2.35658312e+00 + syst_JES_EtaIntercalibration_Stat127: 1.55571816e-01 + syst_JES_EtaIntercalibration_Stat128: 1.67530475e+00 + syst_JES_EtaIntercalibration_Stat129: 2.46051229e+00 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 0.5020734806778785 - syst_JES_EtaIntercalibration_Stat131: 0.011460395900993126 + syst_JES_EtaIntercalibration_Stat130: 5.02073481e-01 + syst_JES_EtaIntercalibration_Stat131: 1.14603959e-02 syst_JES_EtaIntercalibration_Stat132: 0.0 syst_JES_EtaIntercalibration_Stat133: 0.0 syst_JES_EtaIntercalibration_Stat134: 0.0 syst_JES_EtaIntercalibration_Stat135: 0.0 syst_JES_EtaIntercalibration_Stat136: 0.0 - syst_JES_EtaIntercalibration_Stat137: 0.0022975653962401155 - syst_JES_EtaIntercalibration_Stat138: 0.0022975653962401155 - syst_JES_EtaIntercalibration_Stat139: 0.0002573827500047352 + syst_JES_EtaIntercalibration_Stat137: 2.29756540e-03 + syst_JES_EtaIntercalibration_Stat138: 2.29756540e-03 + syst_JES_EtaIntercalibration_Stat139: 2.57382750e-04 syst_JES_EtaIntercalibration_Stat14: 0.0 syst_JES_EtaIntercalibration_Stat140: 0.0 syst_JES_EtaIntercalibration_Stat141: 0.0 - syst_JES_EtaIntercalibration_Stat142: 0.02372214246226508 - syst_JES_EtaIntercalibration_Stat143: 0.2682546691112757 - syst_JES_EtaIntercalibration_Stat144: 2.9073986224802404 - syst_JES_EtaIntercalibration_Stat145: 1.1011541978760286 - syst_JES_EtaIntercalibration_Stat146: 0.2694075537174116 - syst_JES_EtaIntercalibration_Stat147: 0.40481633798551164 - syst_JES_EtaIntercalibration_Stat148: 0.0509837636115656 - syst_JES_EtaIntercalibration_Stat149: 0.0010381046253566686 + syst_JES_EtaIntercalibration_Stat142: 2.37221425e-02 + syst_JES_EtaIntercalibration_Stat143: 2.68254669e-01 + syst_JES_EtaIntercalibration_Stat144: 2.90739862e+00 + syst_JES_EtaIntercalibration_Stat145: 1.10115420e+00 + syst_JES_EtaIntercalibration_Stat146: 2.69407554e-01 + syst_JES_EtaIntercalibration_Stat147: 4.04816338e-01 + syst_JES_EtaIntercalibration_Stat148: 5.09837636e-02 + syst_JES_EtaIntercalibration_Stat149: 1.03810463e-03 syst_JES_EtaIntercalibration_Stat15: 0.0 syst_JES_EtaIntercalibration_Stat150: 0.0 syst_JES_EtaIntercalibration_Stat151: 0.0 @@ -55140,60 +55140,60 @@ bins: syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 0.0022975653962401155 - syst_JES_EtaIntercalibration_Stat157: 0.0002573827500047352 + syst_JES_EtaIntercalibration_Stat156: 2.29756540e-03 + syst_JES_EtaIntercalibration_Stat157: 2.57382750e-04 syst_JES_EtaIntercalibration_Stat158: 0.0 syst_JES_EtaIntercalibration_Stat159: 0.0 - syst_JES_EtaIntercalibration_Stat16: 0.00019970545811269155 - syst_JES_EtaIntercalibration_Stat160: 0.010730847780115045 - syst_JES_EtaIntercalibration_Stat161: 0.055311270099320624 - syst_JES_EtaIntercalibration_Stat162: 0.37078070338139224 - syst_JES_EtaIntercalibration_Stat163: 0.36055254818126026 - syst_JES_EtaIntercalibration_Stat164: 0.06479867128267369 - syst_JES_EtaIntercalibration_Stat165: 0.03931236065158133 - syst_JES_EtaIntercalibration_Stat166: 0.006535283074779546 - syst_JES_EtaIntercalibration_Stat167: 7.84792220694713e-11 + syst_JES_EtaIntercalibration_Stat16: 1.99705458e-04 + syst_JES_EtaIntercalibration_Stat160: 1.07308478e-02 + syst_JES_EtaIntercalibration_Stat161: 5.53112701e-02 + syst_JES_EtaIntercalibration_Stat162: 3.70780703e-01 + syst_JES_EtaIntercalibration_Stat163: 3.60552548e-01 + syst_JES_EtaIntercalibration_Stat164: 6.47986713e-02 + syst_JES_EtaIntercalibration_Stat165: 3.93123607e-02 + syst_JES_EtaIntercalibration_Stat166: 6.53528307e-03 + syst_JES_EtaIntercalibration_Stat167: 7.84792221e-11 syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 - syst_JES_EtaIntercalibration_Stat17: 0.0007404422867448887 + syst_JES_EtaIntercalibration_Stat17: 7.40442287e-04 syst_JES_EtaIntercalibration_Stat170: 0.0 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 - syst_JES_EtaIntercalibration_Stat174: 0.0002573827500047352 - syst_JES_EtaIntercalibration_Stat175: 0.0002573827500047352 + syst_JES_EtaIntercalibration_Stat174: 2.57382750e-04 + syst_JES_EtaIntercalibration_Stat175: 2.57382750e-04 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 - syst_JES_EtaIntercalibration_Stat178: 3.90260612797077e-06 - syst_JES_EtaIntercalibration_Stat179: 0.01461204855590071 - syst_JES_EtaIntercalibration_Stat18: 0.00531343735895136 - syst_JES_EtaIntercalibration_Stat180: 0.044018869817386265 - syst_JES_EtaIntercalibration_Stat181: 0.05860932604969963 - syst_JES_EtaIntercalibration_Stat182: 0.001949641320858788 - syst_JES_EtaIntercalibration_Stat183: 0.00016861788322347963 - syst_JES_EtaIntercalibration_Stat184: 3.8520812106054583e-13 + syst_JES_EtaIntercalibration_Stat178: 3.90260613e-06 + syst_JES_EtaIntercalibration_Stat179: 1.46120486e-02 + syst_JES_EtaIntercalibration_Stat18: 5.31343736e-03 + syst_JES_EtaIntercalibration_Stat180: 4.40188698e-02 + syst_JES_EtaIntercalibration_Stat181: 5.86093260e-02 + syst_JES_EtaIntercalibration_Stat182: 1.94964132e-03 + syst_JES_EtaIntercalibration_Stat183: 1.68617883e-04 + syst_JES_EtaIntercalibration_Stat184: 3.85208121e-13 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 syst_JES_EtaIntercalibration_Stat187: 0.0 - syst_JES_EtaIntercalibration_Stat188: 2.049016105353982e-06 + syst_JES_EtaIntercalibration_Stat188: 2.04901611e-06 syst_JES_EtaIntercalibration_Stat189: 0.0 - syst_JES_EtaIntercalibration_Stat19: 0.0019193159999072588 + syst_JES_EtaIntercalibration_Stat19: 1.91931600e-03 syst_JES_EtaIntercalibration_Stat190: 0.0 - syst_JES_EtaIntercalibration_Stat191: 0.0002573827500047352 - syst_JES_EtaIntercalibration_Stat192: 0.0002573827500047352 + syst_JES_EtaIntercalibration_Stat191: 2.57382750e-04 + syst_JES_EtaIntercalibration_Stat192: 2.57382750e-04 syst_JES_EtaIntercalibration_Stat193: 0.0 syst_JES_EtaIntercalibration_Stat194: 0.0 - syst_JES_EtaIntercalibration_Stat195: 3.6806079661105206e-08 - syst_JES_EtaIntercalibration_Stat196: 0.0003569252162568512 - syst_JES_EtaIntercalibration_Stat197: 0.0012430501629057454 - syst_JES_EtaIntercalibration_Stat198: 4.5260073740549735e-06 - syst_JES_EtaIntercalibration_Stat199: 6.434568747972658e-11 - syst_JES_EtaIntercalibration_Stat2: 0.009753227238586211 + syst_JES_EtaIntercalibration_Stat195: 3.68060797e-08 + syst_JES_EtaIntercalibration_Stat196: 3.56925216e-04 + syst_JES_EtaIntercalibration_Stat197: 1.24305016e-03 + syst_JES_EtaIntercalibration_Stat198: 4.52600737e-06 + syst_JES_EtaIntercalibration_Stat199: 6.43456875e-11 + syst_JES_EtaIntercalibration_Stat2: 9.75322724e-03 syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 syst_JES_EtaIntercalibration_Stat201: 0.0 syst_JES_EtaIntercalibration_Stat202: 0.0 - syst_JES_EtaIntercalibration_Stat203: 2.049016105353982e-06 + syst_JES_EtaIntercalibration_Stat203: 2.04901611e-06 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 @@ -55201,8 +55201,8 @@ bins: syst_JES_EtaIntercalibration_Stat208: 0.0 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 7.957907435375211e-19 - syst_JES_EtaIntercalibration_Stat211: 4.007345380672847e-06 + syst_JES_EtaIntercalibration_Stat210: 7.95790744e-19 + syst_JES_EtaIntercalibration_Stat211: 4.00734538e-06 syst_JES_EtaIntercalibration_Stat212: 0.0 syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 @@ -55215,37 +55215,37 @@ bins: syst_JES_EtaIntercalibration_Stat220: 0.0 syst_JES_EtaIntercalibration_Stat221: 0.0 syst_JES_EtaIntercalibration_Stat222: 0.0 - syst_JES_EtaIntercalibration_Stat223: 3.719579109254164e-42 + syst_JES_EtaIntercalibration_Stat223: 3.71957911e-42 syst_JES_EtaIntercalibration_Stat224: 0.0 syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 syst_JES_EtaIntercalibration_Stat227: 0.0 syst_JES_EtaIntercalibration_Stat228: 0.0 syst_JES_EtaIntercalibration_Stat229: 0.0 - syst_JES_EtaIntercalibration_Stat23: 0.008812578300786892 + syst_JES_EtaIntercalibration_Stat23: 8.81257830e-03 syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 syst_JES_EtaIntercalibration_Stat232: 0.0 syst_JES_EtaIntercalibration_Stat233: 0.0 syst_JES_EtaIntercalibration_Stat234: 0.0 - syst_JES_EtaIntercalibration_Stat235: 3.719579109254164e-42 + syst_JES_EtaIntercalibration_Stat235: 3.71957911e-42 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 syst_JES_EtaIntercalibration_Stat239: 0.0 - syst_JES_EtaIntercalibration_Stat24: 0.049839854842786205 + syst_JES_EtaIntercalibration_Stat24: 4.98398548e-02 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 syst_JES_EtaIntercalibration_Stat243: 0.0 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 - syst_JES_EtaIntercalibration_Stat25: 0.037000075675598286 - syst_JES_EtaIntercalibration_Stat26: 0.004845457291886907 + syst_JES_EtaIntercalibration_Stat25: 3.70000757e-02 + syst_JES_EtaIntercalibration_Stat26: 4.84545729e-03 syst_JES_EtaIntercalibration_Stat27: 0.0 syst_JES_EtaIntercalibration_Stat28: 0.0 syst_JES_EtaIntercalibration_Stat29: 0.0 - syst_JES_EtaIntercalibration_Stat3: 0.0059163200344470885 + syst_JES_EtaIntercalibration_Stat3: 5.91632003e-03 syst_JES_EtaIntercalibration_Stat30: 0.0 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 @@ -55254,19 +55254,19 @@ bins: syst_JES_EtaIntercalibration_Stat35: 0.0 syst_JES_EtaIntercalibration_Stat36: 0.0 syst_JES_EtaIntercalibration_Stat37: 0.0 - syst_JES_EtaIntercalibration_Stat38: 0.00019970545811269155 - syst_JES_EtaIntercalibration_Stat39: 0.007771914938256851 + syst_JES_EtaIntercalibration_Stat38: 1.99705458e-04 + syst_JES_EtaIntercalibration_Stat39: 7.77191494e-03 syst_JES_EtaIntercalibration_Stat4: 0.0 - syst_JES_EtaIntercalibration_Stat40: 0.012997602663568385 - syst_JES_EtaIntercalibration_Stat41: 0.018222857260868836 - syst_JES_EtaIntercalibration_Stat42: 0.000786697476797784 + syst_JES_EtaIntercalibration_Stat40: 1.29976027e-02 + syst_JES_EtaIntercalibration_Stat41: 1.82228573e-02 + syst_JES_EtaIntercalibration_Stat42: 7.86697477e-04 syst_JES_EtaIntercalibration_Stat43: 0.0 - syst_JES_EtaIntercalibration_Stat44: 0.008132844566939664 - syst_JES_EtaIntercalibration_Stat45: 0.024490718139736124 - syst_JES_EtaIntercalibration_Stat46: 0.11140697330059729 - syst_JES_EtaIntercalibration_Stat47: 0.12115992406732518 - syst_JES_EtaIntercalibration_Stat48: 0.04294068787292537 - syst_JES_EtaIntercalibration_Stat49: 0.0029133094583308513 + syst_JES_EtaIntercalibration_Stat44: 8.13284457e-03 + syst_JES_EtaIntercalibration_Stat45: 2.44907181e-02 + syst_JES_EtaIntercalibration_Stat46: 1.11406973e-01 + syst_JES_EtaIntercalibration_Stat47: 1.21159924e-01 + syst_JES_EtaIntercalibration_Stat48: 4.29406879e-02 + syst_JES_EtaIntercalibration_Stat49: 2.91330946e-03 syst_JES_EtaIntercalibration_Stat5: 0.0 syst_JES_EtaIntercalibration_Stat50: 0.0 syst_JES_EtaIntercalibration_Stat51: 0.0 @@ -55277,21 +55277,21 @@ bins: syst_JES_EtaIntercalibration_Stat56: 0.0 syst_JES_EtaIntercalibration_Stat57: 0.0 syst_JES_EtaIntercalibration_Stat58: 0.0 - syst_JES_EtaIntercalibration_Stat59: 0.00019970545811269155 + syst_JES_EtaIntercalibration_Stat59: 1.99705458e-04 syst_JES_EtaIntercalibration_Stat6: 0.0 - syst_JES_EtaIntercalibration_Stat60: 0.0004558193063045925 - syst_JES_EtaIntercalibration_Stat61: 0.023432281408347758 - syst_JES_EtaIntercalibration_Stat62: 0.07627151024465163 - syst_JES_EtaIntercalibration_Stat63: 0.013516413605317057 - syst_JES_EtaIntercalibration_Stat64: 0.005376872139078629 + syst_JES_EtaIntercalibration_Stat60: 4.55819306e-04 + syst_JES_EtaIntercalibration_Stat61: 2.34322814e-02 + syst_JES_EtaIntercalibration_Stat62: 7.62715102e-02 + syst_JES_EtaIntercalibration_Stat63: 1.35164136e-02 + syst_JES_EtaIntercalibration_Stat64: 5.37687214e-03 syst_JES_EtaIntercalibration_Stat65: 0.0 - syst_JES_EtaIntercalibration_Stat66: 0.008132844566939664 - syst_JES_EtaIntercalibration_Stat67: 0.042473633076886654 - syst_JES_EtaIntercalibration_Stat68: 0.5712747412585297 - syst_JES_EtaIntercalibration_Stat69: 1.1066554420866506 + syst_JES_EtaIntercalibration_Stat66: 8.13284457e-03 + syst_JES_EtaIntercalibration_Stat67: 4.24736331e-02 + syst_JES_EtaIntercalibration_Stat68: 5.71274741e-01 + syst_JES_EtaIntercalibration_Stat69: 1.10665544e+00 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 0.10969074835645894 - syst_JES_EtaIntercalibration_Stat71: 0.0020696839052135475 + syst_JES_EtaIntercalibration_Stat70: 1.09690748e-01 + syst_JES_EtaIntercalibration_Stat71: 2.06968391e-03 syst_JES_EtaIntercalibration_Stat72: 0.0 syst_JES_EtaIntercalibration_Stat73: 0.0 syst_JES_EtaIntercalibration_Stat74: 0.0 @@ -55302,19 +55302,19 @@ bins: syst_JES_EtaIntercalibration_Stat79: 0.0 syst_JES_EtaIntercalibration_Stat8: 0.0 syst_JES_EtaIntercalibration_Stat80: 0.0 - syst_JES_EtaIntercalibration_Stat81: 0.00019970545811269155 - syst_JES_EtaIntercalibration_Stat82: 0.0024924575884054676 - syst_JES_EtaIntercalibration_Stat83: 0.1596860569993511 - syst_JES_EtaIntercalibration_Stat84: 0.8725627599204541 - syst_JES_EtaIntercalibration_Stat85: 0.5719247065829557 - syst_JES_EtaIntercalibration_Stat86: 0.06117473069004881 + syst_JES_EtaIntercalibration_Stat81: 1.99705458e-04 + syst_JES_EtaIntercalibration_Stat82: 2.49245759e-03 + syst_JES_EtaIntercalibration_Stat83: 1.59686057e-01 + syst_JES_EtaIntercalibration_Stat84: 8.72562760e-01 + syst_JES_EtaIntercalibration_Stat85: 5.71924707e-01 + syst_JES_EtaIntercalibration_Stat86: 6.11747307e-02 syst_JES_EtaIntercalibration_Stat87: 0.0 - syst_JES_EtaIntercalibration_Stat88: 0.12403002378456597 - syst_JES_EtaIntercalibration_Stat89: 1.3423917870726114 + syst_JES_EtaIntercalibration_Stat88: 1.24030024e-01 + syst_JES_EtaIntercalibration_Stat89: 1.34239179e+00 syst_JES_EtaIntercalibration_Stat9: 0.0 - syst_JES_EtaIntercalibration_Stat90: 1.6996137061108918 - syst_JES_EtaIntercalibration_Stat91: 0.3108073840821675 - syst_JES_EtaIntercalibration_Stat92: 0.0010538613156744108 + syst_JES_EtaIntercalibration_Stat90: 1.69961371e+00 + syst_JES_EtaIntercalibration_Stat91: 3.10807384e-01 + syst_JES_EtaIntercalibration_Stat92: 1.05386132e-03 syst_JES_EtaIntercalibration_Stat93: 0.0 syst_JES_EtaIntercalibration_Stat94: 0.0 syst_JES_EtaIntercalibration_Stat95: 0.0 @@ -55322,159 +55322,159 @@ bins: syst_JES_EtaIntercalibration_Stat97: 0.0 syst_JES_EtaIntercalibration_Stat98: 0.0 syst_JES_EtaIntercalibration_Stat99: 0.0 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0036892682201217085 - syst_JES_Flavour_Comp: 3.863386209014056 - syst_JES_Gjet_Generator: 25.310142235870586 - syst_JES_Gjet_OOC: 14.187951464182557 - syst_JES_Gjet_Purity: 5.95250004199916 - syst_JES_Gjet_Stat1: 0.048491967035788515 - syst_JES_Gjet_Stat10: 0.1151821187294278 - syst_JES_Gjet_Stat11: 0.20305546040429445 - syst_JES_Gjet_Stat12: 0.022881535678358655 - syst_JES_Gjet_Stat13: 0.00036687781004034566 - syst_JES_Gjet_Stat14: 9.455688393765944e-06 - syst_JES_Gjet_Stat15: 3.586088160332231e-08 - syst_JES_Gjet_Stat2: 0.10426350464088573 - syst_JES_Gjet_Stat3: 0.1830201220494621 - syst_JES_Gjet_Stat4: 0.30891682942177173 - syst_JES_Gjet_Stat5: 0.38817399127195523 - syst_JES_Gjet_Stat6: 0.993570410187421 - syst_JES_Gjet_Stat7: 1.7004608875243208 - syst_JES_Gjet_Stat8: 1.0302497075952024 - syst_JES_Gjet_Stat9: 0.8011756158920466 - syst_JES_Gjet_Veto: 5.3590046650474195 - syst_JES_Gjet_dPhi: 2.687381067135809 - syst_JES_LArESZee: 17.95468462546753 - syst_JES_LArEsmear: 1.6987733074192095 - syst_JES_LAr_JVT: 2.9109352448998242 - syst_JES_MJB_Alpha: 0.0001401479085644877 - syst_JES_MJB_Asym: 0.0017550057179394033 - syst_JES_MJB_Beta: 8.508766949887627e-06 - syst_JES_MJB_Stat1: 0.00055117232105758 - syst_JES_MJB_Stat10: 3.719579109254164e-42 + syst_JES_EtaIntercalibration_TotalStat_MJB: 3.68926822e-03 + syst_JES_Flavour_Comp: 3.86338621e+00 + syst_JES_Gjet_Generator: 2.53101422e+01 + syst_JES_Gjet_OOC: 1.41879515e+01 + syst_JES_Gjet_Purity: 5.95250004e+00 + syst_JES_Gjet_Stat1: 4.84919670e-02 + syst_JES_Gjet_Stat10: 1.15182119e-01 + syst_JES_Gjet_Stat11: 2.03055460e-01 + syst_JES_Gjet_Stat12: 2.28815357e-02 + syst_JES_Gjet_Stat13: 3.66877810e-04 + syst_JES_Gjet_Stat14: 9.45568839e-06 + syst_JES_Gjet_Stat15: 3.58608816e-08 + syst_JES_Gjet_Stat2: 1.04263505e-01 + syst_JES_Gjet_Stat3: 1.83020122e-01 + syst_JES_Gjet_Stat4: 3.08916829e-01 + syst_JES_Gjet_Stat5: 3.88173991e-01 + syst_JES_Gjet_Stat6: 9.93570410e-01 + syst_JES_Gjet_Stat7: 1.70046089e+00 + syst_JES_Gjet_Stat8: 1.03024971e+00 + syst_JES_Gjet_Stat9: 8.01175616e-01 + syst_JES_Gjet_Veto: 5.35900467e+00 + syst_JES_Gjet_dPhi: 2.68738107e+00 + syst_JES_LArESZee: 1.79546846e+01 + syst_JES_LArEsmear: 1.69877331e+00 + syst_JES_LAr_JVT: 2.91093524e+00 + syst_JES_MJB_Alpha: 1.40147909e-04 + syst_JES_MJB_Asym: 1.75500572e-03 + syst_JES_MJB_Beta: 8.50876695e-06 + syst_JES_MJB_Stat1: 5.51172321e-04 + syst_JES_MJB_Stat10: 3.71957911e-42 syst_JES_MJB_Stat11: 0.0 syst_JES_MJB_Stat12: 0.0 syst_JES_MJB_Stat13: 0.0 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 0.00019208647067143643 - syst_JES_MJB_Stat3: 8.191127944306573e-06 - syst_JES_MJB_Stat4: 1.9390308790736638e-06 - syst_JES_MJB_Stat5: 6.172163025930681e-11 - syst_JES_MJB_Stat6: 5.041133875429217e-19 - syst_JES_MJB_Stat7: 1.3163586137523468e-33 - syst_JES_MJB_Stat8: 3.719579109254164e-42 - syst_JES_MJB_Stat9: 3.719579109254164e-42 - syst_JES_MJB_Threshold: 0.001817544004281602 - syst_JES_Pileup_MuOffset: 0.48888175776459486 - syst_JES_Pileup_NPVOffset: 1.7901650063611454 - syst_JES_Pileup_Pt_term: 15.195707313251333 - syst_JES_PunchThrough_MC15: 0.0206481209798858 + syst_JES_MJB_Stat2: 1.92086471e-04 + syst_JES_MJB_Stat3: 8.19112794e-06 + syst_JES_MJB_Stat4: 1.93903088e-06 + syst_JES_MJB_Stat5: 6.17216303e-11 + syst_JES_MJB_Stat6: 5.04113388e-19 + syst_JES_MJB_Stat7: 1.31635861e-33 + syst_JES_MJB_Stat8: 3.71957911e-42 + syst_JES_MJB_Stat9: 3.71957911e-42 + syst_JES_MJB_Threshold: 1.81754400e-03 + syst_JES_Pileup_MuOffset: 4.88881758e-01 + syst_JES_Pileup_NPVOffset: 1.79016501e+00 + syst_JES_Pileup_Pt_term: 1.51957073e+01 + syst_JES_PunchThrough_MC15: 2.06481210e-02 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 21.97519226309522 - syst_JES_Zjet_MuScale: 1.66062668893403 - syst_JES_Zjet_MuSmearID: 0.286948335942204 - syst_JES_Zjet_MuSmearMS: 1.202467641976282 - syst_JES_Zjet_OOC: 10.678643488290074 - syst_JES_Zjet_Stat1: 0.26953860576919214 - syst_JES_Zjet_Stat10: 2.8573359532963565 - syst_JES_Zjet_Stat11: 0.24530087647621648 - syst_JES_Zjet_Stat12: 0.36659273683476057 - syst_JES_Zjet_Stat13: 0.0036743334089328365 - syst_JES_Zjet_Stat2: 0.010405560760958537 - syst_JES_Zjet_Stat3: 0.12587641677454917 - syst_JES_Zjet_Stat4: 0.15094822915586048 - syst_JES_Zjet_Stat5: 0.22360765119959555 - syst_JES_Zjet_Stat6: 0.40827836092548425 - syst_JES_Zjet_Stat7: 0.6180868446262224 - syst_JES_Zjet_Stat8: 1.1995639405634033 - syst_JES_Zjet_Stat9: 2.60837511681123 - syst_JES_Zjet_Veto: 1.8700408417999859 - syst_JES_Zjet_dPhi: 2.4992971011866514 + syst_JES_Zjet_MC: 2.19751923e+01 + syst_JES_Zjet_MuScale: 1.66062669e+00 + syst_JES_Zjet_MuSmearID: 2.86948336e-01 + syst_JES_Zjet_MuSmearMS: 1.20246764e+00 + syst_JES_Zjet_OOC: 1.06786435e+01 + syst_JES_Zjet_Stat1: 2.69538606e-01 + syst_JES_Zjet_Stat10: 2.85733595e+00 + syst_JES_Zjet_Stat11: 2.45300876e-01 + syst_JES_Zjet_Stat12: 3.66592737e-01 + syst_JES_Zjet_Stat13: 3.67433341e-03 + syst_JES_Zjet_Stat2: 1.04055608e-02 + syst_JES_Zjet_Stat3: 1.25876417e-01 + syst_JES_Zjet_Stat4: 1.50948229e-01 + syst_JES_Zjet_Stat5: 2.23607651e-01 + syst_JES_Zjet_Stat6: 4.08278361e-01 + syst_JES_Zjet_Stat7: 6.18086845e-01 + syst_JES_Zjet_Stat8: 1.19956394e+00 + syst_JES_Zjet_Stat9: 2.60837512e+00 + syst_JES_Zjet_Veto: 1.87004084e+00 + syst_JES_Zjet_dPhi: 2.49929710e+00 syst_PRW: 0.0 syst_Unfolding_bias: 0.6173 - syst_cleaning: 6.45621938521299 + syst_cleaning: 6.45621939e+00 syst_lumi: 21.46 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 31.335230571993563 - syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.009805061040095568 - syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 7.637316478973489 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 13.660602942403383 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.005567977797189928 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 6.8310733417231 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 3.13352306e+01 + syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 9.80506104e-03 + syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 7.63731648e+00 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 1.36606029e+01 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 5.56797780e-03 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 6.83107334e+00 - stat: 4.929 syst_JER_CROSS_CALIB_FORWARD: 4.231 syst_JER_NOISE_FORWARD: 3.073 - syst_JER_NP0: 9.28393903469858 - syst_JER_NP1: 1.2214508545168732 - syst_JER_NP2: 1.281788472213727 - syst_JER_NP3: 2.343110912867763 - syst_JER_NP4: 0.3083965142474863 - syst_JER_NP5: 0.7605937992779064 - syst_JER_NP6: 0.6812430256523733 - syst_JER_NP7: 0.45758602196745474 - syst_JER_NP8: 0.5121620934821318 - syst_JES_EtaIntercalibration_Modelling: 18.93443688098487 - syst_JES_EtaIntercalibration_NonClosure: 12.990130137916246 + syst_JER_NP0: 9.28393903e+00 + syst_JER_NP1: 1.22145085e+00 + syst_JER_NP2: 1.28178847e+00 + syst_JER_NP3: 2.34311091e+00 + syst_JER_NP4: 3.08396514e-01 + syst_JER_NP5: 7.60593799e-01 + syst_JER_NP6: 6.81243026e-01 + syst_JER_NP7: 4.57586022e-01 + syst_JER_NP8: 5.12162093e-01 + syst_JES_EtaIntercalibration_Modelling: 1.89344369e+01 + syst_JES_EtaIntercalibration_NonClosure: 1.29901301e+01 syst_JES_EtaIntercalibration_Stat0: 0.0 - syst_JES_EtaIntercalibration_Stat1: 0.00010577634281823133 + syst_JES_EtaIntercalibration_Stat1: 1.05776343e-04 syst_JES_EtaIntercalibration_Stat10: 0.0 syst_JES_EtaIntercalibration_Stat100: 0.0 syst_JES_EtaIntercalibration_Stat101: 0.0 syst_JES_EtaIntercalibration_Stat102: 0.0 - syst_JES_EtaIntercalibration_Stat103: 0.00033063954194863026 - syst_JES_EtaIntercalibration_Stat104: 0.060748735789314987 - syst_JES_EtaIntercalibration_Stat105: 0.3755254851538042 - syst_JES_EtaIntercalibration_Stat106: 0.3687579795746798 - syst_JES_EtaIntercalibration_Stat107: 0.016362895923399377 - syst_JES_EtaIntercalibration_Stat108: 0.08076672202708242 - syst_JES_EtaIntercalibration_Stat109: 1.588181979497312 + syst_JES_EtaIntercalibration_Stat103: 3.30639542e-04 + syst_JES_EtaIntercalibration_Stat104: 6.07487358e-02 + syst_JES_EtaIntercalibration_Stat105: 3.75525485e-01 + syst_JES_EtaIntercalibration_Stat106: 3.68757980e-01 + syst_JES_EtaIntercalibration_Stat107: 1.63628959e-02 + syst_JES_EtaIntercalibration_Stat108: 8.07667220e-02 + syst_JES_EtaIntercalibration_Stat109: 1.58818198e+00 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 1.5195696331527557 - syst_JES_EtaIntercalibration_Stat111: 0.22467347417975272 - syst_JES_EtaIntercalibration_Stat112: 0.005900530145673352 + syst_JES_EtaIntercalibration_Stat110: 1.51956963e+00 + syst_JES_EtaIntercalibration_Stat111: 2.24673474e-01 + syst_JES_EtaIntercalibration_Stat112: 5.90053015e-03 syst_JES_EtaIntercalibration_Stat113: 0.0 syst_JES_EtaIntercalibration_Stat114: 0.0 syst_JES_EtaIntercalibration_Stat115: 0.0 syst_JES_EtaIntercalibration_Stat116: 0.0 syst_JES_EtaIntercalibration_Stat117: 0.0 - syst_JES_EtaIntercalibration_Stat118: 0.00013943009000929463 - syst_JES_EtaIntercalibration_Stat119: 0.00013943009000929463 + syst_JES_EtaIntercalibration_Stat118: 1.39430090e-04 + syst_JES_EtaIntercalibration_Stat119: 1.39430090e-04 syst_JES_EtaIntercalibration_Stat12: 0.0 syst_JES_EtaIntercalibration_Stat120: 0.0 syst_JES_EtaIntercalibration_Stat121: 0.0 syst_JES_EtaIntercalibration_Stat122: 0.0 - syst_JES_EtaIntercalibration_Stat123: 0.007944577521806934 - syst_JES_EtaIntercalibration_Stat124: 0.21258938708223418 - syst_JES_EtaIntercalibration_Stat125: 1.6140892168650403 - syst_JES_EtaIntercalibration_Stat126: 1.2093736674411262 - syst_JES_EtaIntercalibration_Stat127: 0.05594352576482823 - syst_JES_EtaIntercalibration_Stat128: 1.7335324484993064 - syst_JES_EtaIntercalibration_Stat129: 3.318244566031865 + syst_JES_EtaIntercalibration_Stat123: 7.94457752e-03 + syst_JES_EtaIntercalibration_Stat124: 2.12589387e-01 + syst_JES_EtaIntercalibration_Stat125: 1.61408922e+00 + syst_JES_EtaIntercalibration_Stat126: 1.20937367e+00 + syst_JES_EtaIntercalibration_Stat127: 5.59435258e-02 + syst_JES_EtaIntercalibration_Stat128: 1.73353245e+00 + syst_JES_EtaIntercalibration_Stat129: 3.31824457e+00 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 0.47990210199581335 - syst_JES_EtaIntercalibration_Stat131: 0.0075588147880471315 + syst_JES_EtaIntercalibration_Stat130: 4.79902102e-01 + syst_JES_EtaIntercalibration_Stat131: 7.55881479e-03 syst_JES_EtaIntercalibration_Stat132: 0.0 syst_JES_EtaIntercalibration_Stat133: 0.0 syst_JES_EtaIntercalibration_Stat134: 0.0 syst_JES_EtaIntercalibration_Stat135: 0.0 syst_JES_EtaIntercalibration_Stat136: 0.0 - syst_JES_EtaIntercalibration_Stat137: 0.00013943009000929463 - syst_JES_EtaIntercalibration_Stat138: 0.00013943009000929463 - syst_JES_EtaIntercalibration_Stat139: 0.000593140799051962 + syst_JES_EtaIntercalibration_Stat137: 1.39430090e-04 + syst_JES_EtaIntercalibration_Stat138: 1.39430090e-04 + syst_JES_EtaIntercalibration_Stat139: 5.93140799e-04 syst_JES_EtaIntercalibration_Stat14: 0.0 syst_JES_EtaIntercalibration_Stat140: 0.0 syst_JES_EtaIntercalibration_Stat141: 0.0 - syst_JES_EtaIntercalibration_Stat142: 0.01682834142154241 - syst_JES_EtaIntercalibration_Stat143: 0.23638391881640342 - syst_JES_EtaIntercalibration_Stat144: 3.3565167584863924 - syst_JES_EtaIntercalibration_Stat145: 1.4265194951349245 - syst_JES_EtaIntercalibration_Stat146: 0.07748276243784807 - syst_JES_EtaIntercalibration_Stat147: 0.06532772724502207 - syst_JES_EtaIntercalibration_Stat148: 0.01455104899998622 - syst_JES_EtaIntercalibration_Stat149: 0.0013016130491074582 + syst_JES_EtaIntercalibration_Stat142: 1.68283414e-02 + syst_JES_EtaIntercalibration_Stat143: 2.36383919e-01 + syst_JES_EtaIntercalibration_Stat144: 3.35651676e+00 + syst_JES_EtaIntercalibration_Stat145: 1.42651950e+00 + syst_JES_EtaIntercalibration_Stat146: 7.74827624e-02 + syst_JES_EtaIntercalibration_Stat147: 6.53277272e-02 + syst_JES_EtaIntercalibration_Stat148: 1.45510490e-02 + syst_JES_EtaIntercalibration_Stat149: 1.30161305e-03 syst_JES_EtaIntercalibration_Stat15: 0.0 syst_JES_EtaIntercalibration_Stat150: 0.0 syst_JES_EtaIntercalibration_Stat151: 0.0 @@ -55482,60 +55482,60 @@ bins: syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 0.00013943009000929463 - syst_JES_EtaIntercalibration_Stat157: 0.000593140799051962 + syst_JES_EtaIntercalibration_Stat156: 1.39430090e-04 + syst_JES_EtaIntercalibration_Stat157: 5.93140799e-04 syst_JES_EtaIntercalibration_Stat158: 0.0 syst_JES_EtaIntercalibration_Stat159: 0.0 - syst_JES_EtaIntercalibration_Stat16: 1.7918065604300035e-05 - syst_JES_EtaIntercalibration_Stat160: 0.004489851306001124 - syst_JES_EtaIntercalibration_Stat161: 0.023929899707269983 - syst_JES_EtaIntercalibration_Stat162: 0.009886014566042272 - syst_JES_EtaIntercalibration_Stat163: 0.03764127920249258 - syst_JES_EtaIntercalibration_Stat164: 0.08739866074488785 - syst_JES_EtaIntercalibration_Stat165: 0.07360379541844292 - syst_JES_EtaIntercalibration_Stat166: 0.01973411311175397 - syst_JES_EtaIntercalibration_Stat167: 6.939460783988943e-08 + syst_JES_EtaIntercalibration_Stat16: 1.79180656e-05 + syst_JES_EtaIntercalibration_Stat160: 4.48985131e-03 + syst_JES_EtaIntercalibration_Stat161: 2.39298997e-02 + syst_JES_EtaIntercalibration_Stat162: 9.88601457e-03 + syst_JES_EtaIntercalibration_Stat163: 3.76412792e-02 + syst_JES_EtaIntercalibration_Stat164: 8.73986607e-02 + syst_JES_EtaIntercalibration_Stat165: 7.36037954e-02 + syst_JES_EtaIntercalibration_Stat166: 1.97341131e-02 + syst_JES_EtaIntercalibration_Stat167: 6.93946078e-08 syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 - syst_JES_EtaIntercalibration_Stat17: 8.616008400065543e-05 + syst_JES_EtaIntercalibration_Stat17: 8.61600840e-05 syst_JES_EtaIntercalibration_Stat170: 0.0 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 - syst_JES_EtaIntercalibration_Stat174: 0.000593140799051962 - syst_JES_EtaIntercalibration_Stat175: 0.000593140799051962 + syst_JES_EtaIntercalibration_Stat174: 5.93140799e-04 + syst_JES_EtaIntercalibration_Stat175: 5.93140799e-04 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 - syst_JES_EtaIntercalibration_Stat178: 4.7477274226728734e-05 - syst_JES_EtaIntercalibration_Stat179: 0.020450606347979027 - syst_JES_EtaIntercalibration_Stat18: 0.001158668511697802 - syst_JES_EtaIntercalibration_Stat180: 0.10047366520636142 - syst_JES_EtaIntercalibration_Stat181: 0.08905284947715036 - syst_JES_EtaIntercalibration_Stat182: 0.008557784570202735 - syst_JES_EtaIntercalibration_Stat183: 0.0012628759134082612 - syst_JES_EtaIntercalibration_Stat184: 5.1268781500384716e-09 + syst_JES_EtaIntercalibration_Stat178: 4.74772742e-05 + syst_JES_EtaIntercalibration_Stat179: 2.04506063e-02 + syst_JES_EtaIntercalibration_Stat18: 1.15866851e-03 + syst_JES_EtaIntercalibration_Stat180: 1.00473665e-01 + syst_JES_EtaIntercalibration_Stat181: 8.90528495e-02 + syst_JES_EtaIntercalibration_Stat182: 8.55778457e-03 + syst_JES_EtaIntercalibration_Stat183: 1.26287591e-03 + syst_JES_EtaIntercalibration_Stat184: 5.12687815e-09 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 syst_JES_EtaIntercalibration_Stat187: 0.0 - syst_JES_EtaIntercalibration_Stat188: 2.4240051051926438e-05 + syst_JES_EtaIntercalibration_Stat188: 2.42400511e-05 syst_JES_EtaIntercalibration_Stat189: 0.0 - syst_JES_EtaIntercalibration_Stat19: 0.0004417240451628143 + syst_JES_EtaIntercalibration_Stat19: 4.41724045e-04 syst_JES_EtaIntercalibration_Stat190: 0.0 - syst_JES_EtaIntercalibration_Stat191: 0.000593140799051962 - syst_JES_EtaIntercalibration_Stat192: 0.000593140799051962 + syst_JES_EtaIntercalibration_Stat191: 5.93140799e-04 + syst_JES_EtaIntercalibration_Stat192: 5.93140799e-04 syst_JES_EtaIntercalibration_Stat193: 0.0 syst_JES_EtaIntercalibration_Stat194: 0.0 - syst_JES_EtaIntercalibration_Stat195: 3.1116293721861273e-06 - syst_JES_EtaIntercalibration_Stat196: 0.0016513344202492722 - syst_JES_EtaIntercalibration_Stat197: 0.009209723163591836 - syst_JES_EtaIntercalibration_Stat198: 6.1033899596863375e-05 - syst_JES_EtaIntercalibration_Stat199: 5.6897861269054235e-08 - syst_JES_EtaIntercalibration_Stat2: 0.0007017476095434882 + syst_JES_EtaIntercalibration_Stat195: 3.11162937e-06 + syst_JES_EtaIntercalibration_Stat196: 1.65133442e-03 + syst_JES_EtaIntercalibration_Stat197: 9.20972316e-03 + syst_JES_EtaIntercalibration_Stat198: 6.10338996e-05 + syst_JES_EtaIntercalibration_Stat199: 5.68978613e-08 + syst_JES_EtaIntercalibration_Stat2: 7.01747610e-04 syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 syst_JES_EtaIntercalibration_Stat201: 0.0 syst_JES_EtaIntercalibration_Stat202: 0.0 - syst_JES_EtaIntercalibration_Stat203: 2.4240051051926438e-05 + syst_JES_EtaIntercalibration_Stat203: 2.42400511e-05 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 @@ -55543,9 +55543,9 @@ bins: syst_JES_EtaIntercalibration_Stat208: 0.0 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 2.877802416781515e-13 - syst_JES_EtaIntercalibration_Stat211: 5.362948442787792e-05 - syst_JES_EtaIntercalibration_Stat212: 2.7080614376339394e-39 + syst_JES_EtaIntercalibration_Stat210: 2.87780242e-13 + syst_JES_EtaIntercalibration_Stat211: 5.36294844e-05 + syst_JES_EtaIntercalibration_Stat212: 2.70806144e-39 syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 syst_JES_EtaIntercalibration_Stat215: 0.0 @@ -55557,37 +55557,37 @@ bins: syst_JES_EtaIntercalibration_Stat220: 0.0 syst_JES_EtaIntercalibration_Stat221: 0.0 syst_JES_EtaIntercalibration_Stat222: 0.0 - syst_JES_EtaIntercalibration_Stat223: 9.719403106672755e-31 - syst_JES_EtaIntercalibration_Stat224: 2.7071954122301554e-39 + syst_JES_EtaIntercalibration_Stat223: 9.71940311e-31 + syst_JES_EtaIntercalibration_Stat224: 2.70719541e-39 syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 syst_JES_EtaIntercalibration_Stat227: 0.0 syst_JES_EtaIntercalibration_Stat228: 0.0 syst_JES_EtaIntercalibration_Stat229: 0.0 - syst_JES_EtaIntercalibration_Stat23: 0.0006945244272162067 + syst_JES_EtaIntercalibration_Stat23: 6.94524427e-04 syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 syst_JES_EtaIntercalibration_Stat232: 0.0 syst_JES_EtaIntercalibration_Stat233: 0.0 syst_JES_EtaIntercalibration_Stat234: 0.0 - syst_JES_EtaIntercalibration_Stat235: 9.857967171278266e-31 + syst_JES_EtaIntercalibration_Stat235: 9.85796717e-31 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 syst_JES_EtaIntercalibration_Stat239: 0.0 - syst_JES_EtaIntercalibration_Stat24: 0.004542215428620708 + syst_JES_EtaIntercalibration_Stat24: 4.54221543e-03 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 syst_JES_EtaIntercalibration_Stat243: 0.0 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 - syst_JES_EtaIntercalibration_Stat25: 0.0074324371507601735 - syst_JES_EtaIntercalibration_Stat26: 0.0027352479723052534 + syst_JES_EtaIntercalibration_Stat25: 7.43243715e-03 + syst_JES_EtaIntercalibration_Stat26: 2.73524797e-03 syst_JES_EtaIntercalibration_Stat27: 0.0 syst_JES_EtaIntercalibration_Stat28: 0.0 syst_JES_EtaIntercalibration_Stat29: 0.0 - syst_JES_EtaIntercalibration_Stat3: 0.0020670238194079914 + syst_JES_EtaIntercalibration_Stat3: 2.06702382e-03 syst_JES_EtaIntercalibration_Stat30: 0.0 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 @@ -55596,19 +55596,19 @@ bins: syst_JES_EtaIntercalibration_Stat35: 0.0 syst_JES_EtaIntercalibration_Stat36: 0.0 syst_JES_EtaIntercalibration_Stat37: 0.0 - syst_JES_EtaIntercalibration_Stat38: 1.7918065604300035e-05 - syst_JES_EtaIntercalibration_Stat39: 0.0016325846586012012 + syst_JES_EtaIntercalibration_Stat38: 1.79180656e-05 + syst_JES_EtaIntercalibration_Stat39: 1.63258466e-03 syst_JES_EtaIntercalibration_Stat4: 0.0 - syst_JES_EtaIntercalibration_Stat40: 0.007853141457404164 - syst_JES_EtaIntercalibration_Stat41: 0.005705446345379123 - syst_JES_EtaIntercalibration_Stat42: 0.00018134571955246144 + syst_JES_EtaIntercalibration_Stat40: 7.85314146e-03 + syst_JES_EtaIntercalibration_Stat41: 5.70544635e-03 + syst_JES_EtaIntercalibration_Stat42: 1.81345720e-04 syst_JES_EtaIntercalibration_Stat43: 0.0 - syst_JES_EtaIntercalibration_Stat44: 0.001076209769282922 - syst_JES_EtaIntercalibration_Stat45: 0.002650459146544236 - syst_JES_EtaIntercalibration_Stat46: 0.03378021166304321 - syst_JES_EtaIntercalibration_Stat47: 0.025469600448377667 - syst_JES_EtaIntercalibration_Stat48: 0.009297970531250354 - syst_JES_EtaIntercalibration_Stat49: 0.00047951826607544365 + syst_JES_EtaIntercalibration_Stat44: 1.07620977e-03 + syst_JES_EtaIntercalibration_Stat45: 2.65045915e-03 + syst_JES_EtaIntercalibration_Stat46: 3.37802117e-02 + syst_JES_EtaIntercalibration_Stat47: 2.54696004e-02 + syst_JES_EtaIntercalibration_Stat48: 9.29797053e-03 + syst_JES_EtaIntercalibration_Stat49: 4.79518266e-04 syst_JES_EtaIntercalibration_Stat5: 0.0 syst_JES_EtaIntercalibration_Stat50: 0.0 syst_JES_EtaIntercalibration_Stat51: 0.0 @@ -55619,21 +55619,21 @@ bins: syst_JES_EtaIntercalibration_Stat56: 0.0 syst_JES_EtaIntercalibration_Stat57: 0.0 syst_JES_EtaIntercalibration_Stat58: 0.0 - syst_JES_EtaIntercalibration_Stat59: 1.7918065604300035e-05 + syst_JES_EtaIntercalibration_Stat59: 1.79180656e-05 syst_JES_EtaIntercalibration_Stat6: 0.0 - syst_JES_EtaIntercalibration_Stat60: 6.237561542782563e-05 - syst_JES_EtaIntercalibration_Stat61: 0.008295369431194731 - syst_JES_EtaIntercalibration_Stat62: 0.014982805503309451 - syst_JES_EtaIntercalibration_Stat63: 0.021754090994569278 - syst_JES_EtaIntercalibration_Stat64: 0.0010332894790425382 + syst_JES_EtaIntercalibration_Stat60: 6.23756154e-05 + syst_JES_EtaIntercalibration_Stat61: 8.29536943e-03 + syst_JES_EtaIntercalibration_Stat62: 1.49828055e-02 + syst_JES_EtaIntercalibration_Stat63: 2.17540910e-02 + syst_JES_EtaIntercalibration_Stat64: 1.03328948e-03 syst_JES_EtaIntercalibration_Stat65: 0.0 - syst_JES_EtaIntercalibration_Stat66: 0.001076209769282922 - syst_JES_EtaIntercalibration_Stat67: 0.005576031653425221 - syst_JES_EtaIntercalibration_Stat68: 0.09447611444169367 - syst_JES_EtaIntercalibration_Stat69: 0.20778623631030038 + syst_JES_EtaIntercalibration_Stat66: 1.07620977e-03 + syst_JES_EtaIntercalibration_Stat67: 5.57603165e-03 + syst_JES_EtaIntercalibration_Stat68: 9.44761144e-02 + syst_JES_EtaIntercalibration_Stat69: 2.07786236e-01 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 0.006495822715407187 - syst_JES_EtaIntercalibration_Stat71: 0.0018389225561453097 + syst_JES_EtaIntercalibration_Stat70: 6.49582272e-03 + syst_JES_EtaIntercalibration_Stat71: 1.83892256e-03 syst_JES_EtaIntercalibration_Stat72: 0.0 syst_JES_EtaIntercalibration_Stat73: 0.0 syst_JES_EtaIntercalibration_Stat74: 0.0 @@ -55644,19 +55644,19 @@ bins: syst_JES_EtaIntercalibration_Stat79: 0.0 syst_JES_EtaIntercalibration_Stat8: 0.0 syst_JES_EtaIntercalibration_Stat80: 0.0 - syst_JES_EtaIntercalibration_Stat81: 1.7918065604300035e-05 - syst_JES_EtaIntercalibration_Stat82: 0.00044364317587448584 - syst_JES_EtaIntercalibration_Stat83: 0.012090953960192719 - syst_JES_EtaIntercalibration_Stat84: 0.11262374927163454 - syst_JES_EtaIntercalibration_Stat85: 0.07313790040054471 - syst_JES_EtaIntercalibration_Stat86: 0.011844787863022283 + syst_JES_EtaIntercalibration_Stat81: 1.79180656e-05 + syst_JES_EtaIntercalibration_Stat82: 4.43643176e-04 + syst_JES_EtaIntercalibration_Stat83: 1.20909540e-02 + syst_JES_EtaIntercalibration_Stat84: 1.12623749e-01 + syst_JES_EtaIntercalibration_Stat85: 7.31379004e-02 + syst_JES_EtaIntercalibration_Stat86: 1.18447879e-02 syst_JES_EtaIntercalibration_Stat87: 0.0 - syst_JES_EtaIntercalibration_Stat88: 0.04126480928063887 - syst_JES_EtaIntercalibration_Stat89: 0.3553950477989247 + syst_JES_EtaIntercalibration_Stat88: 4.12648093e-02 + syst_JES_EtaIntercalibration_Stat89: 3.55395048e-01 syst_JES_EtaIntercalibration_Stat9: 0.0 - syst_JES_EtaIntercalibration_Stat90: 0.43139159414620026 - syst_JES_EtaIntercalibration_Stat91: 0.06173566615012751 - syst_JES_EtaIntercalibration_Stat92: 0.002013012411163925 + syst_JES_EtaIntercalibration_Stat90: 4.31391594e-01 + syst_JES_EtaIntercalibration_Stat91: 6.17356662e-02 + syst_JES_EtaIntercalibration_Stat92: 2.01301241e-03 syst_JES_EtaIntercalibration_Stat93: 0.0 syst_JES_EtaIntercalibration_Stat94: 0.0 syst_JES_EtaIntercalibration_Stat95: 0.0 @@ -55664,159 +55664,159 @@ bins: syst_JES_EtaIntercalibration_Stat97: 0.0 syst_JES_EtaIntercalibration_Stat98: 0.0 syst_JES_EtaIntercalibration_Stat99: 0.0 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.02087987248524331 - syst_JES_Flavour_Comp: 1.3648402177544445 - syst_JES_Gjet_Generator: 12.086257516286834 - syst_JES_Gjet_OOC: 6.706717229763009 - syst_JES_Gjet_Purity: 2.599018853336774 - syst_JES_Gjet_Stat1: 0.01672249699259952 - syst_JES_Gjet_Stat10: 0.23071273111815915 - syst_JES_Gjet_Stat11: 0.09582349659660724 - syst_JES_Gjet_Stat12: 0.055124666536406366 - syst_JES_Gjet_Stat13: 0.004387120970237771 - syst_JES_Gjet_Stat14: 0.00012334435171502584 - syst_JES_Gjet_Stat15: 3.0709306719095763e-06 - syst_JES_Gjet_Stat2: 0.04310246019660595 - syst_JES_Gjet_Stat3: 0.03734184017961622 - syst_JES_Gjet_Stat4: 0.07413349091335171 - syst_JES_Gjet_Stat5: 0.09663449733402664 - syst_JES_Gjet_Stat6: 0.2835667646251937 - syst_JES_Gjet_Stat7: 0.5092991096349964 - syst_JES_Gjet_Stat8: 0.38264007850067144 - syst_JES_Gjet_Stat9: 0.5500752016770071 - syst_JES_Gjet_Veto: 2.626040936466909 - syst_JES_Gjet_dPhi: 1.0698240825014176 - syst_JES_LArESZee: 9.528918131141646 - syst_JES_LArEsmear: 0.79764876198738 - syst_JES_LAr_JVT: 1.313000589299182 - syst_JES_MJB_Alpha: 0.0017075997774654344 - syst_JES_MJB_Asym: 0.007750655262621348 - syst_JES_MJB_Beta: 0.00011884817920355365 - syst_JES_MJB_Stat1: 0.00039802012511932106 - syst_JES_MJB_Stat10: 8.561527141812961e-31 - syst_JES_MJB_Stat11: 3.019830582996337e-39 + syst_JES_EtaIntercalibration_TotalStat_MJB: 2.08798725e-02 + syst_JES_Flavour_Comp: 1.36484022e+00 + syst_JES_Gjet_Generator: 1.20862575e+01 + syst_JES_Gjet_OOC: 6.70671723e+00 + syst_JES_Gjet_Purity: 2.59901885e+00 + syst_JES_Gjet_Stat1: 1.67224970e-02 + syst_JES_Gjet_Stat10: 2.30712731e-01 + syst_JES_Gjet_Stat11: 9.58234966e-02 + syst_JES_Gjet_Stat12: 5.51246665e-02 + syst_JES_Gjet_Stat13: 4.38712097e-03 + syst_JES_Gjet_Stat14: 1.23344352e-04 + syst_JES_Gjet_Stat15: 3.07093067e-06 + syst_JES_Gjet_Stat2: 4.31024602e-02 + syst_JES_Gjet_Stat3: 3.73418402e-02 + syst_JES_Gjet_Stat4: 7.41334909e-02 + syst_JES_Gjet_Stat5: 9.66344973e-02 + syst_JES_Gjet_Stat6: 2.83566765e-01 + syst_JES_Gjet_Stat7: 5.09299110e-01 + syst_JES_Gjet_Stat8: 3.82640079e-01 + syst_JES_Gjet_Stat9: 5.50075202e-01 + syst_JES_Gjet_Veto: 2.62604094e+00 + syst_JES_Gjet_dPhi: 1.06982408e+00 + syst_JES_LArESZee: 9.52891813e+00 + syst_JES_LArEsmear: 7.97648762e-01 + syst_JES_LAr_JVT: 1.31300059e+00 + syst_JES_MJB_Alpha: 1.70759978e-03 + syst_JES_MJB_Asym: 7.75065526e-03 + syst_JES_MJB_Beta: 1.18848179e-04 + syst_JES_MJB_Stat1: 3.98020125e-04 + syst_JES_MJB_Stat10: 8.56152714e-31 + syst_JES_MJB_Stat11: 3.01983058e-39 syst_JES_MJB_Stat12: 0.0 syst_JES_MJB_Stat13: 0.0 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 0.0011198946239672509 - syst_JES_MJB_Stat3: 9.630332964129538e-05 - syst_JES_MJB_Stat4: 2.58162173973536e-05 - syst_JES_MJB_Stat5: 5.4585484148643156e-08 - syst_JES_MJB_Stat6: 1.822983474966243e-13 - syst_JES_MJB_Stat7: 1.800466814467848e-24 - syst_JES_MJB_Stat8: 8.624746996289225e-31 - syst_JES_MJB_Stat9: 8.622148920077871e-31 - syst_JES_MJB_Threshold: 0.00794957244133293 - syst_JES_Pileup_MuOffset: 0.1343019921669072 - syst_JES_Pileup_NPVOffset: 0.8510487809168167 - syst_JES_Pileup_Pt_term: 7.098480594465269 - syst_JES_PunchThrough_MC15: 0.01506350805755419 + syst_JES_MJB_Stat2: 1.11989462e-03 + syst_JES_MJB_Stat3: 9.63033296e-05 + syst_JES_MJB_Stat4: 2.58162174e-05 + syst_JES_MJB_Stat5: 5.45854841e-08 + syst_JES_MJB_Stat6: 1.82298347e-13 + syst_JES_MJB_Stat7: 1.80046681e-24 + syst_JES_MJB_Stat8: 8.62474700e-31 + syst_JES_MJB_Stat9: 8.62214892e-31 + syst_JES_MJB_Threshold: 7.94957244e-03 + syst_JES_Pileup_MuOffset: 1.34301992e-01 + syst_JES_Pileup_NPVOffset: 8.51048781e-01 + syst_JES_Pileup_Pt_term: 7.09848059e+00 + syst_JES_PunchThrough_MC15: 1.50635081e-02 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 10.438015663908537 - syst_JES_Zjet_MuScale: 0.6887860843542065 - syst_JES_Zjet_MuSmearID: 0.11027544728995663 - syst_JES_Zjet_MuSmearMS: 0.7428341806890687 - syst_JES_Zjet_OOC: 4.402610134908609 - syst_JES_Zjet_Stat1: 0.06767338176860974 - syst_JES_Zjet_Stat10: 1.5129051523476282 - syst_JES_Zjet_Stat11: 0.5719562745525221 - syst_JES_Zjet_Stat12: 0.16184175813120663 - syst_JES_Zjet_Stat13: 0.02393511437198494 - syst_JES_Zjet_Stat2: 0.002413059627837654 - syst_JES_Zjet_Stat3: 0.029520054200492248 - syst_JES_Zjet_Stat4: 0.04474866112959274 - syst_JES_Zjet_Stat5: 0.046835312265426386 - syst_JES_Zjet_Stat6: 0.10840977850267937 - syst_JES_Zjet_Stat7: 0.14981874273601417 - syst_JES_Zjet_Stat8: 0.327310812989733 - syst_JES_Zjet_Stat9: 0.9793750188257816 - syst_JES_Zjet_Veto: 0.7183500870049366 - syst_JES_Zjet_dPhi: 0.8877402928221745 + syst_JES_Zjet_MC: 1.04380157e+01 + syst_JES_Zjet_MuScale: 6.88786084e-01 + syst_JES_Zjet_MuSmearID: 1.10275447e-01 + syst_JES_Zjet_MuSmearMS: 7.42834181e-01 + syst_JES_Zjet_OOC: 4.40261013e+00 + syst_JES_Zjet_Stat1: 6.76733818e-02 + syst_JES_Zjet_Stat10: 1.51290515e+00 + syst_JES_Zjet_Stat11: 5.71956275e-01 + syst_JES_Zjet_Stat12: 1.61841758e-01 + syst_JES_Zjet_Stat13: 2.39351144e-02 + syst_JES_Zjet_Stat2: 2.41305963e-03 + syst_JES_Zjet_Stat3: 2.95200542e-02 + syst_JES_Zjet_Stat4: 4.47486611e-02 + syst_JES_Zjet_Stat5: 4.68353123e-02 + syst_JES_Zjet_Stat6: 1.08409779e-01 + syst_JES_Zjet_Stat7: 1.49818743e-01 + syst_JES_Zjet_Stat8: 3.27310813e-01 + syst_JES_Zjet_Stat9: 9.79375019e-01 + syst_JES_Zjet_Veto: 7.18350087e-01 + syst_JES_Zjet_dPhi: 8.87740293e-01 syst_PRW: 0.0 syst_Unfolding_bias: 0.9473 - syst_cleaning: 2.424871130596428 + syst_cleaning: 2.42487113e+00 syst_lumi: 10.416 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 13.741174403958345 - syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.01951889820148668 - syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 3.345378005547355 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 5.991011517264844 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.011317131913607793 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 3.026470551649231 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 1.37411744e+01 + syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.95188982e-02 + syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 3.34537801e+00 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 5.99101152e+00 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.13171319e-02 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 3.02647055e+00 - stat: 2.9267 syst_JER_CROSS_CALIB_FORWARD: 2.124 syst_JER_NOISE_FORWARD: 1.471 - syst_JER_NP0: 4.236225058941038 - syst_JER_NP1: 0.5001712306800542 - syst_JER_NP2: 0.6231046220338924 - syst_JER_NP3: 1.1506038708000248 - syst_JER_NP4: 0.2055004379557377 - syst_JER_NP5: 0.3205670405702994 - syst_JER_NP6: 0.31685009073692877 - syst_JER_NP7: 0.1578523677364391 - syst_JER_NP8: 0.20843077987667752 - syst_JES_EtaIntercalibration_Modelling: 10.207086496645356 - syst_JES_EtaIntercalibration_NonClosure: 7.506034638875577 + syst_JER_NP0: 4.23622506e+00 + syst_JER_NP1: 5.00171231e-01 + syst_JER_NP2: 6.23104622e-01 + syst_JER_NP3: 1.15060387e+00 + syst_JER_NP4: 2.05500438e-01 + syst_JER_NP5: 3.20567041e-01 + syst_JER_NP6: 3.16850091e-01 + syst_JER_NP7: 1.57852368e-01 + syst_JER_NP8: 2.08430780e-01 + syst_JES_EtaIntercalibration_Modelling: 1.02070865e+01 + syst_JES_EtaIntercalibration_NonClosure: 7.50603464e+00 syst_JES_EtaIntercalibration_Stat0: 0.0 - syst_JES_EtaIntercalibration_Stat1: 2.0957814771583412e-05 + syst_JES_EtaIntercalibration_Stat1: 2.09578148e-05 syst_JES_EtaIntercalibration_Stat10: 0.0 syst_JES_EtaIntercalibration_Stat100: 0.0 syst_JES_EtaIntercalibration_Stat101: 0.0 syst_JES_EtaIntercalibration_Stat102: 0.0 - syst_JES_EtaIntercalibration_Stat103: 8.23733749460346e-05 - syst_JES_EtaIntercalibration_Stat104: 0.00953028373134819 - syst_JES_EtaIntercalibration_Stat105: 0.08242647268930048 - syst_JES_EtaIntercalibration_Stat106: 0.08103834524470499 - syst_JES_EtaIntercalibration_Stat107: 0.00163592056882356 - syst_JES_EtaIntercalibration_Stat108: 0.026785399231670972 - syst_JES_EtaIntercalibration_Stat109: 0.5391135687403906 + syst_JES_EtaIntercalibration_Stat103: 8.23733749e-05 + syst_JES_EtaIntercalibration_Stat104: 9.53028373e-03 + syst_JES_EtaIntercalibration_Stat105: 8.24264727e-02 + syst_JES_EtaIntercalibration_Stat106: 8.10383452e-02 + syst_JES_EtaIntercalibration_Stat107: 1.63592057e-03 + syst_JES_EtaIntercalibration_Stat108: 2.67853992e-02 + syst_JES_EtaIntercalibration_Stat109: 5.39113569e-01 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 0.5478234820633376 - syst_JES_EtaIntercalibration_Stat111: 0.08094438630936675 - syst_JES_EtaIntercalibration_Stat112: 0.0013178505103007701 + syst_JES_EtaIntercalibration_Stat110: 5.47823482e-01 + syst_JES_EtaIntercalibration_Stat111: 8.09443863e-02 + syst_JES_EtaIntercalibration_Stat112: 1.31785051e-03 syst_JES_EtaIntercalibration_Stat113: 0.0 syst_JES_EtaIntercalibration_Stat114: 0.0 syst_JES_EtaIntercalibration_Stat115: 0.0 syst_JES_EtaIntercalibration_Stat116: 0.0 syst_JES_EtaIntercalibration_Stat117: 0.0 - syst_JES_EtaIntercalibration_Stat118: 3.151466444371572e-05 - syst_JES_EtaIntercalibration_Stat119: 3.151466444371572e-05 + syst_JES_EtaIntercalibration_Stat118: 3.15146644e-05 + syst_JES_EtaIntercalibration_Stat119: 3.15146644e-05 syst_JES_EtaIntercalibration_Stat12: 0.0 syst_JES_EtaIntercalibration_Stat120: 0.0 syst_JES_EtaIntercalibration_Stat121: 0.0 syst_JES_EtaIntercalibration_Stat122: 0.0 - syst_JES_EtaIntercalibration_Stat123: 0.003511383025248029 - syst_JES_EtaIntercalibration_Stat124: 0.07138406877588303 - syst_JES_EtaIntercalibration_Stat125: 0.5591417351620249 - syst_JES_EtaIntercalibration_Stat126: 0.46083242073447916 - syst_JES_EtaIntercalibration_Stat127: 0.010183690228988703 - syst_JES_EtaIntercalibration_Stat128: 1.0478287741802095 - syst_JES_EtaIntercalibration_Stat129: 2.2829754159867774 + syst_JES_EtaIntercalibration_Stat123: 3.51138303e-03 + syst_JES_EtaIntercalibration_Stat124: 7.13840688e-02 + syst_JES_EtaIntercalibration_Stat125: 5.59141735e-01 + syst_JES_EtaIntercalibration_Stat126: 4.60832421e-01 + syst_JES_EtaIntercalibration_Stat127: 1.01836902e-02 + syst_JES_EtaIntercalibration_Stat128: 1.04782877e+00 + syst_JES_EtaIntercalibration_Stat129: 2.28297542e+00 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 0.30470667862716766 - syst_JES_EtaIntercalibration_Stat131: 0.003390930956241958 + syst_JES_EtaIntercalibration_Stat130: 3.04706679e-01 + syst_JES_EtaIntercalibration_Stat131: 3.39093096e-03 syst_JES_EtaIntercalibration_Stat132: 0.0 syst_JES_EtaIntercalibration_Stat133: 0.0 syst_JES_EtaIntercalibration_Stat134: 0.0 syst_JES_EtaIntercalibration_Stat135: 0.0 syst_JES_EtaIntercalibration_Stat136: 0.0 - syst_JES_EtaIntercalibration_Stat137: 3.151466444371572e-05 - syst_JES_EtaIntercalibration_Stat138: 3.151466444371572e-05 - syst_JES_EtaIntercalibration_Stat139: 0.00022559961768584626 + syst_JES_EtaIntercalibration_Stat137: 3.15146644e-05 + syst_JES_EtaIntercalibration_Stat138: 3.15146644e-05 + syst_JES_EtaIntercalibration_Stat139: 2.25599618e-04 syst_JES_EtaIntercalibration_Stat14: 0.0 syst_JES_EtaIntercalibration_Stat140: 0.0 syst_JES_EtaIntercalibration_Stat141: 0.0 - syst_JES_EtaIntercalibration_Stat142: 0.008466132529083159 - syst_JES_EtaIntercalibration_Stat143: 0.15835015337851746 - syst_JES_EtaIntercalibration_Stat144: 2.2480665025750466 - syst_JES_EtaIntercalibration_Stat145: 0.9649153369596735 - syst_JES_EtaIntercalibration_Stat146: 0.23523253920323184 - syst_JES_EtaIntercalibration_Stat147: 0.21851688149889015 - syst_JES_EtaIntercalibration_Stat148: 0.035253685594558756 - syst_JES_EtaIntercalibration_Stat149: 0.0009784722277239144 + syst_JES_EtaIntercalibration_Stat142: 8.46613253e-03 + syst_JES_EtaIntercalibration_Stat143: 1.58350153e-01 + syst_JES_EtaIntercalibration_Stat144: 2.24806650e+00 + syst_JES_EtaIntercalibration_Stat145: 9.64915337e-01 + syst_JES_EtaIntercalibration_Stat146: 2.35232539e-01 + syst_JES_EtaIntercalibration_Stat147: 2.18516881e-01 + syst_JES_EtaIntercalibration_Stat148: 3.52536856e-02 + syst_JES_EtaIntercalibration_Stat149: 9.78472228e-04 syst_JES_EtaIntercalibration_Stat15: 0.0 syst_JES_EtaIntercalibration_Stat150: 0.0 syst_JES_EtaIntercalibration_Stat151: 0.0 @@ -55824,60 +55824,60 @@ bins: syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 3.151466444371572e-05 - syst_JES_EtaIntercalibration_Stat157: 0.00022559961768584626 + syst_JES_EtaIntercalibration_Stat156: 3.15146644e-05 + syst_JES_EtaIntercalibration_Stat157: 2.25599618e-04 syst_JES_EtaIntercalibration_Stat158: 0.0 syst_JES_EtaIntercalibration_Stat159: 0.0 - syst_JES_EtaIntercalibration_Stat16: 1.223520690466655e-06 - syst_JES_EtaIntercalibration_Stat160: 0.0019917102117275993 - syst_JES_EtaIntercalibration_Stat161: 0.022954785710173814 - syst_JES_EtaIntercalibration_Stat162: 0.2741914659503465 - syst_JES_EtaIntercalibration_Stat163: 0.27062438914480713 - syst_JES_EtaIntercalibration_Stat164: 0.06945140801308494 - syst_JES_EtaIntercalibration_Stat165: 0.07095665930693186 - syst_JES_EtaIntercalibration_Stat166: 0.022407548478805085 - syst_JES_EtaIntercalibration_Stat167: 4.595077014820401e-06 + syst_JES_EtaIntercalibration_Stat16: 1.22352069e-06 + syst_JES_EtaIntercalibration_Stat160: 1.99171021e-03 + syst_JES_EtaIntercalibration_Stat161: 2.29547857e-02 + syst_JES_EtaIntercalibration_Stat162: 2.74191466e-01 + syst_JES_EtaIntercalibration_Stat163: 2.70624389e-01 + syst_JES_EtaIntercalibration_Stat164: 6.94514080e-02 + syst_JES_EtaIntercalibration_Stat165: 7.09566593e-02 + syst_JES_EtaIntercalibration_Stat166: 2.24075485e-02 + syst_JES_EtaIntercalibration_Stat167: 4.59507701e-06 syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 - syst_JES_EtaIntercalibration_Stat17: 7.327262585713712e-06 + syst_JES_EtaIntercalibration_Stat17: 7.32726259e-06 syst_JES_EtaIntercalibration_Stat170: 0.0 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 - syst_JES_EtaIntercalibration_Stat174: 0.00022559961768584626 - syst_JES_EtaIntercalibration_Stat175: 0.00022559961768584626 + syst_JES_EtaIntercalibration_Stat174: 2.25599618e-04 + syst_JES_EtaIntercalibration_Stat175: 2.25599618e-04 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 - syst_JES_EtaIntercalibration_Stat178: 7.870060863805311e-05 - syst_JES_EtaIntercalibration_Stat179: 0.008193017514933067 - syst_JES_EtaIntercalibration_Stat18: 0.0001873931874428737 - syst_JES_EtaIntercalibration_Stat180: 0.08914954234318873 - syst_JES_EtaIntercalibration_Stat181: 0.07198904430536635 - syst_JES_EtaIntercalibration_Stat182: 0.02793860411688458 - syst_JES_EtaIntercalibration_Stat183: 0.002899109518455624 - syst_JES_EtaIntercalibration_Stat184: 2.732363904479568e-06 + syst_JES_EtaIntercalibration_Stat178: 7.87006086e-05 + syst_JES_EtaIntercalibration_Stat179: 8.19301751e-03 + syst_JES_EtaIntercalibration_Stat18: 1.87393187e-04 + syst_JES_EtaIntercalibration_Stat180: 8.91495423e-02 + syst_JES_EtaIntercalibration_Stat181: 7.19890443e-02 + syst_JES_EtaIntercalibration_Stat182: 2.79386041e-02 + syst_JES_EtaIntercalibration_Stat183: 2.89910952e-03 + syst_JES_EtaIntercalibration_Stat184: 2.73236390e-06 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 syst_JES_EtaIntercalibration_Stat187: 0.0 - syst_JES_EtaIntercalibration_Stat188: 3.610459908377325e-05 + syst_JES_EtaIntercalibration_Stat188: 3.61045991e-05 syst_JES_EtaIntercalibration_Stat189: 0.0 - syst_JES_EtaIntercalibration_Stat19: 8.754934706781085e-05 + syst_JES_EtaIntercalibration_Stat19: 8.75493471e-05 syst_JES_EtaIntercalibration_Stat190: 0.0 - syst_JES_EtaIntercalibration_Stat191: 0.00022559961768584626 - syst_JES_EtaIntercalibration_Stat192: 0.00022559961768584626 + syst_JES_EtaIntercalibration_Stat191: 2.25599618e-04 + syst_JES_EtaIntercalibration_Stat192: 2.25599618e-04 syst_JES_EtaIntercalibration_Stat193: 0.0 syst_JES_EtaIntercalibration_Stat194: 0.0 - syst_JES_EtaIntercalibration_Stat195: 2.1625323275534326e-05 - syst_JES_EtaIntercalibration_Stat196: 0.006531117419706983 - syst_JES_EtaIntercalibration_Stat197: 0.023062002227690465 - syst_JES_EtaIntercalibration_Stat198: 0.0001192315340000287 - syst_JES_EtaIntercalibration_Stat199: 3.7671567582200276e-06 - syst_JES_EtaIntercalibration_Stat2: 0.00016692298845575465 + syst_JES_EtaIntercalibration_Stat195: 2.16253233e-05 + syst_JES_EtaIntercalibration_Stat196: 6.53111742e-03 + syst_JES_EtaIntercalibration_Stat197: 2.30620022e-02 + syst_JES_EtaIntercalibration_Stat198: 1.19231534e-04 + syst_JES_EtaIntercalibration_Stat199: 3.76715676e-06 + syst_JES_EtaIntercalibration_Stat2: 1.66922988e-04 syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 syst_JES_EtaIntercalibration_Stat201: 0.0 syst_JES_EtaIntercalibration_Stat202: 0.0 - syst_JES_EtaIntercalibration_Stat203: 3.610459908377325e-05 + syst_JES_EtaIntercalibration_Stat203: 3.61045991e-05 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 @@ -55885,9 +55885,9 @@ bins: syst_JES_EtaIntercalibration_Stat208: 0.0 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 1.9970545836984337e-09 - syst_JES_EtaIntercalibration_Stat211: 8.646476912592781e-05 - syst_JES_EtaIntercalibration_Stat212: 8.896678973077539e-29 + syst_JES_EtaIntercalibration_Stat210: 1.99705458e-09 + syst_JES_EtaIntercalibration_Stat211: 8.64647691e-05 + syst_JES_EtaIntercalibration_Stat212: 8.89667897e-29 syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 syst_JES_EtaIntercalibration_Stat215: 0.0 @@ -55899,37 +55899,37 @@ bins: syst_JES_EtaIntercalibration_Stat220: 0.0 syst_JES_EtaIntercalibration_Stat221: 0.0 syst_JES_EtaIntercalibration_Stat222: 0.0 - syst_JES_EtaIntercalibration_Stat223: 2.584219804892765e-22 - syst_JES_EtaIntercalibration_Stat224: 8.89494692226997e-29 + syst_JES_EtaIntercalibration_Stat223: 2.58421980e-22 + syst_JES_EtaIntercalibration_Stat224: 8.89494692e-29 syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 syst_JES_EtaIntercalibration_Stat227: 0.0 syst_JES_EtaIntercalibration_Stat228: 0.0 syst_JES_EtaIntercalibration_Stat229: 0.0 - syst_JES_EtaIntercalibration_Stat23: 0.00012773461971994906 + syst_JES_EtaIntercalibration_Stat23: 1.27734620e-04 syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 syst_JES_EtaIntercalibration_Stat232: 0.0 syst_JES_EtaIntercalibration_Stat233: 0.0 syst_JES_EtaIntercalibration_Stat234: 0.0 - syst_JES_EtaIntercalibration_Stat235: 2.6205928718517116e-22 + syst_JES_EtaIntercalibration_Stat235: 2.62059287e-22 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 syst_JES_EtaIntercalibration_Stat239: 0.0 - syst_JES_EtaIntercalibration_Stat24: 0.0017045791291400937 + syst_JES_EtaIntercalibration_Stat24: 1.70457913e-03 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 syst_JES_EtaIntercalibration_Stat243: 0.0 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 - syst_JES_EtaIntercalibration_Stat25: 0.0023199909482582042 - syst_JES_EtaIntercalibration_Stat26: 0.0006049534258932666 + syst_JES_EtaIntercalibration_Stat25: 2.31999095e-03 + syst_JES_EtaIntercalibration_Stat26: 6.04953426e-04 syst_JES_EtaIntercalibration_Stat27: 0.0 syst_JES_EtaIntercalibration_Stat28: 0.0 syst_JES_EtaIntercalibration_Stat29: 0.0 - syst_JES_EtaIntercalibration_Stat3: 0.00046522868301513825 + syst_JES_EtaIntercalibration_Stat3: 4.65228683e-04 syst_JES_EtaIntercalibration_Stat30: 0.0 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 @@ -55938,19 +55938,19 @@ bins: syst_JES_EtaIntercalibration_Stat35: 0.0 syst_JES_EtaIntercalibration_Stat36: 0.0 syst_JES_EtaIntercalibration_Stat37: 0.0 - syst_JES_EtaIntercalibration_Stat38: 1.223520690466655e-06 - syst_JES_EtaIntercalibration_Stat39: 0.0002708259034878311 + syst_JES_EtaIntercalibration_Stat38: 1.22352069e-06 + syst_JES_EtaIntercalibration_Stat39: 2.70825903e-04 syst_JES_EtaIntercalibration_Stat4: 0.0 - syst_JES_EtaIntercalibration_Stat40: 0.0030817911593746905 - syst_JES_EtaIntercalibration_Stat41: 0.0018374185716651498 - syst_JES_EtaIntercalibration_Stat42: 2.5660332714132915e-05 + syst_JES_EtaIntercalibration_Stat40: 3.08179116e-03 + syst_JES_EtaIntercalibration_Stat41: 1.83741857e-03 + syst_JES_EtaIntercalibration_Stat42: 2.56603327e-05 syst_JES_EtaIntercalibration_Stat43: 0.0 - syst_JES_EtaIntercalibration_Stat44: 9.770498605496037e-05 - syst_JES_EtaIntercalibration_Stat45: 0.0005869411789097781 - syst_JES_EtaIntercalibration_Stat46: 0.007162566631452723 - syst_JES_EtaIntercalibration_Stat47: 0.006024590172783539 - syst_JES_EtaIntercalibration_Stat48: 0.0018140996885507696 - syst_JES_EtaIntercalibration_Stat49: 5.394472240173268e-05 + syst_JES_EtaIntercalibration_Stat44: 9.77049861e-05 + syst_JES_EtaIntercalibration_Stat45: 5.86941179e-04 + syst_JES_EtaIntercalibration_Stat46: 7.16256663e-03 + syst_JES_EtaIntercalibration_Stat47: 6.02459017e-03 + syst_JES_EtaIntercalibration_Stat48: 1.81409969e-03 + syst_JES_EtaIntercalibration_Stat49: 5.39447224e-05 syst_JES_EtaIntercalibration_Stat5: 0.0 syst_JES_EtaIntercalibration_Stat50: 0.0 syst_JES_EtaIntercalibration_Stat51: 0.0 @@ -55961,21 +55961,21 @@ bins: syst_JES_EtaIntercalibration_Stat56: 0.0 syst_JES_EtaIntercalibration_Stat57: 0.0 syst_JES_EtaIntercalibration_Stat58: 0.0 - syst_JES_EtaIntercalibration_Stat59: 1.223520690466655e-06 + syst_JES_EtaIntercalibration_Stat59: 1.22352069e-06 syst_JES_EtaIntercalibration_Stat6: 0.0 - syst_JES_EtaIntercalibration_Stat60: 5.8089959227047145e-06 - syst_JES_EtaIntercalibration_Stat61: 0.0021132574381745356 - syst_JES_EtaIntercalibration_Stat62: 0.007725894317164842 - syst_JES_EtaIntercalibration_Stat63: 0.008111488442326722 - syst_JES_EtaIntercalibration_Stat64: 0.00016802420026591406 + syst_JES_EtaIntercalibration_Stat60: 5.80899592e-06 + syst_JES_EtaIntercalibration_Stat61: 2.11325744e-03 + syst_JES_EtaIntercalibration_Stat62: 7.72589432e-03 + syst_JES_EtaIntercalibration_Stat63: 8.11148844e-03 + syst_JES_EtaIntercalibration_Stat64: 1.68024200e-04 syst_JES_EtaIntercalibration_Stat65: 0.0 - syst_JES_EtaIntercalibration_Stat66: 9.770498605496037e-05 - syst_JES_EtaIntercalibration_Stat67: 0.00271596773728997 - syst_JES_EtaIntercalibration_Stat68: 0.012832392489321701 - syst_JES_EtaIntercalibration_Stat69: 0.021010073774263623 + syst_JES_EtaIntercalibration_Stat66: 9.77049861e-05 + syst_JES_EtaIntercalibration_Stat67: 2.71596774e-03 + syst_JES_EtaIntercalibration_Stat68: 1.28323925e-02 + syst_JES_EtaIntercalibration_Stat69: 2.10100738e-02 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 0.00238663947842987 - syst_JES_EtaIntercalibration_Stat71: 0.00046572630621428295 + syst_JES_EtaIntercalibration_Stat70: 2.38663948e-03 + syst_JES_EtaIntercalibration_Stat71: 4.65726306e-04 syst_JES_EtaIntercalibration_Stat72: 0.0 syst_JES_EtaIntercalibration_Stat73: 0.0 syst_JES_EtaIntercalibration_Stat74: 0.0 @@ -55986,19 +55986,19 @@ bins: syst_JES_EtaIntercalibration_Stat79: 0.0 syst_JES_EtaIntercalibration_Stat8: 0.0 syst_JES_EtaIntercalibration_Stat80: 0.0 - syst_JES_EtaIntercalibration_Stat81: 1.223520690466655e-06 - syst_JES_EtaIntercalibration_Stat82: 7.96011725730218e-05 - syst_JES_EtaIntercalibration_Stat83: 0.004275617850089037 - syst_JES_EtaIntercalibration_Stat84: 0.0022403834388782648 - syst_JES_EtaIntercalibration_Stat85: 0.011336983990462365 - syst_JES_EtaIntercalibration_Stat86: 0.00148023441386829 + syst_JES_EtaIntercalibration_Stat81: 1.22352069e-06 + syst_JES_EtaIntercalibration_Stat82: 7.96011726e-05 + syst_JES_EtaIntercalibration_Stat83: 4.27561785e-03 + syst_JES_EtaIntercalibration_Stat84: 2.24038344e-03 + syst_JES_EtaIntercalibration_Stat85: 1.13369840e-02 + syst_JES_EtaIntercalibration_Stat86: 1.48023441e-03 syst_JES_EtaIntercalibration_Stat87: 0.0 - syst_JES_EtaIntercalibration_Stat88: 0.008136995560401887 - syst_JES_EtaIntercalibration_Stat89: 0.08019729047792076 + syst_JES_EtaIntercalibration_Stat88: 8.13699556e-03 + syst_JES_EtaIntercalibration_Stat89: 8.01972905e-02 syst_JES_EtaIntercalibration_Stat9: 0.0 - syst_JES_EtaIntercalibration_Stat90: 0.09108098978381823 - syst_JES_EtaIntercalibration_Stat91: 0.007463509680438553 - syst_JES_EtaIntercalibration_Stat92: 0.0005150675803232038 + syst_JES_EtaIntercalibration_Stat90: 9.10809898e-02 + syst_JES_EtaIntercalibration_Stat91: 7.46350968e-03 + syst_JES_EtaIntercalibration_Stat92: 5.15067580e-04 syst_JES_EtaIntercalibration_Stat93: 0.0 syst_JES_EtaIntercalibration_Stat94: 0.0 syst_JES_EtaIntercalibration_Stat95: 0.0 @@ -56006,159 +56006,159 @@ bins: syst_JES_EtaIntercalibration_Stat97: 0.0 syst_JES_EtaIntercalibration_Stat98: 0.0 syst_JES_EtaIntercalibration_Stat99: 0.0 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.026249230057208948 - syst_JES_Flavour_Comp: 0.5711854405532409 - syst_JES_Gjet_Generator: 5.978642069901826 - syst_JES_Gjet_OOC: 3.400526834183198 - syst_JES_Gjet_Purity: 1.170360529922297 - syst_JES_Gjet_Stat1: 0.003292605211682688 - syst_JES_Gjet_Stat10: 0.19641899112611286 - syst_JES_Gjet_Stat11: 0.10507028933052388 - syst_JES_Gjet_Stat12: 0.05262245433272758 - syst_JES_Gjet_Stat13: 0.01290223890454676 - syst_JES_Gjet_Stat14: 0.0002539978149512314 - syst_JES_Gjet_Stat15: 2.6993897884521973e-05 - syst_JES_Gjet_Stat2: 0.012029049297429949 - syst_JES_Gjet_Stat3: 0.010690385622137305 - syst_JES_Gjet_Stat4: 0.01018429266075951 - syst_JES_Gjet_Stat5: 0.016992844986934943 - syst_JES_Gjet_Stat6: 0.07177892030394438 - syst_JES_Gjet_Stat7: 0.15593614678771564 - syst_JES_Gjet_Stat8: 0.1309953083129316 - syst_JES_Gjet_Stat9: 0.30260691912115956 - syst_JES_Gjet_Veto: 1.353102785267993 - syst_JES_Gjet_dPhi: 0.4439291948047572 - syst_JES_LArESZee: 5.275491541079371 - syst_JES_LArEsmear: 0.42239181464015135 - syst_JES_LAr_JVT: 0.6614843667842801 - syst_JES_MJB_Alpha: 0.003310523070452765 - syst_JES_MJB_Asym: 0.009721008936833666 - syst_JES_MJB_Beta: 0.0005168933161688202 - syst_JES_MJB_Stat1: 0.0002758208975041594 - syst_JES_MJB_Stat10: 2.2759147611455044e-22 - syst_JES_MJB_Stat11: 9.920321000350745e-29 - syst_JES_MJB_Stat12: 5.341644690542418e-36 - syst_JES_MJB_Stat13: 3.491814428058856e-36 + syst_JES_EtaIntercalibration_TotalStat_MJB: 2.62492301e-02 + syst_JES_Flavour_Comp: 5.71185441e-01 + syst_JES_Gjet_Generator: 5.97864207e+00 + syst_JES_Gjet_OOC: 3.40052683e+00 + syst_JES_Gjet_Purity: 1.17036053e+00 + syst_JES_Gjet_Stat1: 3.29260521e-03 + syst_JES_Gjet_Stat10: 1.96418991e-01 + syst_JES_Gjet_Stat11: 1.05070289e-01 + syst_JES_Gjet_Stat12: 5.26224543e-02 + syst_JES_Gjet_Stat13: 1.29022389e-02 + syst_JES_Gjet_Stat14: 2.53997815e-04 + syst_JES_Gjet_Stat15: 2.69938979e-05 + syst_JES_Gjet_Stat2: 1.20290493e-02 + syst_JES_Gjet_Stat3: 1.06903856e-02 + syst_JES_Gjet_Stat4: 1.01842927e-02 + syst_JES_Gjet_Stat5: 1.69928450e-02 + syst_JES_Gjet_Stat6: 7.17789203e-02 + syst_JES_Gjet_Stat7: 1.55936147e-01 + syst_JES_Gjet_Stat8: 1.30995308e-01 + syst_JES_Gjet_Stat9: 3.02606919e-01 + syst_JES_Gjet_Veto: 1.35310279e+00 + syst_JES_Gjet_dPhi: 4.43929195e-01 + syst_JES_LArESZee: 5.27549154e+00 + syst_JES_LArEsmear: 4.22391815e-01 + syst_JES_LAr_JVT: 6.61484367e-01 + syst_JES_MJB_Alpha: 3.31052307e-03 + syst_JES_MJB_Asym: 9.72100894e-03 + syst_JES_MJB_Beta: 5.16893316e-04 + syst_JES_MJB_Stat1: 2.75820898e-04 + syst_JES_MJB_Stat10: 2.27591476e-22 + syst_JES_MJB_Stat11: 9.92032100e-29 + syst_JES_MJB_Stat12: 5.34164469e-36 + syst_JES_MJB_Stat13: 3.49181443e-36 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 0.004165499286604189 - syst_JES_MJB_Stat3: 3.137748423232812e-05 - syst_JES_MJB_Stat4: 2.299374418142176e-05 - syst_JES_MJB_Stat5: 3.613250744781906e-06 - syst_JES_MJB_Stat6: 1.2652631149231615e-09 - syst_JES_MJB_Stat7: 7.949247181337363e-18 - syst_JES_MJB_Stat8: 2.292369243817409e-22 - syst_JES_MJB_Stat9: 2.292369243817409e-22 - syst_JES_MJB_Threshold: 0.009983763556394954 - syst_JES_Pileup_MuOffset: 0.09214595311244005 - syst_JES_Pileup_NPVOffset: 0.3485582436265136 - syst_JES_Pileup_Pt_term: 3.3943746110292543 - syst_JES_PunchThrough_MC15: 0.0036240372883705268 + syst_JES_MJB_Stat2: 4.16549929e-03 + syst_JES_MJB_Stat3: 3.13774842e-05 + syst_JES_MJB_Stat4: 2.29937442e-05 + syst_JES_MJB_Stat5: 3.61325074e-06 + syst_JES_MJB_Stat6: 1.26526311e-09 + syst_JES_MJB_Stat7: 7.94924718e-18 + syst_JES_MJB_Stat8: 2.29236924e-22 + syst_JES_MJB_Stat9: 2.29236924e-22 + syst_JES_MJB_Threshold: 9.98376356e-03 + syst_JES_Pileup_MuOffset: 9.21459531e-02 + syst_JES_Pileup_NPVOffset: 3.48558244e-01 + syst_JES_Pileup_Pt_term: 3.39437461e+00 + syst_JES_PunchThrough_MC15: 3.62403729e-03 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 5.2159987538342065 - syst_JES_Zjet_MuScale: 0.303083565209333 - syst_JES_Zjet_MuSmearID: 0.04873813163222407 - syst_JES_Zjet_MuSmearMS: 0.4600148774768051 - syst_JES_Zjet_OOC: 1.9662166716819385 - syst_JES_Zjet_Stat1: 0.0199421080881636 - syst_JES_Zjet_Stat10: 0.7079851269624243 - syst_JES_Zjet_Stat11: 0.5226363267129448 - syst_JES_Zjet_Stat12: 0.10067216236378358 - syst_JES_Zjet_Stat13: 0.03893650985899995 - syst_JES_Zjet_Stat2: 0.0012343602340888985 - syst_JES_Zjet_Stat3: 0.008614971793337457 - syst_JES_Zjet_Stat4: 0.011456231888365389 - syst_JES_Zjet_Stat5: 0.01594307470682804 - syst_JES_Zjet_Stat6: 0.028728263087071583 - syst_JES_Zjet_Stat7: 0.0374087930839796 - syst_JES_Zjet_Stat8: 0.09407704502162044 - syst_JES_Zjet_Stat9: 0.3485817084988827 - syst_JES_Zjet_Veto: 0.30523778845352684 - syst_JES_Zjet_dPhi: 0.364062152248761 + syst_JES_Zjet_MC: 5.21599875e+00 + syst_JES_Zjet_MuScale: 3.03083565e-01 + syst_JES_Zjet_MuSmearID: 4.87381316e-02 + syst_JES_Zjet_MuSmearMS: 4.60014877e-01 + syst_JES_Zjet_OOC: 1.96621667e+00 + syst_JES_Zjet_Stat1: 1.99421081e-02 + syst_JES_Zjet_Stat10: 7.07985127e-01 + syst_JES_Zjet_Stat11: 5.22636327e-01 + syst_JES_Zjet_Stat12: 1.00672162e-01 + syst_JES_Zjet_Stat13: 3.89365099e-02 + syst_JES_Zjet_Stat2: 1.23436023e-03 + syst_JES_Zjet_Stat3: 8.61497179e-03 + syst_JES_Zjet_Stat4: 1.14562319e-02 + syst_JES_Zjet_Stat5: 1.59430747e-02 + syst_JES_Zjet_Stat6: 2.87282631e-02 + syst_JES_Zjet_Stat7: 3.74087931e-02 + syst_JES_Zjet_Stat8: 9.40770450e-02 + syst_JES_Zjet_Stat9: 3.48581708e-01 + syst_JES_Zjet_Veto: 3.05237788e-01 + syst_JES_Zjet_dPhi: 3.64062152e-01 syst_PRW: 0.0 syst_Unfolding_bias: 0.5639 - syst_cleaning: 1.3241528423864066 + syst_cleaning: 1.32415284e+00 syst_lumi: 5.16 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 6.6116928807983815 - syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.03184072970269369 - syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.5331992695015217 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 2.8824333470177588 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.01893928131556211 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.4077762490893218 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 6.61169288e+00 + syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 3.18407297e-02 + syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.53319927e+00 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 2.88243335e+00 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.89392813e-02 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.40777625e+00 - stat: 1.3483 syst_JER_CROSS_CALIB_FORWARD: 0.9405 syst_JER_NOISE_FORWARD: 0.6642 - syst_JER_NP0: 1.8673234856339167 - syst_JER_NP1: 0.18231480103107373 - syst_JER_NP2: 0.3040039802371015 - syst_JER_NP3: 0.5218297303718905 - syst_JER_NP4: 0.11217156268413131 - syst_JER_NP5: 0.17257591974258749 - syst_JER_NP6: 0.16910304787318295 - syst_JER_NP7: 0.07195932036921972 - syst_JER_NP8: 0.09784669782368743 - syst_JES_EtaIntercalibration_Modelling: 5.552744434061413 - syst_JES_EtaIntercalibration_NonClosure: 3.2226855260791423 + syst_JER_NP0: 1.86732349e+00 + syst_JER_NP1: 1.82314801e-01 + syst_JER_NP2: 3.04003980e-01 + syst_JER_NP3: 5.21829730e-01 + syst_JER_NP4: 1.12171563e-01 + syst_JER_NP5: 1.72575920e-01 + syst_JER_NP6: 1.69103048e-01 + syst_JER_NP7: 7.19593204e-02 + syst_JER_NP8: 9.78466978e-02 + syst_JES_EtaIntercalibration_Modelling: 5.55274443e+00 + syst_JES_EtaIntercalibration_NonClosure: 3.22268553e+00 syst_JES_EtaIntercalibration_Stat0: 0.0 - syst_JES_EtaIntercalibration_Stat1: 2.301895523259038e-06 + syst_JES_EtaIntercalibration_Stat1: 2.30189552e-06 syst_JES_EtaIntercalibration_Stat10: 0.0 syst_JES_EtaIntercalibration_Stat100: 0.0 syst_JES_EtaIntercalibration_Stat101: 0.0 syst_JES_EtaIntercalibration_Stat102: 0.0 - syst_JES_EtaIntercalibration_Stat103: 1.3327815837563182e-05 - syst_JES_EtaIntercalibration_Stat104: 0.0015627878766806453 - syst_JES_EtaIntercalibration_Stat105: 0.021189333354308247 - syst_JES_EtaIntercalibration_Stat106: 0.01656948243005798 - syst_JES_EtaIntercalibration_Stat107: 0.0005725579184676428 - syst_JES_EtaIntercalibration_Stat108: 0.005805427977332937 - syst_JES_EtaIntercalibration_Stat109: 0.15232370137309556 + syst_JES_EtaIntercalibration_Stat103: 1.33278158e-05 + syst_JES_EtaIntercalibration_Stat104: 1.56278788e-03 + syst_JES_EtaIntercalibration_Stat105: 2.11893334e-02 + syst_JES_EtaIntercalibration_Stat106: 1.65694824e-02 + syst_JES_EtaIntercalibration_Stat107: 5.72557918e-04 + syst_JES_EtaIntercalibration_Stat108: 5.80542798e-03 + syst_JES_EtaIntercalibration_Stat109: 1.52323701e-01 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 0.1548225032093203 - syst_JES_EtaIntercalibration_Stat111: 0.026557015551450805 - syst_JES_EtaIntercalibration_Stat112: 2.23981042724602e-05 + syst_JES_EtaIntercalibration_Stat110: 1.54822503e-01 + syst_JES_EtaIntercalibration_Stat111: 2.65570156e-02 + syst_JES_EtaIntercalibration_Stat112: 2.23981043e-05 syst_JES_EtaIntercalibration_Stat113: 0.0 syst_JES_EtaIntercalibration_Stat114: 0.0 syst_JES_EtaIntercalibration_Stat115: 0.0 syst_JES_EtaIntercalibration_Stat116: 0.0 syst_JES_EtaIntercalibration_Stat117: 0.0 - syst_JES_EtaIntercalibration_Stat118: 7.81414721834699e-06 - syst_JES_EtaIntercalibration_Stat119: 7.81414721834699e-06 + syst_JES_EtaIntercalibration_Stat118: 7.81414722e-06 + syst_JES_EtaIntercalibration_Stat119: 7.81414722e-06 syst_JES_EtaIntercalibration_Stat12: 0.0 syst_JES_EtaIntercalibration_Stat120: 0.0 syst_JES_EtaIntercalibration_Stat121: 0.0 syst_JES_EtaIntercalibration_Stat122: 0.0 - syst_JES_EtaIntercalibration_Stat123: 0.0011648170875721215 - syst_JES_EtaIntercalibration_Stat124: 0.021852402041880888 - syst_JES_EtaIntercalibration_Stat125: 0.16345459943054524 - syst_JES_EtaIntercalibration_Stat126: 0.12737568086177206 - syst_JES_EtaIntercalibration_Stat127: 0.0012508959788887324 - syst_JES_EtaIntercalibration_Stat128: 0.4617811684120521 - syst_JES_EtaIntercalibration_Stat129: 1.045069275215763 + syst_JES_EtaIntercalibration_Stat123: 1.16481709e-03 + syst_JES_EtaIntercalibration_Stat124: 2.18524020e-02 + syst_JES_EtaIntercalibration_Stat125: 1.63454599e-01 + syst_JES_EtaIntercalibration_Stat126: 1.27375681e-01 + syst_JES_EtaIntercalibration_Stat127: 1.25089598e-03 + syst_JES_EtaIntercalibration_Stat128: 4.61781168e-01 + syst_JES_EtaIntercalibration_Stat129: 1.04506928e+00 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 0.13914489821764936 - syst_JES_EtaIntercalibration_Stat131: 0.0013830084662340284 + syst_JES_EtaIntercalibration_Stat130: 1.39144898e-01 + syst_JES_EtaIntercalibration_Stat131: 1.38300847e-03 syst_JES_EtaIntercalibration_Stat132: 0.0 syst_JES_EtaIntercalibration_Stat133: 0.0 syst_JES_EtaIntercalibration_Stat134: 0.0 syst_JES_EtaIntercalibration_Stat135: 0.0 syst_JES_EtaIntercalibration_Stat136: 0.0 - syst_JES_EtaIntercalibration_Stat137: 7.81414721834699e-06 - syst_JES_EtaIntercalibration_Stat138: 7.81414721834699e-06 - syst_JES_EtaIntercalibration_Stat139: 4.025286076790071e-05 + syst_JES_EtaIntercalibration_Stat137: 7.81414722e-06 + syst_JES_EtaIntercalibration_Stat138: 7.81414722e-06 + syst_JES_EtaIntercalibration_Stat139: 4.02528608e-05 syst_JES_EtaIntercalibration_Stat14: 0.0 syst_JES_EtaIntercalibration_Stat140: 0.0 syst_JES_EtaIntercalibration_Stat141: 0.0 - syst_JES_EtaIntercalibration_Stat142: 0.003045042876545419 - syst_JES_EtaIntercalibration_Stat143: 0.07868209529969318 - syst_JES_EtaIntercalibration_Stat144: 1.0550266394740941 - syst_JES_EtaIntercalibration_Stat145: 0.43282182246277745 - syst_JES_EtaIntercalibration_Stat146: 0.22326672389767355 - syst_JES_EtaIntercalibration_Stat147: 0.23825817929296783 - syst_JES_EtaIntercalibration_Stat148: 0.04442189834889995 - syst_JES_EtaIntercalibration_Stat149: 0.0005551731081383536 + syst_JES_EtaIntercalibration_Stat142: 3.04504288e-03 + syst_JES_EtaIntercalibration_Stat143: 7.86820953e-02 + syst_JES_EtaIntercalibration_Stat144: 1.05502664e+00 + syst_JES_EtaIntercalibration_Stat145: 4.32821822e-01 + syst_JES_EtaIntercalibration_Stat146: 2.23266724e-01 + syst_JES_EtaIntercalibration_Stat147: 2.38258179e-01 + syst_JES_EtaIntercalibration_Stat148: 4.44218983e-02 + syst_JES_EtaIntercalibration_Stat149: 5.55173108e-04 syst_JES_EtaIntercalibration_Stat15: 0.0 syst_JES_EtaIntercalibration_Stat150: 0.0 syst_JES_EtaIntercalibration_Stat151: 0.0 @@ -56166,60 +56166,60 @@ bins: syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 7.81414721834699e-06 - syst_JES_EtaIntercalibration_Stat157: 4.025286076790071e-05 + syst_JES_EtaIntercalibration_Stat156: 7.81414722e-06 + syst_JES_EtaIntercalibration_Stat157: 4.02528608e-05 syst_JES_EtaIntercalibration_Stat158: 0.0 syst_JES_EtaIntercalibration_Stat159: 0.0 - syst_JES_EtaIntercalibration_Stat16: 7.596774841997096e-08 - syst_JES_EtaIntercalibration_Stat160: 0.0016324537259904185 - syst_JES_EtaIntercalibration_Stat161: 0.03320558873141689 - syst_JES_EtaIntercalibration_Stat162: 0.27433320524500854 - syst_JES_EtaIntercalibration_Stat163: 0.2543053430425716 - syst_JES_EtaIntercalibration_Stat164: 0.006710816101637713 - syst_JES_EtaIntercalibration_Stat165: 0.012481613276162462 - syst_JES_EtaIntercalibration_Stat166: 0.013861925251565887 - syst_JES_EtaIntercalibration_Stat167: 3.783265716611873e-05 + syst_JES_EtaIntercalibration_Stat16: 7.59677484e-08 + syst_JES_EtaIntercalibration_Stat160: 1.63245373e-03 + syst_JES_EtaIntercalibration_Stat161: 3.32055887e-02 + syst_JES_EtaIntercalibration_Stat162: 2.74333205e-01 + syst_JES_EtaIntercalibration_Stat163: 2.54305343e-01 + syst_JES_EtaIntercalibration_Stat164: 6.71081610e-03 + syst_JES_EtaIntercalibration_Stat165: 1.24816133e-02 + syst_JES_EtaIntercalibration_Stat166: 1.38619253e-02 + syst_JES_EtaIntercalibration_Stat167: 3.78326572e-05 syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 - syst_JES_EtaIntercalibration_Stat17: 5.271098746940719e-07 + syst_JES_EtaIntercalibration_Stat17: 5.27109875e-07 syst_JES_EtaIntercalibration_Stat170: 0.0 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 - syst_JES_EtaIntercalibration_Stat174: 4.025286076790071e-05 - syst_JES_EtaIntercalibration_Stat175: 4.025286076790071e-05 + syst_JES_EtaIntercalibration_Stat174: 4.02528608e-05 + syst_JES_EtaIntercalibration_Stat175: 4.02528608e-05 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 - syst_JES_EtaIntercalibration_Stat178: 0.0001738488046406992 - syst_JES_EtaIntercalibration_Stat179: 0.010076045007839136 - syst_JES_EtaIntercalibration_Stat18: 2.2084848126034285e-05 - syst_JES_EtaIntercalibration_Stat180: 0.013168135203968707 - syst_JES_EtaIntercalibration_Stat181: 0.026899450380072822 - syst_JES_EtaIntercalibration_Stat182: 0.039419653410449965 - syst_JES_EtaIntercalibration_Stat183: 0.004084207756713657 - syst_JES_EtaIntercalibration_Stat184: 9.985673651524318e-05 + syst_JES_EtaIntercalibration_Stat178: 1.73848805e-04 + syst_JES_EtaIntercalibration_Stat179: 1.00760450e-02 + syst_JES_EtaIntercalibration_Stat18: 2.20848481e-05 + syst_JES_EtaIntercalibration_Stat180: 1.31681352e-02 + syst_JES_EtaIntercalibration_Stat181: 2.68994504e-02 + syst_JES_EtaIntercalibration_Stat182: 3.94196534e-02 + syst_JES_EtaIntercalibration_Stat183: 4.08420776e-03 + syst_JES_EtaIntercalibration_Stat184: 9.98567365e-05 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 syst_JES_EtaIntercalibration_Stat187: 0.0 - syst_JES_EtaIntercalibration_Stat188: 2.1494750521929765e-05 + syst_JES_EtaIntercalibration_Stat188: 2.14947505e-05 syst_JES_EtaIntercalibration_Stat189: 0.0 - syst_JES_EtaIntercalibration_Stat19: 1.2336688156875815e-05 + syst_JES_EtaIntercalibration_Stat19: 1.23366882e-05 syst_JES_EtaIntercalibration_Stat190: 0.0 - syst_JES_EtaIntercalibration_Stat191: 4.025286076790071e-05 - syst_JES_EtaIntercalibration_Stat192: 4.025286076790071e-05 + syst_JES_EtaIntercalibration_Stat191: 4.02528608e-05 + syst_JES_EtaIntercalibration_Stat192: 4.02528608e-05 syst_JES_EtaIntercalibration_Stat193: 0.0 syst_JES_EtaIntercalibration_Stat194: 0.0 - syst_JES_EtaIntercalibration_Stat195: 0.00013875102866468234 - syst_JES_EtaIntercalibration_Stat196: 0.00865169039841348 - syst_JES_EtaIntercalibration_Stat197: 0.029434148535332227 - syst_JES_EtaIntercalibration_Stat198: 0.0007252255254057182 - syst_JES_EtaIntercalibration_Stat199: 3.1017049599771736e-05 - syst_JES_EtaIntercalibration_Stat2: 4.177876734359213e-05 + syst_JES_EtaIntercalibration_Stat195: 1.38751029e-04 + syst_JES_EtaIntercalibration_Stat196: 8.65169040e-03 + syst_JES_EtaIntercalibration_Stat197: 2.94341485e-02 + syst_JES_EtaIntercalibration_Stat198: 7.25225525e-04 + syst_JES_EtaIntercalibration_Stat199: 3.10170496e-05 + syst_JES_EtaIntercalibration_Stat2: 4.17787673e-05 syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 syst_JES_EtaIntercalibration_Stat201: 0.0 syst_JES_EtaIntercalibration_Stat202: 0.0 - syst_JES_EtaIntercalibration_Stat203: 2.1494750521929765e-05 + syst_JES_EtaIntercalibration_Stat203: 2.14947505e-05 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 @@ -56227,9 +56227,9 @@ bins: syst_JES_EtaIntercalibration_Stat208: 0.0 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 4.782193035738326e-07 - syst_JES_EtaIntercalibration_Stat211: 0.0007496400786377419 - syst_JES_EtaIntercalibration_Stat212: 2.1217622392718746e-21 + syst_JES_EtaIntercalibration_Stat210: 4.78219304e-07 + syst_JES_EtaIntercalibration_Stat211: 7.49640079e-04 + syst_JES_EtaIntercalibration_Stat212: 2.12176224e-21 syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 syst_JES_EtaIntercalibration_Stat215: 0.0 @@ -56241,37 +56241,37 @@ bins: syst_JES_EtaIntercalibration_Stat220: 0.0 syst_JES_EtaIntercalibration_Stat221: 0.0 syst_JES_EtaIntercalibration_Stat222: 0.0 - syst_JES_EtaIntercalibration_Stat223: 1.6419841655752956e-16 - syst_JES_EtaIntercalibration_Stat224: 2.1208962138680903e-21 + syst_JES_EtaIntercalibration_Stat223: 1.64198417e-16 + syst_JES_EtaIntercalibration_Stat224: 2.12089621e-21 syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 syst_JES_EtaIntercalibration_Stat227: 0.0 syst_JES_EtaIntercalibration_Stat228: 0.0 syst_JES_EtaIntercalibration_Stat229: 0.0 - syst_JES_EtaIntercalibration_Stat23: 3.310075657745605e-05 + syst_JES_EtaIntercalibration_Stat23: 3.31007566e-05 syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 syst_JES_EtaIntercalibration_Stat232: 0.0 syst_JES_EtaIntercalibration_Stat233: 0.0 syst_JES_EtaIntercalibration_Stat234: 0.0 - syst_JES_EtaIntercalibration_Stat235: 1.6653668514774755e-16 + syst_JES_EtaIntercalibration_Stat235: 1.66536685e-16 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 syst_JES_EtaIntercalibration_Stat239: 0.0 - syst_JES_EtaIntercalibration_Stat24: 0.000775281806828975 + syst_JES_EtaIntercalibration_Stat24: 7.75281807e-04 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 syst_JES_EtaIntercalibration_Stat243: 0.0 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 - syst_JES_EtaIntercalibration_Stat25: 0.0006621553141068943 - syst_JES_EtaIntercalibration_Stat26: 8.332576612309065e-05 + syst_JES_EtaIntercalibration_Stat25: 6.62155314e-04 + syst_JES_EtaIntercalibration_Stat26: 8.33257661e-05 syst_JES_EtaIntercalibration_Stat27: 0.0 syst_JES_EtaIntercalibration_Stat28: 0.0 syst_JES_EtaIntercalibration_Stat29: 0.0 - syst_JES_EtaIntercalibration_Stat3: 6.780278515665857e-05 + syst_JES_EtaIntercalibration_Stat3: 6.78027852e-05 syst_JES_EtaIntercalibration_Stat30: 0.0 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 @@ -56280,19 +56280,19 @@ bins: syst_JES_EtaIntercalibration_Stat35: 0.0 syst_JES_EtaIntercalibration_Stat36: 0.0 syst_JES_EtaIntercalibration_Stat37: 0.0 - syst_JES_EtaIntercalibration_Stat38: 7.596774841997096e-08 - syst_JES_EtaIntercalibration_Stat39: 3.357861372957496e-05 + syst_JES_EtaIntercalibration_Stat38: 7.59677484e-08 + syst_JES_EtaIntercalibration_Stat39: 3.35786137e-05 syst_JES_EtaIntercalibration_Stat4: 0.0 - syst_JES_EtaIntercalibration_Stat40: 0.0008196365215752652 - syst_JES_EtaIntercalibration_Stat41: 0.00046778654320106305 - syst_JES_EtaIntercalibration_Stat42: 2.5746935254511363e-06 + syst_JES_EtaIntercalibration_Stat40: 8.19636522e-04 + syst_JES_EtaIntercalibration_Stat41: 4.67786543e-04 + syst_JES_EtaIntercalibration_Stat42: 2.57469353e-06 syst_JES_EtaIntercalibration_Stat43: 0.0 - syst_JES_EtaIntercalibration_Stat44: 7.252962756694674e-06 - syst_JES_EtaIntercalibration_Stat45: 0.00012549361258645797 - syst_JES_EtaIntercalibration_Stat46: 0.00017074270116171876 - syst_JES_EtaIntercalibration_Stat47: 0.0019794475870808 - syst_JES_EtaIntercalibration_Stat48: 0.00037950838182443353 - syst_JES_EtaIntercalibration_Stat49: 4.744087161931155e-06 + syst_JES_EtaIntercalibration_Stat44: 7.25296276e-06 + syst_JES_EtaIntercalibration_Stat45: 1.25493613e-04 + syst_JES_EtaIntercalibration_Stat46: 1.70742701e-04 + syst_JES_EtaIntercalibration_Stat47: 1.97944759e-03 + syst_JES_EtaIntercalibration_Stat48: 3.79508382e-04 + syst_JES_EtaIntercalibration_Stat49: 4.74408716e-06 syst_JES_EtaIntercalibration_Stat5: 0.0 syst_JES_EtaIntercalibration_Stat50: 0.0 syst_JES_EtaIntercalibration_Stat51: 0.0 @@ -56303,21 +56303,21 @@ bins: syst_JES_EtaIntercalibration_Stat56: 0.0 syst_JES_EtaIntercalibration_Stat57: 0.0 syst_JES_EtaIntercalibration_Stat58: 0.0 - syst_JES_EtaIntercalibration_Stat59: 7.596774841997096e-08 + syst_JES_EtaIntercalibration_Stat59: 7.59677484e-08 syst_JES_EtaIntercalibration_Stat6: 0.0 - syst_JES_EtaIntercalibration_Stat60: 4.3749500888581577e-07 - syst_JES_EtaIntercalibration_Stat61: 0.0004803194145566052 - syst_JES_EtaIntercalibration_Stat62: 0.0019630876190328338 - syst_JES_EtaIntercalibration_Stat63: 0.0018808572513617293 - syst_JES_EtaIntercalibration_Stat64: 2.1204836122922525e-05 + syst_JES_EtaIntercalibration_Stat60: 4.37495009e-07 + syst_JES_EtaIntercalibration_Stat61: 4.80319415e-04 + syst_JES_EtaIntercalibration_Stat62: 1.96308762e-03 + syst_JES_EtaIntercalibration_Stat63: 1.88085725e-03 + syst_JES_EtaIntercalibration_Stat64: 2.12048361e-05 syst_JES_EtaIntercalibration_Stat65: 0.0 - syst_JES_EtaIntercalibration_Stat66: 7.252962756694674e-06 - syst_JES_EtaIntercalibration_Stat67: 0.0011115141429599534 - syst_JES_EtaIntercalibration_Stat68: 0.0045081584654934215 - syst_JES_EtaIntercalibration_Stat69: 0.00564214149835858 + syst_JES_EtaIntercalibration_Stat66: 7.25296276e-06 + syst_JES_EtaIntercalibration_Stat67: 1.11151414e-03 + syst_JES_EtaIntercalibration_Stat68: 4.50815847e-03 + syst_JES_EtaIntercalibration_Stat69: 5.64214150e-03 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 0.0011657768429249227 - syst_JES_EtaIntercalibration_Stat71: 6.632701485820088e-05 + syst_JES_EtaIntercalibration_Stat70: 1.16577684e-03 + syst_JES_EtaIntercalibration_Stat71: 6.63270149e-05 syst_JES_EtaIntercalibration_Stat72: 0.0 syst_JES_EtaIntercalibration_Stat73: 0.0 syst_JES_EtaIntercalibration_Stat74: 0.0 @@ -56328,19 +56328,19 @@ bins: syst_JES_EtaIntercalibration_Stat79: 0.0 syst_JES_EtaIntercalibration_Stat8: 0.0 syst_JES_EtaIntercalibration_Stat80: 0.0 - syst_JES_EtaIntercalibration_Stat81: 7.596774841997096e-08 - syst_JES_EtaIntercalibration_Stat82: 8.719174731590142e-06 - syst_JES_EtaIntercalibration_Stat83: 0.0016221041890088319 - syst_JES_EtaIntercalibration_Stat84: 0.002290193659933587 - syst_JES_EtaIntercalibration_Stat85: 0.005771631030306771 - syst_JES_EtaIntercalibration_Stat86: 0.00035042889078955807 + syst_JES_EtaIntercalibration_Stat81: 7.59677484e-08 + syst_JES_EtaIntercalibration_Stat82: 8.71917473e-06 + syst_JES_EtaIntercalibration_Stat83: 1.62210419e-03 + syst_JES_EtaIntercalibration_Stat84: 2.29019366e-03 + syst_JES_EtaIntercalibration_Stat85: 5.77163103e-03 + syst_JES_EtaIntercalibration_Stat86: 3.50428891e-04 syst_JES_EtaIntercalibration_Stat87: 0.0 - syst_JES_EtaIntercalibration_Stat88: 0.0012485172125365352 - syst_JES_EtaIntercalibration_Stat89: 0.013686620729749181 + syst_JES_EtaIntercalibration_Stat88: 1.24851721e-03 + syst_JES_EtaIntercalibration_Stat89: 1.36866207e-02 syst_JES_EtaIntercalibration_Stat9: 0.0 - syst_JES_EtaIntercalibration_Stat90: 0.009455693205683019 - syst_JES_EtaIntercalibration_Stat91: 0.0013450982566340646 - syst_JES_EtaIntercalibration_Stat92: 7.427319292315363e-05 + syst_JES_EtaIntercalibration_Stat90: 9.45569321e-03 + syst_JES_EtaIntercalibration_Stat91: 1.34509826e-03 + syst_JES_EtaIntercalibration_Stat92: 7.42731929e-05 syst_JES_EtaIntercalibration_Stat93: 0.0 syst_JES_EtaIntercalibration_Stat94: 0.0 syst_JES_EtaIntercalibration_Stat95: 0.0 @@ -56348,159 +56348,159 @@ bins: syst_JES_EtaIntercalibration_Stat97: 0.0 syst_JES_EtaIntercalibration_Stat98: 0.0 syst_JES_EtaIntercalibration_Stat99: 0.0 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.016480615658040022 - syst_JES_Flavour_Comp: 0.2773192519462001 - syst_JES_Gjet_Generator: 2.9715384904119952 - syst_JES_Gjet_OOC: 1.7486042290924495 - syst_JES_Gjet_Purity: 0.5378180617086042 - syst_JES_Gjet_Stat1: 0.0006754719336878476 - syst_JES_Gjet_Stat10: 0.11680114853887354 - syst_JES_Gjet_Stat11: 0.0895114242708717 - syst_JES_Gjet_Stat12: 0.013962575801047601 - syst_JES_Gjet_Stat13: 0.015333479807271407 - syst_JES_Gjet_Stat14: 0.0010813951948755829 - syst_JES_Gjet_Stat15: 1.2763481372650645e-05 - syst_JES_Gjet_Stat2: 0.0016432489160197246 - syst_JES_Gjet_Stat3: 0.0067086413490363315 - syst_JES_Gjet_Stat4: 0.005882229764298569 - syst_JES_Gjet_Stat5: 0.007280067770975762 - syst_JES_Gjet_Stat6: 0.021592131599265502 - syst_JES_Gjet_Stat7: 0.054578558397506256 - syst_JES_Gjet_Stat8: 0.050384194694368195 - syst_JES_Gjet_Stat9: 0.1315411117293753 - syst_JES_Gjet_Veto: 0.725398773089671 - syst_JES_Gjet_dPhi: 0.17521794285974254 - syst_JES_LArESZee: 2.909421076434279 - syst_JES_LArEsmear: 0.21161703026930515 - syst_JES_LAr_JVT: 0.34683139996257545 - syst_JES_MJB_Alpha: 0.0021695184045082447 - syst_JES_MJB_Asym: 0.008476588228762795 - syst_JES_MJB_Beta: 0.0019508380250548734 - syst_JES_MJB_Stat1: 0.002340528305676947 - syst_JES_MJB_Stat10: 1.4462624243200126e-16 - syst_JES_MJB_Stat11: 2.365981403139086e-21 - syst_JES_MJB_Stat12: 8.864636033137514e-27 - syst_JES_MJB_Stat13: 5.794575976721678e-27 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.64806157e-02 + syst_JES_Flavour_Comp: 2.77319252e-01 + syst_JES_Gjet_Generator: 2.97153849e+00 + syst_JES_Gjet_OOC: 1.74860423e+00 + syst_JES_Gjet_Purity: 5.37818062e-01 + syst_JES_Gjet_Stat1: 6.75471934e-04 + syst_JES_Gjet_Stat10: 1.16801149e-01 + syst_JES_Gjet_Stat11: 8.95114243e-02 + syst_JES_Gjet_Stat12: 1.39625758e-02 + syst_JES_Gjet_Stat13: 1.53334798e-02 + syst_JES_Gjet_Stat14: 1.08139519e-03 + syst_JES_Gjet_Stat15: 1.27634814e-05 + syst_JES_Gjet_Stat2: 1.64324892e-03 + syst_JES_Gjet_Stat3: 6.70864135e-03 + syst_JES_Gjet_Stat4: 5.88222976e-03 + syst_JES_Gjet_Stat5: 7.28006777e-03 + syst_JES_Gjet_Stat6: 2.15921316e-02 + syst_JES_Gjet_Stat7: 5.45785584e-02 + syst_JES_Gjet_Stat8: 5.03841947e-02 + syst_JES_Gjet_Stat9: 1.31541112e-01 + syst_JES_Gjet_Veto: 7.25398773e-01 + syst_JES_Gjet_dPhi: 1.75217943e-01 + syst_JES_LArESZee: 2.90942108e+00 + syst_JES_LArEsmear: 2.11617030e-01 + syst_JES_LAr_JVT: 3.46831400e-01 + syst_JES_MJB_Alpha: 2.16951840e-03 + syst_JES_MJB_Asym: 8.47658823e-03 + syst_JES_MJB_Beta: 1.95083803e-03 + syst_JES_MJB_Stat1: 2.34052831e-03 + syst_JES_MJB_Stat10: 1.44626242e-16 + syst_JES_MJB_Stat11: 2.36598140e-21 + syst_JES_MJB_Stat12: 8.86463603e-27 + syst_JES_MJB_Stat13: 5.79457598e-27 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 0.00463362738575298 - syst_JES_MJB_Stat3: 0.001550233791239244 - syst_JES_MJB_Stat4: 0.0004633937043059929 - syst_JES_MJB_Stat5: 2.960680711876071e-05 - syst_JES_MJB_Stat6: 3.0475433584041077e-07 - syst_JES_MJB_Stat7: 2.337402564814244e-13 - syst_JES_MJB_Stat8: 1.45752075456921e-16 - syst_JES_MJB_Stat9: 1.4566547291654258e-16 - syst_JES_MJB_Threshold: 0.009171049708184992 - syst_JES_Pileup_MuOffset: 0.022836050446607442 - syst_JES_Pileup_NPVOffset: 0.15267878438080387 - syst_JES_Pileup_Pt_term: 1.6140807755499724 - syst_JES_PunchThrough_MC15: 0.0030207124987327075 + syst_JES_MJB_Stat2: 4.63362739e-03 + syst_JES_MJB_Stat3: 1.55023379e-03 + syst_JES_MJB_Stat4: 4.63393704e-04 + syst_JES_MJB_Stat5: 2.96068071e-05 + syst_JES_MJB_Stat6: 3.04754336e-07 + syst_JES_MJB_Stat7: 2.33740256e-13 + syst_JES_MJB_Stat8: 1.45752075e-16 + syst_JES_MJB_Stat9: 1.45665473e-16 + syst_JES_MJB_Threshold: 9.17104971e-03 + syst_JES_Pileup_MuOffset: 2.28360504e-02 + syst_JES_Pileup_NPVOffset: 1.52678784e-01 + syst_JES_Pileup_Pt_term: 1.61408078e+00 + syst_JES_PunchThrough_MC15: 3.02071250e-03 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 2.6555008472979256 - syst_JES_Zjet_MuScale: 0.13786721872874638 - syst_JES_Zjet_MuSmearID: 0.03008115149059291 - syst_JES_Zjet_MuSmearMS: 0.24472762410484028 - syst_JES_Zjet_OOC: 0.9235845643469797 - syst_JES_Zjet_Stat1: 0.009414781078177017 - syst_JES_Zjet_Stat10: 0.28298457113418746 - syst_JES_Zjet_Stat11: 0.35462116698668733 - syst_JES_Zjet_Stat12: 0.1641611708047917 - syst_JES_Zjet_Stat13: 0.03197449725953482 - syst_JES_Zjet_Stat2: 0.0009549994489527205 - syst_JES_Zjet_Stat3: 0.0033430273705131403 - syst_JES_Zjet_Stat4: 0.005446840253761808 - syst_JES_Zjet_Stat5: 0.006840097148981146 - syst_JES_Zjet_Stat6: 0.012485584357570134 - syst_JES_Zjet_Stat7: 0.010804787862332141 - syst_JES_Zjet_Stat8: 0.0322081118198506 - syst_JES_Zjet_Stat9: 0.11283618070016371 - syst_JES_Zjet_Veto: 0.14058037629768955 - syst_JES_Zjet_dPhi: 0.15408949047550258 + syst_JES_Zjet_MC: 2.65550085e+00 + syst_JES_Zjet_MuScale: 1.37867219e-01 + syst_JES_Zjet_MuSmearID: 3.00811515e-02 + syst_JES_Zjet_MuSmearMS: 2.44727624e-01 + syst_JES_Zjet_OOC: 9.23584564e-01 + syst_JES_Zjet_Stat1: 9.41478108e-03 + syst_JES_Zjet_Stat10: 2.82984571e-01 + syst_JES_Zjet_Stat11: 3.54621167e-01 + syst_JES_Zjet_Stat12: 1.64161171e-01 + syst_JES_Zjet_Stat13: 3.19744973e-02 + syst_JES_Zjet_Stat2: 9.54999449e-04 + syst_JES_Zjet_Stat3: 3.34302737e-03 + syst_JES_Zjet_Stat4: 5.44684025e-03 + syst_JES_Zjet_Stat5: 6.84009715e-03 + syst_JES_Zjet_Stat6: 1.24855844e-02 + syst_JES_Zjet_Stat7: 1.08047879e-02 + syst_JES_Zjet_Stat8: 3.22081118e-02 + syst_JES_Zjet_Stat9: 1.12836181e-01 + syst_JES_Zjet_Veto: 1.40580376e-01 + syst_JES_Zjet_dPhi: 1.54089490e-01 syst_PRW: 0.0 syst_Unfolding_bias: 0.2362 - syst_cleaning: 0.6476137969500032 + syst_cleaning: 6.47613797e-01 syst_lumi: 2.524 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 3.192843990864571 - syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.027304663392907814 - syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.7084049742202548 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 1.3919877441989208 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.016713729446176873 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.661074540048246 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 3.19284399e+00 + syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 2.73046634e-02 + syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 7.08404974e-01 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 1.39198774e+00 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.67137294e-02 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 6.61074540e-01 - stat: 0.7289 syst_JER_CROSS_CALIB_FORWARD: 0.2631 syst_JER_NOISE_FORWARD: 0.3266 - syst_JER_NP0: 0.8573065437753289 - syst_JER_NP1: 0.03422112505456243 - syst_JER_NP2: 0.15010326445484123 - syst_JER_NP3: 0.2840912881452017 - syst_JER_NP4: 0.06404086507847939 - syst_JER_NP5: 0.10600967927505488 - syst_JER_NP6: 0.09665609292745077 - syst_JER_NP7: 0.026628319863446135 - syst_JER_NP8: 0.048201818430428534 - syst_JES_EtaIntercalibration_Modelling: 2.851262878094547 - syst_JES_EtaIntercalibration_NonClosure: 1.1703272907610074 + syst_JER_NP0: 8.57306544e-01 + syst_JER_NP1: 3.42211251e-02 + syst_JER_NP2: 1.50103264e-01 + syst_JER_NP3: 2.84091288e-01 + syst_JER_NP4: 6.40408651e-02 + syst_JER_NP5: 1.06009679e-01 + syst_JER_NP6: 9.66560929e-02 + syst_JER_NP7: 2.66283199e-02 + syst_JER_NP8: 4.82018184e-02 + syst_JES_EtaIntercalibration_Modelling: 2.85126288e+00 + syst_JES_EtaIntercalibration_NonClosure: 1.17032729e+00 syst_JES_EtaIntercalibration_Stat0: 0.0 - syst_JES_EtaIntercalibration_Stat1: 2.0187052162215264e-07 + syst_JES_EtaIntercalibration_Stat1: 2.01870522e-07 syst_JES_EtaIntercalibration_Stat10: 0.0 syst_JES_EtaIntercalibration_Stat100: 0.0 syst_JES_EtaIntercalibration_Stat101: 0.0 syst_JES_EtaIntercalibration_Stat102: 0.0 - syst_JES_EtaIntercalibration_Stat103: 1.5452802561347894e-06 - syst_JES_EtaIntercalibration_Stat104: 0.000447086644287212 - syst_JES_EtaIntercalibration_Stat105: 0.006170996324263611 - syst_JES_EtaIntercalibration_Stat106: 0.0037236417657986382 - syst_JES_EtaIntercalibration_Stat107: 0.00012575063687711487 - syst_JES_EtaIntercalibration_Stat108: 0.001179628741384339 - syst_JES_EtaIntercalibration_Stat109: 0.04296148604273368 + syst_JES_EtaIntercalibration_Stat103: 1.54528026e-06 + syst_JES_EtaIntercalibration_Stat104: 4.47086644e-04 + syst_JES_EtaIntercalibration_Stat105: 6.17099632e-03 + syst_JES_EtaIntercalibration_Stat106: 3.72364177e-03 + syst_JES_EtaIntercalibration_Stat107: 1.25750637e-04 + syst_JES_EtaIntercalibration_Stat108: 1.17962874e-03 + syst_JES_EtaIntercalibration_Stat109: 4.29614860e-02 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 0.041496497442555326 - syst_JES_EtaIntercalibration_Stat111: 0.006303138325469305 - syst_JES_EtaIntercalibration_Stat112: 0.00016573378502888298 + syst_JES_EtaIntercalibration_Stat110: 4.14964974e-02 + syst_JES_EtaIntercalibration_Stat111: 6.30313833e-03 + syst_JES_EtaIntercalibration_Stat112: 1.65733785e-04 syst_JES_EtaIntercalibration_Stat113: 0.0 syst_JES_EtaIntercalibration_Stat114: 0.0 syst_JES_EtaIntercalibration_Stat115: 0.0 syst_JES_EtaIntercalibration_Stat116: 0.0 syst_JES_EtaIntercalibration_Stat117: 0.0 - syst_JES_EtaIntercalibration_Stat118: 1.0045028658495702e-06 - syst_JES_EtaIntercalibration_Stat119: 1.0045028658495702e-06 + syst_JES_EtaIntercalibration_Stat118: 1.00450287e-06 + syst_JES_EtaIntercalibration_Stat119: 1.00450287e-06 syst_JES_EtaIntercalibration_Stat12: 0.0 syst_JES_EtaIntercalibration_Stat120: 0.0 syst_JES_EtaIntercalibration_Stat121: 0.0 syst_JES_EtaIntercalibration_Stat122: 0.0 - syst_JES_EtaIntercalibration_Stat123: 0.0003272003441318484 - syst_JES_EtaIntercalibration_Stat124: 0.0070948102687809775 - syst_JES_EtaIntercalibration_Stat125: 0.04280383248028148 - syst_JES_EtaIntercalibration_Stat126: 0.028874724241107482 - syst_JES_EtaIntercalibration_Stat127: 0.0008497539585079907 - syst_JES_EtaIntercalibration_Stat128: 0.17068813667036148 - syst_JES_EtaIntercalibration_Stat129: 0.3755561471671047 + syst_JES_EtaIntercalibration_Stat123: 3.27200344e-04 + syst_JES_EtaIntercalibration_Stat124: 7.09481027e-03 + syst_JES_EtaIntercalibration_Stat125: 4.28038325e-02 + syst_JES_EtaIntercalibration_Stat126: 2.88747242e-02 + syst_JES_EtaIntercalibration_Stat127: 8.49753959e-04 + syst_JES_EtaIntercalibration_Stat128: 1.70688137e-01 + syst_JES_EtaIntercalibration_Stat129: 3.75556147e-01 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 0.05243046323465014 - syst_JES_EtaIntercalibration_Stat131: 0.0005918625600593435 + syst_JES_EtaIntercalibration_Stat130: 5.24304632e-02 + syst_JES_EtaIntercalibration_Stat131: 5.91862560e-04 syst_JES_EtaIntercalibration_Stat132: 0.0 syst_JES_EtaIntercalibration_Stat133: 0.0 syst_JES_EtaIntercalibration_Stat134: 0.0 syst_JES_EtaIntercalibration_Stat135: 0.0 syst_JES_EtaIntercalibration_Stat136: 0.0 - syst_JES_EtaIntercalibration_Stat137: 1.0045028658495702e-06 - syst_JES_EtaIntercalibration_Stat138: 1.0045028658495702e-06 - syst_JES_EtaIntercalibration_Stat139: 4.8895794297669404e-06 + syst_JES_EtaIntercalibration_Stat137: 1.00450287e-06 + syst_JES_EtaIntercalibration_Stat138: 1.00450287e-06 + syst_JES_EtaIntercalibration_Stat139: 4.88957943e-06 syst_JES_EtaIntercalibration_Stat14: 0.0 syst_JES_EtaIntercalibration_Stat140: 0.0 syst_JES_EtaIntercalibration_Stat141: 0.0 - syst_JES_EtaIntercalibration_Stat142: 0.0007029818400926158 - syst_JES_EtaIntercalibration_Stat143: 0.03387655631849259 - syst_JES_EtaIntercalibration_Stat144: 0.3976106764160137 - syst_JES_EtaIntercalibration_Stat145: 0.14784013392851075 - syst_JES_EtaIntercalibration_Stat146: 0.1383095140436839 - syst_JES_EtaIntercalibration_Stat147: 0.14485158844486312 - syst_JES_EtaIntercalibration_Stat148: 0.02666995874912445 - syst_JES_EtaIntercalibration_Stat149: 0.0002871665558521744 + syst_JES_EtaIntercalibration_Stat142: 7.02981840e-04 + syst_JES_EtaIntercalibration_Stat143: 3.38765563e-02 + syst_JES_EtaIntercalibration_Stat144: 3.97610676e-01 + syst_JES_EtaIntercalibration_Stat145: 1.47840134e-01 + syst_JES_EtaIntercalibration_Stat146: 1.38309514e-01 + syst_JES_EtaIntercalibration_Stat147: 1.44851588e-01 + syst_JES_EtaIntercalibration_Stat148: 2.66699587e-02 + syst_JES_EtaIntercalibration_Stat149: 2.87166556e-04 syst_JES_EtaIntercalibration_Stat15: 0.0 syst_JES_EtaIntercalibration_Stat150: 0.0 syst_JES_EtaIntercalibration_Stat151: 0.0 @@ -56508,60 +56508,60 @@ bins: syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 1.0045028658495702e-06 - syst_JES_EtaIntercalibration_Stat157: 4.8895794297669404e-06 + syst_JES_EtaIntercalibration_Stat156: 1.00450287e-06 + syst_JES_EtaIntercalibration_Stat157: 4.88957943e-06 syst_JES_EtaIntercalibration_Stat158: 0.0 syst_JES_EtaIntercalibration_Stat159: 0.0 - syst_JES_EtaIntercalibration_Stat16: 4.823761499079323e-09 - syst_JES_EtaIntercalibration_Stat160: 0.0006047339146269208 - syst_JES_EtaIntercalibration_Stat161: 0.018623646816614624 - syst_JES_EtaIntercalibration_Stat162: 0.1608714005036321 - syst_JES_EtaIntercalibration_Stat163: 0.14495269599079555 - syst_JES_EtaIntercalibration_Stat164: 0.047323698872763525 - syst_JES_EtaIntercalibration_Stat165: 0.036344383334980385 - syst_JES_EtaIntercalibration_Stat166: 0.0028635594587986123 - syst_JES_EtaIntercalibration_Stat167: 8.422298795002467e-05 + syst_JES_EtaIntercalibration_Stat16: 4.82376150e-09 + syst_JES_EtaIntercalibration_Stat160: 6.04733915e-04 + syst_JES_EtaIntercalibration_Stat161: 1.86236468e-02 + syst_JES_EtaIntercalibration_Stat162: 1.60871401e-01 + syst_JES_EtaIntercalibration_Stat163: 1.44952696e-01 + syst_JES_EtaIntercalibration_Stat164: 4.73236989e-02 + syst_JES_EtaIntercalibration_Stat165: 3.63443833e-02 + syst_JES_EtaIntercalibration_Stat166: 2.86355946e-03 + syst_JES_EtaIntercalibration_Stat167: 8.42229880e-05 syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 - syst_JES_EtaIntercalibration_Stat17: 3.64257885981896e-08 + syst_JES_EtaIntercalibration_Stat17: 3.64257886e-08 syst_JES_EtaIntercalibration_Stat170: 0.0 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 - syst_JES_EtaIntercalibration_Stat174: 4.8895794297669404e-06 - syst_JES_EtaIntercalibration_Stat175: 4.8895794297669404e-06 + syst_JES_EtaIntercalibration_Stat174: 4.88957943e-06 + syst_JES_EtaIntercalibration_Stat175: 4.88957943e-06 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 - syst_JES_EtaIntercalibration_Stat178: 0.0007668203961815308 - syst_JES_EtaIntercalibration_Stat179: 0.00972951031655756 - syst_JES_EtaIntercalibration_Stat18: 2.161276383875972e-06 - syst_JES_EtaIntercalibration_Stat180: 0.05041578423470173 - syst_JES_EtaIntercalibration_Stat181: 0.04043383082271577 - syst_JES_EtaIntercalibration_Stat182: 0.030532926489283664 - syst_JES_EtaIntercalibration_Stat183: 0.007631905659794282 - syst_JES_EtaIntercalibration_Stat184: 0.00061922739990169 + syst_JES_EtaIntercalibration_Stat178: 7.66820396e-04 + syst_JES_EtaIntercalibration_Stat179: 9.72951032e-03 + syst_JES_EtaIntercalibration_Stat18: 2.16127638e-06 + syst_JES_EtaIntercalibration_Stat180: 5.04157842e-02 + syst_JES_EtaIntercalibration_Stat181: 4.04338308e-02 + syst_JES_EtaIntercalibration_Stat182: 3.05329265e-02 + syst_JES_EtaIntercalibration_Stat183: 7.63190566e-03 + syst_JES_EtaIntercalibration_Stat184: 6.19227400e-04 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 syst_JES_EtaIntercalibration_Stat187: 0.0 - syst_JES_EtaIntercalibration_Stat188: 3.548106079304845e-05 + syst_JES_EtaIntercalibration_Stat188: 3.54810608e-05 syst_JES_EtaIntercalibration_Stat189: 0.0 - syst_JES_EtaIntercalibration_Stat19: 1.3505628662431823e-06 + syst_JES_EtaIntercalibration_Stat19: 1.35056287e-06 syst_JES_EtaIntercalibration_Stat190: 0.0 - syst_JES_EtaIntercalibration_Stat191: 4.8895794297669404e-06 - syst_JES_EtaIntercalibration_Stat192: 4.8895794297669404e-06 + syst_JES_EtaIntercalibration_Stat191: 4.88957943e-06 + syst_JES_EtaIntercalibration_Stat192: 4.88957943e-06 syst_JES_EtaIntercalibration_Stat193: 0.0 syst_JES_EtaIntercalibration_Stat194: 0.0 - syst_JES_EtaIntercalibration_Stat195: 0.0007093412196904957 - syst_JES_EtaIntercalibration_Stat196: 0.006433554752234569 - syst_JES_EtaIntercalibration_Stat197: 0.02171565637967225 - syst_JES_EtaIntercalibration_Stat198: 0.0018377977221391913 - syst_JES_EtaIntercalibration_Stat199: 6.900798703054235e-05 - syst_JES_EtaIntercalibration_Stat2: 5.457287209548349e-06 + syst_JES_EtaIntercalibration_Stat195: 7.09341220e-04 + syst_JES_EtaIntercalibration_Stat196: 6.43355475e-03 + syst_JES_EtaIntercalibration_Stat197: 2.17156564e-02 + syst_JES_EtaIntercalibration_Stat198: 1.83779772e-03 + syst_JES_EtaIntercalibration_Stat199: 6.90079870e-05 + syst_JES_EtaIntercalibration_Stat2: 5.45728721e-06 syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 syst_JES_EtaIntercalibration_Stat201: 0.0 syst_JES_EtaIntercalibration_Stat202: 0.0 - syst_JES_EtaIntercalibration_Stat203: 3.548106079304845e-05 + syst_JES_EtaIntercalibration_Stat203: 3.54810608e-05 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 @@ -56569,9 +56569,9 @@ bins: syst_JES_EtaIntercalibration_Stat208: 0.0 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 1.142467398545048e-05 - syst_JES_EtaIntercalibration_Stat211: 0.0019250673762429718 - syst_JES_EtaIntercalibration_Stat212: 3.0215626338039066e-16 + syst_JES_EtaIntercalibration_Stat210: 1.14246740e-05 + syst_JES_EtaIntercalibration_Stat211: 1.92506738e-03 + syst_JES_EtaIntercalibration_Stat212: 3.02156263e-16 syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 syst_JES_EtaIntercalibration_Stat215: 0.0 @@ -56583,37 +56583,37 @@ bins: syst_JES_EtaIntercalibration_Stat220: 0.0 syst_JES_EtaIntercalibration_Stat221: 0.0 syst_JES_EtaIntercalibration_Stat222: 0.0 - syst_JES_EtaIntercalibration_Stat223: 1.4860995928940965e-12 - syst_JES_EtaIntercalibration_Stat224: 3.0215626338039066e-16 + syst_JES_EtaIntercalibration_Stat223: 1.48609959e-12 + syst_JES_EtaIntercalibration_Stat224: 3.02156263e-16 syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 syst_JES_EtaIntercalibration_Stat227: 0.0 syst_JES_EtaIntercalibration_Stat228: 0.0 syst_JES_EtaIntercalibration_Stat229: 0.0 - syst_JES_EtaIntercalibration_Stat23: 4.341855170316025e-06 + syst_JES_EtaIntercalibration_Stat23: 4.34185517e-06 syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 syst_JES_EtaIntercalibration_Stat232: 0.0 syst_JES_EtaIntercalibration_Stat233: 0.0 syst_JES_EtaIntercalibration_Stat234: 0.0 - syst_JES_EtaIntercalibration_Stat235: 1.5077502279887076e-12 + syst_JES_EtaIntercalibration_Stat235: 1.50775023e-12 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 syst_JES_EtaIntercalibration_Stat239: 0.0 - syst_JES_EtaIntercalibration_Stat24: 0.00022180246138174393 + syst_JES_EtaIntercalibration_Stat24: 2.21802461e-04 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 syst_JES_EtaIntercalibration_Stat243: 0.0 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 - syst_JES_EtaIntercalibration_Stat25: 0.00024074074748575485 - syst_JES_EtaIntercalibration_Stat26: 8.870994250928133e-06 + syst_JES_EtaIntercalibration_Stat25: 2.40740747e-04 + syst_JES_EtaIntercalibration_Stat26: 8.87099425e-06 syst_JES_EtaIntercalibration_Stat27: 0.0 syst_JES_EtaIntercalibration_Stat28: 0.0 syst_JES_EtaIntercalibration_Stat29: 0.0 - syst_JES_EtaIntercalibration_Stat3: 7.509079221182848e-06 + syst_JES_EtaIntercalibration_Stat3: 7.50907922e-06 syst_JES_EtaIntercalibration_Stat30: 0.0 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 @@ -56622,19 +56622,19 @@ bins: syst_JES_EtaIntercalibration_Stat35: 0.0 syst_JES_EtaIntercalibration_Stat36: 0.0 syst_JES_EtaIntercalibration_Stat37: 0.0 - syst_JES_EtaIntercalibration_Stat38: 4.823761499079323e-09 - syst_JES_EtaIntercalibration_Stat39: 3.4133153970882916e-06 + syst_JES_EtaIntercalibration_Stat38: 4.82376150e-09 + syst_JES_EtaIntercalibration_Stat39: 3.41331540e-06 syst_JES_EtaIntercalibration_Stat4: 0.0 - syst_JES_EtaIntercalibration_Stat40: 0.00018420382406454 - syst_JES_EtaIntercalibration_Stat41: 8.895845701786874e-05 - syst_JES_EtaIntercalibration_Stat42: 2.1849820937481387e-07 + syst_JES_EtaIntercalibration_Stat40: 1.84203824e-04 + syst_JES_EtaIntercalibration_Stat41: 8.89584570e-05 + syst_JES_EtaIntercalibration_Stat42: 2.18498209e-07 syst_JES_EtaIntercalibration_Stat43: 0.0 - syst_JES_EtaIntercalibration_Stat44: 5.085301171022223e-07 - syst_JES_EtaIntercalibration_Stat45: 1.7808018194060787e-05 - syst_JES_EtaIntercalibration_Stat46: 0.0005441661878507337 - syst_JES_EtaIntercalibration_Stat47: 0.0007450220265200218 - syst_JES_EtaIntercalibration_Stat48: 9.738065105553567e-05 - syst_JES_EtaIntercalibration_Stat49: 3.7420957697525596e-07 + syst_JES_EtaIntercalibration_Stat44: 5.08530117e-07 + syst_JES_EtaIntercalibration_Stat45: 1.78080182e-05 + syst_JES_EtaIntercalibration_Stat46: 5.44166188e-04 + syst_JES_EtaIntercalibration_Stat47: 7.45022027e-04 + syst_JES_EtaIntercalibration_Stat48: 9.73806511e-05 + syst_JES_EtaIntercalibration_Stat49: 3.74209577e-07 syst_JES_EtaIntercalibration_Stat5: 0.0 syst_JES_EtaIntercalibration_Stat50: 0.0 syst_JES_EtaIntercalibration_Stat51: 0.0 @@ -56645,21 +56645,21 @@ bins: syst_JES_EtaIntercalibration_Stat56: 0.0 syst_JES_EtaIntercalibration_Stat57: 0.0 syst_JES_EtaIntercalibration_Stat58: 0.0 - syst_JES_EtaIntercalibration_Stat59: 4.823761499079323e-09 + syst_JES_EtaIntercalibration_Stat59: 4.82376150e-09 syst_JES_EtaIntercalibration_Stat6: 0.0 - syst_JES_EtaIntercalibration_Stat60: 3.090142067931505e-08 - syst_JES_EtaIntercalibration_Stat61: 0.00010233738942830232 - syst_JES_EtaIntercalibration_Stat62: 0.0010558755750560763 - syst_JES_EtaIntercalibration_Stat63: 0.0003612374115453714 - syst_JES_EtaIntercalibration_Stat64: 2.1962465708567425e-06 + syst_JES_EtaIntercalibration_Stat60: 3.09014207e-08 + syst_JES_EtaIntercalibration_Stat61: 1.02337389e-04 + syst_JES_EtaIntercalibration_Stat62: 1.05587558e-03 + syst_JES_EtaIntercalibration_Stat63: 3.61237412e-04 + syst_JES_EtaIntercalibration_Stat64: 2.19624657e-06 syst_JES_EtaIntercalibration_Stat65: 0.0 - syst_JES_EtaIntercalibration_Stat66: 5.085301171022223e-07 - syst_JES_EtaIntercalibration_Stat67: 0.0003082953616258279 - syst_JES_EtaIntercalibration_Stat68: 0.0022778642013956845 - syst_JES_EtaIntercalibration_Stat69: 0.003521350324449415 + syst_JES_EtaIntercalibration_Stat66: 5.08530117e-07 + syst_JES_EtaIntercalibration_Stat67: 3.08295362e-04 + syst_JES_EtaIntercalibration_Stat68: 2.27786420e-03 + syst_JES_EtaIntercalibration_Stat69: 3.52135032e-03 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 0.00046234769384090156 - syst_JES_EtaIntercalibration_Stat71: 7.145715613568735e-06 + syst_JES_EtaIntercalibration_Stat70: 4.62347694e-04 + syst_JES_EtaIntercalibration_Stat71: 7.14571561e-06 syst_JES_EtaIntercalibration_Stat72: 0.0 syst_JES_EtaIntercalibration_Stat73: 0.0 syst_JES_EtaIntercalibration_Stat74: 0.0 @@ -56670,19 +56670,19 @@ bins: syst_JES_EtaIntercalibration_Stat79: 0.0 syst_JES_EtaIntercalibration_Stat8: 0.0 syst_JES_EtaIntercalibration_Stat80: 0.0 - syst_JES_EtaIntercalibration_Stat81: 4.823761499079323e-09 - syst_JES_EtaIntercalibration_Stat82: 7.660384324562312e-07 - syst_JES_EtaIntercalibration_Stat83: 0.0004369288107632639 - syst_JES_EtaIntercalibration_Stat84: 0.0015911716029391675 - syst_JES_EtaIntercalibration_Stat85: 0.001977352775809112 - syst_JES_EtaIntercalibration_Stat86: 7.666757512142927e-05 + syst_JES_EtaIntercalibration_Stat81: 4.82376150e-09 + syst_JES_EtaIntercalibration_Stat82: 7.66038432e-07 + syst_JES_EtaIntercalibration_Stat83: 4.36928811e-04 + syst_JES_EtaIntercalibration_Stat84: 1.59117160e-03 + syst_JES_EtaIntercalibration_Stat85: 1.97735278e-03 + syst_JES_EtaIntercalibration_Stat86: 7.66675751e-05 syst_JES_EtaIntercalibration_Stat87: 0.0 - syst_JES_EtaIntercalibration_Stat88: 0.00028593026085918223 - syst_JES_EtaIntercalibration_Stat89: 0.007710793020176329 + syst_JES_EtaIntercalibration_Stat88: 2.85930261e-04 + syst_JES_EtaIntercalibration_Stat89: 7.71079302e-03 syst_JES_EtaIntercalibration_Stat9: 0.0 - syst_JES_EtaIntercalibration_Stat90: 0.00418916610884553 - syst_JES_EtaIntercalibration_Stat91: 0.0008435865975108897 - syst_JES_EtaIntercalibration_Stat92: 8.070394331598674e-06 + syst_JES_EtaIntercalibration_Stat90: 4.18916611e-03 + syst_JES_EtaIntercalibration_Stat91: 8.43586598e-04 + syst_JES_EtaIntercalibration_Stat92: 8.07039433e-06 syst_JES_EtaIntercalibration_Stat93: 0.0 syst_JES_EtaIntercalibration_Stat94: 0.0 syst_JES_EtaIntercalibration_Stat95: 0.0 @@ -56690,159 +56690,159 @@ bins: syst_JES_EtaIntercalibration_Stat97: 0.0 syst_JES_EtaIntercalibration_Stat98: 0.0 syst_JES_EtaIntercalibration_Stat99: 0.0 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0020456814035425945 - syst_JES_Flavour_Comp: 0.14104712005213008 - syst_JES_Gjet_Generator: 1.4960430307982455 - syst_JES_Gjet_OOC: 0.9217621710614946 - syst_JES_Gjet_Purity: 0.25188590174918485 - syst_JES_Gjet_Stat1: 0.001230699575475266 - syst_JES_Gjet_Stat10: 0.0721805416992696 - syst_JES_Gjet_Stat11: 0.0757795051448609 - syst_JES_Gjet_Stat12: 0.022120667954426694 - syst_JES_Gjet_Stat13: 0.016712730499532386 - syst_JES_Gjet_Stat14: 0.0022128293398949684 - syst_JES_Gjet_Stat15: 9.681288867976207e-05 - syst_JES_Gjet_Stat2: 0.00112114104921582 - syst_JES_Gjet_Stat3: 0.00405692408112353 - syst_JES_Gjet_Stat4: 0.00425737301630947 - syst_JES_Gjet_Stat5: 0.003939060547897176 - syst_JES_Gjet_Stat6: 0.009159635724607176 - syst_JES_Gjet_Stat7: 0.020935382681002035 - syst_JES_Gjet_Stat8: 0.02257001122618241 - syst_JES_Gjet_Stat9: 0.05661385784417098 - syst_JES_Gjet_Veto: 0.3830255136084279 - syst_JES_Gjet_dPhi: 0.07150739262481888 - syst_JES_LArESZee: 1.61138791108783 - syst_JES_LArEsmear: 0.10797073341882975 - syst_JES_LAr_JVT: 0.1699058857132383 - syst_JES_MJB_Alpha: 0.00281859614125543 - syst_JES_MJB_Asym: 0.009315683375362219 - syst_JES_MJB_Beta: 0.003746162936926262 - syst_JES_MJB_Stat1: 0.003168358987993627 - syst_JES_MJB_Stat10: 1.3102964359259116e-12 - syst_JES_MJB_Stat11: 3.369791448665629e-16 - syst_JES_MJB_Stat12: 3.2129542480402673e-20 - syst_JES_MJB_Stat13: 2.1001116041772637e-20 + syst_JES_EtaIntercalibration_TotalStat_MJB: 2.04568140e-03 + syst_JES_Flavour_Comp: 1.41047120e-01 + syst_JES_Gjet_Generator: 1.49604303e+00 + syst_JES_Gjet_OOC: 9.21762171e-01 + syst_JES_Gjet_Purity: 2.51885902e-01 + syst_JES_Gjet_Stat1: 1.23069958e-03 + syst_JES_Gjet_Stat10: 7.21805417e-02 + syst_JES_Gjet_Stat11: 7.57795051e-02 + syst_JES_Gjet_Stat12: 2.21206680e-02 + syst_JES_Gjet_Stat13: 1.67127305e-02 + syst_JES_Gjet_Stat14: 2.21282934e-03 + syst_JES_Gjet_Stat15: 9.68128887e-05 + syst_JES_Gjet_Stat2: 1.12114105e-03 + syst_JES_Gjet_Stat3: 4.05692408e-03 + syst_JES_Gjet_Stat4: 4.25737302e-03 + syst_JES_Gjet_Stat5: 3.93906055e-03 + syst_JES_Gjet_Stat6: 9.15963572e-03 + syst_JES_Gjet_Stat7: 2.09353827e-02 + syst_JES_Gjet_Stat8: 2.25700112e-02 + syst_JES_Gjet_Stat9: 5.66138578e-02 + syst_JES_Gjet_Veto: 3.83025514e-01 + syst_JES_Gjet_dPhi: 7.15073926e-02 + syst_JES_LArESZee: 1.61138791e+00 + syst_JES_LArEsmear: 1.07970733e-01 + syst_JES_LAr_JVT: 1.69905886e-01 + syst_JES_MJB_Alpha: 2.81859614e-03 + syst_JES_MJB_Asym: 9.31568338e-03 + syst_JES_MJB_Beta: 3.74616294e-03 + syst_JES_MJB_Stat1: 3.16835899e-03 + syst_JES_MJB_Stat10: 1.31029644e-12 + syst_JES_MJB_Stat11: 3.36979145e-16 + syst_JES_MJB_Stat12: 3.21295425e-20 + syst_JES_MJB_Stat13: 2.10011160e-20 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 0.003938276145726706 - syst_JES_MJB_Stat3: 0.0034883728567198778 - syst_JES_MJB_Stat4: 0.0014056640806038973 - syst_JES_MJB_Stat5: 6.351030461271619e-05 - syst_JES_MJB_Stat6: 7.46423903073302e-06 - syst_JES_MJB_Stat7: 2.066336613588817e-10 - syst_JES_MJB_Stat8: 1.320688740771325e-12 - syst_JES_MJB_Stat9: 1.3198227153675406e-12 - syst_JES_MJB_Threshold: 0.010987668906551564 - syst_JES_Pileup_MuOffset: 0.023492162921919302 - syst_JES_Pileup_NPVOffset: 0.08428839822300575 - syst_JES_Pileup_Pt_term: 0.7875421702994703 - syst_JES_PunchThrough_MC15: 0.002596435007852113 + syst_JES_MJB_Stat2: 3.93827615e-03 + syst_JES_MJB_Stat3: 3.48837286e-03 + syst_JES_MJB_Stat4: 1.40566408e-03 + syst_JES_MJB_Stat5: 6.35103046e-05 + syst_JES_MJB_Stat6: 7.46423903e-06 + syst_JES_MJB_Stat7: 2.06633661e-10 + syst_JES_MJB_Stat8: 1.32068874e-12 + syst_JES_MJB_Stat9: 1.31982272e-12 + syst_JES_MJB_Threshold: 1.09876689e-02 + syst_JES_Pileup_MuOffset: 2.34921629e-02 + syst_JES_Pileup_NPVOffset: 8.42883982e-02 + syst_JES_Pileup_Pt_term: 7.87542170e-01 + syst_JES_PunchThrough_MC15: 2.59643501e-03 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 1.3757255976392968 - syst_JES_Zjet_MuScale: 0.06884352747353958 - syst_JES_Zjet_MuSmearID: 0.018390257441101794 - syst_JES_Zjet_MuSmearMS: 0.127636076796492 - syst_JES_Zjet_OOC: 0.44987222630431406 - syst_JES_Zjet_Stat1: 0.006794725270936273 - syst_JES_Zjet_Stat10: 0.10580089744420887 - syst_JES_Zjet_Stat11: 0.1902134590401005 - syst_JES_Zjet_Stat12: 0.18190197909863434 - syst_JES_Zjet_Stat13: 0.01605984205246116 - syst_JES_Zjet_Stat2: 0.0009750144511749555 - syst_JES_Zjet_Stat3: 0.004068826243525275 - syst_JES_Zjet_Stat4: 0.0054243908413756465 - syst_JES_Zjet_Stat5: 0.0017911989525175589 - syst_JES_Zjet_Stat6: 0.005999586714932954 - syst_JES_Zjet_Stat7: 0.003985396593502333 - syst_JES_Zjet_Stat8: 0.013342228777456937 - syst_JES_Zjet_Stat9: 0.03928539518701575 - syst_JES_Zjet_Veto: 0.07120370267759957 - syst_JES_Zjet_dPhi: 0.07032056793712634 + syst_JES_Zjet_MC: 1.37572560e+00 + syst_JES_Zjet_MuScale: 6.88435275e-02 + syst_JES_Zjet_MuSmearID: 1.83902574e-02 + syst_JES_Zjet_MuSmearMS: 1.27636077e-01 + syst_JES_Zjet_OOC: 4.49872226e-01 + syst_JES_Zjet_Stat1: 6.79472527e-03 + syst_JES_Zjet_Stat10: 1.05800897e-01 + syst_JES_Zjet_Stat11: 1.90213459e-01 + syst_JES_Zjet_Stat12: 1.81901979e-01 + syst_JES_Zjet_Stat13: 1.60598421e-02 + syst_JES_Zjet_Stat2: 9.75014451e-04 + syst_JES_Zjet_Stat3: 4.06882624e-03 + syst_JES_Zjet_Stat4: 5.42439084e-03 + syst_JES_Zjet_Stat5: 1.79119895e-03 + syst_JES_Zjet_Stat6: 5.99958671e-03 + syst_JES_Zjet_Stat7: 3.98539659e-03 + syst_JES_Zjet_Stat8: 1.33422288e-02 + syst_JES_Zjet_Stat9: 3.92853952e-02 + syst_JES_Zjet_Veto: 7.12037027e-02 + syst_JES_Zjet_dPhi: 7.03205679e-02 syst_PRW: 0.0 syst_Unfolding_bias: 0.08462 - syst_cleaning: 0.3153198495179141 + syst_cleaning: 3.15319850e-01 syst_lumi: 1.2512 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 1.4925082076826246 - syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.009116289047633362 - syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.32903700019906573 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 0.6507039342127878 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0057489952165574116 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.3126315842969165 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 1.49250821e+00 + syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 9.11628905e-03 + syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 3.29037000e-01 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 6.50703934e-01 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 5.74899522e-03 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 3.12631584e-01 - stat: 0.3659 syst_JER_CROSS_CALIB_FORWARD: 0.03709 syst_JER_NOISE_FORWARD: 0.1691 - syst_JER_NP0: 0.4286257396319078 - syst_JER_NP1: 0.09971251476118734 - syst_JER_NP2: 0.07994844760844329 - syst_JER_NP3: 0.1753075226566162 - syst_JER_NP4: 0.04402945832053808 - syst_JER_NP5: 0.06878651248609716 - syst_JER_NP6: 0.058511970356500555 - syst_JER_NP7: 0.0069894260929689355 - syst_JER_NP8: 0.024051957820518482 - syst_JES_EtaIntercalibration_Modelling: 1.4235212502804446 - syst_JES_EtaIntercalibration_NonClosure: 0.4020265186215954 + syst_JER_NP0: 4.28625740e-01 + syst_JER_NP1: 9.97125148e-02 + syst_JER_NP2: 7.99484476e-02 + syst_JER_NP3: 1.75307523e-01 + syst_JER_NP4: 4.40294583e-02 + syst_JER_NP5: 6.87865125e-02 + syst_JER_NP6: 5.85119704e-02 + syst_JER_NP7: 6.98942609e-03 + syst_JER_NP8: 2.40519578e-02 + syst_JES_EtaIntercalibration_Modelling: 1.42352125e+00 + syst_JES_EtaIntercalibration_NonClosure: 4.02026519e-01 syst_JES_EtaIntercalibration_Stat0: 0.0 - syst_JES_EtaIntercalibration_Stat1: 1.6255296829033915e-08 + syst_JES_EtaIntercalibration_Stat1: 1.62552968e-08 syst_JES_EtaIntercalibration_Stat10: 0.0 syst_JES_EtaIntercalibration_Stat100: 0.0 syst_JES_EtaIntercalibration_Stat101: 0.0 syst_JES_EtaIntercalibration_Stat102: 0.0 - syst_JES_EtaIntercalibration_Stat103: 1.497209005950739e-07 - syst_JES_EtaIntercalibration_Stat104: 0.000149000268456134 - syst_JES_EtaIntercalibration_Stat105: 0.0015898278987047623 - syst_JES_EtaIntercalibration_Stat106: 0.0004677929670270813 - syst_JES_EtaIntercalibration_Stat107: 1.905978153075213e-05 - syst_JES_EtaIntercalibration_Stat108: 0.00017689214227884742 - syst_JES_EtaIntercalibration_Stat109: 0.012741747005414918 + syst_JES_EtaIntercalibration_Stat103: 1.49720901e-07 + syst_JES_EtaIntercalibration_Stat104: 1.49000268e-04 + syst_JES_EtaIntercalibration_Stat105: 1.58982790e-03 + syst_JES_EtaIntercalibration_Stat106: 4.67792967e-04 + syst_JES_EtaIntercalibration_Stat107: 1.90597815e-05 + syst_JES_EtaIntercalibration_Stat108: 1.76892142e-04 + syst_JES_EtaIntercalibration_Stat109: 1.27417470e-02 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 0.011314490300053291 - syst_JES_EtaIntercalibration_Stat111: 0.0007949102009032215 - syst_JES_EtaIntercalibration_Stat112: 0.0001198335898318998 + syst_JES_EtaIntercalibration_Stat110: 1.13144903e-02 + syst_JES_EtaIntercalibration_Stat111: 7.94910201e-04 + syst_JES_EtaIntercalibration_Stat112: 1.19833590e-04 syst_JES_EtaIntercalibration_Stat113: 0.0 syst_JES_EtaIntercalibration_Stat114: 0.0 syst_JES_EtaIntercalibration_Stat115: 0.0 syst_JES_EtaIntercalibration_Stat116: 0.0 syst_JES_EtaIntercalibration_Stat117: 0.0 - syst_JES_EtaIntercalibration_Stat118: 1.0106516462164399e-07 - syst_JES_EtaIntercalibration_Stat119: 1.0106516462164399e-07 + syst_JES_EtaIntercalibration_Stat118: 1.01065165e-07 + syst_JES_EtaIntercalibration_Stat119: 1.01065165e-07 syst_JES_EtaIntercalibration_Stat12: 0.0 syst_JES_EtaIntercalibration_Stat120: 0.0 syst_JES_EtaIntercalibration_Stat121: 0.0 syst_JES_EtaIntercalibration_Stat122: 0.0 - syst_JES_EtaIntercalibration_Stat123: 7.822746880092695e-05 - syst_JES_EtaIntercalibration_Stat124: 0.002834941644506417 - syst_JES_EtaIntercalibration_Stat125: 0.012821694925008939 - syst_JES_EtaIntercalibration_Stat126: 0.005938051111265378 - syst_JES_EtaIntercalibration_Stat127: 0.0003412744460108316 - syst_JES_EtaIntercalibration_Stat128: 0.0556548587276978 - syst_JES_EtaIntercalibration_Stat129: 0.12154573737898008 + syst_JES_EtaIntercalibration_Stat123: 7.82274688e-05 + syst_JES_EtaIntercalibration_Stat124: 2.83494164e-03 + syst_JES_EtaIntercalibration_Stat125: 1.28216949e-02 + syst_JES_EtaIntercalibration_Stat126: 5.93805111e-03 + syst_JES_EtaIntercalibration_Stat127: 3.41274446e-04 + syst_JES_EtaIntercalibration_Stat128: 5.56548587e-02 + syst_JES_EtaIntercalibration_Stat129: 1.21545737e-01 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 0.017472054115071873 - syst_JES_EtaIntercalibration_Stat131: 0.00022132466536741897 + syst_JES_EtaIntercalibration_Stat130: 1.74720541e-02 + syst_JES_EtaIntercalibration_Stat131: 2.21324665e-04 syst_JES_EtaIntercalibration_Stat132: 0.0 syst_JES_EtaIntercalibration_Stat133: 0.0 syst_JES_EtaIntercalibration_Stat134: 0.0 syst_JES_EtaIntercalibration_Stat135: 0.0 syst_JES_EtaIntercalibration_Stat136: 0.0 - syst_JES_EtaIntercalibration_Stat137: 1.0106516462164399e-07 - syst_JES_EtaIntercalibration_Stat138: 1.0106516462164399e-07 - syst_JES_EtaIntercalibration_Stat139: 4.859268540634485e-07 + syst_JES_EtaIntercalibration_Stat137: 1.01065165e-07 + syst_JES_EtaIntercalibration_Stat138: 1.01065165e-07 + syst_JES_EtaIntercalibration_Stat139: 4.85926854e-07 syst_JES_EtaIntercalibration_Stat14: 0.0 syst_JES_EtaIntercalibration_Stat140: 0.0 syst_JES_EtaIntercalibration_Stat141: 0.0 - syst_JES_EtaIntercalibration_Stat142: 8.172942233369815e-05 - syst_JES_EtaIntercalibration_Stat143: 0.013890753327303742 - syst_JES_EtaIntercalibration_Stat144: 0.12992493986914136 - syst_JES_EtaIntercalibration_Stat145: 0.04211548052676118 - syst_JES_EtaIntercalibration_Stat146: 0.06840205461095449 - syst_JES_EtaIntercalibration_Stat147: 0.06657130068580605 - syst_JES_EtaIntercalibration_Stat148: 0.011230592926021314 - syst_JES_EtaIntercalibration_Stat149: 0.00013614421875349686 + syst_JES_EtaIntercalibration_Stat142: 8.17294223e-05 + syst_JES_EtaIntercalibration_Stat143: 1.38907533e-02 + syst_JES_EtaIntercalibration_Stat144: 1.29924940e-01 + syst_JES_EtaIntercalibration_Stat145: 4.21154805e-02 + syst_JES_EtaIntercalibration_Stat146: 6.84020546e-02 + syst_JES_EtaIntercalibration_Stat147: 6.65713007e-02 + syst_JES_EtaIntercalibration_Stat148: 1.12305929e-02 + syst_JES_EtaIntercalibration_Stat149: 1.36144219e-04 syst_JES_EtaIntercalibration_Stat15: 0.0 syst_JES_EtaIntercalibration_Stat150: 0.0 syst_JES_EtaIntercalibration_Stat151: 0.0 @@ -56850,60 +56850,60 @@ bins: syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 1.0106516462164399e-07 - syst_JES_EtaIntercalibration_Stat157: 4.859268540634485e-07 + syst_JES_EtaIntercalibration_Stat156: 1.01065165e-07 + syst_JES_EtaIntercalibration_Stat157: 4.85926854e-07 syst_JES_EtaIntercalibration_Stat158: 0.0 syst_JES_EtaIntercalibration_Stat159: 0.0 - syst_JES_EtaIntercalibration_Stat16: 3.2942740334556266e-10 - syst_JES_EtaIntercalibration_Stat160: 9.948977233866806e-05 - syst_JES_EtaIntercalibration_Stat161: 0.006814036997808274 - syst_JES_EtaIntercalibration_Stat162: 0.07016641130198978 - syst_JES_EtaIntercalibration_Stat163: 0.06377683043237566 - syst_JES_EtaIntercalibration_Stat164: 0.04903537778991817 - syst_JES_EtaIntercalibration_Stat165: 0.04383714264182829 - syst_JES_EtaIntercalibration_Stat166: 0.005173922224876887 - syst_JES_EtaIntercalibration_Stat167: 8.570989835923271e-05 + syst_JES_EtaIntercalibration_Stat16: 3.29427403e-10 + syst_JES_EtaIntercalibration_Stat160: 9.94897723e-05 + syst_JES_EtaIntercalibration_Stat161: 6.81403700e-03 + syst_JES_EtaIntercalibration_Stat162: 7.01664113e-02 + syst_JES_EtaIntercalibration_Stat163: 6.37768304e-02 + syst_JES_EtaIntercalibration_Stat164: 4.90353778e-02 + syst_JES_EtaIntercalibration_Stat165: 4.38371426e-02 + syst_JES_EtaIntercalibration_Stat166: 5.17392222e-03 + syst_JES_EtaIntercalibration_Stat167: 8.57098984e-05 syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 - syst_JES_EtaIntercalibration_Stat17: 2.5811103715261774e-09 + syst_JES_EtaIntercalibration_Stat17: 2.58111037e-09 syst_JES_EtaIntercalibration_Stat170: 0.0 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 - syst_JES_EtaIntercalibration_Stat174: 4.859268540634485e-07 - syst_JES_EtaIntercalibration_Stat175: 4.859268540634485e-07 + syst_JES_EtaIntercalibration_Stat174: 4.85926854e-07 + syst_JES_EtaIntercalibration_Stat175: 4.85926854e-07 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 - syst_JES_EtaIntercalibration_Stat178: 0.0005457551949363378 - syst_JES_EtaIntercalibration_Stat179: 0.009326450235754222 - syst_JES_EtaIntercalibration_Stat18: 1.9138744159426972e-07 - syst_JES_EtaIntercalibration_Stat180: 0.05047398810278419 - syst_JES_EtaIntercalibration_Stat181: 0.05131275353165137 - syst_JES_EtaIntercalibration_Stat182: 0.013782937522531255 - syst_JES_EtaIntercalibration_Stat183: 0.007283198250082171 - syst_JES_EtaIntercalibration_Stat184: 0.0011930957193522864 + syst_JES_EtaIntercalibration_Stat178: 5.45755195e-04 + syst_JES_EtaIntercalibration_Stat179: 9.32645024e-03 + syst_JES_EtaIntercalibration_Stat18: 1.91387442e-07 + syst_JES_EtaIntercalibration_Stat180: 5.04739881e-02 + syst_JES_EtaIntercalibration_Stat181: 5.13127535e-02 + syst_JES_EtaIntercalibration_Stat182: 1.37829375e-02 + syst_JES_EtaIntercalibration_Stat183: 7.28319825e-03 + syst_JES_EtaIntercalibration_Stat184: 1.19309572e-03 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 syst_JES_EtaIntercalibration_Stat187: 0.0 - syst_JES_EtaIntercalibration_Stat188: 1.5034201009697855e-05 + syst_JES_EtaIntercalibration_Stat188: 1.50342010e-05 syst_JES_EtaIntercalibration_Stat189: 0.0 - syst_JES_EtaIntercalibration_Stat19: 1.275149557816651e-07 + syst_JES_EtaIntercalibration_Stat19: 1.27514956e-07 syst_JES_EtaIntercalibration_Stat190: 0.0 - syst_JES_EtaIntercalibration_Stat191: 4.859268540634485e-07 - syst_JES_EtaIntercalibration_Stat192: 4.859268540634485e-07 + syst_JES_EtaIntercalibration_Stat191: 4.85926854e-07 + syst_JES_EtaIntercalibration_Stat192: 4.85926854e-07 syst_JES_EtaIntercalibration_Stat193: 0.0 syst_JES_EtaIntercalibration_Stat194: 0.0 - syst_JES_EtaIntercalibration_Stat195: 0.0005137317279475739 - syst_JES_EtaIntercalibration_Stat196: 0.0031406574152556023 - syst_JES_EtaIntercalibration_Stat197: 0.012585380596152029 - syst_JES_EtaIntercalibration_Stat198: 0.0022522841738999103 - syst_JES_EtaIntercalibration_Stat199: 7.029744594755915e-05 - syst_JES_EtaIntercalibration_Stat2: 5.545596918952909e-07 + syst_JES_EtaIntercalibration_Stat195: 5.13731728e-04 + syst_JES_EtaIntercalibration_Stat196: 3.14065742e-03 + syst_JES_EtaIntercalibration_Stat197: 1.25853806e-02 + syst_JES_EtaIntercalibration_Stat198: 2.25228417e-03 + syst_JES_EtaIntercalibration_Stat199: 7.02974459e-05 + syst_JES_EtaIntercalibration_Stat2: 5.54559692e-07 syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 syst_JES_EtaIntercalibration_Stat201: 0.0 syst_JES_EtaIntercalibration_Stat202: 0.0 - syst_JES_EtaIntercalibration_Stat203: 1.5034201009697855e-05 + syst_JES_EtaIntercalibration_Stat203: 1.50342010e-05 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 @@ -56911,9 +56911,9 @@ bins: syst_JES_EtaIntercalibration_Stat208: 0.0 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 5.567305393962213e-05 - syst_JES_EtaIntercalibration_Stat211: 0.0020244503626108 - syst_JES_EtaIntercalibration_Stat212: 1.082271947109413e-12 + syst_JES_EtaIntercalibration_Stat210: 5.56730539e-05 + syst_JES_EtaIntercalibration_Stat211: 2.02445036e-03 + syst_JES_EtaIntercalibration_Stat212: 1.08227195e-12 syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 syst_JES_EtaIntercalibration_Stat215: 0.0 @@ -56925,37 +56925,37 @@ bins: syst_JES_EtaIntercalibration_Stat220: 0.0 syst_JES_EtaIntercalibration_Stat221: 0.0 syst_JES_EtaIntercalibration_Stat222: 0.0 - syst_JES_EtaIntercalibration_Stat223: 6.439764902541086e-10 - syst_JES_EtaIntercalibration_Stat224: 1.0821853445690346e-12 + syst_JES_EtaIntercalibration_Stat223: 6.43976490e-10 + syst_JES_EtaIntercalibration_Stat224: 1.08218534e-12 syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 syst_JES_EtaIntercalibration_Stat227: 0.0 syst_JES_EtaIntercalibration_Stat228: 0.0 syst_JES_EtaIntercalibration_Stat229: 0.0 - syst_JES_EtaIntercalibration_Stat23: 4.412053407145022e-07 + syst_JES_EtaIntercalibration_Stat23: 4.41205341e-07 syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 syst_JES_EtaIntercalibration_Stat232: 0.0 syst_JES_EtaIntercalibration_Stat233: 0.0 syst_JES_EtaIntercalibration_Stat234: 0.0 - syst_JES_EtaIntercalibration_Stat235: 6.531563595342237e-10 + syst_JES_EtaIntercalibration_Stat235: 6.53156360e-10 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 syst_JES_EtaIntercalibration_Stat239: 0.0 - syst_JES_EtaIntercalibration_Stat24: 4.6076643757982195e-05 + syst_JES_EtaIntercalibration_Stat24: 4.60766438e-05 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 syst_JES_EtaIntercalibration_Stat243: 0.0 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 - syst_JES_EtaIntercalibration_Stat25: 0.00013361232381408535 - syst_JES_EtaIntercalibration_Stat26: 8.22053149133315e-07 + syst_JES_EtaIntercalibration_Stat25: 1.33612324e-04 + syst_JES_EtaIntercalibration_Stat26: 8.22053149e-07 syst_JES_EtaIntercalibration_Stat27: 0.0 syst_JES_EtaIntercalibration_Stat28: 0.0 syst_JES_EtaIntercalibration_Stat29: 0.0 - syst_JES_EtaIntercalibration_Stat3: 7.12622277226863e-07 + syst_JES_EtaIntercalibration_Stat3: 7.12622277e-07 syst_JES_EtaIntercalibration_Stat30: 0.0 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 @@ -56964,19 +56964,19 @@ bins: syst_JES_EtaIntercalibration_Stat35: 0.0 syst_JES_EtaIntercalibration_Stat36: 0.0 syst_JES_EtaIntercalibration_Stat37: 0.0 - syst_JES_EtaIntercalibration_Stat38: 3.2942740334556266e-10 - syst_JES_EtaIntercalibration_Stat39: 3.092889062025989e-07 + syst_JES_EtaIntercalibration_Stat38: 3.29427403e-10 + syst_JES_EtaIntercalibration_Stat39: 3.09288906e-07 syst_JES_EtaIntercalibration_Stat4: 0.0 - syst_JES_EtaIntercalibration_Stat40: 3.487046314576277e-05 - syst_JES_EtaIntercalibration_Stat41: 1.3041678841314872e-05 - syst_JES_EtaIntercalibration_Stat42: 1.7381129853953683e-08 + syst_JES_EtaIntercalibration_Stat40: 3.48704631e-05 + syst_JES_EtaIntercalibration_Stat41: 1.30416788e-05 + syst_JES_EtaIntercalibration_Stat42: 1.73811299e-08 syst_JES_EtaIntercalibration_Stat43: 0.0 - syst_JES_EtaIntercalibration_Stat44: 3.6243163148378756e-08 - syst_JES_EtaIntercalibration_Stat45: 2.01526189551135e-06 - syst_JES_EtaIntercalibration_Stat46: 9.756671946416974e-05 - syst_JES_EtaIntercalibration_Stat47: 0.00025605278264451646 - syst_JES_EtaIntercalibration_Stat48: 2.100454324068962e-05 - syst_JES_EtaIntercalibration_Stat49: 2.8630799849113544e-08 + syst_JES_EtaIntercalibration_Stat44: 3.62431631e-08 + syst_JES_EtaIntercalibration_Stat45: 2.01526190e-06 + syst_JES_EtaIntercalibration_Stat46: 9.75667195e-05 + syst_JES_EtaIntercalibration_Stat47: 2.56052783e-04 + syst_JES_EtaIntercalibration_Stat48: 2.10045432e-05 + syst_JES_EtaIntercalibration_Stat49: 2.86307998e-08 syst_JES_EtaIntercalibration_Stat5: 0.0 syst_JES_EtaIntercalibration_Stat50: 0.0 syst_JES_EtaIntercalibration_Stat51: 0.0 @@ -56987,21 +56987,21 @@ bins: syst_JES_EtaIntercalibration_Stat56: 0.0 syst_JES_EtaIntercalibration_Stat57: 0.0 syst_JES_EtaIntercalibration_Stat58: 0.0 - syst_JES_EtaIntercalibration_Stat59: 3.2942740334556266e-10 + syst_JES_EtaIntercalibration_Stat59: 3.29427403e-10 syst_JES_EtaIntercalibration_Stat6: 0.0 - syst_JES_EtaIntercalibration_Stat60: 2.2088352754506163e-09 - syst_JES_EtaIntercalibration_Stat61: 1.9407977502820846e-05 - syst_JES_EtaIntercalibration_Stat62: 0.0005060122207022277 - syst_JES_EtaIntercalibration_Stat63: 6.379818238006472e-05 - syst_JES_EtaIntercalibration_Stat64: 2.0163186132156792e-07 + syst_JES_EtaIntercalibration_Stat60: 2.20883528e-09 + syst_JES_EtaIntercalibration_Stat61: 1.94079775e-05 + syst_JES_EtaIntercalibration_Stat62: 5.06012221e-04 + syst_JES_EtaIntercalibration_Stat63: 6.37981824e-05 + syst_JES_EtaIntercalibration_Stat64: 2.01631861e-07 syst_JES_EtaIntercalibration_Stat65: 0.0 - syst_JES_EtaIntercalibration_Stat66: 3.6243163148378756e-08 - syst_JES_EtaIntercalibration_Stat67: 6.218623722335996e-05 - syst_JES_EtaIntercalibration_Stat68: 0.0009330519854220343 - syst_JES_EtaIntercalibration_Stat69: 0.0011935496166896457 + syst_JES_EtaIntercalibration_Stat66: 3.62431631e-08 + syst_JES_EtaIntercalibration_Stat67: 6.21862372e-05 + syst_JES_EtaIntercalibration_Stat68: 9.33051985e-04 + syst_JES_EtaIntercalibration_Stat69: 1.19354962e-03 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 0.00019208385538613075 - syst_JES_EtaIntercalibration_Stat71: 6.654552248649041e-07 + syst_JES_EtaIntercalibration_Stat70: 1.92083855e-04 + syst_JES_EtaIntercalibration_Stat71: 6.65455225e-07 syst_JES_EtaIntercalibration_Stat72: 0.0 syst_JES_EtaIntercalibration_Stat73: 0.0 syst_JES_EtaIntercalibration_Stat74: 0.0 @@ -57012,19 +57012,19 @@ bins: syst_JES_EtaIntercalibration_Stat79: 0.0 syst_JES_EtaIntercalibration_Stat8: 0.0 syst_JES_EtaIntercalibration_Stat80: 0.0 - syst_JES_EtaIntercalibration_Stat81: 3.2942740334556266e-10 - syst_JES_EtaIntercalibration_Stat82: 6.179185443891451e-08 - syst_JES_EtaIntercalibration_Stat83: 0.00010399542045205644 - syst_JES_EtaIntercalibration_Stat84: 0.0006647830774019447 - syst_JES_EtaIntercalibration_Stat85: 0.0005128372079666217 - syst_JES_EtaIntercalibration_Stat86: 1.1867783565181831e-05 + syst_JES_EtaIntercalibration_Stat81: 3.29427403e-10 + syst_JES_EtaIntercalibration_Stat82: 6.17918544e-08 + syst_JES_EtaIntercalibration_Stat83: 1.03995420e-04 + syst_JES_EtaIntercalibration_Stat84: 6.64783077e-04 + syst_JES_EtaIntercalibration_Stat85: 5.12837208e-04 + syst_JES_EtaIntercalibration_Stat86: 1.18677836e-05 syst_JES_EtaIntercalibration_Stat87: 0.0 - syst_JES_EtaIntercalibration_Stat88: 6.404084692600497e-05 - syst_JES_EtaIntercalibration_Stat89: 0.0027438096121086826 + syst_JES_EtaIntercalibration_Stat88: 6.40408469e-05 + syst_JES_EtaIntercalibration_Stat89: 2.74380961e-03 syst_JES_EtaIntercalibration_Stat9: 0.0 - syst_JES_EtaIntercalibration_Stat90: 0.0013445685953122658 - syst_JES_EtaIntercalibration_Stat91: 0.0003219342013517669 - syst_JES_EtaIntercalibration_Stat92: 7.553953324584419e-07 + syst_JES_EtaIntercalibration_Stat90: 1.34456860e-03 + syst_JES_EtaIntercalibration_Stat91: 3.21934201e-04 + syst_JES_EtaIntercalibration_Stat92: 7.55395332e-07 syst_JES_EtaIntercalibration_Stat93: 0.0 syst_JES_EtaIntercalibration_Stat94: 0.0 syst_JES_EtaIntercalibration_Stat95: 0.0 @@ -57032,159 +57032,159 @@ bins: syst_JES_EtaIntercalibration_Stat97: 0.0 syst_JES_EtaIntercalibration_Stat98: 0.0 syst_JES_EtaIntercalibration_Stat99: 0.0 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.010340051407995998 - syst_JES_Flavour_Comp: 0.08595687407066407 - syst_JES_Gjet_Generator: 0.7643287430811431 - syst_JES_Gjet_OOC: 0.4897680267228558 - syst_JES_Gjet_Purity: 0.1321227694229878 - syst_JES_Gjet_Stat1: 0.0005680302693299011 - syst_JES_Gjet_Stat10: 0.042728468577752705 - syst_JES_Gjet_Stat11: 0.05727604800437963 - syst_JES_Gjet_Stat12: 0.025053167464414557 - syst_JES_Gjet_Stat13: 0.011355035931250944 - syst_JES_Gjet_Stat14: 0.0025461759562135527 - syst_JES_Gjet_Stat15: 0.00015665193104459323 - syst_JES_Gjet_Stat2: 0.000611512513935733 - syst_JES_Gjet_Stat3: 0.0017264659358064381 - syst_JES_Gjet_Stat4: 0.002353377307190668 - syst_JES_Gjet_Stat5: 0.0016260034040554774 - syst_JES_Gjet_Stat6: 0.0034694649083107905 - syst_JES_Gjet_Stat7: 0.006634216231025335 - syst_JES_Gjet_Stat8: 0.009465918061656777 - syst_JES_Gjet_Stat9: 0.02497953712541528 - syst_JES_Gjet_Veto: 0.20677047057063055 - syst_JES_Gjet_dPhi: 0.03285500266321706 - syst_JES_LArESZee: 0.8910358073612981 - syst_JES_LArEsmear: 0.05732779496021105 - syst_JES_LAr_JVT: 0.08453146204224792 - syst_JES_MJB_Alpha: 0.0007801916879844337 - syst_JES_MJB_Asym: 0.005221507639561585 - syst_JES_MJB_Beta: 0.0024764574133225065 - syst_JES_MJB_Stat1: 0.00013325630144574776 - syst_JES_MJB_Stat10: 5.72442791946172e-10 - syst_JES_MJB_Stat11: 1.2080188357389136e-12 - syst_JES_MJB_Stat12: 1.3891047476702397e-15 - syst_JES_MJB_Stat13: 9.078544307872271e-16 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.03400514e-02 + syst_JES_Flavour_Comp: 8.59568741e-02 + syst_JES_Gjet_Generator: 7.64328743e-01 + syst_JES_Gjet_OOC: 4.89768027e-01 + syst_JES_Gjet_Purity: 1.32122769e-01 + syst_JES_Gjet_Stat1: 5.68030269e-04 + syst_JES_Gjet_Stat10: 4.27284686e-02 + syst_JES_Gjet_Stat11: 5.72760480e-02 + syst_JES_Gjet_Stat12: 2.50531675e-02 + syst_JES_Gjet_Stat13: 1.13550359e-02 + syst_JES_Gjet_Stat14: 2.54617596e-03 + syst_JES_Gjet_Stat15: 1.56651931e-04 + syst_JES_Gjet_Stat2: 6.11512514e-04 + syst_JES_Gjet_Stat3: 1.72646594e-03 + syst_JES_Gjet_Stat4: 2.35337731e-03 + syst_JES_Gjet_Stat5: 1.62600340e-03 + syst_JES_Gjet_Stat6: 3.46946491e-03 + syst_JES_Gjet_Stat7: 6.63421623e-03 + syst_JES_Gjet_Stat8: 9.46591806e-03 + syst_JES_Gjet_Stat9: 2.49795371e-02 + syst_JES_Gjet_Veto: 2.06770471e-01 + syst_JES_Gjet_dPhi: 3.28550027e-02 + syst_JES_LArESZee: 8.91035807e-01 + syst_JES_LArEsmear: 5.73277950e-02 + syst_JES_LAr_JVT: 8.45314620e-02 + syst_JES_MJB_Alpha: 7.80191688e-04 + syst_JES_MJB_Asym: 5.22150764e-03 + syst_JES_MJB_Beta: 2.47645741e-03 + syst_JES_MJB_Stat1: 1.33256301e-04 + syst_JES_MJB_Stat10: 5.72442792e-10 + syst_JES_MJB_Stat11: 1.20801884e-12 + syst_JES_MJB_Stat12: 1.38910475e-15 + syst_JES_MJB_Stat13: 9.07854431e-16 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 0.0010516389494498576 - syst_JES_MJB_Stat3: 0.003312376211649274 - syst_JES_MJB_Stat4: 0.001363511327125668 - syst_JES_MJB_Stat5: 7.504449879904589e-05 - syst_JES_MJB_Stat6: 3.9173061468042996e-05 - syst_JES_MJB_Stat7: 1.5268028557787323e-08 - syst_JES_MJB_Stat8: 5.768595215054727e-10 - syst_JES_MJB_Stat9: 5.766863164247158e-10 - syst_JES_MJB_Threshold: 0.006694324069687694 - syst_JES_Pileup_MuOffset: 0.027536158827984703 - syst_JES_Pileup_NPVOffset: 0.04504408840236419 - syst_JES_Pileup_Pt_term: 0.4072903970142188 - syst_JES_PunchThrough_MC15: 0.0014518703342585385 + syst_JES_MJB_Stat2: 1.05163895e-03 + syst_JES_MJB_Stat3: 3.31237621e-03 + syst_JES_MJB_Stat4: 1.36351133e-03 + syst_JES_MJB_Stat5: 7.50444988e-05 + syst_JES_MJB_Stat6: 3.91730615e-05 + syst_JES_MJB_Stat7: 1.52680286e-08 + syst_JES_MJB_Stat8: 5.76859522e-10 + syst_JES_MJB_Stat9: 5.76686316e-10 + syst_JES_MJB_Threshold: 6.69432407e-03 + syst_JES_Pileup_MuOffset: 2.75361588e-02 + syst_JES_Pileup_NPVOffset: 4.50440884e-02 + syst_JES_Pileup_Pt_term: 4.07290397e-01 + syst_JES_PunchThrough_MC15: 1.45187033e-03 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.7073695922217749 - syst_JES_Zjet_MuScale: 0.037704347229464134 - syst_JES_Zjet_MuSmearID: 0.008028561061609983 - syst_JES_Zjet_MuSmearMS: 0.07015653551166849 - syst_JES_Zjet_OOC: 0.22947406716228305 - syst_JES_Zjet_Stat1: 0.0035171648619487187 - syst_JES_Zjet_Stat10: 0.04288955467243744 - syst_JES_Zjet_Stat11: 0.08346430794058021 - syst_JES_Zjet_Stat12: 0.14786868329703892 - syst_JES_Zjet_Stat13: 0.013725447779580818 - syst_JES_Zjet_Stat2: 0.00019793167779564747 - syst_JES_Zjet_Stat3: 0.0030487262914207303 - syst_JES_Zjet_Stat4: 0.00338427924379771 - syst_JES_Zjet_Stat5: 0.0012165198919458736 - syst_JES_Zjet_Stat6: 0.0010320931353322723 - syst_JES_Zjet_Stat7: 0.002125166111154608 - syst_JES_Zjet_Stat8: 0.004505743112961502 - syst_JES_Zjet_Stat9: 0.014747194877331756 - syst_JES_Zjet_Veto: 0.039080491296809454 - syst_JES_Zjet_dPhi: 0.0367632112307943 + syst_JES_Zjet_MC: 7.07369592e-01 + syst_JES_Zjet_MuScale: 3.77043472e-02 + syst_JES_Zjet_MuSmearID: 8.02856106e-03 + syst_JES_Zjet_MuSmearMS: 7.01565355e-02 + syst_JES_Zjet_OOC: 2.29474067e-01 + syst_JES_Zjet_Stat1: 3.51716486e-03 + syst_JES_Zjet_Stat10: 4.28895547e-02 + syst_JES_Zjet_Stat11: 8.34643079e-02 + syst_JES_Zjet_Stat12: 1.47868683e-01 + syst_JES_Zjet_Stat13: 1.37254478e-02 + syst_JES_Zjet_Stat2: 1.97931678e-04 + syst_JES_Zjet_Stat3: 3.04872629e-03 + syst_JES_Zjet_Stat4: 3.38427924e-03 + syst_JES_Zjet_Stat5: 1.21651989e-03 + syst_JES_Zjet_Stat6: 1.03209314e-03 + syst_JES_Zjet_Stat7: 2.12516611e-03 + syst_JES_Zjet_Stat8: 4.50574311e-03 + syst_JES_Zjet_Stat9: 1.47471949e-02 + syst_JES_Zjet_Veto: 3.90804913e-02 + syst_JES_Zjet_dPhi: 3.67632112e-02 syst_PRW: 0.0 syst_Unfolding_bias: 0.0725 - syst_cleaning: 0.149649189773951 + syst_cleaning: 1.49649190e-01 syst_lumi: 0.6246 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 0.6724875073189093 - syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.010733925691470012 - syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.15899735846862362 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 0.29319191666892863 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0069855761931282385 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.153943065774331 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 6.72487507e-01 + syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.07339257e-02 + syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.58997358e-01 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 2.93191917e-01 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 6.98557619e-03 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.53943066e-01 - stat: 0.1947 syst_JER_CROSS_CALIB_FORWARD: 0.001557 syst_JER_NOISE_FORWARD: 0.08332 - syst_JER_NP0: 0.22099076903798492 - syst_JER_NP1: 0.08358770648247266 - syst_JER_NP2: 0.043434978991591565 - syst_JER_NP3: 0.09784192199665745 - syst_JER_NP4: 0.027998364237933615 - syst_JER_NP5: 0.04163906939401984 - syst_JER_NP6: 0.032450114021371324 - syst_JER_NP7: 0.0013337698448937882 - syst_JER_NP8: 0.012168611794284506 - syst_JES_EtaIntercalibration_Modelling: 0.7178507835894589 - syst_JES_EtaIntercalibration_NonClosure: 0.13401601424829795 + syst_JER_NP0: 2.20990769e-01 + syst_JER_NP1: 8.35877065e-02 + syst_JER_NP2: 4.34349790e-02 + syst_JER_NP3: 9.78419220e-02 + syst_JER_NP4: 2.79983642e-02 + syst_JER_NP5: 4.16390694e-02 + syst_JER_NP6: 3.24501140e-02 + syst_JER_NP7: 1.33376984e-03 + syst_JER_NP8: 1.21686118e-02 + syst_JES_EtaIntercalibration_Modelling: 7.17850784e-01 + syst_JES_EtaIntercalibration_NonClosure: 1.34016014e-01 syst_JES_EtaIntercalibration_Stat0: 0.0 - syst_JES_EtaIntercalibration_Stat1: 1.2955740040615202e-09 + syst_JES_EtaIntercalibration_Stat1: 1.29557400e-09 syst_JES_EtaIntercalibration_Stat10: 0.0 syst_JES_EtaIntercalibration_Stat100: 0.0 syst_JES_EtaIntercalibration_Stat101: 0.0 syst_JES_EtaIntercalibration_Stat102: 0.0 - syst_JES_EtaIntercalibration_Stat103: 1.3366853481653789e-08 - syst_JES_EtaIntercalibration_Stat104: 5.032859227119312e-05 - syst_JES_EtaIntercalibration_Stat105: 0.00034985939643662566 - syst_JES_EtaIntercalibration_Stat106: 0.0007404062803623427 - syst_JES_EtaIntercalibration_Stat107: 2.340635971269347e-06 - syst_JES_EtaIntercalibration_Stat108: 0.00018346826101535928 - syst_JES_EtaIntercalibration_Stat109: 0.003326127969200824 + syst_JES_EtaIntercalibration_Stat103: 1.33668535e-08 + syst_JES_EtaIntercalibration_Stat104: 5.03285923e-05 + syst_JES_EtaIntercalibration_Stat105: 3.49859396e-04 + syst_JES_EtaIntercalibration_Stat106: 7.40406280e-04 + syst_JES_EtaIntercalibration_Stat107: 2.34063597e-06 + syst_JES_EtaIntercalibration_Stat108: 1.83468261e-04 + syst_JES_EtaIntercalibration_Stat109: 3.32612797e-03 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 0.0026562531411746136 - syst_JES_EtaIntercalibration_Stat111: 0.0003180302348441104 - syst_JES_EtaIntercalibration_Stat112: 7.097186132545772e-05 + syst_JES_EtaIntercalibration_Stat110: 2.65625314e-03 + syst_JES_EtaIntercalibration_Stat111: 3.18030235e-04 + syst_JES_EtaIntercalibration_Stat112: 7.09718613e-05 syst_JES_EtaIntercalibration_Stat113: 0.0 syst_JES_EtaIntercalibration_Stat114: 0.0 syst_JES_EtaIntercalibration_Stat115: 0.0 syst_JES_EtaIntercalibration_Stat116: 0.0 syst_JES_EtaIntercalibration_Stat117: 0.0 - syst_JES_EtaIntercalibration_Stat118: 9.1660128736545e-09 - syst_JES_EtaIntercalibration_Stat119: 9.1660128736545e-09 + syst_JES_EtaIntercalibration_Stat118: 9.16601287e-09 + syst_JES_EtaIntercalibration_Stat119: 9.16601287e-09 syst_JES_EtaIntercalibration_Stat12: 0.0 syst_JES_EtaIntercalibration_Stat120: 0.0 syst_JES_EtaIntercalibration_Stat121: 0.0 syst_JES_EtaIntercalibration_Stat122: 0.0 - syst_JES_EtaIntercalibration_Stat123: 1.55044510705797e-05 - syst_JES_EtaIntercalibration_Stat124: 0.0010012152715575208 - syst_JES_EtaIntercalibration_Stat125: 0.004918194994100985 - syst_JES_EtaIntercalibration_Stat126: 0.0017795058492457955 - syst_JES_EtaIntercalibration_Stat127: 0.0005161115316237373 - syst_JES_EtaIntercalibration_Stat128: 0.01865899983921968 - syst_JES_EtaIntercalibration_Stat129: 0.04094031753662885 + syst_JES_EtaIntercalibration_Stat123: 1.55044511e-05 + syst_JES_EtaIntercalibration_Stat124: 1.00121527e-03 + syst_JES_EtaIntercalibration_Stat125: 4.91819499e-03 + syst_JES_EtaIntercalibration_Stat126: 1.77950585e-03 + syst_JES_EtaIntercalibration_Stat127: 5.16111532e-04 + syst_JES_EtaIntercalibration_Stat128: 1.86589998e-02 + syst_JES_EtaIntercalibration_Stat129: 4.09403175e-02 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 0.005650554751526615 - syst_JES_EtaIntercalibration_Stat131: 6.831161175085828e-05 + syst_JES_EtaIntercalibration_Stat130: 5.65055475e-03 + syst_JES_EtaIntercalibration_Stat131: 6.83116118e-05 syst_JES_EtaIntercalibration_Stat132: 0.0 syst_JES_EtaIntercalibration_Stat133: 0.0 syst_JES_EtaIntercalibration_Stat134: 0.0 syst_JES_EtaIntercalibration_Stat135: 0.0 syst_JES_EtaIntercalibration_Stat136: 0.0 - syst_JES_EtaIntercalibration_Stat137: 9.1660128736545e-09 - syst_JES_EtaIntercalibration_Stat138: 9.1660128736545e-09 - syst_JES_EtaIntercalibration_Stat139: 4.4011411020325176e-08 + syst_JES_EtaIntercalibration_Stat137: 9.16601287e-09 + syst_JES_EtaIntercalibration_Stat138: 9.16601287e-09 + syst_JES_EtaIntercalibration_Stat139: 4.40114110e-08 syst_JES_EtaIntercalibration_Stat14: 0.0 syst_JES_EtaIntercalibration_Stat140: 0.0 syst_JES_EtaIntercalibration_Stat141: 0.0 - syst_JES_EtaIntercalibration_Stat142: 2.4633689837293967e-05 - syst_JES_EtaIntercalibration_Stat143: 0.0052721478308181005 - syst_JES_EtaIntercalibration_Stat144: 0.03991700890597892 - syst_JES_EtaIntercalibration_Stat145: 0.011301087381309818 - syst_JES_EtaIntercalibration_Stat146: 0.03156089788013009 - syst_JES_EtaIntercalibration_Stat147: 0.028681075642311607 - syst_JES_EtaIntercalibration_Stat148: 0.0038621686629146585 - syst_JES_EtaIntercalibration_Stat149: 6.267164969106845e-05 + syst_JES_EtaIntercalibration_Stat142: 2.46336898e-05 + syst_JES_EtaIntercalibration_Stat143: 5.27214783e-03 + syst_JES_EtaIntercalibration_Stat144: 3.99170089e-02 + syst_JES_EtaIntercalibration_Stat145: 1.13010874e-02 + syst_JES_EtaIntercalibration_Stat146: 3.15608979e-02 + syst_JES_EtaIntercalibration_Stat147: 2.86810756e-02 + syst_JES_EtaIntercalibration_Stat148: 3.86216866e-03 + syst_JES_EtaIntercalibration_Stat149: 6.26716497e-05 syst_JES_EtaIntercalibration_Stat15: 0.0 syst_JES_EtaIntercalibration_Stat150: 0.0 syst_JES_EtaIntercalibration_Stat151: 0.0 @@ -57192,60 +57192,60 @@ bins: syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 9.1660128736545e-09 - syst_JES_EtaIntercalibration_Stat157: 4.4011411020325176e-08 + syst_JES_EtaIntercalibration_Stat156: 9.16601287e-09 + syst_JES_EtaIntercalibration_Stat157: 4.40114110e-08 syst_JES_EtaIntercalibration_Stat158: 0.0 syst_JES_EtaIntercalibration_Stat159: 0.0 - syst_JES_EtaIntercalibration_Stat16: 2.4759666294197103e-11 - syst_JES_EtaIntercalibration_Stat160: 1.6039927524773922e-05 - syst_JES_EtaIntercalibration_Stat161: 0.0022559062326923075 - syst_JES_EtaIntercalibration_Stat162: 0.027157864422667703 - syst_JES_EtaIntercalibration_Stat163: 0.025151781249048745 - syst_JES_EtaIntercalibration_Stat164: 0.034588974670406177 - syst_JES_EtaIntercalibration_Stat165: 0.03310097279537264 - syst_JES_EtaIntercalibration_Stat166: 0.005967031298459897 - syst_JES_EtaIntercalibration_Stat167: 5.770807585381789e-05 + syst_JES_EtaIntercalibration_Stat16: 2.47596663e-11 + syst_JES_EtaIntercalibration_Stat160: 1.60399275e-05 + syst_JES_EtaIntercalibration_Stat161: 2.25590623e-03 + syst_JES_EtaIntercalibration_Stat162: 2.71578644e-02 + syst_JES_EtaIntercalibration_Stat163: 2.51517812e-02 + syst_JES_EtaIntercalibration_Stat164: 3.45889747e-02 + syst_JES_EtaIntercalibration_Stat165: 3.31009728e-02 + syst_JES_EtaIntercalibration_Stat166: 5.96703130e-03 + syst_JES_EtaIntercalibration_Stat167: 5.77080759e-05 syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 - syst_JES_EtaIntercalibration_Stat17: 1.9456662098109222e-10 + syst_JES_EtaIntercalibration_Stat17: 1.94566621e-10 syst_JES_EtaIntercalibration_Stat170: 0.0 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 - syst_JES_EtaIntercalibration_Stat174: 4.4011411020325176e-08 - syst_JES_EtaIntercalibration_Stat175: 4.4011411020325176e-08 + syst_JES_EtaIntercalibration_Stat174: 4.40114110e-08 + syst_JES_EtaIntercalibration_Stat175: 4.40114110e-08 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 - syst_JES_EtaIntercalibration_Stat178: 0.0003646212707385569 - syst_JES_EtaIntercalibration_Stat179: 0.006771215308199851 - syst_JES_EtaIntercalibration_Stat18: 1.6301353279712697e-08 - syst_JES_EtaIntercalibration_Stat180: 0.034066838347577844 - syst_JES_EtaIntercalibration_Stat181: 0.037376354490506435 - syst_JES_EtaIntercalibration_Stat182: 0.022853494262366096 - syst_JES_EtaIntercalibration_Stat183: 0.004923945191439482 - syst_JES_EtaIntercalibration_Stat184: 0.00103306767896784 + syst_JES_EtaIntercalibration_Stat178: 3.64621271e-04 + syst_JES_EtaIntercalibration_Stat179: 6.77121531e-03 + syst_JES_EtaIntercalibration_Stat18: 1.63013533e-08 + syst_JES_EtaIntercalibration_Stat180: 3.40668383e-02 + syst_JES_EtaIntercalibration_Stat181: 3.73763545e-02 + syst_JES_EtaIntercalibration_Stat182: 2.28534943e-02 + syst_JES_EtaIntercalibration_Stat183: 4.92394519e-03 + syst_JES_EtaIntercalibration_Stat184: 1.03306768e-03 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 syst_JES_EtaIntercalibration_Stat187: 0.0 - syst_JES_EtaIntercalibration_Stat188: 3.5394458252670005e-06 + syst_JES_EtaIntercalibration_Stat188: 3.53944583e-06 syst_JES_EtaIntercalibration_Stat189: 0.0 - syst_JES_EtaIntercalibration_Stat19: 1.124853617176475e-08 + syst_JES_EtaIntercalibration_Stat19: 1.12485362e-08 syst_JES_EtaIntercalibration_Stat190: 0.0 - syst_JES_EtaIntercalibration_Stat191: 4.4011411020325176e-08 - syst_JES_EtaIntercalibration_Stat192: 4.4011411020325176e-08 + syst_JES_EtaIntercalibration_Stat191: 4.40114110e-08 + syst_JES_EtaIntercalibration_Stat192: 4.40114110e-08 syst_JES_EtaIntercalibration_Stat193: 0.0 syst_JES_EtaIntercalibration_Stat194: 0.0 - syst_JES_EtaIntercalibration_Stat195: 0.0003976846075409508 - syst_JES_EtaIntercalibration_Stat196: 0.004033987977175937 - syst_JES_EtaIntercalibration_Stat197: 0.02012884683731286 - syst_JES_EtaIntercalibration_Stat198: 0.0018897763756593 - syst_JES_EtaIntercalibration_Stat199: 4.95981842712009e-05 - syst_JES_EtaIntercalibration_Stat2: 5.059484614810089e-08 + syst_JES_EtaIntercalibration_Stat195: 3.97684608e-04 + syst_JES_EtaIntercalibration_Stat196: 4.03398798e-03 + syst_JES_EtaIntercalibration_Stat197: 2.01288468e-02 + syst_JES_EtaIntercalibration_Stat198: 1.88977638e-03 + syst_JES_EtaIntercalibration_Stat199: 4.95981843e-05 + syst_JES_EtaIntercalibration_Stat2: 5.05948461e-08 syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 syst_JES_EtaIntercalibration_Stat201: 0.0 syst_JES_EtaIntercalibration_Stat202: 0.0 - syst_JES_EtaIntercalibration_Stat203: 3.5394458252670005e-06 + syst_JES_EtaIntercalibration_Stat203: 3.53944583e-06 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 @@ -57253,9 +57253,9 @@ bins: syst_JES_EtaIntercalibration_Stat208: 0.0 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 9.187914592935385e-05 - syst_JES_EtaIntercalibration_Stat211: 0.0013415002637625533 - syst_JES_EtaIntercalibration_Stat212: 2.6768845230977e-10 + syst_JES_EtaIntercalibration_Stat210: 9.18791459e-05 + syst_JES_EtaIntercalibration_Stat211: 1.34150026e-03 + syst_JES_EtaIntercalibration_Stat212: 2.67688452e-10 syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 syst_JES_EtaIntercalibration_Stat215: 0.0 @@ -57267,37 +57267,37 @@ bins: syst_JES_EtaIntercalibration_Stat220: 0.0 syst_JES_EtaIntercalibration_Stat221: 0.0 syst_JES_EtaIntercalibration_Stat222: 0.0 - syst_JES_EtaIntercalibration_Stat223: 3.1306818346807455e-08 - syst_JES_EtaIntercalibration_Stat224: 2.6768845230977e-10 + syst_JES_EtaIntercalibration_Stat223: 3.13068183e-08 + syst_JES_EtaIntercalibration_Stat224: 2.67688452e-10 syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 syst_JES_EtaIntercalibration_Stat227: 0.0 syst_JES_EtaIntercalibration_Stat228: 0.0 syst_JES_EtaIntercalibration_Stat229: 0.0 - syst_JES_EtaIntercalibration_Stat23: 4.023050410757986e-08 + syst_JES_EtaIntercalibration_Stat23: 4.02305041e-08 syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 syst_JES_EtaIntercalibration_Stat232: 0.0 syst_JES_EtaIntercalibration_Stat233: 0.0 syst_JES_EtaIntercalibration_Stat234: 0.0 - syst_JES_EtaIntercalibration_Stat235: 3.174849130273752e-08 + syst_JES_EtaIntercalibration_Stat235: 3.17484913e-08 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 syst_JES_EtaIntercalibration_Stat239: 0.0 - syst_JES_EtaIntercalibration_Stat24: 7.4844596999382666e-06 + syst_JES_EtaIntercalibration_Stat24: 7.48445970e-06 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 syst_JES_EtaIntercalibration_Stat243: 0.0 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 - syst_JES_EtaIntercalibration_Stat25: 7.988479540406922e-05 - syst_JES_EtaIntercalibration_Stat26: 7.170623822234715e-08 + syst_JES_EtaIntercalibration_Stat25: 7.98847954e-05 + syst_JES_EtaIntercalibration_Stat26: 7.17062382e-08 syst_JES_EtaIntercalibration_Stat27: 0.0 syst_JES_EtaIntercalibration_Stat28: 0.0 syst_JES_EtaIntercalibration_Stat29: 0.0 - syst_JES_EtaIntercalibration_Stat3: 6.301967371384907e-08 + syst_JES_EtaIntercalibration_Stat3: 6.30196737e-08 syst_JES_EtaIntercalibration_Stat30: 0.0 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 @@ -57306,19 +57306,19 @@ bins: syst_JES_EtaIntercalibration_Stat35: 0.0 syst_JES_EtaIntercalibration_Stat36: 0.0 syst_JES_EtaIntercalibration_Stat37: 0.0 - syst_JES_EtaIntercalibration_Stat38: 2.4759666294197103e-11 - syst_JES_EtaIntercalibration_Stat39: 2.6676968999494677e-08 + syst_JES_EtaIntercalibration_Stat38: 2.47596663e-11 + syst_JES_EtaIntercalibration_Stat39: 2.66769690e-08 syst_JES_EtaIntercalibration_Stat4: 0.0 - syst_JES_EtaIntercalibration_Stat40: 5.483441528821111e-06 - syst_JES_EtaIntercalibration_Stat41: 1.5931236612391394e-06 - syst_JES_EtaIntercalibration_Stat42: 1.3804444936323951e-09 + syst_JES_EtaIntercalibration_Stat40: 5.48344153e-06 + syst_JES_EtaIntercalibration_Stat41: 1.59312366e-06 + syst_JES_EtaIntercalibration_Stat42: 1.38044449e-09 syst_JES_EtaIntercalibration_Stat43: 0.0 - syst_JES_EtaIntercalibration_Stat44: 2.732310148939904e-09 - syst_JES_EtaIntercalibration_Stat45: 2.0152521349697165e-07 - syst_JES_EtaIntercalibration_Stat46: 0.0001952396298782601 - syst_JES_EtaIntercalibration_Stat47: 9.218135535454011e-05 - syst_JES_EtaIntercalibration_Stat48: 3.5287673315196053e-06 - syst_JES_EtaIntercalibration_Stat49: 2.2334795163600674e-09 + syst_JES_EtaIntercalibration_Stat44: 2.73231015e-09 + syst_JES_EtaIntercalibration_Stat45: 2.01525213e-07 + syst_JES_EtaIntercalibration_Stat46: 1.95239630e-04 + syst_JES_EtaIntercalibration_Stat47: 9.21813554e-05 + syst_JES_EtaIntercalibration_Stat48: 3.52876733e-06 + syst_JES_EtaIntercalibration_Stat49: 2.23347952e-09 syst_JES_EtaIntercalibration_Stat5: 0.0 syst_JES_EtaIntercalibration_Stat50: 0.0 syst_JES_EtaIntercalibration_Stat51: 0.0 @@ -57329,21 +57329,21 @@ bins: syst_JES_EtaIntercalibration_Stat56: 0.0 syst_JES_EtaIntercalibration_Stat57: 0.0 syst_JES_EtaIntercalibration_Stat58: 0.0 - syst_JES_EtaIntercalibration_Stat59: 2.4759666294197103e-11 + syst_JES_EtaIntercalibration_Stat59: 2.47596663e-11 syst_JES_EtaIntercalibration_Stat6: 0.0 - syst_JES_EtaIntercalibration_Stat60: 1.665954413391915e-10 - syst_JES_EtaIntercalibration_Stat61: 3.0981237870685542e-06 - syst_JES_EtaIntercalibration_Stat62: 0.00014137222384542162 - syst_JES_EtaIntercalibration_Stat63: 1.0598591073817313e-05 - syst_JES_EtaIntercalibration_Stat64: 1.754086300613513e-08 + syst_JES_EtaIntercalibration_Stat60: 1.66595441e-10 + syst_JES_EtaIntercalibration_Stat61: 3.09812379e-06 + syst_JES_EtaIntercalibration_Stat62: 1.41372224e-04 + syst_JES_EtaIntercalibration_Stat63: 1.05985911e-05 + syst_JES_EtaIntercalibration_Stat64: 1.75408630e-08 syst_JES_EtaIntercalibration_Stat65: 0.0 - syst_JES_EtaIntercalibration_Stat66: 2.732310148939904e-09 - syst_JES_EtaIntercalibration_Stat67: 9.804692384261732e-06 - syst_JES_EtaIntercalibration_Stat68: 0.00032556816398413404 - syst_JES_EtaIntercalibration_Stat69: 0.00035823390403478 + syst_JES_EtaIntercalibration_Stat66: 2.73231015e-09 + syst_JES_EtaIntercalibration_Stat67: 9.80469238e-06 + syst_JES_EtaIntercalibration_Stat68: 3.25568164e-04 + syst_JES_EtaIntercalibration_Stat69: 3.58233904e-04 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 8.391520243674563e-05 - syst_JES_EtaIntercalibration_Stat71: 5.8177546209856596e-08 + syst_JES_EtaIntercalibration_Stat70: 8.39152024e-05 + syst_JES_EtaIntercalibration_Stat71: 5.81775462e-08 syst_JES_EtaIntercalibration_Stat72: 0.0 syst_JES_EtaIntercalibration_Stat73: 0.0 syst_JES_EtaIntercalibration_Stat74: 0.0 @@ -57354,19 +57354,19 @@ bins: syst_JES_EtaIntercalibration_Stat79: 0.0 syst_JES_EtaIntercalibration_Stat8: 0.0 syst_JES_EtaIntercalibration_Stat80: 0.0 - syst_JES_EtaIntercalibration_Stat81: 2.4759666294197103e-11 - syst_JES_EtaIntercalibration_Stat82: 4.927745199378718e-09 - syst_JES_EtaIntercalibration_Stat83: 2.0919001189110345e-05 - syst_JES_EtaIntercalibration_Stat84: 0.00019279137188940796 - syst_JES_EtaIntercalibration_Stat85: 0.0007337393321200657 - syst_JES_EtaIntercalibration_Stat86: 1.4797664241359176e-06 + syst_JES_EtaIntercalibration_Stat81: 2.47596663e-11 + syst_JES_EtaIntercalibration_Stat82: 4.92774520e-09 + syst_JES_EtaIntercalibration_Stat83: 2.09190012e-05 + syst_JES_EtaIntercalibration_Stat84: 1.92791372e-04 + syst_JES_EtaIntercalibration_Stat85: 7.33739332e-04 + syst_JES_EtaIntercalibration_Stat86: 1.47976642e-06 syst_JES_EtaIntercalibration_Stat87: 0.0 - syst_JES_EtaIntercalibration_Stat88: 1.2423536563716468e-05 - syst_JES_EtaIntercalibration_Stat89: 0.0005685020580437683 + syst_JES_EtaIntercalibration_Stat88: 1.24235366e-05 + syst_JES_EtaIntercalibration_Stat89: 5.68502058e-04 syst_JES_EtaIntercalibration_Stat9: 0.0 - syst_JES_EtaIntercalibration_Stat90: 0.00043401764941071235 - syst_JES_EtaIntercalibration_Stat91: 0.00010896188737352158 - syst_JES_EtaIntercalibration_Stat92: 6.623605020681713e-08 + syst_JES_EtaIntercalibration_Stat90: 4.34017649e-04 + syst_JES_EtaIntercalibration_Stat91: 1.08961887e-04 + syst_JES_EtaIntercalibration_Stat92: 6.62360502e-08 syst_JES_EtaIntercalibration_Stat93: 0.0 syst_JES_EtaIntercalibration_Stat94: 0.0 syst_JES_EtaIntercalibration_Stat95: 0.0 @@ -57374,159 +57374,159 @@ bins: syst_JES_EtaIntercalibration_Stat97: 0.0 syst_JES_EtaIntercalibration_Stat98: 0.0 syst_JES_EtaIntercalibration_Stat99: 0.0 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.013956817258959869 - syst_JES_Flavour_Comp: 0.06460688566244313 - syst_JES_Gjet_Generator: 0.3971324014733625 - syst_JES_Gjet_OOC: 0.26280479447681315 - syst_JES_Gjet_Purity: 0.08138014254104008 - syst_JES_Gjet_Stat1: 0.0007364225012178809 - syst_JES_Gjet_Stat10: 0.024254356309743617 - syst_JES_Gjet_Stat11: 0.03596230209538872 - syst_JES_Gjet_Stat12: 0.025591563062853352 - syst_JES_Gjet_Stat13: 0.0044848085800845506 - syst_JES_Gjet_Stat14: 0.0026792914641748104 - syst_JES_Gjet_Stat15: 0.0002737964332766225 - syst_JES_Gjet_Stat2: 0.0007329869303064005 - syst_JES_Gjet_Stat3: 0.0005689854194089686 - syst_JES_Gjet_Stat4: 0.0011419267259767589 - syst_JES_Gjet_Stat5: 0.0007356069126918262 - syst_JES_Gjet_Stat6: 0.0009127760555032104 - syst_JES_Gjet_Stat7: 0.0013958373257654346 - syst_JES_Gjet_Stat8: 0.003923183401269944 - syst_JES_Gjet_Stat9: 0.011498357567496325 - syst_JES_Gjet_Veto: 0.11985757673171939 - syst_JES_Gjet_dPhi: 0.017203024988355974 - syst_JES_LArESZee: 0.4893458976020949 - syst_JES_LArEsmear: 0.03323308140994452 - syst_JES_LAr_JVT: 0.04844494091233883 - syst_JES_MJB_Alpha: 0.0024435308121650524 - syst_JES_MJB_Asym: 0.0037925079762605642 - syst_JES_MJB_Beta: 0.00047474727297794984 - syst_JES_MJB_Stat1: 0.002605624955265051 - syst_JES_MJB_Stat10: 2.885596718588904e-08 - syst_JES_MJB_Stat11: 3.0051081511320017e-10 - syst_JES_MJB_Stat12: 2.3581871745050266e-12 - syst_JES_MJB_Stat13: 1.542391244140085e-12 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.39568173e-02 + syst_JES_Flavour_Comp: 6.46068857e-02 + syst_JES_Gjet_Generator: 3.97132401e-01 + syst_JES_Gjet_OOC: 2.62804794e-01 + syst_JES_Gjet_Purity: 8.13801425e-02 + syst_JES_Gjet_Stat1: 7.36422501e-04 + syst_JES_Gjet_Stat10: 2.42543563e-02 + syst_JES_Gjet_Stat11: 3.59623021e-02 + syst_JES_Gjet_Stat12: 2.55915631e-02 + syst_JES_Gjet_Stat13: 4.48480858e-03 + syst_JES_Gjet_Stat14: 2.67929146e-03 + syst_JES_Gjet_Stat15: 2.73796433e-04 + syst_JES_Gjet_Stat2: 7.32986930e-04 + syst_JES_Gjet_Stat3: 5.68985419e-04 + syst_JES_Gjet_Stat4: 1.14192673e-03 + syst_JES_Gjet_Stat5: 7.35606913e-04 + syst_JES_Gjet_Stat6: 9.12776056e-04 + syst_JES_Gjet_Stat7: 1.39583733e-03 + syst_JES_Gjet_Stat8: 3.92318340e-03 + syst_JES_Gjet_Stat9: 1.14983576e-02 + syst_JES_Gjet_Veto: 1.19857577e-01 + syst_JES_Gjet_dPhi: 1.72030250e-02 + syst_JES_LArESZee: 4.89345898e-01 + syst_JES_LArEsmear: 3.32330814e-02 + syst_JES_LAr_JVT: 4.84449409e-02 + syst_JES_MJB_Alpha: 2.44353081e-03 + syst_JES_MJB_Asym: 3.79250798e-03 + syst_JES_MJB_Beta: 4.74747273e-04 + syst_JES_MJB_Stat1: 2.60562496e-03 + syst_JES_MJB_Stat10: 2.88559672e-08 + syst_JES_MJB_Stat11: 3.00510815e-10 + syst_JES_MJB_Stat12: 2.35818717e-12 + syst_JES_MJB_Stat13: 1.54239124e-12 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 0.001944092299120595 - syst_JES_MJB_Stat3: 0.0014031300251580393 - syst_JES_MJB_Stat4: 0.00037655378101939164 - syst_JES_MJB_Stat5: 0.00010795851054919199 - syst_JES_MJB_Stat6: 7.462756589056085e-05 - syst_JES_MJB_Stat7: 1.9459709702361553e-07 - syst_JES_MJB_Stat8: 2.9115774807024367e-08 - syst_JES_MJB_Stat9: 2.9107114552986525e-08 - syst_JES_MJB_Threshold: 0.005716729250191932 - syst_JES_Pileup_MuOffset: 0.018515340342537594 - syst_JES_Pileup_NPVOffset: 0.027052051216127772 - syst_JES_Pileup_Pt_term: 0.20930945391931058 - syst_JES_PunchThrough_MC15: 0.0007611890221883128 + syst_JES_MJB_Stat2: 1.94409230e-03 + syst_JES_MJB_Stat3: 1.40313003e-03 + syst_JES_MJB_Stat4: 3.76553781e-04 + syst_JES_MJB_Stat5: 1.07958511e-04 + syst_JES_MJB_Stat6: 7.46275659e-05 + syst_JES_MJB_Stat7: 1.94597097e-07 + syst_JES_MJB_Stat8: 2.91157748e-08 + syst_JES_MJB_Stat9: 2.91071146e-08 + syst_JES_MJB_Threshold: 5.71672925e-03 + syst_JES_Pileup_MuOffset: 1.85153403e-02 + syst_JES_Pileup_NPVOffset: 2.70520512e-02 + syst_JES_Pileup_Pt_term: 2.09309454e-01 + syst_JES_PunchThrough_MC15: 7.61189022e-04 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.3647565078240551 - syst_JES_Zjet_MuScale: 0.022147952501303594 - syst_JES_Zjet_MuSmearID: 0.0031467621645113256 - syst_JES_Zjet_MuSmearMS: 0.04578451130022029 - syst_JES_Zjet_OOC: 0.12658316268366815 - syst_JES_Zjet_Stat1: 0.0022581135378895367 - syst_JES_Zjet_Stat10: 0.02054654715517914 - syst_JES_Zjet_Stat11: 0.03491110532481033 - syst_JES_Zjet_Stat12: 0.10388942631471211 - syst_JES_Zjet_Stat13: 0.01828802861847061 - syst_JES_Zjet_Stat2: 0.0006423778094509492 - syst_JES_Zjet_Stat3: 0.0006943197012183941 - syst_JES_Zjet_Stat4: 0.0006833427702661381 - syst_JES_Zjet_Stat5: 0.0024485031406963724 - syst_JES_Zjet_Stat6: 0.0024475108007933283 - syst_JES_Zjet_Stat7: 0.002787521373460659 - syst_JES_Zjet_Stat8: 0.0025141141516446704 - syst_JES_Zjet_Stat9: 0.0058021799351623 - syst_JES_Zjet_Veto: 0.023601023282900258 - syst_JES_Zjet_dPhi: 0.022040006238656103 + syst_JES_Zjet_MC: 3.64756508e-01 + syst_JES_Zjet_MuScale: 2.21479525e-02 + syst_JES_Zjet_MuSmearID: 3.14676216e-03 + syst_JES_Zjet_MuSmearMS: 4.57845113e-02 + syst_JES_Zjet_OOC: 1.26583163e-01 + syst_JES_Zjet_Stat1: 2.25811354e-03 + syst_JES_Zjet_Stat10: 2.05465472e-02 + syst_JES_Zjet_Stat11: 3.49111053e-02 + syst_JES_Zjet_Stat12: 1.03889426e-01 + syst_JES_Zjet_Stat13: 1.82880286e-02 + syst_JES_Zjet_Stat2: 6.42377809e-04 + syst_JES_Zjet_Stat3: 6.94319701e-04 + syst_JES_Zjet_Stat4: 6.83342770e-04 + syst_JES_Zjet_Stat5: 2.44850314e-03 + syst_JES_Zjet_Stat6: 2.44751080e-03 + syst_JES_Zjet_Stat7: 2.78752137e-03 + syst_JES_Zjet_Stat8: 2.51411415e-03 + syst_JES_Zjet_Stat9: 5.80217994e-03 + syst_JES_Zjet_Veto: 2.36010233e-02 + syst_JES_Zjet_dPhi: 2.20400062e-02 syst_PRW: 0.0 syst_Unfolding_bias: 0.04312 - syst_cleaning: 0.07136049327183774 + syst_cleaning: 7.13604933e-02 syst_lumi: 0.312 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 0.2990413182153931 - syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.016067180057496088 - syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.08394977129212444 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 0.13036926248161412 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.010797002766971953 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.08292497995176124 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 2.99041318e-01 + syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.60671801e-02 + syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 8.39497713e-02 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 1.30369262e-01 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.07970028e-02 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 8.29249800e-02 - stat: 0.11536 syst_JER_CROSS_CALIB_FORWARD: 0.002164 syst_JER_NOISE_FORWARD: 0.039605 - syst_JER_NP0: 0.09925426476983244 - syst_JER_NP1: 0.048261030604412086 - syst_JER_NP2: 0.017901687071334927 - syst_JER_NP3: 0.04414574951226902 - syst_JER_NP4: 0.015083279840604962 - syst_JER_NP5: 0.018087111433283093 - syst_JER_NP6: 0.013453346944162258 - syst_JER_NP7: 0.00018631034113534198 - syst_JER_NP8: 0.0066409859772476555 - syst_JES_EtaIntercalibration_Modelling: 0.35972662884473816 - syst_JES_EtaIntercalibration_NonClosure: 0.03341533365088549 + syst_JER_NP0: 9.92542648e-02 + syst_JER_NP1: 4.82610306e-02 + syst_JER_NP2: 1.79016871e-02 + syst_JER_NP3: 4.41457495e-02 + syst_JER_NP4: 1.50832798e-02 + syst_JER_NP5: 1.80871114e-02 + syst_JER_NP6: 1.34533469e-02 + syst_JER_NP7: 1.86310341e-04 + syst_JER_NP8: 6.64098598e-03 + syst_JES_EtaIntercalibration_Modelling: 3.59726629e-01 + syst_JES_EtaIntercalibration_NonClosure: 3.34153337e-02 syst_JES_EtaIntercalibration_Stat0: 0.0 - syst_JES_EtaIntercalibration_Stat1: 9.722867208287893e-11 + syst_JES_EtaIntercalibration_Stat1: 9.72286721e-11 syst_JES_EtaIntercalibration_Stat10: 0.0 syst_JES_EtaIntercalibration_Stat100: 0.0 syst_JES_EtaIntercalibration_Stat101: 0.0 syst_JES_EtaIntercalibration_Stat102: 0.0 - syst_JES_EtaIntercalibration_Stat103: 1.0685332973286327e-09 - syst_JES_EtaIntercalibration_Stat104: 1.3266546234796755e-05 - syst_JES_EtaIntercalibration_Stat105: 0.0005477939867094198 - syst_JES_EtaIntercalibration_Stat106: 0.00047151433573116306 - syst_JES_EtaIntercalibration_Stat107: 2.3430836876859518e-07 - syst_JES_EtaIntercalibration_Stat108: 7.920233708672995e-05 - syst_JES_EtaIntercalibration_Stat109: 0.000725943763317793 + syst_JES_EtaIntercalibration_Stat103: 1.06853330e-09 + syst_JES_EtaIntercalibration_Stat104: 1.32665462e-05 + syst_JES_EtaIntercalibration_Stat105: 5.47793987e-04 + syst_JES_EtaIntercalibration_Stat106: 4.71514336e-04 + syst_JES_EtaIntercalibration_Stat107: 2.34308369e-07 + syst_JES_EtaIntercalibration_Stat108: 7.92023371e-05 + syst_JES_EtaIntercalibration_Stat109: 7.25943763e-04 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 0.0004821322717885622 - syst_JES_EtaIntercalibration_Stat111: 0.00017812900606021468 - syst_JES_EtaIntercalibration_Stat112: 3.8421624725146645e-05 + syst_JES_EtaIntercalibration_Stat110: 4.82132272e-04 + syst_JES_EtaIntercalibration_Stat111: 1.78129006e-04 + syst_JES_EtaIntercalibration_Stat112: 3.84216247e-05 syst_JES_EtaIntercalibration_Stat113: 0.0 syst_JES_EtaIntercalibration_Stat114: 0.0 syst_JES_EtaIntercalibration_Stat115: 0.0 syst_JES_EtaIntercalibration_Stat116: 0.0 syst_JES_EtaIntercalibration_Stat117: 0.0 - syst_JES_EtaIntercalibration_Stat118: 7.378536440243417e-10 - syst_JES_EtaIntercalibration_Stat119: 7.378536440243417e-10 + syst_JES_EtaIntercalibration_Stat118: 7.37853644e-10 + syst_JES_EtaIntercalibration_Stat119: 7.37853644e-10 syst_JES_EtaIntercalibration_Stat12: 0.0 syst_JES_EtaIntercalibration_Stat120: 0.0 syst_JES_EtaIntercalibration_Stat121: 0.0 syst_JES_EtaIntercalibration_Stat122: 0.0 - syst_JES_EtaIntercalibration_Stat123: 2.3771794857561763e-06 - syst_JES_EtaIntercalibration_Stat124: 0.0003474826902163617 - syst_JES_EtaIntercalibration_Stat125: 0.001983845195995645 - syst_JES_EtaIntercalibration_Stat126: 0.0007812407228729184 - syst_JES_EtaIntercalibration_Stat127: 0.00021001111131318745 - syst_JES_EtaIntercalibration_Stat128: 0.00656925589393502 - syst_JES_EtaIntercalibration_Stat129: 0.014220198196579398 + syst_JES_EtaIntercalibration_Stat123: 2.37717949e-06 + syst_JES_EtaIntercalibration_Stat124: 3.47482690e-04 + syst_JES_EtaIntercalibration_Stat125: 1.98384520e-03 + syst_JES_EtaIntercalibration_Stat126: 7.81240723e-04 + syst_JES_EtaIntercalibration_Stat127: 2.10011111e-04 + syst_JES_EtaIntercalibration_Stat128: 6.56925589e-03 + syst_JES_EtaIntercalibration_Stat129: 1.42201982e-02 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 0.001576716267278295 - syst_JES_EtaIntercalibration_Stat131: 1.823908387913165e-05 + syst_JES_EtaIntercalibration_Stat130: 1.57671627e-03 + syst_JES_EtaIntercalibration_Stat131: 1.82390839e-05 syst_JES_EtaIntercalibration_Stat132: 0.0 syst_JES_EtaIntercalibration_Stat133: 0.0 syst_JES_EtaIntercalibration_Stat134: 0.0 syst_JES_EtaIntercalibration_Stat135: 0.0 syst_JES_EtaIntercalibration_Stat136: 0.0 - syst_JES_EtaIntercalibration_Stat137: 7.378536440243417e-10 - syst_JES_EtaIntercalibration_Stat138: 7.378536440243417e-10 - syst_JES_EtaIntercalibration_Stat139: 3.5498381301124142e-09 + syst_JES_EtaIntercalibration_Stat137: 7.37853644e-10 + syst_JES_EtaIntercalibration_Stat138: 7.37853644e-10 + syst_JES_EtaIntercalibration_Stat139: 3.54983813e-09 syst_JES_EtaIntercalibration_Stat14: 0.0 syst_JES_EtaIntercalibration_Stat140: 0.0 syst_JES_EtaIntercalibration_Stat141: 0.0 - syst_JES_EtaIntercalibration_Stat142: 1.6882116832613142e-05 - syst_JES_EtaIntercalibration_Stat143: 0.001938149117070201 - syst_JES_EtaIntercalibration_Stat144: 0.011670203115198981 - syst_JES_EtaIntercalibration_Stat145: 0.0032310255337895427 - syst_JES_EtaIntercalibration_Stat146: 0.013098478413541018 - syst_JES_EtaIntercalibration_Stat147: 0.011851198800121445 - syst_JES_EtaIntercalibration_Stat148: 0.0012602158800380195 - syst_JES_EtaIntercalibration_Stat149: 2.9233444460070042e-05 + syst_JES_EtaIntercalibration_Stat142: 1.68821168e-05 + syst_JES_EtaIntercalibration_Stat143: 1.93814912e-03 + syst_JES_EtaIntercalibration_Stat144: 1.16702031e-02 + syst_JES_EtaIntercalibration_Stat145: 3.23102553e-03 + syst_JES_EtaIntercalibration_Stat146: 1.30984784e-02 + syst_JES_EtaIntercalibration_Stat147: 1.18511988e-02 + syst_JES_EtaIntercalibration_Stat148: 1.26021588e-03 + syst_JES_EtaIntercalibration_Stat149: 2.92334445e-05 syst_JES_EtaIntercalibration_Stat15: 0.0 syst_JES_EtaIntercalibration_Stat150: 0.0 syst_JES_EtaIntercalibration_Stat151: 0.0 @@ -57534,60 +57534,60 @@ bins: syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 7.378536440243417e-10 - syst_JES_EtaIntercalibration_Stat157: 3.5498381301124142e-09 + syst_JES_EtaIntercalibration_Stat156: 7.37853644e-10 + syst_JES_EtaIntercalibration_Stat157: 3.54983813e-09 syst_JES_EtaIntercalibration_Stat158: 0.0 syst_JES_EtaIntercalibration_Stat159: 0.0 - syst_JES_EtaIntercalibration_Stat16: 1.891399481865214e-12 - syst_JES_EtaIntercalibration_Stat160: 1.9706348291857626e-05 - syst_JES_EtaIntercalibration_Stat161: 0.0008359473712501285 - syst_JES_EtaIntercalibration_Stat162: 0.009695102101061134 - syst_JES_EtaIntercalibration_Stat163: 0.009286584355940562 - syst_JES_EtaIntercalibration_Stat164: 0.018368349817008606 - syst_JES_EtaIntercalibration_Stat165: 0.017757668765916317 - syst_JES_EtaIntercalibration_Stat166: 0.0036188100083572707 - syst_JES_EtaIntercalibration_Stat167: 3.171327652577072e-05 + syst_JES_EtaIntercalibration_Stat16: 1.89139948e-12 + syst_JES_EtaIntercalibration_Stat160: 1.97063483e-05 + syst_JES_EtaIntercalibration_Stat161: 8.35947371e-04 + syst_JES_EtaIntercalibration_Stat162: 9.69510210e-03 + syst_JES_EtaIntercalibration_Stat163: 9.28658436e-03 + syst_JES_EtaIntercalibration_Stat164: 1.83683498e-02 + syst_JES_EtaIntercalibration_Stat165: 1.77576688e-02 + syst_JES_EtaIntercalibration_Stat166: 3.61881001e-03 + syst_JES_EtaIntercalibration_Stat167: 3.17132765e-05 syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 - syst_JES_EtaIntercalibration_Stat17: 1.4531219735452355e-11 + syst_JES_EtaIntercalibration_Stat17: 1.45312197e-11 syst_JES_EtaIntercalibration_Stat170: 0.0 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 - syst_JES_EtaIntercalibration_Stat174: 3.5498381301124142e-09 - syst_JES_EtaIntercalibration_Stat175: 3.5498381301124142e-09 + syst_JES_EtaIntercalibration_Stat174: 3.54983813e-09 + syst_JES_EtaIntercalibration_Stat175: 3.54983813e-09 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 - syst_JES_EtaIntercalibration_Stat178: 0.0004725752270274014 - syst_JES_EtaIntercalibration_Stat179: 0.0031366786574336873 - syst_JES_EtaIntercalibration_Stat18: 1.2762079248696116e-09 - syst_JES_EtaIntercalibration_Stat180: 0.018403024207993644 - syst_JES_EtaIntercalibration_Stat181: 0.020605205046298373 - syst_JES_EtaIntercalibration_Stat182: 0.02340792173602774 - syst_JES_EtaIntercalibration_Stat183: 0.004700678115974333 - syst_JES_EtaIntercalibration_Stat184: 0.0004684965764143853 + syst_JES_EtaIntercalibration_Stat178: 4.72575227e-04 + syst_JES_EtaIntercalibration_Stat179: 3.13667866e-03 + syst_JES_EtaIntercalibration_Stat18: 1.27620792e-09 + syst_JES_EtaIntercalibration_Stat180: 1.84030242e-02 + syst_JES_EtaIntercalibration_Stat181: 2.06052050e-02 + syst_JES_EtaIntercalibration_Stat182: 2.34079217e-02 + syst_JES_EtaIntercalibration_Stat183: 4.70067812e-03 + syst_JES_EtaIntercalibration_Stat184: 4.68496576e-04 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 syst_JES_EtaIntercalibration_Stat187: 0.0 - syst_JES_EtaIntercalibration_Stat188: 5.510519644280383e-07 + syst_JES_EtaIntercalibration_Stat188: 5.51051964e-07 syst_JES_EtaIntercalibration_Stat189: 0.0 - syst_JES_EtaIntercalibration_Stat19: 8.960564059812306e-10 + syst_JES_EtaIntercalibration_Stat19: 8.96056406e-10 syst_JES_EtaIntercalibration_Stat190: 0.0 - syst_JES_EtaIntercalibration_Stat191: 3.5498381301124142e-09 - syst_JES_EtaIntercalibration_Stat192: 3.5498381301124142e-09 + syst_JES_EtaIntercalibration_Stat191: 3.54983813e-09 + syst_JES_EtaIntercalibration_Stat192: 3.54983813e-09 syst_JES_EtaIntercalibration_Stat193: 0.0 syst_JES_EtaIntercalibration_Stat194: 0.0 - syst_JES_EtaIntercalibration_Stat195: 0.000523058481147185 - syst_JES_EtaIntercalibration_Stat196: 0.004237457580908628 - syst_JES_EtaIntercalibration_Stat197: 0.022416366230948313 - syst_JES_EtaIntercalibration_Stat198: 0.0008353423908793328 - syst_JES_EtaIntercalibration_Stat199: 3.531635020780035e-05 - syst_JES_EtaIntercalibration_Stat2: 4.0869373313032345e-09 + syst_JES_EtaIntercalibration_Stat195: 5.23058481e-04 + syst_JES_EtaIntercalibration_Stat196: 4.23745758e-03 + syst_JES_EtaIntercalibration_Stat197: 2.24163662e-02 + syst_JES_EtaIntercalibration_Stat198: 8.35342391e-04 + syst_JES_EtaIntercalibration_Stat199: 3.53163502e-05 + syst_JES_EtaIntercalibration_Stat2: 4.08693733e-09 syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 syst_JES_EtaIntercalibration_Stat201: 0.0 syst_JES_EtaIntercalibration_Stat202: 0.0 - syst_JES_EtaIntercalibration_Stat203: 5.510519644280383e-07 + syst_JES_EtaIntercalibration_Stat203: 5.51051964e-07 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 @@ -57595,9 +57595,9 @@ bins: syst_JES_EtaIntercalibration_Stat208: 0.0 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 7.393633279523337e-05 - syst_JES_EtaIntercalibration_Stat211: 0.0006868451353835157 - syst_JES_EtaIntercalibration_Stat212: 1.055338557051717e-08 + syst_JES_EtaIntercalibration_Stat210: 7.39363328e-05 + syst_JES_EtaIntercalibration_Stat211: 6.86845135e-04 + syst_JES_EtaIntercalibration_Stat212: 1.05533856e-08 syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 syst_JES_EtaIntercalibration_Stat215: 0.0 @@ -57609,37 +57609,37 @@ bins: syst_JES_EtaIntercalibration_Stat220: 0.0 syst_JES_EtaIntercalibration_Stat221: 0.0 syst_JES_EtaIntercalibration_Stat222: 0.0 - syst_JES_EtaIntercalibration_Stat223: 3.3781052925419596e-07 - syst_JES_EtaIntercalibration_Stat224: 1.055338557051717e-08 + syst_JES_EtaIntercalibration_Stat223: 3.37810529e-07 + syst_JES_EtaIntercalibration_Stat224: 1.05533856e-08 syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 syst_JES_EtaIntercalibration_Stat227: 0.0 syst_JES_EtaIntercalibration_Stat228: 0.0 syst_JES_EtaIntercalibration_Stat229: 0.0 - syst_JES_EtaIntercalibration_Stat23: 3.247934036814787e-09 + syst_JES_EtaIntercalibration_Stat23: 3.24793404e-09 syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 syst_JES_EtaIntercalibration_Stat232: 0.0 syst_JES_EtaIntercalibration_Stat233: 0.0 syst_JES_EtaIntercalibration_Stat234: 0.0 - syst_JES_EtaIntercalibration_Stat235: 3.4185486788986934e-07 + syst_JES_EtaIntercalibration_Stat235: 3.41854868e-07 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 syst_JES_EtaIntercalibration_Stat239: 0.0 - syst_JES_EtaIntercalibration_Stat24: 9.413161145438868e-07 + syst_JES_EtaIntercalibration_Stat24: 9.41316115e-07 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 syst_JES_EtaIntercalibration_Stat243: 0.0 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 - syst_JES_EtaIntercalibration_Stat25: 4.255069661835749e-05 - syst_JES_EtaIntercalibration_Stat26: 5.674718913743658e-09 + syst_JES_EtaIntercalibration_Stat25: 4.25506966e-05 + syst_JES_EtaIntercalibration_Stat26: 5.67471891e-09 syst_JES_EtaIntercalibration_Stat27: 0.0 syst_JES_EtaIntercalibration_Stat28: 0.0 syst_JES_EtaIntercalibration_Stat29: 0.0 - syst_JES_EtaIntercalibration_Stat3: 5.0246648395689044e-09 + syst_JES_EtaIntercalibration_Stat3: 5.02466484e-09 syst_JES_EtaIntercalibration_Stat30: 0.0 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 @@ -57648,19 +57648,19 @@ bins: syst_JES_EtaIntercalibration_Stat35: 0.0 syst_JES_EtaIntercalibration_Stat36: 0.0 syst_JES_EtaIntercalibration_Stat37: 0.0 - syst_JES_EtaIntercalibration_Stat38: 1.891399481865214e-12 - syst_JES_EtaIntercalibration_Stat39: 2.1002601624560707e-09 + syst_JES_EtaIntercalibration_Stat38: 1.89139948e-12 + syst_JES_EtaIntercalibration_Stat39: 2.10026016e-09 syst_JES_EtaIntercalibration_Stat4: 0.0 - syst_JES_EtaIntercalibration_Stat40: 6.823709694880051e-07 - syst_JES_EtaIntercalibration_Stat41: 1.598314424636154e-07 - syst_JES_EtaIntercalibration_Stat42: 1.0381912540567851e-10 + syst_JES_EtaIntercalibration_Stat40: 6.82370969e-07 + syst_JES_EtaIntercalibration_Stat41: 1.59831442e-07 + syst_JES_EtaIntercalibration_Stat42: 1.03819125e-10 syst_JES_EtaIntercalibration_Stat43: 0.0 - syst_JES_EtaIntercalibration_Stat44: 2.0342936734896462e-10 - syst_JES_EtaIntercalibration_Stat45: 1.743512784581748e-08 - syst_JES_EtaIntercalibration_Stat46: 8.115630698226725e-05 - syst_JES_EtaIntercalibration_Stat47: 4.128449830142059e-05 - syst_JES_EtaIntercalibration_Stat48: 4.529960789013521e-07 - syst_JES_EtaIntercalibration_Stat49: 1.67402710551532e-10 + syst_JES_EtaIntercalibration_Stat44: 2.03429367e-10 + syst_JES_EtaIntercalibration_Stat45: 1.74351278e-08 + syst_JES_EtaIntercalibration_Stat46: 8.11563070e-05 + syst_JES_EtaIntercalibration_Stat47: 4.12844983e-05 + syst_JES_EtaIntercalibration_Stat48: 4.52996079e-07 + syst_JES_EtaIntercalibration_Stat49: 1.67402711e-10 syst_JES_EtaIntercalibration_Stat5: 0.0 syst_JES_EtaIntercalibration_Stat50: 0.0 syst_JES_EtaIntercalibration_Stat51: 0.0 @@ -57671,21 +57671,21 @@ bins: syst_JES_EtaIntercalibration_Stat56: 0.0 syst_JES_EtaIntercalibration_Stat57: 0.0 syst_JES_EtaIntercalibration_Stat58: 0.0 - syst_JES_EtaIntercalibration_Stat59: 1.891399481865214e-12 + syst_JES_EtaIntercalibration_Stat59: 1.89139948e-12 syst_JES_EtaIntercalibration_Stat6: 0.0 - syst_JES_EtaIntercalibration_Stat60: 1.2376470700486468e-11 - syst_JES_EtaIntercalibration_Stat61: 3.899432675082364e-07 - syst_JES_EtaIntercalibration_Stat62: 0.00023409780407983327 - syst_JES_EtaIntercalibration_Stat63: 1.5203267148872969e-06 - syst_JES_EtaIntercalibration_Stat64: 1.38839110844171e-09 + syst_JES_EtaIntercalibration_Stat60: 1.23764707e-11 + syst_JES_EtaIntercalibration_Stat61: 3.89943268e-07 + syst_JES_EtaIntercalibration_Stat62: 2.34097804e-04 + syst_JES_EtaIntercalibration_Stat63: 1.52032671e-06 + syst_JES_EtaIntercalibration_Stat64: 1.38839111e-09 syst_JES_EtaIntercalibration_Stat65: 0.0 - syst_JES_EtaIntercalibration_Stat66: 2.0342936734896462e-10 - syst_JES_EtaIntercalibration_Stat67: 1.2014753295428084e-06 - syst_JES_EtaIntercalibration_Stat68: 0.00010849527685572308 - syst_JES_EtaIntercalibration_Stat69: 0.00010970891759560842 + syst_JES_EtaIntercalibration_Stat66: 2.03429367e-10 + syst_JES_EtaIntercalibration_Stat67: 1.20147533e-06 + syst_JES_EtaIntercalibration_Stat68: 1.08495277e-04 + syst_JES_EtaIntercalibration_Stat69: 1.09708918e-04 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 4.109722458694747e-05 - syst_JES_EtaIntercalibration_Stat71: 4.607851599986701e-09 + syst_JES_EtaIntercalibration_Stat70: 4.10972246e-05 + syst_JES_EtaIntercalibration_Stat71: 4.60785160e-09 syst_JES_EtaIntercalibration_Stat72: 0.0 syst_JES_EtaIntercalibration_Stat73: 0.0 syst_JES_EtaIntercalibration_Stat74: 0.0 @@ -57696,19 +57696,19 @@ bins: syst_JES_EtaIntercalibration_Stat79: 0.0 syst_JES_EtaIntercalibration_Stat8: 0.0 syst_JES_EtaIntercalibration_Stat80: 0.0 - syst_JES_EtaIntercalibration_Stat81: 1.891399481865214e-12 - syst_JES_EtaIntercalibration_Stat82: 3.701319865939716e-10 - syst_JES_EtaIntercalibration_Stat83: 3.247569052383644e-06 - syst_JES_EtaIntercalibration_Stat84: 7.44614282699439e-05 - syst_JES_EtaIntercalibration_Stat85: 0.0004237598761975938 - syst_JES_EtaIntercalibration_Stat86: 1.496772233841876e-07 + syst_JES_EtaIntercalibration_Stat81: 1.89139948e-12 + syst_JES_EtaIntercalibration_Stat82: 3.70131987e-10 + syst_JES_EtaIntercalibration_Stat83: 3.24756905e-06 + syst_JES_EtaIntercalibration_Stat84: 7.44614283e-05 + syst_JES_EtaIntercalibration_Stat85: 4.23759876e-04 + syst_JES_EtaIntercalibration_Stat86: 1.49677223e-07 syst_JES_EtaIntercalibration_Stat87: 0.0 - syst_JES_EtaIntercalibration_Stat88: 1.977633102347349e-06 - syst_JES_EtaIntercalibration_Stat89: 0.00012018387038201091 + syst_JES_EtaIntercalibration_Stat88: 1.97763310e-06 + syst_JES_EtaIntercalibration_Stat89: 1.20183870e-04 syst_JES_EtaIntercalibration_Stat9: 0.0 - syst_JES_EtaIntercalibration_Stat90: 0.00038008924304036806 - syst_JES_EtaIntercalibration_Stat91: 4.382046439735663e-05 - syst_JES_EtaIntercalibration_Stat92: 5.2536806402749684e-09 + syst_JES_EtaIntercalibration_Stat90: 3.80089243e-04 + syst_JES_EtaIntercalibration_Stat91: 4.38204644e-05 + syst_JES_EtaIntercalibration_Stat92: 5.25368064e-09 syst_JES_EtaIntercalibration_Stat93: 0.0 syst_JES_EtaIntercalibration_Stat94: 0.0 syst_JES_EtaIntercalibration_Stat95: 0.0 @@ -57716,159 +57716,159 @@ bins: syst_JES_EtaIntercalibration_Stat97: 0.0 syst_JES_EtaIntercalibration_Stat98: 0.0 syst_JES_EtaIntercalibration_Stat99: 0.0 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.012663431880813352 - syst_JES_Flavour_Comp: 0.04608036675201272 - syst_JES_Gjet_Generator: 0.2007245874326312 - syst_JES_Gjet_OOC: 0.1384682685672064 - syst_JES_Gjet_Purity: 0.04788620260576108 - syst_JES_Gjet_Stat1: 0.0007521794873565751 - syst_JES_Gjet_Stat10: 0.012054505547719491 - syst_JES_Gjet_Stat11: 0.017575371973304006 - syst_JES_Gjet_Stat12: 0.021919769045316152 - syst_JES_Gjet_Stat13: 0.008467228826481541 - syst_JES_Gjet_Stat14: 0.002340546090125123 - syst_JES_Gjet_Stat15: 0.00027938110745002066 - syst_JES_Gjet_Stat2: 0.0007982458824196965 - syst_JES_Gjet_Stat3: 0.00025425384952837985 - syst_JES_Gjet_Stat4: 0.0004908800871903443 - syst_JES_Gjet_Stat5: 0.00037656801178538785 - syst_JES_Gjet_Stat6: 0.0003880936082957306 - syst_JES_Gjet_Stat7: 0.0006449772321562987 - syst_JES_Gjet_Stat8: 0.0022502819173383587 - syst_JES_Gjet_Stat9: 0.0054783408984837734 - syst_JES_Gjet_Veto: 0.06813776045629912 - syst_JES_Gjet_dPhi: 0.009290639698104754 - syst_JES_LArESZee: 0.26163991954592863 - syst_JES_LArEsmear: 0.01989712227936492 - syst_JES_LAr_JVT: 0.028151590985235626 - syst_JES_MJB_Alpha: 0.0026279723528796874 - syst_JES_MJB_Asym: 0.005323057016414534 - syst_JES_MJB_Beta: 0.0009476410079771769 - syst_JES_MJB_Stat1: 0.0024063976458598858 - syst_JES_MJB_Stat10: 3.4719042009974264e-07 - syst_JES_MJB_Stat11: 1.2134747957827555e-08 - syst_JES_MJB_Stat12: 4.3188686886729957e-10 - syst_JES_MJB_Stat13: 2.8284389687599766e-10 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.26634319e-02 + syst_JES_Flavour_Comp: 4.60803668e-02 + syst_JES_Gjet_Generator: 2.00724587e-01 + syst_JES_Gjet_OOC: 1.38468269e-01 + syst_JES_Gjet_Purity: 4.78862026e-02 + syst_JES_Gjet_Stat1: 7.52179487e-04 + syst_JES_Gjet_Stat10: 1.20545055e-02 + syst_JES_Gjet_Stat11: 1.75753720e-02 + syst_JES_Gjet_Stat12: 2.19197690e-02 + syst_JES_Gjet_Stat13: 8.46722883e-03 + syst_JES_Gjet_Stat14: 2.34054609e-03 + syst_JES_Gjet_Stat15: 2.79381107e-04 + syst_JES_Gjet_Stat2: 7.98245882e-04 + syst_JES_Gjet_Stat3: 2.54253850e-04 + syst_JES_Gjet_Stat4: 4.90880087e-04 + syst_JES_Gjet_Stat5: 3.76568012e-04 + syst_JES_Gjet_Stat6: 3.88093608e-04 + syst_JES_Gjet_Stat7: 6.44977232e-04 + syst_JES_Gjet_Stat8: 2.25028192e-03 + syst_JES_Gjet_Stat9: 5.47834090e-03 + syst_JES_Gjet_Veto: 6.81377605e-02 + syst_JES_Gjet_dPhi: 9.29063970e-03 + syst_JES_LArESZee: 2.61639920e-01 + syst_JES_LArEsmear: 1.98971223e-02 + syst_JES_LAr_JVT: 2.81515910e-02 + syst_JES_MJB_Alpha: 2.62797235e-03 + syst_JES_MJB_Asym: 5.32305702e-03 + syst_JES_MJB_Beta: 9.47641008e-04 + syst_JES_MJB_Stat1: 2.40639765e-03 + syst_JES_MJB_Stat10: 3.47190420e-07 + syst_JES_MJB_Stat11: 1.21347480e-08 + syst_JES_MJB_Stat12: 4.31886869e-10 + syst_JES_MJB_Stat13: 2.82843897e-10 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 0.0023541871463415988 - syst_JES_MJB_Stat3: 0.0003816139934541185 - syst_JES_MJB_Stat4: 0.00020181947149618641 - syst_JES_MJB_Stat5: 0.00010638620998512919 - syst_JES_MJB_Stat6: 7.254659812837538e-05 - syst_JES_MJB_Stat7: 7.514282285198417e-07 - syst_JES_MJB_Stat8: 3.517803547396952e-07 - syst_JES_MJB_Stat9: 3.516937521993187e-07 - syst_JES_MJB_Threshold: 0.00683831826913606 - syst_JES_Pileup_MuOffset: 0.010711332736872662 - syst_JES_Pileup_NPVOffset: 0.01752773445143439 - syst_JES_Pileup_Pt_term: 0.09937797743967222 - syst_JES_PunchThrough_MC15: 0.0010138554868914997 + syst_JES_MJB_Stat2: 2.35418715e-03 + syst_JES_MJB_Stat3: 3.81613993e-04 + syst_JES_MJB_Stat4: 2.01819471e-04 + syst_JES_MJB_Stat5: 1.06386210e-04 + syst_JES_MJB_Stat6: 7.25465981e-05 + syst_JES_MJB_Stat7: 7.51428229e-07 + syst_JES_MJB_Stat8: 3.51780355e-07 + syst_JES_MJB_Stat9: 3.51693752e-07 + syst_JES_MJB_Threshold: 6.83831827e-03 + syst_JES_Pileup_MuOffset: 1.07113327e-02 + syst_JES_Pileup_NPVOffset: 1.75277345e-02 + syst_JES_Pileup_Pt_term: 9.93779774e-02 + syst_JES_PunchThrough_MC15: 1.01385549e-03 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.18270782002968564 - syst_JES_Zjet_MuScale: 0.011998514366370531 - syst_JES_Zjet_MuSmearID: 0.001315296631942772 - syst_JES_Zjet_MuSmearMS: 0.03059301023109691 - syst_JES_Zjet_OOC: 0.06801190557542112 - syst_JES_Zjet_Stat1: 0.0023586997832492377 - syst_JES_Zjet_Stat10: 0.009835089069245889 - syst_JES_Zjet_Stat11: 0.013472757874689207 - syst_JES_Zjet_Stat12: 0.06053532253981967 - syst_JES_Zjet_Stat13: 0.018496017814654053 - syst_JES_Zjet_Stat2: 0.0005572650899195104 - syst_JES_Zjet_Stat3: 0.0008012681074397009 - syst_JES_Zjet_Stat4: 0.0007907434033869647 - syst_JES_Zjet_Stat5: 0.0019349104449560449 - syst_JES_Zjet_Stat6: 0.00214760114313622 - syst_JES_Zjet_Stat7: 0.0019522422512331815 - syst_JES_Zjet_Stat8: 0.0020941678516955132 - syst_JES_Zjet_Stat9: 0.0024868294573613206 - syst_JES_Zjet_Veto: 0.013479570616306738 - syst_JES_Zjet_dPhi: 0.012389603252324103 + syst_JES_Zjet_MC: 1.82707820e-01 + syst_JES_Zjet_MuScale: 1.19985144e-02 + syst_JES_Zjet_MuSmearID: 1.31529663e-03 + syst_JES_Zjet_MuSmearMS: 3.05930102e-02 + syst_JES_Zjet_OOC: 6.80119056e-02 + syst_JES_Zjet_Stat1: 2.35869978e-03 + syst_JES_Zjet_Stat10: 9.83508907e-03 + syst_JES_Zjet_Stat11: 1.34727579e-02 + syst_JES_Zjet_Stat12: 6.05353225e-02 + syst_JES_Zjet_Stat13: 1.84960178e-02 + syst_JES_Zjet_Stat2: 5.57265090e-04 + syst_JES_Zjet_Stat3: 8.01268107e-04 + syst_JES_Zjet_Stat4: 7.90743403e-04 + syst_JES_Zjet_Stat5: 1.93491044e-03 + syst_JES_Zjet_Stat6: 2.14760114e-03 + syst_JES_Zjet_Stat7: 1.95224225e-03 + syst_JES_Zjet_Stat8: 2.09416785e-03 + syst_JES_Zjet_Stat9: 2.48682946e-03 + syst_JES_Zjet_Veto: 1.34795706e-02 + syst_JES_Zjet_dPhi: 1.23896033e-02 syst_PRW: 0.0 syst_Unfolding_bias: 0.005524 - syst_cleaning: 0.035351156982480786 + syst_cleaning: 3.53511570e-02 syst_lumi: 0.1525 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 0.1252001017371791 - syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.014136145160545007 - syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.04340894953808489 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 0.05458659542415153 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.009826633032224212 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.043809189675226824 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 1.25200102e-01 + syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.41361452e-02 + syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 4.34089495e-02 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 5.45865954e-02 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 9.82663303e-03 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 4.38091897e-02 - stat: 0.04899 - syst_JER_CROSS_CALIB_FORWARD: 0.0006179 + syst_JER_CROSS_CALIB_FORWARD: 6.17900000e-04 syst_JER_NOISE_FORWARD: 0.01974 - syst_JER_NP0: 0.03629457810748046 - syst_JER_NP1: 0.025439882075198383 - syst_JER_NP2: 0.005031022361309876 - syst_JER_NP3: 0.016893320425540977 - syst_JER_NP4: 0.008087635563006039 - syst_JER_NP5: 0.005332109526256939 - syst_JER_NP6: 0.003912229042374692 - syst_JER_NP7: 2.1767229187262213e-05 - syst_JER_NP8: 0.004438512673182312 - syst_JES_EtaIntercalibration_Modelling: 0.1817848384767002 - syst_JES_EtaIntercalibration_NonClosure: 0.010457201669184735 + syst_JER_NP0: 3.62945781e-02 + syst_JER_NP1: 2.54398821e-02 + syst_JER_NP2: 5.03102236e-03 + syst_JER_NP3: 1.68933204e-02 + syst_JER_NP4: 8.08763556e-03 + syst_JER_NP5: 5.33210953e-03 + syst_JER_NP6: 3.91222904e-03 + syst_JER_NP7: 2.17672292e-05 + syst_JER_NP8: 4.43851267e-03 + syst_JES_EtaIntercalibration_Modelling: 1.81784838e-01 + syst_JES_EtaIntercalibration_NonClosure: 1.04572017e-02 syst_JES_EtaIntercalibration_Stat0: 0.0 - syst_JES_EtaIntercalibration_Stat1: 7.68337738237554e-12 + syst_JES_EtaIntercalibration_Stat1: 7.68337738e-12 syst_JES_EtaIntercalibration_Stat10: 0.0 syst_JES_EtaIntercalibration_Stat100: 0.0 syst_JES_EtaIntercalibration_Stat101: 0.0 syst_JES_EtaIntercalibration_Stat102: 0.0 - syst_JES_EtaIntercalibration_Stat103: 8.639339905339991e-11 - syst_JES_EtaIntercalibration_Stat104: 2.0723214101099278e-05 - syst_JES_EtaIntercalibration_Stat105: 0.00020622886509894778 - syst_JES_EtaIntercalibration_Stat106: 0.00013371767600059463 - syst_JES_EtaIntercalibration_Stat107: 2.1789659198803453e-08 - syst_JES_EtaIntercalibration_Stat108: 1.4846574558462973e-05 - syst_JES_EtaIntercalibration_Stat109: 0.00013323911240698056 + syst_JES_EtaIntercalibration_Stat103: 8.63933991e-11 + syst_JES_EtaIntercalibration_Stat104: 2.07232141e-05 + syst_JES_EtaIntercalibration_Stat105: 2.06228865e-04 + syst_JES_EtaIntercalibration_Stat106: 1.33717676e-04 + syst_JES_EtaIntercalibration_Stat107: 2.17896592e-08 + syst_JES_EtaIntercalibration_Stat108: 1.48465746e-05 + syst_JES_EtaIntercalibration_Stat109: 1.33239112e-04 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 3.944682876987705e-05 - syst_JES_EtaIntercalibration_Stat111: 7.885864743323968e-05 - syst_JES_EtaIntercalibration_Stat112: 1.789600143053959e-05 + syst_JES_EtaIntercalibration_Stat110: 3.94468288e-05 + syst_JES_EtaIntercalibration_Stat111: 7.88586474e-05 + syst_JES_EtaIntercalibration_Stat112: 1.78960014e-05 syst_JES_EtaIntercalibration_Stat113: 0.0 syst_JES_EtaIntercalibration_Stat114: 0.0 syst_JES_EtaIntercalibration_Stat115: 0.0 syst_JES_EtaIntercalibration_Stat116: 0.0 syst_JES_EtaIntercalibration_Stat117: 0.0 - syst_JES_EtaIntercalibration_Stat118: 5.97817336232398e-11 - syst_JES_EtaIntercalibration_Stat119: 5.97817336232398e-11 + syst_JES_EtaIntercalibration_Stat118: 5.97817336e-11 + syst_JES_EtaIntercalibration_Stat119: 5.97817336e-11 syst_JES_EtaIntercalibration_Stat12: 0.0 syst_JES_EtaIntercalibration_Stat120: 0.0 syst_JES_EtaIntercalibration_Stat121: 0.0 syst_JES_EtaIntercalibration_Stat122: 0.0 - syst_JES_EtaIntercalibration_Stat123: 3.062187531814471e-07 - syst_JES_EtaIntercalibration_Stat124: 0.00020897435895343713 - syst_JES_EtaIntercalibration_Stat125: 0.0006808025343666106 - syst_JES_EtaIntercalibration_Stat126: 0.0002685695516528261 - syst_JES_EtaIntercalibration_Stat127: 4.0540547147269733e-05 - syst_JES_EtaIntercalibration_Stat128: 0.002321529022002525 - syst_JES_EtaIntercalibration_Stat129: 0.00492323592772071 + syst_JES_EtaIntercalibration_Stat123: 3.06218753e-07 + syst_JES_EtaIntercalibration_Stat124: 2.08974359e-04 + syst_JES_EtaIntercalibration_Stat125: 6.80802534e-04 + syst_JES_EtaIntercalibration_Stat126: 2.68569552e-04 + syst_JES_EtaIntercalibration_Stat127: 4.05405471e-05 + syst_JES_EtaIntercalibration_Stat128: 2.32152902e-03 + syst_JES_EtaIntercalibration_Stat129: 4.92323593e-03 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 0.0003473757907511691 - syst_JES_EtaIntercalibration_Stat131: 6.504827495791106e-06 + syst_JES_EtaIntercalibration_Stat130: 3.47375791e-04 + syst_JES_EtaIntercalibration_Stat131: 6.50482750e-06 syst_JES_EtaIntercalibration_Stat132: 0.0 syst_JES_EtaIntercalibration_Stat133: 0.0 syst_JES_EtaIntercalibration_Stat134: 0.0 syst_JES_EtaIntercalibration_Stat135: 0.0 syst_JES_EtaIntercalibration_Stat136: 0.0 - syst_JES_EtaIntercalibration_Stat137: 5.97817336232398e-11 - syst_JES_EtaIntercalibration_Stat138: 5.97817336232398e-11 - syst_JES_EtaIntercalibration_Stat139: 2.8855966454097493e-10 + syst_JES_EtaIntercalibration_Stat137: 5.97817336e-11 + syst_JES_EtaIntercalibration_Stat138: 5.97817336e-11 + syst_JES_EtaIntercalibration_Stat139: 2.88559665e-10 syst_JES_EtaIntercalibration_Stat14: 0.0 syst_JES_EtaIntercalibration_Stat140: 0.0 syst_JES_EtaIntercalibration_Stat141: 0.0 - syst_JES_EtaIntercalibration_Stat142: 2.1468623940066583e-05 - syst_JES_EtaIntercalibration_Stat143: 0.0006867861675951257 - syst_JES_EtaIntercalibration_Stat144: 0.0034643816230317355 - syst_JES_EtaIntercalibration_Stat145: 0.0009545433829847651 - syst_JES_EtaIntercalibration_Stat146: 0.005053792313698693 - syst_JES_EtaIntercalibration_Stat147: 0.004791307475000952 - syst_JES_EtaIntercalibration_Stat148: 0.0004660101122025143 - syst_JES_EtaIntercalibration_Stat149: 1.3136726076157637e-05 + syst_JES_EtaIntercalibration_Stat142: 2.14686239e-05 + syst_JES_EtaIntercalibration_Stat143: 6.86786168e-04 + syst_JES_EtaIntercalibration_Stat144: 3.46438162e-03 + syst_JES_EtaIntercalibration_Stat145: 9.54543383e-04 + syst_JES_EtaIntercalibration_Stat146: 5.05379231e-03 + syst_JES_EtaIntercalibration_Stat147: 4.79130748e-03 + syst_JES_EtaIntercalibration_Stat148: 4.66010112e-04 + syst_JES_EtaIntercalibration_Stat149: 1.31367261e-05 syst_JES_EtaIntercalibration_Stat15: 0.0 syst_JES_EtaIntercalibration_Stat150: 0.0 syst_JES_EtaIntercalibration_Stat151: 0.0 @@ -57876,60 +57876,60 @@ bins: syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 5.97817336232398e-11 - syst_JES_EtaIntercalibration_Stat157: 2.8855966454097493e-10 + syst_JES_EtaIntercalibration_Stat156: 5.97817336e-11 + syst_JES_EtaIntercalibration_Stat157: 2.88559665e-10 syst_JES_EtaIntercalibration_Stat158: 0.0 syst_JES_EtaIntercalibration_Stat159: 0.0 - syst_JES_EtaIntercalibration_Stat16: 1.604745073212565e-13 - syst_JES_EtaIntercalibration_Stat160: 2.200425557636522e-05 - syst_JES_EtaIntercalibration_Stat161: 0.0003620323724475478 - syst_JES_EtaIntercalibration_Stat162: 0.0032929978363187545 - syst_JES_EtaIntercalibration_Stat163: 0.0032268512516073623 - syst_JES_EtaIntercalibration_Stat164: 0.008258338214647061 - syst_JES_EtaIntercalibration_Stat165: 0.007440580152111796 - syst_JES_EtaIntercalibration_Stat166: 0.0017834823923018556 - syst_JES_EtaIntercalibration_Stat167: 1.5069719995739803e-05 + syst_JES_EtaIntercalibration_Stat16: 1.60474507e-13 + syst_JES_EtaIntercalibration_Stat160: 2.20042556e-05 + syst_JES_EtaIntercalibration_Stat161: 3.62032372e-04 + syst_JES_EtaIntercalibration_Stat162: 3.29299784e-03 + syst_JES_EtaIntercalibration_Stat163: 3.22685125e-03 + syst_JES_EtaIntercalibration_Stat164: 8.25833821e-03 + syst_JES_EtaIntercalibration_Stat165: 7.44058015e-03 + syst_JES_EtaIntercalibration_Stat166: 1.78348239e-03 + syst_JES_EtaIntercalibration_Stat167: 1.50697200e-05 syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 - syst_JES_EtaIntercalibration_Stat17: 1.1868666089750777e-12 + syst_JES_EtaIntercalibration_Stat17: 1.18686661e-12 syst_JES_EtaIntercalibration_Stat170: 0.0 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 - syst_JES_EtaIntercalibration_Stat174: 2.8855966454097493e-10 - syst_JES_EtaIntercalibration_Stat175: 2.8855966454097493e-10 + syst_JES_EtaIntercalibration_Stat174: 2.88559665e-10 + syst_JES_EtaIntercalibration_Stat175: 2.88559665e-10 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 - syst_JES_EtaIntercalibration_Stat178: 0.00020677196981215806 - syst_JES_EtaIntercalibration_Stat179: 0.0011584599119089103 - syst_JES_EtaIntercalibration_Stat18: 1.0281948599365784e-10 - syst_JES_EtaIntercalibration_Stat180: 0.008212996651649141 - syst_JES_EtaIntercalibration_Stat181: 0.00968170573814346 - syst_JES_EtaIntercalibration_Stat182: 0.01735921945249843 - syst_JES_EtaIntercalibration_Stat183: 0.0036688548622151847 - syst_JES_EtaIntercalibration_Stat184: 0.00011526729790686516 + syst_JES_EtaIntercalibration_Stat178: 2.06771970e-04 + syst_JES_EtaIntercalibration_Stat179: 1.15845991e-03 + syst_JES_EtaIntercalibration_Stat18: 1.02819486e-10 + syst_JES_EtaIntercalibration_Stat180: 8.21299665e-03 + syst_JES_EtaIntercalibration_Stat181: 9.68170574e-03 + syst_JES_EtaIntercalibration_Stat182: 1.73592195e-02 + syst_JES_EtaIntercalibration_Stat183: 3.66885486e-03 + syst_JES_EtaIntercalibration_Stat184: 1.15267298e-04 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 syst_JES_EtaIntercalibration_Stat187: 0.0 - syst_JES_EtaIntercalibration_Stat188: 6.820816080206239e-08 + syst_JES_EtaIntercalibration_Stat188: 6.82081608e-08 syst_JES_EtaIntercalibration_Stat189: 0.0 - syst_JES_EtaIntercalibration_Stat19: 7.258609974884999e-11 + syst_JES_EtaIntercalibration_Stat19: 7.25860997e-11 syst_JES_EtaIntercalibration_Stat190: 0.0 - syst_JES_EtaIntercalibration_Stat191: 2.8855966454097493e-10 - syst_JES_EtaIntercalibration_Stat192: 2.8855966454097493e-10 + syst_JES_EtaIntercalibration_Stat191: 2.88559665e-10 + syst_JES_EtaIntercalibration_Stat192: 2.88559665e-10 syst_JES_EtaIntercalibration_Stat193: 0.0 syst_JES_EtaIntercalibration_Stat194: 0.0 - syst_JES_EtaIntercalibration_Stat195: 0.0002115006384742136 - syst_JES_EtaIntercalibration_Stat196: 0.002561619995237389 - syst_JES_EtaIntercalibration_Stat197: 0.017183581553331658 - syst_JES_EtaIntercalibration_Stat198: 0.0008782929067230362 - syst_JES_EtaIntercalibration_Stat199: 2.691260182052267e-05 - syst_JES_EtaIntercalibration_Stat2: 3.3173163110412003e-10 + syst_JES_EtaIntercalibration_Stat195: 2.11500638e-04 + syst_JES_EtaIntercalibration_Stat196: 2.56162000e-03 + syst_JES_EtaIntercalibration_Stat197: 1.71835816e-02 + syst_JES_EtaIntercalibration_Stat198: 8.78292907e-04 + syst_JES_EtaIntercalibration_Stat199: 2.69126018e-05 + syst_JES_EtaIntercalibration_Stat2: 3.31731631e-10 syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 syst_JES_EtaIntercalibration_Stat201: 0.0 syst_JES_EtaIntercalibration_Stat202: 0.0 - syst_JES_EtaIntercalibration_Stat203: 6.820816080206239e-08 + syst_JES_EtaIntercalibration_Stat203: 6.82081608e-08 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 @@ -57937,9 +57937,9 @@ bins: syst_JES_EtaIntercalibration_Stat208: 0.0 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 3.855254443363629e-05 - syst_JES_EtaIntercalibration_Stat211: 0.00018721016719184884 - syst_JES_EtaIntercalibration_Stat212: 8.980683437244629e-08 + syst_JES_EtaIntercalibration_Stat210: 3.85525444e-05 + syst_JES_EtaIntercalibration_Stat211: 1.87210167e-04 + syst_JES_EtaIntercalibration_Stat212: 8.98068344e-08 syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 syst_JES_EtaIntercalibration_Stat215: 0.0 @@ -57951,37 +57951,37 @@ bins: syst_JES_EtaIntercalibration_Stat220: 0.0 syst_JES_EtaIntercalibration_Stat221: 0.0 syst_JES_EtaIntercalibration_Stat222: 0.0 - syst_JES_EtaIntercalibration_Stat223: 1.0983800196198034e-06 - syst_JES_EtaIntercalibration_Stat224: 8.982415488052198e-08 + syst_JES_EtaIntercalibration_Stat223: 1.09838002e-06 + syst_JES_EtaIntercalibration_Stat224: 8.98241549e-08 syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 syst_JES_EtaIntercalibration_Stat227: 0.0 syst_JES_EtaIntercalibration_Stat228: 0.0 syst_JES_EtaIntercalibration_Stat229: 0.0 - syst_JES_EtaIntercalibration_Stat23: 2.6345586323898735e-10 + syst_JES_EtaIntercalibration_Stat23: 2.63455863e-10 syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 syst_JES_EtaIntercalibration_Stat232: 0.0 syst_JES_EtaIntercalibration_Stat233: 0.0 syst_JES_EtaIntercalibration_Stat234: 0.0 - syst_JES_EtaIntercalibration_Stat235: 1.0266731161864518e-06 + syst_JES_EtaIntercalibration_Stat235: 1.02667312e-06 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 syst_JES_EtaIntercalibration_Stat239: 0.0 - syst_JES_EtaIntercalibration_Stat24: 1.0320067187281292e-07 + syst_JES_EtaIntercalibration_Stat24: 1.03200672e-07 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 syst_JES_EtaIntercalibration_Stat243: 0.0 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 - syst_JES_EtaIntercalibration_Stat25: 1.9298958383291053e-05 - syst_JES_EtaIntercalibration_Stat26: 4.582954069156705e-10 + syst_JES_EtaIntercalibration_Stat25: 1.92989584e-05 + syst_JES_EtaIntercalibration_Stat26: 4.58295407e-10 syst_JES_EtaIntercalibration_Stat27: 0.0 syst_JES_EtaIntercalibration_Stat28: 0.0 syst_JES_EtaIntercalibration_Stat29: 0.0 - syst_JES_EtaIntercalibration_Stat3: 4.070003777639524e-10 + syst_JES_EtaIntercalibration_Stat3: 4.07000378e-10 syst_JES_EtaIntercalibration_Stat30: 0.0 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 @@ -57990,19 +57990,19 @@ bins: syst_JES_EtaIntercalibration_Stat35: 0.0 syst_JES_EtaIntercalibration_Stat36: 0.0 syst_JES_EtaIntercalibration_Stat37: 0.0 - syst_JES_EtaIntercalibration_Stat38: 1.604745073212565e-13 - syst_JES_EtaIntercalibration_Stat39: 1.6947202571516044e-10 + syst_JES_EtaIntercalibration_Stat38: 1.60474507e-13 + syst_JES_EtaIntercalibration_Stat39: 1.69472026e-10 syst_JES_EtaIntercalibration_Stat4: 0.0 - syst_JES_EtaIntercalibration_Stat40: 7.460809272458317e-08 - syst_JES_EtaIntercalibration_Stat41: 1.491374764269531e-08 - syst_JES_EtaIntercalibration_Stat42: 8.255820174277053e-12 + syst_JES_EtaIntercalibration_Stat40: 7.46080927e-08 + syst_JES_EtaIntercalibration_Stat41: 1.49137476e-08 + syst_JES_EtaIntercalibration_Stat42: 8.25582017e-12 syst_JES_EtaIntercalibration_Stat43: 0.0 - syst_JES_EtaIntercalibration_Stat44: 1.6515104450169244e-11 - syst_JES_EtaIntercalibration_Stat45: 1.4764606327295014e-09 - syst_JES_EtaIntercalibration_Stat46: 1.5074407858022151e-05 - syst_JES_EtaIntercalibration_Stat47: 1.87706089605532e-05 - syst_JES_EtaIntercalibration_Stat48: 5.021360440159619e-08 - syst_JES_EtaIntercalibration_Stat49: 1.3397412996545265e-11 + syst_JES_EtaIntercalibration_Stat44: 1.65151045e-11 + syst_JES_EtaIntercalibration_Stat45: 1.47646063e-09 + syst_JES_EtaIntercalibration_Stat46: 1.50744079e-05 + syst_JES_EtaIntercalibration_Stat47: 1.87706090e-05 + syst_JES_EtaIntercalibration_Stat48: 5.02136044e-08 + syst_JES_EtaIntercalibration_Stat49: 1.33974130e-11 syst_JES_EtaIntercalibration_Stat5: 0.0 syst_JES_EtaIntercalibration_Stat50: 0.0 syst_JES_EtaIntercalibration_Stat51: 0.0 @@ -58013,21 +58013,21 @@ bins: syst_JES_EtaIntercalibration_Stat56: 0.0 syst_JES_EtaIntercalibration_Stat57: 0.0 syst_JES_EtaIntercalibration_Stat58: 0.0 - syst_JES_EtaIntercalibration_Stat59: 1.604745073212565e-13 + syst_JES_EtaIntercalibration_Stat59: 1.60474507e-13 syst_JES_EtaIntercalibration_Stat6: 0.0 - syst_JES_EtaIntercalibration_Stat60: 1.0017337807521518e-12 - syst_JES_EtaIntercalibration_Stat61: 4.2902289857302486e-08 - syst_JES_EtaIntercalibration_Stat62: 9.170210725495898e-05 - syst_JES_EtaIntercalibration_Stat63: 1.9483265556625767e-07 - syst_JES_EtaIntercalibration_Stat64: 1.1233504306315104e-10 + syst_JES_EtaIntercalibration_Stat60: 1.00173378e-12 + syst_JES_EtaIntercalibration_Stat61: 4.29022899e-08 + syst_JES_EtaIntercalibration_Stat62: 9.17021073e-05 + syst_JES_EtaIntercalibration_Stat63: 1.94832656e-07 + syst_JES_EtaIntercalibration_Stat64: 1.12335043e-10 syst_JES_EtaIntercalibration_Stat65: 0.0 - syst_JES_EtaIntercalibration_Stat66: 1.6515104450169244e-11 - syst_JES_EtaIntercalibration_Stat67: 1.2920737082303006e-07 - syst_JES_EtaIntercalibration_Stat68: 3.984992350055392e-05 - syst_JES_EtaIntercalibration_Stat69: 3.906035682120684e-05 + syst_JES_EtaIntercalibration_Stat66: 1.65151045e-11 + syst_JES_EtaIntercalibration_Stat67: 1.29207371e-07 + syst_JES_EtaIntercalibration_Stat68: 3.98499235e-05 + syst_JES_EtaIntercalibration_Stat69: 3.90603568e-05 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 1.8885714991760306e-05 - syst_JES_EtaIntercalibration_Stat71: 3.719632082612473e-10 + syst_JES_EtaIntercalibration_Stat70: 1.88857150e-05 + syst_JES_EtaIntercalibration_Stat71: 3.71963208e-10 syst_JES_EtaIntercalibration_Stat72: 0.0 syst_JES_EtaIntercalibration_Stat73: 0.0 syst_JES_EtaIntercalibration_Stat74: 0.0 @@ -58038,19 +58038,19 @@ bins: syst_JES_EtaIntercalibration_Stat79: 0.0 syst_JES_EtaIntercalibration_Stat8: 0.0 syst_JES_EtaIntercalibration_Stat80: 0.0 - syst_JES_EtaIntercalibration_Stat81: 1.604745073212565e-13 - syst_JES_EtaIntercalibration_Stat82: 2.92502217940309e-11 - syst_JES_EtaIntercalibration_Stat83: 4.221329411453221e-07 - syst_JES_EtaIntercalibration_Stat84: 3.724831315308118e-05 - syst_JES_EtaIntercalibration_Stat85: 0.00011734804770425454 - syst_JES_EtaIntercalibration_Stat86: 1.3994493443851406e-08 + syst_JES_EtaIntercalibration_Stat81: 1.60474507e-13 + syst_JES_EtaIntercalibration_Stat82: 2.92502218e-11 + syst_JES_EtaIntercalibration_Stat83: 4.22132941e-07 + syst_JES_EtaIntercalibration_Stat84: 3.72483132e-05 + syst_JES_EtaIntercalibration_Stat85: 1.17348048e-04 + syst_JES_EtaIntercalibration_Stat86: 1.39944934e-08 syst_JES_EtaIntercalibration_Stat87: 0.0 - syst_JES_EtaIntercalibration_Stat88: 2.693354924624677e-07 - syst_JES_EtaIntercalibration_Stat89: 4.22269132189413e-05 + syst_JES_EtaIntercalibration_Stat88: 2.69335492e-07 + syst_JES_EtaIntercalibration_Stat89: 4.22269132e-05 syst_JES_EtaIntercalibration_Stat9: 0.0 - syst_JES_EtaIntercalibration_Stat90: 0.00011296936620163894 - syst_JES_EtaIntercalibration_Stat91: 1.925307068365979e-05 - syst_JES_EtaIntercalibration_Stat92: 4.244544427694803e-10 + syst_JES_EtaIntercalibration_Stat90: 1.12969366e-04 + syst_JES_EtaIntercalibration_Stat91: 1.92530707e-05 + syst_JES_EtaIntercalibration_Stat92: 4.24454443e-10 syst_JES_EtaIntercalibration_Stat93: 0.0 syst_JES_EtaIntercalibration_Stat94: 0.0 syst_JES_EtaIntercalibration_Stat95: 0.0 @@ -58058,159 +58058,159 @@ bins: syst_JES_EtaIntercalibration_Stat97: 0.0 syst_JES_EtaIntercalibration_Stat98: 0.0 syst_JES_EtaIntercalibration_Stat99: 0.0 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.009514610396647883 - syst_JES_Flavour_Comp: 0.03049221703976279 - syst_JES_Gjet_Generator: 0.10034790219531248 - syst_JES_Gjet_OOC: 0.07259433913880614 - syst_JES_Gjet_Purity: 0.025253963550302357 - syst_JES_Gjet_Stat1: 0.0002680293407446282 - syst_JES_Gjet_Stat10: 0.0049199823932611795 - syst_JES_Gjet_Stat11: 0.007312561845892313 - syst_JES_Gjet_Stat12: 0.013801378798873684 - syst_JES_Gjet_Stat13: 0.00819586790706146 - syst_JES_Gjet_Stat14: 0.0016078319657227866 - syst_JES_Gjet_Stat15: 0.00018514088061527634 - syst_JES_Gjet_Stat2: 0.00031108765272025825 - syst_JES_Gjet_Stat3: 0.00016619334282696162 - syst_JES_Gjet_Stat4: 0.00023016332754535417 - syst_JES_Gjet_Stat5: 0.00021207113588369352 - syst_JES_Gjet_Stat6: 0.00017903518110974726 - syst_JES_Gjet_Stat7: 0.00035992049121993594 - syst_JES_Gjet_Stat8: 0.000987710494021401 - syst_JES_Gjet_Stat9: 0.0023980198080916673 - syst_JES_Gjet_Veto: 0.03851055439746356 - syst_JES_Gjet_dPhi: 0.005252241711878843 - syst_JES_LArESZee: 0.13780472370350735 - syst_JES_LArEsmear: 0.011108611929489661 - syst_JES_LAr_JVT: 0.014890543979317881 - syst_JES_MJB_Alpha: 0.0013578262039009262 - syst_JES_MJB_Asym: 0.0038077781907563894 - syst_JES_MJB_Beta: 0.00046805192668655907 - syst_JES_MJB_Stat1: 0.0011562866113122646 - syst_JES_MJB_Stat10: 1.3848690142745296e-06 - syst_JES_MJB_Stat11: 1.105741235551971e-07 - syst_JES_MJB_Stat12: 1.190178712420954e-08 - syst_JES_MJB_Stat13: 7.842726056671877e-09 + syst_JES_EtaIntercalibration_TotalStat_MJB: 9.51461040e-03 + syst_JES_Flavour_Comp: 3.04922170e-02 + syst_JES_Gjet_Generator: 1.00347902e-01 + syst_JES_Gjet_OOC: 7.25943391e-02 + syst_JES_Gjet_Purity: 2.52539636e-02 + syst_JES_Gjet_Stat1: 2.68029341e-04 + syst_JES_Gjet_Stat10: 4.91998239e-03 + syst_JES_Gjet_Stat11: 7.31256185e-03 + syst_JES_Gjet_Stat12: 1.38013788e-02 + syst_JES_Gjet_Stat13: 8.19586791e-03 + syst_JES_Gjet_Stat14: 1.60783197e-03 + syst_JES_Gjet_Stat15: 1.85140881e-04 + syst_JES_Gjet_Stat2: 3.11087653e-04 + syst_JES_Gjet_Stat3: 1.66193343e-04 + syst_JES_Gjet_Stat4: 2.30163328e-04 + syst_JES_Gjet_Stat5: 2.12071136e-04 + syst_JES_Gjet_Stat6: 1.79035181e-04 + syst_JES_Gjet_Stat7: 3.59920491e-04 + syst_JES_Gjet_Stat8: 9.87710494e-04 + syst_JES_Gjet_Stat9: 2.39801981e-03 + syst_JES_Gjet_Veto: 3.85105544e-02 + syst_JES_Gjet_dPhi: 5.25224171e-03 + syst_JES_LArESZee: 1.37804724e-01 + syst_JES_LArEsmear: 1.11086119e-02 + syst_JES_LAr_JVT: 1.48905440e-02 + syst_JES_MJB_Alpha: 1.35782620e-03 + syst_JES_MJB_Asym: 3.80777819e-03 + syst_JES_MJB_Beta: 4.68051927e-04 + syst_JES_MJB_Stat1: 1.15628661e-03 + syst_JES_MJB_Stat10: 1.38486901e-06 + syst_JES_MJB_Stat11: 1.10574124e-07 + syst_JES_MJB_Stat12: 1.19017871e-08 + syst_JES_MJB_Stat13: 7.84272606e-09 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 0.0014119868979562099 - syst_JES_MJB_Stat3: 0.0008344639402035296 - syst_JES_MJB_Stat4: 0.00015575425901078916 - syst_JES_MJB_Stat5: 8.608735621448715e-05 - syst_JES_MJB_Stat6: 5.942056441165802e-05 - syst_JES_MJB_Stat7: 1.1847275318295763e-06 - syst_JES_MJB_Stat8: 1.411715801302694e-06 - syst_JES_MJB_Stat9: 1.411715801302694e-06 - syst_JES_MJB_Threshold: 0.004764001889168391 - syst_JES_Pileup_MuOffset: 0.007325652240585817 - syst_JES_Pileup_NPVOffset: 0.010968821358742243 - syst_JES_Pileup_Pt_term: 0.046560445390910934 - syst_JES_PunchThrough_MC15: 0.0009998848133660196 + syst_JES_MJB_Stat2: 1.41198690e-03 + syst_JES_MJB_Stat3: 8.34463940e-04 + syst_JES_MJB_Stat4: 1.55754259e-04 + syst_JES_MJB_Stat5: 8.60873562e-05 + syst_JES_MJB_Stat6: 5.94205644e-05 + syst_JES_MJB_Stat7: 1.18472753e-06 + syst_JES_MJB_Stat8: 1.41171580e-06 + syst_JES_MJB_Stat9: 1.41171580e-06 + syst_JES_MJB_Threshold: 4.76400189e-03 + syst_JES_Pileup_MuOffset: 7.32565224e-03 + syst_JES_Pileup_NPVOffset: 1.09688214e-02 + syst_JES_Pileup_Pt_term: 4.65604454e-02 + syst_JES_PunchThrough_MC15: 9.99884813e-04 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.08898705565979807 - syst_JES_Zjet_MuScale: 0.005601071415363314 - syst_JES_Zjet_MuSmearID: 0.0006601649396173657 - syst_JES_Zjet_MuSmearMS: 0.017889831609045403 - syst_JES_Zjet_OOC: 0.03401016612720379 - syst_JES_Zjet_Stat1: 0.0012613060136223882 - syst_JES_Zjet_Stat10: 0.003989835774502504 - syst_JES_Zjet_Stat11: 0.004635665513170681 - syst_JES_Zjet_Stat12: 0.029470651502808688 - syst_JES_Zjet_Stat13: 0.013561458651266095 - syst_JES_Zjet_Stat2: 0.0001963687199651462 - syst_JES_Zjet_Stat3: 0.00038526316417320514 - syst_JES_Zjet_Stat4: 0.0003846677781888548 - syst_JES_Zjet_Stat5: 0.0007936717883829562 - syst_JES_Zjet_Stat6: 0.0009211627571037596 - syst_JES_Zjet_Stat7: 0.000723117722089564 - syst_JES_Zjet_Stat8: 0.0008993840725741144 - syst_JES_Zjet_Stat9: 0.0011310363953029982 - syst_JES_Zjet_Veto: 0.006796818134244877 - syst_JES_Zjet_dPhi: 0.005918461539961208 + syst_JES_Zjet_MC: 8.89870557e-02 + syst_JES_Zjet_MuScale: 5.60107142e-03 + syst_JES_Zjet_MuSmearID: 6.60164940e-04 + syst_JES_Zjet_MuSmearMS: 1.78898316e-02 + syst_JES_Zjet_OOC: 3.40101661e-02 + syst_JES_Zjet_Stat1: 1.26130601e-03 + syst_JES_Zjet_Stat10: 3.98983577e-03 + syst_JES_Zjet_Stat11: 4.63566551e-03 + syst_JES_Zjet_Stat12: 2.94706515e-02 + syst_JES_Zjet_Stat13: 1.35614587e-02 + syst_JES_Zjet_Stat2: 1.96368720e-04 + syst_JES_Zjet_Stat3: 3.85263164e-04 + syst_JES_Zjet_Stat4: 3.84667778e-04 + syst_JES_Zjet_Stat5: 7.93671788e-04 + syst_JES_Zjet_Stat6: 9.21162757e-04 + syst_JES_Zjet_Stat7: 7.23117722e-04 + syst_JES_Zjet_Stat8: 8.99384073e-04 + syst_JES_Zjet_Stat9: 1.13103640e-03 + syst_JES_Zjet_Veto: 6.79681813e-03 + syst_JES_Zjet_dPhi: 5.91846154e-03 syst_PRW: 0.0 syst_Unfolding_bias: 0.006273 - syst_cleaning: 0.01731184782165093 + syst_cleaning: 1.73118478e-02 syst_lumi: 0.07339 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 0.04933586727726593 - syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.009502079390849141 - syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.02131711284391017 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 0.021510375984626583 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0068321335613408495 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.021993036966276393 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 4.93358673e-02 + syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 9.50207939e-03 + syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 2.13171128e-02 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 2.15103760e-02 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 6.83213356e-03 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 2.19930370e-02 - stat: 0.028745 - syst_JER_CROSS_CALIB_FORWARD: 0.00013291 + syst_JER_CROSS_CALIB_FORWARD: 1.32910000e-04 syst_JER_NOISE_FORWARD: 0.010079 - syst_JER_NP0: 0.01205676800597905 - syst_JER_NP1: 0.015400392852132051 - syst_JER_NP2: 0.0011452298633898787 - syst_JER_NP3: 0.006305874959115507 - syst_JER_NP4: 0.0042381514838429266 - syst_JER_NP5: 0.0011678836585893304 - syst_JER_NP6: 0.0008546217467394567 - syst_JER_NP7: 2.3508490502222274e-06 - syst_JER_NP8: 0.003001499845077457 - syst_JES_EtaIntercalibration_Modelling: 0.09442470267361185 - syst_JES_EtaIntercalibration_NonClosure: 0.018383710180483157 + syst_JER_NP0: 1.20567680e-02 + syst_JER_NP1: 1.54003929e-02 + syst_JER_NP2: 1.14522986e-03 + syst_JER_NP3: 6.30587496e-03 + syst_JER_NP4: 4.23815148e-03 + syst_JER_NP5: 1.16788366e-03 + syst_JER_NP6: 8.54621747e-04 + syst_JER_NP7: 2.35084905e-06 + syst_JER_NP8: 3.00149985e-03 + syst_JES_EtaIntercalibration_Modelling: 9.44247027e-02 + syst_JES_EtaIntercalibration_NonClosure: 1.83837102e-02 syst_JES_EtaIntercalibration_Stat0: 0.0 - syst_JES_EtaIntercalibration_Stat1: 6.670993685351531e-13 + syst_JES_EtaIntercalibration_Stat1: 6.67099369e-13 syst_JES_EtaIntercalibration_Stat10: 0.0 syst_JES_EtaIntercalibration_Stat100: 0.0 syst_JES_EtaIntercalibration_Stat101: 0.0 syst_JES_EtaIntercalibration_Stat102: 0.0 - syst_JES_EtaIntercalibration_Stat103: 7.46244844203295e-12 - syst_JES_EtaIntercalibration_Stat104: 8.815236280048029e-06 - syst_JES_EtaIntercalibration_Stat105: 3.9839390140287036e-05 - syst_JES_EtaIntercalibration_Stat106: 2.0033389147870113e-05 - syst_JES_EtaIntercalibration_Stat107: 2.0280000197238657e-09 - syst_JES_EtaIntercalibration_Stat108: 9.758838609178861e-07 - syst_JES_EtaIntercalibration_Stat109: 2.677937173926976e-05 + syst_JES_EtaIntercalibration_Stat103: 7.46244844e-12 + syst_JES_EtaIntercalibration_Stat104: 8.81523628e-06 + syst_JES_EtaIntercalibration_Stat105: 3.98393901e-05 + syst_JES_EtaIntercalibration_Stat106: 2.00333891e-05 + syst_JES_EtaIntercalibration_Stat107: 2.02800002e-09 + syst_JES_EtaIntercalibration_Stat108: 9.75883861e-07 + syst_JES_EtaIntercalibration_Stat109: 2.67793717e-05 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 1.8685039470121543e-05 - syst_JES_EtaIntercalibration_Stat111: 2.6351278280189747e-05 - syst_JES_EtaIntercalibration_Stat112: 6.724227238175923e-06 + syst_JES_EtaIntercalibration_Stat110: 1.86850395e-05 + syst_JES_EtaIntercalibration_Stat111: 2.63512783e-05 + syst_JES_EtaIntercalibration_Stat112: 6.72422724e-06 syst_JES_EtaIntercalibration_Stat113: 0.0 syst_JES_EtaIntercalibration_Stat114: 0.0 syst_JES_EtaIntercalibration_Stat115: 0.0 syst_JES_EtaIntercalibration_Stat116: 0.0 syst_JES_EtaIntercalibration_Stat117: 0.0 - syst_JES_EtaIntercalibration_Stat118: 5.159779355747686e-12 - syst_JES_EtaIntercalibration_Stat119: 5.159779355747686e-12 + syst_JES_EtaIntercalibration_Stat118: 5.15977936e-12 + syst_JES_EtaIntercalibration_Stat119: 5.15977936e-12 syst_JES_EtaIntercalibration_Stat12: 0.0 syst_JES_EtaIntercalibration_Stat120: 0.0 syst_JES_EtaIntercalibration_Stat121: 0.0 syst_JES_EtaIntercalibration_Stat122: 0.0 - syst_JES_EtaIntercalibration_Stat123: 3.592703395425234e-08 - syst_JES_EtaIntercalibration_Stat124: 0.00011707509541636086 - syst_JES_EtaIntercalibration_Stat125: 0.00016402691852254004 - syst_JES_EtaIntercalibration_Stat126: 7.062202489308842e-05 - syst_JES_EtaIntercalibration_Stat127: 3.5341749744459455e-06 - syst_JES_EtaIntercalibration_Stat128: 0.0008024293800702963 - syst_JES_EtaIntercalibration_Stat129: 0.001650685539404765 + syst_JES_EtaIntercalibration_Stat123: 3.59270340e-08 + syst_JES_EtaIntercalibration_Stat124: 1.17075095e-04 + syst_JES_EtaIntercalibration_Stat125: 1.64026919e-04 + syst_JES_EtaIntercalibration_Stat126: 7.06220249e-05 + syst_JES_EtaIntercalibration_Stat127: 3.53417497e-06 + syst_JES_EtaIntercalibration_Stat128: 8.02429380e-04 + syst_JES_EtaIntercalibration_Stat129: 1.65068554e-03 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 5.416224281499059e-05 - syst_JES_EtaIntercalibration_Stat131: 3.353453068107559e-06 + syst_JES_EtaIntercalibration_Stat130: 5.41622428e-05 + syst_JES_EtaIntercalibration_Stat131: 3.35345307e-06 syst_JES_EtaIntercalibration_Stat132: 0.0 syst_JES_EtaIntercalibration_Stat133: 0.0 syst_JES_EtaIntercalibration_Stat134: 0.0 syst_JES_EtaIntercalibration_Stat135: 0.0 syst_JES_EtaIntercalibration_Stat136: 0.0 - syst_JES_EtaIntercalibration_Stat137: 5.159779355747686e-12 - syst_JES_EtaIntercalibration_Stat138: 5.159779355747686e-12 - syst_JES_EtaIntercalibration_Stat139: 2.5019473915332434e-11 + syst_JES_EtaIntercalibration_Stat137: 5.15977936e-12 + syst_JES_EtaIntercalibration_Stat138: 5.15977936e-12 + syst_JES_EtaIntercalibration_Stat139: 2.50194739e-11 syst_JES_EtaIntercalibration_Stat14: 0.0 syst_JES_EtaIntercalibration_Stat140: 0.0 syst_JES_EtaIntercalibration_Stat141: 0.0 - syst_JES_EtaIntercalibration_Stat142: 8.965020513796943e-06 - syst_JES_EtaIntercalibration_Stat143: 0.00017474595131432947 - syst_JES_EtaIntercalibration_Stat144: 0.0010923296880978746 - syst_JES_EtaIntercalibration_Stat145: 0.00025847317075472265 - syst_JES_EtaIntercalibration_Stat146: 0.0019127014273011876 - syst_JES_EtaIntercalibration_Stat147: 0.001938528307763392 - syst_JES_EtaIntercalibration_Stat148: 0.00018243001315778609 - syst_JES_EtaIntercalibration_Stat149: 5.4004266319893655e-06 + syst_JES_EtaIntercalibration_Stat142: 8.96502051e-06 + syst_JES_EtaIntercalibration_Stat143: 1.74745951e-04 + syst_JES_EtaIntercalibration_Stat144: 1.09232969e-03 + syst_JES_EtaIntercalibration_Stat145: 2.58473171e-04 + syst_JES_EtaIntercalibration_Stat146: 1.91270143e-03 + syst_JES_EtaIntercalibration_Stat147: 1.93852831e-03 + syst_JES_EtaIntercalibration_Stat148: 1.82430013e-04 + syst_JES_EtaIntercalibration_Stat149: 5.40042663e-06 syst_JES_EtaIntercalibration_Stat15: 0.0 syst_JES_EtaIntercalibration_Stat150: 0.0 syst_JES_EtaIntercalibration_Stat151: 0.0 @@ -58218,60 +58218,60 @@ bins: syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 5.159779355747686e-12 - syst_JES_EtaIntercalibration_Stat157: 2.5019473915332434e-11 + syst_JES_EtaIntercalibration_Stat156: 5.15977936e-12 + syst_JES_EtaIntercalibration_Stat157: 2.50194739e-11 syst_JES_EtaIntercalibration_Stat158: 0.0 syst_JES_EtaIntercalibration_Stat159: 0.0 - syst_JES_EtaIntercalibration_Stat16: 1.5510514981779295e-14 - syst_JES_EtaIntercalibration_Stat160: 9.062737754711597e-06 - syst_JES_EtaIntercalibration_Stat161: 0.00016691030884879462 - syst_JES_EtaIntercalibration_Stat162: 0.0010929547886349188 - syst_JES_EtaIntercalibration_Stat163: 0.0011344866537337493 - syst_JES_EtaIntercalibration_Stat164: 0.003721091463535934 - syst_JES_EtaIntercalibration_Stat165: 0.0028581072408151516 - syst_JES_EtaIntercalibration_Stat166: 0.0007757060130249088 - syst_JES_EtaIntercalibration_Stat167: 6.121544984724036e-06 + syst_JES_EtaIntercalibration_Stat16: 1.55105150e-14 + syst_JES_EtaIntercalibration_Stat160: 9.06273775e-06 + syst_JES_EtaIntercalibration_Stat161: 1.66910309e-04 + syst_JES_EtaIntercalibration_Stat162: 1.09295479e-03 + syst_JES_EtaIntercalibration_Stat163: 1.13448665e-03 + syst_JES_EtaIntercalibration_Stat164: 3.72109146e-03 + syst_JES_EtaIntercalibration_Stat165: 2.85810724e-03 + syst_JES_EtaIntercalibration_Stat166: 7.75706013e-04 + syst_JES_EtaIntercalibration_Stat167: 6.12154498e-06 syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 - syst_JES_EtaIntercalibration_Stat17: 1.0937543691341307e-13 + syst_JES_EtaIntercalibration_Stat17: 1.09375437e-13 syst_JES_EtaIntercalibration_Stat170: 0.0 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 - syst_JES_EtaIntercalibration_Stat174: 2.5019473915332434e-11 - syst_JES_EtaIntercalibration_Stat175: 2.5019473915332434e-11 + syst_JES_EtaIntercalibration_Stat174: 2.50194739e-11 + syst_JES_EtaIntercalibration_Stat175: 2.50194739e-11 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 - syst_JES_EtaIntercalibration_Stat178: 0.00010143115694893753 - syst_JES_EtaIntercalibration_Stat179: 0.00045294042124765154 - syst_JES_EtaIntercalibration_Stat18: 8.96497495813569e-12 - syst_JES_EtaIntercalibration_Stat180: 0.0033335989560833498 - syst_JES_EtaIntercalibration_Stat181: 0.004263197274347036 - syst_JES_EtaIntercalibration_Stat182: 0.011545796410382439 - syst_JES_EtaIntercalibration_Stat183: 0.002201014765965917 - syst_JES_EtaIntercalibration_Stat184: 8.609406643317528e-06 + syst_JES_EtaIntercalibration_Stat178: 1.01431157e-04 + syst_JES_EtaIntercalibration_Stat179: 4.52940421e-04 + syst_JES_EtaIntercalibration_Stat18: 8.96497496e-12 + syst_JES_EtaIntercalibration_Stat180: 3.33359896e-03 + syst_JES_EtaIntercalibration_Stat181: 4.26319727e-03 + syst_JES_EtaIntercalibration_Stat182: 1.15457964e-02 + syst_JES_EtaIntercalibration_Stat183: 2.20101477e-03 + syst_JES_EtaIntercalibration_Stat184: 8.60940664e-06 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 syst_JES_EtaIntercalibration_Stat187: 0.0 - syst_JES_EtaIntercalibration_Stat188: 7.608033172246294e-09 + syst_JES_EtaIntercalibration_Stat188: 7.60803317e-09 syst_JES_EtaIntercalibration_Stat189: 0.0 - syst_JES_EtaIntercalibration_Stat19: 6.308943490593334e-12 + syst_JES_EtaIntercalibration_Stat19: 6.30894349e-12 syst_JES_EtaIntercalibration_Stat190: 0.0 - syst_JES_EtaIntercalibration_Stat191: 2.5019473915332434e-11 - syst_JES_EtaIntercalibration_Stat192: 2.5019473915332434e-11 + syst_JES_EtaIntercalibration_Stat191: 2.50194739e-11 + syst_JES_EtaIntercalibration_Stat192: 2.50194739e-11 syst_JES_EtaIntercalibration_Stat193: 0.0 syst_JES_EtaIntercalibration_Stat194: 0.0 - syst_JES_EtaIntercalibration_Stat195: 4.6419194305804144e-05 - syst_JES_EtaIntercalibration_Stat196: 0.001203842193769599 - syst_JES_EtaIntercalibration_Stat197: 0.01089743854077645 - syst_JES_EtaIntercalibration_Stat198: 0.0011548014634559483 - syst_JES_EtaIntercalibration_Stat199: 1.850058666637358e-05 - syst_JES_EtaIntercalibration_Stat2: 2.8650719375785316e-11 + syst_JES_EtaIntercalibration_Stat195: 4.64191943e-05 + syst_JES_EtaIntercalibration_Stat196: 1.20384219e-03 + syst_JES_EtaIntercalibration_Stat197: 1.08974385e-02 + syst_JES_EtaIntercalibration_Stat198: 1.15480146e-03 + syst_JES_EtaIntercalibration_Stat199: 1.85005867e-05 + syst_JES_EtaIntercalibration_Stat2: 2.86507194e-11 syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 syst_JES_EtaIntercalibration_Stat201: 0.0 syst_JES_EtaIntercalibration_Stat202: 0.0 - syst_JES_EtaIntercalibration_Stat203: 7.608033172246294e-09 + syst_JES_EtaIntercalibration_Stat203: 7.60803317e-09 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 @@ -58279,9 +58279,9 @@ bins: syst_JES_EtaIntercalibration_Stat208: 0.0 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 1.7344757120452855e-05 - syst_JES_EtaIntercalibration_Stat211: 0.00041603376064930115 - syst_JES_EtaIntercalibration_Stat212: 1.984064200070149e-07 + syst_JES_EtaIntercalibration_Stat210: 1.73447571e-05 + syst_JES_EtaIntercalibration_Stat211: 4.16033761e-04 + syst_JES_EtaIntercalibration_Stat212: 1.98406420e-07 syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 syst_JES_EtaIntercalibration_Stat215: 0.0 @@ -58293,37 +58293,37 @@ bins: syst_JES_EtaIntercalibration_Stat220: 0.0 syst_JES_EtaIntercalibration_Stat221: 0.0 syst_JES_EtaIntercalibration_Stat222: 0.0 - syst_JES_EtaIntercalibration_Stat223: 1.6281277591147447e-06 - syst_JES_EtaIntercalibration_Stat224: 1.9857962508777176e-07 + syst_JES_EtaIntercalibration_Stat223: 1.62812776e-06 + syst_JES_EtaIntercalibration_Stat224: 1.98579625e-07 syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 syst_JES_EtaIntercalibration_Stat227: 0.0 syst_JES_EtaIntercalibration_Stat228: 0.0 syst_JES_EtaIntercalibration_Stat229: 0.0 - syst_JES_EtaIntercalibration_Stat23: 2.274553506311733e-11 + syst_JES_EtaIntercalibration_Stat23: 2.27455351e-11 syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 syst_JES_EtaIntercalibration_Stat232: 0.0 syst_JES_EtaIntercalibration_Stat233: 0.0 syst_JES_EtaIntercalibration_Stat234: 0.0 - syst_JES_EtaIntercalibration_Stat235: 1.9857962508777176e-07 + syst_JES_EtaIntercalibration_Stat235: 1.98579625e-07 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 syst_JES_EtaIntercalibration_Stat239: 0.0 - syst_JES_EtaIntercalibration_Stat24: 1.072973839382862e-08 + syst_JES_EtaIntercalibration_Stat24: 1.07297384e-08 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 syst_JES_EtaIntercalibration_Stat243: 0.0 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 - syst_JES_EtaIntercalibration_Stat25: 7.1423913620202e-06 - syst_JES_EtaIntercalibration_Stat26: 3.9794794571652205e-11 + syst_JES_EtaIntercalibration_Stat25: 7.14239136e-06 + syst_JES_EtaIntercalibration_Stat26: 3.97947946e-11 syst_JES_EtaIntercalibration_Stat27: 0.0 syst_JES_EtaIntercalibration_Stat28: 0.0 syst_JES_EtaIntercalibration_Stat29: 0.0 - syst_JES_EtaIntercalibration_Stat3: 3.5343221061470896e-11 + syst_JES_EtaIntercalibration_Stat3: 3.53432211e-11 syst_JES_EtaIntercalibration_Stat30: 0.0 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 @@ -58332,19 +58332,19 @@ bins: syst_JES_EtaIntercalibration_Stat35: 0.0 syst_JES_EtaIntercalibration_Stat36: 0.0 syst_JES_EtaIntercalibration_Stat37: 0.0 - syst_JES_EtaIntercalibration_Stat38: 1.5510514981779295e-14 - syst_JES_EtaIntercalibration_Stat39: 1.4737543893064407e-11 + syst_JES_EtaIntercalibration_Stat38: 1.55105150e-14 + syst_JES_EtaIntercalibration_Stat39: 1.47375439e-11 syst_JES_EtaIntercalibration_Stat4: 0.0 - syst_JES_EtaIntercalibration_Stat40: 7.756446141758478e-09 - syst_JES_EtaIntercalibration_Stat41: 1.3921724273594848e-09 - syst_JES_EtaIntercalibration_Stat42: 7.238240324830338e-13 + syst_JES_EtaIntercalibration_Stat40: 7.75644614e-09 + syst_JES_EtaIntercalibration_Stat41: 1.39217243e-09 + syst_JES_EtaIntercalibration_Stat42: 7.23824032e-13 syst_JES_EtaIntercalibration_Stat43: 0.0 - syst_JES_EtaIntercalibration_Stat44: 1.5094822787962766e-12 - syst_JES_EtaIntercalibration_Stat45: 1.3033655358340576e-10 - syst_JES_EtaIntercalibration_Stat46: 9.422917168663853e-07 - syst_JES_EtaIntercalibration_Stat47: 7.0355983475110345e-06 - syst_JES_EtaIntercalibration_Stat48: 5.2519913430526525e-09 - syst_JES_EtaIntercalibration_Stat49: 1.1900055073401971e-12 + syst_JES_EtaIntercalibration_Stat44: 1.50948228e-12 + syst_JES_EtaIntercalibration_Stat45: 1.30336554e-10 + syst_JES_EtaIntercalibration_Stat46: 9.42291717e-07 + syst_JES_EtaIntercalibration_Stat47: 7.03559835e-06 + syst_JES_EtaIntercalibration_Stat48: 5.25199134e-09 + syst_JES_EtaIntercalibration_Stat49: 1.19000551e-12 syst_JES_EtaIntercalibration_Stat5: 0.0 syst_JES_EtaIntercalibration_Stat50: 0.0 syst_JES_EtaIntercalibration_Stat51: 0.0 @@ -58355,21 +58355,21 @@ bins: syst_JES_EtaIntercalibration_Stat56: 0.0 syst_JES_EtaIntercalibration_Stat57: 0.0 syst_JES_EtaIntercalibration_Stat58: 0.0 - syst_JES_EtaIntercalibration_Stat59: 1.5510514981779295e-14 + syst_JES_EtaIntercalibration_Stat59: 1.55105150e-14 syst_JES_EtaIntercalibration_Stat6: 0.0 - syst_JES_EtaIntercalibration_Stat60: 9.116913663625427e-14 - syst_JES_EtaIntercalibration_Stat61: 4.474234545427855e-09 - syst_JES_EtaIntercalibration_Stat62: 1.867265489291761e-05 - syst_JES_EtaIntercalibration_Stat63: 2.319143262068991e-08 - syst_JES_EtaIntercalibration_Stat64: 9.788406816229084e-12 + syst_JES_EtaIntercalibration_Stat60: 9.11691366e-14 + syst_JES_EtaIntercalibration_Stat61: 4.47423455e-09 + syst_JES_EtaIntercalibration_Stat62: 1.86726549e-05 + syst_JES_EtaIntercalibration_Stat63: 2.31914326e-08 + syst_JES_EtaIntercalibration_Stat64: 9.78840682e-12 syst_JES_EtaIntercalibration_Stat65: 0.0 - syst_JES_EtaIntercalibration_Stat66: 1.5094822787962766e-12 - syst_JES_EtaIntercalibration_Stat67: 1.3251935735959481e-08 - syst_JES_EtaIntercalibration_Stat68: 1.4616449071765004e-05 - syst_JES_EtaIntercalibration_Stat69: 1.4420934886476674e-05 + syst_JES_EtaIntercalibration_Stat66: 1.50948228e-12 + syst_JES_EtaIntercalibration_Stat67: 1.32519357e-08 + syst_JES_EtaIntercalibration_Stat68: 1.46164491e-05 + syst_JES_EtaIntercalibration_Stat69: 1.44209349e-05 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 7.07392699336797e-06 - syst_JES_EtaIntercalibration_Stat71: 3.225874767698678e-11 + syst_JES_EtaIntercalibration_Stat70: 7.07392699e-06 + syst_JES_EtaIntercalibration_Stat71: 3.22587477e-11 syst_JES_EtaIntercalibration_Stat72: 0.0 syst_JES_EtaIntercalibration_Stat73: 0.0 syst_JES_EtaIntercalibration_Stat74: 0.0 @@ -58380,19 +58380,19 @@ bins: syst_JES_EtaIntercalibration_Stat79: 0.0 syst_JES_EtaIntercalibration_Stat8: 0.0 syst_JES_EtaIntercalibration_Stat80: 0.0 - syst_JES_EtaIntercalibration_Stat81: 1.5510514981779295e-14 - syst_JES_EtaIntercalibration_Stat82: 2.5399816928474113e-12 - syst_JES_EtaIntercalibration_Stat83: 4.9848892665735316e-08 - syst_JES_EtaIntercalibration_Stat84: 1.685449781957327e-05 - syst_JES_EtaIntercalibration_Stat85: 1.686294185484846e-05 - syst_JES_EtaIntercalibration_Stat86: 1.3068954510594946e-09 + syst_JES_EtaIntercalibration_Stat81: 1.55105150e-14 + syst_JES_EtaIntercalibration_Stat82: 2.53998169e-12 + syst_JES_EtaIntercalibration_Stat83: 4.98488927e-08 + syst_JES_EtaIntercalibration_Stat84: 1.68544978e-05 + syst_JES_EtaIntercalibration_Stat85: 1.68629419e-05 + syst_JES_EtaIntercalibration_Stat86: 1.30689545e-09 syst_JES_EtaIntercalibration_Stat87: 0.0 - syst_JES_EtaIntercalibration_Stat88: 3.314464662656701e-08 - syst_JES_EtaIntercalibration_Stat89: 1.497952999095766e-05 + syst_JES_EtaIntercalibration_Stat88: 3.31446466e-08 + syst_JES_EtaIntercalibration_Stat89: 1.49795300e-05 syst_JES_EtaIntercalibration_Stat9: 0.0 - syst_JES_EtaIntercalibration_Stat90: 1.6707132689588e-05 - syst_JES_EtaIntercalibration_Stat91: 7.1719172799189465e-06 - syst_JES_EtaIntercalibration_Stat92: 3.681774039943244e-11 + syst_JES_EtaIntercalibration_Stat90: 1.67071327e-05 + syst_JES_EtaIntercalibration_Stat91: 7.17191728e-06 + syst_JES_EtaIntercalibration_Stat92: 3.68177404e-11 syst_JES_EtaIntercalibration_Stat93: 0.0 syst_JES_EtaIntercalibration_Stat94: 0.0 syst_JES_EtaIntercalibration_Stat95: 0.0 @@ -58400,159 +58400,159 @@ bins: syst_JES_EtaIntercalibration_Stat97: 0.0 syst_JES_EtaIntercalibration_Stat98: 0.0 syst_JES_EtaIntercalibration_Stat99: 0.0 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.006166905382766951 - syst_JES_Flavour_Comp: 0.020817134769223165 - syst_JES_Gjet_Generator: 0.05201893789765417 - syst_JES_Gjet_OOC: 0.03911387605441322 - syst_JES_Gjet_Purity: 0.01298576277120447 - syst_JES_Gjet_Stat1: 0.0001138737690383523 - syst_JES_Gjet_Stat10: 0.0017999018723252665 - syst_JES_Gjet_Stat11: 0.0029845280564940245 - syst_JES_Gjet_Stat12: 0.007074129769802078 - syst_JES_Gjet_Stat13: 0.006191244301430852 - syst_JES_Gjet_Stat14: 0.000987113958720066 - syst_JES_Gjet_Stat15: 9.881146534183166e-05 - syst_JES_Gjet_Stat2: 7.241433076401382e-05 - syst_JES_Gjet_Stat3: 9.247789087127798e-05 - syst_JES_Gjet_Stat4: 0.00010872790476689964 - syst_JES_Gjet_Stat5: 0.000106480661624541 - syst_JES_Gjet_Stat6: 7.398016000928899e-05 - syst_JES_Gjet_Stat7: 0.00014946845921464503 - syst_JES_Gjet_Stat8: 0.0002657286335846214 - syst_JES_Gjet_Stat9: 0.000934778037825023 - syst_JES_Gjet_Veto: 0.023014049513286443 - syst_JES_Gjet_dPhi: 0.0029610062478826345 - syst_JES_LArESZee: 0.07349888706640394 - syst_JES_LArEsmear: 0.0056874903955962865 - syst_JES_LAr_JVT: 0.007277178076012707 - syst_JES_MJB_Alpha: 0.0004455987615557296 - syst_JES_MJB_Asym: 0.002321100385593006 - syst_JES_MJB_Beta: 0.00011553941794902724 - syst_JES_MJB_Stat1: 0.00037309332277595105 - syst_JES_MJB_Stat10: 2.6598347260998664e-06 - syst_JES_MJB_Stat11: 3.087380564491524e-07 - syst_JES_MJB_Stat12: 8.311245800119257e-08 - syst_JES_MJB_Stat13: 5.5988542354663963e-08 + syst_JES_EtaIntercalibration_TotalStat_MJB: 6.16690538e-03 + syst_JES_Flavour_Comp: 2.08171348e-02 + syst_JES_Gjet_Generator: 5.20189379e-02 + syst_JES_Gjet_OOC: 3.91138761e-02 + syst_JES_Gjet_Purity: 1.29857628e-02 + syst_JES_Gjet_Stat1: 1.13873769e-04 + syst_JES_Gjet_Stat10: 1.79990187e-03 + syst_JES_Gjet_Stat11: 2.98452806e-03 + syst_JES_Gjet_Stat12: 7.07412977e-03 + syst_JES_Gjet_Stat13: 6.19124430e-03 + syst_JES_Gjet_Stat14: 9.87113959e-04 + syst_JES_Gjet_Stat15: 9.88114653e-05 + syst_JES_Gjet_Stat2: 7.24143308e-05 + syst_JES_Gjet_Stat3: 9.24778909e-05 + syst_JES_Gjet_Stat4: 1.08727905e-04 + syst_JES_Gjet_Stat5: 1.06480662e-04 + syst_JES_Gjet_Stat6: 7.39801600e-05 + syst_JES_Gjet_Stat7: 1.49468459e-04 + syst_JES_Gjet_Stat8: 2.65728634e-04 + syst_JES_Gjet_Stat9: 9.34778038e-04 + syst_JES_Gjet_Veto: 2.30140495e-02 + syst_JES_Gjet_dPhi: 2.96100625e-03 + syst_JES_LArESZee: 7.34988871e-02 + syst_JES_LArEsmear: 5.68749040e-03 + syst_JES_LAr_JVT: 7.27717808e-03 + syst_JES_MJB_Alpha: 4.45598762e-04 + syst_JES_MJB_Asym: 2.32110039e-03 + syst_JES_MJB_Beta: 1.15539418e-04 + syst_JES_MJB_Stat1: 3.73093323e-04 + syst_JES_MJB_Stat10: 2.65983473e-06 + syst_JES_MJB_Stat11: 3.08738056e-07 + syst_JES_MJB_Stat12: 8.31124580e-08 + syst_JES_MJB_Stat13: 5.59885424e-08 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 0.0006248773699695005 - syst_JES_MJB_Stat3: 0.0006012981020259418 - syst_JES_MJB_Stat4: 0.00023207501603360927 - syst_JES_MJB_Stat5: 5.471760959691131e-05 - syst_JES_MJB_Stat6: 4.303318835503593e-05 - syst_JES_MJB_Stat7: 1.1845011386655567e-06 - syst_JES_MJB_Stat8: 2.729982629737184e-06 - syst_JES_MJB_Stat9: 2.7291166061872016e-06 - syst_JES_MJB_Threshold: 0.0028102341539451834 - syst_JES_Pileup_MuOffset: 0.005258170023877129 - syst_JES_Pileup_NPVOffset: 0.006629962801554772 - syst_JES_Pileup_Pt_term: 0.023301748324964806 - syst_JES_PunchThrough_MC15: 0.000680883519774124 + syst_JES_MJB_Stat2: 6.24877370e-04 + syst_JES_MJB_Stat3: 6.01298102e-04 + syst_JES_MJB_Stat4: 2.32075016e-04 + syst_JES_MJB_Stat5: 5.47176096e-05 + syst_JES_MJB_Stat6: 4.30331884e-05 + syst_JES_MJB_Stat7: 1.18450114e-06 + syst_JES_MJB_Stat8: 2.72998263e-06 + syst_JES_MJB_Stat9: 2.72911661e-06 + syst_JES_MJB_Threshold: 2.81023415e-03 + syst_JES_Pileup_MuOffset: 5.25817002e-03 + syst_JES_Pileup_NPVOffset: 6.62996280e-03 + syst_JES_Pileup_Pt_term: 2.33017483e-02 + syst_JES_PunchThrough_MC15: 6.80883520e-04 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.04369192831633778 - syst_JES_Zjet_MuScale: 0.0025266347183556235 - syst_JES_Zjet_MuSmearID: 0.0003974098477327908 - syst_JES_Zjet_MuSmearMS: 0.009706829142413088 - syst_JES_Zjet_OOC: 0.01683382606539583 - syst_JES_Zjet_Stat1: 0.0004295055616636413 - syst_JES_Zjet_Stat10: 0.0014555941329917484 - syst_JES_Zjet_Stat11: 0.0015338359454322359 - syst_JES_Zjet_Stat12: 0.012849493248762769 - syst_JES_Zjet_Stat13: 0.00840438544749109 - syst_JES_Zjet_Stat2: 3.814167585135714e-05 - syst_JES_Zjet_Stat3: 8.279180031863058e-05 - syst_JES_Zjet_Stat4: 8.30179305933363e-05 - syst_JES_Zjet_Stat5: 0.0001953654336749467 - syst_JES_Zjet_Stat6: 0.00021353346341967104 - syst_JES_Zjet_Stat7: 0.00015129894480795297 - syst_JES_Zjet_Stat8: 0.00023175429834201567 - syst_JES_Zjet_Stat9: 0.0005429542038699027 - syst_JES_Zjet_Veto: 0.0033324926106444706 - syst_JES_Zjet_dPhi: 0.0026790992422827493 + syst_JES_Zjet_MC: 4.36919283e-02 + syst_JES_Zjet_MuScale: 2.52663472e-03 + syst_JES_Zjet_MuSmearID: 3.97409848e-04 + syst_JES_Zjet_MuSmearMS: 9.70682914e-03 + syst_JES_Zjet_OOC: 1.68338261e-02 + syst_JES_Zjet_Stat1: 4.29505562e-04 + syst_JES_Zjet_Stat10: 1.45559413e-03 + syst_JES_Zjet_Stat11: 1.53383595e-03 + syst_JES_Zjet_Stat12: 1.28494932e-02 + syst_JES_Zjet_Stat13: 8.40438545e-03 + syst_JES_Zjet_Stat2: 3.81416759e-05 + syst_JES_Zjet_Stat3: 8.27918003e-05 + syst_JES_Zjet_Stat4: 8.30179306e-05 + syst_JES_Zjet_Stat5: 1.95365434e-04 + syst_JES_Zjet_Stat6: 2.13533463e-04 + syst_JES_Zjet_Stat7: 1.51298945e-04 + syst_JES_Zjet_Stat8: 2.31754298e-04 + syst_JES_Zjet_Stat9: 5.42954204e-04 + syst_JES_Zjet_Veto: 3.33249261e-03 + syst_JES_Zjet_dPhi: 2.67909924e-03 syst_PRW: 0.0 syst_Unfolding_bias: 0.005464 - syst_cleaning: 0.009369528843543843 + syst_cleaning: 9.36952884e-03 syst_lumi: 0.03556 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 0.01848884528573918 - syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.005557380228129078 - syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.010648097142212782 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 0.008059556873674878 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.004133269014956563 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.01123838603848435 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 1.84888453e-02 + syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 5.55738023e-03 + syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.06480971e-02 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 8.05955687e-03 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 4.13326901e-03 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.12383860e-02 - stat: 0.018785 - syst_JER_CROSS_CALIB_FORWARD: 2.646e-05 + syst_JER_CROSS_CALIB_FORWARD: 2.64600000e-05 syst_JER_NOISE_FORWARD: 0.004574 - syst_JER_NP0: 0.004332024007320366 - syst_JER_NP1: 0.010142044764247495 - syst_JER_NP2: 0.0004647054551003248 - syst_JER_NP3: 0.002353522625767596 - syst_JER_NP4: 0.001945768935408313 - syst_JER_NP5: 0.00019765790523022347 - syst_JER_NP6: 0.0001446513999240934 - syst_JER_NP7: 2.334425473677159e-07 - syst_JER_NP8: 0.0016223002634145752 - syst_JES_EtaIntercalibration_Modelling: 0.048374254257817766 - syst_JES_EtaIntercalibration_NonClosure: 0.01068524866346123 + syst_JER_NP0: 4.33202401e-03 + syst_JER_NP1: 1.01420448e-02 + syst_JER_NP2: 4.64705455e-04 + syst_JER_NP3: 2.35352263e-03 + syst_JER_NP4: 1.94576894e-03 + syst_JER_NP5: 1.97657905e-04 + syst_JER_NP6: 1.44651400e-04 + syst_JER_NP7: 2.33442547e-07 + syst_JER_NP8: 1.62230026e-03 + syst_JES_EtaIntercalibration_Modelling: 4.83742543e-02 + syst_JES_EtaIntercalibration_NonClosure: 1.06852487e-02 syst_JES_EtaIntercalibration_Stat0: 0.0 - syst_JES_EtaIntercalibration_Stat1: 6.040527191396459e-14 + syst_JES_EtaIntercalibration_Stat1: 6.04052719e-14 syst_JES_EtaIntercalibration_Stat10: 0.0 syst_JES_EtaIntercalibration_Stat100: 0.0 syst_JES_EtaIntercalibration_Stat101: 0.0 syst_JES_EtaIntercalibration_Stat102: 0.0 - syst_JES_EtaIntercalibration_Stat103: 6.588758380757334e-13 - syst_JES_EtaIntercalibration_Stat104: 1.9819222837706705e-06 - syst_JES_EtaIntercalibration_Stat105: 3.889173571595899e-06 - syst_JES_EtaIntercalibration_Stat106: 7.828110755476062e-07 - syst_JES_EtaIntercalibration_Stat107: 1.8377509917015419e-10 - syst_JES_EtaIntercalibration_Stat108: 3.2536632646910466e-07 - syst_JES_EtaIntercalibration_Stat109: 1.8542928571291e-05 + syst_JES_EtaIntercalibration_Stat103: 6.58875838e-13 + syst_JES_EtaIntercalibration_Stat104: 1.98192228e-06 + syst_JES_EtaIntercalibration_Stat105: 3.88917357e-06 + syst_JES_EtaIntercalibration_Stat106: 7.82811076e-07 + syst_JES_EtaIntercalibration_Stat107: 1.83775099e-10 + syst_JES_EtaIntercalibration_Stat108: 3.25366326e-07 + syst_JES_EtaIntercalibration_Stat109: 1.85429286e-05 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 2.7479501232737104e-05 - syst_JES_EtaIntercalibration_Stat111: 7.130348715701077e-06 - syst_JES_EtaIntercalibration_Stat112: 1.91820378016802e-06 + syst_JES_EtaIntercalibration_Stat110: 2.74795012e-05 + syst_JES_EtaIntercalibration_Stat111: 7.13034872e-06 + syst_JES_EtaIntercalibration_Stat112: 1.91820378e-06 syst_JES_EtaIntercalibration_Stat113: 0.0 syst_JES_EtaIntercalibration_Stat114: 0.0 syst_JES_EtaIntercalibration_Stat115: 0.0 syst_JES_EtaIntercalibration_Stat116: 0.0 syst_JES_EtaIntercalibration_Stat117: 0.0 - syst_JES_EtaIntercalibration_Stat118: 4.5414372174455956e-13 - syst_JES_EtaIntercalibration_Stat119: 4.5414372174455956e-13 + syst_JES_EtaIntercalibration_Stat118: 4.54143722e-13 + syst_JES_EtaIntercalibration_Stat119: 4.54143722e-13 syst_JES_EtaIntercalibration_Stat12: 0.0 syst_JES_EtaIntercalibration_Stat120: 0.0 syst_JES_EtaIntercalibration_Stat121: 0.0 syst_JES_EtaIntercalibration_Stat122: 0.0 - syst_JES_EtaIntercalibration_Stat123: 3.8054117609005205e-09 - syst_JES_EtaIntercalibration_Stat124: 4.09199310941502e-05 - syst_JES_EtaIntercalibration_Stat125: 1.9187956919641028e-05 - syst_JES_EtaIntercalibration_Stat126: 2.396713188410328e-05 - syst_JES_EtaIntercalibration_Stat127: 6.414844717528243e-07 - syst_JES_EtaIntercalibration_Stat128: 0.00023639666384067266 - syst_JES_EtaIntercalibration_Stat129: 0.0004974248159269901 + syst_JES_EtaIntercalibration_Stat123: 3.80541176e-09 + syst_JES_EtaIntercalibration_Stat124: 4.09199311e-05 + syst_JES_EtaIntercalibration_Stat125: 1.91879569e-05 + syst_JES_EtaIntercalibration_Stat126: 2.39671319e-05 + syst_JES_EtaIntercalibration_Stat127: 6.41484472e-07 + syst_JES_EtaIntercalibration_Stat128: 2.36396664e-04 + syst_JES_EtaIntercalibration_Stat129: 4.97424816e-04 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 1.6965413898576126e-05 - syst_JES_EtaIntercalibration_Stat131: 1.4185512722756975e-06 + syst_JES_EtaIntercalibration_Stat130: 1.69654139e-05 + syst_JES_EtaIntercalibration_Stat131: 1.41855127e-06 syst_JES_EtaIntercalibration_Stat132: 0.0 syst_JES_EtaIntercalibration_Stat133: 0.0 syst_JES_EtaIntercalibration_Stat134: 0.0 syst_JES_EtaIntercalibration_Stat135: 0.0 syst_JES_EtaIntercalibration_Stat136: 0.0 - syst_JES_EtaIntercalibration_Stat137: 4.5414372174455956e-13 - syst_JES_EtaIntercalibration_Stat138: 4.5414372174455956e-13 - syst_JES_EtaIntercalibration_Stat139: 2.2152929828805938e-12 + syst_JES_EtaIntercalibration_Stat137: 4.54143722e-13 + syst_JES_EtaIntercalibration_Stat138: 4.54143722e-13 + syst_JES_EtaIntercalibration_Stat139: 2.21529298e-12 syst_JES_EtaIntercalibration_Stat14: 0.0 syst_JES_EtaIntercalibration_Stat140: 0.0 syst_JES_EtaIntercalibration_Stat141: 0.0 - syst_JES_EtaIntercalibration_Stat142: 2.0113192116883757e-06 - syst_JES_EtaIntercalibration_Stat143: 1.856240940718634e-05 - syst_JES_EtaIntercalibration_Stat144: 0.00035668007243887343 - syst_JES_EtaIntercalibration_Stat145: 0.00011077665642182924 - syst_JES_EtaIntercalibration_Stat146: 0.0006910459897864975 - syst_JES_EtaIntercalibration_Stat147: 0.0007909826357133259 - syst_JES_EtaIntercalibration_Stat148: 5.9908254548100456e-05 - syst_JES_EtaIntercalibration_Stat149: 1.8613169396961925e-06 + syst_JES_EtaIntercalibration_Stat142: 2.01131921e-06 + syst_JES_EtaIntercalibration_Stat143: 1.85624094e-05 + syst_JES_EtaIntercalibration_Stat144: 3.56680072e-04 + syst_JES_EtaIntercalibration_Stat145: 1.10776656e-04 + syst_JES_EtaIntercalibration_Stat146: 6.91045990e-04 + syst_JES_EtaIntercalibration_Stat147: 7.90982636e-04 + syst_JES_EtaIntercalibration_Stat148: 5.99082545e-05 + syst_JES_EtaIntercalibration_Stat149: 1.86131694e-06 syst_JES_EtaIntercalibration_Stat15: 0.0 syst_JES_EtaIntercalibration_Stat150: 0.0 syst_JES_EtaIntercalibration_Stat151: 0.0 @@ -58560,60 +58560,60 @@ bins: syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 4.5414372174455956e-13 - syst_JES_EtaIntercalibration_Stat157: 2.2152929828805938e-12 + syst_JES_EtaIntercalibration_Stat156: 4.54143722e-13 + syst_JES_EtaIntercalibration_Stat157: 2.21529298e-12 syst_JES_EtaIntercalibration_Stat158: 0.0 syst_JES_EtaIntercalibration_Stat159: 0.0 - syst_JES_EtaIntercalibration_Stat16: 1.6099412256352715e-15 - syst_JES_EtaIntercalibration_Stat160: 2.028624606451561e-06 - syst_JES_EtaIntercalibration_Stat161: 7.116427527207736e-05 - syst_JES_EtaIntercalibration_Stat162: 0.00034784583869869703 - syst_JES_EtaIntercalibration_Stat163: 0.00042850149357966073 - syst_JES_EtaIntercalibration_Stat164: 0.001815093487261744 - syst_JES_EtaIntercalibration_Stat165: 0.0011329030011435223 - syst_JES_EtaIntercalibration_Stat166: 0.00024493672433750617 - syst_JES_EtaIntercalibration_Stat167: 2.032896219756434e-06 + syst_JES_EtaIntercalibration_Stat16: 1.60994123e-15 + syst_JES_EtaIntercalibration_Stat160: 2.02862461e-06 + syst_JES_EtaIntercalibration_Stat161: 7.11642753e-05 + syst_JES_EtaIntercalibration_Stat162: 3.47845839e-04 + syst_JES_EtaIntercalibration_Stat163: 4.28501494e-04 + syst_JES_EtaIntercalibration_Stat164: 1.81509349e-03 + syst_JES_EtaIntercalibration_Stat165: 1.13290300e-03 + syst_JES_EtaIntercalibration_Stat166: 2.44936724e-04 + syst_JES_EtaIntercalibration_Stat167: 2.03289622e-06 syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 - syst_JES_EtaIntercalibration_Stat17: 1.0747403907455978e-14 + syst_JES_EtaIntercalibration_Stat17: 1.07474039e-14 syst_JES_EtaIntercalibration_Stat170: 0.0 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 - syst_JES_EtaIntercalibration_Stat174: 2.2152929828805938e-12 - syst_JES_EtaIntercalibration_Stat175: 2.2152929828805938e-12 + syst_JES_EtaIntercalibration_Stat174: 2.21529298e-12 + syst_JES_EtaIntercalibration_Stat175: 2.21529298e-12 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 - syst_JES_EtaIntercalibration_Stat178: 3.742998835532814e-05 - syst_JES_EtaIntercalibration_Stat179: 0.00016148286348712052 - syst_JES_EtaIntercalibration_Stat18: 8.071858196846621e-13 - syst_JES_EtaIntercalibration_Stat180: 0.0013804341056348904 - syst_JES_EtaIntercalibration_Stat181: 0.0018739842582049615 - syst_JES_EtaIntercalibration_Stat182: 0.007045978906440184 - syst_JES_EtaIntercalibration_Stat183: 0.001117683971433786 - syst_JES_EtaIntercalibration_Stat184: 8.31206195072408e-06 + syst_JES_EtaIntercalibration_Stat178: 3.74299884e-05 + syst_JES_EtaIntercalibration_Stat179: 1.61482863e-04 + syst_JES_EtaIntercalibration_Stat18: 8.07185820e-13 + syst_JES_EtaIntercalibration_Stat180: 1.38043411e-03 + syst_JES_EtaIntercalibration_Stat181: 1.87398426e-03 + syst_JES_EtaIntercalibration_Stat182: 7.04597891e-03 + syst_JES_EtaIntercalibration_Stat183: 1.11768397e-03 + syst_JES_EtaIntercalibration_Stat184: 8.31206195e-06 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 syst_JES_EtaIntercalibration_Stat187: 0.0 - syst_JES_EtaIntercalibration_Stat188: 7.697233788836091e-10 + syst_JES_EtaIntercalibration_Stat188: 7.69723379e-10 syst_JES_EtaIntercalibration_Stat189: 0.0 - syst_JES_EtaIntercalibration_Stat19: 5.627555569472415e-13 + syst_JES_EtaIntercalibration_Stat19: 5.62755557e-13 syst_JES_EtaIntercalibration_Stat190: 0.0 - syst_JES_EtaIntercalibration_Stat191: 2.2152929828805938e-12 - syst_JES_EtaIntercalibration_Stat192: 2.2152929828805938e-12 + syst_JES_EtaIntercalibration_Stat191: 2.21529298e-12 + syst_JES_EtaIntercalibration_Stat192: 2.21529298e-12 syst_JES_EtaIntercalibration_Stat193: 0.0 syst_JES_EtaIntercalibration_Stat194: 0.0 - syst_JES_EtaIntercalibration_Stat195: 7.4049946905787855e-06 - syst_JES_EtaIntercalibration_Stat196: 0.0005313071686886975 - syst_JES_EtaIntercalibration_Stat197: 0.00620251164851788 - syst_JES_EtaIntercalibration_Stat198: 0.0009508626648996163 - syst_JES_EtaIntercalibration_Stat199: 1.1539717977822292e-05 - syst_JES_EtaIntercalibration_Stat2: 2.522671793396834e-12 + syst_JES_EtaIntercalibration_Stat195: 7.40499469e-06 + syst_JES_EtaIntercalibration_Stat196: 5.31307169e-04 + syst_JES_EtaIntercalibration_Stat197: 6.20251165e-03 + syst_JES_EtaIntercalibration_Stat198: 9.50862665e-04 + syst_JES_EtaIntercalibration_Stat199: 1.15397180e-05 + syst_JES_EtaIntercalibration_Stat2: 2.52267179e-12 syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 syst_JES_EtaIntercalibration_Stat201: 0.0 syst_JES_EtaIntercalibration_Stat202: 0.0 - syst_JES_EtaIntercalibration_Stat203: 7.697233788836091e-10 + syst_JES_EtaIntercalibration_Stat203: 7.69723379e-10 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 @@ -58621,9 +58621,9 @@ bins: syst_JES_EtaIntercalibration_Stat208: 0.0 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 7.509942282068484e-06 - syst_JES_EtaIntercalibration_Stat211: 0.0005620724034099165 - syst_JES_EtaIntercalibration_Stat212: 5.781585595664912e-07 + syst_JES_EtaIntercalibration_Stat210: 7.50994228e-06 + syst_JES_EtaIntercalibration_Stat211: 5.62072403e-04 + syst_JES_EtaIntercalibration_Stat212: 5.78158560e-07 syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 syst_JES_EtaIntercalibration_Stat215: 0.0 @@ -58635,37 +58635,37 @@ bins: syst_JES_EtaIntercalibration_Stat220: 0.0 syst_JES_EtaIntercalibration_Stat221: 0.0 syst_JES_EtaIntercalibration_Stat222: 0.0 - syst_JES_EtaIntercalibration_Stat223: 1.4705111356259768e-06 - syst_JES_EtaIntercalibration_Stat224: 5.778121494049775e-07 + syst_JES_EtaIntercalibration_Stat223: 1.47051114e-06 + syst_JES_EtaIntercalibration_Stat224: 5.77812149e-07 syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 syst_JES_EtaIntercalibration_Stat227: 0.0 syst_JES_EtaIntercalibration_Stat228: 0.0 syst_JES_EtaIntercalibration_Stat229: 0.0 - syst_JES_EtaIntercalibration_Stat23: 2.0016789827542276e-12 + syst_JES_EtaIntercalibration_Stat23: 2.00167898e-12 syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 syst_JES_EtaIntercalibration_Stat232: 0.0 syst_JES_EtaIntercalibration_Stat233: 0.0 syst_JES_EtaIntercalibration_Stat234: 0.0 - syst_JES_EtaIntercalibration_Stat235: 1.0787212429538968e-05 + syst_JES_EtaIntercalibration_Stat235: 1.07872124e-05 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 syst_JES_EtaIntercalibration_Stat239: 0.0 - syst_JES_EtaIntercalibration_Stat24: 1.042298511703821e-09 + syst_JES_EtaIntercalibration_Stat24: 1.04229851e-09 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 syst_JES_EtaIntercalibration_Stat243: 0.0 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 - syst_JES_EtaIntercalibration_Stat25: 2.022809007855789e-06 - syst_JES_EtaIntercalibration_Stat26: 3.5507479493762998e-12 + syst_JES_EtaIntercalibration_Stat25: 2.02280901e-06 + syst_JES_EtaIntercalibration_Stat26: 3.55074795e-12 syst_JES_EtaIntercalibration_Stat27: 0.0 syst_JES_EtaIntercalibration_Stat28: 0.0 syst_JES_EtaIntercalibration_Stat29: 0.0 - syst_JES_EtaIntercalibration_Stat3: 3.147679695823576e-12 + syst_JES_EtaIntercalibration_Stat3: 3.14767970e-12 syst_JES_EtaIntercalibration_Stat30: 0.0 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 @@ -58674,19 +58674,19 @@ bins: syst_JES_EtaIntercalibration_Stat35: 0.0 syst_JES_EtaIntercalibration_Stat36: 0.0 syst_JES_EtaIntercalibration_Stat37: 0.0 - syst_JES_EtaIntercalibration_Stat38: 1.6099412256352715e-15 - syst_JES_EtaIntercalibration_Stat39: 1.32045539871667e-12 + syst_JES_EtaIntercalibration_Stat38: 1.60994123e-15 + syst_JES_EtaIntercalibration_Stat39: 1.32045540e-12 syst_JES_EtaIntercalibration_Stat4: 0.0 - syst_JES_EtaIntercalibration_Stat40: 7.540506216428708e-10 - syst_JES_EtaIntercalibration_Stat41: 1.2649706478808114e-10 - syst_JES_EtaIntercalibration_Stat42: 6.645878948641782e-14 + syst_JES_EtaIntercalibration_Stat40: 7.54050622e-10 + syst_JES_EtaIntercalibration_Stat41: 1.26497065e-10 + syst_JES_EtaIntercalibration_Stat42: 6.64587895e-14 syst_JES_EtaIntercalibration_Stat43: 0.0 - syst_JES_EtaIntercalibration_Stat44: 1.4679130594146236e-13 - syst_JES_EtaIntercalibration_Stat45: 1.1541311927159754e-11 - syst_JES_EtaIntercalibration_Stat46: 2.8622106417374316e-07 - syst_JES_EtaIntercalibration_Stat47: 2.004352426795248e-06 - syst_JES_EtaIntercalibration_Stat48: 5.116154247088335e-10 - syst_JES_EtaIntercalibration_Stat49: 1.1136220667264097e-13 + syst_JES_EtaIntercalibration_Stat44: 1.46791306e-13 + syst_JES_EtaIntercalibration_Stat45: 1.15413119e-11 + syst_JES_EtaIntercalibration_Stat46: 2.86221064e-07 + syst_JES_EtaIntercalibration_Stat47: 2.00435243e-06 + syst_JES_EtaIntercalibration_Stat48: 5.11615425e-10 + syst_JES_EtaIntercalibration_Stat49: 1.11362207e-13 syst_JES_EtaIntercalibration_Stat5: 0.0 syst_JES_EtaIntercalibration_Stat50: 0.0 syst_JES_EtaIntercalibration_Stat51: 0.0 @@ -58697,21 +58697,21 @@ bins: syst_JES_EtaIntercalibration_Stat56: 0.0 syst_JES_EtaIntercalibration_Stat57: 0.0 syst_JES_EtaIntercalibration_Stat58: 0.0 - syst_JES_EtaIntercalibration_Stat59: 1.6099412256352715e-15 + syst_JES_EtaIntercalibration_Stat59: 1.60994123e-15 syst_JES_EtaIntercalibration_Stat6: 0.0 - syst_JES_EtaIntercalibration_Stat60: 8.821553420458327e-15 - syst_JES_EtaIntercalibration_Stat61: 4.3558537059341187e-10 - syst_JES_EtaIntercalibration_Stat62: 2.049685585644784e-06 - syst_JES_EtaIntercalibration_Stat63: 2.497784992248132e-09 - syst_JES_EtaIntercalibration_Stat64: 8.779713207161154e-13 + syst_JES_EtaIntercalibration_Stat60: 8.82155342e-15 + syst_JES_EtaIntercalibration_Stat61: 4.35585371e-10 + syst_JES_EtaIntercalibration_Stat62: 2.04968559e-06 + syst_JES_EtaIntercalibration_Stat63: 2.49778499e-09 + syst_JES_EtaIntercalibration_Stat64: 8.77971321e-13 syst_JES_EtaIntercalibration_Stat65: 0.0 - syst_JES_EtaIntercalibration_Stat66: 1.4679130594146236e-13 - syst_JES_EtaIntercalibration_Stat67: 1.2765719838692999e-09 - syst_JES_EtaIntercalibration_Stat68: 4.486712640675799e-06 - syst_JES_EtaIntercalibration_Stat69: 4.4862275363048635e-06 + syst_JES_EtaIntercalibration_Stat66: 1.46791306e-13 + syst_JES_EtaIntercalibration_Stat67: 1.27657198e-09 + syst_JES_EtaIntercalibration_Stat68: 4.48671264e-06 + syst_JES_EtaIntercalibration_Stat69: 4.48622754e-06 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 2.014285334181828e-06 - syst_JES_EtaIntercalibration_Stat71: 2.87282068183867e-12 + syst_JES_EtaIntercalibration_Stat70: 2.01428533e-06 + syst_JES_EtaIntercalibration_Stat71: 2.87282068e-12 syst_JES_EtaIntercalibration_Stat72: 0.0 syst_JES_EtaIntercalibration_Stat73: 0.0 syst_JES_EtaIntercalibration_Stat74: 0.0 @@ -58722,19 +58722,19 @@ bins: syst_JES_EtaIntercalibration_Stat79: 0.0 syst_JES_EtaIntercalibration_Stat8: 0.0 syst_JES_EtaIntercalibration_Stat80: 0.0 - syst_JES_EtaIntercalibration_Stat81: 1.6099412256352715e-15 - syst_JES_EtaIntercalibration_Stat82: 2.3003188365963534e-13 - syst_JES_EtaIntercalibration_Stat83: 5.3066100996775706e-09 - syst_JES_EtaIntercalibration_Stat84: 5.331436673167938e-06 - syst_JES_EtaIntercalibration_Stat85: 5.104485086666431e-07 - syst_JES_EtaIntercalibration_Stat86: 1.1857727438257298e-10 + syst_JES_EtaIntercalibration_Stat81: 1.60994123e-15 + syst_JES_EtaIntercalibration_Stat82: 2.30031884e-13 + syst_JES_EtaIntercalibration_Stat83: 5.30661010e-09 + syst_JES_EtaIntercalibration_Stat84: 5.33143667e-06 + syst_JES_EtaIntercalibration_Stat85: 5.10448509e-07 + syst_JES_EtaIntercalibration_Stat86: 1.18577274e-10 syst_JES_EtaIntercalibration_Stat87: 0.0 - syst_JES_EtaIntercalibration_Stat88: 3.6367858061755573e-09 - syst_JES_EtaIntercalibration_Stat89: 3.5594416988482895e-06 + syst_JES_EtaIntercalibration_Stat88: 3.63678581e-09 + syst_JES_EtaIntercalibration_Stat89: 3.55944170e-06 syst_JES_EtaIntercalibration_Stat9: 0.0 - syst_JES_EtaIntercalibration_Stat90: 5.110992858535414e-07 - syst_JES_EtaIntercalibration_Stat91: 2.040256477425081e-06 - syst_JES_EtaIntercalibration_Stat92: 3.277548966453438e-12 + syst_JES_EtaIntercalibration_Stat90: 5.11099286e-07 + syst_JES_EtaIntercalibration_Stat91: 2.04025648e-06 + syst_JES_EtaIntercalibration_Stat92: 3.27754897e-12 syst_JES_EtaIntercalibration_Stat93: 0.0 syst_JES_EtaIntercalibration_Stat94: 0.0 syst_JES_EtaIntercalibration_Stat95: 0.0 @@ -58742,159 +58742,159 @@ bins: syst_JES_EtaIntercalibration_Stat97: 0.0 syst_JES_EtaIntercalibration_Stat98: 0.0 syst_JES_EtaIntercalibration_Stat99: 0.0 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0036385940622718554 - syst_JES_Flavour_Comp: 0.013862411794128754 - syst_JES_Gjet_Generator: 0.027410131338612736 - syst_JES_Gjet_OOC: 0.021202282895952503 - syst_JES_Gjet_Purity: 0.006523804009165204 - syst_JES_Gjet_Stat1: 6.086034909528534e-05 - syst_JES_Gjet_Stat10: 0.0005773220245235756 - syst_JES_Gjet_Stat11: 0.0010567035854486346 - syst_JES_Gjet_Stat12: 0.0032769346575725307 - syst_JES_Gjet_Stat13: 0.004135328012080782 - syst_JES_Gjet_Stat14: 0.0008208322380821796 - syst_JES_Gjet_Stat15: 5.98904062162714e-05 - syst_JES_Gjet_Stat2: 1.9484057380330205e-05 - syst_JES_Gjet_Stat3: 3.443422914412343e-05 - syst_JES_Gjet_Stat4: 3.709260404716822e-05 - syst_JES_Gjet_Stat5: 3.608867135265581e-05 - syst_JES_Gjet_Stat6: 3.778786401412496e-05 - syst_JES_Gjet_Stat7: 8.410217402065181e-05 - syst_JES_Gjet_Stat8: 5.518930421739343e-05 - syst_JES_Gjet_Stat9: 0.0003509578807706133 - syst_JES_Gjet_Veto: 0.013950682304102551 - syst_JES_Gjet_dPhi: 0.0014666897038910448 - syst_JES_LArESZee: 0.03892746616465037 - syst_JES_LArEsmear: 0.0027831868424523713 - syst_JES_LAr_JVT: 0.003378658720557612 - syst_JES_MJB_Alpha: 0.0001191516999459093 - syst_JES_MJB_Asym: 0.0013563515796061138 - syst_JES_MJB_Beta: 2.53616265251265e-05 - syst_JES_MJB_Stat1: 0.00011085210992579256 - syst_JES_MJB_Stat10: 3.098265321885781e-06 - syst_JES_MJB_Stat11: 2.9739312365957624e-07 - syst_JES_MJB_Stat12: 1.454922678357857e-07 - syst_JES_MJB_Stat13: 1.2427464544306695e-07 + syst_JES_EtaIntercalibration_TotalStat_MJB: 3.63859406e-03 + syst_JES_Flavour_Comp: 1.38624118e-02 + syst_JES_Gjet_Generator: 2.74101313e-02 + syst_JES_Gjet_OOC: 2.12022829e-02 + syst_JES_Gjet_Purity: 6.52380401e-03 + syst_JES_Gjet_Stat1: 6.08603491e-05 + syst_JES_Gjet_Stat10: 5.77322025e-04 + syst_JES_Gjet_Stat11: 1.05670359e-03 + syst_JES_Gjet_Stat12: 3.27693466e-03 + syst_JES_Gjet_Stat13: 4.13532801e-03 + syst_JES_Gjet_Stat14: 8.20832238e-04 + syst_JES_Gjet_Stat15: 5.98904062e-05 + syst_JES_Gjet_Stat2: 1.94840574e-05 + syst_JES_Gjet_Stat3: 3.44342291e-05 + syst_JES_Gjet_Stat4: 3.70926040e-05 + syst_JES_Gjet_Stat5: 3.60886714e-05 + syst_JES_Gjet_Stat6: 3.77878640e-05 + syst_JES_Gjet_Stat7: 8.41021740e-05 + syst_JES_Gjet_Stat8: 5.51893042e-05 + syst_JES_Gjet_Stat9: 3.50957881e-04 + syst_JES_Gjet_Veto: 1.39506823e-02 + syst_JES_Gjet_dPhi: 1.46668970e-03 + syst_JES_LArESZee: 3.89274662e-02 + syst_JES_LArEsmear: 2.78318684e-03 + syst_JES_LAr_JVT: 3.37865872e-03 + syst_JES_MJB_Alpha: 1.19151700e-04 + syst_JES_MJB_Asym: 1.35635158e-03 + syst_JES_MJB_Beta: 2.53616265e-05 + syst_JES_MJB_Stat1: 1.10852110e-04 + syst_JES_MJB_Stat10: 3.09826532e-06 + syst_JES_MJB_Stat11: 2.97393124e-07 + syst_JES_MJB_Stat12: 1.45492268e-07 + syst_JES_MJB_Stat13: 1.24274645e-07 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 0.0002715184339966625 - syst_JES_MJB_Stat3: 0.0003102814327348641 - syst_JES_MJB_Stat4: 0.00015446801293067118 - syst_JES_MJB_Stat5: 2.0714968573473628e-05 - syst_JES_MJB_Stat6: 1.8361225449299402e-05 - syst_JES_MJB_Stat7: 1.518726216274678e-06 - syst_JES_MJB_Stat8: 3.1952532802267804e-06 - syst_JES_MJB_Stat9: 3.1952532802267804e-06 - syst_JES_MJB_Threshold: 0.0015014616212211355 - syst_JES_Pileup_MuOffset: 0.00343133221212986 - syst_JES_Pileup_NPVOffset: 0.003936221887800534 - syst_JES_Pileup_Pt_term: 0.012192717006475626 - syst_JES_PunchThrough_MC15: 0.0003580718782591004 + syst_JES_MJB_Stat2: 2.71518434e-04 + syst_JES_MJB_Stat3: 3.10281433e-04 + syst_JES_MJB_Stat4: 1.54468013e-04 + syst_JES_MJB_Stat5: 2.07149686e-05 + syst_JES_MJB_Stat6: 1.83612254e-05 + syst_JES_MJB_Stat7: 1.51872622e-06 + syst_JES_MJB_Stat8: 3.19525328e-06 + syst_JES_MJB_Stat9: 3.19525328e-06 + syst_JES_MJB_Threshold: 1.50146162e-03 + syst_JES_Pileup_MuOffset: 3.43133221e-03 + syst_JES_Pileup_NPVOffset: 3.93622189e-03 + syst_JES_Pileup_Pt_term: 1.21927170e-02 + syst_JES_PunchThrough_MC15: 3.58071878e-04 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.02150011627875533 - syst_JES_Zjet_MuScale: 0.0010345585387014115 - syst_JES_Zjet_MuSmearID: 0.00020873664765680227 - syst_JES_Zjet_MuSmearMS: 0.005136023559135998 - syst_JES_Zjet_OOC: 0.008179042181086978 - syst_JES_Zjet_Stat1: 0.00013455988406653745 - syst_JES_Zjet_Stat10: 0.00047373090462835547 - syst_JES_Zjet_Stat11: 0.0004843277067234539 - syst_JES_Zjet_Stat12: 0.0051157468662943045 - syst_JES_Zjet_Stat13: 0.004716448982020265 - syst_JES_Zjet_Stat2: 3.7290965393778693e-06 - syst_JES_Zjet_Stat3: 2.501025517022967e-05 - syst_JES_Zjet_Stat4: 2.5098507961779324e-05 - syst_JES_Zjet_Stat5: 4.1616333331998386e-05 - syst_JES_Zjet_Stat6: 3.0099200986072706e-05 - syst_JES_Zjet_Stat7: 2.0005386517323277e-05 - syst_JES_Zjet_Stat8: 5.064300346543439e-05 - syst_JES_Zjet_Stat9: 0.00025903680723016946 - syst_JES_Zjet_Veto: 0.0015356652849823754 - syst_JES_Zjet_dPhi: 0.0011019177408046392 + syst_JES_Zjet_MC: 2.15001163e-02 + syst_JES_Zjet_MuScale: 1.03455854e-03 + syst_JES_Zjet_MuSmearID: 2.08736648e-04 + syst_JES_Zjet_MuSmearMS: 5.13602356e-03 + syst_JES_Zjet_OOC: 8.17904218e-03 + syst_JES_Zjet_Stat1: 1.34559884e-04 + syst_JES_Zjet_Stat10: 4.73730905e-04 + syst_JES_Zjet_Stat11: 4.84327707e-04 + syst_JES_Zjet_Stat12: 5.11574687e-03 + syst_JES_Zjet_Stat13: 4.71644898e-03 + syst_JES_Zjet_Stat2: 3.72909654e-06 + syst_JES_Zjet_Stat3: 2.50102552e-05 + syst_JES_Zjet_Stat4: 2.50985080e-05 + syst_JES_Zjet_Stat5: 4.16163333e-05 + syst_JES_Zjet_Stat6: 3.00992010e-05 + syst_JES_Zjet_Stat7: 2.00053865e-05 + syst_JES_Zjet_Stat8: 5.06430035e-05 + syst_JES_Zjet_Stat9: 2.59036807e-04 + syst_JES_Zjet_Veto: 1.53566528e-03 + syst_JES_Zjet_dPhi: 1.10191774e-03 syst_PRW: 0.0 syst_Unfolding_bias: 0.003104 - syst_cleaning: 0.004589934640057525 + syst_cleaning: 4.58993464e-03 syst_lumi: 0.01721 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 0.006171063279532953 - syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.002953697809526222 - syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.005300324612700622 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 0.002690455351794562 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0022747863086452756 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.005728775850912654 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 6.17106328e-03 + syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 2.95369781e-03 + syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 5.30032461e-03 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 2.69045535e-03 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 2.27478631e-03 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 5.72877585e-03 - stat: 0.011235 - syst_JER_CROSS_CALIB_FORWARD: 5.303e-06 + syst_JER_CROSS_CALIB_FORWARD: 5.30300000e-06 syst_JER_NOISE_FORWARD: 0.00157 - syst_JER_NP0: 0.0017309693093755301 - syst_JER_NP1: 0.005867237169230506 - syst_JER_NP2: 0.0004195655642447316 - syst_JER_NP3: 0.0007552624229365579 - syst_JER_NP4: 0.0006829571216408831 - syst_JER_NP5: 2.6030003841720805e-05 - syst_JER_NP6: 1.906510621528241e-05 - syst_JER_NP7: 2.1014909866877107e-08 - syst_JER_NP8: 0.0006159432831641239 - syst_JES_EtaIntercalibration_Modelling: 0.022505889784676367 - syst_JES_EtaIntercalibration_NonClosure: 0.0036178740649724112 + syst_JER_NP0: 1.73096931e-03 + syst_JER_NP1: 5.86723717e-03 + syst_JER_NP2: 4.19565564e-04 + syst_JER_NP3: 7.55262423e-04 + syst_JER_NP4: 6.82957122e-04 + syst_JER_NP5: 2.60300038e-05 + syst_JER_NP6: 1.90651062e-05 + syst_JER_NP7: 2.10149099e-08 + syst_JER_NP8: 6.15943283e-04 + syst_JES_EtaIntercalibration_Modelling: 2.25058898e-02 + syst_JES_EtaIntercalibration_NonClosure: 3.61787406e-03 syst_JES_EtaIntercalibration_Stat0: 0.0 - syst_JES_EtaIntercalibration_Stat1: 5.4680843994949455e-15 + syst_JES_EtaIntercalibration_Stat1: 5.46808440e-15 syst_JES_EtaIntercalibration_Stat10: 0.0 syst_JES_EtaIntercalibration_Stat100: 0.0 syst_JES_EtaIntercalibration_Stat101: 0.0 syst_JES_EtaIntercalibration_Stat102: 0.0 - syst_JES_EtaIntercalibration_Stat103: 5.730173034036581e-14 - syst_JES_EtaIntercalibration_Stat104: 2.342924885323631e-07 - syst_JES_EtaIntercalibration_Stat105: 1.0706708270985998e-06 - syst_JES_EtaIntercalibration_Stat106: 6.847515292973066e-07 - syst_JES_EtaIntercalibration_Stat107: 1.5803421243515594e-11 - syst_JES_EtaIntercalibration_Stat108: 1.0709724831549129e-07 - syst_JES_EtaIntercalibration_Stat109: 7.842457953346005e-06 + syst_JES_EtaIntercalibration_Stat103: 5.73017303e-14 + syst_JES_EtaIntercalibration_Stat104: 2.34292489e-07 + syst_JES_EtaIntercalibration_Stat105: 1.07067083e-06 + syst_JES_EtaIntercalibration_Stat106: 6.84751529e-07 + syst_JES_EtaIntercalibration_Stat107: 1.58034212e-11 + syst_JES_EtaIntercalibration_Stat108: 1.07097248e-07 + syst_JES_EtaIntercalibration_Stat109: 7.84245795e-06 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 2.4857887520865485e-05 - syst_JES_EtaIntercalibration_Stat111: 1.5353274145927313e-06 - syst_JES_EtaIntercalibration_Stat112: 3.947307127182866e-07 + syst_JES_EtaIntercalibration_Stat110: 2.48578875e-05 + syst_JES_EtaIntercalibration_Stat111: 1.53532741e-06 + syst_JES_EtaIntercalibration_Stat112: 3.94730713e-07 syst_JES_EtaIntercalibration_Stat113: 0.0 syst_JES_EtaIntercalibration_Stat114: 0.0 syst_JES_EtaIntercalibration_Stat115: 0.0 syst_JES_EtaIntercalibration_Stat116: 0.0 syst_JES_EtaIntercalibration_Stat117: 0.0 - syst_JES_EtaIntercalibration_Stat118: 3.9300232823737824e-14 - syst_JES_EtaIntercalibration_Stat119: 3.9300232823737824e-14 + syst_JES_EtaIntercalibration_Stat118: 3.93002328e-14 + syst_JES_EtaIntercalibration_Stat119: 3.93002328e-14 syst_JES_EtaIntercalibration_Stat12: 0.0 syst_JES_EtaIntercalibration_Stat120: 0.0 syst_JES_EtaIntercalibration_Stat121: 0.0 syst_JES_EtaIntercalibration_Stat122: 0.0 - syst_JES_EtaIntercalibration_Stat123: 3.58026597197401e-10 - syst_JES_EtaIntercalibration_Stat124: 8.162485206724726e-06 - syst_JES_EtaIntercalibration_Stat125: 1.1811971924704188e-05 - syst_JES_EtaIntercalibration_Stat126: 1.1459540861221273e-05 - syst_JES_EtaIntercalibration_Stat127: 2.272731121360378e-07 - syst_JES_EtaIntercalibration_Stat128: 4.500621160462187e-05 - syst_JES_EtaIntercalibration_Stat129: 0.0001311128075361061 + syst_JES_EtaIntercalibration_Stat123: 3.58026597e-10 + syst_JES_EtaIntercalibration_Stat124: 8.16248521e-06 + syst_JES_EtaIntercalibration_Stat125: 1.18119719e-05 + syst_JES_EtaIntercalibration_Stat126: 1.14595409e-05 + syst_JES_EtaIntercalibration_Stat127: 2.27273112e-07 + syst_JES_EtaIntercalibration_Stat128: 4.50062116e-05 + syst_JES_EtaIntercalibration_Stat129: 1.31112808e-04 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 1.254598230510469e-05 - syst_JES_EtaIntercalibration_Stat131: 4.1016667572463757e-07 + syst_JES_EtaIntercalibration_Stat130: 1.25459823e-05 + syst_JES_EtaIntercalibration_Stat131: 4.10166676e-07 syst_JES_EtaIntercalibration_Stat132: 0.0 syst_JES_EtaIntercalibration_Stat133: 0.0 syst_JES_EtaIntercalibration_Stat134: 0.0 syst_JES_EtaIntercalibration_Stat135: 0.0 syst_JES_EtaIntercalibration_Stat136: 0.0 - syst_JES_EtaIntercalibration_Stat137: 3.9300232823737824e-14 - syst_JES_EtaIntercalibration_Stat138: 3.9300232823737824e-14 - syst_JES_EtaIntercalibration_Stat139: 1.932968701246867e-13 + syst_JES_EtaIntercalibration_Stat137: 3.93002328e-14 + syst_JES_EtaIntercalibration_Stat138: 3.93002328e-14 + syst_JES_EtaIntercalibration_Stat139: 1.93296870e-13 syst_JES_EtaIntercalibration_Stat14: 0.0 syst_JES_EtaIntercalibration_Stat140: 0.0 syst_JES_EtaIntercalibration_Stat141: 0.0 - syst_JES_EtaIntercalibration_Stat142: 2.3957586107195254e-07 - syst_JES_EtaIntercalibration_Stat143: 1.134657908798947e-05 - syst_JES_EtaIntercalibration_Stat144: 0.00010245404665019337 - syst_JES_EtaIntercalibration_Stat145: 6.197710121488419e-05 - syst_JES_EtaIntercalibration_Stat146: 0.0002454120361758975 - syst_JES_EtaIntercalibration_Stat147: 0.00026626228999803933 - syst_JES_EtaIntercalibration_Stat148: 1.4466053573798211e-05 - syst_JES_EtaIntercalibration_Stat149: 4.810143331284422e-07 + syst_JES_EtaIntercalibration_Stat142: 2.39575861e-07 + syst_JES_EtaIntercalibration_Stat143: 1.13465791e-05 + syst_JES_EtaIntercalibration_Stat144: 1.02454047e-04 + syst_JES_EtaIntercalibration_Stat145: 6.19771012e-05 + syst_JES_EtaIntercalibration_Stat146: 2.45412036e-04 + syst_JES_EtaIntercalibration_Stat147: 2.66262290e-04 + syst_JES_EtaIntercalibration_Stat148: 1.44660536e-05 + syst_JES_EtaIntercalibration_Stat149: 4.81014333e-07 syst_JES_EtaIntercalibration_Stat15: 0.0 syst_JES_EtaIntercalibration_Stat150: 0.0 syst_JES_EtaIntercalibration_Stat151: 0.0 @@ -58902,60 +58902,60 @@ bins: syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 3.9300232823737824e-14 - syst_JES_EtaIntercalibration_Stat157: 1.932968701246867e-13 + syst_JES_EtaIntercalibration_Stat156: 3.93002328e-14 + syst_JES_EtaIntercalibration_Stat157: 1.93296870e-13 syst_JES_EtaIntercalibration_Stat158: 0.0 syst_JES_EtaIntercalibration_Stat159: 0.0 - syst_JES_EtaIntercalibration_Stat16: 1.7069360708591284e-16 - syst_JES_EtaIntercalibration_Stat160: 2.4225914609708234e-07 - syst_JES_EtaIntercalibration_Stat161: 2.296022144383629e-05 - syst_JES_EtaIntercalibration_Stat162: 0.0001228713256826018 - syst_JES_EtaIntercalibration_Stat163: 0.00014013619045414357 - syst_JES_EtaIntercalibration_Stat164: 0.0008346432703107357 - syst_JES_EtaIntercalibration_Stat165: 0.000468638912170127 - syst_JES_EtaIntercalibration_Stat166: 3.521556732469321e-05 - syst_JES_EtaIntercalibration_Stat167: 5.094335213499401e-07 + syst_JES_EtaIntercalibration_Stat16: 1.70693607e-16 + syst_JES_EtaIntercalibration_Stat160: 2.42259146e-07 + syst_JES_EtaIntercalibration_Stat161: 2.29602214e-05 + syst_JES_EtaIntercalibration_Stat162: 1.22871326e-04 + syst_JES_EtaIntercalibration_Stat163: 1.40136190e-04 + syst_JES_EtaIntercalibration_Stat164: 8.34643270e-04 + syst_JES_EtaIntercalibration_Stat165: 4.68638912e-04 + syst_JES_EtaIntercalibration_Stat166: 3.52155673e-05 + syst_JES_EtaIntercalibration_Stat167: 5.09433521e-07 syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 - syst_JES_EtaIntercalibration_Stat17: 1.0747172046636267e-15 + syst_JES_EtaIntercalibration_Stat17: 1.07471720e-15 syst_JES_EtaIntercalibration_Stat170: 0.0 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 - syst_JES_EtaIntercalibration_Stat174: 1.932968701246867e-13 - syst_JES_EtaIntercalibration_Stat175: 1.932968701246867e-13 + syst_JES_EtaIntercalibration_Stat174: 1.93296870e-13 + syst_JES_EtaIntercalibration_Stat175: 1.93296870e-13 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 - syst_JES_EtaIntercalibration_Stat178: 7.636891821120685e-06 - syst_JES_EtaIntercalibration_Stat179: 4.332397950327279e-05 - syst_JES_EtaIntercalibration_Stat18: 7.226504185980936e-14 - syst_JES_EtaIntercalibration_Stat180: 0.0006013386649800593 - syst_JES_EtaIntercalibration_Stat181: 0.0007674426818987851 - syst_JES_EtaIntercalibration_Stat182: 0.0037071124544583215 - syst_JES_EtaIntercalibration_Stat183: 0.0005119820382591561 - syst_JES_EtaIntercalibration_Stat184: 6.35431810839684e-06 + syst_JES_EtaIntercalibration_Stat178: 7.63689182e-06 + syst_JES_EtaIntercalibration_Stat179: 4.33239795e-05 + syst_JES_EtaIntercalibration_Stat18: 7.22650419e-14 + syst_JES_EtaIntercalibration_Stat180: 6.01338665e-04 + syst_JES_EtaIntercalibration_Stat181: 7.67442682e-04 + syst_JES_EtaIntercalibration_Stat182: 3.70711245e-03 + syst_JES_EtaIntercalibration_Stat183: 5.11982038e-04 + syst_JES_EtaIntercalibration_Stat184: 6.35431811e-06 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 syst_JES_EtaIntercalibration_Stat187: 0.0 - syst_JES_EtaIntercalibration_Stat188: 6.991423084751773e-11 + syst_JES_EtaIntercalibration_Stat188: 6.99142308e-11 syst_JES_EtaIntercalibration_Stat189: 0.0 - syst_JES_EtaIntercalibration_Stat19: 4.966164664003803e-14 + syst_JES_EtaIntercalibration_Stat19: 4.96616466e-14 syst_JES_EtaIntercalibration_Stat190: 0.0 - syst_JES_EtaIntercalibration_Stat191: 1.932968701246867e-13 - syst_JES_EtaIntercalibration_Stat192: 1.932968701246867e-13 + syst_JES_EtaIntercalibration_Stat191: 1.93296870e-13 + syst_JES_EtaIntercalibration_Stat192: 1.93296870e-13 syst_JES_EtaIntercalibration_Stat193: 0.0 syst_JES_EtaIntercalibration_Stat194: 0.0 - syst_JES_EtaIntercalibration_Stat195: 3.227518551457141e-06 - syst_JES_EtaIntercalibration_Stat196: 0.00023282381214128424 - syst_JES_EtaIntercalibration_Stat197: 0.003053598860361328 - syst_JES_EtaIntercalibration_Stat198: 0.0005815630898707379 - syst_JES_EtaIntercalibration_Stat199: 7.2965185713941685e-06 - syst_JES_EtaIntercalibration_Stat2: 2.1834059384079269e-13 + syst_JES_EtaIntercalibration_Stat195: 3.22751855e-06 + syst_JES_EtaIntercalibration_Stat196: 2.32823812e-04 + syst_JES_EtaIntercalibration_Stat197: 3.05359886e-03 + syst_JES_EtaIntercalibration_Stat198: 5.81563090e-04 + syst_JES_EtaIntercalibration_Stat199: 7.29651857e-06 + syst_JES_EtaIntercalibration_Stat2: 2.18340594e-13 syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 syst_JES_EtaIntercalibration_Stat201: 0.0 syst_JES_EtaIntercalibration_Stat202: 0.0 - syst_JES_EtaIntercalibration_Stat203: 6.991423084751773e-11 + syst_JES_EtaIntercalibration_Stat203: 6.99142308e-11 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 @@ -58963,9 +58963,9 @@ bins: syst_JES_EtaIntercalibration_Stat208: 0.0 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 2.8943232162286226e-06 - syst_JES_EtaIntercalibration_Stat211: 0.00038550746750225213 - syst_JES_EtaIntercalibration_Stat212: 3.462196359249429e-06 + syst_JES_EtaIntercalibration_Stat210: 2.89432322e-06 + syst_JES_EtaIntercalibration_Stat211: 3.85507468e-04 + syst_JES_EtaIntercalibration_Stat212: 3.46219636e-06 syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 syst_JES_EtaIntercalibration_Stat215: 0.0 @@ -58977,37 +58977,37 @@ bins: syst_JES_EtaIntercalibration_Stat220: 0.0 syst_JES_EtaIntercalibration_Stat221: 0.0 syst_JES_EtaIntercalibration_Stat222: 0.0 - syst_JES_EtaIntercalibration_Stat223: 9.80254154543606e-07 - syst_JES_EtaIntercalibration_Stat224: 3.4641016151377547e-06 + syst_JES_EtaIntercalibration_Stat223: 9.80254155e-07 + syst_JES_EtaIntercalibration_Stat224: 3.46410162e-06 syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 syst_JES_EtaIntercalibration_Stat227: 0.0 syst_JES_EtaIntercalibration_Stat228: 0.0 syst_JES_EtaIntercalibration_Stat229: 0.0 - syst_JES_EtaIntercalibration_Stat23: 1.7310934290427538e-13 + syst_JES_EtaIntercalibration_Stat23: 1.73109343e-13 syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 syst_JES_EtaIntercalibration_Stat232: 0.0 syst_JES_EtaIntercalibration_Stat233: 0.0 syst_JES_EtaIntercalibration_Stat234: 0.0 - syst_JES_EtaIntercalibration_Stat235: 3.041481218090949e-05 + syst_JES_EtaIntercalibration_Stat235: 3.04148122e-05 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 syst_JES_EtaIntercalibration_Stat239: 0.0 - syst_JES_EtaIntercalibration_Stat24: 9.276068563782828e-11 + syst_JES_EtaIntercalibration_Stat24: 9.27606856e-11 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 syst_JES_EtaIntercalibration_Stat243: 0.0 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 - syst_JES_EtaIntercalibration_Stat25: 4.150657813664609e-07 - syst_JES_EtaIntercalibration_Stat26: 3.1359014983733144e-13 + syst_JES_EtaIntercalibration_Stat25: 4.15065781e-07 + syst_JES_EtaIntercalibration_Stat26: 3.13590150e-13 syst_JES_EtaIntercalibration_Stat27: 0.0 syst_JES_EtaIntercalibration_Stat28: 0.0 syst_JES_EtaIntercalibration_Stat29: 0.0 - syst_JES_EtaIntercalibration_Stat3: 2.7716630725071906e-13 + syst_JES_EtaIntercalibration_Stat3: 2.77166307e-13 syst_JES_EtaIntercalibration_Stat30: 0.0 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 @@ -59016,19 +59016,19 @@ bins: syst_JES_EtaIntercalibration_Stat35: 0.0 syst_JES_EtaIntercalibration_Stat36: 0.0 syst_JES_EtaIntercalibration_Stat37: 0.0 - syst_JES_EtaIntercalibration_Stat38: 1.7069360708591284e-16 - syst_JES_EtaIntercalibration_Stat39: 1.1735780875169746e-13 + syst_JES_EtaIntercalibration_Stat38: 1.70693607e-16 + syst_JES_EtaIntercalibration_Stat39: 1.17357809e-13 syst_JES_EtaIntercalibration_Stat4: 0.0 - syst_JES_EtaIntercalibration_Stat40: 6.718551983128506e-11 - syst_JES_EtaIntercalibration_Stat41: 1.0898811620997952e-11 - syst_JES_EtaIntercalibration_Stat42: 6.127129731774903e-15 + syst_JES_EtaIntercalibration_Stat40: 6.71855198e-11 + syst_JES_EtaIntercalibration_Stat41: 1.08988116e-11 + syst_JES_EtaIntercalibration_Stat42: 6.12712973e-15 syst_JES_EtaIntercalibration_Stat43: 0.0 - syst_JES_EtaIntercalibration_Stat44: 1.4497265259351504e-14 - syst_JES_EtaIntercalibration_Stat45: 9.929057696982126e-13 - syst_JES_EtaIntercalibration_Stat46: 1.0062792015731766e-07 - syst_JES_EtaIntercalibration_Stat47: 4.1236872736302394e-07 - syst_JES_EtaIntercalibration_Stat48: 4.557932648690632e-11 - syst_JES_EtaIntercalibration_Stat49: 1.051441442734687e-14 + syst_JES_EtaIntercalibration_Stat44: 1.44972653e-14 + syst_JES_EtaIntercalibration_Stat45: 9.92905770e-13 + syst_JES_EtaIntercalibration_Stat46: 1.00627920e-07 + syst_JES_EtaIntercalibration_Stat47: 4.12368727e-07 + syst_JES_EtaIntercalibration_Stat48: 4.55793265e-11 + syst_JES_EtaIntercalibration_Stat49: 1.05144144e-14 syst_JES_EtaIntercalibration_Stat5: 0.0 syst_JES_EtaIntercalibration_Stat50: 0.0 syst_JES_EtaIntercalibration_Stat51: 0.0 @@ -59039,21 +59039,21 @@ bins: syst_JES_EtaIntercalibration_Stat56: 0.0 syst_JES_EtaIntercalibration_Stat57: 0.0 syst_JES_EtaIntercalibration_Stat58: 0.0 - syst_JES_EtaIntercalibration_Stat59: 1.7069360708591284e-16 + syst_JES_EtaIntercalibration_Stat59: 1.70693607e-16 syst_JES_EtaIntercalibration_Stat6: 0.0 - syst_JES_EtaIntercalibration_Stat60: 8.663807996487457e-16 - syst_JES_EtaIntercalibration_Stat61: 3.8820443415808635e-11 - syst_JES_EtaIntercalibration_Stat62: 3.747399731814048e-07 - syst_JES_EtaIntercalibration_Stat63: 2.3813597350043526e-10 - syst_JES_EtaIntercalibration_Stat64: 7.812037058283838e-14 + syst_JES_EtaIntercalibration_Stat60: 8.66380800e-16 + syst_JES_EtaIntercalibration_Stat61: 3.88204434e-11 + syst_JES_EtaIntercalibration_Stat62: 3.74739973e-07 + syst_JES_EtaIntercalibration_Stat63: 2.38135974e-10 + syst_JES_EtaIntercalibration_Stat64: 7.81203706e-14 syst_JES_EtaIntercalibration_Stat65: 0.0 - syst_JES_EtaIntercalibration_Stat66: 1.4497265259351504e-14 - syst_JES_EtaIntercalibration_Stat67: 1.130868050437362e-10 - syst_JES_EtaIntercalibration_Stat68: 1.0297826298787527e-06 - syst_JES_EtaIntercalibration_Stat69: 1.0401742963080754e-06 + syst_JES_EtaIntercalibration_Stat66: 1.44972653e-14 + syst_JES_EtaIntercalibration_Stat67: 1.13086805e-10 + syst_JES_EtaIntercalibration_Stat68: 1.02978263e-06 + syst_JES_EtaIntercalibration_Stat69: 1.04017430e-06 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 4.1424032382432303e-07 - syst_JES_EtaIntercalibration_Stat71: 2.530639179970151e-13 + syst_JES_EtaIntercalibration_Stat70: 4.14240324e-07 + syst_JES_EtaIntercalibration_Stat71: 2.53063918e-13 syst_JES_EtaIntercalibration_Stat72: 0.0 syst_JES_EtaIntercalibration_Stat73: 0.0 syst_JES_EtaIntercalibration_Stat74: 0.0 @@ -59064,19 +59064,19 @@ bins: syst_JES_EtaIntercalibration_Stat79: 0.0 syst_JES_EtaIntercalibration_Stat8: 0.0 syst_JES_EtaIntercalibration_Stat80: 0.0 - syst_JES_EtaIntercalibration_Stat81: 1.7069360708591284e-16 - syst_JES_EtaIntercalibration_Stat82: 2.08293080778023e-14 - syst_JES_EtaIntercalibration_Stat83: 5.009997080837472e-10 - syst_JES_EtaIntercalibration_Stat84: 1.195477241439585e-06 - syst_JES_EtaIntercalibration_Stat85: 6.842089812330733e-07 - syst_JES_EtaIntercalibration_Stat86: 1.0187048186300092e-11 + syst_JES_EtaIntercalibration_Stat81: 1.70693607e-16 + syst_JES_EtaIntercalibration_Stat82: 2.08293081e-14 + syst_JES_EtaIntercalibration_Stat83: 5.00999708e-10 + syst_JES_EtaIntercalibration_Stat84: 1.19547724e-06 + syst_JES_EtaIntercalibration_Stat85: 6.84208981e-07 + syst_JES_EtaIntercalibration_Stat86: 1.01870482e-11 syst_JES_EtaIntercalibration_Stat87: 0.0 - syst_JES_EtaIntercalibration_Stat88: 3.500041566538889e-10 - syst_JES_EtaIntercalibration_Stat89: 2.1771239813111241e-07 + syst_JES_EtaIntercalibration_Stat88: 3.50004157e-10 + syst_JES_EtaIntercalibration_Stat89: 2.17712398e-07 syst_JES_EtaIntercalibration_Stat9: 0.0 - syst_JES_EtaIntercalibration_Stat90: 6.743972855075856e-07 - syst_JES_EtaIntercalibration_Stat91: 4.1959175147636065e-07 - syst_JES_EtaIntercalibration_Stat92: 2.88565418677897e-13 + syst_JES_EtaIntercalibration_Stat90: 6.74397286e-07 + syst_JES_EtaIntercalibration_Stat91: 4.19591751e-07 + syst_JES_EtaIntercalibration_Stat92: 2.88565419e-13 syst_JES_EtaIntercalibration_Stat93: 0.0 syst_JES_EtaIntercalibration_Stat94: 0.0 syst_JES_EtaIntercalibration_Stat95: 0.0 @@ -59084,159 +59084,159 @@ bins: syst_JES_EtaIntercalibration_Stat97: 0.0 syst_JES_EtaIntercalibration_Stat98: 0.0 syst_JES_EtaIntercalibration_Stat99: 0.0 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0019193167404052934 - syst_JES_Flavour_Comp: 0.007722182852017945 - syst_JES_Gjet_Generator: 0.013209675885501506 - syst_JES_Gjet_OOC: 0.010402184962785463 - syst_JES_Gjet_Purity: 0.0028439133249802107 - syst_JES_Gjet_Stat1: 3.2362374372100695e-05 - syst_JES_Gjet_Stat10: 0.0001265926327832706 - syst_JES_Gjet_Stat11: 0.0002643043524045716 - syst_JES_Gjet_Stat12: 0.0013641175462547207 - syst_JES_Gjet_Stat13: 0.002210944764122343 - syst_JES_Gjet_Stat14: 0.0008141816550991553 - syst_JES_Gjet_Stat15: 0.00010704010510084527 - syst_JES_Gjet_Stat2: 9.379117055992e-06 - syst_JES_Gjet_Stat3: 1.6099759897277972e-05 - syst_JES_Gjet_Stat4: 1.6655167388831612e-05 - syst_JES_Gjet_Stat5: 1.592712742461741e-05 - syst_JES_Gjet_Stat6: 1.7568217802327018e-05 - syst_JES_Gjet_Stat7: 5.870910661899055e-05 - syst_JES_Gjet_Stat8: 1.4704147216601851e-05 - syst_JES_Gjet_Stat9: 0.0001231107577549582 - syst_JES_Gjet_Veto: 0.0075273778302938936 - syst_JES_Gjet_dPhi: 0.0005775407431515112 - syst_JES_LArESZee: 0.018881304907235625 - syst_JES_LArEsmear: 0.0012736811090300428 - syst_JES_LAr_JVT: 0.0014822903730376178 - syst_JES_MJB_Alpha: 2.3736339624086942e-05 - syst_JES_MJB_Asym: 0.000645238349371765 - syst_JES_MJB_Beta: 3.518384004056408e-05 - syst_JES_MJB_Stat1: 3.4470823532373e-05 - syst_JES_MJB_Stat10: 2.3603271504602918e-06 - syst_JES_MJB_Stat11: 3.875463681935363e-06 - syst_JES_MJB_Stat12: 6.619898186528249e-07 - syst_JES_MJB_Stat13: 1.4081573065534972e-07 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.91931674e-03 + syst_JES_Flavour_Comp: 7.72218285e-03 + syst_JES_Gjet_Generator: 1.32096759e-02 + syst_JES_Gjet_OOC: 1.04021850e-02 + syst_JES_Gjet_Purity: 2.84391332e-03 + syst_JES_Gjet_Stat1: 3.23623744e-05 + syst_JES_Gjet_Stat10: 1.26592633e-04 + syst_JES_Gjet_Stat11: 2.64304352e-04 + syst_JES_Gjet_Stat12: 1.36411755e-03 + syst_JES_Gjet_Stat13: 2.21094476e-03 + syst_JES_Gjet_Stat14: 8.14181655e-04 + syst_JES_Gjet_Stat15: 1.07040105e-04 + syst_JES_Gjet_Stat2: 9.37911706e-06 + syst_JES_Gjet_Stat3: 1.60997599e-05 + syst_JES_Gjet_Stat4: 1.66551674e-05 + syst_JES_Gjet_Stat5: 1.59271274e-05 + syst_JES_Gjet_Stat6: 1.75682178e-05 + syst_JES_Gjet_Stat7: 5.87091066e-05 + syst_JES_Gjet_Stat8: 1.47041472e-05 + syst_JES_Gjet_Stat9: 1.23110758e-04 + syst_JES_Gjet_Veto: 7.52737783e-03 + syst_JES_Gjet_dPhi: 5.77540743e-04 + syst_JES_LArESZee: 1.88813049e-02 + syst_JES_LArEsmear: 1.27368111e-03 + syst_JES_LAr_JVT: 1.48229037e-03 + syst_JES_MJB_Alpha: 2.37363396e-05 + syst_JES_MJB_Asym: 6.45238349e-04 + syst_JES_MJB_Beta: 3.51838400e-05 + syst_JES_MJB_Stat1: 3.44708235e-05 + syst_JES_MJB_Stat10: 2.36032715e-06 + syst_JES_MJB_Stat11: 3.87546368e-06 + syst_JES_MJB_Stat12: 6.61989819e-07 + syst_JES_MJB_Stat13: 1.40815731e-07 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 0.00011174442536431069 - syst_JES_MJB_Stat3: 0.000124352892507573 - syst_JES_MJB_Stat4: 6.017470786592986e-05 - syst_JES_MJB_Stat5: 1.0553560347105615e-05 - syst_JES_MJB_Stat6: 2.2545658384709017e-05 - syst_JES_MJB_Stat7: 1.5524941610196156e-06 - syst_JES_MJB_Stat8: 2.5169559843588843e-06 - syst_JES_MJB_Stat9: 2.5160905900225454e-06 - syst_JES_MJB_Threshold: 0.0006955464686129892 - syst_JES_Pileup_MuOffset: 0.0018320938840572555 - syst_JES_Pileup_NPVOffset: 0.0020918773267091934 - syst_JES_Pileup_Pt_term: 0.0058957690550088555 - syst_JES_PunchThrough_MC15: 0.00016757507175889857 + syst_JES_MJB_Stat2: 1.11744425e-04 + syst_JES_MJB_Stat3: 1.24352893e-04 + syst_JES_MJB_Stat4: 6.01747079e-05 + syst_JES_MJB_Stat5: 1.05535603e-05 + syst_JES_MJB_Stat6: 2.25456584e-05 + syst_JES_MJB_Stat7: 1.55249416e-06 + syst_JES_MJB_Stat8: 2.51695598e-06 + syst_JES_MJB_Stat9: 2.51609059e-06 + syst_JES_MJB_Threshold: 6.95546469e-04 + syst_JES_Pileup_MuOffset: 1.83209388e-03 + syst_JES_Pileup_NPVOffset: 2.09187733e-03 + syst_JES_Pileup_Pt_term: 5.89576906e-03 + syst_JES_PunchThrough_MC15: 1.67575072e-04 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.00961287442703794 - syst_JES_Zjet_MuScale: 0.0003404318874606196 - syst_JES_Zjet_MuSmearID: 7.569313778011849e-05 - syst_JES_Zjet_MuSmearMS: 0.0024415431083640526 - syst_JES_Zjet_OOC: 0.0035125264411816175 - syst_JES_Zjet_Stat1: 4.435301828229957e-05 - syst_JES_Zjet_Stat10: 0.00010336012577391728 - syst_JES_Zjet_Stat11: 0.00011451048772929056 - syst_JES_Zjet_Stat12: 0.0018050248613246302 - syst_JES_Zjet_Stat13: 0.002218919275232878 - syst_JES_Zjet_Stat2: 9.782722972158621e-07 - syst_JES_Zjet_Stat3: 1.3907000647156093e-05 - syst_JES_Zjet_Stat4: 1.3915432979250054e-05 - syst_JES_Zjet_Stat5: 1.2317291005736609e-05 - syst_JES_Zjet_Stat6: 4.61114671204463e-05 - syst_JES_Zjet_Stat7: 8.411238434380515e-06 - syst_JES_Zjet_Stat8: 1.4643002276428832e-05 - syst_JES_Zjet_Stat9: 0.00010443798303299428 - syst_JES_Zjet_Veto: 0.0006063424857289814 - syst_JES_Zjet_dPhi: 0.00040037328519770143 + syst_JES_Zjet_MC: 9.61287443e-03 + syst_JES_Zjet_MuScale: 3.40431887e-04 + syst_JES_Zjet_MuSmearID: 7.56931378e-05 + syst_JES_Zjet_MuSmearMS: 2.44154311e-03 + syst_JES_Zjet_OOC: 3.51252644e-03 + syst_JES_Zjet_Stat1: 4.43530183e-05 + syst_JES_Zjet_Stat10: 1.03360126e-04 + syst_JES_Zjet_Stat11: 1.14510488e-04 + syst_JES_Zjet_Stat12: 1.80502486e-03 + syst_JES_Zjet_Stat13: 2.21891928e-03 + syst_JES_Zjet_Stat2: 9.78272297e-07 + syst_JES_Zjet_Stat3: 1.39070006e-05 + syst_JES_Zjet_Stat4: 1.39154330e-05 + syst_JES_Zjet_Stat5: 1.23172910e-05 + syst_JES_Zjet_Stat6: 4.61114671e-05 + syst_JES_Zjet_Stat7: 8.41123843e-06 + syst_JES_Zjet_Stat8: 1.46430023e-05 + syst_JES_Zjet_Stat9: 1.04437983e-04 + syst_JES_Zjet_Veto: 6.06342486e-04 + syst_JES_Zjet_dPhi: 4.00373285e-04 syst_PRW: 0.0 syst_Unfolding_bias: 0.001484 - syst_cleaning: 0.002074996867467515 + syst_cleaning: 2.07499687e-03 syst_lumi: 0.007872 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 0.0016890419621785602 - syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.001314690880017048 - syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0023473591012028814 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 0.0007363500305561209 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0010492000905451735 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0026007873327129226 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 1.68904196e-03 + syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.31469088e-03 + syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 2.34735910e-03 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 7.36350031e-04 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.04920009e-03 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 2.60078733e-03 - stat: 0.003887 - syst_JER_CROSS_CALIB_FORWARD: 1.069e-06 - syst_JER_NOISE_FORWARD: 0.00038085 - syst_JER_NP0: 0.0006021501037947267 - syst_JER_NP1: 0.0029898459826552936 - syst_JER_NP2: 0.0001624749576857923 - syst_JER_NP3: 0.00018176387842472997 - syst_JER_NP4: 0.0001700544650251795 - syst_JER_NP5: 2.7375570770305414e-06 - syst_JER_NP6: 2.007071747596483e-06 - syst_JER_NP7: 1.7152735695809306e-09 - syst_JER_NP8: 0.00015864973453728185 - syst_JES_EtaIntercalibration_Modelling: 0.009635555925840502 - syst_JES_EtaIntercalibration_NonClosure: 0.0009135860920022809 + syst_JER_CROSS_CALIB_FORWARD: 1.06900000e-06 + syst_JER_NOISE_FORWARD: 3.80850000e-04 + syst_JER_NP0: 6.02150104e-04 + syst_JER_NP1: 2.98984598e-03 + syst_JER_NP2: 1.62474958e-04 + syst_JER_NP3: 1.81763878e-04 + syst_JER_NP4: 1.70054465e-04 + syst_JER_NP5: 2.73755708e-06 + syst_JER_NP6: 2.00707175e-06 + syst_JER_NP7: 1.71527357e-09 + syst_JER_NP8: 1.58649735e-04 + syst_JES_EtaIntercalibration_Modelling: 9.63555593e-03 + syst_JES_EtaIntercalibration_NonClosure: 9.13586092e-04 syst_JES_EtaIntercalibration_Stat0: 0.0 - syst_JES_EtaIntercalibration_Stat1: 4.835885854732305e-16 + syst_JES_EtaIntercalibration_Stat1: 4.83588585e-16 syst_JES_EtaIntercalibration_Stat10: 0.0 syst_JES_EtaIntercalibration_Stat100: 0.0 syst_JES_EtaIntercalibration_Stat101: 0.0 syst_JES_EtaIntercalibration_Stat102: 0.0 - syst_JES_EtaIntercalibration_Stat103: 4.8203458382153445e-15 - syst_JES_EtaIntercalibration_Stat104: 7.523189903682813e-09 - syst_JES_EtaIntercalibration_Stat105: 2.895696634663238e-07 - syst_JES_EtaIntercalibration_Stat106: 1.7061981127641653e-07 - syst_JES_EtaIntercalibration_Stat107: 1.276219416871566e-12 - syst_JES_EtaIntercalibration_Stat108: 1.8210489711152745e-08 - syst_JES_EtaIntercalibration_Stat109: 2.4694760577903966e-06 + syst_JES_EtaIntercalibration_Stat103: 4.82034584e-15 + syst_JES_EtaIntercalibration_Stat104: 7.52318990e-09 + syst_JES_EtaIntercalibration_Stat105: 2.89569663e-07 + syst_JES_EtaIntercalibration_Stat106: 1.70619811e-07 + syst_JES_EtaIntercalibration_Stat107: 1.27621942e-12 + syst_JES_EtaIntercalibration_Stat108: 1.82104897e-08 + syst_JES_EtaIntercalibration_Stat109: 2.46947606e-06 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 7.687047336266377e-06 - syst_JES_EtaIntercalibration_Stat111: 2.577309007472717e-07 - syst_JES_EtaIntercalibration_Stat112: 5.92445039208381e-08 + syst_JES_EtaIntercalibration_Stat110: 7.68704734e-06 + syst_JES_EtaIntercalibration_Stat111: 2.57730901e-07 + syst_JES_EtaIntercalibration_Stat112: 5.92445039e-08 syst_JES_EtaIntercalibration_Stat113: 0.0 syst_JES_EtaIntercalibration_Stat114: 0.0 syst_JES_EtaIntercalibration_Stat115: 0.0 syst_JES_EtaIntercalibration_Stat116: 0.0 syst_JES_EtaIntercalibration_Stat117: 0.0 - syst_JES_EtaIntercalibration_Stat118: 3.283102305746807e-15 - syst_JES_EtaIntercalibration_Stat119: 3.283102305746807e-15 + syst_JES_EtaIntercalibration_Stat118: 3.28310231e-15 + syst_JES_EtaIntercalibration_Stat119: 3.28310231e-15 syst_JES_EtaIntercalibration_Stat12: 0.0 syst_JES_EtaIntercalibration_Stat120: 0.0 syst_JES_EtaIntercalibration_Stat121: 0.0 syst_JES_EtaIntercalibration_Stat122: 0.0 - syst_JES_EtaIntercalibration_Stat123: 2.999534743922797e-11 - syst_JES_EtaIntercalibration_Stat124: 8.380607540626155e-07 - syst_JES_EtaIntercalibration_Stat125: 9.173663431257982e-06 - syst_JES_EtaIntercalibration_Stat126: 5.09979523780122e-06 - syst_JES_EtaIntercalibration_Stat127: 3.96506443926199e-08 - syst_JES_EtaIntercalibration_Stat128: 6.479209028114466e-06 - syst_JES_EtaIntercalibration_Stat129: 4.3257256905633766e-05 + syst_JES_EtaIntercalibration_Stat123: 2.99953474e-11 + syst_JES_EtaIntercalibration_Stat124: 8.38060754e-07 + syst_JES_EtaIntercalibration_Stat125: 9.17366343e-06 + syst_JES_EtaIntercalibration_Stat126: 5.09979524e-06 + syst_JES_EtaIntercalibration_Stat127: 3.96506444e-08 + syst_JES_EtaIntercalibration_Stat128: 6.47920903e-06 + syst_JES_EtaIntercalibration_Stat129: 4.32572569e-05 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 8.038857319296069e-06 - syst_JES_EtaIntercalibration_Stat131: 8.103861417096173e-08 + syst_JES_EtaIntercalibration_Stat130: 8.03885732e-06 + syst_JES_EtaIntercalibration_Stat131: 8.10386142e-08 syst_JES_EtaIntercalibration_Stat132: 0.0 syst_JES_EtaIntercalibration_Stat133: 0.0 syst_JES_EtaIntercalibration_Stat134: 0.0 syst_JES_EtaIntercalibration_Stat135: 0.0 syst_JES_EtaIntercalibration_Stat136: 0.0 - syst_JES_EtaIntercalibration_Stat137: 3.283102305746807e-15 - syst_JES_EtaIntercalibration_Stat138: 3.283102305746807e-15 - syst_JES_EtaIntercalibration_Stat139: 1.6333239115374513e-14 + syst_JES_EtaIntercalibration_Stat137: 3.28310231e-15 + syst_JES_EtaIntercalibration_Stat138: 3.28310231e-15 + syst_JES_EtaIntercalibration_Stat139: 1.63332391e-14 syst_JES_EtaIntercalibration_Stat14: 0.0 syst_JES_EtaIntercalibration_Stat140: 0.0 syst_JES_EtaIntercalibration_Stat141: 0.0 - syst_JES_EtaIntercalibration_Stat142: 8.31092173065509e-09 - syst_JES_EtaIntercalibration_Stat143: 6.748362245760078e-06 - syst_JES_EtaIntercalibration_Stat144: 1.5989191872949677e-05 - syst_JES_EtaIntercalibration_Stat145: 3.389963850470975e-05 - syst_JES_EtaIntercalibration_Stat146: 7.665519768417533e-05 - syst_JES_EtaIntercalibration_Stat147: 5.4328483321366516e-05 - syst_JES_EtaIntercalibration_Stat148: 4.778209922920926e-06 - syst_JES_EtaIntercalibration_Stat149: 8.969241912224242e-08 + syst_JES_EtaIntercalibration_Stat142: 8.31092173e-09 + syst_JES_EtaIntercalibration_Stat143: 6.74836225e-06 + syst_JES_EtaIntercalibration_Stat144: 1.59891919e-05 + syst_JES_EtaIntercalibration_Stat145: 3.38996385e-05 + syst_JES_EtaIntercalibration_Stat146: 7.66551977e-05 + syst_JES_EtaIntercalibration_Stat147: 5.43284833e-05 + syst_JES_EtaIntercalibration_Stat148: 4.77820992e-06 + syst_JES_EtaIntercalibration_Stat149: 8.96924191e-08 syst_JES_EtaIntercalibration_Stat15: 0.0 syst_JES_EtaIntercalibration_Stat150: 0.0 syst_JES_EtaIntercalibration_Stat151: 0.0 @@ -59244,60 +59244,60 @@ bins: syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 3.283102305746807e-15 - syst_JES_EtaIntercalibration_Stat157: 1.6333239115374513e-14 + syst_JES_EtaIntercalibration_Stat156: 3.28310231e-15 + syst_JES_EtaIntercalibration_Stat157: 1.63332391e-14 syst_JES_EtaIntercalibration_Stat158: 0.0 syst_JES_EtaIntercalibration_Stat159: 0.0 - syst_JES_EtaIntercalibration_Stat16: 1.7961366874489256e-17 - syst_JES_EtaIntercalibration_Stat160: 8.631232800537534e-09 - syst_JES_EtaIntercalibration_Stat161: 4.577232214996307e-06 - syst_JES_EtaIntercalibration_Stat162: 5.446943701517392e-05 - syst_JES_EtaIntercalibration_Stat163: 2.5124125357910472e-05 - syst_JES_EtaIntercalibration_Stat164: 0.0003095210995635031 - syst_JES_EtaIntercalibration_Stat165: 0.0002036306093763902 - syst_JES_EtaIntercalibration_Stat166: 7.804061250400333e-06 - syst_JES_EtaIntercalibration_Stat167: 9.321056817094293e-08 + syst_JES_EtaIntercalibration_Stat16: 1.79613669e-17 + syst_JES_EtaIntercalibration_Stat160: 8.63123280e-09 + syst_JES_EtaIntercalibration_Stat161: 4.57723221e-06 + syst_JES_EtaIntercalibration_Stat162: 5.44694370e-05 + syst_JES_EtaIntercalibration_Stat163: 2.51241254e-05 + syst_JES_EtaIntercalibration_Stat164: 3.09521100e-04 + syst_JES_EtaIntercalibration_Stat165: 2.03630609e-04 + syst_JES_EtaIntercalibration_Stat166: 7.80406125e-06 + syst_JES_EtaIntercalibration_Stat167: 9.32105682e-08 syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 - syst_JES_EtaIntercalibration_Stat17: 1.0651653991282293e-16 + syst_JES_EtaIntercalibration_Stat17: 1.06516540e-16 syst_JES_EtaIntercalibration_Stat170: 0.0 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 - syst_JES_EtaIntercalibration_Stat174: 1.6333239115374513e-14 - syst_JES_EtaIntercalibration_Stat175: 1.6333239115374513e-14 + syst_JES_EtaIntercalibration_Stat174: 1.63332391e-14 + syst_JES_EtaIntercalibration_Stat175: 1.63332391e-14 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 - syst_JES_EtaIntercalibration_Stat178: 7.427119360828935e-07 - syst_JES_EtaIntercalibration_Stat179: 1.1743945706192618e-05 - syst_JES_EtaIntercalibration_Stat18: 6.311915933375538e-15 - syst_JES_EtaIntercalibration_Stat180: 0.000273678474674206 - syst_JES_EtaIntercalibration_Stat181: 0.00027066870432320024 - syst_JES_EtaIntercalibration_Stat182: 0.001663464156511946 - syst_JES_EtaIntercalibration_Stat183: 0.00023415663027127805 - syst_JES_EtaIntercalibration_Stat184: 3.101399148624375e-06 + syst_JES_EtaIntercalibration_Stat178: 7.42711936e-07 + syst_JES_EtaIntercalibration_Stat179: 1.17439457e-05 + syst_JES_EtaIntercalibration_Stat18: 6.31191593e-15 + syst_JES_EtaIntercalibration_Stat180: 2.73678475e-04 + syst_JES_EtaIntercalibration_Stat181: 2.70668704e-04 + syst_JES_EtaIntercalibration_Stat182: 1.66346416e-03 + syst_JES_EtaIntercalibration_Stat183: 2.34156630e-04 + syst_JES_EtaIntercalibration_Stat184: 3.10139915e-06 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 syst_JES_EtaIntercalibration_Stat187: 0.0 - syst_JES_EtaIntercalibration_Stat188: 5.72442791901514e-12 + syst_JES_EtaIntercalibration_Stat188: 5.72442792e-12 syst_JES_EtaIntercalibration_Stat189: 0.0 - syst_JES_EtaIntercalibration_Stat19: 4.258601210491539e-15 + syst_JES_EtaIntercalibration_Stat19: 4.25860121e-15 syst_JES_EtaIntercalibration_Stat190: 0.0 - syst_JES_EtaIntercalibration_Stat191: 1.6333239115374513e-14 - syst_JES_EtaIntercalibration_Stat192: 1.6333239115374513e-14 + syst_JES_EtaIntercalibration_Stat191: 1.63332391e-14 + syst_JES_EtaIntercalibration_Stat192: 1.63332391e-14 syst_JES_EtaIntercalibration_Stat193: 0.0 syst_JES_EtaIntercalibration_Stat194: 0.0 - syst_JES_EtaIntercalibration_Stat195: 1.4503846619086951e-06 - syst_JES_EtaIntercalibration_Stat196: 0.00010796407087545375 - syst_JES_EtaIntercalibration_Stat197: 0.0012813513833059222 - syst_JES_EtaIntercalibration_Stat198: 0.00029340894669385937 - syst_JES_EtaIntercalibration_Stat199: 4.652447393908715e-06 - syst_JES_EtaIntercalibration_Stat2: 1.8246043822908568e-14 + syst_JES_EtaIntercalibration_Stat195: 1.45038466e-06 + syst_JES_EtaIntercalibration_Stat196: 1.07964071e-04 + syst_JES_EtaIntercalibration_Stat197: 1.28135138e-03 + syst_JES_EtaIntercalibration_Stat198: 2.93408947e-04 + syst_JES_EtaIntercalibration_Stat199: 4.65244739e-06 + syst_JES_EtaIntercalibration_Stat2: 1.82460438e-14 syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 syst_JES_EtaIntercalibration_Stat201: 0.0 syst_JES_EtaIntercalibration_Stat202: 0.0 - syst_JES_EtaIntercalibration_Stat203: 5.72442791901514e-12 + syst_JES_EtaIntercalibration_Stat203: 5.72442792e-12 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 @@ -59305,9 +59305,9 @@ bins: syst_JES_EtaIntercalibration_Stat208: 0.0 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 1.438499741918642e-06 - syst_JES_EtaIntercalibration_Stat211: 0.0002015933101568601 - syst_JES_EtaIntercalibration_Stat212: 4.018357873559795e-06 + syst_JES_EtaIntercalibration_Stat210: 1.43849974e-06 + syst_JES_EtaIntercalibration_Stat211: 2.01593310e-04 + syst_JES_EtaIntercalibration_Stat212: 4.01835787e-06 syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 syst_JES_EtaIntercalibration_Stat215: 0.0 @@ -59319,37 +59319,37 @@ bins: syst_JES_EtaIntercalibration_Stat220: 0.0 syst_JES_EtaIntercalibration_Stat221: 0.0 syst_JES_EtaIntercalibration_Stat222: 0.0 - syst_JES_EtaIntercalibration_Stat223: 1.2427464544306696e-06 - syst_JES_EtaIntercalibration_Stat224: 4.025286076790071e-06 + syst_JES_EtaIntercalibration_Stat223: 1.24274645e-06 + syst_JES_EtaIntercalibration_Stat224: 4.02528608e-06 syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 syst_JES_EtaIntercalibration_Stat227: 0.0 syst_JES_EtaIntercalibration_Stat228: 0.0 syst_JES_EtaIntercalibration_Stat229: 0.0 - syst_JES_EtaIntercalibration_Stat23: 1.445262699546349e-14 + syst_JES_EtaIntercalibration_Stat23: 1.44526270e-14 syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 syst_JES_EtaIntercalibration_Stat232: 0.0 syst_JES_EtaIntercalibration_Stat233: 0.0 syst_JES_EtaIntercalibration_Stat234: 0.0 - syst_JES_EtaIntercalibration_Stat235: 3.619120162415169e-05 + syst_JES_EtaIntercalibration_Stat235: 3.61912016e-05 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 syst_JES_EtaIntercalibration_Stat239: 0.0 - syst_JES_EtaIntercalibration_Stat24: 7.548068411852133e-12 + syst_JES_EtaIntercalibration_Stat24: 7.54806841e-12 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 syst_JES_EtaIntercalibration_Stat243: 0.0 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 - syst_JES_EtaIntercalibration_Stat25: 6.219629951427135e-08 - syst_JES_EtaIntercalibration_Stat26: 2.691653371071394e-14 + syst_JES_EtaIntercalibration_Stat25: 6.21962995e-08 + syst_JES_EtaIntercalibration_Stat26: 2.69165337e-14 syst_JES_EtaIntercalibration_Stat27: 0.0 syst_JES_EtaIntercalibration_Stat28: 0.0 syst_JES_EtaIntercalibration_Stat29: 0.0 - syst_JES_EtaIntercalibration_Stat3: 2.3691113777110607e-14 + syst_JES_EtaIntercalibration_Stat3: 2.36911138e-14 syst_JES_EtaIntercalibration_Stat30: 0.0 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 @@ -59358,19 +59358,19 @@ bins: syst_JES_EtaIntercalibration_Stat35: 0.0 syst_JES_EtaIntercalibration_Stat36: 0.0 syst_JES_EtaIntercalibration_Stat37: 0.0 - syst_JES_EtaIntercalibration_Stat38: 1.7961366874489256e-17 - syst_JES_EtaIntercalibration_Stat39: 1.0155005612996972e-14 + syst_JES_EtaIntercalibration_Stat38: 1.79613669e-17 + syst_JES_EtaIntercalibration_Stat39: 1.01550056e-14 syst_JES_EtaIntercalibration_Stat4: 0.0 - syst_JES_EtaIntercalibration_Stat40: 5.473920806880567e-12 - syst_JES_EtaIntercalibration_Stat41: 8.82631253695449e-13 - syst_JES_EtaIntercalibration_Stat42: 5.54689271123933e-16 + syst_JES_EtaIntercalibration_Stat40: 5.47392081e-12 + syst_JES_EtaIntercalibration_Stat41: 8.82631254e-13 + syst_JES_EtaIntercalibration_Stat42: 5.54689271e-16 syst_JES_EtaIntercalibration_Stat43: 0.0 - syst_JES_EtaIntercalibration_Stat44: 1.4168175605913416e-15 - syst_JES_EtaIntercalibration_Stat45: 8.180101894230903e-14 - syst_JES_EtaIntercalibration_Stat46: 1.7278734328100393e-08 - syst_JES_EtaIntercalibration_Stat47: 6.187034513163394e-08 - syst_JES_EtaIntercalibration_Stat48: 3.708136873148023e-12 - syst_JES_EtaIntercalibration_Stat49: 9.785221037360373e-16 + syst_JES_EtaIntercalibration_Stat44: 1.41681756e-15 + syst_JES_EtaIntercalibration_Stat45: 8.18010189e-14 + syst_JES_EtaIntercalibration_Stat46: 1.72787343e-08 + syst_JES_EtaIntercalibration_Stat47: 6.18703451e-08 + syst_JES_EtaIntercalibration_Stat48: 3.70813687e-12 + syst_JES_EtaIntercalibration_Stat49: 9.78522104e-16 syst_JES_EtaIntercalibration_Stat5: 0.0 syst_JES_EtaIntercalibration_Stat50: 0.0 syst_JES_EtaIntercalibration_Stat51: 0.0 @@ -59381,21 +59381,21 @@ bins: syst_JES_EtaIntercalibration_Stat56: 0.0 syst_JES_EtaIntercalibration_Stat57: 0.0 syst_JES_EtaIntercalibration_Stat58: 0.0 - syst_JES_EtaIntercalibration_Stat59: 1.7961366874489256e-17 + syst_JES_EtaIntercalibration_Stat59: 1.79613669e-17 syst_JES_EtaIntercalibration_Stat6: 0.0 - syst_JES_EtaIntercalibration_Stat60: 8.417242481953338e-17 - syst_JES_EtaIntercalibration_Stat61: 3.1613819351669612e-12 - syst_JES_EtaIntercalibration_Stat62: 9.933445891532303e-08 - syst_JES_EtaIntercalibration_Stat63: 2.013473840778668e-11 - syst_JES_EtaIntercalibration_Stat64: 6.7706703508589165e-15 + syst_JES_EtaIntercalibration_Stat60: 8.41724248e-17 + syst_JES_EtaIntercalibration_Stat61: 3.16138194e-12 + syst_JES_EtaIntercalibration_Stat62: 9.93344589e-08 + syst_JES_EtaIntercalibration_Stat63: 2.01347384e-11 + syst_JES_EtaIntercalibration_Stat64: 6.77067035e-15 syst_JES_EtaIntercalibration_Stat65: 0.0 - syst_JES_EtaIntercalibration_Stat66: 1.4168175605913416e-15 - syst_JES_EtaIntercalibration_Stat67: 9.18816401682077e-12 - syst_JES_EtaIntercalibration_Stat68: 1.732533626419701e-07 - syst_JES_EtaIntercalibration_Stat69: 1.7624254878079243e-07 + syst_JES_EtaIntercalibration_Stat66: 1.41681756e-15 + syst_JES_EtaIntercalibration_Stat67: 9.18816402e-12 + syst_JES_EtaIntercalibration_Stat68: 1.73253363e-07 + syst_JES_EtaIntercalibration_Stat69: 1.76242549e-07 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 6.213320369727847e-08 - syst_JES_EtaIntercalibration_Stat71: 2.1645307347956508e-14 + syst_JES_EtaIntercalibration_Stat70: 6.21332037e-08 + syst_JES_EtaIntercalibration_Stat71: 2.16453073e-14 syst_JES_EtaIntercalibration_Stat72: 0.0 syst_JES_EtaIntercalibration_Stat73: 0.0 syst_JES_EtaIntercalibration_Stat74: 0.0 @@ -59406,19 +59406,19 @@ bins: syst_JES_EtaIntercalibration_Stat79: 0.0 syst_JES_EtaIntercalibration_Stat8: 0.0 syst_JES_EtaIntercalibration_Stat80: 0.0 - syst_JES_EtaIntercalibration_Stat81: 1.7961366874489256e-17 - syst_JES_EtaIntercalibration_Stat82: 1.8436804407217647e-15 - syst_JES_EtaIntercalibration_Stat83: 4.206737542324218e-11 - syst_JES_EtaIntercalibration_Stat84: 1.9730217907565033e-07 - syst_JES_EtaIntercalibration_Stat85: 1.66593731036765e-07 - syst_JES_EtaIntercalibration_Stat86: 8.216296900063921e-13 + syst_JES_EtaIntercalibration_Stat81: 1.79613669e-17 + syst_JES_EtaIntercalibration_Stat82: 1.84368044e-15 + syst_JES_EtaIntercalibration_Stat83: 4.20673754e-11 + syst_JES_EtaIntercalibration_Stat84: 1.97302179e-07 + syst_JES_EtaIntercalibration_Stat85: 1.66593731e-07 + syst_JES_EtaIntercalibration_Stat86: 8.21629690e-13 syst_JES_EtaIntercalibration_Stat87: 0.0 - syst_JES_EtaIntercalibration_Stat88: 2.969009282572219e-11 - syst_JES_EtaIntercalibration_Stat89: 1.056884583138102e-07 + syst_JES_EtaIntercalibration_Stat88: 2.96900928e-11 + syst_JES_EtaIntercalibration_Stat89: 1.05688458e-07 syst_JES_EtaIntercalibration_Stat9: 0.0 - syst_JES_EtaIntercalibration_Stat90: 1.742365222642773e-07 - syst_JES_EtaIntercalibration_Stat91: 6.295047997980237e-08 - syst_JES_EtaIntercalibration_Stat92: 2.4656283953740877e-14 + syst_JES_EtaIntercalibration_Stat90: 1.74236522e-07 + syst_JES_EtaIntercalibration_Stat91: 6.29504800e-08 + syst_JES_EtaIntercalibration_Stat92: 2.46562840e-14 syst_JES_EtaIntercalibration_Stat93: 0.0 syst_JES_EtaIntercalibration_Stat94: 0.0 syst_JES_EtaIntercalibration_Stat95: 0.0 @@ -59426,159 +59426,159 @@ bins: syst_JES_EtaIntercalibration_Stat97: 0.0 syst_JES_EtaIntercalibration_Stat98: 0.0 syst_JES_EtaIntercalibration_Stat99: 0.0 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0009277642965753748 - syst_JES_Flavour_Comp: 0.0035880739958925037 - syst_JES_Gjet_Generator: 0.00568349425969623 - syst_JES_Gjet_OOC: 0.004502449777621068 - syst_JES_Gjet_Purity: 0.0010983049576506517 - syst_JES_Gjet_Stat1: 2.682981050995329e-05 - syst_JES_Gjet_Stat10: 2.0984791516715148e-05 - syst_JES_Gjet_Stat11: 7.161479749849188e-05 - syst_JES_Gjet_Stat12: 0.0004979996887549228 - syst_JES_Gjet_Stat13: 0.0010039037155026374 - syst_JES_Gjet_Stat14: 0.0007419660420127056 - syst_JES_Gjet_Stat15: 9.483807990464589e-05 - syst_JES_Gjet_Stat2: 4.428502238906513e-06 - syst_JES_Gjet_Stat3: 6.754269982759055e-06 - syst_JES_Gjet_Stat4: 6.8589919813337e-06 - syst_JES_Gjet_Stat5: 6.5908887109402775e-06 - syst_JES_Gjet_Stat6: 6.686341955808123e-06 - syst_JES_Gjet_Stat7: 3.32661310494623e-05 - syst_JES_Gjet_Stat8: 6.062026455732438e-06 - syst_JES_Gjet_Stat9: 4.460466455428176e-05 - syst_JES_Gjet_Veto: 0.003533995472549448 - syst_JES_Gjet_dPhi: 0.00019931424936516707 - syst_JES_LArESZee: 0.008362855194250346 - syst_JES_LArEsmear: 0.0005107848544152421 - syst_JES_LAr_JVT: 0.0006529166792171877 - syst_JES_MJB_Alpha: 2.7703892777008793e-05 - syst_JES_MJB_Asym: 0.00028298920474109965 - syst_JES_MJB_Beta: 3.1937415686777164e-05 - syst_JES_MJB_Stat1: 7.2871263712110824e-06 - syst_JES_MJB_Stat10: 1.295145443569949e-06 - syst_JES_MJB_Stat11: 8.039313823330944e-06 - syst_JES_MJB_Stat12: 2.8977210010627313e-06 - syst_JES_MJB_Stat13: 1.0367190108703514e-06 + syst_JES_EtaIntercalibration_TotalStat_MJB: 9.27764297e-04 + syst_JES_Flavour_Comp: 3.58807400e-03 + syst_JES_Gjet_Generator: 5.68349426e-03 + syst_JES_Gjet_OOC: 4.50244978e-03 + syst_JES_Gjet_Purity: 1.09830496e-03 + syst_JES_Gjet_Stat1: 2.68298105e-05 + syst_JES_Gjet_Stat10: 2.09847915e-05 + syst_JES_Gjet_Stat11: 7.16147975e-05 + syst_JES_Gjet_Stat12: 4.97999689e-04 + syst_JES_Gjet_Stat13: 1.00390372e-03 + syst_JES_Gjet_Stat14: 7.41966042e-04 + syst_JES_Gjet_Stat15: 9.48380799e-05 + syst_JES_Gjet_Stat2: 4.42850224e-06 + syst_JES_Gjet_Stat3: 6.75426998e-06 + syst_JES_Gjet_Stat4: 6.85899198e-06 + syst_JES_Gjet_Stat5: 6.59088871e-06 + syst_JES_Gjet_Stat6: 6.68634196e-06 + syst_JES_Gjet_Stat7: 3.32661310e-05 + syst_JES_Gjet_Stat8: 6.06202646e-06 + syst_JES_Gjet_Stat9: 4.46046646e-05 + syst_JES_Gjet_Veto: 3.53399547e-03 + syst_JES_Gjet_dPhi: 1.99314249e-04 + syst_JES_LArESZee: 8.36285519e-03 + syst_JES_LArEsmear: 5.10784854e-04 + syst_JES_LAr_JVT: 6.52916679e-04 + syst_JES_MJB_Alpha: 2.77038928e-05 + syst_JES_MJB_Asym: 2.82989205e-04 + syst_JES_MJB_Beta: 3.19374157e-05 + syst_JES_MJB_Stat1: 7.28712637e-06 + syst_JES_MJB_Stat10: 1.29514544e-06 + syst_JES_MJB_Stat11: 8.03931382e-06 + syst_JES_MJB_Stat12: 2.89772100e-06 + syst_JES_MJB_Stat13: 1.03671901e-06 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 3.688764122304379e-05 - syst_JES_MJB_Stat3: 5.0383397066891e-05 - syst_JES_MJB_Stat4: 1.3919325657157389e-05 - syst_JES_MJB_Stat5: 5.393783713683744e-06 - syst_JES_MJB_Stat6: 3.159930674872473e-05 - syst_JES_MJB_Stat7: 1.0599927216731254e-06 - syst_JES_MJB_Stat8: 2.2974493944372313e-06 - syst_JES_MJB_Stat9: 2.2965844791777205e-06 - syst_JES_MJB_Threshold: 0.00030466976794555776 - syst_JES_Pileup_MuOffset: 0.000802796786241699 - syst_JES_Pileup_NPVOffset: 0.0009153007961866962 - syst_JES_Pileup_Pt_term: 0.0024898848868973845 - syst_JES_PunchThrough_MC15: 7.458099271932494e-05 + syst_JES_MJB_Stat2: 3.68876412e-05 + syst_JES_MJB_Stat3: 5.03833971e-05 + syst_JES_MJB_Stat4: 1.39193257e-05 + syst_JES_MJB_Stat5: 5.39378371e-06 + syst_JES_MJB_Stat6: 3.15993067e-05 + syst_JES_MJB_Stat7: 1.05999272e-06 + syst_JES_MJB_Stat8: 2.29744939e-06 + syst_JES_MJB_Stat9: 2.29658448e-06 + syst_JES_MJB_Threshold: 3.04669768e-04 + syst_JES_Pileup_MuOffset: 8.02796786e-04 + syst_JES_Pileup_NPVOffset: 9.15300796e-04 + syst_JES_Pileup_Pt_term: 2.48988489e-03 + syst_JES_PunchThrough_MC15: 7.45809927e-05 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.003708098708233102 - syst_JES_Zjet_MuScale: 0.00012454737281452385 - syst_JES_Zjet_MuSmearID: 1.682639747539562e-05 - syst_JES_Zjet_MuSmearMS: 0.00095261058150747 - syst_JES_Zjet_OOC: 0.0013799739562759873 - syst_JES_Zjet_Stat1: 2.6257998305278338e-05 - syst_JES_Zjet_Stat10: 1.6617877933117694e-05 - syst_JES_Zjet_Stat11: 2.7590934652526722e-05 - syst_JES_Zjet_Stat12: 0.0005407940527594585 - syst_JES_Zjet_Stat13: 0.0009015289013670055 - syst_JES_Zjet_Stat2: 4.5547817455944037e-07 - syst_JES_Zjet_Stat3: 4.386675160927693e-06 - syst_JES_Zjet_Stat4: 4.387393324914009e-06 - syst_JES_Zjet_Stat5: 5.3090072518315505e-06 - syst_JES_Zjet_Stat6: 3.1429880480205455e-05 - syst_JES_Zjet_Stat7: 5.20439304818535e-06 - syst_JES_Zjet_Stat8: 5.941450391108218e-06 - syst_JES_Zjet_Stat9: 4.126770500948654e-05 - syst_JES_Zjet_Veto: 0.00022126076809954356 - syst_JES_Zjet_dPhi: 0.00016995861496258436 + syst_JES_Zjet_MC: 3.70809871e-03 + syst_JES_Zjet_MuScale: 1.24547373e-04 + syst_JES_Zjet_MuSmearID: 1.68263975e-05 + syst_JES_Zjet_MuSmearMS: 9.52610582e-04 + syst_JES_Zjet_OOC: 1.37997396e-03 + syst_JES_Zjet_Stat1: 2.62579983e-05 + syst_JES_Zjet_Stat10: 1.66178779e-05 + syst_JES_Zjet_Stat11: 2.75909347e-05 + syst_JES_Zjet_Stat12: 5.40794053e-04 + syst_JES_Zjet_Stat13: 9.01528901e-04 + syst_JES_Zjet_Stat2: 4.55478175e-07 + syst_JES_Zjet_Stat3: 4.38667516e-06 + syst_JES_Zjet_Stat4: 4.38739332e-06 + syst_JES_Zjet_Stat5: 5.30900725e-06 + syst_JES_Zjet_Stat6: 3.14298805e-05 + syst_JES_Zjet_Stat7: 5.20439305e-06 + syst_JES_Zjet_Stat8: 5.94145039e-06 + syst_JES_Zjet_Stat9: 4.12677050e-05 + syst_JES_Zjet_Veto: 2.21260768e-04 + syst_JES_Zjet_dPhi: 1.69958615e-04 syst_PRW: 0.0 - syst_Unfolding_bias: 0.0006291 - syst_cleaning: 0.000880921040729531 + syst_Unfolding_bias: 6.29100000e-04 + syst_cleaning: 8.80921041e-04 syst_lumi: 0.003302 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 0.0003544349796507111 - syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0004832999379267496 - syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0009512108283656152 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 0.00015451713068459432 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.00039993552739785447 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0010816657570617645 -- stat: 0.0018249 - syst_JER_CROSS_CALIB_FORWARD: 2.317e-07 - syst_JER_NOISE_FORWARD: 7.126e-05 - syst_JER_NP0: 0.00016317330510840305 - syst_JER_NP1: 0.0015572882480453 - syst_JER_NP2: 3.906164791310654e-05 - syst_JER_NP3: 3.432693937347167e-05 - syst_JER_NP4: 3.2534115555828467e-05 - syst_JER_NP5: 2.599646274014986e-07 - syst_JER_NP6: 1.9066260120957122e-07 - syst_JER_NP7: 1.4017808129832674e-10 - syst_JER_NP8: 3.0816926529912097e-05 - syst_JES_EtaIntercalibration_Modelling: 0.004447944778209369 - syst_JES_EtaIntercalibration_NonClosure: 0.00040863079607391317 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 3.54434980e-04 + syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 4.83299938e-04 + syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 9.51210828e-04 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 1.54517131e-04 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 3.99935527e-04 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.08166576e-03 +- stat: 1.82490000e-03 + syst_JER_CROSS_CALIB_FORWARD: 2.31700000e-07 + syst_JER_NOISE_FORWARD: 7.12600000e-05 + syst_JER_NP0: 1.63173305e-04 + syst_JER_NP1: 1.55728825e-03 + syst_JER_NP2: 3.90616479e-05 + syst_JER_NP3: 3.43269394e-05 + syst_JER_NP4: 3.25341156e-05 + syst_JER_NP5: 2.59964627e-07 + syst_JER_NP6: 1.90662601e-07 + syst_JER_NP7: 1.40178081e-10 + syst_JER_NP8: 3.08169265e-05 + syst_JES_EtaIntercalibration_Modelling: 4.44794478e-03 + syst_JES_EtaIntercalibration_NonClosure: 4.08630796e-04 syst_JES_EtaIntercalibration_Stat0: 0.0 - syst_JES_EtaIntercalibration_Stat1: 4.517188506139632e-17 + syst_JES_EtaIntercalibration_Stat1: 4.51718851e-17 syst_JES_EtaIntercalibration_Stat10: 0.0 syst_JES_EtaIntercalibration_Stat100: 0.0 syst_JES_EtaIntercalibration_Stat101: 0.0 syst_JES_EtaIntercalibration_Stat102: 0.0 - syst_JES_EtaIntercalibration_Stat103: 4.255491834089216e-16 - syst_JES_EtaIntercalibration_Stat104: 2.2632400016173165e-09 - syst_JES_EtaIntercalibration_Stat105: 5.0739029356108104e-08 - syst_JES_EtaIntercalibration_Stat106: 2.7319645875267125e-08 - syst_JES_EtaIntercalibration_Stat107: 1.0608183256335647e-13 - syst_JES_EtaIntercalibration_Stat108: 2.346823066120452e-09 - syst_JES_EtaIntercalibration_Stat109: 6.564432724919953e-07 + syst_JES_EtaIntercalibration_Stat103: 4.25549183e-16 + syst_JES_EtaIntercalibration_Stat104: 2.26324000e-09 + syst_JES_EtaIntercalibration_Stat105: 5.07390294e-08 + syst_JES_EtaIntercalibration_Stat106: 2.73196459e-08 + syst_JES_EtaIntercalibration_Stat107: 1.06081833e-13 + syst_JES_EtaIntercalibration_Stat108: 2.34682307e-09 + syst_JES_EtaIntercalibration_Stat109: 6.56443272e-07 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 3.828016754143064e-06 - syst_JES_EtaIntercalibration_Stat111: 3.681325939114873e-08 - syst_JES_EtaIntercalibration_Stat112: 7.356861773257869e-09 + syst_JES_EtaIntercalibration_Stat110: 3.82801675e-06 + syst_JES_EtaIntercalibration_Stat111: 3.68132594e-08 + syst_JES_EtaIntercalibration_Stat112: 7.35686177e-09 syst_JES_EtaIntercalibration_Stat113: 0.0 syst_JES_EtaIntercalibration_Stat114: 0.0 syst_JES_EtaIntercalibration_Stat115: 0.0 syst_JES_EtaIntercalibration_Stat116: 0.0 syst_JES_EtaIntercalibration_Stat117: 0.0 - syst_JES_EtaIntercalibration_Stat118: 2.872606264352983e-16 - syst_JES_EtaIntercalibration_Stat119: 2.872606264352983e-16 + syst_JES_EtaIntercalibration_Stat118: 2.87260626e-16 + syst_JES_EtaIntercalibration_Stat119: 2.87260626e-16 syst_JES_EtaIntercalibration_Stat12: 0.0 syst_JES_EtaIntercalibration_Stat120: 0.0 syst_JES_EtaIntercalibration_Stat121: 0.0 syst_JES_EtaIntercalibration_Stat122: 0.0 - syst_JES_EtaIntercalibration_Stat123: 2.477364072961421e-12 - syst_JES_EtaIntercalibration_Stat124: 6.94261643762638e-08 - syst_JES_EtaIntercalibration_Stat125: 5.611712461450604e-06 - syst_JES_EtaIntercalibration_Stat126: 1.9448326071927112e-06 - syst_JES_EtaIntercalibration_Stat127: 5.16313467575658e-09 - syst_JES_EtaIntercalibration_Stat128: 2.6293468295377087e-06 - syst_JES_EtaIntercalibration_Stat129: 2.26656061026393e-05 + syst_JES_EtaIntercalibration_Stat123: 2.47736407e-12 + syst_JES_EtaIntercalibration_Stat124: 6.94261644e-08 + syst_JES_EtaIntercalibration_Stat125: 5.61171246e-06 + syst_JES_EtaIntercalibration_Stat126: 1.94483261e-06 + syst_JES_EtaIntercalibration_Stat127: 5.16313468e-09 + syst_JES_EtaIntercalibration_Stat128: 2.62934683e-06 + syst_JES_EtaIntercalibration_Stat129: 2.26656061e-05 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 1.732286629718073e-06 - syst_JES_EtaIntercalibration_Stat131: 1.2476467146892987e-08 + syst_JES_EtaIntercalibration_Stat130: 1.73228663e-06 + syst_JES_EtaIntercalibration_Stat131: 1.24764671e-08 syst_JES_EtaIntercalibration_Stat132: 0.0 syst_JES_EtaIntercalibration_Stat133: 0.0 syst_JES_EtaIntercalibration_Stat134: 0.0 syst_JES_EtaIntercalibration_Stat135: 0.0 syst_JES_EtaIntercalibration_Stat136: 0.0 - syst_JES_EtaIntercalibration_Stat137: 2.872606264352983e-16 - syst_JES_EtaIntercalibration_Stat138: 2.872606264352983e-16 - syst_JES_EtaIntercalibration_Stat139: 1.4505925513389347e-15 + syst_JES_EtaIntercalibration_Stat137: 2.87260626e-16 + syst_JES_EtaIntercalibration_Stat138: 2.87260626e-16 + syst_JES_EtaIntercalibration_Stat139: 1.45059255e-15 syst_JES_EtaIntercalibration_Stat14: 0.0 syst_JES_EtaIntercalibration_Stat140: 0.0 syst_JES_EtaIntercalibration_Stat141: 0.0 - syst_JES_EtaIntercalibration_Stat142: 2.159907307146999e-09 - syst_JES_EtaIntercalibration_Stat143: 8.140037146721139e-07 - syst_JES_EtaIntercalibration_Stat144: 2.300592695372217e-05 - syst_JES_EtaIntercalibration_Stat145: 2.342422606512326e-05 - syst_JES_EtaIntercalibration_Stat146: 1.7431153805758243e-05 - syst_JES_EtaIntercalibration_Stat147: 1.6035961048530892e-05 - syst_JES_EtaIntercalibration_Stat148: 2.108017077729685e-07 - syst_JES_EtaIntercalibration_Stat149: 1.3390016045080008e-08 + syst_JES_EtaIntercalibration_Stat142: 2.15990731e-09 + syst_JES_EtaIntercalibration_Stat143: 8.14003715e-07 + syst_JES_EtaIntercalibration_Stat144: 2.30059270e-05 + syst_JES_EtaIntercalibration_Stat145: 2.34242261e-05 + syst_JES_EtaIntercalibration_Stat146: 1.74311538e-05 + syst_JES_EtaIntercalibration_Stat147: 1.60359610e-05 + syst_JES_EtaIntercalibration_Stat148: 2.10801708e-07 + syst_JES_EtaIntercalibration_Stat149: 1.33900160e-08 syst_JES_EtaIntercalibration_Stat15: 0.0 syst_JES_EtaIntercalibration_Stat150: 0.0 syst_JES_EtaIntercalibration_Stat151: 0.0 @@ -59586,60 +59586,60 @@ bins: syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 2.872606264352983e-16 - syst_JES_EtaIntercalibration_Stat157: 1.4505925513389347e-15 + syst_JES_EtaIntercalibration_Stat156: 2.87260626e-16 + syst_JES_EtaIntercalibration_Stat157: 1.45059255e-15 syst_JES_EtaIntercalibration_Stat158: 0.0 syst_JES_EtaIntercalibration_Stat159: 0.0 - syst_JES_EtaIntercalibration_Stat16: 2.019571241625311e-18 - syst_JES_EtaIntercalibration_Stat160: 2.126142121112321e-09 - syst_JES_EtaIntercalibration_Stat161: 1.8096356622259632e-06 - syst_JES_EtaIntercalibration_Stat162: 2.705327786054769e-05 - syst_JES_EtaIntercalibration_Stat163: 1.663092416914947e-05 - syst_JES_EtaIntercalibration_Stat164: 0.00010363465886830524 - syst_JES_EtaIntercalibration_Stat165: 0.00010408075938904365 - syst_JES_EtaIntercalibration_Stat166: 6.175480790999191e-06 - syst_JES_EtaIntercalibration_Stat167: 1.3765285140526514e-08 + syst_JES_EtaIntercalibration_Stat16: 2.01957124e-18 + syst_JES_EtaIntercalibration_Stat160: 2.12614212e-09 + syst_JES_EtaIntercalibration_Stat161: 1.80963566e-06 + syst_JES_EtaIntercalibration_Stat162: 2.70532779e-05 + syst_JES_EtaIntercalibration_Stat163: 1.66309242e-05 + syst_JES_EtaIntercalibration_Stat164: 1.03634659e-04 + syst_JES_EtaIntercalibration_Stat165: 1.04080759e-04 + syst_JES_EtaIntercalibration_Stat166: 6.17548079e-06 + syst_JES_EtaIntercalibration_Stat167: 1.37652851e-08 syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 - syst_JES_EtaIntercalibration_Stat17: 1.1288169647910152e-17 + syst_JES_EtaIntercalibration_Stat17: 1.12881696e-17 syst_JES_EtaIntercalibration_Stat170: 0.0 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 - syst_JES_EtaIntercalibration_Stat174: 1.4505925513389347e-15 - syst_JES_EtaIntercalibration_Stat175: 1.4505925513389347e-15 + syst_JES_EtaIntercalibration_Stat174: 1.45059255e-15 + syst_JES_EtaIntercalibration_Stat175: 1.45059255e-15 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 - syst_JES_EtaIntercalibration_Stat178: 3.9695565243487843e-08 - syst_JES_EtaIntercalibration_Stat179: 3.937767204276429e-06 - syst_JES_EtaIntercalibration_Stat18: 5.837113670299731e-16 - syst_JES_EtaIntercalibration_Stat180: 0.00013223887930559604 - syst_JES_EtaIntercalibration_Stat181: 0.00011622563174704622 - syst_JES_EtaIntercalibration_Stat182: 0.0007508129643925976 - syst_JES_EtaIntercalibration_Stat183: 0.00011513830466009128 - syst_JES_EtaIntercalibration_Stat184: 1.192217159800205e-06 + syst_JES_EtaIntercalibration_Stat178: 3.96955652e-08 + syst_JES_EtaIntercalibration_Stat179: 3.93776720e-06 + syst_JES_EtaIntercalibration_Stat18: 5.83711367e-16 + syst_JES_EtaIntercalibration_Stat180: 1.32238879e-04 + syst_JES_EtaIntercalibration_Stat181: 1.16225632e-04 + syst_JES_EtaIntercalibration_Stat182: 7.50812964e-04 + syst_JES_EtaIntercalibration_Stat183: 1.15138305e-04 + syst_JES_EtaIntercalibration_Stat184: 1.19221716e-06 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 syst_JES_EtaIntercalibration_Stat187: 0.0 - syst_JES_EtaIntercalibration_Stat188: 4.670475002609478e-13 + syst_JES_EtaIntercalibration_Stat188: 4.67047500e-13 syst_JES_EtaIntercalibration_Stat189: 0.0 - syst_JES_EtaIntercalibration_Stat19: 3.8543264868845766e-16 + syst_JES_EtaIntercalibration_Stat19: 3.85432649e-16 syst_JES_EtaIntercalibration_Stat190: 0.0 - syst_JES_EtaIntercalibration_Stat191: 1.4505925513389347e-15 - syst_JES_EtaIntercalibration_Stat192: 1.4505925513389347e-15 + syst_JES_EtaIntercalibration_Stat191: 1.45059255e-15 + syst_JES_EtaIntercalibration_Stat192: 1.45059255e-15 syst_JES_EtaIntercalibration_Stat193: 0.0 syst_JES_EtaIntercalibration_Stat194: 0.0 - syst_JES_EtaIntercalibration_Stat195: 6.565897710899858e-07 - syst_JES_EtaIntercalibration_Stat196: 6.049709414509097e-05 - syst_JES_EtaIntercalibration_Stat197: 0.000576351912896973 - syst_JES_EtaIntercalibration_Stat198: 0.00015444022104037534 - syst_JES_EtaIntercalibration_Stat199: 2.7222240640011736e-06 - syst_JES_EtaIntercalibration_Stat2: 1.598060913005196e-15 + syst_JES_EtaIntercalibration_Stat195: 6.56589771e-07 + syst_JES_EtaIntercalibration_Stat196: 6.04970941e-05 + syst_JES_EtaIntercalibration_Stat197: 5.76351913e-04 + syst_JES_EtaIntercalibration_Stat198: 1.54440221e-04 + syst_JES_EtaIntercalibration_Stat199: 2.72222406e-06 + syst_JES_EtaIntercalibration_Stat2: 1.59806091e-15 syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 syst_JES_EtaIntercalibration_Stat201: 0.0 syst_JES_EtaIntercalibration_Stat202: 0.0 - syst_JES_EtaIntercalibration_Stat203: 4.670475002609478e-13 + syst_JES_EtaIntercalibration_Stat203: 4.67047500e-13 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 @@ -59647,9 +59647,9 @@ bins: syst_JES_EtaIntercalibration_Stat208: 0.0 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 3.313616952440339e-06 - syst_JES_EtaIntercalibration_Stat211: 9.151853200308669e-05 - syst_JES_EtaIntercalibration_Stat212: 6.977566678291222e-08 + syst_JES_EtaIntercalibration_Stat210: 3.31361695e-06 + syst_JES_EtaIntercalibration_Stat211: 9.15185320e-05 + syst_JES_EtaIntercalibration_Stat212: 6.97756668e-08 syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 syst_JES_EtaIntercalibration_Stat215: 0.0 @@ -59661,37 +59661,37 @@ bins: syst_JES_EtaIntercalibration_Stat220: 0.0 syst_JES_EtaIntercalibration_Stat221: 0.0 syst_JES_EtaIntercalibration_Stat222: 0.0 - syst_JES_EtaIntercalibration_Stat223: 3.371263691852063e-06 - syst_JES_EtaIntercalibration_Stat224: 7.617559451687923e-08 + syst_JES_EtaIntercalibration_Stat223: 3.37126369e-06 + syst_JES_EtaIntercalibration_Stat224: 7.61755945e-08 syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 syst_JES_EtaIntercalibration_Stat227: 0.0 syst_JES_EtaIntercalibration_Stat228: 0.0 syst_JES_EtaIntercalibration_Stat229: 0.0 - syst_JES_EtaIntercalibration_Stat23: 1.2641956699320717e-15 + syst_JES_EtaIntercalibration_Stat23: 1.26419567e-15 syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 syst_JES_EtaIntercalibration_Stat232: 0.0 syst_JES_EtaIntercalibration_Stat233: 0.0 syst_JES_EtaIntercalibration_Stat234: 0.0 - syst_JES_EtaIntercalibration_Stat235: 2.2274173385335763e-05 + syst_JES_EtaIntercalibration_Stat235: 2.22741734e-05 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 syst_JES_EtaIntercalibration_Stat239: 0.0 - syst_JES_EtaIntercalibration_Stat24: 6.185791198383599e-13 + syst_JES_EtaIntercalibration_Stat24: 6.18579120e-13 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 syst_JES_EtaIntercalibration_Stat243: 0.0 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 - syst_JES_EtaIntercalibration_Stat25: 7.718749593197516e-09 - syst_JES_EtaIntercalibration_Stat26: 2.436064339770196e-15 + syst_JES_EtaIntercalibration_Stat25: 7.71874959e-09 + syst_JES_EtaIntercalibration_Stat26: 2.43606434e-15 syst_JES_EtaIntercalibration_Stat27: 0.0 syst_JES_EtaIntercalibration_Stat28: 0.0 syst_JES_EtaIntercalibration_Stat29: 0.0 - syst_JES_EtaIntercalibration_Stat3: 2.1356013204715905e-15 + syst_JES_EtaIntercalibration_Stat3: 2.13560132e-15 syst_JES_EtaIntercalibration_Stat30: 0.0 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 @@ -59700,19 +59700,19 @@ bins: syst_JES_EtaIntercalibration_Stat35: 0.0 syst_JES_EtaIntercalibration_Stat36: 0.0 syst_JES_EtaIntercalibration_Stat37: 0.0 - syst_JES_EtaIntercalibration_Stat38: 2.019571241625311e-18 - syst_JES_EtaIntercalibration_Stat39: 9.28764182933429e-16 + syst_JES_EtaIntercalibration_Stat38: 2.01957124e-18 + syst_JES_EtaIntercalibration_Stat39: 9.28764183e-16 syst_JES_EtaIntercalibration_Stat4: 0.0 - syst_JES_EtaIntercalibration_Stat40: 4.4936983376724337e-13 - syst_JES_EtaIntercalibration_Stat41: 7.357417532667288e-14 - syst_JES_EtaIntercalibration_Stat42: 5.335582512715927e-17 + syst_JES_EtaIntercalibration_Stat40: 4.49369834e-13 + syst_JES_EtaIntercalibration_Stat41: 7.35741753e-14 + syst_JES_EtaIntercalibration_Stat42: 5.33558251e-17 syst_JES_EtaIntercalibration_Stat43: 0.0 - syst_JES_EtaIntercalibration_Stat44: 1.4791713896638215e-16 - syst_JES_EtaIntercalibration_Stat45: 7.029671471697664e-15 - syst_JES_EtaIntercalibration_Stat46: 2.2313036864640366e-09 - syst_JES_EtaIntercalibration_Stat47: 7.680904084364029e-09 - syst_JES_EtaIntercalibration_Stat48: 3.0346071026576074e-13 - syst_JES_EtaIntercalibration_Stat49: 9.705546700212203e-17 + syst_JES_EtaIntercalibration_Stat44: 1.47917139e-16 + syst_JES_EtaIntercalibration_Stat45: 7.02967147e-15 + syst_JES_EtaIntercalibration_Stat46: 2.23130369e-09 + syst_JES_EtaIntercalibration_Stat47: 7.68090408e-09 + syst_JES_EtaIntercalibration_Stat48: 3.03460710e-13 + syst_JES_EtaIntercalibration_Stat49: 9.70554670e-17 syst_JES_EtaIntercalibration_Stat5: 0.0 syst_JES_EtaIntercalibration_Stat50: 0.0 syst_JES_EtaIntercalibration_Stat51: 0.0 @@ -59723,21 +59723,21 @@ bins: syst_JES_EtaIntercalibration_Stat56: 0.0 syst_JES_EtaIntercalibration_Stat57: 0.0 syst_JES_EtaIntercalibration_Stat58: 0.0 - syst_JES_EtaIntercalibration_Stat59: 2.019571241625311e-18 + syst_JES_EtaIntercalibration_Stat59: 2.01957124e-18 syst_JES_EtaIntercalibration_Stat6: 0.0 - syst_JES_EtaIntercalibration_Stat60: 8.727312530212265e-18 - syst_JES_EtaIntercalibration_Stat61: 2.592606231188994e-13 - syst_JES_EtaIntercalibration_Stat62: 1.7087754913972755e-08 - syst_JES_EtaIntercalibration_Stat63: 1.6713088246939882e-12 - syst_JES_EtaIntercalibration_Stat64: 6.207409846304656e-16 + syst_JES_EtaIntercalibration_Stat60: 8.72731253e-18 + syst_JES_EtaIntercalibration_Stat61: 2.59260623e-13 + syst_JES_EtaIntercalibration_Stat62: 1.70877549e-08 + syst_JES_EtaIntercalibration_Stat63: 1.67130882e-12 + syst_JES_EtaIntercalibration_Stat64: 6.20740985e-16 syst_JES_EtaIntercalibration_Stat65: 0.0 - syst_JES_EtaIntercalibration_Stat66: 1.4791713896638215e-16 - syst_JES_EtaIntercalibration_Stat67: 7.537643729972915e-13 - syst_JES_EtaIntercalibration_Stat68: 2.3867795293396917e-08 - syst_JES_EtaIntercalibration_Stat69: 2.441293188019825e-08 + syst_JES_EtaIntercalibration_Stat66: 1.47917139e-16 + syst_JES_EtaIntercalibration_Stat67: 7.53764373e-13 + syst_JES_EtaIntercalibration_Stat68: 2.38677953e-08 + syst_JES_EtaIntercalibration_Stat69: 2.44129319e-08 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 7.71383301917244e-09 - syst_JES_EtaIntercalibration_Stat71: 1.9497665365050764e-15 + syst_JES_EtaIntercalibration_Stat70: 7.71383302e-09 + syst_JES_EtaIntercalibration_Stat71: 1.94976654e-15 syst_JES_EtaIntercalibration_Stat72: 0.0 syst_JES_EtaIntercalibration_Stat73: 0.0 syst_JES_EtaIntercalibration_Stat74: 0.0 @@ -59748,19 +59748,19 @@ bins: syst_JES_EtaIntercalibration_Stat79: 0.0 syst_JES_EtaIntercalibration_Stat8: 0.0 syst_JES_EtaIntercalibration_Stat80: 0.0 - syst_JES_EtaIntercalibration_Stat81: 2.019571241625311e-18 - syst_JES_EtaIntercalibration_Stat82: 1.7254618019533205e-16 - syst_JES_EtaIntercalibration_Stat83: 3.478224978347433e-12 - syst_JES_EtaIntercalibration_Stat84: 2.7020149425937672e-08 - syst_JES_EtaIntercalibration_Stat85: 2.653568101382552e-08 - syst_JES_EtaIntercalibration_Stat86: 6.810583602012386e-14 + syst_JES_EtaIntercalibration_Stat81: 2.01957124e-18 + syst_JES_EtaIntercalibration_Stat82: 1.72546180e-16 + syst_JES_EtaIntercalibration_Stat83: 3.47822498e-12 + syst_JES_EtaIntercalibration_Stat84: 2.70201494e-08 + syst_JES_EtaIntercalibration_Stat85: 2.65356810e-08 + syst_JES_EtaIntercalibration_Stat86: 6.81058360e-14 syst_JES_EtaIntercalibration_Stat87: 0.0 - syst_JES_EtaIntercalibration_Stat88: 2.4617680881837755e-12 - syst_JES_EtaIntercalibration_Stat89: 2.4524419024311258e-08 + syst_JES_EtaIntercalibration_Stat88: 2.46176809e-12 + syst_JES_EtaIntercalibration_Stat89: 2.45244190e-08 syst_JES_EtaIntercalibration_Stat9: 0.0 - syst_JES_EtaIntercalibration_Stat90: 2.968797430724266e-08 - syst_JES_EtaIntercalibration_Stat91: 7.815199674613246e-09 - syst_JES_EtaIntercalibration_Stat92: 2.21893547510963e-15 + syst_JES_EtaIntercalibration_Stat90: 2.96879743e-08 + syst_JES_EtaIntercalibration_Stat91: 7.81519967e-09 + syst_JES_EtaIntercalibration_Stat92: 2.21893548e-15 syst_JES_EtaIntercalibration_Stat93: 0.0 syst_JES_EtaIntercalibration_Stat94: 0.0 syst_JES_EtaIntercalibration_Stat95: 0.0 @@ -59768,159 +59768,159 @@ bins: syst_JES_EtaIntercalibration_Stat97: 0.0 syst_JES_EtaIntercalibration_Stat98: 0.0 syst_JES_EtaIntercalibration_Stat99: 0.0 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0004857698709265531 - syst_JES_Flavour_Comp: 0.0017719150656845832 - syst_JES_Gjet_Generator: 0.002597139195345525 - syst_JES_Gjet_OOC: 0.0020953507462952354 - syst_JES_Gjet_Purity: 0.0004854266988949001 - syst_JES_Gjet_Stat1: 1.8893115320666414e-05 - syst_JES_Gjet_Stat10: 2.4080234114310436e-06 - syst_JES_Gjet_Stat11: 2.894918435811275e-05 - syst_JES_Gjet_Stat12: 0.00019459272853835006 - syst_JES_Gjet_Stat13: 0.0004858058871607054 - syst_JES_Gjet_Stat14: 0.0006285260376468106 - syst_JES_Gjet_Stat15: 3.340323749279402e-05 - syst_JES_Gjet_Stat2: 6.760565564359243e-06 - syst_JES_Gjet_Stat3: 7.427311895968823e-06 - syst_JES_Gjet_Stat4: 7.407691340761979e-06 - syst_JES_Gjet_Stat5: 7.309401617095616e-06 - syst_JES_Gjet_Stat6: 1.4784369225891919e-05 - syst_JES_Gjet_Stat7: 5.519252123250033e-06 - syst_JES_Gjet_Stat8: 1.4763718624723243e-05 - syst_JES_Gjet_Stat9: 7.371055148348844e-06 - syst_JES_Gjet_Veto: 0.0017776869100041212 - syst_JES_Gjet_dPhi: 9.741350368403756e-05 - syst_JES_LArESZee: 0.003911145484381782 - syst_JES_LArEsmear: 0.00021108800889676325 - syst_JES_LAr_JVT: 0.00032071304931355696 - syst_JES_MJB_Alpha: 1.4250749032945604e-05 - syst_JES_MJB_Asym: 0.00015030473004865814 - syst_JES_MJB_Beta: 4.786017416130033e-06 - syst_JES_MJB_Stat1: 7.442606884015843e-07 - syst_JES_MJB_Stat10: 6.114356627438409e-07 - syst_JES_MJB_Stat11: 6.263961745572845e-06 - syst_JES_MJB_Stat12: 3.0362850656682416e-06 - syst_JES_MJB_Stat13: 1.9165142185749625e-06 + syst_JES_EtaIntercalibration_TotalStat_MJB: 4.85769871e-04 + syst_JES_Flavour_Comp: 1.77191507e-03 + syst_JES_Gjet_Generator: 2.59713920e-03 + syst_JES_Gjet_OOC: 2.09535075e-03 + syst_JES_Gjet_Purity: 4.85426699e-04 + syst_JES_Gjet_Stat1: 1.88931153e-05 + syst_JES_Gjet_Stat10: 2.40802341e-06 + syst_JES_Gjet_Stat11: 2.89491844e-05 + syst_JES_Gjet_Stat12: 1.94592729e-04 + syst_JES_Gjet_Stat13: 4.85805887e-04 + syst_JES_Gjet_Stat14: 6.28526038e-04 + syst_JES_Gjet_Stat15: 3.34032375e-05 + syst_JES_Gjet_Stat2: 6.76056556e-06 + syst_JES_Gjet_Stat3: 7.42731190e-06 + syst_JES_Gjet_Stat4: 7.40769134e-06 + syst_JES_Gjet_Stat5: 7.30940162e-06 + syst_JES_Gjet_Stat6: 1.47843692e-05 + syst_JES_Gjet_Stat7: 5.51925212e-06 + syst_JES_Gjet_Stat8: 1.47637186e-05 + syst_JES_Gjet_Stat9: 7.37105515e-06 + syst_JES_Gjet_Veto: 1.77768691e-03 + syst_JES_Gjet_dPhi: 9.74135037e-05 + syst_JES_LArESZee: 3.91114548e-03 + syst_JES_LArEsmear: 2.11088009e-04 + syst_JES_LAr_JVT: 3.20713049e-04 + syst_JES_MJB_Alpha: 1.42507490e-05 + syst_JES_MJB_Asym: 1.50304730e-04 + syst_JES_MJB_Beta: 4.78601742e-06 + syst_JES_MJB_Stat1: 7.44260688e-07 + syst_JES_MJB_Stat10: 6.11435663e-07 + syst_JES_MJB_Stat11: 6.26396175e-06 + syst_JES_MJB_Stat12: 3.03628507e-06 + syst_JES_MJB_Stat13: 1.91651422e-06 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 1.848398766500346e-05 - syst_JES_MJB_Stat3: 1.804752614626171e-05 - syst_JES_MJB_Stat4: 1.5057463183003304e-05 - syst_JES_MJB_Stat5: 1.491683624524651e-05 - syst_JES_MJB_Stat6: 1.5340309536886796e-05 - syst_JES_MJB_Stat7: 3.946084895184086e-06 - syst_JES_MJB_Stat8: 4.729026213257335e-06 - syst_JES_MJB_Stat9: 4.729026213257335e-06 - syst_JES_MJB_Threshold: 0.0001617011121637696 - syst_JES_Pileup_MuOffset: 0.00034831831347203096 - syst_JES_Pileup_NPVOffset: 0.0003645995714479105 - syst_JES_Pileup_Pt_term: 0.001041360421516009 - syst_JES_PunchThrough_MC15: 5.1984801625090386e-05 + syst_JES_MJB_Stat2: 1.84839877e-05 + syst_JES_MJB_Stat3: 1.80475261e-05 + syst_JES_MJB_Stat4: 1.50574632e-05 + syst_JES_MJB_Stat5: 1.49168362e-05 + syst_JES_MJB_Stat6: 1.53403095e-05 + syst_JES_MJB_Stat7: 3.94608490e-06 + syst_JES_MJB_Stat8: 4.72902621e-06 + syst_JES_MJB_Stat9: 4.72902621e-06 + syst_JES_MJB_Threshold: 1.61701112e-04 + syst_JES_Pileup_MuOffset: 3.48318313e-04 + syst_JES_Pileup_NPVOffset: 3.64599571e-04 + syst_JES_Pileup_Pt_term: 1.04136042e-03 + syst_JES_PunchThrough_MC15: 5.19848016e-05 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.001495416218816688 - syst_JES_Zjet_MuScale: 7.255802689399706e-05 - syst_JES_Zjet_MuSmearID: 1.4256250164401578e-05 - syst_JES_Zjet_MuSmearMS: 0.0003348528632100971 - syst_JES_Zjet_OOC: 0.0006300309040039227 - syst_JES_Zjet_Stat1: 6.173941447730128e-06 - syst_JES_Zjet_Stat10: 2.787262513650266e-06 - syst_JES_Zjet_Stat11: 3.1653213107044917e-06 - syst_JES_Zjet_Stat12: 0.0001780164792231326 - syst_JES_Zjet_Stat13: 0.000381822108710326 - syst_JES_Zjet_Stat2: 1.5963563887804002e-07 - syst_JES_Zjet_Stat3: 1.407096089496023e-05 - syst_JES_Zjet_Stat4: 1.4071022406616372e-05 - syst_JES_Zjet_Stat5: 1.4749699186085118e-05 - syst_JES_Zjet_Stat6: 1.971660931803438e-06 - syst_JES_Zjet_Stat7: 1.477898788821481e-05 - syst_JES_Zjet_Stat8: 1.4796501859138868e-05 - syst_JES_Zjet_Stat9: 6.904623577719498e-06 - syst_JES_Zjet_Veto: 9.2431485301276e-05 - syst_JES_Zjet_dPhi: 8.584386385030673e-05 + syst_JES_Zjet_MC: 1.49541622e-03 + syst_JES_Zjet_MuScale: 7.25580269e-05 + syst_JES_Zjet_MuSmearID: 1.42562502e-05 + syst_JES_Zjet_MuSmearMS: 3.34852863e-04 + syst_JES_Zjet_OOC: 6.30030904e-04 + syst_JES_Zjet_Stat1: 6.17394145e-06 + syst_JES_Zjet_Stat10: 2.78726251e-06 + syst_JES_Zjet_Stat11: 3.16532131e-06 + syst_JES_Zjet_Stat12: 1.78016479e-04 + syst_JES_Zjet_Stat13: 3.81822109e-04 + syst_JES_Zjet_Stat2: 1.59635639e-07 + syst_JES_Zjet_Stat3: 1.40709609e-05 + syst_JES_Zjet_Stat4: 1.40710224e-05 + syst_JES_Zjet_Stat5: 1.47496992e-05 + syst_JES_Zjet_Stat6: 1.97166093e-06 + syst_JES_Zjet_Stat7: 1.47789879e-05 + syst_JES_Zjet_Stat8: 1.47965019e-05 + syst_JES_Zjet_Stat9: 6.90462358e-06 + syst_JES_Zjet_Veto: 9.24314853e-05 + syst_JES_Zjet_dPhi: 8.58438639e-05 syst_PRW: 0.0 - syst_Unfolding_bias: 0.0002619 - syst_cleaning: 0.0003750756023790404 - syst_lumi: 0.0013666 + syst_Unfolding_bias: 2.61900000e-04 + syst_cleaning: 3.75075602e-04 + syst_lumi: 1.36660000e-03 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 3.270494714871131e-05 - syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.00017736090324533193 - syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0004424813075147921 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 1.4262921115606017e-05 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.00015227490765060405 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0005168691976699714 -- stat: 0.0008558 - syst_JER_CROSS_CALIB_FORWARD: 5.095e-08 - syst_JER_NOISE_FORWARD: 9.919e-06 - syst_JER_NP0: 3.100085321406493e-05 - syst_JER_NP1: 0.0007357917827075809 - syst_JER_NP2: 6.287528857593816e-06 - syst_JER_NP3: 4.832279275869721e-06 - syst_JER_NP4: 4.60533090559191e-06 - syst_JER_NP5: 2.149676894326215e-08 - syst_JER_NP6: 1.5776332748772766e-08 - syst_JER_NP7: 1.083181929893777e-11 - syst_JER_NP8: 4.391799623807421e-06 - syst_JES_EtaIntercalibration_Modelling: 0.0020311895529467453 - syst_JES_EtaIntercalibration_NonClosure: 0.0008857135541471634 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 3.27049471e-05 + syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.77360903e-04 + syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 4.42481308e-04 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 1.42629211e-05 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 1.52274908e-04 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 5.16869198e-04 +- stat: 8.55800000e-04 + syst_JER_CROSS_CALIB_FORWARD: 5.09500000e-08 + syst_JER_NOISE_FORWARD: 9.91900000e-06 + syst_JER_NP0: 3.10008532e-05 + syst_JER_NP1: 7.35791783e-04 + syst_JER_NP2: 6.28752886e-06 + syst_JER_NP3: 4.83227928e-06 + syst_JER_NP4: 4.60533091e-06 + syst_JER_NP5: 2.14967689e-08 + syst_JER_NP6: 1.57763327e-08 + syst_JER_NP7: 1.08318193e-11 + syst_JER_NP8: 4.39179962e-06 + syst_JES_EtaIntercalibration_Modelling: 2.03118955e-03 + syst_JES_EtaIntercalibration_NonClosure: 8.85713554e-04 syst_JES_EtaIntercalibration_Stat0: 0.0 - syst_JES_EtaIntercalibration_Stat1: 4.136137328474479e-18 + syst_JES_EtaIntercalibration_Stat1: 4.13613733e-18 syst_JES_EtaIntercalibration_Stat10: 0.0 syst_JES_EtaIntercalibration_Stat100: 0.0 syst_JES_EtaIntercalibration_Stat101: 0.0 syst_JES_EtaIntercalibration_Stat102: 0.0 - syst_JES_EtaIntercalibration_Stat103: 3.67032232916947e-17 - syst_JES_EtaIntercalibration_Stat104: 5.027049791721582e-10 - syst_JES_EtaIntercalibration_Stat105: 6.427805206094845e-09 - syst_JES_EtaIntercalibration_Stat106: 3.1994797697242906e-09 - syst_JES_EtaIntercalibration_Stat107: 8.501340306092917e-15 - syst_JES_EtaIntercalibration_Stat108: 2.3699912051102636e-10 - syst_JES_EtaIntercalibration_Stat109: 1.361161239530424e-07 + syst_JES_EtaIntercalibration_Stat103: 3.67032233e-17 + syst_JES_EtaIntercalibration_Stat104: 5.02704979e-10 + syst_JES_EtaIntercalibration_Stat105: 6.42780521e-09 + syst_JES_EtaIntercalibration_Stat106: 3.19947977e-09 + syst_JES_EtaIntercalibration_Stat107: 8.50134031e-15 + syst_JES_EtaIntercalibration_Stat108: 2.36999121e-10 + syst_JES_EtaIntercalibration_Stat109: 1.36116124e-07 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 3.904824372321373e-06 - syst_JES_EtaIntercalibration_Stat111: 4.242272121163375e-09 - syst_JES_EtaIntercalibration_Stat112: 7.36812531974493e-10 + syst_JES_EtaIntercalibration_Stat110: 3.90482437e-06 + syst_JES_EtaIntercalibration_Stat111: 4.24227212e-09 + syst_JES_EtaIntercalibration_Stat112: 7.36812532e-10 syst_JES_EtaIntercalibration_Stat113: 0.0 syst_JES_EtaIntercalibration_Stat114: 0.0 syst_JES_EtaIntercalibration_Stat115: 0.0 syst_JES_EtaIntercalibration_Stat116: 0.0 syst_JES_EtaIntercalibration_Stat117: 0.0 - syst_JES_EtaIntercalibration_Stat118: 2.4517179181137456e-17 - syst_JES_EtaIntercalibration_Stat119: 2.4517179181137456e-17 + syst_JES_EtaIntercalibration_Stat118: 2.45171792e-17 + syst_JES_EtaIntercalibration_Stat119: 2.45171792e-17 syst_JES_EtaIntercalibration_Stat12: 0.0 syst_JES_EtaIntercalibration_Stat120: 0.0 syst_JES_EtaIntercalibration_Stat121: 0.0 syst_JES_EtaIntercalibration_Stat122: 0.0 - syst_JES_EtaIntercalibration_Stat123: 1.910927384805608e-13 - syst_JES_EtaIntercalibration_Stat124: 2.126440689861817e-08 - syst_JES_EtaIntercalibration_Stat125: 9.720040264834298e-07 - syst_JES_EtaIntercalibration_Stat126: 5.46767701199513e-07 - syst_JES_EtaIntercalibration_Stat127: 5.238882425670574e-10 - syst_JES_EtaIntercalibration_Stat128: 3.533599607694681e-06 - syst_JES_EtaIntercalibration_Stat129: 9.204695377903607e-06 + syst_JES_EtaIntercalibration_Stat123: 1.91092738e-13 + syst_JES_EtaIntercalibration_Stat124: 2.12644069e-08 + syst_JES_EtaIntercalibration_Stat125: 9.72004026e-07 + syst_JES_EtaIntercalibration_Stat126: 5.46767701e-07 + syst_JES_EtaIntercalibration_Stat127: 5.23888243e-10 + syst_JES_EtaIntercalibration_Stat128: 3.53359961e-06 + syst_JES_EtaIntercalibration_Stat129: 9.20469538e-06 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 1.3535225182833126e-06 - syst_JES_EtaIntercalibration_Stat131: 1.4692927232994623e-09 + syst_JES_EtaIntercalibration_Stat130: 1.35352252e-06 + syst_JES_EtaIntercalibration_Stat131: 1.46929272e-09 syst_JES_EtaIntercalibration_Stat132: 0.0 syst_JES_EtaIntercalibration_Stat133: 0.0 syst_JES_EtaIntercalibration_Stat134: 0.0 syst_JES_EtaIntercalibration_Stat135: 0.0 syst_JES_EtaIntercalibration_Stat136: 0.0 - syst_JES_EtaIntercalibration_Stat137: 2.4517179181137456e-17 - syst_JES_EtaIntercalibration_Stat138: 2.4517179181137456e-17 - syst_JES_EtaIntercalibration_Stat139: 1.2626650387177115e-16 + syst_JES_EtaIntercalibration_Stat137: 2.45171792e-17 + syst_JES_EtaIntercalibration_Stat138: 2.45171792e-17 + syst_JES_EtaIntercalibration_Stat139: 1.26266504e-16 syst_JES_EtaIntercalibration_Stat14: 0.0 syst_JES_EtaIntercalibration_Stat140: 0.0 syst_JES_EtaIntercalibration_Stat141: 0.0 - syst_JES_EtaIntercalibration_Stat142: 4.916655178518014e-10 - syst_JES_EtaIntercalibration_Stat143: 3.6193051277144345e-06 - syst_JES_EtaIntercalibration_Stat144: 8.97052774367261e-06 - syst_JES_EtaIntercalibration_Stat145: 1.3601253417240635e-05 - syst_JES_EtaIntercalibration_Stat146: 6.66940152862309e-06 - syst_JES_EtaIntercalibration_Stat147: 7.410662027612648e-06 - syst_JES_EtaIntercalibration_Stat148: 1.752394384463726e-06 - syst_JES_EtaIntercalibration_Stat149: 1.551043040663524e-09 + syst_JES_EtaIntercalibration_Stat142: 4.91665518e-10 + syst_JES_EtaIntercalibration_Stat143: 3.61930513e-06 + syst_JES_EtaIntercalibration_Stat144: 8.97052774e-06 + syst_JES_EtaIntercalibration_Stat145: 1.36012534e-05 + syst_JES_EtaIntercalibration_Stat146: 6.66940153e-06 + syst_JES_EtaIntercalibration_Stat147: 7.41066203e-06 + syst_JES_EtaIntercalibration_Stat148: 1.75239438e-06 + syst_JES_EtaIntercalibration_Stat149: 1.55104304e-09 syst_JES_EtaIntercalibration_Stat15: 0.0 syst_JES_EtaIntercalibration_Stat150: 0.0 syst_JES_EtaIntercalibration_Stat151: 0.0 @@ -59928,60 +59928,60 @@ bins: syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 2.4517179181137456e-17 - syst_JES_EtaIntercalibration_Stat157: 1.2626650387177115e-16 + syst_JES_EtaIntercalibration_Stat156: 2.45171792e-17 + syst_JES_EtaIntercalibration_Stat157: 1.26266504e-16 syst_JES_EtaIntercalibration_Stat158: 0.0 syst_JES_EtaIntercalibration_Stat159: 0.0 - syst_JES_EtaIntercalibration_Stat16: 2.244737846609265e-19 - syst_JES_EtaIntercalibration_Stat160: 4.886351500825207e-10 - syst_JES_EtaIntercalibration_Stat161: 4.364330733342743e-06 - syst_JES_EtaIntercalibration_Stat162: 1.4928155503946229e-05 - syst_JES_EtaIntercalibration_Stat163: 2.3387733259125393e-05 - syst_JES_EtaIntercalibration_Stat164: 2.8690723357036506e-05 - syst_JES_EtaIntercalibration_Stat165: 4.5765852717938076e-05 - syst_JES_EtaIntercalibration_Stat166: 2.423448111678895e-06 - syst_JES_EtaIntercalibration_Stat167: 1.5846293951583758e-09 + syst_JES_EtaIntercalibration_Stat16: 2.24473785e-19 + syst_JES_EtaIntercalibration_Stat160: 4.88635150e-10 + syst_JES_EtaIntercalibration_Stat161: 4.36433073e-06 + syst_JES_EtaIntercalibration_Stat162: 1.49281555e-05 + syst_JES_EtaIntercalibration_Stat163: 2.33877333e-05 + syst_JES_EtaIntercalibration_Stat164: 2.86907234e-05 + syst_JES_EtaIntercalibration_Stat165: 4.57658527e-05 + syst_JES_EtaIntercalibration_Stat166: 2.42344811e-06 + syst_JES_EtaIntercalibration_Stat167: 1.58462940e-09 syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 - syst_JES_EtaIntercalibration_Stat17: 1.1848050219339889e-18 + syst_JES_EtaIntercalibration_Stat17: 1.18480502e-18 syst_JES_EtaIntercalibration_Stat170: 0.0 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 - syst_JES_EtaIntercalibration_Stat174: 1.2626650387177115e-16 - syst_JES_EtaIntercalibration_Stat175: 1.2626650387177115e-16 + syst_JES_EtaIntercalibration_Stat174: 1.26266504e-16 + syst_JES_EtaIntercalibration_Stat175: 1.26266504e-16 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 - syst_JES_EtaIntercalibration_Stat178: 1.9606991578261057e-08 - syst_JES_EtaIntercalibration_Stat179: 6.047886516792457e-06 - syst_JES_EtaIntercalibration_Stat18: 5.319654500059191e-17 - syst_JES_EtaIntercalibration_Stat180: 5.2517727245188365e-05 - syst_JES_EtaIntercalibration_Stat181: 6.196237981226996e-05 - syst_JES_EtaIntercalibration_Stat182: 0.0003232182350982073 - syst_JES_EtaIntercalibration_Stat183: 5.260958182688777e-05 - syst_JES_EtaIntercalibration_Stat184: 3.294555356795394e-07 + syst_JES_EtaIntercalibration_Stat178: 1.96069916e-08 + syst_JES_EtaIntercalibration_Stat179: 6.04788652e-06 + syst_JES_EtaIntercalibration_Stat18: 5.31965450e-17 + syst_JES_EtaIntercalibration_Stat180: 5.25177272e-05 + syst_JES_EtaIntercalibration_Stat181: 6.19623798e-05 + syst_JES_EtaIntercalibration_Stat182: 3.23218235e-04 + syst_JES_EtaIntercalibration_Stat183: 5.26095818e-05 + syst_JES_EtaIntercalibration_Stat184: 3.29455536e-07 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 syst_JES_EtaIntercalibration_Stat187: 0.0 - syst_JES_EtaIntercalibration_Stat188: 3.588809273282713e-14 + syst_JES_EtaIntercalibration_Stat188: 3.58880927e-14 syst_JES_EtaIntercalibration_Stat189: 0.0 - syst_JES_EtaIntercalibration_Stat19: 3.4307402524819625e-17 + syst_JES_EtaIntercalibration_Stat19: 3.43074025e-17 syst_JES_EtaIntercalibration_Stat190: 0.0 - syst_JES_EtaIntercalibration_Stat191: 1.2626650387177115e-16 - syst_JES_EtaIntercalibration_Stat192: 1.2626650387177115e-16 + syst_JES_EtaIntercalibration_Stat191: 1.26266504e-16 + syst_JES_EtaIntercalibration_Stat192: 1.26266504e-16 syst_JES_EtaIntercalibration_Stat193: 0.0 syst_JES_EtaIntercalibration_Stat194: 0.0 - syst_JES_EtaIntercalibration_Stat195: 4.217786161898207e-07 - syst_JES_EtaIntercalibration_Stat196: 3.220188374536495e-05 - syst_JES_EtaIntercalibration_Stat197: 0.0002802876736497701 - syst_JES_EtaIntercalibration_Stat198: 8.231149661499298e-05 - syst_JES_EtaIntercalibration_Stat199: 1.2618271385526593e-06 - syst_JES_EtaIntercalibration_Stat2: 1.3658404177282206e-16 + syst_JES_EtaIntercalibration_Stat195: 4.21778616e-07 + syst_JES_EtaIntercalibration_Stat196: 3.22018837e-05 + syst_JES_EtaIntercalibration_Stat197: 2.80287674e-04 + syst_JES_EtaIntercalibration_Stat198: 8.23114966e-05 + syst_JES_EtaIntercalibration_Stat199: 1.26182714e-06 + syst_JES_EtaIntercalibration_Stat2: 1.36584042e-16 syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 syst_JES_EtaIntercalibration_Stat201: 0.0 syst_JES_EtaIntercalibration_Stat202: 0.0 - syst_JES_EtaIntercalibration_Stat203: 3.588809273282713e-14 + syst_JES_EtaIntercalibration_Stat203: 3.58880927e-14 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 @@ -59989,9 +59989,9 @@ bins: syst_JES_EtaIntercalibration_Stat208: 0.0 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 4.806580794252293e-06 - syst_JES_EtaIntercalibration_Stat211: 6.819617217996916e-05 - syst_JES_EtaIntercalibration_Stat212: 1.7909405350262191e-06 + syst_JES_EtaIntercalibration_Stat210: 4.80658079e-06 + syst_JES_EtaIntercalibration_Stat211: 6.81961722e-05 + syst_JES_EtaIntercalibration_Stat212: 1.79094054e-06 syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 syst_JES_EtaIntercalibration_Stat215: 0.0 @@ -60003,37 +60003,37 @@ bins: syst_JES_EtaIntercalibration_Stat220: 0.0 syst_JES_EtaIntercalibration_Stat221: 0.0 syst_JES_EtaIntercalibration_Stat222: 0.0 - syst_JES_EtaIntercalibration_Stat223: 4.841948032558797e-06 - syst_JES_EtaIntercalibration_Stat224: 1.7935386112375727e-06 + syst_JES_EtaIntercalibration_Stat223: 4.84194803e-06 + syst_JES_EtaIntercalibration_Stat224: 1.79353861e-06 syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 syst_JES_EtaIntercalibration_Stat227: 0.0 syst_JES_EtaIntercalibration_Stat228: 0.0 syst_JES_EtaIntercalibration_Stat229: 0.0 - syst_JES_EtaIntercalibration_Stat23: 1.0787033452599467e-16 + syst_JES_EtaIntercalibration_Stat23: 1.07870335e-16 syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 syst_JES_EtaIntercalibration_Stat232: 0.0 syst_JES_EtaIntercalibration_Stat233: 0.0 syst_JES_EtaIntercalibration_Stat234: 0.0 - syst_JES_EtaIntercalibration_Stat235: 3.8529470214369676e-06 + syst_JES_EtaIntercalibration_Stat235: 3.85294702e-06 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 syst_JES_EtaIntercalibration_Stat239: 0.0 - syst_JES_EtaIntercalibration_Stat24: 4.814018565606078e-14 + syst_JES_EtaIntercalibration_Stat24: 4.81401857e-14 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 syst_JES_EtaIntercalibration_Stat243: 0.0 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 - syst_JES_EtaIntercalibration_Stat25: 7.727439807985577e-10 - syst_JES_EtaIntercalibration_Stat26: 2.1649695627190699e-16 + syst_JES_EtaIntercalibration_Stat25: 7.72743981e-10 + syst_JES_EtaIntercalibration_Stat26: 2.16496956e-16 syst_JES_EtaIntercalibration_Stat27: 0.0 syst_JES_EtaIntercalibration_Stat28: 0.0 syst_JES_EtaIntercalibration_Stat29: 0.0 - syst_JES_EtaIntercalibration_Stat3: 1.890658765483608e-16 + syst_JES_EtaIntercalibration_Stat3: 1.89065877e-16 syst_JES_EtaIntercalibration_Stat30: 0.0 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 @@ -60042,19 +60042,19 @@ bins: syst_JES_EtaIntercalibration_Stat35: 0.0 syst_JES_EtaIntercalibration_Stat36: 0.0 syst_JES_EtaIntercalibration_Stat37: 0.0 - syst_JES_EtaIntercalibration_Stat38: 2.244737846609265e-19 - syst_JES_EtaIntercalibration_Stat39: 8.35996726967277e-17 + syst_JES_EtaIntercalibration_Stat38: 2.24473785e-19 + syst_JES_EtaIntercalibration_Stat39: 8.35996727e-17 syst_JES_EtaIntercalibration_Stat4: 0.0 - syst_JES_EtaIntercalibration_Stat40: 3.5044615492255014e-14 - syst_JES_EtaIntercalibration_Stat41: 5.919317760519366e-15 - syst_JES_EtaIntercalibration_Stat42: 5.065382586735182e-18 + syst_JES_EtaIntercalibration_Stat40: 3.50446155e-14 + syst_JES_EtaIntercalibration_Stat41: 5.91931776e-15 + syst_JES_EtaIntercalibration_Stat42: 5.06538259e-18 syst_JES_EtaIntercalibration_Stat43: 0.0 - syst_JES_EtaIntercalibration_Stat44: 1.5268027868719652e-17 - syst_JES_EtaIntercalibration_Stat45: 5.88410118454807e-16 - syst_JES_EtaIntercalibration_Stat46: 2.2549876246888805e-10 - syst_JES_EtaIntercalibration_Stat47: 7.692686171466701e-10 - syst_JES_EtaIntercalibration_Stat48: 2.3559551582107838e-14 - syst_JES_EtaIntercalibration_Stat49: 9.522815340013687e-18 + syst_JES_EtaIntercalibration_Stat44: 1.52680279e-17 + syst_JES_EtaIntercalibration_Stat45: 5.88410118e-16 + syst_JES_EtaIntercalibration_Stat46: 2.25498762e-10 + syst_JES_EtaIntercalibration_Stat47: 7.69268617e-10 + syst_JES_EtaIntercalibration_Stat48: 2.35595516e-14 + syst_JES_EtaIntercalibration_Stat49: 9.52281534e-18 syst_JES_EtaIntercalibration_Stat5: 0.0 syst_JES_EtaIntercalibration_Stat50: 0.0 syst_JES_EtaIntercalibration_Stat51: 0.0 @@ -60065,21 +60065,21 @@ bins: syst_JES_EtaIntercalibration_Stat56: 0.0 syst_JES_EtaIntercalibration_Stat57: 0.0 syst_JES_EtaIntercalibration_Stat58: 0.0 - syst_JES_EtaIntercalibration_Stat59: 2.244737846609265e-19 + syst_JES_EtaIntercalibration_Stat59: 2.24473785e-19 syst_JES_EtaIntercalibration_Stat6: 0.0 - syst_JES_EtaIntercalibration_Stat60: 8.9512771574787e-19 - syst_JES_EtaIntercalibration_Stat61: 2.0190983055562203e-14 - syst_JES_EtaIntercalibration_Stat62: 2.0932599742984626e-09 - syst_JES_EtaIntercalibration_Stat63: 1.2907040404368462e-13 - syst_JES_EtaIntercalibration_Stat64: 5.607785124271435e-17 + syst_JES_EtaIntercalibration_Stat60: 8.95127716e-19 + syst_JES_EtaIntercalibration_Stat61: 2.01909831e-14 + syst_JES_EtaIntercalibration_Stat62: 2.09325997e-09 + syst_JES_EtaIntercalibration_Stat63: 1.29070404e-13 + syst_JES_EtaIntercalibration_Stat64: 5.60778512e-17 syst_JES_EtaIntercalibration_Stat65: 0.0 - syst_JES_EtaIntercalibration_Stat66: 1.5268027868719652e-17 - syst_JES_EtaIntercalibration_Stat67: 5.882492073942812e-14 - syst_JES_EtaIntercalibration_Stat68: 2.6078314490587765e-09 - syst_JES_EtaIntercalibration_Stat69: 2.6771491551088446e-09 + syst_JES_EtaIntercalibration_Stat66: 1.52680279e-17 + syst_JES_EtaIntercalibration_Stat67: 5.88249207e-14 + syst_JES_EtaIntercalibration_Stat68: 2.60783145e-09 + syst_JES_EtaIntercalibration_Stat69: 2.67714916e-09 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 7.725235167604931e-10 - syst_JES_EtaIntercalibration_Stat71: 1.7223153565767216e-16 + syst_JES_EtaIntercalibration_Stat70: 7.72523517e-10 + syst_JES_EtaIntercalibration_Stat71: 1.72231536e-16 syst_JES_EtaIntercalibration_Stat72: 0.0 syst_JES_EtaIntercalibration_Stat73: 0.0 syst_JES_EtaIntercalibration_Stat74: 0.0 @@ -60090,19 +60090,19 @@ bins: syst_JES_EtaIntercalibration_Stat79: 0.0 syst_JES_EtaIntercalibration_Stat8: 0.0 syst_JES_EtaIntercalibration_Stat80: 0.0 - syst_JES_EtaIntercalibration_Stat81: 2.244737846609265e-19 - syst_JES_EtaIntercalibration_Stat82: 1.5854603495515113e-17 - syst_JES_EtaIntercalibration_Stat83: 2.683038203231553e-13 - syst_JES_EtaIntercalibration_Stat84: 2.95701215418537e-09 - syst_JES_EtaIntercalibration_Stat85: 3.1027918528439834e-09 - syst_JES_EtaIntercalibration_Stat86: 5.4395031023063125e-15 + syst_JES_EtaIntercalibration_Stat81: 2.24473785e-19 + syst_JES_EtaIntercalibration_Stat82: 1.58546035e-17 + syst_JES_EtaIntercalibration_Stat83: 2.68303820e-13 + syst_JES_EtaIntercalibration_Stat84: 2.95701215e-09 + syst_JES_EtaIntercalibration_Stat85: 3.10279185e-09 + syst_JES_EtaIntercalibration_Stat86: 5.43950310e-15 syst_JES_EtaIntercalibration_Stat87: 0.0 - syst_JES_EtaIntercalibration_Stat88: 1.8931292051785584e-13 - syst_JES_EtaIntercalibration_Stat89: 6.697748649173094e-10 + syst_JES_EtaIntercalibration_Stat88: 1.89312921e-13 + syst_JES_EtaIntercalibration_Stat89: 6.69774865e-10 syst_JES_EtaIntercalibration_Stat9: 0.0 - syst_JES_EtaIntercalibration_Stat90: 3.723988479198076e-09 - syst_JES_EtaIntercalibration_Stat91: 7.826492348049349e-10 - syst_JES_EtaIntercalibration_Stat92: 1.958647870343212e-16 + syst_JES_EtaIntercalibration_Stat90: 3.72398848e-09 + syst_JES_EtaIntercalibration_Stat91: 7.82649235e-10 + syst_JES_EtaIntercalibration_Stat92: 1.95864787e-16 syst_JES_EtaIntercalibration_Stat93: 0.0 syst_JES_EtaIntercalibration_Stat94: 0.0 syst_JES_EtaIntercalibration_Stat95: 0.0 @@ -60110,159 +60110,159 @@ bins: syst_JES_EtaIntercalibration_Stat97: 0.0 syst_JES_EtaIntercalibration_Stat98: 0.0 syst_JES_EtaIntercalibration_Stat99: 0.0 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0002547319522556996 - syst_JES_Flavour_Comp: 0.0008752860618106516 - syst_JES_Gjet_Generator: 0.001203133720747615 - syst_JES_Gjet_OOC: 0.0009942431644220642 - syst_JES_Gjet_Purity: 0.000225501175163235 - syst_JES_Gjet_Stat1: 9.311795687191595e-06 - syst_JES_Gjet_Stat10: 1.5318436049414446e-05 - syst_JES_Gjet_Stat11: 9.191219287994385e-06 - syst_JES_Gjet_Stat12: 9.092330119391838e-05 - syst_JES_Gjet_Stat13: 0.0002347719478557862 - syst_JES_Gjet_Stat14: 0.00041791519175545655 - syst_JES_Gjet_Stat15: 4.218425387511317e-05 - syst_JES_Gjet_Stat2: 6.5398011137572065e-06 - syst_JES_Gjet_Stat3: 9.22882024258789e-06 - syst_JES_Gjet_Stat4: 9.225907890690216e-06 - syst_JES_Gjet_Stat5: 9.212441750562117e-06 - syst_JES_Gjet_Stat6: 1.5033032933759574e-05 - syst_JES_Gjet_Stat7: 1.8684456822450045e-05 - syst_JES_Gjet_Stat8: 1.5023134635288336e-05 - syst_JES_Gjet_Stat9: 1.4431256728019219e-05 - syst_JES_Gjet_Veto: 0.0008996993497830262 - syst_JES_Gjet_dPhi: 6.428465135629188e-05 - syst_JES_LArESZee: 0.00178425579724433 - syst_JES_LArEsmear: 0.00010155961992839477 - syst_JES_LAr_JVT: 0.0001477492700489583 - syst_JES_MJB_Alpha: 2.6208429998761846e-06 - syst_JES_MJB_Asym: 8.065104277069206e-05 - syst_JES_MJB_Beta: 1.4148759456839318e-05 - syst_JES_MJB_Stat1: 8.55466964587178e-08 - syst_JES_MJB_Stat10: 2.4504274973971376e-07 - syst_JES_MJB_Stat11: 1.2687272165442026e-08 - syst_JES_MJB_Stat12: 7.057241015439391e-07 - syst_JES_MJB_Stat13: 1.7909405350262191e-06 + syst_JES_EtaIntercalibration_TotalStat_MJB: 2.54731952e-04 + syst_JES_Flavour_Comp: 8.75286062e-04 + syst_JES_Gjet_Generator: 1.20313372e-03 + syst_JES_Gjet_OOC: 9.94243164e-04 + syst_JES_Gjet_Purity: 2.25501175e-04 + syst_JES_Gjet_Stat1: 9.31179569e-06 + syst_JES_Gjet_Stat10: 1.53184360e-05 + syst_JES_Gjet_Stat11: 9.19121929e-06 + syst_JES_Gjet_Stat12: 9.09233012e-05 + syst_JES_Gjet_Stat13: 2.34771948e-04 + syst_JES_Gjet_Stat14: 4.17915192e-04 + syst_JES_Gjet_Stat15: 4.21842539e-05 + syst_JES_Gjet_Stat2: 6.53980111e-06 + syst_JES_Gjet_Stat3: 9.22882024e-06 + syst_JES_Gjet_Stat4: 9.22590789e-06 + syst_JES_Gjet_Stat5: 9.21244175e-06 + syst_JES_Gjet_Stat6: 1.50330329e-05 + syst_JES_Gjet_Stat7: 1.86844568e-05 + syst_JES_Gjet_Stat8: 1.50231346e-05 + syst_JES_Gjet_Stat9: 1.44312567e-05 + syst_JES_Gjet_Veto: 8.99699350e-04 + syst_JES_Gjet_dPhi: 6.42846514e-05 + syst_JES_LArESZee: 1.78425580e-03 + syst_JES_LArEsmear: 1.01559620e-04 + syst_JES_LAr_JVT: 1.47749270e-04 + syst_JES_MJB_Alpha: 2.62084300e-06 + syst_JES_MJB_Asym: 8.06510428e-05 + syst_JES_MJB_Beta: 1.41487595e-05 + syst_JES_MJB_Stat1: 8.55466965e-08 + syst_JES_MJB_Stat10: 2.45042750e-07 + syst_JES_MJB_Stat11: 1.26872722e-08 + syst_JES_MJB_Stat12: 7.05724102e-07 + syst_JES_MJB_Stat13: 1.79094054e-06 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 1.252276397635522e-05 - syst_JES_MJB_Stat3: 1.8854644202423974e-06 - syst_JES_MJB_Stat4: 1.52681036545964e-05 - syst_JES_MJB_Stat5: 1.5057806502525526e-05 - syst_JES_MJB_Stat6: 1.9713707794324233e-06 - syst_JES_MJB_Stat7: 6.906203915321355e-06 - syst_JES_MJB_Stat8: 7.3242446121562595e-06 - syst_JES_MJB_Stat9: 7.3242446121562595e-06 - syst_JES_MJB_Threshold: 9.258550142975951e-05 - syst_JES_Pileup_MuOffset: 0.00014920542885565524 - syst_JES_Pileup_NPVOffset: 0.00013600999963237997 - syst_JES_Pileup_Pt_term: 0.00041517467408309 - syst_JES_PunchThrough_MC15: 5.322138949708097e-05 + syst_JES_MJB_Stat2: 1.25227640e-05 + syst_JES_MJB_Stat3: 1.88546442e-06 + syst_JES_MJB_Stat4: 1.52681037e-05 + syst_JES_MJB_Stat5: 1.50578065e-05 + syst_JES_MJB_Stat6: 1.97137078e-06 + syst_JES_MJB_Stat7: 6.90620392e-06 + syst_JES_MJB_Stat8: 7.32424461e-06 + syst_JES_MJB_Stat9: 7.32424461e-06 + syst_JES_MJB_Threshold: 9.25855014e-05 + syst_JES_Pileup_MuOffset: 1.49205429e-04 + syst_JES_Pileup_NPVOffset: 1.36010000e-04 + syst_JES_Pileup_Pt_term: 4.15174674e-04 + syst_JES_PunchThrough_MC15: 5.32213895e-05 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.0006392283160186194 - syst_JES_Zjet_MuScale: 4.1692868486948705e-05 - syst_JES_Zjet_MuSmearID: 1.4938287514554672e-05 - syst_JES_Zjet_MuSmearMS: 0.00012433355812088706 - syst_JES_Zjet_OOC: 0.0002958880320323889 - syst_JES_Zjet_Stat1: 1.5113814872493312e-05 - syst_JES_Zjet_Stat10: 1.5505681241080638e-05 - syst_JES_Zjet_Stat11: 1.2955853387561933e-05 - syst_JES_Zjet_Stat12: 9.075408241506274e-05 - syst_JES_Zjet_Stat13: 0.00015810382055788533 - syst_JES_Zjet_Stat2: 3.87416245787396e-08 - syst_JES_Zjet_Stat3: 1.4917304605306549e-05 - syst_JES_Zjet_Stat4: 1.4917304605306549e-05 - syst_JES_Zjet_Stat5: 1.5024009385979495e-05 - syst_JES_Zjet_Stat6: 1.81320805305817e-05 - syst_JES_Zjet_Stat7: 1.5026176692941553e-05 - syst_JES_Zjet_Stat8: 1.502612252271024e-05 - syst_JES_Zjet_Stat9: 1.4497085195566038e-05 - syst_JES_Zjet_Veto: 4.041773713359025e-05 - syst_JES_Zjet_dPhi: 4.106223199912543e-05 + syst_JES_Zjet_MC: 6.39228316e-04 + syst_JES_Zjet_MuScale: 4.16928685e-05 + syst_JES_Zjet_MuSmearID: 1.49382875e-05 + syst_JES_Zjet_MuSmearMS: 1.24333558e-04 + syst_JES_Zjet_OOC: 2.95888032e-04 + syst_JES_Zjet_Stat1: 1.51138149e-05 + syst_JES_Zjet_Stat10: 1.55056812e-05 + syst_JES_Zjet_Stat11: 1.29558534e-05 + syst_JES_Zjet_Stat12: 9.07540824e-05 + syst_JES_Zjet_Stat13: 1.58103821e-04 + syst_JES_Zjet_Stat2: 3.87416246e-08 + syst_JES_Zjet_Stat3: 1.49173046e-05 + syst_JES_Zjet_Stat4: 1.49173046e-05 + syst_JES_Zjet_Stat5: 1.50240094e-05 + syst_JES_Zjet_Stat6: 1.81320805e-05 + syst_JES_Zjet_Stat7: 1.50261767e-05 + syst_JES_Zjet_Stat8: 1.50261225e-05 + syst_JES_Zjet_Stat9: 1.44970852e-05 + syst_JES_Zjet_Veto: 4.04177371e-05 + syst_JES_Zjet_dPhi: 4.10622320e-05 syst_PRW: 0.0 - syst_Unfolding_bias: 0.00010596 - syst_cleaning: 0.00014505925513389349 - syst_lumi: 0.0005165 + syst_Unfolding_bias: 1.05960000e-04 + syst_cleaning: 1.45059255e-04 + syst_lumi: 5.16500000e-04 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 5.5858837259649435e-05 - syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 6.686018920104848e-05 - syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0002113247441735113 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 2.4351982978804827e-05 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 5.958843595866568e-05 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.00025375123645018954 -- stat: 0.0003632 - syst_JER_CROSS_CALIB_FORWARD: 1.0021e-08 - syst_JER_NOISE_FORWARD: 1.0148e-06 - syst_JER_NP0: 4.048613929482533e-06 - syst_JER_NP1: 0.0002935458737574078 - syst_JER_NP2: 7.027650832618251e-07 - syst_JER_NP3: 4.98946938561607e-07 - syst_JER_NP4: 4.76735073180063e-07 - syst_JER_NP5: 1.5041495936242512e-09 - syst_JER_NP6: 1.104205637551267e-09 - syst_JER_NP7: 7.553361713277125e-13 - syst_JER_NP8: 4.5622268072948767e-07 - syst_JES_EtaIntercalibration_Modelling: 0.0007937834150446834 - syst_JES_EtaIntercalibration_NonClosure: 0.0005628872800126149 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 5.58588373e-05 + syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 6.68601892e-05 + syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 2.11324744e-04 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 2.43519830e-05 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 5.95884360e-05 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 2.53751236e-04 +- stat: 3.63200000e-04 + syst_JER_CROSS_CALIB_FORWARD: 1.00210000e-08 + syst_JER_NOISE_FORWARD: 1.01480000e-06 + syst_JER_NP0: 4.04861393e-06 + syst_JER_NP1: 2.93545874e-04 + syst_JER_NP2: 7.02765083e-07 + syst_JER_NP3: 4.98946939e-07 + syst_JER_NP4: 4.76735073e-07 + syst_JER_NP5: 1.50414959e-09 + syst_JER_NP6: 1.10420564e-09 + syst_JER_NP7: 7.55336171e-13 + syst_JER_NP8: 4.56222681e-07 + syst_JES_EtaIntercalibration_Modelling: 7.93783415e-04 + syst_JES_EtaIntercalibration_NonClosure: 5.62887280e-04 syst_JES_EtaIntercalibration_Stat0: 0.0 - syst_JES_EtaIntercalibration_Stat1: 3.4952785296739944e-19 + syst_JES_EtaIntercalibration_Stat1: 3.49527853e-19 syst_JES_EtaIntercalibration_Stat10: 0.0 syst_JES_EtaIntercalibration_Stat100: 0.0 syst_JES_EtaIntercalibration_Stat101: 0.0 syst_JES_EtaIntercalibration_Stat102: 0.0 - syst_JES_EtaIntercalibration_Stat103: 2.9183868831942074e-18 - syst_JES_EtaIntercalibration_Stat104: 5.7643771996918055e-11 - syst_JES_EtaIntercalibration_Stat105: 6.055712096855333e-10 - syst_JES_EtaIntercalibration_Stat106: 2.819255973248971e-10 - syst_JES_EtaIntercalibration_Stat107: 6.236009842038417e-16 - syst_JES_EtaIntercalibration_Stat108: 1.8823654180511817e-11 - syst_JES_EtaIntercalibration_Stat109: 2.1424774368706896e-08 + syst_JES_EtaIntercalibration_Stat103: 2.91838688e-18 + syst_JES_EtaIntercalibration_Stat104: 5.76437720e-11 + syst_JES_EtaIntercalibration_Stat105: 6.05571210e-10 + syst_JES_EtaIntercalibration_Stat106: 2.81925597e-10 + syst_JES_EtaIntercalibration_Stat107: 6.23600984e-16 + syst_JES_EtaIntercalibration_Stat108: 1.88236542e-11 + syst_JES_EtaIntercalibration_Stat109: 2.14247744e-08 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 1.8962872061742124e-06 - syst_JES_EtaIntercalibration_Stat111: 3.8170963031471976e-10 - syst_JES_EtaIntercalibration_Stat112: 5.859514470281553e-11 + syst_JES_EtaIntercalibration_Stat110: 1.89628721e-06 + syst_JES_EtaIntercalibration_Stat111: 3.81709630e-10 + syst_JES_EtaIntercalibration_Stat112: 5.85951447e-11 syst_JES_EtaIntercalibration_Stat113: 0.0 syst_JES_EtaIntercalibration_Stat114: 0.0 syst_JES_EtaIntercalibration_Stat115: 0.0 syst_JES_EtaIntercalibration_Stat116: 0.0 syst_JES_EtaIntercalibration_Stat117: 0.0 - syst_JES_EtaIntercalibration_Stat118: 1.925174472612807e-18 - syst_JES_EtaIntercalibration_Stat119: 1.925174472612807e-18 + syst_JES_EtaIntercalibration_Stat118: 1.92517447e-18 + syst_JES_EtaIntercalibration_Stat119: 1.92517447e-18 syst_JES_EtaIntercalibration_Stat12: 0.0 syst_JES_EtaIntercalibration_Stat120: 0.0 syst_JES_EtaIntercalibration_Stat121: 0.0 syst_JES_EtaIntercalibration_Stat122: 0.0 - syst_JES_EtaIntercalibration_Stat123: 1.3183481359261673e-14 - syst_JES_EtaIntercalibration_Stat124: 3.352945884964444e-09 - syst_JES_EtaIntercalibration_Stat125: 9.960637402797073e-07 - syst_JES_EtaIntercalibration_Stat126: 1.1028078133564344e-07 - syst_JES_EtaIntercalibration_Stat127: 4.170527883853553e-11 - syst_JES_EtaIntercalibration_Stat128: 1.8624054627013959e-06 - syst_JES_EtaIntercalibration_Stat129: 1.980928254632156e-06 + syst_JES_EtaIntercalibration_Stat123: 1.31834814e-14 + syst_JES_EtaIntercalibration_Stat124: 3.35294588e-09 + syst_JES_EtaIntercalibration_Stat125: 9.96063740e-07 + syst_JES_EtaIntercalibration_Stat126: 1.10280781e-07 + syst_JES_EtaIntercalibration_Stat127: 4.17052788e-11 + syst_JES_EtaIntercalibration_Stat128: 1.86240546e-06 + syst_JES_EtaIntercalibration_Stat129: 1.98092825e-06 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 6.777930990169493e-07 - syst_JES_EtaIntercalibration_Stat131: 1.3154193843314763e-10 + syst_JES_EtaIntercalibration_Stat130: 6.77793099e-07 + syst_JES_EtaIntercalibration_Stat131: 1.31541938e-10 syst_JES_EtaIntercalibration_Stat132: 0.0 syst_JES_EtaIntercalibration_Stat133: 0.0 syst_JES_EtaIntercalibration_Stat134: 0.0 syst_JES_EtaIntercalibration_Stat135: 0.0 syst_JES_EtaIntercalibration_Stat136: 0.0 - syst_JES_EtaIntercalibration_Stat137: 1.925174472612807e-18 - syst_JES_EtaIntercalibration_Stat138: 1.925174472612807e-18 - syst_JES_EtaIntercalibration_Stat139: 1.0173200418255801e-17 + syst_JES_EtaIntercalibration_Stat137: 1.92517447e-18 + syst_JES_EtaIntercalibration_Stat138: 1.92517447e-18 + syst_JES_EtaIntercalibration_Stat139: 1.01732004e-17 syst_JES_EtaIntercalibration_Stat14: 0.0 syst_JES_EtaIntercalibration_Stat140: 0.0 syst_JES_EtaIntercalibration_Stat141: 0.0 - syst_JES_EtaIntercalibration_Stat142: 5.670295405098464e-11 - syst_JES_EtaIntercalibration_Stat143: 2.754983579769578e-06 - syst_JES_EtaIntercalibration_Stat144: 2.1396328937460277e-06 - syst_JES_EtaIntercalibration_Stat145: 4.655702330207549e-06 - syst_JES_EtaIntercalibration_Stat146: 2.3886829265239456e-06 - syst_JES_EtaIntercalibration_Stat147: 1.9362568030868223e-06 - syst_JES_EtaIntercalibration_Stat148: 7.483220042702205e-07 - syst_JES_EtaIntercalibration_Stat149: 1.3754150262618007e-10 + syst_JES_EtaIntercalibration_Stat142: 5.67029541e-11 + syst_JES_EtaIntercalibration_Stat143: 2.75498358e-06 + syst_JES_EtaIntercalibration_Stat144: 2.13963289e-06 + syst_JES_EtaIntercalibration_Stat145: 4.65570233e-06 + syst_JES_EtaIntercalibration_Stat146: 2.38868293e-06 + syst_JES_EtaIntercalibration_Stat147: 1.93625680e-06 + syst_JES_EtaIntercalibration_Stat148: 7.48322004e-07 + syst_JES_EtaIntercalibration_Stat149: 1.37541503e-10 syst_JES_EtaIntercalibration_Stat15: 0.0 syst_JES_EtaIntercalibration_Stat150: 0.0 syst_JES_EtaIntercalibration_Stat151: 0.0 @@ -60270,60 +60270,60 @@ bins: syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 1.925174472612807e-18 - syst_JES_EtaIntercalibration_Stat157: 1.0173200418255801e-17 + syst_JES_EtaIntercalibration_Stat156: 1.92517447e-18 + syst_JES_EtaIntercalibration_Stat157: 1.01732004e-17 syst_JES_EtaIntercalibration_Stat158: 0.0 syst_JES_EtaIntercalibration_Stat159: 0.0 - syst_JES_EtaIntercalibration_Stat16: 2.3166179551233735e-20 - syst_JES_EtaIntercalibration_Stat160: 5.64951570035096e-11 - syst_JES_EtaIntercalibration_Stat161: 2.9454715290255312e-06 - syst_JES_EtaIntercalibration_Stat162: 7.45438644557686e-06 - syst_JES_EtaIntercalibration_Stat163: 1.2803997046528087e-05 - syst_JES_EtaIntercalibration_Stat164: 5.07768323155354e-06 - syst_JES_EtaIntercalibration_Stat165: 1.124173727677355e-05 - syst_JES_EtaIntercalibration_Stat166: 7.415835674419977e-07 - syst_JES_EtaIntercalibration_Stat167: 1.400104907033755e-10 + syst_JES_EtaIntercalibration_Stat16: 2.31661796e-20 + syst_JES_EtaIntercalibration_Stat160: 5.64951570e-11 + syst_JES_EtaIntercalibration_Stat161: 2.94547153e-06 + syst_JES_EtaIntercalibration_Stat162: 7.45438645e-06 + syst_JES_EtaIntercalibration_Stat163: 1.28039970e-05 + syst_JES_EtaIntercalibration_Stat164: 5.07768323e-06 + syst_JES_EtaIntercalibration_Stat165: 1.12417373e-05 + syst_JES_EtaIntercalibration_Stat166: 7.41583567e-07 + syst_JES_EtaIntercalibration_Stat167: 1.40010491e-10 syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 - syst_JES_EtaIntercalibration_Stat17: 1.1585599110533732e-19 + syst_JES_EtaIntercalibration_Stat17: 1.15855991e-19 syst_JES_EtaIntercalibration_Stat170: 0.0 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 - syst_JES_EtaIntercalibration_Stat174: 1.0173200418255801e-17 - syst_JES_EtaIntercalibration_Stat175: 1.0173200418255801e-17 + syst_JES_EtaIntercalibration_Stat174: 1.01732004e-17 + syst_JES_EtaIntercalibration_Stat175: 1.01732004e-17 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 - syst_JES_EtaIntercalibration_Stat178: 3.2177108893590795e-09 - syst_JES_EtaIntercalibration_Stat179: 5.413781941258809e-06 - syst_JES_EtaIntercalibration_Stat18: 4.510118041692479e-18 - syst_JES_EtaIntercalibration_Stat180: 1.5370285456034963e-05 - syst_JES_EtaIntercalibration_Stat181: 2.3011934591207234e-05 - syst_JES_EtaIntercalibration_Stat182: 0.00011634977041232184 - syst_JES_EtaIntercalibration_Stat183: 2.220350528069836e-05 - syst_JES_EtaIntercalibration_Stat184: 6.295348728168386e-08 + syst_JES_EtaIntercalibration_Stat178: 3.21771089e-09 + syst_JES_EtaIntercalibration_Stat179: 5.41378194e-06 + syst_JES_EtaIntercalibration_Stat18: 4.51011804e-18 + syst_JES_EtaIntercalibration_Stat180: 1.53702855e-05 + syst_JES_EtaIntercalibration_Stat181: 2.30119346e-05 + syst_JES_EtaIntercalibration_Stat182: 1.16349770e-04 + syst_JES_EtaIntercalibration_Stat183: 2.22035053e-05 + syst_JES_EtaIntercalibration_Stat184: 6.29534873e-08 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 syst_JES_EtaIntercalibration_Stat187: 0.0 - syst_JES_EtaIntercalibration_Stat188: 2.4811627818424168e-15 + syst_JES_EtaIntercalibration_Stat188: 2.48116278e-15 syst_JES_EtaIntercalibration_Stat189: 0.0 - syst_JES_EtaIntercalibration_Stat19: 2.8361416607778956e-18 + syst_JES_EtaIntercalibration_Stat19: 2.83614166e-18 syst_JES_EtaIntercalibration_Stat190: 0.0 - syst_JES_EtaIntercalibration_Stat191: 1.0173200418255801e-17 - syst_JES_EtaIntercalibration_Stat192: 1.0173200418255801e-17 + syst_JES_EtaIntercalibration_Stat191: 1.01732004e-17 + syst_JES_EtaIntercalibration_Stat192: 1.01732004e-17 syst_JES_EtaIntercalibration_Stat193: 0.0 syst_JES_EtaIntercalibration_Stat194: 0.0 - syst_JES_EtaIntercalibration_Stat195: 3.3301267214139166e-07 - syst_JES_EtaIntercalibration_Stat196: 1.4083279687274551e-05 - syst_JES_EtaIntercalibration_Stat197: 0.00011624932978301423 - syst_JES_EtaIntercalibration_Stat198: 3.641484724669321e-05 - syst_JES_EtaIntercalibration_Stat199: 4.499022977055186e-07 - syst_JES_EtaIntercalibration_Stat2: 1.0758104027662123e-17 + syst_JES_EtaIntercalibration_Stat195: 3.33012672e-07 + syst_JES_EtaIntercalibration_Stat196: 1.40832797e-05 + syst_JES_EtaIntercalibration_Stat197: 1.16249330e-04 + syst_JES_EtaIntercalibration_Stat198: 3.64148472e-05 + syst_JES_EtaIntercalibration_Stat199: 4.49902298e-07 + syst_JES_EtaIntercalibration_Stat2: 1.07581040e-17 syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 syst_JES_EtaIntercalibration_Stat201: 0.0 syst_JES_EtaIntercalibration_Stat202: 0.0 - syst_JES_EtaIntercalibration_Stat203: 2.4811627818424168e-15 + syst_JES_EtaIntercalibration_Stat203: 2.48116278e-15 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 @@ -60331,9 +60331,9 @@ bins: syst_JES_EtaIntercalibration_Stat208: 0.0 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 3.0522748586123024e-06 - syst_JES_EtaIntercalibration_Stat211: 3.79272114549699e-05 - syst_JES_EtaIntercalibration_Stat212: 7.679047255356618e-07 + syst_JES_EtaIntercalibration_Stat210: 3.05227486e-06 + syst_JES_EtaIntercalibration_Stat211: 3.79272115e-05 + syst_JES_EtaIntercalibration_Stat212: 7.67904726e-07 syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 syst_JES_EtaIntercalibration_Stat215: 0.0 @@ -60345,37 +60345,37 @@ bins: syst_JES_EtaIntercalibration_Stat220: 0.0 syst_JES_EtaIntercalibration_Stat221: 0.0 syst_JES_EtaIntercalibration_Stat222: 0.0 - syst_JES_EtaIntercalibration_Stat223: 3.063997878589344e-06 - syst_JES_EtaIntercalibration_Stat224: 7.733606855795037e-07 + syst_JES_EtaIntercalibration_Stat223: 3.06399788e-06 + syst_JES_EtaIntercalibration_Stat224: 7.73360686e-07 syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 syst_JES_EtaIntercalibration_Stat227: 0.0 syst_JES_EtaIntercalibration_Stat228: 0.0 syst_JES_EtaIntercalibration_Stat229: 0.0 - syst_JES_EtaIntercalibration_Stat23: 8.479932128708342e-18 + syst_JES_EtaIntercalibration_Stat23: 8.47993213e-18 syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 syst_JES_EtaIntercalibration_Stat232: 0.0 syst_JES_EtaIntercalibration_Stat233: 0.0 syst_JES_EtaIntercalibration_Stat234: 0.0 - syst_JES_EtaIntercalibration_Stat235: 3.1246196568542546e-06 + syst_JES_EtaIntercalibration_Stat235: 3.12461966e-06 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 syst_JES_EtaIntercalibration_Stat239: 0.0 - syst_JES_EtaIntercalibration_Stat24: 3.394263543097383e-15 + syst_JES_EtaIntercalibration_Stat24: 3.39426354e-15 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 syst_JES_EtaIntercalibration_Stat243: 0.0 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 - syst_JES_EtaIntercalibration_Stat25: 6.144376400300948e-11 - syst_JES_EtaIntercalibration_Stat26: 1.7844476197131703e-17 + syst_JES_EtaIntercalibration_Stat25: 6.14437640e-11 + syst_JES_EtaIntercalibration_Stat26: 1.78444762e-17 syst_JES_EtaIntercalibration_Stat27: 0.0 syst_JES_EtaIntercalibration_Stat28: 0.0 syst_JES_EtaIntercalibration_Stat29: 0.0 - syst_JES_EtaIntercalibration_Stat3: 1.5526073449201508e-17 + syst_JES_EtaIntercalibration_Stat3: 1.55260734e-17 syst_JES_EtaIntercalibration_Stat30: 0.0 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 @@ -60384,19 +60384,19 @@ bins: syst_JES_EtaIntercalibration_Stat35: 0.0 syst_JES_EtaIntercalibration_Stat36: 0.0 syst_JES_EtaIntercalibration_Stat37: 0.0 - syst_JES_EtaIntercalibration_Stat38: 2.3166179551233735e-20 - syst_JES_EtaIntercalibration_Stat39: 6.994336762695946e-18 + syst_JES_EtaIntercalibration_Stat38: 2.31661796e-20 + syst_JES_EtaIntercalibration_Stat39: 6.99433676e-18 syst_JES_EtaIntercalibration_Stat4: 0.0 - syst_JES_EtaIntercalibration_Stat40: 2.4761948126106717e-15 - syst_JES_EtaIntercalibration_Stat41: 4.366153799398276e-16 - syst_JES_EtaIntercalibration_Stat42: 4.473021210546625e-19 + syst_JES_EtaIntercalibration_Stat40: 2.47619481e-15 + syst_JES_EtaIntercalibration_Stat41: 4.36615380e-16 + syst_JES_EtaIntercalibration_Stat42: 4.47302121e-19 syst_JES_EtaIntercalibration_Stat43: 0.0 - syst_JES_EtaIntercalibration_Stat44: 1.467047034010839e-18 - syst_JES_EtaIntercalibration_Stat45: 4.5397271944468207e-17 - syst_JES_EtaIntercalibration_Stat46: 1.7911150998472293e-11 - syst_JES_EtaIntercalibration_Stat47: 6.117322984051112e-11 - syst_JES_EtaIntercalibration_Stat48: 1.6554396143245457e-15 - syst_JES_EtaIntercalibration_Stat49: 8.707019409648745e-19 + syst_JES_EtaIntercalibration_Stat44: 1.46704703e-18 + syst_JES_EtaIntercalibration_Stat45: 4.53972719e-17 + syst_JES_EtaIntercalibration_Stat46: 1.79111510e-11 + syst_JES_EtaIntercalibration_Stat47: 6.11732298e-11 + syst_JES_EtaIntercalibration_Stat48: 1.65543961e-15 + syst_JES_EtaIntercalibration_Stat49: 8.70701941e-19 syst_JES_EtaIntercalibration_Stat5: 0.0 syst_JES_EtaIntercalibration_Stat50: 0.0 syst_JES_EtaIntercalibration_Stat51: 0.0 @@ -60407,21 +60407,21 @@ bins: syst_JES_EtaIntercalibration_Stat56: 0.0 syst_JES_EtaIntercalibration_Stat57: 0.0 syst_JES_EtaIntercalibration_Stat58: 0.0 - syst_JES_EtaIntercalibration_Stat59: 2.3166179551233735e-20 + syst_JES_EtaIntercalibration_Stat59: 2.31661796e-20 syst_JES_EtaIntercalibration_Stat6: 0.0 - syst_JES_EtaIntercalibration_Stat60: 8.545986587281775e-20 - syst_JES_EtaIntercalibration_Stat61: 1.4249033537401757e-15 - syst_JES_EtaIntercalibration_Stat62: 1.8979200371722724e-10 - syst_JES_EtaIntercalibration_Stat63: 8.90335279543611e-15 - syst_JES_EtaIntercalibration_Stat64: 4.716679207874964e-18 + syst_JES_EtaIntercalibration_Stat60: 8.54598659e-20 + syst_JES_EtaIntercalibration_Stat61: 1.42490335e-15 + syst_JES_EtaIntercalibration_Stat62: 1.89792004e-10 + syst_JES_EtaIntercalibration_Stat63: 8.90335280e-15 + syst_JES_EtaIntercalibration_Stat64: 4.71667921e-18 syst_JES_EtaIntercalibration_Stat65: 0.0 - syst_JES_EtaIntercalibration_Stat66: 1.467047034010839e-18 - syst_JES_EtaIntercalibration_Stat67: 4.16503037203812e-15 - syst_JES_EtaIntercalibration_Stat68: 2.2196193652157456e-10 - syst_JES_EtaIntercalibration_Stat69: 2.2841735686840876e-10 + syst_JES_EtaIntercalibration_Stat66: 1.46704703e-18 + syst_JES_EtaIntercalibration_Stat67: 4.16503037e-15 + syst_JES_EtaIntercalibration_Stat68: 2.21961937e-10 + syst_JES_EtaIntercalibration_Stat69: 2.28417357e-10 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 6.14338116771823e-11 - syst_JES_EtaIntercalibration_Stat71: 1.409127498374437e-17 + syst_JES_EtaIntercalibration_Stat70: 6.14338117e-11 + syst_JES_EtaIntercalibration_Stat71: 1.40912750e-17 syst_JES_EtaIntercalibration_Stat72: 0.0 syst_JES_EtaIntercalibration_Stat73: 0.0 syst_JES_EtaIntercalibration_Stat74: 0.0 @@ -60432,19 +60432,19 @@ bins: syst_JES_EtaIntercalibration_Stat79: 0.0 syst_JES_EtaIntercalibration_Stat8: 0.0 syst_JES_EtaIntercalibration_Stat80: 0.0 - syst_JES_EtaIntercalibration_Stat81: 2.3166179551233735e-20 - syst_JES_EtaIntercalibration_Stat82: 1.347423024703081e-18 - syst_JES_EtaIntercalibration_Stat83: 1.848646496088422e-14 - syst_JES_EtaIntercalibration_Stat84: 2.5276637177441145e-10 - syst_JES_EtaIntercalibration_Stat85: 2.734516169942134e-10 - syst_JES_EtaIntercalibration_Stat86: 3.9741088661484853e-16 + syst_JES_EtaIntercalibration_Stat81: 2.31661796e-20 + syst_JES_EtaIntercalibration_Stat82: 1.34742302e-18 + syst_JES_EtaIntercalibration_Stat83: 1.84864650e-14 + syst_JES_EtaIntercalibration_Stat84: 2.52766372e-10 + syst_JES_EtaIntercalibration_Stat85: 2.73451617e-10 + syst_JES_EtaIntercalibration_Stat86: 3.97410887e-16 syst_JES_EtaIntercalibration_Stat87: 0.0 - syst_JES_EtaIntercalibration_Stat88: 1.2941978471238466e-14 - syst_JES_EtaIntercalibration_Stat89: 5.159752307039554e-10 + syst_JES_EtaIntercalibration_Stat88: 1.29419785e-14 + syst_JES_EtaIntercalibration_Stat89: 5.15975231e-10 syst_JES_EtaIntercalibration_Stat9: 0.0 - syst_JES_EtaIntercalibration_Stat90: 3.501150968906511e-10 - syst_JES_EtaIntercalibration_Stat91: 6.223824603302619e-11 - syst_JES_EtaIntercalibration_Stat92: 1.6010222618064997e-17 + syst_JES_EtaIntercalibration_Stat90: 3.50115097e-10 + syst_JES_EtaIntercalibration_Stat91: 6.22382460e-11 + syst_JES_EtaIntercalibration_Stat92: 1.60102226e-17 syst_JES_EtaIntercalibration_Stat93: 0.0 syst_JES_EtaIntercalibration_Stat94: 0.0 syst_JES_EtaIntercalibration_Stat95: 0.0 @@ -60452,159 +60452,159 @@ bins: syst_JES_EtaIntercalibration_Stat97: 0.0 syst_JES_EtaIntercalibration_Stat98: 0.0 syst_JES_EtaIntercalibration_Stat99: 0.0 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.00011132381281648594 - syst_JES_Flavour_Comp: 0.0003469591618620267 - syst_JES_Gjet_Generator: 0.0004723509500360934 - syst_JES_Gjet_OOC: 0.000389758540637662 - syst_JES_Gjet_Purity: 8.479721030199048e-05 - syst_JES_Gjet_Stat1: 3.1812958856887235e-06 - syst_JES_Gjet_Stat10: 1.1877299043448387e-05 - syst_JES_Gjet_Stat11: 9.422920194928958e-06 - syst_JES_Gjet_Stat12: 3.69866526601151e-05 - syst_JES_Gjet_Stat13: 9.856980217084743e-05 - syst_JES_Gjet_Stat14: 0.00018971354906806206 - syst_JES_Gjet_Stat15: 4.401844613341093e-05 - syst_JES_Gjet_Stat2: 3.033744114901585e-06 - syst_JES_Gjet_Stat3: 4.219470544615165e-06 - syst_JES_Gjet_Stat4: 4.218679825194133e-06 - syst_JES_Gjet_Stat5: 4.217201494865997e-06 - syst_JES_Gjet_Stat6: 7.565372219441685e-06 - syst_JES_Gjet_Stat7: 1.1792869498133184e-05 - syst_JES_Gjet_Stat8: 7.563489427506328e-06 - syst_JES_Gjet_Stat9: 1.1767572271607258e-05 - syst_JES_Gjet_Veto: 0.00036849185540524504 - syst_JES_Gjet_dPhi: 3.063049001811757e-05 - syst_JES_LArESZee: 0.0006888876105722908 - syst_JES_LArEsmear: 4.448430955685387e-05 - syst_JES_LAr_JVT: 5.5588767525463274e-05 - syst_JES_MJB_Alpha: 4.7510872616170715e-06 - syst_JES_MJB_Asym: 3.665789955793976e-05 - syst_JES_MJB_Beta: 1.1655639364702393e-05 - syst_JES_MJB_Stat1: 4.297771602819303e-08 - syst_JES_MJB_Stat10: 7.909607496582875e-08 - syst_JES_MJB_Stat11: 2.4915550866878305e-06 - syst_JES_MJB_Stat12: 2.4846268834575546e-06 - syst_JES_MJB_Stat13: 9.701216573193282e-07 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.11323813e-04 + syst_JES_Flavour_Comp: 3.46959162e-04 + syst_JES_Gjet_Generator: 4.72350950e-04 + syst_JES_Gjet_OOC: 3.89758541e-04 + syst_JES_Gjet_Purity: 8.47972103e-05 + syst_JES_Gjet_Stat1: 3.18129589e-06 + syst_JES_Gjet_Stat10: 1.18772990e-05 + syst_JES_Gjet_Stat11: 9.42292019e-06 + syst_JES_Gjet_Stat12: 3.69866527e-05 + syst_JES_Gjet_Stat13: 9.85698022e-05 + syst_JES_Gjet_Stat14: 1.89713549e-04 + syst_JES_Gjet_Stat15: 4.40184461e-05 + syst_JES_Gjet_Stat2: 3.03374411e-06 + syst_JES_Gjet_Stat3: 4.21947054e-06 + syst_JES_Gjet_Stat4: 4.21867983e-06 + syst_JES_Gjet_Stat5: 4.21720149e-06 + syst_JES_Gjet_Stat6: 7.56537222e-06 + syst_JES_Gjet_Stat7: 1.17928695e-05 + syst_JES_Gjet_Stat8: 7.56348943e-06 + syst_JES_Gjet_Stat9: 1.17675723e-05 + syst_JES_Gjet_Veto: 3.68491855e-04 + syst_JES_Gjet_dPhi: 3.06304900e-05 + syst_JES_LArESZee: 6.88887611e-04 + syst_JES_LArEsmear: 4.44843096e-05 + syst_JES_LAr_JVT: 5.55887675e-05 + syst_JES_MJB_Alpha: 4.75108726e-06 + syst_JES_MJB_Asym: 3.66578996e-05 + syst_JES_MJB_Beta: 1.16556394e-05 + syst_JES_MJB_Stat1: 4.29777160e-08 + syst_JES_MJB_Stat10: 7.90960750e-08 + syst_JES_MJB_Stat11: 2.49155509e-06 + syst_JES_MJB_Stat12: 2.48462688e-06 + syst_JES_MJB_Stat13: 9.70121657e-07 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 5.240880962920261e-06 - syst_JES_MJB_Stat3: 4.6947912711855465e-06 - syst_JES_MJB_Stat4: 6.949761920382598e-06 - syst_JES_MJB_Stat5: 7.570934663566977e-06 - syst_JES_MJB_Stat6: 4.63170505402708e-06 - syst_JES_MJB_Stat7: 5.482984919731222e-06 - syst_JES_MJB_Stat8: 5.59933898509458e-06 - syst_JES_MJB_Stat9: 5.59933898509458e-06 - syst_JES_MJB_Threshold: 4.162018765875522e-05 - syst_JES_Pileup_MuOffset: 5.652926388163922e-05 - syst_JES_Pileup_NPVOffset: 4.8717476073786914e-05 - syst_JES_Pileup_Pt_term: 0.00014278904824950687 - syst_JES_PunchThrough_MC15: 2.8290345968192044e-05 + syst_JES_MJB_Stat2: 5.24088096e-06 + syst_JES_MJB_Stat3: 4.69479127e-06 + syst_JES_MJB_Stat4: 6.94976192e-06 + syst_JES_MJB_Stat5: 7.57093466e-06 + syst_JES_MJB_Stat6: 4.63170505e-06 + syst_JES_MJB_Stat7: 5.48298492e-06 + syst_JES_MJB_Stat8: 5.59933899e-06 + syst_JES_MJB_Stat9: 5.59933899e-06 + syst_JES_MJB_Threshold: 4.16201877e-05 + syst_JES_Pileup_MuOffset: 5.65292639e-05 + syst_JES_Pileup_NPVOffset: 4.87174761e-05 + syst_JES_Pileup_Pt_term: 1.42789048e-04 + syst_JES_PunchThrough_MC15: 2.82903460e-05 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.00023469527051050683 - syst_JES_Zjet_MuScale: 1.7366957825710293e-05 - syst_JES_Zjet_MuSmearID: 7.558901789777401e-06 - syst_JES_Zjet_MuSmearMS: 4.566554634513859e-05 - syst_JES_Zjet_OOC: 0.00011530383460665998 - syst_JES_Zjet_Stat1: 1.1841046677975728e-05 - syst_JES_Zjet_Stat10: 1.1912044386670157e-05 - syst_JES_Zjet_Stat11: 8.07864292564042e-06 - syst_JES_Zjet_Stat12: 4.1705688185186444e-05 - syst_JES_Zjet_Stat13: 5.658023572768145e-05 - syst_JES_Zjet_Stat2: 6.236864821967846e-09 - syst_JES_Zjet_Stat3: 7.558012699612247e-06 - syst_JES_Zjet_Stat4: 7.558012699612247e-06 - syst_JES_Zjet_Stat5: 7.563523376542179e-06 - syst_JES_Zjet_Stat6: 1.1649329872035557e-05 - syst_JES_Zjet_Stat7: 7.564310653820347e-06 - syst_JES_Zjet_Stat8: 7.564200341576101e-06 - syst_JES_Zjet_Stat9: 1.1775135845819358e-05 - syst_JES_Zjet_Veto: 1.606975907566756e-05 - syst_JES_Zjet_dPhi: 1.6789195833928434e-05 + syst_JES_Zjet_MC: 2.34695271e-04 + syst_JES_Zjet_MuScale: 1.73669578e-05 + syst_JES_Zjet_MuSmearID: 7.55890179e-06 + syst_JES_Zjet_MuSmearMS: 4.56655463e-05 + syst_JES_Zjet_OOC: 1.15303835e-04 + syst_JES_Zjet_Stat1: 1.18410467e-05 + syst_JES_Zjet_Stat10: 1.19120444e-05 + syst_JES_Zjet_Stat11: 8.07864293e-06 + syst_JES_Zjet_Stat12: 4.17056882e-05 + syst_JES_Zjet_Stat13: 5.65802357e-05 + syst_JES_Zjet_Stat2: 6.23686482e-09 + syst_JES_Zjet_Stat3: 7.55801270e-06 + syst_JES_Zjet_Stat4: 7.55801270e-06 + syst_JES_Zjet_Stat5: 7.56352338e-06 + syst_JES_Zjet_Stat6: 1.16493299e-05 + syst_JES_Zjet_Stat7: 7.56431065e-06 + syst_JES_Zjet_Stat8: 7.56420034e-06 + syst_JES_Zjet_Stat9: 1.17751358e-05 + syst_JES_Zjet_Veto: 1.60697591e-05 + syst_JES_Zjet_dPhi: 1.67891958e-05 syst_PRW: 0.0 - syst_Unfolding_bias: 5.053e-05 - syst_cleaning: 4.7588095937954906e-05 - syst_lumi: 0.0001671 + syst_Unfolding_bias: 5.05300000e-05 + syst_cleaning: 4.75880959e-05 + syst_lumi: 1.67100000e-04 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 4.565078394726644e-05 - syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 2.3555184142774177e-05 - syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 8.287710540312083e-05 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 1.9900703976241646e-05 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 2.1803132802420846e-05 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.00010241562820194973 -- stat: 0.00015385 - syst_JER_CROSS_CALIB_FORWARD: 1.864e-09 - syst_JER_NOISE_FORWARD: 9.556e-08 - syst_JER_NP0: 4.5854608001813737e-07 - syst_JER_NP1: 0.00011915958742375706 - syst_JER_NP2: 6.995332619495428e-08 - syst_JER_NP3: 4.7305251259770304e-08 - syst_JER_NP4: 4.5250861594007243e-08 - syst_JER_NP5: 1.0927637747930703e-10 - syst_JER_NP6: 8.02228787503914e-11 - syst_JER_NP7: 5.744241049652839e-14 - syst_JER_NP8: 4.3390238323091754e-08 - syst_JES_EtaIntercalibration_Modelling: 0.00029764839576251707 - syst_JES_EtaIntercalibration_NonClosure: 0.0002185345910834255 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 4.56507839e-05 + syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 2.35551841e-05 + syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 8.28771054e-05 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 1.99007040e-05 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 2.18031328e-05 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.02415628e-04 +- stat: 1.53850000e-04 + syst_JER_CROSS_CALIB_FORWARD: 1.86400000e-09 + syst_JER_NOISE_FORWARD: 9.55600000e-08 + syst_JER_NP0: 4.58546080e-07 + syst_JER_NP1: 1.19159587e-04 + syst_JER_NP2: 6.99533262e-08 + syst_JER_NP3: 4.73052513e-08 + syst_JER_NP4: 4.52508616e-08 + syst_JER_NP5: 1.09276377e-10 + syst_JER_NP6: 8.02228788e-11 + syst_JER_NP7: 5.74424105e-14 + syst_JER_NP8: 4.33902383e-08 + syst_JES_EtaIntercalibration_Modelling: 2.97648396e-04 + syst_JES_EtaIntercalibration_NonClosure: 2.18534591e-04 syst_JES_EtaIntercalibration_Stat0: 0.0 - syst_JES_EtaIntercalibration_Stat1: 3.2553894928257044e-20 + syst_JES_EtaIntercalibration_Stat1: 3.25538949e-20 syst_JES_EtaIntercalibration_Stat10: 0.0 syst_JES_EtaIntercalibration_Stat100: 0.0 syst_JES_EtaIntercalibration_Stat101: 0.0 syst_JES_EtaIntercalibration_Stat102: 0.0 - syst_JES_EtaIntercalibration_Stat103: 2.560428346976341e-19 - syst_JES_EtaIntercalibration_Stat104: 5.548928099360722e-12 - syst_JES_EtaIntercalibration_Stat105: 5.354490545327352e-11 - syst_JES_EtaIntercalibration_Stat106: 2.3615109307549266e-11 - syst_JES_EtaIntercalibration_Stat107: 5.035331642503799e-17 - syst_JES_EtaIntercalibration_Stat108: 1.4683944522845352e-12 - syst_JES_EtaIntercalibration_Stat109: 3.1593049425466986e-09 + syst_JES_EtaIntercalibration_Stat103: 2.56042835e-19 + syst_JES_EtaIntercalibration_Stat104: 5.54892810e-12 + syst_JES_EtaIntercalibration_Stat105: 5.35449055e-11 + syst_JES_EtaIntercalibration_Stat106: 2.36151093e-11 + syst_JES_EtaIntercalibration_Stat107: 5.03533164e-17 + syst_JES_EtaIntercalibration_Stat108: 1.46839445e-12 + syst_JES_EtaIntercalibration_Stat109: 3.15930494e-09 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 5.48154502930515e-07 - syst_JES_EtaIntercalibration_Stat111: 3.300875464176133e-11 - syst_JES_EtaIntercalibration_Stat112: 4.592522240343831e-12 + syst_JES_EtaIntercalibration_Stat110: 5.48154503e-07 + syst_JES_EtaIntercalibration_Stat111: 3.30087546e-11 + syst_JES_EtaIntercalibration_Stat112: 4.59252224e-12 syst_JES_EtaIntercalibration_Stat113: 0.0 syst_JES_EtaIntercalibration_Stat114: 0.0 syst_JES_EtaIntercalibration_Stat115: 0.0 syst_JES_EtaIntercalibration_Stat116: 0.0 syst_JES_EtaIntercalibration_Stat117: 0.0 - syst_JES_EtaIntercalibration_Stat118: 1.6653668514774757e-19 - syst_JES_EtaIntercalibration_Stat119: 1.6653668514774757e-19 + syst_JES_EtaIntercalibration_Stat118: 1.66536685e-19 + syst_JES_EtaIntercalibration_Stat119: 1.66536685e-19 syst_JES_EtaIntercalibration_Stat12: 0.0 syst_JES_EtaIntercalibration_Stat120: 0.0 syst_JES_EtaIntercalibration_Stat121: 0.0 syst_JES_EtaIntercalibration_Stat122: 0.0 - syst_JES_EtaIntercalibration_Stat123: 9.849884264802304e-16 - syst_JES_EtaIntercalibration_Stat124: 4.02804273407073e-10 - syst_JES_EtaIntercalibration_Stat125: 6.272910867372499e-07 - syst_JES_EtaIntercalibration_Stat126: 2.0159622500619896e-08 - syst_JES_EtaIntercalibration_Stat127: 3.255802676760371e-12 - syst_JES_EtaIntercalibration_Stat128: 5.483561951870336e-07 - syst_JES_EtaIntercalibration_Stat129: 2.3479279561988272e-07 + syst_JES_EtaIntercalibration_Stat123: 9.84988426e-16 + syst_JES_EtaIntercalibration_Stat124: 4.02804273e-10 + syst_JES_EtaIntercalibration_Stat125: 6.27291087e-07 + syst_JES_EtaIntercalibration_Stat126: 2.01596225e-08 + syst_JES_EtaIntercalibration_Stat127: 3.25580268e-12 + syst_JES_EtaIntercalibration_Stat128: 5.48356195e-07 + syst_JES_EtaIntercalibration_Stat129: 2.34792796e-07 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 1.0742678456977106e-07 - syst_JES_EtaIntercalibration_Stat131: 1.1197308621927861e-11 + syst_JES_EtaIntercalibration_Stat130: 1.07426785e-07 + syst_JES_EtaIntercalibration_Stat131: 1.11973086e-11 syst_JES_EtaIntercalibration_Stat132: 0.0 syst_JES_EtaIntercalibration_Stat133: 0.0 syst_JES_EtaIntercalibration_Stat134: 0.0 syst_JES_EtaIntercalibration_Stat135: 0.0 syst_JES_EtaIntercalibration_Stat136: 0.0 - syst_JES_EtaIntercalibration_Stat137: 1.6653668514774757e-19 - syst_JES_EtaIntercalibration_Stat138: 1.6653668514774757e-19 - syst_JES_EtaIntercalibration_Stat139: 9.093266739736605e-19 + syst_JES_EtaIntercalibration_Stat137: 1.66536685e-19 + syst_JES_EtaIntercalibration_Stat138: 1.66536685e-19 + syst_JES_EtaIntercalibration_Stat139: 9.09326674e-19 syst_JES_EtaIntercalibration_Stat14: 0.0 syst_JES_EtaIntercalibration_Stat140: 0.0 syst_JES_EtaIntercalibration_Stat141: 0.0 - syst_JES_EtaIntercalibration_Stat142: 5.4712208467561945e-12 - syst_JES_EtaIntercalibration_Stat143: 1.0641190640415902e-06 - syst_JES_EtaIntercalibration_Stat144: 2.2661381296547217e-06 - syst_JES_EtaIntercalibration_Stat145: 1.0938356603599098e-06 - syst_JES_EtaIntercalibration_Stat146: 5.071493003051469e-07 - syst_JES_EtaIntercalibration_Stat147: 6.512508195772193e-07 - syst_JES_EtaIntercalibration_Stat148: 1.1740378763907065e-07 - syst_JES_EtaIntercalibration_Stat149: 1.163987142655794e-11 + syst_JES_EtaIntercalibration_Stat142: 5.47122085e-12 + syst_JES_EtaIntercalibration_Stat143: 1.06411906e-06 + syst_JES_EtaIntercalibration_Stat144: 2.26613813e-06 + syst_JES_EtaIntercalibration_Stat145: 1.09383566e-06 + syst_JES_EtaIntercalibration_Stat146: 5.07149300e-07 + syst_JES_EtaIntercalibration_Stat147: 6.51250820e-07 + syst_JES_EtaIntercalibration_Stat148: 1.17403788e-07 + syst_JES_EtaIntercalibration_Stat149: 1.16398714e-11 syst_JES_EtaIntercalibration_Stat15: 0.0 syst_JES_EtaIntercalibration_Stat150: 0.0 syst_JES_EtaIntercalibration_Stat151: 0.0 @@ -60612,60 +60612,60 @@ bins: syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 1.6653668514774757e-19 - syst_JES_EtaIntercalibration_Stat157: 9.093266739736605e-19 + syst_JES_EtaIntercalibration_Stat156: 1.66536685e-19 + syst_JES_EtaIntercalibration_Stat157: 9.09326674e-19 syst_JES_EtaIntercalibration_Stat158: 0.0 syst_JES_EtaIntercalibration_Stat159: 0.0 - syst_JES_EtaIntercalibration_Stat16: 2.6509037609841666e-21 - syst_JES_EtaIntercalibration_Stat160: 5.455636198403566e-12 - syst_JES_EtaIntercalibration_Stat161: 1.1032614348008137e-06 - syst_JES_EtaIntercalibration_Stat162: 3.0304952236062013e-06 - syst_JES_EtaIntercalibration_Stat163: 4.085866489191736e-06 - syst_JES_EtaIntercalibration_Stat164: 5.022164946514601e-07 - syst_JES_EtaIntercalibration_Stat165: 1.7068676479153266e-06 - syst_JES_EtaIntercalibration_Stat166: 2.3228501350711371e-07 - syst_JES_EtaIntercalibration_Stat167: 1.1823751760228223e-11 + syst_JES_EtaIntercalibration_Stat16: 2.65090376e-21 + syst_JES_EtaIntercalibration_Stat160: 5.45563620e-12 + syst_JES_EtaIntercalibration_Stat161: 1.10326143e-06 + syst_JES_EtaIntercalibration_Stat162: 3.03049522e-06 + syst_JES_EtaIntercalibration_Stat163: 4.08586649e-06 + syst_JES_EtaIntercalibration_Stat164: 5.02216495e-07 + syst_JES_EtaIntercalibration_Stat165: 1.70686765e-06 + syst_JES_EtaIntercalibration_Stat166: 2.32285014e-07 + syst_JES_EtaIntercalibration_Stat167: 1.18237518e-11 syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 - syst_JES_EtaIntercalibration_Stat17: 1.2600203440817929e-20 + syst_JES_EtaIntercalibration_Stat17: 1.26002034e-20 syst_JES_EtaIntercalibration_Stat170: 0.0 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 - syst_JES_EtaIntercalibration_Stat174: 9.093266739736605e-19 - syst_JES_EtaIntercalibration_Stat175: 9.093266739736605e-19 + syst_JES_EtaIntercalibration_Stat174: 9.09326674e-19 + syst_JES_EtaIntercalibration_Stat175: 9.09326674e-19 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 - syst_JES_EtaIntercalibration_Stat178: 3.904553825301298e-10 - syst_JES_EtaIntercalibration_Stat179: 2.691376895693912e-06 - syst_JES_EtaIntercalibration_Stat18: 4.260544184725702e-19 - syst_JES_EtaIntercalibration_Stat180: 5.650160949034991e-06 - syst_JES_EtaIntercalibration_Stat181: 6.089265700189145e-06 - syst_JES_EtaIntercalibration_Stat182: 4.029610496065346e-05 - syst_JES_EtaIntercalibration_Stat183: 8.473909748752343e-06 - syst_JES_EtaIntercalibration_Stat184: 1.0317118434765526e-08 + syst_JES_EtaIntercalibration_Stat178: 3.90455383e-10 + syst_JES_EtaIntercalibration_Stat179: 2.69137690e-06 + syst_JES_EtaIntercalibration_Stat18: 4.26054418e-19 + syst_JES_EtaIntercalibration_Stat180: 5.65016095e-06 + syst_JES_EtaIntercalibration_Stat181: 6.08926570e-06 + syst_JES_EtaIntercalibration_Stat182: 4.02961050e-05 + syst_JES_EtaIntercalibration_Stat183: 8.47390975e-06 + syst_JES_EtaIntercalibration_Stat184: 1.03171184e-08 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 syst_JES_EtaIntercalibration_Stat187: 0.0 - syst_JES_EtaIntercalibration_Stat188: 1.8662847451554653e-16 + syst_JES_EtaIntercalibration_Stat188: 1.86628475e-16 syst_JES_EtaIntercalibration_Stat189: 0.0 - syst_JES_EtaIntercalibration_Stat19: 2.610206158045759e-19 + syst_JES_EtaIntercalibration_Stat19: 2.61020616e-19 syst_JES_EtaIntercalibration_Stat190: 0.0 - syst_JES_EtaIntercalibration_Stat191: 9.093266739736605e-19 - syst_JES_EtaIntercalibration_Stat192: 9.093266739736605e-19 + syst_JES_EtaIntercalibration_Stat191: 9.09326674e-19 + syst_JES_EtaIntercalibration_Stat192: 9.09326674e-19 syst_JES_EtaIntercalibration_Stat193: 0.0 syst_JES_EtaIntercalibration_Stat194: 0.0 - syst_JES_EtaIntercalibration_Stat195: 2.1974770350308558e-07 - syst_JES_EtaIntercalibration_Stat196: 6.31102828388528e-06 - syst_JES_EtaIntercalibration_Stat197: 4.3276717470251827e-05 - syst_JES_EtaIntercalibration_Stat198: 1.4624389243657321e-05 - syst_JES_EtaIntercalibration_Stat199: 1.5484549998712938e-07 - syst_JES_EtaIntercalibration_Stat2: 9.352380193298387e-19 + syst_JES_EtaIntercalibration_Stat195: 2.19747704e-07 + syst_JES_EtaIntercalibration_Stat196: 6.31102828e-06 + syst_JES_EtaIntercalibration_Stat197: 4.32767175e-05 + syst_JES_EtaIntercalibration_Stat198: 1.46243892e-05 + syst_JES_EtaIntercalibration_Stat199: 1.54845500e-07 + syst_JES_EtaIntercalibration_Stat2: 9.35238019e-19 syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 syst_JES_EtaIntercalibration_Stat201: 0.0 syst_JES_EtaIntercalibration_Stat202: 0.0 - syst_JES_EtaIntercalibration_Stat203: 1.8662847451554653e-16 + syst_JES_EtaIntercalibration_Stat203: 1.86628475e-16 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 @@ -60673,9 +60673,9 @@ bins: syst_JES_EtaIntercalibration_Stat208: 0.0 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 1.1257096535125388e-06 - syst_JES_EtaIntercalibration_Stat211: 1.65658615456607e-05 - syst_JES_EtaIntercalibration_Stat212: 1.2288900479701184e-07 + syst_JES_EtaIntercalibration_Stat210: 1.12570965e-06 + syst_JES_EtaIntercalibration_Stat211: 1.65658615e-05 + syst_JES_EtaIntercalibration_Stat212: 1.22889005e-07 syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 syst_JES_EtaIntercalibration_Stat215: 0.0 @@ -60687,37 +60687,37 @@ bins: syst_JES_EtaIntercalibration_Stat220: 0.0 syst_JES_EtaIntercalibration_Stat221: 0.0 syst_JES_EtaIntercalibration_Stat222: 0.0 - syst_JES_EtaIntercalibration_Stat223: 1.1287775112926373e-06 - syst_JES_EtaIntercalibration_Stat224: 1.2583349116987894e-07 + syst_JES_EtaIntercalibration_Stat223: 1.12877751e-06 + syst_JES_EtaIntercalibration_Stat224: 1.25833491e-07 syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 syst_JES_EtaIntercalibration_Stat227: 0.0 syst_JES_EtaIntercalibration_Stat228: 0.0 syst_JES_EtaIntercalibration_Stat229: 0.0 - syst_JES_EtaIntercalibration_Stat23: 7.351111834783905e-19 + syst_JES_EtaIntercalibration_Stat23: 7.35111183e-19 syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 syst_JES_EtaIntercalibration_Stat232: 0.0 syst_JES_EtaIntercalibration_Stat233: 0.0 syst_JES_EtaIntercalibration_Stat234: 0.0 - syst_JES_EtaIntercalibration_Stat235: 2.402354470098033e-06 + syst_JES_EtaIntercalibration_Stat235: 2.40235447e-06 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 syst_JES_EtaIntercalibration_Stat239: 0.0 - syst_JES_EtaIntercalibration_Stat24: 2.617206287246002e-16 + syst_JES_EtaIntercalibration_Stat24: 2.61720629e-16 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 syst_JES_EtaIntercalibration_Stat243: 0.0 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 - syst_JES_EtaIntercalibration_Stat25: 4.815044378726612e-12 - syst_JES_EtaIntercalibration_Stat26: 1.63261469734901e-18 + syst_JES_EtaIntercalibration_Stat25: 4.81504438e-12 + syst_JES_EtaIntercalibration_Stat26: 1.63261470e-18 syst_JES_EtaIntercalibration_Stat27: 0.0 syst_JES_EtaIntercalibration_Stat28: 0.0 syst_JES_EtaIntercalibration_Stat29: 0.0 - syst_JES_EtaIntercalibration_Stat3: 1.4170966330847025e-18 + syst_JES_EtaIntercalibration_Stat3: 1.41709663e-18 syst_JES_EtaIntercalibration_Stat30: 0.0 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 @@ -60726,19 +60726,19 @@ bins: syst_JES_EtaIntercalibration_Stat35: 0.0 syst_JES_EtaIntercalibration_Stat36: 0.0 syst_JES_EtaIntercalibration_Stat37: 0.0 - syst_JES_EtaIntercalibration_Stat38: 2.6509037609841666e-21 - syst_JES_EtaIntercalibration_Stat39: 6.514580723269918e-19 + syst_JES_EtaIntercalibration_Stat38: 2.65090376e-21 + syst_JES_EtaIntercalibration_Stat39: 6.51458072e-19 syst_JES_EtaIntercalibration_Stat4: 0.0 - syst_JES_EtaIntercalibration_Stat40: 1.9157664262639116e-16 - syst_JES_EtaIntercalibration_Stat41: 3.5531304507434006e-17 - syst_JES_EtaIntercalibration_Stat42: 4.3950789242060265e-20 + syst_JES_EtaIntercalibration_Stat40: 1.91576643e-16 + syst_JES_EtaIntercalibration_Stat41: 3.55313045e-17 + syst_JES_EtaIntercalibration_Stat42: 4.39507892e-20 syst_JES_EtaIntercalibration_Stat43: 0.0 - syst_JES_EtaIntercalibration_Stat44: 1.5675059808498337e-19 - syst_JES_EtaIntercalibration_Stat45: 3.8724676886967046e-18 - syst_JES_EtaIntercalibration_Stat46: 1.3963870422028414e-12 - syst_JES_EtaIntercalibration_Stat47: 4.793788182465591e-12 - syst_JES_EtaIntercalibration_Stat48: 1.2716578034990386e-16 - syst_JES_EtaIntercalibration_Stat49: 8.865502058541298e-20 + syst_JES_EtaIntercalibration_Stat44: 1.56750598e-19 + syst_JES_EtaIntercalibration_Stat45: 3.87246769e-18 + syst_JES_EtaIntercalibration_Stat46: 1.39638704e-12 + syst_JES_EtaIntercalibration_Stat47: 4.79378818e-12 + syst_JES_EtaIntercalibration_Stat48: 1.27165780e-16 + syst_JES_EtaIntercalibration_Stat49: 8.86550206e-20 syst_JES_EtaIntercalibration_Stat5: 0.0 syst_JES_EtaIntercalibration_Stat50: 0.0 syst_JES_EtaIntercalibration_Stat51: 0.0 @@ -60749,21 +60749,21 @@ bins: syst_JES_EtaIntercalibration_Stat56: 0.0 syst_JES_EtaIntercalibration_Stat57: 0.0 syst_JES_EtaIntercalibration_Stat58: 0.0 - syst_JES_EtaIntercalibration_Stat59: 2.6509037609841666e-21 + syst_JES_EtaIntercalibration_Stat59: 2.65090376e-21 syst_JES_EtaIntercalibration_Stat6: 0.0 - syst_JES_EtaIntercalibration_Stat60: 9.070833313428265e-21 - syst_JES_EtaIntercalibration_Stat61: 1.1006624686978292e-16 - syst_JES_EtaIntercalibration_Stat62: 1.6194062245156404e-11 - syst_JES_EtaIntercalibration_Stat63: 6.647721019266678e-16 - syst_JES_EtaIntercalibration_Stat64: 4.424264769427797e-19 + syst_JES_EtaIntercalibration_Stat60: 9.07083331e-21 + syst_JES_EtaIntercalibration_Stat61: 1.10066247e-16 + syst_JES_EtaIntercalibration_Stat62: 1.61940622e-11 + syst_JES_EtaIntercalibration_Stat63: 6.64772102e-16 + syst_JES_EtaIntercalibration_Stat64: 4.42426477e-19 syst_JES_EtaIntercalibration_Stat65: 0.0 - syst_JES_EtaIntercalibration_Stat66: 1.5675059808498337e-19 - syst_JES_EtaIntercalibration_Stat67: 3.228999961288324e-16 - syst_JES_EtaIntercalibration_Stat68: 1.8273903158101583e-11 - syst_JES_EtaIntercalibration_Stat69: 1.884100575042373e-11 + syst_JES_EtaIntercalibration_Stat66: 1.56750598e-19 + syst_JES_EtaIntercalibration_Stat67: 3.22899996e-16 + syst_JES_EtaIntercalibration_Stat68: 1.82739032e-11 + syst_JES_EtaIntercalibration_Stat69: 1.88410058e-11 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 4.8143967521474585e-12 - syst_JES_EtaIntercalibration_Stat71: 1.2767826890567556e-18 + syst_JES_EtaIntercalibration_Stat70: 4.81439675e-12 + syst_JES_EtaIntercalibration_Stat71: 1.27678269e-18 syst_JES_EtaIntercalibration_Stat72: 0.0 syst_JES_EtaIntercalibration_Stat73: 0.0 syst_JES_EtaIntercalibration_Stat74: 0.0 @@ -60774,19 +60774,19 @@ bins: syst_JES_EtaIntercalibration_Stat79: 0.0 syst_JES_EtaIntercalibration_Stat8: 0.0 syst_JES_EtaIntercalibration_Stat80: 0.0 - syst_JES_EtaIntercalibration_Stat81: 2.6509037609841666e-21 - syst_JES_EtaIntercalibration_Stat82: 1.267106534589732e-19 - syst_JES_EtaIntercalibration_Stat83: 1.3796378764009054e-15 - syst_JES_EtaIntercalibration_Stat84: 2.0902441077539246e-11 - syst_JES_EtaIntercalibration_Stat85: 2.2915972091558213e-11 - syst_JES_EtaIntercalibration_Stat86: 3.1947924690032685e-17 + syst_JES_EtaIntercalibration_Stat81: 2.65090376e-21 + syst_JES_EtaIntercalibration_Stat82: 1.26710653e-19 + syst_JES_EtaIntercalibration_Stat83: 1.37963788e-15 + syst_JES_EtaIntercalibration_Stat84: 2.09024411e-11 + syst_JES_EtaIntercalibration_Stat85: 2.29159721e-11 + syst_JES_EtaIntercalibration_Stat86: 3.19479247e-17 syst_JES_EtaIntercalibration_Stat87: 0.0 - syst_JES_EtaIntercalibration_Stat88: 9.546881205398967e-16 - syst_JES_EtaIntercalibration_Stat89: 1.2307480618456198e-10 + syst_JES_EtaIntercalibration_Stat88: 9.54688121e-16 + syst_JES_EtaIntercalibration_Stat89: 1.23074806e-10 syst_JES_EtaIntercalibration_Stat9: 0.0 - syst_JES_EtaIntercalibration_Stat90: 3.098104020473651e-11 - syst_JES_EtaIntercalibration_Stat91: 4.8771409239302286e-12 - syst_JES_EtaIntercalibration_Stat92: 1.4507566290991056e-18 + syst_JES_EtaIntercalibration_Stat90: 3.09810402e-11 + syst_JES_EtaIntercalibration_Stat91: 4.87714092e-12 + syst_JES_EtaIntercalibration_Stat92: 1.45075663e-18 syst_JES_EtaIntercalibration_Stat93: 0.0 syst_JES_EtaIntercalibration_Stat94: 0.0 syst_JES_EtaIntercalibration_Stat95: 0.0 @@ -60794,159 +60794,159 @@ bins: syst_JES_EtaIntercalibration_Stat97: 0.0 syst_JES_EtaIntercalibration_Stat98: 0.0 syst_JES_EtaIntercalibration_Stat99: 0.0 - syst_JES_EtaIntercalibration_TotalStat_MJB: 4.4159443780464445e-05 - syst_JES_Flavour_Comp: 0.00012299179972664843 - syst_JES_Gjet_Generator: 0.00016963425855351272 - syst_JES_Gjet_OOC: 0.00013794807247656635 - syst_JES_Gjet_Purity: 2.6931915546429292e-05 - syst_JES_Gjet_Stat1: 9.285837248600688e-07 - syst_JES_Gjet_Stat10: 5.198910816344131e-06 - syst_JES_Gjet_Stat11: 4.650408802460273e-06 - syst_JES_Gjet_Stat12: 1.2754615164715868e-05 - syst_JES_Gjet_Stat13: 3.865231170318278e-05 - syst_JES_Gjet_Stat14: 7.064649655149221e-05 - syst_JES_Gjet_Stat15: 2.8141842068350823e-05 - syst_JES_Gjet_Stat2: 8.762308609464745e-07 - syst_JES_Gjet_Stat3: 1.1903727760105235e-06 - syst_JES_Gjet_Stat4: 1.1902084115448018e-06 - syst_JES_Gjet_Stat5: 1.190048849075953e-06 - syst_JES_Gjet_Stat6: 2.727651355447576e-06 - syst_JES_Gjet_Stat7: 4.404521241142447e-06 - syst_JES_Gjet_Stat8: 2.727294710711514e-06 - syst_JES_Gjet_Stat9: 5.186231628251384e-06 - syst_JES_Gjet_Veto: 0.00013440834907103058 - syst_JES_Gjet_dPhi: 1.1353686082832305e-05 - syst_JES_LArESZee: 0.00025068643262051495 - syst_JES_LArEsmear: 1.7185984173156917e-05 - syst_JES_LAr_JVT: 1.984882170306338e-05 - syst_JES_MJB_Alpha: 2.341413160529342e-06 - syst_JES_MJB_Asym: 1.3985439526521862e-05 - syst_JES_MJB_Beta: 5.159431162141327e-06 - syst_JES_MJB_Stat1: 9.84350212068855e-09 - syst_JES_MJB_Stat10: 1.5924289999871268e-08 - syst_JES_MJB_Stat11: 1.6281277591147447e-06 - syst_JES_MJB_Stat12: 1.622931606692038e-06 - syst_JES_MJB_Stat13: 4.1196828458025746e-07 + syst_JES_EtaIntercalibration_TotalStat_MJB: 4.41594438e-05 + syst_JES_Flavour_Comp: 1.22991800e-04 + syst_JES_Gjet_Generator: 1.69634259e-04 + syst_JES_Gjet_OOC: 1.37948072e-04 + syst_JES_Gjet_Purity: 2.69319155e-05 + syst_JES_Gjet_Stat1: 9.28583725e-07 + syst_JES_Gjet_Stat10: 5.19891082e-06 + syst_JES_Gjet_Stat11: 4.65040880e-06 + syst_JES_Gjet_Stat12: 1.27546152e-05 + syst_JES_Gjet_Stat13: 3.86523117e-05 + syst_JES_Gjet_Stat14: 7.06464966e-05 + syst_JES_Gjet_Stat15: 2.81418421e-05 + syst_JES_Gjet_Stat2: 8.76230861e-07 + syst_JES_Gjet_Stat3: 1.19037278e-06 + syst_JES_Gjet_Stat4: 1.19020841e-06 + syst_JES_Gjet_Stat5: 1.19004885e-06 + syst_JES_Gjet_Stat6: 2.72765136e-06 + syst_JES_Gjet_Stat7: 4.40452124e-06 + syst_JES_Gjet_Stat8: 2.72729471e-06 + syst_JES_Gjet_Stat9: 5.18623163e-06 + syst_JES_Gjet_Veto: 1.34408349e-04 + syst_JES_Gjet_dPhi: 1.13536861e-05 + syst_JES_LArESZee: 2.50686433e-04 + syst_JES_LArEsmear: 1.71859842e-05 + syst_JES_LAr_JVT: 1.98488217e-05 + syst_JES_MJB_Alpha: 2.34141316e-06 + syst_JES_MJB_Asym: 1.39854395e-05 + syst_JES_MJB_Beta: 5.15943116e-06 + syst_JES_MJB_Stat1: 9.84350212e-09 + syst_JES_MJB_Stat10: 1.59242900e-08 + syst_JES_MJB_Stat11: 1.62812776e-06 + syst_JES_MJB_Stat12: 1.62293161e-06 + syst_JES_MJB_Stat13: 4.11968285e-07 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 1.49065344312486e-06 - syst_JES_MJB_Stat3: 2.339571645472735e-06 - syst_JES_MJB_Stat4: 2.047942622407913e-06 - syst_JES_MJB_Stat5: 2.7298198012094135e-06 - syst_JES_MJB_Stat6: 2.3184267311045224e-06 - syst_JES_MJB_Stat7: 2.638390407199056e-06 - syst_JES_MJB_Stat8: 2.6596074132222975e-06 - syst_JES_MJB_Stat9: 2.6596074132222975e-06 - syst_JES_MJB_Threshold: 1.5800171541790295e-05 - syst_JES_Pileup_MuOffset: 2.234261119475519e-05 - syst_JES_Pileup_NPVOffset: 2.029153041911822e-05 - syst_JES_Pileup_Pt_term: 4.901056289209501e-05 - syst_JES_PunchThrough_MC15: 1.1564102332217576e-05 + syst_JES_MJB_Stat2: 1.49065344e-06 + syst_JES_MJB_Stat3: 2.33957165e-06 + syst_JES_MJB_Stat4: 2.04794262e-06 + syst_JES_MJB_Stat5: 2.72981980e-06 + syst_JES_MJB_Stat6: 2.31842673e-06 + syst_JES_MJB_Stat7: 2.63839041e-06 + syst_JES_MJB_Stat8: 2.65960741e-06 + syst_JES_MJB_Stat9: 2.65960741e-06 + syst_JES_MJB_Threshold: 1.58001715e-05 + syst_JES_Pileup_MuOffset: 2.23426112e-05 + syst_JES_Pileup_NPVOffset: 2.02915304e-05 + syst_JES_Pileup_Pt_term: 4.90105629e-05 + syst_JES_PunchThrough_MC15: 1.15641023e-05 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 7.783965104623736e-05 - syst_JES_Zjet_MuScale: 6.133181985519425e-06 - syst_JES_Zjet_MuSmearID: 2.7283828442275105e-06 - syst_JES_Zjet_MuSmearMS: 1.480677610926835e-05 - syst_JES_Zjet_OOC: 4.2665418080689194e-05 - syst_JES_Zjet_Stat1: 5.193216149429946e-06 - syst_JES_Zjet_Stat10: 5.205374594769814e-06 - syst_JES_Zjet_Stat11: 3.4050692984871833e-06 - syst_JES_Zjet_Stat12: 1.6077147541386188e-05 - syst_JES_Zjet_Stat13: 1.9089371303162397e-05 - syst_JES_Zjet_Stat2: 8.380135480259255e-10 - syst_JES_Zjet_Stat3: 2.728647852302492e-06 - syst_JES_Zjet_Stat4: 2.728647852302492e-06 - syst_JES_Zjet_Stat5: 2.7277705484653585e-06 - syst_JES_Zjet_Stat6: 4.375053187182414e-06 - syst_JES_Zjet_Stat7: 2.7279853646372447e-06 - syst_JES_Zjet_Stat8: 2.727119362014615e-06 - syst_JES_Zjet_Stat9: 5.187906620466004e-06 - syst_JES_Zjet_Veto: 6.712826727243896e-06 - syst_JES_Zjet_dPhi: 6.843926650688184e-06 + syst_JES_Zjet_MC: 7.78396510e-05 + syst_JES_Zjet_MuScale: 6.13318199e-06 + syst_JES_Zjet_MuSmearID: 2.72838284e-06 + syst_JES_Zjet_MuSmearMS: 1.48067761e-05 + syst_JES_Zjet_OOC: 4.26654181e-05 + syst_JES_Zjet_Stat1: 5.19321615e-06 + syst_JES_Zjet_Stat10: 5.20537459e-06 + syst_JES_Zjet_Stat11: 3.40506930e-06 + syst_JES_Zjet_Stat12: 1.60771475e-05 + syst_JES_Zjet_Stat13: 1.90893713e-05 + syst_JES_Zjet_Stat2: 8.38013548e-10 + syst_JES_Zjet_Stat3: 2.72864785e-06 + syst_JES_Zjet_Stat4: 2.72864785e-06 + syst_JES_Zjet_Stat5: 2.72777055e-06 + syst_JES_Zjet_Stat6: 4.37505319e-06 + syst_JES_Zjet_Stat7: 2.72798536e-06 + syst_JES_Zjet_Stat8: 2.72711936e-06 + syst_JES_Zjet_Stat9: 5.18790662e-06 + syst_JES_Zjet_Veto: 6.71282673e-06 + syst_JES_Zjet_dPhi: 6.84392665e-06 syst_PRW: 0.0 - syst_Unfolding_bias: 3.335e-05 - syst_cleaning: 1.5986828953860737e-05 - syst_lumi: 5.431e-05 + syst_Unfolding_bias: 3.33500000e-05 + syst_cleaning: 1.59868290e-05 + syst_lumi: 5.43100000e-05 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 2.5874931241454538e-05 - syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 7.894412707731968e-06 - syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 2.9801483184566503e-05 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 1.1279742583498969e-05 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 7.590330822829792e-06 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 3.792995781700792e-05 -- stat: 6.774e-05 - syst_JER_CROSS_CALIB_FORWARD: 2.919e-10 - syst_JER_NOISE_FORWARD: 8.194e-09 - syst_JER_NP0: 4.501780397798187e-08 - syst_JER_NP1: 4.453493095312936e-05 - syst_JER_NP2: 6.2108951796650855e-09 - syst_JER_NP3: 4.07494328181387e-09 - syst_JER_NP4: 3.9012233978586765e-09 - syst_JER_NP5: 7.980801964715077e-12 - syst_JER_NP6: 5.859554505250378e-12 - syst_JER_NP7: 4.5602377072695455e-15 - syst_JER_NP8: 3.744916410532416e-09 - syst_JES_EtaIntercalibration_Modelling: 9.890248265336923e-05 - syst_JES_EtaIntercalibration_NonClosure: 5.575094259292842e-05 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 2.58749312e-05 + syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 7.89441271e-06 + syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 2.98014832e-05 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 1.12797426e-05 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 7.59033082e-06 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 3.79299578e-05 +- stat: 6.77400000e-05 + syst_JER_CROSS_CALIB_FORWARD: 2.91900000e-10 + syst_JER_NOISE_FORWARD: 8.19400000e-09 + syst_JER_NP0: 4.50178040e-08 + syst_JER_NP1: 4.45349310e-05 + syst_JER_NP2: 6.21089518e-09 + syst_JER_NP3: 4.07494328e-09 + syst_JER_NP4: 3.90122340e-09 + syst_JER_NP5: 7.98080196e-12 + syst_JER_NP6: 5.85955451e-12 + syst_JER_NP7: 4.56023771e-15 + syst_JER_NP8: 3.74491641e-09 + syst_JES_EtaIntercalibration_Modelling: 9.89024827e-05 + syst_JES_EtaIntercalibration_NonClosure: 5.57509426e-05 syst_JES_EtaIntercalibration_Stat0: 0.0 - syst_JES_EtaIntercalibration_Stat1: 3.1687869524472608e-21 + syst_JES_EtaIntercalibration_Stat1: 3.16878695e-21 syst_JES_EtaIntercalibration_Stat10: 0.0 syst_JES_EtaIntercalibration_Stat100: 0.0 syst_JES_EtaIntercalibration_Stat101: 0.0 syst_JES_EtaIntercalibration_Stat102: 0.0 - syst_JES_EtaIntercalibration_Stat103: 2.3510976558833112e-20 - syst_JES_EtaIntercalibration_Stat104: 4.718536398380408e-13 - syst_JES_EtaIntercalibration_Stat105: 4.3897155944320586e-12 - syst_JES_EtaIntercalibration_Stat106: 1.858863003794255e-12 - syst_JES_EtaIntercalibration_Stat107: 4.264692573914326e-18 - syst_JES_EtaIntercalibration_Stat108: 1.1035776134010693e-13 - syst_JES_EtaIntercalibration_Stat109: 4.170236564033268e-10 + syst_JES_EtaIntercalibration_Stat103: 2.35109766e-20 + syst_JES_EtaIntercalibration_Stat104: 4.71853640e-13 + syst_JES_EtaIntercalibration_Stat105: 4.38971559e-12 + syst_JES_EtaIntercalibration_Stat106: 1.85886300e-12 + syst_JES_EtaIntercalibration_Stat107: 4.26469257e-18 + syst_JES_EtaIntercalibration_Stat108: 1.10357761e-13 + syst_JES_EtaIntercalibration_Stat109: 4.17023656e-10 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 1.0190972155628726e-07 - syst_JES_EtaIntercalibration_Stat111: 2.6797512720400005e-12 - syst_JES_EtaIntercalibration_Stat112: 3.4710212592347144e-13 + syst_JES_EtaIntercalibration_Stat110: 1.01909722e-07 + syst_JES_EtaIntercalibration_Stat111: 2.67975127e-12 + syst_JES_EtaIntercalibration_Stat112: 3.47102126e-13 syst_JES_EtaIntercalibration_Stat113: 0.0 syst_JES_EtaIntercalibration_Stat114: 0.0 syst_JES_EtaIntercalibration_Stat115: 0.0 syst_JES_EtaIntercalibration_Stat116: 0.0 syst_JES_EtaIntercalibration_Stat117: 0.0 - syst_JES_EtaIntercalibration_Stat118: 1.5051521517773542e-20 - syst_JES_EtaIntercalibration_Stat119: 1.5051521517773542e-20 + syst_JES_EtaIntercalibration_Stat118: 1.50515215e-20 + syst_JES_EtaIntercalibration_Stat119: 1.50515215e-20 syst_JES_EtaIntercalibration_Stat12: 0.0 syst_JES_EtaIntercalibration_Stat120: 0.0 syst_JES_EtaIntercalibration_Stat121: 0.0 syst_JES_EtaIntercalibration_Stat122: 0.0 - syst_JES_EtaIntercalibration_Stat123: 7.65088836345166e-17 - syst_JES_EtaIntercalibration_Stat124: 4.019137990601965e-11 - syst_JES_EtaIntercalibration_Stat125: 1.6577402847475838e-07 - syst_JES_EtaIntercalibration_Stat126: 3.2425467640112765e-09 - syst_JES_EtaIntercalibration_Stat127: 2.4472878866206155e-13 - syst_JES_EtaIntercalibration_Stat128: 1.0280542377107348e-07 - syst_JES_EtaIntercalibration_Stat129: 3.7978048742233974e-08 + syst_JES_EtaIntercalibration_Stat123: 7.65088836e-17 + syst_JES_EtaIntercalibration_Stat124: 4.01913799e-11 + syst_JES_EtaIntercalibration_Stat125: 1.65774028e-07 + syst_JES_EtaIntercalibration_Stat126: 3.24254676e-09 + syst_JES_EtaIntercalibration_Stat127: 2.44728789e-13 + syst_JES_EtaIntercalibration_Stat128: 1.02805424e-07 + syst_JES_EtaIntercalibration_Stat129: 3.79780487e-08 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 5.363510062216719e-09 - syst_JES_EtaIntercalibration_Stat131: 8.9265742546175e-13 + syst_JES_EtaIntercalibration_Stat130: 5.36351006e-09 + syst_JES_EtaIntercalibration_Stat131: 8.92657425e-13 syst_JES_EtaIntercalibration_Stat132: 0.0 syst_JES_EtaIntercalibration_Stat133: 0.0 syst_JES_EtaIntercalibration_Stat134: 0.0 syst_JES_EtaIntercalibration_Stat135: 0.0 syst_JES_EtaIntercalibration_Stat136: 0.0 - syst_JES_EtaIntercalibration_Stat137: 1.5051521517773542e-20 - syst_JES_EtaIntercalibration_Stat138: 1.5051521517773542e-20 - syst_JES_EtaIntercalibration_Stat139: 8.571919446658374e-20 + syst_JES_EtaIntercalibration_Stat137: 1.50515215e-20 + syst_JES_EtaIntercalibration_Stat138: 1.50515215e-20 + syst_JES_EtaIntercalibration_Stat139: 8.57191945e-20 syst_JES_EtaIntercalibration_Stat14: 0.0 syst_JES_EtaIntercalibration_Stat140: 0.0 syst_JES_EtaIntercalibration_Stat141: 0.0 - syst_JES_EtaIntercalibration_Stat142: 4.658096639399187e-13 - syst_JES_EtaIntercalibration_Stat143: 2.3487865796619327e-07 - syst_JES_EtaIntercalibration_Stat144: 1.0384196323259687e-06 - syst_JES_EtaIntercalibration_Stat145: 1.725099318785733e-07 - syst_JES_EtaIntercalibration_Stat146: 5.8691947275584585e-08 - syst_JES_EtaIntercalibration_Stat147: 2.994344582153998e-07 - syst_JES_EtaIntercalibration_Stat148: 4.200085928585271e-09 - syst_JES_EtaIntercalibration_Stat149: 9.251776679600518e-13 + syst_JES_EtaIntercalibration_Stat142: 4.65809664e-13 + syst_JES_EtaIntercalibration_Stat143: 2.34878658e-07 + syst_JES_EtaIntercalibration_Stat144: 1.03841963e-06 + syst_JES_EtaIntercalibration_Stat145: 1.72509932e-07 + syst_JES_EtaIntercalibration_Stat146: 5.86919473e-08 + syst_JES_EtaIntercalibration_Stat147: 2.99434458e-07 + syst_JES_EtaIntercalibration_Stat148: 4.20008593e-09 + syst_JES_EtaIntercalibration_Stat149: 9.25177668e-13 syst_JES_EtaIntercalibration_Stat15: 0.0 syst_JES_EtaIntercalibration_Stat150: 0.0 syst_JES_EtaIntercalibration_Stat151: 0.0 @@ -60954,60 +60954,60 @@ bins: syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 1.5051521517773542e-20 - syst_JES_EtaIntercalibration_Stat157: 8.571919446658374e-20 + syst_JES_EtaIntercalibration_Stat156: 1.50515215e-20 + syst_JES_EtaIntercalibration_Stat157: 8.57191945e-20 syst_JES_EtaIntercalibration_Stat158: 0.0 syst_JES_EtaIntercalibration_Stat159: 0.0 - syst_JES_EtaIntercalibration_Stat16: 3.1878395113305184e-22 - syst_JES_EtaIntercalibration_Stat160: 4.646841281345214e-13 - syst_JES_EtaIntercalibration_Stat161: 2.4119813249847107e-07 - syst_JES_EtaIntercalibration_Stat162: 8.531170592597478e-07 - syst_JES_EtaIntercalibration_Stat163: 7.975283347160777e-07 - syst_JES_EtaIntercalibration_Stat164: 1.8170002559163277e-07 - syst_JES_EtaIntercalibration_Stat165: 9.823938568619003e-07 - syst_JES_EtaIntercalibration_Stat166: 7.32189306122399e-08 - syst_JES_EtaIntercalibration_Stat167: 9.386813165686213e-13 + syst_JES_EtaIntercalibration_Stat16: 3.18783951e-22 + syst_JES_EtaIntercalibration_Stat160: 4.64684128e-13 + syst_JES_EtaIntercalibration_Stat161: 2.41198132e-07 + syst_JES_EtaIntercalibration_Stat162: 8.53117059e-07 + syst_JES_EtaIntercalibration_Stat163: 7.97528335e-07 + syst_JES_EtaIntercalibration_Stat164: 1.81700026e-07 + syst_JES_EtaIntercalibration_Stat165: 9.82393857e-07 + syst_JES_EtaIntercalibration_Stat166: 7.32189306e-08 + syst_JES_EtaIntercalibration_Stat167: 9.38681317e-13 syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 - syst_JES_EtaIntercalibration_Stat17: 1.4458591451106155e-21 + syst_JES_EtaIntercalibration_Stat17: 1.44585915e-21 syst_JES_EtaIntercalibration_Stat170: 0.0 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 - syst_JES_EtaIntercalibration_Stat174: 8.571919446658374e-20 - syst_JES_EtaIntercalibration_Stat175: 8.571919446658374e-20 + syst_JES_EtaIntercalibration_Stat174: 8.57191945e-20 + syst_JES_EtaIntercalibration_Stat175: 8.57191945e-20 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 - syst_JES_EtaIntercalibration_Stat178: 3.911486950956119e-11 - syst_JES_EtaIntercalibration_Stat179: 8.207398772004442e-07 - syst_JES_EtaIntercalibration_Stat18: 4.2612356189255714e-20 - syst_JES_EtaIntercalibration_Stat180: 2.32664413325287e-06 - syst_JES_EtaIntercalibration_Stat181: 1.0720257028168681e-06 - syst_JES_EtaIntercalibration_Stat182: 1.2956408327542013e-05 - syst_JES_EtaIntercalibration_Stat183: 2.2759787081605133e-06 - syst_JES_EtaIntercalibration_Stat184: 1.4220253470026712e-09 + syst_JES_EtaIntercalibration_Stat178: 3.91148695e-11 + syst_JES_EtaIntercalibration_Stat179: 8.20739877e-07 + syst_JES_EtaIntercalibration_Stat18: 4.26123562e-20 + syst_JES_EtaIntercalibration_Stat180: 2.32664413e-06 + syst_JES_EtaIntercalibration_Stat181: 1.07202570e-06 + syst_JES_EtaIntercalibration_Stat182: 1.29564083e-05 + syst_JES_EtaIntercalibration_Stat183: 2.27597871e-06 + syst_JES_EtaIntercalibration_Stat184: 1.42202535e-09 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 syst_JES_EtaIntercalibration_Stat187: 0.0 - syst_JES_EtaIntercalibration_Stat188: 1.4618508815881322e-17 + syst_JES_EtaIntercalibration_Stat188: 1.46185088e-17 syst_JES_EtaIntercalibration_Stat189: 0.0 - syst_JES_EtaIntercalibration_Stat19: 2.543136887782488e-20 + syst_JES_EtaIntercalibration_Stat19: 2.54313689e-20 syst_JES_EtaIntercalibration_Stat190: 0.0 - syst_JES_EtaIntercalibration_Stat191: 8.571919446658374e-20 - syst_JES_EtaIntercalibration_Stat192: 8.571919446658374e-20 + syst_JES_EtaIntercalibration_Stat191: 8.57191945e-20 + syst_JES_EtaIntercalibration_Stat192: 8.57191945e-20 syst_JES_EtaIntercalibration_Stat193: 0.0 syst_JES_EtaIntercalibration_Stat194: 0.0 - syst_JES_EtaIntercalibration_Stat195: 9.883517622248001e-08 - syst_JES_EtaIntercalibration_Stat196: 2.4863681480223317e-06 - syst_JES_EtaIntercalibration_Stat197: 1.3237087698961581e-05 - syst_JES_EtaIntercalibration_Stat198: 5.249981714253869e-06 - syst_JES_EtaIntercalibration_Stat199: 5.3061388123490686e-08 - syst_JES_EtaIntercalibration_Stat2: 8.52319024074906e-20 + syst_JES_EtaIntercalibration_Stat195: 9.88351762e-08 + syst_JES_EtaIntercalibration_Stat196: 2.48636815e-06 + syst_JES_EtaIntercalibration_Stat197: 1.32370877e-05 + syst_JES_EtaIntercalibration_Stat198: 5.24998171e-06 + syst_JES_EtaIntercalibration_Stat199: 5.30613881e-08 + syst_JES_EtaIntercalibration_Stat2: 8.52319024e-20 syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 syst_JES_EtaIntercalibration_Stat201: 0.0 syst_JES_EtaIntercalibration_Stat202: 0.0 - syst_JES_EtaIntercalibration_Stat203: 1.4618508815881322e-17 + syst_JES_EtaIntercalibration_Stat203: 1.46185088e-17 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 @@ -61015,9 +61015,9 @@ bins: syst_JES_EtaIntercalibration_Stat208: 0.0 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 2.450115480989296e-07 - syst_JES_EtaIntercalibration_Stat211: 5.925250883295998e-06 - syst_JES_EtaIntercalibration_Stat212: 3.13154786008453e-09 + syst_JES_EtaIntercalibration_Stat210: 2.45011548e-07 + syst_JES_EtaIntercalibration_Stat211: 5.92525088e-06 + syst_JES_EtaIntercalibration_Stat212: 3.13154786e-09 syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 syst_JES_EtaIntercalibration_Stat215: 0.0 @@ -61029,37 +61029,37 @@ bins: syst_JES_EtaIntercalibration_Stat220: 0.0 syst_JES_EtaIntercalibration_Stat221: 0.0 syst_JES_EtaIntercalibration_Stat222: 0.0 - syst_JES_EtaIntercalibration_Stat223: 2.456048045132668e-07 - syst_JES_EtaIntercalibration_Stat224: 2.2559961768584628e-09 + syst_JES_EtaIntercalibration_Stat223: 2.45604805e-07 + syst_JES_EtaIntercalibration_Stat224: 2.25599618e-09 syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 syst_JES_EtaIntercalibration_Stat227: 0.0 syst_JES_EtaIntercalibration_Stat228: 0.0 syst_JES_EtaIntercalibration_Stat229: 0.0 - syst_JES_EtaIntercalibration_Stat23: 6.675544833944268e-20 + syst_JES_EtaIntercalibration_Stat23: 6.67554483e-20 syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 syst_JES_EtaIntercalibration_Stat232: 0.0 syst_JES_EtaIntercalibration_Stat233: 0.0 syst_JES_EtaIntercalibration_Stat234: 0.0 - syst_JES_EtaIntercalibration_Stat235: 8.36840347676903e-07 + syst_JES_EtaIntercalibration_Stat235: 8.36840348e-07 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 syst_JES_EtaIntercalibration_Stat239: 0.0 - syst_JES_EtaIntercalibration_Stat24: 2.1113798965368598e-17 + syst_JES_EtaIntercalibration_Stat24: 2.11137990e-17 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 syst_JES_EtaIntercalibration_Stat243: 0.0 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 - syst_JES_EtaIntercalibration_Stat25: 3.638992965129978e-13 - syst_JES_EtaIntercalibration_Stat26: 1.5763565586503584e-19 + syst_JES_EtaIntercalibration_Stat25: 3.63899297e-13 + syst_JES_EtaIntercalibration_Stat26: 1.57635656e-19 syst_JES_EtaIntercalibration_Stat27: 0.0 syst_JES_EtaIntercalibration_Stat28: 0.0 syst_JES_EtaIntercalibration_Stat29: 0.0 - syst_JES_EtaIntercalibration_Stat3: 1.3673391194213672e-19 + syst_JES_EtaIntercalibration_Stat3: 1.36733912e-19 syst_JES_EtaIntercalibration_Stat30: 0.0 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 @@ -61068,19 +61068,19 @@ bins: syst_JES_EtaIntercalibration_Stat35: 0.0 syst_JES_EtaIntercalibration_Stat36: 0.0 syst_JES_EtaIntercalibration_Stat37: 0.0 - syst_JES_EtaIntercalibration_Stat38: 3.1878395113305184e-22 - syst_JES_EtaIntercalibration_Stat39: 6.420437601908456e-20 + syst_JES_EtaIntercalibration_Stat38: 3.18783951e-22 + syst_JES_EtaIntercalibration_Stat39: 6.42043760e-20 syst_JES_EtaIntercalibration_Stat4: 0.0 - syst_JES_EtaIntercalibration_Stat40: 1.5511425853221876e-17 - syst_JES_EtaIntercalibration_Stat41: 3.0406842568737714e-18 - syst_JES_EtaIntercalibration_Stat42: 4.560489776328854e-21 + syst_JES_EtaIntercalibration_Stat40: 1.55114259e-17 + syst_JES_EtaIntercalibration_Stat41: 3.04068426e-18 + syst_JES_EtaIntercalibration_Stat42: 4.56048978e-21 syst_JES_EtaIntercalibration_Stat43: 0.0 - syst_JES_EtaIntercalibration_Stat44: 1.7649597729126858e-20 - syst_JES_EtaIntercalibration_Stat45: 3.474192136310253e-19 - syst_JES_EtaIntercalibration_Stat46: 1.049403379391027e-13 - syst_JES_EtaIntercalibration_Stat47: 3.6230589629586493e-13 - syst_JES_EtaIntercalibration_Stat48: 1.020452502569326e-17 - syst_JES_EtaIntercalibration_Stat49: 9.539269822685591e-21 + syst_JES_EtaIntercalibration_Stat44: 1.76495977e-20 + syst_JES_EtaIntercalibration_Stat45: 3.47419214e-19 + syst_JES_EtaIntercalibration_Stat46: 1.04940338e-13 + syst_JES_EtaIntercalibration_Stat47: 3.62305896e-13 + syst_JES_EtaIntercalibration_Stat48: 1.02045250e-17 + syst_JES_EtaIntercalibration_Stat49: 9.53926982e-21 syst_JES_EtaIntercalibration_Stat5: 0.0 syst_JES_EtaIntercalibration_Stat50: 0.0 syst_JES_EtaIntercalibration_Stat51: 0.0 @@ -61091,21 +61091,21 @@ bins: syst_JES_EtaIntercalibration_Stat56: 0.0 syst_JES_EtaIntercalibration_Stat57: 0.0 syst_JES_EtaIntercalibration_Stat58: 0.0 - syst_JES_EtaIntercalibration_Stat59: 3.1878395113305184e-22 + syst_JES_EtaIntercalibration_Stat59: 3.18783951e-22 syst_JES_EtaIntercalibration_Stat6: 0.0 - syst_JES_EtaIntercalibration_Stat60: 1.0152811285550422e-21 - syst_JES_EtaIntercalibration_Stat61: 8.903286064706672e-18 - syst_JES_EtaIntercalibration_Stat62: 1.2888049774888364e-12 - syst_JES_EtaIntercalibration_Stat63: 5.1594337625363494e-17 - syst_JES_EtaIntercalibration_Stat64: 4.3992819868701307e-20 + syst_JES_EtaIntercalibration_Stat60: 1.01528113e-21 + syst_JES_EtaIntercalibration_Stat61: 8.90328606e-18 + syst_JES_EtaIntercalibration_Stat62: 1.28880498e-12 + syst_JES_EtaIntercalibration_Stat63: 5.15943376e-17 + syst_JES_EtaIntercalibration_Stat64: 4.39928199e-20 syst_JES_EtaIntercalibration_Stat65: 0.0 - syst_JES_EtaIntercalibration_Stat66: 1.7649597729126858e-20 - syst_JES_EtaIntercalibration_Stat67: 2.6211987715547255e-17 - syst_JES_EtaIntercalibration_Stat68: 1.4270939639416706e-12 - syst_JES_EtaIntercalibration_Stat69: 1.4731219700605241e-12 + syst_JES_EtaIntercalibration_Stat66: 1.76495977e-20 + syst_JES_EtaIntercalibration_Stat67: 2.62119877e-17 + syst_JES_EtaIntercalibration_Stat68: 1.42709396e-12 + syst_JES_EtaIntercalibration_Stat69: 1.47312197e-12 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 3.6383009965409334e-13 - syst_JES_EtaIntercalibration_Stat71: 1.2184306384341293e-19 + syst_JES_EtaIntercalibration_Stat70: 3.63830100e-13 + syst_JES_EtaIntercalibration_Stat71: 1.21843064e-19 syst_JES_EtaIntercalibration_Stat72: 0.0 syst_JES_EtaIntercalibration_Stat73: 0.0 syst_JES_EtaIntercalibration_Stat74: 0.0 @@ -61116,19 +61116,19 @@ bins: syst_JES_EtaIntercalibration_Stat79: 0.0 syst_JES_EtaIntercalibration_Stat8: 0.0 syst_JES_EtaIntercalibration_Stat80: 0.0 - syst_JES_EtaIntercalibration_Stat81: 3.1878395113305184e-22 - syst_JES_EtaIntercalibration_Stat82: 1.2521811240791006e-20 - syst_JES_EtaIntercalibration_Stat83: 1.0699111832297109e-16 - syst_JES_EtaIntercalibration_Stat84: 1.6376497397184787e-12 - syst_JES_EtaIntercalibration_Stat85: 1.8043860787536575e-12 - syst_JES_EtaIntercalibration_Stat86: 2.6931023504501272e-18 + syst_JES_EtaIntercalibration_Stat81: 3.18783951e-22 + syst_JES_EtaIntercalibration_Stat82: 1.25218112e-20 + syst_JES_EtaIntercalibration_Stat83: 1.06991118e-16 + syst_JES_EtaIntercalibration_Stat84: 1.63764974e-12 + syst_JES_EtaIntercalibration_Stat85: 1.80438608e-12 + syst_JES_EtaIntercalibration_Stat86: 2.69310235e-18 syst_JES_EtaIntercalibration_Stat87: 0.0 - syst_JES_EtaIntercalibration_Stat88: 7.28886525804943e-17 - syst_JES_EtaIntercalibration_Stat89: 1.76205049244928e-11 + syst_JES_EtaIntercalibration_Stat88: 7.28886526e-17 + syst_JES_EtaIntercalibration_Stat89: 1.76205049e-11 syst_JES_EtaIntercalibration_Stat9: 0.0 - syst_JES_EtaIntercalibration_Stat90: 2.5452016614946252e-12 - syst_JES_EtaIntercalibration_Stat91: 3.686650216988147e-13 - syst_JES_EtaIntercalibration_Stat92: 1.384326953685436e-19 + syst_JES_EtaIntercalibration_Stat90: 2.54520166e-12 + syst_JES_EtaIntercalibration_Stat91: 3.68665022e-13 + syst_JES_EtaIntercalibration_Stat92: 1.38432695e-19 syst_JES_EtaIntercalibration_Stat93: 0.0 syst_JES_EtaIntercalibration_Stat94: 0.0 syst_JES_EtaIntercalibration_Stat95: 0.0 @@ -61136,159 +61136,159 @@ bins: syst_JES_EtaIntercalibration_Stat97: 0.0 syst_JES_EtaIntercalibration_Stat98: 0.0 syst_JES_EtaIntercalibration_Stat99: 0.0 - syst_JES_EtaIntercalibration_TotalStat_MJB: 1.4844473820247048e-05 - syst_JES_Flavour_Comp: 3.817787677438336e-05 - syst_JES_Gjet_Generator: 5.2829408767749804e-05 - syst_JES_Gjet_OOC: 4.235450507325047e-05 - syst_JES_Gjet_Purity: 6.703354833961873e-06 - syst_JES_Gjet_Stat1: 2.258244706110257e-07 - syst_JES_Gjet_Stat10: 1.4861210237393185e-06 - syst_JES_Gjet_Stat11: 1.3901366382896926e-06 - syst_JES_Gjet_Stat12: 3.6472589707888852e-06 - syst_JES_Gjet_Stat13: 1.283291746837016e-05 - syst_JES_Gjet_Stat14: 2.214838302788716e-05 - syst_JES_Gjet_Stat15: 1.3261537495705391e-05 - syst_JES_Gjet_Stat2: 1.4879687258810246e-07 - syst_JES_Gjet_Stat3: 2.081909224550088e-07 - syst_JES_Gjet_Stat4: 2.0819182913368618e-07 - syst_JES_Gjet_Stat5: 2.081765366934696e-07 - syst_JES_Gjet_Stat6: 7.027697674793644e-07 - syst_JES_Gjet_Stat7: 1.1022235072797168e-06 - syst_JES_Gjet_Stat8: 7.028170302210597e-07 - syst_JES_Gjet_Stat9: 1.483823742632527e-06 - syst_JES_Gjet_Veto: 4.249963882199471e-05 - syst_JES_Gjet_dPhi: 3.142460523029685e-06 - syst_JES_LArESZee: 8.002247746727167e-05 - syst_JES_LArEsmear: 5.463397749576266e-06 - syst_JES_LAr_JVT: 6.447512853806497e-06 - syst_JES_MJB_Alpha: 6.778148468252595e-07 - syst_JES_MJB_Asym: 4.626873026137631e-06 - syst_JES_MJB_Beta: 1.4794779454627736e-06 - syst_JES_MJB_Stat1: 2.0508768856272187e-09 - syst_JES_MJB_Stat10: 1.5538380119883794e-08 - syst_JES_MJB_Stat11: 5.532170279374994e-07 - syst_JES_MJB_Stat12: 5.633495251617773e-07 - syst_JES_MJB_Stat13: 1.4315399924556772e-07 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.48444738e-05 + syst_JES_Flavour_Comp: 3.81778768e-05 + syst_JES_Gjet_Generator: 5.28294088e-05 + syst_JES_Gjet_OOC: 4.23545051e-05 + syst_JES_Gjet_Purity: 6.70335483e-06 + syst_JES_Gjet_Stat1: 2.25824471e-07 + syst_JES_Gjet_Stat10: 1.48612102e-06 + syst_JES_Gjet_Stat11: 1.39013664e-06 + syst_JES_Gjet_Stat12: 3.64725897e-06 + syst_JES_Gjet_Stat13: 1.28329175e-05 + syst_JES_Gjet_Stat14: 2.21483830e-05 + syst_JES_Gjet_Stat15: 1.32615375e-05 + syst_JES_Gjet_Stat2: 1.48796873e-07 + syst_JES_Gjet_Stat3: 2.08190922e-07 + syst_JES_Gjet_Stat4: 2.08191829e-07 + syst_JES_Gjet_Stat5: 2.08176537e-07 + syst_JES_Gjet_Stat6: 7.02769767e-07 + syst_JES_Gjet_Stat7: 1.10222351e-06 + syst_JES_Gjet_Stat8: 7.02817030e-07 + syst_JES_Gjet_Stat9: 1.48382374e-06 + syst_JES_Gjet_Veto: 4.24996388e-05 + syst_JES_Gjet_dPhi: 3.14246052e-06 + syst_JES_LArESZee: 8.00224775e-05 + syst_JES_LArEsmear: 5.46339775e-06 + syst_JES_LAr_JVT: 6.44751285e-06 + syst_JES_MJB_Alpha: 6.77814847e-07 + syst_JES_MJB_Asym: 4.62687303e-06 + syst_JES_MJB_Beta: 1.47947795e-06 + syst_JES_MJB_Stat1: 2.05087689e-09 + syst_JES_MJB_Stat10: 1.55383801e-08 + syst_JES_MJB_Stat11: 5.53217028e-07 + syst_JES_MJB_Stat12: 5.63349525e-07 + syst_JES_MJB_Stat13: 1.43153999e-07 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 2.7140088923030445e-07 - syst_JES_MJB_Stat3: 6.78389679222053e-07 - syst_JES_MJB_Stat4: 3.8822734841938946e-07 - syst_JES_MJB_Stat5: 7.035288189417457e-07 - syst_JES_MJB_Stat6: 6.743520909673225e-07 - syst_JES_MJB_Stat7: 7.983169708948633e-07 - syst_JES_MJB_Stat8: 8.010898018366917e-07 - syst_JES_MJB_Stat9: 8.010898018366917e-07 - syst_JES_MJB_Threshold: 4.904208305883835e-06 - syst_JES_Pileup_MuOffset: 8.196796447393335e-06 - syst_JES_Pileup_NPVOffset: 8.068780623489524e-06 - syst_JES_Pileup_Pt_term: 1.5354061742744166e-05 - syst_JES_PunchThrough_MC15: 4.301469865057757e-06 + syst_JES_MJB_Stat2: 2.71400889e-07 + syst_JES_MJB_Stat3: 6.78389679e-07 + syst_JES_MJB_Stat4: 3.88227348e-07 + syst_JES_MJB_Stat5: 7.03528819e-07 + syst_JES_MJB_Stat6: 6.74352091e-07 + syst_JES_MJB_Stat7: 7.98316971e-07 + syst_JES_MJB_Stat8: 8.01089802e-07 + syst_JES_MJB_Stat9: 8.01089802e-07 + syst_JES_MJB_Threshold: 4.90420831e-06 + syst_JES_Pileup_MuOffset: 8.19679645e-06 + syst_JES_Pileup_NPVOffset: 8.06878062e-06 + syst_JES_Pileup_Pt_term: 1.53540617e-05 + syst_JES_PunchThrough_MC15: 4.30146987e-06 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 2.2105056163692504e-05 - syst_JES_Zjet_MuScale: 1.8251970904740673e-06 - syst_JES_Zjet_MuSmearID: 7.033375396118993e-07 - syst_JES_Zjet_MuSmearMS: 3.731745875592281e-06 - syst_JES_Zjet_OOC: 1.3836154406120222e-05 - syst_JES_Zjet_Stat1: 1.4844830670304058e-06 - syst_JES_Zjet_Stat10: 1.4869002124806493e-06 - syst_JES_Zjet_Stat11: 1.1240229375217393e-06 - syst_JES_Zjet_Stat12: 5.042623702270476e-06 - syst_JES_Zjet_Stat13: 5.56581647200121e-06 - syst_JES_Zjet_Stat2: 9.415807034981123e-11 - syst_JES_Zjet_Stat3: 7.031866191218373e-07 - syst_JES_Zjet_Stat4: 7.031866191218373e-07 - syst_JES_Zjet_Stat5: 7.028496772260411e-07 - syst_JES_Zjet_Stat6: 1.0976838695265364e-06 - syst_JES_Zjet_Stat7: 7.02874354772423e-07 - syst_JES_Zjet_Stat8: 7.027900483577937e-07 - syst_JES_Zjet_Stat9: 1.4845263733174294e-06 - syst_JES_Zjet_Veto: 2.5660735011053364e-06 - syst_JES_Zjet_dPhi: 2.5440234039803957e-06 + syst_JES_Zjet_MC: 2.21050562e-05 + syst_JES_Zjet_MuScale: 1.82519709e-06 + syst_JES_Zjet_MuSmearID: 7.03337540e-07 + syst_JES_Zjet_MuSmearMS: 3.73174588e-06 + syst_JES_Zjet_OOC: 1.38361544e-05 + syst_JES_Zjet_Stat1: 1.48448307e-06 + syst_JES_Zjet_Stat10: 1.48690021e-06 + syst_JES_Zjet_Stat11: 1.12402294e-06 + syst_JES_Zjet_Stat12: 5.04262370e-06 + syst_JES_Zjet_Stat13: 5.56581647e-06 + syst_JES_Zjet_Stat2: 9.41580703e-11 + syst_JES_Zjet_Stat3: 7.03186619e-07 + syst_JES_Zjet_Stat4: 7.03186619e-07 + syst_JES_Zjet_Stat5: 7.02849677e-07 + syst_JES_Zjet_Stat6: 1.09768387e-06 + syst_JES_Zjet_Stat7: 7.02874355e-07 + syst_JES_Zjet_Stat8: 7.02790048e-07 + syst_JES_Zjet_Stat9: 1.48452637e-06 + syst_JES_Zjet_Veto: 2.56607350e-06 + syst_JES_Zjet_dPhi: 2.54402340e-06 syst_PRW: 0.0 - syst_Unfolding_bias: 1.915e-05 - syst_cleaning: 4.940674928590222e-06 - syst_lumi: 1.625e-05 + syst_Unfolding_bias: 1.91500000e-05 + syst_cleaning: 4.94067493e-06 + syst_lumi: 1.62500000e-05 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 1.0858627019563754e-05 - syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 2.065570623338742e-06 - syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 9.177301714011589e-06 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 4.733953817898945e-06 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 2.063585714236266e-06 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.2036188381294138e-05 -- stat: 3.4559e-05 - syst_JER_CROSS_CALIB_FORWARD: 4.459e-11 - syst_JER_NOISE_FORWARD: 7.684e-10 - syst_JER_NP0: 4.645639245572131e-09 - syst_JER_NP1: 1.7340264213673333e-05 - syst_JER_NP2: 5.949739744420822e-10 - syst_JER_NP3: 3.833392068390605e-10 - syst_JER_NP4: 3.6709900571916563e-10 - syst_JER_NP5: 6.905121342163365e-13 - syst_JER_NP6: 5.069926503412056e-13 - syst_JER_NP7: 4.410449397578777e-16 - syst_JER_NP8: 3.525280090688965e-10 - syst_JES_EtaIntercalibration_Modelling: 3.446167089318218e-05 - syst_JES_EtaIntercalibration_NonClosure: 1.1017551951318406e-05 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 1.08586270e-05 + syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 2.06557062e-06 + syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 9.17730171e-06 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 4.73395382e-06 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 2.06358571e-06 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 1.20361884e-05 +- stat: 3.45590000e-05 + syst_JER_CROSS_CALIB_FORWARD: 4.45900000e-11 + syst_JER_NOISE_FORWARD: 7.68400000e-10 + syst_JER_NP0: 4.64563925e-09 + syst_JER_NP1: 1.73402642e-05 + syst_JER_NP2: 5.94973974e-10 + syst_JER_NP3: 3.83339207e-10 + syst_JER_NP4: 3.67099006e-10 + syst_JER_NP5: 6.90512134e-13 + syst_JER_NP6: 5.06992650e-13 + syst_JER_NP7: 4.41044940e-16 + syst_JER_NP8: 3.52528009e-10 + syst_JES_EtaIntercalibration_Modelling: 3.44616709e-05 + syst_JES_EtaIntercalibration_NonClosure: 1.10175520e-05 syst_JES_EtaIntercalibration_Stat0: 0.0 - syst_JES_EtaIntercalibration_Stat1: 3.7317034649071465e-22 + syst_JES_EtaIntercalibration_Stat1: 3.73170346e-22 syst_JES_EtaIntercalibration_Stat10: 0.0 syst_JES_EtaIntercalibration_Stat100: 0.0 syst_JES_EtaIntercalibration_Stat101: 0.0 syst_JES_EtaIntercalibration_Stat102: 0.0 - syst_JES_EtaIntercalibration_Stat103: 2.619301051807524e-21 - syst_JES_EtaIntercalibration_Stat104: 4.3470374744681866e-14 - syst_JES_EtaIntercalibration_Stat105: 3.995393190913755e-13 - syst_JES_EtaIntercalibration_Stat106: 1.6441852864184743e-13 - syst_JES_EtaIntercalibration_Stat107: 4.406369367177472e-19 - syst_JES_EtaIntercalibration_Stat108: 9.507508760448238e-15 - syst_JES_EtaIntercalibration_Stat109: 5.7118004823347946e-11 + syst_JES_EtaIntercalibration_Stat103: 2.61930105e-21 + syst_JES_EtaIntercalibration_Stat104: 4.34703747e-14 + syst_JES_EtaIntercalibration_Stat105: 3.99539319e-13 + syst_JES_EtaIntercalibration_Stat106: 1.64418529e-13 + syst_JES_EtaIntercalibration_Stat107: 4.40636937e-19 + syst_JES_EtaIntercalibration_Stat108: 9.50750876e-15 + syst_JES_EtaIntercalibration_Stat109: 5.71180048e-11 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 1.4671790996564631e-08 - syst_JES_EtaIntercalibration_Stat111: 2.4320238624446103e-13 - syst_JES_EtaIntercalibration_Stat112: 3.008563745587146e-14 + syst_JES_EtaIntercalibration_Stat110: 1.46717910e-08 + syst_JES_EtaIntercalibration_Stat111: 2.43202386e-13 + syst_JES_EtaIntercalibration_Stat112: 3.00856375e-14 syst_JES_EtaIntercalibration_Stat113: 0.0 syst_JES_EtaIntercalibration_Stat114: 0.0 syst_JES_EtaIntercalibration_Stat115: 0.0 syst_JES_EtaIntercalibration_Stat116: 0.0 syst_JES_EtaIntercalibration_Stat117: 0.0 - syst_JES_EtaIntercalibration_Stat118: 1.6489123688055712e-21 - syst_JES_EtaIntercalibration_Stat119: 1.6489123688055712e-21 + syst_JES_EtaIntercalibration_Stat118: 1.64891237e-21 + syst_JES_EtaIntercalibration_Stat119: 1.64891237e-21 syst_JES_EtaIntercalibration_Stat12: 0.0 syst_JES_EtaIntercalibration_Stat120: 0.0 syst_JES_EtaIntercalibration_Stat121: 0.0 syst_JES_EtaIntercalibration_Stat122: 0.0 - syst_JES_EtaIntercalibration_Stat123: 7.223190820544616e-18 - syst_JES_EtaIntercalibration_Stat124: 4.151528235180389e-12 - syst_JES_EtaIntercalibration_Stat125: 2.4301024087216985e-08 - syst_JES_EtaIntercalibration_Stat126: 5.313457710105069e-10 - syst_JES_EtaIntercalibration_Stat127: 2.1074450330910176e-14 - syst_JES_EtaIntercalibration_Stat128: 1.494091171916895e-08 - syst_JES_EtaIntercalibration_Stat129: 1.547547339340545e-08 + syst_JES_EtaIntercalibration_Stat123: 7.22319082e-18 + syst_JES_EtaIntercalibration_Stat124: 4.15152824e-12 + syst_JES_EtaIntercalibration_Stat125: 2.43010241e-08 + syst_JES_EtaIntercalibration_Stat126: 5.31345771e-10 + syst_JES_EtaIntercalibration_Stat127: 2.10744503e-14 + syst_JES_EtaIntercalibration_Stat128: 1.49409117e-08 + syst_JES_EtaIntercalibration_Stat129: 1.54754734e-08 syst_JES_EtaIntercalibration_Stat13: 0.0 - syst_JES_EtaIntercalibration_Stat130: 6.326014173843985e-09 - syst_JES_EtaIntercalibration_Stat131: 7.97145841309324e-14 + syst_JES_EtaIntercalibration_Stat130: 6.32601417e-09 + syst_JES_EtaIntercalibration_Stat131: 7.97145841e-14 syst_JES_EtaIntercalibration_Stat132: 0.0 syst_JES_EtaIntercalibration_Stat133: 0.0 syst_JES_EtaIntercalibration_Stat134: 0.0 syst_JES_EtaIntercalibration_Stat135: 0.0 syst_JES_EtaIntercalibration_Stat136: 0.0 - syst_JES_EtaIntercalibration_Stat137: 1.6489123688055712e-21 - syst_JES_EtaIntercalibration_Stat138: 1.6489123688055712e-21 - syst_JES_EtaIntercalibration_Stat139: 9.895206263640995e-21 + syst_JES_EtaIntercalibration_Stat137: 1.64891237e-21 + syst_JES_EtaIntercalibration_Stat138: 1.64891237e-21 + syst_JES_EtaIntercalibration_Stat139: 9.89520626e-21 syst_JES_EtaIntercalibration_Stat14: 0.0 syst_JES_EtaIntercalibration_Stat140: 0.0 syst_JES_EtaIntercalibration_Stat141: 0.0 - syst_JES_EtaIntercalibration_Stat142: 4.2926487548025364e-14 - syst_JES_EtaIntercalibration_Stat143: 3.172581783134203e-08 - syst_JES_EtaIntercalibration_Stat144: 3.374075124930534e-07 - syst_JES_EtaIntercalibration_Stat145: 1.9800953878727664e-08 - syst_JES_EtaIntercalibration_Stat146: 3.2954735623275755e-09 - syst_JES_EtaIntercalibration_Stat147: 1.2447823714609714e-07 - syst_JES_EtaIntercalibration_Stat148: 6.1899546928228805e-09 - syst_JES_EtaIntercalibration_Stat149: 8.251482967515596e-14 + syst_JES_EtaIntercalibration_Stat142: 4.29264875e-14 + syst_JES_EtaIntercalibration_Stat143: 3.17258178e-08 + syst_JES_EtaIntercalibration_Stat144: 3.37407512e-07 + syst_JES_EtaIntercalibration_Stat145: 1.98009539e-08 + syst_JES_EtaIntercalibration_Stat146: 3.29547356e-09 + syst_JES_EtaIntercalibration_Stat147: 1.24478237e-07 + syst_JES_EtaIntercalibration_Stat148: 6.18995469e-09 + syst_JES_EtaIntercalibration_Stat149: 8.25148297e-14 syst_JES_EtaIntercalibration_Stat15: 0.0 syst_JES_EtaIntercalibration_Stat150: 0.0 syst_JES_EtaIntercalibration_Stat151: 0.0 @@ -61296,60 +61296,60 @@ bins: syst_JES_EtaIntercalibration_Stat153: 0.0 syst_JES_EtaIntercalibration_Stat154: 0.0 syst_JES_EtaIntercalibration_Stat155: 0.0 - syst_JES_EtaIntercalibration_Stat156: 1.6489123688055712e-21 - syst_JES_EtaIntercalibration_Stat157: 9.895206263640995e-21 + syst_JES_EtaIntercalibration_Stat156: 1.64891237e-21 + syst_JES_EtaIntercalibration_Stat157: 9.89520626e-21 syst_JES_EtaIntercalibration_Stat158: 0.0 syst_JES_EtaIntercalibration_Stat159: 0.0 - syst_JES_EtaIntercalibration_Stat16: 4.666144875590555e-23 - syst_JES_EtaIntercalibration_Stat160: 4.2839912997776675e-14 - syst_JES_EtaIntercalibration_Stat161: 3.2715124832865916e-08 - syst_JES_EtaIntercalibration_Stat162: 1.8434849362213407e-07 - syst_JES_EtaIntercalibration_Stat163: 1.0227306231359262e-07 - syst_JES_EtaIntercalibration_Stat164: 9.261934355198161e-08 - syst_JES_EtaIntercalibration_Stat165: 4.6943487642057446e-07 - syst_JES_EtaIntercalibration_Stat166: 2.86857943937413e-08 - syst_JES_EtaIntercalibration_Stat167: 8.367210844720001e-14 + syst_JES_EtaIntercalibration_Stat16: 4.66614488e-23 + syst_JES_EtaIntercalibration_Stat160: 4.28399130e-14 + syst_JES_EtaIntercalibration_Stat161: 3.27151248e-08 + syst_JES_EtaIntercalibration_Stat162: 1.84348494e-07 + syst_JES_EtaIntercalibration_Stat163: 1.02273062e-07 + syst_JES_EtaIntercalibration_Stat164: 9.26193436e-08 + syst_JES_EtaIntercalibration_Stat165: 4.69434876e-07 + syst_JES_EtaIntercalibration_Stat166: 2.86857944e-08 + syst_JES_EtaIntercalibration_Stat167: 8.36721084e-14 syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 - syst_JES_EtaIntercalibration_Stat17: 2.0269506654085097e-22 + syst_JES_EtaIntercalibration_Stat17: 2.02695067e-22 syst_JES_EtaIntercalibration_Stat170: 0.0 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 - syst_JES_EtaIntercalibration_Stat174: 9.895206263640995e-21 - syst_JES_EtaIntercalibration_Stat175: 9.895206263640995e-21 + syst_JES_EtaIntercalibration_Stat174: 9.89520626e-21 + syst_JES_EtaIntercalibration_Stat175: 9.89520626e-21 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 - syst_JES_EtaIntercalibration_Stat178: 4.047639311994091e-12 - syst_JES_EtaIntercalibration_Stat179: 1.8468250613382416e-07 - syst_JES_EtaIntercalibration_Stat18: 5.234799136547648e-21 - syst_JES_EtaIntercalibration_Stat180: 8.477502738867148e-07 - syst_JES_EtaIntercalibration_Stat181: 1.3077699138227643e-07 - syst_JES_EtaIntercalibration_Stat182: 4.939839951860788e-06 - syst_JES_EtaIntercalibration_Stat183: 4.7037690206896854e-07 - syst_JES_EtaIntercalibration_Stat184: 1.966753665922674e-10 + syst_JES_EtaIntercalibration_Stat178: 4.04763931e-12 + syst_JES_EtaIntercalibration_Stat179: 1.84682506e-07 + syst_JES_EtaIntercalibration_Stat18: 5.23479914e-21 + syst_JES_EtaIntercalibration_Stat180: 8.47750274e-07 + syst_JES_EtaIntercalibration_Stat181: 1.30776991e-07 + syst_JES_EtaIntercalibration_Stat182: 4.93983995e-06 + syst_JES_EtaIntercalibration_Stat183: 4.70376902e-07 + syst_JES_EtaIntercalibration_Stat184: 1.96675367e-10 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 syst_JES_EtaIntercalibration_Stat187: 0.0 - syst_JES_EtaIntercalibration_Stat188: 1.3925688492853772e-18 + syst_JES_EtaIntercalibration_Stat188: 1.39256885e-18 syst_JES_EtaIntercalibration_Stat189: 0.0 - syst_JES_EtaIntercalibration_Stat19: 3.0439696581930645e-21 + syst_JES_EtaIntercalibration_Stat19: 3.04396966e-21 syst_JES_EtaIntercalibration_Stat190: 0.0 - syst_JES_EtaIntercalibration_Stat191: 9.895206263640995e-21 - syst_JES_EtaIntercalibration_Stat192: 9.895206263640995e-21 + syst_JES_EtaIntercalibration_Stat191: 9.89520626e-21 + syst_JES_EtaIntercalibration_Stat192: 9.89520626e-21 syst_JES_EtaIntercalibration_Stat193: 0.0 syst_JES_EtaIntercalibration_Stat194: 0.0 - syst_JES_EtaIntercalibration_Stat195: 3.739366711122464e-08 - syst_JES_EtaIntercalibration_Stat196: 8.713090365650983e-07 - syst_JES_EtaIntercalibration_Stat197: 3.948611467338867e-06 - syst_JES_EtaIntercalibration_Stat198: 2.1280886894112285e-06 - syst_JES_EtaIntercalibration_Stat199: 2.3261443343022782e-08 - syst_JES_EtaIntercalibration_Stat2: 9.446045890609467e-21 + syst_JES_EtaIntercalibration_Stat195: 3.73936671e-08 + syst_JES_EtaIntercalibration_Stat196: 8.71309037e-07 + syst_JES_EtaIntercalibration_Stat197: 3.94861147e-06 + syst_JES_EtaIntercalibration_Stat198: 2.12808869e-06 + syst_JES_EtaIntercalibration_Stat199: 2.32614433e-08 + syst_JES_EtaIntercalibration_Stat2: 9.44604589e-21 syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 syst_JES_EtaIntercalibration_Stat201: 0.0 syst_JES_EtaIntercalibration_Stat202: 0.0 - syst_JES_EtaIntercalibration_Stat203: 1.3925688492853772e-18 + syst_JES_EtaIntercalibration_Stat203: 1.39256885e-18 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 syst_JES_EtaIntercalibration_Stat206: 0.0 @@ -61357,9 +61357,9 @@ bins: syst_JES_EtaIntercalibration_Stat208: 0.0 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 3.331817265648236e-08 - syst_JES_EtaIntercalibration_Stat211: 1.9071329024218527e-06 - syst_JES_EtaIntercalibration_Stat212: 6.011082327667788e-09 + syst_JES_EtaIntercalibration_Stat210: 3.33181727e-08 + syst_JES_EtaIntercalibration_Stat211: 1.90713290e-06 + syst_JES_EtaIntercalibration_Stat212: 6.01108233e-09 syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 syst_JES_EtaIntercalibration_Stat215: 0.0 @@ -61371,37 +61371,37 @@ bins: syst_JES_EtaIntercalibration_Stat220: 0.0 syst_JES_EtaIntercalibration_Stat221: 0.0 syst_JES_EtaIntercalibration_Stat222: 0.0 - syst_JES_EtaIntercalibration_Stat223: 3.3453695322789084e-08 - syst_JES_EtaIntercalibration_Stat224: 5.802370205355738e-09 + syst_JES_EtaIntercalibration_Stat223: 3.34536953e-08 + syst_JES_EtaIntercalibration_Stat224: 5.80237021e-09 syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 syst_JES_EtaIntercalibration_Stat227: 0.0 syst_JES_EtaIntercalibration_Stat228: 0.0 syst_JES_EtaIntercalibration_Stat229: 0.0 - syst_JES_EtaIntercalibration_Stat23: 7.364742086454895e-21 + syst_JES_EtaIntercalibration_Stat23: 7.36474209e-21 syst_JES_EtaIntercalibration_Stat230: 0.0 syst_JES_EtaIntercalibration_Stat231: 0.0 syst_JES_EtaIntercalibration_Stat232: 0.0 syst_JES_EtaIntercalibration_Stat233: 0.0 syst_JES_EtaIntercalibration_Stat234: 0.0 - syst_JES_EtaIntercalibration_Stat235: 2.0568103339880417e-07 + syst_JES_EtaIntercalibration_Stat235: 2.05681033e-07 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 syst_JES_EtaIntercalibration_Stat239: 0.0 - syst_JES_EtaIntercalibration_Stat24: 2.078885015459008e-18 + syst_JES_EtaIntercalibration_Stat24: 2.07888502e-18 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 syst_JES_EtaIntercalibration_Stat242: 0.0 syst_JES_EtaIntercalibration_Stat243: 0.0 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 - syst_JES_EtaIntercalibration_Stat25: 3.154019518698102e-14 - syst_JES_EtaIntercalibration_Stat26: 1.862411541523516e-20 + syst_JES_EtaIntercalibration_Stat25: 3.15401952e-14 + syst_JES_EtaIntercalibration_Stat26: 1.86241154e-20 syst_JES_EtaIntercalibration_Stat27: 0.0 syst_JES_EtaIntercalibration_Stat28: 0.0 syst_JES_EtaIntercalibration_Stat29: 0.0 - syst_JES_EtaIntercalibration_Stat3: 1.6181902754311683e-20 + syst_JES_EtaIntercalibration_Stat3: 1.61819028e-20 syst_JES_EtaIntercalibration_Stat30: 0.0 syst_JES_EtaIntercalibration_Stat31: 0.0 syst_JES_EtaIntercalibration_Stat32: 0.0 @@ -61410,19 +61410,19 @@ bins: syst_JES_EtaIntercalibration_Stat35: 0.0 syst_JES_EtaIntercalibration_Stat36: 0.0 syst_JES_EtaIntercalibration_Stat37: 0.0 - syst_JES_EtaIntercalibration_Stat38: 4.666144875590555e-23 - syst_JES_EtaIntercalibration_Stat39: 7.772677193219848e-21 + syst_JES_EtaIntercalibration_Stat38: 4.66614488e-23 + syst_JES_EtaIntercalibration_Stat39: 7.77267719e-21 syst_JES_EtaIntercalibration_Stat4: 0.0 - syst_JES_EtaIntercalibration_Stat40: 1.5349013909694655e-18 - syst_JES_EtaIntercalibration_Stat41: 3.1865462102407993e-19 - syst_JES_EtaIntercalibration_Stat42: 5.798040078336816e-22 + syst_JES_EtaIntercalibration_Stat40: 1.53490139e-18 + syst_JES_EtaIntercalibration_Stat41: 3.18654621e-19 + syst_JES_EtaIntercalibration_Stat42: 5.79804008e-22 syst_JES_EtaIntercalibration_Stat43: 0.0 - syst_JES_EtaIntercalibration_Stat44: 2.428335232211566e-21 - syst_JES_EtaIntercalibration_Stat45: 3.80713103924727e-20 - syst_JES_EtaIntercalibration_Stat46: 9.036790762610958e-15 - syst_JES_EtaIntercalibration_Stat47: 3.140110624273451e-14 - syst_JES_EtaIntercalibration_Stat48: 9.985377940143278e-19 - syst_JES_EtaIntercalibration_Stat49: 1.2574688862950048e-21 + syst_JES_EtaIntercalibration_Stat44: 2.42833523e-21 + syst_JES_EtaIntercalibration_Stat45: 3.80713104e-20 + syst_JES_EtaIntercalibration_Stat46: 9.03679076e-15 + syst_JES_EtaIntercalibration_Stat47: 3.14011062e-14 + syst_JES_EtaIntercalibration_Stat48: 9.98537794e-19 + syst_JES_EtaIntercalibration_Stat49: 1.25746889e-21 syst_JES_EtaIntercalibration_Stat5: 0.0 syst_JES_EtaIntercalibration_Stat50: 0.0 syst_JES_EtaIntercalibration_Stat51: 0.0 @@ -61433,21 +61433,21 @@ bins: syst_JES_EtaIntercalibration_Stat56: 0.0 syst_JES_EtaIntercalibration_Stat57: 0.0 syst_JES_EtaIntercalibration_Stat58: 0.0 - syst_JES_EtaIntercalibration_Stat59: 4.666144875590555e-23 + syst_JES_EtaIntercalibration_Stat59: 4.66614488e-23 syst_JES_EtaIntercalibration_Stat6: 0.0 - syst_JES_EtaIntercalibration_Stat60: 1.3890753867231254e-22 - syst_JES_EtaIntercalibration_Stat61: 8.802266412691677e-19 - syst_JES_EtaIntercalibration_Stat62: 1.1463183196651793e-13 - syst_JES_EtaIntercalibration_Stat63: 4.8717604620917065e-18 - syst_JES_EtaIntercalibration_Stat64: 5.3835771332822936e-21 + syst_JES_EtaIntercalibration_Stat60: 1.38907539e-22 + syst_JES_EtaIntercalibration_Stat61: 8.80226641e-19 + syst_JES_EtaIntercalibration_Stat62: 1.14631832e-13 + syst_JES_EtaIntercalibration_Stat63: 4.87176046e-18 + syst_JES_EtaIntercalibration_Stat64: 5.38357713e-21 syst_JES_EtaIntercalibration_Stat65: 0.0 - syst_JES_EtaIntercalibration_Stat66: 2.428335232211566e-21 - syst_JES_EtaIntercalibration_Stat67: 2.5980889130281892e-18 - syst_JES_EtaIntercalibration_Stat68: 1.2601907276281635e-13 - syst_JES_EtaIntercalibration_Stat69: 1.3012243298980965e-13 + syst_JES_EtaIntercalibration_Stat66: 2.42833523e-21 + syst_JES_EtaIntercalibration_Stat67: 2.59808891e-18 + syst_JES_EtaIntercalibration_Stat68: 1.26019073e-13 + syst_JES_EtaIntercalibration_Stat69: 1.30122433e-13 syst_JES_EtaIntercalibration_Stat7: 0.0 - syst_JES_EtaIntercalibration_Stat70: 3.153573150750114e-14 - syst_JES_EtaIntercalibration_Stat71: 1.4199382448103157e-20 + syst_JES_EtaIntercalibration_Stat70: 3.15357315e-14 + syst_JES_EtaIntercalibration_Stat71: 1.41993824e-20 syst_JES_EtaIntercalibration_Stat72: 0.0 syst_JES_EtaIntercalibration_Stat73: 0.0 syst_JES_EtaIntercalibration_Stat74: 0.0 @@ -61458,19 +61458,19 @@ bins: syst_JES_EtaIntercalibration_Stat79: 0.0 syst_JES_EtaIntercalibration_Stat8: 0.0 syst_JES_EtaIntercalibration_Stat80: 0.0 - syst_JES_EtaIntercalibration_Stat81: 4.666144875590555e-23 - syst_JES_EtaIntercalibration_Stat82: 1.5099324488201449e-21 - syst_JES_EtaIntercalibration_Stat83: 1.0075085458694631e-17 - syst_JES_EtaIntercalibration_Stat84: 1.4487424719390263e-13 - syst_JES_EtaIntercalibration_Stat85: 1.59678986252888e-13 - syst_JES_EtaIntercalibration_Stat86: 2.7688727286569167e-19 + syst_JES_EtaIntercalibration_Stat81: 4.66614488e-23 + syst_JES_EtaIntercalibration_Stat82: 1.50993245e-21 + syst_JES_EtaIntercalibration_Stat83: 1.00750855e-17 + syst_JES_EtaIntercalibration_Stat84: 1.44874247e-13 + syst_JES_EtaIntercalibration_Stat85: 1.59678986e-13 + syst_JES_EtaIntercalibration_Stat86: 2.76887273e-19 syst_JES_EtaIntercalibration_Stat87: 0.0 - syst_JES_EtaIntercalibration_Stat88: 6.739985459924969e-18 - syst_JES_EtaIntercalibration_Stat89: 2.2878908109435643e-12 + syst_JES_EtaIntercalibration_Stat88: 6.73998546e-18 + syst_JES_EtaIntercalibration_Stat89: 2.28789081e-12 syst_JES_EtaIntercalibration_Stat9: 0.0 - syst_JES_EtaIntercalibration_Stat90: 2.319961393229422e-13 - syst_JES_EtaIntercalibration_Stat91: 3.195083332540014e-14 - syst_JES_EtaIntercalibration_Stat92: 1.6138740709469868e-20 + syst_JES_EtaIntercalibration_Stat90: 2.31996139e-13 + syst_JES_EtaIntercalibration_Stat91: 3.19508333e-14 + syst_JES_EtaIntercalibration_Stat92: 1.61387407e-20 syst_JES_EtaIntercalibration_Stat93: 0.0 syst_JES_EtaIntercalibration_Stat94: 0.0 syst_JES_EtaIntercalibration_Stat95: 0.0 @@ -61478,93 +61478,93 @@ bins: syst_JES_EtaIntercalibration_Stat97: 0.0 syst_JES_EtaIntercalibration_Stat98: 0.0 syst_JES_EtaIntercalibration_Stat99: 0.0 - syst_JES_EtaIntercalibration_TotalStat_MJB: 5.291020317481308e-06 - syst_JES_Flavour_Comp: 1.3369415544443221e-05 - syst_JES_Gjet_Generator: 1.803163522118834e-05 - syst_JES_Gjet_OOC: 1.4369275581949146e-05 - syst_JES_Gjet_Purity: 1.5617439867020458e-06 - syst_JES_Gjet_Stat1: 5.577222680409578e-08 - syst_JES_Gjet_Stat10: 3.3339825418071705e-07 - syst_JES_Gjet_Stat11: 3.1688462651058036e-07 - syst_JES_Gjet_Stat12: 1.0670738587370603e-06 - syst_JES_Gjet_Stat13: 4.269559930484639e-06 - syst_JES_Gjet_Stat14: 7.863462532498009e-06 - syst_JES_Gjet_Stat15: 6.334654430195857e-06 - syst_JES_Gjet_Stat2: 1.0828164204056014e-08 - syst_JES_Gjet_Stat3: 2.112746358337176e-08 - syst_JES_Gjet_Stat4: 2.11189001369644e-08 - syst_JES_Gjet_Stat5: 2.1117341846020183e-08 - syst_JES_Gjet_Stat6: 1.4709721489609346e-07 - syst_JES_Gjet_Stat7: 2.1897879000202277e-07 - syst_JES_Gjet_Stat8: 1.4709278763838152e-07 - syst_JES_Gjet_Stat9: 3.329375599128912e-07 - syst_JES_Gjet_Veto: 1.4987644077706141e-05 - syst_JES_Gjet_dPhi: 7.726411974692717e-07 - syst_JES_LArESZee: 2.7159971925611413e-05 - syst_JES_LArEsmear: 1.7405771138332252e-06 - syst_JES_LAr_JVT: 2.3534092780474882e-06 - syst_JES_MJB_Alpha: 1.4655239099721301e-07 - syst_JES_MJB_Asym: 1.8040871285777744e-06 - syst_JES_MJB_Beta: 3.32106980162542e-07 - syst_JES_MJB_Stat1: 5.824520302136478e-10 - syst_JES_MJB_Stat10: 2.5660703752381772e-08 - syst_JES_MJB_Stat11: 1.348401553692371e-07 - syst_JES_MJB_Stat12: 1.4124874335724193e-07 - syst_JES_MJB_Stat13: 5.2152049815898896e-08 + syst_JES_EtaIntercalibration_TotalStat_MJB: 5.29102032e-06 + syst_JES_Flavour_Comp: 1.33694155e-05 + syst_JES_Gjet_Generator: 1.80316352e-05 + syst_JES_Gjet_OOC: 1.43692756e-05 + syst_JES_Gjet_Purity: 1.56174399e-06 + syst_JES_Gjet_Stat1: 5.57722268e-08 + syst_JES_Gjet_Stat10: 3.33398254e-07 + syst_JES_Gjet_Stat11: 3.16884627e-07 + syst_JES_Gjet_Stat12: 1.06707386e-06 + syst_JES_Gjet_Stat13: 4.26955993e-06 + syst_JES_Gjet_Stat14: 7.86346253e-06 + syst_JES_Gjet_Stat15: 6.33465443e-06 + syst_JES_Gjet_Stat2: 1.08281642e-08 + syst_JES_Gjet_Stat3: 2.11274636e-08 + syst_JES_Gjet_Stat4: 2.11189001e-08 + syst_JES_Gjet_Stat5: 2.11173418e-08 + syst_JES_Gjet_Stat6: 1.47097215e-07 + syst_JES_Gjet_Stat7: 2.18978790e-07 + syst_JES_Gjet_Stat8: 1.47092788e-07 + syst_JES_Gjet_Stat9: 3.32937560e-07 + syst_JES_Gjet_Veto: 1.49876441e-05 + syst_JES_Gjet_dPhi: 7.72641197e-07 + syst_JES_LArESZee: 2.71599719e-05 + syst_JES_LArEsmear: 1.74057711e-06 + syst_JES_LAr_JVT: 2.35340928e-06 + syst_JES_MJB_Alpha: 1.46552391e-07 + syst_JES_MJB_Asym: 1.80408713e-06 + syst_JES_MJB_Beta: 3.32106980e-07 + syst_JES_MJB_Stat1: 5.82452030e-10 + syst_JES_MJB_Stat10: 2.56607038e-08 + syst_JES_MJB_Stat11: 1.34840155e-07 + syst_JES_MJB_Stat12: 1.41248743e-07 + syst_JES_MJB_Stat13: 5.21520498e-08 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 3.1535456659924875e-08 - syst_JES_MJB_Stat3: 1.467448241634096e-07 - syst_JES_MJB_Stat4: 4.9430363643925385e-08 - syst_JES_MJB_Stat5: 1.4733153149549318e-07 - syst_JES_MJB_Stat6: 1.4603063059845038e-07 - syst_JES_MJB_Stat7: 1.818061494341984e-07 - syst_JES_MJB_Stat8: 1.8214406310546466e-07 - syst_JES_MJB_Stat9: 1.8214406310546466e-07 - syst_JES_MJB_Threshold: 1.5295140756135592e-06 - syst_JES_Pileup_MuOffset: 2.956046176905902e-06 - syst_JES_Pileup_NPVOffset: 2.9455036390233846e-06 - syst_JES_Pileup_Pt_term: 4.7157781998308614e-06 - syst_JES_PunchThrough_MC15: 1.97888074615425e-06 + syst_JES_MJB_Stat2: 3.15354567e-08 + syst_JES_MJB_Stat3: 1.46744824e-07 + syst_JES_MJB_Stat4: 4.94303636e-08 + syst_JES_MJB_Stat5: 1.47331531e-07 + syst_JES_MJB_Stat6: 1.46030631e-07 + syst_JES_MJB_Stat7: 1.81806149e-07 + syst_JES_MJB_Stat8: 1.82144063e-07 + syst_JES_MJB_Stat9: 1.82144063e-07 + syst_JES_MJB_Threshold: 1.52951408e-06 + syst_JES_Pileup_MuOffset: 2.95604618e-06 + syst_JES_Pileup_NPVOffset: 2.94550364e-06 + syst_JES_Pileup_Pt_term: 4.71577820e-06 + syst_JES_PunchThrough_MC15: 1.97888075e-06 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 6.808248434803183e-06 - syst_JES_Zjet_MuScale: 5.615948750433893e-07 - syst_JES_Zjet_MuSmearID: 1.4727724808492993e-07 - syst_JES_Zjet_MuSmearMS: 8.593949974691498e-07 - syst_JES_Zjet_OOC: 4.425796284286027e-06 - syst_JES_Zjet_Stat1: 3.32863843448038e-07 - syst_JES_Zjet_Stat10: 3.3352988741752965e-07 - syst_JES_Zjet_Stat11: 3.6806994267394345e-07 - syst_JES_Zjet_Stat12: 1.58651674851796e-06 - syst_JES_Zjet_Stat13: 1.6745547729172673e-06 - syst_JES_Zjet_Stat2: 1.0768128680508976e-11 - syst_JES_Zjet_Stat3: 1.472554120789735e-07 - syst_JES_Zjet_Stat4: 1.472554178622206e-07 - syst_JES_Zjet_Stat5: 1.47085026582544e-07 - syst_JES_Zjet_Stat6: 2.1827390010366349e-07 - syst_JES_Zjet_Stat7: 1.4708800565553152e-07 - syst_JES_Zjet_Stat8: 1.4708863045413019e-07 - syst_JES_Zjet_Stat9: 3.329706455575326e-07 - syst_JES_Zjet_Veto: 9.934012604682964e-07 - syst_JES_Zjet_dPhi: 9.783568916811492e-07 + syst_JES_Zjet_MC: 6.80824843e-06 + syst_JES_Zjet_MuScale: 5.61594875e-07 + syst_JES_Zjet_MuSmearID: 1.47277248e-07 + syst_JES_Zjet_MuSmearMS: 8.59394997e-07 + syst_JES_Zjet_OOC: 4.42579628e-06 + syst_JES_Zjet_Stat1: 3.32863843e-07 + syst_JES_Zjet_Stat10: 3.33529887e-07 + syst_JES_Zjet_Stat11: 3.68069943e-07 + syst_JES_Zjet_Stat12: 1.58651675e-06 + syst_JES_Zjet_Stat13: 1.67455477e-06 + syst_JES_Zjet_Stat2: 1.07681287e-11 + syst_JES_Zjet_Stat3: 1.47255412e-07 + syst_JES_Zjet_Stat4: 1.47255418e-07 + syst_JES_Zjet_Stat5: 1.47085027e-07 + syst_JES_Zjet_Stat6: 2.18273900e-07 + syst_JES_Zjet_Stat7: 1.47088006e-07 + syst_JES_Zjet_Stat8: 1.47088630e-07 + syst_JES_Zjet_Stat9: 3.32970646e-07 + syst_JES_Zjet_Veto: 9.93401260e-07 + syst_JES_Zjet_dPhi: 9.78356892e-07 syst_PRW: 0.0 - syst_Unfolding_bias: 9.681e-06 - syst_cleaning: 1.567505980849834e-06 - syst_lumi: 5.144e-06 + syst_Unfolding_bias: 9.68100000e-06 + syst_cleaning: 1.56750598e-06 + syst_lumi: 5.14400000e-06 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 4.335827256706614e-06 - syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 4.6702380025005146e-07 - syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 2.7974465142340077e-06 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 1.890162629907808e-06 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 4.851965040063665e-07 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 3.784889001014428e-06 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 4.33582726e-06 + syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 4.67023800e-07 + syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 2.79744651e-06 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 1.89016263e-06 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 4.85196504e-07 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 3.78488900e-06 - stat: 7.03e-06 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 syst_JER_NP0: 0.0 - syst_JER_NP1: 3.0835250525980815e-06 + syst_JER_NP1: 3.08352505e-06 syst_JER_NP2: 0.0 syst_JER_NP3: 0.0 syst_JER_NP4: 0.0 @@ -61572,8 +61572,8 @@ bins: syst_JER_NP6: 0.0 syst_JER_NP7: 0.0 syst_JER_NP8: 0.0 - syst_JES_EtaIntercalibration_Modelling: 5.247578298605939e-06 - syst_JES_EtaIntercalibration_NonClosure: 1.0443027374760636e-06 + syst_JES_EtaIntercalibration_Modelling: 5.24757830e-06 + syst_JES_EtaIntercalibration_NonClosure: 1.04430274e-06 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 @@ -61588,7 +61588,7 @@ bins: syst_JES_EtaIntercalibration_Stat108: 0.0 syst_JES_EtaIntercalibration_Stat109: 0.0 syst_JES_EtaIntercalibration_Stat11: 0.0 - syst_JES_EtaIntercalibration_Stat110: 6.920409001641449e-10 + syst_JES_EtaIntercalibration_Stat110: 6.92040900e-10 syst_JES_EtaIntercalibration_Stat111: 0.0 syst_JES_EtaIntercalibration_Stat112: 0.0 syst_JES_EtaIntercalibration_Stat113: 0.0 @@ -61604,11 +61604,11 @@ bins: syst_JES_EtaIntercalibration_Stat122: 0.0 syst_JES_EtaIntercalibration_Stat123: 0.0 syst_JES_EtaIntercalibration_Stat124: 0.0 - syst_JES_EtaIntercalibration_Stat125: 3.886722012184561e-09 + syst_JES_EtaIntercalibration_Stat125: 3.88672201e-09 syst_JES_EtaIntercalibration_Stat126: 0.0 syst_JES_EtaIntercalibration_Stat127: 0.0 - syst_JES_EtaIntercalibration_Stat128: 6.943791687543628e-10 - syst_JES_EtaIntercalibration_Stat129: 9.79821141841714e-10 + syst_JES_EtaIntercalibration_Stat128: 6.94379169e-10 + syst_JES_EtaIntercalibration_Stat129: 9.79821142e-10 syst_JES_EtaIntercalibration_Stat13: 0.0 syst_JES_EtaIntercalibration_Stat130: 0.0 syst_JES_EtaIntercalibration_Stat131: 0.0 @@ -61624,11 +61624,11 @@ bins: syst_JES_EtaIntercalibration_Stat140: 0.0 syst_JES_EtaIntercalibration_Stat141: 0.0 syst_JES_EtaIntercalibration_Stat142: 0.0 - syst_JES_EtaIntercalibration_Stat143: 4.422791737127128e-09 - syst_JES_EtaIntercalibration_Stat144: 2.6050044145835915e-08 - syst_JES_EtaIntercalibration_Stat145: 1.5640418792346962e-09 - syst_JES_EtaIntercalibration_Stat146: 5.073176815369242e-11 - syst_JES_EtaIntercalibration_Stat147: 1.7468677267326227e-08 + syst_JES_EtaIntercalibration_Stat143: 4.42279174e-09 + syst_JES_EtaIntercalibration_Stat144: 2.60500441e-08 + syst_JES_EtaIntercalibration_Stat145: 1.56404188e-09 + syst_JES_EtaIntercalibration_Stat146: 5.07317682e-11 + syst_JES_EtaIntercalibration_Stat147: 1.74686773e-08 syst_JES_EtaIntercalibration_Stat148: 0.0 syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 @@ -61644,12 +61644,12 @@ bins: syst_JES_EtaIntercalibration_Stat159: 0.0 syst_JES_EtaIntercalibration_Stat16: 0.0 syst_JES_EtaIntercalibration_Stat160: 0.0 - syst_JES_EtaIntercalibration_Stat161: 4.422791737127128e-09 - syst_JES_EtaIntercalibration_Stat162: 1.940762929880927e-08 - syst_JES_EtaIntercalibration_Stat163: 1.134579881497993e-08 - syst_JES_EtaIntercalibration_Stat164: 1.8364534625195382e-08 - syst_JES_EtaIntercalibration_Stat165: 6.656551810059018e-08 - syst_JES_EtaIntercalibration_Stat166: 8.352463646583564e-09 + syst_JES_EtaIntercalibration_Stat161: 4.42279174e-09 + syst_JES_EtaIntercalibration_Stat162: 1.94076293e-08 + syst_JES_EtaIntercalibration_Stat163: 1.13457988e-08 + syst_JES_EtaIntercalibration_Stat164: 1.83645346e-08 + syst_JES_EtaIntercalibration_Stat165: 6.65655181e-08 + syst_JES_EtaIntercalibration_Stat166: 8.35246365e-09 syst_JES_EtaIntercalibration_Stat167: 0.0 syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 @@ -61663,12 +61663,12 @@ bins: syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 syst_JES_EtaIntercalibration_Stat178: 0.0 - syst_JES_EtaIntercalibration_Stat179: 1.9381648536695737e-08 + syst_JES_EtaIntercalibration_Stat179: 1.93816485e-08 syst_JES_EtaIntercalibration_Stat18: 0.0 - syst_JES_EtaIntercalibration_Stat180: 3.479684886236108e-08 - syst_JES_EtaIntercalibration_Stat181: 1.2673542188650337e-08 - syst_JES_EtaIntercalibration_Stat182: 1.4185496113989105e-06 - syst_JES_EtaIntercalibration_Stat183: 7.18345827230868e-08 + syst_JES_EtaIntercalibration_Stat180: 3.47968489e-08 + syst_JES_EtaIntercalibration_Stat181: 1.26735422e-08 + syst_JES_EtaIntercalibration_Stat182: 1.41854961e-06 + syst_JES_EtaIntercalibration_Stat183: 7.18345827e-08 syst_JES_EtaIntercalibration_Stat184: 0.0 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 @@ -61681,11 +61681,11 @@ bins: syst_JES_EtaIntercalibration_Stat192: 0.0 syst_JES_EtaIntercalibration_Stat193: 0.0 syst_JES_EtaIntercalibration_Stat194: 0.0 - syst_JES_EtaIntercalibration_Stat195: 3.038883141879595e-09 - syst_JES_EtaIntercalibration_Stat196: 3.3123056924142733e-08 - syst_JES_EtaIntercalibration_Stat197: 2.954878677712505e-07 - syst_JES_EtaIntercalibration_Stat198: 5.641878299821789e-07 - syst_JES_EtaIntercalibration_Stat199: 8.410838721554469e-09 + syst_JES_EtaIntercalibration_Stat195: 3.03888314e-09 + syst_JES_EtaIntercalibration_Stat196: 3.31230569e-08 + syst_JES_EtaIntercalibration_Stat197: 2.95487868e-07 + syst_JES_EtaIntercalibration_Stat198: 5.64187830e-07 + syst_JES_EtaIntercalibration_Stat199: 8.41083872e-09 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 @@ -61699,8 +61699,8 @@ bins: syst_JES_EtaIntercalibration_Stat208: 0.0 syst_JES_EtaIntercalibration_Stat209: 0.0 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 4.422791737127128e-09 - syst_JES_EtaIntercalibration_Stat211: 1.3067976842265984e-07 + syst_JES_EtaIntercalibration_Stat210: 4.42279174e-09 + syst_JES_EtaIntercalibration_Stat211: 1.30679768e-07 syst_JES_EtaIntercalibration_Stat212: 0.0 syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 @@ -61713,7 +61713,7 @@ bins: syst_JES_EtaIntercalibration_Stat220: 0.0 syst_JES_EtaIntercalibration_Stat221: 0.0 syst_JES_EtaIntercalibration_Stat222: 0.0 - syst_JES_EtaIntercalibration_Stat223: 4.418461610108206e-09 + syst_JES_EtaIntercalibration_Stat223: 4.41846161e-09 syst_JES_EtaIntercalibration_Stat224: 0.0 syst_JES_EtaIntercalibration_Stat225: 0.0 syst_JES_EtaIntercalibration_Stat226: 0.0 @@ -61726,7 +61726,7 @@ bins: syst_JES_EtaIntercalibration_Stat232: 0.0 syst_JES_EtaIntercalibration_Stat233: 0.0 syst_JES_EtaIntercalibration_Stat234: 0.0 - syst_JES_EtaIntercalibration_Stat235: 1.675759156322889e-08 + syst_JES_EtaIntercalibration_Stat235: 1.67575916e-08 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 syst_JES_EtaIntercalibration_Stat238: 0.0 @@ -61820,85 +61820,85 @@ bins: syst_JES_EtaIntercalibration_Stat97: 0.0 syst_JES_EtaIntercalibration_Stat98: 0.0 syst_JES_EtaIntercalibration_Stat99: 0.0 - syst_JES_EtaIntercalibration_TotalStat_MJB: 1.542233019844926e-06 - syst_JES_Flavour_Comp: 3.0834839062333373e-06 - syst_JES_Gjet_Generator: 3.6305840783543356e-06 - syst_JES_Gjet_OOC: 3.0308869988833306e-06 - syst_JES_Gjet_Purity: 8.654191860017895e-08 - syst_JES_Gjet_Stat1: 3.1055670979709966e-09 - syst_JES_Gjet_Stat10: 2.7739793499727068e-08 - syst_JES_Gjet_Stat11: 2.7851376985707547e-08 - syst_JES_Gjet_Stat12: 1.0299640127208328e-07 - syst_JES_Gjet_Stat13: 4.7455508373633505e-07 - syst_JES_Gjet_Stat14: 2.0356086927501563e-06 - syst_JES_Gjet_Stat15: 2.1240153012631526e-06 - syst_JES_Gjet_Stat2: 3.385639713554884e-09 - syst_JES_Gjet_Stat3: 3.385639713554884e-09 - syst_JES_Gjet_Stat4: 3.385639713554884e-09 - syst_JES_Gjet_Stat5: 3.385639713554884e-09 - syst_JES_Gjet_Stat6: 1.2851816992161069e-08 - syst_JES_Gjet_Stat7: 1.8766770500008788e-08 - syst_JES_Gjet_Stat8: 1.2851816992161069e-08 - syst_JES_Gjet_Stat9: 2.7825396223594013e-08 - syst_JES_Gjet_Veto: 3.4131768237230253e-06 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.54223302e-06 + syst_JES_Flavour_Comp: 3.08348391e-06 + syst_JES_Gjet_Generator: 3.63058408e-06 + syst_JES_Gjet_OOC: 3.03088700e-06 + syst_JES_Gjet_Purity: 8.65419186e-08 + syst_JES_Gjet_Stat1: 3.10556710e-09 + syst_JES_Gjet_Stat10: 2.77397935e-08 + syst_JES_Gjet_Stat11: 2.78513770e-08 + syst_JES_Gjet_Stat12: 1.02996401e-07 + syst_JES_Gjet_Stat13: 4.74555084e-07 + syst_JES_Gjet_Stat14: 2.03560869e-06 + syst_JES_Gjet_Stat15: 2.12401530e-06 + syst_JES_Gjet_Stat2: 3.38563971e-09 + syst_JES_Gjet_Stat3: 3.38563971e-09 + syst_JES_Gjet_Stat4: 3.38563971e-09 + syst_JES_Gjet_Stat5: 3.38563971e-09 + syst_JES_Gjet_Stat6: 1.28518170e-08 + syst_JES_Gjet_Stat7: 1.87667705e-08 + syst_JES_Gjet_Stat8: 1.28518170e-08 + syst_JES_Gjet_Stat9: 2.78253962e-08 + syst_JES_Gjet_Veto: 3.41317682e-06 syst_JES_Gjet_dPhi: 0.0 - syst_JES_LArESZee: 4.452914663453591e-06 - syst_JES_LArEsmear: 1.8143232209283988e-07 - syst_JES_LAr_JVT: 5.245537361176641e-07 - syst_JES_MJB_Alpha: 1.547587396562792e-08 - syst_JES_MJB_Asym: 5.58364517206278e-07 - syst_JES_MJB_Beta: 2.7825396223594013e-08 - syst_JES_MJB_Stat1: 6.670993685351531e-11 - syst_JES_MJB_Stat10: 2.1867141445557077e-08 - syst_JES_MJB_Stat11: 1.2288900479701184e-08 - syst_JES_MJB_Stat12: 1.140209046622592e-08 - syst_JES_MJB_Stat13: 1.0011253667748111e-08 + syst_JES_LArESZee: 4.45291466e-06 + syst_JES_LArEsmear: 1.81432322e-07 + syst_JES_LAr_JVT: 5.24553736e-07 + syst_JES_MJB_Alpha: 1.54758740e-08 + syst_JES_MJB_Asym: 5.58364517e-07 + syst_JES_MJB_Beta: 2.78253962e-08 + syst_JES_MJB_Stat1: 6.67099369e-11 + syst_JES_MJB_Stat10: 2.18671414e-08 + syst_JES_MJB_Stat11: 1.22889005e-08 + syst_JES_MJB_Stat12: 1.14020905e-08 + syst_JES_MJB_Stat13: 1.00112537e-08 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 3.9239611045472915e-09 - syst_JES_MJB_Stat3: 1.547587396562792e-08 - syst_JES_MJB_Stat4: 5.308735725198609e-09 - syst_JES_MJB_Stat5: 1.2851816992161069e-08 - syst_JES_MJB_Stat6: 1.547587396562792e-08 - syst_JES_MJB_Stat7: 1.6142713526541937e-08 - syst_JES_MJB_Stat8: 1.613405327250409e-08 - syst_JES_MJB_Stat9: 1.613405327250409e-08 - syst_JES_MJB_Threshold: 1.5425803601433543e-07 - syst_JES_Pileup_MuOffset: 8.723473892320651e-07 + syst_JES_MJB_Stat2: 3.92396110e-09 + syst_JES_MJB_Stat3: 1.54758740e-08 + syst_JES_MJB_Stat4: 5.30873573e-09 + syst_JES_MJB_Stat5: 1.28518170e-08 + syst_JES_MJB_Stat6: 1.54758740e-08 + syst_JES_MJB_Stat7: 1.61427135e-08 + syst_JES_MJB_Stat8: 1.61340533e-08 + syst_JES_MJB_Stat9: 1.61340533e-08 + syst_JES_MJB_Threshold: 1.54258036e-07 + syst_JES_Pileup_MuOffset: 8.72347389e-07 syst_JES_Pileup_NPVOffset: 0.0 syst_JES_Pileup_Pt_term: 0.0 - syst_JES_PunchThrough_MC15: 8.457515060583693e-07 + syst_JES_PunchThrough_MC15: 8.45751506e-07 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 1.4101624684765935e-06 - syst_JES_Zjet_MuScale: 5.743917690043965e-08 - syst_JES_Zjet_MuSmearID: 1.2851816992161069e-08 + syst_JES_Zjet_MC: 1.41016247e-06 + syst_JES_Zjet_MuScale: 5.74391769e-08 + syst_JES_Zjet_MuSmearID: 1.28518170e-08 syst_JES_Zjet_MuSmearMS: 0.0 - syst_JES_Zjet_OOC: 1.1116302082977056e-06 - syst_JES_Zjet_Stat1: 2.783405647763186e-08 - syst_JES_Zjet_Stat10: 2.773982157026249e-08 - syst_JES_Zjet_Stat11: 4.0102706257651737e-08 - syst_JES_Zjet_Stat12: 1.621199555884469e-07 - syst_JES_Zjet_Stat13: 1.6195532563024904e-07 + syst_JES_Zjet_OOC: 1.11163021e-06 + syst_JES_Zjet_Stat1: 2.78340565e-08 + syst_JES_Zjet_Stat10: 2.77398216e-08 + syst_JES_Zjet_Stat11: 4.01027063e-08 + syst_JES_Zjet_Stat12: 1.62119956e-07 + syst_JES_Zjet_Stat13: 1.61955326e-07 syst_JES_Zjet_Stat2: 0.0 - syst_JES_Zjet_Stat3: 1.2851816992161069e-08 - syst_JES_Zjet_Stat4: 1.2851816992161069e-08 - syst_JES_Zjet_Stat5: 1.2851816992161069e-08 - syst_JES_Zjet_Stat6: 1.8766770500008788e-08 - syst_JES_Zjet_Stat7: 1.2851816992161069e-08 - syst_JES_Zjet_Stat8: 1.2851816992161069e-08 - syst_JES_Zjet_Stat9: 2.7825396223594013e-08 - syst_JES_Zjet_Veto: 1.5325876220301402e-07 - syst_JES_Zjet_dPhi: 1.541350949654231e-07 + syst_JES_Zjet_Stat3: 1.28518170e-08 + syst_JES_Zjet_Stat4: 1.28518170e-08 + syst_JES_Zjet_Stat5: 1.28518170e-08 + syst_JES_Zjet_Stat6: 1.87667705e-08 + syst_JES_Zjet_Stat7: 1.28518170e-08 + syst_JES_Zjet_Stat8: 1.28518170e-08 + syst_JES_Zjet_Stat9: 2.78253962e-08 + syst_JES_Zjet_Veto: 1.53258762e-07 + syst_JES_Zjet_dPhi: 1.54135095e-07 syst_PRW: 0.0 - syst_Unfolding_bias: 1.3573e-06 - syst_cleaning: 1.7346488837802304e-07 - syst_lumi: 5.557e-07 + syst_Unfolding_bias: 1.35730000e-06 + syst_cleaning: 1.73464888e-07 + syst_lumi: 5.55700000e-07 syst_splitted_1_perbinPercrossOpt17_JES_MJB_Fragmentation: 0.0 syst_splitted_1_perbinPercrossOpt18_JES_Pileup_Rho_topology: 0.0 - syst_splitted_1_percrossOpt7_JES_Flavour_Response: 1.3046152718330412e-06 - syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 5.0956934758676376e-08 - syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 6.114139350718137e-07 - syst_splitted_2_percrossOpt7_JES_Flavour_Response: 5.68837241660565e-07 - syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 5.744346503302182e-08 - syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 8.840387321831549e-07 + syst_splitted_1_percrossOpt7_JES_Flavour_Response: 1.30461527e-06 + syst_splitted_2_perbinPercrossOpt17_JES_MJB_Fragmentation: 5.09569348e-08 + syst_splitted_2_perbinPercrossOpt18_JES_Pileup_Rho_topology: 6.11413935e-07 + syst_splitted_2_percrossOpt7_JES_Flavour_Response: 5.68837242e-07 + syst_splitted_3_perbinPercrossOpt17_JES_MJB_Fragmentation: 5.74434650e-08 + syst_splitted_3_perbinPercrossOpt18_JES_Pileup_Rho_topology: 8.84038732e-07 diff --git a/nnpdf_data/nnpdf_data/commondata/ATLAS_1JET_8TEV_R06/filter.py b/nnpdf_data/nnpdf_data/commondata/ATLAS_1JET_8TEV_R06/filter.py index 2b3db85c0e..f218d0a2c4 100644 --- a/nnpdf_data/nnpdf_data/commondata/ATLAS_1JET_8TEV_R06/filter.py +++ b/nnpdf_data/nnpdf_data/commondata/ATLAS_1JET_8TEV_R06/filter.py @@ -2,15 +2,14 @@ import pandas as pd import yaml -from nnpdf_data.filter_utils.utils import prettify_float - -yaml.add_representer(float, prettify_float) - from nnpdf_data.filter_utils.legacy_jets_utils import ( fill_df_ATLAS_1JET_8TEV_R06, get_data_values_ATLAS_1JET_8TEV_R06, get_kinematics_ATLAS_1JET_8TEV_R06, ) +from nnpdf_data.filter_utils.utils import prettify_float + +yaml.add_representer(float, prettify_float) def filter_ATLAS_1JET_8TEV_data_kinetic(): diff --git a/nnpdf_data/nnpdf_data/commondata/ATLAS_2JET_13TEV_DIF/data.yaml b/nnpdf_data/nnpdf_data/commondata/ATLAS_2JET_13TEV_DIF/data.yaml index 525ef0db41..3c95ad6d31 100644 --- a/nnpdf_data/nnpdf_data/commondata/ATLAS_2JET_13TEV_DIF/data.yaml +++ b/nnpdf_data/nnpdf_data/commondata/ATLAS_2JET_13TEV_DIF/data.yaml @@ -1,137 +1,137 @@ data_central: -- 2262.8033116907745 -- 957.0090047292385 -- 399.55961447839996 -- 170.72626408776773 -- 77.35692282796698 -- 36.41663320880673 -- 18.234865133705654 -- 9.246345715898453 -- 4.885539674263707 -- 2.5656340501796873 -- 1.3569358802117621 -- 0.7135179240152719 -- 0.3786058796262168 -- 0.20343866700799643 -- 0.1082693787790832 -- 0.05683287305262107 -- 0.030728373238367728 -- 0.01651847155606903 -- 0.008422821369270838 -- 0.004536395495464134 -- 0.0022931234954102608 -- 0.001232038125973302 -- 0.0005737272034261709 -- 0.00031490350893292033 -- 0.00013433264463378713 -- 5.57668238421531e-05 -- 2.246129180313631e-05 -- 3.5932479675e-06 -- 1993.7133716091546 -- 851.2086678718653 -- 377.59525767504294 -- 176.57033549119998 -- 85.10565976293013 -- 42.249232493471936 -- 21.619155253990705 -- 11.327475265737219 -- 5.9289474283198835 -- 3.154934836515952 -- 1.6562228941537904 -- 0.8984080557506524 -- 0.47502668962505634 -- 0.25630556141327243 -- 0.13692659644796754 -- 0.07302118869264 -- 0.03861316992455912 -- 0.019862016176735102 -- 0.010710386969693632 -- 0.005419991968682463 -- 0.0026768075455749648 -- 0.0014416402758908166 -- 0.0006808134722642031 -- 0.00033201412296938445 -- 0.00013351995734516448 -- 7.11016121814921e-05 -- 2.1923012038022766e-05 -- 3.5973488141e-06 -- 863.5539883884095 -- 450.1674048495153 -- 219.98400451806276 -- 112.4754417293405 -- 59.99654866157796 -- 32.28675907365559 -- 17.20264508210465 -- 9.002036456331489 -- 4.80910163774424 -- 2.5243573831145816 -- 1.369999330885857 -- 0.7489986301505855 -- 0.3914374750948845 -- 0.20965517961315616 -- 0.11178446249328229 -- 0.058757301283910865 -- 0.031204961959701974 -- 0.015777860557929405 -- 0.007726697765434147 -- 0.003907243372102074 -- 0.0018586462271065552 -- 0.0009005963435605952 -- 0.0004482333423557189 -- 0.0001585602436727594 -- 6.122810206732859e-05 -- 3.272898356023778e-05 -- 3.2215914334000002e-06 -- 142.39278285220857 -- 78.19791769460001 -- 43.59452896853644 -- 23.69770152389089 -- 13.012281642551985 -- 7.064469749640945 -- 3.970996725437475 -- 2.1748257621791676 -- 1.1397361992715616 -- 0.6340464409438937 -- 0.32759140107188 -- 0.18054482874700012 -- 0.09000891613229439 -- 0.045207114600135996 -- 0.023830037274099283 -- 0.011641611040786185 -- 0.005753313812886084 -- 0.002705892409247243 -- 0.0011512444884287242 -- 0.0005276918854631926 -- 0.00020435987958709206 -- 7.73384627795125e-05 -- 2.9745904893213218e-05 -- 5.455942995e-06 -- 33.59043523241108 -- 25.853617191122847 -- 14.634138464672677 -- 8.88057066484456 -- 4.460853232814904 -- 2.67365964206545 -- 1.580106453788255 -- 0.7505518730589 -- 0.43558178116965296 -- 0.23332559730229052 -- 0.1269736834243585 -- 0.06711573180316856 -- 0.03574156869602016 -- 0.017364492864566924 -- 0.007354365631842638 -- 0.003232466664231509 -- 0.0014691424565397328 -- 0.0005442800847822553 -- 0.00018731072373938588 -- 7.279460653284144e-05 -- 7.214375e-06 -- 2.9079452823444862 -- 1.0277924164653365 -- 0.38298026591309614 -- 0.11619962905235774 -- 0.0361313195000717 -- 0.00750803360513645 -- 0.0007073852979613151 -- 9.74174675050152e-06 +- 2.26280331e+03 +- 9.57009005e+02 +- 3.99559614e+02 +- 1.70726264e+02 +- 7.73569228e+01 +- 3.64166332e+01 +- 1.82348651e+01 +- 9.24634572e+00 +- 4.88553967e+00 +- 2.56563405e+00 +- 1.35693588e+00 +- 7.13517924e-01 +- 3.78605880e-01 +- 2.03438667e-01 +- 1.08269379e-01 +- 5.68328731e-02 +- 3.07283732e-02 +- 1.65184716e-02 +- 8.42282137e-03 +- 4.53639550e-03 +- 2.29312350e-03 +- 1.23203813e-03 +- 5.73727203e-04 +- 3.14903509e-04 +- 1.34332645e-04 +- 5.57668238e-05 +- 2.24612918e-05 +- 3.59324797e-06 +- 1.99371337e+03 +- 8.51208668e+02 +- 3.77595258e+02 +- 1.76570335e+02 +- 8.51056598e+01 +- 4.22492325e+01 +- 2.16191553e+01 +- 1.13274753e+01 +- 5.92894743e+00 +- 3.15493484e+00 +- 1.65622289e+00 +- 8.98408056e-01 +- 4.75026690e-01 +- 2.56305561e-01 +- 1.36926596e-01 +- 7.30211887e-02 +- 3.86131699e-02 +- 1.98620162e-02 +- 1.07103870e-02 +- 5.41999197e-03 +- 2.67680755e-03 +- 1.44164028e-03 +- 6.80813472e-04 +- 3.32014123e-04 +- 1.33519957e-04 +- 7.11016122e-05 +- 2.19230120e-05 +- 3.59734881e-06 +- 8.63553988e+02 +- 4.50167405e+02 +- 2.19984005e+02 +- 1.12475442e+02 +- 5.99965487e+01 +- 3.22867591e+01 +- 1.72026451e+01 +- 9.00203646e+00 +- 4.80910164e+00 +- 2.52435738e+00 +- 1.36999933e+00 +- 7.48998630e-01 +- 3.91437475e-01 +- 2.09655180e-01 +- 1.11784462e-01 +- 5.87573013e-02 +- 3.12049620e-02 +- 1.57778606e-02 +- 7.72669777e-03 +- 3.90724337e-03 +- 1.85864623e-03 +- 9.00596344e-04 +- 4.48233342e-04 +- 1.58560244e-04 +- 6.12281021e-05 +- 3.27289836e-05 +- 3.22159143e-06 +- 1.42392783e+02 +- 7.81979177e+01 +- 4.35945290e+01 +- 2.36977015e+01 +- 1.30122816e+01 +- 7.06446975e+00 +- 3.97099673e+00 +- 2.17482576e+00 +- 1.13973620e+00 +- 6.34046441e-01 +- 3.27591401e-01 +- 1.80544829e-01 +- 9.00089161e-02 +- 4.52071146e-02 +- 2.38300373e-02 +- 1.16416110e-02 +- 5.75331381e-03 +- 2.70589241e-03 +- 1.15124449e-03 +- 5.27691885e-04 +- 2.04359880e-04 +- 7.73384628e-05 +- 2.97459049e-05 +- 5.45594299e-06 +- 3.35904352e+01 +- 2.58536172e+01 +- 1.46341385e+01 +- 8.88057066e+00 +- 4.46085323e+00 +- 2.67365964e+00 +- 1.58010645e+00 +- 7.50551873e-01 +- 4.35581781e-01 +- 2.33325597e-01 +- 1.26973683e-01 +- 6.71157318e-02 +- 3.57415687e-02 +- 1.73644929e-02 +- 7.35436563e-03 +- 3.23246666e-03 +- 1.46914246e-03 +- 5.44280085e-04 +- 1.87310724e-04 +- 7.27946065e-05 +- 7.21437500e-06 +- 2.90794528e+00 +- 1.02779242e+00 +- 3.82980266e-01 +- 1.16199629e-01 +- 3.61313195e-02 +- 7.50803361e-03 +- 7.07385298e-04 +- 9.74174675e-06 diff --git a/nnpdf_data/nnpdf_data/commondata/ATLAS_2JET_13TEV_DIF/filter.py b/nnpdf_data/nnpdf_data/commondata/ATLAS_2JET_13TEV_DIF/filter.py index 6ddd20bef2..4bca358ac6 100644 --- a/nnpdf_data/nnpdf_data/commondata/ATLAS_2JET_13TEV_DIF/filter.py +++ b/nnpdf_data/nnpdf_data/commondata/ATLAS_2JET_13TEV_DIF/filter.py @@ -1,7 +1,10 @@ import yaml +from nnpdf_data.filter_utils.utils import prettify_float from nnpdf_data.filter_utils.utils import symmetrize_errors as se +yaml.add_representer(float, prettify_float) + def processData(): with open('metadata.yaml', 'r') as file: diff --git a/nnpdf_data/nnpdf_data/commondata/ATLAS_2JET_13TEV_DIF/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/ATLAS_2JET_13TEV_DIF/uncertainties.yaml index 88c9e163f4..c0e5c8f787 100644 --- a/nnpdf_data/nnpdf_data/commondata/ATLAS_2JET_13TEV_DIF/uncertainties.yaml +++ b/nnpdf_data/nnpdf_data/commondata/ATLAS_2JET_13TEV_DIF/uncertainties.yaml @@ -1352,9114 +1352,9114 @@ bins: syst_JER_CROSS_CALIB_FORWARD: 0.816 syst_JER_NOISE_FORWARD: 0.5876 syst_JER_NP0: 14.39 - syst_JER_NP1: 2.827516931867959 - syst_JER_NP2: 3.3774555511508955 - syst_JER_NP3: 2.561536062599939 - syst_JER_NP4: 2.1999459084259323 + syst_JER_NP1: 2.82751693e+00 + syst_JER_NP2: 3.37745555e+00 + syst_JER_NP3: 2.56153606e+00 + syst_JER_NP4: 2.19994591e+00 syst_JER_NP5: 0.0 syst_JER_NP6: 0.0 syst_JER_NP7: 0.0 - syst_JER_NP8: 1.623345271345563 - syst_JES_EtaIntercalibration_Modelling: 37.537120970447376 - syst_JES_EtaIntercalibration_NonClosure: 13.5245217290668 - syst_JES_EtaIntercalibration_Stat0: 4.208699561622331e-06 - syst_JES_EtaIntercalibration_Stat1: 4.208699561622331e-06 - syst_JES_EtaIntercalibration_Stat10: 0.013815838763897038 - syst_JES_EtaIntercalibration_Stat100: 0.7930971236235824 - syst_JES_EtaIntercalibration_Stat101: 0.6536497074121581 - syst_JES_EtaIntercalibration_Stat102: 0.5843010953267159 - syst_JES_EtaIntercalibration_Stat103: 0.6496742472193275 - syst_JES_EtaIntercalibration_Stat104: 0.5049268461866531 - syst_JES_EtaIntercalibration_Stat105: 0.3938170133450306 - syst_JES_EtaIntercalibration_Stat106: 0.19721754485846335 - syst_JES_EtaIntercalibration_Stat107: 0.0041054160714841074 - syst_JES_EtaIntercalibration_Stat108: 0.0011268722554043115 - syst_JES_EtaIntercalibration_Stat109: 0.1455739835101039 - syst_JES_EtaIntercalibration_Stat11: 0.01121799081832393 - syst_JES_EtaIntercalibration_Stat110: 0.3110847066314897 - syst_JES_EtaIntercalibration_Stat111: 0.653027579815738 - syst_JES_EtaIntercalibration_Stat112: 0.8738388452683938 - syst_JES_EtaIntercalibration_Stat113: 0.8122536842021709 - syst_JES_EtaIntercalibration_Stat114: 0.7359878667478154 - syst_JES_EtaIntercalibration_Stat115: 0.9506541471534219 - syst_JES_EtaIntercalibration_Stat116: 1.0121603269739432 - syst_JES_EtaIntercalibration_Stat117: 1.0692242234442688 - syst_JES_EtaIntercalibration_Stat118: 1.0052545983481003 - syst_JES_EtaIntercalibration_Stat119: 1.4292035089517514 - syst_JES_EtaIntercalibration_Stat12: 0.008972461242602278 - syst_JES_EtaIntercalibration_Stat120: 1.5327312248075329 - syst_JES_EtaIntercalibration_Stat121: 1.1154369222416838 - syst_JES_EtaIntercalibration_Stat122: 0.7916042871915235 - syst_JES_EtaIntercalibration_Stat123: 0.4956909596714469 - syst_JES_EtaIntercalibration_Stat124: 0.6299628242999742 - syst_JES_EtaIntercalibration_Stat125: 0.4164644372572525 - syst_JES_EtaIntercalibration_Stat126: 0.18710791004123797 - syst_JES_EtaIntercalibration_Stat127: 0.0008754650806856889 - syst_JES_EtaIntercalibration_Stat128: 0.047026814425389266 - syst_JES_EtaIntercalibration_Stat129: 0.07787925076681208 - syst_JES_EtaIntercalibration_Stat13: 0.004715674368528853 - syst_JES_EtaIntercalibration_Stat130: 0.5700175150817737 - syst_JES_EtaIntercalibration_Stat131: 0.363750364260986 - syst_JES_EtaIntercalibration_Stat132: 0.4269776809155251 - syst_JES_EtaIntercalibration_Stat133: 0.49680492147320765 - syst_JES_EtaIntercalibration_Stat134: 0.49819999967382583 - syst_JES_EtaIntercalibration_Stat135: 0.37490239729828345 - syst_JES_EtaIntercalibration_Stat136: 0.5904923602384708 - syst_JES_EtaIntercalibration_Stat137: 0.5896885109954236 - syst_JES_EtaIntercalibration_Stat138: 0.6457585520146055 - syst_JES_EtaIntercalibration_Stat139: 0.6363316489850241 - syst_JES_EtaIntercalibration_Stat14: 0.005458370155092086 - syst_JES_EtaIntercalibration_Stat140: 0.4296482369334244 - syst_JES_EtaIntercalibration_Stat141: 0.5199791630440589 - syst_JES_EtaIntercalibration_Stat142: 0.1920876557720459 - syst_JES_EtaIntercalibration_Stat143: 0.9283330167563792 - syst_JES_EtaIntercalibration_Stat144: 0.44372279634925227 - syst_JES_EtaIntercalibration_Stat145: 0.1086878129092678 - syst_JES_EtaIntercalibration_Stat146: 0.056222198462884745 - syst_JES_EtaIntercalibration_Stat147: 0.039615277961917675 - syst_JES_EtaIntercalibration_Stat148: 0.08625306067033216 - syst_JES_EtaIntercalibration_Stat149: 0.12982480300389446 - syst_JES_EtaIntercalibration_Stat15: 0.0036373066958944257 - syst_JES_EtaIntercalibration_Stat150: 0.13054948403096045 - syst_JES_EtaIntercalibration_Stat151: 0.17018133505176175 - syst_JES_EtaIntercalibration_Stat152: 0.12020062354247583 - syst_JES_EtaIntercalibration_Stat153: 0.10977908862802606 - syst_JES_EtaIntercalibration_Stat154: 0.19955283780242267 - syst_JES_EtaIntercalibration_Stat155: 0.07097177238170116 - syst_JES_EtaIntercalibration_Stat156: 0.11003894628721234 - syst_JES_EtaIntercalibration_Stat157: 0.10155895834809453 - syst_JES_EtaIntercalibration_Stat158: 0.1199220449917362 - syst_JES_EtaIntercalibration_Stat159: 0.06255416932547342 - syst_JES_EtaIntercalibration_Stat16: 0.0036373066958944257 - syst_JES_EtaIntercalibration_Stat160: 0.038805086006862555 - syst_JES_EtaIntercalibration_Stat161: 0.07835503605384914 - syst_JES_EtaIntercalibration_Stat162: 0.01991615848375384 - syst_JES_EtaIntercalibration_Stat163: 0.017628902598572343 - syst_JES_EtaIntercalibration_Stat164: 0.027034857998517396 - syst_JES_EtaIntercalibration_Stat165: 0.022293058936583825 - syst_JES_EtaIntercalibration_Stat166: 0.0272252144160519 - syst_JES_EtaIntercalibration_Stat167: 0.032980131518840244 - syst_JES_EtaIntercalibration_Stat168: 0.0619253928126419 - syst_JES_EtaIntercalibration_Stat169: 0.04369491846885631 - syst_JES_EtaIntercalibration_Stat17: 0.010576768256419565 - syst_JES_EtaIntercalibration_Stat170: 0.05087686114531831 - syst_JES_EtaIntercalibration_Stat171: 0.03888979911236365 - syst_JES_EtaIntercalibration_Stat172: 0.05704911218196126 - syst_JES_EtaIntercalibration_Stat173: 0.01410957970343199 - syst_JES_EtaIntercalibration_Stat174: 0.04118655939745392 - syst_JES_EtaIntercalibration_Stat175: 0.032165084528880075 - syst_JES_EtaIntercalibration_Stat176: 0.03782987443806812 - syst_JES_EtaIntercalibration_Stat177: 0.04435165611338544 - syst_JES_EtaIntercalibration_Stat178: 0.030581410611677153 - syst_JES_EtaIntercalibration_Stat179: 0.02094322618413887 - syst_JES_EtaIntercalibration_Stat18: 2.577291601446243e-06 - syst_JES_EtaIntercalibration_Stat180: 0.00918465245668011 - syst_JES_EtaIntercalibration_Stat181: 0.011814685639068016 - syst_JES_EtaIntercalibration_Stat182: 0.0026688278891444086 - syst_JES_EtaIntercalibration_Stat183: 0.005280298002953999 - syst_JES_EtaIntercalibration_Stat184: 0.01599202013505486 - syst_JES_EtaIntercalibration_Stat185: 0.011530407657580889 - syst_JES_EtaIntercalibration_Stat186: 0.026908212036476895 - syst_JES_EtaIntercalibration_Stat187: 0.010770821113893778 - syst_JES_EtaIntercalibration_Stat188: 0.010241026950457654 - syst_JES_EtaIntercalibration_Stat189: 0.010457528086861637 - syst_JES_EtaIntercalibration_Stat19: 0.0038425624130821873 - syst_JES_EtaIntercalibration_Stat190: 0.007102600475621589 - syst_JES_EtaIntercalibration_Stat191: 0.010019127506923943 - syst_JES_EtaIntercalibration_Stat192: 0.00916144104385331 - syst_JES_EtaIntercalibration_Stat193: 0.010891110148648759 - syst_JES_EtaIntercalibration_Stat194: 0.010442487347370836 - syst_JES_EtaIntercalibration_Stat195: 0.002810589751279969 - syst_JES_EtaIntercalibration_Stat196: 0.009482148530264646 - syst_JES_EtaIntercalibration_Stat197: 1.3328130964242511e-08 - syst_JES_EtaIntercalibration_Stat198: 0.002450106577207408 - syst_JES_EtaIntercalibration_Stat199: 2.105971267750923e-05 - syst_JES_EtaIntercalibration_Stat2: 4.208699561622331e-06 - syst_JES_EtaIntercalibration_Stat20: 4.208699561622331e-06 - syst_JES_EtaIntercalibration_Stat200: 7.96050551158656e-06 - syst_JES_EtaIntercalibration_Stat201: 0.0008876784519407378 - syst_JES_EtaIntercalibration_Stat202: 9.742746427191707e-06 - syst_JES_EtaIntercalibration_Stat203: 3.166816643194159e-05 - syst_JES_EtaIntercalibration_Stat204: 2.425737155812516e-05 - syst_JES_EtaIntercalibration_Stat205: 0.0005238565431224012 - syst_JES_EtaIntercalibration_Stat206: 0.0010350839229260592 - syst_JES_EtaIntercalibration_Stat207: 3.3489365476222444e-05 - syst_JES_EtaIntercalibration_Stat208: 2.8714969394573985e-05 - syst_JES_EtaIntercalibration_Stat209: 0.0016783591447270482 - syst_JES_EtaIntercalibration_Stat21: 4.208699561622331e-06 - syst_JES_EtaIntercalibration_Stat210: 1.359745390689007e-05 - syst_JES_EtaIntercalibration_Stat211: 0.0005647370456238904 - syst_JES_EtaIntercalibration_Stat212: 4.234468650255897e-06 - syst_JES_EtaIntercalibration_Stat213: 4.137647973184765e-06 - syst_JES_EtaIntercalibration_Stat214: 1.9407624630936836e-09 - syst_JES_EtaIntercalibration_Stat215: 2.265522456024638e-06 - syst_JES_EtaIntercalibration_Stat216: 3.208624121021345e-06 - syst_JES_EtaIntercalibration_Stat217: 2.99298379547902e-06 - syst_JES_EtaIntercalibration_Stat218: 2.2992974467755506e-06 - syst_JES_EtaIntercalibration_Stat219: 1.0711508250475282e-15 - syst_JES_EtaIntercalibration_Stat22: 4.208699561622331e-06 - syst_JES_EtaIntercalibration_Stat220: 3.112495301201272e-06 - syst_JES_EtaIntercalibration_Stat221: 1.3665880871718443e-15 - syst_JES_EtaIntercalibration_Stat222: 5.308737880739339e-10 - syst_JES_EtaIntercalibration_Stat223: 2.3330724375458048e-06 - syst_JES_EtaIntercalibration_Stat224: 4.116605731667777e-06 - syst_JES_EtaIntercalibration_Stat225: 4.1208318031678996e-06 - syst_JES_EtaIntercalibration_Stat226: 2.4629762483629432e-06 - syst_JES_EtaIntercalibration_Stat227: 4.208722846660255e-06 - syst_JES_EtaIntercalibration_Stat228: 4.194605106562477e-06 - syst_JES_EtaIntercalibration_Stat229: 2.584219804892765e-06 - syst_JES_EtaIntercalibration_Stat23: 5.308602358436729e-06 - syst_JES_EtaIntercalibration_Stat230: 4.191046975398868e-06 - syst_JES_EtaIntercalibration_Stat231: 2.5140717471862256e-06 - syst_JES_EtaIntercalibration_Stat232: 4.150281526595515e-06 - syst_JES_EtaIntercalibration_Stat233: 4.210114844039293e-06 - syst_JES_EtaIntercalibration_Stat234: 4.208699680423872e-06 - syst_JES_EtaIntercalibration_Stat235: 4.208699680423872e-06 - syst_JES_EtaIntercalibration_Stat236: 2.5772916016624892e-06 - syst_JES_EtaIntercalibration_Stat237: 4.209406698098913e-06 - syst_JES_EtaIntercalibration_Stat238: 4.209406698098913e-06 - syst_JES_EtaIntercalibration_Stat239: 4.209406698098913e-06 - syst_JES_EtaIntercalibration_Stat24: 0.01063952467958508 - syst_JES_EtaIntercalibration_Stat240: 2.5772916016624892e-06 - syst_JES_EtaIntercalibration_Stat241: 4.208699561622331e-06 - syst_JES_EtaIntercalibration_Stat242: 2.5772916016624892e-06 - syst_JES_EtaIntercalibration_Stat243: 4.208699561622331e-06 - syst_JES_EtaIntercalibration_Stat244: 4.208699561622331e-06 - syst_JES_EtaIntercalibration_Stat245: 4.208699561622331e-06 - syst_JES_EtaIntercalibration_Stat25: 0.04633469442005634 - syst_JES_EtaIntercalibration_Stat26: 0.04470641728823727 - syst_JES_EtaIntercalibration_Stat27: 0.02831369103455076 - syst_JES_EtaIntercalibration_Stat28: 0.06372424342430438 - syst_JES_EtaIntercalibration_Stat29: 0.041722251557172706 - syst_JES_EtaIntercalibration_Stat3: 0.0017407196857713767 - syst_JES_EtaIntercalibration_Stat30: 0.06750809803275457 - syst_JES_EtaIntercalibration_Stat31: 0.09084237392318632 - syst_JES_EtaIntercalibration_Stat32: 0.04491731403367748 - syst_JES_EtaIntercalibration_Stat33: 0.04898926483169553 - syst_JES_EtaIntercalibration_Stat34: 0.12623427743683568 - syst_JES_EtaIntercalibration_Stat35: 0.05878735982334978 - syst_JES_EtaIntercalibration_Stat36: 0.07748061434965522 - syst_JES_EtaIntercalibration_Stat37: 0.07487445542372913 - syst_JES_EtaIntercalibration_Stat38: 0.05707290748463758 - syst_JES_EtaIntercalibration_Stat39: 0.03210147465460115 - syst_JES_EtaIntercalibration_Stat4: 0.0023720378973431265 - syst_JES_EtaIntercalibration_Stat40: 0.0279883242933549 - syst_JES_EtaIntercalibration_Stat41: 0.0057692231712770485 - syst_JES_EtaIntercalibration_Stat42: 0.0038425624130821873 - syst_JES_EtaIntercalibration_Stat43: 4.208699561622331e-06 - syst_JES_EtaIntercalibration_Stat44: 4.208699561622331e-06 - syst_JES_EtaIntercalibration_Stat45: 4.208699561622331e-06 - syst_JES_EtaIntercalibration_Stat46: 0.039411857035668844 - syst_JES_EtaIntercalibration_Stat47: 0.12199865286141483 - syst_JES_EtaIntercalibration_Stat48: 0.1812559838322586 - syst_JES_EtaIntercalibration_Stat49: 0.15711374860272412 - syst_JES_EtaIntercalibration_Stat5: 0.0032790969412324488 - syst_JES_EtaIntercalibration_Stat50: 0.16108031381891455 - syst_JES_EtaIntercalibration_Stat51: 0.2148447055433296 - syst_JES_EtaIntercalibration_Stat52: 0.23727888127686375 - syst_JES_EtaIntercalibration_Stat53: 0.20435995204540444 - syst_JES_EtaIntercalibration_Stat54: 0.15942961675924583 - syst_JES_EtaIntercalibration_Stat55: 0.21226847976089147 - syst_JES_EtaIntercalibration_Stat56: 0.2370038132604621 - syst_JES_EtaIntercalibration_Stat57: 0.29039102517123355 - syst_JES_EtaIntercalibration_Stat58: 0.17594899118778715 - syst_JES_EtaIntercalibration_Stat59: 0.14280758939824795 - syst_JES_EtaIntercalibration_Stat6: 0.001939024314594327 - syst_JES_EtaIntercalibration_Stat60: 0.14029346492263992 - syst_JES_EtaIntercalibration_Stat61: 0.1387454931700486 - syst_JES_EtaIntercalibration_Stat62: 0.1295017647563152 - syst_JES_EtaIntercalibration_Stat63: 0.06239447501181495 - syst_JES_EtaIntercalibration_Stat64: 0.00648740368301773 - syst_JES_EtaIntercalibration_Stat65: 4.208699561622331e-06 - syst_JES_EtaIntercalibration_Stat66: 4.208699561622331e-06 - syst_JES_EtaIntercalibration_Stat67: 0.01111440141213192 - syst_JES_EtaIntercalibration_Stat68: 0.09713106441813557 - syst_JES_EtaIntercalibration_Stat69: 0.4757406961780756 - syst_JES_EtaIntercalibration_Stat7: 0.0036728226219881624 - syst_JES_EtaIntercalibration_Stat70: 0.5948344391509287 - syst_JES_EtaIntercalibration_Stat71: 0.6359329996155256 - syst_JES_EtaIntercalibration_Stat72: 0.6467762518831377 - syst_JES_EtaIntercalibration_Stat73: 0.9072245807957366 - syst_JES_EtaIntercalibration_Stat74: 0.9484606950211485 - syst_JES_EtaIntercalibration_Stat75: 0.9198546569975063 - syst_JES_EtaIntercalibration_Stat76: 0.5865884651951485 - syst_JES_EtaIntercalibration_Stat77: 1.020604546335161 - syst_JES_EtaIntercalibration_Stat78: 1.0046590765030694 - syst_JES_EtaIntercalibration_Stat79: 0.8239011712578154 - syst_JES_EtaIntercalibration_Stat8: 0.002003994062582771 - syst_JES_EtaIntercalibration_Stat80: 0.8039488603138883 - syst_JES_EtaIntercalibration_Stat81: 0.6155344994393085 - syst_JES_EtaIntercalibration_Stat82: 0.5654952784948785 - syst_JES_EtaIntercalibration_Stat83: 0.5097623637539358 - syst_JES_EtaIntercalibration_Stat84: 0.4101618552474132 - syst_JES_EtaIntercalibration_Stat85: 0.17405501285513153 - syst_JES_EtaIntercalibration_Stat86: 0.0068646766399226705 - syst_JES_EtaIntercalibration_Stat87: 2.5772916016624892e-06 - syst_JES_EtaIntercalibration_Stat88: 0.01123441756868152 - syst_JES_EtaIntercalibration_Stat89: 0.13117315302682936 - syst_JES_EtaIntercalibration_Stat9: 0.00536413870066761 - syst_JES_EtaIntercalibration_Stat90: 0.4105963072167113 - syst_JES_EtaIntercalibration_Stat91: 0.6622700865205978 - syst_JES_EtaIntercalibration_Stat92: 0.5517513094683147 - syst_JES_EtaIntercalibration_Stat93: 0.6268977009847778 - syst_JES_EtaIntercalibration_Stat94: 0.8147891797882443 - syst_JES_EtaIntercalibration_Stat95: 1.0117118006131984 - syst_JES_EtaIntercalibration_Stat96: 1.03083076569338 - syst_JES_EtaIntercalibration_Stat97: 0.7455223269627812 - syst_JES_EtaIntercalibration_Stat98: 0.7604126297609739 - syst_JES_EtaIntercalibration_Stat99: 0.9420696471068367 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0261097237633798 - syst_JES_Flavour_Comp: 3.7031499389033655 - syst_JES_Flavour_Response: 74.1952008690589 - syst_JES_Gjet_Generator: 45.748956630179016 - syst_JES_Gjet_OOC: 28.76861962277648 - syst_JES_Gjet_Purity: 11.308235627187823 - syst_JES_Gjet_Stat1: 0.13901021976818825 - syst_JES_Gjet_Stat10: 0.25402601653177176 - syst_JES_Gjet_Stat11: 0.3625593468661372 - syst_JES_Gjet_Stat12: 0.10616346405425926 - syst_JES_Gjet_Stat13: 0.017782210440985675 - syst_JES_Gjet_Stat14: 3.4531896948077855e-05 - syst_JES_Gjet_Stat15: 1.6004139453594546e-09 - syst_JES_Gjet_Stat2: 0.2804345378158689 - syst_JES_Gjet_Stat3: 0.4151635912504852 - syst_JES_Gjet_Stat4: 0.6213871096184729 - syst_JES_Gjet_Stat5: 0.8472275771597618 - syst_JES_Gjet_Stat6: 2.5684351266870653 - syst_JES_Gjet_Stat7: 3.863822200878296 - syst_JES_Gjet_Stat8: 1.4247559326074064 - syst_JES_Gjet_Stat9: 0.7805816485160281 - syst_JES_Gjet_Veto: 8.609888907529527 - syst_JES_Gjet_dPhi: 5.070855844924011 - syst_JES_LArESZee: 30.230399848496877 - syst_JES_LArEsmear: 2.812150778318972 - syst_JES_LAr_JVT: 5.121009568434725 - syst_JES_MJB_Alpha: 1.3932419029012873e-08 - syst_JES_MJB_Asym: 0.00019146964754660745 - syst_JES_MJB_Beta: 8.764824473761054e-06 - syst_JES_MJB_Fragmentation: 0.05697529705933967 - syst_JES_MJB_Stat1: 1.209837489086861e-08 - syst_JES_MJB_Stat10: 4.208699680423872e-06 - syst_JES_MJB_Stat11: 4.20799248454652e-06 - syst_JES_MJB_Stat12: 4.20799248454652e-06 - syst_JES_MJB_Stat13: 4.208699561622331e-06 - syst_JES_MJB_Stat14: 4.208699561622331e-06 - syst_JES_MJB_Stat15: 2.576425576258705e-06 - syst_JES_MJB_Stat16: 4.20799248454652e-06 - syst_JES_MJB_Stat2: 3.540311850670785e-05 - syst_JES_MJB_Stat3: 8.91836173296419e-09 - syst_JES_MJB_Stat4: 3.1448021797881023e-09 - syst_JES_MJB_Stat5: 7.981382258105421e-16 - syst_JES_MJB_Stat6: 4.131539997385963e-06 - syst_JES_MJB_Stat7: 2.291503218413625e-06 - syst_JES_MJB_Stat8: 2.350392945671983e-06 - syst_JES_MJB_Stat9: 4.1194019893669036e-06 - syst_JES_MJB_Threshold: 0.0001785646889444167 - syst_JES_Pileup_MuOffset: 0.0009926383178177236 - syst_JES_Pileup_NPVOffset: 3.7339068637956143 - syst_JES_Pileup_Pt_term: 10.57487673687027 - syst_JES_Pileup_Rho_topology: 24.91628935054335 - syst_JES_PunchThrough_MC15: 0.08952535339220952 - syst_JES_SingleParticle_HighPt: 4.208699561622331e-06 - syst_JES_Zjet_MC: 42.94761489011934 - syst_JES_Zjet_MuScale: 3.03955967205778 - syst_JES_Zjet_MuSmearID: 0.5217397914669725 - syst_JES_Zjet_MuSmearMS: 1.5671643779450835 - syst_JES_Zjet_OOC: 27.969560239660545 - syst_JES_Zjet_Stat1: 0.7093411097631379 - syst_JES_Zjet_Stat10: 3.209159703099863 - syst_JES_Zjet_Stat11: 0.4970811100816445 - syst_JES_Zjet_Stat12: 0.6971170561677572 - syst_JES_Zjet_Stat13: 0.15369397735435178 - syst_JES_Zjet_Stat2: 0.0750661814667564 - syst_JES_Zjet_Stat3: 0.28291852183976923 - syst_JES_Zjet_Stat4: 0.31736210785158336 - syst_JES_Zjet_Stat5: 0.5740718313068496 - syst_JES_Zjet_Stat6: 1.198996433480934 - syst_JES_Zjet_Stat7: 1.882989378621133 - syst_JES_Zjet_Stat8: 3.064490292038792 - syst_JES_Zjet_Stat9: 4.333991347476365 - syst_JES_Zjet_Veto: 4.132819883263727 - syst_JES_Zjet_dPhi: 6.0526797990642125 + syst_JER_NP8: 1.62334527e+00 + syst_JES_EtaIntercalibration_Modelling: 3.75371210e+01 + syst_JES_EtaIntercalibration_NonClosure: 1.35245217e+01 + syst_JES_EtaIntercalibration_Stat0: 4.20869956e-06 + syst_JES_EtaIntercalibration_Stat1: 4.20869956e-06 + syst_JES_EtaIntercalibration_Stat10: 1.38158388e-02 + syst_JES_EtaIntercalibration_Stat100: 7.93097124e-01 + syst_JES_EtaIntercalibration_Stat101: 6.53649707e-01 + syst_JES_EtaIntercalibration_Stat102: 5.84301095e-01 + syst_JES_EtaIntercalibration_Stat103: 6.49674247e-01 + syst_JES_EtaIntercalibration_Stat104: 5.04926846e-01 + syst_JES_EtaIntercalibration_Stat105: 3.93817013e-01 + syst_JES_EtaIntercalibration_Stat106: 1.97217545e-01 + syst_JES_EtaIntercalibration_Stat107: 4.10541607e-03 + syst_JES_EtaIntercalibration_Stat108: 1.12687226e-03 + syst_JES_EtaIntercalibration_Stat109: 1.45573984e-01 + syst_JES_EtaIntercalibration_Stat11: 1.12179908e-02 + syst_JES_EtaIntercalibration_Stat110: 3.11084707e-01 + syst_JES_EtaIntercalibration_Stat111: 6.53027580e-01 + syst_JES_EtaIntercalibration_Stat112: 8.73838845e-01 + syst_JES_EtaIntercalibration_Stat113: 8.12253684e-01 + syst_JES_EtaIntercalibration_Stat114: 7.35987867e-01 + syst_JES_EtaIntercalibration_Stat115: 9.50654147e-01 + syst_JES_EtaIntercalibration_Stat116: 1.01216033e+00 + syst_JES_EtaIntercalibration_Stat117: 1.06922422e+00 + syst_JES_EtaIntercalibration_Stat118: 1.00525460e+00 + syst_JES_EtaIntercalibration_Stat119: 1.42920351e+00 + syst_JES_EtaIntercalibration_Stat12: 8.97246124e-03 + syst_JES_EtaIntercalibration_Stat120: 1.53273122e+00 + syst_JES_EtaIntercalibration_Stat121: 1.11543692e+00 + syst_JES_EtaIntercalibration_Stat122: 7.91604287e-01 + syst_JES_EtaIntercalibration_Stat123: 4.95690960e-01 + syst_JES_EtaIntercalibration_Stat124: 6.29962824e-01 + syst_JES_EtaIntercalibration_Stat125: 4.16464437e-01 + syst_JES_EtaIntercalibration_Stat126: 1.87107910e-01 + syst_JES_EtaIntercalibration_Stat127: 8.75465081e-04 + syst_JES_EtaIntercalibration_Stat128: 4.70268144e-02 + syst_JES_EtaIntercalibration_Stat129: 7.78792508e-02 + syst_JES_EtaIntercalibration_Stat13: 4.71567437e-03 + syst_JES_EtaIntercalibration_Stat130: 5.70017515e-01 + syst_JES_EtaIntercalibration_Stat131: 3.63750364e-01 + syst_JES_EtaIntercalibration_Stat132: 4.26977681e-01 + syst_JES_EtaIntercalibration_Stat133: 4.96804921e-01 + syst_JES_EtaIntercalibration_Stat134: 4.98200000e-01 + syst_JES_EtaIntercalibration_Stat135: 3.74902397e-01 + syst_JES_EtaIntercalibration_Stat136: 5.90492360e-01 + syst_JES_EtaIntercalibration_Stat137: 5.89688511e-01 + syst_JES_EtaIntercalibration_Stat138: 6.45758552e-01 + syst_JES_EtaIntercalibration_Stat139: 6.36331649e-01 + syst_JES_EtaIntercalibration_Stat14: 5.45837016e-03 + syst_JES_EtaIntercalibration_Stat140: 4.29648237e-01 + syst_JES_EtaIntercalibration_Stat141: 5.19979163e-01 + syst_JES_EtaIntercalibration_Stat142: 1.92087656e-01 + syst_JES_EtaIntercalibration_Stat143: 9.28333017e-01 + syst_JES_EtaIntercalibration_Stat144: 4.43722796e-01 + syst_JES_EtaIntercalibration_Stat145: 1.08687813e-01 + syst_JES_EtaIntercalibration_Stat146: 5.62221985e-02 + syst_JES_EtaIntercalibration_Stat147: 3.96152780e-02 + syst_JES_EtaIntercalibration_Stat148: 8.62530607e-02 + syst_JES_EtaIntercalibration_Stat149: 1.29824803e-01 + syst_JES_EtaIntercalibration_Stat15: 3.63730670e-03 + syst_JES_EtaIntercalibration_Stat150: 1.30549484e-01 + syst_JES_EtaIntercalibration_Stat151: 1.70181335e-01 + syst_JES_EtaIntercalibration_Stat152: 1.20200624e-01 + syst_JES_EtaIntercalibration_Stat153: 1.09779089e-01 + syst_JES_EtaIntercalibration_Stat154: 1.99552838e-01 + syst_JES_EtaIntercalibration_Stat155: 7.09717724e-02 + syst_JES_EtaIntercalibration_Stat156: 1.10038946e-01 + syst_JES_EtaIntercalibration_Stat157: 1.01558958e-01 + syst_JES_EtaIntercalibration_Stat158: 1.19922045e-01 + syst_JES_EtaIntercalibration_Stat159: 6.25541693e-02 + syst_JES_EtaIntercalibration_Stat16: 3.63730670e-03 + syst_JES_EtaIntercalibration_Stat160: 3.88050860e-02 + syst_JES_EtaIntercalibration_Stat161: 7.83550361e-02 + syst_JES_EtaIntercalibration_Stat162: 1.99161585e-02 + syst_JES_EtaIntercalibration_Stat163: 1.76289026e-02 + syst_JES_EtaIntercalibration_Stat164: 2.70348580e-02 + syst_JES_EtaIntercalibration_Stat165: 2.22930589e-02 + syst_JES_EtaIntercalibration_Stat166: 2.72252144e-02 + syst_JES_EtaIntercalibration_Stat167: 3.29801315e-02 + syst_JES_EtaIntercalibration_Stat168: 6.19253928e-02 + syst_JES_EtaIntercalibration_Stat169: 4.36949185e-02 + syst_JES_EtaIntercalibration_Stat17: 1.05767683e-02 + syst_JES_EtaIntercalibration_Stat170: 5.08768611e-02 + syst_JES_EtaIntercalibration_Stat171: 3.88897991e-02 + syst_JES_EtaIntercalibration_Stat172: 5.70491122e-02 + syst_JES_EtaIntercalibration_Stat173: 1.41095797e-02 + syst_JES_EtaIntercalibration_Stat174: 4.11865594e-02 + syst_JES_EtaIntercalibration_Stat175: 3.21650845e-02 + syst_JES_EtaIntercalibration_Stat176: 3.78298744e-02 + syst_JES_EtaIntercalibration_Stat177: 4.43516561e-02 + syst_JES_EtaIntercalibration_Stat178: 3.05814106e-02 + syst_JES_EtaIntercalibration_Stat179: 2.09432262e-02 + syst_JES_EtaIntercalibration_Stat18: 2.57729160e-06 + syst_JES_EtaIntercalibration_Stat180: 9.18465246e-03 + syst_JES_EtaIntercalibration_Stat181: 1.18146856e-02 + syst_JES_EtaIntercalibration_Stat182: 2.66882789e-03 + syst_JES_EtaIntercalibration_Stat183: 5.28029800e-03 + syst_JES_EtaIntercalibration_Stat184: 1.59920201e-02 + syst_JES_EtaIntercalibration_Stat185: 1.15304077e-02 + syst_JES_EtaIntercalibration_Stat186: 2.69082120e-02 + syst_JES_EtaIntercalibration_Stat187: 1.07708211e-02 + syst_JES_EtaIntercalibration_Stat188: 1.02410270e-02 + syst_JES_EtaIntercalibration_Stat189: 1.04575281e-02 + syst_JES_EtaIntercalibration_Stat19: 3.84256241e-03 + syst_JES_EtaIntercalibration_Stat190: 7.10260048e-03 + syst_JES_EtaIntercalibration_Stat191: 1.00191275e-02 + syst_JES_EtaIntercalibration_Stat192: 9.16144104e-03 + syst_JES_EtaIntercalibration_Stat193: 1.08911101e-02 + syst_JES_EtaIntercalibration_Stat194: 1.04424873e-02 + syst_JES_EtaIntercalibration_Stat195: 2.81058975e-03 + syst_JES_EtaIntercalibration_Stat196: 9.48214853e-03 + syst_JES_EtaIntercalibration_Stat197: 1.33281310e-08 + syst_JES_EtaIntercalibration_Stat198: 2.45010658e-03 + syst_JES_EtaIntercalibration_Stat199: 2.10597127e-05 + syst_JES_EtaIntercalibration_Stat2: 4.20869956e-06 + syst_JES_EtaIntercalibration_Stat20: 4.20869956e-06 + syst_JES_EtaIntercalibration_Stat200: 7.96050551e-06 + syst_JES_EtaIntercalibration_Stat201: 8.87678452e-04 + syst_JES_EtaIntercalibration_Stat202: 9.74274643e-06 + syst_JES_EtaIntercalibration_Stat203: 3.16681664e-05 + syst_JES_EtaIntercalibration_Stat204: 2.42573716e-05 + syst_JES_EtaIntercalibration_Stat205: 5.23856543e-04 + syst_JES_EtaIntercalibration_Stat206: 1.03508392e-03 + syst_JES_EtaIntercalibration_Stat207: 3.34893655e-05 + syst_JES_EtaIntercalibration_Stat208: 2.87149694e-05 + syst_JES_EtaIntercalibration_Stat209: 1.67835914e-03 + syst_JES_EtaIntercalibration_Stat21: 4.20869956e-06 + syst_JES_EtaIntercalibration_Stat210: 1.35974539e-05 + syst_JES_EtaIntercalibration_Stat211: 5.64737046e-04 + syst_JES_EtaIntercalibration_Stat212: 4.23446865e-06 + syst_JES_EtaIntercalibration_Stat213: 4.13764797e-06 + syst_JES_EtaIntercalibration_Stat214: 1.94076246e-09 + syst_JES_EtaIntercalibration_Stat215: 2.26552246e-06 + syst_JES_EtaIntercalibration_Stat216: 3.20862412e-06 + syst_JES_EtaIntercalibration_Stat217: 2.99298380e-06 + syst_JES_EtaIntercalibration_Stat218: 2.29929745e-06 + syst_JES_EtaIntercalibration_Stat219: 1.07115083e-15 + syst_JES_EtaIntercalibration_Stat22: 4.20869956e-06 + syst_JES_EtaIntercalibration_Stat220: 3.11249530e-06 + syst_JES_EtaIntercalibration_Stat221: 1.36658809e-15 + syst_JES_EtaIntercalibration_Stat222: 5.30873788e-10 + syst_JES_EtaIntercalibration_Stat223: 2.33307244e-06 + syst_JES_EtaIntercalibration_Stat224: 4.11660573e-06 + syst_JES_EtaIntercalibration_Stat225: 4.12083180e-06 + syst_JES_EtaIntercalibration_Stat226: 2.46297625e-06 + syst_JES_EtaIntercalibration_Stat227: 4.20872285e-06 + syst_JES_EtaIntercalibration_Stat228: 4.19460511e-06 + syst_JES_EtaIntercalibration_Stat229: 2.58421980e-06 + syst_JES_EtaIntercalibration_Stat23: 5.30860236e-06 + syst_JES_EtaIntercalibration_Stat230: 4.19104698e-06 + syst_JES_EtaIntercalibration_Stat231: 2.51407175e-06 + syst_JES_EtaIntercalibration_Stat232: 4.15028153e-06 + syst_JES_EtaIntercalibration_Stat233: 4.21011484e-06 + syst_JES_EtaIntercalibration_Stat234: 4.20869968e-06 + syst_JES_EtaIntercalibration_Stat235: 4.20869968e-06 + syst_JES_EtaIntercalibration_Stat236: 2.57729160e-06 + syst_JES_EtaIntercalibration_Stat237: 4.20940670e-06 + syst_JES_EtaIntercalibration_Stat238: 4.20940670e-06 + syst_JES_EtaIntercalibration_Stat239: 4.20940670e-06 + syst_JES_EtaIntercalibration_Stat24: 1.06395247e-02 + syst_JES_EtaIntercalibration_Stat240: 2.57729160e-06 + syst_JES_EtaIntercalibration_Stat241: 4.20869956e-06 + syst_JES_EtaIntercalibration_Stat242: 2.57729160e-06 + syst_JES_EtaIntercalibration_Stat243: 4.20869956e-06 + syst_JES_EtaIntercalibration_Stat244: 4.20869956e-06 + syst_JES_EtaIntercalibration_Stat245: 4.20869956e-06 + syst_JES_EtaIntercalibration_Stat25: 4.63346944e-02 + syst_JES_EtaIntercalibration_Stat26: 4.47064173e-02 + syst_JES_EtaIntercalibration_Stat27: 2.83136910e-02 + syst_JES_EtaIntercalibration_Stat28: 6.37242434e-02 + syst_JES_EtaIntercalibration_Stat29: 4.17222516e-02 + syst_JES_EtaIntercalibration_Stat3: 1.74071969e-03 + syst_JES_EtaIntercalibration_Stat30: 6.75080980e-02 + syst_JES_EtaIntercalibration_Stat31: 9.08423739e-02 + syst_JES_EtaIntercalibration_Stat32: 4.49173140e-02 + syst_JES_EtaIntercalibration_Stat33: 4.89892648e-02 + syst_JES_EtaIntercalibration_Stat34: 1.26234277e-01 + syst_JES_EtaIntercalibration_Stat35: 5.87873598e-02 + syst_JES_EtaIntercalibration_Stat36: 7.74806143e-02 + syst_JES_EtaIntercalibration_Stat37: 7.48744554e-02 + syst_JES_EtaIntercalibration_Stat38: 5.70729075e-02 + syst_JES_EtaIntercalibration_Stat39: 3.21014747e-02 + syst_JES_EtaIntercalibration_Stat4: 2.37203790e-03 + syst_JES_EtaIntercalibration_Stat40: 2.79883243e-02 + syst_JES_EtaIntercalibration_Stat41: 5.76922317e-03 + syst_JES_EtaIntercalibration_Stat42: 3.84256241e-03 + syst_JES_EtaIntercalibration_Stat43: 4.20869956e-06 + syst_JES_EtaIntercalibration_Stat44: 4.20869956e-06 + syst_JES_EtaIntercalibration_Stat45: 4.20869956e-06 + syst_JES_EtaIntercalibration_Stat46: 3.94118570e-02 + syst_JES_EtaIntercalibration_Stat47: 1.21998653e-01 + syst_JES_EtaIntercalibration_Stat48: 1.81255984e-01 + syst_JES_EtaIntercalibration_Stat49: 1.57113749e-01 + syst_JES_EtaIntercalibration_Stat5: 3.27909694e-03 + syst_JES_EtaIntercalibration_Stat50: 1.61080314e-01 + syst_JES_EtaIntercalibration_Stat51: 2.14844706e-01 + syst_JES_EtaIntercalibration_Stat52: 2.37278881e-01 + syst_JES_EtaIntercalibration_Stat53: 2.04359952e-01 + syst_JES_EtaIntercalibration_Stat54: 1.59429617e-01 + syst_JES_EtaIntercalibration_Stat55: 2.12268480e-01 + syst_JES_EtaIntercalibration_Stat56: 2.37003813e-01 + syst_JES_EtaIntercalibration_Stat57: 2.90391025e-01 + syst_JES_EtaIntercalibration_Stat58: 1.75948991e-01 + syst_JES_EtaIntercalibration_Stat59: 1.42807589e-01 + syst_JES_EtaIntercalibration_Stat6: 1.93902431e-03 + syst_JES_EtaIntercalibration_Stat60: 1.40293465e-01 + syst_JES_EtaIntercalibration_Stat61: 1.38745493e-01 + syst_JES_EtaIntercalibration_Stat62: 1.29501765e-01 + syst_JES_EtaIntercalibration_Stat63: 6.23944750e-02 + syst_JES_EtaIntercalibration_Stat64: 6.48740368e-03 + syst_JES_EtaIntercalibration_Stat65: 4.20869956e-06 + syst_JES_EtaIntercalibration_Stat66: 4.20869956e-06 + syst_JES_EtaIntercalibration_Stat67: 1.11144014e-02 + syst_JES_EtaIntercalibration_Stat68: 9.71310644e-02 + syst_JES_EtaIntercalibration_Stat69: 4.75740696e-01 + syst_JES_EtaIntercalibration_Stat7: 3.67282262e-03 + syst_JES_EtaIntercalibration_Stat70: 5.94834439e-01 + syst_JES_EtaIntercalibration_Stat71: 6.35933000e-01 + syst_JES_EtaIntercalibration_Stat72: 6.46776252e-01 + syst_JES_EtaIntercalibration_Stat73: 9.07224581e-01 + syst_JES_EtaIntercalibration_Stat74: 9.48460695e-01 + syst_JES_EtaIntercalibration_Stat75: 9.19854657e-01 + syst_JES_EtaIntercalibration_Stat76: 5.86588465e-01 + syst_JES_EtaIntercalibration_Stat77: 1.02060455e+00 + syst_JES_EtaIntercalibration_Stat78: 1.00465908e+00 + syst_JES_EtaIntercalibration_Stat79: 8.23901171e-01 + syst_JES_EtaIntercalibration_Stat8: 2.00399406e-03 + syst_JES_EtaIntercalibration_Stat80: 8.03948860e-01 + syst_JES_EtaIntercalibration_Stat81: 6.15534499e-01 + syst_JES_EtaIntercalibration_Stat82: 5.65495278e-01 + syst_JES_EtaIntercalibration_Stat83: 5.09762364e-01 + syst_JES_EtaIntercalibration_Stat84: 4.10161855e-01 + syst_JES_EtaIntercalibration_Stat85: 1.74055013e-01 + syst_JES_EtaIntercalibration_Stat86: 6.86467664e-03 + syst_JES_EtaIntercalibration_Stat87: 2.57729160e-06 + syst_JES_EtaIntercalibration_Stat88: 1.12344176e-02 + syst_JES_EtaIntercalibration_Stat89: 1.31173153e-01 + syst_JES_EtaIntercalibration_Stat9: 5.36413870e-03 + syst_JES_EtaIntercalibration_Stat90: 4.10596307e-01 + syst_JES_EtaIntercalibration_Stat91: 6.62270087e-01 + syst_JES_EtaIntercalibration_Stat92: 5.51751309e-01 + syst_JES_EtaIntercalibration_Stat93: 6.26897701e-01 + syst_JES_EtaIntercalibration_Stat94: 8.14789180e-01 + syst_JES_EtaIntercalibration_Stat95: 1.01171180e+00 + syst_JES_EtaIntercalibration_Stat96: 1.03083077e+00 + syst_JES_EtaIntercalibration_Stat97: 7.45522327e-01 + syst_JES_EtaIntercalibration_Stat98: 7.60412630e-01 + syst_JES_EtaIntercalibration_Stat99: 9.42069647e-01 + syst_JES_EtaIntercalibration_TotalStat_MJB: 2.61097238e-02 + syst_JES_Flavour_Comp: 3.70314994e+00 + syst_JES_Flavour_Response: 7.41952009e+01 + syst_JES_Gjet_Generator: 4.57489566e+01 + syst_JES_Gjet_OOC: 2.87686196e+01 + syst_JES_Gjet_Purity: 1.13082356e+01 + syst_JES_Gjet_Stat1: 1.39010220e-01 + syst_JES_Gjet_Stat10: 2.54026017e-01 + syst_JES_Gjet_Stat11: 3.62559347e-01 + syst_JES_Gjet_Stat12: 1.06163464e-01 + syst_JES_Gjet_Stat13: 1.77822104e-02 + syst_JES_Gjet_Stat14: 3.45318969e-05 + syst_JES_Gjet_Stat15: 1.60041395e-09 + syst_JES_Gjet_Stat2: 2.80434538e-01 + syst_JES_Gjet_Stat3: 4.15163591e-01 + syst_JES_Gjet_Stat4: 6.21387110e-01 + syst_JES_Gjet_Stat5: 8.47227577e-01 + syst_JES_Gjet_Stat6: 2.56843513e+00 + syst_JES_Gjet_Stat7: 3.86382220e+00 + syst_JES_Gjet_Stat8: 1.42475593e+00 + syst_JES_Gjet_Stat9: 7.80581649e-01 + syst_JES_Gjet_Veto: 8.60988891e+00 + syst_JES_Gjet_dPhi: 5.07085584e+00 + syst_JES_LArESZee: 3.02303998e+01 + syst_JES_LArEsmear: 2.81215078e+00 + syst_JES_LAr_JVT: 5.12100957e+00 + syst_JES_MJB_Alpha: 1.39324190e-08 + syst_JES_MJB_Asym: 1.91469648e-04 + syst_JES_MJB_Beta: 8.76482447e-06 + syst_JES_MJB_Fragmentation: 5.69752971e-02 + syst_JES_MJB_Stat1: 1.20983749e-08 + syst_JES_MJB_Stat10: 4.20869968e-06 + syst_JES_MJB_Stat11: 4.20799248e-06 + syst_JES_MJB_Stat12: 4.20799248e-06 + syst_JES_MJB_Stat13: 4.20869956e-06 + syst_JES_MJB_Stat14: 4.20869956e-06 + syst_JES_MJB_Stat15: 2.57642558e-06 + syst_JES_MJB_Stat16: 4.20799248e-06 + syst_JES_MJB_Stat2: 3.54031185e-05 + syst_JES_MJB_Stat3: 8.91836173e-09 + syst_JES_MJB_Stat4: 3.14480218e-09 + syst_JES_MJB_Stat5: 7.98138226e-16 + syst_JES_MJB_Stat6: 4.13154000e-06 + syst_JES_MJB_Stat7: 2.29150322e-06 + syst_JES_MJB_Stat8: 2.35039295e-06 + syst_JES_MJB_Stat9: 4.11940199e-06 + syst_JES_MJB_Threshold: 1.78564689e-04 + syst_JES_Pileup_MuOffset: 9.92638318e-04 + syst_JES_Pileup_NPVOffset: 3.73390686e+00 + syst_JES_Pileup_Pt_term: 1.05748767e+01 + syst_JES_Pileup_Rho_topology: 2.49162894e+01 + syst_JES_PunchThrough_MC15: 8.95253534e-02 + syst_JES_SingleParticle_HighPt: 4.20869956e-06 + syst_JES_Zjet_MC: 4.29476149e+01 + syst_JES_Zjet_MuScale: 3.03955967e+00 + syst_JES_Zjet_MuSmearID: 5.21739791e-01 + syst_JES_Zjet_MuSmearMS: 1.56716438e+00 + syst_JES_Zjet_OOC: 2.79695602e+01 + syst_JES_Zjet_Stat1: 7.09341110e-01 + syst_JES_Zjet_Stat10: 3.20915970e+00 + syst_JES_Zjet_Stat11: 4.97081110e-01 + syst_JES_Zjet_Stat12: 6.97117056e-01 + syst_JES_Zjet_Stat13: 1.53693977e-01 + syst_JES_Zjet_Stat2: 7.50661815e-02 + syst_JES_Zjet_Stat3: 2.82918522e-01 + syst_JES_Zjet_Stat4: 3.17362108e-01 + syst_JES_Zjet_Stat5: 5.74071831e-01 + syst_JES_Zjet_Stat6: 1.19899643e+00 + syst_JES_Zjet_Stat7: 1.88298938e+00 + syst_JES_Zjet_Stat8: 3.06449029e+00 + syst_JES_Zjet_Stat9: 4.33399135e+00 + syst_JES_Zjet_Veto: 4.13281988e+00 + syst_JES_Zjet_dPhi: 6.05267980e+00 syst_PRW: 0.0 syst_Unfolding_bias: 0.0 - syst_cleaning: 26.604300404257955 + syst_cleaning: 2.66043004e+01 syst_lumi: 47.441 - stat: 5.298 syst_JER_CROSS_CALIB_FORWARD: 0.09467 syst_JER_NOISE_FORWARD: 0.07316 - syst_JER_NP0: 5.6408246515912905 - syst_JER_NP1: 0.8562328830405896 - syst_JER_NP2: 0.9507570509862128 - syst_JER_NP3: 1.2167951429883341 - syst_JER_NP4: 0.6605406176004621 + syst_JER_NP0: 5.64082465e+00 + syst_JER_NP1: 8.56232883e-01 + syst_JER_NP2: 9.50757051e-01 + syst_JER_NP3: 1.21679514e+00 + syst_JER_NP4: 6.60540618e-01 syst_JER_NP5: 0.0 syst_JER_NP6: 0.0 syst_JER_NP7: 0.0 - syst_JER_NP8: 0.5431099612417359 - syst_JES_EtaIntercalibration_Modelling: 14.306292321912062 - syst_JES_EtaIntercalibration_NonClosure: 4.8959044874262005 - syst_JES_EtaIntercalibration_Stat0: 0.0002395677774660023 - syst_JES_EtaIntercalibration_Stat1: 0.0002395677774660023 - syst_JES_EtaIntercalibration_Stat10: 0.006290073350128756 - syst_JES_EtaIntercalibration_Stat100: 0.22342002484110504 - syst_JES_EtaIntercalibration_Stat101: 0.24035943917391717 - syst_JES_EtaIntercalibration_Stat102: 0.15806859270582502 - syst_JES_EtaIntercalibration_Stat103: 0.15162329240588332 - syst_JES_EtaIntercalibration_Stat104: 0.12289649089782832 - syst_JES_EtaIntercalibration_Stat105: 0.11896040853998442 - syst_JES_EtaIntercalibration_Stat106: 0.03801466427577652 - syst_JES_EtaIntercalibration_Stat107: 0.0009058385186527453 - syst_JES_EtaIntercalibration_Stat108: 0.009523681365417471 - syst_JES_EtaIntercalibration_Stat109: 0.06288539496576291 - syst_JES_EtaIntercalibration_Stat11: 0.005759725306601002 - syst_JES_EtaIntercalibration_Stat110: 0.21072002532982004 - syst_JES_EtaIntercalibration_Stat111: 0.3435324002186693 - syst_JES_EtaIntercalibration_Stat112: 0.5154397248951617 - syst_JES_EtaIntercalibration_Stat113: 0.4907429673464511 - syst_JES_EtaIntercalibration_Stat114: 0.49618954039761864 - syst_JES_EtaIntercalibration_Stat115: 0.6622007305190776 - syst_JES_EtaIntercalibration_Stat116: 0.6036328685550515 - syst_JES_EtaIntercalibration_Stat117: 0.41624695494381697 - syst_JES_EtaIntercalibration_Stat118: 0.4740194299815146 - syst_JES_EtaIntercalibration_Stat119: 0.6664341284028003 - syst_JES_EtaIntercalibration_Stat12: 0.001682927981227955 - syst_JES_EtaIntercalibration_Stat120: 0.7590192010087755 - syst_JES_EtaIntercalibration_Stat121: 0.6819044141226834 - syst_JES_EtaIntercalibration_Stat122: 0.43077563475665615 - syst_JES_EtaIntercalibration_Stat123: 0.39532414548064226 - syst_JES_EtaIntercalibration_Stat124: 0.4120445212595358 - syst_JES_EtaIntercalibration_Stat125: 0.28235107136329407 - syst_JES_EtaIntercalibration_Stat126: 0.1022480086603157 - syst_JES_EtaIntercalibration_Stat127: 0.0016731610801115353 - syst_JES_EtaIntercalibration_Stat128: 0.15197504630695133 - syst_JES_EtaIntercalibration_Stat129: 0.4480782186181337 - syst_JES_EtaIntercalibration_Stat13: 0.0010918934597752659 - syst_JES_EtaIntercalibration_Stat130: 0.5240131367628106 - syst_JES_EtaIntercalibration_Stat131: 0.3251675534243846 - syst_JES_EtaIntercalibration_Stat132: 0.5891437916162743 - syst_JES_EtaIntercalibration_Stat133: 0.48714025444424114 - syst_JES_EtaIntercalibration_Stat134: 0.891426759470457 - syst_JES_EtaIntercalibration_Stat135: 0.39471085619729285 - syst_JES_EtaIntercalibration_Stat136: 0.6290476293572689 - syst_JES_EtaIntercalibration_Stat137: 0.5278709382983686 - syst_JES_EtaIntercalibration_Stat138: 0.7006431759462158 - syst_JES_EtaIntercalibration_Stat139: 0.45112155443405716 - syst_JES_EtaIntercalibration_Stat14: 0.0016519740093294448 - syst_JES_EtaIntercalibration_Stat140: 0.7250592803350633 - syst_JES_EtaIntercalibration_Stat141: 0.4364187503705587 - syst_JES_EtaIntercalibration_Stat142: 0.19732492873430868 - syst_JES_EtaIntercalibration_Stat143: 0.5164276619237199 - syst_JES_EtaIntercalibration_Stat144: 0.37043856440710915 - syst_JES_EtaIntercalibration_Stat145: 0.0642308718608116 - syst_JES_EtaIntercalibration_Stat146: 0.041747894258273674 - syst_JES_EtaIntercalibration_Stat147: 0.10283519332893774 - syst_JES_EtaIntercalibration_Stat148: 0.10637567050317473 - syst_JES_EtaIntercalibration_Stat149: 0.0538320167465422 - syst_JES_EtaIntercalibration_Stat15: 0.0010252858520417231 - syst_JES_EtaIntercalibration_Stat150: 0.1036194354356363 - syst_JES_EtaIntercalibration_Stat151: 0.09421398530340387 - syst_JES_EtaIntercalibration_Stat152: 0.15517944548167453 - syst_JES_EtaIntercalibration_Stat153: 0.09650649965157788 - syst_JES_EtaIntercalibration_Stat154: 0.07099204374435208 - syst_JES_EtaIntercalibration_Stat155: 0.0734075854391084 - syst_JES_EtaIntercalibration_Stat156: 0.0756950003302728 - syst_JES_EtaIntercalibration_Stat157: 0.13050293895158072 - syst_JES_EtaIntercalibration_Stat158: 0.11627634185422242 - syst_JES_EtaIntercalibration_Stat159: 0.08529684211622374 - syst_JES_EtaIntercalibration_Stat16: 0.0010252858520417231 - syst_JES_EtaIntercalibration_Stat160: 0.023476847488536443 - syst_JES_EtaIntercalibration_Stat161: 0.043092828530394714 - syst_JES_EtaIntercalibration_Stat162: 0.05066129982540914 - syst_JES_EtaIntercalibration_Stat163: 0.011612035085634215 - syst_JES_EtaIntercalibration_Stat164: 0.022206677391046144 - syst_JES_EtaIntercalibration_Stat165: 0.01847061653004577 - syst_JES_EtaIntercalibration_Stat166: 0.03575421758338448 - syst_JES_EtaIntercalibration_Stat167: 0.021104596466172958 - syst_JES_EtaIntercalibration_Stat168: 0.03214002800247691 - syst_JES_EtaIntercalibration_Stat169: 0.032849652585681934 - syst_JES_EtaIntercalibration_Stat17: 0.0008975503470953476 - syst_JES_EtaIntercalibration_Stat170: 0.05915627270205587 - syst_JES_EtaIntercalibration_Stat171: 0.0675670023014193 - syst_JES_EtaIntercalibration_Stat172: 0.03094227205620169 - syst_JES_EtaIntercalibration_Stat173: 0.014780194033909028 - syst_JES_EtaIntercalibration_Stat174: 0.05334793037222719 - syst_JES_EtaIntercalibration_Stat175: 0.05093885427647543 - syst_JES_EtaIntercalibration_Stat176: 0.05077743478160353 - syst_JES_EtaIntercalibration_Stat177: 0.0519664901643357 - syst_JES_EtaIntercalibration_Stat178: 0.02303838889766383 - syst_JES_EtaIntercalibration_Stat179: 0.012429737275984558 - syst_JES_EtaIntercalibration_Stat18: 0.00014670307996399404 - syst_JES_EtaIntercalibration_Stat180: 0.004416754372556844 - syst_JES_EtaIntercalibration_Stat181: 0.012560346362660546 - syst_JES_EtaIntercalibration_Stat182: 0.003904672457454018 - syst_JES_EtaIntercalibration_Stat183: 0.00751135047777695 - syst_JES_EtaIntercalibration_Stat184: 0.0254485051034437 - syst_JES_EtaIntercalibration_Stat185: 0.008681741875914074 - syst_JES_EtaIntercalibration_Stat186: 0.02331682815050109 - syst_JES_EtaIntercalibration_Stat187: 0.019879401072466947 - syst_JES_EtaIntercalibration_Stat188: 0.017216665966440774 - syst_JES_EtaIntercalibration_Stat189: 0.009906515772460062 - syst_JES_EtaIntercalibration_Stat19: 0.0008229700769165303 - syst_JES_EtaIntercalibration_Stat190: 0.008131127043651452 - syst_JES_EtaIntercalibration_Stat191: 0.023426640284086832 - syst_JES_EtaIntercalibration_Stat192: 0.03728909894325686 - syst_JES_EtaIntercalibration_Stat193: 0.03233796231598398 - syst_JES_EtaIntercalibration_Stat194: 0.020086052144460843 - syst_JES_EtaIntercalibration_Stat195: 0.009733001117332721 - syst_JES_EtaIntercalibration_Stat196: 0.0089966198513664 - syst_JES_EtaIntercalibration_Stat197: 0.00012120891556938434 - syst_JES_EtaIntercalibration_Stat198: 0.002235999545505321 - syst_JES_EtaIntercalibration_Stat199: 0.001221105418995428 - syst_JES_EtaIntercalibration_Stat2: 0.0002395677774660023 - syst_JES_EtaIntercalibration_Stat20: 0.0002395677774660023 - syst_JES_EtaIntercalibration_Stat200: 0.00046800012820511064 - syst_JES_EtaIntercalibration_Stat201: 0.0004406612244116788 - syst_JES_EtaIntercalibration_Stat202: 0.0004975272530223847 - syst_JES_EtaIntercalibration_Stat203: 0.0018733114195723039 - syst_JES_EtaIntercalibration_Stat204: 0.0014549085857838437 - syst_JES_EtaIntercalibration_Stat205: 0.0010110053724263783 - syst_JES_EtaIntercalibration_Stat206: 0.0020370676841970667 - syst_JES_EtaIntercalibration_Stat207: 0.0020032400629979422 - syst_JES_EtaIntercalibration_Stat208: 0.0016677766246338266 - syst_JES_EtaIntercalibration_Stat209: 0.005412085538237547 - syst_JES_EtaIntercalibration_Stat21: 0.0002395677774660023 - syst_JES_EtaIntercalibration_Stat210: 0.0007593910109423208 - syst_JES_EtaIntercalibration_Stat211: 0.0009156560312147787 - syst_JES_EtaIntercalibration_Stat212: 0.00022326689678499139 - syst_JES_EtaIntercalibration_Stat213: 0.00023520384244310295 - syst_JES_EtaIntercalibration_Stat214: 1.7646097149847954e-05 - syst_JES_EtaIntercalibration_Stat215: 0.00012756347404289432 - syst_JES_EtaIntercalibration_Stat216: 0.00017303187567613087 - syst_JES_EtaIntercalibration_Stat217: 0.00016809553087455956 - syst_JES_EtaIntercalibration_Stat218: 0.00012920894741991727 - syst_JES_EtaIntercalibration_Stat219: 8.041412002876112e-09 - syst_JES_EtaIntercalibration_Stat22: 0.0002395677774660023 - syst_JES_EtaIntercalibration_Stat220: 0.0001680089283341811 - syst_JES_EtaIntercalibration_Stat221: 1.0260668984038028e-08 - syst_JES_EtaIntercalibration_Stat222: 4.837506333063244e-06 - syst_JES_EtaIntercalibration_Stat223: 0.00011873021005275199 - syst_JES_EtaIntercalibration_Stat224: 0.00021717473333700678 - syst_JES_EtaIntercalibration_Stat225: 0.00023815566338006747 - syst_JES_EtaIntercalibration_Stat226: 0.00011866280082654379 - syst_JES_EtaIntercalibration_Stat227: 0.00023921539979691945 - syst_JES_EtaIntercalibration_Stat228: 0.00023822755403185417 - syst_JES_EtaIntercalibration_Stat229: 0.00014696451102221925 - syst_JES_EtaIntercalibration_Stat23: 0.0002830564033898544 - syst_JES_EtaIntercalibration_Stat230: 0.00023879084467374372 - syst_JES_EtaIntercalibration_Stat231: 0.00014280758908405392 - syst_JES_EtaIntercalibration_Stat232: 0.0002358373327104935 - syst_JES_EtaIntercalibration_Stat233: 0.00023935565065400064 - syst_JES_EtaIntercalibration_Stat234: 0.00023921448012191907 - syst_JES_EtaIntercalibration_Stat235: 0.0002394970720071542 - syst_JES_EtaIntercalibration_Stat236: 0.0001467047034010839 - syst_JES_EtaIntercalibration_Stat237: 0.00023893138659456195 - syst_JES_EtaIntercalibration_Stat238: 0.00023893138659456195 - syst_JES_EtaIntercalibration_Stat239: 0.00023886067068481576 - syst_JES_EtaIntercalibration_Stat24: 0.008867012228902134 - syst_JES_EtaIntercalibration_Stat240: 0.0001462716906991917 - syst_JES_EtaIntercalibration_Stat241: 0.00023886067068481576 - syst_JES_EtaIntercalibration_Stat242: 0.0001467047034010839 - syst_JES_EtaIntercalibration_Stat243: 0.0002392143547114178 - syst_JES_EtaIntercalibration_Stat244: 0.0002395677774660023 - syst_JES_EtaIntercalibration_Stat245: 0.0002395677774660023 - syst_JES_EtaIntercalibration_Stat25: 0.007286056272085744 - syst_JES_EtaIntercalibration_Stat26: 0.011696240111676914 - syst_JES_EtaIntercalibration_Stat27: 0.005952196464331466 - syst_JES_EtaIntercalibration_Stat28: 0.005385106962725997 - syst_JES_EtaIntercalibration_Stat29: 0.015912179021350278 - syst_JES_EtaIntercalibration_Stat3: 0.0005198771393319772 - syst_JES_EtaIntercalibration_Stat30: 0.012928420514509884 - syst_JES_EtaIntercalibration_Stat31: 0.023304832175055454 - syst_JES_EtaIntercalibration_Stat32: 0.0033639693907161223 - syst_JES_EtaIntercalibration_Stat33: 0.0030111993470210503 - syst_JES_EtaIntercalibration_Stat34: 0.005178911275548173 - syst_JES_EtaIntercalibration_Stat35: 0.003415140434520958 - syst_JES_EtaIntercalibration_Stat36: 0.021127810032040707 - syst_JES_EtaIntercalibration_Stat37: 0.008805778958729318 - syst_JES_EtaIntercalibration_Stat38: 0.00513334050594737 - syst_JES_EtaIntercalibration_Stat39: 0.003343524188636894 - syst_JES_EtaIntercalibration_Stat4: 0.001055233863889896 - syst_JES_EtaIntercalibration_Stat40: 0.0044988757206662205 - syst_JES_EtaIntercalibration_Stat41: 0.0010301542833478876 - syst_JES_EtaIntercalibration_Stat42: 0.0008229700769165303 - syst_JES_EtaIntercalibration_Stat43: 0.0002395677774660023 - syst_JES_EtaIntercalibration_Stat44: 0.0002395677774660023 - syst_JES_EtaIntercalibration_Stat45: 0.0002395677774660023 - syst_JES_EtaIntercalibration_Stat46: 0.004296629231153184 - syst_JES_EtaIntercalibration_Stat47: 0.03972119686955568 - syst_JES_EtaIntercalibration_Stat48: 0.04535922253246852 - syst_JES_EtaIntercalibration_Stat49: 0.013497337543011956 - syst_JES_EtaIntercalibration_Stat5: 0.0014712638130192693 - syst_JES_EtaIntercalibration_Stat50: 0.016892959765022676 - syst_JES_EtaIntercalibration_Stat51: 0.026880514783017083 - syst_JES_EtaIntercalibration_Stat52: 0.04226590203698485 - syst_JES_EtaIntercalibration_Stat53: 0.03567475963478941 - syst_JES_EtaIntercalibration_Stat54: 0.015178207033441072 - syst_JES_EtaIntercalibration_Stat55: 0.03131162191583183 - syst_JES_EtaIntercalibration_Stat56: 0.0368979389668312 - syst_JES_EtaIntercalibration_Stat57: 0.03929699352367812 - syst_JES_EtaIntercalibration_Stat58: 0.027827837627095644 - syst_JES_EtaIntercalibration_Stat59: 0.015106343955837123 - syst_JES_EtaIntercalibration_Stat6: 0.0008742028640424371 - syst_JES_EtaIntercalibration_Stat60: 0.011851147233496005 - syst_JES_EtaIntercalibration_Stat61: 0.02003215417148141 - syst_JES_EtaIntercalibration_Stat62: 0.010281920832218074 - syst_JES_EtaIntercalibration_Stat63: 0.006701905549916381 - syst_JES_EtaIntercalibration_Stat64: 0.0008479944044626711 - syst_JES_EtaIntercalibration_Stat65: 0.0002395677774660023 - syst_JES_EtaIntercalibration_Stat66: 0.0002395677774660023 - syst_JES_EtaIntercalibration_Stat67: 0.001285451060912083 - syst_JES_EtaIntercalibration_Stat68: 0.025907695126158946 - syst_JES_EtaIntercalibration_Stat69: 0.12787815558178808 - syst_JES_EtaIntercalibration_Stat7: 0.001509430524237535 - syst_JES_EtaIntercalibration_Stat70: 0.11149303150870013 - syst_JES_EtaIntercalibration_Stat71: 0.11766407130046112 - syst_JES_EtaIntercalibration_Stat72: 0.12362034905305842 - syst_JES_EtaIntercalibration_Stat73: 0.18106112227642907 - syst_JES_EtaIntercalibration_Stat74: 0.15150319493330827 - syst_JES_EtaIntercalibration_Stat75: 0.17626867986117103 - syst_JES_EtaIntercalibration_Stat76: 0.14886802880403838 - syst_JES_EtaIntercalibration_Stat77: 0.19233415583301888 - syst_JES_EtaIntercalibration_Stat78: 0.1825148418622442 - syst_JES_EtaIntercalibration_Stat79: 0.14229016129023117 - syst_JES_EtaIntercalibration_Stat8: 0.0008766032896926635 - syst_JES_EtaIntercalibration_Stat80: 0.17711021991968728 - syst_JES_EtaIntercalibration_Stat81: 0.12642044563677188 - syst_JES_EtaIntercalibration_Stat82: 0.10177268825672238 - syst_JES_EtaIntercalibration_Stat83: 0.09614505759528151 - syst_JES_EtaIntercalibration_Stat84: 0.08280657869396608 - syst_JES_EtaIntercalibration_Stat85: 0.017433951789539857 - syst_JES_EtaIntercalibration_Stat86: 0.0008960280710307016 - syst_JES_EtaIntercalibration_Stat87: 0.0001467047034010839 - syst_JES_EtaIntercalibration_Stat88: 0.008915683709060119 - syst_JES_EtaIntercalibration_Stat89: 0.037715016571652195 - syst_JES_EtaIntercalibration_Stat9: 0.0017115210625347269 - syst_JES_EtaIntercalibration_Stat90: 0.14036749018202185 - syst_JES_EtaIntercalibration_Stat91: 0.20148928011187098 - syst_JES_EtaIntercalibration_Stat92: 0.17753083872950073 - syst_JES_EtaIntercalibration_Stat93: 0.16718767897186684 - syst_JES_EtaIntercalibration_Stat94: 0.24639099009501142 - syst_JES_EtaIntercalibration_Stat95: 0.28778163596727296 - syst_JES_EtaIntercalibration_Stat96: 0.28020854287476676 - syst_JES_EtaIntercalibration_Stat97: 0.18524299581900527 - syst_JES_EtaIntercalibration_Stat98: 0.18801534511842377 - syst_JES_EtaIntercalibration_Stat99: 0.26211297182703497 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.05742148966197237 - syst_JES_Flavour_Comp: 1.2349162967586103 - syst_JES_Flavour_Response: 27.6544300248622 - syst_JES_Gjet_Generator: 20.175655503601362 - syst_JES_Gjet_OOC: 11.597547617923368 - syst_JES_Gjet_Purity: 4.315738870691784 - syst_JES_Gjet_Stat1: 0.041542257025226736 - syst_JES_Gjet_Stat10: 0.3041686867512828 - syst_JES_Gjet_Stat11: 0.1062621117802578 - syst_JES_Gjet_Stat12: 0.10194660894311297 - syst_JES_Gjet_Stat13: 0.01409291973829412 - syst_JES_Gjet_Stat14: 0.002029945357702442 - syst_JES_Gjet_Stat15: 1.4576369080490348e-05 - syst_JES_Gjet_Stat2: 0.08789359532980774 - syst_JES_Gjet_Stat3: 0.14210448506292825 - syst_JES_Gjet_Stat4: 0.10557854469540674 - syst_JES_Gjet_Stat5: 0.22240854766622614 - syst_JES_Gjet_Stat6: 0.7588609358769233 - syst_JES_Gjet_Stat7: 1.2297842768144338 - syst_JES_Gjet_Stat8: 0.7174376767357565 - syst_JES_Gjet_Stat9: 0.6950005179854185 - syst_JES_Gjet_Veto: 4.125900235100214 - syst_JES_Gjet_dPhi: 1.821668122902742 - syst_JES_LArESZee: 15.068068057982748 - syst_JES_LArEsmear: 1.2734173471411485 - syst_JES_LAr_JVT: 2.10954278221609 - syst_JES_MJB_Alpha: 0.00012677675930548155 - syst_JES_MJB_Asym: 0.011179936377614141 - syst_JES_MJB_Beta: 0.00047616670681075547 - syst_JES_MJB_Fragmentation: 0.0727074650568977 - syst_JES_MJB_Stat1: 0.0001100891493962814 - syst_JES_MJB_Stat10: 0.00023893138659456195 - syst_JES_MJB_Stat11: 0.00023886067068481576 - syst_JES_MJB_Stat12: 0.00023999337490855868 - syst_JES_MJB_Stat13: 0.00023886067068481576 - syst_JES_MJB_Stat14: 0.00023893138659456195 - syst_JES_MJB_Stat15: 0.0001462716906991917 - syst_JES_MJB_Stat16: 0.00023886067068481576 - syst_JES_MJB_Stat2: 0.002169393636525485 - syst_JES_MJB_Stat3: 8.115824234173632e-05 - syst_JES_MJB_Stat4: 2.8616559454274023e-05 - syst_JES_MJB_Stat5: 5.992472507237726e-09 - syst_JES_MJB_Stat6: 0.000237834664210245 - syst_JES_MJB_Stat7: 0.00013475355282885863 - syst_JES_MJB_Stat8: 0.00013812955807442325 - syst_JES_MJB_Stat9: 0.00023787206645589976 - syst_JES_MJB_Threshold: 0.010411380990051225 - syst_JES_Pileup_MuOffset: 0.05830949043699306 - syst_JES_Pileup_NPVOffset: 1.0554841578631105 - syst_JES_Pileup_Pt_term: 4.290614262550294 - syst_JES_Pileup_Rho_topology: 9.024139003251225 - syst_JES_PunchThrough_MC15: 0.034665484390096146 - syst_JES_SingleParticle_HighPt: 0.0002388607544156218 - syst_JES_Zjet_MC: 17.880550187284506 - syst_JES_Zjet_MuScale: 1.1922528706193163 - syst_JES_Zjet_MuSmearID: 0.25106307972300507 - syst_JES_Zjet_MuSmearMS: 1.0088711711611151 - syst_JES_Zjet_OOC: 8.654492994970878 - syst_JES_Zjet_Stat1: 0.21545641670648844 - syst_JES_Zjet_Stat10: 2.088415188605944 - syst_JES_Zjet_Stat11: 0.6575155739600393 - syst_JES_Zjet_Stat12: 0.27647536508701814 - syst_JES_Zjet_Stat13: 0.0915527174637651 - syst_JES_Zjet_Stat2: 0.033400371255421696 - syst_JES_Zjet_Stat3: 0.10696965586090293 - syst_JES_Zjet_Stat4: 0.1254822372887892 - syst_JES_Zjet_Stat5: 0.17355660942470616 - syst_JES_Zjet_Stat6: 0.35965980982033563 - syst_JES_Zjet_Stat7: 0.526733053832774 - syst_JES_Zjet_Stat8: 0.884225473225014 - syst_JES_Zjet_Stat9: 1.670404741372581 - syst_JES_Zjet_Veto: 1.3249366956575699 - syst_JES_Zjet_dPhi: 1.8003668376194892 + syst_JER_NP8: 5.43109961e-01 + syst_JES_EtaIntercalibration_Modelling: 1.43062923e+01 + syst_JES_EtaIntercalibration_NonClosure: 4.89590449e+00 + syst_JES_EtaIntercalibration_Stat0: 2.39567777e-04 + syst_JES_EtaIntercalibration_Stat1: 2.39567777e-04 + syst_JES_EtaIntercalibration_Stat10: 6.29007335e-03 + syst_JES_EtaIntercalibration_Stat100: 2.23420025e-01 + syst_JES_EtaIntercalibration_Stat101: 2.40359439e-01 + syst_JES_EtaIntercalibration_Stat102: 1.58068593e-01 + syst_JES_EtaIntercalibration_Stat103: 1.51623292e-01 + syst_JES_EtaIntercalibration_Stat104: 1.22896491e-01 + syst_JES_EtaIntercalibration_Stat105: 1.18960409e-01 + syst_JES_EtaIntercalibration_Stat106: 3.80146643e-02 + syst_JES_EtaIntercalibration_Stat107: 9.05838519e-04 + syst_JES_EtaIntercalibration_Stat108: 9.52368137e-03 + syst_JES_EtaIntercalibration_Stat109: 6.28853950e-02 + syst_JES_EtaIntercalibration_Stat11: 5.75972531e-03 + syst_JES_EtaIntercalibration_Stat110: 2.10720025e-01 + syst_JES_EtaIntercalibration_Stat111: 3.43532400e-01 + syst_JES_EtaIntercalibration_Stat112: 5.15439725e-01 + syst_JES_EtaIntercalibration_Stat113: 4.90742967e-01 + syst_JES_EtaIntercalibration_Stat114: 4.96189540e-01 + syst_JES_EtaIntercalibration_Stat115: 6.62200731e-01 + syst_JES_EtaIntercalibration_Stat116: 6.03632869e-01 + syst_JES_EtaIntercalibration_Stat117: 4.16246955e-01 + syst_JES_EtaIntercalibration_Stat118: 4.74019430e-01 + syst_JES_EtaIntercalibration_Stat119: 6.66434128e-01 + syst_JES_EtaIntercalibration_Stat12: 1.68292798e-03 + syst_JES_EtaIntercalibration_Stat120: 7.59019201e-01 + syst_JES_EtaIntercalibration_Stat121: 6.81904414e-01 + syst_JES_EtaIntercalibration_Stat122: 4.30775635e-01 + syst_JES_EtaIntercalibration_Stat123: 3.95324145e-01 + syst_JES_EtaIntercalibration_Stat124: 4.12044521e-01 + syst_JES_EtaIntercalibration_Stat125: 2.82351071e-01 + syst_JES_EtaIntercalibration_Stat126: 1.02248009e-01 + syst_JES_EtaIntercalibration_Stat127: 1.67316108e-03 + syst_JES_EtaIntercalibration_Stat128: 1.51975046e-01 + syst_JES_EtaIntercalibration_Stat129: 4.48078219e-01 + syst_JES_EtaIntercalibration_Stat13: 1.09189346e-03 + syst_JES_EtaIntercalibration_Stat130: 5.24013137e-01 + syst_JES_EtaIntercalibration_Stat131: 3.25167553e-01 + syst_JES_EtaIntercalibration_Stat132: 5.89143792e-01 + syst_JES_EtaIntercalibration_Stat133: 4.87140254e-01 + syst_JES_EtaIntercalibration_Stat134: 8.91426759e-01 + syst_JES_EtaIntercalibration_Stat135: 3.94710856e-01 + syst_JES_EtaIntercalibration_Stat136: 6.29047629e-01 + syst_JES_EtaIntercalibration_Stat137: 5.27870938e-01 + syst_JES_EtaIntercalibration_Stat138: 7.00643176e-01 + syst_JES_EtaIntercalibration_Stat139: 4.51121554e-01 + syst_JES_EtaIntercalibration_Stat14: 1.65197401e-03 + syst_JES_EtaIntercalibration_Stat140: 7.25059280e-01 + syst_JES_EtaIntercalibration_Stat141: 4.36418750e-01 + syst_JES_EtaIntercalibration_Stat142: 1.97324929e-01 + syst_JES_EtaIntercalibration_Stat143: 5.16427662e-01 + syst_JES_EtaIntercalibration_Stat144: 3.70438564e-01 + syst_JES_EtaIntercalibration_Stat145: 6.42308719e-02 + syst_JES_EtaIntercalibration_Stat146: 4.17478943e-02 + syst_JES_EtaIntercalibration_Stat147: 1.02835193e-01 + syst_JES_EtaIntercalibration_Stat148: 1.06375671e-01 + syst_JES_EtaIntercalibration_Stat149: 5.38320167e-02 + syst_JES_EtaIntercalibration_Stat15: 1.02528585e-03 + syst_JES_EtaIntercalibration_Stat150: 1.03619435e-01 + syst_JES_EtaIntercalibration_Stat151: 9.42139853e-02 + syst_JES_EtaIntercalibration_Stat152: 1.55179445e-01 + syst_JES_EtaIntercalibration_Stat153: 9.65064997e-02 + syst_JES_EtaIntercalibration_Stat154: 7.09920437e-02 + syst_JES_EtaIntercalibration_Stat155: 7.34075854e-02 + syst_JES_EtaIntercalibration_Stat156: 7.56950003e-02 + syst_JES_EtaIntercalibration_Stat157: 1.30502939e-01 + syst_JES_EtaIntercalibration_Stat158: 1.16276342e-01 + syst_JES_EtaIntercalibration_Stat159: 8.52968421e-02 + syst_JES_EtaIntercalibration_Stat16: 1.02528585e-03 + syst_JES_EtaIntercalibration_Stat160: 2.34768475e-02 + syst_JES_EtaIntercalibration_Stat161: 4.30928285e-02 + syst_JES_EtaIntercalibration_Stat162: 5.06612998e-02 + syst_JES_EtaIntercalibration_Stat163: 1.16120351e-02 + syst_JES_EtaIntercalibration_Stat164: 2.22066774e-02 + syst_JES_EtaIntercalibration_Stat165: 1.84706165e-02 + syst_JES_EtaIntercalibration_Stat166: 3.57542176e-02 + syst_JES_EtaIntercalibration_Stat167: 2.11045965e-02 + syst_JES_EtaIntercalibration_Stat168: 3.21400280e-02 + syst_JES_EtaIntercalibration_Stat169: 3.28496526e-02 + syst_JES_EtaIntercalibration_Stat17: 8.97550347e-04 + syst_JES_EtaIntercalibration_Stat170: 5.91562727e-02 + syst_JES_EtaIntercalibration_Stat171: 6.75670023e-02 + syst_JES_EtaIntercalibration_Stat172: 3.09422721e-02 + syst_JES_EtaIntercalibration_Stat173: 1.47801940e-02 + syst_JES_EtaIntercalibration_Stat174: 5.33479304e-02 + syst_JES_EtaIntercalibration_Stat175: 5.09388543e-02 + syst_JES_EtaIntercalibration_Stat176: 5.07774348e-02 + syst_JES_EtaIntercalibration_Stat177: 5.19664902e-02 + syst_JES_EtaIntercalibration_Stat178: 2.30383889e-02 + syst_JES_EtaIntercalibration_Stat179: 1.24297373e-02 + syst_JES_EtaIntercalibration_Stat18: 1.46703080e-04 + syst_JES_EtaIntercalibration_Stat180: 4.41675437e-03 + syst_JES_EtaIntercalibration_Stat181: 1.25603464e-02 + syst_JES_EtaIntercalibration_Stat182: 3.90467246e-03 + syst_JES_EtaIntercalibration_Stat183: 7.51135048e-03 + syst_JES_EtaIntercalibration_Stat184: 2.54485051e-02 + syst_JES_EtaIntercalibration_Stat185: 8.68174188e-03 + syst_JES_EtaIntercalibration_Stat186: 2.33168282e-02 + syst_JES_EtaIntercalibration_Stat187: 1.98794011e-02 + syst_JES_EtaIntercalibration_Stat188: 1.72166660e-02 + syst_JES_EtaIntercalibration_Stat189: 9.90651577e-03 + syst_JES_EtaIntercalibration_Stat19: 8.22970077e-04 + syst_JES_EtaIntercalibration_Stat190: 8.13112704e-03 + syst_JES_EtaIntercalibration_Stat191: 2.34266403e-02 + syst_JES_EtaIntercalibration_Stat192: 3.72890989e-02 + syst_JES_EtaIntercalibration_Stat193: 3.23379623e-02 + syst_JES_EtaIntercalibration_Stat194: 2.00860521e-02 + syst_JES_EtaIntercalibration_Stat195: 9.73300112e-03 + syst_JES_EtaIntercalibration_Stat196: 8.99661985e-03 + syst_JES_EtaIntercalibration_Stat197: 1.21208916e-04 + syst_JES_EtaIntercalibration_Stat198: 2.23599955e-03 + syst_JES_EtaIntercalibration_Stat199: 1.22110542e-03 + syst_JES_EtaIntercalibration_Stat2: 2.39567777e-04 + syst_JES_EtaIntercalibration_Stat20: 2.39567777e-04 + syst_JES_EtaIntercalibration_Stat200: 4.68000128e-04 + syst_JES_EtaIntercalibration_Stat201: 4.40661224e-04 + syst_JES_EtaIntercalibration_Stat202: 4.97527253e-04 + syst_JES_EtaIntercalibration_Stat203: 1.87331142e-03 + syst_JES_EtaIntercalibration_Stat204: 1.45490859e-03 + syst_JES_EtaIntercalibration_Stat205: 1.01100537e-03 + syst_JES_EtaIntercalibration_Stat206: 2.03706768e-03 + syst_JES_EtaIntercalibration_Stat207: 2.00324006e-03 + syst_JES_EtaIntercalibration_Stat208: 1.66777662e-03 + syst_JES_EtaIntercalibration_Stat209: 5.41208554e-03 + syst_JES_EtaIntercalibration_Stat21: 2.39567777e-04 + syst_JES_EtaIntercalibration_Stat210: 7.59391011e-04 + syst_JES_EtaIntercalibration_Stat211: 9.15656031e-04 + syst_JES_EtaIntercalibration_Stat212: 2.23266897e-04 + syst_JES_EtaIntercalibration_Stat213: 2.35203842e-04 + syst_JES_EtaIntercalibration_Stat214: 1.76460971e-05 + syst_JES_EtaIntercalibration_Stat215: 1.27563474e-04 + syst_JES_EtaIntercalibration_Stat216: 1.73031876e-04 + syst_JES_EtaIntercalibration_Stat217: 1.68095531e-04 + syst_JES_EtaIntercalibration_Stat218: 1.29208947e-04 + syst_JES_EtaIntercalibration_Stat219: 8.04141200e-09 + syst_JES_EtaIntercalibration_Stat22: 2.39567777e-04 + syst_JES_EtaIntercalibration_Stat220: 1.68008928e-04 + syst_JES_EtaIntercalibration_Stat221: 1.02606690e-08 + syst_JES_EtaIntercalibration_Stat222: 4.83750633e-06 + syst_JES_EtaIntercalibration_Stat223: 1.18730210e-04 + syst_JES_EtaIntercalibration_Stat224: 2.17174733e-04 + syst_JES_EtaIntercalibration_Stat225: 2.38155663e-04 + syst_JES_EtaIntercalibration_Stat226: 1.18662801e-04 + syst_JES_EtaIntercalibration_Stat227: 2.39215400e-04 + syst_JES_EtaIntercalibration_Stat228: 2.38227554e-04 + syst_JES_EtaIntercalibration_Stat229: 1.46964511e-04 + syst_JES_EtaIntercalibration_Stat23: 2.83056403e-04 + syst_JES_EtaIntercalibration_Stat230: 2.38790845e-04 + syst_JES_EtaIntercalibration_Stat231: 1.42807589e-04 + syst_JES_EtaIntercalibration_Stat232: 2.35837333e-04 + syst_JES_EtaIntercalibration_Stat233: 2.39355651e-04 + syst_JES_EtaIntercalibration_Stat234: 2.39214480e-04 + syst_JES_EtaIntercalibration_Stat235: 2.39497072e-04 + syst_JES_EtaIntercalibration_Stat236: 1.46704703e-04 + syst_JES_EtaIntercalibration_Stat237: 2.38931387e-04 + syst_JES_EtaIntercalibration_Stat238: 2.38931387e-04 + syst_JES_EtaIntercalibration_Stat239: 2.38860671e-04 + syst_JES_EtaIntercalibration_Stat24: 8.86701223e-03 + syst_JES_EtaIntercalibration_Stat240: 1.46271691e-04 + syst_JES_EtaIntercalibration_Stat241: 2.38860671e-04 + syst_JES_EtaIntercalibration_Stat242: 1.46704703e-04 + syst_JES_EtaIntercalibration_Stat243: 2.39214355e-04 + syst_JES_EtaIntercalibration_Stat244: 2.39567777e-04 + syst_JES_EtaIntercalibration_Stat245: 2.39567777e-04 + syst_JES_EtaIntercalibration_Stat25: 7.28605627e-03 + syst_JES_EtaIntercalibration_Stat26: 1.16962401e-02 + syst_JES_EtaIntercalibration_Stat27: 5.95219646e-03 + syst_JES_EtaIntercalibration_Stat28: 5.38510696e-03 + syst_JES_EtaIntercalibration_Stat29: 1.59121790e-02 + syst_JES_EtaIntercalibration_Stat3: 5.19877139e-04 + syst_JES_EtaIntercalibration_Stat30: 1.29284205e-02 + syst_JES_EtaIntercalibration_Stat31: 2.33048322e-02 + syst_JES_EtaIntercalibration_Stat32: 3.36396939e-03 + syst_JES_EtaIntercalibration_Stat33: 3.01119935e-03 + syst_JES_EtaIntercalibration_Stat34: 5.17891128e-03 + syst_JES_EtaIntercalibration_Stat35: 3.41514043e-03 + syst_JES_EtaIntercalibration_Stat36: 2.11278100e-02 + syst_JES_EtaIntercalibration_Stat37: 8.80577896e-03 + syst_JES_EtaIntercalibration_Stat38: 5.13334051e-03 + syst_JES_EtaIntercalibration_Stat39: 3.34352419e-03 + syst_JES_EtaIntercalibration_Stat4: 1.05523386e-03 + syst_JES_EtaIntercalibration_Stat40: 4.49887572e-03 + syst_JES_EtaIntercalibration_Stat41: 1.03015428e-03 + syst_JES_EtaIntercalibration_Stat42: 8.22970077e-04 + syst_JES_EtaIntercalibration_Stat43: 2.39567777e-04 + syst_JES_EtaIntercalibration_Stat44: 2.39567777e-04 + syst_JES_EtaIntercalibration_Stat45: 2.39567777e-04 + syst_JES_EtaIntercalibration_Stat46: 4.29662923e-03 + syst_JES_EtaIntercalibration_Stat47: 3.97211969e-02 + syst_JES_EtaIntercalibration_Stat48: 4.53592225e-02 + syst_JES_EtaIntercalibration_Stat49: 1.34973375e-02 + syst_JES_EtaIntercalibration_Stat5: 1.47126381e-03 + syst_JES_EtaIntercalibration_Stat50: 1.68929598e-02 + syst_JES_EtaIntercalibration_Stat51: 2.68805148e-02 + syst_JES_EtaIntercalibration_Stat52: 4.22659020e-02 + syst_JES_EtaIntercalibration_Stat53: 3.56747596e-02 + syst_JES_EtaIntercalibration_Stat54: 1.51782070e-02 + syst_JES_EtaIntercalibration_Stat55: 3.13116219e-02 + syst_JES_EtaIntercalibration_Stat56: 3.68979390e-02 + syst_JES_EtaIntercalibration_Stat57: 3.92969935e-02 + syst_JES_EtaIntercalibration_Stat58: 2.78278376e-02 + syst_JES_EtaIntercalibration_Stat59: 1.51063440e-02 + syst_JES_EtaIntercalibration_Stat6: 8.74202864e-04 + syst_JES_EtaIntercalibration_Stat60: 1.18511472e-02 + syst_JES_EtaIntercalibration_Stat61: 2.00321542e-02 + syst_JES_EtaIntercalibration_Stat62: 1.02819208e-02 + syst_JES_EtaIntercalibration_Stat63: 6.70190555e-03 + syst_JES_EtaIntercalibration_Stat64: 8.47994404e-04 + syst_JES_EtaIntercalibration_Stat65: 2.39567777e-04 + syst_JES_EtaIntercalibration_Stat66: 2.39567777e-04 + syst_JES_EtaIntercalibration_Stat67: 1.28545106e-03 + syst_JES_EtaIntercalibration_Stat68: 2.59076951e-02 + syst_JES_EtaIntercalibration_Stat69: 1.27878156e-01 + syst_JES_EtaIntercalibration_Stat7: 1.50943052e-03 + syst_JES_EtaIntercalibration_Stat70: 1.11493032e-01 + syst_JES_EtaIntercalibration_Stat71: 1.17664071e-01 + syst_JES_EtaIntercalibration_Stat72: 1.23620349e-01 + syst_JES_EtaIntercalibration_Stat73: 1.81061122e-01 + syst_JES_EtaIntercalibration_Stat74: 1.51503195e-01 + syst_JES_EtaIntercalibration_Stat75: 1.76268680e-01 + syst_JES_EtaIntercalibration_Stat76: 1.48868029e-01 + syst_JES_EtaIntercalibration_Stat77: 1.92334156e-01 + syst_JES_EtaIntercalibration_Stat78: 1.82514842e-01 + syst_JES_EtaIntercalibration_Stat79: 1.42290161e-01 + syst_JES_EtaIntercalibration_Stat8: 8.76603290e-04 + syst_JES_EtaIntercalibration_Stat80: 1.77110220e-01 + syst_JES_EtaIntercalibration_Stat81: 1.26420446e-01 + syst_JES_EtaIntercalibration_Stat82: 1.01772688e-01 + syst_JES_EtaIntercalibration_Stat83: 9.61450576e-02 + syst_JES_EtaIntercalibration_Stat84: 8.28065787e-02 + syst_JES_EtaIntercalibration_Stat85: 1.74339518e-02 + syst_JES_EtaIntercalibration_Stat86: 8.96028071e-04 + syst_JES_EtaIntercalibration_Stat87: 1.46704703e-04 + syst_JES_EtaIntercalibration_Stat88: 8.91568371e-03 + syst_JES_EtaIntercalibration_Stat89: 3.77150166e-02 + syst_JES_EtaIntercalibration_Stat9: 1.71152106e-03 + syst_JES_EtaIntercalibration_Stat90: 1.40367490e-01 + syst_JES_EtaIntercalibration_Stat91: 2.01489280e-01 + syst_JES_EtaIntercalibration_Stat92: 1.77530839e-01 + syst_JES_EtaIntercalibration_Stat93: 1.67187679e-01 + syst_JES_EtaIntercalibration_Stat94: 2.46390990e-01 + syst_JES_EtaIntercalibration_Stat95: 2.87781636e-01 + syst_JES_EtaIntercalibration_Stat96: 2.80208543e-01 + syst_JES_EtaIntercalibration_Stat97: 1.85242996e-01 + syst_JES_EtaIntercalibration_Stat98: 1.88015345e-01 + syst_JES_EtaIntercalibration_Stat99: 2.62112972e-01 + syst_JES_EtaIntercalibration_TotalStat_MJB: 5.74214897e-02 + syst_JES_Flavour_Comp: 1.23491630e+00 + syst_JES_Flavour_Response: 2.76544300e+01 + syst_JES_Gjet_Generator: 2.01756555e+01 + syst_JES_Gjet_OOC: 1.15975476e+01 + syst_JES_Gjet_Purity: 4.31573887e+00 + syst_JES_Gjet_Stat1: 4.15422570e-02 + syst_JES_Gjet_Stat10: 3.04168687e-01 + syst_JES_Gjet_Stat11: 1.06262112e-01 + syst_JES_Gjet_Stat12: 1.01946609e-01 + syst_JES_Gjet_Stat13: 1.40929197e-02 + syst_JES_Gjet_Stat14: 2.02994536e-03 + syst_JES_Gjet_Stat15: 1.45763691e-05 + syst_JES_Gjet_Stat2: 8.78935953e-02 + syst_JES_Gjet_Stat3: 1.42104485e-01 + syst_JES_Gjet_Stat4: 1.05578545e-01 + syst_JES_Gjet_Stat5: 2.22408548e-01 + syst_JES_Gjet_Stat6: 7.58860936e-01 + syst_JES_Gjet_Stat7: 1.22978428e+00 + syst_JES_Gjet_Stat8: 7.17437677e-01 + syst_JES_Gjet_Stat9: 6.95000518e-01 + syst_JES_Gjet_Veto: 4.12590024e+00 + syst_JES_Gjet_dPhi: 1.82166812e+00 + syst_JES_LArESZee: 1.50680681e+01 + syst_JES_LArEsmear: 1.27341735e+00 + syst_JES_LAr_JVT: 2.10954278e+00 + syst_JES_MJB_Alpha: 1.26776759e-04 + syst_JES_MJB_Asym: 1.11799364e-02 + syst_JES_MJB_Beta: 4.76166707e-04 + syst_JES_MJB_Fragmentation: 7.27074651e-02 + syst_JES_MJB_Stat1: 1.10089149e-04 + syst_JES_MJB_Stat10: 2.38931387e-04 + syst_JES_MJB_Stat11: 2.38860671e-04 + syst_JES_MJB_Stat12: 2.39993375e-04 + syst_JES_MJB_Stat13: 2.38860671e-04 + syst_JES_MJB_Stat14: 2.38931387e-04 + syst_JES_MJB_Stat15: 1.46271691e-04 + syst_JES_MJB_Stat16: 2.38860671e-04 + syst_JES_MJB_Stat2: 2.16939364e-03 + syst_JES_MJB_Stat3: 8.11582423e-05 + syst_JES_MJB_Stat4: 2.86165595e-05 + syst_JES_MJB_Stat5: 5.99247251e-09 + syst_JES_MJB_Stat6: 2.37834664e-04 + syst_JES_MJB_Stat7: 1.34753553e-04 + syst_JES_MJB_Stat8: 1.38129558e-04 + syst_JES_MJB_Stat9: 2.37872066e-04 + syst_JES_MJB_Threshold: 1.04113810e-02 + syst_JES_Pileup_MuOffset: 5.83094904e-02 + syst_JES_Pileup_NPVOffset: 1.05548416e+00 + syst_JES_Pileup_Pt_term: 4.29061426e+00 + syst_JES_Pileup_Rho_topology: 9.02413900e+00 + syst_JES_PunchThrough_MC15: 3.46654844e-02 + syst_JES_SingleParticle_HighPt: 2.38860754e-04 + syst_JES_Zjet_MC: 1.78805502e+01 + syst_JES_Zjet_MuScale: 1.19225287e+00 + syst_JES_Zjet_MuSmearID: 2.51063080e-01 + syst_JES_Zjet_MuSmearMS: 1.00887117e+00 + syst_JES_Zjet_OOC: 8.65449299e+00 + syst_JES_Zjet_Stat1: 2.15456417e-01 + syst_JES_Zjet_Stat10: 2.08841519e+00 + syst_JES_Zjet_Stat11: 6.57515574e-01 + syst_JES_Zjet_Stat12: 2.76475365e-01 + syst_JES_Zjet_Stat13: 9.15527175e-02 + syst_JES_Zjet_Stat2: 3.34003713e-02 + syst_JES_Zjet_Stat3: 1.06969656e-01 + syst_JES_Zjet_Stat4: 1.25482237e-01 + syst_JES_Zjet_Stat5: 1.73556609e-01 + syst_JES_Zjet_Stat6: 3.59659810e-01 + syst_JES_Zjet_Stat7: 5.26733054e-01 + syst_JES_Zjet_Stat8: 8.84225473e-01 + syst_JES_Zjet_Stat9: 1.67040474e+00 + syst_JES_Zjet_Veto: 1.32493670e+00 + syst_JES_Zjet_dPhi: 1.80036684e+00 syst_PRW: 0.0 syst_Unfolding_bias: 0.0 - syst_cleaning: 9.102793019178234 + syst_cleaning: 9.10279302e+00 syst_lumi: 20.05 - stat: 2.2131 syst_JER_CROSS_CALIB_FORWARD: 0.003343 syst_JER_NOISE_FORWARD: 0.002625 - syst_JER_NP0: 1.9603798101388414 - syst_JER_NP1: 0.34550489142702456 - syst_JER_NP2: 0.29142221946859165 - syst_JER_NP3: 0.4776055354578714 - syst_JER_NP4: 0.19946776600493624 + syst_JER_NP0: 1.96037981e+00 + syst_JER_NP1: 3.45504891e-01 + syst_JER_NP2: 2.91422219e-01 + syst_JER_NP3: 4.77605535e-01 + syst_JER_NP4: 1.99467766e-01 syst_JER_NP5: 0.0 syst_JER_NP6: 0.0 syst_JER_NP7: 0.0 - syst_JER_NP8: 0.21454412570611203 - syst_JES_EtaIntercalibration_Modelling: 5.431547362400516 - syst_JES_EtaIntercalibration_NonClosure: 1.4416886036866627 - syst_JES_EtaIntercalibration_Stat0: 0.00015085416069833803 - syst_JES_EtaIntercalibration_Stat1: 0.00015085416069833803 - syst_JES_EtaIntercalibration_Stat10: 0.002049665994131727 - syst_JES_EtaIntercalibration_Stat100: 0.036353217560485616 - syst_JES_EtaIntercalibration_Stat101: 0.04285436500521272 - syst_JES_EtaIntercalibration_Stat102: 0.032588683235135474 - syst_JES_EtaIntercalibration_Stat103: 0.01976314499263718 - syst_JES_EtaIntercalibration_Stat104: 0.012074913540063134 - syst_JES_EtaIntercalibration_Stat105: 0.011218155229359237 - syst_JES_EtaIntercalibration_Stat106: 0.010795337202121108 - syst_JES_EtaIntercalibration_Stat107: 0.00018956361602045368 - syst_JES_EtaIntercalibration_Stat108: 0.0012349522257966096 - syst_JES_EtaIntercalibration_Stat109: 0.027173687180800474 - syst_JES_EtaIntercalibration_Stat11: 0.0017496292978799823 - syst_JES_EtaIntercalibration_Stat110: 0.0903616073064219 - syst_JES_EtaIntercalibration_Stat111: 0.10572487633002936 - syst_JES_EtaIntercalibration_Stat112: 0.189635518824929 - syst_JES_EtaIntercalibration_Stat113: 0.19773089667525406 - syst_JES_EtaIntercalibration_Stat114: 0.19493714371560902 - syst_JES_EtaIntercalibration_Stat115: 0.2734778373104482 - syst_JES_EtaIntercalibration_Stat116: 0.22834099500527716 - syst_JES_EtaIntercalibration_Stat117: 0.06469240507973095 - syst_JES_EtaIntercalibration_Stat118: 0.12924488413473084 - syst_JES_EtaIntercalibration_Stat119: 0.2093102183363249 - syst_JES_EtaIntercalibration_Stat12: 0.00026614151780584704 - syst_JES_EtaIntercalibration_Stat120: 0.1902134590401005 - syst_JES_EtaIntercalibration_Stat121: 0.15577368198768368 - syst_JES_EtaIntercalibration_Stat122: 0.11605556858677656 - syst_JES_EtaIntercalibration_Stat123: 0.12932235875903283 - syst_JES_EtaIntercalibration_Stat124: 0.09763154510710152 - syst_JES_EtaIntercalibration_Stat125: 0.06119627112823134 - syst_JES_EtaIntercalibration_Stat126: 0.02259134568811694 - syst_JES_EtaIntercalibration_Stat127: 0.0009157352619616655 - syst_JES_EtaIntercalibration_Stat128: 0.05663682790375888 - syst_JES_EtaIntercalibration_Stat129: 0.26335893757379875 - syst_JES_EtaIntercalibration_Stat13: 0.00029189245879261764 - syst_JES_EtaIntercalibration_Stat130: 0.3932667129315676 - syst_JES_EtaIntercalibration_Stat131: 0.2669874738634755 - syst_JES_EtaIntercalibration_Stat132: 0.38831471926776095 - syst_JES_EtaIntercalibration_Stat133: 0.438721491951329 - syst_JES_EtaIntercalibration_Stat134: 0.5900522582788749 - syst_JES_EtaIntercalibration_Stat135: 0.377679665854544 - syst_JES_EtaIntercalibration_Stat136: 0.364270761247729 - syst_JES_EtaIntercalibration_Stat137: 0.3359304997689254 - syst_JES_EtaIntercalibration_Stat138: 0.41174760472891636 - syst_JES_EtaIntercalibration_Stat139: 0.2968739126295876 - syst_JES_EtaIntercalibration_Stat14: 0.0003156124522258271 - syst_JES_EtaIntercalibration_Stat140: 0.37662006956613453 - syst_JES_EtaIntercalibration_Stat141: 0.3721159914260606 - syst_JES_EtaIntercalibration_Stat142: 0.19389182551103076 - syst_JES_EtaIntercalibration_Stat143: 0.24298713443308062 - syst_JES_EtaIntercalibration_Stat144: 0.1753738771881377 - syst_JES_EtaIntercalibration_Stat145: 0.025601253875542896 - syst_JES_EtaIntercalibration_Stat146: 0.021941419735286044 - syst_JES_EtaIntercalibration_Stat147: 0.03184704529889704 - syst_JES_EtaIntercalibration_Stat148: 0.06986313530754257 - syst_JES_EtaIntercalibration_Stat149: 0.11897260220319633 - syst_JES_EtaIntercalibration_Stat15: 0.00018950813458793792 - syst_JES_EtaIntercalibration_Stat150: 0.05539635189252086 - syst_JES_EtaIntercalibration_Stat151: 0.1190226300961292 - syst_JES_EtaIntercalibration_Stat152: 0.1569185013789005 - syst_JES_EtaIntercalibration_Stat153: 0.09181273114334418 - syst_JES_EtaIntercalibration_Stat154: 0.1084194230753881 - syst_JES_EtaIntercalibration_Stat155: 0.03995855853255971 - syst_JES_EtaIntercalibration_Stat156: 0.08732496722014844 - syst_JES_EtaIntercalibration_Stat157: 0.11043483180138411 - syst_JES_EtaIntercalibration_Stat158: 0.07104715124478955 - syst_JES_EtaIntercalibration_Stat159: 0.06966754391393457 - syst_JES_EtaIntercalibration_Stat16: 0.00018950813458793792 - syst_JES_EtaIntercalibration_Stat160: 0.07191237914990714 - syst_JES_EtaIntercalibration_Stat161: 0.025992329637798916 - syst_JES_EtaIntercalibration_Stat162: 0.030875710113291325 - syst_JES_EtaIntercalibration_Stat163: 0.004790508184942387 - syst_JES_EtaIntercalibration_Stat164: 0.01382223708485714 - syst_JES_EtaIntercalibration_Stat165: 0.0016452851751292236 - syst_JES_EtaIntercalibration_Stat166: 0.013027657607950865 - syst_JES_EtaIntercalibration_Stat167: 0.018929077810342476 - syst_JES_EtaIntercalibration_Stat168: 0.03480705972572231 - syst_JES_EtaIntercalibration_Stat169: 0.028832430958904594 - syst_JES_EtaIntercalibration_Stat17: 0.000171513272664246 - syst_JES_EtaIntercalibration_Stat170: 0.023209803575859923 - syst_JES_EtaIntercalibration_Stat171: 0.04269016444978867 - syst_JES_EtaIntercalibration_Stat172: 0.01340035308303479 - syst_JES_EtaIntercalibration_Stat173: 0.011304132198006179 - syst_JES_EtaIntercalibration_Stat174: 0.006823148553820296 - syst_JES_EtaIntercalibration_Stat175: 0.01787689780135245 - syst_JES_EtaIntercalibration_Stat176: 0.022143417803040254 - syst_JES_EtaIntercalibration_Stat177: 0.023374847058323184 - syst_JES_EtaIntercalibration_Stat178: 0.017407292351195806 - syst_JES_EtaIntercalibration_Stat179: 0.01735315754408978 - syst_JES_EtaIntercalibration_Stat18: 8.787075110638352e-05 - syst_JES_EtaIntercalibration_Stat180: 0.016304528297378003 - syst_JES_EtaIntercalibration_Stat181: 0.012142078159442064 - syst_JES_EtaIntercalibration_Stat182: 0.002670153079881376 - syst_JES_EtaIntercalibration_Stat183: 0.004056043158978958 - syst_JES_EtaIntercalibration_Stat184: 0.00791585780253789 - syst_JES_EtaIntercalibration_Stat185: 0.008205682047825154 - syst_JES_EtaIntercalibration_Stat186: 0.015781772737877075 - syst_JES_EtaIntercalibration_Stat187: 0.029088055809042997 - syst_JES_EtaIntercalibration_Stat188: 0.024417321720450837 - syst_JES_EtaIntercalibration_Stat189: 0.017215731722758695 - syst_JES_EtaIntercalibration_Stat19: 0.00023767820614225443 - syst_JES_EtaIntercalibration_Stat190: 0.013965374753296095 - syst_JES_EtaIntercalibration_Stat191: 0.019335099560126398 - syst_JES_EtaIntercalibration_Stat192: 0.026583898792314115 - syst_JES_EtaIntercalibration_Stat193: 0.037835697429808274 - syst_JES_EtaIntercalibration_Stat194: 0.01726710313717967 - syst_JES_EtaIntercalibration_Stat195: 0.009554195490463862 - syst_JES_EtaIntercalibration_Stat196: 0.01133571607795467 - syst_JES_EtaIntercalibration_Stat197: 0.005106166557126396 - syst_JES_EtaIntercalibration_Stat198: 0.003349065839902226 - syst_JES_EtaIntercalibration_Stat199: 0.002829285952320832 - syst_JES_EtaIntercalibration_Stat2: 0.00015085416069833803 - syst_JES_EtaIntercalibration_Stat20: 0.00015085416069833803 - syst_JES_EtaIntercalibration_Stat200: 0.0009425820494789829 - syst_JES_EtaIntercalibration_Stat201: 0.003734258828736969 - syst_JES_EtaIntercalibration_Stat202: 0.0046088105569658646 - syst_JES_EtaIntercalibration_Stat203: 0.0050605792158605716 - syst_JES_EtaIntercalibration_Stat204: 0.004132055201410069 - syst_JES_EtaIntercalibration_Stat205: 0.002680492865127606 - syst_JES_EtaIntercalibration_Stat206: 0.003770650441236896 - syst_JES_EtaIntercalibration_Stat207: 0.005516655780452502 - syst_JES_EtaIntercalibration_Stat208: 0.0036837107419014324 - syst_JES_EtaIntercalibration_Stat209: 0.004247111135819263 - syst_JES_EtaIntercalibration_Stat21: 0.00015085416069833803 - syst_JES_EtaIntercalibration_Stat210: 0.0018150512389461626 - syst_JES_EtaIntercalibration_Stat211: 0.0023682427409368323 - syst_JES_EtaIntercalibration_Stat212: 0.0007570533651434356 - syst_JES_EtaIntercalibration_Stat213: 0.00025613622562027416 - syst_JES_EtaIntercalibration_Stat214: 0.0007031273474271926 - syst_JES_EtaIntercalibration_Stat215: 2.6112353398343856e-05 - syst_JES_EtaIntercalibration_Stat216: 0.00030934427423180146 - syst_JES_EtaIntercalibration_Stat217: 1.526802786871965e-05 - syst_JES_EtaIntercalibration_Stat218: 2.5325115498255876e-05 - syst_JES_EtaIntercalibration_Stat219: 3.171141119534102e-05 - syst_JES_EtaIntercalibration_Stat22: 0.00015085416069833803 - syst_JES_EtaIntercalibration_Stat220: 0.000292803189019518 - syst_JES_EtaIntercalibration_Stat221: 4.0339463308279147e-05 - syst_JES_EtaIntercalibration_Stat222: 0.00024192320077867684 - syst_JES_EtaIntercalibration_Stat223: 0.0005450507881610667 - syst_JES_EtaIntercalibration_Stat224: 0.0008380742155083881 - syst_JES_EtaIntercalibration_Stat225: 0.000304694873726159 - syst_JES_EtaIntercalibration_Stat226: 0.000862734507250058 - syst_JES_EtaIntercalibration_Stat227: 0.00013393383469086518 - syst_JES_EtaIntercalibration_Stat228: 0.0001272003144650201 - syst_JES_EtaIntercalibration_Stat229: 8.619550843866535e-05 - syst_JES_EtaIntercalibration_Stat23: 0.0007676165511992299 - syst_JES_EtaIntercalibration_Stat230: 0.0001564848983129043 - syst_JES_EtaIntercalibration_Stat231: 7.582918435536516e-05 - syst_JES_EtaIntercalibration_Stat232: 0.00013102051852667963 - syst_JES_EtaIntercalibration_Stat233: 0.0001234822443714075 - syst_JES_EtaIntercalibration_Stat234: 0.00014028598174799933 - syst_JES_EtaIntercalibration_Stat235: 0.00013275878304278024 - syst_JES_EtaIntercalibration_Stat236: 8.418632950188527e-05 - syst_JES_EtaIntercalibration_Stat237: 0.00012058293691480566 - syst_JES_EtaIntercalibration_Stat238: 0.00012061828965791215 - syst_JES_EtaIntercalibration_Stat239: 0.00012060413633039291 - syst_JES_EtaIntercalibration_Stat24: 0.0010315418205288625 - syst_JES_EtaIntercalibration_Stat240: 7.382000541858555e-05 - syst_JES_EtaIntercalibration_Stat241: 0.00012054756447145665 - syst_JES_EtaIntercalibration_Stat242: 9.247419261610237e-05 - syst_JES_EtaIntercalibration_Stat243: 0.00012424476035229816 - syst_JES_EtaIntercalibration_Stat244: 0.00014910773445733793 - syst_JES_EtaIntercalibration_Stat245: 0.00015213921018264817 - syst_JES_EtaIntercalibration_Stat25: 0.0009051849686666255 - syst_JES_EtaIntercalibration_Stat26: 0.004478841397895219 - syst_JES_EtaIntercalibration_Stat27: 0.0009605119611436393 - syst_JES_EtaIntercalibration_Stat28: 0.0024566865912240415 - syst_JES_EtaIntercalibration_Stat29: 0.006102509173077908 - syst_JES_EtaIntercalibration_Stat3: 0.00021553729996221072 - syst_JES_EtaIntercalibration_Stat30: 0.003713219308093719 - syst_JES_EtaIntercalibration_Stat31: 0.006517013064280291 - syst_JES_EtaIntercalibration_Stat32: 0.000652799885110284 - syst_JES_EtaIntercalibration_Stat33: 0.0010900438936116289 - syst_JES_EtaIntercalibration_Stat34: 0.001024420142080387 - syst_JES_EtaIntercalibration_Stat35: 0.0006016572342289253 - syst_JES_EtaIntercalibration_Stat36: 0.001423001430076583 - syst_JES_EtaIntercalibration_Stat37: 0.0007230185388356234 - syst_JES_EtaIntercalibration_Stat38: 0.0036196557028949595 - syst_JES_EtaIntercalibration_Stat39: 0.0034196913146510755 - syst_JES_EtaIntercalibration_Stat4: 0.00024656655222272136 - syst_JES_EtaIntercalibration_Stat40: 0.001162612638629049 - syst_JES_EtaIntercalibration_Stat41: 0.0002998723520099844 - syst_JES_EtaIntercalibration_Stat42: 0.00023767820614225443 - syst_JES_EtaIntercalibration_Stat43: 0.00015085416069833803 - syst_JES_EtaIntercalibration_Stat44: 0.00015085416069833803 - syst_JES_EtaIntercalibration_Stat45: 0.00015085416069833803 - syst_JES_EtaIntercalibration_Stat46: 0.0008273062854831938 - syst_JES_EtaIntercalibration_Stat47: 0.007958267525033322 - syst_JES_EtaIntercalibration_Stat48: 0.0068548754684166205 - syst_JES_EtaIntercalibration_Stat49: 0.0010066073117159444 - syst_JES_EtaIntercalibration_Stat5: 0.0003277624253937599 - syst_JES_EtaIntercalibration_Stat50: 0.000948482686979578 - syst_JES_EtaIntercalibration_Stat51: 0.003933899210706853 - syst_JES_EtaIntercalibration_Stat52: 0.00831587315123914 - syst_JES_EtaIntercalibration_Stat53: 0.003593921572600048 - syst_JES_EtaIntercalibration_Stat54: 0.0007439692533969397 - syst_JES_EtaIntercalibration_Stat55: 0.002818926247261535 - syst_JES_EtaIntercalibration_Stat56: 0.0033999768686713144 - syst_JES_EtaIntercalibration_Stat57: 0.0064304475277775185 - syst_JES_EtaIntercalibration_Stat58: 0.0020959018941734847 - syst_JES_EtaIntercalibration_Stat59: 0.0006440859569964245 - syst_JES_EtaIntercalibration_Stat6: 0.00017958871763003377 - syst_JES_EtaIntercalibration_Stat60: 0.0010727906913746035 - syst_JES_EtaIntercalibration_Stat61: 0.0030033958696781883 - syst_JES_EtaIntercalibration_Stat62: 0.0011623507162212272 - syst_JES_EtaIntercalibration_Stat63: 0.0011724894114660482 - syst_JES_EtaIntercalibration_Stat64: 0.00024446133370126244 - syst_JES_EtaIntercalibration_Stat65: 0.00015085416069833803 - syst_JES_EtaIntercalibration_Stat66: 0.00015085416069833803 - syst_JES_EtaIntercalibration_Stat67: 0.0002910857734414377 - syst_JES_EtaIntercalibration_Stat68: 0.0015274846181549588 - syst_JES_EtaIntercalibration_Stat69: 0.01348712114389131 - syst_JES_EtaIntercalibration_Stat7: 0.0006193105534988081 - syst_JES_EtaIntercalibration_Stat70: 0.012437296922965217 - syst_JES_EtaIntercalibration_Stat71: 0.012785626959598033 - syst_JES_EtaIntercalibration_Stat72: 0.013615301392183721 - syst_JES_EtaIntercalibration_Stat73: 0.02874013700384882 - syst_JES_EtaIntercalibration_Stat74: 0.02647038511242328 - syst_JES_EtaIntercalibration_Stat75: 0.015391893994892247 - syst_JES_EtaIntercalibration_Stat76: 0.022076758706839193 - syst_JES_EtaIntercalibration_Stat77: 0.01518432240009412 - syst_JES_EtaIntercalibration_Stat78: 0.016475529581776727 - syst_JES_EtaIntercalibration_Stat79: 0.017340261149994252 - syst_JES_EtaIntercalibration_Stat8: 0.00022682910544063784 - syst_JES_EtaIntercalibration_Stat80: 0.03162034274007795 - syst_JES_EtaIntercalibration_Stat81: 0.019732620201078212 - syst_JES_EtaIntercalibration_Stat82: 0.010572202571247866 - syst_JES_EtaIntercalibration_Stat83: 0.01031136008245275 - syst_JES_EtaIntercalibration_Stat84: 0.008014351626925287 - syst_JES_EtaIntercalibration_Stat85: 0.00036766591747808226 - syst_JES_EtaIntercalibration_Stat86: 0.0001898110646722156 - syst_JES_EtaIntercalibration_Stat87: 9.237892982168607e-05 - syst_JES_EtaIntercalibration_Stat88: 0.0009647996344837617 - syst_JES_EtaIntercalibration_Stat89: 0.0033816827172282148 - syst_JES_EtaIntercalibration_Stat9: 0.0003231798995915433 - syst_JES_EtaIntercalibration_Stat90: 0.01906537175089959 - syst_JES_EtaIntercalibration_Stat91: 0.026156008869856275 - syst_JES_EtaIntercalibration_Stat92: 0.024670912022055444 - syst_JES_EtaIntercalibration_Stat93: 0.03580355394370788 - syst_JES_EtaIntercalibration_Stat94: 0.04154097700764872 - syst_JES_EtaIntercalibration_Stat95: 0.05683029011891458 - syst_JES_EtaIntercalibration_Stat96: 0.05791425472195943 - syst_JES_EtaIntercalibration_Stat97: 0.03694020032430794 - syst_JES_EtaIntercalibration_Stat98: 0.020099574622364523 - syst_JES_EtaIntercalibration_Stat99: 0.029389295245037774 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.04354744983348623 - syst_JES_Flavour_Comp: 0.5331978314847127 - syst_JES_Flavour_Response: 10.009275797978592 - syst_JES_Gjet_Generator: 8.010299666679144 - syst_JES_Gjet_OOC: 4.552233847244669 - syst_JES_Gjet_Purity: 1.659154302649395 - syst_JES_Gjet_Stat1: 0.007887608706540912 - syst_JES_Gjet_Stat10: 0.26082850208518243 - syst_JES_Gjet_Stat11: 0.16586177136398852 - syst_JES_Gjet_Stat12: 0.05970503077630896 - syst_JES_Gjet_Stat13: 0.03277196667885526 - syst_JES_Gjet_Stat14: 0.004174025456019644 - syst_JES_Gjet_Stat15: 0.0006745673863114048 - syst_JES_Gjet_Stat2: 0.0059340430466925335 - syst_JES_Gjet_Stat3: 0.012981357430946888 - syst_JES_Gjet_Stat4: 0.022529673765946993 - syst_JES_Gjet_Stat5: 0.03943959019817524 - syst_JES_Gjet_Stat6: 0.14722332525792237 - syst_JES_Gjet_Stat7: 0.3235594690315831 - syst_JES_Gjet_Stat8: 0.2500695253324563 - syst_JES_Gjet_Stat9: 0.41914010783984873 - syst_JES_Gjet_Veto: 1.849463706051027 - syst_JES_Gjet_dPhi: 0.6710756645118343 - syst_JES_LArESZee: 7.005767677421225 - syst_JES_LArEsmear: 0.6253524026498979 - syst_JES_LAr_JVT: 0.9331245147353059 - syst_JES_MJB_Alpha: 0.005492014839746885 - syst_JES_MJB_Asym: 0.021662486006919886 - syst_JES_MJB_Beta: 0.0018696668152374102 - syst_JES_MJB_Fragmentation: 0.052866124077711615 - syst_JES_MJB_Stat1: 0.004829055087222519 - syst_JES_MJB_Stat10: 0.00012065385893124182 - syst_JES_MJB_Stat11: 0.00012060417405711959 - syst_JES_MJB_Stat12: 0.00017259673251542165 - syst_JES_MJB_Stat13: 0.00012054756778964891 - syst_JES_MJB_Stat14: 0.00012480614277750915 - syst_JES_MJB_Stat15: 7.38113451645477e-05 - syst_JES_MJB_Stat16: 0.00012053342233588158 - syst_JES_MJB_Stat2: 0.008093073305045535 - syst_JES_MJB_Stat3: 0.0035885731147630253 - syst_JES_MJB_Stat4: 0.0012705513134069007 - syst_JES_MJB_Stat5: 2.3626084631186777e-05 - syst_JES_MJB_Stat6: 0.0003012308005500101 - syst_JES_MJB_Stat7: 0.0002714989640864213 - syst_JES_MJB_Stat8: 0.00027295788883085977 - syst_JES_MJB_Stat9: 0.0002981752021882437 - syst_JES_MJB_Threshold: 0.020703074940694198 - syst_JES_Pileup_MuOffset: 0.11364012432218722 - syst_JES_Pileup_NPVOffset: 0.37713886036843247 - syst_JES_Pileup_Pt_term: 1.800711734287307 - syst_JES_Pileup_Rho_topology: 3.1371861197576405 - syst_JES_PunchThrough_MC15: 0.01498999895763839 - syst_JES_SingleParticle_HighPt: 0.00012290098972343548 - syst_JES_Zjet_MC: 7.097041408220753 - syst_JES_Zjet_MuScale: 0.5419143359424994 - syst_JES_Zjet_MuSmearID: 0.0958456033159581 - syst_JES_Zjet_MuSmearMS: 0.6122200809349526 - syst_JES_Zjet_OOC: 2.8405712013607403 - syst_JES_Zjet_Stat1: 0.03884640781333584 - syst_JES_Zjet_Stat10: 0.9668720016113819 - syst_JES_Zjet_Stat11: 0.8819045909280663 - syst_JES_Zjet_Stat12: 0.24096868572492985 - syst_JES_Zjet_Stat13: 0.05610998306896911 - syst_JES_Zjet_Stat2: 0.013292004250676418 - syst_JES_Zjet_Stat3: 0.020006360507348657 - syst_JES_Zjet_Stat4: 0.020832899462148804 - syst_JES_Zjet_Stat5: 0.028469783982320626 - syst_JES_Zjet_Stat6: 0.05464827970759921 - syst_JES_Zjet_Stat7: 0.11107417555399636 - syst_JES_Zjet_Stat8: 0.19789226235505017 - syst_JES_Zjet_Stat9: 0.5561691199626244 - syst_JES_Zjet_Veto: 0.5473374918640235 - syst_JES_Zjet_dPhi: 0.6160475042559624 + syst_JER_NP8: 2.14544126e-01 + syst_JES_EtaIntercalibration_Modelling: 5.43154736e+00 + syst_JES_EtaIntercalibration_NonClosure: 1.44168860e+00 + syst_JES_EtaIntercalibration_Stat0: 1.50854161e-04 + syst_JES_EtaIntercalibration_Stat1: 1.50854161e-04 + syst_JES_EtaIntercalibration_Stat10: 2.04966599e-03 + syst_JES_EtaIntercalibration_Stat100: 3.63532176e-02 + syst_JES_EtaIntercalibration_Stat101: 4.28543650e-02 + syst_JES_EtaIntercalibration_Stat102: 3.25886832e-02 + syst_JES_EtaIntercalibration_Stat103: 1.97631450e-02 + syst_JES_EtaIntercalibration_Stat104: 1.20749135e-02 + syst_JES_EtaIntercalibration_Stat105: 1.12181552e-02 + syst_JES_EtaIntercalibration_Stat106: 1.07953372e-02 + syst_JES_EtaIntercalibration_Stat107: 1.89563616e-04 + syst_JES_EtaIntercalibration_Stat108: 1.23495223e-03 + syst_JES_EtaIntercalibration_Stat109: 2.71736872e-02 + syst_JES_EtaIntercalibration_Stat11: 1.74962930e-03 + syst_JES_EtaIntercalibration_Stat110: 9.03616073e-02 + syst_JES_EtaIntercalibration_Stat111: 1.05724876e-01 + syst_JES_EtaIntercalibration_Stat112: 1.89635519e-01 + syst_JES_EtaIntercalibration_Stat113: 1.97730897e-01 + syst_JES_EtaIntercalibration_Stat114: 1.94937144e-01 + syst_JES_EtaIntercalibration_Stat115: 2.73477837e-01 + syst_JES_EtaIntercalibration_Stat116: 2.28340995e-01 + syst_JES_EtaIntercalibration_Stat117: 6.46924051e-02 + syst_JES_EtaIntercalibration_Stat118: 1.29244884e-01 + syst_JES_EtaIntercalibration_Stat119: 2.09310218e-01 + syst_JES_EtaIntercalibration_Stat12: 2.66141518e-04 + syst_JES_EtaIntercalibration_Stat120: 1.90213459e-01 + syst_JES_EtaIntercalibration_Stat121: 1.55773682e-01 + syst_JES_EtaIntercalibration_Stat122: 1.16055569e-01 + syst_JES_EtaIntercalibration_Stat123: 1.29322359e-01 + syst_JES_EtaIntercalibration_Stat124: 9.76315451e-02 + syst_JES_EtaIntercalibration_Stat125: 6.11962711e-02 + syst_JES_EtaIntercalibration_Stat126: 2.25913457e-02 + syst_JES_EtaIntercalibration_Stat127: 9.15735262e-04 + syst_JES_EtaIntercalibration_Stat128: 5.66368279e-02 + syst_JES_EtaIntercalibration_Stat129: 2.63358938e-01 + syst_JES_EtaIntercalibration_Stat13: 2.91892459e-04 + syst_JES_EtaIntercalibration_Stat130: 3.93266713e-01 + syst_JES_EtaIntercalibration_Stat131: 2.66987474e-01 + syst_JES_EtaIntercalibration_Stat132: 3.88314719e-01 + syst_JES_EtaIntercalibration_Stat133: 4.38721492e-01 + syst_JES_EtaIntercalibration_Stat134: 5.90052258e-01 + syst_JES_EtaIntercalibration_Stat135: 3.77679666e-01 + syst_JES_EtaIntercalibration_Stat136: 3.64270761e-01 + syst_JES_EtaIntercalibration_Stat137: 3.35930500e-01 + syst_JES_EtaIntercalibration_Stat138: 4.11747605e-01 + syst_JES_EtaIntercalibration_Stat139: 2.96873913e-01 + syst_JES_EtaIntercalibration_Stat14: 3.15612452e-04 + syst_JES_EtaIntercalibration_Stat140: 3.76620070e-01 + syst_JES_EtaIntercalibration_Stat141: 3.72115991e-01 + syst_JES_EtaIntercalibration_Stat142: 1.93891826e-01 + syst_JES_EtaIntercalibration_Stat143: 2.42987134e-01 + syst_JES_EtaIntercalibration_Stat144: 1.75373877e-01 + syst_JES_EtaIntercalibration_Stat145: 2.56012539e-02 + syst_JES_EtaIntercalibration_Stat146: 2.19414197e-02 + syst_JES_EtaIntercalibration_Stat147: 3.18470453e-02 + syst_JES_EtaIntercalibration_Stat148: 6.98631353e-02 + syst_JES_EtaIntercalibration_Stat149: 1.18972602e-01 + syst_JES_EtaIntercalibration_Stat15: 1.89508135e-04 + syst_JES_EtaIntercalibration_Stat150: 5.53963519e-02 + syst_JES_EtaIntercalibration_Stat151: 1.19022630e-01 + syst_JES_EtaIntercalibration_Stat152: 1.56918501e-01 + syst_JES_EtaIntercalibration_Stat153: 9.18127311e-02 + syst_JES_EtaIntercalibration_Stat154: 1.08419423e-01 + syst_JES_EtaIntercalibration_Stat155: 3.99585585e-02 + syst_JES_EtaIntercalibration_Stat156: 8.73249672e-02 + syst_JES_EtaIntercalibration_Stat157: 1.10434832e-01 + syst_JES_EtaIntercalibration_Stat158: 7.10471512e-02 + syst_JES_EtaIntercalibration_Stat159: 6.96675439e-02 + syst_JES_EtaIntercalibration_Stat16: 1.89508135e-04 + syst_JES_EtaIntercalibration_Stat160: 7.19123791e-02 + syst_JES_EtaIntercalibration_Stat161: 2.59923296e-02 + syst_JES_EtaIntercalibration_Stat162: 3.08757101e-02 + syst_JES_EtaIntercalibration_Stat163: 4.79050818e-03 + syst_JES_EtaIntercalibration_Stat164: 1.38222371e-02 + syst_JES_EtaIntercalibration_Stat165: 1.64528518e-03 + syst_JES_EtaIntercalibration_Stat166: 1.30276576e-02 + syst_JES_EtaIntercalibration_Stat167: 1.89290778e-02 + syst_JES_EtaIntercalibration_Stat168: 3.48070597e-02 + syst_JES_EtaIntercalibration_Stat169: 2.88324310e-02 + syst_JES_EtaIntercalibration_Stat17: 1.71513273e-04 + syst_JES_EtaIntercalibration_Stat170: 2.32098036e-02 + syst_JES_EtaIntercalibration_Stat171: 4.26901644e-02 + syst_JES_EtaIntercalibration_Stat172: 1.34003531e-02 + syst_JES_EtaIntercalibration_Stat173: 1.13041322e-02 + syst_JES_EtaIntercalibration_Stat174: 6.82314855e-03 + syst_JES_EtaIntercalibration_Stat175: 1.78768978e-02 + syst_JES_EtaIntercalibration_Stat176: 2.21434178e-02 + syst_JES_EtaIntercalibration_Stat177: 2.33748471e-02 + syst_JES_EtaIntercalibration_Stat178: 1.74072924e-02 + syst_JES_EtaIntercalibration_Stat179: 1.73531575e-02 + syst_JES_EtaIntercalibration_Stat18: 8.78707511e-05 + syst_JES_EtaIntercalibration_Stat180: 1.63045283e-02 + syst_JES_EtaIntercalibration_Stat181: 1.21420782e-02 + syst_JES_EtaIntercalibration_Stat182: 2.67015308e-03 + syst_JES_EtaIntercalibration_Stat183: 4.05604316e-03 + syst_JES_EtaIntercalibration_Stat184: 7.91585780e-03 + syst_JES_EtaIntercalibration_Stat185: 8.20568205e-03 + syst_JES_EtaIntercalibration_Stat186: 1.57817727e-02 + syst_JES_EtaIntercalibration_Stat187: 2.90880558e-02 + syst_JES_EtaIntercalibration_Stat188: 2.44173217e-02 + syst_JES_EtaIntercalibration_Stat189: 1.72157317e-02 + syst_JES_EtaIntercalibration_Stat19: 2.37678206e-04 + syst_JES_EtaIntercalibration_Stat190: 1.39653748e-02 + syst_JES_EtaIntercalibration_Stat191: 1.93350996e-02 + syst_JES_EtaIntercalibration_Stat192: 2.65838988e-02 + syst_JES_EtaIntercalibration_Stat193: 3.78356974e-02 + syst_JES_EtaIntercalibration_Stat194: 1.72671031e-02 + syst_JES_EtaIntercalibration_Stat195: 9.55419549e-03 + syst_JES_EtaIntercalibration_Stat196: 1.13357161e-02 + syst_JES_EtaIntercalibration_Stat197: 5.10616656e-03 + syst_JES_EtaIntercalibration_Stat198: 3.34906584e-03 + syst_JES_EtaIntercalibration_Stat199: 2.82928595e-03 + syst_JES_EtaIntercalibration_Stat2: 1.50854161e-04 + syst_JES_EtaIntercalibration_Stat20: 1.50854161e-04 + syst_JES_EtaIntercalibration_Stat200: 9.42582049e-04 + syst_JES_EtaIntercalibration_Stat201: 3.73425883e-03 + syst_JES_EtaIntercalibration_Stat202: 4.60881056e-03 + syst_JES_EtaIntercalibration_Stat203: 5.06057922e-03 + syst_JES_EtaIntercalibration_Stat204: 4.13205520e-03 + syst_JES_EtaIntercalibration_Stat205: 2.68049287e-03 + syst_JES_EtaIntercalibration_Stat206: 3.77065044e-03 + syst_JES_EtaIntercalibration_Stat207: 5.51665578e-03 + syst_JES_EtaIntercalibration_Stat208: 3.68371074e-03 + syst_JES_EtaIntercalibration_Stat209: 4.24711114e-03 + syst_JES_EtaIntercalibration_Stat21: 1.50854161e-04 + syst_JES_EtaIntercalibration_Stat210: 1.81505124e-03 + syst_JES_EtaIntercalibration_Stat211: 2.36824274e-03 + syst_JES_EtaIntercalibration_Stat212: 7.57053365e-04 + syst_JES_EtaIntercalibration_Stat213: 2.56136226e-04 + syst_JES_EtaIntercalibration_Stat214: 7.03127347e-04 + syst_JES_EtaIntercalibration_Stat215: 2.61123534e-05 + syst_JES_EtaIntercalibration_Stat216: 3.09344274e-04 + syst_JES_EtaIntercalibration_Stat217: 1.52680279e-05 + syst_JES_EtaIntercalibration_Stat218: 2.53251155e-05 + syst_JES_EtaIntercalibration_Stat219: 3.17114112e-05 + syst_JES_EtaIntercalibration_Stat22: 1.50854161e-04 + syst_JES_EtaIntercalibration_Stat220: 2.92803189e-04 + syst_JES_EtaIntercalibration_Stat221: 4.03394633e-05 + syst_JES_EtaIntercalibration_Stat222: 2.41923201e-04 + syst_JES_EtaIntercalibration_Stat223: 5.45050788e-04 + syst_JES_EtaIntercalibration_Stat224: 8.38074216e-04 + syst_JES_EtaIntercalibration_Stat225: 3.04694874e-04 + syst_JES_EtaIntercalibration_Stat226: 8.62734507e-04 + syst_JES_EtaIntercalibration_Stat227: 1.33933835e-04 + syst_JES_EtaIntercalibration_Stat228: 1.27200314e-04 + syst_JES_EtaIntercalibration_Stat229: 8.61955084e-05 + syst_JES_EtaIntercalibration_Stat23: 7.67616551e-04 + syst_JES_EtaIntercalibration_Stat230: 1.56484898e-04 + syst_JES_EtaIntercalibration_Stat231: 7.58291844e-05 + syst_JES_EtaIntercalibration_Stat232: 1.31020519e-04 + syst_JES_EtaIntercalibration_Stat233: 1.23482244e-04 + syst_JES_EtaIntercalibration_Stat234: 1.40285982e-04 + syst_JES_EtaIntercalibration_Stat235: 1.32758783e-04 + syst_JES_EtaIntercalibration_Stat236: 8.41863295e-05 + syst_JES_EtaIntercalibration_Stat237: 1.20582937e-04 + syst_JES_EtaIntercalibration_Stat238: 1.20618290e-04 + syst_JES_EtaIntercalibration_Stat239: 1.20604136e-04 + syst_JES_EtaIntercalibration_Stat24: 1.03154182e-03 + syst_JES_EtaIntercalibration_Stat240: 7.38200054e-05 + syst_JES_EtaIntercalibration_Stat241: 1.20547564e-04 + syst_JES_EtaIntercalibration_Stat242: 9.24741926e-05 + syst_JES_EtaIntercalibration_Stat243: 1.24244760e-04 + syst_JES_EtaIntercalibration_Stat244: 1.49107734e-04 + syst_JES_EtaIntercalibration_Stat245: 1.52139210e-04 + syst_JES_EtaIntercalibration_Stat25: 9.05184969e-04 + syst_JES_EtaIntercalibration_Stat26: 4.47884140e-03 + syst_JES_EtaIntercalibration_Stat27: 9.60511961e-04 + syst_JES_EtaIntercalibration_Stat28: 2.45668659e-03 + syst_JES_EtaIntercalibration_Stat29: 6.10250917e-03 + syst_JES_EtaIntercalibration_Stat3: 2.15537300e-04 + syst_JES_EtaIntercalibration_Stat30: 3.71321931e-03 + syst_JES_EtaIntercalibration_Stat31: 6.51701306e-03 + syst_JES_EtaIntercalibration_Stat32: 6.52799885e-04 + syst_JES_EtaIntercalibration_Stat33: 1.09004389e-03 + syst_JES_EtaIntercalibration_Stat34: 1.02442014e-03 + syst_JES_EtaIntercalibration_Stat35: 6.01657234e-04 + syst_JES_EtaIntercalibration_Stat36: 1.42300143e-03 + syst_JES_EtaIntercalibration_Stat37: 7.23018539e-04 + syst_JES_EtaIntercalibration_Stat38: 3.61965570e-03 + syst_JES_EtaIntercalibration_Stat39: 3.41969131e-03 + syst_JES_EtaIntercalibration_Stat4: 2.46566552e-04 + syst_JES_EtaIntercalibration_Stat40: 1.16261264e-03 + syst_JES_EtaIntercalibration_Stat41: 2.99872352e-04 + syst_JES_EtaIntercalibration_Stat42: 2.37678206e-04 + syst_JES_EtaIntercalibration_Stat43: 1.50854161e-04 + syst_JES_EtaIntercalibration_Stat44: 1.50854161e-04 + syst_JES_EtaIntercalibration_Stat45: 1.50854161e-04 + syst_JES_EtaIntercalibration_Stat46: 8.27306285e-04 + syst_JES_EtaIntercalibration_Stat47: 7.95826753e-03 + syst_JES_EtaIntercalibration_Stat48: 6.85487547e-03 + syst_JES_EtaIntercalibration_Stat49: 1.00660731e-03 + syst_JES_EtaIntercalibration_Stat5: 3.27762425e-04 + syst_JES_EtaIntercalibration_Stat50: 9.48482687e-04 + syst_JES_EtaIntercalibration_Stat51: 3.93389921e-03 + syst_JES_EtaIntercalibration_Stat52: 8.31587315e-03 + syst_JES_EtaIntercalibration_Stat53: 3.59392157e-03 + syst_JES_EtaIntercalibration_Stat54: 7.43969253e-04 + syst_JES_EtaIntercalibration_Stat55: 2.81892625e-03 + syst_JES_EtaIntercalibration_Stat56: 3.39997687e-03 + syst_JES_EtaIntercalibration_Stat57: 6.43044753e-03 + syst_JES_EtaIntercalibration_Stat58: 2.09590189e-03 + syst_JES_EtaIntercalibration_Stat59: 6.44085957e-04 + syst_JES_EtaIntercalibration_Stat6: 1.79588718e-04 + syst_JES_EtaIntercalibration_Stat60: 1.07279069e-03 + syst_JES_EtaIntercalibration_Stat61: 3.00339587e-03 + syst_JES_EtaIntercalibration_Stat62: 1.16235072e-03 + syst_JES_EtaIntercalibration_Stat63: 1.17248941e-03 + syst_JES_EtaIntercalibration_Stat64: 2.44461334e-04 + syst_JES_EtaIntercalibration_Stat65: 1.50854161e-04 + syst_JES_EtaIntercalibration_Stat66: 1.50854161e-04 + syst_JES_EtaIntercalibration_Stat67: 2.91085773e-04 + syst_JES_EtaIntercalibration_Stat68: 1.52748462e-03 + syst_JES_EtaIntercalibration_Stat69: 1.34871211e-02 + syst_JES_EtaIntercalibration_Stat7: 6.19310553e-04 + syst_JES_EtaIntercalibration_Stat70: 1.24372969e-02 + syst_JES_EtaIntercalibration_Stat71: 1.27856270e-02 + syst_JES_EtaIntercalibration_Stat72: 1.36153014e-02 + syst_JES_EtaIntercalibration_Stat73: 2.87401370e-02 + syst_JES_EtaIntercalibration_Stat74: 2.64703851e-02 + syst_JES_EtaIntercalibration_Stat75: 1.53918940e-02 + syst_JES_EtaIntercalibration_Stat76: 2.20767587e-02 + syst_JES_EtaIntercalibration_Stat77: 1.51843224e-02 + syst_JES_EtaIntercalibration_Stat78: 1.64755296e-02 + syst_JES_EtaIntercalibration_Stat79: 1.73402611e-02 + syst_JES_EtaIntercalibration_Stat8: 2.26829105e-04 + syst_JES_EtaIntercalibration_Stat80: 3.16203427e-02 + syst_JES_EtaIntercalibration_Stat81: 1.97326202e-02 + syst_JES_EtaIntercalibration_Stat82: 1.05722026e-02 + syst_JES_EtaIntercalibration_Stat83: 1.03113601e-02 + syst_JES_EtaIntercalibration_Stat84: 8.01435163e-03 + syst_JES_EtaIntercalibration_Stat85: 3.67665917e-04 + syst_JES_EtaIntercalibration_Stat86: 1.89811065e-04 + syst_JES_EtaIntercalibration_Stat87: 9.23789298e-05 + syst_JES_EtaIntercalibration_Stat88: 9.64799634e-04 + syst_JES_EtaIntercalibration_Stat89: 3.38168272e-03 + syst_JES_EtaIntercalibration_Stat9: 3.23179900e-04 + syst_JES_EtaIntercalibration_Stat90: 1.90653718e-02 + syst_JES_EtaIntercalibration_Stat91: 2.61560089e-02 + syst_JES_EtaIntercalibration_Stat92: 2.46709120e-02 + syst_JES_EtaIntercalibration_Stat93: 3.58035539e-02 + syst_JES_EtaIntercalibration_Stat94: 4.15409770e-02 + syst_JES_EtaIntercalibration_Stat95: 5.68302901e-02 + syst_JES_EtaIntercalibration_Stat96: 5.79142547e-02 + syst_JES_EtaIntercalibration_Stat97: 3.69402003e-02 + syst_JES_EtaIntercalibration_Stat98: 2.00995746e-02 + syst_JES_EtaIntercalibration_Stat99: 2.93892952e-02 + syst_JES_EtaIntercalibration_TotalStat_MJB: 4.35474498e-02 + syst_JES_Flavour_Comp: 5.33197831e-01 + syst_JES_Flavour_Response: 1.00092758e+01 + syst_JES_Gjet_Generator: 8.01029967e+00 + syst_JES_Gjet_OOC: 4.55223385e+00 + syst_JES_Gjet_Purity: 1.65915430e+00 + syst_JES_Gjet_Stat1: 7.88760871e-03 + syst_JES_Gjet_Stat10: 2.60828502e-01 + syst_JES_Gjet_Stat11: 1.65861771e-01 + syst_JES_Gjet_Stat12: 5.97050308e-02 + syst_JES_Gjet_Stat13: 3.27719667e-02 + syst_JES_Gjet_Stat14: 4.17402546e-03 + syst_JES_Gjet_Stat15: 6.74567386e-04 + syst_JES_Gjet_Stat2: 5.93404305e-03 + syst_JES_Gjet_Stat3: 1.29813574e-02 + syst_JES_Gjet_Stat4: 2.25296738e-02 + syst_JES_Gjet_Stat5: 3.94395902e-02 + syst_JES_Gjet_Stat6: 1.47223325e-01 + syst_JES_Gjet_Stat7: 3.23559469e-01 + syst_JES_Gjet_Stat8: 2.50069525e-01 + syst_JES_Gjet_Stat9: 4.19140108e-01 + syst_JES_Gjet_Veto: 1.84946371e+00 + syst_JES_Gjet_dPhi: 6.71075665e-01 + syst_JES_LArESZee: 7.00576768e+00 + syst_JES_LArEsmear: 6.25352403e-01 + syst_JES_LAr_JVT: 9.33124515e-01 + syst_JES_MJB_Alpha: 5.49201484e-03 + syst_JES_MJB_Asym: 2.16624860e-02 + syst_JES_MJB_Beta: 1.86966682e-03 + syst_JES_MJB_Fragmentation: 5.28661241e-02 + syst_JES_MJB_Stat1: 4.82905509e-03 + syst_JES_MJB_Stat10: 1.20653859e-04 + syst_JES_MJB_Stat11: 1.20604174e-04 + syst_JES_MJB_Stat12: 1.72596733e-04 + syst_JES_MJB_Stat13: 1.20547568e-04 + syst_JES_MJB_Stat14: 1.24806143e-04 + syst_JES_MJB_Stat15: 7.38113452e-05 + syst_JES_MJB_Stat16: 1.20533422e-04 + syst_JES_MJB_Stat2: 8.09307331e-03 + syst_JES_MJB_Stat3: 3.58857311e-03 + syst_JES_MJB_Stat4: 1.27055131e-03 + syst_JES_MJB_Stat5: 2.36260846e-05 + syst_JES_MJB_Stat6: 3.01230801e-04 + syst_JES_MJB_Stat7: 2.71498964e-04 + syst_JES_MJB_Stat8: 2.72957889e-04 + syst_JES_MJB_Stat9: 2.98175202e-04 + syst_JES_MJB_Threshold: 2.07030749e-02 + syst_JES_Pileup_MuOffset: 1.13640124e-01 + syst_JES_Pileup_NPVOffset: 3.77138860e-01 + syst_JES_Pileup_Pt_term: 1.80071173e+00 + syst_JES_Pileup_Rho_topology: 3.13718612e+00 + syst_JES_PunchThrough_MC15: 1.49899990e-02 + syst_JES_SingleParticle_HighPt: 1.22900990e-04 + syst_JES_Zjet_MC: 7.09704141e+00 + syst_JES_Zjet_MuScale: 5.41914336e-01 + syst_JES_Zjet_MuSmearID: 9.58456033e-02 + syst_JES_Zjet_MuSmearMS: 6.12220081e-01 + syst_JES_Zjet_OOC: 2.84057120e+00 + syst_JES_Zjet_Stat1: 3.88464078e-02 + syst_JES_Zjet_Stat10: 9.66872002e-01 + syst_JES_Zjet_Stat11: 8.81904591e-01 + syst_JES_Zjet_Stat12: 2.40968686e-01 + syst_JES_Zjet_Stat13: 5.61099831e-02 + syst_JES_Zjet_Stat2: 1.32920043e-02 + syst_JES_Zjet_Stat3: 2.00063605e-02 + syst_JES_Zjet_Stat4: 2.08328995e-02 + syst_JES_Zjet_Stat5: 2.84697840e-02 + syst_JES_Zjet_Stat6: 5.46482797e-02 + syst_JES_Zjet_Stat7: 1.11074176e-01 + syst_JES_Zjet_Stat8: 1.97892262e-01 + syst_JES_Zjet_Stat9: 5.56169120e-01 + syst_JES_Zjet_Veto: 5.47337492e-01 + syst_JES_Zjet_dPhi: 6.16047504e-01 syst_PRW: 0.0 syst_Unfolding_bias: 0.0 - syst_cleaning: 3.5524362063237676 + syst_cleaning: 3.55243621e+00 syst_lumi: 8.317 - stat: 0.8868 syst_JER_CROSS_CALIB_FORWARD: 7.38e-05 - syst_JER_NOISE_FORWARD: 5.818e-05 - syst_JER_NP0: 0.6740581651460058 - syst_JER_NP1: 0.12738136392345623 - syst_JER_NP2: 0.056317073946717075 - syst_JER_NP3: 0.20311218574964918 - syst_JER_NP4: 0.10099356959727683 + syst_JER_NOISE_FORWARD: 5.81800000e-05 + syst_JER_NP0: 6.74058165e-01 + syst_JER_NP1: 1.27381364e-01 + syst_JER_NP2: 5.63170739e-02 + syst_JER_NP3: 2.03112186e-01 + syst_JER_NP4: 1.00993570e-01 syst_JER_NP5: 0.0 syst_JER_NP6: 0.0 syst_JER_NP7: 0.0 - syst_JER_NP8: 0.09073580770566822 - syst_JES_EtaIntercalibration_Modelling: 2.1803281289750864 - syst_JES_EtaIntercalibration_NonClosure: 0.4024656755550714 - syst_JES_EtaIntercalibration_Stat0: 0.00029811621894824844 - syst_JES_EtaIntercalibration_Stat1: 0.00029811621894824844 - syst_JES_EtaIntercalibration_Stat10: 0.00019417366370082223 - syst_JES_EtaIntercalibration_Stat100: 0.0037395631763616453 - syst_JES_EtaIntercalibration_Stat101: 0.004880215056736741 - syst_JES_EtaIntercalibration_Stat102: 0.00512537986397106 - syst_JES_EtaIntercalibration_Stat103: 0.0018751320806812515 - syst_JES_EtaIntercalibration_Stat104: 0.0014895868781309802 - syst_JES_EtaIntercalibration_Stat105: 0.0009040467687017083 - syst_JES_EtaIntercalibration_Stat106: 0.0009007100240921047 - syst_JES_EtaIntercalibration_Stat107: 0.00017809491095555622 - syst_JES_EtaIntercalibration_Stat108: 0.0001783146306392159 - syst_JES_EtaIntercalibration_Stat109: 0.007927757990125581 - syst_JES_EtaIntercalibration_Stat11: 0.00014320049825332313 - syst_JES_EtaIntercalibration_Stat110: 0.017793630180488747 - syst_JES_EtaIntercalibration_Stat111: 0.020017035944414948 - syst_JES_EtaIntercalibration_Stat112: 0.041477672005550165 - syst_JES_EtaIntercalibration_Stat113: 0.03991505229860034 - syst_JES_EtaIntercalibration_Stat114: 0.03702841712793028 - syst_JES_EtaIntercalibration_Stat115: 0.053059148834107776 - syst_JES_EtaIntercalibration_Stat116: 0.05011119934705215 - syst_JES_EtaIntercalibration_Stat117: 0.013140541341588634 - syst_JES_EtaIntercalibration_Stat118: 0.0314222162649295 - syst_JES_EtaIntercalibration_Stat119: 0.05269598348071701 - syst_JES_EtaIntercalibration_Stat12: 0.0004628284212318859 - syst_JES_EtaIntercalibration_Stat120: 0.049017061060410386 - syst_JES_EtaIntercalibration_Stat121: 0.04902580009545993 - syst_JES_EtaIntercalibration_Stat122: 0.028320932188047765 - syst_JES_EtaIntercalibration_Stat123: 0.02801623100989853 - syst_JES_EtaIntercalibration_Stat124: 0.016083929868039092 - syst_JES_EtaIntercalibration_Stat125: 0.008257733102976868 - syst_JES_EtaIntercalibration_Stat126: 0.0025349560153975063 - syst_JES_EtaIntercalibration_Stat127: 0.0006592185373607147 - syst_JES_EtaIntercalibration_Stat128: 0.014000583943178942 - syst_JES_EtaIntercalibration_Stat129: 0.08183429644714983 - syst_JES_EtaIntercalibration_Stat13: 0.0002835561849087408 - syst_JES_EtaIntercalibration_Stat130: 0.11491646400755638 - syst_JES_EtaIntercalibration_Stat131: 0.08535192616455706 - syst_JES_EtaIntercalibration_Stat132: 0.13375957236773747 - syst_JES_EtaIntercalibration_Stat133: 0.14270803866636245 - syst_JES_EtaIntercalibration_Stat134: 0.20922435326701336 - syst_JES_EtaIntercalibration_Stat135: 0.14909509549277603 - syst_JES_EtaIntercalibration_Stat136: 0.12887391163458956 - syst_JES_EtaIntercalibration_Stat137: 0.11597531806380185 - syst_JES_EtaIntercalibration_Stat138: 0.17355174300478804 - syst_JES_EtaIntercalibration_Stat139: 0.1701848700678177 - syst_JES_EtaIntercalibration_Stat14: 0.000289634821801523 - syst_JES_EtaIntercalibration_Stat140: 0.1598021276454103 - syst_JES_EtaIntercalibration_Stat141: 0.1435006271763298 - syst_JES_EtaIntercalibration_Stat142: 0.09345801771383769 - syst_JES_EtaIntercalibration_Stat143: 0.08241525511093198 - syst_JES_EtaIntercalibration_Stat144: 0.05784716306786358 - syst_JES_EtaIntercalibration_Stat145: 0.0046676635482862305 - syst_JES_EtaIntercalibration_Stat146: 0.010268872333416168 - syst_JES_EtaIntercalibration_Stat147: 0.01132012259297575 - syst_JES_EtaIntercalibration_Stat148: 0.03291740196309545 - syst_JES_EtaIntercalibration_Stat149: 0.052105990778412416 - syst_JES_EtaIntercalibration_Stat15: 0.00043532379107395454 - syst_JES_EtaIntercalibration_Stat150: 0.031943455929971006 - syst_JES_EtaIntercalibration_Stat151: 0.045075949241252806 - syst_JES_EtaIntercalibration_Stat152: 0.0855010151986513 - syst_JES_EtaIntercalibration_Stat153: 0.07255023414848501 - syst_JES_EtaIntercalibration_Stat154: 0.055640097726369964 - syst_JES_EtaIntercalibration_Stat155: 0.022540891730364176 - syst_JES_EtaIntercalibration_Stat156: 0.07752207733929735 - syst_JES_EtaIntercalibration_Stat157: 0.08799763903082854 - syst_JES_EtaIntercalibration_Stat158: 0.0466271087994956 - syst_JES_EtaIntercalibration_Stat159: 0.061434666109615996 - syst_JES_EtaIntercalibration_Stat16: 0.00043532379107395454 - syst_JES_EtaIntercalibration_Stat160: 0.04996474031754793 - syst_JES_EtaIntercalibration_Stat161: 0.017057543514527526 - syst_JES_EtaIntercalibration_Stat162: 0.01660080922726359 - syst_JES_EtaIntercalibration_Stat163: 0.001979668942020357 - syst_JES_EtaIntercalibration_Stat164: 0.005924072170390904 - syst_JES_EtaIntercalibration_Stat165: 0.0075062294241183426 - syst_JES_EtaIntercalibration_Stat166: 0.011093130160148668 - syst_JES_EtaIntercalibration_Stat167: 0.012878894236307711 - syst_JES_EtaIntercalibration_Stat168: 0.020873780203882572 - syst_JES_EtaIntercalibration_Stat169: 0.014511318642700943 - syst_JES_EtaIntercalibration_Stat17: 0.00042986121109027733 - syst_JES_EtaIntercalibration_Stat170: 0.022045368419466253 - syst_JES_EtaIntercalibration_Stat171: 0.014664385530938554 - syst_JES_EtaIntercalibration_Stat172: 0.023588222654536733 - syst_JES_EtaIntercalibration_Stat173: 0.01476367626135171 - syst_JES_EtaIntercalibration_Stat174: 0.03981544800702361 - syst_JES_EtaIntercalibration_Stat175: 0.047769864977828855 - syst_JES_EtaIntercalibration_Stat176: 0.045649340356679856 - syst_JES_EtaIntercalibration_Stat177: 0.022439809908954222 - syst_JES_EtaIntercalibration_Stat178: 0.011107543506554454 - syst_JES_EtaIntercalibration_Stat179: 0.010231650538891562 - syst_JES_EtaIntercalibration_Stat18: 0.00043934128655863884 - syst_JES_EtaIntercalibration_Stat180: 0.00914470961813441 - syst_JES_EtaIntercalibration_Stat181: 0.006505357859487824 - syst_JES_EtaIntercalibration_Stat182: 0.0049191347562350845 - syst_JES_EtaIntercalibration_Stat183: 0.001603258927060754 - syst_JES_EtaIntercalibration_Stat184: 0.009091665455239761 - syst_JES_EtaIntercalibration_Stat185: 0.006760666738569502 - syst_JES_EtaIntercalibration_Stat186: 0.006571433341935381 - syst_JES_EtaIntercalibration_Stat187: 0.011749746667481815 - syst_JES_EtaIntercalibration_Stat188: 0.011786925669995549 - syst_JES_EtaIntercalibration_Stat189: 0.009169991042525616 - syst_JES_EtaIntercalibration_Stat19: 0.0002939590915416633 - syst_JES_EtaIntercalibration_Stat190: 0.00701629751008322 - syst_JES_EtaIntercalibration_Stat191: 0.00649683784621411 - syst_JES_EtaIntercalibration_Stat192: 0.016463372315537298 - syst_JES_EtaIntercalibration_Stat193: 0.01779279322506728 - syst_JES_EtaIntercalibration_Stat194: 0.010905465923104799 - syst_JES_EtaIntercalibration_Stat195: 0.005542064664906031 - syst_JES_EtaIntercalibration_Stat196: 0.0013514281778918183 - syst_JES_EtaIntercalibration_Stat197: 0.00467457034068373 - syst_JES_EtaIntercalibration_Stat198: 0.002078910291474839 - syst_JES_EtaIntercalibration_Stat199: 0.002793746051451348 - syst_JES_EtaIntercalibration_Stat2: 0.00029811621894824844 - syst_JES_EtaIntercalibration_Stat20: 0.00029811621894824844 - syst_JES_EtaIntercalibration_Stat200: 0.0003539445825267001 - syst_JES_EtaIntercalibration_Stat201: 0.005285420773221371 - syst_JES_EtaIntercalibration_Stat202: 0.008556122062593544 - syst_JES_EtaIntercalibration_Stat203: 0.006835163348450422 - syst_JES_EtaIntercalibration_Stat204: 0.0047836925820959695 - syst_JES_EtaIntercalibration_Stat205: 0.004504464535324926 - syst_JES_EtaIntercalibration_Stat206: 0.0062603796011104626 - syst_JES_EtaIntercalibration_Stat207: 0.005357170428500478 - syst_JES_EtaIntercalibration_Stat208: 0.005234554995412696 - syst_JES_EtaIntercalibration_Stat209: 0.0022195826184217607 - syst_JES_EtaIntercalibration_Stat21: 0.00029811621894824844 - syst_JES_EtaIntercalibration_Stat210: 0.003635215640096197 - syst_JES_EtaIntercalibration_Stat211: 0.003036603905681477 - syst_JES_EtaIntercalibration_Stat212: 0.0017203419660055963 - syst_JES_EtaIntercalibration_Stat213: 0.0004970753539454557 - syst_JES_EtaIntercalibration_Stat214: 0.0008035757633851335 - syst_JES_EtaIntercalibration_Stat215: 0.0006424017959968667 - syst_JES_EtaIntercalibration_Stat216: 0.0010047626734707056 - syst_JES_EtaIntercalibration_Stat217: 0.0008682770698342781 - syst_JES_EtaIntercalibration_Stat218: 0.0004917721326170791 - syst_JES_EtaIntercalibration_Stat219: 0.0006465936204448664 - syst_JES_EtaIntercalibration_Stat22: 0.00029811621894824844 - syst_JES_EtaIntercalibration_Stat220: 0.0009134835715476472 - syst_JES_EtaIntercalibration_Stat221: 0.0007338699271669332 - syst_JES_EtaIntercalibration_Stat222: 0.0009480131051309364 - syst_JES_EtaIntercalibration_Stat223: 0.0014136627771501944 - syst_JES_EtaIntercalibration_Stat224: 0.0018097892777889917 - syst_JES_EtaIntercalibration_Stat225: 0.0004493501387559594 - syst_JES_EtaIntercalibration_Stat226: 0.0017337828616251958 - syst_JES_EtaIntercalibration_Stat227: 0.0003268556676883545 - syst_JES_EtaIntercalibration_Stat228: 0.00033468413093542393 - syst_JES_EtaIntercalibration_Stat229: 0.00020325615648315873 - syst_JES_EtaIntercalibration_Stat23: 0.0014704577110546226 - syst_JES_EtaIntercalibration_Stat230: 0.0003790912423150923 - syst_JES_EtaIntercalibration_Stat231: 0.00021139681104328278 - syst_JES_EtaIntercalibration_Stat232: 0.00033939626913093786 - syst_JES_EtaIntercalibration_Stat233: 0.0005743193188462321 - syst_JES_EtaIntercalibration_Stat234: 0.00023164441974716336 - syst_JES_EtaIntercalibration_Stat235: 0.0006431069662194618 - syst_JES_EtaIntercalibration_Stat236: 0.0003498742631289132 - syst_JES_EtaIntercalibration_Stat237: 0.0003245925869455432 - syst_JES_EtaIntercalibration_Stat238: 0.0003066015166302998 - syst_JES_EtaIntercalibration_Stat239: 0.00030660150032248704 - syst_JES_EtaIntercalibration_Stat24: 0.0006397532180458337 - syst_JES_EtaIntercalibration_Stat240: 0.0001877543075404663 - syst_JES_EtaIntercalibration_Stat241: 0.00030667221507661886 - syst_JES_EtaIntercalibration_Stat242: 0.00018073950176981235 - syst_JES_EtaIntercalibration_Stat243: 0.0005605379982659517 - syst_JES_EtaIntercalibration_Stat244: 0.0003335644877681076 - syst_JES_EtaIntercalibration_Stat245: 0.0002907514482767025 - syst_JES_EtaIntercalibration_Stat25: 0.0003556178848145858 - syst_JES_EtaIntercalibration_Stat26: 0.0019932763700751584 - syst_JES_EtaIntercalibration_Stat27: 0.00039012583867260067 - syst_JES_EtaIntercalibration_Stat28: 0.0017374128201150122 - syst_JES_EtaIntercalibration_Stat29: 0.0020018127253816726 - syst_JES_EtaIntercalibration_Stat3: 0.0002953649395239726 - syst_JES_EtaIntercalibration_Stat30: 0.0016216044731993064 - syst_JES_EtaIntercalibration_Stat31: 0.000110751295590616 - syst_JES_EtaIntercalibration_Stat32: 0.0006592589248542638 - syst_JES_EtaIntercalibration_Stat33: 0.0005210343654693038 - syst_JES_EtaIntercalibration_Stat34: 0.00046764758900265916 - syst_JES_EtaIntercalibration_Stat35: 0.00030746310522565144 - syst_JES_EtaIntercalibration_Stat36: 0.0002789161657200959 - syst_JES_EtaIntercalibration_Stat37: 0.0006574396410888228 - syst_JES_EtaIntercalibration_Stat38: 0.0018236274290545206 - syst_JES_EtaIntercalibration_Stat39: 0.001814979092854791 - syst_JES_EtaIntercalibration_Stat4: 0.0002933275984287875 - syst_JES_EtaIntercalibration_Stat40: 0.0014376753136574336 - syst_JES_EtaIntercalibration_Stat41: 0.0002897246408229718 - syst_JES_EtaIntercalibration_Stat42: 0.0002939590915416633 - syst_JES_EtaIntercalibration_Stat43: 0.00029811621894824844 - syst_JES_EtaIntercalibration_Stat44: 0.00029811621894824844 - syst_JES_EtaIntercalibration_Stat45: 0.00029811621894824844 - syst_JES_EtaIntercalibration_Stat46: 0.0007027410244891072 - syst_JES_EtaIntercalibration_Stat47: 0.0024001452039407946 - syst_JES_EtaIntercalibration_Stat48: 0.0020989224544989745 - syst_JES_EtaIntercalibration_Stat49: 0.00028060698975613564 - syst_JES_EtaIntercalibration_Stat5: 0.00028793778841965155 - syst_JES_EtaIntercalibration_Stat50: 0.00022038093582476683 - syst_JES_EtaIntercalibration_Stat51: 0.0022631928568948778 - syst_JES_EtaIntercalibration_Stat52: 0.0012224068584149878 - syst_JES_EtaIntercalibration_Stat53: 0.0016335626732696853 - syst_JES_EtaIntercalibration_Stat54: 0.0001651143640026512 - syst_JES_EtaIntercalibration_Stat55: 0.0010103985587380851 - syst_JES_EtaIntercalibration_Stat56: 0.0006545480272676712 - syst_JES_EtaIntercalibration_Stat57: 0.0002618152163263243 - syst_JES_EtaIntercalibration_Stat58: 0.0005740789416099497 - syst_JES_EtaIntercalibration_Stat59: 0.0005616279440163213 - syst_JES_EtaIntercalibration_Stat6: 0.00026113915830453313 - syst_JES_EtaIntercalibration_Stat60: 0.00030990596961013835 - syst_JES_EtaIntercalibration_Stat61: 0.0014621390824063215 - syst_JES_EtaIntercalibration_Stat62: 0.0015098168994947699 - syst_JES_EtaIntercalibration_Stat63: 0.0016029096878801376 - syst_JES_EtaIntercalibration_Stat64: 0.0002933275984287875 - syst_JES_EtaIntercalibration_Stat65: 0.00029811621894824844 - syst_JES_EtaIntercalibration_Stat66: 0.00029811621894824844 - syst_JES_EtaIntercalibration_Stat67: 0.0002855072809929722 - syst_JES_EtaIntercalibration_Stat68: 0.00011431859671300202 - syst_JES_EtaIntercalibration_Stat69: 0.0014555430326857396 - syst_JES_EtaIntercalibration_Stat7: 0.00034703750157583834 - syst_JES_EtaIntercalibration_Stat70: 0.000599861100589128 - syst_JES_EtaIntercalibration_Stat71: 0.0013479818275852237 - syst_JES_EtaIntercalibration_Stat72: 0.002967397810793154 - syst_JES_EtaIntercalibration_Stat73: 0.0030182207921224053 - syst_JES_EtaIntercalibration_Stat74: 0.0030894523786587163 - syst_JES_EtaIntercalibration_Stat75: 0.00014778969923509556 - syst_JES_EtaIntercalibration_Stat76: 0.00195965663318858 - syst_JES_EtaIntercalibration_Stat77: 0.0008710560142723314 - syst_JES_EtaIntercalibration_Stat78: 0.0004640573671433307 - syst_JES_EtaIntercalibration_Stat79: 0.00042335669358119275 - syst_JES_EtaIntercalibration_Stat8: 0.0002559929692393914 - syst_JES_EtaIntercalibration_Stat80: 0.00365106405723044 - syst_JES_EtaIntercalibration_Stat81: 0.001266119848197634 - syst_JES_EtaIntercalibration_Stat82: 0.001059579571103558 - syst_JES_EtaIntercalibration_Stat83: 0.0020357733094576126 - syst_JES_EtaIntercalibration_Stat84: 0.00042299368222232354 - syst_JES_EtaIntercalibration_Stat85: 0.00047636923357832425 - syst_JES_EtaIntercalibration_Stat86: 0.00017815240857288456 - syst_JES_EtaIntercalibration_Stat87: 0.00018255815511775966 - syst_JES_EtaIntercalibration_Stat88: 0.0005619068363783715 - syst_JES_EtaIntercalibration_Stat89: 0.00039983445924532315 - syst_JES_EtaIntercalibration_Stat9: 0.0004701748690646917 - syst_JES_EtaIntercalibration_Stat90: 0.001498346395197052 - syst_JES_EtaIntercalibration_Stat91: 0.002555551359296072 - syst_JES_EtaIntercalibration_Stat92: 0.002382935735600102 - syst_JES_EtaIntercalibration_Stat93: 0.004677384709428977 - syst_JES_EtaIntercalibration_Stat94: 0.0046275319555892855 - syst_JES_EtaIntercalibration_Stat95: 0.005384083394599307 - syst_JES_EtaIntercalibration_Stat96: 0.0057460708967084625 - syst_JES_EtaIntercalibration_Stat97: 0.004348664396110604 - syst_JES_EtaIntercalibration_Stat98: 0.0011095855848018213 - syst_JES_EtaIntercalibration_Stat99: 0.0025274006152567106 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.015172036778231196 - syst_JES_Flavour_Comp: 0.2651910773385862 - syst_JES_Flavour_Response: 3.907800040943753 - syst_JES_Gjet_Generator: 3.36000119047598 - syst_JES_Gjet_OOC: 1.993605464980471 - syst_JES_Gjet_Purity: 0.6364110621288729 - syst_JES_Gjet_Stat1: 0.0025117323439212227 - syst_JES_Gjet_Stat10: 0.2086253579984945 - syst_JES_Gjet_Stat11: 0.15550725642232904 - syst_JES_Gjet_Stat12: 0.012317061459617713 - syst_JES_Gjet_Stat13: 0.03493520287618207 - syst_JES_Gjet_Stat14: 0.006122564903698449 - syst_JES_Gjet_Stat15: 0.002331660995942592 - syst_JES_Gjet_Stat2: 0.0010836272087300135 - syst_JES_Gjet_Stat3: 0.001405043212858594 - syst_JES_Gjet_Stat4: 0.007933448775280521 - syst_JES_Gjet_Stat5: 0.00784504193742774 - syst_JES_Gjet_Stat6: 0.0415284438427447 - syst_JES_Gjet_Stat7: 0.08546754164593715 - syst_JES_Gjet_Stat8: 0.07914414112870263 - syst_JES_Gjet_Stat9: 0.16543482100210946 - syst_JES_Gjet_Veto: 0.7965883802190439 - syst_JES_Gjet_dPhi: 0.22062494759206178 - syst_JES_LArESZee: 3.3665167087064938 - syst_JES_LArEsmear: 0.29251671319772476 - syst_JES_LAr_JVT: 0.4203514444783079 - syst_JES_MJB_Alpha: 0.008581664523855496 - syst_JES_MJB_Asym: 0.01799767484982435 - syst_JES_MJB_Beta: 0.003741277054696698 - syst_JES_MJB_Fragmentation: 0.021989998107094053 - syst_JES_MJB_Stat1: 0.007843800844456723 - syst_JES_MJB_Stat10: 0.00030646066631788167 - syst_JES_MJB_Stat11: 0.00030660164709277085 - syst_JES_MJB_Stat12: 0.0002565582341301873 - syst_JES_MJB_Stat13: 0.00030674293797901855 - syst_JES_MJB_Stat14: 0.0003517166331011373 - syst_JES_MJB_Stat15: 0.0001877543075404663 - syst_JES_MJB_Stat16: 0.00030660150032248704 - syst_JES_MJB_Stat2: 0.008667290130571376 - syst_JES_MJB_Stat3: 0.006319060046399306 - syst_JES_MJB_Stat4: 0.002287441092137675 - syst_JES_MJB_Stat5: 0.0004815740130031936 - syst_JES_MJB_Stat6: 0.00026140946329465583 - syst_JES_MJB_Stat7: 0.00016627687084378392 - syst_JES_MJB_Stat8: 0.00034125194504940184 - syst_JES_MJB_Stat9: 0.0004370274806004766 - syst_JES_MJB_Threshold: 0.02063495759627337 - syst_JES_Pileup_MuOffset: 0.028495143586232372 - syst_JES_Pileup_NPVOffset: 0.1450772218509853 - syst_JES_Pileup_Pt_term: 0.7566782324740154 - syst_JES_Pileup_Rho_topology: 1.1644344721795212 - syst_JES_PunchThrough_MC15: 0.009820759695665097 - syst_JES_SingleParticle_HighPt: 0.0003613200520314365 - syst_JES_Zjet_MC: 3.0416250179796984 - syst_JES_Zjet_MuScale: 0.21159585889142538 - syst_JES_Zjet_MuSmearID: 0.023327080293084262 - syst_JES_Zjet_MuSmearMS: 0.3232998105474236 - syst_JES_Zjet_OOC: 1.051614761925678 - syst_JES_Zjet_Stat1: 0.01051314848178223 - syst_JES_Zjet_Stat10: 0.35783810235915353 - syst_JES_Zjet_Stat11: 0.4744462245608031 - syst_JES_Zjet_Stat12: 0.3532875033170576 - syst_JES_Zjet_Stat13: 0.03330522031153675 - syst_JES_Zjet_Stat2: 0.005546892102790535 - syst_JES_Zjet_Stat3: 0.006469771093323163 - syst_JES_Zjet_Stat4: 0.006158319636881477 - syst_JES_Zjet_Stat5: 0.00706029857725578 - syst_JES_Zjet_Stat6: 0.011522957757017076 - syst_JES_Zjet_Stat7: 0.01863906142352667 - syst_JES_Zjet_Stat8: 0.046746870483487975 - syst_JES_Zjet_Stat9: 0.15780148129849733 - syst_JES_Zjet_Veto: 0.22249284819966686 - syst_JES_Zjet_dPhi: 0.21018764830503242 + syst_JER_NP8: 9.07358077e-02 + syst_JES_EtaIntercalibration_Modelling: 2.18032813e+00 + syst_JES_EtaIntercalibration_NonClosure: 4.02465676e-01 + syst_JES_EtaIntercalibration_Stat0: 2.98116219e-04 + syst_JES_EtaIntercalibration_Stat1: 2.98116219e-04 + syst_JES_EtaIntercalibration_Stat10: 1.94173664e-04 + syst_JES_EtaIntercalibration_Stat100: 3.73956318e-03 + syst_JES_EtaIntercalibration_Stat101: 4.88021506e-03 + syst_JES_EtaIntercalibration_Stat102: 5.12537986e-03 + syst_JES_EtaIntercalibration_Stat103: 1.87513208e-03 + syst_JES_EtaIntercalibration_Stat104: 1.48958688e-03 + syst_JES_EtaIntercalibration_Stat105: 9.04046769e-04 + syst_JES_EtaIntercalibration_Stat106: 9.00710024e-04 + syst_JES_EtaIntercalibration_Stat107: 1.78094911e-04 + syst_JES_EtaIntercalibration_Stat108: 1.78314631e-04 + syst_JES_EtaIntercalibration_Stat109: 7.92775799e-03 + syst_JES_EtaIntercalibration_Stat11: 1.43200498e-04 + syst_JES_EtaIntercalibration_Stat110: 1.77936302e-02 + syst_JES_EtaIntercalibration_Stat111: 2.00170359e-02 + syst_JES_EtaIntercalibration_Stat112: 4.14776720e-02 + syst_JES_EtaIntercalibration_Stat113: 3.99150523e-02 + syst_JES_EtaIntercalibration_Stat114: 3.70284171e-02 + syst_JES_EtaIntercalibration_Stat115: 5.30591488e-02 + syst_JES_EtaIntercalibration_Stat116: 5.01111993e-02 + syst_JES_EtaIntercalibration_Stat117: 1.31405413e-02 + syst_JES_EtaIntercalibration_Stat118: 3.14222163e-02 + syst_JES_EtaIntercalibration_Stat119: 5.26959835e-02 + syst_JES_EtaIntercalibration_Stat12: 4.62828421e-04 + syst_JES_EtaIntercalibration_Stat120: 4.90170611e-02 + syst_JES_EtaIntercalibration_Stat121: 4.90258001e-02 + syst_JES_EtaIntercalibration_Stat122: 2.83209322e-02 + syst_JES_EtaIntercalibration_Stat123: 2.80162310e-02 + syst_JES_EtaIntercalibration_Stat124: 1.60839299e-02 + syst_JES_EtaIntercalibration_Stat125: 8.25773310e-03 + syst_JES_EtaIntercalibration_Stat126: 2.53495602e-03 + syst_JES_EtaIntercalibration_Stat127: 6.59218537e-04 + syst_JES_EtaIntercalibration_Stat128: 1.40005839e-02 + syst_JES_EtaIntercalibration_Stat129: 8.18342964e-02 + syst_JES_EtaIntercalibration_Stat13: 2.83556185e-04 + syst_JES_EtaIntercalibration_Stat130: 1.14916464e-01 + syst_JES_EtaIntercalibration_Stat131: 8.53519262e-02 + syst_JES_EtaIntercalibration_Stat132: 1.33759572e-01 + syst_JES_EtaIntercalibration_Stat133: 1.42708039e-01 + syst_JES_EtaIntercalibration_Stat134: 2.09224353e-01 + syst_JES_EtaIntercalibration_Stat135: 1.49095095e-01 + syst_JES_EtaIntercalibration_Stat136: 1.28873912e-01 + syst_JES_EtaIntercalibration_Stat137: 1.15975318e-01 + syst_JES_EtaIntercalibration_Stat138: 1.73551743e-01 + syst_JES_EtaIntercalibration_Stat139: 1.70184870e-01 + syst_JES_EtaIntercalibration_Stat14: 2.89634822e-04 + syst_JES_EtaIntercalibration_Stat140: 1.59802128e-01 + syst_JES_EtaIntercalibration_Stat141: 1.43500627e-01 + syst_JES_EtaIntercalibration_Stat142: 9.34580177e-02 + syst_JES_EtaIntercalibration_Stat143: 8.24152551e-02 + syst_JES_EtaIntercalibration_Stat144: 5.78471631e-02 + syst_JES_EtaIntercalibration_Stat145: 4.66766355e-03 + syst_JES_EtaIntercalibration_Stat146: 1.02688723e-02 + syst_JES_EtaIntercalibration_Stat147: 1.13201226e-02 + syst_JES_EtaIntercalibration_Stat148: 3.29174020e-02 + syst_JES_EtaIntercalibration_Stat149: 5.21059908e-02 + syst_JES_EtaIntercalibration_Stat15: 4.35323791e-04 + syst_JES_EtaIntercalibration_Stat150: 3.19434559e-02 + syst_JES_EtaIntercalibration_Stat151: 4.50759492e-02 + syst_JES_EtaIntercalibration_Stat152: 8.55010152e-02 + syst_JES_EtaIntercalibration_Stat153: 7.25502341e-02 + syst_JES_EtaIntercalibration_Stat154: 5.56400977e-02 + syst_JES_EtaIntercalibration_Stat155: 2.25408917e-02 + syst_JES_EtaIntercalibration_Stat156: 7.75220773e-02 + syst_JES_EtaIntercalibration_Stat157: 8.79976390e-02 + syst_JES_EtaIntercalibration_Stat158: 4.66271088e-02 + syst_JES_EtaIntercalibration_Stat159: 6.14346661e-02 + syst_JES_EtaIntercalibration_Stat16: 4.35323791e-04 + syst_JES_EtaIntercalibration_Stat160: 4.99647403e-02 + syst_JES_EtaIntercalibration_Stat161: 1.70575435e-02 + syst_JES_EtaIntercalibration_Stat162: 1.66008092e-02 + syst_JES_EtaIntercalibration_Stat163: 1.97966894e-03 + syst_JES_EtaIntercalibration_Stat164: 5.92407217e-03 + syst_JES_EtaIntercalibration_Stat165: 7.50622942e-03 + syst_JES_EtaIntercalibration_Stat166: 1.10931302e-02 + syst_JES_EtaIntercalibration_Stat167: 1.28788942e-02 + syst_JES_EtaIntercalibration_Stat168: 2.08737802e-02 + syst_JES_EtaIntercalibration_Stat169: 1.45113186e-02 + syst_JES_EtaIntercalibration_Stat17: 4.29861211e-04 + syst_JES_EtaIntercalibration_Stat170: 2.20453684e-02 + syst_JES_EtaIntercalibration_Stat171: 1.46643855e-02 + syst_JES_EtaIntercalibration_Stat172: 2.35882227e-02 + syst_JES_EtaIntercalibration_Stat173: 1.47636763e-02 + syst_JES_EtaIntercalibration_Stat174: 3.98154480e-02 + syst_JES_EtaIntercalibration_Stat175: 4.77698650e-02 + syst_JES_EtaIntercalibration_Stat176: 4.56493404e-02 + syst_JES_EtaIntercalibration_Stat177: 2.24398099e-02 + syst_JES_EtaIntercalibration_Stat178: 1.11075435e-02 + syst_JES_EtaIntercalibration_Stat179: 1.02316505e-02 + syst_JES_EtaIntercalibration_Stat18: 4.39341287e-04 + syst_JES_EtaIntercalibration_Stat180: 9.14470962e-03 + syst_JES_EtaIntercalibration_Stat181: 6.50535786e-03 + syst_JES_EtaIntercalibration_Stat182: 4.91913476e-03 + syst_JES_EtaIntercalibration_Stat183: 1.60325893e-03 + syst_JES_EtaIntercalibration_Stat184: 9.09166546e-03 + syst_JES_EtaIntercalibration_Stat185: 6.76066674e-03 + syst_JES_EtaIntercalibration_Stat186: 6.57143334e-03 + syst_JES_EtaIntercalibration_Stat187: 1.17497467e-02 + syst_JES_EtaIntercalibration_Stat188: 1.17869257e-02 + syst_JES_EtaIntercalibration_Stat189: 9.16999104e-03 + syst_JES_EtaIntercalibration_Stat19: 2.93959092e-04 + syst_JES_EtaIntercalibration_Stat190: 7.01629751e-03 + syst_JES_EtaIntercalibration_Stat191: 6.49683785e-03 + syst_JES_EtaIntercalibration_Stat192: 1.64633723e-02 + syst_JES_EtaIntercalibration_Stat193: 1.77927932e-02 + syst_JES_EtaIntercalibration_Stat194: 1.09054659e-02 + syst_JES_EtaIntercalibration_Stat195: 5.54206466e-03 + syst_JES_EtaIntercalibration_Stat196: 1.35142818e-03 + syst_JES_EtaIntercalibration_Stat197: 4.67457034e-03 + syst_JES_EtaIntercalibration_Stat198: 2.07891029e-03 + syst_JES_EtaIntercalibration_Stat199: 2.79374605e-03 + syst_JES_EtaIntercalibration_Stat2: 2.98116219e-04 + syst_JES_EtaIntercalibration_Stat20: 2.98116219e-04 + syst_JES_EtaIntercalibration_Stat200: 3.53944583e-04 + syst_JES_EtaIntercalibration_Stat201: 5.28542077e-03 + syst_JES_EtaIntercalibration_Stat202: 8.55612206e-03 + syst_JES_EtaIntercalibration_Stat203: 6.83516335e-03 + syst_JES_EtaIntercalibration_Stat204: 4.78369258e-03 + syst_JES_EtaIntercalibration_Stat205: 4.50446454e-03 + syst_JES_EtaIntercalibration_Stat206: 6.26037960e-03 + syst_JES_EtaIntercalibration_Stat207: 5.35717043e-03 + syst_JES_EtaIntercalibration_Stat208: 5.23455500e-03 + syst_JES_EtaIntercalibration_Stat209: 2.21958262e-03 + syst_JES_EtaIntercalibration_Stat21: 2.98116219e-04 + syst_JES_EtaIntercalibration_Stat210: 3.63521564e-03 + syst_JES_EtaIntercalibration_Stat211: 3.03660391e-03 + syst_JES_EtaIntercalibration_Stat212: 1.72034197e-03 + syst_JES_EtaIntercalibration_Stat213: 4.97075354e-04 + syst_JES_EtaIntercalibration_Stat214: 8.03575763e-04 + syst_JES_EtaIntercalibration_Stat215: 6.42401796e-04 + syst_JES_EtaIntercalibration_Stat216: 1.00476267e-03 + syst_JES_EtaIntercalibration_Stat217: 8.68277070e-04 + syst_JES_EtaIntercalibration_Stat218: 4.91772133e-04 + syst_JES_EtaIntercalibration_Stat219: 6.46593620e-04 + syst_JES_EtaIntercalibration_Stat22: 2.98116219e-04 + syst_JES_EtaIntercalibration_Stat220: 9.13483572e-04 + syst_JES_EtaIntercalibration_Stat221: 7.33869927e-04 + syst_JES_EtaIntercalibration_Stat222: 9.48013105e-04 + syst_JES_EtaIntercalibration_Stat223: 1.41366278e-03 + syst_JES_EtaIntercalibration_Stat224: 1.80978928e-03 + syst_JES_EtaIntercalibration_Stat225: 4.49350139e-04 + syst_JES_EtaIntercalibration_Stat226: 1.73378286e-03 + syst_JES_EtaIntercalibration_Stat227: 3.26855668e-04 + syst_JES_EtaIntercalibration_Stat228: 3.34684131e-04 + syst_JES_EtaIntercalibration_Stat229: 2.03256156e-04 + syst_JES_EtaIntercalibration_Stat23: 1.47045771e-03 + syst_JES_EtaIntercalibration_Stat230: 3.79091242e-04 + syst_JES_EtaIntercalibration_Stat231: 2.11396811e-04 + syst_JES_EtaIntercalibration_Stat232: 3.39396269e-04 + syst_JES_EtaIntercalibration_Stat233: 5.74319319e-04 + syst_JES_EtaIntercalibration_Stat234: 2.31644420e-04 + syst_JES_EtaIntercalibration_Stat235: 6.43106966e-04 + syst_JES_EtaIntercalibration_Stat236: 3.49874263e-04 + syst_JES_EtaIntercalibration_Stat237: 3.24592587e-04 + syst_JES_EtaIntercalibration_Stat238: 3.06601517e-04 + syst_JES_EtaIntercalibration_Stat239: 3.06601500e-04 + syst_JES_EtaIntercalibration_Stat24: 6.39753218e-04 + syst_JES_EtaIntercalibration_Stat240: 1.87754308e-04 + syst_JES_EtaIntercalibration_Stat241: 3.06672215e-04 + syst_JES_EtaIntercalibration_Stat242: 1.80739502e-04 + syst_JES_EtaIntercalibration_Stat243: 5.60537998e-04 + syst_JES_EtaIntercalibration_Stat244: 3.33564488e-04 + syst_JES_EtaIntercalibration_Stat245: 2.90751448e-04 + syst_JES_EtaIntercalibration_Stat25: 3.55617885e-04 + syst_JES_EtaIntercalibration_Stat26: 1.99327637e-03 + syst_JES_EtaIntercalibration_Stat27: 3.90125839e-04 + syst_JES_EtaIntercalibration_Stat28: 1.73741282e-03 + syst_JES_EtaIntercalibration_Stat29: 2.00181273e-03 + syst_JES_EtaIntercalibration_Stat3: 2.95364940e-04 + syst_JES_EtaIntercalibration_Stat30: 1.62160447e-03 + syst_JES_EtaIntercalibration_Stat31: 1.10751296e-04 + syst_JES_EtaIntercalibration_Stat32: 6.59258925e-04 + syst_JES_EtaIntercalibration_Stat33: 5.21034365e-04 + syst_JES_EtaIntercalibration_Stat34: 4.67647589e-04 + syst_JES_EtaIntercalibration_Stat35: 3.07463105e-04 + syst_JES_EtaIntercalibration_Stat36: 2.78916166e-04 + syst_JES_EtaIntercalibration_Stat37: 6.57439641e-04 + syst_JES_EtaIntercalibration_Stat38: 1.82362743e-03 + syst_JES_EtaIntercalibration_Stat39: 1.81497909e-03 + syst_JES_EtaIntercalibration_Stat4: 2.93327598e-04 + syst_JES_EtaIntercalibration_Stat40: 1.43767531e-03 + syst_JES_EtaIntercalibration_Stat41: 2.89724641e-04 + syst_JES_EtaIntercalibration_Stat42: 2.93959092e-04 + syst_JES_EtaIntercalibration_Stat43: 2.98116219e-04 + syst_JES_EtaIntercalibration_Stat44: 2.98116219e-04 + syst_JES_EtaIntercalibration_Stat45: 2.98116219e-04 + syst_JES_EtaIntercalibration_Stat46: 7.02741024e-04 + syst_JES_EtaIntercalibration_Stat47: 2.40014520e-03 + syst_JES_EtaIntercalibration_Stat48: 2.09892245e-03 + syst_JES_EtaIntercalibration_Stat49: 2.80606990e-04 + syst_JES_EtaIntercalibration_Stat5: 2.87937788e-04 + syst_JES_EtaIntercalibration_Stat50: 2.20380936e-04 + syst_JES_EtaIntercalibration_Stat51: 2.26319286e-03 + syst_JES_EtaIntercalibration_Stat52: 1.22240686e-03 + syst_JES_EtaIntercalibration_Stat53: 1.63356267e-03 + syst_JES_EtaIntercalibration_Stat54: 1.65114364e-04 + syst_JES_EtaIntercalibration_Stat55: 1.01039856e-03 + syst_JES_EtaIntercalibration_Stat56: 6.54548027e-04 + syst_JES_EtaIntercalibration_Stat57: 2.61815216e-04 + syst_JES_EtaIntercalibration_Stat58: 5.74078942e-04 + syst_JES_EtaIntercalibration_Stat59: 5.61627944e-04 + syst_JES_EtaIntercalibration_Stat6: 2.61139158e-04 + syst_JES_EtaIntercalibration_Stat60: 3.09905970e-04 + syst_JES_EtaIntercalibration_Stat61: 1.46213908e-03 + syst_JES_EtaIntercalibration_Stat62: 1.50981690e-03 + syst_JES_EtaIntercalibration_Stat63: 1.60290969e-03 + syst_JES_EtaIntercalibration_Stat64: 2.93327598e-04 + syst_JES_EtaIntercalibration_Stat65: 2.98116219e-04 + syst_JES_EtaIntercalibration_Stat66: 2.98116219e-04 + syst_JES_EtaIntercalibration_Stat67: 2.85507281e-04 + syst_JES_EtaIntercalibration_Stat68: 1.14318597e-04 + syst_JES_EtaIntercalibration_Stat69: 1.45554303e-03 + syst_JES_EtaIntercalibration_Stat7: 3.47037502e-04 + syst_JES_EtaIntercalibration_Stat70: 5.99861101e-04 + syst_JES_EtaIntercalibration_Stat71: 1.34798183e-03 + syst_JES_EtaIntercalibration_Stat72: 2.96739781e-03 + syst_JES_EtaIntercalibration_Stat73: 3.01822079e-03 + syst_JES_EtaIntercalibration_Stat74: 3.08945238e-03 + syst_JES_EtaIntercalibration_Stat75: 1.47789699e-04 + syst_JES_EtaIntercalibration_Stat76: 1.95965663e-03 + syst_JES_EtaIntercalibration_Stat77: 8.71056014e-04 + syst_JES_EtaIntercalibration_Stat78: 4.64057367e-04 + syst_JES_EtaIntercalibration_Stat79: 4.23356694e-04 + syst_JES_EtaIntercalibration_Stat8: 2.55992969e-04 + syst_JES_EtaIntercalibration_Stat80: 3.65106406e-03 + syst_JES_EtaIntercalibration_Stat81: 1.26611985e-03 + syst_JES_EtaIntercalibration_Stat82: 1.05957957e-03 + syst_JES_EtaIntercalibration_Stat83: 2.03577331e-03 + syst_JES_EtaIntercalibration_Stat84: 4.22993682e-04 + syst_JES_EtaIntercalibration_Stat85: 4.76369234e-04 + syst_JES_EtaIntercalibration_Stat86: 1.78152409e-04 + syst_JES_EtaIntercalibration_Stat87: 1.82558155e-04 + syst_JES_EtaIntercalibration_Stat88: 5.61906836e-04 + syst_JES_EtaIntercalibration_Stat89: 3.99834459e-04 + syst_JES_EtaIntercalibration_Stat9: 4.70174869e-04 + syst_JES_EtaIntercalibration_Stat90: 1.49834640e-03 + syst_JES_EtaIntercalibration_Stat91: 2.55555136e-03 + syst_JES_EtaIntercalibration_Stat92: 2.38293574e-03 + syst_JES_EtaIntercalibration_Stat93: 4.67738471e-03 + syst_JES_EtaIntercalibration_Stat94: 4.62753196e-03 + syst_JES_EtaIntercalibration_Stat95: 5.38408339e-03 + syst_JES_EtaIntercalibration_Stat96: 5.74607090e-03 + syst_JES_EtaIntercalibration_Stat97: 4.34866440e-03 + syst_JES_EtaIntercalibration_Stat98: 1.10958558e-03 + syst_JES_EtaIntercalibration_Stat99: 2.52740062e-03 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.51720368e-02 + syst_JES_Flavour_Comp: 2.65191077e-01 + syst_JES_Flavour_Response: 3.90780004e+00 + syst_JES_Gjet_Generator: 3.36000119e+00 + syst_JES_Gjet_OOC: 1.99360546e+00 + syst_JES_Gjet_Purity: 6.36411062e-01 + syst_JES_Gjet_Stat1: 2.51173234e-03 + syst_JES_Gjet_Stat10: 2.08625358e-01 + syst_JES_Gjet_Stat11: 1.55507256e-01 + syst_JES_Gjet_Stat12: 1.23170615e-02 + syst_JES_Gjet_Stat13: 3.49352029e-02 + syst_JES_Gjet_Stat14: 6.12256490e-03 + syst_JES_Gjet_Stat15: 2.33166100e-03 + syst_JES_Gjet_Stat2: 1.08362721e-03 + syst_JES_Gjet_Stat3: 1.40504321e-03 + syst_JES_Gjet_Stat4: 7.93344878e-03 + syst_JES_Gjet_Stat5: 7.84504194e-03 + syst_JES_Gjet_Stat6: 4.15284438e-02 + syst_JES_Gjet_Stat7: 8.54675416e-02 + syst_JES_Gjet_Stat8: 7.91441411e-02 + syst_JES_Gjet_Stat9: 1.65434821e-01 + syst_JES_Gjet_Veto: 7.96588380e-01 + syst_JES_Gjet_dPhi: 2.20624948e-01 + syst_JES_LArESZee: 3.36651671e+00 + syst_JES_LArEsmear: 2.92516713e-01 + syst_JES_LAr_JVT: 4.20351444e-01 + syst_JES_MJB_Alpha: 8.58166452e-03 + syst_JES_MJB_Asym: 1.79976748e-02 + syst_JES_MJB_Beta: 3.74127705e-03 + syst_JES_MJB_Fragmentation: 2.19899981e-02 + syst_JES_MJB_Stat1: 7.84380084e-03 + syst_JES_MJB_Stat10: 3.06460666e-04 + syst_JES_MJB_Stat11: 3.06601647e-04 + syst_JES_MJB_Stat12: 2.56558234e-04 + syst_JES_MJB_Stat13: 3.06742938e-04 + syst_JES_MJB_Stat14: 3.51716633e-04 + syst_JES_MJB_Stat15: 1.87754308e-04 + syst_JES_MJB_Stat16: 3.06601500e-04 + syst_JES_MJB_Stat2: 8.66729013e-03 + syst_JES_MJB_Stat3: 6.31906005e-03 + syst_JES_MJB_Stat4: 2.28744109e-03 + syst_JES_MJB_Stat5: 4.81574013e-04 + syst_JES_MJB_Stat6: 2.61409463e-04 + syst_JES_MJB_Stat7: 1.66276871e-04 + syst_JES_MJB_Stat8: 3.41251945e-04 + syst_JES_MJB_Stat9: 4.37027481e-04 + syst_JES_MJB_Threshold: 2.06349576e-02 + syst_JES_Pileup_MuOffset: 2.84951436e-02 + syst_JES_Pileup_NPVOffset: 1.45077222e-01 + syst_JES_Pileup_Pt_term: 7.56678232e-01 + syst_JES_Pileup_Rho_topology: 1.16443447e+00 + syst_JES_PunchThrough_MC15: 9.82075970e-03 + syst_JES_SingleParticle_HighPt: 3.61320052e-04 + syst_JES_Zjet_MC: 3.04162502e+00 + syst_JES_Zjet_MuScale: 2.11595859e-01 + syst_JES_Zjet_MuSmearID: 2.33270803e-02 + syst_JES_Zjet_MuSmearMS: 3.23299811e-01 + syst_JES_Zjet_OOC: 1.05161476e+00 + syst_JES_Zjet_Stat1: 1.05131485e-02 + syst_JES_Zjet_Stat10: 3.57838102e-01 + syst_JES_Zjet_Stat11: 4.74446225e-01 + syst_JES_Zjet_Stat12: 3.53287503e-01 + syst_JES_Zjet_Stat13: 3.33052203e-02 + syst_JES_Zjet_Stat2: 5.54689210e-03 + syst_JES_Zjet_Stat3: 6.46977109e-03 + syst_JES_Zjet_Stat4: 6.15831964e-03 + syst_JES_Zjet_Stat5: 7.06029858e-03 + syst_JES_Zjet_Stat6: 1.15229578e-02 + syst_JES_Zjet_Stat7: 1.86390614e-02 + syst_JES_Zjet_Stat8: 4.67468705e-02 + syst_JES_Zjet_Stat9: 1.57801481e-01 + syst_JES_Zjet_Veto: 2.22492848e-01 + syst_JES_Zjet_dPhi: 2.10187648e-01 syst_PRW: 0.0 syst_Unfolding_bias: 0.0 - syst_cleaning: 1.4791713896638212 + syst_cleaning: 1.47917139e+00 syst_lumi: 3.555 - stat: 0.372 - syst_JER_CROSS_CALIB_FORWARD: 1.604e-06 - syst_JER_NOISE_FORWARD: 1.2656e-06 - syst_JER_NP0: 0.26390079101813996 - syst_JER_NP1: 0.0616313586476073 - syst_JER_NP2: 0.02993755501038787 - syst_JER_NP3: 0.10853551711306304 - syst_JER_NP4: 0.0539780999572975 + syst_JER_CROSS_CALIB_FORWARD: 1.60400000e-06 + syst_JER_NOISE_FORWARD: 1.26560000e-06 + syst_JER_NP0: 2.63900791e-01 + syst_JER_NP1: 6.16313586e-02 + syst_JER_NP2: 2.99375550e-02 + syst_JER_NP3: 1.08535517e-01 + syst_JER_NP4: 5.39781000e-02 syst_JER_NP5: 0.0 syst_JER_NP6: 0.0 syst_JER_NP7: 0.0 - syst_JER_NP8: 0.04237644953272985 - syst_JES_EtaIntercalibration_Modelling: 0.941258629442514 - syst_JES_EtaIntercalibration_NonClosure: 0.11867654317513635 - syst_JES_EtaIntercalibration_Stat0: 0.0001924178972964833 - syst_JES_EtaIntercalibration_Stat1: 0.0001924178972964833 - syst_JES_EtaIntercalibration_Stat10: 0.00027959180960822154 - syst_JES_EtaIntercalibration_Stat100: 0.0012042453030840518 - syst_JES_EtaIntercalibration_Stat101: 0.0013579773304440688 - syst_JES_EtaIntercalibration_Stat102: 0.001535458276867203 - syst_JES_EtaIntercalibration_Stat103: 0.00023408470155052854 - syst_JES_EtaIntercalibration_Stat104: 0.00038273507808927055 - syst_JES_EtaIntercalibration_Stat105: 0.0005107617711093401 - syst_JES_EtaIntercalibration_Stat106: 8.158601760565348e-05 - syst_JES_EtaIntercalibration_Stat107: 0.00011768314311223364 - syst_JES_EtaIntercalibration_Stat108: 0.00011756294856373754 - syst_JES_EtaIntercalibration_Stat109: 0.0012568039733785057 - syst_JES_EtaIntercalibration_Stat11: 0.00028060408777314704 - syst_JES_EtaIntercalibration_Stat110: 0.0016779558896168874 - syst_JES_EtaIntercalibration_Stat111: 0.0035674563417090327 - syst_JES_EtaIntercalibration_Stat112: 0.006913091421354125 - syst_JES_EtaIntercalibration_Stat113: 0.006168337863638794 - syst_JES_EtaIntercalibration_Stat114: 0.00554846744606112 - syst_JES_EtaIntercalibration_Stat115: 0.009319782870324823 - syst_JES_EtaIntercalibration_Stat116: 0.010265448979465047 - syst_JES_EtaIntercalibration_Stat117: 0.006156094114777648 - syst_JES_EtaIntercalibration_Stat118: 0.007167728841829885 - syst_JES_EtaIntercalibration_Stat119: 0.011380422520715123 - syst_JES_EtaIntercalibration_Stat12: 0.00046045167246411435 - syst_JES_EtaIntercalibration_Stat120: 0.012692239636880483 - syst_JES_EtaIntercalibration_Stat121: 0.011871028725430664 - syst_JES_EtaIntercalibration_Stat122: 0.007139260886114192 - syst_JES_EtaIntercalibration_Stat123: 0.005861956755214081 - syst_JES_EtaIntercalibration_Stat124: 0.0038104313076081035 - syst_JES_EtaIntercalibration_Stat125: 0.001838427444856065 - syst_JES_EtaIntercalibration_Stat126: 0.000956269819402453 - syst_JES_EtaIntercalibration_Stat127: 0.00010374984337337575 - syst_JES_EtaIntercalibration_Stat128: 0.003963232613662741 - syst_JES_EtaIntercalibration_Stat129: 0.01644918000995794 - syst_JES_EtaIntercalibration_Stat13: 0.0001914562908342267 - syst_JES_EtaIntercalibration_Stat130: 0.024694780825105532 - syst_JES_EtaIntercalibration_Stat131: 0.020978519371013773 - syst_JES_EtaIntercalibration_Stat132: 0.03474231533735194 - syst_JES_EtaIntercalibration_Stat133: 0.03814566915129423 - syst_JES_EtaIntercalibration_Stat134: 0.06642007377291899 - syst_JES_EtaIntercalibration_Stat135: 0.04166724702929148 - syst_JES_EtaIntercalibration_Stat136: 0.037662418828322754 - syst_JES_EtaIntercalibration_Stat137: 0.03289320104520081 - syst_JES_EtaIntercalibration_Stat138: 0.04666001794898926 - syst_JES_EtaIntercalibration_Stat139: 0.0504566653178745 - syst_JES_EtaIntercalibration_Stat14: 0.0001920149089914635 - syst_JES_EtaIntercalibration_Stat140: 0.05110375206381621 - syst_JES_EtaIntercalibration_Stat141: 0.03873365590800848 - syst_JES_EtaIntercalibration_Stat142: 0.026089520405710793 - syst_JES_EtaIntercalibration_Stat143: 0.02337684912472166 - syst_JES_EtaIntercalibration_Stat144: 0.016675121438838158 - syst_JES_EtaIntercalibration_Stat145: 0.0008928626364116711 - syst_JES_EtaIntercalibration_Stat146: 0.005374998046511273 - syst_JES_EtaIntercalibration_Stat147: 0.0054039902486496035 - syst_JES_EtaIntercalibration_Stat148: 0.013635129152303619 - syst_JES_EtaIntercalibration_Stat149: 0.01611750094617649 - syst_JES_EtaIntercalibration_Stat15: 0.00014134417886846277 - syst_JES_EtaIntercalibration_Stat150: 0.020094547593812608 - syst_JES_EtaIntercalibration_Stat151: 0.025965456899504 - syst_JES_EtaIntercalibration_Stat152: 0.0410363598623221 - syst_JES_EtaIntercalibration_Stat153: 0.033757831683921886 - syst_JES_EtaIntercalibration_Stat154: 0.026231840861822866 - syst_JES_EtaIntercalibration_Stat155: 0.016158884955342682 - syst_JES_EtaIntercalibration_Stat156: 0.03168070509000707 - syst_JES_EtaIntercalibration_Stat157: 0.035361183079048696 - syst_JES_EtaIntercalibration_Stat158: 0.03396806441350463 - syst_JES_EtaIntercalibration_Stat159: 0.02798941764310219 - syst_JES_EtaIntercalibration_Stat16: 0.00014134417886846277 - syst_JES_EtaIntercalibration_Stat160: 0.021263621516571442 - syst_JES_EtaIntercalibration_Stat161: 0.011254334187325344 - syst_JES_EtaIntercalibration_Stat162: 0.005893999236511657 - syst_JES_EtaIntercalibration_Stat163: 0.0003158004235272651 - syst_JES_EtaIntercalibration_Stat164: 0.0026363932573688622 - syst_JES_EtaIntercalibration_Stat165: 0.005580061331876202 - syst_JES_EtaIntercalibration_Stat166: 0.007838094730226218 - syst_JES_EtaIntercalibration_Stat167: 0.008497131162927874 - syst_JES_EtaIntercalibration_Stat168: 0.012767901579742853 - syst_JES_EtaIntercalibration_Stat169: 0.018083516990618834 - syst_JES_EtaIntercalibration_Stat17: 0.0001430335529692247 - syst_JES_EtaIntercalibration_Stat170: 0.02003834012586871 - syst_JES_EtaIntercalibration_Stat171: 0.01805511584011579 - syst_JES_EtaIntercalibration_Stat172: 0.01877304450535395 - syst_JES_EtaIntercalibration_Stat173: 0.015065974910373375 - syst_JES_EtaIntercalibration_Stat174: 0.028295375947316907 - syst_JES_EtaIntercalibration_Stat175: 0.029494122719619924 - syst_JES_EtaIntercalibration_Stat176: 0.025110401729163952 - syst_JES_EtaIntercalibration_Stat177: 0.012951049185297693 - syst_JES_EtaIntercalibration_Stat178: 0.007533088261131687 - syst_JES_EtaIntercalibration_Stat179: 0.0061226348903066245 - syst_JES_EtaIntercalibration_Stat18: 0.00014169644340984708 - syst_JES_EtaIntercalibration_Stat180: 0.0042813579840396436 - syst_JES_EtaIntercalibration_Stat181: 0.002066215914250009 - syst_JES_EtaIntercalibration_Stat182: 0.0009337210115982181 - syst_JES_EtaIntercalibration_Stat183: 0.0036884889521320244 - syst_JES_EtaIntercalibration_Stat184: 0.004279617593897847 - syst_JES_EtaIntercalibration_Stat185: 0.0038790580042066913 - syst_JES_EtaIntercalibration_Stat186: 0.009451298574799127 - syst_JES_EtaIntercalibration_Stat187: 0.011773874978103003 - syst_JES_EtaIntercalibration_Stat188: 0.006829265260626505 - syst_JES_EtaIntercalibration_Stat189: 0.008278010782790755 - syst_JES_EtaIntercalibration_Stat19: 0.0001922411612402505 - syst_JES_EtaIntercalibration_Stat190: 0.005713482388176234 - syst_JES_EtaIntercalibration_Stat191: 0.011097644648753175 - syst_JES_EtaIntercalibration_Stat192: 0.020079907245801706 - syst_JES_EtaIntercalibration_Stat193: 0.013961306412725137 - syst_JES_EtaIntercalibration_Stat194: 0.007064466858864865 - syst_JES_EtaIntercalibration_Stat195: 0.003517390332334471 - syst_JES_EtaIntercalibration_Stat196: 0.006020903005363896 - syst_JES_EtaIntercalibration_Stat197: 0.002311428129966407 - syst_JES_EtaIntercalibration_Stat198: 0.0009144936741169946 - syst_JES_EtaIntercalibration_Stat199: 0.0019324983829229973 - syst_JES_EtaIntercalibration_Stat2: 0.0001924178972964833 - syst_JES_EtaIntercalibration_Stat20: 0.0001924178972964833 - syst_JES_EtaIntercalibration_Stat200: 0.001737246959991584 - syst_JES_EtaIntercalibration_Stat201: 0.0032765121699758724 - syst_JES_EtaIntercalibration_Stat202: 0.004677645641773221 - syst_JES_EtaIntercalibration_Stat203: 0.004862951033066238 - syst_JES_EtaIntercalibration_Stat204: 0.004765376823242838 - syst_JES_EtaIntercalibration_Stat205: 0.0027418797840167972 - syst_JES_EtaIntercalibration_Stat206: 0.0045882094546783716 - syst_JES_EtaIntercalibration_Stat207: 0.003315054118336532 - syst_JES_EtaIntercalibration_Stat208: 0.0037158440494724746 - syst_JES_EtaIntercalibration_Stat209: 0.001469204315267281 - syst_JES_EtaIntercalibration_Stat21: 0.0001924178972964833 - syst_JES_EtaIntercalibration_Stat210: 0.001049824166229755 - syst_JES_EtaIntercalibration_Stat211: 0.000970777312260644 - syst_JES_EtaIntercalibration_Stat212: 0.0007851779718637043 - syst_JES_EtaIntercalibration_Stat213: 0.00024936407118909495 - syst_JES_EtaIntercalibration_Stat214: 0.001320488457920023 - syst_JES_EtaIntercalibration_Stat215: 0.0008525911256282227 - syst_JES_EtaIntercalibration_Stat216: 0.0010560313773747445 - syst_JES_EtaIntercalibration_Stat217: 0.0009986138931075191 - syst_JES_EtaIntercalibration_Stat218: 0.0009395899251801288 - syst_JES_EtaIntercalibration_Stat219: 0.001007649825088061 - syst_JES_EtaIntercalibration_Stat22: 0.0001924178972964833 - syst_JES_EtaIntercalibration_Stat220: 0.0005608114745447952 - syst_JES_EtaIntercalibration_Stat221: 0.0002583353779552027 - syst_JES_EtaIntercalibration_Stat222: 0.0006101812585617491 - syst_JES_EtaIntercalibration_Stat223: 0.0008507879568376599 - syst_JES_EtaIntercalibration_Stat224: 0.0004995333422305262 - syst_JES_EtaIntercalibration_Stat225: 0.00023885302489187784 - syst_JES_EtaIntercalibration_Stat226: 0.00043894006453134654 - syst_JES_EtaIntercalibration_Stat227: 0.00012407727299953042 - syst_JES_EtaIntercalibration_Stat228: 0.00014520339760143355 - syst_JES_EtaIntercalibration_Stat229: 0.00012118412770127944 - syst_JES_EtaIntercalibration_Stat23: 0.00042037745741178845 - syst_JES_EtaIntercalibration_Stat230: 0.0003405825086524556 - syst_JES_EtaIntercalibration_Stat231: 0.00013634386617417007 - syst_JES_EtaIntercalibration_Stat232: 0.0002233494795158475 - syst_JES_EtaIntercalibration_Stat233: 8.998911864775652e-05 - syst_JES_EtaIntercalibration_Stat234: 0.000267290444788062 - syst_JES_EtaIntercalibration_Stat235: 0.0003530682528917036 - syst_JES_EtaIntercalibration_Stat236: 0.0003784531014537997 - syst_JES_EtaIntercalibration_Stat237: 0.0002843438390399905 - syst_JES_EtaIntercalibration_Stat238: 0.00045530608111467167 - syst_JES_EtaIntercalibration_Stat239: 0.00045516463779603976 - syst_JES_EtaIntercalibration_Stat24: 0.00017105516558993476 - syst_JES_EtaIntercalibration_Stat240: 0.00027886018001858925 - syst_JES_EtaIntercalibration_Stat241: 0.00045516463779603976 - syst_JES_EtaIntercalibration_Stat242: 0.00011499085311434013 - syst_JES_EtaIntercalibration_Stat243: 0.0005396859364482273 - syst_JES_EtaIntercalibration_Stat244: 0.0002477014735523388 - syst_JES_EtaIntercalibration_Stat245: 0.00021730277051846346 - syst_JES_EtaIntercalibration_Stat25: 0.0008818284002571022 - syst_JES_EtaIntercalibration_Stat26: 0.0002854491779634336 - syst_JES_EtaIntercalibration_Stat27: 0.00042053777475989005 - syst_JES_EtaIntercalibration_Stat28: 0.00034991834404615025 - syst_JES_EtaIntercalibration_Stat29: 0.0002819756195134607 - syst_JES_EtaIntercalibration_Stat3: 0.00019233305384150693 - syst_JES_EtaIntercalibration_Stat30: 0.0002995807195064462 - syst_JES_EtaIntercalibration_Stat31: 0.000526054235868318 - syst_JES_EtaIntercalibration_Stat32: 0.00011553796786662815 - syst_JES_EtaIntercalibration_Stat33: 9.30394077797145e-05 - syst_JES_EtaIntercalibration_Stat34: 0.00034045035864278367 - syst_JES_EtaIntercalibration_Stat35: 0.0002946807181934373 - syst_JES_EtaIntercalibration_Stat36: 9.280567156698991e-05 - syst_JES_EtaIntercalibration_Stat37: 0.000247316956960092 - syst_JES_EtaIntercalibration_Stat38: 0.00030900933238334406 - syst_JES_EtaIntercalibration_Stat39: 0.00031039115241900827 - syst_JES_EtaIntercalibration_Stat4: 0.0001922340934902027 - syst_JES_EtaIntercalibration_Stat40: 0.00031183425854129626 - syst_JES_EtaIntercalibration_Stat41: 0.0001920503915642975 - syst_JES_EtaIntercalibration_Stat42: 0.0001922411612402505 - syst_JES_EtaIntercalibration_Stat43: 0.0001924178972964833 - syst_JES_EtaIntercalibration_Stat44: 0.0001924178972964833 - syst_JES_EtaIntercalibration_Stat45: 0.0001924178972964833 - syst_JES_EtaIntercalibration_Stat46: 0.00024322896106343913 - syst_JES_EtaIntercalibration_Stat47: 0.0003872914664693763 - syst_JES_EtaIntercalibration_Stat48: 0.00023372879048161782 - syst_JES_EtaIntercalibration_Stat49: 0.0007293442562158148 - syst_JES_EtaIntercalibration_Stat5: 0.00019198657680942173 - syst_JES_EtaIntercalibration_Stat50: 9.68118420095393e-05 - syst_JES_EtaIntercalibration_Stat51: 0.000417519421703949 - syst_JES_EtaIntercalibration_Stat52: 0.0001717055348554612 - syst_JES_EtaIntercalibration_Stat53: 0.0004410791765658406 - syst_JES_EtaIntercalibration_Stat54: 6.818279979584294e-05 - syst_JES_EtaIntercalibration_Stat55: 0.00040392960710995175 - syst_JES_EtaIntercalibration_Stat56: 0.00017055369008027942 - syst_JES_EtaIntercalibration_Stat57: 0.00035339765958584106 - syst_JES_EtaIntercalibration_Stat58: 0.00017975833583105402 - syst_JES_EtaIntercalibration_Stat59: 8.575058500091998e-05 - syst_JES_EtaIntercalibration_Stat6: 0.00026992879630561835 - syst_JES_EtaIntercalibration_Stat60: 0.00013132328611103214 - syst_JES_EtaIntercalibration_Stat61: 0.00025784381300847614 - syst_JES_EtaIntercalibration_Stat62: 0.0003307226027957569 - syst_JES_EtaIntercalibration_Stat63: 0.00028823549174242924 - syst_JES_EtaIntercalibration_Stat64: 0.00019219875669472994 - syst_JES_EtaIntercalibration_Stat65: 0.0001924178972964833 - syst_JES_EtaIntercalibration_Stat66: 0.0001924178972964833 - syst_JES_EtaIntercalibration_Stat67: 0.00019169722454954845 - syst_JES_EtaIntercalibration_Stat68: 1.1362811920006717e-05 - syst_JES_EtaIntercalibration_Stat69: 0.0003514356522537234 - syst_JES_EtaIntercalibration_Stat7: 0.00025930235609226537 - syst_JES_EtaIntercalibration_Stat70: 0.00012950212044596026 - syst_JES_EtaIntercalibration_Stat71: 0.0004581722663747774 - syst_JES_EtaIntercalibration_Stat72: 0.0013175024354816199 - syst_JES_EtaIntercalibration_Stat73: 0.00020421670524224995 - syst_JES_EtaIntercalibration_Stat74: 0.0005417950996456133 - syst_JES_EtaIntercalibration_Stat75: 0.0001019650296670383 - syst_JES_EtaIntercalibration_Stat76: 0.00014592908277653223 - syst_JES_EtaIntercalibration_Stat77: 0.00012491824326334405 - syst_JES_EtaIntercalibration_Stat78: 0.00011294399795916559 - syst_JES_EtaIntercalibration_Stat79: 0.00018492305068595422 - syst_JES_EtaIntercalibration_Stat8: 0.0002456775143862376 - syst_JES_EtaIntercalibration_Stat80: 0.0007126384128714927 - syst_JES_EtaIntercalibration_Stat81: 0.0010365049674265917 - syst_JES_EtaIntercalibration_Stat82: 0.00011760257905335239 - syst_JES_EtaIntercalibration_Stat83: 0.000230058666430978 - syst_JES_EtaIntercalibration_Stat84: 0.0001283852216100825 - syst_JES_EtaIntercalibration_Stat85: 8.358332828979712e-05 - syst_JES_EtaIntercalibration_Stat86: 0.00011768248528323013 - syst_JES_EtaIntercalibration_Stat87: 0.00011783141643891072 - syst_JES_EtaIntercalibration_Stat88: 9.165475116362967e-05 - syst_JES_EtaIntercalibration_Stat89: 0.00011674386450687676 - syst_JES_EtaIntercalibration_Stat9: 0.00043635417667303245 - syst_JES_EtaIntercalibration_Stat90: 0.00014054346969888 - syst_JES_EtaIntercalibration_Stat91: 0.0002342459670410571 - syst_JES_EtaIntercalibration_Stat92: 3.4456521516252916e-05 - syst_JES_EtaIntercalibration_Stat93: 0.00015669216062075346 - syst_JES_EtaIntercalibration_Stat94: 0.0007070133426605187 - syst_JES_EtaIntercalibration_Stat95: 0.00024755785323838953 - syst_JES_EtaIntercalibration_Stat96: 0.00015978585254959214 - syst_JES_EtaIntercalibration_Stat97: 0.00013703465401131206 - syst_JES_EtaIntercalibration_Stat98: 0.00018133523430376129 - syst_JES_EtaIntercalibration_Stat99: 0.0007669835771872825 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.006927358425114151 - syst_JES_Flavour_Comp: 0.1681378303654475 - syst_JES_Flavour_Response: 1.5524355059067672 - syst_JES_Gjet_Generator: 1.439104843296693 - syst_JES_Gjet_OOC: 0.9072703717745886 - syst_JES_Gjet_Purity: 0.2872371494079414 - syst_JES_Gjet_Stat1: 0.0010227947203618134 - syst_JES_Gjet_Stat10: 0.09788249932955329 - syst_JES_Gjet_Stat11: 0.11627231689013512 - syst_JES_Gjet_Stat12: 0.0558248822211028 - syst_JES_Gjet_Stat13: 0.017729102487153713 - syst_JES_Gjet_Stat14: 0.012738600315576276 - syst_JES_Gjet_Stat15: 0.002527642638408365 - syst_JES_Gjet_Stat2: 0.001445042172394979 - syst_JES_Gjet_Stat3: 0.0011772055567317035 - syst_JES_Gjet_Stat4: 0.003414189861445904 - syst_JES_Gjet_Stat5: 0.003666721253381555 - syst_JES_Gjet_Stat6: 0.010497000095265314 - syst_JES_Gjet_Stat7: 0.021773635433707434 - syst_JES_Gjet_Stat8: 0.022104890861526554 - syst_JES_Gjet_Stat9: 0.05113457832034991 - syst_JES_Gjet_Veto: 0.3935183699651136 - syst_JES_Gjet_dPhi: 0.07047078171128798 - syst_JES_LArESZee: 1.616039603475113 - syst_JES_LArEsmear: 0.13581492949966875 - syst_JES_LAr_JVT: 0.19167746346401812 - syst_JES_MJB_Alpha: 0.004123280581042236 - syst_JES_MJB_Asym: 0.0023142955724528794 - syst_JES_MJB_Beta: 0.0019088095426207403 - syst_JES_MJB_Fragmentation: 0.026111587466104008 - syst_JES_MJB_Stat1: 0.0028861865441270423 - syst_JES_MJB_Stat10: 0.0004363693275197055 - syst_JES_MJB_Stat11: 0.0004351539842400618 - syst_JES_MJB_Stat12: 0.0002386460388839505 - syst_JES_MJB_Stat13: 0.0004347052794710457 - syst_JES_MJB_Stat14: 0.0001799366935202489 - syst_JES_MJB_Stat15: 0.0002787735774782108 - syst_JES_MJB_Stat16: 0.00045523534572789934 - syst_JES_MJB_Stat2: 0.0030779873294086188 - syst_JES_MJB_Stat3: 0.0017941939046546781 - syst_JES_MJB_Stat4: 0.0012420573940039967 - syst_JES_MJB_Stat5: 0.0007052476214068361 - syst_JES_MJB_Stat6: 0.00014370490701433964 - syst_JES_MJB_Stat7: 0.0002851034730949581 - syst_JES_MJB_Stat8: 0.0005424750673533301 - syst_JES_MJB_Stat9: 0.00027479625179394274 - syst_JES_MJB_Threshold: 0.004541996697488892 - syst_JES_Pileup_MuOffset: 0.020041399420948628 - syst_JES_Pileup_NPVOffset: 0.07200369504407396 - syst_JES_Pileup_Pt_term: 0.29452851729501506 - syst_JES_Pileup_Rho_topology: 0.4999833097214346 - syst_JES_PunchThrough_MC15: 0.006408786624627161 - syst_JES_SingleParticle_HighPt: 0.0002457167220601805 - syst_JES_Zjet_MC: 1.3263204854031319 - syst_JES_Zjet_MuScale: 0.0798487612615249 - syst_JES_Zjet_MuSmearID: 0.011565612867461888 - syst_JES_Zjet_MuSmearMS: 0.16504117668024545 - syst_JES_Zjet_OOC: 0.4711042427106765 - syst_JES_Zjet_Stat1: 0.003991685953328493 - syst_JES_Zjet_Stat10: 0.1106411744107952 - syst_JES_Zjet_Stat11: 0.18775384816296042 - syst_JES_Zjet_Stat12: 0.29416704438124947 - syst_JES_Zjet_Stat13: 0.021702748097879216 - syst_JES_Zjet_Stat2: 0.0013261857939218021 - syst_JES_Zjet_Stat3: 0.0023681391259805663 - syst_JES_Zjet_Stat4: 0.0020989398466845113 - syst_JES_Zjet_Stat5: 0.0023954832513503406 - syst_JES_Zjet_Stat6: 0.006443808093821541 - syst_JES_Zjet_Stat7: 0.007205332244248005 - syst_JES_Zjet_Stat8: 0.010796964700785124 - syst_JES_Zjet_Stat9: 0.03826579408231325 - syst_JES_Zjet_Veto: 0.08780201364433506 - syst_JES_Zjet_dPhi: 0.07707758558751045 + syst_JER_NP8: 4.23764495e-02 + syst_JES_EtaIntercalibration_Modelling: 9.41258629e-01 + syst_JES_EtaIntercalibration_NonClosure: 1.18676543e-01 + syst_JES_EtaIntercalibration_Stat0: 1.92417897e-04 + syst_JES_EtaIntercalibration_Stat1: 1.92417897e-04 + syst_JES_EtaIntercalibration_Stat10: 2.79591810e-04 + syst_JES_EtaIntercalibration_Stat100: 1.20424530e-03 + syst_JES_EtaIntercalibration_Stat101: 1.35797733e-03 + syst_JES_EtaIntercalibration_Stat102: 1.53545828e-03 + syst_JES_EtaIntercalibration_Stat103: 2.34084702e-04 + syst_JES_EtaIntercalibration_Stat104: 3.82735078e-04 + syst_JES_EtaIntercalibration_Stat105: 5.10761771e-04 + syst_JES_EtaIntercalibration_Stat106: 8.15860176e-05 + syst_JES_EtaIntercalibration_Stat107: 1.17683143e-04 + syst_JES_EtaIntercalibration_Stat108: 1.17562949e-04 + syst_JES_EtaIntercalibration_Stat109: 1.25680397e-03 + syst_JES_EtaIntercalibration_Stat11: 2.80604088e-04 + syst_JES_EtaIntercalibration_Stat110: 1.67795589e-03 + syst_JES_EtaIntercalibration_Stat111: 3.56745634e-03 + syst_JES_EtaIntercalibration_Stat112: 6.91309142e-03 + syst_JES_EtaIntercalibration_Stat113: 6.16833786e-03 + syst_JES_EtaIntercalibration_Stat114: 5.54846745e-03 + syst_JES_EtaIntercalibration_Stat115: 9.31978287e-03 + syst_JES_EtaIntercalibration_Stat116: 1.02654490e-02 + syst_JES_EtaIntercalibration_Stat117: 6.15609411e-03 + syst_JES_EtaIntercalibration_Stat118: 7.16772884e-03 + syst_JES_EtaIntercalibration_Stat119: 1.13804225e-02 + syst_JES_EtaIntercalibration_Stat12: 4.60451672e-04 + syst_JES_EtaIntercalibration_Stat120: 1.26922396e-02 + syst_JES_EtaIntercalibration_Stat121: 1.18710287e-02 + syst_JES_EtaIntercalibration_Stat122: 7.13926089e-03 + syst_JES_EtaIntercalibration_Stat123: 5.86195676e-03 + syst_JES_EtaIntercalibration_Stat124: 3.81043131e-03 + syst_JES_EtaIntercalibration_Stat125: 1.83842744e-03 + syst_JES_EtaIntercalibration_Stat126: 9.56269819e-04 + syst_JES_EtaIntercalibration_Stat127: 1.03749843e-04 + syst_JES_EtaIntercalibration_Stat128: 3.96323261e-03 + syst_JES_EtaIntercalibration_Stat129: 1.64491800e-02 + syst_JES_EtaIntercalibration_Stat13: 1.91456291e-04 + syst_JES_EtaIntercalibration_Stat130: 2.46947808e-02 + syst_JES_EtaIntercalibration_Stat131: 2.09785194e-02 + syst_JES_EtaIntercalibration_Stat132: 3.47423153e-02 + syst_JES_EtaIntercalibration_Stat133: 3.81456692e-02 + syst_JES_EtaIntercalibration_Stat134: 6.64200738e-02 + syst_JES_EtaIntercalibration_Stat135: 4.16672470e-02 + syst_JES_EtaIntercalibration_Stat136: 3.76624188e-02 + syst_JES_EtaIntercalibration_Stat137: 3.28932010e-02 + syst_JES_EtaIntercalibration_Stat138: 4.66600179e-02 + syst_JES_EtaIntercalibration_Stat139: 5.04566653e-02 + syst_JES_EtaIntercalibration_Stat14: 1.92014909e-04 + syst_JES_EtaIntercalibration_Stat140: 5.11037521e-02 + syst_JES_EtaIntercalibration_Stat141: 3.87336559e-02 + syst_JES_EtaIntercalibration_Stat142: 2.60895204e-02 + syst_JES_EtaIntercalibration_Stat143: 2.33768491e-02 + syst_JES_EtaIntercalibration_Stat144: 1.66751214e-02 + syst_JES_EtaIntercalibration_Stat145: 8.92862636e-04 + syst_JES_EtaIntercalibration_Stat146: 5.37499805e-03 + syst_JES_EtaIntercalibration_Stat147: 5.40399025e-03 + syst_JES_EtaIntercalibration_Stat148: 1.36351292e-02 + syst_JES_EtaIntercalibration_Stat149: 1.61175009e-02 + syst_JES_EtaIntercalibration_Stat15: 1.41344179e-04 + syst_JES_EtaIntercalibration_Stat150: 2.00945476e-02 + syst_JES_EtaIntercalibration_Stat151: 2.59654569e-02 + syst_JES_EtaIntercalibration_Stat152: 4.10363599e-02 + syst_JES_EtaIntercalibration_Stat153: 3.37578317e-02 + syst_JES_EtaIntercalibration_Stat154: 2.62318409e-02 + syst_JES_EtaIntercalibration_Stat155: 1.61588850e-02 + syst_JES_EtaIntercalibration_Stat156: 3.16807051e-02 + syst_JES_EtaIntercalibration_Stat157: 3.53611831e-02 + syst_JES_EtaIntercalibration_Stat158: 3.39680644e-02 + syst_JES_EtaIntercalibration_Stat159: 2.79894176e-02 + syst_JES_EtaIntercalibration_Stat16: 1.41344179e-04 + syst_JES_EtaIntercalibration_Stat160: 2.12636215e-02 + syst_JES_EtaIntercalibration_Stat161: 1.12543342e-02 + syst_JES_EtaIntercalibration_Stat162: 5.89399924e-03 + syst_JES_EtaIntercalibration_Stat163: 3.15800424e-04 + syst_JES_EtaIntercalibration_Stat164: 2.63639326e-03 + syst_JES_EtaIntercalibration_Stat165: 5.58006133e-03 + syst_JES_EtaIntercalibration_Stat166: 7.83809473e-03 + syst_JES_EtaIntercalibration_Stat167: 8.49713116e-03 + syst_JES_EtaIntercalibration_Stat168: 1.27679016e-02 + syst_JES_EtaIntercalibration_Stat169: 1.80835170e-02 + syst_JES_EtaIntercalibration_Stat17: 1.43033553e-04 + syst_JES_EtaIntercalibration_Stat170: 2.00383401e-02 + syst_JES_EtaIntercalibration_Stat171: 1.80551158e-02 + syst_JES_EtaIntercalibration_Stat172: 1.87730445e-02 + syst_JES_EtaIntercalibration_Stat173: 1.50659749e-02 + syst_JES_EtaIntercalibration_Stat174: 2.82953759e-02 + syst_JES_EtaIntercalibration_Stat175: 2.94941227e-02 + syst_JES_EtaIntercalibration_Stat176: 2.51104017e-02 + syst_JES_EtaIntercalibration_Stat177: 1.29510492e-02 + syst_JES_EtaIntercalibration_Stat178: 7.53308826e-03 + syst_JES_EtaIntercalibration_Stat179: 6.12263489e-03 + syst_JES_EtaIntercalibration_Stat18: 1.41696443e-04 + syst_JES_EtaIntercalibration_Stat180: 4.28135798e-03 + syst_JES_EtaIntercalibration_Stat181: 2.06621591e-03 + syst_JES_EtaIntercalibration_Stat182: 9.33721012e-04 + syst_JES_EtaIntercalibration_Stat183: 3.68848895e-03 + syst_JES_EtaIntercalibration_Stat184: 4.27961759e-03 + syst_JES_EtaIntercalibration_Stat185: 3.87905800e-03 + syst_JES_EtaIntercalibration_Stat186: 9.45129857e-03 + syst_JES_EtaIntercalibration_Stat187: 1.17738750e-02 + syst_JES_EtaIntercalibration_Stat188: 6.82926526e-03 + syst_JES_EtaIntercalibration_Stat189: 8.27801078e-03 + syst_JES_EtaIntercalibration_Stat19: 1.92241161e-04 + syst_JES_EtaIntercalibration_Stat190: 5.71348239e-03 + syst_JES_EtaIntercalibration_Stat191: 1.10976446e-02 + syst_JES_EtaIntercalibration_Stat192: 2.00799072e-02 + syst_JES_EtaIntercalibration_Stat193: 1.39613064e-02 + syst_JES_EtaIntercalibration_Stat194: 7.06446686e-03 + syst_JES_EtaIntercalibration_Stat195: 3.51739033e-03 + syst_JES_EtaIntercalibration_Stat196: 6.02090301e-03 + syst_JES_EtaIntercalibration_Stat197: 2.31142813e-03 + syst_JES_EtaIntercalibration_Stat198: 9.14493674e-04 + syst_JES_EtaIntercalibration_Stat199: 1.93249838e-03 + syst_JES_EtaIntercalibration_Stat2: 1.92417897e-04 + syst_JES_EtaIntercalibration_Stat20: 1.92417897e-04 + syst_JES_EtaIntercalibration_Stat200: 1.73724696e-03 + syst_JES_EtaIntercalibration_Stat201: 3.27651217e-03 + syst_JES_EtaIntercalibration_Stat202: 4.67764564e-03 + syst_JES_EtaIntercalibration_Stat203: 4.86295103e-03 + syst_JES_EtaIntercalibration_Stat204: 4.76537682e-03 + syst_JES_EtaIntercalibration_Stat205: 2.74187978e-03 + syst_JES_EtaIntercalibration_Stat206: 4.58820945e-03 + syst_JES_EtaIntercalibration_Stat207: 3.31505412e-03 + syst_JES_EtaIntercalibration_Stat208: 3.71584405e-03 + syst_JES_EtaIntercalibration_Stat209: 1.46920432e-03 + syst_JES_EtaIntercalibration_Stat21: 1.92417897e-04 + syst_JES_EtaIntercalibration_Stat210: 1.04982417e-03 + syst_JES_EtaIntercalibration_Stat211: 9.70777312e-04 + syst_JES_EtaIntercalibration_Stat212: 7.85177972e-04 + syst_JES_EtaIntercalibration_Stat213: 2.49364071e-04 + syst_JES_EtaIntercalibration_Stat214: 1.32048846e-03 + syst_JES_EtaIntercalibration_Stat215: 8.52591126e-04 + syst_JES_EtaIntercalibration_Stat216: 1.05603138e-03 + syst_JES_EtaIntercalibration_Stat217: 9.98613893e-04 + syst_JES_EtaIntercalibration_Stat218: 9.39589925e-04 + syst_JES_EtaIntercalibration_Stat219: 1.00764983e-03 + syst_JES_EtaIntercalibration_Stat22: 1.92417897e-04 + syst_JES_EtaIntercalibration_Stat220: 5.60811475e-04 + syst_JES_EtaIntercalibration_Stat221: 2.58335378e-04 + syst_JES_EtaIntercalibration_Stat222: 6.10181259e-04 + syst_JES_EtaIntercalibration_Stat223: 8.50787957e-04 + syst_JES_EtaIntercalibration_Stat224: 4.99533342e-04 + syst_JES_EtaIntercalibration_Stat225: 2.38853025e-04 + syst_JES_EtaIntercalibration_Stat226: 4.38940065e-04 + syst_JES_EtaIntercalibration_Stat227: 1.24077273e-04 + syst_JES_EtaIntercalibration_Stat228: 1.45203398e-04 + syst_JES_EtaIntercalibration_Stat229: 1.21184128e-04 + syst_JES_EtaIntercalibration_Stat23: 4.20377457e-04 + syst_JES_EtaIntercalibration_Stat230: 3.40582509e-04 + syst_JES_EtaIntercalibration_Stat231: 1.36343866e-04 + syst_JES_EtaIntercalibration_Stat232: 2.23349480e-04 + syst_JES_EtaIntercalibration_Stat233: 8.99891186e-05 + syst_JES_EtaIntercalibration_Stat234: 2.67290445e-04 + syst_JES_EtaIntercalibration_Stat235: 3.53068253e-04 + syst_JES_EtaIntercalibration_Stat236: 3.78453101e-04 + syst_JES_EtaIntercalibration_Stat237: 2.84343839e-04 + syst_JES_EtaIntercalibration_Stat238: 4.55306081e-04 + syst_JES_EtaIntercalibration_Stat239: 4.55164638e-04 + syst_JES_EtaIntercalibration_Stat24: 1.71055166e-04 + syst_JES_EtaIntercalibration_Stat240: 2.78860180e-04 + syst_JES_EtaIntercalibration_Stat241: 4.55164638e-04 + syst_JES_EtaIntercalibration_Stat242: 1.14990853e-04 + syst_JES_EtaIntercalibration_Stat243: 5.39685936e-04 + syst_JES_EtaIntercalibration_Stat244: 2.47701474e-04 + syst_JES_EtaIntercalibration_Stat245: 2.17302771e-04 + syst_JES_EtaIntercalibration_Stat25: 8.81828400e-04 + syst_JES_EtaIntercalibration_Stat26: 2.85449178e-04 + syst_JES_EtaIntercalibration_Stat27: 4.20537775e-04 + syst_JES_EtaIntercalibration_Stat28: 3.49918344e-04 + syst_JES_EtaIntercalibration_Stat29: 2.81975620e-04 + syst_JES_EtaIntercalibration_Stat3: 1.92333054e-04 + syst_JES_EtaIntercalibration_Stat30: 2.99580720e-04 + syst_JES_EtaIntercalibration_Stat31: 5.26054236e-04 + syst_JES_EtaIntercalibration_Stat32: 1.15537968e-04 + syst_JES_EtaIntercalibration_Stat33: 9.30394078e-05 + syst_JES_EtaIntercalibration_Stat34: 3.40450359e-04 + syst_JES_EtaIntercalibration_Stat35: 2.94680718e-04 + syst_JES_EtaIntercalibration_Stat36: 9.28056716e-05 + syst_JES_EtaIntercalibration_Stat37: 2.47316957e-04 + syst_JES_EtaIntercalibration_Stat38: 3.09009332e-04 + syst_JES_EtaIntercalibration_Stat39: 3.10391152e-04 + syst_JES_EtaIntercalibration_Stat4: 1.92234093e-04 + syst_JES_EtaIntercalibration_Stat40: 3.11834259e-04 + syst_JES_EtaIntercalibration_Stat41: 1.92050392e-04 + syst_JES_EtaIntercalibration_Stat42: 1.92241161e-04 + syst_JES_EtaIntercalibration_Stat43: 1.92417897e-04 + syst_JES_EtaIntercalibration_Stat44: 1.92417897e-04 + syst_JES_EtaIntercalibration_Stat45: 1.92417897e-04 + syst_JES_EtaIntercalibration_Stat46: 2.43228961e-04 + syst_JES_EtaIntercalibration_Stat47: 3.87291466e-04 + syst_JES_EtaIntercalibration_Stat48: 2.33728790e-04 + syst_JES_EtaIntercalibration_Stat49: 7.29344256e-04 + syst_JES_EtaIntercalibration_Stat5: 1.91986577e-04 + syst_JES_EtaIntercalibration_Stat50: 9.68118420e-05 + syst_JES_EtaIntercalibration_Stat51: 4.17519422e-04 + syst_JES_EtaIntercalibration_Stat52: 1.71705535e-04 + syst_JES_EtaIntercalibration_Stat53: 4.41079177e-04 + syst_JES_EtaIntercalibration_Stat54: 6.81827998e-05 + syst_JES_EtaIntercalibration_Stat55: 4.03929607e-04 + syst_JES_EtaIntercalibration_Stat56: 1.70553690e-04 + syst_JES_EtaIntercalibration_Stat57: 3.53397660e-04 + syst_JES_EtaIntercalibration_Stat58: 1.79758336e-04 + syst_JES_EtaIntercalibration_Stat59: 8.57505850e-05 + syst_JES_EtaIntercalibration_Stat6: 2.69928796e-04 + syst_JES_EtaIntercalibration_Stat60: 1.31323286e-04 + syst_JES_EtaIntercalibration_Stat61: 2.57843813e-04 + syst_JES_EtaIntercalibration_Stat62: 3.30722603e-04 + syst_JES_EtaIntercalibration_Stat63: 2.88235492e-04 + syst_JES_EtaIntercalibration_Stat64: 1.92198757e-04 + syst_JES_EtaIntercalibration_Stat65: 1.92417897e-04 + syst_JES_EtaIntercalibration_Stat66: 1.92417897e-04 + syst_JES_EtaIntercalibration_Stat67: 1.91697225e-04 + syst_JES_EtaIntercalibration_Stat68: 1.13628119e-05 + syst_JES_EtaIntercalibration_Stat69: 3.51435652e-04 + syst_JES_EtaIntercalibration_Stat7: 2.59302356e-04 + syst_JES_EtaIntercalibration_Stat70: 1.29502120e-04 + syst_JES_EtaIntercalibration_Stat71: 4.58172266e-04 + syst_JES_EtaIntercalibration_Stat72: 1.31750244e-03 + syst_JES_EtaIntercalibration_Stat73: 2.04216705e-04 + syst_JES_EtaIntercalibration_Stat74: 5.41795100e-04 + syst_JES_EtaIntercalibration_Stat75: 1.01965030e-04 + syst_JES_EtaIntercalibration_Stat76: 1.45929083e-04 + syst_JES_EtaIntercalibration_Stat77: 1.24918243e-04 + syst_JES_EtaIntercalibration_Stat78: 1.12943998e-04 + syst_JES_EtaIntercalibration_Stat79: 1.84923051e-04 + syst_JES_EtaIntercalibration_Stat8: 2.45677514e-04 + syst_JES_EtaIntercalibration_Stat80: 7.12638413e-04 + syst_JES_EtaIntercalibration_Stat81: 1.03650497e-03 + syst_JES_EtaIntercalibration_Stat82: 1.17602579e-04 + syst_JES_EtaIntercalibration_Stat83: 2.30058666e-04 + syst_JES_EtaIntercalibration_Stat84: 1.28385222e-04 + syst_JES_EtaIntercalibration_Stat85: 8.35833283e-05 + syst_JES_EtaIntercalibration_Stat86: 1.17682485e-04 + syst_JES_EtaIntercalibration_Stat87: 1.17831416e-04 + syst_JES_EtaIntercalibration_Stat88: 9.16547512e-05 + syst_JES_EtaIntercalibration_Stat89: 1.16743865e-04 + syst_JES_EtaIntercalibration_Stat9: 4.36354177e-04 + syst_JES_EtaIntercalibration_Stat90: 1.40543470e-04 + syst_JES_EtaIntercalibration_Stat91: 2.34245967e-04 + syst_JES_EtaIntercalibration_Stat92: 3.44565215e-05 + syst_JES_EtaIntercalibration_Stat93: 1.56692161e-04 + syst_JES_EtaIntercalibration_Stat94: 7.07013343e-04 + syst_JES_EtaIntercalibration_Stat95: 2.47557853e-04 + syst_JES_EtaIntercalibration_Stat96: 1.59785853e-04 + syst_JES_EtaIntercalibration_Stat97: 1.37034654e-04 + syst_JES_EtaIntercalibration_Stat98: 1.81335234e-04 + syst_JES_EtaIntercalibration_Stat99: 7.66983577e-04 + syst_JES_EtaIntercalibration_TotalStat_MJB: 6.92735843e-03 + syst_JES_Flavour_Comp: 1.68137830e-01 + syst_JES_Flavour_Response: 1.55243551e+00 + syst_JES_Gjet_Generator: 1.43910484e+00 + syst_JES_Gjet_OOC: 9.07270372e-01 + syst_JES_Gjet_Purity: 2.87237149e-01 + syst_JES_Gjet_Stat1: 1.02279472e-03 + syst_JES_Gjet_Stat10: 9.78824993e-02 + syst_JES_Gjet_Stat11: 1.16272317e-01 + syst_JES_Gjet_Stat12: 5.58248822e-02 + syst_JES_Gjet_Stat13: 1.77291025e-02 + syst_JES_Gjet_Stat14: 1.27386003e-02 + syst_JES_Gjet_Stat15: 2.52764264e-03 + syst_JES_Gjet_Stat2: 1.44504217e-03 + syst_JES_Gjet_Stat3: 1.17720556e-03 + syst_JES_Gjet_Stat4: 3.41418986e-03 + syst_JES_Gjet_Stat5: 3.66672125e-03 + syst_JES_Gjet_Stat6: 1.04970001e-02 + syst_JES_Gjet_Stat7: 2.17736354e-02 + syst_JES_Gjet_Stat8: 2.21048909e-02 + syst_JES_Gjet_Stat9: 5.11345783e-02 + syst_JES_Gjet_Veto: 3.93518370e-01 + syst_JES_Gjet_dPhi: 7.04707817e-02 + syst_JES_LArESZee: 1.61603960e+00 + syst_JES_LArEsmear: 1.35814929e-01 + syst_JES_LAr_JVT: 1.91677463e-01 + syst_JES_MJB_Alpha: 4.12328058e-03 + syst_JES_MJB_Asym: 2.31429557e-03 + syst_JES_MJB_Beta: 1.90880954e-03 + syst_JES_MJB_Fragmentation: 2.61115875e-02 + syst_JES_MJB_Stat1: 2.88618654e-03 + syst_JES_MJB_Stat10: 4.36369328e-04 + syst_JES_MJB_Stat11: 4.35153984e-04 + syst_JES_MJB_Stat12: 2.38646039e-04 + syst_JES_MJB_Stat13: 4.34705279e-04 + syst_JES_MJB_Stat14: 1.79936694e-04 + syst_JES_MJB_Stat15: 2.78773577e-04 + syst_JES_MJB_Stat16: 4.55235346e-04 + syst_JES_MJB_Stat2: 3.07798733e-03 + syst_JES_MJB_Stat3: 1.79419390e-03 + syst_JES_MJB_Stat4: 1.24205739e-03 + syst_JES_MJB_Stat5: 7.05247621e-04 + syst_JES_MJB_Stat6: 1.43704907e-04 + syst_JES_MJB_Stat7: 2.85103473e-04 + syst_JES_MJB_Stat8: 5.42475067e-04 + syst_JES_MJB_Stat9: 2.74796252e-04 + syst_JES_MJB_Threshold: 4.54199670e-03 + syst_JES_Pileup_MuOffset: 2.00413994e-02 + syst_JES_Pileup_NPVOffset: 7.20036950e-02 + syst_JES_Pileup_Pt_term: 2.94528517e-01 + syst_JES_Pileup_Rho_topology: 4.99983310e-01 + syst_JES_PunchThrough_MC15: 6.40878662e-03 + syst_JES_SingleParticle_HighPt: 2.45716722e-04 + syst_JES_Zjet_MC: 1.32632049e+00 + syst_JES_Zjet_MuScale: 7.98487613e-02 + syst_JES_Zjet_MuSmearID: 1.15656129e-02 + syst_JES_Zjet_MuSmearMS: 1.65041177e-01 + syst_JES_Zjet_OOC: 4.71104243e-01 + syst_JES_Zjet_Stat1: 3.99168595e-03 + syst_JES_Zjet_Stat10: 1.10641174e-01 + syst_JES_Zjet_Stat11: 1.87753848e-01 + syst_JES_Zjet_Stat12: 2.94167044e-01 + syst_JES_Zjet_Stat13: 2.17027481e-02 + syst_JES_Zjet_Stat2: 1.32618579e-03 + syst_JES_Zjet_Stat3: 2.36813913e-03 + syst_JES_Zjet_Stat4: 2.09893985e-03 + syst_JES_Zjet_Stat5: 2.39548325e-03 + syst_JES_Zjet_Stat6: 6.44380809e-03 + syst_JES_Zjet_Stat7: 7.20533224e-03 + syst_JES_Zjet_Stat8: 1.07969647e-02 + syst_JES_Zjet_Stat9: 3.82657941e-02 + syst_JES_Zjet_Veto: 8.78020136e-02 + syst_JES_Zjet_dPhi: 7.70775856e-02 syst_PRW: 0.0 syst_Unfolding_bias: 0.0 - syst_cleaning: 0.6567936662301183 + syst_cleaning: 6.56793666e-01 syst_lumi: 1.61 - stat: 0.19264 - syst_JER_CROSS_CALIB_FORWARD: 4.101e-08 - syst_JER_NOISE_FORWARD: 3.234e-08 - syst_JER_NP0: 0.10760831473450368 - syst_JER_NP1: 0.023759314399830648 - syst_JER_NP2: 0.01956662165525771 - syst_JER_NP3: 0.03982115141479463 - syst_JER_NP4: 0.020298477972498334 + syst_JER_CROSS_CALIB_FORWARD: 4.10100000e-08 + syst_JER_NOISE_FORWARD: 3.23400000e-08 + syst_JER_NP0: 1.07608315e-01 + syst_JER_NP1: 2.37593144e-02 + syst_JER_NP2: 1.95666217e-02 + syst_JER_NP3: 3.98211514e-02 + syst_JER_NP4: 2.02984780e-02 syst_JER_NP5: 0.0 syst_JER_NP6: 0.0 syst_JER_NP7: 0.0 - syst_JER_NP8: 0.019674150216718384 - syst_JES_EtaIntercalibration_Modelling: 0.4385855760282137 - syst_JES_EtaIntercalibration_NonClosure: 0.036698988824625675 - syst_JES_EtaIntercalibration_Stat0: 9.193802368987492e-05 - syst_JES_EtaIntercalibration_Stat1: 9.193802368987492e-05 - syst_JES_EtaIntercalibration_Stat10: 0.0005350802556626436 - syst_JES_EtaIntercalibration_Stat100: 0.0004320649488213549 - syst_JES_EtaIntercalibration_Stat101: 0.0004772343957121595 - syst_JES_EtaIntercalibration_Stat102: 0.0002650559654110807 - syst_JES_EtaIntercalibration_Stat103: 0.0004987178034720638 - syst_JES_EtaIntercalibration_Stat104: 0.0004460817208483217 - syst_JES_EtaIntercalibration_Stat105: 0.00021231533057263554 - syst_JES_EtaIntercalibration_Stat106: 3.759176345434595e-05 - syst_JES_EtaIntercalibration_Stat107: 5.6291624953506365e-05 - syst_JES_EtaIntercalibration_Stat108: 5.6612080645388756e-05 - syst_JES_EtaIntercalibration_Stat109: 0.00017127567486365365 - syst_JES_EtaIntercalibration_Stat11: 0.0005524741480836456 - syst_JES_EtaIntercalibration_Stat110: 0.0009349731707380698 - syst_JES_EtaIntercalibration_Stat111: 0.0009861907358619832 - syst_JES_EtaIntercalibration_Stat112: 0.0014046859150714083 - syst_JES_EtaIntercalibration_Stat113: 0.0014118332302364893 - syst_JES_EtaIntercalibration_Stat114: 0.0020626979904969124 - syst_JES_EtaIntercalibration_Stat115: 0.0028445475475020626 - syst_JES_EtaIntercalibration_Stat116: 0.0027271094587493186 - syst_JES_EtaIntercalibration_Stat117: 0.0030748079614831233 - syst_JES_EtaIntercalibration_Stat118: 0.0023801108561367474 - syst_JES_EtaIntercalibration_Stat119: 0.0027111274407522787 - syst_JES_EtaIntercalibration_Stat12: 0.00026126930466618156 - syst_JES_EtaIntercalibration_Stat120: 0.0030790067797911718 - syst_JES_EtaIntercalibration_Stat121: 0.002459108527495279 - syst_JES_EtaIntercalibration_Stat122: 0.0017338520698144926 - syst_JES_EtaIntercalibration_Stat123: 0.0011493463664187572 - syst_JES_EtaIntercalibration_Stat124: 0.0008497894724577376 - syst_JES_EtaIntercalibration_Stat125: 0.00039351734863281437 - syst_JES_EtaIntercalibration_Stat126: 0.0002974104387458517 - syst_JES_EtaIntercalibration_Stat127: 0.0002738372326766395 - syst_JES_EtaIntercalibration_Stat128: 0.0007626196348770467 - syst_JES_EtaIntercalibration_Stat129: 0.003381414172724187 - syst_JES_EtaIntercalibration_Stat13: 9.188145569155943e-05 - syst_JES_EtaIntercalibration_Stat130: 0.005641769314674253 - syst_JES_EtaIntercalibration_Stat131: 0.0064186667618750855 - syst_JES_EtaIntercalibration_Stat132: 0.01033532557542335 - syst_JES_EtaIntercalibration_Stat133: 0.010893679119103885 - syst_JES_EtaIntercalibration_Stat134: 0.018677084221044783 - syst_JES_EtaIntercalibration_Stat135: 0.0121273803024396 - syst_JES_EtaIntercalibration_Stat136: 0.01061001850846642 - syst_JES_EtaIntercalibration_Stat137: 0.009263027204969226 - syst_JES_EtaIntercalibration_Stat138: 0.011474793887037796 - syst_JES_EtaIntercalibration_Stat139: 0.012251970974092292 - syst_JES_EtaIntercalibration_Stat14: 9.190973996263944e-05 - syst_JES_EtaIntercalibration_Stat140: 0.012779869512244638 - syst_JES_EtaIntercalibration_Stat141: 0.008783245300001588 - syst_JES_EtaIntercalibration_Stat142: 0.005668177503175073 - syst_JES_EtaIntercalibration_Stat143: 0.00540121578906083 - syst_JES_EtaIntercalibration_Stat144: 0.0034648538829220492 - syst_JES_EtaIntercalibration_Stat145: 0.00017292722479413125 - syst_JES_EtaIntercalibration_Stat146: 0.0018021644625283231 - syst_JES_EtaIntercalibration_Stat147: 0.0010953194340921739 - syst_JES_EtaIntercalibration_Stat148: 0.005138798886899544 - syst_JES_EtaIntercalibration_Stat149: 0.003096144860952084 - syst_JES_EtaIntercalibration_Stat15: 0.0002652884247380575 - syst_JES_EtaIntercalibration_Stat150: 0.008564450128729806 - syst_JES_EtaIntercalibration_Stat151: 0.009009378266562016 - syst_JES_EtaIntercalibration_Stat152: 0.015984282123386085 - syst_JES_EtaIntercalibration_Stat153: 0.013252607969754483 - syst_JES_EtaIntercalibration_Stat154: 0.009967093207149212 - syst_JES_EtaIntercalibration_Stat155: 0.0083966174141734 - syst_JES_EtaIntercalibration_Stat156: 0.011851482059219428 - syst_JES_EtaIntercalibration_Stat157: 0.01296498272270349 - syst_JES_EtaIntercalibration_Stat158: 0.013294027559396739 - syst_JES_EtaIntercalibration_Stat159: 0.00829032212884397 - syst_JES_EtaIntercalibration_Stat16: 0.0002652884247380575 - syst_JES_EtaIntercalibration_Stat160: 0.00614331919649305 - syst_JES_EtaIntercalibration_Stat161: 0.0036930847201221907 - syst_JES_EtaIntercalibration_Stat162: 0.0012509633208052104 - syst_JES_EtaIntercalibration_Stat163: 0.00047314869755712106 - syst_JES_EtaIntercalibration_Stat164: 0.0009242920305157888 - syst_JES_EtaIntercalibration_Stat165: 0.0027313277663986064 - syst_JES_EtaIntercalibration_Stat166: 0.003267707655222541 - syst_JES_EtaIntercalibration_Stat167: 0.005679552271086165 - syst_JES_EtaIntercalibration_Stat168: 0.008951195716215795 - syst_JES_EtaIntercalibration_Stat169: 0.011279542011979032 - syst_JES_EtaIntercalibration_Stat17: 0.00021580499345473912 - syst_JES_EtaIntercalibration_Stat170: 0.008796334861747818 - syst_JES_EtaIntercalibration_Stat171: 0.01298664279173028 - syst_JES_EtaIntercalibration_Stat172: 0.011684733330290428 - syst_JES_EtaIntercalibration_Stat173: 0.011208310577424234 - syst_JES_EtaIntercalibration_Stat174: 0.013368778253827086 - syst_JES_EtaIntercalibration_Stat175: 0.013944195808650998 - syst_JES_EtaIntercalibration_Stat176: 0.01118000894454025 - syst_JES_EtaIntercalibration_Stat177: 0.006942291030344378 - syst_JES_EtaIntercalibration_Stat178: 0.004561985614839223 - syst_JES_EtaIntercalibration_Stat179: 0.0034924493911866494 - syst_JES_EtaIntercalibration_Stat18: 0.00026528483951217415 - syst_JES_EtaIntercalibration_Stat180: 0.002157776861563772 - syst_JES_EtaIntercalibration_Stat181: 0.00023157155886464122 - syst_JES_EtaIntercalibration_Stat182: 0.0024989015346747858 - syst_JES_EtaIntercalibration_Stat183: 0.004916385867687767 - syst_JES_EtaIntercalibration_Stat184: 0.005634426294442052 - syst_JES_EtaIntercalibration_Stat185: 0.002066267649652387 - syst_JES_EtaIntercalibration_Stat186: 0.01068790469409229 - syst_JES_EtaIntercalibration_Stat187: 0.01584959936402179 - syst_JES_EtaIntercalibration_Stat188: 0.01358078505646857 - syst_JES_EtaIntercalibration_Stat189: 0.009770689433197638 - syst_JES_EtaIntercalibration_Stat19: 9.193095275803467e-05 - syst_JES_EtaIntercalibration_Stat190: 0.010776370017311025 - syst_JES_EtaIntercalibration_Stat191: 0.013856610949290594 - syst_JES_EtaIntercalibration_Stat192: 0.017701660939019252 - syst_JES_EtaIntercalibration_Stat193: 0.011981208818395579 - syst_JES_EtaIntercalibration_Stat194: 0.005643085769328692 - syst_JES_EtaIntercalibration_Stat195: 0.0019406904621809217 - syst_JES_EtaIntercalibration_Stat196: 0.003535288213144722 - syst_JES_EtaIntercalibration_Stat197: 0.003256304298971458 - syst_JES_EtaIntercalibration_Stat198: 0.0004813261318482511 - syst_JES_EtaIntercalibration_Stat199: 0.0013922345231677025 - syst_JES_EtaIntercalibration_Stat2: 9.193802368987492e-05 - syst_JES_EtaIntercalibration_Stat20: 9.193802368987492e-05 - syst_JES_EtaIntercalibration_Stat200: 0.0028873286962173184 - syst_JES_EtaIntercalibration_Stat201: 0.0007559709430262515 - syst_JES_EtaIntercalibration_Stat202: 0.0007110502847900421 - syst_JES_EtaIntercalibration_Stat203: 0.0012477482238015807 - syst_JES_EtaIntercalibration_Stat204: 0.0025061558770355847 - syst_JES_EtaIntercalibration_Stat205: 0.0018502883045622915 - syst_JES_EtaIntercalibration_Stat206: 0.0003717602005325476 - syst_JES_EtaIntercalibration_Stat207: 0.0005116330398830787 - syst_JES_EtaIntercalibration_Stat208: 0.0003323830135175382 - syst_JES_EtaIntercalibration_Stat209: 0.0012004104579267875 - syst_JES_EtaIntercalibration_Stat21: 9.193802368987492e-05 - syst_JES_EtaIntercalibration_Stat210: 0.0009950965920452145 - syst_JES_EtaIntercalibration_Stat211: 0.0014733994595831777 - syst_JES_EtaIntercalibration_Stat212: 0.000164095713152416 - syst_JES_EtaIntercalibration_Stat213: 0.0003862610645664406 - syst_JES_EtaIntercalibration_Stat214: 0.0004289174833228415 - syst_JES_EtaIntercalibration_Stat215: 0.0005172185589042605 - syst_JES_EtaIntercalibration_Stat216: 0.00012540047852956112 - syst_JES_EtaIntercalibration_Stat217: 0.0006561880587089739 - syst_JES_EtaIntercalibration_Stat218: 0.000587426597542195 - syst_JES_EtaIntercalibration_Stat219: 0.0006893819840988013 - syst_JES_EtaIntercalibration_Stat22: 9.193802368987492e-05 - syst_JES_EtaIntercalibration_Stat220: 0.0002575667851257223 - syst_JES_EtaIntercalibration_Stat221: 0.0001655830128032989 - syst_JES_EtaIntercalibration_Stat222: 0.0003787422969513704 - syst_JES_EtaIntercalibration_Stat223: 0.0003550993100528358 - syst_JES_EtaIntercalibration_Stat224: 0.00020488023623570917 - syst_JES_EtaIntercalibration_Stat225: 0.00027114955780897006 - syst_JES_EtaIntercalibration_Stat226: 0.0002656007295147173 - syst_JES_EtaIntercalibration_Stat227: 0.0002578452409876901 - syst_JES_EtaIntercalibration_Stat228: 0.00028177609741601576 - syst_JES_EtaIntercalibration_Stat229: 6.679212827871261e-05 - syst_JES_EtaIntercalibration_Stat23: 0.00010872774289481042 - syst_JES_EtaIntercalibration_Stat230: 0.00018611120546597936 - syst_JES_EtaIntercalibration_Stat231: 3.717627841446747e-05 - syst_JES_EtaIntercalibration_Stat232: 5.625059952569395e-05 - syst_JES_EtaIntercalibration_Stat233: 0.000302645518180924 - syst_JES_EtaIntercalibration_Stat234: 0.00032277129674120655 - syst_JES_EtaIntercalibration_Stat235: 0.00027121196046634815 - syst_JES_EtaIntercalibration_Stat236: 0.00021771878651140783 - syst_JES_EtaIntercalibration_Stat237: 0.000629577245062113 - syst_JES_EtaIntercalibration_Stat238: 0.0008874835153398625 - syst_JES_EtaIntercalibration_Stat239: 0.0008881145576444515 - syst_JES_EtaIntercalibration_Stat24: 0.00026291534987520223 - syst_JES_EtaIntercalibration_Stat240: 0.0005532170279374995 - syst_JES_EtaIntercalibration_Stat241: 0.0009029753817242195 - syst_JES_EtaIntercalibration_Stat242: 5.45422538110678e-05 - syst_JES_EtaIntercalibration_Stat243: 0.0005419325016088257 - syst_JES_EtaIntercalibration_Stat244: 0.0001261888469715133 - syst_JES_EtaIntercalibration_Stat245: 0.0001167642457047533 - syst_JES_EtaIntercalibration_Stat25: 0.001039444884301231 - syst_JES_EtaIntercalibration_Stat26: 0.00044487304649753735 - syst_JES_EtaIntercalibration_Stat27: 0.0005807475764047577 - syst_JES_EtaIntercalibration_Stat28: 0.00042945827212896955 - syst_JES_EtaIntercalibration_Stat29: 0.00045838121893790546 - syst_JES_EtaIntercalibration_Stat3: 9.193802368987492e-05 - syst_JES_EtaIntercalibration_Stat30: 0.0005247882715915058 - syst_JES_EtaIntercalibration_Stat31: 0.00022136523745784362 - syst_JES_EtaIntercalibration_Stat32: 0.0001788766622564274 - syst_JES_EtaIntercalibration_Stat33: 0.00047400613372692766 - syst_JES_EtaIntercalibration_Stat34: 0.0004523862320304962 - syst_JES_EtaIntercalibration_Stat35: 0.00036618530373978695 - syst_JES_EtaIntercalibration_Stat36: 7.091883882298129e-05 - syst_JES_EtaIntercalibration_Stat37: 0.0005080695239826927 - syst_JES_EtaIntercalibration_Stat38: 0.0005062070920087944 - syst_JES_EtaIntercalibration_Stat39: 0.0005064554546058321 - syst_JES_EtaIntercalibration_Stat4: 9.193095275803467e-05 - syst_JES_EtaIntercalibration_Stat40: 0.000248860452462821 - syst_JES_EtaIntercalibration_Stat41: 9.191681171037213e-05 - syst_JES_EtaIntercalibration_Stat42: 9.193095275803467e-05 - syst_JES_EtaIntercalibration_Stat43: 9.193802368987492e-05 - syst_JES_EtaIntercalibration_Stat44: 9.193802368987492e-05 - syst_JES_EtaIntercalibration_Stat45: 9.193802368987492e-05 - syst_JES_EtaIntercalibration_Stat46: 0.0005174850239378914 - syst_JES_EtaIntercalibration_Stat47: 0.00026997368519913193 - syst_JES_EtaIntercalibration_Stat48: 0.0007963013295857291 - syst_JES_EtaIntercalibration_Stat49: 0.0008480596736079365 - syst_JES_EtaIntercalibration_Stat5: 9.191681062243184e-05 - syst_JES_EtaIntercalibration_Stat50: 4.5477392194058654e-05 - syst_JES_EtaIntercalibration_Stat51: 0.0008049153557983596 - syst_JES_EtaIntercalibration_Stat52: 4.406456974713358e-05 - syst_JES_EtaIntercalibration_Stat53: 0.00024350027653988407 - syst_JES_EtaIntercalibration_Stat54: 4.043158257188927e-05 - syst_JES_EtaIntercalibration_Stat55: 0.00042672643189167454 - syst_JES_EtaIntercalibration_Stat56: 5.4723868311733954e-05 - syst_JES_EtaIntercalibration_Stat57: 0.0001945211606804771 - syst_JES_EtaIntercalibration_Stat58: 4.230261773004213e-05 - syst_JES_EtaIntercalibration_Stat59: 0.00031243310412887987 - syst_JES_EtaIntercalibration_Stat6: 0.0005521681244935731 - syst_JES_EtaIntercalibration_Stat60: 8.494240681190991e-05 - syst_JES_EtaIntercalibration_Stat61: 0.0002615987060918282 - syst_JES_EtaIntercalibration_Stat62: 0.0002483639013624967 - syst_JES_EtaIntercalibration_Stat63: 0.00044024396361562983 - syst_JES_EtaIntercalibration_Stat64: 9.192388209817947e-05 - syst_JES_EtaIntercalibration_Stat65: 9.193802368987492e-05 - syst_JES_EtaIntercalibration_Stat66: 9.193802368987492e-05 - syst_JES_EtaIntercalibration_Stat67: 9.190267175115205e-05 - syst_JES_EtaIntercalibration_Stat68: 5.190071167090872e-07 - syst_JES_EtaIntercalibration_Stat69: 8.802412510215594e-05 - syst_JES_EtaIntercalibration_Stat7: 0.0003447446882476944 - syst_JES_EtaIntercalibration_Stat70: 0.0007238730770881868 - syst_JES_EtaIntercalibration_Stat71: 0.0005919527240413714 - syst_JES_EtaIntercalibration_Stat72: 0.0006059026249453207 - syst_JES_EtaIntercalibration_Stat73: 6.207961530768374e-05 - syst_JES_EtaIntercalibration_Stat74: 5.067695995963057e-05 - syst_JES_EtaIntercalibration_Stat75: 5.322704136057161e-05 - syst_JES_EtaIntercalibration_Stat76: 4.871742878067355e-05 - syst_JES_EtaIntercalibration_Stat77: 0.00040809243631896683 - syst_JES_EtaIntercalibration_Stat78: 6.241076569791465e-05 - syst_JES_EtaIntercalibration_Stat79: 2.8472088086404904e-05 - syst_JES_EtaIntercalibration_Stat8: 0.00035377080188732363 - syst_JES_EtaIntercalibration_Stat80: 0.00034382267166084324 - syst_JES_EtaIntercalibration_Stat81: 0.0002819815154846147 - syst_JES_EtaIntercalibration_Stat82: 0.0003258442221057172 - syst_JES_EtaIntercalibration_Stat83: 0.000629835407070768 - syst_JES_EtaIntercalibration_Stat84: 0.0002688088586804386 - syst_JES_EtaIntercalibration_Stat85: 0.0002739354070873643 - syst_JES_EtaIntercalibration_Stat86: 5.6291608464463615e-05 - syst_JES_EtaIntercalibration_Stat87: 5.630031150002636e-05 - syst_JES_EtaIntercalibration_Stat88: 0.0002762617992851792 - syst_JES_EtaIntercalibration_Stat89: 5.2504816510011734e-05 - syst_JES_EtaIntercalibration_Stat9: 0.00036426325645060606 - syst_JES_EtaIntercalibration_Stat90: 7.321770892345649e-05 - syst_JES_EtaIntercalibration_Stat91: 7.501082721847559e-05 - syst_JES_EtaIntercalibration_Stat92: 5.798633089513424e-05 - syst_JES_EtaIntercalibration_Stat93: 7.171803591147767e-05 - syst_JES_EtaIntercalibration_Stat94: 0.0002677024981205816 - syst_JES_EtaIntercalibration_Stat95: 0.0005158446929066926 - syst_JES_EtaIntercalibration_Stat96: 8.837914954897451e-05 - syst_JES_EtaIntercalibration_Stat97: 5.482807378524254e-05 - syst_JES_EtaIntercalibration_Stat98: 0.00046716021456776475 - syst_JES_EtaIntercalibration_Stat99: 0.0002610848772508042 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.022662547848818763 - syst_JES_Flavour_Comp: 0.12036746861174744 - syst_JES_Flavour_Response: 0.6437609241791552 - syst_JES_Gjet_Generator: 0.6545044155695209 - syst_JES_Gjet_OOC: 0.4400056903041141 - syst_JES_Gjet_Purity: 0.13938036832710696 - syst_JES_Gjet_Stat1: 0.0006933709180518029 - syst_JES_Gjet_Stat10: 0.04065699786014702 - syst_JES_Gjet_Stat11: 0.061780671734774785 - syst_JES_Gjet_Stat12: 0.05588720247069091 - syst_JES_Gjet_Stat13: 0.004503897090298578 - syst_JES_Gjet_Stat14: 0.011704621683335177 - syst_JES_Gjet_Stat15: 0.0007785049309413525 - syst_JES_Gjet_Stat2: 0.0011645010294113098 - syst_JES_Gjet_Stat3: 0.0012069585110930697 - syst_JES_Gjet_Stat4: 0.0014970174706729377 - syst_JES_Gjet_Stat5: 0.0018769617257685357 - syst_JES_Gjet_Stat6: 0.0052002350668022695 - syst_JES_Gjet_Stat7: 0.007833024368020311 - syst_JES_Gjet_Stat8: 0.007704159460966523 - syst_JES_Gjet_Stat9: 0.0205650595671396 - syst_JES_Gjet_Veto: 0.20122629052884713 - syst_JES_Gjet_dPhi: 0.03102567767188978 - syst_JES_LArESZee: 0.81215739084244 - syst_JES_LArEsmear: 0.06161011666114583 - syst_JES_LAr_JVT: 0.08817258913630699 - syst_JES_MJB_Alpha: 0.0035445601631232046 - syst_JES_MJB_Asym: 0.011919243935753642 - syst_JES_MJB_Beta: 0.0010254196348324915 - syst_JES_MJB_Fragmentation: 0.030440934200513622 - syst_JES_MJB_Stat1: 0.004550348860252365 - syst_JES_MJB_Stat10: 0.0007158142019232365 - syst_JES_MJB_Stat11: 0.0007255399931602668 - syst_JES_MJB_Stat12: 0.0003343424993550775 - syst_JES_MJB_Stat13: 0.0007440006718242934 - syst_JES_MJB_Stat14: 7.270876907223777e-05 - syst_JES_MJB_Stat15: 0.0005531304253995201 - syst_JES_MJB_Stat16: 0.0009031167809314585 - syst_JES_MJB_Stat2: 0.0044306350018930695 - syst_JES_MJB_Stat3: 0.003196741797518217 - syst_JES_MJB_Stat4: 0.0030050050195465565 - syst_JES_MJB_Stat5: 0.0003727733268354913 - syst_JES_MJB_Stat6: 0.00011489646760779898 - syst_JES_MJB_Stat7: 0.00034157503465563757 - syst_JES_MJB_Stat8: 0.0003390145464430693 - syst_JES_MJB_Stat9: 0.0006489953466705288 - syst_JES_MJB_Threshold: 0.012012873761094802 - syst_JES_Pileup_MuOffset: 0.026936057617995997 - syst_JES_Pileup_NPVOffset: 0.043656210861113445 - syst_JES_Pileup_Pt_term: 0.12188681552981848 - syst_JES_Pileup_Rho_topology: 0.21800458710770285 - syst_JES_PunchThrough_MC15: 0.005536754114099704 - syst_JES_SingleParticle_HighPt: 0.00012130649529188453 - syst_JES_Zjet_MC: 0.608659149278149 - syst_JES_Zjet_MuScale: 0.03658065984916073 - syst_JES_Zjet_MuSmearID: 0.007106604463455103 - syst_JES_Zjet_MuSmearMS: 0.09016255805488219 - syst_JES_Zjet_OOC: 0.21572670210245184 - syst_JES_Zjet_Stat1: 0.004119085699521193 - syst_JES_Zjet_Stat10: 0.03659636969700683 - syst_JES_Zjet_Stat11: 0.06123345572479149 - syst_JES_Zjet_Stat12: 0.17400465511014354 - syst_JES_Zjet_Stat13: 0.030400210525586828 - syst_JES_Zjet_Stat2: 0.0009354494534714316 - syst_JES_Zjet_Stat3: 0.0013869305786520102 - syst_JES_Zjet_Stat4: 0.0012764185520431767 - syst_JES_Zjet_Stat5: 0.0026829511736146078 - syst_JES_Zjet_Stat6: 0.00437828893518918 - syst_JES_Zjet_Stat7: 0.004341820672252598 - syst_JES_Zjet_Stat8: 0.004019385509005078 - syst_JES_Zjet_Stat9: 0.013486650686882937 - syst_JES_Zjet_Veto: 0.04179694336910296 - syst_JES_Zjet_dPhi: 0.03664498976667888 + syst_JER_NP8: 1.96741502e-02 + syst_JES_EtaIntercalibration_Modelling: 4.38585576e-01 + syst_JES_EtaIntercalibration_NonClosure: 3.66989888e-02 + syst_JES_EtaIntercalibration_Stat0: 9.19380237e-05 + syst_JES_EtaIntercalibration_Stat1: 9.19380237e-05 + syst_JES_EtaIntercalibration_Stat10: 5.35080256e-04 + syst_JES_EtaIntercalibration_Stat100: 4.32064949e-04 + syst_JES_EtaIntercalibration_Stat101: 4.77234396e-04 + syst_JES_EtaIntercalibration_Stat102: 2.65055965e-04 + syst_JES_EtaIntercalibration_Stat103: 4.98717803e-04 + syst_JES_EtaIntercalibration_Stat104: 4.46081721e-04 + syst_JES_EtaIntercalibration_Stat105: 2.12315331e-04 + syst_JES_EtaIntercalibration_Stat106: 3.75917635e-05 + syst_JES_EtaIntercalibration_Stat107: 5.62916250e-05 + syst_JES_EtaIntercalibration_Stat108: 5.66120806e-05 + syst_JES_EtaIntercalibration_Stat109: 1.71275675e-04 + syst_JES_EtaIntercalibration_Stat11: 5.52474148e-04 + syst_JES_EtaIntercalibration_Stat110: 9.34973171e-04 + syst_JES_EtaIntercalibration_Stat111: 9.86190736e-04 + syst_JES_EtaIntercalibration_Stat112: 1.40468592e-03 + syst_JES_EtaIntercalibration_Stat113: 1.41183323e-03 + syst_JES_EtaIntercalibration_Stat114: 2.06269799e-03 + syst_JES_EtaIntercalibration_Stat115: 2.84454755e-03 + syst_JES_EtaIntercalibration_Stat116: 2.72710946e-03 + syst_JES_EtaIntercalibration_Stat117: 3.07480796e-03 + syst_JES_EtaIntercalibration_Stat118: 2.38011086e-03 + syst_JES_EtaIntercalibration_Stat119: 2.71112744e-03 + syst_JES_EtaIntercalibration_Stat12: 2.61269305e-04 + syst_JES_EtaIntercalibration_Stat120: 3.07900678e-03 + syst_JES_EtaIntercalibration_Stat121: 2.45910853e-03 + syst_JES_EtaIntercalibration_Stat122: 1.73385207e-03 + syst_JES_EtaIntercalibration_Stat123: 1.14934637e-03 + syst_JES_EtaIntercalibration_Stat124: 8.49789472e-04 + syst_JES_EtaIntercalibration_Stat125: 3.93517349e-04 + syst_JES_EtaIntercalibration_Stat126: 2.97410439e-04 + syst_JES_EtaIntercalibration_Stat127: 2.73837233e-04 + syst_JES_EtaIntercalibration_Stat128: 7.62619635e-04 + syst_JES_EtaIntercalibration_Stat129: 3.38141417e-03 + syst_JES_EtaIntercalibration_Stat13: 9.18814557e-05 + syst_JES_EtaIntercalibration_Stat130: 5.64176931e-03 + syst_JES_EtaIntercalibration_Stat131: 6.41866676e-03 + syst_JES_EtaIntercalibration_Stat132: 1.03353256e-02 + syst_JES_EtaIntercalibration_Stat133: 1.08936791e-02 + syst_JES_EtaIntercalibration_Stat134: 1.86770842e-02 + syst_JES_EtaIntercalibration_Stat135: 1.21273803e-02 + syst_JES_EtaIntercalibration_Stat136: 1.06100185e-02 + syst_JES_EtaIntercalibration_Stat137: 9.26302720e-03 + syst_JES_EtaIntercalibration_Stat138: 1.14747939e-02 + syst_JES_EtaIntercalibration_Stat139: 1.22519710e-02 + syst_JES_EtaIntercalibration_Stat14: 9.19097400e-05 + syst_JES_EtaIntercalibration_Stat140: 1.27798695e-02 + syst_JES_EtaIntercalibration_Stat141: 8.78324530e-03 + syst_JES_EtaIntercalibration_Stat142: 5.66817750e-03 + syst_JES_EtaIntercalibration_Stat143: 5.40121579e-03 + syst_JES_EtaIntercalibration_Stat144: 3.46485388e-03 + syst_JES_EtaIntercalibration_Stat145: 1.72927225e-04 + syst_JES_EtaIntercalibration_Stat146: 1.80216446e-03 + syst_JES_EtaIntercalibration_Stat147: 1.09531943e-03 + syst_JES_EtaIntercalibration_Stat148: 5.13879889e-03 + syst_JES_EtaIntercalibration_Stat149: 3.09614486e-03 + syst_JES_EtaIntercalibration_Stat15: 2.65288425e-04 + syst_JES_EtaIntercalibration_Stat150: 8.56445013e-03 + syst_JES_EtaIntercalibration_Stat151: 9.00937827e-03 + syst_JES_EtaIntercalibration_Stat152: 1.59842821e-02 + syst_JES_EtaIntercalibration_Stat153: 1.32526080e-02 + syst_JES_EtaIntercalibration_Stat154: 9.96709321e-03 + syst_JES_EtaIntercalibration_Stat155: 8.39661741e-03 + syst_JES_EtaIntercalibration_Stat156: 1.18514821e-02 + syst_JES_EtaIntercalibration_Stat157: 1.29649827e-02 + syst_JES_EtaIntercalibration_Stat158: 1.32940276e-02 + syst_JES_EtaIntercalibration_Stat159: 8.29032213e-03 + syst_JES_EtaIntercalibration_Stat16: 2.65288425e-04 + syst_JES_EtaIntercalibration_Stat160: 6.14331920e-03 + syst_JES_EtaIntercalibration_Stat161: 3.69308472e-03 + syst_JES_EtaIntercalibration_Stat162: 1.25096332e-03 + syst_JES_EtaIntercalibration_Stat163: 4.73148698e-04 + syst_JES_EtaIntercalibration_Stat164: 9.24292031e-04 + syst_JES_EtaIntercalibration_Stat165: 2.73132777e-03 + syst_JES_EtaIntercalibration_Stat166: 3.26770766e-03 + syst_JES_EtaIntercalibration_Stat167: 5.67955227e-03 + syst_JES_EtaIntercalibration_Stat168: 8.95119572e-03 + syst_JES_EtaIntercalibration_Stat169: 1.12795420e-02 + syst_JES_EtaIntercalibration_Stat17: 2.15804993e-04 + syst_JES_EtaIntercalibration_Stat170: 8.79633486e-03 + syst_JES_EtaIntercalibration_Stat171: 1.29866428e-02 + syst_JES_EtaIntercalibration_Stat172: 1.16847333e-02 + syst_JES_EtaIntercalibration_Stat173: 1.12083106e-02 + syst_JES_EtaIntercalibration_Stat174: 1.33687783e-02 + syst_JES_EtaIntercalibration_Stat175: 1.39441958e-02 + syst_JES_EtaIntercalibration_Stat176: 1.11800089e-02 + syst_JES_EtaIntercalibration_Stat177: 6.94229103e-03 + syst_JES_EtaIntercalibration_Stat178: 4.56198561e-03 + syst_JES_EtaIntercalibration_Stat179: 3.49244939e-03 + syst_JES_EtaIntercalibration_Stat18: 2.65284840e-04 + syst_JES_EtaIntercalibration_Stat180: 2.15777686e-03 + syst_JES_EtaIntercalibration_Stat181: 2.31571559e-04 + syst_JES_EtaIntercalibration_Stat182: 2.49890153e-03 + syst_JES_EtaIntercalibration_Stat183: 4.91638587e-03 + syst_JES_EtaIntercalibration_Stat184: 5.63442629e-03 + syst_JES_EtaIntercalibration_Stat185: 2.06626765e-03 + syst_JES_EtaIntercalibration_Stat186: 1.06879047e-02 + syst_JES_EtaIntercalibration_Stat187: 1.58495994e-02 + syst_JES_EtaIntercalibration_Stat188: 1.35807851e-02 + syst_JES_EtaIntercalibration_Stat189: 9.77068943e-03 + syst_JES_EtaIntercalibration_Stat19: 9.19309528e-05 + syst_JES_EtaIntercalibration_Stat190: 1.07763700e-02 + syst_JES_EtaIntercalibration_Stat191: 1.38566109e-02 + syst_JES_EtaIntercalibration_Stat192: 1.77016609e-02 + syst_JES_EtaIntercalibration_Stat193: 1.19812088e-02 + syst_JES_EtaIntercalibration_Stat194: 5.64308577e-03 + syst_JES_EtaIntercalibration_Stat195: 1.94069046e-03 + syst_JES_EtaIntercalibration_Stat196: 3.53528821e-03 + syst_JES_EtaIntercalibration_Stat197: 3.25630430e-03 + syst_JES_EtaIntercalibration_Stat198: 4.81326132e-04 + syst_JES_EtaIntercalibration_Stat199: 1.39223452e-03 + syst_JES_EtaIntercalibration_Stat2: 9.19380237e-05 + syst_JES_EtaIntercalibration_Stat20: 9.19380237e-05 + syst_JES_EtaIntercalibration_Stat200: 2.88732870e-03 + syst_JES_EtaIntercalibration_Stat201: 7.55970943e-04 + syst_JES_EtaIntercalibration_Stat202: 7.11050285e-04 + syst_JES_EtaIntercalibration_Stat203: 1.24774822e-03 + syst_JES_EtaIntercalibration_Stat204: 2.50615588e-03 + syst_JES_EtaIntercalibration_Stat205: 1.85028830e-03 + syst_JES_EtaIntercalibration_Stat206: 3.71760201e-04 + syst_JES_EtaIntercalibration_Stat207: 5.11633040e-04 + syst_JES_EtaIntercalibration_Stat208: 3.32383014e-04 + syst_JES_EtaIntercalibration_Stat209: 1.20041046e-03 + syst_JES_EtaIntercalibration_Stat21: 9.19380237e-05 + syst_JES_EtaIntercalibration_Stat210: 9.95096592e-04 + syst_JES_EtaIntercalibration_Stat211: 1.47339946e-03 + syst_JES_EtaIntercalibration_Stat212: 1.64095713e-04 + syst_JES_EtaIntercalibration_Stat213: 3.86261065e-04 + syst_JES_EtaIntercalibration_Stat214: 4.28917483e-04 + syst_JES_EtaIntercalibration_Stat215: 5.17218559e-04 + syst_JES_EtaIntercalibration_Stat216: 1.25400479e-04 + syst_JES_EtaIntercalibration_Stat217: 6.56188059e-04 + syst_JES_EtaIntercalibration_Stat218: 5.87426598e-04 + syst_JES_EtaIntercalibration_Stat219: 6.89381984e-04 + syst_JES_EtaIntercalibration_Stat22: 9.19380237e-05 + syst_JES_EtaIntercalibration_Stat220: 2.57566785e-04 + syst_JES_EtaIntercalibration_Stat221: 1.65583013e-04 + syst_JES_EtaIntercalibration_Stat222: 3.78742297e-04 + syst_JES_EtaIntercalibration_Stat223: 3.55099310e-04 + syst_JES_EtaIntercalibration_Stat224: 2.04880236e-04 + syst_JES_EtaIntercalibration_Stat225: 2.71149558e-04 + syst_JES_EtaIntercalibration_Stat226: 2.65600730e-04 + syst_JES_EtaIntercalibration_Stat227: 2.57845241e-04 + syst_JES_EtaIntercalibration_Stat228: 2.81776097e-04 + syst_JES_EtaIntercalibration_Stat229: 6.67921283e-05 + syst_JES_EtaIntercalibration_Stat23: 1.08727743e-04 + syst_JES_EtaIntercalibration_Stat230: 1.86111205e-04 + syst_JES_EtaIntercalibration_Stat231: 3.71762784e-05 + syst_JES_EtaIntercalibration_Stat232: 5.62505995e-05 + syst_JES_EtaIntercalibration_Stat233: 3.02645518e-04 + syst_JES_EtaIntercalibration_Stat234: 3.22771297e-04 + syst_JES_EtaIntercalibration_Stat235: 2.71211960e-04 + syst_JES_EtaIntercalibration_Stat236: 2.17718787e-04 + syst_JES_EtaIntercalibration_Stat237: 6.29577245e-04 + syst_JES_EtaIntercalibration_Stat238: 8.87483515e-04 + syst_JES_EtaIntercalibration_Stat239: 8.88114558e-04 + syst_JES_EtaIntercalibration_Stat24: 2.62915350e-04 + syst_JES_EtaIntercalibration_Stat240: 5.53217028e-04 + syst_JES_EtaIntercalibration_Stat241: 9.02975382e-04 + syst_JES_EtaIntercalibration_Stat242: 5.45422538e-05 + syst_JES_EtaIntercalibration_Stat243: 5.41932502e-04 + syst_JES_EtaIntercalibration_Stat244: 1.26188847e-04 + syst_JES_EtaIntercalibration_Stat245: 1.16764246e-04 + syst_JES_EtaIntercalibration_Stat25: 1.03944488e-03 + syst_JES_EtaIntercalibration_Stat26: 4.44873046e-04 + syst_JES_EtaIntercalibration_Stat27: 5.80747576e-04 + syst_JES_EtaIntercalibration_Stat28: 4.29458272e-04 + syst_JES_EtaIntercalibration_Stat29: 4.58381219e-04 + syst_JES_EtaIntercalibration_Stat3: 9.19380237e-05 + syst_JES_EtaIntercalibration_Stat30: 5.24788272e-04 + syst_JES_EtaIntercalibration_Stat31: 2.21365237e-04 + syst_JES_EtaIntercalibration_Stat32: 1.78876662e-04 + syst_JES_EtaIntercalibration_Stat33: 4.74006134e-04 + syst_JES_EtaIntercalibration_Stat34: 4.52386232e-04 + syst_JES_EtaIntercalibration_Stat35: 3.66185304e-04 + syst_JES_EtaIntercalibration_Stat36: 7.09188388e-05 + syst_JES_EtaIntercalibration_Stat37: 5.08069524e-04 + syst_JES_EtaIntercalibration_Stat38: 5.06207092e-04 + syst_JES_EtaIntercalibration_Stat39: 5.06455455e-04 + syst_JES_EtaIntercalibration_Stat4: 9.19309528e-05 + syst_JES_EtaIntercalibration_Stat40: 2.48860452e-04 + syst_JES_EtaIntercalibration_Stat41: 9.19168117e-05 + syst_JES_EtaIntercalibration_Stat42: 9.19309528e-05 + syst_JES_EtaIntercalibration_Stat43: 9.19380237e-05 + syst_JES_EtaIntercalibration_Stat44: 9.19380237e-05 + syst_JES_EtaIntercalibration_Stat45: 9.19380237e-05 + syst_JES_EtaIntercalibration_Stat46: 5.17485024e-04 + syst_JES_EtaIntercalibration_Stat47: 2.69973685e-04 + syst_JES_EtaIntercalibration_Stat48: 7.96301330e-04 + syst_JES_EtaIntercalibration_Stat49: 8.48059674e-04 + syst_JES_EtaIntercalibration_Stat5: 9.19168106e-05 + syst_JES_EtaIntercalibration_Stat50: 4.54773922e-05 + syst_JES_EtaIntercalibration_Stat51: 8.04915356e-04 + syst_JES_EtaIntercalibration_Stat52: 4.40645697e-05 + syst_JES_EtaIntercalibration_Stat53: 2.43500277e-04 + syst_JES_EtaIntercalibration_Stat54: 4.04315826e-05 + syst_JES_EtaIntercalibration_Stat55: 4.26726432e-04 + syst_JES_EtaIntercalibration_Stat56: 5.47238683e-05 + syst_JES_EtaIntercalibration_Stat57: 1.94521161e-04 + syst_JES_EtaIntercalibration_Stat58: 4.23026177e-05 + syst_JES_EtaIntercalibration_Stat59: 3.12433104e-04 + syst_JES_EtaIntercalibration_Stat6: 5.52168124e-04 + syst_JES_EtaIntercalibration_Stat60: 8.49424068e-05 + syst_JES_EtaIntercalibration_Stat61: 2.61598706e-04 + syst_JES_EtaIntercalibration_Stat62: 2.48363901e-04 + syst_JES_EtaIntercalibration_Stat63: 4.40243964e-04 + syst_JES_EtaIntercalibration_Stat64: 9.19238821e-05 + syst_JES_EtaIntercalibration_Stat65: 9.19380237e-05 + syst_JES_EtaIntercalibration_Stat66: 9.19380237e-05 + syst_JES_EtaIntercalibration_Stat67: 9.19026718e-05 + syst_JES_EtaIntercalibration_Stat68: 5.19007117e-07 + syst_JES_EtaIntercalibration_Stat69: 8.80241251e-05 + syst_JES_EtaIntercalibration_Stat7: 3.44744688e-04 + syst_JES_EtaIntercalibration_Stat70: 7.23873077e-04 + syst_JES_EtaIntercalibration_Stat71: 5.91952724e-04 + syst_JES_EtaIntercalibration_Stat72: 6.05902625e-04 + syst_JES_EtaIntercalibration_Stat73: 6.20796153e-05 + syst_JES_EtaIntercalibration_Stat74: 5.06769600e-05 + syst_JES_EtaIntercalibration_Stat75: 5.32270414e-05 + syst_JES_EtaIntercalibration_Stat76: 4.87174288e-05 + syst_JES_EtaIntercalibration_Stat77: 4.08092436e-04 + syst_JES_EtaIntercalibration_Stat78: 6.24107657e-05 + syst_JES_EtaIntercalibration_Stat79: 2.84720881e-05 + syst_JES_EtaIntercalibration_Stat8: 3.53770802e-04 + syst_JES_EtaIntercalibration_Stat80: 3.43822672e-04 + syst_JES_EtaIntercalibration_Stat81: 2.81981515e-04 + syst_JES_EtaIntercalibration_Stat82: 3.25844222e-04 + syst_JES_EtaIntercalibration_Stat83: 6.29835407e-04 + syst_JES_EtaIntercalibration_Stat84: 2.68808859e-04 + syst_JES_EtaIntercalibration_Stat85: 2.73935407e-04 + syst_JES_EtaIntercalibration_Stat86: 5.62916085e-05 + syst_JES_EtaIntercalibration_Stat87: 5.63003115e-05 + syst_JES_EtaIntercalibration_Stat88: 2.76261799e-04 + syst_JES_EtaIntercalibration_Stat89: 5.25048165e-05 + syst_JES_EtaIntercalibration_Stat9: 3.64263256e-04 + syst_JES_EtaIntercalibration_Stat90: 7.32177089e-05 + syst_JES_EtaIntercalibration_Stat91: 7.50108272e-05 + syst_JES_EtaIntercalibration_Stat92: 5.79863309e-05 + syst_JES_EtaIntercalibration_Stat93: 7.17180359e-05 + syst_JES_EtaIntercalibration_Stat94: 2.67702498e-04 + syst_JES_EtaIntercalibration_Stat95: 5.15844693e-04 + syst_JES_EtaIntercalibration_Stat96: 8.83791495e-05 + syst_JES_EtaIntercalibration_Stat97: 5.48280738e-05 + syst_JES_EtaIntercalibration_Stat98: 4.67160215e-04 + syst_JES_EtaIntercalibration_Stat99: 2.61084877e-04 + syst_JES_EtaIntercalibration_TotalStat_MJB: 2.26625478e-02 + syst_JES_Flavour_Comp: 1.20367469e-01 + syst_JES_Flavour_Response: 6.43760924e-01 + syst_JES_Gjet_Generator: 6.54504416e-01 + syst_JES_Gjet_OOC: 4.40005690e-01 + syst_JES_Gjet_Purity: 1.39380368e-01 + syst_JES_Gjet_Stat1: 6.93370918e-04 + syst_JES_Gjet_Stat10: 4.06569979e-02 + syst_JES_Gjet_Stat11: 6.17806717e-02 + syst_JES_Gjet_Stat12: 5.58872025e-02 + syst_JES_Gjet_Stat13: 4.50389709e-03 + syst_JES_Gjet_Stat14: 1.17046217e-02 + syst_JES_Gjet_Stat15: 7.78504931e-04 + syst_JES_Gjet_Stat2: 1.16450103e-03 + syst_JES_Gjet_Stat3: 1.20695851e-03 + syst_JES_Gjet_Stat4: 1.49701747e-03 + syst_JES_Gjet_Stat5: 1.87696173e-03 + syst_JES_Gjet_Stat6: 5.20023507e-03 + syst_JES_Gjet_Stat7: 7.83302437e-03 + syst_JES_Gjet_Stat8: 7.70415946e-03 + syst_JES_Gjet_Stat9: 2.05650596e-02 + syst_JES_Gjet_Veto: 2.01226291e-01 + syst_JES_Gjet_dPhi: 3.10256777e-02 + syst_JES_LArESZee: 8.12157391e-01 + syst_JES_LArEsmear: 6.16101167e-02 + syst_JES_LAr_JVT: 8.81725891e-02 + syst_JES_MJB_Alpha: 3.54456016e-03 + syst_JES_MJB_Asym: 1.19192439e-02 + syst_JES_MJB_Beta: 1.02541963e-03 + syst_JES_MJB_Fragmentation: 3.04409342e-02 + syst_JES_MJB_Stat1: 4.55034886e-03 + syst_JES_MJB_Stat10: 7.15814202e-04 + syst_JES_MJB_Stat11: 7.25539993e-04 + syst_JES_MJB_Stat12: 3.34342499e-04 + syst_JES_MJB_Stat13: 7.44000672e-04 + syst_JES_MJB_Stat14: 7.27087691e-05 + syst_JES_MJB_Stat15: 5.53130425e-04 + syst_JES_MJB_Stat16: 9.03116781e-04 + syst_JES_MJB_Stat2: 4.43063500e-03 + syst_JES_MJB_Stat3: 3.19674180e-03 + syst_JES_MJB_Stat4: 3.00500502e-03 + syst_JES_MJB_Stat5: 3.72773327e-04 + syst_JES_MJB_Stat6: 1.14896468e-04 + syst_JES_MJB_Stat7: 3.41575035e-04 + syst_JES_MJB_Stat8: 3.39014546e-04 + syst_JES_MJB_Stat9: 6.48995347e-04 + syst_JES_MJB_Threshold: 1.20128738e-02 + syst_JES_Pileup_MuOffset: 2.69360576e-02 + syst_JES_Pileup_NPVOffset: 4.36562109e-02 + syst_JES_Pileup_Pt_term: 1.21886816e-01 + syst_JES_Pileup_Rho_topology: 2.18004587e-01 + syst_JES_PunchThrough_MC15: 5.53675411e-03 + syst_JES_SingleParticle_HighPt: 1.21306495e-04 + syst_JES_Zjet_MC: 6.08659149e-01 + syst_JES_Zjet_MuScale: 3.65806598e-02 + syst_JES_Zjet_MuSmearID: 7.10660446e-03 + syst_JES_Zjet_MuSmearMS: 9.01625581e-02 + syst_JES_Zjet_OOC: 2.15726702e-01 + syst_JES_Zjet_Stat1: 4.11908570e-03 + syst_JES_Zjet_Stat10: 3.65963697e-02 + syst_JES_Zjet_Stat11: 6.12334557e-02 + syst_JES_Zjet_Stat12: 1.74004655e-01 + syst_JES_Zjet_Stat13: 3.04002105e-02 + syst_JES_Zjet_Stat2: 9.35449453e-04 + syst_JES_Zjet_Stat3: 1.38693058e-03 + syst_JES_Zjet_Stat4: 1.27641855e-03 + syst_JES_Zjet_Stat5: 2.68295117e-03 + syst_JES_Zjet_Stat6: 4.37828894e-03 + syst_JES_Zjet_Stat7: 4.34182067e-03 + syst_JES_Zjet_Stat8: 4.01938551e-03 + syst_JES_Zjet_Stat9: 1.34866507e-02 + syst_JES_Zjet_Veto: 4.17969434e-02 + syst_JES_Zjet_dPhi: 3.66449898e-02 syst_PRW: 0.0 syst_Unfolding_bias: 0.0 - syst_cleaning: 0.3114227352008841 + syst_cleaning: 3.11422735e-01 syst_lumi: 0.7591 - stat: 0.08929 - syst_JER_CROSS_CALIB_FORWARD: 1.3647e-09 - syst_JER_NOISE_FORWARD: 1.075e-09 - syst_JER_NP0: 0.04246979279440859 - syst_JER_NP1: 0.0044921143128820755 - syst_JER_NP2: 0.009316402792923888 - syst_JER_NP3: 0.01476276640741836 - syst_JER_NP4: 0.005225599582823009 + syst_JER_CROSS_CALIB_FORWARD: 1.36470000e-09 + syst_JER_NOISE_FORWARD: 1.07500000e-09 + syst_JER_NP0: 4.24697928e-02 + syst_JER_NP1: 4.49211431e-03 + syst_JER_NP2: 9.31640279e-03 + syst_JER_NP3: 1.47627664e-02 + syst_JER_NP4: 5.22559958e-03 syst_JER_NP5: 0.0 syst_JER_NP6: 0.0 syst_JER_NP7: 0.0 - syst_JER_NP8: 0.00832038369007103 - syst_JES_EtaIntercalibration_Modelling: 0.23536615623321888 - syst_JES_EtaIntercalibration_NonClosure: 0.011476150171115748 - syst_JES_EtaIntercalibration_Stat0: 4.5848803692135736e-05 - syst_JES_EtaIntercalibration_Stat1: 4.5848803692135736e-05 - syst_JES_EtaIntercalibration_Stat10: 0.00036918807527871214 - syst_JES_EtaIntercalibration_Stat100: 4.7072148878078633e-05 - syst_JES_EtaIntercalibration_Stat101: 7.551252627999874e-05 - syst_JES_EtaIntercalibration_Stat102: 2.3457290444550493e-05 - syst_JES_EtaIntercalibration_Stat103: 0.0001421591122650954 - syst_JES_EtaIntercalibration_Stat104: 0.0001388058848716437 - syst_JES_EtaIntercalibration_Stat105: 7.843763858825604e-05 - syst_JES_EtaIntercalibration_Stat106: 1.2812419919261935e-05 - syst_JES_EtaIntercalibration_Stat107: 2.8076542763059988e-05 - syst_JES_EtaIntercalibration_Stat108: 2.833635121182683e-05 - syst_JES_EtaIntercalibration_Stat109: 6.756079095895785e-05 - syst_JES_EtaIntercalibration_Stat11: 0.00037891657382842204 - syst_JES_EtaIntercalibration_Stat110: 0.0002779030023227529 - syst_JES_EtaIntercalibration_Stat111: 0.00017790234238761445 - syst_JES_EtaIntercalibration_Stat112: 0.0004538762610359788 - syst_JES_EtaIntercalibration_Stat113: 0.00045207065009243854 - syst_JES_EtaIntercalibration_Stat114: 0.0007368626245780147 - syst_JES_EtaIntercalibration_Stat115: 0.0010017351483800497 - syst_JES_EtaIntercalibration_Stat116: 0.000718735631160721 - syst_JES_EtaIntercalibration_Stat117: 0.0011797937054841409 - syst_JES_EtaIntercalibration_Stat118: 0.0006343179638004902 - syst_JES_EtaIntercalibration_Stat119: 0.0004969350536035871 - syst_JES_EtaIntercalibration_Stat12: 0.00013429035258724842 - syst_JES_EtaIntercalibration_Stat120: 0.0006994270422996241 - syst_JES_EtaIntercalibration_Stat121: 0.00038333833619923793 - syst_JES_EtaIntercalibration_Stat122: 0.0003865286276590649 - syst_JES_EtaIntercalibration_Stat123: 0.0001282864306931953 - syst_JES_EtaIntercalibration_Stat124: 8.692519255083651e-05 - syst_JES_EtaIntercalibration_Stat125: 4.2774238450263496e-05 - syst_JES_EtaIntercalibration_Stat126: 6.438572634326649e-05 - syst_JES_EtaIntercalibration_Stat127: 8.914865506557011e-05 - syst_JES_EtaIntercalibration_Stat128: 0.00017621458168948448 - syst_JES_EtaIntercalibration_Stat129: 0.0007124274191101856 - syst_JES_EtaIntercalibration_Stat13: 4.584173289700118e-05 - syst_JES_EtaIntercalibration_Stat130: 0.0012195482934267098 - syst_JES_EtaIntercalibration_Stat131: 0.0012923286308056479 - syst_JES_EtaIntercalibration_Stat132: 0.0025375123645018953 - syst_JES_EtaIntercalibration_Stat133: 0.0030895366561994376 - syst_JES_EtaIntercalibration_Stat134: 0.004898089729680337 - syst_JES_EtaIntercalibration_Stat135: 0.0034348267423554278 - syst_JES_EtaIntercalibration_Stat136: 0.0028837261919259947 - syst_JES_EtaIntercalibration_Stat137: 0.002696198203025883 - syst_JES_EtaIntercalibration_Stat138: 0.003012360038242441 - syst_JES_EtaIntercalibration_Stat139: 0.003188527246237673 - syst_JES_EtaIntercalibration_Stat14: 4.584173289700118e-05 - syst_JES_EtaIntercalibration_Stat140: 0.0029070990695193037 - syst_JES_EtaIntercalibration_Stat141: 0.002183337983455608 - syst_JES_EtaIntercalibration_Stat142: 0.001275054802743788 - syst_JES_EtaIntercalibration_Stat143: 0.0011931903316319656 - syst_JES_EtaIntercalibration_Stat144: 0.0004884733871972966 - syst_JES_EtaIntercalibration_Stat145: 2.4627580067883246e-05 - syst_JES_EtaIntercalibration_Stat146: 0.0003308015530495587 - syst_JES_EtaIntercalibration_Stat147: 0.00012380728976922159 - syst_JES_EtaIntercalibration_Stat148: 0.0013273273899080062 - syst_JES_EtaIntercalibration_Stat149: 0.0004988762672246496 - syst_JES_EtaIntercalibration_Stat15: 8.430455904042201e-05 - syst_JES_EtaIntercalibration_Stat150: 0.0023997645858500373 - syst_JES_EtaIntercalibration_Stat151: 0.002967751719315482 - syst_JES_EtaIntercalibration_Stat152: 0.005434739368175809 - syst_JES_EtaIntercalibration_Stat153: 0.004690738827732791 - syst_JES_EtaIntercalibration_Stat154: 0.0031403793958692315 - syst_JES_EtaIntercalibration_Stat155: 0.003125768225572715 - syst_JES_EtaIntercalibration_Stat156: 0.004169573449407025 - syst_JES_EtaIntercalibration_Stat157: 0.003971423768625052 - syst_JES_EtaIntercalibration_Stat158: 0.00401930300021036 - syst_JES_EtaIntercalibration_Stat159: 0.002471615413044675 - syst_JES_EtaIntercalibration_Stat16: 8.430455904042201e-05 - syst_JES_EtaIntercalibration_Stat160: 0.0018537542737644599 - syst_JES_EtaIntercalibration_Stat161: 0.0010668604688524174 - syst_JES_EtaIntercalibration_Stat162: 0.00033297992431977037 - syst_JES_EtaIntercalibration_Stat163: 0.00017667713490998206 - syst_JES_EtaIntercalibration_Stat164: 0.00015800849723986366 - syst_JES_EtaIntercalibration_Stat165: 0.001006517116136134 - syst_JES_EtaIntercalibration_Stat166: 0.0008057653799338863 - syst_JES_EtaIntercalibration_Stat167: 0.0020962826026087226 - syst_JES_EtaIntercalibration_Stat168: 0.0036461029538398942 - syst_JES_EtaIntercalibration_Stat169: 0.005216888152912616 - syst_JES_EtaIntercalibration_Stat17: 3.890239195730772e-05 - syst_JES_EtaIntercalibration_Stat170: 0.004075232600723546 - syst_JES_EtaIntercalibration_Stat171: 0.006145824842931988 - syst_JES_EtaIntercalibration_Stat172: 0.004874754839989392 - syst_JES_EtaIntercalibration_Stat173: 0.005308571629920803 - syst_JES_EtaIntercalibration_Stat174: 0.005590264461543837 - syst_JES_EtaIntercalibration_Stat175: 0.005613547608242046 - syst_JES_EtaIntercalibration_Stat176: 0.004662780393713604 - syst_JES_EtaIntercalibration_Stat177: 0.003883053276739839 - syst_JES_EtaIntercalibration_Stat178: 0.0024241350519308945 - syst_JES_EtaIntercalibration_Stat179: 0.0015425061644933548 - syst_JES_EtaIntercalibration_Stat18: 8.430455904042201e-05 - syst_JES_EtaIntercalibration_Stat180: 0.0008480721195747448 - syst_JES_EtaIntercalibration_Stat181: 6.7442903258979e-05 - syst_JES_EtaIntercalibration_Stat182: 0.00197950145428085 - syst_JES_EtaIntercalibration_Stat183: 0.002688079751421077 - syst_JES_EtaIntercalibration_Stat184: 0.003642312177724474 - syst_JES_EtaIntercalibration_Stat185: 0.002045593068036749 - syst_JES_EtaIntercalibration_Stat186: 0.007777426888116661 - syst_JES_EtaIntercalibration_Stat187: 0.011236390657146093 - syst_JES_EtaIntercalibration_Stat188: 0.01089355079852295 - syst_JES_EtaIntercalibration_Stat189: 0.007892712714903539 - syst_JES_EtaIntercalibration_Stat19: 4.5848803692135736e-05 - syst_JES_EtaIntercalibration_Stat190: 0.00778690700792041 - syst_JES_EtaIntercalibration_Stat191: 0.010029334810943345 - syst_JES_EtaIntercalibration_Stat192: 0.011629512489782192 - syst_JES_EtaIntercalibration_Stat193: 0.009458306230504488 - syst_JES_EtaIntercalibration_Stat194: 0.0047596422922316335 - syst_JES_EtaIntercalibration_Stat195: 0.002077743668020673 - syst_JES_EtaIntercalibration_Stat196: 0.0024527765899078537 - syst_JES_EtaIntercalibration_Stat197: 0.0017904699802007294 - syst_JES_EtaIntercalibration_Stat198: 0.0009088051647630531 - syst_JES_EtaIntercalibration_Stat199: 0.0013012894941172774 - syst_JES_EtaIntercalibration_Stat2: 4.5848803692135736e-05 - syst_JES_EtaIntercalibration_Stat20: 4.5848803692135736e-05 - syst_JES_EtaIntercalibration_Stat200: 0.001978002022243658 - syst_JES_EtaIntercalibration_Stat201: 0.0030094588799317395 - syst_JES_EtaIntercalibration_Stat202: 0.003286654035641719 - syst_JES_EtaIntercalibration_Stat203: 0.004466645581417895 - syst_JES_EtaIntercalibration_Stat204: 0.0025868720010854807 - syst_JES_EtaIntercalibration_Stat205: 0.0024129187056343196 - syst_JES_EtaIntercalibration_Stat206: 0.0034952288551681416 - syst_JES_EtaIntercalibration_Stat207: 0.0034035322827909247 - syst_JES_EtaIntercalibration_Stat208: 0.00268046054811482 - syst_JES_EtaIntercalibration_Stat209: 0.0006463347178513623 - syst_JES_EtaIntercalibration_Stat21: 4.5848803692135736e-05 - syst_JES_EtaIntercalibration_Stat210: 0.0012916450092808009 - syst_JES_EtaIntercalibration_Stat211: 0.0010827095089635077 - syst_JES_EtaIntercalibration_Stat212: 3.729192271792914e-05 - syst_JES_EtaIntercalibration_Stat213: 0.00028176884475576784 - syst_JES_EtaIntercalibration_Stat214: 8.907314452179177e-05 - syst_JES_EtaIntercalibration_Stat215: 0.0002869089346813724 - syst_JES_EtaIntercalibration_Stat216: 7.308169448688343e-05 - syst_JES_EtaIntercalibration_Stat217: 0.0006100463424626034 - syst_JES_EtaIntercalibration_Stat218: 0.00045554148823131357 - syst_JES_EtaIntercalibration_Stat219: 0.0006563156005307202 - syst_JES_EtaIntercalibration_Stat22: 4.5848803692135736e-05 - syst_JES_EtaIntercalibration_Stat220: 0.0003806891334146537 - syst_JES_EtaIntercalibration_Stat221: 0.0001794210050913772 - syst_JES_EtaIntercalibration_Stat222: 0.00019924038245295553 - syst_JES_EtaIntercalibration_Stat223: 0.00022888459974406317 - syst_JES_EtaIntercalibration_Stat224: 8.328313334643457e-05 - syst_JES_EtaIntercalibration_Stat225: 8.693213905110123e-05 - syst_JES_EtaIntercalibration_Stat226: 0.00010680457434024069 - syst_JES_EtaIntercalibration_Stat227: 0.00017246875079271609 - syst_JES_EtaIntercalibration_Stat228: 0.0002291664268604806 - syst_JES_EtaIntercalibration_Stat229: 0.00014370197171577012 - syst_JES_EtaIntercalibration_Stat23: 4.656571995577863e-05 - syst_JES_EtaIntercalibration_Stat230: 0.00010770535070622071 - syst_JES_EtaIntercalibration_Stat231: 0.0002022529604233273 - syst_JES_EtaIntercalibration_Stat232: 0.00013576945560397595 - syst_JES_EtaIntercalibration_Stat233: 0.00015462548399277525 - syst_JES_EtaIntercalibration_Stat234: 0.00011661105039832204 - syst_JES_EtaIntercalibration_Stat235: 8.399613488131463e-05 - syst_JES_EtaIntercalibration_Stat236: 0.00011187316166087379 - syst_JES_EtaIntercalibration_Stat237: 0.0004214900562290883 - syst_JES_EtaIntercalibration_Stat238: 0.0005162452324235063 - syst_JES_EtaIntercalibration_Stat239: 0.0005208179408392149 - syst_JES_EtaIntercalibration_Stat24: 8.432940456922484e-05 - syst_JES_EtaIntercalibration_Stat240: 0.00037888611415569194 - syst_JES_EtaIntercalibration_Stat241: 0.0006101202586375902 - syst_JES_EtaIntercalibration_Stat242: 2.7135730502912572e-05 - syst_JES_EtaIntercalibration_Stat243: 0.0003508803321646855 - syst_JES_EtaIntercalibration_Stat244: 6.366917307457353e-05 - syst_JES_EtaIntercalibration_Stat245: 5.565014106001888e-05 - syst_JES_EtaIntercalibration_Stat25: 0.00026637384007255664 - syst_JES_EtaIntercalibration_Stat26: 0.00014598223273741225 - syst_JES_EtaIntercalibration_Stat27: 0.00015941017282469774 - syst_JES_EtaIntercalibration_Stat28: 0.00014494512444370111 - syst_JES_EtaIntercalibration_Stat29: 0.00036588797780194967 - syst_JES_EtaIntercalibration_Stat3: 4.5848803692135736e-05 - syst_JES_EtaIntercalibration_Stat30: 0.00015392946460960616 - syst_JES_EtaIntercalibration_Stat31: 5.395044516029282e-05 - syst_JES_EtaIntercalibration_Stat32: 4.758811905158156e-05 - syst_JES_EtaIntercalibration_Stat33: 0.00037081723578122686 - syst_JES_EtaIntercalibration_Stat34: 6.928382033467482e-05 - syst_JES_EtaIntercalibration_Stat35: 9.873135921276481e-05 - syst_JES_EtaIntercalibration_Stat36: 3.8327205742135704e-05 - syst_JES_EtaIntercalibration_Stat37: 0.00013702962334838405 - syst_JES_EtaIntercalibration_Stat38: 0.00015193380861414617 - syst_JES_EtaIntercalibration_Stat39: 0.00015198517583961933 - syst_JES_EtaIntercalibration_Stat4: 4.5848803692135736e-05 - syst_JES_EtaIntercalibration_Stat40: 8.339272630151866e-05 - syst_JES_EtaIntercalibration_Stat41: 4.584173289700118e-05 - syst_JES_EtaIntercalibration_Stat42: 4.5848803692135736e-05 - syst_JES_EtaIntercalibration_Stat43: 4.5848803692135736e-05 - syst_JES_EtaIntercalibration_Stat44: 4.5848803692135736e-05 - syst_JES_EtaIntercalibration_Stat45: 4.5848803692135736e-05 - syst_JES_EtaIntercalibration_Stat46: 0.00015275051325609352 - syst_JES_EtaIntercalibration_Stat47: 8.68738982663953e-05 - syst_JES_EtaIntercalibration_Stat48: 0.00024164542205471225 - syst_JES_EtaIntercalibration_Stat49: 0.0002097075503528664 - syst_JES_EtaIntercalibration_Stat5: 4.5848803692135736e-05 - syst_JES_EtaIntercalibration_Stat50: 2.1642054718162093e-05 - syst_JES_EtaIntercalibration_Stat51: 0.00029871467992048867 - syst_JES_EtaIntercalibration_Stat52: 3.6027460553376156e-05 - syst_JES_EtaIntercalibration_Stat53: 8.330416736274362e-05 - syst_JES_EtaIntercalibration_Stat54: 6.312116238945892e-05 - syst_JES_EtaIntercalibration_Stat55: 6.555893568385625e-05 - syst_JES_EtaIntercalibration_Stat56: 6.642693312706451e-05 - syst_JES_EtaIntercalibration_Stat57: 7.474916898232431e-05 - syst_JES_EtaIntercalibration_Stat58: 1.3017121789226987e-05 - syst_JES_EtaIntercalibration_Stat59: 8.110009068013966e-05 - syst_JES_EtaIntercalibration_Stat6: 0.0003789237250213161 - syst_JES_EtaIntercalibration_Stat60: 4.4887891463066065e-05 - syst_JES_EtaIntercalibration_Stat61: 8.842029136475918e-05 - syst_JES_EtaIntercalibration_Stat62: 8.337515397287133e-05 - syst_JES_EtaIntercalibration_Stat63: 0.000145304285122635 - syst_JES_EtaIntercalibration_Stat64: 4.5848803692135736e-05 - syst_JES_EtaIntercalibration_Stat65: 4.5848803692135736e-05 - syst_JES_EtaIntercalibration_Stat66: 4.5848803692135736e-05 - syst_JES_EtaIntercalibration_Stat67: 4.584173289700118e-05 - syst_JES_EtaIntercalibration_Stat68: 2.0337460827409897e-08 - syst_JES_EtaIntercalibration_Stat69: 3.600988197703514e-05 - syst_JES_EtaIntercalibration_Stat7: 9.255848097284225e-05 - syst_JES_EtaIntercalibration_Stat70: 0.00019762293235484348 - syst_JES_EtaIntercalibration_Stat71: 0.0001825713659778006 - syst_JES_EtaIntercalibration_Stat72: 0.00021935958750282032 - syst_JES_EtaIntercalibration_Stat73: 3.287330246385355e-05 - syst_JES_EtaIntercalibration_Stat74: 0.0002212628644603235 - syst_JES_EtaIntercalibration_Stat75: 7.71226480432791e-05 - syst_JES_EtaIntercalibration_Stat76: 6.585395588140473e-05 - syst_JES_EtaIntercalibration_Stat77: 0.00011739299013158611 - syst_JES_EtaIntercalibration_Stat78: 3.0584706962794326e-05 - syst_JES_EtaIntercalibration_Stat79: 7.488767638937664e-05 - syst_JES_EtaIntercalibration_Stat8: 9.746577204716535e-05 - syst_JES_EtaIntercalibration_Stat80: 0.00017283777946290417 - syst_JES_EtaIntercalibration_Stat81: 3.583297224624271e-05 - syst_JES_EtaIntercalibration_Stat82: 9.979658244492895e-05 - syst_JES_EtaIntercalibration_Stat83: 0.0001949690792792539 - syst_JES_EtaIntercalibration_Stat84: 8.852493571928214e-05 - syst_JES_EtaIntercalibration_Stat85: 8.896185487581493e-05 - syst_JES_EtaIntercalibration_Stat86: 2.8076542244022257e-05 - syst_JES_EtaIntercalibration_Stat87: 2.80765435906915e-05 - syst_JES_EtaIntercalibration_Stat88: 8.943443337406133e-05 - syst_JES_EtaIntercalibration_Stat89: 2.7153909666703616e-05 - syst_JES_EtaIntercalibration_Stat9: 0.00013716795134068307 - syst_JES_EtaIntercalibration_Stat90: 3.4742030895588124e-05 - syst_JES_EtaIntercalibration_Stat91: 3.490792747715052e-05 - syst_JES_EtaIntercalibration_Stat92: 3.1073148697791716e-05 - syst_JES_EtaIntercalibration_Stat93: 4.360657898471285e-05 - syst_JES_EtaIntercalibration_Stat94: 0.00010082804309813813 - syst_JES_EtaIntercalibration_Stat95: 0.00024280060764956914 - syst_JES_EtaIntercalibration_Stat96: 0.00010744000872580009 - syst_JES_EtaIntercalibration_Stat97: 6.327808151326966e-05 - syst_JES_EtaIntercalibration_Stat98: 9.338119979417699e-05 - syst_JES_EtaIntercalibration_Stat99: 3.6017417146725004e-05 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.02410685172310976 - syst_JES_Flavour_Comp: 0.09083727869107484 - syst_JES_Flavour_Response: 0.27846818040846244 - syst_JES_Gjet_Generator: 0.3285487026302189 - syst_JES_Gjet_OOC: 0.23331238715507585 - syst_JES_Gjet_Purity: 0.07772929563555815 - syst_JES_Gjet_Stat1: 0.00027195553901327325 - syst_JES_Gjet_Stat10: 0.01718456283994446 - syst_JES_Gjet_Stat11: 0.02922021902724208 - syst_JES_Gjet_Stat12: 0.03999300722626394 - syst_JES_Gjet_Stat13: 0.017104718647203757 - syst_JES_Gjet_Stat14: 0.008139100871717956 - syst_JES_Gjet_Stat15: 0.0013508897318064122 - syst_JES_Gjet_Stat2: 0.0009722375057052674 - syst_JES_Gjet_Stat3: 0.000859728893314631 - syst_JES_Gjet_Stat4: 0.0008085199688319393 - syst_JES_Gjet_Stat5: 0.0007074583715668364 - syst_JES_Gjet_Stat6: 0.0027352906152729 - syst_JES_Gjet_Stat7: 0.00370257153880921 - syst_JES_Gjet_Stat8: 0.0028449521524974725 - syst_JES_Gjet_Stat9: 0.008895161311072442 - syst_JES_Gjet_Veto: 0.11682238345026177 - syst_JES_Gjet_dPhi: 0.017495376532101273 - syst_JES_LArESZee: 0.43500002298850515 - syst_JES_LArEsmear: 0.03227983387503721 - syst_JES_LAr_JVT: 0.04509138609535085 - syst_JES_MJB_Alpha: 0.002984347164791657 - syst_JES_MJB_Asym: 0.010954419199574206 - syst_JES_MJB_Beta: 0.0007571930335125911 - syst_JES_MJB_Fragmentation: 0.029323144442573005 - syst_JES_MJB_Stat1: 0.002794231736989615 - syst_JES_MJB_Stat10: 0.00022396400782268564 - syst_JES_MJB_Stat11: 0.0002814319811251024 - syst_JES_MJB_Stat12: 8.256189844595386e-05 - syst_JES_MJB_Stat13: 0.00040106792778780005 - syst_JES_MJB_Stat14: 4.733601879119113e-05 - syst_JES_MJB_Stat15: 0.0003787995969477602 - syst_JES_MJB_Stat16: 0.0006188598548944664 - syst_JES_MJB_Stat2: 0.004000671803584992 - syst_JES_MJB_Stat3: 0.002386473634360958 - syst_JES_MJB_Stat4: 0.001203487399186215 - syst_JES_MJB_Stat5: 0.0002776194278144093 - syst_JES_MJB_Stat6: 5.0422136755595745e-05 - syst_JES_MJB_Stat7: 0.00024172121855559143 - syst_JES_MJB_Stat8: 0.000137146852679892 - syst_JES_MJB_Stat9: 0.00024373856896273103 - syst_JES_MJB_Threshold: 0.012365878244184681 - syst_JES_Pileup_MuOffset: 0.024855810185950487 - syst_JES_Pileup_NPVOffset: 0.030346664973271775 - syst_JES_Pileup_Pt_term: 0.05826868798934811 - syst_JES_Pileup_Rho_topology: 0.10648136409719779 - syst_JES_PunchThrough_MC15: 0.004012024177394748 - syst_JES_SingleParticle_HighPt: 6.087956368930382e-05 - syst_JES_Zjet_MC: 0.3000016333288871 - syst_JES_Zjet_MuScale: 0.019023203594557885 - syst_JES_Zjet_MuSmearID: 0.003669006132456036 - syst_JES_Zjet_MuSmearMS: 0.055125163718577744 - syst_JES_Zjet_OOC: 0.10853997823382866 - syst_JES_Zjet_Stat1: 0.002791089034767612 - syst_JES_Zjet_Stat10: 0.013948871029585154 - syst_JES_Zjet_Stat11: 0.019871343059793416 - syst_JES_Zjet_Stat12: 0.0928718994098861 - syst_JES_Zjet_Stat13: 0.034093824954088095 - syst_JES_Zjet_Stat2: 0.0006959472614178462 - syst_JES_Zjet_Stat3: 0.001066783186734774 - syst_JES_Zjet_Stat4: 0.0010590691986362363 - syst_JES_Zjet_Stat5: 0.001584808742403953 - syst_JES_Zjet_Stat6: 0.0022955001089087317 - syst_JES_Zjet_Stat7: 0.0023568701173378222 - syst_JES_Zjet_Stat8: 0.002406166245295616 - syst_JES_Zjet_Stat9: 0.006185516530573659 - syst_JES_Zjet_Veto: 0.023087737004739116 - syst_JES_Zjet_dPhi: 0.019672140198768413 + syst_JER_NP8: 8.32038369e-03 + syst_JES_EtaIntercalibration_Modelling: 2.35366156e-01 + syst_JES_EtaIntercalibration_NonClosure: 1.14761502e-02 + syst_JES_EtaIntercalibration_Stat0: 4.58488037e-05 + syst_JES_EtaIntercalibration_Stat1: 4.58488037e-05 + syst_JES_EtaIntercalibration_Stat10: 3.69188075e-04 + syst_JES_EtaIntercalibration_Stat100: 4.70721489e-05 + syst_JES_EtaIntercalibration_Stat101: 7.55125263e-05 + syst_JES_EtaIntercalibration_Stat102: 2.34572904e-05 + syst_JES_EtaIntercalibration_Stat103: 1.42159112e-04 + syst_JES_EtaIntercalibration_Stat104: 1.38805885e-04 + syst_JES_EtaIntercalibration_Stat105: 7.84376386e-05 + syst_JES_EtaIntercalibration_Stat106: 1.28124199e-05 + syst_JES_EtaIntercalibration_Stat107: 2.80765428e-05 + syst_JES_EtaIntercalibration_Stat108: 2.83363512e-05 + syst_JES_EtaIntercalibration_Stat109: 6.75607910e-05 + syst_JES_EtaIntercalibration_Stat11: 3.78916574e-04 + syst_JES_EtaIntercalibration_Stat110: 2.77903002e-04 + syst_JES_EtaIntercalibration_Stat111: 1.77902342e-04 + syst_JES_EtaIntercalibration_Stat112: 4.53876261e-04 + syst_JES_EtaIntercalibration_Stat113: 4.52070650e-04 + syst_JES_EtaIntercalibration_Stat114: 7.36862625e-04 + syst_JES_EtaIntercalibration_Stat115: 1.00173515e-03 + syst_JES_EtaIntercalibration_Stat116: 7.18735631e-04 + syst_JES_EtaIntercalibration_Stat117: 1.17979371e-03 + syst_JES_EtaIntercalibration_Stat118: 6.34317964e-04 + syst_JES_EtaIntercalibration_Stat119: 4.96935054e-04 + syst_JES_EtaIntercalibration_Stat12: 1.34290353e-04 + syst_JES_EtaIntercalibration_Stat120: 6.99427042e-04 + syst_JES_EtaIntercalibration_Stat121: 3.83338336e-04 + syst_JES_EtaIntercalibration_Stat122: 3.86528628e-04 + syst_JES_EtaIntercalibration_Stat123: 1.28286431e-04 + syst_JES_EtaIntercalibration_Stat124: 8.69251926e-05 + syst_JES_EtaIntercalibration_Stat125: 4.27742385e-05 + syst_JES_EtaIntercalibration_Stat126: 6.43857263e-05 + syst_JES_EtaIntercalibration_Stat127: 8.91486551e-05 + syst_JES_EtaIntercalibration_Stat128: 1.76214582e-04 + syst_JES_EtaIntercalibration_Stat129: 7.12427419e-04 + syst_JES_EtaIntercalibration_Stat13: 4.58417329e-05 + syst_JES_EtaIntercalibration_Stat130: 1.21954829e-03 + syst_JES_EtaIntercalibration_Stat131: 1.29232863e-03 + syst_JES_EtaIntercalibration_Stat132: 2.53751236e-03 + syst_JES_EtaIntercalibration_Stat133: 3.08953666e-03 + syst_JES_EtaIntercalibration_Stat134: 4.89808973e-03 + syst_JES_EtaIntercalibration_Stat135: 3.43482674e-03 + syst_JES_EtaIntercalibration_Stat136: 2.88372619e-03 + syst_JES_EtaIntercalibration_Stat137: 2.69619820e-03 + syst_JES_EtaIntercalibration_Stat138: 3.01236004e-03 + syst_JES_EtaIntercalibration_Stat139: 3.18852725e-03 + syst_JES_EtaIntercalibration_Stat14: 4.58417329e-05 + syst_JES_EtaIntercalibration_Stat140: 2.90709907e-03 + syst_JES_EtaIntercalibration_Stat141: 2.18333798e-03 + syst_JES_EtaIntercalibration_Stat142: 1.27505480e-03 + syst_JES_EtaIntercalibration_Stat143: 1.19319033e-03 + syst_JES_EtaIntercalibration_Stat144: 4.88473387e-04 + syst_JES_EtaIntercalibration_Stat145: 2.46275801e-05 + syst_JES_EtaIntercalibration_Stat146: 3.30801553e-04 + syst_JES_EtaIntercalibration_Stat147: 1.23807290e-04 + syst_JES_EtaIntercalibration_Stat148: 1.32732739e-03 + syst_JES_EtaIntercalibration_Stat149: 4.98876267e-04 + syst_JES_EtaIntercalibration_Stat15: 8.43045590e-05 + syst_JES_EtaIntercalibration_Stat150: 2.39976459e-03 + syst_JES_EtaIntercalibration_Stat151: 2.96775172e-03 + syst_JES_EtaIntercalibration_Stat152: 5.43473937e-03 + syst_JES_EtaIntercalibration_Stat153: 4.69073883e-03 + syst_JES_EtaIntercalibration_Stat154: 3.14037940e-03 + syst_JES_EtaIntercalibration_Stat155: 3.12576823e-03 + syst_JES_EtaIntercalibration_Stat156: 4.16957345e-03 + syst_JES_EtaIntercalibration_Stat157: 3.97142377e-03 + syst_JES_EtaIntercalibration_Stat158: 4.01930300e-03 + syst_JES_EtaIntercalibration_Stat159: 2.47161541e-03 + syst_JES_EtaIntercalibration_Stat16: 8.43045590e-05 + syst_JES_EtaIntercalibration_Stat160: 1.85375427e-03 + syst_JES_EtaIntercalibration_Stat161: 1.06686047e-03 + syst_JES_EtaIntercalibration_Stat162: 3.32979924e-04 + syst_JES_EtaIntercalibration_Stat163: 1.76677135e-04 + syst_JES_EtaIntercalibration_Stat164: 1.58008497e-04 + syst_JES_EtaIntercalibration_Stat165: 1.00651712e-03 + syst_JES_EtaIntercalibration_Stat166: 8.05765380e-04 + syst_JES_EtaIntercalibration_Stat167: 2.09628260e-03 + syst_JES_EtaIntercalibration_Stat168: 3.64610295e-03 + syst_JES_EtaIntercalibration_Stat169: 5.21688815e-03 + syst_JES_EtaIntercalibration_Stat17: 3.89023920e-05 + syst_JES_EtaIntercalibration_Stat170: 4.07523260e-03 + syst_JES_EtaIntercalibration_Stat171: 6.14582484e-03 + syst_JES_EtaIntercalibration_Stat172: 4.87475484e-03 + syst_JES_EtaIntercalibration_Stat173: 5.30857163e-03 + syst_JES_EtaIntercalibration_Stat174: 5.59026446e-03 + syst_JES_EtaIntercalibration_Stat175: 5.61354761e-03 + syst_JES_EtaIntercalibration_Stat176: 4.66278039e-03 + syst_JES_EtaIntercalibration_Stat177: 3.88305328e-03 + syst_JES_EtaIntercalibration_Stat178: 2.42413505e-03 + syst_JES_EtaIntercalibration_Stat179: 1.54250616e-03 + syst_JES_EtaIntercalibration_Stat18: 8.43045590e-05 + syst_JES_EtaIntercalibration_Stat180: 8.48072120e-04 + syst_JES_EtaIntercalibration_Stat181: 6.74429033e-05 + syst_JES_EtaIntercalibration_Stat182: 1.97950145e-03 + syst_JES_EtaIntercalibration_Stat183: 2.68807975e-03 + syst_JES_EtaIntercalibration_Stat184: 3.64231218e-03 + syst_JES_EtaIntercalibration_Stat185: 2.04559307e-03 + syst_JES_EtaIntercalibration_Stat186: 7.77742689e-03 + syst_JES_EtaIntercalibration_Stat187: 1.12363907e-02 + syst_JES_EtaIntercalibration_Stat188: 1.08935508e-02 + syst_JES_EtaIntercalibration_Stat189: 7.89271271e-03 + syst_JES_EtaIntercalibration_Stat19: 4.58488037e-05 + syst_JES_EtaIntercalibration_Stat190: 7.78690701e-03 + syst_JES_EtaIntercalibration_Stat191: 1.00293348e-02 + syst_JES_EtaIntercalibration_Stat192: 1.16295125e-02 + syst_JES_EtaIntercalibration_Stat193: 9.45830623e-03 + syst_JES_EtaIntercalibration_Stat194: 4.75964229e-03 + syst_JES_EtaIntercalibration_Stat195: 2.07774367e-03 + syst_JES_EtaIntercalibration_Stat196: 2.45277659e-03 + syst_JES_EtaIntercalibration_Stat197: 1.79046998e-03 + syst_JES_EtaIntercalibration_Stat198: 9.08805165e-04 + syst_JES_EtaIntercalibration_Stat199: 1.30128949e-03 + syst_JES_EtaIntercalibration_Stat2: 4.58488037e-05 + syst_JES_EtaIntercalibration_Stat20: 4.58488037e-05 + syst_JES_EtaIntercalibration_Stat200: 1.97800202e-03 + syst_JES_EtaIntercalibration_Stat201: 3.00945888e-03 + syst_JES_EtaIntercalibration_Stat202: 3.28665404e-03 + syst_JES_EtaIntercalibration_Stat203: 4.46664558e-03 + syst_JES_EtaIntercalibration_Stat204: 2.58687200e-03 + syst_JES_EtaIntercalibration_Stat205: 2.41291871e-03 + syst_JES_EtaIntercalibration_Stat206: 3.49522886e-03 + syst_JES_EtaIntercalibration_Stat207: 3.40353228e-03 + syst_JES_EtaIntercalibration_Stat208: 2.68046055e-03 + syst_JES_EtaIntercalibration_Stat209: 6.46334718e-04 + syst_JES_EtaIntercalibration_Stat21: 4.58488037e-05 + syst_JES_EtaIntercalibration_Stat210: 1.29164501e-03 + syst_JES_EtaIntercalibration_Stat211: 1.08270951e-03 + syst_JES_EtaIntercalibration_Stat212: 3.72919227e-05 + syst_JES_EtaIntercalibration_Stat213: 2.81768845e-04 + syst_JES_EtaIntercalibration_Stat214: 8.90731445e-05 + syst_JES_EtaIntercalibration_Stat215: 2.86908935e-04 + syst_JES_EtaIntercalibration_Stat216: 7.30816945e-05 + syst_JES_EtaIntercalibration_Stat217: 6.10046342e-04 + syst_JES_EtaIntercalibration_Stat218: 4.55541488e-04 + syst_JES_EtaIntercalibration_Stat219: 6.56315601e-04 + syst_JES_EtaIntercalibration_Stat22: 4.58488037e-05 + syst_JES_EtaIntercalibration_Stat220: 3.80689133e-04 + syst_JES_EtaIntercalibration_Stat221: 1.79421005e-04 + syst_JES_EtaIntercalibration_Stat222: 1.99240382e-04 + syst_JES_EtaIntercalibration_Stat223: 2.28884600e-04 + syst_JES_EtaIntercalibration_Stat224: 8.32831333e-05 + syst_JES_EtaIntercalibration_Stat225: 8.69321391e-05 + syst_JES_EtaIntercalibration_Stat226: 1.06804574e-04 + syst_JES_EtaIntercalibration_Stat227: 1.72468751e-04 + syst_JES_EtaIntercalibration_Stat228: 2.29166427e-04 + syst_JES_EtaIntercalibration_Stat229: 1.43701972e-04 + syst_JES_EtaIntercalibration_Stat23: 4.65657200e-05 + syst_JES_EtaIntercalibration_Stat230: 1.07705351e-04 + syst_JES_EtaIntercalibration_Stat231: 2.02252960e-04 + syst_JES_EtaIntercalibration_Stat232: 1.35769456e-04 + syst_JES_EtaIntercalibration_Stat233: 1.54625484e-04 + syst_JES_EtaIntercalibration_Stat234: 1.16611050e-04 + syst_JES_EtaIntercalibration_Stat235: 8.39961349e-05 + syst_JES_EtaIntercalibration_Stat236: 1.11873162e-04 + syst_JES_EtaIntercalibration_Stat237: 4.21490056e-04 + syst_JES_EtaIntercalibration_Stat238: 5.16245232e-04 + syst_JES_EtaIntercalibration_Stat239: 5.20817941e-04 + syst_JES_EtaIntercalibration_Stat24: 8.43294046e-05 + syst_JES_EtaIntercalibration_Stat240: 3.78886114e-04 + syst_JES_EtaIntercalibration_Stat241: 6.10120259e-04 + syst_JES_EtaIntercalibration_Stat242: 2.71357305e-05 + syst_JES_EtaIntercalibration_Stat243: 3.50880332e-04 + syst_JES_EtaIntercalibration_Stat244: 6.36691731e-05 + syst_JES_EtaIntercalibration_Stat245: 5.56501411e-05 + syst_JES_EtaIntercalibration_Stat25: 2.66373840e-04 + syst_JES_EtaIntercalibration_Stat26: 1.45982233e-04 + syst_JES_EtaIntercalibration_Stat27: 1.59410173e-04 + syst_JES_EtaIntercalibration_Stat28: 1.44945124e-04 + syst_JES_EtaIntercalibration_Stat29: 3.65887978e-04 + syst_JES_EtaIntercalibration_Stat3: 4.58488037e-05 + syst_JES_EtaIntercalibration_Stat30: 1.53929465e-04 + syst_JES_EtaIntercalibration_Stat31: 5.39504452e-05 + syst_JES_EtaIntercalibration_Stat32: 4.75881191e-05 + syst_JES_EtaIntercalibration_Stat33: 3.70817236e-04 + syst_JES_EtaIntercalibration_Stat34: 6.92838203e-05 + syst_JES_EtaIntercalibration_Stat35: 9.87313592e-05 + syst_JES_EtaIntercalibration_Stat36: 3.83272057e-05 + syst_JES_EtaIntercalibration_Stat37: 1.37029623e-04 + syst_JES_EtaIntercalibration_Stat38: 1.51933809e-04 + syst_JES_EtaIntercalibration_Stat39: 1.51985176e-04 + syst_JES_EtaIntercalibration_Stat4: 4.58488037e-05 + syst_JES_EtaIntercalibration_Stat40: 8.33927263e-05 + syst_JES_EtaIntercalibration_Stat41: 4.58417329e-05 + syst_JES_EtaIntercalibration_Stat42: 4.58488037e-05 + syst_JES_EtaIntercalibration_Stat43: 4.58488037e-05 + syst_JES_EtaIntercalibration_Stat44: 4.58488037e-05 + syst_JES_EtaIntercalibration_Stat45: 4.58488037e-05 + syst_JES_EtaIntercalibration_Stat46: 1.52750513e-04 + syst_JES_EtaIntercalibration_Stat47: 8.68738983e-05 + syst_JES_EtaIntercalibration_Stat48: 2.41645422e-04 + syst_JES_EtaIntercalibration_Stat49: 2.09707550e-04 + syst_JES_EtaIntercalibration_Stat5: 4.58488037e-05 + syst_JES_EtaIntercalibration_Stat50: 2.16420547e-05 + syst_JES_EtaIntercalibration_Stat51: 2.98714680e-04 + syst_JES_EtaIntercalibration_Stat52: 3.60274606e-05 + syst_JES_EtaIntercalibration_Stat53: 8.33041674e-05 + syst_JES_EtaIntercalibration_Stat54: 6.31211624e-05 + syst_JES_EtaIntercalibration_Stat55: 6.55589357e-05 + syst_JES_EtaIntercalibration_Stat56: 6.64269331e-05 + syst_JES_EtaIntercalibration_Stat57: 7.47491690e-05 + syst_JES_EtaIntercalibration_Stat58: 1.30171218e-05 + syst_JES_EtaIntercalibration_Stat59: 8.11000907e-05 + syst_JES_EtaIntercalibration_Stat6: 3.78923725e-04 + syst_JES_EtaIntercalibration_Stat60: 4.48878915e-05 + syst_JES_EtaIntercalibration_Stat61: 8.84202914e-05 + syst_JES_EtaIntercalibration_Stat62: 8.33751540e-05 + syst_JES_EtaIntercalibration_Stat63: 1.45304285e-04 + syst_JES_EtaIntercalibration_Stat64: 4.58488037e-05 + syst_JES_EtaIntercalibration_Stat65: 4.58488037e-05 + syst_JES_EtaIntercalibration_Stat66: 4.58488037e-05 + syst_JES_EtaIntercalibration_Stat67: 4.58417329e-05 + syst_JES_EtaIntercalibration_Stat68: 2.03374608e-08 + syst_JES_EtaIntercalibration_Stat69: 3.60098820e-05 + syst_JES_EtaIntercalibration_Stat7: 9.25584810e-05 + syst_JES_EtaIntercalibration_Stat70: 1.97622932e-04 + syst_JES_EtaIntercalibration_Stat71: 1.82571366e-04 + syst_JES_EtaIntercalibration_Stat72: 2.19359588e-04 + syst_JES_EtaIntercalibration_Stat73: 3.28733025e-05 + syst_JES_EtaIntercalibration_Stat74: 2.21262864e-04 + syst_JES_EtaIntercalibration_Stat75: 7.71226480e-05 + syst_JES_EtaIntercalibration_Stat76: 6.58539559e-05 + syst_JES_EtaIntercalibration_Stat77: 1.17392990e-04 + syst_JES_EtaIntercalibration_Stat78: 3.05847070e-05 + syst_JES_EtaIntercalibration_Stat79: 7.48876764e-05 + syst_JES_EtaIntercalibration_Stat8: 9.74657720e-05 + syst_JES_EtaIntercalibration_Stat80: 1.72837779e-04 + syst_JES_EtaIntercalibration_Stat81: 3.58329722e-05 + syst_JES_EtaIntercalibration_Stat82: 9.97965824e-05 + syst_JES_EtaIntercalibration_Stat83: 1.94969079e-04 + syst_JES_EtaIntercalibration_Stat84: 8.85249357e-05 + syst_JES_EtaIntercalibration_Stat85: 8.89618549e-05 + syst_JES_EtaIntercalibration_Stat86: 2.80765422e-05 + syst_JES_EtaIntercalibration_Stat87: 2.80765436e-05 + syst_JES_EtaIntercalibration_Stat88: 8.94344334e-05 + syst_JES_EtaIntercalibration_Stat89: 2.71539097e-05 + syst_JES_EtaIntercalibration_Stat9: 1.37167951e-04 + syst_JES_EtaIntercalibration_Stat90: 3.47420309e-05 + syst_JES_EtaIntercalibration_Stat91: 3.49079275e-05 + syst_JES_EtaIntercalibration_Stat92: 3.10731487e-05 + syst_JES_EtaIntercalibration_Stat93: 4.36065790e-05 + syst_JES_EtaIntercalibration_Stat94: 1.00828043e-04 + syst_JES_EtaIntercalibration_Stat95: 2.42800608e-04 + syst_JES_EtaIntercalibration_Stat96: 1.07440009e-04 + syst_JES_EtaIntercalibration_Stat97: 6.32780815e-05 + syst_JES_EtaIntercalibration_Stat98: 9.33811998e-05 + syst_JES_EtaIntercalibration_Stat99: 3.60174171e-05 + syst_JES_EtaIntercalibration_TotalStat_MJB: 2.41068517e-02 + syst_JES_Flavour_Comp: 9.08372787e-02 + syst_JES_Flavour_Response: 2.78468180e-01 + syst_JES_Gjet_Generator: 3.28548703e-01 + syst_JES_Gjet_OOC: 2.33312387e-01 + syst_JES_Gjet_Purity: 7.77292956e-02 + syst_JES_Gjet_Stat1: 2.71955539e-04 + syst_JES_Gjet_Stat10: 1.71845628e-02 + syst_JES_Gjet_Stat11: 2.92202190e-02 + syst_JES_Gjet_Stat12: 3.99930072e-02 + syst_JES_Gjet_Stat13: 1.71047186e-02 + syst_JES_Gjet_Stat14: 8.13910087e-03 + syst_JES_Gjet_Stat15: 1.35088973e-03 + syst_JES_Gjet_Stat2: 9.72237506e-04 + syst_JES_Gjet_Stat3: 8.59728893e-04 + syst_JES_Gjet_Stat4: 8.08519969e-04 + syst_JES_Gjet_Stat5: 7.07458372e-04 + syst_JES_Gjet_Stat6: 2.73529062e-03 + syst_JES_Gjet_Stat7: 3.70257154e-03 + syst_JES_Gjet_Stat8: 2.84495215e-03 + syst_JES_Gjet_Stat9: 8.89516131e-03 + syst_JES_Gjet_Veto: 1.16822383e-01 + syst_JES_Gjet_dPhi: 1.74953765e-02 + syst_JES_LArESZee: 4.35000023e-01 + syst_JES_LArEsmear: 3.22798339e-02 + syst_JES_LAr_JVT: 4.50913861e-02 + syst_JES_MJB_Alpha: 2.98434716e-03 + syst_JES_MJB_Asym: 1.09544192e-02 + syst_JES_MJB_Beta: 7.57193034e-04 + syst_JES_MJB_Fragmentation: 2.93231444e-02 + syst_JES_MJB_Stat1: 2.79423174e-03 + syst_JES_MJB_Stat10: 2.23964008e-04 + syst_JES_MJB_Stat11: 2.81431981e-04 + syst_JES_MJB_Stat12: 8.25618984e-05 + syst_JES_MJB_Stat13: 4.01067928e-04 + syst_JES_MJB_Stat14: 4.73360188e-05 + syst_JES_MJB_Stat15: 3.78799597e-04 + syst_JES_MJB_Stat16: 6.18859855e-04 + syst_JES_MJB_Stat2: 4.00067180e-03 + syst_JES_MJB_Stat3: 2.38647363e-03 + syst_JES_MJB_Stat4: 1.20348740e-03 + syst_JES_MJB_Stat5: 2.77619428e-04 + syst_JES_MJB_Stat6: 5.04221368e-05 + syst_JES_MJB_Stat7: 2.41721219e-04 + syst_JES_MJB_Stat8: 1.37146853e-04 + syst_JES_MJB_Stat9: 2.43738569e-04 + syst_JES_MJB_Threshold: 1.23658782e-02 + syst_JES_Pileup_MuOffset: 2.48558102e-02 + syst_JES_Pileup_NPVOffset: 3.03466650e-02 + syst_JES_Pileup_Pt_term: 5.82686880e-02 + syst_JES_Pileup_Rho_topology: 1.06481364e-01 + syst_JES_PunchThrough_MC15: 4.01202418e-03 + syst_JES_SingleParticle_HighPt: 6.08795637e-05 + syst_JES_Zjet_MC: 3.00001633e-01 + syst_JES_Zjet_MuScale: 1.90232036e-02 + syst_JES_Zjet_MuSmearID: 3.66900613e-03 + syst_JES_Zjet_MuSmearMS: 5.51251637e-02 + syst_JES_Zjet_OOC: 1.08539978e-01 + syst_JES_Zjet_Stat1: 2.79108903e-03 + syst_JES_Zjet_Stat10: 1.39488710e-02 + syst_JES_Zjet_Stat11: 1.98713431e-02 + syst_JES_Zjet_Stat12: 9.28718994e-02 + syst_JES_Zjet_Stat13: 3.40938250e-02 + syst_JES_Zjet_Stat2: 6.95947261e-04 + syst_JES_Zjet_Stat3: 1.06678319e-03 + syst_JES_Zjet_Stat4: 1.05906920e-03 + syst_JES_Zjet_Stat5: 1.58480874e-03 + syst_JES_Zjet_Stat6: 2.29550011e-03 + syst_JES_Zjet_Stat7: 2.35687012e-03 + syst_JES_Zjet_Stat8: 2.40616625e-03 + syst_JES_Zjet_Stat9: 6.18551653e-03 + syst_JES_Zjet_Veto: 2.30877370e-02 + syst_JES_Zjet_dPhi: 1.96721402e-02 syst_PRW: 0.0 syst_Unfolding_bias: 0.0 - syst_cleaning: 0.1585692514329307 + syst_cleaning: 1.58569251e-01 syst_lumi: 0.3794 - stat: 0.05686 - syst_JER_CROSS_CALIB_FORWARD: 5.852e-11 - syst_JER_NOISE_FORWARD: 4.601e-11 - syst_JER_NP0: 0.018546651314994844 - syst_JER_NP1: 0.001496309683020196 - syst_JER_NP2: 0.004864842726132058 - syst_JER_NP3: 0.006181048191852253 - syst_JER_NP4: 0.001438719941475755 + syst_JER_CROSS_CALIB_FORWARD: 5.85200000e-11 + syst_JER_NOISE_FORWARD: 4.60100000e-11 + syst_JER_NP0: 1.85466513e-02 + syst_JER_NP1: 1.49630968e-03 + syst_JER_NP2: 4.86484273e-03 + syst_JER_NP3: 6.18104819e-03 + syst_JER_NP4: 1.43871994e-03 syst_JER_NP5: 0.0 syst_JER_NP6: 0.0 syst_JER_NP7: 0.0 - syst_JER_NP8: 0.0038372191753925137 - syst_JES_EtaIntercalibration_Modelling: 0.13220357966031027 - syst_JES_EtaIntercalibration_NonClosure: 0.00450921464891615 - syst_JES_EtaIntercalibration_Stat0: 2.3277955236661148e-05 - syst_JES_EtaIntercalibration_Stat1: 2.3277955236661148e-05 - syst_JES_EtaIntercalibration_Stat10: 0.00019824733812840969 - syst_JES_EtaIntercalibration_Stat100: 2.3806941739753134e-05 - syst_JES_EtaIntercalibration_Stat101: 1.4139040356668481e-06 - syst_JES_EtaIntercalibration_Stat102: 3.1504090575669696e-06 - syst_JES_EtaIntercalibration_Stat103: 7.844698639845894e-06 - syst_JES_EtaIntercalibration_Stat104: 1.6255808769482988e-05 - syst_JES_EtaIntercalibration_Stat105: 1.69568452169731e-05 - syst_JES_EtaIntercalibration_Stat106: 2.7251924832008083e-06 - syst_JES_EtaIntercalibration_Stat107: 1.425477811383323e-05 - syst_JES_EtaIntercalibration_Stat108: 1.439334221089737e-05 - syst_JES_EtaIntercalibration_Stat109: 3.301452147161912e-05 - syst_JES_EtaIntercalibration_Stat11: 0.00020325348177232378 - syst_JES_EtaIntercalibration_Stat110: 4.6962580601474615e-05 - syst_JES_EtaIntercalibration_Stat111: 9.976508607724447e-06 - syst_JES_EtaIntercalibration_Stat112: 8.830287198472085e-05 - syst_JES_EtaIntercalibration_Stat113: 8.69240707456801e-05 - syst_JES_EtaIntercalibration_Stat114: 0.0001471470756590154 - syst_JES_EtaIntercalibration_Stat115: 0.000190923600099621 - syst_JES_EtaIntercalibration_Stat116: 0.00012026221601151377 - syst_JES_EtaIntercalibration_Stat117: 0.00024499823509568393 - syst_JES_EtaIntercalibration_Stat118: 0.00010430300894509229 - syst_JES_EtaIntercalibration_Stat119: 4.938006986629322e-05 - syst_JES_EtaIntercalibration_Stat12: 6.839271470233513e-05 - syst_JES_EtaIntercalibration_Stat120: 0.00013980802578893674 - syst_JES_EtaIntercalibration_Stat121: 2.0700663636704985e-05 - syst_JES_EtaIntercalibration_Stat122: 8.113173038337096e-05 - syst_JES_EtaIntercalibration_Stat123: 8.722328636096842e-06 - syst_JES_EtaIntercalibration_Stat124: 8.755305934117893e-06 - syst_JES_EtaIntercalibration_Stat125: 3.124844986155313e-05 - syst_JES_EtaIntercalibration_Stat126: 1.460095366294613e-05 - syst_JES_EtaIntercalibration_Stat127: 1.1553644911888196e-05 - syst_JES_EtaIntercalibration_Stat128: 3.2775391302011935e-05 - syst_JES_EtaIntercalibration_Stat129: 0.00010030508162600735 - syst_JES_EtaIntercalibration_Stat13: 2.3277955236661148e-05 - syst_JES_EtaIntercalibration_Stat130: 0.0001961438214678199 - syst_JES_EtaIntercalibration_Stat131: 0.00020355798209601114 - syst_JES_EtaIntercalibration_Stat132: 0.000526802059601137 - syst_JES_EtaIntercalibration_Stat133: 0.0006574673128757048 - syst_JES_EtaIntercalibration_Stat134: 0.0010776571393537001 - syst_JES_EtaIntercalibration_Stat135: 0.0007885782190119126 - syst_JES_EtaIntercalibration_Stat136: 0.0007201970615741222 - syst_JES_EtaIntercalibration_Stat137: 0.0007507515884099081 - syst_JES_EtaIntercalibration_Stat138: 0.000726959820072609 - syst_JES_EtaIntercalibration_Stat139: 0.0007913233015019842 - syst_JES_EtaIntercalibration_Stat14: 2.3277955236661148e-05 - syst_JES_EtaIntercalibration_Stat140: 0.0007028921165442105 - syst_JES_EtaIntercalibration_Stat141: 0.000521578687735609 - syst_JES_EtaIntercalibration_Stat142: 0.00021443208715115375 - syst_JES_EtaIntercalibration_Stat143: 0.000309143668057426 - syst_JES_EtaIntercalibration_Stat144: 2.158981025275581e-05 - syst_JES_EtaIntercalibration_Stat145: 1.4744827262467338e-05 - syst_JES_EtaIntercalibration_Stat146: 3.61470214955534e-05 - syst_JES_EtaIntercalibration_Stat147: 2.200599391075077e-05 - syst_JES_EtaIntercalibration_Stat148: 0.0002122670834114418 - syst_JES_EtaIntercalibration_Stat149: 0.00015118033040048564 - syst_JES_EtaIntercalibration_Stat15: 1.5065964315303552e-05 - syst_JES_EtaIntercalibration_Stat150: 0.0005350302865259125 - syst_JES_EtaIntercalibration_Stat151: 0.000828278660642057 - syst_JES_EtaIntercalibration_Stat152: 0.0013387969254147548 - syst_JES_EtaIntercalibration_Stat153: 0.0012744328964288392 - syst_JES_EtaIntercalibration_Stat154: 0.0008859859253961092 - syst_JES_EtaIntercalibration_Stat155: 0.000898359575838094 - syst_JES_EtaIntercalibration_Stat156: 0.0012048882562295973 - syst_JES_EtaIntercalibration_Stat157: 0.0011570812244609278 - syst_JES_EtaIntercalibration_Stat158: 0.001020208345143285 - syst_JES_EtaIntercalibration_Stat159: 0.0006208439477839822 - syst_JES_EtaIntercalibration_Stat16: 1.5065964315303552e-05 - syst_JES_EtaIntercalibration_Stat160: 0.0005558829193274426 - syst_JES_EtaIntercalibration_Stat161: 0.00029349536078105223 - syst_JES_EtaIntercalibration_Stat162: 9.636318902983649e-05 - syst_JES_EtaIntercalibration_Stat163: 4.0527184395168636e-05 - syst_JES_EtaIntercalibration_Stat164: 2.712219539417855e-05 - syst_JES_EtaIntercalibration_Stat165: 0.00030362407624396324 - syst_JES_EtaIntercalibration_Stat166: 0.00019353467983800732 - syst_JES_EtaIntercalibration_Stat167: 0.0005993287641186597 - syst_JES_EtaIntercalibration_Stat168: 0.0010504550061758951 - syst_JES_EtaIntercalibration_Stat169: 0.0016886809549171804 - syst_JES_EtaIntercalibration_Stat17: 1.5732348210216427e-05 - syst_JES_EtaIntercalibration_Stat170: 0.001540807070985852 - syst_JES_EtaIntercalibration_Stat171: 0.0019869453943176193 - syst_JES_EtaIntercalibration_Stat172: 0.0016544135879519365 - syst_JES_EtaIntercalibration_Stat173: 0.0019338009204672543 - syst_JES_EtaIntercalibration_Stat174: 0.0021683226881624423 - syst_JES_EtaIntercalibration_Stat175: 0.0020553765786346795 - syst_JES_EtaIntercalibration_Stat176: 0.0017538057902743963 - syst_JES_EtaIntercalibration_Stat177: 0.0015025592126435483 - syst_JES_EtaIntercalibration_Stat178: 0.0009123550336902843 - syst_JES_EtaIntercalibration_Stat179: 0.0003884517054924589 - syst_JES_EtaIntercalibration_Stat18: 1.5065964315303552e-05 - syst_JES_EtaIntercalibration_Stat180: 0.0003186807924867767 - syst_JES_EtaIntercalibration_Stat181: 5.01684087922868e-05 - syst_JES_EtaIntercalibration_Stat182: 0.0009173337392001888 - syst_JES_EtaIntercalibration_Stat183: 0.0011739097527067404 - syst_JES_EtaIntercalibration_Stat184: 0.0016812791878507269 - syst_JES_EtaIntercalibration_Stat185: 0.001889745220922651 - syst_JES_EtaIntercalibration_Stat186: 0.003860391009988496 - syst_JES_EtaIntercalibration_Stat187: 0.005303783248776292 - syst_JES_EtaIntercalibration_Stat188: 0.005240118128439473 - syst_JES_EtaIntercalibration_Stat189: 0.004082007196220996 - syst_JES_EtaIntercalibration_Stat19: 2.3277955236661148e-05 - syst_JES_EtaIntercalibration_Stat190: 0.00413650489544011 - syst_JES_EtaIntercalibration_Stat191: 0.00521172447468206 - syst_JES_EtaIntercalibration_Stat192: 0.0063185302681873735 - syst_JES_EtaIntercalibration_Stat193: 0.005214808026188501 - syst_JES_EtaIntercalibration_Stat194: 0.002505613798553161 - syst_JES_EtaIntercalibration_Stat195: 0.0017814427523779707 - syst_JES_EtaIntercalibration_Stat196: 0.001297519968054442 - syst_JES_EtaIntercalibration_Stat197: 0.0007562559024563048 - syst_JES_EtaIntercalibration_Stat198: 0.0009218688494981268 - syst_JES_EtaIntercalibration_Stat199: 0.0010095614196273547 - syst_JES_EtaIntercalibration_Stat2: 2.3277955236661148e-05 - syst_JES_EtaIntercalibration_Stat20: 2.3277955236661148e-05 - syst_JES_EtaIntercalibration_Stat200: 0.0010501424046290104 - syst_JES_EtaIntercalibration_Stat201: 0.002261741530325691 - syst_JES_EtaIntercalibration_Stat202: 0.002992530367431549 - syst_JES_EtaIntercalibration_Stat203: 0.0035600749992099885 - syst_JES_EtaIntercalibration_Stat204: 0.002464223204176115 - syst_JES_EtaIntercalibration_Stat205: 0.002092074090466205 - syst_JES_EtaIntercalibration_Stat206: 0.0032386705605850063 - syst_JES_EtaIntercalibration_Stat207: 0.0033673804607587776 - syst_JES_EtaIntercalibration_Stat208: 0.002845230175223087 - syst_JES_EtaIntercalibration_Stat209: 0.00033111573852657626 - syst_JES_EtaIntercalibration_Stat21: 2.3277955236661148e-05 - syst_JES_EtaIntercalibration_Stat210: 0.0009595211970040057 - syst_JES_EtaIntercalibration_Stat211: 0.0004875942857540478 - syst_JES_EtaIntercalibration_Stat212: 1.6042931363999534e-05 - syst_JES_EtaIntercalibration_Stat213: 0.0002426659844312754 - syst_JES_EtaIntercalibration_Stat214: 0.0003573271994964839 - syst_JES_EtaIntercalibration_Stat215: 0.00022831913865245724 - syst_JES_EtaIntercalibration_Stat216: 0.000298385650460524 - syst_JES_EtaIntercalibration_Stat217: 0.0001292243943688652 - syst_JES_EtaIntercalibration_Stat218: 0.00022173012667429747 - syst_JES_EtaIntercalibration_Stat219: 7.086738653993104e-05 - syst_JES_EtaIntercalibration_Stat22: 2.3277955236661148e-05 - syst_JES_EtaIntercalibration_Stat220: 0.000275720089039591 - syst_JES_EtaIntercalibration_Stat221: 0.00015813427047923546 - syst_JES_EtaIntercalibration_Stat222: 0.00033111603113561265 - syst_JES_EtaIntercalibration_Stat223: 0.00012380000111066234 - syst_JES_EtaIntercalibration_Stat224: 4.714408022222938e-05 - syst_JES_EtaIntercalibration_Stat225: 0.00010699418336993839 - syst_JES_EtaIntercalibration_Stat226: 0.00020225812635095775 - syst_JES_EtaIntercalibration_Stat227: 0.0001865953576592944 - syst_JES_EtaIntercalibration_Stat228: 0.00025732982935330293 - syst_JES_EtaIntercalibration_Stat229: 0.00022341049365461776 - syst_JES_EtaIntercalibration_Stat23: 2.322142114514097e-05 - syst_JES_EtaIntercalibration_Stat230: 0.00017956483508749701 - syst_JES_EtaIntercalibration_Stat231: 0.0003146255075482596 - syst_JES_EtaIntercalibration_Stat232: 0.0002485784182104312 - syst_JES_EtaIntercalibration_Stat233: 0.00020305799048547682 - syst_JES_EtaIntercalibration_Stat234: 9.749549072649464e-05 - syst_JES_EtaIntercalibration_Stat235: 4.7414191765229954e-05 - syst_JES_EtaIntercalibration_Stat236: 5.132932568230368e-05 - syst_JES_EtaIntercalibration_Stat237: 0.0001713297148774841 - syst_JES_EtaIntercalibration_Stat238: 0.00017151507244262822 - syst_JES_EtaIntercalibration_Stat239: 0.0001762950046796562 - syst_JES_EtaIntercalibration_Stat24: 1.507301584786535e-05 - syst_JES_EtaIntercalibration_Stat240: 0.00019728058698209494 - syst_JES_EtaIntercalibration_Stat241: 0.0002849582951942266 - syst_JES_EtaIntercalibration_Stat242: 1.3229695083409897e-05 - syst_JES_EtaIntercalibration_Stat243: 0.00015025780911486763 - syst_JES_EtaIntercalibration_Stat244: 3.235821224975199e-05 - syst_JES_EtaIntercalibration_Stat245: 1.8098104541636397e-05 - syst_JES_EtaIntercalibration_Stat25: 2.719704631021538e-05 - syst_JES_EtaIntercalibration_Stat26: 1.8920057630726182e-05 - syst_JES_EtaIntercalibration_Stat27: 1.9820203984823163e-05 - syst_JES_EtaIntercalibration_Stat28: 1.8911571028076968e-05 - syst_JES_EtaIntercalibration_Stat29: 0.0001986415331696773 - syst_JES_EtaIntercalibration_Stat3: 2.3277955236661148e-05 - syst_JES_EtaIntercalibration_Stat30: 1.9454790001436664e-05 - syst_JES_EtaIntercalibration_Stat31: 1.2097391783363203e-05 - syst_JES_EtaIntercalibration_Stat32: 8.140019934965172e-05 - syst_JES_EtaIntercalibration_Stat33: 0.00020264508943516074 - syst_JES_EtaIntercalibration_Stat34: 5.4574019303169336e-05 - syst_JES_EtaIntercalibration_Stat35: 1.2213529801310512e-05 - syst_JES_EtaIntercalibration_Stat36: 1.9629911786607704e-05 - syst_JES_EtaIntercalibration_Stat37: 1.1191751192284432e-05 - syst_JES_EtaIntercalibration_Stat38: 1.9306526273516944e-05 - syst_JES_EtaIntercalibration_Stat39: 1.931299034328967e-05 - syst_JES_EtaIntercalibration_Stat4: 2.3277955236661148e-05 - syst_JES_EtaIntercalibration_Stat40: 1.5038112805468643e-05 - syst_JES_EtaIntercalibration_Stat41: 2.3277955236661148e-05 - syst_JES_EtaIntercalibration_Stat42: 2.3277955236661148e-05 - syst_JES_EtaIntercalibration_Stat43: 2.3277955236661148e-05 - syst_JES_EtaIntercalibration_Stat44: 2.3277955236661148e-05 - syst_JES_EtaIntercalibration_Stat45: 2.3277955236661148e-05 - syst_JES_EtaIntercalibration_Stat46: 1.9361847174275498e-05 - syst_JES_EtaIntercalibration_Stat47: 1.1046640518727854e-05 - syst_JES_EtaIntercalibration_Stat48: 2.5546528139847105e-05 - syst_JES_EtaIntercalibration_Stat49: 2.0785730682369578e-05 - syst_JES_EtaIntercalibration_Stat5: 2.3277955236661148e-05 - syst_JES_EtaIntercalibration_Stat50: 8.038451227970964e-06 - syst_JES_EtaIntercalibration_Stat51: 7.223826734321637e-05 - syst_JES_EtaIntercalibration_Stat52: 3.343310859095245e-05 - syst_JES_EtaIntercalibration_Stat53: 1.2429724484074455e-05 - syst_JES_EtaIntercalibration_Stat54: 7.07974401016243e-05 - syst_JES_EtaIntercalibration_Stat55: 5.5023089280841914e-05 - syst_JES_EtaIntercalibration_Stat56: 7.145962139623905e-05 - syst_JES_EtaIntercalibration_Stat57: 1.623773171239028e-05 - syst_JES_EtaIntercalibration_Stat58: 2.734938231361477e-06 - syst_JES_EtaIntercalibration_Stat59: 3.201913782443663e-06 - syst_JES_EtaIntercalibration_Stat6: 0.00020308061758330921 - syst_JES_EtaIntercalibration_Stat60: 2.2932677013379836e-05 - syst_JES_EtaIntercalibration_Stat61: 1.1511174325040077e-05 - syst_JES_EtaIntercalibration_Stat62: 1.5026129466699002e-05 - syst_JES_EtaIntercalibration_Stat63: 1.885785875305041e-05 - syst_JES_EtaIntercalibration_Stat64: 2.3277955236661148e-05 - syst_JES_EtaIntercalibration_Stat65: 2.3277955236661148e-05 - syst_JES_EtaIntercalibration_Stat66: 2.3277955236661148e-05 - syst_JES_EtaIntercalibration_Stat67: 2.3277955236661148e-05 - syst_JES_EtaIntercalibration_Stat68: 8.135309953620206e-10 - syst_JES_EtaIntercalibration_Stat69: 1.5471438871352594e-05 - syst_JES_EtaIntercalibration_Stat7: 1.5351980938953776e-05 - syst_JES_EtaIntercalibration_Stat70: 1.5137964456401455e-05 - syst_JES_EtaIntercalibration_Stat71: 4.773279375858907e-05 - syst_JES_EtaIntercalibration_Stat72: 3.729953173074661e-05 - syst_JES_EtaIntercalibration_Stat73: 2.3646209373002514e-05 - syst_JES_EtaIntercalibration_Stat74: 6.794463297357691e-05 - syst_JES_EtaIntercalibration_Stat75: 8.393693378211227e-05 - syst_JES_EtaIntercalibration_Stat76: 7.137993001955575e-05 - syst_JES_EtaIntercalibration_Stat77: 5.889452680146348e-06 - syst_JES_EtaIntercalibration_Stat78: 1.4484698503938562e-05 - syst_JES_EtaIntercalibration_Stat79: 5.563526192981458e-05 - syst_JES_EtaIntercalibration_Stat8: 1.212808943592881e-05 - syst_JES_EtaIntercalibration_Stat80: 8.782800469177059e-05 - syst_JES_EtaIntercalibration_Stat81: 4.091972232310478e-06 - syst_JES_EtaIntercalibration_Stat82: 1.1644413447858998e-05 - syst_JES_EtaIntercalibration_Stat83: 2.3552152067274023e-05 - syst_JES_EtaIntercalibration_Stat84: 1.1496479441030926e-05 - syst_JES_EtaIntercalibration_Stat85: 1.1530410439419954e-05 - syst_JES_EtaIntercalibration_Stat86: 1.4254778093464312e-05 - syst_JES_EtaIntercalibration_Stat87: 1.4254778146291861e-05 - syst_JES_EtaIntercalibration_Stat88: 1.157616114428143e-05 - syst_JES_EtaIntercalibration_Stat89: 1.3850346266273453e-05 - syst_JES_EtaIntercalibration_Stat9: 6.536211583746352e-05 - syst_JES_EtaIntercalibration_Stat90: 1.10560492574009e-05 - syst_JES_EtaIntercalibration_Stat91: 1.120342032004066e-05 - syst_JES_EtaIntercalibration_Stat92: 1.1979208102926796e-05 - syst_JES_EtaIntercalibration_Stat93: 2.8288634715729923e-05 - syst_JES_EtaIntercalibration_Stat94: 2.190397066173163e-05 - syst_JES_EtaIntercalibration_Stat95: 5.190756664495071e-05 - syst_JES_EtaIntercalibration_Stat96: 7.88318768012027e-05 - syst_JES_EtaIntercalibration_Stat97: 6.783643619029526e-05 - syst_JES_EtaIntercalibration_Stat98: 4.9874010265868936e-05 - syst_JES_EtaIntercalibration_Stat99: 2.671724612917697e-05 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.01865921957103244 - syst_JES_Flavour_Comp: 0.06407275766657776 - syst_JES_Flavour_Response: 0.11512088950316532 - syst_JES_Gjet_Generator: 0.16945650621914757 - syst_JES_Gjet_OOC: 0.12435162845737083 - syst_JES_Gjet_Purity: 0.042459456838259246 - syst_JES_Gjet_Stat1: 0.00021963768136410472 - syst_JES_Gjet_Stat10: 0.006770684806576067 - syst_JES_Gjet_Stat11: 0.011557926490075978 - syst_JES_Gjet_Stat12: 0.023477007901348927 - syst_JES_Gjet_Stat13: 0.018372027650752108 - syst_JES_Gjet_Stat14: 0.0024074357873056554 - syst_JES_Gjet_Stat15: 0.0029128300671340235 - syst_JES_Gjet_Stat2: 0.0008195151647163096 - syst_JES_Gjet_Stat3: 0.00044466725762079676 - syst_JES_Gjet_Stat4: 0.00047305681476964267 - syst_JES_Gjet_Stat5: 0.00028537103479505413 - syst_JES_Gjet_Stat6: 0.0015035480537714783 - syst_JES_Gjet_Stat7: 0.0018992022009254306 - syst_JES_Gjet_Stat8: 0.0011469351289414757 - syst_JES_Gjet_Stat9: 0.003161387511837168 - syst_JES_Gjet_Veto: 0.07224086516646931 - syst_JES_Gjet_dPhi: 0.008862453441344557 - syst_JES_LArESZee: 0.23386175403430123 - syst_JES_LArEsmear: 0.017526942117779703 - syst_JES_LAr_JVT: 0.023532930119303037 - syst_JES_MJB_Alpha: 0.002049257670474848 - syst_JES_MJB_Asym: 0.006457532404099882 - syst_JES_MJB_Beta: 0.0005760054231515533 - syst_JES_MJB_Fragmentation: 0.021130964838359842 - syst_JES_MJB_Stat1: 0.001218442025703316 - syst_JES_MJB_Stat10: 8.283025096545345e-05 - syst_JES_MJB_Stat11: 2.239442705228245e-05 - syst_JES_MJB_Stat12: 5.266517326469172e-05 - syst_JES_MJB_Stat13: 0.0001399608090681102 - syst_JES_MJB_Stat14: 2.5805772610018868e-05 - syst_JES_MJB_Stat15: 0.0001955834966002508 - syst_JES_MJB_Stat16: 0.0003316330803764908 - syst_JES_MJB_Stat2: 0.002457204661805768 - syst_JES_MJB_Stat3: 0.001534505460237923 - syst_JES_MJB_Stat4: 0.0004391766964446087 - syst_JES_MJB_Stat5: 0.0004065192476377963 - syst_JES_MJB_Stat6: 0.00022349632547314955 - syst_JES_MJB_Stat7: 0.0002451810912366612 - syst_JES_MJB_Stat8: 0.0001681101147313867 - syst_JES_MJB_Stat9: 0.00010477063746584727 - syst_JES_MJB_Threshold: 0.00815810290447479 - syst_JES_Pileup_MuOffset: 0.016723782466894266 - syst_JES_Pileup_NPVOffset: 0.018188504611429714 - syst_JES_Pileup_Pt_term: 0.029168189436439142 - syst_JES_Pileup_Rho_topology: 0.05548856886783079 - syst_JES_PunchThrough_MC15: 0.003102741167097249 - syst_JES_SingleParticle_HighPt: 3.093153083828862e-05 - syst_JES_Zjet_MC: 0.14545139222434414 - syst_JES_Zjet_MuScale: 0.008435803029350554 - syst_JES_Zjet_MuSmearID: 0.001746764987054641 - syst_JES_Zjet_MuSmearMS: 0.031609922492786977 - syst_JES_Zjet_OOC: 0.0558862565842444 - syst_JES_Zjet_Stat1: 0.0013988022617582516 - syst_JES_Zjet_Stat10: 0.005202199991349813 - syst_JES_Zjet_Stat11: 0.006273500039850163 - syst_JES_Zjet_Stat12: 0.04350369495801478 - syst_JES_Zjet_Stat13: 0.02591339807898609 - syst_JES_Zjet_Stat2: 0.0003509306294340806 - syst_JES_Zjet_Stat3: 0.0006740694857913388 - syst_JES_Zjet_Stat4: 0.0006868680099371348 - syst_JES_Zjet_Stat5: 0.0009881229629960027 - syst_JES_Zjet_Stat6: 0.0007953050295326946 - syst_JES_Zjet_Stat7: 0.0010129772591228293 - syst_JES_Zjet_Stat8: 0.001210271071909099 - syst_JES_Zjet_Stat9: 0.0023625001058201036 - syst_JES_Zjet_Veto: 0.010884657677207858 - syst_JES_Zjet_dPhi: 0.008959689894187188 + syst_JER_NP8: 3.83721918e-03 + syst_JES_EtaIntercalibration_Modelling: 1.32203580e-01 + syst_JES_EtaIntercalibration_NonClosure: 4.50921465e-03 + syst_JES_EtaIntercalibration_Stat0: 2.32779552e-05 + syst_JES_EtaIntercalibration_Stat1: 2.32779552e-05 + syst_JES_EtaIntercalibration_Stat10: 1.98247338e-04 + syst_JES_EtaIntercalibration_Stat100: 2.38069417e-05 + syst_JES_EtaIntercalibration_Stat101: 1.41390404e-06 + syst_JES_EtaIntercalibration_Stat102: 3.15040906e-06 + syst_JES_EtaIntercalibration_Stat103: 7.84469864e-06 + syst_JES_EtaIntercalibration_Stat104: 1.62558088e-05 + syst_JES_EtaIntercalibration_Stat105: 1.69568452e-05 + syst_JES_EtaIntercalibration_Stat106: 2.72519248e-06 + syst_JES_EtaIntercalibration_Stat107: 1.42547781e-05 + syst_JES_EtaIntercalibration_Stat108: 1.43933422e-05 + syst_JES_EtaIntercalibration_Stat109: 3.30145215e-05 + syst_JES_EtaIntercalibration_Stat11: 2.03253482e-04 + syst_JES_EtaIntercalibration_Stat110: 4.69625806e-05 + syst_JES_EtaIntercalibration_Stat111: 9.97650861e-06 + syst_JES_EtaIntercalibration_Stat112: 8.83028720e-05 + syst_JES_EtaIntercalibration_Stat113: 8.69240707e-05 + syst_JES_EtaIntercalibration_Stat114: 1.47147076e-04 + syst_JES_EtaIntercalibration_Stat115: 1.90923600e-04 + syst_JES_EtaIntercalibration_Stat116: 1.20262216e-04 + syst_JES_EtaIntercalibration_Stat117: 2.44998235e-04 + syst_JES_EtaIntercalibration_Stat118: 1.04303009e-04 + syst_JES_EtaIntercalibration_Stat119: 4.93800699e-05 + syst_JES_EtaIntercalibration_Stat12: 6.83927147e-05 + syst_JES_EtaIntercalibration_Stat120: 1.39808026e-04 + syst_JES_EtaIntercalibration_Stat121: 2.07006636e-05 + syst_JES_EtaIntercalibration_Stat122: 8.11317304e-05 + syst_JES_EtaIntercalibration_Stat123: 8.72232864e-06 + syst_JES_EtaIntercalibration_Stat124: 8.75530593e-06 + syst_JES_EtaIntercalibration_Stat125: 3.12484499e-05 + syst_JES_EtaIntercalibration_Stat126: 1.46009537e-05 + syst_JES_EtaIntercalibration_Stat127: 1.15536449e-05 + syst_JES_EtaIntercalibration_Stat128: 3.27753913e-05 + syst_JES_EtaIntercalibration_Stat129: 1.00305082e-04 + syst_JES_EtaIntercalibration_Stat13: 2.32779552e-05 + syst_JES_EtaIntercalibration_Stat130: 1.96143821e-04 + syst_JES_EtaIntercalibration_Stat131: 2.03557982e-04 + syst_JES_EtaIntercalibration_Stat132: 5.26802060e-04 + syst_JES_EtaIntercalibration_Stat133: 6.57467313e-04 + syst_JES_EtaIntercalibration_Stat134: 1.07765714e-03 + syst_JES_EtaIntercalibration_Stat135: 7.88578219e-04 + syst_JES_EtaIntercalibration_Stat136: 7.20197062e-04 + syst_JES_EtaIntercalibration_Stat137: 7.50751588e-04 + syst_JES_EtaIntercalibration_Stat138: 7.26959820e-04 + syst_JES_EtaIntercalibration_Stat139: 7.91323302e-04 + syst_JES_EtaIntercalibration_Stat14: 2.32779552e-05 + syst_JES_EtaIntercalibration_Stat140: 7.02892117e-04 + syst_JES_EtaIntercalibration_Stat141: 5.21578688e-04 + syst_JES_EtaIntercalibration_Stat142: 2.14432087e-04 + syst_JES_EtaIntercalibration_Stat143: 3.09143668e-04 + syst_JES_EtaIntercalibration_Stat144: 2.15898103e-05 + syst_JES_EtaIntercalibration_Stat145: 1.47448273e-05 + syst_JES_EtaIntercalibration_Stat146: 3.61470215e-05 + syst_JES_EtaIntercalibration_Stat147: 2.20059939e-05 + syst_JES_EtaIntercalibration_Stat148: 2.12267083e-04 + syst_JES_EtaIntercalibration_Stat149: 1.51180330e-04 + syst_JES_EtaIntercalibration_Stat15: 1.50659643e-05 + syst_JES_EtaIntercalibration_Stat150: 5.35030287e-04 + syst_JES_EtaIntercalibration_Stat151: 8.28278661e-04 + syst_JES_EtaIntercalibration_Stat152: 1.33879693e-03 + syst_JES_EtaIntercalibration_Stat153: 1.27443290e-03 + syst_JES_EtaIntercalibration_Stat154: 8.85985925e-04 + syst_JES_EtaIntercalibration_Stat155: 8.98359576e-04 + syst_JES_EtaIntercalibration_Stat156: 1.20488826e-03 + syst_JES_EtaIntercalibration_Stat157: 1.15708122e-03 + syst_JES_EtaIntercalibration_Stat158: 1.02020835e-03 + syst_JES_EtaIntercalibration_Stat159: 6.20843948e-04 + syst_JES_EtaIntercalibration_Stat16: 1.50659643e-05 + syst_JES_EtaIntercalibration_Stat160: 5.55882919e-04 + syst_JES_EtaIntercalibration_Stat161: 2.93495361e-04 + syst_JES_EtaIntercalibration_Stat162: 9.63631890e-05 + syst_JES_EtaIntercalibration_Stat163: 4.05271844e-05 + syst_JES_EtaIntercalibration_Stat164: 2.71221954e-05 + syst_JES_EtaIntercalibration_Stat165: 3.03624076e-04 + syst_JES_EtaIntercalibration_Stat166: 1.93534680e-04 + syst_JES_EtaIntercalibration_Stat167: 5.99328764e-04 + syst_JES_EtaIntercalibration_Stat168: 1.05045501e-03 + syst_JES_EtaIntercalibration_Stat169: 1.68868095e-03 + syst_JES_EtaIntercalibration_Stat17: 1.57323482e-05 + syst_JES_EtaIntercalibration_Stat170: 1.54080707e-03 + syst_JES_EtaIntercalibration_Stat171: 1.98694539e-03 + syst_JES_EtaIntercalibration_Stat172: 1.65441359e-03 + syst_JES_EtaIntercalibration_Stat173: 1.93380092e-03 + syst_JES_EtaIntercalibration_Stat174: 2.16832269e-03 + syst_JES_EtaIntercalibration_Stat175: 2.05537658e-03 + syst_JES_EtaIntercalibration_Stat176: 1.75380579e-03 + syst_JES_EtaIntercalibration_Stat177: 1.50255921e-03 + syst_JES_EtaIntercalibration_Stat178: 9.12355034e-04 + syst_JES_EtaIntercalibration_Stat179: 3.88451705e-04 + syst_JES_EtaIntercalibration_Stat18: 1.50659643e-05 + syst_JES_EtaIntercalibration_Stat180: 3.18680792e-04 + syst_JES_EtaIntercalibration_Stat181: 5.01684088e-05 + syst_JES_EtaIntercalibration_Stat182: 9.17333739e-04 + syst_JES_EtaIntercalibration_Stat183: 1.17390975e-03 + syst_JES_EtaIntercalibration_Stat184: 1.68127919e-03 + syst_JES_EtaIntercalibration_Stat185: 1.88974522e-03 + syst_JES_EtaIntercalibration_Stat186: 3.86039101e-03 + syst_JES_EtaIntercalibration_Stat187: 5.30378325e-03 + syst_JES_EtaIntercalibration_Stat188: 5.24011813e-03 + syst_JES_EtaIntercalibration_Stat189: 4.08200720e-03 + syst_JES_EtaIntercalibration_Stat19: 2.32779552e-05 + syst_JES_EtaIntercalibration_Stat190: 4.13650490e-03 + syst_JES_EtaIntercalibration_Stat191: 5.21172447e-03 + syst_JES_EtaIntercalibration_Stat192: 6.31853027e-03 + syst_JES_EtaIntercalibration_Stat193: 5.21480803e-03 + syst_JES_EtaIntercalibration_Stat194: 2.50561380e-03 + syst_JES_EtaIntercalibration_Stat195: 1.78144275e-03 + syst_JES_EtaIntercalibration_Stat196: 1.29751997e-03 + syst_JES_EtaIntercalibration_Stat197: 7.56255902e-04 + syst_JES_EtaIntercalibration_Stat198: 9.21868849e-04 + syst_JES_EtaIntercalibration_Stat199: 1.00956142e-03 + syst_JES_EtaIntercalibration_Stat2: 2.32779552e-05 + syst_JES_EtaIntercalibration_Stat20: 2.32779552e-05 + syst_JES_EtaIntercalibration_Stat200: 1.05014240e-03 + syst_JES_EtaIntercalibration_Stat201: 2.26174153e-03 + syst_JES_EtaIntercalibration_Stat202: 2.99253037e-03 + syst_JES_EtaIntercalibration_Stat203: 3.56007500e-03 + syst_JES_EtaIntercalibration_Stat204: 2.46422320e-03 + syst_JES_EtaIntercalibration_Stat205: 2.09207409e-03 + syst_JES_EtaIntercalibration_Stat206: 3.23867056e-03 + syst_JES_EtaIntercalibration_Stat207: 3.36738046e-03 + syst_JES_EtaIntercalibration_Stat208: 2.84523018e-03 + syst_JES_EtaIntercalibration_Stat209: 3.31115739e-04 + syst_JES_EtaIntercalibration_Stat21: 2.32779552e-05 + syst_JES_EtaIntercalibration_Stat210: 9.59521197e-04 + syst_JES_EtaIntercalibration_Stat211: 4.87594286e-04 + syst_JES_EtaIntercalibration_Stat212: 1.60429314e-05 + syst_JES_EtaIntercalibration_Stat213: 2.42665984e-04 + syst_JES_EtaIntercalibration_Stat214: 3.57327199e-04 + syst_JES_EtaIntercalibration_Stat215: 2.28319139e-04 + syst_JES_EtaIntercalibration_Stat216: 2.98385650e-04 + syst_JES_EtaIntercalibration_Stat217: 1.29224394e-04 + syst_JES_EtaIntercalibration_Stat218: 2.21730127e-04 + syst_JES_EtaIntercalibration_Stat219: 7.08673865e-05 + syst_JES_EtaIntercalibration_Stat22: 2.32779552e-05 + syst_JES_EtaIntercalibration_Stat220: 2.75720089e-04 + syst_JES_EtaIntercalibration_Stat221: 1.58134270e-04 + syst_JES_EtaIntercalibration_Stat222: 3.31116031e-04 + syst_JES_EtaIntercalibration_Stat223: 1.23800001e-04 + syst_JES_EtaIntercalibration_Stat224: 4.71440802e-05 + syst_JES_EtaIntercalibration_Stat225: 1.06994183e-04 + syst_JES_EtaIntercalibration_Stat226: 2.02258126e-04 + syst_JES_EtaIntercalibration_Stat227: 1.86595358e-04 + syst_JES_EtaIntercalibration_Stat228: 2.57329829e-04 + syst_JES_EtaIntercalibration_Stat229: 2.23410494e-04 + syst_JES_EtaIntercalibration_Stat23: 2.32214211e-05 + syst_JES_EtaIntercalibration_Stat230: 1.79564835e-04 + syst_JES_EtaIntercalibration_Stat231: 3.14625508e-04 + syst_JES_EtaIntercalibration_Stat232: 2.48578418e-04 + syst_JES_EtaIntercalibration_Stat233: 2.03057990e-04 + syst_JES_EtaIntercalibration_Stat234: 9.74954907e-05 + syst_JES_EtaIntercalibration_Stat235: 4.74141918e-05 + syst_JES_EtaIntercalibration_Stat236: 5.13293257e-05 + syst_JES_EtaIntercalibration_Stat237: 1.71329715e-04 + syst_JES_EtaIntercalibration_Stat238: 1.71515072e-04 + syst_JES_EtaIntercalibration_Stat239: 1.76295005e-04 + syst_JES_EtaIntercalibration_Stat24: 1.50730158e-05 + syst_JES_EtaIntercalibration_Stat240: 1.97280587e-04 + syst_JES_EtaIntercalibration_Stat241: 2.84958295e-04 + syst_JES_EtaIntercalibration_Stat242: 1.32296951e-05 + syst_JES_EtaIntercalibration_Stat243: 1.50257809e-04 + syst_JES_EtaIntercalibration_Stat244: 3.23582122e-05 + syst_JES_EtaIntercalibration_Stat245: 1.80981045e-05 + syst_JES_EtaIntercalibration_Stat25: 2.71970463e-05 + syst_JES_EtaIntercalibration_Stat26: 1.89200576e-05 + syst_JES_EtaIntercalibration_Stat27: 1.98202040e-05 + syst_JES_EtaIntercalibration_Stat28: 1.89115710e-05 + syst_JES_EtaIntercalibration_Stat29: 1.98641533e-04 + syst_JES_EtaIntercalibration_Stat3: 2.32779552e-05 + syst_JES_EtaIntercalibration_Stat30: 1.94547900e-05 + syst_JES_EtaIntercalibration_Stat31: 1.20973918e-05 + syst_JES_EtaIntercalibration_Stat32: 8.14001993e-05 + syst_JES_EtaIntercalibration_Stat33: 2.02645089e-04 + syst_JES_EtaIntercalibration_Stat34: 5.45740193e-05 + syst_JES_EtaIntercalibration_Stat35: 1.22135298e-05 + syst_JES_EtaIntercalibration_Stat36: 1.96299118e-05 + syst_JES_EtaIntercalibration_Stat37: 1.11917512e-05 + syst_JES_EtaIntercalibration_Stat38: 1.93065263e-05 + syst_JES_EtaIntercalibration_Stat39: 1.93129903e-05 + syst_JES_EtaIntercalibration_Stat4: 2.32779552e-05 + syst_JES_EtaIntercalibration_Stat40: 1.50381128e-05 + syst_JES_EtaIntercalibration_Stat41: 2.32779552e-05 + syst_JES_EtaIntercalibration_Stat42: 2.32779552e-05 + syst_JES_EtaIntercalibration_Stat43: 2.32779552e-05 + syst_JES_EtaIntercalibration_Stat44: 2.32779552e-05 + syst_JES_EtaIntercalibration_Stat45: 2.32779552e-05 + syst_JES_EtaIntercalibration_Stat46: 1.93618472e-05 + syst_JES_EtaIntercalibration_Stat47: 1.10466405e-05 + syst_JES_EtaIntercalibration_Stat48: 2.55465281e-05 + syst_JES_EtaIntercalibration_Stat49: 2.07857307e-05 + syst_JES_EtaIntercalibration_Stat5: 2.32779552e-05 + syst_JES_EtaIntercalibration_Stat50: 8.03845123e-06 + syst_JES_EtaIntercalibration_Stat51: 7.22382673e-05 + syst_JES_EtaIntercalibration_Stat52: 3.34331086e-05 + syst_JES_EtaIntercalibration_Stat53: 1.24297245e-05 + syst_JES_EtaIntercalibration_Stat54: 7.07974401e-05 + syst_JES_EtaIntercalibration_Stat55: 5.50230893e-05 + syst_JES_EtaIntercalibration_Stat56: 7.14596214e-05 + syst_JES_EtaIntercalibration_Stat57: 1.62377317e-05 + syst_JES_EtaIntercalibration_Stat58: 2.73493823e-06 + syst_JES_EtaIntercalibration_Stat59: 3.20191378e-06 + syst_JES_EtaIntercalibration_Stat6: 2.03080618e-04 + syst_JES_EtaIntercalibration_Stat60: 2.29326770e-05 + syst_JES_EtaIntercalibration_Stat61: 1.15111743e-05 + syst_JES_EtaIntercalibration_Stat62: 1.50261295e-05 + syst_JES_EtaIntercalibration_Stat63: 1.88578588e-05 + syst_JES_EtaIntercalibration_Stat64: 2.32779552e-05 + syst_JES_EtaIntercalibration_Stat65: 2.32779552e-05 + syst_JES_EtaIntercalibration_Stat66: 2.32779552e-05 + syst_JES_EtaIntercalibration_Stat67: 2.32779552e-05 + syst_JES_EtaIntercalibration_Stat68: 8.13530995e-10 + syst_JES_EtaIntercalibration_Stat69: 1.54714389e-05 + syst_JES_EtaIntercalibration_Stat7: 1.53519809e-05 + syst_JES_EtaIntercalibration_Stat70: 1.51379645e-05 + syst_JES_EtaIntercalibration_Stat71: 4.77327938e-05 + syst_JES_EtaIntercalibration_Stat72: 3.72995317e-05 + syst_JES_EtaIntercalibration_Stat73: 2.36462094e-05 + syst_JES_EtaIntercalibration_Stat74: 6.79446330e-05 + syst_JES_EtaIntercalibration_Stat75: 8.39369338e-05 + syst_JES_EtaIntercalibration_Stat76: 7.13799300e-05 + syst_JES_EtaIntercalibration_Stat77: 5.88945268e-06 + syst_JES_EtaIntercalibration_Stat78: 1.44846985e-05 + syst_JES_EtaIntercalibration_Stat79: 5.56352619e-05 + syst_JES_EtaIntercalibration_Stat8: 1.21280894e-05 + syst_JES_EtaIntercalibration_Stat80: 8.78280047e-05 + syst_JES_EtaIntercalibration_Stat81: 4.09197223e-06 + syst_JES_EtaIntercalibration_Stat82: 1.16444134e-05 + syst_JES_EtaIntercalibration_Stat83: 2.35521521e-05 + syst_JES_EtaIntercalibration_Stat84: 1.14964794e-05 + syst_JES_EtaIntercalibration_Stat85: 1.15304104e-05 + syst_JES_EtaIntercalibration_Stat86: 1.42547781e-05 + syst_JES_EtaIntercalibration_Stat87: 1.42547781e-05 + syst_JES_EtaIntercalibration_Stat88: 1.15761611e-05 + syst_JES_EtaIntercalibration_Stat89: 1.38503463e-05 + syst_JES_EtaIntercalibration_Stat9: 6.53621158e-05 + syst_JES_EtaIntercalibration_Stat90: 1.10560493e-05 + syst_JES_EtaIntercalibration_Stat91: 1.12034203e-05 + syst_JES_EtaIntercalibration_Stat92: 1.19792081e-05 + syst_JES_EtaIntercalibration_Stat93: 2.82886347e-05 + syst_JES_EtaIntercalibration_Stat94: 2.19039707e-05 + syst_JES_EtaIntercalibration_Stat95: 5.19075666e-05 + syst_JES_EtaIntercalibration_Stat96: 7.88318768e-05 + syst_JES_EtaIntercalibration_Stat97: 6.78364362e-05 + syst_JES_EtaIntercalibration_Stat98: 4.98740103e-05 + syst_JES_EtaIntercalibration_Stat99: 2.67172461e-05 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.86592196e-02 + syst_JES_Flavour_Comp: 6.40727577e-02 + syst_JES_Flavour_Response: 1.15120890e-01 + syst_JES_Gjet_Generator: 1.69456506e-01 + syst_JES_Gjet_OOC: 1.24351628e-01 + syst_JES_Gjet_Purity: 4.24594568e-02 + syst_JES_Gjet_Stat1: 2.19637681e-04 + syst_JES_Gjet_Stat10: 6.77068481e-03 + syst_JES_Gjet_Stat11: 1.15579265e-02 + syst_JES_Gjet_Stat12: 2.34770079e-02 + syst_JES_Gjet_Stat13: 1.83720277e-02 + syst_JES_Gjet_Stat14: 2.40743579e-03 + syst_JES_Gjet_Stat15: 2.91283007e-03 + syst_JES_Gjet_Stat2: 8.19515165e-04 + syst_JES_Gjet_Stat3: 4.44667258e-04 + syst_JES_Gjet_Stat4: 4.73056815e-04 + syst_JES_Gjet_Stat5: 2.85371035e-04 + syst_JES_Gjet_Stat6: 1.50354805e-03 + syst_JES_Gjet_Stat7: 1.89920220e-03 + syst_JES_Gjet_Stat8: 1.14693513e-03 + syst_JES_Gjet_Stat9: 3.16138751e-03 + syst_JES_Gjet_Veto: 7.22408652e-02 + syst_JES_Gjet_dPhi: 8.86245344e-03 + syst_JES_LArESZee: 2.33861754e-01 + syst_JES_LArEsmear: 1.75269421e-02 + syst_JES_LAr_JVT: 2.35329301e-02 + syst_JES_MJB_Alpha: 2.04925767e-03 + syst_JES_MJB_Asym: 6.45753240e-03 + syst_JES_MJB_Beta: 5.76005423e-04 + syst_JES_MJB_Fragmentation: 2.11309648e-02 + syst_JES_MJB_Stat1: 1.21844203e-03 + syst_JES_MJB_Stat10: 8.28302510e-05 + syst_JES_MJB_Stat11: 2.23944271e-05 + syst_JES_MJB_Stat12: 5.26651733e-05 + syst_JES_MJB_Stat13: 1.39960809e-04 + syst_JES_MJB_Stat14: 2.58057726e-05 + syst_JES_MJB_Stat15: 1.95583497e-04 + syst_JES_MJB_Stat16: 3.31633080e-04 + syst_JES_MJB_Stat2: 2.45720466e-03 + syst_JES_MJB_Stat3: 1.53450546e-03 + syst_JES_MJB_Stat4: 4.39176696e-04 + syst_JES_MJB_Stat5: 4.06519248e-04 + syst_JES_MJB_Stat6: 2.23496325e-04 + syst_JES_MJB_Stat7: 2.45181091e-04 + syst_JES_MJB_Stat8: 1.68110115e-04 + syst_JES_MJB_Stat9: 1.04770637e-04 + syst_JES_MJB_Threshold: 8.15810290e-03 + syst_JES_Pileup_MuOffset: 1.67237825e-02 + syst_JES_Pileup_NPVOffset: 1.81885046e-02 + syst_JES_Pileup_Pt_term: 2.91681894e-02 + syst_JES_Pileup_Rho_topology: 5.54885689e-02 + syst_JES_PunchThrough_MC15: 3.10274117e-03 + syst_JES_SingleParticle_HighPt: 3.09315308e-05 + syst_JES_Zjet_MC: 1.45451392e-01 + syst_JES_Zjet_MuScale: 8.43580303e-03 + syst_JES_Zjet_MuSmearID: 1.74676499e-03 + syst_JES_Zjet_MuSmearMS: 3.16099225e-02 + syst_JES_Zjet_OOC: 5.58862566e-02 + syst_JES_Zjet_Stat1: 1.39880226e-03 + syst_JES_Zjet_Stat10: 5.20219999e-03 + syst_JES_Zjet_Stat11: 6.27350004e-03 + syst_JES_Zjet_Stat12: 4.35036950e-02 + syst_JES_Zjet_Stat13: 2.59133981e-02 + syst_JES_Zjet_Stat2: 3.50930629e-04 + syst_JES_Zjet_Stat3: 6.74069486e-04 + syst_JES_Zjet_Stat4: 6.86868010e-04 + syst_JES_Zjet_Stat5: 9.88122963e-04 + syst_JES_Zjet_Stat6: 7.95305030e-04 + syst_JES_Zjet_Stat7: 1.01297726e-03 + syst_JES_Zjet_Stat8: 1.21027107e-03 + syst_JES_Zjet_Stat9: 2.36250011e-03 + syst_JES_Zjet_Veto: 1.08846577e-02 + syst_JES_Zjet_dPhi: 8.95968989e-03 syst_PRW: 0.0 syst_Unfolding_bias: 0.0 - syst_cleaning: 0.08262748377507328 + syst_cleaning: 8.26274838e-02 syst_lumi: 0.1927 - stat: 0.028015 - syst_JER_CROSS_CALIB_FORWARD: 3.365e-12 - syst_JER_NOISE_FORWARD: 2.639e-12 - syst_JER_NP0: 0.009495015047381442 - syst_JER_NP1: 0.0008948308052363866 - syst_JER_NP2: 0.0029698484809834997 - syst_JER_NP3: 0.002955793632850575 - syst_JER_NP4: 0.0006361793988333794 + syst_JER_CROSS_CALIB_FORWARD: 3.36500000e-12 + syst_JER_NOISE_FORWARD: 2.63900000e-12 + syst_JER_NP0: 9.49501505e-03 + syst_JER_NP1: 8.94830805e-04 + syst_JER_NP2: 2.96984848e-03 + syst_JER_NP3: 2.95579363e-03 + syst_JER_NP4: 6.36179399e-04 syst_JER_NP5: 0.0 syst_JER_NP6: 0.0 syst_JER_NP7: 0.0 - syst_JER_NP8: 0.002173764246646816 - syst_JES_EtaIntercalibration_Modelling: 0.08076670152358581 - syst_JES_EtaIntercalibration_NonClosure: 0.0020803675156087203 - syst_JES_EtaIntercalibration_Stat0: 1.2343255972392374e-05 - syst_JES_EtaIntercalibration_Stat1: 1.2343255972392374e-05 - syst_JES_EtaIntercalibration_Stat10: 0.00010588888780580329 - syst_JES_EtaIntercalibration_Stat100: 2.0068319984492972e-05 - syst_JES_EtaIntercalibration_Stat101: 1.2386404146413388e-06 - syst_JES_EtaIntercalibration_Stat102: 4.5467037235782145e-07 - syst_JES_EtaIntercalibration_Stat103: 6.130212799528252e-06 - syst_JES_EtaIntercalibration_Stat104: 1.2326966050087102e-06 - syst_JES_EtaIntercalibration_Stat105: 2.2941047593248738e-06 - syst_JES_EtaIntercalibration_Stat106: 3.675322448532798e-07 - syst_JES_EtaIntercalibration_Stat107: 7.5586697225891735e-06 - syst_JES_EtaIntercalibration_Stat108: 7.633147908956043e-06 - syst_JES_EtaIntercalibration_Stat109: 1.7836105761908905e-05 - syst_JES_EtaIntercalibration_Stat11: 0.00010854748999253685 - syst_JES_EtaIntercalibration_Stat110: 1.8317498231677274e-05 - syst_JES_EtaIntercalibration_Stat111: 1.820566307498851e-06 - syst_JES_EtaIntercalibration_Stat112: 7.58824255015613e-06 - syst_JES_EtaIntercalibration_Stat113: 3.097164114670064e-05 - syst_JES_EtaIntercalibration_Stat114: 1.624549281339289e-05 - syst_JES_EtaIntercalibration_Stat115: 2.812306526678769e-06 - syst_JES_EtaIntercalibration_Stat116: 9.81389100968622e-06 - syst_JES_EtaIntercalibration_Stat117: 2.713376538498665e-05 - syst_JES_EtaIntercalibration_Stat118: 1.7740682061296293e-05 - syst_JES_EtaIntercalibration_Stat119: 2.37736042019295e-05 - syst_JES_EtaIntercalibration_Stat12: 3.628659891430716e-05 - syst_JES_EtaIntercalibration_Stat120: 7.792378854207488e-05 - syst_JES_EtaIntercalibration_Stat121: 8.826459355256784e-06 - syst_JES_EtaIntercalibration_Stat122: 1.474869824764206e-05 - syst_JES_EtaIntercalibration_Stat123: 4.252383331732924e-06 - syst_JES_EtaIntercalibration_Stat124: 4.129800721584518e-06 - syst_JES_EtaIntercalibration_Stat125: 1.3690666674782495e-05 - syst_JES_EtaIntercalibration_Stat126: 5.569465851408015e-06 - syst_JES_EtaIntercalibration_Stat127: 1.015328183396876e-06 - syst_JES_EtaIntercalibration_Stat128: 1.4047598611506522e-05 - syst_JES_EtaIntercalibration_Stat129: 3.158213881294299e-05 - syst_JES_EtaIntercalibration_Stat13: 1.2343255972392374e-05 - syst_JES_EtaIntercalibration_Stat130: 1.3454138276010102e-05 - syst_JES_EtaIntercalibration_Stat131: 6.674104109728885e-05 - syst_JES_EtaIntercalibration_Stat132: 0.0001284040960211161 - syst_JES_EtaIntercalibration_Stat133: 9.474089969490474e-05 - syst_JES_EtaIntercalibration_Stat134: 0.00022333769834042796 - syst_JES_EtaIntercalibration_Stat135: 0.00021888149190829267 - syst_JES_EtaIntercalibration_Stat136: 0.00021098357092437314 - syst_JES_EtaIntercalibration_Stat137: 0.0002512041106351566 - syst_JES_EtaIntercalibration_Stat138: 0.00019487320877945228 - syst_JES_EtaIntercalibration_Stat139: 0.0001926884726702664 - syst_JES_EtaIntercalibration_Stat14: 1.2343255972392374e-05 - syst_JES_EtaIntercalibration_Stat140: 0.00021884352857692637 - syst_JES_EtaIntercalibration_Stat141: 9.74990362772884e-05 - syst_JES_EtaIntercalibration_Stat142: 2.2851662412174743e-05 - syst_JES_EtaIntercalibration_Stat143: 6.933324797671029e-05 - syst_JES_EtaIntercalibration_Stat144: 9.709987684338226e-06 - syst_JES_EtaIntercalibration_Stat145: 5.4434954532910185e-06 - syst_JES_EtaIntercalibration_Stat146: 1.888119169967828e-05 - syst_JES_EtaIntercalibration_Stat147: 8.736030144608019e-06 - syst_JES_EtaIntercalibration_Stat148: 1.4965219034481253e-05 - syst_JES_EtaIntercalibration_Stat149: 9.131406627677907e-05 - syst_JES_EtaIntercalibration_Stat15: 7.283425448750059e-06 - syst_JES_EtaIntercalibration_Stat150: 0.00014210513713444704 - syst_JES_EtaIntercalibration_Stat151: 0.00022976649951635686 - syst_JES_EtaIntercalibration_Stat152: 0.00029401474027674186 - syst_JES_EtaIntercalibration_Stat153: 0.00031460632542909875 - syst_JES_EtaIntercalibration_Stat154: 0.0002769572391182437 - syst_JES_EtaIntercalibration_Stat155: 0.00030483002095430174 - syst_JES_EtaIntercalibration_Stat156: 0.00033686571508540316 - syst_JES_EtaIntercalibration_Stat157: 0.0003806373175346843 - syst_JES_EtaIntercalibration_Stat158: 0.0002846048269091724 - syst_JES_EtaIntercalibration_Stat159: 0.00012275768366990314 - syst_JES_EtaIntercalibration_Stat16: 7.283425448750059e-06 - syst_JES_EtaIntercalibration_Stat160: 0.00011623766042036463 - syst_JES_EtaIntercalibration_Stat161: 9.847866520216447e-05 - syst_JES_EtaIntercalibration_Stat162: 1.585108042847553e-05 - syst_JES_EtaIntercalibration_Stat163: 7.867740002694548e-06 - syst_JES_EtaIntercalibration_Stat164: 1.5924593267961354e-05 - syst_JES_EtaIntercalibration_Stat165: 5.352488276493467e-05 - syst_JES_EtaIntercalibration_Stat166: 8.861573280179993e-05 - syst_JES_EtaIntercalibration_Stat167: 0.00020920690117680153 - syst_JES_EtaIntercalibration_Stat168: 0.00032100595010061734 - syst_JES_EtaIntercalibration_Stat169: 0.0005411559017510573 - syst_JES_EtaIntercalibration_Stat17: 8.052091327723499e-06 - syst_JES_EtaIntercalibration_Stat170: 0.0005860667010902001 - syst_JES_EtaIntercalibration_Stat171: 0.0006740732972014246 - syst_JES_EtaIntercalibration_Stat172: 0.0006908822330904161 - syst_JES_EtaIntercalibration_Stat173: 0.0007255316585098129 - syst_JES_EtaIntercalibration_Stat174: 0.0007325004277643802 - syst_JES_EtaIntercalibration_Stat175: 0.0007916229326516508 - syst_JES_EtaIntercalibration_Stat176: 0.0007061197702939637 - syst_JES_EtaIntercalibration_Stat177: 0.0005652566916897136 - syst_JES_EtaIntercalibration_Stat178: 0.0002533300021710812 - syst_JES_EtaIntercalibration_Stat179: 8.435518522888797e-05 - syst_JES_EtaIntercalibration_Stat18: 7.283425448750059e-06 - syst_JES_EtaIntercalibration_Stat180: 0.00012458373368943475 - syst_JES_EtaIntercalibration_Stat181: 2.111421795852264e-05 - syst_JES_EtaIntercalibration_Stat182: 0.0002511401813728739 - syst_JES_EtaIntercalibration_Stat183: 0.0004600542108002056 - syst_JES_EtaIntercalibration_Stat184: 0.0006915363674457042 - syst_JES_EtaIntercalibration_Stat185: 0.0011330202237824355 - syst_JES_EtaIntercalibration_Stat186: 0.001779008993794017 - syst_JES_EtaIntercalibration_Stat187: 0.002423325555925163 - syst_JES_EtaIntercalibration_Stat188: 0.00236275279070833 - syst_JES_EtaIntercalibration_Stat189: 0.0019303603290577644 - syst_JES_EtaIntercalibration_Stat19: 1.2343255972392374e-05 - syst_JES_EtaIntercalibration_Stat190: 0.0019756216110379033 - syst_JES_EtaIntercalibration_Stat191: 0.0024127363614783936 - syst_JES_EtaIntercalibration_Stat192: 0.002806016883413213 - syst_JES_EtaIntercalibration_Stat193: 0.0024352566599847333 - syst_JES_EtaIntercalibration_Stat194: 0.0012813336801941952 - syst_JES_EtaIntercalibration_Stat195: 0.0008870087880060716 - syst_JES_EtaIntercalibration_Stat196: 0.0004975335842935631 - syst_JES_EtaIntercalibration_Stat197: 0.0003658761906369421 - syst_JES_EtaIntercalibration_Stat198: 0.0006231354035841648 - syst_JES_EtaIntercalibration_Stat199: 0.0006412913378488751 - syst_JES_EtaIntercalibration_Stat2: 1.2343255972392374e-05 - syst_JES_EtaIntercalibration_Stat20: 1.2343255972392374e-05 - syst_JES_EtaIntercalibration_Stat200: 0.0006429372597695673 - syst_JES_EtaIntercalibration_Stat201: 0.0014089169883282691 - syst_JES_EtaIntercalibration_Stat202: 0.002139284693536604 - syst_JES_EtaIntercalibration_Stat203: 0.002218613249306873 - syst_JES_EtaIntercalibration_Stat204: 0.0016776360600559348 - syst_JES_EtaIntercalibration_Stat205: 0.0014924846498373108 - syst_JES_EtaIntercalibration_Stat206: 0.002155276316391938 - syst_JES_EtaIntercalibration_Stat207: 0.0021479303410492623 - syst_JES_EtaIntercalibration_Stat208: 0.0022233238630482966 - syst_JES_EtaIntercalibration_Stat209: 0.00018155162922706039 - syst_JES_EtaIntercalibration_Stat21: 1.2343255972392374e-05 - syst_JES_EtaIntercalibration_Stat210: 0.0006266521044407335 - syst_JES_EtaIntercalibration_Stat211: 0.00019419152607670604 - syst_JES_EtaIntercalibration_Stat212: 8.361871653886766e-06 - syst_JES_EtaIntercalibration_Stat213: 0.00011936527719567362 - syst_JES_EtaIntercalibration_Stat214: 0.0002137187563130574 - syst_JES_EtaIntercalibration_Stat215: 0.000318754901923092 - syst_JES_EtaIntercalibration_Stat216: 0.00014854012084282144 - syst_JES_EtaIntercalibration_Stat217: 0.0003617525535500752 - syst_JES_EtaIntercalibration_Stat218: 0.0004370945413466062 - syst_JES_EtaIntercalibration_Stat219: 0.0004330623829195974 - syst_JES_EtaIntercalibration_Stat22: 1.2343255972392374e-05 - syst_JES_EtaIntercalibration_Stat220: 0.00036822514590261217 - syst_JES_EtaIntercalibration_Stat221: 0.0004139418648795988 - syst_JES_EtaIntercalibration_Stat222: 0.0002810802504623902 - syst_JES_EtaIntercalibration_Stat223: 6.623116788944613e-05 - syst_JES_EtaIntercalibration_Stat224: 1.5145329667920736e-05 - syst_JES_EtaIntercalibration_Stat225: 9.873106236134604e-05 - syst_JES_EtaIntercalibration_Stat226: 0.00019841937279408984 - syst_JES_EtaIntercalibration_Stat227: 0.00014484051403871776 - syst_JES_EtaIntercalibration_Stat228: 0.0002551505907557339 - syst_JES_EtaIntercalibration_Stat229: 0.00016261278201605187 - syst_JES_EtaIntercalibration_Stat23: 1.2292396999771851e-05 - syst_JES_EtaIntercalibration_Stat230: 0.00022055010201765945 - syst_JES_EtaIntercalibration_Stat231: 0.00028975870565006327 - syst_JES_EtaIntercalibration_Stat232: 0.00018706929197492568 - syst_JES_EtaIntercalibration_Stat233: 0.0001568313718616272 - syst_JES_EtaIntercalibration_Stat234: 7.18116704912927e-05 - syst_JES_EtaIntercalibration_Stat235: 3.914685209464485e-05 - syst_JES_EtaIntercalibration_Stat236: 1.3553297569226466e-05 - syst_JES_EtaIntercalibration_Stat237: 5.692895309067259e-05 - syst_JES_EtaIntercalibration_Stat238: 5.3943822741811686e-05 - syst_JES_EtaIntercalibration_Stat239: 5.678895677858504e-05 - syst_JES_EtaIntercalibration_Stat24: 7.283085776647148e-06 - syst_JES_EtaIntercalibration_Stat240: 8.024591387796392e-05 - syst_JES_EtaIntercalibration_Stat241: 9.158340515617445e-05 - syst_JES_EtaIntercalibration_Stat242: 9.391753989537843e-06 - syst_JES_EtaIntercalibration_Stat243: 5.430521245700085e-05 - syst_JES_EtaIntercalibration_Stat244: 1.680931797396908e-05 - syst_JES_EtaIntercalibration_Stat245: 1.759655479774379e-05 - syst_JES_EtaIntercalibration_Stat25: 1.2848853830206026e-06 - syst_JES_EtaIntercalibration_Stat26: 1.6623376033465643e-06 - syst_JES_EtaIntercalibration_Stat27: 1.7161482045557721e-06 - syst_JES_EtaIntercalibration_Stat28: 1.665593392007785e-06 - syst_JES_EtaIntercalibration_Stat29: 0.00010236466907580955 - syst_JES_EtaIntercalibration_Stat3: 1.2343963089299968e-05 - syst_JES_EtaIntercalibration_Stat30: 1.6943151536830449e-06 - syst_JES_EtaIntercalibration_Stat31: 4.457427204970044e-06 - syst_JES_EtaIntercalibration_Stat32: 5.128614808173494e-05 - syst_JES_EtaIntercalibration_Stat33: 0.00010850407977786697 - syst_JES_EtaIntercalibration_Stat34: 4.757106370785607e-05 - syst_JES_EtaIntercalibration_Stat35: 1.05539315028512e-06 - syst_JES_EtaIntercalibration_Stat36: 1.0420028154952364e-05 - syst_JES_EtaIntercalibration_Stat37: 6.327987220870473e-06 - syst_JES_EtaIntercalibration_Stat38: 1.684605704608648e-06 - syst_JES_EtaIntercalibration_Stat39: 1.685176471471163e-06 - syst_JES_EtaIntercalibration_Stat4: 1.2343963089299968e-05 - syst_JES_EtaIntercalibration_Stat40: 7.282245393249256e-06 - syst_JES_EtaIntercalibration_Stat41: 1.2343963089299968e-05 - syst_JES_EtaIntercalibration_Stat42: 1.2343255972392374e-05 - syst_JES_EtaIntercalibration_Stat43: 1.2343255972392374e-05 - syst_JES_EtaIntercalibration_Stat44: 1.2343255972392374e-05 - syst_JES_EtaIntercalibration_Stat45: 1.2343255972392374e-05 - syst_JES_EtaIntercalibration_Stat46: 1.6883306333476272e-06 - syst_JES_EtaIntercalibration_Stat47: 9.713714171211752e-07 - syst_JES_EtaIntercalibration_Stat48: 1.2080834273757752e-06 - syst_JES_EtaIntercalibration_Stat49: 7.406226648402005e-06 - syst_JES_EtaIntercalibration_Stat5: 1.2343255972392374e-05 - syst_JES_EtaIntercalibration_Stat50: 1.913916339932953e-06 - syst_JES_EtaIntercalibration_Stat51: 3.198074227953442e-05 - syst_JES_EtaIntercalibration_Stat52: 2.22222624374527e-05 - syst_JES_EtaIntercalibration_Stat53: 4.290304971677421e-06 - syst_JES_EtaIntercalibration_Stat54: 4.8947749344029885e-05 - syst_JES_EtaIntercalibration_Stat55: 4.7614412578280325e-05 - syst_JES_EtaIntercalibration_Stat56: 4.9043212609072496e-05 - syst_JES_EtaIntercalibration_Stat57: 2.1988269447859694e-06 - syst_JES_EtaIntercalibration_Stat58: 3.6814893232794396e-07 - syst_JES_EtaIntercalibration_Stat59: 3.8286880189731034e-06 - syst_JES_EtaIntercalibration_Stat6: 0.00010587148855539823 - syst_JES_EtaIntercalibration_Stat60: 1.2172107325767383e-05 - syst_JES_EtaIntercalibration_Stat61: 1.0126417218000685e-06 - syst_JES_EtaIntercalibration_Stat62: 7.268490921092218e-06 - syst_JES_EtaIntercalibration_Stat63: 1.657671694727276e-06 - syst_JES_EtaIntercalibration_Stat64: 1.2343255972392374e-05 - syst_JES_EtaIntercalibration_Stat65: 1.2343255972392374e-05 - syst_JES_EtaIntercalibration_Stat66: 1.2343255972392374e-05 - syst_JES_EtaIntercalibration_Stat67: 1.2343255972392374e-05 - syst_JES_EtaIntercalibration_Stat68: 3.809007010864741e-11 - syst_JES_EtaIntercalibration_Stat69: 7.6221822208275765e-06 - syst_JES_EtaIntercalibration_Stat7: 7.2756682187961265e-06 - syst_JES_EtaIntercalibration_Stat70: 3.838232672544488e-06 - syst_JES_EtaIntercalibration_Stat71: 2.6984107678177912e-05 - syst_JES_EtaIntercalibration_Stat72: 4.22101704707012e-06 - syst_JES_EtaIntercalibration_Stat73: 1.8654363613564586e-05 - syst_JES_EtaIntercalibration_Stat74: 5.353592284893884e-06 - syst_JES_EtaIntercalibration_Stat75: 5.767694733763665e-05 - syst_JES_EtaIntercalibration_Stat76: 4.902579900102713e-05 - syst_JES_EtaIntercalibration_Stat77: 4.908610182518033e-06 - syst_JES_EtaIntercalibration_Stat78: 7.4450878268829046e-06 - syst_JES_EtaIntercalibration_Stat79: 3.177543115941565e-05 - syst_JES_EtaIntercalibration_Stat8: 1.0503722706742633e-06 - syst_JES_EtaIntercalibration_Stat80: 4.6583302495287544e-05 - syst_JES_EtaIntercalibration_Stat81: 4.5565575196632815e-07 - syst_JES_EtaIntercalibration_Stat82: 8.818653695760039e-07 - syst_JES_EtaIntercalibration_Stat83: 1.8911149806397283e-06 - syst_JES_EtaIntercalibration_Stat84: 1.0109976060455462e-06 - syst_JES_EtaIntercalibration_Stat85: 1.013343316872893e-06 - syst_JES_EtaIntercalibration_Stat86: 7.558669721559758e-06 - syst_JES_EtaIntercalibration_Stat87: 7.55866972423058e-06 - syst_JES_EtaIntercalibration_Stat88: 1.0168870047941497e-06 - syst_JES_EtaIntercalibration_Stat89: 7.348788892785584e-06 - syst_JES_EtaIntercalibration_Stat9: 3.5949787186018224e-05 - syst_JES_EtaIntercalibration_Stat90: 2.3431305799329133e-06 - syst_JES_EtaIntercalibration_Stat91: 2.3787493115238103e-06 - syst_JES_EtaIntercalibration_Stat92: 2.905532591034321e-06 - syst_JES_EtaIntercalibration_Stat93: 1.979644124374063e-05 - syst_JES_EtaIntercalibration_Stat94: 2.049613134228018e-05 - syst_JES_EtaIntercalibration_Stat95: 7.562770418801566e-06 - syst_JES_EtaIntercalibration_Stat96: 4.991365210791533e-05 - syst_JES_EtaIntercalibration_Stat97: 4.667226682677841e-05 - syst_JES_EtaIntercalibration_Stat98: 4.554258388585347e-05 - syst_JES_EtaIntercalibration_Stat99: 3.6113277625417906e-05 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.014177942445926349 - syst_JES_Flavour_Comp: 0.04469983752766893 - syst_JES_Flavour_Response: 0.048830222966928995 - syst_JES_Gjet_Generator: 0.09347027388426761 - syst_JES_Gjet_OOC: 0.07037478028384885 - syst_JES_Gjet_Purity: 0.023895576996590808 - syst_JES_Gjet_Stat1: 0.00023390649306934602 - syst_JES_Gjet_Stat10: 0.003246150758975929 - syst_JES_Gjet_Stat11: 0.005034986271083566 - syst_JES_Gjet_Stat12: 0.013151479565052747 - syst_JES_Gjet_Stat13: 0.015906360363074894 - syst_JES_Gjet_Stat14: 0.003932529815525878 - syst_JES_Gjet_Stat15: 0.003622025506191252 - syst_JES_Gjet_Stat2: 0.0005039810413100874 - syst_JES_Gjet_Stat3: 0.000247330406541533 - syst_JES_Gjet_Stat4: 0.0003015526985453786 - syst_JES_Gjet_Stat5: 0.0001537113661217023 - syst_JES_Gjet_Stat6: 0.0009419766504537148 - syst_JES_Gjet_Stat7: 0.0011516405808671382 - syst_JES_Gjet_Stat8: 0.00070373904254347 - syst_JES_Gjet_Stat9: 0.001376215378311113 - syst_JES_Gjet_Veto: 0.047337814429903716 - syst_JES_Gjet_dPhi: 0.005395325476743734 - syst_JES_LArESZee: 0.13298463482673475 - syst_JES_LArEsmear: 0.010469231335203171 - syst_JES_LAr_JVT: 0.013847734399532654 - syst_JES_MJB_Alpha: 0.0014780800621075976 - syst_JES_MJB_Asym: 0.003996650973002271 - syst_JES_MJB_Beta: 0.0005898057031769022 - syst_JES_MJB_Fragmentation: 0.014333084760441487 - syst_JES_MJB_Stat1: 0.0005661662123440431 - syst_JES_MJB_Stat10: 0.00010859780971548183 - syst_JES_MJB_Stat11: 8.256565932638096e-05 - syst_JES_MJB_Stat12: 7.59703986760633e-05 - syst_JES_MJB_Stat13: 6.13198265816204e-05 - syst_JES_MJB_Stat14: 2.0076196726471873e-05 - syst_JES_MJB_Stat15: 7.77034550760132e-05 - syst_JES_MJB_Stat16: 0.00017107061546332264 - syst_JES_MJB_Stat2: 0.0015401734342274573 - syst_JES_MJB_Stat3: 0.001354017440803478 - syst_JES_MJB_Stat4: 0.0006080354492132839 - syst_JES_MJB_Stat5: 0.0003554618228445919 - syst_JES_MJB_Stat6: 0.0001859535627515644 - syst_JES_MJB_Stat7: 0.00019282326104492684 - syst_JES_MJB_Stat8: 0.00015868320831140262 - syst_JES_MJB_Stat9: 0.00010470184907631765 - syst_JES_MJB_Threshold: 0.005875154189466009 - syst_JES_Pileup_MuOffset: 0.01163248652481489 - syst_JES_Pileup_NPVOffset: 0.012482125890648595 - syst_JES_Pileup_Pt_term: 0.015590314300872835 - syst_JES_Pileup_Rho_topology: 0.030752032046679454 - syst_JES_PunchThrough_MC15: 0.002356370301968687 - syst_JES_SingleParticle_HighPt: 1.6403868385231577e-05 - syst_JES_Zjet_MC: 0.0732804926293485 - syst_JES_Zjet_MuScale: 0.004391800399608343 - syst_JES_Zjet_MuSmearID: 0.0010437947211976116 - syst_JES_Zjet_MuSmearMS: 0.018499645266869306 - syst_JES_Zjet_OOC: 0.029961316309534868 - syst_JES_Zjet_Stat1: 0.0010338216770797565 - syst_JES_Zjet_Stat10: 0.002411050186122222 - syst_JES_Zjet_Stat11: 0.002742499225159416 - syst_JES_Zjet_Stat12: 0.019958789417196626 - syst_JES_Zjet_Stat13: 0.017696485526793166 - syst_JES_Zjet_Stat2: 0.00019122366485349035 - syst_JES_Zjet_Stat3: 0.00048593124235842255 - syst_JES_Zjet_Stat4: 0.0004916553203973288 - syst_JES_Zjet_Stat5: 0.0006869020963718192 - syst_JES_Zjet_Stat6: 0.0005533734424419011 - syst_JES_Zjet_Stat7: 0.0005038419667911755 - syst_JES_Zjet_Stat8: 0.0007023175688390545 - syst_JES_Zjet_Stat9: 0.0011317553037207293 - syst_JES_Zjet_Veto: 0.005757570386022214 - syst_JES_Zjet_dPhi: 0.004807500052002079 + syst_JER_NP8: 2.17376425e-03 + syst_JES_EtaIntercalibration_Modelling: 8.07667015e-02 + syst_JES_EtaIntercalibration_NonClosure: 2.08036752e-03 + syst_JES_EtaIntercalibration_Stat0: 1.23432560e-05 + syst_JES_EtaIntercalibration_Stat1: 1.23432560e-05 + syst_JES_EtaIntercalibration_Stat10: 1.05888888e-04 + syst_JES_EtaIntercalibration_Stat100: 2.00683200e-05 + syst_JES_EtaIntercalibration_Stat101: 1.23864041e-06 + syst_JES_EtaIntercalibration_Stat102: 4.54670372e-07 + syst_JES_EtaIntercalibration_Stat103: 6.13021280e-06 + syst_JES_EtaIntercalibration_Stat104: 1.23269661e-06 + syst_JES_EtaIntercalibration_Stat105: 2.29410476e-06 + syst_JES_EtaIntercalibration_Stat106: 3.67532245e-07 + syst_JES_EtaIntercalibration_Stat107: 7.55866972e-06 + syst_JES_EtaIntercalibration_Stat108: 7.63314791e-06 + syst_JES_EtaIntercalibration_Stat109: 1.78361058e-05 + syst_JES_EtaIntercalibration_Stat11: 1.08547490e-04 + syst_JES_EtaIntercalibration_Stat110: 1.83174982e-05 + syst_JES_EtaIntercalibration_Stat111: 1.82056631e-06 + syst_JES_EtaIntercalibration_Stat112: 7.58824255e-06 + syst_JES_EtaIntercalibration_Stat113: 3.09716411e-05 + syst_JES_EtaIntercalibration_Stat114: 1.62454928e-05 + syst_JES_EtaIntercalibration_Stat115: 2.81230653e-06 + syst_JES_EtaIntercalibration_Stat116: 9.81389101e-06 + syst_JES_EtaIntercalibration_Stat117: 2.71337654e-05 + syst_JES_EtaIntercalibration_Stat118: 1.77406821e-05 + syst_JES_EtaIntercalibration_Stat119: 2.37736042e-05 + syst_JES_EtaIntercalibration_Stat12: 3.62865989e-05 + syst_JES_EtaIntercalibration_Stat120: 7.79237885e-05 + syst_JES_EtaIntercalibration_Stat121: 8.82645936e-06 + syst_JES_EtaIntercalibration_Stat122: 1.47486982e-05 + syst_JES_EtaIntercalibration_Stat123: 4.25238333e-06 + syst_JES_EtaIntercalibration_Stat124: 4.12980072e-06 + syst_JES_EtaIntercalibration_Stat125: 1.36906667e-05 + syst_JES_EtaIntercalibration_Stat126: 5.56946585e-06 + syst_JES_EtaIntercalibration_Stat127: 1.01532818e-06 + syst_JES_EtaIntercalibration_Stat128: 1.40475986e-05 + syst_JES_EtaIntercalibration_Stat129: 3.15821388e-05 + syst_JES_EtaIntercalibration_Stat13: 1.23432560e-05 + syst_JES_EtaIntercalibration_Stat130: 1.34541383e-05 + syst_JES_EtaIntercalibration_Stat131: 6.67410411e-05 + syst_JES_EtaIntercalibration_Stat132: 1.28404096e-04 + syst_JES_EtaIntercalibration_Stat133: 9.47408997e-05 + syst_JES_EtaIntercalibration_Stat134: 2.23337698e-04 + syst_JES_EtaIntercalibration_Stat135: 2.18881492e-04 + syst_JES_EtaIntercalibration_Stat136: 2.10983571e-04 + syst_JES_EtaIntercalibration_Stat137: 2.51204111e-04 + syst_JES_EtaIntercalibration_Stat138: 1.94873209e-04 + syst_JES_EtaIntercalibration_Stat139: 1.92688473e-04 + syst_JES_EtaIntercalibration_Stat14: 1.23432560e-05 + syst_JES_EtaIntercalibration_Stat140: 2.18843529e-04 + syst_JES_EtaIntercalibration_Stat141: 9.74990363e-05 + syst_JES_EtaIntercalibration_Stat142: 2.28516624e-05 + syst_JES_EtaIntercalibration_Stat143: 6.93332480e-05 + syst_JES_EtaIntercalibration_Stat144: 9.70998768e-06 + syst_JES_EtaIntercalibration_Stat145: 5.44349545e-06 + syst_JES_EtaIntercalibration_Stat146: 1.88811917e-05 + syst_JES_EtaIntercalibration_Stat147: 8.73603014e-06 + syst_JES_EtaIntercalibration_Stat148: 1.49652190e-05 + syst_JES_EtaIntercalibration_Stat149: 9.13140663e-05 + syst_JES_EtaIntercalibration_Stat15: 7.28342545e-06 + syst_JES_EtaIntercalibration_Stat150: 1.42105137e-04 + syst_JES_EtaIntercalibration_Stat151: 2.29766500e-04 + syst_JES_EtaIntercalibration_Stat152: 2.94014740e-04 + syst_JES_EtaIntercalibration_Stat153: 3.14606325e-04 + syst_JES_EtaIntercalibration_Stat154: 2.76957239e-04 + syst_JES_EtaIntercalibration_Stat155: 3.04830021e-04 + syst_JES_EtaIntercalibration_Stat156: 3.36865715e-04 + syst_JES_EtaIntercalibration_Stat157: 3.80637318e-04 + syst_JES_EtaIntercalibration_Stat158: 2.84604827e-04 + syst_JES_EtaIntercalibration_Stat159: 1.22757684e-04 + syst_JES_EtaIntercalibration_Stat16: 7.28342545e-06 + syst_JES_EtaIntercalibration_Stat160: 1.16237660e-04 + syst_JES_EtaIntercalibration_Stat161: 9.84786652e-05 + syst_JES_EtaIntercalibration_Stat162: 1.58510804e-05 + syst_JES_EtaIntercalibration_Stat163: 7.86774000e-06 + syst_JES_EtaIntercalibration_Stat164: 1.59245933e-05 + syst_JES_EtaIntercalibration_Stat165: 5.35248828e-05 + syst_JES_EtaIntercalibration_Stat166: 8.86157328e-05 + syst_JES_EtaIntercalibration_Stat167: 2.09206901e-04 + syst_JES_EtaIntercalibration_Stat168: 3.21005950e-04 + syst_JES_EtaIntercalibration_Stat169: 5.41155902e-04 + syst_JES_EtaIntercalibration_Stat17: 8.05209133e-06 + syst_JES_EtaIntercalibration_Stat170: 5.86066701e-04 + syst_JES_EtaIntercalibration_Stat171: 6.74073297e-04 + syst_JES_EtaIntercalibration_Stat172: 6.90882233e-04 + syst_JES_EtaIntercalibration_Stat173: 7.25531659e-04 + syst_JES_EtaIntercalibration_Stat174: 7.32500428e-04 + syst_JES_EtaIntercalibration_Stat175: 7.91622933e-04 + syst_JES_EtaIntercalibration_Stat176: 7.06119770e-04 + syst_JES_EtaIntercalibration_Stat177: 5.65256692e-04 + syst_JES_EtaIntercalibration_Stat178: 2.53330002e-04 + syst_JES_EtaIntercalibration_Stat179: 8.43551852e-05 + syst_JES_EtaIntercalibration_Stat18: 7.28342545e-06 + syst_JES_EtaIntercalibration_Stat180: 1.24583734e-04 + syst_JES_EtaIntercalibration_Stat181: 2.11142180e-05 + syst_JES_EtaIntercalibration_Stat182: 2.51140181e-04 + syst_JES_EtaIntercalibration_Stat183: 4.60054211e-04 + syst_JES_EtaIntercalibration_Stat184: 6.91536367e-04 + syst_JES_EtaIntercalibration_Stat185: 1.13302022e-03 + syst_JES_EtaIntercalibration_Stat186: 1.77900899e-03 + syst_JES_EtaIntercalibration_Stat187: 2.42332556e-03 + syst_JES_EtaIntercalibration_Stat188: 2.36275279e-03 + syst_JES_EtaIntercalibration_Stat189: 1.93036033e-03 + syst_JES_EtaIntercalibration_Stat19: 1.23432560e-05 + syst_JES_EtaIntercalibration_Stat190: 1.97562161e-03 + syst_JES_EtaIntercalibration_Stat191: 2.41273636e-03 + syst_JES_EtaIntercalibration_Stat192: 2.80601688e-03 + syst_JES_EtaIntercalibration_Stat193: 2.43525666e-03 + syst_JES_EtaIntercalibration_Stat194: 1.28133368e-03 + syst_JES_EtaIntercalibration_Stat195: 8.87008788e-04 + syst_JES_EtaIntercalibration_Stat196: 4.97533584e-04 + syst_JES_EtaIntercalibration_Stat197: 3.65876191e-04 + syst_JES_EtaIntercalibration_Stat198: 6.23135404e-04 + syst_JES_EtaIntercalibration_Stat199: 6.41291338e-04 + syst_JES_EtaIntercalibration_Stat2: 1.23432560e-05 + syst_JES_EtaIntercalibration_Stat20: 1.23432560e-05 + syst_JES_EtaIntercalibration_Stat200: 6.42937260e-04 + syst_JES_EtaIntercalibration_Stat201: 1.40891699e-03 + syst_JES_EtaIntercalibration_Stat202: 2.13928469e-03 + syst_JES_EtaIntercalibration_Stat203: 2.21861325e-03 + syst_JES_EtaIntercalibration_Stat204: 1.67763606e-03 + syst_JES_EtaIntercalibration_Stat205: 1.49248465e-03 + syst_JES_EtaIntercalibration_Stat206: 2.15527632e-03 + syst_JES_EtaIntercalibration_Stat207: 2.14793034e-03 + syst_JES_EtaIntercalibration_Stat208: 2.22332386e-03 + syst_JES_EtaIntercalibration_Stat209: 1.81551629e-04 + syst_JES_EtaIntercalibration_Stat21: 1.23432560e-05 + syst_JES_EtaIntercalibration_Stat210: 6.26652104e-04 + syst_JES_EtaIntercalibration_Stat211: 1.94191526e-04 + syst_JES_EtaIntercalibration_Stat212: 8.36187165e-06 + syst_JES_EtaIntercalibration_Stat213: 1.19365277e-04 + syst_JES_EtaIntercalibration_Stat214: 2.13718756e-04 + syst_JES_EtaIntercalibration_Stat215: 3.18754902e-04 + syst_JES_EtaIntercalibration_Stat216: 1.48540121e-04 + syst_JES_EtaIntercalibration_Stat217: 3.61752554e-04 + syst_JES_EtaIntercalibration_Stat218: 4.37094541e-04 + syst_JES_EtaIntercalibration_Stat219: 4.33062383e-04 + syst_JES_EtaIntercalibration_Stat22: 1.23432560e-05 + syst_JES_EtaIntercalibration_Stat220: 3.68225146e-04 + syst_JES_EtaIntercalibration_Stat221: 4.13941865e-04 + syst_JES_EtaIntercalibration_Stat222: 2.81080250e-04 + syst_JES_EtaIntercalibration_Stat223: 6.62311679e-05 + syst_JES_EtaIntercalibration_Stat224: 1.51453297e-05 + syst_JES_EtaIntercalibration_Stat225: 9.87310624e-05 + syst_JES_EtaIntercalibration_Stat226: 1.98419373e-04 + syst_JES_EtaIntercalibration_Stat227: 1.44840514e-04 + syst_JES_EtaIntercalibration_Stat228: 2.55150591e-04 + syst_JES_EtaIntercalibration_Stat229: 1.62612782e-04 + syst_JES_EtaIntercalibration_Stat23: 1.22923970e-05 + syst_JES_EtaIntercalibration_Stat230: 2.20550102e-04 + syst_JES_EtaIntercalibration_Stat231: 2.89758706e-04 + syst_JES_EtaIntercalibration_Stat232: 1.87069292e-04 + syst_JES_EtaIntercalibration_Stat233: 1.56831372e-04 + syst_JES_EtaIntercalibration_Stat234: 7.18116705e-05 + syst_JES_EtaIntercalibration_Stat235: 3.91468521e-05 + syst_JES_EtaIntercalibration_Stat236: 1.35532976e-05 + syst_JES_EtaIntercalibration_Stat237: 5.69289531e-05 + syst_JES_EtaIntercalibration_Stat238: 5.39438227e-05 + syst_JES_EtaIntercalibration_Stat239: 5.67889568e-05 + syst_JES_EtaIntercalibration_Stat24: 7.28308578e-06 + syst_JES_EtaIntercalibration_Stat240: 8.02459139e-05 + syst_JES_EtaIntercalibration_Stat241: 9.15834052e-05 + syst_JES_EtaIntercalibration_Stat242: 9.39175399e-06 + syst_JES_EtaIntercalibration_Stat243: 5.43052125e-05 + syst_JES_EtaIntercalibration_Stat244: 1.68093180e-05 + syst_JES_EtaIntercalibration_Stat245: 1.75965548e-05 + syst_JES_EtaIntercalibration_Stat25: 1.28488538e-06 + syst_JES_EtaIntercalibration_Stat26: 1.66233760e-06 + syst_JES_EtaIntercalibration_Stat27: 1.71614820e-06 + syst_JES_EtaIntercalibration_Stat28: 1.66559339e-06 + syst_JES_EtaIntercalibration_Stat29: 1.02364669e-04 + syst_JES_EtaIntercalibration_Stat3: 1.23439631e-05 + syst_JES_EtaIntercalibration_Stat30: 1.69431515e-06 + syst_JES_EtaIntercalibration_Stat31: 4.45742720e-06 + syst_JES_EtaIntercalibration_Stat32: 5.12861481e-05 + syst_JES_EtaIntercalibration_Stat33: 1.08504080e-04 + syst_JES_EtaIntercalibration_Stat34: 4.75710637e-05 + syst_JES_EtaIntercalibration_Stat35: 1.05539315e-06 + syst_JES_EtaIntercalibration_Stat36: 1.04200282e-05 + syst_JES_EtaIntercalibration_Stat37: 6.32798722e-06 + syst_JES_EtaIntercalibration_Stat38: 1.68460570e-06 + syst_JES_EtaIntercalibration_Stat39: 1.68517647e-06 + syst_JES_EtaIntercalibration_Stat4: 1.23439631e-05 + syst_JES_EtaIntercalibration_Stat40: 7.28224539e-06 + syst_JES_EtaIntercalibration_Stat41: 1.23439631e-05 + syst_JES_EtaIntercalibration_Stat42: 1.23432560e-05 + syst_JES_EtaIntercalibration_Stat43: 1.23432560e-05 + syst_JES_EtaIntercalibration_Stat44: 1.23432560e-05 + syst_JES_EtaIntercalibration_Stat45: 1.23432560e-05 + syst_JES_EtaIntercalibration_Stat46: 1.68833063e-06 + syst_JES_EtaIntercalibration_Stat47: 9.71371417e-07 + syst_JES_EtaIntercalibration_Stat48: 1.20808343e-06 + syst_JES_EtaIntercalibration_Stat49: 7.40622665e-06 + syst_JES_EtaIntercalibration_Stat5: 1.23432560e-05 + syst_JES_EtaIntercalibration_Stat50: 1.91391634e-06 + syst_JES_EtaIntercalibration_Stat51: 3.19807423e-05 + syst_JES_EtaIntercalibration_Stat52: 2.22222624e-05 + syst_JES_EtaIntercalibration_Stat53: 4.29030497e-06 + syst_JES_EtaIntercalibration_Stat54: 4.89477493e-05 + syst_JES_EtaIntercalibration_Stat55: 4.76144126e-05 + syst_JES_EtaIntercalibration_Stat56: 4.90432126e-05 + syst_JES_EtaIntercalibration_Stat57: 2.19882694e-06 + syst_JES_EtaIntercalibration_Stat58: 3.68148932e-07 + syst_JES_EtaIntercalibration_Stat59: 3.82868802e-06 + syst_JES_EtaIntercalibration_Stat6: 1.05871489e-04 + syst_JES_EtaIntercalibration_Stat60: 1.21721073e-05 + syst_JES_EtaIntercalibration_Stat61: 1.01264172e-06 + syst_JES_EtaIntercalibration_Stat62: 7.26849092e-06 + syst_JES_EtaIntercalibration_Stat63: 1.65767169e-06 + syst_JES_EtaIntercalibration_Stat64: 1.23432560e-05 + syst_JES_EtaIntercalibration_Stat65: 1.23432560e-05 + syst_JES_EtaIntercalibration_Stat66: 1.23432560e-05 + syst_JES_EtaIntercalibration_Stat67: 1.23432560e-05 + syst_JES_EtaIntercalibration_Stat68: 3.80900701e-11 + syst_JES_EtaIntercalibration_Stat69: 7.62218222e-06 + syst_JES_EtaIntercalibration_Stat7: 7.27566822e-06 + syst_JES_EtaIntercalibration_Stat70: 3.83823267e-06 + syst_JES_EtaIntercalibration_Stat71: 2.69841077e-05 + syst_JES_EtaIntercalibration_Stat72: 4.22101705e-06 + syst_JES_EtaIntercalibration_Stat73: 1.86543636e-05 + syst_JES_EtaIntercalibration_Stat74: 5.35359228e-06 + syst_JES_EtaIntercalibration_Stat75: 5.76769473e-05 + syst_JES_EtaIntercalibration_Stat76: 4.90257990e-05 + syst_JES_EtaIntercalibration_Stat77: 4.90861018e-06 + syst_JES_EtaIntercalibration_Stat78: 7.44508783e-06 + syst_JES_EtaIntercalibration_Stat79: 3.17754312e-05 + syst_JES_EtaIntercalibration_Stat8: 1.05037227e-06 + syst_JES_EtaIntercalibration_Stat80: 4.65833025e-05 + syst_JES_EtaIntercalibration_Stat81: 4.55655752e-07 + syst_JES_EtaIntercalibration_Stat82: 8.81865370e-07 + syst_JES_EtaIntercalibration_Stat83: 1.89111498e-06 + syst_JES_EtaIntercalibration_Stat84: 1.01099761e-06 + syst_JES_EtaIntercalibration_Stat85: 1.01334332e-06 + syst_JES_EtaIntercalibration_Stat86: 7.55866972e-06 + syst_JES_EtaIntercalibration_Stat87: 7.55866972e-06 + syst_JES_EtaIntercalibration_Stat88: 1.01688700e-06 + syst_JES_EtaIntercalibration_Stat89: 7.34878889e-06 + syst_JES_EtaIntercalibration_Stat9: 3.59497872e-05 + syst_JES_EtaIntercalibration_Stat90: 2.34313058e-06 + syst_JES_EtaIntercalibration_Stat91: 2.37874931e-06 + syst_JES_EtaIntercalibration_Stat92: 2.90553259e-06 + syst_JES_EtaIntercalibration_Stat93: 1.97964412e-05 + syst_JES_EtaIntercalibration_Stat94: 2.04961313e-05 + syst_JES_EtaIntercalibration_Stat95: 7.56277042e-06 + syst_JES_EtaIntercalibration_Stat96: 4.99136521e-05 + syst_JES_EtaIntercalibration_Stat97: 4.66722668e-05 + syst_JES_EtaIntercalibration_Stat98: 4.55425839e-05 + syst_JES_EtaIntercalibration_Stat99: 3.61132776e-05 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.41779424e-02 + syst_JES_Flavour_Comp: 4.46998375e-02 + syst_JES_Flavour_Response: 4.88302230e-02 + syst_JES_Gjet_Generator: 9.34702739e-02 + syst_JES_Gjet_OOC: 7.03747803e-02 + syst_JES_Gjet_Purity: 2.38955770e-02 + syst_JES_Gjet_Stat1: 2.33906493e-04 + syst_JES_Gjet_Stat10: 3.24615076e-03 + syst_JES_Gjet_Stat11: 5.03498627e-03 + syst_JES_Gjet_Stat12: 1.31514796e-02 + syst_JES_Gjet_Stat13: 1.59063604e-02 + syst_JES_Gjet_Stat14: 3.93252982e-03 + syst_JES_Gjet_Stat15: 3.62202551e-03 + syst_JES_Gjet_Stat2: 5.03981041e-04 + syst_JES_Gjet_Stat3: 2.47330407e-04 + syst_JES_Gjet_Stat4: 3.01552699e-04 + syst_JES_Gjet_Stat5: 1.53711366e-04 + syst_JES_Gjet_Stat6: 9.41976650e-04 + syst_JES_Gjet_Stat7: 1.15164058e-03 + syst_JES_Gjet_Stat8: 7.03739043e-04 + syst_JES_Gjet_Stat9: 1.37621538e-03 + syst_JES_Gjet_Veto: 4.73378144e-02 + syst_JES_Gjet_dPhi: 5.39532548e-03 + syst_JES_LArESZee: 1.32984635e-01 + syst_JES_LArEsmear: 1.04692313e-02 + syst_JES_LAr_JVT: 1.38477344e-02 + syst_JES_MJB_Alpha: 1.47808006e-03 + syst_JES_MJB_Asym: 3.99665097e-03 + syst_JES_MJB_Beta: 5.89805703e-04 + syst_JES_MJB_Fragmentation: 1.43330848e-02 + syst_JES_MJB_Stat1: 5.66166212e-04 + syst_JES_MJB_Stat10: 1.08597810e-04 + syst_JES_MJB_Stat11: 8.25656593e-05 + syst_JES_MJB_Stat12: 7.59703987e-05 + syst_JES_MJB_Stat13: 6.13198266e-05 + syst_JES_MJB_Stat14: 2.00761967e-05 + syst_JES_MJB_Stat15: 7.77034551e-05 + syst_JES_MJB_Stat16: 1.71070615e-04 + syst_JES_MJB_Stat2: 1.54017343e-03 + syst_JES_MJB_Stat3: 1.35401744e-03 + syst_JES_MJB_Stat4: 6.08035449e-04 + syst_JES_MJB_Stat5: 3.55461823e-04 + syst_JES_MJB_Stat6: 1.85953563e-04 + syst_JES_MJB_Stat7: 1.92823261e-04 + syst_JES_MJB_Stat8: 1.58683208e-04 + syst_JES_MJB_Stat9: 1.04701849e-04 + syst_JES_MJB_Threshold: 5.87515419e-03 + syst_JES_Pileup_MuOffset: 1.16324865e-02 + syst_JES_Pileup_NPVOffset: 1.24821259e-02 + syst_JES_Pileup_Pt_term: 1.55903143e-02 + syst_JES_Pileup_Rho_topology: 3.07520320e-02 + syst_JES_PunchThrough_MC15: 2.35637030e-03 + syst_JES_SingleParticle_HighPt: 1.64038684e-05 + syst_JES_Zjet_MC: 7.32804926e-02 + syst_JES_Zjet_MuScale: 4.39180040e-03 + syst_JES_Zjet_MuSmearID: 1.04379472e-03 + syst_JES_Zjet_MuSmearMS: 1.84996453e-02 + syst_JES_Zjet_OOC: 2.99613163e-02 + syst_JES_Zjet_Stat1: 1.03382168e-03 + syst_JES_Zjet_Stat10: 2.41105019e-03 + syst_JES_Zjet_Stat11: 2.74249923e-03 + syst_JES_Zjet_Stat12: 1.99587894e-02 + syst_JES_Zjet_Stat13: 1.76964855e-02 + syst_JES_Zjet_Stat2: 1.91223665e-04 + syst_JES_Zjet_Stat3: 4.85931242e-04 + syst_JES_Zjet_Stat4: 4.91655320e-04 + syst_JES_Zjet_Stat5: 6.86902096e-04 + syst_JES_Zjet_Stat6: 5.53373442e-04 + syst_JES_Zjet_Stat7: 5.03841967e-04 + syst_JES_Zjet_Stat8: 7.02317569e-04 + syst_JES_Zjet_Stat9: 1.13175530e-03 + syst_JES_Zjet_Veto: 5.75757039e-03 + syst_JES_Zjet_dPhi: 4.80750005e-03 syst_PRW: 0.0 syst_Unfolding_bias: 0.0 - syst_cleaning: 0.04433184041972541 + syst_cleaning: 4.43318404e-02 syst_lumi: 0.10221 -- stat: 0.0095375 - syst_JER_CROSS_CALIB_FORWARD: 2.199e-13 - syst_JER_NOISE_FORWARD: 1.719e-13 - syst_JER_NP0: 0.005296975622938055 - syst_JER_NP1: 0.0004808747524044073 - syst_JER_NP2: 0.0019855938028710707 - syst_JER_NP3: 0.0013975059454256358 - syst_JER_NP4: 0.00032346209592470026 +- stat: 9.53750000e-03 + syst_JER_CROSS_CALIB_FORWARD: 2.19900000e-13 + syst_JER_NOISE_FORWARD: 1.71900000e-13 + syst_JER_NP0: 5.29697562e-03 + syst_JER_NP1: 4.80874752e-04 + syst_JER_NP2: 1.98559380e-03 + syst_JER_NP3: 1.39750595e-03 + syst_JER_NP4: 3.23462096e-04 syst_JER_NP5: 0.0 - syst_JER_NP6: 6.051768563816695e-41 + syst_JER_NP6: 6.05176856e-41 syst_JER_NP7: 0.0 - syst_JER_NP8: 0.0012906121144635207 - syst_JES_EtaIntercalibration_Modelling: 0.046695004818502805 - syst_JES_EtaIntercalibration_NonClosure: 0.0008747805553394521 - syst_JES_EtaIntercalibration_Stat0: 6.46578440716979e-06 - syst_JES_EtaIntercalibration_Stat1: 6.46578440716979e-06 - syst_JES_EtaIntercalibration_Stat10: 5.5522303653576914e-05 - syst_JES_EtaIntercalibration_Stat100: 1.1467403716622172e-05 - syst_JES_EtaIntercalibration_Stat101: 2.252644126575382e-07 - syst_JES_EtaIntercalibration_Stat102: 4.1651797080078064e-08 - syst_JES_EtaIntercalibration_Stat103: 4.076998345290318e-06 - syst_JES_EtaIntercalibration_Stat104: 6.700518579184749e-08 - syst_JES_EtaIntercalibration_Stat105: 2.0230373088370792e-07 - syst_JES_EtaIntercalibration_Stat106: 3.238891018453588e-08 - syst_JES_EtaIntercalibration_Stat107: 3.95946814601383e-06 - syst_JES_EtaIntercalibration_Stat108: 3.998439289272753e-06 - syst_JES_EtaIntercalibration_Stat109: 9.20556059170217e-06 - syst_JES_EtaIntercalibration_Stat11: 5.6906522807695146e-05 - syst_JES_EtaIntercalibration_Stat110: 9.20516518211379e-06 - syst_JES_EtaIntercalibration_Stat111: 4.141870744905012e-07 - syst_JES_EtaIntercalibration_Stat112: 2.04157410592905e-07 - syst_JES_EtaIntercalibration_Stat113: 1.6591371273948398e-05 - syst_JES_EtaIntercalibration_Stat114: 9.287596930853535e-06 - syst_JES_EtaIntercalibration_Stat115: 1.3781365199065003e-05 - syst_JES_EtaIntercalibration_Stat116: 4.983266398658614e-06 - syst_JES_EtaIntercalibration_Stat117: 6.398620828545789e-06 - syst_JES_EtaIntercalibration_Stat118: 8.169299663985892e-06 - syst_JES_EtaIntercalibration_Stat119: 1.6761697317619718e-05 - syst_JES_EtaIntercalibration_Stat12: 1.9009264108267835e-05 - syst_JES_EtaIntercalibration_Stat120: 4.309525649070904e-05 - syst_JES_EtaIntercalibration_Stat121: 4.488439818021402e-06 - syst_JES_EtaIntercalibration_Stat122: 3.7400404743799233e-06 - syst_JES_EtaIntercalibration_Stat123: 6.805794149105599e-07 - syst_JES_EtaIntercalibration_Stat124: 6.557286843657215e-07 - syst_JES_EtaIntercalibration_Stat125: 2.311373372586091e-06 - syst_JES_EtaIntercalibration_Stat126: 2.7339836844478425e-06 - syst_JES_EtaIntercalibration_Stat127: 6.583525119569303e-08 - syst_JES_EtaIntercalibration_Stat128: 8.79737267597548e-06 - syst_JES_EtaIntercalibration_Stat129: 1.8626778438581374e-05 - syst_JES_EtaIntercalibration_Stat13: 6.46578440716979e-06 - syst_JES_EtaIntercalibration_Stat130: 2.803186993405898e-06 - syst_JES_EtaIntercalibration_Stat131: 2.522271537225919e-05 - syst_JES_EtaIntercalibration_Stat132: 3.477477066782756e-05 - syst_JES_EtaIntercalibration_Stat133: 1.1541280821468647e-05 - syst_JES_EtaIntercalibration_Stat134: 5.8867215833603e-05 - syst_JES_EtaIntercalibration_Stat135: 5.879337887891799e-05 - syst_JES_EtaIntercalibration_Stat136: 8.328243197097453e-05 - syst_JES_EtaIntercalibration_Stat137: 8.539120903670352e-05 - syst_JES_EtaIntercalibration_Stat138: 5.223517684472791e-05 - syst_JES_EtaIntercalibration_Stat139: 4.6008773891509e-05 - syst_JES_EtaIntercalibration_Stat14: 6.46578440716979e-06 - syst_JES_EtaIntercalibration_Stat140: 8.155489439635122e-05 - syst_JES_EtaIntercalibration_Stat141: 2.9202498125160453e-05 - syst_JES_EtaIntercalibration_Stat142: 4.966884100910247e-06 - syst_JES_EtaIntercalibration_Stat143: 9.658728280679605e-06 - syst_JES_EtaIntercalibration_Stat144: 8.554004150104207e-06 - syst_JES_EtaIntercalibration_Stat145: 2.2509595731598558e-06 - syst_JES_EtaIntercalibration_Stat146: 1.0843362116981984e-05 - syst_JES_EtaIntercalibration_Stat147: 2.8888765949889584e-06 - syst_JES_EtaIntercalibration_Stat148: 4.804349903993255e-06 - syst_JES_EtaIntercalibration_Stat149: 4.847661704368407e-05 - syst_JES_EtaIntercalibration_Stat15: 3.938017775480451e-06 - syst_JES_EtaIntercalibration_Stat150: 4.130247338840617e-05 - syst_JES_EtaIntercalibration_Stat151: 5.453936743307535e-05 - syst_JES_EtaIntercalibration_Stat152: 6.928617408076448e-05 - syst_JES_EtaIntercalibration_Stat153: 7.46264596172162e-05 - syst_JES_EtaIntercalibration_Stat154: 9.946343788045937e-05 - syst_JES_EtaIntercalibration_Stat155: 0.00013848157369123157 - syst_JES_EtaIntercalibration_Stat156: 0.00010018201335569174 - syst_JES_EtaIntercalibration_Stat157: 0.00013141549490071558 - syst_JES_EtaIntercalibration_Stat158: 0.00011056042182897099 - syst_JES_EtaIntercalibration_Stat159: 3.603899638932804e-05 - syst_JES_EtaIntercalibration_Stat16: 3.938017775480451e-06 - syst_JES_EtaIntercalibration_Stat160: 1.4576450828305222e-05 - syst_JES_EtaIntercalibration_Stat161: 2.946839525237165e-05 - syst_JES_EtaIntercalibration_Stat162: 1.820742452957035e-06 - syst_JES_EtaIntercalibration_Stat163: 2.2954343270936765e-06 - syst_JES_EtaIntercalibration_Stat164: 8.911434799598772e-06 - syst_JES_EtaIntercalibration_Stat165: 1.0372923310234199e-05 - syst_JES_EtaIntercalibration_Stat166: 4.1416241983067466e-05 - syst_JES_EtaIntercalibration_Stat167: 6.678464718780807e-05 - syst_JES_EtaIntercalibration_Stat168: 0.00011458470185849417 - syst_JES_EtaIntercalibration_Stat169: 0.00022395169121933417 - syst_JES_EtaIntercalibration_Stat17: 4.008574271171734e-06 - syst_JES_EtaIntercalibration_Stat170: 0.00029354460894896365 - syst_JES_EtaIntercalibration_Stat171: 0.00026165037741230187 - syst_JES_EtaIntercalibration_Stat172: 0.00021141677014844398 - syst_JES_EtaIntercalibration_Stat173: 0.00025617330071652666 - syst_JES_EtaIntercalibration_Stat174: 0.00020005147012706504 - syst_JES_EtaIntercalibration_Stat175: 0.0002444057487048944 - syst_JES_EtaIntercalibration_Stat176: 0.00028306255050783387 - syst_JES_EtaIntercalibration_Stat177: 0.00021722996357546992 - syst_JES_EtaIntercalibration_Stat178: 4.847553480880846e-05 - syst_JES_EtaIntercalibration_Stat179: 5.480410477327405e-05 - syst_JES_EtaIntercalibration_Stat18: 3.938017775480451e-06 - syst_JES_EtaIntercalibration_Stat180: 2.8927179409812838e-05 - syst_JES_EtaIntercalibration_Stat181: 5.130505920472171e-06 - syst_JES_EtaIntercalibration_Stat182: 4.7830078402611885e-05 - syst_JES_EtaIntercalibration_Stat183: 0.00017981726140724088 - syst_JES_EtaIntercalibration_Stat184: 0.00025096096808069574 - syst_JES_EtaIntercalibration_Stat185: 0.0004826422899000874 - syst_JES_EtaIntercalibration_Stat186: 0.000717728980883453 - syst_JES_EtaIntercalibration_Stat187: 0.0010125900688333852 - syst_JES_EtaIntercalibration_Stat188: 0.0010187939634685708 - syst_JES_EtaIntercalibration_Stat189: 0.0008286667001877172 - syst_JES_EtaIntercalibration_Stat19: 6.46578440716979e-06 - syst_JES_EtaIntercalibration_Stat190: 0.0007938218109248447 - syst_JES_EtaIntercalibration_Stat191: 0.0009487049949799991 - syst_JES_EtaIntercalibration_Stat192: 0.0010682335091168034 - syst_JES_EtaIntercalibration_Stat193: 0.000939722560120805 - syst_JES_EtaIntercalibration_Stat194: 0.0006238258470919588 - syst_JES_EtaIntercalibration_Stat195: 0.0003320539715166798 - syst_JES_EtaIntercalibration_Stat196: 0.00014760149999237812 - syst_JES_EtaIntercalibration_Stat197: 0.00011065828877675634 - syst_JES_EtaIntercalibration_Stat198: 0.00025335539307462946 - syst_JES_EtaIntercalibration_Stat199: 0.00031196142389725045 - syst_JES_EtaIntercalibration_Stat2: 6.46578440716979e-06 - syst_JES_EtaIntercalibration_Stat20: 6.46578440716979e-06 - syst_JES_EtaIntercalibration_Stat200: 0.00038434207419953386 - syst_JES_EtaIntercalibration_Stat201: 0.0008287553740398912 - syst_JES_EtaIntercalibration_Stat202: 0.0011470428185120206 - syst_JES_EtaIntercalibration_Stat203: 0.0011917252231533912 - syst_JES_EtaIntercalibration_Stat204: 0.0009183485000259977 - syst_JES_EtaIntercalibration_Stat205: 0.0008121858284900076 - syst_JES_EtaIntercalibration_Stat206: 0.001194471794350959 - syst_JES_EtaIntercalibration_Stat207: 0.0010700584131251901 - syst_JES_EtaIntercalibration_Stat208: 0.0012040160796268464 - syst_JES_EtaIntercalibration_Stat209: 0.0001166800008570449 - syst_JES_EtaIntercalibration_Stat21: 6.46578440716979e-06 - syst_JES_EtaIntercalibration_Stat210: 0.0003131132822158779 - syst_JES_EtaIntercalibration_Stat211: 8.131374852999952e-05 - syst_JES_EtaIntercalibration_Stat212: 4.371702418082771e-06 - syst_JES_EtaIntercalibration_Stat213: 4.1089600591268835e-05 - syst_JES_EtaIntercalibration_Stat214: 0.0002433519673230525 - syst_JES_EtaIntercalibration_Stat215: 0.0004171462453384904 - syst_JES_EtaIntercalibration_Stat216: 0.00042640856874598567 - syst_JES_EtaIntercalibration_Stat217: 0.00038587612400225026 - syst_JES_EtaIntercalibration_Stat218: 0.0003404546471998877 - syst_JES_EtaIntercalibration_Stat219: 0.0004060649701710307 - syst_JES_EtaIntercalibration_Stat22: 6.46578440716979e-06 - syst_JES_EtaIntercalibration_Stat220: 0.0003631947549180742 - syst_JES_EtaIntercalibration_Stat221: 0.00033781759871267804 - syst_JES_EtaIntercalibration_Stat222: 0.000164911989558067 - syst_JES_EtaIntercalibration_Stat223: 3.4730780163278796e-05 - syst_JES_EtaIntercalibration_Stat224: 8.017222025115683e-06 - syst_JES_EtaIntercalibration_Stat225: 5.564807880780791e-05 - syst_JES_EtaIntercalibration_Stat226: 3.63052899038143e-05 - syst_JES_EtaIntercalibration_Stat227: 0.00013850591936809056 - syst_JES_EtaIntercalibration_Stat228: 3.320108850625232e-05 - syst_JES_EtaIntercalibration_Stat229: 7.20159779146267e-05 - syst_JES_EtaIntercalibration_Stat23: 6.438236773372037e-06 - syst_JES_EtaIntercalibration_Stat230: 0.00013473998701202255 - syst_JES_EtaIntercalibration_Stat231: 0.00011327771482070071 - syst_JES_EtaIntercalibration_Stat232: 8.8952105652424e-05 - syst_JES_EtaIntercalibration_Stat233: 3.151156097371249e-05 - syst_JES_EtaIntercalibration_Stat234: 4.080818147136674e-05 - syst_JES_EtaIntercalibration_Stat235: 2.27897589345933e-05 - syst_JES_EtaIntercalibration_Stat236: 1.1939026216572272e-05 - syst_JES_EtaIntercalibration_Stat237: 2.4581692796672895e-05 - syst_JES_EtaIntercalibration_Stat238: 3.034944096272615e-05 - syst_JES_EtaIntercalibration_Stat239: 3.251209133153388e-05 - syst_JES_EtaIntercalibration_Stat24: 3.93798468392146e-06 - syst_JES_EtaIntercalibration_Stat240: 7.779383147772628e-06 - syst_JES_EtaIntercalibration_Stat241: 1.1936621017168134e-05 - syst_JES_EtaIntercalibration_Stat242: 1.0896170737924401e-05 - syst_JES_EtaIntercalibration_Stat243: 2.7148109473773676e-05 - syst_JES_EtaIntercalibration_Stat244: 2.104027345354618e-06 - syst_JES_EtaIntercalibration_Stat245: 2.3480756945848235e-05 - syst_JES_EtaIntercalibration_Stat25: 1.1531852095392135e-07 - syst_JES_EtaIntercalibration_Stat26: 1.0777016412254368e-07 - syst_JES_EtaIntercalibration_Stat27: 1.1056321811524843e-07 - syst_JES_EtaIntercalibration_Stat28: 1.0809584393028253e-07 - syst_JES_EtaIntercalibration_Stat29: 4.265249135455044e-05 - syst_JES_EtaIntercalibration_Stat3: 6.466491533281397e-06 - syst_JES_EtaIntercalibration_Stat30: 1.094353037186812e-07 - syst_JES_EtaIntercalibration_Stat31: 2.1667952846706544e-06 - syst_JES_EtaIntercalibration_Stat32: 2.7591575334379168e-05 - syst_JES_EtaIntercalibration_Stat33: 5.689785729400308e-05 - syst_JES_EtaIntercalibration_Stat34: 2.726249362530402e-05 - syst_JES_EtaIntercalibration_Stat35: 6.794274507044517e-08 - syst_JES_EtaIntercalibration_Stat36: 5.459240858397805e-06 - syst_JES_EtaIntercalibration_Stat37: 3.956168962620277e-06 - syst_JES_EtaIntercalibration_Stat38: 1.0888616578794572e-07 - syst_JES_EtaIntercalibration_Stat39: 1.0892879922224426e-07 - syst_JES_EtaIntercalibration_Stat4: 6.466491533281397e-06 - syst_JES_EtaIntercalibration_Stat40: 3.93719322511291e-06 - syst_JES_EtaIntercalibration_Stat41: 6.466491533281397e-06 - syst_JES_EtaIntercalibration_Stat42: 6.46578440716979e-06 - syst_JES_EtaIntercalibration_Stat43: 6.46578440716979e-06 - syst_JES_EtaIntercalibration_Stat44: 6.46578440716979e-06 - syst_JES_EtaIntercalibration_Stat45: 6.46578440716979e-06 - syst_JES_EtaIntercalibration_Stat46: 1.0910432014819576e-07 - syst_JES_EtaIntercalibration_Stat47: 6.471196102730932e-08 - syst_JES_EtaIntercalibration_Stat48: 1.1854844199735397e-07 - syst_JES_EtaIntercalibration_Stat49: 3.995349313989955e-06 - syst_JES_EtaIntercalibration_Stat5: 6.46578440716979e-06 - syst_JES_EtaIntercalibration_Stat50: 2.65783209362753e-07 - syst_JES_EtaIntercalibration_Stat51: 1.6003033673338314e-05 - syst_JES_EtaIntercalibration_Stat52: 1.2314883767724217e-05 - syst_JES_EtaIntercalibration_Stat53: 2.2859627842115015e-06 - syst_JES_EtaIntercalibration_Stat54: 2.7349081929957354e-05 - syst_JES_EtaIntercalibration_Stat55: 2.7262948551798866e-05 - syst_JES_EtaIntercalibration_Stat56: 2.73577518846184e-05 - syst_JES_EtaIntercalibration_Stat57: 1.9390251778065048e-07 - syst_JES_EtaIntercalibration_Stat58: 3.241541784240311e-08 - syst_JES_EtaIntercalibration_Stat59: 2.5028129088692034e-06 - syst_JES_EtaIntercalibration_Stat6: 4.5544270332767296e-05 - syst_JES_EtaIntercalibration_Stat60: 6.376339133860431e-06 - syst_JES_EtaIntercalibration_Stat61: 6.567926717503027e-08 - syst_JES_EtaIntercalibration_Stat62: 3.930265880557573e-06 - syst_JES_EtaIntercalibration_Stat63: 1.0748736332704417e-07 - syst_JES_EtaIntercalibration_Stat64: 6.46578440716979e-06 - syst_JES_EtaIntercalibration_Stat65: 6.46578440716979e-06 - syst_JES_EtaIntercalibration_Stat66: 6.46578440716979e-06 - syst_JES_EtaIntercalibration_Stat67: 6.46578440716979e-06 - syst_JES_EtaIntercalibration_Stat68: 1.842894704729695e-12 - syst_JES_EtaIntercalibration_Stat69: 3.923305655015296e-06 - syst_JES_EtaIntercalibration_Stat7: 3.937372934673574e-06 - syst_JES_EtaIntercalibration_Stat70: 3.008572705678699e-06 - syst_JES_EtaIntercalibration_Stat71: 1.4146838447776946e-05 - syst_JES_EtaIntercalibration_Stat72: 8.661120579976785e-06 - syst_JES_EtaIntercalibration_Stat73: 1.1743313274161462e-05 - syst_JES_EtaIntercalibration_Stat74: 2.23608641173591e-06 - syst_JES_EtaIntercalibration_Stat75: 3.21814874462581e-05 - syst_JES_EtaIntercalibration_Stat76: 2.7349087320651695e-05 - syst_JES_EtaIntercalibration_Stat77: 3.300508429095095e-06 - syst_JES_EtaIntercalibration_Stat78: 3.864595321634595e-06 - syst_JES_EtaIntercalibration_Stat79: 1.683558000922974e-05 - syst_JES_EtaIntercalibration_Stat8: 6.76829182673701e-08 - syst_JES_EtaIntercalibration_Stat80: 2.440458570286396e-05 - syst_JES_EtaIntercalibration_Stat81: 3.789497460086232e-08 - syst_JES_EtaIntercalibration_Stat82: 4.792538196245113e-08 - syst_JES_EtaIntercalibration_Stat83: 1.1140548045316263e-07 - syst_JES_EtaIntercalibration_Stat84: 6.557541397097611e-08 - syst_JES_EtaIntercalibration_Stat85: 6.57056918395187e-08 - syst_JES_EtaIntercalibration_Stat86: 3.959468145958231e-06 - syst_JES_EtaIntercalibration_Stat87: 3.959468146102453e-06 - syst_JES_EtaIntercalibration_Stat88: 6.592185217000901e-08 - syst_JES_EtaIntercalibration_Stat89: 3.850334326938806e-06 - syst_JES_EtaIntercalibration_Stat9: 1.8986793436677902e-05 - syst_JES_EtaIntercalibration_Stat90: 3.0568682319748017e-07 - syst_JES_EtaIntercalibration_Stat91: 3.1024220904319256e-07 - syst_JES_EtaIntercalibration_Stat92: 4.0694630286579796e-07 - syst_JES_EtaIntercalibration_Stat93: 1.1890235952166466e-05 - syst_JES_EtaIntercalibration_Stat94: 1.4124471954731617e-05 - syst_JES_EtaIntercalibration_Stat95: 2.6058359023545588e-06 - syst_JES_EtaIntercalibration_Stat96: 2.742369217059403e-05 - syst_JES_EtaIntercalibration_Stat97: 2.605343207717555e-05 - syst_JES_EtaIntercalibration_Stat98: 2.62278782357628e-05 - syst_JES_EtaIntercalibration_Stat99: 2.52879428106837e-05 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.008994408971689023 - syst_JES_Flavour_Comp: 0.027890032269612022 - syst_JES_Flavour_Response: 0.019876369764119398 - syst_JES_Gjet_Generator: 0.04969016301039875 - syst_JES_Gjet_OOC: 0.03819404617214574 - syst_JES_Gjet_Purity: 0.012350253924515074 - syst_JES_Gjet_Stat1: 0.00013850793298580413 - syst_JES_Gjet_Stat10: 0.0015960265505310367 - syst_JES_Gjet_Stat11: 0.0022794900197193233 - syst_JES_Gjet_Stat12: 0.006399001875292739 - syst_JES_Gjet_Stat13: 0.010586109200268057 - syst_JES_Gjet_Stat14: 0.005623767665008932 - syst_JES_Gjet_Stat15: 0.0025420141620376546 - syst_JES_Gjet_Stat2: 0.00028119322538069794 - syst_JES_Gjet_Stat3: 0.00015558282705684456 - syst_JES_Gjet_Stat4: 0.0001705891616574746 - syst_JES_Gjet_Stat5: 0.0001241756670004232 - syst_JES_Gjet_Stat6: 0.0005670082620209338 - syst_JES_Gjet_Stat7: 0.0006392780048617347 - syst_JES_Gjet_Stat8: 0.000505960334413677 - syst_JES_Gjet_Stat9: 0.00076490032684004 - syst_JES_Gjet_Veto: 0.028906315486412308 - syst_JES_Gjet_dPhi: 0.003394143595960548 - syst_JES_LArESZee: 0.07331794920072436 - syst_JES_LArEsmear: 0.005844382495182874 - syst_JES_LAr_JVT: 0.007623352067824232 - syst_JES_MJB_Alpha: 0.0008575196032744674 - syst_JES_MJB_Asym: 0.0024748282263623873 - syst_JES_MJB_Beta: 0.0005142091597783921 - syst_JES_MJB_Fragmentation: 0.008238234807894224 - syst_JES_MJB_Stat1: 0.0002996476055302295 - syst_JES_MJB_Stat10: 7.195762972055152e-05 - syst_JES_MJB_Stat11: 0.00010091247742474664 - syst_JES_MJB_Stat12: 7.931318868889334e-05 - syst_JES_MJB_Stat13: 7.210200742697807e-05 - syst_JES_MJB_Stat14: 3.5842637668006526e-05 - syst_JES_MJB_Stat15: 1.869312870415223e-05 - syst_JES_MJB_Stat16: 6.821236599766936e-05 - syst_JES_MJB_Stat2: 0.0008480450857707979 - syst_JES_MJB_Stat3: 0.0010163846515960384 - syst_JES_MJB_Stat4: 0.0005559656531657328 - syst_JES_MJB_Stat5: 0.00033994603615868205 - syst_JES_MJB_Stat6: 5.22327311175665e-05 - syst_JES_MJB_Stat7: 5.290632359888561e-05 - syst_JES_MJB_Stat8: 6.817795758161137e-05 - syst_JES_MJB_Stat9: 5.326852917060879e-05 - syst_JES_MJB_Threshold: 0.0037790036633350865 - syst_JES_Pileup_MuOffset: 0.007390962369678255 - syst_JES_Pileup_NPVOffset: 0.007867015190019656 - syst_JES_Pileup_Pt_term: 0.008063096675595549 - syst_JES_Pileup_Rho_topology: 0.015967895133673693 - syst_JES_PunchThrough_MC15: 0.0017478257207170285 - syst_JES_SingleParticle_HighPt: 8.593180261114042e-06 - syst_JES_Zjet_MC: 0.03502018275223588 - syst_JES_Zjet_MuScale: 0.00236064525077361 - syst_JES_Zjet_MuSmearID: 0.0006567095400555712 - syst_JES_Zjet_MuSmearMS: 0.009756272584855345 - syst_JES_Zjet_OOC: 0.014995481819534843 - syst_JES_Zjet_Stat1: 0.0007134411888866523 - syst_JES_Zjet_Stat10: 0.0013138584883844986 - syst_JES_Zjet_Stat11: 0.0015666537588120743 - syst_JES_Zjet_Stat12: 0.008361851275285874 - syst_JES_Zjet_Stat13: 0.010041546332612323 - syst_JES_Zjet_Stat2: 0.00010165238155104877 - syst_JES_Zjet_Stat3: 0.00039979848674050785 - syst_JES_Zjet_Stat4: 0.0004027644969457959 - syst_JES_Zjet_Stat5: 0.0004806121721305028 - syst_JES_Zjet_Stat6: 0.00048438729081180484 - syst_JES_Zjet_Stat7: 0.00027383280939288486 - syst_JES_Zjet_Stat8: 0.0004417529222314211 - syst_JES_Zjet_Stat9: 0.0006927060325275073 - syst_JES_Zjet_Veto: 0.00323250007733952 - syst_JES_Zjet_dPhi: 0.002748984676203198 + syst_JER_NP8: 1.29061211e-03 + syst_JES_EtaIntercalibration_Modelling: 4.66950048e-02 + syst_JES_EtaIntercalibration_NonClosure: 8.74780555e-04 + syst_JES_EtaIntercalibration_Stat0: 6.46578441e-06 + syst_JES_EtaIntercalibration_Stat1: 6.46578441e-06 + syst_JES_EtaIntercalibration_Stat10: 5.55223037e-05 + syst_JES_EtaIntercalibration_Stat100: 1.14674037e-05 + syst_JES_EtaIntercalibration_Stat101: 2.25264413e-07 + syst_JES_EtaIntercalibration_Stat102: 4.16517971e-08 + syst_JES_EtaIntercalibration_Stat103: 4.07699835e-06 + syst_JES_EtaIntercalibration_Stat104: 6.70051858e-08 + syst_JES_EtaIntercalibration_Stat105: 2.02303731e-07 + syst_JES_EtaIntercalibration_Stat106: 3.23889102e-08 + syst_JES_EtaIntercalibration_Stat107: 3.95946815e-06 + syst_JES_EtaIntercalibration_Stat108: 3.99843929e-06 + syst_JES_EtaIntercalibration_Stat109: 9.20556059e-06 + syst_JES_EtaIntercalibration_Stat11: 5.69065228e-05 + syst_JES_EtaIntercalibration_Stat110: 9.20516518e-06 + syst_JES_EtaIntercalibration_Stat111: 4.14187074e-07 + syst_JES_EtaIntercalibration_Stat112: 2.04157411e-07 + syst_JES_EtaIntercalibration_Stat113: 1.65913713e-05 + syst_JES_EtaIntercalibration_Stat114: 9.28759693e-06 + syst_JES_EtaIntercalibration_Stat115: 1.37813652e-05 + syst_JES_EtaIntercalibration_Stat116: 4.98326640e-06 + syst_JES_EtaIntercalibration_Stat117: 6.39862083e-06 + syst_JES_EtaIntercalibration_Stat118: 8.16929966e-06 + syst_JES_EtaIntercalibration_Stat119: 1.67616973e-05 + syst_JES_EtaIntercalibration_Stat12: 1.90092641e-05 + syst_JES_EtaIntercalibration_Stat120: 4.30952565e-05 + syst_JES_EtaIntercalibration_Stat121: 4.48843982e-06 + syst_JES_EtaIntercalibration_Stat122: 3.74004047e-06 + syst_JES_EtaIntercalibration_Stat123: 6.80579415e-07 + syst_JES_EtaIntercalibration_Stat124: 6.55728684e-07 + syst_JES_EtaIntercalibration_Stat125: 2.31137337e-06 + syst_JES_EtaIntercalibration_Stat126: 2.73398368e-06 + syst_JES_EtaIntercalibration_Stat127: 6.58352512e-08 + syst_JES_EtaIntercalibration_Stat128: 8.79737268e-06 + syst_JES_EtaIntercalibration_Stat129: 1.86267784e-05 + syst_JES_EtaIntercalibration_Stat13: 6.46578441e-06 + syst_JES_EtaIntercalibration_Stat130: 2.80318699e-06 + syst_JES_EtaIntercalibration_Stat131: 2.52227154e-05 + syst_JES_EtaIntercalibration_Stat132: 3.47747707e-05 + syst_JES_EtaIntercalibration_Stat133: 1.15412808e-05 + syst_JES_EtaIntercalibration_Stat134: 5.88672158e-05 + syst_JES_EtaIntercalibration_Stat135: 5.87933789e-05 + syst_JES_EtaIntercalibration_Stat136: 8.32824320e-05 + syst_JES_EtaIntercalibration_Stat137: 8.53912090e-05 + syst_JES_EtaIntercalibration_Stat138: 5.22351768e-05 + syst_JES_EtaIntercalibration_Stat139: 4.60087739e-05 + syst_JES_EtaIntercalibration_Stat14: 6.46578441e-06 + syst_JES_EtaIntercalibration_Stat140: 8.15548944e-05 + syst_JES_EtaIntercalibration_Stat141: 2.92024981e-05 + syst_JES_EtaIntercalibration_Stat142: 4.96688410e-06 + syst_JES_EtaIntercalibration_Stat143: 9.65872828e-06 + syst_JES_EtaIntercalibration_Stat144: 8.55400415e-06 + syst_JES_EtaIntercalibration_Stat145: 2.25095957e-06 + syst_JES_EtaIntercalibration_Stat146: 1.08433621e-05 + syst_JES_EtaIntercalibration_Stat147: 2.88887659e-06 + syst_JES_EtaIntercalibration_Stat148: 4.80434990e-06 + syst_JES_EtaIntercalibration_Stat149: 4.84766170e-05 + syst_JES_EtaIntercalibration_Stat15: 3.93801778e-06 + syst_JES_EtaIntercalibration_Stat150: 4.13024734e-05 + syst_JES_EtaIntercalibration_Stat151: 5.45393674e-05 + syst_JES_EtaIntercalibration_Stat152: 6.92861741e-05 + syst_JES_EtaIntercalibration_Stat153: 7.46264596e-05 + syst_JES_EtaIntercalibration_Stat154: 9.94634379e-05 + syst_JES_EtaIntercalibration_Stat155: 1.38481574e-04 + syst_JES_EtaIntercalibration_Stat156: 1.00182013e-04 + syst_JES_EtaIntercalibration_Stat157: 1.31415495e-04 + syst_JES_EtaIntercalibration_Stat158: 1.10560422e-04 + syst_JES_EtaIntercalibration_Stat159: 3.60389964e-05 + syst_JES_EtaIntercalibration_Stat16: 3.93801778e-06 + syst_JES_EtaIntercalibration_Stat160: 1.45764508e-05 + syst_JES_EtaIntercalibration_Stat161: 2.94683953e-05 + syst_JES_EtaIntercalibration_Stat162: 1.82074245e-06 + syst_JES_EtaIntercalibration_Stat163: 2.29543433e-06 + syst_JES_EtaIntercalibration_Stat164: 8.91143480e-06 + syst_JES_EtaIntercalibration_Stat165: 1.03729233e-05 + syst_JES_EtaIntercalibration_Stat166: 4.14162420e-05 + syst_JES_EtaIntercalibration_Stat167: 6.67846472e-05 + syst_JES_EtaIntercalibration_Stat168: 1.14584702e-04 + syst_JES_EtaIntercalibration_Stat169: 2.23951691e-04 + syst_JES_EtaIntercalibration_Stat17: 4.00857427e-06 + syst_JES_EtaIntercalibration_Stat170: 2.93544609e-04 + syst_JES_EtaIntercalibration_Stat171: 2.61650377e-04 + syst_JES_EtaIntercalibration_Stat172: 2.11416770e-04 + syst_JES_EtaIntercalibration_Stat173: 2.56173301e-04 + syst_JES_EtaIntercalibration_Stat174: 2.00051470e-04 + syst_JES_EtaIntercalibration_Stat175: 2.44405749e-04 + syst_JES_EtaIntercalibration_Stat176: 2.83062551e-04 + syst_JES_EtaIntercalibration_Stat177: 2.17229964e-04 + syst_JES_EtaIntercalibration_Stat178: 4.84755348e-05 + syst_JES_EtaIntercalibration_Stat179: 5.48041048e-05 + syst_JES_EtaIntercalibration_Stat18: 3.93801778e-06 + syst_JES_EtaIntercalibration_Stat180: 2.89271794e-05 + syst_JES_EtaIntercalibration_Stat181: 5.13050592e-06 + syst_JES_EtaIntercalibration_Stat182: 4.78300784e-05 + syst_JES_EtaIntercalibration_Stat183: 1.79817261e-04 + syst_JES_EtaIntercalibration_Stat184: 2.50960968e-04 + syst_JES_EtaIntercalibration_Stat185: 4.82642290e-04 + syst_JES_EtaIntercalibration_Stat186: 7.17728981e-04 + syst_JES_EtaIntercalibration_Stat187: 1.01259007e-03 + syst_JES_EtaIntercalibration_Stat188: 1.01879396e-03 + syst_JES_EtaIntercalibration_Stat189: 8.28666700e-04 + syst_JES_EtaIntercalibration_Stat19: 6.46578441e-06 + syst_JES_EtaIntercalibration_Stat190: 7.93821811e-04 + syst_JES_EtaIntercalibration_Stat191: 9.48704995e-04 + syst_JES_EtaIntercalibration_Stat192: 1.06823351e-03 + syst_JES_EtaIntercalibration_Stat193: 9.39722560e-04 + syst_JES_EtaIntercalibration_Stat194: 6.23825847e-04 + syst_JES_EtaIntercalibration_Stat195: 3.32053972e-04 + syst_JES_EtaIntercalibration_Stat196: 1.47601500e-04 + syst_JES_EtaIntercalibration_Stat197: 1.10658289e-04 + syst_JES_EtaIntercalibration_Stat198: 2.53355393e-04 + syst_JES_EtaIntercalibration_Stat199: 3.11961424e-04 + syst_JES_EtaIntercalibration_Stat2: 6.46578441e-06 + syst_JES_EtaIntercalibration_Stat20: 6.46578441e-06 + syst_JES_EtaIntercalibration_Stat200: 3.84342074e-04 + syst_JES_EtaIntercalibration_Stat201: 8.28755374e-04 + syst_JES_EtaIntercalibration_Stat202: 1.14704282e-03 + syst_JES_EtaIntercalibration_Stat203: 1.19172522e-03 + syst_JES_EtaIntercalibration_Stat204: 9.18348500e-04 + syst_JES_EtaIntercalibration_Stat205: 8.12185828e-04 + syst_JES_EtaIntercalibration_Stat206: 1.19447179e-03 + syst_JES_EtaIntercalibration_Stat207: 1.07005841e-03 + syst_JES_EtaIntercalibration_Stat208: 1.20401608e-03 + syst_JES_EtaIntercalibration_Stat209: 1.16680001e-04 + syst_JES_EtaIntercalibration_Stat21: 6.46578441e-06 + syst_JES_EtaIntercalibration_Stat210: 3.13113282e-04 + syst_JES_EtaIntercalibration_Stat211: 8.13137485e-05 + syst_JES_EtaIntercalibration_Stat212: 4.37170242e-06 + syst_JES_EtaIntercalibration_Stat213: 4.10896006e-05 + syst_JES_EtaIntercalibration_Stat214: 2.43351967e-04 + syst_JES_EtaIntercalibration_Stat215: 4.17146245e-04 + syst_JES_EtaIntercalibration_Stat216: 4.26408569e-04 + syst_JES_EtaIntercalibration_Stat217: 3.85876124e-04 + syst_JES_EtaIntercalibration_Stat218: 3.40454647e-04 + syst_JES_EtaIntercalibration_Stat219: 4.06064970e-04 + syst_JES_EtaIntercalibration_Stat22: 6.46578441e-06 + syst_JES_EtaIntercalibration_Stat220: 3.63194755e-04 + syst_JES_EtaIntercalibration_Stat221: 3.37817599e-04 + syst_JES_EtaIntercalibration_Stat222: 1.64911990e-04 + syst_JES_EtaIntercalibration_Stat223: 3.47307802e-05 + syst_JES_EtaIntercalibration_Stat224: 8.01722203e-06 + syst_JES_EtaIntercalibration_Stat225: 5.56480788e-05 + syst_JES_EtaIntercalibration_Stat226: 3.63052899e-05 + syst_JES_EtaIntercalibration_Stat227: 1.38505919e-04 + syst_JES_EtaIntercalibration_Stat228: 3.32010885e-05 + syst_JES_EtaIntercalibration_Stat229: 7.20159779e-05 + syst_JES_EtaIntercalibration_Stat23: 6.43823677e-06 + syst_JES_EtaIntercalibration_Stat230: 1.34739987e-04 + syst_JES_EtaIntercalibration_Stat231: 1.13277715e-04 + syst_JES_EtaIntercalibration_Stat232: 8.89521057e-05 + syst_JES_EtaIntercalibration_Stat233: 3.15115610e-05 + syst_JES_EtaIntercalibration_Stat234: 4.08081815e-05 + syst_JES_EtaIntercalibration_Stat235: 2.27897589e-05 + syst_JES_EtaIntercalibration_Stat236: 1.19390262e-05 + syst_JES_EtaIntercalibration_Stat237: 2.45816928e-05 + syst_JES_EtaIntercalibration_Stat238: 3.03494410e-05 + syst_JES_EtaIntercalibration_Stat239: 3.25120913e-05 + syst_JES_EtaIntercalibration_Stat24: 3.93798468e-06 + syst_JES_EtaIntercalibration_Stat240: 7.77938315e-06 + syst_JES_EtaIntercalibration_Stat241: 1.19366210e-05 + syst_JES_EtaIntercalibration_Stat242: 1.08961707e-05 + syst_JES_EtaIntercalibration_Stat243: 2.71481095e-05 + syst_JES_EtaIntercalibration_Stat244: 2.10402735e-06 + syst_JES_EtaIntercalibration_Stat245: 2.34807569e-05 + syst_JES_EtaIntercalibration_Stat25: 1.15318521e-07 + syst_JES_EtaIntercalibration_Stat26: 1.07770164e-07 + syst_JES_EtaIntercalibration_Stat27: 1.10563218e-07 + syst_JES_EtaIntercalibration_Stat28: 1.08095844e-07 + syst_JES_EtaIntercalibration_Stat29: 4.26524914e-05 + syst_JES_EtaIntercalibration_Stat3: 6.46649153e-06 + syst_JES_EtaIntercalibration_Stat30: 1.09435304e-07 + syst_JES_EtaIntercalibration_Stat31: 2.16679528e-06 + syst_JES_EtaIntercalibration_Stat32: 2.75915753e-05 + syst_JES_EtaIntercalibration_Stat33: 5.68978573e-05 + syst_JES_EtaIntercalibration_Stat34: 2.72624936e-05 + syst_JES_EtaIntercalibration_Stat35: 6.79427451e-08 + syst_JES_EtaIntercalibration_Stat36: 5.45924086e-06 + syst_JES_EtaIntercalibration_Stat37: 3.95616896e-06 + syst_JES_EtaIntercalibration_Stat38: 1.08886166e-07 + syst_JES_EtaIntercalibration_Stat39: 1.08928799e-07 + syst_JES_EtaIntercalibration_Stat4: 6.46649153e-06 + syst_JES_EtaIntercalibration_Stat40: 3.93719323e-06 + syst_JES_EtaIntercalibration_Stat41: 6.46649153e-06 + syst_JES_EtaIntercalibration_Stat42: 6.46578441e-06 + syst_JES_EtaIntercalibration_Stat43: 6.46578441e-06 + syst_JES_EtaIntercalibration_Stat44: 6.46578441e-06 + syst_JES_EtaIntercalibration_Stat45: 6.46578441e-06 + syst_JES_EtaIntercalibration_Stat46: 1.09104320e-07 + syst_JES_EtaIntercalibration_Stat47: 6.47119610e-08 + syst_JES_EtaIntercalibration_Stat48: 1.18548442e-07 + syst_JES_EtaIntercalibration_Stat49: 3.99534931e-06 + syst_JES_EtaIntercalibration_Stat5: 6.46578441e-06 + syst_JES_EtaIntercalibration_Stat50: 2.65783209e-07 + syst_JES_EtaIntercalibration_Stat51: 1.60030337e-05 + syst_JES_EtaIntercalibration_Stat52: 1.23148838e-05 + syst_JES_EtaIntercalibration_Stat53: 2.28596278e-06 + syst_JES_EtaIntercalibration_Stat54: 2.73490819e-05 + syst_JES_EtaIntercalibration_Stat55: 2.72629486e-05 + syst_JES_EtaIntercalibration_Stat56: 2.73577519e-05 + syst_JES_EtaIntercalibration_Stat57: 1.93902518e-07 + syst_JES_EtaIntercalibration_Stat58: 3.24154178e-08 + syst_JES_EtaIntercalibration_Stat59: 2.50281291e-06 + syst_JES_EtaIntercalibration_Stat6: 4.55442703e-05 + syst_JES_EtaIntercalibration_Stat60: 6.37633913e-06 + syst_JES_EtaIntercalibration_Stat61: 6.56792672e-08 + syst_JES_EtaIntercalibration_Stat62: 3.93026588e-06 + syst_JES_EtaIntercalibration_Stat63: 1.07487363e-07 + syst_JES_EtaIntercalibration_Stat64: 6.46578441e-06 + syst_JES_EtaIntercalibration_Stat65: 6.46578441e-06 + syst_JES_EtaIntercalibration_Stat66: 6.46578441e-06 + syst_JES_EtaIntercalibration_Stat67: 6.46578441e-06 + syst_JES_EtaIntercalibration_Stat68: 1.84289470e-12 + syst_JES_EtaIntercalibration_Stat69: 3.92330566e-06 + syst_JES_EtaIntercalibration_Stat7: 3.93737293e-06 + syst_JES_EtaIntercalibration_Stat70: 3.00857271e-06 + syst_JES_EtaIntercalibration_Stat71: 1.41468384e-05 + syst_JES_EtaIntercalibration_Stat72: 8.66112058e-06 + syst_JES_EtaIntercalibration_Stat73: 1.17433133e-05 + syst_JES_EtaIntercalibration_Stat74: 2.23608641e-06 + syst_JES_EtaIntercalibration_Stat75: 3.21814874e-05 + syst_JES_EtaIntercalibration_Stat76: 2.73490873e-05 + syst_JES_EtaIntercalibration_Stat77: 3.30050843e-06 + syst_JES_EtaIntercalibration_Stat78: 3.86459532e-06 + syst_JES_EtaIntercalibration_Stat79: 1.68355800e-05 + syst_JES_EtaIntercalibration_Stat8: 6.76829183e-08 + syst_JES_EtaIntercalibration_Stat80: 2.44045857e-05 + syst_JES_EtaIntercalibration_Stat81: 3.78949746e-08 + syst_JES_EtaIntercalibration_Stat82: 4.79253820e-08 + syst_JES_EtaIntercalibration_Stat83: 1.11405480e-07 + syst_JES_EtaIntercalibration_Stat84: 6.55754140e-08 + syst_JES_EtaIntercalibration_Stat85: 6.57056918e-08 + syst_JES_EtaIntercalibration_Stat86: 3.95946815e-06 + syst_JES_EtaIntercalibration_Stat87: 3.95946815e-06 + syst_JES_EtaIntercalibration_Stat88: 6.59218522e-08 + syst_JES_EtaIntercalibration_Stat89: 3.85033433e-06 + syst_JES_EtaIntercalibration_Stat9: 1.89867934e-05 + syst_JES_EtaIntercalibration_Stat90: 3.05686823e-07 + syst_JES_EtaIntercalibration_Stat91: 3.10242209e-07 + syst_JES_EtaIntercalibration_Stat92: 4.06946303e-07 + syst_JES_EtaIntercalibration_Stat93: 1.18902360e-05 + syst_JES_EtaIntercalibration_Stat94: 1.41244720e-05 + syst_JES_EtaIntercalibration_Stat95: 2.60583590e-06 + syst_JES_EtaIntercalibration_Stat96: 2.74236922e-05 + syst_JES_EtaIntercalibration_Stat97: 2.60534321e-05 + syst_JES_EtaIntercalibration_Stat98: 2.62278782e-05 + syst_JES_EtaIntercalibration_Stat99: 2.52879428e-05 + syst_JES_EtaIntercalibration_TotalStat_MJB: 8.99440897e-03 + syst_JES_Flavour_Comp: 2.78900323e-02 + syst_JES_Flavour_Response: 1.98763698e-02 + syst_JES_Gjet_Generator: 4.96901630e-02 + syst_JES_Gjet_OOC: 3.81940462e-02 + syst_JES_Gjet_Purity: 1.23502539e-02 + syst_JES_Gjet_Stat1: 1.38507933e-04 + syst_JES_Gjet_Stat10: 1.59602655e-03 + syst_JES_Gjet_Stat11: 2.27949002e-03 + syst_JES_Gjet_Stat12: 6.39900188e-03 + syst_JES_Gjet_Stat13: 1.05861092e-02 + syst_JES_Gjet_Stat14: 5.62376767e-03 + syst_JES_Gjet_Stat15: 2.54201416e-03 + syst_JES_Gjet_Stat2: 2.81193225e-04 + syst_JES_Gjet_Stat3: 1.55582827e-04 + syst_JES_Gjet_Stat4: 1.70589162e-04 + syst_JES_Gjet_Stat5: 1.24175667e-04 + syst_JES_Gjet_Stat6: 5.67008262e-04 + syst_JES_Gjet_Stat7: 6.39278005e-04 + syst_JES_Gjet_Stat8: 5.05960334e-04 + syst_JES_Gjet_Stat9: 7.64900327e-04 + syst_JES_Gjet_Veto: 2.89063155e-02 + syst_JES_Gjet_dPhi: 3.39414360e-03 + syst_JES_LArESZee: 7.33179492e-02 + syst_JES_LArEsmear: 5.84438250e-03 + syst_JES_LAr_JVT: 7.62335207e-03 + syst_JES_MJB_Alpha: 8.57519603e-04 + syst_JES_MJB_Asym: 2.47482823e-03 + syst_JES_MJB_Beta: 5.14209160e-04 + syst_JES_MJB_Fragmentation: 8.23823481e-03 + syst_JES_MJB_Stat1: 2.99647606e-04 + syst_JES_MJB_Stat10: 7.19576297e-05 + syst_JES_MJB_Stat11: 1.00912477e-04 + syst_JES_MJB_Stat12: 7.93131887e-05 + syst_JES_MJB_Stat13: 7.21020074e-05 + syst_JES_MJB_Stat14: 3.58426377e-05 + syst_JES_MJB_Stat15: 1.86931287e-05 + syst_JES_MJB_Stat16: 6.82123660e-05 + syst_JES_MJB_Stat2: 8.48045086e-04 + syst_JES_MJB_Stat3: 1.01638465e-03 + syst_JES_MJB_Stat4: 5.55965653e-04 + syst_JES_MJB_Stat5: 3.39946036e-04 + syst_JES_MJB_Stat6: 5.22327311e-05 + syst_JES_MJB_Stat7: 5.29063236e-05 + syst_JES_MJB_Stat8: 6.81779576e-05 + syst_JES_MJB_Stat9: 5.32685292e-05 + syst_JES_MJB_Threshold: 3.77900366e-03 + syst_JES_Pileup_MuOffset: 7.39096237e-03 + syst_JES_Pileup_NPVOffset: 7.86701519e-03 + syst_JES_Pileup_Pt_term: 8.06309668e-03 + syst_JES_Pileup_Rho_topology: 1.59678951e-02 + syst_JES_PunchThrough_MC15: 1.74782572e-03 + syst_JES_SingleParticle_HighPt: 8.59318026e-06 + syst_JES_Zjet_MC: 3.50201828e-02 + syst_JES_Zjet_MuScale: 2.36064525e-03 + syst_JES_Zjet_MuSmearID: 6.56709540e-04 + syst_JES_Zjet_MuSmearMS: 9.75627258e-03 + syst_JES_Zjet_OOC: 1.49954818e-02 + syst_JES_Zjet_Stat1: 7.13441189e-04 + syst_JES_Zjet_Stat10: 1.31385849e-03 + syst_JES_Zjet_Stat11: 1.56665376e-03 + syst_JES_Zjet_Stat12: 8.36185128e-03 + syst_JES_Zjet_Stat13: 1.00415463e-02 + syst_JES_Zjet_Stat2: 1.01652382e-04 + syst_JES_Zjet_Stat3: 3.99798487e-04 + syst_JES_Zjet_Stat4: 4.02764497e-04 + syst_JES_Zjet_Stat5: 4.80612172e-04 + syst_JES_Zjet_Stat6: 4.84387291e-04 + syst_JES_Zjet_Stat7: 2.73832809e-04 + syst_JES_Zjet_Stat8: 4.41752922e-04 + syst_JES_Zjet_Stat9: 6.92706033e-04 + syst_JES_Zjet_Veto: 3.23250008e-03 + syst_JES_Zjet_dPhi: 2.74898468e-03 syst_PRW: 0.0 syst_Unfolding_bias: 0.0 - syst_cleaning: 0.023668474285428707 + syst_cleaning: 2.36684743e-02 syst_lumi: 0.05354 - stat: 0.004361 - syst_JER_CROSS_CALIB_FORWARD: 1.683e-14 - syst_JER_NOISE_FORWARD: 1.311e-14 - syst_JER_NP0: 0.0029594706874709878 - syst_JER_NP1: 0.00025466650250867315 - syst_JER_NP2: 0.0012485583796923553 - syst_JER_NP3: 0.0006326800988651374 - syst_JER_NP4: 0.00017006483322544965 + syst_JER_CROSS_CALIB_FORWARD: 1.68300000e-14 + syst_JER_NOISE_FORWARD: 1.31100000e-14 + syst_JER_NP0: 2.95947069e-03 + syst_JER_NP1: 2.54666503e-04 + syst_JER_NP2: 1.24855838e-03 + syst_JER_NP3: 6.32680099e-04 + syst_JER_NP4: 1.70064833e-04 syst_JER_NP5: 0.0 - syst_JER_NP6: 1.1998935077747525e-29 + syst_JER_NP6: 1.19989351e-29 syst_JER_NP7: 0.0 - syst_JER_NP8: 0.0006586509451143299 - syst_JES_EtaIntercalibration_Modelling: 0.026678719515748878 - syst_JES_EtaIntercalibration_NonClosure: 0.0003737244707000065 - syst_JES_EtaIntercalibration_Stat0: 3.4124973260062784e-06 - syst_JES_EtaIntercalibration_Stat1: 3.4124973260062784e-06 - syst_JES_EtaIntercalibration_Stat10: 2.9298679287640253e-05 - syst_JES_EtaIntercalibration_Stat100: 6.2556546156257705e-06 - syst_JES_EtaIntercalibration_Stat101: 2.226613991557429e-08 - syst_JES_EtaIntercalibration_Stat102: 2.871674250328543e-09 - syst_JES_EtaIntercalibration_Stat103: 2.209695963039938e-06 - syst_JES_EtaIntercalibration_Stat104: 3.1945807624006006e-09 - syst_JES_EtaIntercalibration_Stat105: 1.373517583094239e-08 - syst_JES_EtaIntercalibration_Stat106: 2.198814518124872e-09 - syst_JES_EtaIntercalibration_Stat107: 2.08971929932679e-06 - syst_JES_EtaIntercalibration_Stat108: 2.1105039090226772e-06 - syst_JES_EtaIntercalibration_Stat109: 3.7043408323040414e-06 - syst_JES_EtaIntercalibration_Stat11: 3.0033760674241297e-05 - syst_JES_EtaIntercalibration_Stat110: 3.701182077282878e-06 - syst_JES_EtaIntercalibration_Stat111: 4.3830076283301174e-08 - syst_JES_EtaIntercalibration_Stat112: 1.0438382117454791e-07 - syst_JES_EtaIntercalibration_Stat113: 2.9938808844040537e-06 - syst_JES_EtaIntercalibration_Stat114: 2.512337954973415e-06 - syst_JES_EtaIntercalibration_Stat115: 7.796426537202798e-06 - syst_JES_EtaIntercalibration_Stat116: 3.1733574030512228e-06 - syst_JES_EtaIntercalibration_Stat117: 7.846902637346788e-06 - syst_JES_EtaIntercalibration_Stat118: 3.931276383059324e-06 - syst_JES_EtaIntercalibration_Stat119: 9.053171831942383e-06 - syst_JES_EtaIntercalibration_Stat12: 1.003117258193314e-05 - syst_JES_EtaIntercalibration_Stat120: 1.1945506383155133e-05 - syst_JES_EtaIntercalibration_Stat121: 1.1448618988768908e-06 - syst_JES_EtaIntercalibration_Stat122: 3.2924523843291946e-06 - syst_JES_EtaIntercalibration_Stat123: 6.637958345756623e-08 - syst_JES_EtaIntercalibration_Stat124: 6.400597081522942e-08 - syst_JES_EtaIntercalibration_Stat125: 2.327227893331463e-07 - syst_JES_EtaIntercalibration_Stat126: 1.4307149924930218e-06 - syst_JES_EtaIntercalibration_Stat127: 3.697062448755768e-09 - syst_JES_EtaIntercalibration_Stat128: 4.066194843769786e-06 - syst_JES_EtaIntercalibration_Stat129: 4.824769528174377e-06 - syst_JES_EtaIntercalibration_Stat13: 3.4124973260062784e-06 - syst_JES_EtaIntercalibration_Stat130: 9.40035408907558e-07 - syst_JES_EtaIntercalibration_Stat131: 5.232887061651532e-06 - syst_JES_EtaIntercalibration_Stat132: 9.43904427051807e-06 - syst_JES_EtaIntercalibration_Stat133: 7.400546246730709e-06 - syst_JES_EtaIntercalibration_Stat134: 2.150402985488999e-05 - syst_JES_EtaIntercalibration_Stat135: 1.776714684466811e-05 - syst_JES_EtaIntercalibration_Stat136: 3.921489600585471e-05 - syst_JES_EtaIntercalibration_Stat137: 2.016956804197849e-05 - syst_JES_EtaIntercalibration_Stat138: 1.636718668556084e-05 - syst_JES_EtaIntercalibration_Stat139: 1.327047651744277e-05 - syst_JES_EtaIntercalibration_Stat14: 3.4124973260062784e-06 - syst_JES_EtaIntercalibration_Stat140: 3.591293221111303e-05 - syst_JES_EtaIntercalibration_Stat141: 1.4459153008388838e-05 - syst_JES_EtaIntercalibration_Stat142: 2.0262701572100405e-06 - syst_JES_EtaIntercalibration_Stat143: 9.280890946859573e-07 - syst_JES_EtaIntercalibration_Stat144: 3.4183031974943356e-06 - syst_JES_EtaIntercalibration_Stat145: 1.141010539686203e-06 - syst_JES_EtaIntercalibration_Stat146: 5.3380502760839564e-06 - syst_JES_EtaIntercalibration_Stat147: 6.237490115660846e-07 - syst_JES_EtaIntercalibration_Stat148: 2.52468255430262e-06 - syst_JES_EtaIntercalibration_Stat149: 1.3358364682849468e-05 - syst_JES_EtaIntercalibration_Stat15: 2.0884904285073346e-06 - syst_JES_EtaIntercalibration_Stat150: 1.1349347782141492e-05 - syst_JES_EtaIntercalibration_Stat151: 1.6572171493199073e-05 - syst_JES_EtaIntercalibration_Stat152: 7.661679907174405e-06 - syst_JES_EtaIntercalibration_Stat153: 2.6014658848426207e-05 - syst_JES_EtaIntercalibration_Stat154: 4.152186502314172e-05 - syst_JES_EtaIntercalibration_Stat155: 4.108040979286842e-05 - syst_JES_EtaIntercalibration_Stat156: 3.066184599791735e-05 - syst_JES_EtaIntercalibration_Stat157: 4.7463466403118935e-05 - syst_JES_EtaIntercalibration_Stat158: 4.900026811151139e-05 - syst_JES_EtaIntercalibration_Stat159: 1.7216205095200276e-05 - syst_JES_EtaIntercalibration_Stat16: 2.0884904285073346e-06 - syst_JES_EtaIntercalibration_Stat160: 4.011409104043117e-06 - syst_JES_EtaIntercalibration_Stat161: 5.953641064088429e-06 - syst_JES_EtaIntercalibration_Stat162: 1.7524055552297247e-06 - syst_JES_EtaIntercalibration_Stat163: 1.3735726664432428e-06 - syst_JES_EtaIntercalibration_Stat164: 3.9927160194909925e-06 - syst_JES_EtaIntercalibration_Stat165: 4.95250482079523e-06 - syst_JES_EtaIntercalibration_Stat166: 1.456994456921508e-05 - syst_JES_EtaIntercalibration_Stat167: 1.770780265871517e-05 - syst_JES_EtaIntercalibration_Stat168: 2.5878208979757468e-05 - syst_JES_EtaIntercalibration_Stat169: 7.415355487095679e-05 - syst_JES_EtaIntercalibration_Stat17: 2.0932762474983445e-06 - syst_JES_EtaIntercalibration_Stat170: 0.00012637861040836777 - syst_JES_EtaIntercalibration_Stat171: 0.00010168548015818188 - syst_JES_EtaIntercalibration_Stat172: 5.5350688349378274e-05 - syst_JES_EtaIntercalibration_Stat173: 8.545629687155886e-05 - syst_JES_EtaIntercalibration_Stat174: 4.371808792708117e-05 - syst_JES_EtaIntercalibration_Stat175: 6.346383773457133e-05 - syst_JES_EtaIntercalibration_Stat176: 8.861341927157534e-05 - syst_JES_EtaIntercalibration_Stat177: 8.661606665625033e-05 - syst_JES_EtaIntercalibration_Stat178: 1.116680736602902e-05 - syst_JES_EtaIntercalibration_Stat179: 1.9896310380319266e-05 - syst_JES_EtaIntercalibration_Stat18: 2.0884904285073346e-06 - syst_JES_EtaIntercalibration_Stat180: 3.7835634988724588e-06 - syst_JES_EtaIntercalibration_Stat181: 7.768139593879605e-07 - syst_JES_EtaIntercalibration_Stat182: 4.1979214892610846e-05 - syst_JES_EtaIntercalibration_Stat183: 7.295692067926113e-05 - syst_JES_EtaIntercalibration_Stat184: 7.612261753250476e-05 - syst_JES_EtaIntercalibration_Stat185: 0.00015778208865394072 - syst_JES_EtaIntercalibration_Stat186: 0.00023311222619159212 - syst_JES_EtaIntercalibration_Stat187: 0.0003783058385750873 - syst_JES_EtaIntercalibration_Stat188: 0.0003826851612945033 - syst_JES_EtaIntercalibration_Stat189: 0.0003284634226211497 - syst_JES_EtaIntercalibration_Stat19: 3.4124973260062784e-06 - syst_JES_EtaIntercalibration_Stat190: 0.0002827433288337675 - syst_JES_EtaIntercalibration_Stat191: 0.0003306431724684482 - syst_JES_EtaIntercalibration_Stat192: 0.00036485073550700155 - syst_JES_EtaIntercalibration_Stat193: 0.00026917059181864574 - syst_JES_EtaIntercalibration_Stat194: 0.0002293734237003058 - syst_JES_EtaIntercalibration_Stat195: 0.00011227258648040492 - syst_JES_EtaIntercalibration_Stat196: 3.612514348760431e-05 - syst_JES_EtaIntercalibration_Stat197: 1.718833476518304e-05 - syst_JES_EtaIntercalibration_Stat198: 9.48682838202526e-05 - syst_JES_EtaIntercalibration_Stat199: 0.00012323853983231057 - syst_JES_EtaIntercalibration_Stat2: 3.4124973260062784e-06 - syst_JES_EtaIntercalibration_Stat20: 3.4124973260062784e-06 - syst_JES_EtaIntercalibration_Stat200: 0.00017580315696824104 - syst_JES_EtaIntercalibration_Stat201: 0.0003858922518009399 - syst_JES_EtaIntercalibration_Stat202: 0.0004909735125238428 - syst_JES_EtaIntercalibration_Stat203: 0.0005320610373819906 - syst_JES_EtaIntercalibration_Stat204: 0.0004041080177378321 - syst_JES_EtaIntercalibration_Stat205: 0.0003712819009862991 - syst_JES_EtaIntercalibration_Stat206: 0.0005177047324489124 - syst_JES_EtaIntercalibration_Stat207: 0.00040176332274113825 - syst_JES_EtaIntercalibration_Stat208: 0.00045570254552723314 - syst_JES_EtaIntercalibration_Stat209: 8.041990844933859e-05 - syst_JES_EtaIntercalibration_Stat21: 3.4124973260062784e-06 - syst_JES_EtaIntercalibration_Stat210: 0.00010070515515602963 - syst_JES_EtaIntercalibration_Stat211: 3.784275522474546e-05 - syst_JES_EtaIntercalibration_Stat212: 2.3071359907191613e-06 - syst_JES_EtaIntercalibration_Stat213: 5.624300912113433e-05 - syst_JES_EtaIntercalibration_Stat214: 0.0001787760472630492 - syst_JES_EtaIntercalibration_Stat215: 0.00028494567903374144 - syst_JES_EtaIntercalibration_Stat216: 0.0003061601051737473 - syst_JES_EtaIntercalibration_Stat217: 0.00024100416490177093 - syst_JES_EtaIntercalibration_Stat218: 0.00019954570904933035 - syst_JES_EtaIntercalibration_Stat219: 0.00023730307098729256 - syst_JES_EtaIntercalibration_Stat22: 3.4124973260062784e-06 - syst_JES_EtaIntercalibration_Stat220: 0.0002159640421459091 - syst_JES_EtaIntercalibration_Stat221: 0.00015451335476262238 - syst_JES_EtaIntercalibration_Stat222: 8.864537100153623e-05 - syst_JES_EtaIntercalibration_Stat223: 1.8319216003966983e-05 - syst_JES_EtaIntercalibration_Stat224: 1.2748130009926948e-05 - syst_JES_EtaIntercalibration_Stat225: 1.901740914925059e-05 - syst_JES_EtaIntercalibration_Stat226: 9.152068290829127e-05 - syst_JES_EtaIntercalibration_Stat227: 9.0348473700445e-05 - syst_JES_EtaIntercalibration_Stat228: 0.000129808191863996 - syst_JES_EtaIntercalibration_Stat229: 0.00012677039037172679 - syst_JES_EtaIntercalibration_Stat23: 3.397664308021027e-06 - syst_JES_EtaIntercalibration_Stat230: 1.0029760515585605e-05 - syst_JES_EtaIntercalibration_Stat231: 0.0001101685947763699 - syst_JES_EtaIntercalibration_Stat232: 2.378174264010104e-05 - syst_JES_EtaIntercalibration_Stat233: 4.575936488851217e-05 - syst_JES_EtaIntercalibration_Stat234: 1.6595989297116337e-05 - syst_JES_EtaIntercalibration_Stat235: 1.2243363335701785e-05 - syst_JES_EtaIntercalibration_Stat236: 6.832074410455436e-06 - syst_JES_EtaIntercalibration_Stat237: 1.856978392442949e-05 - syst_JES_EtaIntercalibration_Stat238: 1.6642996747881675e-05 - syst_JES_EtaIntercalibration_Stat239: 1.7232199707234128e-05 - syst_JES_EtaIntercalibration_Stat24: 2.0884884173265124e-06 - syst_JES_EtaIntercalibration_Stat240: 1.5875553368927805e-05 - syst_JES_EtaIntercalibration_Stat241: 9.768370488469405e-06 - syst_JES_EtaIntercalibration_Stat242: 7.847207911098061e-06 - syst_JES_EtaIntercalibration_Stat243: 3.7561566377748415e-06 - syst_JES_EtaIntercalibration_Stat244: 1.5941212751857996e-05 - syst_JES_EtaIntercalibration_Stat245: 8.686151089521758e-06 - syst_JES_EtaIntercalibration_Stat25: 1.588380844602452e-08 - syst_JES_EtaIntercalibration_Stat26: 6.051421155398126e-09 - syst_JES_EtaIntercalibration_Stat27: 6.19284127037017e-09 - syst_JES_EtaIntercalibration_Stat28: 6.071954112968904e-09 - syst_JES_EtaIntercalibration_Stat29: 1.0245342454012946e-05 - syst_JES_EtaIntercalibration_Stat3: 3.4124973260062784e-06 - syst_JES_EtaIntercalibration_Stat30: 6.1357197418069865e-09 - syst_JES_EtaIntercalibration_Stat31: 1.1325014052839774e-06 - syst_JES_EtaIntercalibration_Stat32: 1.4609848865125601e-05 - syst_JES_EtaIntercalibration_Stat33: 3.0033760407707577e-05 - syst_JES_EtaIntercalibration_Stat34: 1.4583868505829464e-05 - syst_JES_EtaIntercalibration_Stat35: 3.8038910590078675e-09 - syst_JES_EtaIntercalibration_Stat36: 2.8814070781477582e-06 - syst_JES_EtaIntercalibration_Stat37: 2.132655652539106e-06 - syst_JES_EtaIntercalibration_Stat38: 6.106849596968963e-09 - syst_JES_EtaIntercalibration_Stat39: 6.10968747154877e-09 - syst_JES_EtaIntercalibration_Stat4: 3.4124973260062784e-06 - syst_JES_EtaIntercalibration_Stat40: 2.087626702816083e-06 - syst_JES_EtaIntercalibration_Stat41: 3.4124973260062784e-06 - syst_JES_EtaIntercalibration_Stat42: 3.4124973260062784e-06 - syst_JES_EtaIntercalibration_Stat43: 3.4124973260062784e-06 - syst_JES_EtaIntercalibration_Stat44: 3.4124973260062784e-06 - syst_JES_EtaIntercalibration_Stat45: 3.4124973260062784e-06 - syst_JES_EtaIntercalibration_Stat46: 6.118820208994541e-09 - syst_JES_EtaIntercalibration_Stat47: 3.772533101246429e-09 - syst_JES_EtaIntercalibration_Stat48: 1.6068250931573108e-08 - syst_JES_EtaIntercalibration_Stat49: 2.092757880596797e-06 - syst_JES_EtaIntercalibration_Stat5: 3.4124973260062784e-06 - syst_JES_EtaIntercalibration_Stat50: 2.4707705763301332e-08 - syst_JES_EtaIntercalibration_Stat51: 6.164882561736274e-06 - syst_JES_EtaIntercalibration_Stat52: 6.5332957871098854e-06 - syst_JES_EtaIntercalibration_Stat53: 1.2122457348734001e-06 - syst_JES_EtaIntercalibration_Stat54: 1.4592528035991177e-05 - syst_JES_EtaIntercalibration_Stat55: 1.4583891632904853e-05 - syst_JES_EtaIntercalibration_Stat56: 1.4592528530659175e-05 - syst_JES_EtaIntercalibration_Stat57: 1.3172215180301582e-08 - syst_JES_EtaIntercalibration_Stat58: 2.2005762726169306e-09 - syst_JES_EtaIntercalibration_Stat59: 1.3535976782665895e-06 - syst_JES_EtaIntercalibration_Stat6: 1.317224610441618e-05 - syst_JES_EtaIntercalibration_Stat60: 3.365308418258273e-06 - syst_JES_EtaIntercalibration_Stat61: 3.6883957890611875e-09 - syst_JES_EtaIntercalibration_Stat62: 2.0841623187026483e-06 - syst_JES_EtaIntercalibration_Stat63: 6.035866466382438e-09 - syst_JES_EtaIntercalibration_Stat64: 3.4124973260062784e-06 - syst_JES_EtaIntercalibration_Stat65: 3.4124973260062784e-06 - syst_JES_EtaIntercalibration_Stat66: 3.4124973260062784e-06 - syst_JES_EtaIntercalibration_Stat67: 3.4124973260062784e-06 - syst_JES_EtaIntercalibration_Stat68: 9.800930160789587e-14 - syst_JES_EtaIntercalibration_Stat69: 2.064623974210074e-06 - syst_JES_EtaIntercalibration_Stat7: 2.0884556660144837e-06 - syst_JES_EtaIntercalibration_Stat70: 1.6489123981465137e-06 - syst_JES_EtaIntercalibration_Stat71: 7.434042976004041e-06 - syst_JES_EtaIntercalibration_Stat72: 6.031000945400732e-06 - syst_JES_EtaIntercalibration_Stat73: 6.48220063749705e-06 - syst_JES_EtaIntercalibration_Stat74: 1.6255301742290645e-06 - syst_JES_EtaIntercalibration_Stat75: 1.7164622668159245e-05 - syst_JES_EtaIntercalibration_Stat76: 1.459252833894998e-05 - syst_JES_EtaIntercalibration_Stat77: 1.7900744628859352e-06 - syst_JES_EtaIntercalibration_Stat78: 1.8677989051287078e-06 - syst_JES_EtaIntercalibration_Stat79: 8.899279372260125e-06 - syst_JES_EtaIntercalibration_Stat8: 3.7911734001584685e-09 - syst_JES_EtaIntercalibration_Stat80: 1.2877797187605413e-05 - syst_JES_EtaIntercalibration_Stat81: 2.5225368119216815e-09 - syst_JES_EtaIntercalibration_Stat82: 2.281946970293995e-09 - syst_JES_EtaIntercalibration_Stat83: 5.780895214411e-09 - syst_JES_EtaIntercalibration_Stat84: 3.682337734054129e-09 - syst_JES_EtaIntercalibration_Stat85: 3.6901530502070527e-09 - syst_JES_EtaIntercalibration_Stat86: 2.0897192993236143e-06 - syst_JES_EtaIntercalibration_Stat87: 2.0897192993318505e-06 - syst_JES_EtaIntercalibration_Stat88: 3.7013924580818533e-09 - syst_JES_EtaIntercalibration_Stat89: 2.0316948533635608e-06 - syst_JES_EtaIntercalibration_Stat9: 1.003164054321625e-05 - syst_JES_EtaIntercalibration_Stat90: 2.7560162902495244e-08 - syst_JES_EtaIntercalibration_Stat91: 2.795105417095212e-08 - syst_JES_EtaIntercalibration_Stat92: 3.798393616007351e-08 - syst_JES_EtaIntercalibration_Stat93: 6.487331783423304e-06 - syst_JES_EtaIntercalibration_Stat94: 5.854174642936441e-06 - syst_JES_EtaIntercalibration_Stat95: 1.6277999470143746e-06 - syst_JES_EtaIntercalibration_Stat96: 1.4596987747945634e-05 - syst_JES_EtaIntercalibration_Stat97: 1.3899265879894519e-05 - syst_JES_EtaIntercalibration_Stat98: 1.4082425217269929e-05 - syst_JES_EtaIntercalibration_Stat99: 1.4332720498334922e-05 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.005450530318235098 - syst_JES_Flavour_Comp: 0.016607530671355092 - syst_JES_Flavour_Response: 0.008464447530701576 - syst_JES_Gjet_Generator: 0.02664063437683119 - syst_JES_Gjet_OOC: 0.020889166450579116 - syst_JES_Gjet_Purity: 0.006091918170822717 - syst_JES_Gjet_Stat1: 6.466546837377736e-05 - syst_JES_Gjet_Stat10: 0.0007384251671632002 - syst_JES_Gjet_Stat11: 0.000989730564345671 - syst_JES_Gjet_Stat12: 0.002856647116813695 - syst_JES_Gjet_Stat13: 0.006098324913449594 - syst_JES_Gjet_Stat14: 0.005699967960436269 - syst_JES_Gjet_Stat15: 0.0010950508846624435 - syst_JES_Gjet_Stat2: 0.000145407170387158 - syst_JES_Gjet_Stat3: 9.792707324841276e-05 - syst_JES_Gjet_Stat4: 0.00010873559801187465 - syst_JES_Gjet_Stat5: 0.00011155788217333638 - syst_JES_Gjet_Stat6: 0.00027133681560009506 - syst_JES_Gjet_Stat7: 0.0003194535138326075 - syst_JES_Gjet_Stat8: 0.00029205309020792773 - syst_JES_Gjet_Stat9: 0.00042341128976445587 - syst_JES_Gjet_Veto: 0.017274869029894266 - syst_JES_Gjet_dPhi: 0.0019500328202366236 - syst_JES_LArESZee: 0.04029000992802062 - syst_JES_LArEsmear: 0.003150458379347361 - syst_JES_LAr_JVT: 0.004003886455682778 - syst_JES_MJB_Alpha: 0.00039151454634534335 - syst_JES_MJB_Asym: 0.0015482583763700424 - syst_JES_MJB_Beta: 0.0003091419212918235 - syst_JES_MJB_Fragmentation: 0.004289954894867777 - syst_JES_MJB_Stat1: 0.0001484051214581222 - syst_JES_MJB_Stat10: 9.931194641129535e-06 - syst_JES_MJB_Stat11: 6.60180717682666e-05 - syst_JES_MJB_Stat12: 5.52776507731651e-05 - syst_JES_MJB_Stat13: 6.144125222519476e-05 - syst_JES_MJB_Stat14: 4.481133435583011e-05 - syst_JES_MJB_Stat15: 1.5839482409472854e-05 - syst_JES_MJB_Stat16: 1.7309711688817928e-05 - syst_JES_MJB_Stat2: 0.0003888817034459194 - syst_JES_MJB_Stat3: 0.0005377998768129275 - syst_JES_MJB_Stat4: 0.0003476029200107502 - syst_JES_MJB_Stat5: 0.0002921791573675303 - syst_JES_MJB_Stat6: 0.00017921810734409626 - syst_JES_MJB_Stat7: 0.0001108020842538623 - syst_JES_MJB_Stat8: 9.715875874052735e-05 - syst_JES_MJB_Stat9: 1.4408834746432482e-05 - syst_JES_MJB_Threshold: 0.0020847217440224486 - syst_JES_Pileup_MuOffset: 0.0043181392694076 - syst_JES_Pileup_NPVOffset: 0.00450672098093503 - syst_JES_Pileup_Pt_term: 0.004236740816948801 - syst_JES_Pileup_Rho_topology: 0.008398267618979523 - syst_JES_PunchThrough_MC15: 0.0012907543685767636 - syst_JES_SingleParticle_HighPt: 4.535002866592258e-06 - syst_JES_Zjet_MC: 0.016625181953891514 - syst_JES_Zjet_MuScale: 0.0011231735173160022 - syst_JES_Zjet_MuSmearID: 0.0003414116869704375 - syst_JES_Zjet_MuSmearMS: 0.004764354310921891 - syst_JES_Zjet_OOC: 0.007493821238193503 - syst_JES_Zjet_Stat1: 0.0004104475727787899 - syst_JES_Zjet_Stat10: 0.0006893953872778669 - syst_JES_Zjet_Stat11: 0.0008615264984317082 - syst_JES_Zjet_Stat12: 0.0033835036205093682 - syst_JES_Zjet_Stat13: 0.005045800704546306 - syst_JES_Zjet_Stat2: 5.388779152090017e-05 - syst_JES_Zjet_Stat3: 0.00025565568153279914 - syst_JES_Zjet_Stat4: 0.00026354951622038693 - syst_JES_Zjet_Stat5: 0.00025582466651986473 - syst_JES_Zjet_Stat6: 0.00032224600850902713 - syst_JES_Zjet_Stat7: 0.00016581256737654117 - syst_JES_Zjet_Stat8: 0.00025897375832311656 - syst_JES_Zjet_Stat9: 0.0004080268614625758 - syst_JES_Zjet_Veto: 0.0017051981556405697 - syst_JES_Zjet_dPhi: 0.0014424682206204754 + syst_JER_NP8: 6.58650945e-04 + syst_JES_EtaIntercalibration_Modelling: 2.66787195e-02 + syst_JES_EtaIntercalibration_NonClosure: 3.73724471e-04 + syst_JES_EtaIntercalibration_Stat0: 3.41249733e-06 + syst_JES_EtaIntercalibration_Stat1: 3.41249733e-06 + syst_JES_EtaIntercalibration_Stat10: 2.92986793e-05 + syst_JES_EtaIntercalibration_Stat100: 6.25565462e-06 + syst_JES_EtaIntercalibration_Stat101: 2.22661399e-08 + syst_JES_EtaIntercalibration_Stat102: 2.87167425e-09 + syst_JES_EtaIntercalibration_Stat103: 2.20969596e-06 + syst_JES_EtaIntercalibration_Stat104: 3.19458076e-09 + syst_JES_EtaIntercalibration_Stat105: 1.37351758e-08 + syst_JES_EtaIntercalibration_Stat106: 2.19881452e-09 + syst_JES_EtaIntercalibration_Stat107: 2.08971930e-06 + syst_JES_EtaIntercalibration_Stat108: 2.11050391e-06 + syst_JES_EtaIntercalibration_Stat109: 3.70434083e-06 + syst_JES_EtaIntercalibration_Stat11: 3.00337607e-05 + syst_JES_EtaIntercalibration_Stat110: 3.70118208e-06 + syst_JES_EtaIntercalibration_Stat111: 4.38300763e-08 + syst_JES_EtaIntercalibration_Stat112: 1.04383821e-07 + syst_JES_EtaIntercalibration_Stat113: 2.99388088e-06 + syst_JES_EtaIntercalibration_Stat114: 2.51233795e-06 + syst_JES_EtaIntercalibration_Stat115: 7.79642654e-06 + syst_JES_EtaIntercalibration_Stat116: 3.17335740e-06 + syst_JES_EtaIntercalibration_Stat117: 7.84690264e-06 + syst_JES_EtaIntercalibration_Stat118: 3.93127638e-06 + syst_JES_EtaIntercalibration_Stat119: 9.05317183e-06 + syst_JES_EtaIntercalibration_Stat12: 1.00311726e-05 + syst_JES_EtaIntercalibration_Stat120: 1.19455064e-05 + syst_JES_EtaIntercalibration_Stat121: 1.14486190e-06 + syst_JES_EtaIntercalibration_Stat122: 3.29245238e-06 + syst_JES_EtaIntercalibration_Stat123: 6.63795835e-08 + syst_JES_EtaIntercalibration_Stat124: 6.40059708e-08 + syst_JES_EtaIntercalibration_Stat125: 2.32722789e-07 + syst_JES_EtaIntercalibration_Stat126: 1.43071499e-06 + syst_JES_EtaIntercalibration_Stat127: 3.69706245e-09 + syst_JES_EtaIntercalibration_Stat128: 4.06619484e-06 + syst_JES_EtaIntercalibration_Stat129: 4.82476953e-06 + syst_JES_EtaIntercalibration_Stat13: 3.41249733e-06 + syst_JES_EtaIntercalibration_Stat130: 9.40035409e-07 + syst_JES_EtaIntercalibration_Stat131: 5.23288706e-06 + syst_JES_EtaIntercalibration_Stat132: 9.43904427e-06 + syst_JES_EtaIntercalibration_Stat133: 7.40054625e-06 + syst_JES_EtaIntercalibration_Stat134: 2.15040299e-05 + syst_JES_EtaIntercalibration_Stat135: 1.77671468e-05 + syst_JES_EtaIntercalibration_Stat136: 3.92148960e-05 + syst_JES_EtaIntercalibration_Stat137: 2.01695680e-05 + syst_JES_EtaIntercalibration_Stat138: 1.63671867e-05 + syst_JES_EtaIntercalibration_Stat139: 1.32704765e-05 + syst_JES_EtaIntercalibration_Stat14: 3.41249733e-06 + syst_JES_EtaIntercalibration_Stat140: 3.59129322e-05 + syst_JES_EtaIntercalibration_Stat141: 1.44591530e-05 + syst_JES_EtaIntercalibration_Stat142: 2.02627016e-06 + syst_JES_EtaIntercalibration_Stat143: 9.28089095e-07 + syst_JES_EtaIntercalibration_Stat144: 3.41830320e-06 + syst_JES_EtaIntercalibration_Stat145: 1.14101054e-06 + syst_JES_EtaIntercalibration_Stat146: 5.33805028e-06 + syst_JES_EtaIntercalibration_Stat147: 6.23749012e-07 + syst_JES_EtaIntercalibration_Stat148: 2.52468255e-06 + syst_JES_EtaIntercalibration_Stat149: 1.33583647e-05 + syst_JES_EtaIntercalibration_Stat15: 2.08849043e-06 + syst_JES_EtaIntercalibration_Stat150: 1.13493478e-05 + syst_JES_EtaIntercalibration_Stat151: 1.65721715e-05 + syst_JES_EtaIntercalibration_Stat152: 7.66167991e-06 + syst_JES_EtaIntercalibration_Stat153: 2.60146588e-05 + syst_JES_EtaIntercalibration_Stat154: 4.15218650e-05 + syst_JES_EtaIntercalibration_Stat155: 4.10804098e-05 + syst_JES_EtaIntercalibration_Stat156: 3.06618460e-05 + syst_JES_EtaIntercalibration_Stat157: 4.74634664e-05 + syst_JES_EtaIntercalibration_Stat158: 4.90002681e-05 + syst_JES_EtaIntercalibration_Stat159: 1.72162051e-05 + syst_JES_EtaIntercalibration_Stat16: 2.08849043e-06 + syst_JES_EtaIntercalibration_Stat160: 4.01140910e-06 + syst_JES_EtaIntercalibration_Stat161: 5.95364106e-06 + syst_JES_EtaIntercalibration_Stat162: 1.75240556e-06 + syst_JES_EtaIntercalibration_Stat163: 1.37357267e-06 + syst_JES_EtaIntercalibration_Stat164: 3.99271602e-06 + syst_JES_EtaIntercalibration_Stat165: 4.95250482e-06 + syst_JES_EtaIntercalibration_Stat166: 1.45699446e-05 + syst_JES_EtaIntercalibration_Stat167: 1.77078027e-05 + syst_JES_EtaIntercalibration_Stat168: 2.58782090e-05 + syst_JES_EtaIntercalibration_Stat169: 7.41535549e-05 + syst_JES_EtaIntercalibration_Stat17: 2.09327625e-06 + syst_JES_EtaIntercalibration_Stat170: 1.26378610e-04 + syst_JES_EtaIntercalibration_Stat171: 1.01685480e-04 + syst_JES_EtaIntercalibration_Stat172: 5.53506883e-05 + syst_JES_EtaIntercalibration_Stat173: 8.54562969e-05 + syst_JES_EtaIntercalibration_Stat174: 4.37180879e-05 + syst_JES_EtaIntercalibration_Stat175: 6.34638377e-05 + syst_JES_EtaIntercalibration_Stat176: 8.86134193e-05 + syst_JES_EtaIntercalibration_Stat177: 8.66160667e-05 + syst_JES_EtaIntercalibration_Stat178: 1.11668074e-05 + syst_JES_EtaIntercalibration_Stat179: 1.98963104e-05 + syst_JES_EtaIntercalibration_Stat18: 2.08849043e-06 + syst_JES_EtaIntercalibration_Stat180: 3.78356350e-06 + syst_JES_EtaIntercalibration_Stat181: 7.76813959e-07 + syst_JES_EtaIntercalibration_Stat182: 4.19792149e-05 + syst_JES_EtaIntercalibration_Stat183: 7.29569207e-05 + syst_JES_EtaIntercalibration_Stat184: 7.61226175e-05 + syst_JES_EtaIntercalibration_Stat185: 1.57782089e-04 + syst_JES_EtaIntercalibration_Stat186: 2.33112226e-04 + syst_JES_EtaIntercalibration_Stat187: 3.78305839e-04 + syst_JES_EtaIntercalibration_Stat188: 3.82685161e-04 + syst_JES_EtaIntercalibration_Stat189: 3.28463423e-04 + syst_JES_EtaIntercalibration_Stat19: 3.41249733e-06 + syst_JES_EtaIntercalibration_Stat190: 2.82743329e-04 + syst_JES_EtaIntercalibration_Stat191: 3.30643172e-04 + syst_JES_EtaIntercalibration_Stat192: 3.64850736e-04 + syst_JES_EtaIntercalibration_Stat193: 2.69170592e-04 + syst_JES_EtaIntercalibration_Stat194: 2.29373424e-04 + syst_JES_EtaIntercalibration_Stat195: 1.12272586e-04 + syst_JES_EtaIntercalibration_Stat196: 3.61251435e-05 + syst_JES_EtaIntercalibration_Stat197: 1.71883348e-05 + syst_JES_EtaIntercalibration_Stat198: 9.48682838e-05 + syst_JES_EtaIntercalibration_Stat199: 1.23238540e-04 + syst_JES_EtaIntercalibration_Stat2: 3.41249733e-06 + syst_JES_EtaIntercalibration_Stat20: 3.41249733e-06 + syst_JES_EtaIntercalibration_Stat200: 1.75803157e-04 + syst_JES_EtaIntercalibration_Stat201: 3.85892252e-04 + syst_JES_EtaIntercalibration_Stat202: 4.90973513e-04 + syst_JES_EtaIntercalibration_Stat203: 5.32061037e-04 + syst_JES_EtaIntercalibration_Stat204: 4.04108018e-04 + syst_JES_EtaIntercalibration_Stat205: 3.71281901e-04 + syst_JES_EtaIntercalibration_Stat206: 5.17704732e-04 + syst_JES_EtaIntercalibration_Stat207: 4.01763323e-04 + syst_JES_EtaIntercalibration_Stat208: 4.55702546e-04 + syst_JES_EtaIntercalibration_Stat209: 8.04199084e-05 + syst_JES_EtaIntercalibration_Stat21: 3.41249733e-06 + syst_JES_EtaIntercalibration_Stat210: 1.00705155e-04 + syst_JES_EtaIntercalibration_Stat211: 3.78427552e-05 + syst_JES_EtaIntercalibration_Stat212: 2.30713599e-06 + syst_JES_EtaIntercalibration_Stat213: 5.62430091e-05 + syst_JES_EtaIntercalibration_Stat214: 1.78776047e-04 + syst_JES_EtaIntercalibration_Stat215: 2.84945679e-04 + syst_JES_EtaIntercalibration_Stat216: 3.06160105e-04 + syst_JES_EtaIntercalibration_Stat217: 2.41004165e-04 + syst_JES_EtaIntercalibration_Stat218: 1.99545709e-04 + syst_JES_EtaIntercalibration_Stat219: 2.37303071e-04 + syst_JES_EtaIntercalibration_Stat22: 3.41249733e-06 + syst_JES_EtaIntercalibration_Stat220: 2.15964042e-04 + syst_JES_EtaIntercalibration_Stat221: 1.54513355e-04 + syst_JES_EtaIntercalibration_Stat222: 8.86453710e-05 + syst_JES_EtaIntercalibration_Stat223: 1.83192160e-05 + syst_JES_EtaIntercalibration_Stat224: 1.27481300e-05 + syst_JES_EtaIntercalibration_Stat225: 1.90174091e-05 + syst_JES_EtaIntercalibration_Stat226: 9.15206829e-05 + syst_JES_EtaIntercalibration_Stat227: 9.03484737e-05 + syst_JES_EtaIntercalibration_Stat228: 1.29808192e-04 + syst_JES_EtaIntercalibration_Stat229: 1.26770390e-04 + syst_JES_EtaIntercalibration_Stat23: 3.39766431e-06 + syst_JES_EtaIntercalibration_Stat230: 1.00297605e-05 + syst_JES_EtaIntercalibration_Stat231: 1.10168595e-04 + syst_JES_EtaIntercalibration_Stat232: 2.37817426e-05 + syst_JES_EtaIntercalibration_Stat233: 4.57593649e-05 + syst_JES_EtaIntercalibration_Stat234: 1.65959893e-05 + syst_JES_EtaIntercalibration_Stat235: 1.22433633e-05 + syst_JES_EtaIntercalibration_Stat236: 6.83207441e-06 + syst_JES_EtaIntercalibration_Stat237: 1.85697839e-05 + syst_JES_EtaIntercalibration_Stat238: 1.66429967e-05 + syst_JES_EtaIntercalibration_Stat239: 1.72321997e-05 + syst_JES_EtaIntercalibration_Stat24: 2.08848842e-06 + syst_JES_EtaIntercalibration_Stat240: 1.58755534e-05 + syst_JES_EtaIntercalibration_Stat241: 9.76837049e-06 + syst_JES_EtaIntercalibration_Stat242: 7.84720791e-06 + syst_JES_EtaIntercalibration_Stat243: 3.75615664e-06 + syst_JES_EtaIntercalibration_Stat244: 1.59412128e-05 + syst_JES_EtaIntercalibration_Stat245: 8.68615109e-06 + syst_JES_EtaIntercalibration_Stat25: 1.58838084e-08 + syst_JES_EtaIntercalibration_Stat26: 6.05142116e-09 + syst_JES_EtaIntercalibration_Stat27: 6.19284127e-09 + syst_JES_EtaIntercalibration_Stat28: 6.07195411e-09 + syst_JES_EtaIntercalibration_Stat29: 1.02453425e-05 + syst_JES_EtaIntercalibration_Stat3: 3.41249733e-06 + syst_JES_EtaIntercalibration_Stat30: 6.13571974e-09 + syst_JES_EtaIntercalibration_Stat31: 1.13250141e-06 + syst_JES_EtaIntercalibration_Stat32: 1.46098489e-05 + syst_JES_EtaIntercalibration_Stat33: 3.00337604e-05 + syst_JES_EtaIntercalibration_Stat34: 1.45838685e-05 + syst_JES_EtaIntercalibration_Stat35: 3.80389106e-09 + syst_JES_EtaIntercalibration_Stat36: 2.88140708e-06 + syst_JES_EtaIntercalibration_Stat37: 2.13265565e-06 + syst_JES_EtaIntercalibration_Stat38: 6.10684960e-09 + syst_JES_EtaIntercalibration_Stat39: 6.10968747e-09 + syst_JES_EtaIntercalibration_Stat4: 3.41249733e-06 + syst_JES_EtaIntercalibration_Stat40: 2.08762670e-06 + syst_JES_EtaIntercalibration_Stat41: 3.41249733e-06 + syst_JES_EtaIntercalibration_Stat42: 3.41249733e-06 + syst_JES_EtaIntercalibration_Stat43: 3.41249733e-06 + syst_JES_EtaIntercalibration_Stat44: 3.41249733e-06 + syst_JES_EtaIntercalibration_Stat45: 3.41249733e-06 + syst_JES_EtaIntercalibration_Stat46: 6.11882021e-09 + syst_JES_EtaIntercalibration_Stat47: 3.77253310e-09 + syst_JES_EtaIntercalibration_Stat48: 1.60682509e-08 + syst_JES_EtaIntercalibration_Stat49: 2.09275788e-06 + syst_JES_EtaIntercalibration_Stat5: 3.41249733e-06 + syst_JES_EtaIntercalibration_Stat50: 2.47077058e-08 + syst_JES_EtaIntercalibration_Stat51: 6.16488256e-06 + syst_JES_EtaIntercalibration_Stat52: 6.53329579e-06 + syst_JES_EtaIntercalibration_Stat53: 1.21224573e-06 + syst_JES_EtaIntercalibration_Stat54: 1.45925280e-05 + syst_JES_EtaIntercalibration_Stat55: 1.45838916e-05 + syst_JES_EtaIntercalibration_Stat56: 1.45925285e-05 + syst_JES_EtaIntercalibration_Stat57: 1.31722152e-08 + syst_JES_EtaIntercalibration_Stat58: 2.20057627e-09 + syst_JES_EtaIntercalibration_Stat59: 1.35359768e-06 + syst_JES_EtaIntercalibration_Stat6: 1.31722461e-05 + syst_JES_EtaIntercalibration_Stat60: 3.36530842e-06 + syst_JES_EtaIntercalibration_Stat61: 3.68839579e-09 + syst_JES_EtaIntercalibration_Stat62: 2.08416232e-06 + syst_JES_EtaIntercalibration_Stat63: 6.03586647e-09 + syst_JES_EtaIntercalibration_Stat64: 3.41249733e-06 + syst_JES_EtaIntercalibration_Stat65: 3.41249733e-06 + syst_JES_EtaIntercalibration_Stat66: 3.41249733e-06 + syst_JES_EtaIntercalibration_Stat67: 3.41249733e-06 + syst_JES_EtaIntercalibration_Stat68: 9.80093016e-14 + syst_JES_EtaIntercalibration_Stat69: 2.06462397e-06 + syst_JES_EtaIntercalibration_Stat7: 2.08845567e-06 + syst_JES_EtaIntercalibration_Stat70: 1.64891240e-06 + syst_JES_EtaIntercalibration_Stat71: 7.43404298e-06 + syst_JES_EtaIntercalibration_Stat72: 6.03100095e-06 + syst_JES_EtaIntercalibration_Stat73: 6.48220064e-06 + syst_JES_EtaIntercalibration_Stat74: 1.62553017e-06 + syst_JES_EtaIntercalibration_Stat75: 1.71646227e-05 + syst_JES_EtaIntercalibration_Stat76: 1.45925283e-05 + syst_JES_EtaIntercalibration_Stat77: 1.79007446e-06 + syst_JES_EtaIntercalibration_Stat78: 1.86779891e-06 + syst_JES_EtaIntercalibration_Stat79: 8.89927937e-06 + syst_JES_EtaIntercalibration_Stat8: 3.79117340e-09 + syst_JES_EtaIntercalibration_Stat80: 1.28777972e-05 + syst_JES_EtaIntercalibration_Stat81: 2.52253681e-09 + syst_JES_EtaIntercalibration_Stat82: 2.28194697e-09 + syst_JES_EtaIntercalibration_Stat83: 5.78089521e-09 + syst_JES_EtaIntercalibration_Stat84: 3.68233773e-09 + syst_JES_EtaIntercalibration_Stat85: 3.69015305e-09 + syst_JES_EtaIntercalibration_Stat86: 2.08971930e-06 + syst_JES_EtaIntercalibration_Stat87: 2.08971930e-06 + syst_JES_EtaIntercalibration_Stat88: 3.70139246e-09 + syst_JES_EtaIntercalibration_Stat89: 2.03169485e-06 + syst_JES_EtaIntercalibration_Stat9: 1.00316405e-05 + syst_JES_EtaIntercalibration_Stat90: 2.75601629e-08 + syst_JES_EtaIntercalibration_Stat91: 2.79510542e-08 + syst_JES_EtaIntercalibration_Stat92: 3.79839362e-08 + syst_JES_EtaIntercalibration_Stat93: 6.48733178e-06 + syst_JES_EtaIntercalibration_Stat94: 5.85417464e-06 + syst_JES_EtaIntercalibration_Stat95: 1.62779995e-06 + syst_JES_EtaIntercalibration_Stat96: 1.45969877e-05 + syst_JES_EtaIntercalibration_Stat97: 1.38992659e-05 + syst_JES_EtaIntercalibration_Stat98: 1.40824252e-05 + syst_JES_EtaIntercalibration_Stat99: 1.43327205e-05 + syst_JES_EtaIntercalibration_TotalStat_MJB: 5.45053032e-03 + syst_JES_Flavour_Comp: 1.66075307e-02 + syst_JES_Flavour_Response: 8.46444753e-03 + syst_JES_Gjet_Generator: 2.66406344e-02 + syst_JES_Gjet_OOC: 2.08891665e-02 + syst_JES_Gjet_Purity: 6.09191817e-03 + syst_JES_Gjet_Stat1: 6.46654684e-05 + syst_JES_Gjet_Stat10: 7.38425167e-04 + syst_JES_Gjet_Stat11: 9.89730564e-04 + syst_JES_Gjet_Stat12: 2.85664712e-03 + syst_JES_Gjet_Stat13: 6.09832491e-03 + syst_JES_Gjet_Stat14: 5.69996796e-03 + syst_JES_Gjet_Stat15: 1.09505088e-03 + syst_JES_Gjet_Stat2: 1.45407170e-04 + syst_JES_Gjet_Stat3: 9.79270732e-05 + syst_JES_Gjet_Stat4: 1.08735598e-04 + syst_JES_Gjet_Stat5: 1.11557882e-04 + syst_JES_Gjet_Stat6: 2.71336816e-04 + syst_JES_Gjet_Stat7: 3.19453514e-04 + syst_JES_Gjet_Stat8: 2.92053090e-04 + syst_JES_Gjet_Stat9: 4.23411290e-04 + syst_JES_Gjet_Veto: 1.72748690e-02 + syst_JES_Gjet_dPhi: 1.95003282e-03 + syst_JES_LArESZee: 4.02900099e-02 + syst_JES_LArEsmear: 3.15045838e-03 + syst_JES_LAr_JVT: 4.00388646e-03 + syst_JES_MJB_Alpha: 3.91514546e-04 + syst_JES_MJB_Asym: 1.54825838e-03 + syst_JES_MJB_Beta: 3.09141921e-04 + syst_JES_MJB_Fragmentation: 4.28995489e-03 + syst_JES_MJB_Stat1: 1.48405121e-04 + syst_JES_MJB_Stat10: 9.93119464e-06 + syst_JES_MJB_Stat11: 6.60180718e-05 + syst_JES_MJB_Stat12: 5.52776508e-05 + syst_JES_MJB_Stat13: 6.14412522e-05 + syst_JES_MJB_Stat14: 4.48113344e-05 + syst_JES_MJB_Stat15: 1.58394824e-05 + syst_JES_MJB_Stat16: 1.73097117e-05 + syst_JES_MJB_Stat2: 3.88881703e-04 + syst_JES_MJB_Stat3: 5.37799877e-04 + syst_JES_MJB_Stat4: 3.47602920e-04 + syst_JES_MJB_Stat5: 2.92179157e-04 + syst_JES_MJB_Stat6: 1.79218107e-04 + syst_JES_MJB_Stat7: 1.10802084e-04 + syst_JES_MJB_Stat8: 9.71587587e-05 + syst_JES_MJB_Stat9: 1.44088347e-05 + syst_JES_MJB_Threshold: 2.08472174e-03 + syst_JES_Pileup_MuOffset: 4.31813927e-03 + syst_JES_Pileup_NPVOffset: 4.50672098e-03 + syst_JES_Pileup_Pt_term: 4.23674082e-03 + syst_JES_Pileup_Rho_topology: 8.39826762e-03 + syst_JES_PunchThrough_MC15: 1.29075437e-03 + syst_JES_SingleParticle_HighPt: 4.53500287e-06 + syst_JES_Zjet_MC: 1.66251820e-02 + syst_JES_Zjet_MuScale: 1.12317352e-03 + syst_JES_Zjet_MuSmearID: 3.41411687e-04 + syst_JES_Zjet_MuSmearMS: 4.76435431e-03 + syst_JES_Zjet_OOC: 7.49382124e-03 + syst_JES_Zjet_Stat1: 4.10447573e-04 + syst_JES_Zjet_Stat10: 6.89395387e-04 + syst_JES_Zjet_Stat11: 8.61526498e-04 + syst_JES_Zjet_Stat12: 3.38350362e-03 + syst_JES_Zjet_Stat13: 5.04580070e-03 + syst_JES_Zjet_Stat2: 5.38877915e-05 + syst_JES_Zjet_Stat3: 2.55655682e-04 + syst_JES_Zjet_Stat4: 2.63549516e-04 + syst_JES_Zjet_Stat5: 2.55824667e-04 + syst_JES_Zjet_Stat6: 3.22246009e-04 + syst_JES_Zjet_Stat7: 1.65812567e-04 + syst_JES_Zjet_Stat8: 2.58973758e-04 + syst_JES_Zjet_Stat9: 4.08026861e-04 + syst_JES_Zjet_Veto: 1.70519816e-03 + syst_JES_Zjet_dPhi: 1.44246822e-03 syst_PRW: 0.0 syst_Unfolding_bias: 0.0 - syst_cleaning: 0.012817175976009693 + syst_cleaning: 1.28171760e-02 syst_lumi: 0.02826 - stat: 0.002546 - syst_JER_CROSS_CALIB_FORWARD: 1.502e-15 - syst_JER_NOISE_FORWARD: 1.1648e-15 - syst_JER_NP0: 0.0014380490907823695 - syst_JER_NP1: 0.00013461173277244448 - syst_JER_NP2: 0.0006915129987932259 - syst_JER_NP3: 0.00025496527214505113 - syst_JER_NP4: 8.952968111190835e-05 + syst_JER_CROSS_CALIB_FORWARD: 1.50200000e-15 + syst_JER_NOISE_FORWARD: 1.16480000e-15 + syst_JER_NP0: 1.43804909e-03 + syst_JER_NP1: 1.34611733e-04 + syst_JER_NP2: 6.91512999e-04 + syst_JER_NP3: 2.54965272e-04 + syst_JER_NP4: 8.95296811e-05 syst_JER_NP5: 0.0 - syst_JER_NP6: 1.612131818431731e-21 + syst_JER_NP6: 1.61213182e-21 syst_JER_NP7: 0.0 - syst_JER_NP8: 0.00027883921442293586 - syst_JES_EtaIntercalibration_Modelling: 0.015130026437518212 - syst_JES_EtaIntercalibration_NonClosure: 0.00016614092662556087 - syst_JES_EtaIntercalibration_Stat0: 1.7973240164199666e-06 - syst_JES_EtaIntercalibration_Stat1: 1.7973240164199666e-06 - syst_JES_EtaIntercalibration_Stat10: 1.5435034718133937e-05 - syst_JES_EtaIntercalibration_Stat100: 3.3572102485843804e-06 - syst_JES_EtaIntercalibration_Stat101: 1.6212394980247497e-09 - syst_JES_EtaIntercalibration_Stat102: 1.7028684623305464e-10 - syst_JES_EtaIntercalibration_Stat103: 1.167167290839285e-06 - syst_JES_EtaIntercalibration_Stat104: 1.533622498367835e-10 - syst_JES_EtaIntercalibration_Stat105: 8.105141652737283e-10 - syst_JES_EtaIntercalibration_Stat106: 1.2972913273325618e-10 - syst_JES_EtaIntercalibration_Stat107: 1.1006316856693703e-06 - syst_JES_EtaIntercalibration_Stat108: 1.1114570032169487e-06 - syst_JES_EtaIntercalibration_Stat109: 9.219877467661921e-07 - syst_JES_EtaIntercalibration_Stat11: 1.5822284108868557e-05 - syst_JES_EtaIntercalibration_Stat110: 9.215661027338191e-07 - syst_JES_EtaIntercalibration_Stat111: 3.285950538276558e-09 - syst_JES_EtaIntercalibration_Stat112: 1.2371348581298645e-08 - syst_JES_EtaIntercalibration_Stat113: 2.923154802606253e-06 - syst_JES_EtaIntercalibration_Stat114: 1.8135756063643996e-06 - syst_JES_EtaIntercalibration_Stat115: 2.571388303523993e-06 - syst_JES_EtaIntercalibration_Stat116: 1.6912624596732467e-06 - syst_JES_EtaIntercalibration_Stat117: 6.004052120651518e-06 - syst_JES_EtaIntercalibration_Stat118: 1.1688142485014462e-06 - syst_JES_EtaIntercalibration_Stat119: 1.5686356859713728e-06 - syst_JES_EtaIntercalibration_Stat12: 5.283621006811071e-06 - syst_JES_EtaIntercalibration_Stat120: 1.681144848012806e-06 - syst_JES_EtaIntercalibration_Stat121: 1.7289400821023267e-07 - syst_JES_EtaIntercalibration_Stat122: 1.1613453906340697e-06 - syst_JES_EtaIntercalibration_Stat123: 4.849458997403731e-09 - syst_JES_EtaIntercalibration_Stat124: 4.680541311376281e-09 - syst_JES_EtaIntercalibration_Stat125: 1.7265586776880766e-08 - syst_JES_EtaIntercalibration_Stat126: 7.530978582401269e-07 - syst_JES_EtaIntercalibration_Stat127: 1.9797340730512268e-10 - syst_JES_EtaIntercalibration_Stat128: 1.725610326811937e-06 - syst_JES_EtaIntercalibration_Stat129: 1.4941866439220368e-06 - syst_JES_EtaIntercalibration_Stat13: 1.7972533064373533e-06 - syst_JES_EtaIntercalibration_Stat130: 1.3913490602648927e-07 - syst_JES_EtaIntercalibration_Stat131: 2.345731655582113e-06 - syst_JES_EtaIntercalibration_Stat132: 5.105080373236057e-06 - syst_JES_EtaIntercalibration_Stat133: 2.8653334884442335e-06 - syst_JES_EtaIntercalibration_Stat134: 1.4414530585489074e-05 - syst_JES_EtaIntercalibration_Stat135: 8.950557692121759e-06 - syst_JES_EtaIntercalibration_Stat136: 1.5378344863801176e-05 - syst_JES_EtaIntercalibration_Stat137: 4.071457826135498e-06 - syst_JES_EtaIntercalibration_Stat138: 9.619040856551138e-06 - syst_JES_EtaIntercalibration_Stat139: 5.400241175169865e-06 - syst_JES_EtaIntercalibration_Stat14: 1.7972533064373533e-06 - syst_JES_EtaIntercalibration_Stat140: 1.3543053597693543e-05 - syst_JES_EtaIntercalibration_Stat141: 5.61714862897538e-06 - syst_JES_EtaIntercalibration_Stat142: 1.016254519055143e-06 - syst_JES_EtaIntercalibration_Stat143: 6.995602066298512e-08 - syst_JES_EtaIntercalibration_Stat144: 6.090316986824249e-07 - syst_JES_EtaIntercalibration_Stat145: 5.978658613520155e-07 - syst_JES_EtaIntercalibration_Stat146: 2.6332450868652542e-06 - syst_JES_EtaIntercalibration_Stat147: 8.629365666695135e-08 - syst_JES_EtaIntercalibration_Stat148: 4.388850244369247e-07 - syst_JES_EtaIntercalibration_Stat149: 2.29659356439053e-06 - syst_JES_EtaIntercalibration_Stat15: 1.1004791078223475e-06 - syst_JES_EtaIntercalibration_Stat150: 5.4205425883277585e-06 - syst_JES_EtaIntercalibration_Stat151: 1.0341483259184825e-05 - syst_JES_EtaIntercalibration_Stat152: 1.0415228245578682e-05 - syst_JES_EtaIntercalibration_Stat153: 1.0406540683627771e-05 - syst_JES_EtaIntercalibration_Stat154: 1.5615508317054554e-05 - syst_JES_EtaIntercalibration_Stat155: 6.629620407685495e-06 - syst_JES_EtaIntercalibration_Stat156: 1.1164569763318245e-05 - syst_JES_EtaIntercalibration_Stat157: 1.43096782196526e-05 - syst_JES_EtaIntercalibration_Stat158: 1.4687575591294842e-05 - syst_JES_EtaIntercalibration_Stat159: 6.6581890653540315e-06 - syst_JES_EtaIntercalibration_Stat16: 1.1004791078223475e-06 - syst_JES_EtaIntercalibration_Stat160: 2.1445597846644427e-06 - syst_JES_EtaIntercalibration_Stat161: 1.3535153411395083e-06 - syst_JES_EtaIntercalibration_Stat162: 1.0948818907535187e-06 - syst_JES_EtaIntercalibration_Stat163: 7.948552912794882e-07 - syst_JES_EtaIntercalibration_Stat164: 1.338557454227778e-06 - syst_JES_EtaIntercalibration_Stat165: 1.2286005890849963e-06 - syst_JES_EtaIntercalibration_Stat166: 3.4519077334135104e-06 - syst_JES_EtaIntercalibration_Stat167: 8.746725158595073e-06 - syst_JES_EtaIntercalibration_Stat168: 3.299012504902035e-06 - syst_JES_EtaIntercalibration_Stat169: 2.1005830143081703e-05 - syst_JES_EtaIntercalibration_Stat17: 1.1007627139468647e-06 - syst_JES_EtaIntercalibration_Stat170: 3.7666674007005185e-05 - syst_JES_EtaIntercalibration_Stat171: 3.482916127327788e-05 - syst_JES_EtaIntercalibration_Stat172: 1.8869805424275046e-05 - syst_JES_EtaIntercalibration_Stat173: 2.7166366613884897e-05 - syst_JES_EtaIntercalibration_Stat174: 9.131960578101507e-06 - syst_JES_EtaIntercalibration_Stat175: 1.7579386131204924e-05 - syst_JES_EtaIntercalibration_Stat176: 2.420793826413146e-05 - syst_JES_EtaIntercalibration_Stat177: 2.4574906469811843e-05 - syst_JES_EtaIntercalibration_Stat178: 2.918630500765727e-06 - syst_JES_EtaIntercalibration_Stat179: 4.028031870529328e-06 - syst_JES_EtaIntercalibration_Stat18: 1.1005657103614804e-06 - syst_JES_EtaIntercalibration_Stat180: 6.825399583907158e-07 - syst_JES_EtaIntercalibration_Stat181: 8.581289646667335e-08 - syst_JES_EtaIntercalibration_Stat182: 2.4563084471417676e-05 - syst_JES_EtaIntercalibration_Stat183: 2.429105390879531e-05 - syst_JES_EtaIntercalibration_Stat184: 2.3987809403945163e-05 - syst_JES_EtaIntercalibration_Stat185: 4.680874597764824e-05 - syst_JES_EtaIntercalibration_Stat186: 7.177180574571048e-05 - syst_JES_EtaIntercalibration_Stat187: 0.00011897929683352479 - syst_JES_EtaIntercalibration_Stat188: 0.00011828850778921849 - syst_JES_EtaIntercalibration_Stat189: 0.0001038985125013828 - syst_JES_EtaIntercalibration_Stat19: 1.7972533064373533e-06 - syst_JES_EtaIntercalibration_Stat190: 9.210924532857708e-05 - syst_JES_EtaIntercalibration_Stat191: 0.00010198530028881612 - syst_JES_EtaIntercalibration_Stat192: 0.00011437005060329387 - syst_JES_EtaIntercalibration_Stat193: 6.542548643304076e-05 - syst_JES_EtaIntercalibration_Stat194: 6.809844638462761e-05 - syst_JES_EtaIntercalibration_Stat195: 3.1669371638856365e-05 - syst_JES_EtaIntercalibration_Stat196: 6.667159850153587e-06 - syst_JES_EtaIntercalibration_Stat197: 6.102521671407648e-07 - syst_JES_EtaIntercalibration_Stat198: 3.884366075371888e-05 - syst_JES_EtaIntercalibration_Stat199: 3.9330744653515016e-05 - syst_JES_EtaIntercalibration_Stat2: 1.7973240164199666e-06 - syst_JES_EtaIntercalibration_Stat20: 1.7973240164199666e-06 - syst_JES_EtaIntercalibration_Stat200: 6.725553285789951e-05 - syst_JES_EtaIntercalibration_Stat201: 0.00013159127659157353 - syst_JES_EtaIntercalibration_Stat202: 0.00016978429697707618 - syst_JES_EtaIntercalibration_Stat203: 0.00019050425192105292 - syst_JES_EtaIntercalibration_Stat204: 0.00014527896853984063 - syst_JES_EtaIntercalibration_Stat205: 0.00014436432272206317 - syst_JES_EtaIntercalibration_Stat206: 0.0001711827386157845 - syst_JES_EtaIntercalibration_Stat207: 0.00013286170657868278 - syst_JES_EtaIntercalibration_Stat208: 0.00013848559239141087 - syst_JES_EtaIntercalibration_Stat209: 4.138774609410375e-05 - syst_JES_EtaIntercalibration_Stat21: 1.7973240164199666e-06 - syst_JES_EtaIntercalibration_Stat210: 3.019818537594602e-05 - syst_JES_EtaIntercalibration_Stat211: 1.3929912957373423e-05 - syst_JES_EtaIntercalibration_Stat212: 1.2149493775444595e-06 - syst_JES_EtaIntercalibration_Stat213: 3.736674724939274e-05 - syst_JES_EtaIntercalibration_Stat214: 8.516769457957636e-05 - syst_JES_EtaIntercalibration_Stat215: 0.00012888313543672037 - syst_JES_EtaIntercalibration_Stat216: 0.00014171863700657017 - syst_JES_EtaIntercalibration_Stat217: 0.00010284315631095732 - syst_JES_EtaIntercalibration_Stat218: 9.727281686062145e-05 - syst_JES_EtaIntercalibration_Stat219: 0.00011012137610382465 - syst_JES_EtaIntercalibration_Stat22: 1.7973240164199666e-06 - syst_JES_EtaIntercalibration_Stat220: 0.00010004149289169969 - syst_JES_EtaIntercalibration_Stat221: 6.079806802029157e-05 - syst_JES_EtaIntercalibration_Stat222: 4.301172308801404e-05 - syst_JES_EtaIntercalibration_Stat223: 9.479901937783955e-06 - syst_JES_EtaIntercalibration_Stat224: 5.341903312490783e-06 - syst_JES_EtaIntercalibration_Stat225: 3.7092408926895e-05 - syst_JES_EtaIntercalibration_Stat226: 9.300048225681411e-05 - syst_JES_EtaIntercalibration_Stat227: 9.754413770186295e-05 - syst_JES_EtaIntercalibration_Stat228: 0.00010784235102685772 - syst_JES_EtaIntercalibration_Stat229: 7.793757630309015e-05 - syst_JES_EtaIntercalibration_Stat23: 1.7894837377020223e-06 - syst_JES_EtaIntercalibration_Stat230: 6.718266591911935e-05 - syst_JES_EtaIntercalibration_Stat231: 0.0001272652351390591 - syst_JES_EtaIntercalibration_Stat232: 7.039006517257958e-05 - syst_JES_EtaIntercalibration_Stat233: 5.730041426551818e-05 - syst_JES_EtaIntercalibration_Stat234: 7.192917058294221e-06 - syst_JES_EtaIntercalibration_Stat235: 6.4640793767186696e-06 - syst_JES_EtaIntercalibration_Stat236: 6.7368116160391476e-06 - syst_JES_EtaIntercalibration_Stat237: 4.767963850534104e-06 - syst_JES_EtaIntercalibration_Stat238: 1.2228496176963054e-06 - syst_JES_EtaIntercalibration_Stat239: 4.966583609484491e-07 - syst_JES_EtaIntercalibration_Stat24: 1.1004790212613811e-06 - syst_JES_EtaIntercalibration_Stat240: 1.278793012649037e-05 - syst_JES_EtaIntercalibration_Stat241: 5.776174851924065e-06 - syst_JES_EtaIntercalibration_Stat242: 3.215315488019799e-06 - syst_JES_EtaIntercalibration_Stat243: 1.5889719530249737e-05 - syst_JES_EtaIntercalibration_Stat244: 1.1223397914624608e-05 - syst_JES_EtaIntercalibration_Stat245: 3.5269994850439093e-06 - syst_JES_EtaIntercalibration_Stat25: 1.2975266933670382e-09 - syst_JES_EtaIntercalibration_Stat26: 3.241378101980699e-10 - syst_JES_EtaIntercalibration_Stat27: 3.3156237346840186e-10 - syst_JES_EtaIntercalibration_Stat28: 3.2527065653083434e-10 - syst_JES_EtaIntercalibration_Stat29: 3.1485066094896483e-06 - syst_JES_EtaIntercalibration_Stat3: 1.7973240164199666e-06 - syst_JES_EtaIntercalibration_Stat30: 3.285298616564406e-10 - syst_JES_EtaIntercalibration_Stat31: 5.958254768470244e-07 - syst_JES_EtaIntercalibration_Stat32: 7.696367780273615e-06 - syst_JES_EtaIntercalibration_Stat33: 1.5813623840064983e-05 - syst_JES_EtaIntercalibration_Stat34: 7.694635751760426e-06 - syst_JES_EtaIntercalibration_Stat35: 2.0368564179882686e-10 - syst_JES_EtaIntercalibration_Stat36: 1.5173379213280079e-06 - syst_JES_EtaIntercalibration_Stat37: 1.1255937576170222e-06 - syst_JES_EtaIntercalibration_Stat38: 3.2705110839133384e-10 - syst_JES_EtaIntercalibration_Stat39: 3.271222860032621e-10 - syst_JES_EtaIntercalibration_Stat4: 1.7973240164199666e-06 - syst_JES_EtaIntercalibration_Stat40: 1.1003060470124697e-06 - syst_JES_EtaIntercalibration_Stat41: 1.7972533064373533e-06 - syst_JES_EtaIntercalibration_Stat42: 1.7972533064373533e-06 - syst_JES_EtaIntercalibration_Stat43: 1.7973240164199666e-06 - syst_JES_EtaIntercalibration_Stat44: 1.7973240164199666e-06 - syst_JES_EtaIntercalibration_Stat45: 1.7973240164199666e-06 - syst_JES_EtaIntercalibration_Stat46: 3.276141137069647e-10 - syst_JES_EtaIntercalibration_Stat47: 2.0760758656658e-10 - syst_JES_EtaIntercalibration_Stat48: 1.306710514038974e-09 - syst_JES_EtaIntercalibration_Stat49: 1.0996102237887524e-06 - syst_JES_EtaIntercalibration_Stat5: 1.7972533064373533e-06 - syst_JES_EtaIntercalibration_Stat50: 1.7692899888724351e-09 - syst_JES_EtaIntercalibration_Stat51: 3.7318058296219e-06 - syst_JES_EtaIntercalibration_Stat52: 3.0380171254362873e-06 - syst_JES_EtaIntercalibration_Stat53: 6.388008611302509e-07 - syst_JES_EtaIntercalibration_Stat54: 7.69550173691412e-06 - syst_JES_EtaIntercalibration_Stat55: 7.694636970383122e-06 - syst_JES_EtaIntercalibration_Stat56: 7.695501764549106e-06 - syst_JES_EtaIntercalibration_Stat57: 7.770826661963493e-10 - syst_JES_EtaIntercalibration_Stat58: 1.2981764595337555e-10 - syst_JES_EtaIntercalibration_Stat59: 7.149039690995088e-07 - syst_JES_EtaIntercalibration_Stat6: 1.9251744566663933e-06 - syst_JES_EtaIntercalibration_Stat60: 1.7723921462249828e-06 - syst_JES_EtaIntercalibration_Stat61: 1.9753991569582643e-10 - syst_JES_EtaIntercalibration_Stat62: 1.0981409835340848e-06 - syst_JES_EtaIntercalibration_Stat63: 3.2328935955270784e-10 - syst_JES_EtaIntercalibration_Stat64: 1.7972533064373533e-06 - syst_JES_EtaIntercalibration_Stat65: 1.7973240164199666e-06 - syst_JES_EtaIntercalibration_Stat66: 1.7973240164199666e-06 - syst_JES_EtaIntercalibration_Stat67: 1.797182595063729e-06 - syst_JES_EtaIntercalibration_Stat68: 5.82469303991206e-15 - syst_JES_EtaIntercalibration_Stat69: 1.0868274528205329e-06 - syst_JES_EtaIntercalibration_Stat7: 1.100563892592569e-06 - syst_JES_EtaIntercalibration_Stat70: 8.717411736563374e-07 - syst_JES_EtaIntercalibration_Stat71: 3.910846288799491e-06 - syst_JES_EtaIntercalibration_Stat72: 2.9895196963773767e-06 - syst_JES_EtaIntercalibration_Stat73: 3.037151122150793e-06 - syst_JES_EtaIntercalibration_Stat74: 8.837789557158446e-07 - syst_JES_EtaIntercalibration_Stat75: 9.05256349997486e-06 - syst_JES_EtaIntercalibration_Stat76: 7.694635730949836e-06 - syst_JES_EtaIntercalibration_Stat77: 9.456131361217987e-07 - syst_JES_EtaIntercalibration_Stat78: 6.703476709887191e-07 - syst_JES_EtaIntercalibration_Stat79: 4.687795637731107e-06 - syst_JES_EtaIntercalibration_Stat8: 2.0298048825219703e-10 - syst_JES_EtaIntercalibration_Stat80: 6.783576951917888e-06 - syst_JES_EtaIntercalibration_Stat81: 1.479593176349499e-10 - syst_JES_EtaIntercalibration_Stat82: 1.0942872344814827e-10 - syst_JES_EtaIntercalibration_Stat83: 2.953362151853375e-10 - syst_JES_EtaIntercalibration_Stat84: 1.9728038153285768e-10 - syst_JES_EtaIntercalibration_Stat85: 1.9762815389195447e-10 - syst_JES_EtaIntercalibration_Stat86: 1.100631685669199e-06 - syst_JES_EtaIntercalibration_Stat87: 1.100631685669643e-06 - syst_JES_EtaIntercalibration_Stat88: 1.982332046523121e-10 - syst_JES_EtaIntercalibration_Stat89: 1.070060947491177e-06 - syst_JES_EtaIntercalibration_Stat9: 5.284419323042286e-06 - syst_JES_EtaIntercalibration_Stat90: 1.9439393639993784e-09 - syst_JES_EtaIntercalibration_Stat91: 1.9706574591457418e-09 - syst_JES_EtaIntercalibration_Stat92: 2.724520524705366e-09 - syst_JES_EtaIntercalibration_Stat93: 3.0328175138235963e-06 - syst_JES_EtaIntercalibration_Stat94: 3.704931038494509e-06 - syst_JES_EtaIntercalibration_Stat95: 8.974489761540764e-07 - syst_JES_EtaIntercalibration_Stat96: 7.694898933751351e-06 - syst_JES_EtaIntercalibration_Stat97: 7.329204117774317e-06 - syst_JES_EtaIntercalibration_Stat98: 7.54562558755071e-06 - syst_JES_EtaIntercalibration_Stat99: 7.644406244112717e-06 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.003213913618938754 - syst_JES_Flavour_Comp: 0.009599030107255628 - syst_JES_Flavour_Response: 0.003789262673331053 - syst_JES_Gjet_Generator: 0.014426665415126255 - syst_JES_Gjet_OOC: 0.011540930670877456 - syst_JES_Gjet_Purity: 0.002968559372827163 - syst_JES_Gjet_Stat1: 3.811963667193065e-05 - syst_JES_Gjet_Stat10: 0.0003192475058633975 - syst_JES_Gjet_Stat11: 0.00040714426091988576 - syst_JES_Gjet_Stat12: 0.0012578883376516375 - syst_JES_Gjet_Stat13: 0.00324614402021845 - syst_JES_Gjet_Stat14: 0.004507516028812321 - syst_JES_Gjet_Stat15: 0.0001056219270558912 - syst_JES_Gjet_Stat2: 7.437690283280153e-05 - syst_JES_Gjet_Stat3: 5.675973110401423e-05 - syst_JES_Gjet_Stat4: 6.66069688546176e-05 - syst_JES_Gjet_Stat5: 7.643796226352455e-05 - syst_JES_Gjet_Stat6: 0.00011953320992510826 - syst_JES_Gjet_Stat7: 0.00015456367619851694 - syst_JES_Gjet_Stat8: 0.00013303502273837516 - syst_JES_Gjet_Stat9: 0.00020223876977473927 - syst_JES_Gjet_Veto: 0.010202198488561178 - syst_JES_Gjet_dPhi: 0.001071621447853672 - syst_JES_LArESZee: 0.021959519006572073 - syst_JES_LArEsmear: 0.0017100473677649985 - syst_JES_LAr_JVT: 0.0021232580507324116 - syst_JES_MJB_Alpha: 0.00015679563346917544 - syst_JES_MJB_Asym: 0.0009989529818765245 - syst_JES_MJB_Beta: 0.0001537205500250373 - syst_JES_MJB_Fragmentation: 0.0021414649191616474 - syst_JES_MJB_Stat1: 5.348080122810427e-05 - syst_JES_MJB_Stat10: 3.903973676589021e-05 - syst_JES_MJB_Stat11: 1.3339451666016862e-05 - syst_JES_MJB_Stat12: 2.967680028237546e-05 - syst_JES_MJB_Stat13: 3.90173986831516e-05 - syst_JES_MJB_Stat14: 3.613867051718975e-05 - syst_JES_MJB_Stat15: 2.2154408139239468e-05 - syst_JES_MJB_Stat16: 7.401165583879339e-06 - syst_JES_MJB_Stat2: 0.0001465010921460997 - syst_JES_MJB_Stat3: 0.0002328010738806847 - syst_JES_MJB_Stat4: 0.00016493364574882835 - syst_JES_MJB_Stat5: 0.00016127857886278637 - syst_JES_MJB_Stat6: 0.00013217903871264914 - syst_JES_MJB_Stat7: 0.00010290580061395955 - syst_JES_MJB_Stat8: 9.464923190390928e-05 - syst_JES_MJB_Stat9: 5.2705887716648885e-05 - syst_JES_MJB_Threshold: 0.0011140235219689034 - syst_JES_Pileup_MuOffset: 0.0024360777389073607 - syst_JES_Pileup_NPVOffset: 0.0025470213976329288 - syst_JES_Pileup_Pt_term: 0.0022513440430107523 - syst_JES_Pileup_Rho_topology: 0.00443763608242046 - syst_JES_PunchThrough_MC15: 0.0009070323257745559 - syst_JES_SingleParticle_HighPt: 2.3884993196565914e-06 - syst_JES_Zjet_MC: 0.007970393465820869 - syst_JES_Zjet_MuScale: 0.0004939277173838294 - syst_JES_Zjet_MuSmearID: 0.00014990839702965275 - syst_JES_Zjet_MuSmearMS: 0.002258491974747752 - syst_JES_Zjet_OOC: 0.0038095662571347934 - syst_JES_Zjet_Stat1: 0.00020625098181584493 - syst_JES_Zjet_Stat10: 0.00032506902343963813 - syst_JES_Zjet_Stat11: 0.0004110967130736999 - syst_JES_Zjet_Stat12: 0.0014144779955870645 - syst_JES_Zjet_Stat13: 0.0024272380909173288 - syst_JES_Zjet_Stat2: 2.8435989080740624e-05 - syst_JES_Zjet_Stat3: 0.00011958038760599498 - syst_JES_Zjet_Stat4: 0.000125001020295836 - syst_JES_Zjet_Stat5: 0.00011956724091489272 - syst_JES_Zjet_Stat6: 0.00016506598680527738 - syst_JES_Zjet_Stat7: 0.00010539330291816458 - syst_JES_Zjet_Stat8: 0.0001338285649627911 - syst_JES_Zjet_Stat9: 0.0002061568031863125 - syst_JES_Zjet_Veto: 0.0008171915977908731 - syst_JES_Zjet_dPhi: 0.0006754698660932254 + syst_JER_NP8: 2.78839214e-04 + syst_JES_EtaIntercalibration_Modelling: 1.51300264e-02 + syst_JES_EtaIntercalibration_NonClosure: 1.66140927e-04 + syst_JES_EtaIntercalibration_Stat0: 1.79732402e-06 + syst_JES_EtaIntercalibration_Stat1: 1.79732402e-06 + syst_JES_EtaIntercalibration_Stat10: 1.54350347e-05 + syst_JES_EtaIntercalibration_Stat100: 3.35721025e-06 + syst_JES_EtaIntercalibration_Stat101: 1.62123950e-09 + syst_JES_EtaIntercalibration_Stat102: 1.70286846e-10 + syst_JES_EtaIntercalibration_Stat103: 1.16716729e-06 + syst_JES_EtaIntercalibration_Stat104: 1.53362250e-10 + syst_JES_EtaIntercalibration_Stat105: 8.10514165e-10 + syst_JES_EtaIntercalibration_Stat106: 1.29729133e-10 + syst_JES_EtaIntercalibration_Stat107: 1.10063169e-06 + syst_JES_EtaIntercalibration_Stat108: 1.11145700e-06 + syst_JES_EtaIntercalibration_Stat109: 9.21987747e-07 + syst_JES_EtaIntercalibration_Stat11: 1.58222841e-05 + syst_JES_EtaIntercalibration_Stat110: 9.21566103e-07 + syst_JES_EtaIntercalibration_Stat111: 3.28595054e-09 + syst_JES_EtaIntercalibration_Stat112: 1.23713486e-08 + syst_JES_EtaIntercalibration_Stat113: 2.92315480e-06 + syst_JES_EtaIntercalibration_Stat114: 1.81357561e-06 + syst_JES_EtaIntercalibration_Stat115: 2.57138830e-06 + syst_JES_EtaIntercalibration_Stat116: 1.69126246e-06 + syst_JES_EtaIntercalibration_Stat117: 6.00405212e-06 + syst_JES_EtaIntercalibration_Stat118: 1.16881425e-06 + syst_JES_EtaIntercalibration_Stat119: 1.56863569e-06 + syst_JES_EtaIntercalibration_Stat12: 5.28362101e-06 + syst_JES_EtaIntercalibration_Stat120: 1.68114485e-06 + syst_JES_EtaIntercalibration_Stat121: 1.72894008e-07 + syst_JES_EtaIntercalibration_Stat122: 1.16134539e-06 + syst_JES_EtaIntercalibration_Stat123: 4.84945900e-09 + syst_JES_EtaIntercalibration_Stat124: 4.68054131e-09 + syst_JES_EtaIntercalibration_Stat125: 1.72655868e-08 + syst_JES_EtaIntercalibration_Stat126: 7.53097858e-07 + syst_JES_EtaIntercalibration_Stat127: 1.97973407e-10 + syst_JES_EtaIntercalibration_Stat128: 1.72561033e-06 + syst_JES_EtaIntercalibration_Stat129: 1.49418664e-06 + syst_JES_EtaIntercalibration_Stat13: 1.79725331e-06 + syst_JES_EtaIntercalibration_Stat130: 1.39134906e-07 + syst_JES_EtaIntercalibration_Stat131: 2.34573166e-06 + syst_JES_EtaIntercalibration_Stat132: 5.10508037e-06 + syst_JES_EtaIntercalibration_Stat133: 2.86533349e-06 + syst_JES_EtaIntercalibration_Stat134: 1.44145306e-05 + syst_JES_EtaIntercalibration_Stat135: 8.95055769e-06 + syst_JES_EtaIntercalibration_Stat136: 1.53783449e-05 + syst_JES_EtaIntercalibration_Stat137: 4.07145783e-06 + syst_JES_EtaIntercalibration_Stat138: 9.61904086e-06 + syst_JES_EtaIntercalibration_Stat139: 5.40024118e-06 + syst_JES_EtaIntercalibration_Stat14: 1.79725331e-06 + syst_JES_EtaIntercalibration_Stat140: 1.35430536e-05 + syst_JES_EtaIntercalibration_Stat141: 5.61714863e-06 + syst_JES_EtaIntercalibration_Stat142: 1.01625452e-06 + syst_JES_EtaIntercalibration_Stat143: 6.99560207e-08 + syst_JES_EtaIntercalibration_Stat144: 6.09031699e-07 + syst_JES_EtaIntercalibration_Stat145: 5.97865861e-07 + syst_JES_EtaIntercalibration_Stat146: 2.63324509e-06 + syst_JES_EtaIntercalibration_Stat147: 8.62936567e-08 + syst_JES_EtaIntercalibration_Stat148: 4.38885024e-07 + syst_JES_EtaIntercalibration_Stat149: 2.29659356e-06 + syst_JES_EtaIntercalibration_Stat15: 1.10047911e-06 + syst_JES_EtaIntercalibration_Stat150: 5.42054259e-06 + syst_JES_EtaIntercalibration_Stat151: 1.03414833e-05 + syst_JES_EtaIntercalibration_Stat152: 1.04152282e-05 + syst_JES_EtaIntercalibration_Stat153: 1.04065407e-05 + syst_JES_EtaIntercalibration_Stat154: 1.56155083e-05 + syst_JES_EtaIntercalibration_Stat155: 6.62962041e-06 + syst_JES_EtaIntercalibration_Stat156: 1.11645698e-05 + syst_JES_EtaIntercalibration_Stat157: 1.43096782e-05 + syst_JES_EtaIntercalibration_Stat158: 1.46875756e-05 + syst_JES_EtaIntercalibration_Stat159: 6.65818907e-06 + syst_JES_EtaIntercalibration_Stat16: 1.10047911e-06 + syst_JES_EtaIntercalibration_Stat160: 2.14455978e-06 + syst_JES_EtaIntercalibration_Stat161: 1.35351534e-06 + syst_JES_EtaIntercalibration_Stat162: 1.09488189e-06 + syst_JES_EtaIntercalibration_Stat163: 7.94855291e-07 + syst_JES_EtaIntercalibration_Stat164: 1.33855745e-06 + syst_JES_EtaIntercalibration_Stat165: 1.22860059e-06 + syst_JES_EtaIntercalibration_Stat166: 3.45190773e-06 + syst_JES_EtaIntercalibration_Stat167: 8.74672516e-06 + syst_JES_EtaIntercalibration_Stat168: 3.29901250e-06 + syst_JES_EtaIntercalibration_Stat169: 2.10058301e-05 + syst_JES_EtaIntercalibration_Stat17: 1.10076271e-06 + syst_JES_EtaIntercalibration_Stat170: 3.76666740e-05 + syst_JES_EtaIntercalibration_Stat171: 3.48291613e-05 + syst_JES_EtaIntercalibration_Stat172: 1.88698054e-05 + syst_JES_EtaIntercalibration_Stat173: 2.71663666e-05 + syst_JES_EtaIntercalibration_Stat174: 9.13196058e-06 + syst_JES_EtaIntercalibration_Stat175: 1.75793861e-05 + syst_JES_EtaIntercalibration_Stat176: 2.42079383e-05 + syst_JES_EtaIntercalibration_Stat177: 2.45749065e-05 + syst_JES_EtaIntercalibration_Stat178: 2.91863050e-06 + syst_JES_EtaIntercalibration_Stat179: 4.02803187e-06 + syst_JES_EtaIntercalibration_Stat18: 1.10056571e-06 + syst_JES_EtaIntercalibration_Stat180: 6.82539958e-07 + syst_JES_EtaIntercalibration_Stat181: 8.58128965e-08 + syst_JES_EtaIntercalibration_Stat182: 2.45630845e-05 + syst_JES_EtaIntercalibration_Stat183: 2.42910539e-05 + syst_JES_EtaIntercalibration_Stat184: 2.39878094e-05 + syst_JES_EtaIntercalibration_Stat185: 4.68087460e-05 + syst_JES_EtaIntercalibration_Stat186: 7.17718057e-05 + syst_JES_EtaIntercalibration_Stat187: 1.18979297e-04 + syst_JES_EtaIntercalibration_Stat188: 1.18288508e-04 + syst_JES_EtaIntercalibration_Stat189: 1.03898513e-04 + syst_JES_EtaIntercalibration_Stat19: 1.79725331e-06 + syst_JES_EtaIntercalibration_Stat190: 9.21092453e-05 + syst_JES_EtaIntercalibration_Stat191: 1.01985300e-04 + syst_JES_EtaIntercalibration_Stat192: 1.14370051e-04 + syst_JES_EtaIntercalibration_Stat193: 6.54254864e-05 + syst_JES_EtaIntercalibration_Stat194: 6.80984464e-05 + syst_JES_EtaIntercalibration_Stat195: 3.16693716e-05 + syst_JES_EtaIntercalibration_Stat196: 6.66715985e-06 + syst_JES_EtaIntercalibration_Stat197: 6.10252167e-07 + syst_JES_EtaIntercalibration_Stat198: 3.88436608e-05 + syst_JES_EtaIntercalibration_Stat199: 3.93307447e-05 + syst_JES_EtaIntercalibration_Stat2: 1.79732402e-06 + syst_JES_EtaIntercalibration_Stat20: 1.79732402e-06 + syst_JES_EtaIntercalibration_Stat200: 6.72555329e-05 + syst_JES_EtaIntercalibration_Stat201: 1.31591277e-04 + syst_JES_EtaIntercalibration_Stat202: 1.69784297e-04 + syst_JES_EtaIntercalibration_Stat203: 1.90504252e-04 + syst_JES_EtaIntercalibration_Stat204: 1.45278969e-04 + syst_JES_EtaIntercalibration_Stat205: 1.44364323e-04 + syst_JES_EtaIntercalibration_Stat206: 1.71182739e-04 + syst_JES_EtaIntercalibration_Stat207: 1.32861707e-04 + syst_JES_EtaIntercalibration_Stat208: 1.38485592e-04 + syst_JES_EtaIntercalibration_Stat209: 4.13877461e-05 + syst_JES_EtaIntercalibration_Stat21: 1.79732402e-06 + syst_JES_EtaIntercalibration_Stat210: 3.01981854e-05 + syst_JES_EtaIntercalibration_Stat211: 1.39299130e-05 + syst_JES_EtaIntercalibration_Stat212: 1.21494938e-06 + syst_JES_EtaIntercalibration_Stat213: 3.73667472e-05 + syst_JES_EtaIntercalibration_Stat214: 8.51676946e-05 + syst_JES_EtaIntercalibration_Stat215: 1.28883135e-04 + syst_JES_EtaIntercalibration_Stat216: 1.41718637e-04 + syst_JES_EtaIntercalibration_Stat217: 1.02843156e-04 + syst_JES_EtaIntercalibration_Stat218: 9.72728169e-05 + syst_JES_EtaIntercalibration_Stat219: 1.10121376e-04 + syst_JES_EtaIntercalibration_Stat22: 1.79732402e-06 + syst_JES_EtaIntercalibration_Stat220: 1.00041493e-04 + syst_JES_EtaIntercalibration_Stat221: 6.07980680e-05 + syst_JES_EtaIntercalibration_Stat222: 4.30117231e-05 + syst_JES_EtaIntercalibration_Stat223: 9.47990194e-06 + syst_JES_EtaIntercalibration_Stat224: 5.34190331e-06 + syst_JES_EtaIntercalibration_Stat225: 3.70924089e-05 + syst_JES_EtaIntercalibration_Stat226: 9.30004823e-05 + syst_JES_EtaIntercalibration_Stat227: 9.75441377e-05 + syst_JES_EtaIntercalibration_Stat228: 1.07842351e-04 + syst_JES_EtaIntercalibration_Stat229: 7.79375763e-05 + syst_JES_EtaIntercalibration_Stat23: 1.78948374e-06 + syst_JES_EtaIntercalibration_Stat230: 6.71826659e-05 + syst_JES_EtaIntercalibration_Stat231: 1.27265235e-04 + syst_JES_EtaIntercalibration_Stat232: 7.03900652e-05 + syst_JES_EtaIntercalibration_Stat233: 5.73004143e-05 + syst_JES_EtaIntercalibration_Stat234: 7.19291706e-06 + syst_JES_EtaIntercalibration_Stat235: 6.46407938e-06 + syst_JES_EtaIntercalibration_Stat236: 6.73681162e-06 + syst_JES_EtaIntercalibration_Stat237: 4.76796385e-06 + syst_JES_EtaIntercalibration_Stat238: 1.22284962e-06 + syst_JES_EtaIntercalibration_Stat239: 4.96658361e-07 + syst_JES_EtaIntercalibration_Stat24: 1.10047902e-06 + syst_JES_EtaIntercalibration_Stat240: 1.27879301e-05 + syst_JES_EtaIntercalibration_Stat241: 5.77617485e-06 + syst_JES_EtaIntercalibration_Stat242: 3.21531549e-06 + syst_JES_EtaIntercalibration_Stat243: 1.58897195e-05 + syst_JES_EtaIntercalibration_Stat244: 1.12233979e-05 + syst_JES_EtaIntercalibration_Stat245: 3.52699949e-06 + syst_JES_EtaIntercalibration_Stat25: 1.29752669e-09 + syst_JES_EtaIntercalibration_Stat26: 3.24137810e-10 + syst_JES_EtaIntercalibration_Stat27: 3.31562373e-10 + syst_JES_EtaIntercalibration_Stat28: 3.25270657e-10 + syst_JES_EtaIntercalibration_Stat29: 3.14850661e-06 + syst_JES_EtaIntercalibration_Stat3: 1.79732402e-06 + syst_JES_EtaIntercalibration_Stat30: 3.28529862e-10 + syst_JES_EtaIntercalibration_Stat31: 5.95825477e-07 + syst_JES_EtaIntercalibration_Stat32: 7.69636778e-06 + syst_JES_EtaIntercalibration_Stat33: 1.58136238e-05 + syst_JES_EtaIntercalibration_Stat34: 7.69463575e-06 + syst_JES_EtaIntercalibration_Stat35: 2.03685642e-10 + syst_JES_EtaIntercalibration_Stat36: 1.51733792e-06 + syst_JES_EtaIntercalibration_Stat37: 1.12559376e-06 + syst_JES_EtaIntercalibration_Stat38: 3.27051108e-10 + syst_JES_EtaIntercalibration_Stat39: 3.27122286e-10 + syst_JES_EtaIntercalibration_Stat4: 1.79732402e-06 + syst_JES_EtaIntercalibration_Stat40: 1.10030605e-06 + syst_JES_EtaIntercalibration_Stat41: 1.79725331e-06 + syst_JES_EtaIntercalibration_Stat42: 1.79725331e-06 + syst_JES_EtaIntercalibration_Stat43: 1.79732402e-06 + syst_JES_EtaIntercalibration_Stat44: 1.79732402e-06 + syst_JES_EtaIntercalibration_Stat45: 1.79732402e-06 + syst_JES_EtaIntercalibration_Stat46: 3.27614114e-10 + syst_JES_EtaIntercalibration_Stat47: 2.07607587e-10 + syst_JES_EtaIntercalibration_Stat48: 1.30671051e-09 + syst_JES_EtaIntercalibration_Stat49: 1.09961022e-06 + syst_JES_EtaIntercalibration_Stat5: 1.79725331e-06 + syst_JES_EtaIntercalibration_Stat50: 1.76928999e-09 + syst_JES_EtaIntercalibration_Stat51: 3.73180583e-06 + syst_JES_EtaIntercalibration_Stat52: 3.03801713e-06 + syst_JES_EtaIntercalibration_Stat53: 6.38800861e-07 + syst_JES_EtaIntercalibration_Stat54: 7.69550174e-06 + syst_JES_EtaIntercalibration_Stat55: 7.69463697e-06 + syst_JES_EtaIntercalibration_Stat56: 7.69550176e-06 + syst_JES_EtaIntercalibration_Stat57: 7.77082666e-10 + syst_JES_EtaIntercalibration_Stat58: 1.29817646e-10 + syst_JES_EtaIntercalibration_Stat59: 7.14903969e-07 + syst_JES_EtaIntercalibration_Stat6: 1.92517446e-06 + syst_JES_EtaIntercalibration_Stat60: 1.77239215e-06 + syst_JES_EtaIntercalibration_Stat61: 1.97539916e-10 + syst_JES_EtaIntercalibration_Stat62: 1.09814098e-06 + syst_JES_EtaIntercalibration_Stat63: 3.23289360e-10 + syst_JES_EtaIntercalibration_Stat64: 1.79725331e-06 + syst_JES_EtaIntercalibration_Stat65: 1.79732402e-06 + syst_JES_EtaIntercalibration_Stat66: 1.79732402e-06 + syst_JES_EtaIntercalibration_Stat67: 1.79718260e-06 + syst_JES_EtaIntercalibration_Stat68: 5.82469304e-15 + syst_JES_EtaIntercalibration_Stat69: 1.08682745e-06 + syst_JES_EtaIntercalibration_Stat7: 1.10056389e-06 + syst_JES_EtaIntercalibration_Stat70: 8.71741174e-07 + syst_JES_EtaIntercalibration_Stat71: 3.91084629e-06 + syst_JES_EtaIntercalibration_Stat72: 2.98951970e-06 + syst_JES_EtaIntercalibration_Stat73: 3.03715112e-06 + syst_JES_EtaIntercalibration_Stat74: 8.83778956e-07 + syst_JES_EtaIntercalibration_Stat75: 9.05256350e-06 + syst_JES_EtaIntercalibration_Stat76: 7.69463573e-06 + syst_JES_EtaIntercalibration_Stat77: 9.45613136e-07 + syst_JES_EtaIntercalibration_Stat78: 6.70347671e-07 + syst_JES_EtaIntercalibration_Stat79: 4.68779564e-06 + syst_JES_EtaIntercalibration_Stat8: 2.02980488e-10 + syst_JES_EtaIntercalibration_Stat80: 6.78357695e-06 + syst_JES_EtaIntercalibration_Stat81: 1.47959318e-10 + syst_JES_EtaIntercalibration_Stat82: 1.09428723e-10 + syst_JES_EtaIntercalibration_Stat83: 2.95336215e-10 + syst_JES_EtaIntercalibration_Stat84: 1.97280382e-10 + syst_JES_EtaIntercalibration_Stat85: 1.97628154e-10 + syst_JES_EtaIntercalibration_Stat86: 1.10063169e-06 + syst_JES_EtaIntercalibration_Stat87: 1.10063169e-06 + syst_JES_EtaIntercalibration_Stat88: 1.98233205e-10 + syst_JES_EtaIntercalibration_Stat89: 1.07006095e-06 + syst_JES_EtaIntercalibration_Stat9: 5.28441932e-06 + syst_JES_EtaIntercalibration_Stat90: 1.94393936e-09 + syst_JES_EtaIntercalibration_Stat91: 1.97065746e-09 + syst_JES_EtaIntercalibration_Stat92: 2.72452052e-09 + syst_JES_EtaIntercalibration_Stat93: 3.03281751e-06 + syst_JES_EtaIntercalibration_Stat94: 3.70493104e-06 + syst_JES_EtaIntercalibration_Stat95: 8.97448976e-07 + syst_JES_EtaIntercalibration_Stat96: 7.69489893e-06 + syst_JES_EtaIntercalibration_Stat97: 7.32920412e-06 + syst_JES_EtaIntercalibration_Stat98: 7.54562559e-06 + syst_JES_EtaIntercalibration_Stat99: 7.64440624e-06 + syst_JES_EtaIntercalibration_TotalStat_MJB: 3.21391362e-03 + syst_JES_Flavour_Comp: 9.59903011e-03 + syst_JES_Flavour_Response: 3.78926267e-03 + syst_JES_Gjet_Generator: 1.44266654e-02 + syst_JES_Gjet_OOC: 1.15409307e-02 + syst_JES_Gjet_Purity: 2.96855937e-03 + syst_JES_Gjet_Stat1: 3.81196367e-05 + syst_JES_Gjet_Stat10: 3.19247506e-04 + syst_JES_Gjet_Stat11: 4.07144261e-04 + syst_JES_Gjet_Stat12: 1.25788834e-03 + syst_JES_Gjet_Stat13: 3.24614402e-03 + syst_JES_Gjet_Stat14: 4.50751603e-03 + syst_JES_Gjet_Stat15: 1.05621927e-04 + syst_JES_Gjet_Stat2: 7.43769028e-05 + syst_JES_Gjet_Stat3: 5.67597311e-05 + syst_JES_Gjet_Stat4: 6.66069689e-05 + syst_JES_Gjet_Stat5: 7.64379623e-05 + syst_JES_Gjet_Stat6: 1.19533210e-04 + syst_JES_Gjet_Stat7: 1.54563676e-04 + syst_JES_Gjet_Stat8: 1.33035023e-04 + syst_JES_Gjet_Stat9: 2.02238770e-04 + syst_JES_Gjet_Veto: 1.02021985e-02 + syst_JES_Gjet_dPhi: 1.07162145e-03 + syst_JES_LArESZee: 2.19595190e-02 + syst_JES_LArEsmear: 1.71004737e-03 + syst_JES_LAr_JVT: 2.12325805e-03 + syst_JES_MJB_Alpha: 1.56795633e-04 + syst_JES_MJB_Asym: 9.98952982e-04 + syst_JES_MJB_Beta: 1.53720550e-04 + syst_JES_MJB_Fragmentation: 2.14146492e-03 + syst_JES_MJB_Stat1: 5.34808012e-05 + syst_JES_MJB_Stat10: 3.90397368e-05 + syst_JES_MJB_Stat11: 1.33394517e-05 + syst_JES_MJB_Stat12: 2.96768003e-05 + syst_JES_MJB_Stat13: 3.90173987e-05 + syst_JES_MJB_Stat14: 3.61386705e-05 + syst_JES_MJB_Stat15: 2.21544081e-05 + syst_JES_MJB_Stat16: 7.40116558e-06 + syst_JES_MJB_Stat2: 1.46501092e-04 + syst_JES_MJB_Stat3: 2.32801074e-04 + syst_JES_MJB_Stat4: 1.64933646e-04 + syst_JES_MJB_Stat5: 1.61278579e-04 + syst_JES_MJB_Stat6: 1.32179039e-04 + syst_JES_MJB_Stat7: 1.02905801e-04 + syst_JES_MJB_Stat8: 9.46492319e-05 + syst_JES_MJB_Stat9: 5.27058877e-05 + syst_JES_MJB_Threshold: 1.11402352e-03 + syst_JES_Pileup_MuOffset: 2.43607774e-03 + syst_JES_Pileup_NPVOffset: 2.54702140e-03 + syst_JES_Pileup_Pt_term: 2.25134404e-03 + syst_JES_Pileup_Rho_topology: 4.43763608e-03 + syst_JES_PunchThrough_MC15: 9.07032326e-04 + syst_JES_SingleParticle_HighPt: 2.38849932e-06 + syst_JES_Zjet_MC: 7.97039347e-03 + syst_JES_Zjet_MuScale: 4.93927717e-04 + syst_JES_Zjet_MuSmearID: 1.49908397e-04 + syst_JES_Zjet_MuSmearMS: 2.25849197e-03 + syst_JES_Zjet_OOC: 3.80956626e-03 + syst_JES_Zjet_Stat1: 2.06250982e-04 + syst_JES_Zjet_Stat10: 3.25069023e-04 + syst_JES_Zjet_Stat11: 4.11096713e-04 + syst_JES_Zjet_Stat12: 1.41447800e-03 + syst_JES_Zjet_Stat13: 2.42723809e-03 + syst_JES_Zjet_Stat2: 2.84359891e-05 + syst_JES_Zjet_Stat3: 1.19580388e-04 + syst_JES_Zjet_Stat4: 1.25001020e-04 + syst_JES_Zjet_Stat5: 1.19567241e-04 + syst_JES_Zjet_Stat6: 1.65065987e-04 + syst_JES_Zjet_Stat7: 1.05393303e-04 + syst_JES_Zjet_Stat8: 1.33828565e-04 + syst_JES_Zjet_Stat9: 2.06156803e-04 + syst_JES_Zjet_Veto: 8.17191598e-04 + syst_JES_Zjet_dPhi: 6.75469866e-04 syst_PRW: 0.0 syst_Unfolding_bias: 0.0 - syst_cleaning: 0.006953317966985258 + syst_cleaning: 6.95331797e-03 syst_lumi: 0.01488 -- stat: 0.0016367 - syst_JER_CROSS_CALIB_FORWARD: 1.578e-16 - syst_JER_NOISE_FORWARD: 1.2174e-16 - syst_JER_NP0: 0.0006621507607788426 - syst_JER_NP1: 7.20251567162474e-05 - syst_JER_NP2: 0.00037560532477588755 - syst_JER_NP3: 8.745509976553684e-05 - syst_JER_NP4: 4.751249204156734e-05 +- stat: 1.63670000e-03 + syst_JER_CROSS_CALIB_FORWARD: 1.57800000e-16 + syst_JER_NOISE_FORWARD: 1.21740000e-16 + syst_JER_NP0: 6.62150761e-04 + syst_JER_NP1: 7.20251567e-05 + syst_JER_NP2: 3.75605325e-04 + syst_JER_NP3: 8.74550998e-05 + syst_JER_NP4: 4.75124920e-05 syst_JER_NP5: 0.0 - syst_JER_NP6: 8.542355807972412e-16 + syst_JER_NP6: 8.54235581e-16 syst_JER_NP7: 0.0 - syst_JER_NP8: 0.00012091739577083193 - syst_JES_EtaIntercalibration_Modelling: 0.00839492172387569 - syst_JES_EtaIntercalibration_NonClosure: 6.672179104310674e-05 - syst_JES_EtaIntercalibration_Stat0: 9.538870478206525e-07 - syst_JES_EtaIntercalibration_Stat1: 9.538870478206525e-07 - syst_JES_EtaIntercalibration_Stat10: 8.189775410840032e-06 - syst_JES_EtaIntercalibration_Stat100: 1.7925798205834516e-06 - syst_JES_EtaIntercalibration_Stat101: 1.0296474088307477e-10 - syst_JES_EtaIntercalibration_Stat102: 9.74387893756896e-12 - syst_JES_EtaIntercalibration_Stat103: 6.195559606751507e-07 - syst_JES_EtaIntercalibration_Stat104: 8.230760900427129e-12 - syst_JES_EtaIntercalibration_Stat105: 4.6410391080865723e-11 - syst_JES_EtaIntercalibration_Stat106: 7.427795624655344e-12 - syst_JES_EtaIntercalibration_Stat107: 5.841341348525964e-07 - syst_JES_EtaIntercalibration_Stat108: 5.898499025175812e-07 - syst_JES_EtaIntercalibration_Stat109: 1.433767476200903e-07 - syst_JES_EtaIntercalibration_Stat11: 8.395250263129917e-06 - syst_JES_EtaIntercalibration_Stat110: 1.4335901375047019e-07 - syst_JES_EtaIntercalibration_Stat111: 2.113508404685205e-10 - syst_JES_EtaIntercalibration_Stat112: 1.0030460701283865e-09 - syst_JES_EtaIntercalibration_Stat113: 1.0782987016592387e-06 - syst_JES_EtaIntercalibration_Stat114: 8.416207979250512e-07 - syst_JES_EtaIntercalibration_Stat115: 2.1262489106405206e-06 - syst_JES_EtaIntercalibration_Stat116: 8.913566738405003e-07 - syst_JES_EtaIntercalibration_Stat117: 3.5126550054766267e-06 - syst_JES_EtaIntercalibration_Stat118: 5.38153070696433e-07 - syst_JES_EtaIntercalibration_Stat119: 1.169552563028646e-06 - syst_JES_EtaIntercalibration_Stat12: 2.804190258613909e-06 - syst_JES_EtaIntercalibration_Stat120: 4.019781679395039e-07 - syst_JES_EtaIntercalibration_Stat121: 1.7965814955075097e-08 - syst_JES_EtaIntercalibration_Stat122: 2.0816393239149574e-07 - syst_JES_EtaIntercalibration_Stat123: 3.094334804121881e-10 - syst_JES_EtaIntercalibration_Stat124: 2.987843253502432e-10 - syst_JES_EtaIntercalibration_Stat125: 1.1098629509989058e-09 - syst_JES_EtaIntercalibration_Stat126: 3.995842474573331e-07 - syst_JES_EtaIntercalibration_Stat127: 1.1020173263156982e-11 - syst_JES_EtaIntercalibration_Stat128: 9.183073927068211e-07 - syst_JES_EtaIntercalibration_Stat129: 7.622195402244683e-07 - syst_JES_EtaIntercalibration_Stat13: 9.538163384530587e-07 - syst_JES_EtaIntercalibration_Stat130: 1.397345351013843e-08 - syst_JES_EtaIntercalibration_Stat131: 8.872571386018826e-07 - syst_JES_EtaIntercalibration_Stat132: 1.395253517469406e-06 - syst_JES_EtaIntercalibration_Stat133: 9.793817131231316e-07 - syst_JES_EtaIntercalibration_Stat134: 6.2486816209501345e-06 - syst_JES_EtaIntercalibration_Stat135: 3.6734057041797054e-06 - syst_JES_EtaIntercalibration_Stat136: 4.023587297959372e-06 - syst_JES_EtaIntercalibration_Stat137: 2.126107240945292e-06 - syst_JES_EtaIntercalibration_Stat138: 4.579102177283228e-06 - syst_JES_EtaIntercalibration_Stat139: 2.5414496783332146e-06 - syst_JES_EtaIntercalibration_Stat14: 9.538163384530587e-07 - syst_JES_EtaIntercalibration_Stat140: 3.815996953615136e-06 - syst_JES_EtaIntercalibration_Stat141: 1.4064942970023022e-06 - syst_JES_EtaIntercalibration_Stat142: 5.163400720455464e-07 - syst_JES_EtaIntercalibration_Stat143: 4.654687833786493e-09 - syst_JES_EtaIntercalibration_Stat144: 6.780655130590259e-08 - syst_JES_EtaIntercalibration_Stat145: 3.170746631191566e-07 - syst_JES_EtaIntercalibration_Stat146: 1.4413564722163633e-06 - syst_JES_EtaIntercalibration_Stat147: 8.566163327915421e-09 - syst_JES_EtaIntercalibration_Stat148: 9.51903624323387e-08 - syst_JES_EtaIntercalibration_Stat149: 1.0391764094704997e-06 - syst_JES_EtaIntercalibration_Stat15: 5.841304627085613e-07 - syst_JES_EtaIntercalibration_Stat150: 1.4295218501345125e-06 - syst_JES_EtaIntercalibration_Stat151: 4.1053744043631396e-06 - syst_JES_EtaIntercalibration_Stat152: 6.0898311142428246e-06 - syst_JES_EtaIntercalibration_Stat153: 3.37804706894383e-06 - syst_JES_EtaIntercalibration_Stat154: 3.959496068946147e-06 - syst_JES_EtaIntercalibration_Stat155: 1.0680168350733054e-06 - syst_JES_EtaIntercalibration_Stat156: 4.183088183387962e-06 - syst_JES_EtaIntercalibration_Stat157: 4.0834023497568795e-06 - syst_JES_EtaIntercalibration_Stat158: 3.3518460835038353e-06 - syst_JES_EtaIntercalibration_Stat159: 1.6383624347194977e-06 - syst_JES_EtaIntercalibration_Stat16: 5.841304627085613e-07 - syst_JES_EtaIntercalibration_Stat160: 1.1402535639058534e-06 - syst_JES_EtaIntercalibration_Stat161: 5.247029566097374e-07 - syst_JES_EtaIntercalibration_Stat162: 6.03849181232367e-07 - syst_JES_EtaIntercalibration_Stat163: 4.34571548874003e-07 - syst_JES_EtaIntercalibration_Stat164: 4.475171078352536e-07 - syst_JES_EtaIntercalibration_Stat165: 2.3045319497676747e-07 - syst_JES_EtaIntercalibration_Stat166: 4.040286483344962e-07 - syst_JES_EtaIntercalibration_Stat167: 4.157022251564213e-06 - syst_JES_EtaIntercalibration_Stat168: 1.5312681411170286e-06 - syst_JES_EtaIntercalibration_Stat169: 7.689249833371265e-06 - syst_JES_EtaIntercalibration_Stat17: 5.840601225202539e-07 - syst_JES_EtaIntercalibration_Stat170: 9.800898071095322e-06 - syst_JES_EtaIntercalibration_Stat171: 1.193349219633549e-05 - syst_JES_EtaIntercalibration_Stat172: 7.859783457576933e-06 - syst_JES_EtaIntercalibration_Stat173: 9.762533725934063e-06 - syst_JES_EtaIntercalibration_Stat174: 2.975998109878432e-06 - syst_JES_EtaIntercalibration_Stat175: 6.675699570082524e-06 - syst_JES_EtaIntercalibration_Stat176: 6.495813420965845e-06 - syst_JES_EtaIntercalibration_Stat177: 5.372247458001166e-06 - syst_JES_EtaIntercalibration_Stat178: 6.560007983989044e-07 - syst_JES_EtaIntercalibration_Stat179: 1.1794224720175548e-06 - syst_JES_EtaIntercalibration_Stat18: 5.841304627085613e-07 - syst_JES_EtaIntercalibration_Stat180: 1.6598207455927281e-07 - syst_JES_EtaIntercalibration_Stat181: 7.716688084923479e-09 - syst_JES_EtaIntercalibration_Stat182: 6.811342424955598e-06 - syst_JES_EtaIntercalibration_Stat183: 6.935053424451753e-06 - syst_JES_EtaIntercalibration_Stat184: 7.680252339604474e-06 - syst_JES_EtaIntercalibration_Stat185: 1.4492235852345213e-05 - syst_JES_EtaIntercalibration_Stat186: 2.471672864680923e-05 - syst_JES_EtaIntercalibration_Stat187: 3.598069030744129e-05 - syst_JES_EtaIntercalibration_Stat188: 3.431892772217687e-05 - syst_JES_EtaIntercalibration_Stat189: 3.37029627777737e-05 - syst_JES_EtaIntercalibration_Stat19: 9.538163384530587e-07 - syst_JES_EtaIntercalibration_Stat190: 2.9747431821923723e-05 - syst_JES_EtaIntercalibration_Stat191: 3.354731099507083e-05 - syst_JES_EtaIntercalibration_Stat192: 3.598193539819669e-05 - syst_JES_EtaIntercalibration_Stat193: 2.013237877152126e-05 - syst_JES_EtaIntercalibration_Stat194: 1.8660771688223397e-05 - syst_JES_EtaIntercalibration_Stat195: 6.321949442221126e-06 - syst_JES_EtaIntercalibration_Stat196: 6.826685739617724e-07 - syst_JES_EtaIntercalibration_Stat197: 8.824227671586903e-07 - syst_JES_EtaIntercalibration_Stat198: 1.4089529330321862e-05 - syst_JES_EtaIntercalibration_Stat199: 1.3347058880142848e-05 - syst_JES_EtaIntercalibration_Stat2: 9.538870478206525e-07 - syst_JES_EtaIntercalibration_Stat20: 9.538870478206525e-07 - syst_JES_EtaIntercalibration_Stat200: 2.6353153037160465e-05 - syst_JES_EtaIntercalibration_Stat201: 3.939488640674067e-05 - syst_JES_EtaIntercalibration_Stat202: 5.61770985366813e-05 - syst_JES_EtaIntercalibration_Stat203: 6.290099601755126e-05 - syst_JES_EtaIntercalibration_Stat204: 5.560872301177218e-05 - syst_JES_EtaIntercalibration_Stat205: 5.082483743210596e-05 - syst_JES_EtaIntercalibration_Stat206: 6.018584115055633e-05 - syst_JES_EtaIntercalibration_Stat207: 4.782192462668142e-05 - syst_JES_EtaIntercalibration_Stat208: 4.619744662857462e-05 - syst_JES_EtaIntercalibration_Stat209: 1.5656343378963044e-05 - syst_JES_EtaIntercalibration_Stat21: 9.538870478206525e-07 - syst_JES_EtaIntercalibration_Stat210: 1.1042128327455718e-05 - syst_JES_EtaIntercalibration_Stat211: 2.8808666664738237e-06 - syst_JES_EtaIntercalibration_Stat212: 6.447560491124852e-07 - syst_JES_EtaIntercalibration_Stat213: 1.729485214594216e-05 - syst_JES_EtaIntercalibration_Stat214: 3.410990178819048e-05 - syst_JES_EtaIntercalibration_Stat215: 5.186818678149449e-05 - syst_JES_EtaIntercalibration_Stat216: 5.8273165994306505e-05 - syst_JES_EtaIntercalibration_Stat217: 4.172438216438921e-05 - syst_JES_EtaIntercalibration_Stat218: 4.2913614949104436e-05 - syst_JES_EtaIntercalibration_Stat219: 5.532169624116744e-05 - syst_JES_EtaIntercalibration_Stat22: 9.538870478206525e-07 - syst_JES_EtaIntercalibration_Stat220: 4.492278569946437e-05 - syst_JES_EtaIntercalibration_Stat221: 2.6832856724545747e-05 - syst_JES_EtaIntercalibration_Stat222: 1.8381069086154917e-05 - syst_JES_EtaIntercalibration_Stat223: 4.683095343893823e-06 - syst_JES_EtaIntercalibration_Stat224: 1.15117756232477e-06 - syst_JES_EtaIntercalibration_Stat225: 2.8796765443361865e-05 - syst_JES_EtaIntercalibration_Stat226: 5.532442679323483e-05 - syst_JES_EtaIntercalibration_Stat227: 8.119116746912807e-05 - syst_JES_EtaIntercalibration_Stat228: 7.566941852558403e-05 - syst_JES_EtaIntercalibration_Stat229: 6.30268377359994e-05 - syst_JES_EtaIntercalibration_Stat23: 9.497196994376814e-07 - syst_JES_EtaIntercalibration_Stat230: 6.924837759832355e-05 - syst_JES_EtaIntercalibration_Stat231: 0.00010855101231679049 - syst_JES_EtaIntercalibration_Stat232: 7.106170980211495e-05 - syst_JES_EtaIntercalibration_Stat233: 4.873566353298167e-05 - syst_JES_EtaIntercalibration_Stat234: 1.6694285519527332e-05 - syst_JES_EtaIntercalibration_Stat235: 3.431196309921595e-06 - syst_JES_EtaIntercalibration_Stat236: 9.229232728130762e-06 - syst_JES_EtaIntercalibration_Stat237: 1.0340658441317941e-05 - syst_JES_EtaIntercalibration_Stat238: 7.0121356768105965e-06 - syst_JES_EtaIntercalibration_Stat239: 7.164889885232013e-06 - syst_JES_EtaIntercalibration_Stat24: 5.840438541063238e-07 - syst_JES_EtaIntercalibration_Stat240: 5.0940248330764935e-06 - syst_JES_EtaIntercalibration_Stat241: 2.4892351855690535e-06 - syst_JES_EtaIntercalibration_Stat242: 3.0394923918312416e-06 - syst_JES_EtaIntercalibration_Stat243: 1.2916770746591424e-05 - syst_JES_EtaIntercalibration_Stat244: 6.240562855223878e-06 - syst_JES_EtaIntercalibration_Stat245: 4.68706355301483e-06 - syst_JES_EtaIntercalibration_Stat25: 8.571534926721118e-11 - syst_JES_EtaIntercalibration_Stat26: 1.803688254660433e-11 - syst_JES_EtaIntercalibration_Stat27: 1.8471043771265335e-11 - syst_JES_EtaIntercalibration_Stat28: 1.8097771520272876e-11 - syst_JES_EtaIntercalibration_Stat29: 1.0517496660327495e-06 - syst_JES_EtaIntercalibration_Stat3: 9.538870478206525e-07 - syst_JES_EtaIntercalibration_Stat30: 1.8294757391121643e-11 - syst_JES_EtaIntercalibration_Stat31: 3.1618587485175255e-07 - syst_JES_EtaIntercalibration_Stat32: 4.084175805312913e-06 - syst_JES_EtaIntercalibration_Stat33: 8.394384236794865e-06 - syst_JES_EtaIntercalibration_Stat34: 4.0841758067181835e-06 - syst_JES_EtaIntercalibration_Stat35: 1.1346935117942643e-11 - syst_JES_EtaIntercalibration_Stat36: 8.051999379036241e-07 - syst_JES_EtaIntercalibration_Stat37: 5.97553850403266e-07 - syst_JES_EtaIntercalibration_Stat38: 1.8207445757162096e-11 - syst_JES_EtaIntercalibration_Stat39: 1.8214555800238445e-11 - syst_JES_EtaIntercalibration_Stat4: 9.538870478206525e-07 - syst_JES_EtaIntercalibration_Stat40: 5.839572651330081e-07 - syst_JES_EtaIntercalibration_Stat41: 9.538163384530587e-07 - syst_JES_EtaIntercalibration_Stat42: 9.538163384530587e-07 - syst_JES_EtaIntercalibration_Stat43: 9.538870478206525e-07 - syst_JES_EtaIntercalibration_Stat44: 9.538870478206525e-07 - syst_JES_EtaIntercalibration_Stat45: 9.538870478206525e-07 - syst_JES_EtaIntercalibration_Stat46: 1.8245461983737218e-11 - syst_JES_EtaIntercalibration_Stat47: 1.1664605308367702e-11 - syst_JES_EtaIntercalibration_Stat48: 8.621160125383359e-11 - syst_JES_EtaIntercalibration_Stat49: 5.833843129693863e-07 - syst_JES_EtaIntercalibration_Stat5: 9.538163384530587e-07 - syst_JES_EtaIntercalibration_Stat50: 1.1197709408549944e-10 - syst_JES_EtaIntercalibration_Stat51: 1.1463695597406623e-06 - syst_JES_EtaIntercalibration_Stat52: 6.076900265020914e-07 - syst_JES_EtaIntercalibration_Stat53: 3.39045267442666e-07 - syst_JES_EtaIntercalibration_Stat54: 4.084175804166093e-06 - syst_JES_EtaIntercalibration_Stat55: 4.08417587736883e-06 - syst_JES_EtaIntercalibration_Stat56: 4.084175805931832e-06 - syst_JES_EtaIntercalibration_Stat57: 4.449624749237614e-11 - syst_JES_EtaIntercalibration_Stat58: 7.435733752834247e-12 - syst_JES_EtaIntercalibration_Stat59: 3.794923318146726e-07 - syst_JES_EtaIntercalibration_Stat6: 2.0490161154460646e-07 - syst_JES_EtaIntercalibration_Stat60: 9.406465967620358e-07 - syst_JES_EtaIntercalibration_Stat61: 1.0993284185383216e-11 - syst_JES_EtaIntercalibration_Stat62: 5.82831432108266e-07 - syst_JES_EtaIntercalibration_Stat63: 1.799092840155838e-11 - syst_JES_EtaIntercalibration_Stat64: 9.538163384530587e-07 - syst_JES_EtaIntercalibration_Stat65: 9.538870478206525e-07 - syst_JES_EtaIntercalibration_Stat66: 9.538870478206525e-07 - syst_JES_EtaIntercalibration_Stat67: 9.537456264644152e-07 - syst_JES_EtaIntercalibration_Stat68: 3.9622518888505817e-16 - syst_JES_EtaIntercalibration_Stat69: 5.767759061926138e-07 - syst_JES_EtaIntercalibration_Stat7: 5.841303570588521e-07 - syst_JES_EtaIntercalibration_Stat70: 4.628039759783856e-07 - syst_JES_EtaIntercalibration_Stat71: 2.075045080695056e-06 - syst_JES_EtaIntercalibration_Stat72: 6.022340660147291e-07 - syst_JES_EtaIntercalibration_Stat73: 6.069106052783603e-07 - syst_JES_EtaIntercalibration_Stat74: 4.70511604187796e-07 - syst_JES_EtaIntercalibration_Stat75: 4.805574962762173e-06 - syst_JES_EtaIntercalibration_Stat76: 4.084175805628724e-06 - syst_JES_EtaIntercalibration_Stat77: 5.019483239291335e-07 - syst_JES_EtaIntercalibration_Stat78: 7.970791852131129e-07 - syst_JES_EtaIntercalibration_Stat79: 2.4880909929390896e-06 - syst_JES_EtaIntercalibration_Stat8: 1.1307556355559178e-11 - syst_JES_EtaIntercalibration_Stat80: 3.6000676008677288e-06 - syst_JES_EtaIntercalibration_Stat81: 8.474298688829655e-12 - syst_JES_EtaIntercalibration_Stat82: 5.870587515199898e-12 - syst_JES_EtaIntercalibration_Stat83: 1.6198137763335637e-11 - syst_JES_EtaIntercalibration_Stat84: 1.097771623511879e-11 - syst_JES_EtaIntercalibration_Stat85: 1.0999470726256326e-11 - syst_JES_EtaIntercalibration_Stat86: 5.841341348525916e-07 - syst_JES_EtaIntercalibration_Stat87: 5.841341348526039e-07 - syst_JES_EtaIntercalibration_Stat88: 1.1034894642800854e-11 - syst_JES_EtaIntercalibration_Stat89: 5.679394571731591e-07 - syst_JES_EtaIntercalibration_Stat9: 2.8041864865110134e-06 - syst_JES_EtaIntercalibration_Stat90: 1.222139646301731e-10 - syst_JES_EtaIntercalibration_Stat91: 1.2384577046636473e-10 - syst_JES_EtaIntercalibration_Stat92: 1.72599265881886e-10 - syst_JES_EtaIntercalibration_Stat93: 6.049185519107584e-07 - syst_JES_EtaIntercalibration_Stat94: 1.144962824724017e-06 - syst_JES_EtaIntercalibration_Stat95: 4.799488293005828e-07 - syst_JES_EtaIntercalibration_Stat96: 4.084190873311828e-06 - syst_JES_EtaIntercalibration_Stat97: 3.890221611618033e-06 - syst_JES_EtaIntercalibration_Stat98: 4.00895228582232e-06 - syst_JES_EtaIntercalibration_Stat99: 4.064257220392517e-06 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0018473131840594868 - syst_JES_Flavour_Comp: 0.0054442793829854105 - syst_JES_Flavour_Response: 0.0016413463985399303 - syst_JES_Gjet_Generator: 0.007840114460261406 - syst_JES_Gjet_OOC: 0.006357304204613776 - syst_JES_Gjet_Purity: 0.0014470885529227298 - syst_JES_Gjet_Stat1: 2.5821999825729996e-05 - syst_JES_Gjet_Stat10: 0.00014269271836712624 - syst_JES_Gjet_Stat11: 0.00017468148156000966 - syst_JES_Gjet_Stat12: 0.0005653535088774101 - syst_JES_Gjet_Stat13: 0.0016443742730899193 - syst_JES_Gjet_Stat14: 0.0030164296776155745 - syst_JES_Gjet_Stat15: 0.0007917231397401494 - syst_JES_Gjet_Stat2: 3.935779814725412e-05 - syst_JES_Gjet_Stat3: 4.074653604909256e-05 - syst_JES_Gjet_Stat4: 3.5399497171570105e-05 - syst_JES_Gjet_Stat5: 4.212714415908109e-05 - syst_JES_Gjet_Stat6: 5.915625981246617e-05 - syst_JES_Gjet_Stat7: 7.549872234018269e-05 - syst_JES_Gjet_Stat8: 6.09540244774699e-05 - syst_JES_Gjet_Stat9: 9.558866355379178e-05 - syst_JES_Gjet_Veto: 0.005920488556698678 - syst_JES_Gjet_dPhi: 0.0005991691810332037 - syst_JES_LArESZee: 0.01200740424696362 - syst_JES_LArEsmear: 0.0009327198011728925 - syst_JES_LAr_JVT: 0.0011506156037095969 - syst_JES_MJB_Alpha: 6.787044570356084e-05 - syst_JES_MJB_Asym: 0.0006696535372862597 - syst_JES_MJB_Beta: 7.608019190301769e-05 - syst_JES_MJB_Fragmentation: 0.001036115978064232 - syst_JES_MJB_Stat1: 1.8095913924143208e-05 - syst_JES_MJB_Stat10: 4.7098140090666e-05 - syst_JES_MJB_Stat11: 2.3994013315825264e-05 - syst_JES_MJB_Stat12: 1.7767307639313276e-05 - syst_JES_MJB_Stat13: 1.60539827768688e-05 - syst_JES_MJB_Stat14: 2.398533510293321e-05 - syst_JES_MJB_Stat15: 2.2072079081953288e-05 - syst_JES_MJB_Stat16: 1.1893236439254034e-05 - syst_JES_MJB_Stat2: 5.3301539142880294e-05 - syst_JES_MJB_Stat3: 9.397386179145772e-05 - syst_JES_MJB_Stat4: 7.089504690033007e-05 - syst_JES_MJB_Stat5: 7.541426572605476e-05 - syst_JES_MJB_Stat6: 6.464772695153325e-05 - syst_JES_MJB_Stat7: 6.751169009882658e-05 - syst_JES_MJB_Stat8: 6.571508559683995e-05 - syst_JES_MJB_Stat9: 5.3455816334614146e-05 - syst_JES_MJB_Threshold: 0.0006323894745329021 - syst_JES_Pileup_MuOffset: 0.0013822729352410833 - syst_JES_Pileup_NPVOffset: 0.0014301439394340696 - syst_JES_Pileup_Pt_term: 0.0011788345802104722 - syst_JES_Pileup_Rho_topology: 0.002330649909360048 - syst_JES_PunchThrough_MC15: 0.0006425041069907648 - syst_JES_SingleParticle_HighPt: 1.2676109448486157e-06 - syst_JES_Zjet_MC: 0.003858529523017804 - syst_JES_Zjet_MuScale: 0.00023611084261422643 - syst_JES_Zjet_MuSmearID: 6.74081157947617e-05 - syst_JES_Zjet_MuSmearMS: 0.0010727371625892336 - syst_JES_Zjet_OOC: 0.0019358178504187836 - syst_JES_Zjet_Stat1: 9.815888446798895e-05 - syst_JES_Zjet_Stat10: 0.00015205580390106785 - syst_JES_Zjet_Stat11: 0.00019594889001982126 - syst_JES_Zjet_Stat12: 0.0006463095601180598 - syst_JES_Zjet_Stat13: 0.0011611195373431623 - syst_JES_Zjet_Stat2: 1.4267160719638648e-05 - syst_JES_Zjet_Stat3: 6.302768022861067e-05 - syst_JES_Zjet_Stat4: 6.430559851210469e-05 - syst_JES_Zjet_Stat5: 6.447524699448618e-05 - syst_JES_Zjet_Stat6: 8.035420710827779e-05 - syst_JES_Zjet_Stat7: 6.136607613331652e-05 - syst_JES_Zjet_Stat8: 6.710227045339076e-05 - syst_JES_Zjet_Stat9: 9.824559570281002e-05 - syst_JES_Zjet_Veto: 0.0003981962012626439 - syst_JES_Zjet_dPhi: 0.00032970344250553404 + syst_JER_NP8: 1.20917396e-04 + syst_JES_EtaIntercalibration_Modelling: 8.39492172e-03 + syst_JES_EtaIntercalibration_NonClosure: 6.67217910e-05 + syst_JES_EtaIntercalibration_Stat0: 9.53887048e-07 + syst_JES_EtaIntercalibration_Stat1: 9.53887048e-07 + syst_JES_EtaIntercalibration_Stat10: 8.18977541e-06 + syst_JES_EtaIntercalibration_Stat100: 1.79257982e-06 + syst_JES_EtaIntercalibration_Stat101: 1.02964741e-10 + syst_JES_EtaIntercalibration_Stat102: 9.74387894e-12 + syst_JES_EtaIntercalibration_Stat103: 6.19555961e-07 + syst_JES_EtaIntercalibration_Stat104: 8.23076090e-12 + syst_JES_EtaIntercalibration_Stat105: 4.64103911e-11 + syst_JES_EtaIntercalibration_Stat106: 7.42779562e-12 + syst_JES_EtaIntercalibration_Stat107: 5.84134135e-07 + syst_JES_EtaIntercalibration_Stat108: 5.89849903e-07 + syst_JES_EtaIntercalibration_Stat109: 1.43376748e-07 + syst_JES_EtaIntercalibration_Stat11: 8.39525026e-06 + syst_JES_EtaIntercalibration_Stat110: 1.43359014e-07 + syst_JES_EtaIntercalibration_Stat111: 2.11350840e-10 + syst_JES_EtaIntercalibration_Stat112: 1.00304607e-09 + syst_JES_EtaIntercalibration_Stat113: 1.07829870e-06 + syst_JES_EtaIntercalibration_Stat114: 8.41620798e-07 + syst_JES_EtaIntercalibration_Stat115: 2.12624891e-06 + syst_JES_EtaIntercalibration_Stat116: 8.91356674e-07 + syst_JES_EtaIntercalibration_Stat117: 3.51265501e-06 + syst_JES_EtaIntercalibration_Stat118: 5.38153071e-07 + syst_JES_EtaIntercalibration_Stat119: 1.16955256e-06 + syst_JES_EtaIntercalibration_Stat12: 2.80419026e-06 + syst_JES_EtaIntercalibration_Stat120: 4.01978168e-07 + syst_JES_EtaIntercalibration_Stat121: 1.79658150e-08 + syst_JES_EtaIntercalibration_Stat122: 2.08163932e-07 + syst_JES_EtaIntercalibration_Stat123: 3.09433480e-10 + syst_JES_EtaIntercalibration_Stat124: 2.98784325e-10 + syst_JES_EtaIntercalibration_Stat125: 1.10986295e-09 + syst_JES_EtaIntercalibration_Stat126: 3.99584247e-07 + syst_JES_EtaIntercalibration_Stat127: 1.10201733e-11 + syst_JES_EtaIntercalibration_Stat128: 9.18307393e-07 + syst_JES_EtaIntercalibration_Stat129: 7.62219540e-07 + syst_JES_EtaIntercalibration_Stat13: 9.53816338e-07 + syst_JES_EtaIntercalibration_Stat130: 1.39734535e-08 + syst_JES_EtaIntercalibration_Stat131: 8.87257139e-07 + syst_JES_EtaIntercalibration_Stat132: 1.39525352e-06 + syst_JES_EtaIntercalibration_Stat133: 9.79381713e-07 + syst_JES_EtaIntercalibration_Stat134: 6.24868162e-06 + syst_JES_EtaIntercalibration_Stat135: 3.67340570e-06 + syst_JES_EtaIntercalibration_Stat136: 4.02358730e-06 + syst_JES_EtaIntercalibration_Stat137: 2.12610724e-06 + syst_JES_EtaIntercalibration_Stat138: 4.57910218e-06 + syst_JES_EtaIntercalibration_Stat139: 2.54144968e-06 + syst_JES_EtaIntercalibration_Stat14: 9.53816338e-07 + syst_JES_EtaIntercalibration_Stat140: 3.81599695e-06 + syst_JES_EtaIntercalibration_Stat141: 1.40649430e-06 + syst_JES_EtaIntercalibration_Stat142: 5.16340072e-07 + syst_JES_EtaIntercalibration_Stat143: 4.65468783e-09 + syst_JES_EtaIntercalibration_Stat144: 6.78065513e-08 + syst_JES_EtaIntercalibration_Stat145: 3.17074663e-07 + syst_JES_EtaIntercalibration_Stat146: 1.44135647e-06 + syst_JES_EtaIntercalibration_Stat147: 8.56616333e-09 + syst_JES_EtaIntercalibration_Stat148: 9.51903624e-08 + syst_JES_EtaIntercalibration_Stat149: 1.03917641e-06 + syst_JES_EtaIntercalibration_Stat15: 5.84130463e-07 + syst_JES_EtaIntercalibration_Stat150: 1.42952185e-06 + syst_JES_EtaIntercalibration_Stat151: 4.10537440e-06 + syst_JES_EtaIntercalibration_Stat152: 6.08983111e-06 + syst_JES_EtaIntercalibration_Stat153: 3.37804707e-06 + syst_JES_EtaIntercalibration_Stat154: 3.95949607e-06 + syst_JES_EtaIntercalibration_Stat155: 1.06801684e-06 + syst_JES_EtaIntercalibration_Stat156: 4.18308818e-06 + syst_JES_EtaIntercalibration_Stat157: 4.08340235e-06 + syst_JES_EtaIntercalibration_Stat158: 3.35184608e-06 + syst_JES_EtaIntercalibration_Stat159: 1.63836243e-06 + syst_JES_EtaIntercalibration_Stat16: 5.84130463e-07 + syst_JES_EtaIntercalibration_Stat160: 1.14025356e-06 + syst_JES_EtaIntercalibration_Stat161: 5.24702957e-07 + syst_JES_EtaIntercalibration_Stat162: 6.03849181e-07 + syst_JES_EtaIntercalibration_Stat163: 4.34571549e-07 + syst_JES_EtaIntercalibration_Stat164: 4.47517108e-07 + syst_JES_EtaIntercalibration_Stat165: 2.30453195e-07 + syst_JES_EtaIntercalibration_Stat166: 4.04028648e-07 + syst_JES_EtaIntercalibration_Stat167: 4.15702225e-06 + syst_JES_EtaIntercalibration_Stat168: 1.53126814e-06 + syst_JES_EtaIntercalibration_Stat169: 7.68924983e-06 + syst_JES_EtaIntercalibration_Stat17: 5.84060123e-07 + syst_JES_EtaIntercalibration_Stat170: 9.80089807e-06 + syst_JES_EtaIntercalibration_Stat171: 1.19334922e-05 + syst_JES_EtaIntercalibration_Stat172: 7.85978346e-06 + syst_JES_EtaIntercalibration_Stat173: 9.76253373e-06 + syst_JES_EtaIntercalibration_Stat174: 2.97599811e-06 + syst_JES_EtaIntercalibration_Stat175: 6.67569957e-06 + syst_JES_EtaIntercalibration_Stat176: 6.49581342e-06 + syst_JES_EtaIntercalibration_Stat177: 5.37224746e-06 + syst_JES_EtaIntercalibration_Stat178: 6.56000798e-07 + syst_JES_EtaIntercalibration_Stat179: 1.17942247e-06 + syst_JES_EtaIntercalibration_Stat18: 5.84130463e-07 + syst_JES_EtaIntercalibration_Stat180: 1.65982075e-07 + syst_JES_EtaIntercalibration_Stat181: 7.71668808e-09 + syst_JES_EtaIntercalibration_Stat182: 6.81134242e-06 + syst_JES_EtaIntercalibration_Stat183: 6.93505342e-06 + syst_JES_EtaIntercalibration_Stat184: 7.68025234e-06 + syst_JES_EtaIntercalibration_Stat185: 1.44922359e-05 + syst_JES_EtaIntercalibration_Stat186: 2.47167286e-05 + syst_JES_EtaIntercalibration_Stat187: 3.59806903e-05 + syst_JES_EtaIntercalibration_Stat188: 3.43189277e-05 + syst_JES_EtaIntercalibration_Stat189: 3.37029628e-05 + syst_JES_EtaIntercalibration_Stat19: 9.53816338e-07 + syst_JES_EtaIntercalibration_Stat190: 2.97474318e-05 + syst_JES_EtaIntercalibration_Stat191: 3.35473110e-05 + syst_JES_EtaIntercalibration_Stat192: 3.59819354e-05 + syst_JES_EtaIntercalibration_Stat193: 2.01323788e-05 + syst_JES_EtaIntercalibration_Stat194: 1.86607717e-05 + syst_JES_EtaIntercalibration_Stat195: 6.32194944e-06 + syst_JES_EtaIntercalibration_Stat196: 6.82668574e-07 + syst_JES_EtaIntercalibration_Stat197: 8.82422767e-07 + syst_JES_EtaIntercalibration_Stat198: 1.40895293e-05 + syst_JES_EtaIntercalibration_Stat199: 1.33470589e-05 + syst_JES_EtaIntercalibration_Stat2: 9.53887048e-07 + syst_JES_EtaIntercalibration_Stat20: 9.53887048e-07 + syst_JES_EtaIntercalibration_Stat200: 2.63531530e-05 + syst_JES_EtaIntercalibration_Stat201: 3.93948864e-05 + syst_JES_EtaIntercalibration_Stat202: 5.61770985e-05 + syst_JES_EtaIntercalibration_Stat203: 6.29009960e-05 + syst_JES_EtaIntercalibration_Stat204: 5.56087230e-05 + syst_JES_EtaIntercalibration_Stat205: 5.08248374e-05 + syst_JES_EtaIntercalibration_Stat206: 6.01858412e-05 + syst_JES_EtaIntercalibration_Stat207: 4.78219246e-05 + syst_JES_EtaIntercalibration_Stat208: 4.61974466e-05 + syst_JES_EtaIntercalibration_Stat209: 1.56563434e-05 + syst_JES_EtaIntercalibration_Stat21: 9.53887048e-07 + syst_JES_EtaIntercalibration_Stat210: 1.10421283e-05 + syst_JES_EtaIntercalibration_Stat211: 2.88086667e-06 + syst_JES_EtaIntercalibration_Stat212: 6.44756049e-07 + syst_JES_EtaIntercalibration_Stat213: 1.72948521e-05 + syst_JES_EtaIntercalibration_Stat214: 3.41099018e-05 + syst_JES_EtaIntercalibration_Stat215: 5.18681868e-05 + syst_JES_EtaIntercalibration_Stat216: 5.82731660e-05 + syst_JES_EtaIntercalibration_Stat217: 4.17243822e-05 + syst_JES_EtaIntercalibration_Stat218: 4.29136149e-05 + syst_JES_EtaIntercalibration_Stat219: 5.53216962e-05 + syst_JES_EtaIntercalibration_Stat22: 9.53887048e-07 + syst_JES_EtaIntercalibration_Stat220: 4.49227857e-05 + syst_JES_EtaIntercalibration_Stat221: 2.68328567e-05 + syst_JES_EtaIntercalibration_Stat222: 1.83810691e-05 + syst_JES_EtaIntercalibration_Stat223: 4.68309534e-06 + syst_JES_EtaIntercalibration_Stat224: 1.15117756e-06 + syst_JES_EtaIntercalibration_Stat225: 2.87967654e-05 + syst_JES_EtaIntercalibration_Stat226: 5.53244268e-05 + syst_JES_EtaIntercalibration_Stat227: 8.11911675e-05 + syst_JES_EtaIntercalibration_Stat228: 7.56694185e-05 + syst_JES_EtaIntercalibration_Stat229: 6.30268377e-05 + syst_JES_EtaIntercalibration_Stat23: 9.49719699e-07 + syst_JES_EtaIntercalibration_Stat230: 6.92483776e-05 + syst_JES_EtaIntercalibration_Stat231: 1.08551012e-04 + syst_JES_EtaIntercalibration_Stat232: 7.10617098e-05 + syst_JES_EtaIntercalibration_Stat233: 4.87356635e-05 + syst_JES_EtaIntercalibration_Stat234: 1.66942855e-05 + syst_JES_EtaIntercalibration_Stat235: 3.43119631e-06 + syst_JES_EtaIntercalibration_Stat236: 9.22923273e-06 + syst_JES_EtaIntercalibration_Stat237: 1.03406584e-05 + syst_JES_EtaIntercalibration_Stat238: 7.01213568e-06 + syst_JES_EtaIntercalibration_Stat239: 7.16488989e-06 + syst_JES_EtaIntercalibration_Stat24: 5.84043854e-07 + syst_JES_EtaIntercalibration_Stat240: 5.09402483e-06 + syst_JES_EtaIntercalibration_Stat241: 2.48923519e-06 + syst_JES_EtaIntercalibration_Stat242: 3.03949239e-06 + syst_JES_EtaIntercalibration_Stat243: 1.29167707e-05 + syst_JES_EtaIntercalibration_Stat244: 6.24056286e-06 + syst_JES_EtaIntercalibration_Stat245: 4.68706355e-06 + syst_JES_EtaIntercalibration_Stat25: 8.57153493e-11 + syst_JES_EtaIntercalibration_Stat26: 1.80368825e-11 + syst_JES_EtaIntercalibration_Stat27: 1.84710438e-11 + syst_JES_EtaIntercalibration_Stat28: 1.80977715e-11 + syst_JES_EtaIntercalibration_Stat29: 1.05174967e-06 + syst_JES_EtaIntercalibration_Stat3: 9.53887048e-07 + syst_JES_EtaIntercalibration_Stat30: 1.82947574e-11 + syst_JES_EtaIntercalibration_Stat31: 3.16185875e-07 + syst_JES_EtaIntercalibration_Stat32: 4.08417581e-06 + syst_JES_EtaIntercalibration_Stat33: 8.39438424e-06 + syst_JES_EtaIntercalibration_Stat34: 4.08417581e-06 + syst_JES_EtaIntercalibration_Stat35: 1.13469351e-11 + syst_JES_EtaIntercalibration_Stat36: 8.05199938e-07 + syst_JES_EtaIntercalibration_Stat37: 5.97553850e-07 + syst_JES_EtaIntercalibration_Stat38: 1.82074458e-11 + syst_JES_EtaIntercalibration_Stat39: 1.82145558e-11 + syst_JES_EtaIntercalibration_Stat4: 9.53887048e-07 + syst_JES_EtaIntercalibration_Stat40: 5.83957265e-07 + syst_JES_EtaIntercalibration_Stat41: 9.53816338e-07 + syst_JES_EtaIntercalibration_Stat42: 9.53816338e-07 + syst_JES_EtaIntercalibration_Stat43: 9.53887048e-07 + syst_JES_EtaIntercalibration_Stat44: 9.53887048e-07 + syst_JES_EtaIntercalibration_Stat45: 9.53887048e-07 + syst_JES_EtaIntercalibration_Stat46: 1.82454620e-11 + syst_JES_EtaIntercalibration_Stat47: 1.16646053e-11 + syst_JES_EtaIntercalibration_Stat48: 8.62116013e-11 + syst_JES_EtaIntercalibration_Stat49: 5.83384313e-07 + syst_JES_EtaIntercalibration_Stat5: 9.53816338e-07 + syst_JES_EtaIntercalibration_Stat50: 1.11977094e-10 + syst_JES_EtaIntercalibration_Stat51: 1.14636956e-06 + syst_JES_EtaIntercalibration_Stat52: 6.07690027e-07 + syst_JES_EtaIntercalibration_Stat53: 3.39045267e-07 + syst_JES_EtaIntercalibration_Stat54: 4.08417580e-06 + syst_JES_EtaIntercalibration_Stat55: 4.08417588e-06 + syst_JES_EtaIntercalibration_Stat56: 4.08417581e-06 + syst_JES_EtaIntercalibration_Stat57: 4.44962475e-11 + syst_JES_EtaIntercalibration_Stat58: 7.43573375e-12 + syst_JES_EtaIntercalibration_Stat59: 3.79492332e-07 + syst_JES_EtaIntercalibration_Stat6: 2.04901612e-07 + syst_JES_EtaIntercalibration_Stat60: 9.40646597e-07 + syst_JES_EtaIntercalibration_Stat61: 1.09932842e-11 + syst_JES_EtaIntercalibration_Stat62: 5.82831432e-07 + syst_JES_EtaIntercalibration_Stat63: 1.79909284e-11 + syst_JES_EtaIntercalibration_Stat64: 9.53816338e-07 + syst_JES_EtaIntercalibration_Stat65: 9.53887048e-07 + syst_JES_EtaIntercalibration_Stat66: 9.53887048e-07 + syst_JES_EtaIntercalibration_Stat67: 9.53745626e-07 + syst_JES_EtaIntercalibration_Stat68: 3.96225189e-16 + syst_JES_EtaIntercalibration_Stat69: 5.76775906e-07 + syst_JES_EtaIntercalibration_Stat7: 5.84130357e-07 + syst_JES_EtaIntercalibration_Stat70: 4.62803976e-07 + syst_JES_EtaIntercalibration_Stat71: 2.07504508e-06 + syst_JES_EtaIntercalibration_Stat72: 6.02234066e-07 + syst_JES_EtaIntercalibration_Stat73: 6.06910605e-07 + syst_JES_EtaIntercalibration_Stat74: 4.70511604e-07 + syst_JES_EtaIntercalibration_Stat75: 4.80557496e-06 + syst_JES_EtaIntercalibration_Stat76: 4.08417581e-06 + syst_JES_EtaIntercalibration_Stat77: 5.01948324e-07 + syst_JES_EtaIntercalibration_Stat78: 7.97079185e-07 + syst_JES_EtaIntercalibration_Stat79: 2.48809099e-06 + syst_JES_EtaIntercalibration_Stat8: 1.13075564e-11 + syst_JES_EtaIntercalibration_Stat80: 3.60006760e-06 + syst_JES_EtaIntercalibration_Stat81: 8.47429869e-12 + syst_JES_EtaIntercalibration_Stat82: 5.87058752e-12 + syst_JES_EtaIntercalibration_Stat83: 1.61981378e-11 + syst_JES_EtaIntercalibration_Stat84: 1.09777162e-11 + syst_JES_EtaIntercalibration_Stat85: 1.09994707e-11 + syst_JES_EtaIntercalibration_Stat86: 5.84134135e-07 + syst_JES_EtaIntercalibration_Stat87: 5.84134135e-07 + syst_JES_EtaIntercalibration_Stat88: 1.10348946e-11 + syst_JES_EtaIntercalibration_Stat89: 5.67939457e-07 + syst_JES_EtaIntercalibration_Stat9: 2.80418649e-06 + syst_JES_EtaIntercalibration_Stat90: 1.22213965e-10 + syst_JES_EtaIntercalibration_Stat91: 1.23845770e-10 + syst_JES_EtaIntercalibration_Stat92: 1.72599266e-10 + syst_JES_EtaIntercalibration_Stat93: 6.04918552e-07 + syst_JES_EtaIntercalibration_Stat94: 1.14496282e-06 + syst_JES_EtaIntercalibration_Stat95: 4.79948829e-07 + syst_JES_EtaIntercalibration_Stat96: 4.08419087e-06 + syst_JES_EtaIntercalibration_Stat97: 3.89022161e-06 + syst_JES_EtaIntercalibration_Stat98: 4.00895229e-06 + syst_JES_EtaIntercalibration_Stat99: 4.06425722e-06 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.84731318e-03 + syst_JES_Flavour_Comp: 5.44427938e-03 + syst_JES_Flavour_Response: 1.64134640e-03 + syst_JES_Gjet_Generator: 7.84011446e-03 + syst_JES_Gjet_OOC: 6.35730420e-03 + syst_JES_Gjet_Purity: 1.44708855e-03 + syst_JES_Gjet_Stat1: 2.58219998e-05 + syst_JES_Gjet_Stat10: 1.42692718e-04 + syst_JES_Gjet_Stat11: 1.74681482e-04 + syst_JES_Gjet_Stat12: 5.65353509e-04 + syst_JES_Gjet_Stat13: 1.64437427e-03 + syst_JES_Gjet_Stat14: 3.01642968e-03 + syst_JES_Gjet_Stat15: 7.91723140e-04 + syst_JES_Gjet_Stat2: 3.93577981e-05 + syst_JES_Gjet_Stat3: 4.07465360e-05 + syst_JES_Gjet_Stat4: 3.53994972e-05 + syst_JES_Gjet_Stat5: 4.21271442e-05 + syst_JES_Gjet_Stat6: 5.91562598e-05 + syst_JES_Gjet_Stat7: 7.54987223e-05 + syst_JES_Gjet_Stat8: 6.09540245e-05 + syst_JES_Gjet_Stat9: 9.55886636e-05 + syst_JES_Gjet_Veto: 5.92048856e-03 + syst_JES_Gjet_dPhi: 5.99169181e-04 + syst_JES_LArESZee: 1.20074042e-02 + syst_JES_LArEsmear: 9.32719801e-04 + syst_JES_LAr_JVT: 1.15061560e-03 + syst_JES_MJB_Alpha: 6.78704457e-05 + syst_JES_MJB_Asym: 6.69653537e-04 + syst_JES_MJB_Beta: 7.60801919e-05 + syst_JES_MJB_Fragmentation: 1.03611598e-03 + syst_JES_MJB_Stat1: 1.80959139e-05 + syst_JES_MJB_Stat10: 4.70981401e-05 + syst_JES_MJB_Stat11: 2.39940133e-05 + syst_JES_MJB_Stat12: 1.77673076e-05 + syst_JES_MJB_Stat13: 1.60539828e-05 + syst_JES_MJB_Stat14: 2.39853351e-05 + syst_JES_MJB_Stat15: 2.20720791e-05 + syst_JES_MJB_Stat16: 1.18932364e-05 + syst_JES_MJB_Stat2: 5.33015391e-05 + syst_JES_MJB_Stat3: 9.39738618e-05 + syst_JES_MJB_Stat4: 7.08950469e-05 + syst_JES_MJB_Stat5: 7.54142657e-05 + syst_JES_MJB_Stat6: 6.46477270e-05 + syst_JES_MJB_Stat7: 6.75116901e-05 + syst_JES_MJB_Stat8: 6.57150856e-05 + syst_JES_MJB_Stat9: 5.34558163e-05 + syst_JES_MJB_Threshold: 6.32389475e-04 + syst_JES_Pileup_MuOffset: 1.38227294e-03 + syst_JES_Pileup_NPVOffset: 1.43014394e-03 + syst_JES_Pileup_Pt_term: 1.17883458e-03 + syst_JES_Pileup_Rho_topology: 2.33064991e-03 + syst_JES_PunchThrough_MC15: 6.42504107e-04 + syst_JES_SingleParticle_HighPt: 1.26761094e-06 + syst_JES_Zjet_MC: 3.85852952e-03 + syst_JES_Zjet_MuScale: 2.36110843e-04 + syst_JES_Zjet_MuSmearID: 6.74081158e-05 + syst_JES_Zjet_MuSmearMS: 1.07273716e-03 + syst_JES_Zjet_OOC: 1.93581785e-03 + syst_JES_Zjet_Stat1: 9.81588845e-05 + syst_JES_Zjet_Stat10: 1.52055804e-04 + syst_JES_Zjet_Stat11: 1.95948890e-04 + syst_JES_Zjet_Stat12: 6.46309560e-04 + syst_JES_Zjet_Stat13: 1.16111954e-03 + syst_JES_Zjet_Stat2: 1.42671607e-05 + syst_JES_Zjet_Stat3: 6.30276802e-05 + syst_JES_Zjet_Stat4: 6.43055985e-05 + syst_JES_Zjet_Stat5: 6.44752470e-05 + syst_JES_Zjet_Stat6: 8.03542071e-05 + syst_JES_Zjet_Stat7: 6.13660761e-05 + syst_JES_Zjet_Stat8: 6.71022705e-05 + syst_JES_Zjet_Stat9: 9.82455957e-05 + syst_JES_Zjet_Veto: 3.98196201e-04 + syst_JES_Zjet_dPhi: 3.29703443e-04 syst_PRW: 0.0 syst_Unfolding_bias: 0.0 - syst_cleaning: 0.0037871290907493505 + syst_cleaning: 3.78712909e-03 syst_lumi: 0.007898 -- stat: 0.0010628 - syst_JER_CROSS_CALIB_FORWARD: 1.953e-17 - syst_JER_NOISE_FORWARD: 1.498e-17 - syst_JER_NP0: 0.00032049097881219687 - syst_JER_NP1: 3.950964027930398e-05 - syst_JER_NP2: 0.00021101390357035717 - syst_JER_NP3: 3.1674175600952895e-05 - syst_JER_NP4: 2.5491454940822817e-05 - syst_JER_NP5: 8.934771793392375e-35 - syst_JER_NP6: 7.135539993581425e-12 - syst_JER_NP7: 5.67766254721078e-35 - syst_JER_NP8: 6.16450685375562e-05 - syst_JES_EtaIntercalibration_Modelling: 0.004608003472220914 - syst_JES_EtaIntercalibration_NonClosure: 2.0882472913905574e-05 - syst_JES_EtaIntercalibration_Stat0: 5.118038882228231e-07 - syst_JES_EtaIntercalibration_Stat1: 5.118038882228231e-07 - syst_JES_EtaIntercalibration_Stat10: 4.3948018931460385e-06 - syst_JES_EtaIntercalibration_Stat100: 9.633163776675384e-07 - syst_JES_EtaIntercalibration_Stat101: 6.361220397013907e-12 - syst_JES_EtaIntercalibration_Stat102: 5.818413701345066e-13 - syst_JES_EtaIntercalibration_Stat103: 3.3248455835337906e-07 - syst_JES_EtaIntercalibration_Stat104: 5.166584171384418e-13 - syst_JES_EtaIntercalibration_Stat105: 2.785147357774751e-12 - syst_JES_EtaIntercalibration_Stat106: 4.4582129910364177e-13 - syst_JES_EtaIntercalibration_Stat107: 3.1341459362959026e-07 - syst_JES_EtaIntercalibration_Stat108: 3.165322850832123e-07 - syst_JES_EtaIntercalibration_Stat109: 1.5880614571436555e-08 - syst_JES_EtaIntercalibration_Stat11: 4.505064150401289e-06 - syst_JES_EtaIntercalibration_Stat110: 1.5879499868048767e-08 - syst_JES_EtaIntercalibration_Stat111: 1.3111084507678987e-11 - syst_JES_EtaIntercalibration_Stat112: 6.990642897473738e-11 - syst_JES_EtaIntercalibration_Stat113: 2.521579415763065e-07 - syst_JES_EtaIntercalibration_Stat114: 2.7498336731518877e-07 - syst_JES_EtaIntercalibration_Stat115: 1.0507744620040974e-06 - syst_JES_EtaIntercalibration_Stat116: 4.77995635440325e-07 - syst_JES_EtaIntercalibration_Stat117: 1.9209087452297157e-06 - syst_JES_EtaIntercalibration_Stat118: 4.142317316430502e-07 - syst_JES_EtaIntercalibration_Stat119: 8.544197514528702e-07 - syst_JES_EtaIntercalibration_Stat12: 1.504286126459191e-06 - syst_JES_EtaIntercalibration_Stat120: 2.5119048548860283e-07 - syst_JES_EtaIntercalibration_Stat121: 1.4934527737762584e-09 - syst_JES_EtaIntercalibration_Stat122: 2.4582145668171443e-08 - syst_JES_EtaIntercalibration_Stat123: 1.919908005608602e-11 - syst_JES_EtaIntercalibration_Stat124: 1.8544263587427782e-11 - syst_JES_EtaIntercalibration_Stat125: 6.908356009210874e-11 - syst_JES_EtaIntercalibration_Stat126: 2.1442789838036151e-07 - syst_JES_EtaIntercalibration_Stat127: 6.741141743058071e-13 - syst_JES_EtaIntercalibration_Stat128: 5.079024538973995e-07 - syst_JES_EtaIntercalibration_Stat129: 4.1338558481972973e-07 - syst_JES_EtaIntercalibration_Stat13: 5.118038882228231e-07 - syst_JES_EtaIntercalibration_Stat130: 1.136406999054476e-09 - syst_JES_EtaIntercalibration_Stat131: 2.15432669470069e-07 - syst_JES_EtaIntercalibration_Stat132: 1.2885483214656716e-07 - syst_JES_EtaIntercalibration_Stat133: 1.2982420190395933e-06 - syst_JES_EtaIntercalibration_Stat134: 1.6450741221902435e-06 - syst_JES_EtaIntercalibration_Stat135: 6.845356236164777e-07 - syst_JES_EtaIntercalibration_Stat136: 6.468870593078826e-07 - syst_JES_EtaIntercalibration_Stat137: 9.308614974849911e-07 - syst_JES_EtaIntercalibration_Stat138: 1.5365720325451716e-06 - syst_JES_EtaIntercalibration_Stat139: 9.406378407761406e-07 - syst_JES_EtaIntercalibration_Stat14: 5.118038882228231e-07 - syst_JES_EtaIntercalibration_Stat140: 8.66634898616482e-07 - syst_JES_EtaIntercalibration_Stat141: 2.5330309290452813e-07 - syst_JES_EtaIntercalibration_Stat142: 2.8730269751605183e-07 - syst_JES_EtaIntercalibration_Stat143: 2.9822766471271573e-10 - syst_JES_EtaIntercalibration_Stat144: 5.82187598352112e-09 - syst_JES_EtaIntercalibration_Stat145: 1.7017534894873743e-07 - syst_JES_EtaIntercalibration_Stat146: 7.904869430926737e-07 - syst_JES_EtaIntercalibration_Stat147: 6.959291002111852e-10 - syst_JES_EtaIntercalibration_Stat148: 2.531244887402244e-08 - syst_JES_EtaIntercalibration_Stat149: 5.998582901819395e-07 - syst_JES_EtaIntercalibration_Stat15: 3.1341436895437533e-07 - syst_JES_EtaIntercalibration_Stat150: 1.317376881292138e-07 - syst_JES_EtaIntercalibration_Stat151: 1.3307476207004844e-06 - syst_JES_EtaIntercalibration_Stat152: 1.732251145186517e-06 - syst_JES_EtaIntercalibration_Stat153: 8.784102103658633e-07 - syst_JES_EtaIntercalibration_Stat154: 7.105160026347049e-07 - syst_JES_EtaIntercalibration_Stat155: 4.514669158144371e-07 - syst_JES_EtaIntercalibration_Stat156: 1.1447465789422566e-06 - syst_JES_EtaIntercalibration_Stat157: 1.118058960878182e-06 - syst_JES_EtaIntercalibration_Stat158: 9.121012443802496e-07 - syst_JES_EtaIntercalibration_Stat159: 2.804523394001198e-07 - syst_JES_EtaIntercalibration_Stat16: 3.1341436895437533e-07 - syst_JES_EtaIntercalibration_Stat160: 6.11709692174319e-07 - syst_JES_EtaIntercalibration_Stat161: 2.658722562419921e-07 - syst_JES_EtaIntercalibration_Stat162: 3.2621255245546195e-07 - syst_JES_EtaIntercalibration_Stat163: 2.3456761989812233e-07 - syst_JES_EtaIntercalibration_Stat164: 1.841088443312018e-07 - syst_JES_EtaIntercalibration_Stat165: 3.241285307944983e-08 - syst_JES_EtaIntercalibration_Stat166: 1.6976098808324602e-07 - syst_JES_EtaIntercalibration_Stat167: 1.2636398567234259e-06 - syst_JES_EtaIntercalibration_Stat168: 6.204383233448752e-07 - syst_JES_EtaIntercalibration_Stat169: 3.144170209689673e-06 - syst_JES_EtaIntercalibration_Stat17: 3.134153427487246e-07 - syst_JES_EtaIntercalibration_Stat170: 2.542374187152631e-06 - syst_JES_EtaIntercalibration_Stat171: 3.648997499314024e-06 - syst_JES_EtaIntercalibration_Stat172: 2.5359601731888454e-06 - syst_JES_EtaIntercalibration_Stat173: 3.319697739252777e-06 - syst_JES_EtaIntercalibration_Stat174: 1.4235920307447636e-06 - syst_JES_EtaIntercalibration_Stat175: 2.306103897811198e-06 - syst_JES_EtaIntercalibration_Stat176: 2.581696099466395e-06 - syst_JES_EtaIntercalibration_Stat177: 1.4158957615234253e-06 - syst_JES_EtaIntercalibration_Stat178: 3.0225647333845475e-07 - syst_JES_EtaIntercalibration_Stat179: 4.205658914878856e-07 - syst_JES_EtaIntercalibration_Stat18: 3.1341436895437533e-07 - syst_JES_EtaIntercalibration_Stat180: 2.7487826614703458e-08 - syst_JES_EtaIntercalibration_Stat181: 6.041221130698661e-10 - syst_JES_EtaIntercalibration_Stat182: 1.0206007936504851e-06 - syst_JES_EtaIntercalibration_Stat183: 1.9433766361670606e-06 - syst_JES_EtaIntercalibration_Stat184: 2.1915332532270645e-06 - syst_JES_EtaIntercalibration_Stat185: 4.546577749252728e-06 - syst_JES_EtaIntercalibration_Stat186: 8.39919429171632e-06 - syst_JES_EtaIntercalibration_Stat187: 1.275156849175818e-05 - syst_JES_EtaIntercalibration_Stat188: 1.1132573231288442e-05 - syst_JES_EtaIntercalibration_Stat189: 1.1797727620181779e-05 - syst_JES_EtaIntercalibration_Stat19: 5.118038882228231e-07 - syst_JES_EtaIntercalibration_Stat190: 1.008370352350762e-05 - syst_JES_EtaIntercalibration_Stat191: 1.3692921529023673e-05 - syst_JES_EtaIntercalibration_Stat192: 1.2563812349362753e-05 - syst_JES_EtaIntercalibration_Stat193: 8.422553294577601e-06 - syst_JES_EtaIntercalibration_Stat194: 5.35416312321543e-06 - syst_JES_EtaIntercalibration_Stat195: 6.720764911823653e-07 - syst_JES_EtaIntercalibration_Stat196: 7.126792245239088e-08 - syst_JES_EtaIntercalibration_Stat197: 4.084723246439102e-07 - syst_JES_EtaIntercalibration_Stat198: 4.2819260853032015e-06 - syst_JES_EtaIntercalibration_Stat199: 5.630879749204381e-06 - syst_JES_EtaIntercalibration_Stat2: 5.118038882228231e-07 - syst_JES_EtaIntercalibration_Stat20: 5.118038882228231e-07 - syst_JES_EtaIntercalibration_Stat200: 9.886546009603151e-06 - syst_JES_EtaIntercalibration_Stat201: 1.386658439378638e-05 - syst_JES_EtaIntercalibration_Stat202: 2.2815435564547088e-05 - syst_JES_EtaIntercalibration_Stat203: 2.2940437550317126e-05 - syst_JES_EtaIntercalibration_Stat204: 2.4142800168994483e-05 - syst_JES_EtaIntercalibration_Stat205: 1.9593613755507175e-05 - syst_JES_EtaIntercalibration_Stat206: 2.8132359925893168e-05 - syst_JES_EtaIntercalibration_Stat207: 1.9700045685226213e-05 - syst_JES_EtaIntercalibration_Stat208: 1.8535099136503156e-05 - syst_JES_EtaIntercalibration_Stat209: 6.2304424200854316e-06 - syst_JES_EtaIntercalibration_Stat21: 5.118038882228231e-07 - syst_JES_EtaIntercalibration_Stat210: 3.1113715625106558e-06 - syst_JES_EtaIntercalibration_Stat211: 8.185872021354841e-07 - syst_JES_EtaIntercalibration_Stat212: 3.459944783612651e-07 - syst_JES_EtaIntercalibration_Stat213: 5.243493182030468e-06 - syst_JES_EtaIntercalibration_Stat214: 1.2609971530499185e-05 - syst_JES_EtaIntercalibration_Stat215: 2.357325179096003e-05 - syst_JES_EtaIntercalibration_Stat216: 2.623953267495441e-05 - syst_JES_EtaIntercalibration_Stat217: 1.9765191625683774e-05 - syst_JES_EtaIntercalibration_Stat218: 2.061588404604566e-05 - syst_JES_EtaIntercalibration_Stat219: 3.13103193851484e-05 - syst_JES_EtaIntercalibration_Stat22: 5.118038882228231e-07 - syst_JES_EtaIntercalibration_Stat220: 2.0755001204528993e-05 - syst_JES_EtaIntercalibration_Stat221: 1.268717118785744e-05 - syst_JES_EtaIntercalibration_Stat222: 7.270783778245643e-06 - syst_JES_EtaIntercalibration_Stat223: 2.4622363630447833e-06 - syst_JES_EtaIntercalibration_Stat224: 7.270241467791836e-07 - syst_JES_EtaIntercalibration_Stat225: 1.530015058749423e-05 - syst_JES_EtaIntercalibration_Stat226: 2.7427325790167732e-05 - syst_JES_EtaIntercalibration_Stat227: 5.6390531785043484e-05 - syst_JES_EtaIntercalibration_Stat228: 5.55560372506895e-05 - syst_JES_EtaIntercalibration_Stat229: 4.825563464508575e-05 - syst_JES_EtaIntercalibration_Stat23: 5.096142143818203e-07 - syst_JES_EtaIntercalibration_Stat230: 5.125316648754494e-05 - syst_JES_EtaIntercalibration_Stat231: 7.843133732762689e-05 - syst_JES_EtaIntercalibration_Stat232: 5.5344360823845456e-05 - syst_JES_EtaIntercalibration_Stat233: 3.209915068969894e-05 - syst_JES_EtaIntercalibration_Stat234: 1.2511524498637247e-05 - syst_JES_EtaIntercalibration_Stat235: 1.8411702323711273e-06 - syst_JES_EtaIntercalibration_Stat236: 5.701911258516744e-06 - syst_JES_EtaIntercalibration_Stat237: 7.282648745477156e-06 - syst_JES_EtaIntercalibration_Stat238: 8.261408657123795e-06 - syst_JES_EtaIntercalibration_Stat239: 5.807796032058979e-06 - syst_JES_EtaIntercalibration_Stat24: 3.134143686079671e-07 - syst_JES_EtaIntercalibration_Stat240: 3.152676589820148e-06 - syst_JES_EtaIntercalibration_Stat241: 3.764657089297776e-06 - syst_JES_EtaIntercalibration_Stat242: 5.368946893944845e-06 - syst_JES_EtaIntercalibration_Stat243: 6.9302398768008014e-06 - syst_JES_EtaIntercalibration_Stat244: 6.064129286220735e-06 - syst_JES_EtaIntercalibration_Stat245: 2.8565700354621096e-06 - syst_JES_EtaIntercalibration_Stat25: 5.320599701866323e-12 - syst_JES_EtaIntercalibration_Stat26: 1.1033695346528289e-12 - syst_JES_EtaIntercalibration_Stat27: 1.132148694960163e-12 - syst_JES_EtaIntercalibration_Stat28: 1.1067675998148844e-12 - syst_JES_EtaIntercalibration_Stat29: 2.4486132299732435e-07 - syst_JES_EtaIntercalibration_Stat3: 5.118038882228231e-07 - syst_JES_EtaIntercalibration_Stat30: 1.1204472444073394e-12 - syst_JES_EtaIntercalibration_Stat31: 1.697409791357282e-07 - syst_JES_EtaIntercalibration_Stat32: 2.1919102970570783e-06 - syst_JES_EtaIntercalibration_Stat33: 4.504198124929059e-06 - syst_JES_EtaIntercalibration_Stat34: 2.1919102971603087e-06 - syst_JES_EtaIntercalibration_Stat35: 6.957229756668597e-13 - syst_JES_EtaIntercalibration_Stat36: 4.3210815775682823e-07 - syst_JES_EtaIntercalibration_Stat37: 3.2060237945936354e-07 - syst_JES_EtaIntercalibration_Stat38: 1.114815763926937e-12 - syst_JES_EtaIntercalibration_Stat39: 1.1151719598339978e-12 - syst_JES_EtaIntercalibration_Stat4: 5.118038882228231e-07 - syst_JES_EtaIntercalibration_Stat40: 3.133277669624767e-07 - syst_JES_EtaIntercalibration_Stat41: 5.118038882228231e-07 - syst_JES_EtaIntercalibration_Stat42: 5.118038882228231e-07 - syst_JES_EtaIntercalibration_Stat43: 5.118038882228231e-07 - syst_JES_EtaIntercalibration_Stat44: 5.118038882228231e-07 - syst_JES_EtaIntercalibration_Stat45: 5.118038882228231e-07 - syst_JES_EtaIntercalibration_Stat46: 1.1172780540223638e-12 - syst_JES_EtaIntercalibration_Stat47: 7.093791863312596e-13 - syst_JES_EtaIntercalibration_Stat48: 5.354302123526464e-12 - syst_JES_EtaIntercalibration_Stat49: 3.129834172333204e-07 - syst_JES_EtaIntercalibration_Stat5: 5.118038882228231e-07 - syst_JES_EtaIntercalibration_Stat50: 6.937730674810764e-12 - syst_JES_EtaIntercalibration_Stat51: 2.47793598585597e-07 - syst_JES_EtaIntercalibration_Stat52: 2.447387790506792e-07 - syst_JES_EtaIntercalibration_Stat53: 1.820383149698031e-07 - syst_JES_EtaIntercalibration_Stat54: 2.191910296971434e-06 - syst_JES_EtaIntercalibration_Stat55: 2.1919103018397037e-06 - syst_JES_EtaIntercalibration_Stat56: 2.191910297103699e-06 - syst_JES_EtaIntercalibration_Stat57: 2.669944841186777e-12 - syst_JES_EtaIntercalibration_Stat58: 4.4635375700515245e-13 - syst_JES_EtaIntercalibration_Stat59: 2.0368917495972498e-07 - syst_JES_EtaIntercalibration_Stat6: 2.959208805476497e-07 - syst_JES_EtaIntercalibration_Stat60: 5.046904670191424e-07 - syst_JES_EtaIntercalibration_Stat61: 6.723776895651336e-13 - syst_JES_EtaIntercalibration_Stat62: 3.1272154917982887e-07 - syst_JES_EtaIntercalibration_Stat63: 1.1004711116153843e-12 - syst_JES_EtaIntercalibration_Stat64: 5.118038882228231e-07 - syst_JES_EtaIntercalibration_Stat65: 5.118038882228231e-07 - syst_JES_EtaIntercalibration_Stat66: 5.118038882228231e-07 - syst_JES_EtaIntercalibration_Stat67: 5.118038882228231e-07 - syst_JES_EtaIntercalibration_Stat68: 3.109753669151304e-17 - syst_JES_EtaIntercalibration_Stat69: 3.095176586668352e-07 - syst_JES_EtaIntercalibration_Stat7: 3.134143620550798e-07 - syst_JES_EtaIntercalibration_Stat70: 2.483760858260317e-07 - syst_JES_EtaIntercalibration_Stat71: 1.1135384592227746e-06 - syst_JES_EtaIntercalibration_Stat72: 2.4647082989355305e-07 - syst_JES_EtaIntercalibration_Stat73: 2.4595121447187084e-07 - syst_JES_EtaIntercalibration_Stat74: 2.525330079469139e-07 - syst_JES_EtaIntercalibration_Stat75: 2.5781576268639126e-06 - syst_JES_EtaIntercalibration_Stat76: 2.1919102971021116e-06 - syst_JES_EtaIntercalibration_Stat77: 2.6950710565530367e-07 - syst_JES_EtaIntercalibration_Stat78: 7.233432293869902e-07 - syst_JES_EtaIntercalibration_Stat79: 1.3354111731990982e-06 - syst_JES_EtaIntercalibration_Stat8: 6.930927485017572e-13 - syst_JES_EtaIntercalibration_Stat80: 1.9321026756088517e-06 - syst_JES_EtaIntercalibration_Stat81: 5.11119855513362e-13 - syst_JES_EtaIntercalibration_Stat82: 3.6873276487186065e-13 - syst_JES_EtaIntercalibration_Stat83: 1.001564529873138e-12 - syst_JES_EtaIntercalibration_Stat84: 6.715133750660787e-13 - syst_JES_EtaIntercalibration_Stat85: 6.729085055578323e-13 - syst_JES_EtaIntercalibration_Stat86: 3.134145936295914e-07 - syst_JES_EtaIntercalibration_Stat87: 3.1341459362958835e-07 - syst_JES_EtaIntercalibration_Stat88: 6.750666756660183e-13 - syst_JES_EtaIntercalibration_Stat89: 3.047543393973213e-07 - syst_JES_EtaIntercalibration_Stat9: 1.505151920635316e-06 - syst_JES_EtaIntercalibration_Stat90: 7.556672510632085e-12 - syst_JES_EtaIntercalibration_Stat91: 7.65557823991761e-12 - syst_JES_EtaIntercalibration_Stat92: 1.0697187559489811e-11 - syst_JES_EtaIntercalibration_Stat93: 2.4647084177582807e-07 - syst_JES_EtaIntercalibration_Stat94: 2.476004190222625e-07 - syst_JES_EtaIntercalibration_Stat95: 2.577862303520921e-07 - syst_JES_EtaIntercalibration_Stat96: 2.191911200244399e-06 - syst_JES_EtaIntercalibration_Stat97: 2.0878253447067835e-06 - syst_JES_EtaIntercalibration_Stat98: 2.0939945528821225e-06 - syst_JES_EtaIntercalibration_Stat99: 2.1815179921781495e-06 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0011033400416462732 - syst_JES_Flavour_Comp: 0.003130542245362614 - syst_JES_Flavour_Response: 0.0006342282475576123 - syst_JES_Gjet_Generator: 0.004347578722691517 - syst_JES_Gjet_OOC: 0.003560010112345188 - syst_JES_Gjet_Purity: 0.0007326112952992193 - syst_JES_Gjet_Stat1: 1.477528595323962e-05 - syst_JES_Gjet_Stat10: 7.066816167836828e-05 - syst_JES_Gjet_Stat11: 8.181567499568771e-05 - syst_JES_Gjet_Stat12: 0.00027527805942355815 - syst_JES_Gjet_Stat13: 0.0008394729939074872 - syst_JES_Gjet_Stat14: 0.0018768198501720936 - syst_JES_Gjet_Stat15: 0.001031055643503298 - syst_JES_Gjet_Stat2: 2.0096046252932442e-05 - syst_JES_Gjet_Stat3: 2.7796368018142222e-05 - syst_JES_Gjet_Stat4: 1.6805576455450732e-05 - syst_JES_Gjet_Stat5: 2.0818359685623648e-05 - syst_JES_Gjet_Stat6: 3.331043229980661e-05 - syst_JES_Gjet_Stat7: 4.00385327903009e-05 - syst_JES_Gjet_Stat8: 3.142045830346846e-05 - syst_JES_Gjet_Stat9: 4.931049051672473e-05 - syst_JES_Gjet_Veto: 0.00344400464575761 - syst_JES_Gjet_dPhi: 0.00035080465718117257 - syst_JES_LArESZee: 0.006644678829710282 - syst_JES_LArEsmear: 0.0005297405780190904 - syst_JES_LAr_JVT: 0.0006527356049734073 - syst_JES_MJB_Alpha: 3.449516306672575e-05 - syst_JES_MJB_Asym: 0.0004719641088048963 - syst_JES_MJB_Beta: 4.12872073014148e-05 - syst_JES_MJB_Fragmentation: 0.0005131398128190796 - syst_JES_MJB_Stat1: 6.192067344595018e-06 - syst_JES_MJB_Stat10: 4.220275492192423e-05 - syst_JES_MJB_Stat11: 3.330490166627129e-05 - syst_JES_MJB_Stat12: 2.891958635596298e-05 - syst_JES_MJB_Stat13: 1.2618381463167137e-05 - syst_JES_MJB_Stat14: 1.2615997780595873e-05 - syst_JES_MJB_Stat15: 1.9697680066444373e-05 - syst_JES_MJB_Stat16: 1.7833913619842395e-05 - syst_JES_MJB_Stat2: 1.8151085366996654e-05 - syst_JES_MJB_Stat3: 3.684343741767318e-05 - syst_JES_MJB_Stat4: 2.8739939109190888e-05 - syst_JES_MJB_Stat5: 3.301757259399909e-05 - syst_JES_MJB_Stat6: 2.8629849807499862e-05 - syst_JES_MJB_Stat7: 3.8867687093522824e-05 - syst_JES_MJB_Stat8: 3.7765300210643103e-05 - syst_JES_MJB_Stat9: 4.0263512054961126e-05 - syst_JES_MJB_Threshold: 0.0003916372173325717 - syst_JES_Pileup_MuOffset: 0.0007979882705904893 - syst_JES_Pileup_NPVOffset: 0.0008164499540694457 - syst_JES_Pileup_Pt_term: 0.0006073176516453312 - syst_JES_Pileup_Rho_topology: 0.0012486771680462487 - syst_JES_PunchThrough_MC15: 0.0004628930411012895 - syst_JES_SingleParticle_HighPt: 6.801814022744226e-07 - syst_JES_Zjet_MC: 0.0019421668311450486 - syst_JES_Zjet_MuScale: 0.00012795503624320537 - syst_JES_Zjet_MuSmearID: 3.3579064906575345e-05 - syst_JES_Zjet_MuSmearMS: 0.0005342160705182876 - syst_JES_Zjet_OOC: 0.001008988622334266 - syst_JES_Zjet_Stat1: 5.0360455468551905e-05 - syst_JES_Zjet_Stat10: 7.856941389624846e-05 - syst_JES_Zjet_Stat11: 0.0001053259683079154 - syst_JES_Zjet_Stat12: 0.00033024828160037415 - syst_JES_Zjet_Stat13: 0.0005774346976065779 - syst_JES_Zjet_Stat2: 6.156899463203862e-06 - syst_JES_Zjet_Stat3: 3.341172399024031e-05 - syst_JES_Zjet_Stat4: 3.3290075097542213e-05 - syst_JES_Zjet_Stat5: 4.354609368244183e-05 - syst_JES_Zjet_Stat6: 3.8781820879762724e-05 - syst_JES_Zjet_Stat7: 3.405721766380806e-05 - syst_JES_Zjet_Stat8: 3.3084592713225285e-05 - syst_JES_Zjet_Stat9: 5.2505566133506265e-05 - syst_JES_Zjet_Veto: 0.00021808128645071773 - syst_JES_Zjet_dPhi: 0.000183676971882705 +- stat: 1.06280000e-03 + syst_JER_CROSS_CALIB_FORWARD: 1.95300000e-17 + syst_JER_NOISE_FORWARD: 1.49800000e-17 + syst_JER_NP0: 3.20490979e-04 + syst_JER_NP1: 3.95096403e-05 + syst_JER_NP2: 2.11013904e-04 + syst_JER_NP3: 3.16741756e-05 + syst_JER_NP4: 2.54914549e-05 + syst_JER_NP5: 8.93477179e-35 + syst_JER_NP6: 7.13553999e-12 + syst_JER_NP7: 5.67766255e-35 + syst_JER_NP8: 6.16450685e-05 + syst_JES_EtaIntercalibration_Modelling: 4.60800347e-03 + syst_JES_EtaIntercalibration_NonClosure: 2.08824729e-05 + syst_JES_EtaIntercalibration_Stat0: 5.11803888e-07 + syst_JES_EtaIntercalibration_Stat1: 5.11803888e-07 + syst_JES_EtaIntercalibration_Stat10: 4.39480189e-06 + syst_JES_EtaIntercalibration_Stat100: 9.63316378e-07 + syst_JES_EtaIntercalibration_Stat101: 6.36122040e-12 + syst_JES_EtaIntercalibration_Stat102: 5.81841370e-13 + syst_JES_EtaIntercalibration_Stat103: 3.32484558e-07 + syst_JES_EtaIntercalibration_Stat104: 5.16658417e-13 + syst_JES_EtaIntercalibration_Stat105: 2.78514736e-12 + syst_JES_EtaIntercalibration_Stat106: 4.45821299e-13 + syst_JES_EtaIntercalibration_Stat107: 3.13414594e-07 + syst_JES_EtaIntercalibration_Stat108: 3.16532285e-07 + syst_JES_EtaIntercalibration_Stat109: 1.58806146e-08 + syst_JES_EtaIntercalibration_Stat11: 4.50506415e-06 + syst_JES_EtaIntercalibration_Stat110: 1.58794999e-08 + syst_JES_EtaIntercalibration_Stat111: 1.31110845e-11 + syst_JES_EtaIntercalibration_Stat112: 6.99064290e-11 + syst_JES_EtaIntercalibration_Stat113: 2.52157942e-07 + syst_JES_EtaIntercalibration_Stat114: 2.74983367e-07 + syst_JES_EtaIntercalibration_Stat115: 1.05077446e-06 + syst_JES_EtaIntercalibration_Stat116: 4.77995635e-07 + syst_JES_EtaIntercalibration_Stat117: 1.92090875e-06 + syst_JES_EtaIntercalibration_Stat118: 4.14231732e-07 + syst_JES_EtaIntercalibration_Stat119: 8.54419751e-07 + syst_JES_EtaIntercalibration_Stat12: 1.50428613e-06 + syst_JES_EtaIntercalibration_Stat120: 2.51190485e-07 + syst_JES_EtaIntercalibration_Stat121: 1.49345277e-09 + syst_JES_EtaIntercalibration_Stat122: 2.45821457e-08 + syst_JES_EtaIntercalibration_Stat123: 1.91990801e-11 + syst_JES_EtaIntercalibration_Stat124: 1.85442636e-11 + syst_JES_EtaIntercalibration_Stat125: 6.90835601e-11 + syst_JES_EtaIntercalibration_Stat126: 2.14427898e-07 + syst_JES_EtaIntercalibration_Stat127: 6.74114174e-13 + syst_JES_EtaIntercalibration_Stat128: 5.07902454e-07 + syst_JES_EtaIntercalibration_Stat129: 4.13385585e-07 + syst_JES_EtaIntercalibration_Stat13: 5.11803888e-07 + syst_JES_EtaIntercalibration_Stat130: 1.13640700e-09 + syst_JES_EtaIntercalibration_Stat131: 2.15432669e-07 + syst_JES_EtaIntercalibration_Stat132: 1.28854832e-07 + syst_JES_EtaIntercalibration_Stat133: 1.29824202e-06 + syst_JES_EtaIntercalibration_Stat134: 1.64507412e-06 + syst_JES_EtaIntercalibration_Stat135: 6.84535624e-07 + syst_JES_EtaIntercalibration_Stat136: 6.46887059e-07 + syst_JES_EtaIntercalibration_Stat137: 9.30861497e-07 + syst_JES_EtaIntercalibration_Stat138: 1.53657203e-06 + syst_JES_EtaIntercalibration_Stat139: 9.40637841e-07 + syst_JES_EtaIntercalibration_Stat14: 5.11803888e-07 + syst_JES_EtaIntercalibration_Stat140: 8.66634899e-07 + syst_JES_EtaIntercalibration_Stat141: 2.53303093e-07 + syst_JES_EtaIntercalibration_Stat142: 2.87302698e-07 + syst_JES_EtaIntercalibration_Stat143: 2.98227665e-10 + syst_JES_EtaIntercalibration_Stat144: 5.82187598e-09 + syst_JES_EtaIntercalibration_Stat145: 1.70175349e-07 + syst_JES_EtaIntercalibration_Stat146: 7.90486943e-07 + syst_JES_EtaIntercalibration_Stat147: 6.95929100e-10 + syst_JES_EtaIntercalibration_Stat148: 2.53124489e-08 + syst_JES_EtaIntercalibration_Stat149: 5.99858290e-07 + syst_JES_EtaIntercalibration_Stat15: 3.13414369e-07 + syst_JES_EtaIntercalibration_Stat150: 1.31737688e-07 + syst_JES_EtaIntercalibration_Stat151: 1.33074762e-06 + syst_JES_EtaIntercalibration_Stat152: 1.73225115e-06 + syst_JES_EtaIntercalibration_Stat153: 8.78410210e-07 + syst_JES_EtaIntercalibration_Stat154: 7.10516003e-07 + syst_JES_EtaIntercalibration_Stat155: 4.51466916e-07 + syst_JES_EtaIntercalibration_Stat156: 1.14474658e-06 + syst_JES_EtaIntercalibration_Stat157: 1.11805896e-06 + syst_JES_EtaIntercalibration_Stat158: 9.12101244e-07 + syst_JES_EtaIntercalibration_Stat159: 2.80452339e-07 + syst_JES_EtaIntercalibration_Stat16: 3.13414369e-07 + syst_JES_EtaIntercalibration_Stat160: 6.11709692e-07 + syst_JES_EtaIntercalibration_Stat161: 2.65872256e-07 + syst_JES_EtaIntercalibration_Stat162: 3.26212552e-07 + syst_JES_EtaIntercalibration_Stat163: 2.34567620e-07 + syst_JES_EtaIntercalibration_Stat164: 1.84108844e-07 + syst_JES_EtaIntercalibration_Stat165: 3.24128531e-08 + syst_JES_EtaIntercalibration_Stat166: 1.69760988e-07 + syst_JES_EtaIntercalibration_Stat167: 1.26363986e-06 + syst_JES_EtaIntercalibration_Stat168: 6.20438323e-07 + syst_JES_EtaIntercalibration_Stat169: 3.14417021e-06 + syst_JES_EtaIntercalibration_Stat17: 3.13415343e-07 + syst_JES_EtaIntercalibration_Stat170: 2.54237419e-06 + syst_JES_EtaIntercalibration_Stat171: 3.64899750e-06 + syst_JES_EtaIntercalibration_Stat172: 2.53596017e-06 + syst_JES_EtaIntercalibration_Stat173: 3.31969774e-06 + syst_JES_EtaIntercalibration_Stat174: 1.42359203e-06 + syst_JES_EtaIntercalibration_Stat175: 2.30610390e-06 + syst_JES_EtaIntercalibration_Stat176: 2.58169610e-06 + syst_JES_EtaIntercalibration_Stat177: 1.41589576e-06 + syst_JES_EtaIntercalibration_Stat178: 3.02256473e-07 + syst_JES_EtaIntercalibration_Stat179: 4.20565891e-07 + syst_JES_EtaIntercalibration_Stat18: 3.13414369e-07 + syst_JES_EtaIntercalibration_Stat180: 2.74878266e-08 + syst_JES_EtaIntercalibration_Stat181: 6.04122113e-10 + syst_JES_EtaIntercalibration_Stat182: 1.02060079e-06 + syst_JES_EtaIntercalibration_Stat183: 1.94337664e-06 + syst_JES_EtaIntercalibration_Stat184: 2.19153325e-06 + syst_JES_EtaIntercalibration_Stat185: 4.54657775e-06 + syst_JES_EtaIntercalibration_Stat186: 8.39919429e-06 + syst_JES_EtaIntercalibration_Stat187: 1.27515685e-05 + syst_JES_EtaIntercalibration_Stat188: 1.11325732e-05 + syst_JES_EtaIntercalibration_Stat189: 1.17977276e-05 + syst_JES_EtaIntercalibration_Stat19: 5.11803888e-07 + syst_JES_EtaIntercalibration_Stat190: 1.00837035e-05 + syst_JES_EtaIntercalibration_Stat191: 1.36929215e-05 + syst_JES_EtaIntercalibration_Stat192: 1.25638123e-05 + syst_JES_EtaIntercalibration_Stat193: 8.42255329e-06 + syst_JES_EtaIntercalibration_Stat194: 5.35416312e-06 + syst_JES_EtaIntercalibration_Stat195: 6.72076491e-07 + syst_JES_EtaIntercalibration_Stat196: 7.12679225e-08 + syst_JES_EtaIntercalibration_Stat197: 4.08472325e-07 + syst_JES_EtaIntercalibration_Stat198: 4.28192609e-06 + syst_JES_EtaIntercalibration_Stat199: 5.63087975e-06 + syst_JES_EtaIntercalibration_Stat2: 5.11803888e-07 + syst_JES_EtaIntercalibration_Stat20: 5.11803888e-07 + syst_JES_EtaIntercalibration_Stat200: 9.88654601e-06 + syst_JES_EtaIntercalibration_Stat201: 1.38665844e-05 + syst_JES_EtaIntercalibration_Stat202: 2.28154356e-05 + syst_JES_EtaIntercalibration_Stat203: 2.29404376e-05 + syst_JES_EtaIntercalibration_Stat204: 2.41428002e-05 + syst_JES_EtaIntercalibration_Stat205: 1.95936138e-05 + syst_JES_EtaIntercalibration_Stat206: 2.81323599e-05 + syst_JES_EtaIntercalibration_Stat207: 1.97000457e-05 + syst_JES_EtaIntercalibration_Stat208: 1.85350991e-05 + syst_JES_EtaIntercalibration_Stat209: 6.23044242e-06 + syst_JES_EtaIntercalibration_Stat21: 5.11803888e-07 + syst_JES_EtaIntercalibration_Stat210: 3.11137156e-06 + syst_JES_EtaIntercalibration_Stat211: 8.18587202e-07 + syst_JES_EtaIntercalibration_Stat212: 3.45994478e-07 + syst_JES_EtaIntercalibration_Stat213: 5.24349318e-06 + syst_JES_EtaIntercalibration_Stat214: 1.26099715e-05 + syst_JES_EtaIntercalibration_Stat215: 2.35732518e-05 + syst_JES_EtaIntercalibration_Stat216: 2.62395327e-05 + syst_JES_EtaIntercalibration_Stat217: 1.97651916e-05 + syst_JES_EtaIntercalibration_Stat218: 2.06158840e-05 + syst_JES_EtaIntercalibration_Stat219: 3.13103194e-05 + syst_JES_EtaIntercalibration_Stat22: 5.11803888e-07 + syst_JES_EtaIntercalibration_Stat220: 2.07550012e-05 + syst_JES_EtaIntercalibration_Stat221: 1.26871712e-05 + syst_JES_EtaIntercalibration_Stat222: 7.27078378e-06 + syst_JES_EtaIntercalibration_Stat223: 2.46223636e-06 + syst_JES_EtaIntercalibration_Stat224: 7.27024147e-07 + syst_JES_EtaIntercalibration_Stat225: 1.53001506e-05 + syst_JES_EtaIntercalibration_Stat226: 2.74273258e-05 + syst_JES_EtaIntercalibration_Stat227: 5.63905318e-05 + syst_JES_EtaIntercalibration_Stat228: 5.55560373e-05 + syst_JES_EtaIntercalibration_Stat229: 4.82556346e-05 + syst_JES_EtaIntercalibration_Stat23: 5.09614214e-07 + syst_JES_EtaIntercalibration_Stat230: 5.12531665e-05 + syst_JES_EtaIntercalibration_Stat231: 7.84313373e-05 + syst_JES_EtaIntercalibration_Stat232: 5.53443608e-05 + syst_JES_EtaIntercalibration_Stat233: 3.20991507e-05 + syst_JES_EtaIntercalibration_Stat234: 1.25115245e-05 + syst_JES_EtaIntercalibration_Stat235: 1.84117023e-06 + syst_JES_EtaIntercalibration_Stat236: 5.70191126e-06 + syst_JES_EtaIntercalibration_Stat237: 7.28264875e-06 + syst_JES_EtaIntercalibration_Stat238: 8.26140866e-06 + syst_JES_EtaIntercalibration_Stat239: 5.80779603e-06 + syst_JES_EtaIntercalibration_Stat24: 3.13414369e-07 + syst_JES_EtaIntercalibration_Stat240: 3.15267659e-06 + syst_JES_EtaIntercalibration_Stat241: 3.76465709e-06 + syst_JES_EtaIntercalibration_Stat242: 5.36894689e-06 + syst_JES_EtaIntercalibration_Stat243: 6.93023988e-06 + syst_JES_EtaIntercalibration_Stat244: 6.06412929e-06 + syst_JES_EtaIntercalibration_Stat245: 2.85657004e-06 + syst_JES_EtaIntercalibration_Stat25: 5.32059970e-12 + syst_JES_EtaIntercalibration_Stat26: 1.10336953e-12 + syst_JES_EtaIntercalibration_Stat27: 1.13214869e-12 + syst_JES_EtaIntercalibration_Stat28: 1.10676760e-12 + syst_JES_EtaIntercalibration_Stat29: 2.44861323e-07 + syst_JES_EtaIntercalibration_Stat3: 5.11803888e-07 + syst_JES_EtaIntercalibration_Stat30: 1.12044724e-12 + syst_JES_EtaIntercalibration_Stat31: 1.69740979e-07 + syst_JES_EtaIntercalibration_Stat32: 2.19191030e-06 + syst_JES_EtaIntercalibration_Stat33: 4.50419812e-06 + syst_JES_EtaIntercalibration_Stat34: 2.19191030e-06 + syst_JES_EtaIntercalibration_Stat35: 6.95722976e-13 + syst_JES_EtaIntercalibration_Stat36: 4.32108158e-07 + syst_JES_EtaIntercalibration_Stat37: 3.20602379e-07 + syst_JES_EtaIntercalibration_Stat38: 1.11481576e-12 + syst_JES_EtaIntercalibration_Stat39: 1.11517196e-12 + syst_JES_EtaIntercalibration_Stat4: 5.11803888e-07 + syst_JES_EtaIntercalibration_Stat40: 3.13327767e-07 + syst_JES_EtaIntercalibration_Stat41: 5.11803888e-07 + syst_JES_EtaIntercalibration_Stat42: 5.11803888e-07 + syst_JES_EtaIntercalibration_Stat43: 5.11803888e-07 + syst_JES_EtaIntercalibration_Stat44: 5.11803888e-07 + syst_JES_EtaIntercalibration_Stat45: 5.11803888e-07 + syst_JES_EtaIntercalibration_Stat46: 1.11727805e-12 + syst_JES_EtaIntercalibration_Stat47: 7.09379186e-13 + syst_JES_EtaIntercalibration_Stat48: 5.35430212e-12 + syst_JES_EtaIntercalibration_Stat49: 3.12983417e-07 + syst_JES_EtaIntercalibration_Stat5: 5.11803888e-07 + syst_JES_EtaIntercalibration_Stat50: 6.93773067e-12 + syst_JES_EtaIntercalibration_Stat51: 2.47793599e-07 + syst_JES_EtaIntercalibration_Stat52: 2.44738779e-07 + syst_JES_EtaIntercalibration_Stat53: 1.82038315e-07 + syst_JES_EtaIntercalibration_Stat54: 2.19191030e-06 + syst_JES_EtaIntercalibration_Stat55: 2.19191030e-06 + syst_JES_EtaIntercalibration_Stat56: 2.19191030e-06 + syst_JES_EtaIntercalibration_Stat57: 2.66994484e-12 + syst_JES_EtaIntercalibration_Stat58: 4.46353757e-13 + syst_JES_EtaIntercalibration_Stat59: 2.03689175e-07 + syst_JES_EtaIntercalibration_Stat6: 2.95920881e-07 + syst_JES_EtaIntercalibration_Stat60: 5.04690467e-07 + syst_JES_EtaIntercalibration_Stat61: 6.72377690e-13 + syst_JES_EtaIntercalibration_Stat62: 3.12721549e-07 + syst_JES_EtaIntercalibration_Stat63: 1.10047111e-12 + syst_JES_EtaIntercalibration_Stat64: 5.11803888e-07 + syst_JES_EtaIntercalibration_Stat65: 5.11803888e-07 + syst_JES_EtaIntercalibration_Stat66: 5.11803888e-07 + syst_JES_EtaIntercalibration_Stat67: 5.11803888e-07 + syst_JES_EtaIntercalibration_Stat68: 3.10975367e-17 + syst_JES_EtaIntercalibration_Stat69: 3.09517659e-07 + syst_JES_EtaIntercalibration_Stat7: 3.13414362e-07 + syst_JES_EtaIntercalibration_Stat70: 2.48376086e-07 + syst_JES_EtaIntercalibration_Stat71: 1.11353846e-06 + syst_JES_EtaIntercalibration_Stat72: 2.46470830e-07 + syst_JES_EtaIntercalibration_Stat73: 2.45951214e-07 + syst_JES_EtaIntercalibration_Stat74: 2.52533008e-07 + syst_JES_EtaIntercalibration_Stat75: 2.57815763e-06 + syst_JES_EtaIntercalibration_Stat76: 2.19191030e-06 + syst_JES_EtaIntercalibration_Stat77: 2.69507106e-07 + syst_JES_EtaIntercalibration_Stat78: 7.23343229e-07 + syst_JES_EtaIntercalibration_Stat79: 1.33541117e-06 + syst_JES_EtaIntercalibration_Stat8: 6.93092749e-13 + syst_JES_EtaIntercalibration_Stat80: 1.93210268e-06 + syst_JES_EtaIntercalibration_Stat81: 5.11119856e-13 + syst_JES_EtaIntercalibration_Stat82: 3.68732765e-13 + syst_JES_EtaIntercalibration_Stat83: 1.00156453e-12 + syst_JES_EtaIntercalibration_Stat84: 6.71513375e-13 + syst_JES_EtaIntercalibration_Stat85: 6.72908506e-13 + syst_JES_EtaIntercalibration_Stat86: 3.13414594e-07 + syst_JES_EtaIntercalibration_Stat87: 3.13414594e-07 + syst_JES_EtaIntercalibration_Stat88: 6.75066676e-13 + syst_JES_EtaIntercalibration_Stat89: 3.04754339e-07 + syst_JES_EtaIntercalibration_Stat9: 1.50515192e-06 + syst_JES_EtaIntercalibration_Stat90: 7.55667251e-12 + syst_JES_EtaIntercalibration_Stat91: 7.65557824e-12 + syst_JES_EtaIntercalibration_Stat92: 1.06971876e-11 + syst_JES_EtaIntercalibration_Stat93: 2.46470842e-07 + syst_JES_EtaIntercalibration_Stat94: 2.47600419e-07 + syst_JES_EtaIntercalibration_Stat95: 2.57786230e-07 + syst_JES_EtaIntercalibration_Stat96: 2.19191120e-06 + syst_JES_EtaIntercalibration_Stat97: 2.08782534e-06 + syst_JES_EtaIntercalibration_Stat98: 2.09399455e-06 + syst_JES_EtaIntercalibration_Stat99: 2.18151799e-06 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.10334004e-03 + syst_JES_Flavour_Comp: 3.13054225e-03 + syst_JES_Flavour_Response: 6.34228248e-04 + syst_JES_Gjet_Generator: 4.34757872e-03 + syst_JES_Gjet_OOC: 3.56001011e-03 + syst_JES_Gjet_Purity: 7.32611295e-04 + syst_JES_Gjet_Stat1: 1.47752860e-05 + syst_JES_Gjet_Stat10: 7.06681617e-05 + syst_JES_Gjet_Stat11: 8.18156750e-05 + syst_JES_Gjet_Stat12: 2.75278059e-04 + syst_JES_Gjet_Stat13: 8.39472994e-04 + syst_JES_Gjet_Stat14: 1.87681985e-03 + syst_JES_Gjet_Stat15: 1.03105564e-03 + syst_JES_Gjet_Stat2: 2.00960463e-05 + syst_JES_Gjet_Stat3: 2.77963680e-05 + syst_JES_Gjet_Stat4: 1.68055765e-05 + syst_JES_Gjet_Stat5: 2.08183597e-05 + syst_JES_Gjet_Stat6: 3.33104323e-05 + syst_JES_Gjet_Stat7: 4.00385328e-05 + syst_JES_Gjet_Stat8: 3.14204583e-05 + syst_JES_Gjet_Stat9: 4.93104905e-05 + syst_JES_Gjet_Veto: 3.44400465e-03 + syst_JES_Gjet_dPhi: 3.50804657e-04 + syst_JES_LArESZee: 6.64467883e-03 + syst_JES_LArEsmear: 5.29740578e-04 + syst_JES_LAr_JVT: 6.52735605e-04 + syst_JES_MJB_Alpha: 3.44951631e-05 + syst_JES_MJB_Asym: 4.71964109e-04 + syst_JES_MJB_Beta: 4.12872073e-05 + syst_JES_MJB_Fragmentation: 5.13139813e-04 + syst_JES_MJB_Stat1: 6.19206734e-06 + syst_JES_MJB_Stat10: 4.22027549e-05 + syst_JES_MJB_Stat11: 3.33049017e-05 + syst_JES_MJB_Stat12: 2.89195864e-05 + syst_JES_MJB_Stat13: 1.26183815e-05 + syst_JES_MJB_Stat14: 1.26159978e-05 + syst_JES_MJB_Stat15: 1.96976801e-05 + syst_JES_MJB_Stat16: 1.78339136e-05 + syst_JES_MJB_Stat2: 1.81510854e-05 + syst_JES_MJB_Stat3: 3.68434374e-05 + syst_JES_MJB_Stat4: 2.87399391e-05 + syst_JES_MJB_Stat5: 3.30175726e-05 + syst_JES_MJB_Stat6: 2.86298498e-05 + syst_JES_MJB_Stat7: 3.88676871e-05 + syst_JES_MJB_Stat8: 3.77653002e-05 + syst_JES_MJB_Stat9: 4.02635121e-05 + syst_JES_MJB_Threshold: 3.91637217e-04 + syst_JES_Pileup_MuOffset: 7.97988271e-04 + syst_JES_Pileup_NPVOffset: 8.16449954e-04 + syst_JES_Pileup_Pt_term: 6.07317652e-04 + syst_JES_Pileup_Rho_topology: 1.24867717e-03 + syst_JES_PunchThrough_MC15: 4.62893041e-04 + syst_JES_SingleParticle_HighPt: 6.80181402e-07 + syst_JES_Zjet_MC: 1.94216683e-03 + syst_JES_Zjet_MuScale: 1.27955036e-04 + syst_JES_Zjet_MuSmearID: 3.35790649e-05 + syst_JES_Zjet_MuSmearMS: 5.34216071e-04 + syst_JES_Zjet_OOC: 1.00898862e-03 + syst_JES_Zjet_Stat1: 5.03604555e-05 + syst_JES_Zjet_Stat10: 7.85694139e-05 + syst_JES_Zjet_Stat11: 1.05325968e-04 + syst_JES_Zjet_Stat12: 3.30248282e-04 + syst_JES_Zjet_Stat13: 5.77434698e-04 + syst_JES_Zjet_Stat2: 6.15689946e-06 + syst_JES_Zjet_Stat3: 3.34117240e-05 + syst_JES_Zjet_Stat4: 3.32900751e-05 + syst_JES_Zjet_Stat5: 4.35460937e-05 + syst_JES_Zjet_Stat6: 3.87818209e-05 + syst_JES_Zjet_Stat7: 3.40572177e-05 + syst_JES_Zjet_Stat8: 3.30845927e-05 + syst_JES_Zjet_Stat9: 5.25055661e-05 + syst_JES_Zjet_Veto: 2.18081286e-04 + syst_JES_Zjet_dPhi: 1.83676972e-04 syst_PRW: 0.0 syst_Unfolding_bias: 0.0 - syst_cleaning: 0.0020897192993318504 + syst_cleaning: 2.08971930e-03 syst_lumi: 0.004238 -- stat: 0.0007063 - syst_JER_CROSS_CALIB_FORWARD: 2.771e-18 - syst_JER_NOISE_FORWARD: 2.114e-18 - syst_JER_NP0: 0.00017493772463365355 - syst_JER_NP1: 2.2685237490491476e-05 - syst_JER_NP2: 0.00011602099508278663 - syst_JER_NP3: 1.4121104091040472e-05 - syst_JER_NP4: 1.3550472316491408e-05 - syst_JER_NP5: 3.9383055683885164e-26 - syst_JER_NP6: 2.675518396030945e-09 - syst_JER_NP7: 2.5028134169370276e-26 - syst_JER_NP8: 3.3012208347821866e-05 - syst_JES_EtaIntercalibration_Modelling: 0.002481584725533263 - syst_JES_EtaIntercalibration_NonClosure: 4.554561779139679e-06 - syst_JES_EtaIntercalibration_Stat0: 2.720946894005835e-07 - syst_JES_EtaIntercalibration_Stat1: 2.720946894005835e-07 - syst_JES_EtaIntercalibration_Stat10: 2.3221371621848697e-06 - syst_JES_EtaIntercalibration_Stat100: 5.121510406943182e-07 - syst_JES_EtaIntercalibration_Stat101: 4.0194955868142967e-13 - syst_JES_EtaIntercalibration_Stat102: 3.731190426660103e-14 - syst_JES_EtaIntercalibration_Stat103: 1.767557907696232e-07 - syst_JES_EtaIntercalibration_Stat104: 3.741593271254907e-14 - syst_JES_EtaIntercalibration_Stat105: 1.8013449097024858e-13 - syst_JES_EtaIntercalibration_Stat106: 2.883784755903372e-14 - syst_JES_EtaIntercalibration_Stat107: 1.666232876881267e-07 - syst_JES_EtaIntercalibration_Stat108: 1.6826873595531642e-07 - syst_JES_EtaIntercalibration_Stat109: 1.405413279137219e-09 - syst_JES_EtaIntercalibration_Stat11: 2.3807038349961557e-06 - syst_JES_EtaIntercalibration_Stat110: 1.4044796576390952e-09 - syst_JES_EtaIntercalibration_Stat111: 8.272258199548659e-13 - syst_JES_EtaIntercalibration_Stat112: 4.605876966952113e-12 - syst_JES_EtaIntercalibration_Stat113: 1.492296280066395e-07 - syst_JES_EtaIntercalibration_Stat114: 1.550708057630449e-07 - syst_JES_EtaIntercalibration_Stat115: 3.6625255589551864e-07 - syst_JES_EtaIntercalibration_Stat116: 2.5432954424329075e-07 - syst_JES_EtaIntercalibration_Stat117: 1.0157755300754196e-06 - syst_JES_EtaIntercalibration_Stat118: 3.7963512416529644e-07 - syst_JES_EtaIntercalibration_Stat119: 6.232784200859041e-07 - syst_JES_EtaIntercalibration_Stat12: 7.996878578618398e-07 - syst_JES_EtaIntercalibration_Stat120: 1.381465651943616e-07 - syst_JES_EtaIntercalibration_Stat121: 1.0973925676347549e-10 - syst_JES_EtaIntercalibration_Stat122: 2.2426701234910113e-09 - syst_JES_EtaIntercalibration_Stat123: 1.2181610761717843e-12 - syst_JES_EtaIntercalibration_Stat124: 1.176026431463171e-12 - syst_JES_EtaIntercalibration_Stat125: 4.385952205621944e-12 - syst_JES_EtaIntercalibration_Stat126: 1.1399492453984976e-07 - syst_JES_EtaIntercalibration_Stat127: 4.588202589249956e-14 - syst_JES_EtaIntercalibration_Stat128: 2.7224895220505437e-07 - syst_JES_EtaIntercalibration_Stat129: 2.2082532150133397e-07 - syst_JES_EtaIntercalibration_Stat13: 2.720946894005835e-07 - syst_JES_EtaIntercalibration_Stat130: 8.242862776365987e-11 - syst_JES_EtaIntercalibration_Stat131: 1.4705831054381115e-07 - syst_JES_EtaIntercalibration_Stat132: 5.732123500158994e-09 - syst_JES_EtaIntercalibration_Stat133: 7.207861743089972e-07 - syst_JES_EtaIntercalibration_Stat134: 2.425585290192864e-07 - syst_JES_EtaIntercalibration_Stat135: 1.746734355876703e-07 - syst_JES_EtaIntercalibration_Stat136: 6.072163232325034e-07 - syst_JES_EtaIntercalibration_Stat137: 2.587478882522522e-07 - syst_JES_EtaIntercalibration_Stat138: 3.566980515786426e-07 - syst_JES_EtaIntercalibration_Stat139: 2.2022901716168106e-07 - syst_JES_EtaIntercalibration_Stat14: 2.720946894005835e-07 - syst_JES_EtaIntercalibration_Stat140: 3.383087642967589e-07 - syst_JES_EtaIntercalibration_Stat141: 4.2239701703492183e-08 - syst_JES_EtaIntercalibration_Stat142: 1.5472721748532156e-07 - syst_JES_EtaIntercalibration_Stat143: 1.9226977999675352e-11 - syst_JES_EtaIntercalibration_Stat144: 4.3412831637086293e-10 - syst_JES_EtaIntercalibration_Stat145: 9.044777945657376e-08 - syst_JES_EtaIntercalibration_Stat146: 4.224157663866253e-07 - syst_JES_EtaIntercalibration_Stat147: 5.055578008835266e-11 - syst_JES_EtaIntercalibration_Stat148: 3.6794721958454856e-09 - syst_JES_EtaIntercalibration_Stat149: 2.9992720783550133e-07 - syst_JES_EtaIntercalibration_Stat15: 1.6662327239412298e-07 - syst_JES_EtaIntercalibration_Stat150: 5.51336084780191e-09 - syst_JES_EtaIntercalibration_Stat151: 4.0559465911177874e-07 - syst_JES_EtaIntercalibration_Stat152: 2.6540872253940717e-07 - syst_JES_EtaIntercalibration_Stat153: 2.968579458259455e-07 - syst_JES_EtaIntercalibration_Stat154: 5.986396412492244e-07 - syst_JES_EtaIntercalibration_Stat155: 3.8362938925478585e-09 - syst_JES_EtaIntercalibration_Stat156: 6.706419238311903e-07 - syst_JES_EtaIntercalibration_Stat157: 3.398682244635411e-07 - syst_JES_EtaIntercalibration_Stat158: 5.75311439026724e-07 - syst_JES_EtaIntercalibration_Stat159: 4.375479030917643e-08 - syst_JES_EtaIntercalibration_Stat16: 1.6662327239412298e-07 - syst_JES_EtaIntercalibration_Stat160: 3.2514130389724403e-07 - syst_JES_EtaIntercalibration_Stat161: 1.4021517470628517e-07 - syst_JES_EtaIntercalibration_Stat162: 1.736176533470292e-07 - syst_JES_EtaIntercalibration_Stat163: 1.2477868866946262e-07 - syst_JES_EtaIntercalibration_Stat164: 7.008691892636428e-08 - syst_JES_EtaIntercalibration_Stat165: 3.499405404850944e-09 - syst_JES_EtaIntercalibration_Stat166: 1.350433943545833e-07 - syst_JES_EtaIntercalibration_Stat167: 2.907870698638439e-07 - syst_JES_EtaIntercalibration_Stat168: 2.2548668551989936e-07 - syst_JES_EtaIntercalibration_Stat169: 1.1140786092103194e-06 - syst_JES_EtaIntercalibration_Stat17: 1.6662333505976947e-07 - syst_JES_EtaIntercalibration_Stat170: 5.165389118933829e-07 - syst_JES_EtaIntercalibration_Stat171: 8.348817446201588e-07 - syst_JES_EtaIntercalibration_Stat172: 7.38617851124653e-07 - syst_JES_EtaIntercalibration_Stat173: 8.962517656886373e-07 - syst_JES_EtaIntercalibration_Stat174: 7.432053467918539e-07 - syst_JES_EtaIntercalibration_Stat175: 4.5120961869180047e-07 - syst_JES_EtaIntercalibration_Stat176: 1.2150165554427645e-06 - syst_JES_EtaIntercalibration_Stat177: 1.0314142281353308e-06 - syst_JES_EtaIntercalibration_Stat178: 1.6668421490951086e-07 - syst_JES_EtaIntercalibration_Stat179: 1.803832108980212e-07 - syst_JES_EtaIntercalibration_Stat18: 1.6662327239412298e-07 - syst_JES_EtaIntercalibration_Stat180: 3.2513940948460865e-09 - syst_JES_EtaIntercalibration_Stat181: 4.331227857086256e-11 - syst_JES_EtaIntercalibration_Stat182: 8.243037835046009e-08 - syst_JES_EtaIntercalibration_Stat183: 5.267587754371065e-07 - syst_JES_EtaIntercalibration_Stat184: 4.451244853970628e-07 - syst_JES_EtaIntercalibration_Stat185: 1.1625229320318805e-06 - syst_JES_EtaIntercalibration_Stat186: 3.07352110778501e-06 - syst_JES_EtaIntercalibration_Stat187: 5.329281471267962e-06 - syst_JES_EtaIntercalibration_Stat188: 4.669153536777303e-06 - syst_JES_EtaIntercalibration_Stat189: 3.894955294993769e-06 - syst_JES_EtaIntercalibration_Stat19: 2.720946894005835e-07 - syst_JES_EtaIntercalibration_Stat190: 3.851482928691233e-06 - syst_JES_EtaIntercalibration_Stat191: 6.591659654442119e-06 - syst_JES_EtaIntercalibration_Stat192: 4.901517188585591e-06 - syst_JES_EtaIntercalibration_Stat193: 3.7099006293969653e-06 - syst_JES_EtaIntercalibration_Stat194: 1.7021903536326364e-06 - syst_JES_EtaIntercalibration_Stat195: 2.6430338982881015e-08 - syst_JES_EtaIntercalibration_Stat196: 6.351437748186685e-08 - syst_JES_EtaIntercalibration_Stat197: 2.8614454179662417e-07 - syst_JES_EtaIntercalibration_Stat198: 8.695845617304852e-07 - syst_JES_EtaIntercalibration_Stat199: 2.0657639627992354e-06 - syst_JES_EtaIntercalibration_Stat2: 2.720946894005835e-07 - syst_JES_EtaIntercalibration_Stat20: 2.720946894005835e-07 - syst_JES_EtaIntercalibration_Stat200: 3.1887055367165757e-06 - syst_JES_EtaIntercalibration_Stat201: 6.183307589793669e-06 - syst_JES_EtaIntercalibration_Stat202: 1.094880710397256e-05 - syst_JES_EtaIntercalibration_Stat203: 1.066159429916558e-05 - syst_JES_EtaIntercalibration_Stat204: 9.97709406590917e-06 - syst_JES_EtaIntercalibration_Stat205: 8.898439526119173e-06 - syst_JES_EtaIntercalibration_Stat206: 1.376715078547482e-05 - syst_JES_EtaIntercalibration_Stat207: 9.959661590636503e-06 - syst_JES_EtaIntercalibration_Stat208: 7.64203747373696e-06 - syst_JES_EtaIntercalibration_Stat209: 2.815891821430646e-06 - syst_JES_EtaIntercalibration_Stat21: 2.720946894005835e-07 - syst_JES_EtaIntercalibration_Stat210: 1.4105890507160475e-06 - syst_JES_EtaIntercalibration_Stat211: 1.4657840586866812e-07 - syst_JES_EtaIntercalibration_Stat212: 1.8394379644999557e-07 - syst_JES_EtaIntercalibration_Stat213: 1.2575552592232278e-06 - syst_JES_EtaIntercalibration_Stat214: 5.092479356855558e-06 - syst_JES_EtaIntercalibration_Stat215: 1.2556150395324198e-05 - syst_JES_EtaIntercalibration_Stat216: 1.4514641814388669e-05 - syst_JES_EtaIntercalibration_Stat217: 9.702443133046438e-06 - syst_JES_EtaIntercalibration_Stat218: 1.0694200390866069e-05 - syst_JES_EtaIntercalibration_Stat219: 1.639928275870625e-05 - syst_JES_EtaIntercalibration_Stat22: 2.720946894005835e-07 - syst_JES_EtaIntercalibration_Stat220: 1.1043137733452389e-05 - syst_JES_EtaIntercalibration_Stat221: 5.342637059542787e-06 - syst_JES_EtaIntercalibration_Stat222: 2.953869453784307e-06 - syst_JES_EtaIntercalibration_Stat223: 1.3663167080420996e-06 - syst_JES_EtaIntercalibration_Stat224: 4.3028067153893865e-07 - syst_JES_EtaIntercalibration_Stat225: 7.14147379747346e-06 - syst_JES_EtaIntercalibration_Stat226: 1.3605074678222093e-05 - syst_JES_EtaIntercalibration_Stat227: 3.384382957054358e-05 - syst_JES_EtaIntercalibration_Stat228: 3.497599569704915e-05 - syst_JES_EtaIntercalibration_Stat229: 2.785595582635785e-05 - syst_JES_EtaIntercalibration_Stat23: 2.708939414235763e-07 - syst_JES_EtaIntercalibration_Stat230: 3.0370668003848714e-05 - syst_JES_EtaIntercalibration_Stat231: 4.634134870717511e-05 - syst_JES_EtaIntercalibration_Stat232: 3.650074575608011e-05 - syst_JES_EtaIntercalibration_Stat233: 1.681818856922469e-05 - syst_JES_EtaIntercalibration_Stat234: 6.014561906379799e-06 - syst_JES_EtaIntercalibration_Stat235: 9.694288522383488e-07 - syst_JES_EtaIntercalibration_Stat236: 2.3789717841781024e-06 - syst_JES_EtaIntercalibration_Stat237: 3.6535247022567123e-06 - syst_JES_EtaIntercalibration_Stat238: 6.310172580841193e-06 - syst_JES_EtaIntercalibration_Stat239: 3.787480263974982e-06 - syst_JES_EtaIntercalibration_Stat24: 1.66623272371029e-07 - syst_JES_EtaIntercalibration_Stat240: 2.5919571755721586e-06 - syst_JES_EtaIntercalibration_Stat241: 2.9404336414889555e-06 - syst_JES_EtaIntercalibration_Stat242: 4.436938217960669e-06 - syst_JES_EtaIntercalibration_Stat243: 3.1668359572292336e-06 - syst_JES_EtaIntercalibration_Stat244: 3.566917156312997e-06 - syst_JES_EtaIntercalibration_Stat245: 1.423356662084384e-06 - syst_JES_EtaIntercalibration_Stat25: 3.3021774800879496e-13 - syst_JES_EtaIntercalibration_Stat26: 7.508767325600121e-14 - syst_JES_EtaIntercalibration_Stat27: 7.727263163630445e-14 - syst_JES_EtaIntercalibration_Stat28: 7.529292197809831e-14 - syst_JES_EtaIntercalibration_Stat29: 1.4935869936163746e-07 - syst_JES_EtaIntercalibration_Stat3: 2.720946894005835e-07 - syst_JES_EtaIntercalibration_Stat30: 7.638488201208404e-14 - syst_JES_EtaIntercalibration_Stat31: 9.42235639311482e-08 - syst_JES_EtaIntercalibration_Stat32: 1.1649773731775212e-06 - syst_JES_EtaIntercalibration_Stat33: 2.3807038349903565e-06 - syst_JES_EtaIntercalibration_Stat34: 1.164977373186268e-06 - syst_JES_EtaIntercalibration_Stat35: 4.749988797797317e-14 - syst_JES_EtaIntercalibration_Stat36: 2.2967127530450994e-07 - syst_JES_EtaIntercalibration_Stat37: 1.704337841476804e-07 - syst_JES_EtaIntercalibration_Stat38: 7.596963653328875e-14 - syst_JES_EtaIntercalibration_Stat39: 7.599815441838044e-14 - syst_JES_EtaIntercalibration_Stat4: 2.720946894005835e-07 - syst_JES_EtaIntercalibration_Stat40: 1.6662327244031097e-07 - syst_JES_EtaIntercalibration_Stat41: 2.720946894005835e-07 - syst_JES_EtaIntercalibration_Stat42: 2.720946894005835e-07 - syst_JES_EtaIntercalibration_Stat43: 2.720946894005835e-07 - syst_JES_EtaIntercalibration_Stat44: 2.720946894005835e-07 - syst_JES_EtaIntercalibration_Stat45: 2.720946894005835e-07 - syst_JES_EtaIntercalibration_Stat46: 7.615949776620117e-14 - syst_JES_EtaIntercalibration_Stat47: 4.7560118671004176e-14 - syst_JES_EtaIntercalibration_Stat48: 3.329673823364685e-13 - syst_JES_EtaIntercalibration_Stat49: 1.6636359434801696e-07 - syst_JES_EtaIntercalibration_Stat5: 2.720946894005835e-07 - syst_JES_EtaIntercalibration_Stat50: 4.41499916895494e-13 - syst_JES_EtaIntercalibration_Stat51: 1.4922617623929122e-07 - syst_JES_EtaIntercalibration_Stat52: 1.5449893202910477e-07 - syst_JES_EtaIntercalibration_Stat53: 1.0071873916035738e-07 - syst_JES_EtaIntercalibration_Stat54: 1.1649773731701364e-06 - syst_JES_EtaIntercalibration_Stat55: 1.1649773735397826e-06 - syst_JES_EtaIntercalibration_Stat56: 1.1649773731816408e-06 - syst_JES_EtaIntercalibration_Stat57: 1.7268437723679485e-13 - syst_JES_EtaIntercalibration_Stat58: 2.888247870624958e-14 - syst_JES_EtaIntercalibration_Stat59: 1.0826183572609762e-07 - syst_JES_EtaIntercalibration_Stat6: 1.7718879762063546e-07 - syst_JES_EtaIntercalibration_Stat60: 2.683621573545719e-07 - syst_JES_EtaIntercalibration_Stat61: 4.574292231952251e-14 - syst_JES_EtaIntercalibration_Stat62: 1.6627686227879722e-07 - syst_JES_EtaIntercalibration_Stat63: 7.488267489880419e-14 - syst_JES_EtaIntercalibration_Stat64: 2.720946894005835e-07 - syst_JES_EtaIntercalibration_Stat65: 2.720946894005835e-07 - syst_JES_EtaIntercalibration_Stat66: 2.720946894005835e-07 - syst_JES_EtaIntercalibration_Stat67: 2.720946894005835e-07 - syst_JES_EtaIntercalibration_Stat68: 2.739840345836779e-18 - syst_JES_EtaIntercalibration_Stat69: 1.645448383324473e-07 - syst_JES_EtaIntercalibration_Stat7: 1.6662327188028164e-07 - syst_JES_EtaIntercalibration_Stat70: 1.3206887407964932e-07 - syst_JES_EtaIntercalibration_Stat71: 5.919285515876205e-07 - syst_JES_EtaIntercalibration_Stat72: 1.5501854727454423e-07 - syst_JES_EtaIntercalibration_Stat73: 1.550185472566299e-07 - syst_JES_EtaIntercalibration_Stat74: 1.34233937607413e-07 - syst_JES_EtaIntercalibration_Stat75: 1.370918214174482e-06 - syst_JES_EtaIntercalibration_Stat76: 1.1649773731837452e-06 - syst_JES_EtaIntercalibration_Stat77: 1.4713771610353385e-07 - syst_JES_EtaIntercalibration_Stat78: 4.5979299807087097e-07 - syst_JES_EtaIntercalibration_Stat79: 7.0970781844742e-07 - syst_JES_EtaIntercalibration_Stat8: 4.7296017786173075e-14 - syst_JES_EtaIntercalibration_Stat80: 1.0268463212432489e-06 - syst_JES_EtaIntercalibration_Stat81: 3.336845892081323e-14 - syst_JES_EtaIntercalibration_Stat82: 2.6731669743037316e-14 - syst_JES_EtaIntercalibration_Stat83: 6.999684760758873e-14 - syst_JES_EtaIntercalibration_Stat84: 4.569110965296822e-14 - syst_JES_EtaIntercalibration_Stat85: 4.5796054719454015e-14 - syst_JES_EtaIntercalibration_Stat86: 1.6662328768812714e-07 - syst_JES_EtaIntercalibration_Stat87: 1.66623287688126e-07 - syst_JES_EtaIntercalibration_Stat88: 4.5951290509057846e-14 - syst_JES_EtaIntercalibration_Stat89: 1.6203335303152163e-07 - syst_JES_EtaIntercalibration_Stat9: 7.997744446188342e-07 - syst_JES_EtaIntercalibration_Stat90: 4.813370394017378e-13 - syst_JES_EtaIntercalibration_Stat91: 4.8771263965654e-13 - syst_JES_EtaIntercalibration_Stat92: 6.806143706082811e-13 - syst_JES_EtaIntercalibration_Stat93: 1.550185480917671e-07 - syst_JES_EtaIntercalibration_Stat94: 1.4914386301487568e-07 - syst_JES_EtaIntercalibration_Stat95: 1.3708987990011995e-07 - syst_JES_EtaIntercalibration_Stat96: 1.1648908289428373e-06 - syst_JES_EtaIntercalibration_Stat97: 1.1096520535735516e-06 - syst_JES_EtaIntercalibration_Stat98: 1.0998414777025823e-06 - syst_JES_EtaIntercalibration_Stat99: 1.1595214131324467e-06 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0006791969449283469 - syst_JES_Flavour_Comp: 0.0018027331333283912 - syst_JES_Flavour_Response: 0.00020419306427986233 - syst_JES_Gjet_Generator: 0.002395026722189128 - syst_JES_Gjet_OOC: 0.0019802908877233163 - syst_JES_Gjet_Purity: 0.0003796239126754267 - syst_JES_Gjet_Stat1: 7.167863489213505e-06 - syst_JES_Gjet_Stat10: 3.636866336559539e-05 - syst_JES_Gjet_Stat11: 4.113674999316305e-05 - syst_JES_Gjet_Stat12: 0.00014070993141921434 - syst_JES_Gjet_Stat13: 0.00043149283597760925 - syst_JES_Gjet_Stat14: 0.001088803017078847 - syst_JES_Gjet_Stat15: 0.0009062577489323884 - syst_JES_Gjet_Stat2: 9.378013369045707e-06 - syst_JES_Gjet_Stat3: 1.4622012276017278e-05 - syst_JES_Gjet_Stat4: 7.588091920898165e-06 - syst_JES_Gjet_Stat5: 9.275797149032529e-06 - syst_JES_Gjet_Stat6: 2.097978312566648e-05 - syst_JES_Gjet_Stat7: 2.286870787779668e-05 - syst_JES_Gjet_Stat8: 1.6345507027926667e-05 - syst_JES_Gjet_Stat9: 2.440717261380351e-05 - syst_JES_Gjet_Veto: 0.00195931901435167 - syst_JES_Gjet_dPhi: 0.00020204437631371976 - syst_JES_LArESZee: 0.003644417374560713 - syst_JES_LArEsmear: 0.000304122442447117 - syst_JES_LAr_JVT: 0.00037546513643080097 - syst_JES_MJB_Alpha: 2.0131683362302317e-05 - syst_JES_MJB_Asym: 0.00032890236773243213 - syst_JES_MJB_Beta: 2.372827585392584e-05 - syst_JES_MJB_Fragmentation: 0.00025820009682414916 - syst_JES_MJB_Stat1: 1.51655687331534e-06 - syst_JES_MJB_Stat10: 3.294520905989215e-05 - syst_JES_MJB_Stat11: 3.0405273802417897e-05 - syst_JES_MJB_Stat12: 3.492746725358139e-05 - syst_JES_MJB_Stat13: 2.8194526064468613e-05 - syst_JES_MJB_Stat14: 3.898182268699092e-06 - syst_JES_MJB_Stat15: 9.211727091050842e-06 - syst_JES_MJB_Stat16: 2.3087801974202742e-05 - syst_JES_MJB_Stat2: 4.426570081620757e-06 - syst_JES_MJB_Stat3: 1.1866375299559677e-05 - syst_JES_MJB_Stat4: 9.42405040309102e-06 - syst_JES_MJB_Stat5: 1.1643398762818356e-05 - syst_JES_MJB_Stat6: 1.3153604601020967e-05 - syst_JES_MJB_Stat7: 1.806551064874724e-05 - syst_JES_MJB_Stat8: 1.9816600995125273e-05 - syst_JES_MJB_Stat9: 2.6237135419096343e-05 - syst_JES_MJB_Threshold: 0.00024650490360234213 - syst_JES_Pileup_MuOffset: 0.0004568657023677746 - syst_JES_Pileup_NPVOffset: 0.000470244816558354 - syst_JES_Pileup_Pt_term: 0.0003081984425658248 - syst_JES_Pileup_Rho_topology: 0.0006708520775849173 - syst_JES_PunchThrough_MC15: 0.00033653236099965184 - syst_JES_SingleParticle_HighPt: 3.6145515281982085e-07 - syst_JES_Zjet_MC: 0.0010001239060736424 - syst_JES_Zjet_MuScale: 6.9840909752093e-05 - syst_JES_Zjet_MuSmearID: 1.766452093887632e-05 - syst_JES_Zjet_MuSmearMS: 0.00027799494150074027 - syst_JES_Zjet_OOC: 0.0005425590912518193 - syst_JES_Zjet_Stat1: 2.9246871200181394e-05 - syst_JES_Zjet_Stat10: 4.363719141970528e-05 - syst_JES_Zjet_Stat11: 5.8544459174203665e-05 - syst_JES_Zjet_Stat12: 0.00017593100920531318 - syst_JES_Zjet_Stat13: 0.00029834622085758017 - syst_JES_Zjet_Stat2: 2.443764718625752e-06 - syst_JES_Zjet_Stat3: 1.7472066277346822e-05 - syst_JES_Zjet_Stat4: 1.713084060984749e-05 - syst_JES_Zjet_Stat5: 3.0400774250008836e-05 - syst_JES_Zjet_Stat6: 1.8407598295269262e-05 - syst_JES_Zjet_Stat7: 1.8805791661081437e-05 - syst_JES_Zjet_Stat8: 1.6147342660636146e-05 - syst_JES_Zjet_Stat9: 3.059283045094063e-05 - syst_JES_Zjet_Veto: 0.00012147509744799549 - syst_JES_Zjet_dPhi: 0.00010466023170239973 +- stat: 7.06300000e-04 + syst_JER_CROSS_CALIB_FORWARD: 2.77100000e-18 + syst_JER_NOISE_FORWARD: 2.11400000e-18 + syst_JER_NP0: 1.74937725e-04 + syst_JER_NP1: 2.26852375e-05 + syst_JER_NP2: 1.16020995e-04 + syst_JER_NP3: 1.41211041e-05 + syst_JER_NP4: 1.35504723e-05 + syst_JER_NP5: 3.93830557e-26 + syst_JER_NP6: 2.67551840e-09 + syst_JER_NP7: 2.50281342e-26 + syst_JER_NP8: 3.30122083e-05 + syst_JES_EtaIntercalibration_Modelling: 2.48158473e-03 + syst_JES_EtaIntercalibration_NonClosure: 4.55456178e-06 + syst_JES_EtaIntercalibration_Stat0: 2.72094689e-07 + syst_JES_EtaIntercalibration_Stat1: 2.72094689e-07 + syst_JES_EtaIntercalibration_Stat10: 2.32213716e-06 + syst_JES_EtaIntercalibration_Stat100: 5.12151041e-07 + syst_JES_EtaIntercalibration_Stat101: 4.01949559e-13 + syst_JES_EtaIntercalibration_Stat102: 3.73119043e-14 + syst_JES_EtaIntercalibration_Stat103: 1.76755791e-07 + syst_JES_EtaIntercalibration_Stat104: 3.74159327e-14 + syst_JES_EtaIntercalibration_Stat105: 1.80134491e-13 + syst_JES_EtaIntercalibration_Stat106: 2.88378476e-14 + syst_JES_EtaIntercalibration_Stat107: 1.66623288e-07 + syst_JES_EtaIntercalibration_Stat108: 1.68268736e-07 + syst_JES_EtaIntercalibration_Stat109: 1.40541328e-09 + syst_JES_EtaIntercalibration_Stat11: 2.38070383e-06 + syst_JES_EtaIntercalibration_Stat110: 1.40447966e-09 + syst_JES_EtaIntercalibration_Stat111: 8.27225820e-13 + syst_JES_EtaIntercalibration_Stat112: 4.60587697e-12 + syst_JES_EtaIntercalibration_Stat113: 1.49229628e-07 + syst_JES_EtaIntercalibration_Stat114: 1.55070806e-07 + syst_JES_EtaIntercalibration_Stat115: 3.66252556e-07 + syst_JES_EtaIntercalibration_Stat116: 2.54329544e-07 + syst_JES_EtaIntercalibration_Stat117: 1.01577553e-06 + syst_JES_EtaIntercalibration_Stat118: 3.79635124e-07 + syst_JES_EtaIntercalibration_Stat119: 6.23278420e-07 + syst_JES_EtaIntercalibration_Stat12: 7.99687858e-07 + syst_JES_EtaIntercalibration_Stat120: 1.38146565e-07 + syst_JES_EtaIntercalibration_Stat121: 1.09739257e-10 + syst_JES_EtaIntercalibration_Stat122: 2.24267012e-09 + syst_JES_EtaIntercalibration_Stat123: 1.21816108e-12 + syst_JES_EtaIntercalibration_Stat124: 1.17602643e-12 + syst_JES_EtaIntercalibration_Stat125: 4.38595221e-12 + syst_JES_EtaIntercalibration_Stat126: 1.13994925e-07 + syst_JES_EtaIntercalibration_Stat127: 4.58820259e-14 + syst_JES_EtaIntercalibration_Stat128: 2.72248952e-07 + syst_JES_EtaIntercalibration_Stat129: 2.20825322e-07 + syst_JES_EtaIntercalibration_Stat13: 2.72094689e-07 + syst_JES_EtaIntercalibration_Stat130: 8.24286278e-11 + syst_JES_EtaIntercalibration_Stat131: 1.47058311e-07 + syst_JES_EtaIntercalibration_Stat132: 5.73212350e-09 + syst_JES_EtaIntercalibration_Stat133: 7.20786174e-07 + syst_JES_EtaIntercalibration_Stat134: 2.42558529e-07 + syst_JES_EtaIntercalibration_Stat135: 1.74673436e-07 + syst_JES_EtaIntercalibration_Stat136: 6.07216323e-07 + syst_JES_EtaIntercalibration_Stat137: 2.58747888e-07 + syst_JES_EtaIntercalibration_Stat138: 3.56698052e-07 + syst_JES_EtaIntercalibration_Stat139: 2.20229017e-07 + syst_JES_EtaIntercalibration_Stat14: 2.72094689e-07 + syst_JES_EtaIntercalibration_Stat140: 3.38308764e-07 + syst_JES_EtaIntercalibration_Stat141: 4.22397017e-08 + syst_JES_EtaIntercalibration_Stat142: 1.54727217e-07 + syst_JES_EtaIntercalibration_Stat143: 1.92269780e-11 + syst_JES_EtaIntercalibration_Stat144: 4.34128316e-10 + syst_JES_EtaIntercalibration_Stat145: 9.04477795e-08 + syst_JES_EtaIntercalibration_Stat146: 4.22415766e-07 + syst_JES_EtaIntercalibration_Stat147: 5.05557801e-11 + syst_JES_EtaIntercalibration_Stat148: 3.67947220e-09 + syst_JES_EtaIntercalibration_Stat149: 2.99927208e-07 + syst_JES_EtaIntercalibration_Stat15: 1.66623272e-07 + syst_JES_EtaIntercalibration_Stat150: 5.51336085e-09 + syst_JES_EtaIntercalibration_Stat151: 4.05594659e-07 + syst_JES_EtaIntercalibration_Stat152: 2.65408723e-07 + syst_JES_EtaIntercalibration_Stat153: 2.96857946e-07 + syst_JES_EtaIntercalibration_Stat154: 5.98639641e-07 + syst_JES_EtaIntercalibration_Stat155: 3.83629389e-09 + syst_JES_EtaIntercalibration_Stat156: 6.70641924e-07 + syst_JES_EtaIntercalibration_Stat157: 3.39868224e-07 + syst_JES_EtaIntercalibration_Stat158: 5.75311439e-07 + syst_JES_EtaIntercalibration_Stat159: 4.37547903e-08 + syst_JES_EtaIntercalibration_Stat16: 1.66623272e-07 + syst_JES_EtaIntercalibration_Stat160: 3.25141304e-07 + syst_JES_EtaIntercalibration_Stat161: 1.40215175e-07 + syst_JES_EtaIntercalibration_Stat162: 1.73617653e-07 + syst_JES_EtaIntercalibration_Stat163: 1.24778689e-07 + syst_JES_EtaIntercalibration_Stat164: 7.00869189e-08 + syst_JES_EtaIntercalibration_Stat165: 3.49940540e-09 + syst_JES_EtaIntercalibration_Stat166: 1.35043394e-07 + syst_JES_EtaIntercalibration_Stat167: 2.90787070e-07 + syst_JES_EtaIntercalibration_Stat168: 2.25486686e-07 + syst_JES_EtaIntercalibration_Stat169: 1.11407861e-06 + syst_JES_EtaIntercalibration_Stat17: 1.66623335e-07 + syst_JES_EtaIntercalibration_Stat170: 5.16538912e-07 + syst_JES_EtaIntercalibration_Stat171: 8.34881745e-07 + syst_JES_EtaIntercalibration_Stat172: 7.38617851e-07 + syst_JES_EtaIntercalibration_Stat173: 8.96251766e-07 + syst_JES_EtaIntercalibration_Stat174: 7.43205347e-07 + syst_JES_EtaIntercalibration_Stat175: 4.51209619e-07 + syst_JES_EtaIntercalibration_Stat176: 1.21501656e-06 + syst_JES_EtaIntercalibration_Stat177: 1.03141423e-06 + syst_JES_EtaIntercalibration_Stat178: 1.66684215e-07 + syst_JES_EtaIntercalibration_Stat179: 1.80383211e-07 + syst_JES_EtaIntercalibration_Stat18: 1.66623272e-07 + syst_JES_EtaIntercalibration_Stat180: 3.25139409e-09 + syst_JES_EtaIntercalibration_Stat181: 4.33122786e-11 + syst_JES_EtaIntercalibration_Stat182: 8.24303784e-08 + syst_JES_EtaIntercalibration_Stat183: 5.26758775e-07 + syst_JES_EtaIntercalibration_Stat184: 4.45124485e-07 + syst_JES_EtaIntercalibration_Stat185: 1.16252293e-06 + syst_JES_EtaIntercalibration_Stat186: 3.07352111e-06 + syst_JES_EtaIntercalibration_Stat187: 5.32928147e-06 + syst_JES_EtaIntercalibration_Stat188: 4.66915354e-06 + syst_JES_EtaIntercalibration_Stat189: 3.89495529e-06 + syst_JES_EtaIntercalibration_Stat19: 2.72094689e-07 + syst_JES_EtaIntercalibration_Stat190: 3.85148293e-06 + syst_JES_EtaIntercalibration_Stat191: 6.59165965e-06 + syst_JES_EtaIntercalibration_Stat192: 4.90151719e-06 + syst_JES_EtaIntercalibration_Stat193: 3.70990063e-06 + syst_JES_EtaIntercalibration_Stat194: 1.70219035e-06 + syst_JES_EtaIntercalibration_Stat195: 2.64303390e-08 + syst_JES_EtaIntercalibration_Stat196: 6.35143775e-08 + syst_JES_EtaIntercalibration_Stat197: 2.86144542e-07 + syst_JES_EtaIntercalibration_Stat198: 8.69584562e-07 + syst_JES_EtaIntercalibration_Stat199: 2.06576396e-06 + syst_JES_EtaIntercalibration_Stat2: 2.72094689e-07 + syst_JES_EtaIntercalibration_Stat20: 2.72094689e-07 + syst_JES_EtaIntercalibration_Stat200: 3.18870554e-06 + syst_JES_EtaIntercalibration_Stat201: 6.18330759e-06 + syst_JES_EtaIntercalibration_Stat202: 1.09488071e-05 + syst_JES_EtaIntercalibration_Stat203: 1.06615943e-05 + syst_JES_EtaIntercalibration_Stat204: 9.97709407e-06 + syst_JES_EtaIntercalibration_Stat205: 8.89843953e-06 + syst_JES_EtaIntercalibration_Stat206: 1.37671508e-05 + syst_JES_EtaIntercalibration_Stat207: 9.95966159e-06 + syst_JES_EtaIntercalibration_Stat208: 7.64203747e-06 + syst_JES_EtaIntercalibration_Stat209: 2.81589182e-06 + syst_JES_EtaIntercalibration_Stat21: 2.72094689e-07 + syst_JES_EtaIntercalibration_Stat210: 1.41058905e-06 + syst_JES_EtaIntercalibration_Stat211: 1.46578406e-07 + syst_JES_EtaIntercalibration_Stat212: 1.83943796e-07 + syst_JES_EtaIntercalibration_Stat213: 1.25755526e-06 + syst_JES_EtaIntercalibration_Stat214: 5.09247936e-06 + syst_JES_EtaIntercalibration_Stat215: 1.25561504e-05 + syst_JES_EtaIntercalibration_Stat216: 1.45146418e-05 + syst_JES_EtaIntercalibration_Stat217: 9.70244313e-06 + syst_JES_EtaIntercalibration_Stat218: 1.06942004e-05 + syst_JES_EtaIntercalibration_Stat219: 1.63992828e-05 + syst_JES_EtaIntercalibration_Stat22: 2.72094689e-07 + syst_JES_EtaIntercalibration_Stat220: 1.10431377e-05 + syst_JES_EtaIntercalibration_Stat221: 5.34263706e-06 + syst_JES_EtaIntercalibration_Stat222: 2.95386945e-06 + syst_JES_EtaIntercalibration_Stat223: 1.36631671e-06 + syst_JES_EtaIntercalibration_Stat224: 4.30280672e-07 + syst_JES_EtaIntercalibration_Stat225: 7.14147380e-06 + syst_JES_EtaIntercalibration_Stat226: 1.36050747e-05 + syst_JES_EtaIntercalibration_Stat227: 3.38438296e-05 + syst_JES_EtaIntercalibration_Stat228: 3.49759957e-05 + syst_JES_EtaIntercalibration_Stat229: 2.78559558e-05 + syst_JES_EtaIntercalibration_Stat23: 2.70893941e-07 + syst_JES_EtaIntercalibration_Stat230: 3.03706680e-05 + syst_JES_EtaIntercalibration_Stat231: 4.63413487e-05 + syst_JES_EtaIntercalibration_Stat232: 3.65007458e-05 + syst_JES_EtaIntercalibration_Stat233: 1.68181886e-05 + syst_JES_EtaIntercalibration_Stat234: 6.01456191e-06 + syst_JES_EtaIntercalibration_Stat235: 9.69428852e-07 + syst_JES_EtaIntercalibration_Stat236: 2.37897178e-06 + syst_JES_EtaIntercalibration_Stat237: 3.65352470e-06 + syst_JES_EtaIntercalibration_Stat238: 6.31017258e-06 + syst_JES_EtaIntercalibration_Stat239: 3.78748026e-06 + syst_JES_EtaIntercalibration_Stat24: 1.66623272e-07 + syst_JES_EtaIntercalibration_Stat240: 2.59195718e-06 + syst_JES_EtaIntercalibration_Stat241: 2.94043364e-06 + syst_JES_EtaIntercalibration_Stat242: 4.43693822e-06 + syst_JES_EtaIntercalibration_Stat243: 3.16683596e-06 + syst_JES_EtaIntercalibration_Stat244: 3.56691716e-06 + syst_JES_EtaIntercalibration_Stat245: 1.42335666e-06 + syst_JES_EtaIntercalibration_Stat25: 3.30217748e-13 + syst_JES_EtaIntercalibration_Stat26: 7.50876733e-14 + syst_JES_EtaIntercalibration_Stat27: 7.72726316e-14 + syst_JES_EtaIntercalibration_Stat28: 7.52929220e-14 + syst_JES_EtaIntercalibration_Stat29: 1.49358699e-07 + syst_JES_EtaIntercalibration_Stat3: 2.72094689e-07 + syst_JES_EtaIntercalibration_Stat30: 7.63848820e-14 + syst_JES_EtaIntercalibration_Stat31: 9.42235639e-08 + syst_JES_EtaIntercalibration_Stat32: 1.16497737e-06 + syst_JES_EtaIntercalibration_Stat33: 2.38070383e-06 + syst_JES_EtaIntercalibration_Stat34: 1.16497737e-06 + syst_JES_EtaIntercalibration_Stat35: 4.74998880e-14 + syst_JES_EtaIntercalibration_Stat36: 2.29671275e-07 + syst_JES_EtaIntercalibration_Stat37: 1.70433784e-07 + syst_JES_EtaIntercalibration_Stat38: 7.59696365e-14 + syst_JES_EtaIntercalibration_Stat39: 7.59981544e-14 + syst_JES_EtaIntercalibration_Stat4: 2.72094689e-07 + syst_JES_EtaIntercalibration_Stat40: 1.66623272e-07 + syst_JES_EtaIntercalibration_Stat41: 2.72094689e-07 + syst_JES_EtaIntercalibration_Stat42: 2.72094689e-07 + syst_JES_EtaIntercalibration_Stat43: 2.72094689e-07 + syst_JES_EtaIntercalibration_Stat44: 2.72094689e-07 + syst_JES_EtaIntercalibration_Stat45: 2.72094689e-07 + syst_JES_EtaIntercalibration_Stat46: 7.61594978e-14 + syst_JES_EtaIntercalibration_Stat47: 4.75601187e-14 + syst_JES_EtaIntercalibration_Stat48: 3.32967382e-13 + syst_JES_EtaIntercalibration_Stat49: 1.66363594e-07 + syst_JES_EtaIntercalibration_Stat5: 2.72094689e-07 + syst_JES_EtaIntercalibration_Stat50: 4.41499917e-13 + syst_JES_EtaIntercalibration_Stat51: 1.49226176e-07 + syst_JES_EtaIntercalibration_Stat52: 1.54498932e-07 + syst_JES_EtaIntercalibration_Stat53: 1.00718739e-07 + syst_JES_EtaIntercalibration_Stat54: 1.16497737e-06 + syst_JES_EtaIntercalibration_Stat55: 1.16497737e-06 + syst_JES_EtaIntercalibration_Stat56: 1.16497737e-06 + syst_JES_EtaIntercalibration_Stat57: 1.72684377e-13 + syst_JES_EtaIntercalibration_Stat58: 2.88824787e-14 + syst_JES_EtaIntercalibration_Stat59: 1.08261836e-07 + syst_JES_EtaIntercalibration_Stat6: 1.77188798e-07 + syst_JES_EtaIntercalibration_Stat60: 2.68362157e-07 + syst_JES_EtaIntercalibration_Stat61: 4.57429223e-14 + syst_JES_EtaIntercalibration_Stat62: 1.66276862e-07 + syst_JES_EtaIntercalibration_Stat63: 7.48826749e-14 + syst_JES_EtaIntercalibration_Stat64: 2.72094689e-07 + syst_JES_EtaIntercalibration_Stat65: 2.72094689e-07 + syst_JES_EtaIntercalibration_Stat66: 2.72094689e-07 + syst_JES_EtaIntercalibration_Stat67: 2.72094689e-07 + syst_JES_EtaIntercalibration_Stat68: 2.73984035e-18 + syst_JES_EtaIntercalibration_Stat69: 1.64544838e-07 + syst_JES_EtaIntercalibration_Stat7: 1.66623272e-07 + syst_JES_EtaIntercalibration_Stat70: 1.32068874e-07 + syst_JES_EtaIntercalibration_Stat71: 5.91928552e-07 + syst_JES_EtaIntercalibration_Stat72: 1.55018547e-07 + syst_JES_EtaIntercalibration_Stat73: 1.55018547e-07 + syst_JES_EtaIntercalibration_Stat74: 1.34233938e-07 + syst_JES_EtaIntercalibration_Stat75: 1.37091821e-06 + syst_JES_EtaIntercalibration_Stat76: 1.16497737e-06 + syst_JES_EtaIntercalibration_Stat77: 1.47137716e-07 + syst_JES_EtaIntercalibration_Stat78: 4.59792998e-07 + syst_JES_EtaIntercalibration_Stat79: 7.09707818e-07 + syst_JES_EtaIntercalibration_Stat8: 4.72960178e-14 + syst_JES_EtaIntercalibration_Stat80: 1.02684632e-06 + syst_JES_EtaIntercalibration_Stat81: 3.33684589e-14 + syst_JES_EtaIntercalibration_Stat82: 2.67316697e-14 + syst_JES_EtaIntercalibration_Stat83: 6.99968476e-14 + syst_JES_EtaIntercalibration_Stat84: 4.56911097e-14 + syst_JES_EtaIntercalibration_Stat85: 4.57960547e-14 + syst_JES_EtaIntercalibration_Stat86: 1.66623288e-07 + syst_JES_EtaIntercalibration_Stat87: 1.66623288e-07 + syst_JES_EtaIntercalibration_Stat88: 4.59512905e-14 + syst_JES_EtaIntercalibration_Stat89: 1.62033353e-07 + syst_JES_EtaIntercalibration_Stat9: 7.99774445e-07 + syst_JES_EtaIntercalibration_Stat90: 4.81337039e-13 + syst_JES_EtaIntercalibration_Stat91: 4.87712640e-13 + syst_JES_EtaIntercalibration_Stat92: 6.80614371e-13 + syst_JES_EtaIntercalibration_Stat93: 1.55018548e-07 + syst_JES_EtaIntercalibration_Stat94: 1.49143863e-07 + syst_JES_EtaIntercalibration_Stat95: 1.37089880e-07 + syst_JES_EtaIntercalibration_Stat96: 1.16489083e-06 + syst_JES_EtaIntercalibration_Stat97: 1.10965205e-06 + syst_JES_EtaIntercalibration_Stat98: 1.09984148e-06 + syst_JES_EtaIntercalibration_Stat99: 1.15952141e-06 + syst_JES_EtaIntercalibration_TotalStat_MJB: 6.79196945e-04 + syst_JES_Flavour_Comp: 1.80273313e-03 + syst_JES_Flavour_Response: 2.04193064e-04 + syst_JES_Gjet_Generator: 2.39502672e-03 + syst_JES_Gjet_OOC: 1.98029089e-03 + syst_JES_Gjet_Purity: 3.79623913e-04 + syst_JES_Gjet_Stat1: 7.16786349e-06 + syst_JES_Gjet_Stat10: 3.63686634e-05 + syst_JES_Gjet_Stat11: 4.11367500e-05 + syst_JES_Gjet_Stat12: 1.40709931e-04 + syst_JES_Gjet_Stat13: 4.31492836e-04 + syst_JES_Gjet_Stat14: 1.08880302e-03 + syst_JES_Gjet_Stat15: 9.06257749e-04 + syst_JES_Gjet_Stat2: 9.37801337e-06 + syst_JES_Gjet_Stat3: 1.46220123e-05 + syst_JES_Gjet_Stat4: 7.58809192e-06 + syst_JES_Gjet_Stat5: 9.27579715e-06 + syst_JES_Gjet_Stat6: 2.09797831e-05 + syst_JES_Gjet_Stat7: 2.28687079e-05 + syst_JES_Gjet_Stat8: 1.63455070e-05 + syst_JES_Gjet_Stat9: 2.44071726e-05 + syst_JES_Gjet_Veto: 1.95931901e-03 + syst_JES_Gjet_dPhi: 2.02044376e-04 + syst_JES_LArESZee: 3.64441737e-03 + syst_JES_LArEsmear: 3.04122442e-04 + syst_JES_LAr_JVT: 3.75465136e-04 + syst_JES_MJB_Alpha: 2.01316834e-05 + syst_JES_MJB_Asym: 3.28902368e-04 + syst_JES_MJB_Beta: 2.37282759e-05 + syst_JES_MJB_Fragmentation: 2.58200097e-04 + syst_JES_MJB_Stat1: 1.51655687e-06 + syst_JES_MJB_Stat10: 3.29452091e-05 + syst_JES_MJB_Stat11: 3.04052738e-05 + syst_JES_MJB_Stat12: 3.49274673e-05 + syst_JES_MJB_Stat13: 2.81945261e-05 + syst_JES_MJB_Stat14: 3.89818227e-06 + syst_JES_MJB_Stat15: 9.21172709e-06 + syst_JES_MJB_Stat16: 2.30878020e-05 + syst_JES_MJB_Stat2: 4.42657008e-06 + syst_JES_MJB_Stat3: 1.18663753e-05 + syst_JES_MJB_Stat4: 9.42405040e-06 + syst_JES_MJB_Stat5: 1.16433988e-05 + syst_JES_MJB_Stat6: 1.31536046e-05 + syst_JES_MJB_Stat7: 1.80655106e-05 + syst_JES_MJB_Stat8: 1.98166010e-05 + syst_JES_MJB_Stat9: 2.62371354e-05 + syst_JES_MJB_Threshold: 2.46504904e-04 + syst_JES_Pileup_MuOffset: 4.56865702e-04 + syst_JES_Pileup_NPVOffset: 4.70244817e-04 + syst_JES_Pileup_Pt_term: 3.08198443e-04 + syst_JES_Pileup_Rho_topology: 6.70852078e-04 + syst_JES_PunchThrough_MC15: 3.36532361e-04 + syst_JES_SingleParticle_HighPt: 3.61455153e-07 + syst_JES_Zjet_MC: 1.00012391e-03 + syst_JES_Zjet_MuScale: 6.98409098e-05 + syst_JES_Zjet_MuSmearID: 1.76645209e-05 + syst_JES_Zjet_MuSmearMS: 2.77994942e-04 + syst_JES_Zjet_OOC: 5.42559091e-04 + syst_JES_Zjet_Stat1: 2.92468712e-05 + syst_JES_Zjet_Stat10: 4.36371914e-05 + syst_JES_Zjet_Stat11: 5.85444592e-05 + syst_JES_Zjet_Stat12: 1.75931009e-04 + syst_JES_Zjet_Stat13: 2.98346221e-04 + syst_JES_Zjet_Stat2: 2.44376472e-06 + syst_JES_Zjet_Stat3: 1.74720663e-05 + syst_JES_Zjet_Stat4: 1.71308406e-05 + syst_JES_Zjet_Stat5: 3.04007743e-05 + syst_JES_Zjet_Stat6: 1.84075983e-05 + syst_JES_Zjet_Stat7: 1.88057917e-05 + syst_JES_Zjet_Stat8: 1.61473427e-05 + syst_JES_Zjet_Stat9: 3.05928305e-05 + syst_JES_Zjet_Veto: 1.21475097e-04 + syst_JES_Zjet_dPhi: 1.04660232e-04 syst_PRW: 0.0 - syst_Unfolding_bias: 6.381e-34 - syst_cleaning: 0.0011280846909696098 + syst_Unfolding_bias: 6.38100000e-34 + syst_cleaning: 1.12808469e-03 syst_lumi: 0.002253 -- stat: 0.0004706 - syst_JER_CROSS_CALIB_FORWARD: 4.299e-19 - syst_JER_NOISE_FORWARD: 3.259e-19 - syst_JER_NP0: 9.296905009195265e-05 - syst_JER_NP1: 1.3550061697276512e-05 - syst_JER_NP2: 6.321400715031439e-05 - syst_JER_NP3: 7.1028795569121115e-06 - syst_JER_NP4: 7.137451786176913e-06 - syst_JER_NP5: 1.0854007773629057e-19 - syst_JER_NP6: 1.1144707219124243e-07 - syst_JER_NP7: 6.897892341143054e-20 - syst_JER_NP8: 1.7480774439366238e-05 - syst_JES_EtaIntercalibration_Modelling: 0.0013406647707387557 - syst_JES_EtaIntercalibration_NonClosure: 6.70666079356933e-07 - syst_JES_EtaIntercalibration_Stat0: 1.4325983386839454e-07 - syst_JES_EtaIntercalibration_Stat1: 1.4325983386839454e-07 - syst_JES_EtaIntercalibration_Stat10: 1.1182344848912503e-06 - syst_JES_EtaIntercalibration_Stat100: 2.6967922562610855e-07 - syst_JES_EtaIntercalibration_Stat101: 2.543825758914537e-14 - syst_JES_EtaIntercalibration_Stat102: 2.483173775634722e-15 - syst_JES_EtaIntercalibration_Stat103: 9.306309032022438e-08 - syst_JES_EtaIntercalibration_Stat104: 2.934100591322663e-15 - syst_JES_EtaIntercalibration_Stat105: 1.2147038599462504e-14 - syst_JES_EtaIntercalibration_Stat106: 1.9441484668279916e-15 - syst_JES_EtaIntercalibration_Stat107: 8.772837340336382e-08 - syst_JES_EtaIntercalibration_Stat108: 8.859439880714807e-08 - syst_JES_EtaIntercalibration_Stat109: 1.0393965066175419e-10 - syst_JES_EtaIntercalibration_Stat11: 1.1486960955790032e-06 - syst_JES_EtaIntercalibration_Stat110: 1.0391845374216603e-10 - syst_JES_EtaIntercalibration_Stat111: 5.206506545419874e-14 - syst_JES_EtaIntercalibration_Stat112: 2.878204563278121e-13 - syst_JES_EtaIntercalibration_Stat113: 3.467215318883441e-08 - syst_JES_EtaIntercalibration_Stat114: 8.617667477339794e-08 - syst_JES_EtaIntercalibration_Stat115: 5.897281492348826e-08 - syst_JES_EtaIntercalibration_Stat116: 1.3398104044975917e-07 - syst_JES_EtaIntercalibration_Stat117: 4.7284934564298595e-07 - syst_JES_EtaIntercalibration_Stat118: 2.409721560678744e-07 - syst_JES_EtaIntercalibration_Stat119: 4.379490420288006e-07 - syst_JES_EtaIntercalibration_Stat12: 4.1439315571153224e-07 - syst_JES_EtaIntercalibration_Stat120: 7.309016554913528e-08 - syst_JES_EtaIntercalibration_Stat121: 7.275404117298227e-12 - syst_JES_EtaIntercalibration_Stat122: 1.685083835017198e-10 - syst_JES_EtaIntercalibration_Stat123: 7.742290294221729e-14 - syst_JES_EtaIntercalibration_Stat124: 7.471322021570213e-14 - syst_JES_EtaIntercalibration_Stat125: 2.7884912026936717e-13 - syst_JES_EtaIntercalibration_Stat126: 6.002422078927133e-08 - syst_JES_EtaIntercalibration_Stat127: 3.3271829987994354e-15 - syst_JES_EtaIntercalibration_Stat128: 1.435525887649094e-07 - syst_JES_EtaIntercalibration_Stat129: 1.1637190879745292e-07 - syst_JES_EtaIntercalibration_Stat13: 1.4325983386839454e-07 - syst_JES_EtaIntercalibration_Stat130: 5.427365544165972e-12 - syst_JES_EtaIntercalibration_Stat131: 3.5003315425113664e-08 - syst_JES_EtaIntercalibration_Stat132: 2.655768362540888e-09 - syst_JES_EtaIntercalibration_Stat133: 1.897004744327225e-07 - syst_JES_EtaIntercalibration_Stat134: 4.65065551831137e-08 - syst_JES_EtaIntercalibration_Stat135: 1.7114654334809105e-07 - syst_JES_EtaIntercalibration_Stat136: 2.391997309127876e-07 - syst_JES_EtaIntercalibration_Stat137: 4.5368579909448346e-08 - syst_JES_EtaIntercalibration_Stat138: 3.50030388216509e-08 - syst_JES_EtaIntercalibration_Stat139: 1.1549438114038276e-07 - syst_JES_EtaIntercalibration_Stat14: 1.4325983386839454e-07 - syst_JES_EtaIntercalibration_Stat140: 1.6009773350987828e-07 - syst_JES_EtaIntercalibration_Stat141: 6.1750455059052e-09 - syst_JES_EtaIntercalibration_Stat142: 8.169131738858223e-08 - syst_JES_EtaIntercalibration_Stat143: 1.2265916221383546e-12 - syst_JES_EtaIntercalibration_Stat144: 2.8949242075570823e-11 - syst_JES_EtaIntercalibration_Stat145: 4.741489652100686e-08 - syst_JES_EtaIntercalibration_Stat146: 2.2166802528100456e-07 - syst_JES_EtaIntercalibration_Stat147: 3.33779844003319e-12 - syst_JES_EtaIntercalibration_Stat148: 3.649427763362361e-10 - syst_JES_EtaIntercalibration_Stat149: 1.1300695321527787e-07 - syst_JES_EtaIntercalibration_Stat15: 8.772837229401402e-08 - syst_JES_EtaIntercalibration_Stat150: 2.6408045336533866e-09 - syst_JES_EtaIntercalibration_Stat151: 2.7373847007682353e-07 - syst_JES_EtaIntercalibration_Stat152: 5.4083138284959016e-08 - syst_JES_EtaIntercalibration_Stat153: 2.0773365350852516e-07 - syst_JES_EtaIntercalibration_Stat154: 2.9810443976356676e-07 - syst_JES_EtaIntercalibration_Stat155: 8.12422624007973e-09 - syst_JES_EtaIntercalibration_Stat156: 4.94501632252109e-07 - syst_JES_EtaIntercalibration_Stat157: 2.2064510888528665e-07 - syst_JES_EtaIntercalibration_Stat158: 5.147851687840278e-07 - syst_JES_EtaIntercalibration_Stat159: 6.197785572283055e-09 - syst_JES_EtaIntercalibration_Stat16: 8.772837229401402e-08 - syst_JES_EtaIntercalibration_Stat160: 1.712021594489976e-07 - syst_JES_EtaIntercalibration_Stat161: 7.343065665661867e-08 - syst_JES_EtaIntercalibration_Stat162: 9.141629070371867e-08 - syst_JES_EtaIntercalibration_Stat163: 6.572163594441688e-08 - syst_JES_EtaIntercalibration_Stat164: 1.8385686500215207e-08 - syst_JES_EtaIntercalibration_Stat165: 2.9883896583277087e-10 - syst_JES_EtaIntercalibration_Stat166: 7.652508607162751e-08 - syst_JES_EtaIntercalibration_Stat167: 5.2267229695096714e-08 - syst_JES_EtaIntercalibration_Stat168: 9.695086894436532e-08 - syst_JES_EtaIntercalibration_Stat169: 2.3259263272941386e-07 - syst_JES_EtaIntercalibration_Stat17: 8.772837648814656e-08 - syst_JES_EtaIntercalibration_Stat170: 1.7862021918024845e-07 - syst_JES_EtaIntercalibration_Stat171: 4.674617631421847e-07 - syst_JES_EtaIntercalibration_Stat172: 5.550128917421649e-07 - syst_JES_EtaIntercalibration_Stat173: 3.277199430916587e-07 - syst_JES_EtaIntercalibration_Stat174: 3.9036804108430806e-07 - syst_JES_EtaIntercalibration_Stat175: 2.7643257315302043e-07 - syst_JES_EtaIntercalibration_Stat176: 5.512645314864725e-07 - syst_JES_EtaIntercalibration_Stat177: 6.306041791012806e-07 - syst_JES_EtaIntercalibration_Stat178: 8.85620755829915e-08 - syst_JES_EtaIntercalibration_Stat179: 8.934816479854245e-08 - syst_JES_EtaIntercalibration_Stat18: 8.772837229401402e-08 - syst_JES_EtaIntercalibration_Stat180: 2.926353308727434e-10 - syst_JES_EtaIntercalibration_Stat181: 2.846775500456613e-12 - syst_JES_EtaIntercalibration_Stat182: 6.902582469626857e-08 - syst_JES_EtaIntercalibration_Stat183: 7.51932131245899e-08 - syst_JES_EtaIntercalibration_Stat184: 2.661220161880636e-08 - syst_JES_EtaIntercalibration_Stat185: 3.4476489362317615e-07 - syst_JES_EtaIntercalibration_Stat186: 1.355165203951164e-06 - syst_JES_EtaIntercalibration_Stat187: 2.5678821526697833e-06 - syst_JES_EtaIntercalibration_Stat188: 2.6224642514246027e-06 - syst_JES_EtaIntercalibration_Stat189: 1.913922412220516e-06 - syst_JES_EtaIntercalibration_Stat19: 1.4325983386839454e-07 - syst_JES_EtaIntercalibration_Stat190: 1.7703296303231216e-06 - syst_JES_EtaIntercalibration_Stat191: 3.3215235705922662e-06 - syst_JES_EtaIntercalibration_Stat192: 2.0531195776184103e-06 - syst_JES_EtaIntercalibration_Stat193: 1.6036201568638377e-06 - syst_JES_EtaIntercalibration_Stat194: 5.197053780749244e-07 - syst_JES_EtaIntercalibration_Stat195: 3.61753407033023e-08 - syst_JES_EtaIntercalibration_Stat196: 1.8699152405670237e-08 - syst_JES_EtaIntercalibration_Stat197: 1.7269549704610133e-07 - syst_JES_EtaIntercalibration_Stat198: 1.6498238542341423e-07 - syst_JES_EtaIntercalibration_Stat199: 7.029809172374453e-07 - syst_JES_EtaIntercalibration_Stat2: 1.4325983386839454e-07 - syst_JES_EtaIntercalibration_Stat20: 1.4325983386839454e-07 - syst_JES_EtaIntercalibration_Stat200: 1.0372385637876754e-06 - syst_JES_EtaIntercalibration_Stat201: 2.85546856925444e-06 - syst_JES_EtaIntercalibration_Stat202: 5.460227193075395e-06 - syst_JES_EtaIntercalibration_Stat203: 6.305136219781457e-06 - syst_JES_EtaIntercalibration_Stat204: 4.435035679676094e-06 - syst_JES_EtaIntercalibration_Stat205: 4.903367286875418e-06 - syst_JES_EtaIntercalibration_Stat206: 6.412695844962553e-06 - syst_JES_EtaIntercalibration_Stat207: 5.6147578754564286e-06 - syst_JES_EtaIntercalibration_Stat208: 3.422502885316534e-06 - syst_JES_EtaIntercalibration_Stat209: 1.1693722707076647e-06 - syst_JES_EtaIntercalibration_Stat21: 1.4325983386839454e-07 - syst_JES_EtaIntercalibration_Stat210: 7.949105558960706e-07 - syst_JES_EtaIntercalibration_Stat211: 2.0270072402127722e-07 - syst_JES_EtaIntercalibration_Stat212: 9.685628121583194e-08 - syst_JES_EtaIntercalibration_Stat213: 4.1564141997640224e-07 - syst_JES_EtaIntercalibration_Stat214: 2.3422452903144025e-06 - syst_JES_EtaIntercalibration_Stat215: 6.676838679345188e-06 - syst_JES_EtaIntercalibration_Stat216: 8.517358319925257e-06 - syst_JES_EtaIntercalibration_Stat217: 4.963458673143154e-06 - syst_JES_EtaIntercalibration_Stat218: 6.0624804123394905e-06 - syst_JES_EtaIntercalibration_Stat219: 7.723868719754368e-06 - syst_JES_EtaIntercalibration_Stat22: 1.4325983386839454e-07 - syst_JES_EtaIntercalibration_Stat220: 6.595414827742073e-06 - syst_JES_EtaIntercalibration_Stat221: 2.1075891440221456e-06 - syst_JES_EtaIntercalibration_Stat222: 1.2380307619360677e-06 - syst_JES_EtaIntercalibration_Stat223: 6.6278587724468e-07 - syst_JES_EtaIntercalibration_Stat224: 2.3110051384624828e-07 - syst_JES_EtaIntercalibration_Stat225: 3.1671146217811568e-06 - syst_JES_EtaIntercalibration_Stat226: 7.161383996826312e-06 - syst_JES_EtaIntercalibration_Stat227: 1.8704248180560483e-05 - syst_JES_EtaIntercalibration_Stat228: 2.00668233659441e-05 - syst_JES_EtaIntercalibration_Stat229: 1.580596090087534e-05 - syst_JES_EtaIntercalibration_Stat23: 1.4263825854237004e-07 - syst_JES_EtaIntercalibration_Stat230: 1.63550749004705e-05 - syst_JES_EtaIntercalibration_Stat231: 2.5275357069683504e-05 - syst_JES_EtaIntercalibration_Stat232: 2.078228753049096e-05 - syst_JES_EtaIntercalibration_Stat233: 7.8450249840265e-06 - syst_JES_EtaIntercalibration_Stat234: 2.1911458147907455e-06 - syst_JES_EtaIntercalibration_Stat235: 4.4201936719703004e-07 - syst_JES_EtaIntercalibration_Stat236: 9.062955226488682e-07 - syst_JES_EtaIntercalibration_Stat237: 1.875084731418823e-06 - syst_JES_EtaIntercalibration_Stat238: 3.882007368617427e-06 - syst_JES_EtaIntercalibration_Stat239: 2.5357655648738504e-06 - syst_JES_EtaIntercalibration_Stat24: 8.77283722925129e-08 - syst_JES_EtaIntercalibration_Stat240: 1.6520054479329056e-06 - syst_JES_EtaIntercalibration_Stat241: 1.6709766605192306e-06 - syst_JES_EtaIntercalibration_Stat242: 2.5992638861800855e-06 - syst_JES_EtaIntercalibration_Stat243: 1.6541767589952412e-06 - syst_JES_EtaIntercalibration_Stat244: 1.4907933290701297e-06 - syst_JES_EtaIntercalibration_Stat245: 6.264445386464791e-07 - syst_JES_EtaIntercalibration_Stat25: 2.0108300308765534e-14 - syst_JES_EtaIntercalibration_Stat26: 5.444793008691882e-15 - syst_JES_EtaIntercalibration_Stat27: 5.6250346443377566e-15 - syst_JES_EtaIntercalibration_Stat28: 5.456397660315824e-15 - syst_JES_EtaIntercalibration_Stat29: 3.473568437140688e-08 - syst_JES_EtaIntercalibration_Stat3: 1.4326690502345612e-07 - syst_JES_EtaIntercalibration_Stat30: 5.550887010874928e-15 - syst_JES_EtaIntercalibration_Stat31: 7.54394729235975e-08 - syst_JES_EtaIntercalibration_Stat32: 6.058713724882169e-07 - syst_JES_EtaIntercalibration_Stat33: 1.1485228904977086e-06 - syst_JES_EtaIntercalibration_Stat34: 6.058713724890277e-07 - syst_JES_EtaIntercalibration_Stat35: 3.4592492143346657e-15 - syst_JES_EtaIntercalibration_Stat36: 1.2094382208281663e-07 - syst_JES_EtaIntercalibration_Stat37: 8.974621148327291e-08 - syst_JES_EtaIntercalibration_Stat38: 5.518247236895064e-15 - syst_JES_EtaIntercalibration_Stat39: 5.520174240003662e-15 - syst_JES_EtaIntercalibration_Stat4: 1.4325983386839454e-07 - syst_JES_EtaIntercalibration_Stat40: 8.771105179012412e-08 - syst_JES_EtaIntercalibration_Stat41: 1.432598342174107e-07 - syst_JES_EtaIntercalibration_Stat42: 1.4325983386839454e-07 - syst_JES_EtaIntercalibration_Stat43: 1.4325983386839454e-07 - syst_JES_EtaIntercalibration_Stat44: 1.4325983386839454e-07 - syst_JES_EtaIntercalibration_Stat45: 1.4325983386839454e-07 - syst_JES_EtaIntercalibration_Stat46: 5.533486491354253e-15 - syst_JES_EtaIntercalibration_Stat47: 3.384961345052554e-15 - syst_JES_EtaIntercalibration_Stat48: 2.0353879045221333e-14 - syst_JES_EtaIntercalibration_Stat49: 8.761579709835916e-08 - syst_JES_EtaIntercalibration_Stat5: 1.4325983386839454e-07 - syst_JES_EtaIntercalibration_Stat50: 2.8284415558759984e-14 - syst_JES_EtaIntercalibration_Stat51: 3.472354775580975e-08 - syst_JES_EtaIntercalibration_Stat52: 3.524723393334134e-08 - syst_JES_EtaIntercalibration_Stat53: 7.86524260631614e-08 - syst_JES_EtaIntercalibration_Stat54: 6.058713724875189e-07 - syst_JES_EtaIntercalibration_Stat55: 6.058713725180341e-07 - syst_JES_EtaIntercalibration_Stat56: 6.058713724886247e-07 - syst_JES_EtaIntercalibration_Stat57: 1.1641869406542897e-14 - syst_JES_EtaIntercalibration_Stat58: 1.9494961719200375e-15 - syst_JES_EtaIntercalibration_Stat59: 5.7001792076988985e-08 - syst_JES_EtaIntercalibration_Stat6: 9.501164704978082e-08 - syst_JES_EtaIntercalibration_Stat60: 1.4127375623235902e-07 - syst_JES_EtaIntercalibration_Stat61: 3.31533260218349e-15 - syst_JES_EtaIntercalibration_Stat62: 8.753784670933837e-08 - syst_JES_EtaIntercalibration_Stat63: 5.429808837104673e-15 - syst_JES_EtaIntercalibration_Stat64: 1.4325983386839454e-07 - syst_JES_EtaIntercalibration_Stat65: 1.4325983386839454e-07 - syst_JES_EtaIntercalibration_Stat66: 1.4325983386839454e-07 - syst_JES_EtaIntercalibration_Stat67: 1.4325983386839454e-07 - syst_JES_EtaIntercalibration_Stat68: 2.523896059666483e-19 - syst_JES_EtaIntercalibration_Stat69: 8.662852192488777e-08 - syst_JES_EtaIntercalibration_Stat7: 8.772837225250254e-08 - syst_JES_EtaIntercalibration_Stat70: 6.95158591621162e-08 - syst_JES_EtaIntercalibration_Stat71: 3.1029691389906337e-07 - syst_JES_EtaIntercalibration_Stat72: 3.535115698209436e-08 - syst_JES_EtaIntercalibration_Stat73: 3.534249672608908e-08 - syst_JES_EtaIntercalibration_Stat74: 7.069365371328046e-08 - syst_JES_EtaIntercalibration_Stat75: 7.128255098535904e-07 - syst_JES_EtaIntercalibration_Stat76: 6.058713724890869e-07 - syst_JES_EtaIntercalibration_Stat77: 1.0221697840884664e-07 - syst_JES_EtaIntercalibration_Stat78: 2.544082412187152e-07 - syst_JES_EtaIntercalibration_Stat79: 3.736899617370403e-07 - syst_JES_EtaIntercalibration_Stat8: 3.4428188612961837e-15 - syst_JES_EtaIntercalibration_Stat80: 5.382347884493206e-07 - syst_JES_EtaIntercalibration_Stat81: 2.2821574069288032e-15 - syst_JES_EtaIntercalibration_Stat82: 2.0989063741099147e-15 - syst_JES_EtaIntercalibration_Stat83: 5.25849224469334e-15 - syst_JES_EtaIntercalibration_Stat84: 3.3133519136824975e-15 - syst_JES_EtaIntercalibration_Stat85: 3.3213562402059778e-15 - syst_JES_EtaIntercalibration_Stat86: 8.772837340336392e-08 - syst_JES_EtaIntercalibration_Stat87: 8.772837340336365e-08 - syst_JES_EtaIntercalibration_Stat88: 3.3326363483622135e-15 - syst_JES_EtaIntercalibration_Stat89: 8.529484201719476e-08 - syst_JES_EtaIntercalibration_Stat9: 4.144797571028249e-07 - syst_JES_EtaIntercalibration_Stat90: 3.0935940923726564e-14 - syst_JES_EtaIntercalibration_Stat91: 3.134827144305568e-14 - syst_JES_EtaIntercalibration_Stat92: 4.358771794637214e-14 - syst_JES_EtaIntercalibration_Stat93: 3.535115704214994e-08 - syst_JES_EtaIntercalibration_Stat94: 3.471538573529034e-08 - syst_JES_EtaIntercalibration_Stat95: 7.216577357618274e-08 - syst_JES_EtaIntercalibration_Stat96: 6.058713764086677e-07 - syst_JES_EtaIntercalibration_Stat97: 5.768891850910363e-07 - syst_JES_EtaIntercalibration_Stat98: 5.7122229473297e-07 - syst_JES_EtaIntercalibration_Stat99: 6.077766283766462e-07 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.00041376697246155354 - syst_JES_Flavour_Comp: 0.0010545858653993045 - syst_JES_Flavour_Response: 4.094592378979866e-05 - syst_JES_Gjet_Generator: 0.0013191920737709124 - syst_JES_Gjet_OOC: 0.001098918427363924 - syst_JES_Gjet_Purity: 0.00019785921130945612 - syst_JES_Gjet_Stat1: 3.477598417011372e-06 - syst_JES_Gjet_Stat10: 2.0389763976073878e-05 - syst_JES_Gjet_Stat11: 2.279658527060577e-05 - syst_JES_Gjet_Stat12: 7.164672689662801e-05 - syst_JES_Gjet_Stat13: 0.00022335090664691735 - syst_JES_Gjet_Stat14: 0.0006011485091056951 - syst_JES_Gjet_Stat15: 0.0006691562803262031 - syst_JES_Gjet_Stat2: 4.251953991990035e-06 - syst_JES_Gjet_Stat3: 6.443778452895476e-06 - syst_JES_Gjet_Stat4: 3.6058112471398164e-06 - syst_JES_Gjet_Stat5: 3.966089352246114e-06 - syst_JES_Gjet_Stat6: 1.3913134756409138e-05 - syst_JES_Gjet_Stat7: 1.2872793820690206e-05 - syst_JES_Gjet_Stat8: 8.262767151505601e-06 - syst_JES_Gjet_Stat9: 1.2419730703602232e-05 - syst_JES_Gjet_Veto: 0.001098157924662933 - syst_JES_Gjet_dPhi: 0.00011187182218950399 - syst_JES_LArESZee: 0.0019929979302548213 - syst_JES_LArEsmear: 0.00017120841100833802 - syst_JES_LAr_JVT: 0.0002143078859958261 - syst_JES_MJB_Alpha: 1.3252543152165171e-05 - syst_JES_MJB_Asym: 0.000213573705076257 - syst_JES_MJB_Beta: 1.323677555147023e-05 - syst_JES_MJB_Fragmentation: 0.000126984897133478 - syst_JES_MJB_Stat1: 3.714552297047384e-07 - syst_JES_MJB_Stat10: 2.1835092740815187e-05 - syst_JES_MJB_Stat11: 2.346788017695676e-05 - syst_JES_MJB_Stat12: 3.0179550609642946e-05 - syst_JES_MJB_Stat13: 2.977226351824799e-05 - syst_JES_MJB_Stat14: 1.5495381916880913e-05 - syst_JES_MJB_Stat15: 1.1930395928048658e-05 - syst_JES_MJB_Stat16: 2.445709866276047e-05 - syst_JES_MJB_Stat2: 7.408970019510133e-07 - syst_JES_MJB_Stat3: 3.477600897170347e-06 - syst_JES_MJB_Stat4: 3.3058587397981785e-06 - syst_JES_MJB_Stat5: 4.210291071588757e-06 - syst_JES_MJB_Stat6: 6.395616526184164e-06 - syst_JES_MJB_Stat7: 7.311506958213198e-06 - syst_JES_MJB_Stat8: 9.869618571657165e-06 - syst_JES_MJB_Stat9: 1.4965963884761983e-05 - syst_JES_MJB_Threshold: 0.0001528500163559036 - syst_JES_Pileup_MuOffset: 0.0002590038609750828 - syst_JES_Pileup_NPVOffset: 0.0002679000373273584 - syst_JES_Pileup_Pt_term: 0.0001600625815111077 - syst_JES_Pileup_Rho_topology: 0.0003620357993348172 - syst_JES_PunchThrough_MC15: 0.00024444455404037946 - syst_JES_SingleParticle_HighPt: 1.8612526588295312e-07 - syst_JES_Zjet_MC: 0.0005256219625358134 - syst_JES_Zjet_MuScale: 3.873568477515274e-05 - syst_JES_Zjet_MuSmearID: 9.420565694266986e-06 - syst_JES_Zjet_MuSmearMS: 0.00014505001723543503 - syst_JES_Zjet_OOC: 0.00030065606180484705 - syst_JES_Zjet_Stat1: 2.0572155939521748e-05 - syst_JES_Zjet_Stat10: 2.5983680936310774e-05 - syst_JES_Zjet_Stat11: 3.3575507442181715e-05 - syst_JES_Zjet_Stat12: 9.308648344416069e-05 - syst_JES_Zjet_Stat13: 0.00015310163291095232 - syst_JES_Zjet_Stat2: 1.0166845479301827e-06 - syst_JES_Zjet_Stat3: 1.1740232450850366e-05 - syst_JES_Zjet_Stat4: 1.1480452985400882e-05 - syst_JES_Zjet_Stat5: 1.8509269974799113e-05 - syst_JES_Zjet_Stat6: 9.6036043624256e-06 - syst_JES_Zjet_Stat7: 1.1108933027073302e-05 - syst_JES_Zjet_Stat8: 9.382688847020346e-06 - syst_JES_Zjet_Stat9: 1.7089940666953763e-05 - syst_JES_Zjet_Veto: 6.593885254536963e-05 - syst_JES_Zjet_dPhi: 5.85592595154686e-05 +- stat: 4.70600000e-04 + syst_JER_CROSS_CALIB_FORWARD: 4.29900000e-19 + syst_JER_NOISE_FORWARD: 3.25900000e-19 + syst_JER_NP0: 9.29690501e-05 + syst_JER_NP1: 1.35500617e-05 + syst_JER_NP2: 6.32140072e-05 + syst_JER_NP3: 7.10287956e-06 + syst_JER_NP4: 7.13745179e-06 + syst_JER_NP5: 1.08540078e-19 + syst_JER_NP6: 1.11447072e-07 + syst_JER_NP7: 6.89789234e-20 + syst_JER_NP8: 1.74807744e-05 + syst_JES_EtaIntercalibration_Modelling: 1.34066477e-03 + syst_JES_EtaIntercalibration_NonClosure: 6.70666079e-07 + syst_JES_EtaIntercalibration_Stat0: 1.43259834e-07 + syst_JES_EtaIntercalibration_Stat1: 1.43259834e-07 + syst_JES_EtaIntercalibration_Stat10: 1.11823448e-06 + syst_JES_EtaIntercalibration_Stat100: 2.69679226e-07 + syst_JES_EtaIntercalibration_Stat101: 2.54382576e-14 + syst_JES_EtaIntercalibration_Stat102: 2.48317378e-15 + syst_JES_EtaIntercalibration_Stat103: 9.30630903e-08 + syst_JES_EtaIntercalibration_Stat104: 2.93410059e-15 + syst_JES_EtaIntercalibration_Stat105: 1.21470386e-14 + syst_JES_EtaIntercalibration_Stat106: 1.94414847e-15 + syst_JES_EtaIntercalibration_Stat107: 8.77283734e-08 + syst_JES_EtaIntercalibration_Stat108: 8.85943988e-08 + syst_JES_EtaIntercalibration_Stat109: 1.03939651e-10 + syst_JES_EtaIntercalibration_Stat11: 1.14869610e-06 + syst_JES_EtaIntercalibration_Stat110: 1.03918454e-10 + syst_JES_EtaIntercalibration_Stat111: 5.20650655e-14 + syst_JES_EtaIntercalibration_Stat112: 2.87820456e-13 + syst_JES_EtaIntercalibration_Stat113: 3.46721532e-08 + syst_JES_EtaIntercalibration_Stat114: 8.61766748e-08 + syst_JES_EtaIntercalibration_Stat115: 5.89728149e-08 + syst_JES_EtaIntercalibration_Stat116: 1.33981040e-07 + syst_JES_EtaIntercalibration_Stat117: 4.72849346e-07 + syst_JES_EtaIntercalibration_Stat118: 2.40972156e-07 + syst_JES_EtaIntercalibration_Stat119: 4.37949042e-07 + syst_JES_EtaIntercalibration_Stat12: 4.14393156e-07 + syst_JES_EtaIntercalibration_Stat120: 7.30901655e-08 + syst_JES_EtaIntercalibration_Stat121: 7.27540412e-12 + syst_JES_EtaIntercalibration_Stat122: 1.68508384e-10 + syst_JES_EtaIntercalibration_Stat123: 7.74229029e-14 + syst_JES_EtaIntercalibration_Stat124: 7.47132202e-14 + syst_JES_EtaIntercalibration_Stat125: 2.78849120e-13 + syst_JES_EtaIntercalibration_Stat126: 6.00242208e-08 + syst_JES_EtaIntercalibration_Stat127: 3.32718300e-15 + syst_JES_EtaIntercalibration_Stat128: 1.43552589e-07 + syst_JES_EtaIntercalibration_Stat129: 1.16371909e-07 + syst_JES_EtaIntercalibration_Stat13: 1.43259834e-07 + syst_JES_EtaIntercalibration_Stat130: 5.42736554e-12 + syst_JES_EtaIntercalibration_Stat131: 3.50033154e-08 + syst_JES_EtaIntercalibration_Stat132: 2.65576836e-09 + syst_JES_EtaIntercalibration_Stat133: 1.89700474e-07 + syst_JES_EtaIntercalibration_Stat134: 4.65065552e-08 + syst_JES_EtaIntercalibration_Stat135: 1.71146543e-07 + syst_JES_EtaIntercalibration_Stat136: 2.39199731e-07 + syst_JES_EtaIntercalibration_Stat137: 4.53685799e-08 + syst_JES_EtaIntercalibration_Stat138: 3.50030388e-08 + syst_JES_EtaIntercalibration_Stat139: 1.15494381e-07 + syst_JES_EtaIntercalibration_Stat14: 1.43259834e-07 + syst_JES_EtaIntercalibration_Stat140: 1.60097734e-07 + syst_JES_EtaIntercalibration_Stat141: 6.17504551e-09 + syst_JES_EtaIntercalibration_Stat142: 8.16913174e-08 + syst_JES_EtaIntercalibration_Stat143: 1.22659162e-12 + syst_JES_EtaIntercalibration_Stat144: 2.89492421e-11 + syst_JES_EtaIntercalibration_Stat145: 4.74148965e-08 + syst_JES_EtaIntercalibration_Stat146: 2.21668025e-07 + syst_JES_EtaIntercalibration_Stat147: 3.33779844e-12 + syst_JES_EtaIntercalibration_Stat148: 3.64942776e-10 + syst_JES_EtaIntercalibration_Stat149: 1.13006953e-07 + syst_JES_EtaIntercalibration_Stat15: 8.77283723e-08 + syst_JES_EtaIntercalibration_Stat150: 2.64080453e-09 + syst_JES_EtaIntercalibration_Stat151: 2.73738470e-07 + syst_JES_EtaIntercalibration_Stat152: 5.40831383e-08 + syst_JES_EtaIntercalibration_Stat153: 2.07733654e-07 + syst_JES_EtaIntercalibration_Stat154: 2.98104440e-07 + syst_JES_EtaIntercalibration_Stat155: 8.12422624e-09 + syst_JES_EtaIntercalibration_Stat156: 4.94501632e-07 + syst_JES_EtaIntercalibration_Stat157: 2.20645109e-07 + syst_JES_EtaIntercalibration_Stat158: 5.14785169e-07 + syst_JES_EtaIntercalibration_Stat159: 6.19778557e-09 + syst_JES_EtaIntercalibration_Stat16: 8.77283723e-08 + syst_JES_EtaIntercalibration_Stat160: 1.71202159e-07 + syst_JES_EtaIntercalibration_Stat161: 7.34306567e-08 + syst_JES_EtaIntercalibration_Stat162: 9.14162907e-08 + syst_JES_EtaIntercalibration_Stat163: 6.57216359e-08 + syst_JES_EtaIntercalibration_Stat164: 1.83856865e-08 + syst_JES_EtaIntercalibration_Stat165: 2.98838966e-10 + syst_JES_EtaIntercalibration_Stat166: 7.65250861e-08 + syst_JES_EtaIntercalibration_Stat167: 5.22672297e-08 + syst_JES_EtaIntercalibration_Stat168: 9.69508689e-08 + syst_JES_EtaIntercalibration_Stat169: 2.32592633e-07 + syst_JES_EtaIntercalibration_Stat17: 8.77283765e-08 + syst_JES_EtaIntercalibration_Stat170: 1.78620219e-07 + syst_JES_EtaIntercalibration_Stat171: 4.67461763e-07 + syst_JES_EtaIntercalibration_Stat172: 5.55012892e-07 + syst_JES_EtaIntercalibration_Stat173: 3.27719943e-07 + syst_JES_EtaIntercalibration_Stat174: 3.90368041e-07 + syst_JES_EtaIntercalibration_Stat175: 2.76432573e-07 + syst_JES_EtaIntercalibration_Stat176: 5.51264531e-07 + syst_JES_EtaIntercalibration_Stat177: 6.30604179e-07 + syst_JES_EtaIntercalibration_Stat178: 8.85620756e-08 + syst_JES_EtaIntercalibration_Stat179: 8.93481648e-08 + syst_JES_EtaIntercalibration_Stat18: 8.77283723e-08 + syst_JES_EtaIntercalibration_Stat180: 2.92635331e-10 + syst_JES_EtaIntercalibration_Stat181: 2.84677550e-12 + syst_JES_EtaIntercalibration_Stat182: 6.90258247e-08 + syst_JES_EtaIntercalibration_Stat183: 7.51932131e-08 + syst_JES_EtaIntercalibration_Stat184: 2.66122016e-08 + syst_JES_EtaIntercalibration_Stat185: 3.44764894e-07 + syst_JES_EtaIntercalibration_Stat186: 1.35516520e-06 + syst_JES_EtaIntercalibration_Stat187: 2.56788215e-06 + syst_JES_EtaIntercalibration_Stat188: 2.62246425e-06 + syst_JES_EtaIntercalibration_Stat189: 1.91392241e-06 + syst_JES_EtaIntercalibration_Stat19: 1.43259834e-07 + syst_JES_EtaIntercalibration_Stat190: 1.77032963e-06 + syst_JES_EtaIntercalibration_Stat191: 3.32152357e-06 + syst_JES_EtaIntercalibration_Stat192: 2.05311958e-06 + syst_JES_EtaIntercalibration_Stat193: 1.60362016e-06 + syst_JES_EtaIntercalibration_Stat194: 5.19705378e-07 + syst_JES_EtaIntercalibration_Stat195: 3.61753407e-08 + syst_JES_EtaIntercalibration_Stat196: 1.86991524e-08 + syst_JES_EtaIntercalibration_Stat197: 1.72695497e-07 + syst_JES_EtaIntercalibration_Stat198: 1.64982385e-07 + syst_JES_EtaIntercalibration_Stat199: 7.02980917e-07 + syst_JES_EtaIntercalibration_Stat2: 1.43259834e-07 + syst_JES_EtaIntercalibration_Stat20: 1.43259834e-07 + syst_JES_EtaIntercalibration_Stat200: 1.03723856e-06 + syst_JES_EtaIntercalibration_Stat201: 2.85546857e-06 + syst_JES_EtaIntercalibration_Stat202: 5.46022719e-06 + syst_JES_EtaIntercalibration_Stat203: 6.30513622e-06 + syst_JES_EtaIntercalibration_Stat204: 4.43503568e-06 + syst_JES_EtaIntercalibration_Stat205: 4.90336729e-06 + syst_JES_EtaIntercalibration_Stat206: 6.41269584e-06 + syst_JES_EtaIntercalibration_Stat207: 5.61475788e-06 + syst_JES_EtaIntercalibration_Stat208: 3.42250289e-06 + syst_JES_EtaIntercalibration_Stat209: 1.16937227e-06 + syst_JES_EtaIntercalibration_Stat21: 1.43259834e-07 + syst_JES_EtaIntercalibration_Stat210: 7.94910556e-07 + syst_JES_EtaIntercalibration_Stat211: 2.02700724e-07 + syst_JES_EtaIntercalibration_Stat212: 9.68562812e-08 + syst_JES_EtaIntercalibration_Stat213: 4.15641420e-07 + syst_JES_EtaIntercalibration_Stat214: 2.34224529e-06 + syst_JES_EtaIntercalibration_Stat215: 6.67683868e-06 + syst_JES_EtaIntercalibration_Stat216: 8.51735832e-06 + syst_JES_EtaIntercalibration_Stat217: 4.96345867e-06 + syst_JES_EtaIntercalibration_Stat218: 6.06248041e-06 + syst_JES_EtaIntercalibration_Stat219: 7.72386872e-06 + syst_JES_EtaIntercalibration_Stat22: 1.43259834e-07 + syst_JES_EtaIntercalibration_Stat220: 6.59541483e-06 + syst_JES_EtaIntercalibration_Stat221: 2.10758914e-06 + syst_JES_EtaIntercalibration_Stat222: 1.23803076e-06 + syst_JES_EtaIntercalibration_Stat223: 6.62785877e-07 + syst_JES_EtaIntercalibration_Stat224: 2.31100514e-07 + syst_JES_EtaIntercalibration_Stat225: 3.16711462e-06 + syst_JES_EtaIntercalibration_Stat226: 7.16138400e-06 + syst_JES_EtaIntercalibration_Stat227: 1.87042482e-05 + syst_JES_EtaIntercalibration_Stat228: 2.00668234e-05 + syst_JES_EtaIntercalibration_Stat229: 1.58059609e-05 + syst_JES_EtaIntercalibration_Stat23: 1.42638259e-07 + syst_JES_EtaIntercalibration_Stat230: 1.63550749e-05 + syst_JES_EtaIntercalibration_Stat231: 2.52753571e-05 + syst_JES_EtaIntercalibration_Stat232: 2.07822875e-05 + syst_JES_EtaIntercalibration_Stat233: 7.84502498e-06 + syst_JES_EtaIntercalibration_Stat234: 2.19114581e-06 + syst_JES_EtaIntercalibration_Stat235: 4.42019367e-07 + syst_JES_EtaIntercalibration_Stat236: 9.06295523e-07 + syst_JES_EtaIntercalibration_Stat237: 1.87508473e-06 + syst_JES_EtaIntercalibration_Stat238: 3.88200737e-06 + syst_JES_EtaIntercalibration_Stat239: 2.53576556e-06 + syst_JES_EtaIntercalibration_Stat24: 8.77283723e-08 + syst_JES_EtaIntercalibration_Stat240: 1.65200545e-06 + syst_JES_EtaIntercalibration_Stat241: 1.67097666e-06 + syst_JES_EtaIntercalibration_Stat242: 2.59926389e-06 + syst_JES_EtaIntercalibration_Stat243: 1.65417676e-06 + syst_JES_EtaIntercalibration_Stat244: 1.49079333e-06 + syst_JES_EtaIntercalibration_Stat245: 6.26444539e-07 + syst_JES_EtaIntercalibration_Stat25: 2.01083003e-14 + syst_JES_EtaIntercalibration_Stat26: 5.44479301e-15 + syst_JES_EtaIntercalibration_Stat27: 5.62503464e-15 + syst_JES_EtaIntercalibration_Stat28: 5.45639766e-15 + syst_JES_EtaIntercalibration_Stat29: 3.47356844e-08 + syst_JES_EtaIntercalibration_Stat3: 1.43266905e-07 + syst_JES_EtaIntercalibration_Stat30: 5.55088701e-15 + syst_JES_EtaIntercalibration_Stat31: 7.54394729e-08 + syst_JES_EtaIntercalibration_Stat32: 6.05871372e-07 + syst_JES_EtaIntercalibration_Stat33: 1.14852289e-06 + syst_JES_EtaIntercalibration_Stat34: 6.05871372e-07 + syst_JES_EtaIntercalibration_Stat35: 3.45924921e-15 + syst_JES_EtaIntercalibration_Stat36: 1.20943822e-07 + syst_JES_EtaIntercalibration_Stat37: 8.97462115e-08 + syst_JES_EtaIntercalibration_Stat38: 5.51824724e-15 + syst_JES_EtaIntercalibration_Stat39: 5.52017424e-15 + syst_JES_EtaIntercalibration_Stat4: 1.43259834e-07 + syst_JES_EtaIntercalibration_Stat40: 8.77110518e-08 + syst_JES_EtaIntercalibration_Stat41: 1.43259834e-07 + syst_JES_EtaIntercalibration_Stat42: 1.43259834e-07 + syst_JES_EtaIntercalibration_Stat43: 1.43259834e-07 + syst_JES_EtaIntercalibration_Stat44: 1.43259834e-07 + syst_JES_EtaIntercalibration_Stat45: 1.43259834e-07 + syst_JES_EtaIntercalibration_Stat46: 5.53348649e-15 + syst_JES_EtaIntercalibration_Stat47: 3.38496135e-15 + syst_JES_EtaIntercalibration_Stat48: 2.03538790e-14 + syst_JES_EtaIntercalibration_Stat49: 8.76157971e-08 + syst_JES_EtaIntercalibration_Stat5: 1.43259834e-07 + syst_JES_EtaIntercalibration_Stat50: 2.82844156e-14 + syst_JES_EtaIntercalibration_Stat51: 3.47235478e-08 + syst_JES_EtaIntercalibration_Stat52: 3.52472339e-08 + syst_JES_EtaIntercalibration_Stat53: 7.86524261e-08 + syst_JES_EtaIntercalibration_Stat54: 6.05871372e-07 + syst_JES_EtaIntercalibration_Stat55: 6.05871373e-07 + syst_JES_EtaIntercalibration_Stat56: 6.05871372e-07 + syst_JES_EtaIntercalibration_Stat57: 1.16418694e-14 + syst_JES_EtaIntercalibration_Stat58: 1.94949617e-15 + syst_JES_EtaIntercalibration_Stat59: 5.70017921e-08 + syst_JES_EtaIntercalibration_Stat6: 9.50116470e-08 + syst_JES_EtaIntercalibration_Stat60: 1.41273756e-07 + syst_JES_EtaIntercalibration_Stat61: 3.31533260e-15 + syst_JES_EtaIntercalibration_Stat62: 8.75378467e-08 + syst_JES_EtaIntercalibration_Stat63: 5.42980884e-15 + syst_JES_EtaIntercalibration_Stat64: 1.43259834e-07 + syst_JES_EtaIntercalibration_Stat65: 1.43259834e-07 + syst_JES_EtaIntercalibration_Stat66: 1.43259834e-07 + syst_JES_EtaIntercalibration_Stat67: 1.43259834e-07 + syst_JES_EtaIntercalibration_Stat68: 2.52389606e-19 + syst_JES_EtaIntercalibration_Stat69: 8.66285219e-08 + syst_JES_EtaIntercalibration_Stat7: 8.77283723e-08 + syst_JES_EtaIntercalibration_Stat70: 6.95158592e-08 + syst_JES_EtaIntercalibration_Stat71: 3.10296914e-07 + syst_JES_EtaIntercalibration_Stat72: 3.53511570e-08 + syst_JES_EtaIntercalibration_Stat73: 3.53424967e-08 + syst_JES_EtaIntercalibration_Stat74: 7.06936537e-08 + syst_JES_EtaIntercalibration_Stat75: 7.12825510e-07 + syst_JES_EtaIntercalibration_Stat76: 6.05871372e-07 + syst_JES_EtaIntercalibration_Stat77: 1.02216978e-07 + syst_JES_EtaIntercalibration_Stat78: 2.54408241e-07 + syst_JES_EtaIntercalibration_Stat79: 3.73689962e-07 + syst_JES_EtaIntercalibration_Stat8: 3.44281886e-15 + syst_JES_EtaIntercalibration_Stat80: 5.38234788e-07 + syst_JES_EtaIntercalibration_Stat81: 2.28215741e-15 + syst_JES_EtaIntercalibration_Stat82: 2.09890637e-15 + syst_JES_EtaIntercalibration_Stat83: 5.25849224e-15 + syst_JES_EtaIntercalibration_Stat84: 3.31335191e-15 + syst_JES_EtaIntercalibration_Stat85: 3.32135624e-15 + syst_JES_EtaIntercalibration_Stat86: 8.77283734e-08 + syst_JES_EtaIntercalibration_Stat87: 8.77283734e-08 + syst_JES_EtaIntercalibration_Stat88: 3.33263635e-15 + syst_JES_EtaIntercalibration_Stat89: 8.52948420e-08 + syst_JES_EtaIntercalibration_Stat9: 4.14479757e-07 + syst_JES_EtaIntercalibration_Stat90: 3.09359409e-14 + syst_JES_EtaIntercalibration_Stat91: 3.13482714e-14 + syst_JES_EtaIntercalibration_Stat92: 4.35877179e-14 + syst_JES_EtaIntercalibration_Stat93: 3.53511570e-08 + syst_JES_EtaIntercalibration_Stat94: 3.47153857e-08 + syst_JES_EtaIntercalibration_Stat95: 7.21657736e-08 + syst_JES_EtaIntercalibration_Stat96: 6.05871376e-07 + syst_JES_EtaIntercalibration_Stat97: 5.76889185e-07 + syst_JES_EtaIntercalibration_Stat98: 5.71222295e-07 + syst_JES_EtaIntercalibration_Stat99: 6.07776628e-07 + syst_JES_EtaIntercalibration_TotalStat_MJB: 4.13766972e-04 + syst_JES_Flavour_Comp: 1.05458587e-03 + syst_JES_Flavour_Response: 4.09459238e-05 + syst_JES_Gjet_Generator: 1.31919207e-03 + syst_JES_Gjet_OOC: 1.09891843e-03 + syst_JES_Gjet_Purity: 1.97859211e-04 + syst_JES_Gjet_Stat1: 3.47759842e-06 + syst_JES_Gjet_Stat10: 2.03897640e-05 + syst_JES_Gjet_Stat11: 2.27965853e-05 + syst_JES_Gjet_Stat12: 7.16467269e-05 + syst_JES_Gjet_Stat13: 2.23350907e-04 + syst_JES_Gjet_Stat14: 6.01148509e-04 + syst_JES_Gjet_Stat15: 6.69156280e-04 + syst_JES_Gjet_Stat2: 4.25195399e-06 + syst_JES_Gjet_Stat3: 6.44377845e-06 + syst_JES_Gjet_Stat4: 3.60581125e-06 + syst_JES_Gjet_Stat5: 3.96608935e-06 + syst_JES_Gjet_Stat6: 1.39131348e-05 + syst_JES_Gjet_Stat7: 1.28727938e-05 + syst_JES_Gjet_Stat8: 8.26276715e-06 + syst_JES_Gjet_Stat9: 1.24197307e-05 + syst_JES_Gjet_Veto: 1.09815792e-03 + syst_JES_Gjet_dPhi: 1.11871822e-04 + syst_JES_LArESZee: 1.99299793e-03 + syst_JES_LArEsmear: 1.71208411e-04 + syst_JES_LAr_JVT: 2.14307886e-04 + syst_JES_MJB_Alpha: 1.32525432e-05 + syst_JES_MJB_Asym: 2.13573705e-04 + syst_JES_MJB_Beta: 1.32367756e-05 + syst_JES_MJB_Fragmentation: 1.26984897e-04 + syst_JES_MJB_Stat1: 3.71455230e-07 + syst_JES_MJB_Stat10: 2.18350927e-05 + syst_JES_MJB_Stat11: 2.34678802e-05 + syst_JES_MJB_Stat12: 3.01795506e-05 + syst_JES_MJB_Stat13: 2.97722635e-05 + syst_JES_MJB_Stat14: 1.54953819e-05 + syst_JES_MJB_Stat15: 1.19303959e-05 + syst_JES_MJB_Stat16: 2.44570987e-05 + syst_JES_MJB_Stat2: 7.40897002e-07 + syst_JES_MJB_Stat3: 3.47760090e-06 + syst_JES_MJB_Stat4: 3.30585874e-06 + syst_JES_MJB_Stat5: 4.21029107e-06 + syst_JES_MJB_Stat6: 6.39561653e-06 + syst_JES_MJB_Stat7: 7.31150696e-06 + syst_JES_MJB_Stat8: 9.86961857e-06 + syst_JES_MJB_Stat9: 1.49659639e-05 + syst_JES_MJB_Threshold: 1.52850016e-04 + syst_JES_Pileup_MuOffset: 2.59003861e-04 + syst_JES_Pileup_NPVOffset: 2.67900037e-04 + syst_JES_Pileup_Pt_term: 1.60062582e-04 + syst_JES_Pileup_Rho_topology: 3.62035799e-04 + syst_JES_PunchThrough_MC15: 2.44444554e-04 + syst_JES_SingleParticle_HighPt: 1.86125266e-07 + syst_JES_Zjet_MC: 5.25621963e-04 + syst_JES_Zjet_MuScale: 3.87356848e-05 + syst_JES_Zjet_MuSmearID: 9.42056569e-06 + syst_JES_Zjet_MuSmearMS: 1.45050017e-04 + syst_JES_Zjet_OOC: 3.00656062e-04 + syst_JES_Zjet_Stat1: 2.05721559e-05 + syst_JES_Zjet_Stat10: 2.59836809e-05 + syst_JES_Zjet_Stat11: 3.35755074e-05 + syst_JES_Zjet_Stat12: 9.30864834e-05 + syst_JES_Zjet_Stat13: 1.53101633e-04 + syst_JES_Zjet_Stat2: 1.01668455e-06 + syst_JES_Zjet_Stat3: 1.17402325e-05 + syst_JES_Zjet_Stat4: 1.14804530e-05 + syst_JES_Zjet_Stat5: 1.85092700e-05 + syst_JES_Zjet_Stat6: 9.60360436e-06 + syst_JES_Zjet_Stat7: 1.11089330e-05 + syst_JES_Zjet_Stat8: 9.38268885e-06 + syst_JES_Zjet_Stat9: 1.70899407e-05 + syst_JES_Zjet_Veto: 6.59388525e-05 + syst_JES_Zjet_dPhi: 5.85592595e-05 syst_PRW: 0.0 - syst_Unfolding_bias: 1.509e-25 - syst_cleaning: 0.0006031000911954831 - syst_lumi: 0.0011863 + syst_Unfolding_bias: 1.50900000e-25 + syst_cleaning: 6.03100091e-04 + syst_lumi: 1.18630000e-03 - stat: 0.000349 - syst_JER_CROSS_CALIB_FORWARD: 7.855e-20 - syst_JER_NOISE_FORWARD: 5.915e-20 - syst_JER_NP0: 4.4886631361687185e-05 - syst_JER_NP1: 8.422826188400185e-06 - syst_JER_NP2: 3.743677169575389e-05 - syst_JER_NP3: 3.829477662488711e-06 - syst_JER_NP4: 3.914160446379275e-06 - syst_JER_NP5: 3.966622587290099e-15 - syst_JER_NP6: 8.326239667460935e-07 - syst_JER_NP7: 2.520999950416501e-15 - syst_JER_NP8: 9.624015845789116e-06 - syst_JES_EtaIntercalibration_Modelling: 0.0007555327573970569 - syst_JES_EtaIntercalibration_NonClosure: 7.91012363999451e-08 - syst_JES_EtaIntercalibration_Stat0: 7.786659874426261e-08 - syst_JES_EtaIntercalibration_Stat1: 7.786659874426261e-08 - syst_JES_EtaIntercalibration_Stat10: 4.274781485643447e-07 - syst_JES_EtaIntercalibration_Stat100: 1.4661802392894355e-07 - syst_JES_EtaIntercalibration_Stat101: 1.8554508663585653e-15 - syst_JES_EtaIntercalibration_Stat102: 1.9503376630727305e-16 - syst_JES_EtaIntercalibration_Stat103: 5.058454387286262e-08 - syst_JES_EtaIntercalibration_Stat104: 2.7567132603881746e-16 - syst_JES_EtaIntercalibration_Stat105: 9.707552186040452e-16 - syst_JES_EtaIntercalibration_Stat106: 1.5535619812496016e-16 - syst_JES_EtaIntercalibration_Stat107: 4.7683358732371235e-08 - syst_JES_EtaIntercalibration_Stat108: 4.8159672704452636e-08 - syst_JES_EtaIntercalibration_Stat109: 7.729443547513413e-12 - syst_JES_EtaIntercalibration_Stat11: 4.4305859657604295e-07 - syst_JES_EtaIntercalibration_Stat110: 7.727473541599998e-12 - syst_JES_EtaIntercalibration_Stat111: 3.762485731534407e-15 - syst_JES_EtaIntercalibration_Stat112: 1.9931152701988915e-14 - syst_JES_EtaIntercalibration_Stat113: 5.174558977101334e-09 - syst_JES_EtaIntercalibration_Stat114: 4.735987647787946e-08 - syst_JES_EtaIntercalibration_Stat115: 3.919029982023613e-08 - syst_JES_EtaIntercalibration_Stat116: 7.376055907461656e-08 - syst_JES_EtaIntercalibration_Stat117: 1.4877329019350216e-07 - syst_JES_EtaIntercalibration_Stat118: 1.3830006037598103e-07 - syst_JES_EtaIntercalibration_Stat119: 2.6612960616726583e-07 - syst_JES_EtaIntercalibration_Stat12: 1.7935386112383342e-07 - syst_JES_EtaIntercalibration_Stat120: 3.9755181737730746e-08 - syst_JES_EtaIntercalibration_Stat121: 5.155481590501512e-13 - syst_JES_EtaIntercalibration_Stat122: 1.2608207996367226e-11 - syst_JES_EtaIntercalibration_Stat123: 5.680921779957897e-15 - syst_JES_EtaIntercalibration_Stat124: 5.4788444146553385e-15 - syst_JES_EtaIntercalibration_Stat125: 2.045436043365815e-14 - syst_JES_EtaIntercalibration_Stat126: 3.2623176965874314e-08 - syst_JES_EtaIntercalibration_Stat127: 2.891658823236241e-16 - syst_JES_EtaIntercalibration_Stat128: 7.804364773365106e-08 - syst_JES_EtaIntercalibration_Stat129: 6.327013233768297e-08 - syst_JES_EtaIntercalibration_Stat13: 7.786659874426261e-08 - syst_JES_EtaIntercalibration_Stat130: 3.833890061021573e-13 - syst_JES_EtaIntercalibration_Stat131: 5.2788624039654605e-09 - syst_JES_EtaIntercalibration_Stat132: 3.759195435535146e-10 - syst_JES_EtaIntercalibration_Stat133: 1.2096371687411066e-07 - syst_JES_EtaIntercalibration_Stat134: 3.4416235946860896e-08 - syst_JES_EtaIntercalibration_Stat135: 1.0764785181321546e-07 - syst_JES_EtaIntercalibration_Stat136: 2.500419575606262e-08 - syst_JES_EtaIntercalibration_Stat137: 4.535622511574348e-08 - syst_JES_EtaIntercalibration_Stat138: 3.0252092336729373e-08 - syst_JES_EtaIntercalibration_Stat139: 7.902718693588935e-08 - syst_JES_EtaIntercalibration_Stat14: 7.786659874426261e-08 - syst_JES_EtaIntercalibration_Stat140: 5.096775647406898e-08 - syst_JES_EtaIntercalibration_Stat141: 7.71312064471962e-10 - syst_JES_EtaIntercalibration_Stat142: 4.442443591944554e-08 - syst_JES_EtaIntercalibration_Stat143: 8.957933857759836e-14 - syst_JES_EtaIntercalibration_Stat144: 2.0517648121312544e-12 - syst_JES_EtaIntercalibration_Stat145: 2.4231391235231455e-08 - syst_JES_EtaIntercalibration_Stat146: 1.1329087809953667e-07 - syst_JES_EtaIntercalibration_Stat147: 2.3673270172707445e-13 - syst_JES_EtaIntercalibration_Stat148: 3.186152580699801e-11 - syst_JES_EtaIntercalibration_Stat149: 5.3348408286939545e-08 - syst_JES_EtaIntercalibration_Stat15: 4.768335863592483e-08 - syst_JES_EtaIntercalibration_Stat150: 3.747510500223682e-10 - syst_JES_EtaIntercalibration_Stat151: 3.1368521590122797e-07 - syst_JES_EtaIntercalibration_Stat152: 3.7897057588551645e-08 - syst_JES_EtaIntercalibration_Stat153: 1.1591904384849799e-07 - syst_JES_EtaIntercalibration_Stat154: 1.0213184450291446e-07 - syst_JES_EtaIntercalibration_Stat155: 3.5908346951187756e-08 - syst_JES_EtaIntercalibration_Stat156: 2.6970105728380083e-07 - syst_JES_EtaIntercalibration_Stat157: 1.4146287242594784e-07 - syst_JES_EtaIntercalibration_Stat158: 2.935148164914337e-07 - syst_JES_EtaIntercalibration_Stat159: 7.677680931114552e-10 - syst_JES_EtaIntercalibration_Stat16: 4.768335863592483e-08 - syst_JES_EtaIntercalibration_Stat160: 9.306143132361548e-08 - syst_JES_EtaIntercalibration_Stat161: 3.752490767367357e-08 - syst_JES_EtaIntercalibration_Stat162: 4.96924420895494e-08 - syst_JES_EtaIntercalibration_Stat163: 3.57234747275611e-08 - syst_JES_EtaIntercalibration_Stat164: 3.4246084520680675e-09 - syst_JES_EtaIntercalibration_Stat165: 2.421991137473463e-11 - syst_JES_EtaIntercalibration_Stat166: 4.209992055983093e-08 - syst_JES_EtaIntercalibration_Stat167: 7.35470645233377e-09 - syst_JES_EtaIntercalibration_Stat168: 4.983200973772581e-08 - syst_JES_EtaIntercalibration_Stat169: 8.60723548823895e-08 - syst_JES_EtaIntercalibration_Stat17: 4.76833589678435e-08 - syst_JES_EtaIntercalibration_Stat170: 1.0244543109610844e-07 - syst_JES_EtaIntercalibration_Stat171: 1.9636298295503662e-07 - syst_JES_EtaIntercalibration_Stat172: 2.556591306310025e-07 - syst_JES_EtaIntercalibration_Stat173: 1.8519282835736375e-07 - syst_JES_EtaIntercalibration_Stat174: 2.1330247888854926e-07 - syst_JES_EtaIntercalibration_Stat175: 2.2688223443011135e-07 - syst_JES_EtaIntercalibration_Stat176: 1.7496679410891086e-07 - syst_JES_EtaIntercalibration_Stat177: 2.0212284057164347e-07 - syst_JES_EtaIntercalibration_Stat178: 4.820070049310565e-08 - syst_JES_EtaIntercalibration_Stat179: 4.8017583224234645e-08 - syst_JES_EtaIntercalibration_Stat18: 4.768335863592483e-08 - syst_JES_EtaIntercalibration_Stat180: 2.4401071042066983e-11 - syst_JES_EtaIntercalibration_Stat181: 2.0193591081083126e-13 - syst_JES_EtaIntercalibration_Stat182: 4.4536702692835266e-08 - syst_JES_EtaIntercalibration_Stat183: 2.6126034907731404e-08 - syst_JES_EtaIntercalibration_Stat184: 2.2125243501484906e-08 - syst_JES_EtaIntercalibration_Stat185: 1.7524675196704786e-07 - syst_JES_EtaIntercalibration_Stat186: 6.791084817611985e-07 - syst_JES_EtaIntercalibration_Stat187: 1.2702630003270976e-06 - syst_JES_EtaIntercalibration_Stat188: 1.7243996056598947e-06 - syst_JES_EtaIntercalibration_Stat189: 1.2604639502976672e-06 - syst_JES_EtaIntercalibration_Stat19: 7.786659874426261e-08 - syst_JES_EtaIntercalibration_Stat190: 1.0533774252375073e-06 - syst_JES_EtaIntercalibration_Stat191: 1.7049587443689068e-06 - syst_JES_EtaIntercalibration_Stat192: 1.0444178797301395e-06 - syst_JES_EtaIntercalibration_Stat193: 6.855114441057859e-07 - syst_JES_EtaIntercalibration_Stat194: 1.1855133350156801e-07 - syst_JES_EtaIntercalibration_Stat195: 1.6762303503695427e-08 - syst_JES_EtaIntercalibration_Stat196: 3.5724779275282703e-09 - syst_JES_EtaIntercalibration_Stat197: 9.693044039413006e-08 - syst_JES_EtaIntercalibration_Stat198: 1.0675772196895172e-07 - syst_JES_EtaIntercalibration_Stat199: 4.653031451376618e-07 - syst_JES_EtaIntercalibration_Stat2: 7.786659874426261e-08 - syst_JES_EtaIntercalibration_Stat20: 7.786659874426261e-08 - syst_JES_EtaIntercalibration_Stat200: 4.4079358380494064e-07 - syst_JES_EtaIntercalibration_Stat201: 1.3334124755678567e-06 - syst_JES_EtaIntercalibration_Stat202: 2.878324686340997e-06 - syst_JES_EtaIntercalibration_Stat203: 3.905560523151574e-06 - syst_JES_EtaIntercalibration_Stat204: 2.554260117920647e-06 - syst_JES_EtaIntercalibration_Stat205: 2.9879830990151206e-06 - syst_JES_EtaIntercalibration_Stat206: 3.4649229067902796e-06 - syst_JES_EtaIntercalibration_Stat207: 2.981846407848667e-06 - syst_JES_EtaIntercalibration_Stat208: 1.6837482316249066e-06 - syst_JES_EtaIntercalibration_Stat209: 4.561127492188746e-07 - syst_JES_EtaIntercalibration_Stat21: 7.786659874426261e-08 - syst_JES_EtaIntercalibration_Stat210: 2.5946386776389504e-07 - syst_JES_EtaIntercalibration_Stat211: 1.0516777836717623e-07 - syst_JES_EtaIntercalibration_Stat212: 5.311333801974033e-08 - syst_JES_EtaIntercalibration_Stat213: 2.0573368100532298e-07 - syst_JES_EtaIntercalibration_Stat214: 1.2428651535866632e-06 - syst_JES_EtaIntercalibration_Stat215: 3.470356207581579e-06 - syst_JES_EtaIntercalibration_Stat216: 4.831239670105386e-06 - syst_JES_EtaIntercalibration_Stat217: 2.89433632288993e-06 - syst_JES_EtaIntercalibration_Stat218: 3.549652201272682e-06 - syst_JES_EtaIntercalibration_Stat219: 4.0400002475247445e-06 - syst_JES_EtaIntercalibration_Stat22: 7.786659874426261e-08 - syst_JES_EtaIntercalibration_Stat220: 3.7034107252639425e-06 - syst_JES_EtaIntercalibration_Stat221: 9.788730050420229e-07 - syst_JES_EtaIntercalibration_Stat222: 5.002640777629351e-07 - syst_JES_EtaIntercalibration_Stat223: 2.2229280240259692e-07 - syst_JES_EtaIntercalibration_Stat224: 1.2574478150205677e-07 - syst_JES_EtaIntercalibration_Stat225: 1.705532376561641e-06 - syst_JES_EtaIntercalibration_Stat226: 3.768911115959091e-06 - syst_JES_EtaIntercalibration_Stat227: 9.931840614911217e-06 - syst_JES_EtaIntercalibration_Stat228: 1.1886045463062979e-05 - syst_JES_EtaIntercalibration_Stat229: 1.0144452819151954e-05 - syst_JES_EtaIntercalibration_Stat23: 7.753461468918254e-08 - syst_JES_EtaIntercalibration_Stat230: 9.256610327220218e-06 - syst_JES_EtaIntercalibration_Stat231: 1.4308631381093022e-05 - syst_JES_EtaIntercalibration_Stat232: 1.0710218800286016e-05 - syst_JES_EtaIntercalibration_Stat233: 3.621728972466052e-06 - syst_JES_EtaIntercalibration_Stat234: 8.20283361155156e-07 - syst_JES_EtaIntercalibration_Stat235: 1.3665880881328437e-07 - syst_JES_EtaIntercalibration_Stat236: 4.1360036891638224e-07 - syst_JES_EtaIntercalibration_Stat237: 9.501753456599471e-07 - syst_JES_EtaIntercalibration_Stat238: 1.9705676847040804e-06 - syst_JES_EtaIntercalibration_Stat239: 1.7579183001493554e-06 - syst_JES_EtaIntercalibration_Stat24: 4.768335863580936e-08 - syst_JES_EtaIntercalibration_Stat240: 1.0398679435389862e-06 - syst_JES_EtaIntercalibration_Stat241: 9.470474367738926e-07 - syst_JES_EtaIntercalibration_Stat242: 1.3506795724745378e-06 - syst_JES_EtaIntercalibration_Stat243: 1.052144552806315e-06 - syst_JES_EtaIntercalibration_Stat244: 5.082187791689716e-07 - syst_JES_EtaIntercalibration_Stat245: 1.9961024096974584e-07 - syst_JES_EtaIntercalibration_Stat25: 1.381495722034636e-15 - syst_JES_EtaIntercalibration_Stat26: 4.73125149933926e-16 - syst_JES_EtaIntercalibration_Stat27: 4.910856824424837e-16 - syst_JES_EtaIntercalibration_Stat28: 4.739032285182282e-16 - syst_JES_EtaIntercalibration_Stat29: 5.184133511976712e-09 - syst_JES_EtaIntercalibration_Stat3: 7.787366997259087e-08 - syst_JES_EtaIntercalibration_Stat30: 4.836982530462561e-16 - syst_JES_EtaIntercalibration_Stat31: 5.824886865853296e-08 - syst_JES_EtaIntercalibration_Stat32: 2.77214731751469e-07 - syst_JES_EtaIntercalibration_Stat33: 4.429719940356042e-07 - syst_JES_EtaIntercalibration_Stat34: 2.7721473175155983e-07 - syst_JES_EtaIntercalibration_Stat35: 3.021784825995516e-16 - syst_JES_EtaIntercalibration_Stat36: 6.57442669135492e-08 - syst_JES_EtaIntercalibration_Stat37: 4.8783210898615594e-08 - syst_JES_EtaIntercalibration_Stat38: 4.805337527167057e-16 - syst_JES_EtaIntercalibration_Stat39: 4.806766766757047e-16 - syst_JES_EtaIntercalibration_Stat4: 7.787366997259087e-08 - syst_JES_EtaIntercalibration_Stat40: 4.7674698382348864e-08 - syst_JES_EtaIntercalibration_Stat41: 7.787366997259087e-08 - syst_JES_EtaIntercalibration_Stat42: 7.786659874426261e-08 - syst_JES_EtaIntercalibration_Stat43: 7.786659874426261e-08 - syst_JES_EtaIntercalibration_Stat44: 7.786659874426261e-08 - syst_JES_EtaIntercalibration_Stat45: 7.786659874426261e-08 - syst_JES_EtaIntercalibration_Stat46: 4.820765162295297e-16 - syst_JES_EtaIntercalibration_Stat47: 2.8906144675483794e-16 - syst_JES_EtaIntercalibration_Stat48: 1.4072435894329026e-15 - syst_JES_EtaIntercalibration_Stat49: 4.76227374382145e-08 - syst_JES_EtaIntercalibration_Stat5: 7.786659874426261e-08 - syst_JES_EtaIntercalibration_Stat50: 2.1001163529261783e-15 - syst_JES_EtaIntercalibration_Stat51: 5.184054096939962e-09 - syst_JES_EtaIntercalibration_Stat52: 5.22386523553377e-09 - syst_JES_EtaIntercalibration_Stat53: 5.957388743008724e-08 - syst_JES_EtaIntercalibration_Stat54: 2.7721473175138936e-07 - syst_JES_EtaIntercalibration_Stat55: 2.7721473175443683e-07 - syst_JES_EtaIntercalibration_Stat56: 2.772147317515191e-07 - syst_JES_EtaIntercalibration_Stat57: 9.301850610760305e-16 - syst_JES_EtaIntercalibration_Stat58: 1.5598313292337438e-16 - syst_JES_EtaIntercalibration_Stat59: 3.0986388947394806e-08 - syst_JES_EtaIntercalibration_Stat6: 5.177965889233781e-08 - syst_JES_EtaIntercalibration_Stat60: 7.678905048898574e-08 - syst_JES_EtaIntercalibration_Stat61: 2.879418092588792e-16 - syst_JES_EtaIntercalibration_Stat62: 4.7588095841970426e-08 - syst_JES_EtaIntercalibration_Stat63: 4.718531206848166e-16 - syst_JES_EtaIntercalibration_Stat64: 7.786659874426261e-08 - syst_JES_EtaIntercalibration_Stat65: 7.786659874426261e-08 - syst_JES_EtaIntercalibration_Stat66: 7.786659874426261e-08 - syst_JES_EtaIntercalibration_Stat67: 7.786659874426261e-08 - syst_JES_EtaIntercalibration_Stat68: 2.5999927461437275e-20 - syst_JES_EtaIntercalibration_Stat69: 4.708580126657564e-08 - syst_JES_EtaIntercalibration_Stat7: 4.7683358631883375e-08 - syst_JES_EtaIntercalibration_Stat70: 3.778468836716953e-08 - syst_JES_EtaIntercalibration_Stat71: 1.5856925226777923e-07 - syst_JES_EtaIntercalibration_Stat72: 5.238587667429918e-09 - syst_JES_EtaIntercalibration_Stat73: 5.238587667169995e-09 - syst_JES_EtaIntercalibration_Stat74: 3.8425547166237734e-08 - syst_JES_EtaIntercalibration_Stat75: 3.261451670650866e-07 - syst_JES_EtaIntercalibration_Stat76: 2.7721473175160753e-07 - syst_JES_EtaIntercalibration_Stat77: 7.045982685194107e-08 - syst_JES_EtaIntercalibration_Stat78: 1.3976334390676262e-07 - syst_JES_EtaIntercalibration_Stat79: 2.0308295718787317e-07 - syst_JES_EtaIntercalibration_Stat8: 3.0053188791687313e-16 - syst_JES_EtaIntercalibration_Stat80: 2.7504966824156806e-07 - syst_JES_EtaIntercalibration_Stat81: 1.8604522971578713e-16 - syst_JES_EtaIntercalibration_Stat82: 1.9731300711004206e-16 - syst_JES_EtaIntercalibration_Stat83: 4.743367158464544e-16 - syst_JES_EtaIntercalibration_Stat84: 2.8794212294864256e-16 - syst_JES_EtaIntercalibration_Stat85: 2.8873980137722627e-16 - syst_JES_EtaIntercalibration_Stat86: 4.768335873237127e-08 - syst_JES_EtaIntercalibration_Stat87: 4.7683358732371195e-08 - syst_JES_EtaIntercalibration_Stat88: 2.8968503742065384e-16 - syst_JES_EtaIntercalibration_Stat89: 4.6367000118448155e-08 - syst_JES_EtaIntercalibration_Stat9: 1.7935386102350038e-07 - syst_JES_EtaIntercalibration_Stat90: 2.3081173392778367e-15 - syst_JES_EtaIntercalibration_Stat91: 2.3386722623531498e-15 - syst_JES_EtaIntercalibration_Stat92: 3.233842361014477e-15 - syst_JES_EtaIntercalibration_Stat93: 5.239453698132421e-09 - syst_JES_EtaIntercalibration_Stat94: 5.182349168813309e-09 - syst_JES_EtaIntercalibration_Stat95: 3.923094197241764e-08 - syst_JES_EtaIntercalibration_Stat96: 2.7721473206362985e-07 - syst_JES_EtaIntercalibration_Stat97: 2.6269798947650897e-07 - syst_JES_EtaIntercalibration_Stat98: 2.621470268284575e-07 - syst_JES_EtaIntercalibration_Stat99: 3.106433123375937e-07 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.000252835534488331 - syst_JES_Flavour_Comp: 0.0006438449114499547 - syst_JES_Flavour_Response: 1.614629867028354e-05 - syst_JES_Gjet_Generator: 0.000756748062435577 - syst_JES_Gjet_OOC: 0.0006337504082838921 - syst_JES_Gjet_Purity: 0.00010851297111405622 - syst_JES_Gjet_Stat1: 2.0426436302008237e-06 - syst_JES_Gjet_Stat10: 1.2197005810853745e-05 - syst_JES_Gjet_Stat11: 1.3166124031012317e-05 - syst_JES_Gjet_Stat12: 3.679113480174266e-05 - syst_JES_Gjet_Stat13: 0.00012287301249664227 - syst_JES_Gjet_Stat14: 0.000338096110595789 - syst_JES_Gjet_Stat15: 0.0004583131244029566 - syst_JES_Gjet_Stat2: 2.1281087260758083e-06 - syst_JES_Gjet_Stat3: 3.111874515464915e-06 - syst_JES_Gjet_Stat4: 2.0211112661108e-06 - syst_JES_Gjet_Stat5: 1.909139269409123e-06 - syst_JES_Gjet_Stat6: 8.95299759856999e-06 - syst_JES_Gjet_Stat7: 6.870506677094492e-06 - syst_JES_Gjet_Stat8: 4.410249737826647e-06 - syst_JES_Gjet_Stat9: 6.735298267337535e-06 - syst_JES_Gjet_Veto: 0.0006370946711439362 - syst_JES_Gjet_dPhi: 6.418804464228522e-05 - syst_JES_LArESZee: 0.0011349762420420966 - syst_JES_LArEsmear: 9.869526875691661e-05 - syst_JES_LAr_JVT: 0.00012553008882335741 - syst_JES_MJB_Alpha: 8.988475774568234e-06 - syst_JES_MJB_Asym: 0.00013792065653846057 - syst_JES_MJB_Beta: 7.736535448765164e-06 - syst_JES_MJB_Fragmentation: 6.50567696323757e-05 - syst_JES_MJB_Stat1: 1.868728559743228e-07 - syst_JES_MJB_Stat10: 1.1856178674007911e-05 - syst_JES_MJB_Stat11: 1.4745001695489898e-05 - syst_JES_MJB_Stat12: 2.1165265767289576e-05 - syst_JES_MJB_Stat13: 2.3034728129500467e-05 - syst_JES_MJB_Stat14: 1.632025122355658e-05 - syst_JES_MJB_Stat15: 2.680255398278306e-05 - syst_JES_MJB_Stat16: 1.9518076237170506e-05 - syst_JES_MJB_Stat2: 3.069120517346949e-07 - syst_JES_MJB_Stat3: 1.3677904627537068e-06 - syst_JES_MJB_Stat4: 1.4137601237480142e-06 - syst_JES_MJB_Stat5: 2.0338487529804175e-06 - syst_JES_MJB_Stat6: 3.0177012774626983e-06 - syst_JES_MJB_Stat7: 3.2150499218519143e-06 - syst_JES_MJB_Stat8: 4.806635621721289e-06 - syst_JES_MJB_Stat9: 7.730113776652967e-06 - syst_JES_MJB_Threshold: 9.756643006177893e-05 - syst_JES_Pileup_MuOffset: 0.0001519985115058697 - syst_JES_Pileup_NPVOffset: 0.00015847072284810214 - syst_JES_Pileup_Pt_term: 9.098360882598581e-05 - syst_JES_Pileup_Rho_topology: 0.0002035899002897737 - syst_JES_PunchThrough_MC15: 0.0001758576341817437 - syst_JES_SingleParticle_HighPt: 7.420593102980382e-08 - syst_JES_Zjet_MC: 0.0002941751009178037 - syst_JES_Zjet_MuScale: 2.200054999312517e-05 - syst_JES_Zjet_MuSmearID: 5.423724919278264e-06 - syst_JES_Zjet_MuSmearMS: 7.88252844904476e-05 - syst_JES_Zjet_OOC: 0.00017582169234767365 - syst_JES_Zjet_Stat1: 1.5296374570466038e-05 - syst_JES_Zjet_Stat10: 1.5201608467527376e-05 - syst_JES_Zjet_Stat11: 1.9910984405598832e-05 - syst_JES_Zjet_Stat12: 5.025079601359565e-05 - syst_JES_Zjet_Stat13: 8.099820923946405e-05 - syst_JES_Zjet_Stat2: 5.766874196651077e-07 - syst_JES_Zjet_Stat3: 8.262072545675206e-06 - syst_JES_Zjet_Stat4: 8.14440181965502e-06 - syst_JES_Zjet_Stat5: 1.0448872798058172e-05 - syst_JES_Zjet_Stat6: 6.099023610382239e-06 - syst_JES_Zjet_Stat7: 7.386427062524885e-06 - syst_JES_Zjet_Stat8: 5.944153493139287e-06 - syst_JES_Zjet_Stat9: 9.121871847378695e-06 - syst_JES_Zjet_Veto: 3.604944104975831e-05 - syst_JES_Zjet_dPhi: 3.279332058514355e-05 + syst_JER_CROSS_CALIB_FORWARD: 7.85500000e-20 + syst_JER_NOISE_FORWARD: 5.91500000e-20 + syst_JER_NP0: 4.48866314e-05 + syst_JER_NP1: 8.42282619e-06 + syst_JER_NP2: 3.74367717e-05 + syst_JER_NP3: 3.82947766e-06 + syst_JER_NP4: 3.91416045e-06 + syst_JER_NP5: 3.96662259e-15 + syst_JER_NP6: 8.32623967e-07 + syst_JER_NP7: 2.52099995e-15 + syst_JER_NP8: 9.62401585e-06 + syst_JES_EtaIntercalibration_Modelling: 7.55532757e-04 + syst_JES_EtaIntercalibration_NonClosure: 7.91012364e-08 + syst_JES_EtaIntercalibration_Stat0: 7.78665987e-08 + syst_JES_EtaIntercalibration_Stat1: 7.78665987e-08 + syst_JES_EtaIntercalibration_Stat10: 4.27478149e-07 + syst_JES_EtaIntercalibration_Stat100: 1.46618024e-07 + syst_JES_EtaIntercalibration_Stat101: 1.85545087e-15 + syst_JES_EtaIntercalibration_Stat102: 1.95033766e-16 + syst_JES_EtaIntercalibration_Stat103: 5.05845439e-08 + syst_JES_EtaIntercalibration_Stat104: 2.75671326e-16 + syst_JES_EtaIntercalibration_Stat105: 9.70755219e-16 + syst_JES_EtaIntercalibration_Stat106: 1.55356198e-16 + syst_JES_EtaIntercalibration_Stat107: 4.76833587e-08 + syst_JES_EtaIntercalibration_Stat108: 4.81596727e-08 + syst_JES_EtaIntercalibration_Stat109: 7.72944355e-12 + syst_JES_EtaIntercalibration_Stat11: 4.43058597e-07 + syst_JES_EtaIntercalibration_Stat110: 7.72747354e-12 + syst_JES_EtaIntercalibration_Stat111: 3.76248573e-15 + syst_JES_EtaIntercalibration_Stat112: 1.99311527e-14 + syst_JES_EtaIntercalibration_Stat113: 5.17455898e-09 + syst_JES_EtaIntercalibration_Stat114: 4.73598765e-08 + syst_JES_EtaIntercalibration_Stat115: 3.91902998e-08 + syst_JES_EtaIntercalibration_Stat116: 7.37605591e-08 + syst_JES_EtaIntercalibration_Stat117: 1.48773290e-07 + syst_JES_EtaIntercalibration_Stat118: 1.38300060e-07 + syst_JES_EtaIntercalibration_Stat119: 2.66129606e-07 + syst_JES_EtaIntercalibration_Stat12: 1.79353861e-07 + syst_JES_EtaIntercalibration_Stat120: 3.97551817e-08 + syst_JES_EtaIntercalibration_Stat121: 5.15548159e-13 + syst_JES_EtaIntercalibration_Stat122: 1.26082080e-11 + syst_JES_EtaIntercalibration_Stat123: 5.68092178e-15 + syst_JES_EtaIntercalibration_Stat124: 5.47884441e-15 + syst_JES_EtaIntercalibration_Stat125: 2.04543604e-14 + syst_JES_EtaIntercalibration_Stat126: 3.26231770e-08 + syst_JES_EtaIntercalibration_Stat127: 2.89165882e-16 + syst_JES_EtaIntercalibration_Stat128: 7.80436477e-08 + syst_JES_EtaIntercalibration_Stat129: 6.32701323e-08 + syst_JES_EtaIntercalibration_Stat13: 7.78665987e-08 + syst_JES_EtaIntercalibration_Stat130: 3.83389006e-13 + syst_JES_EtaIntercalibration_Stat131: 5.27886240e-09 + syst_JES_EtaIntercalibration_Stat132: 3.75919544e-10 + syst_JES_EtaIntercalibration_Stat133: 1.20963717e-07 + syst_JES_EtaIntercalibration_Stat134: 3.44162359e-08 + syst_JES_EtaIntercalibration_Stat135: 1.07647852e-07 + syst_JES_EtaIntercalibration_Stat136: 2.50041958e-08 + syst_JES_EtaIntercalibration_Stat137: 4.53562251e-08 + syst_JES_EtaIntercalibration_Stat138: 3.02520923e-08 + syst_JES_EtaIntercalibration_Stat139: 7.90271869e-08 + syst_JES_EtaIntercalibration_Stat14: 7.78665987e-08 + syst_JES_EtaIntercalibration_Stat140: 5.09677565e-08 + syst_JES_EtaIntercalibration_Stat141: 7.71312064e-10 + syst_JES_EtaIntercalibration_Stat142: 4.44244359e-08 + syst_JES_EtaIntercalibration_Stat143: 8.95793386e-14 + syst_JES_EtaIntercalibration_Stat144: 2.05176481e-12 + syst_JES_EtaIntercalibration_Stat145: 2.42313912e-08 + syst_JES_EtaIntercalibration_Stat146: 1.13290878e-07 + syst_JES_EtaIntercalibration_Stat147: 2.36732702e-13 + syst_JES_EtaIntercalibration_Stat148: 3.18615258e-11 + syst_JES_EtaIntercalibration_Stat149: 5.33484083e-08 + syst_JES_EtaIntercalibration_Stat15: 4.76833586e-08 + syst_JES_EtaIntercalibration_Stat150: 3.74751050e-10 + syst_JES_EtaIntercalibration_Stat151: 3.13685216e-07 + syst_JES_EtaIntercalibration_Stat152: 3.78970576e-08 + syst_JES_EtaIntercalibration_Stat153: 1.15919044e-07 + syst_JES_EtaIntercalibration_Stat154: 1.02131845e-07 + syst_JES_EtaIntercalibration_Stat155: 3.59083470e-08 + syst_JES_EtaIntercalibration_Stat156: 2.69701057e-07 + syst_JES_EtaIntercalibration_Stat157: 1.41462872e-07 + syst_JES_EtaIntercalibration_Stat158: 2.93514816e-07 + syst_JES_EtaIntercalibration_Stat159: 7.67768093e-10 + syst_JES_EtaIntercalibration_Stat16: 4.76833586e-08 + syst_JES_EtaIntercalibration_Stat160: 9.30614313e-08 + syst_JES_EtaIntercalibration_Stat161: 3.75249077e-08 + syst_JES_EtaIntercalibration_Stat162: 4.96924421e-08 + syst_JES_EtaIntercalibration_Stat163: 3.57234747e-08 + syst_JES_EtaIntercalibration_Stat164: 3.42460845e-09 + syst_JES_EtaIntercalibration_Stat165: 2.42199114e-11 + syst_JES_EtaIntercalibration_Stat166: 4.20999206e-08 + syst_JES_EtaIntercalibration_Stat167: 7.35470645e-09 + syst_JES_EtaIntercalibration_Stat168: 4.98320097e-08 + syst_JES_EtaIntercalibration_Stat169: 8.60723549e-08 + syst_JES_EtaIntercalibration_Stat17: 4.76833590e-08 + syst_JES_EtaIntercalibration_Stat170: 1.02445431e-07 + syst_JES_EtaIntercalibration_Stat171: 1.96362983e-07 + syst_JES_EtaIntercalibration_Stat172: 2.55659131e-07 + syst_JES_EtaIntercalibration_Stat173: 1.85192828e-07 + syst_JES_EtaIntercalibration_Stat174: 2.13302479e-07 + syst_JES_EtaIntercalibration_Stat175: 2.26882234e-07 + syst_JES_EtaIntercalibration_Stat176: 1.74966794e-07 + syst_JES_EtaIntercalibration_Stat177: 2.02122841e-07 + syst_JES_EtaIntercalibration_Stat178: 4.82007005e-08 + syst_JES_EtaIntercalibration_Stat179: 4.80175832e-08 + syst_JES_EtaIntercalibration_Stat18: 4.76833586e-08 + syst_JES_EtaIntercalibration_Stat180: 2.44010710e-11 + syst_JES_EtaIntercalibration_Stat181: 2.01935911e-13 + syst_JES_EtaIntercalibration_Stat182: 4.45367027e-08 + syst_JES_EtaIntercalibration_Stat183: 2.61260349e-08 + syst_JES_EtaIntercalibration_Stat184: 2.21252435e-08 + syst_JES_EtaIntercalibration_Stat185: 1.75246752e-07 + syst_JES_EtaIntercalibration_Stat186: 6.79108482e-07 + syst_JES_EtaIntercalibration_Stat187: 1.27026300e-06 + syst_JES_EtaIntercalibration_Stat188: 1.72439961e-06 + syst_JES_EtaIntercalibration_Stat189: 1.26046395e-06 + syst_JES_EtaIntercalibration_Stat19: 7.78665987e-08 + syst_JES_EtaIntercalibration_Stat190: 1.05337743e-06 + syst_JES_EtaIntercalibration_Stat191: 1.70495874e-06 + syst_JES_EtaIntercalibration_Stat192: 1.04441788e-06 + syst_JES_EtaIntercalibration_Stat193: 6.85511444e-07 + syst_JES_EtaIntercalibration_Stat194: 1.18551334e-07 + syst_JES_EtaIntercalibration_Stat195: 1.67623035e-08 + syst_JES_EtaIntercalibration_Stat196: 3.57247793e-09 + syst_JES_EtaIntercalibration_Stat197: 9.69304404e-08 + syst_JES_EtaIntercalibration_Stat198: 1.06757722e-07 + syst_JES_EtaIntercalibration_Stat199: 4.65303145e-07 + syst_JES_EtaIntercalibration_Stat2: 7.78665987e-08 + syst_JES_EtaIntercalibration_Stat20: 7.78665987e-08 + syst_JES_EtaIntercalibration_Stat200: 4.40793584e-07 + syst_JES_EtaIntercalibration_Stat201: 1.33341248e-06 + syst_JES_EtaIntercalibration_Stat202: 2.87832469e-06 + syst_JES_EtaIntercalibration_Stat203: 3.90556052e-06 + syst_JES_EtaIntercalibration_Stat204: 2.55426012e-06 + syst_JES_EtaIntercalibration_Stat205: 2.98798310e-06 + syst_JES_EtaIntercalibration_Stat206: 3.46492291e-06 + syst_JES_EtaIntercalibration_Stat207: 2.98184641e-06 + syst_JES_EtaIntercalibration_Stat208: 1.68374823e-06 + syst_JES_EtaIntercalibration_Stat209: 4.56112749e-07 + syst_JES_EtaIntercalibration_Stat21: 7.78665987e-08 + syst_JES_EtaIntercalibration_Stat210: 2.59463868e-07 + syst_JES_EtaIntercalibration_Stat211: 1.05167778e-07 + syst_JES_EtaIntercalibration_Stat212: 5.31133380e-08 + syst_JES_EtaIntercalibration_Stat213: 2.05733681e-07 + syst_JES_EtaIntercalibration_Stat214: 1.24286515e-06 + syst_JES_EtaIntercalibration_Stat215: 3.47035621e-06 + syst_JES_EtaIntercalibration_Stat216: 4.83123967e-06 + syst_JES_EtaIntercalibration_Stat217: 2.89433632e-06 + syst_JES_EtaIntercalibration_Stat218: 3.54965220e-06 + syst_JES_EtaIntercalibration_Stat219: 4.04000025e-06 + syst_JES_EtaIntercalibration_Stat22: 7.78665987e-08 + syst_JES_EtaIntercalibration_Stat220: 3.70341073e-06 + syst_JES_EtaIntercalibration_Stat221: 9.78873005e-07 + syst_JES_EtaIntercalibration_Stat222: 5.00264078e-07 + syst_JES_EtaIntercalibration_Stat223: 2.22292802e-07 + syst_JES_EtaIntercalibration_Stat224: 1.25744782e-07 + syst_JES_EtaIntercalibration_Stat225: 1.70553238e-06 + syst_JES_EtaIntercalibration_Stat226: 3.76891112e-06 + syst_JES_EtaIntercalibration_Stat227: 9.93184061e-06 + syst_JES_EtaIntercalibration_Stat228: 1.18860455e-05 + syst_JES_EtaIntercalibration_Stat229: 1.01444528e-05 + syst_JES_EtaIntercalibration_Stat23: 7.75346147e-08 + syst_JES_EtaIntercalibration_Stat230: 9.25661033e-06 + syst_JES_EtaIntercalibration_Stat231: 1.43086314e-05 + syst_JES_EtaIntercalibration_Stat232: 1.07102188e-05 + syst_JES_EtaIntercalibration_Stat233: 3.62172897e-06 + syst_JES_EtaIntercalibration_Stat234: 8.20283361e-07 + syst_JES_EtaIntercalibration_Stat235: 1.36658809e-07 + syst_JES_EtaIntercalibration_Stat236: 4.13600369e-07 + syst_JES_EtaIntercalibration_Stat237: 9.50175346e-07 + syst_JES_EtaIntercalibration_Stat238: 1.97056768e-06 + syst_JES_EtaIntercalibration_Stat239: 1.75791830e-06 + syst_JES_EtaIntercalibration_Stat24: 4.76833586e-08 + syst_JES_EtaIntercalibration_Stat240: 1.03986794e-06 + syst_JES_EtaIntercalibration_Stat241: 9.47047437e-07 + syst_JES_EtaIntercalibration_Stat242: 1.35067957e-06 + syst_JES_EtaIntercalibration_Stat243: 1.05214455e-06 + syst_JES_EtaIntercalibration_Stat244: 5.08218779e-07 + syst_JES_EtaIntercalibration_Stat245: 1.99610241e-07 + syst_JES_EtaIntercalibration_Stat25: 1.38149572e-15 + syst_JES_EtaIntercalibration_Stat26: 4.73125150e-16 + syst_JES_EtaIntercalibration_Stat27: 4.91085682e-16 + syst_JES_EtaIntercalibration_Stat28: 4.73903229e-16 + syst_JES_EtaIntercalibration_Stat29: 5.18413351e-09 + syst_JES_EtaIntercalibration_Stat3: 7.78736700e-08 + syst_JES_EtaIntercalibration_Stat30: 4.83698253e-16 + syst_JES_EtaIntercalibration_Stat31: 5.82488687e-08 + syst_JES_EtaIntercalibration_Stat32: 2.77214732e-07 + syst_JES_EtaIntercalibration_Stat33: 4.42971994e-07 + syst_JES_EtaIntercalibration_Stat34: 2.77214732e-07 + syst_JES_EtaIntercalibration_Stat35: 3.02178483e-16 + syst_JES_EtaIntercalibration_Stat36: 6.57442669e-08 + syst_JES_EtaIntercalibration_Stat37: 4.87832109e-08 + syst_JES_EtaIntercalibration_Stat38: 4.80533753e-16 + syst_JES_EtaIntercalibration_Stat39: 4.80676677e-16 + syst_JES_EtaIntercalibration_Stat4: 7.78736700e-08 + syst_JES_EtaIntercalibration_Stat40: 4.76746984e-08 + syst_JES_EtaIntercalibration_Stat41: 7.78736700e-08 + syst_JES_EtaIntercalibration_Stat42: 7.78665987e-08 + syst_JES_EtaIntercalibration_Stat43: 7.78665987e-08 + syst_JES_EtaIntercalibration_Stat44: 7.78665987e-08 + syst_JES_EtaIntercalibration_Stat45: 7.78665987e-08 + syst_JES_EtaIntercalibration_Stat46: 4.82076516e-16 + syst_JES_EtaIntercalibration_Stat47: 2.89061447e-16 + syst_JES_EtaIntercalibration_Stat48: 1.40724359e-15 + syst_JES_EtaIntercalibration_Stat49: 4.76227374e-08 + syst_JES_EtaIntercalibration_Stat5: 7.78665987e-08 + syst_JES_EtaIntercalibration_Stat50: 2.10011635e-15 + syst_JES_EtaIntercalibration_Stat51: 5.18405410e-09 + syst_JES_EtaIntercalibration_Stat52: 5.22386524e-09 + syst_JES_EtaIntercalibration_Stat53: 5.95738874e-08 + syst_JES_EtaIntercalibration_Stat54: 2.77214732e-07 + syst_JES_EtaIntercalibration_Stat55: 2.77214732e-07 + syst_JES_EtaIntercalibration_Stat56: 2.77214732e-07 + syst_JES_EtaIntercalibration_Stat57: 9.30185061e-16 + syst_JES_EtaIntercalibration_Stat58: 1.55983133e-16 + syst_JES_EtaIntercalibration_Stat59: 3.09863889e-08 + syst_JES_EtaIntercalibration_Stat6: 5.17796589e-08 + syst_JES_EtaIntercalibration_Stat60: 7.67890505e-08 + syst_JES_EtaIntercalibration_Stat61: 2.87941809e-16 + syst_JES_EtaIntercalibration_Stat62: 4.75880958e-08 + syst_JES_EtaIntercalibration_Stat63: 4.71853121e-16 + syst_JES_EtaIntercalibration_Stat64: 7.78665987e-08 + syst_JES_EtaIntercalibration_Stat65: 7.78665987e-08 + syst_JES_EtaIntercalibration_Stat66: 7.78665987e-08 + syst_JES_EtaIntercalibration_Stat67: 7.78665987e-08 + syst_JES_EtaIntercalibration_Stat68: 2.59999275e-20 + syst_JES_EtaIntercalibration_Stat69: 4.70858013e-08 + syst_JES_EtaIntercalibration_Stat7: 4.76833586e-08 + syst_JES_EtaIntercalibration_Stat70: 3.77846884e-08 + syst_JES_EtaIntercalibration_Stat71: 1.58569252e-07 + syst_JES_EtaIntercalibration_Stat72: 5.23858767e-09 + syst_JES_EtaIntercalibration_Stat73: 5.23858767e-09 + syst_JES_EtaIntercalibration_Stat74: 3.84255472e-08 + syst_JES_EtaIntercalibration_Stat75: 3.26145167e-07 + syst_JES_EtaIntercalibration_Stat76: 2.77214732e-07 + syst_JES_EtaIntercalibration_Stat77: 7.04598269e-08 + syst_JES_EtaIntercalibration_Stat78: 1.39763344e-07 + syst_JES_EtaIntercalibration_Stat79: 2.03082957e-07 + syst_JES_EtaIntercalibration_Stat8: 3.00531888e-16 + syst_JES_EtaIntercalibration_Stat80: 2.75049668e-07 + syst_JES_EtaIntercalibration_Stat81: 1.86045230e-16 + syst_JES_EtaIntercalibration_Stat82: 1.97313007e-16 + syst_JES_EtaIntercalibration_Stat83: 4.74336716e-16 + syst_JES_EtaIntercalibration_Stat84: 2.87942123e-16 + syst_JES_EtaIntercalibration_Stat85: 2.88739801e-16 + syst_JES_EtaIntercalibration_Stat86: 4.76833587e-08 + syst_JES_EtaIntercalibration_Stat87: 4.76833587e-08 + syst_JES_EtaIntercalibration_Stat88: 2.89685037e-16 + syst_JES_EtaIntercalibration_Stat89: 4.63670001e-08 + syst_JES_EtaIntercalibration_Stat9: 1.79353861e-07 + syst_JES_EtaIntercalibration_Stat90: 2.30811734e-15 + syst_JES_EtaIntercalibration_Stat91: 2.33867226e-15 + syst_JES_EtaIntercalibration_Stat92: 3.23384236e-15 + syst_JES_EtaIntercalibration_Stat93: 5.23945370e-09 + syst_JES_EtaIntercalibration_Stat94: 5.18234917e-09 + syst_JES_EtaIntercalibration_Stat95: 3.92309420e-08 + syst_JES_EtaIntercalibration_Stat96: 2.77214732e-07 + syst_JES_EtaIntercalibration_Stat97: 2.62697989e-07 + syst_JES_EtaIntercalibration_Stat98: 2.62147027e-07 + syst_JES_EtaIntercalibration_Stat99: 3.10643312e-07 + syst_JES_EtaIntercalibration_TotalStat_MJB: 2.52835534e-04 + syst_JES_Flavour_Comp: 6.43844911e-04 + syst_JES_Flavour_Response: 1.61462987e-05 + syst_JES_Gjet_Generator: 7.56748062e-04 + syst_JES_Gjet_OOC: 6.33750408e-04 + syst_JES_Gjet_Purity: 1.08512971e-04 + syst_JES_Gjet_Stat1: 2.04264363e-06 + syst_JES_Gjet_Stat10: 1.21970058e-05 + syst_JES_Gjet_Stat11: 1.31661240e-05 + syst_JES_Gjet_Stat12: 3.67911348e-05 + syst_JES_Gjet_Stat13: 1.22873012e-04 + syst_JES_Gjet_Stat14: 3.38096111e-04 + syst_JES_Gjet_Stat15: 4.58313124e-04 + syst_JES_Gjet_Stat2: 2.12810873e-06 + syst_JES_Gjet_Stat3: 3.11187452e-06 + syst_JES_Gjet_Stat4: 2.02111127e-06 + syst_JES_Gjet_Stat5: 1.90913927e-06 + syst_JES_Gjet_Stat6: 8.95299760e-06 + syst_JES_Gjet_Stat7: 6.87050668e-06 + syst_JES_Gjet_Stat8: 4.41024974e-06 + syst_JES_Gjet_Stat9: 6.73529827e-06 + syst_JES_Gjet_Veto: 6.37094671e-04 + syst_JES_Gjet_dPhi: 6.41880446e-05 + syst_JES_LArESZee: 1.13497624e-03 + syst_JES_LArEsmear: 9.86952688e-05 + syst_JES_LAr_JVT: 1.25530089e-04 + syst_JES_MJB_Alpha: 8.98847577e-06 + syst_JES_MJB_Asym: 1.37920657e-04 + syst_JES_MJB_Beta: 7.73653545e-06 + syst_JES_MJB_Fragmentation: 6.50567696e-05 + syst_JES_MJB_Stat1: 1.86872856e-07 + syst_JES_MJB_Stat10: 1.18561787e-05 + syst_JES_MJB_Stat11: 1.47450017e-05 + syst_JES_MJB_Stat12: 2.11652658e-05 + syst_JES_MJB_Stat13: 2.30347281e-05 + syst_JES_MJB_Stat14: 1.63202512e-05 + syst_JES_MJB_Stat15: 2.68025540e-05 + syst_JES_MJB_Stat16: 1.95180762e-05 + syst_JES_MJB_Stat2: 3.06912052e-07 + syst_JES_MJB_Stat3: 1.36779046e-06 + syst_JES_MJB_Stat4: 1.41376012e-06 + syst_JES_MJB_Stat5: 2.03384875e-06 + syst_JES_MJB_Stat6: 3.01770128e-06 + syst_JES_MJB_Stat7: 3.21504992e-06 + syst_JES_MJB_Stat8: 4.80663562e-06 + syst_JES_MJB_Stat9: 7.73011378e-06 + syst_JES_MJB_Threshold: 9.75664301e-05 + syst_JES_Pileup_MuOffset: 1.51998512e-04 + syst_JES_Pileup_NPVOffset: 1.58470723e-04 + syst_JES_Pileup_Pt_term: 9.09836088e-05 + syst_JES_Pileup_Rho_topology: 2.03589900e-04 + syst_JES_PunchThrough_MC15: 1.75857634e-04 + syst_JES_SingleParticle_HighPt: 7.42059310e-08 + syst_JES_Zjet_MC: 2.94175101e-04 + syst_JES_Zjet_MuScale: 2.20005500e-05 + syst_JES_Zjet_MuSmearID: 5.42372492e-06 + syst_JES_Zjet_MuSmearMS: 7.88252845e-05 + syst_JES_Zjet_OOC: 1.75821692e-04 + syst_JES_Zjet_Stat1: 1.52963746e-05 + syst_JES_Zjet_Stat10: 1.52016085e-05 + syst_JES_Zjet_Stat11: 1.99109844e-05 + syst_JES_Zjet_Stat12: 5.02507960e-05 + syst_JES_Zjet_Stat13: 8.09982092e-05 + syst_JES_Zjet_Stat2: 5.76687420e-07 + syst_JES_Zjet_Stat3: 8.26207255e-06 + syst_JES_Zjet_Stat4: 8.14440182e-06 + syst_JES_Zjet_Stat5: 1.04488728e-05 + syst_JES_Zjet_Stat6: 6.09902361e-06 + syst_JES_Zjet_Stat7: 7.38642706e-06 + syst_JES_Zjet_Stat8: 5.94415349e-06 + syst_JES_Zjet_Stat9: 9.12187185e-06 + syst_JES_Zjet_Veto: 3.60494410e-05 + syst_JES_Zjet_dPhi: 3.27933206e-05 syst_PRW: 0.0 - syst_Unfolding_bias: 1.742e-19 - syst_cleaning: 0.0003338874341750525 - syst_lumi: 0.0006448 -- stat: 0.00023407 - syst_JER_CROSS_CALIB_FORWARD: 1.562e-20 - syst_JER_NOISE_FORWARD: 1.1682e-20 - syst_JER_NP0: 2.1527946372099683e-05 - syst_JER_NP1: 5.438390202992058e-06 - syst_JER_NP2: 2.1631980954133627e-05 - syst_JER_NP3: 2.0575064398441136e-06 - syst_JER_NP4: 2.3279458756594836e-06 - syst_JER_NP5: 6.649682154058192e-12 - syst_JER_NP6: 1.872087393125652e-06 - syst_JER_NP7: 4.225337945064276e-12 - syst_JER_NP8: 5.4580378113384305e-06 - syst_JES_EtaIntercalibration_Modelling: 0.00041400269020865066 - syst_JES_EtaIntercalibration_NonClosure: 7.72150845042599e-09 - syst_JES_EtaIntercalibration_Stat0: 4.1917289988738535e-08 - syst_JES_EtaIntercalibration_Stat1: 4.1917289988738535e-08 - syst_JES_EtaIntercalibration_Stat10: 1.403246977548856e-07 - syst_JES_EtaIntercalibration_Stat100: 7.890356899623917e-08 - syst_JES_EtaIntercalibration_Stat101: 1.4425783507549946e-16 - syst_JES_EtaIntercalibration_Stat102: 1.664899780767599e-17 - syst_JES_EtaIntercalibration_Stat103: 2.7227838698655567e-08 - syst_JES_EtaIntercalibration_Stat104: 2.831768561782548e-17 - syst_JES_EtaIntercalibration_Stat105: 8.476284665119544e-17 - syst_JES_EtaIntercalibration_Stat106: 1.3560993345501023e-17 - syst_JES_EtaIntercalibration_Stat107: 2.5668992968170772e-08 - syst_JES_EtaIntercalibration_Stat108: 2.5920140335268245e-08 - syst_JES_EtaIntercalibration_Stat109: 5.580972480201704e-13 - syst_JES_EtaIntercalibration_Stat11: 1.4739752372410205e-07 - syst_JES_EtaIntercalibration_Stat110: 5.579970611552717e-13 - syst_JES_EtaIntercalibration_Stat111: 2.8889954841605413e-16 - syst_JES_EtaIntercalibration_Stat112: 1.4267346737816216e-15 - syst_JES_EtaIntercalibration_Stat113: 5.673599052409326e-10 - syst_JES_EtaIntercalibration_Stat114: 2.5482360075157874e-08 - syst_JES_EtaIntercalibration_Stat115: 1.842944608500212e-08 - syst_JES_EtaIntercalibration_Stat116: 4.4437672989818e-08 - syst_JES_EtaIntercalibration_Stat117: 3.361443551511761e-08 - syst_JES_EtaIntercalibration_Stat118: 7.856279390875811e-08 - syst_JES_EtaIntercalibration_Stat119: 1.475707287639371e-07 - syst_JES_EtaIntercalibration_Stat12: 1.6125393018475698e-08 - syst_JES_EtaIntercalibration_Stat120: 2.140011682211104e-08 - syst_JES_EtaIntercalibration_Stat121: 3.7063356614316516e-14 - syst_JES_EtaIntercalibration_Stat122: 9.105800528346916e-13 - syst_JES_EtaIntercalibration_Stat123: 4.458647407846913e-16 - syst_JES_EtaIntercalibration_Stat124: 4.2983998403475685e-16 - syst_JES_EtaIntercalibration_Stat125: 1.606989330238381e-15 - syst_JES_EtaIntercalibration_Stat126: 1.7562995189340777e-08 - syst_JES_EtaIntercalibration_Stat127: 2.765219114283713e-17 - syst_JES_EtaIntercalibration_Stat128: 4.201070735781497e-08 - syst_JES_EtaIntercalibration_Stat129: 3.4054595076118433e-08 - syst_JES_EtaIntercalibration_Stat13: 4.1917289988738535e-08 - syst_JES_EtaIntercalibration_Stat130: 2.752533514782336e-14 - syst_JES_EtaIntercalibration_Stat131: 5.818961048159715e-10 - syst_JES_EtaIntercalibration_Stat132: 3.725494692060614e-11 - syst_JES_EtaIntercalibration_Stat133: 4.837594389776804e-08 - syst_JES_EtaIntercalibration_Stat134: 1.9843289415568175e-08 - syst_JES_EtaIntercalibration_Stat135: 2.4889726294196167e-08 - syst_JES_EtaIntercalibration_Stat136: 1.623552760235019e-08 - syst_JES_EtaIntercalibration_Stat137: 4.5268935678536775e-08 - syst_JES_EtaIntercalibration_Stat138: 2.0805302917044972e-08 - syst_JES_EtaIntercalibration_Stat139: 4.5171447563698906e-08 - syst_JES_EtaIntercalibration_Stat14: 4.1917289988738535e-08 - syst_JES_EtaIntercalibration_Stat140: 8.118087028358342e-09 - syst_JES_EtaIntercalibration_Stat141: 7.796933416895388e-11 - syst_JES_EtaIntercalibration_Stat142: 2.391076862745043e-08 - syst_JES_EtaIntercalibration_Stat143: 6.987869972316314e-15 - syst_JES_EtaIntercalibration_Stat144: 1.4688642789584065e-13 - syst_JES_EtaIntercalibration_Stat145: 9.85450310628157e-09 - syst_JES_EtaIntercalibration_Stat146: 4.6081026495514766e-08 - syst_JES_EtaIntercalibration_Stat147: 1.7091958927247048e-14 - syst_JES_EtaIntercalibration_Stat148: 2.478500756505836e-12 - syst_JES_EtaIntercalibration_Stat149: 3.8849062730006755e-08 - syst_JES_EtaIntercalibration_Stat15: 2.5668992958944704e-08 - syst_JES_EtaIntercalibration_Stat150: 3.7171566095524153e-11 - syst_JES_EtaIntercalibration_Stat151: 2.505279774795622e-07 - syst_JES_EtaIntercalibration_Stat152: 2.1692662575338695e-08 - syst_JES_EtaIntercalibration_Stat153: 2.5632445424305502e-08 - syst_JES_EtaIntercalibration_Stat154: 1.517496777236446e-08 - syst_JES_EtaIntercalibration_Stat155: 3.72993022197768e-08 - syst_JES_EtaIntercalibration_Stat156: 1.3303617064543011e-07 - syst_JES_EtaIntercalibration_Stat157: 8.073386696424246e-08 - syst_JES_EtaIntercalibration_Stat158: 1.0254469036961397e-07 - syst_JES_EtaIntercalibration_Stat159: 7.743504379801176e-11 - syst_JES_EtaIntercalibration_Stat16: 2.5668992958944704e-08 - syst_JES_EtaIntercalibration_Stat160: 5.009352353348684e-08 - syst_JES_EtaIntercalibration_Stat161: 1.5259369764735424e-08 - syst_JES_EtaIntercalibration_Stat162: 2.6742857604175817e-08 - syst_JES_EtaIntercalibration_Stat163: 1.9225758689925616e-08 - syst_JES_EtaIntercalibration_Stat164: 4.5882007053591215e-10 - syst_JES_EtaIntercalibration_Stat165: 1.8231222579684555e-12 - syst_JES_EtaIntercalibration_Stat166: 2.269807553571888e-08 - syst_JES_EtaIntercalibration_Stat167: 7.947894988611765e-10 - syst_JES_EtaIntercalibration_Stat168: 2.6527048700736535e-08 - syst_JES_EtaIntercalibration_Stat169: 1.0304564656015314e-07 - syst_JES_EtaIntercalibration_Stat17: 2.5668992987581277e-08 - syst_JES_EtaIntercalibration_Stat170: 5.697218333774825e-08 - syst_JES_EtaIntercalibration_Stat171: 1.2300309863983102e-07 - syst_JES_EtaIntercalibration_Stat172: 1.3631201084277202e-07 - syst_JES_EtaIntercalibration_Stat173: 9.557280824062877e-08 - syst_JES_EtaIntercalibration_Stat174: 1.248209993350478e-07 - syst_JES_EtaIntercalibration_Stat175: 1.4278920232286475e-07 - syst_JES_EtaIntercalibration_Stat176: 2.0180962390332133e-08 - syst_JES_EtaIntercalibration_Stat177: 3.565681000874868e-08 - syst_JES_EtaIntercalibration_Stat178: 2.5953989612158607e-08 - syst_JES_EtaIntercalibration_Stat179: 2.5799308455753364e-08 - syst_JES_EtaIntercalibration_Stat18: 2.5668992958944704e-08 - syst_JES_EtaIntercalibration_Stat180: 1.8616218386127725e-12 - syst_JES_EtaIntercalibration_Stat181: 1.4633345482151372e-14 - syst_JES_EtaIntercalibration_Stat182: 2.490670421131628e-08 - syst_JES_EtaIntercalibration_Stat183: 2.030700864233824e-08 - syst_JES_EtaIntercalibration_Stat184: 1.3468595583801603e-08 - syst_JES_EtaIntercalibration_Stat185: 7.267892868638062e-08 - syst_JES_EtaIntercalibration_Stat186: 3.488049132394784e-07 - syst_JES_EtaIntercalibration_Stat187: 7.617277646902468e-07 - syst_JES_EtaIntercalibration_Stat188: 1.0820254155979887e-06 - syst_JES_EtaIntercalibration_Stat189: 8.433311804979109e-07 - syst_JES_EtaIntercalibration_Stat19: 4.1917289988738535e-08 - syst_JES_EtaIntercalibration_Stat190: 7.617685212713899e-07 - syst_JES_EtaIntercalibration_Stat191: 9.518234959802159e-07 - syst_JES_EtaIntercalibration_Stat192: 6.702173602645638e-07 - syst_JES_EtaIntercalibration_Stat193: 2.994593713260615e-07 - syst_JES_EtaIntercalibration_Stat194: 5.1700800641769564e-08 - syst_JES_EtaIntercalibration_Stat195: 4.078160726050409e-09 - syst_JES_EtaIntercalibration_Stat196: 4.822993400233146e-10 - syst_JES_EtaIntercalibration_Stat197: 5.249549123496227e-08 - syst_JES_EtaIntercalibration_Stat198: 4.587613540829263e-08 - syst_JES_EtaIntercalibration_Stat199: 2.46407604387527e-07 - syst_JES_EtaIntercalibration_Stat2: 4.1917289988738535e-08 - syst_JES_EtaIntercalibration_Stat20: 4.1917289988738535e-08 - syst_JES_EtaIntercalibration_Stat200: 2.1171154119811228e-07 - syst_JES_EtaIntercalibration_Stat201: 6.44431423814823e-07 - syst_JES_EtaIntercalibration_Stat202: 1.5270107792677825e-06 - syst_JES_EtaIntercalibration_Stat203: 2.286148453184963e-06 - syst_JES_EtaIntercalibration_Stat204: 1.6806879543805865e-06 - syst_JES_EtaIntercalibration_Stat205: 1.8077856620739089e-06 - syst_JES_EtaIntercalibration_Stat206: 2.2446645072259685e-06 - syst_JES_EtaIntercalibration_Stat207: 1.4664349525294329e-06 - syst_JES_EtaIntercalibration_Stat208: 8.201768147783744e-07 - syst_JES_EtaIntercalibration_Stat209: 1.2905515904062106e-07 - syst_JES_EtaIntercalibration_Stat21: 4.1917289988738535e-08 - syst_JES_EtaIntercalibration_Stat210: 4.3708246324349366e-08 - syst_JES_EtaIntercalibration_Stat211: 2.5449404985333153e-08 - syst_JES_EtaIntercalibration_Stat212: 3.1661888762982324e-08 - syst_JES_EtaIntercalibration_Stat213: 1.0952848704789088e-07 - syst_JES_EtaIntercalibration_Stat214: 6.915827716188424e-07 - syst_JES_EtaIntercalibration_Stat215: 2.0225011124842427e-06 - syst_JES_EtaIntercalibration_Stat216: 2.7674804425686553e-06 - syst_JES_EtaIntercalibration_Stat217: 1.8822927508759097e-06 - syst_JES_EtaIntercalibration_Stat218: 2.069942511278997e-06 - syst_JES_EtaIntercalibration_Stat219: 2.5609146803437245e-06 - syst_JES_EtaIntercalibration_Stat22: 4.1917289988738535e-08 - syst_JES_EtaIntercalibration_Stat220: 1.8530004722071714e-06 - syst_JES_EtaIntercalibration_Stat221: 5.575825768440042e-07 - syst_JES_EtaIntercalibration_Stat222: 1.5735821260741365e-07 - syst_JES_EtaIntercalibration_Stat223: 4.616794423623387e-08 - syst_JES_EtaIntercalibration_Stat224: 6.592887227914641e-08 - syst_JES_EtaIntercalibration_Stat225: 9.138478757430036e-07 - syst_JES_EtaIntercalibration_Stat226: 1.921318492598247e-06 - syst_JES_EtaIntercalibration_Stat227: 4.963287091232987e-06 - syst_JES_EtaIntercalibration_Stat228: 7.209344127588861e-06 - syst_JES_EtaIntercalibration_Stat229: 6.583024589806725e-06 - syst_JES_EtaIntercalibration_Stat23: 4.173364470064889e-08 - syst_JES_EtaIntercalibration_Stat230: 5.5282021263698385e-06 - syst_JES_EtaIntercalibration_Stat231: 8.42625610814198e-06 - syst_JES_EtaIntercalibration_Stat232: 5.201005167272958e-06 - syst_JES_EtaIntercalibration_Stat233: 1.8240846334531737e-06 - syst_JES_EtaIntercalibration_Stat234: 3.722990111120361e-07 - syst_JES_EtaIntercalibration_Stat235: 5.850001603483025e-08 - syst_JES_EtaIntercalibration_Stat236: 2.0270451538534483e-07 - syst_JES_EtaIntercalibration_Stat237: 4.87679144007615e-07 - syst_JES_EtaIntercalibration_Stat238: 9.217179720500192e-07 - syst_JES_EtaIntercalibration_Stat239: 1.101808313637177e-06 - syst_JES_EtaIntercalibration_Stat24: 2.5668992958936045e-08 - syst_JES_EtaIntercalibration_Stat240: 7.344196143894851e-07 - syst_JES_EtaIntercalibration_Stat241: 6.115414458562887e-07 - syst_JES_EtaIntercalibration_Stat242: 7.739439175418333e-07 - syst_JES_EtaIntercalibration_Stat243: 7.177800829641346e-07 - syst_JES_EtaIntercalibration_Stat244: 2.2224438688074892e-07 - syst_JES_EtaIntercalibration_Stat245: 4.958525083127038e-08 - syst_JES_EtaIntercalibration_Stat25: 9.855490994871846e-17 - syst_JES_EtaIntercalibration_Stat26: 4.5226554146872613e-17 - syst_JES_EtaIntercalibration_Stat27: 4.7213522162617775e-17 - syst_JES_EtaIntercalibration_Stat28: 4.5261905339921344e-17 - syst_JES_EtaIntercalibration_Stat29: 5.683798705091517e-10 - syst_JES_EtaIntercalibration_Stat3: 4.1917289988738535e-08 - syst_JES_EtaIntercalibration_Stat30: 4.63840454790222e-17 - syst_JES_EtaIntercalibration_Stat31: 6.817351978592274e-09 - syst_JES_EtaIntercalibration_Stat32: 5.5927920576407784e-08 - syst_JES_EtaIntercalibration_Stat33: 1.4739752372409456e-07 - syst_JES_EtaIntercalibration_Stat34: 5.592792057641908e-08 - syst_JES_EtaIntercalibration_Stat35: 2.90661637459693e-17 - syst_JES_EtaIntercalibration_Stat36: 3.5383028064313546e-08 - syst_JES_EtaIntercalibration_Stat37: 2.6257890233509464e-08 - syst_JES_EtaIntercalibration_Stat38: 4.6053742518931073e-17 - syst_JES_EtaIntercalibration_Stat39: 4.606805726314058e-17 - syst_JES_EtaIntercalibration_Stat4: 4.1917289988738535e-08 - syst_JES_EtaIntercalibration_Stat40: 2.5660332704964594e-08 - syst_JES_EtaIntercalibration_Stat41: 4.1917289988738535e-08 - syst_JES_EtaIntercalibration_Stat42: 4.1917289988738535e-08 - syst_JES_EtaIntercalibration_Stat43: 4.1917289988738535e-08 - syst_JES_EtaIntercalibration_Stat44: 4.1917289988738535e-08 - syst_JES_EtaIntercalibration_Stat45: 4.1917289988738535e-08 - syst_JES_EtaIntercalibration_Stat46: 4.622879486856649e-17 - syst_JES_EtaIntercalibration_Stat47: 2.7222727637031525e-17 - syst_JES_EtaIntercalibration_Stat48: 1.0133830408586873e-16 - syst_JES_EtaIntercalibration_Stat49: 2.5634351986787417e-08 - syst_JES_EtaIntercalibration_Stat5: 4.1917289988738535e-08 - syst_JES_EtaIntercalibration_Stat50: 1.676634664919386e-16 - syst_JES_EtaIntercalibration_Stat51: 5.68396168882233e-10 - syst_JES_EtaIntercalibration_Stat52: 5.71143753781545e-10 - syst_JES_EtaIntercalibration_Stat53: 6.4449610641523216e-09 - syst_JES_EtaIntercalibration_Stat54: 5.5927920576397745e-08 - syst_JES_EtaIntercalibration_Stat55: 5.592792057673532e-08 - syst_JES_EtaIntercalibration_Stat56: 5.592792057641483e-08 - syst_JES_EtaIntercalibration_Stat57: 8.118835347369614e-17 - syst_JES_EtaIntercalibration_Stat58: 1.3642051517441503e-17 - syst_JES_EtaIntercalibration_Stat59: 1.6679649276886704e-08 - syst_JES_EtaIntercalibration_Stat6: 2.7877357747829292e-08 - syst_JES_EtaIntercalibration_Stat60: 4.133268047199455e-08 - syst_JES_EtaIntercalibration_Stat61: 2.750290716710829e-17 - syst_JES_EtaIntercalibration_Stat62: 2.5608371180737527e-08 - syst_JES_EtaIntercalibration_Stat63: 4.5099381370480017e-17 - syst_JES_EtaIntercalibration_Stat64: 4.1917289988738535e-08 - syst_JES_EtaIntercalibration_Stat65: 4.1917289988738535e-08 - syst_JES_EtaIntercalibration_Stat66: 4.1917289988738535e-08 - syst_JES_EtaIntercalibration_Stat67: 4.1917289988738535e-08 - syst_JES_EtaIntercalibration_Stat68: 2.5782975017441254e-21 - syst_JES_EtaIntercalibration_Stat69: 2.534856357427267e-08 - syst_JES_EtaIntercalibration_Stat7: 2.5668992958508803e-08 - syst_JES_EtaIntercalibration_Stat70: 2.0342936734906076e-08 - syst_JES_EtaIntercalibration_Stat71: 6.449291188258513e-08 - syst_JES_EtaIntercalibration_Stat72: 5.726159969712784e-10 - syst_JES_EtaIntercalibration_Stat73: 5.726159969333404e-10 - syst_JES_EtaIntercalibration_Stat74: 2.0680686642421267e-08 - syst_JES_EtaIntercalibration_Stat75: 6.585257170375618e-08 - syst_JES_EtaIntercalibration_Stat76: 5.597988210065851e-08 - syst_JES_EtaIntercalibration_Stat77: 2.3564551236888406e-09 - syst_JES_EtaIntercalibration_Stat78: 7.545850034952988e-08 - syst_JES_EtaIntercalibration_Stat79: 1.0932704697379458e-07 - syst_JES_EtaIntercalibration_Stat8: 2.8891150661870066e-17 - syst_JES_EtaIntercalibration_Stat80: 1.1187316166081778e-07 - syst_JES_EtaIntercalibration_Stat81: 1.668134802706304e-17 - syst_JES_EtaIntercalibration_Stat82: 2.02814668293494e-17 - syst_JES_EtaIntercalibration_Stat83: 4.703781112041673e-17 - syst_JES_EtaIntercalibration_Stat84: 2.7537330947081184e-17 - syst_JES_EtaIntercalibration_Stat85: 2.7609645995636577e-17 - syst_JES_EtaIntercalibration_Stat86: 2.5668992968170782e-08 - syst_JES_EtaIntercalibration_Stat87: 2.5668992968170763e-08 - syst_JES_EtaIntercalibration_Stat88: 2.7704064651134188e-17 - syst_JES_EtaIntercalibration_Stat89: 2.4958852137046716e-08 - syst_JES_EtaIntercalibration_Stat9: 1.6142713516903073e-08 - syst_JES_EtaIntercalibration_Stat90: 1.8542664286252798e-16 - syst_JES_EtaIntercalibration_Stat91: 1.8780385517541965e-16 - syst_JES_EtaIntercalibration_Stat92: 2.578335933258055e-16 - syst_JES_EtaIntercalibration_Stat93: 5.727026000275421e-10 - syst_JES_EtaIntercalibration_Stat94: 5.683122900967389e-10 - syst_JES_EtaIntercalibration_Stat95: 2.111369867973454e-08 - syst_JES_EtaIntercalibration_Stat96: 5.5979882127767354e-08 - syst_JES_EtaIntercalibration_Stat97: 5.5396695749836924e-08 - syst_JES_EtaIntercalibration_Stat98: 6.765331976333459e-08 - syst_JES_EtaIntercalibration_Stat99: 1.2635310641216976e-07 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0001496684335456211 - syst_JES_Flavour_Comp: 0.0003793547188318606 - syst_JES_Flavour_Response: 2.9206040471108023e-05 - syst_JES_Gjet_Generator: 0.00042750923674231885 - syst_JES_Gjet_OOC: 0.0003574313465548314 - syst_JES_Gjet_Purity: 5.951864980827439e-05 - syst_JES_Gjet_Stat1: 1.57136878866802e-06 - syst_JES_Gjet_Stat10: 7.5080778498894114e-06 - syst_JES_Gjet_Stat11: 7.882343179537417e-06 - syst_JES_Gjet_Stat12: 1.8703343952352477e-05 - syst_JES_Gjet_Stat13: 6.809887278802786e-05 - syst_JES_Gjet_Stat14: 0.00018880256883845622 - syst_JES_Gjet_Stat15: 0.0002888764787932724 - syst_JES_Gjet_Stat2: 1.2084615922734158e-06 - syst_JES_Gjet_Stat3: 1.8853264969230132e-06 - syst_JES_Gjet_Stat4: 1.4552958487881426e-06 - syst_JES_Gjet_Stat5: 1.1928567893925908e-06 - syst_JES_Gjet_Stat6: 5.989645294172268e-06 - syst_JES_Gjet_Stat7: 3.81814643609959e-06 - syst_JES_Gjet_Stat8: 2.4670004053505953e-06 - syst_JES_Gjet_Stat9: 3.839751902141596e-06 - syst_JES_Gjet_Veto: 0.0003629155376943787 - syst_JES_Gjet_dPhi: 3.709283499545431e-05 - syst_JES_LArESZee: 0.0006402257941539063 - syst_JES_LArEsmear: 5.607831755678838e-05 - syst_JES_LAr_JVT: 7.151488289160516e-05 - syst_JES_MJB_Alpha: 6.445030411099703e-06 - syst_JES_MJB_Asym: 8.956231950435405e-05 - syst_JES_MJB_Beta: 5.055644840176177e-06 - syst_JES_MJB_Fragmentation: 3.5215638571521034e-05 - syst_JES_MJB_Stat1: 3.240157249270473e-08 - syst_JES_MJB_Stat10: 5.676507442961737e-06 - syst_JES_MJB_Stat11: 7.820276385780749e-06 - syst_JES_MJB_Stat12: 1.2445262341549895e-05 - syst_JES_MJB_Stat13: 1.504016871580901e-05 - syst_JES_MJB_Stat14: 1.3002702911318093e-05 - syst_JES_MJB_Stat15: 2.917340012751342e-05 - syst_JES_MJB_Stat16: 8.90438105653616e-06 - syst_JES_MJB_Stat2: 1.3573115928186867e-07 - syst_JES_MJB_Stat3: 6.7892290247126e-07 - syst_JES_MJB_Stat4: 6.1308181142487e-07 - syst_JES_MJB_Stat5: 8.845005144147742e-07 - syst_JES_MJB_Stat6: 1.2366109250689966e-06 - syst_JES_MJB_Stat7: 1.4395043417787942e-06 - syst_JES_MJB_Stat8: 2.2787378085247105e-06 - syst_JES_MJB_Stat9: 3.6650163369349393e-06 - syst_JES_MJB_Threshold: 6.087390142745904e-05 - syst_JES_Pileup_MuOffset: 8.886548866123451e-05 - syst_JES_Pileup_NPVOffset: 9.257247579599457e-05 - syst_JES_Pileup_Pt_term: 5.045751480205897e-05 - syst_JES_Pileup_Rho_topology: 0.00011387362326280832 - syst_JES_PunchThrough_MC15: 0.00011680219432870258 - syst_JES_SingleParticle_HighPt: 6.763314793797492e-08 - syst_JES_Zjet_MC: 0.00016538079543889007 - syst_JES_Zjet_MuScale: 1.2455044791167955e-05 - syst_JES_Zjet_MuSmearID: 3.189295063176187e-06 - syst_JES_Zjet_MuSmearMS: 4.3391481594893723e-05 - syst_JES_Zjet_OOC: 0.00010188806836425941 - syst_JES_Zjet_Stat1: 1.077290346192706e-05 - syst_JES_Zjet_Stat10: 8.299183815291718e-06 - syst_JES_Zjet_Stat11: 1.1559629611280803e-05 - syst_JES_Zjet_Stat12: 2.7132299478665645e-05 - syst_JES_Zjet_Stat13: 4.336401618854047e-05 - syst_JES_Zjet_Stat2: 4.202980252154416e-07 - syst_JES_Zjet_Stat3: 5.492035688157898e-06 - syst_JES_Zjet_Stat4: 5.498419045507536e-06 - syst_JES_Zjet_Stat5: 6.048123758654414e-06 - syst_JES_Zjet_Stat6: 4.209975534370716e-06 - syst_JES_Zjet_Stat7: 5.172006960552161e-06 - syst_JES_Zjet_Stat8: 3.721204241572881e-06 - syst_JES_Zjet_Stat9: 5.009476619368534e-06 - syst_JES_Zjet_Veto: 2.0016475713771394e-05 - syst_JES_Zjet_dPhi: 1.848096047287586e-05 + syst_Unfolding_bias: 1.74200000e-19 + syst_cleaning: 3.33887434e-04 + syst_lumi: 6.44800000e-04 +- stat: 2.34070000e-04 + syst_JER_CROSS_CALIB_FORWARD: 1.56200000e-20 + syst_JER_NOISE_FORWARD: 1.16820000e-20 + syst_JER_NP0: 2.15279464e-05 + syst_JER_NP1: 5.43839020e-06 + syst_JER_NP2: 2.16319810e-05 + syst_JER_NP3: 2.05750644e-06 + syst_JER_NP4: 2.32794588e-06 + syst_JER_NP5: 6.64968215e-12 + syst_JER_NP6: 1.87208739e-06 + syst_JER_NP7: 4.22533795e-12 + syst_JER_NP8: 5.45803781e-06 + syst_JES_EtaIntercalibration_Modelling: 4.14002690e-04 + syst_JES_EtaIntercalibration_NonClosure: 7.72150845e-09 + syst_JES_EtaIntercalibration_Stat0: 4.19172900e-08 + syst_JES_EtaIntercalibration_Stat1: 4.19172900e-08 + syst_JES_EtaIntercalibration_Stat10: 1.40324698e-07 + syst_JES_EtaIntercalibration_Stat100: 7.89035690e-08 + syst_JES_EtaIntercalibration_Stat101: 1.44257835e-16 + syst_JES_EtaIntercalibration_Stat102: 1.66489978e-17 + syst_JES_EtaIntercalibration_Stat103: 2.72278387e-08 + syst_JES_EtaIntercalibration_Stat104: 2.83176856e-17 + syst_JES_EtaIntercalibration_Stat105: 8.47628467e-17 + syst_JES_EtaIntercalibration_Stat106: 1.35609933e-17 + syst_JES_EtaIntercalibration_Stat107: 2.56689930e-08 + syst_JES_EtaIntercalibration_Stat108: 2.59201403e-08 + syst_JES_EtaIntercalibration_Stat109: 5.58097248e-13 + syst_JES_EtaIntercalibration_Stat11: 1.47397524e-07 + syst_JES_EtaIntercalibration_Stat110: 5.57997061e-13 + syst_JES_EtaIntercalibration_Stat111: 2.88899548e-16 + syst_JES_EtaIntercalibration_Stat112: 1.42673467e-15 + syst_JES_EtaIntercalibration_Stat113: 5.67359905e-10 + syst_JES_EtaIntercalibration_Stat114: 2.54823601e-08 + syst_JES_EtaIntercalibration_Stat115: 1.84294461e-08 + syst_JES_EtaIntercalibration_Stat116: 4.44376730e-08 + syst_JES_EtaIntercalibration_Stat117: 3.36144355e-08 + syst_JES_EtaIntercalibration_Stat118: 7.85627939e-08 + syst_JES_EtaIntercalibration_Stat119: 1.47570729e-07 + syst_JES_EtaIntercalibration_Stat12: 1.61253930e-08 + syst_JES_EtaIntercalibration_Stat120: 2.14001168e-08 + syst_JES_EtaIntercalibration_Stat121: 3.70633566e-14 + syst_JES_EtaIntercalibration_Stat122: 9.10580053e-13 + syst_JES_EtaIntercalibration_Stat123: 4.45864741e-16 + syst_JES_EtaIntercalibration_Stat124: 4.29839984e-16 + syst_JES_EtaIntercalibration_Stat125: 1.60698933e-15 + syst_JES_EtaIntercalibration_Stat126: 1.75629952e-08 + syst_JES_EtaIntercalibration_Stat127: 2.76521911e-17 + syst_JES_EtaIntercalibration_Stat128: 4.20107074e-08 + syst_JES_EtaIntercalibration_Stat129: 3.40545951e-08 + syst_JES_EtaIntercalibration_Stat13: 4.19172900e-08 + syst_JES_EtaIntercalibration_Stat130: 2.75253351e-14 + syst_JES_EtaIntercalibration_Stat131: 5.81896105e-10 + syst_JES_EtaIntercalibration_Stat132: 3.72549469e-11 + syst_JES_EtaIntercalibration_Stat133: 4.83759439e-08 + syst_JES_EtaIntercalibration_Stat134: 1.98432894e-08 + syst_JES_EtaIntercalibration_Stat135: 2.48897263e-08 + syst_JES_EtaIntercalibration_Stat136: 1.62355276e-08 + syst_JES_EtaIntercalibration_Stat137: 4.52689357e-08 + syst_JES_EtaIntercalibration_Stat138: 2.08053029e-08 + syst_JES_EtaIntercalibration_Stat139: 4.51714476e-08 + syst_JES_EtaIntercalibration_Stat14: 4.19172900e-08 + syst_JES_EtaIntercalibration_Stat140: 8.11808703e-09 + syst_JES_EtaIntercalibration_Stat141: 7.79693342e-11 + syst_JES_EtaIntercalibration_Stat142: 2.39107686e-08 + syst_JES_EtaIntercalibration_Stat143: 6.98786997e-15 + syst_JES_EtaIntercalibration_Stat144: 1.46886428e-13 + syst_JES_EtaIntercalibration_Stat145: 9.85450311e-09 + syst_JES_EtaIntercalibration_Stat146: 4.60810265e-08 + syst_JES_EtaIntercalibration_Stat147: 1.70919589e-14 + syst_JES_EtaIntercalibration_Stat148: 2.47850076e-12 + syst_JES_EtaIntercalibration_Stat149: 3.88490627e-08 + syst_JES_EtaIntercalibration_Stat15: 2.56689930e-08 + syst_JES_EtaIntercalibration_Stat150: 3.71715661e-11 + syst_JES_EtaIntercalibration_Stat151: 2.50527977e-07 + syst_JES_EtaIntercalibration_Stat152: 2.16926626e-08 + syst_JES_EtaIntercalibration_Stat153: 2.56324454e-08 + syst_JES_EtaIntercalibration_Stat154: 1.51749678e-08 + syst_JES_EtaIntercalibration_Stat155: 3.72993022e-08 + syst_JES_EtaIntercalibration_Stat156: 1.33036171e-07 + syst_JES_EtaIntercalibration_Stat157: 8.07338670e-08 + syst_JES_EtaIntercalibration_Stat158: 1.02544690e-07 + syst_JES_EtaIntercalibration_Stat159: 7.74350438e-11 + syst_JES_EtaIntercalibration_Stat16: 2.56689930e-08 + syst_JES_EtaIntercalibration_Stat160: 5.00935235e-08 + syst_JES_EtaIntercalibration_Stat161: 1.52593698e-08 + syst_JES_EtaIntercalibration_Stat162: 2.67428576e-08 + syst_JES_EtaIntercalibration_Stat163: 1.92257587e-08 + syst_JES_EtaIntercalibration_Stat164: 4.58820071e-10 + syst_JES_EtaIntercalibration_Stat165: 1.82312226e-12 + syst_JES_EtaIntercalibration_Stat166: 2.26980755e-08 + syst_JES_EtaIntercalibration_Stat167: 7.94789499e-10 + syst_JES_EtaIntercalibration_Stat168: 2.65270487e-08 + syst_JES_EtaIntercalibration_Stat169: 1.03045647e-07 + syst_JES_EtaIntercalibration_Stat17: 2.56689930e-08 + syst_JES_EtaIntercalibration_Stat170: 5.69721833e-08 + syst_JES_EtaIntercalibration_Stat171: 1.23003099e-07 + syst_JES_EtaIntercalibration_Stat172: 1.36312011e-07 + syst_JES_EtaIntercalibration_Stat173: 9.55728082e-08 + syst_JES_EtaIntercalibration_Stat174: 1.24820999e-07 + syst_JES_EtaIntercalibration_Stat175: 1.42789202e-07 + syst_JES_EtaIntercalibration_Stat176: 2.01809624e-08 + syst_JES_EtaIntercalibration_Stat177: 3.56568100e-08 + syst_JES_EtaIntercalibration_Stat178: 2.59539896e-08 + syst_JES_EtaIntercalibration_Stat179: 2.57993085e-08 + syst_JES_EtaIntercalibration_Stat18: 2.56689930e-08 + syst_JES_EtaIntercalibration_Stat180: 1.86162184e-12 + syst_JES_EtaIntercalibration_Stat181: 1.46333455e-14 + syst_JES_EtaIntercalibration_Stat182: 2.49067042e-08 + syst_JES_EtaIntercalibration_Stat183: 2.03070086e-08 + syst_JES_EtaIntercalibration_Stat184: 1.34685956e-08 + syst_JES_EtaIntercalibration_Stat185: 7.26789287e-08 + syst_JES_EtaIntercalibration_Stat186: 3.48804913e-07 + syst_JES_EtaIntercalibration_Stat187: 7.61727765e-07 + syst_JES_EtaIntercalibration_Stat188: 1.08202542e-06 + syst_JES_EtaIntercalibration_Stat189: 8.43331180e-07 + syst_JES_EtaIntercalibration_Stat19: 4.19172900e-08 + syst_JES_EtaIntercalibration_Stat190: 7.61768521e-07 + syst_JES_EtaIntercalibration_Stat191: 9.51823496e-07 + syst_JES_EtaIntercalibration_Stat192: 6.70217360e-07 + syst_JES_EtaIntercalibration_Stat193: 2.99459371e-07 + syst_JES_EtaIntercalibration_Stat194: 5.17008006e-08 + syst_JES_EtaIntercalibration_Stat195: 4.07816073e-09 + syst_JES_EtaIntercalibration_Stat196: 4.82299340e-10 + syst_JES_EtaIntercalibration_Stat197: 5.24954912e-08 + syst_JES_EtaIntercalibration_Stat198: 4.58761354e-08 + syst_JES_EtaIntercalibration_Stat199: 2.46407604e-07 + syst_JES_EtaIntercalibration_Stat2: 4.19172900e-08 + syst_JES_EtaIntercalibration_Stat20: 4.19172900e-08 + syst_JES_EtaIntercalibration_Stat200: 2.11711541e-07 + syst_JES_EtaIntercalibration_Stat201: 6.44431424e-07 + syst_JES_EtaIntercalibration_Stat202: 1.52701078e-06 + syst_JES_EtaIntercalibration_Stat203: 2.28614845e-06 + syst_JES_EtaIntercalibration_Stat204: 1.68068795e-06 + syst_JES_EtaIntercalibration_Stat205: 1.80778566e-06 + syst_JES_EtaIntercalibration_Stat206: 2.24466451e-06 + syst_JES_EtaIntercalibration_Stat207: 1.46643495e-06 + syst_JES_EtaIntercalibration_Stat208: 8.20176815e-07 + syst_JES_EtaIntercalibration_Stat209: 1.29055159e-07 + syst_JES_EtaIntercalibration_Stat21: 4.19172900e-08 + syst_JES_EtaIntercalibration_Stat210: 4.37082463e-08 + syst_JES_EtaIntercalibration_Stat211: 2.54494050e-08 + syst_JES_EtaIntercalibration_Stat212: 3.16618888e-08 + syst_JES_EtaIntercalibration_Stat213: 1.09528487e-07 + syst_JES_EtaIntercalibration_Stat214: 6.91582772e-07 + syst_JES_EtaIntercalibration_Stat215: 2.02250111e-06 + syst_JES_EtaIntercalibration_Stat216: 2.76748044e-06 + syst_JES_EtaIntercalibration_Stat217: 1.88229275e-06 + syst_JES_EtaIntercalibration_Stat218: 2.06994251e-06 + syst_JES_EtaIntercalibration_Stat219: 2.56091468e-06 + syst_JES_EtaIntercalibration_Stat22: 4.19172900e-08 + syst_JES_EtaIntercalibration_Stat220: 1.85300047e-06 + syst_JES_EtaIntercalibration_Stat221: 5.57582577e-07 + syst_JES_EtaIntercalibration_Stat222: 1.57358213e-07 + syst_JES_EtaIntercalibration_Stat223: 4.61679442e-08 + syst_JES_EtaIntercalibration_Stat224: 6.59288723e-08 + syst_JES_EtaIntercalibration_Stat225: 9.13847876e-07 + syst_JES_EtaIntercalibration_Stat226: 1.92131849e-06 + syst_JES_EtaIntercalibration_Stat227: 4.96328709e-06 + syst_JES_EtaIntercalibration_Stat228: 7.20934413e-06 + syst_JES_EtaIntercalibration_Stat229: 6.58302459e-06 + syst_JES_EtaIntercalibration_Stat23: 4.17336447e-08 + syst_JES_EtaIntercalibration_Stat230: 5.52820213e-06 + syst_JES_EtaIntercalibration_Stat231: 8.42625611e-06 + syst_JES_EtaIntercalibration_Stat232: 5.20100517e-06 + syst_JES_EtaIntercalibration_Stat233: 1.82408463e-06 + syst_JES_EtaIntercalibration_Stat234: 3.72299011e-07 + syst_JES_EtaIntercalibration_Stat235: 5.85000160e-08 + syst_JES_EtaIntercalibration_Stat236: 2.02704515e-07 + syst_JES_EtaIntercalibration_Stat237: 4.87679144e-07 + syst_JES_EtaIntercalibration_Stat238: 9.21717972e-07 + syst_JES_EtaIntercalibration_Stat239: 1.10180831e-06 + syst_JES_EtaIntercalibration_Stat24: 2.56689930e-08 + syst_JES_EtaIntercalibration_Stat240: 7.34419614e-07 + syst_JES_EtaIntercalibration_Stat241: 6.11541446e-07 + syst_JES_EtaIntercalibration_Stat242: 7.73943918e-07 + syst_JES_EtaIntercalibration_Stat243: 7.17780083e-07 + syst_JES_EtaIntercalibration_Stat244: 2.22244387e-07 + syst_JES_EtaIntercalibration_Stat245: 4.95852508e-08 + syst_JES_EtaIntercalibration_Stat25: 9.85549099e-17 + syst_JES_EtaIntercalibration_Stat26: 4.52265541e-17 + syst_JES_EtaIntercalibration_Stat27: 4.72135222e-17 + syst_JES_EtaIntercalibration_Stat28: 4.52619053e-17 + syst_JES_EtaIntercalibration_Stat29: 5.68379871e-10 + syst_JES_EtaIntercalibration_Stat3: 4.19172900e-08 + syst_JES_EtaIntercalibration_Stat30: 4.63840455e-17 + syst_JES_EtaIntercalibration_Stat31: 6.81735198e-09 + syst_JES_EtaIntercalibration_Stat32: 5.59279206e-08 + syst_JES_EtaIntercalibration_Stat33: 1.47397524e-07 + syst_JES_EtaIntercalibration_Stat34: 5.59279206e-08 + syst_JES_EtaIntercalibration_Stat35: 2.90661637e-17 + syst_JES_EtaIntercalibration_Stat36: 3.53830281e-08 + syst_JES_EtaIntercalibration_Stat37: 2.62578902e-08 + syst_JES_EtaIntercalibration_Stat38: 4.60537425e-17 + syst_JES_EtaIntercalibration_Stat39: 4.60680573e-17 + syst_JES_EtaIntercalibration_Stat4: 4.19172900e-08 + syst_JES_EtaIntercalibration_Stat40: 2.56603327e-08 + syst_JES_EtaIntercalibration_Stat41: 4.19172900e-08 + syst_JES_EtaIntercalibration_Stat42: 4.19172900e-08 + syst_JES_EtaIntercalibration_Stat43: 4.19172900e-08 + syst_JES_EtaIntercalibration_Stat44: 4.19172900e-08 + syst_JES_EtaIntercalibration_Stat45: 4.19172900e-08 + syst_JES_EtaIntercalibration_Stat46: 4.62287949e-17 + syst_JES_EtaIntercalibration_Stat47: 2.72227276e-17 + syst_JES_EtaIntercalibration_Stat48: 1.01338304e-16 + syst_JES_EtaIntercalibration_Stat49: 2.56343520e-08 + syst_JES_EtaIntercalibration_Stat5: 4.19172900e-08 + syst_JES_EtaIntercalibration_Stat50: 1.67663466e-16 + syst_JES_EtaIntercalibration_Stat51: 5.68396169e-10 + syst_JES_EtaIntercalibration_Stat52: 5.71143754e-10 + syst_JES_EtaIntercalibration_Stat53: 6.44496106e-09 + syst_JES_EtaIntercalibration_Stat54: 5.59279206e-08 + syst_JES_EtaIntercalibration_Stat55: 5.59279206e-08 + syst_JES_EtaIntercalibration_Stat56: 5.59279206e-08 + syst_JES_EtaIntercalibration_Stat57: 8.11883535e-17 + syst_JES_EtaIntercalibration_Stat58: 1.36420515e-17 + syst_JES_EtaIntercalibration_Stat59: 1.66796493e-08 + syst_JES_EtaIntercalibration_Stat6: 2.78773577e-08 + syst_JES_EtaIntercalibration_Stat60: 4.13326805e-08 + syst_JES_EtaIntercalibration_Stat61: 2.75029072e-17 + syst_JES_EtaIntercalibration_Stat62: 2.56083712e-08 + syst_JES_EtaIntercalibration_Stat63: 4.50993814e-17 + syst_JES_EtaIntercalibration_Stat64: 4.19172900e-08 + syst_JES_EtaIntercalibration_Stat65: 4.19172900e-08 + syst_JES_EtaIntercalibration_Stat66: 4.19172900e-08 + syst_JES_EtaIntercalibration_Stat67: 4.19172900e-08 + syst_JES_EtaIntercalibration_Stat68: 2.57829750e-21 + syst_JES_EtaIntercalibration_Stat69: 2.53485636e-08 + syst_JES_EtaIntercalibration_Stat7: 2.56689930e-08 + syst_JES_EtaIntercalibration_Stat70: 2.03429367e-08 + syst_JES_EtaIntercalibration_Stat71: 6.44929119e-08 + syst_JES_EtaIntercalibration_Stat72: 5.72615997e-10 + syst_JES_EtaIntercalibration_Stat73: 5.72615997e-10 + syst_JES_EtaIntercalibration_Stat74: 2.06806866e-08 + syst_JES_EtaIntercalibration_Stat75: 6.58525717e-08 + syst_JES_EtaIntercalibration_Stat76: 5.59798821e-08 + syst_JES_EtaIntercalibration_Stat77: 2.35645512e-09 + syst_JES_EtaIntercalibration_Stat78: 7.54585003e-08 + syst_JES_EtaIntercalibration_Stat79: 1.09327047e-07 + syst_JES_EtaIntercalibration_Stat8: 2.88911507e-17 + syst_JES_EtaIntercalibration_Stat80: 1.11873162e-07 + syst_JES_EtaIntercalibration_Stat81: 1.66813480e-17 + syst_JES_EtaIntercalibration_Stat82: 2.02814668e-17 + syst_JES_EtaIntercalibration_Stat83: 4.70378111e-17 + syst_JES_EtaIntercalibration_Stat84: 2.75373309e-17 + syst_JES_EtaIntercalibration_Stat85: 2.76096460e-17 + syst_JES_EtaIntercalibration_Stat86: 2.56689930e-08 + syst_JES_EtaIntercalibration_Stat87: 2.56689930e-08 + syst_JES_EtaIntercalibration_Stat88: 2.77040647e-17 + syst_JES_EtaIntercalibration_Stat89: 2.49588521e-08 + syst_JES_EtaIntercalibration_Stat9: 1.61427135e-08 + syst_JES_EtaIntercalibration_Stat90: 1.85426643e-16 + syst_JES_EtaIntercalibration_Stat91: 1.87803855e-16 + syst_JES_EtaIntercalibration_Stat92: 2.57833593e-16 + syst_JES_EtaIntercalibration_Stat93: 5.72702600e-10 + syst_JES_EtaIntercalibration_Stat94: 5.68312290e-10 + syst_JES_EtaIntercalibration_Stat95: 2.11136987e-08 + syst_JES_EtaIntercalibration_Stat96: 5.59798821e-08 + syst_JES_EtaIntercalibration_Stat97: 5.53966957e-08 + syst_JES_EtaIntercalibration_Stat98: 6.76533198e-08 + syst_JES_EtaIntercalibration_Stat99: 1.26353106e-07 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.49668434e-04 + syst_JES_Flavour_Comp: 3.79354719e-04 + syst_JES_Flavour_Response: 2.92060405e-05 + syst_JES_Gjet_Generator: 4.27509237e-04 + syst_JES_Gjet_OOC: 3.57431347e-04 + syst_JES_Gjet_Purity: 5.95186498e-05 + syst_JES_Gjet_Stat1: 1.57136879e-06 + syst_JES_Gjet_Stat10: 7.50807785e-06 + syst_JES_Gjet_Stat11: 7.88234318e-06 + syst_JES_Gjet_Stat12: 1.87033440e-05 + syst_JES_Gjet_Stat13: 6.80988728e-05 + syst_JES_Gjet_Stat14: 1.88802569e-04 + syst_JES_Gjet_Stat15: 2.88876479e-04 + syst_JES_Gjet_Stat2: 1.20846159e-06 + syst_JES_Gjet_Stat3: 1.88532650e-06 + syst_JES_Gjet_Stat4: 1.45529585e-06 + syst_JES_Gjet_Stat5: 1.19285679e-06 + syst_JES_Gjet_Stat6: 5.98964529e-06 + syst_JES_Gjet_Stat7: 3.81814644e-06 + syst_JES_Gjet_Stat8: 2.46700041e-06 + syst_JES_Gjet_Stat9: 3.83975190e-06 + syst_JES_Gjet_Veto: 3.62915538e-04 + syst_JES_Gjet_dPhi: 3.70928350e-05 + syst_JES_LArESZee: 6.40225794e-04 + syst_JES_LArEsmear: 5.60783176e-05 + syst_JES_LAr_JVT: 7.15148829e-05 + syst_JES_MJB_Alpha: 6.44503041e-06 + syst_JES_MJB_Asym: 8.95623195e-05 + syst_JES_MJB_Beta: 5.05564484e-06 + syst_JES_MJB_Fragmentation: 3.52156386e-05 + syst_JES_MJB_Stat1: 3.24015725e-08 + syst_JES_MJB_Stat10: 5.67650744e-06 + syst_JES_MJB_Stat11: 7.82027639e-06 + syst_JES_MJB_Stat12: 1.24452623e-05 + syst_JES_MJB_Stat13: 1.50401687e-05 + syst_JES_MJB_Stat14: 1.30027029e-05 + syst_JES_MJB_Stat15: 2.91734001e-05 + syst_JES_MJB_Stat16: 8.90438106e-06 + syst_JES_MJB_Stat2: 1.35731159e-07 + syst_JES_MJB_Stat3: 6.78922902e-07 + syst_JES_MJB_Stat4: 6.13081811e-07 + syst_JES_MJB_Stat5: 8.84500514e-07 + syst_JES_MJB_Stat6: 1.23661093e-06 + syst_JES_MJB_Stat7: 1.43950434e-06 + syst_JES_MJB_Stat8: 2.27873781e-06 + syst_JES_MJB_Stat9: 3.66501634e-06 + syst_JES_MJB_Threshold: 6.08739014e-05 + syst_JES_Pileup_MuOffset: 8.88654887e-05 + syst_JES_Pileup_NPVOffset: 9.25724758e-05 + syst_JES_Pileup_Pt_term: 5.04575148e-05 + syst_JES_Pileup_Rho_topology: 1.13873623e-04 + syst_JES_PunchThrough_MC15: 1.16802194e-04 + syst_JES_SingleParticle_HighPt: 6.76331479e-08 + syst_JES_Zjet_MC: 1.65380795e-04 + syst_JES_Zjet_MuScale: 1.24550448e-05 + syst_JES_Zjet_MuSmearID: 3.18929506e-06 + syst_JES_Zjet_MuSmearMS: 4.33914816e-05 + syst_JES_Zjet_OOC: 1.01888068e-04 + syst_JES_Zjet_Stat1: 1.07729035e-05 + syst_JES_Zjet_Stat10: 8.29918382e-06 + syst_JES_Zjet_Stat11: 1.15596296e-05 + syst_JES_Zjet_Stat12: 2.71322995e-05 + syst_JES_Zjet_Stat13: 4.33640162e-05 + syst_JES_Zjet_Stat2: 4.20298025e-07 + syst_JES_Zjet_Stat3: 5.49203569e-06 + syst_JES_Zjet_Stat4: 5.49841905e-06 + syst_JES_Zjet_Stat5: 6.04812376e-06 + syst_JES_Zjet_Stat6: 4.20997553e-06 + syst_JES_Zjet_Stat7: 5.17200696e-06 + syst_JES_Zjet_Stat8: 3.72120424e-06 + syst_JES_Zjet_Stat9: 5.00947662e-06 + syst_JES_Zjet_Veto: 2.00164757e-05 + syst_JES_Zjet_dPhi: 1.84809605e-05 syst_PRW: 0.0 - syst_Unfolding_bias: 4.559e-15 - syst_cleaning: 0.00018030648906792012 - syst_lumi: 0.0003471 -- stat: 0.00016916 - syst_JER_CROSS_CALIB_FORWARD: 3.132e-21 - syst_JER_NOISE_FORWARD: 2.327e-21 - syst_JER_NP0: 1.0116625660268348e-05 - syst_JER_NP1: 3.3171112432355956e-06 - syst_JER_NP2: 1.1084597906554843e-05 - syst_JER_NP3: 1.0210881781217525e-06 - syst_JER_NP4: 1.5614594551252366e-06 - syst_JER_NP5: 1.0325914039444644e-09 - syst_JER_NP6: 1.77282478195111e-06 - syst_JER_NP7: 6.561874484474692e-10 - syst_JER_NP8: 2.9379095884659214e-06 - syst_JES_EtaIntercalibration_Modelling: 0.00020931021833632492 - syst_JES_EtaIntercalibration_NonClosure: 6.170013350876965e-10 - syst_JES_EtaIntercalibration_Stat0: 2.131219838496254e-08 - syst_JES_EtaIntercalibration_Stat1: 2.131219838496254e-08 - syst_JES_EtaIntercalibration_Stat10: 5.138434301419062e-08 - syst_JES_EtaIntercalibration_Stat100: 4.012295657532925e-08 - syst_JES_EtaIntercalibration_Stat101: 1.108135399317588e-17 - syst_JES_EtaIntercalibration_Stat102: 1.4282217501144561e-18 - syst_JES_EtaIntercalibration_Stat103: 1.384774620687676e-08 - syst_JES_EtaIntercalibration_Stat104: 2.9341309224368295e-18 - syst_JES_EtaIntercalibration_Stat105: 7.487698228293325e-18 - syst_JES_EtaIntercalibration_Stat106: 1.1972847619893941e-18 - syst_JES_EtaIntercalibration_Stat107: 1.3051002835031492e-08 - syst_JES_EtaIntercalibration_Stat108: 1.3180906645599158e-08 - syst_JES_EtaIntercalibration_Stat109: 3.72519117163133e-14 - syst_JES_EtaIntercalibration_Stat11: 5.424783129305605e-08 - syst_JES_EtaIntercalibration_Stat110: 3.724273526285462e-14 - syst_JES_EtaIntercalibration_Stat111: 2.1816308853699336e-17 - syst_JES_EtaIntercalibration_Stat112: 9.81075890642513e-17 - syst_JES_EtaIntercalibration_Stat113: 4.705642491060599e-11 - syst_JES_EtaIntercalibration_Stat114: 1.2633922065217911e-08 - syst_JES_EtaIntercalibration_Stat115: 7.36069471925035e-09 - syst_JES_EtaIntercalibration_Stat116: 2.374987890495444e-08 - syst_JES_EtaIntercalibration_Stat117: 1.7302830599355704e-08 - syst_JES_EtaIntercalibration_Stat118: 5.595217310346399e-08 - syst_JES_EtaIntercalibration_Stat119: 7.481593462881825e-08 - syst_JES_EtaIntercalibration_Stat12: 2.9141754837345165e-08 - syst_JES_EtaIntercalibration_Stat120: 1.0882555157222958e-08 - syst_JES_EtaIntercalibration_Stat121: 2.5469208247411225e-15 - syst_JES_EtaIntercalibration_Stat122: 6.054439256469494e-14 - syst_JES_EtaIntercalibration_Stat123: 3.473490925207665e-17 - syst_JES_EtaIntercalibration_Stat124: 3.347379910840716e-17 - syst_JES_EtaIntercalibration_Stat125: 1.255513786264412e-16 - syst_JES_EtaIntercalibration_Stat126: 8.930453963892883e-09 - syst_JES_EtaIntercalibration_Stat127: 2.6855447771355442e-18 - syst_JES_EtaIntercalibration_Stat128: 2.1364834364755134e-08 - syst_JES_EtaIntercalibration_Stat129: 1.7320500099609496e-08 - syst_JES_EtaIntercalibration_Stat13: 2.131219838496254e-08 - syst_JES_EtaIntercalibration_Stat130: 1.889535913260185e-15 - syst_JES_EtaIntercalibration_Stat131: 4.839983787937724e-11 - syst_JES_EtaIntercalibration_Stat132: 2.837010495164068e-12 - syst_JES_EtaIntercalibration_Stat133: 1.8588819220165655e-08 - syst_JES_EtaIntercalibration_Stat134: 1.0201203215889536e-08 - syst_JES_EtaIntercalibration_Stat135: 4.726280320452861e-08 - syst_JES_EtaIntercalibration_Stat136: 1.283549416667581e-08 - syst_JES_EtaIntercalibration_Stat137: 2.7470820454596452e-08 - syst_JES_EtaIntercalibration_Stat138: 1.1205048252715159e-08 - syst_JES_EtaIntercalibration_Stat139: 2.32482386429596e-08 - syst_JES_EtaIntercalibration_Stat14: 2.131219838496254e-08 - syst_JES_EtaIntercalibration_Stat140: 1.993209452114855e-08 - syst_JES_EtaIntercalibration_Stat141: 6.216282975380062e-12 - syst_JES_EtaIntercalibration_Stat142: 1.215898386933195e-08 - syst_JES_EtaIntercalibration_Stat143: 5.434253737174959e-16 - syst_JES_EtaIntercalibration_Stat144: 1.0024274574751033e-14 - syst_JES_EtaIntercalibration_Stat145: 2.5972101890247878e-09 - syst_JES_EtaIntercalibration_Stat146: 1.2142529822555957e-08 - syst_JES_EtaIntercalibration_Stat147: 1.1839312382849774e-15 - syst_JES_EtaIntercalibration_Stat148: 1.675146402557102e-13 - syst_JES_EtaIntercalibration_Stat149: 2.2734715744869124e-08 - syst_JES_EtaIntercalibration_Stat15: 1.3051002834134865e-08 - syst_JES_EtaIntercalibration_Stat150: 2.831178264144472e-12 - syst_JES_EtaIntercalibration_Stat151: 1.4512000275633954e-07 - syst_JES_EtaIntercalibration_Stat152: 1.1139184156840213e-08 - syst_JES_EtaIntercalibration_Stat153: 7.946243290635393e-09 - syst_JES_EtaIntercalibration_Stat154: 8.201416678775122e-09 - syst_JES_EtaIntercalibration_Stat155: 2.2863042346792234e-08 - syst_JES_EtaIntercalibration_Stat156: 5.79422955126909e-08 - syst_JES_EtaIntercalibration_Stat157: 4.1770243894428005e-08 - syst_JES_EtaIntercalibration_Stat158: 1.4870791606367161e-08 - syst_JES_EtaIntercalibration_Stat159: 6.1703890807225435e-12 - syst_JES_EtaIntercalibration_Stat16: 1.3051002834134865e-08 - syst_JES_EtaIntercalibration_Stat160: 2.546755386761752e-08 - syst_JES_EtaIntercalibration_Stat161: 4.021822146821197e-09 - syst_JES_EtaIntercalibration_Stat162: 1.3605258622335777e-08 - syst_JES_EtaIntercalibration_Stat163: 9.778292470457217e-09 - syst_JES_EtaIntercalibration_Stat164: 4.4366466788519806e-11 - syst_JES_EtaIntercalibration_Stat165: 1.2242407728874252e-13 - syst_JES_EtaIntercalibration_Stat166: 1.154755268040632e-08 - syst_JES_EtaIntercalibration_Stat167: 6.570872601869557e-11 - syst_JES_EtaIntercalibration_Stat168: 1.3466741159766606e-08 - syst_JES_EtaIntercalibration_Stat169: 5.385846521207228e-08 - syst_JES_EtaIntercalibration_Stat17: 1.3051002836628151e-08 - syst_JES_EtaIntercalibration_Stat170: 3.674665498630692e-08 - syst_JES_EtaIntercalibration_Stat171: 1.0288016864294109e-07 - syst_JES_EtaIntercalibration_Stat172: 1.0762526143986829e-07 - syst_JES_EtaIntercalibration_Stat173: 4.741768103777323e-08 - syst_JES_EtaIntercalibration_Stat174: 9.351323261977419e-08 - syst_JES_EtaIntercalibration_Stat175: 8.109049435661371e-08 - syst_JES_EtaIntercalibration_Stat176: 4.026964847127424e-08 - syst_JES_EtaIntercalibration_Stat177: 2.0985264544436893e-08 - syst_JES_EtaIntercalibration_Stat178: 1.3198174413570783e-08 - syst_JES_EtaIntercalibration_Stat179: 1.3120312274380522e-08 - syst_JES_EtaIntercalibration_Stat18: 1.3051002834134865e-08 - syst_JES_EtaIntercalibration_Stat180: 1.254201701282533e-13 - syst_JES_EtaIntercalibration_Stat181: 1.0206771612512939e-15 - syst_JES_EtaIntercalibration_Stat182: 1.2774962648978664e-08 - syst_JES_EtaIntercalibration_Stat183: 1.1075312140070816e-08 - syst_JES_EtaIntercalibration_Stat184: 9.049429084201942e-09 - syst_JES_EtaIntercalibration_Stat185: 2.9134019204359703e-08 - syst_JES_EtaIntercalibration_Stat186: 1.6742389315745828e-07 - syst_JES_EtaIntercalibration_Stat187: 5.15198010477525e-07 - syst_JES_EtaIntercalibration_Stat188: 6.190932320741361e-07 - syst_JES_EtaIntercalibration_Stat189: 5.444500413261073e-07 - syst_JES_EtaIntercalibration_Stat19: 2.131219838496254e-08 - syst_JES_EtaIntercalibration_Stat190: 5.154012320513019e-07 - syst_JES_EtaIntercalibration_Stat191: 5.998222903494001e-07 - syst_JES_EtaIntercalibration_Stat192: 4.4267229414093674e-07 - syst_JES_EtaIntercalibration_Stat193: 1.7096188369048817e-07 - syst_JES_EtaIntercalibration_Stat194: 4.68266520343917e-08 - syst_JES_EtaIntercalibration_Stat195: 5.845410051270997e-10 - syst_JES_EtaIntercalibration_Stat196: 4.675748871544694e-11 - syst_JES_EtaIntercalibration_Stat197: 2.6715962924813323e-08 - syst_JES_EtaIntercalibration_Stat198: 1.804216413709841e-08 - syst_JES_EtaIntercalibration_Stat199: 6.823522336740753e-08 - syst_JES_EtaIntercalibration_Stat2: 2.131219838496254e-08 - syst_JES_EtaIntercalibration_Stat20: 2.131219838496254e-08 - syst_JES_EtaIntercalibration_Stat200: 8.759384089649226e-08 - syst_JES_EtaIntercalibration_Stat201: 2.9951020016019484e-07 - syst_JES_EtaIntercalibration_Stat202: 7.912286442615686e-07 - syst_JES_EtaIntercalibration_Stat203: 1.3282966413794774e-06 - syst_JES_EtaIntercalibration_Stat204: 1.0795213105816855e-06 - syst_JES_EtaIntercalibration_Stat205: 1.0891407668432947e-06 - syst_JES_EtaIntercalibration_Stat206: 1.3847466627509886e-06 - syst_JES_EtaIntercalibration_Stat207: 7.61468546625532e-07 - syst_JES_EtaIntercalibration_Stat208: 4.287043824128697e-07 - syst_JES_EtaIntercalibration_Stat209: 5.7658214913401533e-08 - syst_JES_EtaIntercalibration_Stat21: 2.131219838496254e-08 - syst_JES_EtaIntercalibration_Stat210: 2.4168191388682774e-09 - syst_JES_EtaIntercalibration_Stat211: 3.6164268037387396e-09 - syst_JES_EtaIntercalibration_Stat212: 2.126092366297838e-08 - syst_JES_EtaIntercalibration_Stat213: 5.7012554553799815e-08 - syst_JES_EtaIntercalibration_Stat214: 3.51997198142258e-07 - syst_JES_EtaIntercalibration_Stat215: 1.27330029058349e-06 - syst_JES_EtaIntercalibration_Stat216: 1.5919557154644724e-06 - syst_JES_EtaIntercalibration_Stat217: 1.2392361548550785e-06 - syst_JES_EtaIntercalibration_Stat218: 1.2692501595430273e-06 - syst_JES_EtaIntercalibration_Stat219: 1.5889326606247351e-06 - syst_JES_EtaIntercalibration_Stat22: 2.131219838496254e-08 - syst_JES_EtaIntercalibration_Stat220: 9.180418617906265e-07 - syst_JES_EtaIntercalibration_Stat221: 3.3053176473676474e-07 - syst_JES_EtaIntercalibration_Stat222: 6.538625790638274e-08 - syst_JES_EtaIntercalibration_Stat223: 1.7644207066343332e-08 - syst_JES_EtaIntercalibration_Stat224: 2.8942844970735e-08 - syst_JES_EtaIntercalibration_Stat225: 3.523529027480829e-07 - syst_JES_EtaIntercalibration_Stat226: 9.637053738046708e-07 - syst_JES_EtaIntercalibration_Stat227: 2.3766400653022745e-06 - syst_JES_EtaIntercalibration_Stat228: 4.026288994843763e-06 - syst_JES_EtaIntercalibration_Stat229: 3.856218049786604e-06 - syst_JES_EtaIntercalibration_Stat23: 2.1220374054196124e-08 - syst_JES_EtaIntercalibration_Stat230: 3.388266924254935e-06 - syst_JES_EtaIntercalibration_Stat231: 4.813186989926736e-06 - syst_JES_EtaIntercalibration_Stat232: 2.5405040346356467e-06 - syst_JES_EtaIntercalibration_Stat233: 9.459926572125177e-07 - syst_JES_EtaIntercalibration_Stat234: 1.8730599404917611e-07 - syst_JES_EtaIntercalibration_Stat235: 5.534768355675663e-08 - syst_JES_EtaIntercalibration_Stat236: 8.465462071263447e-08 - syst_JES_EtaIntercalibration_Stat237: 2.669373334698614e-07 - syst_JES_EtaIntercalibration_Stat238: 4.835231328488845e-07 - syst_JES_EtaIntercalibration_Stat239: 6.193869933248517e-07 - syst_JES_EtaIntercalibration_Stat24: 1.3051002834134288e-08 - syst_JES_EtaIntercalibration_Stat240: 5.256994578654235e-07 - syst_JES_EtaIntercalibration_Stat241: 4.3610220132441434e-07 - syst_JES_EtaIntercalibration_Stat242: 4.962802736357752e-07 - syst_JES_EtaIntercalibration_Stat243: 4.746007585328957e-07 - syst_JES_EtaIntercalibration_Stat244: 1.640493523303277e-07 - syst_JES_EtaIntercalibration_Stat245: 3.2187160095292656e-08 - syst_JES_EtaIntercalibration_Stat25: 6.698251469600108e-18 - syst_JES_EtaIntercalibration_Stat26: 4.391134933021303e-18 - syst_JES_EtaIntercalibration_Stat27: 4.614579287432387e-18 - syst_JES_EtaIntercalibration_Stat28: 4.391134933021303e-18 - syst_JES_EtaIntercalibration_Stat29: 4.7139035455023896e-11 - syst_JES_EtaIntercalibration_Stat3: 2.131219838496254e-08 - syst_JES_EtaIntercalibration_Stat30: 4.5211979330703935e-18 - syst_JES_EtaIntercalibration_Stat31: 2.9912517446714674e-08 - syst_JES_EtaIntercalibration_Stat32: 1.8654187197515695e-08 - syst_JES_EtaIntercalibration_Stat33: 5.424783129305509e-08 - syst_JES_EtaIntercalibration_Stat34: 1.865418719751425e-08 - syst_JES_EtaIntercalibration_Stat35: 2.8428561262927113e-18 - syst_JES_EtaIntercalibration_Stat36: 1.7995087329601932e-08 - syst_JES_EtaIntercalibration_Stat37: 1.335411172545884e-08 - syst_JES_EtaIntercalibration_Stat38: 4.484677329529963e-18 - syst_JES_EtaIntercalibration_Stat39: 4.486111540075659e-18 - syst_JES_EtaIntercalibration_Stat4: 2.131219838496254e-08 - syst_JES_EtaIntercalibration_Stat40: 1.3051002834142081e-08 - syst_JES_EtaIntercalibration_Stat41: 2.131219838496254e-08 - syst_JES_EtaIntercalibration_Stat42: 2.131219838496254e-08 - syst_JES_EtaIntercalibration_Stat43: 2.131219838496254e-08 - syst_JES_EtaIntercalibration_Stat44: 2.131219838496254e-08 - syst_JES_EtaIntercalibration_Stat45: 2.131219838496254e-08 - syst_JES_EtaIntercalibration_Stat46: 4.504928301316237e-18 - syst_JES_EtaIntercalibration_Stat47: 2.612263960628788e-18 - syst_JES_EtaIntercalibration_Stat48: 6.996005217265064e-18 - syst_JES_EtaIntercalibration_Stat49: 1.3033682329317452e-08 - syst_JES_EtaIntercalibration_Stat5: 2.131219838496254e-08 - syst_JES_EtaIntercalibration_Stat50: 1.3371623348295562e-17 - syst_JES_EtaIntercalibration_Stat51: 4.7142848662416446e-11 - syst_JES_EtaIntercalibration_Stat52: 4.730230755247458e-11 - syst_JES_EtaIntercalibration_Stat53: 2.985189566934045e-08 - syst_JES_EtaIntercalibration_Stat54: 1.8654187197516985e-08 - syst_JES_EtaIntercalibration_Stat55: 1.8654187197478687e-08 - syst_JES_EtaIntercalibration_Stat56: 1.8654187197514643e-08 - syst_JES_EtaIntercalibration_Stat57: 7.16879993934281e-18 - syst_JES_EtaIntercalibration_Stat58: 1.2081525128655188e-18 - syst_JES_EtaIntercalibration_Stat59: 8.480986779260818e-09 - syst_JES_EtaIntercalibration_Stat6: 1.41768358599523e-08 - syst_JES_EtaIntercalibration_Stat60: 2.102348864960333e-08 - syst_JES_EtaIntercalibration_Stat61: 2.6678523167385933e-18 - syst_JES_EtaIntercalibration_Stat62: 1.302502207202855e-08 - syst_JES_EtaIntercalibration_Stat63: 4.37842163341997e-18 - syst_JES_EtaIntercalibration_Stat64: 2.131219838496254e-08 - syst_JES_EtaIntercalibration_Stat65: 2.131219838496254e-08 - syst_JES_EtaIntercalibration_Stat66: 2.131219838496254e-08 - syst_JES_EtaIntercalibration_Stat67: 2.131219838496254e-08 - syst_JES_EtaIntercalibration_Stat68: 2.0041884442337254e-22 - syst_JES_EtaIntercalibration_Stat69: 1.2886458008800597e-08 - syst_JES_EtaIntercalibration_Stat7: 1.3051002834086655e-08 - syst_JES_EtaIntercalibration_Stat70: 1.0342941397399276e-08 - syst_JES_EtaIntercalibration_Stat71: 1.6991418426852166e-08 - syst_JES_EtaIntercalibration_Stat72: 4.7423551109255835e-11 - syst_JES_EtaIntercalibration_Stat73: 4.7432211357641136e-11 - syst_JES_EtaIntercalibration_Stat74: 1.0517878528969623e-08 - syst_JES_EtaIntercalibration_Stat75: 2.1503410775968467e-08 - syst_JES_EtaIntercalibration_Stat76: 1.824715525773296e-08 - syst_JES_EtaIntercalibration_Stat77: 2.8431614006241318e-08 - syst_JES_EtaIntercalibration_Stat78: 3.900086310583395e-08 - syst_JES_EtaIntercalibration_Stat79: 5.559883092296603e-08 - syst_JES_EtaIntercalibration_Stat8: 2.8230843816979685e-18 - syst_JES_EtaIntercalibration_Stat80: 2.9479504744813584e-08 - syst_JES_EtaIntercalibration_Stat81: 1.5282275583171508e-18 - syst_JES_EtaIntercalibration_Stat82: 2.1018794769845274e-18 - syst_JES_EtaIntercalibration_Stat83: 4.727496694869283e-18 - syst_JES_EtaIntercalibration_Stat84: 2.6746906228386023e-18 - syst_JES_EtaIntercalibration_Stat85: 2.682142168962479e-18 - syst_JES_EtaIntercalibration_Stat86: 1.3051002835031494e-08 - syst_JES_EtaIntercalibration_Stat87: 1.3051002835031487e-08 - syst_JES_EtaIntercalibration_Stat88: 2.6915900101583574e-18 - syst_JES_EtaIntercalibration_Stat89: 1.2687272165439476e-08 - syst_JES_EtaIntercalibration_Stat9: 2.9133094584250753e-08 - syst_JES_EtaIntercalibration_Stat90: 1.490485471826797e-17 - syst_JES_EtaIntercalibration_Stat91: 1.510006347362487e-17 - syst_JES_EtaIntercalibration_Stat92: 2.053658104131276e-17 - syst_JES_EtaIntercalibration_Stat93: 4.7432211414377344e-11 - syst_JES_EtaIntercalibration_Stat94: 4.713438141611705e-11 - syst_JES_EtaIntercalibration_Stat95: 1.0736982906842625e-08 - syst_JES_EtaIntercalibration_Stat96: 1.8247155255352797e-08 - syst_JES_EtaIntercalibration_Stat97: 2.963506833128616e-08 - syst_JES_EtaIntercalibration_Stat98: 4.1214628470968896e-08 - syst_JES_EtaIntercalibration_Stat99: 3.329174857228497e-08 - syst_JES_EtaIntercalibration_TotalStat_MJB: 8.324925269934859e-05 - syst_JES_Flavour_Comp: 0.00020285369111751455 - syst_JES_Flavour_Response: 2.6863854898357387e-05 - syst_JES_Gjet_Generator: 0.0002280667007697529 - syst_JES_Gjet_OOC: 0.00018939595428625188 - syst_JES_Gjet_Purity: 3.0673768923951945e-05 - syst_JES_Gjet_Stat1: 1.0029417031911676e-06 - syst_JES_Gjet_Stat10: 4.69126198373103e-06 - syst_JES_Gjet_Stat11: 4.868658413772731e-06 - syst_JES_Gjet_Stat12: 9.144985114804725e-06 - syst_JES_Gjet_Stat13: 3.702108048126095e-05 - syst_JES_Gjet_Stat14: 0.00010211142345496903 - syst_JES_Gjet_Stat15: 0.00016818283949321345 - syst_JES_Gjet_Stat2: 7.981768788933942e-07 - syst_JES_Gjet_Stat3: 1.239897423176611e-06 - syst_JES_Gjet_Stat4: 1.2179146562875412e-06 - syst_JES_Gjet_Stat5: 1.0572981923279733e-06 - syst_JES_Gjet_Stat6: 3.836698865887184e-06 - syst_JES_Gjet_Stat7: 2.3085307015502304e-06 - syst_JES_Gjet_Stat8: 1.3847586504514063e-06 - syst_JES_Gjet_Stat9: 2.3224716898166917e-06 - syst_JES_Gjet_Veto: 0.00019575231799393844 - syst_JES_Gjet_dPhi: 2.0165733311734538e-05 - syst_JES_LArESZee: 0.0003400909106400817 - syst_JES_LArEsmear: 3.0270743301081987e-05 - syst_JES_LAr_JVT: 3.8210322453494165e-05 - syst_JES_MJB_Alpha: 4.6031468584002395e-06 - syst_JES_MJB_Asym: 5.8265051917937904e-05 - syst_JES_MJB_Beta: 3.447681394792738e-06 - syst_JES_MJB_Fragmentation: 2.0037097469444023e-05 - syst_JES_MJB_Stat1: 2.6969295814870656e-08 - syst_JES_MJB_Stat10: 2.575743387839713e-06 - syst_JES_MJB_Stat11: 3.617718445374101e-06 - syst_JES_MJB_Stat12: 6.1708476524704446e-06 - syst_JES_MJB_Stat13: 8.328567884096282e-06 - syst_JES_MJB_Stat14: 9.76824615783202e-06 - syst_JES_MJB_Stat15: 1.9605368524972948e-05 - syst_JES_MJB_Stat16: 3.970624868644732e-06 - syst_JES_MJB_Stat2: 6.229949839284422e-08 - syst_JES_MJB_Stat3: 3.307237064378663e-07 - syst_JES_MJB_Stat4: 2.4457442118913417e-07 - syst_JES_MJB_Stat5: 3.3308210324182835e-07 - syst_JES_MJB_Stat6: 4.6941845671000196e-07 - syst_JES_MJB_Stat7: 5.879166331207172e-07 - syst_JES_MJB_Stat8: 9.845968045347293e-07 - syst_JES_MJB_Stat9: 1.6190499529044804e-06 - syst_JES_MJB_Threshold: 3.549500633892041e-05 - syst_JES_Pileup_MuOffset: 5.0286098228039126e-05 - syst_JES_Pileup_NPVOffset: 5.079133095322469e-05 - syst_JES_Pileup_Pt_term: 2.5477167719352163e-05 - syst_JES_Pileup_Rho_topology: 6.125852981422259e-05 - syst_JES_PunchThrough_MC15: 6.937747256855065e-05 - syst_JES_SingleParticle_HighPt: 1.2940835782514203e-07 - syst_JES_Zjet_MC: 8.766839966601419e-05 - syst_JES_Zjet_MuScale: 6.967074762768087e-06 - syst_JES_Zjet_MuSmearID: 1.8304274773942834e-06 - syst_JES_Zjet_MuSmearMS: 2.2929894788245323e-05 - syst_JES_Zjet_OOC: 5.5061634556195296e-05 - syst_JES_Zjet_Stat1: 6.991153177409289e-06 - syst_JES_Zjet_Stat10: 4.287271947287693e-06 - syst_JES_Zjet_Stat11: 6.2006669600938896e-06 - syst_JES_Zjet_Stat12: 1.3856918732171304e-05 - syst_JES_Zjet_Stat13: 2.2583471832293634e-05 - syst_JES_Zjet_Stat2: 3.1363937890513683e-07 - syst_JES_Zjet_Stat3: 3.3371479964184985e-06 - syst_JES_Zjet_Stat4: 3.41261728736171e-06 - syst_JES_Zjet_Stat5: 3.6183513856451254e-06 - syst_JES_Zjet_Stat6: 2.8208268291407044e-06 - syst_JES_Zjet_Stat7: 3.428707336592028e-06 - syst_JES_Zjet_Stat8: 2.3436306769625625e-06 - syst_JES_Zjet_Stat9: 2.825867831304217e-06 - syst_JES_Zjet_Veto: 1.0835930543797334e-05 - syst_JES_Zjet_dPhi: 1.009650424652018e-05 + syst_Unfolding_bias: 4.55900000e-15 + syst_cleaning: 1.80306489e-04 + syst_lumi: 3.47100000e-04 +- stat: 1.69160000e-04 + syst_JER_CROSS_CALIB_FORWARD: 3.13200000e-21 + syst_JER_NOISE_FORWARD: 2.32700000e-21 + syst_JER_NP0: 1.01166257e-05 + syst_JER_NP1: 3.31711124e-06 + syst_JER_NP2: 1.10845979e-05 + syst_JER_NP3: 1.02108818e-06 + syst_JER_NP4: 1.56145946e-06 + syst_JER_NP5: 1.03259140e-09 + syst_JER_NP6: 1.77282478e-06 + syst_JER_NP7: 6.56187448e-10 + syst_JER_NP8: 2.93790959e-06 + syst_JES_EtaIntercalibration_Modelling: 2.09310218e-04 + syst_JES_EtaIntercalibration_NonClosure: 6.17001335e-10 + syst_JES_EtaIntercalibration_Stat0: 2.13121984e-08 + syst_JES_EtaIntercalibration_Stat1: 2.13121984e-08 + syst_JES_EtaIntercalibration_Stat10: 5.13843430e-08 + syst_JES_EtaIntercalibration_Stat100: 4.01229566e-08 + syst_JES_EtaIntercalibration_Stat101: 1.10813540e-17 + syst_JES_EtaIntercalibration_Stat102: 1.42822175e-18 + syst_JES_EtaIntercalibration_Stat103: 1.38477462e-08 + syst_JES_EtaIntercalibration_Stat104: 2.93413092e-18 + syst_JES_EtaIntercalibration_Stat105: 7.48769823e-18 + syst_JES_EtaIntercalibration_Stat106: 1.19728476e-18 + syst_JES_EtaIntercalibration_Stat107: 1.30510028e-08 + syst_JES_EtaIntercalibration_Stat108: 1.31809066e-08 + syst_JES_EtaIntercalibration_Stat109: 3.72519117e-14 + syst_JES_EtaIntercalibration_Stat11: 5.42478313e-08 + syst_JES_EtaIntercalibration_Stat110: 3.72427353e-14 + syst_JES_EtaIntercalibration_Stat111: 2.18163089e-17 + syst_JES_EtaIntercalibration_Stat112: 9.81075891e-17 + syst_JES_EtaIntercalibration_Stat113: 4.70564249e-11 + syst_JES_EtaIntercalibration_Stat114: 1.26339221e-08 + syst_JES_EtaIntercalibration_Stat115: 7.36069472e-09 + syst_JES_EtaIntercalibration_Stat116: 2.37498789e-08 + syst_JES_EtaIntercalibration_Stat117: 1.73028306e-08 + syst_JES_EtaIntercalibration_Stat118: 5.59521731e-08 + syst_JES_EtaIntercalibration_Stat119: 7.48159346e-08 + syst_JES_EtaIntercalibration_Stat12: 2.91417548e-08 + syst_JES_EtaIntercalibration_Stat120: 1.08825552e-08 + syst_JES_EtaIntercalibration_Stat121: 2.54692082e-15 + syst_JES_EtaIntercalibration_Stat122: 6.05443926e-14 + syst_JES_EtaIntercalibration_Stat123: 3.47349093e-17 + syst_JES_EtaIntercalibration_Stat124: 3.34737991e-17 + syst_JES_EtaIntercalibration_Stat125: 1.25551379e-16 + syst_JES_EtaIntercalibration_Stat126: 8.93045396e-09 + syst_JES_EtaIntercalibration_Stat127: 2.68554478e-18 + syst_JES_EtaIntercalibration_Stat128: 2.13648344e-08 + syst_JES_EtaIntercalibration_Stat129: 1.73205001e-08 + syst_JES_EtaIntercalibration_Stat13: 2.13121984e-08 + syst_JES_EtaIntercalibration_Stat130: 1.88953591e-15 + syst_JES_EtaIntercalibration_Stat131: 4.83998379e-11 + syst_JES_EtaIntercalibration_Stat132: 2.83701050e-12 + syst_JES_EtaIntercalibration_Stat133: 1.85888192e-08 + syst_JES_EtaIntercalibration_Stat134: 1.02012032e-08 + syst_JES_EtaIntercalibration_Stat135: 4.72628032e-08 + syst_JES_EtaIntercalibration_Stat136: 1.28354942e-08 + syst_JES_EtaIntercalibration_Stat137: 2.74708205e-08 + syst_JES_EtaIntercalibration_Stat138: 1.12050483e-08 + syst_JES_EtaIntercalibration_Stat139: 2.32482386e-08 + syst_JES_EtaIntercalibration_Stat14: 2.13121984e-08 + syst_JES_EtaIntercalibration_Stat140: 1.99320945e-08 + syst_JES_EtaIntercalibration_Stat141: 6.21628298e-12 + syst_JES_EtaIntercalibration_Stat142: 1.21589839e-08 + syst_JES_EtaIntercalibration_Stat143: 5.43425374e-16 + syst_JES_EtaIntercalibration_Stat144: 1.00242746e-14 + syst_JES_EtaIntercalibration_Stat145: 2.59721019e-09 + syst_JES_EtaIntercalibration_Stat146: 1.21425298e-08 + syst_JES_EtaIntercalibration_Stat147: 1.18393124e-15 + syst_JES_EtaIntercalibration_Stat148: 1.67514640e-13 + syst_JES_EtaIntercalibration_Stat149: 2.27347157e-08 + syst_JES_EtaIntercalibration_Stat15: 1.30510028e-08 + syst_JES_EtaIntercalibration_Stat150: 2.83117826e-12 + syst_JES_EtaIntercalibration_Stat151: 1.45120003e-07 + syst_JES_EtaIntercalibration_Stat152: 1.11391842e-08 + syst_JES_EtaIntercalibration_Stat153: 7.94624329e-09 + syst_JES_EtaIntercalibration_Stat154: 8.20141668e-09 + syst_JES_EtaIntercalibration_Stat155: 2.28630423e-08 + syst_JES_EtaIntercalibration_Stat156: 5.79422955e-08 + syst_JES_EtaIntercalibration_Stat157: 4.17702439e-08 + syst_JES_EtaIntercalibration_Stat158: 1.48707916e-08 + syst_JES_EtaIntercalibration_Stat159: 6.17038908e-12 + syst_JES_EtaIntercalibration_Stat16: 1.30510028e-08 + syst_JES_EtaIntercalibration_Stat160: 2.54675539e-08 + syst_JES_EtaIntercalibration_Stat161: 4.02182215e-09 + syst_JES_EtaIntercalibration_Stat162: 1.36052586e-08 + syst_JES_EtaIntercalibration_Stat163: 9.77829247e-09 + syst_JES_EtaIntercalibration_Stat164: 4.43664668e-11 + syst_JES_EtaIntercalibration_Stat165: 1.22424077e-13 + syst_JES_EtaIntercalibration_Stat166: 1.15475527e-08 + syst_JES_EtaIntercalibration_Stat167: 6.57087260e-11 + syst_JES_EtaIntercalibration_Stat168: 1.34667412e-08 + syst_JES_EtaIntercalibration_Stat169: 5.38584652e-08 + syst_JES_EtaIntercalibration_Stat17: 1.30510028e-08 + syst_JES_EtaIntercalibration_Stat170: 3.67466550e-08 + syst_JES_EtaIntercalibration_Stat171: 1.02880169e-07 + syst_JES_EtaIntercalibration_Stat172: 1.07625261e-07 + syst_JES_EtaIntercalibration_Stat173: 4.74176810e-08 + syst_JES_EtaIntercalibration_Stat174: 9.35132326e-08 + syst_JES_EtaIntercalibration_Stat175: 8.10904944e-08 + syst_JES_EtaIntercalibration_Stat176: 4.02696485e-08 + syst_JES_EtaIntercalibration_Stat177: 2.09852645e-08 + syst_JES_EtaIntercalibration_Stat178: 1.31981744e-08 + syst_JES_EtaIntercalibration_Stat179: 1.31203123e-08 + syst_JES_EtaIntercalibration_Stat18: 1.30510028e-08 + syst_JES_EtaIntercalibration_Stat180: 1.25420170e-13 + syst_JES_EtaIntercalibration_Stat181: 1.02067716e-15 + syst_JES_EtaIntercalibration_Stat182: 1.27749626e-08 + syst_JES_EtaIntercalibration_Stat183: 1.10753121e-08 + syst_JES_EtaIntercalibration_Stat184: 9.04942908e-09 + syst_JES_EtaIntercalibration_Stat185: 2.91340192e-08 + syst_JES_EtaIntercalibration_Stat186: 1.67423893e-07 + syst_JES_EtaIntercalibration_Stat187: 5.15198010e-07 + syst_JES_EtaIntercalibration_Stat188: 6.19093232e-07 + syst_JES_EtaIntercalibration_Stat189: 5.44450041e-07 + syst_JES_EtaIntercalibration_Stat19: 2.13121984e-08 + syst_JES_EtaIntercalibration_Stat190: 5.15401232e-07 + syst_JES_EtaIntercalibration_Stat191: 5.99822290e-07 + syst_JES_EtaIntercalibration_Stat192: 4.42672294e-07 + syst_JES_EtaIntercalibration_Stat193: 1.70961884e-07 + syst_JES_EtaIntercalibration_Stat194: 4.68266520e-08 + syst_JES_EtaIntercalibration_Stat195: 5.84541005e-10 + syst_JES_EtaIntercalibration_Stat196: 4.67574887e-11 + syst_JES_EtaIntercalibration_Stat197: 2.67159629e-08 + syst_JES_EtaIntercalibration_Stat198: 1.80421641e-08 + syst_JES_EtaIntercalibration_Stat199: 6.82352234e-08 + syst_JES_EtaIntercalibration_Stat2: 2.13121984e-08 + syst_JES_EtaIntercalibration_Stat20: 2.13121984e-08 + syst_JES_EtaIntercalibration_Stat200: 8.75938409e-08 + syst_JES_EtaIntercalibration_Stat201: 2.99510200e-07 + syst_JES_EtaIntercalibration_Stat202: 7.91228644e-07 + syst_JES_EtaIntercalibration_Stat203: 1.32829664e-06 + syst_JES_EtaIntercalibration_Stat204: 1.07952131e-06 + syst_JES_EtaIntercalibration_Stat205: 1.08914077e-06 + syst_JES_EtaIntercalibration_Stat206: 1.38474666e-06 + syst_JES_EtaIntercalibration_Stat207: 7.61468547e-07 + syst_JES_EtaIntercalibration_Stat208: 4.28704382e-07 + syst_JES_EtaIntercalibration_Stat209: 5.76582149e-08 + syst_JES_EtaIntercalibration_Stat21: 2.13121984e-08 + syst_JES_EtaIntercalibration_Stat210: 2.41681914e-09 + syst_JES_EtaIntercalibration_Stat211: 3.61642680e-09 + syst_JES_EtaIntercalibration_Stat212: 2.12609237e-08 + syst_JES_EtaIntercalibration_Stat213: 5.70125546e-08 + syst_JES_EtaIntercalibration_Stat214: 3.51997198e-07 + syst_JES_EtaIntercalibration_Stat215: 1.27330029e-06 + syst_JES_EtaIntercalibration_Stat216: 1.59195572e-06 + syst_JES_EtaIntercalibration_Stat217: 1.23923615e-06 + syst_JES_EtaIntercalibration_Stat218: 1.26925016e-06 + syst_JES_EtaIntercalibration_Stat219: 1.58893266e-06 + syst_JES_EtaIntercalibration_Stat22: 2.13121984e-08 + syst_JES_EtaIntercalibration_Stat220: 9.18041862e-07 + syst_JES_EtaIntercalibration_Stat221: 3.30531765e-07 + syst_JES_EtaIntercalibration_Stat222: 6.53862579e-08 + syst_JES_EtaIntercalibration_Stat223: 1.76442071e-08 + syst_JES_EtaIntercalibration_Stat224: 2.89428450e-08 + syst_JES_EtaIntercalibration_Stat225: 3.52352903e-07 + syst_JES_EtaIntercalibration_Stat226: 9.63705374e-07 + syst_JES_EtaIntercalibration_Stat227: 2.37664007e-06 + syst_JES_EtaIntercalibration_Stat228: 4.02628899e-06 + syst_JES_EtaIntercalibration_Stat229: 3.85621805e-06 + syst_JES_EtaIntercalibration_Stat23: 2.12203741e-08 + syst_JES_EtaIntercalibration_Stat230: 3.38826692e-06 + syst_JES_EtaIntercalibration_Stat231: 4.81318699e-06 + syst_JES_EtaIntercalibration_Stat232: 2.54050403e-06 + syst_JES_EtaIntercalibration_Stat233: 9.45992657e-07 + syst_JES_EtaIntercalibration_Stat234: 1.87305994e-07 + syst_JES_EtaIntercalibration_Stat235: 5.53476836e-08 + syst_JES_EtaIntercalibration_Stat236: 8.46546207e-08 + syst_JES_EtaIntercalibration_Stat237: 2.66937333e-07 + syst_JES_EtaIntercalibration_Stat238: 4.83523133e-07 + syst_JES_EtaIntercalibration_Stat239: 6.19386993e-07 + syst_JES_EtaIntercalibration_Stat24: 1.30510028e-08 + syst_JES_EtaIntercalibration_Stat240: 5.25699458e-07 + syst_JES_EtaIntercalibration_Stat241: 4.36102201e-07 + syst_JES_EtaIntercalibration_Stat242: 4.96280274e-07 + syst_JES_EtaIntercalibration_Stat243: 4.74600759e-07 + syst_JES_EtaIntercalibration_Stat244: 1.64049352e-07 + syst_JES_EtaIntercalibration_Stat245: 3.21871601e-08 + syst_JES_EtaIntercalibration_Stat25: 6.69825147e-18 + syst_JES_EtaIntercalibration_Stat26: 4.39113493e-18 + syst_JES_EtaIntercalibration_Stat27: 4.61457929e-18 + syst_JES_EtaIntercalibration_Stat28: 4.39113493e-18 + syst_JES_EtaIntercalibration_Stat29: 4.71390355e-11 + syst_JES_EtaIntercalibration_Stat3: 2.13121984e-08 + syst_JES_EtaIntercalibration_Stat30: 4.52119793e-18 + syst_JES_EtaIntercalibration_Stat31: 2.99125174e-08 + syst_JES_EtaIntercalibration_Stat32: 1.86541872e-08 + syst_JES_EtaIntercalibration_Stat33: 5.42478313e-08 + syst_JES_EtaIntercalibration_Stat34: 1.86541872e-08 + syst_JES_EtaIntercalibration_Stat35: 2.84285613e-18 + syst_JES_EtaIntercalibration_Stat36: 1.79950873e-08 + syst_JES_EtaIntercalibration_Stat37: 1.33541117e-08 + syst_JES_EtaIntercalibration_Stat38: 4.48467733e-18 + syst_JES_EtaIntercalibration_Stat39: 4.48611154e-18 + syst_JES_EtaIntercalibration_Stat4: 2.13121984e-08 + syst_JES_EtaIntercalibration_Stat40: 1.30510028e-08 + syst_JES_EtaIntercalibration_Stat41: 2.13121984e-08 + syst_JES_EtaIntercalibration_Stat42: 2.13121984e-08 + syst_JES_EtaIntercalibration_Stat43: 2.13121984e-08 + syst_JES_EtaIntercalibration_Stat44: 2.13121984e-08 + syst_JES_EtaIntercalibration_Stat45: 2.13121984e-08 + syst_JES_EtaIntercalibration_Stat46: 4.50492830e-18 + syst_JES_EtaIntercalibration_Stat47: 2.61226396e-18 + syst_JES_EtaIntercalibration_Stat48: 6.99600522e-18 + syst_JES_EtaIntercalibration_Stat49: 1.30336823e-08 + syst_JES_EtaIntercalibration_Stat5: 2.13121984e-08 + syst_JES_EtaIntercalibration_Stat50: 1.33716233e-17 + syst_JES_EtaIntercalibration_Stat51: 4.71428487e-11 + syst_JES_EtaIntercalibration_Stat52: 4.73023076e-11 + syst_JES_EtaIntercalibration_Stat53: 2.98518957e-08 + syst_JES_EtaIntercalibration_Stat54: 1.86541872e-08 + syst_JES_EtaIntercalibration_Stat55: 1.86541872e-08 + syst_JES_EtaIntercalibration_Stat56: 1.86541872e-08 + syst_JES_EtaIntercalibration_Stat57: 7.16879994e-18 + syst_JES_EtaIntercalibration_Stat58: 1.20815251e-18 + syst_JES_EtaIntercalibration_Stat59: 8.48098678e-09 + syst_JES_EtaIntercalibration_Stat6: 1.41768359e-08 + syst_JES_EtaIntercalibration_Stat60: 2.10234886e-08 + syst_JES_EtaIntercalibration_Stat61: 2.66785232e-18 + syst_JES_EtaIntercalibration_Stat62: 1.30250221e-08 + syst_JES_EtaIntercalibration_Stat63: 4.37842163e-18 + syst_JES_EtaIntercalibration_Stat64: 2.13121984e-08 + syst_JES_EtaIntercalibration_Stat65: 2.13121984e-08 + syst_JES_EtaIntercalibration_Stat66: 2.13121984e-08 + syst_JES_EtaIntercalibration_Stat67: 2.13121984e-08 + syst_JES_EtaIntercalibration_Stat68: 2.00418844e-22 + syst_JES_EtaIntercalibration_Stat69: 1.28864580e-08 + syst_JES_EtaIntercalibration_Stat7: 1.30510028e-08 + syst_JES_EtaIntercalibration_Stat70: 1.03429414e-08 + syst_JES_EtaIntercalibration_Stat71: 1.69914184e-08 + syst_JES_EtaIntercalibration_Stat72: 4.74235511e-11 + syst_JES_EtaIntercalibration_Stat73: 4.74322114e-11 + syst_JES_EtaIntercalibration_Stat74: 1.05178785e-08 + syst_JES_EtaIntercalibration_Stat75: 2.15034108e-08 + syst_JES_EtaIntercalibration_Stat76: 1.82471553e-08 + syst_JES_EtaIntercalibration_Stat77: 2.84316140e-08 + syst_JES_EtaIntercalibration_Stat78: 3.90008631e-08 + syst_JES_EtaIntercalibration_Stat79: 5.55988309e-08 + syst_JES_EtaIntercalibration_Stat8: 2.82308438e-18 + syst_JES_EtaIntercalibration_Stat80: 2.94795047e-08 + syst_JES_EtaIntercalibration_Stat81: 1.52822756e-18 + syst_JES_EtaIntercalibration_Stat82: 2.10187948e-18 + syst_JES_EtaIntercalibration_Stat83: 4.72749669e-18 + syst_JES_EtaIntercalibration_Stat84: 2.67469062e-18 + syst_JES_EtaIntercalibration_Stat85: 2.68214217e-18 + syst_JES_EtaIntercalibration_Stat86: 1.30510028e-08 + syst_JES_EtaIntercalibration_Stat87: 1.30510028e-08 + syst_JES_EtaIntercalibration_Stat88: 2.69159001e-18 + syst_JES_EtaIntercalibration_Stat89: 1.26872722e-08 + syst_JES_EtaIntercalibration_Stat9: 2.91330946e-08 + syst_JES_EtaIntercalibration_Stat90: 1.49048547e-17 + syst_JES_EtaIntercalibration_Stat91: 1.51000635e-17 + syst_JES_EtaIntercalibration_Stat92: 2.05365810e-17 + syst_JES_EtaIntercalibration_Stat93: 4.74322114e-11 + syst_JES_EtaIntercalibration_Stat94: 4.71343814e-11 + syst_JES_EtaIntercalibration_Stat95: 1.07369829e-08 + syst_JES_EtaIntercalibration_Stat96: 1.82471553e-08 + syst_JES_EtaIntercalibration_Stat97: 2.96350683e-08 + syst_JES_EtaIntercalibration_Stat98: 4.12146285e-08 + syst_JES_EtaIntercalibration_Stat99: 3.32917486e-08 + syst_JES_EtaIntercalibration_TotalStat_MJB: 8.32492527e-05 + syst_JES_Flavour_Comp: 2.02853691e-04 + syst_JES_Flavour_Response: 2.68638549e-05 + syst_JES_Gjet_Generator: 2.28066701e-04 + syst_JES_Gjet_OOC: 1.89395954e-04 + syst_JES_Gjet_Purity: 3.06737689e-05 + syst_JES_Gjet_Stat1: 1.00294170e-06 + syst_JES_Gjet_Stat10: 4.69126198e-06 + syst_JES_Gjet_Stat11: 4.86865841e-06 + syst_JES_Gjet_Stat12: 9.14498511e-06 + syst_JES_Gjet_Stat13: 3.70210805e-05 + syst_JES_Gjet_Stat14: 1.02111423e-04 + syst_JES_Gjet_Stat15: 1.68182839e-04 + syst_JES_Gjet_Stat2: 7.98176879e-07 + syst_JES_Gjet_Stat3: 1.23989742e-06 + syst_JES_Gjet_Stat4: 1.21791466e-06 + syst_JES_Gjet_Stat5: 1.05729819e-06 + syst_JES_Gjet_Stat6: 3.83669887e-06 + syst_JES_Gjet_Stat7: 2.30853070e-06 + syst_JES_Gjet_Stat8: 1.38475865e-06 + syst_JES_Gjet_Stat9: 2.32247169e-06 + syst_JES_Gjet_Veto: 1.95752318e-04 + syst_JES_Gjet_dPhi: 2.01657333e-05 + syst_JES_LArESZee: 3.40090911e-04 + syst_JES_LArEsmear: 3.02707433e-05 + syst_JES_LAr_JVT: 3.82103225e-05 + syst_JES_MJB_Alpha: 4.60314686e-06 + syst_JES_MJB_Asym: 5.82650519e-05 + syst_JES_MJB_Beta: 3.44768139e-06 + syst_JES_MJB_Fragmentation: 2.00370975e-05 + syst_JES_MJB_Stat1: 2.69692958e-08 + syst_JES_MJB_Stat10: 2.57574339e-06 + syst_JES_MJB_Stat11: 3.61771845e-06 + syst_JES_MJB_Stat12: 6.17084765e-06 + syst_JES_MJB_Stat13: 8.32856788e-06 + syst_JES_MJB_Stat14: 9.76824616e-06 + syst_JES_MJB_Stat15: 1.96053685e-05 + syst_JES_MJB_Stat16: 3.97062487e-06 + syst_JES_MJB_Stat2: 6.22994984e-08 + syst_JES_MJB_Stat3: 3.30723706e-07 + syst_JES_MJB_Stat4: 2.44574421e-07 + syst_JES_MJB_Stat5: 3.33082103e-07 + syst_JES_MJB_Stat6: 4.69418457e-07 + syst_JES_MJB_Stat7: 5.87916633e-07 + syst_JES_MJB_Stat8: 9.84596805e-07 + syst_JES_MJB_Stat9: 1.61904995e-06 + syst_JES_MJB_Threshold: 3.54950063e-05 + syst_JES_Pileup_MuOffset: 5.02860982e-05 + syst_JES_Pileup_NPVOffset: 5.07913310e-05 + syst_JES_Pileup_Pt_term: 2.54771677e-05 + syst_JES_Pileup_Rho_topology: 6.12585298e-05 + syst_JES_PunchThrough_MC15: 6.93774726e-05 + syst_JES_SingleParticle_HighPt: 1.29408358e-07 + syst_JES_Zjet_MC: 8.76683997e-05 + syst_JES_Zjet_MuScale: 6.96707476e-06 + syst_JES_Zjet_MuSmearID: 1.83042748e-06 + syst_JES_Zjet_MuSmearMS: 2.29298948e-05 + syst_JES_Zjet_OOC: 5.50616346e-05 + syst_JES_Zjet_Stat1: 6.99115318e-06 + syst_JES_Zjet_Stat10: 4.28727195e-06 + syst_JES_Zjet_Stat11: 6.20066696e-06 + syst_JES_Zjet_Stat12: 1.38569187e-05 + syst_JES_Zjet_Stat13: 2.25834718e-05 + syst_JES_Zjet_Stat2: 3.13639379e-07 + syst_JES_Zjet_Stat3: 3.33714800e-06 + syst_JES_Zjet_Stat4: 3.41261729e-06 + syst_JES_Zjet_Stat5: 3.61835139e-06 + syst_JES_Zjet_Stat6: 2.82082683e-06 + syst_JES_Zjet_Stat7: 3.42870734e-06 + syst_JES_Zjet_Stat8: 2.34363068e-06 + syst_JES_Zjet_Stat9: 2.82586783e-06 + syst_JES_Zjet_Veto: 1.08359305e-05 + syst_JES_Zjet_dPhi: 1.00965042e-05 syst_PRW: 0.0 - syst_Unfolding_bias: 6.467e-12 - syst_cleaning: 9.185931457941542e-05 - syst_lumi: 0.0001765 -- stat: 0.00011502 - syst_JER_CROSS_CALIB_FORWARD: 7.396e-22 - syst_JER_NOISE_FORWARD: 5.458e-22 - syst_JER_NP0: 4.985128483800593e-06 - syst_JER_NP1: 2.0170317300429366e-06 - syst_JER_NP2: 5.8420180374593166e-06 - syst_JER_NP3: 4.1490195227306413e-07 - syst_JER_NP4: 1.0560736906106504e-06 - syst_JER_NP5: 2.2658827749907983e-08 - syst_JER_NP6: 1.1900073140531531e-06 - syst_JER_NP7: 1.4402002464935215e-08 - syst_JER_NP8: 1.5474717703402539e-06 - syst_JES_EtaIntercalibration_Modelling: 0.0001109030931714711 - syst_JES_EtaIntercalibration_NonClosure: 5.193435613348836e-11 - syst_JES_EtaIntercalibration_Stat0: 1.1470686204408174e-08 - syst_JES_EtaIntercalibration_Stat1: 1.1470686204408174e-08 - syst_JES_EtaIntercalibration_Stat10: 1.5776626405857494e-08 - syst_JES_EtaIntercalibration_Stat100: 2.159867353853437e-08 - syst_JES_EtaIntercalibration_Stat101: 1.0387148895953115e-18 - syst_JES_EtaIntercalibration_Stat102: 1.51258514057887e-19 - syst_JES_EtaIntercalibration_Stat103: 7.452148599609695e-09 - syst_JES_EtaIntercalibration_Stat104: 3.715938267450093e-19 - syst_JES_EtaIntercalibration_Stat105: 8.205848971642604e-19 - syst_JES_EtaIntercalibration_Stat106: 1.309418032600369e-19 - syst_JES_EtaIntercalibration_Stat107: 7.024332050095584e-09 - syst_JES_EtaIntercalibration_Stat108: 7.093614082398337e-09 - syst_JES_EtaIntercalibration_Stat109: 2.9379778861330374e-15 - syst_JES_EtaIntercalibration_Stat11: 1.6861514611682837e-08 - syst_JES_EtaIntercalibration_Stat110: 2.9371288723186798e-15 - syst_JES_EtaIntercalibration_Stat111: 2.0001238036681628e-18 - syst_JES_EtaIntercalibration_Stat112: 8.056743562383004e-18 - syst_JES_EtaIntercalibration_Stat113: 3.947878548496015e-12 - syst_JES_EtaIntercalibration_Stat114: 6.3402252917384566e-09 - syst_JES_EtaIntercalibration_Stat115: 7.378966103052649e-09 - syst_JES_EtaIntercalibration_Stat116: 4.909923930164295e-09 - syst_JES_EtaIntercalibration_Stat117: 1.0662889137096005e-08 - syst_JES_EtaIntercalibration_Stat118: 2.8304075236615663e-08 - syst_JES_EtaIntercalibration_Stat119: 3.669349635783196e-08 - syst_JES_EtaIntercalibration_Stat12: 1.5068842025849047e-08 - syst_JES_EtaIntercalibration_Stat120: 5.857028854291226e-09 - syst_JES_EtaIntercalibration_Stat121: 2.1148611934356354e-16 - syst_JES_EtaIntercalibration_Stat122: 4.741971658148196e-15 - syst_JES_EtaIntercalibration_Stat123: 3.322474374242787e-18 - syst_JES_EtaIntercalibration_Stat124: 3.2031823020240353e-18 - syst_JES_EtaIntercalibration_Stat125: 1.209846588415242e-17 - syst_JES_EtaIntercalibration_Stat126: 4.8064409910132155e-09 - syst_JES_EtaIntercalibration_Stat127: 3.2233465528856806e-19 - syst_JES_EtaIntercalibration_Stat128: 1.1497352286941308e-08 - syst_JES_EtaIntercalibration_Stat129: 9.320164789310505e-09 - syst_JES_EtaIntercalibration_Stat13: 1.1470686204408174e-08 - syst_JES_EtaIntercalibration_Stat130: 1.5637981551338394e-16 - syst_JES_EtaIntercalibration_Stat131: 4.065562692604801e-12 - syst_JES_EtaIntercalibration_Stat132: 2.2472767217900663e-13 - syst_JES_EtaIntercalibration_Stat133: 1.3413797253201646e-08 - syst_JES_EtaIntercalibration_Stat134: 5.48590045302428e-09 - syst_JES_EtaIntercalibration_Stat135: 3.673129956862403e-08 - syst_JES_EtaIntercalibration_Stat136: 7.394201630547225e-09 - syst_JES_EtaIntercalibration_Stat137: 1.5413857814031113e-08 - syst_JES_EtaIntercalibration_Stat138: 6.5958745781335745e-09 - syst_JES_EtaIntercalibration_Stat139: 1.2542089807922762e-08 - syst_JES_EtaIntercalibration_Stat14: 1.1470686204408174e-08 - syst_JES_EtaIntercalibration_Stat140: 1.1289459995943118e-08 - syst_JES_EtaIntercalibration_Stat141: 5.129523903833572e-13 - syst_JES_EtaIntercalibration_Stat142: 6.543686951025164e-09 - syst_JES_EtaIntercalibration_Stat143: 5.240584336455239e-17 - syst_JES_EtaIntercalibration_Stat144: 8.245347460841174e-16 - syst_JES_EtaIntercalibration_Stat145: 5.130334495205989e-10 - syst_JES_EtaIntercalibration_Stat146: 2.3988893936285503e-09 - syst_JES_EtaIntercalibration_Stat147: 9.934623143424968e-17 - syst_JES_EtaIntercalibration_Stat148: 1.2776390852173397e-14 - syst_JES_EtaIntercalibration_Stat149: 1.2681066309660241e-08 - syst_JES_EtaIntercalibration_Stat15: 7.024332049987906e-09 - syst_JES_EtaIntercalibration_Stat150: 2.2422805637375802e-13 - syst_JES_EtaIntercalibration_Stat151: 7.481170680448348e-08 - syst_JES_EtaIntercalibration_Stat152: 5.990866046137904e-09 - syst_JES_EtaIntercalibration_Stat153: 1.4150552996244658e-08 - syst_JES_EtaIntercalibration_Stat154: 8.094818029595825e-09 - syst_JES_EtaIntercalibration_Stat155: 1.2860474894652989e-08 - syst_JES_EtaIntercalibration_Stat156: 2.8953234132821847e-08 - syst_JES_EtaIntercalibration_Stat157: 2.2521031298544035e-08 - syst_JES_EtaIntercalibration_Stat158: 4.476971158048709e-09 - syst_JES_EtaIntercalibration_Stat159: 5.0917163736799e-13 - syst_JES_EtaIntercalibration_Stat16: 7.024332049987906e-09 - syst_JES_EtaIntercalibration_Stat160: 1.3708390058646566e-08 - syst_JES_EtaIntercalibration_Stat161: 7.944917223972831e-10 - syst_JES_EtaIntercalibration_Stat162: 7.3196466737456516e-09 - syst_JES_EtaIntercalibration_Stat163: 5.262836348449617e-09 - syst_JES_EtaIntercalibration_Stat164: 4.1101551677318224e-12 - syst_JES_EtaIntercalibration_Stat165: 9.460881925460227e-15 - syst_JES_EtaIntercalibration_Stat166: 6.214595927537892e-09 - syst_JES_EtaIntercalibration_Stat167: 5.512283193015395e-12 - syst_JES_EtaIntercalibration_Stat168: 7.244306146899062e-09 - syst_JES_EtaIntercalibration_Stat169: 3.513169615888194e-09 - syst_JES_EtaIntercalibration_Stat17: 7.024332050256779e-09 - syst_JES_EtaIntercalibration_Stat170: 2.8218146402879884e-08 - syst_JES_EtaIntercalibration_Stat171: 6.537296306578125e-08 - syst_JES_EtaIntercalibration_Stat172: 6.920707098989235e-08 - syst_JES_EtaIntercalibration_Stat173: 3.931623424235846e-08 - syst_JES_EtaIntercalibration_Stat174: 7.876520091385535e-08 - syst_JES_EtaIntercalibration_Stat175: 4.992113079648737e-08 - syst_JES_EtaIntercalibration_Stat176: 4.2639391119011065e-08 - syst_JES_EtaIntercalibration_Stat177: 1.1351766514842525e-08 - syst_JES_EtaIntercalibration_Stat178: 7.1022701997311404e-09 - syst_JES_EtaIntercalibration_Stat179: 7.058975053488823e-09 - syst_JES_EtaIntercalibration_Stat18: 7.024332049987906e-09 - syst_JES_EtaIntercalibration_Stat180: 9.645121098254806e-15 - syst_JES_EtaIntercalibration_Stat181: 8.657696806888078e-17 - syst_JES_EtaIntercalibration_Stat182: 6.883394090053831e-09 - syst_JES_EtaIntercalibration_Stat183: 6.026997158618875e-09 - syst_JES_EtaIntercalibration_Stat184: 5.985125813213954e-09 - syst_JES_EtaIntercalibration_Stat185: 1.6519761824856918e-08 - syst_JES_EtaIntercalibration_Stat186: 7.633323047664104e-08 - syst_JES_EtaIntercalibration_Stat187: 3.1371787883383375e-07 - syst_JES_EtaIntercalibration_Stat188: 3.7566382245300117e-07 - syst_JES_EtaIntercalibration_Stat189: 3.4850454803345104e-07 - syst_JES_EtaIntercalibration_Stat19: 1.1470686204408174e-08 - syst_JES_EtaIntercalibration_Stat190: 3.2686900663721543e-07 - syst_JES_EtaIntercalibration_Stat191: 3.8451646258645415e-07 - syst_JES_EtaIntercalibration_Stat192: 2.7403390301201786e-07 - syst_JES_EtaIntercalibration_Stat193: 1.024679465735505e-07 - syst_JES_EtaIntercalibration_Stat194: 2.391021354986191e-08 - syst_JES_EtaIntercalibration_Stat195: 6.92231036215511e-11 - syst_JES_EtaIntercalibration_Stat196: 4.335399473553835e-12 - syst_JES_EtaIntercalibration_Stat197: 1.4382859686098588e-08 - syst_JES_EtaIntercalibration_Stat198: 8.847997622061163e-09 - syst_JES_EtaIntercalibration_Stat199: 1.0308728473968068e-08 - syst_JES_EtaIntercalibration_Stat2: 1.1470686204408174e-08 - syst_JES_EtaIntercalibration_Stat20: 1.1470686204408174e-08 - syst_JES_EtaIntercalibration_Stat200: 3.36834072022116e-08 - syst_JES_EtaIntercalibration_Stat201: 1.3772600045016916e-07 - syst_JES_EtaIntercalibration_Stat202: 4.49221512730635e-07 - syst_JES_EtaIntercalibration_Stat203: 8.148170515520647e-07 - syst_JES_EtaIntercalibration_Stat204: 7.05343575855058e-07 - syst_JES_EtaIntercalibration_Stat205: 6.712698023149857e-07 - syst_JES_EtaIntercalibration_Stat206: 8.395766254488033e-07 - syst_JES_EtaIntercalibration_Stat207: 4.437812411537919e-07 - syst_JES_EtaIntercalibration_Stat208: 2.3368287806341312e-07 - syst_JES_EtaIntercalibration_Stat209: 3.62365709608401e-08 - syst_JES_EtaIntercalibration_Stat21: 1.1470686204408174e-08 - syst_JES_EtaIntercalibration_Stat210: 4.377303493019418e-09 - syst_JES_EtaIntercalibration_Stat211: 4.259786947850209e-10 - syst_JES_EtaIntercalibration_Stat212: 1.2095776814667043e-08 - syst_JES_EtaIntercalibration_Stat213: 3.0061089052128504e-08 - syst_JES_EtaIntercalibration_Stat214: 1.6785341074878403e-07 - syst_JES_EtaIntercalibration_Stat215: 7.270023246180167e-07 - syst_JES_EtaIntercalibration_Stat216: 9.763432234619134e-07 - syst_JES_EtaIntercalibration_Stat217: 8.327379479764328e-07 - syst_JES_EtaIntercalibration_Stat218: 7.938968383864493e-07 - syst_JES_EtaIntercalibration_Stat219: 9.59063438986181e-07 - syst_JES_EtaIntercalibration_Stat22: 1.1470686204408174e-08 - syst_JES_EtaIntercalibration_Stat220: 5.204677775808988e-07 - syst_JES_EtaIntercalibration_Stat221: 1.9138296684919484e-07 - syst_JES_EtaIntercalibration_Stat222: 3.7287105009641067e-08 - syst_JES_EtaIntercalibration_Stat223: 1.0715370270317308e-08 - syst_JES_EtaIntercalibration_Stat224: 9.814578276726921e-09 - syst_JES_EtaIntercalibration_Stat225: 1.1284387655074597e-07 - syst_JES_EtaIntercalibration_Stat226: 5.041415674193113e-07 - syst_JES_EtaIntercalibration_Stat227: 1.291076492699019e-06 - syst_JES_EtaIntercalibration_Stat228: 2.260453051934501e-06 - syst_JES_EtaIntercalibration_Stat229: 2.219088326317815e-06 - syst_JES_EtaIntercalibration_Stat23: 1.142124235799241e-08 - syst_JES_EtaIntercalibration_Stat230: 2.1539623952149207e-06 - syst_JES_EtaIntercalibration_Stat231: 2.794466317564053e-06 - syst_JES_EtaIntercalibration_Stat232: 1.4063805566062126e-06 - syst_JES_EtaIntercalibration_Stat233: 4.982610836699973e-07 - syst_JES_EtaIntercalibration_Stat234: 8.932743431191785e-08 - syst_JES_EtaIntercalibration_Stat235: 2.9644049571648553e-08 - syst_JES_EtaIntercalibration_Stat236: 3.300495660881862e-08 - syst_JES_EtaIntercalibration_Stat237: 1.4972497286692025e-07 - syst_JES_EtaIntercalibration_Stat238: 2.972539823114234e-07 - syst_JES_EtaIntercalibration_Stat239: 3.728058207700089e-07 - syst_JES_EtaIntercalibration_Stat24: 7.0243320499878484e-09 - syst_JES_EtaIntercalibration_Stat240: 3.5094126289166964e-07 - syst_JES_EtaIntercalibration_Stat241: 3.072655325610082e-07 - syst_JES_EtaIntercalibration_Stat242: 3.35510905187894e-07 - syst_JES_EtaIntercalibration_Stat243: 2.9170373240670063e-07 - syst_JES_EtaIntercalibration_Stat244: 1.0874902516804461e-07 - syst_JES_EtaIntercalibration_Stat245: 2.7160045416015045e-08 - syst_JES_EtaIntercalibration_Stat25: 5.41921661381975e-19 - syst_JES_EtaIntercalibration_Stat26: 5.267245271486795e-19 - syst_JES_EtaIntercalibration_Stat27: 5.576598212844458e-19 - syst_JES_EtaIntercalibration_Stat28: 5.261594126308109e-19 - syst_JES_EtaIntercalibration_Stat29: 3.954330498564201e-12 - syst_JES_EtaIntercalibration_Stat3: 1.147139332208603e-08 - syst_JES_EtaIntercalibration_Stat30: 5.445403040179854e-19 - syst_JES_EtaIntercalibration_Stat31: 1.4072912811497154e-08 - syst_JES_EtaIntercalibration_Stat32: 1.299904131080425e-08 - syst_JES_EtaIntercalibration_Stat33: 1.686151461168269e-08 - syst_JES_EtaIntercalibration_Stat34: 1.2999041310804024e-08 - syst_JES_EtaIntercalibration_Stat35: 3.438688353834933e-19 - syst_JES_EtaIntercalibration_Stat36: 9.68428887425401e-09 - syst_JES_EtaIntercalibration_Stat37: 7.186278800495538e-09 - syst_JES_EtaIntercalibration_Stat38: 5.396336552467794e-19 - syst_JES_EtaIntercalibration_Stat39: 5.3984924458129975e-19 - syst_JES_EtaIntercalibration_Stat4: 1.147139332208603e-08 - syst_JES_EtaIntercalibration_Stat40: 7.023466024585218e-09 - syst_JES_EtaIntercalibration_Stat41: 1.147139332208603e-08 - syst_JES_EtaIntercalibration_Stat42: 1.1470686204408174e-08 - syst_JES_EtaIntercalibration_Stat43: 1.1470686204408174e-08 - syst_JES_EtaIntercalibration_Stat44: 1.1470686204408174e-08 - syst_JES_EtaIntercalibration_Stat45: 1.1470686204408174e-08 - syst_JES_EtaIntercalibration_Stat46: 5.426317092420972e-19 - syst_JES_EtaIntercalibration_Stat47: 3.1078508651478114e-19 - syst_JES_EtaIntercalibration_Stat48: 5.761377786606256e-19 - syst_JES_EtaIntercalibration_Stat49: 7.015671796240901e-09 - syst_JES_EtaIntercalibration_Stat5: 1.1470686204408174e-08 - syst_JES_EtaIntercalibration_Stat50: 1.3198680435887331e-18 - syst_JES_EtaIntercalibration_Stat51: 3.953926127382756e-12 - syst_JES_EtaIntercalibration_Stat52: 3.965530323506324e-12 - syst_JES_EtaIntercalibration_Stat53: 1.406425255756592e-08 - syst_JES_EtaIntercalibration_Stat54: 1.299904131080445e-08 - syst_JES_EtaIntercalibration_Stat55: 1.2999041310799092e-08 - syst_JES_EtaIntercalibration_Stat56: 1.2999041310804054e-08 - syst_JES_EtaIntercalibration_Stat57: 7.85125653095128e-19 - syst_JES_EtaIntercalibration_Stat58: 1.3284742011356488e-19 - syst_JES_EtaIntercalibration_Stat59: 4.564819903347752e-09 - syst_JES_EtaIntercalibration_Stat6: 7.629683807341065e-09 - syst_JES_EtaIntercalibration_Stat60: 1.1312930743180568e-08 - syst_JES_EtaIntercalibration_Stat61: 3.19656263933131e-19 - syst_JES_EtaIntercalibration_Stat62: 7.009609618124667e-09 - syst_JES_EtaIntercalibration_Stat63: 5.250297015407795e-19 - syst_JES_EtaIntercalibration_Stat64: 1.1470686204408174e-08 - syst_JES_EtaIntercalibration_Stat65: 1.1470686204408174e-08 - syst_JES_EtaIntercalibration_Stat66: 1.1470686204408174e-08 - syst_JES_EtaIntercalibration_Stat67: 1.1470686204408174e-08 - syst_JES_EtaIntercalibration_Stat68: 3.575563211579401e-23 - syst_JES_EtaIntercalibration_Stat69: 6.936863484367134e-09 - syst_JES_EtaIntercalibration_Stat7: 7.024332049981388e-09 - syst_JES_EtaIntercalibration_Stat70: 5.566811295526741e-09 - syst_JES_EtaIntercalibration_Stat71: 3.357667093418149e-09 - syst_JES_EtaIntercalibration_Stat72: 3.975922628348562e-12 - syst_JES_EtaIntercalibration_Stat73: 3.976788652732745e-12 - syst_JES_EtaIntercalibration_Stat74: 5.660342039136529e-09 - syst_JES_EtaIntercalibration_Stat75: 1.4644489577994838e-08 - syst_JES_EtaIntercalibration_Stat76: 1.2410144036230009e-08 - syst_JES_EtaIntercalibration_Stat77: 1.3172246391560881e-08 - syst_JES_EtaIntercalibration_Stat78: 2.2209111210266836e-08 - syst_JES_EtaIntercalibration_Stat79: 2.9921177700752965e-08 - syst_JES_EtaIntercalibration_Stat8: 3.411689794321136e-19 - syst_JES_EtaIntercalibration_Stat80: 5.824886865852492e-09 - syst_JES_EtaIntercalibration_Stat81: 1.7509746200330834e-19 - syst_JES_EtaIntercalibration_Stat82: 2.662016760538521e-19 - syst_JES_EtaIntercalibration_Stat83: 5.843505176689758e-19 - syst_JES_EtaIntercalibration_Stat84: 3.211852274965813e-19 - syst_JES_EtaIntercalibration_Stat85: 3.2198790195151732e-19 - syst_JES_EtaIntercalibration_Stat86: 7.025198075499367e-09 - syst_JES_EtaIntercalibration_Stat87: 7.024332050095582e-09 - syst_JES_EtaIntercalibration_Stat88: 3.2319684091820485e-19 - syst_JES_EtaIntercalibration_Stat89: 6.830342359647493e-09 - syst_JES_EtaIntercalibration_Stat9: 1.5068842025963112e-08 - syst_JES_EtaIntercalibration_Stat90: 1.4842207879028645e-18 - syst_JES_EtaIntercalibration_Stat91: 1.5029342667179428e-18 - syst_JES_EtaIntercalibration_Stat92: 2.0236862750011426e-18 - syst_JES_EtaIntercalibration_Stat93: 3.976788660006493e-12 - syst_JES_EtaIntercalibration_Stat94: 3.953939875450182e-12 - syst_JES_EtaIntercalibration_Stat95: 5.778121489555103e-09 - syst_JES_EtaIntercalibration_Stat96: 1.2410144035970938e-08 - syst_JES_EtaIntercalibration_Stat97: 1.812940517501884e-08 - syst_JES_EtaIntercalibration_Stat98: 2.4138769645530815e-08 - syst_JES_EtaIntercalibration_Stat99: 6.577462941743571e-09 - syst_JES_EtaIntercalibration_TotalStat_MJB: 5.134085897216758e-05 - syst_JES_Flavour_Comp: 0.00011066444449325176 - syst_JES_Flavour_Response: 2.2548354152797937e-05 - syst_JES_Gjet_Generator: 0.00012990967169537453 - syst_JES_Gjet_OOC: 0.00010750172870703056 - syst_JES_Gjet_Purity: 1.5865039394845508e-05 - syst_JES_Gjet_Stat1: 5.744418747793375e-07 - syst_JES_Gjet_Stat10: 3.2449105919886298e-06 - syst_JES_Gjet_Stat11: 3.336503858831876e-06 - syst_JES_Gjet_Stat12: 4.7586954882614626e-06 - syst_JES_Gjet_Stat13: 2.2735133054372036e-05 - syst_JES_Gjet_Stat14: 6.219232187336312e-05 - syst_JES_Gjet_Stat15: 0.00010499155394601986 - syst_JES_Gjet_Stat2: 5.855659484635356e-07 - syst_JES_Gjet_Stat3: 8.194234116133125e-07 - syst_JES_Gjet_Stat4: 1.070257010021425e-06 - syst_JES_Gjet_Stat5: 9.838906494118135e-07 - syst_JES_Gjet_Stat6: 2.386177487111971e-06 - syst_JES_Gjet_Stat7: 1.5435468084901084e-06 - syst_JES_Gjet_Stat8: 7.937573479974846e-07 - syst_JES_Gjet_Stat9: 1.5446555441262626e-06 - syst_JES_Gjet_Veto: 0.00011380062653606085 - syst_JES_Gjet_dPhi: 1.1032092820494215e-05 - syst_JES_LArESZee: 0.00019055308971517622 - syst_JES_LArEsmear: 1.7190983101614638e-05 - syst_JES_LAr_JVT: 2.189102784247464e-05 - syst_JES_MJB_Alpha: 3.2305203915158932e-06 - syst_JES_MJB_Asym: 4.314513037412218e-05 - syst_JES_MJB_Beta: 2.6490739891516813e-06 - syst_JES_MJB_Fragmentation: 1.3029048036982593e-05 - syst_JES_MJB_Stat1: 1.3587973607201336e-08 - syst_JES_MJB_Stat10: 1.1962355735807225e-06 - syst_JES_MJB_Stat11: 1.702564536221755e-06 - syst_JES_MJB_Stat12: 2.9912577204246375e-06 - syst_JES_MJB_Stat13: 4.388577987230033e-06 - syst_JES_MJB_Stat14: 7.716097005611062e-06 - syst_JES_MJB_Stat15: 8.392308070489309e-06 - syst_JES_MJB_Stat16: 1.273417452173481e-05 - syst_JES_MJB_Stat2: 4.947401237013226e-08 - syst_JES_MJB_Stat3: 1.7400842817231583e-07 - syst_JES_MJB_Stat4: 9.624516234595897e-08 - syst_JES_MJB_Stat5: 1.3461447424032825e-07 - syst_JES_MJB_Stat6: 2.0021468477611727e-07 - syst_JES_MJB_Stat7: 2.75568190290534e-07 - syst_JES_MJB_Stat8: 4.1619642898516083e-07 - syst_JES_MJB_Stat9: 7.316734978800313e-07 - syst_JES_MJB_Threshold: 2.1595843928867425e-05 - syst_JES_Pileup_MuOffset: 3.168705216646068e-05 - syst_JES_Pileup_NPVOffset: 3.0055240391652167e-05 - syst_JES_Pileup_Pt_term: 1.3744613517665747e-05 - syst_JES_Pileup_Rho_topology: 3.6645497335962024e-05 - syst_JES_PunchThrough_MC15: 4.59952396993428e-05 - syst_JES_SingleParticle_HighPt: 2.0493752706617692e-07 - syst_JES_Zjet_MC: 4.983620446021145e-05 - syst_JES_Zjet_MuScale: 4.163855995348542e-06 - syst_JES_Zjet_MuSmearID: 1.0632224920024972e-06 - syst_JES_Zjet_MuSmearMS: 1.2555223733570024e-05 - syst_JES_Zjet_OOC: 3.151020310946916e-05 - syst_JES_Zjet_Stat1: 4.543792358812185e-06 - syst_JES_Zjet_Stat10: 2.4547187211572733e-06 - syst_JES_Zjet_Stat11: 3.415589663586655e-06 - syst_JES_Zjet_Stat12: 7.263231443372846e-06 - syst_JES_Zjet_Stat13: 1.2448505803910764e-05 - syst_JES_Zjet_Stat2: 2.0587705068802594e-07 - syst_JES_Zjet_Stat3: 1.9987611162917895e-06 - syst_JES_Zjet_Stat4: 2.137426665408664e-06 - syst_JES_Zjet_Stat5: 2.2565692433426456e-06 - syst_JES_Zjet_Stat6: 1.923711776748274e-06 - syst_JES_Zjet_Stat7: 2.207608830839377e-06 - syst_JES_Zjet_Stat8: 1.4596070532852329e-06 - syst_JES_Zjet_Stat9: 1.754218558219015e-06 - syst_JES_Zjet_Veto: 6.060202141843125e-06 - syst_JES_Zjet_dPhi: 5.6968023267443645e-06 + syst_Unfolding_bias: 6.46700000e-12 + syst_cleaning: 9.18593146e-05 + syst_lumi: 1.76500000e-04 +- stat: 1.15020000e-04 + syst_JER_CROSS_CALIB_FORWARD: 7.39600000e-22 + syst_JER_NOISE_FORWARD: 5.45800000e-22 + syst_JER_NP0: 4.98512848e-06 + syst_JER_NP1: 2.01703173e-06 + syst_JER_NP2: 5.84201804e-06 + syst_JER_NP3: 4.14901952e-07 + syst_JER_NP4: 1.05607369e-06 + syst_JER_NP5: 2.26588277e-08 + syst_JER_NP6: 1.19000731e-06 + syst_JER_NP7: 1.44020025e-08 + syst_JER_NP8: 1.54747177e-06 + syst_JES_EtaIntercalibration_Modelling: 1.10903093e-04 + syst_JES_EtaIntercalibration_NonClosure: 5.19343561e-11 + syst_JES_EtaIntercalibration_Stat0: 1.14706862e-08 + syst_JES_EtaIntercalibration_Stat1: 1.14706862e-08 + syst_JES_EtaIntercalibration_Stat10: 1.57766264e-08 + syst_JES_EtaIntercalibration_Stat100: 2.15986735e-08 + syst_JES_EtaIntercalibration_Stat101: 1.03871489e-18 + syst_JES_EtaIntercalibration_Stat102: 1.51258514e-19 + syst_JES_EtaIntercalibration_Stat103: 7.45214860e-09 + syst_JES_EtaIntercalibration_Stat104: 3.71593827e-19 + syst_JES_EtaIntercalibration_Stat105: 8.20584897e-19 + syst_JES_EtaIntercalibration_Stat106: 1.30941803e-19 + syst_JES_EtaIntercalibration_Stat107: 7.02433205e-09 + syst_JES_EtaIntercalibration_Stat108: 7.09361408e-09 + syst_JES_EtaIntercalibration_Stat109: 2.93797789e-15 + syst_JES_EtaIntercalibration_Stat11: 1.68615146e-08 + syst_JES_EtaIntercalibration_Stat110: 2.93712887e-15 + syst_JES_EtaIntercalibration_Stat111: 2.00012380e-18 + syst_JES_EtaIntercalibration_Stat112: 8.05674356e-18 + syst_JES_EtaIntercalibration_Stat113: 3.94787855e-12 + syst_JES_EtaIntercalibration_Stat114: 6.34022529e-09 + syst_JES_EtaIntercalibration_Stat115: 7.37896610e-09 + syst_JES_EtaIntercalibration_Stat116: 4.90992393e-09 + syst_JES_EtaIntercalibration_Stat117: 1.06628891e-08 + syst_JES_EtaIntercalibration_Stat118: 2.83040752e-08 + syst_JES_EtaIntercalibration_Stat119: 3.66934964e-08 + syst_JES_EtaIntercalibration_Stat12: 1.50688420e-08 + syst_JES_EtaIntercalibration_Stat120: 5.85702885e-09 + syst_JES_EtaIntercalibration_Stat121: 2.11486119e-16 + syst_JES_EtaIntercalibration_Stat122: 4.74197166e-15 + syst_JES_EtaIntercalibration_Stat123: 3.32247437e-18 + syst_JES_EtaIntercalibration_Stat124: 3.20318230e-18 + syst_JES_EtaIntercalibration_Stat125: 1.20984659e-17 + syst_JES_EtaIntercalibration_Stat126: 4.80644099e-09 + syst_JES_EtaIntercalibration_Stat127: 3.22334655e-19 + syst_JES_EtaIntercalibration_Stat128: 1.14973523e-08 + syst_JES_EtaIntercalibration_Stat129: 9.32016479e-09 + syst_JES_EtaIntercalibration_Stat13: 1.14706862e-08 + syst_JES_EtaIntercalibration_Stat130: 1.56379816e-16 + syst_JES_EtaIntercalibration_Stat131: 4.06556269e-12 + syst_JES_EtaIntercalibration_Stat132: 2.24727672e-13 + syst_JES_EtaIntercalibration_Stat133: 1.34137973e-08 + syst_JES_EtaIntercalibration_Stat134: 5.48590045e-09 + syst_JES_EtaIntercalibration_Stat135: 3.67312996e-08 + syst_JES_EtaIntercalibration_Stat136: 7.39420163e-09 + syst_JES_EtaIntercalibration_Stat137: 1.54138578e-08 + syst_JES_EtaIntercalibration_Stat138: 6.59587458e-09 + syst_JES_EtaIntercalibration_Stat139: 1.25420898e-08 + syst_JES_EtaIntercalibration_Stat14: 1.14706862e-08 + syst_JES_EtaIntercalibration_Stat140: 1.12894600e-08 + syst_JES_EtaIntercalibration_Stat141: 5.12952390e-13 + syst_JES_EtaIntercalibration_Stat142: 6.54368695e-09 + syst_JES_EtaIntercalibration_Stat143: 5.24058434e-17 + syst_JES_EtaIntercalibration_Stat144: 8.24534746e-16 + syst_JES_EtaIntercalibration_Stat145: 5.13033450e-10 + syst_JES_EtaIntercalibration_Stat146: 2.39888939e-09 + syst_JES_EtaIntercalibration_Stat147: 9.93462314e-17 + syst_JES_EtaIntercalibration_Stat148: 1.27763909e-14 + syst_JES_EtaIntercalibration_Stat149: 1.26810663e-08 + syst_JES_EtaIntercalibration_Stat15: 7.02433205e-09 + syst_JES_EtaIntercalibration_Stat150: 2.24228056e-13 + syst_JES_EtaIntercalibration_Stat151: 7.48117068e-08 + syst_JES_EtaIntercalibration_Stat152: 5.99086605e-09 + syst_JES_EtaIntercalibration_Stat153: 1.41505530e-08 + syst_JES_EtaIntercalibration_Stat154: 8.09481803e-09 + syst_JES_EtaIntercalibration_Stat155: 1.28604749e-08 + syst_JES_EtaIntercalibration_Stat156: 2.89532341e-08 + syst_JES_EtaIntercalibration_Stat157: 2.25210313e-08 + syst_JES_EtaIntercalibration_Stat158: 4.47697116e-09 + syst_JES_EtaIntercalibration_Stat159: 5.09171637e-13 + syst_JES_EtaIntercalibration_Stat16: 7.02433205e-09 + syst_JES_EtaIntercalibration_Stat160: 1.37083901e-08 + syst_JES_EtaIntercalibration_Stat161: 7.94491722e-10 + syst_JES_EtaIntercalibration_Stat162: 7.31964667e-09 + syst_JES_EtaIntercalibration_Stat163: 5.26283635e-09 + syst_JES_EtaIntercalibration_Stat164: 4.11015517e-12 + syst_JES_EtaIntercalibration_Stat165: 9.46088193e-15 + syst_JES_EtaIntercalibration_Stat166: 6.21459593e-09 + syst_JES_EtaIntercalibration_Stat167: 5.51228319e-12 + syst_JES_EtaIntercalibration_Stat168: 7.24430615e-09 + syst_JES_EtaIntercalibration_Stat169: 3.51316962e-09 + syst_JES_EtaIntercalibration_Stat17: 7.02433205e-09 + syst_JES_EtaIntercalibration_Stat170: 2.82181464e-08 + syst_JES_EtaIntercalibration_Stat171: 6.53729631e-08 + syst_JES_EtaIntercalibration_Stat172: 6.92070710e-08 + syst_JES_EtaIntercalibration_Stat173: 3.93162342e-08 + syst_JES_EtaIntercalibration_Stat174: 7.87652009e-08 + syst_JES_EtaIntercalibration_Stat175: 4.99211308e-08 + syst_JES_EtaIntercalibration_Stat176: 4.26393911e-08 + syst_JES_EtaIntercalibration_Stat177: 1.13517665e-08 + syst_JES_EtaIntercalibration_Stat178: 7.10227020e-09 + syst_JES_EtaIntercalibration_Stat179: 7.05897505e-09 + syst_JES_EtaIntercalibration_Stat18: 7.02433205e-09 + syst_JES_EtaIntercalibration_Stat180: 9.64512110e-15 + syst_JES_EtaIntercalibration_Stat181: 8.65769681e-17 + syst_JES_EtaIntercalibration_Stat182: 6.88339409e-09 + syst_JES_EtaIntercalibration_Stat183: 6.02699716e-09 + syst_JES_EtaIntercalibration_Stat184: 5.98512581e-09 + syst_JES_EtaIntercalibration_Stat185: 1.65197618e-08 + syst_JES_EtaIntercalibration_Stat186: 7.63332305e-08 + syst_JES_EtaIntercalibration_Stat187: 3.13717879e-07 + syst_JES_EtaIntercalibration_Stat188: 3.75663822e-07 + syst_JES_EtaIntercalibration_Stat189: 3.48504548e-07 + syst_JES_EtaIntercalibration_Stat19: 1.14706862e-08 + syst_JES_EtaIntercalibration_Stat190: 3.26869007e-07 + syst_JES_EtaIntercalibration_Stat191: 3.84516463e-07 + syst_JES_EtaIntercalibration_Stat192: 2.74033903e-07 + syst_JES_EtaIntercalibration_Stat193: 1.02467947e-07 + syst_JES_EtaIntercalibration_Stat194: 2.39102135e-08 + syst_JES_EtaIntercalibration_Stat195: 6.92231036e-11 + syst_JES_EtaIntercalibration_Stat196: 4.33539947e-12 + syst_JES_EtaIntercalibration_Stat197: 1.43828597e-08 + syst_JES_EtaIntercalibration_Stat198: 8.84799762e-09 + syst_JES_EtaIntercalibration_Stat199: 1.03087285e-08 + syst_JES_EtaIntercalibration_Stat2: 1.14706862e-08 + syst_JES_EtaIntercalibration_Stat20: 1.14706862e-08 + syst_JES_EtaIntercalibration_Stat200: 3.36834072e-08 + syst_JES_EtaIntercalibration_Stat201: 1.37726000e-07 + syst_JES_EtaIntercalibration_Stat202: 4.49221513e-07 + syst_JES_EtaIntercalibration_Stat203: 8.14817052e-07 + syst_JES_EtaIntercalibration_Stat204: 7.05343576e-07 + syst_JES_EtaIntercalibration_Stat205: 6.71269802e-07 + syst_JES_EtaIntercalibration_Stat206: 8.39576625e-07 + syst_JES_EtaIntercalibration_Stat207: 4.43781241e-07 + syst_JES_EtaIntercalibration_Stat208: 2.33682878e-07 + syst_JES_EtaIntercalibration_Stat209: 3.62365710e-08 + syst_JES_EtaIntercalibration_Stat21: 1.14706862e-08 + syst_JES_EtaIntercalibration_Stat210: 4.37730349e-09 + syst_JES_EtaIntercalibration_Stat211: 4.25978695e-10 + syst_JES_EtaIntercalibration_Stat212: 1.20957768e-08 + syst_JES_EtaIntercalibration_Stat213: 3.00610891e-08 + syst_JES_EtaIntercalibration_Stat214: 1.67853411e-07 + syst_JES_EtaIntercalibration_Stat215: 7.27002325e-07 + syst_JES_EtaIntercalibration_Stat216: 9.76343223e-07 + syst_JES_EtaIntercalibration_Stat217: 8.32737948e-07 + syst_JES_EtaIntercalibration_Stat218: 7.93896838e-07 + syst_JES_EtaIntercalibration_Stat219: 9.59063439e-07 + syst_JES_EtaIntercalibration_Stat22: 1.14706862e-08 + syst_JES_EtaIntercalibration_Stat220: 5.20467778e-07 + syst_JES_EtaIntercalibration_Stat221: 1.91382967e-07 + syst_JES_EtaIntercalibration_Stat222: 3.72871050e-08 + syst_JES_EtaIntercalibration_Stat223: 1.07153703e-08 + syst_JES_EtaIntercalibration_Stat224: 9.81457828e-09 + syst_JES_EtaIntercalibration_Stat225: 1.12843877e-07 + syst_JES_EtaIntercalibration_Stat226: 5.04141567e-07 + syst_JES_EtaIntercalibration_Stat227: 1.29107649e-06 + syst_JES_EtaIntercalibration_Stat228: 2.26045305e-06 + syst_JES_EtaIntercalibration_Stat229: 2.21908833e-06 + syst_JES_EtaIntercalibration_Stat23: 1.14212424e-08 + syst_JES_EtaIntercalibration_Stat230: 2.15396240e-06 + syst_JES_EtaIntercalibration_Stat231: 2.79446632e-06 + syst_JES_EtaIntercalibration_Stat232: 1.40638056e-06 + syst_JES_EtaIntercalibration_Stat233: 4.98261084e-07 + syst_JES_EtaIntercalibration_Stat234: 8.93274343e-08 + syst_JES_EtaIntercalibration_Stat235: 2.96440496e-08 + syst_JES_EtaIntercalibration_Stat236: 3.30049566e-08 + syst_JES_EtaIntercalibration_Stat237: 1.49724973e-07 + syst_JES_EtaIntercalibration_Stat238: 2.97253982e-07 + syst_JES_EtaIntercalibration_Stat239: 3.72805821e-07 + syst_JES_EtaIntercalibration_Stat24: 7.02433205e-09 + syst_JES_EtaIntercalibration_Stat240: 3.50941263e-07 + syst_JES_EtaIntercalibration_Stat241: 3.07265533e-07 + syst_JES_EtaIntercalibration_Stat242: 3.35510905e-07 + syst_JES_EtaIntercalibration_Stat243: 2.91703732e-07 + syst_JES_EtaIntercalibration_Stat244: 1.08749025e-07 + syst_JES_EtaIntercalibration_Stat245: 2.71600454e-08 + syst_JES_EtaIntercalibration_Stat25: 5.41921661e-19 + syst_JES_EtaIntercalibration_Stat26: 5.26724527e-19 + syst_JES_EtaIntercalibration_Stat27: 5.57659821e-19 + syst_JES_EtaIntercalibration_Stat28: 5.26159413e-19 + syst_JES_EtaIntercalibration_Stat29: 3.95433050e-12 + syst_JES_EtaIntercalibration_Stat3: 1.14713933e-08 + syst_JES_EtaIntercalibration_Stat30: 5.44540304e-19 + syst_JES_EtaIntercalibration_Stat31: 1.40729128e-08 + syst_JES_EtaIntercalibration_Stat32: 1.29990413e-08 + syst_JES_EtaIntercalibration_Stat33: 1.68615146e-08 + syst_JES_EtaIntercalibration_Stat34: 1.29990413e-08 + syst_JES_EtaIntercalibration_Stat35: 3.43868835e-19 + syst_JES_EtaIntercalibration_Stat36: 9.68428887e-09 + syst_JES_EtaIntercalibration_Stat37: 7.18627880e-09 + syst_JES_EtaIntercalibration_Stat38: 5.39633655e-19 + syst_JES_EtaIntercalibration_Stat39: 5.39849245e-19 + syst_JES_EtaIntercalibration_Stat4: 1.14713933e-08 + syst_JES_EtaIntercalibration_Stat40: 7.02346602e-09 + syst_JES_EtaIntercalibration_Stat41: 1.14713933e-08 + syst_JES_EtaIntercalibration_Stat42: 1.14706862e-08 + syst_JES_EtaIntercalibration_Stat43: 1.14706862e-08 + syst_JES_EtaIntercalibration_Stat44: 1.14706862e-08 + syst_JES_EtaIntercalibration_Stat45: 1.14706862e-08 + syst_JES_EtaIntercalibration_Stat46: 5.42631709e-19 + syst_JES_EtaIntercalibration_Stat47: 3.10785087e-19 + syst_JES_EtaIntercalibration_Stat48: 5.76137779e-19 + syst_JES_EtaIntercalibration_Stat49: 7.01567180e-09 + syst_JES_EtaIntercalibration_Stat5: 1.14706862e-08 + syst_JES_EtaIntercalibration_Stat50: 1.31986804e-18 + syst_JES_EtaIntercalibration_Stat51: 3.95392613e-12 + syst_JES_EtaIntercalibration_Stat52: 3.96553032e-12 + syst_JES_EtaIntercalibration_Stat53: 1.40642526e-08 + syst_JES_EtaIntercalibration_Stat54: 1.29990413e-08 + syst_JES_EtaIntercalibration_Stat55: 1.29990413e-08 + syst_JES_EtaIntercalibration_Stat56: 1.29990413e-08 + syst_JES_EtaIntercalibration_Stat57: 7.85125653e-19 + syst_JES_EtaIntercalibration_Stat58: 1.32847420e-19 + syst_JES_EtaIntercalibration_Stat59: 4.56481990e-09 + syst_JES_EtaIntercalibration_Stat6: 7.62968381e-09 + syst_JES_EtaIntercalibration_Stat60: 1.13129307e-08 + syst_JES_EtaIntercalibration_Stat61: 3.19656264e-19 + syst_JES_EtaIntercalibration_Stat62: 7.00960962e-09 + syst_JES_EtaIntercalibration_Stat63: 5.25029702e-19 + syst_JES_EtaIntercalibration_Stat64: 1.14706862e-08 + syst_JES_EtaIntercalibration_Stat65: 1.14706862e-08 + syst_JES_EtaIntercalibration_Stat66: 1.14706862e-08 + syst_JES_EtaIntercalibration_Stat67: 1.14706862e-08 + syst_JES_EtaIntercalibration_Stat68: 3.57556321e-23 + syst_JES_EtaIntercalibration_Stat69: 6.93686348e-09 + syst_JES_EtaIntercalibration_Stat7: 7.02433205e-09 + syst_JES_EtaIntercalibration_Stat70: 5.56681130e-09 + syst_JES_EtaIntercalibration_Stat71: 3.35766709e-09 + syst_JES_EtaIntercalibration_Stat72: 3.97592263e-12 + syst_JES_EtaIntercalibration_Stat73: 3.97678865e-12 + syst_JES_EtaIntercalibration_Stat74: 5.66034204e-09 + syst_JES_EtaIntercalibration_Stat75: 1.46444896e-08 + syst_JES_EtaIntercalibration_Stat76: 1.24101440e-08 + syst_JES_EtaIntercalibration_Stat77: 1.31722464e-08 + syst_JES_EtaIntercalibration_Stat78: 2.22091112e-08 + syst_JES_EtaIntercalibration_Stat79: 2.99211777e-08 + syst_JES_EtaIntercalibration_Stat8: 3.41168979e-19 + syst_JES_EtaIntercalibration_Stat80: 5.82488687e-09 + syst_JES_EtaIntercalibration_Stat81: 1.75097462e-19 + syst_JES_EtaIntercalibration_Stat82: 2.66201676e-19 + syst_JES_EtaIntercalibration_Stat83: 5.84350518e-19 + syst_JES_EtaIntercalibration_Stat84: 3.21185227e-19 + syst_JES_EtaIntercalibration_Stat85: 3.21987902e-19 + syst_JES_EtaIntercalibration_Stat86: 7.02519808e-09 + syst_JES_EtaIntercalibration_Stat87: 7.02433205e-09 + syst_JES_EtaIntercalibration_Stat88: 3.23196841e-19 + syst_JES_EtaIntercalibration_Stat89: 6.83034236e-09 + syst_JES_EtaIntercalibration_Stat9: 1.50688420e-08 + syst_JES_EtaIntercalibration_Stat90: 1.48422079e-18 + syst_JES_EtaIntercalibration_Stat91: 1.50293427e-18 + syst_JES_EtaIntercalibration_Stat92: 2.02368628e-18 + syst_JES_EtaIntercalibration_Stat93: 3.97678866e-12 + syst_JES_EtaIntercalibration_Stat94: 3.95393988e-12 + syst_JES_EtaIntercalibration_Stat95: 5.77812149e-09 + syst_JES_EtaIntercalibration_Stat96: 1.24101440e-08 + syst_JES_EtaIntercalibration_Stat97: 1.81294052e-08 + syst_JES_EtaIntercalibration_Stat98: 2.41387696e-08 + syst_JES_EtaIntercalibration_Stat99: 6.57746294e-09 + syst_JES_EtaIntercalibration_TotalStat_MJB: 5.13408590e-05 + syst_JES_Flavour_Comp: 1.10664444e-04 + syst_JES_Flavour_Response: 2.25483542e-05 + syst_JES_Gjet_Generator: 1.29909672e-04 + syst_JES_Gjet_OOC: 1.07501729e-04 + syst_JES_Gjet_Purity: 1.58650394e-05 + syst_JES_Gjet_Stat1: 5.74441875e-07 + syst_JES_Gjet_Stat10: 3.24491059e-06 + syst_JES_Gjet_Stat11: 3.33650386e-06 + syst_JES_Gjet_Stat12: 4.75869549e-06 + syst_JES_Gjet_Stat13: 2.27351331e-05 + syst_JES_Gjet_Stat14: 6.21923219e-05 + syst_JES_Gjet_Stat15: 1.04991554e-04 + syst_JES_Gjet_Stat2: 5.85565948e-07 + syst_JES_Gjet_Stat3: 8.19423412e-07 + syst_JES_Gjet_Stat4: 1.07025701e-06 + syst_JES_Gjet_Stat5: 9.83890649e-07 + syst_JES_Gjet_Stat6: 2.38617749e-06 + syst_JES_Gjet_Stat7: 1.54354681e-06 + syst_JES_Gjet_Stat8: 7.93757348e-07 + syst_JES_Gjet_Stat9: 1.54465554e-06 + syst_JES_Gjet_Veto: 1.13800627e-04 + syst_JES_Gjet_dPhi: 1.10320928e-05 + syst_JES_LArESZee: 1.90553090e-04 + syst_JES_LArEsmear: 1.71909831e-05 + syst_JES_LAr_JVT: 2.18910278e-05 + syst_JES_MJB_Alpha: 3.23052039e-06 + syst_JES_MJB_Asym: 4.31451304e-05 + syst_JES_MJB_Beta: 2.64907399e-06 + syst_JES_MJB_Fragmentation: 1.30290480e-05 + syst_JES_MJB_Stat1: 1.35879736e-08 + syst_JES_MJB_Stat10: 1.19623557e-06 + syst_JES_MJB_Stat11: 1.70256454e-06 + syst_JES_MJB_Stat12: 2.99125772e-06 + syst_JES_MJB_Stat13: 4.38857799e-06 + syst_JES_MJB_Stat14: 7.71609701e-06 + syst_JES_MJB_Stat15: 8.39230807e-06 + syst_JES_MJB_Stat16: 1.27341745e-05 + syst_JES_MJB_Stat2: 4.94740124e-08 + syst_JES_MJB_Stat3: 1.74008428e-07 + syst_JES_MJB_Stat4: 9.62451623e-08 + syst_JES_MJB_Stat5: 1.34614474e-07 + syst_JES_MJB_Stat6: 2.00214685e-07 + syst_JES_MJB_Stat7: 2.75568190e-07 + syst_JES_MJB_Stat8: 4.16196429e-07 + syst_JES_MJB_Stat9: 7.31673498e-07 + syst_JES_MJB_Threshold: 2.15958439e-05 + syst_JES_Pileup_MuOffset: 3.16870522e-05 + syst_JES_Pileup_NPVOffset: 3.00552404e-05 + syst_JES_Pileup_Pt_term: 1.37446135e-05 + syst_JES_Pileup_Rho_topology: 3.66454973e-05 + syst_JES_PunchThrough_MC15: 4.59952397e-05 + syst_JES_SingleParticle_HighPt: 2.04937527e-07 + syst_JES_Zjet_MC: 4.98362045e-05 + syst_JES_Zjet_MuScale: 4.16385600e-06 + syst_JES_Zjet_MuSmearID: 1.06322249e-06 + syst_JES_Zjet_MuSmearMS: 1.25552237e-05 + syst_JES_Zjet_OOC: 3.15102031e-05 + syst_JES_Zjet_Stat1: 4.54379236e-06 + syst_JES_Zjet_Stat10: 2.45471872e-06 + syst_JES_Zjet_Stat11: 3.41558966e-06 + syst_JES_Zjet_Stat12: 7.26323144e-06 + syst_JES_Zjet_Stat13: 1.24485058e-05 + syst_JES_Zjet_Stat2: 2.05877051e-07 + syst_JES_Zjet_Stat3: 1.99876112e-06 + syst_JES_Zjet_Stat4: 2.13742667e-06 + syst_JES_Zjet_Stat5: 2.25656924e-06 + syst_JES_Zjet_Stat6: 1.92371178e-06 + syst_JES_Zjet_Stat7: 2.20760883e-06 + syst_JES_Zjet_Stat8: 1.45960705e-06 + syst_JES_Zjet_Stat9: 1.75421856e-06 + syst_JES_Zjet_Veto: 6.06020214e-06 + syst_JES_Zjet_dPhi: 5.69680233e-06 syst_PRW: 0.0 - syst_Unfolding_bias: 7.526e-10 - syst_cleaning: 4.9415409539940074e-05 - syst_lumi: 9.499e-05 -- stat: 8.152e-05 - syst_JER_CROSS_CALIB_FORWARD: 1.754e-22 - syst_JER_NOISE_FORWARD: 1.2861e-22 - syst_JER_NP0: 2.45923423040588e-06 - syst_JER_NP1: 1.110144561532416e-06 - syst_JER_NP2: 3.0670964689751773e-06 - syst_JER_NP3: 2.476987347565587e-08 - syst_JER_NP4: 5.820773724342838e-07 - syst_JER_NP5: 1.2284172448724415e-07 - syst_JER_NP6: 7.542803507317422e-07 - syst_JER_NP7: 7.80635298971293e-08 - syst_JER_NP8: 7.265960001954317e-07 - syst_JES_EtaIntercalibration_Modelling: 5.451984225949301e-05 - syst_JES_EtaIntercalibration_NonClosure: 3.9180637718138284e-12 - syst_JES_EtaIntercalibration_Stat0: 5.806760887103928e-09 - syst_JES_EtaIntercalibration_Stat1: 5.806760887103928e-09 - syst_JES_EtaIntercalibration_Stat10: 2.0428077950458284e-09 - syst_JES_EtaIntercalibration_Stat100: 1.0931838669296394e-08 - syst_JES_EtaIntercalibration_Stat101: 9.787681068704424e-20 - syst_JES_EtaIntercalibration_Stat102: 1.643869997140893e-20 - syst_JES_EtaIntercalibration_Stat103: 3.772406658890664e-09 - syst_JES_EtaIntercalibration_Stat104: 4.803249917243532e-20 - syst_JES_EtaIntercalibration_Stat105: 9.265692125776411e-20 - syst_JES_EtaIntercalibration_Stat106: 1.4733931402792265e-20 - syst_JES_EtaIntercalibration_Stat107: 3.5559003079389054e-09 - syst_JES_EtaIntercalibration_Stat108: 3.591407349494067e-09 - syst_JES_EtaIntercalibration_Stat109: 2.2927815429618997e-16 - syst_JES_EtaIntercalibration_Stat11: 2.380703835003393e-09 - syst_JES_EtaIntercalibration_Stat110: 2.2920176225991544e-16 - syst_JES_EtaIntercalibration_Stat111: 1.8270265973707114e-19 - syst_JES_EtaIntercalibration_Stat112: 6.442662638226528e-19 - syst_JES_EtaIntercalibration_Stat113: 2.9354844527437033e-13 - syst_JES_EtaIntercalibration_Stat114: 3.0840091451712655e-09 - syst_JES_EtaIntercalibration_Stat115: 4.527561466175805e-09 - syst_JES_EtaIntercalibration_Stat116: 3.2944460459992362e-09 - syst_JES_EtaIntercalibration_Stat117: 3.7893345062160985e-09 - syst_JES_EtaIntercalibration_Stat118: 9.84164929013425e-09 - syst_JES_EtaIntercalibration_Stat119: 1.3198227153608333e-08 - syst_JES_EtaIntercalibration_Stat12: 3.477958021598277e-09 - syst_JES_EtaIntercalibration_Stat120: 2.964514251947526e-09 - syst_JES_EtaIntercalibration_Stat121: 1.7651765315401178e-17 - syst_JES_EtaIntercalibration_Stat122: 3.663354802592154e-16 - syst_JES_EtaIntercalibration_Stat123: 3.226084005028387e-19 - syst_JES_EtaIntercalibration_Stat124: 3.1132225599047683e-19 - syst_JES_EtaIntercalibration_Stat125: 1.1914996265211333e-18 - syst_JES_EtaIntercalibration_Stat126: 2.4326653592318896e-09 - syst_JES_EtaIntercalibration_Stat127: 3.975056603370573e-20 - syst_JES_EtaIntercalibration_Stat128: 5.8196906374810036e-09 - syst_JES_EtaIntercalibration_Stat129: 4.71810635504411e-09 - syst_JES_EtaIntercalibration_Stat13: 5.806760887103928e-09 - syst_JES_EtaIntercalibration_Stat130: 1.2963591323394917e-17 - syst_JES_EtaIntercalibration_Stat131: 3.0254012758640795e-13 - syst_JES_EtaIntercalibration_Stat132: 1.6125081879556498e-14 - syst_JES_EtaIntercalibration_Stat133: 6.507282439697849e-09 - syst_JES_EtaIntercalibration_Stat134: 2.5426865362586066e-09 - syst_JES_EtaIntercalibration_Stat135: 2.141872993433551e-08 - syst_JES_EtaIntercalibration_Stat136: 3.37629233479285e-09 - syst_JES_EtaIntercalibration_Stat137: 7.872933634396985e-09 - syst_JES_EtaIntercalibration_Stat138: 3.095928499791695e-09 - syst_JES_EtaIntercalibration_Stat139: 6.53985099218629e-09 - syst_JES_EtaIntercalibration_Stat14: 5.806760887103928e-09 - syst_JES_EtaIntercalibration_Stat140: 1.6515879654138922e-09 - syst_JES_EtaIntercalibration_Stat141: 3.802950069354054e-14 - syst_JES_EtaIntercalibration_Stat142: 3.3126336949973373e-09 - syst_JES_EtaIntercalibration_Stat143: 5.210902509227647e-18 - syst_JES_EtaIntercalibration_Stat144: 6.80839842896257e-17 - syst_JES_EtaIntercalibration_Stat145: 7.001815392977283e-11 - syst_JES_EtaIntercalibration_Stat146: 3.2735752656469054e-10 - syst_JES_EtaIntercalibration_Stat147: 8.41222026787221e-18 - syst_JES_EtaIntercalibration_Stat148: 9.317766965856143e-16 - syst_JES_EtaIntercalibration_Stat149: 6.468358118564555e-09 - syst_JES_EtaIntercalibration_Stat15: 3.5559003079256114e-09 - syst_JES_EtaIntercalibration_Stat150: 1.6083535930960604e-14 - syst_JES_EtaIntercalibration_Stat151: 2.845508156287731e-08 - syst_JES_EtaIntercalibration_Stat152: 2.796437254059865e-09 - syst_JES_EtaIntercalibration_Stat153: 1.2242113111009669e-08 - syst_JES_EtaIntercalibration_Stat154: 4.2443963409908645e-09 - syst_JES_EtaIntercalibration_Stat155: 6.562740313348468e-09 - syst_JES_EtaIntercalibration_Stat156: 1.4627976620161792e-08 - syst_JES_EtaIntercalibration_Stat157: 1.1179555178986326e-08 - syst_JES_EtaIntercalibration_Stat158: 4.514782438556702e-09 - syst_JES_EtaIntercalibration_Stat159: 3.775823103311383e-14 - syst_JES_EtaIntercalibration_Stat16: 3.5559003079256114e-09 - syst_JES_EtaIntercalibration_Stat160: 6.939695004105007e-09 - syst_JES_EtaIntercalibration_Stat161: 1.084263822769137e-10 - syst_JES_EtaIntercalibration_Stat162: 3.705722699545729e-09 - syst_JES_EtaIntercalibration_Stat163: 2.663894139488179e-09 - syst_JES_EtaIntercalibration_Stat164: 3.2389336530942673e-13 - syst_JES_EtaIntercalibration_Stat165: 7.094038924865017e-16 - syst_JES_EtaIntercalibration_Stat166: 3.1462701070524854e-09 - syst_JES_EtaIntercalibration_Stat167: 4.104535798357714e-13 - syst_JES_EtaIntercalibration_Stat168: 3.6667518446323623e-09 - syst_JES_EtaIntercalibration_Stat169: 1.72396587750454e-08 - syst_JES_EtaIntercalibration_Stat17: 3.555900307955417e-09 - syst_JES_EtaIntercalibration_Stat170: 1.5181685240361327e-08 - syst_JES_EtaIntercalibration_Stat171: 3.4863215571716844e-08 - syst_JES_EtaIntercalibration_Stat172: 3.55292143875994e-08 - syst_JES_EtaIntercalibration_Stat173: 2.7516240204650056e-08 - syst_JES_EtaIntercalibration_Stat174: 5.0343457122053106e-08 - syst_JES_EtaIntercalibration_Stat175: 3.193337243386611e-08 - syst_JES_EtaIntercalibration_Stat176: 2.5514970664298242e-08 - syst_JES_EtaIntercalibration_Stat177: 2.0524286746864064e-09 - syst_JES_EtaIntercalibration_Stat178: 3.595737155968234e-09 - syst_JES_EtaIntercalibration_Stat179: 3.5732209480834875e-09 - syst_JES_EtaIntercalibration_Stat18: 3.5559003079256114e-09 - syst_JES_EtaIntercalibration_Stat180: 7.160461415823703e-16 - syst_JES_EtaIntercalibration_Stat181: 7.447914204661598e-18 - syst_JES_EtaIntercalibration_Stat182: 3.4847673357695215e-09 - syst_JES_EtaIntercalibration_Stat183: 3.0559130795884885e-09 - syst_JES_EtaIntercalibration_Stat184: 3.0547909781194522e-09 - syst_JES_EtaIntercalibration_Stat185: 5.719256944743784e-09 - syst_JES_EtaIntercalibration_Stat186: 2.9612913990352253e-08 - syst_JES_EtaIntercalibration_Stat187: 1.5719217633202995e-07 - syst_JES_EtaIntercalibration_Stat188: 2.117806117188257e-07 - syst_JES_EtaIntercalibration_Stat189: 1.897749917665655e-07 - syst_JES_EtaIntercalibration_Stat19: 5.806760887103928e-09 - syst_JES_EtaIntercalibration_Stat190: 1.9352691673253106e-07 - syst_JES_EtaIntercalibration_Stat191: 2.1761536595562364e-07 - syst_JES_EtaIntercalibration_Stat192: 1.3675402845985927e-07 - syst_JES_EtaIntercalibration_Stat193: 4.8320735455909606e-08 - syst_JES_EtaIntercalibration_Stat194: 1.1426070485954478e-08 - syst_JES_EtaIntercalibration_Stat195: 6.35512342287701e-12 - syst_JES_EtaIntercalibration_Stat196: 3.4170666565326036e-13 - syst_JES_EtaIntercalibration_Stat197: 7.281155454321794e-09 - syst_JES_EtaIntercalibration_Stat198: 4.378452446821251e-09 - syst_JES_EtaIntercalibration_Stat199: 3.939458364737468e-09 - syst_JES_EtaIntercalibration_Stat2: 5.806760887103928e-09 - syst_JES_EtaIntercalibration_Stat20: 5.806760887103928e-09 - syst_JES_EtaIntercalibration_Stat200: 1.2754470275162351e-08 - syst_JES_EtaIntercalibration_Stat201: 5.6589245444695586e-08 - syst_JES_EtaIntercalibration_Stat202: 2.2923116607477262e-07 - syst_JES_EtaIntercalibration_Stat203: 4.4295391125939953e-07 - syst_JES_EtaIntercalibration_Stat204: 4.020307753145274e-07 - syst_JES_EtaIntercalibration_Stat205: 3.6519233545489423e-07 - syst_JES_EtaIntercalibration_Stat206: 4.607872692468836e-07 - syst_JES_EtaIntercalibration_Stat207: 2.4334064087200893e-07 - syst_JES_EtaIntercalibration_Stat208: 9.78625341997641e-08 - syst_JES_EtaIntercalibration_Stat209: 1.6566206287198042e-08 - syst_JES_EtaIntercalibration_Stat21: 5.806760887103928e-09 - syst_JES_EtaIntercalibration_Stat210: 2.6166459363658665e-09 - syst_JES_EtaIntercalibration_Stat211: 3.8983881827076945e-11 - syst_JES_EtaIntercalibration_Stat212: 2.232613490957683e-09 - syst_JES_EtaIntercalibration_Stat213: 1.1528486229770151e-08 - syst_JES_EtaIntercalibration_Stat214: 6.684547011578272e-08 - syst_JES_EtaIntercalibration_Stat215: 3.158172256226693e-07 - syst_JES_EtaIntercalibration_Stat216: 5.35303577421261e-07 - syst_JES_EtaIntercalibration_Stat217: 4.729979360420086e-07 - syst_JES_EtaIntercalibration_Stat218: 4.335477251699056e-07 - syst_JES_EtaIntercalibration_Stat219: 5.200211990871141e-07 - syst_JES_EtaIntercalibration_Stat22: 5.806760887103928e-09 - syst_JES_EtaIntercalibration_Stat220: 2.8010267313968996e-07 - syst_JES_EtaIntercalibration_Stat221: 8.50533197470857e-08 - syst_JES_EtaIntercalibration_Stat222: 1.6686989033375675e-08 - syst_JES_EtaIntercalibration_Stat223: 3.6497347568949105e-09 - syst_JES_EtaIntercalibration_Stat224: 1.263319480574886e-09 - syst_JES_EtaIntercalibration_Stat225: 3.3840701824873545e-08 - syst_JES_EtaIntercalibration_Stat226: 2.447112737492901e-07 - syst_JES_EtaIntercalibration_Stat227: 6.498465261121275e-07 - syst_JES_EtaIntercalibration_Stat228: 1.1894132786798709e-06 - syst_JES_EtaIntercalibration_Stat229: 1.173703280220346e-06 - syst_JES_EtaIntercalibration_Stat23: 5.782038632696948e-09 - syst_JES_EtaIntercalibration_Stat230: 1.2185005734508294e-06 - syst_JES_EtaIntercalibration_Stat231: 1.526373070386136e-06 - syst_JES_EtaIntercalibration_Stat232: 7.286171336854494e-07 - syst_JES_EtaIntercalibration_Stat233: 2.2845297109033184e-07 - syst_JES_EtaIntercalibration_Stat234: 3.0344922915538934e-08 - syst_JES_EtaIntercalibration_Stat235: 9.3123711669073e-09 - syst_JES_EtaIntercalibration_Stat236: 1.2709786308195744e-08 - syst_JES_EtaIntercalibration_Stat237: 6.478500347302608e-08 - syst_JES_EtaIntercalibration_Stat238: 1.6155161303744385e-07 - syst_JES_EtaIntercalibration_Stat239: 2.119269390615549e-07 - syst_JES_EtaIntercalibration_Stat24: 3.5559003079256114e-09 - syst_JES_EtaIntercalibration_Stat240: 1.8515714271936688e-07 - syst_JES_EtaIntercalibration_Stat241: 1.9093173518302293e-07 - syst_JES_EtaIntercalibration_Stat242: 2.0385759735658615e-07 - syst_JES_EtaIntercalibration_Stat243: 1.440183970019108e-07 - syst_JES_EtaIntercalibration_Stat244: 5.433346114504395e-08 - syst_JES_EtaIntercalibration_Stat245: 1.638989007742273e-08 - syst_JES_EtaIntercalibration_Stat25: 4.5995926721830486e-20 - syst_JES_EtaIntercalibration_Stat26: 6.490554117330815e-20 - syst_JES_EtaIntercalibration_Stat27: 6.93247603674185e-20 - syst_JES_EtaIntercalibration_Stat28: 6.479265757012904e-20 - syst_JES_EtaIntercalibration_Stat29: 2.9410102122060034e-13 - syst_JES_EtaIntercalibration_Stat3: 5.806760887103928e-09 - syst_JES_EtaIntercalibration_Stat30: 6.744868271508347e-20 - syst_JES_EtaIntercalibration_Stat31: 2.6838127263279794e-09 - syst_JES_EtaIntercalibration_Stat32: 3.1956337399645505e-09 - syst_JES_EtaIntercalibration_Stat33: 2.3807038350033684e-09 - syst_JES_EtaIntercalibration_Stat34: 3.1956337399645133e-09 - syst_JES_EtaIntercalibration_Stat35: 4.279041181713492e-20 - syst_JES_EtaIntercalibration_Stat36: 4.902296453704121e-09 - syst_JES_EtaIntercalibration_Stat37: 3.6381727212851332e-09 - syst_JES_EtaIntercalibration_Stat38: 6.67610080810648e-20 - syst_JES_EtaIntercalibration_Stat39: 6.678289208322742e-20 - syst_JES_EtaIntercalibration_Stat4: 5.806760887103928e-09 - syst_JES_EtaIntercalibration_Stat40: 3.5550342825220033e-09 - syst_JES_EtaIntercalibration_Stat41: 5.806760887103928e-09 - syst_JES_EtaIntercalibration_Stat42: 5.806760887103928e-09 - syst_JES_EtaIntercalibration_Stat43: 5.806760887103928e-09 - syst_JES_EtaIntercalibration_Stat44: 5.806760887103928e-09 - syst_JES_EtaIntercalibration_Stat45: 5.806760887103928e-09 - syst_JES_EtaIntercalibration_Stat46: 6.721298591046227e-20 - syst_JES_EtaIntercalibration_Stat47: 3.8081272300174007e-20 - syst_JES_EtaIntercalibration_Stat48: 4.8361589097133686e-20 - syst_JES_EtaIntercalibration_Stat49: 3.551570180932243e-09 - syst_JES_EtaIntercalibration_Stat5: 5.806760887103928e-09 - syst_JES_EtaIntercalibration_Stat50: 1.338117277077427e-19 - syst_JES_EtaIntercalibration_Stat51: 2.940668887906287e-13 - syst_JES_EtaIntercalibration_Stat52: 2.9488164990658877e-13 - syst_JES_EtaIntercalibration_Stat53: 2.6829467009372993e-09 - syst_JES_EtaIntercalibration_Stat54: 3.1956337399645824e-09 - syst_JES_EtaIntercalibration_Stat55: 3.195633739963808e-09 - syst_JES_EtaIntercalibration_Stat56: 3.195633739964512e-09 - syst_JES_EtaIntercalibration_Stat57: 8.858695394211878e-20 - syst_JES_EtaIntercalibration_Stat58: 1.5070440078447445e-20 - syst_JES_EtaIntercalibration_Stat59: 2.3105557772968798e-09 - syst_JES_EtaIntercalibration_Stat6: 3.862473300878621e-09 - syst_JES_EtaIntercalibration_Stat60: 5.7266861418712306e-09 - syst_JES_EtaIntercalibration_Stat61: 3.9343242427903677e-20 - syst_JES_EtaIntercalibration_Stat62: 3.548106079291725e-09 - syst_JES_EtaIntercalibration_Stat63: 6.470788417959592e-20 - syst_JES_EtaIntercalibration_Stat64: 5.806760887103928e-09 - syst_JES_EtaIntercalibration_Stat65: 5.806760887103928e-09 - syst_JES_EtaIntercalibration_Stat66: 5.806760887103928e-09 - syst_JES_EtaIntercalibration_Stat67: 5.806760887103928e-09 - syst_JES_EtaIntercalibration_Stat68: 1.4244727822952604e-23 - syst_JES_EtaIntercalibration_Stat69: 3.511733012352007e-09 - syst_JES_EtaIntercalibration_Stat7: 3.5559003079247048e-09 - syst_JES_EtaIntercalibration_Stat70: 2.8180466639146436e-09 - syst_JES_EtaIntercalibration_Stat71: 4.5821404117740316e-10 - syst_JES_EtaIntercalibration_Stat72: 2.9566107275914055e-13 - syst_JES_EtaIntercalibration_Stat73: 2.9566107257144396e-13 - syst_JES_EtaIntercalibration_Stat74: 2.865678061122986e-09 - syst_JES_EtaIntercalibration_Stat75: 3.571488765206989e-09 - syst_JES_EtaIntercalibration_Stat76: 3.0553376245513025e-09 - syst_JES_EtaIntercalibration_Stat77: 1.9901263778965393e-09 - syst_JES_EtaIntercalibration_Stat78: 1.2225569383468403e-08 - syst_JES_EtaIntercalibration_Stat79: 1.5146784312189892e-08 - syst_JES_EtaIntercalibration_Stat8: 4.2410462488068614e-20 - syst_JES_EtaIntercalibration_Stat80: 7.949247181334185e-10 - syst_JES_EtaIntercalibration_Stat81: 2.0908743308721354e-20 - syst_JES_EtaIntercalibration_Stat82: 3.439182558352348e-20 - syst_JES_EtaIntercalibration_Stat83: 7.399860741932918e-20 - syst_JES_EtaIntercalibration_Stat84: 3.9663552028174117e-20 - syst_JES_EtaIntercalibration_Stat85: 3.973055060880334e-20 - syst_JES_EtaIntercalibration_Stat86: 3.5559003079389054e-09 - syst_JES_EtaIntercalibration_Stat87: 3.5559003079389046e-09 - syst_JES_EtaIntercalibration_Stat88: 3.987959696710126e-20 - syst_JES_EtaIntercalibration_Stat89: 3.4574332195285596e-09 - syst_JES_EtaIntercalibration_Stat9: 3.477958021612465e-09 - syst_JES_EtaIntercalibration_Stat90: 1.518687246574159e-19 - syst_JES_EtaIntercalibration_Stat91: 1.536287170420947e-19 - syst_JES_EtaIntercalibration_Stat92: 2.0469277555050032e-19 - syst_JES_EtaIntercalibration_Stat93: 2.957476760866495e-13 - syst_JES_EtaIntercalibration_Stat94: 2.939813986003196e-13 - syst_JES_EtaIntercalibration_Stat95: 2.925433813564966e-09 - syst_JES_EtaIntercalibration_Stat96: 3.0553376245222598e-09 - syst_JES_EtaIntercalibration_Stat97: 6.59701165301381e-09 - syst_JES_EtaIntercalibration_Stat98: 8.674602973623635e-09 - syst_JES_EtaIntercalibration_Stat99: 8.975487284823555e-10 - syst_JES_EtaIntercalibration_TotalStat_MJB: 3.1343267219611925e-05 - syst_JES_Flavour_Comp: 5.435876930174192e-05 - syst_JES_Flavour_Response: 1.666029411505091e-05 - syst_JES_Gjet_Generator: 7.043455969905683e-05 - syst_JES_Gjet_OOC: 5.8224737010999034e-05 - syst_JES_Gjet_Purity: 6.842815995626361e-06 - syst_JES_Gjet_Stat1: 2.529317299193599e-07 - syst_JES_Gjet_Stat10: 2.25745980030653e-06 - syst_JES_Gjet_Stat11: 2.2935467621132125e-06 - syst_JES_Gjet_Stat12: 2.350603539519159e-06 - syst_JES_Gjet_Stat13: 1.3761814124598544e-05 - syst_JES_Gjet_Stat14: 3.789342522127025e-05 - syst_JES_Gjet_Stat15: 6.327871897407532e-05 - syst_JES_Gjet_Stat2: 3.7089946077070535e-07 - syst_JES_Gjet_Stat3: 4.793858675430472e-07 - syst_JES_Gjet_Stat4: 8.357785038513494e-07 - syst_JES_Gjet_Stat5: 8.10810711572066e-07 - syst_JES_Gjet_Stat6: 1.3465724887654583e-06 - syst_JES_Gjet_Stat7: 1.029911272877426e-06 - syst_JES_Gjet_Stat8: 4.187059388162532e-07 - syst_JES_Gjet_Stat9: 1.0278803274214368e-06 - syst_JES_Gjet_Veto: 6.358127633195169e-05 - syst_JES_Gjet_dPhi: 5.298765398656559e-06 - syst_JES_LArESZee: 0.00010039265361569042 - syst_JES_LArEsmear: 9.225361388585273e-06 - syst_JES_LAr_JVT: 1.1987095676184454e-05 - syst_JES_MJB_Alpha: 1.9883958358435577e-06 - syst_JES_MJB_Asym: 3.1134397376535164e-05 - syst_JES_MJB_Beta: 2.0501699319812493e-06 - syst_JES_MJB_Fragmentation: 8.356459118550152e-06 - syst_JES_MJB_Stat1: 3.4954093823184716e-09 - syst_JES_MJB_Stat10: 4.915523649622694e-07 - syst_JES_MJB_Stat11: 7.294957899124573e-07 - syst_JES_MJB_Stat12: 1.2871628131281606e-06 - syst_JES_MJB_Stat13: 2.023441622582673e-06 - syst_JES_MJB_Stat14: 5.948704291692435e-06 - syst_JES_MJB_Stat15: 4.0949807081352654e-07 - syst_JES_MJB_Stat16: 1.530501470107102e-05 - syst_JES_MJB_Stat2: 2.669736129283192e-08 - syst_JES_MJB_Stat3: 7.58632737231923e-08 - syst_JES_MJB_Stat4: 3.6929543728565077e-08 - syst_JES_MJB_Stat5: 5.148673299987095e-08 - syst_JES_MJB_Stat6: 7.776296290651482e-08 - syst_JES_MJB_Stat7: 1.1968694749219732e-07 - syst_JES_MJB_Stat8: 1.5770927390296363e-07 - syst_JES_MJB_Stat9: 2.8705084479931424e-07 - syst_JES_MJB_Threshold: 1.2169363366667955e-05 - syst_JES_Pileup_MuOffset: 1.950503204303956e-05 - syst_JES_Pileup_NPVOffset: 1.7115328655915435e-05 - syst_JES_Pileup_Pt_term: 7.044103491573644e-06 - syst_JES_Pileup_Rho_topology: 2.1515010457817585e-05 - syst_JES_PunchThrough_MC15: 3.23602812101502e-05 - syst_JES_SingleParticle_HighPt: 3.6826046869030077e-07 - syst_JES_Zjet_MC: 2.7011480892390924e-05 - syst_JES_Zjet_MuScale: 2.439480426238341e-06 - syst_JES_Zjet_MuSmearID: 5.391505912080594e-07 - syst_JES_Zjet_MuSmearMS: 6.235588564842937e-06 - syst_JES_Zjet_OOC: 1.711722159113447e-05 - syst_JES_Zjet_Stat1: 2.7446225150282507e-06 - syst_JES_Zjet_Stat10: 1.4335884372789843e-06 - syst_JES_Zjet_Stat11: 1.8026788399490355e-06 - syst_JES_Zjet_Stat12: 3.53836628968794e-06 - syst_JES_Zjet_Stat13: 6.381594060264253e-06 - syst_JES_Zjet_Stat2: 1.0433914929210416e-07 - syst_JES_Zjet_Stat3: 1.0365107078559295e-06 - syst_JES_Zjet_Stat4: 1.2047608590504591e-06 - syst_JES_Zjet_Stat5: 1.2196556973178947e-06 - syst_JES_Zjet_Stat6: 1.2408779311439138e-06 - syst_JES_Zjet_Stat7: 1.291685707709116e-06 - syst_JES_Zjet_Stat8: 7.849028267881317e-07 - syst_JES_Zjet_Stat9: 1.108385713549214e-06 - syst_JES_Zjet_Veto: 3.1613444924588654e-06 - syst_JES_Zjet_dPhi: 3.010277229758083e-06 + syst_Unfolding_bias: 7.52600000e-10 + syst_cleaning: 4.94154095e-05 + syst_lumi: 9.49900000e-05 +- stat: 8.15200000e-05 + syst_JER_CROSS_CALIB_FORWARD: 1.75400000e-22 + syst_JER_NOISE_FORWARD: 1.28610000e-22 + syst_JER_NP0: 2.45923423e-06 + syst_JER_NP1: 1.11014456e-06 + syst_JER_NP2: 3.06709647e-06 + syst_JER_NP3: 2.47698735e-08 + syst_JER_NP4: 5.82077372e-07 + syst_JER_NP5: 1.22841724e-07 + syst_JER_NP6: 7.54280351e-07 + syst_JER_NP7: 7.80635299e-08 + syst_JER_NP8: 7.26596000e-07 + syst_JES_EtaIntercalibration_Modelling: 5.45198423e-05 + syst_JES_EtaIntercalibration_NonClosure: 3.91806377e-12 + syst_JES_EtaIntercalibration_Stat0: 5.80676089e-09 + syst_JES_EtaIntercalibration_Stat1: 5.80676089e-09 + syst_JES_EtaIntercalibration_Stat10: 2.04280780e-09 + syst_JES_EtaIntercalibration_Stat100: 1.09318387e-08 + syst_JES_EtaIntercalibration_Stat101: 9.78768107e-20 + syst_JES_EtaIntercalibration_Stat102: 1.64387000e-20 + syst_JES_EtaIntercalibration_Stat103: 3.77240666e-09 + syst_JES_EtaIntercalibration_Stat104: 4.80324992e-20 + syst_JES_EtaIntercalibration_Stat105: 9.26569213e-20 + syst_JES_EtaIntercalibration_Stat106: 1.47339314e-20 + syst_JES_EtaIntercalibration_Stat107: 3.55590031e-09 + syst_JES_EtaIntercalibration_Stat108: 3.59140735e-09 + syst_JES_EtaIntercalibration_Stat109: 2.29278154e-16 + syst_JES_EtaIntercalibration_Stat11: 2.38070384e-09 + syst_JES_EtaIntercalibration_Stat110: 2.29201762e-16 + syst_JES_EtaIntercalibration_Stat111: 1.82702660e-19 + syst_JES_EtaIntercalibration_Stat112: 6.44266264e-19 + syst_JES_EtaIntercalibration_Stat113: 2.93548445e-13 + syst_JES_EtaIntercalibration_Stat114: 3.08400915e-09 + syst_JES_EtaIntercalibration_Stat115: 4.52756147e-09 + syst_JES_EtaIntercalibration_Stat116: 3.29444605e-09 + syst_JES_EtaIntercalibration_Stat117: 3.78933451e-09 + syst_JES_EtaIntercalibration_Stat118: 9.84164929e-09 + syst_JES_EtaIntercalibration_Stat119: 1.31982272e-08 + syst_JES_EtaIntercalibration_Stat12: 3.47795802e-09 + syst_JES_EtaIntercalibration_Stat120: 2.96451425e-09 + syst_JES_EtaIntercalibration_Stat121: 1.76517653e-17 + syst_JES_EtaIntercalibration_Stat122: 3.66335480e-16 + syst_JES_EtaIntercalibration_Stat123: 3.22608401e-19 + syst_JES_EtaIntercalibration_Stat124: 3.11322256e-19 + syst_JES_EtaIntercalibration_Stat125: 1.19149963e-18 + syst_JES_EtaIntercalibration_Stat126: 2.43266536e-09 + syst_JES_EtaIntercalibration_Stat127: 3.97505660e-20 + syst_JES_EtaIntercalibration_Stat128: 5.81969064e-09 + syst_JES_EtaIntercalibration_Stat129: 4.71810636e-09 + syst_JES_EtaIntercalibration_Stat13: 5.80676089e-09 + syst_JES_EtaIntercalibration_Stat130: 1.29635913e-17 + syst_JES_EtaIntercalibration_Stat131: 3.02540128e-13 + syst_JES_EtaIntercalibration_Stat132: 1.61250819e-14 + syst_JES_EtaIntercalibration_Stat133: 6.50728244e-09 + syst_JES_EtaIntercalibration_Stat134: 2.54268654e-09 + syst_JES_EtaIntercalibration_Stat135: 2.14187299e-08 + syst_JES_EtaIntercalibration_Stat136: 3.37629233e-09 + syst_JES_EtaIntercalibration_Stat137: 7.87293363e-09 + syst_JES_EtaIntercalibration_Stat138: 3.09592850e-09 + syst_JES_EtaIntercalibration_Stat139: 6.53985099e-09 + syst_JES_EtaIntercalibration_Stat14: 5.80676089e-09 + syst_JES_EtaIntercalibration_Stat140: 1.65158797e-09 + syst_JES_EtaIntercalibration_Stat141: 3.80295007e-14 + syst_JES_EtaIntercalibration_Stat142: 3.31263369e-09 + syst_JES_EtaIntercalibration_Stat143: 5.21090251e-18 + syst_JES_EtaIntercalibration_Stat144: 6.80839843e-17 + syst_JES_EtaIntercalibration_Stat145: 7.00181539e-11 + syst_JES_EtaIntercalibration_Stat146: 3.27357527e-10 + syst_JES_EtaIntercalibration_Stat147: 8.41222027e-18 + syst_JES_EtaIntercalibration_Stat148: 9.31776697e-16 + syst_JES_EtaIntercalibration_Stat149: 6.46835812e-09 + syst_JES_EtaIntercalibration_Stat15: 3.55590031e-09 + syst_JES_EtaIntercalibration_Stat150: 1.60835359e-14 + syst_JES_EtaIntercalibration_Stat151: 2.84550816e-08 + syst_JES_EtaIntercalibration_Stat152: 2.79643725e-09 + syst_JES_EtaIntercalibration_Stat153: 1.22421131e-08 + syst_JES_EtaIntercalibration_Stat154: 4.24439634e-09 + syst_JES_EtaIntercalibration_Stat155: 6.56274031e-09 + syst_JES_EtaIntercalibration_Stat156: 1.46279766e-08 + syst_JES_EtaIntercalibration_Stat157: 1.11795552e-08 + syst_JES_EtaIntercalibration_Stat158: 4.51478244e-09 + syst_JES_EtaIntercalibration_Stat159: 3.77582310e-14 + syst_JES_EtaIntercalibration_Stat16: 3.55590031e-09 + syst_JES_EtaIntercalibration_Stat160: 6.93969500e-09 + syst_JES_EtaIntercalibration_Stat161: 1.08426382e-10 + syst_JES_EtaIntercalibration_Stat162: 3.70572270e-09 + syst_JES_EtaIntercalibration_Stat163: 2.66389414e-09 + syst_JES_EtaIntercalibration_Stat164: 3.23893365e-13 + syst_JES_EtaIntercalibration_Stat165: 7.09403892e-16 + syst_JES_EtaIntercalibration_Stat166: 3.14627011e-09 + syst_JES_EtaIntercalibration_Stat167: 4.10453580e-13 + syst_JES_EtaIntercalibration_Stat168: 3.66675184e-09 + syst_JES_EtaIntercalibration_Stat169: 1.72396588e-08 + syst_JES_EtaIntercalibration_Stat17: 3.55590031e-09 + syst_JES_EtaIntercalibration_Stat170: 1.51816852e-08 + syst_JES_EtaIntercalibration_Stat171: 3.48632156e-08 + syst_JES_EtaIntercalibration_Stat172: 3.55292144e-08 + syst_JES_EtaIntercalibration_Stat173: 2.75162402e-08 + syst_JES_EtaIntercalibration_Stat174: 5.03434571e-08 + syst_JES_EtaIntercalibration_Stat175: 3.19333724e-08 + syst_JES_EtaIntercalibration_Stat176: 2.55149707e-08 + syst_JES_EtaIntercalibration_Stat177: 2.05242867e-09 + syst_JES_EtaIntercalibration_Stat178: 3.59573716e-09 + syst_JES_EtaIntercalibration_Stat179: 3.57322095e-09 + syst_JES_EtaIntercalibration_Stat18: 3.55590031e-09 + syst_JES_EtaIntercalibration_Stat180: 7.16046142e-16 + syst_JES_EtaIntercalibration_Stat181: 7.44791420e-18 + syst_JES_EtaIntercalibration_Stat182: 3.48476734e-09 + syst_JES_EtaIntercalibration_Stat183: 3.05591308e-09 + syst_JES_EtaIntercalibration_Stat184: 3.05479098e-09 + syst_JES_EtaIntercalibration_Stat185: 5.71925694e-09 + syst_JES_EtaIntercalibration_Stat186: 2.96129140e-08 + syst_JES_EtaIntercalibration_Stat187: 1.57192176e-07 + syst_JES_EtaIntercalibration_Stat188: 2.11780612e-07 + syst_JES_EtaIntercalibration_Stat189: 1.89774992e-07 + syst_JES_EtaIntercalibration_Stat19: 5.80676089e-09 + syst_JES_EtaIntercalibration_Stat190: 1.93526917e-07 + syst_JES_EtaIntercalibration_Stat191: 2.17615366e-07 + syst_JES_EtaIntercalibration_Stat192: 1.36754028e-07 + syst_JES_EtaIntercalibration_Stat193: 4.83207355e-08 + syst_JES_EtaIntercalibration_Stat194: 1.14260705e-08 + syst_JES_EtaIntercalibration_Stat195: 6.35512342e-12 + syst_JES_EtaIntercalibration_Stat196: 3.41706666e-13 + syst_JES_EtaIntercalibration_Stat197: 7.28115545e-09 + syst_JES_EtaIntercalibration_Stat198: 4.37845245e-09 + syst_JES_EtaIntercalibration_Stat199: 3.93945836e-09 + syst_JES_EtaIntercalibration_Stat2: 5.80676089e-09 + syst_JES_EtaIntercalibration_Stat20: 5.80676089e-09 + syst_JES_EtaIntercalibration_Stat200: 1.27544703e-08 + syst_JES_EtaIntercalibration_Stat201: 5.65892454e-08 + syst_JES_EtaIntercalibration_Stat202: 2.29231166e-07 + syst_JES_EtaIntercalibration_Stat203: 4.42953911e-07 + syst_JES_EtaIntercalibration_Stat204: 4.02030775e-07 + syst_JES_EtaIntercalibration_Stat205: 3.65192335e-07 + syst_JES_EtaIntercalibration_Stat206: 4.60787269e-07 + syst_JES_EtaIntercalibration_Stat207: 2.43340641e-07 + syst_JES_EtaIntercalibration_Stat208: 9.78625342e-08 + syst_JES_EtaIntercalibration_Stat209: 1.65662063e-08 + syst_JES_EtaIntercalibration_Stat21: 5.80676089e-09 + syst_JES_EtaIntercalibration_Stat210: 2.61664594e-09 + syst_JES_EtaIntercalibration_Stat211: 3.89838818e-11 + syst_JES_EtaIntercalibration_Stat212: 2.23261349e-09 + syst_JES_EtaIntercalibration_Stat213: 1.15284862e-08 + syst_JES_EtaIntercalibration_Stat214: 6.68454701e-08 + syst_JES_EtaIntercalibration_Stat215: 3.15817226e-07 + syst_JES_EtaIntercalibration_Stat216: 5.35303577e-07 + syst_JES_EtaIntercalibration_Stat217: 4.72997936e-07 + syst_JES_EtaIntercalibration_Stat218: 4.33547725e-07 + syst_JES_EtaIntercalibration_Stat219: 5.20021199e-07 + syst_JES_EtaIntercalibration_Stat22: 5.80676089e-09 + syst_JES_EtaIntercalibration_Stat220: 2.80102673e-07 + syst_JES_EtaIntercalibration_Stat221: 8.50533197e-08 + syst_JES_EtaIntercalibration_Stat222: 1.66869890e-08 + syst_JES_EtaIntercalibration_Stat223: 3.64973476e-09 + syst_JES_EtaIntercalibration_Stat224: 1.26331948e-09 + syst_JES_EtaIntercalibration_Stat225: 3.38407018e-08 + syst_JES_EtaIntercalibration_Stat226: 2.44711274e-07 + syst_JES_EtaIntercalibration_Stat227: 6.49846526e-07 + syst_JES_EtaIntercalibration_Stat228: 1.18941328e-06 + syst_JES_EtaIntercalibration_Stat229: 1.17370328e-06 + syst_JES_EtaIntercalibration_Stat23: 5.78203863e-09 + syst_JES_EtaIntercalibration_Stat230: 1.21850057e-06 + syst_JES_EtaIntercalibration_Stat231: 1.52637307e-06 + syst_JES_EtaIntercalibration_Stat232: 7.28617134e-07 + syst_JES_EtaIntercalibration_Stat233: 2.28452971e-07 + syst_JES_EtaIntercalibration_Stat234: 3.03449229e-08 + syst_JES_EtaIntercalibration_Stat235: 9.31237117e-09 + syst_JES_EtaIntercalibration_Stat236: 1.27097863e-08 + syst_JES_EtaIntercalibration_Stat237: 6.47850035e-08 + syst_JES_EtaIntercalibration_Stat238: 1.61551613e-07 + syst_JES_EtaIntercalibration_Stat239: 2.11926939e-07 + syst_JES_EtaIntercalibration_Stat24: 3.55590031e-09 + syst_JES_EtaIntercalibration_Stat240: 1.85157143e-07 + syst_JES_EtaIntercalibration_Stat241: 1.90931735e-07 + syst_JES_EtaIntercalibration_Stat242: 2.03857597e-07 + syst_JES_EtaIntercalibration_Stat243: 1.44018397e-07 + syst_JES_EtaIntercalibration_Stat244: 5.43334611e-08 + syst_JES_EtaIntercalibration_Stat245: 1.63898901e-08 + syst_JES_EtaIntercalibration_Stat25: 4.59959267e-20 + syst_JES_EtaIntercalibration_Stat26: 6.49055412e-20 + syst_JES_EtaIntercalibration_Stat27: 6.93247604e-20 + syst_JES_EtaIntercalibration_Stat28: 6.47926576e-20 + syst_JES_EtaIntercalibration_Stat29: 2.94101021e-13 + syst_JES_EtaIntercalibration_Stat3: 5.80676089e-09 + syst_JES_EtaIntercalibration_Stat30: 6.74486827e-20 + syst_JES_EtaIntercalibration_Stat31: 2.68381273e-09 + syst_JES_EtaIntercalibration_Stat32: 3.19563374e-09 + syst_JES_EtaIntercalibration_Stat33: 2.38070384e-09 + syst_JES_EtaIntercalibration_Stat34: 3.19563374e-09 + syst_JES_EtaIntercalibration_Stat35: 4.27904118e-20 + syst_JES_EtaIntercalibration_Stat36: 4.90229645e-09 + syst_JES_EtaIntercalibration_Stat37: 3.63817272e-09 + syst_JES_EtaIntercalibration_Stat38: 6.67610081e-20 + syst_JES_EtaIntercalibration_Stat39: 6.67828921e-20 + syst_JES_EtaIntercalibration_Stat4: 5.80676089e-09 + syst_JES_EtaIntercalibration_Stat40: 3.55503428e-09 + syst_JES_EtaIntercalibration_Stat41: 5.80676089e-09 + syst_JES_EtaIntercalibration_Stat42: 5.80676089e-09 + syst_JES_EtaIntercalibration_Stat43: 5.80676089e-09 + syst_JES_EtaIntercalibration_Stat44: 5.80676089e-09 + syst_JES_EtaIntercalibration_Stat45: 5.80676089e-09 + syst_JES_EtaIntercalibration_Stat46: 6.72129859e-20 + syst_JES_EtaIntercalibration_Stat47: 3.80812723e-20 + syst_JES_EtaIntercalibration_Stat48: 4.83615891e-20 + syst_JES_EtaIntercalibration_Stat49: 3.55157018e-09 + syst_JES_EtaIntercalibration_Stat5: 5.80676089e-09 + syst_JES_EtaIntercalibration_Stat50: 1.33811728e-19 + syst_JES_EtaIntercalibration_Stat51: 2.94066889e-13 + syst_JES_EtaIntercalibration_Stat52: 2.94881650e-13 + syst_JES_EtaIntercalibration_Stat53: 2.68294670e-09 + syst_JES_EtaIntercalibration_Stat54: 3.19563374e-09 + syst_JES_EtaIntercalibration_Stat55: 3.19563374e-09 + syst_JES_EtaIntercalibration_Stat56: 3.19563374e-09 + syst_JES_EtaIntercalibration_Stat57: 8.85869539e-20 + syst_JES_EtaIntercalibration_Stat58: 1.50704401e-20 + syst_JES_EtaIntercalibration_Stat59: 2.31055578e-09 + syst_JES_EtaIntercalibration_Stat6: 3.86247330e-09 + syst_JES_EtaIntercalibration_Stat60: 5.72668614e-09 + syst_JES_EtaIntercalibration_Stat61: 3.93432424e-20 + syst_JES_EtaIntercalibration_Stat62: 3.54810608e-09 + syst_JES_EtaIntercalibration_Stat63: 6.47078842e-20 + syst_JES_EtaIntercalibration_Stat64: 5.80676089e-09 + syst_JES_EtaIntercalibration_Stat65: 5.80676089e-09 + syst_JES_EtaIntercalibration_Stat66: 5.80676089e-09 + syst_JES_EtaIntercalibration_Stat67: 5.80676089e-09 + syst_JES_EtaIntercalibration_Stat68: 1.42447278e-23 + syst_JES_EtaIntercalibration_Stat69: 3.51173301e-09 + syst_JES_EtaIntercalibration_Stat7: 3.55590031e-09 + syst_JES_EtaIntercalibration_Stat70: 2.81804666e-09 + syst_JES_EtaIntercalibration_Stat71: 4.58214041e-10 + syst_JES_EtaIntercalibration_Stat72: 2.95661073e-13 + syst_JES_EtaIntercalibration_Stat73: 2.95661073e-13 + syst_JES_EtaIntercalibration_Stat74: 2.86567806e-09 + syst_JES_EtaIntercalibration_Stat75: 3.57148877e-09 + syst_JES_EtaIntercalibration_Stat76: 3.05533762e-09 + syst_JES_EtaIntercalibration_Stat77: 1.99012638e-09 + syst_JES_EtaIntercalibration_Stat78: 1.22255694e-08 + syst_JES_EtaIntercalibration_Stat79: 1.51467843e-08 + syst_JES_EtaIntercalibration_Stat8: 4.24104625e-20 + syst_JES_EtaIntercalibration_Stat80: 7.94924718e-10 + syst_JES_EtaIntercalibration_Stat81: 2.09087433e-20 + syst_JES_EtaIntercalibration_Stat82: 3.43918256e-20 + syst_JES_EtaIntercalibration_Stat83: 7.39986074e-20 + syst_JES_EtaIntercalibration_Stat84: 3.96635520e-20 + syst_JES_EtaIntercalibration_Stat85: 3.97305506e-20 + syst_JES_EtaIntercalibration_Stat86: 3.55590031e-09 + syst_JES_EtaIntercalibration_Stat87: 3.55590031e-09 + syst_JES_EtaIntercalibration_Stat88: 3.98795970e-20 + syst_JES_EtaIntercalibration_Stat89: 3.45743322e-09 + syst_JES_EtaIntercalibration_Stat9: 3.47795802e-09 + syst_JES_EtaIntercalibration_Stat90: 1.51868725e-19 + syst_JES_EtaIntercalibration_Stat91: 1.53628717e-19 + syst_JES_EtaIntercalibration_Stat92: 2.04692776e-19 + syst_JES_EtaIntercalibration_Stat93: 2.95747676e-13 + syst_JES_EtaIntercalibration_Stat94: 2.93981399e-13 + syst_JES_EtaIntercalibration_Stat95: 2.92543381e-09 + syst_JES_EtaIntercalibration_Stat96: 3.05533762e-09 + syst_JES_EtaIntercalibration_Stat97: 6.59701165e-09 + syst_JES_EtaIntercalibration_Stat98: 8.67460297e-09 + syst_JES_EtaIntercalibration_Stat99: 8.97548728e-10 + syst_JES_EtaIntercalibration_TotalStat_MJB: 3.13432672e-05 + syst_JES_Flavour_Comp: 5.43587693e-05 + syst_JES_Flavour_Response: 1.66602941e-05 + syst_JES_Gjet_Generator: 7.04345597e-05 + syst_JES_Gjet_OOC: 5.82247370e-05 + syst_JES_Gjet_Purity: 6.84281600e-06 + syst_JES_Gjet_Stat1: 2.52931730e-07 + syst_JES_Gjet_Stat10: 2.25745980e-06 + syst_JES_Gjet_Stat11: 2.29354676e-06 + syst_JES_Gjet_Stat12: 2.35060354e-06 + syst_JES_Gjet_Stat13: 1.37618141e-05 + syst_JES_Gjet_Stat14: 3.78934252e-05 + syst_JES_Gjet_Stat15: 6.32787190e-05 + syst_JES_Gjet_Stat2: 3.70899461e-07 + syst_JES_Gjet_Stat3: 4.79385868e-07 + syst_JES_Gjet_Stat4: 8.35778504e-07 + syst_JES_Gjet_Stat5: 8.10810712e-07 + syst_JES_Gjet_Stat6: 1.34657249e-06 + syst_JES_Gjet_Stat7: 1.02991127e-06 + syst_JES_Gjet_Stat8: 4.18705939e-07 + syst_JES_Gjet_Stat9: 1.02788033e-06 + syst_JES_Gjet_Veto: 6.35812763e-05 + syst_JES_Gjet_dPhi: 5.29876540e-06 + syst_JES_LArESZee: 1.00392654e-04 + syst_JES_LArEsmear: 9.22536139e-06 + syst_JES_LAr_JVT: 1.19870957e-05 + syst_JES_MJB_Alpha: 1.98839584e-06 + syst_JES_MJB_Asym: 3.11343974e-05 + syst_JES_MJB_Beta: 2.05016993e-06 + syst_JES_MJB_Fragmentation: 8.35645912e-06 + syst_JES_MJB_Stat1: 3.49540938e-09 + syst_JES_MJB_Stat10: 4.91552365e-07 + syst_JES_MJB_Stat11: 7.29495790e-07 + syst_JES_MJB_Stat12: 1.28716281e-06 + syst_JES_MJB_Stat13: 2.02344162e-06 + syst_JES_MJB_Stat14: 5.94870429e-06 + syst_JES_MJB_Stat15: 4.09498071e-07 + syst_JES_MJB_Stat16: 1.53050147e-05 + syst_JES_MJB_Stat2: 2.66973613e-08 + syst_JES_MJB_Stat3: 7.58632737e-08 + syst_JES_MJB_Stat4: 3.69295437e-08 + syst_JES_MJB_Stat5: 5.14867330e-08 + syst_JES_MJB_Stat6: 7.77629629e-08 + syst_JES_MJB_Stat7: 1.19686947e-07 + syst_JES_MJB_Stat8: 1.57709274e-07 + syst_JES_MJB_Stat9: 2.87050845e-07 + syst_JES_MJB_Threshold: 1.21693634e-05 + syst_JES_Pileup_MuOffset: 1.95050320e-05 + syst_JES_Pileup_NPVOffset: 1.71153287e-05 + syst_JES_Pileup_Pt_term: 7.04410349e-06 + syst_JES_Pileup_Rho_topology: 2.15150105e-05 + syst_JES_PunchThrough_MC15: 3.23602812e-05 + syst_JES_SingleParticle_HighPt: 3.68260469e-07 + syst_JES_Zjet_MC: 2.70114809e-05 + syst_JES_Zjet_MuScale: 2.43948043e-06 + syst_JES_Zjet_MuSmearID: 5.39150591e-07 + syst_JES_Zjet_MuSmearMS: 6.23558856e-06 + syst_JES_Zjet_OOC: 1.71172216e-05 + syst_JES_Zjet_Stat1: 2.74462252e-06 + syst_JES_Zjet_Stat10: 1.43358844e-06 + syst_JES_Zjet_Stat11: 1.80267884e-06 + syst_JES_Zjet_Stat12: 3.53836629e-06 + syst_JES_Zjet_Stat13: 6.38159406e-06 + syst_JES_Zjet_Stat2: 1.04339149e-07 + syst_JES_Zjet_Stat3: 1.03651071e-06 + syst_JES_Zjet_Stat4: 1.20476086e-06 + syst_JES_Zjet_Stat5: 1.21965570e-06 + syst_JES_Zjet_Stat6: 1.24087793e-06 + syst_JES_Zjet_Stat7: 1.29168571e-06 + syst_JES_Zjet_Stat8: 7.84902827e-07 + syst_JES_Zjet_Stat9: 1.10838571e-06 + syst_JES_Zjet_Veto: 3.16134449e-06 + syst_JES_Zjet_dPhi: 3.01027723e-06 syst_PRW: 0.0 - syst_Unfolding_bias: 1.4137e-08 - syst_cleaning: 2.4872249596689076e-05 - syst_lumi: 4.808e-05 + syst_Unfolding_bias: 1.41370000e-08 + syst_cleaning: 2.48722496e-05 + syst_lumi: 4.80800000e-05 - stat: 5.56e-05 - syst_JER_CROSS_CALIB_FORWARD: 4.713e-23 - syst_JER_NOISE_FORWARD: 3.432e-23 - syst_JER_NP0: 1.4765035751734568e-06 - syst_JER_NP1: 6.070607609621956e-07 - syst_JER_NP2: 1.7866171246240757e-06 - syst_JER_NP3: 1.5637340526764773e-07 - syst_JER_NP4: 3.341681163725827e-07 - syst_JER_NP5: 2.633331729957318e-07 - syst_JER_NP6: 5.057755109730007e-07 - syst_JER_NP7: 1.673161080111535e-07 - syst_JER_NP8: 3.897858258069423e-07 - syst_JES_EtaIntercalibration_Modelling: 2.813442864179047e-05 - syst_JES_EtaIntercalibration_NonClosure: 3.1092448309356406e-13 - syst_JES_EtaIntercalibration_Stat0: 3.1197551185950475e-09 - syst_JES_EtaIntercalibration_Stat1: 3.1197551185950475e-09 - syst_JES_EtaIntercalibration_Stat10: 6.025713178330014e-10 - syst_JES_EtaIntercalibration_Stat100: 5.874250313609665e-09 - syst_JES_EtaIntercalibration_Stat101: 1.0483972876729507e-20 - syst_JES_EtaIntercalibration_Stat102: 2.096578285564362e-21 - syst_JES_EtaIntercalibration_Stat103: 2.0273654702602104e-09 - syst_JES_EtaIntercalibration_Stat104: 7.196528885511403e-21 - syst_JES_EtaIntercalibration_Stat105: 1.2257647740688535e-20 - syst_JES_EtaIntercalibration_Stat106: 1.93694767344784e-21 - syst_JES_EtaIntercalibration_Stat107: 1.910452040748472e-09 - syst_JES_EtaIntercalibration_Stat108: 1.9295045996317295e-09 - syst_JES_EtaIntercalibration_Stat109: 2.047611978981125e-17 - syst_JES_EtaIntercalibration_Stat11: 4.3604379080547e-10 - syst_JES_EtaIntercalibration_Stat110: 2.0478541859447708e-17 - syst_JES_EtaIntercalibration_Stat111: 1.86859809215358e-20 - syst_JES_EtaIntercalibration_Stat112: 5.568949811230122e-20 - syst_JES_EtaIntercalibration_Stat113: 2.300222760951643e-14 - syst_JES_EtaIntercalibration_Stat114: 1.6981566498706765e-09 - syst_JES_EtaIntercalibration_Stat115: 7.507657873797927e-10 - syst_JES_EtaIntercalibration_Stat116: 2.6500242654549413e-09 - syst_JES_EtaIntercalibration_Stat117: 7.73219614776423e-10 - syst_JES_EtaIntercalibration_Stat118: 2.1289288386416303e-09 - syst_JES_EtaIntercalibration_Stat119: 4.227936021265543e-09 - syst_JES_EtaIntercalibration_Stat12: 5.477610678936522e-10 - syst_JES_EtaIntercalibration_Stat120: 1.5940100376095503e-09 - syst_JES_EtaIntercalibration_Stat121: 1.7040441213478014e-18 - syst_JES_EtaIntercalibration_Stat122: 3.230177883539349e-17 - syst_JES_EtaIntercalibration_Stat123: 3.611996424070766e-20 - syst_JES_EtaIntercalibration_Stat124: 3.49259653660425e-20 - syst_JES_EtaIntercalibration_Stat125: 1.3681491475712726e-19 - syst_JES_EtaIntercalibration_Stat126: 1.3076983597147427e-09 - syst_JES_EtaIntercalibration_Stat127: 5.718365741188648e-21 - syst_JES_EtaIntercalibration_Stat128: 3.1272177262846293e-09 - syst_JES_EtaIntercalibration_Stat129: 2.534856353160071e-09 - syst_JES_EtaIntercalibration_Stat13: 3.1197551185950475e-09 - syst_JES_EtaIntercalibration_Stat130: 1.2331582086253168e-18 - syst_JES_EtaIntercalibration_Stat131: 2.3706443744264974e-14 - syst_JES_EtaIntercalibration_Stat132: 1.2375466783114418e-15 - syst_JES_EtaIntercalibration_Stat133: 2.106868470028445e-09 - syst_JES_EtaIntercalibration_Stat134: 2.572123922528988e-10 - syst_JES_EtaIntercalibration_Stat135: 9.451426492863392e-09 - syst_JES_EtaIntercalibration_Stat136: 8.609976991814164e-11 - syst_JES_EtaIntercalibration_Stat137: 4.23658815205749e-09 - syst_JES_EtaIntercalibration_Stat138: 1.355417710186004e-10 - syst_JES_EtaIntercalibration_Stat139: 4.53279326133456e-09 - syst_JES_EtaIntercalibration_Stat14: 3.1197551185950475e-09 - syst_JES_EtaIntercalibration_Stat140: 3.10106908662158e-09 - syst_JES_EtaIntercalibration_Stat141: 3.0002939855954115e-15 - syst_JES_EtaIntercalibration_Stat142: 1.7796821980104764e-09 - syst_JES_EtaIntercalibration_Stat143: 6.103769627656338e-19 - syst_JES_EtaIntercalibration_Stat144: 6.494645396786494e-18 - syst_JES_EtaIntercalibration_Stat145: 8.072222792851883e-12 - syst_JES_EtaIntercalibration_Stat146: 3.774138030151806e-11 - syst_JES_EtaIntercalibration_Stat147: 8.268528870607817e-19 - syst_JES_EtaIntercalibration_Stat148: 7.576386386002234e-17 - syst_JES_EtaIntercalibration_Stat149: 3.4805870194551955e-09 - syst_JES_EtaIntercalibration_Stat15: 1.9104520407465575e-09 - syst_JES_EtaIntercalibration_Stat150: 1.2342601384974036e-15 - syst_JES_EtaIntercalibration_Stat151: 8.962247988088703e-09 - syst_JES_EtaIntercalibration_Stat152: 3.8382572369542935e-10 - syst_JES_EtaIntercalibration_Stat153: 7.647868584233798e-09 - syst_JES_EtaIntercalibration_Stat154: 4.225342820809805e-10 - syst_JES_EtaIntercalibration_Stat155: 3.3935205257085185e-09 - syst_JES_EtaIntercalibration_Stat156: 6.3179818233356765e-09 - syst_JES_EtaIntercalibration_Stat157: 5.723374944034332e-09 - syst_JES_EtaIntercalibration_Stat158: 4.250316811721216e-09 - syst_JES_EtaIntercalibration_Stat159: 2.981042634297604e-15 - syst_JES_EtaIntercalibration_Stat16: 1.9104520407465575e-09 - syst_JES_EtaIntercalibration_Stat160: 3.728834234717333e-09 - syst_JES_EtaIntercalibration_Stat161: 1.249674678191522e-11 - syst_JES_EtaIntercalibration_Stat162: 1.9909924029887705e-09 - syst_JES_EtaIntercalibration_Stat163: 1.4315399922065793e-09 - syst_JES_EtaIntercalibration_Stat164: 2.599806739980465e-14 - syst_JES_EtaIntercalibration_Stat165: 6.006982626077754e-17 - syst_JES_EtaIntercalibration_Stat166: 1.6904815716778938e-09 - syst_JES_EtaIntercalibration_Stat167: 3.221843275207532e-14 - syst_JES_EtaIntercalibration_Stat168: 1.970207819151575e-09 - syst_JES_EtaIntercalibration_Stat169: 6.971207584593935e-09 - syst_JES_EtaIntercalibration_Stat17: 1.910452040750422e-09 - syst_JES_EtaIntercalibration_Stat170: 9.325382910106533e-09 - syst_JES_EtaIntercalibration_Stat171: 1.9559077604784947e-08 - syst_JES_EtaIntercalibration_Stat172: 2.196346284172876e-08 - syst_JES_EtaIntercalibration_Stat173: 1.7272148910891196e-08 - syst_JES_EtaIntercalibration_Stat174: 2.8744021987188917e-08 - syst_JES_EtaIntercalibration_Stat175: 1.740658496087041e-08 - syst_JES_EtaIntercalibration_Stat176: 1.0918734373543483e-08 - syst_JES_EtaIntercalibration_Stat177: 7.022232244498539e-10 - syst_JES_EtaIntercalibration_Stat178: 1.932102647446111e-09 - syst_JES_EtaIntercalibration_Stat179: 1.9199783293872904e-09 - syst_JES_EtaIntercalibration_Stat18: 1.9104520407465575e-09 - syst_JES_EtaIntercalibration_Stat180: 5.97560638659375e-17 - syst_JES_EtaIntercalibration_Stat181: 7.47709815035218e-19 - syst_JES_EtaIntercalibration_Stat182: 1.8732034020936487e-09 - syst_JES_EtaIntercalibration_Stat183: 1.6423183636250313e-09 - syst_JES_EtaIntercalibration_Stat184: 1.5854264410561595e-09 - syst_JES_EtaIntercalibration_Stat185: 1.641551324205247e-09 - syst_JES_EtaIntercalibration_Stat186: 1.1189761123455675e-08 - syst_JES_EtaIntercalibration_Stat187: 7.594740416893786e-08 - syst_JES_EtaIntercalibration_Stat188: 1.1747924199619266e-07 - syst_JES_EtaIntercalibration_Stat189: 1.1011175448152663e-07 - syst_JES_EtaIntercalibration_Stat19: 3.1197551185950475e-09 - syst_JES_EtaIntercalibration_Stat190: 1.1225557625347615e-07 - syst_JES_EtaIntercalibration_Stat191: 1.168442399093768e-07 - syst_JES_EtaIntercalibration_Stat192: 6.995794218671673e-08 - syst_JES_EtaIntercalibration_Stat193: 1.93044522066802e-08 - syst_JES_EtaIntercalibration_Stat194: 7.2889987383384826e-09 - syst_JES_EtaIntercalibration_Stat195: 5.541382780498023e-13 - syst_JES_EtaIntercalibration_Stat196: 2.7410609145842942e-14 - syst_JES_EtaIntercalibration_Stat197: 3.912552204124566e-09 - syst_JES_EtaIntercalibration_Stat198: 2.3415791366333852e-09 - syst_JES_EtaIntercalibration_Stat199: 2.8028597449747644e-09 - syst_JES_EtaIntercalibration_Stat2: 3.1197551185950475e-09 - syst_JES_EtaIntercalibration_Stat20: 3.1197551185950475e-09 - syst_JES_EtaIntercalibration_Stat200: 5.301366427629767e-09 - syst_JES_EtaIntercalibration_Stat201: 2.7764326031798432e-08 - syst_JES_EtaIntercalibration_Stat202: 1.1688182450663576e-07 - syst_JES_EtaIntercalibration_Stat203: 2.438915896458916e-07 - syst_JES_EtaIntercalibration_Stat204: 2.359030468222062e-07 - syst_JES_EtaIntercalibration_Stat205: 2.012379685844597e-07 - syst_JES_EtaIntercalibration_Stat206: 2.499075228959705e-07 - syst_JES_EtaIntercalibration_Stat207: 1.3227036733524255e-07 - syst_JES_EtaIntercalibration_Stat208: 3.612563415360345e-08 - syst_JES_EtaIntercalibration_Stat209: 7.451422079039679e-09 - syst_JES_EtaIntercalibration_Stat21: 3.1197551185950475e-09 - syst_JES_EtaIntercalibration_Stat210: 1.4461499059228783e-09 - syst_JES_EtaIntercalibration_Stat211: 3.3935565202523152e-12 - syst_JES_EtaIntercalibration_Stat212: 1.2609329879099094e-09 - syst_JES_EtaIntercalibration_Stat213: 4.826004014710306e-09 - syst_JES_EtaIntercalibration_Stat214: 2.831555182227604e-08 - syst_JES_EtaIntercalibration_Stat215: 1.327594135080447e-07 - syst_JES_EtaIntercalibration_Stat216: 2.977162575339143e-07 - syst_JES_EtaIntercalibration_Stat217: 2.5370941547368714e-07 - syst_JES_EtaIntercalibration_Stat218: 2.444887727483616e-07 - syst_JES_EtaIntercalibration_Stat219: 2.858127184014035e-07 - syst_JES_EtaIntercalibration_Stat22: 3.1197551185950475e-09 - syst_JES_EtaIntercalibration_Stat220: 1.5421171834526716e-07 - syst_JES_EtaIntercalibration_Stat221: 3.556542527511796e-08 - syst_JES_EtaIntercalibration_Stat222: 7.466298212635228e-09 - syst_JES_EtaIntercalibration_Stat223: 8.188944835878917e-10 - syst_JES_EtaIntercalibration_Stat224: 9.940100603112627e-10 - syst_JES_EtaIntercalibration_Stat225: 1.4270337487249557e-08 - syst_JES_EtaIntercalibration_Stat226: 1.2015295782876092e-07 - syst_JES_EtaIntercalibration_Stat227: 3.349451746181753e-07 - syst_JES_EtaIntercalibration_Stat228: 6.789763379529509e-07 - syst_JES_EtaIntercalibration_Stat229: 6.791184138278096e-07 - syst_JES_EtaIntercalibration_Stat23: 3.1063346165537284e-09 - syst_JES_EtaIntercalibration_Stat230: 7.101639722627444e-07 - syst_JES_EtaIntercalibration_Stat231: 9.017286440498606e-07 - syst_JES_EtaIntercalibration_Stat232: 3.96470438746699e-07 - syst_JES_EtaIntercalibration_Stat233: 1.0466601776603521e-07 - syst_JES_EtaIntercalibration_Stat234: 1.0049412557458274e-08 - syst_JES_EtaIntercalibration_Stat235: 4.098898236113652e-09 - syst_JES_EtaIntercalibration_Stat236: 5.337221749187493e-09 - syst_JES_EtaIntercalibration_Stat237: 2.632035856518676e-08 - syst_JES_EtaIntercalibration_Stat238: 8.414015138446091e-08 - syst_JES_EtaIntercalibration_Stat239: 1.1965935358341195e-07 - syst_JES_EtaIntercalibration_Stat24: 1.910452040746558e-09 - syst_JES_EtaIntercalibration_Stat240: 9.796823158555022e-08 - syst_JES_EtaIntercalibration_Stat241: 1.123448837286327e-07 - syst_JES_EtaIntercalibration_Stat242: 1.1222194382116182e-07 - syst_JES_EtaIntercalibration_Stat243: 7.322466865749548e-08 - syst_JES_EtaIntercalibration_Stat244: 2.4694890159707128e-08 - syst_JES_EtaIntercalibration_Stat245: 8.534278511245107e-09 - syst_JES_EtaIntercalibration_Stat25: 5.8215653178505174e-21 - syst_JES_EtaIntercalibration_Stat26: 9.32539371822981e-21 - syst_JES_EtaIntercalibration_Stat27: 1.0060717071859242e-20 - syst_JES_EtaIntercalibration_Stat28: 9.300729366560452e-21 - syst_JES_EtaIntercalibration_Stat29: 2.304010395874984e-14 - syst_JES_EtaIntercalibration_Stat3: 3.1204622654344016e-09 - syst_JES_EtaIntercalibration_Stat30: 9.745620593374236e-21 - syst_JES_EtaIntercalibration_Stat31: 6.422444394466074e-12 - syst_JES_EtaIntercalibration_Stat32: 5.151985127113573e-10 - syst_JES_EtaIntercalibration_Stat33: 4.360437908054748e-10 - syst_JES_EtaIntercalibration_Stat34: 5.151985127113501e-10 - syst_JES_EtaIntercalibration_Stat35: 6.215730357333321e-21 - syst_JES_EtaIntercalibration_Stat36: 2.634719529665349e-09 - syst_JES_EtaIntercalibration_Stat37: 1.954619336339565e-09 - syst_JES_EtaIntercalibration_Stat38: 9.634083402171688e-21 - syst_JES_EtaIntercalibration_Stat39: 9.637036214521559e-21 - syst_JES_EtaIntercalibration_Stat4: 3.1197551185950475e-09 - syst_JES_EtaIntercalibration_Stat40: 1.91045204074659e-09 - syst_JES_EtaIntercalibration_Stat41: 3.1204622654344016e-09 - syst_JES_EtaIntercalibration_Stat42: 3.1197551185950475e-09 - syst_JES_EtaIntercalibration_Stat43: 3.1197551185950475e-09 - syst_JES_EtaIntercalibration_Stat44: 3.1197551185950475e-09 - syst_JES_EtaIntercalibration_Stat45: 3.1197551185950475e-09 - syst_JES_EtaIntercalibration_Stat46: 9.715908243700123e-21 - syst_JES_EtaIntercalibration_Stat47: 5.4472687422230234e-21 - syst_JES_EtaIntercalibration_Stat48: 5.506888844892368e-21 - syst_JES_EtaIntercalibration_Stat49: 1.907853964537667e-09 - syst_JES_EtaIntercalibration_Stat5: 3.1197551185950475e-09 - syst_JES_EtaIntercalibration_Stat50: 1.5894482183029024e-20 - syst_JES_EtaIntercalibration_Stat51: 2.3036781059156248e-14 - syst_JES_EtaIntercalibration_Stat52: 2.3114218008592084e-14 - syst_JES_EtaIntercalibration_Stat53: 6.304664941427679e-12 - syst_JES_EtaIntercalibration_Stat54: 5.15198512711363e-10 - syst_JES_EtaIntercalibration_Stat55: 5.151985127112323e-10 - syst_JES_EtaIntercalibration_Stat56: 5.151985127113483e-10 - syst_JES_EtaIntercalibration_Stat57: 1.1708120366449378e-20 - syst_JES_EtaIntercalibration_Stat58: 2.0061548463852435e-21 - syst_JES_EtaIntercalibration_Stat59: 1.2418804290268852e-09 - syst_JES_EtaIntercalibration_Stat6: 2.0758628928713037e-09 - syst_JES_EtaIntercalibration_Stat60: 3.076793257597917e-09 - syst_JES_EtaIntercalibration_Stat61: 5.645529614411743e-21 - syst_JES_EtaIntercalibration_Stat62: 1.906987939131451e-09 - syst_JES_EtaIntercalibration_Stat63: 9.298578063338502e-21 - syst_JES_EtaIntercalibration_Stat64: 3.1197551185950475e-09 - syst_JES_EtaIntercalibration_Stat65: 3.1197551185950475e-09 - syst_JES_EtaIntercalibration_Stat66: 3.1197551185950475e-09 - syst_JES_EtaIntercalibration_Stat67: 3.1197551185950475e-09 - syst_JES_EtaIntercalibration_Stat68: 5.0888822692217985e-24 - syst_JES_EtaIntercalibration_Stat69: 1.8870693548471055e-09 - syst_JES_EtaIntercalibration_Stat7: 1.9104520407464103e-09 - syst_JES_EtaIntercalibration_Stat70: 1.5138124058152186e-09 - syst_JES_EtaIntercalibration_Stat71: 5.2827549634155794e-11 - syst_JES_EtaIntercalibration_Stat72: 2.3174839782116946e-14 - syst_JES_EtaIntercalibration_Stat73: 2.3174839742253798e-14 - syst_JES_EtaIntercalibration_Stat74: 1.5397931679287945e-09 - syst_JES_EtaIntercalibration_Stat75: 7.136915352587411e-10 - syst_JES_EtaIntercalibration_Stat76: 6.424176445272516e-10 - syst_JES_EtaIntercalibration_Stat77: 4.734560882489792e-10 - syst_JES_EtaIntercalibration_Stat78: 6.986974030830514e-09 - syst_JES_EtaIntercalibration_Stat79: 8.138906744766157e-09 - syst_JES_EtaIntercalibration_Stat8: 6.153802147199323e-21 - syst_JES_EtaIntercalibration_Stat80: 9.164280822839814e-11 - syst_JES_EtaIntercalibration_Stat81: 2.9596288618676496e-21 - syst_JES_EtaIntercalibration_Stat82: 5.1476290180528746e-21 - syst_JES_EtaIntercalibration_Stat83: 1.089254179473276e-20 - syst_JES_EtaIntercalibration_Stat84: 5.718144934248781e-21 - syst_JES_EtaIntercalibration_Stat85: 5.7205821246361805e-21 - syst_JES_EtaIntercalibration_Stat86: 1.910452040748472e-09 - syst_JES_EtaIntercalibration_Stat87: 1.9104520407484716e-09 - syst_JES_EtaIntercalibration_Stat88: 5.740657876436838e-21 - syst_JES_EtaIntercalibration_Stat89: 1.857624491117612e-09 - syst_JES_EtaIntercalibration_Stat9: 5.477610678957128e-10 - syst_JES_EtaIntercalibration_Stat90: 1.819925098252123e-20 - syst_JES_EtaIntercalibration_Stat91: 1.8384790458079744e-20 - syst_JES_EtaIntercalibration_Stat92: 2.422133784552115e-20 - syst_JES_EtaIntercalibration_Stat93: 2.3174839897532153e-14 - syst_JES_EtaIntercalibration_Stat94: 2.303683594826989e-14 - syst_JES_EtaIntercalibration_Stat95: 1.5718361078231167e-09 - syst_JES_EtaIntercalibration_Stat96: 6.424176445234355e-10 - syst_JES_EtaIntercalibration_Stat97: 2.919044437825502e-09 - syst_JES_EtaIntercalibration_Stat98: 1.833334832347872e-09 - syst_JES_EtaIntercalibration_Stat99: 1.0348137549824264e-10 - syst_JES_EtaIntercalibration_TotalStat_MJB: 2.0508424488487652e-05 - syst_JES_Flavour_Comp: 2.7022329192725044e-05 - syst_JES_Flavour_Response: 1.2572483923234898e-05 - syst_JES_Gjet_Generator: 4.1055983729536916e-05 - syst_JES_Gjet_OOC: 3.402003049675293e-05 - syst_JES_Gjet_Purity: 2.5910438051102107e-06 - syst_JES_Gjet_Stat1: 7.807936475151421e-08 - syst_JES_Gjet_Stat10: 1.7374707911213935e-06 - syst_JES_Gjet_Stat11: 1.7370736887075342e-06 - syst_JES_Gjet_Stat12: 1.2744532974966168e-06 - syst_JES_Gjet_Stat13: 8.971206106204448e-06 - syst_JES_Gjet_Stat14: 2.5282485538411763e-05 - syst_JES_Gjet_Stat15: 4.122089154785471e-05 - syst_JES_Gjet_Stat2: 2.179058053379946e-07 - syst_JES_Gjet_Stat3: 2.673952271451381e-07 - syst_JES_Gjet_Stat4: 6.603250563169628e-07 - syst_JES_Gjet_Stat5: 6.572891829324441e-07 - syst_JES_Gjet_Stat6: 7.999529158019239e-07 - syst_JES_Gjet_Stat7: 7.5333556102178e-07 - syst_JES_Gjet_Stat8: 2.2399198088324503e-07 - syst_JES_Gjet_Stat9: 7.521470517791052e-07 - syst_JES_Gjet_Veto: 3.835687576888921e-05 - syst_JES_Gjet_dPhi: 2.5978819738394586e-06 - syst_JES_LArESZee: 5.628335722040753e-05 - syst_JES_LArEsmear: 5.374049590392705e-06 - syst_JES_LAr_JVT: 7.045205515100323e-06 - syst_JES_MJB_Alpha: 1.2400387846757054e-06 - syst_JES_MJB_Asym: 2.3451321391341684e-05 - syst_JES_MJB_Beta: 1.6935365363640668e-06 - syst_JES_MJB_Fragmentation: 5.82506590091477e-06 - syst_JES_MJB_Stat1: 2.3719005101394958e-09 - syst_JES_MJB_Stat10: 2.0951774984473272e-07 - syst_JES_MJB_Stat11: 3.138371671743167e-07 - syst_JES_MJB_Stat12: 5.600868392490578e-07 - syst_JES_MJB_Stat13: 9.518912057057781e-07 - syst_JES_MJB_Stat14: 4.991953825908249e-06 - syst_JES_MJB_Stat15: 4.946016376843085e-06 - syst_JES_MJB_Stat16: 1.47153822580319e-05 - syst_JES_MJB_Stat2: 1.0015057613413914e-08 - syst_JES_MJB_Stat3: 2.9304905306108733e-08 - syst_JES_MJB_Stat4: 1.7214521972741502e-08 - syst_JES_MJB_Stat5: 2.102183842460026e-08 - syst_JES_MJB_Stat6: 2.9017999155696453e-08 - syst_JES_MJB_Stat7: 4.793372299331651e-08 - syst_JES_MJB_Stat8: 6.564476706486207e-08 - syst_JES_MJB_Stat9: 1.1445702599665956e-07 - syst_JES_MJB_Threshold: 7.142277140380371e-06 - syst_JES_Pileup_MuOffset: 1.2947025025078155e-05 - syst_JES_Pileup_NPVOffset: 1.0419069968092162e-05 - syst_JES_Pileup_Pt_term: 3.8532437594836895e-06 - syst_JES_Pileup_Rho_topology: 1.378662492236588e-05 - syst_JES_PunchThrough_MC15: 2.5182042709041694e-05 - syst_JES_SingleParticle_HighPt: 9.832488647336442e-07 - syst_JES_Zjet_MC: 1.570063692975543e-05 - syst_JES_Zjet_MuScale: 1.6213965431072065e-06 - syst_JES_Zjet_MuSmearID: 2.6238843343409786e-07 - syst_JES_Zjet_MuSmearMS: 3.267641465950633e-06 - syst_JES_Zjet_OOC: 9.861330577057033e-06 - syst_JES_Zjet_Stat1: 1.805279133541403e-06 - syst_JES_Zjet_Stat10: 9.554186621581137e-07 - syst_JES_Zjet_Stat11: 1.0385197301929322e-06 - syst_JES_Zjet_Stat12: 1.9036809081356045e-06 - syst_JES_Zjet_Stat13: 3.6235006209465456e-06 - syst_JES_Zjet_Stat2: 5.020236324118616e-08 - syst_JES_Zjet_Stat3: 5.319769919836759e-07 - syst_JES_Zjet_Stat4: 7.078663203599957e-07 - syst_JES_Zjet_Stat5: 6.439201095632906e-07 - syst_JES_Zjet_Stat6: 8.574303047478553e-07 - syst_JES_Zjet_Stat7: 8.035131781744466e-07 - syst_JES_Zjet_Stat8: 4.301882109030883e-07 - syst_JES_Zjet_Stat9: 7.824850461829926e-07 - syst_JES_Zjet_Veto: 1.8265962881819288e-06 - syst_JES_Zjet_dPhi: 1.7574231135386835e-06 + syst_JER_CROSS_CALIB_FORWARD: 4.71300000e-23 + syst_JER_NOISE_FORWARD: 3.43200000e-23 + syst_JER_NP0: 1.47650358e-06 + syst_JER_NP1: 6.07060761e-07 + syst_JER_NP2: 1.78661712e-06 + syst_JER_NP3: 1.56373405e-07 + syst_JER_NP4: 3.34168116e-07 + syst_JER_NP5: 2.63333173e-07 + syst_JER_NP6: 5.05775511e-07 + syst_JER_NP7: 1.67316108e-07 + syst_JER_NP8: 3.89785826e-07 + syst_JES_EtaIntercalibration_Modelling: 2.81344286e-05 + syst_JES_EtaIntercalibration_NonClosure: 3.10924483e-13 + syst_JES_EtaIntercalibration_Stat0: 3.11975512e-09 + syst_JES_EtaIntercalibration_Stat1: 3.11975512e-09 + syst_JES_EtaIntercalibration_Stat10: 6.02571318e-10 + syst_JES_EtaIntercalibration_Stat100: 5.87425031e-09 + syst_JES_EtaIntercalibration_Stat101: 1.04839729e-20 + syst_JES_EtaIntercalibration_Stat102: 2.09657829e-21 + syst_JES_EtaIntercalibration_Stat103: 2.02736547e-09 + syst_JES_EtaIntercalibration_Stat104: 7.19652889e-21 + syst_JES_EtaIntercalibration_Stat105: 1.22576477e-20 + syst_JES_EtaIntercalibration_Stat106: 1.93694767e-21 + syst_JES_EtaIntercalibration_Stat107: 1.91045204e-09 + syst_JES_EtaIntercalibration_Stat108: 1.92950460e-09 + syst_JES_EtaIntercalibration_Stat109: 2.04761198e-17 + syst_JES_EtaIntercalibration_Stat11: 4.36043791e-10 + syst_JES_EtaIntercalibration_Stat110: 2.04785419e-17 + syst_JES_EtaIntercalibration_Stat111: 1.86859809e-20 + syst_JES_EtaIntercalibration_Stat112: 5.56894981e-20 + syst_JES_EtaIntercalibration_Stat113: 2.30022276e-14 + syst_JES_EtaIntercalibration_Stat114: 1.69815665e-09 + syst_JES_EtaIntercalibration_Stat115: 7.50765787e-10 + syst_JES_EtaIntercalibration_Stat116: 2.65002427e-09 + syst_JES_EtaIntercalibration_Stat117: 7.73219615e-10 + syst_JES_EtaIntercalibration_Stat118: 2.12892884e-09 + syst_JES_EtaIntercalibration_Stat119: 4.22793602e-09 + syst_JES_EtaIntercalibration_Stat12: 5.47761068e-10 + syst_JES_EtaIntercalibration_Stat120: 1.59401004e-09 + syst_JES_EtaIntercalibration_Stat121: 1.70404412e-18 + syst_JES_EtaIntercalibration_Stat122: 3.23017788e-17 + syst_JES_EtaIntercalibration_Stat123: 3.61199642e-20 + syst_JES_EtaIntercalibration_Stat124: 3.49259654e-20 + syst_JES_EtaIntercalibration_Stat125: 1.36814915e-19 + syst_JES_EtaIntercalibration_Stat126: 1.30769836e-09 + syst_JES_EtaIntercalibration_Stat127: 5.71836574e-21 + syst_JES_EtaIntercalibration_Stat128: 3.12721773e-09 + syst_JES_EtaIntercalibration_Stat129: 2.53485635e-09 + syst_JES_EtaIntercalibration_Stat13: 3.11975512e-09 + syst_JES_EtaIntercalibration_Stat130: 1.23315821e-18 + syst_JES_EtaIntercalibration_Stat131: 2.37064437e-14 + syst_JES_EtaIntercalibration_Stat132: 1.23754668e-15 + syst_JES_EtaIntercalibration_Stat133: 2.10686847e-09 + syst_JES_EtaIntercalibration_Stat134: 2.57212392e-10 + syst_JES_EtaIntercalibration_Stat135: 9.45142649e-09 + syst_JES_EtaIntercalibration_Stat136: 8.60997699e-11 + syst_JES_EtaIntercalibration_Stat137: 4.23658815e-09 + syst_JES_EtaIntercalibration_Stat138: 1.35541771e-10 + syst_JES_EtaIntercalibration_Stat139: 4.53279326e-09 + syst_JES_EtaIntercalibration_Stat14: 3.11975512e-09 + syst_JES_EtaIntercalibration_Stat140: 3.10106909e-09 + syst_JES_EtaIntercalibration_Stat141: 3.00029399e-15 + syst_JES_EtaIntercalibration_Stat142: 1.77968220e-09 + syst_JES_EtaIntercalibration_Stat143: 6.10376963e-19 + syst_JES_EtaIntercalibration_Stat144: 6.49464540e-18 + syst_JES_EtaIntercalibration_Stat145: 8.07222279e-12 + syst_JES_EtaIntercalibration_Stat146: 3.77413803e-11 + syst_JES_EtaIntercalibration_Stat147: 8.26852887e-19 + syst_JES_EtaIntercalibration_Stat148: 7.57638639e-17 + syst_JES_EtaIntercalibration_Stat149: 3.48058702e-09 + syst_JES_EtaIntercalibration_Stat15: 1.91045204e-09 + syst_JES_EtaIntercalibration_Stat150: 1.23426014e-15 + syst_JES_EtaIntercalibration_Stat151: 8.96224799e-09 + syst_JES_EtaIntercalibration_Stat152: 3.83825724e-10 + syst_JES_EtaIntercalibration_Stat153: 7.64786858e-09 + syst_JES_EtaIntercalibration_Stat154: 4.22534282e-10 + syst_JES_EtaIntercalibration_Stat155: 3.39352053e-09 + syst_JES_EtaIntercalibration_Stat156: 6.31798182e-09 + syst_JES_EtaIntercalibration_Stat157: 5.72337494e-09 + syst_JES_EtaIntercalibration_Stat158: 4.25031681e-09 + syst_JES_EtaIntercalibration_Stat159: 2.98104263e-15 + syst_JES_EtaIntercalibration_Stat16: 1.91045204e-09 + syst_JES_EtaIntercalibration_Stat160: 3.72883423e-09 + syst_JES_EtaIntercalibration_Stat161: 1.24967468e-11 + syst_JES_EtaIntercalibration_Stat162: 1.99099240e-09 + syst_JES_EtaIntercalibration_Stat163: 1.43153999e-09 + syst_JES_EtaIntercalibration_Stat164: 2.59980674e-14 + syst_JES_EtaIntercalibration_Stat165: 6.00698263e-17 + syst_JES_EtaIntercalibration_Stat166: 1.69048157e-09 + syst_JES_EtaIntercalibration_Stat167: 3.22184328e-14 + syst_JES_EtaIntercalibration_Stat168: 1.97020782e-09 + syst_JES_EtaIntercalibration_Stat169: 6.97120758e-09 + syst_JES_EtaIntercalibration_Stat17: 1.91045204e-09 + syst_JES_EtaIntercalibration_Stat170: 9.32538291e-09 + syst_JES_EtaIntercalibration_Stat171: 1.95590776e-08 + syst_JES_EtaIntercalibration_Stat172: 2.19634628e-08 + syst_JES_EtaIntercalibration_Stat173: 1.72721489e-08 + syst_JES_EtaIntercalibration_Stat174: 2.87440220e-08 + syst_JES_EtaIntercalibration_Stat175: 1.74065850e-08 + syst_JES_EtaIntercalibration_Stat176: 1.09187344e-08 + syst_JES_EtaIntercalibration_Stat177: 7.02223224e-10 + syst_JES_EtaIntercalibration_Stat178: 1.93210265e-09 + syst_JES_EtaIntercalibration_Stat179: 1.91997833e-09 + syst_JES_EtaIntercalibration_Stat18: 1.91045204e-09 + syst_JES_EtaIntercalibration_Stat180: 5.97560639e-17 + syst_JES_EtaIntercalibration_Stat181: 7.47709815e-19 + syst_JES_EtaIntercalibration_Stat182: 1.87320340e-09 + syst_JES_EtaIntercalibration_Stat183: 1.64231836e-09 + syst_JES_EtaIntercalibration_Stat184: 1.58542644e-09 + syst_JES_EtaIntercalibration_Stat185: 1.64155132e-09 + syst_JES_EtaIntercalibration_Stat186: 1.11897611e-08 + syst_JES_EtaIntercalibration_Stat187: 7.59474042e-08 + syst_JES_EtaIntercalibration_Stat188: 1.17479242e-07 + syst_JES_EtaIntercalibration_Stat189: 1.10111754e-07 + syst_JES_EtaIntercalibration_Stat19: 3.11975512e-09 + syst_JES_EtaIntercalibration_Stat190: 1.12255576e-07 + syst_JES_EtaIntercalibration_Stat191: 1.16844240e-07 + syst_JES_EtaIntercalibration_Stat192: 6.99579422e-08 + syst_JES_EtaIntercalibration_Stat193: 1.93044522e-08 + syst_JES_EtaIntercalibration_Stat194: 7.28899874e-09 + syst_JES_EtaIntercalibration_Stat195: 5.54138278e-13 + syst_JES_EtaIntercalibration_Stat196: 2.74106091e-14 + syst_JES_EtaIntercalibration_Stat197: 3.91255220e-09 + syst_JES_EtaIntercalibration_Stat198: 2.34157914e-09 + syst_JES_EtaIntercalibration_Stat199: 2.80285974e-09 + syst_JES_EtaIntercalibration_Stat2: 3.11975512e-09 + syst_JES_EtaIntercalibration_Stat20: 3.11975512e-09 + syst_JES_EtaIntercalibration_Stat200: 5.30136643e-09 + syst_JES_EtaIntercalibration_Stat201: 2.77643260e-08 + syst_JES_EtaIntercalibration_Stat202: 1.16881825e-07 + syst_JES_EtaIntercalibration_Stat203: 2.43891590e-07 + syst_JES_EtaIntercalibration_Stat204: 2.35903047e-07 + syst_JES_EtaIntercalibration_Stat205: 2.01237969e-07 + syst_JES_EtaIntercalibration_Stat206: 2.49907523e-07 + syst_JES_EtaIntercalibration_Stat207: 1.32270367e-07 + syst_JES_EtaIntercalibration_Stat208: 3.61256342e-08 + syst_JES_EtaIntercalibration_Stat209: 7.45142208e-09 + syst_JES_EtaIntercalibration_Stat21: 3.11975512e-09 + syst_JES_EtaIntercalibration_Stat210: 1.44614991e-09 + syst_JES_EtaIntercalibration_Stat211: 3.39355652e-12 + syst_JES_EtaIntercalibration_Stat212: 1.26093299e-09 + syst_JES_EtaIntercalibration_Stat213: 4.82600401e-09 + syst_JES_EtaIntercalibration_Stat214: 2.83155518e-08 + syst_JES_EtaIntercalibration_Stat215: 1.32759414e-07 + syst_JES_EtaIntercalibration_Stat216: 2.97716258e-07 + syst_JES_EtaIntercalibration_Stat217: 2.53709415e-07 + syst_JES_EtaIntercalibration_Stat218: 2.44488773e-07 + syst_JES_EtaIntercalibration_Stat219: 2.85812718e-07 + syst_JES_EtaIntercalibration_Stat22: 3.11975512e-09 + syst_JES_EtaIntercalibration_Stat220: 1.54211718e-07 + syst_JES_EtaIntercalibration_Stat221: 3.55654253e-08 + syst_JES_EtaIntercalibration_Stat222: 7.46629821e-09 + syst_JES_EtaIntercalibration_Stat223: 8.18894484e-10 + syst_JES_EtaIntercalibration_Stat224: 9.94010060e-10 + syst_JES_EtaIntercalibration_Stat225: 1.42703375e-08 + syst_JES_EtaIntercalibration_Stat226: 1.20152958e-07 + syst_JES_EtaIntercalibration_Stat227: 3.34945175e-07 + syst_JES_EtaIntercalibration_Stat228: 6.78976338e-07 + syst_JES_EtaIntercalibration_Stat229: 6.79118414e-07 + syst_JES_EtaIntercalibration_Stat23: 3.10633462e-09 + syst_JES_EtaIntercalibration_Stat230: 7.10163972e-07 + syst_JES_EtaIntercalibration_Stat231: 9.01728644e-07 + syst_JES_EtaIntercalibration_Stat232: 3.96470439e-07 + syst_JES_EtaIntercalibration_Stat233: 1.04666018e-07 + syst_JES_EtaIntercalibration_Stat234: 1.00494126e-08 + syst_JES_EtaIntercalibration_Stat235: 4.09889824e-09 + syst_JES_EtaIntercalibration_Stat236: 5.33722175e-09 + syst_JES_EtaIntercalibration_Stat237: 2.63203586e-08 + syst_JES_EtaIntercalibration_Stat238: 8.41401514e-08 + syst_JES_EtaIntercalibration_Stat239: 1.19659354e-07 + syst_JES_EtaIntercalibration_Stat24: 1.91045204e-09 + syst_JES_EtaIntercalibration_Stat240: 9.79682316e-08 + syst_JES_EtaIntercalibration_Stat241: 1.12344884e-07 + syst_JES_EtaIntercalibration_Stat242: 1.12221944e-07 + syst_JES_EtaIntercalibration_Stat243: 7.32246687e-08 + syst_JES_EtaIntercalibration_Stat244: 2.46948902e-08 + syst_JES_EtaIntercalibration_Stat245: 8.53427851e-09 + syst_JES_EtaIntercalibration_Stat25: 5.82156532e-21 + syst_JES_EtaIntercalibration_Stat26: 9.32539372e-21 + syst_JES_EtaIntercalibration_Stat27: 1.00607171e-20 + syst_JES_EtaIntercalibration_Stat28: 9.30072937e-21 + syst_JES_EtaIntercalibration_Stat29: 2.30401040e-14 + syst_JES_EtaIntercalibration_Stat3: 3.12046227e-09 + syst_JES_EtaIntercalibration_Stat30: 9.74562059e-21 + syst_JES_EtaIntercalibration_Stat31: 6.42244439e-12 + syst_JES_EtaIntercalibration_Stat32: 5.15198513e-10 + syst_JES_EtaIntercalibration_Stat33: 4.36043791e-10 + syst_JES_EtaIntercalibration_Stat34: 5.15198513e-10 + syst_JES_EtaIntercalibration_Stat35: 6.21573036e-21 + syst_JES_EtaIntercalibration_Stat36: 2.63471953e-09 + syst_JES_EtaIntercalibration_Stat37: 1.95461934e-09 + syst_JES_EtaIntercalibration_Stat38: 9.63408340e-21 + syst_JES_EtaIntercalibration_Stat39: 9.63703621e-21 + syst_JES_EtaIntercalibration_Stat4: 3.11975512e-09 + syst_JES_EtaIntercalibration_Stat40: 1.91045204e-09 + syst_JES_EtaIntercalibration_Stat41: 3.12046227e-09 + syst_JES_EtaIntercalibration_Stat42: 3.11975512e-09 + syst_JES_EtaIntercalibration_Stat43: 3.11975512e-09 + syst_JES_EtaIntercalibration_Stat44: 3.11975512e-09 + syst_JES_EtaIntercalibration_Stat45: 3.11975512e-09 + syst_JES_EtaIntercalibration_Stat46: 9.71590824e-21 + syst_JES_EtaIntercalibration_Stat47: 5.44726874e-21 + syst_JES_EtaIntercalibration_Stat48: 5.50688884e-21 + syst_JES_EtaIntercalibration_Stat49: 1.90785396e-09 + syst_JES_EtaIntercalibration_Stat5: 3.11975512e-09 + syst_JES_EtaIntercalibration_Stat50: 1.58944822e-20 + syst_JES_EtaIntercalibration_Stat51: 2.30367811e-14 + syst_JES_EtaIntercalibration_Stat52: 2.31142180e-14 + syst_JES_EtaIntercalibration_Stat53: 6.30466494e-12 + syst_JES_EtaIntercalibration_Stat54: 5.15198513e-10 + syst_JES_EtaIntercalibration_Stat55: 5.15198513e-10 + syst_JES_EtaIntercalibration_Stat56: 5.15198513e-10 + syst_JES_EtaIntercalibration_Stat57: 1.17081204e-20 + syst_JES_EtaIntercalibration_Stat58: 2.00615485e-21 + syst_JES_EtaIntercalibration_Stat59: 1.24188043e-09 + syst_JES_EtaIntercalibration_Stat6: 2.07586289e-09 + syst_JES_EtaIntercalibration_Stat60: 3.07679326e-09 + syst_JES_EtaIntercalibration_Stat61: 5.64552961e-21 + syst_JES_EtaIntercalibration_Stat62: 1.90698794e-09 + syst_JES_EtaIntercalibration_Stat63: 9.29857806e-21 + syst_JES_EtaIntercalibration_Stat64: 3.11975512e-09 + syst_JES_EtaIntercalibration_Stat65: 3.11975512e-09 + syst_JES_EtaIntercalibration_Stat66: 3.11975512e-09 + syst_JES_EtaIntercalibration_Stat67: 3.11975512e-09 + syst_JES_EtaIntercalibration_Stat68: 5.08888227e-24 + syst_JES_EtaIntercalibration_Stat69: 1.88706935e-09 + syst_JES_EtaIntercalibration_Stat7: 1.91045204e-09 + syst_JES_EtaIntercalibration_Stat70: 1.51381241e-09 + syst_JES_EtaIntercalibration_Stat71: 5.28275496e-11 + syst_JES_EtaIntercalibration_Stat72: 2.31748398e-14 + syst_JES_EtaIntercalibration_Stat73: 2.31748397e-14 + syst_JES_EtaIntercalibration_Stat74: 1.53979317e-09 + syst_JES_EtaIntercalibration_Stat75: 7.13691535e-10 + syst_JES_EtaIntercalibration_Stat76: 6.42417645e-10 + syst_JES_EtaIntercalibration_Stat77: 4.73456088e-10 + syst_JES_EtaIntercalibration_Stat78: 6.98697403e-09 + syst_JES_EtaIntercalibration_Stat79: 8.13890674e-09 + syst_JES_EtaIntercalibration_Stat8: 6.15380215e-21 + syst_JES_EtaIntercalibration_Stat80: 9.16428082e-11 + syst_JES_EtaIntercalibration_Stat81: 2.95962886e-21 + syst_JES_EtaIntercalibration_Stat82: 5.14762902e-21 + syst_JES_EtaIntercalibration_Stat83: 1.08925418e-20 + syst_JES_EtaIntercalibration_Stat84: 5.71814493e-21 + syst_JES_EtaIntercalibration_Stat85: 5.72058212e-21 + syst_JES_EtaIntercalibration_Stat86: 1.91045204e-09 + syst_JES_EtaIntercalibration_Stat87: 1.91045204e-09 + syst_JES_EtaIntercalibration_Stat88: 5.74065788e-21 + syst_JES_EtaIntercalibration_Stat89: 1.85762449e-09 + syst_JES_EtaIntercalibration_Stat9: 5.47761068e-10 + syst_JES_EtaIntercalibration_Stat90: 1.81992510e-20 + syst_JES_EtaIntercalibration_Stat91: 1.83847905e-20 + syst_JES_EtaIntercalibration_Stat92: 2.42213378e-20 + syst_JES_EtaIntercalibration_Stat93: 2.31748399e-14 + syst_JES_EtaIntercalibration_Stat94: 2.30368359e-14 + syst_JES_EtaIntercalibration_Stat95: 1.57183611e-09 + syst_JES_EtaIntercalibration_Stat96: 6.42417645e-10 + syst_JES_EtaIntercalibration_Stat97: 2.91904444e-09 + syst_JES_EtaIntercalibration_Stat98: 1.83333483e-09 + syst_JES_EtaIntercalibration_Stat99: 1.03481375e-10 + syst_JES_EtaIntercalibration_TotalStat_MJB: 2.05084245e-05 + syst_JES_Flavour_Comp: 2.70223292e-05 + syst_JES_Flavour_Response: 1.25724839e-05 + syst_JES_Gjet_Generator: 4.10559837e-05 + syst_JES_Gjet_OOC: 3.40200305e-05 + syst_JES_Gjet_Purity: 2.59104381e-06 + syst_JES_Gjet_Stat1: 7.80793648e-08 + syst_JES_Gjet_Stat10: 1.73747079e-06 + syst_JES_Gjet_Stat11: 1.73707369e-06 + syst_JES_Gjet_Stat12: 1.27445330e-06 + syst_JES_Gjet_Stat13: 8.97120611e-06 + syst_JES_Gjet_Stat14: 2.52824855e-05 + syst_JES_Gjet_Stat15: 4.12208915e-05 + syst_JES_Gjet_Stat2: 2.17905805e-07 + syst_JES_Gjet_Stat3: 2.67395227e-07 + syst_JES_Gjet_Stat4: 6.60325056e-07 + syst_JES_Gjet_Stat5: 6.57289183e-07 + syst_JES_Gjet_Stat6: 7.99952916e-07 + syst_JES_Gjet_Stat7: 7.53335561e-07 + syst_JES_Gjet_Stat8: 2.23991981e-07 + syst_JES_Gjet_Stat9: 7.52147052e-07 + syst_JES_Gjet_Veto: 3.83568758e-05 + syst_JES_Gjet_dPhi: 2.59788197e-06 + syst_JES_LArESZee: 5.62833572e-05 + syst_JES_LArEsmear: 5.37404959e-06 + syst_JES_LAr_JVT: 7.04520552e-06 + syst_JES_MJB_Alpha: 1.24003878e-06 + syst_JES_MJB_Asym: 2.34513214e-05 + syst_JES_MJB_Beta: 1.69353654e-06 + syst_JES_MJB_Fragmentation: 5.82506590e-06 + syst_JES_MJB_Stat1: 2.37190051e-09 + syst_JES_MJB_Stat10: 2.09517750e-07 + syst_JES_MJB_Stat11: 3.13837167e-07 + syst_JES_MJB_Stat12: 5.60086839e-07 + syst_JES_MJB_Stat13: 9.51891206e-07 + syst_JES_MJB_Stat14: 4.99195383e-06 + syst_JES_MJB_Stat15: 4.94601638e-06 + syst_JES_MJB_Stat16: 1.47153823e-05 + syst_JES_MJB_Stat2: 1.00150576e-08 + syst_JES_MJB_Stat3: 2.93049053e-08 + syst_JES_MJB_Stat4: 1.72145220e-08 + syst_JES_MJB_Stat5: 2.10218384e-08 + syst_JES_MJB_Stat6: 2.90179992e-08 + syst_JES_MJB_Stat7: 4.79337230e-08 + syst_JES_MJB_Stat8: 6.56447671e-08 + syst_JES_MJB_Stat9: 1.14457026e-07 + syst_JES_MJB_Threshold: 7.14227714e-06 + syst_JES_Pileup_MuOffset: 1.29470250e-05 + syst_JES_Pileup_NPVOffset: 1.04190700e-05 + syst_JES_Pileup_Pt_term: 3.85324376e-06 + syst_JES_Pileup_Rho_topology: 1.37866249e-05 + syst_JES_PunchThrough_MC15: 2.51820427e-05 + syst_JES_SingleParticle_HighPt: 9.83248865e-07 + syst_JES_Zjet_MC: 1.57006369e-05 + syst_JES_Zjet_MuScale: 1.62139654e-06 + syst_JES_Zjet_MuSmearID: 2.62388433e-07 + syst_JES_Zjet_MuSmearMS: 3.26764147e-06 + syst_JES_Zjet_OOC: 9.86133058e-06 + syst_JES_Zjet_Stat1: 1.80527913e-06 + syst_JES_Zjet_Stat10: 9.55418662e-07 + syst_JES_Zjet_Stat11: 1.03851973e-06 + syst_JES_Zjet_Stat12: 1.90368091e-06 + syst_JES_Zjet_Stat13: 3.62350062e-06 + syst_JES_Zjet_Stat2: 5.02023632e-08 + syst_JES_Zjet_Stat3: 5.31976992e-07 + syst_JES_Zjet_Stat4: 7.07866320e-07 + syst_JES_Zjet_Stat5: 6.43920110e-07 + syst_JES_Zjet_Stat6: 8.57430305e-07 + syst_JES_Zjet_Stat7: 8.03513178e-07 + syst_JES_Zjet_Stat8: 4.30188211e-07 + syst_JES_Zjet_Stat9: 7.82485046e-07 + syst_JES_Zjet_Veto: 1.82659629e-06 + syst_JES_Zjet_dPhi: 1.75742311e-06 syst_PRW: 0.0 - syst_Unfolding_bias: 6.475e-08 - syst_cleaning: 1.3059663089069335e-05 - syst_lumi: 2.584e-05 -- stat: 3.4177e-05 - syst_JER_CROSS_CALIB_FORWARD: 1.1643e-23 - syst_JER_NOISE_FORWARD: 8.425e-24 - syst_JER_NP0: 8.006990320963302e-07 - syst_JER_NP1: 2.895722837220441e-07 - syst_JER_NP2: 9.112282699741048e-07 - syst_JER_NP3: 1.255596403108897e-07 - syst_JER_NP4: 1.9058685028091524e-07 - syst_JER_NP5: 2.5091274877933165e-07 - syst_JER_NP6: 2.782553638297023e-07 - syst_JER_NP7: 1.59435276834471e-07 - syst_JER_NP8: 2.0550430652421864e-07 - syst_JES_EtaIntercalibration_Modelling: 1.2551682387233991e-05 - syst_JES_EtaIntercalibration_NonClosure: 2.1929516500997006e-14 - syst_JES_EtaIntercalibration_Stat0: 1.4512659577072703e-09 - syst_JES_EtaIntercalibration_Stat1: 1.4512659577072703e-09 - syst_JES_EtaIntercalibration_Stat10: 5.306809070305338e-10 - syst_JES_EtaIntercalibration_Stat100: 2.7297120727043855e-09 - syst_JES_EtaIntercalibration_Stat101: 1.0299512184079398e-21 - syst_JES_EtaIntercalibration_Stat102: 2.593470051398319e-22 - syst_JES_EtaIntercalibration_Stat103: 9.427552545598595e-10 - syst_JES_EtaIntercalibration_Stat104: 1.0207231590886924e-21 - syst_JES_EtaIntercalibration_Stat105: 1.5510797299064771e-21 - syst_JES_EtaIntercalibration_Stat106: 2.4242293510928374e-22 - syst_JES_EtaIntercalibration_Stat107: 8.88715269363591e-10 - syst_JES_EtaIntercalibration_Stat108: 8.974621259418138e-10 - syst_JES_EtaIntercalibration_Stat109: 1.7340409229342744e-18 - syst_JES_EtaIntercalibration_Stat11: 4.6444942404959533e-10 - syst_JES_EtaIntercalibration_Stat110: 1.7336126069785602e-18 - syst_JES_EtaIntercalibration_Stat111: 1.701363888179128e-21 - syst_JES_EtaIntercalibration_Stat112: 3.962664338380807e-21 - syst_JES_EtaIntercalibration_Stat113: 1.6080485731702884e-15 - syst_JES_EtaIntercalibration_Stat114: 8.085844364072314e-10 - syst_JES_EtaIntercalibration_Stat115: 9.322775641808613e-10 - syst_JES_EtaIntercalibration_Stat116: 1.5032233332658855e-09 - syst_JES_EtaIntercalibration_Stat117: 8.438043893581024e-10 - syst_JES_EtaIntercalibration_Stat118: 7.670740691093658e-10 - syst_JES_EtaIntercalibration_Stat119: 1.6090752002300225e-09 - syst_JES_EtaIntercalibration_Stat12: 5.625701022983624e-11 - syst_JES_EtaIntercalibration_Stat120: 7.504097997094654e-10 - syst_JES_EtaIntercalibration_Stat121: 1.5656153646410093e-19 - syst_JES_EtaIntercalibration_Stat122: 2.6932001211584706e-18 - syst_JES_EtaIntercalibration_Stat123: 3.7996314071235906e-21 - syst_JES_EtaIntercalibration_Stat124: 3.682664669434348e-21 - syst_JES_EtaIntercalibration_Stat125: 1.499283668956612e-20 - syst_JES_EtaIntercalibration_Stat126: 6.080364359970937e-10 - syst_JES_EtaIntercalibration_Stat127: 7.823673497788618e-22 - syst_JES_EtaIntercalibration_Stat128: 1.4549226777839707e-09 - syst_JES_EtaIntercalibration_Stat129: 1.1790935869660897e-09 - syst_JES_EtaIntercalibration_Stat13: 1.4512659577072703e-09 - syst_JES_EtaIntercalibration_Stat130: 1.1029880915041648e-19 - syst_JES_EtaIntercalibration_Stat131: 1.6567402232999597e-15 - syst_JES_EtaIntercalibration_Stat132: 8.541063991397365e-17 - syst_JES_EtaIntercalibration_Stat133: 1.254341910126581e-09 - syst_JES_EtaIntercalibration_Stat134: 1.1587417836589325e-09 - syst_JES_EtaIntercalibration_Stat135: 3.598327493433581e-09 - syst_JES_EtaIntercalibration_Stat136: 2.0611404238140624e-09 - syst_JES_EtaIntercalibration_Stat137: 1.9710732459939065e-09 - syst_JES_EtaIntercalibration_Stat138: 1.0197455255262839e-09 - syst_JES_EtaIntercalibration_Stat139: 3.742591149190624e-09 - syst_JES_EtaIntercalibration_Stat14: 1.4512659577072703e-09 - syst_JES_EtaIntercalibration_Stat140: 3.526676368409781e-09 - syst_JES_EtaIntercalibration_Stat141: 2.129900110333816e-16 - syst_JES_EtaIntercalibration_Stat142: 8.279202854558729e-10 - syst_JES_EtaIntercalibration_Stat143: 6.907884019727025e-20 - syst_JES_EtaIntercalibration_Stat144: 5.90135336236528e-19 - syst_JES_EtaIntercalibration_Stat145: 6.931667336818331e-13 - syst_JES_EtaIntercalibration_Stat146: 3.2415325113246935e-12 - syst_JES_EtaIntercalibration_Stat147: 7.776889809602552e-20 - syst_JES_EtaIntercalibration_Stat148: 5.7237194172583275e-18 - syst_JES_EtaIntercalibration_Stat149: 1.6192265993368563e-09 - syst_JES_EtaIntercalibration_Stat15: 8.887152693633286e-10 - syst_JES_EtaIntercalibration_Stat150: 8.508115774196466e-17 - syst_JES_EtaIntercalibration_Stat151: 2.4357374653274927e-09 - syst_JES_EtaIntercalibration_Stat152: 1.1143146501916905e-09 - syst_JES_EtaIntercalibration_Stat153: 2.9072471514377307e-09 - syst_JES_EtaIntercalibration_Stat154: 1.8082610049708125e-09 - syst_JES_EtaIntercalibration_Stat155: 1.0849566241036906e-09 - syst_JES_EtaIntercalibration_Stat156: 4.173160575331363e-09 - syst_JES_EtaIntercalibration_Stat157: 2.910101530874825e-09 - syst_JES_EtaIntercalibration_Stat158: 3.0484863047092734e-09 - syst_JES_EtaIntercalibration_Stat159: 2.1175599802602997e-16 - syst_JES_EtaIntercalibration_Stat16: 8.887152693633286e-10 - syst_JES_EtaIntercalibration_Stat160: 1.7340951876987607e-09 - syst_JES_EtaIntercalibration_Stat161: 1.0735251140293483e-12 - syst_JES_EtaIntercalibration_Stat162: 9.260409642383264e-10 - syst_JES_EtaIntercalibration_Stat163: 6.658003304062323e-10 - syst_JES_EtaIntercalibration_Stat164: 1.8151876363966694e-15 - syst_JES_EtaIntercalibration_Stat165: 4.782057978266261e-18 - syst_JES_EtaIntercalibration_Stat166: 7.862644626992816e-10 - syst_JES_EtaIntercalibration_Stat167: 2.2588547114633113e-15 - syst_JES_EtaIntercalibration_Stat168: 9.165146869976405e-10 - syst_JES_EtaIntercalibration_Stat169: 1.2446462753228323e-09 - syst_JES_EtaIntercalibration_Stat17: 8.887152693638076e-10 - syst_JES_EtaIntercalibration_Stat170: 5.871653705284346e-09 - syst_JES_EtaIntercalibration_Stat171: 9.568708220026358e-09 - syst_JES_EtaIntercalibration_Stat172: 1.2396122095236075e-08 - syst_JES_EtaIntercalibration_Stat173: 8.77381415064167e-09 - syst_JES_EtaIntercalibration_Stat174: 1.3321799456154564e-08 - syst_JES_EtaIntercalibration_Stat175: 6.980859599648169e-09 - syst_JES_EtaIntercalibration_Stat176: 2.9805078006943716e-09 - syst_JES_EtaIntercalibration_Stat177: 7.17223587864738e-10 - syst_JES_EtaIntercalibration_Stat178: 8.985879565828543e-10 - syst_JES_EtaIntercalibration_Stat179: 8.931319994554972e-10 - syst_JES_EtaIntercalibration_Stat18: 8.887152693633286e-10 - syst_JES_EtaIntercalibration_Stat180: 4.669479572714716e-18 - syst_JES_EtaIntercalibration_Stat181: 7.219984695274638e-20 - syst_JES_EtaIntercalibration_Stat182: 8.710476840001961e-10 - syst_JES_EtaIntercalibration_Stat183: 7.640641923294142e-10 - syst_JES_EtaIntercalibration_Stat184: 7.241680399430784e-10 - syst_JES_EtaIntercalibration_Stat185: 1.010600826241499e-09 - syst_JES_EtaIntercalibration_Stat186: 5.274776393364936e-09 - syst_JES_EtaIntercalibration_Stat187: 2.8894236449506673e-08 - syst_JES_EtaIntercalibration_Stat188: 5.567532397750372e-08 - syst_JES_EtaIntercalibration_Stat189: 5.549013493405833e-08 - syst_JES_EtaIntercalibration_Stat19: 1.4512659577072703e-09 - syst_JES_EtaIntercalibration_Stat190: 5.031951187163882e-08 - syst_JES_EtaIntercalibration_Stat191: 4.774595135453896e-08 - syst_JES_EtaIntercalibration_Stat192: 3.025817038421193e-08 - syst_JES_EtaIntercalibration_Stat193: 7.092961070667172e-09 - syst_JES_EtaIntercalibration_Stat194: 2.6443560047769665e-09 - syst_JES_EtaIntercalibration_Stat195: 3.98579432579003e-14 - syst_JES_EtaIntercalibration_Stat196: 1.9114202790038096e-15 - syst_JES_EtaIntercalibration_Stat197: 1.8193594339766947e-09 - syst_JES_EtaIntercalibration_Stat198: 1.088347040385955e-09 - syst_JES_EtaIntercalibration_Stat199: 1.3758093218175258e-09 - syst_JES_EtaIntercalibration_Stat2: 1.4512659577072703e-09 - syst_JES_EtaIntercalibration_Stat20: 1.4512659577072703e-09 - syst_JES_EtaIntercalibration_Stat200: 1.6880097008015088e-09 - syst_JES_EtaIntercalibration_Stat201: 1.3150215321431053e-08 - syst_JES_EtaIntercalibration_Stat202: 4.846219454378846e-08 - syst_JES_EtaIntercalibration_Stat203: 1.1658144052549703e-07 - syst_JES_EtaIntercalibration_Stat204: 1.2225493149562515e-07 - syst_JES_EtaIntercalibration_Stat205: 9.677332173693325e-08 - syst_JES_EtaIntercalibration_Stat206: 1.1336374508633702e-07 - syst_JES_EtaIntercalibration_Stat207: 5.5492973203821036e-08 - syst_JES_EtaIntercalibration_Stat208: 1.1191839973838083e-08 - syst_JES_EtaIntercalibration_Stat209: 2.3279266998769528e-09 - syst_JES_EtaIntercalibration_Stat21: 1.4512659577072703e-09 - syst_JES_EtaIntercalibration_Stat210: 6.755981132182948e-10 - syst_JES_EtaIntercalibration_Stat211: 2.438978194874854e-13 - syst_JES_EtaIntercalibration_Stat212: 7.56992805447941e-10 - syst_JES_EtaIntercalibration_Stat213: 2.2329066259026592e-09 - syst_JES_EtaIntercalibration_Stat214: 1.134766310744199e-08 - syst_JES_EtaIntercalibration_Stat215: 5.339962337648085e-08 - syst_JES_EtaIntercalibration_Stat216: 1.4261769481729816e-07 - syst_JES_EtaIntercalibration_Stat217: 1.1348897953105404e-07 - syst_JES_EtaIntercalibration_Stat218: 1.1951713851996292e-07 - syst_JES_EtaIntercalibration_Stat219: 1.3568573506452327e-07 - syst_JES_EtaIntercalibration_Stat22: 1.4512659577072703e-09 - syst_JES_EtaIntercalibration_Stat220: 6.825625465845602e-08 - syst_JES_EtaIntercalibration_Stat221: 1.35080191275405e-08 - syst_JES_EtaIntercalibration_Stat222: 2.330503351209777e-09 - syst_JES_EtaIntercalibration_Stat223: 1.1247709040546878e-10 - syst_JES_EtaIntercalibration_Stat224: 7.563379183275158e-10 - syst_JES_EtaIntercalibration_Stat225: 6.86251927137549e-09 - syst_JES_EtaIntercalibration_Stat226: 4.622705701210061e-08 - syst_JES_EtaIntercalibration_Stat227: 1.5194909772683748e-07 - syst_JES_EtaIntercalibration_Stat228: 3.447885293915678e-07 - syst_JES_EtaIntercalibration_Stat229: 3.529947981203122e-07 - syst_JES_EtaIntercalibration_Stat23: 1.4449795595440097e-09 - syst_JES_EtaIntercalibration_Stat230: 3.484414441480807e-07 - syst_JES_EtaIntercalibration_Stat231: 4.3915547076177935e-07 - syst_JES_EtaIntercalibration_Stat232: 1.758252754867741e-07 - syst_JES_EtaIntercalibration_Stat233: 3.615096782936799e-08 - syst_JES_EtaIntercalibration_Stat234: 4.395085778457572e-09 - syst_JES_EtaIntercalibration_Stat235: 1.7658257983167313e-09 - syst_JES_EtaIntercalibration_Stat236: 1.7033216813039163e-09 - syst_JES_EtaIntercalibration_Stat237: 1.0526132943773796e-08 - syst_JES_EtaIntercalibration_Stat238: 3.5424267106039045e-08 - syst_JES_EtaIntercalibration_Stat239: 5.761438101724256e-08 - syst_JES_EtaIntercalibration_Stat24: 8.887152693633289e-10 - syst_JES_EtaIntercalibration_Stat240: 4.5924123951905715e-08 - syst_JES_EtaIntercalibration_Stat241: 4.958356280058947e-08 - syst_JES_EtaIntercalibration_Stat242: 4.520228644659471e-08 - syst_JES_EtaIntercalibration_Stat243: 3.2557077571551164e-08 - syst_JES_EtaIntercalibration_Stat244: 9.189855493967248e-09 - syst_JES_EtaIntercalibration_Stat245: 2.9933080229070983e-09 - syst_JES_EtaIntercalibration_Stat25: 9.252247983598364e-22 - syst_JES_EtaIntercalibration_Stat26: 1.2738019430036994e-21 - syst_JES_EtaIntercalibration_Stat27: 1.3898893804904045e-21 - syst_JES_EtaIntercalibration_Stat28: 1.2695109954230404e-21 - syst_JES_EtaIntercalibration_Stat29: 1.6109468103183916e-15 - syst_JES_EtaIntercalibration_Stat3: 1.4513366692466638e-09 - syst_JES_EtaIntercalibration_Stat30: 1.3397034336001383e-21 - syst_JES_EtaIntercalibration_Stat31: 2.213560932073024e-10 - syst_JES_EtaIntercalibration_Stat32: 5.345108792157462e-11 - syst_JES_EtaIntercalibration_Stat33: 4.644494240495962e-10 - syst_JES_EtaIntercalibration_Stat34: 5.345108792157328e-11 - syst_JES_EtaIntercalibration_Stat35: 8.597568660237614e-22 - syst_JES_EtaIntercalibration_Stat36: 1.2252172827706929e-09 - syst_JES_EtaIntercalibration_Stat37: 9.091534688926417e-10 - syst_JES_EtaIntercalibration_Stat38: 1.3225844434288498e-21 - syst_JES_EtaIntercalibration_Stat39: 1.3230338544421305e-21 - syst_JES_EtaIntercalibration_Stat4: 1.4512659577072703e-09 - syst_JES_EtaIntercalibration_Stat40: 8.885420642825774e-10 - syst_JES_EtaIntercalibration_Stat41: 1.4513366692466638e-09 - syst_JES_EtaIntercalibration_Stat42: 1.4512659577072703e-09 - syst_JES_EtaIntercalibration_Stat43: 1.4512659577072703e-09 - syst_JES_EtaIntercalibration_Stat44: 1.4512659577072703e-09 - syst_JES_EtaIntercalibration_Stat45: 1.4512659577072703e-09 - syst_JES_EtaIntercalibration_Stat46: 1.3362651308778509e-21 - syst_JES_EtaIntercalibration_Stat47: 7.413256774185014e-22 - syst_JES_EtaIntercalibration_Stat48: 7.900512241562252e-22 - syst_JES_EtaIntercalibration_Stat49: 8.875028337982332e-10 - syst_JES_EtaIntercalibration_Stat5: 1.4512659577072703e-09 - syst_JES_EtaIntercalibration_Stat50: 1.8107170906886587e-21 - syst_JES_EtaIntercalibration_Stat51: 1.6106407160117989e-15 - syst_JES_EtaIntercalibration_Stat52: 1.6168694249822892e-15 - syst_JES_EtaIntercalibration_Stat53: 2.213560932070473e-10 - syst_JES_EtaIntercalibration_Stat54: 5.345108792157557e-11 - syst_JES_EtaIntercalibration_Stat55: 5.345108792155453e-11 - syst_JES_EtaIntercalibration_Stat56: 5.3451087921572636e-11 - syst_JES_EtaIntercalibration_Stat57: 1.4804926369181136e-21 - syst_JES_EtaIntercalibration_Stat58: 2.5590161377257374e-22 - syst_JES_EtaIntercalibration_Stat59: 5.774657392434638e-10 - syst_JES_EtaIntercalibration_Stat6: 9.652719150581362e-10 - syst_JES_EtaIntercalibration_Stat60: 1.4311936023822913e-09 - syst_JES_EtaIntercalibration_Stat61: 7.703394880951838e-22 - syst_JES_EtaIntercalibration_Stat62: 8.868100134750081e-10 - syst_JES_EtaIntercalibration_Stat63: 1.2704848946366893e-21 - syst_JES_EtaIntercalibration_Stat64: 1.4512659577072703e-09 - syst_JES_EtaIntercalibration_Stat65: 1.4512659577072703e-09 - syst_JES_EtaIntercalibration_Stat66: 1.4512659577072703e-09 - syst_JES_EtaIntercalibration_Stat67: 1.4512659577072703e-09 - syst_JES_EtaIntercalibration_Stat68: 1.466273401347784e-24 - syst_JES_EtaIntercalibration_Stat69: 8.775435416548751e-10 - syst_JES_EtaIntercalibration_Stat7: 8.887152693633061e-10 - syst_JES_EtaIntercalibration_Stat70: 7.042518583575101e-10 - syst_JES_EtaIntercalibration_Stat71: 4.5362410652852955e-12 - syst_JES_EtaIntercalibration_Stat72: 1.6211995505295456e-15 - syst_JES_EtaIntercalibration_Stat73: 1.6211995425909798e-15 - syst_JES_EtaIntercalibration_Stat74: 7.161164063893655e-10 - syst_JES_EtaIntercalibration_Stat75: 1.36052590934531e-10 - syst_JES_EtaIntercalibration_Stat76: 1.309430410521975e-10 - syst_JES_EtaIntercalibration_Stat77: 4.671341028013326e-10 - syst_JES_EtaIntercalibration_Stat78: 3.3376139306396715e-09 - syst_JES_EtaIntercalibration_Stat79: 3.78539703994178e-09 - syst_JES_EtaIntercalibration_Stat8: 8.500128104803773e-22 - syst_JES_EtaIntercalibration_Stat80: 7.869572844174217e-12 - syst_JES_EtaIntercalibration_Stat81: 4.055001972872516e-22 - syst_JES_EtaIntercalibration_Stat82: 7.289348089335562e-22 - syst_JES_EtaIntercalibration_Stat83: 1.5205685975976223e-21 - syst_JES_EtaIntercalibration_Stat84: 7.852675843780895e-22 - syst_JES_EtaIntercalibration_Stat85: 7.836070717731687e-22 - syst_JES_EtaIntercalibration_Stat86: 8.88715269363591e-10 - syst_JES_EtaIntercalibration_Stat87: 8.88715269363591e-10 - syst_JES_EtaIntercalibration_Stat88: 7.86211362225197e-22 - syst_JES_EtaIntercalibration_Stat89: 8.641201478961117e-10 - syst_JES_EtaIntercalibration_Stat9: 5.6248349976083323e-11 - syst_JES_EtaIntercalibration_Stat90: 2.0916896850385694e-21 - syst_JES_EtaIntercalibration_Stat91: 2.1082288251515773e-21 - syst_JES_EtaIntercalibration_Stat92: 2.7449759689294185e-21 - syst_JES_EtaIntercalibration_Stat93: 1.6211995665885435e-15 - syst_JES_EtaIntercalibration_Stat94: 1.6106434466696843e-15 - syst_JES_EtaIntercalibration_Stat95: 7.310986458700543e-10 - syst_JES_EtaIntercalibration_Stat96: 1.3094304105171697e-10 - syst_JES_EtaIntercalibration_Stat97: 1.2785121157032497e-09 - syst_JES_EtaIntercalibration_Stat98: 5.24487724999356e-10 - syst_JES_EtaIntercalibration_Stat99: 8.887152693645043e-12 - syst_JES_EtaIntercalibration_TotalStat_MJB: 1.1512776337617265e-05 - syst_JES_Flavour_Comp: 1.1095082458008144e-05 - syst_JES_Flavour_Response: 7.961795447636167e-06 - syst_JES_Gjet_Generator: 2.091172577765881e-05 - syst_JES_Gjet_OOC: 1.7410700014646164e-05 - syst_JES_Gjet_Purity: 5.63333921843874e-07 - syst_JES_Gjet_Stat1: 3.1842052960668226e-09 - syst_JES_Gjet_Stat10: 1.1118872098823692e-06 - syst_JES_Gjet_Stat11: 1.0953837866245786e-06 - syst_JES_Gjet_Stat12: 6.014782456581452e-07 - syst_JES_Gjet_Stat13: 5.016526362932821e-06 - syst_JES_Gjet_Stat14: 1.463845876450113e-05 - syst_JES_Gjet_Stat15: 2.33361886348221e-05 - syst_JES_Gjet_Stat2: 1.0248691721385712e-07 - syst_JES_Gjet_Stat3: 1.1929173232039176e-07 - syst_JES_Gjet_Stat4: 4.1141221867489547e-07 - syst_JES_Gjet_Stat5: 4.0656088203367526e-07 - syst_JES_Gjet_Stat6: 3.927982020070866e-07 - syst_JES_Gjet_Stat7: 4.460472172315393e-07 - syst_JES_Gjet_Stat8: 9.919853464139479e-08 - syst_JES_Gjet_Stat9: 4.455934329632788e-07 - syst_JES_Gjet_Veto: 2.0206063446401432e-05 - syst_JES_Gjet_dPhi: 1.0520041385374871e-06 - syst_JES_LArESZee: 2.744268755060262e-05 - syst_JES_LArEsmear: 2.7300937712833235e-06 - syst_JES_LAr_JVT: 3.5845034174903505e-06 - syst_JES_MJB_Alpha: 6.247371667349397e-07 - syst_JES_MJB_Asym: 1.4653303381831688e-05 - syst_JES_MJB_Beta: 1.1330200913929108e-06 - syst_JES_MJB_Fragmentation: 3.4482114204323377e-06 - syst_JES_MJB_Stat1: 1.3021924617736045e-09 - syst_JES_MJB_Stat10: 7.554653268019652e-08 - syst_JES_MJB_Stat11: 1.1102940871678998e-07 - syst_JES_MJB_Stat12: 2.042642406296315e-07 - syst_JES_MJB_Stat13: 3.76960906030055e-07 - syst_JES_MJB_Stat14: 3.445588882905214e-06 - syst_JES_MJB_Stat15: 5.390296837837411e-06 - syst_JES_MJB_Stat16: 1.0448442563367998e-05 - syst_JES_MJB_Stat2: 2.4083381718521177e-09 - syst_JES_MJB_Stat3: 9.57967132786924e-09 - syst_JES_MJB_Stat4: 7.737806084414368e-09 - syst_JES_MJB_Stat5: 7.98626603410505e-09 - syst_JES_MJB_Stat6: 9.24542065024626e-09 - syst_JES_MJB_Stat7: 1.5875495480456663e-08 - syst_JES_MJB_Stat8: 2.5211715530681368e-08 - syst_JES_MJB_Stat9: 3.922772584537626e-08 - syst_JES_MJB_Threshold: 3.5490011270778713e-06 - syst_JES_Pileup_MuOffset: 7.389551457970909e-06 - syst_JES_Pileup_NPVOffset: 5.464503705735774e-06 - syst_JES_Pileup_Pt_term: 1.8352663975564964e-06 - syst_JES_Pileup_Rho_topology: 7.715663338300863e-06 - syst_JES_PunchThrough_MC15: 1.6294099392111244e-05 - syst_JES_SingleParticle_HighPt: 2.030104122945422e-06 - syst_JES_Zjet_MC: 7.971128464652917e-06 - syst_JES_Zjet_MuScale: 9.178084822009437e-07 - syst_JES_Zjet_MuSmearID: 1.0016431637564347e-07 - syst_JES_Zjet_MuSmearMS: 1.4736950159378298e-06 - syst_JES_Zjet_OOC: 4.880081966524743e-06 - syst_JES_Zjet_Stat1: 9.97750234277096e-07 - syst_JES_Zjet_Stat10: 5.399705362332282e-07 - syst_JES_Zjet_Stat11: 5.047539004306951e-07 - syst_JES_Zjet_Stat12: 8.966639546117597e-07 - syst_JES_Zjet_Stat13: 1.858121094008676e-06 - syst_JES_Zjet_Stat2: 2.010731458947216e-08 - syst_JES_Zjet_Stat3: 2.2597868815443636e-07 - syst_JES_Zjet_Stat4: 3.499282497884388e-07 - syst_JES_Zjet_Stat5: 2.82734623808263e-07 - syst_JES_Zjet_Stat6: 4.834936892039026e-07 - syst_JES_Zjet_Stat7: 4.226208133480887e-07 - syst_JES_Zjet_Stat8: 2.029903138083194e-07 - syst_JES_Zjet_Stat9: 4.530144810047467e-07 - syst_JES_Zjet_Veto: 9.149207219754069e-07 - syst_JES_Zjet_dPhi: 8.817050867495322e-07 + syst_Unfolding_bias: 6.47500000e-08 + syst_cleaning: 1.30596631e-05 + syst_lumi: 2.58400000e-05 +- stat: 3.41770000e-05 + syst_JER_CROSS_CALIB_FORWARD: 1.16430000e-23 + syst_JER_NOISE_FORWARD: 8.42500000e-24 + syst_JER_NP0: 8.00699032e-07 + syst_JER_NP1: 2.89572284e-07 + syst_JER_NP2: 9.11228270e-07 + syst_JER_NP3: 1.25559640e-07 + syst_JER_NP4: 1.90586850e-07 + syst_JER_NP5: 2.50912749e-07 + syst_JER_NP6: 2.78255364e-07 + syst_JER_NP7: 1.59435277e-07 + syst_JER_NP8: 2.05504307e-07 + syst_JES_EtaIntercalibration_Modelling: 1.25516824e-05 + syst_JES_EtaIntercalibration_NonClosure: 2.19295165e-14 + syst_JES_EtaIntercalibration_Stat0: 1.45126596e-09 + syst_JES_EtaIntercalibration_Stat1: 1.45126596e-09 + syst_JES_EtaIntercalibration_Stat10: 5.30680907e-10 + syst_JES_EtaIntercalibration_Stat100: 2.72971207e-09 + syst_JES_EtaIntercalibration_Stat101: 1.02995122e-21 + syst_JES_EtaIntercalibration_Stat102: 2.59347005e-22 + syst_JES_EtaIntercalibration_Stat103: 9.42755255e-10 + syst_JES_EtaIntercalibration_Stat104: 1.02072316e-21 + syst_JES_EtaIntercalibration_Stat105: 1.55107973e-21 + syst_JES_EtaIntercalibration_Stat106: 2.42422935e-22 + syst_JES_EtaIntercalibration_Stat107: 8.88715269e-10 + syst_JES_EtaIntercalibration_Stat108: 8.97462126e-10 + syst_JES_EtaIntercalibration_Stat109: 1.73404092e-18 + syst_JES_EtaIntercalibration_Stat11: 4.64449424e-10 + syst_JES_EtaIntercalibration_Stat110: 1.73361261e-18 + syst_JES_EtaIntercalibration_Stat111: 1.70136389e-21 + syst_JES_EtaIntercalibration_Stat112: 3.96266434e-21 + syst_JES_EtaIntercalibration_Stat113: 1.60804857e-15 + syst_JES_EtaIntercalibration_Stat114: 8.08584436e-10 + syst_JES_EtaIntercalibration_Stat115: 9.32277564e-10 + syst_JES_EtaIntercalibration_Stat116: 1.50322333e-09 + syst_JES_EtaIntercalibration_Stat117: 8.43804389e-10 + syst_JES_EtaIntercalibration_Stat118: 7.67074069e-10 + syst_JES_EtaIntercalibration_Stat119: 1.60907520e-09 + syst_JES_EtaIntercalibration_Stat12: 5.62570102e-11 + syst_JES_EtaIntercalibration_Stat120: 7.50409800e-10 + syst_JES_EtaIntercalibration_Stat121: 1.56561536e-19 + syst_JES_EtaIntercalibration_Stat122: 2.69320012e-18 + syst_JES_EtaIntercalibration_Stat123: 3.79963141e-21 + syst_JES_EtaIntercalibration_Stat124: 3.68266467e-21 + syst_JES_EtaIntercalibration_Stat125: 1.49928367e-20 + syst_JES_EtaIntercalibration_Stat126: 6.08036436e-10 + syst_JES_EtaIntercalibration_Stat127: 7.82367350e-22 + syst_JES_EtaIntercalibration_Stat128: 1.45492268e-09 + syst_JES_EtaIntercalibration_Stat129: 1.17909359e-09 + syst_JES_EtaIntercalibration_Stat13: 1.45126596e-09 + syst_JES_EtaIntercalibration_Stat130: 1.10298809e-19 + syst_JES_EtaIntercalibration_Stat131: 1.65674022e-15 + syst_JES_EtaIntercalibration_Stat132: 8.54106399e-17 + syst_JES_EtaIntercalibration_Stat133: 1.25434191e-09 + syst_JES_EtaIntercalibration_Stat134: 1.15874178e-09 + syst_JES_EtaIntercalibration_Stat135: 3.59832749e-09 + syst_JES_EtaIntercalibration_Stat136: 2.06114042e-09 + syst_JES_EtaIntercalibration_Stat137: 1.97107325e-09 + syst_JES_EtaIntercalibration_Stat138: 1.01974553e-09 + syst_JES_EtaIntercalibration_Stat139: 3.74259115e-09 + syst_JES_EtaIntercalibration_Stat14: 1.45126596e-09 + syst_JES_EtaIntercalibration_Stat140: 3.52667637e-09 + syst_JES_EtaIntercalibration_Stat141: 2.12990011e-16 + syst_JES_EtaIntercalibration_Stat142: 8.27920285e-10 + syst_JES_EtaIntercalibration_Stat143: 6.90788402e-20 + syst_JES_EtaIntercalibration_Stat144: 5.90135336e-19 + syst_JES_EtaIntercalibration_Stat145: 6.93166734e-13 + syst_JES_EtaIntercalibration_Stat146: 3.24153251e-12 + syst_JES_EtaIntercalibration_Stat147: 7.77688981e-20 + syst_JES_EtaIntercalibration_Stat148: 5.72371942e-18 + syst_JES_EtaIntercalibration_Stat149: 1.61922660e-09 + syst_JES_EtaIntercalibration_Stat15: 8.88715269e-10 + syst_JES_EtaIntercalibration_Stat150: 8.50811577e-17 + syst_JES_EtaIntercalibration_Stat151: 2.43573747e-09 + syst_JES_EtaIntercalibration_Stat152: 1.11431465e-09 + syst_JES_EtaIntercalibration_Stat153: 2.90724715e-09 + syst_JES_EtaIntercalibration_Stat154: 1.80826100e-09 + syst_JES_EtaIntercalibration_Stat155: 1.08495662e-09 + syst_JES_EtaIntercalibration_Stat156: 4.17316058e-09 + syst_JES_EtaIntercalibration_Stat157: 2.91010153e-09 + syst_JES_EtaIntercalibration_Stat158: 3.04848630e-09 + syst_JES_EtaIntercalibration_Stat159: 2.11755998e-16 + syst_JES_EtaIntercalibration_Stat16: 8.88715269e-10 + syst_JES_EtaIntercalibration_Stat160: 1.73409519e-09 + syst_JES_EtaIntercalibration_Stat161: 1.07352511e-12 + syst_JES_EtaIntercalibration_Stat162: 9.26040964e-10 + syst_JES_EtaIntercalibration_Stat163: 6.65800330e-10 + syst_JES_EtaIntercalibration_Stat164: 1.81518764e-15 + syst_JES_EtaIntercalibration_Stat165: 4.78205798e-18 + syst_JES_EtaIntercalibration_Stat166: 7.86264463e-10 + syst_JES_EtaIntercalibration_Stat167: 2.25885471e-15 + syst_JES_EtaIntercalibration_Stat168: 9.16514687e-10 + syst_JES_EtaIntercalibration_Stat169: 1.24464628e-09 + syst_JES_EtaIntercalibration_Stat17: 8.88715269e-10 + syst_JES_EtaIntercalibration_Stat170: 5.87165371e-09 + syst_JES_EtaIntercalibration_Stat171: 9.56870822e-09 + syst_JES_EtaIntercalibration_Stat172: 1.23961221e-08 + syst_JES_EtaIntercalibration_Stat173: 8.77381415e-09 + syst_JES_EtaIntercalibration_Stat174: 1.33217995e-08 + syst_JES_EtaIntercalibration_Stat175: 6.98085960e-09 + syst_JES_EtaIntercalibration_Stat176: 2.98050780e-09 + syst_JES_EtaIntercalibration_Stat177: 7.17223588e-10 + syst_JES_EtaIntercalibration_Stat178: 8.98587957e-10 + syst_JES_EtaIntercalibration_Stat179: 8.93131999e-10 + syst_JES_EtaIntercalibration_Stat18: 8.88715269e-10 + syst_JES_EtaIntercalibration_Stat180: 4.66947957e-18 + syst_JES_EtaIntercalibration_Stat181: 7.21998470e-20 + syst_JES_EtaIntercalibration_Stat182: 8.71047684e-10 + syst_JES_EtaIntercalibration_Stat183: 7.64064192e-10 + syst_JES_EtaIntercalibration_Stat184: 7.24168040e-10 + syst_JES_EtaIntercalibration_Stat185: 1.01060083e-09 + syst_JES_EtaIntercalibration_Stat186: 5.27477639e-09 + syst_JES_EtaIntercalibration_Stat187: 2.88942364e-08 + syst_JES_EtaIntercalibration_Stat188: 5.56753240e-08 + syst_JES_EtaIntercalibration_Stat189: 5.54901349e-08 + syst_JES_EtaIntercalibration_Stat19: 1.45126596e-09 + syst_JES_EtaIntercalibration_Stat190: 5.03195119e-08 + syst_JES_EtaIntercalibration_Stat191: 4.77459514e-08 + syst_JES_EtaIntercalibration_Stat192: 3.02581704e-08 + syst_JES_EtaIntercalibration_Stat193: 7.09296107e-09 + syst_JES_EtaIntercalibration_Stat194: 2.64435600e-09 + syst_JES_EtaIntercalibration_Stat195: 3.98579433e-14 + syst_JES_EtaIntercalibration_Stat196: 1.91142028e-15 + syst_JES_EtaIntercalibration_Stat197: 1.81935943e-09 + syst_JES_EtaIntercalibration_Stat198: 1.08834704e-09 + syst_JES_EtaIntercalibration_Stat199: 1.37580932e-09 + syst_JES_EtaIntercalibration_Stat2: 1.45126596e-09 + syst_JES_EtaIntercalibration_Stat20: 1.45126596e-09 + syst_JES_EtaIntercalibration_Stat200: 1.68800970e-09 + syst_JES_EtaIntercalibration_Stat201: 1.31502153e-08 + syst_JES_EtaIntercalibration_Stat202: 4.84621945e-08 + syst_JES_EtaIntercalibration_Stat203: 1.16581441e-07 + syst_JES_EtaIntercalibration_Stat204: 1.22254931e-07 + syst_JES_EtaIntercalibration_Stat205: 9.67733217e-08 + syst_JES_EtaIntercalibration_Stat206: 1.13363745e-07 + syst_JES_EtaIntercalibration_Stat207: 5.54929732e-08 + syst_JES_EtaIntercalibration_Stat208: 1.11918400e-08 + syst_JES_EtaIntercalibration_Stat209: 2.32792670e-09 + syst_JES_EtaIntercalibration_Stat21: 1.45126596e-09 + syst_JES_EtaIntercalibration_Stat210: 6.75598113e-10 + syst_JES_EtaIntercalibration_Stat211: 2.43897819e-13 + syst_JES_EtaIntercalibration_Stat212: 7.56992805e-10 + syst_JES_EtaIntercalibration_Stat213: 2.23290663e-09 + syst_JES_EtaIntercalibration_Stat214: 1.13476631e-08 + syst_JES_EtaIntercalibration_Stat215: 5.33996234e-08 + syst_JES_EtaIntercalibration_Stat216: 1.42617695e-07 + syst_JES_EtaIntercalibration_Stat217: 1.13488980e-07 + syst_JES_EtaIntercalibration_Stat218: 1.19517139e-07 + syst_JES_EtaIntercalibration_Stat219: 1.35685735e-07 + syst_JES_EtaIntercalibration_Stat22: 1.45126596e-09 + syst_JES_EtaIntercalibration_Stat220: 6.82562547e-08 + syst_JES_EtaIntercalibration_Stat221: 1.35080191e-08 + syst_JES_EtaIntercalibration_Stat222: 2.33050335e-09 + syst_JES_EtaIntercalibration_Stat223: 1.12477090e-10 + syst_JES_EtaIntercalibration_Stat224: 7.56337918e-10 + syst_JES_EtaIntercalibration_Stat225: 6.86251927e-09 + syst_JES_EtaIntercalibration_Stat226: 4.62270570e-08 + syst_JES_EtaIntercalibration_Stat227: 1.51949098e-07 + syst_JES_EtaIntercalibration_Stat228: 3.44788529e-07 + syst_JES_EtaIntercalibration_Stat229: 3.52994798e-07 + syst_JES_EtaIntercalibration_Stat23: 1.44497956e-09 + syst_JES_EtaIntercalibration_Stat230: 3.48441444e-07 + syst_JES_EtaIntercalibration_Stat231: 4.39155471e-07 + syst_JES_EtaIntercalibration_Stat232: 1.75825275e-07 + syst_JES_EtaIntercalibration_Stat233: 3.61509678e-08 + syst_JES_EtaIntercalibration_Stat234: 4.39508578e-09 + syst_JES_EtaIntercalibration_Stat235: 1.76582580e-09 + syst_JES_EtaIntercalibration_Stat236: 1.70332168e-09 + syst_JES_EtaIntercalibration_Stat237: 1.05261329e-08 + syst_JES_EtaIntercalibration_Stat238: 3.54242671e-08 + syst_JES_EtaIntercalibration_Stat239: 5.76143810e-08 + syst_JES_EtaIntercalibration_Stat24: 8.88715269e-10 + syst_JES_EtaIntercalibration_Stat240: 4.59241240e-08 + syst_JES_EtaIntercalibration_Stat241: 4.95835628e-08 + syst_JES_EtaIntercalibration_Stat242: 4.52022864e-08 + syst_JES_EtaIntercalibration_Stat243: 3.25570776e-08 + syst_JES_EtaIntercalibration_Stat244: 9.18985549e-09 + syst_JES_EtaIntercalibration_Stat245: 2.99330802e-09 + syst_JES_EtaIntercalibration_Stat25: 9.25224798e-22 + syst_JES_EtaIntercalibration_Stat26: 1.27380194e-21 + syst_JES_EtaIntercalibration_Stat27: 1.38988938e-21 + syst_JES_EtaIntercalibration_Stat28: 1.26951100e-21 + syst_JES_EtaIntercalibration_Stat29: 1.61094681e-15 + syst_JES_EtaIntercalibration_Stat3: 1.45133667e-09 + syst_JES_EtaIntercalibration_Stat30: 1.33970343e-21 + syst_JES_EtaIntercalibration_Stat31: 2.21356093e-10 + syst_JES_EtaIntercalibration_Stat32: 5.34510879e-11 + syst_JES_EtaIntercalibration_Stat33: 4.64449424e-10 + syst_JES_EtaIntercalibration_Stat34: 5.34510879e-11 + syst_JES_EtaIntercalibration_Stat35: 8.59756866e-22 + syst_JES_EtaIntercalibration_Stat36: 1.22521728e-09 + syst_JES_EtaIntercalibration_Stat37: 9.09153469e-10 + syst_JES_EtaIntercalibration_Stat38: 1.32258444e-21 + syst_JES_EtaIntercalibration_Stat39: 1.32303385e-21 + syst_JES_EtaIntercalibration_Stat4: 1.45126596e-09 + syst_JES_EtaIntercalibration_Stat40: 8.88542064e-10 + syst_JES_EtaIntercalibration_Stat41: 1.45133667e-09 + syst_JES_EtaIntercalibration_Stat42: 1.45126596e-09 + syst_JES_EtaIntercalibration_Stat43: 1.45126596e-09 + syst_JES_EtaIntercalibration_Stat44: 1.45126596e-09 + syst_JES_EtaIntercalibration_Stat45: 1.45126596e-09 + syst_JES_EtaIntercalibration_Stat46: 1.33626513e-21 + syst_JES_EtaIntercalibration_Stat47: 7.41325677e-22 + syst_JES_EtaIntercalibration_Stat48: 7.90051224e-22 + syst_JES_EtaIntercalibration_Stat49: 8.87502834e-10 + syst_JES_EtaIntercalibration_Stat5: 1.45126596e-09 + syst_JES_EtaIntercalibration_Stat50: 1.81071709e-21 + syst_JES_EtaIntercalibration_Stat51: 1.61064072e-15 + syst_JES_EtaIntercalibration_Stat52: 1.61686942e-15 + syst_JES_EtaIntercalibration_Stat53: 2.21356093e-10 + syst_JES_EtaIntercalibration_Stat54: 5.34510879e-11 + syst_JES_EtaIntercalibration_Stat55: 5.34510879e-11 + syst_JES_EtaIntercalibration_Stat56: 5.34510879e-11 + syst_JES_EtaIntercalibration_Stat57: 1.48049264e-21 + syst_JES_EtaIntercalibration_Stat58: 2.55901614e-22 + syst_JES_EtaIntercalibration_Stat59: 5.77465739e-10 + syst_JES_EtaIntercalibration_Stat6: 9.65271915e-10 + syst_JES_EtaIntercalibration_Stat60: 1.43119360e-09 + syst_JES_EtaIntercalibration_Stat61: 7.70339488e-22 + syst_JES_EtaIntercalibration_Stat62: 8.86810013e-10 + syst_JES_EtaIntercalibration_Stat63: 1.27048489e-21 + syst_JES_EtaIntercalibration_Stat64: 1.45126596e-09 + syst_JES_EtaIntercalibration_Stat65: 1.45126596e-09 + syst_JES_EtaIntercalibration_Stat66: 1.45126596e-09 + syst_JES_EtaIntercalibration_Stat67: 1.45126596e-09 + syst_JES_EtaIntercalibration_Stat68: 1.46627340e-24 + syst_JES_EtaIntercalibration_Stat69: 8.77543542e-10 + syst_JES_EtaIntercalibration_Stat7: 8.88715269e-10 + syst_JES_EtaIntercalibration_Stat70: 7.04251858e-10 + syst_JES_EtaIntercalibration_Stat71: 4.53624107e-12 + syst_JES_EtaIntercalibration_Stat72: 1.62119955e-15 + syst_JES_EtaIntercalibration_Stat73: 1.62119954e-15 + syst_JES_EtaIntercalibration_Stat74: 7.16116406e-10 + syst_JES_EtaIntercalibration_Stat75: 1.36052591e-10 + syst_JES_EtaIntercalibration_Stat76: 1.30943041e-10 + syst_JES_EtaIntercalibration_Stat77: 4.67134103e-10 + syst_JES_EtaIntercalibration_Stat78: 3.33761393e-09 + syst_JES_EtaIntercalibration_Stat79: 3.78539704e-09 + syst_JES_EtaIntercalibration_Stat8: 8.50012810e-22 + syst_JES_EtaIntercalibration_Stat80: 7.86957284e-12 + syst_JES_EtaIntercalibration_Stat81: 4.05500197e-22 + syst_JES_EtaIntercalibration_Stat82: 7.28934809e-22 + syst_JES_EtaIntercalibration_Stat83: 1.52056860e-21 + syst_JES_EtaIntercalibration_Stat84: 7.85267584e-22 + syst_JES_EtaIntercalibration_Stat85: 7.83607072e-22 + syst_JES_EtaIntercalibration_Stat86: 8.88715269e-10 + syst_JES_EtaIntercalibration_Stat87: 8.88715269e-10 + syst_JES_EtaIntercalibration_Stat88: 7.86211362e-22 + syst_JES_EtaIntercalibration_Stat89: 8.64120148e-10 + syst_JES_EtaIntercalibration_Stat9: 5.62483500e-11 + syst_JES_EtaIntercalibration_Stat90: 2.09168969e-21 + syst_JES_EtaIntercalibration_Stat91: 2.10822883e-21 + syst_JES_EtaIntercalibration_Stat92: 2.74497597e-21 + syst_JES_EtaIntercalibration_Stat93: 1.62119957e-15 + syst_JES_EtaIntercalibration_Stat94: 1.61064345e-15 + syst_JES_EtaIntercalibration_Stat95: 7.31098646e-10 + syst_JES_EtaIntercalibration_Stat96: 1.30943041e-10 + syst_JES_EtaIntercalibration_Stat97: 1.27851212e-09 + syst_JES_EtaIntercalibration_Stat98: 5.24487725e-10 + syst_JES_EtaIntercalibration_Stat99: 8.88715269e-12 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.15127763e-05 + syst_JES_Flavour_Comp: 1.10950825e-05 + syst_JES_Flavour_Response: 7.96179545e-06 + syst_JES_Gjet_Generator: 2.09117258e-05 + syst_JES_Gjet_OOC: 1.74107000e-05 + syst_JES_Gjet_Purity: 5.63333922e-07 + syst_JES_Gjet_Stat1: 3.18420530e-09 + syst_JES_Gjet_Stat10: 1.11188721e-06 + syst_JES_Gjet_Stat11: 1.09538379e-06 + syst_JES_Gjet_Stat12: 6.01478246e-07 + syst_JES_Gjet_Stat13: 5.01652636e-06 + syst_JES_Gjet_Stat14: 1.46384588e-05 + syst_JES_Gjet_Stat15: 2.33361886e-05 + syst_JES_Gjet_Stat2: 1.02486917e-07 + syst_JES_Gjet_Stat3: 1.19291732e-07 + syst_JES_Gjet_Stat4: 4.11412219e-07 + syst_JES_Gjet_Stat5: 4.06560882e-07 + syst_JES_Gjet_Stat6: 3.92798202e-07 + syst_JES_Gjet_Stat7: 4.46047217e-07 + syst_JES_Gjet_Stat8: 9.91985346e-08 + syst_JES_Gjet_Stat9: 4.45593433e-07 + syst_JES_Gjet_Veto: 2.02060634e-05 + syst_JES_Gjet_dPhi: 1.05200414e-06 + syst_JES_LArESZee: 2.74426876e-05 + syst_JES_LArEsmear: 2.73009377e-06 + syst_JES_LAr_JVT: 3.58450342e-06 + syst_JES_MJB_Alpha: 6.24737167e-07 + syst_JES_MJB_Asym: 1.46533034e-05 + syst_JES_MJB_Beta: 1.13302009e-06 + syst_JES_MJB_Fragmentation: 3.44821142e-06 + syst_JES_MJB_Stat1: 1.30219246e-09 + syst_JES_MJB_Stat10: 7.55465327e-08 + syst_JES_MJB_Stat11: 1.11029409e-07 + syst_JES_MJB_Stat12: 2.04264241e-07 + syst_JES_MJB_Stat13: 3.76960906e-07 + syst_JES_MJB_Stat14: 3.44558888e-06 + syst_JES_MJB_Stat15: 5.39029684e-06 + syst_JES_MJB_Stat16: 1.04484426e-05 + syst_JES_MJB_Stat2: 2.40833817e-09 + syst_JES_MJB_Stat3: 9.57967133e-09 + syst_JES_MJB_Stat4: 7.73780608e-09 + syst_JES_MJB_Stat5: 7.98626603e-09 + syst_JES_MJB_Stat6: 9.24542065e-09 + syst_JES_MJB_Stat7: 1.58754955e-08 + syst_JES_MJB_Stat8: 2.52117155e-08 + syst_JES_MJB_Stat9: 3.92277258e-08 + syst_JES_MJB_Threshold: 3.54900113e-06 + syst_JES_Pileup_MuOffset: 7.38955146e-06 + syst_JES_Pileup_NPVOffset: 5.46450371e-06 + syst_JES_Pileup_Pt_term: 1.83526640e-06 + syst_JES_Pileup_Rho_topology: 7.71566334e-06 + syst_JES_PunchThrough_MC15: 1.62940994e-05 + syst_JES_SingleParticle_HighPt: 2.03010412e-06 + syst_JES_Zjet_MC: 7.97112846e-06 + syst_JES_Zjet_MuScale: 9.17808482e-07 + syst_JES_Zjet_MuSmearID: 1.00164316e-07 + syst_JES_Zjet_MuSmearMS: 1.47369502e-06 + syst_JES_Zjet_OOC: 4.88008197e-06 + syst_JES_Zjet_Stat1: 9.97750234e-07 + syst_JES_Zjet_Stat10: 5.39970536e-07 + syst_JES_Zjet_Stat11: 5.04753900e-07 + syst_JES_Zjet_Stat12: 8.96663955e-07 + syst_JES_Zjet_Stat13: 1.85812109e-06 + syst_JES_Zjet_Stat2: 2.01073146e-08 + syst_JES_Zjet_Stat3: 2.25978688e-07 + syst_JES_Zjet_Stat4: 3.49928250e-07 + syst_JES_Zjet_Stat5: 2.82734624e-07 + syst_JES_Zjet_Stat6: 4.83493689e-07 + syst_JES_Zjet_Stat7: 4.22620813e-07 + syst_JES_Zjet_Stat8: 2.02990314e-07 + syst_JES_Zjet_Stat9: 4.53014481e-07 + syst_JES_Zjet_Veto: 9.14920722e-07 + syst_JES_Zjet_dPhi: 8.81705087e-07 syst_PRW: 0.0 - syst_Unfolding_bias: 7.393e-08 - syst_cleaning: 5.9487284985953085e-06 - syst_lumi: 1.2017e-05 -- stat: 2.5174e-05 - syst_JER_CROSS_CALIB_FORWARD: 3.568e-24 - syst_JER_NOISE_FORWARD: 2.566e-24 - syst_JER_NP0: 4.691160064419034e-07 - syst_JER_NP1: 1.8806817912661356e-07 - syst_JER_NP2: 5.810713790060564e-07 - syst_JER_NP3: 9.804299108044388e-08 - syst_JER_NP4: 1.4727458394101816e-07 - syst_JER_NP5: 1.9029888990742957e-07 - syst_JER_NP6: 1.8998965103394448e-07 - syst_JER_NP7: 1.2091446189096457e-07 - syst_JER_NP8: 1.3460224245903188e-07 - syst_JES_EtaIntercalibration_Modelling: 6.606457901175183e-06 - syst_JES_EtaIntercalibration_NonClosure: 1.8828587411367322e-15 - syst_JES_EtaIntercalibration_Stat0: 7.98747820028324e-10 - syst_JES_EtaIntercalibration_Stat1: 7.98747820028324e-10 - syst_JES_EtaIntercalibration_Stat10: 3.261109038193602e-10 - syst_JES_EtaIntercalibration_Stat100: 1.4609848561814727e-09 - syst_JES_EtaIntercalibration_Stat101: 1.2066635270447185e-22 - syst_JES_EtaIntercalibration_Stat102: 4.262959961106836e-23 - syst_JES_EtaIntercalibration_Stat103: 5.188358194072791e-10 - syst_JES_EtaIntercalibration_Stat104: 1.841180349667028e-22 - syst_JES_EtaIntercalibration_Stat105: 2.515722941820104e-22 - syst_JES_EtaIntercalibration_Stat106: 3.8601348990255513e-23 - syst_JES_EtaIntercalibration_Stat107: 4.891311480574509e-10 - syst_JES_EtaIntercalibration_Stat108: 4.938942877782653e-10 - syst_JES_EtaIntercalibration_Stat109: 1.871473009775121e-19 - syst_JES_EtaIntercalibration_Stat11: 2.8812665183908294e-10 - syst_JES_EtaIntercalibration_Stat110: 1.87239250922431e-19 - syst_JES_EtaIntercalibration_Stat111: 1.7069267030763213e-22 - syst_JES_EtaIntercalibration_Stat112: 2.2863554229384376e-22 - syst_JES_EtaIntercalibration_Stat113: 1.3694365969989263e-16 - syst_JES_EtaIntercalibration_Stat114: 4.488388929705179e-10 - syst_JES_EtaIntercalibration_Stat115: 7.715905893360805e-10 - syst_JES_EtaIntercalibration_Stat116: 1.1861834429378957e-09 - syst_JES_EtaIntercalibration_Stat117: 1.1778026012452172e-09 - syst_JES_EtaIntercalibration_Stat118: 1.2074865589314027e-09 - syst_JES_EtaIntercalibration_Stat119: 7.779506202192881e-10 - syst_JES_EtaIntercalibration_Stat12: 5.610112565715401e-12 - syst_JES_EtaIntercalibration_Stat120: 4.411129787254055e-10 - syst_JES_EtaIntercalibration_Stat121: 1.834979258738365e-20 - syst_JES_EtaIntercalibration_Stat122: 2.8554493710579075e-19 - syst_JES_EtaIntercalibration_Stat123: 4.997285623966275e-22 - syst_JES_EtaIntercalibration_Stat124: 4.840415770365186e-22 - syst_JES_EtaIntercalibration_Stat125: 2.098128601873584e-21 - syst_JES_EtaIntercalibration_Stat126: 3.3463221602231537e-10 - syst_JES_EtaIntercalibration_Stat127: 1.363990010960491e-22 - syst_JES_EtaIntercalibration_Stat128: 8.005538831964143e-10 - syst_JES_EtaIntercalibration_Stat129: 6.489128350282846e-10 - syst_JES_EtaIntercalibration_Stat13: 7.98747820028324e-10 - syst_JES_EtaIntercalibration_Stat130: 1.2336725132708437e-20 - syst_JES_EtaIntercalibration_Stat131: 1.409179548531698e-16 - syst_JES_EtaIntercalibration_Stat132: 7.174273920008074e-18 - syst_JES_EtaIntercalibration_Stat133: 9.055553917348183e-10 - syst_JES_EtaIntercalibration_Stat134: 1.0491031555191507e-09 - syst_JES_EtaIntercalibration_Stat135: 1.9551470296374133e-09 - syst_JES_EtaIntercalibration_Stat136: 1.506884198908934e-09 - syst_JES_EtaIntercalibration_Stat137: 1.0848699738129898e-09 - syst_JES_EtaIntercalibration_Stat138: 1.11379579055735e-10 - syst_JES_EtaIntercalibration_Stat139: 3.3657867950896715e-09 - syst_JES_EtaIntercalibration_Stat14: 7.98747820028324e-10 - syst_JES_EtaIntercalibration_Stat140: 2.7484708530381033e-09 - syst_JES_EtaIntercalibration_Stat141: 1.8557229554812323e-17 - syst_JES_EtaIntercalibration_Stat142: 4.5561596487152607e-10 - syst_JES_EtaIntercalibration_Stat143: 1.01310696375062e-20 - syst_JES_EtaIntercalibration_Stat144: 6.859137463996475e-20 - syst_JES_EtaIntercalibration_Stat145: 6.298602769160494e-14 - syst_JES_EtaIntercalibration_Stat146: 2.945351777619859e-13 - syst_JES_EtaIntercalibration_Stat147: 9.400673697533596e-21 - syst_JES_EtaIntercalibration_Stat148: 5.422827672672256e-19 - syst_JES_EtaIntercalibration_Stat149: 8.912178451422524e-10 - syst_JES_EtaIntercalibration_Stat15: 4.89131148057405e-10 - syst_JES_EtaIntercalibration_Stat150: 7.13645852436627e-18 - syst_JES_EtaIntercalibration_Stat151: 8.556665382466466e-10 - syst_JES_EtaIntercalibration_Stat152: 1.0357663615786642e-09 - syst_JES_EtaIntercalibration_Stat153: 8.138906626495959e-10 - syst_JES_EtaIntercalibration_Stat154: 1.29470797488735e-09 - syst_JES_EtaIntercalibration_Stat155: 1.0517878508151417e-10 - syst_JES_EtaIntercalibration_Stat156: 3.494089290144143e-09 - syst_JES_EtaIntercalibration_Stat157: 2.3582364179191197e-09 - syst_JES_EtaIntercalibration_Stat158: 2.5073690653750996e-09 - syst_JES_EtaIntercalibration_Stat159: 1.8470119835832143e-17 - syst_JES_EtaIntercalibration_Stat16: 4.89131148057405e-10 - syst_JES_EtaIntercalibration_Stat160: 9.544853731199864e-10 - syst_JES_EtaIntercalibration_Stat161: 9.754044469176608e-14 - syst_JES_EtaIntercalibration_Stat162: 5.096559501238608e-10 - syst_JES_EtaIntercalibration_Stat163: 3.6641534833840914e-10 - syst_JES_EtaIntercalibration_Stat164: 1.5138102678992292e-16 - syst_JES_EtaIntercalibration_Stat165: 4.828289014495714e-19 - syst_JES_EtaIntercalibration_Stat166: 4.327528941204533e-10 - syst_JES_EtaIntercalibration_Stat167: 1.9305958115307303e-16 - syst_JES_EtaIntercalibration_Stat168: 5.043731954001933e-10 - syst_JES_EtaIntercalibration_Stat169: 1.541023143888501e-09 - syst_JES_EtaIntercalibration_Stat17: 4.890445455171026e-10 - syst_JES_EtaIntercalibration_Stat170: 3.0059742930739566e-09 - syst_JES_EtaIntercalibration_Stat171: 5.54711916223187e-09 - syst_JES_EtaIntercalibration_Stat172: 7.366371223336494e-09 - syst_JES_EtaIntercalibration_Stat173: 5.249323450455306e-09 - syst_JES_EtaIntercalibration_Stat174: 7.0762291335145446e-09 - syst_JES_EtaIntercalibration_Stat175: 3.111020732814232e-09 - syst_JES_EtaIntercalibration_Stat176: 8.504524552848324e-10 - syst_JES_EtaIntercalibration_Stat177: 4.620300466680772e-10 - syst_JES_EtaIntercalibration_Stat178: 4.945005053054658e-10 - syst_JES_EtaIntercalibration_Stat179: 4.915560192174172e-10 - syst_JES_EtaIntercalibration_Stat18: 4.89131148057405e-10 - syst_JES_EtaIntercalibration_Stat180: 4.611409579239303e-19 - syst_JES_EtaIntercalibration_Stat181: 9.003949508410184e-21 - syst_JES_EtaIntercalibration_Stat182: 4.793450052804117e-10 - syst_JES_EtaIntercalibration_Stat183: 4.205034125901953e-10 - syst_JES_EtaIntercalibration_Stat184: 3.9613846181196545e-10 - syst_JES_EtaIntercalibration_Stat185: 1.7072132467855326e-10 - syst_JES_EtaIntercalibration_Stat186: 3.0342574161563815e-09 - syst_JES_EtaIntercalibration_Stat187: 1.3507798044092898e-08 - syst_JES_EtaIntercalibration_Stat188: 3.2657426031455696e-08 - syst_JES_EtaIntercalibration_Stat189: 3.158646703890766e-08 - syst_JES_EtaIntercalibration_Stat19: 7.98747820028324e-10 - syst_JES_EtaIntercalibration_Stat190: 2.7155380682288367e-08 - syst_JES_EtaIntercalibration_Stat191: 2.3220521096650694e-08 - syst_JES_EtaIntercalibration_Stat192: 1.4429767842900314e-08 - syst_JES_EtaIntercalibration_Stat193: 4.083444551784681e-09 - syst_JES_EtaIntercalibration_Stat194: 6.883859663735164e-10 - syst_JES_EtaIntercalibration_Stat195: 3.29172153857218e-15 - syst_JES_EtaIntercalibration_Stat196: 1.5901708446360976e-16 - syst_JES_EtaIntercalibration_Stat197: 1.0014851109726994e-09 - syst_JES_EtaIntercalibration_Stat198: 5.988723531374836e-10 - syst_JES_EtaIntercalibration_Stat199: 7.63397615925017e-10 - syst_JES_EtaIntercalibration_Stat2: 7.98747820028324e-10 - syst_JES_EtaIntercalibration_Stat20: 7.98747820028324e-10 - syst_JES_EtaIntercalibration_Stat200: 7.093948882674586e-10 - syst_JES_EtaIntercalibration_Stat201: 7.025733556006803e-09 - syst_JES_EtaIntercalibration_Stat202: 2.3197221277558225e-08 - syst_JES_EtaIntercalibration_Stat203: 6.633887774148731e-08 - syst_JES_EtaIntercalibration_Stat204: 7.109742242163213e-08 - syst_JES_EtaIntercalibration_Stat205: 5.762614575867451e-08 - syst_JES_EtaIntercalibration_Stat206: 6.616710965426856e-08 - syst_JES_EtaIntercalibration_Stat207: 2.647081553333784e-08 - syst_JES_EtaIntercalibration_Stat208: 4.7274490742894315e-09 - syst_JES_EtaIntercalibration_Stat209: 4.997871999161243e-10 - syst_JES_EtaIntercalibration_Stat21: 7.98747820028324e-10 - syst_JES_EtaIntercalibration_Stat210: 3.720381543874105e-10 - syst_JES_EtaIntercalibration_Stat211: 2.013945927693939e-14 - syst_JES_EtaIntercalibration_Stat212: 2.2005705510161844e-10 - syst_JES_EtaIntercalibration_Stat213: 1.232406536009932e-09 - syst_JES_EtaIntercalibration_Stat214: 6.26166772912776e-09 - syst_JES_EtaIntercalibration_Stat215: 2.9514969083500663e-08 - syst_JES_EtaIntercalibration_Stat216: 8.077627622018732e-08 - syst_JES_EtaIntercalibration_Stat217: 6.635186715534086e-08 - syst_JES_EtaIntercalibration_Stat218: 7.205801620916302e-08 - syst_JES_EtaIntercalibration_Stat219: 7.944890228945898e-08 - syst_JES_EtaIntercalibration_Stat22: 7.98747820028324e-10 - syst_JES_EtaIntercalibration_Stat220: 3.410612115148834e-08 - syst_JES_EtaIntercalibration_Stat221: 5.289989902400571e-09 - syst_JES_EtaIntercalibration_Stat222: 5.002996378921336e-10 - syst_JES_EtaIntercalibration_Stat223: 1.4080063327584859e-11 - syst_JES_EtaIntercalibration_Stat224: 4.671483569068289e-10 - syst_JES_EtaIntercalibration_Stat225: 4.956121870979365e-09 - syst_JES_EtaIntercalibration_Stat226: 2.0837089528050697e-08 - syst_JES_EtaIntercalibration_Stat227: 8.063769388443595e-08 - syst_JES_EtaIntercalibration_Stat228: 2.089888693208325e-07 - syst_JES_EtaIntercalibration_Stat229: 2.0992884508804404e-07 - syst_JES_EtaIntercalibration_Stat23: 7.952867706054214e-10 - syst_JES_EtaIntercalibration_Stat230: 2.0030112331187762e-07 - syst_JES_EtaIntercalibration_Stat231: 2.44520198552185e-07 - syst_JES_EtaIntercalibration_Stat232: 8.528099480540785e-08 - syst_JES_EtaIntercalibration_Stat233: 1.2897480403164023e-08 - syst_JES_EtaIntercalibration_Stat234: 1.7905587814981107e-09 - syst_JES_EtaIntercalibration_Stat235: 6.150512417677538e-10 - syst_JES_EtaIntercalibration_Stat236: 7.094026413116883e-10 - syst_JES_EtaIntercalibration_Stat237: 6.1158574828064794e-09 - syst_JES_EtaIntercalibration_Stat238: 1.861829946584811e-08 - syst_JES_EtaIntercalibration_Stat239: 3.3986937299497875e-08 - syst_JES_EtaIntercalibration_Stat24: 4.891311480574051e-10 - syst_JES_EtaIntercalibration_Stat240: 2.5718092367047754e-08 - syst_JES_EtaIntercalibration_Stat241: 2.560311113907839e-08 - syst_JES_EtaIntercalibration_Stat242: 2.1383998690609762e-08 - syst_JES_EtaIntercalibration_Stat243: 1.632020774224397e-08 - syst_JES_EtaIntercalibration_Stat244: 3.111915487284319e-09 - syst_JES_EtaIntercalibration_Stat245: 8.906339272113992e-10 - syst_JES_EtaIntercalibration_Stat25: 1.9790411990405858e-22 - syst_JES_EtaIntercalibration_Stat26: 2.2168488333668584e-22 - syst_JES_EtaIntercalibration_Stat27: 2.450125455971592e-22 - syst_JES_EtaIntercalibration_Stat28: 2.2084303815153423e-22 - syst_JES_EtaIntercalibration_Stat29: 1.3715263777266552e-16 - syst_JES_EtaIntercalibration_Stat3: 7.98747820028324e-10 - syst_JES_EtaIntercalibration_Stat30: 2.348670421749293e-22 - syst_JES_EtaIntercalibration_Stat31: 1.518142532834121e-10 - syst_JES_EtaIntercalibration_Stat32: 5.3555010970027585e-12 - syst_JES_EtaIntercalibration_Stat33: 2.8812665183908315e-10 - syst_JES_EtaIntercalibration_Stat34: 5.355501097002431e-12 - syst_JES_EtaIntercalibration_Stat35: 1.517447110995553e-22 - syst_JES_EtaIntercalibration_Stat36: 6.7431828352789e-10 - syst_JES_EtaIntercalibration_Stat37: 5.003894783066029e-10 - syst_JES_EtaIntercalibration_Stat38: 2.3149170071516605e-22 - syst_JES_EtaIntercalibration_Stat39: 2.315000377969732e-22 - syst_JES_EtaIntercalibration_Stat4: 7.98747820028324e-10 - syst_JES_EtaIntercalibration_Stat40: 4.889579429766494e-10 - syst_JES_EtaIntercalibration_Stat41: 7.986771109152934e-10 - syst_JES_EtaIntercalibration_Stat42: 7.98747820028324e-10 - syst_JES_EtaIntercalibration_Stat43: 7.98747820028324e-10 - syst_JES_EtaIntercalibration_Stat44: 7.98747820028324e-10 - syst_JES_EtaIntercalibration_Stat45: 7.98747820028324e-10 - syst_JES_EtaIntercalibration_Stat46: 2.3438290786659337e-22 - syst_JES_EtaIntercalibration_Stat47: 1.2842575160379634e-22 - syst_JES_EtaIntercalibration_Stat48: 1.6339153489394733e-22 - syst_JES_EtaIntercalibration_Stat49: 4.884383277343938e-10 - syst_JES_EtaIntercalibration_Stat5: 7.98747820028324e-10 - syst_JES_EtaIntercalibration_Stat50: 2.651403125085282e-22 - syst_JES_EtaIntercalibration_Stat51: 1.371162824284556e-16 - syst_JES_EtaIntercalibration_Stat52: 1.3769803816740276e-16 - syst_JES_EtaIntercalibration_Stat53: 1.51814253283368e-10 - syst_JES_EtaIntercalibration_Stat54: 5.35550109700295e-12 - syst_JES_EtaIntercalibration_Stat55: 5.355501096998616e-12 - syst_JES_EtaIntercalibration_Stat56: 5.3555010970022e-12 - syst_JES_EtaIntercalibration_Stat57: 2.398073772855362e-22 - syst_JES_EtaIntercalibration_Stat58: 4.1845175257369877e-23 - syst_JES_EtaIntercalibration_Stat59: 3.1783132318888907e-10 - syst_JES_EtaIntercalibration_Stat6: 5.312199826813748e-10 - syst_JES_EtaIntercalibration_Stat60: 7.876905023548272e-10 - syst_JES_EtaIntercalibration_Stat61: 1.339344229716543e-22 - syst_JES_EtaIntercalibration_Stat62: 4.880919175728649e-10 - syst_JES_EtaIntercalibration_Stat63: 2.2119032528571407e-22 - syst_JES_EtaIntercalibration_Stat64: 7.98747820028324e-10 - syst_JES_EtaIntercalibration_Stat65: 7.98747820028324e-10 - syst_JES_EtaIntercalibration_Stat66: 7.98747820028324e-10 - syst_JES_EtaIntercalibration_Stat67: 7.98747820028324e-10 - syst_JES_EtaIntercalibration_Stat68: 4.910876372909422e-25 - syst_JES_EtaIntercalibration_Stat69: 4.829823676905982e-10 - syst_JES_EtaIntercalibration_Stat7: 4.891311480574007e-10 - syst_JES_EtaIntercalibration_Stat70: 3.875463681935376e-10 - syst_JES_EtaIntercalibration_Stat71: 4.1222809222039917e-13 - syst_JES_EtaIntercalibration_Stat72: 1.3804444781478618e-16 - syst_JES_EtaIntercalibration_Stat73: 1.381310483607084e-16 - syst_JES_EtaIntercalibration_Stat74: 3.9412816126230154e-10 - syst_JES_EtaIntercalibration_Stat75: 2.8674101119301315e-11 - syst_JES_EtaIntercalibration_Stat76: 2.8526876800656808e-11 - syst_JES_EtaIntercalibration_Stat77: 2.882132543794631e-10 - syst_JES_EtaIntercalibration_Stat78: 1.852223141929719e-09 - syst_JES_EtaIntercalibration_Stat79: 2.0836571215053585e-09 - syst_JES_EtaIntercalibration_Stat8: 1.4982903120597158e-22 - syst_JES_EtaIntercalibration_Stat80: 7.150771759008264e-13 - syst_JES_EtaIntercalibration_Stat81: 7.210313082661529e-23 - syst_JES_EtaIntercalibration_Stat82: 1.3119404579000527e-22 - syst_JES_EtaIntercalibration_Stat83: 2.7005734113332305e-22 - syst_JES_EtaIntercalibration_Stat84: 1.3784523851316013e-22 - syst_JES_EtaIntercalibration_Stat85: 1.369445433572291e-22 - syst_JES_EtaIntercalibration_Stat86: 4.891311480574509e-10 - syst_JES_EtaIntercalibration_Stat87: 4.891311480574509e-10 - syst_JES_EtaIntercalibration_Stat88: 1.3724945666107825e-22 - syst_JES_EtaIntercalibration_Stat89: 4.755345492180351e-10 - syst_JES_EtaIntercalibration_Stat9: 5.610112565765679e-12 - syst_JES_EtaIntercalibration_Stat90: 3.0841708688104084e-22 - syst_JES_EtaIntercalibration_Stat91: 3.095679472296833e-22 - syst_JES_EtaIntercalibration_Stat92: 3.988320919343753e-22 - syst_JES_EtaIntercalibration_Stat93: 1.381310531957279e-16 - syst_JES_EtaIntercalibration_Stat94: 1.3711655340895204e-16 - syst_JES_EtaIntercalibration_Stat95: 4.023554025976099e-10 - syst_JES_EtaIntercalibration_Stat96: 2.8526876800578953e-11 - syst_JES_EtaIntercalibration_Stat97: 6.86228853007508e-10 - syst_JES_EtaIntercalibration_Stat98: 5.770880207288573e-10 - syst_JES_EtaIntercalibration_Stat99: 8.074820864912121e-13 - syst_JES_EtaIntercalibration_TotalStat_MJB: 7.517817020252621e-06 - syst_JES_Flavour_Comp: 5.102694459792787e-06 - syst_JES_Flavour_Response: 5.718437199095571e-06 - syst_JES_Gjet_Generator: 1.2650854704327293e-05 - syst_JES_Gjet_OOC: 1.056781418979346e-05 - syst_JES_Gjet_Purity: 7.700117791306832e-08 - syst_JES_Gjet_Stat1: 1.4024796896925103e-08 - syst_JES_Gjet_Stat10: 7.57125570826927e-07 - syst_JES_Gjet_Stat11: 7.398121653500975e-07 - syst_JES_Gjet_Stat12: 3.193715078086961e-07 - syst_JES_Gjet_Stat13: 3.2180198880678165e-06 - syst_JES_Gjet_Stat14: 9.850665408996489e-06 - syst_JES_Gjet_Stat15: 1.543886977728616e-05 - syst_JES_Gjet_Stat2: 5.6871689793780527e-08 - syst_JES_Gjet_Stat3: 6.670728520933827e-08 - syst_JES_Gjet_Stat4: 2.710650844354543e-07 - syst_JES_Gjet_Stat5: 2.629578483331501e-07 - syst_JES_Gjet_Stat6: 2.1891480077875046e-07 - syst_JES_Gjet_Stat7: 2.8287810095516405e-07 - syst_JES_Gjet_Stat8: 5.373233756314721e-08 - syst_JES_Gjet_Stat9: 2.8262651591809287e-07 - syst_JES_Gjet_Veto: 1.2588878305869829e-05 - syst_JES_Gjet_dPhi: 4.5812523396992663e-07 - syst_JES_LArESZee: 1.586958726621458e-05 - syst_JES_LArEsmear: 1.605002492209903e-06 - syst_JES_LAr_JVT: 2.1140231786808773e-06 - syst_JES_MJB_Alpha: 3.3808881599366755e-07 - syst_JES_MJB_Asym: 1.0314687149884866e-05 - syst_JES_MJB_Beta: 7.931727727929142e-07 - syst_JES_MJB_Fragmentation: 2.2955009801784013e-06 - syst_JES_MJB_Stat1: 7.465138093163447e-10 - syst_JES_MJB_Stat10: 3.101422052865427e-08 - syst_JES_MJB_Stat11: 4.707495592138138e-08 - syst_JES_MJB_Stat12: 9.206213173721321e-08 - syst_JES_MJB_Stat13: 1.751620035852525e-07 - syst_JES_MJB_Stat14: 2.5795024229490463e-06 - syst_JES_MJB_Stat15: 4.953655922649452e-06 - syst_JES_MJB_Stat16: 7.89844965800251e-06 - syst_JES_MJB_Stat2: 5.26640462626069e-10 - syst_JES_MJB_Stat3: 4.298420407545078e-09 - syst_JES_MJB_Stat4: 4.383884664313148e-09 - syst_JES_MJB_Stat5: 3.996965442682736e-09 - syst_JES_MJB_Stat6: 3.819912400828061e-09 - syst_JES_MJB_Stat7: 6.867341843828658e-09 - syst_JES_MJB_Stat8: 1.1266686058908362e-08 - syst_JES_MJB_Stat9: 1.534233967652913e-08 - syst_JES_MJB_Threshold: 2.0140317773064058e-06 - syst_JES_Pileup_MuOffset: 4.8317463457843065e-06 - syst_JES_Pileup_NPVOffset: 3.3235036858712824e-06 - syst_JES_Pileup_Pt_term: 1.0162014170429012e-06 - syst_JES_Pileup_Rho_topology: 4.997336390518452e-06 - syst_JES_PunchThrough_MC15: 1.1738646046286599e-05 - syst_JES_SingleParticle_HighPt: 2.745011976294457e-06 - syst_JES_Zjet_MC: 4.756202056262959e-06 - syst_JES_Zjet_MuScale: 5.717354020873642e-07 - syst_JES_Zjet_MuSmearID: 4.2300925521789715e-08 - syst_JES_Zjet_MuSmearMS: 7.593290920279561e-07 - syst_JES_Zjet_OOC: 2.8075321458533648e-06 - syst_JES_Zjet_Stat1: 6.046237900546091e-07 - syst_JES_Zjet_Stat10: 3.337899152161431e-07 - syst_JES_Zjet_Stat11: 2.737587761150316e-07 - syst_JES_Zjet_Stat12: 4.736570911535053e-07 - syst_JES_Zjet_Stat13: 1.097652480296018e-06 - syst_JES_Zjet_Stat2: 9.014525278682178e-09 - syst_JES_Zjet_Stat3: 1.1227265061002167e-07 - syst_JES_Zjet_Stat4: 1.932501164294604e-07 - syst_JES_Zjet_Stat5: 1.471024472943941e-07 - syst_JES_Zjet_Stat6: 2.950506863235536e-07 - syst_JES_Zjet_Stat7: 2.467754850061083e-07 - syst_JES_Zjet_Stat8: 1.1215020463646066e-07 - syst_JES_Zjet_Stat9: 2.8252987010226015e-07 - syst_JES_Zjet_Veto: 5.106396576843597e-07 - syst_JES_Zjet_dPhi: 4.92139865790204e-07 + syst_Unfolding_bias: 7.39300000e-08 + syst_cleaning: 5.94872850e-06 + syst_lumi: 1.20170000e-05 +- stat: 2.51740000e-05 + syst_JER_CROSS_CALIB_FORWARD: 3.56800000e-24 + syst_JER_NOISE_FORWARD: 2.56600000e-24 + syst_JER_NP0: 4.69116006e-07 + syst_JER_NP1: 1.88068179e-07 + syst_JER_NP2: 5.81071379e-07 + syst_JER_NP3: 9.80429911e-08 + syst_JER_NP4: 1.47274584e-07 + syst_JER_NP5: 1.90298890e-07 + syst_JER_NP6: 1.89989651e-07 + syst_JER_NP7: 1.20914462e-07 + syst_JER_NP8: 1.34602242e-07 + syst_JES_EtaIntercalibration_Modelling: 6.60645790e-06 + syst_JES_EtaIntercalibration_NonClosure: 1.88285874e-15 + syst_JES_EtaIntercalibration_Stat0: 7.98747820e-10 + syst_JES_EtaIntercalibration_Stat1: 7.98747820e-10 + syst_JES_EtaIntercalibration_Stat10: 3.26110904e-10 + syst_JES_EtaIntercalibration_Stat100: 1.46098486e-09 + syst_JES_EtaIntercalibration_Stat101: 1.20666353e-22 + syst_JES_EtaIntercalibration_Stat102: 4.26295996e-23 + syst_JES_EtaIntercalibration_Stat103: 5.18835819e-10 + syst_JES_EtaIntercalibration_Stat104: 1.84118035e-22 + syst_JES_EtaIntercalibration_Stat105: 2.51572294e-22 + syst_JES_EtaIntercalibration_Stat106: 3.86013490e-23 + syst_JES_EtaIntercalibration_Stat107: 4.89131148e-10 + syst_JES_EtaIntercalibration_Stat108: 4.93894288e-10 + syst_JES_EtaIntercalibration_Stat109: 1.87147301e-19 + syst_JES_EtaIntercalibration_Stat11: 2.88126652e-10 + syst_JES_EtaIntercalibration_Stat110: 1.87239251e-19 + syst_JES_EtaIntercalibration_Stat111: 1.70692670e-22 + syst_JES_EtaIntercalibration_Stat112: 2.28635542e-22 + syst_JES_EtaIntercalibration_Stat113: 1.36943660e-16 + syst_JES_EtaIntercalibration_Stat114: 4.48838893e-10 + syst_JES_EtaIntercalibration_Stat115: 7.71590589e-10 + syst_JES_EtaIntercalibration_Stat116: 1.18618344e-09 + syst_JES_EtaIntercalibration_Stat117: 1.17780260e-09 + syst_JES_EtaIntercalibration_Stat118: 1.20748656e-09 + syst_JES_EtaIntercalibration_Stat119: 7.77950620e-10 + syst_JES_EtaIntercalibration_Stat12: 5.61011257e-12 + syst_JES_EtaIntercalibration_Stat120: 4.41112979e-10 + syst_JES_EtaIntercalibration_Stat121: 1.83497926e-20 + syst_JES_EtaIntercalibration_Stat122: 2.85544937e-19 + syst_JES_EtaIntercalibration_Stat123: 4.99728562e-22 + syst_JES_EtaIntercalibration_Stat124: 4.84041577e-22 + syst_JES_EtaIntercalibration_Stat125: 2.09812860e-21 + syst_JES_EtaIntercalibration_Stat126: 3.34632216e-10 + syst_JES_EtaIntercalibration_Stat127: 1.36399001e-22 + syst_JES_EtaIntercalibration_Stat128: 8.00553883e-10 + syst_JES_EtaIntercalibration_Stat129: 6.48912835e-10 + syst_JES_EtaIntercalibration_Stat13: 7.98747820e-10 + syst_JES_EtaIntercalibration_Stat130: 1.23367251e-20 + syst_JES_EtaIntercalibration_Stat131: 1.40917955e-16 + syst_JES_EtaIntercalibration_Stat132: 7.17427392e-18 + syst_JES_EtaIntercalibration_Stat133: 9.05555392e-10 + syst_JES_EtaIntercalibration_Stat134: 1.04910316e-09 + syst_JES_EtaIntercalibration_Stat135: 1.95514703e-09 + syst_JES_EtaIntercalibration_Stat136: 1.50688420e-09 + syst_JES_EtaIntercalibration_Stat137: 1.08486997e-09 + syst_JES_EtaIntercalibration_Stat138: 1.11379579e-10 + syst_JES_EtaIntercalibration_Stat139: 3.36578680e-09 + syst_JES_EtaIntercalibration_Stat14: 7.98747820e-10 + syst_JES_EtaIntercalibration_Stat140: 2.74847085e-09 + syst_JES_EtaIntercalibration_Stat141: 1.85572296e-17 + syst_JES_EtaIntercalibration_Stat142: 4.55615965e-10 + syst_JES_EtaIntercalibration_Stat143: 1.01310696e-20 + syst_JES_EtaIntercalibration_Stat144: 6.85913746e-20 + syst_JES_EtaIntercalibration_Stat145: 6.29860277e-14 + syst_JES_EtaIntercalibration_Stat146: 2.94535178e-13 + syst_JES_EtaIntercalibration_Stat147: 9.40067370e-21 + syst_JES_EtaIntercalibration_Stat148: 5.42282767e-19 + syst_JES_EtaIntercalibration_Stat149: 8.91217845e-10 + syst_JES_EtaIntercalibration_Stat15: 4.89131148e-10 + syst_JES_EtaIntercalibration_Stat150: 7.13645852e-18 + syst_JES_EtaIntercalibration_Stat151: 8.55666538e-10 + syst_JES_EtaIntercalibration_Stat152: 1.03576636e-09 + syst_JES_EtaIntercalibration_Stat153: 8.13890663e-10 + syst_JES_EtaIntercalibration_Stat154: 1.29470797e-09 + syst_JES_EtaIntercalibration_Stat155: 1.05178785e-10 + syst_JES_EtaIntercalibration_Stat156: 3.49408929e-09 + syst_JES_EtaIntercalibration_Stat157: 2.35823642e-09 + syst_JES_EtaIntercalibration_Stat158: 2.50736907e-09 + syst_JES_EtaIntercalibration_Stat159: 1.84701198e-17 + syst_JES_EtaIntercalibration_Stat16: 4.89131148e-10 + syst_JES_EtaIntercalibration_Stat160: 9.54485373e-10 + syst_JES_EtaIntercalibration_Stat161: 9.75404447e-14 + syst_JES_EtaIntercalibration_Stat162: 5.09655950e-10 + syst_JES_EtaIntercalibration_Stat163: 3.66415348e-10 + syst_JES_EtaIntercalibration_Stat164: 1.51381027e-16 + syst_JES_EtaIntercalibration_Stat165: 4.82828901e-19 + syst_JES_EtaIntercalibration_Stat166: 4.32752894e-10 + syst_JES_EtaIntercalibration_Stat167: 1.93059581e-16 + syst_JES_EtaIntercalibration_Stat168: 5.04373195e-10 + syst_JES_EtaIntercalibration_Stat169: 1.54102314e-09 + syst_JES_EtaIntercalibration_Stat17: 4.89044546e-10 + syst_JES_EtaIntercalibration_Stat170: 3.00597429e-09 + syst_JES_EtaIntercalibration_Stat171: 5.54711916e-09 + syst_JES_EtaIntercalibration_Stat172: 7.36637122e-09 + syst_JES_EtaIntercalibration_Stat173: 5.24932345e-09 + syst_JES_EtaIntercalibration_Stat174: 7.07622913e-09 + syst_JES_EtaIntercalibration_Stat175: 3.11102073e-09 + syst_JES_EtaIntercalibration_Stat176: 8.50452455e-10 + syst_JES_EtaIntercalibration_Stat177: 4.62030047e-10 + syst_JES_EtaIntercalibration_Stat178: 4.94500505e-10 + syst_JES_EtaIntercalibration_Stat179: 4.91556019e-10 + syst_JES_EtaIntercalibration_Stat18: 4.89131148e-10 + syst_JES_EtaIntercalibration_Stat180: 4.61140958e-19 + syst_JES_EtaIntercalibration_Stat181: 9.00394951e-21 + syst_JES_EtaIntercalibration_Stat182: 4.79345005e-10 + syst_JES_EtaIntercalibration_Stat183: 4.20503413e-10 + syst_JES_EtaIntercalibration_Stat184: 3.96138462e-10 + syst_JES_EtaIntercalibration_Stat185: 1.70721325e-10 + syst_JES_EtaIntercalibration_Stat186: 3.03425742e-09 + syst_JES_EtaIntercalibration_Stat187: 1.35077980e-08 + syst_JES_EtaIntercalibration_Stat188: 3.26574260e-08 + syst_JES_EtaIntercalibration_Stat189: 3.15864670e-08 + syst_JES_EtaIntercalibration_Stat19: 7.98747820e-10 + syst_JES_EtaIntercalibration_Stat190: 2.71553807e-08 + syst_JES_EtaIntercalibration_Stat191: 2.32205211e-08 + syst_JES_EtaIntercalibration_Stat192: 1.44297678e-08 + syst_JES_EtaIntercalibration_Stat193: 4.08344455e-09 + syst_JES_EtaIntercalibration_Stat194: 6.88385966e-10 + syst_JES_EtaIntercalibration_Stat195: 3.29172154e-15 + syst_JES_EtaIntercalibration_Stat196: 1.59017084e-16 + syst_JES_EtaIntercalibration_Stat197: 1.00148511e-09 + syst_JES_EtaIntercalibration_Stat198: 5.98872353e-10 + syst_JES_EtaIntercalibration_Stat199: 7.63397616e-10 + syst_JES_EtaIntercalibration_Stat2: 7.98747820e-10 + syst_JES_EtaIntercalibration_Stat20: 7.98747820e-10 + syst_JES_EtaIntercalibration_Stat200: 7.09394888e-10 + syst_JES_EtaIntercalibration_Stat201: 7.02573356e-09 + syst_JES_EtaIntercalibration_Stat202: 2.31972213e-08 + syst_JES_EtaIntercalibration_Stat203: 6.63388777e-08 + syst_JES_EtaIntercalibration_Stat204: 7.10974224e-08 + syst_JES_EtaIntercalibration_Stat205: 5.76261458e-08 + syst_JES_EtaIntercalibration_Stat206: 6.61671097e-08 + syst_JES_EtaIntercalibration_Stat207: 2.64708155e-08 + syst_JES_EtaIntercalibration_Stat208: 4.72744907e-09 + syst_JES_EtaIntercalibration_Stat209: 4.99787200e-10 + syst_JES_EtaIntercalibration_Stat21: 7.98747820e-10 + syst_JES_EtaIntercalibration_Stat210: 3.72038154e-10 + syst_JES_EtaIntercalibration_Stat211: 2.01394593e-14 + syst_JES_EtaIntercalibration_Stat212: 2.20057055e-10 + syst_JES_EtaIntercalibration_Stat213: 1.23240654e-09 + syst_JES_EtaIntercalibration_Stat214: 6.26166773e-09 + syst_JES_EtaIntercalibration_Stat215: 2.95149691e-08 + syst_JES_EtaIntercalibration_Stat216: 8.07762762e-08 + syst_JES_EtaIntercalibration_Stat217: 6.63518672e-08 + syst_JES_EtaIntercalibration_Stat218: 7.20580162e-08 + syst_JES_EtaIntercalibration_Stat219: 7.94489023e-08 + syst_JES_EtaIntercalibration_Stat22: 7.98747820e-10 + syst_JES_EtaIntercalibration_Stat220: 3.41061212e-08 + syst_JES_EtaIntercalibration_Stat221: 5.28998990e-09 + syst_JES_EtaIntercalibration_Stat222: 5.00299638e-10 + syst_JES_EtaIntercalibration_Stat223: 1.40800633e-11 + syst_JES_EtaIntercalibration_Stat224: 4.67148357e-10 + syst_JES_EtaIntercalibration_Stat225: 4.95612187e-09 + syst_JES_EtaIntercalibration_Stat226: 2.08370895e-08 + syst_JES_EtaIntercalibration_Stat227: 8.06376939e-08 + syst_JES_EtaIntercalibration_Stat228: 2.08988869e-07 + syst_JES_EtaIntercalibration_Stat229: 2.09928845e-07 + syst_JES_EtaIntercalibration_Stat23: 7.95286771e-10 + syst_JES_EtaIntercalibration_Stat230: 2.00301123e-07 + syst_JES_EtaIntercalibration_Stat231: 2.44520199e-07 + syst_JES_EtaIntercalibration_Stat232: 8.52809948e-08 + syst_JES_EtaIntercalibration_Stat233: 1.28974804e-08 + syst_JES_EtaIntercalibration_Stat234: 1.79055878e-09 + syst_JES_EtaIntercalibration_Stat235: 6.15051242e-10 + syst_JES_EtaIntercalibration_Stat236: 7.09402641e-10 + syst_JES_EtaIntercalibration_Stat237: 6.11585748e-09 + syst_JES_EtaIntercalibration_Stat238: 1.86182995e-08 + syst_JES_EtaIntercalibration_Stat239: 3.39869373e-08 + syst_JES_EtaIntercalibration_Stat24: 4.89131148e-10 + syst_JES_EtaIntercalibration_Stat240: 2.57180924e-08 + syst_JES_EtaIntercalibration_Stat241: 2.56031111e-08 + syst_JES_EtaIntercalibration_Stat242: 2.13839987e-08 + syst_JES_EtaIntercalibration_Stat243: 1.63202077e-08 + syst_JES_EtaIntercalibration_Stat244: 3.11191549e-09 + syst_JES_EtaIntercalibration_Stat245: 8.90633927e-10 + syst_JES_EtaIntercalibration_Stat25: 1.97904120e-22 + syst_JES_EtaIntercalibration_Stat26: 2.21684883e-22 + syst_JES_EtaIntercalibration_Stat27: 2.45012546e-22 + syst_JES_EtaIntercalibration_Stat28: 2.20843038e-22 + syst_JES_EtaIntercalibration_Stat29: 1.37152638e-16 + syst_JES_EtaIntercalibration_Stat3: 7.98747820e-10 + syst_JES_EtaIntercalibration_Stat30: 2.34867042e-22 + syst_JES_EtaIntercalibration_Stat31: 1.51814253e-10 + syst_JES_EtaIntercalibration_Stat32: 5.35550110e-12 + syst_JES_EtaIntercalibration_Stat33: 2.88126652e-10 + syst_JES_EtaIntercalibration_Stat34: 5.35550110e-12 + syst_JES_EtaIntercalibration_Stat35: 1.51744711e-22 + syst_JES_EtaIntercalibration_Stat36: 6.74318284e-10 + syst_JES_EtaIntercalibration_Stat37: 5.00389478e-10 + syst_JES_EtaIntercalibration_Stat38: 2.31491701e-22 + syst_JES_EtaIntercalibration_Stat39: 2.31500038e-22 + syst_JES_EtaIntercalibration_Stat4: 7.98747820e-10 + syst_JES_EtaIntercalibration_Stat40: 4.88957943e-10 + syst_JES_EtaIntercalibration_Stat41: 7.98677111e-10 + syst_JES_EtaIntercalibration_Stat42: 7.98747820e-10 + syst_JES_EtaIntercalibration_Stat43: 7.98747820e-10 + syst_JES_EtaIntercalibration_Stat44: 7.98747820e-10 + syst_JES_EtaIntercalibration_Stat45: 7.98747820e-10 + syst_JES_EtaIntercalibration_Stat46: 2.34382908e-22 + syst_JES_EtaIntercalibration_Stat47: 1.28425752e-22 + syst_JES_EtaIntercalibration_Stat48: 1.63391535e-22 + syst_JES_EtaIntercalibration_Stat49: 4.88438328e-10 + syst_JES_EtaIntercalibration_Stat5: 7.98747820e-10 + syst_JES_EtaIntercalibration_Stat50: 2.65140313e-22 + syst_JES_EtaIntercalibration_Stat51: 1.37116282e-16 + syst_JES_EtaIntercalibration_Stat52: 1.37698038e-16 + syst_JES_EtaIntercalibration_Stat53: 1.51814253e-10 + syst_JES_EtaIntercalibration_Stat54: 5.35550110e-12 + syst_JES_EtaIntercalibration_Stat55: 5.35550110e-12 + syst_JES_EtaIntercalibration_Stat56: 5.35550110e-12 + syst_JES_EtaIntercalibration_Stat57: 2.39807377e-22 + syst_JES_EtaIntercalibration_Stat58: 4.18451753e-23 + syst_JES_EtaIntercalibration_Stat59: 3.17831323e-10 + syst_JES_EtaIntercalibration_Stat6: 5.31219983e-10 + syst_JES_EtaIntercalibration_Stat60: 7.87690502e-10 + syst_JES_EtaIntercalibration_Stat61: 1.33934423e-22 + syst_JES_EtaIntercalibration_Stat62: 4.88091918e-10 + syst_JES_EtaIntercalibration_Stat63: 2.21190325e-22 + syst_JES_EtaIntercalibration_Stat64: 7.98747820e-10 + syst_JES_EtaIntercalibration_Stat65: 7.98747820e-10 + syst_JES_EtaIntercalibration_Stat66: 7.98747820e-10 + syst_JES_EtaIntercalibration_Stat67: 7.98747820e-10 + syst_JES_EtaIntercalibration_Stat68: 4.91087637e-25 + syst_JES_EtaIntercalibration_Stat69: 4.82982368e-10 + syst_JES_EtaIntercalibration_Stat7: 4.89131148e-10 + syst_JES_EtaIntercalibration_Stat70: 3.87546368e-10 + syst_JES_EtaIntercalibration_Stat71: 4.12228092e-13 + syst_JES_EtaIntercalibration_Stat72: 1.38044448e-16 + syst_JES_EtaIntercalibration_Stat73: 1.38131048e-16 + syst_JES_EtaIntercalibration_Stat74: 3.94128161e-10 + syst_JES_EtaIntercalibration_Stat75: 2.86741011e-11 + syst_JES_EtaIntercalibration_Stat76: 2.85268768e-11 + syst_JES_EtaIntercalibration_Stat77: 2.88213254e-10 + syst_JES_EtaIntercalibration_Stat78: 1.85222314e-09 + syst_JES_EtaIntercalibration_Stat79: 2.08365712e-09 + syst_JES_EtaIntercalibration_Stat8: 1.49829031e-22 + syst_JES_EtaIntercalibration_Stat80: 7.15077176e-13 + syst_JES_EtaIntercalibration_Stat81: 7.21031308e-23 + syst_JES_EtaIntercalibration_Stat82: 1.31194046e-22 + syst_JES_EtaIntercalibration_Stat83: 2.70057341e-22 + syst_JES_EtaIntercalibration_Stat84: 1.37845239e-22 + syst_JES_EtaIntercalibration_Stat85: 1.36944543e-22 + syst_JES_EtaIntercalibration_Stat86: 4.89131148e-10 + syst_JES_EtaIntercalibration_Stat87: 4.89131148e-10 + syst_JES_EtaIntercalibration_Stat88: 1.37249457e-22 + syst_JES_EtaIntercalibration_Stat89: 4.75534549e-10 + syst_JES_EtaIntercalibration_Stat9: 5.61011257e-12 + syst_JES_EtaIntercalibration_Stat90: 3.08417087e-22 + syst_JES_EtaIntercalibration_Stat91: 3.09567947e-22 + syst_JES_EtaIntercalibration_Stat92: 3.98832092e-22 + syst_JES_EtaIntercalibration_Stat93: 1.38131053e-16 + syst_JES_EtaIntercalibration_Stat94: 1.37116553e-16 + syst_JES_EtaIntercalibration_Stat95: 4.02355403e-10 + syst_JES_EtaIntercalibration_Stat96: 2.85268768e-11 + syst_JES_EtaIntercalibration_Stat97: 6.86228853e-10 + syst_JES_EtaIntercalibration_Stat98: 5.77088021e-10 + syst_JES_EtaIntercalibration_Stat99: 8.07482086e-13 + syst_JES_EtaIntercalibration_TotalStat_MJB: 7.51781702e-06 + syst_JES_Flavour_Comp: 5.10269446e-06 + syst_JES_Flavour_Response: 5.71843720e-06 + syst_JES_Gjet_Generator: 1.26508547e-05 + syst_JES_Gjet_OOC: 1.05678142e-05 + syst_JES_Gjet_Purity: 7.70011779e-08 + syst_JES_Gjet_Stat1: 1.40247969e-08 + syst_JES_Gjet_Stat10: 7.57125571e-07 + syst_JES_Gjet_Stat11: 7.39812165e-07 + syst_JES_Gjet_Stat12: 3.19371508e-07 + syst_JES_Gjet_Stat13: 3.21801989e-06 + syst_JES_Gjet_Stat14: 9.85066541e-06 + syst_JES_Gjet_Stat15: 1.54388698e-05 + syst_JES_Gjet_Stat2: 5.68716898e-08 + syst_JES_Gjet_Stat3: 6.67072852e-08 + syst_JES_Gjet_Stat4: 2.71065084e-07 + syst_JES_Gjet_Stat5: 2.62957848e-07 + syst_JES_Gjet_Stat6: 2.18914801e-07 + syst_JES_Gjet_Stat7: 2.82878101e-07 + syst_JES_Gjet_Stat8: 5.37323376e-08 + syst_JES_Gjet_Stat9: 2.82626516e-07 + syst_JES_Gjet_Veto: 1.25888783e-05 + syst_JES_Gjet_dPhi: 4.58125234e-07 + syst_JES_LArESZee: 1.58695873e-05 + syst_JES_LArEsmear: 1.60500249e-06 + syst_JES_LAr_JVT: 2.11402318e-06 + syst_JES_MJB_Alpha: 3.38088816e-07 + syst_JES_MJB_Asym: 1.03146871e-05 + syst_JES_MJB_Beta: 7.93172773e-07 + syst_JES_MJB_Fragmentation: 2.29550098e-06 + syst_JES_MJB_Stat1: 7.46513809e-10 + syst_JES_MJB_Stat10: 3.10142205e-08 + syst_JES_MJB_Stat11: 4.70749559e-08 + syst_JES_MJB_Stat12: 9.20621317e-08 + syst_JES_MJB_Stat13: 1.75162004e-07 + syst_JES_MJB_Stat14: 2.57950242e-06 + syst_JES_MJB_Stat15: 4.95365592e-06 + syst_JES_MJB_Stat16: 7.89844966e-06 + syst_JES_MJB_Stat2: 5.26640463e-10 + syst_JES_MJB_Stat3: 4.29842041e-09 + syst_JES_MJB_Stat4: 4.38388466e-09 + syst_JES_MJB_Stat5: 3.99696544e-09 + syst_JES_MJB_Stat6: 3.81991240e-09 + syst_JES_MJB_Stat7: 6.86734184e-09 + syst_JES_MJB_Stat8: 1.12666861e-08 + syst_JES_MJB_Stat9: 1.53423397e-08 + syst_JES_MJB_Threshold: 2.01403178e-06 + syst_JES_Pileup_MuOffset: 4.83174635e-06 + syst_JES_Pileup_NPVOffset: 3.32350369e-06 + syst_JES_Pileup_Pt_term: 1.01620142e-06 + syst_JES_Pileup_Rho_topology: 4.99733639e-06 + syst_JES_PunchThrough_MC15: 1.17386460e-05 + syst_JES_SingleParticle_HighPt: 2.74501198e-06 + syst_JES_Zjet_MC: 4.75620206e-06 + syst_JES_Zjet_MuScale: 5.71735402e-07 + syst_JES_Zjet_MuSmearID: 4.23009255e-08 + syst_JES_Zjet_MuSmearMS: 7.59329092e-07 + syst_JES_Zjet_OOC: 2.80753215e-06 + syst_JES_Zjet_Stat1: 6.04623790e-07 + syst_JES_Zjet_Stat10: 3.33789915e-07 + syst_JES_Zjet_Stat11: 2.73758776e-07 + syst_JES_Zjet_Stat12: 4.73657091e-07 + syst_JES_Zjet_Stat13: 1.09765248e-06 + syst_JES_Zjet_Stat2: 9.01452528e-09 + syst_JES_Zjet_Stat3: 1.12272651e-07 + syst_JES_Zjet_Stat4: 1.93250116e-07 + syst_JES_Zjet_Stat5: 1.47102447e-07 + syst_JES_Zjet_Stat6: 2.95050686e-07 + syst_JES_Zjet_Stat7: 2.46775485e-07 + syst_JES_Zjet_Stat8: 1.12150205e-07 + syst_JES_Zjet_Stat9: 2.82529870e-07 + syst_JES_Zjet_Veto: 5.10639658e-07 + syst_JES_Zjet_dPhi: 4.92139866e-07 syst_PRW: 0.0 - syst_Unfolding_bias: 3.9369e-08 - syst_cleaning: 3.2216145020781118e-06 - syst_lumi: 6.614e-06 -- stat: 1.6496e-05 + syst_Unfolding_bias: 3.93690000e-08 + syst_cleaning: 3.22161450e-06 + syst_lumi: 6.61400000e-06 +- stat: 1.64960000e-05 syst_JER_CROSS_CALIB_FORWARD: 9.08e-25 - syst_JER_NOISE_FORWARD: 6.492e-25 - syst_JER_NP0: 2.0108786636691932e-07 - syst_JER_NP1: 9.680198590421583e-08 - syst_JER_NP2: 2.892321040271982e-07 - syst_JER_NP3: 5.3400494379733976e-08 - syst_JER_NP4: 8.268486968605562e-08 - syst_JER_NP5: 9.135425605848913e-08 - syst_JER_NP6: 9.853210948721234e-08 - syst_JER_NP7: 5.804885234483837e-08 - syst_JER_NP8: 6.732394744814062e-08 - syst_JES_EtaIntercalibration_Modelling: 2.725612362387579e-06 - syst_JES_EtaIntercalibration_NonClosure: 1.3868401025352563e-16 - syst_JES_EtaIntercalibration_Stat0: 3.4209826073805174e-10 - syst_JES_EtaIntercalibration_Stat1: 3.4209826073805174e-10 - syst_JES_EtaIntercalibration_Stat10: 1.4248442086894517e-10 - syst_JES_EtaIntercalibration_Stat100: 4.969253766912107e-10 - syst_JES_EtaIntercalibration_Stat101: 1.091803746100919e-23 - syst_JES_EtaIntercalibration_Stat102: 6.494060537714443e-24 - syst_JES_EtaIntercalibration_Stat103: 2.2222211861109049e-10 - syst_JES_EtaIntercalibration_Stat104: 2.8636466450140107e-23 - syst_JES_EtaIntercalibration_Stat105: 3.541972348847461e-23 - syst_JES_EtaIntercalibration_Stat106: 5.2835140018268144e-24 - syst_JES_EtaIntercalibration_Stat107: 2.094915451754557e-10 - syst_JES_EtaIntercalibration_Stat108: 2.114834036041599e-10 - syst_JES_EtaIntercalibration_Stat109: 1.774269889820317e-20 - syst_JES_EtaIntercalibration_Stat11: 1.1786605745506214e-10 - syst_JES_EtaIntercalibration_Stat110: 1.7749874690173872e-20 - syst_JES_EtaIntercalibration_Stat111: 9.777587483628054e-24 - syst_JES_EtaIntercalibration_Stat112: 2.0235832544029415e-23 - syst_JES_EtaIntercalibration_Stat113: 9.949841515697625e-18 - syst_JES_EtaIntercalibration_Stat114: 1.9259353663170398e-10 - syst_JES_EtaIntercalibration_Stat115: 2.3086501955930874e-10 - syst_JES_EtaIntercalibration_Stat116: 8.245447107343541e-10 - syst_JES_EtaIntercalibration_Stat117: 7.225861955503994e-10 - syst_JES_EtaIntercalibration_Stat118: 8.550318064259364e-10 - syst_JES_EtaIntercalibration_Stat119: 2.1191641630600792e-10 - syst_JES_EtaIntercalibration_Stat12: 4.049534788095684e-13 - syst_JES_EtaIntercalibration_Stat120: 1.7545753759813226e-10 - syst_JES_EtaIntercalibration_Stat121: 1.8766403491345912e-21 - syst_JES_EtaIntercalibration_Stat122: 2.6517714688864118e-20 - syst_JES_EtaIntercalibration_Stat123: 5.604061562831016e-23 - syst_JES_EtaIntercalibration_Stat124: 5.3394181958337e-23 - syst_JES_EtaIntercalibration_Stat125: 2.553437617702849e-22 - syst_JES_EtaIntercalibration_Stat126: 1.4332720432632609e-10 - syst_JES_EtaIntercalibration_Stat127: 2.0524802069691197e-23 - syst_JES_EtaIntercalibration_Stat128: 3.428248163362478e-10 - syst_JES_EtaIntercalibration_Stat129: 2.7790755207219866e-10 - syst_JES_EtaIntercalibration_Stat13: 3.4209826073805174e-10 - syst_JES_EtaIntercalibration_Stat130: 1.1656797673460752e-21 - syst_JES_EtaIntercalibration_Stat131: 1.0231735275602083e-17 - syst_JES_EtaIntercalibration_Stat132: 5.100187783980189e-19 - syst_JES_EtaIntercalibration_Stat133: 3.3221024592868895e-10 - syst_JES_EtaIntercalibration_Stat134: 2.9661369934297966e-10 - syst_JES_EtaIntercalibration_Stat135: 8.698620278526934e-10 - syst_JES_EtaIntercalibration_Stat136: 3.527321466435705e-10 - syst_JES_EtaIntercalibration_Stat137: 4.646226254650432e-10 - syst_JES_EtaIntercalibration_Stat138: 4.86619670642071e-10 - syst_JES_EtaIntercalibration_Stat139: 1.8472997374546448e-09 - syst_JES_EtaIntercalibration_Stat14: 3.4209826073805174e-10 - syst_JES_EtaIntercalibration_Stat140: 1.3272757513041516e-09 - syst_JES_EtaIntercalibration_Stat141: 1.3909780974192224e-18 - syst_JES_EtaIntercalibration_Stat142: 1.951155234671059e-10 - syst_JES_EtaIntercalibration_Stat143: 1.311216477436125e-21 - syst_JES_EtaIntercalibration_Stat144: 6.997792294716957e-21 - syst_JES_EtaIntercalibration_Stat145: 4.3838206037400284e-15 - syst_JES_EtaIntercalibration_Stat146: 2.0498815424385173e-14 - syst_JES_EtaIntercalibration_Stat147: 1.0012907565113143e-21 - syst_JES_EtaIntercalibration_Stat148: 4.463001412446562e-20 - syst_JES_EtaIntercalibration_Stat149: 3.81647019508865e-10 - syst_JES_EtaIntercalibration_Stat15: 2.0949154517544883e-10 - syst_JES_EtaIntercalibration_Stat150: 5.061525358862879e-19 - syst_JES_EtaIntercalibration_Stat151: 2.0227427122597673e-10 - syst_JES_EtaIntercalibration_Stat152: 2.9436203308125254e-10 - syst_JES_EtaIntercalibration_Stat153: 4.996966570425402e-10 - syst_JES_EtaIntercalibration_Stat154: 2.1373506932782542e-10 - syst_JES_EtaIntercalibration_Stat155: 1.5233386850402634e-10 - syst_JES_EtaIntercalibration_Stat156: 1.7801305429658803e-09 - syst_JES_EtaIntercalibration_Stat157: 1.47655321380572e-09 - syst_JES_EtaIntercalibration_Stat158: 1.278455307421812e-09 - syst_JES_EtaIntercalibration_Stat159: 1.3874448889955955e-18 - syst_JES_EtaIntercalibration_Stat16: 2.0949154517544883e-10 - syst_JES_EtaIntercalibration_Stat160: 4.087281859622602e-10 - syst_JES_EtaIntercalibration_Stat161: 6.788773587712791e-15 - syst_JES_EtaIntercalibration_Stat162: 2.1823840175334902e-10 - syst_JES_EtaIntercalibration_Stat163: 1.569238031654459e-10 - syst_JES_EtaIntercalibration_Stat164: 1.06425620973851e-17 - syst_JES_EtaIntercalibration_Stat165: 4.277192914751449e-20 - syst_JES_EtaIntercalibration_Stat166: 1.8532943639561221e-10 - syst_JES_EtaIntercalibration_Stat167: 1.4117450478043122e-17 - syst_JES_EtaIntercalibration_Stat168: 2.1598673572642782e-10 - syst_JES_EtaIntercalibration_Stat169: 7.0823432562959e-10 - syst_JES_EtaIntercalibration_Stat17: 2.0949154517545928e-10 - syst_JES_EtaIntercalibration_Stat170: 7.178484647515498e-10 - syst_JES_EtaIntercalibration_Stat171: 2.6756807671132967e-09 - syst_JES_EtaIntercalibration_Stat172: 3.175626648001934e-09 - syst_JES_EtaIntercalibration_Stat173: 2.5390830529937375e-09 - syst_JES_EtaIntercalibration_Stat174: 2.9405521165250586e-09 - syst_JES_EtaIntercalibration_Stat175: 1.0853441608540584e-09 - syst_JES_EtaIntercalibration_Stat176: 6.675227861279343e-10 - syst_JES_EtaIntercalibration_Stat177: 2.0455557455733176e-10 - syst_JES_EtaIntercalibration_Stat178: 2.1174321120121107e-10 - syst_JES_EtaIntercalibration_Stat179: 2.1053077566011656e-10 - syst_JES_EtaIntercalibration_Stat18: 2.0949154517544883e-10 - syst_JES_EtaIntercalibration_Stat180: 3.9842658081508566e-20 - syst_JES_EtaIntercalibration_Stat181: 9.918721225541124e-22 - syst_JES_EtaIntercalibration_Stat182: 2.0533461931246359e-10 - syst_JES_EtaIntercalibration_Stat183: 1.801050804391703e-10 - syst_JES_EtaIntercalibration_Stat184: 1.6938167759680354e-10 - syst_JES_EtaIntercalibration_Stat185: 1.116871871288287e-10 - syst_JES_EtaIntercalibration_Stat186: 1.6372857439982795e-09 - syst_JES_EtaIntercalibration_Stat187: 5.8042157954369685e-09 - syst_JES_EtaIntercalibration_Stat188: 1.5241478766838866e-08 - syst_JES_EtaIntercalibration_Stat189: 1.3610326483960626e-08 - syst_JES_EtaIntercalibration_Stat19: 3.4209826073805174e-10 - syst_JES_EtaIntercalibration_Stat190: 1.3010947573101663e-08 - syst_JES_EtaIntercalibration_Stat191: 9.610218767020865e-09 - syst_JES_EtaIntercalibration_Stat192: 5.570091628510254e-09 - syst_JES_EtaIntercalibration_Stat193: 2.237575127649349e-09 - syst_JES_EtaIntercalibration_Stat194: 9.761265192970633e-11 - syst_JES_EtaIntercalibration_Stat195: 2.222957644108407e-16 - syst_JES_EtaIntercalibration_Stat196: 1.1140696395984408e-17 - syst_JES_EtaIntercalibration_Stat197: 4.2893077530063055e-10 - syst_JES_EtaIntercalibration_Stat198: 2.564311901763658e-10 - syst_JES_EtaIntercalibration_Stat199: 3.2732110762980137e-10 - syst_JES_EtaIntercalibration_Stat2: 3.4209826073805174e-10 - syst_JES_EtaIntercalibration_Stat20: 3.4209826073805174e-10 - syst_JES_EtaIntercalibration_Stat200: 2.7731768118892095e-10 - syst_JES_EtaIntercalibration_Stat201: 3.1328699889238938e-09 - syst_JES_EtaIntercalibration_Stat202: 9.585187882874284e-09 - syst_JES_EtaIntercalibration_Stat203: 3.064496369715585e-08 - syst_JES_EtaIntercalibration_Stat204: 3.013099525405691e-08 - syst_JES_EtaIntercalibration_Stat205: 2.735451333875271e-08 - syst_JES_EtaIntercalibration_Stat206: 3.127938938022927e-08 - syst_JES_EtaIntercalibration_Stat207: 1.0348976797249088e-08 - syst_JES_EtaIntercalibration_Stat208: 1.8433630590580902e-09 - syst_JES_EtaIntercalibration_Stat209: 2.1681079233977263e-11 - syst_JES_EtaIntercalibration_Stat21: 3.4209826073805174e-10 - syst_JES_EtaIntercalibration_Stat210: 1.593482444636992e-10 - syst_JES_EtaIntercalibration_Stat211: 1.3605366374614835e-15 - syst_JES_EtaIntercalibration_Stat212: 3.2346048831347506e-11 - syst_JES_EtaIntercalibration_Stat213: 4.598162350330836e-10 - syst_JES_EtaIntercalibration_Stat214: 3.1292707313366164e-09 - syst_JES_EtaIntercalibration_Stat215: 1.2605320225999814e-08 - syst_JES_EtaIntercalibration_Stat216: 3.693009748159352e-08 - syst_JES_EtaIntercalibration_Stat217: 3.243750414258162e-08 - syst_JES_EtaIntercalibration_Stat218: 3.458458435488274e-08 - syst_JES_EtaIntercalibration_Stat219: 3.6460250959092426e-08 - syst_JES_EtaIntercalibration_Stat22: 3.4209826073805174e-10 - syst_JES_EtaIntercalibration_Stat220: 1.3187161057255651e-08 - syst_JES_EtaIntercalibration_Stat221: 1.4713845545947531e-09 - syst_JES_EtaIntercalibration_Stat222: 2.1615403581705338e-11 - syst_JES_EtaIntercalibration_Stat223: 1.1951654890382335e-12 - syst_JES_EtaIntercalibration_Stat224: 2.051145507367498e-10 - syst_JES_EtaIntercalibration_Stat225: 2.8610920083073177e-09 - syst_JES_EtaIntercalibration_Stat226: 7.501601029113719e-09 - syst_JES_EtaIntercalibration_Stat227: 3.3110764110784275e-08 - syst_JES_EtaIntercalibration_Stat228: 9.765915164489193e-08 - syst_JES_EtaIntercalibration_Stat229: 9.506729550691973e-08 - syst_JES_EtaIntercalibration_Stat23: 3.406149548977555e-10 - syst_JES_EtaIntercalibration_Stat230: 9.489735652271879e-08 - syst_JES_EtaIntercalibration_Stat231: 1.1051095816705236e-07 - syst_JES_EtaIntercalibration_Stat232: 3.3421961342805726e-08 - syst_JES_EtaIntercalibration_Stat233: 3.74910333379863e-09 - syst_JES_EtaIntercalibration_Stat234: 3.9062965517226164e-10 - syst_JES_EtaIntercalibration_Stat235: 1.1301631519387609e-10 - syst_JES_EtaIntercalibration_Stat236: 2.764509317672849e-10 - syst_JES_EtaIntercalibration_Stat237: 3.0067122110371653e-09 - syst_JES_EtaIntercalibration_Stat238: 8.332018302908366e-09 - syst_JES_EtaIntercalibration_Stat239: 1.581029648678354e-08 - syst_JES_EtaIntercalibration_Stat24: 2.0949154517544883e-10 - syst_JES_EtaIntercalibration_Stat240: 1.1923973247202462e-08 - syst_JES_EtaIntercalibration_Stat241: 1.1621395828384818e-08 - syst_JES_EtaIntercalibration_Stat242: 8.571733824028834e-09 - syst_JES_EtaIntercalibration_Stat243: 6.297094945290248e-09 - syst_JES_EtaIntercalibration_Stat244: 4.251286300344873e-10 - syst_JES_EtaIntercalibration_Stat245: 1.5100736214089033e-10 - syst_JES_EtaIntercalibration_Stat25: 3.5243758312643105e-23 - syst_JES_EtaIntercalibration_Stat26: 3.326436080852899e-23 - syst_JES_EtaIntercalibration_Stat27: 3.7285743589205785e-23 - syst_JES_EtaIntercalibration_Stat28: 3.313165065311416e-23 - syst_JES_EtaIntercalibration_Stat29: 9.963965190625668e-18 - syst_JES_EtaIntercalibration_Stat3: 3.4209826073805174e-10 - syst_JES_EtaIntercalibration_Stat30: 3.5520038006736425e-23 - syst_JES_EtaIntercalibration_Stat31: 6.746337895480777e-11 - syst_JES_EtaIntercalibration_Stat32: 3.87199958031981e-13 - syst_JES_EtaIntercalibration_Stat33: 1.1785739720102434e-10 - syst_JES_EtaIntercalibration_Stat34: 3.871999580319118e-13 - syst_JES_EtaIntercalibration_Stat35: 2.314217517067054e-23 - syst_JES_EtaIntercalibration_Stat36: 2.8877886002960815e-10 - syst_JES_EtaIntercalibration_Stat37: 2.1425468489626322e-10 - syst_JES_EtaIntercalibration_Stat38: 3.4963196006658206e-23 - syst_JES_EtaIntercalibration_Stat39: 3.497193303207588e-23 - syst_JES_EtaIntercalibration_Stat4: 3.4209826073805174e-10 - syst_JES_EtaIntercalibration_Stat40: 2.0940494263507057e-10 - syst_JES_EtaIntercalibration_Stat41: 3.420275537146094e-10 - syst_JES_EtaIntercalibration_Stat42: 3.4209826073805174e-10 - syst_JES_EtaIntercalibration_Stat43: 3.4209826073805174e-10 - syst_JES_EtaIntercalibration_Stat44: 3.4209826073805174e-10 - syst_JES_EtaIntercalibration_Stat45: 3.4209826073805174e-10 - syst_JES_EtaIntercalibration_Stat46: 3.5490849524912753e-23 - syst_JES_EtaIntercalibration_Stat47: 1.916670411807935e-23 - syst_JES_EtaIntercalibration_Stat48: 2.8816732986235614e-23 - syst_JES_EtaIntercalibration_Stat49: 2.091451350139351e-10 - syst_JES_EtaIntercalibration_Stat5: 3.4209826073805174e-10 - syst_JES_EtaIntercalibration_Stat50: 3.393697150350927e-23 - syst_JES_EtaIntercalibration_Stat51: 9.961069514364409e-18 - syst_JES_EtaIntercalibration_Stat52: 1.0016449586892463e-17 - syst_JES_EtaIntercalibration_Stat53: 6.746337895480121e-11 - syst_JES_EtaIntercalibration_Stat54: 3.8728656057239103e-13 - syst_JES_EtaIntercalibration_Stat55: 3.8728656057161863e-13 - syst_JES_EtaIntercalibration_Stat56: 3.872865605722267e-13 - syst_JES_EtaIntercalibration_Stat57: 3.372067450493095e-23 - syst_JES_EtaIntercalibration_Stat58: 5.943138230766638e-24 - syst_JES_EtaIntercalibration_Stat59: 1.3613919347491378e-10 - syst_JES_EtaIntercalibration_Stat6: 2.2750487357417205e-10 - syst_JES_EtaIntercalibration_Stat60: 3.373091460366884e-10 - syst_JES_EtaIntercalibration_Stat61: 2.009691784826718e-23 - syst_JES_EtaIntercalibration_Stat62: 2.0897192993317833e-10 - syst_JES_EtaIntercalibration_Stat63: 3.32074750621001e-23 - syst_JES_EtaIntercalibration_Stat64: 3.4209826073805174e-10 - syst_JES_EtaIntercalibration_Stat65: 3.4209826073805174e-10 - syst_JES_EtaIntercalibration_Stat66: 3.4209826073805174e-10 - syst_JES_EtaIntercalibration_Stat67: 3.4209826073805174e-10 - syst_JES_EtaIntercalibration_Stat68: 1.3157776217887277e-25 - syst_JES_EtaIntercalibration_Stat69: 2.068068664237263e-10 - syst_JES_EtaIntercalibration_Stat7: 2.0949154517544808e-10 - syst_JES_EtaIntercalibration_Stat70: 1.660170699054772e-10 - syst_JES_EtaIntercalibration_Stat71: 2.869142162701634e-14 - syst_JES_EtaIntercalibration_Stat72: 1.0043296233103336e-17 - syst_JES_EtaIntercalibration_Stat73: 1.0043295808346943e-17 - syst_JES_EtaIntercalibration_Stat74: 1.6878835119758786e-10 - syst_JES_EtaIntercalibration_Stat75: 3.831296386341971e-12 - syst_JES_EtaIntercalibration_Stat76: 3.852947021436375e-12 - syst_JES_EtaIntercalibration_Stat77: 1.1784007669294905e-10 - syst_JES_EtaIntercalibration_Stat78: 7.947143386148258e-10 - syst_JES_EtaIntercalibration_Stat79: 8.921793709787285e-10 - syst_JES_EtaIntercalibration_Stat8: 2.2797731648451345e-23 - syst_JES_EtaIntercalibration_Stat80: 4.9770479954593615e-14 - syst_JES_EtaIntercalibration_Stat81: 1.1258501798640881e-23 - syst_JES_EtaIntercalibration_Stat82: 2.0325190382072685e-23 - syst_JES_EtaIntercalibration_Stat83: 4.130559526262756e-23 - syst_JES_EtaIntercalibration_Stat84: 2.0931870178450372e-23 - syst_JES_EtaIntercalibration_Stat85: 2.0656119378225427e-23 - syst_JES_EtaIntercalibration_Stat86: 2.094915451754557e-10 - syst_JES_EtaIntercalibration_Stat87: 2.094915451754557e-10 - syst_JES_EtaIntercalibration_Stat88: 2.0694214146039728e-23 - syst_JES_EtaIntercalibration_Stat89: 2.0368917497009997e-10 - syst_JES_EtaIntercalibration_Stat9: 4.0495347881723036e-13 - syst_JES_EtaIntercalibration_Stat90: 3.9626073527003655e-23 - syst_JES_EtaIntercalibration_Stat91: 3.950920115957168e-23 - syst_JES_EtaIntercalibration_Stat92: 5.047883318778278e-23 - syst_JES_EtaIntercalibration_Stat93: 1.0044162690307331e-17 - syst_JES_EtaIntercalibration_Stat94: 9.959338003602448e-18 - syst_JES_EtaIntercalibration_Stat95: 1.7233905535302802e-10 - syst_JES_EtaIntercalibration_Stat96: 3.852080996021561e-12 - syst_JES_EtaIntercalibration_Stat97: 2.9090589200074654e-10 - syst_JES_EtaIntercalibration_Stat98: 1.800911611681151e-10 - syst_JES_EtaIntercalibration_Stat99: 5.619638845219288e-14 - syst_JES_EtaIntercalibration_TotalStat_MJB: 3.705392388128415e-06 - syst_JES_Flavour_Comp: 1.768531806329759e-06 - syst_JES_Flavour_Response: 3.018941329340469e-06 - syst_JES_Gjet_Generator: 5.898617295604114e-06 - syst_JES_Gjet_OOC: 4.93937020276877e-06 - syst_JES_Gjet_Purity: 1.9133389663099423e-07 - syst_JES_Gjet_Stat1: 1.039150119087709e-08 - syst_JES_Gjet_Stat10: 3.7300507057545474e-07 - syst_JES_Gjet_Stat11: 3.629396368543949e-07 - syst_JES_Gjet_Stat12: 1.3480569006907682e-07 - syst_JES_Gjet_Stat13: 1.5520025773174479e-06 - syst_JES_Gjet_Stat14: 4.95510403523478e-06 - syst_JES_Gjet_Stat15: 7.673812790914304e-06 - syst_JES_Gjet_Stat2: 2.4342425926764162e-08 - syst_JES_Gjet_Stat3: 3.169943650918735e-08 - syst_JES_Gjet_Stat4: 1.355155580551547e-07 - syst_JES_Gjet_Stat5: 1.293515655104336e-07 - syst_JES_Gjet_Stat6: 9.667052433394576e-08 - syst_JES_Gjet_Stat7: 1.3770026216387535e-07 - syst_JES_Gjet_Stat8: 2.3648837180715674e-08 - syst_JES_Gjet_Stat9: 1.3758008794880164e-07 - syst_JES_Gjet_Veto: 5.995905665535441e-06 - syst_JES_Gjet_dPhi: 1.4890329076283034e-07 - syst_JES_LArESZee: 7.111615481028203e-06 - syst_JES_LArEsmear: 7.18100222810159e-07 - syst_JES_LAr_JVT: 9.498911240242221e-07 - syst_JES_MJB_Alpha: 1.4097511083521091e-07 - syst_JES_MJB_Asym: 5.32095167709687e-06 - syst_JES_MJB_Beta: 3.961987747015379e-07 - syst_JES_MJB_Fragmentation: 1.1296785073639313e-06 - syst_JES_MJB_Stat1: 3.222677884927378e-10 - syst_JES_MJB_Stat10: 9.967642386743215e-09 - syst_JES_MJB_Stat11: 1.633361181735381e-08 - syst_JES_MJB_Stat12: 3.530691177021859e-08 - syst_JES_MJB_Stat13: 6.512003839065207e-08 - syst_JES_MJB_Stat14: 1.3803509580900071e-06 - syst_JES_MJB_Stat15: 2.9450298385585164e-06 - syst_JES_MJB_Stat16: 4.249691841769235e-06 - syst_JES_MJB_Stat2: 1.2203781084155845e-10 - syst_JES_MJB_Stat3: 1.7355707072891038e-09 - syst_JES_MJB_Stat4: 1.975093103501706e-09 - syst_JES_MJB_Stat5: 1.6810060916010982e-09 - syst_JES_MJB_Stat6: 1.3794530465006773e-09 - syst_JES_MJB_Stat7: 2.8783591171881246e-09 - syst_JES_MJB_Stat8: 3.672148210516564e-09 - syst_JES_MJB_Stat9: 4.7589523006645076e-09 - syst_JES_MJB_Threshold: 8.674311730621628e-07 - syst_JES_Pileup_MuOffset: 2.36689305842068e-06 - syst_JES_Pileup_NPVOffset: 1.5385079622803385e-06 - syst_JES_Pileup_Pt_term: 4.3176031545291426e-07 - syst_JES_Pileup_Rho_topology: 2.435933650574251e-06 - syst_JES_PunchThrough_MC15: 6.189197928649559e-06 - syst_JES_SingleParticle_HighPt: 1.0566489802673354e-06 - syst_JES_Zjet_MC: 2.1827979178109913e-06 - syst_JES_Zjet_MuScale: 2.713175768357074e-07 - syst_JES_Zjet_MuSmearID: 1.3408329901594754e-08 - syst_JES_Zjet_MuSmearMS: 3.0434879661335934e-07 - syst_JES_Zjet_OOC: 1.2428239245766073e-06 - syst_JES_Zjet_Stat1: 2.791513567941234e-07 - syst_JES_Zjet_Stat10: 1.6147588055186446e-07 - syst_JES_Zjet_Stat11: 1.1836609016099163e-07 - syst_JES_Zjet_Stat12: 1.9560301633666085e-07 - syst_JES_Zjet_Stat13: 4.893248895161577e-07 - syst_JES_Zjet_Stat2: 3.120402695166122e-09 - syst_JES_Zjet_Stat3: 4.429081253488132e-08 - syst_JES_Zjet_Stat4: 8.365524535257787e-08 - syst_JES_Zjet_Stat5: 6.031675119732493e-08 - syst_JES_Zjet_Stat6: 1.388010319666248e-07 - syst_JES_Zjet_Stat7: 1.0687256476757727e-07 - syst_JES_Zjet_Stat8: 4.745902021744655e-08 - syst_JES_Zjet_Stat9: 1.3545417850697704e-07 - syst_JES_Zjet_Veto: 2.2208755030392858e-07 - syst_JES_Zjet_dPhi: 2.1432489356115402e-07 + syst_JER_NOISE_FORWARD: 6.49200000e-25 + syst_JER_NP0: 2.01087866e-07 + syst_JER_NP1: 9.68019859e-08 + syst_JER_NP2: 2.89232104e-07 + syst_JER_NP3: 5.34004944e-08 + syst_JER_NP4: 8.26848697e-08 + syst_JER_NP5: 9.13542561e-08 + syst_JER_NP6: 9.85321095e-08 + syst_JER_NP7: 5.80488523e-08 + syst_JER_NP8: 6.73239474e-08 + syst_JES_EtaIntercalibration_Modelling: 2.72561236e-06 + syst_JES_EtaIntercalibration_NonClosure: 1.38684010e-16 + syst_JES_EtaIntercalibration_Stat0: 3.42098261e-10 + syst_JES_EtaIntercalibration_Stat1: 3.42098261e-10 + syst_JES_EtaIntercalibration_Stat10: 1.42484421e-10 + syst_JES_EtaIntercalibration_Stat100: 4.96925377e-10 + syst_JES_EtaIntercalibration_Stat101: 1.09180375e-23 + syst_JES_EtaIntercalibration_Stat102: 6.49406054e-24 + syst_JES_EtaIntercalibration_Stat103: 2.22222119e-10 + syst_JES_EtaIntercalibration_Stat104: 2.86364665e-23 + syst_JES_EtaIntercalibration_Stat105: 3.54197235e-23 + syst_JES_EtaIntercalibration_Stat106: 5.28351400e-24 + syst_JES_EtaIntercalibration_Stat107: 2.09491545e-10 + syst_JES_EtaIntercalibration_Stat108: 2.11483404e-10 + syst_JES_EtaIntercalibration_Stat109: 1.77426989e-20 + syst_JES_EtaIntercalibration_Stat11: 1.17866057e-10 + syst_JES_EtaIntercalibration_Stat110: 1.77498747e-20 + syst_JES_EtaIntercalibration_Stat111: 9.77758748e-24 + syst_JES_EtaIntercalibration_Stat112: 2.02358325e-23 + syst_JES_EtaIntercalibration_Stat113: 9.94984152e-18 + syst_JES_EtaIntercalibration_Stat114: 1.92593537e-10 + syst_JES_EtaIntercalibration_Stat115: 2.30865020e-10 + syst_JES_EtaIntercalibration_Stat116: 8.24544711e-10 + syst_JES_EtaIntercalibration_Stat117: 7.22586196e-10 + syst_JES_EtaIntercalibration_Stat118: 8.55031806e-10 + syst_JES_EtaIntercalibration_Stat119: 2.11916416e-10 + syst_JES_EtaIntercalibration_Stat12: 4.04953479e-13 + syst_JES_EtaIntercalibration_Stat120: 1.75457538e-10 + syst_JES_EtaIntercalibration_Stat121: 1.87664035e-21 + syst_JES_EtaIntercalibration_Stat122: 2.65177147e-20 + syst_JES_EtaIntercalibration_Stat123: 5.60406156e-23 + syst_JES_EtaIntercalibration_Stat124: 5.33941820e-23 + syst_JES_EtaIntercalibration_Stat125: 2.55343762e-22 + syst_JES_EtaIntercalibration_Stat126: 1.43327204e-10 + syst_JES_EtaIntercalibration_Stat127: 2.05248021e-23 + syst_JES_EtaIntercalibration_Stat128: 3.42824816e-10 + syst_JES_EtaIntercalibration_Stat129: 2.77907552e-10 + syst_JES_EtaIntercalibration_Stat13: 3.42098261e-10 + syst_JES_EtaIntercalibration_Stat130: 1.16567977e-21 + syst_JES_EtaIntercalibration_Stat131: 1.02317353e-17 + syst_JES_EtaIntercalibration_Stat132: 5.10018778e-19 + syst_JES_EtaIntercalibration_Stat133: 3.32210246e-10 + syst_JES_EtaIntercalibration_Stat134: 2.96613699e-10 + syst_JES_EtaIntercalibration_Stat135: 8.69862028e-10 + syst_JES_EtaIntercalibration_Stat136: 3.52732147e-10 + syst_JES_EtaIntercalibration_Stat137: 4.64622625e-10 + syst_JES_EtaIntercalibration_Stat138: 4.86619671e-10 + syst_JES_EtaIntercalibration_Stat139: 1.84729974e-09 + syst_JES_EtaIntercalibration_Stat14: 3.42098261e-10 + syst_JES_EtaIntercalibration_Stat140: 1.32727575e-09 + syst_JES_EtaIntercalibration_Stat141: 1.39097810e-18 + syst_JES_EtaIntercalibration_Stat142: 1.95115523e-10 + syst_JES_EtaIntercalibration_Stat143: 1.31121648e-21 + syst_JES_EtaIntercalibration_Stat144: 6.99779229e-21 + syst_JES_EtaIntercalibration_Stat145: 4.38382060e-15 + syst_JES_EtaIntercalibration_Stat146: 2.04988154e-14 + syst_JES_EtaIntercalibration_Stat147: 1.00129076e-21 + syst_JES_EtaIntercalibration_Stat148: 4.46300141e-20 + syst_JES_EtaIntercalibration_Stat149: 3.81647020e-10 + syst_JES_EtaIntercalibration_Stat15: 2.09491545e-10 + syst_JES_EtaIntercalibration_Stat150: 5.06152536e-19 + syst_JES_EtaIntercalibration_Stat151: 2.02274271e-10 + syst_JES_EtaIntercalibration_Stat152: 2.94362033e-10 + syst_JES_EtaIntercalibration_Stat153: 4.99696657e-10 + syst_JES_EtaIntercalibration_Stat154: 2.13735069e-10 + syst_JES_EtaIntercalibration_Stat155: 1.52333869e-10 + syst_JES_EtaIntercalibration_Stat156: 1.78013054e-09 + syst_JES_EtaIntercalibration_Stat157: 1.47655321e-09 + syst_JES_EtaIntercalibration_Stat158: 1.27845531e-09 + syst_JES_EtaIntercalibration_Stat159: 1.38744489e-18 + syst_JES_EtaIntercalibration_Stat16: 2.09491545e-10 + syst_JES_EtaIntercalibration_Stat160: 4.08728186e-10 + syst_JES_EtaIntercalibration_Stat161: 6.78877359e-15 + syst_JES_EtaIntercalibration_Stat162: 2.18238402e-10 + syst_JES_EtaIntercalibration_Stat163: 1.56923803e-10 + syst_JES_EtaIntercalibration_Stat164: 1.06425621e-17 + syst_JES_EtaIntercalibration_Stat165: 4.27719291e-20 + syst_JES_EtaIntercalibration_Stat166: 1.85329436e-10 + syst_JES_EtaIntercalibration_Stat167: 1.41174505e-17 + syst_JES_EtaIntercalibration_Stat168: 2.15986736e-10 + syst_JES_EtaIntercalibration_Stat169: 7.08234326e-10 + syst_JES_EtaIntercalibration_Stat17: 2.09491545e-10 + syst_JES_EtaIntercalibration_Stat170: 7.17848465e-10 + syst_JES_EtaIntercalibration_Stat171: 2.67568077e-09 + syst_JES_EtaIntercalibration_Stat172: 3.17562665e-09 + syst_JES_EtaIntercalibration_Stat173: 2.53908305e-09 + syst_JES_EtaIntercalibration_Stat174: 2.94055212e-09 + syst_JES_EtaIntercalibration_Stat175: 1.08534416e-09 + syst_JES_EtaIntercalibration_Stat176: 6.67522786e-10 + syst_JES_EtaIntercalibration_Stat177: 2.04555575e-10 + syst_JES_EtaIntercalibration_Stat178: 2.11743211e-10 + syst_JES_EtaIntercalibration_Stat179: 2.10530776e-10 + syst_JES_EtaIntercalibration_Stat18: 2.09491545e-10 + syst_JES_EtaIntercalibration_Stat180: 3.98426581e-20 + syst_JES_EtaIntercalibration_Stat181: 9.91872123e-22 + syst_JES_EtaIntercalibration_Stat182: 2.05334619e-10 + syst_JES_EtaIntercalibration_Stat183: 1.80105080e-10 + syst_JES_EtaIntercalibration_Stat184: 1.69381678e-10 + syst_JES_EtaIntercalibration_Stat185: 1.11687187e-10 + syst_JES_EtaIntercalibration_Stat186: 1.63728574e-09 + syst_JES_EtaIntercalibration_Stat187: 5.80421580e-09 + syst_JES_EtaIntercalibration_Stat188: 1.52414788e-08 + syst_JES_EtaIntercalibration_Stat189: 1.36103265e-08 + syst_JES_EtaIntercalibration_Stat19: 3.42098261e-10 + syst_JES_EtaIntercalibration_Stat190: 1.30109476e-08 + syst_JES_EtaIntercalibration_Stat191: 9.61021877e-09 + syst_JES_EtaIntercalibration_Stat192: 5.57009163e-09 + syst_JES_EtaIntercalibration_Stat193: 2.23757513e-09 + syst_JES_EtaIntercalibration_Stat194: 9.76126519e-11 + syst_JES_EtaIntercalibration_Stat195: 2.22295764e-16 + syst_JES_EtaIntercalibration_Stat196: 1.11406964e-17 + syst_JES_EtaIntercalibration_Stat197: 4.28930775e-10 + syst_JES_EtaIntercalibration_Stat198: 2.56431190e-10 + syst_JES_EtaIntercalibration_Stat199: 3.27321108e-10 + syst_JES_EtaIntercalibration_Stat2: 3.42098261e-10 + syst_JES_EtaIntercalibration_Stat20: 3.42098261e-10 + syst_JES_EtaIntercalibration_Stat200: 2.77317681e-10 + syst_JES_EtaIntercalibration_Stat201: 3.13286999e-09 + syst_JES_EtaIntercalibration_Stat202: 9.58518788e-09 + syst_JES_EtaIntercalibration_Stat203: 3.06449637e-08 + syst_JES_EtaIntercalibration_Stat204: 3.01309953e-08 + syst_JES_EtaIntercalibration_Stat205: 2.73545133e-08 + syst_JES_EtaIntercalibration_Stat206: 3.12793894e-08 + syst_JES_EtaIntercalibration_Stat207: 1.03489768e-08 + syst_JES_EtaIntercalibration_Stat208: 1.84336306e-09 + syst_JES_EtaIntercalibration_Stat209: 2.16810792e-11 + syst_JES_EtaIntercalibration_Stat21: 3.42098261e-10 + syst_JES_EtaIntercalibration_Stat210: 1.59348244e-10 + syst_JES_EtaIntercalibration_Stat211: 1.36053664e-15 + syst_JES_EtaIntercalibration_Stat212: 3.23460488e-11 + syst_JES_EtaIntercalibration_Stat213: 4.59816235e-10 + syst_JES_EtaIntercalibration_Stat214: 3.12927073e-09 + syst_JES_EtaIntercalibration_Stat215: 1.26053202e-08 + syst_JES_EtaIntercalibration_Stat216: 3.69300975e-08 + syst_JES_EtaIntercalibration_Stat217: 3.24375041e-08 + syst_JES_EtaIntercalibration_Stat218: 3.45845844e-08 + syst_JES_EtaIntercalibration_Stat219: 3.64602510e-08 + syst_JES_EtaIntercalibration_Stat22: 3.42098261e-10 + syst_JES_EtaIntercalibration_Stat220: 1.31871611e-08 + syst_JES_EtaIntercalibration_Stat221: 1.47138455e-09 + syst_JES_EtaIntercalibration_Stat222: 2.16154036e-11 + syst_JES_EtaIntercalibration_Stat223: 1.19516549e-12 + syst_JES_EtaIntercalibration_Stat224: 2.05114551e-10 + syst_JES_EtaIntercalibration_Stat225: 2.86109201e-09 + syst_JES_EtaIntercalibration_Stat226: 7.50160103e-09 + syst_JES_EtaIntercalibration_Stat227: 3.31107641e-08 + syst_JES_EtaIntercalibration_Stat228: 9.76591516e-08 + syst_JES_EtaIntercalibration_Stat229: 9.50672955e-08 + syst_JES_EtaIntercalibration_Stat23: 3.40614955e-10 + syst_JES_EtaIntercalibration_Stat230: 9.48973565e-08 + syst_JES_EtaIntercalibration_Stat231: 1.10510958e-07 + syst_JES_EtaIntercalibration_Stat232: 3.34219613e-08 + syst_JES_EtaIntercalibration_Stat233: 3.74910333e-09 + syst_JES_EtaIntercalibration_Stat234: 3.90629655e-10 + syst_JES_EtaIntercalibration_Stat235: 1.13016315e-10 + syst_JES_EtaIntercalibration_Stat236: 2.76450932e-10 + syst_JES_EtaIntercalibration_Stat237: 3.00671221e-09 + syst_JES_EtaIntercalibration_Stat238: 8.33201830e-09 + syst_JES_EtaIntercalibration_Stat239: 1.58102965e-08 + syst_JES_EtaIntercalibration_Stat24: 2.09491545e-10 + syst_JES_EtaIntercalibration_Stat240: 1.19239732e-08 + syst_JES_EtaIntercalibration_Stat241: 1.16213958e-08 + syst_JES_EtaIntercalibration_Stat242: 8.57173382e-09 + syst_JES_EtaIntercalibration_Stat243: 6.29709495e-09 + syst_JES_EtaIntercalibration_Stat244: 4.25128630e-10 + syst_JES_EtaIntercalibration_Stat245: 1.51007362e-10 + syst_JES_EtaIntercalibration_Stat25: 3.52437583e-23 + syst_JES_EtaIntercalibration_Stat26: 3.32643608e-23 + syst_JES_EtaIntercalibration_Stat27: 3.72857436e-23 + syst_JES_EtaIntercalibration_Stat28: 3.31316507e-23 + syst_JES_EtaIntercalibration_Stat29: 9.96396519e-18 + syst_JES_EtaIntercalibration_Stat3: 3.42098261e-10 + syst_JES_EtaIntercalibration_Stat30: 3.55200380e-23 + syst_JES_EtaIntercalibration_Stat31: 6.74633790e-11 + syst_JES_EtaIntercalibration_Stat32: 3.87199958e-13 + syst_JES_EtaIntercalibration_Stat33: 1.17857397e-10 + syst_JES_EtaIntercalibration_Stat34: 3.87199958e-13 + syst_JES_EtaIntercalibration_Stat35: 2.31421752e-23 + syst_JES_EtaIntercalibration_Stat36: 2.88778860e-10 + syst_JES_EtaIntercalibration_Stat37: 2.14254685e-10 + syst_JES_EtaIntercalibration_Stat38: 3.49631960e-23 + syst_JES_EtaIntercalibration_Stat39: 3.49719330e-23 + syst_JES_EtaIntercalibration_Stat4: 3.42098261e-10 + syst_JES_EtaIntercalibration_Stat40: 2.09404943e-10 + syst_JES_EtaIntercalibration_Stat41: 3.42027554e-10 + syst_JES_EtaIntercalibration_Stat42: 3.42098261e-10 + syst_JES_EtaIntercalibration_Stat43: 3.42098261e-10 + syst_JES_EtaIntercalibration_Stat44: 3.42098261e-10 + syst_JES_EtaIntercalibration_Stat45: 3.42098261e-10 + syst_JES_EtaIntercalibration_Stat46: 3.54908495e-23 + syst_JES_EtaIntercalibration_Stat47: 1.91667041e-23 + syst_JES_EtaIntercalibration_Stat48: 2.88167330e-23 + syst_JES_EtaIntercalibration_Stat49: 2.09145135e-10 + syst_JES_EtaIntercalibration_Stat5: 3.42098261e-10 + syst_JES_EtaIntercalibration_Stat50: 3.39369715e-23 + syst_JES_EtaIntercalibration_Stat51: 9.96106951e-18 + syst_JES_EtaIntercalibration_Stat52: 1.00164496e-17 + syst_JES_EtaIntercalibration_Stat53: 6.74633790e-11 + syst_JES_EtaIntercalibration_Stat54: 3.87286561e-13 + syst_JES_EtaIntercalibration_Stat55: 3.87286561e-13 + syst_JES_EtaIntercalibration_Stat56: 3.87286561e-13 + syst_JES_EtaIntercalibration_Stat57: 3.37206745e-23 + syst_JES_EtaIntercalibration_Stat58: 5.94313823e-24 + syst_JES_EtaIntercalibration_Stat59: 1.36139193e-10 + syst_JES_EtaIntercalibration_Stat6: 2.27504874e-10 + syst_JES_EtaIntercalibration_Stat60: 3.37309146e-10 + syst_JES_EtaIntercalibration_Stat61: 2.00969178e-23 + syst_JES_EtaIntercalibration_Stat62: 2.08971930e-10 + syst_JES_EtaIntercalibration_Stat63: 3.32074751e-23 + syst_JES_EtaIntercalibration_Stat64: 3.42098261e-10 + syst_JES_EtaIntercalibration_Stat65: 3.42098261e-10 + syst_JES_EtaIntercalibration_Stat66: 3.42098261e-10 + syst_JES_EtaIntercalibration_Stat67: 3.42098261e-10 + syst_JES_EtaIntercalibration_Stat68: 1.31577762e-25 + syst_JES_EtaIntercalibration_Stat69: 2.06806866e-10 + syst_JES_EtaIntercalibration_Stat7: 2.09491545e-10 + syst_JES_EtaIntercalibration_Stat70: 1.66017070e-10 + syst_JES_EtaIntercalibration_Stat71: 2.86914216e-14 + syst_JES_EtaIntercalibration_Stat72: 1.00432962e-17 + syst_JES_EtaIntercalibration_Stat73: 1.00432958e-17 + syst_JES_EtaIntercalibration_Stat74: 1.68788351e-10 + syst_JES_EtaIntercalibration_Stat75: 3.83129639e-12 + syst_JES_EtaIntercalibration_Stat76: 3.85294702e-12 + syst_JES_EtaIntercalibration_Stat77: 1.17840077e-10 + syst_JES_EtaIntercalibration_Stat78: 7.94714339e-10 + syst_JES_EtaIntercalibration_Stat79: 8.92179371e-10 + syst_JES_EtaIntercalibration_Stat8: 2.27977316e-23 + syst_JES_EtaIntercalibration_Stat80: 4.97704800e-14 + syst_JES_EtaIntercalibration_Stat81: 1.12585018e-23 + syst_JES_EtaIntercalibration_Stat82: 2.03251904e-23 + syst_JES_EtaIntercalibration_Stat83: 4.13055953e-23 + syst_JES_EtaIntercalibration_Stat84: 2.09318702e-23 + syst_JES_EtaIntercalibration_Stat85: 2.06561194e-23 + syst_JES_EtaIntercalibration_Stat86: 2.09491545e-10 + syst_JES_EtaIntercalibration_Stat87: 2.09491545e-10 + syst_JES_EtaIntercalibration_Stat88: 2.06942141e-23 + syst_JES_EtaIntercalibration_Stat89: 2.03689175e-10 + syst_JES_EtaIntercalibration_Stat9: 4.04953479e-13 + syst_JES_EtaIntercalibration_Stat90: 3.96260735e-23 + syst_JES_EtaIntercalibration_Stat91: 3.95092012e-23 + syst_JES_EtaIntercalibration_Stat92: 5.04788332e-23 + syst_JES_EtaIntercalibration_Stat93: 1.00441627e-17 + syst_JES_EtaIntercalibration_Stat94: 9.95933800e-18 + syst_JES_EtaIntercalibration_Stat95: 1.72339055e-10 + syst_JES_EtaIntercalibration_Stat96: 3.85208100e-12 + syst_JES_EtaIntercalibration_Stat97: 2.90905892e-10 + syst_JES_EtaIntercalibration_Stat98: 1.80091161e-10 + syst_JES_EtaIntercalibration_Stat99: 5.61963885e-14 + syst_JES_EtaIntercalibration_TotalStat_MJB: 3.70539239e-06 + syst_JES_Flavour_Comp: 1.76853181e-06 + syst_JES_Flavour_Response: 3.01894133e-06 + syst_JES_Gjet_Generator: 5.89861730e-06 + syst_JES_Gjet_OOC: 4.93937020e-06 + syst_JES_Gjet_Purity: 1.91333897e-07 + syst_JES_Gjet_Stat1: 1.03915012e-08 + syst_JES_Gjet_Stat10: 3.73005071e-07 + syst_JES_Gjet_Stat11: 3.62939637e-07 + syst_JES_Gjet_Stat12: 1.34805690e-07 + syst_JES_Gjet_Stat13: 1.55200258e-06 + syst_JES_Gjet_Stat14: 4.95510404e-06 + syst_JES_Gjet_Stat15: 7.67381279e-06 + syst_JES_Gjet_Stat2: 2.43424259e-08 + syst_JES_Gjet_Stat3: 3.16994365e-08 + syst_JES_Gjet_Stat4: 1.35515558e-07 + syst_JES_Gjet_Stat5: 1.29351566e-07 + syst_JES_Gjet_Stat6: 9.66705243e-08 + syst_JES_Gjet_Stat7: 1.37700262e-07 + syst_JES_Gjet_Stat8: 2.36488372e-08 + syst_JES_Gjet_Stat9: 1.37580088e-07 + syst_JES_Gjet_Veto: 5.99590567e-06 + syst_JES_Gjet_dPhi: 1.48903291e-07 + syst_JES_LArESZee: 7.11161548e-06 + syst_JES_LArEsmear: 7.18100223e-07 + syst_JES_LAr_JVT: 9.49891124e-07 + syst_JES_MJB_Alpha: 1.40975111e-07 + syst_JES_MJB_Asym: 5.32095168e-06 + syst_JES_MJB_Beta: 3.96198775e-07 + syst_JES_MJB_Fragmentation: 1.12967851e-06 + syst_JES_MJB_Stat1: 3.22267788e-10 + syst_JES_MJB_Stat10: 9.96764239e-09 + syst_JES_MJB_Stat11: 1.63336118e-08 + syst_JES_MJB_Stat12: 3.53069118e-08 + syst_JES_MJB_Stat13: 6.51200384e-08 + syst_JES_MJB_Stat14: 1.38035096e-06 + syst_JES_MJB_Stat15: 2.94502984e-06 + syst_JES_MJB_Stat16: 4.24969184e-06 + syst_JES_MJB_Stat2: 1.22037811e-10 + syst_JES_MJB_Stat3: 1.73557071e-09 + syst_JES_MJB_Stat4: 1.97509310e-09 + syst_JES_MJB_Stat5: 1.68100609e-09 + syst_JES_MJB_Stat6: 1.37945305e-09 + syst_JES_MJB_Stat7: 2.87835912e-09 + syst_JES_MJB_Stat8: 3.67214821e-09 + syst_JES_MJB_Stat9: 4.75895230e-09 + syst_JES_MJB_Threshold: 8.67431173e-07 + syst_JES_Pileup_MuOffset: 2.36689306e-06 + syst_JES_Pileup_NPVOffset: 1.53850796e-06 + syst_JES_Pileup_Pt_term: 4.31760315e-07 + syst_JES_Pileup_Rho_topology: 2.43593365e-06 + syst_JES_PunchThrough_MC15: 6.18919793e-06 + syst_JES_SingleParticle_HighPt: 1.05664898e-06 + syst_JES_Zjet_MC: 2.18279792e-06 + syst_JES_Zjet_MuScale: 2.71317577e-07 + syst_JES_Zjet_MuSmearID: 1.34083299e-08 + syst_JES_Zjet_MuSmearMS: 3.04348797e-07 + syst_JES_Zjet_OOC: 1.24282392e-06 + syst_JES_Zjet_Stat1: 2.79151357e-07 + syst_JES_Zjet_Stat10: 1.61475881e-07 + syst_JES_Zjet_Stat11: 1.18366090e-07 + syst_JES_Zjet_Stat12: 1.95603016e-07 + syst_JES_Zjet_Stat13: 4.89324890e-07 + syst_JES_Zjet_Stat2: 3.12040270e-09 + syst_JES_Zjet_Stat3: 4.42908125e-08 + syst_JES_Zjet_Stat4: 8.36552454e-08 + syst_JES_Zjet_Stat5: 6.03167512e-08 + syst_JES_Zjet_Stat6: 1.38801032e-07 + syst_JES_Zjet_Stat7: 1.06872565e-07 + syst_JES_Zjet_Stat8: 4.74590202e-08 + syst_JES_Zjet_Stat9: 1.35454179e-07 + syst_JES_Zjet_Veto: 2.22087550e-07 + syst_JES_Zjet_dPhi: 2.14324894e-07 syst_PRW: 0.0 - syst_Unfolding_bias: 7.849e-09 - syst_cleaning: 1.2600669625063584e-06 - syst_lumi: 2.832e-06 -- stat: 1.0065e-05 + syst_Unfolding_bias: 7.84900000e-09 + syst_cleaning: 1.26006696e-06 + syst_lumi: 2.83200000e-06 +- stat: 1.00650000e-05 syst_JER_CROSS_CALIB_FORWARD: 2.52e-25 - syst_JER_NOISE_FORWARD: 1.792e-25 - syst_JER_NP0: 8.340214085981246e-08 - syst_JER_NP1: 4.390643138254349e-08 - syst_JER_NP2: 1.3302635782054624e-07 - syst_JER_NP3: 2.4191837466385228e-08 - syst_JER_NP4: 3.894000256805333e-08 - syst_JER_NP5: 3.941265374216763e-08 - syst_JER_NP6: 4.552583524769205e-08 - syst_JER_NP7: 2.502981410848021e-08 - syst_JER_NP8: 3.137331987533357e-08 - syst_JES_EtaIntercalibration_Modelling: 1.1208609224609446e-06 - syst_JES_EtaIntercalibration_NonClosure: 1.1544654997010521e-17 - syst_JES_EtaIntercalibration_Stat0: 1.4228402651035708e-10 - syst_JES_EtaIntercalibration_Stat1: 1.4228402651035708e-10 - syst_JES_EtaIntercalibration_Stat10: 5.948900944243858e-11 - syst_JES_EtaIntercalibration_Stat100: 7.122192920719647e-11 - syst_JES_EtaIntercalibration_Stat101: 9.654667316899118e-25 - syst_JES_EtaIntercalibration_Stat102: 1.214226618057766e-24 - syst_JES_EtaIntercalibration_Stat103: 9.243089134591379e-11 - syst_JES_EtaIntercalibration_Stat104: 5.018080456459422e-24 - syst_JES_EtaIntercalibration_Stat105: 5.632967673216313e-24 - syst_JES_EtaIntercalibration_Stat106: 8.0471413040594735e-25 - syst_JES_EtaIntercalibration_Stat107: 8.713081587475238e-11 - syst_JES_EtaIntercalibration_Stat108: 8.798818102449897e-11 - syst_JES_EtaIntercalibration_Stat109: 1.9236832111454837e-21 - syst_JES_EtaIntercalibration_Stat11: 4.035678381635485e-11 - syst_JES_EtaIntercalibration_Stat110: 1.924936596150637e-21 - syst_JES_EtaIntercalibration_Stat111: 1.026049515130727e-24 - syst_JES_EtaIntercalibration_Stat112: 9.818287563903392e-24 - syst_JES_EtaIntercalibration_Stat113: 8.100062930002457e-19 - syst_JES_EtaIntercalibration_Stat114: 8.015156921412503e-11 - syst_JES_EtaIntercalibration_Stat115: 4.566236697707068e-11 - syst_JES_EtaIntercalibration_Stat116: 4.859940597116388e-10 - syst_JES_EtaIntercalibration_Stat117: 3.411925879543692e-10 - syst_JES_EtaIntercalibration_Stat118: 4.758756245070764e-10 - syst_JES_EtaIntercalibration_Stat119: 1.3501336044998587e-10 - syst_JES_EtaIntercalibration_Stat12: 2.9202376615604154e-14 - syst_JES_EtaIntercalibration_Stat120: 6.931343358253147e-11 - syst_JES_EtaIntercalibration_Stat121: 2.1708990649037555e-22 - syst_JES_EtaIntercalibration_Stat122: 2.8092047107811494e-21 - syst_JES_EtaIntercalibration_Stat123: 7.184663161902581e-24 - syst_JES_EtaIntercalibration_Stat124: 6.3265062370553315e-24 - syst_JES_EtaIntercalibration_Stat125: 3.51193176898413e-23 - syst_JES_EtaIntercalibration_Stat126: 5.960852854248322e-11 - syst_JES_EtaIntercalibration_Stat127: 3.4736278945793836e-24 - syst_JES_EtaIntercalibration_Stat128: 1.4263438400266282e-10 - syst_JES_EtaIntercalibration_Stat129: 1.1559707089694938e-10 - syst_JES_EtaIntercalibration_Stat13: 1.4227695553040204e-10 - syst_JES_EtaIntercalibration_Stat130: 1.1780233444206444e-22 - syst_JES_EtaIntercalibration_Stat131: 8.320139707360688e-19 - syst_JES_EtaIntercalibration_Stat132: 3.986536599277718e-20 - syst_JES_EtaIntercalibration_Stat133: 1.108336654631615e-10 - syst_JES_EtaIntercalibration_Stat134: 2.844893438594498e-11 - syst_JES_EtaIntercalibration_Stat135: 3.6971590106458773e-10 - syst_JES_EtaIntercalibration_Stat136: 1.412487433258774e-10 - syst_JES_EtaIntercalibration_Stat137: 1.9355667744043262e-10 - syst_JES_EtaIntercalibration_Stat138: 3.8338944595333017e-10 - syst_JES_EtaIntercalibration_Stat139: 8.441364752218684e-10 - syst_JES_EtaIntercalibration_Stat14: 1.4227695553040204e-10 - syst_JES_EtaIntercalibration_Stat140: 5.717568011619976e-10 - syst_JES_EtaIntercalibration_Stat141: 1.1777045597262497e-19 - syst_JES_EtaIntercalibration_Stat142: 8.116390084208841e-11 - syst_JES_EtaIntercalibration_Stat143: 1.951450967869805e-22 - syst_JES_EtaIntercalibration_Stat144: 8.16528462455535e-22 - syst_JES_EtaIntercalibration_Stat145: 3.154930560651407e-16 - syst_JES_EtaIntercalibration_Stat146: 1.4757066506550875e-15 - syst_JES_EtaIntercalibration_Stat147: 1.2245071431702633e-22 - syst_JES_EtaIntercalibration_Stat148: 4.1609595248572175e-21 - syst_JES_EtaIntercalibration_Stat149: 1.5875457473723396e-10 - syst_JES_EtaIntercalibration_Stat15: 8.71308158747512e-11 - syst_JES_EtaIntercalibration_Stat150: 3.9419745697809875e-20 - syst_JES_EtaIntercalibration_Stat151: 3.712898572207434e-11 - syst_JES_EtaIntercalibration_Stat152: 2.8119844713916215e-11 - syst_JES_EtaIntercalibration_Stat153: 4.643628214241723e-10 - syst_JES_EtaIntercalibration_Stat154: 7.33523516683258e-11 - syst_JES_EtaIntercalibration_Stat155: 2.6656261928227094e-10 - syst_JES_EtaIntercalibration_Stat156: 8.128211042412716e-10 - syst_JES_EtaIntercalibration_Stat157: 7.546764129665111e-10 - syst_JES_EtaIntercalibration_Stat158: 5.610976503247897e-10 - syst_JES_EtaIntercalibration_Stat159: 1.1781290962793508e-19 - syst_JES_EtaIntercalibration_Stat16: 8.71308158747512e-11 - syst_JES_EtaIntercalibration_Stat160: 1.7002645757352001e-10 - syst_JES_EtaIntercalibration_Stat161: 4.886115987774842e-16 - syst_JES_EtaIntercalibration_Stat162: 9.079410333272332e-11 - syst_JES_EtaIntercalibration_Stat163: 6.527233468319746e-11 - syst_JES_EtaIntercalibration_Stat164: 8.314680356254331e-19 - syst_JES_EtaIntercalibration_Stat165: 4.3362010654488796e-21 - syst_JES_EtaIntercalibration_Stat166: 7.708492118931049e-11 - syst_JES_EtaIntercalibration_Stat167: 1.1588026061413568e-18 - syst_JES_EtaIntercalibration_Stat168: 8.985013564511494e-11 - syst_JES_EtaIntercalibration_Stat169: 2.533300367110067e-10 - syst_JES_EtaIntercalibration_Stat17: 8.712215562071498e-11 - syst_JES_EtaIntercalibration_Stat170: 9.681298041300778e-11 - syst_JES_EtaIntercalibration_Stat171: 1.2896646725021198e-09 - syst_JES_EtaIntercalibration_Stat172: 1.3203714505774503e-09 - syst_JES_EtaIntercalibration_Stat173: 1.1712994834797801e-09 - syst_JES_EtaIntercalibration_Stat174: 1.2632761218356024e-09 - syst_JES_EtaIntercalibration_Stat175: 5.268461729954959e-10 - syst_JES_EtaIntercalibration_Stat176: 4.139984121128969e-10 - syst_JES_EtaIntercalibration_Stat177: 8.564128046755694e-11 - syst_JES_EtaIntercalibration_Stat178: 8.81007643243845e-11 - syst_JES_EtaIntercalibration_Stat179: 8.755516832233459e-11 - syst_JES_EtaIntercalibration_Stat18: 8.71308158747512e-11 - syst_JES_EtaIntercalibration_Stat180: 3.928810059038233e-21 - syst_JES_EtaIntercalibration_Stat181: 1.2549849511049924e-22 - syst_JES_EtaIntercalibration_Stat182: 8.539876475960014e-11 - syst_JES_EtaIntercalibration_Stat183: 7.490392963656847e-11 - syst_JES_EtaIntercalibration_Stat184: 7.044836262155991e-11 - syst_JES_EtaIntercalibration_Stat185: 8.492069406418954e-11 - syst_JES_EtaIntercalibration_Stat186: 9.358336604333058e-10 - syst_JES_EtaIntercalibration_Stat187: 2.3449184953852873e-09 - syst_JES_EtaIntercalibration_Stat188: 6.651523490900412e-09 - syst_JES_EtaIntercalibration_Stat189: 5.6417184217222325e-09 - syst_JES_EtaIntercalibration_Stat19: 1.4228402651035708e-10 - syst_JES_EtaIntercalibration_Stat190: 6.102892326594006e-09 - syst_JES_EtaIntercalibration_Stat191: 4.340770982210418e-09 - syst_JES_EtaIntercalibration_Stat192: 2.295950130120425e-09 - syst_JES_EtaIntercalibration_Stat193: 1.015241940288496e-09 - syst_JES_EtaIntercalibration_Stat194: 1.1094125337312536e-11 - syst_JES_EtaIntercalibration_Stat195: 1.6315179641977587e-17 - syst_JES_EtaIntercalibration_Stat196: 8.657764704727125e-19 - syst_JES_EtaIntercalibration_Stat197: 1.7838409591384539e-10 - syst_JES_EtaIntercalibration_Stat198: 1.0668574651095331e-10 - syst_JES_EtaIntercalibration_Stat199: 1.361610403162373e-10 - syst_JES_EtaIntercalibration_Stat2: 1.4228402651035708e-10 - syst_JES_EtaIntercalibration_Stat20: 1.4228402651035708e-10 - syst_JES_EtaIntercalibration_Stat200: 1.0833951022134077e-10 - syst_JES_EtaIntercalibration_Stat201: 1.2666861805514419e-09 - syst_JES_EtaIntercalibration_Stat202: 4.12019562642358e-09 - syst_JES_EtaIntercalibration_Stat203: 1.3790004958302227e-08 - syst_JES_EtaIntercalibration_Stat204: 1.2217270020344151e-08 - syst_JES_EtaIntercalibration_Stat205: 1.2155060129427579e-08 - syst_JES_EtaIntercalibration_Stat206: 1.3526626288546602e-08 - syst_JES_EtaIntercalibration_Stat207: 4.13204138411028e-09 - syst_JES_EtaIntercalibration_Stat208: 7.623618301043147e-10 - syst_JES_EtaIntercalibration_Stat209: 5.166105242547329e-11 - syst_JES_EtaIntercalibration_Stat21: 1.4228402651035708e-10 - syst_JES_EtaIntercalibration_Stat210: 6.629421370800864e-11 - syst_JES_EtaIntercalibration_Stat211: 9.986554892007303e-17 - syst_JES_EtaIntercalibration_Stat212: 3.729971414099332e-12 - syst_JES_EtaIntercalibration_Stat213: 1.3867558788409733e-10 - syst_JES_EtaIntercalibration_Stat214: 1.2666777441401582e-09 - syst_JES_EtaIntercalibration_Stat215: 4.897028971733779e-09 - syst_JES_EtaIntercalibration_Stat216: 1.643841233209582e-08 - syst_JES_EtaIntercalibration_Stat217: 1.465432757754514e-08 - syst_JES_EtaIntercalibration_Stat218: 1.5205264713249815e-08 - syst_JES_EtaIntercalibration_Stat219: 1.5632615744014178e-08 - syst_JES_EtaIntercalibration_Stat22: 1.4228402651035708e-10 - syst_JES_EtaIntercalibration_Stat220: 5.090450544892859e-09 - syst_JES_EtaIntercalibration_Stat221: 4.505376255930241e-10 - syst_JES_EtaIntercalibration_Stat222: 5.165242073707678e-11 - syst_JES_EtaIntercalibration_Stat223: 9.564407527854666e-14 - syst_JES_EtaIntercalibration_Stat224: 8.573946333056736e-11 - syst_JES_EtaIntercalibration_Stat225: 1.1928442592706727e-09 - syst_JES_EtaIntercalibration_Stat226: 2.6378902081019218e-09 - syst_JES_EtaIntercalibration_Stat227: 1.3266197759720001e-08 - syst_JES_EtaIntercalibration_Stat228: 4.290655748251076e-08 - syst_JES_EtaIntercalibration_Stat229: 4.2291282789719206e-08 - syst_JES_EtaIntercalibration_Stat23: 1.416695114518293e-10 - syst_JES_EtaIntercalibration_Stat230: 4.377179114452595e-08 - syst_JES_EtaIntercalibration_Stat231: 4.971647890790336e-08 - syst_JES_EtaIntercalibration_Stat232: 1.3919457604375252e-08 - syst_JES_EtaIntercalibration_Stat233: 1.1952131274379478e-09 - syst_JES_EtaIntercalibration_Stat234: 1.2777513324195753e-11 - syst_JES_EtaIntercalibration_Stat235: 1.578764311099148e-11 - syst_JES_EtaIntercalibration_Stat236: 1.0810959751566927e-10 - syst_JES_EtaIntercalibration_Stat237: 1.2499984162689967e-09 - syst_JES_EtaIntercalibration_Stat238: 3.478671568285802e-09 - syst_JES_EtaIntercalibration_Stat239: 6.8707563448284205e-09 - syst_JES_EtaIntercalibration_Stat24: 8.71308158747512e-11 - syst_JES_EtaIntercalibration_Stat240: 5.400905549072304e-09 - syst_JES_EtaIntercalibration_Stat241: 5.330175513057708e-09 - syst_JES_EtaIntercalibration_Stat242: 3.6683744356322185e-09 - syst_JES_EtaIntercalibration_Stat243: 2.5425534409329535e-09 - syst_JES_EtaIntercalibration_Stat244: 1.9507425458014697e-10 - syst_JES_EtaIntercalibration_Stat245: 2.024958350849469e-11 - syst_JES_EtaIntercalibration_Stat25: 6.803109362637059e-24 - syst_JES_EtaIntercalibration_Stat26: 5.611823471029715e-24 - syst_JES_EtaIntercalibration_Stat27: 6.387295574028181e-24 - syst_JES_EtaIntercalibration_Stat28: 5.5889192980396485e-24 - syst_JES_EtaIntercalibration_Stat29: 8.108849097128396e-19 - syst_JES_EtaIntercalibration_Stat3: 1.4229109766601705e-10 - syst_JES_EtaIntercalibration_Stat30: 6.045298525920783e-24 - syst_JES_EtaIntercalibration_Stat31: 2.8241088417410545e-11 - syst_JES_EtaIntercalibration_Stat32: 2.7929319272038885e-14 - syst_JES_EtaIntercalibration_Stat33: 4.035678381635486e-11 - syst_JES_EtaIntercalibration_Stat34: 2.792931927202221e-14 - syst_JES_EtaIntercalibration_Stat35: 3.974757084753734e-24 - syst_JES_EtaIntercalibration_Stat36: 1.2011866799128268e-10 - syst_JES_EtaIntercalibration_Stat37: 8.913133455749326e-11 - syst_JES_EtaIntercalibration_Stat38: 5.9422829384000215e-24 - syst_JES_EtaIntercalibration_Stat39: 5.939811837928874e-24 - syst_JES_EtaIntercalibration_Stat4: 1.4228402651035708e-10 - syst_JES_EtaIntercalibration_Stat40: 8.710483511263771e-11 - syst_JES_EtaIntercalibration_Stat41: 1.4227695553040204e-10 - syst_JES_EtaIntercalibration_Stat42: 1.4228402651035708e-10 - syst_JES_EtaIntercalibration_Stat43: 1.4228402651035708e-10 - syst_JES_EtaIntercalibration_Stat44: 1.4228402651035708e-10 - syst_JES_EtaIntercalibration_Stat45: 1.4228402651035708e-10 - syst_JES_EtaIntercalibration_Stat46: 6.0475802599056095e-24 - syst_JES_EtaIntercalibration_Stat47: 3.207116110698208e-24 - syst_JES_EtaIntercalibration_Stat48: 5.5268593332922816e-24 - syst_JES_EtaIntercalibration_Stat49: 8.700957231822106e-11 - syst_JES_EtaIntercalibration_Stat5: 1.4228402651035708e-10 - syst_JES_EtaIntercalibration_Stat50: 4.9402424717821285e-24 - syst_JES_EtaIntercalibration_Stat51: 8.105230389538597e-19 - syst_JES_EtaIntercalibration_Stat52: 8.162288847544729e-19 - syst_JES_EtaIntercalibration_Stat53: 2.824108841740945e-11 - syst_JES_EtaIntercalibration_Stat54: 2.792931927204421e-14 - syst_JES_EtaIntercalibration_Stat55: 2.7929319271888857e-14 - syst_JES_EtaIntercalibration_Stat56: 2.792931927200392e-14 - syst_JES_EtaIntercalibration_Stat57: 5.359007596439849e-24 - syst_JES_EtaIntercalibration_Stat58: 9.52295534314322e-25 - syst_JES_EtaIntercalibration_Stat59: 5.661208064538877e-11 - syst_JES_EtaIntercalibration_Stat6: 9.463925612556346e-11 - syst_JES_EtaIntercalibration_Stat60: 1.4031203904155908e-10 - syst_JES_EtaIntercalibration_Stat61: 3.392679747972095e-24 - syst_JES_EtaIntercalibration_Stat62: 8.694029028591866e-11 - syst_JES_EtaIntercalibration_Stat63: 5.604417496939356e-24 - syst_JES_EtaIntercalibration_Stat64: 1.4228402651035708e-10 - syst_JES_EtaIntercalibration_Stat65: 1.4228402651035708e-10 - syst_JES_EtaIntercalibration_Stat66: 1.4228402651035708e-10 - syst_JES_EtaIntercalibration_Stat67: 1.4227695553040204e-10 - syst_JES_EtaIntercalibration_Stat68: 3.762632954461543e-26 - syst_JES_EtaIntercalibration_Stat69: 8.603962386598434e-11 - syst_JES_EtaIntercalibration_Stat7: 8.713081587475107e-11 - syst_JES_EtaIntercalibration_Stat70: 6.903954518969552e-11 - syst_JES_EtaIntercalibration_Stat71: 2.0646045621097032e-15 - syst_JES_EtaIntercalibration_Stat72: 8.184805096681375e-19 - syst_JES_EtaIntercalibration_Stat73: 8.183938068132964e-19 - syst_JES_EtaIntercalibration_Stat74: 7.020867948480464e-11 - syst_JES_EtaIntercalibration_Stat75: 4.2798975455016034e-13 - syst_JES_EtaIntercalibration_Stat76: 4.318002663267716e-13 - syst_JES_EtaIntercalibration_Stat77: 4.0339463308279286e-11 - syst_JES_EtaIntercalibration_Stat78: 3.307166876648349e-10 - syst_JES_EtaIntercalibration_Stat79: 3.710918855216319e-10 - syst_JES_EtaIntercalibration_Stat8: 3.906396070558514e-24 - syst_JES_EtaIntercalibration_Stat80: 3.581881069827993e-15 - syst_JES_EtaIntercalibration_Stat81: 2.0141392621911722e-24 - syst_JES_EtaIntercalibration_Stat82: 3.548010586229979e-24 - syst_JES_EtaIntercalibration_Stat83: 7.101911832739125e-24 - syst_JES_EtaIntercalibration_Stat84: 3.5940242907776796e-24 - syst_JES_EtaIntercalibration_Stat85: 3.509576660236246e-24 - syst_JES_EtaIntercalibration_Stat86: 8.713081587475238e-11 - syst_JES_EtaIntercalibration_Stat87: 8.713081587475238e-11 - syst_JES_EtaIntercalibration_Stat88: 3.510724964521146e-24 - syst_JES_EtaIntercalibration_Stat89: 8.471460499819379e-11 - syst_JES_EtaIntercalibration_Stat9: 2.920237661691868e-14 - syst_JES_EtaIntercalibration_Stat90: 5.764623735119232e-24 - syst_JES_EtaIntercalibration_Stat91: 5.685581377511011e-24 - syst_JES_EtaIntercalibration_Stat92: 7.228414395287532e-24 - syst_JES_EtaIntercalibration_Stat93: 8.184805832687047e-19 - syst_JES_EtaIntercalibration_Stat94: 8.104338272184843e-19 - syst_JES_EtaIntercalibration_Stat95: 7.167226241719008e-11 - syst_JES_EtaIntercalibration_Stat96: 4.3180026632498815e-13 - syst_JES_EtaIntercalibration_Stat97: 1.2060875416598082e-10 - syst_JES_EtaIntercalibration_Stat98: 3.608663866373363e-11 - syst_JES_EtaIntercalibration_Stat99: 4.045204661239638e-15 - syst_JES_EtaIntercalibration_TotalStat_MJB: 1.711598375787965e-06 - syst_JES_Flavour_Comp: 6.160145533995118e-07 - syst_JES_Flavour_Response: 1.460362283818642e-06 - syst_JES_Gjet_Generator: 2.623970798236901e-06 - syst_JES_Gjet_OOC: 2.2044470395090012e-06 - syst_JES_Gjet_Purity: 1.326129951211419e-07 - syst_JES_Gjet_Stat1: 5.3365012882974175e-09 - syst_JES_Gjet_Stat10: 1.7414381269513996e-07 - syst_JES_Gjet_Stat11: 1.687703987670824e-07 - syst_JES_Gjet_Stat12: 5.8524982699698426e-08 - syst_JES_Gjet_Stat13: 7.098040715577785e-07 - syst_JES_Gjet_Stat14: 2.3088306564146273e-06 - syst_JES_Gjet_Stat15: 3.54784032898889e-06 - syst_JES_Gjet_Stat2: 9.89500161697814e-09 - syst_JES_Gjet_Stat3: 1.4093545357716063e-08 - syst_JES_Gjet_Stat4: 6.533049594178815e-08 - syst_JES_Gjet_Stat5: 6.166176611158652e-08 - syst_JES_Gjet_Stat6: 4.198717750694848e-08 - syst_JES_Gjet_Stat7: 6.53352024179921e-08 - syst_JES_Gjet_Stat8: 9.914172217083987e-09 - syst_JES_Gjet_Stat9: 6.528007506123136e-08 - syst_JES_Gjet_Veto: 2.7019594278967254e-06 - syst_JES_Gjet_dPhi: 5.0444379270638266e-08 - syst_JES_LArESZee: 3.0803134580753303e-06 - syst_JES_LArEsmear: 3.137005100410262e-07 - syst_JES_LAr_JVT: 4.150914929265595e-07 - syst_JES_MJB_Alpha: 5.96941806208947e-08 - syst_JES_MJB_Asym: 2.511651797124753e-06 - syst_JES_MJB_Beta: 1.8650860569957623e-07 - syst_JES_MJB_Fragmentation: 5.224482462407162e-07 - syst_JES_MJB_Stat1: 1.3423632546743822e-10 - syst_JES_MJB_Stat10: 3.3681739978807504e-09 - syst_JES_MJB_Stat11: 5.430222716427016e-09 - syst_JES_MJB_Stat12: 1.3386369634818843e-08 - syst_JES_MJB_Stat13: 2.420914031930915e-08 - syst_JES_MJB_Stat14: 6.713531317421555e-07 - syst_JES_MJB_Stat15: 1.5018371249905895e-06 - syst_JES_MJB_Stat16: 2.0571642496407527e-06 - syst_JES_MJB_Stat2: 6.059037444182037e-11 - syst_JES_MJB_Stat3: 7.311402926251568e-10 - syst_JES_MJB_Stat4: 8.531915420935677e-10 - syst_JES_MJB_Stat5: 7.165147521161027e-10 - syst_JES_MJB_Stat6: 5.350778891899757e-10 - syst_JES_MJB_Stat7: 1.3542209125545211e-09 - syst_JES_MJB_Stat8: 1.1900614217341892e-09 - syst_JES_MJB_Stat9: 1.6421786595861002e-09 - syst_JES_MJB_Threshold: 3.683752536476901e-07 - syst_JES_Pileup_MuOffset: 1.0925034862644605e-06 - syst_JES_Pileup_NPVOffset: 6.849500036499015e-07 - syst_JES_Pileup_Pt_term: 1.811455423133564e-07 - syst_JES_Pileup_Rho_topology: 1.1204088182444835e-06 - syst_JES_PunchThrough_MC15: 3.0030749241402553e-06 - syst_JES_SingleParticle_HighPt: 4.140609466008597e-07 - syst_JES_Zjet_MC: 9.696351788172705e-07 - syst_JES_Zjet_MuScale: 1.24888059877636e-07 - syst_JES_Zjet_MuSmearID: 4.217293089174619e-09 - syst_JES_Zjet_MuSmearMS: 1.2375461324734525e-07 - syst_JES_Zjet_OOC: 5.384711784301922e-07 - syst_JES_Zjet_Stat1: 1.2601476104012576e-07 - syst_JES_Zjet_Stat10: 7.676429687686849e-08 - syst_JES_Zjet_Stat11: 5.223357804133276e-08 - syst_JES_Zjet_Stat12: 8.295055635738678e-08 - syst_JES_Zjet_Stat13: 2.1409392214633277e-07 - syst_JES_Zjet_Stat2: 1.1018919400286037e-09 - syst_JES_Zjet_Stat3: 1.6948648176182078e-08 - syst_JES_Zjet_Stat4: 3.634480808863901e-08 - syst_JES_Zjet_Stat5: 2.393820377555509e-08 - syst_JES_Zjet_Stat6: 6.420707496063031e-08 - syst_JES_Zjet_Stat7: 4.5153142470928865e-08 - syst_JES_Zjet_Stat8: 1.924265054507824e-08 - syst_JES_Zjet_Stat9: 6.351967628223557e-08 - syst_JES_Zjet_Veto: 9.737042813400793e-08 - syst_JES_Zjet_dPhi: 9.397409257343217e-08 + syst_JER_NOISE_FORWARD: 1.79200000e-25 + syst_JER_NP0: 8.34021409e-08 + syst_JER_NP1: 4.39064314e-08 + syst_JER_NP2: 1.33026358e-07 + syst_JER_NP3: 2.41918375e-08 + syst_JER_NP4: 3.89400026e-08 + syst_JER_NP5: 3.94126537e-08 + syst_JER_NP6: 4.55258352e-08 + syst_JER_NP7: 2.50298141e-08 + syst_JER_NP8: 3.13733199e-08 + syst_JES_EtaIntercalibration_Modelling: 1.12086092e-06 + syst_JES_EtaIntercalibration_NonClosure: 1.15446550e-17 + syst_JES_EtaIntercalibration_Stat0: 1.42284027e-10 + syst_JES_EtaIntercalibration_Stat1: 1.42284027e-10 + syst_JES_EtaIntercalibration_Stat10: 5.94890094e-11 + syst_JES_EtaIntercalibration_Stat100: 7.12219292e-11 + syst_JES_EtaIntercalibration_Stat101: 9.65466732e-25 + syst_JES_EtaIntercalibration_Stat102: 1.21422662e-24 + syst_JES_EtaIntercalibration_Stat103: 9.24308913e-11 + syst_JES_EtaIntercalibration_Stat104: 5.01808046e-24 + syst_JES_EtaIntercalibration_Stat105: 5.63296767e-24 + syst_JES_EtaIntercalibration_Stat106: 8.04714130e-25 + syst_JES_EtaIntercalibration_Stat107: 8.71308159e-11 + syst_JES_EtaIntercalibration_Stat108: 8.79881810e-11 + syst_JES_EtaIntercalibration_Stat109: 1.92368321e-21 + syst_JES_EtaIntercalibration_Stat11: 4.03567838e-11 + syst_JES_EtaIntercalibration_Stat110: 1.92493660e-21 + syst_JES_EtaIntercalibration_Stat111: 1.02604952e-24 + syst_JES_EtaIntercalibration_Stat112: 9.81828756e-24 + syst_JES_EtaIntercalibration_Stat113: 8.10006293e-19 + syst_JES_EtaIntercalibration_Stat114: 8.01515692e-11 + syst_JES_EtaIntercalibration_Stat115: 4.56623670e-11 + syst_JES_EtaIntercalibration_Stat116: 4.85994060e-10 + syst_JES_EtaIntercalibration_Stat117: 3.41192588e-10 + syst_JES_EtaIntercalibration_Stat118: 4.75875625e-10 + syst_JES_EtaIntercalibration_Stat119: 1.35013360e-10 + syst_JES_EtaIntercalibration_Stat12: 2.92023766e-14 + syst_JES_EtaIntercalibration_Stat120: 6.93134336e-11 + syst_JES_EtaIntercalibration_Stat121: 2.17089906e-22 + syst_JES_EtaIntercalibration_Stat122: 2.80920471e-21 + syst_JES_EtaIntercalibration_Stat123: 7.18466316e-24 + syst_JES_EtaIntercalibration_Stat124: 6.32650624e-24 + syst_JES_EtaIntercalibration_Stat125: 3.51193177e-23 + syst_JES_EtaIntercalibration_Stat126: 5.96085285e-11 + syst_JES_EtaIntercalibration_Stat127: 3.47362789e-24 + syst_JES_EtaIntercalibration_Stat128: 1.42634384e-10 + syst_JES_EtaIntercalibration_Stat129: 1.15597071e-10 + syst_JES_EtaIntercalibration_Stat13: 1.42276956e-10 + syst_JES_EtaIntercalibration_Stat130: 1.17802334e-22 + syst_JES_EtaIntercalibration_Stat131: 8.32013971e-19 + syst_JES_EtaIntercalibration_Stat132: 3.98653660e-20 + syst_JES_EtaIntercalibration_Stat133: 1.10833665e-10 + syst_JES_EtaIntercalibration_Stat134: 2.84489344e-11 + syst_JES_EtaIntercalibration_Stat135: 3.69715901e-10 + syst_JES_EtaIntercalibration_Stat136: 1.41248743e-10 + syst_JES_EtaIntercalibration_Stat137: 1.93556677e-10 + syst_JES_EtaIntercalibration_Stat138: 3.83389446e-10 + syst_JES_EtaIntercalibration_Stat139: 8.44136475e-10 + syst_JES_EtaIntercalibration_Stat14: 1.42276956e-10 + syst_JES_EtaIntercalibration_Stat140: 5.71756801e-10 + syst_JES_EtaIntercalibration_Stat141: 1.17770456e-19 + syst_JES_EtaIntercalibration_Stat142: 8.11639008e-11 + syst_JES_EtaIntercalibration_Stat143: 1.95145097e-22 + syst_JES_EtaIntercalibration_Stat144: 8.16528462e-22 + syst_JES_EtaIntercalibration_Stat145: 3.15493056e-16 + syst_JES_EtaIntercalibration_Stat146: 1.47570665e-15 + syst_JES_EtaIntercalibration_Stat147: 1.22450714e-22 + syst_JES_EtaIntercalibration_Stat148: 4.16095952e-21 + syst_JES_EtaIntercalibration_Stat149: 1.58754575e-10 + syst_JES_EtaIntercalibration_Stat15: 8.71308159e-11 + syst_JES_EtaIntercalibration_Stat150: 3.94197457e-20 + syst_JES_EtaIntercalibration_Stat151: 3.71289857e-11 + syst_JES_EtaIntercalibration_Stat152: 2.81198447e-11 + syst_JES_EtaIntercalibration_Stat153: 4.64362821e-10 + syst_JES_EtaIntercalibration_Stat154: 7.33523517e-11 + syst_JES_EtaIntercalibration_Stat155: 2.66562619e-10 + syst_JES_EtaIntercalibration_Stat156: 8.12821104e-10 + syst_JES_EtaIntercalibration_Stat157: 7.54676413e-10 + syst_JES_EtaIntercalibration_Stat158: 5.61097650e-10 + syst_JES_EtaIntercalibration_Stat159: 1.17812910e-19 + syst_JES_EtaIntercalibration_Stat16: 8.71308159e-11 + syst_JES_EtaIntercalibration_Stat160: 1.70026458e-10 + syst_JES_EtaIntercalibration_Stat161: 4.88611599e-16 + syst_JES_EtaIntercalibration_Stat162: 9.07941033e-11 + syst_JES_EtaIntercalibration_Stat163: 6.52723347e-11 + syst_JES_EtaIntercalibration_Stat164: 8.31468036e-19 + syst_JES_EtaIntercalibration_Stat165: 4.33620107e-21 + syst_JES_EtaIntercalibration_Stat166: 7.70849212e-11 + syst_JES_EtaIntercalibration_Stat167: 1.15880261e-18 + syst_JES_EtaIntercalibration_Stat168: 8.98501356e-11 + syst_JES_EtaIntercalibration_Stat169: 2.53330037e-10 + syst_JES_EtaIntercalibration_Stat17: 8.71221556e-11 + syst_JES_EtaIntercalibration_Stat170: 9.68129804e-11 + syst_JES_EtaIntercalibration_Stat171: 1.28966467e-09 + syst_JES_EtaIntercalibration_Stat172: 1.32037145e-09 + syst_JES_EtaIntercalibration_Stat173: 1.17129948e-09 + syst_JES_EtaIntercalibration_Stat174: 1.26327612e-09 + syst_JES_EtaIntercalibration_Stat175: 5.26846173e-10 + syst_JES_EtaIntercalibration_Stat176: 4.13998412e-10 + syst_JES_EtaIntercalibration_Stat177: 8.56412805e-11 + syst_JES_EtaIntercalibration_Stat178: 8.81007643e-11 + syst_JES_EtaIntercalibration_Stat179: 8.75551683e-11 + syst_JES_EtaIntercalibration_Stat18: 8.71308159e-11 + syst_JES_EtaIntercalibration_Stat180: 3.92881006e-21 + syst_JES_EtaIntercalibration_Stat181: 1.25498495e-22 + syst_JES_EtaIntercalibration_Stat182: 8.53987648e-11 + syst_JES_EtaIntercalibration_Stat183: 7.49039296e-11 + syst_JES_EtaIntercalibration_Stat184: 7.04483626e-11 + syst_JES_EtaIntercalibration_Stat185: 8.49206941e-11 + syst_JES_EtaIntercalibration_Stat186: 9.35833660e-10 + syst_JES_EtaIntercalibration_Stat187: 2.34491850e-09 + syst_JES_EtaIntercalibration_Stat188: 6.65152349e-09 + syst_JES_EtaIntercalibration_Stat189: 5.64171842e-09 + syst_JES_EtaIntercalibration_Stat19: 1.42284027e-10 + syst_JES_EtaIntercalibration_Stat190: 6.10289233e-09 + syst_JES_EtaIntercalibration_Stat191: 4.34077098e-09 + syst_JES_EtaIntercalibration_Stat192: 2.29595013e-09 + syst_JES_EtaIntercalibration_Stat193: 1.01524194e-09 + syst_JES_EtaIntercalibration_Stat194: 1.10941253e-11 + syst_JES_EtaIntercalibration_Stat195: 1.63151796e-17 + syst_JES_EtaIntercalibration_Stat196: 8.65776470e-19 + syst_JES_EtaIntercalibration_Stat197: 1.78384096e-10 + syst_JES_EtaIntercalibration_Stat198: 1.06685747e-10 + syst_JES_EtaIntercalibration_Stat199: 1.36161040e-10 + syst_JES_EtaIntercalibration_Stat2: 1.42284027e-10 + syst_JES_EtaIntercalibration_Stat20: 1.42284027e-10 + syst_JES_EtaIntercalibration_Stat200: 1.08339510e-10 + syst_JES_EtaIntercalibration_Stat201: 1.26668618e-09 + syst_JES_EtaIntercalibration_Stat202: 4.12019563e-09 + syst_JES_EtaIntercalibration_Stat203: 1.37900050e-08 + syst_JES_EtaIntercalibration_Stat204: 1.22172700e-08 + syst_JES_EtaIntercalibration_Stat205: 1.21550601e-08 + syst_JES_EtaIntercalibration_Stat206: 1.35266263e-08 + syst_JES_EtaIntercalibration_Stat207: 4.13204138e-09 + syst_JES_EtaIntercalibration_Stat208: 7.62361830e-10 + syst_JES_EtaIntercalibration_Stat209: 5.16610524e-11 + syst_JES_EtaIntercalibration_Stat21: 1.42284027e-10 + syst_JES_EtaIntercalibration_Stat210: 6.62942137e-11 + syst_JES_EtaIntercalibration_Stat211: 9.98655489e-17 + syst_JES_EtaIntercalibration_Stat212: 3.72997141e-12 + syst_JES_EtaIntercalibration_Stat213: 1.38675588e-10 + syst_JES_EtaIntercalibration_Stat214: 1.26667774e-09 + syst_JES_EtaIntercalibration_Stat215: 4.89702897e-09 + syst_JES_EtaIntercalibration_Stat216: 1.64384123e-08 + syst_JES_EtaIntercalibration_Stat217: 1.46543276e-08 + syst_JES_EtaIntercalibration_Stat218: 1.52052647e-08 + syst_JES_EtaIntercalibration_Stat219: 1.56326157e-08 + syst_JES_EtaIntercalibration_Stat22: 1.42284027e-10 + syst_JES_EtaIntercalibration_Stat220: 5.09045054e-09 + syst_JES_EtaIntercalibration_Stat221: 4.50537626e-10 + syst_JES_EtaIntercalibration_Stat222: 5.16524207e-11 + syst_JES_EtaIntercalibration_Stat223: 9.56440753e-14 + syst_JES_EtaIntercalibration_Stat224: 8.57394633e-11 + syst_JES_EtaIntercalibration_Stat225: 1.19284426e-09 + syst_JES_EtaIntercalibration_Stat226: 2.63789021e-09 + syst_JES_EtaIntercalibration_Stat227: 1.32661978e-08 + syst_JES_EtaIntercalibration_Stat228: 4.29065575e-08 + syst_JES_EtaIntercalibration_Stat229: 4.22912828e-08 + syst_JES_EtaIntercalibration_Stat23: 1.41669511e-10 + syst_JES_EtaIntercalibration_Stat230: 4.37717911e-08 + syst_JES_EtaIntercalibration_Stat231: 4.97164789e-08 + syst_JES_EtaIntercalibration_Stat232: 1.39194576e-08 + syst_JES_EtaIntercalibration_Stat233: 1.19521313e-09 + syst_JES_EtaIntercalibration_Stat234: 1.27775133e-11 + syst_JES_EtaIntercalibration_Stat235: 1.57876431e-11 + syst_JES_EtaIntercalibration_Stat236: 1.08109598e-10 + syst_JES_EtaIntercalibration_Stat237: 1.24999842e-09 + syst_JES_EtaIntercalibration_Stat238: 3.47867157e-09 + syst_JES_EtaIntercalibration_Stat239: 6.87075634e-09 + syst_JES_EtaIntercalibration_Stat24: 8.71308159e-11 + syst_JES_EtaIntercalibration_Stat240: 5.40090555e-09 + syst_JES_EtaIntercalibration_Stat241: 5.33017551e-09 + syst_JES_EtaIntercalibration_Stat242: 3.66837444e-09 + syst_JES_EtaIntercalibration_Stat243: 2.54255344e-09 + syst_JES_EtaIntercalibration_Stat244: 1.95074255e-10 + syst_JES_EtaIntercalibration_Stat245: 2.02495835e-11 + syst_JES_EtaIntercalibration_Stat25: 6.80310936e-24 + syst_JES_EtaIntercalibration_Stat26: 5.61182347e-24 + syst_JES_EtaIntercalibration_Stat27: 6.38729557e-24 + syst_JES_EtaIntercalibration_Stat28: 5.58891930e-24 + syst_JES_EtaIntercalibration_Stat29: 8.10884910e-19 + syst_JES_EtaIntercalibration_Stat3: 1.42291098e-10 + syst_JES_EtaIntercalibration_Stat30: 6.04529853e-24 + syst_JES_EtaIntercalibration_Stat31: 2.82410884e-11 + syst_JES_EtaIntercalibration_Stat32: 2.79293193e-14 + syst_JES_EtaIntercalibration_Stat33: 4.03567838e-11 + syst_JES_EtaIntercalibration_Stat34: 2.79293193e-14 + syst_JES_EtaIntercalibration_Stat35: 3.97475708e-24 + syst_JES_EtaIntercalibration_Stat36: 1.20118668e-10 + syst_JES_EtaIntercalibration_Stat37: 8.91313346e-11 + syst_JES_EtaIntercalibration_Stat38: 5.94228294e-24 + syst_JES_EtaIntercalibration_Stat39: 5.93981184e-24 + syst_JES_EtaIntercalibration_Stat4: 1.42284027e-10 + syst_JES_EtaIntercalibration_Stat40: 8.71048351e-11 + syst_JES_EtaIntercalibration_Stat41: 1.42276956e-10 + syst_JES_EtaIntercalibration_Stat42: 1.42284027e-10 + syst_JES_EtaIntercalibration_Stat43: 1.42284027e-10 + syst_JES_EtaIntercalibration_Stat44: 1.42284027e-10 + syst_JES_EtaIntercalibration_Stat45: 1.42284027e-10 + syst_JES_EtaIntercalibration_Stat46: 6.04758026e-24 + syst_JES_EtaIntercalibration_Stat47: 3.20711611e-24 + syst_JES_EtaIntercalibration_Stat48: 5.52685933e-24 + syst_JES_EtaIntercalibration_Stat49: 8.70095723e-11 + syst_JES_EtaIntercalibration_Stat5: 1.42284027e-10 + syst_JES_EtaIntercalibration_Stat50: 4.94024247e-24 + syst_JES_EtaIntercalibration_Stat51: 8.10523039e-19 + syst_JES_EtaIntercalibration_Stat52: 8.16228885e-19 + syst_JES_EtaIntercalibration_Stat53: 2.82410884e-11 + syst_JES_EtaIntercalibration_Stat54: 2.79293193e-14 + syst_JES_EtaIntercalibration_Stat55: 2.79293193e-14 + syst_JES_EtaIntercalibration_Stat56: 2.79293193e-14 + syst_JES_EtaIntercalibration_Stat57: 5.35900760e-24 + syst_JES_EtaIntercalibration_Stat58: 9.52295534e-25 + syst_JES_EtaIntercalibration_Stat59: 5.66120806e-11 + syst_JES_EtaIntercalibration_Stat6: 9.46392561e-11 + syst_JES_EtaIntercalibration_Stat60: 1.40312039e-10 + syst_JES_EtaIntercalibration_Stat61: 3.39267975e-24 + syst_JES_EtaIntercalibration_Stat62: 8.69402903e-11 + syst_JES_EtaIntercalibration_Stat63: 5.60441750e-24 + syst_JES_EtaIntercalibration_Stat64: 1.42284027e-10 + syst_JES_EtaIntercalibration_Stat65: 1.42284027e-10 + syst_JES_EtaIntercalibration_Stat66: 1.42284027e-10 + syst_JES_EtaIntercalibration_Stat67: 1.42276956e-10 + syst_JES_EtaIntercalibration_Stat68: 3.76263295e-26 + syst_JES_EtaIntercalibration_Stat69: 8.60396239e-11 + syst_JES_EtaIntercalibration_Stat7: 8.71308159e-11 + syst_JES_EtaIntercalibration_Stat70: 6.90395452e-11 + syst_JES_EtaIntercalibration_Stat71: 2.06460456e-15 + syst_JES_EtaIntercalibration_Stat72: 8.18480510e-19 + syst_JES_EtaIntercalibration_Stat73: 8.18393807e-19 + syst_JES_EtaIntercalibration_Stat74: 7.02086795e-11 + syst_JES_EtaIntercalibration_Stat75: 4.27989755e-13 + syst_JES_EtaIntercalibration_Stat76: 4.31800266e-13 + syst_JES_EtaIntercalibration_Stat77: 4.03394633e-11 + syst_JES_EtaIntercalibration_Stat78: 3.30716688e-10 + syst_JES_EtaIntercalibration_Stat79: 3.71091886e-10 + syst_JES_EtaIntercalibration_Stat8: 3.90639607e-24 + syst_JES_EtaIntercalibration_Stat80: 3.58188107e-15 + syst_JES_EtaIntercalibration_Stat81: 2.01413926e-24 + syst_JES_EtaIntercalibration_Stat82: 3.54801059e-24 + syst_JES_EtaIntercalibration_Stat83: 7.10191183e-24 + syst_JES_EtaIntercalibration_Stat84: 3.59402429e-24 + syst_JES_EtaIntercalibration_Stat85: 3.50957666e-24 + syst_JES_EtaIntercalibration_Stat86: 8.71308159e-11 + syst_JES_EtaIntercalibration_Stat87: 8.71308159e-11 + syst_JES_EtaIntercalibration_Stat88: 3.51072496e-24 + syst_JES_EtaIntercalibration_Stat89: 8.47146050e-11 + syst_JES_EtaIntercalibration_Stat9: 2.92023766e-14 + syst_JES_EtaIntercalibration_Stat90: 5.76462374e-24 + syst_JES_EtaIntercalibration_Stat91: 5.68558138e-24 + syst_JES_EtaIntercalibration_Stat92: 7.22841440e-24 + syst_JES_EtaIntercalibration_Stat93: 8.18480583e-19 + syst_JES_EtaIntercalibration_Stat94: 8.10433827e-19 + syst_JES_EtaIntercalibration_Stat95: 7.16722624e-11 + syst_JES_EtaIntercalibration_Stat96: 4.31800266e-13 + syst_JES_EtaIntercalibration_Stat97: 1.20608754e-10 + syst_JES_EtaIntercalibration_Stat98: 3.60866387e-11 + syst_JES_EtaIntercalibration_Stat99: 4.04520466e-15 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.71159838e-06 + syst_JES_Flavour_Comp: 6.16014553e-07 + syst_JES_Flavour_Response: 1.46036228e-06 + syst_JES_Gjet_Generator: 2.62397080e-06 + syst_JES_Gjet_OOC: 2.20444704e-06 + syst_JES_Gjet_Purity: 1.32612995e-07 + syst_JES_Gjet_Stat1: 5.33650129e-09 + syst_JES_Gjet_Stat10: 1.74143813e-07 + syst_JES_Gjet_Stat11: 1.68770399e-07 + syst_JES_Gjet_Stat12: 5.85249827e-08 + syst_JES_Gjet_Stat13: 7.09804072e-07 + syst_JES_Gjet_Stat14: 2.30883066e-06 + syst_JES_Gjet_Stat15: 3.54784033e-06 + syst_JES_Gjet_Stat2: 9.89500162e-09 + syst_JES_Gjet_Stat3: 1.40935454e-08 + syst_JES_Gjet_Stat4: 6.53304959e-08 + syst_JES_Gjet_Stat5: 6.16617661e-08 + syst_JES_Gjet_Stat6: 4.19871775e-08 + syst_JES_Gjet_Stat7: 6.53352024e-08 + syst_JES_Gjet_Stat8: 9.91417222e-09 + syst_JES_Gjet_Stat9: 6.52800751e-08 + syst_JES_Gjet_Veto: 2.70195943e-06 + syst_JES_Gjet_dPhi: 5.04443793e-08 + syst_JES_LArESZee: 3.08031346e-06 + syst_JES_LArEsmear: 3.13700510e-07 + syst_JES_LAr_JVT: 4.15091493e-07 + syst_JES_MJB_Alpha: 5.96941806e-08 + syst_JES_MJB_Asym: 2.51165180e-06 + syst_JES_MJB_Beta: 1.86508606e-07 + syst_JES_MJB_Fragmentation: 5.22448246e-07 + syst_JES_MJB_Stat1: 1.34236325e-10 + syst_JES_MJB_Stat10: 3.36817400e-09 + syst_JES_MJB_Stat11: 5.43022272e-09 + syst_JES_MJB_Stat12: 1.33863696e-08 + syst_JES_MJB_Stat13: 2.42091403e-08 + syst_JES_MJB_Stat14: 6.71353132e-07 + syst_JES_MJB_Stat15: 1.50183712e-06 + syst_JES_MJB_Stat16: 2.05716425e-06 + syst_JES_MJB_Stat2: 6.05903744e-11 + syst_JES_MJB_Stat3: 7.31140293e-10 + syst_JES_MJB_Stat4: 8.53191542e-10 + syst_JES_MJB_Stat5: 7.16514752e-10 + syst_JES_MJB_Stat6: 5.35077889e-10 + syst_JES_MJB_Stat7: 1.35422091e-09 + syst_JES_MJB_Stat8: 1.19006142e-09 + syst_JES_MJB_Stat9: 1.64217866e-09 + syst_JES_MJB_Threshold: 3.68375254e-07 + syst_JES_Pileup_MuOffset: 1.09250349e-06 + syst_JES_Pileup_NPVOffset: 6.84950004e-07 + syst_JES_Pileup_Pt_term: 1.81145542e-07 + syst_JES_Pileup_Rho_topology: 1.12040882e-06 + syst_JES_PunchThrough_MC15: 3.00307492e-06 + syst_JES_SingleParticle_HighPt: 4.14060947e-07 + syst_JES_Zjet_MC: 9.69635179e-07 + syst_JES_Zjet_MuScale: 1.24888060e-07 + syst_JES_Zjet_MuSmearID: 4.21729309e-09 + syst_JES_Zjet_MuSmearMS: 1.23754613e-07 + syst_JES_Zjet_OOC: 5.38471178e-07 + syst_JES_Zjet_Stat1: 1.26014761e-07 + syst_JES_Zjet_Stat10: 7.67642969e-08 + syst_JES_Zjet_Stat11: 5.22335780e-08 + syst_JES_Zjet_Stat12: 8.29505564e-08 + syst_JES_Zjet_Stat13: 2.14093922e-07 + syst_JES_Zjet_Stat2: 1.10189194e-09 + syst_JES_Zjet_Stat3: 1.69486482e-08 + syst_JES_Zjet_Stat4: 3.63448081e-08 + syst_JES_Zjet_Stat5: 2.39382038e-08 + syst_JES_Zjet_Stat6: 6.42070750e-08 + syst_JES_Zjet_Stat7: 4.51531425e-08 + syst_JES_Zjet_Stat8: 1.92426505e-08 + syst_JES_Zjet_Stat9: 6.35196763e-08 + syst_JES_Zjet_Veto: 9.73704281e-08 + syst_JES_Zjet_dPhi: 9.39740926e-08 syst_PRW: 0.0 - syst_Unfolding_bias: 1.0869e-08 - syst_cleaning: 4.706848069568424e-07 - syst_lumi: 1.1799e-06 -- stat: 6.242e-06 - syst_JER_CROSS_CALIB_FORWARD: 8.361e-26 - syst_JER_NOISE_FORWARD: 5.913e-26 - syst_JER_NP0: 3.496399004690397e-08 - syst_JER_NP1: 1.8278360840075348e-08 - syst_JER_NP2: 5.742269934442302e-08 - syst_JER_NP3: 9.816590905197179e-09 - syst_JER_NP4: 1.6476166878251748e-08 - syst_JER_NP5: 1.661108966925409e-08 - syst_JER_NP6: 1.972943676337467e-08 - syst_JER_NP7: 1.0465809262546304e-08 - syst_JER_NP8: 1.373240972116693e-08 - syst_JES_EtaIntercalibration_Modelling: 4.57041034809786e-07 - syst_JES_EtaIntercalibration_NonClosure: 1.195462639347211e-18 - syst_JES_EtaIntercalibration_Stat0: 5.577234025930775e-11 - syst_JES_EtaIntercalibration_Stat1: 5.577234025930775e-11 - syst_JES_EtaIntercalibration_Stat10: 2.333086796849948e-11 - syst_JES_EtaIntercalibration_Stat100: 3.5351156982486074e-11 - syst_JES_EtaIntercalibration_Stat101: 2.1708640560845815e-25 - syst_JES_EtaIntercalibration_Stat102: 3.0107804914174664e-25 - syst_JES_EtaIntercalibration_Stat103: 3.623450289434106e-11 - syst_JES_EtaIntercalibration_Stat104: 1.0845102627453555e-24 - syst_JES_EtaIntercalibration_Stat105: 1.1019964199919163e-24 - syst_JES_EtaIntercalibration_Stat106: 1.475181571875137e-25 - syst_JES_EtaIntercalibration_Stat107: 3.415344384904691e-11 - syst_JES_EtaIntercalibration_Stat108: 3.4489461705715273e-11 - syst_JES_EtaIntercalibration_Stat109: 2.603406470754807e-22 - syst_JES_EtaIntercalibration_Stat11: 1.1680950646244511e-11 - syst_JES_EtaIntercalibration_Stat110: 2.6050215049400266e-22 - syst_JES_EtaIntercalibration_Stat111: 6.714927605715493e-25 - syst_JES_EtaIntercalibration_Stat112: 3.1454228507467802e-24 - syst_JES_EtaIntercalibration_Stat113: 8.09903393930412e-20 - syst_JES_EtaIntercalibration_Stat114: 3.1418735732229694e-11 - syst_JES_EtaIntercalibration_Stat115: 7.446559680533067e-12 - syst_JES_EtaIntercalibration_Stat116: 2.1481201240852432e-10 - syst_JES_EtaIntercalibration_Stat117: 1.4072340556922292e-10 - syst_JES_EtaIntercalibration_Stat118: 2.0777532769797283e-10 - syst_JES_EtaIntercalibration_Stat119: 1.1658433985745928e-10 - syst_JES_EtaIntercalibration_Stat12: 2.3841679366168136e-15 - syst_JES_EtaIntercalibration_Stat120: 6.624799770559108e-11 - syst_JES_EtaIntercalibration_Stat121: 3.076591082269465e-23 - syst_JES_EtaIntercalibration_Stat122: 3.702520269802719e-22 - syst_JES_EtaIntercalibration_Stat123: 1.2888428792913431e-24 - syst_JES_EtaIntercalibration_Stat124: 8.903543296351177e-25 - syst_JES_EtaIntercalibration_Stat125: 5.943500736098213e-24 - syst_JES_EtaIntercalibration_Stat126: 2.3365365394104234e-11 - syst_JES_EtaIntercalibration_Stat127: 7.213991613524374e-25 - syst_JES_EtaIntercalibration_Stat128: 5.590193981419995e-11 - syst_JES_EtaIntercalibration_Stat129: 4.531044912598165e-11 - syst_JES_EtaIntercalibration_Stat13: 5.577163315476785e-11 - syst_JES_EtaIntercalibration_Stat130: 1.3055353384723065e-23 - syst_JES_EtaIntercalibration_Stat131: 8.309898374829863e-20 - syst_JES_EtaIntercalibration_Stat132: 3.7011384997997576e-21 - syst_JES_EtaIntercalibration_Stat133: 3.897567609099296e-11 - syst_JES_EtaIntercalibration_Stat134: 8.502637428405437e-12 - syst_JES_EtaIntercalibration_Stat135: 1.5033519240350877e-10 - syst_JES_EtaIntercalibration_Stat136: 1.2358182511617924e-10 - syst_JES_EtaIntercalibration_Stat137: 7.821941443840843e-11 - syst_JES_EtaIntercalibration_Stat138: 1.738112985096878e-10 - syst_JES_EtaIntercalibration_Stat139: 3.3971287416728854e-10 - syst_JES_EtaIntercalibration_Stat14: 5.577163315476785e-11 - syst_JES_EtaIntercalibration_Stat140: 2.259957811127234e-10 - syst_JES_EtaIntercalibration_Stat141: 1.2370867067429026e-20 - syst_JES_EtaIntercalibration_Stat142: 3.181777333496138e-11 - syst_JES_EtaIntercalibration_Stat143: 3.646050294496772e-23 - syst_JES_EtaIntercalibration_Stat144: 1.1897034283803675e-22 - syst_JES_EtaIntercalibration_Stat145: 2.626655077105228e-17 - syst_JES_EtaIntercalibration_Stat146: 1.228023160296129e-16 - syst_JES_EtaIntercalibration_Stat147: 1.8776778497655022e-23 - syst_JES_EtaIntercalibration_Stat148: 4.800308169274135e-22 - syst_JES_EtaIntercalibration_Stat149: 6.222900368799102e-11 - syst_JES_EtaIntercalibration_Stat15: 3.4153443849046664e-11 - syst_JES_EtaIntercalibration_Stat150: 3.636183863159288e-21 - syst_JES_EtaIntercalibration_Stat151: 5.886044790859138e-12 - syst_JES_EtaIntercalibration_Stat152: 8.552000878433216e-12 - syst_JES_EtaIntercalibration_Stat153: 2.643109532254613e-10 - syst_JES_EtaIntercalibration_Stat154: 9.839780637401893e-11 - syst_JES_EtaIntercalibration_Stat155: 1.941628955280878e-10 - syst_JES_EtaIntercalibration_Stat156: 3.4310570831013586e-10 - syst_JES_EtaIntercalibration_Stat157: 3.2134265091827994e-10 - syst_JES_EtaIntercalibration_Stat158: 2.2335741553617602e-10 - syst_JES_EtaIntercalibration_Stat159: 1.2426487707715323e-20 - syst_JES_EtaIntercalibration_Stat16: 3.4153443849046664e-11 - syst_JES_EtaIntercalibration_Stat160: 6.665405764092685e-11 - syst_JES_EtaIntercalibration_Stat161: 4.06772253256914e-17 - syst_JES_EtaIntercalibration_Stat162: 3.558498384149747e-11 - syst_JES_EtaIntercalibration_Stat163: 2.5591050681824743e-11 - syst_JES_EtaIntercalibration_Stat164: 7.94400922963495e-20 - syst_JES_EtaIntercalibration_Stat165: 5.49639163451805e-22 - syst_JES_EtaIntercalibration_Stat166: 3.0215626337831014e-11 - syst_JES_EtaIntercalibration_Stat167: 1.1725505873948466e-19 - syst_JES_EtaIntercalibration_Stat168: 3.5221253172254186e-11 - syst_JES_EtaIntercalibration_Stat169: 8.150587236972561e-11 - syst_JES_EtaIntercalibration_Stat17: 3.4151711798239403e-11 - syst_JES_EtaIntercalibration_Stat170: 3.624316357013315e-12 - syst_JES_EtaIntercalibration_Stat171: 6.106242543495959e-10 - syst_JES_EtaIntercalibration_Stat172: 5.419097595541163e-10 - syst_JES_EtaIntercalibration_Stat173: 5.108366079286018e-10 - syst_JES_EtaIntercalibration_Stat174: 5.620742188537026e-10 - syst_JES_EtaIntercalibration_Stat175: 1.9825111367909135e-10 - syst_JES_EtaIntercalibration_Stat176: 1.052648266552033e-10 - syst_JES_EtaIntercalibration_Stat177: 3.360871647622642e-11 - syst_JES_EtaIntercalibration_Stat178: 3.453276297555077e-11 - syst_JES_EtaIntercalibration_Stat179: 3.4321452777306406e-11 - syst_JES_EtaIntercalibration_Stat18: 3.4153443849046664e-11 - syst_JES_EtaIntercalibration_Stat180: 4.832505175041202e-22 - syst_JES_EtaIntercalibration_Stat181: 1.985527889504451e-23 - syst_JES_EtaIntercalibration_Stat182: 3.347447990297153e-11 - syst_JES_EtaIntercalibration_Stat183: 2.935863927364482e-11 - syst_JES_EtaIntercalibration_Stat184: 2.7618053612829993e-11 - syst_JES_EtaIntercalibration_Stat185: 3.8461676888310527e-11 - syst_JES_EtaIntercalibration_Stat186: 3.2804870107195976e-10 - syst_JES_EtaIntercalibration_Stat187: 8.324968873815685e-10 - syst_JES_EtaIntercalibration_Stat188: 2.736611910739263e-09 - syst_JES_EtaIntercalibration_Stat189: 2.2913613311741123e-09 - syst_JES_EtaIntercalibration_Stat19: 5.577234025930775e-11 - syst_JES_EtaIntercalibration_Stat190: 2.621028567185028e-09 - syst_JES_EtaIntercalibration_Stat191: 2.0500773156151942e-09 - syst_JES_EtaIntercalibration_Stat192: 9.50327589571091e-10 - syst_JES_EtaIntercalibration_Stat193: 3.426083888737157e-10 - syst_JES_EtaIntercalibration_Stat194: 1.1988473380710323e-12 - syst_JES_EtaIntercalibration_Stat195: 1.4384595953658203e-18 - syst_JES_EtaIntercalibration_Stat196: 8.203503405538087e-20 - syst_JES_EtaIntercalibration_Stat197: 6.993102194841714e-11 - syst_JES_EtaIntercalibration_Stat198: 4.182037332188749e-11 - syst_JES_EtaIntercalibration_Stat199: 5.33726306265674e-11 - syst_JES_EtaIntercalibration_Stat2: 5.577234025930775e-11 - syst_JES_EtaIntercalibration_Stat20: 5.577234025930775e-11 - syst_JES_EtaIntercalibration_Stat200: 4.159795575506085e-11 - syst_JES_EtaIntercalibration_Stat201: 4.085784585226563e-10 - syst_JES_EtaIntercalibration_Stat202: 1.7222067239446025e-09 - syst_JES_EtaIntercalibration_Stat203: 5.797638549444075e-09 - syst_JES_EtaIntercalibration_Stat204: 5.0073041399539534e-09 - syst_JES_EtaIntercalibration_Stat205: 5.087518329205311e-09 - syst_JES_EtaIntercalibration_Stat206: 5.449353424948689e-09 - syst_JES_EtaIntercalibration_Stat207: 1.6323533341467466e-09 - syst_JES_EtaIntercalibration_Stat208: 3.054985229096861e-10 - syst_JES_EtaIntercalibration_Stat209: 2.6612947546636017e-11 - syst_JES_EtaIntercalibration_Stat21: 5.577234025930775e-11 - syst_JES_EtaIntercalibration_Stat210: 2.5980759476486877e-11 - syst_JES_EtaIntercalibration_Stat211: 8.804622668057672e-18 - syst_JES_EtaIntercalibration_Stat212: 4.05646299132573e-13 - syst_JES_EtaIntercalibration_Stat213: 3.1014575101877505e-11 - syst_JES_EtaIntercalibration_Stat214: 3.9190400291397893e-10 - syst_JES_EtaIntercalibration_Stat215: 1.8548751979580726e-09 - syst_JES_EtaIntercalibration_Stat216: 6.874742249713803e-09 - syst_JES_EtaIntercalibration_Stat217: 6.084172971735764e-09 - syst_JES_EtaIntercalibration_Stat218: 6.269584097051414e-09 - syst_JES_EtaIntercalibration_Stat219: 6.370371319632789e-09 - syst_JES_EtaIntercalibration_Stat22: 5.577234025930775e-11 - syst_JES_EtaIntercalibration_Stat220: 1.9770955970817394e-09 - syst_JES_EtaIntercalibration_Stat221: 1.5853006615465725e-10 - syst_JES_EtaIntercalibration_Stat222: 2.6612950410731896e-11 - syst_JES_EtaIntercalibration_Stat223: 8.238880104653591e-15 - syst_JES_EtaIntercalibration_Stat224: 3.363927022683024e-11 - syst_JES_EtaIntercalibration_Stat225: 3.651153678976003e-10 - syst_JES_EtaIntercalibration_Stat226: 9.09350959476043e-10 - syst_JES_EtaIntercalibration_Stat227: 5.2207107514207295e-09 - syst_JES_EtaIntercalibration_Stat228: 1.7600142044881342e-08 - syst_JES_EtaIntercalibration_Stat229: 1.8109806045344604e-08 - syst_JES_EtaIntercalibration_Stat23: 5.553077302721438e-11 - syst_JES_EtaIntercalibration_Stat230: 1.867271471961161e-08 - syst_JES_EtaIntercalibration_Stat231: 2.1308741750746337e-08 - syst_JES_EtaIntercalibration_Stat232: 5.7714929610976735e-09 - syst_JES_EtaIntercalibration_Stat233: 4.0807627559072825e-10 - syst_JES_EtaIntercalibration_Stat234: 1.74390562531348e-11 - syst_JES_EtaIntercalibration_Stat235: 1.9927244541082355e-12 - syst_JES_EtaIntercalibration_Stat236: 4.1530367106492094e-11 - syst_JES_EtaIntercalibration_Stat237: 4.04735151696452e-10 - syst_JES_EtaIntercalibration_Stat238: 1.3449543514558403e-09 - syst_JES_EtaIntercalibration_Stat239: 2.8095695399829488e-09 - syst_JES_EtaIntercalibration_Stat24: 3.415257782364288e-11 - syst_JES_EtaIntercalibration_Stat240: 2.2863426580458144e-09 - syst_JES_EtaIntercalibration_Stat241: 2.3116644977158773e-09 - syst_JES_EtaIntercalibration_Stat242: 1.666663133329588e-09 - syst_JES_EtaIntercalibration_Stat243: 1.0423290219503629e-09 - syst_JES_EtaIntercalibration_Stat244: 8.744392946339957e-11 - syst_JES_EtaIntercalibration_Stat245: 2.499555462617303e-12 - syst_JES_EtaIntercalibration_Stat25: 1.5679916421971132e-24 - syst_JES_EtaIntercalibration_Stat26: 1.160895253672785e-24 - syst_JES_EtaIntercalibration_Stat27: 1.344139549116832e-24 - syst_JES_EtaIntercalibration_Stat28: 1.1569996834485307e-24 - syst_JES_EtaIntercalibration_Stat29: 8.105617337994683e-20 - syst_JES_EtaIntercalibration_Stat3: 5.5774461599821835e-11 - syst_JES_EtaIntercalibration_Stat30: 1.2629056764065954e-24 - syst_JES_EtaIntercalibration_Stat31: 1.1082527092229464e-11 - syst_JES_EtaIntercalibration_Stat32: 2.277646811950516e-15 - syst_JES_EtaIntercalibration_Stat33: 1.1680950646244514e-11 - syst_JES_EtaIntercalibration_Stat34: 2.2776468119455365e-15 - syst_JES_EtaIntercalibration_Stat35: 8.391615041218229e-25 - syst_JES_EtaIntercalibration_Stat36: 4.708624308648972e-11 - syst_JES_EtaIntercalibration_Stat37: 3.493546478866401e-11 - syst_JES_EtaIntercalibration_Stat38: 1.2396714726087716e-24 - syst_JES_EtaIntercalibration_Stat39: 1.2385173828009035e-24 - syst_JES_EtaIntercalibration_Stat4: 5.577375448183492e-11 - syst_JES_EtaIntercalibration_Stat40: 3.4145649620412616e-11 - syst_JES_EtaIntercalibration_Stat41: 5.577234029516781e-11 - syst_JES_EtaIntercalibration_Stat42: 5.577234025930775e-11 - syst_JES_EtaIntercalibration_Stat43: 5.577234025930775e-11 - syst_JES_EtaIntercalibration_Stat44: 5.577234025930775e-11 - syst_JES_EtaIntercalibration_Stat45: 5.577234025930775e-11 - syst_JES_EtaIntercalibration_Stat46: 1.2652626476348697e-24 - syst_JES_EtaIntercalibration_Stat47: 6.554570313910745e-25 - syst_JES_EtaIntercalibration_Stat48: 1.263883174980979e-24 - syst_JES_EtaIntercalibration_Stat49: 3.410841052804975e-11 - syst_JES_EtaIntercalibration_Stat5: 5.577234025930775e-11 - syst_JES_EtaIntercalibration_Stat50: 8.907307403895971e-25 - syst_JES_EtaIntercalibration_Stat51: 8.099925463082978e-20 - syst_JES_EtaIntercalibration_Stat52: 8.16921586749699e-20 - syst_JES_EtaIntercalibration_Stat53: 1.108252709222924e-11 - syst_JES_EtaIntercalibration_Stat54: 2.2776468119514364e-15 - syst_JES_EtaIntercalibration_Stat55: 2.2776468119128524e-15 - syst_JES_EtaIntercalibration_Stat56: 2.277646811939379e-15 - syst_JES_EtaIntercalibration_Stat57: 1.0479033448152554e-24 - syst_JES_EtaIntercalibration_Stat58: 1.8711059744172698e-25 - syst_JES_EtaIntercalibration_Stat59: 2.2196231098995163e-11 - syst_JES_EtaIntercalibration_Stat6: 3.710052829812535e-11 - syst_JES_EtaIntercalibration_Stat60: 5.500115355835731e-11 - syst_JES_EtaIntercalibration_Stat61: 7.038844228991007e-25 - syst_JES_EtaIntercalibration_Stat62: 3.408069771512878e-11 - syst_JES_EtaIntercalibration_Stat63: 1.1600886905749923e-24 - syst_JES_EtaIntercalibration_Stat64: 5.577163315476785e-11 - syst_JES_EtaIntercalibration_Stat65: 5.577234025930775e-11 - syst_JES_EtaIntercalibration_Stat66: 5.577234025930775e-11 - syst_JES_EtaIntercalibration_Stat67: 5.577021894120552e-11 - syst_JES_EtaIntercalibration_Stat68: 1.2702207160568592e-26 - syst_JES_EtaIntercalibration_Stat69: 3.3724761274173676e-11 - syst_JES_EtaIntercalibration_Stat7: 3.415344384904663e-11 - syst_JES_EtaIntercalibration_Stat70: 2.7063293868263736e-11 - syst_JES_EtaIntercalibration_Stat71: 1.7190604246409185e-16 - syst_JES_EtaIntercalibration_Stat72: 8.192597146399952e-20 - syst_JES_EtaIntercalibration_Stat73: 8.191728246670796e-20 - syst_JES_EtaIntercalibration_Stat74: 2.752228733226952e-11 - syst_JES_EtaIntercalibration_Stat75: 4.602925021110639e-14 - syst_JES_EtaIntercalibration_Stat76: 4.648824367510302e-14 - syst_JES_EtaIntercalibration_Stat77: 1.1677486544629412e-11 - syst_JES_EtaIntercalibration_Stat78: 1.2963381917925586e-10 - syst_JES_EtaIntercalibration_Stat79: 1.4549226783578565e-10 - syst_JES_EtaIntercalibration_Stat8: 8.220961980467979e-25 - syst_JES_EtaIntercalibration_Stat80: 2.982591489953488e-16 - syst_JES_EtaIntercalibration_Stat81: 4.514223732548045e-25 - syst_JES_EtaIntercalibration_Stat82: 7.632705315286317e-25 - syst_JES_EtaIntercalibration_Stat83: 1.4996763142425101e-24 - syst_JES_EtaIntercalibration_Stat84: 7.62264328612457e-25 - syst_JES_EtaIntercalibration_Stat85: 7.331173058078768e-25 - syst_JES_EtaIntercalibration_Stat86: 3.415430987445069e-11 - syst_JES_EtaIntercalibration_Stat87: 3.415344384904691e-11 - syst_JES_EtaIntercalibration_Stat88: 7.313843917050784e-25 - syst_JES_EtaIntercalibration_Stat89: 3.320687808271052e-11 - syst_JES_EtaIntercalibration_Stat9: 2.383301911490143e-15 - syst_JES_EtaIntercalibration_Stat90: 1.0318464135713223e-24 - syst_JES_EtaIntercalibration_Stat91: 1.0000950768301981e-24 - syst_JES_EtaIntercalibration_Stat92: 1.2733967130474305e-24 - syst_JES_EtaIntercalibration_Stat93: 8.192598683591433e-20 - syst_JES_EtaIntercalibration_Stat94: 8.09809038400412e-20 - syst_JES_EtaIntercalibration_Stat95: 2.8093864098765528e-11 - syst_JES_EtaIntercalibration_Stat96: 4.6479583420705005e-14 - syst_JES_EtaIntercalibration_Stat97: 4.7231221431980775e-11 - syst_JES_EtaIntercalibration_Stat98: 5.915060707437837e-12 - syst_JES_EtaIntercalibration_Stat99: 3.3676263856679893e-16 - syst_JES_EtaIntercalibration_TotalStat_MJB: 7.433401778459173e-07 - syst_JES_Flavour_Comp: 2.2500921647790342e-07 - syst_JES_Flavour_Response: 6.529614747441077e-07 - syst_JES_Gjet_Generator: 1.113500678042003e-06 - syst_JES_Gjet_OOC: 9.38353893794873e-07 - syst_JES_Gjet_Purity: 6.762322160323331e-08 - syst_JES_Gjet_Stat1: 2.4112906813571854e-09 - syst_JES_Gjet_Stat10: 7.67535254890614e-08 - syst_JES_Gjet_Stat11: 7.416822567649843e-08 - syst_JES_Gjet_Stat12: 2.4659878345198703e-08 - syst_JES_Gjet_Stat13: 3.0796643891826913e-07 - syst_JES_Gjet_Stat14: 1.0044256306466894e-06 - syst_JES_Gjet_Stat15: 1.5351928217653964e-06 - syst_JES_Gjet_Stat2: 3.9417214513458456e-09 - syst_JES_Gjet_Stat3: 5.716650942641155e-09 - syst_JES_Gjet_Stat4: 2.9180347410543283e-08 - syst_JES_Gjet_Stat5: 2.728599778274564e-08 - syst_JES_Gjet_Stat6: 1.73450129720332e-08 - syst_JES_Gjet_Stat7: 2.8916750768369533e-08 - syst_JES_Gjet_Stat8: 3.9916060135614595e-09 - syst_JES_Gjet_Stat9: 2.8897077274354235e-08 - syst_JES_Gjet_Veto: 1.1542334718331468e-06 - syst_JES_Gjet_dPhi: 1.816495527107072e-08 - syst_JES_LArESZee: 1.288319280108778e-06 - syst_JES_LArEsmear: 1.3347541374725158e-07 - syst_JES_LAr_JVT: 1.7646735533803413e-07 - syst_JES_MJB_Alpha: 2.4692099951198967e-08 - syst_JES_MJB_Asym: 1.0981877105030817e-06 - syst_JES_MJB_Beta: 8.274410069606171e-08 - syst_JES_MJB_Fragmentation: 2.2814212675435459e-07 - syst_JES_MJB_Stat1: 5.2629327138013084e-11 - syst_JES_MJB_Stat10: 1.2678959844955736e-09 - syst_JES_MJB_Stat11: 1.8089049173464038e-09 - syst_JES_MJB_Stat12: 4.919429921240874e-09 - syst_JES_MJB_Stat13: 9.033250688428835e-09 - syst_JES_MJB_Stat14: 3.0056537974291054e-07 - syst_JES_MJB_Stat15: 6.837451334378914e-07 - syst_JES_MJB_Stat16: 9.117828181645012e-07 - syst_JES_MJB_Stat2: 2.6207331035418316e-11 - syst_JES_MJB_Stat3: 3.0646668252846017e-10 - syst_JES_MJB_Stat4: 3.515943792212839e-10 - syst_JES_MJB_Stat5: 3.0091937043002066e-10 - syst_JES_MJB_Stat6: 2.1747539516000425e-10 - syst_JES_MJB_Stat7: 6.282830811027781e-10 - syst_JES_MJB_Stat8: 4.351718281322908e-10 - syst_JES_MJB_Stat9: 6.602140164370944e-10 - syst_JES_MJB_Threshold: 1.5455855686438072e-07 - syst_JES_Pileup_MuOffset: 4.7573775076190877e-07 - syst_JES_Pileup_NPVOffset: 2.929049163124443e-07 - syst_JES_Pileup_Pt_term: 7.492447997817536e-08 - syst_JES_Pileup_Rho_topology: 4.860747139072346e-07 - syst_JES_PunchThrough_MC15: 1.3557966173065932e-06 - syst_JES_SingleParticle_HighPt: 7.243533857862473e-07 - syst_JES_Zjet_MC: 4.146534788229806e-07 - syst_JES_Zjet_MuScale: 5.434125021565109e-08 - syst_JES_Zjet_MuSmearID: 1.4555015458597082e-09 - syst_JES_Zjet_MuSmearMS: 5.0186941528648664e-08 - syst_JES_Zjet_OOC: 2.2758824112857853e-07 - syst_JES_Zjet_Stat1: 5.426486524446551e-08 - syst_JES_Zjet_Stat10: 3.395029749501468e-08 - syst_JES_Zjet_Stat11: 2.2141135923886106e-08 - syst_JES_Zjet_Stat12: 3.467959162100961e-08 - syst_JES_Zjet_Stat13: 9.139345600205739e-08 - syst_JES_Zjet_Stat2: 4.2594101410876133e-10 - syst_JES_Zjet_Stat3: 6.3245001976440795e-09 - syst_JES_Zjet_Stat4: 1.522526847053936e-08 - syst_JES_Zjet_Stat5: 9.262942661487223e-09 - syst_JES_Zjet_Stat6: 2.799622251304629e-08 - syst_JES_Zjet_Stat7: 1.882664335456536e-08 - syst_JES_Zjet_Stat8: 7.661523657210752e-09 - syst_JES_Zjet_Stat9: 2.7885560331469047e-08 - syst_JES_Zjet_Veto: 4.137021720996881e-08 - syst_JES_Zjet_dPhi: 3.9910297778267706e-08 + syst_Unfolding_bias: 1.08690000e-08 + syst_cleaning: 4.70684807e-07 + syst_lumi: 1.17990000e-06 +- stat: 6.24200000e-06 + syst_JER_CROSS_CALIB_FORWARD: 8.36100000e-26 + syst_JER_NOISE_FORWARD: 5.91300000e-26 + syst_JER_NP0: 3.49639900e-08 + syst_JER_NP1: 1.82783608e-08 + syst_JER_NP2: 5.74226993e-08 + syst_JER_NP3: 9.81659091e-09 + syst_JER_NP4: 1.64761669e-08 + syst_JER_NP5: 1.66110897e-08 + syst_JER_NP6: 1.97294368e-08 + syst_JER_NP7: 1.04658093e-08 + syst_JER_NP8: 1.37324097e-08 + syst_JES_EtaIntercalibration_Modelling: 4.57041035e-07 + syst_JES_EtaIntercalibration_NonClosure: 1.19546264e-18 + syst_JES_EtaIntercalibration_Stat0: 5.57723403e-11 + syst_JES_EtaIntercalibration_Stat1: 5.57723403e-11 + syst_JES_EtaIntercalibration_Stat10: 2.33308680e-11 + syst_JES_EtaIntercalibration_Stat100: 3.53511570e-11 + syst_JES_EtaIntercalibration_Stat101: 2.17086406e-25 + syst_JES_EtaIntercalibration_Stat102: 3.01078049e-25 + syst_JES_EtaIntercalibration_Stat103: 3.62345029e-11 + syst_JES_EtaIntercalibration_Stat104: 1.08451026e-24 + syst_JES_EtaIntercalibration_Stat105: 1.10199642e-24 + syst_JES_EtaIntercalibration_Stat106: 1.47518157e-25 + syst_JES_EtaIntercalibration_Stat107: 3.41534438e-11 + syst_JES_EtaIntercalibration_Stat108: 3.44894617e-11 + syst_JES_EtaIntercalibration_Stat109: 2.60340647e-22 + syst_JES_EtaIntercalibration_Stat11: 1.16809506e-11 + syst_JES_EtaIntercalibration_Stat110: 2.60502150e-22 + syst_JES_EtaIntercalibration_Stat111: 6.71492761e-25 + syst_JES_EtaIntercalibration_Stat112: 3.14542285e-24 + syst_JES_EtaIntercalibration_Stat113: 8.09903394e-20 + syst_JES_EtaIntercalibration_Stat114: 3.14187357e-11 + syst_JES_EtaIntercalibration_Stat115: 7.44655968e-12 + syst_JES_EtaIntercalibration_Stat116: 2.14812012e-10 + syst_JES_EtaIntercalibration_Stat117: 1.40723406e-10 + syst_JES_EtaIntercalibration_Stat118: 2.07775328e-10 + syst_JES_EtaIntercalibration_Stat119: 1.16584340e-10 + syst_JES_EtaIntercalibration_Stat12: 2.38416794e-15 + syst_JES_EtaIntercalibration_Stat120: 6.62479977e-11 + syst_JES_EtaIntercalibration_Stat121: 3.07659108e-23 + syst_JES_EtaIntercalibration_Stat122: 3.70252027e-22 + syst_JES_EtaIntercalibration_Stat123: 1.28884288e-24 + syst_JES_EtaIntercalibration_Stat124: 8.90354330e-25 + syst_JES_EtaIntercalibration_Stat125: 5.94350074e-24 + syst_JES_EtaIntercalibration_Stat126: 2.33653654e-11 + syst_JES_EtaIntercalibration_Stat127: 7.21399161e-25 + syst_JES_EtaIntercalibration_Stat128: 5.59019398e-11 + syst_JES_EtaIntercalibration_Stat129: 4.53104491e-11 + syst_JES_EtaIntercalibration_Stat13: 5.57716332e-11 + syst_JES_EtaIntercalibration_Stat130: 1.30553534e-23 + syst_JES_EtaIntercalibration_Stat131: 8.30989837e-20 + syst_JES_EtaIntercalibration_Stat132: 3.70113850e-21 + syst_JES_EtaIntercalibration_Stat133: 3.89756761e-11 + syst_JES_EtaIntercalibration_Stat134: 8.50263743e-12 + syst_JES_EtaIntercalibration_Stat135: 1.50335192e-10 + syst_JES_EtaIntercalibration_Stat136: 1.23581825e-10 + syst_JES_EtaIntercalibration_Stat137: 7.82194144e-11 + syst_JES_EtaIntercalibration_Stat138: 1.73811299e-10 + syst_JES_EtaIntercalibration_Stat139: 3.39712874e-10 + syst_JES_EtaIntercalibration_Stat14: 5.57716332e-11 + syst_JES_EtaIntercalibration_Stat140: 2.25995781e-10 + syst_JES_EtaIntercalibration_Stat141: 1.23708671e-20 + syst_JES_EtaIntercalibration_Stat142: 3.18177733e-11 + syst_JES_EtaIntercalibration_Stat143: 3.64605029e-23 + syst_JES_EtaIntercalibration_Stat144: 1.18970343e-22 + syst_JES_EtaIntercalibration_Stat145: 2.62665508e-17 + syst_JES_EtaIntercalibration_Stat146: 1.22802316e-16 + syst_JES_EtaIntercalibration_Stat147: 1.87767785e-23 + syst_JES_EtaIntercalibration_Stat148: 4.80030817e-22 + syst_JES_EtaIntercalibration_Stat149: 6.22290037e-11 + syst_JES_EtaIntercalibration_Stat15: 3.41534438e-11 + syst_JES_EtaIntercalibration_Stat150: 3.63618386e-21 + syst_JES_EtaIntercalibration_Stat151: 5.88604479e-12 + syst_JES_EtaIntercalibration_Stat152: 8.55200088e-12 + syst_JES_EtaIntercalibration_Stat153: 2.64310953e-10 + syst_JES_EtaIntercalibration_Stat154: 9.83978064e-11 + syst_JES_EtaIntercalibration_Stat155: 1.94162896e-10 + syst_JES_EtaIntercalibration_Stat156: 3.43105708e-10 + syst_JES_EtaIntercalibration_Stat157: 3.21342651e-10 + syst_JES_EtaIntercalibration_Stat158: 2.23357416e-10 + syst_JES_EtaIntercalibration_Stat159: 1.24264877e-20 + syst_JES_EtaIntercalibration_Stat16: 3.41534438e-11 + syst_JES_EtaIntercalibration_Stat160: 6.66540576e-11 + syst_JES_EtaIntercalibration_Stat161: 4.06772253e-17 + syst_JES_EtaIntercalibration_Stat162: 3.55849838e-11 + syst_JES_EtaIntercalibration_Stat163: 2.55910507e-11 + syst_JES_EtaIntercalibration_Stat164: 7.94400923e-20 + syst_JES_EtaIntercalibration_Stat165: 5.49639163e-22 + syst_JES_EtaIntercalibration_Stat166: 3.02156263e-11 + syst_JES_EtaIntercalibration_Stat167: 1.17255059e-19 + syst_JES_EtaIntercalibration_Stat168: 3.52212532e-11 + syst_JES_EtaIntercalibration_Stat169: 8.15058724e-11 + syst_JES_EtaIntercalibration_Stat17: 3.41517118e-11 + syst_JES_EtaIntercalibration_Stat170: 3.62431636e-12 + syst_JES_EtaIntercalibration_Stat171: 6.10624254e-10 + syst_JES_EtaIntercalibration_Stat172: 5.41909760e-10 + syst_JES_EtaIntercalibration_Stat173: 5.10836608e-10 + syst_JES_EtaIntercalibration_Stat174: 5.62074219e-10 + syst_JES_EtaIntercalibration_Stat175: 1.98251114e-10 + syst_JES_EtaIntercalibration_Stat176: 1.05264827e-10 + syst_JES_EtaIntercalibration_Stat177: 3.36087165e-11 + syst_JES_EtaIntercalibration_Stat178: 3.45327630e-11 + syst_JES_EtaIntercalibration_Stat179: 3.43214528e-11 + syst_JES_EtaIntercalibration_Stat18: 3.41534438e-11 + syst_JES_EtaIntercalibration_Stat180: 4.83250518e-22 + syst_JES_EtaIntercalibration_Stat181: 1.98552789e-23 + syst_JES_EtaIntercalibration_Stat182: 3.34744799e-11 + syst_JES_EtaIntercalibration_Stat183: 2.93586393e-11 + syst_JES_EtaIntercalibration_Stat184: 2.76180536e-11 + syst_JES_EtaIntercalibration_Stat185: 3.84616769e-11 + syst_JES_EtaIntercalibration_Stat186: 3.28048701e-10 + syst_JES_EtaIntercalibration_Stat187: 8.32496887e-10 + syst_JES_EtaIntercalibration_Stat188: 2.73661191e-09 + syst_JES_EtaIntercalibration_Stat189: 2.29136133e-09 + syst_JES_EtaIntercalibration_Stat19: 5.57723403e-11 + syst_JES_EtaIntercalibration_Stat190: 2.62102857e-09 + syst_JES_EtaIntercalibration_Stat191: 2.05007732e-09 + syst_JES_EtaIntercalibration_Stat192: 9.50327590e-10 + syst_JES_EtaIntercalibration_Stat193: 3.42608389e-10 + syst_JES_EtaIntercalibration_Stat194: 1.19884734e-12 + syst_JES_EtaIntercalibration_Stat195: 1.43845960e-18 + syst_JES_EtaIntercalibration_Stat196: 8.20350341e-20 + syst_JES_EtaIntercalibration_Stat197: 6.99310219e-11 + syst_JES_EtaIntercalibration_Stat198: 4.18203733e-11 + syst_JES_EtaIntercalibration_Stat199: 5.33726306e-11 + syst_JES_EtaIntercalibration_Stat2: 5.57723403e-11 + syst_JES_EtaIntercalibration_Stat20: 5.57723403e-11 + syst_JES_EtaIntercalibration_Stat200: 4.15979558e-11 + syst_JES_EtaIntercalibration_Stat201: 4.08578459e-10 + syst_JES_EtaIntercalibration_Stat202: 1.72220672e-09 + syst_JES_EtaIntercalibration_Stat203: 5.79763855e-09 + syst_JES_EtaIntercalibration_Stat204: 5.00730414e-09 + syst_JES_EtaIntercalibration_Stat205: 5.08751833e-09 + syst_JES_EtaIntercalibration_Stat206: 5.44935342e-09 + syst_JES_EtaIntercalibration_Stat207: 1.63235333e-09 + syst_JES_EtaIntercalibration_Stat208: 3.05498523e-10 + syst_JES_EtaIntercalibration_Stat209: 2.66129475e-11 + syst_JES_EtaIntercalibration_Stat21: 5.57723403e-11 + syst_JES_EtaIntercalibration_Stat210: 2.59807595e-11 + syst_JES_EtaIntercalibration_Stat211: 8.80462267e-18 + syst_JES_EtaIntercalibration_Stat212: 4.05646299e-13 + syst_JES_EtaIntercalibration_Stat213: 3.10145751e-11 + syst_JES_EtaIntercalibration_Stat214: 3.91904003e-10 + syst_JES_EtaIntercalibration_Stat215: 1.85487520e-09 + syst_JES_EtaIntercalibration_Stat216: 6.87474225e-09 + syst_JES_EtaIntercalibration_Stat217: 6.08417297e-09 + syst_JES_EtaIntercalibration_Stat218: 6.26958410e-09 + syst_JES_EtaIntercalibration_Stat219: 6.37037132e-09 + syst_JES_EtaIntercalibration_Stat22: 5.57723403e-11 + syst_JES_EtaIntercalibration_Stat220: 1.97709560e-09 + syst_JES_EtaIntercalibration_Stat221: 1.58530066e-10 + syst_JES_EtaIntercalibration_Stat222: 2.66129504e-11 + syst_JES_EtaIntercalibration_Stat223: 8.23888010e-15 + syst_JES_EtaIntercalibration_Stat224: 3.36392702e-11 + syst_JES_EtaIntercalibration_Stat225: 3.65115368e-10 + syst_JES_EtaIntercalibration_Stat226: 9.09350959e-10 + syst_JES_EtaIntercalibration_Stat227: 5.22071075e-09 + syst_JES_EtaIntercalibration_Stat228: 1.76001420e-08 + syst_JES_EtaIntercalibration_Stat229: 1.81098060e-08 + syst_JES_EtaIntercalibration_Stat23: 5.55307730e-11 + syst_JES_EtaIntercalibration_Stat230: 1.86727147e-08 + syst_JES_EtaIntercalibration_Stat231: 2.13087418e-08 + syst_JES_EtaIntercalibration_Stat232: 5.77149296e-09 + syst_JES_EtaIntercalibration_Stat233: 4.08076276e-10 + syst_JES_EtaIntercalibration_Stat234: 1.74390563e-11 + syst_JES_EtaIntercalibration_Stat235: 1.99272445e-12 + syst_JES_EtaIntercalibration_Stat236: 4.15303671e-11 + syst_JES_EtaIntercalibration_Stat237: 4.04735152e-10 + syst_JES_EtaIntercalibration_Stat238: 1.34495435e-09 + syst_JES_EtaIntercalibration_Stat239: 2.80956954e-09 + syst_JES_EtaIntercalibration_Stat24: 3.41525778e-11 + syst_JES_EtaIntercalibration_Stat240: 2.28634266e-09 + syst_JES_EtaIntercalibration_Stat241: 2.31166450e-09 + syst_JES_EtaIntercalibration_Stat242: 1.66666313e-09 + syst_JES_EtaIntercalibration_Stat243: 1.04232902e-09 + syst_JES_EtaIntercalibration_Stat244: 8.74439295e-11 + syst_JES_EtaIntercalibration_Stat245: 2.49955546e-12 + syst_JES_EtaIntercalibration_Stat25: 1.56799164e-24 + syst_JES_EtaIntercalibration_Stat26: 1.16089525e-24 + syst_JES_EtaIntercalibration_Stat27: 1.34413955e-24 + syst_JES_EtaIntercalibration_Stat28: 1.15699968e-24 + syst_JES_EtaIntercalibration_Stat29: 8.10561734e-20 + syst_JES_EtaIntercalibration_Stat3: 5.57744616e-11 + syst_JES_EtaIntercalibration_Stat30: 1.26290568e-24 + syst_JES_EtaIntercalibration_Stat31: 1.10825271e-11 + syst_JES_EtaIntercalibration_Stat32: 2.27764681e-15 + syst_JES_EtaIntercalibration_Stat33: 1.16809506e-11 + syst_JES_EtaIntercalibration_Stat34: 2.27764681e-15 + syst_JES_EtaIntercalibration_Stat35: 8.39161504e-25 + syst_JES_EtaIntercalibration_Stat36: 4.70862431e-11 + syst_JES_EtaIntercalibration_Stat37: 3.49354648e-11 + syst_JES_EtaIntercalibration_Stat38: 1.23967147e-24 + syst_JES_EtaIntercalibration_Stat39: 1.23851738e-24 + syst_JES_EtaIntercalibration_Stat4: 5.57737545e-11 + syst_JES_EtaIntercalibration_Stat40: 3.41456496e-11 + syst_JES_EtaIntercalibration_Stat41: 5.57723403e-11 + syst_JES_EtaIntercalibration_Stat42: 5.57723403e-11 + syst_JES_EtaIntercalibration_Stat43: 5.57723403e-11 + syst_JES_EtaIntercalibration_Stat44: 5.57723403e-11 + syst_JES_EtaIntercalibration_Stat45: 5.57723403e-11 + syst_JES_EtaIntercalibration_Stat46: 1.26526265e-24 + syst_JES_EtaIntercalibration_Stat47: 6.55457031e-25 + syst_JES_EtaIntercalibration_Stat48: 1.26388317e-24 + syst_JES_EtaIntercalibration_Stat49: 3.41084105e-11 + syst_JES_EtaIntercalibration_Stat5: 5.57723403e-11 + syst_JES_EtaIntercalibration_Stat50: 8.90730740e-25 + syst_JES_EtaIntercalibration_Stat51: 8.09992546e-20 + syst_JES_EtaIntercalibration_Stat52: 8.16921587e-20 + syst_JES_EtaIntercalibration_Stat53: 1.10825271e-11 + syst_JES_EtaIntercalibration_Stat54: 2.27764681e-15 + syst_JES_EtaIntercalibration_Stat55: 2.27764681e-15 + syst_JES_EtaIntercalibration_Stat56: 2.27764681e-15 + syst_JES_EtaIntercalibration_Stat57: 1.04790334e-24 + syst_JES_EtaIntercalibration_Stat58: 1.87110597e-25 + syst_JES_EtaIntercalibration_Stat59: 2.21962311e-11 + syst_JES_EtaIntercalibration_Stat6: 3.71005283e-11 + syst_JES_EtaIntercalibration_Stat60: 5.50011536e-11 + syst_JES_EtaIntercalibration_Stat61: 7.03884423e-25 + syst_JES_EtaIntercalibration_Stat62: 3.40806977e-11 + syst_JES_EtaIntercalibration_Stat63: 1.16008869e-24 + syst_JES_EtaIntercalibration_Stat64: 5.57716332e-11 + syst_JES_EtaIntercalibration_Stat65: 5.57723403e-11 + syst_JES_EtaIntercalibration_Stat66: 5.57723403e-11 + syst_JES_EtaIntercalibration_Stat67: 5.57702189e-11 + syst_JES_EtaIntercalibration_Stat68: 1.27022072e-26 + syst_JES_EtaIntercalibration_Stat69: 3.37247613e-11 + syst_JES_EtaIntercalibration_Stat7: 3.41534438e-11 + syst_JES_EtaIntercalibration_Stat70: 2.70632939e-11 + syst_JES_EtaIntercalibration_Stat71: 1.71906042e-16 + syst_JES_EtaIntercalibration_Stat72: 8.19259715e-20 + syst_JES_EtaIntercalibration_Stat73: 8.19172825e-20 + syst_JES_EtaIntercalibration_Stat74: 2.75222873e-11 + syst_JES_EtaIntercalibration_Stat75: 4.60292502e-14 + syst_JES_EtaIntercalibration_Stat76: 4.64882437e-14 + syst_JES_EtaIntercalibration_Stat77: 1.16774865e-11 + syst_JES_EtaIntercalibration_Stat78: 1.29633819e-10 + syst_JES_EtaIntercalibration_Stat79: 1.45492268e-10 + syst_JES_EtaIntercalibration_Stat8: 8.22096198e-25 + syst_JES_EtaIntercalibration_Stat80: 2.98259149e-16 + syst_JES_EtaIntercalibration_Stat81: 4.51422373e-25 + syst_JES_EtaIntercalibration_Stat82: 7.63270532e-25 + syst_JES_EtaIntercalibration_Stat83: 1.49967631e-24 + syst_JES_EtaIntercalibration_Stat84: 7.62264329e-25 + syst_JES_EtaIntercalibration_Stat85: 7.33117306e-25 + syst_JES_EtaIntercalibration_Stat86: 3.41543099e-11 + syst_JES_EtaIntercalibration_Stat87: 3.41534438e-11 + syst_JES_EtaIntercalibration_Stat88: 7.31384392e-25 + syst_JES_EtaIntercalibration_Stat89: 3.32068781e-11 + syst_JES_EtaIntercalibration_Stat9: 2.38330191e-15 + syst_JES_EtaIntercalibration_Stat90: 1.03184641e-24 + syst_JES_EtaIntercalibration_Stat91: 1.00009508e-24 + syst_JES_EtaIntercalibration_Stat92: 1.27339671e-24 + syst_JES_EtaIntercalibration_Stat93: 8.19259868e-20 + syst_JES_EtaIntercalibration_Stat94: 8.09809038e-20 + syst_JES_EtaIntercalibration_Stat95: 2.80938641e-11 + syst_JES_EtaIntercalibration_Stat96: 4.64795834e-14 + syst_JES_EtaIntercalibration_Stat97: 4.72312214e-11 + syst_JES_EtaIntercalibration_Stat98: 5.91506071e-12 + syst_JES_EtaIntercalibration_Stat99: 3.36762639e-16 + syst_JES_EtaIntercalibration_TotalStat_MJB: 7.43340178e-07 + syst_JES_Flavour_Comp: 2.25009216e-07 + syst_JES_Flavour_Response: 6.52961475e-07 + syst_JES_Gjet_Generator: 1.11350068e-06 + syst_JES_Gjet_OOC: 9.38353894e-07 + syst_JES_Gjet_Purity: 6.76232216e-08 + syst_JES_Gjet_Stat1: 2.41129068e-09 + syst_JES_Gjet_Stat10: 7.67535255e-08 + syst_JES_Gjet_Stat11: 7.41682257e-08 + syst_JES_Gjet_Stat12: 2.46598783e-08 + syst_JES_Gjet_Stat13: 3.07966439e-07 + syst_JES_Gjet_Stat14: 1.00442563e-06 + syst_JES_Gjet_Stat15: 1.53519282e-06 + syst_JES_Gjet_Stat2: 3.94172145e-09 + syst_JES_Gjet_Stat3: 5.71665094e-09 + syst_JES_Gjet_Stat4: 2.91803474e-08 + syst_JES_Gjet_Stat5: 2.72859978e-08 + syst_JES_Gjet_Stat6: 1.73450130e-08 + syst_JES_Gjet_Stat7: 2.89167508e-08 + syst_JES_Gjet_Stat8: 3.99160601e-09 + syst_JES_Gjet_Stat9: 2.88970773e-08 + syst_JES_Gjet_Veto: 1.15423347e-06 + syst_JES_Gjet_dPhi: 1.81649553e-08 + syst_JES_LArESZee: 1.28831928e-06 + syst_JES_LArEsmear: 1.33475414e-07 + syst_JES_LAr_JVT: 1.76467355e-07 + syst_JES_MJB_Alpha: 2.46921000e-08 + syst_JES_MJB_Asym: 1.09818771e-06 + syst_JES_MJB_Beta: 8.27441007e-08 + syst_JES_MJB_Fragmentation: 2.28142127e-07 + syst_JES_MJB_Stat1: 5.26293271e-11 + syst_JES_MJB_Stat10: 1.26789598e-09 + syst_JES_MJB_Stat11: 1.80890492e-09 + syst_JES_MJB_Stat12: 4.91942992e-09 + syst_JES_MJB_Stat13: 9.03325069e-09 + syst_JES_MJB_Stat14: 3.00565380e-07 + syst_JES_MJB_Stat15: 6.83745133e-07 + syst_JES_MJB_Stat16: 9.11782818e-07 + syst_JES_MJB_Stat2: 2.62073310e-11 + syst_JES_MJB_Stat3: 3.06466683e-10 + syst_JES_MJB_Stat4: 3.51594379e-10 + syst_JES_MJB_Stat5: 3.00919370e-10 + syst_JES_MJB_Stat6: 2.17475395e-10 + syst_JES_MJB_Stat7: 6.28283081e-10 + syst_JES_MJB_Stat8: 4.35171828e-10 + syst_JES_MJB_Stat9: 6.60214016e-10 + syst_JES_MJB_Threshold: 1.54558557e-07 + syst_JES_Pileup_MuOffset: 4.75737751e-07 + syst_JES_Pileup_NPVOffset: 2.92904916e-07 + syst_JES_Pileup_Pt_term: 7.49244800e-08 + syst_JES_Pileup_Rho_topology: 4.86074714e-07 + syst_JES_PunchThrough_MC15: 1.35579662e-06 + syst_JES_SingleParticle_HighPt: 7.24353386e-07 + syst_JES_Zjet_MC: 4.14653479e-07 + syst_JES_Zjet_MuScale: 5.43412502e-08 + syst_JES_Zjet_MuSmearID: 1.45550155e-09 + syst_JES_Zjet_MuSmearMS: 5.01869415e-08 + syst_JES_Zjet_OOC: 2.27588241e-07 + syst_JES_Zjet_Stat1: 5.42648652e-08 + syst_JES_Zjet_Stat10: 3.39502975e-08 + syst_JES_Zjet_Stat11: 2.21411359e-08 + syst_JES_Zjet_Stat12: 3.46795916e-08 + syst_JES_Zjet_Stat13: 9.13934560e-08 + syst_JES_Zjet_Stat2: 4.25941014e-10 + syst_JES_Zjet_Stat3: 6.32450020e-09 + syst_JES_Zjet_Stat4: 1.52252685e-08 + syst_JES_Zjet_Stat5: 9.26294266e-09 + syst_JES_Zjet_Stat6: 2.79962225e-08 + syst_JES_Zjet_Stat7: 1.88266434e-08 + syst_JES_Zjet_Stat8: 7.66152366e-09 + syst_JES_Zjet_Stat9: 2.78855603e-08 + syst_JES_Zjet_Veto: 4.13702172e-08 + syst_JES_Zjet_dPhi: 3.99102978e-08 syst_PRW: 0.0 - syst_Unfolding_bias: 1.3005e-08 - syst_cleaning: 1.8576244911176209e-07 - syst_lumi: 4.769e-07 -- stat: 1.1912e-06 + syst_Unfolding_bias: 1.30050000e-08 + syst_cleaning: 1.85762449e-07 + syst_lumi: 4.76900000e-07 +- stat: 1.19120000e-06 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 1.2728424922196776e-08 - syst_JER_NP1: 4.303585481897623e-09 - syst_JER_NP2: 1.3325632255168983e-08 - syst_JER_NP3: 2.4232822266504576e-09 - syst_JER_NP4: 4.072749439874739e-09 - syst_JER_NP5: 5.602885930482611e-09 - syst_JER_NP6: 5.470252347926922e-09 - syst_JER_NP7: 4.268351906766826e-09 - syst_JER_NP8: 3.6748968352866725e-09 - syst_JES_EtaIntercalibration_Modelling: 8.335668704429176e-08 + syst_JER_NP0: 1.27284249e-08 + syst_JER_NP1: 4.30358548e-09 + syst_JER_NP2: 1.33256323e-08 + syst_JER_NP3: 2.42328223e-09 + syst_JER_NP4: 4.07274944e-09 + syst_JER_NP5: 5.60288593e-09 + syst_JER_NP6: 5.47025235e-09 + syst_JER_NP7: 4.26835191e-09 + syst_JER_NP8: 3.67489684e-09 + syst_JES_EtaIntercalibration_Modelling: 8.33566870e-08 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 @@ -10481,12 +10481,12 @@ bins: syst_JES_EtaIntercalibration_Stat113: 0.0 syst_JES_EtaIntercalibration_Stat114: 0.0 syst_JES_EtaIntercalibration_Stat115: 0.0 - syst_JES_EtaIntercalibration_Stat116: 4.8547083074063263e-11 - syst_JES_EtaIntercalibration_Stat117: 1.0090632524772666e-11 - syst_JES_EtaIntercalibration_Stat118: 3.900136151469587e-11 - syst_JES_EtaIntercalibration_Stat119: 1.3492675790961553e-11 + syst_JES_EtaIntercalibration_Stat116: 4.85470831e-11 + syst_JES_EtaIntercalibration_Stat117: 1.00906325e-11 + syst_JES_EtaIntercalibration_Stat118: 3.90013615e-11 + syst_JES_EtaIntercalibration_Stat119: 1.34926758e-11 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 4.143065531704755e-12 + syst_JES_EtaIntercalibration_Stat120: 4.14306553e-12 syst_JES_EtaIntercalibration_Stat121: 0.0 syst_JES_EtaIntercalibration_Stat122: 0.0 syst_JES_EtaIntercalibration_Stat123: 0.0 @@ -10501,12 +10501,12 @@ bins: syst_JES_EtaIntercalibration_Stat131: 0.0 syst_JES_EtaIntercalibration_Stat132: 0.0 syst_JES_EtaIntercalibration_Stat133: 0.0 - syst_JES_EtaIntercalibration_Stat134: 1.0722260524255137e-11 - syst_JES_EtaIntercalibration_Stat135: 2.4581002318864052e-11 - syst_JES_EtaIntercalibration_Stat136: 5.458558120053317e-11 - syst_JES_EtaIntercalibration_Stat137: 1.2756554197744782e-11 - syst_JES_EtaIntercalibration_Stat138: 5.957388752633153e-11 - syst_JES_EtaIntercalibration_Stat139: 1.1506013514680052e-11 + syst_JES_EtaIntercalibration_Stat134: 1.07222605e-11 + syst_JES_EtaIntercalibration_Stat135: 2.45810023e-11 + syst_JES_EtaIntercalibration_Stat136: 5.45855812e-11 + syst_JES_EtaIntercalibration_Stat137: 1.27565542e-11 + syst_JES_EtaIntercalibration_Stat138: 5.95738875e-11 + syst_JES_EtaIntercalibration_Stat139: 1.15060135e-11 syst_JES_EtaIntercalibration_Stat14: 0.0 syst_JES_EtaIntercalibration_Stat140: 0.0 syst_JES_EtaIntercalibration_Stat141: 0.0 @@ -10521,13 +10521,13 @@ bins: syst_JES_EtaIntercalibration_Stat15: 0.0 syst_JES_EtaIntercalibration_Stat150: 0.0 syst_JES_EtaIntercalibration_Stat151: 0.0 - syst_JES_EtaIntercalibration_Stat152: 1.0722260524255137e-11 - syst_JES_EtaIntercalibration_Stat153: 4.269505240657282e-11 - syst_JES_EtaIntercalibration_Stat154: 6.123665630159765e-11 - syst_JES_EtaIntercalibration_Stat155: 8.506101515970756e-11 - syst_JES_EtaIntercalibration_Stat156: 5.7531004467156667e-11 + syst_JES_EtaIntercalibration_Stat152: 1.07222605e-11 + syst_JES_EtaIntercalibration_Stat153: 4.26950524e-11 + syst_JES_EtaIntercalibration_Stat154: 6.12366563e-11 + syst_JES_EtaIntercalibration_Stat155: 8.50610152e-11 + syst_JES_EtaIntercalibration_Stat156: 5.75310045e-11 syst_JES_EtaIntercalibration_Stat157: 0.0 - syst_JES_EtaIntercalibration_Stat158: 4.731962806278173e-12 + syst_JES_EtaIntercalibration_Stat158: 4.73196281e-12 syst_JES_EtaIntercalibration_Stat159: 0.0 syst_JES_EtaIntercalibration_Stat16: 0.0 syst_JES_EtaIntercalibration_Stat160: 0.0 @@ -10541,12 +10541,12 @@ bins: syst_JES_EtaIntercalibration_Stat168: 0.0 syst_JES_EtaIntercalibration_Stat169: 0.0 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 1.9398969044771427e-11 - syst_JES_EtaIntercalibration_Stat171: 1.876983143238106e-10 - syst_JES_EtaIntercalibration_Stat172: 1.724677578563599e-10 - syst_JES_EtaIntercalibration_Stat173: 2.0037310716510834e-10 - syst_JES_EtaIntercalibration_Stat174: 1.6283969878380393e-10 - syst_JES_EtaIntercalibration_Stat175: 3.112184385202779e-11 + syst_JES_EtaIntercalibration_Stat170: 1.93989690e-11 + syst_JES_EtaIntercalibration_Stat171: 1.87698314e-10 + syst_JES_EtaIntercalibration_Stat172: 1.72467758e-10 + syst_JES_EtaIntercalibration_Stat173: 2.00373107e-10 + syst_JES_EtaIntercalibration_Stat174: 1.62839699e-10 + syst_JES_EtaIntercalibration_Stat175: 3.11218439e-11 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 syst_JES_EtaIntercalibration_Stat178: 0.0 @@ -10559,13 +10559,13 @@ bins: syst_JES_EtaIntercalibration_Stat184: 0.0 syst_JES_EtaIntercalibration_Stat185: 0.0 syst_JES_EtaIntercalibration_Stat186: 0.0 - syst_JES_EtaIntercalibration_Stat187: 2.115699411542197e-10 - syst_JES_EtaIntercalibration_Stat188: 6.174121374738271e-10 - syst_JES_EtaIntercalibration_Stat189: 5.9117119347952e-10 + syst_JES_EtaIntercalibration_Stat187: 2.11569941e-10 + syst_JES_EtaIntercalibration_Stat188: 6.17412137e-10 + syst_JES_EtaIntercalibration_Stat189: 5.91171193e-10 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 6.124342985169919e-10 - syst_JES_EtaIntercalibration_Stat191: 6.620649741528395e-10 - syst_JES_EtaIntercalibration_Stat192: 1.383514252727452e-10 + syst_JES_EtaIntercalibration_Stat190: 6.12434299e-10 + syst_JES_EtaIntercalibration_Stat191: 6.62064974e-10 + syst_JES_EtaIntercalibration_Stat192: 1.38351425e-10 syst_JES_EtaIntercalibration_Stat193: 0.0 syst_JES_EtaIntercalibration_Stat194: 0.0 syst_JES_EtaIntercalibration_Stat195: 0.0 @@ -10577,52 +10577,52 @@ bins: syst_JES_EtaIntercalibration_Stat20: 0.0 syst_JES_EtaIntercalibration_Stat200: 0.0 syst_JES_EtaIntercalibration_Stat201: 0.0 - syst_JES_EtaIntercalibration_Stat202: 3.3049091893726826e-10 - syst_JES_EtaIntercalibration_Stat203: 1.1842507789737779e-09 - syst_JES_EtaIntercalibration_Stat204: 1.3050716101042118e-09 - syst_JES_EtaIntercalibration_Stat205: 1.1736021813203998e-09 - syst_JES_EtaIntercalibration_Stat206: 1.4009069160725847e-09 - syst_JES_EtaIntercalibration_Stat207: 2.6202667803107374e-10 - syst_JES_EtaIntercalibration_Stat208: 2.0498821307577664e-11 - syst_JES_EtaIntercalibration_Stat209: 4.751881390565215e-12 + syst_JES_EtaIntercalibration_Stat202: 3.30490919e-10 + syst_JES_EtaIntercalibration_Stat203: 1.18425078e-09 + syst_JES_EtaIntercalibration_Stat204: 1.30507161e-09 + syst_JES_EtaIntercalibration_Stat205: 1.17360218e-09 + syst_JES_EtaIntercalibration_Stat206: 1.40090692e-09 + syst_JES_EtaIntercalibration_Stat207: 2.62026678e-10 + syst_JES_EtaIntercalibration_Stat208: 2.04988213e-11 + syst_JES_EtaIntercalibration_Stat209: 4.75188139e-12 syst_JES_EtaIntercalibration_Stat21: 0.0 syst_JES_EtaIntercalibration_Stat210: 0.0 syst_JES_EtaIntercalibration_Stat211: 0.0 syst_JES_EtaIntercalibration_Stat212: 0.0 syst_JES_EtaIntercalibration_Stat213: 0.0 syst_JES_EtaIntercalibration_Stat214: 0.0 - syst_JES_EtaIntercalibration_Stat215: 3.958686679632527e-10 - syst_JES_EtaIntercalibration_Stat216: 1.456553214784822e-09 - syst_JES_EtaIntercalibration_Stat217: 1.3339015209152438e-09 - syst_JES_EtaIntercalibration_Stat218: 1.3920892742565039e-09 - syst_JES_EtaIntercalibration_Stat219: 1.5467807698571898e-09 + syst_JES_EtaIntercalibration_Stat215: 3.95868668e-10 + syst_JES_EtaIntercalibration_Stat216: 1.45655321e-09 + syst_JES_EtaIntercalibration_Stat217: 1.33390152e-09 + syst_JES_EtaIntercalibration_Stat218: 1.39208927e-09 + syst_JES_EtaIntercalibration_Stat219: 1.54678077e-09 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 3.2067433246207905e-10 - syst_JES_EtaIntercalibration_Stat221: 1.9542275731091302e-11 - syst_JES_EtaIntercalibration_Stat222: 4.751881390565215e-12 + syst_JES_EtaIntercalibration_Stat220: 3.20674332e-10 + syst_JES_EtaIntercalibration_Stat221: 1.95422757e-11 + syst_JES_EtaIntercalibration_Stat222: 4.75188139e-12 syst_JES_EtaIntercalibration_Stat223: 0.0 syst_JES_EtaIntercalibration_Stat224: 0.0 syst_JES_EtaIntercalibration_Stat225: 0.0 - syst_JES_EtaIntercalibration_Stat226: 8.896882487703206e-11 - syst_JES_EtaIntercalibration_Stat227: 9.966265436461141e-10 - syst_JES_EtaIntercalibration_Stat228: 3.449249012466337e-09 - syst_JES_EtaIntercalibration_Stat229: 3.978865290506831e-09 + syst_JES_EtaIntercalibration_Stat226: 8.89688249e-11 + syst_JES_EtaIntercalibration_Stat227: 9.96626544e-10 + syst_JES_EtaIntercalibration_Stat228: 3.44924901e-09 + syst_JES_EtaIntercalibration_Stat229: 3.97886529e-09 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 4.0056471387280235e-09 - syst_JES_EtaIntercalibration_Stat231: 4.57662015028558e-09 - syst_JES_EtaIntercalibration_Stat232: 9.644077612711338e-10 - syst_JES_EtaIntercalibration_Stat233: 5.368777770591739e-11 - syst_JES_EtaIntercalibration_Stat234: 4.205419360777234e-12 + syst_JES_EtaIntercalibration_Stat230: 4.00564714e-09 + syst_JES_EtaIntercalibration_Stat231: 4.57662015e-09 + syst_JES_EtaIntercalibration_Stat232: 9.64407761e-10 + syst_JES_EtaIntercalibration_Stat233: 5.36877777e-11 + syst_JES_EtaIntercalibration_Stat234: 4.20541936e-12 syst_JES_EtaIntercalibration_Stat235: 0.0 syst_JES_EtaIntercalibration_Stat236: 0.0 syst_JES_EtaIntercalibration_Stat237: 0.0 - syst_JES_EtaIntercalibration_Stat238: 2.3955270818757194e-10 - syst_JES_EtaIntercalibration_Stat239: 6.260759119308138e-10 + syst_JES_EtaIntercalibration_Stat238: 2.39552708e-10 + syst_JES_EtaIntercalibration_Stat239: 6.26075912e-10 syst_JES_EtaIntercalibration_Stat24: 0.0 - syst_JES_EtaIntercalibration_Stat240: 5.469069482096566e-10 - syst_JES_EtaIntercalibration_Stat241: 6.034342466250984e-10 - syst_JES_EtaIntercalibration_Stat242: 6.014054705437921e-10 - syst_JES_EtaIntercalibration_Stat243: 1.4482062940064857e-10 + syst_JES_EtaIntercalibration_Stat240: 5.46906948e-10 + syst_JES_EtaIntercalibration_Stat241: 6.03434247e-10 + syst_JES_EtaIntercalibration_Stat242: 6.01405471e-10 + syst_JES_EtaIntercalibration_Stat243: 1.44820629e-10 syst_JES_EtaIntercalibration_Stat244: 0.0 syst_JES_EtaIntercalibration_Stat245: 0.0 syst_JES_EtaIntercalibration_Stat25: 0.0 @@ -10707,9195 +10707,9195 @@ bins: syst_JES_EtaIntercalibration_Stat97: 0.0 syst_JES_EtaIntercalibration_Stat98: 0.0 syst_JES_EtaIntercalibration_Stat99: 0.0 - syst_JES_EtaIntercalibration_TotalStat_MJB: 1.5348911199169795e-07 - syst_JES_Flavour_Comp: 3.897627004986496e-08 - syst_JES_Flavour_Response: 1.4723912523510862e-07 - syst_JES_Gjet_Generator: 2.2493502950852276e-07 - syst_JES_Gjet_OOC: 1.9060160020314627e-07 - syst_JES_Gjet_Purity: 1.5975827834575585e-08 - syst_JES_Gjet_Stat1: 9.24650262261359e-10 - syst_JES_Gjet_Stat10: 1.6335258645029165e-08 - syst_JES_Gjet_Stat11: 1.5680918340454425e-08 - syst_JES_Gjet_Stat12: 5.1315852082957755e-09 - syst_JES_Gjet_Stat13: 6.398898557564419e-08 - syst_JES_Gjet_Stat14: 2.083087792196959e-07 - syst_JES_Gjet_Stat15: 3.15103518704568e-07 - syst_JES_Gjet_Stat2: 9.811927843191672e-10 - syst_JES_Gjet_Stat3: 1.204351388715104e-09 - syst_JES_Gjet_Stat4: 6.367566784102072e-09 - syst_JES_Gjet_Stat5: 5.955740843925295e-09 - syst_JES_Gjet_Stat6: 3.440955099968612e-09 - syst_JES_Gjet_Stat7: 6.258069570562475e-09 - syst_JES_Gjet_Stat8: 9.264081659830078e-10 - syst_JES_Gjet_Stat9: 6.258069570562475e-09 - syst_JES_Gjet_Veto: 2.3496767330847878e-07 - syst_JES_Gjet_dPhi: 3.0368922848859814e-09 - syst_JES_LArESZee: 2.562754767823094e-07 - syst_JES_LArEsmear: 2.6955579663587275e-08 - syst_JES_LAr_JVT: 3.6030899239402836e-08 - syst_JES_MJB_Alpha: 5.007500049925112e-09 - syst_JES_MJB_Asym: 2.2795593324149296e-07 - syst_JES_MJB_Beta: 1.7475115879444123e-08 - syst_JES_MJB_Fragmentation: 4.800110207068167e-08 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.53489112e-07 + syst_JES_Flavour_Comp: 3.89762700e-08 + syst_JES_Flavour_Response: 1.47239125e-07 + syst_JES_Gjet_Generator: 2.24935030e-07 + syst_JES_Gjet_OOC: 1.90601600e-07 + syst_JES_Gjet_Purity: 1.59758278e-08 + syst_JES_Gjet_Stat1: 9.24650262e-10 + syst_JES_Gjet_Stat10: 1.63352586e-08 + syst_JES_Gjet_Stat11: 1.56809183e-08 + syst_JES_Gjet_Stat12: 5.13158521e-09 + syst_JES_Gjet_Stat13: 6.39889856e-08 + syst_JES_Gjet_Stat14: 2.08308779e-07 + syst_JES_Gjet_Stat15: 3.15103519e-07 + syst_JES_Gjet_Stat2: 9.81192784e-10 + syst_JES_Gjet_Stat3: 1.20435139e-09 + syst_JES_Gjet_Stat4: 6.36756678e-09 + syst_JES_Gjet_Stat5: 5.95574084e-09 + syst_JES_Gjet_Stat6: 3.44095510e-09 + syst_JES_Gjet_Stat7: 6.25806957e-09 + syst_JES_Gjet_Stat8: 9.26408166e-10 + syst_JES_Gjet_Stat9: 6.25806957e-09 + syst_JES_Gjet_Veto: 2.34967673e-07 + syst_JES_Gjet_dPhi: 3.03689228e-09 + syst_JES_LArESZee: 2.56275477e-07 + syst_JES_LArEsmear: 2.69555797e-08 + syst_JES_LAr_JVT: 3.60308992e-08 + syst_JES_MJB_Alpha: 5.00750005e-09 + syst_JES_MJB_Asym: 2.27955933e-07 + syst_JES_MJB_Beta: 1.74751159e-08 + syst_JES_MJB_Fragmentation: 4.80011021e-08 syst_JES_MJB_Stat1: 0.0 - syst_JES_MJB_Stat10: 3.4178851648351205e-10 - syst_JES_MJB_Stat11: 5.346885518692166e-10 - syst_JES_MJB_Stat12: 1.0109321045451074e-09 - syst_JES_MJB_Stat13: 1.8610230385462724e-09 - syst_JES_MJB_Stat14: 6.443835561992563e-08 - syst_JES_MJB_Stat15: 1.4719078605673657e-07 - syst_JES_MJB_Stat16: 1.920485550583498e-07 + syst_JES_MJB_Stat10: 3.41788516e-10 + syst_JES_MJB_Stat11: 5.34688552e-10 + syst_JES_MJB_Stat12: 1.01093210e-09 + syst_JES_MJB_Stat13: 1.86102304e-09 + syst_JES_MJB_Stat14: 6.44383556e-08 + syst_JES_MJB_Stat15: 1.47190786e-07 + syst_JES_MJB_Stat16: 1.92048555e-07 syst_JES_MJB_Stat2: 0.0 - syst_JES_MJB_Stat3: 7.264843632178191e-11 - syst_JES_MJB_Stat4: 7.471087872592586e-11 - syst_JES_MJB_Stat5: 7.264438364388537e-11 - syst_JES_MJB_Stat6: 7.25988484757162e-11 - syst_JES_MJB_Stat7: 1.1285838471287812e-10 - syst_JES_MJB_Stat8: 1.1284651611813276e-10 - syst_JES_MJB_Stat9: 2.530265203491523e-10 - syst_JES_MJB_Threshold: 3.067333858581423e-08 - syst_JES_Pileup_MuOffset: 9.902030246368673e-08 - syst_JES_Pileup_NPVOffset: 6.039519268948482e-08 - syst_JES_Pileup_Pt_term: 1.4716238479992093e-08 - syst_JES_Pileup_Rho_topology: 1.0000722473901573e-07 - syst_JES_PunchThrough_MC15: 3.403691047965429e-07 - syst_JES_SingleParticle_HighPt: 7.095206885637656e-07 - syst_JES_Zjet_MC: 8.386109631408357e-08 - syst_JES_Zjet_MuScale: 1.120165130683865e-08 - syst_JES_Zjet_MuSmearID: 3.986235159897118e-10 - syst_JES_Zjet_MuSmearMS: 9.818600358503242e-09 - syst_JES_Zjet_OOC: 4.6110487960983456e-08 - syst_JES_Zjet_Stat1: 1.110159348922487e-08 - syst_JES_Zjet_Stat10: 7.23583436792192e-09 - syst_JES_Zjet_Stat11: 4.400039999818184e-09 - syst_JES_Zjet_Stat12: 7.105609104784754e-09 - syst_JES_Zjet_Stat13: 1.8570005385028837e-08 - syst_JES_Zjet_Stat2: 1.1286135332787747e-10 - syst_JES_Zjet_Stat3: 1.3104929263448925e-09 - syst_JES_Zjet_Stat4: 3.0515544809162427e-09 - syst_JES_Zjet_Stat5: 1.8803012391635553e-09 - syst_JES_Zjet_Stat6: 5.993306328730411e-09 - syst_JES_Zjet_Stat7: 3.8202273165349725e-09 - syst_JES_Zjet_Stat8: 1.8343233084710013e-09 - syst_JES_Zjet_Stat9: 5.993306328730411e-09 - syst_JES_Zjet_Veto: 8.467616783959934e-09 - syst_JES_Zjet_dPhi: 8.169101220452591e-09 + syst_JES_MJB_Stat3: 7.26484363e-11 + syst_JES_MJB_Stat4: 7.47108787e-11 + syst_JES_MJB_Stat5: 7.26443836e-11 + syst_JES_MJB_Stat6: 7.25988485e-11 + syst_JES_MJB_Stat7: 1.12858385e-10 + syst_JES_MJB_Stat8: 1.12846516e-10 + syst_JES_MJB_Stat9: 2.53026520e-10 + syst_JES_MJB_Threshold: 3.06733386e-08 + syst_JES_Pileup_MuOffset: 9.90203025e-08 + syst_JES_Pileup_NPVOffset: 6.03951927e-08 + syst_JES_Pileup_Pt_term: 1.47162385e-08 + syst_JES_Pileup_Rho_topology: 1.00007225e-07 + syst_JES_PunchThrough_MC15: 3.40369105e-07 + syst_JES_SingleParticle_HighPt: 7.09520689e-07 + syst_JES_Zjet_MC: 8.38610963e-08 + syst_JES_Zjet_MuScale: 1.12016513e-08 + syst_JES_Zjet_MuSmearID: 3.98623516e-10 + syst_JES_Zjet_MuSmearMS: 9.81860036e-09 + syst_JES_Zjet_OOC: 4.61104880e-08 + syst_JES_Zjet_Stat1: 1.11015935e-08 + syst_JES_Zjet_Stat10: 7.23583437e-09 + syst_JES_Zjet_Stat11: 4.40004000e-09 + syst_JES_Zjet_Stat12: 7.10560910e-09 + syst_JES_Zjet_Stat13: 1.85700054e-08 + syst_JES_Zjet_Stat2: 1.12861353e-10 + syst_JES_Zjet_Stat3: 1.31049293e-09 + syst_JES_Zjet_Stat4: 3.05155448e-09 + syst_JES_Zjet_Stat5: 1.88030124e-09 + syst_JES_Zjet_Stat6: 5.99330633e-09 + syst_JES_Zjet_Stat7: 3.82022732e-09 + syst_JES_Zjet_Stat8: 1.83432331e-09 + syst_JES_Zjet_Stat9: 5.99330633e-09 + syst_JES_Zjet_Veto: 8.46761678e-09 + syst_JES_Zjet_dPhi: 8.16910122e-09 syst_PRW: 0.0 - syst_Unfolding_bias: 3.009e-09 - syst_cleaning: 3.026758786226613e-08 - syst_lumi: 7.775e-08 + syst_Unfolding_bias: 3.00900000e-09 + syst_cleaning: 3.02675879e-08 + syst_lumi: 7.77500000e-08 - stat: 16.556 syst_JER_CROSS_CALIB_FORWARD: 1.2201 syst_JER_NOISE_FORWARD: 0.4792 - syst_JER_NP0: 15.675575747002087 - syst_JER_NP1: 2.1081522715401753 + syst_JER_NP0: 1.56755757e+01 + syst_JER_NP1: 2.10815227e+00 syst_JER_NP2: 0.0 - syst_JER_NP3: 2.2257863217299185 - syst_JER_NP4: 1.633854644697624 - syst_JER_NP5: 0.27963960288199524 + syst_JER_NP3: 2.22578632e+00 + syst_JER_NP4: 1.63385464e+00 + syst_JER_NP5: 2.79639603e-01 syst_JER_NP6: 0.0 syst_JER_NP7: 0.0 - syst_JER_NP8: 2.0524187560047293 - syst_JES_EtaIntercalibration_Modelling: 34.441071411905874 - syst_JES_EtaIntercalibration_NonClosure: 10.907346732821873 - syst_JES_EtaIntercalibration_Stat0: 0.05513311572911511 - syst_JES_EtaIntercalibration_Stat1: 0.054525996283882786 - syst_JES_EtaIntercalibration_Stat10: 0.05895146461921027 - syst_JES_EtaIntercalibration_Stat100: 0.9563064610782466 - syst_JES_EtaIntercalibration_Stat101: 0.6147720451516969 - syst_JES_EtaIntercalibration_Stat102: 0.4593100369031794 - syst_JES_EtaIntercalibration_Stat103: 0.4215019217038043 - syst_JES_EtaIntercalibration_Stat104: 0.505289053413984 - syst_JES_EtaIntercalibration_Stat105: 0.3902592087318376 - syst_JES_EtaIntercalibration_Stat106: 0.2606698438638425 - syst_JES_EtaIntercalibration_Stat107: 0.031071514587319365 - syst_JES_EtaIntercalibration_Stat108: 0.0340869491154606 - syst_JES_EtaIntercalibration_Stat109: 0.15949274615166673 - syst_JES_EtaIntercalibration_Stat11: 0.039780921378469856 - syst_JES_EtaIntercalibration_Stat110: 0.30069534416083 - syst_JES_EtaIntercalibration_Stat111: 0.3663658972939485 - syst_JES_EtaIntercalibration_Stat112: 0.6059620842098952 - syst_JES_EtaIntercalibration_Stat113: 0.484439531830341 - syst_JES_EtaIntercalibration_Stat114: 0.8247068206338541 - syst_JES_EtaIntercalibration_Stat115: 1.2120119553865796 - syst_JES_EtaIntercalibration_Stat116: 1.126679337699951 - syst_JES_EtaIntercalibration_Stat117: 0.7101519890136195 - syst_JES_EtaIntercalibration_Stat118: 0.6029617131294491 - syst_JES_EtaIntercalibration_Stat119: 0.900138678204642 - syst_JES_EtaIntercalibration_Stat12: 0.04624549240736874 - syst_JES_EtaIntercalibration_Stat120: 0.9427439312984199 - syst_JES_EtaIntercalibration_Stat121: 0.7043431461297824 - syst_JES_EtaIntercalibration_Stat122: 0.49090987971317096 - syst_JES_EtaIntercalibration_Stat123: 0.40810793915335686 - syst_JES_EtaIntercalibration_Stat124: 0.46006643813692816 - syst_JES_EtaIntercalibration_Stat125: 0.3218108455288603 - syst_JES_EtaIntercalibration_Stat126: 0.1957431224845461 - syst_JES_EtaIntercalibration_Stat127: 0.009398973707272513 - syst_JES_EtaIntercalibration_Stat128: 0.05588170630895231 - syst_JES_EtaIntercalibration_Stat129: 0.1775300680870708 - syst_JES_EtaIntercalibration_Stat13: 0.06036489558302905 - syst_JES_EtaIntercalibration_Stat130: 0.15833007508051022 - syst_JES_EtaIntercalibration_Stat131: 0.15032453023625253 - syst_JES_EtaIntercalibration_Stat132: 0.18643615775581193 - syst_JES_EtaIntercalibration_Stat133: 0.46943191199576545 - syst_JES_EtaIntercalibration_Stat134: 0.47413956805986984 - syst_JES_EtaIntercalibration_Stat135: 0.3187676063764949 - syst_JES_EtaIntercalibration_Stat136: 0.2764615446585655 - syst_JES_EtaIntercalibration_Stat137: 0.4562822235196108 - syst_JES_EtaIntercalibration_Stat138: 0.5719069220598751 - syst_JES_EtaIntercalibration_Stat139: 0.379360392634761 - syst_JES_EtaIntercalibration_Stat14: 0.06232661444960732 - syst_JES_EtaIntercalibration_Stat140: 0.19463081892393094 - syst_JES_EtaIntercalibration_Stat141: 0.08171770478299056 - syst_JES_EtaIntercalibration_Stat142: 0.10977680902631484 - syst_JES_EtaIntercalibration_Stat143: 0.12409140451699302 - syst_JES_EtaIntercalibration_Stat144: 0.03302815527319078 - syst_JES_EtaIntercalibration_Stat145: 0.14176993219649925 - syst_JES_EtaIntercalibration_Stat146: 0.03795789344787195 - syst_JES_EtaIntercalibration_Stat147: 0.08929594843551923 - syst_JES_EtaIntercalibration_Stat148: 0.08660989031282744 - syst_JES_EtaIntercalibration_Stat149: 0.05055856307293553 - syst_JES_EtaIntercalibration_Stat15: 0.0724261822478584 - syst_JES_EtaIntercalibration_Stat150: 0.1636706974384847 - syst_JES_EtaIntercalibration_Stat151: 0.17142391665109044 - syst_JES_EtaIntercalibration_Stat152: 0.10571382312640103 - syst_JES_EtaIntercalibration_Stat153: 0.06625039169695528 - syst_JES_EtaIntercalibration_Stat154: 0.10623277446602813 - syst_JES_EtaIntercalibration_Stat155: 0.18763053775971544 - syst_JES_EtaIntercalibration_Stat156: 0.0984151268860636 - syst_JES_EtaIntercalibration_Stat157: 0.07681173787254132 - syst_JES_EtaIntercalibration_Stat158: 0.13065099951779935 - syst_JES_EtaIntercalibration_Stat159: 0.07821085649390784 - syst_JES_EtaIntercalibration_Stat16: 0.035359351814619 - syst_JES_EtaIntercalibration_Stat160: 0.0396277283824092 - syst_JES_EtaIntercalibration_Stat161: 0.0822724133598714 - syst_JES_EtaIntercalibration_Stat162: 0.08638573377589613 - syst_JES_EtaIntercalibration_Stat163: 0.048102128851018645 - syst_JES_EtaIntercalibration_Stat164: 0.044656660541849746 - syst_JES_EtaIntercalibration_Stat165: 0.0051208082125773855 - syst_JES_EtaIntercalibration_Stat166: 2.960074830135212e-13 - syst_JES_EtaIntercalibration_Stat167: 0.03831296386342357 - syst_JES_EtaIntercalibration_Stat168: 0.06310395946372938 - syst_JES_EtaIntercalibration_Stat169: 0.03270977950093825 - syst_JES_EtaIntercalibration_Stat17: 0.05565476297676597 - syst_JES_EtaIntercalibration_Stat170: 0.03591703599964786 - syst_JES_EtaIntercalibration_Stat171: 0.017065089363961734 - syst_JES_EtaIntercalibration_Stat172: 0.024960625232553775 - syst_JES_EtaIntercalibration_Stat173: 0.06569726620453853 - syst_JES_EtaIntercalibration_Stat174: 0.041964138261139115 - syst_JES_EtaIntercalibration_Stat175: 0.05138634911141284 - syst_JES_EtaIntercalibration_Stat176: 0.05130686187051397 - syst_JES_EtaIntercalibration_Stat177: 0.06393969893579418 - syst_JES_EtaIntercalibration_Stat178: 0.05403998519614897 - syst_JES_EtaIntercalibration_Stat179: 0.03607889115535565 - syst_JES_EtaIntercalibration_Stat18: 0.05513311572911511 - syst_JES_EtaIntercalibration_Stat180: 0.06177606089740588 - syst_JES_EtaIntercalibration_Stat181: 0.05166114086041849 - syst_JES_EtaIntercalibration_Stat182: 0.03269264759468098 - syst_JES_EtaIntercalibration_Stat183: 0.05623837835499882 - syst_JES_EtaIntercalibration_Stat184: 0.03460946036851774 - syst_JES_EtaIntercalibration_Stat185: 0.014259634523717639 - syst_JES_EtaIntercalibration_Stat186: 0.024997682267562323 - syst_JES_EtaIntercalibration_Stat187: 0.04110951593001309 - syst_JES_EtaIntercalibration_Stat188: 0.017472240175489803 - syst_JES_EtaIntercalibration_Stat189: 0.05727523374024762 - syst_JES_EtaIntercalibration_Stat19: 0.029804453408844793 - syst_JES_EtaIntercalibration_Stat190: 0.039292659619832304 - syst_JES_EtaIntercalibration_Stat191: 0.0068497776693846055 - syst_JES_EtaIntercalibration_Stat192: 0.060936894202116995 - syst_JES_EtaIntercalibration_Stat193: 0.03425931994362994 - syst_JES_EtaIntercalibration_Stat194: 0.0033407795976388506 - syst_JES_EtaIntercalibration_Stat195: 0.033075813398917346 - syst_JES_EtaIntercalibration_Stat196: 0.033586296960264536 - syst_JES_EtaIntercalibration_Stat197: 0.05315747084841415 - syst_JES_EtaIntercalibration_Stat198: 0.03377845958636986 - syst_JES_EtaIntercalibration_Stat199: 0.05471467260251129 - syst_JES_EtaIntercalibration_Stat2: 0.03262139958294248 - syst_JES_EtaIntercalibration_Stat20: 0.05513311572911511 - syst_JES_EtaIntercalibration_Stat200: 0.03347188603051308 - syst_JES_EtaIntercalibration_Stat201: 0.05454012874022209 - syst_JES_EtaIntercalibration_Stat202: 0.03194063939169033 - syst_JES_EtaIntercalibration_Stat203: 0.032431348950513916 - syst_JES_EtaIntercalibration_Stat204: 0.05438064722628814 - syst_JES_EtaIntercalibration_Stat205: 0.033034064157321 - syst_JES_EtaIntercalibration_Stat206: 0.032107674129404025 - syst_JES_EtaIntercalibration_Stat207: 0.03252360462925351 - syst_JES_EtaIntercalibration_Stat208: 0.05579282687765516 - syst_JES_EtaIntercalibration_Stat209: 0.05594996706656761 - syst_JES_EtaIntercalibration_Stat21: 0.05513311572911511 - syst_JES_EtaIntercalibration_Stat210: 0.03279639657035511 - syst_JES_EtaIntercalibration_Stat211: 0.05513172603864313 - syst_JES_EtaIntercalibration_Stat212: 0.05505817290829764 - syst_JES_EtaIntercalibration_Stat213: 0.0554887451020475 - syst_JES_EtaIntercalibration_Stat214: 0.03309578465605552 - syst_JES_EtaIntercalibration_Stat215: 0.03374641190926822 - syst_JES_EtaIntercalibration_Stat216: 0.05510624611602572 - syst_JES_EtaIntercalibration_Stat217: 0.03300846810668438 - syst_JES_EtaIntercalibration_Stat218: 0.05511119553003727 - syst_JES_EtaIntercalibration_Stat219: 0.05553702621675021 - syst_JES_EtaIntercalibration_Stat22: 0.05513311572911511 - syst_JES_EtaIntercalibration_Stat220: 0.055129580306311064 - syst_JES_EtaIntercalibration_Stat221: 0.032883545368466584 - syst_JES_EtaIntercalibration_Stat222: 0.034561341814229374 - syst_JES_EtaIntercalibration_Stat223: 0.03376719651895905 - syst_JES_EtaIntercalibration_Stat224: 0.03269044525545652 - syst_JES_EtaIntercalibration_Stat225: 0.032685008807555795 - syst_JES_EtaIntercalibration_Stat226: 0.05522227206481095 - syst_JES_EtaIntercalibration_Stat227: 0.032570199366138364 - syst_JES_EtaIntercalibration_Stat228: 0.055129582664391726 - syst_JES_EtaIntercalibration_Stat229: 0.0338461936818603 - syst_JES_EtaIntercalibration_Stat23: 0.03299161588570648 - syst_JES_EtaIntercalibration_Stat230: 0.05505534575316007 - syst_JES_EtaIntercalibration_Stat231: 0.03285946796206536 - syst_JES_EtaIntercalibration_Stat232: 0.03318118600577743 - syst_JES_EtaIntercalibration_Stat233: 0.05510624567143002 - syst_JES_EtaIntercalibration_Stat234: 0.05520033092971454 - syst_JES_EtaIntercalibration_Stat235: 0.05555818976532623 - syst_JES_EtaIntercalibration_Stat236: 0.033757670239517416 - syst_JES_EtaIntercalibration_Stat237: 0.05525408818132826 - syst_JES_EtaIntercalibration_Stat238: 0.055570365670472244 - syst_JES_EtaIntercalibration_Stat239: 0.033766330493555256 - syst_JES_EtaIntercalibration_Stat24: 0.07624337544993663 - syst_JES_EtaIntercalibration_Stat240: 0.05510624567143002 - syst_JES_EtaIntercalibration_Stat241: 0.033745545883864435 - syst_JES_EtaIntercalibration_Stat242: 0.055474401556033025 - syst_JES_EtaIntercalibration_Stat243: 0.03411793680749175 - syst_JES_EtaIntercalibration_Stat244: 0.05511260981617547 - syst_JES_EtaIntercalibration_Stat245: 0.05516990363413734 - syst_JES_EtaIntercalibration_Stat25: 0.0662441682565341 - syst_JES_EtaIntercalibration_Stat26: 0.05148262325047161 - syst_JES_EtaIntercalibration_Stat27: 0.06407449004869255 - syst_JES_EtaIntercalibration_Stat28: 0.0967879708434886 - syst_JES_EtaIntercalibration_Stat29: 0.11463394207214544 - syst_JES_EtaIntercalibration_Stat3: 0.030398721552065314 - syst_JES_EtaIntercalibration_Stat30: 0.11891765596411662 - syst_JES_EtaIntercalibration_Stat31: 0.1293148555851183 - syst_JES_EtaIntercalibration_Stat32: 0.07957779778305002 - syst_JES_EtaIntercalibration_Stat33: 0.05259040858369519 - syst_JES_EtaIntercalibration_Stat34: 0.10931304622505038 - syst_JES_EtaIntercalibration_Stat35: 0.16615030446857448 - syst_JES_EtaIntercalibration_Stat36: 0.1251872744694124 - syst_JES_EtaIntercalibration_Stat37: 0.06426100165010813 - syst_JES_EtaIntercalibration_Stat38: 0.08588358443264929 - syst_JES_EtaIntercalibration_Stat39: 0.07524894733482987 - syst_JES_EtaIntercalibration_Stat4: 0.054525996283882786 - syst_JES_EtaIntercalibration_Stat40: 0.14706486596056859 - syst_JES_EtaIntercalibration_Stat41: 0.04740115715887113 - syst_JES_EtaIntercalibration_Stat42: 0.03116825428220195 - syst_JES_EtaIntercalibration_Stat43: 0.05513311572911511 - syst_JES_EtaIntercalibration_Stat44: 0.05513311572911511 - syst_JES_EtaIntercalibration_Stat45: 0.03262139958294248 - syst_JES_EtaIntercalibration_Stat46: 0.1994456462826731 - syst_JES_EtaIntercalibration_Stat47: 0.22690576788614258 - syst_JES_EtaIntercalibration_Stat48: 0.2666957958048833 - syst_JES_EtaIntercalibration_Stat49: 0.17692480097487748 - syst_JES_EtaIntercalibration_Stat5: 0.033762000366536336 - syst_JES_EtaIntercalibration_Stat50: 0.2212041816964589 - syst_JES_EtaIntercalibration_Stat51: 0.4130513043194513 - syst_JES_EtaIntercalibration_Stat52: 0.45683927151679943 - syst_JES_EtaIntercalibration_Stat53: 0.3843945369018659 - syst_JES_EtaIntercalibration_Stat54: 0.23007709034147664 - syst_JES_EtaIntercalibration_Stat55: 0.28224340559169847 - syst_JES_EtaIntercalibration_Stat56: 0.32405325179667616 - syst_JES_EtaIntercalibration_Stat57: 0.44975656748956994 - syst_JES_EtaIntercalibration_Stat58: 0.3019457567179907 - syst_JES_EtaIntercalibration_Stat59: 0.2065482268139816 - syst_JES_EtaIntercalibration_Stat6: 0.03602243465772407 - syst_JES_EtaIntercalibration_Stat60: 0.14851512608148706 - syst_JES_EtaIntercalibration_Stat61: 0.24061265033243784 - syst_JES_EtaIntercalibration_Stat62: 0.18123997903332476 - syst_JES_EtaIntercalibration_Stat63: 0.055353991725981246 - syst_JES_EtaIntercalibration_Stat64: 0.026174687029790825 - syst_JES_EtaIntercalibration_Stat65: 0.05513311572911511 - syst_JES_EtaIntercalibration_Stat66: 0.05513311572911511 - syst_JES_EtaIntercalibration_Stat67: 0.060962446735674906 - syst_JES_EtaIntercalibration_Stat68: 0.41953101196455084 - syst_JES_EtaIntercalibration_Stat69: 0.7861154670275863 - syst_JES_EtaIntercalibration_Stat7: 0.032864980556817615 - syst_JES_EtaIntercalibration_Stat70: 0.8887984628137022 - syst_JES_EtaIntercalibration_Stat71: 0.6028030752244051 - syst_JES_EtaIntercalibration_Stat72: 0.7794912892393345 - syst_JES_EtaIntercalibration_Stat73: 1.1483203244304263 - syst_JES_EtaIntercalibration_Stat74: 1.2629559879504908 - syst_JES_EtaIntercalibration_Stat75: 1.1241079796887843 - syst_JES_EtaIntercalibration_Stat76: 0.6982667828273088 - syst_JES_EtaIntercalibration_Stat77: 1.091416355017644 - syst_JES_EtaIntercalibration_Stat78: 1.3366865778857808 - syst_JES_EtaIntercalibration_Stat79: 1.1626551283592226 - syst_JES_EtaIntercalibration_Stat8: 0.05669458770464778 - syst_JES_EtaIntercalibration_Stat80: 0.965083430331285 - syst_JES_EtaIntercalibration_Stat81: 0.7162341935428662 - syst_JES_EtaIntercalibration_Stat82: 0.46590693008368106 - syst_JES_EtaIntercalibration_Stat83: 0.5877061744613545 - syst_JES_EtaIntercalibration_Stat84: 0.4927451845274594 - syst_JES_EtaIntercalibration_Stat85: 0.22653723755709568 - syst_JES_EtaIntercalibration_Stat86: 0.030314878176895255 - syst_JES_EtaIntercalibration_Stat87: 0.033762000366536336 - syst_JES_EtaIntercalibration_Stat88: 0.03323176352151658 - syst_JES_EtaIntercalibration_Stat89: 0.246928349931716 - syst_JES_EtaIntercalibration_Stat9: 0.05725584011042018 - syst_JES_EtaIntercalibration_Stat90: 0.44397351272345065 - syst_JES_EtaIntercalibration_Stat91: 0.6624642386574539 - syst_JES_EtaIntercalibration_Stat92: 0.4759338399399648 - syst_JES_EtaIntercalibration_Stat93: 0.6017200407997061 - syst_JES_EtaIntercalibration_Stat94: 0.796790215489623 - syst_JES_EtaIntercalibration_Stat95: 1.107653333629254 - syst_JES_EtaIntercalibration_Stat96: 1.041888961214198 - syst_JES_EtaIntercalibration_Stat97: 0.6510932095330131 - syst_JES_EtaIntercalibration_Stat98: 0.7040011789762856 - syst_JES_EtaIntercalibration_Stat99: 0.9156525582883498 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.06304890542269549 - syst_JES_Flavour_Comp: 3.81804199426879 - syst_JES_Flavour_Response: 68.85416567644981 - syst_JES_Gjet_Generator: 41.65447948000311 - syst_JES_Gjet_OOC: 27.073294498453638 - syst_JES_Gjet_Purity: 11.480889022632349 - syst_JES_Gjet_Stat1: 0.11606472461519048 - syst_JES_Gjet_Stat10: 0.26912565986913994 - syst_JES_Gjet_Stat11: 0.3108745245271796 - syst_JES_Gjet_Stat12: 0.09322247904877878 - syst_JES_Gjet_Stat13: 0.04310569335946239 - syst_JES_Gjet_Stat14: 0.053033708400884054 - syst_JES_Gjet_Stat15: 0.0552173230675845 - syst_JES_Gjet_Stat2: 0.2377927725983277 - syst_JES_Gjet_Stat3: 0.5679945516243972 - syst_JES_Gjet_Stat4: 0.6332045700245694 - syst_JES_Gjet_Stat5: 1.0182519076829661 - syst_JES_Gjet_Stat6: 2.638541263653081 - syst_JES_Gjet_Stat7: 3.730364191335747 - syst_JES_Gjet_Stat8: 1.0485719944286134 - syst_JES_Gjet_Stat9: 0.578896812912284 - syst_JES_Gjet_Veto: 8.52098555039263 - syst_JES_Gjet_dPhi: 4.893395140390769 - syst_JES_LArESZee: 26.30620078992784 - syst_JES_LArEsmear: 2.4624014193465698 - syst_JES_LAr_JVT: 4.887008977892306 - syst_JES_MJB_Alpha: 0.0629190930878696 - syst_JES_MJB_Asym: 0.022697829742070054 - syst_JES_MJB_Beta: 0.059126313093241324 - syst_JES_MJB_Fragmentation: 0.07003244368683703 - syst_JES_MJB_Stat1: 0.06769478174128342 - syst_JES_MJB_Stat10: 0.054508971415263376 - syst_JES_MJB_Stat11: 0.033745545883864435 - syst_JES_MJB_Stat12: 0.05516636611876842 - syst_JES_MJB_Stat13: 0.05510624567143002 - syst_JES_MJB_Stat14: 0.05510624567143002 - syst_JES_MJB_Stat15: 0.055649917994099504 - syst_JES_MJB_Stat16: 0.05578499908353499 - syst_JES_MJB_Stat2: 0.04898885179303553 - syst_JES_MJB_Stat3: 0.059672377194142354 - syst_JES_MJB_Stat4: 0.06390511945063557 - syst_JES_MJB_Stat5: 0.060508082028353866 - syst_JES_MJB_Stat6: 0.060418302086371146 - syst_JES_MJB_Stat7: 0.07622908150437076 - syst_JES_MJB_Stat8: 0.07564718201625226 - syst_JES_MJB_Stat9: 0.06600125964707036 - syst_JES_MJB_Threshold: 0.03618165108172926 - syst_JES_Pileup_MuOffset: 0.5017210211611628 - syst_JES_Pileup_NPVOffset: 3.35490219678607 - syst_JES_Pileup_Pt_term: 10.933685929273805 - syst_JES_Pileup_Rho_topology: 24.251632419282625 - syst_JES_PunchThrough_MC15: 0.1846366455028573 - syst_JES_SingleParticle_HighPt: 0.05510624567143002 - syst_JES_Zjet_MC: 40.35033688521076 - syst_JES_Zjet_MuScale: 2.8015129840855635 - syst_JES_Zjet_MuSmearID: 0.4106121239077093 - syst_JES_Zjet_MuSmearMS: 1.4489755027259776 - syst_JES_Zjet_OOC: 28.765484525729786 - syst_JES_Zjet_Stat1: 0.849359959027973 - syst_JES_Zjet_Stat10: 2.1137294055767875 - syst_JES_Zjet_Stat11: 0.3734808953614629 - syst_JES_Zjet_Stat12: 0.5018813505202201 - syst_JES_Zjet_Stat13: 0.042418961562018465 - syst_JES_Zjet_Stat2: 0.03519527240977552 - syst_JES_Zjet_Stat3: 0.29118828959970217 - syst_JES_Zjet_Stat4: 0.34124180209933247 - syst_JES_Zjet_Stat5: 0.7445311460912833 - syst_JES_Zjet_Stat6: 1.4149886324631729 - syst_JES_Zjet_Stat7: 2.2235779725478486 - syst_JES_Zjet_Stat8: 3.2410742046426524 - syst_JES_Zjet_Stat9: 3.7815904018679762 - syst_JES_Zjet_Veto: 4.404838362528187 - syst_JES_Zjet_dPhi: 6.646474159281747 + syst_JER_NP8: 2.05241876e+00 + syst_JES_EtaIntercalibration_Modelling: 3.44410714e+01 + syst_JES_EtaIntercalibration_NonClosure: 1.09073467e+01 + syst_JES_EtaIntercalibration_Stat0: 5.51331157e-02 + syst_JES_EtaIntercalibration_Stat1: 5.45259963e-02 + syst_JES_EtaIntercalibration_Stat10: 5.89514646e-02 + syst_JES_EtaIntercalibration_Stat100: 9.56306461e-01 + syst_JES_EtaIntercalibration_Stat101: 6.14772045e-01 + syst_JES_EtaIntercalibration_Stat102: 4.59310037e-01 + syst_JES_EtaIntercalibration_Stat103: 4.21501922e-01 + syst_JES_EtaIntercalibration_Stat104: 5.05289053e-01 + syst_JES_EtaIntercalibration_Stat105: 3.90259209e-01 + syst_JES_EtaIntercalibration_Stat106: 2.60669844e-01 + syst_JES_EtaIntercalibration_Stat107: 3.10715146e-02 + syst_JES_EtaIntercalibration_Stat108: 3.40869491e-02 + syst_JES_EtaIntercalibration_Stat109: 1.59492746e-01 + syst_JES_EtaIntercalibration_Stat11: 3.97809214e-02 + syst_JES_EtaIntercalibration_Stat110: 3.00695344e-01 + syst_JES_EtaIntercalibration_Stat111: 3.66365897e-01 + syst_JES_EtaIntercalibration_Stat112: 6.05962084e-01 + syst_JES_EtaIntercalibration_Stat113: 4.84439532e-01 + syst_JES_EtaIntercalibration_Stat114: 8.24706821e-01 + syst_JES_EtaIntercalibration_Stat115: 1.21201196e+00 + syst_JES_EtaIntercalibration_Stat116: 1.12667934e+00 + syst_JES_EtaIntercalibration_Stat117: 7.10151989e-01 + syst_JES_EtaIntercalibration_Stat118: 6.02961713e-01 + syst_JES_EtaIntercalibration_Stat119: 9.00138678e-01 + syst_JES_EtaIntercalibration_Stat12: 4.62454924e-02 + syst_JES_EtaIntercalibration_Stat120: 9.42743931e-01 + syst_JES_EtaIntercalibration_Stat121: 7.04343146e-01 + syst_JES_EtaIntercalibration_Stat122: 4.90909880e-01 + syst_JES_EtaIntercalibration_Stat123: 4.08107939e-01 + syst_JES_EtaIntercalibration_Stat124: 4.60066438e-01 + syst_JES_EtaIntercalibration_Stat125: 3.21810846e-01 + syst_JES_EtaIntercalibration_Stat126: 1.95743122e-01 + syst_JES_EtaIntercalibration_Stat127: 9.39897371e-03 + syst_JES_EtaIntercalibration_Stat128: 5.58817063e-02 + syst_JES_EtaIntercalibration_Stat129: 1.77530068e-01 + syst_JES_EtaIntercalibration_Stat13: 6.03648956e-02 + syst_JES_EtaIntercalibration_Stat130: 1.58330075e-01 + syst_JES_EtaIntercalibration_Stat131: 1.50324530e-01 + syst_JES_EtaIntercalibration_Stat132: 1.86436158e-01 + syst_JES_EtaIntercalibration_Stat133: 4.69431912e-01 + syst_JES_EtaIntercalibration_Stat134: 4.74139568e-01 + syst_JES_EtaIntercalibration_Stat135: 3.18767606e-01 + syst_JES_EtaIntercalibration_Stat136: 2.76461545e-01 + syst_JES_EtaIntercalibration_Stat137: 4.56282224e-01 + syst_JES_EtaIntercalibration_Stat138: 5.71906922e-01 + syst_JES_EtaIntercalibration_Stat139: 3.79360393e-01 + syst_JES_EtaIntercalibration_Stat14: 6.23266144e-02 + syst_JES_EtaIntercalibration_Stat140: 1.94630819e-01 + syst_JES_EtaIntercalibration_Stat141: 8.17177048e-02 + syst_JES_EtaIntercalibration_Stat142: 1.09776809e-01 + syst_JES_EtaIntercalibration_Stat143: 1.24091405e-01 + syst_JES_EtaIntercalibration_Stat144: 3.30281553e-02 + syst_JES_EtaIntercalibration_Stat145: 1.41769932e-01 + syst_JES_EtaIntercalibration_Stat146: 3.79578934e-02 + syst_JES_EtaIntercalibration_Stat147: 8.92959484e-02 + syst_JES_EtaIntercalibration_Stat148: 8.66098903e-02 + syst_JES_EtaIntercalibration_Stat149: 5.05585631e-02 + syst_JES_EtaIntercalibration_Stat15: 7.24261822e-02 + syst_JES_EtaIntercalibration_Stat150: 1.63670697e-01 + syst_JES_EtaIntercalibration_Stat151: 1.71423917e-01 + syst_JES_EtaIntercalibration_Stat152: 1.05713823e-01 + syst_JES_EtaIntercalibration_Stat153: 6.62503917e-02 + syst_JES_EtaIntercalibration_Stat154: 1.06232774e-01 + syst_JES_EtaIntercalibration_Stat155: 1.87630538e-01 + syst_JES_EtaIntercalibration_Stat156: 9.84151269e-02 + syst_JES_EtaIntercalibration_Stat157: 7.68117379e-02 + syst_JES_EtaIntercalibration_Stat158: 1.30651000e-01 + syst_JES_EtaIntercalibration_Stat159: 7.82108565e-02 + syst_JES_EtaIntercalibration_Stat16: 3.53593518e-02 + syst_JES_EtaIntercalibration_Stat160: 3.96277284e-02 + syst_JES_EtaIntercalibration_Stat161: 8.22724134e-02 + syst_JES_EtaIntercalibration_Stat162: 8.63857338e-02 + syst_JES_EtaIntercalibration_Stat163: 4.81021289e-02 + syst_JES_EtaIntercalibration_Stat164: 4.46566605e-02 + syst_JES_EtaIntercalibration_Stat165: 5.12080821e-03 + syst_JES_EtaIntercalibration_Stat166: 2.96007483e-13 + syst_JES_EtaIntercalibration_Stat167: 3.83129639e-02 + syst_JES_EtaIntercalibration_Stat168: 6.31039595e-02 + syst_JES_EtaIntercalibration_Stat169: 3.27097795e-02 + syst_JES_EtaIntercalibration_Stat17: 5.56547630e-02 + syst_JES_EtaIntercalibration_Stat170: 3.59170360e-02 + syst_JES_EtaIntercalibration_Stat171: 1.70650894e-02 + syst_JES_EtaIntercalibration_Stat172: 2.49606252e-02 + syst_JES_EtaIntercalibration_Stat173: 6.56972662e-02 + syst_JES_EtaIntercalibration_Stat174: 4.19641383e-02 + syst_JES_EtaIntercalibration_Stat175: 5.13863491e-02 + syst_JES_EtaIntercalibration_Stat176: 5.13068619e-02 + syst_JES_EtaIntercalibration_Stat177: 6.39396989e-02 + syst_JES_EtaIntercalibration_Stat178: 5.40399852e-02 + syst_JES_EtaIntercalibration_Stat179: 3.60788912e-02 + syst_JES_EtaIntercalibration_Stat18: 5.51331157e-02 + syst_JES_EtaIntercalibration_Stat180: 6.17760609e-02 + syst_JES_EtaIntercalibration_Stat181: 5.16611409e-02 + syst_JES_EtaIntercalibration_Stat182: 3.26926476e-02 + syst_JES_EtaIntercalibration_Stat183: 5.62383784e-02 + syst_JES_EtaIntercalibration_Stat184: 3.46094604e-02 + syst_JES_EtaIntercalibration_Stat185: 1.42596345e-02 + syst_JES_EtaIntercalibration_Stat186: 2.49976823e-02 + syst_JES_EtaIntercalibration_Stat187: 4.11095159e-02 + syst_JES_EtaIntercalibration_Stat188: 1.74722402e-02 + syst_JES_EtaIntercalibration_Stat189: 5.72752337e-02 + syst_JES_EtaIntercalibration_Stat19: 2.98044534e-02 + syst_JES_EtaIntercalibration_Stat190: 3.92926596e-02 + syst_JES_EtaIntercalibration_Stat191: 6.84977767e-03 + syst_JES_EtaIntercalibration_Stat192: 6.09368942e-02 + syst_JES_EtaIntercalibration_Stat193: 3.42593199e-02 + syst_JES_EtaIntercalibration_Stat194: 3.34077960e-03 + syst_JES_EtaIntercalibration_Stat195: 3.30758134e-02 + syst_JES_EtaIntercalibration_Stat196: 3.35862970e-02 + syst_JES_EtaIntercalibration_Stat197: 5.31574708e-02 + syst_JES_EtaIntercalibration_Stat198: 3.37784596e-02 + syst_JES_EtaIntercalibration_Stat199: 5.47146726e-02 + syst_JES_EtaIntercalibration_Stat2: 3.26213996e-02 + syst_JES_EtaIntercalibration_Stat20: 5.51331157e-02 + syst_JES_EtaIntercalibration_Stat200: 3.34718860e-02 + syst_JES_EtaIntercalibration_Stat201: 5.45401287e-02 + syst_JES_EtaIntercalibration_Stat202: 3.19406394e-02 + syst_JES_EtaIntercalibration_Stat203: 3.24313490e-02 + syst_JES_EtaIntercalibration_Stat204: 5.43806472e-02 + syst_JES_EtaIntercalibration_Stat205: 3.30340642e-02 + syst_JES_EtaIntercalibration_Stat206: 3.21076741e-02 + syst_JES_EtaIntercalibration_Stat207: 3.25236046e-02 + syst_JES_EtaIntercalibration_Stat208: 5.57928269e-02 + syst_JES_EtaIntercalibration_Stat209: 5.59499671e-02 + syst_JES_EtaIntercalibration_Stat21: 5.51331157e-02 + syst_JES_EtaIntercalibration_Stat210: 3.27963966e-02 + syst_JES_EtaIntercalibration_Stat211: 5.51317260e-02 + syst_JES_EtaIntercalibration_Stat212: 5.50581729e-02 + syst_JES_EtaIntercalibration_Stat213: 5.54887451e-02 + syst_JES_EtaIntercalibration_Stat214: 3.30957847e-02 + syst_JES_EtaIntercalibration_Stat215: 3.37464119e-02 + syst_JES_EtaIntercalibration_Stat216: 5.51062461e-02 + syst_JES_EtaIntercalibration_Stat217: 3.30084681e-02 + syst_JES_EtaIntercalibration_Stat218: 5.51111955e-02 + syst_JES_EtaIntercalibration_Stat219: 5.55370262e-02 + syst_JES_EtaIntercalibration_Stat22: 5.51331157e-02 + syst_JES_EtaIntercalibration_Stat220: 5.51295803e-02 + syst_JES_EtaIntercalibration_Stat221: 3.28835454e-02 + syst_JES_EtaIntercalibration_Stat222: 3.45613418e-02 + syst_JES_EtaIntercalibration_Stat223: 3.37671965e-02 + syst_JES_EtaIntercalibration_Stat224: 3.26904453e-02 + syst_JES_EtaIntercalibration_Stat225: 3.26850088e-02 + syst_JES_EtaIntercalibration_Stat226: 5.52222721e-02 + syst_JES_EtaIntercalibration_Stat227: 3.25701994e-02 + syst_JES_EtaIntercalibration_Stat228: 5.51295827e-02 + syst_JES_EtaIntercalibration_Stat229: 3.38461937e-02 + syst_JES_EtaIntercalibration_Stat23: 3.29916159e-02 + syst_JES_EtaIntercalibration_Stat230: 5.50553458e-02 + syst_JES_EtaIntercalibration_Stat231: 3.28594680e-02 + syst_JES_EtaIntercalibration_Stat232: 3.31811860e-02 + syst_JES_EtaIntercalibration_Stat233: 5.51062457e-02 + syst_JES_EtaIntercalibration_Stat234: 5.52003309e-02 + syst_JES_EtaIntercalibration_Stat235: 5.55581898e-02 + syst_JES_EtaIntercalibration_Stat236: 3.37576702e-02 + syst_JES_EtaIntercalibration_Stat237: 5.52540882e-02 + syst_JES_EtaIntercalibration_Stat238: 5.55703657e-02 + syst_JES_EtaIntercalibration_Stat239: 3.37663305e-02 + syst_JES_EtaIntercalibration_Stat24: 7.62433754e-02 + syst_JES_EtaIntercalibration_Stat240: 5.51062457e-02 + syst_JES_EtaIntercalibration_Stat241: 3.37455459e-02 + syst_JES_EtaIntercalibration_Stat242: 5.54744016e-02 + syst_JES_EtaIntercalibration_Stat243: 3.41179368e-02 + syst_JES_EtaIntercalibration_Stat244: 5.51126098e-02 + syst_JES_EtaIntercalibration_Stat245: 5.51699036e-02 + syst_JES_EtaIntercalibration_Stat25: 6.62441683e-02 + syst_JES_EtaIntercalibration_Stat26: 5.14826233e-02 + syst_JES_EtaIntercalibration_Stat27: 6.40744900e-02 + syst_JES_EtaIntercalibration_Stat28: 9.67879708e-02 + syst_JES_EtaIntercalibration_Stat29: 1.14633942e-01 + syst_JES_EtaIntercalibration_Stat3: 3.03987216e-02 + syst_JES_EtaIntercalibration_Stat30: 1.18917656e-01 + syst_JES_EtaIntercalibration_Stat31: 1.29314856e-01 + syst_JES_EtaIntercalibration_Stat32: 7.95777978e-02 + syst_JES_EtaIntercalibration_Stat33: 5.25904086e-02 + syst_JES_EtaIntercalibration_Stat34: 1.09313046e-01 + syst_JES_EtaIntercalibration_Stat35: 1.66150304e-01 + syst_JES_EtaIntercalibration_Stat36: 1.25187274e-01 + syst_JES_EtaIntercalibration_Stat37: 6.42610017e-02 + syst_JES_EtaIntercalibration_Stat38: 8.58835844e-02 + syst_JES_EtaIntercalibration_Stat39: 7.52489473e-02 + syst_JES_EtaIntercalibration_Stat4: 5.45259963e-02 + syst_JES_EtaIntercalibration_Stat40: 1.47064866e-01 + syst_JES_EtaIntercalibration_Stat41: 4.74011572e-02 + syst_JES_EtaIntercalibration_Stat42: 3.11682543e-02 + syst_JES_EtaIntercalibration_Stat43: 5.51331157e-02 + syst_JES_EtaIntercalibration_Stat44: 5.51331157e-02 + syst_JES_EtaIntercalibration_Stat45: 3.26213996e-02 + syst_JES_EtaIntercalibration_Stat46: 1.99445646e-01 + syst_JES_EtaIntercalibration_Stat47: 2.26905768e-01 + syst_JES_EtaIntercalibration_Stat48: 2.66695796e-01 + syst_JES_EtaIntercalibration_Stat49: 1.76924801e-01 + syst_JES_EtaIntercalibration_Stat5: 3.37620004e-02 + syst_JES_EtaIntercalibration_Stat50: 2.21204182e-01 + syst_JES_EtaIntercalibration_Stat51: 4.13051304e-01 + syst_JES_EtaIntercalibration_Stat52: 4.56839272e-01 + syst_JES_EtaIntercalibration_Stat53: 3.84394537e-01 + syst_JES_EtaIntercalibration_Stat54: 2.30077090e-01 + syst_JES_EtaIntercalibration_Stat55: 2.82243406e-01 + syst_JES_EtaIntercalibration_Stat56: 3.24053252e-01 + syst_JES_EtaIntercalibration_Stat57: 4.49756567e-01 + syst_JES_EtaIntercalibration_Stat58: 3.01945757e-01 + syst_JES_EtaIntercalibration_Stat59: 2.06548227e-01 + syst_JES_EtaIntercalibration_Stat6: 3.60224347e-02 + syst_JES_EtaIntercalibration_Stat60: 1.48515126e-01 + syst_JES_EtaIntercalibration_Stat61: 2.40612650e-01 + syst_JES_EtaIntercalibration_Stat62: 1.81239979e-01 + syst_JES_EtaIntercalibration_Stat63: 5.53539917e-02 + syst_JES_EtaIntercalibration_Stat64: 2.61746870e-02 + syst_JES_EtaIntercalibration_Stat65: 5.51331157e-02 + syst_JES_EtaIntercalibration_Stat66: 5.51331157e-02 + syst_JES_EtaIntercalibration_Stat67: 6.09624467e-02 + syst_JES_EtaIntercalibration_Stat68: 4.19531012e-01 + syst_JES_EtaIntercalibration_Stat69: 7.86115467e-01 + syst_JES_EtaIntercalibration_Stat7: 3.28649806e-02 + syst_JES_EtaIntercalibration_Stat70: 8.88798463e-01 + syst_JES_EtaIntercalibration_Stat71: 6.02803075e-01 + syst_JES_EtaIntercalibration_Stat72: 7.79491289e-01 + syst_JES_EtaIntercalibration_Stat73: 1.14832032e+00 + syst_JES_EtaIntercalibration_Stat74: 1.26295599e+00 + syst_JES_EtaIntercalibration_Stat75: 1.12410798e+00 + syst_JES_EtaIntercalibration_Stat76: 6.98266783e-01 + syst_JES_EtaIntercalibration_Stat77: 1.09141636e+00 + syst_JES_EtaIntercalibration_Stat78: 1.33668658e+00 + syst_JES_EtaIntercalibration_Stat79: 1.16265513e+00 + syst_JES_EtaIntercalibration_Stat8: 5.66945877e-02 + syst_JES_EtaIntercalibration_Stat80: 9.65083430e-01 + syst_JES_EtaIntercalibration_Stat81: 7.16234194e-01 + syst_JES_EtaIntercalibration_Stat82: 4.65906930e-01 + syst_JES_EtaIntercalibration_Stat83: 5.87706174e-01 + syst_JES_EtaIntercalibration_Stat84: 4.92745185e-01 + syst_JES_EtaIntercalibration_Stat85: 2.26537238e-01 + syst_JES_EtaIntercalibration_Stat86: 3.03148782e-02 + syst_JES_EtaIntercalibration_Stat87: 3.37620004e-02 + syst_JES_EtaIntercalibration_Stat88: 3.32317635e-02 + syst_JES_EtaIntercalibration_Stat89: 2.46928350e-01 + syst_JES_EtaIntercalibration_Stat9: 5.72558401e-02 + syst_JES_EtaIntercalibration_Stat90: 4.43973513e-01 + syst_JES_EtaIntercalibration_Stat91: 6.62464239e-01 + syst_JES_EtaIntercalibration_Stat92: 4.75933840e-01 + syst_JES_EtaIntercalibration_Stat93: 6.01720041e-01 + syst_JES_EtaIntercalibration_Stat94: 7.96790215e-01 + syst_JES_EtaIntercalibration_Stat95: 1.10765333e+00 + syst_JES_EtaIntercalibration_Stat96: 1.04188896e+00 + syst_JES_EtaIntercalibration_Stat97: 6.51093210e-01 + syst_JES_EtaIntercalibration_Stat98: 7.04001179e-01 + syst_JES_EtaIntercalibration_Stat99: 9.15652558e-01 + syst_JES_EtaIntercalibration_TotalStat_MJB: 6.30489054e-02 + syst_JES_Flavour_Comp: 3.81804199e+00 + syst_JES_Flavour_Response: 6.88541657e+01 + syst_JES_Gjet_Generator: 4.16544795e+01 + syst_JES_Gjet_OOC: 2.70732945e+01 + syst_JES_Gjet_Purity: 1.14808890e+01 + syst_JES_Gjet_Stat1: 1.16064725e-01 + syst_JES_Gjet_Stat10: 2.69125660e-01 + syst_JES_Gjet_Stat11: 3.10874525e-01 + syst_JES_Gjet_Stat12: 9.32224790e-02 + syst_JES_Gjet_Stat13: 4.31056934e-02 + syst_JES_Gjet_Stat14: 5.30337084e-02 + syst_JES_Gjet_Stat15: 5.52173231e-02 + syst_JES_Gjet_Stat2: 2.37792773e-01 + syst_JES_Gjet_Stat3: 5.67994552e-01 + syst_JES_Gjet_Stat4: 6.33204570e-01 + syst_JES_Gjet_Stat5: 1.01825191e+00 + syst_JES_Gjet_Stat6: 2.63854126e+00 + syst_JES_Gjet_Stat7: 3.73036419e+00 + syst_JES_Gjet_Stat8: 1.04857199e+00 + syst_JES_Gjet_Stat9: 5.78896813e-01 + syst_JES_Gjet_Veto: 8.52098555e+00 + syst_JES_Gjet_dPhi: 4.89339514e+00 + syst_JES_LArESZee: 2.63062008e+01 + syst_JES_LArEsmear: 2.46240142e+00 + syst_JES_LAr_JVT: 4.88700898e+00 + syst_JES_MJB_Alpha: 6.29190931e-02 + syst_JES_MJB_Asym: 2.26978297e-02 + syst_JES_MJB_Beta: 5.91263131e-02 + syst_JES_MJB_Fragmentation: 7.00324437e-02 + syst_JES_MJB_Stat1: 6.76947817e-02 + syst_JES_MJB_Stat10: 5.45089714e-02 + syst_JES_MJB_Stat11: 3.37455459e-02 + syst_JES_MJB_Stat12: 5.51663661e-02 + syst_JES_MJB_Stat13: 5.51062457e-02 + syst_JES_MJB_Stat14: 5.51062457e-02 + syst_JES_MJB_Stat15: 5.56499180e-02 + syst_JES_MJB_Stat16: 5.57849991e-02 + syst_JES_MJB_Stat2: 4.89888518e-02 + syst_JES_MJB_Stat3: 5.96723772e-02 + syst_JES_MJB_Stat4: 6.39051195e-02 + syst_JES_MJB_Stat5: 6.05080820e-02 + syst_JES_MJB_Stat6: 6.04183021e-02 + syst_JES_MJB_Stat7: 7.62290815e-02 + syst_JES_MJB_Stat8: 7.56471820e-02 + syst_JES_MJB_Stat9: 6.60012596e-02 + syst_JES_MJB_Threshold: 3.61816511e-02 + syst_JES_Pileup_MuOffset: 5.01721021e-01 + syst_JES_Pileup_NPVOffset: 3.35490220e+00 + syst_JES_Pileup_Pt_term: 1.09336859e+01 + syst_JES_Pileup_Rho_topology: 2.42516324e+01 + syst_JES_PunchThrough_MC15: 1.84636646e-01 + syst_JES_SingleParticle_HighPt: 5.51062457e-02 + syst_JES_Zjet_MC: 4.03503369e+01 + syst_JES_Zjet_MuScale: 2.80151298e+00 + syst_JES_Zjet_MuSmearID: 4.10612124e-01 + syst_JES_Zjet_MuSmearMS: 1.44897550e+00 + syst_JES_Zjet_OOC: 2.87654845e+01 + syst_JES_Zjet_Stat1: 8.49359959e-01 + syst_JES_Zjet_Stat10: 2.11372941e+00 + syst_JES_Zjet_Stat11: 3.73480895e-01 + syst_JES_Zjet_Stat12: 5.01881351e-01 + syst_JES_Zjet_Stat13: 4.24189616e-02 + syst_JES_Zjet_Stat2: 3.51952724e-02 + syst_JES_Zjet_Stat3: 2.91188290e-01 + syst_JES_Zjet_Stat4: 3.41241802e-01 + syst_JES_Zjet_Stat5: 7.44531146e-01 + syst_JES_Zjet_Stat6: 1.41498863e+00 + syst_JES_Zjet_Stat7: 2.22357797e+00 + syst_JES_Zjet_Stat8: 3.24107420e+00 + syst_JES_Zjet_Stat9: 3.78159040e+00 + syst_JES_Zjet_Veto: 4.40483836e+00 + syst_JES_Zjet_dPhi: 6.64647416e+00 syst_PRW: 0.0 syst_Unfolding_bias: 0.0 - syst_cleaning: 26.10200567006298 + syst_cleaning: 2.61020057e+01 syst_lumi: 42.106 - stat: 5.925 syst_JER_CROSS_CALIB_FORWARD: 0.3205 syst_JER_NOISE_FORWARD: 0.2034 - syst_JER_NP0: 5.401166633237675 - syst_JER_NP1: 0.73522613528084 + syst_JER_NP0: 5.40116663e+00 + syst_JER_NP1: 7.35226135e-01 syst_JER_NP2: 0.0 - syst_JER_NP3: 1.1590513480860114 - syst_JER_NP4: 0.7082206065203129 - syst_JER_NP5: 0.11872342260480868 + syst_JER_NP3: 1.15905135e+00 + syst_JER_NP4: 7.08220607e-01 + syst_JER_NP5: 1.18723423e-01 syst_JER_NP6: 0.0 syst_JER_NP7: 0.0 - syst_JER_NP8: 0.5234215222934572 - syst_JES_EtaIntercalibration_Modelling: 12.865765853613224 - syst_JES_EtaIntercalibration_NonClosure: 5.344183005848509 - syst_JES_EtaIntercalibration_Stat0: 0.005301886645336733 - syst_JES_EtaIntercalibration_Stat1: 0.006145788049550685 - syst_JES_EtaIntercalibration_Stat10: 0.005999620550501507 - syst_JES_EtaIntercalibration_Stat100: 0.2405438993198539 - syst_JES_EtaIntercalibration_Stat101: 0.22006968782637923 - syst_JES_EtaIntercalibration_Stat102: 0.12163307157183856 - syst_JES_EtaIntercalibration_Stat103: 0.11496646119629847 - syst_JES_EtaIntercalibration_Stat104: 0.14773142886671067 - syst_JES_EtaIntercalibration_Stat105: 0.12104790239818285 - syst_JES_EtaIntercalibration_Stat106: 0.07513444549605726 - syst_JES_EtaIntercalibration_Stat107: 0.0017981725473379911 - syst_JES_EtaIntercalibration_Stat108: 0.015244725874872267 - syst_JES_EtaIntercalibration_Stat109: 0.12457089347034482 - syst_JES_EtaIntercalibration_Stat11: 0.0054917340385346415 - syst_JES_EtaIntercalibration_Stat110: 0.18146465964479144 - syst_JES_EtaIntercalibration_Stat111: 0.24562514122133344 - syst_JES_EtaIntercalibration_Stat112: 0.2770219982239678 - syst_JES_EtaIntercalibration_Stat113: 0.29111205316853506 - syst_JES_EtaIntercalibration_Stat114: 0.34356930523549395 - syst_JES_EtaIntercalibration_Stat115: 0.7191788703097443 - syst_JES_EtaIntercalibration_Stat116: 0.5313930466236833 - syst_JES_EtaIntercalibration_Stat117: 0.3283160786498279 - syst_JES_EtaIntercalibration_Stat118: 0.3996080830013327 - syst_JES_EtaIntercalibration_Stat119: 0.5632301194893612 - syst_JES_EtaIntercalibration_Stat12: 0.007064622194427667 - syst_JES_EtaIntercalibration_Stat120: 0.586965493023227 - syst_JES_EtaIntercalibration_Stat121: 0.4977746553411494 - syst_JES_EtaIntercalibration_Stat122: 0.20837737401167145 - syst_JES_EtaIntercalibration_Stat123: 0.18834475702816897 - syst_JES_EtaIntercalibration_Stat124: 0.2814767263913661 - syst_JES_EtaIntercalibration_Stat125: 0.24600754271973044 - syst_JES_EtaIntercalibration_Stat126: 0.07294000548395922 - syst_JES_EtaIntercalibration_Stat127: 0.012340862003928251 - syst_JES_EtaIntercalibration_Stat128: 0.04979561501779047 - syst_JES_EtaIntercalibration_Stat129: 0.23492825117469376 - syst_JES_EtaIntercalibration_Stat13: 0.0032280348511129803 - syst_JES_EtaIntercalibration_Stat130: 0.32243331093421473 - syst_JES_EtaIntercalibration_Stat131: 0.15593118249727986 - syst_JES_EtaIntercalibration_Stat132: 0.2937648549435415 - syst_JES_EtaIntercalibration_Stat133: 0.2599143668114558 - syst_JES_EtaIntercalibration_Stat134: 0.6144125324242662 - syst_JES_EtaIntercalibration_Stat135: 0.40473026721509225 - syst_JES_EtaIntercalibration_Stat136: 0.38045058483329997 - syst_JES_EtaIntercalibration_Stat137: 0.38669765967742814 - syst_JES_EtaIntercalibration_Stat138: 0.4480635752881504 - syst_JES_EtaIntercalibration_Stat139: 0.4976645933759001 - syst_JES_EtaIntercalibration_Stat14: 0.003124138601278759 - syst_JES_EtaIntercalibration_Stat140: 0.42749038585680493 - syst_JES_EtaIntercalibration_Stat141: 0.4313200986506425 - syst_JES_EtaIntercalibration_Stat142: 0.19092225819689015 - syst_JES_EtaIntercalibration_Stat143: 0.24323471688885206 - syst_JES_EtaIntercalibration_Stat144: 0.4142851554183423 - syst_JES_EtaIntercalibration_Stat145: 0.07163595465965397 - syst_JES_EtaIntercalibration_Stat146: 0.022828429643757805 - syst_JES_EtaIntercalibration_Stat147: 0.042991163998198516 - syst_JES_EtaIntercalibration_Stat148: 0.0505857101857827 - syst_JES_EtaIntercalibration_Stat149: 0.020836571215053595 - syst_JES_EtaIntercalibration_Stat15: 0.00734119815612547 - syst_JES_EtaIntercalibration_Stat150: 0.043983443191728415 - syst_JES_EtaIntercalibration_Stat151: 0.03993471046595931 - syst_JES_EtaIntercalibration_Stat152: 0.06592666588718105 - syst_JES_EtaIntercalibration_Stat153: 0.04492147899390669 - syst_JES_EtaIntercalibration_Stat154: 0.07260735276127342 - syst_JES_EtaIntercalibration_Stat155: 0.05535431149196962 - syst_JES_EtaIntercalibration_Stat156: 0.07626219705725767 - syst_JES_EtaIntercalibration_Stat157: 0.11659158588851941 - syst_JES_EtaIntercalibration_Stat158: 0.17230554452773714 - syst_JES_EtaIntercalibration_Stat159: 0.04216680066601568 - syst_JES_EtaIntercalibration_Stat16: 0.0033296611359115813 - syst_JES_EtaIntercalibration_Stat160: 0.039158704013284196 - syst_JES_EtaIntercalibration_Stat161: 0.016359729741321126 - syst_JES_EtaIntercalibration_Stat162: 0.048992110334216056 - syst_JES_EtaIntercalibration_Stat163: 0.028860911281524012 - syst_JES_EtaIntercalibration_Stat164: 0.017452179369637475 - syst_JES_EtaIntercalibration_Stat165: 0.002173723763498941 - syst_JES_EtaIntercalibration_Stat166: 4.31540458701675e-07 - syst_JES_EtaIntercalibration_Stat167: 0.00681648595318732 - syst_JES_EtaIntercalibration_Stat168: 0.031850050235439194 - syst_JES_EtaIntercalibration_Stat169: 0.019754039460323045 - syst_JES_EtaIntercalibration_Stat17: 0.005273640298693115 - syst_JES_EtaIntercalibration_Stat170: 0.03158451273567474 - syst_JES_EtaIntercalibration_Stat171: 0.023864872658365475 - syst_JES_EtaIntercalibration_Stat172: 0.010116803200616288 - syst_JES_EtaIntercalibration_Stat173: 0.03422965919710566 - syst_JES_EtaIntercalibration_Stat174: 0.032600685192185765 - syst_JES_EtaIntercalibration_Stat175: 0.06010580899547065 - syst_JES_EtaIntercalibration_Stat176: 0.011775357489265455 - syst_JES_EtaIntercalibration_Stat177: 0.008765972108100734 - syst_JES_EtaIntercalibration_Stat178: 0.00024214070289812906 - syst_JES_EtaIntercalibration_Stat179: 0.00406457165639874 - syst_JES_EtaIntercalibration_Stat18: 0.005301886645336733 - syst_JES_EtaIntercalibration_Stat180: 0.007619991338577755 - syst_JES_EtaIntercalibration_Stat181: 0.011599979008601697 - syst_JES_EtaIntercalibration_Stat182: 0.0019043550089203431 - syst_JES_EtaIntercalibration_Stat183: 0.005330633264444291 - syst_JES_EtaIntercalibration_Stat184: 0.004613951451846888 - syst_JES_EtaIntercalibration_Stat185: 0.009038159805513509 - syst_JES_EtaIntercalibration_Stat186: 0.014214998091804305 - syst_JES_EtaIntercalibration_Stat187: 0.03182095535963683 - syst_JES_EtaIntercalibration_Stat188: 0.015745744567977723 - syst_JES_EtaIntercalibration_Stat189: 0.032506820253602166 - syst_JES_EtaIntercalibration_Stat19: 0.009741753474092844 - syst_JES_EtaIntercalibration_Stat190: 0.014411424660664193 - syst_JES_EtaIntercalibration_Stat191: 0.01322244425210407 - syst_JES_EtaIntercalibration_Stat192: 0.02784012763530369 - syst_JES_EtaIntercalibration_Stat193: 0.00895978151240308 - syst_JES_EtaIntercalibration_Stat194: 0.0032701119246900403 - syst_JES_EtaIntercalibration_Stat195: 0.0014527079009480019 - syst_JES_EtaIntercalibration_Stat196: 0.008085478897381404 - syst_JES_EtaIntercalibration_Stat197: 0.002466944156238645 - syst_JES_EtaIntercalibration_Stat198: 0.003502350297657275 - syst_JES_EtaIntercalibration_Stat199: 0.0063135445258586725 - syst_JES_EtaIntercalibration_Stat2: 0.0030795593840677923 - syst_JES_EtaIntercalibration_Stat20: 0.005301886645336733 - syst_JES_EtaIntercalibration_Stat200: 0.00184099444232594 - syst_JES_EtaIntercalibration_Stat201: 0.003521001137105752 - syst_JES_EtaIntercalibration_Stat202: 0.0016531560210700019 - syst_JES_EtaIntercalibration_Stat203: 0.002431824160995198 - syst_JES_EtaIntercalibration_Stat204: 0.002505905225661976 - syst_JES_EtaIntercalibration_Stat205: 0.0033355017613546536 - syst_JES_EtaIntercalibration_Stat206: 0.0013426411396944458 - syst_JES_EtaIntercalibration_Stat207: 0.002298189450415261 - syst_JES_EtaIntercalibration_Stat208: 0.0038063214196911964 - syst_JES_EtaIntercalibration_Stat209: 0.004756762843573347 - syst_JES_EtaIntercalibration_Stat21: 0.005301886645336733 - syst_JES_EtaIntercalibration_Stat210: 0.0024967940944339 - syst_JES_EtaIntercalibration_Stat211: 0.0046223545947925715 - syst_JES_EtaIntercalibration_Stat212: 0.0024859808542102655 - syst_JES_EtaIntercalibration_Stat213: 0.004944203955137774 - syst_JES_EtaIntercalibration_Stat214: 0.0023898025373448747 - syst_JES_EtaIntercalibration_Stat215: 0.002538320458313673 - syst_JES_EtaIntercalibration_Stat216: 0.0041683969040867495 - syst_JES_EtaIntercalibration_Stat217: 0.002509166994741482 - syst_JES_EtaIntercalibration_Stat218: 0.004156388215746936 - syst_JES_EtaIntercalibration_Stat219: 0.005066045400507185 - syst_JES_EtaIntercalibration_Stat22: 0.005301886645336733 - syst_JES_EtaIntercalibration_Stat220: 0.005035405122728458 - syst_JES_EtaIntercalibration_Stat221: 0.0024433793708714168 - syst_JES_EtaIntercalibration_Stat222: 0.004186366801893976 - syst_JES_EtaIntercalibration_Stat223: 0.003496144555077779 - syst_JES_EtaIntercalibration_Stat224: 0.002094156333705772 - syst_JES_EtaIntercalibration_Stat225: 0.0026751452297024917 - syst_JES_EtaIntercalibration_Stat226: 0.004378724471806829 - syst_JES_EtaIntercalibration_Stat227: 0.0023269900622907695 - syst_JES_EtaIntercalibration_Stat228: 0.005210589505996418 - syst_JES_EtaIntercalibration_Stat229: 0.004144144165868268 - syst_JES_EtaIntercalibration_Stat23: 0.0021658047072624065 - syst_JES_EtaIntercalibration_Stat230: 0.0024749055754715167 - syst_JES_EtaIntercalibration_Stat231: 0.0024304079390094165 - syst_JES_EtaIntercalibration_Stat232: 0.003512727430359492 - syst_JES_EtaIntercalibration_Stat233: 0.004140817310628423 - syst_JES_EtaIntercalibration_Stat234: 0.00878150002846894 - syst_JES_EtaIntercalibration_Stat235: 0.00561296721886027 - syst_JES_EtaIntercalibration_Stat236: 0.0030665959548006974 - syst_JES_EtaIntercalibration_Stat237: 0.005208522511230992 - syst_JES_EtaIntercalibration_Stat238: 0.0051230678308997624 - syst_JES_EtaIntercalibration_Stat239: 0.003448166747708121 - syst_JES_EtaIntercalibration_Stat24: 0.011091423296854197 - syst_JES_EtaIntercalibration_Stat240: 0.004140817310628423 - syst_JES_EtaIntercalibration_Stat241: 0.0025357223822808366 - syst_JES_EtaIntercalibration_Stat242: 0.005916368538850501 - syst_JES_EtaIntercalibration_Stat243: 0.003290203714057839 - syst_JES_EtaIntercalibration_Stat244: 0.004417249908031014 - syst_JES_EtaIntercalibration_Stat245: 0.007219482183647245 - syst_JES_EtaIntercalibration_Stat25: 0.012846656685690638 - syst_JES_EtaIntercalibration_Stat26: 0.005701169244111246 - syst_JES_EtaIntercalibration_Stat27: 0.0030795463951692626 - syst_JES_EtaIntercalibration_Stat28: 0.010638812997698569 - syst_JES_EtaIntercalibration_Stat29: 0.04414623738213711 - syst_JES_EtaIntercalibration_Stat3: 0.0024547005418176777 - syst_JES_EtaIntercalibration_Stat30: 0.031837374840743386 - syst_JES_EtaIntercalibration_Stat31: 0.013725576861738819 - syst_JES_EtaIntercalibration_Stat32: 0.01931177588933757 - syst_JES_EtaIntercalibration_Stat33: 0.010021549580778413 - syst_JES_EtaIntercalibration_Stat34: 0.03277566589712557 - syst_JES_EtaIntercalibration_Stat35: 0.01976543953470299 - syst_JES_EtaIntercalibration_Stat36: 0.011877183083542998 - syst_JES_EtaIntercalibration_Stat37: 0.002270523267332885 - syst_JES_EtaIntercalibration_Stat38: 0.011450556176448374 - syst_JES_EtaIntercalibration_Stat39: 0.007524028708079202 - syst_JES_EtaIntercalibration_Stat4: 0.006145788049550685 - syst_JES_EtaIntercalibration_Stat40: 0.031133901566459673 - syst_JES_EtaIntercalibration_Stat41: 0.005071133305287882 - syst_JES_EtaIntercalibration_Stat42: 0.002971333160384409 - syst_JES_EtaIntercalibration_Stat43: 0.005301886645336733 - syst_JES_EtaIntercalibration_Stat44: 0.005301886645336733 - syst_JES_EtaIntercalibration_Stat45: 0.0030795593840677923 - syst_JES_EtaIntercalibration_Stat46: 0.01239356274631613 - syst_JES_EtaIntercalibration_Stat47: 0.025868503532288065 - syst_JES_EtaIntercalibration_Stat48: 0.04531623219112551 - syst_JES_EtaIntercalibration_Stat49: 0.020909796746979632 - syst_JES_EtaIntercalibration_Stat5: 0.0032467292387878604 - syst_JES_EtaIntercalibration_Stat50: 0.04162436155666535 - syst_JES_EtaIntercalibration_Stat51: 0.0684063330401506 - syst_JES_EtaIntercalibration_Stat52: 0.06789875017259153 - syst_JES_EtaIntercalibration_Stat53: 0.07848068599980508 - syst_JES_EtaIntercalibration_Stat54: 0.044238707881220946 - syst_JES_EtaIntercalibration_Stat55: 0.05098067942858353 - syst_JES_EtaIntercalibration_Stat56: 0.07078464664035557 - syst_JES_EtaIntercalibration_Stat57: 0.061080938925330876 - syst_JES_EtaIntercalibration_Stat58: 0.039310081235606725 - syst_JES_EtaIntercalibration_Stat59: 0.03475404149160209 - syst_JES_EtaIntercalibration_Stat6: 0.003148683693228013 - syst_JES_EtaIntercalibration_Stat60: 0.02700030538253225 - syst_JES_EtaIntercalibration_Stat61: 0.04300462416996572 - syst_JES_EtaIntercalibration_Stat62: 0.03416024114376244 - syst_JES_EtaIntercalibration_Stat63: 0.01996931012203476 - syst_JES_EtaIntercalibration_Stat64: 0.0017076149529387473 - syst_JES_EtaIntercalibration_Stat65: 0.005301886645336733 - syst_JES_EtaIntercalibration_Stat66: 0.005301886645336733 - syst_JES_EtaIntercalibration_Stat67: 0.00936970184957878 - syst_JES_EtaIntercalibration_Stat68: 0.07076422878121404 - syst_JES_EtaIntercalibration_Stat69: 0.1228381743392501 - syst_JES_EtaIntercalibration_Stat7: 0.004339620115862678 - syst_JES_EtaIntercalibration_Stat70: 0.15519934560106882 - syst_JES_EtaIntercalibration_Stat71: 0.1243303248407242 - syst_JES_EtaIntercalibration_Stat72: 0.16956525786551915 - syst_JES_EtaIntercalibration_Stat73: 0.22342575948175716 - syst_JES_EtaIntercalibration_Stat74: 0.23646790479893884 - syst_JES_EtaIntercalibration_Stat75: 0.2513954404916684 - syst_JES_EtaIntercalibration_Stat76: 0.16371733284841897 + syst_JER_NP8: 5.23421522e-01 + syst_JES_EtaIntercalibration_Modelling: 1.28657659e+01 + syst_JES_EtaIntercalibration_NonClosure: 5.34418301e+00 + syst_JES_EtaIntercalibration_Stat0: 5.30188665e-03 + syst_JES_EtaIntercalibration_Stat1: 6.14578805e-03 + syst_JES_EtaIntercalibration_Stat10: 5.99962055e-03 + syst_JES_EtaIntercalibration_Stat100: 2.40543899e-01 + syst_JES_EtaIntercalibration_Stat101: 2.20069688e-01 + syst_JES_EtaIntercalibration_Stat102: 1.21633072e-01 + syst_JES_EtaIntercalibration_Stat103: 1.14966461e-01 + syst_JES_EtaIntercalibration_Stat104: 1.47731429e-01 + syst_JES_EtaIntercalibration_Stat105: 1.21047902e-01 + syst_JES_EtaIntercalibration_Stat106: 7.51344455e-02 + syst_JES_EtaIntercalibration_Stat107: 1.79817255e-03 + syst_JES_EtaIntercalibration_Stat108: 1.52447259e-02 + syst_JES_EtaIntercalibration_Stat109: 1.24570893e-01 + syst_JES_EtaIntercalibration_Stat11: 5.49173404e-03 + syst_JES_EtaIntercalibration_Stat110: 1.81464660e-01 + syst_JES_EtaIntercalibration_Stat111: 2.45625141e-01 + syst_JES_EtaIntercalibration_Stat112: 2.77021998e-01 + syst_JES_EtaIntercalibration_Stat113: 2.91112053e-01 + syst_JES_EtaIntercalibration_Stat114: 3.43569305e-01 + syst_JES_EtaIntercalibration_Stat115: 7.19178870e-01 + syst_JES_EtaIntercalibration_Stat116: 5.31393047e-01 + syst_JES_EtaIntercalibration_Stat117: 3.28316079e-01 + syst_JES_EtaIntercalibration_Stat118: 3.99608083e-01 + syst_JES_EtaIntercalibration_Stat119: 5.63230119e-01 + syst_JES_EtaIntercalibration_Stat12: 7.06462219e-03 + syst_JES_EtaIntercalibration_Stat120: 5.86965493e-01 + syst_JES_EtaIntercalibration_Stat121: 4.97774655e-01 + syst_JES_EtaIntercalibration_Stat122: 2.08377374e-01 + syst_JES_EtaIntercalibration_Stat123: 1.88344757e-01 + syst_JES_EtaIntercalibration_Stat124: 2.81476726e-01 + syst_JES_EtaIntercalibration_Stat125: 2.46007543e-01 + syst_JES_EtaIntercalibration_Stat126: 7.29400055e-02 + syst_JES_EtaIntercalibration_Stat127: 1.23408620e-02 + syst_JES_EtaIntercalibration_Stat128: 4.97956150e-02 + syst_JES_EtaIntercalibration_Stat129: 2.34928251e-01 + syst_JES_EtaIntercalibration_Stat13: 3.22803485e-03 + syst_JES_EtaIntercalibration_Stat130: 3.22433311e-01 + syst_JES_EtaIntercalibration_Stat131: 1.55931182e-01 + syst_JES_EtaIntercalibration_Stat132: 2.93764855e-01 + syst_JES_EtaIntercalibration_Stat133: 2.59914367e-01 + syst_JES_EtaIntercalibration_Stat134: 6.14412532e-01 + syst_JES_EtaIntercalibration_Stat135: 4.04730267e-01 + syst_JES_EtaIntercalibration_Stat136: 3.80450585e-01 + syst_JES_EtaIntercalibration_Stat137: 3.86697660e-01 + syst_JES_EtaIntercalibration_Stat138: 4.48063575e-01 + syst_JES_EtaIntercalibration_Stat139: 4.97664593e-01 + syst_JES_EtaIntercalibration_Stat14: 3.12413860e-03 + syst_JES_EtaIntercalibration_Stat140: 4.27490386e-01 + syst_JES_EtaIntercalibration_Stat141: 4.31320099e-01 + syst_JES_EtaIntercalibration_Stat142: 1.90922258e-01 + syst_JES_EtaIntercalibration_Stat143: 2.43234717e-01 + syst_JES_EtaIntercalibration_Stat144: 4.14285155e-01 + syst_JES_EtaIntercalibration_Stat145: 7.16359547e-02 + syst_JES_EtaIntercalibration_Stat146: 2.28284296e-02 + syst_JES_EtaIntercalibration_Stat147: 4.29911640e-02 + syst_JES_EtaIntercalibration_Stat148: 5.05857102e-02 + syst_JES_EtaIntercalibration_Stat149: 2.08365712e-02 + syst_JES_EtaIntercalibration_Stat15: 7.34119816e-03 + syst_JES_EtaIntercalibration_Stat150: 4.39834432e-02 + syst_JES_EtaIntercalibration_Stat151: 3.99347105e-02 + syst_JES_EtaIntercalibration_Stat152: 6.59266659e-02 + syst_JES_EtaIntercalibration_Stat153: 4.49214790e-02 + syst_JES_EtaIntercalibration_Stat154: 7.26073528e-02 + syst_JES_EtaIntercalibration_Stat155: 5.53543115e-02 + syst_JES_EtaIntercalibration_Stat156: 7.62621971e-02 + syst_JES_EtaIntercalibration_Stat157: 1.16591586e-01 + syst_JES_EtaIntercalibration_Stat158: 1.72305545e-01 + syst_JES_EtaIntercalibration_Stat159: 4.21668007e-02 + syst_JES_EtaIntercalibration_Stat16: 3.32966114e-03 + syst_JES_EtaIntercalibration_Stat160: 3.91587040e-02 + syst_JES_EtaIntercalibration_Stat161: 1.63597297e-02 + syst_JES_EtaIntercalibration_Stat162: 4.89921103e-02 + syst_JES_EtaIntercalibration_Stat163: 2.88609113e-02 + syst_JES_EtaIntercalibration_Stat164: 1.74521794e-02 + syst_JES_EtaIntercalibration_Stat165: 2.17372376e-03 + syst_JES_EtaIntercalibration_Stat166: 4.31540459e-07 + syst_JES_EtaIntercalibration_Stat167: 6.81648595e-03 + syst_JES_EtaIntercalibration_Stat168: 3.18500502e-02 + syst_JES_EtaIntercalibration_Stat169: 1.97540395e-02 + syst_JES_EtaIntercalibration_Stat17: 5.27364030e-03 + syst_JES_EtaIntercalibration_Stat170: 3.15845127e-02 + syst_JES_EtaIntercalibration_Stat171: 2.38648727e-02 + syst_JES_EtaIntercalibration_Stat172: 1.01168032e-02 + syst_JES_EtaIntercalibration_Stat173: 3.42296592e-02 + syst_JES_EtaIntercalibration_Stat174: 3.26006852e-02 + syst_JES_EtaIntercalibration_Stat175: 6.01058090e-02 + syst_JES_EtaIntercalibration_Stat176: 1.17753575e-02 + syst_JES_EtaIntercalibration_Stat177: 8.76597211e-03 + syst_JES_EtaIntercalibration_Stat178: 2.42140703e-04 + syst_JES_EtaIntercalibration_Stat179: 4.06457166e-03 + syst_JES_EtaIntercalibration_Stat18: 5.30188665e-03 + syst_JES_EtaIntercalibration_Stat180: 7.61999134e-03 + syst_JES_EtaIntercalibration_Stat181: 1.15999790e-02 + syst_JES_EtaIntercalibration_Stat182: 1.90435501e-03 + syst_JES_EtaIntercalibration_Stat183: 5.33063326e-03 + syst_JES_EtaIntercalibration_Stat184: 4.61395145e-03 + syst_JES_EtaIntercalibration_Stat185: 9.03815981e-03 + syst_JES_EtaIntercalibration_Stat186: 1.42149981e-02 + syst_JES_EtaIntercalibration_Stat187: 3.18209554e-02 + syst_JES_EtaIntercalibration_Stat188: 1.57457446e-02 + syst_JES_EtaIntercalibration_Stat189: 3.25068203e-02 + syst_JES_EtaIntercalibration_Stat19: 9.74175347e-03 + syst_JES_EtaIntercalibration_Stat190: 1.44114247e-02 + syst_JES_EtaIntercalibration_Stat191: 1.32224443e-02 + syst_JES_EtaIntercalibration_Stat192: 2.78401276e-02 + syst_JES_EtaIntercalibration_Stat193: 8.95978151e-03 + syst_JES_EtaIntercalibration_Stat194: 3.27011192e-03 + syst_JES_EtaIntercalibration_Stat195: 1.45270790e-03 + syst_JES_EtaIntercalibration_Stat196: 8.08547890e-03 + syst_JES_EtaIntercalibration_Stat197: 2.46694416e-03 + syst_JES_EtaIntercalibration_Stat198: 3.50235030e-03 + syst_JES_EtaIntercalibration_Stat199: 6.31354453e-03 + syst_JES_EtaIntercalibration_Stat2: 3.07955938e-03 + syst_JES_EtaIntercalibration_Stat20: 5.30188665e-03 + syst_JES_EtaIntercalibration_Stat200: 1.84099444e-03 + syst_JES_EtaIntercalibration_Stat201: 3.52100114e-03 + syst_JES_EtaIntercalibration_Stat202: 1.65315602e-03 + syst_JES_EtaIntercalibration_Stat203: 2.43182416e-03 + syst_JES_EtaIntercalibration_Stat204: 2.50590523e-03 + syst_JES_EtaIntercalibration_Stat205: 3.33550176e-03 + syst_JES_EtaIntercalibration_Stat206: 1.34264114e-03 + syst_JES_EtaIntercalibration_Stat207: 2.29818945e-03 + syst_JES_EtaIntercalibration_Stat208: 3.80632142e-03 + syst_JES_EtaIntercalibration_Stat209: 4.75676284e-03 + syst_JES_EtaIntercalibration_Stat21: 5.30188665e-03 + syst_JES_EtaIntercalibration_Stat210: 2.49679409e-03 + syst_JES_EtaIntercalibration_Stat211: 4.62235459e-03 + syst_JES_EtaIntercalibration_Stat212: 2.48598085e-03 + syst_JES_EtaIntercalibration_Stat213: 4.94420396e-03 + syst_JES_EtaIntercalibration_Stat214: 2.38980254e-03 + syst_JES_EtaIntercalibration_Stat215: 2.53832046e-03 + syst_JES_EtaIntercalibration_Stat216: 4.16839690e-03 + syst_JES_EtaIntercalibration_Stat217: 2.50916699e-03 + syst_JES_EtaIntercalibration_Stat218: 4.15638822e-03 + syst_JES_EtaIntercalibration_Stat219: 5.06604540e-03 + syst_JES_EtaIntercalibration_Stat22: 5.30188665e-03 + syst_JES_EtaIntercalibration_Stat220: 5.03540512e-03 + syst_JES_EtaIntercalibration_Stat221: 2.44337937e-03 + syst_JES_EtaIntercalibration_Stat222: 4.18636680e-03 + syst_JES_EtaIntercalibration_Stat223: 3.49614456e-03 + syst_JES_EtaIntercalibration_Stat224: 2.09415633e-03 + syst_JES_EtaIntercalibration_Stat225: 2.67514523e-03 + syst_JES_EtaIntercalibration_Stat226: 4.37872447e-03 + syst_JES_EtaIntercalibration_Stat227: 2.32699006e-03 + syst_JES_EtaIntercalibration_Stat228: 5.21058951e-03 + syst_JES_EtaIntercalibration_Stat229: 4.14414417e-03 + syst_JES_EtaIntercalibration_Stat23: 2.16580471e-03 + syst_JES_EtaIntercalibration_Stat230: 2.47490558e-03 + syst_JES_EtaIntercalibration_Stat231: 2.43040794e-03 + syst_JES_EtaIntercalibration_Stat232: 3.51272743e-03 + syst_JES_EtaIntercalibration_Stat233: 4.14081731e-03 + syst_JES_EtaIntercalibration_Stat234: 8.78150003e-03 + syst_JES_EtaIntercalibration_Stat235: 5.61296722e-03 + syst_JES_EtaIntercalibration_Stat236: 3.06659595e-03 + syst_JES_EtaIntercalibration_Stat237: 5.20852251e-03 + syst_JES_EtaIntercalibration_Stat238: 5.12306783e-03 + syst_JES_EtaIntercalibration_Stat239: 3.44816675e-03 + syst_JES_EtaIntercalibration_Stat24: 1.10914233e-02 + syst_JES_EtaIntercalibration_Stat240: 4.14081731e-03 + syst_JES_EtaIntercalibration_Stat241: 2.53572238e-03 + syst_JES_EtaIntercalibration_Stat242: 5.91636854e-03 + syst_JES_EtaIntercalibration_Stat243: 3.29020371e-03 + syst_JES_EtaIntercalibration_Stat244: 4.41724991e-03 + syst_JES_EtaIntercalibration_Stat245: 7.21948218e-03 + syst_JES_EtaIntercalibration_Stat25: 1.28466567e-02 + syst_JES_EtaIntercalibration_Stat26: 5.70116924e-03 + syst_JES_EtaIntercalibration_Stat27: 3.07954640e-03 + syst_JES_EtaIntercalibration_Stat28: 1.06388130e-02 + syst_JES_EtaIntercalibration_Stat29: 4.41462374e-02 + syst_JES_EtaIntercalibration_Stat3: 2.45470054e-03 + syst_JES_EtaIntercalibration_Stat30: 3.18373748e-02 + syst_JES_EtaIntercalibration_Stat31: 1.37255769e-02 + syst_JES_EtaIntercalibration_Stat32: 1.93117759e-02 + syst_JES_EtaIntercalibration_Stat33: 1.00215496e-02 + syst_JES_EtaIntercalibration_Stat34: 3.27756659e-02 + syst_JES_EtaIntercalibration_Stat35: 1.97654395e-02 + syst_JES_EtaIntercalibration_Stat36: 1.18771831e-02 + syst_JES_EtaIntercalibration_Stat37: 2.27052327e-03 + syst_JES_EtaIntercalibration_Stat38: 1.14505562e-02 + syst_JES_EtaIntercalibration_Stat39: 7.52402871e-03 + syst_JES_EtaIntercalibration_Stat4: 6.14578805e-03 + syst_JES_EtaIntercalibration_Stat40: 3.11339016e-02 + syst_JES_EtaIntercalibration_Stat41: 5.07113331e-03 + syst_JES_EtaIntercalibration_Stat42: 2.97133316e-03 + syst_JES_EtaIntercalibration_Stat43: 5.30188665e-03 + syst_JES_EtaIntercalibration_Stat44: 5.30188665e-03 + syst_JES_EtaIntercalibration_Stat45: 3.07955938e-03 + syst_JES_EtaIntercalibration_Stat46: 1.23935627e-02 + syst_JES_EtaIntercalibration_Stat47: 2.58685035e-02 + syst_JES_EtaIntercalibration_Stat48: 4.53162322e-02 + syst_JES_EtaIntercalibration_Stat49: 2.09097967e-02 + syst_JES_EtaIntercalibration_Stat5: 3.24672924e-03 + syst_JES_EtaIntercalibration_Stat50: 4.16243616e-02 + syst_JES_EtaIntercalibration_Stat51: 6.84063330e-02 + syst_JES_EtaIntercalibration_Stat52: 6.78987502e-02 + syst_JES_EtaIntercalibration_Stat53: 7.84806860e-02 + syst_JES_EtaIntercalibration_Stat54: 4.42387079e-02 + syst_JES_EtaIntercalibration_Stat55: 5.09806794e-02 + syst_JES_EtaIntercalibration_Stat56: 7.07846466e-02 + syst_JES_EtaIntercalibration_Stat57: 6.10809389e-02 + syst_JES_EtaIntercalibration_Stat58: 3.93100812e-02 + syst_JES_EtaIntercalibration_Stat59: 3.47540415e-02 + syst_JES_EtaIntercalibration_Stat6: 3.14868369e-03 + syst_JES_EtaIntercalibration_Stat60: 2.70003054e-02 + syst_JES_EtaIntercalibration_Stat61: 4.30046242e-02 + syst_JES_EtaIntercalibration_Stat62: 3.41602411e-02 + syst_JES_EtaIntercalibration_Stat63: 1.99693101e-02 + syst_JES_EtaIntercalibration_Stat64: 1.70761495e-03 + syst_JES_EtaIntercalibration_Stat65: 5.30188665e-03 + syst_JES_EtaIntercalibration_Stat66: 5.30188665e-03 + syst_JES_EtaIntercalibration_Stat67: 9.36970185e-03 + syst_JES_EtaIntercalibration_Stat68: 7.07642288e-02 + syst_JES_EtaIntercalibration_Stat69: 1.22838174e-01 + syst_JES_EtaIntercalibration_Stat7: 4.33962012e-03 + syst_JES_EtaIntercalibration_Stat70: 1.55199346e-01 + syst_JES_EtaIntercalibration_Stat71: 1.24330325e-01 + syst_JES_EtaIntercalibration_Stat72: 1.69565258e-01 + syst_JES_EtaIntercalibration_Stat73: 2.23425759e-01 + syst_JES_EtaIntercalibration_Stat74: 2.36467905e-01 + syst_JES_EtaIntercalibration_Stat75: 2.51395440e-01 + syst_JES_EtaIntercalibration_Stat76: 1.63717333e-01 syst_JES_EtaIntercalibration_Stat77: 0.2139 - syst_JES_EtaIntercalibration_Stat78: 0.2617171564876862 - syst_JES_EtaIntercalibration_Stat79: 0.23546330924371212 - syst_JES_EtaIntercalibration_Stat8: 0.0051211609035452105 - syst_JES_EtaIntercalibration_Stat80: 0.17243411517156343 - syst_JES_EtaIntercalibration_Stat81: 0.12329706839580575 - syst_JES_EtaIntercalibration_Stat82: 0.1089174351286331 - syst_JES_EtaIntercalibration_Stat83: 0.1336373252500962 - syst_JES_EtaIntercalibration_Stat84: 0.08820053627954878 - syst_JES_EtaIntercalibration_Stat85: 0.04804454261412008 - syst_JES_EtaIntercalibration_Stat86: 0.0050359349429872505 - syst_JES_EtaIntercalibration_Stat87: 0.0032467292387878604 - syst_JES_EtaIntercalibration_Stat88: 0.005675684179682657 - syst_JES_EtaIntercalibration_Stat89: 0.09564551427014233 - syst_JES_EtaIntercalibration_Stat9: 0.007546951089678533 - syst_JES_EtaIntercalibration_Stat90: 0.1258955888822162 - syst_JES_EtaIntercalibration_Stat91: 0.13919874954538924 - syst_JES_EtaIntercalibration_Stat92: 0.11855244525103646 - syst_JES_EtaIntercalibration_Stat93: 0.1696498065869808 - syst_JES_EtaIntercalibration_Stat94: 0.2523252811352838 - syst_JES_EtaIntercalibration_Stat95: 0.3130902545592884 - syst_JES_EtaIntercalibration_Stat96: 0.32616601217784785 - syst_JES_EtaIntercalibration_Stat97: 0.19616321648056242 - syst_JES_EtaIntercalibration_Stat98: 0.18505860558212367 - syst_JES_EtaIntercalibration_Stat99: 0.2460506604339846 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.05885403639513606 - syst_JES_Flavour_Comp: 1.2745115564403486 - syst_JES_Flavour_Response: 25.82479428766084 - syst_JES_Gjet_Generator: 17.721769099048775 - syst_JES_Gjet_OOC: 10.70531648294435 - syst_JES_Gjet_Purity: 4.0783729598946685 - syst_JES_Gjet_Stat1: 0.024335313846342726 - syst_JES_Gjet_Stat10: 0.176968870708947 - syst_JES_Gjet_Stat11: 0.2735647069853858 - syst_JES_Gjet_Stat12: 0.10490863298604172 - syst_JES_Gjet_Stat13: 0.019591434352798164 - syst_JES_Gjet_Stat14: 0.005791810338745563 - syst_JES_Gjet_Stat15: 0.004824365528232702 - syst_JES_Gjet_Stat2: 0.044168406129268464 - syst_JES_Gjet_Stat3: 0.1459557709547656 - syst_JES_Gjet_Stat4: 0.1919904880456321 - syst_JES_Gjet_Stat5: 0.26567973200829603 - syst_JES_Gjet_Stat6: 0.7443078445777661 - syst_JES_Gjet_Stat7: 1.196963703501489 - syst_JES_Gjet_Stat8: 0.5832946768143868 - syst_JES_Gjet_Stat9: 0.5438164580076627 - syst_JES_Gjet_Veto: 3.518597270220052 - syst_JES_Gjet_dPhi: 1.7370828995761833 - syst_JES_LArESZee: 12.83951925696597 - syst_JES_LArEsmear: 1.0674675674230107 - syst_JES_LAr_JVT: 1.982003531782928 - syst_JES_MJB_Alpha: 0.023982181468748833 - syst_JES_MJB_Asym: 0.014108446654398211 - syst_JES_MJB_Beta: 0.014780200632941354 - syst_JES_MJB_Fragmentation: 0.07077199870005087 - syst_JES_MJB_Stat1: 0.038893936246541055 - syst_JES_MJB_Stat10: 0.0023946642248966763 - syst_JES_MJB_Stat11: 0.0025357223822808366 - syst_JES_MJB_Stat12: 0.004264024243598997 - syst_JES_MJB_Stat13: 0.004140817310628423 - syst_JES_MJB_Stat14: 0.004140817310628423 - syst_JES_MJB_Stat15: 0.00529773222709491 - syst_JES_MJB_Stat16: 0.00559651165906049 - syst_JES_MJB_Stat2: 0.014837178808654965 - syst_JES_MJB_Stat3: 0.013980295669262507 - syst_JES_MJB_Stat4: 0.022858778855179472 - syst_JES_MJB_Stat5: 0.014912884722614868 - syst_JES_MJB_Stat6: 0.014724244658046132 - syst_JES_MJB_Stat7: 0.050862462809030395 - syst_JES_MJB_Stat8: 0.04958219844863679 - syst_JES_MJB_Stat9: 0.030349206694739155 - syst_JES_MJB_Threshold: 0.01633088028092791 - syst_JES_Pileup_MuOffset: 0.21414326979851597 - syst_JES_Pileup_NPVOffset: 1.2522034818670644 - syst_JES_Pileup_Pt_term: 4.3698239094956675 - syst_JES_Pileup_Rho_topology: 8.491901553833511 - syst_JES_PunchThrough_MC15: 0.08038036081450493 - syst_JES_SingleParticle_HighPt: 0.004140817310628423 - syst_JES_Zjet_MC: 16.231453262108108 - syst_JES_Zjet_MuScale: 1.056254792888534 - syst_JES_Zjet_MuSmearID: 0.1668598438810249 - syst_JES_Zjet_MuSmearMS: 0.7222127733569935 - syst_JES_Zjet_OOC: 8.761693500688096 - syst_JES_Zjet_Stat1: 0.2221491559740887 - syst_JES_Zjet_Stat10: 1.6020024968769555 - syst_JES_Zjet_Stat11: 0.5900015423708653 - syst_JES_Zjet_Stat12: 0.11553507032498833 - syst_JES_Zjet_Stat13: 0.06424953287767934 - syst_JES_Zjet_Stat2: 0.021771843557130948 - syst_JES_Zjet_Stat3: 0.05443939290624023 - syst_JES_Zjet_Stat4: 0.10821915542084035 - syst_JES_Zjet_Stat5: 0.20654626600352766 - syst_JES_Zjet_Stat6: 0.3459540720962827 - syst_JES_Zjet_Stat7: 0.5836038553676628 - syst_JES_Zjet_Stat8: 0.8816479612067393 - syst_JES_Zjet_Stat9: 1.544285595348218 - syst_JES_Zjet_Veto: 1.3463032756403737 - syst_JES_Zjet_dPhi: 1.933025349031926 + syst_JES_EtaIntercalibration_Stat78: 2.61717156e-01 + syst_JES_EtaIntercalibration_Stat79: 2.35463309e-01 + syst_JES_EtaIntercalibration_Stat8: 5.12116090e-03 + syst_JES_EtaIntercalibration_Stat80: 1.72434115e-01 + syst_JES_EtaIntercalibration_Stat81: 1.23297068e-01 + syst_JES_EtaIntercalibration_Stat82: 1.08917435e-01 + syst_JES_EtaIntercalibration_Stat83: 1.33637325e-01 + syst_JES_EtaIntercalibration_Stat84: 8.82005363e-02 + syst_JES_EtaIntercalibration_Stat85: 4.80445426e-02 + syst_JES_EtaIntercalibration_Stat86: 5.03593494e-03 + syst_JES_EtaIntercalibration_Stat87: 3.24672924e-03 + syst_JES_EtaIntercalibration_Stat88: 5.67568418e-03 + syst_JES_EtaIntercalibration_Stat89: 9.56455143e-02 + syst_JES_EtaIntercalibration_Stat9: 7.54695109e-03 + syst_JES_EtaIntercalibration_Stat90: 1.25895589e-01 + syst_JES_EtaIntercalibration_Stat91: 1.39198750e-01 + syst_JES_EtaIntercalibration_Stat92: 1.18552445e-01 + syst_JES_EtaIntercalibration_Stat93: 1.69649807e-01 + syst_JES_EtaIntercalibration_Stat94: 2.52325281e-01 + syst_JES_EtaIntercalibration_Stat95: 3.13090255e-01 + syst_JES_EtaIntercalibration_Stat96: 3.26166012e-01 + syst_JES_EtaIntercalibration_Stat97: 1.96163216e-01 + syst_JES_EtaIntercalibration_Stat98: 1.85058606e-01 + syst_JES_EtaIntercalibration_Stat99: 2.46050660e-01 + syst_JES_EtaIntercalibration_TotalStat_MJB: 5.88540364e-02 + syst_JES_Flavour_Comp: 1.27451156e+00 + syst_JES_Flavour_Response: 2.58247943e+01 + syst_JES_Gjet_Generator: 1.77217691e+01 + syst_JES_Gjet_OOC: 1.07053165e+01 + syst_JES_Gjet_Purity: 4.07837296e+00 + syst_JES_Gjet_Stat1: 2.43353138e-02 + syst_JES_Gjet_Stat10: 1.76968871e-01 + syst_JES_Gjet_Stat11: 2.73564707e-01 + syst_JES_Gjet_Stat12: 1.04908633e-01 + syst_JES_Gjet_Stat13: 1.95914344e-02 + syst_JES_Gjet_Stat14: 5.79181034e-03 + syst_JES_Gjet_Stat15: 4.82436553e-03 + syst_JES_Gjet_Stat2: 4.41684061e-02 + syst_JES_Gjet_Stat3: 1.45955771e-01 + syst_JES_Gjet_Stat4: 1.91990488e-01 + syst_JES_Gjet_Stat5: 2.65679732e-01 + syst_JES_Gjet_Stat6: 7.44307845e-01 + syst_JES_Gjet_Stat7: 1.19696370e+00 + syst_JES_Gjet_Stat8: 5.83294677e-01 + syst_JES_Gjet_Stat9: 5.43816458e-01 + syst_JES_Gjet_Veto: 3.51859727e+00 + syst_JES_Gjet_dPhi: 1.73708290e+00 + syst_JES_LArESZee: 1.28395193e+01 + syst_JES_LArEsmear: 1.06746757e+00 + syst_JES_LAr_JVT: 1.98200353e+00 + syst_JES_MJB_Alpha: 2.39821815e-02 + syst_JES_MJB_Asym: 1.41084467e-02 + syst_JES_MJB_Beta: 1.47802006e-02 + syst_JES_MJB_Fragmentation: 7.07719987e-02 + syst_JES_MJB_Stat1: 3.88939362e-02 + syst_JES_MJB_Stat10: 2.39466422e-03 + syst_JES_MJB_Stat11: 2.53572238e-03 + syst_JES_MJB_Stat12: 4.26402424e-03 + syst_JES_MJB_Stat13: 4.14081731e-03 + syst_JES_MJB_Stat14: 4.14081731e-03 + syst_JES_MJB_Stat15: 5.29773223e-03 + syst_JES_MJB_Stat16: 5.59651166e-03 + syst_JES_MJB_Stat2: 1.48371788e-02 + syst_JES_MJB_Stat3: 1.39802957e-02 + syst_JES_MJB_Stat4: 2.28587789e-02 + syst_JES_MJB_Stat5: 1.49128847e-02 + syst_JES_MJB_Stat6: 1.47242447e-02 + syst_JES_MJB_Stat7: 5.08624628e-02 + syst_JES_MJB_Stat8: 4.95821984e-02 + syst_JES_MJB_Stat9: 3.03492067e-02 + syst_JES_MJB_Threshold: 1.63308803e-02 + syst_JES_Pileup_MuOffset: 2.14143270e-01 + syst_JES_Pileup_NPVOffset: 1.25220348e+00 + syst_JES_Pileup_Pt_term: 4.36982391e+00 + syst_JES_Pileup_Rho_topology: 8.49190155e+00 + syst_JES_PunchThrough_MC15: 8.03803608e-02 + syst_JES_SingleParticle_HighPt: 4.14081731e-03 + syst_JES_Zjet_MC: 1.62314533e+01 + syst_JES_Zjet_MuScale: 1.05625479e+00 + syst_JES_Zjet_MuSmearID: 1.66859844e-01 + syst_JES_Zjet_MuSmearMS: 7.22212773e-01 + syst_JES_Zjet_OOC: 8.76169350e+00 + syst_JES_Zjet_Stat1: 2.22149156e-01 + syst_JES_Zjet_Stat10: 1.60200250e+00 + syst_JES_Zjet_Stat11: 5.90001542e-01 + syst_JES_Zjet_Stat12: 1.15535070e-01 + syst_JES_Zjet_Stat13: 6.42495329e-02 + syst_JES_Zjet_Stat2: 2.17718436e-02 + syst_JES_Zjet_Stat3: 5.44393929e-02 + syst_JES_Zjet_Stat4: 1.08219155e-01 + syst_JES_Zjet_Stat5: 2.06546266e-01 + syst_JES_Zjet_Stat6: 3.45954072e-01 + syst_JES_Zjet_Stat7: 5.83603855e-01 + syst_JES_Zjet_Stat8: 8.81647961e-01 + syst_JES_Zjet_Stat9: 1.54428560e+00 + syst_JES_Zjet_Veto: 1.34630328e+00 + syst_JES_Zjet_dPhi: 1.93302535e+00 syst_PRW: 0.0 syst_Unfolding_bias: 0.0 - syst_cleaning: 8.87935846500185 + syst_cleaning: 8.87935847e+00 syst_lumi: 17.87 - stat: 2.4529 syst_JER_CROSS_CALIB_FORWARD: 0.1107 syst_JER_NOISE_FORWARD: 0.08973 - syst_JER_NP0: 2.0383451008109494 - syst_JER_NP1: 0.2830435081396498 + syst_JER_NP0: 2.03834510e+00 + syst_JER_NP1: 2.83043508e-01 syst_JER_NP2: 0.0 - syst_JER_NP3: 0.5084084258743162 - syst_JER_NP4: 0.3018960541312191 - syst_JER_NP5: 0.05235989591280716 + syst_JER_NP3: 5.08408426e-01 + syst_JER_NP4: 3.01896054e-01 + syst_JER_NP5: 5.23598959e-02 syst_JER_NP6: 0.0 syst_JER_NP7: 0.0 - syst_JER_NP8: 0.17453125794538923 - syst_JES_EtaIntercalibration_Modelling: 5.478213098264798 - syst_JES_EtaIntercalibration_NonClosure: 1.929625870473341 - syst_JES_EtaIntercalibration_Stat0: 0.00020194969670687797 - syst_JES_EtaIntercalibration_Stat1: 0.0001240157573657477 - syst_JES_EtaIntercalibration_Stat10: 0.00018253328758064926 - syst_JES_EtaIntercalibration_Stat100: 0.06018749537902371 - syst_JES_EtaIntercalibration_Stat101: 0.07288312574766535 - syst_JES_EtaIntercalibration_Stat102: 0.0452132027177903 - syst_JES_EtaIntercalibration_Stat103: 0.048088736727013325 - syst_JES_EtaIntercalibration_Stat104: 0.040645519740802924 - syst_JES_EtaIntercalibration_Stat105: 0.015403984289786845 - syst_JES_EtaIntercalibration_Stat106: 0.020499082906315587 - syst_JES_EtaIntercalibration_Stat107: 6.84819333839225e-05 - syst_JES_EtaIntercalibration_Stat108: 0.00403331106753496 - syst_JES_EtaIntercalibration_Stat109: 0.06742021562558222 - syst_JES_EtaIntercalibration_Stat11: 0.00034496156307623605 - syst_JES_EtaIntercalibration_Stat110: 0.0762018272418713 - syst_JES_EtaIntercalibration_Stat111: 0.11100452963730806 - syst_JES_EtaIntercalibration_Stat112: 0.15631835041030853 - syst_JES_EtaIntercalibration_Stat113: 0.19372150112984363 - syst_JES_EtaIntercalibration_Stat114: 0.21134393769398732 - syst_JES_EtaIntercalibration_Stat115: 0.2803892428393073 - syst_JES_EtaIntercalibration_Stat116: 0.21631442392961225 - syst_JES_EtaIntercalibration_Stat117: 0.1633187009347062 - syst_JES_EtaIntercalibration_Stat118: 0.22324522391307727 - syst_JES_EtaIntercalibration_Stat119: 0.29497601173654786 - syst_JES_EtaIntercalibration_Stat12: 0.0005346876003798854 - syst_JES_EtaIntercalibration_Stat120: 0.2772199307409191 - syst_JES_EtaIntercalibration_Stat121: 0.2160801413827749 - syst_JES_EtaIntercalibration_Stat122: 0.11422215897101577 - syst_JES_EtaIntercalibration_Stat123: 0.1064951205454973 - syst_JES_EtaIntercalibration_Stat124: 0.1028053398418584 - syst_JES_EtaIntercalibration_Stat125: 0.09282506167517478 - syst_JES_EtaIntercalibration_Stat126: 0.03307955977639364 - syst_JES_EtaIntercalibration_Stat127: 0.0023677134539466555 - syst_JES_EtaIntercalibration_Stat128: 0.023467770984906086 - syst_JES_EtaIntercalibration_Stat129: 0.18615342784918035 - syst_JES_EtaIntercalibration_Stat13: 0.0013919182734629214 - syst_JES_EtaIntercalibration_Stat130: 0.3243705288709195 - syst_JES_EtaIntercalibration_Stat131: 0.21578126117668325 - syst_JES_EtaIntercalibration_Stat132: 0.35614157297344545 - syst_JES_EtaIntercalibration_Stat133: 0.1683741330341451 - syst_JES_EtaIntercalibration_Stat134: 0.47343060737556886 - syst_JES_EtaIntercalibration_Stat135: 0.39574982943773956 - syst_JES_EtaIntercalibration_Stat136: 0.29934429592026635 - syst_JES_EtaIntercalibration_Stat137: 0.3728302126974154 - syst_JES_EtaIntercalibration_Stat138: 0.3073617860112086 - syst_JES_EtaIntercalibration_Stat139: 0.3573271715109278 - syst_JES_EtaIntercalibration_Stat14: 0.0013798369034056161 - syst_JES_EtaIntercalibration_Stat140: 0.3264058018785818 - syst_JES_EtaIntercalibration_Stat141: 0.2875610326522006 - syst_JES_EtaIntercalibration_Stat142: 0.1658169095719734 - syst_JES_EtaIntercalibration_Stat143: 0.1756394522879185 - syst_JES_EtaIntercalibration_Stat144: 0.21403558115416232 - syst_JES_EtaIntercalibration_Stat145: 0.061592954751335 - syst_JES_EtaIntercalibration_Stat146: 0.010343807422801336 - syst_JES_EtaIntercalibration_Stat147: 0.031135010839888913 - syst_JES_EtaIntercalibration_Stat148: 0.03747466744348774 - syst_JES_EtaIntercalibration_Stat149: 0.0045864705384423875 - syst_JES_EtaIntercalibration_Stat15: 0.0003375536873965385 - syst_JES_EtaIntercalibration_Stat150: 0.04001437925296355 - syst_JES_EtaIntercalibration_Stat151: 0.06504284799268863 - syst_JES_EtaIntercalibration_Stat152: 0.04486722718198663 - syst_JES_EtaIntercalibration_Stat153: 0.020514867779247322 - syst_JES_EtaIntercalibration_Stat154: 0.06653593991220083 - syst_JES_EtaIntercalibration_Stat155: 0.06655291334720066 - syst_JES_EtaIntercalibration_Stat156: 0.03542043901478354 - syst_JES_EtaIntercalibration_Stat157: 0.07402581357202365 - syst_JES_EtaIntercalibration_Stat158: 0.07907964276601154 - syst_JES_EtaIntercalibration_Stat159: 0.04127947916338093 - syst_JES_EtaIntercalibration_Stat16: 0.00012648655066844065 - syst_JES_EtaIntercalibration_Stat160: 0.02176715185778792 - syst_JES_EtaIntercalibration_Stat161: 0.03955735769739935 - syst_JES_EtaIntercalibration_Stat162: 0.0077234058549321355 - syst_JES_EtaIntercalibration_Stat163: 0.01800164927860778 - syst_JES_EtaIntercalibration_Stat164: 0.0077384314302059954 - syst_JES_EtaIntercalibration_Stat165: 0.0009586901219893735 - syst_JES_EtaIntercalibration_Stat166: 0.00034718943775932827 - syst_JES_EtaIntercalibration_Stat167: 0.0008353682188491868 - syst_JES_EtaIntercalibration_Stat168: 0.013127409569294318 - syst_JES_EtaIntercalibration_Stat169: 0.008952104598919743 - syst_JES_EtaIntercalibration_Stat17: 0.00020757342676749356 - syst_JES_EtaIntercalibration_Stat170: 0.028815438136526747 - syst_JES_EtaIntercalibration_Stat171: 0.046666987335803024 - syst_JES_EtaIntercalibration_Stat172: 0.00985545629423113 - syst_JES_EtaIntercalibration_Stat173: 0.021374477186588678 - syst_JES_EtaIntercalibration_Stat174: 0.01994771746340919 - syst_JES_EtaIntercalibration_Stat175: 0.030664681231018856 - syst_JES_EtaIntercalibration_Stat176: 0.01994186300223728 - syst_JES_EtaIntercalibration_Stat177: 0.016596921905883633 - syst_JES_EtaIntercalibration_Stat178: 0.010588026586668547 - syst_JES_EtaIntercalibration_Stat179: 0.014363718390444726 - syst_JES_EtaIntercalibration_Stat18: 0.00020194969670687797 - syst_JES_EtaIntercalibration_Stat180: 0.008794787888289291 - syst_JES_EtaIntercalibration_Stat181: 0.009240369877337161 - syst_JES_EtaIntercalibration_Stat182: 0.005206781251406669 - syst_JES_EtaIntercalibration_Stat183: 0.003685417930167486 - syst_JES_EtaIntercalibration_Stat184: 0.006543918913770251 - syst_JES_EtaIntercalibration_Stat185: 0.006468769357458959 - syst_JES_EtaIntercalibration_Stat186: 0.010671869986089598 - syst_JES_EtaIntercalibration_Stat187: 0.013890075305771384 - syst_JES_EtaIntercalibration_Stat188: 0.021164551852025475 - syst_JES_EtaIntercalibration_Stat189: 0.025859123631708787 - syst_JES_EtaIntercalibration_Stat19: 0.00221876925343759 - syst_JES_EtaIntercalibration_Stat190: 0.01348245719444345 - syst_JES_EtaIntercalibration_Stat191: 0.010557070332246538 - syst_JES_EtaIntercalibration_Stat192: 0.023030657828208033 - syst_JES_EtaIntercalibration_Stat193: 0.00874197080797574 - syst_JES_EtaIntercalibration_Stat194: 0.007225249943773571 - syst_JES_EtaIntercalibration_Stat195: 0.0035971744032643176 - syst_JES_EtaIntercalibration_Stat196: 0.004584451630238889 - syst_JES_EtaIntercalibration_Stat197: 0.00588619733614156 - syst_JES_EtaIntercalibration_Stat198: 0.0012623286576799245 - syst_JES_EtaIntercalibration_Stat199: 0.0025521913623394307 - syst_JES_EtaIntercalibration_Stat2: 0.0002646222354602878 - syst_JES_EtaIntercalibration_Stat20: 0.00020194969670687797 - syst_JES_EtaIntercalibration_Stat200: 0.0010136473092254524 - syst_JES_EtaIntercalibration_Stat201: 0.0014990060039906444 - syst_JES_EtaIntercalibration_Stat202: 0.0027456883927350537 - syst_JES_EtaIntercalibration_Stat203: 0.0027416232418040233 - syst_JES_EtaIntercalibration_Stat204: 0.007377608199816523 - syst_JES_EtaIntercalibration_Stat205: 0.0022876092913782283 - syst_JES_EtaIntercalibration_Stat206: 0.002332002424419838 - syst_JES_EtaIntercalibration_Stat207: 0.002501428185557203 - syst_JES_EtaIntercalibration_Stat208: 0.0024170612569812955 - syst_JES_EtaIntercalibration_Stat209: 0.0022392168657535162 - syst_JES_EtaIntercalibration_Stat21: 0.00020194969670687797 - syst_JES_EtaIntercalibration_Stat210: 0.0014653833653689398 - syst_JES_EtaIntercalibration_Stat211: 0.0020206963323320007 - syst_JES_EtaIntercalibration_Stat212: 0.0066322184071395 - syst_JES_EtaIntercalibration_Stat213: 0.0017830418356000514 - syst_JES_EtaIntercalibration_Stat214: 0.0015094179234062383 - syst_JES_EtaIntercalibration_Stat215: 0.0013605423617370003 - syst_JES_EtaIntercalibration_Stat216: 0.0016529361209677764 - syst_JES_EtaIntercalibration_Stat217: 0.001535588098254216 - syst_JES_EtaIntercalibration_Stat218: 0.0020480404067058835 - syst_JES_EtaIntercalibration_Stat219: 0.0013620418963820459 - syst_JES_EtaIntercalibration_Stat22: 0.00020194969670687797 - syst_JES_EtaIntercalibration_Stat220: 0.0012162109520967158 - syst_JES_EtaIntercalibration_Stat221: 0.0014652195628983393 - syst_JES_EtaIntercalibration_Stat222: 0.00042781654946951267 - syst_JES_EtaIntercalibration_Stat223: 0.0003104701072567213 - syst_JES_EtaIntercalibration_Stat224: 0.002588022157459244 - syst_JES_EtaIntercalibration_Stat225: 0.001689480757511017 - syst_JES_EtaIntercalibration_Stat226: 0.0020882870653959433 - syst_JES_EtaIntercalibration_Stat227: 0.0018478272727719982 - syst_JES_EtaIntercalibration_Stat228: 0.0013304020144302249 - syst_JES_EtaIntercalibration_Stat229: 0.0006851969990448002 - syst_JES_EtaIntercalibration_Stat23: 0.0015347130244772148 - syst_JES_EtaIntercalibration_Stat230: 0.0066985089385623725 - syst_JES_EtaIntercalibration_Stat231: 0.0016379318323727638 - syst_JES_EtaIntercalibration_Stat232: 0.0012006305135219577 - syst_JES_EtaIntercalibration_Stat233: 0.002218194028934349 - syst_JES_EtaIntercalibration_Stat234: 0.007113787598740913 - syst_JES_EtaIntercalibration_Stat235: 0.0007956334834583069 - syst_JES_EtaIntercalibration_Stat236: 0.00043639020096697867 - syst_JES_EtaIntercalibration_Stat237: 0.0011115740596109643 - syst_JES_EtaIntercalibration_Stat238: 0.0017304085297986716 - syst_JES_EtaIntercalibration_Stat239: 0.00022689865579152295 - syst_JES_EtaIntercalibration_Stat24: 0.00507902835195867 - syst_JES_EtaIntercalibration_Stat240: 0.002218901079363386 - syst_JES_EtaIntercalibration_Stat241: 0.0013587938585377843 - syst_JES_EtaIntercalibration_Stat242: 0.0010419260722335341 - syst_JES_EtaIntercalibration_Stat243: 0.0009332289751181111 - syst_JES_EtaIntercalibration_Stat244: 0.001777842701140908 - syst_JES_EtaIntercalibration_Stat245: 0.004344882161808303 - syst_JES_EtaIntercalibration_Stat25: 0.002662038707457125 - syst_JES_EtaIntercalibration_Stat26: 0.00024760344807776813 - syst_JES_EtaIntercalibration_Stat27: 0.004945938569290969 - syst_JES_EtaIntercalibration_Stat28: 0.0005885089039258455 - syst_JES_EtaIntercalibration_Stat29: 0.006668811063450516 - syst_JES_EtaIntercalibration_Stat3: 0.0005125881094992352 - syst_JES_EtaIntercalibration_Stat30: 0.009213488305196898 - syst_JES_EtaIntercalibration_Stat31: 0.0009191379915442511 - syst_JES_EtaIntercalibration_Stat32: 0.0016324590370052168 - syst_JES_EtaIntercalibration_Stat33: 0.004748752501447091 - syst_JES_EtaIntercalibration_Stat34: 0.007775311890850425 - syst_JES_EtaIntercalibration_Stat35: 0.005344862221563808 - syst_JES_EtaIntercalibration_Stat36: 0.00960277620014129 - syst_JES_EtaIntercalibration_Stat37: 0.0012598100928314553 - syst_JES_EtaIntercalibration_Stat38: 0.0002997491075883296 - syst_JES_EtaIntercalibration_Stat39: 0.00035844791462637916 - syst_JES_EtaIntercalibration_Stat4: 0.0001240157573657477 - syst_JES_EtaIntercalibration_Stat40: 0.002828027713796313 - syst_JES_EtaIntercalibration_Stat41: 0.0002356780330636481 - syst_JES_EtaIntercalibration_Stat42: 0.0012392823528155318 - syst_JES_EtaIntercalibration_Stat43: 0.00020194969670687797 - syst_JES_EtaIntercalibration_Stat44: 0.00020194969670687797 - syst_JES_EtaIntercalibration_Stat45: 0.0002646222354602878 - syst_JES_EtaIntercalibration_Stat46: 0.0012600427403465326 - syst_JES_EtaIntercalibration_Stat47: 0.0005055962494916274 - syst_JES_EtaIntercalibration_Stat48: 0.00725526982820074 - syst_JES_EtaIntercalibration_Stat49: 0.010397674872297171 - syst_JES_EtaIntercalibration_Stat5: 0.00012366842766041783 - syst_JES_EtaIntercalibration_Stat50: 0.00853556235698621 - syst_JES_EtaIntercalibration_Stat51: 0.019533314551491255 - syst_JES_EtaIntercalibration_Stat52: 0.006072768982926981 - syst_JES_EtaIntercalibration_Stat53: 0.009830829606396401 - syst_JES_EtaIntercalibration_Stat54: 0.0005153369438289865 - syst_JES_EtaIntercalibration_Stat55: 0.01256340148009288 - syst_JES_EtaIntercalibration_Stat56: 0.020621247216160328 - syst_JES_EtaIntercalibration_Stat57: 0.020062648597580533 - syst_JES_EtaIntercalibration_Stat58: 0.028887610545007002 - syst_JES_EtaIntercalibration_Stat59: 0.007671403774407916 - syst_JES_EtaIntercalibration_Stat6: 0.0002913900310421583 - syst_JES_EtaIntercalibration_Stat60: 0.003241141523734346 - syst_JES_EtaIntercalibration_Stat61: 0.006014057940151558 - syst_JES_EtaIntercalibration_Stat62: 0.004229508334310265 - syst_JES_EtaIntercalibration_Stat63: 0.001801096554012305 - syst_JES_EtaIntercalibration_Stat64: 0.0001676088685004466 - syst_JES_EtaIntercalibration_Stat65: 0.00020194969670687797 - syst_JES_EtaIntercalibration_Stat66: 0.00020194969670687797 - syst_JES_EtaIntercalibration_Stat67: 0.0018698635324536387 - syst_JES_EtaIntercalibration_Stat68: 0.0069426224151973 - syst_JES_EtaIntercalibration_Stat69: 0.016573281962242725 - syst_JES_EtaIntercalibration_Stat7: 0.00036505744041177954 - syst_JES_EtaIntercalibration_Stat70: 0.027637366349744685 - syst_JES_EtaIntercalibration_Stat71: 0.020777002159840095 - syst_JES_EtaIntercalibration_Stat72: 0.04118538909613457 - syst_JES_EtaIntercalibration_Stat73: 0.048440149669463244 - syst_JES_EtaIntercalibration_Stat74: 0.051860464139361497 - syst_JES_EtaIntercalibration_Stat75: 0.03386197092609938 - syst_JES_EtaIntercalibration_Stat76: 0.019612803649657028 - syst_JES_EtaIntercalibration_Stat77: 0.04788445363580961 - syst_JES_EtaIntercalibration_Stat78: 0.06829129721274886 - syst_JES_EtaIntercalibration_Stat79: 0.05066943161315311 - syst_JES_EtaIntercalibration_Stat8: 0.0016169980728188886 - syst_JES_EtaIntercalibration_Stat80: 0.0546505462003812 - syst_JES_EtaIntercalibration_Stat81: 0.019566956840551368 - syst_JES_EtaIntercalibration_Stat82: 0.030347824880870785 - syst_JES_EtaIntercalibration_Stat83: 0.03147250546111638 - syst_JES_EtaIntercalibration_Stat84: 0.01078869310899147 - syst_JES_EtaIntercalibration_Stat85: 0.006304596603025049 - syst_JES_EtaIntercalibration_Stat86: 0.0002485516382464618 - syst_JES_EtaIntercalibration_Stat87: 0.00012366842766041783 - syst_JES_EtaIntercalibration_Stat88: 0.0005854718168281032 - syst_JES_EtaIntercalibration_Stat89: 0.02580145490083844 - syst_JES_EtaIntercalibration_Stat9: 0.00025050775452069345 - syst_JES_EtaIntercalibration_Stat90: 0.037371653361873085 - syst_JES_EtaIntercalibration_Stat91: 0.03653919539344018 - syst_JES_EtaIntercalibration_Stat92: 0.03873672159592239 - syst_JES_EtaIntercalibration_Stat93: 0.06250246817526489 - syst_JES_EtaIntercalibration_Stat94: 0.08451800636550769 - syst_JES_EtaIntercalibration_Stat95: 0.0996503707971024 - syst_JES_EtaIntercalibration_Stat96: 0.07265253660403057 - syst_JES_EtaIntercalibration_Stat97: 0.05021126507816748 - syst_JES_EtaIntercalibration_Stat98: 0.045021002876435345 - syst_JES_EtaIntercalibration_Stat99: 0.07935842535610192 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.03051914675658545 - syst_JES_Flavour_Comp: 0.553480406157255 - syst_JES_Flavour_Response: 10.438514453695028 - syst_JES_Gjet_Generator: 8.043615853582267 - syst_JES_Gjet_OOC: 4.438926305988869 - syst_JES_Gjet_Purity: 1.655794975230931 - syst_JES_Gjet_Stat1: 0.006864117350395461 - syst_JES_Gjet_Stat10: 0.21676560497459002 - syst_JES_Gjet_Stat11: 0.12585381629096515 - syst_JES_Gjet_Stat12: 0.05436109730312662 - syst_JES_Gjet_Stat13: 0.021352547271929877 - syst_JES_Gjet_Stat14: 0.0036101735069107134 - syst_JES_Gjet_Stat15: 0.0011906967107853284 - syst_JES_Gjet_Stat2: 0.008064047184881795 - syst_JES_Gjet_Stat3: 0.04966048215633836 - syst_JES_Gjet_Stat4: 0.05381881896697474 - syst_JES_Gjet_Stat5: 0.06657060161963388 - syst_JES_Gjet_Stat6: 0.23807277773823698 - syst_JES_Gjet_Stat7: 0.4362920401520064 - syst_JES_Gjet_Stat8: 0.2745183190608598 - syst_JES_Gjet_Stat9: 0.37500355664980034 - syst_JES_Gjet_Veto: 1.7376969672529212 - syst_JES_Gjet_dPhi: 0.6820588739251181 - syst_JES_LArESZee: 6.587428481585208 - syst_JES_LArEsmear: 0.5849256704915592 - syst_JES_LAr_JVT: 0.9634278216348124 - syst_JES_MJB_Alpha: 0.0060113336914531705 - syst_JES_MJB_Asym: 0.016996919036990205 - syst_JES_MJB_Beta: 0.004367164213479957 - syst_JES_MJB_Fragmentation: 0.04455767358155046 - syst_JES_MJB_Stat1: 0.014952730277444317 - syst_JES_MJB_Stat10: 0.0038751091274956376 - syst_JES_MJB_Stat11: 0.0013587938585377843 - syst_JES_MJB_Stat12: 0.0021501630170756825 - syst_JES_MJB_Stat13: 0.002218901079363386 - syst_JES_MJB_Stat14: 0.002218901079363386 - syst_JES_MJB_Stat15: 0.001657977553376402 - syst_JES_MJB_Stat16: 0.001545760356588304 - syst_JES_MJB_Stat2: 0.01297128423672845 - syst_JES_MJB_Stat3: 0.004538651111013051 - syst_JES_MJB_Stat4: 0.00916061825151556 - syst_JES_MJB_Stat5: 0.004740827643987915 - syst_JES_MJB_Stat6: 0.004633764857003428 - syst_JES_MJB_Stat7: 0.024937466751857536 - syst_JES_MJB_Stat8: 0.024210993535995172 - syst_JES_MJB_Stat9: 0.014208238032915974 - syst_JES_MJB_Threshold: 0.0109219644180889 - syst_JES_Pileup_MuOffset: 0.12157221177144059 - syst_JES_Pileup_NPVOffset: 0.4010987658918935 - syst_JES_Pileup_Pt_term: 1.928430125775886 - syst_JES_Pileup_Rho_topology: 3.2791613257050956 - syst_JES_PunchThrough_MC15: 0.026353238069542803 - syst_JES_SingleParticle_HighPt: 0.002218901079363386 - syst_JES_Zjet_MC: 7.089410694832117 - syst_JES_Zjet_MuScale: 0.48902006860659614 - syst_JES_Zjet_MuSmearID: 0.08830707941609213 - syst_JES_Zjet_MuSmearMS: 0.5179734645713041 - syst_JES_Zjet_OOC: 3.0460397239694696 - syst_JES_Zjet_Stat1: 0.05995679194219784 - syst_JES_Zjet_Stat10: 0.9465661783520474 - syst_JES_Zjet_Stat11: 0.6942549459672578 - syst_JES_Zjet_Stat12: 0.18984026232598816 - syst_JES_Zjet_Stat13: 0.05441998438074014 - syst_JES_Zjet_Stat2: 0.009671680431904013 - syst_JES_Zjet_Stat3: 0.02207222351168998 - syst_JES_Zjet_Stat4: 0.027356481407520235 - syst_JES_Zjet_Stat5: 0.05707288498052294 - syst_JES_Zjet_Stat6: 0.10070268069917503 - syst_JES_Zjet_Stat7: 0.16589909583840415 - syst_JES_Zjet_Stat8: 0.2702502312672461 - syst_JES_Zjet_Stat9: 0.6033743178989307 - syst_JES_Zjet_Veto: 0.5285747321807958 - syst_JES_Zjet_dPhi: 0.6558051616143319 + syst_JER_NP8: 1.74531258e-01 + syst_JES_EtaIntercalibration_Modelling: 5.47821310e+00 + syst_JES_EtaIntercalibration_NonClosure: 1.92962587e+00 + syst_JES_EtaIntercalibration_Stat0: 2.01949697e-04 + syst_JES_EtaIntercalibration_Stat1: 1.24015757e-04 + syst_JES_EtaIntercalibration_Stat10: 1.82533288e-04 + syst_JES_EtaIntercalibration_Stat100: 6.01874954e-02 + syst_JES_EtaIntercalibration_Stat101: 7.28831257e-02 + syst_JES_EtaIntercalibration_Stat102: 4.52132027e-02 + syst_JES_EtaIntercalibration_Stat103: 4.80887367e-02 + syst_JES_EtaIntercalibration_Stat104: 4.06455197e-02 + syst_JES_EtaIntercalibration_Stat105: 1.54039843e-02 + syst_JES_EtaIntercalibration_Stat106: 2.04990829e-02 + syst_JES_EtaIntercalibration_Stat107: 6.84819334e-05 + syst_JES_EtaIntercalibration_Stat108: 4.03331107e-03 + syst_JES_EtaIntercalibration_Stat109: 6.74202156e-02 + syst_JES_EtaIntercalibration_Stat11: 3.44961563e-04 + syst_JES_EtaIntercalibration_Stat110: 7.62018272e-02 + syst_JES_EtaIntercalibration_Stat111: 1.11004530e-01 + syst_JES_EtaIntercalibration_Stat112: 1.56318350e-01 + syst_JES_EtaIntercalibration_Stat113: 1.93721501e-01 + syst_JES_EtaIntercalibration_Stat114: 2.11343938e-01 + syst_JES_EtaIntercalibration_Stat115: 2.80389243e-01 + syst_JES_EtaIntercalibration_Stat116: 2.16314424e-01 + syst_JES_EtaIntercalibration_Stat117: 1.63318701e-01 + syst_JES_EtaIntercalibration_Stat118: 2.23245224e-01 + syst_JES_EtaIntercalibration_Stat119: 2.94976012e-01 + syst_JES_EtaIntercalibration_Stat12: 5.34687600e-04 + syst_JES_EtaIntercalibration_Stat120: 2.77219931e-01 + syst_JES_EtaIntercalibration_Stat121: 2.16080141e-01 + syst_JES_EtaIntercalibration_Stat122: 1.14222159e-01 + syst_JES_EtaIntercalibration_Stat123: 1.06495121e-01 + syst_JES_EtaIntercalibration_Stat124: 1.02805340e-01 + syst_JES_EtaIntercalibration_Stat125: 9.28250617e-02 + syst_JES_EtaIntercalibration_Stat126: 3.30795598e-02 + syst_JES_EtaIntercalibration_Stat127: 2.36771345e-03 + syst_JES_EtaIntercalibration_Stat128: 2.34677710e-02 + syst_JES_EtaIntercalibration_Stat129: 1.86153428e-01 + syst_JES_EtaIntercalibration_Stat13: 1.39191827e-03 + syst_JES_EtaIntercalibration_Stat130: 3.24370529e-01 + syst_JES_EtaIntercalibration_Stat131: 2.15781261e-01 + syst_JES_EtaIntercalibration_Stat132: 3.56141573e-01 + syst_JES_EtaIntercalibration_Stat133: 1.68374133e-01 + syst_JES_EtaIntercalibration_Stat134: 4.73430607e-01 + syst_JES_EtaIntercalibration_Stat135: 3.95749829e-01 + syst_JES_EtaIntercalibration_Stat136: 2.99344296e-01 + syst_JES_EtaIntercalibration_Stat137: 3.72830213e-01 + syst_JES_EtaIntercalibration_Stat138: 3.07361786e-01 + syst_JES_EtaIntercalibration_Stat139: 3.57327172e-01 + syst_JES_EtaIntercalibration_Stat14: 1.37983690e-03 + syst_JES_EtaIntercalibration_Stat140: 3.26405802e-01 + syst_JES_EtaIntercalibration_Stat141: 2.87561033e-01 + syst_JES_EtaIntercalibration_Stat142: 1.65816910e-01 + syst_JES_EtaIntercalibration_Stat143: 1.75639452e-01 + syst_JES_EtaIntercalibration_Stat144: 2.14035581e-01 + syst_JES_EtaIntercalibration_Stat145: 6.15929548e-02 + syst_JES_EtaIntercalibration_Stat146: 1.03438074e-02 + syst_JES_EtaIntercalibration_Stat147: 3.11350108e-02 + syst_JES_EtaIntercalibration_Stat148: 3.74746674e-02 + syst_JES_EtaIntercalibration_Stat149: 4.58647054e-03 + syst_JES_EtaIntercalibration_Stat15: 3.37553687e-04 + syst_JES_EtaIntercalibration_Stat150: 4.00143793e-02 + syst_JES_EtaIntercalibration_Stat151: 6.50428480e-02 + syst_JES_EtaIntercalibration_Stat152: 4.48672272e-02 + syst_JES_EtaIntercalibration_Stat153: 2.05148678e-02 + syst_JES_EtaIntercalibration_Stat154: 6.65359399e-02 + syst_JES_EtaIntercalibration_Stat155: 6.65529133e-02 + syst_JES_EtaIntercalibration_Stat156: 3.54204390e-02 + syst_JES_EtaIntercalibration_Stat157: 7.40258136e-02 + syst_JES_EtaIntercalibration_Stat158: 7.90796428e-02 + syst_JES_EtaIntercalibration_Stat159: 4.12794792e-02 + syst_JES_EtaIntercalibration_Stat16: 1.26486551e-04 + syst_JES_EtaIntercalibration_Stat160: 2.17671519e-02 + syst_JES_EtaIntercalibration_Stat161: 3.95573577e-02 + syst_JES_EtaIntercalibration_Stat162: 7.72340585e-03 + syst_JES_EtaIntercalibration_Stat163: 1.80016493e-02 + syst_JES_EtaIntercalibration_Stat164: 7.73843143e-03 + syst_JES_EtaIntercalibration_Stat165: 9.58690122e-04 + syst_JES_EtaIntercalibration_Stat166: 3.47189438e-04 + syst_JES_EtaIntercalibration_Stat167: 8.35368219e-04 + syst_JES_EtaIntercalibration_Stat168: 1.31274096e-02 + syst_JES_EtaIntercalibration_Stat169: 8.95210460e-03 + syst_JES_EtaIntercalibration_Stat17: 2.07573427e-04 + syst_JES_EtaIntercalibration_Stat170: 2.88154381e-02 + syst_JES_EtaIntercalibration_Stat171: 4.66669873e-02 + syst_JES_EtaIntercalibration_Stat172: 9.85545629e-03 + syst_JES_EtaIntercalibration_Stat173: 2.13744772e-02 + syst_JES_EtaIntercalibration_Stat174: 1.99477175e-02 + syst_JES_EtaIntercalibration_Stat175: 3.06646812e-02 + syst_JES_EtaIntercalibration_Stat176: 1.99418630e-02 + syst_JES_EtaIntercalibration_Stat177: 1.65969219e-02 + syst_JES_EtaIntercalibration_Stat178: 1.05880266e-02 + syst_JES_EtaIntercalibration_Stat179: 1.43637184e-02 + syst_JES_EtaIntercalibration_Stat18: 2.01949697e-04 + syst_JES_EtaIntercalibration_Stat180: 8.79478789e-03 + syst_JES_EtaIntercalibration_Stat181: 9.24036988e-03 + syst_JES_EtaIntercalibration_Stat182: 5.20678125e-03 + syst_JES_EtaIntercalibration_Stat183: 3.68541793e-03 + syst_JES_EtaIntercalibration_Stat184: 6.54391891e-03 + syst_JES_EtaIntercalibration_Stat185: 6.46876936e-03 + syst_JES_EtaIntercalibration_Stat186: 1.06718700e-02 + syst_JES_EtaIntercalibration_Stat187: 1.38900753e-02 + syst_JES_EtaIntercalibration_Stat188: 2.11645519e-02 + syst_JES_EtaIntercalibration_Stat189: 2.58591236e-02 + syst_JES_EtaIntercalibration_Stat19: 2.21876925e-03 + syst_JES_EtaIntercalibration_Stat190: 1.34824572e-02 + syst_JES_EtaIntercalibration_Stat191: 1.05570703e-02 + syst_JES_EtaIntercalibration_Stat192: 2.30306578e-02 + syst_JES_EtaIntercalibration_Stat193: 8.74197081e-03 + syst_JES_EtaIntercalibration_Stat194: 7.22524994e-03 + syst_JES_EtaIntercalibration_Stat195: 3.59717440e-03 + syst_JES_EtaIntercalibration_Stat196: 4.58445163e-03 + syst_JES_EtaIntercalibration_Stat197: 5.88619734e-03 + syst_JES_EtaIntercalibration_Stat198: 1.26232866e-03 + syst_JES_EtaIntercalibration_Stat199: 2.55219136e-03 + syst_JES_EtaIntercalibration_Stat2: 2.64622235e-04 + syst_JES_EtaIntercalibration_Stat20: 2.01949697e-04 + syst_JES_EtaIntercalibration_Stat200: 1.01364731e-03 + syst_JES_EtaIntercalibration_Stat201: 1.49900600e-03 + syst_JES_EtaIntercalibration_Stat202: 2.74568839e-03 + syst_JES_EtaIntercalibration_Stat203: 2.74162324e-03 + syst_JES_EtaIntercalibration_Stat204: 7.37760820e-03 + syst_JES_EtaIntercalibration_Stat205: 2.28760929e-03 + syst_JES_EtaIntercalibration_Stat206: 2.33200242e-03 + syst_JES_EtaIntercalibration_Stat207: 2.50142819e-03 + syst_JES_EtaIntercalibration_Stat208: 2.41706126e-03 + syst_JES_EtaIntercalibration_Stat209: 2.23921687e-03 + syst_JES_EtaIntercalibration_Stat21: 2.01949697e-04 + syst_JES_EtaIntercalibration_Stat210: 1.46538337e-03 + syst_JES_EtaIntercalibration_Stat211: 2.02069633e-03 + syst_JES_EtaIntercalibration_Stat212: 6.63221841e-03 + syst_JES_EtaIntercalibration_Stat213: 1.78304184e-03 + syst_JES_EtaIntercalibration_Stat214: 1.50941792e-03 + syst_JES_EtaIntercalibration_Stat215: 1.36054236e-03 + syst_JES_EtaIntercalibration_Stat216: 1.65293612e-03 + syst_JES_EtaIntercalibration_Stat217: 1.53558810e-03 + syst_JES_EtaIntercalibration_Stat218: 2.04804041e-03 + syst_JES_EtaIntercalibration_Stat219: 1.36204190e-03 + syst_JES_EtaIntercalibration_Stat22: 2.01949697e-04 + syst_JES_EtaIntercalibration_Stat220: 1.21621095e-03 + syst_JES_EtaIntercalibration_Stat221: 1.46521956e-03 + syst_JES_EtaIntercalibration_Stat222: 4.27816549e-04 + syst_JES_EtaIntercalibration_Stat223: 3.10470107e-04 + syst_JES_EtaIntercalibration_Stat224: 2.58802216e-03 + syst_JES_EtaIntercalibration_Stat225: 1.68948076e-03 + syst_JES_EtaIntercalibration_Stat226: 2.08828707e-03 + syst_JES_EtaIntercalibration_Stat227: 1.84782727e-03 + syst_JES_EtaIntercalibration_Stat228: 1.33040201e-03 + syst_JES_EtaIntercalibration_Stat229: 6.85196999e-04 + syst_JES_EtaIntercalibration_Stat23: 1.53471302e-03 + syst_JES_EtaIntercalibration_Stat230: 6.69850894e-03 + syst_JES_EtaIntercalibration_Stat231: 1.63793183e-03 + syst_JES_EtaIntercalibration_Stat232: 1.20063051e-03 + syst_JES_EtaIntercalibration_Stat233: 2.21819403e-03 + syst_JES_EtaIntercalibration_Stat234: 7.11378760e-03 + syst_JES_EtaIntercalibration_Stat235: 7.95633483e-04 + syst_JES_EtaIntercalibration_Stat236: 4.36390201e-04 + syst_JES_EtaIntercalibration_Stat237: 1.11157406e-03 + syst_JES_EtaIntercalibration_Stat238: 1.73040853e-03 + syst_JES_EtaIntercalibration_Stat239: 2.26898656e-04 + syst_JES_EtaIntercalibration_Stat24: 5.07902835e-03 + syst_JES_EtaIntercalibration_Stat240: 2.21890108e-03 + syst_JES_EtaIntercalibration_Stat241: 1.35879386e-03 + syst_JES_EtaIntercalibration_Stat242: 1.04192607e-03 + syst_JES_EtaIntercalibration_Stat243: 9.33228975e-04 + syst_JES_EtaIntercalibration_Stat244: 1.77784270e-03 + syst_JES_EtaIntercalibration_Stat245: 4.34488216e-03 + syst_JES_EtaIntercalibration_Stat25: 2.66203871e-03 + syst_JES_EtaIntercalibration_Stat26: 2.47603448e-04 + syst_JES_EtaIntercalibration_Stat27: 4.94593857e-03 + syst_JES_EtaIntercalibration_Stat28: 5.88508904e-04 + syst_JES_EtaIntercalibration_Stat29: 6.66881106e-03 + syst_JES_EtaIntercalibration_Stat3: 5.12588109e-04 + syst_JES_EtaIntercalibration_Stat30: 9.21348831e-03 + syst_JES_EtaIntercalibration_Stat31: 9.19137992e-04 + syst_JES_EtaIntercalibration_Stat32: 1.63245904e-03 + syst_JES_EtaIntercalibration_Stat33: 4.74875250e-03 + syst_JES_EtaIntercalibration_Stat34: 7.77531189e-03 + syst_JES_EtaIntercalibration_Stat35: 5.34486222e-03 + syst_JES_EtaIntercalibration_Stat36: 9.60277620e-03 + syst_JES_EtaIntercalibration_Stat37: 1.25981009e-03 + syst_JES_EtaIntercalibration_Stat38: 2.99749108e-04 + syst_JES_EtaIntercalibration_Stat39: 3.58447915e-04 + syst_JES_EtaIntercalibration_Stat4: 1.24015757e-04 + syst_JES_EtaIntercalibration_Stat40: 2.82802771e-03 + syst_JES_EtaIntercalibration_Stat41: 2.35678033e-04 + syst_JES_EtaIntercalibration_Stat42: 1.23928235e-03 + syst_JES_EtaIntercalibration_Stat43: 2.01949697e-04 + syst_JES_EtaIntercalibration_Stat44: 2.01949697e-04 + syst_JES_EtaIntercalibration_Stat45: 2.64622235e-04 + syst_JES_EtaIntercalibration_Stat46: 1.26004274e-03 + syst_JES_EtaIntercalibration_Stat47: 5.05596249e-04 + syst_JES_EtaIntercalibration_Stat48: 7.25526983e-03 + syst_JES_EtaIntercalibration_Stat49: 1.03976749e-02 + syst_JES_EtaIntercalibration_Stat5: 1.23668428e-04 + syst_JES_EtaIntercalibration_Stat50: 8.53556236e-03 + syst_JES_EtaIntercalibration_Stat51: 1.95333146e-02 + syst_JES_EtaIntercalibration_Stat52: 6.07276898e-03 + syst_JES_EtaIntercalibration_Stat53: 9.83082961e-03 + syst_JES_EtaIntercalibration_Stat54: 5.15336944e-04 + syst_JES_EtaIntercalibration_Stat55: 1.25634015e-02 + syst_JES_EtaIntercalibration_Stat56: 2.06212472e-02 + syst_JES_EtaIntercalibration_Stat57: 2.00626486e-02 + syst_JES_EtaIntercalibration_Stat58: 2.88876105e-02 + syst_JES_EtaIntercalibration_Stat59: 7.67140377e-03 + syst_JES_EtaIntercalibration_Stat6: 2.91390031e-04 + syst_JES_EtaIntercalibration_Stat60: 3.24114152e-03 + syst_JES_EtaIntercalibration_Stat61: 6.01405794e-03 + syst_JES_EtaIntercalibration_Stat62: 4.22950833e-03 + syst_JES_EtaIntercalibration_Stat63: 1.80109655e-03 + syst_JES_EtaIntercalibration_Stat64: 1.67608869e-04 + syst_JES_EtaIntercalibration_Stat65: 2.01949697e-04 + syst_JES_EtaIntercalibration_Stat66: 2.01949697e-04 + syst_JES_EtaIntercalibration_Stat67: 1.86986353e-03 + syst_JES_EtaIntercalibration_Stat68: 6.94262242e-03 + syst_JES_EtaIntercalibration_Stat69: 1.65732820e-02 + syst_JES_EtaIntercalibration_Stat7: 3.65057440e-04 + syst_JES_EtaIntercalibration_Stat70: 2.76373663e-02 + syst_JES_EtaIntercalibration_Stat71: 2.07770022e-02 + syst_JES_EtaIntercalibration_Stat72: 4.11853891e-02 + syst_JES_EtaIntercalibration_Stat73: 4.84401497e-02 + syst_JES_EtaIntercalibration_Stat74: 5.18604641e-02 + syst_JES_EtaIntercalibration_Stat75: 3.38619709e-02 + syst_JES_EtaIntercalibration_Stat76: 1.96128036e-02 + syst_JES_EtaIntercalibration_Stat77: 4.78844536e-02 + syst_JES_EtaIntercalibration_Stat78: 6.82912972e-02 + syst_JES_EtaIntercalibration_Stat79: 5.06694316e-02 + syst_JES_EtaIntercalibration_Stat8: 1.61699807e-03 + syst_JES_EtaIntercalibration_Stat80: 5.46505462e-02 + syst_JES_EtaIntercalibration_Stat81: 1.95669568e-02 + syst_JES_EtaIntercalibration_Stat82: 3.03478249e-02 + syst_JES_EtaIntercalibration_Stat83: 3.14725055e-02 + syst_JES_EtaIntercalibration_Stat84: 1.07886931e-02 + syst_JES_EtaIntercalibration_Stat85: 6.30459660e-03 + syst_JES_EtaIntercalibration_Stat86: 2.48551638e-04 + syst_JES_EtaIntercalibration_Stat87: 1.23668428e-04 + syst_JES_EtaIntercalibration_Stat88: 5.85471817e-04 + syst_JES_EtaIntercalibration_Stat89: 2.58014549e-02 + syst_JES_EtaIntercalibration_Stat9: 2.50507755e-04 + syst_JES_EtaIntercalibration_Stat90: 3.73716534e-02 + syst_JES_EtaIntercalibration_Stat91: 3.65391954e-02 + syst_JES_EtaIntercalibration_Stat92: 3.87367216e-02 + syst_JES_EtaIntercalibration_Stat93: 6.25024682e-02 + syst_JES_EtaIntercalibration_Stat94: 8.45180064e-02 + syst_JES_EtaIntercalibration_Stat95: 9.96503708e-02 + syst_JES_EtaIntercalibration_Stat96: 7.26525366e-02 + syst_JES_EtaIntercalibration_Stat97: 5.02112651e-02 + syst_JES_EtaIntercalibration_Stat98: 4.50210029e-02 + syst_JES_EtaIntercalibration_Stat99: 7.93584254e-02 + syst_JES_EtaIntercalibration_TotalStat_MJB: 3.05191468e-02 + syst_JES_Flavour_Comp: 5.53480406e-01 + syst_JES_Flavour_Response: 1.04385145e+01 + syst_JES_Gjet_Generator: 8.04361585e+00 + syst_JES_Gjet_OOC: 4.43892631e+00 + syst_JES_Gjet_Purity: 1.65579498e+00 + syst_JES_Gjet_Stat1: 6.86411735e-03 + syst_JES_Gjet_Stat10: 2.16765605e-01 + syst_JES_Gjet_Stat11: 1.25853816e-01 + syst_JES_Gjet_Stat12: 5.43610973e-02 + syst_JES_Gjet_Stat13: 2.13525473e-02 + syst_JES_Gjet_Stat14: 3.61017351e-03 + syst_JES_Gjet_Stat15: 1.19069671e-03 + syst_JES_Gjet_Stat2: 8.06404718e-03 + syst_JES_Gjet_Stat3: 4.96604822e-02 + syst_JES_Gjet_Stat4: 5.38188190e-02 + syst_JES_Gjet_Stat5: 6.65706016e-02 + syst_JES_Gjet_Stat6: 2.38072778e-01 + syst_JES_Gjet_Stat7: 4.36292040e-01 + syst_JES_Gjet_Stat8: 2.74518319e-01 + syst_JES_Gjet_Stat9: 3.75003557e-01 + syst_JES_Gjet_Veto: 1.73769697e+00 + syst_JES_Gjet_dPhi: 6.82058874e-01 + syst_JES_LArESZee: 6.58742848e+00 + syst_JES_LArEsmear: 5.84925670e-01 + syst_JES_LAr_JVT: 9.63427822e-01 + syst_JES_MJB_Alpha: 6.01133369e-03 + syst_JES_MJB_Asym: 1.69969190e-02 + syst_JES_MJB_Beta: 4.36716421e-03 + syst_JES_MJB_Fragmentation: 4.45576736e-02 + syst_JES_MJB_Stat1: 1.49527303e-02 + syst_JES_MJB_Stat10: 3.87510913e-03 + syst_JES_MJB_Stat11: 1.35879386e-03 + syst_JES_MJB_Stat12: 2.15016302e-03 + syst_JES_MJB_Stat13: 2.21890108e-03 + syst_JES_MJB_Stat14: 2.21890108e-03 + syst_JES_MJB_Stat15: 1.65797755e-03 + syst_JES_MJB_Stat16: 1.54576036e-03 + syst_JES_MJB_Stat2: 1.29712842e-02 + syst_JES_MJB_Stat3: 4.53865111e-03 + syst_JES_MJB_Stat4: 9.16061825e-03 + syst_JES_MJB_Stat5: 4.74082764e-03 + syst_JES_MJB_Stat6: 4.63376486e-03 + syst_JES_MJB_Stat7: 2.49374668e-02 + syst_JES_MJB_Stat8: 2.42109935e-02 + syst_JES_MJB_Stat9: 1.42082380e-02 + syst_JES_MJB_Threshold: 1.09219644e-02 + syst_JES_Pileup_MuOffset: 1.21572212e-01 + syst_JES_Pileup_NPVOffset: 4.01098766e-01 + syst_JES_Pileup_Pt_term: 1.92843013e+00 + syst_JES_Pileup_Rho_topology: 3.27916133e+00 + syst_JES_PunchThrough_MC15: 2.63532381e-02 + syst_JES_SingleParticle_HighPt: 2.21890108e-03 + syst_JES_Zjet_MC: 7.08941069e+00 + syst_JES_Zjet_MuScale: 4.89020069e-01 + syst_JES_Zjet_MuSmearID: 8.83070794e-02 + syst_JES_Zjet_MuSmearMS: 5.17973465e-01 + syst_JES_Zjet_OOC: 3.04603972e+00 + syst_JES_Zjet_Stat1: 5.99567919e-02 + syst_JES_Zjet_Stat10: 9.46566178e-01 + syst_JES_Zjet_Stat11: 6.94254946e-01 + syst_JES_Zjet_Stat12: 1.89840262e-01 + syst_JES_Zjet_Stat13: 5.44199844e-02 + syst_JES_Zjet_Stat2: 9.67168043e-03 + syst_JES_Zjet_Stat3: 2.20722235e-02 + syst_JES_Zjet_Stat4: 2.73564814e-02 + syst_JES_Zjet_Stat5: 5.70728850e-02 + syst_JES_Zjet_Stat6: 1.00702681e-01 + syst_JES_Zjet_Stat7: 1.65899096e-01 + syst_JES_Zjet_Stat8: 2.70250231e-01 + syst_JES_Zjet_Stat9: 6.03374318e-01 + syst_JES_Zjet_Veto: 5.28574732e-01 + syst_JES_Zjet_dPhi: 6.55805162e-01 syst_PRW: 0.0 syst_Unfolding_bias: 0.0 - syst_cleaning: 3.4692977675604615 + syst_cleaning: 3.46929777e+00 syst_lumi: 7.883 - stat: 1.1741 syst_JER_CROSS_CALIB_FORWARD: 0.04941 syst_JER_NOISE_FORWARD: 0.04187 - syst_JER_NP0: 0.9365739052525434 - syst_JER_NP1: 0.12705672591405776 + syst_JER_NP0: 9.36573905e-01 + syst_JER_NP1: 1.27056726e-01 syst_JER_NP2: 0.0 - syst_JER_NP3: 0.24255751379827423 - syst_JER_NP4: 0.08241337330797714 - syst_JER_NP5: 0.024430576640759014 + syst_JER_NP3: 2.42557514e-01 + syst_JER_NP4: 8.24133733e-02 + syst_JER_NP5: 2.44305766e-02 syst_JER_NP6: 0.0 syst_JER_NP7: 0.0 - syst_JER_NP8: 0.07460466607391256 - syst_JES_EtaIntercalibration_Modelling: 2.4008150178637253 - syst_JES_EtaIntercalibration_NonClosure: 0.664903023004107 - syst_JES_EtaIntercalibration_Stat0: 2.7068047583821038e-05 - syst_JES_EtaIntercalibration_Stat1: 1.769671461034505e-05 - syst_JES_EtaIntercalibration_Stat10: 2.703998705620992e-05 - syst_JES_EtaIntercalibration_Stat100: 0.012639142059491222 - syst_JES_EtaIntercalibration_Stat101: 0.018172135895375648 - syst_JES_EtaIntercalibration_Stat102: 0.017947467251676487 - syst_JES_EtaIntercalibration_Stat103: 0.01650623538999732 - syst_JES_EtaIntercalibration_Stat104: 0.006901947623678407 - syst_JES_EtaIntercalibration_Stat105: 0.0023590472245167116 - syst_JES_EtaIntercalibration_Stat106: 0.005292896631335246 - syst_JES_EtaIntercalibration_Stat107: 2.0445891396561807e-06 - syst_JES_EtaIntercalibration_Stat108: 0.0023039959374964183 - syst_JES_EtaIntercalibration_Stat109: 0.018406881505295788 - syst_JES_EtaIntercalibration_Stat11: 7.30562692381701e-05 - syst_JES_EtaIntercalibration_Stat110: 0.028672924510764506 - syst_JES_EtaIntercalibration_Stat111: 0.0403739259919072 - syst_JES_EtaIntercalibration_Stat112: 0.05217599639681067 - syst_JES_EtaIntercalibration_Stat113: 0.06554119620513499 - syst_JES_EtaIntercalibration_Stat114: 0.06198341955716867 - syst_JES_EtaIntercalibration_Stat115: 0.07417633770280115 - syst_JES_EtaIntercalibration_Stat116: 0.07799848460066387 - syst_JES_EtaIntercalibration_Stat117: 0.060505183249040737 - syst_JES_EtaIntercalibration_Stat118: 0.0638012006156624 - syst_JES_EtaIntercalibration_Stat119: 0.08431237809479697 - syst_JES_EtaIntercalibration_Stat12: 0.000247004185187215 - syst_JES_EtaIntercalibration_Stat120: 0.09020768966667975 - syst_JES_EtaIntercalibration_Stat121: 0.07093847386996706 - syst_JES_EtaIntercalibration_Stat122: 0.055262882660968744 - syst_JES_EtaIntercalibration_Stat123: 0.04407656881779706 - syst_JES_EtaIntercalibration_Stat124: 0.02926106072923536 - syst_JES_EtaIntercalibration_Stat125: 0.029737975666645503 - syst_JES_EtaIntercalibration_Stat126: 0.016462102561641392 - syst_JES_EtaIntercalibration_Stat127: 0.00011690476925686138 - syst_JES_EtaIntercalibration_Stat128: 0.016164491949950052 - syst_JES_EtaIntercalibration_Stat129: 0.11580890250753609 - syst_JES_EtaIntercalibration_Stat13: 0.00010602507946236117 - syst_JES_EtaIntercalibration_Stat130: 0.1429042151232776 - syst_JES_EtaIntercalibration_Stat131: 0.10496080065910321 - syst_JES_EtaIntercalibration_Stat132: 0.16354053778803587 - syst_JES_EtaIntercalibration_Stat133: 0.1184772328339922 - syst_JES_EtaIntercalibration_Stat134: 0.24230334294020792 - syst_JES_EtaIntercalibration_Stat135: 0.17904577626964566 - syst_JES_EtaIntercalibration_Stat136: 0.15846621090945542 - syst_JES_EtaIntercalibration_Stat137: 0.16845458586812054 - syst_JES_EtaIntercalibration_Stat138: 0.16592392081915133 - syst_JES_EtaIntercalibration_Stat139: 0.18031158448641066 - syst_JES_EtaIntercalibration_Stat14: 0.0001059736857667978 - syst_JES_EtaIntercalibration_Stat140: 0.16395550463464165 - syst_JES_EtaIntercalibration_Stat141: 0.13272975052715197 - syst_JES_EtaIntercalibration_Stat142: 0.08668957073950707 - syst_JES_EtaIntercalibration_Stat143: 0.0943030105563974 - syst_JES_EtaIntercalibration_Stat144: 0.11951625286964111 - syst_JES_EtaIntercalibration_Stat145: 0.02663042057497403 - syst_JES_EtaIntercalibration_Stat146: 0.004916426217284258 - syst_JES_EtaIntercalibration_Stat147: 0.02377198561332225 - syst_JES_EtaIntercalibration_Stat148: 0.020933768772010454 - syst_JES_EtaIntercalibration_Stat149: 0.027955300034161683 - syst_JES_EtaIntercalibration_Stat15: 7.037604137773025e-05 - syst_JES_EtaIntercalibration_Stat150: 0.03405010866355642 - syst_JES_EtaIntercalibration_Stat151: 0.06182025017742973 - syst_JES_EtaIntercalibration_Stat152: 0.047764255463683306 - syst_JES_EtaIntercalibration_Stat153: 0.00958968334982965 - syst_JES_EtaIntercalibration_Stat154: 0.06146595053360844 - syst_JES_EtaIntercalibration_Stat155: 0.024048930849416155 - syst_JES_EtaIntercalibration_Stat156: 0.021451449251740546 - syst_JES_EtaIntercalibration_Stat157: 0.04556434571021513 - syst_JES_EtaIntercalibration_Stat158: 0.03656838080910884 - syst_JES_EtaIntercalibration_Stat159: 0.03586429866524648 - syst_JES_EtaIntercalibration_Stat16: 1.6858051786312675e-05 - syst_JES_EtaIntercalibration_Stat160: 0.01087980674230935 - syst_JES_EtaIntercalibration_Stat161: 0.025821690010531844 - syst_JES_EtaIntercalibration_Stat162: 0.022451742398976522 - syst_JES_EtaIntercalibration_Stat163: 0.008196587506395573 - syst_JES_EtaIntercalibration_Stat164: 0.005462907310214955 - syst_JES_EtaIntercalibration_Stat165: 0.00044730212105466256 - syst_JES_EtaIntercalibration_Stat166: 0.004306698204735851 - syst_JES_EtaIntercalibration_Stat167: 0.0002765529861360206 - syst_JES_EtaIntercalibration_Stat168: 0.004195300384954574 - syst_JES_EtaIntercalibration_Stat169: 0.004182902700278839 - syst_JES_EtaIntercalibration_Stat17: 2.7415624650917584e-05 - syst_JES_EtaIntercalibration_Stat170: 0.03845122462289075 - syst_JES_EtaIntercalibration_Stat171: 0.025257774567596016 - syst_JES_EtaIntercalibration_Stat172: 0.008082753676810892 - syst_JES_EtaIntercalibration_Stat173: 0.016889081347130755 - syst_JES_EtaIntercalibration_Stat174: 0.005612273781632539 - syst_JES_EtaIntercalibration_Stat175: 0.025526797919049698 - syst_JES_EtaIntercalibration_Stat176: 0.009264763818225481 - syst_JES_EtaIntercalibration_Stat177: 0.00748559501642989 - syst_JES_EtaIntercalibration_Stat178: 0.0002960940855538996 - syst_JES_EtaIntercalibration_Stat179: 0.007016627020869785 - syst_JES_EtaIntercalibration_Stat18: 2.7068047583821038e-05 - syst_JES_EtaIntercalibration_Stat180: 0.0042678570345666455 - syst_JES_EtaIntercalibration_Stat181: 0.00015011470850902653 - syst_JES_EtaIntercalibration_Stat182: 0.005268460567376395 - syst_JES_EtaIntercalibration_Stat183: 0.0021232821401139207 - syst_JES_EtaIntercalibration_Stat184: 0.002003444685410606 - syst_JES_EtaIntercalibration_Stat185: 0.003205708813975468 - syst_JES_EtaIntercalibration_Stat186: 0.004835848537743919 - syst_JES_EtaIntercalibration_Stat187: 0.01587645680717206 - syst_JES_EtaIntercalibration_Stat188: 0.0028539211621907146 - syst_JES_EtaIntercalibration_Stat189: 0.006852354631803581 - syst_JES_EtaIntercalibration_Stat19: 0.00015074376703532388 - syst_JES_EtaIntercalibration_Stat190: 0.010190364407124997 - syst_JES_EtaIntercalibration_Stat191: 0.0054232157204005815 - syst_JES_EtaIntercalibration_Stat192: 0.010369657805347291 - syst_JES_EtaIntercalibration_Stat193: 0.006625196323128847 - syst_JES_EtaIntercalibration_Stat194: 0.00021286904425021503 - syst_JES_EtaIntercalibration_Stat195: 0.007557470128951884 - syst_JES_EtaIntercalibration_Stat196: 0.0023788078421764125 - syst_JES_EtaIntercalibration_Stat197: 0.0032877801124010712 - syst_JES_EtaIntercalibration_Stat198: 0.0018053238788372573 - syst_JES_EtaIntercalibration_Stat199: 0.0012189352679695506 - syst_JES_EtaIntercalibration_Stat2: 2.3549397508216635e-05 - syst_JES_EtaIntercalibration_Stat20: 2.7068047583821038e-05 - syst_JES_EtaIntercalibration_Stat200: 0.0015793073188901518 - syst_JES_EtaIntercalibration_Stat201: 0.0027139714787558105 - syst_JES_EtaIntercalibration_Stat202: 0.0033024436690880896 - syst_JES_EtaIntercalibration_Stat203: 0.005186797952494391 - syst_JES_EtaIntercalibration_Stat204: 0.0021508392966467765 - syst_JES_EtaIntercalibration_Stat205: 0.0023296758321867442 - syst_JES_EtaIntercalibration_Stat206: 0.0022097244172068153 - syst_JES_EtaIntercalibration_Stat207: 0.0029575224428565207 - syst_JES_EtaIntercalibration_Stat208: 0.0028484972792684918 - syst_JES_EtaIntercalibration_Stat209: 0.0029301459810050423 - syst_JES_EtaIntercalibration_Stat21: 2.7068047583821038e-05 - syst_JES_EtaIntercalibration_Stat210: 0.000717396591851397 - syst_JES_EtaIntercalibration_Stat211: 0.0019647928644007232 - syst_JES_EtaIntercalibration_Stat212: 0.003905497821021028 - syst_JES_EtaIntercalibration_Stat213: 0.000740851110210412 - syst_JES_EtaIntercalibration_Stat214: 0.0005091979649409452 - syst_JES_EtaIntercalibration_Stat215: 0.0008058417190656921 - syst_JES_EtaIntercalibration_Stat216: 0.000420552484596156 - syst_JES_EtaIntercalibration_Stat217: 0.0008235526258230254 - syst_JES_EtaIntercalibration_Stat218: 0.0008379603854001691 - syst_JES_EtaIntercalibration_Stat219: 0.0005084302692602005 - syst_JES_EtaIntercalibration_Stat22: 2.7068047583821038e-05 - syst_JES_EtaIntercalibration_Stat220: 0.0015223766969774595 - syst_JES_EtaIntercalibration_Stat221: 0.000529265764999022 - syst_JES_EtaIntercalibration_Stat222: 0.00031895715621380874 - syst_JES_EtaIntercalibration_Stat223: 0.0002451717918113746 - syst_JES_EtaIntercalibration_Stat224: 0.0014564955432475584 - syst_JES_EtaIntercalibration_Stat225: 0.0009059527733276167 - syst_JES_EtaIntercalibration_Stat226: 0.001183975172881594 - syst_JES_EtaIntercalibration_Stat227: 0.0009851772061411084 - syst_JES_EtaIntercalibration_Stat228: 0.0007774388770186375 - syst_JES_EtaIntercalibration_Stat229: 0.00041212197223637576 - syst_JES_EtaIntercalibration_Stat23: 0.0003055168726285833 - syst_JES_EtaIntercalibration_Stat230: 0.003964408569698638 - syst_JES_EtaIntercalibration_Stat231: 0.0008874081417251027 - syst_JES_EtaIntercalibration_Stat232: 0.0006624188554079662 - syst_JES_EtaIntercalibration_Stat233: 0.001224594278730715 - syst_JES_EtaIntercalibration_Stat234: 0.004369206651956395 - syst_JES_EtaIntercalibration_Stat235: 0.0004765529631635921 - syst_JES_EtaIntercalibration_Stat236: 0.0002056810333988042 - syst_JES_EtaIntercalibration_Stat237: 0.000638514469295724 - syst_JES_EtaIntercalibration_Stat238: 0.0010096285789833804 - syst_JES_EtaIntercalibration_Stat239: 0.00019537533109376936 - syst_JES_EtaIntercalibration_Stat24: 0.0011698941747012848 - syst_JES_EtaIntercalibration_Stat240: 0.0012463464125194086 - syst_JES_EtaIntercalibration_Stat241: 0.0007632281883552257 - syst_JES_EtaIntercalibration_Stat242: 0.0006684853831610681 - syst_JES_EtaIntercalibration_Stat243: 0.0005602318337081533 - syst_JES_EtaIntercalibration_Stat244: 0.000981682728787667 - syst_JES_EtaIntercalibration_Stat245: 0.0026860653319493184 - syst_JES_EtaIntercalibration_Stat25: 0.0004188825849805646 - syst_JES_EtaIntercalibration_Stat26: 6.630197659195387e-05 - syst_JES_EtaIntercalibration_Stat27: 0.0011038670548009846 - syst_JES_EtaIntercalibration_Stat28: 0.0001647792616654171 - syst_JES_EtaIntercalibration_Stat29: 0.00044449678289049517 - syst_JES_EtaIntercalibration_Stat3: 3.963516210386933e-05 - syst_JES_EtaIntercalibration_Stat30: 0.0015195700666635942 - syst_JES_EtaIntercalibration_Stat31: 0.0006964328251884743 - syst_JES_EtaIntercalibration_Stat32: 0.0003404997026430419 - syst_JES_EtaIntercalibration_Stat33: 0.0016559375408133606 - syst_JES_EtaIntercalibration_Stat34: 0.0015882393144611424 - syst_JES_EtaIntercalibration_Stat35: 0.0010641395432460913 - syst_JES_EtaIntercalibration_Stat36: 0.0038005616361269554 - syst_JES_EtaIntercalibration_Stat37: 0.003378641990160396 - syst_JES_EtaIntercalibration_Stat38: 0.000178163960721578 - syst_JES_EtaIntercalibration_Stat39: 0.00014479944751275814 - syst_JES_EtaIntercalibration_Stat4: 1.769671461034505e-05 - syst_JES_EtaIntercalibration_Stat40: 0.0004831200756540759 - syst_JES_EtaIntercalibration_Stat41: 7.402319514010456e-06 - syst_JES_EtaIntercalibration_Stat42: 8.90880332873052e-05 - syst_JES_EtaIntercalibration_Stat43: 2.7068047583821038e-05 - syst_JES_EtaIntercalibration_Stat44: 2.7068047583821038e-05 - syst_JES_EtaIntercalibration_Stat45: 2.3549397508216635e-05 - syst_JES_EtaIntercalibration_Stat46: 0.001121969343464874 - syst_JES_EtaIntercalibration_Stat47: 0.0005119343805606339 - syst_JES_EtaIntercalibration_Stat48: 0.0008008284881920722 - syst_JES_EtaIntercalibration_Stat49: 0.0021885140232587043 - syst_JES_EtaIntercalibration_Stat5: 1.6575726228434153e-05 - syst_JES_EtaIntercalibration_Stat50: 0.0016095636303048104 - syst_JES_EtaIntercalibration_Stat51: 0.0027015586366947505 - syst_JES_EtaIntercalibration_Stat52: 0.0006564214109853517 - syst_JES_EtaIntercalibration_Stat53: 0.0012997909178017826 - syst_JES_EtaIntercalibration_Stat54: 0.0014354700231979768 - syst_JES_EtaIntercalibration_Stat55: 0.003402560822097821 - syst_JES_EtaIntercalibration_Stat56: 0.003069211675251481 - syst_JES_EtaIntercalibration_Stat57: 0.0035364661298392212 - syst_JES_EtaIntercalibration_Stat58: 0.00619897733743236 - syst_JES_EtaIntercalibration_Stat59: 0.0012655351595273834 - syst_JES_EtaIntercalibration_Stat6: 2.2128287959080794e-05 - syst_JES_EtaIntercalibration_Stat60: 0.00019164538440306878 - syst_JES_EtaIntercalibration_Stat61: 0.00012189850368236684 - syst_JES_EtaIntercalibration_Stat62: 0.0009475148336569724 - syst_JES_EtaIntercalibration_Stat63: 0.0002039973279479599 - syst_JES_EtaIntercalibration_Stat64: 9.975419796680238e-06 - syst_JES_EtaIntercalibration_Stat65: 2.7068047583821038e-05 - syst_JES_EtaIntercalibration_Stat66: 2.7068047583821038e-05 - syst_JES_EtaIntercalibration_Stat67: 0.0008539090466788603 - syst_JES_EtaIntercalibration_Stat68: 0.00021497071410543343 - syst_JES_EtaIntercalibration_Stat69: 0.002252839139286247 - syst_JES_EtaIntercalibration_Stat7: 4.855973846717052e-05 - syst_JES_EtaIntercalibration_Stat70: 0.003356964799860135 - syst_JES_EtaIntercalibration_Stat71: 0.0027427153552638302 - syst_JES_EtaIntercalibration_Stat72: 0.006486752731529081 - syst_JES_EtaIntercalibration_Stat73: 0.010656735053476744 - syst_JES_EtaIntercalibration_Stat74: 0.015819284022989155 - syst_JES_EtaIntercalibration_Stat75: 0.0038693741095944703 - syst_JES_EtaIntercalibration_Stat76: 0.004855001347064694 - syst_JES_EtaIntercalibration_Stat77: 0.008772458991069723 - syst_JES_EtaIntercalibration_Stat78: 0.010252254483770875 - syst_JES_EtaIntercalibration_Stat79: 0.008785489442825596 - syst_JES_EtaIntercalibration_Stat8: 0.0002321321539016084 - syst_JES_EtaIntercalibration_Stat80: 0.015752705505721866 - syst_JES_EtaIntercalibration_Stat81: 0.005286110171950638 - syst_JES_EtaIntercalibration_Stat82: 0.008544184162341071 - syst_JES_EtaIntercalibration_Stat83: 0.00520321783899156 - syst_JES_EtaIntercalibration_Stat84: 0.0009090569509112178 - syst_JES_EtaIntercalibration_Stat85: 0.00037388257514893626 - syst_JES_EtaIntercalibration_Stat86: 4.1218729565574915e-05 - syst_JES_EtaIntercalibration_Stat87: 1.6575726228434153e-05 - syst_JES_EtaIntercalibration_Stat88: 0.00017082615334529431 - syst_JES_EtaIntercalibration_Stat89: 0.006347155484939691 - syst_JES_EtaIntercalibration_Stat9: 0.00019099960386084576 - syst_JES_EtaIntercalibration_Stat90: 0.005727393538949458 - syst_JES_EtaIntercalibration_Stat91: 0.006955132421456835 - syst_JES_EtaIntercalibration_Stat92: 0.011724641870863263 - syst_JES_EtaIntercalibration_Stat93: 0.011643415166951662 - syst_JES_EtaIntercalibration_Stat94: 0.017833773212643476 - syst_JES_EtaIntercalibration_Stat95: 0.021945192525926947 - syst_JES_EtaIntercalibration_Stat96: 0.01653928749221078 - syst_JES_EtaIntercalibration_Stat97: 0.013774221166730263 - syst_JES_EtaIntercalibration_Stat98: 0.00921743287200943 - syst_JES_EtaIntercalibration_Stat99: 0.017721514466884598 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.007664504077238137 - syst_JES_Flavour_Comp: 0.24566307720127584 - syst_JES_Flavour_Response: 4.336548483529269 - syst_JES_Gjet_Generator: 3.5490070442308226 - syst_JES_Gjet_OOC: 2.0505010972930493 - syst_JES_Gjet_Purity: 0.7199910624445278 - syst_JES_Gjet_Stat1: 0.0030094382781509243 - syst_JES_Gjet_Stat10: 0.18674054192916972 - syst_JES_Gjet_Stat11: 0.1200398483837763 - syst_JES_Gjet_Stat12: 0.006193216819028703 - syst_JES_Gjet_Stat13: 0.019100020942396895 - syst_JES_Gjet_Stat14: 0.003243796696388354 - syst_JES_Gjet_Stat15: 0.0007244907038741076 - syst_JES_Gjet_Stat2: 0.003317462396169699 - syst_JES_Gjet_Stat3: 0.012478655807017036 - syst_JES_Gjet_Stat4: 0.015592463780621712 - syst_JES_Gjet_Stat5: 0.020957229659475506 - syst_JES_Gjet_Stat6: 0.07326855857050826 - syst_JES_Gjet_Stat7: 0.13960322444342038 - syst_JES_Gjet_Stat8: 0.10481322280609445 - syst_JES_Gjet_Stat9: 0.18245374071254336 - syst_JES_Gjet_Veto: 0.8540786087942959 - syst_JES_Gjet_dPhi: 0.2623227210898819 - syst_JES_LArESZee: 3.2900194528300286 - syst_JES_LArEsmear: 0.2816919727290787 - syst_JES_LAr_JVT: 0.40722404849787536 - syst_JES_MJB_Alpha: 0.004693548204716768 - syst_JES_MJB_Asym: 0.0054129794706797105 - syst_JES_MJB_Beta: 0.002691019509405311 - syst_JES_MJB_Fragmentation: 0.005423950843250702 - syst_JES_MJB_Stat1: 0.007714122827645409 - syst_JES_MJB_Stat10: 0.0020315639954232305 - syst_JES_MJB_Stat11: 0.0007632281883552257 - syst_JES_MJB_Stat12: 0.0012137584026485665 - syst_JES_MJB_Stat13: 0.0012463464125194086 - syst_JES_MJB_Stat14: 0.0012463464125194086 - syst_JES_MJB_Stat15: 0.0009732427549178057 - syst_JES_MJB_Stat16: 0.0009154010746661816 - syst_JES_MJB_Stat2: 0.006384075422486799 - syst_JES_MJB_Stat3: 0.0035975951342528804 - syst_JES_MJB_Stat4: 0.004231209615169166 - syst_JES_MJB_Stat5: 0.0022106257411647046 - syst_JES_MJB_Stat6: 0.002100169866939339 - syst_JES_MJB_Stat7: 0.011761257445847361 - syst_JES_MJB_Stat8: 0.011414627645262897 - syst_JES_MJB_Stat9: 0.006685504543413308 - syst_JES_MJB_Threshold: 0.005301164400393559 - syst_JES_Pileup_MuOffset: 0.04966906960070825 - syst_JES_Pileup_NPVOffset: 0.14826870876891052 - syst_JES_Pileup_Pt_term: 0.7733366973705567 - syst_JES_Pileup_Rho_topology: 1.3307003118658987 - syst_JES_PunchThrough_MC15: 0.011244641157013414 - syst_JES_SingleParticle_HighPt: 0.0012463464125194086 - syst_JES_Zjet_MC: 3.161062005086265 - syst_JES_Zjet_MuScale: 0.229986825709648 - syst_JES_Zjet_MuSmearID: 0.047666385168166465 - syst_JES_Zjet_MuSmearMS: 0.2771401585840637 - syst_JES_Zjet_OOC: 1.2034175366430389 - syst_JES_Zjet_Stat1: 0.01672733023378208 - syst_JES_Zjet_Stat10: 0.39251818747670786 - syst_JES_Zjet_Stat11: 0.4116068192766004 - syst_JES_Zjet_Stat12: 0.2275380133076669 - syst_JES_Zjet_Stat13: 0.029398829908688542 - syst_JES_Zjet_Stat2: 0.0022399792337207056 - syst_JES_Zjet_Stat3: 0.010067468549739802 - syst_JES_Zjet_Stat4: 0.009551282322285316 - syst_JES_Zjet_Stat5: 0.014870180589017741 - syst_JES_Zjet_Stat6: 0.03306733244457436 - syst_JES_Zjet_Stat7: 0.04759602819563834 - syst_JES_Zjet_Stat8: 0.07731215088845995 - syst_JES_Zjet_Stat9: 0.20529473324954053 - syst_JES_Zjet_Veto: 0.2333191805231623 - syst_JES_Zjet_dPhi: 0.25073593679407025 + syst_JER_NP8: 7.46046661e-02 + syst_JES_EtaIntercalibration_Modelling: 2.40081502e+00 + syst_JES_EtaIntercalibration_NonClosure: 6.64903023e-01 + syst_JES_EtaIntercalibration_Stat0: 2.70680476e-05 + syst_JES_EtaIntercalibration_Stat1: 1.76967146e-05 + syst_JES_EtaIntercalibration_Stat10: 2.70399871e-05 + syst_JES_EtaIntercalibration_Stat100: 1.26391421e-02 + syst_JES_EtaIntercalibration_Stat101: 1.81721359e-02 + syst_JES_EtaIntercalibration_Stat102: 1.79474673e-02 + syst_JES_EtaIntercalibration_Stat103: 1.65062354e-02 + syst_JES_EtaIntercalibration_Stat104: 6.90194762e-03 + syst_JES_EtaIntercalibration_Stat105: 2.35904722e-03 + syst_JES_EtaIntercalibration_Stat106: 5.29289663e-03 + syst_JES_EtaIntercalibration_Stat107: 2.04458914e-06 + syst_JES_EtaIntercalibration_Stat108: 2.30399594e-03 + syst_JES_EtaIntercalibration_Stat109: 1.84068815e-02 + syst_JES_EtaIntercalibration_Stat11: 7.30562692e-05 + syst_JES_EtaIntercalibration_Stat110: 2.86729245e-02 + syst_JES_EtaIntercalibration_Stat111: 4.03739260e-02 + syst_JES_EtaIntercalibration_Stat112: 5.21759964e-02 + syst_JES_EtaIntercalibration_Stat113: 6.55411962e-02 + syst_JES_EtaIntercalibration_Stat114: 6.19834196e-02 + syst_JES_EtaIntercalibration_Stat115: 7.41763377e-02 + syst_JES_EtaIntercalibration_Stat116: 7.79984846e-02 + syst_JES_EtaIntercalibration_Stat117: 6.05051832e-02 + syst_JES_EtaIntercalibration_Stat118: 6.38012006e-02 + syst_JES_EtaIntercalibration_Stat119: 8.43123781e-02 + syst_JES_EtaIntercalibration_Stat12: 2.47004185e-04 + syst_JES_EtaIntercalibration_Stat120: 9.02076897e-02 + syst_JES_EtaIntercalibration_Stat121: 7.09384739e-02 + syst_JES_EtaIntercalibration_Stat122: 5.52628827e-02 + syst_JES_EtaIntercalibration_Stat123: 4.40765688e-02 + syst_JES_EtaIntercalibration_Stat124: 2.92610607e-02 + syst_JES_EtaIntercalibration_Stat125: 2.97379757e-02 + syst_JES_EtaIntercalibration_Stat126: 1.64621026e-02 + syst_JES_EtaIntercalibration_Stat127: 1.16904769e-04 + syst_JES_EtaIntercalibration_Stat128: 1.61644919e-02 + syst_JES_EtaIntercalibration_Stat129: 1.15808903e-01 + syst_JES_EtaIntercalibration_Stat13: 1.06025079e-04 + syst_JES_EtaIntercalibration_Stat130: 1.42904215e-01 + syst_JES_EtaIntercalibration_Stat131: 1.04960801e-01 + syst_JES_EtaIntercalibration_Stat132: 1.63540538e-01 + syst_JES_EtaIntercalibration_Stat133: 1.18477233e-01 + syst_JES_EtaIntercalibration_Stat134: 2.42303343e-01 + syst_JES_EtaIntercalibration_Stat135: 1.79045776e-01 + syst_JES_EtaIntercalibration_Stat136: 1.58466211e-01 + syst_JES_EtaIntercalibration_Stat137: 1.68454586e-01 + syst_JES_EtaIntercalibration_Stat138: 1.65923921e-01 + syst_JES_EtaIntercalibration_Stat139: 1.80311584e-01 + syst_JES_EtaIntercalibration_Stat14: 1.05973686e-04 + syst_JES_EtaIntercalibration_Stat140: 1.63955505e-01 + syst_JES_EtaIntercalibration_Stat141: 1.32729751e-01 + syst_JES_EtaIntercalibration_Stat142: 8.66895707e-02 + syst_JES_EtaIntercalibration_Stat143: 9.43030106e-02 + syst_JES_EtaIntercalibration_Stat144: 1.19516253e-01 + syst_JES_EtaIntercalibration_Stat145: 2.66304206e-02 + syst_JES_EtaIntercalibration_Stat146: 4.91642622e-03 + syst_JES_EtaIntercalibration_Stat147: 2.37719856e-02 + syst_JES_EtaIntercalibration_Stat148: 2.09337688e-02 + syst_JES_EtaIntercalibration_Stat149: 2.79553000e-02 + syst_JES_EtaIntercalibration_Stat15: 7.03760414e-05 + syst_JES_EtaIntercalibration_Stat150: 3.40501087e-02 + syst_JES_EtaIntercalibration_Stat151: 6.18202502e-02 + syst_JES_EtaIntercalibration_Stat152: 4.77642555e-02 + syst_JES_EtaIntercalibration_Stat153: 9.58968335e-03 + syst_JES_EtaIntercalibration_Stat154: 6.14659505e-02 + syst_JES_EtaIntercalibration_Stat155: 2.40489308e-02 + syst_JES_EtaIntercalibration_Stat156: 2.14514493e-02 + syst_JES_EtaIntercalibration_Stat157: 4.55643457e-02 + syst_JES_EtaIntercalibration_Stat158: 3.65683808e-02 + syst_JES_EtaIntercalibration_Stat159: 3.58642987e-02 + syst_JES_EtaIntercalibration_Stat16: 1.68580518e-05 + syst_JES_EtaIntercalibration_Stat160: 1.08798067e-02 + syst_JES_EtaIntercalibration_Stat161: 2.58216900e-02 + syst_JES_EtaIntercalibration_Stat162: 2.24517424e-02 + syst_JES_EtaIntercalibration_Stat163: 8.19658751e-03 + syst_JES_EtaIntercalibration_Stat164: 5.46290731e-03 + syst_JES_EtaIntercalibration_Stat165: 4.47302121e-04 + syst_JES_EtaIntercalibration_Stat166: 4.30669820e-03 + syst_JES_EtaIntercalibration_Stat167: 2.76552986e-04 + syst_JES_EtaIntercalibration_Stat168: 4.19530038e-03 + syst_JES_EtaIntercalibration_Stat169: 4.18290270e-03 + syst_JES_EtaIntercalibration_Stat17: 2.74156247e-05 + syst_JES_EtaIntercalibration_Stat170: 3.84512246e-02 + syst_JES_EtaIntercalibration_Stat171: 2.52577746e-02 + syst_JES_EtaIntercalibration_Stat172: 8.08275368e-03 + syst_JES_EtaIntercalibration_Stat173: 1.68890813e-02 + syst_JES_EtaIntercalibration_Stat174: 5.61227378e-03 + syst_JES_EtaIntercalibration_Stat175: 2.55267979e-02 + syst_JES_EtaIntercalibration_Stat176: 9.26476382e-03 + syst_JES_EtaIntercalibration_Stat177: 7.48559502e-03 + syst_JES_EtaIntercalibration_Stat178: 2.96094086e-04 + syst_JES_EtaIntercalibration_Stat179: 7.01662702e-03 + syst_JES_EtaIntercalibration_Stat18: 2.70680476e-05 + syst_JES_EtaIntercalibration_Stat180: 4.26785703e-03 + syst_JES_EtaIntercalibration_Stat181: 1.50114709e-04 + syst_JES_EtaIntercalibration_Stat182: 5.26846057e-03 + syst_JES_EtaIntercalibration_Stat183: 2.12328214e-03 + syst_JES_EtaIntercalibration_Stat184: 2.00344469e-03 + syst_JES_EtaIntercalibration_Stat185: 3.20570881e-03 + syst_JES_EtaIntercalibration_Stat186: 4.83584854e-03 + syst_JES_EtaIntercalibration_Stat187: 1.58764568e-02 + syst_JES_EtaIntercalibration_Stat188: 2.85392116e-03 + syst_JES_EtaIntercalibration_Stat189: 6.85235463e-03 + syst_JES_EtaIntercalibration_Stat19: 1.50743767e-04 + syst_JES_EtaIntercalibration_Stat190: 1.01903644e-02 + syst_JES_EtaIntercalibration_Stat191: 5.42321572e-03 + syst_JES_EtaIntercalibration_Stat192: 1.03696578e-02 + syst_JES_EtaIntercalibration_Stat193: 6.62519632e-03 + syst_JES_EtaIntercalibration_Stat194: 2.12869044e-04 + syst_JES_EtaIntercalibration_Stat195: 7.55747013e-03 + syst_JES_EtaIntercalibration_Stat196: 2.37880784e-03 + syst_JES_EtaIntercalibration_Stat197: 3.28778011e-03 + syst_JES_EtaIntercalibration_Stat198: 1.80532388e-03 + syst_JES_EtaIntercalibration_Stat199: 1.21893527e-03 + syst_JES_EtaIntercalibration_Stat2: 2.35493975e-05 + syst_JES_EtaIntercalibration_Stat20: 2.70680476e-05 + syst_JES_EtaIntercalibration_Stat200: 1.57930732e-03 + syst_JES_EtaIntercalibration_Stat201: 2.71397148e-03 + syst_JES_EtaIntercalibration_Stat202: 3.30244367e-03 + syst_JES_EtaIntercalibration_Stat203: 5.18679795e-03 + syst_JES_EtaIntercalibration_Stat204: 2.15083930e-03 + syst_JES_EtaIntercalibration_Stat205: 2.32967583e-03 + syst_JES_EtaIntercalibration_Stat206: 2.20972442e-03 + syst_JES_EtaIntercalibration_Stat207: 2.95752244e-03 + syst_JES_EtaIntercalibration_Stat208: 2.84849728e-03 + syst_JES_EtaIntercalibration_Stat209: 2.93014598e-03 + syst_JES_EtaIntercalibration_Stat21: 2.70680476e-05 + syst_JES_EtaIntercalibration_Stat210: 7.17396592e-04 + syst_JES_EtaIntercalibration_Stat211: 1.96479286e-03 + syst_JES_EtaIntercalibration_Stat212: 3.90549782e-03 + syst_JES_EtaIntercalibration_Stat213: 7.40851110e-04 + syst_JES_EtaIntercalibration_Stat214: 5.09197965e-04 + syst_JES_EtaIntercalibration_Stat215: 8.05841719e-04 + syst_JES_EtaIntercalibration_Stat216: 4.20552485e-04 + syst_JES_EtaIntercalibration_Stat217: 8.23552626e-04 + syst_JES_EtaIntercalibration_Stat218: 8.37960385e-04 + syst_JES_EtaIntercalibration_Stat219: 5.08430269e-04 + syst_JES_EtaIntercalibration_Stat22: 2.70680476e-05 + syst_JES_EtaIntercalibration_Stat220: 1.52237670e-03 + syst_JES_EtaIntercalibration_Stat221: 5.29265765e-04 + syst_JES_EtaIntercalibration_Stat222: 3.18957156e-04 + syst_JES_EtaIntercalibration_Stat223: 2.45171792e-04 + syst_JES_EtaIntercalibration_Stat224: 1.45649554e-03 + syst_JES_EtaIntercalibration_Stat225: 9.05952773e-04 + syst_JES_EtaIntercalibration_Stat226: 1.18397517e-03 + syst_JES_EtaIntercalibration_Stat227: 9.85177206e-04 + syst_JES_EtaIntercalibration_Stat228: 7.77438877e-04 + syst_JES_EtaIntercalibration_Stat229: 4.12121972e-04 + syst_JES_EtaIntercalibration_Stat23: 3.05516873e-04 + syst_JES_EtaIntercalibration_Stat230: 3.96440857e-03 + syst_JES_EtaIntercalibration_Stat231: 8.87408142e-04 + syst_JES_EtaIntercalibration_Stat232: 6.62418855e-04 + syst_JES_EtaIntercalibration_Stat233: 1.22459428e-03 + syst_JES_EtaIntercalibration_Stat234: 4.36920665e-03 + syst_JES_EtaIntercalibration_Stat235: 4.76552963e-04 + syst_JES_EtaIntercalibration_Stat236: 2.05681033e-04 + syst_JES_EtaIntercalibration_Stat237: 6.38514469e-04 + syst_JES_EtaIntercalibration_Stat238: 1.00962858e-03 + syst_JES_EtaIntercalibration_Stat239: 1.95375331e-04 + syst_JES_EtaIntercalibration_Stat24: 1.16989417e-03 + syst_JES_EtaIntercalibration_Stat240: 1.24634641e-03 + syst_JES_EtaIntercalibration_Stat241: 7.63228188e-04 + syst_JES_EtaIntercalibration_Stat242: 6.68485383e-04 + syst_JES_EtaIntercalibration_Stat243: 5.60231834e-04 + syst_JES_EtaIntercalibration_Stat244: 9.81682729e-04 + syst_JES_EtaIntercalibration_Stat245: 2.68606533e-03 + syst_JES_EtaIntercalibration_Stat25: 4.18882585e-04 + syst_JES_EtaIntercalibration_Stat26: 6.63019766e-05 + syst_JES_EtaIntercalibration_Stat27: 1.10386705e-03 + syst_JES_EtaIntercalibration_Stat28: 1.64779262e-04 + syst_JES_EtaIntercalibration_Stat29: 4.44496783e-04 + syst_JES_EtaIntercalibration_Stat3: 3.96351621e-05 + syst_JES_EtaIntercalibration_Stat30: 1.51957007e-03 + syst_JES_EtaIntercalibration_Stat31: 6.96432825e-04 + syst_JES_EtaIntercalibration_Stat32: 3.40499703e-04 + syst_JES_EtaIntercalibration_Stat33: 1.65593754e-03 + syst_JES_EtaIntercalibration_Stat34: 1.58823931e-03 + syst_JES_EtaIntercalibration_Stat35: 1.06413954e-03 + syst_JES_EtaIntercalibration_Stat36: 3.80056164e-03 + syst_JES_EtaIntercalibration_Stat37: 3.37864199e-03 + syst_JES_EtaIntercalibration_Stat38: 1.78163961e-04 + syst_JES_EtaIntercalibration_Stat39: 1.44799448e-04 + syst_JES_EtaIntercalibration_Stat4: 1.76967146e-05 + syst_JES_EtaIntercalibration_Stat40: 4.83120076e-04 + syst_JES_EtaIntercalibration_Stat41: 7.40231951e-06 + syst_JES_EtaIntercalibration_Stat42: 8.90880333e-05 + syst_JES_EtaIntercalibration_Stat43: 2.70680476e-05 + syst_JES_EtaIntercalibration_Stat44: 2.70680476e-05 + syst_JES_EtaIntercalibration_Stat45: 2.35493975e-05 + syst_JES_EtaIntercalibration_Stat46: 1.12196934e-03 + syst_JES_EtaIntercalibration_Stat47: 5.11934381e-04 + syst_JES_EtaIntercalibration_Stat48: 8.00828488e-04 + syst_JES_EtaIntercalibration_Stat49: 2.18851402e-03 + syst_JES_EtaIntercalibration_Stat5: 1.65757262e-05 + syst_JES_EtaIntercalibration_Stat50: 1.60956363e-03 + syst_JES_EtaIntercalibration_Stat51: 2.70155864e-03 + syst_JES_EtaIntercalibration_Stat52: 6.56421411e-04 + syst_JES_EtaIntercalibration_Stat53: 1.29979092e-03 + syst_JES_EtaIntercalibration_Stat54: 1.43547002e-03 + syst_JES_EtaIntercalibration_Stat55: 3.40256082e-03 + syst_JES_EtaIntercalibration_Stat56: 3.06921168e-03 + syst_JES_EtaIntercalibration_Stat57: 3.53646613e-03 + syst_JES_EtaIntercalibration_Stat58: 6.19897734e-03 + syst_JES_EtaIntercalibration_Stat59: 1.26553516e-03 + syst_JES_EtaIntercalibration_Stat6: 2.21282880e-05 + syst_JES_EtaIntercalibration_Stat60: 1.91645384e-04 + syst_JES_EtaIntercalibration_Stat61: 1.21898504e-04 + syst_JES_EtaIntercalibration_Stat62: 9.47514834e-04 + syst_JES_EtaIntercalibration_Stat63: 2.03997328e-04 + syst_JES_EtaIntercalibration_Stat64: 9.97541980e-06 + syst_JES_EtaIntercalibration_Stat65: 2.70680476e-05 + syst_JES_EtaIntercalibration_Stat66: 2.70680476e-05 + syst_JES_EtaIntercalibration_Stat67: 8.53909047e-04 + syst_JES_EtaIntercalibration_Stat68: 2.14970714e-04 + syst_JES_EtaIntercalibration_Stat69: 2.25283914e-03 + syst_JES_EtaIntercalibration_Stat7: 4.85597385e-05 + syst_JES_EtaIntercalibration_Stat70: 3.35696480e-03 + syst_JES_EtaIntercalibration_Stat71: 2.74271536e-03 + syst_JES_EtaIntercalibration_Stat72: 6.48675273e-03 + syst_JES_EtaIntercalibration_Stat73: 1.06567351e-02 + syst_JES_EtaIntercalibration_Stat74: 1.58192840e-02 + syst_JES_EtaIntercalibration_Stat75: 3.86937411e-03 + syst_JES_EtaIntercalibration_Stat76: 4.85500135e-03 + syst_JES_EtaIntercalibration_Stat77: 8.77245899e-03 + syst_JES_EtaIntercalibration_Stat78: 1.02522545e-02 + syst_JES_EtaIntercalibration_Stat79: 8.78548944e-03 + syst_JES_EtaIntercalibration_Stat8: 2.32132154e-04 + syst_JES_EtaIntercalibration_Stat80: 1.57527055e-02 + syst_JES_EtaIntercalibration_Stat81: 5.28611017e-03 + syst_JES_EtaIntercalibration_Stat82: 8.54418416e-03 + syst_JES_EtaIntercalibration_Stat83: 5.20321784e-03 + syst_JES_EtaIntercalibration_Stat84: 9.09056951e-04 + syst_JES_EtaIntercalibration_Stat85: 3.73882575e-04 + syst_JES_EtaIntercalibration_Stat86: 4.12187296e-05 + syst_JES_EtaIntercalibration_Stat87: 1.65757262e-05 + syst_JES_EtaIntercalibration_Stat88: 1.70826153e-04 + syst_JES_EtaIntercalibration_Stat89: 6.34715548e-03 + syst_JES_EtaIntercalibration_Stat9: 1.90999604e-04 + syst_JES_EtaIntercalibration_Stat90: 5.72739354e-03 + syst_JES_EtaIntercalibration_Stat91: 6.95513242e-03 + syst_JES_EtaIntercalibration_Stat92: 1.17246419e-02 + syst_JES_EtaIntercalibration_Stat93: 1.16434152e-02 + syst_JES_EtaIntercalibration_Stat94: 1.78337732e-02 + syst_JES_EtaIntercalibration_Stat95: 2.19451925e-02 + syst_JES_EtaIntercalibration_Stat96: 1.65392875e-02 + syst_JES_EtaIntercalibration_Stat97: 1.37742212e-02 + syst_JES_EtaIntercalibration_Stat98: 9.21743287e-03 + syst_JES_EtaIntercalibration_Stat99: 1.77215145e-02 + syst_JES_EtaIntercalibration_TotalStat_MJB: 7.66450408e-03 + syst_JES_Flavour_Comp: 2.45663077e-01 + syst_JES_Flavour_Response: 4.33654848e+00 + syst_JES_Gjet_Generator: 3.54900704e+00 + syst_JES_Gjet_OOC: 2.05050110e+00 + syst_JES_Gjet_Purity: 7.19991062e-01 + syst_JES_Gjet_Stat1: 3.00943828e-03 + syst_JES_Gjet_Stat10: 1.86740542e-01 + syst_JES_Gjet_Stat11: 1.20039848e-01 + syst_JES_Gjet_Stat12: 6.19321682e-03 + syst_JES_Gjet_Stat13: 1.91000209e-02 + syst_JES_Gjet_Stat14: 3.24379670e-03 + syst_JES_Gjet_Stat15: 7.24490704e-04 + syst_JES_Gjet_Stat2: 3.31746240e-03 + syst_JES_Gjet_Stat3: 1.24786558e-02 + syst_JES_Gjet_Stat4: 1.55924638e-02 + syst_JES_Gjet_Stat5: 2.09572297e-02 + syst_JES_Gjet_Stat6: 7.32685586e-02 + syst_JES_Gjet_Stat7: 1.39603224e-01 + syst_JES_Gjet_Stat8: 1.04813223e-01 + syst_JES_Gjet_Stat9: 1.82453741e-01 + syst_JES_Gjet_Veto: 8.54078609e-01 + syst_JES_Gjet_dPhi: 2.62322721e-01 + syst_JES_LArESZee: 3.29001945e+00 + syst_JES_LArEsmear: 2.81691973e-01 + syst_JES_LAr_JVT: 4.07224048e-01 + syst_JES_MJB_Alpha: 4.69354820e-03 + syst_JES_MJB_Asym: 5.41297947e-03 + syst_JES_MJB_Beta: 2.69101951e-03 + syst_JES_MJB_Fragmentation: 5.42395084e-03 + syst_JES_MJB_Stat1: 7.71412283e-03 + syst_JES_MJB_Stat10: 2.03156400e-03 + syst_JES_MJB_Stat11: 7.63228188e-04 + syst_JES_MJB_Stat12: 1.21375840e-03 + syst_JES_MJB_Stat13: 1.24634641e-03 + syst_JES_MJB_Stat14: 1.24634641e-03 + syst_JES_MJB_Stat15: 9.73242755e-04 + syst_JES_MJB_Stat16: 9.15401075e-04 + syst_JES_MJB_Stat2: 6.38407542e-03 + syst_JES_MJB_Stat3: 3.59759513e-03 + syst_JES_MJB_Stat4: 4.23120962e-03 + syst_JES_MJB_Stat5: 2.21062574e-03 + syst_JES_MJB_Stat6: 2.10016987e-03 + syst_JES_MJB_Stat7: 1.17612574e-02 + syst_JES_MJB_Stat8: 1.14146276e-02 + syst_JES_MJB_Stat9: 6.68550454e-03 + syst_JES_MJB_Threshold: 5.30116440e-03 + syst_JES_Pileup_MuOffset: 4.96690696e-02 + syst_JES_Pileup_NPVOffset: 1.48268709e-01 + syst_JES_Pileup_Pt_term: 7.73336697e-01 + syst_JES_Pileup_Rho_topology: 1.33070031e+00 + syst_JES_PunchThrough_MC15: 1.12446412e-02 + syst_JES_SingleParticle_HighPt: 1.24634641e-03 + syst_JES_Zjet_MC: 3.16106201e+00 + syst_JES_Zjet_MuScale: 2.29986826e-01 + syst_JES_Zjet_MuSmearID: 4.76663852e-02 + syst_JES_Zjet_MuSmearMS: 2.77140159e-01 + syst_JES_Zjet_OOC: 1.20341754e+00 + syst_JES_Zjet_Stat1: 1.67273302e-02 + syst_JES_Zjet_Stat10: 3.92518187e-01 + syst_JES_Zjet_Stat11: 4.11606819e-01 + syst_JES_Zjet_Stat12: 2.27538013e-01 + syst_JES_Zjet_Stat13: 2.93988299e-02 + syst_JES_Zjet_Stat2: 2.23997923e-03 + syst_JES_Zjet_Stat3: 1.00674685e-02 + syst_JES_Zjet_Stat4: 9.55128232e-03 + syst_JES_Zjet_Stat5: 1.48701806e-02 + syst_JES_Zjet_Stat6: 3.30673324e-02 + syst_JES_Zjet_Stat7: 4.75960282e-02 + syst_JES_Zjet_Stat8: 7.73121509e-02 + syst_JES_Zjet_Stat9: 2.05294733e-01 + syst_JES_Zjet_Veto: 2.33319181e-01 + syst_JES_Zjet_dPhi: 2.50735937e-01 syst_PRW: 0.0 syst_Unfolding_bias: 0.0 - syst_cleaning: 1.5614438030233428 + syst_cleaning: 1.56144380e+00 syst_lumi: 3.678 - stat: 0.5295 syst_JER_CROSS_CALIB_FORWARD: 0.0181 syst_JER_NOISE_FORWARD: 0.02009 - syst_JER_NP0: 0.4074204308819085 - syst_JER_NP1: 0.05877200694208085 + syst_JER_NP0: 4.07420431e-01 + syst_JER_NP1: 5.87720069e-02 syst_JER_NP2: 0.0 - syst_JER_NP3: 0.09765131066708732 - syst_JER_NP4: 0.029677503264257252 - syst_JER_NP5: 0.011726849992645083 + syst_JER_NP3: 9.76513107e-02 + syst_JER_NP4: 2.96775033e-02 + syst_JER_NP5: 1.17268500e-02 syst_JER_NP6: 0.0 syst_JER_NP7: 0.0 - syst_JER_NP8: 0.03255308088338184 - syst_JES_EtaIntercalibration_Modelling: 1.1387189413986227 - syst_JES_EtaIntercalibration_NonClosure: 0.26704068510247647 - syst_JES_EtaIntercalibration_Stat0: 1.310975972319859e-06 - syst_JES_EtaIntercalibration_Stat1: 8.988893188262946e-07 - syst_JES_EtaIntercalibration_Stat10: 1.3256329082743834e-06 - syst_JES_EtaIntercalibration_Stat100: 0.0023212998012966785 - syst_JES_EtaIntercalibration_Stat101: 0.004379547550832164 - syst_JES_EtaIntercalibration_Stat102: 0.006042962249592496 - syst_JES_EtaIntercalibration_Stat103: 0.0033112974447337103 - syst_JES_EtaIntercalibration_Stat104: 0.00059178518906779 - syst_JES_EtaIntercalibration_Stat105: 0.00042455238864008287 - syst_JES_EtaIntercalibration_Stat106: 0.0008040302252247735 - syst_JES_EtaIntercalibration_Stat107: 5.884773827429564e-08 - syst_JES_EtaIntercalibration_Stat108: 0.0014662910220007487 - syst_JES_EtaIntercalibration_Stat109: 0.003467981470538734 - syst_JES_EtaIntercalibration_Stat11: 5.8694051493741675e-06 - syst_JES_EtaIntercalibration_Stat110: 0.0065079161027167525 - syst_JES_EtaIntercalibration_Stat111: 0.011094398000793013 - syst_JES_EtaIntercalibration_Stat112: 0.013100439563236038 - syst_JES_EtaIntercalibration_Stat113: 0.014793424214832752 - syst_JES_EtaIntercalibration_Stat114: 0.014325251856424725 - syst_JES_EtaIntercalibration_Stat115: 0.01694129496231029 - syst_JES_EtaIntercalibration_Stat116: 0.022295795567774657 - syst_JES_EtaIntercalibration_Stat117: 0.018416302560503292 - syst_JES_EtaIntercalibration_Stat118: 0.014170189659986912 - syst_JES_EtaIntercalibration_Stat119: 0.01637312050282413 - syst_JES_EtaIntercalibration_Stat12: 6.730521283674838e-05 - syst_JES_EtaIntercalibration_Stat120: 0.021930209187328787 - syst_JES_EtaIntercalibration_Stat121: 0.02156516345868957 - syst_JES_EtaIntercalibration_Stat122: 0.018320660468443817 - syst_JES_EtaIntercalibration_Stat123: 0.0180592501713111 - syst_JES_EtaIntercalibration_Stat124: 0.00875408893032279 - syst_JES_EtaIntercalibration_Stat125: 0.007496881151518944 - syst_JES_EtaIntercalibration_Stat126: 0.005545252631756284 - syst_JES_EtaIntercalibration_Stat127: 2.513205721782441e-06 - syst_JES_EtaIntercalibration_Stat128: 0.011688130335943384 - syst_JES_EtaIntercalibration_Stat129: 0.05081299341703852 - syst_JES_EtaIntercalibration_Stat13: 4.6613224250206076e-06 - syst_JES_EtaIntercalibration_Stat130: 0.05312204909451442 - syst_JES_EtaIntercalibration_Stat131: 0.04741082893179574 - syst_JES_EtaIntercalibration_Stat132: 0.05578896553082876 - syst_JES_EtaIntercalibration_Stat133: 0.051729804513452396 - syst_JES_EtaIntercalibration_Stat134: 0.08887227801738853 - syst_JES_EtaIntercalibration_Stat135: 0.06849115563341007 - syst_JES_EtaIntercalibration_Stat136: 0.07314596007299377 - syst_JES_EtaIntercalibration_Stat137: 0.06234548259497235 - syst_JES_EtaIntercalibration_Stat138: 0.06656117543283022 - syst_JES_EtaIntercalibration_Stat139: 0.07161585072454282 - syst_JES_EtaIntercalibration_Stat14: 4.668158817992378e-06 - syst_JES_EtaIntercalibration_Stat140: 0.06391724395654118 - syst_JES_EtaIntercalibration_Stat141: 0.0553942894168704 - syst_JES_EtaIntercalibration_Stat142: 0.039991288035645965 - syst_JES_EtaIntercalibration_Stat143: 0.04177681055322438 - syst_JES_EtaIntercalibration_Stat144: 0.046412621936279354 - syst_JES_EtaIntercalibration_Stat145: 0.011659896912065731 - syst_JES_EtaIntercalibration_Stat146: 0.0029574767539099238 - syst_JES_EtaIntercalibration_Stat147: 0.012517983333987947 - syst_JES_EtaIntercalibration_Stat148: 0.010690134739562453 - syst_JES_EtaIntercalibration_Stat149: 0.021434128743664856 - syst_JES_EtaIntercalibration_Stat15: 5.0371715505827275e-06 - syst_JES_EtaIntercalibration_Stat150: 0.015123044691794043 - syst_JES_EtaIntercalibration_Stat151: 0.040172742335444316 - syst_JES_EtaIntercalibration_Stat152: 0.04215613834306933 - syst_JES_EtaIntercalibration_Stat153: 0.004606152515929103 - syst_JES_EtaIntercalibration_Stat154: 0.03832793335153879 - syst_JES_EtaIntercalibration_Stat155: 0.0180057012290552 - syst_JES_EtaIntercalibration_Stat156: 0.016818213341493797 - syst_JES_EtaIntercalibration_Stat157: 0.027650100813559432 - syst_JES_EtaIntercalibration_Stat158: 0.024024718000426142 - syst_JES_EtaIntercalibration_Stat159: 0.016358161357560942 - syst_JES_EtaIntercalibration_Stat16: 8.160242158171533e-07 - syst_JES_EtaIntercalibration_Stat160: 0.009433000424043244 - syst_JES_EtaIntercalibration_Stat161: 0.018019206419817718 - syst_JES_EtaIntercalibration_Stat162: 0.011916222681705809 - syst_JES_EtaIntercalibration_Stat163: 0.003637861488223541 - syst_JES_EtaIntercalibration_Stat164: 0.0024138833857500243 - syst_JES_EtaIntercalibration_Stat165: 0.00021468769759816234 - syst_JES_EtaIntercalibration_Stat166: 0.006057916474127058 - syst_JES_EtaIntercalibration_Stat167: 0.0004747946161236456 - syst_JES_EtaIntercalibration_Stat168: 0.011262445149699951 - syst_JES_EtaIntercalibration_Stat169: 0.002007446885972329 - syst_JES_EtaIntercalibration_Stat17: 1.325226926794049e-06 - syst_JES_EtaIntercalibration_Stat170: 0.02547080043893399 - syst_JES_EtaIntercalibration_Stat171: 0.015945290234658634 - syst_JES_EtaIntercalibration_Stat172: 0.004505494752799075 - syst_JES_EtaIntercalibration_Stat173: 0.014880818257071753 - syst_JES_EtaIntercalibration_Stat174: 0.014168527517000488 - syst_JES_EtaIntercalibration_Stat175: 0.018929494888929286 - syst_JES_EtaIntercalibration_Stat176: 0.01262755055424448 - syst_JES_EtaIntercalibration_Stat177: 0.007756299117491538 - syst_JES_EtaIntercalibration_Stat178: 0.0077396690336215285 - syst_JES_EtaIntercalibration_Stat179: 0.0031737738589099253 - syst_JES_EtaIntercalibration_Stat18: 1.310975972319859e-06 - syst_JES_EtaIntercalibration_Stat180: 0.003190514034994988 - syst_JES_EtaIntercalibration_Stat181: 0.002158213981673779 - syst_JES_EtaIntercalibration_Stat182: 0.004266139589839976 - syst_JES_EtaIntercalibration_Stat183: 0.0020004362795732053 - syst_JES_EtaIntercalibration_Stat184: 0.004224022337476449 - syst_JES_EtaIntercalibration_Stat185: 0.0028740711108112826 - syst_JES_EtaIntercalibration_Stat186: 0.0007195404714121367 - syst_JES_EtaIntercalibration_Stat187: 0.010421246122705287 - syst_JES_EtaIntercalibration_Stat188: 0.009491083025661507 - syst_JES_EtaIntercalibration_Stat189: 0.008003660225171981 - syst_JES_EtaIntercalibration_Stat19: 6.434643948968739e-06 - syst_JES_EtaIntercalibration_Stat190: 0.004659048481181539 - syst_JES_EtaIntercalibration_Stat191: 0.0031224632904167183 - syst_JES_EtaIntercalibration_Stat192: 0.008770056556260057 - syst_JES_EtaIntercalibration_Stat193: 0.0070268014772014165 - syst_JES_EtaIntercalibration_Stat194: 0.004315404587057857 - syst_JES_EtaIntercalibration_Stat195: 0.0046087832133329945 - syst_JES_EtaIntercalibration_Stat196: 0.001304495561510272 - syst_JES_EtaIntercalibration_Stat197: 0.0024719550966795494 - syst_JES_EtaIntercalibration_Stat198: 0.0019567081846816096 - syst_JES_EtaIntercalibration_Stat199: 0.0006968901850363513 - syst_JES_EtaIntercalibration_Stat2: 1.079148011164363e-06 - syst_JES_EtaIntercalibration_Stat20: 1.310975972319859e-06 - syst_JES_EtaIntercalibration_Stat200: 0.001595485408112528 - syst_JES_EtaIntercalibration_Stat201: 0.002720644179234028 - syst_JES_EtaIntercalibration_Stat202: 0.003874578145746966 - syst_JES_EtaIntercalibration_Stat203: 0.0018325306955137204 - syst_JES_EtaIntercalibration_Stat204: 0.0013277030193156903 - syst_JES_EtaIntercalibration_Stat205: 0.0015108757088192267 - syst_JES_EtaIntercalibration_Stat206: 0.002303660131182549 - syst_JES_EtaIntercalibration_Stat207: 0.001867333593657009 - syst_JES_EtaIntercalibration_Stat208: 0.0024101354215064347 - syst_JES_EtaIntercalibration_Stat209: 0.0016106755438324628 - syst_JES_EtaIntercalibration_Stat21: 1.310975972319859e-06 - syst_JES_EtaIntercalibration_Stat210: 0.0005435111222413025 - syst_JES_EtaIntercalibration_Stat211: 0.0014325982365967088 - syst_JES_EtaIntercalibration_Stat212: 0.0017941201708637023 - syst_JES_EtaIntercalibration_Stat213: 0.0002515766831405486 - syst_JES_EtaIntercalibration_Stat214: 0.0003286511942774588 - syst_JES_EtaIntercalibration_Stat215: 0.00045255258733101943 - syst_JES_EtaIntercalibration_Stat216: 0.00019313758696846143 - syst_JES_EtaIntercalibration_Stat217: 0.00036446238146069346 - syst_JES_EtaIntercalibration_Stat218: 0.00010828372453882438 - syst_JES_EtaIntercalibration_Stat219: 0.0003990697909827302 - syst_JES_EtaIntercalibration_Stat22: 1.310975972319859e-06 - syst_JES_EtaIntercalibration_Stat220: 0.0020005769615475933 - syst_JES_EtaIntercalibration_Stat221: 0.0001191977459969357 - syst_JES_EtaIntercalibration_Stat222: 0.00015701040570611873 - syst_JES_EtaIntercalibration_Stat223: 6.135789985812748e-05 - syst_JES_EtaIntercalibration_Stat224: 0.0007110750944872138 - syst_JES_EtaIntercalibration_Stat225: 0.0004388776822760529 - syst_JES_EtaIntercalibration_Stat226: 0.0005750658636191163 - syst_JES_EtaIntercalibration_Stat227: 0.00047692298120346436 - syst_JES_EtaIntercalibration_Stat228: 0.0003710547668471596 - syst_JES_EtaIntercalibration_Stat229: 0.0002059751506857077 - syst_JES_EtaIntercalibration_Stat23: 2.4631309788153777e-05 - syst_JES_EtaIntercalibration_Stat230: 0.0019449893881458584 - syst_JES_EtaIntercalibration_Stat231: 0.00041532152303968065 - syst_JES_EtaIntercalibration_Stat232: 0.0003220592298009793 - syst_JES_EtaIntercalibration_Stat233: 0.0004629443028054239 - syst_JES_EtaIntercalibration_Stat234: 0.0021720142051791466 - syst_JES_EtaIntercalibration_Stat235: 0.00023019859088784623 - syst_JES_EtaIntercalibration_Stat236: 9.446605104480658e-05 - syst_JES_EtaIntercalibration_Stat237: 0.000311025207981604 - syst_JES_EtaIntercalibration_Stat238: 0.0004912298952629002 - syst_JES_EtaIntercalibration_Stat239: 0.00010416553556719227 - syst_JES_EtaIntercalibration_Stat24: 0.00012829538914162114 - syst_JES_EtaIntercalibration_Stat240: 0.0006050005702476651 - syst_JES_EtaIntercalibration_Stat241: 0.0003705722702793613 - syst_JES_EtaIntercalibration_Stat242: 0.0003339748006961004 - syst_JES_EtaIntercalibration_Stat243: 0.0002729712072728551 - syst_JES_EtaIntercalibration_Stat244: 0.00047432188174276755 - syst_JES_EtaIntercalibration_Stat245: 0.0013379822523112929 - syst_JES_EtaIntercalibration_Stat25: 7.36466366289052e-05 - syst_JES_EtaIntercalibration_Stat26: 5.674527577693142e-06 - syst_JES_EtaIntercalibration_Stat27: 4.5433234275692945e-05 - syst_JES_EtaIntercalibration_Stat28: 2.9995240843632178e-05 - syst_JES_EtaIntercalibration_Stat29: 8.046064550449492e-05 - syst_JES_EtaIntercalibration_Stat3: 1.752285834988116e-06 - syst_JES_EtaIntercalibration_Stat30: 0.00015171207446139644 - syst_JES_EtaIntercalibration_Stat31: 0.0002991257386117082 - syst_JES_EtaIntercalibration_Stat32: 0.00020588401996026793 - syst_JES_EtaIntercalibration_Stat33: 0.00025185632447240626 - syst_JES_EtaIntercalibration_Stat34: 0.0005462113203117911 - syst_JES_EtaIntercalibration_Stat35: 0.00026730886980233184 - syst_JES_EtaIntercalibration_Stat36: 0.0010568831395547003 - syst_JES_EtaIntercalibration_Stat37: 0.0018434757965831827 - syst_JES_EtaIntercalibration_Stat38: 0.0001201108700326494 - syst_JES_EtaIntercalibration_Stat39: 0.00010973407891352623 - syst_JES_EtaIntercalibration_Stat4: 8.988893188262946e-07 - syst_JES_EtaIntercalibration_Stat40: 5.368178531867211e-05 - syst_JES_EtaIntercalibration_Stat41: 2.157896030859689e-07 - syst_JES_EtaIntercalibration_Stat42: 3.859009199263459e-06 - syst_JES_EtaIntercalibration_Stat43: 1.310975972319859e-06 - syst_JES_EtaIntercalibration_Stat44: 1.310975972319859e-06 - syst_JES_EtaIntercalibration_Stat45: 1.079148011164363e-06 - syst_JES_EtaIntercalibration_Stat46: 0.00021551686030331826 - syst_JES_EtaIntercalibration_Stat47: 0.00020728808045809098 - syst_JES_EtaIntercalibration_Stat48: 2.7815824632751766e-05 - syst_JES_EtaIntercalibration_Stat49: 8.188620640864981e-05 - syst_JES_EtaIntercalibration_Stat5: 8.028055493081746e-07 - syst_JES_EtaIntercalibration_Stat50: 8.646076378913153e-06 - syst_JES_EtaIntercalibration_Stat51: 0.00015774875815676015 - syst_JES_EtaIntercalibration_Stat52: 0.00013367965439811699 - syst_JES_EtaIntercalibration_Stat53: 0.00031079284483398267 - syst_JES_EtaIntercalibration_Stat54: 0.0003241903260432057 - syst_JES_EtaIntercalibration_Stat55: 0.0004156588508620982 - syst_JES_EtaIntercalibration_Stat56: 0.00018316439263882595 - syst_JES_EtaIntercalibration_Stat57: 2.2798151608189643e-05 - syst_JES_EtaIntercalibration_Stat58: 0.0005313725317515011 - syst_JES_EtaIntercalibration_Stat59: 0.00018578793071671797 - syst_JES_EtaIntercalibration_Stat6: 9.825015050879057e-07 - syst_JES_EtaIntercalibration_Stat60: 7.844158364050282e-06 - syst_JES_EtaIntercalibration_Stat61: 0.0001842875177541876 - syst_JES_EtaIntercalibration_Stat62: 0.00014129301849348394 - syst_JES_EtaIntercalibration_Stat63: 5.063580888243689e-05 - syst_JES_EtaIntercalibration_Stat64: 4.1105434032497455e-07 - syst_JES_EtaIntercalibration_Stat65: 1.310975972319859e-06 - syst_JES_EtaIntercalibration_Stat66: 1.310975972319859e-06 - syst_JES_EtaIntercalibration_Stat67: 0.00017712726131231184 - syst_JES_EtaIntercalibration_Stat68: 0.00026558766443492816 - syst_JES_EtaIntercalibration_Stat69: 0.00032039960596105604 - syst_JES_EtaIntercalibration_Stat7: 3.59580353606812e-06 - syst_JES_EtaIntercalibration_Stat70: 0.00033011940881293243 - syst_JES_EtaIntercalibration_Stat71: 0.00048176883530901004 - syst_JES_EtaIntercalibration_Stat72: 0.0008701679033382005 - syst_JES_EtaIntercalibration_Stat73: 0.0015713904422119285 - syst_JES_EtaIntercalibration_Stat74: 0.0026738391929957196 - syst_JES_EtaIntercalibration_Stat75: 0.00045271708127151555 - syst_JES_EtaIntercalibration_Stat76: 0.002913514124742662 - syst_JES_EtaIntercalibration_Stat77: 0.0009787811131708663 - syst_JES_EtaIntercalibration_Stat78: 0.000705509645575452 - syst_JES_EtaIntercalibration_Stat79: 0.0010546972693621618 - syst_JES_EtaIntercalibration_Stat8: 3.4058071535981015e-05 - syst_JES_EtaIntercalibration_Stat80: 0.004581874370822491 - syst_JES_EtaIntercalibration_Stat81: 0.0029156585448231074 - syst_JES_EtaIntercalibration_Stat82: 0.0017713977722408937 - syst_JES_EtaIntercalibration_Stat83: 0.0004164318494063585 - syst_JES_EtaIntercalibration_Stat84: 0.00027798841356250803 - syst_JES_EtaIntercalibration_Stat85: 7.893908585105355e-05 - syst_JES_EtaIntercalibration_Stat86: 3.422436224387534e-06 - syst_JES_EtaIntercalibration_Stat87: 8.028055493081746e-07 - syst_JES_EtaIntercalibration_Stat88: 6.030212627459894e-05 - syst_JES_EtaIntercalibration_Stat89: 0.0014106048729179974 - syst_JES_EtaIntercalibration_Stat9: 3.364931825089477e-05 - syst_JES_EtaIntercalibration_Stat90: 0.0019014977484867028 - syst_JES_EtaIntercalibration_Stat91: 0.001190711190781375 - syst_JES_EtaIntercalibration_Stat92: 0.0018682202091830611 - syst_JES_EtaIntercalibration_Stat93: 0.0011366159894617002 - syst_JES_EtaIntercalibration_Stat94: 0.0021071154975463493 - syst_JES_EtaIntercalibration_Stat95: 0.0027382335090346114 - syst_JES_EtaIntercalibration_Stat96: 0.004085811669668586 - syst_JES_EtaIntercalibration_Stat97: 0.00371870999138142 - syst_JES_EtaIntercalibration_Stat98: 0.002087776299528999 - syst_JES_EtaIntercalibration_Stat99: 0.0028390554767386985 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.01443621282573792 - syst_JES_Flavour_Comp: 0.14723593311416883 - syst_JES_Flavour_Response: 1.88228106296589 - syst_JES_Gjet_Generator: 1.657217849288379 - syst_JES_Gjet_OOC: 1.0329528195905175 - syst_JES_Gjet_Purity: 0.3464414236202132 - syst_JES_Gjet_Stat1: 0.0014384681956301228 - syst_JES_Gjet_Stat10: 0.10964526255155758 - syst_JES_Gjet_Stat11: 0.10585229366905566 - syst_JES_Gjet_Stat12: 0.035214122167107904 - syst_JES_Gjet_Stat13: 0.011162349248702083 - syst_JES_Gjet_Stat14: 0.006687651605758183 - syst_JES_Gjet_Stat15: 0.0007111203185818838 - syst_JES_Gjet_Stat2: 0.0015791241243170214 - syst_JES_Gjet_Stat3: 0.0034916260896608047 - syst_JES_Gjet_Stat4: 0.005360368177653472 - syst_JES_Gjet_Stat5: 0.006919258558545128 - syst_JES_Gjet_Stat6: 0.019475370984913226 - syst_JES_Gjet_Stat7: 0.037890483379735336 - syst_JES_Gjet_Stat8: 0.033232470191064636 - syst_JES_Gjet_Stat9: 0.07217385728225975 - syst_JES_Gjet_Veto: 0.4318607501267046 - syst_JES_Gjet_dPhi: 0.10142794536024084 - syst_JES_LArESZee: 1.7135001459001982 - syst_JES_LArEsmear: 0.13875462226535015 - syst_JES_LAr_JVT: 0.19962797273929322 - syst_JES_MJB_Alpha: 0.0034860396254202276 - syst_JES_MJB_Asym: 0.006053809771540563 - syst_JES_MJB_Beta: 0.0014827294990995494 - syst_JES_MJB_Fragmentation: 0.016267964431667538 - syst_JES_MJB_Stat1: 0.005714249819530119 - syst_JES_MJB_Stat10: 0.0009821397698393033 - syst_JES_MJB_Stat11: 0.000370399065208734 - syst_JES_MJB_Stat12: 0.0005892640494718815 - syst_JES_MJB_Stat13: 0.0006050005702476651 - syst_JES_MJB_Stat14: 0.0006051419833394473 - syst_JES_MJB_Stat15: 0.00047373658028486675 - syst_JES_MJB_Stat16: 0.00044580002243158306 - syst_JES_MJB_Stat2: 0.003070251577639852 - syst_JES_MJB_Stat3: 0.0028842167047571166 - syst_JES_MJB_Stat4: 0.0019077091464633701 - syst_JES_MJB_Stat5: 0.0010181130035880103 - syst_JES_MJB_Stat6: 0.0010063706971091717 - syst_JES_MJB_Stat7: 0.005652535688299543 - syst_JES_MJB_Stat8: 0.005484653632409252 - syst_JES_MJB_Stat9: 0.0032105228546141827 - syst_JES_MJB_Threshold: 0.002536117321813011 - syst_JES_Pileup_MuOffset: 0.02219336556270815 - syst_JES_Pileup_NPVOffset: 0.07852679670023475 - syst_JES_Pileup_Pt_term: 0.34791830578456207 - syst_JES_Pileup_Rho_topology: 0.5970132829343079 - syst_JES_PunchThrough_MC15: 0.0034404346745723863 - syst_JES_SingleParticle_HighPt: 0.0006051419833394473 - syst_JES_Zjet_MC: 1.5256378174389886 - syst_JES_Zjet_MuScale: 0.1059702584454714 - syst_JES_Zjet_MuSmearID: 0.018969375319182233 - syst_JES_Zjet_MuSmearMS: 0.15922797335895472 - syst_JES_Zjet_OOC: 0.5454840121396776 - syst_JES_Zjet_Stat1: 0.006188984791546995 - syst_JES_Zjet_Stat10: 0.15555194470015474 - syst_JES_Zjet_Stat11: 0.2146522012465747 - syst_JES_Zjet_Stat12: 0.2029790629597053 - syst_JES_Zjet_Stat13: 0.0073290081695956645 - syst_JES_Zjet_Stat2: 0.0016442670616417516 - syst_JES_Zjet_Stat3: 0.00483137690001515 - syst_JES_Zjet_Stat4: 0.004555460761547617 - syst_JES_Zjet_Stat5: 0.005249128499093921 - syst_JES_Zjet_Stat6: 0.009163891463237657 - syst_JES_Zjet_Stat7: 0.011579535741988969 - syst_JES_Zjet_Stat8: 0.01983582869456177 - syst_JES_Zjet_Stat9: 0.06836601842289779 - syst_JES_Zjet_Veto: 0.10867994329681994 - syst_JES_Zjet_dPhi: 0.10454850106529505 + syst_JER_NP8: 3.25530809e-02 + syst_JES_EtaIntercalibration_Modelling: 1.13871894e+00 + syst_JES_EtaIntercalibration_NonClosure: 2.67040685e-01 + syst_JES_EtaIntercalibration_Stat0: 1.31097597e-06 + syst_JES_EtaIntercalibration_Stat1: 8.98889319e-07 + syst_JES_EtaIntercalibration_Stat10: 1.32563291e-06 + syst_JES_EtaIntercalibration_Stat100: 2.32129980e-03 + syst_JES_EtaIntercalibration_Stat101: 4.37954755e-03 + syst_JES_EtaIntercalibration_Stat102: 6.04296225e-03 + syst_JES_EtaIntercalibration_Stat103: 3.31129744e-03 + syst_JES_EtaIntercalibration_Stat104: 5.91785189e-04 + syst_JES_EtaIntercalibration_Stat105: 4.24552389e-04 + syst_JES_EtaIntercalibration_Stat106: 8.04030225e-04 + syst_JES_EtaIntercalibration_Stat107: 5.88477383e-08 + syst_JES_EtaIntercalibration_Stat108: 1.46629102e-03 + syst_JES_EtaIntercalibration_Stat109: 3.46798147e-03 + syst_JES_EtaIntercalibration_Stat11: 5.86940515e-06 + syst_JES_EtaIntercalibration_Stat110: 6.50791610e-03 + syst_JES_EtaIntercalibration_Stat111: 1.10943980e-02 + syst_JES_EtaIntercalibration_Stat112: 1.31004396e-02 + syst_JES_EtaIntercalibration_Stat113: 1.47934242e-02 + syst_JES_EtaIntercalibration_Stat114: 1.43252519e-02 + syst_JES_EtaIntercalibration_Stat115: 1.69412950e-02 + syst_JES_EtaIntercalibration_Stat116: 2.22957956e-02 + syst_JES_EtaIntercalibration_Stat117: 1.84163026e-02 + syst_JES_EtaIntercalibration_Stat118: 1.41701897e-02 + syst_JES_EtaIntercalibration_Stat119: 1.63731205e-02 + syst_JES_EtaIntercalibration_Stat12: 6.73052128e-05 + syst_JES_EtaIntercalibration_Stat120: 2.19302092e-02 + syst_JES_EtaIntercalibration_Stat121: 2.15651635e-02 + syst_JES_EtaIntercalibration_Stat122: 1.83206605e-02 + syst_JES_EtaIntercalibration_Stat123: 1.80592502e-02 + syst_JES_EtaIntercalibration_Stat124: 8.75408893e-03 + syst_JES_EtaIntercalibration_Stat125: 7.49688115e-03 + syst_JES_EtaIntercalibration_Stat126: 5.54525263e-03 + syst_JES_EtaIntercalibration_Stat127: 2.51320572e-06 + syst_JES_EtaIntercalibration_Stat128: 1.16881303e-02 + syst_JES_EtaIntercalibration_Stat129: 5.08129934e-02 + syst_JES_EtaIntercalibration_Stat13: 4.66132243e-06 + syst_JES_EtaIntercalibration_Stat130: 5.31220491e-02 + syst_JES_EtaIntercalibration_Stat131: 4.74108289e-02 + syst_JES_EtaIntercalibration_Stat132: 5.57889655e-02 + syst_JES_EtaIntercalibration_Stat133: 5.17298045e-02 + syst_JES_EtaIntercalibration_Stat134: 8.88722780e-02 + syst_JES_EtaIntercalibration_Stat135: 6.84911556e-02 + syst_JES_EtaIntercalibration_Stat136: 7.31459601e-02 + syst_JES_EtaIntercalibration_Stat137: 6.23454826e-02 + syst_JES_EtaIntercalibration_Stat138: 6.65611754e-02 + syst_JES_EtaIntercalibration_Stat139: 7.16158507e-02 + syst_JES_EtaIntercalibration_Stat14: 4.66815882e-06 + syst_JES_EtaIntercalibration_Stat140: 6.39172440e-02 + syst_JES_EtaIntercalibration_Stat141: 5.53942894e-02 + syst_JES_EtaIntercalibration_Stat142: 3.99912880e-02 + syst_JES_EtaIntercalibration_Stat143: 4.17768106e-02 + syst_JES_EtaIntercalibration_Stat144: 4.64126219e-02 + syst_JES_EtaIntercalibration_Stat145: 1.16598969e-02 + syst_JES_EtaIntercalibration_Stat146: 2.95747675e-03 + syst_JES_EtaIntercalibration_Stat147: 1.25179833e-02 + syst_JES_EtaIntercalibration_Stat148: 1.06901347e-02 + syst_JES_EtaIntercalibration_Stat149: 2.14341287e-02 + syst_JES_EtaIntercalibration_Stat15: 5.03717155e-06 + syst_JES_EtaIntercalibration_Stat150: 1.51230447e-02 + syst_JES_EtaIntercalibration_Stat151: 4.01727423e-02 + syst_JES_EtaIntercalibration_Stat152: 4.21561383e-02 + syst_JES_EtaIntercalibration_Stat153: 4.60615252e-03 + syst_JES_EtaIntercalibration_Stat154: 3.83279334e-02 + syst_JES_EtaIntercalibration_Stat155: 1.80057012e-02 + syst_JES_EtaIntercalibration_Stat156: 1.68182133e-02 + syst_JES_EtaIntercalibration_Stat157: 2.76501008e-02 + syst_JES_EtaIntercalibration_Stat158: 2.40247180e-02 + syst_JES_EtaIntercalibration_Stat159: 1.63581614e-02 + syst_JES_EtaIntercalibration_Stat16: 8.16024216e-07 + syst_JES_EtaIntercalibration_Stat160: 9.43300042e-03 + syst_JES_EtaIntercalibration_Stat161: 1.80192064e-02 + syst_JES_EtaIntercalibration_Stat162: 1.19162227e-02 + syst_JES_EtaIntercalibration_Stat163: 3.63786149e-03 + syst_JES_EtaIntercalibration_Stat164: 2.41388339e-03 + syst_JES_EtaIntercalibration_Stat165: 2.14687698e-04 + syst_JES_EtaIntercalibration_Stat166: 6.05791647e-03 + syst_JES_EtaIntercalibration_Stat167: 4.74794616e-04 + syst_JES_EtaIntercalibration_Stat168: 1.12624451e-02 + syst_JES_EtaIntercalibration_Stat169: 2.00744689e-03 + syst_JES_EtaIntercalibration_Stat17: 1.32522693e-06 + syst_JES_EtaIntercalibration_Stat170: 2.54708004e-02 + syst_JES_EtaIntercalibration_Stat171: 1.59452902e-02 + syst_JES_EtaIntercalibration_Stat172: 4.50549475e-03 + syst_JES_EtaIntercalibration_Stat173: 1.48808183e-02 + syst_JES_EtaIntercalibration_Stat174: 1.41685275e-02 + syst_JES_EtaIntercalibration_Stat175: 1.89294949e-02 + syst_JES_EtaIntercalibration_Stat176: 1.26275506e-02 + syst_JES_EtaIntercalibration_Stat177: 7.75629912e-03 + syst_JES_EtaIntercalibration_Stat178: 7.73966903e-03 + syst_JES_EtaIntercalibration_Stat179: 3.17377386e-03 + syst_JES_EtaIntercalibration_Stat18: 1.31097597e-06 + syst_JES_EtaIntercalibration_Stat180: 3.19051403e-03 + syst_JES_EtaIntercalibration_Stat181: 2.15821398e-03 + syst_JES_EtaIntercalibration_Stat182: 4.26613959e-03 + syst_JES_EtaIntercalibration_Stat183: 2.00043628e-03 + syst_JES_EtaIntercalibration_Stat184: 4.22402234e-03 + syst_JES_EtaIntercalibration_Stat185: 2.87407111e-03 + syst_JES_EtaIntercalibration_Stat186: 7.19540471e-04 + syst_JES_EtaIntercalibration_Stat187: 1.04212461e-02 + syst_JES_EtaIntercalibration_Stat188: 9.49108303e-03 + syst_JES_EtaIntercalibration_Stat189: 8.00366023e-03 + syst_JES_EtaIntercalibration_Stat19: 6.43464395e-06 + syst_JES_EtaIntercalibration_Stat190: 4.65904848e-03 + syst_JES_EtaIntercalibration_Stat191: 3.12246329e-03 + syst_JES_EtaIntercalibration_Stat192: 8.77005656e-03 + syst_JES_EtaIntercalibration_Stat193: 7.02680148e-03 + syst_JES_EtaIntercalibration_Stat194: 4.31540459e-03 + syst_JES_EtaIntercalibration_Stat195: 4.60878321e-03 + syst_JES_EtaIntercalibration_Stat196: 1.30449556e-03 + syst_JES_EtaIntercalibration_Stat197: 2.47195510e-03 + syst_JES_EtaIntercalibration_Stat198: 1.95670818e-03 + syst_JES_EtaIntercalibration_Stat199: 6.96890185e-04 + syst_JES_EtaIntercalibration_Stat2: 1.07914801e-06 + syst_JES_EtaIntercalibration_Stat20: 1.31097597e-06 + syst_JES_EtaIntercalibration_Stat200: 1.59548541e-03 + syst_JES_EtaIntercalibration_Stat201: 2.72064418e-03 + syst_JES_EtaIntercalibration_Stat202: 3.87457815e-03 + syst_JES_EtaIntercalibration_Stat203: 1.83253070e-03 + syst_JES_EtaIntercalibration_Stat204: 1.32770302e-03 + syst_JES_EtaIntercalibration_Stat205: 1.51087571e-03 + syst_JES_EtaIntercalibration_Stat206: 2.30366013e-03 + syst_JES_EtaIntercalibration_Stat207: 1.86733359e-03 + syst_JES_EtaIntercalibration_Stat208: 2.41013542e-03 + syst_JES_EtaIntercalibration_Stat209: 1.61067554e-03 + syst_JES_EtaIntercalibration_Stat21: 1.31097597e-06 + syst_JES_EtaIntercalibration_Stat210: 5.43511122e-04 + syst_JES_EtaIntercalibration_Stat211: 1.43259824e-03 + syst_JES_EtaIntercalibration_Stat212: 1.79412017e-03 + syst_JES_EtaIntercalibration_Stat213: 2.51576683e-04 + syst_JES_EtaIntercalibration_Stat214: 3.28651194e-04 + syst_JES_EtaIntercalibration_Stat215: 4.52552587e-04 + syst_JES_EtaIntercalibration_Stat216: 1.93137587e-04 + syst_JES_EtaIntercalibration_Stat217: 3.64462381e-04 + syst_JES_EtaIntercalibration_Stat218: 1.08283725e-04 + syst_JES_EtaIntercalibration_Stat219: 3.99069791e-04 + syst_JES_EtaIntercalibration_Stat22: 1.31097597e-06 + syst_JES_EtaIntercalibration_Stat220: 2.00057696e-03 + syst_JES_EtaIntercalibration_Stat221: 1.19197746e-04 + syst_JES_EtaIntercalibration_Stat222: 1.57010406e-04 + syst_JES_EtaIntercalibration_Stat223: 6.13578999e-05 + syst_JES_EtaIntercalibration_Stat224: 7.11075094e-04 + syst_JES_EtaIntercalibration_Stat225: 4.38877682e-04 + syst_JES_EtaIntercalibration_Stat226: 5.75065864e-04 + syst_JES_EtaIntercalibration_Stat227: 4.76922981e-04 + syst_JES_EtaIntercalibration_Stat228: 3.71054767e-04 + syst_JES_EtaIntercalibration_Stat229: 2.05975151e-04 + syst_JES_EtaIntercalibration_Stat23: 2.46313098e-05 + syst_JES_EtaIntercalibration_Stat230: 1.94498939e-03 + syst_JES_EtaIntercalibration_Stat231: 4.15321523e-04 + syst_JES_EtaIntercalibration_Stat232: 3.22059230e-04 + syst_JES_EtaIntercalibration_Stat233: 4.62944303e-04 + syst_JES_EtaIntercalibration_Stat234: 2.17201421e-03 + syst_JES_EtaIntercalibration_Stat235: 2.30198591e-04 + syst_JES_EtaIntercalibration_Stat236: 9.44660510e-05 + syst_JES_EtaIntercalibration_Stat237: 3.11025208e-04 + syst_JES_EtaIntercalibration_Stat238: 4.91229895e-04 + syst_JES_EtaIntercalibration_Stat239: 1.04165536e-04 + syst_JES_EtaIntercalibration_Stat24: 1.28295389e-04 + syst_JES_EtaIntercalibration_Stat240: 6.05000570e-04 + syst_JES_EtaIntercalibration_Stat241: 3.70572270e-04 + syst_JES_EtaIntercalibration_Stat242: 3.33974801e-04 + syst_JES_EtaIntercalibration_Stat243: 2.72971207e-04 + syst_JES_EtaIntercalibration_Stat244: 4.74321882e-04 + syst_JES_EtaIntercalibration_Stat245: 1.33798225e-03 + syst_JES_EtaIntercalibration_Stat25: 7.36466366e-05 + syst_JES_EtaIntercalibration_Stat26: 5.67452758e-06 + syst_JES_EtaIntercalibration_Stat27: 4.54332343e-05 + syst_JES_EtaIntercalibration_Stat28: 2.99952408e-05 + syst_JES_EtaIntercalibration_Stat29: 8.04606455e-05 + syst_JES_EtaIntercalibration_Stat3: 1.75228583e-06 + syst_JES_EtaIntercalibration_Stat30: 1.51712074e-04 + syst_JES_EtaIntercalibration_Stat31: 2.99125739e-04 + syst_JES_EtaIntercalibration_Stat32: 2.05884020e-04 + syst_JES_EtaIntercalibration_Stat33: 2.51856324e-04 + syst_JES_EtaIntercalibration_Stat34: 5.46211320e-04 + syst_JES_EtaIntercalibration_Stat35: 2.67308870e-04 + syst_JES_EtaIntercalibration_Stat36: 1.05688314e-03 + syst_JES_EtaIntercalibration_Stat37: 1.84347580e-03 + syst_JES_EtaIntercalibration_Stat38: 1.20110870e-04 + syst_JES_EtaIntercalibration_Stat39: 1.09734079e-04 + syst_JES_EtaIntercalibration_Stat4: 8.98889319e-07 + syst_JES_EtaIntercalibration_Stat40: 5.36817853e-05 + syst_JES_EtaIntercalibration_Stat41: 2.15789603e-07 + syst_JES_EtaIntercalibration_Stat42: 3.85900920e-06 + syst_JES_EtaIntercalibration_Stat43: 1.31097597e-06 + syst_JES_EtaIntercalibration_Stat44: 1.31097597e-06 + syst_JES_EtaIntercalibration_Stat45: 1.07914801e-06 + syst_JES_EtaIntercalibration_Stat46: 2.15516860e-04 + syst_JES_EtaIntercalibration_Stat47: 2.07288080e-04 + syst_JES_EtaIntercalibration_Stat48: 2.78158246e-05 + syst_JES_EtaIntercalibration_Stat49: 8.18862064e-05 + syst_JES_EtaIntercalibration_Stat5: 8.02805549e-07 + syst_JES_EtaIntercalibration_Stat50: 8.64607638e-06 + syst_JES_EtaIntercalibration_Stat51: 1.57748758e-04 + syst_JES_EtaIntercalibration_Stat52: 1.33679654e-04 + syst_JES_EtaIntercalibration_Stat53: 3.10792845e-04 + syst_JES_EtaIntercalibration_Stat54: 3.24190326e-04 + syst_JES_EtaIntercalibration_Stat55: 4.15658851e-04 + syst_JES_EtaIntercalibration_Stat56: 1.83164393e-04 + syst_JES_EtaIntercalibration_Stat57: 2.27981516e-05 + syst_JES_EtaIntercalibration_Stat58: 5.31372532e-04 + syst_JES_EtaIntercalibration_Stat59: 1.85787931e-04 + syst_JES_EtaIntercalibration_Stat6: 9.82501505e-07 + syst_JES_EtaIntercalibration_Stat60: 7.84415836e-06 + syst_JES_EtaIntercalibration_Stat61: 1.84287518e-04 + syst_JES_EtaIntercalibration_Stat62: 1.41293018e-04 + syst_JES_EtaIntercalibration_Stat63: 5.06358089e-05 + syst_JES_EtaIntercalibration_Stat64: 4.11054340e-07 + syst_JES_EtaIntercalibration_Stat65: 1.31097597e-06 + syst_JES_EtaIntercalibration_Stat66: 1.31097597e-06 + syst_JES_EtaIntercalibration_Stat67: 1.77127261e-04 + syst_JES_EtaIntercalibration_Stat68: 2.65587664e-04 + syst_JES_EtaIntercalibration_Stat69: 3.20399606e-04 + syst_JES_EtaIntercalibration_Stat7: 3.59580354e-06 + syst_JES_EtaIntercalibration_Stat70: 3.30119409e-04 + syst_JES_EtaIntercalibration_Stat71: 4.81768835e-04 + syst_JES_EtaIntercalibration_Stat72: 8.70167903e-04 + syst_JES_EtaIntercalibration_Stat73: 1.57139044e-03 + syst_JES_EtaIntercalibration_Stat74: 2.67383919e-03 + syst_JES_EtaIntercalibration_Stat75: 4.52717081e-04 + syst_JES_EtaIntercalibration_Stat76: 2.91351412e-03 + syst_JES_EtaIntercalibration_Stat77: 9.78781113e-04 + syst_JES_EtaIntercalibration_Stat78: 7.05509646e-04 + syst_JES_EtaIntercalibration_Stat79: 1.05469727e-03 + syst_JES_EtaIntercalibration_Stat8: 3.40580715e-05 + syst_JES_EtaIntercalibration_Stat80: 4.58187437e-03 + syst_JES_EtaIntercalibration_Stat81: 2.91565854e-03 + syst_JES_EtaIntercalibration_Stat82: 1.77139777e-03 + syst_JES_EtaIntercalibration_Stat83: 4.16431849e-04 + syst_JES_EtaIntercalibration_Stat84: 2.77988414e-04 + syst_JES_EtaIntercalibration_Stat85: 7.89390859e-05 + syst_JES_EtaIntercalibration_Stat86: 3.42243622e-06 + syst_JES_EtaIntercalibration_Stat87: 8.02805549e-07 + syst_JES_EtaIntercalibration_Stat88: 6.03021263e-05 + syst_JES_EtaIntercalibration_Stat89: 1.41060487e-03 + syst_JES_EtaIntercalibration_Stat9: 3.36493183e-05 + syst_JES_EtaIntercalibration_Stat90: 1.90149775e-03 + syst_JES_EtaIntercalibration_Stat91: 1.19071119e-03 + syst_JES_EtaIntercalibration_Stat92: 1.86822021e-03 + syst_JES_EtaIntercalibration_Stat93: 1.13661599e-03 + syst_JES_EtaIntercalibration_Stat94: 2.10711550e-03 + syst_JES_EtaIntercalibration_Stat95: 2.73823351e-03 + syst_JES_EtaIntercalibration_Stat96: 4.08581167e-03 + syst_JES_EtaIntercalibration_Stat97: 3.71870999e-03 + syst_JES_EtaIntercalibration_Stat98: 2.08777630e-03 + syst_JES_EtaIntercalibration_Stat99: 2.83905548e-03 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.44362128e-02 + syst_JES_Flavour_Comp: 1.47235933e-01 + syst_JES_Flavour_Response: 1.88228106e+00 + syst_JES_Gjet_Generator: 1.65721785e+00 + syst_JES_Gjet_OOC: 1.03295282e+00 + syst_JES_Gjet_Purity: 3.46441424e-01 + syst_JES_Gjet_Stat1: 1.43846820e-03 + syst_JES_Gjet_Stat10: 1.09645263e-01 + syst_JES_Gjet_Stat11: 1.05852294e-01 + syst_JES_Gjet_Stat12: 3.52141222e-02 + syst_JES_Gjet_Stat13: 1.11623492e-02 + syst_JES_Gjet_Stat14: 6.68765161e-03 + syst_JES_Gjet_Stat15: 7.11120319e-04 + syst_JES_Gjet_Stat2: 1.57912412e-03 + syst_JES_Gjet_Stat3: 3.49162609e-03 + syst_JES_Gjet_Stat4: 5.36036818e-03 + syst_JES_Gjet_Stat5: 6.91925856e-03 + syst_JES_Gjet_Stat6: 1.94753710e-02 + syst_JES_Gjet_Stat7: 3.78904834e-02 + syst_JES_Gjet_Stat8: 3.32324702e-02 + syst_JES_Gjet_Stat9: 7.21738573e-02 + syst_JES_Gjet_Veto: 4.31860750e-01 + syst_JES_Gjet_dPhi: 1.01427945e-01 + syst_JES_LArESZee: 1.71350015e+00 + syst_JES_LArEsmear: 1.38754622e-01 + syst_JES_LAr_JVT: 1.99627973e-01 + syst_JES_MJB_Alpha: 3.48603963e-03 + syst_JES_MJB_Asym: 6.05380977e-03 + syst_JES_MJB_Beta: 1.48272950e-03 + syst_JES_MJB_Fragmentation: 1.62679644e-02 + syst_JES_MJB_Stat1: 5.71424982e-03 + syst_JES_MJB_Stat10: 9.82139770e-04 + syst_JES_MJB_Stat11: 3.70399065e-04 + syst_JES_MJB_Stat12: 5.89264049e-04 + syst_JES_MJB_Stat13: 6.05000570e-04 + syst_JES_MJB_Stat14: 6.05141983e-04 + syst_JES_MJB_Stat15: 4.73736580e-04 + syst_JES_MJB_Stat16: 4.45800022e-04 + syst_JES_MJB_Stat2: 3.07025158e-03 + syst_JES_MJB_Stat3: 2.88421670e-03 + syst_JES_MJB_Stat4: 1.90770915e-03 + syst_JES_MJB_Stat5: 1.01811300e-03 + syst_JES_MJB_Stat6: 1.00637070e-03 + syst_JES_MJB_Stat7: 5.65253569e-03 + syst_JES_MJB_Stat8: 5.48465363e-03 + syst_JES_MJB_Stat9: 3.21052285e-03 + syst_JES_MJB_Threshold: 2.53611732e-03 + syst_JES_Pileup_MuOffset: 2.21933656e-02 + syst_JES_Pileup_NPVOffset: 7.85267967e-02 + syst_JES_Pileup_Pt_term: 3.47918306e-01 + syst_JES_Pileup_Rho_topology: 5.97013283e-01 + syst_JES_PunchThrough_MC15: 3.44043467e-03 + syst_JES_SingleParticle_HighPt: 6.05141983e-04 + syst_JES_Zjet_MC: 1.52563782e+00 + syst_JES_Zjet_MuScale: 1.05970258e-01 + syst_JES_Zjet_MuSmearID: 1.89693753e-02 + syst_JES_Zjet_MuSmearMS: 1.59227973e-01 + syst_JES_Zjet_OOC: 5.45484012e-01 + syst_JES_Zjet_Stat1: 6.18898479e-03 + syst_JES_Zjet_Stat10: 1.55551945e-01 + syst_JES_Zjet_Stat11: 2.14652201e-01 + syst_JES_Zjet_Stat12: 2.02979063e-01 + syst_JES_Zjet_Stat13: 7.32900817e-03 + syst_JES_Zjet_Stat2: 1.64426706e-03 + syst_JES_Zjet_Stat3: 4.83137690e-03 + syst_JES_Zjet_Stat4: 4.55546076e-03 + syst_JES_Zjet_Stat5: 5.24912850e-03 + syst_JES_Zjet_Stat6: 9.16389146e-03 + syst_JES_Zjet_Stat7: 1.15795357e-02 + syst_JES_Zjet_Stat8: 1.98358287e-02 + syst_JES_Zjet_Stat9: 6.83660184e-02 + syst_JES_Zjet_Veto: 1.08679943e-01 + syst_JES_Zjet_dPhi: 1.04548501e-01 syst_PRW: 0.0 syst_Unfolding_bias: 0.0 - syst_cleaning: 0.7317048636574722 + syst_cleaning: 7.31704864e-01 syst_lumi: 1.765 - stat: 0.25374 syst_JER_CROSS_CALIB_FORWARD: 0.003596 syst_JER_NOISE_FORWARD: 0.009959 - syst_JER_NP0: 0.15826717916232663 - syst_JER_NP1: 0.018495772489950237 - syst_JER_NP2: 2.0670950631260286e-34 - syst_JER_NP3: 0.042317517649313977 - syst_JER_NP4: 0.014159952966023582 - syst_JER_NP5: 0.005815360586412505 + syst_JER_NP0: 1.58267179e-01 + syst_JER_NP1: 1.84957725e-02 + syst_JER_NP2: 2.06709506e-34 + syst_JER_NP3: 4.23175176e-02 + syst_JER_NP4: 1.41599530e-02 + syst_JER_NP5: 5.81536059e-03 syst_JER_NP6: 0.0 syst_JER_NP7: 0.0 - syst_JER_NP8: 0.01750376750159805 - syst_JES_EtaIntercalibration_Modelling: 0.5375904854068755 - syst_JES_EtaIntercalibration_NonClosure: 0.10366988509205555 - syst_JES_EtaIntercalibration_Stat0: 5.156222648412304e-08 - syst_JES_EtaIntercalibration_Stat1: 3.582838088373517e-08 - syst_JES_EtaIntercalibration_Stat10: 5.231344569037678e-08 - syst_JES_EtaIntercalibration_Stat100: 0.0003310874834163925 - syst_JES_EtaIntercalibration_Stat101: 0.0006679941373245726 - syst_JES_EtaIntercalibration_Stat102: 0.001215574435195147 - syst_JES_EtaIntercalibration_Stat103: 0.0004501977732896954 - syst_JES_EtaIntercalibration_Stat104: 7.571054382812211e-05 - syst_JES_EtaIntercalibration_Stat105: 0.0008090875230776952 - syst_JES_EtaIntercalibration_Stat106: 5.928157443928087e-05 - syst_JES_EtaIntercalibration_Stat107: 1.910806794916744e-09 - syst_JES_EtaIntercalibration_Stat108: 0.0002827302524823794 - syst_JES_EtaIntercalibration_Stat109: 0.001381726390815128 - syst_JES_EtaIntercalibration_Stat11: 3.153787162682352e-07 - syst_JES_EtaIntercalibration_Stat110: 0.0013720646194695057 - syst_JES_EtaIntercalibration_Stat111: 0.002873088016403257 - syst_JES_EtaIntercalibration_Stat112: 0.0029367522878172756 - syst_JES_EtaIntercalibration_Stat113: 0.0026804944972896325 - syst_JES_EtaIntercalibration_Stat114: 0.003066231889469549 - syst_JES_EtaIntercalibration_Stat115: 0.003816644730650208 - syst_JES_EtaIntercalibration_Stat116: 0.005893016969261161 - syst_JES_EtaIntercalibration_Stat117: 0.004993783810899307 - syst_JES_EtaIntercalibration_Stat118: 0.00363287252047192 - syst_JES_EtaIntercalibration_Stat119: 0.003584288597476493 - syst_JES_EtaIntercalibration_Stat12: 1.1717261230765489e-05 - syst_JES_EtaIntercalibration_Stat120: 0.004935831207355049 - syst_JES_EtaIntercalibration_Stat121: 0.004723866080870625 - syst_JES_EtaIntercalibration_Stat122: 0.003997315474165131 - syst_JES_EtaIntercalibration_Stat123: 0.004414438582651252 - syst_JES_EtaIntercalibration_Stat124: 0.0016112203969351928 - syst_JES_EtaIntercalibration_Stat125: 0.0015417393164864157 - syst_JES_EtaIntercalibration_Stat126: 0.0014055556445761938 - syst_JES_EtaIntercalibration_Stat127: 1.0751705387983807e-08 - syst_JES_EtaIntercalibration_Stat128: 0.004807218608509499 - syst_JES_EtaIntercalibration_Stat129: 0.017297672531297385 - syst_JES_EtaIntercalibration_Stat13: 1.7843676386888437e-07 - syst_JES_EtaIntercalibration_Stat130: 0.016818991497708775 - syst_JES_EtaIntercalibration_Stat131: 0.013902617334516549 - syst_JES_EtaIntercalibration_Stat132: 0.017237639049475423 - syst_JES_EtaIntercalibration_Stat133: 0.01854762518491249 - syst_JES_EtaIntercalibration_Stat134: 0.026066439630298574 - syst_JES_EtaIntercalibration_Stat135: 0.020611870366368988 - syst_JES_EtaIntercalibration_Stat136: 0.02140570251124686 - syst_JES_EtaIntercalibration_Stat137: 0.01621088523184345 - syst_JES_EtaIntercalibration_Stat138: 0.021030425578195035 - syst_JES_EtaIntercalibration_Stat139: 0.019542407732927897 - syst_JES_EtaIntercalibration_Stat14: 1.7877832838462272e-07 - syst_JES_EtaIntercalibration_Stat140: 0.01964189591154581 - syst_JES_EtaIntercalibration_Stat141: 0.01693379092229498 - syst_JES_EtaIntercalibration_Stat142: 0.013135602041779432 - syst_JES_EtaIntercalibration_Stat143: 0.01355493175010483 - syst_JES_EtaIntercalibration_Stat144: 0.013812449773664337 - syst_JES_EtaIntercalibration_Stat145: 0.004288985078080828 - syst_JES_EtaIntercalibration_Stat146: 0.0017935381196243572 - syst_JES_EtaIntercalibration_Stat147: 0.006392669630131062 - syst_JES_EtaIntercalibration_Stat148: 0.006844149837635058 - syst_JES_EtaIntercalibration_Stat149: 0.006543687950995219 - syst_JES_EtaIntercalibration_Stat15: 2.5709205880384563e-07 - syst_JES_EtaIntercalibration_Stat150: 0.0033167028929344876 - syst_JES_EtaIntercalibration_Stat151: 0.01478344069389802 - syst_JES_EtaIntercalibration_Stat152: 0.018559743398010656 - syst_JES_EtaIntercalibration_Stat153: 0.0024506580238784848 - syst_JES_EtaIntercalibration_Stat154: 0.014276007390023306 - syst_JES_EtaIntercalibration_Stat155: 0.00807937843339449 - syst_JES_EtaIntercalibration_Stat156: 0.010185324773908783 - syst_JES_EtaIntercalibration_Stat157: 0.010929814408305386 - syst_JES_EtaIntercalibration_Stat158: 0.01297317200995963 - syst_JES_EtaIntercalibration_Stat159: 0.00734205490853889 - syst_JES_EtaIntercalibration_Stat16: 3.2088495332244853e-08 - syst_JES_EtaIntercalibration_Stat160: 0.007803661448320269 - syst_JES_EtaIntercalibration_Stat161: 0.00814510165682418 - syst_JES_EtaIntercalibration_Stat162: 0.00328094432861943 - syst_JES_EtaIntercalibration_Stat163: 0.0015737785740058863 - syst_JES_EtaIntercalibration_Stat164: 0.0013696225465433898 - syst_JES_EtaIntercalibration_Stat165: 0.0001064691631412589 - syst_JES_EtaIntercalibration_Stat166: 0.0041875129552038405 - syst_JES_EtaIntercalibration_Stat167: 0.002364525436884746 - syst_JES_EtaIntercalibration_Stat168: 0.007508244399824769 - syst_JES_EtaIntercalibration_Stat169: 0.0010005191489921618 - syst_JES_EtaIntercalibration_Stat17: 5.209390631350273e-08 - syst_JES_EtaIntercalibration_Stat170: 0.014748602916886736 - syst_JES_EtaIntercalibration_Stat171: 0.010620266337526569 - syst_JES_EtaIntercalibration_Stat172: 0.00426809227872067 - syst_JES_EtaIntercalibration_Stat173: 0.008099769672651191 - syst_JES_EtaIntercalibration_Stat174: 0.01011096546762474 - syst_JES_EtaIntercalibration_Stat175: 0.009755875233288913 - syst_JES_EtaIntercalibration_Stat176: 0.008637164696820365 - syst_JES_EtaIntercalibration_Stat177: 0.005055865214777784 - syst_JES_EtaIntercalibration_Stat178: 0.006055249623260795 - syst_JES_EtaIntercalibration_Stat179: 0.0031572673310950403 - syst_JES_EtaIntercalibration_Stat18: 5.156222648412304e-08 - syst_JES_EtaIntercalibration_Stat180: 0.0017243155946635752 - syst_JES_EtaIntercalibration_Stat181: 0.0005837902748917882 - syst_JES_EtaIntercalibration_Stat182: 0.001827802178211581 - syst_JES_EtaIntercalibration_Stat183: 0.0013345478189415848 - syst_JES_EtaIntercalibration_Stat184: 0.0028045361024597276 - syst_JES_EtaIntercalibration_Stat185: 0.0028885038112316905 - syst_JES_EtaIntercalibration_Stat186: 0.003785422400472634 - syst_JES_EtaIntercalibration_Stat187: 0.007644971288369892 - syst_JES_EtaIntercalibration_Stat188: 0.008265069691176234 - syst_JES_EtaIntercalibration_Stat189: 0.004907529336387099 - syst_JES_EtaIntercalibration_Stat19: 2.439679077255859e-07 - syst_JES_EtaIntercalibration_Stat190: 0.0046285026466450245 - syst_JES_EtaIntercalibration_Stat191: 0.008413140436246148 - syst_JES_EtaIntercalibration_Stat192: 0.007323507817296299 - syst_JES_EtaIntercalibration_Stat193: 0.006296619489853266 - syst_JES_EtaIntercalibration_Stat194: 0.003639038746702211 - syst_JES_EtaIntercalibration_Stat195: 0.0015218968780768294 - syst_JES_EtaIntercalibration_Stat196: 0.0016693169261707017 - syst_JES_EtaIntercalibration_Stat197: 0.0015185812852791252 - syst_JES_EtaIntercalibration_Stat198: 0.00043777979338932495 - syst_JES_EtaIntercalibration_Stat199: 0.0008040539534135753 - syst_JES_EtaIntercalibration_Stat2: 4.181873623150274e-08 - syst_JES_EtaIntercalibration_Stat20: 5.156222648412304e-08 - syst_JES_EtaIntercalibration_Stat200: 0.0005385220363875558 - syst_JES_EtaIntercalibration_Stat201: 0.0020409787921485123 - syst_JES_EtaIntercalibration_Stat202: 0.002710589373180674 - syst_JES_EtaIntercalibration_Stat203: 0.0008633490255974116 - syst_JES_EtaIntercalibration_Stat204: 0.0011961840107190865 - syst_JES_EtaIntercalibration_Stat205: 0.0017881277219482952 - syst_JES_EtaIntercalibration_Stat206: 0.0030176949758880535 - syst_JES_EtaIntercalibration_Stat207: 0.0011014122967808195 - syst_JES_EtaIntercalibration_Stat208: 0.0019286582771450209 - syst_JES_EtaIntercalibration_Stat209: 0.0008074797257516748 - syst_JES_EtaIntercalibration_Stat21: 5.156222648412304e-08 - syst_JES_EtaIntercalibration_Stat210: 0.0009132784259507065 - syst_JES_EtaIntercalibration_Stat211: 0.000585638000389319 - syst_JES_EtaIntercalibration_Stat212: 0.0007782933299855526 - syst_JES_EtaIntercalibration_Stat213: 0.00017771113499159244 - syst_JES_EtaIntercalibration_Stat214: 0.00025317335464064935 - syst_JES_EtaIntercalibration_Stat215: 0.00021134595022143197 - syst_JES_EtaIntercalibration_Stat216: 0.00032073865634656514 - syst_JES_EtaIntercalibration_Stat217: 0.0003805576270422129 - syst_JES_EtaIntercalibration_Stat218: 0.0002884360371035492 - syst_JES_EtaIntercalibration_Stat219: 0.0005409957209396392 - syst_JES_EtaIntercalibration_Stat22: 5.156222648412304e-08 - syst_JES_EtaIntercalibration_Stat220: 0.0011455069740075787 - syst_JES_EtaIntercalibration_Stat221: 0.0003539636389164853 - syst_JES_EtaIntercalibration_Stat222: 7.795094659463732e-05 - syst_JES_EtaIntercalibration_Stat223: 0.00027331761743436907 - syst_JES_EtaIntercalibration_Stat224: 0.0003280259746956024 - syst_JES_EtaIntercalibration_Stat225: 0.0002257543521175173 - syst_JES_EtaIntercalibration_Stat226: 0.0002820471015628418 - syst_JES_EtaIntercalibration_Stat227: 0.00023604389422308725 - syst_JES_EtaIntercalibration_Stat228: 0.00011665751626020503 - syst_JES_EtaIntercalibration_Stat229: 0.0001206043029912283 - syst_JES_EtaIntercalibration_Stat23: 1.3313389038107463e-06 - syst_JES_EtaIntercalibration_Stat230: 0.0009291588320626351 - syst_JES_EtaIntercalibration_Stat231: 0.0001492627277655075 - syst_JES_EtaIntercalibration_Stat232: 0.00019468009322989345 - syst_JES_EtaIntercalibration_Stat233: 0.00022806099989914982 - syst_JES_EtaIntercalibration_Stat234: 0.0010798737055785737 - syst_JES_EtaIntercalibration_Stat235: 0.00011436052328578555 - syst_JES_EtaIntercalibration_Stat236: 4.6600826977640576e-05 - syst_JES_EtaIntercalibration_Stat237: 0.00015440403516424044 - syst_JES_EtaIntercalibration_Stat238: 0.00024368959497688862 - syst_JES_EtaIntercalibration_Stat239: 5.216071005041941e-05 - syst_JES_EtaIntercalibration_Stat24: 1.570258408670369e-05 - syst_JES_EtaIntercalibration_Stat240: 0.0002937681739058879 - syst_JES_EtaIntercalibration_Stat241: 0.00018377059068305787 - syst_JES_EtaIntercalibration_Stat242: 0.00016621121352062863 - syst_JES_EtaIntercalibration_Stat243: 0.0001354463731518862 - syst_JES_EtaIntercalibration_Stat244: 0.0002352255995847391 - syst_JES_EtaIntercalibration_Stat245: 0.0006655881816108216 - syst_JES_EtaIntercalibration_Stat25: 1.240381894538936e-05 - syst_JES_EtaIntercalibration_Stat26: 3.11249284135723e-07 - syst_JES_EtaIntercalibration_Stat27: 6.0609813865000435e-06 - syst_JES_EtaIntercalibration_Stat28: 2.857555716320331e-06 - syst_JES_EtaIntercalibration_Stat29: 1.5195894577154713e-05 - syst_JES_EtaIntercalibration_Stat3: 6.717932047884974e-08 - syst_JES_EtaIntercalibration_Stat30: 1.5114003440518332e-05 - syst_JES_EtaIntercalibration_Stat31: 0.00021664889637383343 - syst_JES_EtaIntercalibration_Stat32: 0.00010404050785631528 - syst_JES_EtaIntercalibration_Stat33: 1.5380874877587427e-05 - syst_JES_EtaIntercalibration_Stat34: 0.0001111670385894578 - syst_JES_EtaIntercalibration_Stat35: 5.4525180358436225e-05 - syst_JES_EtaIntercalibration_Stat36: 7.756606522829426e-05 - syst_JES_EtaIntercalibration_Stat37: 0.0003775553247558661 - syst_JES_EtaIntercalibration_Stat38: 3.782009089095371e-05 - syst_JES_EtaIntercalibration_Stat39: 3.884989961376992e-05 - syst_JES_EtaIntercalibration_Stat4: 3.582838088373517e-08 - syst_JES_EtaIntercalibration_Stat40: 3.984760093154919e-06 - syst_JES_EtaIntercalibration_Stat41: 6.99600562821386e-09 - syst_JES_EtaIntercalibration_Stat42: 1.4696451102221923e-07 - syst_JES_EtaIntercalibration_Stat43: 5.156222648412304e-08 - syst_JES_EtaIntercalibration_Stat44: 5.156222648412304e-08 - syst_JES_EtaIntercalibration_Stat45: 4.181873623150274e-08 - syst_JES_EtaIntercalibration_Stat46: 1.2847510353480943e-05 - syst_JES_EtaIntercalibration_Stat47: 5.9875661165451854e-05 - syst_JES_EtaIntercalibration_Stat48: 1.1618317638539584e-05 - syst_JES_EtaIntercalibration_Stat49: 1.3847760660391989e-05 - syst_JES_EtaIntercalibration_Stat5: 3.157528622198063e-08 - syst_JES_EtaIntercalibration_Stat50: 0.00022764845223886322 - syst_JES_EtaIntercalibration_Stat51: 5.5569165010822324e-05 - syst_JES_EtaIntercalibration_Stat52: 1.9864769807878468e-05 - syst_JES_EtaIntercalibration_Stat53: 0.0002135949971324235 - syst_JES_EtaIntercalibration_Stat54: 0.0002164473839065744 - syst_JES_EtaIntercalibration_Stat55: 1.4962857172010966e-05 - syst_JES_EtaIntercalibration_Stat56: 1.8542502527976097e-05 - syst_JES_EtaIntercalibration_Stat57: 0.00011649335217084278 - syst_JES_EtaIntercalibration_Stat58: 9.551212632435736e-05 - syst_JES_EtaIntercalibration_Stat59: 5.327465970562365e-05 - syst_JES_EtaIntercalibration_Stat6: 3.772971507976174e-08 - syst_JES_EtaIntercalibration_Stat60: 2.9343775418434144e-07 - syst_JES_EtaIntercalibration_Stat61: 4.1597615316265423e-05 - syst_JES_EtaIntercalibration_Stat62: 1.253329105821771e-05 - syst_JES_EtaIntercalibration_Stat63: 4.8266212582908105e-06 - syst_JES_EtaIntercalibration_Stat64: 1.542827235953527e-08 - syst_JES_EtaIntercalibration_Stat65: 5.156222648412304e-08 - syst_JES_EtaIntercalibration_Stat66: 5.156222648412304e-08 - syst_JES_EtaIntercalibration_Stat67: 2.1073406748791237e-05 - syst_JES_EtaIntercalibration_Stat68: 0.00010960115738439992 - syst_JES_EtaIntercalibration_Stat69: 8.047037405157255e-05 - syst_JES_EtaIntercalibration_Stat7: 1.888900704113374e-07 - syst_JES_EtaIntercalibration_Stat70: 0.0001093553528639545 - syst_JES_EtaIntercalibration_Stat71: 0.00010199406404296281 - syst_JES_EtaIntercalibration_Stat72: 0.00022333233241069236 - syst_JES_EtaIntercalibration_Stat73: 1.7863021210030516e-05 - syst_JES_EtaIntercalibration_Stat74: 0.00012897854162611703 - syst_JES_EtaIntercalibration_Stat75: 5.158836181737117e-06 - syst_JES_EtaIntercalibration_Stat76: 0.0004826842154815092 - syst_JES_EtaIntercalibration_Stat77: 2.7851852272335498e-05 - syst_JES_EtaIntercalibration_Stat78: 3.2446902394527586e-05 - syst_JES_EtaIntercalibration_Stat79: 0.00011411011655414256 - syst_JES_EtaIntercalibration_Stat8: 3.140962073951228e-06 - syst_JES_EtaIntercalibration_Stat80: 0.0007895091133102898 - syst_JES_EtaIntercalibration_Stat81: 0.0005876693458059557 - syst_JES_EtaIntercalibration_Stat82: 0.00027418693563880834 - syst_JES_EtaIntercalibration_Stat83: 2.254866627430545e-05 - syst_JES_EtaIntercalibration_Stat84: 5.611965449751093e-05 - syst_JES_EtaIntercalibration_Stat85: 1.717693484734689e-05 - syst_JES_EtaIntercalibration_Stat86: 1.861057842377555e-07 - syst_JES_EtaIntercalibration_Stat87: 3.157528622198063e-08 - syst_JES_EtaIntercalibration_Stat88: 1.1946283605988099e-05 - syst_JES_EtaIntercalibration_Stat89: 0.0002493353314313878 - syst_JES_EtaIntercalibration_Stat9: 3.1517572051159018e-06 - syst_JES_EtaIntercalibration_Stat90: 0.00040845153935320164 - syst_JES_EtaIntercalibration_Stat91: 0.00015721622204785358 - syst_JES_EtaIntercalibration_Stat92: 0.00015121911254864577 - syst_JES_EtaIntercalibration_Stat93: 0.00021781855218277435 - syst_JES_EtaIntercalibration_Stat94: 4.103529060455159e-05 - syst_JES_EtaIntercalibration_Stat95: 0.00019070374111432634 - syst_JES_EtaIntercalibration_Stat96: 0.0005923000675333407 - syst_JES_EtaIntercalibration_Stat97: 0.000687067488006091 - syst_JES_EtaIntercalibration_Stat98: 0.000316501774402609 - syst_JES_EtaIntercalibration_Stat99: 0.00035961554732102447 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.01715959844372822 - syst_JES_Flavour_Comp: 0.09457854870423843 - syst_JES_Flavour_Response: 0.8206278145420127 - syst_JES_Gjet_Generator: 0.7803126729074698 - syst_JES_Gjet_OOC: 0.4987297464559338 - syst_JES_Gjet_Purity: 0.15606308820473855 - syst_JES_Gjet_Stat1: 0.0007129967453270492 - syst_JES_Gjet_Stat10: 0.04740319688586415 - syst_JES_Gjet_Stat11: 0.05900498008642999 - syst_JES_Gjet_Stat12: 0.03367015471823674 - syst_JES_Gjet_Stat13: 0.005446292563524292 - syst_JES_Gjet_Stat14: 0.009375263556295364 - syst_JES_Gjet_Stat15: 0.0011067331690610884 - syst_JES_Gjet_Stat2: 0.0007831680471010036 - syst_JES_Gjet_Stat3: 0.0013876345655467078 - syst_JES_Gjet_Stat4: 0.0023326067028112563 - syst_JES_Gjet_Stat5: 0.0026733586123077464 - syst_JES_Gjet_Stat6: 0.005611920259590294 - syst_JES_Gjet_Stat7: 0.010970090462252351 - syst_JES_Gjet_Stat8: 0.01097253930273207 - syst_JES_Gjet_Stat9: 0.02610880885831447 - syst_JES_Gjet_Veto: 0.20731123341488278 - syst_JES_Gjet_dPhi: 0.03736924771787626 - syst_JES_LArESZee: 0.8845229561746829 - syst_JES_LArEsmear: 0.06372898947888629 - syst_JES_LAr_JVT: 0.09379440854869762 - syst_JES_MJB_Alpha: 0.0018375891896721638 - syst_JES_MJB_Asym: 0.004709345945033132 - syst_JES_MJB_Beta: 0.0010690669249396878 - syst_JES_MJB_Fragmentation: 0.016635859423245917 - syst_JES_MJB_Stat1: 0.003084070038115218 - syst_JES_MJB_Stat10: 0.000481271448872671 - syst_JES_MJB_Stat11: 0.0001751106940568156 - syst_JES_MJB_Stat12: 0.00028510573477220696 - syst_JES_MJB_Stat13: 0.00029425782487471766 - syst_JES_MJB_Stat14: 0.0003002375392918081 - syst_JES_MJB_Stat15: 0.00023507344979814285 - syst_JES_MJB_Stat16: 0.00022122020974585483 - syst_JES_MJB_Stat2: 0.0013059153533058717 - syst_JES_MJB_Stat3: 0.0009593138798120247 - syst_JES_MJB_Stat4: 0.0005918956749292902 - syst_JES_MJB_Stat5: 0.0003895549772496816 - syst_JES_MJB_Stat6: 0.00046914625384841346 - syst_JES_MJB_Stat7: 0.0028167604064776256 - syst_JES_MJB_Stat8: 0.0027293507414768076 - syst_JES_MJB_Stat9: 0.0015916909899537663 - syst_JES_MJB_Threshold: 0.0007012521586419538 - syst_JES_Pileup_MuOffset: 0.017777409822581015 - syst_JES_Pileup_NPVOffset: 0.04520793123722871 - syst_JES_Pileup_Pt_term: 0.1683212107846186 - syst_JES_Pileup_Rho_topology: 0.26136771032398015 - syst_JES_PunchThrough_MC15: 0.003729788599907507 - syst_JES_SingleParticle_HighPt: 0.0003002375392918081 - syst_JES_Zjet_MC: 0.7283082091395098 - syst_JES_Zjet_MuScale: 0.04303468601024063 - syst_JES_Zjet_MuSmearID: 0.006562927757487507 - syst_JES_Zjet_MuSmearMS: 0.08558330912041201 - syst_JES_Zjet_OOC: 0.24917662410426866 - syst_JES_Zjet_Stat1: 0.0027311849076911655 - syst_JES_Zjet_Stat10: 0.0537264988157613 - syst_JES_Zjet_Stat11: 0.08579637798298946 - syst_JES_Zjet_Stat12: 0.1441562912258775 - syst_JES_Zjet_Stat13: 0.013504604797993905 - syst_JES_Zjet_Stat2: 0.001044663960838604 - syst_JES_Zjet_Stat3: 0.0015936451141957547 - syst_JES_Zjet_Stat4: 0.0015799411278588833 - syst_JES_Zjet_Stat5: 0.0023459008397628406 - syst_JES_Zjet_Stat6: 0.002877082944581195 - syst_JES_Zjet_Stat7: 0.0032790686177632824 - syst_JES_Zjet_Stat8: 0.006173105620350262 - syst_JES_Zjet_Stat9: 0.02122380915387245 - syst_JES_Zjet_Veto: 0.04696066093018709 - syst_JES_Zjet_dPhi: 0.04179562058397985 + syst_JER_NP8: 1.75037675e-02 + syst_JES_EtaIntercalibration_Modelling: 5.37590485e-01 + syst_JES_EtaIntercalibration_NonClosure: 1.03669885e-01 + syst_JES_EtaIntercalibration_Stat0: 5.15622265e-08 + syst_JES_EtaIntercalibration_Stat1: 3.58283809e-08 + syst_JES_EtaIntercalibration_Stat10: 5.23134457e-08 + syst_JES_EtaIntercalibration_Stat100: 3.31087483e-04 + syst_JES_EtaIntercalibration_Stat101: 6.67994137e-04 + syst_JES_EtaIntercalibration_Stat102: 1.21557444e-03 + syst_JES_EtaIntercalibration_Stat103: 4.50197773e-04 + syst_JES_EtaIntercalibration_Stat104: 7.57105438e-05 + syst_JES_EtaIntercalibration_Stat105: 8.09087523e-04 + syst_JES_EtaIntercalibration_Stat106: 5.92815744e-05 + syst_JES_EtaIntercalibration_Stat107: 1.91080679e-09 + syst_JES_EtaIntercalibration_Stat108: 2.82730252e-04 + syst_JES_EtaIntercalibration_Stat109: 1.38172639e-03 + syst_JES_EtaIntercalibration_Stat11: 3.15378716e-07 + syst_JES_EtaIntercalibration_Stat110: 1.37206462e-03 + syst_JES_EtaIntercalibration_Stat111: 2.87308802e-03 + syst_JES_EtaIntercalibration_Stat112: 2.93675229e-03 + syst_JES_EtaIntercalibration_Stat113: 2.68049450e-03 + syst_JES_EtaIntercalibration_Stat114: 3.06623189e-03 + syst_JES_EtaIntercalibration_Stat115: 3.81664473e-03 + syst_JES_EtaIntercalibration_Stat116: 5.89301697e-03 + syst_JES_EtaIntercalibration_Stat117: 4.99378381e-03 + syst_JES_EtaIntercalibration_Stat118: 3.63287252e-03 + syst_JES_EtaIntercalibration_Stat119: 3.58428860e-03 + syst_JES_EtaIntercalibration_Stat12: 1.17172612e-05 + syst_JES_EtaIntercalibration_Stat120: 4.93583121e-03 + syst_JES_EtaIntercalibration_Stat121: 4.72386608e-03 + syst_JES_EtaIntercalibration_Stat122: 3.99731547e-03 + syst_JES_EtaIntercalibration_Stat123: 4.41443858e-03 + syst_JES_EtaIntercalibration_Stat124: 1.61122040e-03 + syst_JES_EtaIntercalibration_Stat125: 1.54173932e-03 + syst_JES_EtaIntercalibration_Stat126: 1.40555564e-03 + syst_JES_EtaIntercalibration_Stat127: 1.07517054e-08 + syst_JES_EtaIntercalibration_Stat128: 4.80721861e-03 + syst_JES_EtaIntercalibration_Stat129: 1.72976725e-02 + syst_JES_EtaIntercalibration_Stat13: 1.78436764e-07 + syst_JES_EtaIntercalibration_Stat130: 1.68189915e-02 + syst_JES_EtaIntercalibration_Stat131: 1.39026173e-02 + syst_JES_EtaIntercalibration_Stat132: 1.72376390e-02 + syst_JES_EtaIntercalibration_Stat133: 1.85476252e-02 + syst_JES_EtaIntercalibration_Stat134: 2.60664396e-02 + syst_JES_EtaIntercalibration_Stat135: 2.06118704e-02 + syst_JES_EtaIntercalibration_Stat136: 2.14057025e-02 + syst_JES_EtaIntercalibration_Stat137: 1.62108852e-02 + syst_JES_EtaIntercalibration_Stat138: 2.10304256e-02 + syst_JES_EtaIntercalibration_Stat139: 1.95424077e-02 + syst_JES_EtaIntercalibration_Stat14: 1.78778328e-07 + syst_JES_EtaIntercalibration_Stat140: 1.96418959e-02 + syst_JES_EtaIntercalibration_Stat141: 1.69337909e-02 + syst_JES_EtaIntercalibration_Stat142: 1.31356020e-02 + syst_JES_EtaIntercalibration_Stat143: 1.35549318e-02 + syst_JES_EtaIntercalibration_Stat144: 1.38124498e-02 + syst_JES_EtaIntercalibration_Stat145: 4.28898508e-03 + syst_JES_EtaIntercalibration_Stat146: 1.79353812e-03 + syst_JES_EtaIntercalibration_Stat147: 6.39266963e-03 + syst_JES_EtaIntercalibration_Stat148: 6.84414984e-03 + syst_JES_EtaIntercalibration_Stat149: 6.54368795e-03 + syst_JES_EtaIntercalibration_Stat15: 2.57092059e-07 + syst_JES_EtaIntercalibration_Stat150: 3.31670289e-03 + syst_JES_EtaIntercalibration_Stat151: 1.47834407e-02 + syst_JES_EtaIntercalibration_Stat152: 1.85597434e-02 + syst_JES_EtaIntercalibration_Stat153: 2.45065802e-03 + syst_JES_EtaIntercalibration_Stat154: 1.42760074e-02 + syst_JES_EtaIntercalibration_Stat155: 8.07937843e-03 + syst_JES_EtaIntercalibration_Stat156: 1.01853248e-02 + syst_JES_EtaIntercalibration_Stat157: 1.09298144e-02 + syst_JES_EtaIntercalibration_Stat158: 1.29731720e-02 + syst_JES_EtaIntercalibration_Stat159: 7.34205491e-03 + syst_JES_EtaIntercalibration_Stat16: 3.20884953e-08 + syst_JES_EtaIntercalibration_Stat160: 7.80366145e-03 + syst_JES_EtaIntercalibration_Stat161: 8.14510166e-03 + syst_JES_EtaIntercalibration_Stat162: 3.28094433e-03 + syst_JES_EtaIntercalibration_Stat163: 1.57377857e-03 + syst_JES_EtaIntercalibration_Stat164: 1.36962255e-03 + syst_JES_EtaIntercalibration_Stat165: 1.06469163e-04 + syst_JES_EtaIntercalibration_Stat166: 4.18751296e-03 + syst_JES_EtaIntercalibration_Stat167: 2.36452544e-03 + syst_JES_EtaIntercalibration_Stat168: 7.50824440e-03 + syst_JES_EtaIntercalibration_Stat169: 1.00051915e-03 + syst_JES_EtaIntercalibration_Stat17: 5.20939063e-08 + syst_JES_EtaIntercalibration_Stat170: 1.47486029e-02 + syst_JES_EtaIntercalibration_Stat171: 1.06202663e-02 + syst_JES_EtaIntercalibration_Stat172: 4.26809228e-03 + syst_JES_EtaIntercalibration_Stat173: 8.09976967e-03 + syst_JES_EtaIntercalibration_Stat174: 1.01109655e-02 + syst_JES_EtaIntercalibration_Stat175: 9.75587523e-03 + syst_JES_EtaIntercalibration_Stat176: 8.63716470e-03 + syst_JES_EtaIntercalibration_Stat177: 5.05586521e-03 + syst_JES_EtaIntercalibration_Stat178: 6.05524962e-03 + syst_JES_EtaIntercalibration_Stat179: 3.15726733e-03 + syst_JES_EtaIntercalibration_Stat18: 5.15622265e-08 + syst_JES_EtaIntercalibration_Stat180: 1.72431559e-03 + syst_JES_EtaIntercalibration_Stat181: 5.83790275e-04 + syst_JES_EtaIntercalibration_Stat182: 1.82780218e-03 + syst_JES_EtaIntercalibration_Stat183: 1.33454782e-03 + syst_JES_EtaIntercalibration_Stat184: 2.80453610e-03 + syst_JES_EtaIntercalibration_Stat185: 2.88850381e-03 + syst_JES_EtaIntercalibration_Stat186: 3.78542240e-03 + syst_JES_EtaIntercalibration_Stat187: 7.64497129e-03 + syst_JES_EtaIntercalibration_Stat188: 8.26506969e-03 + syst_JES_EtaIntercalibration_Stat189: 4.90752934e-03 + syst_JES_EtaIntercalibration_Stat19: 2.43967908e-07 + syst_JES_EtaIntercalibration_Stat190: 4.62850265e-03 + syst_JES_EtaIntercalibration_Stat191: 8.41314044e-03 + syst_JES_EtaIntercalibration_Stat192: 7.32350782e-03 + syst_JES_EtaIntercalibration_Stat193: 6.29661949e-03 + syst_JES_EtaIntercalibration_Stat194: 3.63903875e-03 + syst_JES_EtaIntercalibration_Stat195: 1.52189688e-03 + syst_JES_EtaIntercalibration_Stat196: 1.66931693e-03 + syst_JES_EtaIntercalibration_Stat197: 1.51858129e-03 + syst_JES_EtaIntercalibration_Stat198: 4.37779793e-04 + syst_JES_EtaIntercalibration_Stat199: 8.04053953e-04 + syst_JES_EtaIntercalibration_Stat2: 4.18187362e-08 + syst_JES_EtaIntercalibration_Stat20: 5.15622265e-08 + syst_JES_EtaIntercalibration_Stat200: 5.38522036e-04 + syst_JES_EtaIntercalibration_Stat201: 2.04097879e-03 + syst_JES_EtaIntercalibration_Stat202: 2.71058937e-03 + syst_JES_EtaIntercalibration_Stat203: 8.63349026e-04 + syst_JES_EtaIntercalibration_Stat204: 1.19618401e-03 + syst_JES_EtaIntercalibration_Stat205: 1.78812772e-03 + syst_JES_EtaIntercalibration_Stat206: 3.01769498e-03 + syst_JES_EtaIntercalibration_Stat207: 1.10141230e-03 + syst_JES_EtaIntercalibration_Stat208: 1.92865828e-03 + syst_JES_EtaIntercalibration_Stat209: 8.07479726e-04 + syst_JES_EtaIntercalibration_Stat21: 5.15622265e-08 + syst_JES_EtaIntercalibration_Stat210: 9.13278426e-04 + syst_JES_EtaIntercalibration_Stat211: 5.85638000e-04 + syst_JES_EtaIntercalibration_Stat212: 7.78293330e-04 + syst_JES_EtaIntercalibration_Stat213: 1.77711135e-04 + syst_JES_EtaIntercalibration_Stat214: 2.53173355e-04 + syst_JES_EtaIntercalibration_Stat215: 2.11345950e-04 + syst_JES_EtaIntercalibration_Stat216: 3.20738656e-04 + syst_JES_EtaIntercalibration_Stat217: 3.80557627e-04 + syst_JES_EtaIntercalibration_Stat218: 2.88436037e-04 + syst_JES_EtaIntercalibration_Stat219: 5.40995721e-04 + syst_JES_EtaIntercalibration_Stat22: 5.15622265e-08 + syst_JES_EtaIntercalibration_Stat220: 1.14550697e-03 + syst_JES_EtaIntercalibration_Stat221: 3.53963639e-04 + syst_JES_EtaIntercalibration_Stat222: 7.79509466e-05 + syst_JES_EtaIntercalibration_Stat223: 2.73317617e-04 + syst_JES_EtaIntercalibration_Stat224: 3.28025975e-04 + syst_JES_EtaIntercalibration_Stat225: 2.25754352e-04 + syst_JES_EtaIntercalibration_Stat226: 2.82047102e-04 + syst_JES_EtaIntercalibration_Stat227: 2.36043894e-04 + syst_JES_EtaIntercalibration_Stat228: 1.16657516e-04 + syst_JES_EtaIntercalibration_Stat229: 1.20604303e-04 + syst_JES_EtaIntercalibration_Stat23: 1.33133890e-06 + syst_JES_EtaIntercalibration_Stat230: 9.29158832e-04 + syst_JES_EtaIntercalibration_Stat231: 1.49262728e-04 + syst_JES_EtaIntercalibration_Stat232: 1.94680093e-04 + syst_JES_EtaIntercalibration_Stat233: 2.28061000e-04 + syst_JES_EtaIntercalibration_Stat234: 1.07987371e-03 + syst_JES_EtaIntercalibration_Stat235: 1.14360523e-04 + syst_JES_EtaIntercalibration_Stat236: 4.66008270e-05 + syst_JES_EtaIntercalibration_Stat237: 1.54404035e-04 + syst_JES_EtaIntercalibration_Stat238: 2.43689595e-04 + syst_JES_EtaIntercalibration_Stat239: 5.21607101e-05 + syst_JES_EtaIntercalibration_Stat24: 1.57025841e-05 + syst_JES_EtaIntercalibration_Stat240: 2.93768174e-04 + syst_JES_EtaIntercalibration_Stat241: 1.83770591e-04 + syst_JES_EtaIntercalibration_Stat242: 1.66211214e-04 + syst_JES_EtaIntercalibration_Stat243: 1.35446373e-04 + syst_JES_EtaIntercalibration_Stat244: 2.35225600e-04 + syst_JES_EtaIntercalibration_Stat245: 6.65588182e-04 + syst_JES_EtaIntercalibration_Stat25: 1.24038189e-05 + syst_JES_EtaIntercalibration_Stat26: 3.11249284e-07 + syst_JES_EtaIntercalibration_Stat27: 6.06098139e-06 + syst_JES_EtaIntercalibration_Stat28: 2.85755572e-06 + syst_JES_EtaIntercalibration_Stat29: 1.51958946e-05 + syst_JES_EtaIntercalibration_Stat3: 6.71793205e-08 + syst_JES_EtaIntercalibration_Stat30: 1.51140034e-05 + syst_JES_EtaIntercalibration_Stat31: 2.16648896e-04 + syst_JES_EtaIntercalibration_Stat32: 1.04040508e-04 + syst_JES_EtaIntercalibration_Stat33: 1.53808749e-05 + syst_JES_EtaIntercalibration_Stat34: 1.11167039e-04 + syst_JES_EtaIntercalibration_Stat35: 5.45251804e-05 + syst_JES_EtaIntercalibration_Stat36: 7.75660652e-05 + syst_JES_EtaIntercalibration_Stat37: 3.77555325e-04 + syst_JES_EtaIntercalibration_Stat38: 3.78200909e-05 + syst_JES_EtaIntercalibration_Stat39: 3.88498996e-05 + syst_JES_EtaIntercalibration_Stat4: 3.58283809e-08 + syst_JES_EtaIntercalibration_Stat40: 3.98476009e-06 + syst_JES_EtaIntercalibration_Stat41: 6.99600563e-09 + syst_JES_EtaIntercalibration_Stat42: 1.46964511e-07 + syst_JES_EtaIntercalibration_Stat43: 5.15622265e-08 + syst_JES_EtaIntercalibration_Stat44: 5.15622265e-08 + syst_JES_EtaIntercalibration_Stat45: 4.18187362e-08 + syst_JES_EtaIntercalibration_Stat46: 1.28475104e-05 + syst_JES_EtaIntercalibration_Stat47: 5.98756612e-05 + syst_JES_EtaIntercalibration_Stat48: 1.16183176e-05 + syst_JES_EtaIntercalibration_Stat49: 1.38477607e-05 + syst_JES_EtaIntercalibration_Stat5: 3.15752862e-08 + syst_JES_EtaIntercalibration_Stat50: 2.27648452e-04 + syst_JES_EtaIntercalibration_Stat51: 5.55691650e-05 + syst_JES_EtaIntercalibration_Stat52: 1.98647698e-05 + syst_JES_EtaIntercalibration_Stat53: 2.13594997e-04 + syst_JES_EtaIntercalibration_Stat54: 2.16447384e-04 + syst_JES_EtaIntercalibration_Stat55: 1.49628572e-05 + syst_JES_EtaIntercalibration_Stat56: 1.85425025e-05 + syst_JES_EtaIntercalibration_Stat57: 1.16493352e-04 + syst_JES_EtaIntercalibration_Stat58: 9.55121263e-05 + syst_JES_EtaIntercalibration_Stat59: 5.32746597e-05 + syst_JES_EtaIntercalibration_Stat6: 3.77297151e-08 + syst_JES_EtaIntercalibration_Stat60: 2.93437754e-07 + syst_JES_EtaIntercalibration_Stat61: 4.15976153e-05 + syst_JES_EtaIntercalibration_Stat62: 1.25332911e-05 + syst_JES_EtaIntercalibration_Stat63: 4.82662126e-06 + syst_JES_EtaIntercalibration_Stat64: 1.54282724e-08 + syst_JES_EtaIntercalibration_Stat65: 5.15622265e-08 + syst_JES_EtaIntercalibration_Stat66: 5.15622265e-08 + syst_JES_EtaIntercalibration_Stat67: 2.10734067e-05 + syst_JES_EtaIntercalibration_Stat68: 1.09601157e-04 + syst_JES_EtaIntercalibration_Stat69: 8.04703741e-05 + syst_JES_EtaIntercalibration_Stat7: 1.88890070e-07 + syst_JES_EtaIntercalibration_Stat70: 1.09355353e-04 + syst_JES_EtaIntercalibration_Stat71: 1.01994064e-04 + syst_JES_EtaIntercalibration_Stat72: 2.23332332e-04 + syst_JES_EtaIntercalibration_Stat73: 1.78630212e-05 + syst_JES_EtaIntercalibration_Stat74: 1.28978542e-04 + syst_JES_EtaIntercalibration_Stat75: 5.15883618e-06 + syst_JES_EtaIntercalibration_Stat76: 4.82684215e-04 + syst_JES_EtaIntercalibration_Stat77: 2.78518523e-05 + syst_JES_EtaIntercalibration_Stat78: 3.24469024e-05 + syst_JES_EtaIntercalibration_Stat79: 1.14110117e-04 + syst_JES_EtaIntercalibration_Stat8: 3.14096207e-06 + syst_JES_EtaIntercalibration_Stat80: 7.89509113e-04 + syst_JES_EtaIntercalibration_Stat81: 5.87669346e-04 + syst_JES_EtaIntercalibration_Stat82: 2.74186936e-04 + syst_JES_EtaIntercalibration_Stat83: 2.25486663e-05 + syst_JES_EtaIntercalibration_Stat84: 5.61196545e-05 + syst_JES_EtaIntercalibration_Stat85: 1.71769348e-05 + syst_JES_EtaIntercalibration_Stat86: 1.86105784e-07 + syst_JES_EtaIntercalibration_Stat87: 3.15752862e-08 + syst_JES_EtaIntercalibration_Stat88: 1.19462836e-05 + syst_JES_EtaIntercalibration_Stat89: 2.49335331e-04 + syst_JES_EtaIntercalibration_Stat9: 3.15175721e-06 + syst_JES_EtaIntercalibration_Stat90: 4.08451539e-04 + syst_JES_EtaIntercalibration_Stat91: 1.57216222e-04 + syst_JES_EtaIntercalibration_Stat92: 1.51219113e-04 + syst_JES_EtaIntercalibration_Stat93: 2.17818552e-04 + syst_JES_EtaIntercalibration_Stat94: 4.10352906e-05 + syst_JES_EtaIntercalibration_Stat95: 1.90703741e-04 + syst_JES_EtaIntercalibration_Stat96: 5.92300068e-04 + syst_JES_EtaIntercalibration_Stat97: 6.87067488e-04 + syst_JES_EtaIntercalibration_Stat98: 3.16501774e-04 + syst_JES_EtaIntercalibration_Stat99: 3.59615547e-04 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.71595984e-02 + syst_JES_Flavour_Comp: 9.45785487e-02 + syst_JES_Flavour_Response: 8.20627815e-01 + syst_JES_Gjet_Generator: 7.80312673e-01 + syst_JES_Gjet_OOC: 4.98729746e-01 + syst_JES_Gjet_Purity: 1.56063088e-01 + syst_JES_Gjet_Stat1: 7.12996745e-04 + syst_JES_Gjet_Stat10: 4.74031969e-02 + syst_JES_Gjet_Stat11: 5.90049801e-02 + syst_JES_Gjet_Stat12: 3.36701547e-02 + syst_JES_Gjet_Stat13: 5.44629256e-03 + syst_JES_Gjet_Stat14: 9.37526356e-03 + syst_JES_Gjet_Stat15: 1.10673317e-03 + syst_JES_Gjet_Stat2: 7.83168047e-04 + syst_JES_Gjet_Stat3: 1.38763457e-03 + syst_JES_Gjet_Stat4: 2.33260670e-03 + syst_JES_Gjet_Stat5: 2.67335861e-03 + syst_JES_Gjet_Stat6: 5.61192026e-03 + syst_JES_Gjet_Stat7: 1.09700905e-02 + syst_JES_Gjet_Stat8: 1.09725393e-02 + syst_JES_Gjet_Stat9: 2.61088089e-02 + syst_JES_Gjet_Veto: 2.07311233e-01 + syst_JES_Gjet_dPhi: 3.73692477e-02 + syst_JES_LArESZee: 8.84522956e-01 + syst_JES_LArEsmear: 6.37289895e-02 + syst_JES_LAr_JVT: 9.37944085e-02 + syst_JES_MJB_Alpha: 1.83758919e-03 + syst_JES_MJB_Asym: 4.70934595e-03 + syst_JES_MJB_Beta: 1.06906692e-03 + syst_JES_MJB_Fragmentation: 1.66358594e-02 + syst_JES_MJB_Stat1: 3.08407004e-03 + syst_JES_MJB_Stat10: 4.81271449e-04 + syst_JES_MJB_Stat11: 1.75110694e-04 + syst_JES_MJB_Stat12: 2.85105735e-04 + syst_JES_MJB_Stat13: 2.94257825e-04 + syst_JES_MJB_Stat14: 3.00237539e-04 + syst_JES_MJB_Stat15: 2.35073450e-04 + syst_JES_MJB_Stat16: 2.21220210e-04 + syst_JES_MJB_Stat2: 1.30591535e-03 + syst_JES_MJB_Stat3: 9.59313880e-04 + syst_JES_MJB_Stat4: 5.91895675e-04 + syst_JES_MJB_Stat5: 3.89554977e-04 + syst_JES_MJB_Stat6: 4.69146254e-04 + syst_JES_MJB_Stat7: 2.81676041e-03 + syst_JES_MJB_Stat8: 2.72935074e-03 + syst_JES_MJB_Stat9: 1.59169099e-03 + syst_JES_MJB_Threshold: 7.01252159e-04 + syst_JES_Pileup_MuOffset: 1.77774098e-02 + syst_JES_Pileup_NPVOffset: 4.52079312e-02 + syst_JES_Pileup_Pt_term: 1.68321211e-01 + syst_JES_Pileup_Rho_topology: 2.61367710e-01 + syst_JES_PunchThrough_MC15: 3.72978860e-03 + syst_JES_SingleParticle_HighPt: 3.00237539e-04 + syst_JES_Zjet_MC: 7.28308209e-01 + syst_JES_Zjet_MuScale: 4.30346860e-02 + syst_JES_Zjet_MuSmearID: 6.56292776e-03 + syst_JES_Zjet_MuSmearMS: 8.55833091e-02 + syst_JES_Zjet_OOC: 2.49176624e-01 + syst_JES_Zjet_Stat1: 2.73118491e-03 + syst_JES_Zjet_Stat10: 5.37264988e-02 + syst_JES_Zjet_Stat11: 8.57963780e-02 + syst_JES_Zjet_Stat12: 1.44156291e-01 + syst_JES_Zjet_Stat13: 1.35046048e-02 + syst_JES_Zjet_Stat2: 1.04466396e-03 + syst_JES_Zjet_Stat3: 1.59364511e-03 + syst_JES_Zjet_Stat4: 1.57994113e-03 + syst_JES_Zjet_Stat5: 2.34590084e-03 + syst_JES_Zjet_Stat6: 2.87708294e-03 + syst_JES_Zjet_Stat7: 3.27906862e-03 + syst_JES_Zjet_Stat8: 6.17310562e-03 + syst_JES_Zjet_Stat9: 2.12238092e-02 + syst_JES_Zjet_Veto: 4.69606609e-02 + syst_JES_Zjet_dPhi: 4.17956206e-02 syst_PRW: 0.0 syst_Unfolding_bias: 0.0 - syst_cleaning: 0.35862111970713606 + syst_cleaning: 3.58621120e-01 syst_lumi: 0.8755 - stat: 0.13529 - syst_JER_CROSS_CALIB_FORWARD: 0.0004102 + syst_JER_CROSS_CALIB_FORWARD: 4.10200000e-04 syst_JER_NOISE_FORWARD: 0.004942 - syst_JER_NP0: 0.06789795192051082 - syst_JER_NP1: 0.0006102472613621465 - syst_JER_NP2: 1.1814161618583013e-23 - syst_JER_NP3: 0.020612569053856434 - syst_JER_NP4: 0.00723505100189349 - syst_JER_NP5: 0.0029851895668449604 + syst_JER_NP0: 6.78979519e-02 + syst_JER_NP1: 6.10247261e-04 + syst_JER_NP2: 1.18141616e-23 + syst_JER_NP3: 2.06125691e-02 + syst_JER_NP4: 7.23505100e-03 + syst_JER_NP5: 2.98518957e-03 syst_JER_NP6: 0.0 syst_JER_NP7: 0.0 - syst_JER_NP8: 0.010826404978107922 - syst_JES_EtaIntercalibration_Modelling: 0.28258154575272604 - syst_JES_EtaIntercalibration_NonClosure: 0.039928334400523145 - syst_JES_EtaIntercalibration_Stat0: 2.088793431625061e-09 - syst_JES_EtaIntercalibration_Stat1: 1.453960517861472e-09 - syst_JES_EtaIntercalibration_Stat10: 2.1206854434356835e-09 - syst_JES_EtaIntercalibration_Stat100: 4.582747101902963e-05 - syst_JES_EtaIntercalibration_Stat101: 2.4743764280117123e-05 - syst_JES_EtaIntercalibration_Stat102: 0.00019848574054576315 - syst_JES_EtaIntercalibration_Stat103: 4.453046906332786e-05 - syst_JES_EtaIntercalibration_Stat104: 1.4540502983047043e-05 - syst_JES_EtaIntercalibration_Stat105: 0.0002540973215128408 - syst_JES_EtaIntercalibration_Stat106: 2.260643065037026e-05 - syst_JES_EtaIntercalibration_Stat107: 7.610934962276317e-11 - syst_JES_EtaIntercalibration_Stat108: 3.3913178603604825e-05 - syst_JES_EtaIntercalibration_Stat109: 0.0003677030557392745 - syst_JES_EtaIntercalibration_Stat11: 1.5041119628538297e-08 - syst_JES_EtaIntercalibration_Stat110: 0.0002538427676732193 - syst_JES_EtaIntercalibration_Stat111: 0.0006460097890125195 - syst_JES_EtaIntercalibration_Stat112: 0.0008952327239327213 - syst_JES_EtaIntercalibration_Stat113: 0.0005781251659459221 - syst_JES_EtaIntercalibration_Stat114: 0.0003430209129193146 - syst_JES_EtaIntercalibration_Stat115: 0.0007467446216746392 - syst_JES_EtaIntercalibration_Stat116: 0.0013391698053271661 - syst_JES_EtaIntercalibration_Stat117: 0.0012184463344768206 - syst_JES_EtaIntercalibration_Stat118: 0.0007771841914887359 - syst_JES_EtaIntercalibration_Stat119: 0.0007763451775305878 - syst_JES_EtaIntercalibration_Stat12: 1.2916144809888128e-06 - syst_JES_EtaIntercalibration_Stat120: 0.0013856958540747679 - syst_JES_EtaIntercalibration_Stat121: 0.0008306483973378869 - syst_JES_EtaIntercalibration_Stat122: 0.0006738779414701151 - syst_JES_EtaIntercalibration_Stat123: 0.0006283962185595963 - syst_JES_EtaIntercalibration_Stat124: 0.0003393382788604905 - syst_JES_EtaIntercalibration_Stat125: 0.00017120478614805138 - syst_JES_EtaIntercalibration_Stat126: 0.00027336354056726363 - syst_JES_EtaIntercalibration_Stat127: 1.6982758168212843e-09 - syst_JES_EtaIntercalibration_Stat128: 0.0013863941827633294 - syst_JES_EtaIntercalibration_Stat129: 0.004937780143951328 - syst_JES_EtaIntercalibration_Stat13: 7.203363988443178e-09 - syst_JES_EtaIntercalibration_Stat130: 0.004839175962909387 - syst_JES_EtaIntercalibration_Stat131: 0.0039694323271722365 - syst_JES_EtaIntercalibration_Stat132: 0.004341593968521238 - syst_JES_EtaIntercalibration_Stat133: 0.0053532131239097894 - syst_JES_EtaIntercalibration_Stat134: 0.008383522946828498 - syst_JES_EtaIntercalibration_Stat135: 0.005722791517257989 - syst_JES_EtaIntercalibration_Stat136: 0.0058369520299553605 - syst_JES_EtaIntercalibration_Stat137: 0.003925881143132074 - syst_JES_EtaIntercalibration_Stat138: 0.006651717823239346 - syst_JES_EtaIntercalibration_Stat139: 0.005597898444952355 - syst_JES_EtaIntercalibration_Stat14: 7.219586761027255e-09 - syst_JES_EtaIntercalibration_Stat140: 0.005664351772268386 - syst_JES_EtaIntercalibration_Stat141: 0.005101936985106735 - syst_JES_EtaIntercalibration_Stat142: 0.003450603860196067 - syst_JES_EtaIntercalibration_Stat143: 0.004353689535038069 - syst_JES_EtaIntercalibration_Stat144: 0.004539554823988802 - syst_JES_EtaIntercalibration_Stat145: 0.0009660309661185816 - syst_JES_EtaIntercalibration_Stat146: 0.0008113496991164214 - syst_JES_EtaIntercalibration_Stat147: 0.00276280455334792 - syst_JES_EtaIntercalibration_Stat148: 0.0035895738002581865 - syst_JES_EtaIntercalibration_Stat149: 0.00183597385602301 - syst_JES_EtaIntercalibration_Stat15: 1.2001058484567101e-08 - syst_JES_EtaIntercalibration_Stat150: 0.0006902408619460312 - syst_JES_EtaIntercalibration_Stat151: 0.0032550351008092063 - syst_JES_EtaIntercalibration_Stat152: 0.006783661898267041 - syst_JES_EtaIntercalibration_Stat153: 0.002090642724140115 - syst_JES_EtaIntercalibration_Stat154: 0.005053164948821679 - syst_JES_EtaIntercalibration_Stat155: 0.0034528851168262173 - syst_JES_EtaIntercalibration_Stat156: 0.004600326944902938 - syst_JES_EtaIntercalibration_Stat157: 0.005509875747237864 - syst_JES_EtaIntercalibration_Stat158: 0.005412250617811411 - syst_JES_EtaIntercalibration_Stat159: 0.003694805091950048 - syst_JES_EtaIntercalibration_Stat16: 1.3005740078903621e-09 - syst_JES_EtaIntercalibration_Stat160: 0.0037816479899641636 - syst_JES_EtaIntercalibration_Stat161: 0.0033798922941419302 - syst_JES_EtaIntercalibration_Stat162: 0.0009647589698986996 - syst_JES_EtaIntercalibration_Stat163: 0.0007569292750977465 - syst_JES_EtaIntercalibration_Stat164: 0.0007311872400418378 - syst_JES_EtaIntercalibration_Stat165: 5.465486323283592e-05 - syst_JES_EtaIntercalibration_Stat166: 0.003715943083525365 - syst_JES_EtaIntercalibration_Stat167: 0.002575350334847669 - syst_JES_EtaIntercalibration_Stat168: 0.0029163156220649374 - syst_JES_EtaIntercalibration_Stat169: 0.0006615568059509327 - syst_JES_EtaIntercalibration_Stat17: 2.110770653102795e-09 - syst_JES_EtaIntercalibration_Stat170: 0.007244925534468936 - syst_JES_EtaIntercalibration_Stat171: 0.005639846088207993 - syst_JES_EtaIntercalibration_Stat172: 0.003678411234147156 - syst_JES_EtaIntercalibration_Stat173: 0.0038408030410319143 - syst_JES_EtaIntercalibration_Stat174: 0.0061866482589525 - syst_JES_EtaIntercalibration_Stat175: 0.004679995948716195 - syst_JES_EtaIntercalibration_Stat176: 0.004785043782453824 - syst_JES_EtaIntercalibration_Stat177: 0.00285489889269305 - syst_JES_EtaIntercalibration_Stat178: 0.002991251744671451 - syst_JES_EtaIntercalibration_Stat179: 0.0018076649323090826 - syst_JES_EtaIntercalibration_Stat18: 2.088793431625061e-09 - syst_JES_EtaIntercalibration_Stat180: 0.0010272721681716097 - syst_JES_EtaIntercalibration_Stat181: 0.0008684503754606311 - syst_JES_EtaIntercalibration_Stat182: 0.0019833999060955908 - syst_JES_EtaIntercalibration_Stat183: 0.0035377138797970014 - syst_JES_EtaIntercalibration_Stat184: 0.003237604118789078 - syst_JES_EtaIntercalibration_Stat185: 0.0022326916199959185 - syst_JES_EtaIntercalibration_Stat186: 0.005006915517561685 - syst_JES_EtaIntercalibration_Stat187: 0.006315887737088114 - syst_JES_EtaIntercalibration_Stat188: 0.007670953786850759 - syst_JES_EtaIntercalibration_Stat189: 0.004679364493977788 - syst_JES_EtaIntercalibration_Stat19: 9.839989062493921e-09 - syst_JES_EtaIntercalibration_Stat190: 0.004857412582846962 - syst_JES_EtaIntercalibration_Stat191: 0.007584722077966997 - syst_JES_EtaIntercalibration_Stat192: 0.009265071330000648 - syst_JES_EtaIntercalibration_Stat193: 0.004600563769800392 - syst_JES_EtaIntercalibration_Stat194: 0.0036277804164530133 - syst_JES_EtaIntercalibration_Stat195: 0.0030681172125588685 - syst_JES_EtaIntercalibration_Stat196: 0.0025624704388538806 - syst_JES_EtaIntercalibration_Stat197: 0.0012941835679299903 - syst_JES_EtaIntercalibration_Stat198: 0.0012236759242135967 - syst_JES_EtaIntercalibration_Stat199: 0.0006204811432066248 - syst_JES_EtaIntercalibration_Stat2: 1.6912265460310159e-09 - syst_JES_EtaIntercalibration_Stat20: 2.088793431625061e-09 - syst_JES_EtaIntercalibration_Stat200: 0.0007036471914247935 - syst_JES_EtaIntercalibration_Stat201: 0.0002744858970420885 - syst_JES_EtaIntercalibration_Stat202: 0.0011561364019872396 - syst_JES_EtaIntercalibration_Stat203: 0.00019575450665310364 - syst_JES_EtaIntercalibration_Stat204: 0.0006586033783697135 - syst_JES_EtaIntercalibration_Stat205: 0.0009314095101914088 - syst_JES_EtaIntercalibration_Stat206: 0.00114980583034702 - syst_JES_EtaIntercalibration_Stat207: 0.0006718394655719475 - syst_JES_EtaIntercalibration_Stat208: 0.0013749259061854933 - syst_JES_EtaIntercalibration_Stat209: 0.0015848340607142442 - syst_JES_EtaIntercalibration_Stat21: 2.088793431625061e-09 - syst_JES_EtaIntercalibration_Stat210: 0.0009231704826303752 - syst_JES_EtaIntercalibration_Stat211: 0.00058890977379816 - syst_JES_EtaIntercalibration_Stat212: 0.0003017121600134804 - syst_JES_EtaIntercalibration_Stat213: 9.917434446468502e-05 - syst_JES_EtaIntercalibration_Stat214: 0.00014009533209568406 - syst_JES_EtaIntercalibration_Stat215: 0.0002829878795991093 - syst_JES_EtaIntercalibration_Stat216: 0.00038370542956153226 - syst_JES_EtaIntercalibration_Stat217: 0.000335014546064794 - syst_JES_EtaIntercalibration_Stat218: 0.0004224213062808267 - syst_JES_EtaIntercalibration_Stat219: 0.0005247497421390505 - syst_JES_EtaIntercalibration_Stat22: 2.088793431625061e-09 - syst_JES_EtaIntercalibration_Stat220: 0.0003678857533256758 - syst_JES_EtaIntercalibration_Stat221: 0.0002291489094453648 - syst_JES_EtaIntercalibration_Stat222: 4.001903390887891e-05 - syst_JES_EtaIntercalibration_Stat223: 0.00015908886685712443 - syst_JES_EtaIntercalibration_Stat224: 6.464839286478821e-05 - syst_JES_EtaIntercalibration_Stat225: 0.0001259842707444068 - syst_JES_EtaIntercalibration_Stat226: 0.00011321872680789162 - syst_JES_EtaIntercalibration_Stat227: 0.00010599472003359412 - syst_JES_EtaIntercalibration_Stat228: 6.866871995311985e-05 - syst_JES_EtaIntercalibration_Stat229: 8.504863079438727e-05 - syst_JES_EtaIntercalibration_Stat23: 6.373338729949554e-08 - syst_JES_EtaIntercalibration_Stat230: 0.0004117089782844187 - syst_JES_EtaIntercalibration_Stat231: 0.00016645962483437238 - syst_JES_EtaIntercalibration_Stat232: 0.0002020005019795743 - syst_JES_EtaIntercalibration_Stat233: 0.00022901687710734332 - syst_JES_EtaIntercalibration_Stat234: 0.0005525779032860435 - syst_JES_EtaIntercalibration_Stat235: 6.55672097047842e-05 - syst_JES_EtaIntercalibration_Stat236: 2.3910961347594924e-05 - syst_JES_EtaIntercalibration_Stat237: 7.92439626517377e-05 - syst_JES_EtaIntercalibration_Stat238: 0.00012142732559024761 - syst_JES_EtaIntercalibration_Stat239: 2.6621400891420264e-05 - syst_JES_EtaIntercalibration_Stat24: 1.5381154077311625e-06 - syst_JES_EtaIntercalibration_Stat240: 0.00012555308867168502 - syst_JES_EtaIntercalibration_Stat241: 9.194591711979385e-05 - syst_JES_EtaIntercalibration_Stat242: 8.534699115961851e-05 - syst_JES_EtaIntercalibration_Stat243: 6.954183992388945e-05 - syst_JES_EtaIntercalibration_Stat244: 0.00012075392447038729 - syst_JES_EtaIntercalibration_Stat245: 0.00034172435042735836 - syst_JES_EtaIntercalibration_Stat25: 1.3506082400440922e-06 - syst_JES_EtaIntercalibration_Stat26: 1.4963810985424135e-08 - syst_JES_EtaIntercalibration_Stat27: 1.0509382258395353e-06 - syst_JES_EtaIntercalibration_Stat28: 1.9244976351585238e-07 - syst_JES_EtaIntercalibration_Stat29: 1.692327391493738e-06 - syst_JES_EtaIntercalibration_Stat3: 2.71279463837571e-09 - syst_JES_EtaIntercalibration_Stat30: 1.479718448725973e-06 - syst_JES_EtaIntercalibration_Stat31: 0.0001464535757185532 - syst_JES_EtaIntercalibration_Stat32: 5.841801457598503e-05 - syst_JES_EtaIntercalibration_Stat33: 2.7777330446787e-07 - syst_JES_EtaIntercalibration_Stat34: 1.2731830377051054e-05 - syst_JES_EtaIntercalibration_Stat35: 1.0228088995521108e-05 - syst_JES_EtaIntercalibration_Stat36: 2.9790649539746527e-06 - syst_JES_EtaIntercalibration_Stat37: 4.065344505267883e-05 - syst_JES_EtaIntercalibration_Stat38: 4.956812761240836e-06 - syst_JES_EtaIntercalibration_Stat39: 5.170171660593099e-06 - syst_JES_EtaIntercalibration_Stat4: 1.453960517861472e-09 - syst_JES_EtaIntercalibration_Stat40: 2.400072642129817e-07 - syst_JES_EtaIntercalibration_Stat41: 2.7595091062542266e-10 - syst_JES_EtaIntercalibration_Stat42: 5.93140799051962e-09 - syst_JES_EtaIntercalibration_Stat43: 2.088793431625061e-09 - syst_JES_EtaIntercalibration_Stat44: 2.088793431625061e-09 - syst_JES_EtaIntercalibration_Stat45: 1.6912265460310159e-09 - syst_JES_EtaIntercalibration_Stat46: 5.233773964119964e-08 - syst_JES_EtaIntercalibration_Stat47: 1.1289417699775308e-05 - syst_JES_EtaIntercalibration_Stat48: 1.4517916241664986e-06 - syst_JES_EtaIntercalibration_Stat49: 2.3062438005336732e-06 - syst_JES_EtaIntercalibration_Stat5: 1.2791195213896158e-09 - syst_JES_EtaIntercalibration_Stat50: 0.0001502645599825521 - syst_JES_EtaIntercalibration_Stat51: 7.1925343760040526e-06 - syst_JES_EtaIntercalibration_Stat52: 1.9934199024540713e-06 - syst_JES_EtaIntercalibration_Stat53: 0.00014121308606145536 - syst_JES_EtaIntercalibration_Stat54: 0.00014667897199922692 - syst_JES_EtaIntercalibration_Stat55: 1.1843043052779974e-06 - syst_JES_EtaIntercalibration_Stat56: 5.9627427204265654e-06 - syst_JES_EtaIntercalibration_Stat57: 2.635583237160231e-05 - syst_JES_EtaIntercalibration_Stat58: 2.1233464225132932e-05 - syst_JES_EtaIntercalibration_Stat59: 1.137146708685823e-05 - syst_JES_EtaIntercalibration_Stat6: 1.523842317137833e-09 - syst_JES_EtaIntercalibration_Stat60: 1.1812315857488531e-08 - syst_JES_EtaIntercalibration_Stat61: 4.827386094720413e-06 - syst_JES_EtaIntercalibration_Stat62: 8.224208822129944e-07 - syst_JES_EtaIntercalibration_Stat63: 3.213066910648413e-07 - syst_JES_EtaIntercalibration_Stat64: 6.217389036404269e-10 - syst_JES_EtaIntercalibration_Stat65: 2.088793431625061e-09 - syst_JES_EtaIntercalibration_Stat66: 2.088793431625061e-09 - syst_JES_EtaIntercalibration_Stat67: 1.848840584663805e-06 - syst_JES_EtaIntercalibration_Stat68: 2.7651479164775258e-05 - syst_JES_EtaIntercalibration_Stat69: 1.7808986495586994e-05 - syst_JES_EtaIntercalibration_Stat7: 8.937371481593455e-09 - syst_JES_EtaIntercalibration_Stat70: 2.0004142071081177e-05 - syst_JES_EtaIntercalibration_Stat71: 1.3863783105631737e-05 - syst_JES_EtaIntercalibration_Stat72: 0.00012844489987021672 - syst_JES_EtaIntercalibration_Stat73: 0.00012184211371689182 - syst_JES_EtaIntercalibration_Stat74: 3.293065896698698e-05 - syst_JES_EtaIntercalibration_Stat75: 2.5252904300893294e-05 - syst_JES_EtaIntercalibration_Stat76: 4.1300315141049474e-05 - syst_JES_EtaIntercalibration_Stat77: 1.1557621278078806e-05 - syst_JES_EtaIntercalibration_Stat78: 2.8172049671394162e-05 - syst_JES_EtaIntercalibration_Stat79: 2.7741507583402888e-05 - syst_JES_EtaIntercalibration_Stat8: 2.0983604451273377e-07 - syst_JES_EtaIntercalibration_Stat80: 3.4210572927093753e-05 - syst_JES_EtaIntercalibration_Stat81: 4.7910114537537895e-05 - syst_JES_EtaIntercalibration_Stat82: 3.102202282250466e-05 - syst_JES_EtaIntercalibration_Stat83: 1.0805782873420139e-06 - syst_JES_EtaIntercalibration_Stat84: 6.420932390821445e-06 - syst_JES_EtaIntercalibration_Stat85: 2.0325090325752554e-06 - syst_JES_EtaIntercalibration_Stat86: 8.919324231689304e-09 - syst_JES_EtaIntercalibration_Stat87: 1.2791195213896158e-09 - syst_JES_EtaIntercalibration_Stat88: 1.3622367900347086e-06 - syst_JES_EtaIntercalibration_Stat89: 3.5297908957188953e-05 - syst_JES_EtaIntercalibration_Stat9: 2.1083528993742958e-07 - syst_JES_EtaIntercalibration_Stat90: 5.223947238439531e-05 - syst_JES_EtaIntercalibration_Stat91: 2.103833814729671e-05 - syst_JES_EtaIntercalibration_Stat92: 1.047123961143092e-05 - syst_JES_EtaIntercalibration_Stat93: 9.43545828245772e-05 - syst_JES_EtaIntercalibration_Stat94: 8.517108844555175e-05 - syst_JES_EtaIntercalibration_Stat95: 0.00014124404651170256 - syst_JES_EtaIntercalibration_Stat96: 2.7329798755204915e-05 - syst_JES_EtaIntercalibration_Stat97: 8.237115211043246e-05 - syst_JES_EtaIntercalibration_Stat98: 3.417748235315176e-05 - syst_JES_EtaIntercalibration_Stat99: 8.435816083817854e-05 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.015536813275250493 - syst_JES_Flavour_Comp: 0.07597189217072324 - syst_JES_Flavour_Response: 0.37967611499803355 - syst_JES_Gjet_Generator: 0.39817394528020034 - syst_JES_Gjet_OOC: 0.263302468655347 - syst_JES_Gjet_Purity: 0.08348214719327719 - syst_JES_Gjet_Stat1: 0.0003651772319668903 - syst_JES_Gjet_Stat10: 0.020954791814761606 - syst_JES_Gjet_Stat11: 0.032997672645203334 - syst_JES_Gjet_Stat12: 0.030615087783640277 - syst_JES_Gjet_Stat13: 0.003816653114968663 - syst_JES_Gjet_Stat14: 0.007735097866219923 - syst_JES_Gjet_Stat15: 0.0009571879896342202 - syst_JES_Gjet_Stat2: 0.0004184911468597633 - syst_JES_Gjet_Stat3: 0.0005832953175707826 - syst_JES_Gjet_Stat4: 0.0011379237968774534 - syst_JES_Gjet_Stat5: 0.0012032466206061002 - syst_JES_Gjet_Stat6: 0.0024807043354660384 - syst_JES_Gjet_Stat7: 0.003940060247001307 - syst_JES_Gjet_Stat8: 0.003862718213900672 - syst_JES_Gjet_Stat9: 0.010712139702225695 - syst_JES_Gjet_Veto: 0.12006903389300673 - syst_JES_Gjet_dPhi: 0.017088662908489947 - syst_JES_LArESZee: 0.4885522566727125 - syst_JES_LArEsmear: 0.034674004672088275 - syst_JES_LAr_JVT: 0.050163958177161426 - syst_JES_MJB_Alpha: 0.0009760242972385474 - syst_JES_MJB_Asym: 0.004012121975962346 - syst_JES_MJB_Beta: 0.0007260202665904031 - syst_JES_MJB_Fragmentation: 0.018569159243218312 - syst_JES_MJB_Stat1: 0.0016618341523750196 - syst_JES_MJB_Stat10: 0.00020652736543857813 - syst_JES_MJB_Stat11: 5.3730508223610733e-05 - syst_JES_MJB_Stat12: 0.00011804043459764115 - syst_JES_MJB_Stat13: 0.00012974646459537923 - syst_JES_MJB_Stat14: 0.00015398665356127457 - syst_JES_MJB_Stat15: 0.00012067785298056972 - syst_JES_MJB_Stat16: 0.00011357137051211453 - syst_JES_MJB_Stat2: 0.0012597153964288917 - syst_JES_MJB_Stat3: 0.0012774000264208546 - syst_JES_MJB_Stat4: 0.0007439454600305051 - syst_JES_MJB_Stat5: 0.0008413011752636508 - syst_JES_MJB_Stat6: 0.00015282915297808855 - syst_JES_MJB_Stat7: 0.0014322477882248589 - syst_JES_MJB_Stat8: 0.0013876313174615224 - syst_JES_MJB_Stat9: 0.0008142275971741563 - syst_JES_MJB_Threshold: 0.0038271331306867283 - syst_JES_Pileup_MuOffset: 0.015181022099977327 - syst_JES_Pileup_NPVOffset: 0.02817205485938148 - syst_JES_Pileup_Pt_term: 0.08316377636928232 - syst_JES_Pileup_Rho_topology: 0.12705323844751068 - syst_JES_PunchThrough_MC15: 0.0025921672761417235 - syst_JES_SingleParticle_HighPt: 0.0001541351361630436 - syst_JES_Zjet_MC: 0.3682629868721536 - syst_JES_Zjet_MuScale: 0.019895791012171392 - syst_JES_Zjet_MuSmearID: 0.0029080060178754787 - syst_JES_Zjet_MuSmearMS: 0.05336475873645453 - syst_JES_Zjet_OOC: 0.12705384409768955 - syst_JES_Zjet_Stat1: 0.0014918090720665294 - syst_JES_Zjet_Stat10: 0.019443293831035935 - syst_JES_Zjet_Stat11: 0.03205996880846892 - syst_JES_Zjet_Stat12: 0.09568110197421432 - syst_JES_Zjet_Stat13: 0.01929034991906575 - syst_JES_Zjet_Stat2: 0.0002842441979618933 - syst_JES_Zjet_Stat3: 0.00046940360032705333 - syst_JES_Zjet_Stat4: 0.0004189056393449484 - syst_JES_Zjet_Stat5: 0.0011521014571208561 - syst_JES_Zjet_Stat6: 0.0013213050243982274 - syst_JES_Zjet_Stat7: 0.0012994641511022919 - syst_JES_Zjet_Stat8: 0.002591046506722718 - syst_JES_Zjet_Stat9: 0.007282767657285244 - syst_JES_Zjet_Veto: 0.022794181275053508 - syst_JES_Zjet_dPhi: 0.019492862155158233 + syst_JER_NP8: 1.08264050e-02 + syst_JES_EtaIntercalibration_Modelling: 2.82581546e-01 + syst_JES_EtaIntercalibration_NonClosure: 3.99283344e-02 + syst_JES_EtaIntercalibration_Stat0: 2.08879343e-09 + syst_JES_EtaIntercalibration_Stat1: 1.45396052e-09 + syst_JES_EtaIntercalibration_Stat10: 2.12068544e-09 + syst_JES_EtaIntercalibration_Stat100: 4.58274710e-05 + syst_JES_EtaIntercalibration_Stat101: 2.47437643e-05 + syst_JES_EtaIntercalibration_Stat102: 1.98485741e-04 + syst_JES_EtaIntercalibration_Stat103: 4.45304691e-05 + syst_JES_EtaIntercalibration_Stat104: 1.45405030e-05 + syst_JES_EtaIntercalibration_Stat105: 2.54097322e-04 + syst_JES_EtaIntercalibration_Stat106: 2.26064307e-05 + syst_JES_EtaIntercalibration_Stat107: 7.61093496e-11 + syst_JES_EtaIntercalibration_Stat108: 3.39131786e-05 + syst_JES_EtaIntercalibration_Stat109: 3.67703056e-04 + syst_JES_EtaIntercalibration_Stat11: 1.50411196e-08 + syst_JES_EtaIntercalibration_Stat110: 2.53842768e-04 + syst_JES_EtaIntercalibration_Stat111: 6.46009789e-04 + syst_JES_EtaIntercalibration_Stat112: 8.95232724e-04 + syst_JES_EtaIntercalibration_Stat113: 5.78125166e-04 + syst_JES_EtaIntercalibration_Stat114: 3.43020913e-04 + syst_JES_EtaIntercalibration_Stat115: 7.46744622e-04 + syst_JES_EtaIntercalibration_Stat116: 1.33916981e-03 + syst_JES_EtaIntercalibration_Stat117: 1.21844633e-03 + syst_JES_EtaIntercalibration_Stat118: 7.77184191e-04 + syst_JES_EtaIntercalibration_Stat119: 7.76345178e-04 + syst_JES_EtaIntercalibration_Stat12: 1.29161448e-06 + syst_JES_EtaIntercalibration_Stat120: 1.38569585e-03 + syst_JES_EtaIntercalibration_Stat121: 8.30648397e-04 + syst_JES_EtaIntercalibration_Stat122: 6.73877941e-04 + syst_JES_EtaIntercalibration_Stat123: 6.28396219e-04 + syst_JES_EtaIntercalibration_Stat124: 3.39338279e-04 + syst_JES_EtaIntercalibration_Stat125: 1.71204786e-04 + syst_JES_EtaIntercalibration_Stat126: 2.73363541e-04 + syst_JES_EtaIntercalibration_Stat127: 1.69827582e-09 + syst_JES_EtaIntercalibration_Stat128: 1.38639418e-03 + syst_JES_EtaIntercalibration_Stat129: 4.93778014e-03 + syst_JES_EtaIntercalibration_Stat13: 7.20336399e-09 + syst_JES_EtaIntercalibration_Stat130: 4.83917596e-03 + syst_JES_EtaIntercalibration_Stat131: 3.96943233e-03 + syst_JES_EtaIntercalibration_Stat132: 4.34159397e-03 + syst_JES_EtaIntercalibration_Stat133: 5.35321312e-03 + syst_JES_EtaIntercalibration_Stat134: 8.38352295e-03 + syst_JES_EtaIntercalibration_Stat135: 5.72279152e-03 + syst_JES_EtaIntercalibration_Stat136: 5.83695203e-03 + syst_JES_EtaIntercalibration_Stat137: 3.92588114e-03 + syst_JES_EtaIntercalibration_Stat138: 6.65171782e-03 + syst_JES_EtaIntercalibration_Stat139: 5.59789844e-03 + syst_JES_EtaIntercalibration_Stat14: 7.21958676e-09 + syst_JES_EtaIntercalibration_Stat140: 5.66435177e-03 + syst_JES_EtaIntercalibration_Stat141: 5.10193699e-03 + syst_JES_EtaIntercalibration_Stat142: 3.45060386e-03 + syst_JES_EtaIntercalibration_Stat143: 4.35368954e-03 + syst_JES_EtaIntercalibration_Stat144: 4.53955482e-03 + syst_JES_EtaIntercalibration_Stat145: 9.66030966e-04 + syst_JES_EtaIntercalibration_Stat146: 8.11349699e-04 + syst_JES_EtaIntercalibration_Stat147: 2.76280455e-03 + syst_JES_EtaIntercalibration_Stat148: 3.58957380e-03 + syst_JES_EtaIntercalibration_Stat149: 1.83597386e-03 + syst_JES_EtaIntercalibration_Stat15: 1.20010585e-08 + syst_JES_EtaIntercalibration_Stat150: 6.90240862e-04 + syst_JES_EtaIntercalibration_Stat151: 3.25503510e-03 + syst_JES_EtaIntercalibration_Stat152: 6.78366190e-03 + syst_JES_EtaIntercalibration_Stat153: 2.09064272e-03 + syst_JES_EtaIntercalibration_Stat154: 5.05316495e-03 + syst_JES_EtaIntercalibration_Stat155: 3.45288512e-03 + syst_JES_EtaIntercalibration_Stat156: 4.60032694e-03 + syst_JES_EtaIntercalibration_Stat157: 5.50987575e-03 + syst_JES_EtaIntercalibration_Stat158: 5.41225062e-03 + syst_JES_EtaIntercalibration_Stat159: 3.69480509e-03 + syst_JES_EtaIntercalibration_Stat16: 1.30057401e-09 + syst_JES_EtaIntercalibration_Stat160: 3.78164799e-03 + syst_JES_EtaIntercalibration_Stat161: 3.37989229e-03 + syst_JES_EtaIntercalibration_Stat162: 9.64758970e-04 + syst_JES_EtaIntercalibration_Stat163: 7.56929275e-04 + syst_JES_EtaIntercalibration_Stat164: 7.31187240e-04 + syst_JES_EtaIntercalibration_Stat165: 5.46548632e-05 + syst_JES_EtaIntercalibration_Stat166: 3.71594308e-03 + syst_JES_EtaIntercalibration_Stat167: 2.57535033e-03 + syst_JES_EtaIntercalibration_Stat168: 2.91631562e-03 + syst_JES_EtaIntercalibration_Stat169: 6.61556806e-04 + syst_JES_EtaIntercalibration_Stat17: 2.11077065e-09 + syst_JES_EtaIntercalibration_Stat170: 7.24492553e-03 + syst_JES_EtaIntercalibration_Stat171: 5.63984609e-03 + syst_JES_EtaIntercalibration_Stat172: 3.67841123e-03 + syst_JES_EtaIntercalibration_Stat173: 3.84080304e-03 + syst_JES_EtaIntercalibration_Stat174: 6.18664826e-03 + syst_JES_EtaIntercalibration_Stat175: 4.67999595e-03 + syst_JES_EtaIntercalibration_Stat176: 4.78504378e-03 + syst_JES_EtaIntercalibration_Stat177: 2.85489889e-03 + syst_JES_EtaIntercalibration_Stat178: 2.99125174e-03 + syst_JES_EtaIntercalibration_Stat179: 1.80766493e-03 + syst_JES_EtaIntercalibration_Stat18: 2.08879343e-09 + syst_JES_EtaIntercalibration_Stat180: 1.02727217e-03 + syst_JES_EtaIntercalibration_Stat181: 8.68450375e-04 + syst_JES_EtaIntercalibration_Stat182: 1.98339991e-03 + syst_JES_EtaIntercalibration_Stat183: 3.53771388e-03 + syst_JES_EtaIntercalibration_Stat184: 3.23760412e-03 + syst_JES_EtaIntercalibration_Stat185: 2.23269162e-03 + syst_JES_EtaIntercalibration_Stat186: 5.00691552e-03 + syst_JES_EtaIntercalibration_Stat187: 6.31588774e-03 + syst_JES_EtaIntercalibration_Stat188: 7.67095379e-03 + syst_JES_EtaIntercalibration_Stat189: 4.67936449e-03 + syst_JES_EtaIntercalibration_Stat19: 9.83998906e-09 + syst_JES_EtaIntercalibration_Stat190: 4.85741258e-03 + syst_JES_EtaIntercalibration_Stat191: 7.58472208e-03 + syst_JES_EtaIntercalibration_Stat192: 9.26507133e-03 + syst_JES_EtaIntercalibration_Stat193: 4.60056377e-03 + syst_JES_EtaIntercalibration_Stat194: 3.62778042e-03 + syst_JES_EtaIntercalibration_Stat195: 3.06811721e-03 + syst_JES_EtaIntercalibration_Stat196: 2.56247044e-03 + syst_JES_EtaIntercalibration_Stat197: 1.29418357e-03 + syst_JES_EtaIntercalibration_Stat198: 1.22367592e-03 + syst_JES_EtaIntercalibration_Stat199: 6.20481143e-04 + syst_JES_EtaIntercalibration_Stat2: 1.69122655e-09 + syst_JES_EtaIntercalibration_Stat20: 2.08879343e-09 + syst_JES_EtaIntercalibration_Stat200: 7.03647191e-04 + syst_JES_EtaIntercalibration_Stat201: 2.74485897e-04 + syst_JES_EtaIntercalibration_Stat202: 1.15613640e-03 + syst_JES_EtaIntercalibration_Stat203: 1.95754507e-04 + syst_JES_EtaIntercalibration_Stat204: 6.58603378e-04 + syst_JES_EtaIntercalibration_Stat205: 9.31409510e-04 + syst_JES_EtaIntercalibration_Stat206: 1.14980583e-03 + syst_JES_EtaIntercalibration_Stat207: 6.71839466e-04 + syst_JES_EtaIntercalibration_Stat208: 1.37492591e-03 + syst_JES_EtaIntercalibration_Stat209: 1.58483406e-03 + syst_JES_EtaIntercalibration_Stat21: 2.08879343e-09 + syst_JES_EtaIntercalibration_Stat210: 9.23170483e-04 + syst_JES_EtaIntercalibration_Stat211: 5.88909774e-04 + syst_JES_EtaIntercalibration_Stat212: 3.01712160e-04 + syst_JES_EtaIntercalibration_Stat213: 9.91743445e-05 + syst_JES_EtaIntercalibration_Stat214: 1.40095332e-04 + syst_JES_EtaIntercalibration_Stat215: 2.82987880e-04 + syst_JES_EtaIntercalibration_Stat216: 3.83705430e-04 + syst_JES_EtaIntercalibration_Stat217: 3.35014546e-04 + syst_JES_EtaIntercalibration_Stat218: 4.22421306e-04 + syst_JES_EtaIntercalibration_Stat219: 5.24749742e-04 + syst_JES_EtaIntercalibration_Stat22: 2.08879343e-09 + syst_JES_EtaIntercalibration_Stat220: 3.67885753e-04 + syst_JES_EtaIntercalibration_Stat221: 2.29148909e-04 + syst_JES_EtaIntercalibration_Stat222: 4.00190339e-05 + syst_JES_EtaIntercalibration_Stat223: 1.59088867e-04 + syst_JES_EtaIntercalibration_Stat224: 6.46483929e-05 + syst_JES_EtaIntercalibration_Stat225: 1.25984271e-04 + syst_JES_EtaIntercalibration_Stat226: 1.13218727e-04 + syst_JES_EtaIntercalibration_Stat227: 1.05994720e-04 + syst_JES_EtaIntercalibration_Stat228: 6.86687200e-05 + syst_JES_EtaIntercalibration_Stat229: 8.50486308e-05 + syst_JES_EtaIntercalibration_Stat23: 6.37333873e-08 + syst_JES_EtaIntercalibration_Stat230: 4.11708978e-04 + syst_JES_EtaIntercalibration_Stat231: 1.66459625e-04 + syst_JES_EtaIntercalibration_Stat232: 2.02000502e-04 + syst_JES_EtaIntercalibration_Stat233: 2.29016877e-04 + syst_JES_EtaIntercalibration_Stat234: 5.52577903e-04 + syst_JES_EtaIntercalibration_Stat235: 6.55672097e-05 + syst_JES_EtaIntercalibration_Stat236: 2.39109613e-05 + syst_JES_EtaIntercalibration_Stat237: 7.92439627e-05 + syst_JES_EtaIntercalibration_Stat238: 1.21427326e-04 + syst_JES_EtaIntercalibration_Stat239: 2.66214009e-05 + syst_JES_EtaIntercalibration_Stat24: 1.53811541e-06 + syst_JES_EtaIntercalibration_Stat240: 1.25553089e-04 + syst_JES_EtaIntercalibration_Stat241: 9.19459171e-05 + syst_JES_EtaIntercalibration_Stat242: 8.53469912e-05 + syst_JES_EtaIntercalibration_Stat243: 6.95418399e-05 + syst_JES_EtaIntercalibration_Stat244: 1.20753924e-04 + syst_JES_EtaIntercalibration_Stat245: 3.41724350e-04 + syst_JES_EtaIntercalibration_Stat25: 1.35060824e-06 + syst_JES_EtaIntercalibration_Stat26: 1.49638110e-08 + syst_JES_EtaIntercalibration_Stat27: 1.05093823e-06 + syst_JES_EtaIntercalibration_Stat28: 1.92449764e-07 + syst_JES_EtaIntercalibration_Stat29: 1.69232739e-06 + syst_JES_EtaIntercalibration_Stat3: 2.71279464e-09 + syst_JES_EtaIntercalibration_Stat30: 1.47971845e-06 + syst_JES_EtaIntercalibration_Stat31: 1.46453576e-04 + syst_JES_EtaIntercalibration_Stat32: 5.84180146e-05 + syst_JES_EtaIntercalibration_Stat33: 2.77773304e-07 + syst_JES_EtaIntercalibration_Stat34: 1.27318304e-05 + syst_JES_EtaIntercalibration_Stat35: 1.02280890e-05 + syst_JES_EtaIntercalibration_Stat36: 2.97906495e-06 + syst_JES_EtaIntercalibration_Stat37: 4.06534451e-05 + syst_JES_EtaIntercalibration_Stat38: 4.95681276e-06 + syst_JES_EtaIntercalibration_Stat39: 5.17017166e-06 + syst_JES_EtaIntercalibration_Stat4: 1.45396052e-09 + syst_JES_EtaIntercalibration_Stat40: 2.40007264e-07 + syst_JES_EtaIntercalibration_Stat41: 2.75950911e-10 + syst_JES_EtaIntercalibration_Stat42: 5.93140799e-09 + syst_JES_EtaIntercalibration_Stat43: 2.08879343e-09 + syst_JES_EtaIntercalibration_Stat44: 2.08879343e-09 + syst_JES_EtaIntercalibration_Stat45: 1.69122655e-09 + syst_JES_EtaIntercalibration_Stat46: 5.23377396e-08 + syst_JES_EtaIntercalibration_Stat47: 1.12894177e-05 + syst_JES_EtaIntercalibration_Stat48: 1.45179162e-06 + syst_JES_EtaIntercalibration_Stat49: 2.30624380e-06 + syst_JES_EtaIntercalibration_Stat5: 1.27911952e-09 + syst_JES_EtaIntercalibration_Stat50: 1.50264560e-04 + syst_JES_EtaIntercalibration_Stat51: 7.19253438e-06 + syst_JES_EtaIntercalibration_Stat52: 1.99341990e-06 + syst_JES_EtaIntercalibration_Stat53: 1.41213086e-04 + syst_JES_EtaIntercalibration_Stat54: 1.46678972e-04 + syst_JES_EtaIntercalibration_Stat55: 1.18430431e-06 + syst_JES_EtaIntercalibration_Stat56: 5.96274272e-06 + syst_JES_EtaIntercalibration_Stat57: 2.63558324e-05 + syst_JES_EtaIntercalibration_Stat58: 2.12334642e-05 + syst_JES_EtaIntercalibration_Stat59: 1.13714671e-05 + syst_JES_EtaIntercalibration_Stat6: 1.52384232e-09 + syst_JES_EtaIntercalibration_Stat60: 1.18123159e-08 + syst_JES_EtaIntercalibration_Stat61: 4.82738609e-06 + syst_JES_EtaIntercalibration_Stat62: 8.22420882e-07 + syst_JES_EtaIntercalibration_Stat63: 3.21306691e-07 + syst_JES_EtaIntercalibration_Stat64: 6.21738904e-10 + syst_JES_EtaIntercalibration_Stat65: 2.08879343e-09 + syst_JES_EtaIntercalibration_Stat66: 2.08879343e-09 + syst_JES_EtaIntercalibration_Stat67: 1.84884058e-06 + syst_JES_EtaIntercalibration_Stat68: 2.76514792e-05 + syst_JES_EtaIntercalibration_Stat69: 1.78089865e-05 + syst_JES_EtaIntercalibration_Stat7: 8.93737148e-09 + syst_JES_EtaIntercalibration_Stat70: 2.00041421e-05 + syst_JES_EtaIntercalibration_Stat71: 1.38637831e-05 + syst_JES_EtaIntercalibration_Stat72: 1.28444900e-04 + syst_JES_EtaIntercalibration_Stat73: 1.21842114e-04 + syst_JES_EtaIntercalibration_Stat74: 3.29306590e-05 + syst_JES_EtaIntercalibration_Stat75: 2.52529043e-05 + syst_JES_EtaIntercalibration_Stat76: 4.13003151e-05 + syst_JES_EtaIntercalibration_Stat77: 1.15576213e-05 + syst_JES_EtaIntercalibration_Stat78: 2.81720497e-05 + syst_JES_EtaIntercalibration_Stat79: 2.77415076e-05 + syst_JES_EtaIntercalibration_Stat8: 2.09836045e-07 + syst_JES_EtaIntercalibration_Stat80: 3.42105729e-05 + syst_JES_EtaIntercalibration_Stat81: 4.79101145e-05 + syst_JES_EtaIntercalibration_Stat82: 3.10220228e-05 + syst_JES_EtaIntercalibration_Stat83: 1.08057829e-06 + syst_JES_EtaIntercalibration_Stat84: 6.42093239e-06 + syst_JES_EtaIntercalibration_Stat85: 2.03250903e-06 + syst_JES_EtaIntercalibration_Stat86: 8.91932423e-09 + syst_JES_EtaIntercalibration_Stat87: 1.27911952e-09 + syst_JES_EtaIntercalibration_Stat88: 1.36223679e-06 + syst_JES_EtaIntercalibration_Stat89: 3.52979090e-05 + syst_JES_EtaIntercalibration_Stat9: 2.10835290e-07 + syst_JES_EtaIntercalibration_Stat90: 5.22394724e-05 + syst_JES_EtaIntercalibration_Stat91: 2.10383381e-05 + syst_JES_EtaIntercalibration_Stat92: 1.04712396e-05 + syst_JES_EtaIntercalibration_Stat93: 9.43545828e-05 + syst_JES_EtaIntercalibration_Stat94: 8.51710884e-05 + syst_JES_EtaIntercalibration_Stat95: 1.41244047e-04 + syst_JES_EtaIntercalibration_Stat96: 2.73297988e-05 + syst_JES_EtaIntercalibration_Stat97: 8.23711521e-05 + syst_JES_EtaIntercalibration_Stat98: 3.41774824e-05 + syst_JES_EtaIntercalibration_Stat99: 8.43581608e-05 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.55368133e-02 + syst_JES_Flavour_Comp: 7.59718922e-02 + syst_JES_Flavour_Response: 3.79676115e-01 + syst_JES_Gjet_Generator: 3.98173945e-01 + syst_JES_Gjet_OOC: 2.63302469e-01 + syst_JES_Gjet_Purity: 8.34821472e-02 + syst_JES_Gjet_Stat1: 3.65177232e-04 + syst_JES_Gjet_Stat10: 2.09547918e-02 + syst_JES_Gjet_Stat11: 3.29976726e-02 + syst_JES_Gjet_Stat12: 3.06150878e-02 + syst_JES_Gjet_Stat13: 3.81665311e-03 + syst_JES_Gjet_Stat14: 7.73509787e-03 + syst_JES_Gjet_Stat15: 9.57187990e-04 + syst_JES_Gjet_Stat2: 4.18491147e-04 + syst_JES_Gjet_Stat3: 5.83295318e-04 + syst_JES_Gjet_Stat4: 1.13792380e-03 + syst_JES_Gjet_Stat5: 1.20324662e-03 + syst_JES_Gjet_Stat6: 2.48070434e-03 + syst_JES_Gjet_Stat7: 3.94006025e-03 + syst_JES_Gjet_Stat8: 3.86271821e-03 + syst_JES_Gjet_Stat9: 1.07121397e-02 + syst_JES_Gjet_Veto: 1.20069034e-01 + syst_JES_Gjet_dPhi: 1.70886629e-02 + syst_JES_LArESZee: 4.88552257e-01 + syst_JES_LArEsmear: 3.46740047e-02 + syst_JES_LAr_JVT: 5.01639582e-02 + syst_JES_MJB_Alpha: 9.76024297e-04 + syst_JES_MJB_Asym: 4.01212198e-03 + syst_JES_MJB_Beta: 7.26020267e-04 + syst_JES_MJB_Fragmentation: 1.85691592e-02 + syst_JES_MJB_Stat1: 1.66183415e-03 + syst_JES_MJB_Stat10: 2.06527365e-04 + syst_JES_MJB_Stat11: 5.37305082e-05 + syst_JES_MJB_Stat12: 1.18040435e-04 + syst_JES_MJB_Stat13: 1.29746465e-04 + syst_JES_MJB_Stat14: 1.53986654e-04 + syst_JES_MJB_Stat15: 1.20677853e-04 + syst_JES_MJB_Stat16: 1.13571371e-04 + syst_JES_MJB_Stat2: 1.25971540e-03 + syst_JES_MJB_Stat3: 1.27740003e-03 + syst_JES_MJB_Stat4: 7.43945460e-04 + syst_JES_MJB_Stat5: 8.41301175e-04 + syst_JES_MJB_Stat6: 1.52829153e-04 + syst_JES_MJB_Stat7: 1.43224779e-03 + syst_JES_MJB_Stat8: 1.38763132e-03 + syst_JES_MJB_Stat9: 8.14227597e-04 + syst_JES_MJB_Threshold: 3.82713313e-03 + syst_JES_Pileup_MuOffset: 1.51810221e-02 + syst_JES_Pileup_NPVOffset: 2.81720549e-02 + syst_JES_Pileup_Pt_term: 8.31637764e-02 + syst_JES_Pileup_Rho_topology: 1.27053238e-01 + syst_JES_PunchThrough_MC15: 2.59216728e-03 + syst_JES_SingleParticle_HighPt: 1.54135136e-04 + syst_JES_Zjet_MC: 3.68262987e-01 + syst_JES_Zjet_MuScale: 1.98957910e-02 + syst_JES_Zjet_MuSmearID: 2.90800602e-03 + syst_JES_Zjet_MuSmearMS: 5.33647587e-02 + syst_JES_Zjet_OOC: 1.27053844e-01 + syst_JES_Zjet_Stat1: 1.49180907e-03 + syst_JES_Zjet_Stat10: 1.94432938e-02 + syst_JES_Zjet_Stat11: 3.20599688e-02 + syst_JES_Zjet_Stat12: 9.56811020e-02 + syst_JES_Zjet_Stat13: 1.92903499e-02 + syst_JES_Zjet_Stat2: 2.84244198e-04 + syst_JES_Zjet_Stat3: 4.69403600e-04 + syst_JES_Zjet_Stat4: 4.18905639e-04 + syst_JES_Zjet_Stat5: 1.15210146e-03 + syst_JES_Zjet_Stat6: 1.32130502e-03 + syst_JES_Zjet_Stat7: 1.29946415e-03 + syst_JES_Zjet_Stat8: 2.59104651e-03 + syst_JES_Zjet_Stat9: 7.28276766e-03 + syst_JES_Zjet_Veto: 2.27941813e-02 + syst_JES_Zjet_dPhi: 1.94928622e-02 syst_PRW: 0.0 syst_Unfolding_bias: 0.0 - syst_cleaning: 0.1849830262483561 + syst_cleaning: 1.84983026e-01 syst_lumi: 0.4494 - stat: 0.07317 - syst_JER_CROSS_CALIB_FORWARD: 3.412e-05 + syst_JER_CROSS_CALIB_FORWARD: 3.41200000e-05 syst_JER_NOISE_FORWARD: 0.00199 - syst_JER_NP0: 0.029156342363197755 - syst_JER_NP1: 0.002993450684410886 - syst_JER_NP2: 2.1268005900883138e-16 - syst_JER_NP3: 0.009864703175970374 - syst_JER_NP4: 0.0037304601257753716 - syst_JER_NP5: 0.001577898285695247 + syst_JER_NP0: 2.91563424e-02 + syst_JER_NP1: 2.99345068e-03 + syst_JER_NP2: 2.12680059e-16 + syst_JER_NP3: 9.86470318e-03 + syst_JER_NP4: 3.73046013e-03 + syst_JER_NP5: 1.57789829e-03 syst_JER_NP6: 0.0 syst_JER_NP7: 0.0 - syst_JER_NP8: 0.006115553347817351 - syst_JES_EtaIntercalibration_Modelling: 0.1658832948189781 - syst_JES_EtaIntercalibration_NonClosure: 0.016050422891625005 - syst_JES_EtaIntercalibration_Stat0: 9.724132454877402e-11 - syst_JES_EtaIntercalibration_Stat1: 6.738430139876795e-11 - syst_JES_EtaIntercalibration_Stat10: 9.859471322033449e-11 - syst_JES_EtaIntercalibration_Stat100: 2.958158104496783e-05 - syst_JES_EtaIntercalibration_Stat101: 2.0120851591073375e-05 - syst_JES_EtaIntercalibration_Stat102: 4.709538273546569e-05 - syst_JES_EtaIntercalibration_Stat103: 2.609099620558786e-05 - syst_JES_EtaIntercalibration_Stat104: 3.3121045842183182e-06 - syst_JES_EtaIntercalibration_Stat105: 4.89474869119958e-05 - syst_JES_EtaIntercalibration_Stat106: 8.864348368605556e-06 - syst_JES_EtaIntercalibration_Stat107: 3.8676380010931744e-12 - syst_JES_EtaIntercalibration_Stat108: 1.3705359323545661e-05 - syst_JES_EtaIntercalibration_Stat109: 0.00011476870337770658 - syst_JES_EtaIntercalibration_Stat11: 7.465068939400358e-10 - syst_JES_EtaIntercalibration_Stat110: 6.186034654768755e-05 - syst_JES_EtaIntercalibration_Stat111: 8.718214725504299e-05 - syst_JES_EtaIntercalibration_Stat112: 0.00025395428564999647 - syst_JES_EtaIntercalibration_Stat113: 0.0001379710839270316 - syst_JES_EtaIntercalibration_Stat114: 3.4162343303702106e-05 - syst_JES_EtaIntercalibration_Stat115: 0.00018278053691517596 - syst_JES_EtaIntercalibration_Stat116: 0.0002614386926221901 - syst_JES_EtaIntercalibration_Stat117: 0.00017041236948942408 - syst_JES_EtaIntercalibration_Stat118: 0.00018180314044317276 - syst_JES_EtaIntercalibration_Stat119: 0.00017996269057779727 - syst_JES_EtaIntercalibration_Stat12: 1.0626929660066448e-07 - syst_JES_EtaIntercalibration_Stat120: 0.00044721660020620885 - syst_JES_EtaIntercalibration_Stat121: 0.000224537337819348 - syst_JES_EtaIntercalibration_Stat122: 7.646464330002461e-05 - syst_JES_EtaIntercalibration_Stat123: 2.0329651171380192e-05 - syst_JES_EtaIntercalibration_Stat124: 0.00019156676759814054 - syst_JES_EtaIntercalibration_Stat125: 4.376779444694466e-05 - syst_JES_EtaIntercalibration_Stat126: 0.000127976763906578 - syst_JES_EtaIntercalibration_Stat127: 1.154844875946549e-10 - syst_JES_EtaIntercalibration_Stat128: 0.0003774460950917362 - syst_JES_EtaIntercalibration_Stat129: 0.0012226499785302413 - syst_JES_EtaIntercalibration_Stat13: 3.3838673910187434e-10 - syst_JES_EtaIntercalibration_Stat130: 0.0013349107413980906 - syst_JES_EtaIntercalibration_Stat131: 0.0015008685177256536 - syst_JES_EtaIntercalibration_Stat132: 0.001416628910477264 - syst_JES_EtaIntercalibration_Stat133: 0.0017793118754170106 - syst_JES_EtaIntercalibration_Stat134: 0.0025825028557583435 - syst_JES_EtaIntercalibration_Stat135: 0.0016587533722648463 - syst_JES_EtaIntercalibration_Stat136: 0.0018426556074047043 - syst_JES_EtaIntercalibration_Stat137: 0.001402736934531917 - syst_JES_EtaIntercalibration_Stat138: 0.0020522077745686474 - syst_JES_EtaIntercalibration_Stat139: 0.0019995781430091697 - syst_JES_EtaIntercalibration_Stat14: 3.390699768484376e-10 - syst_JES_EtaIntercalibration_Stat140: 0.0018304247457898945 - syst_JES_EtaIntercalibration_Stat141: 0.0016630895195388613 - syst_JES_EtaIntercalibration_Stat142: 0.0011206785745698897 - syst_JES_EtaIntercalibration_Stat143: 0.0013555414969671714 - syst_JES_EtaIntercalibration_Stat144: 0.0015778161133351376 - syst_JES_EtaIntercalibration_Stat145: 0.000260140013982855 - syst_JES_EtaIntercalibration_Stat146: 0.0003643328130981342 - syst_JES_EtaIntercalibration_Stat147: 0.0009792518611164342 - syst_JES_EtaIntercalibration_Stat148: 0.0013450768305193572 - syst_JES_EtaIntercalibration_Stat149: 0.0010834843826747112 - syst_JES_EtaIntercalibration_Stat15: 5.912032026934563e-10 - syst_JES_EtaIntercalibration_Stat150: 0.00046048255124380116 - syst_JES_EtaIntercalibration_Stat151: 0.0013622711734452872 - syst_JES_EtaIntercalibration_Stat152: 0.002247893680759835 - syst_JES_EtaIntercalibration_Stat153: 0.0014829351806468145 - syst_JES_EtaIntercalibration_Stat154: 0.0019748797431742523 - syst_JES_EtaIntercalibration_Stat155: 0.001417110266528332 - syst_JES_EtaIntercalibration_Stat156: 0.0018810071770198006 - syst_JES_EtaIntercalibration_Stat157: 0.002688055616984143 - syst_JES_EtaIntercalibration_Stat158: 0.0021159269245415824 - syst_JES_EtaIntercalibration_Stat159: 0.0016329361642988375 - syst_JES_EtaIntercalibration_Stat16: 6.050753110735473e-11 - syst_JES_EtaIntercalibration_Stat160: 0.0015346696712973773 - syst_JES_EtaIntercalibration_Stat161: 0.0011691397991686024 - syst_JES_EtaIntercalibration_Stat162: 0.0004744419959278478 - syst_JES_EtaIntercalibration_Stat163: 0.0003659839595870289 - syst_JES_EtaIntercalibration_Stat164: 0.0004192538491176915 - syst_JES_EtaIntercalibration_Stat165: 2.889060747024828e-05 - syst_JES_EtaIntercalibration_Stat166: 0.002087553831641235 - syst_JES_EtaIntercalibration_Stat167: 0.0013421201911527896 - syst_JES_EtaIntercalibration_Stat168: 0.0015338940861415432 - syst_JES_EtaIntercalibration_Stat169: 0.0008386590010248504 - syst_JES_EtaIntercalibration_Stat17: 9.8247981658658e-11 - syst_JES_EtaIntercalibration_Stat170: 0.0030062789291747365 - syst_JES_EtaIntercalibration_Stat171: 0.003134982791707157 - syst_JES_EtaIntercalibration_Stat172: 0.002083993538539647 - syst_JES_EtaIntercalibration_Stat173: 0.0019767057716058804 - syst_JES_EtaIntercalibration_Stat174: 0.0032529155591100116 - syst_JES_EtaIntercalibration_Stat175: 0.0020188938233597128 - syst_JES_EtaIntercalibration_Stat176: 0.0026580859184759244 - syst_JES_EtaIntercalibration_Stat177: 0.0015099254120651126 - syst_JES_EtaIntercalibration_Stat178: 0.001053779711324905 - syst_JES_EtaIntercalibration_Stat179: 0.000867880279762134 - syst_JES_EtaIntercalibration_Stat18: 9.724132454877402e-11 - syst_JES_EtaIntercalibration_Stat180: 0.0006661148605908744 - syst_JES_EtaIntercalibration_Stat181: 0.0005948728548795917 - syst_JES_EtaIntercalibration_Stat182: 0.0018038326606146147 - syst_JES_EtaIntercalibration_Stat183: 0.0024092826785879697 - syst_JES_EtaIntercalibration_Stat184: 0.0021547480566182207 - syst_JES_EtaIntercalibration_Stat185: 0.0026700658357988105 - syst_JES_EtaIntercalibration_Stat186: 0.004138942467587584 - syst_JES_EtaIntercalibration_Stat187: 0.004994315468610288 - syst_JES_EtaIntercalibration_Stat188: 0.005635438115177914 - syst_JES_EtaIntercalibration_Stat189: 0.00395422011906267 - syst_JES_EtaIntercalibration_Stat19: 4.636843403652963e-10 - syst_JES_EtaIntercalibration_Stat190: 0.003914026156018889 - syst_JES_EtaIntercalibration_Stat191: 0.004960103300335589 - syst_JES_EtaIntercalibration_Stat192: 0.006912487323677346 - syst_JES_EtaIntercalibration_Stat193: 0.002765947715973677 - syst_JES_EtaIntercalibration_Stat194: 0.0028977210010627317 - syst_JES_EtaIntercalibration_Stat195: 0.001988276808570678 - syst_JES_EtaIntercalibration_Stat196: 0.001929976165655939 - syst_JES_EtaIntercalibration_Stat197: 0.0017183936306911754 - syst_JES_EtaIntercalibration_Stat198: 0.001168968805186862 - syst_JES_EtaIntercalibration_Stat199: 0.0008086712434605302 - syst_JES_EtaIntercalibration_Stat2: 7.911751433785063e-11 - syst_JES_EtaIntercalibration_Stat20: 9.724132454877402e-11 - syst_JES_EtaIntercalibration_Stat200: 0.0005823631549986657 - syst_JES_EtaIntercalibration_Stat201: 0.001292815689686662 - syst_JES_EtaIntercalibration_Stat202: 0.0013996681990743377 - syst_JES_EtaIntercalibration_Stat203: 0.001487203956254824 - syst_JES_EtaIntercalibration_Stat204: 0.0007196689013011469 - syst_JES_EtaIntercalibration_Stat205: 0.0010124134333364013 - syst_JES_EtaIntercalibration_Stat206: 0.002375407912338426 - syst_JES_EtaIntercalibration_Stat207: 0.0015224075505593107 - syst_JES_EtaIntercalibration_Stat208: 0.001244881242327958 - syst_JES_EtaIntercalibration_Stat209: 0.0012454277447929286 - syst_JES_EtaIntercalibration_Stat21: 9.724132454877402e-11 - syst_JES_EtaIntercalibration_Stat210: 0.0008577871319126909 - syst_JES_EtaIntercalibration_Stat211: 0.0006864411609890537 - syst_JES_EtaIntercalibration_Stat212: 0.0003187310308081094 - syst_JES_EtaIntercalibration_Stat213: 8.186489281126555e-05 - syst_JES_EtaIntercalibration_Stat214: 7.24439070936956e-05 - syst_JES_EtaIntercalibration_Stat215: 0.00035832042196894115 - syst_JES_EtaIntercalibration_Stat216: 0.00026779693178787537 - syst_JES_EtaIntercalibration_Stat217: 0.0002527788495899133 - syst_JES_EtaIntercalibration_Stat218: 0.0001465338773116988 - syst_JES_EtaIntercalibration_Stat219: 9.766528605395061e-05 - syst_JES_EtaIntercalibration_Stat22: 9.724132454877402e-11 - syst_JES_EtaIntercalibration_Stat220: 0.0003364443193159902 - syst_JES_EtaIntercalibration_Stat221: 3.148113556957563e-05 - syst_JES_EtaIntercalibration_Stat222: 2.115700061445384e-05 - syst_JES_EtaIntercalibration_Stat223: 0.00010400877200844176 - syst_JES_EtaIntercalibration_Stat224: 4.95871203035627e-05 - syst_JES_EtaIntercalibration_Stat225: 8.329217130078913e-05 - syst_JES_EtaIntercalibration_Stat226: 8.904953340697524e-05 - syst_JES_EtaIntercalibration_Stat227: 9.698651091775599e-05 - syst_JES_EtaIntercalibration_Stat228: 0.00016621576843067566 - syst_JES_EtaIntercalibration_Stat229: 9.561515151899306e-05 - syst_JES_EtaIntercalibration_Stat23: 3.1705723292017798e-09 - syst_JES_EtaIntercalibration_Stat230: 0.00013062447243912604 - syst_JES_EtaIntercalibration_Stat231: 0.0001926280708385982 - syst_JES_EtaIntercalibration_Stat232: 5.7503870087151526e-05 - syst_JES_EtaIntercalibration_Stat233: 0.00014333703568861748 - syst_JES_EtaIntercalibration_Stat234: 0.0002910922554792552 - syst_JES_EtaIntercalibration_Stat235: 6.700440534012779e-05 - syst_JES_EtaIntercalibration_Stat236: 1.2643725049764594e-05 - syst_JES_EtaIntercalibration_Stat237: 4.177907460679329e-05 - syst_JES_EtaIntercalibration_Stat238: 5.131174959743626e-05 - syst_JES_EtaIntercalibration_Stat239: 9.949303446473024e-06 - syst_JES_EtaIntercalibration_Stat24: 1.2036941181213772e-07 - syst_JES_EtaIntercalibration_Stat240: 5.026192111497033e-05 - syst_JES_EtaIntercalibration_Stat241: 3.884989961376992e-05 - syst_JES_EtaIntercalibration_Stat242: 4.50613037982702e-05 - syst_JES_EtaIntercalibration_Stat243: 3.6762778201913626e-05 - syst_JES_EtaIntercalibration_Stat244: 6.368583594489437e-05 - syst_JES_EtaIntercalibration_Stat245: 0.00018073855060556394 - syst_JES_EtaIntercalibration_Stat25: 1.1041916150288409e-07 - syst_JES_EtaIntercalibration_Stat26: 7.44282607666604e-10 - syst_JES_EtaIntercalibration_Stat27: 9.57138276129421e-08 - syst_JES_EtaIntercalibration_Stat28: 1.147929134166391e-08 - syst_JES_EtaIntercalibration_Stat29: 1.3922785308622698e-07 - syst_JES_EtaIntercalibration_Stat3: 1.2737457625052183e-10 - syst_JES_EtaIntercalibration_Stat30: 1.1986417312942178e-07 - syst_JES_EtaIntercalibration_Stat31: 7.486771418487077e-05 - syst_JES_EtaIntercalibration_Stat32: 3.6131708198028775e-05 - syst_JES_EtaIntercalibration_Stat33: 2.6898821983871336e-08 - syst_JES_EtaIntercalibration_Stat34: 1.0595579868511208e-06 - syst_JES_EtaIntercalibration_Stat35: 1.4656139477735193e-05 - syst_JES_EtaIntercalibration_Stat36: 1.0172282339770165e-06 - syst_JES_EtaIntercalibration_Stat37: 3.0684319716109083e-06 - syst_JES_EtaIntercalibration_Stat38: 4.344731838675432e-07 - syst_JES_EtaIntercalibration_Stat39: 4.550963496887225e-07 - syst_JES_EtaIntercalibration_Stat4: 6.738430139876795e-11 - syst_JES_EtaIntercalibration_Stat40: 1.3628667066151408e-08 - syst_JES_EtaIntercalibration_Stat41: 1.3789995531181293e-11 - syst_JES_EtaIntercalibration_Stat42: 2.7903338509934615e-10 - syst_JES_EtaIntercalibration_Stat43: 9.724132454877402e-11 - syst_JES_EtaIntercalibration_Stat44: 9.724132454877402e-11 - syst_JES_EtaIntercalibration_Stat45: 7.911751433785063e-11 - syst_JES_EtaIntercalibration_Stat46: 4.517780623168305e-08 - syst_JES_EtaIntercalibration_Stat47: 1.426038220911347e-06 - syst_JES_EtaIntercalibration_Stat48: 1.2213499008474188e-07 - syst_JES_EtaIntercalibration_Stat49: 2.0885215696276637e-07 - syst_JES_EtaIntercalibration_Stat5: 5.954790676421801e-11 - syst_JES_EtaIntercalibration_Stat50: 7.526599394658586e-05 - syst_JES_EtaIntercalibration_Stat51: 6.194910895242967e-07 - syst_JES_EtaIntercalibration_Stat52: 1.566372336384935e-07 - syst_JES_EtaIntercalibration_Stat53: 7.315781276630679e-05 - syst_JES_EtaIntercalibration_Stat54: 7.490846301832324e-05 - syst_JES_EtaIntercalibration_Stat55: 1.846487933212671e-07 - syst_JES_EtaIntercalibration_Stat56: 8.712621233015929e-07 - syst_JES_EtaIntercalibration_Stat57: 2.108520539975838e-05 - syst_JES_EtaIntercalibration_Stat58: 2.8881604439504395e-06 - syst_JES_EtaIntercalibration_Stat59: 1.527960509116237e-06 - syst_JES_EtaIntercalibration_Stat6: 7.145339932431486e-11 - syst_JES_EtaIntercalibration_Stat60: 5.591794411642384e-10 - syst_JES_EtaIntercalibration_Stat61: 4.0268327141191245e-07 - syst_JES_EtaIntercalibration_Stat62: 4.857656351575315e-08 - syst_JES_EtaIntercalibration_Stat63: 1.9027218200023795e-08 - syst_JES_EtaIntercalibration_Stat64: 2.946013591902624e-11 - syst_JES_EtaIntercalibration_Stat65: 9.724132454877402e-11 - syst_JES_EtaIntercalibration_Stat66: 9.724132454877402e-11 - syst_JES_EtaIntercalibration_Stat67: 1.3678097482837297e-07 - syst_JES_EtaIntercalibration_Stat68: 4.821084006735415e-06 - syst_JES_EtaIntercalibration_Stat69: 3.585237649026909e-06 - syst_JES_EtaIntercalibration_Stat7: 4.42535389178086e-10 - syst_JES_EtaIntercalibration_Stat70: 2.4473988232407074e-06 - syst_JES_EtaIntercalibration_Stat71: 1.463321820379919e-06 - syst_JES_EtaIntercalibration_Stat72: 7.136747502665343e-05 - syst_JES_EtaIntercalibration_Stat73: 7.535737615356575e-05 - syst_JES_EtaIntercalibration_Stat74: 1.4308021902065987e-05 - syst_JES_EtaIntercalibration_Stat75: 1.4957871958020865e-05 - syst_JES_EtaIntercalibration_Stat76: 5.57068926441558e-05 - syst_JES_EtaIntercalibration_Stat77: 2.0492289574374067e-06 - syst_JES_EtaIntercalibration_Stat78: 1.5694744190870873e-05 - syst_JES_EtaIntercalibration_Stat79: 2.5403893461436184e-05 - syst_JES_EtaIntercalibration_Stat8: 1.249252303245025e-08 - syst_JES_EtaIntercalibration_Stat80: 2.8072413839034217e-05 - syst_JES_EtaIntercalibration_Stat81: 9.830992727085094e-06 - syst_JES_EtaIntercalibration_Stat82: 1.0485020398168045e-05 - syst_JES_EtaIntercalibration_Stat83: 5.380084641527492e-08 - syst_JES_EtaIntercalibration_Stat84: 5.344284406756437e-07 - syst_JES_EtaIntercalibration_Stat85: 1.7162884278290757e-07 - syst_JES_EtaIntercalibration_Stat86: 4.4333740503142745e-10 - syst_JES_EtaIntercalibration_Stat87: 5.954790676421801e-11 - syst_JES_EtaIntercalibration_Stat88: 1.1328372540285154e-07 - syst_JES_EtaIntercalibration_Stat89: 8.623844545792787e-06 - syst_JES_EtaIntercalibration_Stat9: 1.2548234994213329e-08 - syst_JES_EtaIntercalibration_Stat90: 9.336560113339387e-06 - syst_JES_EtaIntercalibration_Stat91: 2.4714260559442193e-06 - syst_JES_EtaIntercalibration_Stat92: 3.1403007292296063e-06 - syst_JES_EtaIntercalibration_Stat93: 5.64742845970624e-05 - syst_JES_EtaIntercalibration_Stat94: 6.122622369540687e-05 - syst_JES_EtaIntercalibration_Stat95: 9.686801381261e-05 - syst_JES_EtaIntercalibration_Stat96: 1.0737031526450874e-05 - syst_JES_EtaIntercalibration_Stat97: 1.0990987978794265e-05 - syst_JES_EtaIntercalibration_Stat98: 5.4983431140662726e-06 - syst_JES_EtaIntercalibration_Stat99: 1.9823866297975273e-05 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.01449639775944355 - syst_JES_Flavour_Comp: 0.06193326973444887 - syst_JES_Flavour_Response: 0.18313691599456403 - syst_JES_Gjet_Generator: 0.21677999792416275 - syst_JES_Gjet_OOC: 0.15235520995358182 - syst_JES_Gjet_Purity: 0.05018765983785257 - syst_JES_Gjet_Stat1: 0.0001826231712434104 - syst_JES_Gjet_Stat10: 0.01042384770610162 - syst_JES_Gjet_Stat11: 0.01825615170291921 - syst_JES_Gjet_Stat12: 0.02414253300712251 - syst_JES_Gjet_Stat13: 0.010450749961127192 - syst_JES_Gjet_Stat14: 0.0035528471681174237 - syst_JES_Gjet_Stat15: 0.0007295998629385837 - syst_JES_Gjet_Stat2: 0.00027914173819047555 - syst_JES_Gjet_Stat3: 0.0002808693824538374 - syst_JES_Gjet_Stat4: 0.0005966827130058319 - syst_JES_Gjet_Stat5: 0.0006118670116945348 - syst_JES_Gjet_Stat6: 0.0014006096413704996 - syst_JES_Gjet_Stat7: 0.0020605272990183846 - syst_JES_Gjet_Stat8: 0.0016888761795939926 - syst_JES_Gjet_Stat9: 0.005271303538974017 - syst_JES_Gjet_Veto: 0.08037519066851412 - syst_JES_Gjet_dPhi: 0.010060539585429799 - syst_JES_LArESZee: 0.28357476527363995 - syst_JES_LArEsmear: 0.02107030374721731 - syst_JES_LAr_JVT: 0.029338670726534285 - syst_JES_MJB_Alpha: 0.0008305980736794422 - syst_JES_MJB_Asym: 0.004920271816678424 - syst_JES_MJB_Beta: 0.0003215488496325247 - syst_JES_MJB_Fragmentation: 0.018210142091702637 - syst_JES_MJB_Stat1: 0.001108920209032192 - syst_JES_MJB_Stat10: 5.842719164053669e-05 - syst_JES_MJB_Stat11: 9.871443815369666e-06 - syst_JES_MJB_Stat12: 4.596110874152189e-05 - syst_JES_MJB_Stat13: 5.7094054637939314e-05 - syst_JES_MJB_Stat14: 7.808256575574344e-05 - syst_JES_MJB_Stat15: 6.379788926759253e-05 - syst_JES_MJB_Stat16: 6.004228239332679e-05 - syst_JES_MJB_Stat2: 0.0018968233971564143 - syst_JES_MJB_Stat3: 0.002113110472147635 - syst_JES_MJB_Stat4: 0.0003677075805582474 - syst_JES_MJB_Stat5: 0.0005013521086771253 - syst_JES_MJB_Stat6: 0.00019195476205345884 - syst_JES_MJB_Stat7: 0.0006852285677056962 - syst_JES_MJB_Stat8: 0.0006568137235929225 - syst_JES_MJB_Stat9: 0.00039805229891937566 - syst_JES_MJB_Threshold: 0.0062865973904808 - syst_JES_Pileup_MuOffset: 0.012663495044812866 - syst_JES_Pileup_NPVOffset: 0.019220130072400657 - syst_JES_Pileup_Pt_term: 0.04114297752958577 - syst_JES_Pileup_Rho_topology: 0.07030623781002651 - syst_JES_PunchThrough_MC15: 0.002424257824572296 - syst_JES_SingleParticle_HighPt: 8.148698546393773e-05 - syst_JES_Zjet_MC: 0.19603188516157263 - syst_JES_Zjet_MuScale: 0.011186535690284102 - syst_JES_Zjet_MuSmearID: 0.0019500158973710957 - syst_JES_Zjet_MuSmearMS: 0.03426128719123086 - syst_JES_Zjet_OOC: 0.07167666060162123 - syst_JES_Zjet_Stat1: 0.0014580960899405774 - syst_JES_Zjet_Stat10: 0.008599500029071457 - syst_JES_Zjet_Stat11: 0.012933527438405965 - syst_JES_Zjet_Stat12: 0.05738201460388089 - syst_JES_Zjet_Stat13: 0.021040501419880658 - syst_JES_Zjet_Stat2: 5.130466057533175e-05 - syst_JES_Zjet_Stat3: 0.00043145932311169265 - syst_JES_Zjet_Stat4: 0.000521830250847917 - syst_JES_Zjet_Stat5: 0.0006063089373413525 - syst_JES_Zjet_Stat6: 0.0010678782456347725 - syst_JES_Zjet_Stat7: 0.0007560636018219632 - syst_JES_Zjet_Stat8: 0.0013631721057885536 - syst_JES_Zjet_Stat9: 0.0037921042641256585 - syst_JES_Zjet_Veto: 0.013134495155886274 - syst_JES_Zjet_dPhi: 0.011197343914964835 + syst_JER_NP8: 6.11555335e-03 + syst_JES_EtaIntercalibration_Modelling: 1.65883295e-01 + syst_JES_EtaIntercalibration_NonClosure: 1.60504229e-02 + syst_JES_EtaIntercalibration_Stat0: 9.72413245e-11 + syst_JES_EtaIntercalibration_Stat1: 6.73843014e-11 + syst_JES_EtaIntercalibration_Stat10: 9.85947132e-11 + syst_JES_EtaIntercalibration_Stat100: 2.95815810e-05 + syst_JES_EtaIntercalibration_Stat101: 2.01208516e-05 + syst_JES_EtaIntercalibration_Stat102: 4.70953827e-05 + syst_JES_EtaIntercalibration_Stat103: 2.60909962e-05 + syst_JES_EtaIntercalibration_Stat104: 3.31210458e-06 + syst_JES_EtaIntercalibration_Stat105: 4.89474869e-05 + syst_JES_EtaIntercalibration_Stat106: 8.86434837e-06 + syst_JES_EtaIntercalibration_Stat107: 3.86763800e-12 + syst_JES_EtaIntercalibration_Stat108: 1.37053593e-05 + syst_JES_EtaIntercalibration_Stat109: 1.14768703e-04 + syst_JES_EtaIntercalibration_Stat11: 7.46506894e-10 + syst_JES_EtaIntercalibration_Stat110: 6.18603465e-05 + syst_JES_EtaIntercalibration_Stat111: 8.71821473e-05 + syst_JES_EtaIntercalibration_Stat112: 2.53954286e-04 + syst_JES_EtaIntercalibration_Stat113: 1.37971084e-04 + syst_JES_EtaIntercalibration_Stat114: 3.41623433e-05 + syst_JES_EtaIntercalibration_Stat115: 1.82780537e-04 + syst_JES_EtaIntercalibration_Stat116: 2.61438693e-04 + syst_JES_EtaIntercalibration_Stat117: 1.70412369e-04 + syst_JES_EtaIntercalibration_Stat118: 1.81803140e-04 + syst_JES_EtaIntercalibration_Stat119: 1.79962691e-04 + syst_JES_EtaIntercalibration_Stat12: 1.06269297e-07 + syst_JES_EtaIntercalibration_Stat120: 4.47216600e-04 + syst_JES_EtaIntercalibration_Stat121: 2.24537338e-04 + syst_JES_EtaIntercalibration_Stat122: 7.64646433e-05 + syst_JES_EtaIntercalibration_Stat123: 2.03296512e-05 + syst_JES_EtaIntercalibration_Stat124: 1.91566768e-04 + syst_JES_EtaIntercalibration_Stat125: 4.37677944e-05 + syst_JES_EtaIntercalibration_Stat126: 1.27976764e-04 + syst_JES_EtaIntercalibration_Stat127: 1.15484488e-10 + syst_JES_EtaIntercalibration_Stat128: 3.77446095e-04 + syst_JES_EtaIntercalibration_Stat129: 1.22264998e-03 + syst_JES_EtaIntercalibration_Stat13: 3.38386739e-10 + syst_JES_EtaIntercalibration_Stat130: 1.33491074e-03 + syst_JES_EtaIntercalibration_Stat131: 1.50086852e-03 + syst_JES_EtaIntercalibration_Stat132: 1.41662891e-03 + syst_JES_EtaIntercalibration_Stat133: 1.77931188e-03 + syst_JES_EtaIntercalibration_Stat134: 2.58250286e-03 + syst_JES_EtaIntercalibration_Stat135: 1.65875337e-03 + syst_JES_EtaIntercalibration_Stat136: 1.84265561e-03 + syst_JES_EtaIntercalibration_Stat137: 1.40273693e-03 + syst_JES_EtaIntercalibration_Stat138: 2.05220777e-03 + syst_JES_EtaIntercalibration_Stat139: 1.99957814e-03 + syst_JES_EtaIntercalibration_Stat14: 3.39069977e-10 + syst_JES_EtaIntercalibration_Stat140: 1.83042475e-03 + syst_JES_EtaIntercalibration_Stat141: 1.66308952e-03 + syst_JES_EtaIntercalibration_Stat142: 1.12067857e-03 + syst_JES_EtaIntercalibration_Stat143: 1.35554150e-03 + syst_JES_EtaIntercalibration_Stat144: 1.57781611e-03 + syst_JES_EtaIntercalibration_Stat145: 2.60140014e-04 + syst_JES_EtaIntercalibration_Stat146: 3.64332813e-04 + syst_JES_EtaIntercalibration_Stat147: 9.79251861e-04 + syst_JES_EtaIntercalibration_Stat148: 1.34507683e-03 + syst_JES_EtaIntercalibration_Stat149: 1.08348438e-03 + syst_JES_EtaIntercalibration_Stat15: 5.91203203e-10 + syst_JES_EtaIntercalibration_Stat150: 4.60482551e-04 + syst_JES_EtaIntercalibration_Stat151: 1.36227117e-03 + syst_JES_EtaIntercalibration_Stat152: 2.24789368e-03 + syst_JES_EtaIntercalibration_Stat153: 1.48293518e-03 + syst_JES_EtaIntercalibration_Stat154: 1.97487974e-03 + syst_JES_EtaIntercalibration_Stat155: 1.41711027e-03 + syst_JES_EtaIntercalibration_Stat156: 1.88100718e-03 + syst_JES_EtaIntercalibration_Stat157: 2.68805562e-03 + syst_JES_EtaIntercalibration_Stat158: 2.11592692e-03 + syst_JES_EtaIntercalibration_Stat159: 1.63293616e-03 + syst_JES_EtaIntercalibration_Stat16: 6.05075311e-11 + syst_JES_EtaIntercalibration_Stat160: 1.53466967e-03 + syst_JES_EtaIntercalibration_Stat161: 1.16913980e-03 + syst_JES_EtaIntercalibration_Stat162: 4.74441996e-04 + syst_JES_EtaIntercalibration_Stat163: 3.65983960e-04 + syst_JES_EtaIntercalibration_Stat164: 4.19253849e-04 + syst_JES_EtaIntercalibration_Stat165: 2.88906075e-05 + syst_JES_EtaIntercalibration_Stat166: 2.08755383e-03 + syst_JES_EtaIntercalibration_Stat167: 1.34212019e-03 + syst_JES_EtaIntercalibration_Stat168: 1.53389409e-03 + syst_JES_EtaIntercalibration_Stat169: 8.38659001e-04 + syst_JES_EtaIntercalibration_Stat17: 9.82479817e-11 + syst_JES_EtaIntercalibration_Stat170: 3.00627893e-03 + syst_JES_EtaIntercalibration_Stat171: 3.13498279e-03 + syst_JES_EtaIntercalibration_Stat172: 2.08399354e-03 + syst_JES_EtaIntercalibration_Stat173: 1.97670577e-03 + syst_JES_EtaIntercalibration_Stat174: 3.25291556e-03 + syst_JES_EtaIntercalibration_Stat175: 2.01889382e-03 + syst_JES_EtaIntercalibration_Stat176: 2.65808592e-03 + syst_JES_EtaIntercalibration_Stat177: 1.50992541e-03 + syst_JES_EtaIntercalibration_Stat178: 1.05377971e-03 + syst_JES_EtaIntercalibration_Stat179: 8.67880280e-04 + syst_JES_EtaIntercalibration_Stat18: 9.72413245e-11 + syst_JES_EtaIntercalibration_Stat180: 6.66114861e-04 + syst_JES_EtaIntercalibration_Stat181: 5.94872855e-04 + syst_JES_EtaIntercalibration_Stat182: 1.80383266e-03 + syst_JES_EtaIntercalibration_Stat183: 2.40928268e-03 + syst_JES_EtaIntercalibration_Stat184: 2.15474806e-03 + syst_JES_EtaIntercalibration_Stat185: 2.67006584e-03 + syst_JES_EtaIntercalibration_Stat186: 4.13894247e-03 + syst_JES_EtaIntercalibration_Stat187: 4.99431547e-03 + syst_JES_EtaIntercalibration_Stat188: 5.63543812e-03 + syst_JES_EtaIntercalibration_Stat189: 3.95422012e-03 + syst_JES_EtaIntercalibration_Stat19: 4.63684340e-10 + syst_JES_EtaIntercalibration_Stat190: 3.91402616e-03 + syst_JES_EtaIntercalibration_Stat191: 4.96010330e-03 + syst_JES_EtaIntercalibration_Stat192: 6.91248732e-03 + syst_JES_EtaIntercalibration_Stat193: 2.76594772e-03 + syst_JES_EtaIntercalibration_Stat194: 2.89772100e-03 + syst_JES_EtaIntercalibration_Stat195: 1.98827681e-03 + syst_JES_EtaIntercalibration_Stat196: 1.92997617e-03 + syst_JES_EtaIntercalibration_Stat197: 1.71839363e-03 + syst_JES_EtaIntercalibration_Stat198: 1.16896881e-03 + syst_JES_EtaIntercalibration_Stat199: 8.08671243e-04 + syst_JES_EtaIntercalibration_Stat2: 7.91175143e-11 + syst_JES_EtaIntercalibration_Stat20: 9.72413245e-11 + syst_JES_EtaIntercalibration_Stat200: 5.82363155e-04 + syst_JES_EtaIntercalibration_Stat201: 1.29281569e-03 + syst_JES_EtaIntercalibration_Stat202: 1.39966820e-03 + syst_JES_EtaIntercalibration_Stat203: 1.48720396e-03 + syst_JES_EtaIntercalibration_Stat204: 7.19668901e-04 + syst_JES_EtaIntercalibration_Stat205: 1.01241343e-03 + syst_JES_EtaIntercalibration_Stat206: 2.37540791e-03 + syst_JES_EtaIntercalibration_Stat207: 1.52240755e-03 + syst_JES_EtaIntercalibration_Stat208: 1.24488124e-03 + syst_JES_EtaIntercalibration_Stat209: 1.24542774e-03 + syst_JES_EtaIntercalibration_Stat21: 9.72413245e-11 + syst_JES_EtaIntercalibration_Stat210: 8.57787132e-04 + syst_JES_EtaIntercalibration_Stat211: 6.86441161e-04 + syst_JES_EtaIntercalibration_Stat212: 3.18731031e-04 + syst_JES_EtaIntercalibration_Stat213: 8.18648928e-05 + syst_JES_EtaIntercalibration_Stat214: 7.24439071e-05 + syst_JES_EtaIntercalibration_Stat215: 3.58320422e-04 + syst_JES_EtaIntercalibration_Stat216: 2.67796932e-04 + syst_JES_EtaIntercalibration_Stat217: 2.52778850e-04 + syst_JES_EtaIntercalibration_Stat218: 1.46533877e-04 + syst_JES_EtaIntercalibration_Stat219: 9.76652861e-05 + syst_JES_EtaIntercalibration_Stat22: 9.72413245e-11 + syst_JES_EtaIntercalibration_Stat220: 3.36444319e-04 + syst_JES_EtaIntercalibration_Stat221: 3.14811356e-05 + syst_JES_EtaIntercalibration_Stat222: 2.11570006e-05 + syst_JES_EtaIntercalibration_Stat223: 1.04008772e-04 + syst_JES_EtaIntercalibration_Stat224: 4.95871203e-05 + syst_JES_EtaIntercalibration_Stat225: 8.32921713e-05 + syst_JES_EtaIntercalibration_Stat226: 8.90495334e-05 + syst_JES_EtaIntercalibration_Stat227: 9.69865109e-05 + syst_JES_EtaIntercalibration_Stat228: 1.66215768e-04 + syst_JES_EtaIntercalibration_Stat229: 9.56151515e-05 + syst_JES_EtaIntercalibration_Stat23: 3.17057233e-09 + syst_JES_EtaIntercalibration_Stat230: 1.30624472e-04 + syst_JES_EtaIntercalibration_Stat231: 1.92628071e-04 + syst_JES_EtaIntercalibration_Stat232: 5.75038701e-05 + syst_JES_EtaIntercalibration_Stat233: 1.43337036e-04 + syst_JES_EtaIntercalibration_Stat234: 2.91092255e-04 + syst_JES_EtaIntercalibration_Stat235: 6.70044053e-05 + syst_JES_EtaIntercalibration_Stat236: 1.26437250e-05 + syst_JES_EtaIntercalibration_Stat237: 4.17790746e-05 + syst_JES_EtaIntercalibration_Stat238: 5.13117496e-05 + syst_JES_EtaIntercalibration_Stat239: 9.94930345e-06 + syst_JES_EtaIntercalibration_Stat24: 1.20369412e-07 + syst_JES_EtaIntercalibration_Stat240: 5.02619211e-05 + syst_JES_EtaIntercalibration_Stat241: 3.88498996e-05 + syst_JES_EtaIntercalibration_Stat242: 4.50613038e-05 + syst_JES_EtaIntercalibration_Stat243: 3.67627782e-05 + syst_JES_EtaIntercalibration_Stat244: 6.36858359e-05 + syst_JES_EtaIntercalibration_Stat245: 1.80738551e-04 + syst_JES_EtaIntercalibration_Stat25: 1.10419162e-07 + syst_JES_EtaIntercalibration_Stat26: 7.44282608e-10 + syst_JES_EtaIntercalibration_Stat27: 9.57138276e-08 + syst_JES_EtaIntercalibration_Stat28: 1.14792913e-08 + syst_JES_EtaIntercalibration_Stat29: 1.39227853e-07 + syst_JES_EtaIntercalibration_Stat3: 1.27374576e-10 + syst_JES_EtaIntercalibration_Stat30: 1.19864173e-07 + syst_JES_EtaIntercalibration_Stat31: 7.48677142e-05 + syst_JES_EtaIntercalibration_Stat32: 3.61317082e-05 + syst_JES_EtaIntercalibration_Stat33: 2.68988220e-08 + syst_JES_EtaIntercalibration_Stat34: 1.05955799e-06 + syst_JES_EtaIntercalibration_Stat35: 1.46561395e-05 + syst_JES_EtaIntercalibration_Stat36: 1.01722823e-06 + syst_JES_EtaIntercalibration_Stat37: 3.06843197e-06 + syst_JES_EtaIntercalibration_Stat38: 4.34473184e-07 + syst_JES_EtaIntercalibration_Stat39: 4.55096350e-07 + syst_JES_EtaIntercalibration_Stat4: 6.73843014e-11 + syst_JES_EtaIntercalibration_Stat40: 1.36286671e-08 + syst_JES_EtaIntercalibration_Stat41: 1.37899955e-11 + syst_JES_EtaIntercalibration_Stat42: 2.79033385e-10 + syst_JES_EtaIntercalibration_Stat43: 9.72413245e-11 + syst_JES_EtaIntercalibration_Stat44: 9.72413245e-11 + syst_JES_EtaIntercalibration_Stat45: 7.91175143e-11 + syst_JES_EtaIntercalibration_Stat46: 4.51778062e-08 + syst_JES_EtaIntercalibration_Stat47: 1.42603822e-06 + syst_JES_EtaIntercalibration_Stat48: 1.22134990e-07 + syst_JES_EtaIntercalibration_Stat49: 2.08852157e-07 + syst_JES_EtaIntercalibration_Stat5: 5.95479068e-11 + syst_JES_EtaIntercalibration_Stat50: 7.52659939e-05 + syst_JES_EtaIntercalibration_Stat51: 6.19491090e-07 + syst_JES_EtaIntercalibration_Stat52: 1.56637234e-07 + syst_JES_EtaIntercalibration_Stat53: 7.31578128e-05 + syst_JES_EtaIntercalibration_Stat54: 7.49084630e-05 + syst_JES_EtaIntercalibration_Stat55: 1.84648793e-07 + syst_JES_EtaIntercalibration_Stat56: 8.71262123e-07 + syst_JES_EtaIntercalibration_Stat57: 2.10852054e-05 + syst_JES_EtaIntercalibration_Stat58: 2.88816044e-06 + syst_JES_EtaIntercalibration_Stat59: 1.52796051e-06 + syst_JES_EtaIntercalibration_Stat6: 7.14533993e-11 + syst_JES_EtaIntercalibration_Stat60: 5.59179441e-10 + syst_JES_EtaIntercalibration_Stat61: 4.02683271e-07 + syst_JES_EtaIntercalibration_Stat62: 4.85765635e-08 + syst_JES_EtaIntercalibration_Stat63: 1.90272182e-08 + syst_JES_EtaIntercalibration_Stat64: 2.94601359e-11 + syst_JES_EtaIntercalibration_Stat65: 9.72413245e-11 + syst_JES_EtaIntercalibration_Stat66: 9.72413245e-11 + syst_JES_EtaIntercalibration_Stat67: 1.36780975e-07 + syst_JES_EtaIntercalibration_Stat68: 4.82108401e-06 + syst_JES_EtaIntercalibration_Stat69: 3.58523765e-06 + syst_JES_EtaIntercalibration_Stat7: 4.42535389e-10 + syst_JES_EtaIntercalibration_Stat70: 2.44739882e-06 + syst_JES_EtaIntercalibration_Stat71: 1.46332182e-06 + syst_JES_EtaIntercalibration_Stat72: 7.13674750e-05 + syst_JES_EtaIntercalibration_Stat73: 7.53573762e-05 + syst_JES_EtaIntercalibration_Stat74: 1.43080219e-05 + syst_JES_EtaIntercalibration_Stat75: 1.49578720e-05 + syst_JES_EtaIntercalibration_Stat76: 5.57068926e-05 + syst_JES_EtaIntercalibration_Stat77: 2.04922896e-06 + syst_JES_EtaIntercalibration_Stat78: 1.56947442e-05 + syst_JES_EtaIntercalibration_Stat79: 2.54038935e-05 + syst_JES_EtaIntercalibration_Stat8: 1.24925230e-08 + syst_JES_EtaIntercalibration_Stat80: 2.80724138e-05 + syst_JES_EtaIntercalibration_Stat81: 9.83099273e-06 + syst_JES_EtaIntercalibration_Stat82: 1.04850204e-05 + syst_JES_EtaIntercalibration_Stat83: 5.38008464e-08 + syst_JES_EtaIntercalibration_Stat84: 5.34428441e-07 + syst_JES_EtaIntercalibration_Stat85: 1.71628843e-07 + syst_JES_EtaIntercalibration_Stat86: 4.43337405e-10 + syst_JES_EtaIntercalibration_Stat87: 5.95479068e-11 + syst_JES_EtaIntercalibration_Stat88: 1.13283725e-07 + syst_JES_EtaIntercalibration_Stat89: 8.62384455e-06 + syst_JES_EtaIntercalibration_Stat9: 1.25482350e-08 + syst_JES_EtaIntercalibration_Stat90: 9.33656011e-06 + syst_JES_EtaIntercalibration_Stat91: 2.47142606e-06 + syst_JES_EtaIntercalibration_Stat92: 3.14030073e-06 + syst_JES_EtaIntercalibration_Stat93: 5.64742846e-05 + syst_JES_EtaIntercalibration_Stat94: 6.12262237e-05 + syst_JES_EtaIntercalibration_Stat95: 9.68680138e-05 + syst_JES_EtaIntercalibration_Stat96: 1.07370315e-05 + syst_JES_EtaIntercalibration_Stat97: 1.09909880e-05 + syst_JES_EtaIntercalibration_Stat98: 5.49834311e-06 + syst_JES_EtaIntercalibration_Stat99: 1.98238663e-05 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.44963978e-02 + syst_JES_Flavour_Comp: 6.19332697e-02 + syst_JES_Flavour_Response: 1.83136916e-01 + syst_JES_Gjet_Generator: 2.16779998e-01 + syst_JES_Gjet_OOC: 1.52355210e-01 + syst_JES_Gjet_Purity: 5.01876598e-02 + syst_JES_Gjet_Stat1: 1.82623171e-04 + syst_JES_Gjet_Stat10: 1.04238477e-02 + syst_JES_Gjet_Stat11: 1.82561517e-02 + syst_JES_Gjet_Stat12: 2.41425330e-02 + syst_JES_Gjet_Stat13: 1.04507500e-02 + syst_JES_Gjet_Stat14: 3.55284717e-03 + syst_JES_Gjet_Stat15: 7.29599863e-04 + syst_JES_Gjet_Stat2: 2.79141738e-04 + syst_JES_Gjet_Stat3: 2.80869382e-04 + syst_JES_Gjet_Stat4: 5.96682713e-04 + syst_JES_Gjet_Stat5: 6.11867012e-04 + syst_JES_Gjet_Stat6: 1.40060964e-03 + syst_JES_Gjet_Stat7: 2.06052730e-03 + syst_JES_Gjet_Stat8: 1.68887618e-03 + syst_JES_Gjet_Stat9: 5.27130354e-03 + syst_JES_Gjet_Veto: 8.03751907e-02 + syst_JES_Gjet_dPhi: 1.00605396e-02 + syst_JES_LArESZee: 2.83574765e-01 + syst_JES_LArEsmear: 2.10703037e-02 + syst_JES_LAr_JVT: 2.93386707e-02 + syst_JES_MJB_Alpha: 8.30598074e-04 + syst_JES_MJB_Asym: 4.92027182e-03 + syst_JES_MJB_Beta: 3.21548850e-04 + syst_JES_MJB_Fragmentation: 1.82101421e-02 + syst_JES_MJB_Stat1: 1.10892021e-03 + syst_JES_MJB_Stat10: 5.84271916e-05 + syst_JES_MJB_Stat11: 9.87144382e-06 + syst_JES_MJB_Stat12: 4.59611087e-05 + syst_JES_MJB_Stat13: 5.70940546e-05 + syst_JES_MJB_Stat14: 7.80825658e-05 + syst_JES_MJB_Stat15: 6.37978893e-05 + syst_JES_MJB_Stat16: 6.00422824e-05 + syst_JES_MJB_Stat2: 1.89682340e-03 + syst_JES_MJB_Stat3: 2.11311047e-03 + syst_JES_MJB_Stat4: 3.67707581e-04 + syst_JES_MJB_Stat5: 5.01352109e-04 + syst_JES_MJB_Stat6: 1.91954762e-04 + syst_JES_MJB_Stat7: 6.85228568e-04 + syst_JES_MJB_Stat8: 6.56813724e-04 + syst_JES_MJB_Stat9: 3.98052299e-04 + syst_JES_MJB_Threshold: 6.28659739e-03 + syst_JES_Pileup_MuOffset: 1.26634950e-02 + syst_JES_Pileup_NPVOffset: 1.92201301e-02 + syst_JES_Pileup_Pt_term: 4.11429775e-02 + syst_JES_Pileup_Rho_topology: 7.03062378e-02 + syst_JES_PunchThrough_MC15: 2.42425782e-03 + syst_JES_SingleParticle_HighPt: 8.14869855e-05 + syst_JES_Zjet_MC: 1.96031885e-01 + syst_JES_Zjet_MuScale: 1.11865357e-02 + syst_JES_Zjet_MuSmearID: 1.95001590e-03 + syst_JES_Zjet_MuSmearMS: 3.42612872e-02 + syst_JES_Zjet_OOC: 7.16766606e-02 + syst_JES_Zjet_Stat1: 1.45809609e-03 + syst_JES_Zjet_Stat10: 8.59950003e-03 + syst_JES_Zjet_Stat11: 1.29335274e-02 + syst_JES_Zjet_Stat12: 5.73820146e-02 + syst_JES_Zjet_Stat13: 2.10405014e-02 + syst_JES_Zjet_Stat2: 5.13046606e-05 + syst_JES_Zjet_Stat3: 4.31459323e-04 + syst_JES_Zjet_Stat4: 5.21830251e-04 + syst_JES_Zjet_Stat5: 6.06308937e-04 + syst_JES_Zjet_Stat6: 1.06787825e-03 + syst_JES_Zjet_Stat7: 7.56063602e-04 + syst_JES_Zjet_Stat8: 1.36317211e-03 + syst_JES_Zjet_Stat9: 3.79210426e-03 + syst_JES_Zjet_Veto: 1.31344952e-02 + syst_JES_Zjet_dPhi: 1.11973439e-02 syst_PRW: 0.0 syst_Unfolding_bias: 0.0 - syst_cleaning: 0.09927249203581019 + syst_cleaning: 9.92724920e-02 syst_lumi: 0.2376 - stat: 0.0397 - syst_JER_CROSS_CALIB_FORWARD: 2.175e-06 - syst_JER_NOISE_FORWARD: 0.0004836 - syst_JER_NP0: 0.011760850766419919 - syst_JER_NP1: 0.0020036842939944407 - syst_JER_NP2: 2.3154431001430377e-11 - syst_JER_NP3: 0.004571734326270502 - syst_JER_NP4: 0.001637312661039424 - syst_JER_NP5: 0.0008312977850926826 + syst_JER_CROSS_CALIB_FORWARD: 2.17500000e-06 + syst_JER_NOISE_FORWARD: 4.83600000e-04 + syst_JER_NP0: 1.17608508e-02 + syst_JER_NP1: 2.00368429e-03 + syst_JER_NP2: 2.31544310e-11 + syst_JER_NP3: 4.57173433e-03 + syst_JER_NP4: 1.63731266e-03 + syst_JER_NP5: 8.31297785e-04 syst_JER_NP6: 0.0 syst_JER_NP7: 0.0 - syst_JER_NP8: 0.003086902128348095 - syst_JES_EtaIntercalibration_Modelling: 0.09608408440007117 - syst_JES_EtaIntercalibration_NonClosure: 0.006210981625314955 - syst_JES_EtaIntercalibration_Stat0: 4.7022600948905416e-12 - syst_JES_EtaIntercalibration_Stat1: 3.2271001038083714e-12 - syst_JES_EtaIntercalibration_Stat10: 4.758200999327372e-12 - syst_JES_EtaIntercalibration_Stat100: 1.638388927292601e-05 - syst_JES_EtaIntercalibration_Stat101: 5.988926186512904e-06 - syst_JES_EtaIntercalibration_Stat102: 1.1986813869832134e-05 - syst_JES_EtaIntercalibration_Stat103: 5.8594877549151e-06 - syst_JES_EtaIntercalibration_Stat104: 4.675659718959454e-07 - syst_JES_EtaIntercalibration_Stat105: 2.5491298548475323e-05 - syst_JES_EtaIntercalibration_Stat106: 2.197884484566921e-06 - syst_JES_EtaIntercalibration_Stat107: 2.203455638309971e-13 - syst_JES_EtaIntercalibration_Stat108: 2.38920900854718e-06 - syst_JES_EtaIntercalibration_Stat109: 0.00012908290075374043 - syst_JES_EtaIntercalibration_Stat11: 3.619818725778958e-11 - syst_JES_EtaIntercalibration_Stat110: 9.38800462025877e-06 - syst_JES_EtaIntercalibration_Stat111: 5.654843233901361e-06 - syst_JES_EtaIntercalibration_Stat112: 4.1796310841987e-05 - syst_JES_EtaIntercalibration_Stat113: 4.5897536717671464e-05 - syst_JES_EtaIntercalibration_Stat114: 1.7726543846728837e-05 - syst_JES_EtaIntercalibration_Stat115: 4.975379684004026e-05 - syst_JES_EtaIntercalibration_Stat116: 3.443174117003088e-05 - syst_JES_EtaIntercalibration_Stat117: 9.815913711927178e-06 - syst_JES_EtaIntercalibration_Stat118: 7.252158669449738e-05 - syst_JES_EtaIntercalibration_Stat119: 7.003398317959646e-05 - syst_JES_EtaIntercalibration_Stat12: 6.746628523195863e-09 - syst_JES_EtaIntercalibration_Stat120: 0.00010105622828405976 - syst_JES_EtaIntercalibration_Stat121: 5.319577916291855e-05 - syst_JES_EtaIntercalibration_Stat122: 1.8386478727586748e-06 - syst_JES_EtaIntercalibration_Stat123: 2.2978730399001595e-05 - syst_JES_EtaIntercalibration_Stat124: 4.71725969181261e-05 - syst_JES_EtaIntercalibration_Stat125: 3.1153640537664296e-05 - syst_JES_EtaIntercalibration_Stat126: 4.3138862201036315e-05 - syst_JES_EtaIntercalibration_Stat127: 4.997832605239996e-12 - syst_JES_EtaIntercalibration_Stat128: 8.040345328404745e-05 - syst_JES_EtaIntercalibration_Stat129: 0.0003617511286437127 - syst_JES_EtaIntercalibration_Stat13: 1.6692608206928e-11 - syst_JES_EtaIntercalibration_Stat130: 0.00036836012270602793 - syst_JES_EtaIntercalibration_Stat131: 0.0007323903057796437 - syst_JES_EtaIntercalibration_Stat132: 0.0004874558109972636 - syst_JES_EtaIntercalibration_Stat133: 0.0006413171680221885 - syst_JES_EtaIntercalibration_Stat134: 0.000708065341264491 - syst_JES_EtaIntercalibration_Stat135: 0.0004079161801154742 - syst_JES_EtaIntercalibration_Stat136: 0.000488161971071078 - syst_JES_EtaIntercalibration_Stat137: 0.0005933809969151354 - syst_JES_EtaIntercalibration_Stat138: 0.0006110267976938491 - syst_JES_EtaIntercalibration_Stat139: 0.0005410200920483452 - syst_JES_EtaIntercalibration_Stat14: 1.6718243590461288e-11 - syst_JES_EtaIntercalibration_Stat140: 0.0005273224724966687 - syst_JES_EtaIntercalibration_Stat141: 0.000547018400056159 - syst_JES_EtaIntercalibration_Stat142: 0.0003852750056777626 - syst_JES_EtaIntercalibration_Stat143: 0.000405156303171998 - syst_JES_EtaIntercalibration_Stat144: 0.0004983531955350543 - syst_JES_EtaIntercalibration_Stat145: 9.231670433892233e-05 - syst_JES_EtaIntercalibration_Stat146: 0.0001665177428984671 - syst_JES_EtaIntercalibration_Stat147: 0.00042500374998345606 - syst_JES_EtaIntercalibration_Stat148: 0.00038284243495203087 - syst_JES_EtaIntercalibration_Stat149: 0.0006961978221023101 - syst_JES_EtaIntercalibration_Stat15: 2.8664535632031437e-11 - syst_JES_EtaIntercalibration_Stat150: 0.00027301941377858095 - syst_JES_EtaIntercalibration_Stat151: 0.0005546320469464418 - syst_JES_EtaIntercalibration_Stat152: 0.000698747584968993 - syst_JES_EtaIntercalibration_Stat153: 0.0005700686340257636 - syst_JES_EtaIntercalibration_Stat154: 0.0005724458118459771 - syst_JES_EtaIntercalibration_Stat155: 0.0004261049391875199 - syst_JES_EtaIntercalibration_Stat156: 0.0006976700652887438 - syst_JES_EtaIntercalibration_Stat157: 0.0008722109033943568 - syst_JES_EtaIntercalibration_Stat158: 0.0007335847650408232 - syst_JES_EtaIntercalibration_Stat159: 0.0004967425288819148 - syst_JES_EtaIntercalibration_Stat16: 2.9259678415312428e-12 - syst_JES_EtaIntercalibration_Stat160: 0.0004955976896637028 - syst_JES_EtaIntercalibration_Stat161: 0.0003794311531753818 - syst_JES_EtaIntercalibration_Stat162: 0.00030256055592228147 - syst_JES_EtaIntercalibration_Stat163: 0.00011365340503038174 - syst_JES_EtaIntercalibration_Stat164: 0.00033659474149190147 - syst_JES_EtaIntercalibration_Stat165: 1.5216066279973695e-05 - syst_JES_EtaIntercalibration_Stat166: 0.0008978324495695173 - syst_JES_EtaIntercalibration_Stat167: 0.0005856637195891513 - syst_JES_EtaIntercalibration_Stat168: 0.0009137978259440103 - syst_JES_EtaIntercalibration_Stat169: 0.0007249498655079536 - syst_JES_EtaIntercalibration_Stat17: 4.752597263602293e-12 - syst_JES_EtaIntercalibration_Stat170: 0.0011521150843123269 - syst_JES_EtaIntercalibration_Stat171: 0.0014808146034109063 - syst_JES_EtaIntercalibration_Stat172: 0.0009450473300713569 - syst_JES_EtaIntercalibration_Stat173: 0.0010069039713398692 - syst_JES_EtaIntercalibration_Stat174: 0.001413105894828834 - syst_JES_EtaIntercalibration_Stat175: 0.000996519065296796 - syst_JES_EtaIntercalibration_Stat176: 0.0013018131615174277 - syst_JES_EtaIntercalibration_Stat177: 0.0006881552223154309 - syst_JES_EtaIntercalibration_Stat178: 0.000357581889222592 - syst_JES_EtaIntercalibration_Stat179: 0.00044803043144411517 - syst_JES_EtaIntercalibration_Stat18: 4.7022600948905416e-12 - syst_JES_EtaIntercalibration_Stat180: 0.0003912678319259073 - syst_JES_EtaIntercalibration_Stat181: 0.00030665959575887217 - syst_JES_EtaIntercalibration_Stat182: 0.0011665992628147853 - syst_JES_EtaIntercalibration_Stat183: 0.0010335147171684595 - syst_JES_EtaIntercalibration_Stat184: 0.0010334474006934266 - syst_JES_EtaIntercalibration_Stat185: 0.0017752170835351377 - syst_JES_EtaIntercalibration_Stat186: 0.002423429955662016 - syst_JES_EtaIntercalibration_Stat187: 0.0030383089046375784 - syst_JES_EtaIntercalibration_Stat188: 0.0028521456396895305 - syst_JES_EtaIntercalibration_Stat189: 0.0023353357360345432 - syst_JES_EtaIntercalibration_Stat19: 2.3025761659497825e-11 - syst_JES_EtaIntercalibration_Stat190: 0.0021196127004714797 - syst_JES_EtaIntercalibration_Stat191: 0.002706043791219942 - syst_JES_EtaIntercalibration_Stat192: 0.00354340006208726 - syst_JES_EtaIntercalibration_Stat193: 0.0015154240553389667 - syst_JES_EtaIntercalibration_Stat194: 0.0015285348376795343 - syst_JES_EtaIntercalibration_Stat195: 0.001076860040813104 - syst_JES_EtaIntercalibration_Stat196: 0.0011605608848742062 - syst_JES_EtaIntercalibration_Stat197: 0.0010622953402891306 - syst_JES_EtaIntercalibration_Stat198: 0.0007903060862729073 - syst_JES_EtaIntercalibration_Stat199: 0.0010067166979840952 - syst_JES_EtaIntercalibration_Stat2: 3.8673384581647366e-12 - syst_JES_EtaIntercalibration_Stat20: 4.7022600948905416e-12 - syst_JES_EtaIntercalibration_Stat200: 0.0005109255839160924 - syst_JES_EtaIntercalibration_Stat201: 0.001357861615739984 - syst_JES_EtaIntercalibration_Stat202: 0.0014433827862005283 - syst_JES_EtaIntercalibration_Stat203: 0.0016238894666817689 - syst_JES_EtaIntercalibration_Stat204: 0.0009619096839100851 - syst_JES_EtaIntercalibration_Stat205: 0.0012449814888182073 - syst_JES_EtaIntercalibration_Stat206: 0.0020240757767435486 - syst_JES_EtaIntercalibration_Stat207: 0.001286016454016044 - syst_JES_EtaIntercalibration_Stat208: 0.0012964040573833454 - syst_JES_EtaIntercalibration_Stat209: 0.0011725681984430586 - syst_JES_EtaIntercalibration_Stat21: 4.7022600948905416e-12 - syst_JES_EtaIntercalibration_Stat210: 0.0007383108610199365 - syst_JES_EtaIntercalibration_Stat211: 0.000898289946231171 - syst_JES_EtaIntercalibration_Stat212: 0.0002574188804264365 - syst_JES_EtaIntercalibration_Stat213: 0.00017820241826361393 - syst_JES_EtaIntercalibration_Stat214: 4.35827375316191e-05 - syst_JES_EtaIntercalibration_Stat215: 9.093371072929995e-05 - syst_JES_EtaIntercalibration_Stat216: 0.00015987226737305003 - syst_JES_EtaIntercalibration_Stat217: 0.00019677362799674146 - syst_JES_EtaIntercalibration_Stat218: 1.4804045122870981e-05 - syst_JES_EtaIntercalibration_Stat219: 0.00023938527327458972 - syst_JES_EtaIntercalibration_Stat22: 4.7022600948905416e-12 - syst_JES_EtaIntercalibration_Stat220: 0.00025423300336502335 - syst_JES_EtaIntercalibration_Stat221: 0.00017769933898301366 - syst_JES_EtaIntercalibration_Stat222: 1.1145746946723812e-05 - syst_JES_EtaIntercalibration_Stat223: 0.00013362536139322503 - syst_JES_EtaIntercalibration_Stat224: 7.335524981213001e-05 - syst_JES_EtaIntercalibration_Stat225: 0.000166966218364674 - syst_JES_EtaIntercalibration_Stat226: 0.00014158373917932807 - syst_JES_EtaIntercalibration_Stat227: 0.00014246205836993933 - syst_JES_EtaIntercalibration_Stat228: 0.00011828907673576627 - syst_JES_EtaIntercalibration_Stat229: 0.00011716249698602364 - syst_JES_EtaIntercalibration_Stat23: 1.540687213121145e-10 - syst_JES_EtaIntercalibration_Stat230: 0.000124303828883104 - syst_JES_EtaIntercalibration_Stat231: 0.00019109181039489892 - syst_JES_EtaIntercalibration_Stat232: 5.8642367679605165e-05 - syst_JES_EtaIntercalibration_Stat233: 7.282963871254614e-05 - syst_JES_EtaIntercalibration_Stat234: 0.0001605342476700844 - syst_JES_EtaIntercalibration_Stat235: 8.722607962901353e-05 - syst_JES_EtaIntercalibration_Stat236: 6.610980411406466e-06 - syst_JES_EtaIntercalibration_Stat237: 1.984498845426724e-05 - syst_JES_EtaIntercalibration_Stat238: 1.742267679634791e-05 - syst_JES_EtaIntercalibration_Stat239: 1.0771353245994676e-05 - syst_JES_EtaIntercalibration_Stat24: 7.453246675107434e-09 - syst_JES_EtaIntercalibration_Stat240: 2.4813703608087203e-05 - syst_JES_EtaIntercalibration_Stat241: 8.46193422037775e-06 - syst_JES_EtaIntercalibration_Stat242: 2.260041315994024e-05 - syst_JES_EtaIntercalibration_Stat243: 1.936369244944267e-05 - syst_JES_EtaIntercalibration_Stat244: 3.05776650514718e-05 - syst_JES_EtaIntercalibration_Stat245: 9.546052731364938e-05 - syst_JES_EtaIntercalibration_Stat25: 6.98986207803845e-09 - syst_JES_EtaIntercalibration_Stat26: 3.6064080010448066e-11 - syst_JES_EtaIntercalibration_Stat27: 6.2793838907073515e-09 - syst_JES_EtaIntercalibration_Stat28: 6.017357226945647e-10 - syst_JES_EtaIntercalibration_Stat29: 8.825802683042489e-09 - syst_JES_EtaIntercalibration_Stat3: 6.275683448836469e-12 - syst_JES_EtaIntercalibration_Stat30: 7.587958421077437e-09 - syst_JES_EtaIntercalibration_Stat31: 1.5482069629216267e-05 - syst_JES_EtaIntercalibration_Stat32: 5.913173876445288e-06 - syst_JES_EtaIntercalibration_Stat33: 3.1465972041357627e-09 - syst_JES_EtaIntercalibration_Stat34: 6.754106249534427e-08 - syst_JES_EtaIntercalibration_Stat35: 9.013760857120304e-06 - syst_JES_EtaIntercalibration_Stat36: 1.0919913539950763e-07 - syst_JES_EtaIntercalibration_Stat37: 1.7468245719045832e-07 - syst_JES_EtaIntercalibration_Stat38: 2.8337822781575864e-08 - syst_JES_EtaIntercalibration_Stat39: 2.9739312365957626e-08 - syst_JES_EtaIntercalibration_Stat4: 3.2271001038083714e-12 - syst_JES_EtaIntercalibration_Stat40: 7.001477272690386e-10 - syst_JES_EtaIntercalibration_Stat41: 7.672181256331214e-13 - syst_JES_EtaIntercalibration_Stat42: 1.3813105190361798e-11 - syst_JES_EtaIntercalibration_Stat43: 4.7022600948905416e-12 - syst_JES_EtaIntercalibration_Stat44: 4.7022600948905416e-12 - syst_JES_EtaIntercalibration_Stat45: 3.8673384581647366e-12 - syst_JES_EtaIntercalibration_Stat46: 4.328368197954975e-09 - syst_JES_EtaIntercalibration_Stat47: 1.22692208114452e-07 - syst_JES_EtaIntercalibration_Stat48: 7.784324440823366e-09 - syst_JES_EtaIntercalibration_Stat49: 1.3679606383500221e-08 - syst_JES_EtaIntercalibration_Stat5: 2.879534467583259e-12 - syst_JES_EtaIntercalibration_Stat50: 1.5507734727492695e-05 - syst_JES_EtaIntercalibration_Stat51: 3.997588366753135e-08 - syst_JES_EtaIntercalibration_Stat52: 9.72688450516788e-09 - syst_JES_EtaIntercalibration_Stat53: 1.5231485386117142e-05 - syst_JES_EtaIntercalibration_Stat54: 1.5492305919042526e-05 - syst_JES_EtaIntercalibration_Stat55: 1.4272858184330145e-08 - syst_JES_EtaIntercalibration_Stat56: 7.934448791819126e-08 - syst_JES_EtaIntercalibration_Stat57: 1.948654963526124e-05 - syst_JES_EtaIntercalibration_Stat58: 2.56781478109306e-07 - syst_JES_EtaIntercalibration_Stat59: 1.3536853288984853e-07 - syst_JES_EtaIntercalibration_Stat6: 3.5128052892239845e-12 - syst_JES_EtaIntercalibration_Stat60: 2.8035897132069806e-11 - syst_JES_EtaIntercalibration_Stat61: 2.5680654293066603e-08 - syst_JES_EtaIntercalibration_Stat62: 2.5374109876013382e-09 - syst_JES_EtaIntercalibration_Stat63: 9.933727431954269e-10 - syst_JES_EtaIntercalibration_Stat64: 1.478165078737825e-12 - syst_JES_EtaIntercalibration_Stat65: 4.7022600948905416e-12 - syst_JES_EtaIntercalibration_Stat66: 4.7022600948905416e-12 - syst_JES_EtaIntercalibration_Stat67: 8.265667592517861e-09 - syst_JES_EtaIntercalibration_Stat68: 5.762120508111576e-07 - syst_JES_EtaIntercalibration_Stat69: 4.968381627854286e-07 - syst_JES_EtaIntercalibration_Stat7: 2.1457060393958905e-11 - syst_JES_EtaIntercalibration_Stat70: 2.068236688582813e-07 - syst_JES_EtaIntercalibration_Stat71: 1.1642850638911416e-07 - syst_JES_EtaIntercalibration_Stat72: 1.5157914224681443e-05 - syst_JES_EtaIntercalibration_Stat73: 1.7965828452926962e-05 - syst_JES_EtaIntercalibration_Stat74: 6.111760466510448e-06 - syst_JES_EtaIntercalibration_Stat75: 7.974442779231788e-06 - syst_JES_EtaIntercalibration_Stat76: 1.2455358282169163e-05 - syst_JES_EtaIntercalibration_Stat77: 1.9577714745853255e-07 - syst_JES_EtaIntercalibration_Stat78: 8.30873534121788e-06 - syst_JES_EtaIntercalibration_Stat79: 1.9888191598785445e-05 - syst_JES_EtaIntercalibration_Stat8: 6.543523032740084e-10 - syst_JES_EtaIntercalibration_Stat80: 1.8005779604546424e-05 - syst_JES_EtaIntercalibration_Stat81: 7.5762541536038775e-06 - syst_JES_EtaIntercalibration_Stat82: 5.222302391665959e-06 - syst_JES_EtaIntercalibration_Stat83: 2.614782537803096e-09 - syst_JES_EtaIntercalibration_Stat84: 3.4078257671170625e-08 - syst_JES_EtaIntercalibration_Stat85: 1.1016511023005423e-08 - syst_JES_EtaIntercalibration_Stat86: 2.148926997288414e-11 - syst_JES_EtaIntercalibration_Stat87: 2.879534467583259e-12 - syst_JES_EtaIntercalibration_Stat88: 7.221727098680009e-09 - syst_JES_EtaIntercalibration_Stat89: 1.8211090872048272e-06 - syst_JES_EtaIntercalibration_Stat9: 6.56898349575488e-10 - syst_JES_EtaIntercalibration_Stat90: 1.8385672608515033e-06 - syst_JES_EtaIntercalibration_Stat91: 2.0966314697628672e-07 - syst_JES_EtaIntercalibration_Stat92: 4.813916786775609e-07 - syst_JES_EtaIntercalibration_Stat93: 1.2700102177541722e-05 - syst_JES_EtaIntercalibration_Stat94: 1.5606540551960902e-05 - syst_JES_EtaIntercalibration_Stat95: 2.2958203343249664e-05 - syst_JES_EtaIntercalibration_Stat96: 7.947193119586312e-06 - syst_JES_EtaIntercalibration_Stat97: 1.9846471140986247e-06 - syst_JES_EtaIntercalibration_Stat98: 6.734933852681851e-07 - syst_JES_EtaIntercalibration_Stat99: 1.2755023951369124e-05 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0126407487515574 - syst_JES_Flavour_Comp: 0.043436363510312416 - syst_JES_Flavour_Response: 0.08215249402787478 - syst_JES_Gjet_Generator: 0.11567566068538358 - syst_JES_Gjet_OOC: 0.08529702148961592 - syst_JES_Gjet_Purity: 0.0290750971623484 - syst_JES_Gjet_Stat1: 0.00018133661378772904 - syst_JES_Gjet_Stat10: 0.004989781232679445 - syst_JES_Gjet_Stat11: 0.008477369934124618 - syst_JES_Gjet_Stat12: 0.015560161655651269 - syst_JES_Gjet_Stat13: 0.01201956151446466 - syst_JES_Gjet_Stat14: 0.0019845138718336034 - syst_JES_Gjet_Stat15: 0.0018672469038667596 - syst_JES_Gjet_Stat2: 0.0002319454053759203 - syst_JES_Gjet_Stat3: 0.00017734274019536294 - syst_JES_Gjet_Stat4: 0.0003280413850034779 - syst_JES_Gjet_Stat5: 0.00032277203271039454 - syst_JES_Gjet_Stat6: 0.0008661212198647486 - syst_JES_Gjet_Stat7: 0.0012854587041208287 - syst_JES_Gjet_Stat8: 0.0008958082439897504 - syst_JES_Gjet_Stat9: 0.0024598170663689607 - syst_JES_Gjet_Veto: 0.050347289897272524 - syst_JES_Gjet_dPhi: 0.006158223282733421 - syst_JES_LArESZee: 0.15943640581749202 - syst_JES_LArEsmear: 0.012382841192553506 - syst_JES_LAr_JVT: 0.01677526974447803 - syst_JES_MJB_Alpha: 0.0008867216981669051 - syst_JES_MJB_Asym: 0.004280160978281073 - syst_JES_MJB_Beta: 0.00022959012936099845 - syst_JES_MJB_Fragmentation: 0.014001628476716555 - syst_JES_MJB_Stat1: 0.0007266047481265176 - syst_JES_MJB_Stat10: 5.842685940558503e-05 - syst_JES_MJB_Stat11: 4.06591822347671e-05 - syst_JES_MJB_Stat12: 2.4243248029090493e-05 - syst_JES_MJB_Stat13: 2.6367772312996033e-05 - syst_JES_MJB_Stat14: 2.973518244437051e-05 - syst_JES_MJB_Stat15: 3.352934349193256e-05 - syst_JES_MJB_Stat16: 3.1625897564337995e-05 - syst_JES_MJB_Stat2: 0.0014454760461522702 - syst_JES_MJB_Stat3: 0.0015206500279485744 - syst_JES_MJB_Stat4: 0.00024510325885226416 - syst_JES_MJB_Stat5: 0.00030117449871295545 - syst_JES_MJB_Stat6: 6.0685532872341175e-05 - syst_JES_MJB_Stat7: 0.00024021566872292074 - syst_JES_MJB_Stat8: 0.00021720172651247505 - syst_JES_MJB_Stat9: 0.00011877639443508968 - syst_JES_MJB_Threshold: 0.005536442969091255 - syst_JES_Pileup_MuOffset: 0.0104168758632327 - syst_JES_Pileup_NPVOffset: 0.013378075347373404 - syst_JES_Pileup_Pt_term: 0.020691850448908623 - syst_JES_Pileup_Rho_topology: 0.03859264679961715 - syst_JES_PunchThrough_MC15: 0.0022435268551991975 - syst_JES_SingleParticle_HighPt: 4.2921381618023434e-05 - syst_JES_Zjet_MC: 0.10025830975535145 - syst_JES_Zjet_MuScale: 0.006109904315944727 - syst_JES_Zjet_MuSmearID: 0.0013279882106027898 - syst_JES_Zjet_MuSmearMS: 0.021325010550993874 - syst_JES_Zjet_OOC: 0.03891346169065405 - syst_JES_Zjet_Stat1: 0.0012574108636400434 - syst_JES_Zjet_Stat10: 0.004100010243889641 - syst_JES_Zjet_Stat11: 0.005358897088021004 - syst_JES_Zjet_Stat12: 0.029814135489730366 - syst_JES_Zjet_Stat13: 0.017187293998765486 - syst_JES_Zjet_Stat2: 6.613310115781658e-05 - syst_JES_Zjet_Stat3: 0.00037207410982222343 - syst_JES_Zjet_Stat4: 0.0004257106059284875 - syst_JES_Zjet_Stat5: 0.00036813695820984884 - syst_JES_Zjet_Stat6: 0.0008117830790919456 - syst_JES_Zjet_Stat7: 0.000514019034180642 - syst_JES_Zjet_Stat8: 0.0007995631557294271 - syst_JES_Zjet_Stat9: 0.0018291948037319592 - syst_JES_Zjet_Veto: 0.007470323470238755 - syst_JES_Zjet_dPhi: 0.006451267627373708 + syst_JER_NP8: 3.08690213e-03 + syst_JES_EtaIntercalibration_Modelling: 9.60840844e-02 + syst_JES_EtaIntercalibration_NonClosure: 6.21098163e-03 + syst_JES_EtaIntercalibration_Stat0: 4.70226009e-12 + syst_JES_EtaIntercalibration_Stat1: 3.22710010e-12 + syst_JES_EtaIntercalibration_Stat10: 4.75820100e-12 + syst_JES_EtaIntercalibration_Stat100: 1.63838893e-05 + syst_JES_EtaIntercalibration_Stat101: 5.98892619e-06 + syst_JES_EtaIntercalibration_Stat102: 1.19868139e-05 + syst_JES_EtaIntercalibration_Stat103: 5.85948775e-06 + syst_JES_EtaIntercalibration_Stat104: 4.67565972e-07 + syst_JES_EtaIntercalibration_Stat105: 2.54912985e-05 + syst_JES_EtaIntercalibration_Stat106: 2.19788448e-06 + syst_JES_EtaIntercalibration_Stat107: 2.20345564e-13 + syst_JES_EtaIntercalibration_Stat108: 2.38920901e-06 + syst_JES_EtaIntercalibration_Stat109: 1.29082901e-04 + syst_JES_EtaIntercalibration_Stat11: 3.61981873e-11 + syst_JES_EtaIntercalibration_Stat110: 9.38800462e-06 + syst_JES_EtaIntercalibration_Stat111: 5.65484323e-06 + syst_JES_EtaIntercalibration_Stat112: 4.17963108e-05 + syst_JES_EtaIntercalibration_Stat113: 4.58975367e-05 + syst_JES_EtaIntercalibration_Stat114: 1.77265438e-05 + syst_JES_EtaIntercalibration_Stat115: 4.97537968e-05 + syst_JES_EtaIntercalibration_Stat116: 3.44317412e-05 + syst_JES_EtaIntercalibration_Stat117: 9.81591371e-06 + syst_JES_EtaIntercalibration_Stat118: 7.25215867e-05 + syst_JES_EtaIntercalibration_Stat119: 7.00339832e-05 + syst_JES_EtaIntercalibration_Stat12: 6.74662852e-09 + syst_JES_EtaIntercalibration_Stat120: 1.01056228e-04 + syst_JES_EtaIntercalibration_Stat121: 5.31957792e-05 + syst_JES_EtaIntercalibration_Stat122: 1.83864787e-06 + syst_JES_EtaIntercalibration_Stat123: 2.29787304e-05 + syst_JES_EtaIntercalibration_Stat124: 4.71725969e-05 + syst_JES_EtaIntercalibration_Stat125: 3.11536405e-05 + syst_JES_EtaIntercalibration_Stat126: 4.31388622e-05 + syst_JES_EtaIntercalibration_Stat127: 4.99783261e-12 + syst_JES_EtaIntercalibration_Stat128: 8.04034533e-05 + syst_JES_EtaIntercalibration_Stat129: 3.61751129e-04 + syst_JES_EtaIntercalibration_Stat13: 1.66926082e-11 + syst_JES_EtaIntercalibration_Stat130: 3.68360123e-04 + syst_JES_EtaIntercalibration_Stat131: 7.32390306e-04 + syst_JES_EtaIntercalibration_Stat132: 4.87455811e-04 + syst_JES_EtaIntercalibration_Stat133: 6.41317168e-04 + syst_JES_EtaIntercalibration_Stat134: 7.08065341e-04 + syst_JES_EtaIntercalibration_Stat135: 4.07916180e-04 + syst_JES_EtaIntercalibration_Stat136: 4.88161971e-04 + syst_JES_EtaIntercalibration_Stat137: 5.93380997e-04 + syst_JES_EtaIntercalibration_Stat138: 6.11026798e-04 + syst_JES_EtaIntercalibration_Stat139: 5.41020092e-04 + syst_JES_EtaIntercalibration_Stat14: 1.67182436e-11 + syst_JES_EtaIntercalibration_Stat140: 5.27322472e-04 + syst_JES_EtaIntercalibration_Stat141: 5.47018400e-04 + syst_JES_EtaIntercalibration_Stat142: 3.85275006e-04 + syst_JES_EtaIntercalibration_Stat143: 4.05156303e-04 + syst_JES_EtaIntercalibration_Stat144: 4.98353196e-04 + syst_JES_EtaIntercalibration_Stat145: 9.23167043e-05 + syst_JES_EtaIntercalibration_Stat146: 1.66517743e-04 + syst_JES_EtaIntercalibration_Stat147: 4.25003750e-04 + syst_JES_EtaIntercalibration_Stat148: 3.82842435e-04 + syst_JES_EtaIntercalibration_Stat149: 6.96197822e-04 + syst_JES_EtaIntercalibration_Stat15: 2.86645356e-11 + syst_JES_EtaIntercalibration_Stat150: 2.73019414e-04 + syst_JES_EtaIntercalibration_Stat151: 5.54632047e-04 + syst_JES_EtaIntercalibration_Stat152: 6.98747585e-04 + syst_JES_EtaIntercalibration_Stat153: 5.70068634e-04 + syst_JES_EtaIntercalibration_Stat154: 5.72445812e-04 + syst_JES_EtaIntercalibration_Stat155: 4.26104939e-04 + syst_JES_EtaIntercalibration_Stat156: 6.97670065e-04 + syst_JES_EtaIntercalibration_Stat157: 8.72210903e-04 + syst_JES_EtaIntercalibration_Stat158: 7.33584765e-04 + syst_JES_EtaIntercalibration_Stat159: 4.96742529e-04 + syst_JES_EtaIntercalibration_Stat16: 2.92596784e-12 + syst_JES_EtaIntercalibration_Stat160: 4.95597690e-04 + syst_JES_EtaIntercalibration_Stat161: 3.79431153e-04 + syst_JES_EtaIntercalibration_Stat162: 3.02560556e-04 + syst_JES_EtaIntercalibration_Stat163: 1.13653405e-04 + syst_JES_EtaIntercalibration_Stat164: 3.36594741e-04 + syst_JES_EtaIntercalibration_Stat165: 1.52160663e-05 + syst_JES_EtaIntercalibration_Stat166: 8.97832450e-04 + syst_JES_EtaIntercalibration_Stat167: 5.85663720e-04 + syst_JES_EtaIntercalibration_Stat168: 9.13797826e-04 + syst_JES_EtaIntercalibration_Stat169: 7.24949866e-04 + syst_JES_EtaIntercalibration_Stat17: 4.75259726e-12 + syst_JES_EtaIntercalibration_Stat170: 1.15211508e-03 + syst_JES_EtaIntercalibration_Stat171: 1.48081460e-03 + syst_JES_EtaIntercalibration_Stat172: 9.45047330e-04 + syst_JES_EtaIntercalibration_Stat173: 1.00690397e-03 + syst_JES_EtaIntercalibration_Stat174: 1.41310589e-03 + syst_JES_EtaIntercalibration_Stat175: 9.96519065e-04 + syst_JES_EtaIntercalibration_Stat176: 1.30181316e-03 + syst_JES_EtaIntercalibration_Stat177: 6.88155222e-04 + syst_JES_EtaIntercalibration_Stat178: 3.57581889e-04 + syst_JES_EtaIntercalibration_Stat179: 4.48030431e-04 + syst_JES_EtaIntercalibration_Stat18: 4.70226009e-12 + syst_JES_EtaIntercalibration_Stat180: 3.91267832e-04 + syst_JES_EtaIntercalibration_Stat181: 3.06659596e-04 + syst_JES_EtaIntercalibration_Stat182: 1.16659926e-03 + syst_JES_EtaIntercalibration_Stat183: 1.03351472e-03 + syst_JES_EtaIntercalibration_Stat184: 1.03344740e-03 + syst_JES_EtaIntercalibration_Stat185: 1.77521708e-03 + syst_JES_EtaIntercalibration_Stat186: 2.42342996e-03 + syst_JES_EtaIntercalibration_Stat187: 3.03830890e-03 + syst_JES_EtaIntercalibration_Stat188: 2.85214564e-03 + syst_JES_EtaIntercalibration_Stat189: 2.33533574e-03 + syst_JES_EtaIntercalibration_Stat19: 2.30257617e-11 + syst_JES_EtaIntercalibration_Stat190: 2.11961270e-03 + syst_JES_EtaIntercalibration_Stat191: 2.70604379e-03 + syst_JES_EtaIntercalibration_Stat192: 3.54340006e-03 + syst_JES_EtaIntercalibration_Stat193: 1.51542406e-03 + syst_JES_EtaIntercalibration_Stat194: 1.52853484e-03 + syst_JES_EtaIntercalibration_Stat195: 1.07686004e-03 + syst_JES_EtaIntercalibration_Stat196: 1.16056088e-03 + syst_JES_EtaIntercalibration_Stat197: 1.06229534e-03 + syst_JES_EtaIntercalibration_Stat198: 7.90306086e-04 + syst_JES_EtaIntercalibration_Stat199: 1.00671670e-03 + syst_JES_EtaIntercalibration_Stat2: 3.86733846e-12 + syst_JES_EtaIntercalibration_Stat20: 4.70226009e-12 + syst_JES_EtaIntercalibration_Stat200: 5.10925584e-04 + syst_JES_EtaIntercalibration_Stat201: 1.35786162e-03 + syst_JES_EtaIntercalibration_Stat202: 1.44338279e-03 + syst_JES_EtaIntercalibration_Stat203: 1.62388947e-03 + syst_JES_EtaIntercalibration_Stat204: 9.61909684e-04 + syst_JES_EtaIntercalibration_Stat205: 1.24498149e-03 + syst_JES_EtaIntercalibration_Stat206: 2.02407578e-03 + syst_JES_EtaIntercalibration_Stat207: 1.28601645e-03 + syst_JES_EtaIntercalibration_Stat208: 1.29640406e-03 + syst_JES_EtaIntercalibration_Stat209: 1.17256820e-03 + syst_JES_EtaIntercalibration_Stat21: 4.70226009e-12 + syst_JES_EtaIntercalibration_Stat210: 7.38310861e-04 + syst_JES_EtaIntercalibration_Stat211: 8.98289946e-04 + syst_JES_EtaIntercalibration_Stat212: 2.57418880e-04 + syst_JES_EtaIntercalibration_Stat213: 1.78202418e-04 + syst_JES_EtaIntercalibration_Stat214: 4.35827375e-05 + syst_JES_EtaIntercalibration_Stat215: 9.09337107e-05 + syst_JES_EtaIntercalibration_Stat216: 1.59872267e-04 + syst_JES_EtaIntercalibration_Stat217: 1.96773628e-04 + syst_JES_EtaIntercalibration_Stat218: 1.48040451e-05 + syst_JES_EtaIntercalibration_Stat219: 2.39385273e-04 + syst_JES_EtaIntercalibration_Stat22: 4.70226009e-12 + syst_JES_EtaIntercalibration_Stat220: 2.54233003e-04 + syst_JES_EtaIntercalibration_Stat221: 1.77699339e-04 + syst_JES_EtaIntercalibration_Stat222: 1.11457469e-05 + syst_JES_EtaIntercalibration_Stat223: 1.33625361e-04 + syst_JES_EtaIntercalibration_Stat224: 7.33552498e-05 + syst_JES_EtaIntercalibration_Stat225: 1.66966218e-04 + syst_JES_EtaIntercalibration_Stat226: 1.41583739e-04 + syst_JES_EtaIntercalibration_Stat227: 1.42462058e-04 + syst_JES_EtaIntercalibration_Stat228: 1.18289077e-04 + syst_JES_EtaIntercalibration_Stat229: 1.17162497e-04 + syst_JES_EtaIntercalibration_Stat23: 1.54068721e-10 + syst_JES_EtaIntercalibration_Stat230: 1.24303829e-04 + syst_JES_EtaIntercalibration_Stat231: 1.91091810e-04 + syst_JES_EtaIntercalibration_Stat232: 5.86423677e-05 + syst_JES_EtaIntercalibration_Stat233: 7.28296387e-05 + syst_JES_EtaIntercalibration_Stat234: 1.60534248e-04 + syst_JES_EtaIntercalibration_Stat235: 8.72260796e-05 + syst_JES_EtaIntercalibration_Stat236: 6.61098041e-06 + syst_JES_EtaIntercalibration_Stat237: 1.98449885e-05 + syst_JES_EtaIntercalibration_Stat238: 1.74226768e-05 + syst_JES_EtaIntercalibration_Stat239: 1.07713532e-05 + syst_JES_EtaIntercalibration_Stat24: 7.45324668e-09 + syst_JES_EtaIntercalibration_Stat240: 2.48137036e-05 + syst_JES_EtaIntercalibration_Stat241: 8.46193422e-06 + syst_JES_EtaIntercalibration_Stat242: 2.26004132e-05 + syst_JES_EtaIntercalibration_Stat243: 1.93636924e-05 + syst_JES_EtaIntercalibration_Stat244: 3.05776651e-05 + syst_JES_EtaIntercalibration_Stat245: 9.54605273e-05 + syst_JES_EtaIntercalibration_Stat25: 6.98986208e-09 + syst_JES_EtaIntercalibration_Stat26: 3.60640800e-11 + syst_JES_EtaIntercalibration_Stat27: 6.27938389e-09 + syst_JES_EtaIntercalibration_Stat28: 6.01735723e-10 + syst_JES_EtaIntercalibration_Stat29: 8.82580268e-09 + syst_JES_EtaIntercalibration_Stat3: 6.27568345e-12 + syst_JES_EtaIntercalibration_Stat30: 7.58795842e-09 + syst_JES_EtaIntercalibration_Stat31: 1.54820696e-05 + syst_JES_EtaIntercalibration_Stat32: 5.91317388e-06 + syst_JES_EtaIntercalibration_Stat33: 3.14659720e-09 + syst_JES_EtaIntercalibration_Stat34: 6.75410625e-08 + syst_JES_EtaIntercalibration_Stat35: 9.01376086e-06 + syst_JES_EtaIntercalibration_Stat36: 1.09199135e-07 + syst_JES_EtaIntercalibration_Stat37: 1.74682457e-07 + syst_JES_EtaIntercalibration_Stat38: 2.83378228e-08 + syst_JES_EtaIntercalibration_Stat39: 2.97393124e-08 + syst_JES_EtaIntercalibration_Stat4: 3.22710010e-12 + syst_JES_EtaIntercalibration_Stat40: 7.00147727e-10 + syst_JES_EtaIntercalibration_Stat41: 7.67218126e-13 + syst_JES_EtaIntercalibration_Stat42: 1.38131052e-11 + syst_JES_EtaIntercalibration_Stat43: 4.70226009e-12 + syst_JES_EtaIntercalibration_Stat44: 4.70226009e-12 + syst_JES_EtaIntercalibration_Stat45: 3.86733846e-12 + syst_JES_EtaIntercalibration_Stat46: 4.32836820e-09 + syst_JES_EtaIntercalibration_Stat47: 1.22692208e-07 + syst_JES_EtaIntercalibration_Stat48: 7.78432444e-09 + syst_JES_EtaIntercalibration_Stat49: 1.36796064e-08 + syst_JES_EtaIntercalibration_Stat5: 2.87953447e-12 + syst_JES_EtaIntercalibration_Stat50: 1.55077347e-05 + syst_JES_EtaIntercalibration_Stat51: 3.99758837e-08 + syst_JES_EtaIntercalibration_Stat52: 9.72688451e-09 + syst_JES_EtaIntercalibration_Stat53: 1.52314854e-05 + syst_JES_EtaIntercalibration_Stat54: 1.54923059e-05 + syst_JES_EtaIntercalibration_Stat55: 1.42728582e-08 + syst_JES_EtaIntercalibration_Stat56: 7.93444879e-08 + syst_JES_EtaIntercalibration_Stat57: 1.94865496e-05 + syst_JES_EtaIntercalibration_Stat58: 2.56781478e-07 + syst_JES_EtaIntercalibration_Stat59: 1.35368533e-07 + syst_JES_EtaIntercalibration_Stat6: 3.51280529e-12 + syst_JES_EtaIntercalibration_Stat60: 2.80358971e-11 + syst_JES_EtaIntercalibration_Stat61: 2.56806543e-08 + syst_JES_EtaIntercalibration_Stat62: 2.53741099e-09 + syst_JES_EtaIntercalibration_Stat63: 9.93372743e-10 + syst_JES_EtaIntercalibration_Stat64: 1.47816508e-12 + syst_JES_EtaIntercalibration_Stat65: 4.70226009e-12 + syst_JES_EtaIntercalibration_Stat66: 4.70226009e-12 + syst_JES_EtaIntercalibration_Stat67: 8.26566759e-09 + syst_JES_EtaIntercalibration_Stat68: 5.76212051e-07 + syst_JES_EtaIntercalibration_Stat69: 4.96838163e-07 + syst_JES_EtaIntercalibration_Stat7: 2.14570604e-11 + syst_JES_EtaIntercalibration_Stat70: 2.06823669e-07 + syst_JES_EtaIntercalibration_Stat71: 1.16428506e-07 + syst_JES_EtaIntercalibration_Stat72: 1.51579142e-05 + syst_JES_EtaIntercalibration_Stat73: 1.79658285e-05 + syst_JES_EtaIntercalibration_Stat74: 6.11176047e-06 + syst_JES_EtaIntercalibration_Stat75: 7.97444278e-06 + syst_JES_EtaIntercalibration_Stat76: 1.24553583e-05 + syst_JES_EtaIntercalibration_Stat77: 1.95777147e-07 + syst_JES_EtaIntercalibration_Stat78: 8.30873534e-06 + syst_JES_EtaIntercalibration_Stat79: 1.98881916e-05 + syst_JES_EtaIntercalibration_Stat8: 6.54352303e-10 + syst_JES_EtaIntercalibration_Stat80: 1.80057796e-05 + syst_JES_EtaIntercalibration_Stat81: 7.57625415e-06 + syst_JES_EtaIntercalibration_Stat82: 5.22230239e-06 + syst_JES_EtaIntercalibration_Stat83: 2.61478254e-09 + syst_JES_EtaIntercalibration_Stat84: 3.40782577e-08 + syst_JES_EtaIntercalibration_Stat85: 1.10165110e-08 + syst_JES_EtaIntercalibration_Stat86: 2.14892700e-11 + syst_JES_EtaIntercalibration_Stat87: 2.87953447e-12 + syst_JES_EtaIntercalibration_Stat88: 7.22172710e-09 + syst_JES_EtaIntercalibration_Stat89: 1.82110909e-06 + syst_JES_EtaIntercalibration_Stat9: 6.56898350e-10 + syst_JES_EtaIntercalibration_Stat90: 1.83856726e-06 + syst_JES_EtaIntercalibration_Stat91: 2.09663147e-07 + syst_JES_EtaIntercalibration_Stat92: 4.81391679e-07 + syst_JES_EtaIntercalibration_Stat93: 1.27001022e-05 + syst_JES_EtaIntercalibration_Stat94: 1.56065406e-05 + syst_JES_EtaIntercalibration_Stat95: 2.29582033e-05 + syst_JES_EtaIntercalibration_Stat96: 7.94719312e-06 + syst_JES_EtaIntercalibration_Stat97: 1.98464711e-06 + syst_JES_EtaIntercalibration_Stat98: 6.73493385e-07 + syst_JES_EtaIntercalibration_Stat99: 1.27550240e-05 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.26407488e-02 + syst_JES_Flavour_Comp: 4.34363635e-02 + syst_JES_Flavour_Response: 8.21524940e-02 + syst_JES_Gjet_Generator: 1.15675661e-01 + syst_JES_Gjet_OOC: 8.52970215e-02 + syst_JES_Gjet_Purity: 2.90750972e-02 + syst_JES_Gjet_Stat1: 1.81336614e-04 + syst_JES_Gjet_Stat10: 4.98978123e-03 + syst_JES_Gjet_Stat11: 8.47736993e-03 + syst_JES_Gjet_Stat12: 1.55601617e-02 + syst_JES_Gjet_Stat13: 1.20195615e-02 + syst_JES_Gjet_Stat14: 1.98451387e-03 + syst_JES_Gjet_Stat15: 1.86724690e-03 + syst_JES_Gjet_Stat2: 2.31945405e-04 + syst_JES_Gjet_Stat3: 1.77342740e-04 + syst_JES_Gjet_Stat4: 3.28041385e-04 + syst_JES_Gjet_Stat5: 3.22772033e-04 + syst_JES_Gjet_Stat6: 8.66121220e-04 + syst_JES_Gjet_Stat7: 1.28545870e-03 + syst_JES_Gjet_Stat8: 8.95808244e-04 + syst_JES_Gjet_Stat9: 2.45981707e-03 + syst_JES_Gjet_Veto: 5.03472899e-02 + syst_JES_Gjet_dPhi: 6.15822328e-03 + syst_JES_LArESZee: 1.59436406e-01 + syst_JES_LArEsmear: 1.23828412e-02 + syst_JES_LAr_JVT: 1.67752697e-02 + syst_JES_MJB_Alpha: 8.86721698e-04 + syst_JES_MJB_Asym: 4.28016098e-03 + syst_JES_MJB_Beta: 2.29590129e-04 + syst_JES_MJB_Fragmentation: 1.40016285e-02 + syst_JES_MJB_Stat1: 7.26604748e-04 + syst_JES_MJB_Stat10: 5.84268594e-05 + syst_JES_MJB_Stat11: 4.06591822e-05 + syst_JES_MJB_Stat12: 2.42432480e-05 + syst_JES_MJB_Stat13: 2.63677723e-05 + syst_JES_MJB_Stat14: 2.97351824e-05 + syst_JES_MJB_Stat15: 3.35293435e-05 + syst_JES_MJB_Stat16: 3.16258976e-05 + syst_JES_MJB_Stat2: 1.44547605e-03 + syst_JES_MJB_Stat3: 1.52065003e-03 + syst_JES_MJB_Stat4: 2.45103259e-04 + syst_JES_MJB_Stat5: 3.01174499e-04 + syst_JES_MJB_Stat6: 6.06855329e-05 + syst_JES_MJB_Stat7: 2.40215669e-04 + syst_JES_MJB_Stat8: 2.17201727e-04 + syst_JES_MJB_Stat9: 1.18776394e-04 + syst_JES_MJB_Threshold: 5.53644297e-03 + syst_JES_Pileup_MuOffset: 1.04168759e-02 + syst_JES_Pileup_NPVOffset: 1.33780753e-02 + syst_JES_Pileup_Pt_term: 2.06918504e-02 + syst_JES_Pileup_Rho_topology: 3.85926468e-02 + syst_JES_PunchThrough_MC15: 2.24352686e-03 + syst_JES_SingleParticle_HighPt: 4.29213816e-05 + syst_JES_Zjet_MC: 1.00258310e-01 + syst_JES_Zjet_MuScale: 6.10990432e-03 + syst_JES_Zjet_MuSmearID: 1.32798821e-03 + syst_JES_Zjet_MuSmearMS: 2.13250106e-02 + syst_JES_Zjet_OOC: 3.89134617e-02 + syst_JES_Zjet_Stat1: 1.25741086e-03 + syst_JES_Zjet_Stat10: 4.10001024e-03 + syst_JES_Zjet_Stat11: 5.35889709e-03 + syst_JES_Zjet_Stat12: 2.98141355e-02 + syst_JES_Zjet_Stat13: 1.71872940e-02 + syst_JES_Zjet_Stat2: 6.61331012e-05 + syst_JES_Zjet_Stat3: 3.72074110e-04 + syst_JES_Zjet_Stat4: 4.25710606e-04 + syst_JES_Zjet_Stat5: 3.68136958e-04 + syst_JES_Zjet_Stat6: 8.11783079e-04 + syst_JES_Zjet_Stat7: 5.14019034e-04 + syst_JES_Zjet_Stat8: 7.99563156e-04 + syst_JES_Zjet_Stat9: 1.82919480e-03 + syst_JES_Zjet_Veto: 7.47032347e-03 + syst_JES_Zjet_dPhi: 6.45126763e-03 syst_PRW: 0.0 syst_Unfolding_bias: 0.0 - syst_cleaning: 0.05324324182466729 + syst_cleaning: 5.32432418e-02 syst_lumi: 0.12516 - stat: 0.022512 - syst_JER_CROSS_CALIB_FORWARD: 1.2175e-07 - syst_JER_NOISE_FORWARD: 7.001e-05 - syst_JER_NP0: 0.0052328182416361444 - syst_JER_NP1: 0.0011032182048443544 - syst_JER_NP2: 4.879791081593555e-08 - syst_JER_NP3: 0.0020749030700252 - syst_JER_NP4: 0.0005903419178747177 - syst_JER_NP5: 0.00044123994322817147 + syst_JER_CROSS_CALIB_FORWARD: 1.21750000e-07 + syst_JER_NOISE_FORWARD: 7.00100000e-05 + syst_JER_NP0: 5.23281824e-03 + syst_JER_NP1: 1.10321820e-03 + syst_JER_NP2: 4.87979108e-08 + syst_JER_NP3: 2.07490307e-03 + syst_JER_NP4: 5.90341918e-04 + syst_JER_NP5: 4.41239943e-04 syst_JER_NP6: 0.0 syst_JER_NP7: 0.0 - syst_JER_NP8: 0.0014237022748805313 - syst_JES_EtaIntercalibration_Modelling: 0.055515560656450184 - syst_JES_EtaIntercalibration_NonClosure: 0.002815058214318133 - syst_JES_EtaIntercalibration_Stat0: 2.49043008333902e-13 - syst_JES_EtaIntercalibration_Stat1: 1.6834502517152087e-13 - syst_JES_EtaIntercalibration_Stat10: 2.5116560274050265e-13 - syst_JES_EtaIntercalibration_Stat100: 2.2125492182548163e-06 - syst_JES_EtaIntercalibration_Stat101: 9.107945732710532e-07 - syst_JES_EtaIntercalibration_Stat102: 2.956975608624461e-06 - syst_JES_EtaIntercalibration_Stat103: 2.6872384537848517e-06 - syst_JES_EtaIntercalibration_Stat104: 4.407750616845286e-08 - syst_JES_EtaIntercalibration_Stat105: 4.7375794948475536e-06 - syst_JES_EtaIntercalibration_Stat106: 3.2128566264113e-07 - syst_JES_EtaIntercalibration_Stat107: 1.458232014289907e-14 - syst_JES_EtaIntercalibration_Stat108: 2.437272875572204e-07 - syst_JES_EtaIntercalibration_Stat109: 4.873899432692472e-05 - syst_JES_EtaIntercalibration_Stat11: 1.849177321810972e-12 - syst_JES_EtaIntercalibration_Stat110: 2.0293217604657967e-05 - syst_JES_EtaIntercalibration_Stat111: 6.247263460908304e-06 - syst_JES_EtaIntercalibration_Stat112: 7.522123295984985e-05 - syst_JES_EtaIntercalibration_Stat113: 2.1703771561643384e-05 - syst_JES_EtaIntercalibration_Stat114: 1.9100075601944616e-05 - syst_JES_EtaIntercalibration_Stat115: 1.3653393053743088e-05 - syst_JES_EtaIntercalibration_Stat116: 2.4083501860817497e-06 - syst_JES_EtaIntercalibration_Stat117: 6.933481863393025e-06 - syst_JES_EtaIntercalibration_Stat118: 2.4032475293860177e-05 - syst_JES_EtaIntercalibration_Stat119: 2.7365624421891055e-05 - syst_JES_EtaIntercalibration_Stat12: 3.7707313388784406e-10 - syst_JES_EtaIntercalibration_Stat120: 2.2311586115738165e-05 - syst_JES_EtaIntercalibration_Stat121: 7.723340389203366e-06 - syst_JES_EtaIntercalibration_Stat122: 3.1387851581583275e-06 - syst_JES_EtaIntercalibration_Stat123: 9.149942130964545e-06 - syst_JES_EtaIntercalibration_Stat124: 2.2436538837351898e-05 - syst_JES_EtaIntercalibration_Stat125: 8.374963044694587e-06 - syst_JES_EtaIntercalibration_Stat126: 7.137229014120256e-06 - syst_JES_EtaIntercalibration_Stat127: 1.4505925513389345e-13 - syst_JES_EtaIntercalibration_Stat128: 1.3769254545907703e-05 - syst_JES_EtaIntercalibration_Stat129: 0.00012591529109186856 - syst_JES_EtaIntercalibration_Stat13: 9.122423855533134e-13 - syst_JES_EtaIntercalibration_Stat130: 0.0001658463073903064 - syst_JES_EtaIntercalibration_Stat131: 0.00024372403964319973 - syst_JES_EtaIntercalibration_Stat132: 0.00010554875780889135 - syst_JES_EtaIntercalibration_Stat133: 0.0002156274796958866 - syst_JES_EtaIntercalibration_Stat134: 0.00021934636992665277 - syst_JES_EtaIntercalibration_Stat135: 7.84440972922756e-05 - syst_JES_EtaIntercalibration_Stat136: 0.000155531331489832 - syst_JES_EtaIntercalibration_Stat137: 0.00017271942565907285 - syst_JES_EtaIntercalibration_Stat138: 0.00019448294751725666 - syst_JES_EtaIntercalibration_Stat139: 0.00011278922909568979 - syst_JES_EtaIntercalibration_Stat14: 9.130975960980294e-13 - syst_JES_EtaIntercalibration_Stat140: 0.000133257430186838 - syst_JES_EtaIntercalibration_Stat141: 0.0001578080615811499 - syst_JES_EtaIntercalibration_Stat142: 0.0001208116967640137 - syst_JES_EtaIntercalibration_Stat143: 0.00011914039029649013 - syst_JES_EtaIntercalibration_Stat144: 0.00016601063218962814 - syst_JES_EtaIntercalibration_Stat145: 2.251905919438021e-05 - syst_JES_EtaIntercalibration_Stat146: 6.695046135016547e-05 - syst_JES_EtaIntercalibration_Stat147: 0.00018796007554797376 - syst_JES_EtaIntercalibration_Stat148: 0.00011561774117755458 - syst_JES_EtaIntercalibration_Stat149: 0.0002392828190656404 - syst_JES_EtaIntercalibration_Stat15: 1.471177715301588e-12 - syst_JES_EtaIntercalibration_Stat150: 7.613560714278176e-05 - syst_JES_EtaIntercalibration_Stat151: 0.000126015073304744 - syst_JES_EtaIntercalibration_Stat152: 0.0002534394750231305 - syst_JES_EtaIntercalibration_Stat153: 0.000177821719919137 - syst_JES_EtaIntercalibration_Stat154: 0.0001616838584243956 - syst_JES_EtaIntercalibration_Stat155: 0.00011093717535163764 - syst_JES_EtaIntercalibration_Stat156: 0.00024153448511547994 - syst_JES_EtaIntercalibration_Stat157: 0.00017154970358470458 - syst_JES_EtaIntercalibration_Stat158: 0.00020796504513980227 - syst_JES_EtaIntercalibration_Stat159: 0.00013606101085542472 - syst_JES_EtaIntercalibration_Stat16: 1.5500549979516858e-13 - syst_JES_EtaIntercalibration_Stat160: 0.00010622983008552731 - syst_JES_EtaIntercalibration_Stat161: 0.0001808257932375799 - syst_JES_EtaIntercalibration_Stat162: 0.0001631843227764236 - syst_JES_EtaIntercalibration_Stat163: 2.656279493953902e-05 - syst_JES_EtaIntercalibration_Stat164: 0.0002156184303347003 - syst_JES_EtaIntercalibration_Stat165: 7.871168938403036e-06 - syst_JES_EtaIntercalibration_Stat166: 0.0003116230415100912 - syst_JES_EtaIntercalibration_Stat167: 0.00024101812551497034 - syst_JES_EtaIntercalibration_Stat168: 0.0003687072034487528 - syst_JES_EtaIntercalibration_Stat169: 0.0003568024663591887 - syst_JES_EtaIntercalibration_Stat17: 2.5187937589250933e-13 - syst_JES_EtaIntercalibration_Stat170: 0.0004932704202564755 - syst_JES_EtaIntercalibration_Stat171: 0.0005363530741095366 - syst_JES_EtaIntercalibration_Stat172: 0.0003703149165490772 - syst_JES_EtaIntercalibration_Stat173: 0.0005045881166852822 - syst_JES_EtaIntercalibration_Stat174: 0.0005552559477394186 - syst_JES_EtaIntercalibration_Stat175: 0.0004915764716704818 - syst_JES_EtaIntercalibration_Stat176: 0.00042353905073794554 - syst_JES_EtaIntercalibration_Stat177: 0.000259822171253725 - syst_JES_EtaIntercalibration_Stat178: 0.00016575726212343403 - syst_JES_EtaIntercalibration_Stat179: 0.0002504194654474768 - syst_JES_EtaIntercalibration_Stat18: 2.49043008333902e-13 - syst_JES_EtaIntercalibration_Stat180: 0.00020500237724231397 - syst_JES_EtaIntercalibration_Stat181: 0.00012851816993942773 - syst_JES_EtaIntercalibration_Stat182: 0.000688503347849522 - syst_JES_EtaIntercalibration_Stat183: 0.00033824354197475686 - syst_JES_EtaIntercalibration_Stat184: 0.0006362333750283774 - syst_JES_EtaIntercalibration_Stat185: 0.000799300336231632 - syst_JES_EtaIntercalibration_Stat186: 0.0012066977127681978 - syst_JES_EtaIntercalibration_Stat187: 0.0015060006640104779 - syst_JES_EtaIntercalibration_Stat188: 0.0011795876694845535 - syst_JES_EtaIntercalibration_Stat189: 0.0012862167264889692 - syst_JES_EtaIntercalibration_Stat19: 1.2705174644608392e-12 - syst_JES_EtaIntercalibration_Stat190: 0.0008118884652463047 - syst_JES_EtaIntercalibration_Stat191: 0.0013737607533701056 - syst_JES_EtaIntercalibration_Stat192: 0.0014823828140868335 - syst_JES_EtaIntercalibration_Stat193: 0.000930424724252317 - syst_JES_EtaIntercalibration_Stat194: 0.0008410838721554469 - syst_JES_EtaIntercalibration_Stat195: 0.0005164963162259727 - syst_JES_EtaIntercalibration_Stat196: 0.0006530793730474114 - syst_JES_EtaIntercalibration_Stat197: 0.0005756398765721498 - syst_JES_EtaIntercalibration_Stat198: 0.000495700988500124 - syst_JES_EtaIntercalibration_Stat199: 0.0005824596077840935 - syst_JES_EtaIntercalibration_Stat2: 2.084130108102659e-13 - syst_JES_EtaIntercalibration_Stat20: 2.49043008333902e-13 - syst_JES_EtaIntercalibration_Stat200: 0.0005745070125768701 - syst_JES_EtaIntercalibration_Stat201: 0.0009055171671481442 - syst_JES_EtaIntercalibration_Stat202: 0.0010595623011413723 - syst_JES_EtaIntercalibration_Stat203: 0.00120822217638148 - syst_JES_EtaIntercalibration_Stat204: 0.0008383749810198297 - syst_JES_EtaIntercalibration_Stat205: 0.000834573525820224 - syst_JES_EtaIntercalibration_Stat206: 0.0011815313241721524 - syst_JES_EtaIntercalibration_Stat207: 0.0008007872798065663 - syst_JES_EtaIntercalibration_Stat208: 0.0008988570742893445 - syst_JES_EtaIntercalibration_Stat209: 0.0007894528912481099 - syst_JES_EtaIntercalibration_Stat21: 2.49043008333902e-13 - syst_JES_EtaIntercalibration_Stat210: 0.0004963913724824395 - syst_JES_EtaIntercalibration_Stat211: 0.0005935847791175242 - syst_JES_EtaIntercalibration_Stat212: 3.517506076753813e-05 - syst_JES_EtaIntercalibration_Stat213: 0.00013699910830001778 - syst_JES_EtaIntercalibration_Stat214: 0.00020680626199416687 - syst_JES_EtaIntercalibration_Stat215: 0.00020087619943636925 - syst_JES_EtaIntercalibration_Stat216: 0.00012853974638219885 - syst_JES_EtaIntercalibration_Stat217: 5.624472508600251e-05 - syst_JES_EtaIntercalibration_Stat218: 0.0002118557018043177 - syst_JES_EtaIntercalibration_Stat219: 0.00025324845878109506 - syst_JES_EtaIntercalibration_Stat22: 2.49043008333902e-13 - syst_JES_EtaIntercalibration_Stat220: 0.00012403818232705605 - syst_JES_EtaIntercalibration_Stat221: 0.000138602534879417 - syst_JES_EtaIntercalibration_Stat222: 5.915820591823977e-06 - syst_JES_EtaIntercalibration_Stat223: 8.188609137545887e-05 - syst_JES_EtaIntercalibration_Stat224: 5.306651745686728e-05 - syst_JES_EtaIntercalibration_Stat225: 0.00014254519520138167 - syst_JES_EtaIntercalibration_Stat226: 0.00011579120119853668 - syst_JES_EtaIntercalibration_Stat227: 0.00010566858130494609 - syst_JES_EtaIntercalibration_Stat228: 7.982200370198683e-05 - syst_JES_EtaIntercalibration_Stat229: 3.7191548435094766e-05 - syst_JES_EtaIntercalibration_Stat23: 7.889558872097983e-12 - syst_JES_EtaIntercalibration_Stat230: 2.3735915839714297e-05 - syst_JES_EtaIntercalibration_Stat231: 0.0001752823940816647 - syst_JES_EtaIntercalibration_Stat232: 5.69221108182049e-05 - syst_JES_EtaIntercalibration_Stat233: 4.497740618354953e-05 - syst_JES_EtaIntercalibration_Stat234: 8.836065810076338e-05 - syst_JES_EtaIntercalibration_Stat235: 7.039920512447272e-05 - syst_JES_EtaIntercalibration_Stat236: 3.6830208728705297e-06 - syst_JES_EtaIntercalibration_Stat237: 5.50163348470252e-06 - syst_JES_EtaIntercalibration_Stat238: 8.053015502748024e-06 - syst_JES_EtaIntercalibration_Stat239: 2.2298985335660455e-05 - syst_JES_EtaIntercalibration_Stat24: 4.1131764793161984e-10 - syst_JES_EtaIntercalibration_Stat240: 1.3771285343060755e-05 - syst_JES_EtaIntercalibration_Stat241: 1.1566635292944962e-06 - syst_JES_EtaIntercalibration_Stat242: 9.441844787963843e-06 - syst_JES_EtaIntercalibration_Stat243: 1.0188049077595769e-05 - syst_JES_EtaIntercalibration_Stat244: 8.657865484633036e-06 - syst_JES_EtaIntercalibration_Stat245: 4.6376517624763505e-05 - syst_JES_EtaIntercalibration_Stat25: 3.9029083729316526e-10 - syst_JES_EtaIntercalibration_Stat26: 1.837052696760493e-12 - syst_JES_EtaIntercalibration_Stat27: 3.5392441108660477e-10 - syst_JES_EtaIntercalibration_Stat28: 3.0778908524975345e-11 - syst_JES_EtaIntercalibration_Stat29: 4.927737411835172e-10 - syst_JES_EtaIntercalibration_Stat3: 3.422428815914219e-13 - syst_JES_EtaIntercalibration_Stat30: 4.229854252808245e-10 - syst_JES_EtaIntercalibration_Stat31: 7.057865640717931e-06 - syst_JES_EtaIntercalibration_Stat32: 8.447457797246211e-06 - syst_JES_EtaIntercalibration_Stat33: 2.0800923789762316e-10 - syst_JES_EtaIntercalibration_Stat34: 3.780460801278066e-09 - syst_JES_EtaIntercalibration_Stat35: 4.901712373565364e-06 - syst_JES_EtaIntercalibration_Stat36: 7.933019396799681e-09 - syst_JES_EtaIntercalibration_Stat37: 8.850194460087016e-09 - syst_JES_EtaIntercalibration_Stat38: 1.600345900110348e-09 - syst_JES_EtaIntercalibration_Stat39: 1.6809553087455952e-09 - syst_JES_EtaIntercalibration_Stat4: 1.6834502517152087e-13 - syst_JES_EtaIntercalibration_Stat40: 3.57119044682582e-11 - syst_JES_EtaIntercalibration_Stat41: 4.915201859537408e-14 - syst_JES_EtaIntercalibration_Stat42: 7.583784460940329e-13 - syst_JES_EtaIntercalibration_Stat43: 2.49043008333902e-13 - syst_JES_EtaIntercalibration_Stat44: 2.49043008333902e-13 - syst_JES_EtaIntercalibration_Stat45: 2.084130108102659e-13 - syst_JES_EtaIntercalibration_Stat46: 2.752979941203486e-10 - syst_JES_EtaIntercalibration_Stat47: 8.262849840097543e-09 - syst_JES_EtaIntercalibration_Stat48: 4.3442753029130186e-10 - syst_JES_EtaIntercalibration_Stat49: 7.713121784822278e-10 - syst_JES_EtaIntercalibration_Stat5: 1.5250707360643965e-13 - syst_JES_EtaIntercalibration_Stat50: 7.054798115763461e-06 - syst_JES_EtaIntercalibration_Stat51: 2.245419508132055e-09 - syst_JES_EtaIntercalibration_Stat52: 5.387169494741649e-10 - syst_JES_EtaIntercalibration_Stat53: 7.082227019029748e-06 - syst_JES_EtaIntercalibration_Stat54: 7.054311702244806e-06 - syst_JES_EtaIntercalibration_Stat55: 8.539312285395118e-10 - syst_JES_EtaIntercalibration_Stat56: 5.474088313819937e-09 - syst_JES_EtaIntercalibration_Stat57: 4.4133423161675325e-06 - syst_JES_EtaIntercalibration_Stat58: 1.7550265724484062e-08 - syst_JES_EtaIntercalibration_Stat59: 9.242041204907063e-09 - syst_JES_EtaIntercalibration_Stat6: 1.9098951456820869e-13 - syst_JES_EtaIntercalibration_Stat60: 1.5689442830132623e-12 - syst_JES_EtaIntercalibration_Stat61: 1.4370897677859238e-09 - syst_JES_EtaIntercalibration_Stat62: 1.298433787607208e-10 - syst_JES_EtaIntercalibration_Stat63: 5.0682967833129385e-11 - syst_JES_EtaIntercalibration_Stat64: 8.290424435455642e-14 - syst_JES_EtaIntercalibration_Stat65: 2.49043008333902e-13 - syst_JES_EtaIntercalibration_Stat66: 2.49043008333902e-13 - syst_JES_EtaIntercalibration_Stat67: 4.5298512944687267e-10 - syst_JES_EtaIntercalibration_Stat68: 5.0321034120931975e-08 - syst_JES_EtaIntercalibration_Stat69: 4.6984009109483196e-08 - syst_JES_EtaIntercalibration_Stat7: 1.0986095974002776e-12 - syst_JES_EtaIntercalibration_Stat70: 1.380134294190243e-08 - syst_JES_EtaIntercalibration_Stat71: 7.594266307550717e-09 - syst_JES_EtaIntercalibration_Stat72: 7.071481645371207e-06 - syst_JES_EtaIntercalibration_Stat73: 6.683406990450305e-06 - syst_JES_EtaIntercalibration_Stat74: 3.0997781207168683e-06 - syst_JES_EtaIntercalibration_Stat75: 4.23746682716271e-06 - syst_JES_EtaIntercalibration_Stat76: 7.285872711693706e-06 - syst_JES_EtaIntercalibration_Stat77: 1.3721677171814676e-08 - syst_JES_EtaIntercalibration_Stat78: 4.411582426094296e-06 - syst_JES_EtaIntercalibration_Stat79: 4.6441822711323465e-06 - syst_JES_EtaIntercalibration_Stat8: 3.3483144274507734e-11 - syst_JES_EtaIntercalibration_Stat80: 3.608847366802176e-06 - syst_JES_EtaIntercalibration_Stat81: 3.8107126302044874e-06 - syst_JES_EtaIntercalibration_Stat82: 2.7816400178806385e-06 - syst_JES_EtaIntercalibration_Stat83: 1.3399503556755378e-10 - syst_JES_EtaIntercalibration_Stat84: 1.907662026447033e-09 - syst_JES_EtaIntercalibration_Stat85: 6.179918139223204e-10 - syst_JES_EtaIntercalibration_Stat86: 1.0964438408213165e-12 - syst_JES_EtaIntercalibration_Stat87: 1.5250707360643965e-13 - syst_JES_EtaIntercalibration_Stat88: 4.0425690180802497e-10 - syst_JES_EtaIntercalibration_Stat89: 2.5812647805872223e-07 - syst_JES_EtaIntercalibration_Stat9: 3.3588487859979645e-11 - syst_JES_EtaIntercalibration_Stat90: 2.5447699296203576e-07 - syst_JES_EtaIntercalibration_Stat91: 1.4090382626724513e-08 - syst_JES_EtaIntercalibration_Stat92: 4.625227046318916e-08 - syst_JES_EtaIntercalibration_Stat93: 7.30086629097534e-06 - syst_JES_EtaIntercalibration_Stat94: 6.843623236268927e-06 - syst_JES_EtaIntercalibration_Stat95: 1.1373034984119237e-05 - syst_JES_EtaIntercalibration_Stat96: 4.420278720080895e-06 - syst_JES_EtaIntercalibration_Stat97: 2.734386205348469e-07 - syst_JES_EtaIntercalibration_Stat98: 5.881261599350942e-08 - syst_JES_EtaIntercalibration_Stat99: 7.950033018799356e-06 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.00881955955532928 - syst_JES_Flavour_Comp: 0.027868437344063624 - syst_JES_Flavour_Response: 0.03432674868087567 - syst_JES_Gjet_Generator: 0.06194589312456476 - syst_JES_Gjet_OOC: 0.04651414408542846 - syst_JES_Gjet_Purity: 0.015534718375303751 - syst_JES_Gjet_Stat1: 0.00013065143732466167 - syst_JES_Gjet_Stat10: 0.0022988927769689474 - syst_JES_Gjet_Stat11: 0.003664051446145373 - syst_JES_Gjet_Stat12: 0.008693247767664279 - syst_JES_Gjet_Stat13: 0.009661659898795858 - syst_JES_Gjet_Stat14: 0.00219493099663748 - syst_JES_Gjet_Stat15: 0.0017810679380641267 - syst_JES_Gjet_Stat2: 0.00012639094627385302 - syst_JES_Gjet_Stat3: 0.00013907677448086003 - syst_JES_Gjet_Stat4: 0.00024274058169164873 - syst_JES_Gjet_Stat5: 0.0002426496585614742 - syst_JES_Gjet_Stat6: 0.0007031956537834972 - syst_JES_Gjet_Stat7: 0.0006751174916264576 - syst_JES_Gjet_Stat8: 0.00046754067202757883 - syst_JES_Gjet_Stat9: 0.001267540100943556 - syst_JES_Gjet_Veto: 0.03015099127723664 - syst_JES_Gjet_dPhi: 0.0038134850081651033 - syst_JES_LArESZee: 0.08809687891747357 - syst_JES_LArEsmear: 0.007250050810166781 - syst_JES_LAr_JVT: 0.009435942931154257 - syst_JES_MJB_Alpha: 0.0007288685392442178 - syst_JES_MJB_Asym: 0.0029548949219896127 - syst_JES_MJB_Beta: 0.00012206335486131781 - syst_JES_MJB_Fragmentation: 0.009280450999278 - syst_JES_MJB_Stat1: 0.0003663640368540558 - syst_JES_MJB_Stat10: 3.837049256916048e-05 - syst_JES_MJB_Stat11: 6.0744830850040236e-05 - syst_JES_MJB_Stat12: 1.8304328094743058e-05 - syst_JES_MJB_Stat13: 1.0996670893956952e-05 - syst_JES_MJB_Stat14: 9.266590675647651e-06 - syst_JES_MJB_Stat15: 1.634728628855566e-05 - syst_JES_MJB_Stat16: 1.6755552534906153e-05 - syst_JES_MJB_Stat2: 0.0009751956560096031 - syst_JES_MJB_Stat3: 0.0007706920315534604 - syst_JES_MJB_Stat4: 0.0002968050248900783 - syst_JES_MJB_Stat5: 0.00019874737432227878 - syst_JES_MJB_Stat6: 0.0002062074925893819 - syst_JES_MJB_Stat7: 0.00014210017170995958 - syst_JES_MJB_Stat8: 9.138823597706654e-05 - syst_JES_MJB_Stat9: 1.536240827474651e-05 - syst_JES_MJB_Threshold: 0.003894463088796709 - syst_JES_Pileup_MuOffset: 0.007570502823458954 - syst_JES_Pileup_NPVOffset: 0.008527865383552909 - syst_JES_Pileup_Pt_term: 0.010870455188261437 - syst_JES_Pileup_Rho_topology: 0.02024024703406557 - syst_JES_PunchThrough_MC15: 0.0017588026466889342 - syst_JES_SingleParticle_HighPt: 2.278298048983056e-05 - syst_JES_Zjet_MC: 0.04937496025314855 - syst_JES_Zjet_MuScale: 0.003071591444186547 - syst_JES_Zjet_MuSmearID: 0.0006334413212760911 - syst_JES_Zjet_MuSmearMS: 0.01239880812820329 - syst_JES_Zjet_OOC: 0.019757395450817908 - syst_JES_Zjet_Stat1: 0.0006860981034079601 - syst_JES_Zjet_Stat10: 0.0019432799592441641 - syst_JES_Zjet_Stat11: 0.0022947529278769863 - syst_JES_Zjet_Stat12: 0.013887738296785405 - syst_JES_Zjet_Stat13: 0.011345344276398139 - syst_JES_Zjet_Stat2: 9.874350662195463e-05 - syst_JES_Zjet_Stat3: 0.0002501920462364861 - syst_JES_Zjet_Stat4: 0.00027616944074245435 - syst_JES_Zjet_Stat5: 0.00027080164327418694 - syst_JES_Zjet_Stat6: 0.0004941484670622787 - syst_JES_Zjet_Stat7: 0.0003160182337698254 - syst_JES_Zjet_Stat8: 0.00046214972411546455 - syst_JES_Zjet_Stat9: 0.0008483642142382009 - syst_JES_Zjet_Veto: 0.004208055845637032 - syst_JES_Zjet_dPhi: 0.0035160045506227662 + syst_JER_NP8: 1.42370227e-03 + syst_JES_EtaIntercalibration_Modelling: 5.55155607e-02 + syst_JES_EtaIntercalibration_NonClosure: 2.81505821e-03 + syst_JES_EtaIntercalibration_Stat0: 2.49043008e-13 + syst_JES_EtaIntercalibration_Stat1: 1.68345025e-13 + syst_JES_EtaIntercalibration_Stat10: 2.51165603e-13 + syst_JES_EtaIntercalibration_Stat100: 2.21254922e-06 + syst_JES_EtaIntercalibration_Stat101: 9.10794573e-07 + syst_JES_EtaIntercalibration_Stat102: 2.95697561e-06 + syst_JES_EtaIntercalibration_Stat103: 2.68723845e-06 + syst_JES_EtaIntercalibration_Stat104: 4.40775062e-08 + syst_JES_EtaIntercalibration_Stat105: 4.73757949e-06 + syst_JES_EtaIntercalibration_Stat106: 3.21285663e-07 + syst_JES_EtaIntercalibration_Stat107: 1.45823201e-14 + syst_JES_EtaIntercalibration_Stat108: 2.43727288e-07 + syst_JES_EtaIntercalibration_Stat109: 4.87389943e-05 + syst_JES_EtaIntercalibration_Stat11: 1.84917732e-12 + syst_JES_EtaIntercalibration_Stat110: 2.02932176e-05 + syst_JES_EtaIntercalibration_Stat111: 6.24726346e-06 + syst_JES_EtaIntercalibration_Stat112: 7.52212330e-05 + syst_JES_EtaIntercalibration_Stat113: 2.17037716e-05 + syst_JES_EtaIntercalibration_Stat114: 1.91000756e-05 + syst_JES_EtaIntercalibration_Stat115: 1.36533931e-05 + syst_JES_EtaIntercalibration_Stat116: 2.40835019e-06 + syst_JES_EtaIntercalibration_Stat117: 6.93348186e-06 + syst_JES_EtaIntercalibration_Stat118: 2.40324753e-05 + syst_JES_EtaIntercalibration_Stat119: 2.73656244e-05 + syst_JES_EtaIntercalibration_Stat12: 3.77073134e-10 + syst_JES_EtaIntercalibration_Stat120: 2.23115861e-05 + syst_JES_EtaIntercalibration_Stat121: 7.72334039e-06 + syst_JES_EtaIntercalibration_Stat122: 3.13878516e-06 + syst_JES_EtaIntercalibration_Stat123: 9.14994213e-06 + syst_JES_EtaIntercalibration_Stat124: 2.24365388e-05 + syst_JES_EtaIntercalibration_Stat125: 8.37496304e-06 + syst_JES_EtaIntercalibration_Stat126: 7.13722901e-06 + syst_JES_EtaIntercalibration_Stat127: 1.45059255e-13 + syst_JES_EtaIntercalibration_Stat128: 1.37692545e-05 + syst_JES_EtaIntercalibration_Stat129: 1.25915291e-04 + syst_JES_EtaIntercalibration_Stat13: 9.12242386e-13 + syst_JES_EtaIntercalibration_Stat130: 1.65846307e-04 + syst_JES_EtaIntercalibration_Stat131: 2.43724040e-04 + syst_JES_EtaIntercalibration_Stat132: 1.05548758e-04 + syst_JES_EtaIntercalibration_Stat133: 2.15627480e-04 + syst_JES_EtaIntercalibration_Stat134: 2.19346370e-04 + syst_JES_EtaIntercalibration_Stat135: 7.84440973e-05 + syst_JES_EtaIntercalibration_Stat136: 1.55531331e-04 + syst_JES_EtaIntercalibration_Stat137: 1.72719426e-04 + syst_JES_EtaIntercalibration_Stat138: 1.94482948e-04 + syst_JES_EtaIntercalibration_Stat139: 1.12789229e-04 + syst_JES_EtaIntercalibration_Stat14: 9.13097596e-13 + syst_JES_EtaIntercalibration_Stat140: 1.33257430e-04 + syst_JES_EtaIntercalibration_Stat141: 1.57808062e-04 + syst_JES_EtaIntercalibration_Stat142: 1.20811697e-04 + syst_JES_EtaIntercalibration_Stat143: 1.19140390e-04 + syst_JES_EtaIntercalibration_Stat144: 1.66010632e-04 + syst_JES_EtaIntercalibration_Stat145: 2.25190592e-05 + syst_JES_EtaIntercalibration_Stat146: 6.69504614e-05 + syst_JES_EtaIntercalibration_Stat147: 1.87960076e-04 + syst_JES_EtaIntercalibration_Stat148: 1.15617741e-04 + syst_JES_EtaIntercalibration_Stat149: 2.39282819e-04 + syst_JES_EtaIntercalibration_Stat15: 1.47117772e-12 + syst_JES_EtaIntercalibration_Stat150: 7.61356071e-05 + syst_JES_EtaIntercalibration_Stat151: 1.26015073e-04 + syst_JES_EtaIntercalibration_Stat152: 2.53439475e-04 + syst_JES_EtaIntercalibration_Stat153: 1.77821720e-04 + syst_JES_EtaIntercalibration_Stat154: 1.61683858e-04 + syst_JES_EtaIntercalibration_Stat155: 1.10937175e-04 + syst_JES_EtaIntercalibration_Stat156: 2.41534485e-04 + syst_JES_EtaIntercalibration_Stat157: 1.71549704e-04 + syst_JES_EtaIntercalibration_Stat158: 2.07965045e-04 + syst_JES_EtaIntercalibration_Stat159: 1.36061011e-04 + syst_JES_EtaIntercalibration_Stat16: 1.55005500e-13 + syst_JES_EtaIntercalibration_Stat160: 1.06229830e-04 + syst_JES_EtaIntercalibration_Stat161: 1.80825793e-04 + syst_JES_EtaIntercalibration_Stat162: 1.63184323e-04 + syst_JES_EtaIntercalibration_Stat163: 2.65627949e-05 + syst_JES_EtaIntercalibration_Stat164: 2.15618430e-04 + syst_JES_EtaIntercalibration_Stat165: 7.87116894e-06 + syst_JES_EtaIntercalibration_Stat166: 3.11623042e-04 + syst_JES_EtaIntercalibration_Stat167: 2.41018126e-04 + syst_JES_EtaIntercalibration_Stat168: 3.68707203e-04 + syst_JES_EtaIntercalibration_Stat169: 3.56802466e-04 + syst_JES_EtaIntercalibration_Stat17: 2.51879376e-13 + syst_JES_EtaIntercalibration_Stat170: 4.93270420e-04 + syst_JES_EtaIntercalibration_Stat171: 5.36353074e-04 + syst_JES_EtaIntercalibration_Stat172: 3.70314917e-04 + syst_JES_EtaIntercalibration_Stat173: 5.04588117e-04 + syst_JES_EtaIntercalibration_Stat174: 5.55255948e-04 + syst_JES_EtaIntercalibration_Stat175: 4.91576472e-04 + syst_JES_EtaIntercalibration_Stat176: 4.23539051e-04 + syst_JES_EtaIntercalibration_Stat177: 2.59822171e-04 + syst_JES_EtaIntercalibration_Stat178: 1.65757262e-04 + syst_JES_EtaIntercalibration_Stat179: 2.50419465e-04 + syst_JES_EtaIntercalibration_Stat18: 2.49043008e-13 + syst_JES_EtaIntercalibration_Stat180: 2.05002377e-04 + syst_JES_EtaIntercalibration_Stat181: 1.28518170e-04 + syst_JES_EtaIntercalibration_Stat182: 6.88503348e-04 + syst_JES_EtaIntercalibration_Stat183: 3.38243542e-04 + syst_JES_EtaIntercalibration_Stat184: 6.36233375e-04 + syst_JES_EtaIntercalibration_Stat185: 7.99300336e-04 + syst_JES_EtaIntercalibration_Stat186: 1.20669771e-03 + syst_JES_EtaIntercalibration_Stat187: 1.50600066e-03 + syst_JES_EtaIntercalibration_Stat188: 1.17958767e-03 + syst_JES_EtaIntercalibration_Stat189: 1.28621673e-03 + syst_JES_EtaIntercalibration_Stat19: 1.27051746e-12 + syst_JES_EtaIntercalibration_Stat190: 8.11888465e-04 + syst_JES_EtaIntercalibration_Stat191: 1.37376075e-03 + syst_JES_EtaIntercalibration_Stat192: 1.48238281e-03 + syst_JES_EtaIntercalibration_Stat193: 9.30424724e-04 + syst_JES_EtaIntercalibration_Stat194: 8.41083872e-04 + syst_JES_EtaIntercalibration_Stat195: 5.16496316e-04 + syst_JES_EtaIntercalibration_Stat196: 6.53079373e-04 + syst_JES_EtaIntercalibration_Stat197: 5.75639877e-04 + syst_JES_EtaIntercalibration_Stat198: 4.95700989e-04 + syst_JES_EtaIntercalibration_Stat199: 5.82459608e-04 + syst_JES_EtaIntercalibration_Stat2: 2.08413011e-13 + syst_JES_EtaIntercalibration_Stat20: 2.49043008e-13 + syst_JES_EtaIntercalibration_Stat200: 5.74507013e-04 + syst_JES_EtaIntercalibration_Stat201: 9.05517167e-04 + syst_JES_EtaIntercalibration_Stat202: 1.05956230e-03 + syst_JES_EtaIntercalibration_Stat203: 1.20822218e-03 + syst_JES_EtaIntercalibration_Stat204: 8.38374981e-04 + syst_JES_EtaIntercalibration_Stat205: 8.34573526e-04 + syst_JES_EtaIntercalibration_Stat206: 1.18153132e-03 + syst_JES_EtaIntercalibration_Stat207: 8.00787280e-04 + syst_JES_EtaIntercalibration_Stat208: 8.98857074e-04 + syst_JES_EtaIntercalibration_Stat209: 7.89452891e-04 + syst_JES_EtaIntercalibration_Stat21: 2.49043008e-13 + syst_JES_EtaIntercalibration_Stat210: 4.96391372e-04 + syst_JES_EtaIntercalibration_Stat211: 5.93584779e-04 + syst_JES_EtaIntercalibration_Stat212: 3.51750608e-05 + syst_JES_EtaIntercalibration_Stat213: 1.36999108e-04 + syst_JES_EtaIntercalibration_Stat214: 2.06806262e-04 + syst_JES_EtaIntercalibration_Stat215: 2.00876199e-04 + syst_JES_EtaIntercalibration_Stat216: 1.28539746e-04 + syst_JES_EtaIntercalibration_Stat217: 5.62447251e-05 + syst_JES_EtaIntercalibration_Stat218: 2.11855702e-04 + syst_JES_EtaIntercalibration_Stat219: 2.53248459e-04 + syst_JES_EtaIntercalibration_Stat22: 2.49043008e-13 + syst_JES_EtaIntercalibration_Stat220: 1.24038182e-04 + syst_JES_EtaIntercalibration_Stat221: 1.38602535e-04 + syst_JES_EtaIntercalibration_Stat222: 5.91582059e-06 + syst_JES_EtaIntercalibration_Stat223: 8.18860914e-05 + syst_JES_EtaIntercalibration_Stat224: 5.30665175e-05 + syst_JES_EtaIntercalibration_Stat225: 1.42545195e-04 + syst_JES_EtaIntercalibration_Stat226: 1.15791201e-04 + syst_JES_EtaIntercalibration_Stat227: 1.05668581e-04 + syst_JES_EtaIntercalibration_Stat228: 7.98220037e-05 + syst_JES_EtaIntercalibration_Stat229: 3.71915484e-05 + syst_JES_EtaIntercalibration_Stat23: 7.88955887e-12 + syst_JES_EtaIntercalibration_Stat230: 2.37359158e-05 + syst_JES_EtaIntercalibration_Stat231: 1.75282394e-04 + syst_JES_EtaIntercalibration_Stat232: 5.69221108e-05 + syst_JES_EtaIntercalibration_Stat233: 4.49774062e-05 + syst_JES_EtaIntercalibration_Stat234: 8.83606581e-05 + syst_JES_EtaIntercalibration_Stat235: 7.03992051e-05 + syst_JES_EtaIntercalibration_Stat236: 3.68302087e-06 + syst_JES_EtaIntercalibration_Stat237: 5.50163348e-06 + syst_JES_EtaIntercalibration_Stat238: 8.05301550e-06 + syst_JES_EtaIntercalibration_Stat239: 2.22989853e-05 + syst_JES_EtaIntercalibration_Stat24: 4.11317648e-10 + syst_JES_EtaIntercalibration_Stat240: 1.37712853e-05 + syst_JES_EtaIntercalibration_Stat241: 1.15666353e-06 + syst_JES_EtaIntercalibration_Stat242: 9.44184479e-06 + syst_JES_EtaIntercalibration_Stat243: 1.01880491e-05 + syst_JES_EtaIntercalibration_Stat244: 8.65786548e-06 + syst_JES_EtaIntercalibration_Stat245: 4.63765176e-05 + syst_JES_EtaIntercalibration_Stat25: 3.90290837e-10 + syst_JES_EtaIntercalibration_Stat26: 1.83705270e-12 + syst_JES_EtaIntercalibration_Stat27: 3.53924411e-10 + syst_JES_EtaIntercalibration_Stat28: 3.07789085e-11 + syst_JES_EtaIntercalibration_Stat29: 4.92773741e-10 + syst_JES_EtaIntercalibration_Stat3: 3.42242882e-13 + syst_JES_EtaIntercalibration_Stat30: 4.22985425e-10 + syst_JES_EtaIntercalibration_Stat31: 7.05786564e-06 + syst_JES_EtaIntercalibration_Stat32: 8.44745780e-06 + syst_JES_EtaIntercalibration_Stat33: 2.08009238e-10 + syst_JES_EtaIntercalibration_Stat34: 3.78046080e-09 + syst_JES_EtaIntercalibration_Stat35: 4.90171237e-06 + syst_JES_EtaIntercalibration_Stat36: 7.93301940e-09 + syst_JES_EtaIntercalibration_Stat37: 8.85019446e-09 + syst_JES_EtaIntercalibration_Stat38: 1.60034590e-09 + syst_JES_EtaIntercalibration_Stat39: 1.68095531e-09 + syst_JES_EtaIntercalibration_Stat4: 1.68345025e-13 + syst_JES_EtaIntercalibration_Stat40: 3.57119045e-11 + syst_JES_EtaIntercalibration_Stat41: 4.91520186e-14 + syst_JES_EtaIntercalibration_Stat42: 7.58378446e-13 + syst_JES_EtaIntercalibration_Stat43: 2.49043008e-13 + syst_JES_EtaIntercalibration_Stat44: 2.49043008e-13 + syst_JES_EtaIntercalibration_Stat45: 2.08413011e-13 + syst_JES_EtaIntercalibration_Stat46: 2.75297994e-10 + syst_JES_EtaIntercalibration_Stat47: 8.26284984e-09 + syst_JES_EtaIntercalibration_Stat48: 4.34427530e-10 + syst_JES_EtaIntercalibration_Stat49: 7.71312178e-10 + syst_JES_EtaIntercalibration_Stat5: 1.52507074e-13 + syst_JES_EtaIntercalibration_Stat50: 7.05479812e-06 + syst_JES_EtaIntercalibration_Stat51: 2.24541951e-09 + syst_JES_EtaIntercalibration_Stat52: 5.38716949e-10 + syst_JES_EtaIntercalibration_Stat53: 7.08222702e-06 + syst_JES_EtaIntercalibration_Stat54: 7.05431170e-06 + syst_JES_EtaIntercalibration_Stat55: 8.53931229e-10 + syst_JES_EtaIntercalibration_Stat56: 5.47408831e-09 + syst_JES_EtaIntercalibration_Stat57: 4.41334232e-06 + syst_JES_EtaIntercalibration_Stat58: 1.75502657e-08 + syst_JES_EtaIntercalibration_Stat59: 9.24204120e-09 + syst_JES_EtaIntercalibration_Stat6: 1.90989515e-13 + syst_JES_EtaIntercalibration_Stat60: 1.56894428e-12 + syst_JES_EtaIntercalibration_Stat61: 1.43708977e-09 + syst_JES_EtaIntercalibration_Stat62: 1.29843379e-10 + syst_JES_EtaIntercalibration_Stat63: 5.06829678e-11 + syst_JES_EtaIntercalibration_Stat64: 8.29042444e-14 + syst_JES_EtaIntercalibration_Stat65: 2.49043008e-13 + syst_JES_EtaIntercalibration_Stat66: 2.49043008e-13 + syst_JES_EtaIntercalibration_Stat67: 4.52985129e-10 + syst_JES_EtaIntercalibration_Stat68: 5.03210341e-08 + syst_JES_EtaIntercalibration_Stat69: 4.69840091e-08 + syst_JES_EtaIntercalibration_Stat7: 1.09860960e-12 + syst_JES_EtaIntercalibration_Stat70: 1.38013429e-08 + syst_JES_EtaIntercalibration_Stat71: 7.59426631e-09 + syst_JES_EtaIntercalibration_Stat72: 7.07148165e-06 + syst_JES_EtaIntercalibration_Stat73: 6.68340699e-06 + syst_JES_EtaIntercalibration_Stat74: 3.09977812e-06 + syst_JES_EtaIntercalibration_Stat75: 4.23746683e-06 + syst_JES_EtaIntercalibration_Stat76: 7.28587271e-06 + syst_JES_EtaIntercalibration_Stat77: 1.37216772e-08 + syst_JES_EtaIntercalibration_Stat78: 4.41158243e-06 + syst_JES_EtaIntercalibration_Stat79: 4.64418227e-06 + syst_JES_EtaIntercalibration_Stat8: 3.34831443e-11 + syst_JES_EtaIntercalibration_Stat80: 3.60884737e-06 + syst_JES_EtaIntercalibration_Stat81: 3.81071263e-06 + syst_JES_EtaIntercalibration_Stat82: 2.78164002e-06 + syst_JES_EtaIntercalibration_Stat83: 1.33995036e-10 + syst_JES_EtaIntercalibration_Stat84: 1.90766203e-09 + syst_JES_EtaIntercalibration_Stat85: 6.17991814e-10 + syst_JES_EtaIntercalibration_Stat86: 1.09644384e-12 + syst_JES_EtaIntercalibration_Stat87: 1.52507074e-13 + syst_JES_EtaIntercalibration_Stat88: 4.04256902e-10 + syst_JES_EtaIntercalibration_Stat89: 2.58126478e-07 + syst_JES_EtaIntercalibration_Stat9: 3.35884879e-11 + syst_JES_EtaIntercalibration_Stat90: 2.54476993e-07 + syst_JES_EtaIntercalibration_Stat91: 1.40903826e-08 + syst_JES_EtaIntercalibration_Stat92: 4.62522705e-08 + syst_JES_EtaIntercalibration_Stat93: 7.30086629e-06 + syst_JES_EtaIntercalibration_Stat94: 6.84362324e-06 + syst_JES_EtaIntercalibration_Stat95: 1.13730350e-05 + syst_JES_EtaIntercalibration_Stat96: 4.42027872e-06 + syst_JES_EtaIntercalibration_Stat97: 2.73438621e-07 + syst_JES_EtaIntercalibration_Stat98: 5.88126160e-08 + syst_JES_EtaIntercalibration_Stat99: 7.95003302e-06 + syst_JES_EtaIntercalibration_TotalStat_MJB: 8.81955956e-03 + syst_JES_Flavour_Comp: 2.78684373e-02 + syst_JES_Flavour_Response: 3.43267487e-02 + syst_JES_Gjet_Generator: 6.19458931e-02 + syst_JES_Gjet_OOC: 4.65141441e-02 + syst_JES_Gjet_Purity: 1.55347184e-02 + syst_JES_Gjet_Stat1: 1.30651437e-04 + syst_JES_Gjet_Stat10: 2.29889278e-03 + syst_JES_Gjet_Stat11: 3.66405145e-03 + syst_JES_Gjet_Stat12: 8.69324777e-03 + syst_JES_Gjet_Stat13: 9.66165990e-03 + syst_JES_Gjet_Stat14: 2.19493100e-03 + syst_JES_Gjet_Stat15: 1.78106794e-03 + syst_JES_Gjet_Stat2: 1.26390946e-04 + syst_JES_Gjet_Stat3: 1.39076774e-04 + syst_JES_Gjet_Stat4: 2.42740582e-04 + syst_JES_Gjet_Stat5: 2.42649659e-04 + syst_JES_Gjet_Stat6: 7.03195654e-04 + syst_JES_Gjet_Stat7: 6.75117492e-04 + syst_JES_Gjet_Stat8: 4.67540672e-04 + syst_JES_Gjet_Stat9: 1.26754010e-03 + syst_JES_Gjet_Veto: 3.01509913e-02 + syst_JES_Gjet_dPhi: 3.81348501e-03 + syst_JES_LArESZee: 8.80968789e-02 + syst_JES_LArEsmear: 7.25005081e-03 + syst_JES_LAr_JVT: 9.43594293e-03 + syst_JES_MJB_Alpha: 7.28868539e-04 + syst_JES_MJB_Asym: 2.95489492e-03 + syst_JES_MJB_Beta: 1.22063355e-04 + syst_JES_MJB_Fragmentation: 9.28045100e-03 + syst_JES_MJB_Stat1: 3.66364037e-04 + syst_JES_MJB_Stat10: 3.83704926e-05 + syst_JES_MJB_Stat11: 6.07448309e-05 + syst_JES_MJB_Stat12: 1.83043281e-05 + syst_JES_MJB_Stat13: 1.09966709e-05 + syst_JES_MJB_Stat14: 9.26659068e-06 + syst_JES_MJB_Stat15: 1.63472863e-05 + syst_JES_MJB_Stat16: 1.67555525e-05 + syst_JES_MJB_Stat2: 9.75195656e-04 + syst_JES_MJB_Stat3: 7.70692032e-04 + syst_JES_MJB_Stat4: 2.96805025e-04 + syst_JES_MJB_Stat5: 1.98747374e-04 + syst_JES_MJB_Stat6: 2.06207493e-04 + syst_JES_MJB_Stat7: 1.42100172e-04 + syst_JES_MJB_Stat8: 9.13882360e-05 + syst_JES_MJB_Stat9: 1.53624083e-05 + syst_JES_MJB_Threshold: 3.89446309e-03 + syst_JES_Pileup_MuOffset: 7.57050282e-03 + syst_JES_Pileup_NPVOffset: 8.52786538e-03 + syst_JES_Pileup_Pt_term: 1.08704552e-02 + syst_JES_Pileup_Rho_topology: 2.02402470e-02 + syst_JES_PunchThrough_MC15: 1.75880265e-03 + syst_JES_SingleParticle_HighPt: 2.27829805e-05 + syst_JES_Zjet_MC: 4.93749603e-02 + syst_JES_Zjet_MuScale: 3.07159144e-03 + syst_JES_Zjet_MuSmearID: 6.33441321e-04 + syst_JES_Zjet_MuSmearMS: 1.23988081e-02 + syst_JES_Zjet_OOC: 1.97573955e-02 + syst_JES_Zjet_Stat1: 6.86098103e-04 + syst_JES_Zjet_Stat10: 1.94327996e-03 + syst_JES_Zjet_Stat11: 2.29475293e-03 + syst_JES_Zjet_Stat12: 1.38877383e-02 + syst_JES_Zjet_Stat13: 1.13453443e-02 + syst_JES_Zjet_Stat2: 9.87435066e-05 + syst_JES_Zjet_Stat3: 2.50192046e-04 + syst_JES_Zjet_Stat4: 2.76169441e-04 + syst_JES_Zjet_Stat5: 2.70801643e-04 + syst_JES_Zjet_Stat6: 4.94148467e-04 + syst_JES_Zjet_Stat7: 3.16018234e-04 + syst_JES_Zjet_Stat8: 4.62149724e-04 + syst_JES_Zjet_Stat9: 8.48364214e-04 + syst_JES_Zjet_Veto: 4.20805585e-03 + syst_JES_Zjet_dPhi: 3.51600455e-03 syst_PRW: 0.0 syst_Unfolding_bias: 0.0 - syst_cleaning: 0.028752043405643364 + syst_cleaning: 2.87520434e-02 syst_lumi: 0.06643 - stat: 0.01035 - syst_JER_CROSS_CALIB_FORWARD: 6.456e-09 + syst_JER_CROSS_CALIB_FORWARD: 6.45600000e-09 syst_JER_NOISE_FORWARD: 6.72e-06 - syst_JER_NP0: 0.0026162959981622875 - syst_JER_NP1: 0.0005788303443151542 - syst_JER_NP2: 5.194380882261138e-06 - syst_JER_NP3: 0.0007966709923174057 - syst_JER_NP4: 0.00023020775399625444 - syst_JER_NP5: 0.00023036275740666068 - syst_JER_NP6: 3.197804246666765e-37 + syst_JER_NP0: 2.61629600e-03 + syst_JER_NP1: 5.78830344e-04 + syst_JER_NP2: 5.19438088e-06 + syst_JER_NP3: 7.96670992e-04 + syst_JER_NP4: 2.30207754e-04 + syst_JER_NP5: 2.30362757e-04 + syst_JER_NP6: 3.19780425e-37 syst_JER_NP7: 0.0 - syst_JER_NP8: 0.0006008108604211478 - syst_JES_EtaIntercalibration_Modelling: 0.032231312027281786 - syst_JES_EtaIntercalibration_NonClosure: 0.0014641439922357365 - syst_JES_EtaIntercalibration_Stat0: 1.4491446373637103e-14 - syst_JES_EtaIntercalibration_Stat1: 9.585623336538943e-15 - syst_JES_EtaIntercalibration_Stat10: 1.453529473385387e-14 - syst_JES_EtaIntercalibration_Stat100: 5.615615935334877e-06 - syst_JES_EtaIntercalibration_Stat101: 8.901144943629443e-08 - syst_JES_EtaIntercalibration_Stat102: 1.4267571166810417e-06 - syst_JES_EtaIntercalibration_Stat103: 1.4440274019048254e-06 - syst_JES_EtaIntercalibration_Stat104: 3.1433022615555126e-09 - syst_JES_EtaIntercalibration_Stat105: 5.02258910523248e-07 - syst_JES_EtaIntercalibration_Stat106: 3.095260863752036e-08 - syst_JES_EtaIntercalibration_Stat107: 1.1106258359591677e-15 - syst_JES_EtaIntercalibration_Stat108: 1.7971541925708543e-08 - syst_JES_EtaIntercalibration_Stat109: 7.273183816596415e-06 - syst_JES_EtaIntercalibration_Stat11: 1.0184051517323543e-13 - syst_JES_EtaIntercalibration_Stat110: 8.924493389963377e-06 - syst_JES_EtaIntercalibration_Stat111: 3.1704764007164606e-06 - syst_JES_EtaIntercalibration_Stat112: 2.991801709672618e-05 - syst_JES_EtaIntercalibration_Stat113: 3.6997860748967633e-06 - syst_JES_EtaIntercalibration_Stat114: 1.0654443016882676e-05 - syst_JES_EtaIntercalibration_Stat115: 1.5013904780236218e-06 - syst_JES_EtaIntercalibration_Stat116: 2.4318031889937148e-06 - syst_JES_EtaIntercalibration_Stat117: 1.24519091206931e-06 - syst_JES_EtaIntercalibration_Stat118: 3.8180420047453645e-06 - syst_JES_EtaIntercalibration_Stat119: 7.048341560253731e-06 - syst_JES_EtaIntercalibration_Stat12: 1.9987510018759216e-11 - syst_JES_EtaIntercalibration_Stat120: 7.495072383239537e-06 - syst_JES_EtaIntercalibration_Stat121: 7.428581282283986e-07 - syst_JES_EtaIntercalibration_Stat122: 1.8672016965386332e-06 - syst_JES_EtaIntercalibration_Stat123: 8.779360725588169e-06 - syst_JES_EtaIntercalibration_Stat124: 3.065762143415565e-05 - syst_JES_EtaIntercalibration_Stat125: 1.3258201640871207e-06 - syst_JES_EtaIntercalibration_Stat126: 7.146474987712474e-07 - syst_JES_EtaIntercalibration_Stat127: 1.7485052902407816e-15 - syst_JES_EtaIntercalibration_Stat128: 3.3213018844272497e-06 - syst_JES_EtaIntercalibration_Stat129: 2.8158837511649876e-05 - syst_JES_EtaIntercalibration_Stat13: 5.546761133084785e-14 - syst_JES_EtaIntercalibration_Stat130: 4.6994815510516685e-05 - syst_JES_EtaIntercalibration_Stat131: 5.664567128210239e-05 - syst_JES_EtaIntercalibration_Stat132: 1.075054311744295e-05 - syst_JES_EtaIntercalibration_Stat133: 5.50650987468469e-05 - syst_JES_EtaIntercalibration_Stat134: 6.600588212424708e-05 - syst_JES_EtaIntercalibration_Stat135: 1.1558422972339264e-05 - syst_JES_EtaIntercalibration_Stat136: 5.4484394169339904e-05 - syst_JES_EtaIntercalibration_Stat137: 4.3623447823389664e-05 - syst_JES_EtaIntercalibration_Stat138: 6.681203097496737e-05 - syst_JES_EtaIntercalibration_Stat139: 2.0886639192316223e-05 - syst_JES_EtaIntercalibration_Stat14: 5.547617251352151e-14 - syst_JES_EtaIntercalibration_Stat140: 4.446200614850841e-05 - syst_JES_EtaIntercalibration_Stat141: 6.040417949115773e-05 - syst_JES_EtaIntercalibration_Stat142: 4.828917373490667e-05 - syst_JES_EtaIntercalibration_Stat143: 3.224402448128955e-05 - syst_JES_EtaIntercalibration_Stat144: 5.8274022514324516e-05 - syst_JES_EtaIntercalibration_Stat145: 4.41077442179942e-06 - syst_JES_EtaIntercalibration_Stat146: 1.629457808597694e-05 - syst_JES_EtaIntercalibration_Stat147: 6.615631370474023e-05 - syst_JES_EtaIntercalibration_Stat148: 2.455596298091362e-05 - syst_JES_EtaIntercalibration_Stat149: 4.769201898640903e-05 - syst_JES_EtaIntercalibration_Stat15: 8.161950808477102e-14 - syst_JES_EtaIntercalibration_Stat150: 9.219980325765343e-06 - syst_JES_EtaIntercalibration_Stat151: 3.3875009594094586e-05 - syst_JES_EtaIntercalibration_Stat152: 9.501166402079273e-05 - syst_JES_EtaIntercalibration_Stat153: 4.899789170974604e-05 - syst_JES_EtaIntercalibration_Stat154: 4.75771893558247e-05 - syst_JES_EtaIntercalibration_Stat155: 5.518710212314105e-05 - syst_JES_EtaIntercalibration_Stat156: 8.90880332873052e-05 - syst_JES_EtaIntercalibration_Stat157: 2.7388767770748646e-05 - syst_JES_EtaIntercalibration_Stat158: 5.4308004014141425e-05 - syst_JES_EtaIntercalibration_Stat159: 4.599931086440318e-05 - syst_JES_EtaIntercalibration_Stat16: 9.0140469862321e-15 - syst_JES_EtaIntercalibration_Stat160: 9.421025037117777e-06 - syst_JES_EtaIntercalibration_Stat161: 8.804510250434148e-05 - syst_JES_EtaIntercalibration_Stat162: 8.03598332502003e-05 - syst_JES_EtaIntercalibration_Stat163: 2.9931129627028782e-05 - syst_JES_EtaIntercalibration_Stat164: 6.27842061907292e-05 - syst_JES_EtaIntercalibration_Stat165: 1.1820454689541346e-06 - syst_JES_EtaIntercalibration_Stat166: 8.300578835237937e-05 - syst_JES_EtaIntercalibration_Stat167: 8.383739481132509e-05 - syst_JES_EtaIntercalibration_Stat168: 0.00013238201794428124 - syst_JES_EtaIntercalibration_Stat169: 0.00014748412626448988 - syst_JES_EtaIntercalibration_Stat17: 1.4663776687811363e-14 - syst_JES_EtaIntercalibration_Stat170: 0.0001962550322284756 - syst_JES_EtaIntercalibration_Stat171: 0.00014891961548097013 - syst_JES_EtaIntercalibration_Stat172: 0.00013263591158883028 - syst_JES_EtaIntercalibration_Stat173: 0.00020646500157411665 - syst_JES_EtaIntercalibration_Stat174: 0.000190195207089979 - syst_JES_EtaIntercalibration_Stat175: 0.00019638385880718404 - syst_JES_EtaIntercalibration_Stat176: 9.922243395523011e-05 - syst_JES_EtaIntercalibration_Stat177: 8.11637197274743e-05 - syst_JES_EtaIntercalibration_Stat178: 0.00010972520778392365 - syst_JES_EtaIntercalibration_Stat179: 0.00013766590235330607 - syst_JES_EtaIntercalibration_Stat18: 1.4491446373637103e-14 - syst_JES_EtaIntercalibration_Stat180: 7.968629179476228e-05 - syst_JES_EtaIntercalibration_Stat181: 3.1029690218894033e-05 - syst_JES_EtaIntercalibration_Stat182: 0.00029714846457621144 - syst_JES_EtaIntercalibration_Stat183: 0.00011265258452563944 - syst_JES_EtaIntercalibration_Stat184: 0.0003609620894221441 - syst_JES_EtaIntercalibration_Stat185: 0.00032556408505085446 - syst_JES_EtaIntercalibration_Stat186: 0.000403785289479446 - syst_JES_EtaIntercalibration_Stat187: 0.0006385822010516735 - syst_JES_EtaIntercalibration_Stat188: 0.00046032572163632137 - syst_JES_EtaIntercalibration_Stat189: 0.0006236959896455964 - syst_JES_EtaIntercalibration_Stat19: 7.826778008861629e-14 - syst_JES_EtaIntercalibration_Stat190: 0.00021490254785599917 - syst_JES_EtaIntercalibration_Stat191: 0.0006677847033288497 - syst_JES_EtaIntercalibration_Stat192: 0.0006088232255753717 - syst_JES_EtaIntercalibration_Stat193: 0.00047235330791686004 - syst_JES_EtaIntercalibration_Stat194: 0.00042192757672377854 - syst_JES_EtaIntercalibration_Stat195: 0.00017601467325197636 - syst_JES_EtaIntercalibration_Stat196: 0.0003310867673284452 - syst_JES_EtaIntercalibration_Stat197: 0.0003081667405804851 - syst_JES_EtaIntercalibration_Stat198: 0.0002795486853841384 - syst_JES_EtaIntercalibration_Stat199: 0.000232906473074494 - syst_JES_EtaIntercalibration_Stat2: 1.2438293562623451e-14 - syst_JES_EtaIntercalibration_Stat20: 1.4491446373637103e-14 - syst_JES_EtaIntercalibration_Stat200: 0.0003981906201808375 - syst_JES_EtaIntercalibration_Stat201: 0.00045858681566307596 - syst_JES_EtaIntercalibration_Stat202: 0.0006528848060722505 - syst_JES_EtaIntercalibration_Stat203: 0.0006970693563053823 - syst_JES_EtaIntercalibration_Stat204: 0.0005431132479280909 - syst_JES_EtaIntercalibration_Stat205: 0.0004200656258252989 - syst_JES_EtaIntercalibration_Stat206: 0.0006484955743873662 - syst_JES_EtaIntercalibration_Stat207: 0.000477145205886007 - syst_JES_EtaIntercalibration_Stat208: 0.0005120213545351405 - syst_JES_EtaIntercalibration_Stat209: 0.00036859892132235005 - syst_JES_EtaIntercalibration_Stat21: 1.4491446373637103e-14 - syst_JES_EtaIntercalibration_Stat210: 0.00023992755156505057 - syst_JES_EtaIntercalibration_Stat211: 0.0003180365073383871 - syst_JES_EtaIntercalibration_Stat212: 7.256347428286494e-05 - syst_JES_EtaIntercalibration_Stat213: 2.4361678282704582e-05 - syst_JES_EtaIntercalibration_Stat214: 0.000203504004874597 - syst_JES_EtaIntercalibration_Stat215: 0.00021913887719891237 - syst_JES_EtaIntercalibration_Stat216: 0.00012465517347868077 - syst_JES_EtaIntercalibration_Stat217: 0.0001545632954488225 - syst_JES_EtaIntercalibration_Stat218: 0.00020739057162754532 - syst_JES_EtaIntercalibration_Stat219: 0.00022428737704115228 - syst_JES_EtaIntercalibration_Stat22: 1.4491446373637103e-14 - syst_JES_EtaIntercalibration_Stat220: 0.00011105704615196641 - syst_JES_EtaIntercalibration_Stat221: 8.178431068976495e-05 - syst_JES_EtaIntercalibration_Stat222: 3.090504217519853e-06 - syst_JES_EtaIntercalibration_Stat223: 4.6854383965110455e-05 - syst_JES_EtaIntercalibration_Stat224: 3.383383919983069e-05 - syst_JES_EtaIntercalibration_Stat225: 5.7693164889785695e-05 - syst_JES_EtaIntercalibration_Stat226: 5.6422069263719844e-05 - syst_JES_EtaIntercalibration_Stat227: 4.032327294193764e-05 - syst_JES_EtaIntercalibration_Stat228: 9.700900886000227e-05 - syst_JES_EtaIntercalibration_Stat229: 0.00013882107260787175 - syst_JES_EtaIntercalibration_Stat23: 4.3609214073633575e-13 - syst_JES_EtaIntercalibration_Stat230: 0.00010376867735497066 - syst_JES_EtaIntercalibration_Stat231: 2.8159227173344087e-05 - syst_JES_EtaIntercalibration_Stat232: 5.122408686350592e-05 - syst_JES_EtaIntercalibration_Stat233: 2.4432504476618847e-05 - syst_JES_EtaIntercalibration_Stat234: 1.088589788441909e-05 - syst_JES_EtaIntercalibration_Stat235: 1.409023332253087e-05 - syst_JES_EtaIntercalibration_Stat236: 8.796524825179543e-06 - syst_JES_EtaIntercalibration_Stat237: 6.789891070554814e-06 - syst_JES_EtaIntercalibration_Stat238: 6.485233072141663e-06 - syst_JES_EtaIntercalibration_Stat239: 1.4703896706379402e-05 - syst_JES_EtaIntercalibration_Stat24: 2.1670428393319776e-11 - syst_JES_EtaIntercalibration_Stat240: 8.851230931345085e-06 - syst_JES_EtaIntercalibration_Stat241: 4.2391943515248274e-08 - syst_JES_EtaIntercalibration_Stat242: 5.37201993550843e-06 - syst_JES_EtaIntercalibration_Stat243: 5.520811896813729e-06 - syst_JES_EtaIntercalibration_Stat244: 1.2815097463538854e-06 - syst_JES_EtaIntercalibration_Stat245: 1.1933200869842089e-05 - syst_JES_EtaIntercalibration_Stat25: 2.069907393773934e-11 - syst_JES_EtaIntercalibration_Stat26: 1.0067359111008209e-13 - syst_JES_EtaIntercalibration_Stat27: 1.8689697874462817e-11 - syst_JES_EtaIntercalibration_Stat28: 1.6099340210216693e-12 - syst_JES_EtaIntercalibration_Stat29: 2.610412036441757e-11 - syst_JES_EtaIntercalibration_Stat3: 2.075281848328077e-14 - syst_JES_EtaIntercalibration_Stat30: 2.231615027284052e-11 - syst_JES_EtaIntercalibration_Stat31: 3.846051936158756e-06 - syst_JES_EtaIntercalibration_Stat32: 3.979399775789887e-06 - syst_JES_EtaIntercalibration_Stat33: 1.1263351119005391e-11 - syst_JES_EtaIntercalibration_Stat34: 2.004690829030751e-10 - syst_JES_EtaIntercalibration_Stat35: 2.56689972145848e-06 - syst_JES_EtaIntercalibration_Stat36: 4.729846799844578e-10 - syst_JES_EtaIntercalibration_Stat37: 4.409972364869701e-10 - syst_JES_EtaIntercalibration_Stat38: 8.499961220499773e-11 - syst_JES_EtaIntercalibration_Stat39: 8.925257811402424e-11 - syst_JES_EtaIntercalibration_Stat4: 9.585623336538943e-15 - syst_JES_EtaIntercalibration_Stat40: 1.8839854212546337e-12 - syst_JES_EtaIntercalibration_Stat41: 3.59375396312825e-15 - syst_JES_EtaIntercalibration_Stat42: 4.641030138880807e-14 - syst_JES_EtaIntercalibration_Stat43: 1.4491446373637103e-14 - syst_JES_EtaIntercalibration_Stat44: 1.4491446373637103e-14 - syst_JES_EtaIntercalibration_Stat45: 1.2438293562623451e-14 - syst_JES_EtaIntercalibration_Stat46: 1.4893603806395385e-11 - syst_JES_EtaIntercalibration_Stat47: 4.804131933034312e-10 - syst_JES_EtaIntercalibration_Stat48: 2.2936131119916454e-11 - syst_JES_EtaIntercalibration_Stat49: 4.074253294470043e-11 - syst_JES_EtaIntercalibration_Stat5: 8.874162312579142e-15 - syst_JES_EtaIntercalibration_Stat50: 3.846027005103217e-06 - syst_JES_EtaIntercalibration_Stat51: 1.1888464997635312e-10 - syst_JES_EtaIntercalibration_Stat52: 2.85247508446612e-11 - syst_JES_EtaIntercalibration_Stat53: 3.847945526796183e-06 - syst_JES_EtaIntercalibration_Stat54: 3.845181167519379e-06 - syst_JES_EtaIntercalibration_Stat55: 4.56115861048484e-11 - syst_JES_EtaIntercalibration_Stat56: 3.212410384742273e-10 - syst_JES_EtaIntercalibration_Stat57: 2.0959770986709446e-06 - syst_JES_EtaIntercalibration_Stat58: 1.0269199530635287e-09 - syst_JES_EtaIntercalibration_Stat59: 5.406596209138888e-10 - syst_JES_EtaIntercalibration_Stat6: 1.1535649136481224e-14 - syst_JES_EtaIntercalibration_Stat60: 9.8474206870378e-14 - syst_JES_EtaIntercalibration_Stat61: 7.616616746955304e-11 - syst_JES_EtaIntercalibration_Stat62: 6.816422710447173e-12 - syst_JES_EtaIntercalibration_Stat63: 2.64684897131073e-12 - syst_JES_EtaIntercalibration_Stat64: 5.2249496102833374e-15 - syst_JES_EtaIntercalibration_Stat65: 1.4491446373637103e-14 - syst_JES_EtaIntercalibration_Stat66: 1.4491446373637103e-14 - syst_JES_EtaIntercalibration_Stat67: 2.3951314682079563e-11 - syst_JES_EtaIntercalibration_Stat68: 3.4653954590349425e-09 - syst_JES_EtaIntercalibration_Stat69: 3.3613489386703068e-09 - syst_JES_EtaIntercalibration_Stat7: 6.069941906641282e-14 - syst_JES_EtaIntercalibration_Stat70: 7.990331704629039e-10 - syst_JES_EtaIntercalibration_Stat71: 4.3606204833716035e-10 - syst_JES_EtaIntercalibration_Stat72: 3.8460394502612655e-06 - syst_JES_EtaIntercalibration_Stat73: 3.6350277853133393e-06 - syst_JES_EtaIntercalibration_Stat74: 1.6030825367169182e-06 - syst_JES_EtaIntercalibration_Stat75: 2.2126951908700567e-06 - syst_JES_EtaIntercalibration_Stat76: 3.839136545388117e-06 - syst_JES_EtaIntercalibration_Stat77: 8.087145856349755e-10 - syst_JES_EtaIntercalibration_Stat78: 2.303630301193517e-06 - syst_JES_EtaIntercalibration_Stat79: 1.4219058859153618e-06 - syst_JES_EtaIntercalibration_Stat8: 1.754294102160467e-12 - syst_JES_EtaIntercalibration_Stat80: 2.230324868780331e-06 - syst_JES_EtaIntercalibration_Stat81: 1.5306253321763624e-06 - syst_JES_EtaIntercalibration_Stat82: 1.4528841115927828e-06 - syst_JES_EtaIntercalibration_Stat83: 7.416687591506063e-12 - syst_JES_EtaIntercalibration_Stat84: 1.011614661267817e-10 - syst_JES_EtaIntercalibration_Stat85: 3.2750982897464315e-11 - syst_JES_EtaIntercalibration_Stat86: 6.023031854473293e-14 - syst_JES_EtaIntercalibration_Stat87: 8.874162312579142e-15 - syst_JES_EtaIntercalibration_Stat88: 2.1433854949290833e-11 - syst_JES_EtaIntercalibration_Stat89: 2.4736928199556226e-08 - syst_JES_EtaIntercalibration_Stat9: 1.7579029558183809e-12 - syst_JES_EtaIntercalibration_Stat90: 2.4148997136941318e-08 - syst_JES_EtaIntercalibration_Stat91: 8.195718074092105e-10 - syst_JES_EtaIntercalibration_Stat92: 3.3124432224077433e-09 - syst_JES_EtaIntercalibration_Stat93: 3.8590122819250004e-06 - syst_JES_EtaIntercalibration_Stat94: 3.636123313365486e-06 - syst_JES_EtaIntercalibration_Stat95: 5.985956314574973e-06 - syst_JES_EtaIntercalibration_Stat96: 2.3218585749082565e-06 - syst_JES_EtaIntercalibration_Stat97: 2.5927352558253995e-08 - syst_JES_EtaIntercalibration_Stat98: 4.035803606470464e-09 - syst_JES_EtaIntercalibration_Stat99: 4.276439757555342e-06 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.00536860361267248 - syst_JES_Flavour_Comp: 0.017220092914964194 - syst_JES_Flavour_Response: 0.013949892257648443 - syst_JES_Gjet_Generator: 0.03311609578437652 - syst_JES_Gjet_OOC: 0.02514175411541526 - syst_JES_Gjet_Purity: 0.007799146684093075 - syst_JES_Gjet_Stat1: 3.059232256629104e-05 - syst_JES_Gjet_Stat10: 0.0011242185852849082 - syst_JES_Gjet_Stat11: 0.0016710053859877291 - syst_JES_Gjet_Stat12: 0.0043081702612594135 - syst_JES_Gjet_Stat13: 0.006148775548838972 - syst_JES_Gjet_Stat14: 0.0032136862012337175 - syst_JES_Gjet_Stat15: 0.001161153917445917 - syst_JES_Gjet_Stat2: 9.886138983445458e-05 - syst_JES_Gjet_Stat3: 9.312500026845639e-05 - syst_JES_Gjet_Stat4: 0.00012865813268794944 - syst_JES_Gjet_Stat5: 0.00012953079306481528 - syst_JES_Gjet_Stat6: 0.0005493517702711079 - syst_JES_Gjet_Stat7: 0.0003835034680416854 - syst_JES_Gjet_Stat8: 0.00022593751348547674 - syst_JES_Gjet_Stat9: 0.0006672034378658432 - syst_JES_Gjet_Veto: 0.01799573491136164 - syst_JES_Gjet_dPhi: 0.002279722077359431 - syst_JES_LArESZee: 0.04788780925246007 - syst_JES_LArEsmear: 0.003937600440623705 - syst_JES_LAr_JVT: 0.00490750616403077 - syst_JES_MJB_Alpha: 0.00042405514676749297 - syst_JES_MJB_Asym: 0.0017991422956509027 - syst_JES_MJB_Beta: 0.00014158055904678438 - syst_JES_MJB_Fragmentation: 0.005245529787352275 - syst_JES_MJB_Stat1: 0.00018330811984197535 - syst_JES_MJB_Stat10: 2.040154432267322e-05 - syst_JES_MJB_Stat11: 5.142520466658349e-05 - syst_JES_MJB_Stat12: 2.658697882422898e-05 - syst_JES_MJB_Stat13: 1.8261370341515996e-05 - syst_JES_MJB_Stat14: 9.021556115770713e-06 - syst_JES_MJB_Stat15: 5.279048280703634e-06 - syst_JES_MJB_Stat16: 8.242358324533096e-06 - syst_JES_MJB_Stat2: 0.0005579586621560776 - syst_JES_MJB_Stat3: 0.00041871812415991737 - syst_JES_MJB_Stat4: 0.00031419958290869834 - syst_JES_MJB_Stat5: 7.166096008287915e-05 - syst_JES_MJB_Stat6: 0.00012546922732985168 - syst_JES_MJB_Stat7: 8.099217431332487e-05 - syst_JES_MJB_Stat8: 1.9978310739399365e-05 - syst_JES_MJB_Stat9: 6.203886523784908e-05 - syst_JES_MJB_Threshold: 0.0024171195150426467 - syst_JES_Pileup_MuOffset: 0.004578725231983243 - syst_JES_Pileup_NPVOffset: 0.004901022622881881 - syst_JES_Pileup_Pt_term: 0.005820363562527688 - syst_JES_Pileup_Rho_topology: 0.010425165358400797 - syst_JES_PunchThrough_MC15: 0.0012462661272777979 - syst_JES_SingleParticle_HighPt: 1.1896364486682475e-05 - syst_JES_Zjet_MC: 0.023485052160895872 - syst_JES_Zjet_MuScale: 0.001611842036305047 - syst_JES_Zjet_MuSmearID: 0.000287242140884655 - syst_JES_Zjet_MuSmearMS: 0.00627914333328998 - syst_JES_Zjet_OOC: 0.009787010102682025 - syst_JES_Zjet_Stat1: 0.00037591871870791435 - syst_JES_Zjet_Stat10: 0.0010071605768198037 - syst_JES_Zjet_Stat11: 0.0011435917748480004 - syst_JES_Zjet_Stat12: 0.00592890906912899 - syst_JES_Zjet_Stat13: 0.0061983463117189575 - syst_JES_Zjet_Stat2: 7.437742853177972e-05 - syst_JES_Zjet_Stat3: 0.0002148511698827819 - syst_JES_Zjet_Stat4: 0.000151525630422711 - syst_JES_Zjet_Stat5: 0.00017518911010676436 - syst_JES_Zjet_Stat6: 0.0002756518592355219 - syst_JES_Zjet_Stat7: 0.000175038737641129 - syst_JES_Zjet_Stat8: 0.00024434774400431856 - syst_JES_Zjet_Stat9: 0.0005515849413281694 - syst_JES_Zjet_Veto: 0.0022889064528722005 - syst_JES_Zjet_dPhi: 0.0019239523772692504 + syst_JER_NP8: 6.00810860e-04 + syst_JES_EtaIntercalibration_Modelling: 3.22313120e-02 + syst_JES_EtaIntercalibration_NonClosure: 1.46414399e-03 + syst_JES_EtaIntercalibration_Stat0: 1.44914464e-14 + syst_JES_EtaIntercalibration_Stat1: 9.58562334e-15 + syst_JES_EtaIntercalibration_Stat10: 1.45352947e-14 + syst_JES_EtaIntercalibration_Stat100: 5.61561594e-06 + syst_JES_EtaIntercalibration_Stat101: 8.90114494e-08 + syst_JES_EtaIntercalibration_Stat102: 1.42675712e-06 + syst_JES_EtaIntercalibration_Stat103: 1.44402740e-06 + syst_JES_EtaIntercalibration_Stat104: 3.14330226e-09 + syst_JES_EtaIntercalibration_Stat105: 5.02258911e-07 + syst_JES_EtaIntercalibration_Stat106: 3.09526086e-08 + syst_JES_EtaIntercalibration_Stat107: 1.11062584e-15 + syst_JES_EtaIntercalibration_Stat108: 1.79715419e-08 + syst_JES_EtaIntercalibration_Stat109: 7.27318382e-06 + syst_JES_EtaIntercalibration_Stat11: 1.01840515e-13 + syst_JES_EtaIntercalibration_Stat110: 8.92449339e-06 + syst_JES_EtaIntercalibration_Stat111: 3.17047640e-06 + syst_JES_EtaIntercalibration_Stat112: 2.99180171e-05 + syst_JES_EtaIntercalibration_Stat113: 3.69978607e-06 + syst_JES_EtaIntercalibration_Stat114: 1.06544430e-05 + syst_JES_EtaIntercalibration_Stat115: 1.50139048e-06 + syst_JES_EtaIntercalibration_Stat116: 2.43180319e-06 + syst_JES_EtaIntercalibration_Stat117: 1.24519091e-06 + syst_JES_EtaIntercalibration_Stat118: 3.81804200e-06 + syst_JES_EtaIntercalibration_Stat119: 7.04834156e-06 + syst_JES_EtaIntercalibration_Stat12: 1.99875100e-11 + syst_JES_EtaIntercalibration_Stat120: 7.49507238e-06 + syst_JES_EtaIntercalibration_Stat121: 7.42858128e-07 + syst_JES_EtaIntercalibration_Stat122: 1.86720170e-06 + syst_JES_EtaIntercalibration_Stat123: 8.77936073e-06 + syst_JES_EtaIntercalibration_Stat124: 3.06576214e-05 + syst_JES_EtaIntercalibration_Stat125: 1.32582016e-06 + syst_JES_EtaIntercalibration_Stat126: 7.14647499e-07 + syst_JES_EtaIntercalibration_Stat127: 1.74850529e-15 + syst_JES_EtaIntercalibration_Stat128: 3.32130188e-06 + syst_JES_EtaIntercalibration_Stat129: 2.81588375e-05 + syst_JES_EtaIntercalibration_Stat13: 5.54676113e-14 + syst_JES_EtaIntercalibration_Stat130: 4.69948155e-05 + syst_JES_EtaIntercalibration_Stat131: 5.66456713e-05 + syst_JES_EtaIntercalibration_Stat132: 1.07505431e-05 + syst_JES_EtaIntercalibration_Stat133: 5.50650987e-05 + syst_JES_EtaIntercalibration_Stat134: 6.60058821e-05 + syst_JES_EtaIntercalibration_Stat135: 1.15584230e-05 + syst_JES_EtaIntercalibration_Stat136: 5.44843942e-05 + syst_JES_EtaIntercalibration_Stat137: 4.36234478e-05 + syst_JES_EtaIntercalibration_Stat138: 6.68120310e-05 + syst_JES_EtaIntercalibration_Stat139: 2.08866392e-05 + syst_JES_EtaIntercalibration_Stat14: 5.54761725e-14 + syst_JES_EtaIntercalibration_Stat140: 4.44620061e-05 + syst_JES_EtaIntercalibration_Stat141: 6.04041795e-05 + syst_JES_EtaIntercalibration_Stat142: 4.82891737e-05 + syst_JES_EtaIntercalibration_Stat143: 3.22440245e-05 + syst_JES_EtaIntercalibration_Stat144: 5.82740225e-05 + syst_JES_EtaIntercalibration_Stat145: 4.41077442e-06 + syst_JES_EtaIntercalibration_Stat146: 1.62945781e-05 + syst_JES_EtaIntercalibration_Stat147: 6.61563137e-05 + syst_JES_EtaIntercalibration_Stat148: 2.45559630e-05 + syst_JES_EtaIntercalibration_Stat149: 4.76920190e-05 + syst_JES_EtaIntercalibration_Stat15: 8.16195081e-14 + syst_JES_EtaIntercalibration_Stat150: 9.21998033e-06 + syst_JES_EtaIntercalibration_Stat151: 3.38750096e-05 + syst_JES_EtaIntercalibration_Stat152: 9.50116640e-05 + syst_JES_EtaIntercalibration_Stat153: 4.89978917e-05 + syst_JES_EtaIntercalibration_Stat154: 4.75771894e-05 + syst_JES_EtaIntercalibration_Stat155: 5.51871021e-05 + syst_JES_EtaIntercalibration_Stat156: 8.90880333e-05 + syst_JES_EtaIntercalibration_Stat157: 2.73887678e-05 + syst_JES_EtaIntercalibration_Stat158: 5.43080040e-05 + syst_JES_EtaIntercalibration_Stat159: 4.59993109e-05 + syst_JES_EtaIntercalibration_Stat16: 9.01404699e-15 + syst_JES_EtaIntercalibration_Stat160: 9.42102504e-06 + syst_JES_EtaIntercalibration_Stat161: 8.80451025e-05 + syst_JES_EtaIntercalibration_Stat162: 8.03598333e-05 + syst_JES_EtaIntercalibration_Stat163: 2.99311296e-05 + syst_JES_EtaIntercalibration_Stat164: 6.27842062e-05 + syst_JES_EtaIntercalibration_Stat165: 1.18204547e-06 + syst_JES_EtaIntercalibration_Stat166: 8.30057884e-05 + syst_JES_EtaIntercalibration_Stat167: 8.38373948e-05 + syst_JES_EtaIntercalibration_Stat168: 1.32382018e-04 + syst_JES_EtaIntercalibration_Stat169: 1.47484126e-04 + syst_JES_EtaIntercalibration_Stat17: 1.46637767e-14 + syst_JES_EtaIntercalibration_Stat170: 1.96255032e-04 + syst_JES_EtaIntercalibration_Stat171: 1.48919615e-04 + syst_JES_EtaIntercalibration_Stat172: 1.32635912e-04 + syst_JES_EtaIntercalibration_Stat173: 2.06465002e-04 + syst_JES_EtaIntercalibration_Stat174: 1.90195207e-04 + syst_JES_EtaIntercalibration_Stat175: 1.96383859e-04 + syst_JES_EtaIntercalibration_Stat176: 9.92224340e-05 + syst_JES_EtaIntercalibration_Stat177: 8.11637197e-05 + syst_JES_EtaIntercalibration_Stat178: 1.09725208e-04 + syst_JES_EtaIntercalibration_Stat179: 1.37665902e-04 + syst_JES_EtaIntercalibration_Stat18: 1.44914464e-14 + syst_JES_EtaIntercalibration_Stat180: 7.96862918e-05 + syst_JES_EtaIntercalibration_Stat181: 3.10296902e-05 + syst_JES_EtaIntercalibration_Stat182: 2.97148465e-04 + syst_JES_EtaIntercalibration_Stat183: 1.12652585e-04 + syst_JES_EtaIntercalibration_Stat184: 3.60962089e-04 + syst_JES_EtaIntercalibration_Stat185: 3.25564085e-04 + syst_JES_EtaIntercalibration_Stat186: 4.03785289e-04 + syst_JES_EtaIntercalibration_Stat187: 6.38582201e-04 + syst_JES_EtaIntercalibration_Stat188: 4.60325722e-04 + syst_JES_EtaIntercalibration_Stat189: 6.23695990e-04 + syst_JES_EtaIntercalibration_Stat19: 7.82677801e-14 + syst_JES_EtaIntercalibration_Stat190: 2.14902548e-04 + syst_JES_EtaIntercalibration_Stat191: 6.67784703e-04 + syst_JES_EtaIntercalibration_Stat192: 6.08823226e-04 + syst_JES_EtaIntercalibration_Stat193: 4.72353308e-04 + syst_JES_EtaIntercalibration_Stat194: 4.21927577e-04 + syst_JES_EtaIntercalibration_Stat195: 1.76014673e-04 + syst_JES_EtaIntercalibration_Stat196: 3.31086767e-04 + syst_JES_EtaIntercalibration_Stat197: 3.08166741e-04 + syst_JES_EtaIntercalibration_Stat198: 2.79548685e-04 + syst_JES_EtaIntercalibration_Stat199: 2.32906473e-04 + syst_JES_EtaIntercalibration_Stat2: 1.24382936e-14 + syst_JES_EtaIntercalibration_Stat20: 1.44914464e-14 + syst_JES_EtaIntercalibration_Stat200: 3.98190620e-04 + syst_JES_EtaIntercalibration_Stat201: 4.58586816e-04 + syst_JES_EtaIntercalibration_Stat202: 6.52884806e-04 + syst_JES_EtaIntercalibration_Stat203: 6.97069356e-04 + syst_JES_EtaIntercalibration_Stat204: 5.43113248e-04 + syst_JES_EtaIntercalibration_Stat205: 4.20065626e-04 + syst_JES_EtaIntercalibration_Stat206: 6.48495574e-04 + syst_JES_EtaIntercalibration_Stat207: 4.77145206e-04 + syst_JES_EtaIntercalibration_Stat208: 5.12021355e-04 + syst_JES_EtaIntercalibration_Stat209: 3.68598921e-04 + syst_JES_EtaIntercalibration_Stat21: 1.44914464e-14 + syst_JES_EtaIntercalibration_Stat210: 2.39927552e-04 + syst_JES_EtaIntercalibration_Stat211: 3.18036507e-04 + syst_JES_EtaIntercalibration_Stat212: 7.25634743e-05 + syst_JES_EtaIntercalibration_Stat213: 2.43616783e-05 + syst_JES_EtaIntercalibration_Stat214: 2.03504005e-04 + syst_JES_EtaIntercalibration_Stat215: 2.19138877e-04 + syst_JES_EtaIntercalibration_Stat216: 1.24655173e-04 + syst_JES_EtaIntercalibration_Stat217: 1.54563295e-04 + syst_JES_EtaIntercalibration_Stat218: 2.07390572e-04 + syst_JES_EtaIntercalibration_Stat219: 2.24287377e-04 + syst_JES_EtaIntercalibration_Stat22: 1.44914464e-14 + syst_JES_EtaIntercalibration_Stat220: 1.11057046e-04 + syst_JES_EtaIntercalibration_Stat221: 8.17843107e-05 + syst_JES_EtaIntercalibration_Stat222: 3.09050422e-06 + syst_JES_EtaIntercalibration_Stat223: 4.68543840e-05 + syst_JES_EtaIntercalibration_Stat224: 3.38338392e-05 + syst_JES_EtaIntercalibration_Stat225: 5.76931649e-05 + syst_JES_EtaIntercalibration_Stat226: 5.64220693e-05 + syst_JES_EtaIntercalibration_Stat227: 4.03232729e-05 + syst_JES_EtaIntercalibration_Stat228: 9.70090089e-05 + syst_JES_EtaIntercalibration_Stat229: 1.38821073e-04 + syst_JES_EtaIntercalibration_Stat23: 4.36092141e-13 + syst_JES_EtaIntercalibration_Stat230: 1.03768677e-04 + syst_JES_EtaIntercalibration_Stat231: 2.81592272e-05 + syst_JES_EtaIntercalibration_Stat232: 5.12240869e-05 + syst_JES_EtaIntercalibration_Stat233: 2.44325045e-05 + syst_JES_EtaIntercalibration_Stat234: 1.08858979e-05 + syst_JES_EtaIntercalibration_Stat235: 1.40902333e-05 + syst_JES_EtaIntercalibration_Stat236: 8.79652483e-06 + syst_JES_EtaIntercalibration_Stat237: 6.78989107e-06 + syst_JES_EtaIntercalibration_Stat238: 6.48523307e-06 + syst_JES_EtaIntercalibration_Stat239: 1.47038967e-05 + syst_JES_EtaIntercalibration_Stat24: 2.16704284e-11 + syst_JES_EtaIntercalibration_Stat240: 8.85123093e-06 + syst_JES_EtaIntercalibration_Stat241: 4.23919435e-08 + syst_JES_EtaIntercalibration_Stat242: 5.37201994e-06 + syst_JES_EtaIntercalibration_Stat243: 5.52081190e-06 + syst_JES_EtaIntercalibration_Stat244: 1.28150975e-06 + syst_JES_EtaIntercalibration_Stat245: 1.19332009e-05 + syst_JES_EtaIntercalibration_Stat25: 2.06990739e-11 + syst_JES_EtaIntercalibration_Stat26: 1.00673591e-13 + syst_JES_EtaIntercalibration_Stat27: 1.86896979e-11 + syst_JES_EtaIntercalibration_Stat28: 1.60993402e-12 + syst_JES_EtaIntercalibration_Stat29: 2.61041204e-11 + syst_JES_EtaIntercalibration_Stat3: 2.07528185e-14 + syst_JES_EtaIntercalibration_Stat30: 2.23161503e-11 + syst_JES_EtaIntercalibration_Stat31: 3.84605194e-06 + syst_JES_EtaIntercalibration_Stat32: 3.97939978e-06 + syst_JES_EtaIntercalibration_Stat33: 1.12633511e-11 + syst_JES_EtaIntercalibration_Stat34: 2.00469083e-10 + syst_JES_EtaIntercalibration_Stat35: 2.56689972e-06 + syst_JES_EtaIntercalibration_Stat36: 4.72984680e-10 + syst_JES_EtaIntercalibration_Stat37: 4.40997236e-10 + syst_JES_EtaIntercalibration_Stat38: 8.49996122e-11 + syst_JES_EtaIntercalibration_Stat39: 8.92525781e-11 + syst_JES_EtaIntercalibration_Stat4: 9.58562334e-15 + syst_JES_EtaIntercalibration_Stat40: 1.88398542e-12 + syst_JES_EtaIntercalibration_Stat41: 3.59375396e-15 + syst_JES_EtaIntercalibration_Stat42: 4.64103014e-14 + syst_JES_EtaIntercalibration_Stat43: 1.44914464e-14 + syst_JES_EtaIntercalibration_Stat44: 1.44914464e-14 + syst_JES_EtaIntercalibration_Stat45: 1.24382936e-14 + syst_JES_EtaIntercalibration_Stat46: 1.48936038e-11 + syst_JES_EtaIntercalibration_Stat47: 4.80413193e-10 + syst_JES_EtaIntercalibration_Stat48: 2.29361311e-11 + syst_JES_EtaIntercalibration_Stat49: 4.07425329e-11 + syst_JES_EtaIntercalibration_Stat5: 8.87416231e-15 + syst_JES_EtaIntercalibration_Stat50: 3.84602701e-06 + syst_JES_EtaIntercalibration_Stat51: 1.18884650e-10 + syst_JES_EtaIntercalibration_Stat52: 2.85247508e-11 + syst_JES_EtaIntercalibration_Stat53: 3.84794553e-06 + syst_JES_EtaIntercalibration_Stat54: 3.84518117e-06 + syst_JES_EtaIntercalibration_Stat55: 4.56115861e-11 + syst_JES_EtaIntercalibration_Stat56: 3.21241038e-10 + syst_JES_EtaIntercalibration_Stat57: 2.09597710e-06 + syst_JES_EtaIntercalibration_Stat58: 1.02691995e-09 + syst_JES_EtaIntercalibration_Stat59: 5.40659621e-10 + syst_JES_EtaIntercalibration_Stat6: 1.15356491e-14 + syst_JES_EtaIntercalibration_Stat60: 9.84742069e-14 + syst_JES_EtaIntercalibration_Stat61: 7.61661675e-11 + syst_JES_EtaIntercalibration_Stat62: 6.81642271e-12 + syst_JES_EtaIntercalibration_Stat63: 2.64684897e-12 + syst_JES_EtaIntercalibration_Stat64: 5.22494961e-15 + syst_JES_EtaIntercalibration_Stat65: 1.44914464e-14 + syst_JES_EtaIntercalibration_Stat66: 1.44914464e-14 + syst_JES_EtaIntercalibration_Stat67: 2.39513147e-11 + syst_JES_EtaIntercalibration_Stat68: 3.46539546e-09 + syst_JES_EtaIntercalibration_Stat69: 3.36134894e-09 + syst_JES_EtaIntercalibration_Stat7: 6.06994191e-14 + syst_JES_EtaIntercalibration_Stat70: 7.99033170e-10 + syst_JES_EtaIntercalibration_Stat71: 4.36062048e-10 + syst_JES_EtaIntercalibration_Stat72: 3.84603945e-06 + syst_JES_EtaIntercalibration_Stat73: 3.63502779e-06 + syst_JES_EtaIntercalibration_Stat74: 1.60308254e-06 + syst_JES_EtaIntercalibration_Stat75: 2.21269519e-06 + syst_JES_EtaIntercalibration_Stat76: 3.83913655e-06 + syst_JES_EtaIntercalibration_Stat77: 8.08714586e-10 + syst_JES_EtaIntercalibration_Stat78: 2.30363030e-06 + syst_JES_EtaIntercalibration_Stat79: 1.42190589e-06 + syst_JES_EtaIntercalibration_Stat8: 1.75429410e-12 + syst_JES_EtaIntercalibration_Stat80: 2.23032487e-06 + syst_JES_EtaIntercalibration_Stat81: 1.53062533e-06 + syst_JES_EtaIntercalibration_Stat82: 1.45288411e-06 + syst_JES_EtaIntercalibration_Stat83: 7.41668759e-12 + syst_JES_EtaIntercalibration_Stat84: 1.01161466e-10 + syst_JES_EtaIntercalibration_Stat85: 3.27509829e-11 + syst_JES_EtaIntercalibration_Stat86: 6.02303185e-14 + syst_JES_EtaIntercalibration_Stat87: 8.87416231e-15 + syst_JES_EtaIntercalibration_Stat88: 2.14338549e-11 + syst_JES_EtaIntercalibration_Stat89: 2.47369282e-08 + syst_JES_EtaIntercalibration_Stat9: 1.75790296e-12 + syst_JES_EtaIntercalibration_Stat90: 2.41489971e-08 + syst_JES_EtaIntercalibration_Stat91: 8.19571807e-10 + syst_JES_EtaIntercalibration_Stat92: 3.31244322e-09 + syst_JES_EtaIntercalibration_Stat93: 3.85901228e-06 + syst_JES_EtaIntercalibration_Stat94: 3.63612331e-06 + syst_JES_EtaIntercalibration_Stat95: 5.98595631e-06 + syst_JES_EtaIntercalibration_Stat96: 2.32185857e-06 + syst_JES_EtaIntercalibration_Stat97: 2.59273526e-08 + syst_JES_EtaIntercalibration_Stat98: 4.03580361e-09 + syst_JES_EtaIntercalibration_Stat99: 4.27643976e-06 + syst_JES_EtaIntercalibration_TotalStat_MJB: 5.36860361e-03 + syst_JES_Flavour_Comp: 1.72200929e-02 + syst_JES_Flavour_Response: 1.39498923e-02 + syst_JES_Gjet_Generator: 3.31160958e-02 + syst_JES_Gjet_OOC: 2.51417541e-02 + syst_JES_Gjet_Purity: 7.79914668e-03 + syst_JES_Gjet_Stat1: 3.05923226e-05 + syst_JES_Gjet_Stat10: 1.12421859e-03 + syst_JES_Gjet_Stat11: 1.67100539e-03 + syst_JES_Gjet_Stat12: 4.30817026e-03 + syst_JES_Gjet_Stat13: 6.14877555e-03 + syst_JES_Gjet_Stat14: 3.21368620e-03 + syst_JES_Gjet_Stat15: 1.16115392e-03 + syst_JES_Gjet_Stat2: 9.88613898e-05 + syst_JES_Gjet_Stat3: 9.31250003e-05 + syst_JES_Gjet_Stat4: 1.28658133e-04 + syst_JES_Gjet_Stat5: 1.29530793e-04 + syst_JES_Gjet_Stat6: 5.49351770e-04 + syst_JES_Gjet_Stat7: 3.83503468e-04 + syst_JES_Gjet_Stat8: 2.25937513e-04 + syst_JES_Gjet_Stat9: 6.67203438e-04 + syst_JES_Gjet_Veto: 1.79957349e-02 + syst_JES_Gjet_dPhi: 2.27972208e-03 + syst_JES_LArESZee: 4.78878093e-02 + syst_JES_LArEsmear: 3.93760044e-03 + syst_JES_LAr_JVT: 4.90750616e-03 + syst_JES_MJB_Alpha: 4.24055147e-04 + syst_JES_MJB_Asym: 1.79914230e-03 + syst_JES_MJB_Beta: 1.41580559e-04 + syst_JES_MJB_Fragmentation: 5.24552979e-03 + syst_JES_MJB_Stat1: 1.83308120e-04 + syst_JES_MJB_Stat10: 2.04015443e-05 + syst_JES_MJB_Stat11: 5.14252047e-05 + syst_JES_MJB_Stat12: 2.65869788e-05 + syst_JES_MJB_Stat13: 1.82613703e-05 + syst_JES_MJB_Stat14: 9.02155612e-06 + syst_JES_MJB_Stat15: 5.27904828e-06 + syst_JES_MJB_Stat16: 8.24235832e-06 + syst_JES_MJB_Stat2: 5.57958662e-04 + syst_JES_MJB_Stat3: 4.18718124e-04 + syst_JES_MJB_Stat4: 3.14199583e-04 + syst_JES_MJB_Stat5: 7.16609601e-05 + syst_JES_MJB_Stat6: 1.25469227e-04 + syst_JES_MJB_Stat7: 8.09921743e-05 + syst_JES_MJB_Stat8: 1.99783107e-05 + syst_JES_MJB_Stat9: 6.20388652e-05 + syst_JES_MJB_Threshold: 2.41711952e-03 + syst_JES_Pileup_MuOffset: 4.57872523e-03 + syst_JES_Pileup_NPVOffset: 4.90102262e-03 + syst_JES_Pileup_Pt_term: 5.82036356e-03 + syst_JES_Pileup_Rho_topology: 1.04251654e-02 + syst_JES_PunchThrough_MC15: 1.24626613e-03 + syst_JES_SingleParticle_HighPt: 1.18963645e-05 + syst_JES_Zjet_MC: 2.34850522e-02 + syst_JES_Zjet_MuScale: 1.61184204e-03 + syst_JES_Zjet_MuSmearID: 2.87242141e-04 + syst_JES_Zjet_MuSmearMS: 6.27914333e-03 + syst_JES_Zjet_OOC: 9.78701010e-03 + syst_JES_Zjet_Stat1: 3.75918719e-04 + syst_JES_Zjet_Stat10: 1.00716058e-03 + syst_JES_Zjet_Stat11: 1.14359177e-03 + syst_JES_Zjet_Stat12: 5.92890907e-03 + syst_JES_Zjet_Stat13: 6.19834631e-03 + syst_JES_Zjet_Stat2: 7.43774285e-05 + syst_JES_Zjet_Stat3: 2.14851170e-04 + syst_JES_Zjet_Stat4: 1.51525630e-04 + syst_JES_Zjet_Stat5: 1.75189110e-04 + syst_JES_Zjet_Stat6: 2.75651859e-04 + syst_JES_Zjet_Stat7: 1.75038738e-04 + syst_JES_Zjet_Stat8: 2.44347744e-04 + syst_JES_Zjet_Stat9: 5.51584941e-04 + syst_JES_Zjet_Veto: 2.28890645e-03 + syst_JES_Zjet_dPhi: 1.92395238e-03 syst_PRW: 0.0 syst_Unfolding_bias: 0.0 - syst_cleaning: 0.015268027868719653 + syst_cleaning: 1.52680279e-02 syst_lumi: 0.03469 - stat: 0.004082 - syst_JER_CROSS_CALIB_FORWARD: 3.681e-10 - syst_JER_NOISE_FORWARD: 5.238e-07 - syst_JER_NP0: 0.0015180081052155157 - syst_JER_NP1: 0.00031364277450628445 - syst_JER_NP2: 6.657444761317964e-05 - syst_JER_NP3: 0.0002730275260848254 - syst_JER_NP4: 0.00011373501780454428 - syst_JER_NP5: 0.0001247942606853376 - syst_JER_NP6: 2.2505492662903427e-27 + syst_JER_CROSS_CALIB_FORWARD: 3.68100000e-10 + syst_JER_NOISE_FORWARD: 5.23800000e-07 + syst_JER_NP0: 1.51800811e-03 + syst_JER_NP1: 3.13642775e-04 + syst_JER_NP2: 6.65744476e-05 + syst_JER_NP3: 2.73027526e-04 + syst_JER_NP4: 1.13735018e-04 + syst_JER_NP5: 1.24794261e-04 + syst_JER_NP6: 2.25054927e-27 syst_JER_NP7: 0.0 - syst_JER_NP8: 0.00029466737179402816 - syst_JES_EtaIntercalibration_Modelling: 0.019648144950605385 - syst_JES_EtaIntercalibration_NonClosure: 0.0008064552110935858 - syst_JES_EtaIntercalibration_Stat0: 9.896666509486918e-16 - syst_JES_EtaIntercalibration_Stat1: 6.3566694133012765e-16 - syst_JES_EtaIntercalibration_Stat10: 9.855178372307628e-16 - syst_JES_EtaIntercalibration_Stat100: 5.473413990574953e-06 - syst_JES_EtaIntercalibration_Stat101: 6.990841450605214e-09 - syst_JES_EtaIntercalibration_Stat102: 7.456018405791391e-07 - syst_JES_EtaIntercalibration_Stat103: 7.472552115060825e-07 - syst_JES_EtaIntercalibration_Stat104: 2.034806337222292e-10 - syst_JES_EtaIntercalibration_Stat105: 4.093698079670752e-08 - syst_JES_EtaIntercalibration_Stat106: 2.4162022123727557e-09 - syst_JES_EtaIntercalibration_Stat107: 1.0336512419573635e-16 - syst_JES_EtaIntercalibration_Stat108: 1.1803572666252368e-09 - syst_JES_EtaIntercalibration_Stat109: 4.938765197098867e-07 - syst_JES_EtaIntercalibration_Stat11: 6.569332095997279e-15 - syst_JES_EtaIntercalibration_Stat110: 1.6594042827914932e-06 - syst_JES_EtaIntercalibration_Stat111: 1.4738985718155777e-06 - syst_JES_EtaIntercalibration_Stat112: 5.826904066483333e-06 - syst_JES_EtaIntercalibration_Stat113: 4.427748976624578e-06 - syst_JES_EtaIntercalibration_Stat114: 2.682759912850943e-06 - syst_JES_EtaIntercalibration_Stat115: 2.5197916818657848e-06 - syst_JES_EtaIntercalibration_Stat116: 1.4596070532852329e-06 - syst_JES_EtaIntercalibration_Stat117: 1.400233797442413e-07 - syst_JES_EtaIntercalibration_Stat118: 1.0351365839830028e-06 - syst_JES_EtaIntercalibration_Stat119: 1.7467373099581976e-06 - syst_JES_EtaIntercalibration_Stat12: 1.1402340078575976e-12 - syst_JES_EtaIntercalibration_Stat120: 1.8305483413447456e-06 - syst_JES_EtaIntercalibration_Stat121: 5.7955563317769594e-08 - syst_JES_EtaIntercalibration_Stat122: 8.729684631725062e-07 - syst_JES_EtaIntercalibration_Stat123: 4.947012431761214e-06 - syst_JES_EtaIntercalibration_Stat124: 1.2758191672411887e-05 - syst_JES_EtaIntercalibration_Stat125: 1.6170006184290716e-07 - syst_JES_EtaIntercalibration_Stat126: 5.647664893564419e-08 - syst_JES_EtaIntercalibration_Stat127: 9.588633270701303e-16 - syst_JES_EtaIntercalibration_Stat128: 7.709898637465995e-07 - syst_JES_EtaIntercalibration_Stat129: 2.0994480920470503e-06 - syst_JES_EtaIntercalibration_Stat13: 4.024713664349304e-15 - syst_JES_EtaIntercalibration_Stat130: 8.17398966233748e-06 - syst_JES_EtaIntercalibration_Stat131: 2.189789731914916e-05 - syst_JES_EtaIntercalibration_Stat132: 2.1931163187345994e-06 - syst_JES_EtaIntercalibration_Stat133: 1.2819028161292102e-05 - syst_JES_EtaIntercalibration_Stat134: 1.8144496768993072e-05 - syst_JES_EtaIntercalibration_Stat135: 2.170003614628326e-06 - syst_JES_EtaIntercalibration_Stat136: 1.750884492906371e-05 - syst_JES_EtaIntercalibration_Stat137: 1.3798205970342667e-05 - syst_JES_EtaIntercalibration_Stat138: 1.695001553834096e-05 - syst_JES_EtaIntercalibration_Stat139: 3.2911116613539564e-06 - syst_JES_EtaIntercalibration_Stat14: 4.021284680298076e-15 - syst_JES_EtaIntercalibration_Stat140: 1.7488536438192877e-05 - syst_JES_EtaIntercalibration_Stat141: 1.8166279200760952e-05 - syst_JES_EtaIntercalibration_Stat142: 1.7446262493726268e-05 - syst_JES_EtaIntercalibration_Stat143: 4.759266829039951e-06 - syst_JES_EtaIntercalibration_Stat144: 2.1846409018417647e-05 - syst_JES_EtaIntercalibration_Stat145: 7.856193034797452e-07 - syst_JES_EtaIntercalibration_Stat146: 2.2649955297969133e-06 - syst_JES_EtaIntercalibration_Stat147: 1.611886575662196e-05 - syst_JES_EtaIntercalibration_Stat148: 3.555414849212395e-06 - syst_JES_EtaIntercalibration_Stat149: 2.2369436179752048e-05 - syst_JES_EtaIntercalibration_Stat15: 5.307399622225558e-15 - syst_JES_EtaIntercalibration_Stat150: 1.4644955471082868e-06 - syst_JES_EtaIntercalibration_Stat151: 2.332683165369871e-05 - syst_JES_EtaIntercalibration_Stat152: 3.1291230253059724e-05 - syst_JES_EtaIntercalibration_Stat153: 9.934486811481507e-06 - syst_JES_EtaIntercalibration_Stat154: 1.0227910415622538e-05 - syst_JES_EtaIntercalibration_Stat155: 2.5352875576549497e-05 - syst_JES_EtaIntercalibration_Stat156: 3.190437587541872e-05 - syst_JES_EtaIntercalibration_Stat157: 2.3224176925566167e-05 - syst_JES_EtaIntercalibration_Stat158: 1.7738441306946896e-05 - syst_JES_EtaIntercalibration_Stat159: 1.8709614339959014e-05 - syst_JES_EtaIntercalibration_Stat16: 6.153202648214993e-16 - syst_JES_EtaIntercalibration_Stat160: 1.8813626580420374e-06 - syst_JES_EtaIntercalibration_Stat161: 2.7494161198334457e-05 - syst_JES_EtaIntercalibration_Stat162: 3.364668524535515e-05 - syst_JES_EtaIntercalibration_Stat163: 1.2884129249936722e-05 - syst_JES_EtaIntercalibration_Stat164: 9.250354890894727e-06 - syst_JES_EtaIntercalibration_Stat165: 6.397522816489207e-06 - syst_JES_EtaIntercalibration_Stat166: 2.0542575301066806e-05 - syst_JES_EtaIntercalibration_Stat167: 2.5358880628884234e-05 - syst_JES_EtaIntercalibration_Stat168: 6.0860630137634946e-05 - syst_JES_EtaIntercalibration_Stat169: 5.6101125657155935e-05 - syst_JES_EtaIntercalibration_Stat17: 1.0023638199276748e-15 - syst_JES_EtaIntercalibration_Stat170: 6.603153337610751e-05 - syst_JES_EtaIntercalibration_Stat171: 3.289801220058744e-05 - syst_JES_EtaIntercalibration_Stat172: 4.351208194283514e-05 - syst_JES_EtaIntercalibration_Stat173: 5.751252944359168e-05 - syst_JES_EtaIntercalibration_Stat174: 6.649369368594289e-05 - syst_JES_EtaIntercalibration_Stat175: 6.51909265158887e-05 - syst_JES_EtaIntercalibration_Stat176: 3.074098404410633e-05 - syst_JES_EtaIntercalibration_Stat177: 1.964269329801797e-05 - syst_JES_EtaIntercalibration_Stat178: 7.722373420485489e-05 - syst_JES_EtaIntercalibration_Stat179: 6.0788914079789245e-05 - syst_JES_EtaIntercalibration_Stat18: 9.896666509486918e-16 - syst_JES_EtaIntercalibration_Stat180: 1.9864303933186285e-05 - syst_JES_EtaIntercalibration_Stat181: 3.6598233565073847e-06 - syst_JES_EtaIntercalibration_Stat182: 0.0001073730379331795 - syst_JES_EtaIntercalibration_Stat183: 5.034205672210922e-05 - syst_JES_EtaIntercalibration_Stat184: 0.0001460579018745648 - syst_JES_EtaIntercalibration_Stat185: 0.0001369231419446691 - syst_JES_EtaIntercalibration_Stat186: 9.56654100236862e-05 - syst_JES_EtaIntercalibration_Stat187: 0.0002440966765443561 - syst_JES_EtaIntercalibration_Stat188: 0.00016260995072565516 - syst_JES_EtaIntercalibration_Stat189: 0.000215597141678641 - syst_JES_EtaIntercalibration_Stat19: 5.774717974715301e-15 - syst_JES_EtaIntercalibration_Stat190: 4.591498448219274e-05 - syst_JES_EtaIntercalibration_Stat191: 0.0002961108407336685 - syst_JES_EtaIntercalibration_Stat192: 0.0002282394356810409 - syst_JES_EtaIntercalibration_Stat193: 0.00017791897032076146 - syst_JES_EtaIntercalibration_Stat194: 0.0001467047034010839 - syst_JES_EtaIntercalibration_Stat195: 6.533979396202593e-05 - syst_JES_EtaIntercalibration_Stat196: 0.00015193941786119887 - syst_JES_EtaIntercalibration_Stat197: 0.0001295044079365641 - syst_JES_EtaIntercalibration_Stat198: 0.000135330068720887 - syst_JES_EtaIntercalibration_Stat199: 8.576602051512008e-05 - syst_JES_EtaIntercalibration_Stat2: 8.810953353638867e-16 - syst_JES_EtaIntercalibration_Stat20: 9.896666509486918e-16 - syst_JES_EtaIntercalibration_Stat200: 0.00019323485063517916 - syst_JES_EtaIntercalibration_Stat201: 0.00019378391961150958 - syst_JES_EtaIntercalibration_Stat202: 0.0003364804248392468 - syst_JES_EtaIntercalibration_Stat203: 0.0003063199797597277 - syst_JES_EtaIntercalibration_Stat204: 0.00027069037718397006 - syst_JES_EtaIntercalibration_Stat205: 0.00019322008177205597 - syst_JES_EtaIntercalibration_Stat206: 0.0003246146484679951 - syst_JES_EtaIntercalibration_Stat207: 0.00026460255100811106 - syst_JES_EtaIntercalibration_Stat208: 0.000235283334513943 - syst_JES_EtaIntercalibration_Stat209: 0.00019490593134894585 - syst_JES_EtaIntercalibration_Stat21: 9.896666509486918e-16 - syst_JES_EtaIntercalibration_Stat210: 0.00011371716877850943 - syst_JES_EtaIntercalibration_Stat211: 0.00015662268697414175 - syst_JES_EtaIntercalibration_Stat212: 4.9206791197963716e-05 - syst_JES_EtaIntercalibration_Stat213: 1.3307025691340644e-05 - syst_JES_EtaIntercalibration_Stat214: 9.698515388965468e-05 - syst_JES_EtaIntercalibration_Stat215: 0.00014290728043035456 - syst_JES_EtaIntercalibration_Stat216: 0.0001259985662616841 - syst_JES_EtaIntercalibration_Stat217: 9.722461056748954e-05 - syst_JES_EtaIntercalibration_Stat218: 0.0001044732314997483 - syst_JES_EtaIntercalibration_Stat219: 0.00018302846417975538 - syst_JES_EtaIntercalibration_Stat22: 9.896666509486918e-16 - syst_JES_EtaIntercalibration_Stat220: 7.516970400367424e-05 - syst_JES_EtaIntercalibration_Stat221: 5.502304244586989e-05 - syst_JES_EtaIntercalibration_Stat222: 1.8158622130753752e-06 - syst_JES_EtaIntercalibration_Stat223: 4.217645551726698e-05 - syst_JES_EtaIntercalibration_Stat224: 2.2774048278687738e-05 - syst_JES_EtaIntercalibration_Stat225: 2.164940431051164e-05 - syst_JES_EtaIntercalibration_Stat226: 1.880339361578117e-05 - syst_JES_EtaIntercalibration_Stat227: 3.641369797205442e-05 - syst_JES_EtaIntercalibration_Stat228: 6.94145474666514e-05 - syst_JES_EtaIntercalibration_Stat229: 8.011558696658222e-05 - syst_JES_EtaIntercalibration_Stat23: 2.831212253722202e-14 - syst_JES_EtaIntercalibration_Stat230: 9.038531662139598e-05 - syst_JES_EtaIntercalibration_Stat231: 7.505605954884655e-05 - syst_JES_EtaIntercalibration_Stat232: 2.4799382089076332e-05 - syst_JES_EtaIntercalibration_Stat233: 6.005149873233807e-06 - syst_JES_EtaIntercalibration_Stat234: 2.0365232628182768e-05 - syst_JES_EtaIntercalibration_Stat235: 1.9217103709774678e-05 - syst_JES_EtaIntercalibration_Stat236: 8.868316315964379e-06 - syst_JES_EtaIntercalibration_Stat237: 6.580971109950263e-06 - syst_JES_EtaIntercalibration_Stat238: 7.48661846229658e-06 - syst_JES_EtaIntercalibration_Stat239: 9.771908616027885e-06 - syst_JES_EtaIntercalibration_Stat24: 1.2315797690365005e-12 - syst_JES_EtaIntercalibration_Stat240: 7.493663595331725e-06 - syst_JES_EtaIntercalibration_Stat241: 1.7606296458937635e-06 - syst_JES_EtaIntercalibration_Stat242: 8.42899178475694e-07 - syst_JES_EtaIntercalibration_Stat243: 8.835491879346616e-06 - syst_JES_EtaIntercalibration_Stat244: 4.033459181335545e-06 - syst_JES_EtaIntercalibration_Stat245: 8.703009307130495e-06 - syst_JES_EtaIntercalibration_Stat25: 1.1825361496377182e-12 - syst_JES_EtaIntercalibration_Stat26: 6.450101500557957e-15 - syst_JES_EtaIntercalibration_Stat27: 1.051105906178345e-12 - syst_JES_EtaIntercalibration_Stat28: 9.557361472053884e-14 - syst_JES_EtaIntercalibration_Stat29: 1.4877265978666913e-12 - syst_JES_EtaIntercalibration_Stat3: 1.5009938607469387e-15 - syst_JES_EtaIntercalibration_Stat30: 1.2628293115065076e-12 - syst_JES_EtaIntercalibration_Stat31: 7.777793030925152e-07 - syst_JES_EtaIntercalibration_Stat32: 7.881704633254934e-07 - syst_JES_EtaIntercalibration_Stat33: 5.999521338798621e-13 - syst_JES_EtaIntercalibration_Stat34: 1.1424366360984751e-11 - syst_JES_EtaIntercalibration_Stat35: 1.3908368211099404e-06 - syst_JES_EtaIntercalibration_Stat36: 2.7593279381037694e-11 - syst_JES_EtaIntercalibration_Stat37: 2.4682966427009065e-11 - syst_JES_EtaIntercalibration_Stat38: 4.827447669317607e-12 - syst_JES_EtaIntercalibration_Stat39: 5.067980662946535e-12 - syst_JES_EtaIntercalibration_Stat4: 6.3566694133012765e-16 - syst_JES_EtaIntercalibration_Stat40: 1.1359809153326476e-13 - syst_JES_EtaIntercalibration_Stat41: 3.1841537600279293e-16 - syst_JES_EtaIntercalibration_Stat42: 3.3952525955368913e-15 - syst_JES_EtaIntercalibration_Stat43: 9.896666509486918e-16 - syst_JES_EtaIntercalibration_Stat44: 9.896666509486918e-16 - syst_JES_EtaIntercalibration_Stat45: 8.810953353638867e-16 - syst_JES_EtaIntercalibration_Stat46: 8.107432457985696e-13 - syst_JES_EtaIntercalibration_Stat47: 2.8033958991730016e-11 - syst_JES_EtaIntercalibration_Stat48: 1.2987252597451086e-12 - syst_JES_EtaIntercalibration_Stat49: 2.2944280861905437e-12 - syst_JES_EtaIntercalibration_Stat5: 6.060445775683501e-16 - syst_JES_EtaIntercalibration_Stat50: 7.777778784634994e-07 - syst_JES_EtaIntercalibration_Stat51: 6.739413976749016e-12 - syst_JES_EtaIntercalibration_Stat52: 1.6343803244884588e-12 - syst_JES_EtaIntercalibration_Stat53: 7.779016246769253e-07 - syst_JES_EtaIntercalibration_Stat54: 7.776924338115002e-07 - syst_JES_EtaIntercalibration_Stat55: 2.520284769624258e-12 - syst_JES_EtaIntercalibration_Stat56: 1.8752583202055125e-11 - syst_JES_EtaIntercalibration_Stat57: 1.2103684701847435e-06 - syst_JES_EtaIntercalibration_Stat58: 5.99950370864124e-11 - syst_JES_EtaIntercalibration_Stat59: 3.160065599079076e-11 - syst_JES_EtaIntercalibration_Stat6: 8.30708148208503e-16 - syst_JES_EtaIntercalibration_Stat60: 7.43340397176825e-15 - syst_JES_EtaIntercalibration_Stat61: 4.338038285619434e-12 - syst_JES_EtaIntercalibration_Stat62: 4.068818112179506e-13 - syst_JES_EtaIntercalibration_Stat63: 1.5669298840757742e-13 - syst_JES_EtaIntercalibration_Stat64: 3.9764696739067435e-16 - syst_JES_EtaIntercalibration_Stat65: 9.896666509486918e-16 - syst_JES_EtaIntercalibration_Stat66: 9.896666509486918e-16 - syst_JES_EtaIntercalibration_Stat67: 1.3778232724119592e-12 - syst_JES_EtaIntercalibration_Stat68: 2.2106923276430846e-10 - syst_JES_EtaIntercalibration_Stat69: 2.1801942132525717e-10 - syst_JES_EtaIntercalibration_Stat7: 3.933492367794807e-15 - syst_JES_EtaIntercalibration_Stat70: 4.6563534015364424e-11 - syst_JES_EtaIntercalibration_Stat71: 2.5341319519709306e-11 - syst_JES_EtaIntercalibration_Stat72: 7.776919391885341e-07 - syst_JES_EtaIntercalibration_Stat73: 9.207697106225856e-07 - syst_JES_EtaIntercalibration_Stat74: 8.238770319527658e-07 - syst_JES_EtaIntercalibration_Stat75: 1.1985791803150947e-06 - syst_JES_EtaIntercalibration_Stat76: 7.742293249719329e-07 - syst_JES_EtaIntercalibration_Stat77: 4.7196798089568534e-11 - syst_JES_EtaIntercalibration_Stat78: 1.2479427855145192e-06 - syst_JES_EtaIntercalibration_Stat79: 3.5785855938205534e-07 - syst_JES_EtaIntercalibration_Stat8: 1.043286902438634e-13 - syst_JES_EtaIntercalibration_Stat80: 1.2240549701321098e-06 - syst_JES_EtaIntercalibration_Stat81: 6.703252508111268e-07 - syst_JES_EtaIntercalibration_Stat82: 7.476496641190762e-07 - syst_JES_EtaIntercalibration_Stat83: 4.823642524845721e-13 - syst_JES_EtaIntercalibration_Stat84: 5.766498909971283e-12 - syst_JES_EtaIntercalibration_Stat85: 1.861826336557736e-12 - syst_JES_EtaIntercalibration_Stat86: 3.872860431257497e-15 - syst_JES_EtaIntercalibration_Stat87: 6.060445775683501e-16 - syst_JES_EtaIntercalibration_Stat88: 1.222284112020907e-12 - syst_JES_EtaIntercalibration_Stat89: 1.929786405875013e-09 - syst_JES_EtaIntercalibration_Stat9: 1.0436733836191282e-13 - syst_JES_EtaIntercalibration_Stat90: 1.8755606976848285e-09 - syst_JES_EtaIntercalibration_Stat91: 4.786901522644894e-11 - syst_JES_EtaIntercalibration_Stat92: 2.1452447412824485e-10 - syst_JES_EtaIntercalibration_Stat93: 7.78073118304358e-07 - syst_JES_EtaIntercalibration_Stat94: 8.875593205527166e-07 - syst_JES_EtaIntercalibration_Stat95: 1.2407681975292565e-06 - syst_JES_EtaIntercalibration_Stat96: 1.2582860465915003e-06 - syst_JES_EtaIntercalibration_Stat97: 2.0135055694174278e-09 - syst_JES_EtaIntercalibration_Stat98: 2.567719086563014e-10 - syst_JES_EtaIntercalibration_Stat99: 2.32550010750376e-06 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.003433552387833918 - syst_JES_Flavour_Comp: 0.010850293671140888 - syst_JES_Flavour_Response: 0.0060806527610117655 - syst_JES_Gjet_Generator: 0.018480716301052833 - syst_JES_Gjet_OOC: 0.014290660192937206 - syst_JES_Gjet_Purity: 0.004142827416149507 - syst_JES_Gjet_Stat1: 2.3240291236342115e-05 - syst_JES_Gjet_Stat10: 0.0005266225498400158 - syst_JES_Gjet_Stat11: 0.0007450255079525801 - syst_JES_Gjet_Stat12: 0.0020550569335179014 - syst_JES_Gjet_Stat13: 0.0038154143035193434 - syst_JES_Gjet_Stat14: 0.0033685088689210836 - syst_JES_Gjet_Stat15: 0.0005485279459608235 - syst_JES_Gjet_Stat2: 5.607219631867473e-05 - syst_JES_Gjet_Stat3: 6.228206543620723e-05 - syst_JES_Gjet_Stat4: 7.283822536965052e-05 - syst_JES_Gjet_Stat5: 7.255713662349141e-05 - syst_JES_Gjet_Stat6: 0.0003038411635624772 - syst_JES_Gjet_Stat7: 0.00022588441181276765 - syst_JES_Gjet_Stat8: 0.00011947851972216598 - syst_JES_Gjet_Stat9: 0.0002951854163064293 - syst_JES_Gjet_Veto: 0.011280053324342044 - syst_JES_Gjet_dPhi: 0.0012959056215635458 - syst_JES_LArESZee: 0.027187784021504954 - syst_JES_LArEsmear: 0.002103190195869123 - syst_JES_LAr_JVT: 0.0026783588258483962 - syst_JES_MJB_Alpha: 0.00018732583911462936 - syst_JES_MJB_Asym: 0.0010465260663261092 - syst_JES_MJB_Beta: 0.00010518986548142364 - syst_JES_MJB_Fragmentation: 0.0028403383601254264 - syst_JES_MJB_Stat1: 9.857586760967412e-05 - syst_JES_MJB_Stat10: 2.0309933203976817e-05 - syst_JES_MJB_Stat11: 2.193971127316857e-05 - syst_JES_MJB_Stat12: 2.9574212618428236e-05 - syst_JES_MJB_Stat13: 2.652177737256687e-05 - syst_JES_MJB_Stat14: 1.4836936568914758e-05 - syst_JES_MJB_Stat15: 8.750073871116746e-06 - syst_JES_MJB_Stat16: 3.2423605598390813e-06 - syst_JES_MJB_Stat2: 0.00024162476590780174 - syst_JES_MJB_Stat3: 0.00023820974539258465 - syst_JES_MJB_Stat4: 0.00015414475558707795 - syst_JES_MJB_Stat5: 6.064653720535081e-05 - syst_JES_MJB_Stat6: 8.585474171529492e-05 - syst_JES_MJB_Stat7: 5.930376969468299e-05 - syst_JES_MJB_Stat8: 4.99768513914192e-05 - syst_JES_MJB_Stat9: 6.679062359343561e-05 - syst_JES_MJB_Threshold: 0.0013765194804288095 - syst_JES_Pileup_MuOffset: 0.002762844005730327 - syst_JES_Pileup_NPVOffset: 0.002880264354186956 - syst_JES_Pileup_Pt_term: 0.0032481352727372673 - syst_JES_Pileup_Rho_topology: 0.0057036367345755816 - syst_JES_PunchThrough_MC15: 0.0008398155437356468 - syst_JES_SingleParticle_HighPt: 6.443156990171821e-06 - syst_JES_Zjet_MC: 0.011650298794451583 - syst_JES_Zjet_MuScale: 0.0008360488143643288 - syst_JES_Zjet_MuSmearID: 0.00016424784564797188 - syst_JES_Zjet_MuSmearMS: 0.003204680444287698 - syst_JES_Zjet_OOC: 0.005198138392732536 - syst_JES_Zjet_Stat1: 0.00025155967482885647 - syst_JES_Zjet_Stat10: 0.0005058109009303774 - syst_JES_Zjet_Stat11: 0.0006059277432169614 - syst_JES_Zjet_Stat12: 0.002554376244800284 - syst_JES_Zjet_Stat13: 0.0033566252024913356 - syst_JES_Zjet_Stat2: 3.8228138850851736e-05 - syst_JES_Zjet_Stat3: 0.0001691044375526556 - syst_JES_Zjet_Stat4: 9.683538299609292e-05 - syst_JES_Zjet_Stat5: 0.00010910778650032271 - syst_JES_Zjet_Stat6: 0.0001656273174932203 - syst_JES_Zjet_Stat7: 0.00010509168889593506 - syst_JES_Zjet_Stat8: 0.00013399156344710662 - syst_JES_Zjet_Stat9: 0.00031623653726285336 - syst_JES_Zjet_Veto: 0.0011747024591359293 - syst_JES_Zjet_dPhi: 0.0009914339047561367 + syst_JER_NP8: 2.94667372e-04 + syst_JES_EtaIntercalibration_Modelling: 1.96481450e-02 + syst_JES_EtaIntercalibration_NonClosure: 8.06455211e-04 + syst_JES_EtaIntercalibration_Stat0: 9.89666651e-16 + syst_JES_EtaIntercalibration_Stat1: 6.35666941e-16 + syst_JES_EtaIntercalibration_Stat10: 9.85517837e-16 + syst_JES_EtaIntercalibration_Stat100: 5.47341399e-06 + syst_JES_EtaIntercalibration_Stat101: 6.99084145e-09 + syst_JES_EtaIntercalibration_Stat102: 7.45601841e-07 + syst_JES_EtaIntercalibration_Stat103: 7.47255212e-07 + syst_JES_EtaIntercalibration_Stat104: 2.03480634e-10 + syst_JES_EtaIntercalibration_Stat105: 4.09369808e-08 + syst_JES_EtaIntercalibration_Stat106: 2.41620221e-09 + syst_JES_EtaIntercalibration_Stat107: 1.03365124e-16 + syst_JES_EtaIntercalibration_Stat108: 1.18035727e-09 + syst_JES_EtaIntercalibration_Stat109: 4.93876520e-07 + syst_JES_EtaIntercalibration_Stat11: 6.56933210e-15 + syst_JES_EtaIntercalibration_Stat110: 1.65940428e-06 + syst_JES_EtaIntercalibration_Stat111: 1.47389857e-06 + syst_JES_EtaIntercalibration_Stat112: 5.82690407e-06 + syst_JES_EtaIntercalibration_Stat113: 4.42774898e-06 + syst_JES_EtaIntercalibration_Stat114: 2.68275991e-06 + syst_JES_EtaIntercalibration_Stat115: 2.51979168e-06 + syst_JES_EtaIntercalibration_Stat116: 1.45960705e-06 + syst_JES_EtaIntercalibration_Stat117: 1.40023380e-07 + syst_JES_EtaIntercalibration_Stat118: 1.03513658e-06 + syst_JES_EtaIntercalibration_Stat119: 1.74673731e-06 + syst_JES_EtaIntercalibration_Stat12: 1.14023401e-12 + syst_JES_EtaIntercalibration_Stat120: 1.83054834e-06 + syst_JES_EtaIntercalibration_Stat121: 5.79555633e-08 + syst_JES_EtaIntercalibration_Stat122: 8.72968463e-07 + syst_JES_EtaIntercalibration_Stat123: 4.94701243e-06 + syst_JES_EtaIntercalibration_Stat124: 1.27581917e-05 + syst_JES_EtaIntercalibration_Stat125: 1.61700062e-07 + syst_JES_EtaIntercalibration_Stat126: 5.64766489e-08 + syst_JES_EtaIntercalibration_Stat127: 9.58863327e-16 + syst_JES_EtaIntercalibration_Stat128: 7.70989864e-07 + syst_JES_EtaIntercalibration_Stat129: 2.09944809e-06 + syst_JES_EtaIntercalibration_Stat13: 4.02471366e-15 + syst_JES_EtaIntercalibration_Stat130: 8.17398966e-06 + syst_JES_EtaIntercalibration_Stat131: 2.18978973e-05 + syst_JES_EtaIntercalibration_Stat132: 2.19311632e-06 + syst_JES_EtaIntercalibration_Stat133: 1.28190282e-05 + syst_JES_EtaIntercalibration_Stat134: 1.81444968e-05 + syst_JES_EtaIntercalibration_Stat135: 2.17000361e-06 + syst_JES_EtaIntercalibration_Stat136: 1.75088449e-05 + syst_JES_EtaIntercalibration_Stat137: 1.37982060e-05 + syst_JES_EtaIntercalibration_Stat138: 1.69500155e-05 + syst_JES_EtaIntercalibration_Stat139: 3.29111166e-06 + syst_JES_EtaIntercalibration_Stat14: 4.02128468e-15 + syst_JES_EtaIntercalibration_Stat140: 1.74885364e-05 + syst_JES_EtaIntercalibration_Stat141: 1.81662792e-05 + syst_JES_EtaIntercalibration_Stat142: 1.74462625e-05 + syst_JES_EtaIntercalibration_Stat143: 4.75926683e-06 + syst_JES_EtaIntercalibration_Stat144: 2.18464090e-05 + syst_JES_EtaIntercalibration_Stat145: 7.85619303e-07 + syst_JES_EtaIntercalibration_Stat146: 2.26499553e-06 + syst_JES_EtaIntercalibration_Stat147: 1.61188658e-05 + syst_JES_EtaIntercalibration_Stat148: 3.55541485e-06 + syst_JES_EtaIntercalibration_Stat149: 2.23694362e-05 + syst_JES_EtaIntercalibration_Stat15: 5.30739962e-15 + syst_JES_EtaIntercalibration_Stat150: 1.46449555e-06 + syst_JES_EtaIntercalibration_Stat151: 2.33268317e-05 + syst_JES_EtaIntercalibration_Stat152: 3.12912303e-05 + syst_JES_EtaIntercalibration_Stat153: 9.93448681e-06 + syst_JES_EtaIntercalibration_Stat154: 1.02279104e-05 + syst_JES_EtaIntercalibration_Stat155: 2.53528756e-05 + syst_JES_EtaIntercalibration_Stat156: 3.19043759e-05 + syst_JES_EtaIntercalibration_Stat157: 2.32241769e-05 + syst_JES_EtaIntercalibration_Stat158: 1.77384413e-05 + syst_JES_EtaIntercalibration_Stat159: 1.87096143e-05 + syst_JES_EtaIntercalibration_Stat16: 6.15320265e-16 + syst_JES_EtaIntercalibration_Stat160: 1.88136266e-06 + syst_JES_EtaIntercalibration_Stat161: 2.74941612e-05 + syst_JES_EtaIntercalibration_Stat162: 3.36466852e-05 + syst_JES_EtaIntercalibration_Stat163: 1.28841292e-05 + syst_JES_EtaIntercalibration_Stat164: 9.25035489e-06 + syst_JES_EtaIntercalibration_Stat165: 6.39752282e-06 + syst_JES_EtaIntercalibration_Stat166: 2.05425753e-05 + syst_JES_EtaIntercalibration_Stat167: 2.53588806e-05 + syst_JES_EtaIntercalibration_Stat168: 6.08606301e-05 + syst_JES_EtaIntercalibration_Stat169: 5.61011257e-05 + syst_JES_EtaIntercalibration_Stat17: 1.00236382e-15 + syst_JES_EtaIntercalibration_Stat170: 6.60315334e-05 + syst_JES_EtaIntercalibration_Stat171: 3.28980122e-05 + syst_JES_EtaIntercalibration_Stat172: 4.35120819e-05 + syst_JES_EtaIntercalibration_Stat173: 5.75125294e-05 + syst_JES_EtaIntercalibration_Stat174: 6.64936937e-05 + syst_JES_EtaIntercalibration_Stat175: 6.51909265e-05 + syst_JES_EtaIntercalibration_Stat176: 3.07409840e-05 + syst_JES_EtaIntercalibration_Stat177: 1.96426933e-05 + syst_JES_EtaIntercalibration_Stat178: 7.72237342e-05 + syst_JES_EtaIntercalibration_Stat179: 6.07889141e-05 + syst_JES_EtaIntercalibration_Stat18: 9.89666651e-16 + syst_JES_EtaIntercalibration_Stat180: 1.98643039e-05 + syst_JES_EtaIntercalibration_Stat181: 3.65982336e-06 + syst_JES_EtaIntercalibration_Stat182: 1.07373038e-04 + syst_JES_EtaIntercalibration_Stat183: 5.03420567e-05 + syst_JES_EtaIntercalibration_Stat184: 1.46057902e-04 + syst_JES_EtaIntercalibration_Stat185: 1.36923142e-04 + syst_JES_EtaIntercalibration_Stat186: 9.56654100e-05 + syst_JES_EtaIntercalibration_Stat187: 2.44096677e-04 + syst_JES_EtaIntercalibration_Stat188: 1.62609951e-04 + syst_JES_EtaIntercalibration_Stat189: 2.15597142e-04 + syst_JES_EtaIntercalibration_Stat19: 5.77471797e-15 + syst_JES_EtaIntercalibration_Stat190: 4.59149845e-05 + syst_JES_EtaIntercalibration_Stat191: 2.96110841e-04 + syst_JES_EtaIntercalibration_Stat192: 2.28239436e-04 + syst_JES_EtaIntercalibration_Stat193: 1.77918970e-04 + syst_JES_EtaIntercalibration_Stat194: 1.46704703e-04 + syst_JES_EtaIntercalibration_Stat195: 6.53397940e-05 + syst_JES_EtaIntercalibration_Stat196: 1.51939418e-04 + syst_JES_EtaIntercalibration_Stat197: 1.29504408e-04 + syst_JES_EtaIntercalibration_Stat198: 1.35330069e-04 + syst_JES_EtaIntercalibration_Stat199: 8.57660205e-05 + syst_JES_EtaIntercalibration_Stat2: 8.81095335e-16 + syst_JES_EtaIntercalibration_Stat20: 9.89666651e-16 + syst_JES_EtaIntercalibration_Stat200: 1.93234851e-04 + syst_JES_EtaIntercalibration_Stat201: 1.93783920e-04 + syst_JES_EtaIntercalibration_Stat202: 3.36480425e-04 + syst_JES_EtaIntercalibration_Stat203: 3.06319980e-04 + syst_JES_EtaIntercalibration_Stat204: 2.70690377e-04 + syst_JES_EtaIntercalibration_Stat205: 1.93220082e-04 + syst_JES_EtaIntercalibration_Stat206: 3.24614648e-04 + syst_JES_EtaIntercalibration_Stat207: 2.64602551e-04 + syst_JES_EtaIntercalibration_Stat208: 2.35283335e-04 + syst_JES_EtaIntercalibration_Stat209: 1.94905931e-04 + syst_JES_EtaIntercalibration_Stat21: 9.89666651e-16 + syst_JES_EtaIntercalibration_Stat210: 1.13717169e-04 + syst_JES_EtaIntercalibration_Stat211: 1.56622687e-04 + syst_JES_EtaIntercalibration_Stat212: 4.92067912e-05 + syst_JES_EtaIntercalibration_Stat213: 1.33070257e-05 + syst_JES_EtaIntercalibration_Stat214: 9.69851539e-05 + syst_JES_EtaIntercalibration_Stat215: 1.42907280e-04 + syst_JES_EtaIntercalibration_Stat216: 1.25998566e-04 + syst_JES_EtaIntercalibration_Stat217: 9.72246106e-05 + syst_JES_EtaIntercalibration_Stat218: 1.04473231e-04 + syst_JES_EtaIntercalibration_Stat219: 1.83028464e-04 + syst_JES_EtaIntercalibration_Stat22: 9.89666651e-16 + syst_JES_EtaIntercalibration_Stat220: 7.51697040e-05 + syst_JES_EtaIntercalibration_Stat221: 5.50230424e-05 + syst_JES_EtaIntercalibration_Stat222: 1.81586221e-06 + syst_JES_EtaIntercalibration_Stat223: 4.21764555e-05 + syst_JES_EtaIntercalibration_Stat224: 2.27740483e-05 + syst_JES_EtaIntercalibration_Stat225: 2.16494043e-05 + syst_JES_EtaIntercalibration_Stat226: 1.88033936e-05 + syst_JES_EtaIntercalibration_Stat227: 3.64136980e-05 + syst_JES_EtaIntercalibration_Stat228: 6.94145475e-05 + syst_JES_EtaIntercalibration_Stat229: 8.01155870e-05 + syst_JES_EtaIntercalibration_Stat23: 2.83121225e-14 + syst_JES_EtaIntercalibration_Stat230: 9.03853166e-05 + syst_JES_EtaIntercalibration_Stat231: 7.50560595e-05 + syst_JES_EtaIntercalibration_Stat232: 2.47993821e-05 + syst_JES_EtaIntercalibration_Stat233: 6.00514987e-06 + syst_JES_EtaIntercalibration_Stat234: 2.03652326e-05 + syst_JES_EtaIntercalibration_Stat235: 1.92171037e-05 + syst_JES_EtaIntercalibration_Stat236: 8.86831632e-06 + syst_JES_EtaIntercalibration_Stat237: 6.58097111e-06 + syst_JES_EtaIntercalibration_Stat238: 7.48661846e-06 + syst_JES_EtaIntercalibration_Stat239: 9.77190862e-06 + syst_JES_EtaIntercalibration_Stat24: 1.23157977e-12 + syst_JES_EtaIntercalibration_Stat240: 7.49366360e-06 + syst_JES_EtaIntercalibration_Stat241: 1.76062965e-06 + syst_JES_EtaIntercalibration_Stat242: 8.42899178e-07 + syst_JES_EtaIntercalibration_Stat243: 8.83549188e-06 + syst_JES_EtaIntercalibration_Stat244: 4.03345918e-06 + syst_JES_EtaIntercalibration_Stat245: 8.70300931e-06 + syst_JES_EtaIntercalibration_Stat25: 1.18253615e-12 + syst_JES_EtaIntercalibration_Stat26: 6.45010150e-15 + syst_JES_EtaIntercalibration_Stat27: 1.05110591e-12 + syst_JES_EtaIntercalibration_Stat28: 9.55736147e-14 + syst_JES_EtaIntercalibration_Stat29: 1.48772660e-12 + syst_JES_EtaIntercalibration_Stat3: 1.50099386e-15 + syst_JES_EtaIntercalibration_Stat30: 1.26282931e-12 + syst_JES_EtaIntercalibration_Stat31: 7.77779303e-07 + syst_JES_EtaIntercalibration_Stat32: 7.88170463e-07 + syst_JES_EtaIntercalibration_Stat33: 5.99952134e-13 + syst_JES_EtaIntercalibration_Stat34: 1.14243664e-11 + syst_JES_EtaIntercalibration_Stat35: 1.39083682e-06 + syst_JES_EtaIntercalibration_Stat36: 2.75932794e-11 + syst_JES_EtaIntercalibration_Stat37: 2.46829664e-11 + syst_JES_EtaIntercalibration_Stat38: 4.82744767e-12 + syst_JES_EtaIntercalibration_Stat39: 5.06798066e-12 + syst_JES_EtaIntercalibration_Stat4: 6.35666941e-16 + syst_JES_EtaIntercalibration_Stat40: 1.13598092e-13 + syst_JES_EtaIntercalibration_Stat41: 3.18415376e-16 + syst_JES_EtaIntercalibration_Stat42: 3.39525260e-15 + syst_JES_EtaIntercalibration_Stat43: 9.89666651e-16 + syst_JES_EtaIntercalibration_Stat44: 9.89666651e-16 + syst_JES_EtaIntercalibration_Stat45: 8.81095335e-16 + syst_JES_EtaIntercalibration_Stat46: 8.10743246e-13 + syst_JES_EtaIntercalibration_Stat47: 2.80339590e-11 + syst_JES_EtaIntercalibration_Stat48: 1.29872526e-12 + syst_JES_EtaIntercalibration_Stat49: 2.29442809e-12 + syst_JES_EtaIntercalibration_Stat5: 6.06044578e-16 + syst_JES_EtaIntercalibration_Stat50: 7.77777878e-07 + syst_JES_EtaIntercalibration_Stat51: 6.73941398e-12 + syst_JES_EtaIntercalibration_Stat52: 1.63438032e-12 + syst_JES_EtaIntercalibration_Stat53: 7.77901625e-07 + syst_JES_EtaIntercalibration_Stat54: 7.77692434e-07 + syst_JES_EtaIntercalibration_Stat55: 2.52028477e-12 + syst_JES_EtaIntercalibration_Stat56: 1.87525832e-11 + syst_JES_EtaIntercalibration_Stat57: 1.21036847e-06 + syst_JES_EtaIntercalibration_Stat58: 5.99950371e-11 + syst_JES_EtaIntercalibration_Stat59: 3.16006560e-11 + syst_JES_EtaIntercalibration_Stat6: 8.30708148e-16 + syst_JES_EtaIntercalibration_Stat60: 7.43340397e-15 + syst_JES_EtaIntercalibration_Stat61: 4.33803829e-12 + syst_JES_EtaIntercalibration_Stat62: 4.06881811e-13 + syst_JES_EtaIntercalibration_Stat63: 1.56692988e-13 + syst_JES_EtaIntercalibration_Stat64: 3.97646967e-16 + syst_JES_EtaIntercalibration_Stat65: 9.89666651e-16 + syst_JES_EtaIntercalibration_Stat66: 9.89666651e-16 + syst_JES_EtaIntercalibration_Stat67: 1.37782327e-12 + syst_JES_EtaIntercalibration_Stat68: 2.21069233e-10 + syst_JES_EtaIntercalibration_Stat69: 2.18019421e-10 + syst_JES_EtaIntercalibration_Stat7: 3.93349237e-15 + syst_JES_EtaIntercalibration_Stat70: 4.65635340e-11 + syst_JES_EtaIntercalibration_Stat71: 2.53413195e-11 + syst_JES_EtaIntercalibration_Stat72: 7.77691939e-07 + syst_JES_EtaIntercalibration_Stat73: 9.20769711e-07 + syst_JES_EtaIntercalibration_Stat74: 8.23877032e-07 + syst_JES_EtaIntercalibration_Stat75: 1.19857918e-06 + syst_JES_EtaIntercalibration_Stat76: 7.74229325e-07 + syst_JES_EtaIntercalibration_Stat77: 4.71967981e-11 + syst_JES_EtaIntercalibration_Stat78: 1.24794279e-06 + syst_JES_EtaIntercalibration_Stat79: 3.57858559e-07 + syst_JES_EtaIntercalibration_Stat8: 1.04328690e-13 + syst_JES_EtaIntercalibration_Stat80: 1.22405497e-06 + syst_JES_EtaIntercalibration_Stat81: 6.70325251e-07 + syst_JES_EtaIntercalibration_Stat82: 7.47649664e-07 + syst_JES_EtaIntercalibration_Stat83: 4.82364252e-13 + syst_JES_EtaIntercalibration_Stat84: 5.76649891e-12 + syst_JES_EtaIntercalibration_Stat85: 1.86182634e-12 + syst_JES_EtaIntercalibration_Stat86: 3.87286043e-15 + syst_JES_EtaIntercalibration_Stat87: 6.06044578e-16 + syst_JES_EtaIntercalibration_Stat88: 1.22228411e-12 + syst_JES_EtaIntercalibration_Stat89: 1.92978641e-09 + syst_JES_EtaIntercalibration_Stat9: 1.04367338e-13 + syst_JES_EtaIntercalibration_Stat90: 1.87556070e-09 + syst_JES_EtaIntercalibration_Stat91: 4.78690152e-11 + syst_JES_EtaIntercalibration_Stat92: 2.14524474e-10 + syst_JES_EtaIntercalibration_Stat93: 7.78073118e-07 + syst_JES_EtaIntercalibration_Stat94: 8.87559321e-07 + syst_JES_EtaIntercalibration_Stat95: 1.24076820e-06 + syst_JES_EtaIntercalibration_Stat96: 1.25828605e-06 + syst_JES_EtaIntercalibration_Stat97: 2.01350557e-09 + syst_JES_EtaIntercalibration_Stat98: 2.56771909e-10 + syst_JES_EtaIntercalibration_Stat99: 2.32550011e-06 + syst_JES_EtaIntercalibration_TotalStat_MJB: 3.43355239e-03 + syst_JES_Flavour_Comp: 1.08502937e-02 + syst_JES_Flavour_Response: 6.08065276e-03 + syst_JES_Gjet_Generator: 1.84807163e-02 + syst_JES_Gjet_OOC: 1.42906602e-02 + syst_JES_Gjet_Purity: 4.14282742e-03 + syst_JES_Gjet_Stat1: 2.32402912e-05 + syst_JES_Gjet_Stat10: 5.26622550e-04 + syst_JES_Gjet_Stat11: 7.45025508e-04 + syst_JES_Gjet_Stat12: 2.05505693e-03 + syst_JES_Gjet_Stat13: 3.81541430e-03 + syst_JES_Gjet_Stat14: 3.36850887e-03 + syst_JES_Gjet_Stat15: 5.48527946e-04 + syst_JES_Gjet_Stat2: 5.60721963e-05 + syst_JES_Gjet_Stat3: 6.22820654e-05 + syst_JES_Gjet_Stat4: 7.28382254e-05 + syst_JES_Gjet_Stat5: 7.25571366e-05 + syst_JES_Gjet_Stat6: 3.03841164e-04 + syst_JES_Gjet_Stat7: 2.25884412e-04 + syst_JES_Gjet_Stat8: 1.19478520e-04 + syst_JES_Gjet_Stat9: 2.95185416e-04 + syst_JES_Gjet_Veto: 1.12800533e-02 + syst_JES_Gjet_dPhi: 1.29590562e-03 + syst_JES_LArESZee: 2.71877840e-02 + syst_JES_LArEsmear: 2.10319020e-03 + syst_JES_LAr_JVT: 2.67835883e-03 + syst_JES_MJB_Alpha: 1.87325839e-04 + syst_JES_MJB_Asym: 1.04652607e-03 + syst_JES_MJB_Beta: 1.05189865e-04 + syst_JES_MJB_Fragmentation: 2.84033836e-03 + syst_JES_MJB_Stat1: 9.85758676e-05 + syst_JES_MJB_Stat10: 2.03099332e-05 + syst_JES_MJB_Stat11: 2.19397113e-05 + syst_JES_MJB_Stat12: 2.95742126e-05 + syst_JES_MJB_Stat13: 2.65217774e-05 + syst_JES_MJB_Stat14: 1.48369366e-05 + syst_JES_MJB_Stat15: 8.75007387e-06 + syst_JES_MJB_Stat16: 3.24236056e-06 + syst_JES_MJB_Stat2: 2.41624766e-04 + syst_JES_MJB_Stat3: 2.38209745e-04 + syst_JES_MJB_Stat4: 1.54144756e-04 + syst_JES_MJB_Stat5: 6.06465372e-05 + syst_JES_MJB_Stat6: 8.58547417e-05 + syst_JES_MJB_Stat7: 5.93037697e-05 + syst_JES_MJB_Stat8: 4.99768514e-05 + syst_JES_MJB_Stat9: 6.67906236e-05 + syst_JES_MJB_Threshold: 1.37651948e-03 + syst_JES_Pileup_MuOffset: 2.76284401e-03 + syst_JES_Pileup_NPVOffset: 2.88026435e-03 + syst_JES_Pileup_Pt_term: 3.24813527e-03 + syst_JES_Pileup_Rho_topology: 5.70363673e-03 + syst_JES_PunchThrough_MC15: 8.39815544e-04 + syst_JES_SingleParticle_HighPt: 6.44315699e-06 + syst_JES_Zjet_MC: 1.16502988e-02 + syst_JES_Zjet_MuScale: 8.36048814e-04 + syst_JES_Zjet_MuSmearID: 1.64247846e-04 + syst_JES_Zjet_MuSmearMS: 3.20468044e-03 + syst_JES_Zjet_OOC: 5.19813839e-03 + syst_JES_Zjet_Stat1: 2.51559675e-04 + syst_JES_Zjet_Stat10: 5.05810901e-04 + syst_JES_Zjet_Stat11: 6.05927743e-04 + syst_JES_Zjet_Stat12: 2.55437624e-03 + syst_JES_Zjet_Stat13: 3.35662520e-03 + syst_JES_Zjet_Stat2: 3.82281389e-05 + syst_JES_Zjet_Stat3: 1.69104438e-04 + syst_JES_Zjet_Stat4: 9.68353830e-05 + syst_JES_Zjet_Stat5: 1.09107787e-04 + syst_JES_Zjet_Stat6: 1.65627317e-04 + syst_JES_Zjet_Stat7: 1.05091689e-04 + syst_JES_Zjet_Stat8: 1.33991563e-04 + syst_JES_Zjet_Stat9: 3.16236537e-04 + syst_JES_Zjet_Veto: 1.17470246e-03 + syst_JES_Zjet_dPhi: 9.91433905e-04 syst_PRW: 0.0 syst_Unfolding_bias: 0.0 - syst_cleaning: 0.008455006017147475 + syst_cleaning: 8.45500602e-03 syst_lumi: 0.01879 -- stat: 0.0022275 +- stat: 2.22750000e-03 syst_JER_CROSS_CALIB_FORWARD: 2.23e-11 - syst_JER_NOISE_FORWARD: 3.528e-08 - syst_JER_NP0: 0.0009095445618549978 - syst_JER_NP1: 0.00016546300946132948 - syst_JER_NP2: 0.00019146806522237593 - syst_JER_NP3: 9.914381813809675e-05 - syst_JER_NP4: 5.8930911243591e-05 - syst_JER_NP5: 6.582659094165519e-05 - syst_JER_NP6: 2.736883081170988e-20 + syst_JER_NOISE_FORWARD: 3.52800000e-08 + syst_JER_NP0: 9.09544562e-04 + syst_JER_NP1: 1.65463009e-04 + syst_JER_NP2: 1.91468065e-04 + syst_JER_NP3: 9.91438181e-05 + syst_JER_NP4: 5.89309112e-05 + syst_JER_NP5: 6.58265909e-05 + syst_JER_NP6: 2.73688308e-20 syst_JER_NP7: 0.0 - syst_JER_NP8: 0.0001751674841401794 - syst_JES_EtaIntercalibration_Modelling: 0.011652510319669318 - syst_JES_EtaIntercalibration_NonClosure: 0.00045990886869030917 - syst_JES_EtaIntercalibration_Stat0: 7.481189744953673e-17 - syst_JES_EtaIntercalibration_Stat1: 4.625670023629009e-17 - syst_JES_EtaIntercalibration_Stat10: 7.373176655960441e-17 - syst_JES_EtaIntercalibration_Stat100: 3.3172318387141956e-06 - syst_JES_EtaIntercalibration_Stat101: 4.723817908217886e-10 - syst_JES_EtaIntercalibration_Stat102: 2.966214680728411e-07 - syst_JES_EtaIntercalibration_Stat103: 2.96568954320926e-07 - syst_JES_EtaIntercalibration_Stat104: 1.2399452297581535e-11 - syst_JES_EtaIntercalibration_Stat105: 2.812859876975744e-09 - syst_JES_EtaIntercalibration_Stat106: 1.628799610387969e-10 - syst_JES_EtaIntercalibration_Stat107: 1.1057265303862434e-17 - syst_JES_EtaIntercalibration_Stat108: 7.222737436185467e-11 - syst_JES_EtaIntercalibration_Stat109: 3.091824084177494e-09 - syst_JES_EtaIntercalibration_Stat11: 4.746995787600827e-16 - syst_JES_EtaIntercalibration_Stat110: 1.8382738416446557e-07 - syst_JES_EtaIntercalibration_Stat111: 2.8036482817036807e-07 - syst_JES_EtaIntercalibration_Stat112: 6.949861221636012e-07 - syst_JES_EtaIntercalibration_Stat113: 6.336004261362204e-06 - syst_JES_EtaIntercalibration_Stat114: 1.3663681961682218e-06 - syst_JES_EtaIntercalibration_Stat115: 1.2744376053773682e-06 - syst_JES_EtaIntercalibration_Stat116: 7.802476914416344e-07 - syst_JES_EtaIntercalibration_Stat117: 1.172605205301426e-08 - syst_JES_EtaIntercalibration_Stat118: 9.236828044301788e-07 - syst_JES_EtaIntercalibration_Stat119: 8.865810890719472e-07 - syst_JES_EtaIntercalibration_Stat12: 6.916305777472537e-14 - syst_JES_EtaIntercalibration_Stat120: 4.6040832692296087e-07 - syst_JES_EtaIntercalibration_Stat121: 3.905265447581636e-09 - syst_JES_EtaIntercalibration_Stat122: 1.2913055498288236e-07 - syst_JES_EtaIntercalibration_Stat123: 1.400668136997483e-06 - syst_JES_EtaIntercalibration_Stat124: 2.5202837870962073e-06 - syst_JES_EtaIntercalibration_Stat125: 1.5710150564205296e-08 - syst_JES_EtaIntercalibration_Stat126: 3.835634334761331e-09 - syst_JES_EtaIntercalibration_Stat127: 1.4601188307805635e-16 - syst_JES_EtaIntercalibration_Stat128: 1.1895188302418756e-07 - syst_JES_EtaIntercalibration_Stat129: 1.7009753886379426e-06 - syst_JES_EtaIntercalibration_Stat13: 3.30395138432756e-16 - syst_JES_EtaIntercalibration_Stat130: 1.8259437094280864e-06 - syst_JES_EtaIntercalibration_Stat131: 1.1598422780706004e-05 - syst_JES_EtaIntercalibration_Stat132: 4.307347762835037e-06 - syst_JES_EtaIntercalibration_Stat133: 5.6122995287136985e-06 - syst_JES_EtaIntercalibration_Stat134: 3.586921424773618e-06 - syst_JES_EtaIntercalibration_Stat135: 4.836674939201516e-07 - syst_JES_EtaIntercalibration_Stat136: 3.9207829358432995e-06 - syst_JES_EtaIntercalibration_Stat137: 7.277099990380784e-06 - syst_JES_EtaIntercalibration_Stat138: 3.0406207836558634e-06 - syst_JES_EtaIntercalibration_Stat139: 8.226509697769765e-07 - syst_JES_EtaIntercalibration_Stat14: 3.296224203539559e-16 - syst_JES_EtaIntercalibration_Stat140: 4.293019683160095e-06 - syst_JES_EtaIntercalibration_Stat141: 3.948979741654799e-06 - syst_JES_EtaIntercalibration_Stat142: 6.364206058103398e-06 - syst_JES_EtaIntercalibration_Stat143: 8.302714435652957e-07 - syst_JES_EtaIntercalibration_Stat144: 5.079261039511554e-06 - syst_JES_EtaIntercalibration_Stat145: 1.0591615855477389e-07 - syst_JES_EtaIntercalibration_Stat146: 2.3773019479811562e-07 - syst_JES_EtaIntercalibration_Stat147: 2.1543349246345144e-06 - syst_JES_EtaIntercalibration_Stat148: 1.5526231633915552e-06 - syst_JES_EtaIntercalibration_Stat149: 1.1348396891191284e-05 - syst_JES_EtaIntercalibration_Stat15: 3.8616507050094523e-16 - syst_JES_EtaIntercalibration_Stat150: 4.031889268072724e-06 - syst_JES_EtaIntercalibration_Stat151: 1.166066510753139e-05 - syst_JES_EtaIntercalibration_Stat152: 8.211681086568083e-06 - syst_JES_EtaIntercalibration_Stat153: 1.0478501732953046e-06 - syst_JES_EtaIntercalibration_Stat154: 1.24160361629628e-06 - syst_JES_EtaIntercalibration_Stat155: 1.2910415591684103e-05 - syst_JES_EtaIntercalibration_Stat156: 7.28154159501956e-06 - syst_JES_EtaIntercalibration_Stat157: 9.57609120413961e-06 - syst_JES_EtaIntercalibration_Stat158: 6.954586472249806e-06 - syst_JES_EtaIntercalibration_Stat159: 8.20136531316585e-06 - syst_JES_EtaIntercalibration_Stat16: 4.6479423842707e-17 - syst_JES_EtaIntercalibration_Stat160: 8.16918265602502e-07 - syst_JES_EtaIntercalibration_Stat161: 5.347590555567993e-06 - syst_JES_EtaIntercalibration_Stat162: 8.300557575699357e-06 - syst_JES_EtaIntercalibration_Stat163: 2.2769944564710737e-06 - syst_JES_EtaIntercalibration_Stat164: 6.585806577026082e-07 - syst_JES_EtaIntercalibration_Stat165: 6.533167991105082e-06 - syst_JES_EtaIntercalibration_Stat166: 8.306561206660672e-06 - syst_JES_EtaIntercalibration_Stat167: 5.202673915161318e-06 - syst_JES_EtaIntercalibration_Stat168: 2.4482803924387422e-05 - syst_JES_EtaIntercalibration_Stat169: 1.3700521887869821e-05 - syst_JES_EtaIntercalibration_Stat17: 7.586914441984963e-17 - syst_JES_EtaIntercalibration_Stat170: 1.8261457191308693e-05 - syst_JES_EtaIntercalibration_Stat171: 7.837282309576452e-06 - syst_JES_EtaIntercalibration_Stat172: 9.247649363486917e-06 - syst_JES_EtaIntercalibration_Stat173: 1.0842885053342584e-05 - syst_JES_EtaIntercalibration_Stat174: 2.2694657961731875e-05 - syst_JES_EtaIntercalibration_Stat175: 1.881541142255465e-05 - syst_JES_EtaIntercalibration_Stat176: 1.4825951301687189e-05 - syst_JES_EtaIntercalibration_Stat177: 5.187886082018379e-06 - syst_JES_EtaIntercalibration_Stat178: 3.582810315199508e-05 - syst_JES_EtaIntercalibration_Stat179: 1.656228519105984e-05 - syst_JES_EtaIntercalibration_Stat18: 7.481189744953673e-17 - syst_JES_EtaIntercalibration_Stat180: 2.9261511837223993e-06 - syst_JES_EtaIntercalibration_Stat181: 2.0888532738133466e-07 - syst_JES_EtaIntercalibration_Stat182: 3.122745066443945e-05 - syst_JES_EtaIntercalibration_Stat183: 2.4690384261906368e-05 - syst_JES_EtaIntercalibration_Stat184: 4.830081676328052e-05 - syst_JES_EtaIntercalibration_Stat185: 5.3514111297862355e-05 - syst_JES_EtaIntercalibration_Stat186: 2.096206752684477e-05 - syst_JES_EtaIntercalibration_Stat187: 8.281833537931078e-05 - syst_JES_EtaIntercalibration_Stat188: 5.454657551120876e-05 - syst_JES_EtaIntercalibration_Stat189: 4.4768373881569566e-05 - syst_JES_EtaIntercalibration_Stat19: 4.837424598895574e-16 - syst_JES_EtaIntercalibration_Stat190: 1.2200922864685279e-05 - syst_JES_EtaIntercalibration_Stat191: 0.00010010121715044229 - syst_JES_EtaIntercalibration_Stat192: 7.193284420207503e-05 - syst_JES_EtaIntercalibration_Stat193: 5.867947405183519e-05 - syst_JES_EtaIntercalibration_Stat194: 4.259112935811869e-05 - syst_JES_EtaIntercalibration_Stat195: 3.8153677083604934e-05 - syst_JES_EtaIntercalibration_Stat196: 5.120063280858938e-05 - syst_JES_EtaIntercalibration_Stat197: 3.703522782432963e-05 - syst_JES_EtaIntercalibration_Stat198: 5.650397685119163e-05 - syst_JES_EtaIntercalibration_Stat199: 3.004149463658558e-05 - syst_JES_EtaIntercalibration_Stat2: 7.019526479756308e-17 - syst_JES_EtaIntercalibration_Stat20: 7.481189744953673e-17 - syst_JES_EtaIntercalibration_Stat200: 7.557028053408297e-05 - syst_JES_EtaIntercalibration_Stat201: 6.532094324946632e-05 - syst_JES_EtaIntercalibration_Stat202: 0.00012966612770881993 - syst_JES_EtaIntercalibration_Stat203: 0.00011609757447940073 - syst_JES_EtaIntercalibration_Stat204: 0.00010265594088994557 - syst_JES_EtaIntercalibration_Stat205: 9.14437767155316e-05 - syst_JES_EtaIntercalibration_Stat206: 0.00012093922140893748 - syst_JES_EtaIntercalibration_Stat207: 0.00011015713957796835 - syst_JES_EtaIntercalibration_Stat208: 9.702569492150004e-05 - syst_JES_EtaIntercalibration_Stat209: 8.525891390347405e-05 - syst_JES_EtaIntercalibration_Stat21: 7.481189744953673e-17 - syst_JES_EtaIntercalibration_Stat210: 5.705220475143796e-05 - syst_JES_EtaIntercalibration_Stat211: 6.945057019204379e-05 - syst_JES_EtaIntercalibration_Stat212: 2.1767365481380606e-05 - syst_JES_EtaIntercalibration_Stat213: 1.185912689661427e-05 - syst_JES_EtaIntercalibration_Stat214: 3.588293605601414e-05 - syst_JES_EtaIntercalibration_Stat215: 6.948764692375185e-05 - syst_JES_EtaIntercalibration_Stat216: 7.939617922167287e-05 - syst_JES_EtaIntercalibration_Stat217: 4.6678998489684844e-05 - syst_JES_EtaIntercalibration_Stat218: 4.7058534560693666e-05 - syst_JES_EtaIntercalibration_Stat219: 8.245393926308191e-05 - syst_JES_EtaIntercalibration_Stat22: 7.481189744953673e-17 - syst_JES_EtaIntercalibration_Stat220: 3.709521532489062e-05 - syst_JES_EtaIntercalibration_Stat221: 3.926635582785854e-05 - syst_JES_EtaIntercalibration_Stat222: 3.944905513127025e-06 - syst_JES_EtaIntercalibration_Stat223: 3.098518355601593e-05 - syst_JES_EtaIntercalibration_Stat224: 2.2925867066481915e-05 - syst_JES_EtaIntercalibration_Stat225: 3.468073096115479e-05 - syst_JES_EtaIntercalibration_Stat226: 3.619482387027184e-05 - syst_JES_EtaIntercalibration_Stat227: 5.2605563156381095e-05 - syst_JES_EtaIntercalibration_Stat228: 5.805987340668252e-05 - syst_JES_EtaIntercalibration_Stat229: 3.622330844911878e-05 - syst_JES_EtaIntercalibration_Stat23: 2.0666110644422186e-15 - syst_JES_EtaIntercalibration_Stat230: 4.826724018420776e-05 - syst_JES_EtaIntercalibration_Stat231: 8.111725016912248e-05 - syst_JES_EtaIntercalibration_Stat232: 2.166566472555135e-05 - syst_JES_EtaIntercalibration_Stat233: 1.87023290194029e-05 - syst_JES_EtaIntercalibration_Stat234: 2.2090807560612176e-05 - syst_JES_EtaIntercalibration_Stat235: 2.0801930198886945e-05 - syst_JES_EtaIntercalibration_Stat236: 1.8962740328074947e-06 - syst_JES_EtaIntercalibration_Stat237: 6.755499592924272e-06 - syst_JES_EtaIntercalibration_Stat238: 6.364424149127711e-06 - syst_JES_EtaIntercalibration_Stat239: 2.619401840115411e-06 - syst_JES_EtaIntercalibration_Stat24: 7.454369725201454e-14 - syst_JES_EtaIntercalibration_Stat240: 6.691960306965366e-06 - syst_JES_EtaIntercalibration_Stat241: 1.5761662348876788e-06 - syst_JES_EtaIntercalibration_Stat242: 2.6424577253004447e-06 - syst_JES_EtaIntercalibration_Stat243: 3.1202245111530037e-06 - syst_JES_EtaIntercalibration_Stat244: 3.543974994085032e-06 - syst_JES_EtaIntercalibration_Stat245: 4.269941582738574e-06 - syst_JES_EtaIntercalibration_Stat25: 7.19149224900507e-14 - syst_JES_EtaIntercalibration_Stat26: 4.61995442834667e-16 - syst_JES_EtaIntercalibration_Stat27: 6.226882447073737e-14 - syst_JES_EtaIntercalibration_Stat28: 6.247193526440492e-15 - syst_JES_EtaIntercalibration_Stat29: 9.012215751412079e-14 - syst_JES_EtaIntercalibration_Stat3: 1.2272046477666225e-16 - syst_JES_EtaIntercalibration_Stat30: 7.573074078602426e-14 - syst_JES_EtaIntercalibration_Stat31: 9.369540282063233e-08 - syst_JES_EtaIntercalibration_Stat32: 9.43968139881755e-08 - syst_JES_EtaIntercalibration_Stat33: 3.125300114497006e-14 - syst_JES_EtaIntercalibration_Stat34: 6.921458047803222e-13 - syst_JES_EtaIntercalibration_Stat35: 7.337833258753636e-07 - syst_JES_EtaIntercalibration_Stat36: 1.6016587362793609e-12 - syst_JES_EtaIntercalibration_Stat37: 1.5217086795995711e-12 - syst_JES_EtaIntercalibration_Stat38: 2.902492506450275e-13 - syst_JES_EtaIntercalibration_Stat39: 3.045811345109871e-13 - syst_JES_EtaIntercalibration_Stat4: 4.625670023629009e-17 - syst_JES_EtaIntercalibration_Stat40: 7.579643972509528e-15 - syst_JES_EtaIntercalibration_Stat41: 3.220113303518993e-17 - syst_JES_EtaIntercalibration_Stat42: 2.814582562299426e-16 - syst_JES_EtaIntercalibration_Stat43: 7.481189744953673e-17 - syst_JES_EtaIntercalibration_Stat44: 7.481189744953673e-17 - syst_JES_EtaIntercalibration_Stat45: 7.019526479756308e-17 - syst_JES_EtaIntercalibration_Stat46: 4.4373640935892334e-14 - syst_JES_EtaIntercalibration_Stat47: 1.6558515431040308e-12 - syst_JES_EtaIntercalibration_Stat48: 7.794536463927793e-14 - syst_JES_EtaIntercalibration_Stat49: 1.3618916413577111e-13 - syst_JES_EtaIntercalibration_Stat5: 4.5812743860196804e-17 - syst_JES_EtaIntercalibration_Stat50: 9.368665595198146e-08 - syst_JES_EtaIntercalibration_Stat51: 4.045743195013741e-13 - syst_JES_EtaIntercalibration_Stat52: 9.994163294003153e-14 - syst_JES_EtaIntercalibration_Stat53: 9.369419102344113e-08 - syst_JES_EtaIntercalibration_Stat54: 9.367806653920392e-08 - syst_JES_EtaIntercalibration_Stat55: 1.4319879005075426e-13 - syst_JES_EtaIntercalibration_Stat56: 1.1015026986803075e-12 - syst_JES_EtaIntercalibration_Stat57: 2.519274611377335e-07 - syst_JES_EtaIntercalibration_Stat58: 3.5377790702642805e-12 - syst_JES_EtaIntercalibration_Stat59: 1.8644711622014297e-12 - syst_JES_EtaIntercalibration_Stat6: 6.765560342647163e-17 - syst_JES_EtaIntercalibration_Stat60: 6.398672612933091e-16 - syst_JES_EtaIntercalibration_Stat61: 2.623965920262685e-13 - syst_JES_EtaIntercalibration_Stat62: 2.682156148977908e-14 - syst_JES_EtaIntercalibration_Stat63: 1.0199176045047314e-14 - syst_JES_EtaIntercalibration_Stat64: 3.4691272976787687e-17 - syst_JES_EtaIntercalibration_Stat65: 7.481189744953673e-17 - syst_JES_EtaIntercalibration_Stat66: 7.481189744953673e-17 - syst_JES_EtaIntercalibration_Stat67: 8.502750305048362e-14 - syst_JES_EtaIntercalibration_Stat68: 1.3411271826340708e-11 - syst_JES_EtaIntercalibration_Stat69: 1.3288943787976532e-11 - syst_JES_EtaIntercalibration_Stat7: 2.859885348663474e-16 - syst_JES_EtaIntercalibration_Stat70: 2.7513452618673652e-12 - syst_JES_EtaIntercalibration_Stat71: 1.4984894894526288e-12 - syst_JES_EtaIntercalibration_Stat72: 9.367803019475482e-08 - syst_JES_EtaIntercalibration_Stat73: 3.0570657091400567e-07 - syst_JES_EtaIntercalibration_Stat74: 3.2667164180473823e-07 - syst_JES_EtaIntercalibration_Stat75: 6.322851491551584e-07 - syst_JES_EtaIntercalibration_Stat76: 9.324511316070665e-08 - syst_JES_EtaIntercalibration_Stat77: 2.7623505604466644e-12 - syst_JES_EtaIntercalibration_Stat78: 6.582659226292138e-07 - syst_JES_EtaIntercalibration_Stat79: 3.627717691685017e-07 - syst_JES_EtaIntercalibration_Stat8: 6.840129863304863e-15 - syst_JES_EtaIntercalibration_Stat80: 2.529774115964791e-07 - syst_JES_EtaIntercalibration_Stat81: 2.546683067457551e-07 - syst_JES_EtaIntercalibration_Stat82: 2.9652243933195795e-07 - syst_JES_EtaIntercalibration_Stat83: 3.53307468514324e-14 - syst_JES_EtaIntercalibration_Stat84: 3.493624540598918e-13 - syst_JES_EtaIntercalibration_Stat85: 1.1219286730893368e-13 - syst_JES_EtaIntercalibration_Stat86: 2.7872784553216063e-16 - syst_JES_EtaIntercalibration_Stat87: 4.5812743860196804e-17 - syst_JES_EtaIntercalibration_Stat88: 7.407738877469562e-14 - syst_JES_EtaIntercalibration_Stat89: 1.3002339049186497e-10 - syst_JES_EtaIntercalibration_Stat9: 6.8247488164400606e-15 - syst_JES_EtaIntercalibration_Stat90: 1.2629520109944795e-10 - syst_JES_EtaIntercalibration_Stat91: 2.8320599689095567e-12 - syst_JES_EtaIntercalibration_Stat92: 1.305298989005967e-11 - syst_JES_EtaIntercalibration_Stat93: 9.367497878929598e-08 - syst_JES_EtaIntercalibration_Stat94: 2.8430632634536995e-07 - syst_JES_EtaIntercalibration_Stat95: 2.842649600284917e-07 - syst_JES_EtaIntercalibration_Stat96: 6.638056430326802e-07 - syst_JES_EtaIntercalibration_Stat97: 1.3544023638490888e-10 - syst_JES_EtaIntercalibration_Stat98: 1.5574301549347246e-11 - syst_JES_EtaIntercalibration_Stat99: 1.227535298881462e-06 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.002170000460829444 - syst_JES_Flavour_Comp: 0.006543183628784996 - syst_JES_Flavour_Response: 0.0027425000911577013 - syst_JES_Gjet_Generator: 0.010136266768391605 - syst_JES_Gjet_OOC: 0.008044919390522194 - syst_JES_Gjet_Purity: 0.0022025055618544987 - syst_JES_Gjet_Stat1: 2.0645478923967832e-05 - syst_JES_Gjet_Stat10: 0.00022115263959537085 - syst_JES_Gjet_Stat11: 0.00030235151727748947 - syst_JES_Gjet_Stat12: 0.0009388864508022255 - syst_JES_Gjet_Stat13: 0.0022386216183178436 - syst_JES_Gjet_Stat14: 0.0027822620293566883 - syst_JES_Gjet_Stat15: 0.00012120583278044008 - syst_JES_Gjet_Stat2: 3.120584360340223e-05 - syst_JES_Gjet_Stat3: 3.5765889206756764e-05 - syst_JES_Gjet_Stat4: 4.170033453103224e-05 - syst_JES_Gjet_Stat5: 4.1399248785455034e-05 - syst_JES_Gjet_Stat6: 0.00012623612428698847 - syst_JES_Gjet_Stat7: 0.00012104392539487473 - syst_JES_Gjet_Stat8: 6.397311994111277e-05 - syst_JES_Gjet_Stat9: 0.00012186982019761909 - syst_JES_Gjet_Veto: 0.006930485408685311 - syst_JES_Gjet_dPhi: 0.0007118394622385023 - syst_JES_LArESZee: 0.015187767281598702 - syst_JES_LArEsmear: 0.0011679465345211654 - syst_JES_LAr_JVT: 0.0015296283862428809 - syst_JES_MJB_Alpha: 8.296222152281121e-05 - syst_JES_MJB_Asym: 0.0006624502754924327 - syst_JES_MJB_Beta: 5.1134537252232965e-05 - syst_JES_MJB_Fragmentation: 0.0015247583415085814 - syst_JES_MJB_Stat1: 4.2019962815309575e-05 - syst_JES_MJB_Stat10: 1.657357966010964e-05 - syst_JES_MJB_Stat11: 1.6612473385983197e-05 - syst_JES_MJB_Stat12: 2.0878308483208117e-05 - syst_JES_MJB_Stat13: 2.2471909131179754e-05 - syst_JES_MJB_Stat14: 1.9840521036505065e-05 - syst_JES_MJB_Stat15: 1.3959031153701177e-05 - syst_JES_MJB_Stat16: 3.3035727250962704e-06 - syst_JES_MJB_Stat2: 8.524447078843296e-05 - syst_JES_MJB_Stat3: 0.00011851278443695431 - syst_JES_MJB_Stat4: 5.2050251440314876e-05 - syst_JES_MJB_Stat5: 3.229054776556136e-05 - syst_JES_MJB_Stat6: 7.062751924710367e-05 - syst_JES_MJB_Stat7: 4.1398177496116904e-05 - syst_JES_MJB_Stat8: 4.735526449086733e-05 - syst_JES_MJB_Stat9: 4.993498047461319e-05 - syst_JES_MJB_Threshold: 0.000765700065299723 - syst_JES_Pileup_MuOffset: 0.0016605065492192434 - syst_JES_Pileup_NPVOffset: 0.0016968965790524772 - syst_JES_Pileup_Pt_term: 0.0017912233249932853 - syst_JES_Pileup_Rho_topology: 0.003085550639675194 - syst_JES_PunchThrough_MC15: 0.0005834384350554907 - syst_JES_SingleParticle_HighPt: 3.3983551903825474e-06 - syst_JES_Zjet_MC: 0.005788742933487373 - syst_JES_Zjet_MuScale: 0.0003878412142874968 - syst_JES_Zjet_MuSmearID: 8.115989568130309e-05 - syst_JES_Zjet_MuSmearMS: 0.0016575074660465335 - syst_JES_Zjet_OOC: 0.002746504460218479 - syst_JES_Zjet_Stat1: 0.0001434993473852756 - syst_JES_Zjet_Stat10: 0.00022689594531414618 - syst_JES_Zjet_Stat11: 0.0002920773527680638 - syst_JES_Zjet_Stat12: 0.001104674009606454 - syst_JES_Zjet_Stat13: 0.001787503496500077 - syst_JES_Zjet_Stat2: 9.140687939099552e-06 - syst_JES_Zjet_Stat3: 8.026193789711285e-05 - syst_JES_Zjet_Stat4: 6.579092243615377e-05 - syst_JES_Zjet_Stat5: 7.120848685374518e-05 - syst_JES_Zjet_Stat6: 9.725289340168755e-05 - syst_JES_Zjet_Stat7: 6.77833215105309e-05 - syst_JES_Zjet_Stat8: 7.3229875563188e-05 - syst_JES_Zjet_Stat9: 0.0001454954112678472 - syst_JES_Zjet_Veto: 0.0005777187442865256 - syst_JES_Zjet_dPhi: 0.0004735610071574728 + syst_JER_NP8: 1.75167484e-04 + syst_JES_EtaIntercalibration_Modelling: 1.16525103e-02 + syst_JES_EtaIntercalibration_NonClosure: 4.59908869e-04 + syst_JES_EtaIntercalibration_Stat0: 7.48118974e-17 + syst_JES_EtaIntercalibration_Stat1: 4.62567002e-17 + syst_JES_EtaIntercalibration_Stat10: 7.37317666e-17 + syst_JES_EtaIntercalibration_Stat100: 3.31723184e-06 + syst_JES_EtaIntercalibration_Stat101: 4.72381791e-10 + syst_JES_EtaIntercalibration_Stat102: 2.96621468e-07 + syst_JES_EtaIntercalibration_Stat103: 2.96568954e-07 + syst_JES_EtaIntercalibration_Stat104: 1.23994523e-11 + syst_JES_EtaIntercalibration_Stat105: 2.81285988e-09 + syst_JES_EtaIntercalibration_Stat106: 1.62879961e-10 + syst_JES_EtaIntercalibration_Stat107: 1.10572653e-17 + syst_JES_EtaIntercalibration_Stat108: 7.22273744e-11 + syst_JES_EtaIntercalibration_Stat109: 3.09182408e-09 + syst_JES_EtaIntercalibration_Stat11: 4.74699579e-16 + syst_JES_EtaIntercalibration_Stat110: 1.83827384e-07 + syst_JES_EtaIntercalibration_Stat111: 2.80364828e-07 + syst_JES_EtaIntercalibration_Stat112: 6.94986122e-07 + syst_JES_EtaIntercalibration_Stat113: 6.33600426e-06 + syst_JES_EtaIntercalibration_Stat114: 1.36636820e-06 + syst_JES_EtaIntercalibration_Stat115: 1.27443761e-06 + syst_JES_EtaIntercalibration_Stat116: 7.80247691e-07 + syst_JES_EtaIntercalibration_Stat117: 1.17260521e-08 + syst_JES_EtaIntercalibration_Stat118: 9.23682804e-07 + syst_JES_EtaIntercalibration_Stat119: 8.86581089e-07 + syst_JES_EtaIntercalibration_Stat12: 6.91630578e-14 + syst_JES_EtaIntercalibration_Stat120: 4.60408327e-07 + syst_JES_EtaIntercalibration_Stat121: 3.90526545e-09 + syst_JES_EtaIntercalibration_Stat122: 1.29130555e-07 + syst_JES_EtaIntercalibration_Stat123: 1.40066814e-06 + syst_JES_EtaIntercalibration_Stat124: 2.52028379e-06 + syst_JES_EtaIntercalibration_Stat125: 1.57101506e-08 + syst_JES_EtaIntercalibration_Stat126: 3.83563433e-09 + syst_JES_EtaIntercalibration_Stat127: 1.46011883e-16 + syst_JES_EtaIntercalibration_Stat128: 1.18951883e-07 + syst_JES_EtaIntercalibration_Stat129: 1.70097539e-06 + syst_JES_EtaIntercalibration_Stat13: 3.30395138e-16 + syst_JES_EtaIntercalibration_Stat130: 1.82594371e-06 + syst_JES_EtaIntercalibration_Stat131: 1.15984228e-05 + syst_JES_EtaIntercalibration_Stat132: 4.30734776e-06 + syst_JES_EtaIntercalibration_Stat133: 5.61229953e-06 + syst_JES_EtaIntercalibration_Stat134: 3.58692142e-06 + syst_JES_EtaIntercalibration_Stat135: 4.83667494e-07 + syst_JES_EtaIntercalibration_Stat136: 3.92078294e-06 + syst_JES_EtaIntercalibration_Stat137: 7.27709999e-06 + syst_JES_EtaIntercalibration_Stat138: 3.04062078e-06 + syst_JES_EtaIntercalibration_Stat139: 8.22650970e-07 + syst_JES_EtaIntercalibration_Stat14: 3.29622420e-16 + syst_JES_EtaIntercalibration_Stat140: 4.29301968e-06 + syst_JES_EtaIntercalibration_Stat141: 3.94897974e-06 + syst_JES_EtaIntercalibration_Stat142: 6.36420606e-06 + syst_JES_EtaIntercalibration_Stat143: 8.30271444e-07 + syst_JES_EtaIntercalibration_Stat144: 5.07926104e-06 + syst_JES_EtaIntercalibration_Stat145: 1.05916159e-07 + syst_JES_EtaIntercalibration_Stat146: 2.37730195e-07 + syst_JES_EtaIntercalibration_Stat147: 2.15433492e-06 + syst_JES_EtaIntercalibration_Stat148: 1.55262316e-06 + syst_JES_EtaIntercalibration_Stat149: 1.13483969e-05 + syst_JES_EtaIntercalibration_Stat15: 3.86165071e-16 + syst_JES_EtaIntercalibration_Stat150: 4.03188927e-06 + syst_JES_EtaIntercalibration_Stat151: 1.16606651e-05 + syst_JES_EtaIntercalibration_Stat152: 8.21168109e-06 + syst_JES_EtaIntercalibration_Stat153: 1.04785017e-06 + syst_JES_EtaIntercalibration_Stat154: 1.24160362e-06 + syst_JES_EtaIntercalibration_Stat155: 1.29104156e-05 + syst_JES_EtaIntercalibration_Stat156: 7.28154160e-06 + syst_JES_EtaIntercalibration_Stat157: 9.57609120e-06 + syst_JES_EtaIntercalibration_Stat158: 6.95458647e-06 + syst_JES_EtaIntercalibration_Stat159: 8.20136531e-06 + syst_JES_EtaIntercalibration_Stat16: 4.64794238e-17 + syst_JES_EtaIntercalibration_Stat160: 8.16918266e-07 + syst_JES_EtaIntercalibration_Stat161: 5.34759056e-06 + syst_JES_EtaIntercalibration_Stat162: 8.30055758e-06 + syst_JES_EtaIntercalibration_Stat163: 2.27699446e-06 + syst_JES_EtaIntercalibration_Stat164: 6.58580658e-07 + syst_JES_EtaIntercalibration_Stat165: 6.53316799e-06 + syst_JES_EtaIntercalibration_Stat166: 8.30656121e-06 + syst_JES_EtaIntercalibration_Stat167: 5.20267392e-06 + syst_JES_EtaIntercalibration_Stat168: 2.44828039e-05 + syst_JES_EtaIntercalibration_Stat169: 1.37005219e-05 + syst_JES_EtaIntercalibration_Stat17: 7.58691444e-17 + syst_JES_EtaIntercalibration_Stat170: 1.82614572e-05 + syst_JES_EtaIntercalibration_Stat171: 7.83728231e-06 + syst_JES_EtaIntercalibration_Stat172: 9.24764936e-06 + syst_JES_EtaIntercalibration_Stat173: 1.08428851e-05 + syst_JES_EtaIntercalibration_Stat174: 2.26946580e-05 + syst_JES_EtaIntercalibration_Stat175: 1.88154114e-05 + syst_JES_EtaIntercalibration_Stat176: 1.48259513e-05 + syst_JES_EtaIntercalibration_Stat177: 5.18788608e-06 + syst_JES_EtaIntercalibration_Stat178: 3.58281032e-05 + syst_JES_EtaIntercalibration_Stat179: 1.65622852e-05 + syst_JES_EtaIntercalibration_Stat18: 7.48118974e-17 + syst_JES_EtaIntercalibration_Stat180: 2.92615118e-06 + syst_JES_EtaIntercalibration_Stat181: 2.08885327e-07 + syst_JES_EtaIntercalibration_Stat182: 3.12274507e-05 + syst_JES_EtaIntercalibration_Stat183: 2.46903843e-05 + syst_JES_EtaIntercalibration_Stat184: 4.83008168e-05 + syst_JES_EtaIntercalibration_Stat185: 5.35141113e-05 + syst_JES_EtaIntercalibration_Stat186: 2.09620675e-05 + syst_JES_EtaIntercalibration_Stat187: 8.28183354e-05 + syst_JES_EtaIntercalibration_Stat188: 5.45465755e-05 + syst_JES_EtaIntercalibration_Stat189: 4.47683739e-05 + syst_JES_EtaIntercalibration_Stat19: 4.83742460e-16 + syst_JES_EtaIntercalibration_Stat190: 1.22009229e-05 + syst_JES_EtaIntercalibration_Stat191: 1.00101217e-04 + syst_JES_EtaIntercalibration_Stat192: 7.19328442e-05 + syst_JES_EtaIntercalibration_Stat193: 5.86794741e-05 + syst_JES_EtaIntercalibration_Stat194: 4.25911294e-05 + syst_JES_EtaIntercalibration_Stat195: 3.81536771e-05 + syst_JES_EtaIntercalibration_Stat196: 5.12006328e-05 + syst_JES_EtaIntercalibration_Stat197: 3.70352278e-05 + syst_JES_EtaIntercalibration_Stat198: 5.65039769e-05 + syst_JES_EtaIntercalibration_Stat199: 3.00414946e-05 + syst_JES_EtaIntercalibration_Stat2: 7.01952648e-17 + syst_JES_EtaIntercalibration_Stat20: 7.48118974e-17 + syst_JES_EtaIntercalibration_Stat200: 7.55702805e-05 + syst_JES_EtaIntercalibration_Stat201: 6.53209432e-05 + syst_JES_EtaIntercalibration_Stat202: 1.29666128e-04 + syst_JES_EtaIntercalibration_Stat203: 1.16097574e-04 + syst_JES_EtaIntercalibration_Stat204: 1.02655941e-04 + syst_JES_EtaIntercalibration_Stat205: 9.14437767e-05 + syst_JES_EtaIntercalibration_Stat206: 1.20939221e-04 + syst_JES_EtaIntercalibration_Stat207: 1.10157140e-04 + syst_JES_EtaIntercalibration_Stat208: 9.70256949e-05 + syst_JES_EtaIntercalibration_Stat209: 8.52589139e-05 + syst_JES_EtaIntercalibration_Stat21: 7.48118974e-17 + syst_JES_EtaIntercalibration_Stat210: 5.70522048e-05 + syst_JES_EtaIntercalibration_Stat211: 6.94505702e-05 + syst_JES_EtaIntercalibration_Stat212: 2.17673655e-05 + syst_JES_EtaIntercalibration_Stat213: 1.18591269e-05 + syst_JES_EtaIntercalibration_Stat214: 3.58829361e-05 + syst_JES_EtaIntercalibration_Stat215: 6.94876469e-05 + syst_JES_EtaIntercalibration_Stat216: 7.93961792e-05 + syst_JES_EtaIntercalibration_Stat217: 4.66789985e-05 + syst_JES_EtaIntercalibration_Stat218: 4.70585346e-05 + syst_JES_EtaIntercalibration_Stat219: 8.24539393e-05 + syst_JES_EtaIntercalibration_Stat22: 7.48118974e-17 + syst_JES_EtaIntercalibration_Stat220: 3.70952153e-05 + syst_JES_EtaIntercalibration_Stat221: 3.92663558e-05 + syst_JES_EtaIntercalibration_Stat222: 3.94490551e-06 + syst_JES_EtaIntercalibration_Stat223: 3.09851836e-05 + syst_JES_EtaIntercalibration_Stat224: 2.29258671e-05 + syst_JES_EtaIntercalibration_Stat225: 3.46807310e-05 + syst_JES_EtaIntercalibration_Stat226: 3.61948239e-05 + syst_JES_EtaIntercalibration_Stat227: 5.26055632e-05 + syst_JES_EtaIntercalibration_Stat228: 5.80598734e-05 + syst_JES_EtaIntercalibration_Stat229: 3.62233084e-05 + syst_JES_EtaIntercalibration_Stat23: 2.06661106e-15 + syst_JES_EtaIntercalibration_Stat230: 4.82672402e-05 + syst_JES_EtaIntercalibration_Stat231: 8.11172502e-05 + syst_JES_EtaIntercalibration_Stat232: 2.16656647e-05 + syst_JES_EtaIntercalibration_Stat233: 1.87023290e-05 + syst_JES_EtaIntercalibration_Stat234: 2.20908076e-05 + syst_JES_EtaIntercalibration_Stat235: 2.08019302e-05 + syst_JES_EtaIntercalibration_Stat236: 1.89627403e-06 + syst_JES_EtaIntercalibration_Stat237: 6.75549959e-06 + syst_JES_EtaIntercalibration_Stat238: 6.36442415e-06 + syst_JES_EtaIntercalibration_Stat239: 2.61940184e-06 + syst_JES_EtaIntercalibration_Stat24: 7.45436973e-14 + syst_JES_EtaIntercalibration_Stat240: 6.69196031e-06 + syst_JES_EtaIntercalibration_Stat241: 1.57616623e-06 + syst_JES_EtaIntercalibration_Stat242: 2.64245773e-06 + syst_JES_EtaIntercalibration_Stat243: 3.12022451e-06 + syst_JES_EtaIntercalibration_Stat244: 3.54397499e-06 + syst_JES_EtaIntercalibration_Stat245: 4.26994158e-06 + syst_JES_EtaIntercalibration_Stat25: 7.19149225e-14 + syst_JES_EtaIntercalibration_Stat26: 4.61995443e-16 + syst_JES_EtaIntercalibration_Stat27: 6.22688245e-14 + syst_JES_EtaIntercalibration_Stat28: 6.24719353e-15 + syst_JES_EtaIntercalibration_Stat29: 9.01221575e-14 + syst_JES_EtaIntercalibration_Stat3: 1.22720465e-16 + syst_JES_EtaIntercalibration_Stat30: 7.57307408e-14 + syst_JES_EtaIntercalibration_Stat31: 9.36954028e-08 + syst_JES_EtaIntercalibration_Stat32: 9.43968140e-08 + syst_JES_EtaIntercalibration_Stat33: 3.12530011e-14 + syst_JES_EtaIntercalibration_Stat34: 6.92145805e-13 + syst_JES_EtaIntercalibration_Stat35: 7.33783326e-07 + syst_JES_EtaIntercalibration_Stat36: 1.60165874e-12 + syst_JES_EtaIntercalibration_Stat37: 1.52170868e-12 + syst_JES_EtaIntercalibration_Stat38: 2.90249251e-13 + syst_JES_EtaIntercalibration_Stat39: 3.04581135e-13 + syst_JES_EtaIntercalibration_Stat4: 4.62567002e-17 + syst_JES_EtaIntercalibration_Stat40: 7.57964397e-15 + syst_JES_EtaIntercalibration_Stat41: 3.22011330e-17 + syst_JES_EtaIntercalibration_Stat42: 2.81458256e-16 + syst_JES_EtaIntercalibration_Stat43: 7.48118974e-17 + syst_JES_EtaIntercalibration_Stat44: 7.48118974e-17 + syst_JES_EtaIntercalibration_Stat45: 7.01952648e-17 + syst_JES_EtaIntercalibration_Stat46: 4.43736409e-14 + syst_JES_EtaIntercalibration_Stat47: 1.65585154e-12 + syst_JES_EtaIntercalibration_Stat48: 7.79453646e-14 + syst_JES_EtaIntercalibration_Stat49: 1.36189164e-13 + syst_JES_EtaIntercalibration_Stat5: 4.58127439e-17 + syst_JES_EtaIntercalibration_Stat50: 9.36866560e-08 + syst_JES_EtaIntercalibration_Stat51: 4.04574320e-13 + syst_JES_EtaIntercalibration_Stat52: 9.99416329e-14 + syst_JES_EtaIntercalibration_Stat53: 9.36941910e-08 + syst_JES_EtaIntercalibration_Stat54: 9.36780665e-08 + syst_JES_EtaIntercalibration_Stat55: 1.43198790e-13 + syst_JES_EtaIntercalibration_Stat56: 1.10150270e-12 + syst_JES_EtaIntercalibration_Stat57: 2.51927461e-07 + syst_JES_EtaIntercalibration_Stat58: 3.53777907e-12 + syst_JES_EtaIntercalibration_Stat59: 1.86447116e-12 + syst_JES_EtaIntercalibration_Stat6: 6.76556034e-17 + syst_JES_EtaIntercalibration_Stat60: 6.39867261e-16 + syst_JES_EtaIntercalibration_Stat61: 2.62396592e-13 + syst_JES_EtaIntercalibration_Stat62: 2.68215615e-14 + syst_JES_EtaIntercalibration_Stat63: 1.01991760e-14 + syst_JES_EtaIntercalibration_Stat64: 3.46912730e-17 + syst_JES_EtaIntercalibration_Stat65: 7.48118974e-17 + syst_JES_EtaIntercalibration_Stat66: 7.48118974e-17 + syst_JES_EtaIntercalibration_Stat67: 8.50275031e-14 + syst_JES_EtaIntercalibration_Stat68: 1.34112718e-11 + syst_JES_EtaIntercalibration_Stat69: 1.32889438e-11 + syst_JES_EtaIntercalibration_Stat7: 2.85988535e-16 + syst_JES_EtaIntercalibration_Stat70: 2.75134526e-12 + syst_JES_EtaIntercalibration_Stat71: 1.49848949e-12 + syst_JES_EtaIntercalibration_Stat72: 9.36780302e-08 + syst_JES_EtaIntercalibration_Stat73: 3.05706571e-07 + syst_JES_EtaIntercalibration_Stat74: 3.26671642e-07 + syst_JES_EtaIntercalibration_Stat75: 6.32285149e-07 + syst_JES_EtaIntercalibration_Stat76: 9.32451132e-08 + syst_JES_EtaIntercalibration_Stat77: 2.76235056e-12 + syst_JES_EtaIntercalibration_Stat78: 6.58265923e-07 + syst_JES_EtaIntercalibration_Stat79: 3.62771769e-07 + syst_JES_EtaIntercalibration_Stat8: 6.84012986e-15 + syst_JES_EtaIntercalibration_Stat80: 2.52977412e-07 + syst_JES_EtaIntercalibration_Stat81: 2.54668307e-07 + syst_JES_EtaIntercalibration_Stat82: 2.96522439e-07 + syst_JES_EtaIntercalibration_Stat83: 3.53307469e-14 + syst_JES_EtaIntercalibration_Stat84: 3.49362454e-13 + syst_JES_EtaIntercalibration_Stat85: 1.12192867e-13 + syst_JES_EtaIntercalibration_Stat86: 2.78727846e-16 + syst_JES_EtaIntercalibration_Stat87: 4.58127439e-17 + syst_JES_EtaIntercalibration_Stat88: 7.40773888e-14 + syst_JES_EtaIntercalibration_Stat89: 1.30023390e-10 + syst_JES_EtaIntercalibration_Stat9: 6.82474882e-15 + syst_JES_EtaIntercalibration_Stat90: 1.26295201e-10 + syst_JES_EtaIntercalibration_Stat91: 2.83205997e-12 + syst_JES_EtaIntercalibration_Stat92: 1.30529899e-11 + syst_JES_EtaIntercalibration_Stat93: 9.36749788e-08 + syst_JES_EtaIntercalibration_Stat94: 2.84306326e-07 + syst_JES_EtaIntercalibration_Stat95: 2.84264960e-07 + syst_JES_EtaIntercalibration_Stat96: 6.63805643e-07 + syst_JES_EtaIntercalibration_Stat97: 1.35440236e-10 + syst_JES_EtaIntercalibration_Stat98: 1.55743015e-11 + syst_JES_EtaIntercalibration_Stat99: 1.22753530e-06 + syst_JES_EtaIntercalibration_TotalStat_MJB: 2.17000046e-03 + syst_JES_Flavour_Comp: 6.54318363e-03 + syst_JES_Flavour_Response: 2.74250009e-03 + syst_JES_Gjet_Generator: 1.01362668e-02 + syst_JES_Gjet_OOC: 8.04491939e-03 + syst_JES_Gjet_Purity: 2.20250556e-03 + syst_JES_Gjet_Stat1: 2.06454789e-05 + syst_JES_Gjet_Stat10: 2.21152640e-04 + syst_JES_Gjet_Stat11: 3.02351517e-04 + syst_JES_Gjet_Stat12: 9.38886451e-04 + syst_JES_Gjet_Stat13: 2.23862162e-03 + syst_JES_Gjet_Stat14: 2.78226203e-03 + syst_JES_Gjet_Stat15: 1.21205833e-04 + syst_JES_Gjet_Stat2: 3.12058436e-05 + syst_JES_Gjet_Stat3: 3.57658892e-05 + syst_JES_Gjet_Stat4: 4.17003345e-05 + syst_JES_Gjet_Stat5: 4.13992488e-05 + syst_JES_Gjet_Stat6: 1.26236124e-04 + syst_JES_Gjet_Stat7: 1.21043925e-04 + syst_JES_Gjet_Stat8: 6.39731199e-05 + syst_JES_Gjet_Stat9: 1.21869820e-04 + syst_JES_Gjet_Veto: 6.93048541e-03 + syst_JES_Gjet_dPhi: 7.11839462e-04 + syst_JES_LArESZee: 1.51877673e-02 + syst_JES_LArEsmear: 1.16794653e-03 + syst_JES_LAr_JVT: 1.52962839e-03 + syst_JES_MJB_Alpha: 8.29622215e-05 + syst_JES_MJB_Asym: 6.62450275e-04 + syst_JES_MJB_Beta: 5.11345373e-05 + syst_JES_MJB_Fragmentation: 1.52475834e-03 + syst_JES_MJB_Stat1: 4.20199628e-05 + syst_JES_MJB_Stat10: 1.65735797e-05 + syst_JES_MJB_Stat11: 1.66124734e-05 + syst_JES_MJB_Stat12: 2.08783085e-05 + syst_JES_MJB_Stat13: 2.24719091e-05 + syst_JES_MJB_Stat14: 1.98405210e-05 + syst_JES_MJB_Stat15: 1.39590312e-05 + syst_JES_MJB_Stat16: 3.30357273e-06 + syst_JES_MJB_Stat2: 8.52444708e-05 + syst_JES_MJB_Stat3: 1.18512784e-04 + syst_JES_MJB_Stat4: 5.20502514e-05 + syst_JES_MJB_Stat5: 3.22905478e-05 + syst_JES_MJB_Stat6: 7.06275192e-05 + syst_JES_MJB_Stat7: 4.13981775e-05 + syst_JES_MJB_Stat8: 4.73552645e-05 + syst_JES_MJB_Stat9: 4.99349805e-05 + syst_JES_MJB_Threshold: 7.65700065e-04 + syst_JES_Pileup_MuOffset: 1.66050655e-03 + syst_JES_Pileup_NPVOffset: 1.69689658e-03 + syst_JES_Pileup_Pt_term: 1.79122332e-03 + syst_JES_Pileup_Rho_topology: 3.08555064e-03 + syst_JES_PunchThrough_MC15: 5.83438435e-04 + syst_JES_SingleParticle_HighPt: 3.39835519e-06 + syst_JES_Zjet_MC: 5.78874293e-03 + syst_JES_Zjet_MuScale: 3.87841214e-04 + syst_JES_Zjet_MuSmearID: 8.11598957e-05 + syst_JES_Zjet_MuSmearMS: 1.65750747e-03 + syst_JES_Zjet_OOC: 2.74650446e-03 + syst_JES_Zjet_Stat1: 1.43499347e-04 + syst_JES_Zjet_Stat10: 2.26895945e-04 + syst_JES_Zjet_Stat11: 2.92077353e-04 + syst_JES_Zjet_Stat12: 1.10467401e-03 + syst_JES_Zjet_Stat13: 1.78750350e-03 + syst_JES_Zjet_Stat2: 9.14068794e-06 + syst_JES_Zjet_Stat3: 8.02619379e-05 + syst_JES_Zjet_Stat4: 6.57909224e-05 + syst_JES_Zjet_Stat5: 7.12084869e-05 + syst_JES_Zjet_Stat6: 9.72528934e-05 + syst_JES_Zjet_Stat7: 6.77833215e-05 + syst_JES_Zjet_Stat8: 7.32298756e-05 + syst_JES_Zjet_Stat9: 1.45495411e-04 + syst_JES_Zjet_Veto: 5.77718744e-04 + syst_JES_Zjet_dPhi: 4.73561007e-04 syst_PRW: 0.0 syst_Unfolding_bias: 0.0 - syst_cleaning: 0.004578676309808327 + syst_cleaning: 4.57867631e-03 syst_lumi: 0.00991 -- stat: 0.0013197 - syst_JER_CROSS_CALIB_FORWARD: 1.549e-12 - syst_JER_NOISE_FORWARD: 2.351e-09 - syst_JER_NP0: 0.0005236034066925082 - syst_JER_NP1: 8.8825188291385e-05 - syst_JER_NP2: 0.00022268827427594835 - syst_JER_NP3: 4.552482262458581e-05 - syst_JER_NP4: 3.154987599024757e-05 - syst_JER_NP5: 3.533383647592699e-05 - syst_JER_NP6: 2.8665007849292492e-15 +- stat: 1.31970000e-03 + syst_JER_CROSS_CALIB_FORWARD: 1.54900000e-12 + syst_JER_NOISE_FORWARD: 2.35100000e-09 + syst_JER_NP0: 5.23603407e-04 + syst_JER_NP1: 8.88251883e-05 + syst_JER_NP2: 2.22688274e-04 + syst_JER_NP3: 4.55248226e-05 + syst_JER_NP4: 3.15498760e-05 + syst_JER_NP5: 3.53338365e-05 + syst_JER_NP6: 2.86650078e-15 syst_JER_NP7: 0.0 - syst_JER_NP8: 0.00010511279405952445 - syst_JES_EtaIntercalibration_Modelling: 0.006846189305007567 - syst_JES_EtaIntercalibration_NonClosure: 0.00025398710105042736 - syst_JES_EtaIntercalibration_Stat0: 6.491240251292507e-18 - syst_JES_EtaIntercalibration_Stat1: 3.8427119573941524e-18 - syst_JES_EtaIntercalibration_Stat10: 6.300757474304181e-18 - syst_JES_EtaIntercalibration_Stat100: 1.8307782214840808e-06 - syst_JES_EtaIntercalibration_Stat101: 3.150068381400633e-11 - syst_JES_EtaIntercalibration_Stat102: 8.040510923522397e-08 - syst_JES_EtaIntercalibration_Stat103: 8.036429047032249e-08 - syst_JES_EtaIntercalibration_Stat104: 7.963757353630257e-13 - syst_JES_EtaIntercalibration_Stat105: 1.886770838675169e-10 - syst_JES_EtaIntercalibration_Stat106: 1.0856406385517263e-11 - syst_JES_EtaIntercalibration_Stat107: 1.4131769599027575e-18 - syst_JES_EtaIntercalibration_Stat108: 4.6286208419679395e-12 - syst_JES_EtaIntercalibration_Stat109: 4.2176902055509e-09 - syst_JES_EtaIntercalibration_Stat11: 4.042622261601991e-17 - syst_JES_EtaIntercalibration_Stat110: 1.5803908893688294e-08 - syst_JES_EtaIntercalibration_Stat111: 1.3318255691718793e-07 - syst_JES_EtaIntercalibration_Stat112: 1.2827274876215915e-07 - syst_JES_EtaIntercalibration_Stat113: 3.2724172640419804e-06 - syst_JES_EtaIntercalibration_Stat114: 1.2501225019973043e-06 - syst_JES_EtaIntercalibration_Stat115: 4.2000247618317684e-07 - syst_JES_EtaIntercalibration_Stat116: 4.197308780635516e-07 - syst_JES_EtaIntercalibration_Stat117: 8.783306595468474e-10 - syst_JES_EtaIntercalibration_Stat118: 4.148859547237048e-07 - syst_JES_EtaIntercalibration_Stat119: 4.386787292541092e-07 - syst_JES_EtaIntercalibration_Stat12: 4.811905596538652e-15 - syst_JES_EtaIntercalibration_Stat120: 3.350176823691549e-07 - syst_JES_EtaIntercalibration_Stat121: 2.603230836326275e-10 - syst_JES_EtaIntercalibration_Stat122: 1.0665925832241339e-07 - syst_JES_EtaIntercalibration_Stat123: 2.953244783284988e-07 - syst_JES_EtaIntercalibration_Stat124: 4.2871097350079575e-07 - syst_JES_EtaIntercalibration_Stat125: 1.342887083860739e-09 - syst_JES_EtaIntercalibration_Stat126: 2.571084012629692e-10 - syst_JES_EtaIntercalibration_Stat127: 2.0360257242972153e-17 - syst_JES_EtaIntercalibration_Stat128: 1.3757547701171163e-08 - syst_JES_EtaIntercalibration_Stat129: 5.728513230071198e-07 - syst_JES_EtaIntercalibration_Stat13: 3.208073370420321e-17 - syst_JES_EtaIntercalibration_Stat130: 8.118836857580032e-07 - syst_JES_EtaIntercalibration_Stat131: 3.4357547933459977e-06 - syst_JES_EtaIntercalibration_Stat132: 1.684519136133514e-06 - syst_JES_EtaIntercalibration_Stat133: 1.8386556284416066e-06 - syst_JES_EtaIntercalibration_Stat134: 4.664221898666486e-07 - syst_JES_EtaIntercalibration_Stat135: 8.21088202128736e-08 - syst_JES_EtaIntercalibration_Stat136: 5.321514070262334e-07 - syst_JES_EtaIntercalibration_Stat137: 4.854415309797875e-06 - syst_JES_EtaIntercalibration_Stat138: 1.0893120810860403e-06 - syst_JES_EtaIntercalibration_Stat139: 5.581790140044679e-07 - syst_JES_EtaIntercalibration_Stat14: 3.1951722958238106e-17 - syst_JES_EtaIntercalibration_Stat140: 1.805336741441884e-06 - syst_JES_EtaIntercalibration_Stat141: 1.564543309563529e-06 - syst_JES_EtaIntercalibration_Stat142: 5.631005838213987e-06 - syst_JES_EtaIntercalibration_Stat143: 2.9077786624844747e-07 - syst_JES_EtaIntercalibration_Stat144: 6.198074513756267e-07 - syst_JES_EtaIntercalibration_Stat145: 1.144197135637037e-08 - syst_JES_EtaIntercalibration_Stat146: 3.421353387184668e-08 - syst_JES_EtaIntercalibration_Stat147: 7.026046799587945e-07 - syst_JES_EtaIntercalibration_Stat148: 7.955442219480951e-07 - syst_JES_EtaIntercalibration_Stat149: 2.904649204293007e-06 - syst_JES_EtaIntercalibration_Stat15: 3.2990489822826215e-17 - syst_JES_EtaIntercalibration_Stat150: 1.6057429028334517e-06 - syst_JES_EtaIntercalibration_Stat151: 3.057045330821903e-06 - syst_JES_EtaIntercalibration_Stat152: 1.5418744612382522e-06 - syst_JES_EtaIntercalibration_Stat153: 2.992830558184008e-09 - syst_JES_EtaIntercalibration_Stat154: 6.186402246055457e-07 - syst_JES_EtaIntercalibration_Stat155: 5.631281292920822e-06 - syst_JES_EtaIntercalibration_Stat156: 8.238499666201376e-07 - syst_JES_EtaIntercalibration_Stat157: 2.0676442440613424e-06 - syst_JES_EtaIntercalibration_Stat158: 2.6509450360343194e-06 - syst_JES_EtaIntercalibration_Stat159: 3.7584202798516292e-06 - syst_JES_EtaIntercalibration_Stat16: 4.0279850881054664e-18 - syst_JES_EtaIntercalibration_Stat160: 1.575176273270709e-07 - syst_JES_EtaIntercalibration_Stat161: 7.287478764977637e-07 - syst_JES_EtaIntercalibration_Stat162: 1.205092383209997e-06 - syst_JES_EtaIntercalibration_Stat163: 2.122682072302633e-07 - syst_JES_EtaIntercalibration_Stat164: 1.60741968073058e-08 - syst_JES_EtaIntercalibration_Stat165: 2.5704700285161856e-06 - syst_JES_EtaIntercalibration_Stat166: 2.5958169595524256e-06 - syst_JES_EtaIntercalibration_Stat167: 9.524403235898824e-07 - syst_JES_EtaIntercalibration_Stat168: 6.173912399767265e-06 - syst_JES_EtaIntercalibration_Stat169: 1.7666918237202548e-06 - syst_JES_EtaIntercalibration_Stat17: 6.594881879154471e-18 - syst_JES_EtaIntercalibration_Stat170: 4.69277615063834e-06 - syst_JES_EtaIntercalibration_Stat171: 2.6272164794702394e-06 - syst_JES_EtaIntercalibration_Stat172: 9.695406077106827e-07 - syst_JES_EtaIntercalibration_Stat173: 2.099555114321841e-06 - syst_JES_EtaIntercalibration_Stat174: 6.936443667326939e-06 - syst_JES_EtaIntercalibration_Stat175: 5.705052854871285e-06 - syst_JES_EtaIntercalibration_Stat176: 6.287904713614862e-06 - syst_JES_EtaIntercalibration_Stat177: 2.494635961257674e-06 - syst_JES_EtaIntercalibration_Stat178: 1.035646458437917e-05 - syst_JES_EtaIntercalibration_Stat179: 6.380504917324334e-06 - syst_JES_EtaIntercalibration_Stat18: 6.491240251292507e-18 - syst_JES_EtaIntercalibration_Stat180: 1.8329180798660914e-07 - syst_JES_EtaIntercalibration_Stat181: 1.8125911701071843e-07 - syst_JES_EtaIntercalibration_Stat182: 8.338589853806217e-06 - syst_JES_EtaIntercalibration_Stat183: 1.1402090466227349e-05 - syst_JES_EtaIntercalibration_Stat184: 1.6075217945645405e-05 - syst_JES_EtaIntercalibration_Stat185: 1.628120071585631e-05 - syst_JES_EtaIntercalibration_Stat186: 7.2081365657151635e-06 - syst_JES_EtaIntercalibration_Stat187: 2.8422362674485733e-05 - syst_JES_EtaIntercalibration_Stat188: 1.9612750954417385e-05 - syst_JES_EtaIntercalibration_Stat189: 1.0309743874122189e-05 - syst_JES_EtaIntercalibration_Stat19: 4.8141926633652705e-17 - syst_JES_EtaIntercalibration_Stat190: 5.264283498255009e-06 - syst_JES_EtaIntercalibration_Stat191: 2.820993220481042e-05 - syst_JES_EtaIntercalibration_Stat192: 2.3545114142853507e-05 - syst_JES_EtaIntercalibration_Stat193: 2.2021046183140345e-05 - syst_JES_EtaIntercalibration_Stat194: 1.7485052902407816e-05 - syst_JES_EtaIntercalibration_Stat195: 1.9820196063611483e-05 - syst_JES_EtaIntercalibration_Stat196: 1.4859855542702964e-05 - syst_JES_EtaIntercalibration_Stat197: 8.50355518298082e-06 - syst_JES_EtaIntercalibration_Stat198: 2.3880152323634786e-05 - syst_JES_EtaIntercalibration_Stat199: 1.4293335090174021e-05 - syst_JES_EtaIntercalibration_Stat2: 6.579213630822455e-18 - syst_JES_EtaIntercalibration_Stat20: 6.491240251292507e-18 - syst_JES_EtaIntercalibration_Stat200: 2.8337400639437627e-05 - syst_JES_EtaIntercalibration_Stat201: 2.186773483925576e-05 - syst_JES_EtaIntercalibration_Stat202: 4.3898105505818816e-05 - syst_JES_EtaIntercalibration_Stat203: 4.54461122979733e-05 - syst_JES_EtaIntercalibration_Stat204: 3.6168083651197226e-05 - syst_JES_EtaIntercalibration_Stat205: 4.081727177311095e-05 - syst_JES_EtaIntercalibration_Stat206: 4.0950057387017175e-05 - syst_JES_EtaIntercalibration_Stat207: 4.008467412864922e-05 - syst_JES_EtaIntercalibration_Stat208: 4.218495821972566e-05 - syst_JES_EtaIntercalibration_Stat209: 3.347252800058579e-05 - syst_JES_EtaIntercalibration_Stat21: 6.491240251292507e-18 - syst_JES_EtaIntercalibration_Stat210: 2.666897448347049e-05 - syst_JES_EtaIntercalibration_Stat211: 3.174819364940311e-05 - syst_JES_EtaIntercalibration_Stat212: 1.0895240336954482e-05 - syst_JES_EtaIntercalibration_Stat213: 6.966072029486919e-06 - syst_JES_EtaIntercalibration_Stat214: 1.4971906917624088e-05 - syst_JES_EtaIntercalibration_Stat215: 3.0802095707922206e-05 - syst_JES_EtaIntercalibration_Stat216: 3.860703918976435e-05 - syst_JES_EtaIntercalibration_Stat217: 2.0890108352998077e-05 - syst_JES_EtaIntercalibration_Stat218: 2.7004378811592762e-05 - syst_JES_EtaIntercalibration_Stat219: 3.292512832169375e-05 - syst_JES_EtaIntercalibration_Stat22: 6.491240251292507e-18 - syst_JES_EtaIntercalibration_Stat220: 2.0893239115800116e-05 - syst_JES_EtaIntercalibration_Stat221: 2.521566106609145e-05 - syst_JES_EtaIntercalibration_Stat222: 9.28011212216749e-06 - syst_JES_EtaIntercalibration_Stat223: 2.099667295073198e-05 - syst_JES_EtaIntercalibration_Stat224: 1.2032692414833846e-05 - syst_JES_EtaIntercalibration_Stat225: 2.4661029986600317e-05 - syst_JES_EtaIntercalibration_Stat226: 2.6653894180775912e-05 - syst_JES_EtaIntercalibration_Stat227: 3.694060909080953e-05 - syst_JES_EtaIntercalibration_Stat228: 4.2502511396386915e-05 - syst_JES_EtaIntercalibration_Stat229: 3.2010590435041964e-05 - syst_JES_EtaIntercalibration_Stat23: 1.7871026610690278e-16 - syst_JES_EtaIntercalibration_Stat230: 2.9961746861623406e-05 - syst_JES_EtaIntercalibration_Stat231: 5.7327168951553846e-05 - syst_JES_EtaIntercalibration_Stat232: 3.3346029280110694e-05 - syst_JES_EtaIntercalibration_Stat233: 2.744557159178872e-05 - syst_JES_EtaIntercalibration_Stat234: 2.7737312198553053e-05 - syst_JES_EtaIntercalibration_Stat235: 1.5891566159443123e-05 - syst_JES_EtaIntercalibration_Stat236: 6.31943383540013e-07 - syst_JES_EtaIntercalibration_Stat237: 5.91633433808469e-06 - syst_JES_EtaIntercalibration_Stat238: 4.8673322454400005e-06 - syst_JES_EtaIntercalibration_Stat239: 3.1095326015335486e-06 - syst_JES_EtaIntercalibration_Stat24: 5.175161519218507e-15 - syst_JES_EtaIntercalibration_Stat240: 1.7621944862869137e-06 - syst_JES_EtaIntercalibration_Stat241: 9.688226192801044e-07 - syst_JES_EtaIntercalibration_Stat242: 1.841902481131941e-06 - syst_JES_EtaIntercalibration_Stat243: 3.7424298243253675e-06 - syst_JES_EtaIntercalibration_Stat244: 7.912984378064953e-07 - syst_JES_EtaIntercalibration_Stat245: 5.637344587658271e-06 - syst_JES_EtaIntercalibration_Stat25: 5.020804842602429e-15 - syst_JES_EtaIntercalibration_Stat26: 3.888366992388964e-17 - syst_JES_EtaIntercalibration_Stat27: 4.182923933455521e-15 - syst_JES_EtaIntercalibration_Stat28: 4.78813128788257e-16 - syst_JES_EtaIntercalibration_Stat29: 6.256259585407242e-15 - syst_JES_EtaIntercalibration_Stat3: 1.1866818781796577e-17 - syst_JES_EtaIntercalibration_Stat30: 5.19078613988286e-15 - syst_JES_EtaIntercalibration_Stat31: 8.777175411723751e-09 - syst_JES_EtaIntercalibration_Stat32: 8.823935956566828e-09 - syst_JES_EtaIntercalibration_Stat33: 1.6683085615901514e-15 - syst_JES_EtaIntercalibration_Stat34: 4.805717497679197e-14 - syst_JES_EtaIntercalibration_Stat35: 3.9386835371468826e-07 - syst_JES_EtaIntercalibration_Stat36: 1.0164128406803998e-13 - syst_JES_EtaIntercalibration_Stat37: 1.0976996480534873e-13 - syst_JES_EtaIntercalibration_Stat38: 1.9938635560138007e-14 - syst_JES_EtaIntercalibration_Stat39: 2.0905853247356347e-14 - syst_JES_EtaIntercalibration_Stat4: 3.8427119573941524e-18 - syst_JES_EtaIntercalibration_Stat40: 5.943232874454777e-16 - syst_JES_EtaIntercalibration_Stat41: 3.869467038236661e-18 - syst_JES_EtaIntercalibration_Stat42: 2.7660851396874974e-17 - syst_JES_EtaIntercalibration_Stat43: 6.491240251292507e-18 - syst_JES_EtaIntercalibration_Stat44: 6.491240251292507e-18 - syst_JES_EtaIntercalibration_Stat45: 6.579213630822455e-18 - syst_JES_EtaIntercalibration_Stat46: 2.617012186650074e-15 - syst_JES_EtaIntercalibration_Stat47: 1.0856044928057365e-13 - syst_JES_EtaIntercalibration_Stat48: 5.333276508863945e-15 - syst_JES_EtaIntercalibration_Stat49: 9.172267665086972e-15 - syst_JES_EtaIntercalibration_Stat5: 3.975056603370574e-18 - syst_JES_EtaIntercalibration_Stat50: 8.777169364241234e-09 - syst_JES_EtaIntercalibration_Stat51: 2.7712922270125175e-14 - syst_JES_EtaIntercalibration_Stat52: 7.033199817117384e-15 - syst_JES_EtaIntercalibration_Stat53: 8.777653992777269e-09 - syst_JES_EtaIntercalibration_Stat54: 8.776308326875066e-09 - syst_JES_EtaIntercalibration_Stat55: 9.014781236946352e-15 - syst_JES_EtaIntercalibration_Stat56: 7.137902462733712e-14 - syst_JES_EtaIntercalibration_Stat57: 3.327966829755501e-08 - syst_JES_EtaIntercalibration_Stat58: 2.3081968611884036e-13 - syst_JES_EtaIntercalibration_Stat59: 1.2182881706602713e-13 - syst_JES_EtaIntercalibration_Stat6: 6.528778431490841e-18 - syst_JES_EtaIntercalibration_Stat60: 6.568508115812905e-17 - syst_JES_EtaIntercalibration_Stat61: 1.818228205609791e-14 - syst_JES_EtaIntercalibration_Stat62: 2.0777810682312037e-15 - syst_JES_EtaIntercalibration_Stat63: 7.758381506235691e-16 - syst_JES_EtaIntercalibration_Stat64: 3.637994528583022e-18 - syst_JES_EtaIntercalibration_Stat65: 6.491240251292507e-18 - syst_JES_EtaIntercalibration_Stat66: 6.491240251292507e-18 - syst_JES_EtaIntercalibration_Stat67: 6.062637606685724e-15 - syst_JES_EtaIntercalibration_Stat68: 8.634876605951008e-13 - syst_JES_EtaIntercalibration_Stat69: 8.531386874359877e-13 - syst_JES_EtaIntercalibration_Stat7: 2.4530733274812638e-17 - syst_JES_EtaIntercalibration_Stat70: 1.8046691525041368e-13 - syst_JES_EtaIntercalibration_Stat71: 9.863331118339281e-14 - syst_JES_EtaIntercalibration_Stat72: 8.776305173661314e-09 - syst_JES_EtaIntercalibration_Stat73: 8.52415902406214e-08 - syst_JES_EtaIntercalibration_Stat74: 8.851689618177226e-08 - syst_JES_EtaIntercalibration_Stat75: 3.39412676441896e-07 - syst_JES_EtaIntercalibration_Stat76: 8.735609168608583e-09 - syst_JES_EtaIntercalibration_Stat77: 1.7779361634003482e-13 - syst_JES_EtaIntercalibration_Stat78: 3.533383659062571e-07 - syst_JES_EtaIntercalibration_Stat79: 3.2727059666862794e-07 - syst_JES_EtaIntercalibration_Stat8: 5.26167925351546e-16 - syst_JES_EtaIntercalibration_Stat80: 3.334097005501711e-08 - syst_JES_EtaIntercalibration_Stat81: 6.833789154722291e-08 - syst_JES_EtaIntercalibration_Stat82: 8.034088082142846e-08 - syst_JES_EtaIntercalibration_Stat83: 3.0717374025134376e-15 - syst_JES_EtaIntercalibration_Stat84: 2.426540243288786e-14 - syst_JES_EtaIntercalibration_Stat85: 7.729355743365678e-15 - syst_JES_EtaIntercalibration_Stat86: 2.3618221524915883e-17 - syst_JES_EtaIntercalibration_Stat87: 3.975056603370574e-18 - syst_JES_EtaIntercalibration_Stat88: 5.1473663897181445e-15 - syst_JES_EtaIntercalibration_Stat89: 8.675931250880218e-12 - syst_JES_EtaIntercalibration_Stat9: 5.229019421220388e-16 - syst_JES_EtaIntercalibration_Stat90: 8.423064670011742e-12 - syst_JES_EtaIntercalibration_Stat91: 1.8594243645547943e-13 - syst_JES_EtaIntercalibration_Stat92: 8.350030818506001e-13 - syst_JES_EtaIntercalibration_Stat93: 8.774374927948074e-09 - syst_JES_EtaIntercalibration_Stat94: 7.91767413007128e-08 - syst_JES_EtaIntercalibration_Stat95: 7.66330861964987e-08 - syst_JES_EtaIntercalibration_Stat96: 3.562826748522297e-07 - syst_JES_EtaIntercalibration_Stat97: 9.028479610654277e-12 - syst_JES_EtaIntercalibration_Stat98: 1.0033099371580051e-12 - syst_JES_EtaIntercalibration_Stat99: 6.589558919229724e-07 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0013164319731759785 - syst_JES_Flavour_Comp: 0.003858521565314881 - syst_JES_Flavour_Response: 0.0012274331539843628 - syst_JES_Gjet_Generator: 0.0056062289464487635 - syst_JES_Gjet_OOC: 0.004548236911155795 - syst_JES_Gjet_Purity: 0.0011302007200050797 - syst_JES_Gjet_Stat1: 1.426920978891263e-05 - syst_JES_Gjet_Stat10: 0.00010096161300217028 - syst_JES_Gjet_Stat11: 0.00013220620257764005 - syst_JES_Gjet_Stat12: 0.00043955321350207417 - syst_JES_Gjet_Stat13: 0.0012176004547880229 - syst_JES_Gjet_Stat14: 0.0019716310506786 - syst_JES_Gjet_Stat15: 0.00045697148707550674 - syst_JES_Gjet_Stat2: 1.4573006278733294e-05 - syst_JES_Gjet_Stat3: 1.7064408926183173e-05 - syst_JES_Gjet_Stat4: 2.1967449117956324e-05 - syst_JES_Gjet_Stat5: 2.1785496706524732e-05 - syst_JES_Gjet_Stat6: 5.649698576030406e-05 - syst_JES_Gjet_Stat7: 6.583261710580858e-05 - syst_JES_Gjet_Stat8: 3.278675342268582e-05 - syst_JES_Gjet_Stat9: 5.9448612052763686e-05 - syst_JES_Gjet_Veto: 0.004158834782724603 - syst_JES_Gjet_dPhi: 0.000411277262682974 - syst_JES_LArESZee: 0.008496602423910395 - syst_JES_LArEsmear: 0.0006673866701545663 - syst_JES_LAr_JVT: 0.0008558904836484631 - syst_JES_MJB_Alpha: 3.9718339277970825e-05 - syst_JES_MJB_Asym: 0.0004675957228204723 - syst_JES_MJB_Beta: 2.8556639626363606e-05 - syst_JES_MJB_Fragmentation: 0.0007863032557480607 - syst_JES_MJB_Stat1: 1.3131821151310277e-05 - syst_JES_MJB_Stat10: 2.067702348018205e-05 - syst_JES_MJB_Stat11: 1.607869630909173e-05 - syst_JES_MJB_Stat12: 1.386566763628784e-05 - syst_JES_MJB_Stat13: 1.5435437246803215e-05 - syst_JES_MJB_Stat14: 2.0442369603350782e-05 - syst_JES_MJB_Stat15: 1.729485689446432e-05 - syst_JES_MJB_Stat16: 7.256815055518502e-06 - syst_JES_MJB_Stat2: 2.8857085784950634e-05 - syst_JES_MJB_Stat3: 6.212432434240232e-05 - syst_JES_MJB_Stat4: 2.206380010333669e-05 - syst_JES_MJB_Stat5: 1.4726051303727011e-05 - syst_JES_MJB_Stat6: 4.5602978795249774e-05 - syst_JES_MJB_Stat7: 2.9828661971332204e-05 - syst_JES_MJB_Stat8: 3.36563680750018e-05 - syst_JES_MJB_Stat9: 3.170694548517722e-05 - syst_JES_MJB_Threshold: 0.00045194163339971243 - syst_JES_Pileup_MuOffset: 0.0009769299463114026 - syst_JES_Pileup_NPVOffset: 0.001000198154117473 - syst_JES_Pileup_Pt_term: 0.0009373384074068448 - syst_JES_Pileup_Rho_topology: 0.0016727626101751558 - syst_JES_PunchThrough_MC15: 0.00043525820784908815 - syst_JES_SingleParticle_HighPt: 1.8246183381737672e-06 - syst_JES_Zjet_MC: 0.0029209618278916278 - syst_JES_Zjet_MuScale: 0.0001820464432500674 - syst_JES_Zjet_MuSmearID: 3.6929641211362996e-05 - syst_JES_Zjet_MuSmearMS: 0.0008272264064329668 - syst_JES_Zjet_OOC: 0.0014363338156570709 - syst_JES_Zjet_Stat1: 8.385431697295017e-05 - syst_JES_Zjet_Stat10: 0.00010898042071858596 - syst_JES_Zjet_Stat11: 0.0001465351257378244 - syst_JES_Zjet_Stat12: 0.0005087369334931366 - syst_JES_Zjet_Stat13: 0.0008988953595942076 - syst_JES_Zjet_Stat2: 3.2523034081555185e-06 - syst_JES_Zjet_Stat3: 3.361121715662793e-05 - syst_JES_Zjet_Stat4: 4.228760663598734e-05 - syst_JES_Zjet_Stat5: 4.756265008386308e-05 - syst_JES_Zjet_Stat6: 4.8855524508493406e-05 - syst_JES_Zjet_Stat7: 4.55589033559852e-05 - syst_JES_Zjet_Stat8: 3.757700992628339e-05 - syst_JES_Zjet_Stat9: 6.576779378996988e-05 - syst_JES_Zjet_Veto: 0.00029925067669096426 - syst_JES_Zjet_dPhi: 0.0002415922391137596 + syst_JER_NP8: 1.05112794e-04 + syst_JES_EtaIntercalibration_Modelling: 6.84618931e-03 + syst_JES_EtaIntercalibration_NonClosure: 2.53987101e-04 + syst_JES_EtaIntercalibration_Stat0: 6.49124025e-18 + syst_JES_EtaIntercalibration_Stat1: 3.84271196e-18 + syst_JES_EtaIntercalibration_Stat10: 6.30075747e-18 + syst_JES_EtaIntercalibration_Stat100: 1.83077822e-06 + syst_JES_EtaIntercalibration_Stat101: 3.15006838e-11 + syst_JES_EtaIntercalibration_Stat102: 8.04051092e-08 + syst_JES_EtaIntercalibration_Stat103: 8.03642905e-08 + syst_JES_EtaIntercalibration_Stat104: 7.96375735e-13 + syst_JES_EtaIntercalibration_Stat105: 1.88677084e-10 + syst_JES_EtaIntercalibration_Stat106: 1.08564064e-11 + syst_JES_EtaIntercalibration_Stat107: 1.41317696e-18 + syst_JES_EtaIntercalibration_Stat108: 4.62862084e-12 + syst_JES_EtaIntercalibration_Stat109: 4.21769021e-09 + syst_JES_EtaIntercalibration_Stat11: 4.04262226e-17 + syst_JES_EtaIntercalibration_Stat110: 1.58039089e-08 + syst_JES_EtaIntercalibration_Stat111: 1.33182557e-07 + syst_JES_EtaIntercalibration_Stat112: 1.28272749e-07 + syst_JES_EtaIntercalibration_Stat113: 3.27241726e-06 + syst_JES_EtaIntercalibration_Stat114: 1.25012250e-06 + syst_JES_EtaIntercalibration_Stat115: 4.20002476e-07 + syst_JES_EtaIntercalibration_Stat116: 4.19730878e-07 + syst_JES_EtaIntercalibration_Stat117: 8.78330660e-10 + syst_JES_EtaIntercalibration_Stat118: 4.14885955e-07 + syst_JES_EtaIntercalibration_Stat119: 4.38678729e-07 + syst_JES_EtaIntercalibration_Stat12: 4.81190560e-15 + syst_JES_EtaIntercalibration_Stat120: 3.35017682e-07 + syst_JES_EtaIntercalibration_Stat121: 2.60323084e-10 + syst_JES_EtaIntercalibration_Stat122: 1.06659258e-07 + syst_JES_EtaIntercalibration_Stat123: 2.95324478e-07 + syst_JES_EtaIntercalibration_Stat124: 4.28710974e-07 + syst_JES_EtaIntercalibration_Stat125: 1.34288708e-09 + syst_JES_EtaIntercalibration_Stat126: 2.57108401e-10 + syst_JES_EtaIntercalibration_Stat127: 2.03602572e-17 + syst_JES_EtaIntercalibration_Stat128: 1.37575477e-08 + syst_JES_EtaIntercalibration_Stat129: 5.72851323e-07 + syst_JES_EtaIntercalibration_Stat13: 3.20807337e-17 + syst_JES_EtaIntercalibration_Stat130: 8.11883686e-07 + syst_JES_EtaIntercalibration_Stat131: 3.43575479e-06 + syst_JES_EtaIntercalibration_Stat132: 1.68451914e-06 + syst_JES_EtaIntercalibration_Stat133: 1.83865563e-06 + syst_JES_EtaIntercalibration_Stat134: 4.66422190e-07 + syst_JES_EtaIntercalibration_Stat135: 8.21088202e-08 + syst_JES_EtaIntercalibration_Stat136: 5.32151407e-07 + syst_JES_EtaIntercalibration_Stat137: 4.85441531e-06 + syst_JES_EtaIntercalibration_Stat138: 1.08931208e-06 + syst_JES_EtaIntercalibration_Stat139: 5.58179014e-07 + syst_JES_EtaIntercalibration_Stat14: 3.19517230e-17 + syst_JES_EtaIntercalibration_Stat140: 1.80533674e-06 + syst_JES_EtaIntercalibration_Stat141: 1.56454331e-06 + syst_JES_EtaIntercalibration_Stat142: 5.63100584e-06 + syst_JES_EtaIntercalibration_Stat143: 2.90777866e-07 + syst_JES_EtaIntercalibration_Stat144: 6.19807451e-07 + syst_JES_EtaIntercalibration_Stat145: 1.14419714e-08 + syst_JES_EtaIntercalibration_Stat146: 3.42135339e-08 + syst_JES_EtaIntercalibration_Stat147: 7.02604680e-07 + syst_JES_EtaIntercalibration_Stat148: 7.95544222e-07 + syst_JES_EtaIntercalibration_Stat149: 2.90464920e-06 + syst_JES_EtaIntercalibration_Stat15: 3.29904898e-17 + syst_JES_EtaIntercalibration_Stat150: 1.60574290e-06 + syst_JES_EtaIntercalibration_Stat151: 3.05704533e-06 + syst_JES_EtaIntercalibration_Stat152: 1.54187446e-06 + syst_JES_EtaIntercalibration_Stat153: 2.99283056e-09 + syst_JES_EtaIntercalibration_Stat154: 6.18640225e-07 + syst_JES_EtaIntercalibration_Stat155: 5.63128129e-06 + syst_JES_EtaIntercalibration_Stat156: 8.23849967e-07 + syst_JES_EtaIntercalibration_Stat157: 2.06764424e-06 + syst_JES_EtaIntercalibration_Stat158: 2.65094504e-06 + syst_JES_EtaIntercalibration_Stat159: 3.75842028e-06 + syst_JES_EtaIntercalibration_Stat16: 4.02798509e-18 + syst_JES_EtaIntercalibration_Stat160: 1.57517627e-07 + syst_JES_EtaIntercalibration_Stat161: 7.28747876e-07 + syst_JES_EtaIntercalibration_Stat162: 1.20509238e-06 + syst_JES_EtaIntercalibration_Stat163: 2.12268207e-07 + syst_JES_EtaIntercalibration_Stat164: 1.60741968e-08 + syst_JES_EtaIntercalibration_Stat165: 2.57047003e-06 + syst_JES_EtaIntercalibration_Stat166: 2.59581696e-06 + syst_JES_EtaIntercalibration_Stat167: 9.52440324e-07 + syst_JES_EtaIntercalibration_Stat168: 6.17391240e-06 + syst_JES_EtaIntercalibration_Stat169: 1.76669182e-06 + syst_JES_EtaIntercalibration_Stat17: 6.59488188e-18 + syst_JES_EtaIntercalibration_Stat170: 4.69277615e-06 + syst_JES_EtaIntercalibration_Stat171: 2.62721648e-06 + syst_JES_EtaIntercalibration_Stat172: 9.69540608e-07 + syst_JES_EtaIntercalibration_Stat173: 2.09955511e-06 + syst_JES_EtaIntercalibration_Stat174: 6.93644367e-06 + syst_JES_EtaIntercalibration_Stat175: 5.70505285e-06 + syst_JES_EtaIntercalibration_Stat176: 6.28790471e-06 + syst_JES_EtaIntercalibration_Stat177: 2.49463596e-06 + syst_JES_EtaIntercalibration_Stat178: 1.03564646e-05 + syst_JES_EtaIntercalibration_Stat179: 6.38050492e-06 + syst_JES_EtaIntercalibration_Stat18: 6.49124025e-18 + syst_JES_EtaIntercalibration_Stat180: 1.83291808e-07 + syst_JES_EtaIntercalibration_Stat181: 1.81259117e-07 + syst_JES_EtaIntercalibration_Stat182: 8.33858985e-06 + syst_JES_EtaIntercalibration_Stat183: 1.14020905e-05 + syst_JES_EtaIntercalibration_Stat184: 1.60752179e-05 + syst_JES_EtaIntercalibration_Stat185: 1.62812007e-05 + syst_JES_EtaIntercalibration_Stat186: 7.20813657e-06 + syst_JES_EtaIntercalibration_Stat187: 2.84223627e-05 + syst_JES_EtaIntercalibration_Stat188: 1.96127510e-05 + syst_JES_EtaIntercalibration_Stat189: 1.03097439e-05 + syst_JES_EtaIntercalibration_Stat19: 4.81419266e-17 + syst_JES_EtaIntercalibration_Stat190: 5.26428350e-06 + syst_JES_EtaIntercalibration_Stat191: 2.82099322e-05 + syst_JES_EtaIntercalibration_Stat192: 2.35451141e-05 + syst_JES_EtaIntercalibration_Stat193: 2.20210462e-05 + syst_JES_EtaIntercalibration_Stat194: 1.74850529e-05 + syst_JES_EtaIntercalibration_Stat195: 1.98201961e-05 + syst_JES_EtaIntercalibration_Stat196: 1.48598555e-05 + syst_JES_EtaIntercalibration_Stat197: 8.50355518e-06 + syst_JES_EtaIntercalibration_Stat198: 2.38801523e-05 + syst_JES_EtaIntercalibration_Stat199: 1.42933351e-05 + syst_JES_EtaIntercalibration_Stat2: 6.57921363e-18 + syst_JES_EtaIntercalibration_Stat20: 6.49124025e-18 + syst_JES_EtaIntercalibration_Stat200: 2.83374006e-05 + syst_JES_EtaIntercalibration_Stat201: 2.18677348e-05 + syst_JES_EtaIntercalibration_Stat202: 4.38981055e-05 + syst_JES_EtaIntercalibration_Stat203: 4.54461123e-05 + syst_JES_EtaIntercalibration_Stat204: 3.61680837e-05 + syst_JES_EtaIntercalibration_Stat205: 4.08172718e-05 + syst_JES_EtaIntercalibration_Stat206: 4.09500574e-05 + syst_JES_EtaIntercalibration_Stat207: 4.00846741e-05 + syst_JES_EtaIntercalibration_Stat208: 4.21849582e-05 + syst_JES_EtaIntercalibration_Stat209: 3.34725280e-05 + syst_JES_EtaIntercalibration_Stat21: 6.49124025e-18 + syst_JES_EtaIntercalibration_Stat210: 2.66689745e-05 + syst_JES_EtaIntercalibration_Stat211: 3.17481936e-05 + syst_JES_EtaIntercalibration_Stat212: 1.08952403e-05 + syst_JES_EtaIntercalibration_Stat213: 6.96607203e-06 + syst_JES_EtaIntercalibration_Stat214: 1.49719069e-05 + syst_JES_EtaIntercalibration_Stat215: 3.08020957e-05 + syst_JES_EtaIntercalibration_Stat216: 3.86070392e-05 + syst_JES_EtaIntercalibration_Stat217: 2.08901084e-05 + syst_JES_EtaIntercalibration_Stat218: 2.70043788e-05 + syst_JES_EtaIntercalibration_Stat219: 3.29251283e-05 + syst_JES_EtaIntercalibration_Stat22: 6.49124025e-18 + syst_JES_EtaIntercalibration_Stat220: 2.08932391e-05 + syst_JES_EtaIntercalibration_Stat221: 2.52156611e-05 + syst_JES_EtaIntercalibration_Stat222: 9.28011212e-06 + syst_JES_EtaIntercalibration_Stat223: 2.09966730e-05 + syst_JES_EtaIntercalibration_Stat224: 1.20326924e-05 + syst_JES_EtaIntercalibration_Stat225: 2.46610300e-05 + syst_JES_EtaIntercalibration_Stat226: 2.66538942e-05 + syst_JES_EtaIntercalibration_Stat227: 3.69406091e-05 + syst_JES_EtaIntercalibration_Stat228: 4.25025114e-05 + syst_JES_EtaIntercalibration_Stat229: 3.20105904e-05 + syst_JES_EtaIntercalibration_Stat23: 1.78710266e-16 + syst_JES_EtaIntercalibration_Stat230: 2.99617469e-05 + syst_JES_EtaIntercalibration_Stat231: 5.73271690e-05 + syst_JES_EtaIntercalibration_Stat232: 3.33460293e-05 + syst_JES_EtaIntercalibration_Stat233: 2.74455716e-05 + syst_JES_EtaIntercalibration_Stat234: 2.77373122e-05 + syst_JES_EtaIntercalibration_Stat235: 1.58915662e-05 + syst_JES_EtaIntercalibration_Stat236: 6.31943384e-07 + syst_JES_EtaIntercalibration_Stat237: 5.91633434e-06 + syst_JES_EtaIntercalibration_Stat238: 4.86733225e-06 + syst_JES_EtaIntercalibration_Stat239: 3.10953260e-06 + syst_JES_EtaIntercalibration_Stat24: 5.17516152e-15 + syst_JES_EtaIntercalibration_Stat240: 1.76219449e-06 + syst_JES_EtaIntercalibration_Stat241: 9.68822619e-07 + syst_JES_EtaIntercalibration_Stat242: 1.84190248e-06 + syst_JES_EtaIntercalibration_Stat243: 3.74242982e-06 + syst_JES_EtaIntercalibration_Stat244: 7.91298438e-07 + syst_JES_EtaIntercalibration_Stat245: 5.63734459e-06 + syst_JES_EtaIntercalibration_Stat25: 5.02080484e-15 + syst_JES_EtaIntercalibration_Stat26: 3.88836699e-17 + syst_JES_EtaIntercalibration_Stat27: 4.18292393e-15 + syst_JES_EtaIntercalibration_Stat28: 4.78813129e-16 + syst_JES_EtaIntercalibration_Stat29: 6.25625959e-15 + syst_JES_EtaIntercalibration_Stat3: 1.18668188e-17 + syst_JES_EtaIntercalibration_Stat30: 5.19078614e-15 + syst_JES_EtaIntercalibration_Stat31: 8.77717541e-09 + syst_JES_EtaIntercalibration_Stat32: 8.82393596e-09 + syst_JES_EtaIntercalibration_Stat33: 1.66830856e-15 + syst_JES_EtaIntercalibration_Stat34: 4.80571750e-14 + syst_JES_EtaIntercalibration_Stat35: 3.93868354e-07 + syst_JES_EtaIntercalibration_Stat36: 1.01641284e-13 + syst_JES_EtaIntercalibration_Stat37: 1.09769965e-13 + syst_JES_EtaIntercalibration_Stat38: 1.99386356e-14 + syst_JES_EtaIntercalibration_Stat39: 2.09058532e-14 + syst_JES_EtaIntercalibration_Stat4: 3.84271196e-18 + syst_JES_EtaIntercalibration_Stat40: 5.94323287e-16 + syst_JES_EtaIntercalibration_Stat41: 3.86946704e-18 + syst_JES_EtaIntercalibration_Stat42: 2.76608514e-17 + syst_JES_EtaIntercalibration_Stat43: 6.49124025e-18 + syst_JES_EtaIntercalibration_Stat44: 6.49124025e-18 + syst_JES_EtaIntercalibration_Stat45: 6.57921363e-18 + syst_JES_EtaIntercalibration_Stat46: 2.61701219e-15 + syst_JES_EtaIntercalibration_Stat47: 1.08560449e-13 + syst_JES_EtaIntercalibration_Stat48: 5.33327651e-15 + syst_JES_EtaIntercalibration_Stat49: 9.17226767e-15 + syst_JES_EtaIntercalibration_Stat5: 3.97505660e-18 + syst_JES_EtaIntercalibration_Stat50: 8.77716936e-09 + syst_JES_EtaIntercalibration_Stat51: 2.77129223e-14 + syst_JES_EtaIntercalibration_Stat52: 7.03319982e-15 + syst_JES_EtaIntercalibration_Stat53: 8.77765399e-09 + syst_JES_EtaIntercalibration_Stat54: 8.77630833e-09 + syst_JES_EtaIntercalibration_Stat55: 9.01478124e-15 + syst_JES_EtaIntercalibration_Stat56: 7.13790246e-14 + syst_JES_EtaIntercalibration_Stat57: 3.32796683e-08 + syst_JES_EtaIntercalibration_Stat58: 2.30819686e-13 + syst_JES_EtaIntercalibration_Stat59: 1.21828817e-13 + syst_JES_EtaIntercalibration_Stat6: 6.52877843e-18 + syst_JES_EtaIntercalibration_Stat60: 6.56850812e-17 + syst_JES_EtaIntercalibration_Stat61: 1.81822821e-14 + syst_JES_EtaIntercalibration_Stat62: 2.07778107e-15 + syst_JES_EtaIntercalibration_Stat63: 7.75838151e-16 + syst_JES_EtaIntercalibration_Stat64: 3.63799453e-18 + syst_JES_EtaIntercalibration_Stat65: 6.49124025e-18 + syst_JES_EtaIntercalibration_Stat66: 6.49124025e-18 + syst_JES_EtaIntercalibration_Stat67: 6.06263761e-15 + syst_JES_EtaIntercalibration_Stat68: 8.63487661e-13 + syst_JES_EtaIntercalibration_Stat69: 8.53138687e-13 + syst_JES_EtaIntercalibration_Stat7: 2.45307333e-17 + syst_JES_EtaIntercalibration_Stat70: 1.80466915e-13 + syst_JES_EtaIntercalibration_Stat71: 9.86333112e-14 + syst_JES_EtaIntercalibration_Stat72: 8.77630517e-09 + syst_JES_EtaIntercalibration_Stat73: 8.52415902e-08 + syst_JES_EtaIntercalibration_Stat74: 8.85168962e-08 + syst_JES_EtaIntercalibration_Stat75: 3.39412676e-07 + syst_JES_EtaIntercalibration_Stat76: 8.73560917e-09 + syst_JES_EtaIntercalibration_Stat77: 1.77793616e-13 + syst_JES_EtaIntercalibration_Stat78: 3.53338366e-07 + syst_JES_EtaIntercalibration_Stat79: 3.27270597e-07 + syst_JES_EtaIntercalibration_Stat8: 5.26167925e-16 + syst_JES_EtaIntercalibration_Stat80: 3.33409701e-08 + syst_JES_EtaIntercalibration_Stat81: 6.83378915e-08 + syst_JES_EtaIntercalibration_Stat82: 8.03408808e-08 + syst_JES_EtaIntercalibration_Stat83: 3.07173740e-15 + syst_JES_EtaIntercalibration_Stat84: 2.42654024e-14 + syst_JES_EtaIntercalibration_Stat85: 7.72935574e-15 + syst_JES_EtaIntercalibration_Stat86: 2.36182215e-17 + syst_JES_EtaIntercalibration_Stat87: 3.97505660e-18 + syst_JES_EtaIntercalibration_Stat88: 5.14736639e-15 + syst_JES_EtaIntercalibration_Stat89: 8.67593125e-12 + syst_JES_EtaIntercalibration_Stat9: 5.22901942e-16 + syst_JES_EtaIntercalibration_Stat90: 8.42306467e-12 + syst_JES_EtaIntercalibration_Stat91: 1.85942436e-13 + syst_JES_EtaIntercalibration_Stat92: 8.35003082e-13 + syst_JES_EtaIntercalibration_Stat93: 8.77437493e-09 + syst_JES_EtaIntercalibration_Stat94: 7.91767413e-08 + syst_JES_EtaIntercalibration_Stat95: 7.66330862e-08 + syst_JES_EtaIntercalibration_Stat96: 3.56282675e-07 + syst_JES_EtaIntercalibration_Stat97: 9.02847961e-12 + syst_JES_EtaIntercalibration_Stat98: 1.00330994e-12 + syst_JES_EtaIntercalibration_Stat99: 6.58955892e-07 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.31643197e-03 + syst_JES_Flavour_Comp: 3.85852157e-03 + syst_JES_Flavour_Response: 1.22743315e-03 + syst_JES_Gjet_Generator: 5.60622895e-03 + syst_JES_Gjet_OOC: 4.54823691e-03 + syst_JES_Gjet_Purity: 1.13020072e-03 + syst_JES_Gjet_Stat1: 1.42692098e-05 + syst_JES_Gjet_Stat10: 1.00961613e-04 + syst_JES_Gjet_Stat11: 1.32206203e-04 + syst_JES_Gjet_Stat12: 4.39553214e-04 + syst_JES_Gjet_Stat13: 1.21760045e-03 + syst_JES_Gjet_Stat14: 1.97163105e-03 + syst_JES_Gjet_Stat15: 4.56971487e-04 + syst_JES_Gjet_Stat2: 1.45730063e-05 + syst_JES_Gjet_Stat3: 1.70644089e-05 + syst_JES_Gjet_Stat4: 2.19674491e-05 + syst_JES_Gjet_Stat5: 2.17854967e-05 + syst_JES_Gjet_Stat6: 5.64969858e-05 + syst_JES_Gjet_Stat7: 6.58326171e-05 + syst_JES_Gjet_Stat8: 3.27867534e-05 + syst_JES_Gjet_Stat9: 5.94486121e-05 + syst_JES_Gjet_Veto: 4.15883478e-03 + syst_JES_Gjet_dPhi: 4.11277263e-04 + syst_JES_LArESZee: 8.49660242e-03 + syst_JES_LArEsmear: 6.67386670e-04 + syst_JES_LAr_JVT: 8.55890484e-04 + syst_JES_MJB_Alpha: 3.97183393e-05 + syst_JES_MJB_Asym: 4.67595723e-04 + syst_JES_MJB_Beta: 2.85566396e-05 + syst_JES_MJB_Fragmentation: 7.86303256e-04 + syst_JES_MJB_Stat1: 1.31318212e-05 + syst_JES_MJB_Stat10: 2.06770235e-05 + syst_JES_MJB_Stat11: 1.60786963e-05 + syst_JES_MJB_Stat12: 1.38656676e-05 + syst_JES_MJB_Stat13: 1.54354372e-05 + syst_JES_MJB_Stat14: 2.04423696e-05 + syst_JES_MJB_Stat15: 1.72948569e-05 + syst_JES_MJB_Stat16: 7.25681506e-06 + syst_JES_MJB_Stat2: 2.88570858e-05 + syst_JES_MJB_Stat3: 6.21243243e-05 + syst_JES_MJB_Stat4: 2.20638001e-05 + syst_JES_MJB_Stat5: 1.47260513e-05 + syst_JES_MJB_Stat6: 4.56029788e-05 + syst_JES_MJB_Stat7: 2.98286620e-05 + syst_JES_MJB_Stat8: 3.36563681e-05 + syst_JES_MJB_Stat9: 3.17069455e-05 + syst_JES_MJB_Threshold: 4.51941633e-04 + syst_JES_Pileup_MuOffset: 9.76929946e-04 + syst_JES_Pileup_NPVOffset: 1.00019815e-03 + syst_JES_Pileup_Pt_term: 9.37338407e-04 + syst_JES_Pileup_Rho_topology: 1.67276261e-03 + syst_JES_PunchThrough_MC15: 4.35258208e-04 + syst_JES_SingleParticle_HighPt: 1.82461834e-06 + syst_JES_Zjet_MC: 2.92096183e-03 + syst_JES_Zjet_MuScale: 1.82046443e-04 + syst_JES_Zjet_MuSmearID: 3.69296412e-05 + syst_JES_Zjet_MuSmearMS: 8.27226406e-04 + syst_JES_Zjet_OOC: 1.43633382e-03 + syst_JES_Zjet_Stat1: 8.38543170e-05 + syst_JES_Zjet_Stat10: 1.08980421e-04 + syst_JES_Zjet_Stat11: 1.46535126e-04 + syst_JES_Zjet_Stat12: 5.08736933e-04 + syst_JES_Zjet_Stat13: 8.98895360e-04 + syst_JES_Zjet_Stat2: 3.25230341e-06 + syst_JES_Zjet_Stat3: 3.36112172e-05 + syst_JES_Zjet_Stat4: 4.22876066e-05 + syst_JES_Zjet_Stat5: 4.75626501e-05 + syst_JES_Zjet_Stat6: 4.88555245e-05 + syst_JES_Zjet_Stat7: 4.55589034e-05 + syst_JES_Zjet_Stat8: 3.75770099e-05 + syst_JES_Zjet_Stat9: 6.57677938e-05 + syst_JES_Zjet_Veto: 2.99250677e-04 + syst_JES_Zjet_dPhi: 2.41592239e-04 syst_PRW: 0.0 syst_Unfolding_bias: 0.0 - syst_cleaning: 0.0025227320012240696 + syst_cleaning: 2.52273200e-03 syst_lumi: 0.00532 -- stat: 0.0007855 - syst_JER_CROSS_CALIB_FORWARD: 1.1537e-13 +- stat: 7.85500000e-04 + syst_JER_CROSS_CALIB_FORWARD: 1.15370000e-13 syst_JER_NOISE_FORWARD: 1.51e-10 - syst_JER_NP0: 0.0002674550055616832 - syst_JER_NP1: 4.733778908018413e-05 - syst_JER_NP2: 0.00015016506750905817 - syst_JER_NP3: 2.3328141803409893e-05 - syst_JER_NP4: 1.6808146834199184e-05 - syst_JER_NP5: 1.883605795075005e-05 - syst_JER_NP6: 1.020840353581303e-11 + syst_JER_NP0: 2.67455006e-04 + syst_JER_NP1: 4.73377891e-05 + syst_JER_NP2: 1.50165068e-04 + syst_JER_NP3: 2.33281418e-05 + syst_JER_NP4: 1.68081468e-05 + syst_JER_NP5: 1.88360580e-05 + syst_JER_NP6: 1.02084035e-11 syst_JER_NP7: 0.0 - syst_JER_NP8: 5.1612327015936804e-05 - syst_JES_EtaIntercalibration_Modelling: 0.003860133159620274 - syst_JES_EtaIntercalibration_NonClosure: 0.00012264598199696557 - syst_JES_EtaIntercalibration_Stat0: 5.856258361786986e-19 - syst_JES_EtaIntercalibration_Stat1: 3.3830054685146457e-19 - syst_JES_EtaIntercalibration_Stat10: 5.54162834823845e-19 - syst_JES_EtaIntercalibration_Stat100: 9.805139951372198e-07 - syst_JES_EtaIntercalibration_Stat101: 2.0208839353114764e-12 - syst_JES_EtaIntercalibration_Stat102: 1.4062797660007875e-08 - syst_JES_EtaIntercalibration_Stat103: 1.4055407878558519e-08 - syst_JES_EtaIntercalibration_Stat104: 5.153556856191653e-14 - syst_JES_EtaIntercalibration_Stat105: 1.2096915562241477e-11 - syst_JES_EtaIntercalibration_Stat106: 6.971018113389178e-13 - syst_JES_EtaIntercalibration_Stat107: 2.0011474677044669e-19 - syst_JES_EtaIntercalibration_Stat108: 2.9758576744696645e-13 - syst_JES_EtaIntercalibration_Stat109: 5.355939765269956e-10 - syst_JES_EtaIntercalibration_Stat11: 3.746166649723421e-18 - syst_JES_EtaIntercalibration_Stat110: 1.1203569111225225e-09 - syst_JES_EtaIntercalibration_Stat111: 8.253974284662813e-08 - syst_JES_EtaIntercalibration_Stat112: 8.237175381615957e-08 - syst_JES_EtaIntercalibration_Stat113: 1.273496347658681e-06 - syst_JES_EtaIntercalibration_Stat114: 7.58363098793711e-07 - syst_JES_EtaIntercalibration_Stat115: 1.713254598709719e-07 - syst_JES_EtaIntercalibration_Stat116: 2.2376699376807113e-07 - syst_JES_EtaIntercalibration_Stat117: 5.908172195146314e-11 - syst_JES_EtaIntercalibration_Stat118: 1.1377183477306675e-07 - syst_JES_EtaIntercalibration_Stat119: 1.8923707353475958e-07 - syst_JES_EtaIntercalibration_Stat12: 3.5889478722879216e-16 - syst_JES_EtaIntercalibration_Stat120: 1.9559004959353122e-07 - syst_JES_EtaIntercalibration_Stat121: 1.6714654414839095e-11 - syst_JES_EtaIntercalibration_Stat122: 5.8699169643774745e-08 - syst_JES_EtaIntercalibration_Stat123: 4.5524901702255214e-08 - syst_JES_EtaIntercalibration_Stat124: 8.109688783640221e-08 - syst_JES_EtaIntercalibration_Stat125: 9.883270359552045e-11 - syst_JES_EtaIntercalibration_Stat126: 1.6518835885134277e-11 - syst_JES_EtaIntercalibration_Stat127: 2.792931927204815e-18 - syst_JES_EtaIntercalibration_Stat128: 1.2299928292473903e-09 - syst_JES_EtaIntercalibration_Stat129: 1.2153760120049571e-06 - syst_JES_EtaIntercalibration_Stat13: 3.4073352795843263e-18 - syst_JES_EtaIntercalibration_Stat130: 3.8441054645262726e-07 - syst_JES_EtaIntercalibration_Stat131: 5.339838450739872e-07 - syst_JES_EtaIntercalibration_Stat132: 3.2483621642298446e-07 - syst_JES_EtaIntercalibration_Stat133: 4.1187290515400504e-07 - syst_JES_EtaIntercalibration_Stat134: 3.652877992761324e-08 - syst_JES_EtaIntercalibration_Stat135: 9.822489140742279e-09 - syst_JES_EtaIntercalibration_Stat136: 1.3865667699393349e-07 - syst_JES_EtaIntercalibration_Stat137: 3.529209370383117e-06 - syst_JES_EtaIntercalibration_Stat138: 5.790570438221091e-07 - syst_JES_EtaIntercalibration_Stat139: 3.6003789482219786e-07 - syst_JES_EtaIntercalibration_Stat14: 3.3866538806763232e-18 - syst_JES_EtaIntercalibration_Stat140: 1.5102089841061732e-06 - syst_JES_EtaIntercalibration_Stat141: 7.506722642405273e-07 - syst_JES_EtaIntercalibration_Stat142: 4.047202195035479e-06 - syst_JES_EtaIntercalibration_Stat143: 5.565886182810425e-08 - syst_JES_EtaIntercalibration_Stat144: 1.4372947044708679e-08 - syst_JES_EtaIntercalibration_Stat145: 9.863205180366066e-10 - syst_JES_EtaIntercalibration_Stat146: 4.2667939954959155e-09 - syst_JES_EtaIntercalibration_Stat147: 1.6608992468840488e-06 - syst_JES_EtaIntercalibration_Stat148: 3.830247144441204e-07 - syst_JES_EtaIntercalibration_Stat149: 3.4987426312891323e-07 - syst_JES_EtaIntercalibration_Stat15: 3.047045996830373e-18 - syst_JES_EtaIntercalibration_Stat150: 3.071147464710869e-07 - syst_JES_EtaIntercalibration_Stat151: 3.297225439722123e-07 - syst_JES_EtaIntercalibration_Stat152: 4.786633901553366e-08 - syst_JES_EtaIntercalibration_Stat153: 1.7707286140668197e-08 - syst_JES_EtaIntercalibration_Stat154: 4.582160489332516e-07 - syst_JES_EtaIntercalibration_Stat155: 3.5720726994281627e-06 - syst_JES_EtaIntercalibration_Stat156: 7.892089496549837e-08 - syst_JES_EtaIntercalibration_Stat157: 2.818880465716842e-07 - syst_JES_EtaIntercalibration_Stat158: 5.570878577028941e-07 - syst_JES_EtaIntercalibration_Stat159: 1.549324403570795e-06 - syst_JES_EtaIntercalibration_Stat16: 3.6250210437320225e-19 - syst_JES_EtaIntercalibration_Stat160: 1.958724076787489e-08 - syst_JES_EtaIntercalibration_Stat161: 6.864384500266575e-08 - syst_JES_EtaIntercalibration_Stat162: 8.988530080052021e-08 - syst_JES_EtaIntercalibration_Stat163: 7.0704435504429285e-09 - syst_JES_EtaIntercalibration_Stat164: 5.33724036839264e-09 - syst_JES_EtaIntercalibration_Stat165: 8.24179366096968e-07 - syst_JES_EtaIntercalibration_Stat166: 1.1594425384640671e-06 - syst_JES_EtaIntercalibration_Stat167: 4.3818490104064515e-07 - syst_JES_EtaIntercalibration_Stat168: 8.434011856761881e-07 - syst_JES_EtaIntercalibration_Stat169: 1.6142713526541936e-07 - syst_JES_EtaIntercalibration_Stat17: 5.964936273758505e-19 - syst_JES_EtaIntercalibration_Stat170: 1.4275303564810803e-06 - syst_JES_EtaIntercalibration_Stat171: 1.0120579726478123e-06 - syst_JES_EtaIntercalibration_Stat172: 5.337733882463606e-07 - syst_JES_EtaIntercalibration_Stat173: 6.451312964622008e-07 - syst_JES_EtaIntercalibration_Stat174: 1.4567431894469251e-06 - syst_JES_EtaIntercalibration_Stat175: 1.687193233598333e-06 - syst_JES_EtaIntercalibration_Stat176: 1.5758205735425591e-06 - syst_JES_EtaIntercalibration_Stat177: 9.925142051880165e-07 - syst_JES_EtaIntercalibration_Stat178: 2.058723701714244e-06 - syst_JES_EtaIntercalibration_Stat179: 3.461647238970921e-06 - syst_JES_EtaIntercalibration_Stat18: 5.856258361786986e-19 - syst_JES_EtaIntercalibration_Stat180: 3.9482107339907784e-08 - syst_JES_EtaIntercalibration_Stat181: 3.868535478687253e-08 - syst_JES_EtaIntercalibration_Stat182: 2.7554446102217335e-06 - syst_JES_EtaIntercalibration_Stat183: 4.641030138880993e-06 - syst_JES_EtaIntercalibration_Stat184: 4.446217943376146e-06 - syst_JES_EtaIntercalibration_Stat185: 2.4179356623988155e-06 - syst_JES_EtaIntercalibration_Stat186: 3.6420556008935394e-06 - syst_JES_EtaIntercalibration_Stat187: 9.847133428059153e-06 - syst_JES_EtaIntercalibration_Stat188: 6.8242868491879796e-06 - syst_JES_EtaIntercalibration_Stat189: 5.47486219004643e-06 - syst_JES_EtaIntercalibration_Stat19: 5.2658295329416046e-18 - syst_JES_EtaIntercalibration_Stat190: 2.695367275530368e-06 - syst_JES_EtaIntercalibration_Stat191: 6.747332607779166e-06 - syst_JES_EtaIntercalibration_Stat192: 9.093910380029045e-06 - syst_JES_EtaIntercalibration_Stat193: 7.221782795819879e-06 - syst_JES_EtaIntercalibration_Stat194: 8.017663188236333e-06 - syst_JES_EtaIntercalibration_Stat195: 6.894565595452696e-06 - syst_JES_EtaIntercalibration_Stat196: 6.111146976427584e-06 - syst_JES_EtaIntercalibration_Stat197: 2.7549840289918192e-06 - syst_JES_EtaIntercalibration_Stat198: 9.879464497127363e-06 - syst_JES_EtaIntercalibration_Stat199: 8.55139723963283e-06 - syst_JES_EtaIntercalibration_Stat2: 6.703143217923961e-19 - syst_JES_EtaIntercalibration_Stat20: 5.856258361786986e-19 - syst_JES_EtaIntercalibration_Stat200: 7.475134848282003e-06 - syst_JES_EtaIntercalibration_Stat201: 9.037901139091973e-06 - syst_JES_EtaIntercalibration_Stat202: 1.508703002582019e-05 - syst_JES_EtaIntercalibration_Stat203: 1.796013919767884e-05 - syst_JES_EtaIntercalibration_Stat204: 1.4270141134550844e-05 - syst_JES_EtaIntercalibration_Stat205: 1.4170724857959808e-05 - syst_JES_EtaIntercalibration_Stat206: 1.4232202456050151e-05 - syst_JES_EtaIntercalibration_Stat207: 1.4429743864670643e-05 - syst_JES_EtaIntercalibration_Stat208: 1.7292474750595993e-05 - syst_JES_EtaIntercalibration_Stat209: 1.417916651288079e-05 - syst_JES_EtaIntercalibration_Stat21: 5.856258361786986e-19 - syst_JES_EtaIntercalibration_Stat210: 9.508069769937533e-06 - syst_JES_EtaIntercalibration_Stat211: 1.2517504493708001e-05 - syst_JES_EtaIntercalibration_Stat212: 6.675188592841404e-06 - syst_JES_EtaIntercalibration_Stat213: 3.7695152695671634e-06 - syst_JES_EtaIntercalibration_Stat214: 7.383520434047704e-06 - syst_JES_EtaIntercalibration_Stat215: 1.433987402315655e-05 - syst_JES_EtaIntercalibration_Stat216: 1.761327908142036e-05 - syst_JES_EtaIntercalibration_Stat217: 9.910379256113261e-06 - syst_JES_EtaIntercalibration_Stat218: 1.3667913776432745e-05 - syst_JES_EtaIntercalibration_Stat219: 1.5561269228440203e-05 - syst_JES_EtaIntercalibration_Stat22: 5.856258361786986e-19 - syst_JES_EtaIntercalibration_Stat220: 1.3260965151526491e-05 - syst_JES_EtaIntercalibration_Stat221: 1.171357110363872e-05 - syst_JES_EtaIntercalibration_Stat222: 9.167515295187678e-06 - syst_JES_EtaIntercalibration_Stat223: 1.2357348775121628e-05 - syst_JES_EtaIntercalibration_Stat224: 9.323971082644991e-06 - syst_JES_EtaIntercalibration_Stat225: 1.315496195357478e-05 - syst_JES_EtaIntercalibration_Stat226: 1.7313789302171838e-05 - syst_JES_EtaIntercalibration_Stat227: 2.554500880798439e-05 - syst_JES_EtaIntercalibration_Stat228: 2.843610557020775e-05 - syst_JES_EtaIntercalibration_Stat229: 2.4429819892909566e-05 - syst_JES_EtaIntercalibration_Stat23: 1.6948693095689563e-17 - syst_JES_EtaIntercalibration_Stat230: 2.608162763325939e-05 - syst_JES_EtaIntercalibration_Stat231: 3.62933878688667e-05 - syst_JES_EtaIntercalibration_Stat232: 2.859698017273852e-05 - syst_JES_EtaIntercalibration_Stat233: 2.250705000660904e-05 - syst_JES_EtaIntercalibration_Stat234: 2.1169948039615023e-05 - syst_JES_EtaIntercalibration_Stat235: 1.1060876457134732e-05 - syst_JES_EtaIntercalibration_Stat236: 1.097789360487703e-06 - syst_JES_EtaIntercalibration_Stat237: 3.6505707430482704e-06 - syst_JES_EtaIntercalibration_Stat238: 1.6631710134559223e-06 - syst_JES_EtaIntercalibration_Stat239: 3.341115460441318e-06 - syst_JES_EtaIntercalibration_Stat24: 3.8494668137288834e-16 - syst_JES_EtaIntercalibration_Stat240: 1.7461830459605315e-06 - syst_JES_EtaIntercalibration_Stat241: 5.31913039718434e-07 - syst_JES_EtaIntercalibration_Stat242: 1.998958148636434e-06 - syst_JES_EtaIntercalibration_Stat243: 3.991837429993862e-06 - syst_JES_EtaIntercalibration_Stat244: 5.750762490789265e-07 - syst_JES_EtaIntercalibration_Stat245: 5.983982870964789e-06 - syst_JES_EtaIntercalibration_Stat25: 3.764460520114403e-16 - syst_JES_EtaIntercalibration_Stat26: 3.54525525597241e-18 - syst_JES_EtaIntercalibration_Stat27: 2.9649521224928744e-16 - syst_JES_EtaIntercalibration_Stat28: 3.996646202442743e-17 - syst_JES_EtaIntercalibration_Stat29: 4.647812603795467e-16 - syst_JES_EtaIntercalibration_Stat3: 1.254461688334881e-18 - syst_JES_EtaIntercalibration_Stat30: 3.7979303245320334e-16 - syst_JES_EtaIntercalibration_Stat31: 6.726425223281277e-10 - syst_JES_EtaIntercalibration_Stat32: 6.755866488368104e-10 - syst_JES_EtaIntercalibration_Stat33: 7.560479560682642e-17 - syst_JES_EtaIntercalibration_Stat34: 3.5763580064081956e-15 - syst_JES_EtaIntercalibration_Stat35: 2.0992455788121012e-07 - syst_JES_EtaIntercalibration_Stat36: 6.632885440553002e-15 - syst_JES_EtaIntercalibration_Stat37: 8.567772853458886e-15 - syst_JES_EtaIntercalibration_Stat38: 1.4634963913518884e-15 - syst_JES_EtaIntercalibration_Stat39: 1.5328649646984563e-15 - syst_JES_EtaIntercalibration_Stat4: 3.3830054685146457e-19 - syst_JES_EtaIntercalibration_Stat40: 5.0812741266339885e-17 - syst_JES_EtaIntercalibration_Stat41: 5.127914390861065e-19 - syst_JES_EtaIntercalibration_Stat42: 2.979127389018469e-18 - syst_JES_EtaIntercalibration_Stat43: 5.856258361786986e-19 - syst_JES_EtaIntercalibration_Stat44: 5.856258361786986e-19 - syst_JES_EtaIntercalibration_Stat45: 6.703143217923961e-19 - syst_JES_EtaIntercalibration_Stat46: 1.504083572873529e-16 - syst_JES_EtaIntercalibration_Stat47: 7.449417982634617e-15 - syst_JES_EtaIntercalibration_Stat48: 3.8776402140992915e-16 - syst_JES_EtaIntercalibration_Stat49: 6.529262072202341e-16 - syst_JES_EtaIntercalibration_Stat5: 3.5862111970713603e-19 - syst_JES_EtaIntercalibration_Stat50: 6.725554661328092e-10 - syst_JES_EtaIntercalibration_Stat51: 2.0228198807605187e-15 - syst_JES_EtaIntercalibration_Stat52: 5.322102846385064e-16 - syst_JES_EtaIntercalibration_Stat53: 6.725869155702258e-10 - syst_JES_EtaIntercalibration_Stat54: 6.725558444430432e-10 - syst_JES_EtaIntercalibration_Stat55: 5.797869377624853e-16 - syst_JES_EtaIntercalibration_Stat56: 4.809347850800563e-15 - syst_JES_EtaIntercalibration_Stat57: 3.180048312642219e-09 - syst_JES_EtaIntercalibration_Stat58: 1.572886260191753e-14 - syst_JES_EtaIntercalibration_Stat59: 8.319780805230087e-15 - syst_JES_EtaIntercalibration_Stat6: 6.922418209701e-19 - syst_JES_EtaIntercalibration_Stat60: 7.449645280649274e-18 - syst_JES_EtaIntercalibration_Stat61: 1.3491126743437701e-15 - syst_JES_EtaIntercalibration_Stat62: 1.7587929632279065e-16 - syst_JES_EtaIntercalibration_Stat63: 6.396128603209914e-17 - syst_JES_EtaIntercalibration_Stat64: 4.261044269894412e-19 - syst_JES_EtaIntercalibration_Stat65: 5.856258361786986e-19 - syst_JES_EtaIntercalibration_Stat66: 5.856258361786986e-19 - syst_JES_EtaIntercalibration_Stat67: 4.6692284962293295e-16 - syst_JES_EtaIntercalibration_Stat68: 5.633899626368933e-14 - syst_JES_EtaIntercalibration_Stat69: 5.5162687087831386e-14 - syst_JES_EtaIntercalibration_Stat7: 2.294484752618766e-18 - syst_JES_EtaIntercalibration_Stat70: 1.239922589317575e-14 - syst_JES_EtaIntercalibration_Stat71: 6.8132030881223554e-15 - syst_JES_EtaIntercalibration_Stat72: 6.725555484631326e-10 - syst_JES_EtaIntercalibration_Stat73: 1.5135200771958727e-08 - syst_JES_EtaIntercalibration_Stat74: 1.547590248116788e-08 - syst_JES_EtaIntercalibration_Stat75: 1.8091270687228336e-07 - syst_JES_EtaIntercalibration_Stat76: 6.695250465166401e-10 - syst_JES_EtaIntercalibration_Stat77: 1.1867228741686071e-14 - syst_JES_EtaIntercalibration_Stat78: 1.882739228955512e-07 - syst_JES_EtaIntercalibration_Stat79: 1.928638311678053e-07 - syst_JES_EtaIntercalibration_Stat8: 4.412874939311106e-17 - syst_JES_EtaIntercalibration_Stat80: 3.1835554884009905e-09 - syst_JES_EtaIntercalibration_Stat81: 1.1916229891719108e-08 - syst_JES_EtaIntercalibration_Stat82: 1.404691325961962e-08 - syst_JES_EtaIntercalibration_Stat83: 2.9367671115531103e-16 - syst_JES_EtaIntercalibration_Stat84: 1.8063677655173103e-15 - syst_JES_EtaIntercalibration_Stat85: 5.682599574138583e-16 - syst_JES_EtaIntercalibration_Stat86: 2.1744137985903235e-18 - syst_JES_EtaIntercalibration_Stat87: 3.5862111970713603e-19 - syst_JES_EtaIntercalibration_Stat88: 3.834382876542909e-16 - syst_JES_EtaIntercalibration_Stat89: 5.576228939659849e-13 - syst_JES_EtaIntercalibration_Stat9: 4.359105829181026e-17 - syst_JES_EtaIntercalibration_Stat90: 5.419972058488862e-13 - syst_JES_EtaIntercalibration_Stat91: 1.2786614407261994e-14 - syst_JES_EtaIntercalibration_Stat92: 5.3723462732776264e-14 - syst_JES_EtaIntercalibration_Stat93: 6.723689349662743e-10 - syst_JES_EtaIntercalibration_Stat94: 1.40710948887249e-08 - syst_JES_EtaIntercalibration_Stat95: 1.369392307120206e-08 - syst_JES_EtaIntercalibration_Stat96: 1.8991935990187367e-07 - syst_JES_EtaIntercalibration_Stat97: 5.804087655049672e-13 - syst_JES_EtaIntercalibration_Stat98: 6.554146321222924e-14 - syst_JES_EtaIntercalibration_Stat99: 3.511882401220178e-07 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0007740743310561331 - syst_JES_Flavour_Comp: 0.002168458899771909 - syst_JES_Flavour_Response: 0.0004922050461951807 - syst_JES_Gjet_Generator: 0.0030222396910238604 - syst_JES_Gjet_OOC: 0.002472399239605125 - syst_JES_Gjet_Purity: 0.0005504936035050725 - syst_JES_Gjet_Stat1: 8.276392571646176e-06 - syst_JES_Gjet_Stat10: 5.020887645626021e-05 - syst_JES_Gjet_Stat11: 6.321066207531764e-05 - syst_JES_Gjet_Stat12: 0.00020623876333027212 - syst_JES_Gjet_Stat13: 0.0006154379802222154 - syst_JES_Gjet_Stat14: 0.001235955325851222 - syst_JES_Gjet_Stat15: 0.0005567224690094698 - syst_JES_Gjet_Stat2: 7.318979983576947e-06 - syst_JES_Gjet_Stat3: 9.033931190240493e-06 - syst_JES_Gjet_Stat4: 1.0146223238230075e-05 - syst_JES_Gjet_Stat5: 9.997775952680676e-06 - syst_JES_Gjet_Stat6: 2.9290710131371003e-05 - syst_JES_Gjet_Stat7: 3.6290748132271946e-05 - syst_JES_Gjet_Stat8: 1.5971943745205214e-05 - syst_JES_Gjet_Stat9: 3.3097660158990094e-05 - syst_JES_Gjet_Veto: 0.002346994833824736 - syst_JES_Gjet_dPhi: 0.00023580438927212532 - syst_JES_LArESZee: 0.004620558921818874 - syst_JES_LArEsmear: 0.0003707590385614355 - syst_JES_LAr_JVT: 0.0004623800033522211 - syst_JES_MJB_Alpha: 2.4019123110555057e-05 - syst_JES_MJB_Asym: 0.0003192341303808225 - syst_JES_MJB_Beta: 2.0206792793513773e-05 - syst_JES_MJB_Fragmentation: 0.00038610887955989825 - syst_JES_MJB_Stat1: 3.309541696368245e-06 - syst_JES_MJB_Stat10: 2.7874075320985984e-05 - syst_JES_MJB_Stat11: 1.907556224597325e-05 - syst_JES_MJB_Stat12: 1.5635065421992963e-05 - syst_JES_MJB_Stat13: 6.530252981317034e-06 - syst_JES_MJB_Stat14: 1.327942231424244e-05 - syst_JES_MJB_Stat15: 1.3865739098583963e-05 - syst_JES_MJB_Stat16: 1.0419671911821408e-05 - syst_JES_MJB_Stat2: 9.509396195342794e-06 - syst_JES_MJB_Stat3: 2.820972305783947e-05 - syst_JES_MJB_Stat4: 1.2492209602388204e-05 - syst_JES_MJB_Stat5: 9.801986877669242e-06 - syst_JES_MJB_Stat6: 2.035745241305994e-05 - syst_JES_MJB_Stat7: 1.7775547108317087e-05 - syst_JES_MJB_Stat8: 2.070279389357871e-05 - syst_JES_MJB_Stat9: 1.9919906042700105e-05 - syst_JES_MJB_Threshold: 0.00026821345976665677 - syst_JES_Pileup_MuOffset: 0.0005530428193187215 - syst_JES_Pileup_NPVOffset: 0.0005741970654749117 - syst_JES_Pileup_Pt_term: 0.0004529597001941784 - syst_JES_Pileup_Rho_topology: 0.0008874491576986255 - syst_JES_PunchThrough_MC15: 0.00030544725813141623 - syst_JES_SingleParticle_HighPt: 9.7241324548774e-07 - syst_JES_Zjet_MC: 0.0014400725702199875 - syst_JES_Zjet_MuScale: 9.017774711645883e-05 - syst_JES_Zjet_MuSmearID: 2.262953987601162e-05 - syst_JES_Zjet_MuSmearMS: 0.0004001761400620981 - syst_JES_Zjet_OOC: 0.0007320147863943734 - syst_JES_Zjet_Stat1: 4.795553311923453e-05 - syst_JES_Zjet_Stat10: 5.761675342294115e-05 - syst_JES_Zjet_Stat11: 7.789407727805754e-05 - syst_JES_Zjet_Stat12: 0.00024454911060970964 - syst_JES_Zjet_Stat13: 0.00043488340966286586 - syst_JES_Zjet_Stat2: 2.0426649670222478e-06 - syst_JES_Zjet_Stat3: 1.9392397995090755e-05 - syst_JES_Zjet_Stat4: 2.5798187436329708e-05 - syst_JES_Zjet_Stat5: 3.069455000484613e-05 - syst_JES_Zjet_Stat6: 2.2815347356549273e-05 - syst_JES_Zjet_Stat7: 3.2337010916285995e-05 - syst_JES_Zjet_Stat8: 1.9477322069524855e-05 - syst_JES_Zjet_Stat9: 3.2918535811909976e-05 - syst_JES_Zjet_Veto: 0.00015581604538685993 - syst_JES_Zjet_dPhi: 0.0001273453417875974 + syst_JER_NP8: 5.16123270e-05 + syst_JES_EtaIntercalibration_Modelling: 3.86013316e-03 + syst_JES_EtaIntercalibration_NonClosure: 1.22645982e-04 + syst_JES_EtaIntercalibration_Stat0: 5.85625836e-19 + syst_JES_EtaIntercalibration_Stat1: 3.38300547e-19 + syst_JES_EtaIntercalibration_Stat10: 5.54162835e-19 + syst_JES_EtaIntercalibration_Stat100: 9.80513995e-07 + syst_JES_EtaIntercalibration_Stat101: 2.02088394e-12 + syst_JES_EtaIntercalibration_Stat102: 1.40627977e-08 + syst_JES_EtaIntercalibration_Stat103: 1.40554079e-08 + syst_JES_EtaIntercalibration_Stat104: 5.15355686e-14 + syst_JES_EtaIntercalibration_Stat105: 1.20969156e-11 + syst_JES_EtaIntercalibration_Stat106: 6.97101811e-13 + syst_JES_EtaIntercalibration_Stat107: 2.00114747e-19 + syst_JES_EtaIntercalibration_Stat108: 2.97585767e-13 + syst_JES_EtaIntercalibration_Stat109: 5.35593977e-10 + syst_JES_EtaIntercalibration_Stat11: 3.74616665e-18 + syst_JES_EtaIntercalibration_Stat110: 1.12035691e-09 + syst_JES_EtaIntercalibration_Stat111: 8.25397428e-08 + syst_JES_EtaIntercalibration_Stat112: 8.23717538e-08 + syst_JES_EtaIntercalibration_Stat113: 1.27349635e-06 + syst_JES_EtaIntercalibration_Stat114: 7.58363099e-07 + syst_JES_EtaIntercalibration_Stat115: 1.71325460e-07 + syst_JES_EtaIntercalibration_Stat116: 2.23766994e-07 + syst_JES_EtaIntercalibration_Stat117: 5.90817220e-11 + syst_JES_EtaIntercalibration_Stat118: 1.13771835e-07 + syst_JES_EtaIntercalibration_Stat119: 1.89237074e-07 + syst_JES_EtaIntercalibration_Stat12: 3.58894787e-16 + syst_JES_EtaIntercalibration_Stat120: 1.95590050e-07 + syst_JES_EtaIntercalibration_Stat121: 1.67146544e-11 + syst_JES_EtaIntercalibration_Stat122: 5.86991696e-08 + syst_JES_EtaIntercalibration_Stat123: 4.55249017e-08 + syst_JES_EtaIntercalibration_Stat124: 8.10968878e-08 + syst_JES_EtaIntercalibration_Stat125: 9.88327036e-11 + syst_JES_EtaIntercalibration_Stat126: 1.65188359e-11 + syst_JES_EtaIntercalibration_Stat127: 2.79293193e-18 + syst_JES_EtaIntercalibration_Stat128: 1.22999283e-09 + syst_JES_EtaIntercalibration_Stat129: 1.21537601e-06 + syst_JES_EtaIntercalibration_Stat13: 3.40733528e-18 + syst_JES_EtaIntercalibration_Stat130: 3.84410546e-07 + syst_JES_EtaIntercalibration_Stat131: 5.33983845e-07 + syst_JES_EtaIntercalibration_Stat132: 3.24836216e-07 + syst_JES_EtaIntercalibration_Stat133: 4.11872905e-07 + syst_JES_EtaIntercalibration_Stat134: 3.65287799e-08 + syst_JES_EtaIntercalibration_Stat135: 9.82248914e-09 + syst_JES_EtaIntercalibration_Stat136: 1.38656677e-07 + syst_JES_EtaIntercalibration_Stat137: 3.52920937e-06 + syst_JES_EtaIntercalibration_Stat138: 5.79057044e-07 + syst_JES_EtaIntercalibration_Stat139: 3.60037895e-07 + syst_JES_EtaIntercalibration_Stat14: 3.38665388e-18 + syst_JES_EtaIntercalibration_Stat140: 1.51020898e-06 + syst_JES_EtaIntercalibration_Stat141: 7.50672264e-07 + syst_JES_EtaIntercalibration_Stat142: 4.04720220e-06 + syst_JES_EtaIntercalibration_Stat143: 5.56588618e-08 + syst_JES_EtaIntercalibration_Stat144: 1.43729470e-08 + syst_JES_EtaIntercalibration_Stat145: 9.86320518e-10 + syst_JES_EtaIntercalibration_Stat146: 4.26679400e-09 + syst_JES_EtaIntercalibration_Stat147: 1.66089925e-06 + syst_JES_EtaIntercalibration_Stat148: 3.83024714e-07 + syst_JES_EtaIntercalibration_Stat149: 3.49874263e-07 + syst_JES_EtaIntercalibration_Stat15: 3.04704600e-18 + syst_JES_EtaIntercalibration_Stat150: 3.07114746e-07 + syst_JES_EtaIntercalibration_Stat151: 3.29722544e-07 + syst_JES_EtaIntercalibration_Stat152: 4.78663390e-08 + syst_JES_EtaIntercalibration_Stat153: 1.77072861e-08 + syst_JES_EtaIntercalibration_Stat154: 4.58216049e-07 + syst_JES_EtaIntercalibration_Stat155: 3.57207270e-06 + syst_JES_EtaIntercalibration_Stat156: 7.89208950e-08 + syst_JES_EtaIntercalibration_Stat157: 2.81888047e-07 + syst_JES_EtaIntercalibration_Stat158: 5.57087858e-07 + syst_JES_EtaIntercalibration_Stat159: 1.54932440e-06 + syst_JES_EtaIntercalibration_Stat16: 3.62502104e-19 + syst_JES_EtaIntercalibration_Stat160: 1.95872408e-08 + syst_JES_EtaIntercalibration_Stat161: 6.86438450e-08 + syst_JES_EtaIntercalibration_Stat162: 8.98853008e-08 + syst_JES_EtaIntercalibration_Stat163: 7.07044355e-09 + syst_JES_EtaIntercalibration_Stat164: 5.33724037e-09 + syst_JES_EtaIntercalibration_Stat165: 8.24179366e-07 + syst_JES_EtaIntercalibration_Stat166: 1.15944254e-06 + syst_JES_EtaIntercalibration_Stat167: 4.38184901e-07 + syst_JES_EtaIntercalibration_Stat168: 8.43401186e-07 + syst_JES_EtaIntercalibration_Stat169: 1.61427135e-07 + syst_JES_EtaIntercalibration_Stat17: 5.96493627e-19 + syst_JES_EtaIntercalibration_Stat170: 1.42753036e-06 + syst_JES_EtaIntercalibration_Stat171: 1.01205797e-06 + syst_JES_EtaIntercalibration_Stat172: 5.33773388e-07 + syst_JES_EtaIntercalibration_Stat173: 6.45131296e-07 + syst_JES_EtaIntercalibration_Stat174: 1.45674319e-06 + syst_JES_EtaIntercalibration_Stat175: 1.68719323e-06 + syst_JES_EtaIntercalibration_Stat176: 1.57582057e-06 + syst_JES_EtaIntercalibration_Stat177: 9.92514205e-07 + syst_JES_EtaIntercalibration_Stat178: 2.05872370e-06 + syst_JES_EtaIntercalibration_Stat179: 3.46164724e-06 + syst_JES_EtaIntercalibration_Stat18: 5.85625836e-19 + syst_JES_EtaIntercalibration_Stat180: 3.94821073e-08 + syst_JES_EtaIntercalibration_Stat181: 3.86853548e-08 + syst_JES_EtaIntercalibration_Stat182: 2.75544461e-06 + syst_JES_EtaIntercalibration_Stat183: 4.64103014e-06 + syst_JES_EtaIntercalibration_Stat184: 4.44621794e-06 + syst_JES_EtaIntercalibration_Stat185: 2.41793566e-06 + syst_JES_EtaIntercalibration_Stat186: 3.64205560e-06 + syst_JES_EtaIntercalibration_Stat187: 9.84713343e-06 + syst_JES_EtaIntercalibration_Stat188: 6.82428685e-06 + syst_JES_EtaIntercalibration_Stat189: 5.47486219e-06 + syst_JES_EtaIntercalibration_Stat19: 5.26582953e-18 + syst_JES_EtaIntercalibration_Stat190: 2.69536728e-06 + syst_JES_EtaIntercalibration_Stat191: 6.74733261e-06 + syst_JES_EtaIntercalibration_Stat192: 9.09391038e-06 + syst_JES_EtaIntercalibration_Stat193: 7.22178280e-06 + syst_JES_EtaIntercalibration_Stat194: 8.01766319e-06 + syst_JES_EtaIntercalibration_Stat195: 6.89456560e-06 + syst_JES_EtaIntercalibration_Stat196: 6.11114698e-06 + syst_JES_EtaIntercalibration_Stat197: 2.75498403e-06 + syst_JES_EtaIntercalibration_Stat198: 9.87946450e-06 + syst_JES_EtaIntercalibration_Stat199: 8.55139724e-06 + syst_JES_EtaIntercalibration_Stat2: 6.70314322e-19 + syst_JES_EtaIntercalibration_Stat20: 5.85625836e-19 + syst_JES_EtaIntercalibration_Stat200: 7.47513485e-06 + syst_JES_EtaIntercalibration_Stat201: 9.03790114e-06 + syst_JES_EtaIntercalibration_Stat202: 1.50870300e-05 + syst_JES_EtaIntercalibration_Stat203: 1.79601392e-05 + syst_JES_EtaIntercalibration_Stat204: 1.42701411e-05 + syst_JES_EtaIntercalibration_Stat205: 1.41707249e-05 + syst_JES_EtaIntercalibration_Stat206: 1.42322025e-05 + syst_JES_EtaIntercalibration_Stat207: 1.44297439e-05 + syst_JES_EtaIntercalibration_Stat208: 1.72924748e-05 + syst_JES_EtaIntercalibration_Stat209: 1.41791665e-05 + syst_JES_EtaIntercalibration_Stat21: 5.85625836e-19 + syst_JES_EtaIntercalibration_Stat210: 9.50806977e-06 + syst_JES_EtaIntercalibration_Stat211: 1.25175045e-05 + syst_JES_EtaIntercalibration_Stat212: 6.67518859e-06 + syst_JES_EtaIntercalibration_Stat213: 3.76951527e-06 + syst_JES_EtaIntercalibration_Stat214: 7.38352043e-06 + syst_JES_EtaIntercalibration_Stat215: 1.43398740e-05 + syst_JES_EtaIntercalibration_Stat216: 1.76132791e-05 + syst_JES_EtaIntercalibration_Stat217: 9.91037926e-06 + syst_JES_EtaIntercalibration_Stat218: 1.36679138e-05 + syst_JES_EtaIntercalibration_Stat219: 1.55612692e-05 + syst_JES_EtaIntercalibration_Stat22: 5.85625836e-19 + syst_JES_EtaIntercalibration_Stat220: 1.32609652e-05 + syst_JES_EtaIntercalibration_Stat221: 1.17135711e-05 + syst_JES_EtaIntercalibration_Stat222: 9.16751530e-06 + syst_JES_EtaIntercalibration_Stat223: 1.23573488e-05 + syst_JES_EtaIntercalibration_Stat224: 9.32397108e-06 + syst_JES_EtaIntercalibration_Stat225: 1.31549620e-05 + syst_JES_EtaIntercalibration_Stat226: 1.73137893e-05 + syst_JES_EtaIntercalibration_Stat227: 2.55450088e-05 + syst_JES_EtaIntercalibration_Stat228: 2.84361056e-05 + syst_JES_EtaIntercalibration_Stat229: 2.44298199e-05 + syst_JES_EtaIntercalibration_Stat23: 1.69486931e-17 + syst_JES_EtaIntercalibration_Stat230: 2.60816276e-05 + syst_JES_EtaIntercalibration_Stat231: 3.62933879e-05 + syst_JES_EtaIntercalibration_Stat232: 2.85969802e-05 + syst_JES_EtaIntercalibration_Stat233: 2.25070500e-05 + syst_JES_EtaIntercalibration_Stat234: 2.11699480e-05 + syst_JES_EtaIntercalibration_Stat235: 1.10608765e-05 + syst_JES_EtaIntercalibration_Stat236: 1.09778936e-06 + syst_JES_EtaIntercalibration_Stat237: 3.65057074e-06 + syst_JES_EtaIntercalibration_Stat238: 1.66317101e-06 + syst_JES_EtaIntercalibration_Stat239: 3.34111546e-06 + syst_JES_EtaIntercalibration_Stat24: 3.84946681e-16 + syst_JES_EtaIntercalibration_Stat240: 1.74618305e-06 + syst_JES_EtaIntercalibration_Stat241: 5.31913040e-07 + syst_JES_EtaIntercalibration_Stat242: 1.99895815e-06 + syst_JES_EtaIntercalibration_Stat243: 3.99183743e-06 + syst_JES_EtaIntercalibration_Stat244: 5.75076249e-07 + syst_JES_EtaIntercalibration_Stat245: 5.98398287e-06 + syst_JES_EtaIntercalibration_Stat25: 3.76446052e-16 + syst_JES_EtaIntercalibration_Stat26: 3.54525526e-18 + syst_JES_EtaIntercalibration_Stat27: 2.96495212e-16 + syst_JES_EtaIntercalibration_Stat28: 3.99664620e-17 + syst_JES_EtaIntercalibration_Stat29: 4.64781260e-16 + syst_JES_EtaIntercalibration_Stat3: 1.25446169e-18 + syst_JES_EtaIntercalibration_Stat30: 3.79793032e-16 + syst_JES_EtaIntercalibration_Stat31: 6.72642522e-10 + syst_JES_EtaIntercalibration_Stat32: 6.75586649e-10 + syst_JES_EtaIntercalibration_Stat33: 7.56047956e-17 + syst_JES_EtaIntercalibration_Stat34: 3.57635801e-15 + syst_JES_EtaIntercalibration_Stat35: 2.09924558e-07 + syst_JES_EtaIntercalibration_Stat36: 6.63288544e-15 + syst_JES_EtaIntercalibration_Stat37: 8.56777285e-15 + syst_JES_EtaIntercalibration_Stat38: 1.46349639e-15 + syst_JES_EtaIntercalibration_Stat39: 1.53286496e-15 + syst_JES_EtaIntercalibration_Stat4: 3.38300547e-19 + syst_JES_EtaIntercalibration_Stat40: 5.08127413e-17 + syst_JES_EtaIntercalibration_Stat41: 5.12791439e-19 + syst_JES_EtaIntercalibration_Stat42: 2.97912739e-18 + syst_JES_EtaIntercalibration_Stat43: 5.85625836e-19 + syst_JES_EtaIntercalibration_Stat44: 5.85625836e-19 + syst_JES_EtaIntercalibration_Stat45: 6.70314322e-19 + syst_JES_EtaIntercalibration_Stat46: 1.50408357e-16 + syst_JES_EtaIntercalibration_Stat47: 7.44941798e-15 + syst_JES_EtaIntercalibration_Stat48: 3.87764021e-16 + syst_JES_EtaIntercalibration_Stat49: 6.52926207e-16 + syst_JES_EtaIntercalibration_Stat5: 3.58621120e-19 + syst_JES_EtaIntercalibration_Stat50: 6.72555466e-10 + syst_JES_EtaIntercalibration_Stat51: 2.02281988e-15 + syst_JES_EtaIntercalibration_Stat52: 5.32210285e-16 + syst_JES_EtaIntercalibration_Stat53: 6.72586916e-10 + syst_JES_EtaIntercalibration_Stat54: 6.72555844e-10 + syst_JES_EtaIntercalibration_Stat55: 5.79786938e-16 + syst_JES_EtaIntercalibration_Stat56: 4.80934785e-15 + syst_JES_EtaIntercalibration_Stat57: 3.18004831e-09 + syst_JES_EtaIntercalibration_Stat58: 1.57288626e-14 + syst_JES_EtaIntercalibration_Stat59: 8.31978081e-15 + syst_JES_EtaIntercalibration_Stat6: 6.92241821e-19 + syst_JES_EtaIntercalibration_Stat60: 7.44964528e-18 + syst_JES_EtaIntercalibration_Stat61: 1.34911267e-15 + syst_JES_EtaIntercalibration_Stat62: 1.75879296e-16 + syst_JES_EtaIntercalibration_Stat63: 6.39612860e-17 + syst_JES_EtaIntercalibration_Stat64: 4.26104427e-19 + syst_JES_EtaIntercalibration_Stat65: 5.85625836e-19 + syst_JES_EtaIntercalibration_Stat66: 5.85625836e-19 + syst_JES_EtaIntercalibration_Stat67: 4.66922850e-16 + syst_JES_EtaIntercalibration_Stat68: 5.63389963e-14 + syst_JES_EtaIntercalibration_Stat69: 5.51626871e-14 + syst_JES_EtaIntercalibration_Stat7: 2.29448475e-18 + syst_JES_EtaIntercalibration_Stat70: 1.23992259e-14 + syst_JES_EtaIntercalibration_Stat71: 6.81320309e-15 + syst_JES_EtaIntercalibration_Stat72: 6.72555548e-10 + syst_JES_EtaIntercalibration_Stat73: 1.51352008e-08 + syst_JES_EtaIntercalibration_Stat74: 1.54759025e-08 + syst_JES_EtaIntercalibration_Stat75: 1.80912707e-07 + syst_JES_EtaIntercalibration_Stat76: 6.69525047e-10 + syst_JES_EtaIntercalibration_Stat77: 1.18672287e-14 + syst_JES_EtaIntercalibration_Stat78: 1.88273923e-07 + syst_JES_EtaIntercalibration_Stat79: 1.92863831e-07 + syst_JES_EtaIntercalibration_Stat8: 4.41287494e-17 + syst_JES_EtaIntercalibration_Stat80: 3.18355549e-09 + syst_JES_EtaIntercalibration_Stat81: 1.19162299e-08 + syst_JES_EtaIntercalibration_Stat82: 1.40469133e-08 + syst_JES_EtaIntercalibration_Stat83: 2.93676711e-16 + syst_JES_EtaIntercalibration_Stat84: 1.80636777e-15 + syst_JES_EtaIntercalibration_Stat85: 5.68259957e-16 + syst_JES_EtaIntercalibration_Stat86: 2.17441380e-18 + syst_JES_EtaIntercalibration_Stat87: 3.58621120e-19 + syst_JES_EtaIntercalibration_Stat88: 3.83438288e-16 + syst_JES_EtaIntercalibration_Stat89: 5.57622894e-13 + syst_JES_EtaIntercalibration_Stat9: 4.35910583e-17 + syst_JES_EtaIntercalibration_Stat90: 5.41997206e-13 + syst_JES_EtaIntercalibration_Stat91: 1.27866144e-14 + syst_JES_EtaIntercalibration_Stat92: 5.37234627e-14 + syst_JES_EtaIntercalibration_Stat93: 6.72368935e-10 + syst_JES_EtaIntercalibration_Stat94: 1.40710949e-08 + syst_JES_EtaIntercalibration_Stat95: 1.36939231e-08 + syst_JES_EtaIntercalibration_Stat96: 1.89919360e-07 + syst_JES_EtaIntercalibration_Stat97: 5.80408766e-13 + syst_JES_EtaIntercalibration_Stat98: 6.55414632e-14 + syst_JES_EtaIntercalibration_Stat99: 3.51188240e-07 + syst_JES_EtaIntercalibration_TotalStat_MJB: 7.74074331e-04 + syst_JES_Flavour_Comp: 2.16845890e-03 + syst_JES_Flavour_Response: 4.92205046e-04 + syst_JES_Gjet_Generator: 3.02223969e-03 + syst_JES_Gjet_OOC: 2.47239924e-03 + syst_JES_Gjet_Purity: 5.50493604e-04 + syst_JES_Gjet_Stat1: 8.27639257e-06 + syst_JES_Gjet_Stat10: 5.02088765e-05 + syst_JES_Gjet_Stat11: 6.32106621e-05 + syst_JES_Gjet_Stat12: 2.06238763e-04 + syst_JES_Gjet_Stat13: 6.15437980e-04 + syst_JES_Gjet_Stat14: 1.23595533e-03 + syst_JES_Gjet_Stat15: 5.56722469e-04 + syst_JES_Gjet_Stat2: 7.31897998e-06 + syst_JES_Gjet_Stat3: 9.03393119e-06 + syst_JES_Gjet_Stat4: 1.01462232e-05 + syst_JES_Gjet_Stat5: 9.99777595e-06 + syst_JES_Gjet_Stat6: 2.92907101e-05 + syst_JES_Gjet_Stat7: 3.62907481e-05 + syst_JES_Gjet_Stat8: 1.59719437e-05 + syst_JES_Gjet_Stat9: 3.30976602e-05 + syst_JES_Gjet_Veto: 2.34699483e-03 + syst_JES_Gjet_dPhi: 2.35804389e-04 + syst_JES_LArESZee: 4.62055892e-03 + syst_JES_LArEsmear: 3.70759039e-04 + syst_JES_LAr_JVT: 4.62380003e-04 + syst_JES_MJB_Alpha: 2.40191231e-05 + syst_JES_MJB_Asym: 3.19234130e-04 + syst_JES_MJB_Beta: 2.02067928e-05 + syst_JES_MJB_Fragmentation: 3.86108880e-04 + syst_JES_MJB_Stat1: 3.30954170e-06 + syst_JES_MJB_Stat10: 2.78740753e-05 + syst_JES_MJB_Stat11: 1.90755622e-05 + syst_JES_MJB_Stat12: 1.56350654e-05 + syst_JES_MJB_Stat13: 6.53025298e-06 + syst_JES_MJB_Stat14: 1.32794223e-05 + syst_JES_MJB_Stat15: 1.38657391e-05 + syst_JES_MJB_Stat16: 1.04196719e-05 + syst_JES_MJB_Stat2: 9.50939620e-06 + syst_JES_MJB_Stat3: 2.82097231e-05 + syst_JES_MJB_Stat4: 1.24922096e-05 + syst_JES_MJB_Stat5: 9.80198688e-06 + syst_JES_MJB_Stat6: 2.03574524e-05 + syst_JES_MJB_Stat7: 1.77755471e-05 + syst_JES_MJB_Stat8: 2.07027939e-05 + syst_JES_MJB_Stat9: 1.99199060e-05 + syst_JES_MJB_Threshold: 2.68213460e-04 + syst_JES_Pileup_MuOffset: 5.53042819e-04 + syst_JES_Pileup_NPVOffset: 5.74197065e-04 + syst_JES_Pileup_Pt_term: 4.52959700e-04 + syst_JES_Pileup_Rho_topology: 8.87449158e-04 + syst_JES_PunchThrough_MC15: 3.05447258e-04 + syst_JES_SingleParticle_HighPt: 9.72413245e-07 + syst_JES_Zjet_MC: 1.44007257e-03 + syst_JES_Zjet_MuScale: 9.01777471e-05 + syst_JES_Zjet_MuSmearID: 2.26295399e-05 + syst_JES_Zjet_MuSmearMS: 4.00176140e-04 + syst_JES_Zjet_OOC: 7.32014786e-04 + syst_JES_Zjet_Stat1: 4.79555331e-05 + syst_JES_Zjet_Stat10: 5.76167534e-05 + syst_JES_Zjet_Stat11: 7.78940773e-05 + syst_JES_Zjet_Stat12: 2.44549111e-04 + syst_JES_Zjet_Stat13: 4.34883410e-04 + syst_JES_Zjet_Stat2: 2.04266497e-06 + syst_JES_Zjet_Stat3: 1.93923980e-05 + syst_JES_Zjet_Stat4: 2.57981874e-05 + syst_JES_Zjet_Stat5: 3.06945500e-05 + syst_JES_Zjet_Stat6: 2.28153474e-05 + syst_JES_Zjet_Stat7: 3.23370109e-05 + syst_JES_Zjet_Stat8: 1.94773221e-05 + syst_JES_Zjet_Stat9: 3.29185358e-05 + syst_JES_Zjet_Veto: 1.55816045e-04 + syst_JES_Zjet_dPhi: 1.27345342e-04 syst_PRW: 0.0 syst_Unfolding_bias: 0.0 - syst_cleaning: 0.0013778464174210418 + syst_cleaning: 1.37784642e-03 syst_lumi: 0.002835 -- stat: 0.0005462 - syst_JER_CROSS_CALIB_FORWARD: 1.0031e-14 - syst_JER_NOISE_FORWARD: 1.0565e-11 - syst_JER_NP0: 0.0001294414412002586 - syst_JER_NP1: 2.5303479503815277e-05 - syst_JER_NP2: 7.809639940483812e-05 - syst_JER_NP3: 1.238514347918505e-05 - syst_JER_NP4: 8.98445323878977e-06 - syst_JER_NP5: 1.006522746179019e-05 - syst_JER_NP6: 2.1615394398437422e-09 +- stat: 5.46200000e-04 + syst_JER_CROSS_CALIB_FORWARD: 1.00310000e-14 + syst_JER_NOISE_FORWARD: 1.05650000e-11 + syst_JER_NP0: 1.29441441e-04 + syst_JER_NP1: 2.53034795e-05 + syst_JER_NP2: 7.80963994e-05 + syst_JER_NP3: 1.23851435e-05 + syst_JER_NP4: 8.98445324e-06 + syst_JER_NP5: 1.00652275e-05 + syst_JER_NP6: 2.16153944e-09 syst_JER_NP7: 0.0 - syst_JER_NP8: 2.2731291208376176e-05 - syst_JES_EtaIntercalibration_Modelling: 0.0021681180779653123 - syst_JES_EtaIntercalibration_NonClosure: 4.7640428996808995e-05 - syst_JES_EtaIntercalibration_Stat0: 5.659682676617126e-20 - syst_JES_EtaIntercalibration_Stat1: 3.6632149814063605e-20 - syst_JES_EtaIntercalibration_Stat10: 5.120505736741245e-20 - syst_JES_EtaIntercalibration_Stat100: 5.244649868727228e-07 - syst_JES_EtaIntercalibration_Stat101: 1.409775331630895e-13 - syst_JES_EtaIntercalibration_Stat102: 1.8176858758911528e-09 - syst_JES_EtaIntercalibration_Stat103: 1.8169079953791067e-09 - syst_JES_EtaIntercalibration_Stat104: 3.748354664049282e-15 - syst_JES_EtaIntercalibration_Stat105: 8.395361664038065e-13 - syst_JES_EtaIntercalibration_Stat106: 4.8755806313376663e-14 - syst_JES_EtaIntercalibration_Stat107: 3.289650893331996e-20 - syst_JES_EtaIntercalibration_Stat108: 2.14440746653726e-14 - syst_JES_EtaIntercalibration_Stat109: 4.909969081898582e-11 - syst_JES_EtaIntercalibration_Stat11: 4.0290350814431974e-19 - syst_JES_EtaIntercalibration_Stat110: 7.809565118434892e-11 - syst_JES_EtaIntercalibration_Stat111: 1.9938151850480025e-08 - syst_JES_EtaIntercalibration_Stat112: 1.998624625786443e-08 - syst_JES_EtaIntercalibration_Stat113: 6.019234093304563e-07 - syst_JES_EtaIntercalibration_Stat114: 4.160774373443001e-07 - syst_JES_EtaIntercalibration_Stat115: 8.663338545272255e-08 - syst_JES_EtaIntercalibration_Stat116: 1.1962430470017372e-07 - syst_JES_EtaIntercalibration_Stat117: 4.106697615785706e-12 - syst_JES_EtaIntercalibration_Stat118: 2.1004479224372e-08 - syst_JES_EtaIntercalibration_Stat119: 9.862140677865025e-08 - syst_JES_EtaIntercalibration_Stat12: 3.127404142415879e-17 - syst_JES_EtaIntercalibration_Stat120: 1.0624065558909168e-07 - syst_JES_EtaIntercalibration_Stat121: 1.1694720205289224e-12 - syst_JES_EtaIntercalibration_Stat122: 1.3830422877506373e-08 - syst_JES_EtaIntercalibration_Stat123: 5.55567034659185e-09 - syst_JES_EtaIntercalibration_Stat124: 1.3338497371143422e-08 - syst_JES_EtaIntercalibration_Stat125: 7.1852907387244955e-12 - syst_JES_EtaIntercalibration_Stat126: 1.1492293276365689e-12 - syst_JES_EtaIntercalibration_Stat127: 4.1716443700296405e-19 - syst_JES_EtaIntercalibration_Stat128: 9.980959911251022e-11 - syst_JES_EtaIntercalibration_Stat129: 1.2384160311158727e-06 - syst_JES_EtaIntercalibration_Stat13: 4.1977185089045696e-19 - syst_JES_EtaIntercalibration_Stat130: 1.8755113983171283e-07 - syst_JES_EtaIntercalibration_Stat131: 4.6909209402312463e-08 - syst_JES_EtaIntercalibration_Stat132: 9.238966958892103e-08 - syst_JES_EtaIntercalibration_Stat133: 2.875005786081134e-07 - syst_JES_EtaIntercalibration_Stat134: 1.7785491924599668e-09 - syst_JES_EtaIntercalibration_Stat135: 9.663711127201599e-10 - syst_JES_EtaIntercalibration_Stat136: 1.264650987426966e-07 - syst_JES_EtaIntercalibration_Stat137: 1.965468176416754e-06 - syst_JES_EtaIntercalibration_Stat138: 3.1034866070276506e-07 - syst_JES_EtaIntercalibration_Stat139: 2.0530049764654736e-07 - syst_JES_EtaIntercalibration_Stat14: 4.163183479021793e-19 - syst_JES_EtaIntercalibration_Stat140: 9.362850242714556e-07 - syst_JES_EtaIntercalibration_Stat141: 4.833856302167039e-07 - syst_JES_EtaIntercalibration_Stat142: 2.005699287031832e-06 - syst_JES_EtaIntercalibration_Stat143: 7.40504517204318e-09 - syst_JES_EtaIntercalibration_Stat144: 7.2047836960938666e-09 - syst_JES_EtaIntercalibration_Stat145: 7.861964886082868e-11 - syst_JES_EtaIntercalibration_Stat146: 4.321487119036686e-10 - syst_JES_EtaIntercalibration_Stat147: 1.3574890059823689e-06 - syst_JES_EtaIntercalibration_Stat148: 1.876117134083051e-07 - syst_JES_EtaIntercalibration_Stat149: 1.664500826073691e-08 - syst_JES_EtaIntercalibration_Stat15: 3.2292364898687737e-19 - syst_JES_EtaIntercalibration_Stat150: 9.007132267680985e-08 - syst_JES_EtaIntercalibration_Stat151: 4.1135204809326034e-08 - syst_JES_EtaIntercalibration_Stat152: 1.1250601273012033e-07 - syst_JES_EtaIntercalibration_Stat153: 3.198756699387279e-09 - syst_JES_EtaIntercalibration_Stat154: 2.646320983932221e-07 - syst_JES_EtaIntercalibration_Stat155: 1.967858149237071e-06 - syst_JES_EtaIntercalibration_Stat156: 8.180458548525246e-08 - syst_JES_EtaIntercalibration_Stat157: 3.0059166372339734e-08 - syst_JES_EtaIntercalibration_Stat158: 7.288599779793099e-08 - syst_JES_EtaIntercalibration_Stat159: 5.314637977322632e-07 - syst_JES_EtaIntercalibration_Stat16: 3.492520638092207e-20 - syst_JES_EtaIntercalibration_Stat160: 1.9542821380783275e-09 - syst_JES_EtaIntercalibration_Stat161: 5.463761341786444e-09 - syst_JES_EtaIntercalibration_Stat162: 1.0748935258317449e-09 - syst_JES_EtaIntercalibration_Stat163: 7.252383448736008e-10 - syst_JES_EtaIntercalibration_Stat164: 7.403716549814694e-10 - syst_JES_EtaIntercalibration_Stat165: 1.0914288304213885e-06 - syst_JES_EtaIntercalibration_Stat166: 1.2157704434123243e-06 - syst_JES_EtaIntercalibration_Stat167: 4.207488888874218e-07 - syst_JES_EtaIntercalibration_Stat168: 2.3215170013377027e-07 - syst_JES_EtaIntercalibration_Stat169: 1.4419322973010903e-07 - syst_JES_EtaIntercalibration_Stat17: 5.790521220063009e-20 - syst_JES_EtaIntercalibration_Stat170: 5.703614358457275e-07 - syst_JES_EtaIntercalibration_Stat171: 4.533551891177601e-07 - syst_JES_EtaIntercalibration_Stat172: 3.5744640157651607e-07 - syst_JES_EtaIntercalibration_Stat173: 3.0046532208878945e-07 - syst_JES_EtaIntercalibration_Stat174: 4.473624788692052e-07 - syst_JES_EtaIntercalibration_Stat175: 4.4673153851054657e-07 - syst_JES_EtaIntercalibration_Stat176: 5.146933844533073e-07 - syst_JES_EtaIntercalibration_Stat177: 2.602467959456946e-07 - syst_JES_EtaIntercalibration_Stat178: 4.4189814863042816e-07 - syst_JES_EtaIntercalibration_Stat179: 1.128991030743823e-06 - syst_JES_EtaIntercalibration_Stat18: 5.659682676617126e-20 - syst_JES_EtaIntercalibration_Stat180: 1.3179262147404155e-08 - syst_JES_EtaIntercalibration_Stat181: 5.3433767413230354e-09 - syst_JES_EtaIntercalibration_Stat182: 8.002028039815907e-07 - syst_JES_EtaIntercalibration_Stat183: 1.962413564975566e-06 - syst_JES_EtaIntercalibration_Stat184: 1.6681537698905339e-06 - syst_JES_EtaIntercalibration_Stat185: 4.970505174275547e-07 - syst_JES_EtaIntercalibration_Stat186: 2.405545468287806e-06 - syst_JES_EtaIntercalibration_Stat187: 3.918861409899564e-06 - syst_JES_EtaIntercalibration_Stat188: 2.6062797240511236e-06 - syst_JES_EtaIntercalibration_Stat189: 3.584111684574017e-06 - syst_JES_EtaIntercalibration_Stat19: 6.713589408803609e-19 - syst_JES_EtaIntercalibration_Stat190: 1.4326391407119938e-06 - syst_JES_EtaIntercalibration_Stat191: 2.050404396088733e-06 - syst_JES_EtaIntercalibration_Stat192: 4.453326083670497e-06 - syst_JES_EtaIntercalibration_Stat193: 2.334723538237451e-06 - syst_JES_EtaIntercalibration_Stat194: 2.8258408925486235e-06 - syst_JES_EtaIntercalibration_Stat195: 2.4542609213366045e-06 - syst_JES_EtaIntercalibration_Stat196: 1.9886396575297396e-06 - syst_JES_EtaIntercalibration_Stat197: 1.0103723323606996e-06 - syst_JES_EtaIntercalibration_Stat198: 4.324774429955856e-06 - syst_JES_EtaIntercalibration_Stat199: 4.936061081469718e-06 - syst_JES_EtaIntercalibration_Stat2: 7.902970754722555e-20 - syst_JES_EtaIntercalibration_Stat20: 5.659682676617126e-20 - syst_JES_EtaIntercalibration_Stat200: 3.3031097650547432e-06 - syst_JES_EtaIntercalibration_Stat201: 4.690277896884149e-06 - syst_JES_EtaIntercalibration_Stat202: 6.220977475445478e-06 - syst_JES_EtaIntercalibration_Stat203: 7.455404130561938e-06 - syst_JES_EtaIntercalibration_Stat204: 6.551658167975494e-06 - syst_JES_EtaIntercalibration_Stat205: 5.069462964654145e-06 - syst_JES_EtaIntercalibration_Stat206: 6.628036568245532e-06 - syst_JES_EtaIntercalibration_Stat207: 6.345171550084363e-06 - syst_JES_EtaIntercalibration_Stat208: 7.438177935489309e-06 - syst_JES_EtaIntercalibration_Stat209: 6.645528270950325e-06 - syst_JES_EtaIntercalibration_Stat21: 5.659682676617126e-20 - syst_JES_EtaIntercalibration_Stat210: 2.897746964453591e-06 - syst_JES_EtaIntercalibration_Stat211: 4.214125383754024e-06 - syst_JES_EtaIntercalibration_Stat212: 4.1920354244686434e-06 - syst_JES_EtaIntercalibration_Stat213: 2.019046416027873e-06 - syst_JES_EtaIntercalibration_Stat214: 4.214606357656667e-06 - syst_JES_EtaIntercalibration_Stat215: 7.068027730562466e-06 - syst_JES_EtaIntercalibration_Stat216: 9.51020413818757e-06 - syst_JES_EtaIntercalibration_Stat217: 5.247605239535459e-06 - syst_JES_EtaIntercalibration_Stat218: 6.642828539108924e-06 - syst_JES_EtaIntercalibration_Stat219: 8.860207714833779e-06 - syst_JES_EtaIntercalibration_Stat22: 5.659682676617126e-20 - syst_JES_EtaIntercalibration_Stat220: 8.17189541966856e-06 - syst_JES_EtaIntercalibration_Stat221: 4.9660581953899814e-06 - syst_JES_EtaIntercalibration_Stat222: 5.113703629220215e-06 - syst_JES_EtaIntercalibration_Stat223: 6.183602995018357e-06 - syst_JES_EtaIntercalibration_Stat224: 7.88871984228113e-06 - syst_JES_EtaIntercalibration_Stat225: 9.738295127998536e-06 - syst_JES_EtaIntercalibration_Stat226: 1.1648294413775778e-05 - syst_JES_EtaIntercalibration_Stat227: 1.894069428505724e-05 - syst_JES_EtaIntercalibration_Stat228: 1.900084998098769e-05 - syst_JES_EtaIntercalibration_Stat229: 1.5016813077347671e-05 - syst_JES_EtaIntercalibration_Stat23: 1.882969774551626e-18 - syst_JES_EtaIntercalibration_Stat230: 1.9155784374438965e-05 - syst_JES_EtaIntercalibration_Stat231: 2.3557601745508814e-05 - syst_JES_EtaIntercalibration_Stat232: 1.9471348181366385e-05 - syst_JES_EtaIntercalibration_Stat233: 1.3980204531765622e-05 - syst_JES_EtaIntercalibration_Stat234: 1.2029386299807651e-05 - syst_JES_EtaIntercalibration_Stat235: 6.541089874783854e-06 - syst_JES_EtaIntercalibration_Stat236: 8.060013450981332e-07 - syst_JES_EtaIntercalibration_Stat237: 1.824148601402857e-06 - syst_JES_EtaIntercalibration_Stat238: 1.5841988511547408e-06 - syst_JES_EtaIntercalibration_Stat239: 2.147282934314899e-06 - syst_JES_EtaIntercalibration_Stat24: 3.342801631865104e-17 - syst_JES_EtaIntercalibration_Stat240: 3.656907377484423e-07 - syst_JES_EtaIntercalibration_Stat241: 2.858385323967362e-07 - syst_JES_EtaIntercalibration_Stat242: 1.0071935898823026e-06 - syst_JES_EtaIntercalibration_Stat243: 2.354123751011191e-06 - syst_JES_EtaIntercalibration_Stat244: 3.3518931805179896e-08 - syst_JES_EtaIntercalibration_Stat245: 2.3844112480862023e-06 - syst_JES_EtaIntercalibration_Stat25: 3.3031807945070163e-17 - syst_JES_EtaIntercalibration_Stat26: 3.7298861912932413e-19 - syst_JES_EtaIntercalibration_Stat27: 2.4078907099091934e-17 - syst_JES_EtaIntercalibration_Stat28: 3.9193271345347026e-18 - syst_JES_EtaIntercalibration_Stat29: 4.0237977086329774e-17 - syst_JES_EtaIntercalibration_Stat3: 1.5387166340817922e-19 - syst_JES_EtaIntercalibration_Stat30: 3.2359599425827265e-17 - syst_JES_EtaIntercalibration_Stat31: 4.964062750044299e-11 - syst_JES_EtaIntercalibration_Stat32: 4.984844226148503e-11 - syst_JES_EtaIntercalibration_Stat33: 1.6289798548478124e-18 - syst_JES_EtaIntercalibration_Stat34: 3.1069482256508556e-16 - syst_JES_EtaIntercalibration_Stat35: 1.1222823207654625e-07 - syst_JES_EtaIntercalibration_Stat36: 4.894486052692356e-16 - syst_JES_EtaIntercalibration_Stat37: 7.806773859461331e-16 - syst_JES_EtaIntercalibration_Stat38: 1.251068631210934e-16 - syst_JES_EtaIntercalibration_Stat39: 1.308564385118287e-16 - syst_JES_EtaIntercalibration_Stat4: 3.6632149814063605e-20 - syst_JES_EtaIntercalibration_Stat40: 5.0908170267649574e-18 - syst_JES_EtaIntercalibration_Stat41: 7.882614081001302e-20 - syst_JES_EtaIntercalibration_Stat42: 3.7308374395033617e-19 - syst_JES_EtaIntercalibration_Stat43: 5.659682676617126e-20 - syst_JES_EtaIntercalibration_Stat44: 5.659682676617126e-20 - syst_JES_EtaIntercalibration_Stat45: 7.902970754722555e-20 - syst_JES_EtaIntercalibration_Stat46: 8.582344064018874e-18 - syst_JES_EtaIntercalibration_Stat47: 5.895130288636545e-16 - syst_JES_EtaIntercalibration_Stat48: 3.2522552452106214e-17 - syst_JES_EtaIntercalibration_Stat49: 5.3374516945706403e-17 - syst_JES_EtaIntercalibration_Stat5: 3.465833665945323e-20 - syst_JES_EtaIntercalibration_Stat50: 4.9640587639112504e-11 - syst_JES_EtaIntercalibration_Stat51: 1.7114459405718896e-16 - syst_JES_EtaIntercalibration_Stat52: 4.7145044031690123e-17 - syst_JES_EtaIntercalibration_Stat53: 4.96428868420845e-11 - syst_JES_EtaIntercalibration_Stat54: 4.963196109757696e-11 - syst_JES_EtaIntercalibration_Stat55: 4.0861177402884515e-17 - syst_JES_EtaIntercalibration_Stat56: 3.709259349250198e-16 - syst_JES_EtaIntercalibration_Stat57: 2.666494617151288e-10 - syst_JES_EtaIntercalibration_Stat58: 1.2335704276611043e-15 - syst_JES_EtaIntercalibration_Stat59: 6.544984683954578e-16 - syst_JES_EtaIntercalibration_Stat6: 8.605325438790796e-20 - syst_JES_EtaIntercalibration_Stat60: 9.88389233488002e-19 - syst_JES_EtaIntercalibration_Stat61: 1.1672088342280484e-16 - syst_JES_EtaIntercalibration_Stat62: 1.7538824447493624e-17 - syst_JES_EtaIntercalibration_Stat63: 6.1515116576984554e-18 - syst_JES_EtaIntercalibration_Stat64: 5.911246315287497e-20 - syst_JES_EtaIntercalibration_Stat65: 5.659682676617126e-20 - syst_JES_EtaIntercalibration_Stat66: 5.659682676617126e-20 - syst_JES_EtaIntercalibration_Stat67: 4.226104944271971e-17 - syst_JES_EtaIntercalibration_Stat68: 4.1525135460344975e-15 - syst_JES_EtaIntercalibration_Stat69: 4.009029691833175e-15 - syst_JES_EtaIntercalibration_Stat7: 2.4969672564933648e-19 - syst_JES_EtaIntercalibration_Stat70: 9.814150536342918e-16 - syst_JES_EtaIntercalibration_Stat71: 5.436772457074143e-16 - syst_JES_EtaIntercalibration_Stat72: 4.96319289447895e-11 - syst_JES_EtaIntercalibration_Stat73: 1.9680846675892785e-09 - syst_JES_EtaIntercalibration_Stat74: 2.0013867906569264e-09 - syst_JES_EtaIntercalibration_Stat75: 9.670039658946582e-08 - syst_JES_EtaIntercalibration_Stat76: 4.941547890896443e-11 - syst_JES_EtaIntercalibration_Stat77: 9.03485727654289e-16 - syst_JES_EtaIntercalibration_Stat78: 1.006667929488127e-07 - syst_JES_EtaIntercalibration_Stat79: 1.0488433472571566e-07 - syst_JES_EtaIntercalibration_Stat8: 4.349340578754439e-18 - syst_JES_EtaIntercalibration_Stat80: 2.6682570035395707e-10 - syst_JES_EtaIntercalibration_Stat81: 1.5397453362036042e-09 - syst_JES_EtaIntercalibration_Stat82: 1.8160539423908654e-09 - syst_JES_EtaIntercalibration_Stat83: 3.301861880818154e-17 - syst_JES_EtaIntercalibration_Stat84: 1.5706790030747847e-16 - syst_JES_EtaIntercalibration_Stat85: 4.85225127956086e-17 - syst_JES_EtaIntercalibration_Stat86: 2.318896389988134e-19 - syst_JES_EtaIntercalibration_Stat87: 3.465833665945323e-20 - syst_JES_EtaIntercalibration_Stat88: 3.337090721017336e-17 - syst_JES_EtaIntercalibration_Stat89: 3.9060579472788154e-14 - syst_JES_EtaIntercalibration_Stat9: 4.259583431217188e-18 - syst_JES_EtaIntercalibration_Stat90: 3.8047874658218424e-14 - syst_JES_EtaIntercalibration_Stat91: 1.0148662276379088e-15 - syst_JES_EtaIntercalibration_Stat92: 3.875048266473594e-15 - syst_JES_EtaIntercalibration_Stat93: 4.9622226306739475e-11 - syst_JES_EtaIntercalibration_Stat94: 1.8304364703193061e-09 - syst_JES_EtaIntercalibration_Stat95: 1.7880610328509483e-09 - syst_JES_EtaIntercalibration_Stat96: 1.015154970446835e-07 - syst_JES_EtaIntercalibration_Stat97: 4.068297278960819e-14 - syst_JES_EtaIntercalibration_Stat98: 4.8383868179383916e-15 - syst_JES_EtaIntercalibration_Stat99: 1.8771941908071205e-07 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.00045903536628455986 - syst_JES_Flavour_Comp: 0.0012292565100498756 - syst_JES_Flavour_Response: 0.00017117429713598944 - syst_JES_Gjet_Generator: 0.0016556269960350369 - syst_JES_Gjet_OOC: 0.0013565346687423807 - syst_JES_Gjet_Purity: 0.0002766457301315168 - syst_JES_Gjet_Stat1: 5.282027924954581e-06 - syst_JES_Gjet_Stat10: 2.813966017918482e-05 - syst_JES_Gjet_Stat11: 3.483607601323663e-05 - syst_JES_Gjet_Stat12: 0.0001040571179689309 - syst_JES_Gjet_Stat13: 0.0003138082694895085 - syst_JES_Gjet_Stat14: 0.0007296054344644097 - syst_JES_Gjet_Stat15: 0.0005092828290841937 - syst_JES_Gjet_Stat2: 5.170092528185545e-06 - syst_JES_Gjet_Stat3: 6.399380907556605e-06 - syst_JES_Gjet_Stat4: 4.793967459213716e-06 - syst_JES_Gjet_Stat5: 4.723355586868302e-06 - syst_JES_Gjet_Stat6: 1.680625106917066e-05 - syst_JES_Gjet_Stat7: 1.9665536319917644e-05 - syst_JES_Gjet_Stat8: 8.985741190909073e-06 - syst_JES_Gjet_Stat9: 1.892249455013794e-05 - syst_JES_Gjet_Veto: 0.0013226146868986447 - syst_JES_Gjet_dPhi: 0.00013745924632413783 - syst_JES_LArESZee: 0.0025416071195210324 - syst_JES_LArEsmear: 0.00021083028126908144 - syst_JES_LAr_JVT: 0.0002586133987248147 - syst_JES_MJB_Alpha: 1.5002329819064771e-05 - syst_JES_MJB_Asym: 0.0002111754247065695 - syst_JES_MJB_Beta: 1.5182213277384822e-05 - syst_JES_MJB_Fragmentation: 0.00019403409494210032 - syst_JES_MJB_Stat1: 8.464095414602792e-07 - syst_JES_MJB_Stat10: 2.220883607936265e-05 - syst_JES_MJB_Stat11: 1.8316415451719802e-05 - syst_JES_MJB_Stat12: 1.794267516286242e-05 - syst_JES_MJB_Stat13: 1.0479811544107078e-05 - syst_JES_MJB_Stat14: 3.823527223650958e-06 - syst_JES_MJB_Stat15: 4.045126267497716e-06 - syst_JES_MJB_Stat16: 1.1546959632301483e-05 - syst_JES_MJB_Stat2: 3.736739755455282e-06 - syst_JES_MJB_Stat3: 1.2211345134750717e-05 - syst_JES_MJB_Stat4: 7.459008245068509e-06 - syst_JES_MJB_Stat5: 6.674637374419676e-06 - syst_JES_MJB_Stat6: 9.636846826114857e-06 - syst_JES_MJB_Stat7: 9.732229549286227e-06 - syst_JES_MJB_Stat8: 1.3777068011736026e-05 - syst_JES_MJB_Stat9: 1.3439586926315855e-05 - syst_JES_MJB_Threshold: 0.00016640384610939736 - syst_JES_Pileup_MuOffset: 0.00031395682824235567 - syst_JES_Pileup_NPVOffset: 0.0003272246132246167 - syst_JES_Pileup_Pt_term: 0.00023112444699771592 - syst_JES_Pileup_Rho_topology: 0.0004759381892641102 - syst_JES_PunchThrough_MC15: 0.00021732434286107942 - syst_JES_SingleParticle_HighPt: 5.198649055283498e-07 - syst_JES_Zjet_MC: 0.0007264660126255049 - syst_JES_Zjet_MuScale: 5.192026651510949e-05 - syst_JES_Zjet_MuSmearID: 1.4383737926908985e-05 - syst_JES_Zjet_MuSmearMS: 0.0002046116504503104 - syst_JES_Zjet_OOC: 0.0003845067847255754 - syst_JES_Zjet_Stat1: 2.6852389092965265e-05 - syst_JES_Zjet_Stat10: 3.338884656588184e-05 - syst_JES_Zjet_Stat11: 4.510568340021023e-05 - syst_JES_Zjet_Stat12: 0.0001281963208325418 - syst_JES_Zjet_Stat13: 0.00022054224085195107 - syst_JES_Zjet_Stat2: 8.416315583436734e-07 - syst_JES_Zjet_Stat3: 1.430400178271801e-05 - syst_JES_Zjet_Stat4: 1.5538642822009906e-05 - syst_JES_Zjet_Stat5: 1.9985856874299887e-05 - syst_JES_Zjet_Stat6: 1.3503122111200802e-05 - syst_JES_Zjet_Stat7: 2.1262503968253598e-05 - syst_JES_Zjet_Stat8: 1.220475246574055e-05 - syst_JES_Zjet_Stat9: 1.9504247614301864e-05 - syst_JES_Zjet_Veto: 8.599153970013561e-05 - syst_JES_Zjet_dPhi: 7.327607164006542e-05 + syst_JER_NP8: 2.27312912e-05 + syst_JES_EtaIntercalibration_Modelling: 2.16811808e-03 + syst_JES_EtaIntercalibration_NonClosure: 4.76404290e-05 + syst_JES_EtaIntercalibration_Stat0: 5.65968268e-20 + syst_JES_EtaIntercalibration_Stat1: 3.66321498e-20 + syst_JES_EtaIntercalibration_Stat10: 5.12050574e-20 + syst_JES_EtaIntercalibration_Stat100: 5.24464987e-07 + syst_JES_EtaIntercalibration_Stat101: 1.40977533e-13 + syst_JES_EtaIntercalibration_Stat102: 1.81768588e-09 + syst_JES_EtaIntercalibration_Stat103: 1.81690800e-09 + syst_JES_EtaIntercalibration_Stat104: 3.74835466e-15 + syst_JES_EtaIntercalibration_Stat105: 8.39536166e-13 + syst_JES_EtaIntercalibration_Stat106: 4.87558063e-14 + syst_JES_EtaIntercalibration_Stat107: 3.28965089e-20 + syst_JES_EtaIntercalibration_Stat108: 2.14440747e-14 + syst_JES_EtaIntercalibration_Stat109: 4.90996908e-11 + syst_JES_EtaIntercalibration_Stat11: 4.02903508e-19 + syst_JES_EtaIntercalibration_Stat110: 7.80956512e-11 + syst_JES_EtaIntercalibration_Stat111: 1.99381519e-08 + syst_JES_EtaIntercalibration_Stat112: 1.99862463e-08 + syst_JES_EtaIntercalibration_Stat113: 6.01923409e-07 + syst_JES_EtaIntercalibration_Stat114: 4.16077437e-07 + syst_JES_EtaIntercalibration_Stat115: 8.66333855e-08 + syst_JES_EtaIntercalibration_Stat116: 1.19624305e-07 + syst_JES_EtaIntercalibration_Stat117: 4.10669762e-12 + syst_JES_EtaIntercalibration_Stat118: 2.10044792e-08 + syst_JES_EtaIntercalibration_Stat119: 9.86214068e-08 + syst_JES_EtaIntercalibration_Stat12: 3.12740414e-17 + syst_JES_EtaIntercalibration_Stat120: 1.06240656e-07 + syst_JES_EtaIntercalibration_Stat121: 1.16947202e-12 + syst_JES_EtaIntercalibration_Stat122: 1.38304229e-08 + syst_JES_EtaIntercalibration_Stat123: 5.55567035e-09 + syst_JES_EtaIntercalibration_Stat124: 1.33384974e-08 + syst_JES_EtaIntercalibration_Stat125: 7.18529074e-12 + syst_JES_EtaIntercalibration_Stat126: 1.14922933e-12 + syst_JES_EtaIntercalibration_Stat127: 4.17164437e-19 + syst_JES_EtaIntercalibration_Stat128: 9.98095991e-11 + syst_JES_EtaIntercalibration_Stat129: 1.23841603e-06 + syst_JES_EtaIntercalibration_Stat13: 4.19771851e-19 + syst_JES_EtaIntercalibration_Stat130: 1.87551140e-07 + syst_JES_EtaIntercalibration_Stat131: 4.69092094e-08 + syst_JES_EtaIntercalibration_Stat132: 9.23896696e-08 + syst_JES_EtaIntercalibration_Stat133: 2.87500579e-07 + syst_JES_EtaIntercalibration_Stat134: 1.77854919e-09 + syst_JES_EtaIntercalibration_Stat135: 9.66371113e-10 + syst_JES_EtaIntercalibration_Stat136: 1.26465099e-07 + syst_JES_EtaIntercalibration_Stat137: 1.96546818e-06 + syst_JES_EtaIntercalibration_Stat138: 3.10348661e-07 + syst_JES_EtaIntercalibration_Stat139: 2.05300498e-07 + syst_JES_EtaIntercalibration_Stat14: 4.16318348e-19 + syst_JES_EtaIntercalibration_Stat140: 9.36285024e-07 + syst_JES_EtaIntercalibration_Stat141: 4.83385630e-07 + syst_JES_EtaIntercalibration_Stat142: 2.00569929e-06 + syst_JES_EtaIntercalibration_Stat143: 7.40504517e-09 + syst_JES_EtaIntercalibration_Stat144: 7.20478370e-09 + syst_JES_EtaIntercalibration_Stat145: 7.86196489e-11 + syst_JES_EtaIntercalibration_Stat146: 4.32148712e-10 + syst_JES_EtaIntercalibration_Stat147: 1.35748901e-06 + syst_JES_EtaIntercalibration_Stat148: 1.87611713e-07 + syst_JES_EtaIntercalibration_Stat149: 1.66450083e-08 + syst_JES_EtaIntercalibration_Stat15: 3.22923649e-19 + syst_JES_EtaIntercalibration_Stat150: 9.00713227e-08 + syst_JES_EtaIntercalibration_Stat151: 4.11352048e-08 + syst_JES_EtaIntercalibration_Stat152: 1.12506013e-07 + syst_JES_EtaIntercalibration_Stat153: 3.19875670e-09 + syst_JES_EtaIntercalibration_Stat154: 2.64632098e-07 + syst_JES_EtaIntercalibration_Stat155: 1.96785815e-06 + syst_JES_EtaIntercalibration_Stat156: 8.18045855e-08 + syst_JES_EtaIntercalibration_Stat157: 3.00591664e-08 + syst_JES_EtaIntercalibration_Stat158: 7.28859978e-08 + syst_JES_EtaIntercalibration_Stat159: 5.31463798e-07 + syst_JES_EtaIntercalibration_Stat16: 3.49252064e-20 + syst_JES_EtaIntercalibration_Stat160: 1.95428214e-09 + syst_JES_EtaIntercalibration_Stat161: 5.46376134e-09 + syst_JES_EtaIntercalibration_Stat162: 1.07489353e-09 + syst_JES_EtaIntercalibration_Stat163: 7.25238345e-10 + syst_JES_EtaIntercalibration_Stat164: 7.40371655e-10 + syst_JES_EtaIntercalibration_Stat165: 1.09142883e-06 + syst_JES_EtaIntercalibration_Stat166: 1.21577044e-06 + syst_JES_EtaIntercalibration_Stat167: 4.20748889e-07 + syst_JES_EtaIntercalibration_Stat168: 2.32151700e-07 + syst_JES_EtaIntercalibration_Stat169: 1.44193230e-07 + syst_JES_EtaIntercalibration_Stat17: 5.79052122e-20 + syst_JES_EtaIntercalibration_Stat170: 5.70361436e-07 + syst_JES_EtaIntercalibration_Stat171: 4.53355189e-07 + syst_JES_EtaIntercalibration_Stat172: 3.57446402e-07 + syst_JES_EtaIntercalibration_Stat173: 3.00465322e-07 + syst_JES_EtaIntercalibration_Stat174: 4.47362479e-07 + syst_JES_EtaIntercalibration_Stat175: 4.46731539e-07 + syst_JES_EtaIntercalibration_Stat176: 5.14693384e-07 + syst_JES_EtaIntercalibration_Stat177: 2.60246796e-07 + syst_JES_EtaIntercalibration_Stat178: 4.41898149e-07 + syst_JES_EtaIntercalibration_Stat179: 1.12899103e-06 + syst_JES_EtaIntercalibration_Stat18: 5.65968268e-20 + syst_JES_EtaIntercalibration_Stat180: 1.31792621e-08 + syst_JES_EtaIntercalibration_Stat181: 5.34337674e-09 + syst_JES_EtaIntercalibration_Stat182: 8.00202804e-07 + syst_JES_EtaIntercalibration_Stat183: 1.96241356e-06 + syst_JES_EtaIntercalibration_Stat184: 1.66815377e-06 + syst_JES_EtaIntercalibration_Stat185: 4.97050517e-07 + syst_JES_EtaIntercalibration_Stat186: 2.40554547e-06 + syst_JES_EtaIntercalibration_Stat187: 3.91886141e-06 + syst_JES_EtaIntercalibration_Stat188: 2.60627972e-06 + syst_JES_EtaIntercalibration_Stat189: 3.58411168e-06 + syst_JES_EtaIntercalibration_Stat19: 6.71358941e-19 + syst_JES_EtaIntercalibration_Stat190: 1.43263914e-06 + syst_JES_EtaIntercalibration_Stat191: 2.05040440e-06 + syst_JES_EtaIntercalibration_Stat192: 4.45332608e-06 + syst_JES_EtaIntercalibration_Stat193: 2.33472354e-06 + syst_JES_EtaIntercalibration_Stat194: 2.82584089e-06 + syst_JES_EtaIntercalibration_Stat195: 2.45426092e-06 + syst_JES_EtaIntercalibration_Stat196: 1.98863966e-06 + syst_JES_EtaIntercalibration_Stat197: 1.01037233e-06 + syst_JES_EtaIntercalibration_Stat198: 4.32477443e-06 + syst_JES_EtaIntercalibration_Stat199: 4.93606108e-06 + syst_JES_EtaIntercalibration_Stat2: 7.90297075e-20 + syst_JES_EtaIntercalibration_Stat20: 5.65968268e-20 + syst_JES_EtaIntercalibration_Stat200: 3.30310977e-06 + syst_JES_EtaIntercalibration_Stat201: 4.69027790e-06 + syst_JES_EtaIntercalibration_Stat202: 6.22097748e-06 + syst_JES_EtaIntercalibration_Stat203: 7.45540413e-06 + syst_JES_EtaIntercalibration_Stat204: 6.55165817e-06 + syst_JES_EtaIntercalibration_Stat205: 5.06946296e-06 + syst_JES_EtaIntercalibration_Stat206: 6.62803657e-06 + syst_JES_EtaIntercalibration_Stat207: 6.34517155e-06 + syst_JES_EtaIntercalibration_Stat208: 7.43817794e-06 + syst_JES_EtaIntercalibration_Stat209: 6.64552827e-06 + syst_JES_EtaIntercalibration_Stat21: 5.65968268e-20 + syst_JES_EtaIntercalibration_Stat210: 2.89774696e-06 + syst_JES_EtaIntercalibration_Stat211: 4.21412538e-06 + syst_JES_EtaIntercalibration_Stat212: 4.19203542e-06 + syst_JES_EtaIntercalibration_Stat213: 2.01904642e-06 + syst_JES_EtaIntercalibration_Stat214: 4.21460636e-06 + syst_JES_EtaIntercalibration_Stat215: 7.06802773e-06 + syst_JES_EtaIntercalibration_Stat216: 9.51020414e-06 + syst_JES_EtaIntercalibration_Stat217: 5.24760524e-06 + syst_JES_EtaIntercalibration_Stat218: 6.64282854e-06 + syst_JES_EtaIntercalibration_Stat219: 8.86020771e-06 + syst_JES_EtaIntercalibration_Stat22: 5.65968268e-20 + syst_JES_EtaIntercalibration_Stat220: 8.17189542e-06 + syst_JES_EtaIntercalibration_Stat221: 4.96605820e-06 + syst_JES_EtaIntercalibration_Stat222: 5.11370363e-06 + syst_JES_EtaIntercalibration_Stat223: 6.18360300e-06 + syst_JES_EtaIntercalibration_Stat224: 7.88871984e-06 + syst_JES_EtaIntercalibration_Stat225: 9.73829513e-06 + syst_JES_EtaIntercalibration_Stat226: 1.16482944e-05 + syst_JES_EtaIntercalibration_Stat227: 1.89406943e-05 + syst_JES_EtaIntercalibration_Stat228: 1.90008500e-05 + syst_JES_EtaIntercalibration_Stat229: 1.50168131e-05 + syst_JES_EtaIntercalibration_Stat23: 1.88296977e-18 + syst_JES_EtaIntercalibration_Stat230: 1.91557844e-05 + syst_JES_EtaIntercalibration_Stat231: 2.35576017e-05 + syst_JES_EtaIntercalibration_Stat232: 1.94713482e-05 + syst_JES_EtaIntercalibration_Stat233: 1.39802045e-05 + syst_JES_EtaIntercalibration_Stat234: 1.20293863e-05 + syst_JES_EtaIntercalibration_Stat235: 6.54108987e-06 + syst_JES_EtaIntercalibration_Stat236: 8.06001345e-07 + syst_JES_EtaIntercalibration_Stat237: 1.82414860e-06 + syst_JES_EtaIntercalibration_Stat238: 1.58419885e-06 + syst_JES_EtaIntercalibration_Stat239: 2.14728293e-06 + syst_JES_EtaIntercalibration_Stat24: 3.34280163e-17 + syst_JES_EtaIntercalibration_Stat240: 3.65690738e-07 + syst_JES_EtaIntercalibration_Stat241: 2.85838532e-07 + syst_JES_EtaIntercalibration_Stat242: 1.00719359e-06 + syst_JES_EtaIntercalibration_Stat243: 2.35412375e-06 + syst_JES_EtaIntercalibration_Stat244: 3.35189318e-08 + syst_JES_EtaIntercalibration_Stat245: 2.38441125e-06 + syst_JES_EtaIntercalibration_Stat25: 3.30318079e-17 + syst_JES_EtaIntercalibration_Stat26: 3.72988619e-19 + syst_JES_EtaIntercalibration_Stat27: 2.40789071e-17 + syst_JES_EtaIntercalibration_Stat28: 3.91932713e-18 + syst_JES_EtaIntercalibration_Stat29: 4.02379771e-17 + syst_JES_EtaIntercalibration_Stat3: 1.53871663e-19 + syst_JES_EtaIntercalibration_Stat30: 3.23595994e-17 + syst_JES_EtaIntercalibration_Stat31: 4.96406275e-11 + syst_JES_EtaIntercalibration_Stat32: 4.98484423e-11 + syst_JES_EtaIntercalibration_Stat33: 1.62897985e-18 + syst_JES_EtaIntercalibration_Stat34: 3.10694823e-16 + syst_JES_EtaIntercalibration_Stat35: 1.12228232e-07 + syst_JES_EtaIntercalibration_Stat36: 4.89448605e-16 + syst_JES_EtaIntercalibration_Stat37: 7.80677386e-16 + syst_JES_EtaIntercalibration_Stat38: 1.25106863e-16 + syst_JES_EtaIntercalibration_Stat39: 1.30856439e-16 + syst_JES_EtaIntercalibration_Stat4: 3.66321498e-20 + syst_JES_EtaIntercalibration_Stat40: 5.09081703e-18 + syst_JES_EtaIntercalibration_Stat41: 7.88261408e-20 + syst_JES_EtaIntercalibration_Stat42: 3.73083744e-19 + syst_JES_EtaIntercalibration_Stat43: 5.65968268e-20 + syst_JES_EtaIntercalibration_Stat44: 5.65968268e-20 + syst_JES_EtaIntercalibration_Stat45: 7.90297075e-20 + syst_JES_EtaIntercalibration_Stat46: 8.58234406e-18 + syst_JES_EtaIntercalibration_Stat47: 5.89513029e-16 + syst_JES_EtaIntercalibration_Stat48: 3.25225525e-17 + syst_JES_EtaIntercalibration_Stat49: 5.33745169e-17 + syst_JES_EtaIntercalibration_Stat5: 3.46583367e-20 + syst_JES_EtaIntercalibration_Stat50: 4.96405876e-11 + syst_JES_EtaIntercalibration_Stat51: 1.71144594e-16 + syst_JES_EtaIntercalibration_Stat52: 4.71450440e-17 + syst_JES_EtaIntercalibration_Stat53: 4.96428868e-11 + syst_JES_EtaIntercalibration_Stat54: 4.96319611e-11 + syst_JES_EtaIntercalibration_Stat55: 4.08611774e-17 + syst_JES_EtaIntercalibration_Stat56: 3.70925935e-16 + syst_JES_EtaIntercalibration_Stat57: 2.66649462e-10 + syst_JES_EtaIntercalibration_Stat58: 1.23357043e-15 + syst_JES_EtaIntercalibration_Stat59: 6.54498468e-16 + syst_JES_EtaIntercalibration_Stat6: 8.60532544e-20 + syst_JES_EtaIntercalibration_Stat60: 9.88389233e-19 + syst_JES_EtaIntercalibration_Stat61: 1.16720883e-16 + syst_JES_EtaIntercalibration_Stat62: 1.75388244e-17 + syst_JES_EtaIntercalibration_Stat63: 6.15151166e-18 + syst_JES_EtaIntercalibration_Stat64: 5.91124632e-20 + syst_JES_EtaIntercalibration_Stat65: 5.65968268e-20 + syst_JES_EtaIntercalibration_Stat66: 5.65968268e-20 + syst_JES_EtaIntercalibration_Stat67: 4.22610494e-17 + syst_JES_EtaIntercalibration_Stat68: 4.15251355e-15 + syst_JES_EtaIntercalibration_Stat69: 4.00902969e-15 + syst_JES_EtaIntercalibration_Stat7: 2.49696726e-19 + syst_JES_EtaIntercalibration_Stat70: 9.81415054e-16 + syst_JES_EtaIntercalibration_Stat71: 5.43677246e-16 + syst_JES_EtaIntercalibration_Stat72: 4.96319289e-11 + syst_JES_EtaIntercalibration_Stat73: 1.96808467e-09 + syst_JES_EtaIntercalibration_Stat74: 2.00138679e-09 + syst_JES_EtaIntercalibration_Stat75: 9.67003966e-08 + syst_JES_EtaIntercalibration_Stat76: 4.94154789e-11 + syst_JES_EtaIntercalibration_Stat77: 9.03485728e-16 + syst_JES_EtaIntercalibration_Stat78: 1.00666793e-07 + syst_JES_EtaIntercalibration_Stat79: 1.04884335e-07 + syst_JES_EtaIntercalibration_Stat8: 4.34934058e-18 + syst_JES_EtaIntercalibration_Stat80: 2.66825700e-10 + syst_JES_EtaIntercalibration_Stat81: 1.53974534e-09 + syst_JES_EtaIntercalibration_Stat82: 1.81605394e-09 + syst_JES_EtaIntercalibration_Stat83: 3.30186188e-17 + syst_JES_EtaIntercalibration_Stat84: 1.57067900e-16 + syst_JES_EtaIntercalibration_Stat85: 4.85225128e-17 + syst_JES_EtaIntercalibration_Stat86: 2.31889639e-19 + syst_JES_EtaIntercalibration_Stat87: 3.46583367e-20 + syst_JES_EtaIntercalibration_Stat88: 3.33709072e-17 + syst_JES_EtaIntercalibration_Stat89: 3.90605795e-14 + syst_JES_EtaIntercalibration_Stat9: 4.25958343e-18 + syst_JES_EtaIntercalibration_Stat90: 3.80478747e-14 + syst_JES_EtaIntercalibration_Stat91: 1.01486623e-15 + syst_JES_EtaIntercalibration_Stat92: 3.87504827e-15 + syst_JES_EtaIntercalibration_Stat93: 4.96222263e-11 + syst_JES_EtaIntercalibration_Stat94: 1.83043647e-09 + syst_JES_EtaIntercalibration_Stat95: 1.78806103e-09 + syst_JES_EtaIntercalibration_Stat96: 1.01515497e-07 + syst_JES_EtaIntercalibration_Stat97: 4.06829728e-14 + syst_JES_EtaIntercalibration_Stat98: 4.83838682e-15 + syst_JES_EtaIntercalibration_Stat99: 1.87719419e-07 + syst_JES_EtaIntercalibration_TotalStat_MJB: 4.59035366e-04 + syst_JES_Flavour_Comp: 1.22925651e-03 + syst_JES_Flavour_Response: 1.71174297e-04 + syst_JES_Gjet_Generator: 1.65562700e-03 + syst_JES_Gjet_OOC: 1.35653467e-03 + syst_JES_Gjet_Purity: 2.76645730e-04 + syst_JES_Gjet_Stat1: 5.28202792e-06 + syst_JES_Gjet_Stat10: 2.81396602e-05 + syst_JES_Gjet_Stat11: 3.48360760e-05 + syst_JES_Gjet_Stat12: 1.04057118e-04 + syst_JES_Gjet_Stat13: 3.13808269e-04 + syst_JES_Gjet_Stat14: 7.29605434e-04 + syst_JES_Gjet_Stat15: 5.09282829e-04 + syst_JES_Gjet_Stat2: 5.17009253e-06 + syst_JES_Gjet_Stat3: 6.39938091e-06 + syst_JES_Gjet_Stat4: 4.79396746e-06 + syst_JES_Gjet_Stat5: 4.72335559e-06 + syst_JES_Gjet_Stat6: 1.68062511e-05 + syst_JES_Gjet_Stat7: 1.96655363e-05 + syst_JES_Gjet_Stat8: 8.98574119e-06 + syst_JES_Gjet_Stat9: 1.89224946e-05 + syst_JES_Gjet_Veto: 1.32261469e-03 + syst_JES_Gjet_dPhi: 1.37459246e-04 + syst_JES_LArESZee: 2.54160712e-03 + syst_JES_LArEsmear: 2.10830281e-04 + syst_JES_LAr_JVT: 2.58613399e-04 + syst_JES_MJB_Alpha: 1.50023298e-05 + syst_JES_MJB_Asym: 2.11175425e-04 + syst_JES_MJB_Beta: 1.51822133e-05 + syst_JES_MJB_Fragmentation: 1.94034095e-04 + syst_JES_MJB_Stat1: 8.46409541e-07 + syst_JES_MJB_Stat10: 2.22088361e-05 + syst_JES_MJB_Stat11: 1.83164155e-05 + syst_JES_MJB_Stat12: 1.79426752e-05 + syst_JES_MJB_Stat13: 1.04798115e-05 + syst_JES_MJB_Stat14: 3.82352722e-06 + syst_JES_MJB_Stat15: 4.04512627e-06 + syst_JES_MJB_Stat16: 1.15469596e-05 + syst_JES_MJB_Stat2: 3.73673976e-06 + syst_JES_MJB_Stat3: 1.22113451e-05 + syst_JES_MJB_Stat4: 7.45900825e-06 + syst_JES_MJB_Stat5: 6.67463737e-06 + syst_JES_MJB_Stat6: 9.63684683e-06 + syst_JES_MJB_Stat7: 9.73222955e-06 + syst_JES_MJB_Stat8: 1.37770680e-05 + syst_JES_MJB_Stat9: 1.34395869e-05 + syst_JES_MJB_Threshold: 1.66403846e-04 + syst_JES_Pileup_MuOffset: 3.13956828e-04 + syst_JES_Pileup_NPVOffset: 3.27224613e-04 + syst_JES_Pileup_Pt_term: 2.31124447e-04 + syst_JES_Pileup_Rho_topology: 4.75938189e-04 + syst_JES_PunchThrough_MC15: 2.17324343e-04 + syst_JES_SingleParticle_HighPt: 5.19864906e-07 + syst_JES_Zjet_MC: 7.26466013e-04 + syst_JES_Zjet_MuScale: 5.19202665e-05 + syst_JES_Zjet_MuSmearID: 1.43837379e-05 + syst_JES_Zjet_MuSmearMS: 2.04611650e-04 + syst_JES_Zjet_OOC: 3.84506785e-04 + syst_JES_Zjet_Stat1: 2.68523891e-05 + syst_JES_Zjet_Stat10: 3.33888466e-05 + syst_JES_Zjet_Stat11: 4.51056834e-05 + syst_JES_Zjet_Stat12: 1.28196321e-04 + syst_JES_Zjet_Stat13: 2.20542241e-04 + syst_JES_Zjet_Stat2: 8.41631558e-07 + syst_JES_Zjet_Stat3: 1.43040018e-05 + syst_JES_Zjet_Stat4: 1.55386428e-05 + syst_JES_Zjet_Stat5: 1.99858569e-05 + syst_JES_Zjet_Stat6: 1.35031221e-05 + syst_JES_Zjet_Stat7: 2.12625040e-05 + syst_JES_Zjet_Stat8: 1.22047525e-05 + syst_JES_Zjet_Stat9: 1.95042476e-05 + syst_JES_Zjet_Veto: 8.59915397e-05 + syst_JES_Zjet_dPhi: 7.32760716e-05 syst_PRW: 0.0 syst_Unfolding_bias: 0.0 - syst_cleaning: 0.0007509306276214867 + syst_cleaning: 7.50930628e-04 syst_lumi: 0.001516 -- stat: 0.0003756 +- stat: 3.75600000e-04 syst_JER_CROSS_CALIB_FORWARD: 9.69e-16 - syst_JER_NOISE_FORWARD: 7.812e-13 - syst_JER_NP0: 6.663589648230148e-05 - syst_JER_NP1: 1.3484943715121692e-05 - syst_JER_NP2: 3.866730660389989e-05 - syst_JER_NP3: 6.5916713358601245e-06 - syst_JER_NP4: 4.786870036882137e-06 - syst_JER_NP5: 5.288092267377717e-06 - syst_JER_NP6: 6.297560063230839e-08 + syst_JER_NOISE_FORWARD: 7.81200000e-13 + syst_JER_NP0: 6.66358965e-05 + syst_JER_NP1: 1.34849437e-05 + syst_JER_NP2: 3.86673066e-05 + syst_JER_NP3: 6.59167134e-06 + syst_JER_NP4: 4.78687004e-06 + syst_JER_NP5: 5.28809227e-06 + syst_JER_NP6: 6.29756006e-08 syst_JER_NP7: 0.0 - syst_JER_NP8: 1.0376215723952543e-05 - syst_JES_EtaIntercalibration_Modelling: 0.0012331655768792768 - syst_JES_EtaIntercalibration_NonClosure: 1.4307254479808484e-05 - syst_JES_EtaIntercalibration_Stat0: 5.061470339733307e-21 - syst_JES_EtaIntercalibration_Stat1: 5.6117521328013045e-21 - syst_JES_EtaIntercalibration_Stat10: 4.12165549263885e-21 - syst_JES_EtaIntercalibration_Stat100: 2.794663979787736e-07 - syst_JES_EtaIntercalibration_Stat101: 1.0375835374561414e-14 - syst_JES_EtaIntercalibration_Stat102: 1.8523536993391597e-10 - syst_JES_EtaIntercalibration_Stat103: 1.8515519818386663e-10 - syst_JES_EtaIntercalibration_Stat104: 2.9440834091445164e-16 - syst_JES_EtaIntercalibration_Stat105: 6.125820810919953e-14 - syst_JES_EtaIntercalibration_Stat106: 3.60308409072006e-15 - syst_JES_EtaIntercalibration_Stat107: 5.980265608649836e-21 - syst_JES_EtaIntercalibration_Stat108: 1.6646111412804493e-15 - syst_JES_EtaIntercalibration_Stat109: 3.834770320045257e-12 - syst_JES_EtaIntercalibration_Stat11: 4.753701189599531e-20 - syst_JES_EtaIntercalibration_Stat110: 5.4057985576300386e-12 - syst_JES_EtaIntercalibration_Stat111: 2.9961877952559565e-09 - syst_JES_EtaIntercalibration_Stat112: 3.004554316479401e-09 - syst_JES_EtaIntercalibration_Stat113: 3.137896565069505e-07 - syst_JES_EtaIntercalibration_Stat114: 2.2257797582633552e-07 - syst_JES_EtaIntercalibration_Stat115: 4.5717316794405156e-08 - syst_JES_EtaIntercalibration_Stat116: 6.373000921857771e-08 - syst_JES_EtaIntercalibration_Stat117: 2.903429882053293e-13 - syst_JES_EtaIntercalibration_Stat118: 2.7920897327034457e-09 - syst_JES_EtaIntercalibration_Stat119: 5.4203463607042677e-08 - syst_JES_EtaIntercalibration_Stat12: 3.0255846389582296e-18 - syst_JES_EtaIntercalibration_Stat120: 5.673743274946444e-08 - syst_JES_EtaIntercalibration_Stat121: 8.646342637207942e-14 - syst_JES_EtaIntercalibration_Stat122: 2.0594081356694882e-09 - syst_JES_EtaIntercalibration_Stat123: 5.504742773281964e-10 - syst_JES_EtaIntercalibration_Stat124: 1.6877162883612872e-09 - syst_JES_EtaIntercalibration_Stat125: 5.132052513371234e-13 - syst_JES_EtaIntercalibration_Stat126: 8.410501411925451e-14 - syst_JES_EtaIntercalibration_Stat127: 6.638084720007722e-20 - syst_JES_EtaIntercalibration_Stat128: 7.495150832371554e-12 - syst_JES_EtaIntercalibration_Stat129: 4.740622824786022e-07 - syst_JES_EtaIntercalibration_Stat13: 5.69754565646472e-20 - syst_JES_EtaIntercalibration_Stat130: 8.271817208096946e-08 - syst_JES_EtaIntercalibration_Stat131: 1.323267080940201e-09 - syst_JES_EtaIntercalibration_Stat132: 4.457267289214323e-08 - syst_JES_EtaIntercalibration_Stat133: 1.7862107014571377e-07 - syst_JES_EtaIntercalibration_Stat134: 2.2959204581169618e-11 - syst_JES_EtaIntercalibration_Stat135: 8.164431346242063e-11 - syst_JES_EtaIntercalibration_Stat136: 6.840349333184673e-08 - syst_JES_EtaIntercalibration_Stat137: 4.0879821266121015e-07 - syst_JES_EtaIntercalibration_Stat138: 1.6563761257637107e-07 - syst_JES_EtaIntercalibration_Stat139: 1.1118409491001623e-07 - syst_JES_EtaIntercalibration_Stat14: 5.633545083470974e-20 - syst_JES_EtaIntercalibration_Stat140: 5.171482457429398e-07 - syst_JES_EtaIntercalibration_Stat141: 7.580632729548372e-08 - syst_JES_EtaIntercalibration_Stat142: 4.3760083409426906e-07 - syst_JES_EtaIntercalibration_Stat143: 7.625230881750402e-10 - syst_JES_EtaIntercalibration_Stat144: 1.4582585241307523e-09 - syst_JES_EtaIntercalibration_Stat145: 5.8635699166015744e-12 - syst_JES_EtaIntercalibration_Stat146: 3.695925130126421e-11 - syst_JES_EtaIntercalibration_Stat147: 4.96009499317039e-07 - syst_JES_EtaIntercalibration_Stat148: 8.275767944044528e-08 - syst_JES_EtaIntercalibration_Stat149: 1.4003630779194375e-09 - syst_JES_EtaIntercalibration_Stat15: 3.6873908214345826e-20 - syst_JES_EtaIntercalibration_Stat150: 4.4500738005116276e-08 - syst_JES_EtaIntercalibration_Stat151: 4.234114692336426e-08 - syst_JES_EtaIntercalibration_Stat152: 7.818049049455498e-08 - syst_JES_EtaIntercalibration_Stat153: 3.6714096529959716e-10 - syst_JES_EtaIntercalibration_Stat154: 1.4237267996353796e-07 - syst_JES_EtaIntercalibration_Stat155: 4.088495831904443e-07 - syst_JES_EtaIntercalibration_Stat156: 4.448310713263041e-08 - syst_JES_EtaIntercalibration_Stat157: 2.6789799565319634e-09 - syst_JES_EtaIntercalibration_Stat158: 9.12336873090198e-08 - syst_JES_EtaIntercalibration_Stat159: 1.8180332092676416e-07 - syst_JES_EtaIntercalibration_Stat16: 3.1280260037282297e-21 - syst_JES_EtaIntercalibration_Stat160: 1.6592429298106865e-10 - syst_JES_EtaIntercalibration_Stat161: 4.122976958460961e-10 - syst_JES_EtaIntercalibration_Stat162: 6.877606501356413e-10 - syst_JES_EtaIntercalibration_Stat163: 1.512720981377597e-10 - syst_JES_EtaIntercalibration_Stat164: 7.078164875163619e-11 - syst_JES_EtaIntercalibration_Stat165: 4.3982159814719194e-07 - syst_JES_EtaIntercalibration_Stat166: 4.679540846074004e-07 - syst_JES_EtaIntercalibration_Stat167: 3.156970501921106e-07 - syst_JES_EtaIntercalibration_Stat168: 1.9708605430116053e-07 - syst_JES_EtaIntercalibration_Stat169: 4.945871081012929e-08 - syst_JES_EtaIntercalibration_Stat17: 5.230971805506123e-21 - syst_JES_EtaIntercalibration_Stat170: 1.0394190059836313e-08 - syst_JES_EtaIntercalibration_Stat171: 2.0877817773895813e-07 - syst_JES_EtaIntercalibration_Stat172: 1.957460017471621e-07 - syst_JES_EtaIntercalibration_Stat173: 1.539698621189004e-07 - syst_JES_EtaIntercalibration_Stat174: 1.3171163758377615e-07 - syst_JES_EtaIntercalibration_Stat175: 1.3500573571148748e-07 - syst_JES_EtaIntercalibration_Stat176: 2.8341235272126023e-07 - syst_JES_EtaIntercalibration_Stat177: 6.47434106840225e-08 - syst_JES_EtaIntercalibration_Stat178: 2.1744762012953834e-07 - syst_JES_EtaIntercalibration_Stat179: 2.3602274652033012e-07 - syst_JES_EtaIntercalibration_Stat18: 5.061470339733307e-21 - syst_JES_EtaIntercalibration_Stat180: 2.091382612053567e-09 - syst_JES_EtaIntercalibration_Stat181: 5.60145231163286e-10 - syst_JES_EtaIntercalibration_Stat182: 1.1636847543471556e-07 - syst_JES_EtaIntercalibration_Stat183: 8.771105289528842e-07 - syst_JES_EtaIntercalibration_Stat184: 6.247711100875264e-07 - syst_JES_EtaIntercalibration_Stat185: 1.5253874776839489e-06 - syst_JES_EtaIntercalibration_Stat186: 1.7301236949998692e-06 - syst_JES_EtaIntercalibration_Stat187: 1.8978951498963266e-06 - syst_JES_EtaIntercalibration_Stat188: 1.277915490163571e-06 - syst_JES_EtaIntercalibration_Stat189: 1.9050585502813293e-06 - syst_JES_EtaIntercalibration_Stat19: 9.481339185473747e-20 - syst_JES_EtaIntercalibration_Stat190: 7.629591601127809e-07 - syst_JES_EtaIntercalibration_Stat191: 2.1341406982671034e-06 - syst_JES_EtaIntercalibration_Stat192: 2.436424839801138e-06 - syst_JES_EtaIntercalibration_Stat193: 1.3794000172176308e-06 - syst_JES_EtaIntercalibration_Stat194: 8.333762460617623e-07 - syst_JES_EtaIntercalibration_Stat195: 1.276584039536763e-06 - syst_JES_EtaIntercalibration_Stat196: 6.333411324081202e-07 - syst_JES_EtaIntercalibration_Stat197: 2.8312928142458173e-07 - syst_JES_EtaIntercalibration_Stat198: 1.8825403050134146e-06 - syst_JES_EtaIntercalibration_Stat199: 2.4886503872581216e-06 - syst_JES_EtaIntercalibration_Stat2: 1.0294430387350238e-20 - syst_JES_EtaIntercalibration_Stat20: 5.061470339733307e-21 - syst_JES_EtaIntercalibration_Stat200: 2.7213560957728413e-06 - syst_JES_EtaIntercalibration_Stat201: 2.6545956980301165e-06 - syst_JES_EtaIntercalibration_Stat202: 3.0759155953959464e-06 - syst_JES_EtaIntercalibration_Stat203: 3.391908717816563e-06 - syst_JES_EtaIntercalibration_Stat204: 3.1829803643755013e-06 - syst_JES_EtaIntercalibration_Stat205: 2.7524340332694626e-06 - syst_JES_EtaIntercalibration_Stat206: 3.545409990396033e-06 - syst_JES_EtaIntercalibration_Stat207: 3.2562208202147465e-06 - syst_JES_EtaIntercalibration_Stat208: 3.6805317126062096e-06 - syst_JES_EtaIntercalibration_Stat209: 2.894513064403061e-06 - syst_JES_EtaIntercalibration_Stat21: 5.061470339733307e-21 - syst_JES_EtaIntercalibration_Stat210: 1.4447346711420752e-06 - syst_JES_EtaIntercalibration_Stat211: 1.8773739551565106e-06 - syst_JES_EtaIntercalibration_Stat212: 2.289862004575821e-06 - syst_JES_EtaIntercalibration_Stat213: 1.0693801943181856e-06 - syst_JES_EtaIntercalibration_Stat214: 2.5353187314418674e-06 - syst_JES_EtaIntercalibration_Stat215: 3.7175920634195463e-06 - syst_JES_EtaIntercalibration_Stat216: 5.940959013492687e-06 - syst_JES_EtaIntercalibration_Stat217: 2.698059812161324e-06 - syst_JES_EtaIntercalibration_Stat218: 3.7007246587661717e-06 - syst_JES_EtaIntercalibration_Stat219: 4.624864403417683e-06 - syst_JES_EtaIntercalibration_Stat22: 5.061470339733307e-21 - syst_JES_EtaIntercalibration_Stat220: 4.6654820758416805e-06 - syst_JES_EtaIntercalibration_Stat221: 2.3166391605081704e-06 - syst_JES_EtaIntercalibration_Stat222: 2.235097038430323e-06 - syst_JES_EtaIntercalibration_Stat223: 3.063839954615776e-06 - syst_JES_EtaIntercalibration_Stat224: 4.785354936679201e-06 - syst_JES_EtaIntercalibration_Stat225: 7.83046184780949e-06 - syst_JES_EtaIntercalibration_Stat226: 6.7863979215781325e-06 - syst_JES_EtaIntercalibration_Stat227: 1.2341471822679823e-05 - syst_JES_EtaIntercalibration_Stat228: 1.1025892798317967e-05 - syst_JES_EtaIntercalibration_Stat229: 8.196079123580982e-06 - syst_JES_EtaIntercalibration_Stat23: 2.324760091450299e-19 - syst_JES_EtaIntercalibration_Stat230: 1.0095062295498726e-05 - syst_JES_EtaIntercalibration_Stat231: 1.4756696784849922e-05 - syst_JES_EtaIntercalibration_Stat232: 1.2006429027816723e-05 - syst_JES_EtaIntercalibration_Stat233: 7.645399449996057e-06 - syst_JES_EtaIntercalibration_Stat234: 6.0493862498603945e-06 - syst_JES_EtaIntercalibration_Stat235: 3.1557965713904935e-06 - syst_JES_EtaIntercalibration_Stat236: 1.4325775368457373e-06 - syst_JES_EtaIntercalibration_Stat237: 7.678302677024395e-07 - syst_JES_EtaIntercalibration_Stat238: 1.8318558895284314e-06 - syst_JES_EtaIntercalibration_Stat239: 1.2665195093246688e-06 - syst_JES_EtaIntercalibration_Stat24: 3.2251187187450944e-18 - syst_JES_EtaIntercalibration_Stat240: 8.209494137886938e-07 - syst_JES_EtaIntercalibration_Stat241: 1.535897129465382e-07 - syst_JES_EtaIntercalibration_Stat242: 2.0379114308526756e-06 - syst_JES_EtaIntercalibration_Stat243: 1.2578089362061313e-06 - syst_JES_EtaIntercalibration_Stat244: 7.66259545072768e-07 - syst_JES_EtaIntercalibration_Stat245: 1.256176070461462e-06 - syst_JES_EtaIntercalibration_Stat25: 3.2276764206895028e-18 - syst_JES_EtaIntercalibration_Stat26: 4.2635361884238765e-20 - syst_JES_EtaIntercalibration_Stat27: 2.1109717118663622e-18 - syst_JES_EtaIntercalibration_Stat28: 4.2853330311073843e-19 - syst_JES_EtaIntercalibration_Stat29: 3.8556447904338906e-18 - syst_JES_EtaIntercalibration_Stat3: 2.0810148365641222e-20 - syst_JES_EtaIntercalibration_Stat30: 3.0586771650502767e-18 - syst_JES_EtaIntercalibration_Stat31: 3.5498430838053743e-12 - syst_JES_EtaIntercalibration_Stat32: 3.5654285070743136e-12 - syst_JES_EtaIntercalibration_Stat33: 4.339885939457396e-19 - syst_JES_EtaIntercalibration_Stat34: 2.99902141831298e-17 - syst_JES_EtaIntercalibration_Stat35: 5.97903938772582e-08 - syst_JES_EtaIntercalibration_Stat36: 3.8729486321793636e-17 - syst_JES_EtaIntercalibration_Stat37: 7.872169552929802e-17 - syst_JES_EtaIntercalibration_Stat38: 1.183904348965743e-17 - syst_JES_EtaIntercalibration_Stat39: 1.2358182512003939e-17 - syst_JES_EtaIntercalibration_Stat4: 5.6117521328013045e-21 - syst_JES_EtaIntercalibration_Stat40: 5.66841450495639e-19 - syst_JES_EtaIntercalibration_Stat41: 1.3411288332967866e-20 - syst_JES_EtaIntercalibration_Stat42: 5.1580473049401163e-20 - syst_JES_EtaIntercalibration_Stat43: 5.061470339733307e-21 - syst_JES_EtaIntercalibration_Stat44: 5.061470339733307e-21 - syst_JES_EtaIntercalibration_Stat45: 1.0294430387350238e-20 - syst_JES_EtaIntercalibration_Stat46: 3.3255488224802838e-19 - syst_JES_EtaIntercalibration_Stat47: 5.136464935147518e-17 - syst_JES_EtaIntercalibration_Stat48: 2.973559866557255e-18 - syst_JES_EtaIntercalibration_Stat49: 4.728462653489055e-18 - syst_JES_EtaIntercalibration_Stat5: 3.099504920144506e-21 - syst_JES_EtaIntercalibration_Stat50: 3.548973150002523e-12 - syst_JES_EtaIntercalibration_Stat51: 1.5924894096979106e-17 - syst_JES_EtaIntercalibration_Stat52: 4.648140951767707e-18 - syst_JES_EtaIntercalibration_Stat53: 3.55002118788987e-12 - syst_JES_EtaIntercalibration_Stat54: 3.548976507026275e-12 - syst_JES_EtaIntercalibration_Stat55: 2.8508225317441277e-18 - syst_JES_EtaIntercalibration_Stat56: 3.1160753661456906e-17 - syst_JES_EtaIntercalibration_Stat57: 2.0316976820986723e-11 - syst_JES_EtaIntercalibration_Stat58: 1.0631207927606345e-16 - syst_JES_EtaIntercalibration_Stat59: 5.664390110744493e-17 - syst_JES_EtaIntercalibration_Stat6: 1.2013235492572349e-20 - syst_JES_EtaIntercalibration_Stat60: 1.4602075605885623e-19 - syst_JES_EtaIntercalibration_Stat61: 1.1199594250127993e-17 - syst_JES_EtaIntercalibration_Stat62: 1.9583422785611305e-18 - syst_JES_EtaIntercalibration_Stat63: 6.533506282316946e-19 - syst_JES_EtaIntercalibration_Stat64: 9.261279757679281e-21 - syst_JES_EtaIntercalibration_Stat65: 5.061470339733307e-21 - syst_JES_EtaIntercalibration_Stat66: 5.061470339733307e-21 - syst_JES_EtaIntercalibration_Stat67: 4.278066473303097e-18 - syst_JES_EtaIntercalibration_Stat68: 3.32246146817386e-16 - syst_JES_EtaIntercalibration_Stat69: 3.14830743257389e-16 - syst_JES_EtaIntercalibration_Stat7: 2.9969725974723226e-20 - syst_JES_EtaIntercalibration_Stat70: 8.538611186838289e-17 - syst_JES_EtaIntercalibration_Stat71: 4.7812396666555006e-17 - syst_JES_EtaIntercalibration_Stat72: 3.5489726650274196e-12 - syst_JES_EtaIntercalibration_Stat73: 2.0106233464276694e-10 - syst_JES_EtaIntercalibration_Stat74: 2.0394914664584216e-10 - syst_JES_EtaIntercalibration_Stat75: 5.151985127156638e-08 - syst_JES_EtaIntercalibration_Stat76: 3.533390226395825e-12 - syst_JES_EtaIntercalibration_Stat77: 7.465867070039487e-17 - syst_JES_EtaIntercalibration_Stat78: 5.363295325802583e-08 - syst_JES_EtaIntercalibration_Stat79: 5.60318434717399e-08 - syst_JES_EtaIntercalibration_Stat8: 4.782163391970208e-19 - syst_JES_EtaIntercalibration_Stat80: 2.0334524695857586e-11 - syst_JES_EtaIntercalibration_Stat81: 1.5678419093138025e-10 - syst_JES_EtaIntercalibration_Stat82: 1.8506952856094493e-10 - syst_JES_EtaIntercalibration_Stat83: 4.144881260965144e-18 - syst_JES_EtaIntercalibration_Stat84: 1.5178523591904452e-17 - syst_JES_EtaIntercalibration_Stat85: 4.563741529710025e-18 - syst_JES_EtaIntercalibration_Stat86: 2.7040631589332377e-20 - syst_JES_EtaIntercalibration_Stat87: 3.099504920144506e-21 - syst_JES_EtaIntercalibration_Stat88: 3.228456363164407e-18 - syst_JES_EtaIntercalibration_Stat89: 2.8932228859007734e-15 - syst_JES_EtaIntercalibration_Stat9: 4.626896094305556e-19 - syst_JES_EtaIntercalibration_Stat90: 2.827149431861535e-15 - syst_JES_EtaIntercalibration_Stat91: 8.878958215917e-17 - syst_JES_EtaIntercalibration_Stat92: 3.0050554017355486e-16 - syst_JES_EtaIntercalibration_Stat93: 3.54801769578716e-12 - syst_JES_EtaIntercalibration_Stat94: 1.869487689903306e-10 - syst_JES_EtaIntercalibration_Stat95: 1.8295855845518678e-10 - syst_JES_EtaIntercalibration_Stat96: 5.408328640788148e-08 - syst_JES_EtaIntercalibration_Stat97: 3.0170944578352204e-15 - syst_JES_EtaIntercalibration_Stat98: 3.876819535069952e-16 - syst_JES_EtaIntercalibration_Stat99: 1.0003000099970008e-07 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0002742504466723801 - syst_JES_Flavour_Comp: 0.0007203680239988446 - syst_JES_Flavour_Response: 3.900712159016608e-05 - syst_JES_Gjet_Generator: 0.0009310782888672681 - syst_JES_Gjet_OOC: 0.0007654229353762533 - syst_JES_Gjet_Purity: 0.0001458362780655074 - syst_JES_Gjet_Stat1: 3.4217473241021174e-06 - syst_JES_Gjet_Stat10: 1.643779410383279e-05 - syst_JES_Gjet_Stat11: 2.0370240548407866e-05 - syst_JES_Gjet_Stat12: 5.4911138214391446e-05 - syst_JES_Gjet_Stat13: 0.00016533484206300862 - syst_JES_Gjet_Stat14: 0.0004158650261803702 - syst_JES_Gjet_Stat15: 0.000404209650645553 - syst_JES_Gjet_Stat2: 3.5071383249025123e-06 - syst_JES_Gjet_Stat3: 4.18652490139495e-06 - syst_JES_Gjet_Stat4: 2.5253659140805713e-06 - syst_JES_Gjet_Stat5: 2.6332718716456153e-06 - syst_JES_Gjet_Stat6: 9.831273162719059e-06 - syst_JES_Gjet_Stat7: 9.658104783030674e-06 - syst_JES_Gjet_Stat8: 5.601695546885782e-06 - syst_JES_Gjet_Stat9: 9.56261788162635e-06 - syst_JES_Gjet_Veto: 0.000759921285397376 - syst_JES_Gjet_dPhi: 8.005420226321664e-05 - syst_JES_LArESZee: 0.0014223942772663282 - syst_JES_LArEsmear: 0.000121546472902343 - syst_JES_LAr_JVT: 0.0001494024096191223 - syst_JES_MJB_Alpha: 9.034410384745648e-06 - syst_JES_MJB_Asym: 0.00014136044213286826 - syst_JES_MJB_Beta: 9.709662867473823e-06 - syst_JES_MJB_Fragmentation: 9.847243827589525e-05 - syst_JES_MJB_Stat1: 1.9532661457351377e-07 - syst_JES_MJB_Stat10: 1.3594481564223034e-05 - syst_JES_MJB_Stat11: 1.4617921979542783e-05 - syst_JES_MJB_Stat12: 1.64899264704243e-05 - syst_JES_MJB_Stat13: 1.4491876715939866e-05 - syst_JES_MJB_Stat14: 7.245178879779297e-06 - syst_JES_MJB_Stat15: 8.53231803204733e-06 - syst_JES_MJB_Stat16: 1.0767459960454927e-05 - syst_JES_MJB_Stat2: 1.8195787094819502e-06 - syst_JES_MJB_Stat3: 5.333758337232762e-06 - syst_JES_MJB_Stat4: 4.805924754924904e-06 - syst_JES_MJB_Stat5: 3.598844032116424e-06 - syst_JES_MJB_Stat6: 5.246672809266841e-06 - syst_JES_MJB_Stat7: 5.555982091403824e-06 - syst_JES_MJB_Stat8: 1.0270082314665253e-05 - syst_JES_MJB_Stat9: 8.155787438990793e-06 - syst_JES_MJB_Threshold: 0.00010482502313379187 - syst_JES_Pileup_MuOffset: 0.00018360920456229857 - syst_JES_Pileup_NPVOffset: 0.00018785065211491812 - syst_JES_Pileup_Pt_term: 0.00012237614177199738 - syst_JES_Pileup_Rho_topology: 0.0002608018788275882 - syst_JES_PunchThrough_MC15: 0.00016281572405636995 - syst_JES_SingleParticle_HighPt: 2.76903015512652e-07 - syst_JES_Zjet_MC: 0.00038005632148406635 - syst_JES_Zjet_MuScale: 3.180239731529685e-05 - syst_JES_Zjet_MuSmearID: 7.947338044905352e-06 - syst_JES_Zjet_MuSmearMS: 0.00010787817237513806 - syst_JES_Zjet_OOC: 0.00021307817227487192 - syst_JES_Zjet_Stat1: 1.586560430617126e-05 - syst_JES_Zjet_Stat10: 1.8997796582761905e-05 - syst_JES_Zjet_Stat11: 2.714842674999787e-05 - syst_JES_Zjet_Stat12: 6.883835032160489e-05 - syst_JES_Zjet_Stat13: 0.00011420169525887082 - syst_JES_Zjet_Stat2: 2.1405421626307666e-07 - syst_JES_Zjet_Stat3: 1.1455593742796573e-05 - syst_JES_Zjet_Stat4: 8.983148153626323e-06 - syst_JES_Zjet_Stat5: 1.178444129986653e-05 - syst_JES_Zjet_Stat6: 8.235809796249547e-06 - syst_JES_Zjet_Stat7: 1.2044139570762205e-05 - syst_JES_Zjet_Stat8: 7.645046893250558e-06 - syst_JES_Zjet_Stat9: 1.1248578610206714e-05 - syst_JES_Zjet_Veto: 4.8591613473931895e-05 - syst_JES_Zjet_dPhi: 4.356616433655825e-05 + syst_JER_NP8: 1.03762157e-05 + syst_JES_EtaIntercalibration_Modelling: 1.23316558e-03 + syst_JES_EtaIntercalibration_NonClosure: 1.43072545e-05 + syst_JES_EtaIntercalibration_Stat0: 5.06147034e-21 + syst_JES_EtaIntercalibration_Stat1: 5.61175213e-21 + syst_JES_EtaIntercalibration_Stat10: 4.12165549e-21 + syst_JES_EtaIntercalibration_Stat100: 2.79466398e-07 + syst_JES_EtaIntercalibration_Stat101: 1.03758354e-14 + syst_JES_EtaIntercalibration_Stat102: 1.85235370e-10 + syst_JES_EtaIntercalibration_Stat103: 1.85155198e-10 + syst_JES_EtaIntercalibration_Stat104: 2.94408341e-16 + syst_JES_EtaIntercalibration_Stat105: 6.12582081e-14 + syst_JES_EtaIntercalibration_Stat106: 3.60308409e-15 + syst_JES_EtaIntercalibration_Stat107: 5.98026561e-21 + syst_JES_EtaIntercalibration_Stat108: 1.66461114e-15 + syst_JES_EtaIntercalibration_Stat109: 3.83477032e-12 + syst_JES_EtaIntercalibration_Stat11: 4.75370119e-20 + syst_JES_EtaIntercalibration_Stat110: 5.40579856e-12 + syst_JES_EtaIntercalibration_Stat111: 2.99618780e-09 + syst_JES_EtaIntercalibration_Stat112: 3.00455432e-09 + syst_JES_EtaIntercalibration_Stat113: 3.13789657e-07 + syst_JES_EtaIntercalibration_Stat114: 2.22577976e-07 + syst_JES_EtaIntercalibration_Stat115: 4.57173168e-08 + syst_JES_EtaIntercalibration_Stat116: 6.37300092e-08 + syst_JES_EtaIntercalibration_Stat117: 2.90342988e-13 + syst_JES_EtaIntercalibration_Stat118: 2.79208973e-09 + syst_JES_EtaIntercalibration_Stat119: 5.42034636e-08 + syst_JES_EtaIntercalibration_Stat12: 3.02558464e-18 + syst_JES_EtaIntercalibration_Stat120: 5.67374327e-08 + syst_JES_EtaIntercalibration_Stat121: 8.64634264e-14 + syst_JES_EtaIntercalibration_Stat122: 2.05940814e-09 + syst_JES_EtaIntercalibration_Stat123: 5.50474277e-10 + syst_JES_EtaIntercalibration_Stat124: 1.68771629e-09 + syst_JES_EtaIntercalibration_Stat125: 5.13205251e-13 + syst_JES_EtaIntercalibration_Stat126: 8.41050141e-14 + syst_JES_EtaIntercalibration_Stat127: 6.63808472e-20 + syst_JES_EtaIntercalibration_Stat128: 7.49515083e-12 + syst_JES_EtaIntercalibration_Stat129: 4.74062282e-07 + syst_JES_EtaIntercalibration_Stat13: 5.69754566e-20 + syst_JES_EtaIntercalibration_Stat130: 8.27181721e-08 + syst_JES_EtaIntercalibration_Stat131: 1.32326708e-09 + syst_JES_EtaIntercalibration_Stat132: 4.45726729e-08 + syst_JES_EtaIntercalibration_Stat133: 1.78621070e-07 + syst_JES_EtaIntercalibration_Stat134: 2.29592046e-11 + syst_JES_EtaIntercalibration_Stat135: 8.16443135e-11 + syst_JES_EtaIntercalibration_Stat136: 6.84034933e-08 + syst_JES_EtaIntercalibration_Stat137: 4.08798213e-07 + syst_JES_EtaIntercalibration_Stat138: 1.65637613e-07 + syst_JES_EtaIntercalibration_Stat139: 1.11184095e-07 + syst_JES_EtaIntercalibration_Stat14: 5.63354508e-20 + syst_JES_EtaIntercalibration_Stat140: 5.17148246e-07 + syst_JES_EtaIntercalibration_Stat141: 7.58063273e-08 + syst_JES_EtaIntercalibration_Stat142: 4.37600834e-07 + syst_JES_EtaIntercalibration_Stat143: 7.62523088e-10 + syst_JES_EtaIntercalibration_Stat144: 1.45825852e-09 + syst_JES_EtaIntercalibration_Stat145: 5.86356992e-12 + syst_JES_EtaIntercalibration_Stat146: 3.69592513e-11 + syst_JES_EtaIntercalibration_Stat147: 4.96009499e-07 + syst_JES_EtaIntercalibration_Stat148: 8.27576794e-08 + syst_JES_EtaIntercalibration_Stat149: 1.40036308e-09 + syst_JES_EtaIntercalibration_Stat15: 3.68739082e-20 + syst_JES_EtaIntercalibration_Stat150: 4.45007380e-08 + syst_JES_EtaIntercalibration_Stat151: 4.23411469e-08 + syst_JES_EtaIntercalibration_Stat152: 7.81804905e-08 + syst_JES_EtaIntercalibration_Stat153: 3.67140965e-10 + syst_JES_EtaIntercalibration_Stat154: 1.42372680e-07 + syst_JES_EtaIntercalibration_Stat155: 4.08849583e-07 + syst_JES_EtaIntercalibration_Stat156: 4.44831071e-08 + syst_JES_EtaIntercalibration_Stat157: 2.67897996e-09 + syst_JES_EtaIntercalibration_Stat158: 9.12336873e-08 + syst_JES_EtaIntercalibration_Stat159: 1.81803321e-07 + syst_JES_EtaIntercalibration_Stat16: 3.12802600e-21 + syst_JES_EtaIntercalibration_Stat160: 1.65924293e-10 + syst_JES_EtaIntercalibration_Stat161: 4.12297696e-10 + syst_JES_EtaIntercalibration_Stat162: 6.87760650e-10 + syst_JES_EtaIntercalibration_Stat163: 1.51272098e-10 + syst_JES_EtaIntercalibration_Stat164: 7.07816488e-11 + syst_JES_EtaIntercalibration_Stat165: 4.39821598e-07 + syst_JES_EtaIntercalibration_Stat166: 4.67954085e-07 + syst_JES_EtaIntercalibration_Stat167: 3.15697050e-07 + syst_JES_EtaIntercalibration_Stat168: 1.97086054e-07 + syst_JES_EtaIntercalibration_Stat169: 4.94587108e-08 + syst_JES_EtaIntercalibration_Stat17: 5.23097181e-21 + syst_JES_EtaIntercalibration_Stat170: 1.03941901e-08 + syst_JES_EtaIntercalibration_Stat171: 2.08778178e-07 + syst_JES_EtaIntercalibration_Stat172: 1.95746002e-07 + syst_JES_EtaIntercalibration_Stat173: 1.53969862e-07 + syst_JES_EtaIntercalibration_Stat174: 1.31711638e-07 + syst_JES_EtaIntercalibration_Stat175: 1.35005736e-07 + syst_JES_EtaIntercalibration_Stat176: 2.83412353e-07 + syst_JES_EtaIntercalibration_Stat177: 6.47434107e-08 + syst_JES_EtaIntercalibration_Stat178: 2.17447620e-07 + syst_JES_EtaIntercalibration_Stat179: 2.36022747e-07 + syst_JES_EtaIntercalibration_Stat18: 5.06147034e-21 + syst_JES_EtaIntercalibration_Stat180: 2.09138261e-09 + syst_JES_EtaIntercalibration_Stat181: 5.60145231e-10 + syst_JES_EtaIntercalibration_Stat182: 1.16368475e-07 + syst_JES_EtaIntercalibration_Stat183: 8.77110529e-07 + syst_JES_EtaIntercalibration_Stat184: 6.24771110e-07 + syst_JES_EtaIntercalibration_Stat185: 1.52538748e-06 + syst_JES_EtaIntercalibration_Stat186: 1.73012369e-06 + syst_JES_EtaIntercalibration_Stat187: 1.89789515e-06 + syst_JES_EtaIntercalibration_Stat188: 1.27791549e-06 + syst_JES_EtaIntercalibration_Stat189: 1.90505855e-06 + syst_JES_EtaIntercalibration_Stat19: 9.48133919e-20 + syst_JES_EtaIntercalibration_Stat190: 7.62959160e-07 + syst_JES_EtaIntercalibration_Stat191: 2.13414070e-06 + syst_JES_EtaIntercalibration_Stat192: 2.43642484e-06 + syst_JES_EtaIntercalibration_Stat193: 1.37940002e-06 + syst_JES_EtaIntercalibration_Stat194: 8.33376246e-07 + syst_JES_EtaIntercalibration_Stat195: 1.27658404e-06 + syst_JES_EtaIntercalibration_Stat196: 6.33341132e-07 + syst_JES_EtaIntercalibration_Stat197: 2.83129281e-07 + syst_JES_EtaIntercalibration_Stat198: 1.88254031e-06 + syst_JES_EtaIntercalibration_Stat199: 2.48865039e-06 + syst_JES_EtaIntercalibration_Stat2: 1.02944304e-20 + syst_JES_EtaIntercalibration_Stat20: 5.06147034e-21 + syst_JES_EtaIntercalibration_Stat200: 2.72135610e-06 + syst_JES_EtaIntercalibration_Stat201: 2.65459570e-06 + syst_JES_EtaIntercalibration_Stat202: 3.07591560e-06 + syst_JES_EtaIntercalibration_Stat203: 3.39190872e-06 + syst_JES_EtaIntercalibration_Stat204: 3.18298036e-06 + syst_JES_EtaIntercalibration_Stat205: 2.75243403e-06 + syst_JES_EtaIntercalibration_Stat206: 3.54540999e-06 + syst_JES_EtaIntercalibration_Stat207: 3.25622082e-06 + syst_JES_EtaIntercalibration_Stat208: 3.68053171e-06 + syst_JES_EtaIntercalibration_Stat209: 2.89451306e-06 + syst_JES_EtaIntercalibration_Stat21: 5.06147034e-21 + syst_JES_EtaIntercalibration_Stat210: 1.44473467e-06 + syst_JES_EtaIntercalibration_Stat211: 1.87737396e-06 + syst_JES_EtaIntercalibration_Stat212: 2.28986200e-06 + syst_JES_EtaIntercalibration_Stat213: 1.06938019e-06 + syst_JES_EtaIntercalibration_Stat214: 2.53531873e-06 + syst_JES_EtaIntercalibration_Stat215: 3.71759206e-06 + syst_JES_EtaIntercalibration_Stat216: 5.94095901e-06 + syst_JES_EtaIntercalibration_Stat217: 2.69805981e-06 + syst_JES_EtaIntercalibration_Stat218: 3.70072466e-06 + syst_JES_EtaIntercalibration_Stat219: 4.62486440e-06 + syst_JES_EtaIntercalibration_Stat22: 5.06147034e-21 + syst_JES_EtaIntercalibration_Stat220: 4.66548208e-06 + syst_JES_EtaIntercalibration_Stat221: 2.31663916e-06 + syst_JES_EtaIntercalibration_Stat222: 2.23509704e-06 + syst_JES_EtaIntercalibration_Stat223: 3.06383995e-06 + syst_JES_EtaIntercalibration_Stat224: 4.78535494e-06 + syst_JES_EtaIntercalibration_Stat225: 7.83046185e-06 + syst_JES_EtaIntercalibration_Stat226: 6.78639792e-06 + syst_JES_EtaIntercalibration_Stat227: 1.23414718e-05 + syst_JES_EtaIntercalibration_Stat228: 1.10258928e-05 + syst_JES_EtaIntercalibration_Stat229: 8.19607912e-06 + syst_JES_EtaIntercalibration_Stat23: 2.32476009e-19 + syst_JES_EtaIntercalibration_Stat230: 1.00950623e-05 + syst_JES_EtaIntercalibration_Stat231: 1.47566968e-05 + syst_JES_EtaIntercalibration_Stat232: 1.20064290e-05 + syst_JES_EtaIntercalibration_Stat233: 7.64539945e-06 + syst_JES_EtaIntercalibration_Stat234: 6.04938625e-06 + syst_JES_EtaIntercalibration_Stat235: 3.15579657e-06 + syst_JES_EtaIntercalibration_Stat236: 1.43257754e-06 + syst_JES_EtaIntercalibration_Stat237: 7.67830268e-07 + syst_JES_EtaIntercalibration_Stat238: 1.83185589e-06 + syst_JES_EtaIntercalibration_Stat239: 1.26651951e-06 + syst_JES_EtaIntercalibration_Stat24: 3.22511872e-18 + syst_JES_EtaIntercalibration_Stat240: 8.20949414e-07 + syst_JES_EtaIntercalibration_Stat241: 1.53589713e-07 + syst_JES_EtaIntercalibration_Stat242: 2.03791143e-06 + syst_JES_EtaIntercalibration_Stat243: 1.25780894e-06 + syst_JES_EtaIntercalibration_Stat244: 7.66259545e-07 + syst_JES_EtaIntercalibration_Stat245: 1.25617607e-06 + syst_JES_EtaIntercalibration_Stat25: 3.22767642e-18 + syst_JES_EtaIntercalibration_Stat26: 4.26353619e-20 + syst_JES_EtaIntercalibration_Stat27: 2.11097171e-18 + syst_JES_EtaIntercalibration_Stat28: 4.28533303e-19 + syst_JES_EtaIntercalibration_Stat29: 3.85564479e-18 + syst_JES_EtaIntercalibration_Stat3: 2.08101484e-20 + syst_JES_EtaIntercalibration_Stat30: 3.05867717e-18 + syst_JES_EtaIntercalibration_Stat31: 3.54984308e-12 + syst_JES_EtaIntercalibration_Stat32: 3.56542851e-12 + syst_JES_EtaIntercalibration_Stat33: 4.33988594e-19 + syst_JES_EtaIntercalibration_Stat34: 2.99902142e-17 + syst_JES_EtaIntercalibration_Stat35: 5.97903939e-08 + syst_JES_EtaIntercalibration_Stat36: 3.87294863e-17 + syst_JES_EtaIntercalibration_Stat37: 7.87216955e-17 + syst_JES_EtaIntercalibration_Stat38: 1.18390435e-17 + syst_JES_EtaIntercalibration_Stat39: 1.23581825e-17 + syst_JES_EtaIntercalibration_Stat4: 5.61175213e-21 + syst_JES_EtaIntercalibration_Stat40: 5.66841450e-19 + syst_JES_EtaIntercalibration_Stat41: 1.34112883e-20 + syst_JES_EtaIntercalibration_Stat42: 5.15804730e-20 + syst_JES_EtaIntercalibration_Stat43: 5.06147034e-21 + syst_JES_EtaIntercalibration_Stat44: 5.06147034e-21 + syst_JES_EtaIntercalibration_Stat45: 1.02944304e-20 + syst_JES_EtaIntercalibration_Stat46: 3.32554882e-19 + syst_JES_EtaIntercalibration_Stat47: 5.13646494e-17 + syst_JES_EtaIntercalibration_Stat48: 2.97355987e-18 + syst_JES_EtaIntercalibration_Stat49: 4.72846265e-18 + syst_JES_EtaIntercalibration_Stat5: 3.09950492e-21 + syst_JES_EtaIntercalibration_Stat50: 3.54897315e-12 + syst_JES_EtaIntercalibration_Stat51: 1.59248941e-17 + syst_JES_EtaIntercalibration_Stat52: 4.64814095e-18 + syst_JES_EtaIntercalibration_Stat53: 3.55002119e-12 + syst_JES_EtaIntercalibration_Stat54: 3.54897651e-12 + syst_JES_EtaIntercalibration_Stat55: 2.85082253e-18 + syst_JES_EtaIntercalibration_Stat56: 3.11607537e-17 + syst_JES_EtaIntercalibration_Stat57: 2.03169768e-11 + syst_JES_EtaIntercalibration_Stat58: 1.06312079e-16 + syst_JES_EtaIntercalibration_Stat59: 5.66439011e-17 + syst_JES_EtaIntercalibration_Stat6: 1.20132355e-20 + syst_JES_EtaIntercalibration_Stat60: 1.46020756e-19 + syst_JES_EtaIntercalibration_Stat61: 1.11995943e-17 + syst_JES_EtaIntercalibration_Stat62: 1.95834228e-18 + syst_JES_EtaIntercalibration_Stat63: 6.53350628e-19 + syst_JES_EtaIntercalibration_Stat64: 9.26127976e-21 + syst_JES_EtaIntercalibration_Stat65: 5.06147034e-21 + syst_JES_EtaIntercalibration_Stat66: 5.06147034e-21 + syst_JES_EtaIntercalibration_Stat67: 4.27806647e-18 + syst_JES_EtaIntercalibration_Stat68: 3.32246147e-16 + syst_JES_EtaIntercalibration_Stat69: 3.14830743e-16 + syst_JES_EtaIntercalibration_Stat7: 2.99697260e-20 + syst_JES_EtaIntercalibration_Stat70: 8.53861119e-17 + syst_JES_EtaIntercalibration_Stat71: 4.78123967e-17 + syst_JES_EtaIntercalibration_Stat72: 3.54897267e-12 + syst_JES_EtaIntercalibration_Stat73: 2.01062335e-10 + syst_JES_EtaIntercalibration_Stat74: 2.03949147e-10 + syst_JES_EtaIntercalibration_Stat75: 5.15198513e-08 + syst_JES_EtaIntercalibration_Stat76: 3.53339023e-12 + syst_JES_EtaIntercalibration_Stat77: 7.46586707e-17 + syst_JES_EtaIntercalibration_Stat78: 5.36329533e-08 + syst_JES_EtaIntercalibration_Stat79: 5.60318435e-08 + syst_JES_EtaIntercalibration_Stat8: 4.78216339e-19 + syst_JES_EtaIntercalibration_Stat80: 2.03345247e-11 + syst_JES_EtaIntercalibration_Stat81: 1.56784191e-10 + syst_JES_EtaIntercalibration_Stat82: 1.85069529e-10 + syst_JES_EtaIntercalibration_Stat83: 4.14488126e-18 + syst_JES_EtaIntercalibration_Stat84: 1.51785236e-17 + syst_JES_EtaIntercalibration_Stat85: 4.56374153e-18 + syst_JES_EtaIntercalibration_Stat86: 2.70406316e-20 + syst_JES_EtaIntercalibration_Stat87: 3.09950492e-21 + syst_JES_EtaIntercalibration_Stat88: 3.22845636e-18 + syst_JES_EtaIntercalibration_Stat89: 2.89322289e-15 + syst_JES_EtaIntercalibration_Stat9: 4.62689609e-19 + syst_JES_EtaIntercalibration_Stat90: 2.82714943e-15 + syst_JES_EtaIntercalibration_Stat91: 8.87895822e-17 + syst_JES_EtaIntercalibration_Stat92: 3.00505540e-16 + syst_JES_EtaIntercalibration_Stat93: 3.54801770e-12 + syst_JES_EtaIntercalibration_Stat94: 1.86948769e-10 + syst_JES_EtaIntercalibration_Stat95: 1.82958558e-10 + syst_JES_EtaIntercalibration_Stat96: 5.40832864e-08 + syst_JES_EtaIntercalibration_Stat97: 3.01709446e-15 + syst_JES_EtaIntercalibration_Stat98: 3.87681954e-16 + syst_JES_EtaIntercalibration_Stat99: 1.00030001e-07 + syst_JES_EtaIntercalibration_TotalStat_MJB: 2.74250447e-04 + syst_JES_Flavour_Comp: 7.20368024e-04 + syst_JES_Flavour_Response: 3.90071216e-05 + syst_JES_Gjet_Generator: 9.31078289e-04 + syst_JES_Gjet_OOC: 7.65422935e-04 + syst_JES_Gjet_Purity: 1.45836278e-04 + syst_JES_Gjet_Stat1: 3.42174732e-06 + syst_JES_Gjet_Stat10: 1.64377941e-05 + syst_JES_Gjet_Stat11: 2.03702405e-05 + syst_JES_Gjet_Stat12: 5.49111382e-05 + syst_JES_Gjet_Stat13: 1.65334842e-04 + syst_JES_Gjet_Stat14: 4.15865026e-04 + syst_JES_Gjet_Stat15: 4.04209651e-04 + syst_JES_Gjet_Stat2: 3.50713832e-06 + syst_JES_Gjet_Stat3: 4.18652490e-06 + syst_JES_Gjet_Stat4: 2.52536591e-06 + syst_JES_Gjet_Stat5: 2.63327187e-06 + syst_JES_Gjet_Stat6: 9.83127316e-06 + syst_JES_Gjet_Stat7: 9.65810478e-06 + syst_JES_Gjet_Stat8: 5.60169555e-06 + syst_JES_Gjet_Stat9: 9.56261788e-06 + syst_JES_Gjet_Veto: 7.59921285e-04 + syst_JES_Gjet_dPhi: 8.00542023e-05 + syst_JES_LArESZee: 1.42239428e-03 + syst_JES_LArEsmear: 1.21546473e-04 + syst_JES_LAr_JVT: 1.49402410e-04 + syst_JES_MJB_Alpha: 9.03441038e-06 + syst_JES_MJB_Asym: 1.41360442e-04 + syst_JES_MJB_Beta: 9.70966287e-06 + syst_JES_MJB_Fragmentation: 9.84724383e-05 + syst_JES_MJB_Stat1: 1.95326615e-07 + syst_JES_MJB_Stat10: 1.35944816e-05 + syst_JES_MJB_Stat11: 1.46179220e-05 + syst_JES_MJB_Stat12: 1.64899265e-05 + syst_JES_MJB_Stat13: 1.44918767e-05 + syst_JES_MJB_Stat14: 7.24517888e-06 + syst_JES_MJB_Stat15: 8.53231803e-06 + syst_JES_MJB_Stat16: 1.07674600e-05 + syst_JES_MJB_Stat2: 1.81957871e-06 + syst_JES_MJB_Stat3: 5.33375834e-06 + syst_JES_MJB_Stat4: 4.80592475e-06 + syst_JES_MJB_Stat5: 3.59884403e-06 + syst_JES_MJB_Stat6: 5.24667281e-06 + syst_JES_MJB_Stat7: 5.55598209e-06 + syst_JES_MJB_Stat8: 1.02700823e-05 + syst_JES_MJB_Stat9: 8.15578744e-06 + syst_JES_MJB_Threshold: 1.04825023e-04 + syst_JES_Pileup_MuOffset: 1.83609205e-04 + syst_JES_Pileup_NPVOffset: 1.87850652e-04 + syst_JES_Pileup_Pt_term: 1.22376142e-04 + syst_JES_Pileup_Rho_topology: 2.60801879e-04 + syst_JES_PunchThrough_MC15: 1.62815724e-04 + syst_JES_SingleParticle_HighPt: 2.76903016e-07 + syst_JES_Zjet_MC: 3.80056321e-04 + syst_JES_Zjet_MuScale: 3.18023973e-05 + syst_JES_Zjet_MuSmearID: 7.94733804e-06 + syst_JES_Zjet_MuSmearMS: 1.07878172e-04 + syst_JES_Zjet_OOC: 2.13078172e-04 + syst_JES_Zjet_Stat1: 1.58656043e-05 + syst_JES_Zjet_Stat10: 1.89977966e-05 + syst_JES_Zjet_Stat11: 2.71484267e-05 + syst_JES_Zjet_Stat12: 6.88383503e-05 + syst_JES_Zjet_Stat13: 1.14201695e-04 + syst_JES_Zjet_Stat2: 2.14054216e-07 + syst_JES_Zjet_Stat3: 1.14555937e-05 + syst_JES_Zjet_Stat4: 8.98314815e-06 + syst_JES_Zjet_Stat5: 1.17844413e-05 + syst_JES_Zjet_Stat6: 8.23580980e-06 + syst_JES_Zjet_Stat7: 1.20441396e-05 + syst_JES_Zjet_Stat8: 7.64504689e-06 + syst_JES_Zjet_Stat9: 1.12485786e-05 + syst_JES_Zjet_Veto: 4.85916135e-05 + syst_JES_Zjet_dPhi: 4.35661643e-05 syst_PRW: 0.0 syst_Unfolding_bias: 0.0 - syst_cleaning: 0.0004074649524805784 - syst_lumi: 0.0008075 -- stat: 0.00024889 - syst_JER_CROSS_CALIB_FORWARD: 9.789e-17 - syst_JER_NOISE_FORWARD: 5.815e-14 - syst_JER_NP0: 3.596310713773214e-05 - syst_JER_NP1: 6.960805341338027e-06 - syst_JER_NP2: 1.920695381886467e-05 - syst_JER_NP3: 3.3999889338055203e-06 - syst_JER_NP4: 2.4712243928870566e-06 - syst_JER_NP5: 2.334930902617891e-06 - syst_JER_NP6: 4.13014778791268e-07 + syst_cleaning: 4.07464952e-04 + syst_lumi: 8.07500000e-04 +- stat: 2.48890000e-04 + syst_JER_CROSS_CALIB_FORWARD: 9.78900000e-17 + syst_JER_NOISE_FORWARD: 5.81500000e-14 + syst_JER_NP0: 3.59631071e-05 + syst_JER_NP1: 6.96080534e-06 + syst_JER_NP2: 1.92069538e-05 + syst_JER_NP3: 3.39998893e-06 + syst_JER_NP4: 2.47122439e-06 + syst_JER_NP5: 2.33493090e-06 + syst_JER_NP6: 4.13014779e-07 syst_JER_NP7: 0.0 - syst_JER_NP8: 5.019848902108509e-06 - syst_JES_EtaIntercalibration_Modelling: 0.0006799951672622388 - syst_JES_EtaIntercalibration_NonClosure: 3.283731223775783e-06 - syst_JES_EtaIntercalibration_Stat0: 2.4522463171549464e-22 - syst_JES_EtaIntercalibration_Stat1: 1.1320367695000017e-21 - syst_JES_EtaIntercalibration_Stat10: 1.672443682160927e-22 - syst_JES_EtaIntercalibration_Stat100: 1.4315399925910657e-07 - syst_JES_EtaIntercalibration_Stat101: 7.672610744068801e-16 - syst_JES_EtaIntercalibration_Stat102: 1.5102932041600756e-11 - syst_JES_EtaIntercalibration_Stat103: 1.5086080782898906e-11 - syst_JES_EtaIntercalibration_Stat104: 2.36013475818649e-17 - syst_JES_EtaIntercalibration_Stat105: 4.476436011773205e-15 - syst_JES_EtaIntercalibration_Stat106: 2.6803604307396793e-16 - syst_JES_EtaIntercalibration_Stat107: 1.1335012957645878e-21 - syst_JES_EtaIntercalibration_Stat108: 1.3175783060884843e-16 - syst_JES_EtaIntercalibration_Stat109: 2.595310567557378e-13 - syst_JES_EtaIntercalibration_Stat11: 5.749631879520636e-21 - syst_JES_EtaIntercalibration_Stat110: 3.61231473643632e-13 - syst_JES_EtaIntercalibration_Stat111: 3.13601697016243e-10 - syst_JES_EtaIntercalibration_Stat112: 3.14387408571463e-10 - syst_JES_EtaIntercalibration_Stat113: 1.5864345059743343e-07 - syst_JES_EtaIntercalibration_Stat114: 1.1235012083670147e-07 - syst_JES_EtaIntercalibration_Stat115: 2.3562182145329302e-08 - syst_JES_EtaIntercalibration_Stat116: 3.289238361688006e-08 - syst_JES_EtaIntercalibration_Stat117: 2.0039245413687613e-14 - syst_JES_EtaIntercalibration_Stat118: 2.743266787978887e-10 - syst_JES_EtaIntercalibration_Stat119: 2.830833394514767e-08 - syst_JES_EtaIntercalibration_Stat12: 3.0603208177411725e-19 - syst_JES_EtaIntercalibration_Stat120: 2.9290460477773305e-08 - syst_JES_EtaIntercalibration_Stat121: 6.4360480009086326e-15 - syst_JES_EtaIntercalibration_Stat122: 2.1460106709095145e-10 - syst_JES_EtaIntercalibration_Stat123: 4.425384135868885e-11 - syst_JES_EtaIntercalibration_Stat124: 1.618047492349962e-10 - syst_JES_EtaIntercalibration_Stat125: 3.48900257953473e-14 - syst_JES_EtaIntercalibration_Stat126: 6.176823860205179e-15 - syst_JES_EtaIntercalibration_Stat127: 1.0735250905311901e-20 - syst_JES_EtaIntercalibration_Stat128: 5.114466834382641e-13 - syst_JES_EtaIntercalibration_Stat129: 9.047367201078406e-08 - syst_JES_EtaIntercalibration_Stat13: 8.004019835057881e-21 - syst_JES_EtaIntercalibration_Stat130: 2.7218793687615305e-08 - syst_JES_EtaIntercalibration_Stat131: 2.3282904901880262e-10 - syst_JES_EtaIntercalibration_Stat132: 2.2865216443322813e-08 - syst_JES_EtaIntercalibration_Stat133: 9.339634254080831e-08 - syst_JES_EtaIntercalibration_Stat134: 5.564999288409658e-12 - syst_JES_EtaIntercalibration_Stat135: 5.91025730975395e-12 - syst_JES_EtaIntercalibration_Stat136: 1.5106646509070106e-07 - syst_JES_EtaIntercalibration_Stat137: 1.5636993413057385e-07 - syst_JES_EtaIntercalibration_Stat138: 8.522859423339094e-08 - syst_JES_EtaIntercalibration_Stat139: 5.7582284550786844e-08 - syst_JES_EtaIntercalibration_Stat14: 7.886259082733714e-21 - syst_JES_EtaIntercalibration_Stat140: 2.664978155163753e-07 - syst_JES_EtaIntercalibration_Stat141: 2.0674451099606007e-07 - syst_JES_EtaIntercalibration_Stat142: 1.1722025550219551e-07 - syst_JES_EtaIntercalibration_Stat143: 6.238396488682007e-11 - syst_JES_EtaIntercalibration_Stat144: 1.6403465599683503e-10 - syst_JES_EtaIntercalibration_Stat145: 4.003085543677527e-13 - syst_JES_EtaIntercalibration_Stat146: 2.681650053138925e-12 - syst_JES_EtaIntercalibration_Stat147: 9.3212992267565e-08 - syst_JES_EtaIntercalibration_Stat148: 2.7224682054391382e-08 - syst_JES_EtaIntercalibration_Stat149: 3.4000157352577064e-10 - syst_JES_EtaIntercalibration_Stat15: 4.1807114526955816e-21 - syst_JES_EtaIntercalibration_Stat150: 2.295075258962111e-08 - syst_JES_EtaIntercalibration_Stat151: 2.2871812841124046e-08 - syst_JES_EtaIntercalibration_Stat152: 4.220171553000619e-08 - syst_JES_EtaIntercalibration_Stat153: 3.145830758342977e-11 - syst_JES_EtaIntercalibration_Stat154: 7.128131364530257e-08 - syst_JES_EtaIntercalibration_Stat155: 1.5641258517139854e-07 - syst_JES_EtaIntercalibration_Stat156: 2.8068322001858252e-08 - syst_JES_EtaIntercalibration_Stat157: 2.0050351536818502e-10 - syst_JES_EtaIntercalibration_Stat158: 5.595982219414211e-08 - syst_JES_EtaIntercalibration_Stat159: 2.2262354431416276e-07 - syst_JES_EtaIntercalibration_Stat16: 1.8826419601188116e-22 - syst_JES_EtaIntercalibration_Stat160: 1.2031995908027894e-11 - syst_JES_EtaIntercalibration_Stat161: 2.9590553065970227e-11 - syst_JES_EtaIntercalibration_Stat162: 1.0305060189416655e-10 - syst_JES_EtaIntercalibration_Stat163: 1.5314030308184713e-11 - syst_JES_EtaIntercalibration_Stat164: 5.336934811996489e-12 - syst_JES_EtaIntercalibration_Stat165: 8.44429304217332e-08 - syst_JES_EtaIntercalibration_Stat166: 8.896327678739133e-08 - syst_JES_EtaIntercalibration_Stat167: 1.0626030491204135e-07 - syst_JES_EtaIntercalibration_Stat168: 1.1383257969491862e-07 - syst_JES_EtaIntercalibration_Stat169: 7.737936982813033e-08 - syst_JES_EtaIntercalibration_Stat17: 2.67006572952802e-22 - syst_JES_EtaIntercalibration_Stat170: 1.5599388395536538e-07 - syst_JES_EtaIntercalibration_Stat171: 9.201657296378735e-08 - syst_JES_EtaIntercalibration_Stat172: 1.0285131829490568e-07 - syst_JES_EtaIntercalibration_Stat173: 6.4033277522678e-08 - syst_JES_EtaIntercalibration_Stat174: 1.9795181637994636e-07 - syst_JES_EtaIntercalibration_Stat175: 5.679796287720185e-08 - syst_JES_EtaIntercalibration_Stat176: 8.34951979158083e-08 - syst_JES_EtaIntercalibration_Stat177: 3.5318952571530205e-08 - syst_JES_EtaIntercalibration_Stat178: 2.435966081455159e-07 - syst_JES_EtaIntercalibration_Stat179: 3.6794181605248405e-08 - syst_JES_EtaIntercalibration_Stat18: 2.4522463171549464e-22 - syst_JES_EtaIntercalibration_Stat180: 2.2151016020715623e-10 - syst_JES_EtaIntercalibration_Stat181: 4.624575656131162e-11 - syst_JES_EtaIntercalibration_Stat182: 3.1070002687479767e-08 - syst_JES_EtaIntercalibration_Stat183: 3.1913036129456647e-07 - syst_JES_EtaIntercalibration_Stat184: 1.3925297375639774e-07 - syst_JES_EtaIntercalibration_Stat185: 9.734044887275793e-07 - syst_JES_EtaIntercalibration_Stat186: 9.867620685859383e-07 - syst_JES_EtaIntercalibration_Stat187: 1.0032329776776677e-06 - syst_JES_EtaIntercalibration_Stat188: 7.586209989184323e-07 - syst_JES_EtaIntercalibration_Stat189: 8.047071703421066e-07 - syst_JES_EtaIntercalibration_Stat19: 1.3958456388512303e-20 - syst_JES_EtaIntercalibration_Stat190: 3.974533526088313e-07 - syst_JES_EtaIntercalibration_Stat191: 1.925543009127555e-06 - syst_JES_EtaIntercalibration_Stat192: 1.2979248851532203e-06 - syst_JES_EtaIntercalibration_Stat193: 8.036840470607837e-07 - syst_JES_EtaIntercalibration_Stat194: 2.7418364277340346e-07 - syst_JES_EtaIntercalibration_Stat195: 4.809733568504601e-07 - syst_JES_EtaIntercalibration_Stat196: 3.0051200758039604e-07 - syst_JES_EtaIntercalibration_Stat197: 5.830617870346161e-08 - syst_JES_EtaIntercalibration_Stat198: 6.184406681323601e-07 - syst_JES_EtaIntercalibration_Stat199: 1.134348517872704e-06 - syst_JES_EtaIntercalibration_Stat2: 1.411637867868385e-21 - syst_JES_EtaIntercalibration_Stat20: 2.4522463171549464e-22 - syst_JES_EtaIntercalibration_Stat200: 1.5357206386579558e-06 - syst_JES_EtaIntercalibration_Stat201: 1.4438611013528967e-06 - syst_JES_EtaIntercalibration_Stat202: 1.7925871666393242e-06 - syst_JES_EtaIntercalibration_Stat203: 1.6352697025261612e-06 - syst_JES_EtaIntercalibration_Stat204: 1.3853587982901759e-06 - syst_JES_EtaIntercalibration_Stat205: 1.245408093758829e-06 - syst_JES_EtaIntercalibration_Stat206: 1.819519442050565e-06 - syst_JES_EtaIntercalibration_Stat207: 1.6865297232779505e-06 - syst_JES_EtaIntercalibration_Stat208: 2.033186907296031e-06 - syst_JES_EtaIntercalibration_Stat209: 9.996160162782507e-07 - syst_JES_EtaIntercalibration_Stat21: 2.4522463171549464e-22 - syst_JES_EtaIntercalibration_Stat210: 7.00261185201636e-07 - syst_JES_EtaIntercalibration_Stat211: 8.254598157996548e-07 - syst_JES_EtaIntercalibration_Stat212: 1.1288940472869896e-06 - syst_JES_EtaIntercalibration_Stat213: 5.164237439764655e-07 - syst_JES_EtaIntercalibration_Stat214: 1.4220165848188972e-06 - syst_JES_EtaIntercalibration_Stat215: 2.1428618714233544e-06 - syst_JES_EtaIntercalibration_Stat216: 3.224916606673729e-06 - syst_JES_EtaIntercalibration_Stat217: 1.2374369347566767e-06 - syst_JES_EtaIntercalibration_Stat218: 1.6955650739502748e-06 - syst_JES_EtaIntercalibration_Stat219: 2.1282765327842153e-06 - syst_JES_EtaIntercalibration_Stat22: 2.4522463171549464e-22 - syst_JES_EtaIntercalibration_Stat220: 2.448629820940683e-06 - syst_JES_EtaIntercalibration_Stat221: 1.1473778137562186e-06 - syst_JES_EtaIntercalibration_Stat222: 9.333572840423972e-07 - syst_JES_EtaIntercalibration_Stat223: 1.1339171621860214e-06 - syst_JES_EtaIntercalibration_Stat224: 2.2180302900321264e-06 - syst_JES_EtaIntercalibration_Stat225: 4.211582214560224e-06 - syst_JES_EtaIntercalibration_Stat226: 3.5753661001357607e-06 - syst_JES_EtaIntercalibration_Stat227: 6.755182806556755e-06 - syst_JES_EtaIntercalibration_Stat228: 5.551290120323383e-06 - syst_JES_EtaIntercalibration_Stat229: 4.234201548107978e-06 - syst_JES_EtaIntercalibration_Stat23: 2.99660095728477e-20 - syst_JES_EtaIntercalibration_Stat230: 4.293891940885332e-06 - syst_JES_EtaIntercalibration_Stat231: 8.00177780246365e-06 - syst_JES_EtaIntercalibration_Stat232: 7.216590659722914e-06 - syst_JES_EtaIntercalibration_Stat233: 4.255341907532225e-06 - syst_JES_EtaIntercalibration_Stat234: 2.859753835559977e-06 - syst_JES_EtaIntercalibration_Stat235: 1.261799013313927e-06 - syst_JES_EtaIntercalibration_Stat236: 7.304771228963984e-07 - syst_JES_EtaIntercalibration_Stat237: 5.199635828594152e-07 - syst_JES_EtaIntercalibration_Stat238: 1.2624991168313742e-06 - syst_JES_EtaIntercalibration_Stat239: 7.976903722623208e-07 - syst_JES_EtaIntercalibration_Stat24: 3.2635172360507004e-19 - syst_JES_EtaIntercalibration_Stat240: 5.900105846508179e-07 - syst_JES_EtaIntercalibration_Stat241: 8.364072378333415e-08 - syst_JES_EtaIntercalibration_Stat242: 1.9195243336566484e-06 - syst_JES_EtaIntercalibration_Stat243: 8.693299531823345e-07 - syst_JES_EtaIntercalibration_Stat244: 6.944657894408622e-07 - syst_JES_EtaIntercalibration_Stat245: 7.670582120510801e-07 - syst_JES_EtaIntercalibration_Stat25: 3.3109678670858466e-19 - syst_JES_EtaIntercalibration_Stat26: 4.913393404766201e-21 - syst_JES_EtaIntercalibration_Stat27: 1.8510298118344827e-19 - syst_JES_EtaIntercalibration_Stat28: 4.915897579028676e-20 - syst_JES_EtaIntercalibration_Stat29: 3.8424386462245564e-19 - syst_JES_EtaIntercalibration_Stat3: 2.9192111999648125e-21 - syst_JES_EtaIntercalibration_Stat30: 3.0333278754529654e-19 - syst_JES_EtaIntercalibration_Stat31: 2.3911011339703864e-13 - syst_JES_EtaIntercalibration_Stat32: 2.402356388350429e-13 - syst_JES_EtaIntercalibration_Stat33: 1.1141039367469268e-19 - syst_JES_EtaIntercalibration_Stat34: 3.026265488601422e-18 - syst_JES_EtaIntercalibration_Stat35: 3.0865145390870813e-08 - syst_JES_EtaIntercalibration_Stat36: 3.0615814847068822e-18 - syst_JES_EtaIntercalibration_Stat37: 8.256481121446351e-18 - syst_JES_EtaIntercalibration_Stat38: 1.1678356177133835e-18 - syst_JES_EtaIntercalibration_Stat39: 1.2169388973978932e-18 - syst_JES_EtaIntercalibration_Stat4: 1.1320367695000017e-21 - syst_JES_EtaIntercalibration_Stat40: 6.582935743268348e-20 - syst_JES_EtaIntercalibration_Stat41: 2.381940441635768e-21 - syst_JES_EtaIntercalibration_Stat42: 7.40278515154938e-21 - syst_JES_EtaIntercalibration_Stat43: 2.4522463171549464e-22 - syst_JES_EtaIntercalibration_Stat44: 2.4522463171549464e-22 - syst_JES_EtaIntercalibration_Stat45: 1.411637867868385e-21 - syst_JES_EtaIntercalibration_Stat46: 2.3024034415149746e-20 - syst_JES_EtaIntercalibration_Stat47: 4.65151799201078e-18 - syst_JES_EtaIntercalibration_Stat48: 2.755988040612658e-19 - syst_JES_EtaIntercalibration_Stat49: 4.218602811912376e-19 - syst_JES_EtaIntercalibration_Stat5: 1.5016880501622165e-22 - syst_JES_EtaIntercalibration_Stat50: 2.391097101427255e-13 - syst_JES_EtaIntercalibration_Stat51: 1.5267788051973999e-18 - syst_JES_EtaIntercalibration_Stat52: 4.802657714224489e-19 - syst_JES_EtaIntercalibration_Stat53: 2.3912449311604544e-13 - syst_JES_EtaIntercalibration_Stat54: 2.39023460049032e-13 - syst_JES_EtaIntercalibration_Stat55: 1.5827599312593177e-19 - syst_JES_EtaIntercalibration_Stat56: 2.6758511669186683e-18 - syst_JES_EtaIntercalibration_Stat57: 1.390838669968779e-12 - syst_JES_EtaIntercalibration_Stat58: 9.495899852041405e-18 - syst_JES_EtaIntercalibration_Stat59: 5.0904309002283885e-18 - syst_JES_EtaIntercalibration_Stat6: 1.7950295561633517e-21 - syst_JES_EtaIntercalibration_Stat60: 2.2618773590758628e-20 - syst_JES_EtaIntercalibration_Stat61: 1.121703456388987e-18 - syst_JES_EtaIntercalibration_Stat62: 2.305141450648962e-19 - syst_JES_EtaIntercalibration_Stat63: 7.17467753334601e-20 - syst_JES_EtaIntercalibration_Stat64: 1.5453770640202989e-21 - syst_JES_EtaIntercalibration_Stat65: 2.4522463171549464e-22 - syst_JES_EtaIntercalibration_Stat66: 2.4522463171549464e-22 - syst_JES_EtaIntercalibration_Stat67: 4.560963385075569e-19 - syst_JES_EtaIntercalibration_Stat68: 2.7344769531850146e-17 - syst_JES_EtaIntercalibration_Stat69: 2.5281913826884234e-17 - syst_JES_EtaIntercalibration_Stat7: 3.7285816338119775e-21 - syst_JES_EtaIntercalibration_Stat70: 7.690935752559634e-18 - syst_JES_EtaIntercalibration_Stat71: 4.368250994391234e-18 - syst_JES_EtaIntercalibration_Stat72: 2.3910958577844943e-13 - syst_JES_EtaIntercalibration_Stat73: 1.640236498519345e-11 - syst_JES_EtaIntercalibration_Stat74: 1.6619040644930604e-11 - syst_JES_EtaIntercalibration_Stat75: 2.6586979896249325e-08 - syst_JES_EtaIntercalibration_Stat76: 2.3807102985098763e-13 - syst_JES_EtaIntercalibration_Stat77: 6.278893291615968e-18 - syst_JES_EtaIntercalibration_Stat78: 2.7678171905174705e-08 - syst_JES_EtaIntercalibration_Stat79: 2.8925248473941032e-08 - syst_JES_EtaIntercalibration_Stat8: 5.510117264632396e-20 - syst_JES_EtaIntercalibration_Stat80: 1.3917217273563428e-12 - syst_JES_EtaIntercalibration_Stat81: 1.2782012871641149e-11 - syst_JES_EtaIntercalibration_Stat82: 1.508615496199134e-11 - syst_JES_EtaIntercalibration_Stat83: 5.46928788051973e-19 - syst_JES_EtaIntercalibration_Stat84: 1.5370843082521533e-18 - syst_JES_EtaIntercalibration_Stat85: 4.428075180877126e-19 - syst_JES_EtaIntercalibration_Stat86: 3.2099943925184663e-21 - syst_JES_EtaIntercalibration_Stat87: 1.5016880501622165e-22 - syst_JES_EtaIntercalibration_Stat88: 3.2693280516639425e-19 - syst_JES_EtaIntercalibration_Stat89: 2.1590332882276272e-16 - syst_JES_EtaIntercalibration_Stat9: 5.240435885496549e-20 - syst_JES_EtaIntercalibration_Stat90: 2.12024716964715e-16 - syst_JES_EtaIntercalibration_Stat91: 8.085634050586262e-18 - syst_JES_EtaIntercalibration_Stat92: 2.366546823432826e-17 - syst_JES_EtaIntercalibration_Stat93: 2.390151229947525e-13 - syst_JES_EtaIntercalibration_Stat94: 1.5259355007011273e-11 - syst_JES_EtaIntercalibration_Stat95: 1.4934502968210895e-11 - syst_JES_EtaIntercalibration_Stat96: 2.791199875977512e-08 - syst_JES_EtaIntercalibration_Stat97: 2.2554780396847137e-16 - syst_JES_EtaIntercalibration_Stat98: 3.1938871782672596e-17 - syst_JES_EtaIntercalibration_Stat99: 5.1631029437248294e-08 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0001601330384399172 - syst_JES_Flavour_Comp: 0.0004147519107852307 - syst_JES_Flavour_Response: 5.349413682825436e-06 - syst_JES_Gjet_Generator: 0.0005096876764254754 - syst_JES_Gjet_OOC: 0.0004213965590747034 - syst_JES_Gjet_Purity: 7.46122530151717e-05 - syst_JES_Gjet_Stat1: 1.884552732082602e-06 - syst_JES_Gjet_Stat10: 8.82948078881199e-06 - syst_JES_Gjet_Stat11: 1.0651246969252004e-05 - syst_JES_Gjet_Stat12: 2.6115805080448887e-05 - syst_JES_Gjet_Stat13: 8.447755959424965e-05 - syst_JES_Gjet_Stat14: 0.0002247238916982349 - syst_JES_Gjet_Stat15: 0.0002782005526594079 - syst_JES_Gjet_Stat2: 1.8639498403927074e-06 - syst_JES_Gjet_Stat3: 2.240325199608307e-06 - syst_JES_Gjet_Stat4: 1.455205266448689e-06 - syst_JES_Gjet_Stat5: 1.6780899856682299e-06 - syst_JES_Gjet_Stat6: 5.347319585549381e-06 - syst_JES_Gjet_Stat7: 4.478678823045922e-06 - syst_JES_Gjet_Stat8: 3.044139615720672e-06 - syst_JES_Gjet_Stat9: 4.300816782891362e-06 - syst_JES_Gjet_Veto: 0.0004232914008103637 - syst_JES_Gjet_dPhi: 4.2875490376204444e-05 - syst_JES_LArESZee: 0.000772074288847906 - syst_JES_LArEsmear: 6.566300537593446e-05 - syst_JES_LAr_JVT: 8.178057654480066e-05 - syst_JES_MJB_Alpha: 5.622994931528926e-06 - syst_JES_MJB_Asym: 9.007829746947929e-05 - syst_JES_MJB_Beta: 5.086119419557508e-06 - syst_JES_MJB_Fragmentation: 4.683512677467629e-05 - syst_JES_MJB_Stat1: 3.293270958712629e-08 - syst_JES_MJB_Stat10: 6.628266138289862e-06 - syst_JES_MJB_Stat11: 9.235988130676653e-06 - syst_JES_MJB_Stat12: 1.1994666272973166e-05 - syst_JES_MJB_Stat13: 1.23212658744952e-05 - syst_JES_MJB_Stat14: 9.10201757853719e-06 - syst_JES_MJB_Stat15: 1.3367434187232792e-05 - syst_JES_MJB_Stat16: 8.00447887123203e-06 - syst_JES_MJB_Stat2: 9.85113154668031e-07 - syst_JES_MJB_Stat3: 2.1478903603303407e-06 - syst_JES_MJB_Stat4: 2.5726562940859396e-06 - syst_JES_MJB_Stat5: 1.470857813488442e-06 - syst_JES_MJB_Stat6: 2.218198135311632e-06 - syst_JES_MJB_Stat7: 2.6961771510789125e-06 - syst_JES_MJB_Stat8: 5.970119680542426e-06 - syst_JES_MJB_Stat9: 4.015388493035263e-06 - syst_JES_MJB_Threshold: 6.15788963444458e-05 - syst_JES_Pileup_MuOffset: 0.00010332493152671334 - syst_JES_Pileup_NPVOffset: 0.00010451638818864724 - syst_JES_Pileup_Pt_term: 6.248282323967123e-05 - syst_JES_Pileup_Rho_topology: 0.0001392172470457594 - syst_JES_PunchThrough_MC15: 0.0001160408281597473 - syst_JES_SingleParticle_HighPt: 1.4172152518230952e-07 - syst_JES_Zjet_MC: 0.00019884518475437116 - syst_JES_Zjet_MuScale: 1.7219947735112322e-05 - syst_JES_Zjet_MuSmearID: 3.80138070541481e-06 - syst_JES_Zjet_MuSmearMS: 5.377273728386905e-05 - syst_JES_Zjet_OOC: 0.00011734031233979225 - syst_JES_Zjet_Stat1: 9.373121398445665e-06 - syst_JES_Zjet_Stat10: 9.779922852456456e-06 - syst_JES_Zjet_Stat11: 1.4730108621459654e-05 - syst_JES_Zjet_Stat12: 3.384029550698398e-05 - syst_JES_Zjet_Stat13: 5.5738425480094076e-05 - syst_JES_Zjet_Stat2: 3.157995052244383e-07 - syst_JES_Zjet_Stat3: 7.2886609881376705e-06 - syst_JES_Zjet_Stat4: 4.947258104243198e-06 - syst_JES_Zjet_Stat5: 5.851882688502906e-06 - syst_JES_Zjet_Stat6: 4.471302578667653e-06 - syst_JES_Zjet_Stat7: 5.808495911163233e-06 - syst_JES_Zjet_Stat8: 4.493837196650541e-06 - syst_JES_Zjet_Stat9: 5.589623779826331e-06 - syst_JES_Zjet_Veto: 2.4418326621617626e-05 - syst_JES_Zjet_dPhi: 2.265506289993475e-05 + syst_JER_NP8: 5.01984890e-06 + syst_JES_EtaIntercalibration_Modelling: 6.79995167e-04 + syst_JES_EtaIntercalibration_NonClosure: 3.28373122e-06 + syst_JES_EtaIntercalibration_Stat0: 2.45224632e-22 + syst_JES_EtaIntercalibration_Stat1: 1.13203677e-21 + syst_JES_EtaIntercalibration_Stat10: 1.67244368e-22 + syst_JES_EtaIntercalibration_Stat100: 1.43153999e-07 + syst_JES_EtaIntercalibration_Stat101: 7.67261074e-16 + syst_JES_EtaIntercalibration_Stat102: 1.51029320e-11 + syst_JES_EtaIntercalibration_Stat103: 1.50860808e-11 + syst_JES_EtaIntercalibration_Stat104: 2.36013476e-17 + syst_JES_EtaIntercalibration_Stat105: 4.47643601e-15 + syst_JES_EtaIntercalibration_Stat106: 2.68036043e-16 + syst_JES_EtaIntercalibration_Stat107: 1.13350130e-21 + syst_JES_EtaIntercalibration_Stat108: 1.31757831e-16 + syst_JES_EtaIntercalibration_Stat109: 2.59531057e-13 + syst_JES_EtaIntercalibration_Stat11: 5.74963188e-21 + syst_JES_EtaIntercalibration_Stat110: 3.61231474e-13 + syst_JES_EtaIntercalibration_Stat111: 3.13601697e-10 + syst_JES_EtaIntercalibration_Stat112: 3.14387409e-10 + syst_JES_EtaIntercalibration_Stat113: 1.58643451e-07 + syst_JES_EtaIntercalibration_Stat114: 1.12350121e-07 + syst_JES_EtaIntercalibration_Stat115: 2.35621821e-08 + syst_JES_EtaIntercalibration_Stat116: 3.28923836e-08 + syst_JES_EtaIntercalibration_Stat117: 2.00392454e-14 + syst_JES_EtaIntercalibration_Stat118: 2.74326679e-10 + syst_JES_EtaIntercalibration_Stat119: 2.83083339e-08 + syst_JES_EtaIntercalibration_Stat12: 3.06032082e-19 + syst_JES_EtaIntercalibration_Stat120: 2.92904605e-08 + syst_JES_EtaIntercalibration_Stat121: 6.43604800e-15 + syst_JES_EtaIntercalibration_Stat122: 2.14601067e-10 + syst_JES_EtaIntercalibration_Stat123: 4.42538414e-11 + syst_JES_EtaIntercalibration_Stat124: 1.61804749e-10 + syst_JES_EtaIntercalibration_Stat125: 3.48900258e-14 + syst_JES_EtaIntercalibration_Stat126: 6.17682386e-15 + syst_JES_EtaIntercalibration_Stat127: 1.07352509e-20 + syst_JES_EtaIntercalibration_Stat128: 5.11446683e-13 + syst_JES_EtaIntercalibration_Stat129: 9.04736720e-08 + syst_JES_EtaIntercalibration_Stat13: 8.00401984e-21 + syst_JES_EtaIntercalibration_Stat130: 2.72187937e-08 + syst_JES_EtaIntercalibration_Stat131: 2.32829049e-10 + syst_JES_EtaIntercalibration_Stat132: 2.28652164e-08 + syst_JES_EtaIntercalibration_Stat133: 9.33963425e-08 + syst_JES_EtaIntercalibration_Stat134: 5.56499929e-12 + syst_JES_EtaIntercalibration_Stat135: 5.91025731e-12 + syst_JES_EtaIntercalibration_Stat136: 1.51066465e-07 + syst_JES_EtaIntercalibration_Stat137: 1.56369934e-07 + syst_JES_EtaIntercalibration_Stat138: 8.52285942e-08 + syst_JES_EtaIntercalibration_Stat139: 5.75822846e-08 + syst_JES_EtaIntercalibration_Stat14: 7.88625908e-21 + syst_JES_EtaIntercalibration_Stat140: 2.66497816e-07 + syst_JES_EtaIntercalibration_Stat141: 2.06744511e-07 + syst_JES_EtaIntercalibration_Stat142: 1.17220256e-07 + syst_JES_EtaIntercalibration_Stat143: 6.23839649e-11 + syst_JES_EtaIntercalibration_Stat144: 1.64034656e-10 + syst_JES_EtaIntercalibration_Stat145: 4.00308554e-13 + syst_JES_EtaIntercalibration_Stat146: 2.68165005e-12 + syst_JES_EtaIntercalibration_Stat147: 9.32129923e-08 + syst_JES_EtaIntercalibration_Stat148: 2.72246821e-08 + syst_JES_EtaIntercalibration_Stat149: 3.40001574e-10 + syst_JES_EtaIntercalibration_Stat15: 4.18071145e-21 + syst_JES_EtaIntercalibration_Stat150: 2.29507526e-08 + syst_JES_EtaIntercalibration_Stat151: 2.28718128e-08 + syst_JES_EtaIntercalibration_Stat152: 4.22017155e-08 + syst_JES_EtaIntercalibration_Stat153: 3.14583076e-11 + syst_JES_EtaIntercalibration_Stat154: 7.12813136e-08 + syst_JES_EtaIntercalibration_Stat155: 1.56412585e-07 + syst_JES_EtaIntercalibration_Stat156: 2.80683220e-08 + syst_JES_EtaIntercalibration_Stat157: 2.00503515e-10 + syst_JES_EtaIntercalibration_Stat158: 5.59598222e-08 + syst_JES_EtaIntercalibration_Stat159: 2.22623544e-07 + syst_JES_EtaIntercalibration_Stat16: 1.88264196e-22 + syst_JES_EtaIntercalibration_Stat160: 1.20319959e-11 + syst_JES_EtaIntercalibration_Stat161: 2.95905531e-11 + syst_JES_EtaIntercalibration_Stat162: 1.03050602e-10 + syst_JES_EtaIntercalibration_Stat163: 1.53140303e-11 + syst_JES_EtaIntercalibration_Stat164: 5.33693481e-12 + syst_JES_EtaIntercalibration_Stat165: 8.44429304e-08 + syst_JES_EtaIntercalibration_Stat166: 8.89632768e-08 + syst_JES_EtaIntercalibration_Stat167: 1.06260305e-07 + syst_JES_EtaIntercalibration_Stat168: 1.13832580e-07 + syst_JES_EtaIntercalibration_Stat169: 7.73793698e-08 + syst_JES_EtaIntercalibration_Stat17: 2.67006573e-22 + syst_JES_EtaIntercalibration_Stat170: 1.55993884e-07 + syst_JES_EtaIntercalibration_Stat171: 9.20165730e-08 + syst_JES_EtaIntercalibration_Stat172: 1.02851318e-07 + syst_JES_EtaIntercalibration_Stat173: 6.40332775e-08 + syst_JES_EtaIntercalibration_Stat174: 1.97951816e-07 + syst_JES_EtaIntercalibration_Stat175: 5.67979629e-08 + syst_JES_EtaIntercalibration_Stat176: 8.34951979e-08 + syst_JES_EtaIntercalibration_Stat177: 3.53189526e-08 + syst_JES_EtaIntercalibration_Stat178: 2.43596608e-07 + syst_JES_EtaIntercalibration_Stat179: 3.67941816e-08 + syst_JES_EtaIntercalibration_Stat18: 2.45224632e-22 + syst_JES_EtaIntercalibration_Stat180: 2.21510160e-10 + syst_JES_EtaIntercalibration_Stat181: 4.62457566e-11 + syst_JES_EtaIntercalibration_Stat182: 3.10700027e-08 + syst_JES_EtaIntercalibration_Stat183: 3.19130361e-07 + syst_JES_EtaIntercalibration_Stat184: 1.39252974e-07 + syst_JES_EtaIntercalibration_Stat185: 9.73404489e-07 + syst_JES_EtaIntercalibration_Stat186: 9.86762069e-07 + syst_JES_EtaIntercalibration_Stat187: 1.00323298e-06 + syst_JES_EtaIntercalibration_Stat188: 7.58620999e-07 + syst_JES_EtaIntercalibration_Stat189: 8.04707170e-07 + syst_JES_EtaIntercalibration_Stat19: 1.39584564e-20 + syst_JES_EtaIntercalibration_Stat190: 3.97453353e-07 + syst_JES_EtaIntercalibration_Stat191: 1.92554301e-06 + syst_JES_EtaIntercalibration_Stat192: 1.29792489e-06 + syst_JES_EtaIntercalibration_Stat193: 8.03684047e-07 + syst_JES_EtaIntercalibration_Stat194: 2.74183643e-07 + syst_JES_EtaIntercalibration_Stat195: 4.80973357e-07 + syst_JES_EtaIntercalibration_Stat196: 3.00512008e-07 + syst_JES_EtaIntercalibration_Stat197: 5.83061787e-08 + syst_JES_EtaIntercalibration_Stat198: 6.18440668e-07 + syst_JES_EtaIntercalibration_Stat199: 1.13434852e-06 + syst_JES_EtaIntercalibration_Stat2: 1.41163787e-21 + syst_JES_EtaIntercalibration_Stat20: 2.45224632e-22 + syst_JES_EtaIntercalibration_Stat200: 1.53572064e-06 + syst_JES_EtaIntercalibration_Stat201: 1.44386110e-06 + syst_JES_EtaIntercalibration_Stat202: 1.79258717e-06 + syst_JES_EtaIntercalibration_Stat203: 1.63526970e-06 + syst_JES_EtaIntercalibration_Stat204: 1.38535880e-06 + syst_JES_EtaIntercalibration_Stat205: 1.24540809e-06 + syst_JES_EtaIntercalibration_Stat206: 1.81951944e-06 + syst_JES_EtaIntercalibration_Stat207: 1.68652972e-06 + syst_JES_EtaIntercalibration_Stat208: 2.03318691e-06 + syst_JES_EtaIntercalibration_Stat209: 9.99616016e-07 + syst_JES_EtaIntercalibration_Stat21: 2.45224632e-22 + syst_JES_EtaIntercalibration_Stat210: 7.00261185e-07 + syst_JES_EtaIntercalibration_Stat211: 8.25459816e-07 + syst_JES_EtaIntercalibration_Stat212: 1.12889405e-06 + syst_JES_EtaIntercalibration_Stat213: 5.16423744e-07 + syst_JES_EtaIntercalibration_Stat214: 1.42201658e-06 + syst_JES_EtaIntercalibration_Stat215: 2.14286187e-06 + syst_JES_EtaIntercalibration_Stat216: 3.22491661e-06 + syst_JES_EtaIntercalibration_Stat217: 1.23743693e-06 + syst_JES_EtaIntercalibration_Stat218: 1.69556507e-06 + syst_JES_EtaIntercalibration_Stat219: 2.12827653e-06 + syst_JES_EtaIntercalibration_Stat22: 2.45224632e-22 + syst_JES_EtaIntercalibration_Stat220: 2.44862982e-06 + syst_JES_EtaIntercalibration_Stat221: 1.14737781e-06 + syst_JES_EtaIntercalibration_Stat222: 9.33357284e-07 + syst_JES_EtaIntercalibration_Stat223: 1.13391716e-06 + syst_JES_EtaIntercalibration_Stat224: 2.21803029e-06 + syst_JES_EtaIntercalibration_Stat225: 4.21158221e-06 + syst_JES_EtaIntercalibration_Stat226: 3.57536610e-06 + syst_JES_EtaIntercalibration_Stat227: 6.75518281e-06 + syst_JES_EtaIntercalibration_Stat228: 5.55129012e-06 + syst_JES_EtaIntercalibration_Stat229: 4.23420155e-06 + syst_JES_EtaIntercalibration_Stat23: 2.99660096e-20 + syst_JES_EtaIntercalibration_Stat230: 4.29389194e-06 + syst_JES_EtaIntercalibration_Stat231: 8.00177780e-06 + syst_JES_EtaIntercalibration_Stat232: 7.21659066e-06 + syst_JES_EtaIntercalibration_Stat233: 4.25534191e-06 + syst_JES_EtaIntercalibration_Stat234: 2.85975384e-06 + syst_JES_EtaIntercalibration_Stat235: 1.26179901e-06 + syst_JES_EtaIntercalibration_Stat236: 7.30477123e-07 + syst_JES_EtaIntercalibration_Stat237: 5.19963583e-07 + syst_JES_EtaIntercalibration_Stat238: 1.26249912e-06 + syst_JES_EtaIntercalibration_Stat239: 7.97690372e-07 + syst_JES_EtaIntercalibration_Stat24: 3.26351724e-19 + syst_JES_EtaIntercalibration_Stat240: 5.90010585e-07 + syst_JES_EtaIntercalibration_Stat241: 8.36407238e-08 + syst_JES_EtaIntercalibration_Stat242: 1.91952433e-06 + syst_JES_EtaIntercalibration_Stat243: 8.69329953e-07 + syst_JES_EtaIntercalibration_Stat244: 6.94465789e-07 + syst_JES_EtaIntercalibration_Stat245: 7.67058212e-07 + syst_JES_EtaIntercalibration_Stat25: 3.31096787e-19 + syst_JES_EtaIntercalibration_Stat26: 4.91339340e-21 + syst_JES_EtaIntercalibration_Stat27: 1.85102981e-19 + syst_JES_EtaIntercalibration_Stat28: 4.91589758e-20 + syst_JES_EtaIntercalibration_Stat29: 3.84243865e-19 + syst_JES_EtaIntercalibration_Stat3: 2.91921120e-21 + syst_JES_EtaIntercalibration_Stat30: 3.03332788e-19 + syst_JES_EtaIntercalibration_Stat31: 2.39110113e-13 + syst_JES_EtaIntercalibration_Stat32: 2.40235639e-13 + syst_JES_EtaIntercalibration_Stat33: 1.11410394e-19 + syst_JES_EtaIntercalibration_Stat34: 3.02626549e-18 + syst_JES_EtaIntercalibration_Stat35: 3.08651454e-08 + syst_JES_EtaIntercalibration_Stat36: 3.06158148e-18 + syst_JES_EtaIntercalibration_Stat37: 8.25648112e-18 + syst_JES_EtaIntercalibration_Stat38: 1.16783562e-18 + syst_JES_EtaIntercalibration_Stat39: 1.21693890e-18 + syst_JES_EtaIntercalibration_Stat4: 1.13203677e-21 + syst_JES_EtaIntercalibration_Stat40: 6.58293574e-20 + syst_JES_EtaIntercalibration_Stat41: 2.38194044e-21 + syst_JES_EtaIntercalibration_Stat42: 7.40278515e-21 + syst_JES_EtaIntercalibration_Stat43: 2.45224632e-22 + syst_JES_EtaIntercalibration_Stat44: 2.45224632e-22 + syst_JES_EtaIntercalibration_Stat45: 1.41163787e-21 + syst_JES_EtaIntercalibration_Stat46: 2.30240344e-20 + syst_JES_EtaIntercalibration_Stat47: 4.65151799e-18 + syst_JES_EtaIntercalibration_Stat48: 2.75598804e-19 + syst_JES_EtaIntercalibration_Stat49: 4.21860281e-19 + syst_JES_EtaIntercalibration_Stat5: 1.50168805e-22 + syst_JES_EtaIntercalibration_Stat50: 2.39109710e-13 + syst_JES_EtaIntercalibration_Stat51: 1.52677881e-18 + syst_JES_EtaIntercalibration_Stat52: 4.80265771e-19 + syst_JES_EtaIntercalibration_Stat53: 2.39124493e-13 + syst_JES_EtaIntercalibration_Stat54: 2.39023460e-13 + syst_JES_EtaIntercalibration_Stat55: 1.58275993e-19 + syst_JES_EtaIntercalibration_Stat56: 2.67585117e-18 + syst_JES_EtaIntercalibration_Stat57: 1.39083867e-12 + syst_JES_EtaIntercalibration_Stat58: 9.49589985e-18 + syst_JES_EtaIntercalibration_Stat59: 5.09043090e-18 + syst_JES_EtaIntercalibration_Stat6: 1.79502956e-21 + syst_JES_EtaIntercalibration_Stat60: 2.26187736e-20 + syst_JES_EtaIntercalibration_Stat61: 1.12170346e-18 + syst_JES_EtaIntercalibration_Stat62: 2.30514145e-19 + syst_JES_EtaIntercalibration_Stat63: 7.17467753e-20 + syst_JES_EtaIntercalibration_Stat64: 1.54537706e-21 + syst_JES_EtaIntercalibration_Stat65: 2.45224632e-22 + syst_JES_EtaIntercalibration_Stat66: 2.45224632e-22 + syst_JES_EtaIntercalibration_Stat67: 4.56096339e-19 + syst_JES_EtaIntercalibration_Stat68: 2.73447695e-17 + syst_JES_EtaIntercalibration_Stat69: 2.52819138e-17 + syst_JES_EtaIntercalibration_Stat7: 3.72858163e-21 + syst_JES_EtaIntercalibration_Stat70: 7.69093575e-18 + syst_JES_EtaIntercalibration_Stat71: 4.36825099e-18 + syst_JES_EtaIntercalibration_Stat72: 2.39109586e-13 + syst_JES_EtaIntercalibration_Stat73: 1.64023650e-11 + syst_JES_EtaIntercalibration_Stat74: 1.66190406e-11 + syst_JES_EtaIntercalibration_Stat75: 2.65869799e-08 + syst_JES_EtaIntercalibration_Stat76: 2.38071030e-13 + syst_JES_EtaIntercalibration_Stat77: 6.27889329e-18 + syst_JES_EtaIntercalibration_Stat78: 2.76781719e-08 + syst_JES_EtaIntercalibration_Stat79: 2.89252485e-08 + syst_JES_EtaIntercalibration_Stat8: 5.51011726e-20 + syst_JES_EtaIntercalibration_Stat80: 1.39172173e-12 + syst_JES_EtaIntercalibration_Stat81: 1.27820129e-11 + syst_JES_EtaIntercalibration_Stat82: 1.50861550e-11 + syst_JES_EtaIntercalibration_Stat83: 5.46928788e-19 + syst_JES_EtaIntercalibration_Stat84: 1.53708431e-18 + syst_JES_EtaIntercalibration_Stat85: 4.42807518e-19 + syst_JES_EtaIntercalibration_Stat86: 3.20999439e-21 + syst_JES_EtaIntercalibration_Stat87: 1.50168805e-22 + syst_JES_EtaIntercalibration_Stat88: 3.26932805e-19 + syst_JES_EtaIntercalibration_Stat89: 2.15903329e-16 + syst_JES_EtaIntercalibration_Stat9: 5.24043589e-20 + syst_JES_EtaIntercalibration_Stat90: 2.12024717e-16 + syst_JES_EtaIntercalibration_Stat91: 8.08563405e-18 + syst_JES_EtaIntercalibration_Stat92: 2.36654682e-17 + syst_JES_EtaIntercalibration_Stat93: 2.39015123e-13 + syst_JES_EtaIntercalibration_Stat94: 1.52593550e-11 + syst_JES_EtaIntercalibration_Stat95: 1.49345030e-11 + syst_JES_EtaIntercalibration_Stat96: 2.79119988e-08 + syst_JES_EtaIntercalibration_Stat97: 2.25547804e-16 + syst_JES_EtaIntercalibration_Stat98: 3.19388718e-17 + syst_JES_EtaIntercalibration_Stat99: 5.16310294e-08 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.60133038e-04 + syst_JES_Flavour_Comp: 4.14751911e-04 + syst_JES_Flavour_Response: 5.34941368e-06 + syst_JES_Gjet_Generator: 5.09687676e-04 + syst_JES_Gjet_OOC: 4.21396559e-04 + syst_JES_Gjet_Purity: 7.46122530e-05 + syst_JES_Gjet_Stat1: 1.88455273e-06 + syst_JES_Gjet_Stat10: 8.82948079e-06 + syst_JES_Gjet_Stat11: 1.06512470e-05 + syst_JES_Gjet_Stat12: 2.61158051e-05 + syst_JES_Gjet_Stat13: 8.44775596e-05 + syst_JES_Gjet_Stat14: 2.24723892e-04 + syst_JES_Gjet_Stat15: 2.78200553e-04 + syst_JES_Gjet_Stat2: 1.86394984e-06 + syst_JES_Gjet_Stat3: 2.24032520e-06 + syst_JES_Gjet_Stat4: 1.45520527e-06 + syst_JES_Gjet_Stat5: 1.67808999e-06 + syst_JES_Gjet_Stat6: 5.34731959e-06 + syst_JES_Gjet_Stat7: 4.47867882e-06 + syst_JES_Gjet_Stat8: 3.04413962e-06 + syst_JES_Gjet_Stat9: 4.30081678e-06 + syst_JES_Gjet_Veto: 4.23291401e-04 + syst_JES_Gjet_dPhi: 4.28754904e-05 + syst_JES_LArESZee: 7.72074289e-04 + syst_JES_LArEsmear: 6.56630054e-05 + syst_JES_LAr_JVT: 8.17805765e-05 + syst_JES_MJB_Alpha: 5.62299493e-06 + syst_JES_MJB_Asym: 9.00782975e-05 + syst_JES_MJB_Beta: 5.08611942e-06 + syst_JES_MJB_Fragmentation: 4.68351268e-05 + syst_JES_MJB_Stat1: 3.29327096e-08 + syst_JES_MJB_Stat10: 6.62826614e-06 + syst_JES_MJB_Stat11: 9.23598813e-06 + syst_JES_MJB_Stat12: 1.19946663e-05 + syst_JES_MJB_Stat13: 1.23212659e-05 + syst_JES_MJB_Stat14: 9.10201758e-06 + syst_JES_MJB_Stat15: 1.33674342e-05 + syst_JES_MJB_Stat16: 8.00447887e-06 + syst_JES_MJB_Stat2: 9.85113155e-07 + syst_JES_MJB_Stat3: 2.14789036e-06 + syst_JES_MJB_Stat4: 2.57265629e-06 + syst_JES_MJB_Stat5: 1.47085781e-06 + syst_JES_MJB_Stat6: 2.21819814e-06 + syst_JES_MJB_Stat7: 2.69617715e-06 + syst_JES_MJB_Stat8: 5.97011968e-06 + syst_JES_MJB_Stat9: 4.01538849e-06 + syst_JES_MJB_Threshold: 6.15788963e-05 + syst_JES_Pileup_MuOffset: 1.03324932e-04 + syst_JES_Pileup_NPVOffset: 1.04516388e-04 + syst_JES_Pileup_Pt_term: 6.24828232e-05 + syst_JES_Pileup_Rho_topology: 1.39217247e-04 + syst_JES_PunchThrough_MC15: 1.16040828e-04 + syst_JES_SingleParticle_HighPt: 1.41721525e-07 + syst_JES_Zjet_MC: 1.98845185e-04 + syst_JES_Zjet_MuScale: 1.72199477e-05 + syst_JES_Zjet_MuSmearID: 3.80138071e-06 + syst_JES_Zjet_MuSmearMS: 5.37727373e-05 + syst_JES_Zjet_OOC: 1.17340312e-04 + syst_JES_Zjet_Stat1: 9.37312140e-06 + syst_JES_Zjet_Stat10: 9.77992285e-06 + syst_JES_Zjet_Stat11: 1.47301086e-05 + syst_JES_Zjet_Stat12: 3.38402955e-05 + syst_JES_Zjet_Stat13: 5.57384255e-05 + syst_JES_Zjet_Stat2: 3.15799505e-07 + syst_JES_Zjet_Stat3: 7.28866099e-06 + syst_JES_Zjet_Stat4: 4.94725810e-06 + syst_JES_Zjet_Stat5: 5.85188269e-06 + syst_JES_Zjet_Stat6: 4.47130258e-06 + syst_JES_Zjet_Stat7: 5.80849591e-06 + syst_JES_Zjet_Stat8: 4.49383720e-06 + syst_JES_Zjet_Stat9: 5.58962378e-06 + syst_JES_Zjet_Veto: 2.44183266e-05 + syst_JES_Zjet_dPhi: 2.26550629e-05 syst_PRW: 0.0 syst_Unfolding_bias: 0.0 - syst_cleaning: 0.00021304224933097192 - syst_lumi: 0.0004169 -- stat: 0.00018108 - syst_JER_CROSS_CALIB_FORWARD: 1.2063e-17 - syst_JER_NOISE_FORWARD: 5.231e-15 - syst_JER_NP0: 1.99171904394169e-05 - syst_JER_NP1: 3.7439538498758234e-06 - syst_JER_NP2: 1.0293406858275836e-05 - syst_JER_NP3: 1.7850542708836614e-06 - syst_JER_NP4: 1.3292070972952258e-06 - syst_JER_NP5: 1.253536653153788e-06 - syst_JER_NP6: 9.0961190625453e-07 + syst_cleaning: 2.13042249e-04 + syst_lumi: 4.16900000e-04 +- stat: 1.81080000e-04 + syst_JER_CROSS_CALIB_FORWARD: 1.20630000e-17 + syst_JER_NOISE_FORWARD: 5.23100000e-15 + syst_JER_NP0: 1.99171904e-05 + syst_JER_NP1: 3.74395385e-06 + syst_JER_NP2: 1.02934069e-05 + syst_JER_NP3: 1.78505427e-06 + syst_JER_NP4: 1.32920710e-06 + syst_JER_NP5: 1.25353665e-06 + syst_JER_NP6: 9.09611906e-07 syst_JER_NP7: 0.0 - syst_JER_NP8: 2.7021535855683704e-06 - syst_JES_EtaIntercalibration_Modelling: 0.000385052834134486 - syst_JES_EtaIntercalibration_NonClosure: 6.824430141044745e-07 - syst_JES_EtaIntercalibration_Stat0: 5.218448045156721e-23 - syst_JES_EtaIntercalibration_Stat1: 2.7729750720120077e-22 - syst_JES_EtaIntercalibration_Stat10: 9.841170814491535e-23 - syst_JES_EtaIntercalibration_Stat100: 7.103140361962768e-08 - syst_JES_EtaIntercalibration_Stat101: 6.840526322403854e-17 - syst_JES_EtaIntercalibration_Stat102: 1.2478935686586047e-12 - syst_JES_EtaIntercalibration_Stat103: 1.2470687470033217e-12 - syst_JES_EtaIntercalibration_Stat104: 2.2936308643447837e-18 - syst_JES_EtaIntercalibration_Stat105: 3.9373808705788164e-16 - syst_JES_EtaIntercalibration_Stat106: 2.4092033377654113e-17 - syst_JES_EtaIntercalibration_Stat107: 2.5145515042448426e-22 - syst_JES_EtaIntercalibration_Stat108: 1.266252053137526e-17 - syst_JES_EtaIntercalibration_Stat109: 1.910750787758244e-14 - syst_JES_EtaIntercalibration_Stat11: 8.170713738713405e-22 - syst_JES_EtaIntercalibration_Stat110: 2.849212236158444e-14 - syst_JES_EtaIntercalibration_Stat111: 2.998086634790095e-11 - syst_JES_EtaIntercalibration_Stat112: 3.004251113006367e-11 - syst_JES_EtaIntercalibration_Stat113: 6.996762718751579e-08 - syst_JES_EtaIntercalibration_Stat114: 4.673944063684477e-08 - syst_JES_EtaIntercalibration_Stat115: 1.2670442481125116e-08 - syst_JES_EtaIntercalibration_Stat116: 1.7525012838797008e-08 - syst_JES_EtaIntercalibration_Stat117: 1.6382033085059987e-15 - syst_JES_EtaIntercalibration_Stat118: 2.5400208728959294e-11 - syst_JES_EtaIntercalibration_Stat119: 1.497393261001264e-08 - syst_JES_EtaIntercalibration_Stat12: 3.771066401894828e-20 - syst_JES_EtaIntercalibration_Stat120: 1.555842238146272e-08 - syst_JES_EtaIntercalibration_Stat121: 5.790511522093709e-16 - syst_JES_EtaIntercalibration_Stat122: 2.0472837069817867e-11 - syst_JES_EtaIntercalibration_Stat123: 3.6365700873212936e-12 - syst_JES_EtaIntercalibration_Stat124: 1.4807798646321472e-11 - syst_JES_EtaIntercalibration_Stat125: 2.768234274767943e-15 - syst_JES_EtaIntercalibration_Stat126: 5.476565232880916e-16 - syst_JES_EtaIntercalibration_Stat127: 2.017839190817742e-21 - syst_JES_EtaIntercalibration_Stat128: 3.9326096615352e-14 - syst_JES_EtaIntercalibration_Stat129: 1.1246205702095384e-08 - syst_JES_EtaIntercalibration_Stat13: 1.3285648299951342e-21 - syst_JES_EtaIntercalibration_Stat130: 6.896996891584937e-09 - syst_JES_EtaIntercalibration_Stat131: 4.4933761362560106e-11 - syst_JES_EtaIntercalibration_Stat132: 1.231233036174837e-08 - syst_JES_EtaIntercalibration_Stat133: 3.787052176495592e-08 - syst_JES_EtaIntercalibration_Stat134: 7.21341000637008e-13 - syst_JES_EtaIntercalibration_Stat135: 4.602127248077785e-13 - syst_JES_EtaIntercalibration_Stat136: 9.501949277911349e-08 - syst_JES_EtaIntercalibration_Stat137: 1.0135759813649885e-07 - syst_JES_EtaIntercalibration_Stat138: 4.586600811058228e-08 - syst_JES_EtaIntercalibration_Stat139: 3.098640922400174e-08 - syst_JES_EtaIntercalibration_Stat14: 1.3034566764952337e-21 - syst_JES_EtaIntercalibration_Stat140: 1.3025424828676414e-07 - syst_JES_EtaIntercalibration_Stat141: 1.0255995843895413e-07 - syst_JES_EtaIntercalibration_Stat142: 8.412915678140368e-08 - syst_JES_EtaIntercalibration_Stat143: 5.1572408078351355e-12 - syst_JES_EtaIntercalibration_Stat144: 1.598107078413396e-11 - syst_JES_EtaIntercalibration_Stat145: 3.097482301402221e-14 - syst_JES_EtaIntercalibration_Stat146: 2.078900720934023e-13 - syst_JES_EtaIntercalibration_Stat147: 1.1538264748768407e-08 - syst_JES_EtaIntercalibration_Stat148: 6.897646742460294e-09 - syst_JES_EtaIntercalibration_Stat149: 4.144797582512323e-11 - syst_JES_EtaIntercalibration_Stat15: 5.290664389280424e-22 - syst_JES_EtaIntercalibration_Stat150: 1.2372855079562952e-08 - syst_JES_EtaIntercalibration_Stat151: 1.230622785826042e-08 - syst_JES_EtaIntercalibration_Stat152: 2.2854433999387513e-08 - syst_JES_EtaIntercalibration_Stat153: 2.6441655775954632e-12 - syst_JES_EtaIntercalibration_Stat154: 2.7210885703151968e-08 - syst_JES_EtaIntercalibration_Stat155: 1.0137747728169211e-07 - syst_JES_EtaIntercalibration_Stat156: 1.7453301349601458e-08 - syst_JES_EtaIntercalibration_Stat157: 1.5847723874424364e-11 - syst_JES_EtaIntercalibration_Stat158: 3.104884162090431e-08 - syst_JES_EtaIntercalibration_Stat159: 1.0339050133716347e-07 - syst_JES_EtaIntercalibration_Stat16: 4.811390443520459e-23 - syst_JES_EtaIntercalibration_Stat160: 9.355595190796293e-13 - syst_JES_EtaIntercalibration_Stat161: 2.3433597312405963e-12 - syst_JES_EtaIntercalibration_Stat162: 1.0945985945541863e-11 - syst_JES_EtaIntercalibration_Stat163: 1.3607004617842974e-12 - syst_JES_EtaIntercalibration_Stat164: 4.128504473474626e-13 - syst_JES_EtaIntercalibration_Stat165: 1.0291866329324093e-08 - syst_JES_EtaIntercalibration_Stat166: 1.0945405568578764e-08 - syst_JES_EtaIntercalibration_Stat167: 2.4495794348214143e-08 - syst_JES_EtaIntercalibration_Stat168: 4.7503878525863545e-08 - syst_JES_EtaIntercalibration_Stat169: 2.637047344347817e-08 - syst_JES_EtaIntercalibration_Stat17: 4.929367986872151e-23 - syst_JES_EtaIntercalibration_Stat170: 1.2258244462960756e-07 - syst_JES_EtaIntercalibration_Stat171: 4.522259695108188e-08 - syst_JES_EtaIntercalibration_Stat172: 5.683990844468348e-08 - syst_JES_EtaIntercalibration_Stat173: 7.99856008361474e-09 - syst_JES_EtaIntercalibration_Stat174: 1.4908861144556782e-07 - syst_JES_EtaIntercalibration_Stat175: 2.3512600940772163e-08 - syst_JES_EtaIntercalibration_Stat176: 1.7306450589303398e-08 - syst_JES_EtaIntercalibration_Stat177: 2.051524798777729e-08 - syst_JES_EtaIntercalibration_Stat178: 1.0184025174261893e-07 - syst_JES_EtaIntercalibration_Stat179: 5.6136548700467865e-09 - syst_JES_EtaIntercalibration_Stat18: 5.218448045156721e-23 - syst_JES_EtaIntercalibration_Stat180: 2.1219299587875185e-11 - syst_JES_EtaIntercalibration_Stat181: 3.838224589414697e-12 - syst_JES_EtaIntercalibration_Stat182: 2.3177547251758546e-08 - syst_JES_EtaIntercalibration_Stat183: 8.157959303649428e-08 - syst_JES_EtaIntercalibration_Stat184: 2.5378854249157903e-08 - syst_JES_EtaIntercalibration_Stat185: 4.0616624315051095e-07 - syst_JES_EtaIntercalibration_Stat186: 4.1644899747748223e-07 - syst_JES_EtaIntercalibration_Stat187: 5.336741421504324e-07 - syst_JES_EtaIntercalibration_Stat188: 4.3580742019841746e-07 - syst_JES_EtaIntercalibration_Stat189: 2.777072334311802e-07 - syst_JES_EtaIntercalibration_Stat19: 2.4395940236031073e-21 - syst_JES_EtaIntercalibration_Stat190: 2.326170834225208e-07 - syst_JES_EtaIntercalibration_Stat191: 7.553292527103661e-07 - syst_JES_EtaIntercalibration_Stat192: 6.562442914037424e-07 - syst_JES_EtaIntercalibration_Stat193: 4.3513627750395624e-07 - syst_JES_EtaIntercalibration_Stat194: 1.2444779160534045e-07 - syst_JES_EtaIntercalibration_Stat195: 1.3519026111373556e-07 - syst_JES_EtaIntercalibration_Stat196: 9.246989604730829e-08 - syst_JES_EtaIntercalibration_Stat197: 9.442449841010542e-09 - syst_JES_EtaIntercalibration_Stat198: 1.5227978858256272e-07 - syst_JES_EtaIntercalibration_Stat199: 4.4815472403512607e-07 - syst_JES_EtaIntercalibration_Stat2: 2.381651107950113e-22 - syst_JES_EtaIntercalibration_Stat20: 5.218448045156721e-23 - syst_JES_EtaIntercalibration_Stat200: 5.652433635169899e-07 - syst_JES_EtaIntercalibration_Stat201: 7.783909942952835e-07 - syst_JES_EtaIntercalibration_Stat202: 1.3651981422123312e-06 - syst_JES_EtaIntercalibration_Stat203: 8.380983519253573e-07 - syst_JES_EtaIntercalibration_Stat204: 6.658980422519651e-07 - syst_JES_EtaIntercalibration_Stat205: 6.266017455290082e-07 - syst_JES_EtaIntercalibration_Stat206: 1.0169277702963962e-06 - syst_JES_EtaIntercalibration_Stat207: 9.60937161056851e-07 - syst_JES_EtaIntercalibration_Stat208: 1.141836182427234e-06 - syst_JES_EtaIntercalibration_Stat209: 3.593362909587619e-07 - syst_JES_EtaIntercalibration_Stat21: 5.218448045156721e-23 - syst_JES_EtaIntercalibration_Stat210: 2.2149066272644545e-07 - syst_JES_EtaIntercalibration_Stat211: 3.090064562432313e-07 - syst_JES_EtaIntercalibration_Stat212: 4.3707604221119235e-07 - syst_JES_EtaIntercalibration_Stat213: 2.63782088095458e-07 - syst_JES_EtaIntercalibration_Stat214: 7.707462358000849e-07 - syst_JES_EtaIntercalibration_Stat215: 1.51188619611398e-06 - syst_JES_EtaIntercalibration_Stat216: 1.4829617223650785e-06 - syst_JES_EtaIntercalibration_Stat217: 6.235660891196698e-07 - syst_JES_EtaIntercalibration_Stat218: 8.826374227280418e-07 - syst_JES_EtaIntercalibration_Stat219: 1.1088923572646717e-06 - syst_JES_EtaIntercalibration_Stat22: 5.218448045156721e-23 - syst_JES_EtaIntercalibration_Stat220: 1.2808372681570441e-06 - syst_JES_EtaIntercalibration_Stat221: 6.099854158092634e-07 - syst_JES_EtaIntercalibration_Stat222: 4.1335660376362683e-07 - syst_JES_EtaIntercalibration_Stat223: 2.927801542113126e-07 - syst_JES_EtaIntercalibration_Stat224: 8.95259995755423e-07 - syst_JES_EtaIntercalibration_Stat225: 1.7627087110467232e-06 - syst_JES_EtaIntercalibration_Stat226: 2.34442444962511e-06 - syst_JES_EtaIntercalibration_Stat227: 3.945291212318807e-06 - syst_JES_EtaIntercalibration_Stat228: 2.878803006459455e-06 - syst_JES_EtaIntercalibration_Stat229: 2.4086271504738964e-06 - syst_JES_EtaIntercalibration_Stat23: 4.6236921956375946e-21 - syst_JES_EtaIntercalibration_Stat230: 1.9764667338460317e-06 - syst_JES_EtaIntercalibration_Stat231: 4.400748459069207e-06 - syst_JES_EtaIntercalibration_Stat232: 4.530031208501769e-06 - syst_JES_EtaIntercalibration_Stat233: 2.4864840136224483e-06 - syst_JES_EtaIntercalibration_Stat234: 1.4653392098759932e-06 - syst_JES_EtaIntercalibration_Stat235: 5.374553655886226e-07 - syst_JES_EtaIntercalibration_Stat236: 2.648896804270601e-07 - syst_JES_EtaIntercalibration_Stat237: 3.0362379271065043e-07 - syst_JES_EtaIntercalibration_Stat238: 6.924202336731648e-07 - syst_JES_EtaIntercalibration_Stat239: 5.017033685356318e-07 - syst_JES_EtaIntercalibration_Stat24: 4.051427248513787e-20 - syst_JES_EtaIntercalibration_Stat240: 2.2676257958490413e-07 - syst_JES_EtaIntercalibration_Stat241: 6.048580055475829e-08 - syst_JES_EtaIntercalibration_Stat242: 7.636011655308025e-07 - syst_JES_EtaIntercalibration_Stat243: 5.336363087347036e-07 - syst_JES_EtaIntercalibration_Stat244: 4.0174918624598643e-07 - syst_JES_EtaIntercalibration_Stat245: 3.7677370861035406e-07 - syst_JES_EtaIntercalibration_Stat25: 4.157353894907192e-20 - syst_JES_EtaIntercalibration_Stat26: 6.502445386160502e-22 - syst_JES_EtaIntercalibration_Stat27: 1.862517162518241e-20 - syst_JES_EtaIntercalibration_Stat28: 6.84835248125416e-21 - syst_JES_EtaIntercalibration_Stat29: 4.641504389742619e-20 - syst_JES_EtaIntercalibration_Stat3: 4.860590190501561e-22 - syst_JES_EtaIntercalibration_Stat30: 3.718667461268889e-20 - syst_JES_EtaIntercalibration_Stat31: 1.8645588230015792e-14 - syst_JES_EtaIntercalibration_Stat32: 1.874947325926444e-14 - syst_JES_EtaIntercalibration_Stat33: 2.2829327891990167e-20 - syst_JES_EtaIntercalibration_Stat34: 3.723851114102174e-19 - syst_JES_EtaIntercalibration_Stat35: 1.6601706990546114e-08 - syst_JES_EtaIntercalibration_Stat36: 2.8179267698079027e-19 - syst_JES_EtaIntercalibration_Stat37: 1.047845063856308e-18 - syst_JES_EtaIntercalibration_Stat38: 1.402963779824697e-19 - syst_JES_EtaIntercalibration_Stat39: 1.4575207545692104e-19 - syst_JES_EtaIntercalibration_Stat4: 2.7729750720120077e-22 - syst_JES_EtaIntercalibration_Stat40: 9.210308301028799e-21 - syst_JES_EtaIntercalibration_Stat41: 4.980438377291702e-22 - syst_JES_EtaIntercalibration_Stat42: 1.2574688862950048e-21 - syst_JES_EtaIntercalibration_Stat43: 5.218448045156721e-23 - syst_JES_EtaIntercalibration_Stat44: 5.218448045156721e-23 - syst_JES_EtaIntercalibration_Stat45: 2.381651107950113e-22 - syst_JES_EtaIntercalibration_Stat46: 1.0111094188439746e-20 - syst_JES_EtaIntercalibration_Stat47: 5.14778039547143e-19 - syst_JES_EtaIntercalibration_Stat48: 2.983821845804471e-20 - syst_JES_EtaIntercalibration_Stat49: 4.3776412949783814e-20 - syst_JES_EtaIntercalibration_Stat5: 3.1956337399645786e-23 - syst_JES_EtaIntercalibration_Stat50: 1.8645537249204054e-14 - syst_JES_EtaIntercalibration_Stat51: 1.755503996007984e-19 - syst_JES_EtaIntercalibration_Stat52: 6.056765860382915e-20 - syst_JES_EtaIntercalibration_Stat53: 1.864700109590732e-14 - syst_JES_EtaIntercalibration_Stat54: 1.8636922346671913e-14 - syst_JES_EtaIntercalibration_Stat55: 6.171786836079159e-21 - syst_JES_EtaIntercalibration_Stat56: 2.753205182814205e-19 - syst_JES_EtaIntercalibration_Stat57: 1.0640008465535106e-13 - syst_JES_EtaIntercalibration_Stat58: 1.035147316810511e-18 - syst_JES_EtaIntercalibration_Stat59: 5.592296708866581e-19 - syst_JES_EtaIntercalibration_Stat6: 3.2973642382970074e-22 - syst_JES_EtaIntercalibration_Stat60: 4.1745479695411336e-21 - syst_JES_EtaIntercalibration_Stat61: 1.3682901803619727e-19 - syst_JES_EtaIntercalibration_Stat62: 3.306719635832466e-20 - syst_JES_EtaIntercalibration_Stat63: 9.400118856699367e-21 - syst_JES_EtaIntercalibration_Stat64: 3.1022393524678266e-22 - syst_JES_EtaIntercalibration_Stat65: 5.218448045156721e-23 - syst_JES_EtaIntercalibration_Stat66: 5.218448045156721e-23 - syst_JES_EtaIntercalibration_Stat67: 5.953110678460463e-20 - syst_JES_EtaIntercalibration_Stat68: 2.7484331590926495e-18 - syst_JES_EtaIntercalibration_Stat69: 2.467177822431938e-18 - syst_JES_EtaIntercalibration_Stat7: 5.552649705320875e-22 - syst_JES_EtaIntercalibration_Stat70: 8.419826779690898e-19 - syst_JES_EtaIntercalibration_Stat71: 4.863676966041227e-19 - syst_JES_EtaIntercalibration_Stat72: 1.864551171880209e-14 - syst_JES_EtaIntercalibration_Stat73: 1.3552963329379299e-12 - syst_JES_EtaIntercalibration_Stat74: 1.3735175579793148e-12 - syst_JES_EtaIntercalibration_Stat75: 1.402095128728251e-08 - syst_JES_EtaIntercalibration_Stat76: 1.8567661070704345e-14 - syst_JES_EtaIntercalibration_Stat77: 6.311735875929854e-19 - syst_JES_EtaIntercalibration_Stat78: 1.4601188307842268e-08 - syst_JES_EtaIntercalibration_Stat79: 1.5268027867488164e-08 - syst_JES_EtaIntercalibration_Stat8: 7.683092134681192e-21 - syst_JES_EtaIntercalibration_Stat80: 1.064795321730938e-13 - syst_JES_EtaIntercalibration_Stat81: 1.056066413674822e-12 - syst_JES_EtaIntercalibration_Stat82: 1.2462098791040874e-12 - syst_JES_EtaIntercalibration_Stat83: 8.696263450471126e-20 - syst_JES_EtaIntercalibration_Stat84: 1.9029545527941545e-19 - syst_JES_EtaIntercalibration_Stat85: 5.147443607024753e-20 - syst_JES_EtaIntercalibration_Stat86: 4.425859916445617e-22 - syst_JES_EtaIntercalibration_Stat87: 3.1956337399645786e-23 - syst_JES_EtaIntercalibration_Stat88: 4.043582827609291e-20 - syst_JES_EtaIntercalibration_Stat89: 1.9491074831317026e-17 - syst_JES_EtaIntercalibration_Stat9: 7.144488449672237e-21 - syst_JES_EtaIntercalibration_Stat90: 1.9269853758331954e-17 - syst_JES_EtaIntercalibration_Stat91: 9.01635464031889e-19 - syst_JES_EtaIntercalibration_Stat92: 2.243859770016834e-18 - syst_JES_EtaIntercalibration_Stat93: 1.8644663964659567e-14 - syst_JES_EtaIntercalibration_Stat94: 1.2609080835156065e-12 - syst_JES_EtaIntercalibration_Stat95: 1.2346570958367348e-12 - syst_JES_EtaIntercalibration_Stat96: 1.4722431864005646e-08 - syst_JES_EtaIntercalibration_Stat97: 2.0411537595193558e-17 - syst_JES_EtaIntercalibration_Stat98: 3.2122667553458264e-18 - syst_JES_EtaIntercalibration_Stat99: 2.7551174203652375e-08 - syst_JES_EtaIntercalibration_TotalStat_MJB: 9.606338220154441e-05 - syst_JES_Flavour_Comp: 0.00024355891997625544 - syst_JES_Flavour_Response: 1.4457436391006533e-05 - syst_JES_Gjet_Generator: 0.0002859617456933707 - syst_JES_Gjet_OOC: 0.0002379614832278535 - syst_JES_Gjet_Purity: 3.986263687652888e-05 - syst_JES_Gjet_Stat1: 1.0252871353918374e-06 - syst_JES_Gjet_Stat10: 4.8270743468482025e-06 - syst_JES_Gjet_Stat11: 5.1134729880972285e-06 - syst_JES_Gjet_Stat12: 1.2726070603293067e-05 - syst_JES_Gjet_Stat13: 4.579042803905637e-05 - syst_JES_Gjet_Stat14: 0.00012536320074088726 - syst_JES_Gjet_Stat15: 0.0001806632987078449 - syst_JES_Gjet_Stat2: 1.0124239082518745e-06 - syst_JES_Gjet_Stat3: 1.1817514829692408e-06 - syst_JES_Gjet_Stat4: 1.0474321171321796e-06 - syst_JES_Gjet_Stat5: 1.1446019777634495e-06 - syst_JES_Gjet_Stat6: 3.0294212318527117e-06 - syst_JES_Gjet_Stat7: 2.5548459836162335e-06 - syst_JES_Gjet_Stat8: 1.543296856570375e-06 - syst_JES_Gjet_Stat9: 2.2869672057115295e-06 - syst_JES_Gjet_Veto: 0.00024135568669496894 - syst_JES_Gjet_dPhi: 2.374545851315573e-05 - syst_JES_LArESZee: 0.00043389937485550727 - syst_JES_LArEsmear: 3.6631400123391406e-05 - syst_JES_LAr_JVT: 4.608641095811216e-05 - syst_JES_MJB_Alpha: 3.95550129155585e-06 - syst_JES_MJB_Asym: 5.753977667666082e-05 - syst_JES_MJB_Beta: 2.801115670585561e-06 - syst_JES_MJB_Fragmentation: 2.3960417358635473e-05 - syst_JES_MJB_Stat1: 4.587433137256608e-09 - syst_JES_MJB_Stat10: 3.234749565267766e-06 - syst_JES_MJB_Stat11: 4.799251191592288e-06 - syst_JES_MJB_Stat12: 7.229364754250541e-06 - syst_JES_MJB_Stat13: 9.00526973499406e-06 - syst_JES_MJB_Stat14: 8.257187959590116e-06 - syst_JES_MJB_Stat15: 1.3164175505894778e-05 - syst_JES_MJB_Stat16: 3.290235553877564e-06 - syst_JES_MJB_Stat2: 4.44871119314347e-07 - syst_JES_MJB_Stat3: 7.880084644215442e-07 - syst_JES_MJB_Stat4: 9.67712906806559e-07 - syst_JES_MJB_Stat5: 4.981521655076891e-07 - syst_JES_MJB_Stat6: 7.057444367474674e-07 - syst_JES_MJB_Stat7: 1.1283149205784705e-06 - syst_JES_MJB_Stat8: 2.340474471127596e-06 - syst_JES_MJB_Stat9: 2.0587116068065484e-06 - syst_JES_MJB_Threshold: 3.7376878882539136e-05 - syst_JES_Pileup_MuOffset: 5.901016946255959e-05 - syst_JES_Pileup_NPVOffset: 6.000530372392094e-05 - syst_JES_Pileup_Pt_term: 3.4750025899270925e-05 - syst_JES_Pileup_Rho_topology: 7.65130113118024e-05 - syst_JES_PunchThrough_MC15: 7.984014153294068e-05 - syst_JES_SingleParticle_HighPt: 7.059512359221422e-08 - syst_JES_Zjet_MC: 0.00010936521704820048 - syst_JES_Zjet_MuScale: 8.668573397624318e-06 - syst_JES_Zjet_MuSmearID: 1.8727712086637812e-06 - syst_JES_Zjet_MuSmearMS: 2.830339555601059e-05 - syst_JES_Zjet_OOC: 6.65253160458483e-05 - syst_JES_Zjet_Stat1: 5.893286413369029e-06 - syst_JES_Zjet_Stat10: 5.12803675883861e-06 - syst_JES_Zjet_Stat11: 7.4540508953185985e-06 - syst_JES_Zjet_Stat12: 1.7580022753113834e-05 - syst_JES_Zjet_Stat13: 2.8703886060950007e-05 - syst_JES_Zjet_Stat2: 1.8240573149095398e-07 - syst_JES_Zjet_Stat3: 3.637230642948011e-06 - syst_JES_Zjet_Stat4: 2.9673756081763563e-06 - syst_JES_Zjet_Stat5: 3.0518730314349583e-06 - syst_JES_Zjet_Stat6: 2.499626122043054e-06 - syst_JES_Zjet_Stat7: 2.9919085463964305e-06 - syst_JES_Zjet_Stat8: 2.8226410947904796e-06 - syst_JES_Zjet_Stat9: 2.850439264394174e-06 - syst_JES_Zjet_Veto: 1.2878236399057132e-05 - syst_JES_Zjet_dPhi: 1.210916747757665e-05 + syst_JER_NP8: 2.70215359e-06 + syst_JES_EtaIntercalibration_Modelling: 3.85052834e-04 + syst_JES_EtaIntercalibration_NonClosure: 6.82443014e-07 + syst_JES_EtaIntercalibration_Stat0: 5.21844805e-23 + syst_JES_EtaIntercalibration_Stat1: 2.77297507e-22 + syst_JES_EtaIntercalibration_Stat10: 9.84117081e-23 + syst_JES_EtaIntercalibration_Stat100: 7.10314036e-08 + syst_JES_EtaIntercalibration_Stat101: 6.84052632e-17 + syst_JES_EtaIntercalibration_Stat102: 1.24789357e-12 + syst_JES_EtaIntercalibration_Stat103: 1.24706875e-12 + syst_JES_EtaIntercalibration_Stat104: 2.29363086e-18 + syst_JES_EtaIntercalibration_Stat105: 3.93738087e-16 + syst_JES_EtaIntercalibration_Stat106: 2.40920334e-17 + syst_JES_EtaIntercalibration_Stat107: 2.51455150e-22 + syst_JES_EtaIntercalibration_Stat108: 1.26625205e-17 + syst_JES_EtaIntercalibration_Stat109: 1.91075079e-14 + syst_JES_EtaIntercalibration_Stat11: 8.17071374e-22 + syst_JES_EtaIntercalibration_Stat110: 2.84921224e-14 + syst_JES_EtaIntercalibration_Stat111: 2.99808663e-11 + syst_JES_EtaIntercalibration_Stat112: 3.00425111e-11 + syst_JES_EtaIntercalibration_Stat113: 6.99676272e-08 + syst_JES_EtaIntercalibration_Stat114: 4.67394406e-08 + syst_JES_EtaIntercalibration_Stat115: 1.26704425e-08 + syst_JES_EtaIntercalibration_Stat116: 1.75250128e-08 + syst_JES_EtaIntercalibration_Stat117: 1.63820331e-15 + syst_JES_EtaIntercalibration_Stat118: 2.54002087e-11 + syst_JES_EtaIntercalibration_Stat119: 1.49739326e-08 + syst_JES_EtaIntercalibration_Stat12: 3.77106640e-20 + syst_JES_EtaIntercalibration_Stat120: 1.55584224e-08 + syst_JES_EtaIntercalibration_Stat121: 5.79051152e-16 + syst_JES_EtaIntercalibration_Stat122: 2.04728371e-11 + syst_JES_EtaIntercalibration_Stat123: 3.63657009e-12 + syst_JES_EtaIntercalibration_Stat124: 1.48077986e-11 + syst_JES_EtaIntercalibration_Stat125: 2.76823427e-15 + syst_JES_EtaIntercalibration_Stat126: 5.47656523e-16 + syst_JES_EtaIntercalibration_Stat127: 2.01783919e-21 + syst_JES_EtaIntercalibration_Stat128: 3.93260966e-14 + syst_JES_EtaIntercalibration_Stat129: 1.12462057e-08 + syst_JES_EtaIntercalibration_Stat13: 1.32856483e-21 + syst_JES_EtaIntercalibration_Stat130: 6.89699689e-09 + syst_JES_EtaIntercalibration_Stat131: 4.49337614e-11 + syst_JES_EtaIntercalibration_Stat132: 1.23123304e-08 + syst_JES_EtaIntercalibration_Stat133: 3.78705218e-08 + syst_JES_EtaIntercalibration_Stat134: 7.21341001e-13 + syst_JES_EtaIntercalibration_Stat135: 4.60212725e-13 + syst_JES_EtaIntercalibration_Stat136: 9.50194928e-08 + syst_JES_EtaIntercalibration_Stat137: 1.01357598e-07 + syst_JES_EtaIntercalibration_Stat138: 4.58660081e-08 + syst_JES_EtaIntercalibration_Stat139: 3.09864092e-08 + syst_JES_EtaIntercalibration_Stat14: 1.30345668e-21 + syst_JES_EtaIntercalibration_Stat140: 1.30254248e-07 + syst_JES_EtaIntercalibration_Stat141: 1.02559958e-07 + syst_JES_EtaIntercalibration_Stat142: 8.41291568e-08 + syst_JES_EtaIntercalibration_Stat143: 5.15724081e-12 + syst_JES_EtaIntercalibration_Stat144: 1.59810708e-11 + syst_JES_EtaIntercalibration_Stat145: 3.09748230e-14 + syst_JES_EtaIntercalibration_Stat146: 2.07890072e-13 + syst_JES_EtaIntercalibration_Stat147: 1.15382647e-08 + syst_JES_EtaIntercalibration_Stat148: 6.89764674e-09 + syst_JES_EtaIntercalibration_Stat149: 4.14479758e-11 + syst_JES_EtaIntercalibration_Stat15: 5.29066439e-22 + syst_JES_EtaIntercalibration_Stat150: 1.23728551e-08 + syst_JES_EtaIntercalibration_Stat151: 1.23062279e-08 + syst_JES_EtaIntercalibration_Stat152: 2.28544340e-08 + syst_JES_EtaIntercalibration_Stat153: 2.64416558e-12 + syst_JES_EtaIntercalibration_Stat154: 2.72108857e-08 + syst_JES_EtaIntercalibration_Stat155: 1.01377477e-07 + syst_JES_EtaIntercalibration_Stat156: 1.74533013e-08 + syst_JES_EtaIntercalibration_Stat157: 1.58477239e-11 + syst_JES_EtaIntercalibration_Stat158: 3.10488416e-08 + syst_JES_EtaIntercalibration_Stat159: 1.03390501e-07 + syst_JES_EtaIntercalibration_Stat16: 4.81139044e-23 + syst_JES_EtaIntercalibration_Stat160: 9.35559519e-13 + syst_JES_EtaIntercalibration_Stat161: 2.34335973e-12 + syst_JES_EtaIntercalibration_Stat162: 1.09459859e-11 + syst_JES_EtaIntercalibration_Stat163: 1.36070046e-12 + syst_JES_EtaIntercalibration_Stat164: 4.12850447e-13 + syst_JES_EtaIntercalibration_Stat165: 1.02918663e-08 + syst_JES_EtaIntercalibration_Stat166: 1.09454056e-08 + syst_JES_EtaIntercalibration_Stat167: 2.44957943e-08 + syst_JES_EtaIntercalibration_Stat168: 4.75038785e-08 + syst_JES_EtaIntercalibration_Stat169: 2.63704734e-08 + syst_JES_EtaIntercalibration_Stat17: 4.92936799e-23 + syst_JES_EtaIntercalibration_Stat170: 1.22582445e-07 + syst_JES_EtaIntercalibration_Stat171: 4.52225970e-08 + syst_JES_EtaIntercalibration_Stat172: 5.68399084e-08 + syst_JES_EtaIntercalibration_Stat173: 7.99856008e-09 + syst_JES_EtaIntercalibration_Stat174: 1.49088611e-07 + syst_JES_EtaIntercalibration_Stat175: 2.35126009e-08 + syst_JES_EtaIntercalibration_Stat176: 1.73064506e-08 + syst_JES_EtaIntercalibration_Stat177: 2.05152480e-08 + syst_JES_EtaIntercalibration_Stat178: 1.01840252e-07 + syst_JES_EtaIntercalibration_Stat179: 5.61365487e-09 + syst_JES_EtaIntercalibration_Stat18: 5.21844805e-23 + syst_JES_EtaIntercalibration_Stat180: 2.12192996e-11 + syst_JES_EtaIntercalibration_Stat181: 3.83822459e-12 + syst_JES_EtaIntercalibration_Stat182: 2.31775473e-08 + syst_JES_EtaIntercalibration_Stat183: 8.15795930e-08 + syst_JES_EtaIntercalibration_Stat184: 2.53788542e-08 + syst_JES_EtaIntercalibration_Stat185: 4.06166243e-07 + syst_JES_EtaIntercalibration_Stat186: 4.16448997e-07 + syst_JES_EtaIntercalibration_Stat187: 5.33674142e-07 + syst_JES_EtaIntercalibration_Stat188: 4.35807420e-07 + syst_JES_EtaIntercalibration_Stat189: 2.77707233e-07 + syst_JES_EtaIntercalibration_Stat19: 2.43959402e-21 + syst_JES_EtaIntercalibration_Stat190: 2.32617083e-07 + syst_JES_EtaIntercalibration_Stat191: 7.55329253e-07 + syst_JES_EtaIntercalibration_Stat192: 6.56244291e-07 + syst_JES_EtaIntercalibration_Stat193: 4.35136278e-07 + syst_JES_EtaIntercalibration_Stat194: 1.24447792e-07 + syst_JES_EtaIntercalibration_Stat195: 1.35190261e-07 + syst_JES_EtaIntercalibration_Stat196: 9.24698960e-08 + syst_JES_EtaIntercalibration_Stat197: 9.44244984e-09 + syst_JES_EtaIntercalibration_Stat198: 1.52279789e-07 + syst_JES_EtaIntercalibration_Stat199: 4.48154724e-07 + syst_JES_EtaIntercalibration_Stat2: 2.38165111e-22 + syst_JES_EtaIntercalibration_Stat20: 5.21844805e-23 + syst_JES_EtaIntercalibration_Stat200: 5.65243364e-07 + syst_JES_EtaIntercalibration_Stat201: 7.78390994e-07 + syst_JES_EtaIntercalibration_Stat202: 1.36519814e-06 + syst_JES_EtaIntercalibration_Stat203: 8.38098352e-07 + syst_JES_EtaIntercalibration_Stat204: 6.65898042e-07 + syst_JES_EtaIntercalibration_Stat205: 6.26601746e-07 + syst_JES_EtaIntercalibration_Stat206: 1.01692777e-06 + syst_JES_EtaIntercalibration_Stat207: 9.60937161e-07 + syst_JES_EtaIntercalibration_Stat208: 1.14183618e-06 + syst_JES_EtaIntercalibration_Stat209: 3.59336291e-07 + syst_JES_EtaIntercalibration_Stat21: 5.21844805e-23 + syst_JES_EtaIntercalibration_Stat210: 2.21490663e-07 + syst_JES_EtaIntercalibration_Stat211: 3.09006456e-07 + syst_JES_EtaIntercalibration_Stat212: 4.37076042e-07 + syst_JES_EtaIntercalibration_Stat213: 2.63782088e-07 + syst_JES_EtaIntercalibration_Stat214: 7.70746236e-07 + syst_JES_EtaIntercalibration_Stat215: 1.51188620e-06 + syst_JES_EtaIntercalibration_Stat216: 1.48296172e-06 + syst_JES_EtaIntercalibration_Stat217: 6.23566089e-07 + syst_JES_EtaIntercalibration_Stat218: 8.82637423e-07 + syst_JES_EtaIntercalibration_Stat219: 1.10889236e-06 + syst_JES_EtaIntercalibration_Stat22: 5.21844805e-23 + syst_JES_EtaIntercalibration_Stat220: 1.28083727e-06 + syst_JES_EtaIntercalibration_Stat221: 6.09985416e-07 + syst_JES_EtaIntercalibration_Stat222: 4.13356604e-07 + syst_JES_EtaIntercalibration_Stat223: 2.92780154e-07 + syst_JES_EtaIntercalibration_Stat224: 8.95259996e-07 + syst_JES_EtaIntercalibration_Stat225: 1.76270871e-06 + syst_JES_EtaIntercalibration_Stat226: 2.34442445e-06 + syst_JES_EtaIntercalibration_Stat227: 3.94529121e-06 + syst_JES_EtaIntercalibration_Stat228: 2.87880301e-06 + syst_JES_EtaIntercalibration_Stat229: 2.40862715e-06 + syst_JES_EtaIntercalibration_Stat23: 4.62369220e-21 + syst_JES_EtaIntercalibration_Stat230: 1.97646673e-06 + syst_JES_EtaIntercalibration_Stat231: 4.40074846e-06 + syst_JES_EtaIntercalibration_Stat232: 4.53003121e-06 + syst_JES_EtaIntercalibration_Stat233: 2.48648401e-06 + syst_JES_EtaIntercalibration_Stat234: 1.46533921e-06 + syst_JES_EtaIntercalibration_Stat235: 5.37455366e-07 + syst_JES_EtaIntercalibration_Stat236: 2.64889680e-07 + syst_JES_EtaIntercalibration_Stat237: 3.03623793e-07 + syst_JES_EtaIntercalibration_Stat238: 6.92420234e-07 + syst_JES_EtaIntercalibration_Stat239: 5.01703369e-07 + syst_JES_EtaIntercalibration_Stat24: 4.05142725e-20 + syst_JES_EtaIntercalibration_Stat240: 2.26762580e-07 + syst_JES_EtaIntercalibration_Stat241: 6.04858006e-08 + syst_JES_EtaIntercalibration_Stat242: 7.63601166e-07 + syst_JES_EtaIntercalibration_Stat243: 5.33636309e-07 + syst_JES_EtaIntercalibration_Stat244: 4.01749186e-07 + syst_JES_EtaIntercalibration_Stat245: 3.76773709e-07 + syst_JES_EtaIntercalibration_Stat25: 4.15735389e-20 + syst_JES_EtaIntercalibration_Stat26: 6.50244539e-22 + syst_JES_EtaIntercalibration_Stat27: 1.86251716e-20 + syst_JES_EtaIntercalibration_Stat28: 6.84835248e-21 + syst_JES_EtaIntercalibration_Stat29: 4.64150439e-20 + syst_JES_EtaIntercalibration_Stat3: 4.86059019e-22 + syst_JES_EtaIntercalibration_Stat30: 3.71866746e-20 + syst_JES_EtaIntercalibration_Stat31: 1.86455882e-14 + syst_JES_EtaIntercalibration_Stat32: 1.87494733e-14 + syst_JES_EtaIntercalibration_Stat33: 2.28293279e-20 + syst_JES_EtaIntercalibration_Stat34: 3.72385111e-19 + syst_JES_EtaIntercalibration_Stat35: 1.66017070e-08 + syst_JES_EtaIntercalibration_Stat36: 2.81792677e-19 + syst_JES_EtaIntercalibration_Stat37: 1.04784506e-18 + syst_JES_EtaIntercalibration_Stat38: 1.40296378e-19 + syst_JES_EtaIntercalibration_Stat39: 1.45752075e-19 + syst_JES_EtaIntercalibration_Stat4: 2.77297507e-22 + syst_JES_EtaIntercalibration_Stat40: 9.21030830e-21 + syst_JES_EtaIntercalibration_Stat41: 4.98043838e-22 + syst_JES_EtaIntercalibration_Stat42: 1.25746889e-21 + syst_JES_EtaIntercalibration_Stat43: 5.21844805e-23 + syst_JES_EtaIntercalibration_Stat44: 5.21844805e-23 + syst_JES_EtaIntercalibration_Stat45: 2.38165111e-22 + syst_JES_EtaIntercalibration_Stat46: 1.01110942e-20 + syst_JES_EtaIntercalibration_Stat47: 5.14778040e-19 + syst_JES_EtaIntercalibration_Stat48: 2.98382185e-20 + syst_JES_EtaIntercalibration_Stat49: 4.37764129e-20 + syst_JES_EtaIntercalibration_Stat5: 3.19563374e-23 + syst_JES_EtaIntercalibration_Stat50: 1.86455372e-14 + syst_JES_EtaIntercalibration_Stat51: 1.75550400e-19 + syst_JES_EtaIntercalibration_Stat52: 6.05676586e-20 + syst_JES_EtaIntercalibration_Stat53: 1.86470011e-14 + syst_JES_EtaIntercalibration_Stat54: 1.86369223e-14 + syst_JES_EtaIntercalibration_Stat55: 6.17178684e-21 + syst_JES_EtaIntercalibration_Stat56: 2.75320518e-19 + syst_JES_EtaIntercalibration_Stat57: 1.06400085e-13 + syst_JES_EtaIntercalibration_Stat58: 1.03514732e-18 + syst_JES_EtaIntercalibration_Stat59: 5.59229671e-19 + syst_JES_EtaIntercalibration_Stat6: 3.29736424e-22 + syst_JES_EtaIntercalibration_Stat60: 4.17454797e-21 + syst_JES_EtaIntercalibration_Stat61: 1.36829018e-19 + syst_JES_EtaIntercalibration_Stat62: 3.30671964e-20 + syst_JES_EtaIntercalibration_Stat63: 9.40011886e-21 + syst_JES_EtaIntercalibration_Stat64: 3.10223935e-22 + syst_JES_EtaIntercalibration_Stat65: 5.21844805e-23 + syst_JES_EtaIntercalibration_Stat66: 5.21844805e-23 + syst_JES_EtaIntercalibration_Stat67: 5.95311068e-20 + syst_JES_EtaIntercalibration_Stat68: 2.74843316e-18 + syst_JES_EtaIntercalibration_Stat69: 2.46717782e-18 + syst_JES_EtaIntercalibration_Stat7: 5.55264971e-22 + syst_JES_EtaIntercalibration_Stat70: 8.41982678e-19 + syst_JES_EtaIntercalibration_Stat71: 4.86367697e-19 + syst_JES_EtaIntercalibration_Stat72: 1.86455117e-14 + syst_JES_EtaIntercalibration_Stat73: 1.35529633e-12 + syst_JES_EtaIntercalibration_Stat74: 1.37351756e-12 + syst_JES_EtaIntercalibration_Stat75: 1.40209513e-08 + syst_JES_EtaIntercalibration_Stat76: 1.85676611e-14 + syst_JES_EtaIntercalibration_Stat77: 6.31173588e-19 + syst_JES_EtaIntercalibration_Stat78: 1.46011883e-08 + syst_JES_EtaIntercalibration_Stat79: 1.52680279e-08 + syst_JES_EtaIntercalibration_Stat8: 7.68309213e-21 + syst_JES_EtaIntercalibration_Stat80: 1.06479532e-13 + syst_JES_EtaIntercalibration_Stat81: 1.05606641e-12 + syst_JES_EtaIntercalibration_Stat82: 1.24620988e-12 + syst_JES_EtaIntercalibration_Stat83: 8.69626345e-20 + syst_JES_EtaIntercalibration_Stat84: 1.90295455e-19 + syst_JES_EtaIntercalibration_Stat85: 5.14744361e-20 + syst_JES_EtaIntercalibration_Stat86: 4.42585992e-22 + syst_JES_EtaIntercalibration_Stat87: 3.19563374e-23 + syst_JES_EtaIntercalibration_Stat88: 4.04358283e-20 + syst_JES_EtaIntercalibration_Stat89: 1.94910748e-17 + syst_JES_EtaIntercalibration_Stat9: 7.14448845e-21 + syst_JES_EtaIntercalibration_Stat90: 1.92698538e-17 + syst_JES_EtaIntercalibration_Stat91: 9.01635464e-19 + syst_JES_EtaIntercalibration_Stat92: 2.24385977e-18 + syst_JES_EtaIntercalibration_Stat93: 1.86446640e-14 + syst_JES_EtaIntercalibration_Stat94: 1.26090808e-12 + syst_JES_EtaIntercalibration_Stat95: 1.23465710e-12 + syst_JES_EtaIntercalibration_Stat96: 1.47224319e-08 + syst_JES_EtaIntercalibration_Stat97: 2.04115376e-17 + syst_JES_EtaIntercalibration_Stat98: 3.21226676e-18 + syst_JES_EtaIntercalibration_Stat99: 2.75511742e-08 + syst_JES_EtaIntercalibration_TotalStat_MJB: 9.60633822e-05 + syst_JES_Flavour_Comp: 2.43558920e-04 + syst_JES_Flavour_Response: 1.44574364e-05 + syst_JES_Gjet_Generator: 2.85961746e-04 + syst_JES_Gjet_OOC: 2.37961483e-04 + syst_JES_Gjet_Purity: 3.98626369e-05 + syst_JES_Gjet_Stat1: 1.02528714e-06 + syst_JES_Gjet_Stat10: 4.82707435e-06 + syst_JES_Gjet_Stat11: 5.11347299e-06 + syst_JES_Gjet_Stat12: 1.27260706e-05 + syst_JES_Gjet_Stat13: 4.57904280e-05 + syst_JES_Gjet_Stat14: 1.25363201e-04 + syst_JES_Gjet_Stat15: 1.80663299e-04 + syst_JES_Gjet_Stat2: 1.01242391e-06 + syst_JES_Gjet_Stat3: 1.18175148e-06 + syst_JES_Gjet_Stat4: 1.04743212e-06 + syst_JES_Gjet_Stat5: 1.14460198e-06 + syst_JES_Gjet_Stat6: 3.02942123e-06 + syst_JES_Gjet_Stat7: 2.55484598e-06 + syst_JES_Gjet_Stat8: 1.54329686e-06 + syst_JES_Gjet_Stat9: 2.28696721e-06 + syst_JES_Gjet_Veto: 2.41355687e-04 + syst_JES_Gjet_dPhi: 2.37454585e-05 + syst_JES_LArESZee: 4.33899375e-04 + syst_JES_LArEsmear: 3.66314001e-05 + syst_JES_LAr_JVT: 4.60864110e-05 + syst_JES_MJB_Alpha: 3.95550129e-06 + syst_JES_MJB_Asym: 5.75397767e-05 + syst_JES_MJB_Beta: 2.80111567e-06 + syst_JES_MJB_Fragmentation: 2.39604174e-05 + syst_JES_MJB_Stat1: 4.58743314e-09 + syst_JES_MJB_Stat10: 3.23474957e-06 + syst_JES_MJB_Stat11: 4.79925119e-06 + syst_JES_MJB_Stat12: 7.22936475e-06 + syst_JES_MJB_Stat13: 9.00526973e-06 + syst_JES_MJB_Stat14: 8.25718796e-06 + syst_JES_MJB_Stat15: 1.31641755e-05 + syst_JES_MJB_Stat16: 3.29023555e-06 + syst_JES_MJB_Stat2: 4.44871119e-07 + syst_JES_MJB_Stat3: 7.88008464e-07 + syst_JES_MJB_Stat4: 9.67712907e-07 + syst_JES_MJB_Stat5: 4.98152166e-07 + syst_JES_MJB_Stat6: 7.05744437e-07 + syst_JES_MJB_Stat7: 1.12831492e-06 + syst_JES_MJB_Stat8: 2.34047447e-06 + syst_JES_MJB_Stat9: 2.05871161e-06 + syst_JES_MJB_Threshold: 3.73768789e-05 + syst_JES_Pileup_MuOffset: 5.90101695e-05 + syst_JES_Pileup_NPVOffset: 6.00053037e-05 + syst_JES_Pileup_Pt_term: 3.47500259e-05 + syst_JES_Pileup_Rho_topology: 7.65130113e-05 + syst_JES_PunchThrough_MC15: 7.98401415e-05 + syst_JES_SingleParticle_HighPt: 7.05951236e-08 + syst_JES_Zjet_MC: 1.09365217e-04 + syst_JES_Zjet_MuScale: 8.66857340e-06 + syst_JES_Zjet_MuSmearID: 1.87277121e-06 + syst_JES_Zjet_MuSmearMS: 2.83033956e-05 + syst_JES_Zjet_OOC: 6.65253160e-05 + syst_JES_Zjet_Stat1: 5.89328641e-06 + syst_JES_Zjet_Stat10: 5.12803676e-06 + syst_JES_Zjet_Stat11: 7.45405090e-06 + syst_JES_Zjet_Stat12: 1.75800228e-05 + syst_JES_Zjet_Stat13: 2.87038861e-05 + syst_JES_Zjet_Stat2: 1.82405731e-07 + syst_JES_Zjet_Stat3: 3.63723064e-06 + syst_JES_Zjet_Stat4: 2.96737561e-06 + syst_JES_Zjet_Stat5: 3.05187303e-06 + syst_JES_Zjet_Stat6: 2.49962612e-06 + syst_JES_Zjet_Stat7: 2.99190855e-06 + syst_JES_Zjet_Stat8: 2.82264109e-06 + syst_JES_Zjet_Stat9: 2.85043926e-06 + syst_JES_Zjet_Veto: 1.28782364e-05 + syst_JES_Zjet_dPhi: 1.21091675e-05 syst_PRW: 0.0 syst_Unfolding_bias: 0.0 - syst_cleaning: 0.00011590017978847142 - syst_lumi: 0.0002242 -- stat: 0.00011796 - syst_JER_CROSS_CALIB_FORWARD: 1.537e-18 - syst_JER_NOISE_FORWARD: 4.807e-16 - syst_JER_NP0: 9.823792584842171e-06 - syst_JER_NP1: 1.898681318705169e-06 - syst_JER_NP2: 5.586499530117226e-06 - syst_JER_NP3: 6.849684427037496e-07 - syst_JER_NP4: 6.740338938065355e-07 - syst_JER_NP5: 1.2468802909662178e-06 - syst_JER_NP6: 9.584374105803675e-07 - syst_JER_NP7: 7.756003223310314e-36 - syst_JER_NP8: 1.465076107238119e-06 - syst_JES_EtaIntercalibration_Modelling: 0.00020329084460447304 - syst_JES_EtaIntercalibration_NonClosure: 1.142128854376773e-07 - syst_JES_EtaIntercalibration_Stat0: 2.827012911183817e-23 - syst_JES_EtaIntercalibration_Stat1: 6.694046664761158e-23 - syst_JES_EtaIntercalibration_Stat10: 3.7479106179310095e-23 - syst_JES_EtaIntercalibration_Stat100: 2.66909029447465e-08 - syst_JES_EtaIntercalibration_Stat101: 6.21099132083599e-18 - syst_JES_EtaIntercalibration_Stat102: 9.257367669272027e-14 - syst_JES_EtaIntercalibration_Stat103: 9.251672747920653e-14 - syst_JES_EtaIntercalibration_Stat104: 2.2732128494050003e-19 - syst_JES_EtaIntercalibration_Stat105: 3.520253594203122e-17 - syst_JES_EtaIntercalibration_Stat106: 2.2117735010789417e-18 - syst_JES_EtaIntercalibration_Stat107: 5.647509960150579e-23 - syst_JES_EtaIntercalibration_Stat108: 1.2462744251066858e-18 - syst_JES_EtaIntercalibration_Stat109: 1.3144083932336251e-15 - syst_JES_EtaIntercalibration_Stat11: 1.156054855964889e-22 - syst_JES_EtaIntercalibration_Stat110: 2.246856819397934e-15 - syst_JES_EtaIntercalibration_Stat111: 2.404661244144536e-12 - syst_JES_EtaIntercalibration_Stat112: 2.4089500301992047e-12 - syst_JES_EtaIntercalibration_Stat113: 1.271235684406195e-08 - syst_JES_EtaIntercalibration_Stat114: 3.8321660972757626e-09 - syst_JES_EtaIntercalibration_Stat115: 6.4268101678807564e-09 - syst_JES_EtaIntercalibration_Stat116: 8.191230493643796e-09 - syst_JES_EtaIntercalibration_Stat117: 1.3423780838497028e-16 - syst_JES_EtaIntercalibration_Stat118: 2.005913756108921e-12 - syst_JES_EtaIntercalibration_Stat119: 6.245983912480322e-09 - syst_JES_EtaIntercalibration_Stat12: 4.7930544280239505e-21 - syst_JES_EtaIntercalibration_Stat120: 6.994748959040631e-09 - syst_JES_EtaIntercalibration_Stat121: 5.324259214904924e-17 - syst_JES_EtaIntercalibration_Stat122: 1.6393856424953214e-12 - syst_JES_EtaIntercalibration_Stat123: 2.6963409929013063e-13 - syst_JES_EtaIntercalibration_Stat124: 1.1631186289777153e-12 - syst_JES_EtaIntercalibration_Stat125: 2.1870205760348941e-16 - syst_JES_EtaIntercalibration_Stat126: 4.95763297854934e-17 - syst_JES_EtaIntercalibration_Stat127: 3.8148419036704526e-22 - syst_JES_EtaIntercalibration_Stat128: 2.9287848589474783e-15 - syst_JES_EtaIntercalibration_Stat129: 8.1059975828346e-10 - syst_JES_EtaIntercalibration_Stat13: 2.2302512207148324e-22 - syst_JES_EtaIntercalibration_Stat130: 1.2003093552076276e-09 - syst_JES_EtaIntercalibration_Stat131: 4.77319850736118e-12 - syst_JES_EtaIntercalibration_Stat132: 6.201482977032086e-09 - syst_JES_EtaIntercalibration_Stat133: 5.878479225105758e-09 - syst_JES_EtaIntercalibration_Stat134: 5.862313891928681e-14 - syst_JES_EtaIntercalibration_Stat135: 3.355047205077747e-14 - syst_JES_EtaIntercalibration_Stat136: 3.794848933752172e-08 - syst_JES_EtaIntercalibration_Stat137: 3.1338954621205856e-08 - syst_JES_EtaIntercalibration_Stat138: 2.5373795045282444e-08 - syst_JES_EtaIntercalibration_Stat139: 1.5718362679391834e-08 - syst_JES_EtaIntercalibration_Stat14: 2.177568760682427e-22 - syst_JES_EtaIntercalibration_Stat140: 4.2990712334177485e-08 - syst_JES_EtaIntercalibration_Stat141: 2.5323987107088805e-08 - syst_JES_EtaIntercalibration_Stat142: 1.974027539543205e-08 - syst_JES_EtaIntercalibration_Stat143: 3.821042364329398e-13 - syst_JES_EtaIntercalibration_Stat144: 1.2831069728105293e-12 - syst_JES_EtaIntercalibration_Stat145: 2.3324540002055775e-15 - syst_JES_EtaIntercalibration_Stat146: 1.501212532421709e-14 - syst_JES_EtaIntercalibration_Stat147: 8.352099837750666e-10 - syst_JES_EtaIntercalibration_Stat148: 1.2002934860389228e-09 - syst_JES_EtaIntercalibration_Stat149: 3.669349635834667e-12 - syst_JES_EtaIntercalibration_Stat15: 6.095425908006758e-23 - syst_JES_EtaIntercalibration_Stat150: 6.230054316487999e-09 - syst_JES_EtaIntercalibration_Stat151: 6.234517464679488e-09 - syst_JES_EtaIntercalibration_Stat152: 1.1603876244954103e-08 - syst_JES_EtaIntercalibration_Stat153: 1.9589631478174876e-13 - syst_JES_EtaIntercalibration_Stat154: 6.1400385177944936e-09 - syst_JES_EtaIntercalibration_Stat155: 3.135523491779323e-08 - syst_JES_EtaIntercalibration_Stat156: 1.0857886385019877e-08 - syst_JES_EtaIntercalibration_Stat157: 1.157533812681081e-12 - syst_JES_EtaIntercalibration_Stat158: 1.58658837998392e-08 - syst_JES_EtaIntercalibration_Stat159: 2.4481900007965066e-08 - syst_JES_EtaIntercalibration_Stat16: 1.9980941594429426e-23 - syst_JES_EtaIntercalibration_Stat160: 6.798187660693106e-14 - syst_JES_EtaIntercalibration_Stat161: 1.6977425246485403e-13 - syst_JES_EtaIntercalibration_Stat162: 9.055281421910642e-13 - syst_JES_EtaIntercalibration_Stat163: 1.0156154256941946e-13 - syst_JES_EtaIntercalibration_Stat164: 2.8888079665322166e-14 - syst_JES_EtaIntercalibration_Stat165: 6.912195359788018e-10 - syst_JES_EtaIntercalibration_Stat166: 7.675384016041934e-10 - syst_JES_EtaIntercalibration_Stat167: 2.66192552863524e-08 - syst_JES_EtaIntercalibration_Stat168: 1.8622065621192514e-08 - syst_JES_EtaIntercalibration_Stat169: 2.4957839577950256e-10 - syst_JES_EtaIntercalibration_Stat17: 2.793174896063617e-23 - syst_JES_EtaIntercalibration_Stat170: 6.009004379391954e-08 - syst_JES_EtaIntercalibration_Stat171: 2.2209969535098422e-08 - syst_JES_EtaIntercalibration_Stat172: 2.9240911613140586e-08 - syst_JES_EtaIntercalibration_Stat173: 1.047717928724137e-08 - syst_JES_EtaIntercalibration_Stat174: 4.029167833148056e-08 - syst_JES_EtaIntercalibration_Stat175: 1.4480624917454358e-08 - syst_JES_EtaIntercalibration_Stat176: 1.3775636346463271e-08 - syst_JES_EtaIntercalibration_Stat177: 1.0592473589771182e-08 - syst_JES_EtaIntercalibration_Stat178: 2.0843506632762155e-08 - syst_JES_EtaIntercalibration_Stat179: 6.975955592605218e-10 - syst_JES_EtaIntercalibration_Stat18: 2.827012911183817e-23 - syst_JES_EtaIntercalibration_Stat180: 1.6992422634809906e-12 - syst_JES_EtaIntercalibration_Stat181: 2.8466255019142575e-13 - syst_JES_EtaIntercalibration_Stat182: 8.450797945756367e-09 - syst_JES_EtaIntercalibration_Stat183: 8.66198608865199e-09 - syst_JES_EtaIntercalibration_Stat184: 1.9241986143587153e-08 - syst_JES_EtaIntercalibration_Stat185: 1.900153791144285e-07 - syst_JES_EtaIntercalibration_Stat186: 1.5948617518455948e-07 - syst_JES_EtaIntercalibration_Stat187: 2.8404707356352046e-07 - syst_JES_EtaIntercalibration_Stat188: 1.9257601116182668e-07 - syst_JES_EtaIntercalibration_Stat189: 1.5383572634469539e-07 - syst_JES_EtaIntercalibration_Stat19: 4.342411311702289e-22 - syst_JES_EtaIntercalibration_Stat190: 1.5742768522404182e-07 - syst_JES_EtaIntercalibration_Stat191: 2.3579351136110597e-07 - syst_JES_EtaIntercalibration_Stat192: 2.9597520166392315e-07 - syst_JES_EtaIntercalibration_Stat193: 2.0375541097109545e-07 - syst_JES_EtaIntercalibration_Stat194: 6.058127652643245e-08 - syst_JES_EtaIntercalibration_Stat195: 4.3707666375591365e-08 - syst_JES_EtaIntercalibration_Stat196: 5.63425337622475e-09 - syst_JES_EtaIntercalibration_Stat197: 1.1034560344439417e-09 - syst_JES_EtaIntercalibration_Stat198: 2.1237214977487045e-08 - syst_JES_EtaIntercalibration_Stat199: 1.402782246109495e-07 - syst_JES_EtaIntercalibration_Stat2: 4.3425377373144384e-23 - syst_JES_EtaIntercalibration_Stat20: 2.827012911183817e-23 - syst_JES_EtaIntercalibration_Stat200: 1.9850276446437716e-07 - syst_JES_EtaIntercalibration_Stat201: 4.1119857429227543e-07 - syst_JES_EtaIntercalibration_Stat202: 8.795795529683487e-07 - syst_JES_EtaIntercalibration_Stat203: 4.09459394903817e-07 - syst_JES_EtaIntercalibration_Stat204: 3.346918600743078e-07 - syst_JES_EtaIntercalibration_Stat205: 3.8413208665770164e-07 - syst_JES_EtaIntercalibration_Stat206: 5.605122478590454e-07 - syst_JES_EtaIntercalibration_Stat207: 5.682210023397587e-07 - syst_JES_EtaIntercalibration_Stat208: 5.373913155932091e-07 - syst_JES_EtaIntercalibration_Stat209: 1.5011999891753263e-07 - syst_JES_EtaIntercalibration_Stat21: 2.827012911183817e-23 - syst_JES_EtaIntercalibration_Stat210: 5.4635536741209016e-08 - syst_JES_EtaIntercalibration_Stat211: 6.601930986461461e-08 - syst_JES_EtaIntercalibration_Stat212: 1.1713612028319873e-07 - syst_JES_EtaIntercalibration_Stat213: 1.7953480860267738e-07 - syst_JES_EtaIntercalibration_Stat214: 4.0725494472136247e-07 - syst_JES_EtaIntercalibration_Stat215: 9.588771245576777e-07 - syst_JES_EtaIntercalibration_Stat216: 6.758888666045625e-07 - syst_JES_EtaIntercalibration_Stat217: 3.1552078235830996e-07 - syst_JES_EtaIntercalibration_Stat218: 4.818104036599874e-07 - syst_JES_EtaIntercalibration_Stat219: 6.023597264093941e-07 - syst_JES_EtaIntercalibration_Stat22: 2.827012911183817e-23 - syst_JES_EtaIntercalibration_Stat220: 6.361510748242118e-07 - syst_JES_EtaIntercalibration_Stat221: 3.079456892050934e-07 - syst_JES_EtaIntercalibration_Stat222: 1.6690695679629414e-07 - syst_JES_EtaIntercalibration_Stat223: 7.518275932685631e-08 - syst_JES_EtaIntercalibration_Stat224: 3.3827976687203745e-07 - syst_JES_EtaIntercalibration_Stat225: 7.647688408924621e-07 - syst_JES_EtaIntercalibration_Stat226: 1.4191660473672558e-06 - syst_JES_EtaIntercalibration_Stat227: 2.2940416299622816e-06 - syst_JES_EtaIntercalibration_Stat228: 1.4815788470412234e-06 - syst_JES_EtaIntercalibration_Stat229: 1.277425508591401e-06 - syst_JES_EtaIntercalibration_Stat23: 7.285295124404707e-22 - syst_JES_EtaIntercalibration_Stat230: 1.023407025576823e-06 - syst_JES_EtaIntercalibration_Stat231: 2.3347920678295957e-06 - syst_JES_EtaIntercalibration_Stat232: 2.4413291461824643e-06 - syst_JES_EtaIntercalibration_Stat233: 1.328184357497106e-06 - syst_JES_EtaIntercalibration_Stat234: 7.189192444217917e-07 - syst_JES_EtaIntercalibration_Stat235: 2.4257371560002126e-07 - syst_JES_EtaIntercalibration_Stat236: 9.430846320452901e-08 - syst_JES_EtaIntercalibration_Stat237: 1.9984201259995358e-07 - syst_JES_EtaIntercalibration_Stat238: 3.5489058525128553e-07 - syst_JES_EtaIntercalibration_Stat239: 2.5533750214177315e-07 - syst_JES_EtaIntercalibration_Stat24: 5.260857035692948e-21 - syst_JES_EtaIntercalibration_Stat240: 1.4553224273335447e-07 - syst_JES_EtaIntercalibration_Stat241: 8.954806237434732e-08 - syst_JES_EtaIntercalibration_Stat242: 1.7420225802210488e-07 - syst_JES_EtaIntercalibration_Stat243: 2.4483776261026405e-07 - syst_JES_EtaIntercalibration_Stat244: 1.94769113422953e-07 - syst_JES_EtaIntercalibration_Stat245: 1.34769753122687e-07 - syst_JES_EtaIntercalibration_Stat25: 5.427839322188895e-21 - syst_JES_EtaIntercalibration_Stat26: 8.301878266392491e-23 - syst_JES_EtaIntercalibration_Stat27: 1.7169589300562784e-21 - syst_JES_EtaIntercalibration_Stat28: 9.886319676704775e-22 - syst_JES_EtaIntercalibration_Stat29: 5.7530841294039846e-21 - syst_JES_EtaIntercalibration_Stat3: 8.250581479507974e-23 - syst_JES_EtaIntercalibration_Stat30: 4.8428357395228675e-21 - syst_JES_EtaIntercalibration_Stat31: 1.4350118538262674e-15 - syst_JES_EtaIntercalibration_Stat32: 1.4445332695246175e-15 - syst_JES_EtaIntercalibration_Stat33: 4.2031180315927366e-21 - syst_JES_EtaIntercalibration_Stat34: 4.7401590959244185e-20 - syst_JES_EtaIntercalibration_Stat35: 8.41949897559198e-09 - syst_JES_EtaIntercalibration_Stat36: 2.4574350591622965e-20 - syst_JES_EtaIntercalibration_Stat37: 1.3663470280059712e-19 - syst_JES_EtaIntercalibration_Stat38: 1.738145779271693e-20 - syst_JES_EtaIntercalibration_Stat39: 1.800466814467848e-20 - syst_JES_EtaIntercalibration_Stat4: 6.694046664761158e-23 - syst_JES_EtaIntercalibration_Stat40: 1.3235256353769653e-21 - syst_JES_EtaIntercalibration_Stat41: 1.0591927905249357e-22 - syst_JES_EtaIntercalibration_Stat42: 2.163331458653528e-22 - syst_JES_EtaIntercalibration_Stat43: 2.827012911183817e-23 - syst_JES_EtaIntercalibration_Stat44: 2.827012911183817e-23 - syst_JES_EtaIntercalibration_Stat45: 4.3425377373144384e-23 - syst_JES_EtaIntercalibration_Stat46: 2.2693719571722923e-21 - syst_JES_EtaIntercalibration_Stat47: 5.889572890286697e-20 - syst_JES_EtaIntercalibration_Stat48: 3.076212152550601e-21 - syst_JES_EtaIntercalibration_Stat49: 4.32795659289693e-21 - syst_JES_EtaIntercalibration_Stat5: 1.731184782165093e-23 - syst_JES_EtaIntercalibration_Stat50: 1.4350051408099068e-15 - syst_JES_EtaIntercalibration_Stat51: 2.033994166658302e-20 - syst_JES_EtaIntercalibration_Stat52: 7.920633355357385e-21 - syst_JES_EtaIntercalibration_Stat53: 1.4351544701865256e-15 - syst_JES_EtaIntercalibration_Stat54: 1.4350112129408908e-15 - syst_JES_EtaIntercalibration_Stat55: 2.7573441624142605e-21 - syst_JES_EtaIntercalibration_Stat56: 2.829709846380013e-20 - syst_JES_EtaIntercalibration_Stat57: 7.833222351885998e-15 - syst_JES_EtaIntercalibration_Stat58: 1.1646789117606619e-19 - syst_JES_EtaIntercalibration_Stat59: 6.352706023111333e-20 - syst_JES_EtaIntercalibration_Stat6: 6.421787134435398e-23 - syst_JES_EtaIntercalibration_Stat60: 7.895333558501502e-22 - syst_JES_EtaIntercalibration_Stat61: 1.723846641388671e-20 - syst_JES_EtaIntercalibration_Stat62: 4.926059344953124e-21 - syst_JES_EtaIntercalibration_Stat63: 1.2407842966446666e-21 - syst_JES_EtaIntercalibration_Stat64: 6.437770033171426e-23 - syst_JES_EtaIntercalibration_Stat65: 2.827012911183817e-23 - syst_JES_EtaIntercalibration_Stat66: 2.827012911183817e-23 - syst_JES_EtaIntercalibration_Stat67: 8.076842994016907e-21 - syst_JES_EtaIntercalibration_Stat68: 2.8498078299246775e-19 - syst_JES_EtaIntercalibration_Stat69: 2.466391215926622e-19 - syst_JES_EtaIntercalibration_Stat7: 8.549292646178395e-23 - syst_JES_EtaIntercalibration_Stat70: 9.438545120938925e-20 - syst_JES_EtaIntercalibration_Stat71: 5.566108582304158e-20 - syst_JES_EtaIntercalibration_Stat72: 1.435000414943956e-15 - syst_JES_EtaIntercalibration_Stat73: 1.0056156806653326e-13 - syst_JES_EtaIntercalibration_Stat74: 1.0189667210094922e-13 - syst_JES_EtaIntercalibration_Stat75: 5.765131112995373e-09 - syst_JES_EtaIntercalibration_Stat76: 1.4289510617067042e-15 - syst_JES_EtaIntercalibration_Stat77: 6.353786115380341e-20 - syst_JES_EtaIntercalibration_Stat78: 6.040527191402651e-09 - syst_JES_EtaIntercalibration_Stat79: 6.3557604382495476e-09 - syst_JES_EtaIntercalibration_Stat8: 1.1012201993697718e-21 - syst_JES_EtaIntercalibration_Stat80: 7.841146178338714e-15 - syst_JES_EtaIntercalibration_Stat81: 7.835611414374439e-14 - syst_JES_EtaIntercalibration_Stat82: 9.249145391705954e-14 - syst_JES_EtaIntercalibration_Stat83: 1.42530051831184e-20 - syst_JES_EtaIntercalibration_Stat84: 2.4481935723100003e-20 - syst_JES_EtaIntercalibration_Stat85: 6.00389548543277e-21 - syst_JES_EtaIntercalibration_Stat86: 5.943885850182522e-23 - syst_JES_EtaIntercalibration_Stat87: 1.731184782165093e-23 - syst_JES_EtaIntercalibration_Stat88: 5.184053680393366e-21 - syst_JES_EtaIntercalibration_Stat89: 1.799935494031661e-18 - syst_JES_EtaIntercalibration_Stat9: 9.937619615883876e-22 - syst_JES_EtaIntercalibration_Stat90: 1.7959068563820342e-18 - syst_JES_EtaIntercalibration_Stat91: 1.0431214730317846e-19 - syst_JES_EtaIntercalibration_Stat92: 2.154199198658286e-19 - syst_JES_EtaIntercalibration_Stat93: 1.4349060290827514e-15 - syst_JES_EtaIntercalibration_Stat94: 9.35474439629432e-14 - syst_JES_EtaIntercalibration_Stat95: 9.158898050939316e-14 - syst_JES_EtaIntercalibration_Stat96: 6.099416918833655e-09 - syst_JES_EtaIntercalibration_Stat97: 1.892277706891882e-18 - syst_JES_EtaIntercalibration_Stat98: 3.336966847303101e-19 - syst_JES_EtaIntercalibration_Stat99: 1.291926664907881e-08 - syst_JES_EtaIntercalibration_TotalStat_MJB: 5.404502266629185e-05 - syst_JES_Flavour_Comp: 0.00013187660700442669 - syst_JES_Flavour_Response: 1.4453436226378832e-05 - syst_JES_Gjet_Generator: 0.00015176905975856873 - syst_JES_Gjet_OOC: 0.00012629641829838248 - syst_JES_Gjet_Purity: 2.032474538585908e-05 - syst_JES_Gjet_Stat1: 5.165098450174982e-07 - syst_JES_Gjet_Stat10: 2.626122807486352e-06 - syst_JES_Gjet_Stat11: 2.5693845566594344e-06 - syst_JES_Gjet_Stat12: 6.1869448639857784e-06 - syst_JES_Gjet_Stat13: 2.484096767438821e-05 - syst_JES_Gjet_Stat14: 6.706001248881483e-05 - syst_JES_Gjet_Stat15: 0.00010620764755892111 - syst_JES_Gjet_Stat2: 5.273954375039663e-07 - syst_JES_Gjet_Stat3: 6.105399311265399e-07 - syst_JES_Gjet_Stat4: 8.961046702255267e-07 - syst_JES_Gjet_Stat5: 7.487246089183927e-07 - syst_JES_Gjet_Stat6: 1.8668655548806937e-06 - syst_JES_Gjet_Stat7: 1.4867482907338418e-06 - syst_JES_Gjet_Stat8: 7.513628068383475e-07 - syst_JES_Gjet_Stat9: 1.3597841997905401e-06 - syst_JES_Gjet_Veto: 0.00012972061777142443 - syst_JES_Gjet_dPhi: 1.2654396340797929e-05 - syst_JES_LArESZee: 0.00022998397226763433 - syst_JES_LArEsmear: 2.001511928518039e-05 - syst_JES_LAr_JVT: 2.523732751303117e-05 - syst_JES_MJB_Alpha: 2.715213435441126e-06 - syst_JES_MJB_Asym: 3.580002513965598e-05 - syst_JES_MJB_Beta: 1.7527877081951484e-06 - syst_JES_MJB_Fragmentation: 1.2974692163978302e-05 - syst_JES_MJB_Stat1: 4.828465617343464e-10 - syst_JES_MJB_Stat10: 1.5384063182397554e-06 - syst_JES_MJB_Stat11: 2.34010768982968e-06 - syst_JES_MJB_Stat12: 3.89130918168937e-06 - syst_JES_MJB_Stat13: 5.2960716337678065e-06 - syst_JES_MJB_Stat14: 6.08491912435983e-06 - syst_JES_MJB_Stat15: 9.416500238942279e-06 - syst_JES_MJB_Stat16: 2.0774566180789435e-06 - syst_JES_MJB_Stat2: 1.1581011068447349e-07 - syst_JES_MJB_Stat3: 2.7442222942028587e-07 - syst_JES_MJB_Stat4: 2.5713553857839253e-07 - syst_JES_MJB_Stat5: 1.2402254663971384e-07 - syst_JES_MJB_Stat6: 2.1398889036583183e-07 - syst_JES_MJB_Stat7: 4.3103174767063267e-07 - syst_JES_MJB_Stat8: 7.553828367126169e-07 - syst_JES_MJB_Stat9: 9.82134424353408e-07 - syst_JES_MJB_Threshold: 2.214562428562356e-05 - syst_JES_Pileup_MuOffset: 3.2680991417030176e-05 - syst_JES_Pileup_NPVOffset: 3.29451282437935e-05 - syst_JES_Pileup_Pt_term: 1.8310349532436566e-05 - syst_JES_Pileup_Rho_topology: 4.0236955361334184e-05 - syst_JES_PunchThrough_MC15: 4.9788486620904635e-05 - syst_JES_SingleParticle_HighPt: 4.2213216923139134e-08 - syst_JES_Zjet_MC: 5.7180782392338774e-05 - syst_JES_Zjet_MuScale: 4.137141132473003e-06 - syst_JES_Zjet_MuSmearID: 9.300578086871806e-07 - syst_JES_Zjet_MuSmearMS: 1.4679329003738557e-05 - syst_JES_Zjet_OOC: 3.568654753545095e-05 - syst_JES_Zjet_Stat1: 3.6043132494276907e-06 - syst_JES_Zjet_Stat10: 2.5977642310263646e-06 - syst_JES_Zjet_Stat11: 3.6166175841523525e-06 - syst_JES_Zjet_Stat12: 9.149280996340644e-06 - syst_JES_Zjet_Stat13: 1.4673200059973282e-05 - syst_JES_Zjet_Stat2: 8.364568901814366e-08 - syst_JES_Zjet_Stat3: 1.9347126401613238e-06 - syst_JES_Zjet_Stat4: 1.85913770334529e-06 - syst_JES_Zjet_Stat5: 1.817607424610716e-06 - syst_JES_Zjet_Stat6: 1.4379300226367067e-06 - syst_JES_Zjet_Stat7: 1.783946958292202e-06 - syst_JES_Zjet_Stat8: 1.6017929797573717e-06 - syst_JES_Zjet_Stat9: 1.515736443943999e-06 - syst_JES_Zjet_Veto: 6.9053285946434155e-06 - syst_JES_Zjet_dPhi: 6.5063787739417686e-06 + syst_cleaning: 1.15900180e-04 + syst_lumi: 2.24200000e-04 +- stat: 1.17960000e-04 + syst_JER_CROSS_CALIB_FORWARD: 1.53700000e-18 + syst_JER_NOISE_FORWARD: 4.80700000e-16 + syst_JER_NP0: 9.82379258e-06 + syst_JER_NP1: 1.89868132e-06 + syst_JER_NP2: 5.58649953e-06 + syst_JER_NP3: 6.84968443e-07 + syst_JER_NP4: 6.74033894e-07 + syst_JER_NP5: 1.24688029e-06 + syst_JER_NP6: 9.58437411e-07 + syst_JER_NP7: 7.75600322e-36 + syst_JER_NP8: 1.46507611e-06 + syst_JES_EtaIntercalibration_Modelling: 2.03290845e-04 + syst_JES_EtaIntercalibration_NonClosure: 1.14212885e-07 + syst_JES_EtaIntercalibration_Stat0: 2.82701291e-23 + syst_JES_EtaIntercalibration_Stat1: 6.69404666e-23 + syst_JES_EtaIntercalibration_Stat10: 3.74791062e-23 + syst_JES_EtaIntercalibration_Stat100: 2.66909029e-08 + syst_JES_EtaIntercalibration_Stat101: 6.21099132e-18 + syst_JES_EtaIntercalibration_Stat102: 9.25736767e-14 + syst_JES_EtaIntercalibration_Stat103: 9.25167275e-14 + syst_JES_EtaIntercalibration_Stat104: 2.27321285e-19 + syst_JES_EtaIntercalibration_Stat105: 3.52025359e-17 + syst_JES_EtaIntercalibration_Stat106: 2.21177350e-18 + syst_JES_EtaIntercalibration_Stat107: 5.64750996e-23 + syst_JES_EtaIntercalibration_Stat108: 1.24627443e-18 + syst_JES_EtaIntercalibration_Stat109: 1.31440839e-15 + syst_JES_EtaIntercalibration_Stat11: 1.15605486e-22 + syst_JES_EtaIntercalibration_Stat110: 2.24685682e-15 + syst_JES_EtaIntercalibration_Stat111: 2.40466124e-12 + syst_JES_EtaIntercalibration_Stat112: 2.40895003e-12 + syst_JES_EtaIntercalibration_Stat113: 1.27123568e-08 + syst_JES_EtaIntercalibration_Stat114: 3.83216610e-09 + syst_JES_EtaIntercalibration_Stat115: 6.42681017e-09 + syst_JES_EtaIntercalibration_Stat116: 8.19123049e-09 + syst_JES_EtaIntercalibration_Stat117: 1.34237808e-16 + syst_JES_EtaIntercalibration_Stat118: 2.00591376e-12 + syst_JES_EtaIntercalibration_Stat119: 6.24598391e-09 + syst_JES_EtaIntercalibration_Stat12: 4.79305443e-21 + syst_JES_EtaIntercalibration_Stat120: 6.99474896e-09 + syst_JES_EtaIntercalibration_Stat121: 5.32425921e-17 + syst_JES_EtaIntercalibration_Stat122: 1.63938564e-12 + syst_JES_EtaIntercalibration_Stat123: 2.69634099e-13 + syst_JES_EtaIntercalibration_Stat124: 1.16311863e-12 + syst_JES_EtaIntercalibration_Stat125: 2.18702058e-16 + syst_JES_EtaIntercalibration_Stat126: 4.95763298e-17 + syst_JES_EtaIntercalibration_Stat127: 3.81484190e-22 + syst_JES_EtaIntercalibration_Stat128: 2.92878486e-15 + syst_JES_EtaIntercalibration_Stat129: 8.10599758e-10 + syst_JES_EtaIntercalibration_Stat13: 2.23025122e-22 + syst_JES_EtaIntercalibration_Stat130: 1.20030936e-09 + syst_JES_EtaIntercalibration_Stat131: 4.77319851e-12 + syst_JES_EtaIntercalibration_Stat132: 6.20148298e-09 + syst_JES_EtaIntercalibration_Stat133: 5.87847923e-09 + syst_JES_EtaIntercalibration_Stat134: 5.86231389e-14 + syst_JES_EtaIntercalibration_Stat135: 3.35504721e-14 + syst_JES_EtaIntercalibration_Stat136: 3.79484893e-08 + syst_JES_EtaIntercalibration_Stat137: 3.13389546e-08 + syst_JES_EtaIntercalibration_Stat138: 2.53737950e-08 + syst_JES_EtaIntercalibration_Stat139: 1.57183627e-08 + syst_JES_EtaIntercalibration_Stat14: 2.17756876e-22 + syst_JES_EtaIntercalibration_Stat140: 4.29907123e-08 + syst_JES_EtaIntercalibration_Stat141: 2.53239871e-08 + syst_JES_EtaIntercalibration_Stat142: 1.97402754e-08 + syst_JES_EtaIntercalibration_Stat143: 3.82104236e-13 + syst_JES_EtaIntercalibration_Stat144: 1.28310697e-12 + syst_JES_EtaIntercalibration_Stat145: 2.33245400e-15 + syst_JES_EtaIntercalibration_Stat146: 1.50121253e-14 + syst_JES_EtaIntercalibration_Stat147: 8.35209984e-10 + syst_JES_EtaIntercalibration_Stat148: 1.20029349e-09 + syst_JES_EtaIntercalibration_Stat149: 3.66934964e-12 + syst_JES_EtaIntercalibration_Stat15: 6.09542591e-23 + syst_JES_EtaIntercalibration_Stat150: 6.23005432e-09 + syst_JES_EtaIntercalibration_Stat151: 6.23451746e-09 + syst_JES_EtaIntercalibration_Stat152: 1.16038762e-08 + syst_JES_EtaIntercalibration_Stat153: 1.95896315e-13 + syst_JES_EtaIntercalibration_Stat154: 6.14003852e-09 + syst_JES_EtaIntercalibration_Stat155: 3.13552349e-08 + syst_JES_EtaIntercalibration_Stat156: 1.08578864e-08 + syst_JES_EtaIntercalibration_Stat157: 1.15753381e-12 + syst_JES_EtaIntercalibration_Stat158: 1.58658838e-08 + syst_JES_EtaIntercalibration_Stat159: 2.44819000e-08 + syst_JES_EtaIntercalibration_Stat16: 1.99809416e-23 + syst_JES_EtaIntercalibration_Stat160: 6.79818766e-14 + syst_JES_EtaIntercalibration_Stat161: 1.69774252e-13 + syst_JES_EtaIntercalibration_Stat162: 9.05528142e-13 + syst_JES_EtaIntercalibration_Stat163: 1.01561543e-13 + syst_JES_EtaIntercalibration_Stat164: 2.88880797e-14 + syst_JES_EtaIntercalibration_Stat165: 6.91219536e-10 + syst_JES_EtaIntercalibration_Stat166: 7.67538402e-10 + syst_JES_EtaIntercalibration_Stat167: 2.66192553e-08 + syst_JES_EtaIntercalibration_Stat168: 1.86220656e-08 + syst_JES_EtaIntercalibration_Stat169: 2.49578396e-10 + syst_JES_EtaIntercalibration_Stat17: 2.79317490e-23 + syst_JES_EtaIntercalibration_Stat170: 6.00900438e-08 + syst_JES_EtaIntercalibration_Stat171: 2.22099695e-08 + syst_JES_EtaIntercalibration_Stat172: 2.92409116e-08 + syst_JES_EtaIntercalibration_Stat173: 1.04771793e-08 + syst_JES_EtaIntercalibration_Stat174: 4.02916783e-08 + syst_JES_EtaIntercalibration_Stat175: 1.44806249e-08 + syst_JES_EtaIntercalibration_Stat176: 1.37756363e-08 + syst_JES_EtaIntercalibration_Stat177: 1.05924736e-08 + syst_JES_EtaIntercalibration_Stat178: 2.08435066e-08 + syst_JES_EtaIntercalibration_Stat179: 6.97595559e-10 + syst_JES_EtaIntercalibration_Stat18: 2.82701291e-23 + syst_JES_EtaIntercalibration_Stat180: 1.69924226e-12 + syst_JES_EtaIntercalibration_Stat181: 2.84662550e-13 + syst_JES_EtaIntercalibration_Stat182: 8.45079795e-09 + syst_JES_EtaIntercalibration_Stat183: 8.66198609e-09 + syst_JES_EtaIntercalibration_Stat184: 1.92419861e-08 + syst_JES_EtaIntercalibration_Stat185: 1.90015379e-07 + syst_JES_EtaIntercalibration_Stat186: 1.59486175e-07 + syst_JES_EtaIntercalibration_Stat187: 2.84047074e-07 + syst_JES_EtaIntercalibration_Stat188: 1.92576011e-07 + syst_JES_EtaIntercalibration_Stat189: 1.53835726e-07 + syst_JES_EtaIntercalibration_Stat19: 4.34241131e-22 + syst_JES_EtaIntercalibration_Stat190: 1.57427685e-07 + syst_JES_EtaIntercalibration_Stat191: 2.35793511e-07 + syst_JES_EtaIntercalibration_Stat192: 2.95975202e-07 + syst_JES_EtaIntercalibration_Stat193: 2.03755411e-07 + syst_JES_EtaIntercalibration_Stat194: 6.05812765e-08 + syst_JES_EtaIntercalibration_Stat195: 4.37076664e-08 + syst_JES_EtaIntercalibration_Stat196: 5.63425338e-09 + syst_JES_EtaIntercalibration_Stat197: 1.10345603e-09 + syst_JES_EtaIntercalibration_Stat198: 2.12372150e-08 + syst_JES_EtaIntercalibration_Stat199: 1.40278225e-07 + syst_JES_EtaIntercalibration_Stat2: 4.34253774e-23 + syst_JES_EtaIntercalibration_Stat20: 2.82701291e-23 + syst_JES_EtaIntercalibration_Stat200: 1.98502764e-07 + syst_JES_EtaIntercalibration_Stat201: 4.11198574e-07 + syst_JES_EtaIntercalibration_Stat202: 8.79579553e-07 + syst_JES_EtaIntercalibration_Stat203: 4.09459395e-07 + syst_JES_EtaIntercalibration_Stat204: 3.34691860e-07 + syst_JES_EtaIntercalibration_Stat205: 3.84132087e-07 + syst_JES_EtaIntercalibration_Stat206: 5.60512248e-07 + syst_JES_EtaIntercalibration_Stat207: 5.68221002e-07 + syst_JES_EtaIntercalibration_Stat208: 5.37391316e-07 + syst_JES_EtaIntercalibration_Stat209: 1.50119999e-07 + syst_JES_EtaIntercalibration_Stat21: 2.82701291e-23 + syst_JES_EtaIntercalibration_Stat210: 5.46355367e-08 + syst_JES_EtaIntercalibration_Stat211: 6.60193099e-08 + syst_JES_EtaIntercalibration_Stat212: 1.17136120e-07 + syst_JES_EtaIntercalibration_Stat213: 1.79534809e-07 + syst_JES_EtaIntercalibration_Stat214: 4.07254945e-07 + syst_JES_EtaIntercalibration_Stat215: 9.58877125e-07 + syst_JES_EtaIntercalibration_Stat216: 6.75888867e-07 + syst_JES_EtaIntercalibration_Stat217: 3.15520782e-07 + syst_JES_EtaIntercalibration_Stat218: 4.81810404e-07 + syst_JES_EtaIntercalibration_Stat219: 6.02359726e-07 + syst_JES_EtaIntercalibration_Stat22: 2.82701291e-23 + syst_JES_EtaIntercalibration_Stat220: 6.36151075e-07 + syst_JES_EtaIntercalibration_Stat221: 3.07945689e-07 + syst_JES_EtaIntercalibration_Stat222: 1.66906957e-07 + syst_JES_EtaIntercalibration_Stat223: 7.51827593e-08 + syst_JES_EtaIntercalibration_Stat224: 3.38279767e-07 + syst_JES_EtaIntercalibration_Stat225: 7.64768841e-07 + syst_JES_EtaIntercalibration_Stat226: 1.41916605e-06 + syst_JES_EtaIntercalibration_Stat227: 2.29404163e-06 + syst_JES_EtaIntercalibration_Stat228: 1.48157885e-06 + syst_JES_EtaIntercalibration_Stat229: 1.27742551e-06 + syst_JES_EtaIntercalibration_Stat23: 7.28529512e-22 + syst_JES_EtaIntercalibration_Stat230: 1.02340703e-06 + syst_JES_EtaIntercalibration_Stat231: 2.33479207e-06 + syst_JES_EtaIntercalibration_Stat232: 2.44132915e-06 + syst_JES_EtaIntercalibration_Stat233: 1.32818436e-06 + syst_JES_EtaIntercalibration_Stat234: 7.18919244e-07 + syst_JES_EtaIntercalibration_Stat235: 2.42573716e-07 + syst_JES_EtaIntercalibration_Stat236: 9.43084632e-08 + syst_JES_EtaIntercalibration_Stat237: 1.99842013e-07 + syst_JES_EtaIntercalibration_Stat238: 3.54890585e-07 + syst_JES_EtaIntercalibration_Stat239: 2.55337502e-07 + syst_JES_EtaIntercalibration_Stat24: 5.26085704e-21 + syst_JES_EtaIntercalibration_Stat240: 1.45532243e-07 + syst_JES_EtaIntercalibration_Stat241: 8.95480624e-08 + syst_JES_EtaIntercalibration_Stat242: 1.74202258e-07 + syst_JES_EtaIntercalibration_Stat243: 2.44837763e-07 + syst_JES_EtaIntercalibration_Stat244: 1.94769113e-07 + syst_JES_EtaIntercalibration_Stat245: 1.34769753e-07 + syst_JES_EtaIntercalibration_Stat25: 5.42783932e-21 + syst_JES_EtaIntercalibration_Stat26: 8.30187827e-23 + syst_JES_EtaIntercalibration_Stat27: 1.71695893e-21 + syst_JES_EtaIntercalibration_Stat28: 9.88631968e-22 + syst_JES_EtaIntercalibration_Stat29: 5.75308413e-21 + syst_JES_EtaIntercalibration_Stat3: 8.25058148e-23 + syst_JES_EtaIntercalibration_Stat30: 4.84283574e-21 + syst_JES_EtaIntercalibration_Stat31: 1.43501185e-15 + syst_JES_EtaIntercalibration_Stat32: 1.44453327e-15 + syst_JES_EtaIntercalibration_Stat33: 4.20311803e-21 + syst_JES_EtaIntercalibration_Stat34: 4.74015910e-20 + syst_JES_EtaIntercalibration_Stat35: 8.41949898e-09 + syst_JES_EtaIntercalibration_Stat36: 2.45743506e-20 + syst_JES_EtaIntercalibration_Stat37: 1.36634703e-19 + syst_JES_EtaIntercalibration_Stat38: 1.73814578e-20 + syst_JES_EtaIntercalibration_Stat39: 1.80046681e-20 + syst_JES_EtaIntercalibration_Stat4: 6.69404666e-23 + syst_JES_EtaIntercalibration_Stat40: 1.32352564e-21 + syst_JES_EtaIntercalibration_Stat41: 1.05919279e-22 + syst_JES_EtaIntercalibration_Stat42: 2.16333146e-22 + syst_JES_EtaIntercalibration_Stat43: 2.82701291e-23 + syst_JES_EtaIntercalibration_Stat44: 2.82701291e-23 + syst_JES_EtaIntercalibration_Stat45: 4.34253774e-23 + syst_JES_EtaIntercalibration_Stat46: 2.26937196e-21 + syst_JES_EtaIntercalibration_Stat47: 5.88957289e-20 + syst_JES_EtaIntercalibration_Stat48: 3.07621215e-21 + syst_JES_EtaIntercalibration_Stat49: 4.32795659e-21 + syst_JES_EtaIntercalibration_Stat5: 1.73118478e-23 + syst_JES_EtaIntercalibration_Stat50: 1.43500514e-15 + syst_JES_EtaIntercalibration_Stat51: 2.03399417e-20 + syst_JES_EtaIntercalibration_Stat52: 7.92063336e-21 + syst_JES_EtaIntercalibration_Stat53: 1.43515447e-15 + syst_JES_EtaIntercalibration_Stat54: 1.43501121e-15 + syst_JES_EtaIntercalibration_Stat55: 2.75734416e-21 + syst_JES_EtaIntercalibration_Stat56: 2.82970985e-20 + syst_JES_EtaIntercalibration_Stat57: 7.83322235e-15 + syst_JES_EtaIntercalibration_Stat58: 1.16467891e-19 + syst_JES_EtaIntercalibration_Stat59: 6.35270602e-20 + syst_JES_EtaIntercalibration_Stat6: 6.42178713e-23 + syst_JES_EtaIntercalibration_Stat60: 7.89533356e-22 + syst_JES_EtaIntercalibration_Stat61: 1.72384664e-20 + syst_JES_EtaIntercalibration_Stat62: 4.92605934e-21 + syst_JES_EtaIntercalibration_Stat63: 1.24078430e-21 + syst_JES_EtaIntercalibration_Stat64: 6.43777003e-23 + syst_JES_EtaIntercalibration_Stat65: 2.82701291e-23 + syst_JES_EtaIntercalibration_Stat66: 2.82701291e-23 + syst_JES_EtaIntercalibration_Stat67: 8.07684299e-21 + syst_JES_EtaIntercalibration_Stat68: 2.84980783e-19 + syst_JES_EtaIntercalibration_Stat69: 2.46639122e-19 + syst_JES_EtaIntercalibration_Stat7: 8.54929265e-23 + syst_JES_EtaIntercalibration_Stat70: 9.43854512e-20 + syst_JES_EtaIntercalibration_Stat71: 5.56610858e-20 + syst_JES_EtaIntercalibration_Stat72: 1.43500041e-15 + syst_JES_EtaIntercalibration_Stat73: 1.00561568e-13 + syst_JES_EtaIntercalibration_Stat74: 1.01896672e-13 + syst_JES_EtaIntercalibration_Stat75: 5.76513111e-09 + syst_JES_EtaIntercalibration_Stat76: 1.42895106e-15 + syst_JES_EtaIntercalibration_Stat77: 6.35378612e-20 + syst_JES_EtaIntercalibration_Stat78: 6.04052719e-09 + syst_JES_EtaIntercalibration_Stat79: 6.35576044e-09 + syst_JES_EtaIntercalibration_Stat8: 1.10122020e-21 + syst_JES_EtaIntercalibration_Stat80: 7.84114618e-15 + syst_JES_EtaIntercalibration_Stat81: 7.83561141e-14 + syst_JES_EtaIntercalibration_Stat82: 9.24914539e-14 + syst_JES_EtaIntercalibration_Stat83: 1.42530052e-20 + syst_JES_EtaIntercalibration_Stat84: 2.44819357e-20 + syst_JES_EtaIntercalibration_Stat85: 6.00389549e-21 + syst_JES_EtaIntercalibration_Stat86: 5.94388585e-23 + syst_JES_EtaIntercalibration_Stat87: 1.73118478e-23 + syst_JES_EtaIntercalibration_Stat88: 5.18405368e-21 + syst_JES_EtaIntercalibration_Stat89: 1.79993549e-18 + syst_JES_EtaIntercalibration_Stat9: 9.93761962e-22 + syst_JES_EtaIntercalibration_Stat90: 1.79590686e-18 + syst_JES_EtaIntercalibration_Stat91: 1.04312147e-19 + syst_JES_EtaIntercalibration_Stat92: 2.15419920e-19 + syst_JES_EtaIntercalibration_Stat93: 1.43490603e-15 + syst_JES_EtaIntercalibration_Stat94: 9.35474440e-14 + syst_JES_EtaIntercalibration_Stat95: 9.15889805e-14 + syst_JES_EtaIntercalibration_Stat96: 6.09941692e-09 + syst_JES_EtaIntercalibration_Stat97: 1.89227771e-18 + syst_JES_EtaIntercalibration_Stat98: 3.33696685e-19 + syst_JES_EtaIntercalibration_Stat99: 1.29192666e-08 + syst_JES_EtaIntercalibration_TotalStat_MJB: 5.40450227e-05 + syst_JES_Flavour_Comp: 1.31876607e-04 + syst_JES_Flavour_Response: 1.44534362e-05 + syst_JES_Gjet_Generator: 1.51769060e-04 + syst_JES_Gjet_OOC: 1.26296418e-04 + syst_JES_Gjet_Purity: 2.03247454e-05 + syst_JES_Gjet_Stat1: 5.16509845e-07 + syst_JES_Gjet_Stat10: 2.62612281e-06 + syst_JES_Gjet_Stat11: 2.56938456e-06 + syst_JES_Gjet_Stat12: 6.18694486e-06 + syst_JES_Gjet_Stat13: 2.48409677e-05 + syst_JES_Gjet_Stat14: 6.70600125e-05 + syst_JES_Gjet_Stat15: 1.06207648e-04 + syst_JES_Gjet_Stat2: 5.27395438e-07 + syst_JES_Gjet_Stat3: 6.10539931e-07 + syst_JES_Gjet_Stat4: 8.96104670e-07 + syst_JES_Gjet_Stat5: 7.48724609e-07 + syst_JES_Gjet_Stat6: 1.86686555e-06 + syst_JES_Gjet_Stat7: 1.48674829e-06 + syst_JES_Gjet_Stat8: 7.51362807e-07 + syst_JES_Gjet_Stat9: 1.35978420e-06 + syst_JES_Gjet_Veto: 1.29720618e-04 + syst_JES_Gjet_dPhi: 1.26543963e-05 + syst_JES_LArESZee: 2.29983972e-04 + syst_JES_LArEsmear: 2.00151193e-05 + syst_JES_LAr_JVT: 2.52373275e-05 + syst_JES_MJB_Alpha: 2.71521344e-06 + syst_JES_MJB_Asym: 3.58000251e-05 + syst_JES_MJB_Beta: 1.75278771e-06 + syst_JES_MJB_Fragmentation: 1.29746922e-05 + syst_JES_MJB_Stat1: 4.82846562e-10 + syst_JES_MJB_Stat10: 1.53840632e-06 + syst_JES_MJB_Stat11: 2.34010769e-06 + syst_JES_MJB_Stat12: 3.89130918e-06 + syst_JES_MJB_Stat13: 5.29607163e-06 + syst_JES_MJB_Stat14: 6.08491912e-06 + syst_JES_MJB_Stat15: 9.41650024e-06 + syst_JES_MJB_Stat16: 2.07745662e-06 + syst_JES_MJB_Stat2: 1.15810111e-07 + syst_JES_MJB_Stat3: 2.74422229e-07 + syst_JES_MJB_Stat4: 2.57135539e-07 + syst_JES_MJB_Stat5: 1.24022547e-07 + syst_JES_MJB_Stat6: 2.13988890e-07 + syst_JES_MJB_Stat7: 4.31031748e-07 + syst_JES_MJB_Stat8: 7.55382837e-07 + syst_JES_MJB_Stat9: 9.82134424e-07 + syst_JES_MJB_Threshold: 2.21456243e-05 + syst_JES_Pileup_MuOffset: 3.26809914e-05 + syst_JES_Pileup_NPVOffset: 3.29451282e-05 + syst_JES_Pileup_Pt_term: 1.83103495e-05 + syst_JES_Pileup_Rho_topology: 4.02369554e-05 + syst_JES_PunchThrough_MC15: 4.97884866e-05 + syst_JES_SingleParticle_HighPt: 4.22132169e-08 + syst_JES_Zjet_MC: 5.71807824e-05 + syst_JES_Zjet_MuScale: 4.13714113e-06 + syst_JES_Zjet_MuSmearID: 9.30057809e-07 + syst_JES_Zjet_MuSmearMS: 1.46793290e-05 + syst_JES_Zjet_OOC: 3.56865475e-05 + syst_JES_Zjet_Stat1: 3.60431325e-06 + syst_JES_Zjet_Stat10: 2.59776423e-06 + syst_JES_Zjet_Stat11: 3.61661758e-06 + syst_JES_Zjet_Stat12: 9.14928100e-06 + syst_JES_Zjet_Stat13: 1.46732001e-05 + syst_JES_Zjet_Stat2: 8.36456890e-08 + syst_JES_Zjet_Stat3: 1.93471264e-06 + syst_JES_Zjet_Stat4: 1.85913770e-06 + syst_JES_Zjet_Stat5: 1.81760742e-06 + syst_JES_Zjet_Stat6: 1.43793002e-06 + syst_JES_Zjet_Stat7: 1.78394696e-06 + syst_JES_Zjet_Stat8: 1.60179298e-06 + syst_JES_Zjet_Stat9: 1.51573644e-06 + syst_JES_Zjet_Veto: 6.90532859e-06 + syst_JES_Zjet_dPhi: 6.50637877e-06 syst_PRW: 0.0 syst_Unfolding_bias: 0.0 - syst_cleaning: 5.908891330021225e-05 - syst_lumi: 0.00011371 -- stat: 8.198e-05 - syst_JER_CROSS_CALIB_FORWARD: 2.112e-19 - syst_JER_NOISE_FORWARD: 4.749e-17 - syst_JER_NP0: 4.7494813137857496e-06 - syst_JER_NP1: 9.412270395605941e-07 - syst_JER_NP2: 3.3579968359127436e-06 - syst_JER_NP3: 4.634775438645868e-08 - syst_JER_NP4: 3.341161586933502e-07 - syst_JER_NP5: 8.867140858247375e-07 - syst_JER_NP6: 6.552437161087467e-07 - syst_JER_NP7: 5.519502219403486e-28 - syst_JER_NP8: 8.289093723079743e-07 - syst_JES_EtaIntercalibration_Modelling: 0.00010453458566426712 - syst_JES_EtaIntercalibration_NonClosure: 1.6038698848410367e-08 - syst_JES_EtaIntercalibration_Stat0: 9.267341474230891e-24 - syst_JES_EtaIntercalibration_Stat1: 1.640279661368756e-23 - syst_JES_EtaIntercalibration_Stat10: 1.1245758078048807e-23 - syst_JES_EtaIntercalibration_Stat100: 7.666922899713586e-09 - syst_JES_EtaIntercalibration_Stat101: 6.0364010825988035e-19 - syst_JES_EtaIntercalibration_Stat102: 6.716463304510846e-15 - syst_JES_EtaIntercalibration_Stat103: 6.712482858936882e-15 - syst_JES_EtaIntercalibration_Stat104: 2.4005396955684776e-20 - syst_JES_EtaIntercalibration_Stat105: 3.367623010652321e-18 - syst_JES_EtaIntercalibration_Stat106: 2.1829905710000217e-19 - syst_JES_EtaIntercalibration_Stat107: 1.329976875738823e-23 - syst_JES_EtaIntercalibration_Stat108: 1.3174024991152096e-19 - syst_JES_EtaIntercalibration_Stat109: 8.959397278671986e-17 - syst_JES_EtaIntercalibration_Stat11: 1.6950045044187936e-23 - syst_JES_EtaIntercalibration_Stat110: 1.874044469376327e-16 - syst_JES_EtaIntercalibration_Stat111: 1.78965117167229e-13 - syst_JES_EtaIntercalibration_Stat112: 1.7926595160740228e-13 - syst_JES_EtaIntercalibration_Stat113: 4.4956174644155245e-09 - syst_JES_EtaIntercalibration_Stat114: 6.867581168416193e-09 - syst_JES_EtaIntercalibration_Stat115: 3.1861100640924985e-09 - syst_JES_EtaIntercalibration_Stat116: 3.6020728754426945e-09 - syst_JES_EtaIntercalibration_Stat117: 1.164684080555753e-17 - syst_JES_EtaIntercalibration_Stat118: 1.4855864620748264e-13 - syst_JES_EtaIntercalibration_Stat119: 1.3483528612328332e-09 - syst_JES_EtaIntercalibration_Stat12: 6.545704163800866e-22 - syst_JES_EtaIntercalibration_Stat120: 2.359633869904397e-09 - syst_JES_EtaIntercalibration_Stat121: 5.267906520383595e-18 - syst_JES_EtaIntercalibration_Stat122: 1.2199693671042322e-13 - syst_JES_EtaIntercalibration_Stat123: 1.9617996839636815e-14 - syst_JES_EtaIntercalibration_Stat124: 8.607684241856226e-14 - syst_JES_EtaIntercalibration_Stat125: 1.8292146149372412e-17 - syst_JES_EtaIntercalibration_Stat126: 4.8261043295809506e-18 - syst_JES_EtaIntercalibration_Stat127: 7.553473571807875e-23 - syst_JES_EtaIntercalibration_Stat128: 2.259130529650733e-16 - syst_JES_EtaIntercalibration_Stat129: 2.6794823810707224e-11 - syst_JES_EtaIntercalibration_Stat13: 3.9324426591496537e-23 - syst_JES_EtaIntercalibration_Stat130: 1.5605767946832016e-10 - syst_JES_EtaIntercalibration_Stat131: 4.018454783022947e-13 - syst_JES_EtaIntercalibration_Stat132: 2.8578075437983694e-09 - syst_JES_EtaIntercalibration_Stat133: 8.973008024068628e-09 - syst_JES_EtaIntercalibration_Stat134: 3.850586483900862e-15 - syst_JES_EtaIntercalibration_Stat135: 2.4707778699632228e-15 - syst_JES_EtaIntercalibration_Stat136: 1.810948223307337e-08 - syst_JES_EtaIntercalibration_Stat137: 1.2170199043154553e-08 - syst_JES_EtaIntercalibration_Stat138: 1.8264088780993156e-08 - syst_JES_EtaIntercalibration_Stat139: 7.790764666101405e-09 - syst_JES_EtaIntercalibration_Stat14: 3.818364567128184e-23 - syst_JES_EtaIntercalibration_Stat140: 4.996799843900094e-09 - syst_JES_EtaIntercalibration_Stat141: 5.844666885289529e-09 - syst_JES_EtaIntercalibration_Stat142: 2.5477284617282115e-09 - syst_JES_EtaIntercalibration_Stat143: 2.762235100421396e-14 - syst_JES_EtaIntercalibration_Stat144: 9.478491684202715e-14 - syst_JES_EtaIntercalibration_Stat145: 1.8280342018682256e-16 - syst_JES_EtaIntercalibration_Stat146: 1.0891945005369792e-15 - syst_JES_EtaIntercalibration_Stat147: 2.8614577283300307e-11 - syst_JES_EtaIntercalibration_Stat148: 1.560564969524346e-10 - syst_JES_EtaIntercalibration_Stat149: 2.81544858770321e-13 - syst_JES_EtaIntercalibration_Stat15: 7.317628099322894e-24 - syst_JES_EtaIntercalibration_Stat150: 2.871663401853851e-09 - syst_JES_EtaIntercalibration_Stat151: 3.0873806172902097e-09 - syst_JES_EtaIntercalibration_Stat152: 5.753006912300856e-09 - syst_JES_EtaIntercalibration_Stat153: 1.3994671489777816e-14 - syst_JES_EtaIntercalibration_Stat154: 8.338079320203185e-09 - syst_JES_EtaIntercalibration_Stat155: 1.2178649216969835e-08 - syst_JES_EtaIntercalibration_Stat156: 9.88258680710673e-09 - syst_JES_EtaIntercalibration_Stat157: 8.444898504422654e-14 - syst_JES_EtaIntercalibration_Stat158: 7.85136879785939e-09 - syst_JES_EtaIntercalibration_Stat159: 5.109148339009154e-09 - syst_JES_EtaIntercalibration_Stat16: 6.271529857219847e-24 - syst_JES_EtaIntercalibration_Stat160: 4.978558722348768e-15 - syst_JES_EtaIntercalibration_Stat161: 1.2037105746399341e-14 - syst_JES_EtaIntercalibration_Stat162: 6.692492342698273e-14 - syst_JES_EtaIntercalibration_Stat163: 7.061169398902707e-15 - syst_JES_EtaIntercalibration_Stat164: 1.96963526572815e-15 - syst_JES_EtaIntercalibration_Stat165: 1.4290822543419255e-11 - syst_JES_EtaIntercalibration_Stat166: 2.1943830686441235e-11 - syst_JES_EtaIntercalibration_Stat167: 3.236824692503442e-08 - syst_JES_EtaIntercalibration_Stat168: 1.0335508538528716e-08 - syst_JES_EtaIntercalibration_Stat169: 3.86304069834567e-09 - syst_JES_EtaIntercalibration_Stat17: 9.248965834081128e-24 - syst_JES_EtaIntercalibration_Stat170: 1.676597646814655e-08 - syst_JES_EtaIntercalibration_Stat171: 1.092008490133204e-08 - syst_JES_EtaIntercalibration_Stat172: 1.4244127977194673e-08 - syst_JES_EtaIntercalibration_Stat173: 3.7663448069439955e-09 - syst_JES_EtaIntercalibration_Stat174: 1.1072023395643409e-08 - syst_JES_EtaIntercalibration_Stat175: 1.4576565713500556e-08 - syst_JES_EtaIntercalibration_Stat176: 6.538119913247232e-09 - syst_JES_EtaIntercalibration_Stat177: 5.268231463214197e-09 - syst_JES_EtaIntercalibration_Stat178: 7.428657668112053e-09 - syst_JES_EtaIntercalibration_Stat179: 7.175013449464746e-11 - syst_JES_EtaIntercalibration_Stat18: 9.267341474230891e-24 - syst_JES_EtaIntercalibration_Stat180: 1.2609009596316436e-13 - syst_JES_EtaIntercalibration_Stat181: 2.0550782824769717e-14 - syst_JES_EtaIntercalibration_Stat182: 2.0366963073042454e-09 - syst_JES_EtaIntercalibration_Stat183: 2.390230114445043e-09 - syst_JES_EtaIntercalibration_Stat184: 1.0962421311006068e-08 - syst_JES_EtaIntercalibration_Stat185: 8.321125517019918e-08 - syst_JES_EtaIntercalibration_Stat186: 7.678843728062188e-08 - syst_JES_EtaIntercalibration_Stat187: 1.6254601656146485e-07 - syst_JES_EtaIntercalibration_Stat188: 8.032710501443457e-08 - syst_JES_EtaIntercalibration_Stat189: 1.1094622210783025e-07 - syst_JES_EtaIntercalibration_Stat19: 8.172268029745476e-23 - syst_JES_EtaIntercalibration_Stat190: 1.049853665993504e-07 - syst_JES_EtaIntercalibration_Stat191: 1.3688024647479268e-07 - syst_JES_EtaIntercalibration_Stat192: 1.451890750022191e-07 - syst_JES_EtaIntercalibration_Stat193: 8.908442849342414e-08 - syst_JES_EtaIntercalibration_Stat194: 3.051070186016703e-08 - syst_JES_EtaIntercalibration_Stat195: 2.3836075951171158e-08 - syst_JES_EtaIntercalibration_Stat196: 5.3774984769872315e-09 - syst_JES_EtaIntercalibration_Stat197: 1.0465310137306014e-10 - syst_JES_EtaIntercalibration_Stat198: 2.979136740735477e-08 - syst_JES_EtaIntercalibration_Stat199: 4.5027660387810516e-08 - syst_JES_EtaIntercalibration_Stat2: 8.973046124366016e-24 - syst_JES_EtaIntercalibration_Stat20: 9.267341474230891e-24 - syst_JES_EtaIntercalibration_Stat200: 7.536810913775136e-08 - syst_JES_EtaIntercalibration_Stat201: 2.20359751315888e-07 - syst_JES_EtaIntercalibration_Stat202: 4.3936445008671334e-07 - syst_JES_EtaIntercalibration_Stat203: 2.2628161105136226e-07 - syst_JES_EtaIntercalibration_Stat204: 1.6055744478223363e-07 - syst_JES_EtaIntercalibration_Stat205: 2.3489982439329324e-07 - syst_JES_EtaIntercalibration_Stat206: 2.9829020684561534e-07 - syst_JES_EtaIntercalibration_Stat207: 3.356587056818279e-07 - syst_JES_EtaIntercalibration_Stat208: 2.322391170754832e-07 - syst_JES_EtaIntercalibration_Stat209: 7.961399939709096e-08 - syst_JES_EtaIntercalibration_Stat21: 9.267341474230891e-24 - syst_JES_EtaIntercalibration_Stat210: 2.6184951188612135e-08 - syst_JES_EtaIntercalibration_Stat211: 1.235550209420888e-08 - syst_JES_EtaIntercalibration_Stat212: 3.418569693599941e-08 - syst_JES_EtaIntercalibration_Stat213: 1.0101229281627063e-07 - syst_JES_EtaIntercalibration_Stat214: 2.204799083816936e-07 - syst_JES_EtaIntercalibration_Stat215: 4.83248424725834e-07 - syst_JES_EtaIntercalibration_Stat216: 3.4395997950343006e-07 - syst_JES_EtaIntercalibration_Stat217: 1.5071862882537113e-07 - syst_JES_EtaIntercalibration_Stat218: 2.674508319299082e-07 - syst_JES_EtaIntercalibration_Stat219: 3.234425142123404e-07 - syst_JES_EtaIntercalibration_Stat22: 9.267341474230891e-24 - syst_JES_EtaIntercalibration_Stat220: 3.4967690801652884e-07 - syst_JES_EtaIntercalibration_Stat221: 1.5365079726444637e-07 - syst_JES_EtaIntercalibration_Stat222: 6.556223455618333e-08 - syst_JES_EtaIntercalibration_Stat223: 3.666954607886495e-08 - syst_JES_EtaIntercalibration_Stat224: 1.3812653329465704e-07 - syst_JES_EtaIntercalibration_Stat225: 3.8359400412415203e-07 - syst_JES_EtaIntercalibration_Stat226: 7.031387558654408e-07 - syst_JES_EtaIntercalibration_Stat227: 1.2151546105331618e-06 - syst_JES_EtaIntercalibration_Stat228: 8.380421111137555e-07 - syst_JES_EtaIntercalibration_Stat229: 6.043669332450279e-07 - syst_JES_EtaIntercalibration_Stat23: 1.217052826791015e-22 - syst_JES_EtaIntercalibration_Stat230: 5.716000765395331e-07 - syst_JES_EtaIntercalibration_Stat231: 1.2084240687771822e-06 - syst_JES_EtaIntercalibration_Stat232: 1.2240790037820272e-06 - syst_JES_EtaIntercalibration_Stat233: 6.947035482851661e-07 - syst_JES_EtaIntercalibration_Stat234: 3.293447110551496e-07 - syst_JES_EtaIntercalibration_Stat235: 1.1880136489114928e-07 - syst_JES_EtaIntercalibration_Stat236: 4.007070971108448e-08 - syst_JES_EtaIntercalibration_Stat237: 1.3291220071912137e-07 - syst_JES_EtaIntercalibration_Stat238: 1.9842244706685783e-07 - syst_JES_EtaIntercalibration_Stat239: 1.1558316259300053e-07 - syst_JES_EtaIntercalibration_Stat24: 7.492880867029717e-22 - syst_JES_EtaIntercalibration_Stat240: 1.1329051151795546e-07 - syst_JES_EtaIntercalibration_Stat241: 8.726795101868727e-08 - syst_JES_EtaIntercalibration_Stat242: 6.487412947392819e-08 - syst_JES_EtaIntercalibration_Stat243: 1.1055999762572356e-07 - syst_JES_EtaIntercalibration_Stat244: 9.33228975210285e-08 - syst_JES_EtaIntercalibration_Stat245: 5.777570661618947e-08 - syst_JES_EtaIntercalibration_Stat25: 7.69620671288785e-22 - syst_JES_EtaIntercalibration_Stat26: 1.1187231695106705e-23 - syst_JES_EtaIntercalibration_Stat27: 1.280709642151569e-22 - syst_JES_EtaIntercalibration_Stat28: 1.5471984617365673e-22 - syst_JES_EtaIntercalibration_Stat29: 7.641422053518572e-22 - syst_JES_EtaIntercalibration_Stat3: 1.4907975009369984e-23 - syst_JES_EtaIntercalibration_Stat30: 7.095998925450876e-22 - syst_JES_EtaIntercalibration_Stat31: 1.1592721627400632e-16 - syst_JES_EtaIntercalibration_Stat32: 1.1686185239153907e-16 - syst_JES_EtaIntercalibration_Stat33: 7.714242704731296e-22 - syst_JES_EtaIntercalibration_Stat34: 6.507300954120687e-21 - syst_JES_EtaIntercalibration_Stat35: 4.174242446240926e-09 - syst_JES_EtaIntercalibration_Stat36: 1.956988019253056e-21 - syst_JES_EtaIntercalibration_Stat37: 1.9080230553017436e-20 - syst_JES_EtaIntercalibration_Stat38: 2.3188480933428996e-21 - syst_JES_EtaIntercalibration_Stat39: 2.392828190656404e-21 - syst_JES_EtaIntercalibration_Stat4: 1.640279661368756e-23 - syst_JES_EtaIntercalibration_Stat40: 2.0465024719017567e-22 - syst_JES_EtaIntercalibration_Stat41: 2.373777316851772e-23 - syst_JES_EtaIntercalibration_Stat42: 3.9153008505094474e-23 - syst_JES_EtaIntercalibration_Stat43: 9.267341474230891e-24 - syst_JES_EtaIntercalibration_Stat44: 9.267341474230891e-24 - syst_JES_EtaIntercalibration_Stat45: 8.973046124366016e-24 - syst_JES_EtaIntercalibration_Stat46: 4.49915847687098e-22 - syst_JES_EtaIntercalibration_Stat47: 7.273945440405777e-21 - syst_JES_EtaIntercalibration_Stat48: 2.882993361074562e-22 - syst_JES_EtaIntercalibration_Stat49: 4.0838502665989116e-22 - syst_JES_EtaIntercalibration_Stat5: 5.675064470999426e-24 - syst_JES_EtaIntercalibration_Stat50: 1.1591759593493483e-16 - syst_JES_EtaIntercalibration_Stat51: 2.4464625482520677e-21 - syst_JES_EtaIntercalibration_Stat52: 1.125031416228009e-21 - syst_JES_EtaIntercalibration_Stat53: 1.1593404793182231e-16 - syst_JES_EtaIntercalibration_Stat54: 1.1590981579731848e-16 - syst_JES_EtaIntercalibration_Stat55: 7.839556312974606e-22 - syst_JES_EtaIntercalibration_Stat56: 2.9752800254765936e-21 - syst_JES_EtaIntercalibration_Stat57: 5.944424869539446e-16 - syst_JES_EtaIntercalibration_Stat58: 1.4152353973809443e-20 - syst_JES_EtaIntercalibration_Stat59: 7.803561158214882e-21 - syst_JES_EtaIntercalibration_Stat6: 1.3694175331139878e-23 - syst_JES_EtaIntercalibration_Stat60: 1.5889477272711018e-22 - syst_JES_EtaIntercalibration_Stat61: 2.343325520083584e-21 - syst_JES_EtaIntercalibration_Stat62: 7.945004453189438e-22 - syst_JES_EtaIntercalibration_Stat63: 1.7050424943384842e-22 - syst_JES_EtaIntercalibration_Stat64: 1.426231972716921e-23 - syst_JES_EtaIntercalibration_Stat65: 9.267341474230891e-24 - syst_JES_EtaIntercalibration_Stat66: 9.267341474230891e-24 - syst_JES_EtaIntercalibration_Stat67: 1.1863783745078972e-21 - syst_JES_EtaIntercalibration_Stat68: 3.1922548782169636e-20 - syst_JES_EtaIntercalibration_Stat69: 2.6415008248153173e-20 - syst_JES_EtaIntercalibration_Stat7: 1.451618531734491e-23 - syst_JES_EtaIntercalibration_Stat70: 1.1264006081319382e-20 - syst_JES_EtaIntercalibration_Stat71: 6.810028046931966e-21 - syst_JES_EtaIntercalibration_Stat72: 1.1592538028270451e-16 - syst_JES_EtaIntercalibration_Stat73: 7.292240956638434e-15 - syst_JES_EtaIntercalibration_Stat74: 7.393271325636967e-15 - syst_JES_EtaIntercalibration_Stat75: 9.755776173636474e-10 - syst_JES_EtaIntercalibration_Stat76: 1.1549429101861533e-16 - syst_JES_EtaIntercalibration_Stat77: 6.71897319164171e-21 - syst_JES_EtaIntercalibration_Stat78: 1.0782882302531288e-09 - syst_JES_EtaIntercalibration_Stat79: 1.1964140953147873e-09 - syst_JES_EtaIntercalibration_Stat8: 1.6851389349249516e-22 - syst_JES_EtaIntercalibration_Stat80: 5.952328463130901e-16 - syst_JES_EtaIntercalibration_Stat81: 5.685255078771753e-15 - syst_JES_EtaIntercalibration_Stat82: 6.70995970166711e-15 - syst_JES_EtaIntercalibration_Stat83: 2.5010721915810427e-21 - syst_JES_EtaIntercalibration_Stat84: 3.423633263070097e-21 - syst_JES_EtaIntercalibration_Stat85: 7.1897488829582915e-22 - syst_JES_EtaIntercalibration_Stat86: 8.005029840668929e-24 - syst_JES_EtaIntercalibration_Stat87: 5.675064470999426e-24 - syst_JES_EtaIntercalibration_Stat88: 7.186090007860672e-22 - syst_JES_EtaIntercalibration_Stat89: 1.7894084334424605e-19 - syst_JES_EtaIntercalibration_Stat9: 1.4620475579388654e-22 - syst_JES_EtaIntercalibration_Stat90: 1.8078493296455874e-19 - syst_JES_EtaIntercalibration_Stat91: 1.3114765266675572e-20 - syst_JES_EtaIntercalibration_Stat92: 2.1920169889852585e-20 - syst_JES_EtaIntercalibration_Stat93: 1.1597466015893332e-16 - syst_JES_EtaIntercalibration_Stat94: 6.78307391991824e-15 - syst_JES_EtaIntercalibration_Stat95: 6.639653605987288e-15 - syst_JES_EtaIntercalibration_Stat96: 1.100545083129218e-09 - syst_JES_EtaIntercalibration_Stat97: 1.8948617647469694e-19 - syst_JES_EtaIntercalibration_Stat98: 3.7618276976491096e-20 - syst_JES_EtaIntercalibration_Stat99: 5.147806183948654e-09 - syst_JES_EtaIntercalibration_TotalStat_MJB: 3.063836483887481e-05 - syst_JES_Flavour_Comp: 6.869081652593743e-05 - syst_JES_Flavour_Response: 1.2207662214773148e-05 - syst_JES_Gjet_Generator: 8.073815501359937e-05 - syst_JES_Gjet_OOC: 6.679981343536821e-05 - syst_JES_Gjet_Purity: 9.789688248356023e-06 - syst_JES_Gjet_Stat1: 2.3393701609621338e-07 - syst_JES_Gjet_Stat10: 1.5707051760276338e-06 - syst_JES_Gjet_Stat11: 1.5561445948240157e-06 - syst_JES_Gjet_Stat12: 2.9254491535489043e-06 - syst_JES_Gjet_Stat13: 1.3881373157940825e-05 - syst_JES_Gjet_Stat14: 3.718143852448423e-05 - syst_JES_Gjet_Stat15: 6.199419065525415e-05 - syst_JES_Gjet_Stat2: 2.6676176637591824e-07 - syst_JES_Gjet_Stat3: 3.2122183534124824e-07 - syst_JES_Gjet_Stat4: 6.914370614886072e-07 - syst_JES_Gjet_Stat5: 4.938633490146845e-07 - syst_JES_Gjet_Stat6: 1.1965006769743175e-06 - syst_JES_Gjet_Stat7: 8.104833419016088e-07 - syst_JES_Gjet_Stat8: 3.7884843935273113e-07 - syst_JES_Gjet_Stat9: 8.352629825390323e-07 - syst_JES_Gjet_Veto: 7.004147110819419e-05 - syst_JES_Gjet_dPhi: 6.429808395278976e-06 - syst_JES_LArESZee: 0.00012013925451325225 - syst_JES_LArEsmear: 1.0738899047388422e-05 - syst_JES_LAr_JVT: 1.3639670991266616e-05 - syst_JES_MJB_Alpha: 1.6743813036462155e-06 - syst_JES_MJB_Asym: 2.3827404390743023e-05 - syst_JES_MJB_Beta: 1.2719851129238894e-06 - syst_JES_MJB_Fragmentation: 7.465531662246165e-06 - syst_JES_MJB_Stat1: 4.273290315935573e-11 - syst_JES_MJB_Stat10: 6.798731058072528e-07 - syst_JES_MJB_Stat11: 1.0470100608399136e-06 - syst_JES_MJB_Stat12: 1.8670961410704056e-06 - syst_JES_MJB_Stat13: 2.637273355190925e-06 - syst_JES_MJB_Stat14: 4.2055944882977e-06 - syst_JES_MJB_Stat15: 4.542968275257928e-06 - syst_JES_MJB_Stat16: 5.665035458847543e-06 - syst_JES_MJB_Stat2: 1.9840964474226044e-08 - syst_JES_MJB_Stat3: 1.0931241192106229e-07 - syst_JES_MJB_Stat4: 6.95758018279344e-08 - syst_JES_MJB_Stat5: 3.5471891336662605e-08 - syst_JES_MJB_Stat6: 9.811354378983566e-08 - syst_JES_MJB_Stat7: 1.9028334320165812e-07 - syst_JES_MJB_Stat8: 2.869005184728672e-07 - syst_JES_MJB_Stat9: 3.998890221048835e-07 - syst_JES_MJB_Threshold: 1.2794783184954718e-05 - syst_JES_Pileup_MuOffset: 1.8730992365595584e-05 - syst_JES_Pileup_NPVOffset: 1.8127550165425e-05 - syst_JES_Pileup_Pt_term: 9.095321434671784e-06 - syst_JES_Pileup_Rho_topology: 2.1835335467997738e-05 - syst_JES_PunchThrough_MC15: 3.107109066318722e-05 - syst_JES_SingleParticle_HighPt: 7.267514207072457e-08 - syst_JES_Zjet_MC: 3.0156350492060543e-05 - syst_JES_Zjet_MuScale: 2.1272707867124018e-06 - syst_JES_Zjet_MuSmearID: 4.987848709614196e-07 - syst_JES_Zjet_MuSmearMS: 7.426844871814679e-06 - syst_JES_Zjet_OOC: 1.9028417564264248e-05 - syst_JES_Zjet_Stat1: 2.20324459604466e-06 - syst_JES_Zjet_Stat10: 1.3679775464166072e-06 - syst_JES_Zjet_Stat11: 1.8395849395991477e-06 - syst_JES_Zjet_Stat12: 4.528923354396715e-06 - syst_JES_Zjet_Stat13: 7.4773720483870526e-06 - syst_JES_Zjet_Stat2: 4.7676949038971395e-08 - syst_JES_Zjet_Stat3: 1.0412746323617032e-06 - syst_JES_Zjet_Stat4: 1.1713406464389428e-06 - syst_JES_Zjet_Stat5: 1.1644679042378111e-06 - syst_JES_Zjet_Stat6: 9.074405806993646e-07 - syst_JES_Zjet_Stat7: 1.1479793410597598e-06 - syst_JES_Zjet_Stat8: 7.955203752890306e-07 - syst_JES_Zjet_Stat9: 9.159189702151604e-07 - syst_JES_Zjet_Veto: 3.554851051731985e-06 - syst_JES_Zjet_dPhi: 3.338031867732841e-06 + syst_cleaning: 5.90889133e-05 + syst_lumi: 1.13710000e-04 +- stat: 8.19800000e-05 + syst_JER_CROSS_CALIB_FORWARD: 2.11200000e-19 + syst_JER_NOISE_FORWARD: 4.74900000e-17 + syst_JER_NP0: 4.74948131e-06 + syst_JER_NP1: 9.41227040e-07 + syst_JER_NP2: 3.35799684e-06 + syst_JER_NP3: 4.63477544e-08 + syst_JER_NP4: 3.34116159e-07 + syst_JER_NP5: 8.86714086e-07 + syst_JER_NP6: 6.55243716e-07 + syst_JER_NP7: 5.51950222e-28 + syst_JER_NP8: 8.28909372e-07 + syst_JES_EtaIntercalibration_Modelling: 1.04534586e-04 + syst_JES_EtaIntercalibration_NonClosure: 1.60386988e-08 + syst_JES_EtaIntercalibration_Stat0: 9.26734147e-24 + syst_JES_EtaIntercalibration_Stat1: 1.64027966e-23 + syst_JES_EtaIntercalibration_Stat10: 1.12457581e-23 + syst_JES_EtaIntercalibration_Stat100: 7.66692290e-09 + syst_JES_EtaIntercalibration_Stat101: 6.03640108e-19 + syst_JES_EtaIntercalibration_Stat102: 6.71646330e-15 + syst_JES_EtaIntercalibration_Stat103: 6.71248286e-15 + syst_JES_EtaIntercalibration_Stat104: 2.40053970e-20 + syst_JES_EtaIntercalibration_Stat105: 3.36762301e-18 + syst_JES_EtaIntercalibration_Stat106: 2.18299057e-19 + syst_JES_EtaIntercalibration_Stat107: 1.32997688e-23 + syst_JES_EtaIntercalibration_Stat108: 1.31740250e-19 + syst_JES_EtaIntercalibration_Stat109: 8.95939728e-17 + syst_JES_EtaIntercalibration_Stat11: 1.69500450e-23 + syst_JES_EtaIntercalibration_Stat110: 1.87404447e-16 + syst_JES_EtaIntercalibration_Stat111: 1.78965117e-13 + syst_JES_EtaIntercalibration_Stat112: 1.79265952e-13 + syst_JES_EtaIntercalibration_Stat113: 4.49561746e-09 + syst_JES_EtaIntercalibration_Stat114: 6.86758117e-09 + syst_JES_EtaIntercalibration_Stat115: 3.18611006e-09 + syst_JES_EtaIntercalibration_Stat116: 3.60207288e-09 + syst_JES_EtaIntercalibration_Stat117: 1.16468408e-17 + syst_JES_EtaIntercalibration_Stat118: 1.48558646e-13 + syst_JES_EtaIntercalibration_Stat119: 1.34835286e-09 + syst_JES_EtaIntercalibration_Stat12: 6.54570416e-22 + syst_JES_EtaIntercalibration_Stat120: 2.35963387e-09 + syst_JES_EtaIntercalibration_Stat121: 5.26790652e-18 + syst_JES_EtaIntercalibration_Stat122: 1.21996937e-13 + syst_JES_EtaIntercalibration_Stat123: 1.96179968e-14 + syst_JES_EtaIntercalibration_Stat124: 8.60768424e-14 + syst_JES_EtaIntercalibration_Stat125: 1.82921461e-17 + syst_JES_EtaIntercalibration_Stat126: 4.82610433e-18 + syst_JES_EtaIntercalibration_Stat127: 7.55347357e-23 + syst_JES_EtaIntercalibration_Stat128: 2.25913053e-16 + syst_JES_EtaIntercalibration_Stat129: 2.67948238e-11 + syst_JES_EtaIntercalibration_Stat13: 3.93244266e-23 + syst_JES_EtaIntercalibration_Stat130: 1.56057679e-10 + syst_JES_EtaIntercalibration_Stat131: 4.01845478e-13 + syst_JES_EtaIntercalibration_Stat132: 2.85780754e-09 + syst_JES_EtaIntercalibration_Stat133: 8.97300802e-09 + syst_JES_EtaIntercalibration_Stat134: 3.85058648e-15 + syst_JES_EtaIntercalibration_Stat135: 2.47077787e-15 + syst_JES_EtaIntercalibration_Stat136: 1.81094822e-08 + syst_JES_EtaIntercalibration_Stat137: 1.21701990e-08 + syst_JES_EtaIntercalibration_Stat138: 1.82640888e-08 + syst_JES_EtaIntercalibration_Stat139: 7.79076467e-09 + syst_JES_EtaIntercalibration_Stat14: 3.81836457e-23 + syst_JES_EtaIntercalibration_Stat140: 4.99679984e-09 + syst_JES_EtaIntercalibration_Stat141: 5.84466689e-09 + syst_JES_EtaIntercalibration_Stat142: 2.54772846e-09 + syst_JES_EtaIntercalibration_Stat143: 2.76223510e-14 + syst_JES_EtaIntercalibration_Stat144: 9.47849168e-14 + syst_JES_EtaIntercalibration_Stat145: 1.82803420e-16 + syst_JES_EtaIntercalibration_Stat146: 1.08919450e-15 + syst_JES_EtaIntercalibration_Stat147: 2.86145773e-11 + syst_JES_EtaIntercalibration_Stat148: 1.56056497e-10 + syst_JES_EtaIntercalibration_Stat149: 2.81544859e-13 + syst_JES_EtaIntercalibration_Stat15: 7.31762810e-24 + syst_JES_EtaIntercalibration_Stat150: 2.87166340e-09 + syst_JES_EtaIntercalibration_Stat151: 3.08738062e-09 + syst_JES_EtaIntercalibration_Stat152: 5.75300691e-09 + syst_JES_EtaIntercalibration_Stat153: 1.39946715e-14 + syst_JES_EtaIntercalibration_Stat154: 8.33807932e-09 + syst_JES_EtaIntercalibration_Stat155: 1.21786492e-08 + syst_JES_EtaIntercalibration_Stat156: 9.88258681e-09 + syst_JES_EtaIntercalibration_Stat157: 8.44489850e-14 + syst_JES_EtaIntercalibration_Stat158: 7.85136880e-09 + syst_JES_EtaIntercalibration_Stat159: 5.10914834e-09 + syst_JES_EtaIntercalibration_Stat16: 6.27152986e-24 + syst_JES_EtaIntercalibration_Stat160: 4.97855872e-15 + syst_JES_EtaIntercalibration_Stat161: 1.20371057e-14 + syst_JES_EtaIntercalibration_Stat162: 6.69249234e-14 + syst_JES_EtaIntercalibration_Stat163: 7.06116940e-15 + syst_JES_EtaIntercalibration_Stat164: 1.96963527e-15 + syst_JES_EtaIntercalibration_Stat165: 1.42908225e-11 + syst_JES_EtaIntercalibration_Stat166: 2.19438307e-11 + syst_JES_EtaIntercalibration_Stat167: 3.23682469e-08 + syst_JES_EtaIntercalibration_Stat168: 1.03355085e-08 + syst_JES_EtaIntercalibration_Stat169: 3.86304070e-09 + syst_JES_EtaIntercalibration_Stat17: 9.24896583e-24 + syst_JES_EtaIntercalibration_Stat170: 1.67659765e-08 + syst_JES_EtaIntercalibration_Stat171: 1.09200849e-08 + syst_JES_EtaIntercalibration_Stat172: 1.42441280e-08 + syst_JES_EtaIntercalibration_Stat173: 3.76634481e-09 + syst_JES_EtaIntercalibration_Stat174: 1.10720234e-08 + syst_JES_EtaIntercalibration_Stat175: 1.45765657e-08 + syst_JES_EtaIntercalibration_Stat176: 6.53811991e-09 + syst_JES_EtaIntercalibration_Stat177: 5.26823146e-09 + syst_JES_EtaIntercalibration_Stat178: 7.42865767e-09 + syst_JES_EtaIntercalibration_Stat179: 7.17501345e-11 + syst_JES_EtaIntercalibration_Stat18: 9.26734147e-24 + syst_JES_EtaIntercalibration_Stat180: 1.26090096e-13 + syst_JES_EtaIntercalibration_Stat181: 2.05507828e-14 + syst_JES_EtaIntercalibration_Stat182: 2.03669631e-09 + syst_JES_EtaIntercalibration_Stat183: 2.39023011e-09 + syst_JES_EtaIntercalibration_Stat184: 1.09624213e-08 + syst_JES_EtaIntercalibration_Stat185: 8.32112552e-08 + syst_JES_EtaIntercalibration_Stat186: 7.67884373e-08 + syst_JES_EtaIntercalibration_Stat187: 1.62546017e-07 + syst_JES_EtaIntercalibration_Stat188: 8.03271050e-08 + syst_JES_EtaIntercalibration_Stat189: 1.10946222e-07 + syst_JES_EtaIntercalibration_Stat19: 8.17226803e-23 + syst_JES_EtaIntercalibration_Stat190: 1.04985367e-07 + syst_JES_EtaIntercalibration_Stat191: 1.36880246e-07 + syst_JES_EtaIntercalibration_Stat192: 1.45189075e-07 + syst_JES_EtaIntercalibration_Stat193: 8.90844285e-08 + syst_JES_EtaIntercalibration_Stat194: 3.05107019e-08 + syst_JES_EtaIntercalibration_Stat195: 2.38360760e-08 + syst_JES_EtaIntercalibration_Stat196: 5.37749848e-09 + syst_JES_EtaIntercalibration_Stat197: 1.04653101e-10 + syst_JES_EtaIntercalibration_Stat198: 2.97913674e-08 + syst_JES_EtaIntercalibration_Stat199: 4.50276604e-08 + syst_JES_EtaIntercalibration_Stat2: 8.97304612e-24 + syst_JES_EtaIntercalibration_Stat20: 9.26734147e-24 + syst_JES_EtaIntercalibration_Stat200: 7.53681091e-08 + syst_JES_EtaIntercalibration_Stat201: 2.20359751e-07 + syst_JES_EtaIntercalibration_Stat202: 4.39364450e-07 + syst_JES_EtaIntercalibration_Stat203: 2.26281611e-07 + syst_JES_EtaIntercalibration_Stat204: 1.60557445e-07 + syst_JES_EtaIntercalibration_Stat205: 2.34899824e-07 + syst_JES_EtaIntercalibration_Stat206: 2.98290207e-07 + syst_JES_EtaIntercalibration_Stat207: 3.35658706e-07 + syst_JES_EtaIntercalibration_Stat208: 2.32239117e-07 + syst_JES_EtaIntercalibration_Stat209: 7.96139994e-08 + syst_JES_EtaIntercalibration_Stat21: 9.26734147e-24 + syst_JES_EtaIntercalibration_Stat210: 2.61849512e-08 + syst_JES_EtaIntercalibration_Stat211: 1.23555021e-08 + syst_JES_EtaIntercalibration_Stat212: 3.41856969e-08 + syst_JES_EtaIntercalibration_Stat213: 1.01012293e-07 + syst_JES_EtaIntercalibration_Stat214: 2.20479908e-07 + syst_JES_EtaIntercalibration_Stat215: 4.83248425e-07 + syst_JES_EtaIntercalibration_Stat216: 3.43959980e-07 + syst_JES_EtaIntercalibration_Stat217: 1.50718629e-07 + syst_JES_EtaIntercalibration_Stat218: 2.67450832e-07 + syst_JES_EtaIntercalibration_Stat219: 3.23442514e-07 + syst_JES_EtaIntercalibration_Stat22: 9.26734147e-24 + syst_JES_EtaIntercalibration_Stat220: 3.49676908e-07 + syst_JES_EtaIntercalibration_Stat221: 1.53650797e-07 + syst_JES_EtaIntercalibration_Stat222: 6.55622346e-08 + syst_JES_EtaIntercalibration_Stat223: 3.66695461e-08 + syst_JES_EtaIntercalibration_Stat224: 1.38126533e-07 + syst_JES_EtaIntercalibration_Stat225: 3.83594004e-07 + syst_JES_EtaIntercalibration_Stat226: 7.03138756e-07 + syst_JES_EtaIntercalibration_Stat227: 1.21515461e-06 + syst_JES_EtaIntercalibration_Stat228: 8.38042111e-07 + syst_JES_EtaIntercalibration_Stat229: 6.04366933e-07 + syst_JES_EtaIntercalibration_Stat23: 1.21705283e-22 + syst_JES_EtaIntercalibration_Stat230: 5.71600077e-07 + syst_JES_EtaIntercalibration_Stat231: 1.20842407e-06 + syst_JES_EtaIntercalibration_Stat232: 1.22407900e-06 + syst_JES_EtaIntercalibration_Stat233: 6.94703548e-07 + syst_JES_EtaIntercalibration_Stat234: 3.29344711e-07 + syst_JES_EtaIntercalibration_Stat235: 1.18801365e-07 + syst_JES_EtaIntercalibration_Stat236: 4.00707097e-08 + syst_JES_EtaIntercalibration_Stat237: 1.32912201e-07 + syst_JES_EtaIntercalibration_Stat238: 1.98422447e-07 + syst_JES_EtaIntercalibration_Stat239: 1.15583163e-07 + syst_JES_EtaIntercalibration_Stat24: 7.49288087e-22 + syst_JES_EtaIntercalibration_Stat240: 1.13290512e-07 + syst_JES_EtaIntercalibration_Stat241: 8.72679510e-08 + syst_JES_EtaIntercalibration_Stat242: 6.48741295e-08 + syst_JES_EtaIntercalibration_Stat243: 1.10559998e-07 + syst_JES_EtaIntercalibration_Stat244: 9.33228975e-08 + syst_JES_EtaIntercalibration_Stat245: 5.77757066e-08 + syst_JES_EtaIntercalibration_Stat25: 7.69620671e-22 + syst_JES_EtaIntercalibration_Stat26: 1.11872317e-23 + syst_JES_EtaIntercalibration_Stat27: 1.28070964e-22 + syst_JES_EtaIntercalibration_Stat28: 1.54719846e-22 + syst_JES_EtaIntercalibration_Stat29: 7.64142205e-22 + syst_JES_EtaIntercalibration_Stat3: 1.49079750e-23 + syst_JES_EtaIntercalibration_Stat30: 7.09599893e-22 + syst_JES_EtaIntercalibration_Stat31: 1.15927216e-16 + syst_JES_EtaIntercalibration_Stat32: 1.16861852e-16 + syst_JES_EtaIntercalibration_Stat33: 7.71424270e-22 + syst_JES_EtaIntercalibration_Stat34: 6.50730095e-21 + syst_JES_EtaIntercalibration_Stat35: 4.17424245e-09 + syst_JES_EtaIntercalibration_Stat36: 1.95698802e-21 + syst_JES_EtaIntercalibration_Stat37: 1.90802306e-20 + syst_JES_EtaIntercalibration_Stat38: 2.31884809e-21 + syst_JES_EtaIntercalibration_Stat39: 2.39282819e-21 + syst_JES_EtaIntercalibration_Stat4: 1.64027966e-23 + syst_JES_EtaIntercalibration_Stat40: 2.04650247e-22 + syst_JES_EtaIntercalibration_Stat41: 2.37377732e-23 + syst_JES_EtaIntercalibration_Stat42: 3.91530085e-23 + syst_JES_EtaIntercalibration_Stat43: 9.26734147e-24 + syst_JES_EtaIntercalibration_Stat44: 9.26734147e-24 + syst_JES_EtaIntercalibration_Stat45: 8.97304612e-24 + syst_JES_EtaIntercalibration_Stat46: 4.49915848e-22 + syst_JES_EtaIntercalibration_Stat47: 7.27394544e-21 + syst_JES_EtaIntercalibration_Stat48: 2.88299336e-22 + syst_JES_EtaIntercalibration_Stat49: 4.08385027e-22 + syst_JES_EtaIntercalibration_Stat5: 5.67506447e-24 + syst_JES_EtaIntercalibration_Stat50: 1.15917596e-16 + syst_JES_EtaIntercalibration_Stat51: 2.44646255e-21 + syst_JES_EtaIntercalibration_Stat52: 1.12503142e-21 + syst_JES_EtaIntercalibration_Stat53: 1.15934048e-16 + syst_JES_EtaIntercalibration_Stat54: 1.15909816e-16 + syst_JES_EtaIntercalibration_Stat55: 7.83955631e-22 + syst_JES_EtaIntercalibration_Stat56: 2.97528003e-21 + syst_JES_EtaIntercalibration_Stat57: 5.94442487e-16 + syst_JES_EtaIntercalibration_Stat58: 1.41523540e-20 + syst_JES_EtaIntercalibration_Stat59: 7.80356116e-21 + syst_JES_EtaIntercalibration_Stat6: 1.36941753e-23 + syst_JES_EtaIntercalibration_Stat60: 1.58894773e-22 + syst_JES_EtaIntercalibration_Stat61: 2.34332552e-21 + syst_JES_EtaIntercalibration_Stat62: 7.94500445e-22 + syst_JES_EtaIntercalibration_Stat63: 1.70504249e-22 + syst_JES_EtaIntercalibration_Stat64: 1.42623197e-23 + syst_JES_EtaIntercalibration_Stat65: 9.26734147e-24 + syst_JES_EtaIntercalibration_Stat66: 9.26734147e-24 + syst_JES_EtaIntercalibration_Stat67: 1.18637837e-21 + syst_JES_EtaIntercalibration_Stat68: 3.19225488e-20 + syst_JES_EtaIntercalibration_Stat69: 2.64150082e-20 + syst_JES_EtaIntercalibration_Stat7: 1.45161853e-23 + syst_JES_EtaIntercalibration_Stat70: 1.12640061e-20 + syst_JES_EtaIntercalibration_Stat71: 6.81002805e-21 + syst_JES_EtaIntercalibration_Stat72: 1.15925380e-16 + syst_JES_EtaIntercalibration_Stat73: 7.29224096e-15 + syst_JES_EtaIntercalibration_Stat74: 7.39327133e-15 + syst_JES_EtaIntercalibration_Stat75: 9.75577617e-10 + syst_JES_EtaIntercalibration_Stat76: 1.15494291e-16 + syst_JES_EtaIntercalibration_Stat77: 6.71897319e-21 + syst_JES_EtaIntercalibration_Stat78: 1.07828823e-09 + syst_JES_EtaIntercalibration_Stat79: 1.19641410e-09 + syst_JES_EtaIntercalibration_Stat8: 1.68513893e-22 + syst_JES_EtaIntercalibration_Stat80: 5.95232846e-16 + syst_JES_EtaIntercalibration_Stat81: 5.68525508e-15 + syst_JES_EtaIntercalibration_Stat82: 6.70995970e-15 + syst_JES_EtaIntercalibration_Stat83: 2.50107219e-21 + syst_JES_EtaIntercalibration_Stat84: 3.42363326e-21 + syst_JES_EtaIntercalibration_Stat85: 7.18974888e-22 + syst_JES_EtaIntercalibration_Stat86: 8.00502984e-24 + syst_JES_EtaIntercalibration_Stat87: 5.67506447e-24 + syst_JES_EtaIntercalibration_Stat88: 7.18609001e-22 + syst_JES_EtaIntercalibration_Stat89: 1.78940843e-19 + syst_JES_EtaIntercalibration_Stat9: 1.46204756e-22 + syst_JES_EtaIntercalibration_Stat90: 1.80784933e-19 + syst_JES_EtaIntercalibration_Stat91: 1.31147653e-20 + syst_JES_EtaIntercalibration_Stat92: 2.19201699e-20 + syst_JES_EtaIntercalibration_Stat93: 1.15974660e-16 + syst_JES_EtaIntercalibration_Stat94: 6.78307392e-15 + syst_JES_EtaIntercalibration_Stat95: 6.63965361e-15 + syst_JES_EtaIntercalibration_Stat96: 1.10054508e-09 + syst_JES_EtaIntercalibration_Stat97: 1.89486176e-19 + syst_JES_EtaIntercalibration_Stat98: 3.76182770e-20 + syst_JES_EtaIntercalibration_Stat99: 5.14780618e-09 + syst_JES_EtaIntercalibration_TotalStat_MJB: 3.06383648e-05 + syst_JES_Flavour_Comp: 6.86908165e-05 + syst_JES_Flavour_Response: 1.22076622e-05 + syst_JES_Gjet_Generator: 8.07381550e-05 + syst_JES_Gjet_OOC: 6.67998134e-05 + syst_JES_Gjet_Purity: 9.78968825e-06 + syst_JES_Gjet_Stat1: 2.33937016e-07 + syst_JES_Gjet_Stat10: 1.57070518e-06 + syst_JES_Gjet_Stat11: 1.55614459e-06 + syst_JES_Gjet_Stat12: 2.92544915e-06 + syst_JES_Gjet_Stat13: 1.38813732e-05 + syst_JES_Gjet_Stat14: 3.71814385e-05 + syst_JES_Gjet_Stat15: 6.19941907e-05 + syst_JES_Gjet_Stat2: 2.66761766e-07 + syst_JES_Gjet_Stat3: 3.21221835e-07 + syst_JES_Gjet_Stat4: 6.91437061e-07 + syst_JES_Gjet_Stat5: 4.93863349e-07 + syst_JES_Gjet_Stat6: 1.19650068e-06 + syst_JES_Gjet_Stat7: 8.10483342e-07 + syst_JES_Gjet_Stat8: 3.78848439e-07 + syst_JES_Gjet_Stat9: 8.35262983e-07 + syst_JES_Gjet_Veto: 7.00414711e-05 + syst_JES_Gjet_dPhi: 6.42980840e-06 + syst_JES_LArESZee: 1.20139255e-04 + syst_JES_LArEsmear: 1.07388990e-05 + syst_JES_LAr_JVT: 1.36396710e-05 + syst_JES_MJB_Alpha: 1.67438130e-06 + syst_JES_MJB_Asym: 2.38274044e-05 + syst_JES_MJB_Beta: 1.27198511e-06 + syst_JES_MJB_Fragmentation: 7.46553166e-06 + syst_JES_MJB_Stat1: 4.27329032e-11 + syst_JES_MJB_Stat10: 6.79873106e-07 + syst_JES_MJB_Stat11: 1.04701006e-06 + syst_JES_MJB_Stat12: 1.86709614e-06 + syst_JES_MJB_Stat13: 2.63727336e-06 + syst_JES_MJB_Stat14: 4.20559449e-06 + syst_JES_MJB_Stat15: 4.54296828e-06 + syst_JES_MJB_Stat16: 5.66503546e-06 + syst_JES_MJB_Stat2: 1.98409645e-08 + syst_JES_MJB_Stat3: 1.09312412e-07 + syst_JES_MJB_Stat4: 6.95758018e-08 + syst_JES_MJB_Stat5: 3.54718913e-08 + syst_JES_MJB_Stat6: 9.81135438e-08 + syst_JES_MJB_Stat7: 1.90283343e-07 + syst_JES_MJB_Stat8: 2.86900518e-07 + syst_JES_MJB_Stat9: 3.99889022e-07 + syst_JES_MJB_Threshold: 1.27947832e-05 + syst_JES_Pileup_MuOffset: 1.87309924e-05 + syst_JES_Pileup_NPVOffset: 1.81275502e-05 + syst_JES_Pileup_Pt_term: 9.09532143e-06 + syst_JES_Pileup_Rho_topology: 2.18353355e-05 + syst_JES_PunchThrough_MC15: 3.10710907e-05 + syst_JES_SingleParticle_HighPt: 7.26751421e-08 + syst_JES_Zjet_MC: 3.01563505e-05 + syst_JES_Zjet_MuScale: 2.12727079e-06 + syst_JES_Zjet_MuSmearID: 4.98784871e-07 + syst_JES_Zjet_MuSmearMS: 7.42684487e-06 + syst_JES_Zjet_OOC: 1.90284176e-05 + syst_JES_Zjet_Stat1: 2.20324460e-06 + syst_JES_Zjet_Stat10: 1.36797755e-06 + syst_JES_Zjet_Stat11: 1.83958494e-06 + syst_JES_Zjet_Stat12: 4.52892335e-06 + syst_JES_Zjet_Stat13: 7.47737205e-06 + syst_JES_Zjet_Stat2: 4.76769490e-08 + syst_JES_Zjet_Stat3: 1.04127463e-06 + syst_JES_Zjet_Stat4: 1.17134065e-06 + syst_JES_Zjet_Stat5: 1.16446790e-06 + syst_JES_Zjet_Stat6: 9.07440581e-07 + syst_JES_Zjet_Stat7: 1.14797934e-06 + syst_JES_Zjet_Stat8: 7.95520375e-07 + syst_JES_Zjet_Stat9: 9.15918970e-07 + syst_JES_Zjet_Veto: 3.55485105e-06 + syst_JES_Zjet_dPhi: 3.33803187e-06 syst_PRW: 0.0 syst_Unfolding_bias: 0.0 - syst_cleaning: 2.9306299664065406e-05 - syst_lumi: 5.637e-05 -- stat: 5.584e-05 - syst_JER_CROSS_CALIB_FORWARD: 3.476e-20 - syst_JER_NOISE_FORWARD: 5.641e-18 - syst_JER_NP0: 2.5620878205088913e-06 - syst_JER_NP1: 5.066670208332095e-07 - syst_JER_NP2: 2.206720813786828e-06 - syst_JER_NP3: 2.9268317341453027e-07 - syst_JER_NP4: 1.798889657538783e-07 - syst_JER_NP5: 5.749302109821677e-07 - syst_JER_NP6: 4.012928450645489e-07 - syst_JER_NP7: 5.32300169077561e-22 - syst_JER_NP8: 5.261866874028646e-07 - syst_JES_EtaIntercalibration_Modelling: 5.827960964179496e-05 - syst_JES_EtaIntercalibration_NonClosure: 2.107257475369348e-09 - syst_JES_EtaIntercalibration_Stat0: 2.9896474708567227e-24 - syst_JES_EtaIntercalibration_Stat1: 4.5480008795073914e-24 - syst_JES_EtaIntercalibration_Stat10: 3.484763514214415e-24 - syst_JES_EtaIntercalibration_Stat100: 2.1927763223831476e-09 - syst_JES_EtaIntercalibration_Stat101: 7.016718326967388e-20 - syst_JES_EtaIntercalibration_Stat102: 5.487506353789556e-16 - syst_JES_EtaIntercalibration_Stat103: 5.484439556249445e-16 - syst_JES_EtaIntercalibration_Stat104: 2.9982988510153555e-21 - syst_JES_EtaIntercalibration_Stat105: 3.8545537962356934e-19 - syst_JES_EtaIntercalibration_Stat106: 2.5903490107850333e-20 - syst_JES_EtaIntercalibration_Stat107: 3.629341365867918e-24 - syst_JES_EtaIntercalibration_Stat108: 1.669057400900281e-20 - syst_JES_EtaIntercalibration_Stat109: 6.736357333158626e-18 - syst_JES_EtaIntercalibration_Stat11: 2.9316370853159844e-24 - syst_JES_EtaIntercalibration_Stat110: 1.8554265134464367e-17 - syst_JES_EtaIntercalibration_Stat111: 1.441466761993224e-14 - syst_JES_EtaIntercalibration_Stat112: 1.4436443581612302e-14 - syst_JES_EtaIntercalibration_Stat113: 3.3554221531473753e-09 - syst_JES_EtaIntercalibration_Stat114: 3.84255469096875e-09 - syst_JES_EtaIntercalibration_Stat115: 1.714730518020377e-09 - syst_JES_EtaIntercalibration_Stat116: 2.1105077185359926e-09 - syst_JES_EtaIntercalibration_Stat117: 1.1969982121958246e-18 - syst_JES_EtaIntercalibration_Stat118: 1.199415013699074e-14 - syst_JES_EtaIntercalibration_Stat119: 9.929454108816437e-11 - syst_JES_EtaIntercalibration_Stat12: 1.0652163383557351e-22 - syst_JES_EtaIntercalibration_Stat120: 9.66123540133455e-10 - syst_JES_EtaIntercalibration_Stat121: 6.275461661901856e-19 - syst_JES_EtaIntercalibration_Stat122: 9.829378056161566e-15 - syst_JES_EtaIntercalibration_Stat123: 1.6121787331124301e-15 - syst_JES_EtaIntercalibration_Stat124: 6.970207170522265e-15 - syst_JES_EtaIntercalibration_Stat125: 1.8270123152294293e-18 - syst_JES_EtaIntercalibration_Stat126: 5.648002899255631e-19 - syst_JES_EtaIntercalibration_Stat127: 1.7381129853953684e-23 - syst_JES_EtaIntercalibration_Stat128: 2.0468680343392924e-17 - syst_JES_EtaIntercalibration_Stat129: 1.6766254737795103e-12 - syst_JES_EtaIntercalibration_Stat13: 8.079766998496924e-24 - syst_JES_EtaIntercalibration_Stat130: 1.8013324719266065e-11 - syst_JES_EtaIntercalibration_Stat131: 3.339751649550457e-14 - syst_JES_EtaIntercalibration_Stat132: 1.1622865775217667e-09 - syst_JES_EtaIntercalibration_Stat133: 4.503697151230309e-09 - syst_JES_EtaIntercalibration_Stat134: 2.3240075795917705e-16 - syst_JES_EtaIntercalibration_Stat135: 2.0988416473855287e-16 - syst_JES_EtaIntercalibration_Stat136: 1.1227107415536738e-08 - syst_JES_EtaIntercalibration_Stat137: 4.979137877183158e-09 - syst_JES_EtaIntercalibration_Stat138: 9.198515247038512e-09 - syst_JES_EtaIntercalibration_Stat139: 4.1993571962673274e-09 - syst_JES_EtaIntercalibration_Stat14: 7.79574773514382e-24 - syst_JES_EtaIntercalibration_Stat140: 2.7261440914779245e-09 - syst_JES_EtaIntercalibration_Stat141: 2.453449776844841e-09 - syst_JES_EtaIntercalibration_Stat142: 2.2372646063217466e-10 - syst_JES_EtaIntercalibration_Stat143: 2.2450064587880367e-15 - syst_JES_EtaIntercalibration_Stat144: 7.523652577164565e-15 - syst_JES_EtaIntercalibration_Stat145: 1.689441842939555e-17 - syst_JES_EtaIntercalibration_Stat146: 9.069907662154009e-17 - syst_JES_EtaIntercalibration_Stat147: 1.5345053830484555e-12 - syst_JES_EtaIntercalibration_Stat148: 1.801322257289896e-11 - syst_JES_EtaIntercalibration_Stat149: 2.238675668782774e-14 - syst_JES_EtaIntercalibration_Stat15: 2.031789668660366e-24 - syst_JES_EtaIntercalibration_Stat150: 1.1677424942655581e-09 - syst_JES_EtaIntercalibration_Stat151: 1.6194675108071017e-09 - syst_JES_EtaIntercalibration_Stat152: 3.096906859336858e-09 - syst_JES_EtaIntercalibration_Stat153: 1.110765879871519e-15 - syst_JES_EtaIntercalibration_Stat154: 3.6273465508550463e-09 - syst_JES_EtaIntercalibration_Stat155: 4.9844553112652145e-09 - syst_JES_EtaIntercalibration_Stat156: 6.906343225615129e-09 - syst_JES_EtaIntercalibration_Stat157: 7.048565297278588e-15 - syst_JES_EtaIntercalibration_Stat158: 4.617870854625538e-09 - syst_JES_EtaIntercalibration_Stat159: 2.0138725549299292e-09 - syst_JES_EtaIntercalibration_Stat16: 1.993257100827688e-24 - syst_JES_EtaIntercalibration_Stat160: 4.1950166167817497e-16 - syst_JES_EtaIntercalibration_Stat161: 9.676264917311844e-16 - syst_JES_EtaIntercalibration_Stat162: 5.20357214283371e-15 - syst_JES_EtaIntercalibration_Stat163: 5.279700082966361e-16 - syst_JES_EtaIntercalibration_Stat164: 1.4830024974692387e-16 - syst_JES_EtaIntercalibration_Stat165: 2.9390667703031175e-12 - syst_JES_EtaIntercalibration_Stat166: 2.1856996844660523e-12 - syst_JES_EtaIntercalibration_Stat167: 1.4869762708261351e-08 - syst_JES_EtaIntercalibration_Stat168: 6.940088832284498e-09 - syst_JES_EtaIntercalibration_Stat169: 2.8688171233977254e-09 - syst_JES_EtaIntercalibration_Stat17: 2.9981387559617715e-24 - syst_JES_EtaIntercalibration_Stat170: 1.2548935420106325e-09 - syst_JES_EtaIntercalibration_Stat171: 5.867934372225715e-09 - syst_JES_EtaIntercalibration_Stat172: 6.198814500928282e-09 - syst_JES_EtaIntercalibration_Stat173: 1.932968669299192e-09 - syst_JES_EtaIntercalibration_Stat174: 1.0709905379133842e-08 - syst_JES_EtaIntercalibration_Stat175: 1.1081785063224245e-08 - syst_JES_EtaIntercalibration_Stat176: 2.6459767572675313e-09 - syst_JES_EtaIntercalibration_Stat177: 2.8378810757323854e-09 - syst_JES_EtaIntercalibration_Stat178: 1.1196071093021872e-08 - syst_JES_EtaIntercalibration_Stat179: 7.041055581906735e-12 - syst_JES_EtaIntercalibration_Stat18: 2.9896474708567227e-24 - syst_JES_EtaIntercalibration_Stat180: 1.0115621730768702e-14 - syst_JES_EtaIntercalibration_Stat181: 1.6645008243044012e-15 - syst_JES_EtaIntercalibration_Stat182: 3.872284568924356e-10 - syst_JES_EtaIntercalibration_Stat183: 1.7554334934710554e-09 - syst_JES_EtaIntercalibration_Stat184: 5.604443029478933e-09 - syst_JES_EtaIntercalibration_Stat185: 2.6854212272006785e-08 - syst_JES_EtaIntercalibration_Stat186: 5.5938765404681574e-08 - syst_JES_EtaIntercalibration_Stat187: 9.28258750295412e-08 - syst_JES_EtaIntercalibration_Stat188: 4.3317636996955404e-08 - syst_JES_EtaIntercalibration_Stat189: 5.294900565638603e-08 - syst_JES_EtaIntercalibration_Stat19: 1.8005776038538298e-23 - syst_JES_EtaIntercalibration_Stat190: 5.89273951570914e-08 - syst_JES_EtaIntercalibration_Stat191: 7.443613638549492e-08 - syst_JES_EtaIntercalibration_Stat192: 1.0375919573705263e-07 - syst_JES_EtaIntercalibration_Stat193: 5.2401914087178154e-08 - syst_JES_EtaIntercalibration_Stat194: 1.9325504386884705e-08 - syst_JES_EtaIntercalibration_Stat195: 1.1296702929616234e-08 - syst_JES_EtaIntercalibration_Stat196: 9.105064785601474e-09 - syst_JES_EtaIntercalibration_Stat197: 9.631050617663683e-12 - syst_JES_EtaIntercalibration_Stat198: 1.460401487288684e-08 - syst_JES_EtaIntercalibration_Stat199: 2.3673824532592954e-08 - syst_JES_EtaIntercalibration_Stat2: 2.2869334817611115e-24 - syst_JES_EtaIntercalibration_Stat20: 2.9896474708567227e-24 - syst_JES_EtaIntercalibration_Stat200: 3.312782969045814e-08 - syst_JES_EtaIntercalibration_Stat201: 1.1052327447194097e-07 - syst_JES_EtaIntercalibration_Stat202: 2.392637613597178e-07 - syst_JES_EtaIntercalibration_Stat203: 1.5974566911187296e-07 - syst_JES_EtaIntercalibration_Stat204: 7.722337987941219e-08 - syst_JES_EtaIntercalibration_Stat205: 1.3233792918131975e-07 - syst_JES_EtaIntercalibration_Stat206: 1.7736648696977677e-07 - syst_JES_EtaIntercalibration_Stat207: 2.306801681983087e-07 - syst_JES_EtaIntercalibration_Stat208: 1.2499497749909795e-07 - syst_JES_EtaIntercalibration_Stat209: 6.011385198105342e-08 - syst_JES_EtaIntercalibration_Stat21: 2.9896474708567227e-24 - syst_JES_EtaIntercalibration_Stat210: 1.6720353487591105e-08 - syst_JES_EtaIntercalibration_Stat211: 1.3872922799468035e-08 - syst_JES_EtaIntercalibration_Stat212: 2.0777260809596627e-08 - syst_JES_EtaIntercalibration_Stat213: 4.748730646183252e-08 - syst_JES_EtaIntercalibration_Stat214: 1.1098872104858225e-07 - syst_JES_EtaIntercalibration_Stat215: 2.5840067724369456e-07 - syst_JES_EtaIntercalibration_Stat216: 2.035888258230299e-07 - syst_JES_EtaIntercalibration_Stat217: 7.878717408309552e-08 - syst_JES_EtaIntercalibration_Stat218: 1.5460034767101917e-07 - syst_JES_EtaIntercalibration_Stat219: 1.9537949610949454e-07 - syst_JES_EtaIntercalibration_Stat22: 2.9896474708567227e-24 - syst_JES_EtaIntercalibration_Stat220: 2.4879233810549716e-07 - syst_JES_EtaIntercalibration_Stat221: 8.939854403176821e-08 - syst_JES_EtaIntercalibration_Stat222: 4.270212260532256e-08 - syst_JES_EtaIntercalibration_Stat223: 2.3390784094756207e-08 - syst_JES_EtaIntercalibration_Stat224: 7.029250653519193e-08 - syst_JES_EtaIntercalibration_Stat225: 2.1569390348361726e-07 - syst_JES_EtaIntercalibration_Stat226: 3.92219033194464e-07 - syst_JES_EtaIntercalibration_Stat227: 6.904623016501335e-07 - syst_JES_EtaIntercalibration_Stat228: 5.512701152792522e-07 - syst_JES_EtaIntercalibration_Stat229: 3.097520459980854e-07 - syst_JES_EtaIntercalibration_Stat23: 2.3863428337101944e-23 - syst_JES_EtaIntercalibration_Stat230: 3.463236780816466e-07 - syst_JES_EtaIntercalibration_Stat231: 6.874149474662302e-07 - syst_JES_EtaIntercalibration_Stat232: 7.116730481759162e-07 - syst_JES_EtaIntercalibration_Stat233: 4.101746548727749e-07 - syst_JES_EtaIntercalibration_Stat234: 1.7288759006938584e-07 - syst_JES_EtaIntercalibration_Stat235: 6.67099368535153e-08 - syst_JES_EtaIntercalibration_Stat236: 2.070321743111442e-08 - syst_JES_EtaIntercalibration_Stat237: 8.787698262343788e-08 - syst_JES_EtaIntercalibration_Stat238: 1.5177144222481383e-07 - syst_JES_EtaIntercalibration_Stat239: 5.73863197983631e-08 - syst_JES_EtaIntercalibration_Stat24: 1.305459716986702e-22 - syst_JES_EtaIntercalibration_Stat240: 5.549730331286377e-08 - syst_JES_EtaIntercalibration_Stat241: 5.4388541762029254e-08 - syst_JES_EtaIntercalibration_Stat242: 5.019425863582408e-08 - syst_JES_EtaIntercalibration_Stat243: 9.210332933721777e-08 - syst_JES_EtaIntercalibration_Stat244: 4.977047995639495e-08 - syst_JES_EtaIntercalibration_Stat245: 2.8378441090905607e-08 - syst_JES_EtaIntercalibration_Stat25: 1.318558010669231e-22 - syst_JES_EtaIntercalibration_Stat26: 2.343018316189611e-24 - syst_JES_EtaIntercalibration_Stat27: 3.50903929160105e-24 - syst_JES_EtaIntercalibration_Stat28: 2.9399049304356767e-23 - syst_JES_EtaIntercalibration_Stat29: 1.216644117028476e-22 - syst_JES_EtaIntercalibration_Stat3: 3.1997904661868094e-24 - syst_JES_EtaIntercalibration_Stat30: 1.3080647805059198e-22 - syst_JES_EtaIntercalibration_Stat31: 1.1086162331030468e-17 - syst_JES_EtaIntercalibration_Stat32: 1.1197768632123675e-17 - syst_JES_EtaIntercalibration_Stat33: 1.6103431375952145e-22 - syst_JES_EtaIntercalibration_Stat34: 1.0706652933885314e-21 - syst_JES_EtaIntercalibration_Stat35: 2.2464698974168175e-09 - syst_JES_EtaIntercalibration_Stat36: 1.1374313754669994e-22 - syst_JES_EtaIntercalibration_Stat37: 3.170713611747835e-21 - syst_JES_EtaIntercalibration_Stat38: 3.705429934568997e-22 - syst_JES_EtaIntercalibration_Stat39: 3.8044495988250385e-22 - syst_JES_EtaIntercalibration_Stat4: 4.5480008795073914e-24 - syst_JES_EtaIntercalibration_Stat40: 3.831498832089082e-23 - syst_JES_EtaIntercalibration_Stat41: 6.202854558185288e-24 - syst_JES_EtaIntercalibration_Stat42: 8.24542786943164e-24 - syst_JES_EtaIntercalibration_Stat43: 2.9896474708567227e-24 - syst_JES_EtaIntercalibration_Stat44: 2.9896474708567227e-24 - syst_JES_EtaIntercalibration_Stat45: 2.2869334817611115e-24 - syst_JES_EtaIntercalibration_Stat46: 9.666543785138512e-23 - syst_JES_EtaIntercalibration_Stat47: 1.0781493623334385e-21 - syst_JES_EtaIntercalibration_Stat48: 1.8407453945345077e-23 - syst_JES_EtaIntercalibration_Stat49: 4.752836302672332e-23 - syst_JES_EtaIntercalibration_Stat5: 1.8307777036003032e-24 - syst_JES_EtaIntercalibration_Stat50: 1.1085996762399135e-17 - syst_JES_EtaIntercalibration_Stat51: 3.3279606412937037e-22 - syst_JES_EtaIntercalibration_Stat52: 1.946040314972945e-22 - syst_JES_EtaIntercalibration_Stat53: 1.1088180211229286e-17 - syst_JES_EtaIntercalibration_Stat54: 1.108441786571627e-17 - syst_JES_EtaIntercalibration_Stat55: 2.0429407896461415e-22 - syst_JES_EtaIntercalibration_Stat56: 3.424168054444028e-22 - syst_JES_EtaIntercalibration_Stat57: 5.274996993044785e-17 - syst_JES_EtaIntercalibration_Stat58: 2.0704622962034344e-21 - syst_JES_EtaIntercalibration_Stat59: 1.1537317311663054e-21 - syst_JES_EtaIntercalibration_Stat6: 3.499643008579589e-24 - syst_JES_EtaIntercalibration_Stat60: 3.7652390362366105e-23 - syst_JES_EtaIntercalibration_Stat61: 3.825886847189812e-22 - syst_JES_EtaIntercalibration_Stat62: 1.5407393013745057e-22 - syst_JES_EtaIntercalibration_Stat63: 2.684195805078311e-23 - syst_JES_EtaIntercalibration_Stat64: 3.718600139837571e-24 - syst_JES_EtaIntercalibration_Stat65: 2.9896474708567227e-24 - syst_JES_EtaIntercalibration_Stat66: 2.9896474708567227e-24 - syst_JES_EtaIntercalibration_Stat67: 2.0932666021078155e-22 - syst_JES_EtaIntercalibration_Stat68: 4.301243657362368e-21 - syst_JES_EtaIntercalibration_Stat69: 3.361064414735308e-21 - syst_JES_EtaIntercalibration_Stat7: 3.105101101011044e-24 - syst_JES_EtaIntercalibration_Stat70: 1.5796084957988798e-21 - syst_JES_EtaIntercalibration_Stat71: 9.853340080906577e-22 - syst_JES_EtaIntercalibration_Stat72: 1.1086677270853999e-17 - syst_JES_EtaIntercalibration_Stat73: 5.952546516145422e-16 - syst_JES_EtaIntercalibration_Stat74: 6.03967544688665e-16 - syst_JES_EtaIntercalibration_Stat75: 4.245256529350188e-10 - syst_JES_EtaIntercalibration_Stat76: 1.1051512971192559e-17 - syst_JES_EtaIntercalibration_Stat77: 8.761595787868782e-22 - syst_JES_EtaIntercalibration_Stat78: 3.94474571423569e-10 - syst_JES_EtaIntercalibration_Stat79: 3.5966035019338287e-10 - syst_JES_EtaIntercalibration_Stat8: 3.0469982802751956e-23 - syst_JES_EtaIntercalibration_Stat80: 5.284613610067598e-17 - syst_JES_EtaIntercalibration_Stat81: 4.645940923432707e-16 - syst_JES_EtaIntercalibration_Stat82: 5.481936357486111e-16 - syst_JES_EtaIntercalibration_Stat83: 5.21441605071939e-22 - syst_JES_EtaIntercalibration_Stat84: 5.80638975612213e-22 - syst_JES_EtaIntercalibration_Stat85: 9.465955775831619e-23 - syst_JES_EtaIntercalibration_Stat86: 1.3037267811930535e-24 - syst_JES_EtaIntercalibration_Stat87: 1.8307777036003032e-24 - syst_JES_EtaIntercalibration_Stat88: 1.1976089643104506e-22 - syst_JES_EtaIntercalibration_Stat89: 2.138668288725486e-20 - syst_JES_EtaIntercalibration_Stat9: 2.513004317281409e-23 - syst_JES_EtaIntercalibration_Stat90: 2.1988000517327625e-20 - syst_JES_EtaIntercalibration_Stat91: 2.0018468348003054e-21 - syst_JES_EtaIntercalibration_Stat92: 2.6568660109233963e-21 - syst_JES_EtaIntercalibration_Stat93: 1.1096297800142656e-17 - syst_JES_EtaIntercalibration_Stat94: 5.536906762360641e-16 - syst_JES_EtaIntercalibration_Stat95: 5.416370896412099e-16 - syst_JES_EtaIntercalibration_Stat96: 3.878061758142749e-10 - syst_JES_EtaIntercalibration_Stat97: 2.2966586598796085e-20 - syst_JES_EtaIntercalibration_Stat98: 5.155248702778557e-21 - syst_JES_EtaIntercalibration_Stat99: 2.3931976663033916e-09 - syst_JES_EtaIntercalibration_TotalStat_MJB: 1.959188288552175e-05 - syst_JES_Flavour_Comp: 3.777714900571509e-05 - syst_JES_Flavour_Response: 1.0277093509353703e-05 - syst_JES_Gjet_Generator: 4.7500109473558056e-05 - syst_JES_Gjet_OOC: 3.9101522988241774e-05 - syst_JES_Gjet_Purity: 4.821050170865266e-06 - syst_JES_Gjet_Stat1: 1.0362309238292399e-07 - syst_JES_Gjet_Stat10: 1.2002146974604168e-06 - syst_JES_Gjet_Stat11: 1.2014519996654048e-06 - syst_JES_Gjet_Stat12: 1.5584011036957076e-06 - syst_JES_Gjet_Stat13: 8.762840806496486e-06 - syst_JES_Gjet_Stat14: 2.393290778405332e-05 - syst_JES_Gjet_Stat15: 4.024987511471309e-05 - syst_JES_Gjet_Stat2: 1.83954015993128e-07 - syst_JES_Gjet_Stat3: 2.1022458675188303e-07 - syst_JES_Gjet_Stat4: 4.773490415827814e-07 - syst_JES_Gjet_Stat5: 3.8121117546577774e-07 - syst_JES_Gjet_Stat6: 7.85050538182097e-07 - syst_JES_Gjet_Stat7: 5.354253519399321e-07 - syst_JES_Gjet_Stat8: 2.160581866072193e-07 - syst_JES_Gjet_Stat9: 5.921491112887024e-07 - syst_JES_Gjet_Veto: 4.21407427556753e-05 - syst_JES_Gjet_dPhi: 3.4876907474717424e-06 - syst_JES_LArESZee: 6.893945659054764e-05 - syst_JES_LArEsmear: 6.164085820298092e-06 - syst_JES_LAr_JVT: 7.980481486100949e-06 - syst_JES_MJB_Alpha: 1.12329227274116e-06 - syst_JES_MJB_Asym: 1.8266315309881192e-05 - syst_JES_MJB_Beta: 1.097551660515349e-06 - syst_JES_MJB_Fragmentation: 4.950015227249307e-06 - syst_JES_MJB_Stat1: 3.770471041756023e-12 - syst_JES_MJB_Stat10: 3.1513452682941614e-07 - syst_JES_MJB_Stat11: 4.937776017601446e-07 - syst_JES_MJB_Stat12: 8.962686134747774e-07 - syst_JES_MJB_Stat13: 1.3721043938053694e-06 - syst_JES_MJB_Stat14: 3.324911540176671e-06 - syst_JES_MJB_Stat15: 7.544036452722109e-07 - syst_JES_MJB_Stat16: 7.613368817415849e-06 - syst_JES_MJB_Stat2: 5.396834630595975e-09 - syst_JES_MJB_Stat3: 4.527758247742475e-08 - syst_JES_MJB_Stat4: 2.1689398331904e-08 - syst_JES_MJB_Stat5: 2.4314714381830605e-08 - syst_JES_MJB_Stat6: 5.156322599488903e-08 - syst_JES_MJB_Stat7: 7.750757559748595e-08 - syst_JES_MJB_Stat8: 1.211109832963138e-07 - syst_JES_MJB_Stat9: 1.639585523081977e-07 - syst_JES_MJB_Threshold: 7.825303700176754e-06 - syst_JES_Pileup_MuOffset: 1.2198932207369627e-05 - syst_JES_Pileup_NPVOffset: 1.1075970600809665e-05 - syst_JES_Pileup_Pt_term: 4.91838459252629e-06 - syst_JES_Pileup_Rho_topology: 1.3673781581918002e-05 - syst_JES_PunchThrough_MC15: 2.1971841069878508e-05 - syst_JES_SingleParticle_HighPt: 1.5596348130251517e-07 - syst_JES_Zjet_MC: 1.7788996599021542e-05 - syst_JES_Zjet_MuScale: 1.3830195515610037e-06 - syst_JES_Zjet_MuSmearID: 3.546263312276741e-07 - syst_JES_Zjet_MuSmearMS: 4.0671315675178245e-06 - syst_JES_Zjet_OOC: 1.1183579693014219e-05 - syst_JES_Zjet_Stat1: 1.5275276593240463e-06 - syst_JES_Zjet_Stat10: 8.573079770420897e-07 - syst_JES_Zjet_Stat11: 1.0955000821542642e-06 - syst_JES_Zjet_Stat12: 2.3981582516589684e-06 - syst_JES_Zjet_Stat13: 4.223833803548619e-06 - syst_JES_Zjet_Stat2: 2.604005048590152e-08 - syst_JES_Zjet_Stat3: 6.039050484140698e-07 - syst_JES_Zjet_Stat4: 7.34644458224521e-07 - syst_JES_Zjet_Stat5: 7.343869688386362e-07 - syst_JES_Zjet_Stat6: 6.62036940056973e-07 - syst_JES_Zjet_Stat7: 7.590022710769711e-07 - syst_JES_Zjet_Stat8: 4.049353734548268e-07 - syst_JES_Zjet_Stat9: 6.401432085869535e-07 - syst_JES_Zjet_Veto: 2.008017928206818e-06 - syst_JES_Zjet_dPhi: 1.8955381162086927e-06 + syst_cleaning: 2.93062997e-05 + syst_lumi: 5.63700000e-05 +- stat: 5.58400000e-05 + syst_JER_CROSS_CALIB_FORWARD: 3.47600000e-20 + syst_JER_NOISE_FORWARD: 5.64100000e-18 + syst_JER_NP0: 2.56208782e-06 + syst_JER_NP1: 5.06667021e-07 + syst_JER_NP2: 2.20672081e-06 + syst_JER_NP3: 2.92683173e-07 + syst_JER_NP4: 1.79888966e-07 + syst_JER_NP5: 5.74930211e-07 + syst_JER_NP6: 4.01292845e-07 + syst_JER_NP7: 5.32300169e-22 + syst_JER_NP8: 5.26186687e-07 + syst_JES_EtaIntercalibration_Modelling: 5.82796096e-05 + syst_JES_EtaIntercalibration_NonClosure: 2.10725748e-09 + syst_JES_EtaIntercalibration_Stat0: 2.98964747e-24 + syst_JES_EtaIntercalibration_Stat1: 4.54800088e-24 + syst_JES_EtaIntercalibration_Stat10: 3.48476351e-24 + syst_JES_EtaIntercalibration_Stat100: 2.19277632e-09 + syst_JES_EtaIntercalibration_Stat101: 7.01671833e-20 + syst_JES_EtaIntercalibration_Stat102: 5.48750635e-16 + syst_JES_EtaIntercalibration_Stat103: 5.48443956e-16 + syst_JES_EtaIntercalibration_Stat104: 2.99829885e-21 + syst_JES_EtaIntercalibration_Stat105: 3.85455380e-19 + syst_JES_EtaIntercalibration_Stat106: 2.59034901e-20 + syst_JES_EtaIntercalibration_Stat107: 3.62934137e-24 + syst_JES_EtaIntercalibration_Stat108: 1.66905740e-20 + syst_JES_EtaIntercalibration_Stat109: 6.73635733e-18 + syst_JES_EtaIntercalibration_Stat11: 2.93163709e-24 + syst_JES_EtaIntercalibration_Stat110: 1.85542651e-17 + syst_JES_EtaIntercalibration_Stat111: 1.44146676e-14 + syst_JES_EtaIntercalibration_Stat112: 1.44364436e-14 + syst_JES_EtaIntercalibration_Stat113: 3.35542215e-09 + syst_JES_EtaIntercalibration_Stat114: 3.84255469e-09 + syst_JES_EtaIntercalibration_Stat115: 1.71473052e-09 + syst_JES_EtaIntercalibration_Stat116: 2.11050772e-09 + syst_JES_EtaIntercalibration_Stat117: 1.19699821e-18 + syst_JES_EtaIntercalibration_Stat118: 1.19941501e-14 + syst_JES_EtaIntercalibration_Stat119: 9.92945411e-11 + syst_JES_EtaIntercalibration_Stat12: 1.06521634e-22 + syst_JES_EtaIntercalibration_Stat120: 9.66123540e-10 + syst_JES_EtaIntercalibration_Stat121: 6.27546166e-19 + syst_JES_EtaIntercalibration_Stat122: 9.82937806e-15 + syst_JES_EtaIntercalibration_Stat123: 1.61217873e-15 + syst_JES_EtaIntercalibration_Stat124: 6.97020717e-15 + syst_JES_EtaIntercalibration_Stat125: 1.82701232e-18 + syst_JES_EtaIntercalibration_Stat126: 5.64800290e-19 + syst_JES_EtaIntercalibration_Stat127: 1.73811299e-23 + syst_JES_EtaIntercalibration_Stat128: 2.04686803e-17 + syst_JES_EtaIntercalibration_Stat129: 1.67662547e-12 + syst_JES_EtaIntercalibration_Stat13: 8.07976700e-24 + syst_JES_EtaIntercalibration_Stat130: 1.80133247e-11 + syst_JES_EtaIntercalibration_Stat131: 3.33975165e-14 + syst_JES_EtaIntercalibration_Stat132: 1.16228658e-09 + syst_JES_EtaIntercalibration_Stat133: 4.50369715e-09 + syst_JES_EtaIntercalibration_Stat134: 2.32400758e-16 + syst_JES_EtaIntercalibration_Stat135: 2.09884165e-16 + syst_JES_EtaIntercalibration_Stat136: 1.12271074e-08 + syst_JES_EtaIntercalibration_Stat137: 4.97913788e-09 + syst_JES_EtaIntercalibration_Stat138: 9.19851525e-09 + syst_JES_EtaIntercalibration_Stat139: 4.19935720e-09 + syst_JES_EtaIntercalibration_Stat14: 7.79574774e-24 + syst_JES_EtaIntercalibration_Stat140: 2.72614409e-09 + syst_JES_EtaIntercalibration_Stat141: 2.45344978e-09 + syst_JES_EtaIntercalibration_Stat142: 2.23726461e-10 + syst_JES_EtaIntercalibration_Stat143: 2.24500646e-15 + syst_JES_EtaIntercalibration_Stat144: 7.52365258e-15 + syst_JES_EtaIntercalibration_Stat145: 1.68944184e-17 + syst_JES_EtaIntercalibration_Stat146: 9.06990766e-17 + syst_JES_EtaIntercalibration_Stat147: 1.53450538e-12 + syst_JES_EtaIntercalibration_Stat148: 1.80132226e-11 + syst_JES_EtaIntercalibration_Stat149: 2.23867567e-14 + syst_JES_EtaIntercalibration_Stat15: 2.03178967e-24 + syst_JES_EtaIntercalibration_Stat150: 1.16774249e-09 + syst_JES_EtaIntercalibration_Stat151: 1.61946751e-09 + syst_JES_EtaIntercalibration_Stat152: 3.09690686e-09 + syst_JES_EtaIntercalibration_Stat153: 1.11076588e-15 + syst_JES_EtaIntercalibration_Stat154: 3.62734655e-09 + syst_JES_EtaIntercalibration_Stat155: 4.98445531e-09 + syst_JES_EtaIntercalibration_Stat156: 6.90634323e-09 + syst_JES_EtaIntercalibration_Stat157: 7.04856530e-15 + syst_JES_EtaIntercalibration_Stat158: 4.61787085e-09 + syst_JES_EtaIntercalibration_Stat159: 2.01387255e-09 + syst_JES_EtaIntercalibration_Stat16: 1.99325710e-24 + syst_JES_EtaIntercalibration_Stat160: 4.19501662e-16 + syst_JES_EtaIntercalibration_Stat161: 9.67626492e-16 + syst_JES_EtaIntercalibration_Stat162: 5.20357214e-15 + syst_JES_EtaIntercalibration_Stat163: 5.27970008e-16 + syst_JES_EtaIntercalibration_Stat164: 1.48300250e-16 + syst_JES_EtaIntercalibration_Stat165: 2.93906677e-12 + syst_JES_EtaIntercalibration_Stat166: 2.18569968e-12 + syst_JES_EtaIntercalibration_Stat167: 1.48697627e-08 + syst_JES_EtaIntercalibration_Stat168: 6.94008883e-09 + syst_JES_EtaIntercalibration_Stat169: 2.86881712e-09 + syst_JES_EtaIntercalibration_Stat17: 2.99813876e-24 + syst_JES_EtaIntercalibration_Stat170: 1.25489354e-09 + syst_JES_EtaIntercalibration_Stat171: 5.86793437e-09 + syst_JES_EtaIntercalibration_Stat172: 6.19881450e-09 + syst_JES_EtaIntercalibration_Stat173: 1.93296867e-09 + syst_JES_EtaIntercalibration_Stat174: 1.07099054e-08 + syst_JES_EtaIntercalibration_Stat175: 1.10817851e-08 + syst_JES_EtaIntercalibration_Stat176: 2.64597676e-09 + syst_JES_EtaIntercalibration_Stat177: 2.83788108e-09 + syst_JES_EtaIntercalibration_Stat178: 1.11960711e-08 + syst_JES_EtaIntercalibration_Stat179: 7.04105558e-12 + syst_JES_EtaIntercalibration_Stat18: 2.98964747e-24 + syst_JES_EtaIntercalibration_Stat180: 1.01156217e-14 + syst_JES_EtaIntercalibration_Stat181: 1.66450082e-15 + syst_JES_EtaIntercalibration_Stat182: 3.87228457e-10 + syst_JES_EtaIntercalibration_Stat183: 1.75543349e-09 + syst_JES_EtaIntercalibration_Stat184: 5.60444303e-09 + syst_JES_EtaIntercalibration_Stat185: 2.68542123e-08 + syst_JES_EtaIntercalibration_Stat186: 5.59387654e-08 + syst_JES_EtaIntercalibration_Stat187: 9.28258750e-08 + syst_JES_EtaIntercalibration_Stat188: 4.33176370e-08 + syst_JES_EtaIntercalibration_Stat189: 5.29490057e-08 + syst_JES_EtaIntercalibration_Stat19: 1.80057760e-23 + syst_JES_EtaIntercalibration_Stat190: 5.89273952e-08 + syst_JES_EtaIntercalibration_Stat191: 7.44361364e-08 + syst_JES_EtaIntercalibration_Stat192: 1.03759196e-07 + syst_JES_EtaIntercalibration_Stat193: 5.24019141e-08 + syst_JES_EtaIntercalibration_Stat194: 1.93255044e-08 + syst_JES_EtaIntercalibration_Stat195: 1.12967029e-08 + syst_JES_EtaIntercalibration_Stat196: 9.10506479e-09 + syst_JES_EtaIntercalibration_Stat197: 9.63105062e-12 + syst_JES_EtaIntercalibration_Stat198: 1.46040149e-08 + syst_JES_EtaIntercalibration_Stat199: 2.36738245e-08 + syst_JES_EtaIntercalibration_Stat2: 2.28693348e-24 + syst_JES_EtaIntercalibration_Stat20: 2.98964747e-24 + syst_JES_EtaIntercalibration_Stat200: 3.31278297e-08 + syst_JES_EtaIntercalibration_Stat201: 1.10523274e-07 + syst_JES_EtaIntercalibration_Stat202: 2.39263761e-07 + syst_JES_EtaIntercalibration_Stat203: 1.59745669e-07 + syst_JES_EtaIntercalibration_Stat204: 7.72233799e-08 + syst_JES_EtaIntercalibration_Stat205: 1.32337929e-07 + syst_JES_EtaIntercalibration_Stat206: 1.77366487e-07 + syst_JES_EtaIntercalibration_Stat207: 2.30680168e-07 + syst_JES_EtaIntercalibration_Stat208: 1.24994977e-07 + syst_JES_EtaIntercalibration_Stat209: 6.01138520e-08 + syst_JES_EtaIntercalibration_Stat21: 2.98964747e-24 + syst_JES_EtaIntercalibration_Stat210: 1.67203535e-08 + syst_JES_EtaIntercalibration_Stat211: 1.38729228e-08 + syst_JES_EtaIntercalibration_Stat212: 2.07772608e-08 + syst_JES_EtaIntercalibration_Stat213: 4.74873065e-08 + syst_JES_EtaIntercalibration_Stat214: 1.10988721e-07 + syst_JES_EtaIntercalibration_Stat215: 2.58400677e-07 + syst_JES_EtaIntercalibration_Stat216: 2.03588826e-07 + syst_JES_EtaIntercalibration_Stat217: 7.87871741e-08 + syst_JES_EtaIntercalibration_Stat218: 1.54600348e-07 + syst_JES_EtaIntercalibration_Stat219: 1.95379496e-07 + syst_JES_EtaIntercalibration_Stat22: 2.98964747e-24 + syst_JES_EtaIntercalibration_Stat220: 2.48792338e-07 + syst_JES_EtaIntercalibration_Stat221: 8.93985440e-08 + syst_JES_EtaIntercalibration_Stat222: 4.27021226e-08 + syst_JES_EtaIntercalibration_Stat223: 2.33907841e-08 + syst_JES_EtaIntercalibration_Stat224: 7.02925065e-08 + syst_JES_EtaIntercalibration_Stat225: 2.15693903e-07 + syst_JES_EtaIntercalibration_Stat226: 3.92219033e-07 + syst_JES_EtaIntercalibration_Stat227: 6.90462302e-07 + syst_JES_EtaIntercalibration_Stat228: 5.51270115e-07 + syst_JES_EtaIntercalibration_Stat229: 3.09752046e-07 + syst_JES_EtaIntercalibration_Stat23: 2.38634283e-23 + syst_JES_EtaIntercalibration_Stat230: 3.46323678e-07 + syst_JES_EtaIntercalibration_Stat231: 6.87414947e-07 + syst_JES_EtaIntercalibration_Stat232: 7.11673048e-07 + syst_JES_EtaIntercalibration_Stat233: 4.10174655e-07 + syst_JES_EtaIntercalibration_Stat234: 1.72887590e-07 + syst_JES_EtaIntercalibration_Stat235: 6.67099369e-08 + syst_JES_EtaIntercalibration_Stat236: 2.07032174e-08 + syst_JES_EtaIntercalibration_Stat237: 8.78769826e-08 + syst_JES_EtaIntercalibration_Stat238: 1.51771442e-07 + syst_JES_EtaIntercalibration_Stat239: 5.73863198e-08 + syst_JES_EtaIntercalibration_Stat24: 1.30545972e-22 + syst_JES_EtaIntercalibration_Stat240: 5.54973033e-08 + syst_JES_EtaIntercalibration_Stat241: 5.43885418e-08 + syst_JES_EtaIntercalibration_Stat242: 5.01942586e-08 + syst_JES_EtaIntercalibration_Stat243: 9.21033293e-08 + syst_JES_EtaIntercalibration_Stat244: 4.97704800e-08 + syst_JES_EtaIntercalibration_Stat245: 2.83784411e-08 + syst_JES_EtaIntercalibration_Stat25: 1.31855801e-22 + syst_JES_EtaIntercalibration_Stat26: 2.34301832e-24 + syst_JES_EtaIntercalibration_Stat27: 3.50903929e-24 + syst_JES_EtaIntercalibration_Stat28: 2.93990493e-23 + syst_JES_EtaIntercalibration_Stat29: 1.21664412e-22 + syst_JES_EtaIntercalibration_Stat3: 3.19979047e-24 + syst_JES_EtaIntercalibration_Stat30: 1.30806478e-22 + syst_JES_EtaIntercalibration_Stat31: 1.10861623e-17 + syst_JES_EtaIntercalibration_Stat32: 1.11977686e-17 + syst_JES_EtaIntercalibration_Stat33: 1.61034314e-22 + syst_JES_EtaIntercalibration_Stat34: 1.07066529e-21 + syst_JES_EtaIntercalibration_Stat35: 2.24646990e-09 + syst_JES_EtaIntercalibration_Stat36: 1.13743138e-22 + syst_JES_EtaIntercalibration_Stat37: 3.17071361e-21 + syst_JES_EtaIntercalibration_Stat38: 3.70542993e-22 + syst_JES_EtaIntercalibration_Stat39: 3.80444960e-22 + syst_JES_EtaIntercalibration_Stat4: 4.54800088e-24 + syst_JES_EtaIntercalibration_Stat40: 3.83149883e-23 + syst_JES_EtaIntercalibration_Stat41: 6.20285456e-24 + syst_JES_EtaIntercalibration_Stat42: 8.24542787e-24 + syst_JES_EtaIntercalibration_Stat43: 2.98964747e-24 + syst_JES_EtaIntercalibration_Stat44: 2.98964747e-24 + syst_JES_EtaIntercalibration_Stat45: 2.28693348e-24 + syst_JES_EtaIntercalibration_Stat46: 9.66654379e-23 + syst_JES_EtaIntercalibration_Stat47: 1.07814936e-21 + syst_JES_EtaIntercalibration_Stat48: 1.84074539e-23 + syst_JES_EtaIntercalibration_Stat49: 4.75283630e-23 + syst_JES_EtaIntercalibration_Stat5: 1.83077770e-24 + syst_JES_EtaIntercalibration_Stat50: 1.10859968e-17 + syst_JES_EtaIntercalibration_Stat51: 3.32796064e-22 + syst_JES_EtaIntercalibration_Stat52: 1.94604031e-22 + syst_JES_EtaIntercalibration_Stat53: 1.10881802e-17 + syst_JES_EtaIntercalibration_Stat54: 1.10844179e-17 + syst_JES_EtaIntercalibration_Stat55: 2.04294079e-22 + syst_JES_EtaIntercalibration_Stat56: 3.42416805e-22 + syst_JES_EtaIntercalibration_Stat57: 5.27499699e-17 + syst_JES_EtaIntercalibration_Stat58: 2.07046230e-21 + syst_JES_EtaIntercalibration_Stat59: 1.15373173e-21 + syst_JES_EtaIntercalibration_Stat6: 3.49964301e-24 + syst_JES_EtaIntercalibration_Stat60: 3.76523904e-23 + syst_JES_EtaIntercalibration_Stat61: 3.82588685e-22 + syst_JES_EtaIntercalibration_Stat62: 1.54073930e-22 + syst_JES_EtaIntercalibration_Stat63: 2.68419581e-23 + syst_JES_EtaIntercalibration_Stat64: 3.71860014e-24 + syst_JES_EtaIntercalibration_Stat65: 2.98964747e-24 + syst_JES_EtaIntercalibration_Stat66: 2.98964747e-24 + syst_JES_EtaIntercalibration_Stat67: 2.09326660e-22 + syst_JES_EtaIntercalibration_Stat68: 4.30124366e-21 + syst_JES_EtaIntercalibration_Stat69: 3.36106441e-21 + syst_JES_EtaIntercalibration_Stat7: 3.10510110e-24 + syst_JES_EtaIntercalibration_Stat70: 1.57960850e-21 + syst_JES_EtaIntercalibration_Stat71: 9.85334008e-22 + syst_JES_EtaIntercalibration_Stat72: 1.10866773e-17 + syst_JES_EtaIntercalibration_Stat73: 5.95254652e-16 + syst_JES_EtaIntercalibration_Stat74: 6.03967545e-16 + syst_JES_EtaIntercalibration_Stat75: 4.24525653e-10 + syst_JES_EtaIntercalibration_Stat76: 1.10515130e-17 + syst_JES_EtaIntercalibration_Stat77: 8.76159579e-22 + syst_JES_EtaIntercalibration_Stat78: 3.94474571e-10 + syst_JES_EtaIntercalibration_Stat79: 3.59660350e-10 + syst_JES_EtaIntercalibration_Stat8: 3.04699828e-23 + syst_JES_EtaIntercalibration_Stat80: 5.28461361e-17 + syst_JES_EtaIntercalibration_Stat81: 4.64594092e-16 + syst_JES_EtaIntercalibration_Stat82: 5.48193636e-16 + syst_JES_EtaIntercalibration_Stat83: 5.21441605e-22 + syst_JES_EtaIntercalibration_Stat84: 5.80638976e-22 + syst_JES_EtaIntercalibration_Stat85: 9.46595578e-23 + syst_JES_EtaIntercalibration_Stat86: 1.30372678e-24 + syst_JES_EtaIntercalibration_Stat87: 1.83077770e-24 + syst_JES_EtaIntercalibration_Stat88: 1.19760896e-22 + syst_JES_EtaIntercalibration_Stat89: 2.13866829e-20 + syst_JES_EtaIntercalibration_Stat9: 2.51300432e-23 + syst_JES_EtaIntercalibration_Stat90: 2.19880005e-20 + syst_JES_EtaIntercalibration_Stat91: 2.00184683e-21 + syst_JES_EtaIntercalibration_Stat92: 2.65686601e-21 + syst_JES_EtaIntercalibration_Stat93: 1.10962978e-17 + syst_JES_EtaIntercalibration_Stat94: 5.53690676e-16 + syst_JES_EtaIntercalibration_Stat95: 5.41637090e-16 + syst_JES_EtaIntercalibration_Stat96: 3.87806176e-10 + syst_JES_EtaIntercalibration_Stat97: 2.29665866e-20 + syst_JES_EtaIntercalibration_Stat98: 5.15524870e-21 + syst_JES_EtaIntercalibration_Stat99: 2.39319767e-09 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.95918829e-05 + syst_JES_Flavour_Comp: 3.77771490e-05 + syst_JES_Flavour_Response: 1.02770935e-05 + syst_JES_Gjet_Generator: 4.75001095e-05 + syst_JES_Gjet_OOC: 3.91015230e-05 + syst_JES_Gjet_Purity: 4.82105017e-06 + syst_JES_Gjet_Stat1: 1.03623092e-07 + syst_JES_Gjet_Stat10: 1.20021470e-06 + syst_JES_Gjet_Stat11: 1.20145200e-06 + syst_JES_Gjet_Stat12: 1.55840110e-06 + syst_JES_Gjet_Stat13: 8.76284081e-06 + syst_JES_Gjet_Stat14: 2.39329078e-05 + syst_JES_Gjet_Stat15: 4.02498751e-05 + syst_JES_Gjet_Stat2: 1.83954016e-07 + syst_JES_Gjet_Stat3: 2.10224587e-07 + syst_JES_Gjet_Stat4: 4.77349042e-07 + syst_JES_Gjet_Stat5: 3.81211175e-07 + syst_JES_Gjet_Stat6: 7.85050538e-07 + syst_JES_Gjet_Stat7: 5.35425352e-07 + syst_JES_Gjet_Stat8: 2.16058187e-07 + syst_JES_Gjet_Stat9: 5.92149111e-07 + syst_JES_Gjet_Veto: 4.21407428e-05 + syst_JES_Gjet_dPhi: 3.48769075e-06 + syst_JES_LArESZee: 6.89394566e-05 + syst_JES_LArEsmear: 6.16408582e-06 + syst_JES_LAr_JVT: 7.98048149e-06 + syst_JES_MJB_Alpha: 1.12329227e-06 + syst_JES_MJB_Asym: 1.82663153e-05 + syst_JES_MJB_Beta: 1.09755166e-06 + syst_JES_MJB_Fragmentation: 4.95001523e-06 + syst_JES_MJB_Stat1: 3.77047104e-12 + syst_JES_MJB_Stat10: 3.15134527e-07 + syst_JES_MJB_Stat11: 4.93777602e-07 + syst_JES_MJB_Stat12: 8.96268613e-07 + syst_JES_MJB_Stat13: 1.37210439e-06 + syst_JES_MJB_Stat14: 3.32491154e-06 + syst_JES_MJB_Stat15: 7.54403645e-07 + syst_JES_MJB_Stat16: 7.61336882e-06 + syst_JES_MJB_Stat2: 5.39683463e-09 + syst_JES_MJB_Stat3: 4.52775825e-08 + syst_JES_MJB_Stat4: 2.16893983e-08 + syst_JES_MJB_Stat5: 2.43147144e-08 + syst_JES_MJB_Stat6: 5.15632260e-08 + syst_JES_MJB_Stat7: 7.75075756e-08 + syst_JES_MJB_Stat8: 1.21110983e-07 + syst_JES_MJB_Stat9: 1.63958552e-07 + syst_JES_MJB_Threshold: 7.82530370e-06 + syst_JES_Pileup_MuOffset: 1.21989322e-05 + syst_JES_Pileup_NPVOffset: 1.10759706e-05 + syst_JES_Pileup_Pt_term: 4.91838459e-06 + syst_JES_Pileup_Rho_topology: 1.36737816e-05 + syst_JES_PunchThrough_MC15: 2.19718411e-05 + syst_JES_SingleParticle_HighPt: 1.55963481e-07 + syst_JES_Zjet_MC: 1.77889966e-05 + syst_JES_Zjet_MuScale: 1.38301955e-06 + syst_JES_Zjet_MuSmearID: 3.54626331e-07 + syst_JES_Zjet_MuSmearMS: 4.06713157e-06 + syst_JES_Zjet_OOC: 1.11835797e-05 + syst_JES_Zjet_Stat1: 1.52752766e-06 + syst_JES_Zjet_Stat10: 8.57307977e-07 + syst_JES_Zjet_Stat11: 1.09550008e-06 + syst_JES_Zjet_Stat12: 2.39815825e-06 + syst_JES_Zjet_Stat13: 4.22383380e-06 + syst_JES_Zjet_Stat2: 2.60400505e-08 + syst_JES_Zjet_Stat3: 6.03905048e-07 + syst_JES_Zjet_Stat4: 7.34644458e-07 + syst_JES_Zjet_Stat5: 7.34386969e-07 + syst_JES_Zjet_Stat6: 6.62036940e-07 + syst_JES_Zjet_Stat7: 7.59002271e-07 + syst_JES_Zjet_Stat8: 4.04935373e-07 + syst_JES_Zjet_Stat9: 6.40143209e-07 + syst_JES_Zjet_Veto: 2.00801793e-06 + syst_JES_Zjet_dPhi: 1.89553812e-06 syst_PRW: 0.0 syst_Unfolding_bias: 0.0 - syst_cleaning: 1.5727021332725405e-05 - syst_lumi: 3.034e-05 -- stat: 3.838e-05 - syst_JER_CROSS_CALIB_FORWARD: 5.433e-21 - syst_JER_NOISE_FORWARD: 6.389e-19 - syst_JER_NP0: 1.1929468167106194e-06 - syst_JER_NP1: 2.39474941277788e-07 - syst_JER_NP2: 1.1670314166722333e-06 - syst_JER_NP3: 2.4373483029719e-07 - syst_JER_NP4: 8.525713034696864e-08 - syst_JER_NP5: 3.2395657116348175e-07 - syst_JER_NP6: 2.0584389109225467e-07 - syst_JER_NP7: 1.533000652315582e-17 - syst_JER_NP8: 2.9445462723482543e-07 - syst_JES_EtaIntercalibration_Modelling: 2.8294358094857e-05 - syst_JES_EtaIntercalibration_NonClosure: 2.0717541432322515e-10 - syst_JES_EtaIntercalibration_Stat0: 8.263249844945994e-25 - syst_JES_EtaIntercalibration_Stat1: 1.1446597485716006e-24 - syst_JES_EtaIntercalibration_Stat10: 9.402939367559487e-25 - syst_JES_EtaIntercalibration_Stat100: 5.036803748410888e-10 - syst_JES_EtaIntercalibration_Stat101: 7.722218742531191e-21 - syst_JES_EtaIntercalibration_Stat102: 4.070644156829727e-17 - syst_JES_EtaIntercalibration_Stat103: 4.06847193332583e-17 - syst_JES_EtaIntercalibration_Stat104: 3.4990172631040275e-22 - syst_JES_EtaIntercalibration_Stat105: 4.18520018241362e-20 - syst_JES_EtaIntercalibration_Stat106: 2.929726254242877e-21 - syst_JES_EtaIntercalibration_Stat107: 9.14455963947964e-25 - syst_JES_EtaIntercalibration_Stat108: 2.0072639855036507e-21 - syst_JES_EtaIntercalibration_Stat109: 4.2485736556519763e-19 - syst_JES_EtaIntercalibration_Stat11: 5.190686810769842e-25 - syst_JES_EtaIntercalibration_Stat110: 1.731394452457325e-18 - syst_JES_EtaIntercalibration_Stat111: 1.0229420926302867e-15 - syst_JES_EtaIntercalibration_Stat112: 1.0240642450397094e-15 - syst_JES_EtaIntercalibration_Stat113: 8.437690093242886e-10 - syst_JES_EtaIntercalibration_Stat114: 9.084606464007713e-10 - syst_JES_EtaIntercalibration_Stat115: 8.102533846768778e-10 - syst_JES_EtaIntercalibration_Stat116: 1.1351187762961196e-09 - syst_JES_EtaIntercalibration_Stat117: 1.1531341238121438e-19 - syst_JES_EtaIntercalibration_Stat118: 8.581862807823253e-16 - syst_JES_EtaIntercalibration_Stat119: 2.1425440369929774e-10 - syst_JES_EtaIntercalibration_Stat12: 1.634255979796311e-23 - syst_JES_EtaIntercalibration_Stat120: 1.2125546008324737e-09 - syst_JES_EtaIntercalibration_Stat121: 7.144646224096753e-20 - syst_JES_EtaIntercalibration_Stat122: 6.979282546120844e-16 - syst_JES_EtaIntercalibration_Stat123: 1.2061453809553804e-16 - syst_JES_EtaIntercalibration_Stat124: 5.017060869423452e-16 - syst_JES_EtaIntercalibration_Stat125: 1.7333824592397374e-19 - syst_JES_EtaIntercalibration_Stat126: 6.302879580001509e-20 - syst_JES_EtaIntercalibration_Stat127: 3.705722702793613e-24 - syst_JES_EtaIntercalibration_Stat128: 1.737218466399664e-18 - syst_JES_EtaIntercalibration_Stat129: 3.6199865613935995e-13 - syst_JES_EtaIntercalibration_Stat13: 1.5412152891468473e-24 - syst_JES_EtaIntercalibration_Stat130: 1.5579799055593673e-12 - syst_JES_EtaIntercalibration_Stat131: 2.285181653063931e-15 - syst_JES_EtaIntercalibration_Stat132: 2.9912475502452723e-10 - syst_JES_EtaIntercalibration_Stat133: 9.25446527666915e-10 - syst_JES_EtaIntercalibration_Stat134: 8.442036424939187e-18 - syst_JES_EtaIntercalibration_Stat135: 1.648454860429912e-17 - syst_JES_EtaIntercalibration_Stat136: 5.818329165662596e-09 - syst_JES_EtaIntercalibration_Stat137: 1.3612348832953117e-09 - syst_JES_EtaIntercalibration_Stat138: 2.049188131919566e-09 - syst_JES_EtaIntercalibration_Stat139: 2.0542122590376215e-09 - syst_JES_EtaIntercalibration_Stat14: 1.4763115076094206e-24 - syst_JES_EtaIntercalibration_Stat140: 1.2706814274238843e-09 - syst_JES_EtaIntercalibration_Stat141: 1.1216021019143776e-09 - syst_JES_EtaIntercalibration_Stat142: 9.401036799603542e-12 - syst_JES_EtaIntercalibration_Stat143: 1.6514365715945616e-16 - syst_JES_EtaIntercalibration_Stat144: 5.215238210120416e-16 - syst_JES_EtaIntercalibration_Stat145: 1.4710798021521469e-18 - syst_JES_EtaIntercalibration_Stat146: 6.945456860423222e-18 - syst_JES_EtaIntercalibration_Stat147: 3.5237870523494636e-13 - syst_JES_EtaIntercalibration_Stat148: 1.557105679867448e-12 - syst_JES_EtaIntercalibration_Stat149: 1.5129463804114144e-15 - syst_JES_EtaIntercalibration_Stat15: 6.950091438247414e-25 - syst_JES_EtaIntercalibration_Stat150: 3.0051039249518056e-10 - syst_JES_EtaIntercalibration_Stat151: 6.673591767483611e-10 - syst_JES_EtaIntercalibration_Stat152: 1.4635829338503351e-09 - syst_JES_EtaIntercalibration_Stat153: 7.88143496789766e-17 - syst_JES_EtaIntercalibration_Stat154: 8.551163824299006e-10 - syst_JES_EtaIntercalibration_Stat155: 1.3639673639790655e-09 - syst_JES_EtaIntercalibration_Stat156: 1.223642385462354e-09 - syst_JES_EtaIntercalibration_Stat157: 5.405295065951534e-16 - syst_JES_EtaIntercalibration_Stat158: 2.6262179284095978e-09 - syst_JES_EtaIntercalibration_Stat159: 9.14031340624051e-10 - syst_JES_EtaIntercalibration_Stat16: 5.471123274063563e-25 - syst_JES_EtaIntercalibration_Stat160: 3.2579100013467223e-17 - syst_JES_EtaIntercalibration_Stat161: 7.246653329641208e-17 - syst_JES_EtaIntercalibration_Stat162: 3.45449042660419e-16 - syst_JES_EtaIntercalibration_Stat163: 3.3827408347669793e-17 - syst_JES_EtaIntercalibration_Stat164: 9.65342415933331e-18 - syst_JES_EtaIntercalibration_Stat165: 4.627443155210013e-13 - syst_JES_EtaIntercalibration_Stat166: 4.034401565787763e-13 - syst_JES_EtaIntercalibration_Stat167: 3.0885447789978694e-09 - syst_JES_EtaIntercalibration_Stat168: 2.7202069774191814e-09 - syst_JES_EtaIntercalibration_Stat169: 2.1671991140640493e-09 - syst_JES_EtaIntercalibration_Stat17: 8.310693517992347e-25 - syst_JES_EtaIntercalibration_Stat170: 4.199358781636073e-09 - syst_JES_EtaIntercalibration_Stat171: 2.772329923754985e-09 - syst_JES_EtaIntercalibration_Stat172: 1.0450556313247013e-09 - syst_JES_EtaIntercalibration_Stat173: 1.3977649987451224e-09 - syst_JES_EtaIntercalibration_Stat174: 7.923317573778667e-09 - syst_JES_EtaIntercalibration_Stat175: 5.950160735198672e-09 - syst_JES_EtaIntercalibration_Stat176: 1.115810673904852e-09 - syst_JES_EtaIntercalibration_Stat177: 1.3411118484302493e-09 - syst_JES_EtaIntercalibration_Stat178: 8.138883572232004e-09 - syst_JES_EtaIntercalibration_Stat179: 5.464935911792562e-13 - syst_JES_EtaIntercalibration_Stat18: 8.263249844945994e-25 - syst_JES_EtaIntercalibration_Stat180: 7.135974117631033e-16 - syst_JES_EtaIntercalibration_Stat181: 1.2181513288409106e-16 - syst_JES_EtaIntercalibration_Stat182: 4.902489195778074e-11 - syst_JES_EtaIntercalibration_Stat183: 5.073176815369237e-10 - syst_JES_EtaIntercalibration_Stat184: 2.202341322770099e-09 - syst_JES_EtaIntercalibration_Stat185: 5.055742551791971e-09 - syst_JES_EtaIntercalibration_Stat186: 4.0210011191244403e-08 - syst_JES_EtaIntercalibration_Stat187: 4.3544901386385066e-08 - syst_JES_EtaIntercalibration_Stat188: 2.699513057942117e-08 - syst_JES_EtaIntercalibration_Stat189: 2.1129000804581367e-08 - syst_JES_EtaIntercalibration_Stat19: 3.694303012748142e-24 - syst_JES_EtaIntercalibration_Stat190: 2.3603442545527124e-08 - syst_JES_EtaIntercalibration_Stat191: 4.125981428702751e-08 - syst_JES_EtaIntercalibration_Stat192: 7.367166619535626e-08 - syst_JES_EtaIntercalibration_Stat193: 3.968104427809328e-08 - syst_JES_EtaIntercalibration_Stat194: 1.1367882655974242e-08 - syst_JES_EtaIntercalibration_Stat195: 5.200203145070392e-09 - syst_JES_EtaIntercalibration_Stat196: 3.9346666949056814e-09 - syst_JES_EtaIntercalibration_Stat197: 7.166461692320694e-13 - syst_JES_EtaIntercalibration_Stat198: 3.1923804862633464e-09 - syst_JES_EtaIntercalibration_Stat199: 1.0548334593076768e-08 - syst_JES_EtaIntercalibration_Stat2: 5.574833876448696e-25 - syst_JES_EtaIntercalibration_Stat20: 8.263249844945994e-25 - syst_JES_EtaIntercalibration_Stat200: 1.5320006527413753e-08 - syst_JES_EtaIntercalibration_Stat201: 5.542844644223758e-08 - syst_JES_EtaIntercalibration_Stat202: 1.5091072485082032e-07 - syst_JES_EtaIntercalibration_Stat203: 9.68426316247137e-08 - syst_JES_EtaIntercalibration_Stat204: 3.4576948968930156e-08 - syst_JES_EtaIntercalibration_Stat205: 5.511785259786524e-08 - syst_JES_EtaIntercalibration_Stat206: 1.0353110112425155e-07 - syst_JES_EtaIntercalibration_Stat207: 1.5597413247074017e-07 - syst_JES_EtaIntercalibration_Stat208: 7.651027839447456e-08 - syst_JES_EtaIntercalibration_Stat209: 3.667643759963609e-08 - syst_JES_EtaIntercalibration_Stat21: 8.263249844945994e-25 - syst_JES_EtaIntercalibration_Stat210: 8.990548036688308e-09 - syst_JES_EtaIntercalibration_Stat211: 1.0357384648162876e-08 - syst_JES_EtaIntercalibration_Stat212: 1.0164678290531383e-08 - syst_JES_EtaIntercalibration_Stat213: 1.9358037090573004e-08 - syst_JES_EtaIntercalibration_Stat214: 5.539618398409768e-08 - syst_JES_EtaIntercalibration_Stat215: 1.5761053264296775e-07 - syst_JES_EtaIntercalibration_Stat216: 1.1463476992169521e-07 - syst_JES_EtaIntercalibration_Stat217: 4.170603193783844e-08 - syst_JES_EtaIntercalibration_Stat218: 6.704910346156763e-08 - syst_JES_EtaIntercalibration_Stat219: 1.1416394308186803e-07 - syst_JES_EtaIntercalibration_Stat22: 8.263249844945994e-25 - syst_JES_EtaIntercalibration_Stat220: 1.61225835398673e-07 - syst_JES_EtaIntercalibration_Stat221: 5.625954918944872e-08 - syst_JES_EtaIntercalibration_Stat222: 3.2086062394753266e-08 - syst_JES_EtaIntercalibration_Stat223: 1.1520364827881971e-08 - syst_JES_EtaIntercalibration_Stat224: 2.8928997130906563e-08 - syst_JES_EtaIntercalibration_Stat225: 9.981921859040973e-08 - syst_JES_EtaIntercalibration_Stat226: 2.312539026697712e-07 - syst_JES_EtaIntercalibration_Stat227: 3.8589683864343847e-07 - syst_JES_EtaIntercalibration_Stat228: 3.0803494931582036e-07 - syst_JES_EtaIntercalibration_Stat229: 1.5114084846592598e-07 - syst_JES_EtaIntercalibration_Stat23: 4.3565760261787e-24 - syst_JES_EtaIntercalibration_Stat230: 1.804616579775327e-07 - syst_JES_EtaIntercalibration_Stat231: 3.679370326564044e-07 - syst_JES_EtaIntercalibration_Stat232: 3.9467665588428204e-07 - syst_JES_EtaIntercalibration_Stat233: 2.37661623953048e-07 - syst_JES_EtaIntercalibration_Stat234: 8.678853610932725e-08 - syst_JES_EtaIntercalibration_Stat235: 2.941888296655738e-08 - syst_JES_EtaIntercalibration_Stat236: 9.71809564716771e-09 - syst_JES_EtaIntercalibration_Stat237: 5.6712341469912873e-08 - syst_JES_EtaIntercalibration_Stat238: 1.155394309316088e-07 - syst_JES_EtaIntercalibration_Stat239: 3.044042172835324e-08 - syst_JES_EtaIntercalibration_Stat24: 2.2080617631760216e-23 - syst_JES_EtaIntercalibration_Stat240: 1.9803643604145173e-08 - syst_JES_EtaIntercalibration_Stat241: 2.1936145399773407e-08 - syst_JES_EtaIntercalibration_Stat242: 3.555732941321662e-08 - syst_JES_EtaIntercalibration_Stat243: 9.240180524210552e-08 - syst_JES_EtaIntercalibration_Stat244: 2.4240051052010153e-08 - syst_JES_EtaIntercalibration_Stat245: 1.3349890186814271e-08 - syst_JES_EtaIntercalibration_Stat25: 2.1704959542694384e-23 - syst_JES_EtaIntercalibration_Stat26: 6.565153006594744e-25 - syst_JES_EtaIntercalibration_Stat27: 3.904715209525529e-24 - syst_JES_EtaIntercalibration_Stat28: 5.440482882980151e-24 - syst_JES_EtaIntercalibration_Stat29: 1.8751157084297493e-23 - syst_JES_EtaIntercalibration_Stat3: 6.541350548625261e-25 - syst_JES_EtaIntercalibration_Stat30: 2.3908876191699182e-23 - syst_JES_EtaIntercalibration_Stat31: 9.982070399975292e-19 - syst_JES_EtaIntercalibration_Stat32: 1.0107469901422702e-18 - syst_JES_EtaIntercalibration_Stat33: 3.085108783781984e-23 - syst_JES_EtaIntercalibration_Stat34: 1.674378479173317e-22 - syst_JES_EtaIntercalibration_Stat35: 1.0614873374185829e-09 - syst_JES_EtaIntercalibration_Stat36: 1.2519731107336132e-23 - syst_JES_EtaIntercalibration_Stat37: 4.974106683716384e-22 - syst_JES_EtaIntercalibration_Stat38: 5.630758452464463e-23 - syst_JES_EtaIntercalibration_Stat39: 5.743480477898398e-23 - syst_JES_EtaIntercalibration_Stat4: 1.1446597485716006e-24 - syst_JES_EtaIntercalibration_Stat40: 7.02491499948576e-24 - syst_JES_EtaIntercalibration_Stat41: 1.5037929411990203e-24 - syst_JES_EtaIntercalibration_Stat42: 1.6047450732125648e-24 - syst_JES_EtaIntercalibration_Stat43: 8.263249844945994e-25 - syst_JES_EtaIntercalibration_Stat44: 8.263249844945994e-25 - syst_JES_EtaIntercalibration_Stat45: 5.574833876448696e-25 - syst_JES_EtaIntercalibration_Stat46: 1.85997122760004e-23 - syst_JES_EtaIntercalibration_Stat47: 1.5179680497296376e-22 - syst_JES_EtaIntercalibration_Stat48: 3.0876286155397637e-24 - syst_JES_EtaIntercalibration_Stat49: 1.0926485024929105e-23 - syst_JES_EtaIntercalibration_Stat5: 5.060186434312475e-25 - syst_JES_EtaIntercalibration_Stat50: 9.980931247829365e-19 - syst_JES_EtaIntercalibration_Stat51: 3.890195721297323e-23 - syst_JES_EtaIntercalibration_Stat52: 3.308157304300991e-23 - syst_JES_EtaIntercalibration_Stat53: 9.98456117422954e-19 - syst_JES_EtaIntercalibration_Stat54: 9.980318426570983e-19 - syst_JES_EtaIntercalibration_Stat55: 4.5181231092124963e-23 - syst_JES_EtaIntercalibration_Stat56: 3.130253214597822e-23 - syst_JES_EtaIntercalibration_Stat57: 4.369143139530362e-18 - syst_JES_EtaIntercalibration_Stat58: 2.9027245662480615e-22 - syst_JES_EtaIntercalibration_Stat59: 1.6291378110829052e-22 - syst_JES_EtaIntercalibration_Stat6: 8.43746004434984e-25 - syst_JES_EtaIntercalibration_Stat60: 8.363365515747832e-24 - syst_JES_EtaIntercalibration_Stat61: 5.975500285959327e-23 - syst_JES_EtaIntercalibration_Stat62: 2.85875633930211e-23 - syst_JES_EtaIntercalibration_Stat63: 3.8135834853848415e-24 - syst_JES_EtaIntercalibration_Stat64: 9.051134845973735e-25 - syst_JES_EtaIntercalibration_Stat65: 8.263249844945994e-25 - syst_JES_EtaIntercalibration_Stat66: 8.263249844945994e-25 - syst_JES_EtaIntercalibration_Stat67: 3.515866322828557e-23 - syst_JES_EtaIntercalibration_Stat68: 5.511816216094292e-22 - syst_JES_EtaIntercalibration_Stat69: 3.9890526130899805e-22 - syst_JES_EtaIntercalibration_Stat7: 6.726862177122407e-25 - syst_JES_EtaIntercalibration_Stat70: 2.037075354521771e-22 - syst_JES_EtaIntercalibration_Stat71: 1.3260524829357245e-22 - syst_JES_EtaIntercalibration_Stat72: 9.984032957627403e-19 - syst_JES_EtaIntercalibration_Stat73: 4.410449922023262e-17 - syst_JES_EtaIntercalibration_Stat74: 4.480829330400417e-17 - syst_JES_EtaIntercalibration_Stat75: 2.7002672089996296e-10 - syst_JES_EtaIntercalibration_Stat76: 9.958627514180069e-19 - syst_JES_EtaIntercalibration_Stat77: 1.312899947901591e-22 - syst_JES_EtaIntercalibration_Stat78: 2.645707608560965e-10 - syst_JES_EtaIntercalibration_Stat79: 2.5816217286834086e-10 - syst_JES_EtaIntercalibration_Stat8: 5.1490621233385795e-24 - syst_JES_EtaIntercalibration_Stat80: 4.378698405100405e-18 - syst_JES_EtaIntercalibration_Stat81: 3.4473275864830064e-17 - syst_JES_EtaIntercalibration_Stat82: 4.0668534446127824e-17 - syst_JES_EtaIntercalibration_Stat83: 1.0257944177563066e-22 - syst_JES_EtaIntercalibration_Stat84: 9.523393447190975e-23 - syst_JES_EtaIntercalibration_Stat85: 9.811185565847789e-24 - syst_JES_EtaIntercalibration_Stat86: 2.8403585601117336e-25 - syst_JES_EtaIntercalibration_Stat87: 5.060186434312475e-25 - syst_JES_EtaIntercalibration_Stat88: 1.9052381734772688e-23 - syst_JES_EtaIntercalibration_Stat89: 2.4380514126449426e-21 - syst_JES_EtaIntercalibration_Stat9: 3.977147222570469e-24 - syst_JES_EtaIntercalibration_Stat90: 2.5632140819681838e-21 - syst_JES_EtaIntercalibration_Stat91: 2.9612971397683145e-22 - syst_JES_EtaIntercalibration_Stat92: 3.16911691169638e-22 - syst_JES_EtaIntercalibration_Stat93: 9.998235739657709e-19 - syst_JES_EtaIntercalibration_Stat94: 4.102190622911129e-17 - syst_JES_EtaIntercalibration_Stat95: 4.009255944685996e-17 - syst_JES_EtaIntercalibration_Stat96: 2.6335832529072756e-10 - syst_JES_EtaIntercalibration_Stat97: 2.6878236935297673e-21 - syst_JES_EtaIntercalibration_Stat98: 6.86661712563035e-22 - syst_JES_EtaIntercalibration_Stat99: 1.1165891489263182e-09 - syst_JES_EtaIntercalibration_TotalStat_MJB: 1.1359451747333584e-05 - syst_JES_Flavour_Comp: 1.749141718100623e-05 - syst_JES_Flavour_Response: 7.1371860000983575e-06 - syst_JES_Gjet_Generator: 2.467558307315148e-05 - syst_JES_Gjet_OOC: 2.0325640826306068e-05 - syst_JES_Gjet_Purity: 1.943657570149639e-06 - syst_JES_Gjet_Stat1: 3.9790105239870875e-08 - syst_JES_Gjet_Stat10: 8.611351287689987e-07 - syst_JES_Gjet_Stat11: 8.606208979568182e-07 - syst_JES_Gjet_Stat12: 7.80374248357799e-07 - syst_JES_Gjet_Stat13: 5.013560311794404e-06 - syst_JES_Gjet_Stat14: 1.4029113799524189e-05 - syst_JES_Gjet_Stat15: 2.3237785501204718e-05 - syst_JES_Gjet_Stat2: 1.3954384651427663e-07 - syst_JES_Gjet_Stat3: 1.3942140823775954e-07 - syst_JES_Gjet_Stat4: 2.8740588024603807e-07 - syst_JES_Gjet_Stat5: 2.739982846661636e-07 - syst_JES_Gjet_Stat6: 4.44564626910419e-07 - syst_JES_Gjet_Stat7: 3.4636045891527517e-07 - syst_JES_Gjet_Stat8: 1.2717290071001762e-07 - syst_JES_Gjet_Stat9: 3.946844749923665e-07 - syst_JES_Gjet_Veto: 2.256649507566472e-05 - syst_JES_Gjet_dPhi: 1.6521722065208577e-06 - syst_JES_LArESZee: 3.477641010800281e-05 - syst_JES_LArEsmear: 3.1362501096054186e-06 - syst_JES_LAr_JVT: 4.119515262746335e-06 - syst_JES_MJB_Alpha: 6.757806356355589e-07 - syst_JES_MJB_Asym: 1.2245124213334873e-05 - syst_JES_MJB_Beta: 8.352016567871498e-07 - syst_JES_MJB_Fragmentation: 3.0473493400002565e-06 - syst_JES_MJB_Stat1: 2.748109259043934e-13 - syst_JES_MJB_Stat10: 1.4398209194201894e-07 - syst_JES_MJB_Stat11: 2.345977195115076e-07 - syst_JES_MJB_Stat12: 3.893451039887364e-07 - syst_JES_MJB_Stat13: 6.310988987472566e-07 - syst_JES_MJB_Stat14: 2.4404275752416828e-06 - syst_JES_MJB_Stat15: 1.581427519679609e-06 - syst_JES_MJB_Stat16: 6.853295484655539e-06 - syst_JES_MJB_Stat2: 2.888407797194979e-09 - syst_JES_MJB_Stat3: 1.387943121132851e-08 - syst_JES_MJB_Stat4: 9.045172344958386e-09 - syst_JES_MJB_Stat5: 1.783295277856979e-08 - syst_JES_MJB_Stat6: 2.2011253371855043e-08 - syst_JES_MJB_Stat7: 2.5502629276213855e-08 - syst_JES_MJB_Stat8: 4.631754851025689e-08 - syst_JES_MJB_Stat9: 7.189665917134119e-08 - syst_JES_MJB_Threshold: 4.115075060068772e-06 - syst_JES_Pileup_MuOffset: 7.141118452315436e-06 - syst_JES_Pileup_NPVOffset: 6.020200889505266e-06 - syst_JES_Pileup_Pt_term: 2.3960016694485e-06 - syst_JES_Pileup_Rho_topology: 7.78836598716316e-06 - syst_JES_PunchThrough_MC15: 1.3873108808050197e-05 - syst_JES_SingleParticle_HighPt: 3.321012496212563e-07 - syst_JES_Zjet_MC: 9.312316400874705e-06 - syst_JES_Zjet_MuScale: 8.582450116371199e-07 - syst_JES_Zjet_MuSmearID: 2.277635341752494e-07 - syst_JES_Zjet_MuSmearMS: 2.0009309708233318e-06 - syst_JES_Zjet_OOC: 5.80770064225077e-06 - syst_JES_Zjet_Stat1: 9.526987666623695e-07 - syst_JES_Zjet_Stat10: 5.192635241377927e-07 - syst_JES_Zjet_Stat11: 5.997016674980985e-07 - syst_JES_Zjet_Stat12: 1.1651408412719898e-06 - syst_JES_Zjet_Stat13: 2.1691993914806445e-06 - syst_JES_Zjet_Stat2: 1.0884976106720454e-08 - syst_JES_Zjet_Stat3: 3.281643947779832e-07 - syst_JES_Zjet_Stat4: 3.7961889942414617e-07 - syst_JES_Zjet_Stat5: 3.7120335060449016e-07 - syst_JES_Zjet_Stat6: 4.36799393314597e-07 - syst_JES_Zjet_Stat7: 4.338570588338975e-07 - syst_JES_Zjet_Stat8: 1.9295685398554774e-07 - syst_JES_Zjet_Stat9: 3.8752322511044417e-07 - syst_JES_Zjet_Veto: 1.0573096850024595e-06 - syst_JES_Zjet_dPhi: 1.0057451118449446e-06 + syst_cleaning: 1.57270213e-05 + syst_lumi: 3.03400000e-05 +- stat: 3.83800000e-05 + syst_JER_CROSS_CALIB_FORWARD: 5.43300000e-21 + syst_JER_NOISE_FORWARD: 6.38900000e-19 + syst_JER_NP0: 1.19294682e-06 + syst_JER_NP1: 2.39474941e-07 + syst_JER_NP2: 1.16703142e-06 + syst_JER_NP3: 2.43734830e-07 + syst_JER_NP4: 8.52571303e-08 + syst_JER_NP5: 3.23956571e-07 + syst_JER_NP6: 2.05843891e-07 + syst_JER_NP7: 1.53300065e-17 + syst_JER_NP8: 2.94454627e-07 + syst_JES_EtaIntercalibration_Modelling: 2.82943581e-05 + syst_JES_EtaIntercalibration_NonClosure: 2.07175414e-10 + syst_JES_EtaIntercalibration_Stat0: 8.26324984e-25 + syst_JES_EtaIntercalibration_Stat1: 1.14465975e-24 + syst_JES_EtaIntercalibration_Stat10: 9.40293937e-25 + syst_JES_EtaIntercalibration_Stat100: 5.03680375e-10 + syst_JES_EtaIntercalibration_Stat101: 7.72221874e-21 + syst_JES_EtaIntercalibration_Stat102: 4.07064416e-17 + syst_JES_EtaIntercalibration_Stat103: 4.06847193e-17 + syst_JES_EtaIntercalibration_Stat104: 3.49901726e-22 + syst_JES_EtaIntercalibration_Stat105: 4.18520018e-20 + syst_JES_EtaIntercalibration_Stat106: 2.92972625e-21 + syst_JES_EtaIntercalibration_Stat107: 9.14455964e-25 + syst_JES_EtaIntercalibration_Stat108: 2.00726399e-21 + syst_JES_EtaIntercalibration_Stat109: 4.24857366e-19 + syst_JES_EtaIntercalibration_Stat11: 5.19068681e-25 + syst_JES_EtaIntercalibration_Stat110: 1.73139445e-18 + syst_JES_EtaIntercalibration_Stat111: 1.02294209e-15 + syst_JES_EtaIntercalibration_Stat112: 1.02406425e-15 + syst_JES_EtaIntercalibration_Stat113: 8.43769009e-10 + syst_JES_EtaIntercalibration_Stat114: 9.08460646e-10 + syst_JES_EtaIntercalibration_Stat115: 8.10253385e-10 + syst_JES_EtaIntercalibration_Stat116: 1.13511878e-09 + syst_JES_EtaIntercalibration_Stat117: 1.15313412e-19 + syst_JES_EtaIntercalibration_Stat118: 8.58186281e-16 + syst_JES_EtaIntercalibration_Stat119: 2.14254404e-10 + syst_JES_EtaIntercalibration_Stat12: 1.63425598e-23 + syst_JES_EtaIntercalibration_Stat120: 1.21255460e-09 + syst_JES_EtaIntercalibration_Stat121: 7.14464622e-20 + syst_JES_EtaIntercalibration_Stat122: 6.97928255e-16 + syst_JES_EtaIntercalibration_Stat123: 1.20614538e-16 + syst_JES_EtaIntercalibration_Stat124: 5.01706087e-16 + syst_JES_EtaIntercalibration_Stat125: 1.73338246e-19 + syst_JES_EtaIntercalibration_Stat126: 6.30287958e-20 + syst_JES_EtaIntercalibration_Stat127: 3.70572270e-24 + syst_JES_EtaIntercalibration_Stat128: 1.73721847e-18 + syst_JES_EtaIntercalibration_Stat129: 3.61998656e-13 + syst_JES_EtaIntercalibration_Stat13: 1.54121529e-24 + syst_JES_EtaIntercalibration_Stat130: 1.55797991e-12 + syst_JES_EtaIntercalibration_Stat131: 2.28518165e-15 + syst_JES_EtaIntercalibration_Stat132: 2.99124755e-10 + syst_JES_EtaIntercalibration_Stat133: 9.25446528e-10 + syst_JES_EtaIntercalibration_Stat134: 8.44203642e-18 + syst_JES_EtaIntercalibration_Stat135: 1.64845486e-17 + syst_JES_EtaIntercalibration_Stat136: 5.81832917e-09 + syst_JES_EtaIntercalibration_Stat137: 1.36123488e-09 + syst_JES_EtaIntercalibration_Stat138: 2.04918813e-09 + syst_JES_EtaIntercalibration_Stat139: 2.05421226e-09 + syst_JES_EtaIntercalibration_Stat14: 1.47631151e-24 + syst_JES_EtaIntercalibration_Stat140: 1.27068143e-09 + syst_JES_EtaIntercalibration_Stat141: 1.12160210e-09 + syst_JES_EtaIntercalibration_Stat142: 9.40103680e-12 + syst_JES_EtaIntercalibration_Stat143: 1.65143657e-16 + syst_JES_EtaIntercalibration_Stat144: 5.21523821e-16 + syst_JES_EtaIntercalibration_Stat145: 1.47107980e-18 + syst_JES_EtaIntercalibration_Stat146: 6.94545686e-18 + syst_JES_EtaIntercalibration_Stat147: 3.52378705e-13 + syst_JES_EtaIntercalibration_Stat148: 1.55710568e-12 + syst_JES_EtaIntercalibration_Stat149: 1.51294638e-15 + syst_JES_EtaIntercalibration_Stat15: 6.95009144e-25 + syst_JES_EtaIntercalibration_Stat150: 3.00510392e-10 + syst_JES_EtaIntercalibration_Stat151: 6.67359177e-10 + syst_JES_EtaIntercalibration_Stat152: 1.46358293e-09 + syst_JES_EtaIntercalibration_Stat153: 7.88143497e-17 + syst_JES_EtaIntercalibration_Stat154: 8.55116382e-10 + syst_JES_EtaIntercalibration_Stat155: 1.36396736e-09 + syst_JES_EtaIntercalibration_Stat156: 1.22364239e-09 + syst_JES_EtaIntercalibration_Stat157: 5.40529507e-16 + syst_JES_EtaIntercalibration_Stat158: 2.62621793e-09 + syst_JES_EtaIntercalibration_Stat159: 9.14031341e-10 + syst_JES_EtaIntercalibration_Stat16: 5.47112327e-25 + syst_JES_EtaIntercalibration_Stat160: 3.25791000e-17 + syst_JES_EtaIntercalibration_Stat161: 7.24665333e-17 + syst_JES_EtaIntercalibration_Stat162: 3.45449043e-16 + syst_JES_EtaIntercalibration_Stat163: 3.38274083e-17 + syst_JES_EtaIntercalibration_Stat164: 9.65342416e-18 + syst_JES_EtaIntercalibration_Stat165: 4.62744316e-13 + syst_JES_EtaIntercalibration_Stat166: 4.03440157e-13 + syst_JES_EtaIntercalibration_Stat167: 3.08854478e-09 + syst_JES_EtaIntercalibration_Stat168: 2.72020698e-09 + syst_JES_EtaIntercalibration_Stat169: 2.16719911e-09 + syst_JES_EtaIntercalibration_Stat17: 8.31069352e-25 + syst_JES_EtaIntercalibration_Stat170: 4.19935878e-09 + syst_JES_EtaIntercalibration_Stat171: 2.77232992e-09 + syst_JES_EtaIntercalibration_Stat172: 1.04505563e-09 + syst_JES_EtaIntercalibration_Stat173: 1.39776500e-09 + syst_JES_EtaIntercalibration_Stat174: 7.92331757e-09 + syst_JES_EtaIntercalibration_Stat175: 5.95016074e-09 + syst_JES_EtaIntercalibration_Stat176: 1.11581067e-09 + syst_JES_EtaIntercalibration_Stat177: 1.34111185e-09 + syst_JES_EtaIntercalibration_Stat178: 8.13888357e-09 + syst_JES_EtaIntercalibration_Stat179: 5.46493591e-13 + syst_JES_EtaIntercalibration_Stat18: 8.26324984e-25 + syst_JES_EtaIntercalibration_Stat180: 7.13597412e-16 + syst_JES_EtaIntercalibration_Stat181: 1.21815133e-16 + syst_JES_EtaIntercalibration_Stat182: 4.90248920e-11 + syst_JES_EtaIntercalibration_Stat183: 5.07317682e-10 + syst_JES_EtaIntercalibration_Stat184: 2.20234132e-09 + syst_JES_EtaIntercalibration_Stat185: 5.05574255e-09 + syst_JES_EtaIntercalibration_Stat186: 4.02100112e-08 + syst_JES_EtaIntercalibration_Stat187: 4.35449014e-08 + syst_JES_EtaIntercalibration_Stat188: 2.69951306e-08 + syst_JES_EtaIntercalibration_Stat189: 2.11290008e-08 + syst_JES_EtaIntercalibration_Stat19: 3.69430301e-24 + syst_JES_EtaIntercalibration_Stat190: 2.36034425e-08 + syst_JES_EtaIntercalibration_Stat191: 4.12598143e-08 + syst_JES_EtaIntercalibration_Stat192: 7.36716662e-08 + syst_JES_EtaIntercalibration_Stat193: 3.96810443e-08 + syst_JES_EtaIntercalibration_Stat194: 1.13678827e-08 + syst_JES_EtaIntercalibration_Stat195: 5.20020315e-09 + syst_JES_EtaIntercalibration_Stat196: 3.93466669e-09 + syst_JES_EtaIntercalibration_Stat197: 7.16646169e-13 + syst_JES_EtaIntercalibration_Stat198: 3.19238049e-09 + syst_JES_EtaIntercalibration_Stat199: 1.05483346e-08 + syst_JES_EtaIntercalibration_Stat2: 5.57483388e-25 + syst_JES_EtaIntercalibration_Stat20: 8.26324984e-25 + syst_JES_EtaIntercalibration_Stat200: 1.53200065e-08 + syst_JES_EtaIntercalibration_Stat201: 5.54284464e-08 + syst_JES_EtaIntercalibration_Stat202: 1.50910725e-07 + syst_JES_EtaIntercalibration_Stat203: 9.68426316e-08 + syst_JES_EtaIntercalibration_Stat204: 3.45769490e-08 + syst_JES_EtaIntercalibration_Stat205: 5.51178526e-08 + syst_JES_EtaIntercalibration_Stat206: 1.03531101e-07 + syst_JES_EtaIntercalibration_Stat207: 1.55974132e-07 + syst_JES_EtaIntercalibration_Stat208: 7.65102784e-08 + syst_JES_EtaIntercalibration_Stat209: 3.66764376e-08 + syst_JES_EtaIntercalibration_Stat21: 8.26324984e-25 + syst_JES_EtaIntercalibration_Stat210: 8.99054804e-09 + syst_JES_EtaIntercalibration_Stat211: 1.03573846e-08 + syst_JES_EtaIntercalibration_Stat212: 1.01646783e-08 + syst_JES_EtaIntercalibration_Stat213: 1.93580371e-08 + syst_JES_EtaIntercalibration_Stat214: 5.53961840e-08 + syst_JES_EtaIntercalibration_Stat215: 1.57610533e-07 + syst_JES_EtaIntercalibration_Stat216: 1.14634770e-07 + syst_JES_EtaIntercalibration_Stat217: 4.17060319e-08 + syst_JES_EtaIntercalibration_Stat218: 6.70491035e-08 + syst_JES_EtaIntercalibration_Stat219: 1.14163943e-07 + syst_JES_EtaIntercalibration_Stat22: 8.26324984e-25 + syst_JES_EtaIntercalibration_Stat220: 1.61225835e-07 + syst_JES_EtaIntercalibration_Stat221: 5.62595492e-08 + syst_JES_EtaIntercalibration_Stat222: 3.20860624e-08 + syst_JES_EtaIntercalibration_Stat223: 1.15203648e-08 + syst_JES_EtaIntercalibration_Stat224: 2.89289971e-08 + syst_JES_EtaIntercalibration_Stat225: 9.98192186e-08 + syst_JES_EtaIntercalibration_Stat226: 2.31253903e-07 + syst_JES_EtaIntercalibration_Stat227: 3.85896839e-07 + syst_JES_EtaIntercalibration_Stat228: 3.08034949e-07 + syst_JES_EtaIntercalibration_Stat229: 1.51140848e-07 + syst_JES_EtaIntercalibration_Stat23: 4.35657603e-24 + syst_JES_EtaIntercalibration_Stat230: 1.80461658e-07 + syst_JES_EtaIntercalibration_Stat231: 3.67937033e-07 + syst_JES_EtaIntercalibration_Stat232: 3.94676656e-07 + syst_JES_EtaIntercalibration_Stat233: 2.37661624e-07 + syst_JES_EtaIntercalibration_Stat234: 8.67885361e-08 + syst_JES_EtaIntercalibration_Stat235: 2.94188830e-08 + syst_JES_EtaIntercalibration_Stat236: 9.71809565e-09 + syst_JES_EtaIntercalibration_Stat237: 5.67123415e-08 + syst_JES_EtaIntercalibration_Stat238: 1.15539431e-07 + syst_JES_EtaIntercalibration_Stat239: 3.04404217e-08 + syst_JES_EtaIntercalibration_Stat24: 2.20806176e-23 + syst_JES_EtaIntercalibration_Stat240: 1.98036436e-08 + syst_JES_EtaIntercalibration_Stat241: 2.19361454e-08 + syst_JES_EtaIntercalibration_Stat242: 3.55573294e-08 + syst_JES_EtaIntercalibration_Stat243: 9.24018052e-08 + syst_JES_EtaIntercalibration_Stat244: 2.42400511e-08 + syst_JES_EtaIntercalibration_Stat245: 1.33498902e-08 + syst_JES_EtaIntercalibration_Stat25: 2.17049595e-23 + syst_JES_EtaIntercalibration_Stat26: 6.56515301e-25 + syst_JES_EtaIntercalibration_Stat27: 3.90471521e-24 + syst_JES_EtaIntercalibration_Stat28: 5.44048288e-24 + syst_JES_EtaIntercalibration_Stat29: 1.87511571e-23 + syst_JES_EtaIntercalibration_Stat3: 6.54135055e-25 + syst_JES_EtaIntercalibration_Stat30: 2.39088762e-23 + syst_JES_EtaIntercalibration_Stat31: 9.98207040e-19 + syst_JES_EtaIntercalibration_Stat32: 1.01074699e-18 + syst_JES_EtaIntercalibration_Stat33: 3.08510878e-23 + syst_JES_EtaIntercalibration_Stat34: 1.67437848e-22 + syst_JES_EtaIntercalibration_Stat35: 1.06148734e-09 + syst_JES_EtaIntercalibration_Stat36: 1.25197311e-23 + syst_JES_EtaIntercalibration_Stat37: 4.97410668e-22 + syst_JES_EtaIntercalibration_Stat38: 5.63075845e-23 + syst_JES_EtaIntercalibration_Stat39: 5.74348048e-23 + syst_JES_EtaIntercalibration_Stat4: 1.14465975e-24 + syst_JES_EtaIntercalibration_Stat40: 7.02491500e-24 + syst_JES_EtaIntercalibration_Stat41: 1.50379294e-24 + syst_JES_EtaIntercalibration_Stat42: 1.60474507e-24 + syst_JES_EtaIntercalibration_Stat43: 8.26324984e-25 + syst_JES_EtaIntercalibration_Stat44: 8.26324984e-25 + syst_JES_EtaIntercalibration_Stat45: 5.57483388e-25 + syst_JES_EtaIntercalibration_Stat46: 1.85997123e-23 + syst_JES_EtaIntercalibration_Stat47: 1.51796805e-22 + syst_JES_EtaIntercalibration_Stat48: 3.08762862e-24 + syst_JES_EtaIntercalibration_Stat49: 1.09264850e-23 + syst_JES_EtaIntercalibration_Stat5: 5.06018643e-25 + syst_JES_EtaIntercalibration_Stat50: 9.98093125e-19 + syst_JES_EtaIntercalibration_Stat51: 3.89019572e-23 + syst_JES_EtaIntercalibration_Stat52: 3.30815730e-23 + syst_JES_EtaIntercalibration_Stat53: 9.98456117e-19 + syst_JES_EtaIntercalibration_Stat54: 9.98031843e-19 + syst_JES_EtaIntercalibration_Stat55: 4.51812311e-23 + syst_JES_EtaIntercalibration_Stat56: 3.13025321e-23 + syst_JES_EtaIntercalibration_Stat57: 4.36914314e-18 + syst_JES_EtaIntercalibration_Stat58: 2.90272457e-22 + syst_JES_EtaIntercalibration_Stat59: 1.62913781e-22 + syst_JES_EtaIntercalibration_Stat6: 8.43746004e-25 + syst_JES_EtaIntercalibration_Stat60: 8.36336552e-24 + syst_JES_EtaIntercalibration_Stat61: 5.97550029e-23 + syst_JES_EtaIntercalibration_Stat62: 2.85875634e-23 + syst_JES_EtaIntercalibration_Stat63: 3.81358349e-24 + syst_JES_EtaIntercalibration_Stat64: 9.05113485e-25 + syst_JES_EtaIntercalibration_Stat65: 8.26324984e-25 + syst_JES_EtaIntercalibration_Stat66: 8.26324984e-25 + syst_JES_EtaIntercalibration_Stat67: 3.51586632e-23 + syst_JES_EtaIntercalibration_Stat68: 5.51181622e-22 + syst_JES_EtaIntercalibration_Stat69: 3.98905261e-22 + syst_JES_EtaIntercalibration_Stat7: 6.72686218e-25 + syst_JES_EtaIntercalibration_Stat70: 2.03707535e-22 + syst_JES_EtaIntercalibration_Stat71: 1.32605248e-22 + syst_JES_EtaIntercalibration_Stat72: 9.98403296e-19 + syst_JES_EtaIntercalibration_Stat73: 4.41044992e-17 + syst_JES_EtaIntercalibration_Stat74: 4.48082933e-17 + syst_JES_EtaIntercalibration_Stat75: 2.70026721e-10 + syst_JES_EtaIntercalibration_Stat76: 9.95862751e-19 + syst_JES_EtaIntercalibration_Stat77: 1.31289995e-22 + syst_JES_EtaIntercalibration_Stat78: 2.64570761e-10 + syst_JES_EtaIntercalibration_Stat79: 2.58162173e-10 + syst_JES_EtaIntercalibration_Stat8: 5.14906212e-24 + syst_JES_EtaIntercalibration_Stat80: 4.37869841e-18 + syst_JES_EtaIntercalibration_Stat81: 3.44732759e-17 + syst_JES_EtaIntercalibration_Stat82: 4.06685344e-17 + syst_JES_EtaIntercalibration_Stat83: 1.02579442e-22 + syst_JES_EtaIntercalibration_Stat84: 9.52339345e-23 + syst_JES_EtaIntercalibration_Stat85: 9.81118557e-24 + syst_JES_EtaIntercalibration_Stat86: 2.84035856e-25 + syst_JES_EtaIntercalibration_Stat87: 5.06018643e-25 + syst_JES_EtaIntercalibration_Stat88: 1.90523817e-23 + syst_JES_EtaIntercalibration_Stat89: 2.43805141e-21 + syst_JES_EtaIntercalibration_Stat9: 3.97714722e-24 + syst_JES_EtaIntercalibration_Stat90: 2.56321408e-21 + syst_JES_EtaIntercalibration_Stat91: 2.96129714e-22 + syst_JES_EtaIntercalibration_Stat92: 3.16911691e-22 + syst_JES_EtaIntercalibration_Stat93: 9.99823574e-19 + syst_JES_EtaIntercalibration_Stat94: 4.10219062e-17 + syst_JES_EtaIntercalibration_Stat95: 4.00925594e-17 + syst_JES_EtaIntercalibration_Stat96: 2.63358325e-10 + syst_JES_EtaIntercalibration_Stat97: 2.68782369e-21 + syst_JES_EtaIntercalibration_Stat98: 6.86661713e-22 + syst_JES_EtaIntercalibration_Stat99: 1.11658915e-09 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.13594517e-05 + syst_JES_Flavour_Comp: 1.74914172e-05 + syst_JES_Flavour_Response: 7.13718600e-06 + syst_JES_Gjet_Generator: 2.46755831e-05 + syst_JES_Gjet_OOC: 2.03256408e-05 + syst_JES_Gjet_Purity: 1.94365757e-06 + syst_JES_Gjet_Stat1: 3.97901052e-08 + syst_JES_Gjet_Stat10: 8.61135129e-07 + syst_JES_Gjet_Stat11: 8.60620898e-07 + syst_JES_Gjet_Stat12: 7.80374248e-07 + syst_JES_Gjet_Stat13: 5.01356031e-06 + syst_JES_Gjet_Stat14: 1.40291138e-05 + syst_JES_Gjet_Stat15: 2.32377855e-05 + syst_JES_Gjet_Stat2: 1.39543847e-07 + syst_JES_Gjet_Stat3: 1.39421408e-07 + syst_JES_Gjet_Stat4: 2.87405880e-07 + syst_JES_Gjet_Stat5: 2.73998285e-07 + syst_JES_Gjet_Stat6: 4.44564627e-07 + syst_JES_Gjet_Stat7: 3.46360459e-07 + syst_JES_Gjet_Stat8: 1.27172901e-07 + syst_JES_Gjet_Stat9: 3.94684475e-07 + syst_JES_Gjet_Veto: 2.25664951e-05 + syst_JES_Gjet_dPhi: 1.65217221e-06 + syst_JES_LArESZee: 3.47764101e-05 + syst_JES_LArEsmear: 3.13625011e-06 + syst_JES_LAr_JVT: 4.11951526e-06 + syst_JES_MJB_Alpha: 6.75780636e-07 + syst_JES_MJB_Asym: 1.22451242e-05 + syst_JES_MJB_Beta: 8.35201657e-07 + syst_JES_MJB_Fragmentation: 3.04734934e-06 + syst_JES_MJB_Stat1: 2.74810926e-13 + syst_JES_MJB_Stat10: 1.43982092e-07 + syst_JES_MJB_Stat11: 2.34597720e-07 + syst_JES_MJB_Stat12: 3.89345104e-07 + syst_JES_MJB_Stat13: 6.31098899e-07 + syst_JES_MJB_Stat14: 2.44042758e-06 + syst_JES_MJB_Stat15: 1.58142752e-06 + syst_JES_MJB_Stat16: 6.85329548e-06 + syst_JES_MJB_Stat2: 2.88840780e-09 + syst_JES_MJB_Stat3: 1.38794312e-08 + syst_JES_MJB_Stat4: 9.04517234e-09 + syst_JES_MJB_Stat5: 1.78329528e-08 + syst_JES_MJB_Stat6: 2.20112534e-08 + syst_JES_MJB_Stat7: 2.55026293e-08 + syst_JES_MJB_Stat8: 4.63175485e-08 + syst_JES_MJB_Stat9: 7.18966592e-08 + syst_JES_MJB_Threshold: 4.11507506e-06 + syst_JES_Pileup_MuOffset: 7.14111845e-06 + syst_JES_Pileup_NPVOffset: 6.02020089e-06 + syst_JES_Pileup_Pt_term: 2.39600167e-06 + syst_JES_Pileup_Rho_topology: 7.78836599e-06 + syst_JES_PunchThrough_MC15: 1.38731088e-05 + syst_JES_SingleParticle_HighPt: 3.32101250e-07 + syst_JES_Zjet_MC: 9.31231640e-06 + syst_JES_Zjet_MuScale: 8.58245012e-07 + syst_JES_Zjet_MuSmearID: 2.27763534e-07 + syst_JES_Zjet_MuSmearMS: 2.00093097e-06 + syst_JES_Zjet_OOC: 5.80770064e-06 + syst_JES_Zjet_Stat1: 9.52698767e-07 + syst_JES_Zjet_Stat10: 5.19263524e-07 + syst_JES_Zjet_Stat11: 5.99701667e-07 + syst_JES_Zjet_Stat12: 1.16514084e-06 + syst_JES_Zjet_Stat13: 2.16919939e-06 + syst_JES_Zjet_Stat2: 1.08849761e-08 + syst_JES_Zjet_Stat3: 3.28164395e-07 + syst_JES_Zjet_Stat4: 3.79618899e-07 + syst_JES_Zjet_Stat5: 3.71203351e-07 + syst_JES_Zjet_Stat6: 4.36799393e-07 + syst_JES_Zjet_Stat7: 4.33857059e-07 + syst_JES_Zjet_Stat8: 1.92956854e-07 + syst_JES_Zjet_Stat9: 3.87523225e-07 + syst_JES_Zjet_Veto: 1.05730969e-06 + syst_JES_Zjet_dPhi: 1.00574511e-06 syst_PRW: 0.0 syst_Unfolding_bias: 0.0 - syst_cleaning: 7.353421703533669e-06 - syst_lumi: 1.434e-05 -- stat: 2.5981e-05 - syst_JER_CROSS_CALIB_FORWARD: 9.703e-22 - syst_JER_NOISE_FORWARD: 8.378e-20 - syst_JER_NP0: 5.943800362562659e-07 - syst_JER_NP1: 1.1723721540108327e-07 - syst_JER_NP2: 6.115066884343948e-07 - syst_JER_NP3: 1.53975154083378e-07 - syst_JER_NP4: 4.493530098931129e-08 - syst_JER_NP5: 1.9747979010521557e-07 - syst_JER_NP6: 1.1002505839580363e-07 - syst_JER_NP7: 2.5225008919720923e-14 - syst_JER_NP8: 1.691086854658861e-07 - syst_JES_EtaIntercalibration_Modelling: 1.415541055568506e-05 - syst_JES_EtaIntercalibration_NonClosure: 1.9141684898409543e-11 - syst_JES_EtaIntercalibration_Stat0: 2.405577269596635e-25 - syst_JES_EtaIntercalibration_Stat1: 3.132388385880652e-25 - syst_JES_EtaIntercalibration_Stat10: 2.694357808458261e-25 - syst_JES_EtaIntercalibration_Stat100: 9.750580021208736e-11 - syst_JES_EtaIntercalibration_Stat101: 9.76487574972155e-22 - syst_JES_EtaIntercalibration_Stat102: 3.416748744907467e-18 - syst_JES_EtaIntercalibration_Stat103: 3.415279604186923e-18 - syst_JES_EtaIntercalibration_Stat104: 4.6768703004787296e-23 - syst_JES_EtaIntercalibration_Stat105: 5.237424055952983e-21 - syst_JES_EtaIntercalibration_Stat106: 3.8355307135606407e-22 - syst_JES_EtaIntercalibration_Stat107: 2.533827008203204e-25 - syst_JES_EtaIntercalibration_Stat108: 2.7805000035964754e-22 - syst_JES_EtaIntercalibration_Stat109: 2.442711200183108e-20 - syst_JES_EtaIntercalibration_Stat11: 1.248871958008506e-25 - syst_JES_EtaIntercalibration_Stat110: 1.8606931095898107e-19 - syst_JES_EtaIntercalibration_Stat111: 8.033099183155077e-17 - syst_JES_EtaIntercalibration_Stat112: 8.037757710406554e-17 - syst_JES_EtaIntercalibration_Stat113: 1.4064255764642954e-10 - syst_JES_EtaIntercalibration_Stat114: 1.4791713875452343e-10 - syst_JES_EtaIntercalibration_Stat115: 3.930023297283854e-10 - syst_JES_EtaIntercalibration_Stat116: 6.062025239142443e-10 - syst_JES_EtaIntercalibration_Stat117: 1.2633542139875103e-20 - syst_JES_EtaIntercalibration_Stat118: 6.827404368472454e-17 - syst_JES_EtaIntercalibration_Stat119: 2.4950189647530235e-10 - syst_JES_EtaIntercalibration_Stat12: 2.8399214544596122e-24 - syst_JES_EtaIntercalibration_Stat120: 1.2239577882835666e-09 - syst_JES_EtaIntercalibration_Stat121: 9.45178791287659e-21 - syst_JES_EtaIntercalibration_Stat122: 5.4853758183943916e-17 - syst_JES_EtaIntercalibration_Stat123: 1.0234304605101414e-17 - syst_JES_EtaIntercalibration_Stat124: 4.027328231905118e-17 - syst_JES_EtaIntercalibration_Stat125: 1.9104221392142627e-20 - syst_JES_EtaIntercalibration_Stat126: 8.150543662848508e-21 - syst_JES_EtaIntercalibration_Stat127: 8.757248883068244e-25 - syst_JES_EtaIntercalibration_Stat128: 1.698418490096007e-19 - syst_JES_EtaIntercalibration_Stat129: 3.885856539305298e-14 - syst_JES_EtaIntercalibration_Stat13: 3.2838249039801137e-25 - syst_JES_EtaIntercalibration_Stat130: 1.3042350020168837e-13 - syst_JES_EtaIntercalibration_Stat131: 1.632949273270606e-16 - syst_JES_EtaIntercalibration_Stat132: 5.7755203166081116e-11 - syst_JES_EtaIntercalibration_Stat133: 1.4182129706077293e-10 - syst_JES_EtaIntercalibration_Stat134: 6.424339421294613e-19 - syst_JES_EtaIntercalibration_Stat135: 1.4816697700567424e-18 - syst_JES_EtaIntercalibration_Stat136: 2.8978590925026015e-09 - syst_JES_EtaIntercalibration_Stat137: 2.918659409729062e-10 - syst_JES_EtaIntercalibration_Stat138: 2.108638804418623e-09 - syst_JES_EtaIntercalibration_Stat139: 1.2323541497242532e-09 - syst_JES_EtaIntercalibration_Stat14: 3.1274989796161405e-25 - syst_JES_EtaIntercalibration_Stat140: 5.095126568594739e-10 - syst_JES_EtaIntercalibration_Stat141: 5.474795524596404e-10 - syst_JES_EtaIntercalibration_Stat142: 1.150098564254386e-13 - syst_JES_EtaIntercalibration_Stat143: 1.370413210495287e-17 - syst_JES_EtaIntercalibration_Stat144: 3.9558854349208284e-17 - syst_JES_EtaIntercalibration_Stat145: 1.4818208348852434e-19 - syst_JES_EtaIntercalibration_Stat146: 6.064288148661803e-19 - syst_JES_EtaIntercalibration_Stat147: 3.813048599935704e-14 - syst_JES_EtaIntercalibration_Stat148: 1.3042274310753826e-13 - syst_JES_EtaIntercalibration_Stat149: 1.0938766875201245e-16 - syst_JES_EtaIntercalibration_Stat15: 2.3468419205391744e-25 - syst_JES_EtaIntercalibration_Stat150: 5.802367077278726e-11 - syst_JES_EtaIntercalibration_Stat151: 3.375853627201107e-10 - syst_JES_EtaIntercalibration_Stat152: 7.166360217914623e-10 - syst_JES_EtaIntercalibration_Stat153: 6.212214928767356e-18 - syst_JES_EtaIntercalibration_Stat154: 3.064929495241286e-10 - syst_JES_EtaIntercalibration_Stat155: 2.930330015544325e-10 - syst_JES_EtaIntercalibration_Stat156: 1.1175839655256333e-09 - syst_JES_EtaIntercalibration_Stat157: 4.726178662513723e-17 - syst_JES_EtaIntercalibration_Stat158: 1.1860010739877092e-09 - syst_JES_EtaIntercalibration_Stat159: 4.459016387097184e-10 - syst_JES_EtaIntercalibration_Stat16: 1.5878819477530438e-25 - syst_JES_EtaIntercalibration_Stat160: 2.883002894119255e-18 - syst_JES_EtaIntercalibration_Stat161: 6.438684958902711e-18 - syst_JES_EtaIntercalibration_Stat162: 2.4379265303737112e-17 - syst_JES_EtaIntercalibration_Stat163: 2.2585366007384076e-18 - syst_JES_EtaIntercalibration_Stat164: 6.4472646913245315e-19 - syst_JES_EtaIntercalibration_Stat165: 4.696419497732607e-14 - syst_JES_EtaIntercalibration_Stat166: 4.221429407531145e-14 - syst_JES_EtaIntercalibration_Stat167: 4.1254580691118417e-10 - syst_JES_EtaIntercalibration_Stat168: 7.132552278111952e-10 - syst_JES_EtaIntercalibration_Stat169: 2.0460370396207395e-09 - syst_JES_EtaIntercalibration_Stat17: 2.424706734844443e-25 - syst_JES_EtaIntercalibration_Stat170: 2.8388313947623646e-09 - syst_JES_EtaIntercalibration_Stat171: 1.3570762016830576e-09 - syst_JES_EtaIntercalibration_Stat172: 3.3706895625898875e-10 - syst_JES_EtaIntercalibration_Stat173: 3.4337907228220785e-10 - syst_JES_EtaIntercalibration_Stat174: 4.5760822970026015e-09 - syst_JES_EtaIntercalibration_Stat175: 3.1884672960447232e-09 - syst_JES_EtaIntercalibration_Stat176: 3.432184343461173e-10 - syst_JES_EtaIntercalibration_Stat177: 6.567014161702409e-10 - syst_JES_EtaIntercalibration_Stat178: 4.080820515893858e-09 - syst_JES_EtaIntercalibration_Stat179: 4.303402491052865e-14 - syst_JES_EtaIntercalibration_Stat18: 2.405577269596635e-25 - syst_JES_EtaIntercalibration_Stat180: 5.557795660826332e-17 - syst_JES_EtaIntercalibration_Stat181: 1.0035502272994836e-17 - syst_JES_EtaIntercalibration_Stat182: 5.356116257389771e-12 - syst_JES_EtaIntercalibration_Stat183: 1.0109980563779526e-10 - syst_JES_EtaIntercalibration_Stat184: 7.495296854359456e-10 - syst_JES_EtaIntercalibration_Stat185: 7.460443485477254e-10 - syst_JES_EtaIntercalibration_Stat186: 2.488000401929228e-08 - syst_JES_EtaIntercalibration_Stat187: 2.1540661549729616e-08 - syst_JES_EtaIntercalibration_Stat188: 1.8967181676516942e-08 - syst_JES_EtaIntercalibration_Stat189: 1.1015772464970398e-08 - syst_JES_EtaIntercalibration_Stat19: 8.443312887723633e-25 - syst_JES_EtaIntercalibration_Stat190: 1.0545619031142743e-08 - syst_JES_EtaIntercalibration_Stat191: 2.3484912177821743e-08 - syst_JES_EtaIntercalibration_Stat192: 5.317498730606337e-08 - syst_JES_EtaIntercalibration_Stat193: 3.184460287081627e-08 - syst_JES_EtaIntercalibration_Stat194: 4.150129911219648e-09 - syst_JES_EtaIntercalibration_Stat195: 2.4382310554990476e-09 - syst_JES_EtaIntercalibration_Stat196: 9.28083189967365e-10 - syst_JES_EtaIntercalibration_Stat197: 5.520780367620143e-14 - syst_JES_EtaIntercalibration_Stat198: 4.767787835327826e-10 - syst_JES_EtaIntercalibration_Stat199: 3.182246522112955e-09 - syst_JES_EtaIntercalibration_Stat2: 1.518078873939032e-25 - syst_JES_EtaIntercalibration_Stat20: 2.405577269596635e-25 - syst_JES_EtaIntercalibration_Stat200: 8.525483842574567e-09 - syst_JES_EtaIntercalibration_Stat201: 3.509428265401645e-08 - syst_JES_EtaIntercalibration_Stat202: 9.973800228598928e-08 - syst_JES_EtaIntercalibration_Stat203: 5.443461467669262e-08 - syst_JES_EtaIntercalibration_Stat204: 1.9899859371362403e-08 - syst_JES_EtaIntercalibration_Stat205: 2.2343497376194265e-08 - syst_JES_EtaIntercalibration_Stat206: 5.965631064690474e-08 - syst_JES_EtaIntercalibration_Stat207: 9.51358275046788e-08 - syst_JES_EtaIntercalibration_Stat208: 5.013202868426531e-08 - syst_JES_EtaIntercalibration_Stat209: 1.6109440555152746e-08 - syst_JES_EtaIntercalibration_Stat21: 2.405577269596635e-25 - syst_JES_EtaIntercalibration_Stat210: 3.5511748408097282e-09 - syst_JES_EtaIntercalibration_Stat211: 4.946537099830547e-09 - syst_JES_EtaIntercalibration_Stat212: 3.14606603872201e-09 - syst_JES_EtaIntercalibration_Stat213: 9.623641241754599e-09 - syst_JES_EtaIntercalibration_Stat214: 3.5096294676219026e-08 - syst_JES_EtaIntercalibration_Stat215: 1.0552240615148992e-07 - syst_JES_EtaIntercalibration_Stat216: 6.560303880156773e-08 - syst_JES_EtaIntercalibration_Stat217: 2.1863778264517777e-08 - syst_JES_EtaIntercalibration_Stat218: 2.764929113015377e-08 - syst_JES_EtaIntercalibration_Stat219: 6.678591093935907e-08 - syst_JES_EtaIntercalibration_Stat22: 2.405577269596635e-25 - syst_JES_EtaIntercalibration_Stat220: 9.572179010026924e-08 - syst_JES_EtaIntercalibration_Stat221: 3.842607805904735e-08 - syst_JES_EtaIntercalibration_Stat222: 1.746421197764159e-08 - syst_JES_EtaIntercalibration_Stat223: 4.103265757128187e-09 - syst_JES_EtaIntercalibration_Stat224: 9.58226205026767e-09 - syst_JES_EtaIntercalibration_Stat225: 4.177415708305794e-08 - syst_JES_EtaIntercalibration_Stat226: 1.306194016982163e-07 - syst_JES_EtaIntercalibration_Stat227: 2.3108857609150651e-07 - syst_JES_EtaIntercalibration_Stat228: 1.7094446466615993e-07 - syst_JES_EtaIntercalibration_Stat229: 8.279379686908918e-08 - syst_JES_EtaIntercalibration_Stat23: 8.86789831174783e-25 - syst_JES_EtaIntercalibration_Stat230: 8.927760077421435e-08 - syst_JES_EtaIntercalibration_Stat231: 2.0947770764451286e-07 - syst_JES_EtaIntercalibration_Stat232: 2.2393255681119705e-07 - syst_JES_EtaIntercalibration_Stat233: 1.4458650032074224e-07 - syst_JES_EtaIntercalibration_Stat234: 4.46885922244145e-08 - syst_JES_EtaIntercalibration_Stat235: 1.0364592032492162e-08 - syst_JES_EtaIntercalibration_Stat236: 4.921081006242429e-09 - syst_JES_EtaIntercalibration_Stat237: 3.518126266921073e-08 - syst_JES_EtaIntercalibration_Stat238: 7.07475441269872e-08 - syst_JES_EtaIntercalibration_Stat239: 1.942231543225472e-08 - syst_JES_EtaIntercalibration_Stat24: 4.339734784523128e-24 - syst_JES_EtaIntercalibration_Stat240: 9.719960699509026e-09 - syst_JES_EtaIntercalibration_Stat241: 1.0332343332952114e-08 - syst_JES_EtaIntercalibration_Stat242: 2.0986387659623557e-08 - syst_JES_EtaIntercalibration_Stat243: 6.538860445062274e-08 - syst_JES_EtaIntercalibration_Stat244: 1.4531906275511868e-08 - syst_JES_EtaIntercalibration_Stat245: 7.21469713501544e-09 - syst_JES_EtaIntercalibration_Stat25: 4.133753348955402e-24 - syst_JES_EtaIntercalibration_Stat26: 2.127917467854428e-25 - syst_JES_EtaIntercalibration_Stat27: 1.4636442792905657e-24 - syst_JES_EtaIntercalibration_Stat28: 1.1842752551666358e-24 - syst_JES_EtaIntercalibration_Stat29: 3.467255789165258e-24 - syst_JES_EtaIntercalibration_Stat3: 1.5335098402031857e-25 - syst_JES_EtaIntercalibration_Stat30: 5.114736234645927e-24 - syst_JES_EtaIntercalibration_Stat31: 1.0368508855759734e-19 - syst_JES_EtaIntercalibration_Stat32: 1.0531875498848897e-19 - syst_JES_EtaIntercalibration_Stat33: 6.552072553780216e-24 - syst_JES_EtaIntercalibration_Stat34: 2.998768284946338e-23 - syst_JES_EtaIntercalibration_Stat35: 5.149387050902264e-10 - syst_JES_EtaIntercalibration_Stat36: 6.741470221694967e-24 - syst_JES_EtaIntercalibration_Stat37: 8.862730564966985e-23 - syst_JES_EtaIntercalibration_Stat38: 9.814313679519317e-24 - syst_JES_EtaIntercalibration_Stat39: 9.935909457618866e-24 - syst_JES_EtaIntercalibration_Stat4: 3.132388385880652e-25 - syst_JES_EtaIntercalibration_Stat40: 1.5352775538970145e-24 - syst_JES_EtaIntercalibration_Stat41: 4.0320831774654648e-25 - syst_JES_EtaIntercalibration_Stat42: 3.452496874727043e-25 - syst_JES_EtaIntercalibration_Stat43: 2.405577269596635e-25 - syst_JES_EtaIntercalibration_Stat44: 2.405577269596635e-25 - syst_JES_EtaIntercalibration_Stat45: 1.518078873939032e-25 - syst_JES_EtaIntercalibration_Stat46: 3.919478114175407e-24 - syst_JES_EtaIntercalibration_Stat47: 2.4449408234147513e-23 - syst_JES_EtaIntercalibration_Stat48: 1.878495972846362e-24 - syst_JES_EtaIntercalibration_Stat49: 3.4180204797514014e-24 - syst_JES_EtaIntercalibration_Stat5: 1.4731092118373301e-25 - syst_JES_EtaIntercalibration_Stat50: 1.0367125418220599e-19 - syst_JES_EtaIntercalibration_Stat51: 4.361270915685014e-24 - syst_JES_EtaIntercalibration_Stat52: 6.743345071253584e-24 - syst_JES_EtaIntercalibration_Stat53: 1.0372025991640724e-19 - syst_JES_EtaIntercalibration_Stat54: 1.0366736088193176e-19 - syst_JES_EtaIntercalibration_Stat55: 1.0666664755208163e-23 - syst_JES_EtaIntercalibration_Stat56: 3.1908453844553486e-24 - syst_JES_EtaIntercalibration_Stat57: 4.158713141873097e-19 - syst_JES_EtaIntercalibration_Stat58: 4.732781951453078e-23 - syst_JES_EtaIntercalibration_Stat59: 2.653328617039359e-23 - syst_JES_EtaIntercalibration_Stat6: 2.2677625537079493e-25 - syst_JES_EtaIntercalibration_Stat60: 2.0786796307993208e-24 - syst_JES_EtaIntercalibration_Stat61: 1.0807494378902077e-23 - syst_JES_EtaIntercalibration_Stat62: 6.081455486148032e-24 - syst_JES_EtaIntercalibration_Stat63: 6.053533183191449e-25 - syst_JES_EtaIntercalibration_Stat64: 2.445596897998523e-25 - syst_JES_EtaIntercalibration_Stat65: 2.405577269596635e-25 - syst_JES_EtaIntercalibration_Stat66: 2.405577269596635e-25 - syst_JES_EtaIntercalibration_Stat67: 6.751402965310247e-24 - syst_JES_EtaIntercalibration_Stat68: 8.093227353781678e-23 - syst_JES_EtaIntercalibration_Stat69: 5.2643445935842764e-23 - syst_JES_EtaIntercalibration_Stat7: 1.7249057945290808e-25 - syst_JES_EtaIntercalibration_Stat70: 2.869077334266192e-23 - syst_JES_EtaIntercalibration_Stat71: 1.9971248408649872e-23 - syst_JES_EtaIntercalibration_Stat72: 1.0371532929774013e-19 - syst_JES_EtaIntercalibration_Stat73: 3.6967011847963856e-18 - syst_JES_EtaIntercalibration_Stat74: 3.762026091717059e-18 - syst_JES_EtaIntercalibration_Stat75: 7.142111505009648e-11 - syst_JES_EtaIntercalibration_Stat76: 1.035703641584197e-19 - syst_JES_EtaIntercalibration_Stat77: 2.900098403502888e-23 - syst_JES_EtaIntercalibration_Stat78: 7.065035244072312e-11 - syst_JES_EtaIntercalibration_Stat79: 6.973236551274842e-11 - syst_JES_EtaIntercalibration_Stat8: 9.736385777073544e-25 - syst_JES_EtaIntercalibration_Stat80: 4.171597549025029e-19 - syst_JES_EtaIntercalibration_Stat81: 2.894826170648032e-18 - syst_JES_EtaIntercalibration_Stat82: 3.414309253626746e-18 - syst_JES_EtaIntercalibration_Stat83: 2.280000672697269e-23 - syst_JES_EtaIntercalibration_Stat84: 1.8248277363904792e-23 - syst_JES_EtaIntercalibration_Stat85: 6.050687791482883e-25 - syst_JES_EtaIntercalibration_Stat86: 9.389711098191466e-26 - syst_JES_EtaIntercalibration_Stat87: 1.4731092118373301e-25 - syst_JES_EtaIntercalibration_Stat88: 3.480870592294405e-24 - syst_JES_EtaIntercalibration_Stat89: 3.2102406717721335e-22 - syst_JES_EtaIntercalibration_Stat9: 6.930311596890865e-25 - syst_JES_EtaIntercalibration_Stat90: 3.4781933683307483e-22 - syst_JES_EtaIntercalibration_Stat91: 5.1598358501022104e-23 - syst_JES_EtaIntercalibration_Stat92: 4.9479755140360186e-23 - syst_JES_EtaIntercalibration_Stat93: 1.0394820948774202e-19 - syst_JES_EtaIntercalibration_Stat94: 3.4378012511923953e-18 - syst_JES_EtaIntercalibration_Stat95: 3.356246356795043e-18 - syst_JES_EtaIntercalibration_Stat96: 7.04684871059088e-11 - syst_JES_EtaIntercalibration_Stat97: 3.715005518165485e-22 - syst_JES_EtaIntercalibration_Stat98: 1.086457145956526e-22 - syst_JES_EtaIntercalibration_Stat99: 5.510542184531391e-10 - syst_JES_EtaIntercalibration_TotalStat_MJB: 6.8567888074520715e-06 - syst_JES_Flavour_Comp: 8.040601516677716e-06 - syst_JES_Flavour_Response: 4.864702560280537e-06 - syst_JES_Gjet_Generator: 1.3362831464551215e-05 - syst_JES_Gjet_OOC: 1.1055095521975377e-05 - syst_JES_Gjet_Purity: 6.92950176780409e-07 - syst_JES_Gjet_Stat1: 1.305818792941808e-08 - syst_JES_Gjet_Stat10: 6.011037431259268e-07 - syst_JES_Gjet_Stat11: 5.964024144820342e-07 - syst_JES_Gjet_Stat12: 4.046551958149061e-07 - syst_JES_Gjet_Stat13: 2.983552370916254e-06 - syst_JES_Gjet_Stat14: 8.591121638063333e-06 - syst_JES_Gjet_Stat15: 1.3966093333498812e-05 - syst_JES_Gjet_Stat2: 8.903822606049606e-08 - syst_JES_Gjet_Stat3: 7.973056800876312e-08 - syst_JES_Gjet_Stat4: 1.9631044292140956e-07 - syst_JES_Gjet_Stat5: 1.9670325365890622e-07 - syst_JES_Gjet_Stat6: 2.4917818423770565e-07 - syst_JES_Gjet_Stat7: 2.2970278078421256e-07 - syst_JES_Gjet_Stat8: 7.921986682644701e-08 - syst_JES_Gjet_Stat9: 2.575503251793715e-07 - syst_JES_Gjet_Veto: 1.262152197637036e-05 - syst_JES_Gjet_dPhi: 7.781559403487195e-07 - syst_JES_LArESZee: 1.8130777010376584e-05 - syst_JES_LArEsmear: 1.6822665514121119e-06 - syst_JES_LAr_JVT: 2.224410258922576e-06 - syst_JES_MJB_Alpha: 3.987601217210668e-07 - syst_JES_MJB_Asym: 8.209907718726197e-06 - syst_JES_MJB_Beta: 6.013086478672996e-07 - syst_JES_MJB_Fragmentation: 1.951439148423542e-06 - syst_JES_MJB_Stat1: 2.110866592812535e-14 - syst_JES_MJB_Stat10: 6.685835979890622e-08 - syst_JES_MJB_Stat11: 1.1314004330916618e-07 - syst_JES_MJB_Stat12: 1.7998618697000058e-07 - syst_JES_MJB_Stat13: 2.8965256342728956e-07 - syst_JES_MJB_Stat14: 1.804750606039516e-06 - syst_JES_MJB_Stat15: 2.334980674438228e-06 - syst_JES_MJB_Stat16: 5.406711015025679e-06 - syst_JES_MJB_Stat2: 1.5881707111069231e-09 - syst_JES_MJB_Stat3: 3.7250539687365604e-09 - syst_JES_MJB_Stat4: 4.940953425200444e-09 - syst_JES_MJB_Stat5: 9.19864273437663e-09 - syst_JES_MJB_Stat6: 9.469755474667759e-09 - syst_JES_MJB_Stat7: 1.2333646784305118e-08 - syst_JES_MJB_Stat8: 1.8548965436109906e-08 - syst_JES_MJB_Stat9: 3.909676712977686e-08 - syst_JES_MJB_Threshold: 2.219622490424892e-06 - syst_JES_Pileup_MuOffset: 4.339315931111723e-06 - syst_JES_Pileup_NPVOffset: 3.3827689841311954e-06 - syst_JES_Pileup_Pt_term: 1.2211210044463245e-06 - syst_JES_Pileup_Rho_topology: 4.620912572209086e-06 - syst_JES_PunchThrough_MC15: 8.903619755470243e-06 - syst_JES_SingleParticle_HighPt: 5.751356535635745e-07 - syst_JES_Zjet_MC: 5.059636943497033e-06 - syst_JES_Zjet_MuScale: 5.394501529335217e-07 - syst_JES_Zjet_MuSmearID: 1.1642994846687857e-07 - syst_JES_Zjet_MuSmearMS: 1.0166154828645885e-06 - syst_JES_Zjet_OOC: 3.11467731073381e-06 - syst_JES_Zjet_Stat1: 5.915152153579822e-07 - syst_JES_Zjet_Stat10: 3.2375019305013544e-07 - syst_JES_Zjet_Stat11: 3.246000308071458e-07 - syst_JES_Zjet_Stat12: 5.961557409771376e-07 - syst_JES_Zjet_Stat13: 1.167376366044816e-06 - syst_JES_Zjet_Stat2: 4.80643354034461e-09 - syst_JES_Zjet_Stat3: 1.7578700179478575e-07 - syst_JES_Zjet_Stat4: 2.0585652163582284e-07 - syst_JES_Zjet_Stat5: 1.897229822662505e-07 - syst_JES_Zjet_Stat6: 2.807372926776918e-07 - syst_JES_Zjet_Stat7: 2.4886937838954796e-07 - syst_JES_Zjet_Stat8: 1.0594486679400754e-07 - syst_JES_Zjet_Stat9: 2.414486436077039e-07 - syst_JES_Zjet_Veto: 5.826937682007592e-07 - syst_JES_Zjet_dPhi: 5.5690333766283e-07 + syst_cleaning: 7.35342170e-06 + syst_lumi: 1.43400000e-05 +- stat: 2.59810000e-05 + syst_JER_CROSS_CALIB_FORWARD: 9.70300000e-22 + syst_JER_NOISE_FORWARD: 8.37800000e-20 + syst_JER_NP0: 5.94380036e-07 + syst_JER_NP1: 1.17237215e-07 + syst_JER_NP2: 6.11506688e-07 + syst_JER_NP3: 1.53975154e-07 + syst_JER_NP4: 4.49353010e-08 + syst_JER_NP5: 1.97479790e-07 + syst_JER_NP6: 1.10025058e-07 + syst_JER_NP7: 2.52250089e-14 + syst_JER_NP8: 1.69108685e-07 + syst_JES_EtaIntercalibration_Modelling: 1.41554106e-05 + syst_JES_EtaIntercalibration_NonClosure: 1.91416849e-11 + syst_JES_EtaIntercalibration_Stat0: 2.40557727e-25 + syst_JES_EtaIntercalibration_Stat1: 3.13238839e-25 + syst_JES_EtaIntercalibration_Stat10: 2.69435781e-25 + syst_JES_EtaIntercalibration_Stat100: 9.75058002e-11 + syst_JES_EtaIntercalibration_Stat101: 9.76487575e-22 + syst_JES_EtaIntercalibration_Stat102: 3.41674874e-18 + syst_JES_EtaIntercalibration_Stat103: 3.41527960e-18 + syst_JES_EtaIntercalibration_Stat104: 4.67687030e-23 + syst_JES_EtaIntercalibration_Stat105: 5.23742406e-21 + syst_JES_EtaIntercalibration_Stat106: 3.83553071e-22 + syst_JES_EtaIntercalibration_Stat107: 2.53382701e-25 + syst_JES_EtaIntercalibration_Stat108: 2.78050000e-22 + syst_JES_EtaIntercalibration_Stat109: 2.44271120e-20 + syst_JES_EtaIntercalibration_Stat11: 1.24887196e-25 + syst_JES_EtaIntercalibration_Stat110: 1.86069311e-19 + syst_JES_EtaIntercalibration_Stat111: 8.03309918e-17 + syst_JES_EtaIntercalibration_Stat112: 8.03775771e-17 + syst_JES_EtaIntercalibration_Stat113: 1.40642558e-10 + syst_JES_EtaIntercalibration_Stat114: 1.47917139e-10 + syst_JES_EtaIntercalibration_Stat115: 3.93002330e-10 + syst_JES_EtaIntercalibration_Stat116: 6.06202524e-10 + syst_JES_EtaIntercalibration_Stat117: 1.26335421e-20 + syst_JES_EtaIntercalibration_Stat118: 6.82740437e-17 + syst_JES_EtaIntercalibration_Stat119: 2.49501896e-10 + syst_JES_EtaIntercalibration_Stat12: 2.83992145e-24 + syst_JES_EtaIntercalibration_Stat120: 1.22395779e-09 + syst_JES_EtaIntercalibration_Stat121: 9.45178791e-21 + syst_JES_EtaIntercalibration_Stat122: 5.48537582e-17 + syst_JES_EtaIntercalibration_Stat123: 1.02343046e-17 + syst_JES_EtaIntercalibration_Stat124: 4.02732823e-17 + syst_JES_EtaIntercalibration_Stat125: 1.91042214e-20 + syst_JES_EtaIntercalibration_Stat126: 8.15054366e-21 + syst_JES_EtaIntercalibration_Stat127: 8.75724888e-25 + syst_JES_EtaIntercalibration_Stat128: 1.69841849e-19 + syst_JES_EtaIntercalibration_Stat129: 3.88585654e-14 + syst_JES_EtaIntercalibration_Stat13: 3.28382490e-25 + syst_JES_EtaIntercalibration_Stat130: 1.30423500e-13 + syst_JES_EtaIntercalibration_Stat131: 1.63294927e-16 + syst_JES_EtaIntercalibration_Stat132: 5.77552032e-11 + syst_JES_EtaIntercalibration_Stat133: 1.41821297e-10 + syst_JES_EtaIntercalibration_Stat134: 6.42433942e-19 + syst_JES_EtaIntercalibration_Stat135: 1.48166977e-18 + syst_JES_EtaIntercalibration_Stat136: 2.89785909e-09 + syst_JES_EtaIntercalibration_Stat137: 2.91865941e-10 + syst_JES_EtaIntercalibration_Stat138: 2.10863880e-09 + syst_JES_EtaIntercalibration_Stat139: 1.23235415e-09 + syst_JES_EtaIntercalibration_Stat14: 3.12749898e-25 + syst_JES_EtaIntercalibration_Stat140: 5.09512657e-10 + syst_JES_EtaIntercalibration_Stat141: 5.47479552e-10 + syst_JES_EtaIntercalibration_Stat142: 1.15009856e-13 + syst_JES_EtaIntercalibration_Stat143: 1.37041321e-17 + syst_JES_EtaIntercalibration_Stat144: 3.95588543e-17 + syst_JES_EtaIntercalibration_Stat145: 1.48182083e-19 + syst_JES_EtaIntercalibration_Stat146: 6.06428815e-19 + syst_JES_EtaIntercalibration_Stat147: 3.81304860e-14 + syst_JES_EtaIntercalibration_Stat148: 1.30422743e-13 + syst_JES_EtaIntercalibration_Stat149: 1.09387669e-16 + syst_JES_EtaIntercalibration_Stat15: 2.34684192e-25 + syst_JES_EtaIntercalibration_Stat150: 5.80236708e-11 + syst_JES_EtaIntercalibration_Stat151: 3.37585363e-10 + syst_JES_EtaIntercalibration_Stat152: 7.16636022e-10 + syst_JES_EtaIntercalibration_Stat153: 6.21221493e-18 + syst_JES_EtaIntercalibration_Stat154: 3.06492950e-10 + syst_JES_EtaIntercalibration_Stat155: 2.93033002e-10 + syst_JES_EtaIntercalibration_Stat156: 1.11758397e-09 + syst_JES_EtaIntercalibration_Stat157: 4.72617866e-17 + syst_JES_EtaIntercalibration_Stat158: 1.18600107e-09 + syst_JES_EtaIntercalibration_Stat159: 4.45901639e-10 + syst_JES_EtaIntercalibration_Stat16: 1.58788195e-25 + syst_JES_EtaIntercalibration_Stat160: 2.88300289e-18 + syst_JES_EtaIntercalibration_Stat161: 6.43868496e-18 + syst_JES_EtaIntercalibration_Stat162: 2.43792653e-17 + syst_JES_EtaIntercalibration_Stat163: 2.25853660e-18 + syst_JES_EtaIntercalibration_Stat164: 6.44726469e-19 + syst_JES_EtaIntercalibration_Stat165: 4.69641950e-14 + syst_JES_EtaIntercalibration_Stat166: 4.22142941e-14 + syst_JES_EtaIntercalibration_Stat167: 4.12545807e-10 + syst_JES_EtaIntercalibration_Stat168: 7.13255228e-10 + syst_JES_EtaIntercalibration_Stat169: 2.04603704e-09 + syst_JES_EtaIntercalibration_Stat17: 2.42470673e-25 + syst_JES_EtaIntercalibration_Stat170: 2.83883139e-09 + syst_JES_EtaIntercalibration_Stat171: 1.35707620e-09 + syst_JES_EtaIntercalibration_Stat172: 3.37068956e-10 + syst_JES_EtaIntercalibration_Stat173: 3.43379072e-10 + syst_JES_EtaIntercalibration_Stat174: 4.57608230e-09 + syst_JES_EtaIntercalibration_Stat175: 3.18846730e-09 + syst_JES_EtaIntercalibration_Stat176: 3.43218434e-10 + syst_JES_EtaIntercalibration_Stat177: 6.56701416e-10 + syst_JES_EtaIntercalibration_Stat178: 4.08082052e-09 + syst_JES_EtaIntercalibration_Stat179: 4.30340249e-14 + syst_JES_EtaIntercalibration_Stat18: 2.40557727e-25 + syst_JES_EtaIntercalibration_Stat180: 5.55779566e-17 + syst_JES_EtaIntercalibration_Stat181: 1.00355023e-17 + syst_JES_EtaIntercalibration_Stat182: 5.35611626e-12 + syst_JES_EtaIntercalibration_Stat183: 1.01099806e-10 + syst_JES_EtaIntercalibration_Stat184: 7.49529685e-10 + syst_JES_EtaIntercalibration_Stat185: 7.46044349e-10 + syst_JES_EtaIntercalibration_Stat186: 2.48800040e-08 + syst_JES_EtaIntercalibration_Stat187: 2.15406615e-08 + syst_JES_EtaIntercalibration_Stat188: 1.89671817e-08 + syst_JES_EtaIntercalibration_Stat189: 1.10157725e-08 + syst_JES_EtaIntercalibration_Stat19: 8.44331289e-25 + syst_JES_EtaIntercalibration_Stat190: 1.05456190e-08 + syst_JES_EtaIntercalibration_Stat191: 2.34849122e-08 + syst_JES_EtaIntercalibration_Stat192: 5.31749873e-08 + syst_JES_EtaIntercalibration_Stat193: 3.18446029e-08 + syst_JES_EtaIntercalibration_Stat194: 4.15012991e-09 + syst_JES_EtaIntercalibration_Stat195: 2.43823106e-09 + syst_JES_EtaIntercalibration_Stat196: 9.28083190e-10 + syst_JES_EtaIntercalibration_Stat197: 5.52078037e-14 + syst_JES_EtaIntercalibration_Stat198: 4.76778784e-10 + syst_JES_EtaIntercalibration_Stat199: 3.18224652e-09 + syst_JES_EtaIntercalibration_Stat2: 1.51807887e-25 + syst_JES_EtaIntercalibration_Stat20: 2.40557727e-25 + syst_JES_EtaIntercalibration_Stat200: 8.52548384e-09 + syst_JES_EtaIntercalibration_Stat201: 3.50942827e-08 + syst_JES_EtaIntercalibration_Stat202: 9.97380023e-08 + syst_JES_EtaIntercalibration_Stat203: 5.44346147e-08 + syst_JES_EtaIntercalibration_Stat204: 1.98998594e-08 + syst_JES_EtaIntercalibration_Stat205: 2.23434974e-08 + syst_JES_EtaIntercalibration_Stat206: 5.96563106e-08 + syst_JES_EtaIntercalibration_Stat207: 9.51358275e-08 + syst_JES_EtaIntercalibration_Stat208: 5.01320287e-08 + syst_JES_EtaIntercalibration_Stat209: 1.61094406e-08 + syst_JES_EtaIntercalibration_Stat21: 2.40557727e-25 + syst_JES_EtaIntercalibration_Stat210: 3.55117484e-09 + syst_JES_EtaIntercalibration_Stat211: 4.94653710e-09 + syst_JES_EtaIntercalibration_Stat212: 3.14606604e-09 + syst_JES_EtaIntercalibration_Stat213: 9.62364124e-09 + syst_JES_EtaIntercalibration_Stat214: 3.50962947e-08 + syst_JES_EtaIntercalibration_Stat215: 1.05522406e-07 + syst_JES_EtaIntercalibration_Stat216: 6.56030388e-08 + syst_JES_EtaIntercalibration_Stat217: 2.18637783e-08 + syst_JES_EtaIntercalibration_Stat218: 2.76492911e-08 + syst_JES_EtaIntercalibration_Stat219: 6.67859109e-08 + syst_JES_EtaIntercalibration_Stat22: 2.40557727e-25 + syst_JES_EtaIntercalibration_Stat220: 9.57217901e-08 + syst_JES_EtaIntercalibration_Stat221: 3.84260781e-08 + syst_JES_EtaIntercalibration_Stat222: 1.74642120e-08 + syst_JES_EtaIntercalibration_Stat223: 4.10326576e-09 + syst_JES_EtaIntercalibration_Stat224: 9.58226205e-09 + syst_JES_EtaIntercalibration_Stat225: 4.17741571e-08 + syst_JES_EtaIntercalibration_Stat226: 1.30619402e-07 + syst_JES_EtaIntercalibration_Stat227: 2.31088576e-07 + syst_JES_EtaIntercalibration_Stat228: 1.70944465e-07 + syst_JES_EtaIntercalibration_Stat229: 8.27937969e-08 + syst_JES_EtaIntercalibration_Stat23: 8.86789831e-25 + syst_JES_EtaIntercalibration_Stat230: 8.92776008e-08 + syst_JES_EtaIntercalibration_Stat231: 2.09477708e-07 + syst_JES_EtaIntercalibration_Stat232: 2.23932557e-07 + syst_JES_EtaIntercalibration_Stat233: 1.44586500e-07 + syst_JES_EtaIntercalibration_Stat234: 4.46885922e-08 + syst_JES_EtaIntercalibration_Stat235: 1.03645920e-08 + syst_JES_EtaIntercalibration_Stat236: 4.92108101e-09 + syst_JES_EtaIntercalibration_Stat237: 3.51812627e-08 + syst_JES_EtaIntercalibration_Stat238: 7.07475441e-08 + syst_JES_EtaIntercalibration_Stat239: 1.94223154e-08 + syst_JES_EtaIntercalibration_Stat24: 4.33973478e-24 + syst_JES_EtaIntercalibration_Stat240: 9.71996070e-09 + syst_JES_EtaIntercalibration_Stat241: 1.03323433e-08 + syst_JES_EtaIntercalibration_Stat242: 2.09863877e-08 + syst_JES_EtaIntercalibration_Stat243: 6.53886045e-08 + syst_JES_EtaIntercalibration_Stat244: 1.45319063e-08 + syst_JES_EtaIntercalibration_Stat245: 7.21469714e-09 + syst_JES_EtaIntercalibration_Stat25: 4.13375335e-24 + syst_JES_EtaIntercalibration_Stat26: 2.12791747e-25 + syst_JES_EtaIntercalibration_Stat27: 1.46364428e-24 + syst_JES_EtaIntercalibration_Stat28: 1.18427526e-24 + syst_JES_EtaIntercalibration_Stat29: 3.46725579e-24 + syst_JES_EtaIntercalibration_Stat3: 1.53350984e-25 + syst_JES_EtaIntercalibration_Stat30: 5.11473623e-24 + syst_JES_EtaIntercalibration_Stat31: 1.03685089e-19 + syst_JES_EtaIntercalibration_Stat32: 1.05318755e-19 + syst_JES_EtaIntercalibration_Stat33: 6.55207255e-24 + syst_JES_EtaIntercalibration_Stat34: 2.99876828e-23 + syst_JES_EtaIntercalibration_Stat35: 5.14938705e-10 + syst_JES_EtaIntercalibration_Stat36: 6.74147022e-24 + syst_JES_EtaIntercalibration_Stat37: 8.86273056e-23 + syst_JES_EtaIntercalibration_Stat38: 9.81431368e-24 + syst_JES_EtaIntercalibration_Stat39: 9.93590946e-24 + syst_JES_EtaIntercalibration_Stat4: 3.13238839e-25 + syst_JES_EtaIntercalibration_Stat40: 1.53527755e-24 + syst_JES_EtaIntercalibration_Stat41: 4.03208318e-25 + syst_JES_EtaIntercalibration_Stat42: 3.45249687e-25 + syst_JES_EtaIntercalibration_Stat43: 2.40557727e-25 + syst_JES_EtaIntercalibration_Stat44: 2.40557727e-25 + syst_JES_EtaIntercalibration_Stat45: 1.51807887e-25 + syst_JES_EtaIntercalibration_Stat46: 3.91947811e-24 + syst_JES_EtaIntercalibration_Stat47: 2.44494082e-23 + syst_JES_EtaIntercalibration_Stat48: 1.87849597e-24 + syst_JES_EtaIntercalibration_Stat49: 3.41802048e-24 + syst_JES_EtaIntercalibration_Stat5: 1.47310921e-25 + syst_JES_EtaIntercalibration_Stat50: 1.03671254e-19 + syst_JES_EtaIntercalibration_Stat51: 4.36127092e-24 + syst_JES_EtaIntercalibration_Stat52: 6.74334507e-24 + syst_JES_EtaIntercalibration_Stat53: 1.03720260e-19 + syst_JES_EtaIntercalibration_Stat54: 1.03667361e-19 + syst_JES_EtaIntercalibration_Stat55: 1.06666648e-23 + syst_JES_EtaIntercalibration_Stat56: 3.19084538e-24 + syst_JES_EtaIntercalibration_Stat57: 4.15871314e-19 + syst_JES_EtaIntercalibration_Stat58: 4.73278195e-23 + syst_JES_EtaIntercalibration_Stat59: 2.65332862e-23 + syst_JES_EtaIntercalibration_Stat6: 2.26776255e-25 + syst_JES_EtaIntercalibration_Stat60: 2.07867963e-24 + syst_JES_EtaIntercalibration_Stat61: 1.08074944e-23 + syst_JES_EtaIntercalibration_Stat62: 6.08145549e-24 + syst_JES_EtaIntercalibration_Stat63: 6.05353318e-25 + syst_JES_EtaIntercalibration_Stat64: 2.44559690e-25 + syst_JES_EtaIntercalibration_Stat65: 2.40557727e-25 + syst_JES_EtaIntercalibration_Stat66: 2.40557727e-25 + syst_JES_EtaIntercalibration_Stat67: 6.75140297e-24 + syst_JES_EtaIntercalibration_Stat68: 8.09322735e-23 + syst_JES_EtaIntercalibration_Stat69: 5.26434459e-23 + syst_JES_EtaIntercalibration_Stat7: 1.72490579e-25 + syst_JES_EtaIntercalibration_Stat70: 2.86907733e-23 + syst_JES_EtaIntercalibration_Stat71: 1.99712484e-23 + syst_JES_EtaIntercalibration_Stat72: 1.03715329e-19 + syst_JES_EtaIntercalibration_Stat73: 3.69670118e-18 + syst_JES_EtaIntercalibration_Stat74: 3.76202609e-18 + syst_JES_EtaIntercalibration_Stat75: 7.14211151e-11 + syst_JES_EtaIntercalibration_Stat76: 1.03570364e-19 + syst_JES_EtaIntercalibration_Stat77: 2.90009840e-23 + syst_JES_EtaIntercalibration_Stat78: 7.06503524e-11 + syst_JES_EtaIntercalibration_Stat79: 6.97323655e-11 + syst_JES_EtaIntercalibration_Stat8: 9.73638578e-25 + syst_JES_EtaIntercalibration_Stat80: 4.17159755e-19 + syst_JES_EtaIntercalibration_Stat81: 2.89482617e-18 + syst_JES_EtaIntercalibration_Stat82: 3.41430925e-18 + syst_JES_EtaIntercalibration_Stat83: 2.28000067e-23 + syst_JES_EtaIntercalibration_Stat84: 1.82482774e-23 + syst_JES_EtaIntercalibration_Stat85: 6.05068779e-25 + syst_JES_EtaIntercalibration_Stat86: 9.38971110e-26 + syst_JES_EtaIntercalibration_Stat87: 1.47310921e-25 + syst_JES_EtaIntercalibration_Stat88: 3.48087059e-24 + syst_JES_EtaIntercalibration_Stat89: 3.21024067e-22 + syst_JES_EtaIntercalibration_Stat9: 6.93031160e-25 + syst_JES_EtaIntercalibration_Stat90: 3.47819337e-22 + syst_JES_EtaIntercalibration_Stat91: 5.15983585e-23 + syst_JES_EtaIntercalibration_Stat92: 4.94797551e-23 + syst_JES_EtaIntercalibration_Stat93: 1.03948209e-19 + syst_JES_EtaIntercalibration_Stat94: 3.43780125e-18 + syst_JES_EtaIntercalibration_Stat95: 3.35624636e-18 + syst_JES_EtaIntercalibration_Stat96: 7.04684871e-11 + syst_JES_EtaIntercalibration_Stat97: 3.71500552e-22 + syst_JES_EtaIntercalibration_Stat98: 1.08645715e-22 + syst_JES_EtaIntercalibration_Stat99: 5.51054218e-10 + syst_JES_EtaIntercalibration_TotalStat_MJB: 6.85678881e-06 + syst_JES_Flavour_Comp: 8.04060152e-06 + syst_JES_Flavour_Response: 4.86470256e-06 + syst_JES_Gjet_Generator: 1.33628315e-05 + syst_JES_Gjet_OOC: 1.10550955e-05 + syst_JES_Gjet_Purity: 6.92950177e-07 + syst_JES_Gjet_Stat1: 1.30581879e-08 + syst_JES_Gjet_Stat10: 6.01103743e-07 + syst_JES_Gjet_Stat11: 5.96402414e-07 + syst_JES_Gjet_Stat12: 4.04655196e-07 + syst_JES_Gjet_Stat13: 2.98355237e-06 + syst_JES_Gjet_Stat14: 8.59112164e-06 + syst_JES_Gjet_Stat15: 1.39660933e-05 + syst_JES_Gjet_Stat2: 8.90382261e-08 + syst_JES_Gjet_Stat3: 7.97305680e-08 + syst_JES_Gjet_Stat4: 1.96310443e-07 + syst_JES_Gjet_Stat5: 1.96703254e-07 + syst_JES_Gjet_Stat6: 2.49178184e-07 + syst_JES_Gjet_Stat7: 2.29702781e-07 + syst_JES_Gjet_Stat8: 7.92198668e-08 + syst_JES_Gjet_Stat9: 2.57550325e-07 + syst_JES_Gjet_Veto: 1.26215220e-05 + syst_JES_Gjet_dPhi: 7.78155940e-07 + syst_JES_LArESZee: 1.81307770e-05 + syst_JES_LArEsmear: 1.68226655e-06 + syst_JES_LAr_JVT: 2.22441026e-06 + syst_JES_MJB_Alpha: 3.98760122e-07 + syst_JES_MJB_Asym: 8.20990772e-06 + syst_JES_MJB_Beta: 6.01308648e-07 + syst_JES_MJB_Fragmentation: 1.95143915e-06 + syst_JES_MJB_Stat1: 2.11086659e-14 + syst_JES_MJB_Stat10: 6.68583598e-08 + syst_JES_MJB_Stat11: 1.13140043e-07 + syst_JES_MJB_Stat12: 1.79986187e-07 + syst_JES_MJB_Stat13: 2.89652563e-07 + syst_JES_MJB_Stat14: 1.80475061e-06 + syst_JES_MJB_Stat15: 2.33498067e-06 + syst_JES_MJB_Stat16: 5.40671102e-06 + syst_JES_MJB_Stat2: 1.58817071e-09 + syst_JES_MJB_Stat3: 3.72505397e-09 + syst_JES_MJB_Stat4: 4.94095343e-09 + syst_JES_MJB_Stat5: 9.19864273e-09 + syst_JES_MJB_Stat6: 9.46975547e-09 + syst_JES_MJB_Stat7: 1.23336468e-08 + syst_JES_MJB_Stat8: 1.85489654e-08 + syst_JES_MJB_Stat9: 3.90967671e-08 + syst_JES_MJB_Threshold: 2.21962249e-06 + syst_JES_Pileup_MuOffset: 4.33931593e-06 + syst_JES_Pileup_NPVOffset: 3.38276898e-06 + syst_JES_Pileup_Pt_term: 1.22112100e-06 + syst_JES_Pileup_Rho_topology: 4.62091257e-06 + syst_JES_PunchThrough_MC15: 8.90361976e-06 + syst_JES_SingleParticle_HighPt: 5.75135654e-07 + syst_JES_Zjet_MC: 5.05963694e-06 + syst_JES_Zjet_MuScale: 5.39450153e-07 + syst_JES_Zjet_MuSmearID: 1.16429948e-07 + syst_JES_Zjet_MuSmearMS: 1.01661548e-06 + syst_JES_Zjet_OOC: 3.11467731e-06 + syst_JES_Zjet_Stat1: 5.91515215e-07 + syst_JES_Zjet_Stat10: 3.23750193e-07 + syst_JES_Zjet_Stat11: 3.24600031e-07 + syst_JES_Zjet_Stat12: 5.96155741e-07 + syst_JES_Zjet_Stat13: 1.16737637e-06 + syst_JES_Zjet_Stat2: 4.80643354e-09 + syst_JES_Zjet_Stat3: 1.75787002e-07 + syst_JES_Zjet_Stat4: 2.05856522e-07 + syst_JES_Zjet_Stat5: 1.89722982e-07 + syst_JES_Zjet_Stat6: 2.80737293e-07 + syst_JES_Zjet_Stat7: 2.48869378e-07 + syst_JES_Zjet_Stat8: 1.05944867e-07 + syst_JES_Zjet_Stat9: 2.41448644e-07 + syst_JES_Zjet_Veto: 5.82693768e-07 + syst_JES_Zjet_dPhi: 5.56903338e-07 syst_PRW: 0.0 syst_Unfolding_bias: 0.0 - syst_cleaning: 3.550704155516198e-06 - syst_lumi: 7.022e-06 -- stat: 1.552e-05 - syst_JER_CROSS_CALIB_FORWARD: 1.566e-22 - syst_JER_NOISE_FORWARD: 1.0039e-20 - syst_JER_NP0: 2.6521389009627684e-07 - syst_JER_NP1: 4.7357703438828196e-08 - syst_JER_NP2: 2.7701485068494073e-07 - syst_JER_NP3: 7.624903474798878e-08 - syst_JER_NP4: 2.7323258864930444e-08 - syst_JER_NP5: 1.0226452806325369e-07 - syst_JER_NP6: 5.1361523293220185e-08 - syst_JER_NP7: 3.848151435104913e-12 - syst_JER_NP8: 7.913093137326264e-08 - syst_JES_EtaIntercalibration_Modelling: 5.854942698267849e-06 - syst_JES_EtaIntercalibration_NonClosure: 1.3658723833140488e-12 - syst_JES_EtaIntercalibration_Stat0: 5.97222387390158e-26 - syst_JES_EtaIntercalibration_Stat1: 7.443842203459177e-26 - syst_JES_EtaIntercalibration_Stat10: 6.615342999421875e-26 - syst_JES_EtaIntercalibration_Stat100: 1.2220484472799976e-11 - syst_JES_EtaIntercalibration_Stat101: 1.11974069654541e-22 - syst_JES_EtaIntercalibration_Stat102: 2.5817346155071787e-19 - syst_JES_EtaIntercalibration_Stat103: 2.5814465504512678e-19 - syst_JES_EtaIntercalibration_Stat104: 5.972952536225279e-24 - syst_JES_EtaIntercalibration_Stat105: 5.962419056683286e-22 - syst_JES_EtaIntercalibration_Stat106: 4.5869915227739414e-23 - syst_JES_EtaIntercalibration_Stat107: 6.145252119116024e-26 - syst_JES_EtaIntercalibration_Stat108: 3.5043927747899493e-23 - syst_JES_EtaIntercalibration_Stat109: 4.128623378318734e-22 - syst_JES_EtaIntercalibration_Stat11: 3.0611306734603797e-26 - syst_JES_EtaIntercalibration_Stat110: 1.818154782650531e-20 - syst_JES_EtaIntercalibration_Stat111: 5.58274367821728e-18 - syst_JES_EtaIntercalibration_Stat112: 5.5819366465479525e-18 - syst_JES_EtaIntercalibration_Stat113: 1.4705113185017656e-11 - syst_JES_EtaIntercalibration_Stat114: 1.5294008611950947e-11 - syst_JES_EtaIntercalibration_Stat115: 1.481769467065671e-10 - syst_JES_EtaIntercalibration_Stat116: 2.675782642517886e-10 - syst_JES_EtaIntercalibration_Stat117: 1.2329163313055757e-21 - syst_JES_EtaIntercalibration_Stat118: 4.828194281793842e-18 - syst_JES_EtaIntercalibration_Stat119: 1.2566028451006913e-10 - syst_JES_EtaIntercalibration_Stat12: 4.413542199866226e-25 - syst_JES_EtaIntercalibration_Stat120: 6.650502687767294e-10 - syst_JES_EtaIntercalibration_Stat121: 1.1486666487715225e-21 - syst_JES_EtaIntercalibration_Stat122: 3.816526758428295e-18 - syst_JES_EtaIntercalibration_Stat123: 7.836960316347148e-19 - syst_JES_EtaIntercalibration_Stat124: 2.8819172597942502e-18 - syst_JES_EtaIntercalibration_Stat125: 1.9282154314287603e-21 - syst_JES_EtaIntercalibration_Stat126: 9.63983682434511e-22 - syst_JES_EtaIntercalibration_Stat127: 1.823849500370028e-25 - syst_JES_EtaIntercalibration_Stat128: 1.512064875426977e-20 - syst_JES_EtaIntercalibration_Stat129: 2.7782102409891525e-15 - syst_JES_EtaIntercalibration_Stat13: 6.251519335329613e-26 - syst_JES_EtaIntercalibration_Stat130: 8.740806166858184e-15 - syst_JES_EtaIntercalibration_Stat131: 9.715996584499194e-18 - syst_JES_EtaIntercalibration_Stat132: 7.044248658114871e-12 - syst_JES_EtaIntercalibration_Stat133: 2.6371806323230873e-10 - syst_JES_EtaIntercalibration_Stat134: 1.3930032017192207e-19 - syst_JES_EtaIntercalibration_Stat135: 1.2073663611348463e-19 - syst_JES_EtaIntercalibration_Stat136: 1.0549202358827895e-09 - syst_JES_EtaIntercalibration_Stat137: 5.081363891712539e-11 - syst_JES_EtaIntercalibration_Stat138: 9.847916483703545e-10 - syst_JES_EtaIntercalibration_Stat139: 6.448425156719977e-10 - syst_JES_EtaIntercalibration_Stat14: 5.931752354911658e-26 - syst_JES_EtaIntercalibration_Stat140: 1.6105066182726477e-10 - syst_JES_EtaIntercalibration_Stat141: 2.210776953911278e-10 - syst_JES_EtaIntercalibration_Stat142: 5.89270938040177e-14 - syst_JES_EtaIntercalibration_Stat143: 1.0192409823000644e-18 - syst_JES_EtaIntercalibration_Stat144: 2.613101481511003e-18 - syst_JES_EtaIntercalibration_Stat145: 1.366771980507356e-20 - syst_JES_EtaIntercalibration_Stat146: 4.7982041432185856e-20 - syst_JES_EtaIntercalibration_Stat147: 2.7287980728915855e-15 - syst_JES_EtaIntercalibration_Stat148: 8.73901036043424e-15 - syst_JES_EtaIntercalibration_Stat149: 6.715160980944538e-18 - syst_JES_EtaIntercalibration_Stat15: 6.394111197031219e-26 - syst_JES_EtaIntercalibration_Stat150: 7.077157603540129e-12 - syst_JES_EtaIntercalibration_Stat151: 7.58291843631337e-11 - syst_JES_EtaIntercalibration_Stat152: 2.894256899609194e-10 - syst_JES_EtaIntercalibration_Stat153: 4.301077760477599e-19 - syst_JES_EtaIntercalibration_Stat154: 1.2165355248409313e-10 - syst_JES_EtaIntercalibration_Stat155: 5.108960437310119e-11 - syst_JES_EtaIntercalibration_Stat156: 8.538363953357809e-10 - syst_JES_EtaIntercalibration_Stat157: 3.7396371491763745e-18 - syst_JES_EtaIntercalibration_Stat158: 4.1257052730412045e-10 - syst_JES_EtaIntercalibration_Stat159: 1.801151422964701e-10 - syst_JES_EtaIntercalibration_Stat16: 3.938116880883552e-26 - syst_JES_EtaIntercalibration_Stat160: 2.3022789012356866e-19 - syst_JES_EtaIntercalibration_Stat161: 5.455923821865551e-19 - syst_JES_EtaIntercalibration_Stat162: 1.4295733350549037e-18 - syst_JES_EtaIntercalibration_Stat163: 1.1625339788044905e-19 - syst_JES_EtaIntercalibration_Stat164: 3.055343024931898e-20 - syst_JES_EtaIntercalibration_Stat165: 3.3153434820649808e-15 - syst_JES_EtaIntercalibration_Stat166: 3.000176768067303e-15 - syst_JES_EtaIntercalibration_Stat167: 3.036701530855477e-11 - syst_JES_EtaIntercalibration_Stat168: 1.1036190420611634e-10 - syst_JES_EtaIntercalibration_Stat169: 1.0789758234084766e-09 - syst_JES_EtaIntercalibration_Stat17: 6.03105652021269e-26 - syst_JES_EtaIntercalibration_Stat170: 1.2462105639959207e-09 - syst_JES_EtaIntercalibration_Stat171: 5.481950193735179e-10 - syst_JES_EtaIntercalibration_Stat172: 2.0256411589504398e-10 - syst_JES_EtaIntercalibration_Stat173: 3.431365854561664e-10 - syst_JES_EtaIntercalibration_Stat174: 1.8948638463192078e-09 - syst_JES_EtaIntercalibration_Stat175: 1.7875216733836173e-09 - syst_JES_EtaIntercalibration_Stat176: 4.955268703297027e-10 - syst_JES_EtaIntercalibration_Stat177: 2.6523153564385964e-10 - syst_JES_EtaIntercalibration_Stat178: 1.2860733927749772e-09 - syst_JES_EtaIntercalibration_Stat179: 2.80973263318772e-15 - syst_JES_EtaIntercalibration_Stat18: 5.97222387390158e-26 - syst_JES_EtaIntercalibration_Stat180: 3.818563346338515e-18 - syst_JES_EtaIntercalibration_Stat181: 7.3923926068149625e-19 - syst_JES_EtaIntercalibration_Stat182: 4.254354594964082e-13 - syst_JES_EtaIntercalibration_Stat183: 1.2462105560458048e-11 - syst_JES_EtaIntercalibration_Stat184: 1.6290402953932442e-10 - syst_JES_EtaIntercalibration_Stat185: 9.473140239645985e-11 - syst_JES_EtaIntercalibration_Stat186: 9.825355197141728e-09 - syst_JES_EtaIntercalibration_Stat187: 9.39238280469871e-09 - syst_JES_EtaIntercalibration_Stat188: 1.0453291479242316e-08 - syst_JES_EtaIntercalibration_Stat189: 6.3300528236342555e-09 - syst_JES_EtaIntercalibration_Stat19: 1.70621773742392e-25 - syst_JES_EtaIntercalibration_Stat190: 4.732588509473436e-09 - syst_JES_EtaIntercalibration_Stat191: 1.1190116487329344e-08 - syst_JES_EtaIntercalibration_Stat192: 2.47692203147374e-08 - syst_JES_EtaIntercalibration_Stat193: 1.3666944455510163e-08 - syst_JES_EtaIntercalibration_Stat194: 9.55489000459974e-10 - syst_JES_EtaIntercalibration_Stat195: 6.315129511736081e-10 - syst_JES_EtaIntercalibration_Stat196: 1.2076108261770428e-10 - syst_JES_EtaIntercalibration_Stat197: 3.5821151834495775e-15 - syst_JES_EtaIntercalibration_Stat198: 4.483629695578683e-11 - syst_JES_EtaIntercalibration_Stat199: 5.282542822353644e-10 - syst_JES_EtaIntercalibration_Stat2: 3.631897300310129e-26 - syst_JES_EtaIntercalibration_Stat20: 5.97222387390158e-26 - syst_JES_EtaIntercalibration_Stat200: 3.739027146197256e-09 - syst_JES_EtaIntercalibration_Stat201: 1.732739818899537e-08 - syst_JES_EtaIntercalibration_Stat202: 4.48783430509639e-08 - syst_JES_EtaIntercalibration_Stat203: 2.6275859643406532e-08 - syst_JES_EtaIntercalibration_Stat204: 1.0265774532396472e-08 - syst_JES_EtaIntercalibration_Stat205: 9.202508462370464e-09 - syst_JES_EtaIntercalibration_Stat206: 2.543601138150398e-08 - syst_JES_EtaIntercalibration_Stat207: 3.969115865025862e-08 - syst_JES_EtaIntercalibration_Stat208: 2.3297409190723333e-08 - syst_JES_EtaIntercalibration_Stat209: 5.6984335347532134e-09 - syst_JES_EtaIntercalibration_Stat21: 5.97222387390158e-26 - syst_JES_EtaIntercalibration_Stat210: 8.256147209806764e-10 - syst_JES_EtaIntercalibration_Stat211: 1.507543707492423e-09 - syst_JES_EtaIntercalibration_Stat212: 5.261149177461136e-10 - syst_JES_EtaIntercalibration_Stat213: 4.069743818718815e-09 - syst_JES_EtaIntercalibration_Stat214: 1.732898781666142e-08 - syst_JES_EtaIntercalibration_Stat215: 4.946212161846679e-08 - syst_JES_EtaIntercalibration_Stat216: 3.109073173793116e-08 - syst_JES_EtaIntercalibration_Stat217: 1.0454337270602093e-08 - syst_JES_EtaIntercalibration_Stat218: 1.1269628776051143e-08 - syst_JES_EtaIntercalibration_Stat219: 2.9400411561745184e-08 - syst_JES_EtaIntercalibration_Stat22: 5.97222387390158e-26 - syst_JES_EtaIntercalibration_Stat220: 4.076058022158173e-08 - syst_JES_EtaIntercalibration_Stat221: 1.8521949141491562e-08 - syst_JES_EtaIntercalibration_Stat222: 8.083452031774544e-09 - syst_JES_EtaIntercalibration_Stat223: 8.174823345479216e-10 - syst_JES_EtaIntercalibration_Stat224: 2.005024256711125e-09 - syst_JES_EtaIntercalibration_Stat225: 1.2544627963793904e-08 - syst_JES_EtaIntercalibration_Stat226: 5.2666228268217585e-08 - syst_JES_EtaIntercalibration_Stat227: 1.0852621803048331e-07 - syst_JES_EtaIntercalibration_Stat228: 7.907399256392712e-08 - syst_JES_EtaIntercalibration_Stat229: 3.964548902460405e-08 - syst_JES_EtaIntercalibration_Stat23: 1.593283956958081e-25 - syst_JES_EtaIntercalibration_Stat230: 3.4229227277284545e-08 - syst_JES_EtaIntercalibration_Stat231: 9.303737206090894e-08 - syst_JES_EtaIntercalibration_Stat232: 1.0699802836968538e-07 - syst_JES_EtaIntercalibration_Stat233: 6.586510760637988e-08 - syst_JES_EtaIntercalibration_Stat234: 1.8062292213337705e-08 - syst_JES_EtaIntercalibration_Stat235: 3.006840201939571e-09 - syst_JES_EtaIntercalibration_Stat236: 2.474918681492384e-09 - syst_JES_EtaIntercalibration_Stat237: 1.2957158369025209e-08 - syst_JES_EtaIntercalibration_Stat238: 2.756573960553208e-08 - syst_JES_EtaIntercalibration_Stat239: 1.0093384268915952e-08 - syst_JES_EtaIntercalibration_Stat24: 7.792263134032372e-25 - syst_JES_EtaIntercalibration_Stat240: 5.838785490151184e-09 - syst_JES_EtaIntercalibration_Stat241: 4.746304773189349e-09 - syst_JES_EtaIntercalibration_Stat242: 8.667561767879129e-09 - syst_JES_EtaIntercalibration_Stat243: 2.672939640171472e-08 - syst_JES_EtaIntercalibration_Stat244: 8.321638104965554e-09 - syst_JES_EtaIntercalibration_Stat245: 2.894869038488615e-09 - syst_JES_EtaIntercalibration_Stat25: 7.215932580061983e-25 - syst_JES_EtaIntercalibration_Stat26: 5.776275703253785e-26 - syst_JES_EtaIntercalibration_Stat27: 3.753040696222198e-25 - syst_JES_EtaIntercalibration_Stat28: 2.400460845337828e-25 - syst_JES_EtaIntercalibration_Stat29: 6.240256885737958e-25 - syst_JES_EtaIntercalibration_Stat3: 3.275824349305072e-26 - syst_JES_EtaIntercalibration_Stat30: 9.982831862753174e-25 - syst_JES_EtaIntercalibration_Stat31: 9.809302804936279e-21 - syst_JES_EtaIntercalibration_Stat32: 1.0005385927736705e-20 - syst_JES_EtaIntercalibration_Stat33: 1.2296175822893068e-24 - syst_JES_EtaIntercalibration_Stat34: 4.86273102278956e-24 - syst_JES_EtaIntercalibration_Stat35: 1.94162895528471e-10 - syst_JES_EtaIntercalibration_Stat36: 1.72736582112765e-24 - syst_JES_EtaIntercalibration_Stat37: 1.4190919926248614e-23 - syst_JES_EtaIntercalibration_Stat38: 1.5546970766036706e-24 - syst_JES_EtaIntercalibration_Stat39: 1.5605777776195585e-24 - syst_JES_EtaIntercalibration_Stat4: 7.443842203459177e-26 - syst_JES_EtaIntercalibration_Stat40: 3.1628030289602293e-25 - syst_JES_EtaIntercalibration_Stat41: 9.504146779169607e-26 - syst_JES_EtaIntercalibration_Stat42: 6.506448858632487e-26 - syst_JES_EtaIntercalibration_Stat43: 5.97222387390158e-26 - syst_JES_EtaIntercalibration_Stat44: 5.97222387390158e-26 - syst_JES_EtaIntercalibration_Stat45: 3.631897300310129e-26 - syst_JES_EtaIntercalibration_Stat46: 7.282320646607096e-25 - syst_JES_EtaIntercalibration_Stat47: 3.5530937487631825e-24 - syst_JES_EtaIntercalibration_Stat48: 5.691983200080619e-25 - syst_JES_EtaIntercalibration_Stat49: 8.526716997180098e-25 - syst_JES_EtaIntercalibration_Stat5: 3.657225280181684e-26 - syst_JES_EtaIntercalibration_Stat50: 9.808413356792484e-21 - syst_JES_EtaIntercalibration_Stat51: 4.159335219419084e-25 - syst_JES_EtaIntercalibration_Stat52: 1.3103656321805758e-24 - syst_JES_EtaIntercalibration_Stat53: 9.814633421166325e-21 - syst_JES_EtaIntercalibration_Stat54: 9.807488726431286e-21 - syst_JES_EtaIntercalibration_Stat55: 2.1861120025058186e-24 - syst_JES_EtaIntercalibration_Stat56: 9.25669708913498e-25 - syst_JES_EtaIntercalibration_Stat57: 3.5992615399487803e-20 - syst_JES_EtaIntercalibration_Stat58: 7.149878108576397e-24 - syst_JES_EtaIntercalibration_Stat59: 3.950695567555162e-24 - syst_JES_EtaIntercalibration_Stat6: 5.371550683927314e-26 - syst_JES_EtaIntercalibration_Stat60: 4.591167498578112e-25 - syst_JES_EtaIntercalibration_Stat61: 1.80178957705943e-24 - syst_JES_EtaIntercalibration_Stat62: 1.175491687550363e-24 - syst_JES_EtaIntercalibration_Stat63: 9.76494294658192e-26 - syst_JES_EtaIntercalibration_Stat64: 5.818216307426186e-26 - syst_JES_EtaIntercalibration_Stat65: 5.97222387390158e-26 - syst_JES_EtaIntercalibration_Stat66: 5.97222387390158e-26 - syst_JES_EtaIntercalibration_Stat67: 1.1719888566023144e-24 - syst_JES_EtaIntercalibration_Stat68: 1.0698370471712034e-23 - syst_JES_EtaIntercalibration_Stat69: 5.906948535411495e-24 - syst_JES_EtaIntercalibration_Stat7: 4.02516007973596e-26 - syst_JES_EtaIntercalibration_Stat70: 3.421162960164277e-24 - syst_JES_EtaIntercalibration_Stat71: 2.6858138207999452e-24 - syst_JES_EtaIntercalibration_Stat72: 9.81554842732217e-21 - syst_JES_EtaIntercalibration_Stat73: 2.787722841796688e-19 - syst_JES_EtaIntercalibration_Stat74: 2.8431613507412525e-19 - syst_JES_EtaIntercalibration_Stat75: 1.0129033122661446e-11 - syst_JES_EtaIntercalibration_Stat76: 9.818269296360469e-21 - syst_JES_EtaIntercalibration_Stat77: 6.309166902214587e-24 - syst_JES_EtaIntercalibration_Stat78: 1.0055420963338772e-11 - syst_JES_EtaIntercalibration_Stat79: 9.966220346753938e-12 - syst_JES_EtaIntercalibration_Stat8: 1.6251512445000314e-25 - syst_JES_EtaIntercalibration_Stat80: 3.612742342113374e-20 - syst_JES_EtaIntercalibration_Stat81: 2.1889587891841978e-19 - syst_JES_EtaIntercalibration_Stat82: 2.5807723689236066e-19 - syst_JES_EtaIntercalibration_Stat83: 4.539007242778975e-24 - syst_JES_EtaIntercalibration_Stat84: 3.2390718867447196e-24 - syst_JES_EtaIntercalibration_Stat85: 1.4074085121243227e-25 - syst_JES_EtaIntercalibration_Stat86: 2.7455113239613493e-26 - syst_JES_EtaIntercalibration_Stat87: 3.657225280181684e-26 - syst_JES_EtaIntercalibration_Stat88: 5.783721185361549e-25 - syst_JES_EtaIntercalibration_Stat89: 3.8483146791810046e-23 - syst_JES_EtaIntercalibration_Stat9: 1.0482664868724936e-25 - syst_JES_EtaIntercalibration_Stat90: 4.338475686228978e-23 - syst_JES_EtaIntercalibration_Stat91: 8.435104789360948e-24 - syst_JES_EtaIntercalibration_Stat92: 8.379432722446072e-24 - syst_JES_EtaIntercalibration_Stat93: 9.849421141197842e-21 - syst_JES_EtaIntercalibration_Stat94: 2.592036795032046e-19 - syst_JES_EtaIntercalibration_Stat95: 2.5281157469546363e-19 - syst_JES_EtaIntercalibration_Stat96: 1.0037234429855207e-11 - syst_JES_EtaIntercalibration_Stat97: 4.8373818504951626e-23 - syst_JES_EtaIntercalibration_Stat98: 1.6302404876275156e-23 - syst_JES_EtaIntercalibration_Stat99: 2.1191994024867031e-10 - syst_JES_EtaIntercalibration_TotalStat_MJB: 3.3613644550985544e-06 - syst_JES_Flavour_Comp: 2.945630153294877e-06 - syst_JES_Flavour_Response: 2.623327276570729e-06 - syst_JES_Gjet_Generator: 6.0109128258526595e-06 - syst_JES_Gjet_OOC: 5.002625710564403e-06 - syst_JES_Gjet_Purity: 1.1938596944364942e-07 - syst_JES_Gjet_Stat1: 2.2855334185918172e-09 - syst_JES_Gjet_Stat10: 3.2515646618205213e-07 - syst_JES_Gjet_Stat11: 3.206004990638661e-07 - syst_JES_Gjet_Stat12: 1.721820765933551e-07 - syst_JES_Gjet_Stat13: 1.4370006958940556e-06 - syst_JES_Gjet_Stat14: 4.312655562411633e-06 - syst_JES_Gjet_Stat15: 6.864178465045909e-06 - syst_JES_Gjet_Stat2: 3.692848358652166e-08 - syst_JES_Gjet_Stat3: 3.309735317211937e-08 - syst_JES_Gjet_Stat4: 1.1240937182904278e-07 - syst_JES_Gjet_Stat5: 1.1126372937754694e-07 - syst_JES_Gjet_Stat6: 1.1147664452700396e-07 - syst_JES_Gjet_Stat7: 1.2348189047386664e-07 - syst_JES_Gjet_Stat8: 3.677904404344952e-08 - syst_JES_Gjet_Stat9: 1.3105475449215874e-07 - syst_JES_Gjet_Veto: 5.8422998040155385e-06 - syst_JES_Gjet_dPhi: 2.862321915857823e-07 - syst_JES_LArESZee: 7.807364984423362e-06 - syst_JES_LArEsmear: 7.622391799822414e-07 - syst_JES_LAr_JVT: 9.991275031246013e-07 - syst_JES_MJB_Alpha: 1.8160022026418358e-07 - syst_JES_MJB_Asym: 4.36133958778722e-06 - syst_JES_MJB_Beta: 3.3320147058499005e-07 - syst_JES_MJB_Fragmentation: 9.96326225440242e-07 - syst_JES_MJB_Stat1: 1.3845217731491938e-15 - syst_JES_MJB_Stat10: 2.2622939685195643e-08 - syst_JES_MJB_Stat11: 3.858081683946051e-08 - syst_JES_MJB_Stat12: 6.512618732123047e-08 - syst_JES_MJB_Stat13: 1.0453470811170804e-07 - syst_JES_MJB_Stat14: 1.0243787617380594e-06 - syst_JES_MJB_Stat15: 1.7605817220453018e-06 - syst_JES_MJB_Stat16: 3.157119692061104e-06 - syst_JES_MJB_Stat2: 4.633157626841772e-10 - syst_JES_MJB_Stat3: 6.87606143297164e-10 - syst_JES_MJB_Stat4: 1.3234358720769208e-09 - syst_JES_MJB_Stat5: 2.227515107506288e-09 - syst_JES_MJB_Stat6: 2.7780055345517224e-09 - syst_JES_MJB_Stat7: 6.200638414711827e-09 - syst_JES_MJB_Stat8: 5.656858911975797e-09 - syst_JES_MJB_Stat9: 1.311866672913067e-08 - syst_JES_MJB_Threshold: 9.877136363845544e-07 - syst_JES_Pileup_MuOffset: 2.1380567695924264e-06 - syst_JES_Pileup_NPVOffset: 1.5491865607472845e-06 - syst_JES_Pileup_Pt_term: 5.234019105811517e-07 - syst_JES_Pileup_Rho_topology: 2.236346294740598e-06 - syst_JES_PunchThrough_MC15: 4.550625561392631e-06 - syst_JES_SingleParticle_HighPt: 5.423062972158814e-07 - syst_JES_Zjet_MC: 2.262089023447132e-06 - syst_JES_Zjet_MuScale: 2.7275770841536263e-07 - syst_JES_Zjet_MuSmearID: 3.817354843343752e-08 - syst_JES_Zjet_MuSmearMS: 4.2092910329412957e-07 - syst_JES_Zjet_OOC: 1.3614500018362773e-06 - syst_JES_Zjet_Stat1: 2.9322131573267316e-07 - syst_JES_Zjet_Stat10: 1.6067196395140005e-07 - syst_JES_Zjet_Stat11: 1.4033651012833403e-07 - syst_JES_Zjet_Stat12: 2.521991475005417e-07 - syst_JES_Zjet_Stat13: 5.249461210448173e-07 - syst_JES_Zjet_Stat2: 1.858490029238289e-09 - syst_JES_Zjet_Stat3: 7.053527557187254e-08 - syst_JES_Zjet_Stat4: 9.457203973691167e-08 - syst_JES_Zjet_Stat5: 7.83920525308529e-08 - syst_JES_Zjet_Stat6: 1.4001442354271937e-07 - syst_JES_Zjet_Stat7: 1.1563366551311949e-07 - syst_JES_Zjet_Stat8: 5.066217597971883e-08 - syst_JES_Zjet_Stat9: 1.2500180268700129e-07 - syst_JES_Zjet_Veto: 2.6287082378993683e-07 - syst_JES_Zjet_dPhi: 2.527227927987502e-07 + syst_cleaning: 3.55070416e-06 + syst_lumi: 7.02200000e-06 +- stat: 1.55200000e-05 + syst_JER_CROSS_CALIB_FORWARD: 1.56600000e-22 + syst_JER_NOISE_FORWARD: 1.00390000e-20 + syst_JER_NP0: 2.65213890e-07 + syst_JER_NP1: 4.73577034e-08 + syst_JER_NP2: 2.77014851e-07 + syst_JER_NP3: 7.62490347e-08 + syst_JER_NP4: 2.73232589e-08 + syst_JER_NP5: 1.02264528e-07 + syst_JER_NP6: 5.13615233e-08 + syst_JER_NP7: 3.84815144e-12 + syst_JER_NP8: 7.91309314e-08 + syst_JES_EtaIntercalibration_Modelling: 5.85494270e-06 + syst_JES_EtaIntercalibration_NonClosure: 1.36587238e-12 + syst_JES_EtaIntercalibration_Stat0: 5.97222387e-26 + syst_JES_EtaIntercalibration_Stat1: 7.44384220e-26 + syst_JES_EtaIntercalibration_Stat10: 6.61534300e-26 + syst_JES_EtaIntercalibration_Stat100: 1.22204845e-11 + syst_JES_EtaIntercalibration_Stat101: 1.11974070e-22 + syst_JES_EtaIntercalibration_Stat102: 2.58173462e-19 + syst_JES_EtaIntercalibration_Stat103: 2.58144655e-19 + syst_JES_EtaIntercalibration_Stat104: 5.97295254e-24 + syst_JES_EtaIntercalibration_Stat105: 5.96241906e-22 + syst_JES_EtaIntercalibration_Stat106: 4.58699152e-23 + syst_JES_EtaIntercalibration_Stat107: 6.14525212e-26 + syst_JES_EtaIntercalibration_Stat108: 3.50439277e-23 + syst_JES_EtaIntercalibration_Stat109: 4.12862338e-22 + syst_JES_EtaIntercalibration_Stat11: 3.06113067e-26 + syst_JES_EtaIntercalibration_Stat110: 1.81815478e-20 + syst_JES_EtaIntercalibration_Stat111: 5.58274368e-18 + syst_JES_EtaIntercalibration_Stat112: 5.58193665e-18 + syst_JES_EtaIntercalibration_Stat113: 1.47051132e-11 + syst_JES_EtaIntercalibration_Stat114: 1.52940086e-11 + syst_JES_EtaIntercalibration_Stat115: 1.48176947e-10 + syst_JES_EtaIntercalibration_Stat116: 2.67578264e-10 + syst_JES_EtaIntercalibration_Stat117: 1.23291633e-21 + syst_JES_EtaIntercalibration_Stat118: 4.82819428e-18 + syst_JES_EtaIntercalibration_Stat119: 1.25660285e-10 + syst_JES_EtaIntercalibration_Stat12: 4.41354220e-25 + syst_JES_EtaIntercalibration_Stat120: 6.65050269e-10 + syst_JES_EtaIntercalibration_Stat121: 1.14866665e-21 + syst_JES_EtaIntercalibration_Stat122: 3.81652676e-18 + syst_JES_EtaIntercalibration_Stat123: 7.83696032e-19 + syst_JES_EtaIntercalibration_Stat124: 2.88191726e-18 + syst_JES_EtaIntercalibration_Stat125: 1.92821543e-21 + syst_JES_EtaIntercalibration_Stat126: 9.63983682e-22 + syst_JES_EtaIntercalibration_Stat127: 1.82384950e-25 + syst_JES_EtaIntercalibration_Stat128: 1.51206488e-20 + syst_JES_EtaIntercalibration_Stat129: 2.77821024e-15 + syst_JES_EtaIntercalibration_Stat13: 6.25151934e-26 + syst_JES_EtaIntercalibration_Stat130: 8.74080617e-15 + syst_JES_EtaIntercalibration_Stat131: 9.71599658e-18 + syst_JES_EtaIntercalibration_Stat132: 7.04424866e-12 + syst_JES_EtaIntercalibration_Stat133: 2.63718063e-10 + syst_JES_EtaIntercalibration_Stat134: 1.39300320e-19 + syst_JES_EtaIntercalibration_Stat135: 1.20736636e-19 + syst_JES_EtaIntercalibration_Stat136: 1.05492024e-09 + syst_JES_EtaIntercalibration_Stat137: 5.08136389e-11 + syst_JES_EtaIntercalibration_Stat138: 9.84791648e-10 + syst_JES_EtaIntercalibration_Stat139: 6.44842516e-10 + syst_JES_EtaIntercalibration_Stat14: 5.93175235e-26 + syst_JES_EtaIntercalibration_Stat140: 1.61050662e-10 + syst_JES_EtaIntercalibration_Stat141: 2.21077695e-10 + syst_JES_EtaIntercalibration_Stat142: 5.89270938e-14 + syst_JES_EtaIntercalibration_Stat143: 1.01924098e-18 + syst_JES_EtaIntercalibration_Stat144: 2.61310148e-18 + syst_JES_EtaIntercalibration_Stat145: 1.36677198e-20 + syst_JES_EtaIntercalibration_Stat146: 4.79820414e-20 + syst_JES_EtaIntercalibration_Stat147: 2.72879807e-15 + syst_JES_EtaIntercalibration_Stat148: 8.73901036e-15 + syst_JES_EtaIntercalibration_Stat149: 6.71516098e-18 + syst_JES_EtaIntercalibration_Stat15: 6.39411120e-26 + syst_JES_EtaIntercalibration_Stat150: 7.07715760e-12 + syst_JES_EtaIntercalibration_Stat151: 7.58291844e-11 + syst_JES_EtaIntercalibration_Stat152: 2.89425690e-10 + syst_JES_EtaIntercalibration_Stat153: 4.30107776e-19 + syst_JES_EtaIntercalibration_Stat154: 1.21653552e-10 + syst_JES_EtaIntercalibration_Stat155: 5.10896044e-11 + syst_JES_EtaIntercalibration_Stat156: 8.53836395e-10 + syst_JES_EtaIntercalibration_Stat157: 3.73963715e-18 + syst_JES_EtaIntercalibration_Stat158: 4.12570527e-10 + syst_JES_EtaIntercalibration_Stat159: 1.80115142e-10 + syst_JES_EtaIntercalibration_Stat16: 3.93811688e-26 + syst_JES_EtaIntercalibration_Stat160: 2.30227890e-19 + syst_JES_EtaIntercalibration_Stat161: 5.45592382e-19 + syst_JES_EtaIntercalibration_Stat162: 1.42957334e-18 + syst_JES_EtaIntercalibration_Stat163: 1.16253398e-19 + syst_JES_EtaIntercalibration_Stat164: 3.05534302e-20 + syst_JES_EtaIntercalibration_Stat165: 3.31534348e-15 + syst_JES_EtaIntercalibration_Stat166: 3.00017677e-15 + syst_JES_EtaIntercalibration_Stat167: 3.03670153e-11 + syst_JES_EtaIntercalibration_Stat168: 1.10361904e-10 + syst_JES_EtaIntercalibration_Stat169: 1.07897582e-09 + syst_JES_EtaIntercalibration_Stat17: 6.03105652e-26 + syst_JES_EtaIntercalibration_Stat170: 1.24621056e-09 + syst_JES_EtaIntercalibration_Stat171: 5.48195019e-10 + syst_JES_EtaIntercalibration_Stat172: 2.02564116e-10 + syst_JES_EtaIntercalibration_Stat173: 3.43136585e-10 + syst_JES_EtaIntercalibration_Stat174: 1.89486385e-09 + syst_JES_EtaIntercalibration_Stat175: 1.78752167e-09 + syst_JES_EtaIntercalibration_Stat176: 4.95526870e-10 + syst_JES_EtaIntercalibration_Stat177: 2.65231536e-10 + syst_JES_EtaIntercalibration_Stat178: 1.28607339e-09 + syst_JES_EtaIntercalibration_Stat179: 2.80973263e-15 + syst_JES_EtaIntercalibration_Stat18: 5.97222387e-26 + syst_JES_EtaIntercalibration_Stat180: 3.81856335e-18 + syst_JES_EtaIntercalibration_Stat181: 7.39239261e-19 + syst_JES_EtaIntercalibration_Stat182: 4.25435459e-13 + syst_JES_EtaIntercalibration_Stat183: 1.24621056e-11 + syst_JES_EtaIntercalibration_Stat184: 1.62904030e-10 + syst_JES_EtaIntercalibration_Stat185: 9.47314024e-11 + syst_JES_EtaIntercalibration_Stat186: 9.82535520e-09 + syst_JES_EtaIntercalibration_Stat187: 9.39238280e-09 + syst_JES_EtaIntercalibration_Stat188: 1.04532915e-08 + syst_JES_EtaIntercalibration_Stat189: 6.33005282e-09 + syst_JES_EtaIntercalibration_Stat19: 1.70621774e-25 + syst_JES_EtaIntercalibration_Stat190: 4.73258851e-09 + syst_JES_EtaIntercalibration_Stat191: 1.11901165e-08 + syst_JES_EtaIntercalibration_Stat192: 2.47692203e-08 + syst_JES_EtaIntercalibration_Stat193: 1.36669445e-08 + syst_JES_EtaIntercalibration_Stat194: 9.55489000e-10 + syst_JES_EtaIntercalibration_Stat195: 6.31512951e-10 + syst_JES_EtaIntercalibration_Stat196: 1.20761083e-10 + syst_JES_EtaIntercalibration_Stat197: 3.58211518e-15 + syst_JES_EtaIntercalibration_Stat198: 4.48362970e-11 + syst_JES_EtaIntercalibration_Stat199: 5.28254282e-10 + syst_JES_EtaIntercalibration_Stat2: 3.63189730e-26 + syst_JES_EtaIntercalibration_Stat20: 5.97222387e-26 + syst_JES_EtaIntercalibration_Stat200: 3.73902715e-09 + syst_JES_EtaIntercalibration_Stat201: 1.73273982e-08 + syst_JES_EtaIntercalibration_Stat202: 4.48783431e-08 + syst_JES_EtaIntercalibration_Stat203: 2.62758596e-08 + syst_JES_EtaIntercalibration_Stat204: 1.02657745e-08 + syst_JES_EtaIntercalibration_Stat205: 9.20250846e-09 + syst_JES_EtaIntercalibration_Stat206: 2.54360114e-08 + syst_JES_EtaIntercalibration_Stat207: 3.96911587e-08 + syst_JES_EtaIntercalibration_Stat208: 2.32974092e-08 + syst_JES_EtaIntercalibration_Stat209: 5.69843353e-09 + syst_JES_EtaIntercalibration_Stat21: 5.97222387e-26 + syst_JES_EtaIntercalibration_Stat210: 8.25614721e-10 + syst_JES_EtaIntercalibration_Stat211: 1.50754371e-09 + syst_JES_EtaIntercalibration_Stat212: 5.26114918e-10 + syst_JES_EtaIntercalibration_Stat213: 4.06974382e-09 + syst_JES_EtaIntercalibration_Stat214: 1.73289878e-08 + syst_JES_EtaIntercalibration_Stat215: 4.94621216e-08 + syst_JES_EtaIntercalibration_Stat216: 3.10907317e-08 + syst_JES_EtaIntercalibration_Stat217: 1.04543373e-08 + syst_JES_EtaIntercalibration_Stat218: 1.12696288e-08 + syst_JES_EtaIntercalibration_Stat219: 2.94004116e-08 + syst_JES_EtaIntercalibration_Stat22: 5.97222387e-26 + syst_JES_EtaIntercalibration_Stat220: 4.07605802e-08 + syst_JES_EtaIntercalibration_Stat221: 1.85219491e-08 + syst_JES_EtaIntercalibration_Stat222: 8.08345203e-09 + syst_JES_EtaIntercalibration_Stat223: 8.17482335e-10 + syst_JES_EtaIntercalibration_Stat224: 2.00502426e-09 + syst_JES_EtaIntercalibration_Stat225: 1.25446280e-08 + syst_JES_EtaIntercalibration_Stat226: 5.26662283e-08 + syst_JES_EtaIntercalibration_Stat227: 1.08526218e-07 + syst_JES_EtaIntercalibration_Stat228: 7.90739926e-08 + syst_JES_EtaIntercalibration_Stat229: 3.96454890e-08 + syst_JES_EtaIntercalibration_Stat23: 1.59328396e-25 + syst_JES_EtaIntercalibration_Stat230: 3.42292273e-08 + syst_JES_EtaIntercalibration_Stat231: 9.30373721e-08 + syst_JES_EtaIntercalibration_Stat232: 1.06998028e-07 + syst_JES_EtaIntercalibration_Stat233: 6.58651076e-08 + syst_JES_EtaIntercalibration_Stat234: 1.80622922e-08 + syst_JES_EtaIntercalibration_Stat235: 3.00684020e-09 + syst_JES_EtaIntercalibration_Stat236: 2.47491868e-09 + syst_JES_EtaIntercalibration_Stat237: 1.29571584e-08 + syst_JES_EtaIntercalibration_Stat238: 2.75657396e-08 + syst_JES_EtaIntercalibration_Stat239: 1.00933843e-08 + syst_JES_EtaIntercalibration_Stat24: 7.79226313e-25 + syst_JES_EtaIntercalibration_Stat240: 5.83878549e-09 + syst_JES_EtaIntercalibration_Stat241: 4.74630477e-09 + syst_JES_EtaIntercalibration_Stat242: 8.66756177e-09 + syst_JES_EtaIntercalibration_Stat243: 2.67293964e-08 + syst_JES_EtaIntercalibration_Stat244: 8.32163810e-09 + syst_JES_EtaIntercalibration_Stat245: 2.89486904e-09 + syst_JES_EtaIntercalibration_Stat25: 7.21593258e-25 + syst_JES_EtaIntercalibration_Stat26: 5.77627570e-26 + syst_JES_EtaIntercalibration_Stat27: 3.75304070e-25 + syst_JES_EtaIntercalibration_Stat28: 2.40046085e-25 + syst_JES_EtaIntercalibration_Stat29: 6.24025689e-25 + syst_JES_EtaIntercalibration_Stat3: 3.27582435e-26 + syst_JES_EtaIntercalibration_Stat30: 9.98283186e-25 + syst_JES_EtaIntercalibration_Stat31: 9.80930280e-21 + syst_JES_EtaIntercalibration_Stat32: 1.00053859e-20 + syst_JES_EtaIntercalibration_Stat33: 1.22961758e-24 + syst_JES_EtaIntercalibration_Stat34: 4.86273102e-24 + syst_JES_EtaIntercalibration_Stat35: 1.94162896e-10 + syst_JES_EtaIntercalibration_Stat36: 1.72736582e-24 + syst_JES_EtaIntercalibration_Stat37: 1.41909199e-23 + syst_JES_EtaIntercalibration_Stat38: 1.55469708e-24 + syst_JES_EtaIntercalibration_Stat39: 1.56057778e-24 + syst_JES_EtaIntercalibration_Stat4: 7.44384220e-26 + syst_JES_EtaIntercalibration_Stat40: 3.16280303e-25 + syst_JES_EtaIntercalibration_Stat41: 9.50414678e-26 + syst_JES_EtaIntercalibration_Stat42: 6.50644886e-26 + syst_JES_EtaIntercalibration_Stat43: 5.97222387e-26 + syst_JES_EtaIntercalibration_Stat44: 5.97222387e-26 + syst_JES_EtaIntercalibration_Stat45: 3.63189730e-26 + syst_JES_EtaIntercalibration_Stat46: 7.28232065e-25 + syst_JES_EtaIntercalibration_Stat47: 3.55309375e-24 + syst_JES_EtaIntercalibration_Stat48: 5.69198320e-25 + syst_JES_EtaIntercalibration_Stat49: 8.52671700e-25 + syst_JES_EtaIntercalibration_Stat5: 3.65722528e-26 + syst_JES_EtaIntercalibration_Stat50: 9.80841336e-21 + syst_JES_EtaIntercalibration_Stat51: 4.15933522e-25 + syst_JES_EtaIntercalibration_Stat52: 1.31036563e-24 + syst_JES_EtaIntercalibration_Stat53: 9.81463342e-21 + syst_JES_EtaIntercalibration_Stat54: 9.80748873e-21 + syst_JES_EtaIntercalibration_Stat55: 2.18611200e-24 + syst_JES_EtaIntercalibration_Stat56: 9.25669709e-25 + syst_JES_EtaIntercalibration_Stat57: 3.59926154e-20 + syst_JES_EtaIntercalibration_Stat58: 7.14987811e-24 + syst_JES_EtaIntercalibration_Stat59: 3.95069557e-24 + syst_JES_EtaIntercalibration_Stat6: 5.37155068e-26 + syst_JES_EtaIntercalibration_Stat60: 4.59116750e-25 + syst_JES_EtaIntercalibration_Stat61: 1.80178958e-24 + syst_JES_EtaIntercalibration_Stat62: 1.17549169e-24 + syst_JES_EtaIntercalibration_Stat63: 9.76494295e-26 + syst_JES_EtaIntercalibration_Stat64: 5.81821631e-26 + syst_JES_EtaIntercalibration_Stat65: 5.97222387e-26 + syst_JES_EtaIntercalibration_Stat66: 5.97222387e-26 + syst_JES_EtaIntercalibration_Stat67: 1.17198886e-24 + syst_JES_EtaIntercalibration_Stat68: 1.06983705e-23 + syst_JES_EtaIntercalibration_Stat69: 5.90694854e-24 + syst_JES_EtaIntercalibration_Stat7: 4.02516008e-26 + syst_JES_EtaIntercalibration_Stat70: 3.42116296e-24 + syst_JES_EtaIntercalibration_Stat71: 2.68581382e-24 + syst_JES_EtaIntercalibration_Stat72: 9.81554843e-21 + syst_JES_EtaIntercalibration_Stat73: 2.78772284e-19 + syst_JES_EtaIntercalibration_Stat74: 2.84316135e-19 + syst_JES_EtaIntercalibration_Stat75: 1.01290331e-11 + syst_JES_EtaIntercalibration_Stat76: 9.81826930e-21 + syst_JES_EtaIntercalibration_Stat77: 6.30916690e-24 + syst_JES_EtaIntercalibration_Stat78: 1.00554210e-11 + syst_JES_EtaIntercalibration_Stat79: 9.96622035e-12 + syst_JES_EtaIntercalibration_Stat8: 1.62515124e-25 + syst_JES_EtaIntercalibration_Stat80: 3.61274234e-20 + syst_JES_EtaIntercalibration_Stat81: 2.18895879e-19 + syst_JES_EtaIntercalibration_Stat82: 2.58077237e-19 + syst_JES_EtaIntercalibration_Stat83: 4.53900724e-24 + syst_JES_EtaIntercalibration_Stat84: 3.23907189e-24 + syst_JES_EtaIntercalibration_Stat85: 1.40740851e-25 + syst_JES_EtaIntercalibration_Stat86: 2.74551132e-26 + syst_JES_EtaIntercalibration_Stat87: 3.65722528e-26 + syst_JES_EtaIntercalibration_Stat88: 5.78372119e-25 + syst_JES_EtaIntercalibration_Stat89: 3.84831468e-23 + syst_JES_EtaIntercalibration_Stat9: 1.04826649e-25 + syst_JES_EtaIntercalibration_Stat90: 4.33847569e-23 + syst_JES_EtaIntercalibration_Stat91: 8.43510479e-24 + syst_JES_EtaIntercalibration_Stat92: 8.37943272e-24 + syst_JES_EtaIntercalibration_Stat93: 9.84942114e-21 + syst_JES_EtaIntercalibration_Stat94: 2.59203680e-19 + syst_JES_EtaIntercalibration_Stat95: 2.52811575e-19 + syst_JES_EtaIntercalibration_Stat96: 1.00372344e-11 + syst_JES_EtaIntercalibration_Stat97: 4.83738185e-23 + syst_JES_EtaIntercalibration_Stat98: 1.63024049e-23 + syst_JES_EtaIntercalibration_Stat99: 2.11919940e-10 + syst_JES_EtaIntercalibration_TotalStat_MJB: 3.36136446e-06 + syst_JES_Flavour_Comp: 2.94563015e-06 + syst_JES_Flavour_Response: 2.62332728e-06 + syst_JES_Gjet_Generator: 6.01091283e-06 + syst_JES_Gjet_OOC: 5.00262571e-06 + syst_JES_Gjet_Purity: 1.19385969e-07 + syst_JES_Gjet_Stat1: 2.28553342e-09 + syst_JES_Gjet_Stat10: 3.25156466e-07 + syst_JES_Gjet_Stat11: 3.20600499e-07 + syst_JES_Gjet_Stat12: 1.72182077e-07 + syst_JES_Gjet_Stat13: 1.43700070e-06 + syst_JES_Gjet_Stat14: 4.31265556e-06 + syst_JES_Gjet_Stat15: 6.86417847e-06 + syst_JES_Gjet_Stat2: 3.69284836e-08 + syst_JES_Gjet_Stat3: 3.30973532e-08 + syst_JES_Gjet_Stat4: 1.12409372e-07 + syst_JES_Gjet_Stat5: 1.11263729e-07 + syst_JES_Gjet_Stat6: 1.11476645e-07 + syst_JES_Gjet_Stat7: 1.23481890e-07 + syst_JES_Gjet_Stat8: 3.67790440e-08 + syst_JES_Gjet_Stat9: 1.31054754e-07 + syst_JES_Gjet_Veto: 5.84229980e-06 + syst_JES_Gjet_dPhi: 2.86232192e-07 + syst_JES_LArESZee: 7.80736498e-06 + syst_JES_LArEsmear: 7.62239180e-07 + syst_JES_LAr_JVT: 9.99127503e-07 + syst_JES_MJB_Alpha: 1.81600220e-07 + syst_JES_MJB_Asym: 4.36133959e-06 + syst_JES_MJB_Beta: 3.33201471e-07 + syst_JES_MJB_Fragmentation: 9.96326225e-07 + syst_JES_MJB_Stat1: 1.38452177e-15 + syst_JES_MJB_Stat10: 2.26229397e-08 + syst_JES_MJB_Stat11: 3.85808168e-08 + syst_JES_MJB_Stat12: 6.51261873e-08 + syst_JES_MJB_Stat13: 1.04534708e-07 + syst_JES_MJB_Stat14: 1.02437876e-06 + syst_JES_MJB_Stat15: 1.76058172e-06 + syst_JES_MJB_Stat16: 3.15711969e-06 + syst_JES_MJB_Stat2: 4.63315763e-10 + syst_JES_MJB_Stat3: 6.87606143e-10 + syst_JES_MJB_Stat4: 1.32343587e-09 + syst_JES_MJB_Stat5: 2.22751511e-09 + syst_JES_MJB_Stat6: 2.77800553e-09 + syst_JES_MJB_Stat7: 6.20063841e-09 + syst_JES_MJB_Stat8: 5.65685891e-09 + syst_JES_MJB_Stat9: 1.31186667e-08 + syst_JES_MJB_Threshold: 9.87713636e-07 + syst_JES_Pileup_MuOffset: 2.13805677e-06 + syst_JES_Pileup_NPVOffset: 1.54918656e-06 + syst_JES_Pileup_Pt_term: 5.23401911e-07 + syst_JES_Pileup_Rho_topology: 2.23634629e-06 + syst_JES_PunchThrough_MC15: 4.55062556e-06 + syst_JES_SingleParticle_HighPt: 5.42306297e-07 + syst_JES_Zjet_MC: 2.26208902e-06 + syst_JES_Zjet_MuScale: 2.72757708e-07 + syst_JES_Zjet_MuSmearID: 3.81735484e-08 + syst_JES_Zjet_MuSmearMS: 4.20929103e-07 + syst_JES_Zjet_OOC: 1.36145000e-06 + syst_JES_Zjet_Stat1: 2.93221316e-07 + syst_JES_Zjet_Stat10: 1.60671964e-07 + syst_JES_Zjet_Stat11: 1.40336510e-07 + syst_JES_Zjet_Stat12: 2.52199148e-07 + syst_JES_Zjet_Stat13: 5.24946121e-07 + syst_JES_Zjet_Stat2: 1.85849003e-09 + syst_JES_Zjet_Stat3: 7.05352756e-08 + syst_JES_Zjet_Stat4: 9.45720397e-08 + syst_JES_Zjet_Stat5: 7.83920525e-08 + syst_JES_Zjet_Stat6: 1.40014424e-07 + syst_JES_Zjet_Stat7: 1.15633666e-07 + syst_JES_Zjet_Stat8: 5.06621760e-08 + syst_JES_Zjet_Stat9: 1.25001803e-07 + syst_JES_Zjet_Veto: 2.62870824e-07 + syst_JES_Zjet_dPhi: 2.52722793e-07 syst_PRW: 0.0 syst_Unfolding_bias: 0.0 - syst_cleaning: 1.4020951287270063e-06 - syst_lumi: 2.836e-06 -- stat: 1.0643e-05 - syst_JER_CROSS_CALIB_FORWARD: 3.845e-23 - syst_JER_NOISE_FORWARD: 1.849e-21 - syst_JER_NP0: 1.6707650942008573e-07 - syst_JER_NP1: 2.5336378983588006e-08 - syst_JER_NP2: 1.792718904346133e-07 - syst_JER_NP3: 4.8346089810862675e-08 - syst_JER_NP4: 2.70707642115992e-08 - syst_JER_NP5: 6.68271402575331e-08 - syst_JER_NP6: 3.4502908573046414e-08 - syst_JER_NP7: 1.493500167392023e-10 - syst_JER_NP8: 4.8775780875348374e-08 - syst_JES_EtaIntercalibration_Modelling: 3.2052947992345416e-06 - syst_JES_EtaIntercalibration_NonClosure: 1.3115072359693635e-13 - syst_JES_EtaIntercalibration_Stat0: 2.158089896181343e-26 - syst_JES_EtaIntercalibration_Stat1: 2.603522757726538e-26 - syst_JES_EtaIntercalibration_Stat10: 2.3695480581748073e-26 - syst_JES_EtaIntercalibration_Stat100: 1.7346488837792819e-12 - syst_JES_EtaIntercalibration_Stat101: 1.9645987961922403e-23 - syst_JES_EtaIntercalibration_Stat102: 2.971806993643261e-20 - syst_JES_EtaIntercalibration_Stat103: 2.971037761224395e-20 - syst_JES_EtaIntercalibration_Stat104: 1.372368983500793e-24 - syst_JES_EtaIntercalibration_Stat105: 1.038264135323955e-22 - syst_JES_EtaIntercalibration_Stat106: 8.430837725279737e-24 - syst_JES_EtaIntercalibration_Stat107: 2.2037298989440607e-26 - syst_JES_EtaIntercalibration_Stat108: 6.771895155715274e-24 - syst_JES_EtaIntercalibration_Stat109: 2.461652921818996e-22 - syst_JES_EtaIntercalibration_Stat11: 1.15534654000434e-26 - syst_JES_EtaIntercalibration_Stat110: 2.71933923974189e-21 - syst_JES_EtaIntercalibration_Stat111: 5.828019803343907e-19 - syst_JES_EtaIntercalibration_Stat112: 5.8197303182535875e-19 - syst_JES_EtaIntercalibration_Stat113: 1.7892086232446381e-12 - syst_JES_EtaIntercalibration_Stat114: 1.8498302598952997e-12 - syst_JES_EtaIntercalibration_Stat115: 6.496056555238821e-11 - syst_JES_EtaIntercalibration_Stat116: 1.8174997847317615e-10 - syst_JES_EtaIntercalibration_Stat117: 1.779165340124408e-22 - syst_JES_EtaIntercalibration_Stat118: 5.148317713894511e-19 - syst_JES_EtaIntercalibration_Stat119: 6.013680387063814e-11 - syst_JES_EtaIntercalibration_Stat12: 1.0307707941147733e-25 - syst_JES_EtaIntercalibration_Stat120: 3.885493786830703e-10 - syst_JES_EtaIntercalibration_Stat121: 2.161612981086115e-22 - syst_JES_EtaIntercalibration_Stat122: 3.9905287669864387e-19 - syst_JES_EtaIntercalibration_Stat123: 9.160319467682336e-20 - syst_JES_EtaIntercalibration_Stat124: 3.1227554125643593e-19 - syst_JES_EtaIntercalibration_Stat125: 2.989853299076729e-22 - syst_JES_EtaIntercalibration_Stat126: 1.754955300712813e-22 - syst_JES_EtaIntercalibration_Stat127: 5.653413835904816e-26 - syst_JES_EtaIntercalibration_Stat128: 2.0639227214215168e-21 - syst_JES_EtaIntercalibration_Stat129: 2.485494454143177e-16 - syst_JES_EtaIntercalibration_Stat13: 1.8127357088114088e-26 - syst_JES_EtaIntercalibration_Stat130: 8.140662305548263e-16 - syst_JES_EtaIntercalibration_Stat131: 8.00445446407811e-19 - syst_JES_EtaIntercalibration_Stat132: 9.748846138759073e-13 - syst_JES_EtaIntercalibration_Stat133: 3.1066446570536516e-10 - syst_JES_EtaIntercalibration_Stat134: 2.9519138656132905e-20 - syst_JES_EtaIntercalibration_Stat135: 1.5056669311305206e-20 - syst_JES_EtaIntercalibration_Stat136: 3.9689545563032095e-10 - syst_JES_EtaIntercalibration_Stat137: 1.9830973954901962e-11 - syst_JES_EtaIntercalibration_Stat138: 7.167790247014766e-10 - syst_JES_EtaIntercalibration_Stat139: 3.1488683681824096e-10 - syst_JES_EtaIntercalibration_Stat14: 1.7218956849937222e-26 - syst_JES_EtaIntercalibration_Stat140: 2.6223505358361224e-10 - syst_JES_EtaIntercalibration_Stat141: 1.184002158339129e-10 - syst_JES_EtaIntercalibration_Stat142: 8.629864287855284e-15 - syst_JES_EtaIntercalibration_Stat143: 1.1471174950718866e-19 - syst_JES_EtaIntercalibration_Stat144: 2.529809102284795e-19 - syst_JES_EtaIntercalibration_Stat145: 1.9441871328398404e-21 - syst_JES_EtaIntercalibration_Stat146: 5.8416823561368e-21 - syst_JES_EtaIntercalibration_Stat147: 2.434340661799139e-16 - syst_JES_EtaIntercalibration_Stat148: 8.137981513815297e-16 - syst_JES_EtaIntercalibration_Stat149: 5.834413145295763e-19 - syst_JES_EtaIntercalibration_Stat15: 2.456345456160432e-26 - syst_JES_EtaIntercalibration_Stat150: 9.793879437239232e-13 - syst_JES_EtaIntercalibration_Stat151: 2.4040865208925043e-10 - syst_JES_EtaIntercalibration_Stat152: 1.5475873965881115e-10 - syst_JES_EtaIntercalibration_Stat153: 4.3713086678934035e-20 - syst_JES_EtaIntercalibration_Stat154: 6.603274563994746e-11 - syst_JES_EtaIntercalibration_Stat155: 1.9900030351735648e-11 - syst_JES_EtaIntercalibration_Stat156: 7.915985851427477e-10 - syst_JES_EtaIntercalibration_Stat157: 4.521171833717449e-19 - syst_JES_EtaIntercalibration_Stat158: 2.1188857938784712e-10 - syst_JES_EtaIntercalibration_Stat159: 9.644651462146005e-11 - syst_JES_EtaIntercalibration_Stat16: 1.423049081198537e-26 - syst_JES_EtaIntercalibration_Stat160: 2.7934877602873075e-20 - syst_JES_EtaIntercalibration_Stat161: 7.39400180332004e-20 - syst_JES_EtaIntercalibration_Stat162: 1.1156370603815338e-19 - syst_JES_EtaIntercalibration_Stat163: 5.7932454349871985e-21 - syst_JES_EtaIntercalibration_Stat164: 1.1541923669822116e-21 - syst_JES_EtaIntercalibration_Stat165: 2.990468758274988e-16 - syst_JES_EtaIntercalibration_Stat166: 2.69223523961387e-16 - syst_JES_EtaIntercalibration_Stat167: 1.9587253986968156e-12 - syst_JES_EtaIntercalibration_Stat168: 1.842030149047512e-11 - syst_JES_EtaIntercalibration_Stat169: 7.106882773058804e-10 - syst_JES_EtaIntercalibration_Stat17: 2.1829087818779788e-26 - syst_JES_EtaIntercalibration_Stat170: 6.805227630613991e-10 - syst_JES_EtaIntercalibration_Stat171: 2.9349609675348114e-10 - syst_JES_EtaIntercalibration_Stat172: 6.638957953660923e-11 - syst_JES_EtaIntercalibration_Stat173: 3.8702675294652555e-10 - syst_JES_EtaIntercalibration_Stat174: 9.601623891069781e-10 - syst_JES_EtaIntercalibration_Stat175: 1.616873779246645e-09 - syst_JES_EtaIntercalibration_Stat176: 1.1244718583983626e-09 - syst_JES_EtaIntercalibration_Stat177: 1.4193092791918188e-10 - syst_JES_EtaIntercalibration_Stat178: 6.748970933862119e-10 - syst_JES_EtaIntercalibration_Stat179: 2.6245946481075895e-16 - syst_JES_EtaIntercalibration_Stat18: 2.158089896181343e-26 - syst_JES_EtaIntercalibration_Stat180: 3.922567649830912e-19 - syst_JES_EtaIntercalibration_Stat181: 8.215982200588334e-20 - syst_JES_EtaIntercalibration_Stat182: 4.3427264528771267e-14 - syst_JES_EtaIntercalibration_Stat183: 1.7329168329726533e-12 - syst_JES_EtaIntercalibration_Stat184: 3.726550586897018e-11 - syst_JES_EtaIntercalibration_Stat185: 5.077488463982464e-10 - syst_JES_EtaIntercalibration_Stat186: 4.783895797360139e-09 - syst_JES_EtaIntercalibration_Stat187: 5.778285818475926e-09 - syst_JES_EtaIntercalibration_Stat188: 7.270463602824788e-09 - syst_JES_EtaIntercalibration_Stat189: 4.941287762314598e-09 - syst_JES_EtaIntercalibration_Stat19: 5.1463902640588774e-26 - syst_JES_EtaIntercalibration_Stat190: 3.3985154858408403e-09 - syst_JES_EtaIntercalibration_Stat191: 8.464549412106942e-09 - syst_JES_EtaIntercalibration_Stat192: 1.4455914879384148e-08 - syst_JES_EtaIntercalibration_Stat193: 6.7393602812136404e-09 - syst_JES_EtaIntercalibration_Stat194: 1.0746389233947371e-09 - syst_JES_EtaIntercalibration_Stat195: 4.21834869202393e-10 - syst_JES_EtaIntercalibration_Stat196: 1.670216378197747e-11 - syst_JES_EtaIntercalibration_Stat197: 3.3634710687026877e-16 - syst_JES_EtaIntercalibration_Stat198: 4.933210906465991e-12 - syst_JES_EtaIntercalibration_Stat199: 8.930755589954302e-11 - syst_JES_EtaIntercalibration_Stat2: 1.284689148198894e-26 - syst_JES_EtaIntercalibration_Stat20: 2.158089896181343e-26 - syst_JES_EtaIntercalibration_Stat200: 2.356370301968687e-09 - syst_JES_EtaIntercalibration_Stat201: 1.037928825835375e-08 - syst_JES_EtaIntercalibration_Stat202: 2.481859131780045e-08 - syst_JES_EtaIntercalibration_Stat203: 1.8473248225474588e-08 - syst_JES_EtaIntercalibration_Stat204: 7.844283444011951e-09 - syst_JES_EtaIntercalibration_Stat205: 6.475386088875319e-09 - syst_JES_EtaIntercalibration_Stat206: 1.4455212511409164e-08 - syst_JES_EtaIntercalibration_Stat207: 2.1573536450939148e-08 - syst_JES_EtaIntercalibration_Stat208: 1.266748313596667e-08 - syst_JES_EtaIntercalibration_Stat209: 3.4524751628360777e-09 - syst_JES_EtaIntercalibration_Stat21: 2.158089896181343e-26 - syst_JES_EtaIntercalibration_Stat210: 5.167713686921906e-10 - syst_JES_EtaIntercalibration_Stat211: 2.418213362691555e-10 - syst_JES_EtaIntercalibration_Stat212: 8.912255599313789e-11 - syst_JES_EtaIntercalibration_Stat213: 2.510594351941388e-09 - syst_JES_EtaIntercalibration_Stat214: 1.0374159953943259e-08 - syst_JES_EtaIntercalibration_Stat215: 2.7774814130791227e-08 - syst_JES_EtaIntercalibration_Stat216: 2.026353128159058e-08 - syst_JES_EtaIntercalibration_Stat217: 7.155283013270684e-09 - syst_JES_EtaIntercalibration_Stat218: 7.666008348547503e-09 - syst_JES_EtaIntercalibration_Stat219: 1.6781760187775297e-08 - syst_JES_EtaIntercalibration_Stat22: 2.158089896181343e-26 - syst_JES_EtaIntercalibration_Stat220: 2.2442296562517838e-08 - syst_JES_EtaIntercalibration_Stat221: 1.0343092912663988e-08 - syst_JES_EtaIntercalibration_Stat222: 4.6448865432860684e-09 - syst_JES_EtaIntercalibration_Stat223: 4.6541431043118854e-10 - syst_JES_EtaIntercalibration_Stat224: 4.640426776709229e-10 - syst_JES_EtaIntercalibration_Stat225: 5.47314633003723e-09 - syst_JES_EtaIntercalibration_Stat226: 2.902083044986825e-08 - syst_JES_EtaIntercalibration_Stat227: 6.560124598664266e-08 - syst_JES_EtaIntercalibration_Stat228: 4.713241241438846e-08 - syst_JES_EtaIntercalibration_Stat229: 2.2911104294642805e-08 - syst_JES_EtaIntercalibration_Stat23: 4.25190142259907e-26 - syst_JES_EtaIntercalibration_Stat230: 1.8921878210156626e-08 - syst_JES_EtaIntercalibration_Stat231: 5.381348971215303e-08 - syst_JES_EtaIntercalibration_Stat232: 6.931045718360254e-08 - syst_JES_EtaIntercalibration_Stat233: 3.473104770950626e-08 - syst_JES_EtaIntercalibration_Stat234: 9.532200900106963e-09 - syst_JES_EtaIntercalibration_Stat235: 1.4783053642600367e-09 - syst_JES_EtaIntercalibration_Stat236: 1.9821511212569037e-09 - syst_JES_EtaIntercalibration_Stat237: 5.5455304525356276e-09 - syst_JES_EtaIntercalibration_Stat238: 1.4507691063708242e-08 - syst_JES_EtaIntercalibration_Stat239: 6.864308559498183e-09 - syst_JES_EtaIntercalibration_Stat24: 2.1396074476408047e-25 - syst_JES_EtaIntercalibration_Stat240: 4.664202718579029e-09 - syst_JES_EtaIntercalibration_Stat241: 3.4761705377469618e-09 - syst_JES_EtaIntercalibration_Stat242: 4.957789124196389e-09 - syst_JES_EtaIntercalibration_Stat243: 1.2952338772881907e-08 - syst_JES_EtaIntercalibration_Stat244: 5.403998519615031e-09 - syst_JES_EtaIntercalibration_Stat245: 1.6257339111921116e-09 - syst_JES_EtaIntercalibration_Stat25: 1.9452979514717018e-25 - syst_JES_EtaIntercalibration_Stat26: 2.229170578937377e-26 - syst_JES_EtaIntercalibration_Stat27: 1.301928186498779e-25 - syst_JES_EtaIntercalibration_Stat28: 7.575767153727733e-26 - syst_JES_EtaIntercalibration_Stat29: 1.835014735635657e-25 - syst_JES_EtaIntercalibration_Stat3: 1.0718037646882941e-26 - syst_JES_EtaIntercalibration_Stat30: 2.9651891592274515e-25 - syst_JES_EtaIntercalibration_Stat31: 1.421309159189023e-21 - syst_JES_EtaIntercalibration_Stat32: 1.4575584074701888e-21 - syst_JES_EtaIntercalibration_Stat33: 3.4497817594016e-25 - syst_JES_EtaIntercalibration_Stat34: 1.2036037418934855e-24 - syst_JES_EtaIntercalibration_Stat35: 8.511297668393458e-11 - syst_JES_EtaIntercalibration_Stat36: 5.605052965851438e-25 - syst_JES_EtaIntercalibration_Stat37: 3.438438226321693e-24 - syst_JES_EtaIntercalibration_Stat38: 3.779921030921149e-25 - syst_JES_EtaIntercalibration_Stat39: 3.7533541000017572e-25 - syst_JES_EtaIntercalibration_Stat4: 2.603522757726538e-26 - syst_JES_EtaIntercalibration_Stat40: 1.0174892775847812e-25 - syst_JES_EtaIntercalibration_Stat41: 3.3261969274232696e-26 - syst_JES_EtaIntercalibration_Stat42: 1.808261043101908e-26 - syst_JES_EtaIntercalibration_Stat43: 2.158089896181343e-26 - syst_JES_EtaIntercalibration_Stat44: 2.158089896181343e-26 - syst_JES_EtaIntercalibration_Stat45: 1.284689148198894e-26 - syst_JES_EtaIntercalibration_Stat46: 2.0372785082064748e-25 - syst_JES_EtaIntercalibration_Stat47: 7.825342139964233e-25 - syst_JES_EtaIntercalibration_Stat48: 2.1988079878652437e-25 - syst_JES_EtaIntercalibration_Stat49: 2.9601793864561657e-25 - syst_JES_EtaIntercalibration_Stat5: 1.3215547661750533e-26 - syst_JES_EtaIntercalibration_Stat50: 1.4219417608723879e-21 - syst_JES_EtaIntercalibration_Stat51: 1.9000617272867743e-25 - syst_JES_EtaIntercalibration_Stat52: 4.043015790223927e-25 - syst_JES_EtaIntercalibration_Stat53: 1.423024622959139e-21 - syst_JES_EtaIntercalibration_Stat54: 1.4212823767101034e-21 - syst_JES_EtaIntercalibration_Stat55: 6.64653042947973e-25 - syst_JES_EtaIntercalibration_Stat56: 4.136769844939406e-25 - syst_JES_EtaIntercalibration_Stat57: 4.767524756373272e-21 - syst_JES_EtaIntercalibration_Stat58: 1.698370156208593e-24 - syst_JES_EtaIntercalibration_Stat59: 9.09303777623298e-25 - syst_JES_EtaIntercalibration_Stat6: 1.8892844379552803e-26 - syst_JES_EtaIntercalibration_Stat60: 1.5196686579646234e-25 - syst_JES_EtaIntercalibration_Stat61: 4.691982177076124e-25 - syst_JES_EtaIntercalibration_Stat62: 3.4740441376010176e-25 - syst_JES_EtaIntercalibration_Stat63: 3.167579777606241e-26 - syst_JES_EtaIntercalibration_Stat64: 2.0569351278054446e-26 - syst_JES_EtaIntercalibration_Stat65: 2.158089896181343e-26 - syst_JES_EtaIntercalibration_Stat66: 2.158089896181343e-26 - syst_JES_EtaIntercalibration_Stat67: 3.0953097987115923e-25 - syst_JES_EtaIntercalibration_Stat68: 2.124887881159851e-24 - syst_JES_EtaIntercalibration_Stat69: 8.814136032533194e-25 - syst_JES_EtaIntercalibration_Stat7: 1.4118232467274363e-26 - syst_JES_EtaIntercalibration_Stat70: 6.061777043079034e-25 - syst_JES_EtaIntercalibration_Stat71: 5.792023110062666e-25 - syst_JES_EtaIntercalibration_Stat72: 1.4232309371099968e-21 - syst_JES_EtaIntercalibration_Stat73: 3.201195118623668e-20 - syst_JES_EtaIntercalibration_Stat74: 3.273532525274931e-20 - syst_JES_EtaIntercalibration_Stat75: 1.5207406090450344e-12 - syst_JES_EtaIntercalibration_Stat76: 1.4271693717989336e-21 - syst_JES_EtaIntercalibration_Stat77: 2.0640763067289935e-24 - syst_JES_EtaIntercalibration_Stat78: 1.5120803550069028e-12 - syst_JES_EtaIntercalibration_Stat79: 1.5016880501625177e-12 - syst_JES_EtaIntercalibration_Stat8: 4.017116223113292e-26 - syst_JES_EtaIntercalibration_Stat80: 4.791306542892867e-21 - syst_JES_EtaIntercalibration_Stat81: 2.5209935375363422e-20 - syst_JES_EtaIntercalibration_Stat82: 2.9705294940451273e-20 - syst_JES_EtaIntercalibration_Stat83: 1.3644180765073438e-24 - syst_JES_EtaIntercalibration_Stat84: 8.970396354119479e-25 - syst_JES_EtaIntercalibration_Stat85: 1.0764171438155378e-25 - syst_JES_EtaIntercalibration_Stat86: 1.1335979798852855e-26 - syst_JES_EtaIntercalibration_Stat87: 1.3215547661750533e-26 - syst_JES_EtaIntercalibration_Stat88: 1.4730083934163444e-25 - syst_JES_EtaIntercalibration_Stat89: 7.048756293134272e-24 - syst_JES_EtaIntercalibration_Stat9: 2.344701260288824e-26 - syst_JES_EtaIntercalibration_Stat90: 8.37266353975842e-24 - syst_JES_EtaIntercalibration_Stat91: 2.18481818923223e-24 - syst_JES_EtaIntercalibration_Stat92: 2.3971088836346172e-24 - syst_JES_EtaIntercalibration_Stat93: 1.4307775778110133e-21 - syst_JES_EtaIntercalibration_Stat94: 2.9751755019662287e-20 - syst_JES_EtaIntercalibration_Stat95: 2.897301635574038e-20 - syst_JES_EtaIntercalibration_Stat96: 1.5094822787943573e-12 - syst_JES_EtaIntercalibration_Stat97: 1.0088151614641802e-23 - syst_JES_EtaIntercalibration_Stat98: 3.9236591021647135e-24 - syst_JES_EtaIntercalibration_Stat99: 9.378565000574449e-11 - syst_JES_EtaIntercalibration_TotalStat_MJB: 2.1034386133186773e-06 - syst_JES_Flavour_Comp: 1.4113074328437443e-06 - syst_JES_Flavour_Response: 1.7546016641961788e-06 - syst_JES_Gjet_Generator: 3.5386214830071896e-06 - syst_JES_Gjet_OOC: 2.9609310613386457e-06 - syst_JES_Gjet_Purity: 3.104840213279904e-08 - syst_JES_Gjet_Stat1: 5.175667565638272e-09 - syst_JES_Gjet_Stat10: 2.1527147395788417e-07 - syst_JES_Gjet_Stat11: 2.1115995714149973e-07 - syst_JES_Gjet_Stat12: 9.680956499747328e-08 - syst_JES_Gjet_Stat13: 8.820095960362336e-07 - syst_JES_Gjet_Stat14: 2.7490985340653033e-06 - syst_JES_Gjet_Stat15: 4.284977567035796e-06 - syst_JES_Gjet_Stat2: 1.9640521250720412e-08 - syst_JES_Gjet_Stat3: 2.1561203004470784e-08 - syst_JES_Gjet_Stat4: 7.8639905105487e-08 - syst_JES_Gjet_Stat5: 7.683808821151134e-08 - syst_JES_Gjet_Stat6: 6.71399409815052e-08 - syst_JES_Gjet_Stat7: 8.253477009721417e-08 - syst_JES_Gjet_Stat8: 2.315986614814516e-08 - syst_JES_Gjet_Stat9: 8.41718722317616e-08 - syst_JES_Gjet_Veto: 3.512532241844906e-06 - syst_JES_Gjet_dPhi: 1.3577162700652888e-07 - syst_JES_LArESZee: 4.415886887138303e-06 - syst_JES_LArEsmear: 4.539102416778013e-07 - syst_JES_LAr_JVT: 5.84753631882693e-07 - syst_JES_MJB_Alpha: 1.0308782796722414e-07 - syst_JES_MJB_Asym: 2.869648192723282e-06 - syst_JES_MJB_Beta: 2.2620159150633756e-07 - syst_JES_MJB_Fragmentation: 6.370440958049921e-07 - syst_JES_MJB_Stat1: 1.3305465923025772e-16 - syst_JES_MJB_Stat10: 1.0788161880042402e-08 - syst_JES_MJB_Stat11: 1.7980255838001857e-08 - syst_JES_MJB_Stat12: 3.093084019227412e-08 - syst_JES_MJB_Stat13: 5.038693481449333e-08 - syst_JES_MJB_Stat14: 7.014784583292633e-07 - syst_JES_MJB_Stat15: 1.3710467707193655e-06 - syst_JES_MJB_Stat16: 2.19316956708778e-06 - syst_JES_MJB_Stat2: 1.2138139026391434e-10 - syst_JES_MJB_Stat3: 1.431437507961839e-10 - syst_JES_MJB_Stat4: 2.4869033012966146e-10 - syst_JES_MJB_Stat5: 4.215074040356439e-10 - syst_JES_MJB_Stat6: 8.114262551211909e-10 - syst_JES_MJB_Stat7: 3.862142788660203e-09 - syst_JES_MJB_Stat8: 2.3291805490343595e-09 - syst_JES_MJB_Stat9: 5.0296135119907575e-09 - syst_JES_MJB_Threshold: 5.689880029490956e-07 - syst_JES_Pileup_MuOffset: 1.331141866030815e-06 - syst_JES_Pileup_NPVOffset: 9.180196729918156e-07 - syst_JES_Pileup_Pt_term: 3.0318580111871994e-07 - syst_JES_Pileup_Rho_topology: 1.3825347301243466e-06 - syst_JES_PunchThrough_MC15: 2.91855559309738e-06 - syst_JES_SingleParticle_HighPt: 4.5447139623963134e-07 - syst_JES_Zjet_MC: 1.310535959064077e-06 - syst_JES_Zjet_MuScale: 1.737108157254464e-07 - syst_JES_Zjet_MuSmearID: 1.5675795609792828e-08 - syst_JES_Zjet_MuSmearMS: 2.2828482209730894e-07 - syst_JES_Zjet_OOC: 7.738927235088853e-07 - syst_JES_Zjet_Stat1: 1.8358825534330895e-07 - syst_JES_Zjet_Stat10: 1.0048040903579165e-07 - syst_JES_Zjet_Stat11: 8.043216567393918e-08 - syst_JES_Zjet_Stat12: 1.401502161075751e-07 - syst_JES_Zjet_Stat13: 3.1073752187336503e-07 - syst_JES_Zjet_Stat2: 9.825057740301552e-10 - syst_JES_Zjet_Stat3: 3.7172371837158845e-08 - syst_JES_Zjet_Stat4: 5.657620237343613e-08 - syst_JES_Zjet_Stat5: 4.194303160240089e-08 - syst_JES_Zjet_Stat6: 8.806568386721356e-08 - syst_JES_Zjet_Stat7: 7.102582206493634e-08 - syst_JES_Zjet_Stat8: 3.111996907132139e-08 - syst_JES_Zjet_Stat9: 8.206317566363125e-08 - syst_JES_Zjet_Veto: 1.534043350104553e-07 - syst_JES_Zjet_dPhi: 1.4800675660252812e-07 + syst_cleaning: 1.40209513e-06 + syst_lumi: 2.83600000e-06 +- stat: 1.06430000e-05 + syst_JER_CROSS_CALIB_FORWARD: 3.84500000e-23 + syst_JER_NOISE_FORWARD: 1.84900000e-21 + syst_JER_NP0: 1.67076509e-07 + syst_JER_NP1: 2.53363790e-08 + syst_JER_NP2: 1.79271890e-07 + syst_JER_NP3: 4.83460898e-08 + syst_JER_NP4: 2.70707642e-08 + syst_JER_NP5: 6.68271403e-08 + syst_JER_NP6: 3.45029086e-08 + syst_JER_NP7: 1.49350017e-10 + syst_JER_NP8: 4.87757809e-08 + syst_JES_EtaIntercalibration_Modelling: 3.20529480e-06 + syst_JES_EtaIntercalibration_NonClosure: 1.31150724e-13 + syst_JES_EtaIntercalibration_Stat0: 2.15808990e-26 + syst_JES_EtaIntercalibration_Stat1: 2.60352276e-26 + syst_JES_EtaIntercalibration_Stat10: 2.36954806e-26 + syst_JES_EtaIntercalibration_Stat100: 1.73464888e-12 + syst_JES_EtaIntercalibration_Stat101: 1.96459880e-23 + syst_JES_EtaIntercalibration_Stat102: 2.97180699e-20 + syst_JES_EtaIntercalibration_Stat103: 2.97103776e-20 + syst_JES_EtaIntercalibration_Stat104: 1.37236898e-24 + syst_JES_EtaIntercalibration_Stat105: 1.03826414e-22 + syst_JES_EtaIntercalibration_Stat106: 8.43083773e-24 + syst_JES_EtaIntercalibration_Stat107: 2.20372990e-26 + syst_JES_EtaIntercalibration_Stat108: 6.77189516e-24 + syst_JES_EtaIntercalibration_Stat109: 2.46165292e-22 + syst_JES_EtaIntercalibration_Stat11: 1.15534654e-26 + syst_JES_EtaIntercalibration_Stat110: 2.71933924e-21 + syst_JES_EtaIntercalibration_Stat111: 5.82801980e-19 + syst_JES_EtaIntercalibration_Stat112: 5.81973032e-19 + syst_JES_EtaIntercalibration_Stat113: 1.78920862e-12 + syst_JES_EtaIntercalibration_Stat114: 1.84983026e-12 + syst_JES_EtaIntercalibration_Stat115: 6.49605656e-11 + syst_JES_EtaIntercalibration_Stat116: 1.81749978e-10 + syst_JES_EtaIntercalibration_Stat117: 1.77916534e-22 + syst_JES_EtaIntercalibration_Stat118: 5.14831771e-19 + syst_JES_EtaIntercalibration_Stat119: 6.01368039e-11 + syst_JES_EtaIntercalibration_Stat12: 1.03077079e-25 + syst_JES_EtaIntercalibration_Stat120: 3.88549379e-10 + syst_JES_EtaIntercalibration_Stat121: 2.16161298e-22 + syst_JES_EtaIntercalibration_Stat122: 3.99052877e-19 + syst_JES_EtaIntercalibration_Stat123: 9.16031947e-20 + syst_JES_EtaIntercalibration_Stat124: 3.12275541e-19 + syst_JES_EtaIntercalibration_Stat125: 2.98985330e-22 + syst_JES_EtaIntercalibration_Stat126: 1.75495530e-22 + syst_JES_EtaIntercalibration_Stat127: 5.65341384e-26 + syst_JES_EtaIntercalibration_Stat128: 2.06392272e-21 + syst_JES_EtaIntercalibration_Stat129: 2.48549445e-16 + syst_JES_EtaIntercalibration_Stat13: 1.81273571e-26 + syst_JES_EtaIntercalibration_Stat130: 8.14066231e-16 + syst_JES_EtaIntercalibration_Stat131: 8.00445446e-19 + syst_JES_EtaIntercalibration_Stat132: 9.74884614e-13 + syst_JES_EtaIntercalibration_Stat133: 3.10664466e-10 + syst_JES_EtaIntercalibration_Stat134: 2.95191387e-20 + syst_JES_EtaIntercalibration_Stat135: 1.50566693e-20 + syst_JES_EtaIntercalibration_Stat136: 3.96895456e-10 + syst_JES_EtaIntercalibration_Stat137: 1.98309740e-11 + syst_JES_EtaIntercalibration_Stat138: 7.16779025e-10 + syst_JES_EtaIntercalibration_Stat139: 3.14886837e-10 + syst_JES_EtaIntercalibration_Stat14: 1.72189568e-26 + syst_JES_EtaIntercalibration_Stat140: 2.62235054e-10 + syst_JES_EtaIntercalibration_Stat141: 1.18400216e-10 + syst_JES_EtaIntercalibration_Stat142: 8.62986429e-15 + syst_JES_EtaIntercalibration_Stat143: 1.14711750e-19 + syst_JES_EtaIntercalibration_Stat144: 2.52980910e-19 + syst_JES_EtaIntercalibration_Stat145: 1.94418713e-21 + syst_JES_EtaIntercalibration_Stat146: 5.84168236e-21 + syst_JES_EtaIntercalibration_Stat147: 2.43434066e-16 + syst_JES_EtaIntercalibration_Stat148: 8.13798151e-16 + syst_JES_EtaIntercalibration_Stat149: 5.83441315e-19 + syst_JES_EtaIntercalibration_Stat15: 2.45634546e-26 + syst_JES_EtaIntercalibration_Stat150: 9.79387944e-13 + syst_JES_EtaIntercalibration_Stat151: 2.40408652e-10 + syst_JES_EtaIntercalibration_Stat152: 1.54758740e-10 + syst_JES_EtaIntercalibration_Stat153: 4.37130867e-20 + syst_JES_EtaIntercalibration_Stat154: 6.60327456e-11 + syst_JES_EtaIntercalibration_Stat155: 1.99000304e-11 + syst_JES_EtaIntercalibration_Stat156: 7.91598585e-10 + syst_JES_EtaIntercalibration_Stat157: 4.52117183e-19 + syst_JES_EtaIntercalibration_Stat158: 2.11888579e-10 + syst_JES_EtaIntercalibration_Stat159: 9.64465146e-11 + syst_JES_EtaIntercalibration_Stat16: 1.42304908e-26 + syst_JES_EtaIntercalibration_Stat160: 2.79348776e-20 + syst_JES_EtaIntercalibration_Stat161: 7.39400180e-20 + syst_JES_EtaIntercalibration_Stat162: 1.11563706e-19 + syst_JES_EtaIntercalibration_Stat163: 5.79324543e-21 + syst_JES_EtaIntercalibration_Stat164: 1.15419237e-21 + syst_JES_EtaIntercalibration_Stat165: 2.99046876e-16 + syst_JES_EtaIntercalibration_Stat166: 2.69223524e-16 + syst_JES_EtaIntercalibration_Stat167: 1.95872540e-12 + syst_JES_EtaIntercalibration_Stat168: 1.84203015e-11 + syst_JES_EtaIntercalibration_Stat169: 7.10688277e-10 + syst_JES_EtaIntercalibration_Stat17: 2.18290878e-26 + syst_JES_EtaIntercalibration_Stat170: 6.80522763e-10 + syst_JES_EtaIntercalibration_Stat171: 2.93496097e-10 + syst_JES_EtaIntercalibration_Stat172: 6.63895795e-11 + syst_JES_EtaIntercalibration_Stat173: 3.87026753e-10 + syst_JES_EtaIntercalibration_Stat174: 9.60162389e-10 + syst_JES_EtaIntercalibration_Stat175: 1.61687378e-09 + syst_JES_EtaIntercalibration_Stat176: 1.12447186e-09 + syst_JES_EtaIntercalibration_Stat177: 1.41930928e-10 + syst_JES_EtaIntercalibration_Stat178: 6.74897093e-10 + syst_JES_EtaIntercalibration_Stat179: 2.62459465e-16 + syst_JES_EtaIntercalibration_Stat18: 2.15808990e-26 + syst_JES_EtaIntercalibration_Stat180: 3.92256765e-19 + syst_JES_EtaIntercalibration_Stat181: 8.21598220e-20 + syst_JES_EtaIntercalibration_Stat182: 4.34272645e-14 + syst_JES_EtaIntercalibration_Stat183: 1.73291683e-12 + syst_JES_EtaIntercalibration_Stat184: 3.72655059e-11 + syst_JES_EtaIntercalibration_Stat185: 5.07748846e-10 + syst_JES_EtaIntercalibration_Stat186: 4.78389580e-09 + syst_JES_EtaIntercalibration_Stat187: 5.77828582e-09 + syst_JES_EtaIntercalibration_Stat188: 7.27046360e-09 + syst_JES_EtaIntercalibration_Stat189: 4.94128776e-09 + syst_JES_EtaIntercalibration_Stat19: 5.14639026e-26 + syst_JES_EtaIntercalibration_Stat190: 3.39851549e-09 + syst_JES_EtaIntercalibration_Stat191: 8.46454941e-09 + syst_JES_EtaIntercalibration_Stat192: 1.44559149e-08 + syst_JES_EtaIntercalibration_Stat193: 6.73936028e-09 + syst_JES_EtaIntercalibration_Stat194: 1.07463892e-09 + syst_JES_EtaIntercalibration_Stat195: 4.21834869e-10 + syst_JES_EtaIntercalibration_Stat196: 1.67021638e-11 + syst_JES_EtaIntercalibration_Stat197: 3.36347107e-16 + syst_JES_EtaIntercalibration_Stat198: 4.93321091e-12 + syst_JES_EtaIntercalibration_Stat199: 8.93075559e-11 + syst_JES_EtaIntercalibration_Stat2: 1.28468915e-26 + syst_JES_EtaIntercalibration_Stat20: 2.15808990e-26 + syst_JES_EtaIntercalibration_Stat200: 2.35637030e-09 + syst_JES_EtaIntercalibration_Stat201: 1.03792883e-08 + syst_JES_EtaIntercalibration_Stat202: 2.48185913e-08 + syst_JES_EtaIntercalibration_Stat203: 1.84732482e-08 + syst_JES_EtaIntercalibration_Stat204: 7.84428344e-09 + syst_JES_EtaIntercalibration_Stat205: 6.47538609e-09 + syst_JES_EtaIntercalibration_Stat206: 1.44552125e-08 + syst_JES_EtaIntercalibration_Stat207: 2.15735365e-08 + syst_JES_EtaIntercalibration_Stat208: 1.26674831e-08 + syst_JES_EtaIntercalibration_Stat209: 3.45247516e-09 + syst_JES_EtaIntercalibration_Stat21: 2.15808990e-26 + syst_JES_EtaIntercalibration_Stat210: 5.16771369e-10 + syst_JES_EtaIntercalibration_Stat211: 2.41821336e-10 + syst_JES_EtaIntercalibration_Stat212: 8.91225560e-11 + syst_JES_EtaIntercalibration_Stat213: 2.51059435e-09 + syst_JES_EtaIntercalibration_Stat214: 1.03741600e-08 + syst_JES_EtaIntercalibration_Stat215: 2.77748141e-08 + syst_JES_EtaIntercalibration_Stat216: 2.02635313e-08 + syst_JES_EtaIntercalibration_Stat217: 7.15528301e-09 + syst_JES_EtaIntercalibration_Stat218: 7.66600835e-09 + syst_JES_EtaIntercalibration_Stat219: 1.67817602e-08 + syst_JES_EtaIntercalibration_Stat22: 2.15808990e-26 + syst_JES_EtaIntercalibration_Stat220: 2.24422966e-08 + syst_JES_EtaIntercalibration_Stat221: 1.03430929e-08 + syst_JES_EtaIntercalibration_Stat222: 4.64488654e-09 + syst_JES_EtaIntercalibration_Stat223: 4.65414310e-10 + syst_JES_EtaIntercalibration_Stat224: 4.64042678e-10 + syst_JES_EtaIntercalibration_Stat225: 5.47314633e-09 + syst_JES_EtaIntercalibration_Stat226: 2.90208304e-08 + syst_JES_EtaIntercalibration_Stat227: 6.56012460e-08 + syst_JES_EtaIntercalibration_Stat228: 4.71324124e-08 + syst_JES_EtaIntercalibration_Stat229: 2.29111043e-08 + syst_JES_EtaIntercalibration_Stat23: 4.25190142e-26 + syst_JES_EtaIntercalibration_Stat230: 1.89218782e-08 + syst_JES_EtaIntercalibration_Stat231: 5.38134897e-08 + syst_JES_EtaIntercalibration_Stat232: 6.93104572e-08 + syst_JES_EtaIntercalibration_Stat233: 3.47310477e-08 + syst_JES_EtaIntercalibration_Stat234: 9.53220090e-09 + syst_JES_EtaIntercalibration_Stat235: 1.47830536e-09 + syst_JES_EtaIntercalibration_Stat236: 1.98215112e-09 + syst_JES_EtaIntercalibration_Stat237: 5.54553045e-09 + syst_JES_EtaIntercalibration_Stat238: 1.45076911e-08 + syst_JES_EtaIntercalibration_Stat239: 6.86430856e-09 + syst_JES_EtaIntercalibration_Stat24: 2.13960745e-25 + syst_JES_EtaIntercalibration_Stat240: 4.66420272e-09 + syst_JES_EtaIntercalibration_Stat241: 3.47617054e-09 + syst_JES_EtaIntercalibration_Stat242: 4.95778912e-09 + syst_JES_EtaIntercalibration_Stat243: 1.29523388e-08 + syst_JES_EtaIntercalibration_Stat244: 5.40399852e-09 + syst_JES_EtaIntercalibration_Stat245: 1.62573391e-09 + syst_JES_EtaIntercalibration_Stat25: 1.94529795e-25 + syst_JES_EtaIntercalibration_Stat26: 2.22917058e-26 + syst_JES_EtaIntercalibration_Stat27: 1.30192819e-25 + syst_JES_EtaIntercalibration_Stat28: 7.57576715e-26 + syst_JES_EtaIntercalibration_Stat29: 1.83501474e-25 + syst_JES_EtaIntercalibration_Stat3: 1.07180376e-26 + syst_JES_EtaIntercalibration_Stat30: 2.96518916e-25 + syst_JES_EtaIntercalibration_Stat31: 1.42130916e-21 + syst_JES_EtaIntercalibration_Stat32: 1.45755841e-21 + syst_JES_EtaIntercalibration_Stat33: 3.44978176e-25 + syst_JES_EtaIntercalibration_Stat34: 1.20360374e-24 + syst_JES_EtaIntercalibration_Stat35: 8.51129767e-11 + syst_JES_EtaIntercalibration_Stat36: 5.60505297e-25 + syst_JES_EtaIntercalibration_Stat37: 3.43843823e-24 + syst_JES_EtaIntercalibration_Stat38: 3.77992103e-25 + syst_JES_EtaIntercalibration_Stat39: 3.75335410e-25 + syst_JES_EtaIntercalibration_Stat4: 2.60352276e-26 + syst_JES_EtaIntercalibration_Stat40: 1.01748928e-25 + syst_JES_EtaIntercalibration_Stat41: 3.32619693e-26 + syst_JES_EtaIntercalibration_Stat42: 1.80826104e-26 + syst_JES_EtaIntercalibration_Stat43: 2.15808990e-26 + syst_JES_EtaIntercalibration_Stat44: 2.15808990e-26 + syst_JES_EtaIntercalibration_Stat45: 1.28468915e-26 + syst_JES_EtaIntercalibration_Stat46: 2.03727851e-25 + syst_JES_EtaIntercalibration_Stat47: 7.82534214e-25 + syst_JES_EtaIntercalibration_Stat48: 2.19880799e-25 + syst_JES_EtaIntercalibration_Stat49: 2.96017939e-25 + syst_JES_EtaIntercalibration_Stat5: 1.32155477e-26 + syst_JES_EtaIntercalibration_Stat50: 1.42194176e-21 + syst_JES_EtaIntercalibration_Stat51: 1.90006173e-25 + syst_JES_EtaIntercalibration_Stat52: 4.04301579e-25 + syst_JES_EtaIntercalibration_Stat53: 1.42302462e-21 + syst_JES_EtaIntercalibration_Stat54: 1.42128238e-21 + syst_JES_EtaIntercalibration_Stat55: 6.64653043e-25 + syst_JES_EtaIntercalibration_Stat56: 4.13676984e-25 + syst_JES_EtaIntercalibration_Stat57: 4.76752476e-21 + syst_JES_EtaIntercalibration_Stat58: 1.69837016e-24 + syst_JES_EtaIntercalibration_Stat59: 9.09303778e-25 + syst_JES_EtaIntercalibration_Stat6: 1.88928444e-26 + syst_JES_EtaIntercalibration_Stat60: 1.51966866e-25 + syst_JES_EtaIntercalibration_Stat61: 4.69198218e-25 + syst_JES_EtaIntercalibration_Stat62: 3.47404414e-25 + syst_JES_EtaIntercalibration_Stat63: 3.16757978e-26 + syst_JES_EtaIntercalibration_Stat64: 2.05693513e-26 + syst_JES_EtaIntercalibration_Stat65: 2.15808990e-26 + syst_JES_EtaIntercalibration_Stat66: 2.15808990e-26 + syst_JES_EtaIntercalibration_Stat67: 3.09530980e-25 + syst_JES_EtaIntercalibration_Stat68: 2.12488788e-24 + syst_JES_EtaIntercalibration_Stat69: 8.81413603e-25 + syst_JES_EtaIntercalibration_Stat7: 1.41182325e-26 + syst_JES_EtaIntercalibration_Stat70: 6.06177704e-25 + syst_JES_EtaIntercalibration_Stat71: 5.79202311e-25 + syst_JES_EtaIntercalibration_Stat72: 1.42323094e-21 + syst_JES_EtaIntercalibration_Stat73: 3.20119512e-20 + syst_JES_EtaIntercalibration_Stat74: 3.27353253e-20 + syst_JES_EtaIntercalibration_Stat75: 1.52074061e-12 + syst_JES_EtaIntercalibration_Stat76: 1.42716937e-21 + syst_JES_EtaIntercalibration_Stat77: 2.06407631e-24 + syst_JES_EtaIntercalibration_Stat78: 1.51208036e-12 + syst_JES_EtaIntercalibration_Stat79: 1.50168805e-12 + syst_JES_EtaIntercalibration_Stat8: 4.01711622e-26 + syst_JES_EtaIntercalibration_Stat80: 4.79130654e-21 + syst_JES_EtaIntercalibration_Stat81: 2.52099354e-20 + syst_JES_EtaIntercalibration_Stat82: 2.97052949e-20 + syst_JES_EtaIntercalibration_Stat83: 1.36441808e-24 + syst_JES_EtaIntercalibration_Stat84: 8.97039635e-25 + syst_JES_EtaIntercalibration_Stat85: 1.07641714e-25 + syst_JES_EtaIntercalibration_Stat86: 1.13359798e-26 + syst_JES_EtaIntercalibration_Stat87: 1.32155477e-26 + syst_JES_EtaIntercalibration_Stat88: 1.47300839e-25 + syst_JES_EtaIntercalibration_Stat89: 7.04875629e-24 + syst_JES_EtaIntercalibration_Stat9: 2.34470126e-26 + syst_JES_EtaIntercalibration_Stat90: 8.37266354e-24 + syst_JES_EtaIntercalibration_Stat91: 2.18481819e-24 + syst_JES_EtaIntercalibration_Stat92: 2.39710888e-24 + syst_JES_EtaIntercalibration_Stat93: 1.43077758e-21 + syst_JES_EtaIntercalibration_Stat94: 2.97517550e-20 + syst_JES_EtaIntercalibration_Stat95: 2.89730164e-20 + syst_JES_EtaIntercalibration_Stat96: 1.50948228e-12 + syst_JES_EtaIntercalibration_Stat97: 1.00881516e-23 + syst_JES_EtaIntercalibration_Stat98: 3.92365910e-24 + syst_JES_EtaIntercalibration_Stat99: 9.37856500e-11 + syst_JES_EtaIntercalibration_TotalStat_MJB: 2.10343861e-06 + syst_JES_Flavour_Comp: 1.41130743e-06 + syst_JES_Flavour_Response: 1.75460166e-06 + syst_JES_Gjet_Generator: 3.53862148e-06 + syst_JES_Gjet_OOC: 2.96093106e-06 + syst_JES_Gjet_Purity: 3.10484021e-08 + syst_JES_Gjet_Stat1: 5.17566757e-09 + syst_JES_Gjet_Stat10: 2.15271474e-07 + syst_JES_Gjet_Stat11: 2.11159957e-07 + syst_JES_Gjet_Stat12: 9.68095650e-08 + syst_JES_Gjet_Stat13: 8.82009596e-07 + syst_JES_Gjet_Stat14: 2.74909853e-06 + syst_JES_Gjet_Stat15: 4.28497757e-06 + syst_JES_Gjet_Stat2: 1.96405213e-08 + syst_JES_Gjet_Stat3: 2.15612030e-08 + syst_JES_Gjet_Stat4: 7.86399051e-08 + syst_JES_Gjet_Stat5: 7.68380882e-08 + syst_JES_Gjet_Stat6: 6.71399410e-08 + syst_JES_Gjet_Stat7: 8.25347701e-08 + syst_JES_Gjet_Stat8: 2.31598661e-08 + syst_JES_Gjet_Stat9: 8.41718722e-08 + syst_JES_Gjet_Veto: 3.51253224e-06 + syst_JES_Gjet_dPhi: 1.35771627e-07 + syst_JES_LArESZee: 4.41588689e-06 + syst_JES_LArEsmear: 4.53910242e-07 + syst_JES_LAr_JVT: 5.84753632e-07 + syst_JES_MJB_Alpha: 1.03087828e-07 + syst_JES_MJB_Asym: 2.86964819e-06 + syst_JES_MJB_Beta: 2.26201592e-07 + syst_JES_MJB_Fragmentation: 6.37044096e-07 + syst_JES_MJB_Stat1: 1.33054659e-16 + syst_JES_MJB_Stat10: 1.07881619e-08 + syst_JES_MJB_Stat11: 1.79802558e-08 + syst_JES_MJB_Stat12: 3.09308402e-08 + syst_JES_MJB_Stat13: 5.03869348e-08 + syst_JES_MJB_Stat14: 7.01478458e-07 + syst_JES_MJB_Stat15: 1.37104677e-06 + syst_JES_MJB_Stat16: 2.19316957e-06 + syst_JES_MJB_Stat2: 1.21381390e-10 + syst_JES_MJB_Stat3: 1.43143751e-10 + syst_JES_MJB_Stat4: 2.48690330e-10 + syst_JES_MJB_Stat5: 4.21507404e-10 + syst_JES_MJB_Stat6: 8.11426255e-10 + syst_JES_MJB_Stat7: 3.86214279e-09 + syst_JES_MJB_Stat8: 2.32918055e-09 + syst_JES_MJB_Stat9: 5.02961351e-09 + syst_JES_MJB_Threshold: 5.68988003e-07 + syst_JES_Pileup_MuOffset: 1.33114187e-06 + syst_JES_Pileup_NPVOffset: 9.18019673e-07 + syst_JES_Pileup_Pt_term: 3.03185801e-07 + syst_JES_Pileup_Rho_topology: 1.38253473e-06 + syst_JES_PunchThrough_MC15: 2.91855559e-06 + syst_JES_SingleParticle_HighPt: 4.54471396e-07 + syst_JES_Zjet_MC: 1.31053596e-06 + syst_JES_Zjet_MuScale: 1.73710816e-07 + syst_JES_Zjet_MuSmearID: 1.56757956e-08 + syst_JES_Zjet_MuSmearMS: 2.28284822e-07 + syst_JES_Zjet_OOC: 7.73892724e-07 + syst_JES_Zjet_Stat1: 1.83588255e-07 + syst_JES_Zjet_Stat10: 1.00480409e-07 + syst_JES_Zjet_Stat11: 8.04321657e-08 + syst_JES_Zjet_Stat12: 1.40150216e-07 + syst_JES_Zjet_Stat13: 3.10737522e-07 + syst_JES_Zjet_Stat2: 9.82505774e-10 + syst_JES_Zjet_Stat3: 3.71723718e-08 + syst_JES_Zjet_Stat4: 5.65762024e-08 + syst_JES_Zjet_Stat5: 4.19430316e-08 + syst_JES_Zjet_Stat6: 8.80656839e-08 + syst_JES_Zjet_Stat7: 7.10258221e-08 + syst_JES_Zjet_Stat8: 3.11199691e-08 + syst_JES_Zjet_Stat9: 8.20631757e-08 + syst_JES_Zjet_Veto: 1.53404335e-07 + syst_JES_Zjet_dPhi: 1.48006757e-07 syst_PRW: 0.0 syst_Unfolding_bias: 0.0 - syst_cleaning: 7.199269181660039e-07 - syst_lumi: 1.519e-06 -- stat: 5.823e-06 - syst_JER_CROSS_CALIB_FORWARD: 6.947e-24 - syst_JER_NOISE_FORWARD: 2.537e-22 - syst_JER_NP0: 6.027513666512917e-08 - syst_JER_NP1: 7.722272123539807e-09 - syst_JER_NP2: 6.654570816363741e-08 - syst_JER_NP3: 1.6991776687562725e-08 - syst_JER_NP4: 1.3181381756098258e-08 - syst_JER_NP5: 2.3436554247585113e-08 - syst_JER_NP6: 1.3232825350241725e-08 - syst_JER_NP7: 9.784003679476005e-10 - syst_JER_NP8: 1.7458728476037424e-08 - syst_JES_EtaIntercalibration_Modelling: 1.0091288966232214e-06 - syst_JES_EtaIntercalibration_NonClosure: 8.550161094973591e-15 - syst_JES_EtaIntercalibration_Stat0: 5.513170151555273e-27 - syst_JES_EtaIntercalibration_Stat1: 6.485227881115667e-27 - syst_JES_EtaIntercalibration_Stat10: 6.008792317928787e-27 - syst_JES_EtaIntercalibration_Stat100: 1.4350040940684429e-13 - syst_JES_EtaIntercalibration_Stat101: 2.5948529568166287e-24 - syst_JES_EtaIntercalibration_Stat102: 2.5506723924549774e-21 - syst_JES_EtaIntercalibration_Stat103: 2.551836669706274e-21 - syst_JES_EtaIntercalibration_Stat104: 2.8103818014639933e-25 - syst_JES_EtaIntercalibration_Stat105: 1.342388960026117e-23 - syst_JES_EtaIntercalibration_Stat106: 1.1572218143035501e-24 - syst_JES_EtaIntercalibration_Stat107: 5.64578980480145e-27 - syst_JES_EtaIntercalibration_Stat108: 9.749890717336272e-25 - syst_JES_EtaIntercalibration_Stat109: 5.97893880780695e-23 - syst_JES_EtaIntercalibration_Stat11: 3.0905884148491855e-27 - syst_JES_EtaIntercalibration_Stat110: 3.0249214853116436e-22 - syst_JES_EtaIntercalibration_Stat111: 4.490915881119435e-20 - syst_JES_EtaIntercalibration_Stat112: 4.4768041513115135e-20 - syst_JES_EtaIntercalibration_Stat113: 1.3224208532109905e-13 - syst_JES_EtaIntercalibration_Stat114: 1.3631239828977197e-13 - syst_JES_EtaIntercalibration_Stat115: 1.4488605006634059e-11 - syst_JES_EtaIntercalibration_Stat116: 6.605118748932528e-11 - syst_JES_EtaIntercalibration_Stat117: 1.810669909922844e-23 - syst_JES_EtaIntercalibration_Stat118: 4.069254325205049e-20 - syst_JES_EtaIntercalibration_Stat119: 1.3769803906905066e-11 - syst_JES_EtaIntercalibration_Stat12: 1.7500904855178203e-26 - syst_JES_EtaIntercalibration_Stat120: 1.1472058650804572e-10 - syst_JES_EtaIntercalibration_Stat121: 3.0627721703548244e-23 - syst_JES_EtaIntercalibration_Stat122: 3.0811078557278204e-20 - syst_JES_EtaIntercalibration_Stat123: 8.002903598069892e-21 - syst_JES_EtaIntercalibration_Stat124: 2.5195133006346677e-20 - syst_JES_EtaIntercalibration_Stat125: 3.446552879327401e-23 - syst_JES_EtaIntercalibration_Stat126: 2.385315582894641e-23 - syst_JES_EtaIntercalibration_Stat127: 1.2609329879101427e-26 - syst_JES_EtaIntercalibration_Stat128: 2.1016892895953958e-22 - syst_JES_EtaIntercalibration_Stat129: 1.409891737503623e-17 - syst_JES_EtaIntercalibration_Stat13: 3.915019962592783e-27 - syst_JES_EtaIntercalibration_Stat130: 5.2871170818566907e-17 - syst_JES_EtaIntercalibration_Stat131: 4.262454929967002e-20 - syst_JES_EtaIntercalibration_Stat132: 7.922399191488839e-14 - syst_JES_EtaIntercalibration_Stat133: 1.1339995187727152e-10 - syst_JES_EtaIntercalibration_Stat134: 3.908149040146755e-21 - syst_JES_EtaIntercalibration_Stat135: 1.4028559040400407e-21 - syst_JES_EtaIntercalibration_Stat136: 6.509605441192271e-11 - syst_JES_EtaIntercalibration_Stat137: 1.4400254581082932e-12 - syst_JES_EtaIntercalibration_Stat138: 3.5818732641838397e-10 - syst_JES_EtaIntercalibration_Stat139: 4.6107192497746935e-11 - syst_JES_EtaIntercalibration_Stat14: 3.746885442604297e-27 - syst_JES_EtaIntercalibration_Stat140: 2.440496698053646e-10 - syst_JES_EtaIntercalibration_Stat141: 3.670194955038342e-11 - syst_JES_EtaIntercalibration_Stat142: 6.41892096016145e-16 - syst_JES_EtaIntercalibration_Stat143: 9.54704932164907e-21 - syst_JES_EtaIntercalibration_Stat144: 1.740714000058597e-20 - syst_JES_EtaIntercalibration_Stat145: 2.075870171157146e-22 - syst_JES_EtaIntercalibration_Stat146: 5.408610426902644e-22 - syst_JES_EtaIntercalibration_Stat147: 1.3708689155712444e-17 - syst_JES_EtaIntercalibration_Stat148: 5.285304370461504e-17 - syst_JES_EtaIntercalibration_Stat149: 3.39646503110219e-20 - syst_JES_EtaIntercalibration_Stat15: 6.5376213373061e-27 - syst_JES_EtaIntercalibration_Stat150: 7.959638264799031e-14 - syst_JES_EtaIntercalibration_Stat151: 2.1018436549831841e-10 - syst_JES_EtaIntercalibration_Stat152: 4.6618147486015403e-11 - syst_JES_EtaIntercalibration_Stat153: 3.136156024100204e-21 - syst_JES_EtaIntercalibration_Stat154: 2.0655543262153626e-11 - syst_JES_EtaIntercalibration_Stat155: 1.4495198756829794e-12 - syst_JES_EtaIntercalibration_Stat156: 3.988857981929164e-10 - syst_JES_EtaIntercalibration_Stat157: 4.08368753946724e-20 - syst_JES_EtaIntercalibration_Stat158: 6.558286514021784e-11 - syst_JES_EtaIntercalibration_Stat159: 2.9894992822026113e-11 - syst_JES_EtaIntercalibration_Stat16: 3.636649141723738e-27 - syst_JES_EtaIntercalibration_Stat160: 2.5072142848189104e-21 - syst_JES_EtaIntercalibration_Stat161: 7.682582905995874e-21 - syst_JES_EtaIntercalibration_Stat162: 4.7549016401498775e-21 - syst_JES_EtaIntercalibration_Stat163: 2.680844937477735e-22 - syst_JES_EtaIntercalibration_Stat164: 3.7869962701328344e-22 - syst_JES_EtaIntercalibration_Stat165: 1.747670311529895e-17 - syst_JES_EtaIntercalibration_Stat166: 1.5455714807161137e-17 - syst_JES_EtaIntercalibration_Stat167: 2.167646650171563e-14 - syst_JES_EtaIntercalibration_Stat168: 1.7228776995190344e-12 - syst_JES_EtaIntercalibration_Stat169: 2.9356873357145857e-10 - syst_JES_EtaIntercalibration_Stat17: 5.584033528507865e-27 - syst_JES_EtaIntercalibration_Stat170: 2.1182981381922295e-10 - syst_JES_EtaIntercalibration_Stat171: 9.099329497222915e-11 - syst_JES_EtaIntercalibration_Stat172: 9.495107307562441e-12 - syst_JES_EtaIntercalibration_Stat173: 1.368320137974035e-10 - syst_JES_EtaIntercalibration_Stat174: 2.721051833990489e-10 - syst_JES_EtaIntercalibration_Stat175: 7.219190587750932e-10 - syst_JES_EtaIntercalibration_Stat176: 6.428649190461944e-10 - syst_JES_EtaIntercalibration_Stat177: 4.3345254353850545e-11 - syst_JES_EtaIntercalibration_Stat178: 2.815451129785626e-10 - syst_JES_EtaIntercalibration_Stat179: 1.7496548766828273e-17 - syst_JES_EtaIntercalibration_Stat18: 5.513170151555273e-27 - syst_JES_EtaIntercalibration_Stat180: 2.956682191037785e-20 - syst_JES_EtaIntercalibration_Stat181: 6.7290154495311415e-21 - syst_JES_EtaIntercalibration_Stat182: 2.897237729996674e-15 - syst_JES_EtaIntercalibration_Stat183: 1.4107553827648302e-13 - syst_JES_EtaIntercalibration_Stat184: 4.486040272211432e-12 - syst_JES_EtaIntercalibration_Stat185: 4.425806359680459e-10 - syst_JES_EtaIntercalibration_Stat186: 1.8147939462925262e-09 - syst_JES_EtaIntercalibration_Stat187: 2.0491546427734536e-09 - syst_JES_EtaIntercalibration_Stat188: 2.641212221689124e-09 - syst_JES_EtaIntercalibration_Stat189: 1.8071931274769723e-09 - syst_JES_EtaIntercalibration_Stat19: 1.1193887651303278e-26 - syst_JES_EtaIntercalibration_Stat190: 1.4786179628288032e-09 - syst_JES_EtaIntercalibration_Stat191: 3.4944562881798935e-09 - syst_JES_EtaIntercalibration_Stat192: 5.070884834030448e-09 - syst_JES_EtaIntercalibration_Stat193: 1.9686327107919348e-09 - syst_JES_EtaIntercalibration_Stat194: 3.2990996965081245e-10 - syst_JES_EtaIntercalibration_Stat195: 2.39936195543732e-10 - syst_JES_EtaIntercalibration_Stat196: 1.3161432596795837e-12 - syst_JES_EtaIntercalibration_Stat197: 2.272634161056284e-17 - syst_JES_EtaIntercalibration_Stat198: 3.345069113964613e-13 - syst_JES_EtaIntercalibration_Stat199: 8.215236892281316e-12 - syst_JES_EtaIntercalibration_Stat2: 3.240980888558277e-27 - syst_JES_EtaIntercalibration_Stat20: 5.513170151555273e-27 - syst_JES_EtaIntercalibration_Stat200: 8.973634868323984e-10 - syst_JES_EtaIntercalibration_Stat201: 3.47597677207429e-09 - syst_JES_EtaIntercalibration_Stat202: 8.236712739315364e-09 - syst_JES_EtaIntercalibration_Stat203: 6.947045990923048e-09 - syst_JES_EtaIntercalibration_Stat204: 2.8751803421698613e-09 - syst_JES_EtaIntercalibration_Stat205: 2.568387042484057e-09 - syst_JES_EtaIntercalibration_Stat206: 5.048009706805247e-09 - syst_JES_EtaIntercalibration_Stat207: 7.017543640762058e-09 - syst_JES_EtaIntercalibration_Stat208: 3.6826010848312095e-09 - syst_JES_EtaIntercalibration_Stat209: 1.214694483193202e-09 - syst_JES_EtaIntercalibration_Stat21: 5.513170151555273e-27 - syst_JES_EtaIntercalibration_Stat210: 2.808412841357196e-10 - syst_JES_EtaIntercalibration_Stat211: 1.3388852289498153e-10 - syst_JES_EtaIntercalibration_Stat212: 8.195940480091348e-12 - syst_JES_EtaIntercalibration_Stat213: 9.320397027487616e-10 - syst_JES_EtaIntercalibration_Stat214: 3.471854125679822e-09 - syst_JES_EtaIntercalibration_Stat215: 9.02523994140876e-09 - syst_JES_EtaIntercalibration_Stat216: 7.215033246631646e-09 - syst_JES_EtaIntercalibration_Stat217: 2.6211817959653236e-09 - syst_JES_EtaIntercalibration_Stat218: 2.9428972119324863e-09 - syst_JES_EtaIntercalibration_Stat219: 5.685122755930605e-09 - syst_JES_EtaIntercalibration_Stat22: 5.513170151555273e-27 - syst_JES_EtaIntercalibration_Stat220: 7.165822213814685e-09 - syst_JES_EtaIntercalibration_Stat221: 2.961471255980716e-09 - syst_JES_EtaIntercalibration_Stat222: 1.3150876282590448e-09 - syst_JES_EtaIntercalibration_Stat223: 2.6344572227477927e-10 - syst_JES_EtaIntercalibration_Stat224: 6.801472248712039e-11 - syst_JES_EtaIntercalibration_Stat225: 1.7783314511080325e-09 - syst_JES_EtaIntercalibration_Stat226: 9.862764559189274e-09 - syst_JES_EtaIntercalibration_Stat227: 2.2396121874110258e-08 - syst_JES_EtaIntercalibration_Stat228: 1.522919225533646e-08 - syst_JES_EtaIntercalibration_Stat229: 6.705628083930692e-09 - syst_JES_EtaIntercalibration_Stat23: 8.137591535583487e-27 - syst_JES_EtaIntercalibration_Stat230: 6.438164567638824e-09 - syst_JES_EtaIntercalibration_Stat231: 1.8158813287216763e-08 - syst_JES_EtaIntercalibration_Stat232: 2.46057853969346e-08 - syst_JES_EtaIntercalibration_Stat233: 9.853263976977377e-09 - syst_JES_EtaIntercalibration_Stat234: 2.8852529785098566e-09 - syst_JES_EtaIntercalibration_Stat235: 3.9958412130614e-10 - syst_JES_EtaIntercalibration_Stat236: 8.296766567766024e-10 - syst_JES_EtaIntercalibration_Stat237: 1.3434732849967655e-09 - syst_JES_EtaIntercalibration_Stat238: 4.962717073337951e-09 - syst_JES_EtaIntercalibration_Stat239: 2.5366068043746946e-09 - syst_JES_EtaIntercalibration_Stat24: 4.3165700214406344e-26 - syst_JES_EtaIntercalibration_Stat240: 1.6887424315152385e-09 - syst_JES_EtaIntercalibration_Stat241: 1.5329360937429845e-09 - syst_JES_EtaIntercalibration_Stat242: 1.726934054907714e-09 - syst_JES_EtaIntercalibration_Stat243: 3.750820266288429e-09 - syst_JES_EtaIntercalibration_Stat244: 1.6385200639601732e-09 - syst_JES_EtaIntercalibration_Stat245: 5.461493087975119e-10 - syst_JES_EtaIntercalibration_Stat25: 3.907794358714389e-26 - syst_JES_EtaIntercalibration_Stat26: 5.978541189119633e-27 - syst_JES_EtaIntercalibration_Stat27: 3.1028478965973746e-26 - syst_JES_EtaIntercalibration_Stat28: 1.7739951049256027e-26 - syst_JES_EtaIntercalibration_Stat29: 4.132527207411949e-26 - syst_JES_EtaIntercalibration_Stat3: 2.5748865994447213e-27 - syst_JES_EtaIntercalibration_Stat30: 6.434358612169515e-26 - syst_JES_EtaIntercalibration_Stat31: 1.534865468860013e-22 - syst_JES_EtaIntercalibration_Stat32: 1.5831400540454406e-22 - syst_JES_EtaIntercalibration_Stat33: 7.007059491684084e-26 - syst_JES_EtaIntercalibration_Stat34: 2.2020481528567897e-25 - syst_JES_EtaIntercalibration_Stat35: 1.8983276850954885e-11 - syst_JES_EtaIntercalibration_Stat36: 1.2229891690035525e-25 - syst_JES_EtaIntercalibration_Stat37: 6.0975401656709695e-25 - syst_JES_EtaIntercalibration_Stat38: 6.833260916282942e-26 - syst_JES_EtaIntercalibration_Stat39: 6.707366752310477e-26 - syst_JES_EtaIntercalibration_Stat4: 6.485227881115667e-27 - syst_JES_EtaIntercalibration_Stat40: 2.419361899344536e-26 - syst_JES_EtaIntercalibration_Stat41: 8.341894449104472e-27 - syst_JES_EtaIntercalibration_Stat42: 3.5732208160145934e-27 - syst_JES_EtaIntercalibration_Stat43: 5.513170151555273e-27 - syst_JES_EtaIntercalibration_Stat44: 5.513170151555273e-27 - syst_JES_EtaIntercalibration_Stat45: 3.240980888558277e-27 - syst_JES_EtaIntercalibration_Stat46: 4.20090597371567e-26 - syst_JES_EtaIntercalibration_Stat47: 1.2642222779539207e-25 - syst_JES_EtaIntercalibration_Stat48: 5.700079122257866e-26 - syst_JES_EtaIntercalibration_Stat49: 7.1145984250694e-26 - syst_JES_EtaIntercalibration_Stat5: 3.376113434113256e-27 - syst_JES_EtaIntercalibration_Stat50: 1.5352800793054366e-22 - syst_JES_EtaIntercalibration_Stat51: 6.542241435471485e-26 - syst_JES_EtaIntercalibration_Stat52: 9.364975427090026e-26 - syst_JES_EtaIntercalibration_Stat53: 1.5368914807737727e-22 - syst_JES_EtaIntercalibration_Stat54: 1.5347994257037238e-22 - syst_JES_EtaIntercalibration_Stat55: 1.4578007682807689e-25 - syst_JES_EtaIntercalibration_Stat56: 1.1330808091217502e-25 - syst_JES_EtaIntercalibration_Stat57: 4.7111010965067185e-22 - syst_JES_EtaIntercalibration_Stat58: 3.078679708901204e-25 - syst_JES_EtaIntercalibration_Stat59: 1.5755137344688556e-25 - syst_JES_EtaIntercalibration_Stat6: 4.756701877351575e-27 - syst_JES_EtaIntercalibration_Stat60: 3.6390073852631845e-26 - syst_JES_EtaIntercalibration_Stat61: 9.247945123107078e-26 - syst_JES_EtaIntercalibration_Stat62: 7.56820036402314e-26 - syst_JES_EtaIntercalibration_Stat63: 8.640106292748948e-27 - syst_JES_EtaIntercalibration_Stat64: 5.2116990271887344e-27 - syst_JES_EtaIntercalibration_Stat65: 5.513170151555273e-27 - syst_JES_EtaIntercalibration_Stat66: 5.513170151555273e-27 - syst_JES_EtaIntercalibration_Stat67: 6.011333026043392e-26 - syst_JES_EtaIntercalibration_Stat68: 3.03971918933312e-25 - syst_JES_EtaIntercalibration_Stat69: 7.224043812159503e-26 - syst_JES_EtaIntercalibration_Stat7: 3.5521859115198355e-27 - syst_JES_EtaIntercalibration_Stat70: 1.0977471293517467e-25 - syst_JES_EtaIntercalibration_Stat71: 1.1045759401236295e-25 - syst_JES_EtaIntercalibration_Stat72: 1.5386747625848419e-22 - syst_JES_EtaIntercalibration_Stat73: 2.7401840280353432e-21 - syst_JES_EtaIntercalibration_Stat74: 2.810965669302681e-21 - syst_JES_EtaIntercalibration_Stat75: 1.2921099024453486e-13 - syst_JES_EtaIntercalibration_Stat76: 1.5473522117518299e-22 - syst_JES_EtaIntercalibration_Stat77: 4.809274659447098e-25 - syst_JES_EtaIntercalibration_Stat78: 1.2860477246182513e-13 - syst_JES_EtaIntercalibration_Stat79: 1.279119521389566e-13 - syst_JES_EtaIntercalibration_Stat8: 7.084328249735469e-27 - syst_JES_EtaIntercalibration_Stat80: 4.741860063365087e-22 - syst_JES_EtaIntercalibration_Stat81: 2.1659471353659582e-21 - syst_JES_EtaIntercalibration_Stat82: 2.5514580112056646e-21 - syst_JES_EtaIntercalibration_Stat83: 2.9920018382347297e-25 - syst_JES_EtaIntercalibration_Stat84: 1.8643860195785633e-25 - syst_JES_EtaIntercalibration_Stat85: 3.560550624552332e-26 - syst_JES_EtaIntercalibration_Stat86: 3.216844722317196e-27 - syst_JES_EtaIntercalibration_Stat87: 3.376113434113256e-27 - syst_JES_EtaIntercalibration_Stat88: 2.7778214678953e-26 - syst_JES_EtaIntercalibration_Stat89: 9.563489151455133e-25 - syst_JES_EtaIntercalibration_Stat9: 4.0158384330049934e-27 - syst_JES_EtaIntercalibration_Stat90: 1.215933904453692e-24 - syst_JES_EtaIntercalibration_Stat91: 4.314154928836005e-25 - syst_JES_EtaIntercalibration_Stat92: 5.146165635694211e-25 - syst_JES_EtaIntercalibration_Stat93: 1.5498742321616777e-22 - syst_JES_EtaIntercalibration_Stat94: 2.546198807536442e-21 - syst_JES_EtaIntercalibration_Stat95: 2.475571038669664e-21 - syst_JES_EtaIntercalibration_Stat96: 1.2843156738082632e-13 - syst_JES_EtaIntercalibration_Stat97: 1.640098072524933e-24 - syst_JES_EtaIntercalibration_Stat98: 7.2883476007940235e-25 - syst_JES_EtaIntercalibration_Stat99: 2.0984806014531082e-11 - syst_JES_EtaIntercalibration_TotalStat_MJB: 7.262810526924132e-07 - syst_JES_Flavour_Comp: 3.968276657442119e-07 - syst_JES_Flavour_Response: 6.310520323238014e-07 - syst_JES_Gjet_Generator: 1.1747618088361572e-06 - syst_JES_Gjet_OOC: 9.858783228674823e-07 - syst_JES_Gjet_Purity: 3.145978504376659e-08 - syst_JES_Gjet_Stat1: 2.5742109470670817e-09 - syst_JES_Gjet_Stat10: 7.570511392898104e-08 - syst_JES_Gjet_Stat11: 7.391380249993907e-08 - syst_JES_Gjet_Stat12: 3.069906513234564e-08 - syst_JES_Gjet_Stat13: 3.0118390976278927e-07 - syst_JES_Gjet_Stat14: 9.582999686945627e-07 - syst_JES_Gjet_Stat15: 1.4715624918772562e-06 - syst_JES_Gjet_Stat2: 6.402873807908445e-09 - syst_JES_Gjet_Stat3: 8.378601001957308e-09 - syst_JES_Gjet_Stat4: 2.8268393569497366e-08 - syst_JES_Gjet_Stat5: 2.752117003326712e-08 - syst_JES_Gjet_Stat6: 2.2751713671721524e-08 - syst_JES_Gjet_Stat7: 2.8930236777461745e-08 - syst_JES_Gjet_Stat8: 7.997496030008393e-09 - syst_JES_Gjet_Stat9: 2.9047282144806595e-08 - syst_JES_Gjet_Veto: 1.1825073488143742e-06 - syst_JES_Gjet_dPhi: 3.7394278974196045e-08 - syst_JES_LArESZee: 1.4251238077795206e-06 - syst_JES_LArEsmear: 1.5023484948573017e-07 - syst_JES_LAr_JVT: 1.9243513192761867e-07 - syst_JES_MJB_Alpha: 3.229603806970757e-08 - syst_JES_MJB_Asym: 1.0171792909807e-06 - syst_JES_MJB_Beta: 8.128356475942722e-08 - syst_JES_MJB_Fragmentation: 2.2262369033865196e-07 - syst_JES_MJB_Stat1: 9.281067189041354e-18 - syst_JES_MJB_Stat10: 3.241905728117337e-09 - syst_JES_MJB_Stat11: 5.646775606485528e-09 - syst_JES_MJB_Stat12: 8.824921586053895e-09 - syst_JES_MJB_Stat13: 1.44862141362055e-08 - syst_JES_MJB_Stat14: 2.5603602773828535e-07 - syst_JES_MJB_Stat15: 5.288819031693181e-07 - syst_JES_MJB_Stat16: 8.006488915248681e-07 - syst_JES_MJB_Stat2: 1.5216017761087943e-11 - syst_JES_MJB_Stat3: 1.637537129861488e-11 - syst_JES_MJB_Stat4: 2.9838885284138886e-11 - syst_JES_MJB_Stat5: 4.6795225660542285e-11 - syst_JES_MJB_Stat6: 1.323100041569042e-10 - syst_JES_MJB_Stat7: 1.241274654337226e-09 - syst_JES_MJB_Stat8: 6.058112082158929e-10 - syst_JES_MJB_Stat9: 1.327626900714203e-09 - syst_JES_MJB_Threshold: 1.830549302805035e-07 - syst_JES_Pileup_MuOffset: 4.5577243225100836e-07 - syst_JES_Pileup_NPVOffset: 3.065835285856043e-07 - syst_JES_Pileup_Pt_term: 1.0022882369857486e-07 - syst_JES_Pileup_Rho_topology: 4.7303491150231184e-07 - syst_JES_PunchThrough_MC15: 1.026388975973534e-06 - syst_JES_SingleParticle_HighPt: 1.2178772629045998e-07 - syst_JES_Zjet_MC: 4.279950467003094e-07 - syst_JES_Zjet_MuScale: 5.945443023862898e-08 - syst_JES_Zjet_MuSmearID: 4.113600244007674e-09 - syst_JES_Zjet_MuSmearMS: 7.007965806851514e-08 - syst_JES_Zjet_OOC: 2.507583298716116e-07 - syst_JES_Zjet_Stat1: 6.212230839239636e-08 - syst_JES_Zjet_Stat10: 3.4084014948359595e-08 - syst_JES_Zjet_Stat11: 2.603487468761853e-08 - syst_JES_Zjet_Stat12: 4.3975744166528895e-08 - syst_JES_Zjet_Stat13: 1.02650069654141e-07 - syst_JES_Zjet_Stat2: 3.011170296678841e-10 - syst_JES_Zjet_Stat3: 1.1673155999985609e-08 - syst_JES_Zjet_Stat4: 1.862147147783977e-08 - syst_JES_Zjet_Stat5: 1.2862254341677434e-08 - syst_JES_Zjet_Stat6: 2.994802956790313e-08 - syst_JES_Zjet_Stat7: 2.405644352351361e-08 - syst_JES_Zjet_Stat8: 1.0412617670403538e-08 - syst_JES_Zjet_Stat9: 2.865967724870606e-08 - syst_JES_Zjet_Veto: 4.962473450810593e-08 - syst_JES_Zjet_dPhi: 4.783727730546545e-08 + syst_cleaning: 7.19926918e-07 + syst_lumi: 1.51900000e-06 +- stat: 5.82300000e-06 + syst_JER_CROSS_CALIB_FORWARD: 6.94700000e-24 + syst_JER_NOISE_FORWARD: 2.53700000e-22 + syst_JER_NP0: 6.02751367e-08 + syst_JER_NP1: 7.72227212e-09 + syst_JER_NP2: 6.65457082e-08 + syst_JER_NP3: 1.69917767e-08 + syst_JER_NP4: 1.31813818e-08 + syst_JER_NP5: 2.34365542e-08 + syst_JER_NP6: 1.32328254e-08 + syst_JER_NP7: 9.78400368e-10 + syst_JER_NP8: 1.74587285e-08 + syst_JES_EtaIntercalibration_Modelling: 1.00912890e-06 + syst_JES_EtaIntercalibration_NonClosure: 8.55016109e-15 + syst_JES_EtaIntercalibration_Stat0: 5.51317015e-27 + syst_JES_EtaIntercalibration_Stat1: 6.48522788e-27 + syst_JES_EtaIntercalibration_Stat10: 6.00879232e-27 + syst_JES_EtaIntercalibration_Stat100: 1.43500409e-13 + syst_JES_EtaIntercalibration_Stat101: 2.59485296e-24 + syst_JES_EtaIntercalibration_Stat102: 2.55067239e-21 + syst_JES_EtaIntercalibration_Stat103: 2.55183667e-21 + syst_JES_EtaIntercalibration_Stat104: 2.81038180e-25 + syst_JES_EtaIntercalibration_Stat105: 1.34238896e-23 + syst_JES_EtaIntercalibration_Stat106: 1.15722181e-24 + syst_JES_EtaIntercalibration_Stat107: 5.64578980e-27 + syst_JES_EtaIntercalibration_Stat108: 9.74989072e-25 + syst_JES_EtaIntercalibration_Stat109: 5.97893881e-23 + syst_JES_EtaIntercalibration_Stat11: 3.09058841e-27 + syst_JES_EtaIntercalibration_Stat110: 3.02492149e-22 + syst_JES_EtaIntercalibration_Stat111: 4.49091588e-20 + syst_JES_EtaIntercalibration_Stat112: 4.47680415e-20 + syst_JES_EtaIntercalibration_Stat113: 1.32242085e-13 + syst_JES_EtaIntercalibration_Stat114: 1.36312398e-13 + syst_JES_EtaIntercalibration_Stat115: 1.44886050e-11 + syst_JES_EtaIntercalibration_Stat116: 6.60511875e-11 + syst_JES_EtaIntercalibration_Stat117: 1.81066991e-23 + syst_JES_EtaIntercalibration_Stat118: 4.06925433e-20 + syst_JES_EtaIntercalibration_Stat119: 1.37698039e-11 + syst_JES_EtaIntercalibration_Stat12: 1.75009049e-26 + syst_JES_EtaIntercalibration_Stat120: 1.14720587e-10 + syst_JES_EtaIntercalibration_Stat121: 3.06277217e-23 + syst_JES_EtaIntercalibration_Stat122: 3.08110786e-20 + syst_JES_EtaIntercalibration_Stat123: 8.00290360e-21 + syst_JES_EtaIntercalibration_Stat124: 2.51951330e-20 + syst_JES_EtaIntercalibration_Stat125: 3.44655288e-23 + syst_JES_EtaIntercalibration_Stat126: 2.38531558e-23 + syst_JES_EtaIntercalibration_Stat127: 1.26093299e-26 + syst_JES_EtaIntercalibration_Stat128: 2.10168929e-22 + syst_JES_EtaIntercalibration_Stat129: 1.40989174e-17 + syst_JES_EtaIntercalibration_Stat13: 3.91501996e-27 + syst_JES_EtaIntercalibration_Stat130: 5.28711708e-17 + syst_JES_EtaIntercalibration_Stat131: 4.26245493e-20 + syst_JES_EtaIntercalibration_Stat132: 7.92239919e-14 + syst_JES_EtaIntercalibration_Stat133: 1.13399952e-10 + syst_JES_EtaIntercalibration_Stat134: 3.90814904e-21 + syst_JES_EtaIntercalibration_Stat135: 1.40285590e-21 + syst_JES_EtaIntercalibration_Stat136: 6.50960544e-11 + syst_JES_EtaIntercalibration_Stat137: 1.44002546e-12 + syst_JES_EtaIntercalibration_Stat138: 3.58187326e-10 + syst_JES_EtaIntercalibration_Stat139: 4.61071925e-11 + syst_JES_EtaIntercalibration_Stat14: 3.74688544e-27 + syst_JES_EtaIntercalibration_Stat140: 2.44049670e-10 + syst_JES_EtaIntercalibration_Stat141: 3.67019496e-11 + syst_JES_EtaIntercalibration_Stat142: 6.41892096e-16 + syst_JES_EtaIntercalibration_Stat143: 9.54704932e-21 + syst_JES_EtaIntercalibration_Stat144: 1.74071400e-20 + syst_JES_EtaIntercalibration_Stat145: 2.07587017e-22 + syst_JES_EtaIntercalibration_Stat146: 5.40861043e-22 + syst_JES_EtaIntercalibration_Stat147: 1.37086892e-17 + syst_JES_EtaIntercalibration_Stat148: 5.28530437e-17 + syst_JES_EtaIntercalibration_Stat149: 3.39646503e-20 + syst_JES_EtaIntercalibration_Stat15: 6.53762134e-27 + syst_JES_EtaIntercalibration_Stat150: 7.95963826e-14 + syst_JES_EtaIntercalibration_Stat151: 2.10184365e-10 + syst_JES_EtaIntercalibration_Stat152: 4.66181475e-11 + syst_JES_EtaIntercalibration_Stat153: 3.13615602e-21 + syst_JES_EtaIntercalibration_Stat154: 2.06555433e-11 + syst_JES_EtaIntercalibration_Stat155: 1.44951988e-12 + syst_JES_EtaIntercalibration_Stat156: 3.98885798e-10 + syst_JES_EtaIntercalibration_Stat157: 4.08368754e-20 + syst_JES_EtaIntercalibration_Stat158: 6.55828651e-11 + syst_JES_EtaIntercalibration_Stat159: 2.98949928e-11 + syst_JES_EtaIntercalibration_Stat16: 3.63664914e-27 + syst_JES_EtaIntercalibration_Stat160: 2.50721428e-21 + syst_JES_EtaIntercalibration_Stat161: 7.68258291e-21 + syst_JES_EtaIntercalibration_Stat162: 4.75490164e-21 + syst_JES_EtaIntercalibration_Stat163: 2.68084494e-22 + syst_JES_EtaIntercalibration_Stat164: 3.78699627e-22 + syst_JES_EtaIntercalibration_Stat165: 1.74767031e-17 + syst_JES_EtaIntercalibration_Stat166: 1.54557148e-17 + syst_JES_EtaIntercalibration_Stat167: 2.16764665e-14 + syst_JES_EtaIntercalibration_Stat168: 1.72287770e-12 + syst_JES_EtaIntercalibration_Stat169: 2.93568734e-10 + syst_JES_EtaIntercalibration_Stat17: 5.58403353e-27 + syst_JES_EtaIntercalibration_Stat170: 2.11829814e-10 + syst_JES_EtaIntercalibration_Stat171: 9.09932950e-11 + syst_JES_EtaIntercalibration_Stat172: 9.49510731e-12 + syst_JES_EtaIntercalibration_Stat173: 1.36832014e-10 + syst_JES_EtaIntercalibration_Stat174: 2.72105183e-10 + syst_JES_EtaIntercalibration_Stat175: 7.21919059e-10 + syst_JES_EtaIntercalibration_Stat176: 6.42864919e-10 + syst_JES_EtaIntercalibration_Stat177: 4.33452544e-11 + syst_JES_EtaIntercalibration_Stat178: 2.81545113e-10 + syst_JES_EtaIntercalibration_Stat179: 1.74965488e-17 + syst_JES_EtaIntercalibration_Stat18: 5.51317015e-27 + syst_JES_EtaIntercalibration_Stat180: 2.95668219e-20 + syst_JES_EtaIntercalibration_Stat181: 6.72901545e-21 + syst_JES_EtaIntercalibration_Stat182: 2.89723773e-15 + syst_JES_EtaIntercalibration_Stat183: 1.41075538e-13 + syst_JES_EtaIntercalibration_Stat184: 4.48604027e-12 + syst_JES_EtaIntercalibration_Stat185: 4.42580636e-10 + syst_JES_EtaIntercalibration_Stat186: 1.81479395e-09 + syst_JES_EtaIntercalibration_Stat187: 2.04915464e-09 + syst_JES_EtaIntercalibration_Stat188: 2.64121222e-09 + syst_JES_EtaIntercalibration_Stat189: 1.80719313e-09 + syst_JES_EtaIntercalibration_Stat19: 1.11938877e-26 + syst_JES_EtaIntercalibration_Stat190: 1.47861796e-09 + syst_JES_EtaIntercalibration_Stat191: 3.49445629e-09 + syst_JES_EtaIntercalibration_Stat192: 5.07088483e-09 + syst_JES_EtaIntercalibration_Stat193: 1.96863271e-09 + syst_JES_EtaIntercalibration_Stat194: 3.29909970e-10 + syst_JES_EtaIntercalibration_Stat195: 2.39936196e-10 + syst_JES_EtaIntercalibration_Stat196: 1.31614326e-12 + syst_JES_EtaIntercalibration_Stat197: 2.27263416e-17 + syst_JES_EtaIntercalibration_Stat198: 3.34506911e-13 + syst_JES_EtaIntercalibration_Stat199: 8.21523689e-12 + syst_JES_EtaIntercalibration_Stat2: 3.24098089e-27 + syst_JES_EtaIntercalibration_Stat20: 5.51317015e-27 + syst_JES_EtaIntercalibration_Stat200: 8.97363487e-10 + syst_JES_EtaIntercalibration_Stat201: 3.47597677e-09 + syst_JES_EtaIntercalibration_Stat202: 8.23671274e-09 + syst_JES_EtaIntercalibration_Stat203: 6.94704599e-09 + syst_JES_EtaIntercalibration_Stat204: 2.87518034e-09 + syst_JES_EtaIntercalibration_Stat205: 2.56838704e-09 + syst_JES_EtaIntercalibration_Stat206: 5.04800971e-09 + syst_JES_EtaIntercalibration_Stat207: 7.01754364e-09 + syst_JES_EtaIntercalibration_Stat208: 3.68260108e-09 + syst_JES_EtaIntercalibration_Stat209: 1.21469448e-09 + syst_JES_EtaIntercalibration_Stat21: 5.51317015e-27 + syst_JES_EtaIntercalibration_Stat210: 2.80841284e-10 + syst_JES_EtaIntercalibration_Stat211: 1.33888523e-10 + syst_JES_EtaIntercalibration_Stat212: 8.19594048e-12 + syst_JES_EtaIntercalibration_Stat213: 9.32039703e-10 + syst_JES_EtaIntercalibration_Stat214: 3.47185413e-09 + syst_JES_EtaIntercalibration_Stat215: 9.02523994e-09 + syst_JES_EtaIntercalibration_Stat216: 7.21503325e-09 + syst_JES_EtaIntercalibration_Stat217: 2.62118180e-09 + syst_JES_EtaIntercalibration_Stat218: 2.94289721e-09 + syst_JES_EtaIntercalibration_Stat219: 5.68512276e-09 + syst_JES_EtaIntercalibration_Stat22: 5.51317015e-27 + syst_JES_EtaIntercalibration_Stat220: 7.16582221e-09 + syst_JES_EtaIntercalibration_Stat221: 2.96147126e-09 + syst_JES_EtaIntercalibration_Stat222: 1.31508763e-09 + syst_JES_EtaIntercalibration_Stat223: 2.63445722e-10 + syst_JES_EtaIntercalibration_Stat224: 6.80147225e-11 + syst_JES_EtaIntercalibration_Stat225: 1.77833145e-09 + syst_JES_EtaIntercalibration_Stat226: 9.86276456e-09 + syst_JES_EtaIntercalibration_Stat227: 2.23961219e-08 + syst_JES_EtaIntercalibration_Stat228: 1.52291923e-08 + syst_JES_EtaIntercalibration_Stat229: 6.70562808e-09 + syst_JES_EtaIntercalibration_Stat23: 8.13759154e-27 + syst_JES_EtaIntercalibration_Stat230: 6.43816457e-09 + syst_JES_EtaIntercalibration_Stat231: 1.81588133e-08 + syst_JES_EtaIntercalibration_Stat232: 2.46057854e-08 + syst_JES_EtaIntercalibration_Stat233: 9.85326398e-09 + syst_JES_EtaIntercalibration_Stat234: 2.88525298e-09 + syst_JES_EtaIntercalibration_Stat235: 3.99584121e-10 + syst_JES_EtaIntercalibration_Stat236: 8.29676657e-10 + syst_JES_EtaIntercalibration_Stat237: 1.34347328e-09 + syst_JES_EtaIntercalibration_Stat238: 4.96271707e-09 + syst_JES_EtaIntercalibration_Stat239: 2.53660680e-09 + syst_JES_EtaIntercalibration_Stat24: 4.31657002e-26 + syst_JES_EtaIntercalibration_Stat240: 1.68874243e-09 + syst_JES_EtaIntercalibration_Stat241: 1.53293609e-09 + syst_JES_EtaIntercalibration_Stat242: 1.72693405e-09 + syst_JES_EtaIntercalibration_Stat243: 3.75082027e-09 + syst_JES_EtaIntercalibration_Stat244: 1.63852006e-09 + syst_JES_EtaIntercalibration_Stat245: 5.46149309e-10 + syst_JES_EtaIntercalibration_Stat25: 3.90779436e-26 + syst_JES_EtaIntercalibration_Stat26: 5.97854119e-27 + syst_JES_EtaIntercalibration_Stat27: 3.10284790e-26 + syst_JES_EtaIntercalibration_Stat28: 1.77399510e-26 + syst_JES_EtaIntercalibration_Stat29: 4.13252721e-26 + syst_JES_EtaIntercalibration_Stat3: 2.57488660e-27 + syst_JES_EtaIntercalibration_Stat30: 6.43435861e-26 + syst_JES_EtaIntercalibration_Stat31: 1.53486547e-22 + syst_JES_EtaIntercalibration_Stat32: 1.58314005e-22 + syst_JES_EtaIntercalibration_Stat33: 7.00705949e-26 + syst_JES_EtaIntercalibration_Stat34: 2.20204815e-25 + syst_JES_EtaIntercalibration_Stat35: 1.89832769e-11 + syst_JES_EtaIntercalibration_Stat36: 1.22298917e-25 + syst_JES_EtaIntercalibration_Stat37: 6.09754017e-25 + syst_JES_EtaIntercalibration_Stat38: 6.83326092e-26 + syst_JES_EtaIntercalibration_Stat39: 6.70736675e-26 + syst_JES_EtaIntercalibration_Stat4: 6.48522788e-27 + syst_JES_EtaIntercalibration_Stat40: 2.41936190e-26 + syst_JES_EtaIntercalibration_Stat41: 8.34189445e-27 + syst_JES_EtaIntercalibration_Stat42: 3.57322082e-27 + syst_JES_EtaIntercalibration_Stat43: 5.51317015e-27 + syst_JES_EtaIntercalibration_Stat44: 5.51317015e-27 + syst_JES_EtaIntercalibration_Stat45: 3.24098089e-27 + syst_JES_EtaIntercalibration_Stat46: 4.20090597e-26 + syst_JES_EtaIntercalibration_Stat47: 1.26422228e-25 + syst_JES_EtaIntercalibration_Stat48: 5.70007912e-26 + syst_JES_EtaIntercalibration_Stat49: 7.11459843e-26 + syst_JES_EtaIntercalibration_Stat5: 3.37611343e-27 + syst_JES_EtaIntercalibration_Stat50: 1.53528008e-22 + syst_JES_EtaIntercalibration_Stat51: 6.54224144e-26 + syst_JES_EtaIntercalibration_Stat52: 9.36497543e-26 + syst_JES_EtaIntercalibration_Stat53: 1.53689148e-22 + syst_JES_EtaIntercalibration_Stat54: 1.53479943e-22 + syst_JES_EtaIntercalibration_Stat55: 1.45780077e-25 + syst_JES_EtaIntercalibration_Stat56: 1.13308081e-25 + syst_JES_EtaIntercalibration_Stat57: 4.71110110e-22 + syst_JES_EtaIntercalibration_Stat58: 3.07867971e-25 + syst_JES_EtaIntercalibration_Stat59: 1.57551373e-25 + syst_JES_EtaIntercalibration_Stat6: 4.75670188e-27 + syst_JES_EtaIntercalibration_Stat60: 3.63900739e-26 + syst_JES_EtaIntercalibration_Stat61: 9.24794512e-26 + syst_JES_EtaIntercalibration_Stat62: 7.56820036e-26 + syst_JES_EtaIntercalibration_Stat63: 8.64010629e-27 + syst_JES_EtaIntercalibration_Stat64: 5.21169903e-27 + syst_JES_EtaIntercalibration_Stat65: 5.51317015e-27 + syst_JES_EtaIntercalibration_Stat66: 5.51317015e-27 + syst_JES_EtaIntercalibration_Stat67: 6.01133303e-26 + syst_JES_EtaIntercalibration_Stat68: 3.03971919e-25 + syst_JES_EtaIntercalibration_Stat69: 7.22404381e-26 + syst_JES_EtaIntercalibration_Stat7: 3.55218591e-27 + syst_JES_EtaIntercalibration_Stat70: 1.09774713e-25 + syst_JES_EtaIntercalibration_Stat71: 1.10457594e-25 + syst_JES_EtaIntercalibration_Stat72: 1.53867476e-22 + syst_JES_EtaIntercalibration_Stat73: 2.74018403e-21 + syst_JES_EtaIntercalibration_Stat74: 2.81096567e-21 + syst_JES_EtaIntercalibration_Stat75: 1.29210990e-13 + syst_JES_EtaIntercalibration_Stat76: 1.54735221e-22 + syst_JES_EtaIntercalibration_Stat77: 4.80927466e-25 + syst_JES_EtaIntercalibration_Stat78: 1.28604772e-13 + syst_JES_EtaIntercalibration_Stat79: 1.27911952e-13 + syst_JES_EtaIntercalibration_Stat8: 7.08432825e-27 + syst_JES_EtaIntercalibration_Stat80: 4.74186006e-22 + syst_JES_EtaIntercalibration_Stat81: 2.16594714e-21 + syst_JES_EtaIntercalibration_Stat82: 2.55145801e-21 + syst_JES_EtaIntercalibration_Stat83: 2.99200184e-25 + syst_JES_EtaIntercalibration_Stat84: 1.86438602e-25 + syst_JES_EtaIntercalibration_Stat85: 3.56055062e-26 + syst_JES_EtaIntercalibration_Stat86: 3.21684472e-27 + syst_JES_EtaIntercalibration_Stat87: 3.37611343e-27 + syst_JES_EtaIntercalibration_Stat88: 2.77782147e-26 + syst_JES_EtaIntercalibration_Stat89: 9.56348915e-25 + syst_JES_EtaIntercalibration_Stat9: 4.01583843e-27 + syst_JES_EtaIntercalibration_Stat90: 1.21593390e-24 + syst_JES_EtaIntercalibration_Stat91: 4.31415493e-25 + syst_JES_EtaIntercalibration_Stat92: 5.14616564e-25 + syst_JES_EtaIntercalibration_Stat93: 1.54987423e-22 + syst_JES_EtaIntercalibration_Stat94: 2.54619881e-21 + syst_JES_EtaIntercalibration_Stat95: 2.47557104e-21 + syst_JES_EtaIntercalibration_Stat96: 1.28431567e-13 + syst_JES_EtaIntercalibration_Stat97: 1.64009807e-24 + syst_JES_EtaIntercalibration_Stat98: 7.28834760e-25 + syst_JES_EtaIntercalibration_Stat99: 2.09848060e-11 + syst_JES_EtaIntercalibration_TotalStat_MJB: 7.26281053e-07 + syst_JES_Flavour_Comp: 3.96827666e-07 + syst_JES_Flavour_Response: 6.31052032e-07 + syst_JES_Gjet_Generator: 1.17476181e-06 + syst_JES_Gjet_OOC: 9.85878323e-07 + syst_JES_Gjet_Purity: 3.14597850e-08 + syst_JES_Gjet_Stat1: 2.57421095e-09 + syst_JES_Gjet_Stat10: 7.57051139e-08 + syst_JES_Gjet_Stat11: 7.39138025e-08 + syst_JES_Gjet_Stat12: 3.06990651e-08 + syst_JES_Gjet_Stat13: 3.01183910e-07 + syst_JES_Gjet_Stat14: 9.58299969e-07 + syst_JES_Gjet_Stat15: 1.47156249e-06 + syst_JES_Gjet_Stat2: 6.40287381e-09 + syst_JES_Gjet_Stat3: 8.37860100e-09 + syst_JES_Gjet_Stat4: 2.82683936e-08 + syst_JES_Gjet_Stat5: 2.75211700e-08 + syst_JES_Gjet_Stat6: 2.27517137e-08 + syst_JES_Gjet_Stat7: 2.89302368e-08 + syst_JES_Gjet_Stat8: 7.99749603e-09 + syst_JES_Gjet_Stat9: 2.90472821e-08 + syst_JES_Gjet_Veto: 1.18250735e-06 + syst_JES_Gjet_dPhi: 3.73942790e-08 + syst_JES_LArESZee: 1.42512381e-06 + syst_JES_LArEsmear: 1.50234849e-07 + syst_JES_LAr_JVT: 1.92435132e-07 + syst_JES_MJB_Alpha: 3.22960381e-08 + syst_JES_MJB_Asym: 1.01717929e-06 + syst_JES_MJB_Beta: 8.12835648e-08 + syst_JES_MJB_Fragmentation: 2.22623690e-07 + syst_JES_MJB_Stat1: 9.28106719e-18 + syst_JES_MJB_Stat10: 3.24190573e-09 + syst_JES_MJB_Stat11: 5.64677561e-09 + syst_JES_MJB_Stat12: 8.82492159e-09 + syst_JES_MJB_Stat13: 1.44862141e-08 + syst_JES_MJB_Stat14: 2.56036028e-07 + syst_JES_MJB_Stat15: 5.28881903e-07 + syst_JES_MJB_Stat16: 8.00648892e-07 + syst_JES_MJB_Stat2: 1.52160178e-11 + syst_JES_MJB_Stat3: 1.63753713e-11 + syst_JES_MJB_Stat4: 2.98388853e-11 + syst_JES_MJB_Stat5: 4.67952257e-11 + syst_JES_MJB_Stat6: 1.32310004e-10 + syst_JES_MJB_Stat7: 1.24127465e-09 + syst_JES_MJB_Stat8: 6.05811208e-10 + syst_JES_MJB_Stat9: 1.32762690e-09 + syst_JES_MJB_Threshold: 1.83054930e-07 + syst_JES_Pileup_MuOffset: 4.55772432e-07 + syst_JES_Pileup_NPVOffset: 3.06583529e-07 + syst_JES_Pileup_Pt_term: 1.00228824e-07 + syst_JES_Pileup_Rho_topology: 4.73034912e-07 + syst_JES_PunchThrough_MC15: 1.02638898e-06 + syst_JES_SingleParticle_HighPt: 1.21787726e-07 + syst_JES_Zjet_MC: 4.27995047e-07 + syst_JES_Zjet_MuScale: 5.94544302e-08 + syst_JES_Zjet_MuSmearID: 4.11360024e-09 + syst_JES_Zjet_MuSmearMS: 7.00796581e-08 + syst_JES_Zjet_OOC: 2.50758330e-07 + syst_JES_Zjet_Stat1: 6.21223084e-08 + syst_JES_Zjet_Stat10: 3.40840149e-08 + syst_JES_Zjet_Stat11: 2.60348747e-08 + syst_JES_Zjet_Stat12: 4.39757442e-08 + syst_JES_Zjet_Stat13: 1.02650070e-07 + syst_JES_Zjet_Stat2: 3.01117030e-10 + syst_JES_Zjet_Stat3: 1.16731560e-08 + syst_JES_Zjet_Stat4: 1.86214715e-08 + syst_JES_Zjet_Stat5: 1.28622543e-08 + syst_JES_Zjet_Stat6: 2.99480296e-08 + syst_JES_Zjet_Stat7: 2.40564435e-08 + syst_JES_Zjet_Stat8: 1.04126177e-08 + syst_JES_Zjet_Stat9: 2.86596772e-08 + syst_JES_Zjet_Veto: 4.96247345e-08 + syst_JES_Zjet_dPhi: 4.78372773e-08 syst_PRW: 0.0 syst_Unfolding_bias: 0.0 - syst_cleaning: 2.1312885187135035e-07 - syst_lumi: 4.707e-07 -- stat: 1.078e-06 + syst_cleaning: 2.13128852e-07 + syst_lumi: 4.70700000e-07 +- stat: 1.07800000e-06 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 1.2255230230395511e-08 - syst_JER_NP1: 1.0264999111056952e-09 - syst_JER_NP2: 1.2912138426689826e-08 - syst_JER_NP3: 5.421904554674492e-09 - syst_JER_NP4: 3.7100731798712538e-09 - syst_JER_NP5: 5.667542324500101e-09 - syst_JER_NP6: 2.8405616962143245e-09 - syst_JER_NP7: 5.353502288222169e-09 - syst_JER_NP8: 5.592259203577746e-09 - syst_JES_EtaIntercalibration_Modelling: 1.6638680837133693e-07 + syst_JER_NP0: 1.22552302e-08 + syst_JER_NP1: 1.02649991e-09 + syst_JER_NP2: 1.29121384e-08 + syst_JER_NP3: 5.42190455e-09 + syst_JER_NP4: 3.71007318e-09 + syst_JER_NP5: 5.66754232e-09 + syst_JER_NP6: 2.84056170e-09 + syst_JER_NP7: 5.35350229e-09 + syst_JER_NP8: 5.59225920e-09 + syst_JES_EtaIntercalibration_Modelling: 1.66386808e-07 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 @@ -19917,12 +19917,12 @@ bins: syst_JES_EtaIntercalibration_Stat113: 0.0 syst_JES_EtaIntercalibration_Stat114: 0.0 syst_JES_EtaIntercalibration_Stat115: 0.0 - syst_JES_EtaIntercalibration_Stat116: 2.7955300034161675e-11 + syst_JES_EtaIntercalibration_Stat116: 2.79553000e-11 syst_JES_EtaIntercalibration_Stat117: 0.0 syst_JES_EtaIntercalibration_Stat118: 0.0 syst_JES_EtaIntercalibration_Stat119: 0.0 syst_JES_EtaIntercalibration_Stat12: 0.0 - syst_JES_EtaIntercalibration_Stat120: 2.7955300034161675e-11 + syst_JES_EtaIntercalibration_Stat120: 2.79553000e-11 syst_JES_EtaIntercalibration_Stat121: 0.0 syst_JES_EtaIntercalibration_Stat122: 0.0 syst_JES_EtaIntercalibration_Stat123: 0.0 @@ -19936,16 +19936,16 @@ bins: syst_JES_EtaIntercalibration_Stat130: 0.0 syst_JES_EtaIntercalibration_Stat131: 0.0 syst_JES_EtaIntercalibration_Stat132: 0.0 - syst_JES_EtaIntercalibration_Stat133: 7.336967220861764e-12 + syst_JES_EtaIntercalibration_Stat133: 7.33696722e-12 syst_JES_EtaIntercalibration_Stat134: 0.0 syst_JES_EtaIntercalibration_Stat135: 0.0 - syst_JES_EtaIntercalibration_Stat136: 2.9079332983237425e-11 - syst_JES_EtaIntercalibration_Stat137: 4.876589048710174e-12 + syst_JES_EtaIntercalibration_Stat136: 2.90793330e-11 + syst_JES_EtaIntercalibration_Stat137: 4.87658905e-12 syst_JES_EtaIntercalibration_Stat138: 0.0 - syst_JES_EtaIntercalibration_Stat139: 2.6803486247128376e-11 + syst_JES_EtaIntercalibration_Stat139: 2.68034862e-11 syst_JES_EtaIntercalibration_Stat14: 0.0 - syst_JES_EtaIntercalibration_Stat140: 7.516234479445143e-12 - syst_JES_EtaIntercalibration_Stat141: 5.9495945239990926e-12 + syst_JES_EtaIntercalibration_Stat140: 7.51623448e-12 + syst_JES_EtaIntercalibration_Stat141: 5.94959452e-12 syst_JES_EtaIntercalibration_Stat142: 0.0 syst_JES_EtaIntercalibration_Stat143: 0.0 syst_JES_EtaIntercalibration_Stat144: 0.0 @@ -19956,15 +19956,15 @@ bins: syst_JES_EtaIntercalibration_Stat149: 0.0 syst_JES_EtaIntercalibration_Stat15: 0.0 syst_JES_EtaIntercalibration_Stat150: 0.0 - syst_JES_EtaIntercalibration_Stat151: 7.948381155933578e-12 + syst_JES_EtaIntercalibration_Stat151: 7.94838116e-12 syst_JES_EtaIntercalibration_Stat152: 0.0 syst_JES_EtaIntercalibration_Stat153: 0.0 - syst_JES_EtaIntercalibration_Stat154: 3.3660675394293558e-12 - syst_JES_EtaIntercalibration_Stat155: 4.8757230233063896e-12 - syst_JES_EtaIntercalibration_Stat156: 3.7386316681374215e-11 + syst_JES_EtaIntercalibration_Stat154: 3.36606754e-12 + syst_JES_EtaIntercalibration_Stat155: 4.87572302e-12 + syst_JES_EtaIntercalibration_Stat156: 3.73863167e-11 syst_JES_EtaIntercalibration_Stat157: 0.0 - syst_JES_EtaIntercalibration_Stat158: 1.0656147146131195e-11 - syst_JES_EtaIntercalibration_Stat159: 4.846278159577718e-12 + syst_JES_EtaIntercalibration_Stat158: 1.06561471e-11 + syst_JES_EtaIntercalibration_Stat159: 4.84627816e-12 syst_JES_EtaIntercalibration_Stat16: 0.0 syst_JES_EtaIntercalibration_Stat160: 0.0 syst_JES_EtaIntercalibration_Stat161: 0.0 @@ -19975,17 +19975,17 @@ bins: syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 syst_JES_EtaIntercalibration_Stat168: 0.0 - syst_JES_EtaIntercalibration_Stat169: 8.062696509233124e-12 + syst_JES_EtaIntercalibration_Stat169: 8.06269651e-12 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 3.437687840322329e-11 - syst_JES_EtaIntercalibration_Stat171: 1.4748412626448992e-11 + syst_JES_EtaIntercalibration_Stat170: 3.43768784e-11 + syst_JES_EtaIntercalibration_Stat171: 1.47484126e-11 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 - syst_JES_EtaIntercalibration_Stat174: 3.31575146346948e-11 + syst_JES_EtaIntercalibration_Stat174: 3.31575146e-11 syst_JES_EtaIntercalibration_Stat175: 0.0 - syst_JES_EtaIntercalibration_Stat176: 1.283449648408538e-11 - syst_JES_EtaIntercalibration_Stat177: 6.06997205512513e-12 - syst_JES_EtaIntercalibration_Stat178: 5.3468408429651245e-12 + syst_JES_EtaIntercalibration_Stat176: 1.28344965e-11 + syst_JES_EtaIntercalibration_Stat177: 6.06997206e-12 + syst_JES_EtaIntercalibration_Stat178: 5.34684084e-12 syst_JES_EtaIntercalibration_Stat179: 0.0 syst_JES_EtaIntercalibration_Stat18: 0.0 syst_JES_EtaIntercalibration_Stat180: 0.0 @@ -19993,74 +19993,74 @@ bins: syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 syst_JES_EtaIntercalibration_Stat184: 0.0 - syst_JES_EtaIntercalibration_Stat185: 1.1240143715718228e-11 - syst_JES_EtaIntercalibration_Stat186: 6.534606950689536e-11 - syst_JES_EtaIntercalibration_Stat187: 2.7108574289327723e-10 - syst_JES_EtaIntercalibration_Stat188: 2.2623370107037545e-10 - syst_JES_EtaIntercalibration_Stat189: 4.710153301114518e-11 + syst_JES_EtaIntercalibration_Stat185: 1.12401437e-11 + syst_JES_EtaIntercalibration_Stat186: 6.53460695e-11 + syst_JES_EtaIntercalibration_Stat187: 2.71085743e-10 + syst_JES_EtaIntercalibration_Stat188: 2.26233701e-10 + syst_JES_EtaIntercalibration_Stat189: 4.71015330e-11 syst_JES_EtaIntercalibration_Stat19: 0.0 - syst_JES_EtaIntercalibration_Stat190: 7.818906365342918e-11 - syst_JES_EtaIntercalibration_Stat191: 2.0968215827771326e-10 - syst_JES_EtaIntercalibration_Stat192: 2.543516610914896e-10 + syst_JES_EtaIntercalibration_Stat190: 7.81890637e-11 + syst_JES_EtaIntercalibration_Stat191: 2.09682158e-10 + syst_JES_EtaIntercalibration_Stat192: 2.54351661e-10 syst_JES_EtaIntercalibration_Stat193: 0.0 - syst_JES_EtaIntercalibration_Stat194: 1.0718520946473911e-10 - syst_JES_EtaIntercalibration_Stat195: 6.3133251935885576e-12 + syst_JES_EtaIntercalibration_Stat194: 1.07185209e-10 + syst_JES_EtaIntercalibration_Stat195: 6.31332519e-12 syst_JES_EtaIntercalibration_Stat196: 0.0 syst_JES_EtaIntercalibration_Stat197: 0.0 syst_JES_EtaIntercalibration_Stat198: 0.0 syst_JES_EtaIntercalibration_Stat199: 0.0 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 1.3817110072298042e-11 - syst_JES_EtaIntercalibration_Stat201: 6.715933680993283e-10 - syst_JES_EtaIntercalibration_Stat202: 6.731968731359348e-10 - syst_JES_EtaIntercalibration_Stat203: 4.886067411528417e-10 - syst_JES_EtaIntercalibration_Stat204: 8.611333738161585e-11 - syst_JES_EtaIntercalibration_Stat205: 1.5351026936332305e-10 - syst_JES_EtaIntercalibration_Stat206: 1.1416746241815133e-09 - syst_JES_EtaIntercalibration_Stat207: 6.028618498462148e-10 - syst_JES_EtaIntercalibration_Stat208: 2.816203650306561e-10 - syst_JES_EtaIntercalibration_Stat209: 1.0842638055381173e-11 + syst_JES_EtaIntercalibration_Stat200: 1.38171101e-11 + syst_JES_EtaIntercalibration_Stat201: 6.71593368e-10 + syst_JES_EtaIntercalibration_Stat202: 6.73196873e-10 + syst_JES_EtaIntercalibration_Stat203: 4.88606741e-10 + syst_JES_EtaIntercalibration_Stat204: 8.61133374e-11 + syst_JES_EtaIntercalibration_Stat205: 1.53510269e-10 + syst_JES_EtaIntercalibration_Stat206: 1.14167462e-09 + syst_JES_EtaIntercalibration_Stat207: 6.02861850e-10 + syst_JES_EtaIntercalibration_Stat208: 2.81620365e-10 + syst_JES_EtaIntercalibration_Stat209: 1.08426381e-11 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 7.520564606464064e-12 - syst_JES_EtaIntercalibration_Stat211: 5.345108792157555e-12 + syst_JES_EtaIntercalibration_Stat210: 7.52056461e-12 + syst_JES_EtaIntercalibration_Stat211: 5.34510879e-12 syst_JES_EtaIntercalibration_Stat212: 0.0 - syst_JES_EtaIntercalibration_Stat213: 1.3850921296072692e-11 - syst_JES_EtaIntercalibration_Stat214: 6.774688967583677e-10 - syst_JES_EtaIntercalibration_Stat215: 8.583333967637516e-10 - syst_JES_EtaIntercalibration_Stat216: 8.508302357109789e-10 - syst_JES_EtaIntercalibration_Stat217: 8.802635216229284e-11 - syst_JES_EtaIntercalibration_Stat218: 1.877731077657288e-10 - syst_JES_EtaIntercalibration_Stat219: 1.2219266549183712e-09 + syst_JES_EtaIntercalibration_Stat213: 1.38509213e-11 + syst_JES_EtaIntercalibration_Stat214: 6.77468897e-10 + syst_JES_EtaIntercalibration_Stat215: 8.58333397e-10 + syst_JES_EtaIntercalibration_Stat216: 8.50830236e-10 + syst_JES_EtaIntercalibration_Stat217: 8.80263522e-11 + syst_JES_EtaIntercalibration_Stat218: 1.87773108e-10 + syst_JES_EtaIntercalibration_Stat219: 1.22192665e-09 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 7.387078651266684e-10 - syst_JES_EtaIntercalibration_Stat221: 2.24290228944553e-10 - syst_JES_EtaIntercalibration_Stat222: 9.997297240129454e-11 - syst_JES_EtaIntercalibration_Stat223: 7.525760758886772e-12 - syst_JES_EtaIntercalibration_Stat224: 6.686582142619651e-12 - syst_JES_EtaIntercalibration_Stat225: 5.453747518908443e-10 - syst_JES_EtaIntercalibration_Stat226: 1.1631901478262269e-09 - syst_JES_EtaIntercalibration_Stat227: 3.766369472051301e-09 - syst_JES_EtaIntercalibration_Stat228: 1.881766390921041e-09 - syst_JES_EtaIntercalibration_Stat229: 8.354329820518219e-10 + syst_JES_EtaIntercalibration_Stat220: 7.38707865e-10 + syst_JES_EtaIntercalibration_Stat221: 2.24290229e-10 + syst_JES_EtaIntercalibration_Stat222: 9.99729724e-11 + syst_JES_EtaIntercalibration_Stat223: 7.52576076e-12 + syst_JES_EtaIntercalibration_Stat224: 6.68658214e-12 + syst_JES_EtaIntercalibration_Stat225: 5.45374752e-10 + syst_JES_EtaIntercalibration_Stat226: 1.16319015e-09 + syst_JES_EtaIntercalibration_Stat227: 3.76636947e-09 + syst_JES_EtaIntercalibration_Stat228: 1.88176639e-09 + syst_JES_EtaIntercalibration_Stat229: 8.35432982e-10 syst_JES_EtaIntercalibration_Stat23: 0.0 - syst_JES_EtaIntercalibration_Stat230: 9.957396283667734e-10 - syst_JES_EtaIntercalibration_Stat231: 3.1474476564352902e-09 - syst_JES_EtaIntercalibration_Stat232: 3.531400757135899e-09 - syst_JES_EtaIntercalibration_Stat233: 1.5816048811254977e-09 - syst_JES_EtaIntercalibration_Stat234: 2.296107739196922e-10 - syst_JES_EtaIntercalibration_Stat235: 3.914434825105663e-12 - syst_JES_EtaIntercalibration_Stat236: 1.222575163333527e-11 - syst_JES_EtaIntercalibration_Stat237: 4.926818522129671e-11 - syst_JES_EtaIntercalibration_Stat238: 4.689876837402022e-10 - syst_JES_EtaIntercalibration_Stat239: 2.2120949052877457e-10 + syst_JES_EtaIntercalibration_Stat230: 9.95739628e-10 + syst_JES_EtaIntercalibration_Stat231: 3.14744766e-09 + syst_JES_EtaIntercalibration_Stat232: 3.53140076e-09 + syst_JES_EtaIntercalibration_Stat233: 1.58160488e-09 + syst_JES_EtaIntercalibration_Stat234: 2.29610774e-10 + syst_JES_EtaIntercalibration_Stat235: 3.91443483e-12 + syst_JES_EtaIntercalibration_Stat236: 1.22257516e-11 + syst_JES_EtaIntercalibration_Stat237: 4.92681852e-11 + syst_JES_EtaIntercalibration_Stat238: 4.68987684e-10 + syst_JES_EtaIntercalibration_Stat239: 2.21209491e-10 syst_JES_EtaIntercalibration_Stat24: 0.0 - syst_JES_EtaIntercalibration_Stat240: 4.547175167068011e-11 - syst_JES_EtaIntercalibration_Stat241: 7.059367677065702e-11 - syst_JES_EtaIntercalibration_Stat242: 1.7248299068313953e-10 - syst_JES_EtaIntercalibration_Stat243: 2.4081581592578175e-10 - syst_JES_EtaIntercalibration_Stat244: 1.17649551104116e-10 - syst_JES_EtaIntercalibration_Stat245: 8.246293894835424e-12 + syst_JES_EtaIntercalibration_Stat240: 4.54717517e-11 + syst_JES_EtaIntercalibration_Stat241: 7.05936768e-11 + syst_JES_EtaIntercalibration_Stat242: 1.72482991e-10 + syst_JES_EtaIntercalibration_Stat243: 2.40815816e-10 + syst_JES_EtaIntercalibration_Stat244: 1.17649551e-10 + syst_JES_EtaIntercalibration_Stat245: 8.24629389e-12 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 syst_JES_EtaIntercalibration_Stat27: 0.0 @@ -20143,373 +20143,373 @@ bins: syst_JES_EtaIntercalibration_Stat97: 0.0 syst_JES_EtaIntercalibration_Stat98: 0.0 syst_JES_EtaIntercalibration_Stat99: 0.0 - syst_JES_EtaIntercalibration_TotalStat_MJB: 1.5356994334829976e-07 - syst_JES_Flavour_Comp: 4.722101544863262e-08 - syst_JES_Flavour_Response: 1.5136587297009852e-07 - syst_JES_Gjet_Generator: 2.2960751294328326e-07 - syst_JES_Gjet_OOC: 1.9331200169673895e-07 - syst_JES_Gjet_Purity: 1.3976920503100815e-08 - syst_JES_Gjet_Stat1: 3.757647768218836e-10 - syst_JES_Gjet_Stat10: 1.586799530501569e-08 - syst_JES_Gjet_Stat11: 1.5433628866860832e-08 - syst_JES_Gjet_Stat12: 4.611760184571613e-09 - syst_JES_Gjet_Stat13: 6.755005329383537e-08 - syst_JES_Gjet_Stat14: 2.1049301057279792e-07 - syst_JES_Gjet_Stat15: 3.227073906807838e-07 - syst_JES_Gjet_Stat2: 3.73688890489134e-10 - syst_JES_Gjet_Stat3: 4.791609411252131e-10 - syst_JES_Gjet_Stat4: 5.333315827887938e-09 - syst_JES_Gjet_Stat5: 5.182592280895729e-09 - syst_JES_Gjet_Stat6: 2.646190233146514e-09 - syst_JES_Gjet_Stat7: 5.306813238658395e-09 - syst_JES_Gjet_Stat8: 3.7121592261108634e-10 - syst_JES_Gjet_Stat9: 5.310342101032663e-09 - syst_JES_Gjet_Veto: 2.402220379149257e-07 - syst_JES_Gjet_dPhi: 3.220357645898977e-09 - syst_JES_LArESZee: 2.680218461245277e-07 - syst_JES_LArEsmear: 2.7010847820829318e-08 - syst_JES_LAr_JVT: 3.81402307380278e-08 - syst_JES_MJB_Alpha: 4.53397758596136e-09 - syst_JES_MJB_Asym: 2.2918238915763138e-07 - syst_JES_MJB_Beta: 1.681398450695135e-08 - syst_JES_MJB_Fragmentation: 4.973056680754805e-08 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.53569943e-07 + syst_JES_Flavour_Comp: 4.72210154e-08 + syst_JES_Flavour_Response: 1.51365873e-07 + syst_JES_Gjet_Generator: 2.29607513e-07 + syst_JES_Gjet_OOC: 1.93312002e-07 + syst_JES_Gjet_Purity: 1.39769205e-08 + syst_JES_Gjet_Stat1: 3.75764777e-10 + syst_JES_Gjet_Stat10: 1.58679953e-08 + syst_JES_Gjet_Stat11: 1.54336289e-08 + syst_JES_Gjet_Stat12: 4.61176018e-09 + syst_JES_Gjet_Stat13: 6.75500533e-08 + syst_JES_Gjet_Stat14: 2.10493011e-07 + syst_JES_Gjet_Stat15: 3.22707391e-07 + syst_JES_Gjet_Stat2: 3.73688890e-10 + syst_JES_Gjet_Stat3: 4.79160941e-10 + syst_JES_Gjet_Stat4: 5.33331583e-09 + syst_JES_Gjet_Stat5: 5.18259228e-09 + syst_JES_Gjet_Stat6: 2.64619023e-09 + syst_JES_Gjet_Stat7: 5.30681324e-09 + syst_JES_Gjet_Stat8: 3.71215923e-10 + syst_JES_Gjet_Stat9: 5.31034210e-09 + syst_JES_Gjet_Veto: 2.40222038e-07 + syst_JES_Gjet_dPhi: 3.22035765e-09 + syst_JES_LArESZee: 2.68021846e-07 + syst_JES_LArEsmear: 2.70108478e-08 + syst_JES_LAr_JVT: 3.81402307e-08 + syst_JES_MJB_Alpha: 4.53397759e-09 + syst_JES_MJB_Asym: 2.29182389e-07 + syst_JES_MJB_Beta: 1.68139845e-08 + syst_JES_MJB_Fragmentation: 4.97305668e-08 syst_JES_MJB_Stat1: 0.0 - syst_JES_MJB_Stat10: 1.3075475823081928e-10 - syst_JES_MJB_Stat11: 1.540266314635232e-10 - syst_JES_MJB_Stat12: 3.6650187925848353e-10 - syst_JES_MJB_Stat13: 1.3571674436118779e-09 - syst_JES_MJB_Stat14: 6.637597965378741e-08 - syst_JES_MJB_Stat15: 1.438500173792134e-07 - syst_JES_MJB_Stat16: 1.9120768812994942e-07 + syst_JES_MJB_Stat10: 1.30754758e-10 + syst_JES_MJB_Stat11: 1.54026631e-10 + syst_JES_MJB_Stat12: 3.66501879e-10 + syst_JES_MJB_Stat13: 1.35716744e-09 + syst_JES_MJB_Stat14: 6.63759797e-08 + syst_JES_MJB_Stat15: 1.43850017e-07 + syst_JES_MJB_Stat16: 1.91207688e-07 syst_JES_MJB_Stat2: 0.0 syst_JES_MJB_Stat3: 0.0 - syst_JES_MJB_Stat4: 2.6838127263279756e-11 - syst_JES_MJB_Stat5: 2.6812146501166222e-11 - syst_JES_MJB_Stat6: 2.6465736339652445e-11 - syst_JES_MJB_Stat7: 3.401054965742247e-11 - syst_JES_MJB_Stat8: 3.304752940841418e-11 + syst_JES_MJB_Stat4: 2.68381273e-11 + syst_JES_MJB_Stat5: 2.68121465e-11 + syst_JES_MJB_Stat6: 2.64657363e-11 + syst_JES_MJB_Stat7: 3.40105497e-11 + syst_JES_MJB_Stat8: 3.30475294e-11 syst_JES_MJB_Stat9: 0.0 - syst_JES_MJB_Threshold: 3.173625804974493e-08 - syst_JES_Pileup_MuOffset: 9.974694819892988e-08 - syst_JES_Pileup_NPVOffset: 6.325003952567935e-08 - syst_JES_Pileup_Pt_term: 1.4484542683495396e-08 - syst_JES_Pileup_Rho_topology: 1.007662289658594e-07 - syst_JES_PunchThrough_MC15: 2.5205437409416245e-07 - syst_JES_SingleParticle_HighPt: 2.758390110191088e-07 - syst_JES_Zjet_MC: 8.799756402878434e-08 - syst_JES_Zjet_MuScale: 9.993060792369873e-09 - syst_JES_Zjet_MuSmearID: 1.4796590848908408e-10 - syst_JES_Zjet_MuSmearMS: 8.967167278466484e-09 - syst_JES_Zjet_OOC: 4.881172297717014e-08 - syst_JES_Zjet_Stat1: 9.727530043644172e-09 - syst_JES_Zjet_Stat10: 6.589105155482041e-09 - syst_JES_Zjet_Stat11: 4.268040651165356e-09 - syst_JES_Zjet_Stat12: 6.580783615953346e-09 - syst_JES_Zjet_Stat13: 1.7858910241109334e-08 - syst_JES_Zjet_Stat2: 3.4086759892955506e-11 - syst_JES_Zjet_Stat3: 5.071640661561109e-10 - syst_JES_Zjet_Stat4: 2.335053050789211e-09 - syst_JES_Zjet_Stat5: 1.3691190625727187e-09 - syst_JES_Zjet_Stat6: 5.177451375918464e-09 - syst_JES_Zjet_Stat7: 3.0567555921270512e-09 - syst_JES_Zjet_Stat8: 1.2933590713719063e-09 - syst_JES_Zjet_Stat9: 5.185236831621098e-09 - syst_JES_Zjet_Veto: 7.531465776991888e-09 - syst_JES_Zjet_dPhi: 7.313928134046711e-09 + syst_JES_MJB_Threshold: 3.17362580e-08 + syst_JES_Pileup_MuOffset: 9.97469482e-08 + syst_JES_Pileup_NPVOffset: 6.32500395e-08 + syst_JES_Pileup_Pt_term: 1.44845427e-08 + syst_JES_Pileup_Rho_topology: 1.00766229e-07 + syst_JES_PunchThrough_MC15: 2.52054374e-07 + syst_JES_SingleParticle_HighPt: 2.75839011e-07 + syst_JES_Zjet_MC: 8.79975640e-08 + syst_JES_Zjet_MuScale: 9.99306079e-09 + syst_JES_Zjet_MuSmearID: 1.47965908e-10 + syst_JES_Zjet_MuSmearMS: 8.96716728e-09 + syst_JES_Zjet_OOC: 4.88117230e-08 + syst_JES_Zjet_Stat1: 9.72753004e-09 + syst_JES_Zjet_Stat10: 6.58910516e-09 + syst_JES_Zjet_Stat11: 4.26804065e-09 + syst_JES_Zjet_Stat12: 6.58078362e-09 + syst_JES_Zjet_Stat13: 1.78589102e-08 + syst_JES_Zjet_Stat2: 3.40867599e-11 + syst_JES_Zjet_Stat3: 5.07164066e-10 + syst_JES_Zjet_Stat4: 2.33505305e-09 + syst_JES_Zjet_Stat5: 1.36911906e-09 + syst_JES_Zjet_Stat6: 5.17745138e-09 + syst_JES_Zjet_Stat7: 3.05675559e-09 + syst_JES_Zjet_Stat8: 1.29335907e-09 + syst_JES_Zjet_Stat9: 5.18523683e-09 + syst_JES_Zjet_Veto: 7.53146578e-09 + syst_JES_Zjet_dPhi: 7.31392813e-09 syst_PRW: 0.0 syst_Unfolding_bias: 0.0 - syst_cleaning: 3.2259446290970344e-08 - syst_lumi: 7.631e-08 + syst_cleaning: 3.22594463e-08 + syst_lumi: 7.63100000e-08 - stat: 10.61 syst_JER_CROSS_CALIB_FORWARD: 0.6065 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 6.428368611086331 - syst_JER_NP1: 1.5773935082914474 + syst_JER_NP0: 6.42836861e+00 + syst_JER_NP1: 1.57739351e+00 syst_JER_NP2: 0.0 - syst_JER_NP3: 0.8867281657870127 - syst_JER_NP4: 0.5874250313869848 + syst_JER_NP3: 8.86728166e-01 + syst_JER_NP4: 5.87425031e-01 syst_JER_NP5: 0.0 syst_JER_NP6: 0.0 - syst_JER_NP7: 0.3943879688834334 - syst_JER_NP8: 0.8679365918660187 - syst_JES_EtaIntercalibration_Modelling: 17.481979292974813 - syst_JES_EtaIntercalibration_NonClosure: 6.0254276196797845 - syst_JES_EtaIntercalibration_Stat0: 0.0003577960312803931 - syst_JES_EtaIntercalibration_Stat1: 0.0003577960312803931 - syst_JES_EtaIntercalibration_Stat10: 0.0009766782940149742 - syst_JES_EtaIntercalibration_Stat100: 0.27354741819289763 - syst_JES_EtaIntercalibration_Stat101: 0.30054751704181487 - syst_JES_EtaIntercalibration_Stat102: 0.24783316969283994 - syst_JES_EtaIntercalibration_Stat103: 0.28970040990651014 - syst_JES_EtaIntercalibration_Stat104: 0.31202413368199583 - syst_JES_EtaIntercalibration_Stat105: 0.18871123442974982 - syst_JES_EtaIntercalibration_Stat106: 0.12362280159824887 - syst_JES_EtaIntercalibration_Stat107: 0.001701113197291703 - syst_JES_EtaIntercalibration_Stat108: 0.0027550358447710633 - syst_JES_EtaIntercalibration_Stat109: 0.1918301125345028 - syst_JES_EtaIntercalibration_Stat11: 0.0035767806624812768 - syst_JES_EtaIntercalibration_Stat110: 0.1252502006255878 - syst_JES_EtaIntercalibration_Stat111: 0.25946500727458416 - syst_JES_EtaIntercalibration_Stat112: 0.2921932707986274 - syst_JES_EtaIntercalibration_Stat113: 0.27981036448816543 - syst_JES_EtaIntercalibration_Stat114: 0.14035973888547956 - syst_JES_EtaIntercalibration_Stat115: 0.3506519748981888 - syst_JES_EtaIntercalibration_Stat116: 0.4004344234703106 - syst_JES_EtaIntercalibration_Stat117: 0.24152130340820868 - syst_JES_EtaIntercalibration_Stat118: 0.24038495689206513 - syst_JES_EtaIntercalibration_Stat119: 0.2508039473373575 - syst_JES_EtaIntercalibration_Stat12: 0.000219104427157463 - syst_JES_EtaIntercalibration_Stat120: 0.2129236370157151 - syst_JES_EtaIntercalibration_Stat121: 0.30834208065069546 - syst_JES_EtaIntercalibration_Stat122: 0.19055043951668021 - syst_JES_EtaIntercalibration_Stat123: 0.216705399102099 - syst_JES_EtaIntercalibration_Stat124: 0.3163296223877871 - syst_JES_EtaIntercalibration_Stat125: 0.14176313269676288 - syst_JES_EtaIntercalibration_Stat126: 0.08457649244914334 - syst_JES_EtaIntercalibration_Stat127: 0.0011337291475480376 - syst_JES_EtaIntercalibration_Stat128: 0.07823476017730227 - syst_JES_EtaIntercalibration_Stat129: 0.10834108777375276 - syst_JES_EtaIntercalibration_Stat13: 0.0016766973489571698 - syst_JES_EtaIntercalibration_Stat130: 0.19447506575394186 - syst_JES_EtaIntercalibration_Stat131: 0.18605587144726177 - syst_JES_EtaIntercalibration_Stat132: 0.1790104675710334 - syst_JES_EtaIntercalibration_Stat133: 0.0932386518604275 - syst_JES_EtaIntercalibration_Stat134: 0.17164365921000402 - syst_JES_EtaIntercalibration_Stat135: 0.08239285952071332 - syst_JES_EtaIntercalibration_Stat136: 0.11301296695512424 - syst_JES_EtaIntercalibration_Stat137: 0.12405969561062126 - syst_JES_EtaIntercalibration_Stat138: 0.0872049045180373 - syst_JES_EtaIntercalibration_Stat139: 0.1008271296576472 - syst_JES_EtaIntercalibration_Stat14: 0.0017282748623989185 - syst_JES_EtaIntercalibration_Stat140: 0.06122799849741946 - syst_JES_EtaIntercalibration_Stat141: 0.06663413089400956 - syst_JES_EtaIntercalibration_Stat142: 0.12035360027851263 - syst_JES_EtaIntercalibration_Stat143: 0.08724337381715588 - syst_JES_EtaIntercalibration_Stat144: 0.12359308961264782 - syst_JES_EtaIntercalibration_Stat145: 0.05386135534870989 - syst_JES_EtaIntercalibration_Stat146: 0.01903468084838829 - syst_JES_EtaIntercalibration_Stat147: 0.04199357182950743 - syst_JES_EtaIntercalibration_Stat148: 0.008612622406838277 - syst_JES_EtaIntercalibration_Stat149: 0.044609863267555526 - syst_JES_EtaIntercalibration_Stat15: 0.0005955868261639104 - syst_JES_EtaIntercalibration_Stat150: 0.04170212314738903 - syst_JES_EtaIntercalibration_Stat151: 0.022790620674961883 - syst_JES_EtaIntercalibration_Stat152: 0.048637585280868714 - syst_JES_EtaIntercalibration_Stat153: 0.03179179257292674 - syst_JES_EtaIntercalibration_Stat154: 0.026838902268908095 - syst_JES_EtaIntercalibration_Stat155: 0.04431359497941913 - syst_JES_EtaIntercalibration_Stat156: 0.03808975846602338 - syst_JES_EtaIntercalibration_Stat157: 0.0006253569440712227 - syst_JES_EtaIntercalibration_Stat158: 0.06640303814585595 - syst_JES_EtaIntercalibration_Stat159: 0.04782780432708573 - syst_JES_EtaIntercalibration_Stat16: 0.011236269254071833 - syst_JES_EtaIntercalibration_Stat160: 0.012895118262350291 - syst_JES_EtaIntercalibration_Stat161: 0.024161408832061096 - syst_JES_EtaIntercalibration_Stat162: 0.046656132233608906 - syst_JES_EtaIntercalibration_Stat163: 0.025478247584949796 - syst_JES_EtaIntercalibration_Stat164: 0.007521002243717256 - syst_JES_EtaIntercalibration_Stat165: 0.004815988509122504 - syst_JES_EtaIntercalibration_Stat166: 0.004484279412191066 - syst_JES_EtaIntercalibration_Stat167: 0.005820741597940936 - syst_JES_EtaIntercalibration_Stat168: 0.006187472181755648 - syst_JES_EtaIntercalibration_Stat169: 0.0017122401321076435 - syst_JES_EtaIntercalibration_Stat17: 0.0003119730236735221 - syst_JES_EtaIntercalibration_Stat170: 0.011153279383212814 - syst_JES_EtaIntercalibration_Stat171: 0.013092512053460176 - syst_JES_EtaIntercalibration_Stat172: 0.01334490116111768 - syst_JES_EtaIntercalibration_Stat173: 0.024730345947438746 - syst_JES_EtaIntercalibration_Stat174: 0.021271452700744257 - syst_JES_EtaIntercalibration_Stat175: 0.020406587092162174 - syst_JES_EtaIntercalibration_Stat176: 0.007532020711601901 - syst_JES_EtaIntercalibration_Stat177: 0.009193935990640788 - syst_JES_EtaIntercalibration_Stat178: 0.00916390423073048 - syst_JES_EtaIntercalibration_Stat179: 0.00276994025206321 - syst_JES_EtaIntercalibration_Stat18: 0.0004565618600748425 - syst_JES_EtaIntercalibration_Stat180: 0.025568228267715383 - syst_JES_EtaIntercalibration_Stat181: 0.005728530276875125 - syst_JES_EtaIntercalibration_Stat182: 0.0009873926122368954 - syst_JES_EtaIntercalibration_Stat183: 0.0026919362919653207 - syst_JES_EtaIntercalibration_Stat184: 0.002997382509373804 - syst_JES_EtaIntercalibration_Stat185: 0.0002224739598245152 - syst_JES_EtaIntercalibration_Stat186: 0.004875343437133429 - syst_JES_EtaIntercalibration_Stat187: 0.00220310510870453 - syst_JES_EtaIntercalibration_Stat188: 0.0015900226413482293 - syst_JES_EtaIntercalibration_Stat189: 0.0027021561760934543 - syst_JES_EtaIntercalibration_Stat19: 0.00818676153967489 - syst_JES_EtaIntercalibration_Stat190: 0.0027396350121868425 - syst_JES_EtaIntercalibration_Stat191: 0.009179279833952116 - syst_JES_EtaIntercalibration_Stat192: 0.003298538009482383 - syst_JES_EtaIntercalibration_Stat193: 0.0017332684817996315 - syst_JES_EtaIntercalibration_Stat194: 0.004305814992542063 - syst_JES_EtaIntercalibration_Stat195: 0.0028354330797957478 - syst_JES_EtaIntercalibration_Stat196: 0.0026426590302193733 - syst_JES_EtaIntercalibration_Stat197: 0.004127917473739028 - syst_JES_EtaIntercalibration_Stat198: 1.8664199708265017e-05 - syst_JES_EtaIntercalibration_Stat199: 9.990122259011648e-05 - syst_JES_EtaIntercalibration_Stat2: 0.0005047057756752939 - syst_JES_EtaIntercalibration_Stat20: 0.0003577960312803931 - syst_JES_EtaIntercalibration_Stat200: 0.0005115260137080029 - syst_JES_EtaIntercalibration_Stat201: 0.00038823029052741364 - syst_JES_EtaIntercalibration_Stat202: 0.0008820508957395826 - syst_JES_EtaIntercalibration_Stat203: 0.0005952815027363105 - syst_JES_EtaIntercalibration_Stat204: 4.119610188780001e-05 - syst_JES_EtaIntercalibration_Stat205: 0.0031266177124810125 - syst_JES_EtaIntercalibration_Stat206: 0.0010423365123965484 - syst_JES_EtaIntercalibration_Stat207: 0.0005965711916443838 - syst_JES_EtaIntercalibration_Stat208: 0.0008773939708021704 - syst_JES_EtaIntercalibration_Stat209: 0.00416830800350394 - syst_JES_EtaIntercalibration_Stat21: 0.0003577960312803931 - syst_JES_EtaIntercalibration_Stat210: 7.213126710980959e-05 - syst_JES_EtaIntercalibration_Stat211: 0.000353511569825006 - syst_JES_EtaIntercalibration_Stat212: 3.3730172112664944e-05 - syst_JES_EtaIntercalibration_Stat213: 0.0013854903632649345 - syst_JES_EtaIntercalibration_Stat214: 5.754738808147595e-05 - syst_JES_EtaIntercalibration_Stat215: 5.263702404201818e-06 - syst_JES_EtaIntercalibration_Stat216: 0.0019494684500332392 - syst_JES_EtaIntercalibration_Stat217: 0.0006034582540083034 - syst_JES_EtaIntercalibration_Stat218: 0.0005042999702557993 - syst_JES_EtaIntercalibration_Stat219: 0.0013796252922394362 - syst_JES_EtaIntercalibration_Stat22: 0.0003577960312803931 - syst_JES_EtaIntercalibration_Stat220: 0.00010041862589679267 - syst_JES_EtaIntercalibration_Stat221: 8.395643691820183e-06 - syst_JES_EtaIntercalibration_Stat222: 0.0017122824730458465 - syst_JES_EtaIntercalibration_Stat223: 0.0006011370556495415 - syst_JES_EtaIntercalibration_Stat224: 0.000419042859472632 - syst_JES_EtaIntercalibration_Stat225: 0.0004186858873905353 - syst_JES_EtaIntercalibration_Stat226: 0.0005518929928192602 - syst_JES_EtaIntercalibration_Stat227: 0.0005367650316479269 - syst_JES_EtaIntercalibration_Stat228: 0.0005727186796979822 - syst_JES_EtaIntercalibration_Stat229: 0.0007332248410276347 - syst_JES_EtaIntercalibration_Stat23: 0.0005047057756752939 - syst_JES_EtaIntercalibration_Stat230: 0.0023644314390567555 - syst_JES_EtaIntercalibration_Stat231: 5.6612080645388756e-05 - syst_JES_EtaIntercalibration_Stat232: 0.0005298265069812948 - syst_JES_EtaIntercalibration_Stat233: 5.130334492019015e-06 - syst_JES_EtaIntercalibration_Stat234: 5.20930685120391e-06 - syst_JES_EtaIntercalibration_Stat235: 4.786476437579109e-05 - syst_JES_EtaIntercalibration_Stat236: 0.0038187664840986283 - syst_JES_EtaIntercalibration_Stat237: 0.000219104427157463 - syst_JES_EtaIntercalibration_Stat238: 5.9395207508687096e-05 - syst_JES_EtaIntercalibration_Stat239: 0.00038438898267250066 - syst_JES_EtaIntercalibration_Stat24: 0.020566241288820862 - syst_JES_EtaIntercalibration_Stat240: 0.0004285007351218898 - syst_JES_EtaIntercalibration_Stat241: 0.0024491809502107027 - syst_JES_EtaIntercalibration_Stat242: 9.710571910551922e-05 - syst_JES_EtaIntercalibration_Stat243: 0.0011796228958018745 - syst_JES_EtaIntercalibration_Stat244: 0.0009661907068084437 - syst_JES_EtaIntercalibration_Stat245: 0.0010678118969181792 - syst_JES_EtaIntercalibration_Stat25: 0.030157398346011215 - syst_JES_EtaIntercalibration_Stat26: 0.031149194211086747 - syst_JES_EtaIntercalibration_Stat27: 0.03160740107949403 - syst_JES_EtaIntercalibration_Stat28: 0.050185293184358305 - syst_JES_EtaIntercalibration_Stat29: 0.04782698061763883 - syst_JES_EtaIntercalibration_Stat3: 0.0005047057756752939 - syst_JES_EtaIntercalibration_Stat30: 0.03170882684679457 - syst_JES_EtaIntercalibration_Stat31: 0.05486401461796248 - syst_JES_EtaIntercalibration_Stat32: 0.03352662886423268 - syst_JES_EtaIntercalibration_Stat33: 0.016016753822170084 - syst_JES_EtaIntercalibration_Stat34: 0.05398752541096879 - syst_JES_EtaIntercalibration_Stat35: 0.026919447895527127 - syst_JES_EtaIntercalibration_Stat36: 0.001849830262483561 - syst_JES_EtaIntercalibration_Stat37: 0.017623839546785224 - syst_JES_EtaIntercalibration_Stat38: 0.018812524571412526 - syst_JES_EtaIntercalibration_Stat39: 0.020476607995466436 - syst_JES_EtaIntercalibration_Stat4: 0.006410762357161588 - syst_JES_EtaIntercalibration_Stat40: 0.03288877164018139 - syst_JES_EtaIntercalibration_Stat41: 0.019459080964937682 - syst_JES_EtaIntercalibration_Stat42: 0.006936649451103897 - syst_JES_EtaIntercalibration_Stat43: 0.0003577960312803931 - syst_JES_EtaIntercalibration_Stat44: 0.0003577960312803931 - syst_JES_EtaIntercalibration_Stat45: 0.002343570240039756 - syst_JES_EtaIntercalibration_Stat46: 0.07254957455940042 - syst_JES_EtaIntercalibration_Stat47: 0.12089591680449759 - syst_JES_EtaIntercalibration_Stat48: 0.14225355953367214 - syst_JES_EtaIntercalibration_Stat49: 0.19402836777131327 - syst_JES_EtaIntercalibration_Stat5: 0.0008636973818994706 - syst_JES_EtaIntercalibration_Stat50: 0.1887860892650727 - syst_JES_EtaIntercalibration_Stat51: 0.12636942143968216 - syst_JES_EtaIntercalibration_Stat52: 0.14201777379961988 - syst_JES_EtaIntercalibration_Stat53: 0.19392495971380272 - syst_JES_EtaIntercalibration_Stat54: 0.12335594472906443 - syst_JES_EtaIntercalibration_Stat55: 0.0778559906172929 - syst_JES_EtaIntercalibration_Stat56: 0.09775291351156752 - syst_JES_EtaIntercalibration_Stat57: 0.15585807742943578 - syst_JES_EtaIntercalibration_Stat58: 0.16243280172120406 - syst_JES_EtaIntercalibration_Stat59: 0.17580973579412487 - syst_JES_EtaIntercalibration_Stat6: 0.0008595816584246082 - syst_JES_EtaIntercalibration_Stat60: 0.1516581929867292 - syst_JES_EtaIntercalibration_Stat61: 0.1337367167235685 - syst_JES_EtaIntercalibration_Stat62: 0.10400222822132225 - syst_JES_EtaIntercalibration_Stat63: 0.08736258581337894 - syst_JES_EtaIntercalibration_Stat64: 0.00462024552918998 - syst_JES_EtaIntercalibration_Stat65: 0.0003577960312803931 - syst_JES_EtaIntercalibration_Stat66: 0.0003577960312803931 - syst_JES_EtaIntercalibration_Stat67: 0.004862549408489338 - syst_JES_EtaIntercalibration_Stat68: 0.18722712323539023 - syst_JES_EtaIntercalibration_Stat69: 0.42907840775317513 - syst_JES_EtaIntercalibration_Stat7: 0.0003577960312803931 - syst_JES_EtaIntercalibration_Stat70: 0.3333471763792218 - syst_JES_EtaIntercalibration_Stat71: 0.3681304761901682 - syst_JES_EtaIntercalibration_Stat72: 0.3236772466516607 - syst_JES_EtaIntercalibration_Stat73: 0.4661374805784234 - syst_JES_EtaIntercalibration_Stat74: 0.5504330545125355 - syst_JES_EtaIntercalibration_Stat75: 0.4738999762608139 - syst_JES_EtaIntercalibration_Stat76: 0.414480723315331 - syst_JES_EtaIntercalibration_Stat77: 0.48388389878151555 - syst_JES_EtaIntercalibration_Stat78: 0.480637306084328 - syst_JES_EtaIntercalibration_Stat79: 0.3458023423865142 - syst_JES_EtaIntercalibration_Stat8: 0.000219104427157463 - syst_JES_EtaIntercalibration_Stat80: 0.6492467058638034 - syst_JES_EtaIntercalibration_Stat81: 0.40521639589236763 - syst_JES_EtaIntercalibration_Stat82: 0.39973059365027336 - syst_JES_EtaIntercalibration_Stat83: 0.44849440353253023 - syst_JES_EtaIntercalibration_Stat84: 0.34864217770516526 - syst_JES_EtaIntercalibration_Stat85: 0.22182995176485976 - syst_JES_EtaIntercalibration_Stat86: 0.0012624943197892021 - syst_JES_EtaIntercalibration_Stat87: 0.000219104427157463 - syst_JES_EtaIntercalibration_Stat88: 0.000365013554816804 - syst_JES_EtaIntercalibration_Stat89: 0.1436533914496974 - syst_JES_EtaIntercalibration_Stat9: 0.0009766782940149742 - syst_JES_EtaIntercalibration_Stat90: 0.22037642795907186 - syst_JES_EtaIntercalibration_Stat91: 0.2907021284751799 - syst_JES_EtaIntercalibration_Stat92: 0.2557613096228591 - syst_JES_EtaIntercalibration_Stat93: 0.23323501023645657 - syst_JES_EtaIntercalibration_Stat94: 0.21458836757848734 - syst_JES_EtaIntercalibration_Stat95: 0.3625887856787631 - syst_JES_EtaIntercalibration_Stat96: 0.4386352328529937 - syst_JES_EtaIntercalibration_Stat97: 0.4138904202805375 - syst_JES_EtaIntercalibration_Stat98: 0.2641132853530848 - syst_JES_EtaIntercalibration_Stat99: 0.3092466774275837 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.003486689414043069 - syst_JES_Flavour_Comp: 1.5818403838567276 - syst_JES_Flavour_Response: 31.167760185807385 - syst_JES_Gjet_Generator: 18.07107080391198 - syst_JES_Gjet_OOC: 11.731767503236672 - syst_JES_Gjet_Purity: 4.951931340396391 - syst_JES_Gjet_Stat1: 0.08220313132721892 - syst_JES_Gjet_Stat10: 0.18333757798117145 - syst_JES_Gjet_Stat11: 0.07818477345366497 - syst_JES_Gjet_Stat12: 0.016364545456565543 - syst_JES_Gjet_Stat13: 0.004839349956347444 - syst_JES_Gjet_Stat14: 7.307440810047981e-11 + syst_JER_NP7: 3.94387969e-01 + syst_JER_NP8: 8.67936592e-01 + syst_JES_EtaIntercalibration_Modelling: 1.74819793e+01 + syst_JES_EtaIntercalibration_NonClosure: 6.02542762e+00 + syst_JES_EtaIntercalibration_Stat0: 3.57796031e-04 + syst_JES_EtaIntercalibration_Stat1: 3.57796031e-04 + syst_JES_EtaIntercalibration_Stat10: 9.76678294e-04 + syst_JES_EtaIntercalibration_Stat100: 2.73547418e-01 + syst_JES_EtaIntercalibration_Stat101: 3.00547517e-01 + syst_JES_EtaIntercalibration_Stat102: 2.47833170e-01 + syst_JES_EtaIntercalibration_Stat103: 2.89700410e-01 + syst_JES_EtaIntercalibration_Stat104: 3.12024134e-01 + syst_JES_EtaIntercalibration_Stat105: 1.88711234e-01 + syst_JES_EtaIntercalibration_Stat106: 1.23622802e-01 + syst_JES_EtaIntercalibration_Stat107: 1.70111320e-03 + syst_JES_EtaIntercalibration_Stat108: 2.75503584e-03 + syst_JES_EtaIntercalibration_Stat109: 1.91830113e-01 + syst_JES_EtaIntercalibration_Stat11: 3.57678066e-03 + syst_JES_EtaIntercalibration_Stat110: 1.25250201e-01 + syst_JES_EtaIntercalibration_Stat111: 2.59465007e-01 + syst_JES_EtaIntercalibration_Stat112: 2.92193271e-01 + syst_JES_EtaIntercalibration_Stat113: 2.79810364e-01 + syst_JES_EtaIntercalibration_Stat114: 1.40359739e-01 + syst_JES_EtaIntercalibration_Stat115: 3.50651975e-01 + syst_JES_EtaIntercalibration_Stat116: 4.00434423e-01 + syst_JES_EtaIntercalibration_Stat117: 2.41521303e-01 + syst_JES_EtaIntercalibration_Stat118: 2.40384957e-01 + syst_JES_EtaIntercalibration_Stat119: 2.50803947e-01 + syst_JES_EtaIntercalibration_Stat12: 2.19104427e-04 + syst_JES_EtaIntercalibration_Stat120: 2.12923637e-01 + syst_JES_EtaIntercalibration_Stat121: 3.08342081e-01 + syst_JES_EtaIntercalibration_Stat122: 1.90550440e-01 + syst_JES_EtaIntercalibration_Stat123: 2.16705399e-01 + syst_JES_EtaIntercalibration_Stat124: 3.16329622e-01 + syst_JES_EtaIntercalibration_Stat125: 1.41763133e-01 + syst_JES_EtaIntercalibration_Stat126: 8.45764924e-02 + syst_JES_EtaIntercalibration_Stat127: 1.13372915e-03 + syst_JES_EtaIntercalibration_Stat128: 7.82347602e-02 + syst_JES_EtaIntercalibration_Stat129: 1.08341088e-01 + syst_JES_EtaIntercalibration_Stat13: 1.67669735e-03 + syst_JES_EtaIntercalibration_Stat130: 1.94475066e-01 + syst_JES_EtaIntercalibration_Stat131: 1.86055871e-01 + syst_JES_EtaIntercalibration_Stat132: 1.79010468e-01 + syst_JES_EtaIntercalibration_Stat133: 9.32386519e-02 + syst_JES_EtaIntercalibration_Stat134: 1.71643659e-01 + syst_JES_EtaIntercalibration_Stat135: 8.23928595e-02 + syst_JES_EtaIntercalibration_Stat136: 1.13012967e-01 + syst_JES_EtaIntercalibration_Stat137: 1.24059696e-01 + syst_JES_EtaIntercalibration_Stat138: 8.72049045e-02 + syst_JES_EtaIntercalibration_Stat139: 1.00827130e-01 + syst_JES_EtaIntercalibration_Stat14: 1.72827486e-03 + syst_JES_EtaIntercalibration_Stat140: 6.12279985e-02 + syst_JES_EtaIntercalibration_Stat141: 6.66341309e-02 + syst_JES_EtaIntercalibration_Stat142: 1.20353600e-01 + syst_JES_EtaIntercalibration_Stat143: 8.72433738e-02 + syst_JES_EtaIntercalibration_Stat144: 1.23593090e-01 + syst_JES_EtaIntercalibration_Stat145: 5.38613553e-02 + syst_JES_EtaIntercalibration_Stat146: 1.90346808e-02 + syst_JES_EtaIntercalibration_Stat147: 4.19935718e-02 + syst_JES_EtaIntercalibration_Stat148: 8.61262241e-03 + syst_JES_EtaIntercalibration_Stat149: 4.46098633e-02 + syst_JES_EtaIntercalibration_Stat15: 5.95586826e-04 + syst_JES_EtaIntercalibration_Stat150: 4.17021231e-02 + syst_JES_EtaIntercalibration_Stat151: 2.27906207e-02 + syst_JES_EtaIntercalibration_Stat152: 4.86375853e-02 + syst_JES_EtaIntercalibration_Stat153: 3.17917926e-02 + syst_JES_EtaIntercalibration_Stat154: 2.68389023e-02 + syst_JES_EtaIntercalibration_Stat155: 4.43135950e-02 + syst_JES_EtaIntercalibration_Stat156: 3.80897585e-02 + syst_JES_EtaIntercalibration_Stat157: 6.25356944e-04 + syst_JES_EtaIntercalibration_Stat158: 6.64030381e-02 + syst_JES_EtaIntercalibration_Stat159: 4.78278043e-02 + syst_JES_EtaIntercalibration_Stat16: 1.12362693e-02 + syst_JES_EtaIntercalibration_Stat160: 1.28951183e-02 + syst_JES_EtaIntercalibration_Stat161: 2.41614088e-02 + syst_JES_EtaIntercalibration_Stat162: 4.66561322e-02 + syst_JES_EtaIntercalibration_Stat163: 2.54782476e-02 + syst_JES_EtaIntercalibration_Stat164: 7.52100224e-03 + syst_JES_EtaIntercalibration_Stat165: 4.81598851e-03 + syst_JES_EtaIntercalibration_Stat166: 4.48427941e-03 + syst_JES_EtaIntercalibration_Stat167: 5.82074160e-03 + syst_JES_EtaIntercalibration_Stat168: 6.18747218e-03 + syst_JES_EtaIntercalibration_Stat169: 1.71224013e-03 + syst_JES_EtaIntercalibration_Stat17: 3.11973024e-04 + syst_JES_EtaIntercalibration_Stat170: 1.11532794e-02 + syst_JES_EtaIntercalibration_Stat171: 1.30925121e-02 + syst_JES_EtaIntercalibration_Stat172: 1.33449012e-02 + syst_JES_EtaIntercalibration_Stat173: 2.47303459e-02 + syst_JES_EtaIntercalibration_Stat174: 2.12714527e-02 + syst_JES_EtaIntercalibration_Stat175: 2.04065871e-02 + syst_JES_EtaIntercalibration_Stat176: 7.53202071e-03 + syst_JES_EtaIntercalibration_Stat177: 9.19393599e-03 + syst_JES_EtaIntercalibration_Stat178: 9.16390423e-03 + syst_JES_EtaIntercalibration_Stat179: 2.76994025e-03 + syst_JES_EtaIntercalibration_Stat18: 4.56561860e-04 + syst_JES_EtaIntercalibration_Stat180: 2.55682283e-02 + syst_JES_EtaIntercalibration_Stat181: 5.72853028e-03 + syst_JES_EtaIntercalibration_Stat182: 9.87392612e-04 + syst_JES_EtaIntercalibration_Stat183: 2.69193629e-03 + syst_JES_EtaIntercalibration_Stat184: 2.99738251e-03 + syst_JES_EtaIntercalibration_Stat185: 2.22473960e-04 + syst_JES_EtaIntercalibration_Stat186: 4.87534344e-03 + syst_JES_EtaIntercalibration_Stat187: 2.20310511e-03 + syst_JES_EtaIntercalibration_Stat188: 1.59002264e-03 + syst_JES_EtaIntercalibration_Stat189: 2.70215618e-03 + syst_JES_EtaIntercalibration_Stat19: 8.18676154e-03 + syst_JES_EtaIntercalibration_Stat190: 2.73963501e-03 + syst_JES_EtaIntercalibration_Stat191: 9.17927983e-03 + syst_JES_EtaIntercalibration_Stat192: 3.29853801e-03 + syst_JES_EtaIntercalibration_Stat193: 1.73326848e-03 + syst_JES_EtaIntercalibration_Stat194: 4.30581499e-03 + syst_JES_EtaIntercalibration_Stat195: 2.83543308e-03 + syst_JES_EtaIntercalibration_Stat196: 2.64265903e-03 + syst_JES_EtaIntercalibration_Stat197: 4.12791747e-03 + syst_JES_EtaIntercalibration_Stat198: 1.86641997e-05 + syst_JES_EtaIntercalibration_Stat199: 9.99012226e-05 + syst_JES_EtaIntercalibration_Stat2: 5.04705776e-04 + syst_JES_EtaIntercalibration_Stat20: 3.57796031e-04 + syst_JES_EtaIntercalibration_Stat200: 5.11526014e-04 + syst_JES_EtaIntercalibration_Stat201: 3.88230291e-04 + syst_JES_EtaIntercalibration_Stat202: 8.82050896e-04 + syst_JES_EtaIntercalibration_Stat203: 5.95281503e-04 + syst_JES_EtaIntercalibration_Stat204: 4.11961019e-05 + syst_JES_EtaIntercalibration_Stat205: 3.12661771e-03 + syst_JES_EtaIntercalibration_Stat206: 1.04233651e-03 + syst_JES_EtaIntercalibration_Stat207: 5.96571192e-04 + syst_JES_EtaIntercalibration_Stat208: 8.77393971e-04 + syst_JES_EtaIntercalibration_Stat209: 4.16830800e-03 + syst_JES_EtaIntercalibration_Stat21: 3.57796031e-04 + syst_JES_EtaIntercalibration_Stat210: 7.21312671e-05 + syst_JES_EtaIntercalibration_Stat211: 3.53511570e-04 + syst_JES_EtaIntercalibration_Stat212: 3.37301721e-05 + syst_JES_EtaIntercalibration_Stat213: 1.38549036e-03 + syst_JES_EtaIntercalibration_Stat214: 5.75473881e-05 + syst_JES_EtaIntercalibration_Stat215: 5.26370240e-06 + syst_JES_EtaIntercalibration_Stat216: 1.94946845e-03 + syst_JES_EtaIntercalibration_Stat217: 6.03458254e-04 + syst_JES_EtaIntercalibration_Stat218: 5.04299970e-04 + syst_JES_EtaIntercalibration_Stat219: 1.37962529e-03 + syst_JES_EtaIntercalibration_Stat22: 3.57796031e-04 + syst_JES_EtaIntercalibration_Stat220: 1.00418626e-04 + syst_JES_EtaIntercalibration_Stat221: 8.39564369e-06 + syst_JES_EtaIntercalibration_Stat222: 1.71228247e-03 + syst_JES_EtaIntercalibration_Stat223: 6.01137056e-04 + syst_JES_EtaIntercalibration_Stat224: 4.19042859e-04 + syst_JES_EtaIntercalibration_Stat225: 4.18685887e-04 + syst_JES_EtaIntercalibration_Stat226: 5.51892993e-04 + syst_JES_EtaIntercalibration_Stat227: 5.36765032e-04 + syst_JES_EtaIntercalibration_Stat228: 5.72718680e-04 + syst_JES_EtaIntercalibration_Stat229: 7.33224841e-04 + syst_JES_EtaIntercalibration_Stat23: 5.04705776e-04 + syst_JES_EtaIntercalibration_Stat230: 2.36443144e-03 + syst_JES_EtaIntercalibration_Stat231: 5.66120806e-05 + syst_JES_EtaIntercalibration_Stat232: 5.29826507e-04 + syst_JES_EtaIntercalibration_Stat233: 5.13033449e-06 + syst_JES_EtaIntercalibration_Stat234: 5.20930685e-06 + syst_JES_EtaIntercalibration_Stat235: 4.78647644e-05 + syst_JES_EtaIntercalibration_Stat236: 3.81876648e-03 + syst_JES_EtaIntercalibration_Stat237: 2.19104427e-04 + syst_JES_EtaIntercalibration_Stat238: 5.93952075e-05 + syst_JES_EtaIntercalibration_Stat239: 3.84388983e-04 + syst_JES_EtaIntercalibration_Stat24: 2.05662413e-02 + syst_JES_EtaIntercalibration_Stat240: 4.28500735e-04 + syst_JES_EtaIntercalibration_Stat241: 2.44918095e-03 + syst_JES_EtaIntercalibration_Stat242: 9.71057191e-05 + syst_JES_EtaIntercalibration_Stat243: 1.17962290e-03 + syst_JES_EtaIntercalibration_Stat244: 9.66190707e-04 + syst_JES_EtaIntercalibration_Stat245: 1.06781190e-03 + syst_JES_EtaIntercalibration_Stat25: 3.01573983e-02 + syst_JES_EtaIntercalibration_Stat26: 3.11491942e-02 + syst_JES_EtaIntercalibration_Stat27: 3.16074011e-02 + syst_JES_EtaIntercalibration_Stat28: 5.01852932e-02 + syst_JES_EtaIntercalibration_Stat29: 4.78269806e-02 + syst_JES_EtaIntercalibration_Stat3: 5.04705776e-04 + syst_JES_EtaIntercalibration_Stat30: 3.17088268e-02 + syst_JES_EtaIntercalibration_Stat31: 5.48640146e-02 + syst_JES_EtaIntercalibration_Stat32: 3.35266289e-02 + syst_JES_EtaIntercalibration_Stat33: 1.60167538e-02 + syst_JES_EtaIntercalibration_Stat34: 5.39875254e-02 + syst_JES_EtaIntercalibration_Stat35: 2.69194479e-02 + syst_JES_EtaIntercalibration_Stat36: 1.84983026e-03 + syst_JES_EtaIntercalibration_Stat37: 1.76238395e-02 + syst_JES_EtaIntercalibration_Stat38: 1.88125246e-02 + syst_JES_EtaIntercalibration_Stat39: 2.04766080e-02 + syst_JES_EtaIntercalibration_Stat4: 6.41076236e-03 + syst_JES_EtaIntercalibration_Stat40: 3.28887716e-02 + syst_JES_EtaIntercalibration_Stat41: 1.94590810e-02 + syst_JES_EtaIntercalibration_Stat42: 6.93664945e-03 + syst_JES_EtaIntercalibration_Stat43: 3.57796031e-04 + syst_JES_EtaIntercalibration_Stat44: 3.57796031e-04 + syst_JES_EtaIntercalibration_Stat45: 2.34357024e-03 + syst_JES_EtaIntercalibration_Stat46: 7.25495746e-02 + syst_JES_EtaIntercalibration_Stat47: 1.20895917e-01 + syst_JES_EtaIntercalibration_Stat48: 1.42253560e-01 + syst_JES_EtaIntercalibration_Stat49: 1.94028368e-01 + syst_JES_EtaIntercalibration_Stat5: 8.63697382e-04 + syst_JES_EtaIntercalibration_Stat50: 1.88786089e-01 + syst_JES_EtaIntercalibration_Stat51: 1.26369421e-01 + syst_JES_EtaIntercalibration_Stat52: 1.42017774e-01 + syst_JES_EtaIntercalibration_Stat53: 1.93924960e-01 + syst_JES_EtaIntercalibration_Stat54: 1.23355945e-01 + syst_JES_EtaIntercalibration_Stat55: 7.78559906e-02 + syst_JES_EtaIntercalibration_Stat56: 9.77529135e-02 + syst_JES_EtaIntercalibration_Stat57: 1.55858077e-01 + syst_JES_EtaIntercalibration_Stat58: 1.62432802e-01 + syst_JES_EtaIntercalibration_Stat59: 1.75809736e-01 + syst_JES_EtaIntercalibration_Stat6: 8.59581658e-04 + syst_JES_EtaIntercalibration_Stat60: 1.51658193e-01 + syst_JES_EtaIntercalibration_Stat61: 1.33736717e-01 + syst_JES_EtaIntercalibration_Stat62: 1.04002228e-01 + syst_JES_EtaIntercalibration_Stat63: 8.73625858e-02 + syst_JES_EtaIntercalibration_Stat64: 4.62024553e-03 + syst_JES_EtaIntercalibration_Stat65: 3.57796031e-04 + syst_JES_EtaIntercalibration_Stat66: 3.57796031e-04 + syst_JES_EtaIntercalibration_Stat67: 4.86254941e-03 + syst_JES_EtaIntercalibration_Stat68: 1.87227123e-01 + syst_JES_EtaIntercalibration_Stat69: 4.29078408e-01 + syst_JES_EtaIntercalibration_Stat7: 3.57796031e-04 + syst_JES_EtaIntercalibration_Stat70: 3.33347176e-01 + syst_JES_EtaIntercalibration_Stat71: 3.68130476e-01 + syst_JES_EtaIntercalibration_Stat72: 3.23677247e-01 + syst_JES_EtaIntercalibration_Stat73: 4.66137481e-01 + syst_JES_EtaIntercalibration_Stat74: 5.50433055e-01 + syst_JES_EtaIntercalibration_Stat75: 4.73899976e-01 + syst_JES_EtaIntercalibration_Stat76: 4.14480723e-01 + syst_JES_EtaIntercalibration_Stat77: 4.83883899e-01 + syst_JES_EtaIntercalibration_Stat78: 4.80637306e-01 + syst_JES_EtaIntercalibration_Stat79: 3.45802342e-01 + syst_JES_EtaIntercalibration_Stat8: 2.19104427e-04 + syst_JES_EtaIntercalibration_Stat80: 6.49246706e-01 + syst_JES_EtaIntercalibration_Stat81: 4.05216396e-01 + syst_JES_EtaIntercalibration_Stat82: 3.99730594e-01 + syst_JES_EtaIntercalibration_Stat83: 4.48494404e-01 + syst_JES_EtaIntercalibration_Stat84: 3.48642178e-01 + syst_JES_EtaIntercalibration_Stat85: 2.21829952e-01 + syst_JES_EtaIntercalibration_Stat86: 1.26249432e-03 + syst_JES_EtaIntercalibration_Stat87: 2.19104427e-04 + syst_JES_EtaIntercalibration_Stat88: 3.65013555e-04 + syst_JES_EtaIntercalibration_Stat89: 1.43653391e-01 + syst_JES_EtaIntercalibration_Stat9: 9.76678294e-04 + syst_JES_EtaIntercalibration_Stat90: 2.20376428e-01 + syst_JES_EtaIntercalibration_Stat91: 2.90702128e-01 + syst_JES_EtaIntercalibration_Stat92: 2.55761310e-01 + syst_JES_EtaIntercalibration_Stat93: 2.33235010e-01 + syst_JES_EtaIntercalibration_Stat94: 2.14588368e-01 + syst_JES_EtaIntercalibration_Stat95: 3.62588786e-01 + syst_JES_EtaIntercalibration_Stat96: 4.38635233e-01 + syst_JES_EtaIntercalibration_Stat97: 4.13890420e-01 + syst_JES_EtaIntercalibration_Stat98: 2.64113285e-01 + syst_JES_EtaIntercalibration_Stat99: 3.09246677e-01 + syst_JES_EtaIntercalibration_TotalStat_MJB: 3.48668941e-03 + syst_JES_Flavour_Comp: 1.58184038e+00 + syst_JES_Flavour_Response: 3.11677602e+01 + syst_JES_Gjet_Generator: 1.80710708e+01 + syst_JES_Gjet_OOC: 1.17317675e+01 + syst_JES_Gjet_Purity: 4.95193134e+00 + syst_JES_Gjet_Stat1: 8.22031313e-02 + syst_JES_Gjet_Stat10: 1.83337578e-01 + syst_JES_Gjet_Stat11: 7.81847735e-02 + syst_JES_Gjet_Stat12: 1.63645455e-02 + syst_JES_Gjet_Stat13: 4.83934996e-03 + syst_JES_Gjet_Stat14: 7.30744081e-11 syst_JES_Gjet_Stat15: 0.0 - syst_JES_Gjet_Stat2: 0.14679130594146236 - syst_JES_Gjet_Stat3: 0.19240120497283797 - syst_JES_Gjet_Stat4: 0.44047536216569483 - syst_JES_Gjet_Stat5: 0.590183554074493 - syst_JES_Gjet_Stat6: 1.2403146294388372 - syst_JES_Gjet_Stat7: 1.4951876136458595 - syst_JES_Gjet_Stat8: 0.45189275276330776 - syst_JES_Gjet_Stat9: 0.10526230713582653 - syst_JES_Gjet_Veto: 3.4048519791615024 - syst_JES_Gjet_dPhi: 1.8491437883517874 - syst_JES_LArESZee: 11.187681842097584 - syst_JES_LArEsmear: 0.9981044634706329 - syst_JES_LAr_JVT: 1.9393859853056585 + syst_JES_Gjet_Stat2: 1.46791306e-01 + syst_JES_Gjet_Stat3: 1.92401205e-01 + syst_JES_Gjet_Stat4: 4.40475362e-01 + syst_JES_Gjet_Stat5: 5.90183554e-01 + syst_JES_Gjet_Stat6: 1.24031463e+00 + syst_JES_Gjet_Stat7: 1.49518761e+00 + syst_JES_Gjet_Stat8: 4.51892753e-01 + syst_JES_Gjet_Stat9: 1.05262307e-01 + syst_JES_Gjet_Veto: 3.40485198e+00 + syst_JES_Gjet_dPhi: 1.84914379e+00 + syst_JES_LArESZee: 1.11876818e+01 + syst_JES_LArEsmear: 9.98104463e-01 + syst_JES_LAr_JVT: 1.93938599e+00 syst_JES_MJB_Alpha: 0.0 - syst_JES_MJB_Asym: 1.6177354542693315e-32 + syst_JES_MJB_Asym: 1.61773545e-32 syst_JES_MJB_Beta: 0.0 - syst_JES_MJB_Fragmentation: 0.009469143625877686 + syst_JES_MJB_Fragmentation: 9.46914363e-03 syst_JES_MJB_Stat1: 0.0 syst_JES_MJB_Stat10: 0.0 syst_JES_MJB_Stat11: 0.0 @@ -20518,335 +20518,335 @@ bins: syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 0.056144426927345156 + syst_JES_MJB_Stat2: 5.61444269e-02 syst_JES_MJB_Stat3: 0.0 - syst_JES_MJB_Stat4: 0.0008644665580576267 - syst_JES_MJB_Stat5: 0.010090064760941823 + syst_JES_MJB_Stat4: 8.64466558e-04 + syst_JES_MJB_Stat5: 1.00900648e-02 syst_JES_MJB_Stat6: 0.0 syst_JES_MJB_Stat7: 0.0 syst_JES_MJB_Stat8: 0.0 syst_JES_MJB_Stat9: 0.0 - syst_JES_MJB_Threshold: 2.0801930198902216e-32 - syst_JES_Pileup_MuOffset: 3.186973485926734e-32 - syst_JES_Pileup_NPVOffset: 1.4284775392003894 - syst_JES_Pileup_Pt_term: 5.632739542176613 - syst_JES_Pileup_Rho_topology: 10.44811469835587 + syst_JES_MJB_Threshold: 2.08019302e-32 + syst_JES_Pileup_MuOffset: 3.18697349e-32 + syst_JES_Pileup_NPVOffset: 1.42847754e+00 + syst_JES_Pileup_Pt_term: 5.63273954e+00 + syst_JES_Pileup_Rho_topology: 1.04481147e+01 syst_JES_PunchThrough_MC15: 0.0 - syst_JES_SingleParticle_HighPt: 8.26183563138362e-06 - syst_JES_Zjet_MC: 17.888836602753123 - syst_JES_Zjet_MuScale: 1.164430232989508 - syst_JES_Zjet_MuSmearID: 0.20190210963484262 - syst_JES_Zjet_MuSmearMS: 0.4606161417058677 - syst_JES_Zjet_OOC: 12.897806121585173 - syst_JES_Zjet_Stat1: 0.32604820575338245 - syst_JES_Zjet_Stat10: 0.8642249981920218 - syst_JES_Zjet_Stat11: 0.15486843842178172 - syst_JES_Zjet_Stat12: 0.18687248994969807 - syst_JES_Zjet_Stat13: 0.009823793122185544 + syst_JES_SingleParticle_HighPt: 8.26183563e-06 + syst_JES_Zjet_MC: 1.78888366e+01 + syst_JES_Zjet_MuScale: 1.16443023e+00 + syst_JES_Zjet_MuSmearID: 2.01902110e-01 + syst_JES_Zjet_MuSmearMS: 4.60616142e-01 + syst_JES_Zjet_OOC: 1.28978061e+01 + syst_JES_Zjet_Stat1: 3.26048206e-01 + syst_JES_Zjet_Stat10: 8.64224998e-01 + syst_JES_Zjet_Stat11: 1.54868438e-01 + syst_JES_Zjet_Stat12: 1.86872490e-01 + syst_JES_Zjet_Stat13: 9.82379312e-03 syst_JES_Zjet_Stat2: 0.0 - syst_JES_Zjet_Stat3: 0.16593046736509842 - syst_JES_Zjet_Stat4: 0.17554334934710572 - syst_JES_Zjet_Stat5: 0.313934208871859 - syst_JES_Zjet_Stat6: 0.7151156829492694 - syst_JES_Zjet_Stat7: 1.0955101585562774 - syst_JES_Zjet_Stat8: 1.4366023484249215 - syst_JES_Zjet_Stat9: 1.489351788530836 - syst_JES_Zjet_Veto: 1.8020660365258538 - syst_JES_Zjet_dPhi: 2.8494983769077673 + syst_JES_Zjet_Stat3: 1.65930467e-01 + syst_JES_Zjet_Stat4: 1.75543349e-01 + syst_JES_Zjet_Stat5: 3.13934209e-01 + syst_JES_Zjet_Stat6: 7.15115683e-01 + syst_JES_Zjet_Stat7: 1.09551016e+00 + syst_JES_Zjet_Stat8: 1.43660235e+00 + syst_JES_Zjet_Stat9: 1.48935179e+00 + syst_JES_Zjet_Veto: 1.80206604e+00 + syst_JES_Zjet_dPhi: 2.84949838e+00 syst_PRW: 0.0 syst_Unfolding_bias: 0.4759 - syst_cleaning: 11.811720482215959 + syst_cleaning: 1.18117205e+01 syst_lumi: 18.25 - stat: 5.253 syst_JER_CROSS_CALIB_FORWARD: 0.3103 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 3.3096804604070162 - syst_JER_NP1: 0.6751938591989711 + syst_JER_NP0: 3.30968046e+00 + syst_JER_NP1: 6.75193859e-01 syst_JER_NP2: 0.0 - syst_JER_NP3: 0.5647246297975679 - syst_JER_NP4: 0.30189645575925533 + syst_JER_NP3: 5.64724630e-01 + syst_JER_NP4: 3.01896456e-01 syst_JER_NP5: 0.0 syst_JER_NP6: 0.0 - syst_JER_NP7: 0.20273654702593707 - syst_JER_NP8: 0.4144762840018714 - syst_JES_EtaIntercalibration_Modelling: 8.304212425028638 - syst_JES_EtaIntercalibration_NonClosure: 3.771327368447348 - syst_JES_EtaIntercalibration_Stat0: 0.0002039295956942003 - syst_JES_EtaIntercalibration_Stat1: 0.0002039295956942003 - syst_JES_EtaIntercalibration_Stat10: 0.0003373724759075642 - syst_JES_EtaIntercalibration_Stat100: 0.13164076116461798 - syst_JES_EtaIntercalibration_Stat101: 0.1132011245527181 - syst_JES_EtaIntercalibration_Stat102: 0.132302521045519 - syst_JES_EtaIntercalibration_Stat103: 0.13563755702238225 - syst_JES_EtaIntercalibration_Stat104: 0.12057792252315513 - syst_JES_EtaIntercalibration_Stat105: 0.08346308944677282 - syst_JES_EtaIntercalibration_Stat106: 0.04330218470239117 - syst_JES_EtaIntercalibration_Stat107: 0.00017900065104630206 - syst_JES_EtaIntercalibration_Stat108: 0.0014826688799256561 - syst_JES_EtaIntercalibration_Stat109: 0.0878358030645818 - syst_JES_EtaIntercalibration_Stat11: 0.006115677456341203 - syst_JES_EtaIntercalibration_Stat110: 0.1220950935746396 - syst_JES_EtaIntercalibration_Stat111: 0.12052670119106389 - syst_JES_EtaIntercalibration_Stat112: 0.1756312329854801 - syst_JES_EtaIntercalibration_Stat113: 0.1384491285635269 - syst_JES_EtaIntercalibration_Stat114: 0.06269077503907573 - syst_JES_EtaIntercalibration_Stat115: 0.2085491069268819 - syst_JES_EtaIntercalibration_Stat116: 0.21536657122218386 - syst_JES_EtaIntercalibration_Stat117: 0.14684517995153945 - syst_JES_EtaIntercalibration_Stat118: 0.12831965584040506 - syst_JES_EtaIntercalibration_Stat119: 0.2101773298907377 - syst_JES_EtaIntercalibration_Stat12: 0.00012488086322571607 - syst_JES_EtaIntercalibration_Stat120: 0.14453882203408192 - syst_JES_EtaIntercalibration_Stat121: 0.15351594965996204 - syst_JES_EtaIntercalibration_Stat122: 0.10467146602584679 - syst_JES_EtaIntercalibration_Stat123: 0.15607297035361375 - syst_JES_EtaIntercalibration_Stat124: 0.1759588801396508 - syst_JES_EtaIntercalibration_Stat125: 0.12520515165120003 - syst_JES_EtaIntercalibration_Stat126: 0.03808881331834847 - syst_JES_EtaIntercalibration_Stat127: 0.0006237349677547348 - syst_JES_EtaIntercalibration_Stat128: 0.06763920368395832 - syst_JES_EtaIntercalibration_Stat129: 0.1629886729193167 - syst_JES_EtaIntercalibration_Stat13: 0.000785125792468952 - syst_JES_EtaIntercalibration_Stat130: 0.15623405094600853 - syst_JES_EtaIntercalibration_Stat131: 0.11907205885513192 - syst_JES_EtaIntercalibration_Stat132: 0.13315725318209293 - syst_JES_EtaIntercalibration_Stat133: 0.09682775118735332 - syst_JES_EtaIntercalibration_Stat134: 0.1597216362143839 - syst_JES_EtaIntercalibration_Stat135: 0.1440952029041911 - syst_JES_EtaIntercalibration_Stat136: 0.06621180634901906 - syst_JES_EtaIntercalibration_Stat137: 0.09295726383666851 - syst_JES_EtaIntercalibration_Stat138: 0.06297754421220314 - syst_JES_EtaIntercalibration_Stat139: 0.09460786264893632 - syst_JES_EtaIntercalibration_Stat14: 0.0008115076031683251 - syst_JES_EtaIntercalibration_Stat140: 0.09270992395639208 - syst_JES_EtaIntercalibration_Stat141: 0.08997365211549434 - syst_JES_EtaIntercalibration_Stat142: 0.05931028072771196 - syst_JES_EtaIntercalibration_Stat143: 0.04985595726691044 - syst_JES_EtaIntercalibration_Stat144: 0.11569202770718472 - syst_JES_EtaIntercalibration_Stat145: 0.038723337924306066 - syst_JES_EtaIntercalibration_Stat146: 0.011702023799326337 - syst_JES_EtaIntercalibration_Stat147: 0.012973060548690891 - syst_JES_EtaIntercalibration_Stat148: 0.008308124729816471 - syst_JES_EtaIntercalibration_Stat149: 0.03646953248946303 - syst_JES_EtaIntercalibration_Stat15: 0.0003311817741060036 - syst_JES_EtaIntercalibration_Stat150: 0.02764847375082393 - syst_JES_EtaIntercalibration_Stat151: 0.045304148816637094 - syst_JES_EtaIntercalibration_Stat152: 0.014792239544774821 - syst_JES_EtaIntercalibration_Stat153: 0.026803486247128375 - syst_JES_EtaIntercalibration_Stat154: 0.03382436818330831 - syst_JES_EtaIntercalibration_Stat155: 0.012942609156611351 - syst_JES_EtaIntercalibration_Stat156: 0.03563656440722086 - syst_JES_EtaIntercalibration_Stat157: 0.028448931971380455 - syst_JES_EtaIntercalibration_Stat158: 0.02639439713272497 - syst_JES_EtaIntercalibration_Stat159: 0.02666883755903133 - syst_JES_EtaIntercalibration_Stat16: 0.002240847167925559 - syst_JES_EtaIntercalibration_Stat160: 0.001157789362319416 - syst_JES_EtaIntercalibration_Stat161: 0.0028376808078957715 - syst_JES_EtaIntercalibration_Stat162: 0.020484856620196296 - syst_JES_EtaIntercalibration_Stat163: 0.02680300204734537 - syst_JES_EtaIntercalibration_Stat164: 0.004702549847689017 - syst_JES_EtaIntercalibration_Stat165: 0.009313643580790495 - syst_JES_EtaIntercalibration_Stat166: 0.001827332774688836 - syst_JES_EtaIntercalibration_Stat167: 0.002262214850539179 - syst_JES_EtaIntercalibration_Stat168: 0.013700790807468013 - syst_JES_EtaIntercalibration_Stat169: 0.0026533282401542406 - syst_JES_EtaIntercalibration_Stat17: 0.000950249276505907 - syst_JES_EtaIntercalibration_Stat170: 0.014779764096561218 - syst_JES_EtaIntercalibration_Stat171: 0.009963955840929847 - syst_JES_EtaIntercalibration_Stat172: 0.003927668774222185 - syst_JES_EtaIntercalibration_Stat173: 0.014008364572640163 - syst_JES_EtaIntercalibration_Stat174: 0.012503681247936544 - syst_JES_EtaIntercalibration_Stat175: 0.005846864544351956 - syst_JES_EtaIntercalibration_Stat176: 0.00994073864207283 - syst_JES_EtaIntercalibration_Stat177: 0.015023495398874391 - syst_JES_EtaIntercalibration_Stat178: 0.01455521867750533 - syst_JES_EtaIntercalibration_Stat179: 0.011193517353807962 - syst_JES_EtaIntercalibration_Stat18: 0.00026022495556729373 - syst_JES_EtaIntercalibration_Stat180: 0.008721184366242925 - syst_JES_EtaIntercalibration_Stat181: 0.003491518076711046 - syst_JES_EtaIntercalibration_Stat182: 0.0026230481900834384 - syst_JES_EtaIntercalibration_Stat183: 0.003888453773674055 - syst_JES_EtaIntercalibration_Stat184: 0.0007954604578481573 - syst_JES_EtaIntercalibration_Stat185: 0.0012146879136222604 - syst_JES_EtaIntercalibration_Stat186: 0.007593139321124037 - syst_JES_EtaIntercalibration_Stat187: 0.007399173518035646 - syst_JES_EtaIntercalibration_Stat188: 0.0027418364283815326 - syst_JES_EtaIntercalibration_Stat189: 0.005080471139569637 - syst_JES_EtaIntercalibration_Stat19: 0.0016575941624836885 - syst_JES_EtaIntercalibration_Stat190: 0.013509506162328806 - syst_JES_EtaIntercalibration_Stat191: 0.006192474303539741 - syst_JES_EtaIntercalibration_Stat192: 0.005824733706359459 - syst_JES_EtaIntercalibration_Stat193: 0.004694101263021496 - syst_JES_EtaIntercalibration_Stat194: 0.006923445601721733 - syst_JES_EtaIntercalibration_Stat195: 0.005146824950394175 - syst_JES_EtaIntercalibration_Stat196: 0.004485705964505476 - syst_JES_EtaIntercalibration_Stat197: 0.0033903622623548653 - syst_JES_EtaIntercalibration_Stat198: 0.000816936073080385 - syst_JES_EtaIntercalibration_Stat199: 0.0009072211458624627 - syst_JES_EtaIntercalibration_Stat2: 0.0002875040695364155 - syst_JES_EtaIntercalibration_Stat20: 0.0002039295956942003 - syst_JES_EtaIntercalibration_Stat200: 0.0016037634582443884 - syst_JES_EtaIntercalibration_Stat201: 0.0008724990931227378 - syst_JES_EtaIntercalibration_Stat202: 0.0011495215956214132 - syst_JES_EtaIntercalibration_Stat203: 0.0007869617319158537 - syst_JES_EtaIntercalibration_Stat204: 0.00048081909279894453 - syst_JES_EtaIntercalibration_Stat205: 0.005178998042401638 - syst_JES_EtaIntercalibration_Stat206: 0.0010353111838959338 - syst_JES_EtaIntercalibration_Stat207: 0.0008260439274033797 - syst_JES_EtaIntercalibration_Stat208: 0.00046581714223501905 - syst_JES_EtaIntercalibration_Stat209: 0.006775208571512762 - syst_JES_EtaIntercalibration_Stat21: 0.0002039295956942003 - syst_JES_EtaIntercalibration_Stat210: 0.00045884354937167853 - syst_JES_EtaIntercalibration_Stat211: 0.0005111278620019827 - syst_JES_EtaIntercalibration_Stat212: 0.0008431533549716801 - syst_JES_EtaIntercalibration_Stat213: 0.0018506503904033307 - syst_JES_EtaIntercalibration_Stat214: 0.000544556773899655 - syst_JES_EtaIntercalibration_Stat215: 0.000502814349435375 - syst_JES_EtaIntercalibration_Stat216: 0.002828540596756568 - syst_JES_EtaIntercalibration_Stat217: 0.0006094875449916922 - syst_JES_EtaIntercalibration_Stat218: 0.0012334564240377526 - syst_JES_EtaIntercalibration_Stat219: 0.0018155016352237195 - syst_JES_EtaIntercalibration_Stat22: 0.0002039295956942003 - syst_JES_EtaIntercalibration_Stat220: 0.0008803862490407264 - syst_JES_EtaIntercalibration_Stat221: 0.0008210924004032676 - syst_JES_EtaIntercalibration_Stat222: 0.0036860421548728928 - syst_JES_EtaIntercalibration_Stat223: 0.0007562215217778453 - syst_JES_EtaIntercalibration_Stat224: 0.0008665008770913044 - syst_JES_EtaIntercalibration_Stat225: 0.0008653989065743036 - syst_JES_EtaIntercalibration_Stat226: 0.000776569924411189 - syst_JES_EtaIntercalibration_Stat227: 0.0007674652093091907 - syst_JES_EtaIntercalibration_Stat228: 0.0008089260102135423 - syst_JES_EtaIntercalibration_Stat229: 0.000998462508059266 - syst_JES_EtaIntercalibration_Stat23: 0.0002875040695364155 - syst_JES_EtaIntercalibration_Stat230: 0.0050747528380700475 - syst_JES_EtaIntercalibration_Stat231: 0.0005439505561170059 - syst_JES_EtaIntercalibration_Stat232: 0.0003784754153178248 - syst_JES_EtaIntercalibration_Stat233: 0.0005028143494372451 - syst_JES_EtaIntercalibration_Stat234: 0.0008237105483724244 - syst_JES_EtaIntercalibration_Stat235: 0.0007991848909983221 - syst_JES_EtaIntercalibration_Stat236: 0.006097876190117343 - syst_JES_EtaIntercalibration_Stat237: 0.00012488086322571607 - syst_JES_EtaIntercalibration_Stat238: 0.0007773222111840109 - syst_JES_EtaIntercalibration_Stat239: 0.0012089905210546524 - syst_JES_EtaIntercalibration_Stat24: 0.011964151460404537 - syst_JES_EtaIntercalibration_Stat240: 0.0009989912562179911 - syst_JES_EtaIntercalibration_Stat241: 0.0036995142529121306 - syst_JES_EtaIntercalibration_Stat242: 0.0008784945233181594 - syst_JES_EtaIntercalibration_Stat243: 0.0014699422029454082 - syst_JES_EtaIntercalibration_Stat244: 0.0011282232669112971 - syst_JES_EtaIntercalibration_Stat245: 0.0013439680678870314 - syst_JES_EtaIntercalibration_Stat25: 0.009091847781391856 - syst_JES_EtaIntercalibration_Stat26: 0.005742640290539426 - syst_JES_EtaIntercalibration_Stat27: 0.015624863615404777 - syst_JES_EtaIntercalibration_Stat28: 0.010111235236112352 - syst_JES_EtaIntercalibration_Stat29: 0.01882283842888739 - syst_JES_EtaIntercalibration_Stat3: 0.0002875040695364155 - syst_JES_EtaIntercalibration_Stat30: 0.004038686265359071 - syst_JES_EtaIntercalibration_Stat31: 0.0016145308265870925 - syst_JES_EtaIntercalibration_Stat32: 0.0015900555807895522 - syst_JES_EtaIntercalibration_Stat33: 0.0003821798365952866 - syst_JES_EtaIntercalibration_Stat34: 0.01388623387495688 - syst_JES_EtaIntercalibration_Stat35: 0.006400601299878004 - syst_JES_EtaIntercalibration_Stat36: 0.0009505494831937998 - syst_JES_EtaIntercalibration_Stat37: 0.009384510870045385 - syst_JES_EtaIntercalibration_Stat38: 0.007202450637630223 - syst_JES_EtaIntercalibration_Stat39: 0.003116917818627081 - syst_JES_EtaIntercalibration_Stat4: 0.0017836301970980421 - syst_JES_EtaIntercalibration_Stat40: 0.006759539390187767 - syst_JES_EtaIntercalibration_Stat41: 0.0015525500571640196 - syst_JES_EtaIntercalibration_Stat42: 0.0017880014282712418 - syst_JES_EtaIntercalibration_Stat43: 0.0002039295956942003 - syst_JES_EtaIntercalibration_Stat44: 0.0002039295956942003 - syst_JES_EtaIntercalibration_Stat45: 0.0005203942039454321 - syst_JES_EtaIntercalibration_Stat46: 0.01948508434675098 - syst_JES_EtaIntercalibration_Stat47: 0.03702522214653141 - syst_JES_EtaIntercalibration_Stat48: 0.044617519821254066 - syst_JES_EtaIntercalibration_Stat49: 0.06402921266890607 - syst_JES_EtaIntercalibration_Stat5: 0.0011951838467365596 - syst_JES_EtaIntercalibration_Stat50: 0.06165402419956057 - syst_JES_EtaIntercalibration_Stat51: 0.0364861710103979 - syst_JES_EtaIntercalibration_Stat52: 0.0496977190120432 - syst_JES_EtaIntercalibration_Stat53: 0.026961666769693596 - syst_JES_EtaIntercalibration_Stat54: 0.0123658857648775 - syst_JES_EtaIntercalibration_Stat55: 0.013843951747965608 - syst_JES_EtaIntercalibration_Stat56: 0.0201764779909676 - syst_JES_EtaIntercalibration_Stat57: 0.04360087269768806 - syst_JES_EtaIntercalibration_Stat58: 0.06501504652770773 - syst_JES_EtaIntercalibration_Stat59: 0.05375446679114211 - syst_JES_EtaIntercalibration_Stat6: 0.0012190310691282647 - syst_JES_EtaIntercalibration_Stat60: 0.04492309094441298 - syst_JES_EtaIntercalibration_Stat61: 0.03765388801969858 - syst_JES_EtaIntercalibration_Stat62: 0.019692667747159092 - syst_JES_EtaIntercalibration_Stat63: 0.022649398998648946 - syst_JES_EtaIntercalibration_Stat64: 0.0004092836058285257 - syst_JES_EtaIntercalibration_Stat65: 0.0002039295956942003 - syst_JES_EtaIntercalibration_Stat66: 0.0002039295956942003 - syst_JES_EtaIntercalibration_Stat67: 0.0018186751304177446 - syst_JES_EtaIntercalibration_Stat68: 0.08386757821112996 - syst_JES_EtaIntercalibration_Stat69: 0.1807001383508048 - syst_JES_EtaIntercalibration_Stat7: 0.0002039295956942003 - syst_JES_EtaIntercalibration_Stat70: 0.12345267949704453 - syst_JES_EtaIntercalibration_Stat71: 0.1628415180474562 - syst_JES_EtaIntercalibration_Stat72: 0.10521269980377844 - syst_JES_EtaIntercalibration_Stat73: 0.1610138736258463 - syst_JES_EtaIntercalibration_Stat74: 0.15039906914605558 - syst_JES_EtaIntercalibration_Stat75: 0.12340349701284804 - syst_JES_EtaIntercalibration_Stat76: 0.0967584631957329 - syst_JES_EtaIntercalibration_Stat77: 0.16307879713500464 - syst_JES_EtaIntercalibration_Stat78: 0.14992668208160947 - syst_JES_EtaIntercalibration_Stat79: 0.13500534017215765 - syst_JES_EtaIntercalibration_Stat8: 0.00012488086322571607 - syst_JES_EtaIntercalibration_Stat80: 0.24741751655854927 - syst_JES_EtaIntercalibration_Stat81: 0.12015868924052059 - syst_JES_EtaIntercalibration_Stat82: 0.12595406186383987 - syst_JES_EtaIntercalibration_Stat83: 0.13963522863160285 - syst_JES_EtaIntercalibration_Stat84: 0.09405312753970492 - syst_JES_EtaIntercalibration_Stat85: 0.07078329799465408 - syst_JES_EtaIntercalibration_Stat86: 0.001011521369027862 - syst_JES_EtaIntercalibration_Stat87: 0.00012488086322571607 - syst_JES_EtaIntercalibration_Stat88: 0.004858889099372407 - syst_JES_EtaIntercalibration_Stat89: 0.07809330829206815 - syst_JES_EtaIntercalibration_Stat9: 0.0003373724759075642 - syst_JES_EtaIntercalibration_Stat90: 0.11787035971778485 - syst_JES_EtaIntercalibration_Stat91: 0.12596683402785036 - syst_JES_EtaIntercalibration_Stat92: 0.1187346398486979 - syst_JES_EtaIntercalibration_Stat93: 0.12529335257706212 - syst_JES_EtaIntercalibration_Stat94: 0.11576001382169922 - syst_JES_EtaIntercalibration_Stat95: 0.12430199143617933 - syst_JES_EtaIntercalibration_Stat96: 0.1276432226951357 - syst_JES_EtaIntercalibration_Stat97: 0.11477334925844064 - syst_JES_EtaIntercalibration_Stat98: 0.10581785140041353 - syst_JES_EtaIntercalibration_Stat99: 0.10227192613322582 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.01243809916144746 - syst_JES_Flavour_Comp: 0.7559017264168669 - syst_JES_Flavour_Response: 14.615384873481776 - syst_JES_Gjet_Generator: 9.296015490520656 - syst_JES_Gjet_OOC: 5.521261540626381 - syst_JES_Gjet_Purity: 2.231075749498434 - syst_JES_Gjet_Stat1: 0.041647161667993655 - syst_JES_Gjet_Stat10: 0.02095782445376532 - syst_JES_Gjet_Stat11: 0.061331928884994 - syst_JES_Gjet_Stat12: 0.028974904227624297 - syst_JES_Gjet_Stat13: 0.008546804709948624 - syst_JES_Gjet_Stat14: 9.756071814167833e-07 + syst_JER_NP7: 2.02736547e-01 + syst_JER_NP8: 4.14476284e-01 + syst_JES_EtaIntercalibration_Modelling: 8.30421243e+00 + syst_JES_EtaIntercalibration_NonClosure: 3.77132737e+00 + syst_JES_EtaIntercalibration_Stat0: 2.03929596e-04 + syst_JES_EtaIntercalibration_Stat1: 2.03929596e-04 + syst_JES_EtaIntercalibration_Stat10: 3.37372476e-04 + syst_JES_EtaIntercalibration_Stat100: 1.31640761e-01 + syst_JES_EtaIntercalibration_Stat101: 1.13201125e-01 + syst_JES_EtaIntercalibration_Stat102: 1.32302521e-01 + syst_JES_EtaIntercalibration_Stat103: 1.35637557e-01 + syst_JES_EtaIntercalibration_Stat104: 1.20577923e-01 + syst_JES_EtaIntercalibration_Stat105: 8.34630894e-02 + syst_JES_EtaIntercalibration_Stat106: 4.33021847e-02 + syst_JES_EtaIntercalibration_Stat107: 1.79000651e-04 + syst_JES_EtaIntercalibration_Stat108: 1.48266888e-03 + syst_JES_EtaIntercalibration_Stat109: 8.78358031e-02 + syst_JES_EtaIntercalibration_Stat11: 6.11567746e-03 + syst_JES_EtaIntercalibration_Stat110: 1.22095094e-01 + syst_JES_EtaIntercalibration_Stat111: 1.20526701e-01 + syst_JES_EtaIntercalibration_Stat112: 1.75631233e-01 + syst_JES_EtaIntercalibration_Stat113: 1.38449129e-01 + syst_JES_EtaIntercalibration_Stat114: 6.26907750e-02 + syst_JES_EtaIntercalibration_Stat115: 2.08549107e-01 + syst_JES_EtaIntercalibration_Stat116: 2.15366571e-01 + syst_JES_EtaIntercalibration_Stat117: 1.46845180e-01 + syst_JES_EtaIntercalibration_Stat118: 1.28319656e-01 + syst_JES_EtaIntercalibration_Stat119: 2.10177330e-01 + syst_JES_EtaIntercalibration_Stat12: 1.24880863e-04 + syst_JES_EtaIntercalibration_Stat120: 1.44538822e-01 + syst_JES_EtaIntercalibration_Stat121: 1.53515950e-01 + syst_JES_EtaIntercalibration_Stat122: 1.04671466e-01 + syst_JES_EtaIntercalibration_Stat123: 1.56072970e-01 + syst_JES_EtaIntercalibration_Stat124: 1.75958880e-01 + syst_JES_EtaIntercalibration_Stat125: 1.25205152e-01 + syst_JES_EtaIntercalibration_Stat126: 3.80888133e-02 + syst_JES_EtaIntercalibration_Stat127: 6.23734968e-04 + syst_JES_EtaIntercalibration_Stat128: 6.76392037e-02 + syst_JES_EtaIntercalibration_Stat129: 1.62988673e-01 + syst_JES_EtaIntercalibration_Stat13: 7.85125792e-04 + syst_JES_EtaIntercalibration_Stat130: 1.56234051e-01 + syst_JES_EtaIntercalibration_Stat131: 1.19072059e-01 + syst_JES_EtaIntercalibration_Stat132: 1.33157253e-01 + syst_JES_EtaIntercalibration_Stat133: 9.68277512e-02 + syst_JES_EtaIntercalibration_Stat134: 1.59721636e-01 + syst_JES_EtaIntercalibration_Stat135: 1.44095203e-01 + syst_JES_EtaIntercalibration_Stat136: 6.62118063e-02 + syst_JES_EtaIntercalibration_Stat137: 9.29572638e-02 + syst_JES_EtaIntercalibration_Stat138: 6.29775442e-02 + syst_JES_EtaIntercalibration_Stat139: 9.46078626e-02 + syst_JES_EtaIntercalibration_Stat14: 8.11507603e-04 + syst_JES_EtaIntercalibration_Stat140: 9.27099240e-02 + syst_JES_EtaIntercalibration_Stat141: 8.99736521e-02 + syst_JES_EtaIntercalibration_Stat142: 5.93102807e-02 + syst_JES_EtaIntercalibration_Stat143: 4.98559573e-02 + syst_JES_EtaIntercalibration_Stat144: 1.15692028e-01 + syst_JES_EtaIntercalibration_Stat145: 3.87233379e-02 + syst_JES_EtaIntercalibration_Stat146: 1.17020238e-02 + syst_JES_EtaIntercalibration_Stat147: 1.29730605e-02 + syst_JES_EtaIntercalibration_Stat148: 8.30812473e-03 + syst_JES_EtaIntercalibration_Stat149: 3.64695325e-02 + syst_JES_EtaIntercalibration_Stat15: 3.31181774e-04 + syst_JES_EtaIntercalibration_Stat150: 2.76484738e-02 + syst_JES_EtaIntercalibration_Stat151: 4.53041488e-02 + syst_JES_EtaIntercalibration_Stat152: 1.47922395e-02 + syst_JES_EtaIntercalibration_Stat153: 2.68034862e-02 + syst_JES_EtaIntercalibration_Stat154: 3.38243682e-02 + syst_JES_EtaIntercalibration_Stat155: 1.29426092e-02 + syst_JES_EtaIntercalibration_Stat156: 3.56365644e-02 + syst_JES_EtaIntercalibration_Stat157: 2.84489320e-02 + syst_JES_EtaIntercalibration_Stat158: 2.63943971e-02 + syst_JES_EtaIntercalibration_Stat159: 2.66688376e-02 + syst_JES_EtaIntercalibration_Stat16: 2.24084717e-03 + syst_JES_EtaIntercalibration_Stat160: 1.15778936e-03 + syst_JES_EtaIntercalibration_Stat161: 2.83768081e-03 + syst_JES_EtaIntercalibration_Stat162: 2.04848566e-02 + syst_JES_EtaIntercalibration_Stat163: 2.68030020e-02 + syst_JES_EtaIntercalibration_Stat164: 4.70254985e-03 + syst_JES_EtaIntercalibration_Stat165: 9.31364358e-03 + syst_JES_EtaIntercalibration_Stat166: 1.82733277e-03 + syst_JES_EtaIntercalibration_Stat167: 2.26221485e-03 + syst_JES_EtaIntercalibration_Stat168: 1.37007908e-02 + syst_JES_EtaIntercalibration_Stat169: 2.65332824e-03 + syst_JES_EtaIntercalibration_Stat17: 9.50249277e-04 + syst_JES_EtaIntercalibration_Stat170: 1.47797641e-02 + syst_JES_EtaIntercalibration_Stat171: 9.96395584e-03 + syst_JES_EtaIntercalibration_Stat172: 3.92766877e-03 + syst_JES_EtaIntercalibration_Stat173: 1.40083646e-02 + syst_JES_EtaIntercalibration_Stat174: 1.25036812e-02 + syst_JES_EtaIntercalibration_Stat175: 5.84686454e-03 + syst_JES_EtaIntercalibration_Stat176: 9.94073864e-03 + syst_JES_EtaIntercalibration_Stat177: 1.50234954e-02 + syst_JES_EtaIntercalibration_Stat178: 1.45552187e-02 + syst_JES_EtaIntercalibration_Stat179: 1.11935174e-02 + syst_JES_EtaIntercalibration_Stat18: 2.60224956e-04 + syst_JES_EtaIntercalibration_Stat180: 8.72118437e-03 + syst_JES_EtaIntercalibration_Stat181: 3.49151808e-03 + syst_JES_EtaIntercalibration_Stat182: 2.62304819e-03 + syst_JES_EtaIntercalibration_Stat183: 3.88845377e-03 + syst_JES_EtaIntercalibration_Stat184: 7.95460458e-04 + syst_JES_EtaIntercalibration_Stat185: 1.21468791e-03 + syst_JES_EtaIntercalibration_Stat186: 7.59313932e-03 + syst_JES_EtaIntercalibration_Stat187: 7.39917352e-03 + syst_JES_EtaIntercalibration_Stat188: 2.74183643e-03 + syst_JES_EtaIntercalibration_Stat189: 5.08047114e-03 + syst_JES_EtaIntercalibration_Stat19: 1.65759416e-03 + syst_JES_EtaIntercalibration_Stat190: 1.35095062e-02 + syst_JES_EtaIntercalibration_Stat191: 6.19247430e-03 + syst_JES_EtaIntercalibration_Stat192: 5.82473371e-03 + syst_JES_EtaIntercalibration_Stat193: 4.69410126e-03 + syst_JES_EtaIntercalibration_Stat194: 6.92344560e-03 + syst_JES_EtaIntercalibration_Stat195: 5.14682495e-03 + syst_JES_EtaIntercalibration_Stat196: 4.48570596e-03 + syst_JES_EtaIntercalibration_Stat197: 3.39036226e-03 + syst_JES_EtaIntercalibration_Stat198: 8.16936073e-04 + syst_JES_EtaIntercalibration_Stat199: 9.07221146e-04 + syst_JES_EtaIntercalibration_Stat2: 2.87504070e-04 + syst_JES_EtaIntercalibration_Stat20: 2.03929596e-04 + syst_JES_EtaIntercalibration_Stat200: 1.60376346e-03 + syst_JES_EtaIntercalibration_Stat201: 8.72499093e-04 + syst_JES_EtaIntercalibration_Stat202: 1.14952160e-03 + syst_JES_EtaIntercalibration_Stat203: 7.86961732e-04 + syst_JES_EtaIntercalibration_Stat204: 4.80819093e-04 + syst_JES_EtaIntercalibration_Stat205: 5.17899804e-03 + syst_JES_EtaIntercalibration_Stat206: 1.03531118e-03 + syst_JES_EtaIntercalibration_Stat207: 8.26043927e-04 + syst_JES_EtaIntercalibration_Stat208: 4.65817142e-04 + syst_JES_EtaIntercalibration_Stat209: 6.77520857e-03 + syst_JES_EtaIntercalibration_Stat21: 2.03929596e-04 + syst_JES_EtaIntercalibration_Stat210: 4.58843549e-04 + syst_JES_EtaIntercalibration_Stat211: 5.11127862e-04 + syst_JES_EtaIntercalibration_Stat212: 8.43153355e-04 + syst_JES_EtaIntercalibration_Stat213: 1.85065039e-03 + syst_JES_EtaIntercalibration_Stat214: 5.44556774e-04 + syst_JES_EtaIntercalibration_Stat215: 5.02814349e-04 + syst_JES_EtaIntercalibration_Stat216: 2.82854060e-03 + syst_JES_EtaIntercalibration_Stat217: 6.09487545e-04 + syst_JES_EtaIntercalibration_Stat218: 1.23345642e-03 + syst_JES_EtaIntercalibration_Stat219: 1.81550164e-03 + syst_JES_EtaIntercalibration_Stat22: 2.03929596e-04 + syst_JES_EtaIntercalibration_Stat220: 8.80386249e-04 + syst_JES_EtaIntercalibration_Stat221: 8.21092400e-04 + syst_JES_EtaIntercalibration_Stat222: 3.68604215e-03 + syst_JES_EtaIntercalibration_Stat223: 7.56221522e-04 + syst_JES_EtaIntercalibration_Stat224: 8.66500877e-04 + syst_JES_EtaIntercalibration_Stat225: 8.65398907e-04 + syst_JES_EtaIntercalibration_Stat226: 7.76569924e-04 + syst_JES_EtaIntercalibration_Stat227: 7.67465209e-04 + syst_JES_EtaIntercalibration_Stat228: 8.08926010e-04 + syst_JES_EtaIntercalibration_Stat229: 9.98462508e-04 + syst_JES_EtaIntercalibration_Stat23: 2.87504070e-04 + syst_JES_EtaIntercalibration_Stat230: 5.07475284e-03 + syst_JES_EtaIntercalibration_Stat231: 5.43950556e-04 + syst_JES_EtaIntercalibration_Stat232: 3.78475415e-04 + syst_JES_EtaIntercalibration_Stat233: 5.02814349e-04 + syst_JES_EtaIntercalibration_Stat234: 8.23710548e-04 + syst_JES_EtaIntercalibration_Stat235: 7.99184891e-04 + syst_JES_EtaIntercalibration_Stat236: 6.09787619e-03 + syst_JES_EtaIntercalibration_Stat237: 1.24880863e-04 + syst_JES_EtaIntercalibration_Stat238: 7.77322211e-04 + syst_JES_EtaIntercalibration_Stat239: 1.20899052e-03 + syst_JES_EtaIntercalibration_Stat24: 1.19641515e-02 + syst_JES_EtaIntercalibration_Stat240: 9.98991256e-04 + syst_JES_EtaIntercalibration_Stat241: 3.69951425e-03 + syst_JES_EtaIntercalibration_Stat242: 8.78494523e-04 + syst_JES_EtaIntercalibration_Stat243: 1.46994220e-03 + syst_JES_EtaIntercalibration_Stat244: 1.12822327e-03 + syst_JES_EtaIntercalibration_Stat245: 1.34396807e-03 + syst_JES_EtaIntercalibration_Stat25: 9.09184778e-03 + syst_JES_EtaIntercalibration_Stat26: 5.74264029e-03 + syst_JES_EtaIntercalibration_Stat27: 1.56248636e-02 + syst_JES_EtaIntercalibration_Stat28: 1.01112352e-02 + syst_JES_EtaIntercalibration_Stat29: 1.88228384e-02 + syst_JES_EtaIntercalibration_Stat3: 2.87504070e-04 + syst_JES_EtaIntercalibration_Stat30: 4.03868627e-03 + syst_JES_EtaIntercalibration_Stat31: 1.61453083e-03 + syst_JES_EtaIntercalibration_Stat32: 1.59005558e-03 + syst_JES_EtaIntercalibration_Stat33: 3.82179837e-04 + syst_JES_EtaIntercalibration_Stat34: 1.38862339e-02 + syst_JES_EtaIntercalibration_Stat35: 6.40060130e-03 + syst_JES_EtaIntercalibration_Stat36: 9.50549483e-04 + syst_JES_EtaIntercalibration_Stat37: 9.38451087e-03 + syst_JES_EtaIntercalibration_Stat38: 7.20245064e-03 + syst_JES_EtaIntercalibration_Stat39: 3.11691782e-03 + syst_JES_EtaIntercalibration_Stat4: 1.78363020e-03 + syst_JES_EtaIntercalibration_Stat40: 6.75953939e-03 + syst_JES_EtaIntercalibration_Stat41: 1.55255006e-03 + syst_JES_EtaIntercalibration_Stat42: 1.78800143e-03 + syst_JES_EtaIntercalibration_Stat43: 2.03929596e-04 + syst_JES_EtaIntercalibration_Stat44: 2.03929596e-04 + syst_JES_EtaIntercalibration_Stat45: 5.20394204e-04 + syst_JES_EtaIntercalibration_Stat46: 1.94850843e-02 + syst_JES_EtaIntercalibration_Stat47: 3.70252221e-02 + syst_JES_EtaIntercalibration_Stat48: 4.46175198e-02 + syst_JES_EtaIntercalibration_Stat49: 6.40292127e-02 + syst_JES_EtaIntercalibration_Stat5: 1.19518385e-03 + syst_JES_EtaIntercalibration_Stat50: 6.16540242e-02 + syst_JES_EtaIntercalibration_Stat51: 3.64861710e-02 + syst_JES_EtaIntercalibration_Stat52: 4.96977190e-02 + syst_JES_EtaIntercalibration_Stat53: 2.69616668e-02 + syst_JES_EtaIntercalibration_Stat54: 1.23658858e-02 + syst_JES_EtaIntercalibration_Stat55: 1.38439517e-02 + syst_JES_EtaIntercalibration_Stat56: 2.01764780e-02 + syst_JES_EtaIntercalibration_Stat57: 4.36008727e-02 + syst_JES_EtaIntercalibration_Stat58: 6.50150465e-02 + syst_JES_EtaIntercalibration_Stat59: 5.37544668e-02 + syst_JES_EtaIntercalibration_Stat6: 1.21903107e-03 + syst_JES_EtaIntercalibration_Stat60: 4.49230909e-02 + syst_JES_EtaIntercalibration_Stat61: 3.76538880e-02 + syst_JES_EtaIntercalibration_Stat62: 1.96926677e-02 + syst_JES_EtaIntercalibration_Stat63: 2.26493990e-02 + syst_JES_EtaIntercalibration_Stat64: 4.09283606e-04 + syst_JES_EtaIntercalibration_Stat65: 2.03929596e-04 + syst_JES_EtaIntercalibration_Stat66: 2.03929596e-04 + syst_JES_EtaIntercalibration_Stat67: 1.81867513e-03 + syst_JES_EtaIntercalibration_Stat68: 8.38675782e-02 + syst_JES_EtaIntercalibration_Stat69: 1.80700138e-01 + syst_JES_EtaIntercalibration_Stat7: 2.03929596e-04 + syst_JES_EtaIntercalibration_Stat70: 1.23452679e-01 + syst_JES_EtaIntercalibration_Stat71: 1.62841518e-01 + syst_JES_EtaIntercalibration_Stat72: 1.05212700e-01 + syst_JES_EtaIntercalibration_Stat73: 1.61013874e-01 + syst_JES_EtaIntercalibration_Stat74: 1.50399069e-01 + syst_JES_EtaIntercalibration_Stat75: 1.23403497e-01 + syst_JES_EtaIntercalibration_Stat76: 9.67584632e-02 + syst_JES_EtaIntercalibration_Stat77: 1.63078797e-01 + syst_JES_EtaIntercalibration_Stat78: 1.49926682e-01 + syst_JES_EtaIntercalibration_Stat79: 1.35005340e-01 + syst_JES_EtaIntercalibration_Stat8: 1.24880863e-04 + syst_JES_EtaIntercalibration_Stat80: 2.47417517e-01 + syst_JES_EtaIntercalibration_Stat81: 1.20158689e-01 + syst_JES_EtaIntercalibration_Stat82: 1.25954062e-01 + syst_JES_EtaIntercalibration_Stat83: 1.39635229e-01 + syst_JES_EtaIntercalibration_Stat84: 9.40531275e-02 + syst_JES_EtaIntercalibration_Stat85: 7.07832980e-02 + syst_JES_EtaIntercalibration_Stat86: 1.01152137e-03 + syst_JES_EtaIntercalibration_Stat87: 1.24880863e-04 + syst_JES_EtaIntercalibration_Stat88: 4.85888910e-03 + syst_JES_EtaIntercalibration_Stat89: 7.80933083e-02 + syst_JES_EtaIntercalibration_Stat9: 3.37372476e-04 + syst_JES_EtaIntercalibration_Stat90: 1.17870360e-01 + syst_JES_EtaIntercalibration_Stat91: 1.25966834e-01 + syst_JES_EtaIntercalibration_Stat92: 1.18734640e-01 + syst_JES_EtaIntercalibration_Stat93: 1.25293353e-01 + syst_JES_EtaIntercalibration_Stat94: 1.15760014e-01 + syst_JES_EtaIntercalibration_Stat95: 1.24301991e-01 + syst_JES_EtaIntercalibration_Stat96: 1.27643223e-01 + syst_JES_EtaIntercalibration_Stat97: 1.14773349e-01 + syst_JES_EtaIntercalibration_Stat98: 1.05817851e-01 + syst_JES_EtaIntercalibration_Stat99: 1.02271926e-01 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.24380992e-02 + syst_JES_Flavour_Comp: 7.55901726e-01 + syst_JES_Flavour_Response: 1.46153849e+01 + syst_JES_Gjet_Generator: 9.29601549e+00 + syst_JES_Gjet_OOC: 5.52126154e+00 + syst_JES_Gjet_Purity: 2.23107575e+00 + syst_JES_Gjet_Stat1: 4.16471617e-02 + syst_JES_Gjet_Stat10: 2.09578245e-02 + syst_JES_Gjet_Stat11: 6.13319289e-02 + syst_JES_Gjet_Stat12: 2.89749042e-02 + syst_JES_Gjet_Stat13: 8.54680471e-03 + syst_JES_Gjet_Stat14: 9.75607181e-07 syst_JES_Gjet_Stat15: 0.0 - syst_JES_Gjet_Stat2: 0.0260673646539116 - syst_JES_Gjet_Stat3: 0.04264109600784201 - syst_JES_Gjet_Stat4: 0.15945294564541604 - syst_JES_Gjet_Stat5: 0.21457261591358762 - syst_JES_Gjet_Stat6: 0.4382725265174627 - syst_JES_Gjet_Stat7: 0.7608263665252409 - syst_JES_Gjet_Stat8: 0.26013233170830574 - syst_JES_Gjet_Stat9: 0.1850093330368768 - syst_JES_Gjet_Veto: 1.8131081048850892 - syst_JES_Gjet_dPhi: 0.9520312744337761 - syst_JES_LArESZee: 6.204165052607804 - syst_JES_LArEsmear: 0.5600590392985367 - syst_JES_LAr_JVT: 1.0740437002282543 + syst_JES_Gjet_Stat2: 2.60673647e-02 + syst_JES_Gjet_Stat3: 4.26410960e-02 + syst_JES_Gjet_Stat4: 1.59452946e-01 + syst_JES_Gjet_Stat5: 2.14572616e-01 + syst_JES_Gjet_Stat6: 4.38272527e-01 + syst_JES_Gjet_Stat7: 7.60826367e-01 + syst_JES_Gjet_Stat8: 2.60132332e-01 + syst_JES_Gjet_Stat9: 1.85009333e-01 + syst_JES_Gjet_Veto: 1.81310810e+00 + syst_JES_Gjet_dPhi: 9.52031274e-01 + syst_JES_LArESZee: 6.20416505e+00 + syst_JES_LArEsmear: 5.60059039e-01 + syst_JES_LAr_JVT: 1.07404370e+00 syst_JES_MJB_Alpha: 0.0 - syst_JES_MJB_Asym: 3.4276419456384295e-20 + syst_JES_MJB_Asym: 3.42764195e-20 syst_JES_MJB_Beta: 0.0 - syst_JES_MJB_Fragmentation: 0.018475616363196116 + syst_JES_MJB_Fragmentation: 1.84756164e-02 syst_JES_MJB_Stat1: 0.0 syst_JES_MJB_Stat10: 0.0 syst_JES_MJB_Stat11: 0.0 @@ -20855,335 +20855,335 @@ bins: syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 0.0288559664540975 - syst_JES_MJB_Stat3: 1.6809553087455954e-41 - syst_JES_MJB_Stat4: 0.0005753006757340027 - syst_JES_MJB_Stat5: 0.005153378630325935 + syst_JES_MJB_Stat2: 2.88559665e-02 + syst_JES_MJB_Stat3: 1.68095531e-41 + syst_JES_MJB_Stat4: 5.75300676e-04 + syst_JES_MJB_Stat5: 5.15337863e-03 syst_JES_MJB_Stat6: 0.0 syst_JES_MJB_Stat7: 0.0 syst_JES_MJB_Stat8: 0.0 syst_JES_MJB_Stat9: 0.0 - syst_JES_MJB_Threshold: 4.4063372544552235e-20 - syst_JES_Pileup_MuOffset: 6.751534043123024e-20 - syst_JES_Pileup_NPVOffset: 0.6903710524058783 - syst_JES_Pileup_Pt_term: 2.396634045906884 - syst_JES_Pileup_Rho_topology: 4.482187272972873 - syst_JES_PunchThrough_MC15: 3.392002653300849e-29 - syst_JES_SingleParticle_HighPt: 0.0008212338156700562 - syst_JES_Zjet_MC: 8.626508375350946 - syst_JES_Zjet_MuScale: 0.5603500044614973 - syst_JES_Zjet_MuSmearID: 0.0671959887195657 - syst_JES_Zjet_MuSmearMS: 0.2971482290036405 - syst_JES_Zjet_OOC: 5.066560445706732 - syst_JES_Zjet_Stat1: 0.08487372325991126 - syst_JES_Zjet_Stat10: 0.7633059216329976 - syst_JES_Zjet_Stat11: 0.14218956466632843 - syst_JES_Zjet_Stat12: 0.11239070557657337 - syst_JES_Zjet_Stat13: 0.01891400737548762 + syst_JES_MJB_Threshold: 4.40633725e-20 + syst_JES_Pileup_MuOffset: 6.75153404e-20 + syst_JES_Pileup_NPVOffset: 6.90371052e-01 + syst_JES_Pileup_Pt_term: 2.39663405e+00 + syst_JES_Pileup_Rho_topology: 4.48218727e+00 + syst_JES_PunchThrough_MC15: 3.39200265e-29 + syst_JES_SingleParticle_HighPt: 8.21233816e-04 + syst_JES_Zjet_MC: 8.62650838e+00 + syst_JES_Zjet_MuScale: 5.60350004e-01 + syst_JES_Zjet_MuSmearID: 6.71959887e-02 + syst_JES_Zjet_MuSmearMS: 2.97148229e-01 + syst_JES_Zjet_OOC: 5.06656045e+00 + syst_JES_Zjet_Stat1: 8.48737233e-02 + syst_JES_Zjet_Stat10: 7.63305922e-01 + syst_JES_Zjet_Stat11: 1.42189565e-01 + syst_JES_Zjet_Stat12: 1.12390706e-01 + syst_JES_Zjet_Stat13: 1.89140074e-02 syst_JES_Zjet_Stat2: 0.0 - syst_JES_Zjet_Stat3: 0.029453523982708757 - syst_JES_Zjet_Stat4: 0.053173959792364535 - syst_JES_Zjet_Stat5: 0.09207582093036151 - syst_JES_Zjet_Stat6: 0.2404003067801703 - syst_JES_Zjet_Stat7: 0.3468389117443427 - syst_JES_Zjet_Stat8: 0.6417694348440101 - syst_JES_Zjet_Stat9: 0.8412788167427014 - syst_JES_Zjet_Veto: 0.8441106740232586 - syst_JES_Zjet_dPhi: 1.1433683516260191 + syst_JES_Zjet_Stat3: 2.94535240e-02 + syst_JES_Zjet_Stat4: 5.31739598e-02 + syst_JES_Zjet_Stat5: 9.20758209e-02 + syst_JES_Zjet_Stat6: 2.40400307e-01 + syst_JES_Zjet_Stat7: 3.46838912e-01 + syst_JES_Zjet_Stat8: 6.41769435e-01 + syst_JES_Zjet_Stat9: 8.41278817e-01 + syst_JES_Zjet_Veto: 8.44110674e-01 + syst_JES_Zjet_dPhi: 1.14336835e+00 syst_PRW: 0.0 syst_Unfolding_bias: 0.38563 - syst_cleaning: 5.156315254132547 + syst_cleaning: 5.15631525e+00 syst_lumi: 9.382 - stat: 2.3129 syst_JER_CROSS_CALIB_FORWARD: 0.14114 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 1.2551508385449137 - syst_JER_NP1: 0.28465018584220175 + syst_JER_NP0: 1.25515084e+00 + syst_JER_NP1: 2.84650186e-01 syst_JER_NP2: 0.0 - syst_JER_NP3: 0.30035543943800985 - syst_JER_NP4: 0.14835015166827434 + syst_JER_NP3: 3.00355439e-01 + syst_JER_NP4: 1.48350152e-01 syst_JER_NP5: 0.0 syst_JER_NP6: 0.0 - syst_JER_NP7: 0.09965354321347536 - syst_JER_NP8: 0.18067549999930815 - syst_JES_EtaIntercalibration_Modelling: 3.991874111241486 - syst_JES_EtaIntercalibration_NonClosure: 1.8265307963459034 - syst_JES_EtaIntercalibration_Stat0: 1.8346592544666162e-05 - syst_JES_EtaIntercalibration_Stat1: 1.8346592544666162e-05 - syst_JES_EtaIntercalibration_Stat10: 0.00021817179715765284 - syst_JES_EtaIntercalibration_Stat100: 0.0476877405629581 - syst_JES_EtaIntercalibration_Stat101: 0.023673772407455475 - syst_JES_EtaIntercalibration_Stat102: 0.04524183020170603 - syst_JES_EtaIntercalibration_Stat103: 0.05532804239262402 - syst_JES_EtaIntercalibration_Stat104: 0.04380767881319438 - syst_JES_EtaIntercalibration_Stat105: 0.039661187576773345 - syst_JES_EtaIntercalibration_Stat106: 0.028555197547907106 - syst_JES_EtaIntercalibration_Stat107: 0.0018996403732251537 - syst_JES_EtaIntercalibration_Stat108: 0.001814971412998012 - syst_JES_EtaIntercalibration_Stat109: 0.058972558660787315 - syst_JES_EtaIntercalibration_Stat11: 0.004050796181379038 - syst_JES_EtaIntercalibration_Stat110: 0.09747186824925436 - syst_JES_EtaIntercalibration_Stat111: 0.05861042974590785 - syst_JES_EtaIntercalibration_Stat112: 0.12046989499455871 - syst_JES_EtaIntercalibration_Stat113: 0.07363260554944392 - syst_JES_EtaIntercalibration_Stat114: 0.038585770693352756 - syst_JES_EtaIntercalibration_Stat115: 0.13639568202476204 - syst_JES_EtaIntercalibration_Stat116: 0.1336413696240801 - syst_JES_EtaIntercalibration_Stat117: 0.09935272152789777 - syst_JES_EtaIntercalibration_Stat118: 0.09000768411641308 - syst_JES_EtaIntercalibration_Stat119: 0.09644847575260067 - syst_JES_EtaIntercalibration_Stat12: 1.1234947563295523e-05 - syst_JES_EtaIntercalibration_Stat120: 0.10826161785231181 - syst_JES_EtaIntercalibration_Stat121: 0.08384490726931482 - syst_JES_EtaIntercalibration_Stat122: 0.06776634323172528 - syst_JES_EtaIntercalibration_Stat123: 0.09477783008172322 - syst_JES_EtaIntercalibration_Stat124: 0.1011343902933122 - syst_JES_EtaIntercalibration_Stat125: 0.07632303453086754 - syst_JES_EtaIntercalibration_Stat126: 0.053464203912524495 - syst_JES_EtaIntercalibration_Stat127: 0.0016954302486988369 - syst_JES_EtaIntercalibration_Stat128: 0.06771850319521246 - syst_JES_EtaIntercalibration_Stat129: 0.13474163944378886 - syst_JES_EtaIntercalibration_Stat13: 0.0003984914172184264 - syst_JES_EtaIntercalibration_Stat130: 0.19306397980980294 - syst_JES_EtaIntercalibration_Stat131: 0.14066473438641258 - syst_JES_EtaIntercalibration_Stat132: 0.06992389291222278 - syst_JES_EtaIntercalibration_Stat133: 0.06727861974654356 - syst_JES_EtaIntercalibration_Stat134: 0.1418256348478652 - syst_JES_EtaIntercalibration_Stat135: 0.10069428521519977 - syst_JES_EtaIntercalibration_Stat136: 0.07145760211482051 - syst_JES_EtaIntercalibration_Stat137: 0.07545001126573807 - syst_JES_EtaIntercalibration_Stat138: 0.1052165395743464 - syst_JES_EtaIntercalibration_Stat139: 0.10136046714572698 - syst_JES_EtaIntercalibration_Stat14: 0.00041156392692600014 - syst_JES_EtaIntercalibration_Stat140: 0.0835739480938887 - syst_JES_EtaIntercalibration_Stat141: 0.06206516253100446 - syst_JES_EtaIntercalibration_Stat142: 0.09569609226608994 - syst_JES_EtaIntercalibration_Stat143: 0.026458242572022804 - syst_JES_EtaIntercalibration_Stat144: 0.18528634785110315 - syst_JES_EtaIntercalibration_Stat145: 0.010827289272943621 - syst_JES_EtaIntercalibration_Stat146: 0.005572058394345846 - syst_JES_EtaIntercalibration_Stat147: 0.023443307680444753 - syst_JES_EtaIntercalibration_Stat148: 0.004131184753493845 - syst_JES_EtaIntercalibration_Stat149: 0.01121496669489036 - syst_JES_EtaIntercalibration_Stat15: 0.00021907976526085198 - syst_JES_EtaIntercalibration_Stat150: 0.013965060928975568 - syst_JES_EtaIntercalibration_Stat151: 0.020863750861242567 - syst_JES_EtaIntercalibration_Stat152: 0.03414035329342682 - syst_JES_EtaIntercalibration_Stat153: 0.028535537054697253 - syst_JES_EtaIntercalibration_Stat154: 0.055250485235425764 - syst_JES_EtaIntercalibration_Stat155: 0.016749418040263368 - syst_JES_EtaIntercalibration_Stat156: 0.018731924907761082 - syst_JES_EtaIntercalibration_Stat157: 0.021115768734164046 - syst_JES_EtaIntercalibration_Stat158: 0.022904681852189083 - syst_JES_EtaIntercalibration_Stat159: 0.013198058208217602 - syst_JES_EtaIntercalibration_Stat16: 0.00012815616780611849 - syst_JES_EtaIntercalibration_Stat160: 0.00017086681216666973 - syst_JES_EtaIntercalibration_Stat161: 0.004269839692541162 - syst_JES_EtaIntercalibration_Stat162: 0.024211121411450567 - syst_JES_EtaIntercalibration_Stat163: 0.007853994700151 - syst_JES_EtaIntercalibration_Stat164: 0.0023952606267377253 - syst_JES_EtaIntercalibration_Stat165: 0.01004683248591316 - syst_JES_EtaIntercalibration_Stat166: 0.005604866495287823 - syst_JES_EtaIntercalibration_Stat167: 0.004972296049110512 - syst_JES_EtaIntercalibration_Stat168: 0.005810197479432175 - syst_JES_EtaIntercalibration_Stat169: 0.0011466158947092964 - syst_JES_EtaIntercalibration_Stat17: 0.000452301721752195 - syst_JES_EtaIntercalibration_Stat170: 0.0039701695177914 - syst_JES_EtaIntercalibration_Stat171: 0.022569303755322186 - syst_JES_EtaIntercalibration_Stat172: 0.007978252487230521 - syst_JES_EtaIntercalibration_Stat173: 0.007487361668171239 - syst_JES_EtaIntercalibration_Stat174: 0.005908811449860285 - syst_JES_EtaIntercalibration_Stat175: 0.013237715087959855 - syst_JES_EtaIntercalibration_Stat176: 0.0019955243621664963 - syst_JES_EtaIntercalibration_Stat177: 0.010360778011327142 - syst_JES_EtaIntercalibration_Stat178: 0.007764391605270821 - syst_JES_EtaIntercalibration_Stat179: 0.00814690154291802 - syst_JES_EtaIntercalibration_Stat18: 2.340861629293795e-05 - syst_JES_EtaIntercalibration_Stat180: 0.004010877099525738 - syst_JES_EtaIntercalibration_Stat181: 0.005223714267645197 - syst_JES_EtaIntercalibration_Stat182: 0.004707009242342743 - syst_JES_EtaIntercalibration_Stat183: 0.0017933473589910017 - syst_JES_EtaIntercalibration_Stat184: 0.002748303263833888 - syst_JES_EtaIntercalibration_Stat185: 0.003423051672119485 - syst_JES_EtaIntercalibration_Stat186: 0.005886408306429312 - syst_JES_EtaIntercalibration_Stat187: 0.010415604975228273 - syst_JES_EtaIntercalibration_Stat188: 0.001808261043101908 - syst_JES_EtaIntercalibration_Stat189: 0.003393569912348941 - syst_JES_EtaIntercalibration_Stat19: 9.364394252699957e-05 - syst_JES_EtaIntercalibration_Stat190: 0.015423035825267993 - syst_JES_EtaIntercalibration_Stat191: 0.0055437024406077215 - syst_JES_EtaIntercalibration_Stat192: 0.0037613440510009186 - syst_JES_EtaIntercalibration_Stat193: 0.006563159052620925 - syst_JES_EtaIntercalibration_Stat194: 0.0016559355988383124 - syst_JES_EtaIntercalibration_Stat195: 0.0038796697678410725 - syst_JES_EtaIntercalibration_Stat196: 0.002935757823799504 - syst_JES_EtaIntercalibration_Stat197: 0.0017657998187790146 - syst_JES_EtaIntercalibration_Stat198: 0.0006049301529928889 - syst_JES_EtaIntercalibration_Stat199: 0.0003947449904685302 - syst_JES_EtaIntercalibration_Stat2: 2.5870797566947952e-05 - syst_JES_EtaIntercalibration_Stat20: 1.8346592544666162e-05 - syst_JES_EtaIntercalibration_Stat200: 0.0007921146507924217 - syst_JES_EtaIntercalibration_Stat201: 0.0006918890301197152 - syst_JES_EtaIntercalibration_Stat202: 0.0010311519044253375 - syst_JES_EtaIntercalibration_Stat203: 0.00040895374738471346 - syst_JES_EtaIntercalibration_Stat204: 0.0008670556080782823 - syst_JES_EtaIntercalibration_Stat205: 0.0029486199767857504 - syst_JES_EtaIntercalibration_Stat206: 0.0005876204621181941 - syst_JES_EtaIntercalibration_Stat207: 0.001085911308533068 - syst_JES_EtaIntercalibration_Stat208: 0.00022482789573360332 - syst_JES_EtaIntercalibration_Stat209: 0.004423451895296251 - syst_JES_EtaIntercalibration_Stat21: 1.8346592544666162e-05 - syst_JES_EtaIntercalibration_Stat210: 0.000270233074955676 - syst_JES_EtaIntercalibration_Stat211: 0.00020111187043720218 - syst_JES_EtaIntercalibration_Stat212: 0.0004279441639980618 - syst_JES_EtaIntercalibration_Stat213: 0.001270059332275465 - syst_JES_EtaIntercalibration_Stat214: 0.0002764353088879928 - syst_JES_EtaIntercalibration_Stat215: 0.00025755563194416813 - syst_JES_EtaIntercalibration_Stat216: 0.0019083150368846332 - syst_JES_EtaIntercalibration_Stat217: 0.00041514263512677183 - syst_JES_EtaIntercalibration_Stat218: 0.0007229683395557512 - syst_JES_EtaIntercalibration_Stat219: 0.0012478918342548764 - syst_JES_EtaIntercalibration_Stat22: 1.8346592544666162e-05 - syst_JES_EtaIntercalibration_Stat220: 0.00044702443725147734 - syst_JES_EtaIntercalibration_Stat221: 0.0004166980531511997 - syst_JES_EtaIntercalibration_Stat222: 0.0022866139432276274 - syst_JES_EtaIntercalibration_Stat223: 0.00039813345438433073 - syst_JES_EtaIntercalibration_Stat224: 0.00045306616238690786 - syst_JES_EtaIntercalibration_Stat225: 0.0004524237283786075 - syst_JES_EtaIntercalibration_Stat226: 0.00040797932239269185 - syst_JES_EtaIntercalibration_Stat227: 0.0004035853905928707 - syst_JES_EtaIntercalibration_Stat228: 0.0004241563950950168 - syst_JES_EtaIntercalibration_Stat229: 0.0006534275533676247 - syst_JES_EtaIntercalibration_Stat23: 2.5870797566947952e-05 - syst_JES_EtaIntercalibration_Stat230: 0.0031917946844212896 - syst_JES_EtaIntercalibration_Stat231: 0.0002761755012668575 - syst_JES_EtaIntercalibration_Stat232: 0.0002476974767735836 - syst_JES_EtaIntercalibration_Stat233: 0.00025521768649527406 - syst_JES_EtaIntercalibration_Stat234: 0.00041818391886824145 - syst_JES_EtaIntercalibration_Stat235: 0.00040574505234198486 - syst_JES_EtaIntercalibration_Stat236: 0.004026495655964377 - syst_JES_EtaIntercalibration_Stat237: 1.1234947563295523e-05 - syst_JES_EtaIntercalibration_Stat238: 0.0003851732207721612 - syst_JES_EtaIntercalibration_Stat239: 0.0006779393833522286 - syst_JES_EtaIntercalibration_Stat24: 0.0057845380973764885 - syst_JES_EtaIntercalibration_Stat240: 0.0005749730145841629 - syst_JES_EtaIntercalibration_Stat241: 0.002469329343668033 - syst_JES_EtaIntercalibration_Stat242: 0.00044600792313590127 - syst_JES_EtaIntercalibration_Stat243: 0.0010203742989707257 - syst_JES_EtaIntercalibration_Stat244: 0.0007911495228463453 - syst_JES_EtaIntercalibration_Stat245: 0.0009321964425484578 - syst_JES_EtaIntercalibration_Stat25: 0.0017695816475935778 - syst_JES_EtaIntercalibration_Stat26: 0.0005864805793886103 - syst_JES_EtaIntercalibration_Stat27: 0.004363047257078474 - syst_JES_EtaIntercalibration_Stat28: 0.0017382727655635638 - syst_JES_EtaIntercalibration_Stat29: 0.0031959240214216606 - syst_JES_EtaIntercalibration_Stat3: 2.5870797566947952e-05 - syst_JES_EtaIntercalibration_Stat30: 0.00021123453197808355 - syst_JES_EtaIntercalibration_Stat31: 0.0015918072959689564 - syst_JES_EtaIntercalibration_Stat32: 0.0008053267783949569 - syst_JES_EtaIntercalibration_Stat33: 0.000267803827455845 - syst_JES_EtaIntercalibration_Stat34: 0.0040041612392609765 - syst_JES_EtaIntercalibration_Stat35: 0.001226549110309082 - syst_JES_EtaIntercalibration_Stat36: 0.00045734801573856204 - syst_JES_EtaIntercalibration_Stat37: 0.0029902395807025225 - syst_JES_EtaIntercalibration_Stat38: 0.002629439428376322 - syst_JES_EtaIntercalibration_Stat39: 0.0005634454254850241 - syst_JES_EtaIntercalibration_Stat4: 0.00015272271424627705 - syst_JES_EtaIntercalibration_Stat40: 0.0007595298282490294 - syst_JES_EtaIntercalibration_Stat41: 0.0017186243197103896 - syst_JES_EtaIntercalibration_Stat42: 0.0001509231370830861 - syst_JES_EtaIntercalibration_Stat43: 1.8346592544666162e-05 - syst_JES_EtaIntercalibration_Stat44: 1.8346592544666162e-05 - syst_JES_EtaIntercalibration_Stat45: 0.0001838574302958681 - syst_JES_EtaIntercalibration_Stat46: 0.008126359805441795 - syst_JES_EtaIntercalibration_Stat47: 0.010026108055970671 - syst_JES_EtaIntercalibration_Stat48: 0.011839254537343136 - syst_JES_EtaIntercalibration_Stat49: 0.012280616067608335 - syst_JES_EtaIntercalibration_Stat5: 0.0002806400689437451 - syst_JES_EtaIntercalibration_Stat50: 0.00931601132459595 - syst_JES_EtaIntercalibration_Stat51: 0.006652874756073498 - syst_JES_EtaIntercalibration_Stat52: 0.006979400744333284 - syst_JES_EtaIntercalibration_Stat53: 0.007066986822543253 - syst_JES_EtaIntercalibration_Stat54: 0.0017670971754547061 - syst_JES_EtaIntercalibration_Stat55: 0.00577841972168862 - syst_JES_EtaIntercalibration_Stat56: 0.005332649716604307 - syst_JES_EtaIntercalibration_Stat57: 0.010351679428962242 - syst_JES_EtaIntercalibration_Stat58: 0.015085409242045772 - syst_JES_EtaIntercalibration_Stat59: 0.015374333180661854 - syst_JES_EtaIntercalibration_Stat6: 0.00028246305718624516 - syst_JES_EtaIntercalibration_Stat60: 0.015246910080406456 - syst_JES_EtaIntercalibration_Stat61: 0.010965146784243245 - syst_JES_EtaIntercalibration_Stat62: 0.006144755053702304 - syst_JES_EtaIntercalibration_Stat63: 0.005274123694984788 - syst_JES_EtaIntercalibration_Stat64: 1.8654187197516807e-05 - syst_JES_EtaIntercalibration_Stat65: 1.8346592544666162e-05 - syst_JES_EtaIntercalibration_Stat66: 1.8346592544666162e-05 - syst_JES_EtaIntercalibration_Stat67: 0.0007071410480766903 - syst_JES_EtaIntercalibration_Stat68: 0.03307624940950833 - syst_JES_EtaIntercalibration_Stat69: 0.06695227105931509 - syst_JES_EtaIntercalibration_Stat7: 1.8346592544666162e-05 - syst_JES_EtaIntercalibration_Stat70: 0.035590508214972144 - syst_JES_EtaIntercalibration_Stat71: 0.04496921697116817 - syst_JES_EtaIntercalibration_Stat72: 0.04857323781672373 - syst_JES_EtaIntercalibration_Stat73: 0.04772281294098243 - syst_JES_EtaIntercalibration_Stat74: 0.0362053128007479 - syst_JES_EtaIntercalibration_Stat75: 0.03302918822799011 - syst_JES_EtaIntercalibration_Stat76: 0.019072374655506326 - syst_JES_EtaIntercalibration_Stat77: 0.03504426343925635 - syst_JES_EtaIntercalibration_Stat78: 0.05284470148463325 - syst_JES_EtaIntercalibration_Stat79: 0.039832639882387916 - syst_JES_EtaIntercalibration_Stat8: 1.1234947563295523e-05 - syst_JES_EtaIntercalibration_Stat80: 0.05188160656726042 - syst_JES_EtaIntercalibration_Stat81: 0.04097051134657707 - syst_JES_EtaIntercalibration_Stat82: 0.03766760942772981 - syst_JES_EtaIntercalibration_Stat83: 0.03457976953003012 - syst_JES_EtaIntercalibration_Stat84: 0.027813014939053263 - syst_JES_EtaIntercalibration_Stat85: 0.02144723031069513 - syst_JES_EtaIntercalibration_Stat86: 0.0012215421973882032 - syst_JES_EtaIntercalibration_Stat87: 1.1234947563295523e-05 - syst_JES_EtaIntercalibration_Stat88: 0.005100536360687962 - syst_JES_EtaIntercalibration_Stat89: 0.036241736644371775 - syst_JES_EtaIntercalibration_Stat9: 0.00021817179715765284 - syst_JES_EtaIntercalibration_Stat90: 0.061908043903841775 - syst_JES_EtaIntercalibration_Stat91: 0.041912025720549466 - syst_JES_EtaIntercalibration_Stat92: 0.046270019451044114 - syst_JES_EtaIntercalibration_Stat93: 0.05085653940251932 - syst_JES_EtaIntercalibration_Stat94: 0.03147374143631482 - syst_JES_EtaIntercalibration_Stat95: 0.052070929509660184 - syst_JES_EtaIntercalibration_Stat96: 0.0442151863051599 - syst_JES_EtaIntercalibration_Stat97: 0.029187015961725172 - syst_JES_EtaIntercalibration_Stat98: 0.028916792699052913 - syst_JES_EtaIntercalibration_Stat99: 0.04208233922918259 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.021261193451920804 - syst_JES_Flavour_Comp: 0.3731128080085164 - syst_JES_Flavour_Response: 6.737473710523849 - syst_JES_Gjet_Generator: 4.816561429069498 - syst_JES_Gjet_OOC: 2.8051885854608773 - syst_JES_Gjet_Purity: 1.0602710879770323 - syst_JES_Gjet_Stat1: 0.015666399554460492 - syst_JES_Gjet_Stat10: 0.09748935720516817 - syst_JES_Gjet_Stat11: 0.03165273270983091 - syst_JES_Gjet_Stat12: 0.027344349964846484 - syst_JES_Gjet_Stat13: 0.00551917989831823 - syst_JES_Gjet_Stat14: 9.78320462987461e-05 - syst_JES_Gjet_Stat15: 3.7024052222845622e-37 - syst_JES_Gjet_Stat2: 0.0020732648166599463 - syst_JES_Gjet_Stat3: 0.0026958224774639742 - syst_JES_Gjet_Stat4: 0.05675849532889327 - syst_JES_Gjet_Stat5: 0.07415627738094732 - syst_JES_Gjet_Stat6: 0.14212042314530307 - syst_JES_Gjet_Stat7: 0.27248307745619726 - syst_JES_Gjet_Stat8: 0.1594104704058049 - syst_JES_Gjet_Stat9: 0.13391555874878766 - syst_JES_Gjet_Veto: 0.9992950415167684 - syst_JES_Gjet_dPhi: 0.4740088263946147 - syst_JES_LArESZee: 3.6276654683142993 - syst_JES_LArEsmear: 0.29974330267747434 - syst_JES_LAr_JVT: 0.5348490160783695 - syst_JES_MJB_Alpha: 1.0046760709303274e-37 - syst_JES_MJB_Asym: 1.2444785052382338e-12 + syst_JER_NP7: 9.96535432e-02 + syst_JER_NP8: 1.80675500e-01 + syst_JES_EtaIntercalibration_Modelling: 3.99187411e+00 + syst_JES_EtaIntercalibration_NonClosure: 1.82653080e+00 + syst_JES_EtaIntercalibration_Stat0: 1.83465925e-05 + syst_JES_EtaIntercalibration_Stat1: 1.83465925e-05 + syst_JES_EtaIntercalibration_Stat10: 2.18171797e-04 + syst_JES_EtaIntercalibration_Stat100: 4.76877406e-02 + syst_JES_EtaIntercalibration_Stat101: 2.36737724e-02 + syst_JES_EtaIntercalibration_Stat102: 4.52418302e-02 + syst_JES_EtaIntercalibration_Stat103: 5.53280424e-02 + syst_JES_EtaIntercalibration_Stat104: 4.38076788e-02 + syst_JES_EtaIntercalibration_Stat105: 3.96611876e-02 + syst_JES_EtaIntercalibration_Stat106: 2.85551975e-02 + syst_JES_EtaIntercalibration_Stat107: 1.89964037e-03 + syst_JES_EtaIntercalibration_Stat108: 1.81497141e-03 + syst_JES_EtaIntercalibration_Stat109: 5.89725587e-02 + syst_JES_EtaIntercalibration_Stat11: 4.05079618e-03 + syst_JES_EtaIntercalibration_Stat110: 9.74718682e-02 + syst_JES_EtaIntercalibration_Stat111: 5.86104297e-02 + syst_JES_EtaIntercalibration_Stat112: 1.20469895e-01 + syst_JES_EtaIntercalibration_Stat113: 7.36326055e-02 + syst_JES_EtaIntercalibration_Stat114: 3.85857707e-02 + syst_JES_EtaIntercalibration_Stat115: 1.36395682e-01 + syst_JES_EtaIntercalibration_Stat116: 1.33641370e-01 + syst_JES_EtaIntercalibration_Stat117: 9.93527215e-02 + syst_JES_EtaIntercalibration_Stat118: 9.00076841e-02 + syst_JES_EtaIntercalibration_Stat119: 9.64484758e-02 + syst_JES_EtaIntercalibration_Stat12: 1.12349476e-05 + syst_JES_EtaIntercalibration_Stat120: 1.08261618e-01 + syst_JES_EtaIntercalibration_Stat121: 8.38449073e-02 + syst_JES_EtaIntercalibration_Stat122: 6.77663432e-02 + syst_JES_EtaIntercalibration_Stat123: 9.47778301e-02 + syst_JES_EtaIntercalibration_Stat124: 1.01134390e-01 + syst_JES_EtaIntercalibration_Stat125: 7.63230345e-02 + syst_JES_EtaIntercalibration_Stat126: 5.34642039e-02 + syst_JES_EtaIntercalibration_Stat127: 1.69543025e-03 + syst_JES_EtaIntercalibration_Stat128: 6.77185032e-02 + syst_JES_EtaIntercalibration_Stat129: 1.34741639e-01 + syst_JES_EtaIntercalibration_Stat13: 3.98491417e-04 + syst_JES_EtaIntercalibration_Stat130: 1.93063980e-01 + syst_JES_EtaIntercalibration_Stat131: 1.40664734e-01 + syst_JES_EtaIntercalibration_Stat132: 6.99238929e-02 + syst_JES_EtaIntercalibration_Stat133: 6.72786197e-02 + syst_JES_EtaIntercalibration_Stat134: 1.41825635e-01 + syst_JES_EtaIntercalibration_Stat135: 1.00694285e-01 + syst_JES_EtaIntercalibration_Stat136: 7.14576021e-02 + syst_JES_EtaIntercalibration_Stat137: 7.54500113e-02 + syst_JES_EtaIntercalibration_Stat138: 1.05216540e-01 + syst_JES_EtaIntercalibration_Stat139: 1.01360467e-01 + syst_JES_EtaIntercalibration_Stat14: 4.11563927e-04 + syst_JES_EtaIntercalibration_Stat140: 8.35739481e-02 + syst_JES_EtaIntercalibration_Stat141: 6.20651625e-02 + syst_JES_EtaIntercalibration_Stat142: 9.56960923e-02 + syst_JES_EtaIntercalibration_Stat143: 2.64582426e-02 + syst_JES_EtaIntercalibration_Stat144: 1.85286348e-01 + syst_JES_EtaIntercalibration_Stat145: 1.08272893e-02 + syst_JES_EtaIntercalibration_Stat146: 5.57205839e-03 + syst_JES_EtaIntercalibration_Stat147: 2.34433077e-02 + syst_JES_EtaIntercalibration_Stat148: 4.13118475e-03 + syst_JES_EtaIntercalibration_Stat149: 1.12149667e-02 + syst_JES_EtaIntercalibration_Stat15: 2.19079765e-04 + syst_JES_EtaIntercalibration_Stat150: 1.39650609e-02 + syst_JES_EtaIntercalibration_Stat151: 2.08637509e-02 + syst_JES_EtaIntercalibration_Stat152: 3.41403533e-02 + syst_JES_EtaIntercalibration_Stat153: 2.85355371e-02 + syst_JES_EtaIntercalibration_Stat154: 5.52504852e-02 + syst_JES_EtaIntercalibration_Stat155: 1.67494180e-02 + syst_JES_EtaIntercalibration_Stat156: 1.87319249e-02 + syst_JES_EtaIntercalibration_Stat157: 2.11157687e-02 + syst_JES_EtaIntercalibration_Stat158: 2.29046819e-02 + syst_JES_EtaIntercalibration_Stat159: 1.31980582e-02 + syst_JES_EtaIntercalibration_Stat16: 1.28156168e-04 + syst_JES_EtaIntercalibration_Stat160: 1.70866812e-04 + syst_JES_EtaIntercalibration_Stat161: 4.26983969e-03 + syst_JES_EtaIntercalibration_Stat162: 2.42111214e-02 + syst_JES_EtaIntercalibration_Stat163: 7.85399470e-03 + syst_JES_EtaIntercalibration_Stat164: 2.39526063e-03 + syst_JES_EtaIntercalibration_Stat165: 1.00468325e-02 + syst_JES_EtaIntercalibration_Stat166: 5.60486650e-03 + syst_JES_EtaIntercalibration_Stat167: 4.97229605e-03 + syst_JES_EtaIntercalibration_Stat168: 5.81019748e-03 + syst_JES_EtaIntercalibration_Stat169: 1.14661589e-03 + syst_JES_EtaIntercalibration_Stat17: 4.52301722e-04 + syst_JES_EtaIntercalibration_Stat170: 3.97016952e-03 + syst_JES_EtaIntercalibration_Stat171: 2.25693038e-02 + syst_JES_EtaIntercalibration_Stat172: 7.97825249e-03 + syst_JES_EtaIntercalibration_Stat173: 7.48736167e-03 + syst_JES_EtaIntercalibration_Stat174: 5.90881145e-03 + syst_JES_EtaIntercalibration_Stat175: 1.32377151e-02 + syst_JES_EtaIntercalibration_Stat176: 1.99552436e-03 + syst_JES_EtaIntercalibration_Stat177: 1.03607780e-02 + syst_JES_EtaIntercalibration_Stat178: 7.76439161e-03 + syst_JES_EtaIntercalibration_Stat179: 8.14690154e-03 + syst_JES_EtaIntercalibration_Stat18: 2.34086163e-05 + syst_JES_EtaIntercalibration_Stat180: 4.01087710e-03 + syst_JES_EtaIntercalibration_Stat181: 5.22371427e-03 + syst_JES_EtaIntercalibration_Stat182: 4.70700924e-03 + syst_JES_EtaIntercalibration_Stat183: 1.79334736e-03 + syst_JES_EtaIntercalibration_Stat184: 2.74830326e-03 + syst_JES_EtaIntercalibration_Stat185: 3.42305167e-03 + syst_JES_EtaIntercalibration_Stat186: 5.88640831e-03 + syst_JES_EtaIntercalibration_Stat187: 1.04156050e-02 + syst_JES_EtaIntercalibration_Stat188: 1.80826104e-03 + syst_JES_EtaIntercalibration_Stat189: 3.39356991e-03 + syst_JES_EtaIntercalibration_Stat19: 9.36439425e-05 + syst_JES_EtaIntercalibration_Stat190: 1.54230358e-02 + syst_JES_EtaIntercalibration_Stat191: 5.54370244e-03 + syst_JES_EtaIntercalibration_Stat192: 3.76134405e-03 + syst_JES_EtaIntercalibration_Stat193: 6.56315905e-03 + syst_JES_EtaIntercalibration_Stat194: 1.65593560e-03 + syst_JES_EtaIntercalibration_Stat195: 3.87966977e-03 + syst_JES_EtaIntercalibration_Stat196: 2.93575782e-03 + syst_JES_EtaIntercalibration_Stat197: 1.76579982e-03 + syst_JES_EtaIntercalibration_Stat198: 6.04930153e-04 + syst_JES_EtaIntercalibration_Stat199: 3.94744990e-04 + syst_JES_EtaIntercalibration_Stat2: 2.58707976e-05 + syst_JES_EtaIntercalibration_Stat20: 1.83465925e-05 + syst_JES_EtaIntercalibration_Stat200: 7.92114651e-04 + syst_JES_EtaIntercalibration_Stat201: 6.91889030e-04 + syst_JES_EtaIntercalibration_Stat202: 1.03115190e-03 + syst_JES_EtaIntercalibration_Stat203: 4.08953747e-04 + syst_JES_EtaIntercalibration_Stat204: 8.67055608e-04 + syst_JES_EtaIntercalibration_Stat205: 2.94861998e-03 + syst_JES_EtaIntercalibration_Stat206: 5.87620462e-04 + syst_JES_EtaIntercalibration_Stat207: 1.08591131e-03 + syst_JES_EtaIntercalibration_Stat208: 2.24827896e-04 + syst_JES_EtaIntercalibration_Stat209: 4.42345190e-03 + syst_JES_EtaIntercalibration_Stat21: 1.83465925e-05 + syst_JES_EtaIntercalibration_Stat210: 2.70233075e-04 + syst_JES_EtaIntercalibration_Stat211: 2.01111870e-04 + syst_JES_EtaIntercalibration_Stat212: 4.27944164e-04 + syst_JES_EtaIntercalibration_Stat213: 1.27005933e-03 + syst_JES_EtaIntercalibration_Stat214: 2.76435309e-04 + syst_JES_EtaIntercalibration_Stat215: 2.57555632e-04 + syst_JES_EtaIntercalibration_Stat216: 1.90831504e-03 + syst_JES_EtaIntercalibration_Stat217: 4.15142635e-04 + syst_JES_EtaIntercalibration_Stat218: 7.22968340e-04 + syst_JES_EtaIntercalibration_Stat219: 1.24789183e-03 + syst_JES_EtaIntercalibration_Stat22: 1.83465925e-05 + syst_JES_EtaIntercalibration_Stat220: 4.47024437e-04 + syst_JES_EtaIntercalibration_Stat221: 4.16698053e-04 + syst_JES_EtaIntercalibration_Stat222: 2.28661394e-03 + syst_JES_EtaIntercalibration_Stat223: 3.98133454e-04 + syst_JES_EtaIntercalibration_Stat224: 4.53066162e-04 + syst_JES_EtaIntercalibration_Stat225: 4.52423728e-04 + syst_JES_EtaIntercalibration_Stat226: 4.07979322e-04 + syst_JES_EtaIntercalibration_Stat227: 4.03585391e-04 + syst_JES_EtaIntercalibration_Stat228: 4.24156395e-04 + syst_JES_EtaIntercalibration_Stat229: 6.53427553e-04 + syst_JES_EtaIntercalibration_Stat23: 2.58707976e-05 + syst_JES_EtaIntercalibration_Stat230: 3.19179468e-03 + syst_JES_EtaIntercalibration_Stat231: 2.76175501e-04 + syst_JES_EtaIntercalibration_Stat232: 2.47697477e-04 + syst_JES_EtaIntercalibration_Stat233: 2.55217686e-04 + syst_JES_EtaIntercalibration_Stat234: 4.18183919e-04 + syst_JES_EtaIntercalibration_Stat235: 4.05745052e-04 + syst_JES_EtaIntercalibration_Stat236: 4.02649566e-03 + syst_JES_EtaIntercalibration_Stat237: 1.12349476e-05 + syst_JES_EtaIntercalibration_Stat238: 3.85173221e-04 + syst_JES_EtaIntercalibration_Stat239: 6.77939383e-04 + syst_JES_EtaIntercalibration_Stat24: 5.78453810e-03 + syst_JES_EtaIntercalibration_Stat240: 5.74973015e-04 + syst_JES_EtaIntercalibration_Stat241: 2.46932934e-03 + syst_JES_EtaIntercalibration_Stat242: 4.46007923e-04 + syst_JES_EtaIntercalibration_Stat243: 1.02037430e-03 + syst_JES_EtaIntercalibration_Stat244: 7.91149523e-04 + syst_JES_EtaIntercalibration_Stat245: 9.32196443e-04 + syst_JES_EtaIntercalibration_Stat25: 1.76958165e-03 + syst_JES_EtaIntercalibration_Stat26: 5.86480579e-04 + syst_JES_EtaIntercalibration_Stat27: 4.36304726e-03 + syst_JES_EtaIntercalibration_Stat28: 1.73827277e-03 + syst_JES_EtaIntercalibration_Stat29: 3.19592402e-03 + syst_JES_EtaIntercalibration_Stat3: 2.58707976e-05 + syst_JES_EtaIntercalibration_Stat30: 2.11234532e-04 + syst_JES_EtaIntercalibration_Stat31: 1.59180730e-03 + syst_JES_EtaIntercalibration_Stat32: 8.05326778e-04 + syst_JES_EtaIntercalibration_Stat33: 2.67803827e-04 + syst_JES_EtaIntercalibration_Stat34: 4.00416124e-03 + syst_JES_EtaIntercalibration_Stat35: 1.22654911e-03 + syst_JES_EtaIntercalibration_Stat36: 4.57348016e-04 + syst_JES_EtaIntercalibration_Stat37: 2.99023958e-03 + syst_JES_EtaIntercalibration_Stat38: 2.62943943e-03 + syst_JES_EtaIntercalibration_Stat39: 5.63445425e-04 + syst_JES_EtaIntercalibration_Stat4: 1.52722714e-04 + syst_JES_EtaIntercalibration_Stat40: 7.59529828e-04 + syst_JES_EtaIntercalibration_Stat41: 1.71862432e-03 + syst_JES_EtaIntercalibration_Stat42: 1.50923137e-04 + syst_JES_EtaIntercalibration_Stat43: 1.83465925e-05 + syst_JES_EtaIntercalibration_Stat44: 1.83465925e-05 + syst_JES_EtaIntercalibration_Stat45: 1.83857430e-04 + syst_JES_EtaIntercalibration_Stat46: 8.12635981e-03 + syst_JES_EtaIntercalibration_Stat47: 1.00261081e-02 + syst_JES_EtaIntercalibration_Stat48: 1.18392545e-02 + syst_JES_EtaIntercalibration_Stat49: 1.22806161e-02 + syst_JES_EtaIntercalibration_Stat5: 2.80640069e-04 + syst_JES_EtaIntercalibration_Stat50: 9.31601132e-03 + syst_JES_EtaIntercalibration_Stat51: 6.65287476e-03 + syst_JES_EtaIntercalibration_Stat52: 6.97940074e-03 + syst_JES_EtaIntercalibration_Stat53: 7.06698682e-03 + syst_JES_EtaIntercalibration_Stat54: 1.76709718e-03 + syst_JES_EtaIntercalibration_Stat55: 5.77841972e-03 + syst_JES_EtaIntercalibration_Stat56: 5.33264972e-03 + syst_JES_EtaIntercalibration_Stat57: 1.03516794e-02 + syst_JES_EtaIntercalibration_Stat58: 1.50854092e-02 + syst_JES_EtaIntercalibration_Stat59: 1.53743332e-02 + syst_JES_EtaIntercalibration_Stat6: 2.82463057e-04 + syst_JES_EtaIntercalibration_Stat60: 1.52469101e-02 + syst_JES_EtaIntercalibration_Stat61: 1.09651468e-02 + syst_JES_EtaIntercalibration_Stat62: 6.14475505e-03 + syst_JES_EtaIntercalibration_Stat63: 5.27412369e-03 + syst_JES_EtaIntercalibration_Stat64: 1.86541872e-05 + syst_JES_EtaIntercalibration_Stat65: 1.83465925e-05 + syst_JES_EtaIntercalibration_Stat66: 1.83465925e-05 + syst_JES_EtaIntercalibration_Stat67: 7.07141048e-04 + syst_JES_EtaIntercalibration_Stat68: 3.30762494e-02 + syst_JES_EtaIntercalibration_Stat69: 6.69522711e-02 + syst_JES_EtaIntercalibration_Stat7: 1.83465925e-05 + syst_JES_EtaIntercalibration_Stat70: 3.55905082e-02 + syst_JES_EtaIntercalibration_Stat71: 4.49692170e-02 + syst_JES_EtaIntercalibration_Stat72: 4.85732378e-02 + syst_JES_EtaIntercalibration_Stat73: 4.77228129e-02 + syst_JES_EtaIntercalibration_Stat74: 3.62053128e-02 + syst_JES_EtaIntercalibration_Stat75: 3.30291882e-02 + syst_JES_EtaIntercalibration_Stat76: 1.90723747e-02 + syst_JES_EtaIntercalibration_Stat77: 3.50442634e-02 + syst_JES_EtaIntercalibration_Stat78: 5.28447015e-02 + syst_JES_EtaIntercalibration_Stat79: 3.98326399e-02 + syst_JES_EtaIntercalibration_Stat8: 1.12349476e-05 + syst_JES_EtaIntercalibration_Stat80: 5.18816066e-02 + syst_JES_EtaIntercalibration_Stat81: 4.09705113e-02 + syst_JES_EtaIntercalibration_Stat82: 3.76676094e-02 + syst_JES_EtaIntercalibration_Stat83: 3.45797695e-02 + syst_JES_EtaIntercalibration_Stat84: 2.78130149e-02 + syst_JES_EtaIntercalibration_Stat85: 2.14472303e-02 + syst_JES_EtaIntercalibration_Stat86: 1.22154220e-03 + syst_JES_EtaIntercalibration_Stat87: 1.12349476e-05 + syst_JES_EtaIntercalibration_Stat88: 5.10053636e-03 + syst_JES_EtaIntercalibration_Stat89: 3.62417366e-02 + syst_JES_EtaIntercalibration_Stat9: 2.18171797e-04 + syst_JES_EtaIntercalibration_Stat90: 6.19080439e-02 + syst_JES_EtaIntercalibration_Stat91: 4.19120257e-02 + syst_JES_EtaIntercalibration_Stat92: 4.62700195e-02 + syst_JES_EtaIntercalibration_Stat93: 5.08565394e-02 + syst_JES_EtaIntercalibration_Stat94: 3.14737414e-02 + syst_JES_EtaIntercalibration_Stat95: 5.20709295e-02 + syst_JES_EtaIntercalibration_Stat96: 4.42151863e-02 + syst_JES_EtaIntercalibration_Stat97: 2.91870160e-02 + syst_JES_EtaIntercalibration_Stat98: 2.89167927e-02 + syst_JES_EtaIntercalibration_Stat99: 4.20823392e-02 + syst_JES_EtaIntercalibration_TotalStat_MJB: 2.12611935e-02 + syst_JES_Flavour_Comp: 3.73112808e-01 + syst_JES_Flavour_Response: 6.73747371e+00 + syst_JES_Gjet_Generator: 4.81656143e+00 + syst_JES_Gjet_OOC: 2.80518859e+00 + syst_JES_Gjet_Purity: 1.06027109e+00 + syst_JES_Gjet_Stat1: 1.56663996e-02 + syst_JES_Gjet_Stat10: 9.74893572e-02 + syst_JES_Gjet_Stat11: 3.16527327e-02 + syst_JES_Gjet_Stat12: 2.73443500e-02 + syst_JES_Gjet_Stat13: 5.51917990e-03 + syst_JES_Gjet_Stat14: 9.78320463e-05 + syst_JES_Gjet_Stat15: 3.70240522e-37 + syst_JES_Gjet_Stat2: 2.07326482e-03 + syst_JES_Gjet_Stat3: 2.69582248e-03 + syst_JES_Gjet_Stat4: 5.67584953e-02 + syst_JES_Gjet_Stat5: 7.41562774e-02 + syst_JES_Gjet_Stat6: 1.42120423e-01 + syst_JES_Gjet_Stat7: 2.72483077e-01 + syst_JES_Gjet_Stat8: 1.59410470e-01 + syst_JES_Gjet_Stat9: 1.33915559e-01 + syst_JES_Gjet_Veto: 9.99295042e-01 + syst_JES_Gjet_dPhi: 4.74008826e-01 + syst_JES_LArESZee: 3.62766547e+00 + syst_JES_LArEsmear: 2.99743303e-01 + syst_JES_LAr_JVT: 5.34849016e-01 + syst_JES_MJB_Alpha: 1.00467607e-37 + syst_JES_MJB_Asym: 1.24447851e-12 syst_JES_MJB_Beta: 0.0 - syst_JES_MJB_Fragmentation: 0.021153374837127054 + syst_JES_MJB_Fragmentation: 2.11533748e-02 syst_JES_MJB_Stat1: 0.0 syst_JES_MJB_Stat10: 0.0 syst_JES_MJB_Stat11: 0.0 @@ -21192,335 +21192,335 @@ bins: syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 0.013319470710204666 - syst_JES_MJB_Stat3: 1.9831981746663645e-27 - syst_JES_MJB_Stat4: 0.00029176395853497736 - syst_JES_MJB_Stat5: 0.0025318182414028065 + syst_JES_MJB_Stat2: 1.33194707e-02 + syst_JES_MJB_Stat3: 1.98319817e-27 + syst_JES_MJB_Stat4: 2.91763959e-04 + syst_JES_MJB_Stat5: 2.53181824e-03 syst_JES_MJB_Stat6: 0.0 syst_JES_MJB_Stat7: 0.0 syst_JES_MJB_Stat8: 0.0 syst_JES_MJB_Stat9: 0.0 - syst_JES_MJB_Threshold: 1.6004149461936362e-12 - syst_JES_Pileup_MuOffset: 2.451716505918241e-12 - syst_JES_Pileup_NPVOffset: 0.2643385471322713 - syst_JES_Pileup_Pt_term: 1.1614951172949457 - syst_JES_Pileup_Rho_topology: 2.084011996126702 - syst_JES_PunchThrough_MC15: 1.0021507209496983e-18 - syst_JES_SingleParticle_HighPt: 0.00041691015818758845 - syst_JES_Zjet_MC: 4.28800093283572 - syst_JES_Zjet_MuScale: 0.28163554463171014 - syst_JES_Zjet_MuSmearID: 0.026726422787196943 - syst_JES_Zjet_MuSmearMS: 0.208993157782737 - syst_JES_Zjet_OOC: 2.126514225205183 - syst_JES_Zjet_Stat1: 0.01739994476162209 - syst_JES_Zjet_Stat10: 0.4849549540936766 - syst_JES_Zjet_Stat11: 0.20409808303852345 - syst_JES_Zjet_Stat12: 0.05643935395625998 - syst_JES_Zjet_Stat13: 0.021252067822920197 + syst_JES_MJB_Threshold: 1.60041495e-12 + syst_JES_Pileup_MuOffset: 2.45171651e-12 + syst_JES_Pileup_NPVOffset: 2.64338547e-01 + syst_JES_Pileup_Pt_term: 1.16149512e+00 + syst_JES_Pileup_Rho_topology: 2.08401200e+00 + syst_JES_PunchThrough_MC15: 1.00215072e-18 + syst_JES_SingleParticle_HighPt: 4.16910158e-04 + syst_JES_Zjet_MC: 4.28800093e+00 + syst_JES_Zjet_MuScale: 2.81635545e-01 + syst_JES_Zjet_MuSmearID: 2.67264228e-02 + syst_JES_Zjet_MuSmearMS: 2.08993158e-01 + syst_JES_Zjet_OOC: 2.12651423e+00 + syst_JES_Zjet_Stat1: 1.73999448e-02 + syst_JES_Zjet_Stat10: 4.84954954e-01 + syst_JES_Zjet_Stat11: 2.04098083e-01 + syst_JES_Zjet_Stat12: 5.64393540e-02 + syst_JES_Zjet_Stat13: 2.12520678e-02 syst_JES_Zjet_Stat2: 0.0 - syst_JES_Zjet_Stat3: 0.0023425987172369066 - syst_JES_Zjet_Stat4: 0.009292452582607027 - syst_JES_Zjet_Stat5: 0.010632193882261554 - syst_JES_Zjet_Stat6: 0.08155410274780786 - syst_JES_Zjet_Stat7: 0.08239758294391894 - syst_JES_Zjet_Stat8: 0.24467913683025774 - syst_JES_Zjet_Stat9: 0.3997279199655686 - syst_JES_Zjet_Veto: 0.3759725612328645 - syst_JES_Zjet_dPhi: 0.44885947689672323 + syst_JES_Zjet_Stat3: 2.34259872e-03 + syst_JES_Zjet_Stat4: 9.29245258e-03 + syst_JES_Zjet_Stat5: 1.06321939e-02 + syst_JES_Zjet_Stat6: 8.15541027e-02 + syst_JES_Zjet_Stat7: 8.23975829e-02 + syst_JES_Zjet_Stat8: 2.44679137e-01 + syst_JES_Zjet_Stat9: 3.99727920e-01 + syst_JES_Zjet_Veto: 3.75972561e-01 + syst_JES_Zjet_dPhi: 4.48859477e-01 syst_PRW: 0.0 syst_Unfolding_bias: 0.1457 - syst_cleaning: 2.19883850020869 + syst_cleaning: 2.19883850e+00 syst_lumi: 4.612 - stat: 1.1535 syst_JER_CROSS_CALIB_FORWARD: 0.06113 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.5712473369740991 - syst_JER_NP1: 0.1517483716551845 + syst_JER_NP0: 5.71247337e-01 + syst_JER_NP1: 1.51748372e-01 syst_JER_NP2: 0.0 - syst_JER_NP3: 0.16735355112754552 - syst_JER_NP4: 0.07407115278568303 + syst_JER_NP3: 1.67353551e-01 + syst_JER_NP4: 7.40711528e-02 syst_JER_NP5: 0.0 syst_JER_NP6: 0.0 - syst_JER_NP7: 0.05124272314192523 - syst_JER_NP8: 0.08634832641690283 - syst_JES_EtaIntercalibration_Modelling: 1.9978450265223278 - syst_JES_EtaIntercalibration_NonClosure: 0.7938262278357904 - syst_JES_EtaIntercalibration_Stat0: 1.0320930578198849e-06 - syst_JES_EtaIntercalibration_Stat1: 1.0320930578198849e-06 - syst_JES_EtaIntercalibration_Stat10: 4.949145613810529e-05 - syst_JES_EtaIntercalibration_Stat100: 0.0117402443224151 - syst_JES_EtaIntercalibration_Stat101: 0.008624860868443038 - syst_JES_EtaIntercalibration_Stat102: 0.009263737528665198 - syst_JES_EtaIntercalibration_Stat103: 0.016756679504006756 - syst_JES_EtaIntercalibration_Stat104: 0.015158643573882195 - syst_JES_EtaIntercalibration_Stat105: 0.017023973537338456 - syst_JES_EtaIntercalibration_Stat106: 0.021759447658603378 - syst_JES_EtaIntercalibration_Stat107: 0.0014791572739886072 - syst_JES_EtaIntercalibration_Stat108: 0.0021746659760754064 - syst_JES_EtaIntercalibration_Stat109: 0.03332023821943655 - syst_JES_EtaIntercalibration_Stat11: 0.002176920510202582 - syst_JES_EtaIntercalibration_Stat110: 0.044899535353943254 - syst_JES_EtaIntercalibration_Stat111: 0.03195235359093286 - syst_JES_EtaIntercalibration_Stat112: 0.0611920491158778 - syst_JES_EtaIntercalibration_Stat113: 0.04370358652330492 - syst_JES_EtaIntercalibration_Stat114: 0.028981656267370228 - syst_JES_EtaIntercalibration_Stat115: 0.07630697150326435 - syst_JES_EtaIntercalibration_Stat116: 0.06644487696579775 - syst_JES_EtaIntercalibration_Stat117: 0.045253252645528146 - syst_JES_EtaIntercalibration_Stat118: 0.04015387994951422 - syst_JES_EtaIntercalibration_Stat119: 0.03671329561616608 - syst_JES_EtaIntercalibration_Stat12: 6.320253396818833e-07 - syst_JES_EtaIntercalibration_Stat120: 0.060285775063442626 - syst_JES_EtaIntercalibration_Stat121: 0.047856034885895 - syst_JES_EtaIntercalibration_Stat122: 0.038103862008988014 - syst_JES_EtaIntercalibration_Stat123: 0.050089752444986195 - syst_JES_EtaIntercalibration_Stat124: 0.050554008743125406 - syst_JES_EtaIntercalibration_Stat125: 0.03559682113616326 - syst_JES_EtaIntercalibration_Stat126: 0.032845435858730815 - syst_JES_EtaIntercalibration_Stat127: 0.0021764181010244035 - syst_JES_EtaIntercalibration_Stat128: 0.03826820417461473 - syst_JES_EtaIntercalibration_Stat129: 0.09647601502446086 - syst_JES_EtaIntercalibration_Stat13: 0.00020659705064697803 - syst_JES_EtaIntercalibration_Stat130: 0.13629243119117068 - syst_JES_EtaIntercalibration_Stat131: 0.07909070789289979 - syst_JES_EtaIntercalibration_Stat132: 0.04493093700336106 - syst_JES_EtaIntercalibration_Stat133: 0.06219854090531385 - syst_JES_EtaIntercalibration_Stat134: 0.08894684184950019 - syst_JES_EtaIntercalibration_Stat135: 0.07554676746889968 - syst_JES_EtaIntercalibration_Stat136: 0.07360140419856132 - syst_JES_EtaIntercalibration_Stat137: 0.062421348912050915 - syst_JES_EtaIntercalibration_Stat138: 0.08517355458121963 - syst_JES_EtaIntercalibration_Stat139: 0.08148865120371057 - syst_JES_EtaIntercalibration_Stat14: 0.0002132654193863365 - syst_JES_EtaIntercalibration_Stat140: 0.07217046695151695 - syst_JES_EtaIntercalibration_Stat141: 0.055126338532501866 - syst_JES_EtaIntercalibration_Stat142: 0.04277659664758289 - syst_JES_EtaIntercalibration_Stat143: 0.026052930137510442 - syst_JES_EtaIntercalibration_Stat144: 0.11345127412241784 - syst_JES_EtaIntercalibration_Stat145: 0.01822391637382042 - syst_JES_EtaIntercalibration_Stat146: 0.001973340742877418 - syst_JES_EtaIntercalibration_Stat147: 0.017502373410483503 - syst_JES_EtaIntercalibration_Stat148: 0.005695146420418004 - syst_JES_EtaIntercalibration_Stat149: 0.005579472579912908 - syst_JES_EtaIntercalibration_Stat15: 4.954606771510732e-05 - syst_JES_EtaIntercalibration_Stat150: 0.00636160221563719 - syst_JES_EtaIntercalibration_Stat151: 0.021258721192724647 - syst_JES_EtaIntercalibration_Stat152: 0.0358791454050957 - syst_JES_EtaIntercalibration_Stat153: 0.016991418422250684 - syst_JES_EtaIntercalibration_Stat154: 0.03645404618145975 - syst_JES_EtaIntercalibration_Stat155: 0.010006954617664657 - syst_JES_EtaIntercalibration_Stat156: 0.009686840713049844 - syst_JES_EtaIntercalibration_Stat157: 0.016887659333593274 - syst_JES_EtaIntercalibration_Stat158: 0.02052563392443702 - syst_JES_EtaIntercalibration_Stat159: 0.005853767531043576 - syst_JES_EtaIntercalibration_Stat16: 2.5279169349486153e-06 - syst_JES_EtaIntercalibration_Stat160: 6.964576297234457e-05 - syst_JES_EtaIntercalibration_Stat161: 0.017574895923091548 - syst_JES_EtaIntercalibration_Stat162: 0.02091161024407255 - syst_JES_EtaIntercalibration_Stat163: 0.008387915235623211 - syst_JES_EtaIntercalibration_Stat164: 0.0012364001294079517 - syst_JES_EtaIntercalibration_Stat165: 0.008979732777204453 - syst_JES_EtaIntercalibration_Stat166: 0.0064935954193343455 - syst_JES_EtaIntercalibration_Stat167: 0.003737269756118763 - syst_JES_EtaIntercalibration_Stat168: 0.005743016060181271 - syst_JES_EtaIntercalibration_Stat169: 0.002233211469498578 - syst_JES_EtaIntercalibration_Stat17: 0.00019962967433475416 - syst_JES_EtaIntercalibration_Stat170: 0.004558896577023875 - syst_JES_EtaIntercalibration_Stat171: 0.0150561780259799 - syst_JES_EtaIntercalibration_Stat172: 0.008032912423274639 - syst_JES_EtaIntercalibration_Stat173: 0.005344921608405497 - syst_JES_EtaIntercalibration_Stat174: 0.0032247026219482623 - syst_JES_EtaIntercalibration_Stat175: 0.010865045144867093 - syst_JES_EtaIntercalibration_Stat176: 0.005478876501619653 - syst_JES_EtaIntercalibration_Stat177: 0.00477574295267239 - syst_JES_EtaIntercalibration_Stat178: 0.006026239745479764 - syst_JES_EtaIntercalibration_Stat179: 0.004431224774258241 - syst_JES_EtaIntercalibration_Stat18: 1.316912916634961e-06 - syst_JES_EtaIntercalibration_Stat180: 0.004130133468485008 - syst_JES_EtaIntercalibration_Stat181: 0.006832744630637091 - syst_JES_EtaIntercalibration_Stat182: 0.003272870646313416 - syst_JES_EtaIntercalibration_Stat183: 0.0008517895514738367 - syst_JES_EtaIntercalibration_Stat184: 0.000954326394636552 - syst_JES_EtaIntercalibration_Stat185: 0.003909704848195065 - syst_JES_EtaIntercalibration_Stat186: 0.005283529502141537 - syst_JES_EtaIntercalibration_Stat187: 0.006467740071307751 - syst_JES_EtaIntercalibration_Stat188: 0.004443576346817955 - syst_JES_EtaIntercalibration_Stat189: 0.001813606098357634 - syst_JES_EtaIntercalibration_Stat19: 2.0223470690017577e-06 - syst_JES_EtaIntercalibration_Stat190: 0.002865106565208352 - syst_JES_EtaIntercalibration_Stat191: 0.004740808752734073 - syst_JES_EtaIntercalibration_Stat192: 0.0020141638463640438 - syst_JES_EtaIntercalibration_Stat193: 0.004454547648190555 - syst_JES_EtaIntercalibration_Stat194: 0.0021392105914799504 - syst_JES_EtaIntercalibration_Stat195: 0.004749958242711193 - syst_JES_EtaIntercalibration_Stat196: 0.0013832987638250822 - syst_JES_EtaIntercalibration_Stat197: 0.0021096431422162375 - syst_JES_EtaIntercalibration_Stat198: 0.0015410813435701568 - syst_JES_EtaIntercalibration_Stat199: 0.00072658493039355 - syst_JES_EtaIntercalibration_Stat2: 1.4555006106147807e-06 - syst_JES_EtaIntercalibration_Stat20: 1.0320930578198849e-06 - syst_JES_EtaIntercalibration_Stat200: 0.0005924003439398057 - syst_JES_EtaIntercalibration_Stat201: 0.0005823960442001645 - syst_JES_EtaIntercalibration_Stat202: 0.0005599825800862022 - syst_JES_EtaIntercalibration_Stat203: 0.0001725712606432485 - syst_JES_EtaIntercalibration_Stat204: 0.0006663286182507848 - syst_JES_EtaIntercalibration_Stat205: 0.0006950324956431893 - syst_JES_EtaIntercalibration_Stat206: 0.0007531636873880737 - syst_JES_EtaIntercalibration_Stat207: 0.0012048268377024144 - syst_JES_EtaIntercalibration_Stat208: 0.0010109316226506121 - syst_JES_EtaIntercalibration_Stat209: 0.002424713591334036 - syst_JES_EtaIntercalibration_Stat21: 1.0320930578198849e-06 - syst_JES_EtaIntercalibration_Stat210: 0.00042908398653410503 - syst_JES_EtaIntercalibration_Stat211: 0.001236967019568428 - syst_JES_EtaIntercalibration_Stat212: 0.00021100973834162253 - syst_JES_EtaIntercalibration_Stat213: 0.0006860119295609954 - syst_JES_EtaIntercalibration_Stat214: 0.00014220137130140483 - syst_JES_EtaIntercalibration_Stat215: 0.00014511519691445137 - syst_JES_EtaIntercalibration_Stat216: 0.0010279307892557747 - syst_JES_EtaIntercalibration_Stat217: 0.00016323396460295877 - syst_JES_EtaIntercalibration_Stat218: 0.0003818500327353659 - syst_JES_EtaIntercalibration_Stat219: 0.0006738067007681061 - syst_JES_EtaIntercalibration_Stat22: 1.0320930578198849e-06 - syst_JES_EtaIntercalibration_Stat220: 0.0002293761975445578 - syst_JES_EtaIntercalibration_Stat221: 0.0002062046253118489 - syst_JES_EtaIntercalibration_Stat222: 0.0012168899975057348 - syst_JES_EtaIntercalibration_Stat223: 0.00022347471685852969 - syst_JES_EtaIntercalibration_Stat224: 0.0002336358063311358 - syst_JES_EtaIntercalibration_Stat225: 0.0002333507231615107 - syst_JES_EtaIntercalibration_Stat226: 0.0002103835723149505 - syst_JES_EtaIntercalibration_Stat227: 0.00020812848795876072 - syst_JES_EtaIntercalibration_Stat228: 0.0002186949603328801 - syst_JES_EtaIntercalibration_Stat229: 0.00035136903719593733 - syst_JES_EtaIntercalibration_Stat23: 1.4555006106147807e-06 - syst_JES_EtaIntercalibration_Stat230: 0.001702050675156295 - syst_JES_EtaIntercalibration_Stat231: 0.00014202816622064794 - syst_JES_EtaIntercalibration_Stat232: 0.00013445899003041781 - syst_JES_EtaIntercalibration_Stat233: 0.00012170254999382717 - syst_JES_EtaIntercalibration_Stat234: 0.00021510246395613417 - syst_JES_EtaIntercalibration_Stat235: 0.00020863678966088413 - syst_JES_EtaIntercalibration_Stat236: 0.002162590383660299 - syst_JES_EtaIntercalibration_Stat237: 6.320253396818833e-07 - syst_JES_EtaIntercalibration_Stat238: 0.00019722490790972626 - syst_JES_EtaIntercalibration_Stat239: 0.0003544855568284835 - syst_JES_EtaIntercalibration_Stat24: 0.002144096814232044 - syst_JES_EtaIntercalibration_Stat240: 0.0003030182784503272 - syst_JES_EtaIntercalibration_Stat241: 0.0013286063186662932 - syst_JES_EtaIntercalibration_Stat242: 0.00022941143716039965 - syst_JES_EtaIntercalibration_Stat243: 0.0005521453612953748 - syst_JES_EtaIntercalibration_Stat244: 0.0004289736122420585 - syst_JES_EtaIntercalibration_Stat245: 0.0005045735724351801 - syst_JES_EtaIntercalibration_Stat25: 0.00026193653176867103 - syst_JES_EtaIntercalibration_Stat26: 0.00015066725482001722 - syst_JES_EtaIntercalibration_Stat27: 0.0018217097545986849 - syst_JES_EtaIntercalibration_Stat28: 0.00034570060384673905 - syst_JES_EtaIntercalibration_Stat29: 0.00025470329812352256 - syst_JES_EtaIntercalibration_Stat3: 1.4555006106147807e-06 - syst_JES_EtaIntercalibration_Stat30: 0.00019917973667017436 - syst_JES_EtaIntercalibration_Stat31: 0.0018138784930363996 - syst_JES_EtaIntercalibration_Stat32: 8.974800387752365e-05 - syst_JES_EtaIntercalibration_Stat33: 0.00010013249372706146 - syst_JES_EtaIntercalibration_Stat34: 0.001323323546038534 - syst_JES_EtaIntercalibration_Stat35: 0.00013105110100643946 - syst_JES_EtaIntercalibration_Stat36: 0.0001778816179373237 - syst_JES_EtaIntercalibration_Stat37: 0.0014574100176940599 - syst_JES_EtaIntercalibration_Stat38: 0.0004996363777788803 - syst_JES_EtaIntercalibration_Stat39: 0.00015154727603952506 - syst_JES_EtaIntercalibration_Stat4: 8.649857205757792e-06 - syst_JES_EtaIntercalibration_Stat40: 0.0005606780709105716 - syst_JES_EtaIntercalibration_Stat41: 0.0014532978739635587 - syst_JES_EtaIntercalibration_Stat42: 8.510854526279955e-06 - syst_JES_EtaIntercalibration_Stat43: 1.0320930578198849e-06 - syst_JES_EtaIntercalibration_Stat44: 1.0320930578198849e-06 - syst_JES_EtaIntercalibration_Stat45: 3.104912608673552e-05 - syst_JES_EtaIntercalibration_Stat46: 0.0029874074491940336 - syst_JES_EtaIntercalibration_Stat47: 0.0017415913039516475 - syst_JES_EtaIntercalibration_Stat48: 0.0018809277179094362 - syst_JES_EtaIntercalibration_Stat49: 0.001668836121373216 - syst_JES_EtaIntercalibration_Stat5: 2.9644207832728474e-05 - syst_JES_EtaIntercalibration_Stat50: 0.00022350848485012826 - syst_JES_EtaIntercalibration_Stat51: 0.0013263028113896162 - syst_JES_EtaIntercalibration_Stat52: 0.0009309035180941149 - syst_JES_EtaIntercalibration_Stat53: 0.0013177225457204561 - syst_JES_EtaIntercalibration_Stat54: 0.0021698279263572956 - syst_JES_EtaIntercalibration_Stat55: 0.0005160465299570863 - syst_JES_EtaIntercalibration_Stat56: 0.0004592891899446361 - syst_JES_EtaIntercalibration_Stat57: 0.0013240799182828806 - syst_JES_EtaIntercalibration_Stat58: 0.002323443945418094 - syst_JES_EtaIntercalibration_Stat59: 0.0032555496475249767 - syst_JES_EtaIntercalibration_Stat6: 2.9741356753979804e-05 - syst_JES_EtaIntercalibration_Stat60: 0.003113048507090759 - syst_JES_EtaIntercalibration_Stat61: 0.004219071010009194 - syst_JES_EtaIntercalibration_Stat62: 0.002060471066072756 - syst_JES_EtaIntercalibration_Stat63: 0.0017171635238089585 - syst_JES_EtaIntercalibration_Stat64: 7.42789988825913e-07 - syst_JES_EtaIntercalibration_Stat65: 1.0320930578198849e-06 - syst_JES_EtaIntercalibration_Stat66: 1.0320930578198849e-06 - syst_JES_EtaIntercalibration_Stat67: 0.00034882339485762707 - syst_JES_EtaIntercalibration_Stat68: 0.010390675471305993 - syst_JES_EtaIntercalibration_Stat69: 0.01690009689321336 - syst_JES_EtaIntercalibration_Stat7: 1.0320930578198849e-06 - syst_JES_EtaIntercalibration_Stat70: 0.009449048523528705 - syst_JES_EtaIntercalibration_Stat71: 0.006092481165338142 - syst_JES_EtaIntercalibration_Stat72: 0.013705203099553103 - syst_JES_EtaIntercalibration_Stat73: 0.010859290158661385 - syst_JES_EtaIntercalibration_Stat74: 0.009286299639791945 - syst_JES_EtaIntercalibration_Stat75: 0.01326451622751467 - syst_JES_EtaIntercalibration_Stat76: 0.001710383321802455 - syst_JES_EtaIntercalibration_Stat77: 0.00813690364942341 - syst_JES_EtaIntercalibration_Stat78: 0.011256024285688086 - syst_JES_EtaIntercalibration_Stat79: 0.009298645116359696 - syst_JES_EtaIntercalibration_Stat8: 6.320253396818833e-07 - syst_JES_EtaIntercalibration_Stat80: 0.014457224733675547 - syst_JES_EtaIntercalibration_Stat81: 0.009016719844267093 - syst_JES_EtaIntercalibration_Stat82: 0.00745242027800365 - syst_JES_EtaIntercalibration_Stat83: 0.007688018128880811 - syst_JES_EtaIntercalibration_Stat84: 0.007074076688869015 - syst_JES_EtaIntercalibration_Stat85: 0.006945376933615625 - syst_JES_EtaIntercalibration_Stat86: 0.001261368725908487 - syst_JES_EtaIntercalibration_Stat87: 6.320253396818833e-07 - syst_JES_EtaIntercalibration_Stat88: 0.0012625130316456143 - syst_JES_EtaIntercalibration_Stat89: 0.012434758733083646 - syst_JES_EtaIntercalibration_Stat9: 4.949145613810529e-05 - syst_JES_EtaIntercalibration_Stat90: 0.019765264986839923 - syst_JES_EtaIntercalibration_Stat91: 0.010623556501944159 - syst_JES_EtaIntercalibration_Stat92: 0.013449199678791301 - syst_JES_EtaIntercalibration_Stat93: 0.01868183588408805 - syst_JES_EtaIntercalibration_Stat94: 0.006588724516171548 - syst_JES_EtaIntercalibration_Stat95: 0.01793183233108095 - syst_JES_EtaIntercalibration_Stat96: 0.022567350464775433 - syst_JES_EtaIntercalibration_Stat97: 0.00796502810729504 - syst_JES_EtaIntercalibration_Stat98: 0.007302748575022968 - syst_JES_EtaIntercalibration_Stat99: 0.010244715369398995 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.022521478348456615 - syst_JES_Flavour_Comp: 0.1862455735715617 - syst_JES_Flavour_Response: 3.207381954180075 - syst_JES_Gjet_Generator: 2.476162151394775 - syst_JES_Gjet_OOC: 1.4582970993593865 - syst_JES_Gjet_Purity: 0.5672788798289604 - syst_JES_Gjet_Stat1: 0.0032276766799046027 - syst_JES_Gjet_Stat10: 0.07858159555996558 - syst_JES_Gjet_Stat11: 0.017908935981794116 - syst_JES_Gjet_Stat12: 0.01779826622876509 - syst_JES_Gjet_Stat13: 0.002954878683425386 - syst_JES_Gjet_Stat14: 0.0006874027694881655 - syst_JES_Gjet_Stat15: 5.987612128386408e-25 - syst_JES_Gjet_Stat2: 0.00011499951336853562 - syst_JES_Gjet_Stat3: 0.002401759893140861 - syst_JES_Gjet_Stat4: 0.011744637872237696 - syst_JES_Gjet_Stat5: 0.027419068310210685 - syst_JES_Gjet_Stat6: 0.04218908952561076 - syst_JES_Gjet_Stat7: 0.11036754720025267 - syst_JES_Gjet_Stat8: 0.07569536627165498 - syst_JES_Gjet_Stat9: 0.10649899717837723 - syst_JES_Gjet_Veto: 0.5640853193445119 - syst_JES_Gjet_dPhi: 0.2335246614385727 - syst_JES_LArESZee: 2.0528265270109896 - syst_JES_LArEsmear: 0.16818176922603711 - syst_JES_LAr_JVT: 0.2601299819321102 - syst_JES_MJB_Alpha: 1.624663657499607e-25 - syst_JES_MJB_Asym: 4.555293623316384e-08 + syst_JER_NP7: 5.12427231e-02 + syst_JER_NP8: 8.63483264e-02 + syst_JES_EtaIntercalibration_Modelling: 1.99784503e+00 + syst_JES_EtaIntercalibration_NonClosure: 7.93826228e-01 + syst_JES_EtaIntercalibration_Stat0: 1.03209306e-06 + syst_JES_EtaIntercalibration_Stat1: 1.03209306e-06 + syst_JES_EtaIntercalibration_Stat10: 4.94914561e-05 + syst_JES_EtaIntercalibration_Stat100: 1.17402443e-02 + syst_JES_EtaIntercalibration_Stat101: 8.62486087e-03 + syst_JES_EtaIntercalibration_Stat102: 9.26373753e-03 + syst_JES_EtaIntercalibration_Stat103: 1.67566795e-02 + syst_JES_EtaIntercalibration_Stat104: 1.51586436e-02 + syst_JES_EtaIntercalibration_Stat105: 1.70239735e-02 + syst_JES_EtaIntercalibration_Stat106: 2.17594477e-02 + syst_JES_EtaIntercalibration_Stat107: 1.47915727e-03 + syst_JES_EtaIntercalibration_Stat108: 2.17466598e-03 + syst_JES_EtaIntercalibration_Stat109: 3.33202382e-02 + syst_JES_EtaIntercalibration_Stat11: 2.17692051e-03 + syst_JES_EtaIntercalibration_Stat110: 4.48995354e-02 + syst_JES_EtaIntercalibration_Stat111: 3.19523536e-02 + syst_JES_EtaIntercalibration_Stat112: 6.11920491e-02 + syst_JES_EtaIntercalibration_Stat113: 4.37035865e-02 + syst_JES_EtaIntercalibration_Stat114: 2.89816563e-02 + syst_JES_EtaIntercalibration_Stat115: 7.63069715e-02 + syst_JES_EtaIntercalibration_Stat116: 6.64448770e-02 + syst_JES_EtaIntercalibration_Stat117: 4.52532526e-02 + syst_JES_EtaIntercalibration_Stat118: 4.01538799e-02 + syst_JES_EtaIntercalibration_Stat119: 3.67132956e-02 + syst_JES_EtaIntercalibration_Stat12: 6.32025340e-07 + syst_JES_EtaIntercalibration_Stat120: 6.02857751e-02 + syst_JES_EtaIntercalibration_Stat121: 4.78560349e-02 + syst_JES_EtaIntercalibration_Stat122: 3.81038620e-02 + syst_JES_EtaIntercalibration_Stat123: 5.00897524e-02 + syst_JES_EtaIntercalibration_Stat124: 5.05540087e-02 + syst_JES_EtaIntercalibration_Stat125: 3.55968211e-02 + syst_JES_EtaIntercalibration_Stat126: 3.28454359e-02 + syst_JES_EtaIntercalibration_Stat127: 2.17641810e-03 + syst_JES_EtaIntercalibration_Stat128: 3.82682042e-02 + syst_JES_EtaIntercalibration_Stat129: 9.64760150e-02 + syst_JES_EtaIntercalibration_Stat13: 2.06597051e-04 + syst_JES_EtaIntercalibration_Stat130: 1.36292431e-01 + syst_JES_EtaIntercalibration_Stat131: 7.90907079e-02 + syst_JES_EtaIntercalibration_Stat132: 4.49309370e-02 + syst_JES_EtaIntercalibration_Stat133: 6.21985409e-02 + syst_JES_EtaIntercalibration_Stat134: 8.89468418e-02 + syst_JES_EtaIntercalibration_Stat135: 7.55467675e-02 + syst_JES_EtaIntercalibration_Stat136: 7.36014042e-02 + syst_JES_EtaIntercalibration_Stat137: 6.24213489e-02 + syst_JES_EtaIntercalibration_Stat138: 8.51735546e-02 + syst_JES_EtaIntercalibration_Stat139: 8.14886512e-02 + syst_JES_EtaIntercalibration_Stat14: 2.13265419e-04 + syst_JES_EtaIntercalibration_Stat140: 7.21704670e-02 + syst_JES_EtaIntercalibration_Stat141: 5.51263385e-02 + syst_JES_EtaIntercalibration_Stat142: 4.27765966e-02 + syst_JES_EtaIntercalibration_Stat143: 2.60529301e-02 + syst_JES_EtaIntercalibration_Stat144: 1.13451274e-01 + syst_JES_EtaIntercalibration_Stat145: 1.82239164e-02 + syst_JES_EtaIntercalibration_Stat146: 1.97334074e-03 + syst_JES_EtaIntercalibration_Stat147: 1.75023734e-02 + syst_JES_EtaIntercalibration_Stat148: 5.69514642e-03 + syst_JES_EtaIntercalibration_Stat149: 5.57947258e-03 + syst_JES_EtaIntercalibration_Stat15: 4.95460677e-05 + syst_JES_EtaIntercalibration_Stat150: 6.36160222e-03 + syst_JES_EtaIntercalibration_Stat151: 2.12587212e-02 + syst_JES_EtaIntercalibration_Stat152: 3.58791454e-02 + syst_JES_EtaIntercalibration_Stat153: 1.69914184e-02 + syst_JES_EtaIntercalibration_Stat154: 3.64540462e-02 + syst_JES_EtaIntercalibration_Stat155: 1.00069546e-02 + syst_JES_EtaIntercalibration_Stat156: 9.68684071e-03 + syst_JES_EtaIntercalibration_Stat157: 1.68876593e-02 + syst_JES_EtaIntercalibration_Stat158: 2.05256339e-02 + syst_JES_EtaIntercalibration_Stat159: 5.85376753e-03 + syst_JES_EtaIntercalibration_Stat16: 2.52791693e-06 + syst_JES_EtaIntercalibration_Stat160: 6.96457630e-05 + syst_JES_EtaIntercalibration_Stat161: 1.75748959e-02 + syst_JES_EtaIntercalibration_Stat162: 2.09116102e-02 + syst_JES_EtaIntercalibration_Stat163: 8.38791524e-03 + syst_JES_EtaIntercalibration_Stat164: 1.23640013e-03 + syst_JES_EtaIntercalibration_Stat165: 8.97973278e-03 + syst_JES_EtaIntercalibration_Stat166: 6.49359542e-03 + syst_JES_EtaIntercalibration_Stat167: 3.73726976e-03 + syst_JES_EtaIntercalibration_Stat168: 5.74301606e-03 + syst_JES_EtaIntercalibration_Stat169: 2.23321147e-03 + syst_JES_EtaIntercalibration_Stat17: 1.99629674e-04 + syst_JES_EtaIntercalibration_Stat170: 4.55889658e-03 + syst_JES_EtaIntercalibration_Stat171: 1.50561780e-02 + syst_JES_EtaIntercalibration_Stat172: 8.03291242e-03 + syst_JES_EtaIntercalibration_Stat173: 5.34492161e-03 + syst_JES_EtaIntercalibration_Stat174: 3.22470262e-03 + syst_JES_EtaIntercalibration_Stat175: 1.08650451e-02 + syst_JES_EtaIntercalibration_Stat176: 5.47887650e-03 + syst_JES_EtaIntercalibration_Stat177: 4.77574295e-03 + syst_JES_EtaIntercalibration_Stat178: 6.02623975e-03 + syst_JES_EtaIntercalibration_Stat179: 4.43122477e-03 + syst_JES_EtaIntercalibration_Stat18: 1.31691292e-06 + syst_JES_EtaIntercalibration_Stat180: 4.13013347e-03 + syst_JES_EtaIntercalibration_Stat181: 6.83274463e-03 + syst_JES_EtaIntercalibration_Stat182: 3.27287065e-03 + syst_JES_EtaIntercalibration_Stat183: 8.51789551e-04 + syst_JES_EtaIntercalibration_Stat184: 9.54326395e-04 + syst_JES_EtaIntercalibration_Stat185: 3.90970485e-03 + syst_JES_EtaIntercalibration_Stat186: 5.28352950e-03 + syst_JES_EtaIntercalibration_Stat187: 6.46774007e-03 + syst_JES_EtaIntercalibration_Stat188: 4.44357635e-03 + syst_JES_EtaIntercalibration_Stat189: 1.81360610e-03 + syst_JES_EtaIntercalibration_Stat19: 2.02234707e-06 + syst_JES_EtaIntercalibration_Stat190: 2.86510657e-03 + syst_JES_EtaIntercalibration_Stat191: 4.74080875e-03 + syst_JES_EtaIntercalibration_Stat192: 2.01416385e-03 + syst_JES_EtaIntercalibration_Stat193: 4.45454765e-03 + syst_JES_EtaIntercalibration_Stat194: 2.13921059e-03 + syst_JES_EtaIntercalibration_Stat195: 4.74995824e-03 + syst_JES_EtaIntercalibration_Stat196: 1.38329876e-03 + syst_JES_EtaIntercalibration_Stat197: 2.10964314e-03 + syst_JES_EtaIntercalibration_Stat198: 1.54108134e-03 + syst_JES_EtaIntercalibration_Stat199: 7.26584930e-04 + syst_JES_EtaIntercalibration_Stat2: 1.45550061e-06 + syst_JES_EtaIntercalibration_Stat20: 1.03209306e-06 + syst_JES_EtaIntercalibration_Stat200: 5.92400344e-04 + syst_JES_EtaIntercalibration_Stat201: 5.82396044e-04 + syst_JES_EtaIntercalibration_Stat202: 5.59982580e-04 + syst_JES_EtaIntercalibration_Stat203: 1.72571261e-04 + syst_JES_EtaIntercalibration_Stat204: 6.66328618e-04 + syst_JES_EtaIntercalibration_Stat205: 6.95032496e-04 + syst_JES_EtaIntercalibration_Stat206: 7.53163687e-04 + syst_JES_EtaIntercalibration_Stat207: 1.20482684e-03 + syst_JES_EtaIntercalibration_Stat208: 1.01093162e-03 + syst_JES_EtaIntercalibration_Stat209: 2.42471359e-03 + syst_JES_EtaIntercalibration_Stat21: 1.03209306e-06 + syst_JES_EtaIntercalibration_Stat210: 4.29083987e-04 + syst_JES_EtaIntercalibration_Stat211: 1.23696702e-03 + syst_JES_EtaIntercalibration_Stat212: 2.11009738e-04 + syst_JES_EtaIntercalibration_Stat213: 6.86011930e-04 + syst_JES_EtaIntercalibration_Stat214: 1.42201371e-04 + syst_JES_EtaIntercalibration_Stat215: 1.45115197e-04 + syst_JES_EtaIntercalibration_Stat216: 1.02793079e-03 + syst_JES_EtaIntercalibration_Stat217: 1.63233965e-04 + syst_JES_EtaIntercalibration_Stat218: 3.81850033e-04 + syst_JES_EtaIntercalibration_Stat219: 6.73806701e-04 + syst_JES_EtaIntercalibration_Stat22: 1.03209306e-06 + syst_JES_EtaIntercalibration_Stat220: 2.29376198e-04 + syst_JES_EtaIntercalibration_Stat221: 2.06204625e-04 + syst_JES_EtaIntercalibration_Stat222: 1.21689000e-03 + syst_JES_EtaIntercalibration_Stat223: 2.23474717e-04 + syst_JES_EtaIntercalibration_Stat224: 2.33635806e-04 + syst_JES_EtaIntercalibration_Stat225: 2.33350723e-04 + syst_JES_EtaIntercalibration_Stat226: 2.10383572e-04 + syst_JES_EtaIntercalibration_Stat227: 2.08128488e-04 + syst_JES_EtaIntercalibration_Stat228: 2.18694960e-04 + syst_JES_EtaIntercalibration_Stat229: 3.51369037e-04 + syst_JES_EtaIntercalibration_Stat23: 1.45550061e-06 + syst_JES_EtaIntercalibration_Stat230: 1.70205068e-03 + syst_JES_EtaIntercalibration_Stat231: 1.42028166e-04 + syst_JES_EtaIntercalibration_Stat232: 1.34458990e-04 + syst_JES_EtaIntercalibration_Stat233: 1.21702550e-04 + syst_JES_EtaIntercalibration_Stat234: 2.15102464e-04 + syst_JES_EtaIntercalibration_Stat235: 2.08636790e-04 + syst_JES_EtaIntercalibration_Stat236: 2.16259038e-03 + syst_JES_EtaIntercalibration_Stat237: 6.32025340e-07 + syst_JES_EtaIntercalibration_Stat238: 1.97224908e-04 + syst_JES_EtaIntercalibration_Stat239: 3.54485557e-04 + syst_JES_EtaIntercalibration_Stat24: 2.14409681e-03 + syst_JES_EtaIntercalibration_Stat240: 3.03018278e-04 + syst_JES_EtaIntercalibration_Stat241: 1.32860632e-03 + syst_JES_EtaIntercalibration_Stat242: 2.29411437e-04 + syst_JES_EtaIntercalibration_Stat243: 5.52145361e-04 + syst_JES_EtaIntercalibration_Stat244: 4.28973612e-04 + syst_JES_EtaIntercalibration_Stat245: 5.04573572e-04 + syst_JES_EtaIntercalibration_Stat25: 2.61936532e-04 + syst_JES_EtaIntercalibration_Stat26: 1.50667255e-04 + syst_JES_EtaIntercalibration_Stat27: 1.82170975e-03 + syst_JES_EtaIntercalibration_Stat28: 3.45700604e-04 + syst_JES_EtaIntercalibration_Stat29: 2.54703298e-04 + syst_JES_EtaIntercalibration_Stat3: 1.45550061e-06 + syst_JES_EtaIntercalibration_Stat30: 1.99179737e-04 + syst_JES_EtaIntercalibration_Stat31: 1.81387849e-03 + syst_JES_EtaIntercalibration_Stat32: 8.97480039e-05 + syst_JES_EtaIntercalibration_Stat33: 1.00132494e-04 + syst_JES_EtaIntercalibration_Stat34: 1.32332355e-03 + syst_JES_EtaIntercalibration_Stat35: 1.31051101e-04 + syst_JES_EtaIntercalibration_Stat36: 1.77881618e-04 + syst_JES_EtaIntercalibration_Stat37: 1.45741002e-03 + syst_JES_EtaIntercalibration_Stat38: 4.99636378e-04 + syst_JES_EtaIntercalibration_Stat39: 1.51547276e-04 + syst_JES_EtaIntercalibration_Stat4: 8.64985721e-06 + syst_JES_EtaIntercalibration_Stat40: 5.60678071e-04 + syst_JES_EtaIntercalibration_Stat41: 1.45329787e-03 + syst_JES_EtaIntercalibration_Stat42: 8.51085453e-06 + syst_JES_EtaIntercalibration_Stat43: 1.03209306e-06 + syst_JES_EtaIntercalibration_Stat44: 1.03209306e-06 + syst_JES_EtaIntercalibration_Stat45: 3.10491261e-05 + syst_JES_EtaIntercalibration_Stat46: 2.98740745e-03 + syst_JES_EtaIntercalibration_Stat47: 1.74159130e-03 + syst_JES_EtaIntercalibration_Stat48: 1.88092772e-03 + syst_JES_EtaIntercalibration_Stat49: 1.66883612e-03 + syst_JES_EtaIntercalibration_Stat5: 2.96442078e-05 + syst_JES_EtaIntercalibration_Stat50: 2.23508485e-04 + syst_JES_EtaIntercalibration_Stat51: 1.32630281e-03 + syst_JES_EtaIntercalibration_Stat52: 9.30903518e-04 + syst_JES_EtaIntercalibration_Stat53: 1.31772255e-03 + syst_JES_EtaIntercalibration_Stat54: 2.16982793e-03 + syst_JES_EtaIntercalibration_Stat55: 5.16046530e-04 + syst_JES_EtaIntercalibration_Stat56: 4.59289190e-04 + syst_JES_EtaIntercalibration_Stat57: 1.32407992e-03 + syst_JES_EtaIntercalibration_Stat58: 2.32344395e-03 + syst_JES_EtaIntercalibration_Stat59: 3.25554965e-03 + syst_JES_EtaIntercalibration_Stat6: 2.97413568e-05 + syst_JES_EtaIntercalibration_Stat60: 3.11304851e-03 + syst_JES_EtaIntercalibration_Stat61: 4.21907101e-03 + syst_JES_EtaIntercalibration_Stat62: 2.06047107e-03 + syst_JES_EtaIntercalibration_Stat63: 1.71716352e-03 + syst_JES_EtaIntercalibration_Stat64: 7.42789989e-07 + syst_JES_EtaIntercalibration_Stat65: 1.03209306e-06 + syst_JES_EtaIntercalibration_Stat66: 1.03209306e-06 + syst_JES_EtaIntercalibration_Stat67: 3.48823395e-04 + syst_JES_EtaIntercalibration_Stat68: 1.03906755e-02 + syst_JES_EtaIntercalibration_Stat69: 1.69000969e-02 + syst_JES_EtaIntercalibration_Stat7: 1.03209306e-06 + syst_JES_EtaIntercalibration_Stat70: 9.44904852e-03 + syst_JES_EtaIntercalibration_Stat71: 6.09248117e-03 + syst_JES_EtaIntercalibration_Stat72: 1.37052031e-02 + syst_JES_EtaIntercalibration_Stat73: 1.08592902e-02 + syst_JES_EtaIntercalibration_Stat74: 9.28629964e-03 + syst_JES_EtaIntercalibration_Stat75: 1.32645162e-02 + syst_JES_EtaIntercalibration_Stat76: 1.71038332e-03 + syst_JES_EtaIntercalibration_Stat77: 8.13690365e-03 + syst_JES_EtaIntercalibration_Stat78: 1.12560243e-02 + syst_JES_EtaIntercalibration_Stat79: 9.29864512e-03 + syst_JES_EtaIntercalibration_Stat8: 6.32025340e-07 + syst_JES_EtaIntercalibration_Stat80: 1.44572247e-02 + syst_JES_EtaIntercalibration_Stat81: 9.01671984e-03 + syst_JES_EtaIntercalibration_Stat82: 7.45242028e-03 + syst_JES_EtaIntercalibration_Stat83: 7.68801813e-03 + syst_JES_EtaIntercalibration_Stat84: 7.07407669e-03 + syst_JES_EtaIntercalibration_Stat85: 6.94537693e-03 + syst_JES_EtaIntercalibration_Stat86: 1.26136873e-03 + syst_JES_EtaIntercalibration_Stat87: 6.32025340e-07 + syst_JES_EtaIntercalibration_Stat88: 1.26251303e-03 + syst_JES_EtaIntercalibration_Stat89: 1.24347587e-02 + syst_JES_EtaIntercalibration_Stat9: 4.94914561e-05 + syst_JES_EtaIntercalibration_Stat90: 1.97652650e-02 + syst_JES_EtaIntercalibration_Stat91: 1.06235565e-02 + syst_JES_EtaIntercalibration_Stat92: 1.34491997e-02 + syst_JES_EtaIntercalibration_Stat93: 1.86818359e-02 + syst_JES_EtaIntercalibration_Stat94: 6.58872452e-03 + syst_JES_EtaIntercalibration_Stat95: 1.79318323e-02 + syst_JES_EtaIntercalibration_Stat96: 2.25673505e-02 + syst_JES_EtaIntercalibration_Stat97: 7.96502811e-03 + syst_JES_EtaIntercalibration_Stat98: 7.30274858e-03 + syst_JES_EtaIntercalibration_Stat99: 1.02447154e-02 + syst_JES_EtaIntercalibration_TotalStat_MJB: 2.25214783e-02 + syst_JES_Flavour_Comp: 1.86245574e-01 + syst_JES_Flavour_Response: 3.20738195e+00 + syst_JES_Gjet_Generator: 2.47616215e+00 + syst_JES_Gjet_OOC: 1.45829710e+00 + syst_JES_Gjet_Purity: 5.67278880e-01 + syst_JES_Gjet_Stat1: 3.22767668e-03 + syst_JES_Gjet_Stat10: 7.85815956e-02 + syst_JES_Gjet_Stat11: 1.79089360e-02 + syst_JES_Gjet_Stat12: 1.77982662e-02 + syst_JES_Gjet_Stat13: 2.95487868e-03 + syst_JES_Gjet_Stat14: 6.87402769e-04 + syst_JES_Gjet_Stat15: 5.98761213e-25 + syst_JES_Gjet_Stat2: 1.14999513e-04 + syst_JES_Gjet_Stat3: 2.40175989e-03 + syst_JES_Gjet_Stat4: 1.17446379e-02 + syst_JES_Gjet_Stat5: 2.74190683e-02 + syst_JES_Gjet_Stat6: 4.21890895e-02 + syst_JES_Gjet_Stat7: 1.10367547e-01 + syst_JES_Gjet_Stat8: 7.56953663e-02 + syst_JES_Gjet_Stat9: 1.06498997e-01 + syst_JES_Gjet_Veto: 5.64085319e-01 + syst_JES_Gjet_dPhi: 2.33524661e-01 + syst_JES_LArESZee: 2.05282653e+00 + syst_JES_LArEsmear: 1.68181769e-01 + syst_JES_LAr_JVT: 2.60129982e-01 + syst_JES_MJB_Alpha: 1.62466366e-25 + syst_JES_MJB_Asym: 4.55529362e-08 syst_JES_MJB_Beta: 0.0 - syst_JES_MJB_Fragmentation: 0.014238194293870271 + syst_JES_MJB_Fragmentation: 1.42381943e-02 syst_JES_MJB_Stat1: 0.0 syst_JES_MJB_Stat10: 0.0 syst_JES_MJB_Stat11: 0.0 @@ -21529,335 +21529,335 @@ bins: syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 0.0027487646316118083 - syst_JES_MJB_Stat3: 2.597210185949531e-18 - syst_JES_MJB_Stat4: 0.000150428612637357 - syst_JES_MJB_Stat5: 0.0013014188103758143 + syst_JES_MJB_Stat2: 2.74876463e-03 + syst_JES_MJB_Stat3: 2.59721019e-18 + syst_JES_MJB_Stat4: 1.50428613e-04 + syst_JES_MJB_Stat5: 1.30141881e-03 syst_JES_MJB_Stat6: 0.0 syst_JES_MJB_Stat7: 0.0 syst_JES_MJB_Stat8: 0.0 syst_JES_MJB_Stat9: 0.0 - syst_JES_MJB_Threshold: 5.8560637795604334e-08 - syst_JES_Pileup_MuOffset: 8.97146877538348e-08 - syst_JES_Pileup_NPVOffset: 0.11531899355700258 - syst_JES_Pileup_Pt_term: 0.5814681655086545 - syst_JES_Pileup_Rho_topology: 1.0558952315452514 - syst_JES_PunchThrough_MC15: 3.935452683936119e-12 - syst_JES_SingleParticle_HighPt: 0.0002143947760557612 - syst_JES_Zjet_MC: 2.1953626124173655 - syst_JES_Zjet_MuScale: 0.1490039932350808 - syst_JES_Zjet_MuSmearID: 0.013285328778393104 - syst_JES_Zjet_MuSmearMS: 0.15203953531894263 - syst_JES_Zjet_OOC: 1.0044508288114455 - syst_JES_Zjet_Stat1: 0.008466043585996945 - syst_JES_Zjet_Stat10: 0.27503979712034404 - syst_JES_Zjet_Stat11: 0.20227502935360062 - syst_JES_Zjet_Stat12: 0.028730880164032566 - syst_JES_Zjet_Stat13: 0.014270094630029614 + syst_JES_MJB_Threshold: 5.85606378e-08 + syst_JES_Pileup_MuOffset: 8.97146878e-08 + syst_JES_Pileup_NPVOffset: 1.15318994e-01 + syst_JES_Pileup_Pt_term: 5.81468166e-01 + syst_JES_Pileup_Rho_topology: 1.05589523e+00 + syst_JES_PunchThrough_MC15: 3.93545268e-12 + syst_JES_SingleParticle_HighPt: 2.14394776e-04 + syst_JES_Zjet_MC: 2.19536261e+00 + syst_JES_Zjet_MuScale: 1.49003993e-01 + syst_JES_Zjet_MuSmearID: 1.32853288e-02 + syst_JES_Zjet_MuSmearMS: 1.52039535e-01 + syst_JES_Zjet_OOC: 1.00445083e+00 + syst_JES_Zjet_Stat1: 8.46604359e-03 + syst_JES_Zjet_Stat10: 2.75039797e-01 + syst_JES_Zjet_Stat11: 2.02275029e-01 + syst_JES_Zjet_Stat12: 2.87308802e-02 + syst_JES_Zjet_Stat13: 1.42700946e-02 syst_JES_Zjet_Stat2: 0.0 - syst_JES_Zjet_Stat3: 0.00012999041310804424 - syst_JES_Zjet_Stat4: 0.000907248213004578 - syst_JES_Zjet_Stat5: 0.008141504820977507 - syst_JES_Zjet_Stat6: 0.031680755463688044 - syst_JES_Zjet_Stat7: 0.025713249502931364 - syst_JES_Zjet_Stat8: 0.08678160346525063 - syst_JES_Zjet_Stat9: 0.19777195832574446 - syst_JES_Zjet_Veto: 0.1863335919795462 - syst_JES_Zjet_dPhi: 0.18482534999290548 + syst_JES_Zjet_Stat3: 1.29990413e-04 + syst_JES_Zjet_Stat4: 9.07248213e-04 + syst_JES_Zjet_Stat5: 8.14150482e-03 + syst_JES_Zjet_Stat6: 3.16807555e-02 + syst_JES_Zjet_Stat7: 2.57132495e-02 + syst_JES_Zjet_Stat8: 8.67816035e-02 + syst_JES_Zjet_Stat9: 1.97771958e-01 + syst_JES_Zjet_Veto: 1.86333592e-01 + syst_JES_Zjet_dPhi: 1.84825350e-01 syst_PRW: 0.0 syst_Unfolding_bias: 0.01704 - syst_cleaning: 1.046938110635008 + syst_cleaning: 1.04693811e+00 syst_lumi: 2.372 - stat: 0.6564 syst_JER_CROSS_CALIB_FORWARD: 0.02921 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.2815822570759742 - syst_JER_NP1: 0.08093572681455327 + syst_JER_NP0: 2.81582257e-01 + syst_JER_NP1: 8.09357268e-02 syst_JER_NP2: 0.0 - syst_JER_NP3: 0.09927623922671527 - syst_JER_NP4: 0.029583427793276426 + syst_JER_NP3: 9.92762392e-02 + syst_JER_NP4: 2.95834278e-02 syst_JER_NP5: 0.0 syst_JER_NP6: 0.0 - syst_JER_NP7: 0.027149896408642155 - syst_JER_NP8: 0.04465921965283316 - syst_JES_EtaIntercalibration_Modelling: 0.992923867927446 - syst_JES_EtaIntercalibration_NonClosure: 0.3452041714695811 - syst_JES_EtaIntercalibration_Stat0: 5.0798551160441576e-08 - syst_JES_EtaIntercalibration_Stat1: 5.0798551160441576e-08 - syst_JES_EtaIntercalibration_Stat10: 5.943470089796027e-06 - syst_JES_EtaIntercalibration_Stat100: 0.002537125292530899 - syst_JES_EtaIntercalibration_Stat101: 0.005103441081740829 - syst_JES_EtaIntercalibration_Stat102: 0.0017910112981218182 - syst_JES_EtaIntercalibration_Stat103: 0.003390386703607717 - syst_JES_EtaIntercalibration_Stat104: 0.003921076733500633 - syst_JES_EtaIntercalibration_Stat105: 0.0046184459236847195 - syst_JES_EtaIntercalibration_Stat106: 0.007536943225704968 - syst_JES_EtaIntercalibration_Stat107: 0.0003695324653348743 - syst_JES_EtaIntercalibration_Stat108: 0.0010866833611958913 - syst_JES_EtaIntercalibration_Stat109: 0.013790291766311543 - syst_JES_EtaIntercalibration_Stat11: 0.0011587288215026362 - syst_JES_EtaIntercalibration_Stat110: 0.01919296225182554 - syst_JES_EtaIntercalibration_Stat111: 0.017801378457861065 - syst_JES_EtaIntercalibration_Stat112: 0.02124534007729695 - syst_JES_EtaIntercalibration_Stat113: 0.020390529051498393 - syst_JES_EtaIntercalibration_Stat114: 0.019960403302538756 - syst_JES_EtaIntercalibration_Stat115: 0.028944966315406207 - syst_JES_EtaIntercalibration_Stat116: 0.018837491207695362 - syst_JES_EtaIntercalibration_Stat117: 0.012010280096650536 - syst_JES_EtaIntercalibration_Stat118: 0.013145170624605828 - syst_JES_EtaIntercalibration_Stat119: 0.016130482540829338 - syst_JES_EtaIntercalibration_Stat12: 3.1107632503937036e-08 - syst_JES_EtaIntercalibration_Stat120: 0.022490017785675494 - syst_JES_EtaIntercalibration_Stat121: 0.023644544296729426 - syst_JES_EtaIntercalibration_Stat122: 0.01954318633181396 - syst_JES_EtaIntercalibration_Stat123: 0.024840056360644593 - syst_JES_EtaIntercalibration_Stat124: 0.019300794672758942 - syst_JES_EtaIntercalibration_Stat125: 0.015489539010248174 - syst_JES_EtaIntercalibration_Stat126: 0.008681327361066395 - syst_JES_EtaIntercalibration_Stat127: 0.0010277163760617125 - syst_JES_EtaIntercalibration_Stat128: 0.013125102618646455 - syst_JES_EtaIntercalibration_Stat129: 0.05725980854840505 - syst_JES_EtaIntercalibration_Stat13: 0.00010955050854781461 - syst_JES_EtaIntercalibration_Stat130: 0.06586675261465377 - syst_JES_EtaIntercalibration_Stat131: 0.040263935165356105 - syst_JES_EtaIntercalibration_Stat132: 0.03288871035401054 - syst_JES_EtaIntercalibration_Stat133: 0.04268868021794536 - syst_JES_EtaIntercalibration_Stat134: 0.058917787636672166 - syst_JES_EtaIntercalibration_Stat135: 0.04224142837014393 - syst_JES_EtaIntercalibration_Stat136: 0.03936232049816169 - syst_JES_EtaIntercalibration_Stat137: 0.03214399807117964 - syst_JES_EtaIntercalibration_Stat138: 0.045014940486465156 - syst_JES_EtaIntercalibration_Stat139: 0.03861641457981308 - syst_JES_EtaIntercalibration_Stat14: 0.00011311853308757499 - syst_JES_EtaIntercalibration_Stat140: 0.05392389521353219 - syst_JES_EtaIntercalibration_Stat141: 0.04240166977844151 - syst_JES_EtaIntercalibration_Stat142: 0.017655527484331926 - syst_JES_EtaIntercalibration_Stat143: 0.026472252392835786 - syst_JES_EtaIntercalibration_Stat144: 0.05438167614187705 - syst_JES_EtaIntercalibration_Stat145: 0.013909385608286225 - syst_JES_EtaIntercalibration_Stat146: 0.0026803163022300182 - syst_JES_EtaIntercalibration_Stat147: 0.010125569021047656 - syst_JES_EtaIntercalibration_Stat148: 0.008036938269639752 - syst_JES_EtaIntercalibration_Stat149: 0.006344598568861548 - syst_JES_EtaIntercalibration_Stat15: 5.946225845424979e-06 - syst_JES_EtaIntercalibration_Stat150: 0.0010758965691459379 - syst_JES_EtaIntercalibration_Stat151: 0.016499699997272677 - syst_JES_EtaIntercalibration_Stat152: 0.021242134426653084 - syst_JES_EtaIntercalibration_Stat153: 0.009212778245458858 - syst_JES_EtaIntercalibration_Stat154: 0.016931292774032346 - syst_JES_EtaIntercalibration_Stat155: 0.007131888436276889 - syst_JES_EtaIntercalibration_Stat156: 0.005134596643116186 - syst_JES_EtaIntercalibration_Stat157: 0.013269940919235473 - syst_JES_EtaIntercalibration_Stat158: 0.012903918736182433 - syst_JES_EtaIntercalibration_Stat159: 0.0009744335193716399 - syst_JES_EtaIntercalibration_Stat16: 1.0510435611809817e-07 - syst_JES_EtaIntercalibration_Stat160: 3.616522086204344e-05 - syst_JES_EtaIntercalibration_Stat161: 0.013405114769582355 - syst_JES_EtaIntercalibration_Stat162: 0.01253839107501437 - syst_JES_EtaIntercalibration_Stat163: 0.008172926709569836 - syst_JES_EtaIntercalibration_Stat164: 0.0006404578770692105 - syst_JES_EtaIntercalibration_Stat165: 0.003991102644633435 - syst_JES_EtaIntercalibration_Stat166: 0.005238535291472226 - syst_JES_EtaIntercalibration_Stat167: 0.0010820094304117686 - syst_JES_EtaIntercalibration_Stat168: 0.005434327281274106 - syst_JES_EtaIntercalibration_Stat169: 0.0036633541843507297 - syst_JES_EtaIntercalibration_Stat17: 9.881491791728616e-05 - syst_JES_EtaIntercalibration_Stat170: 0.008280648947999184 - syst_JES_EtaIntercalibration_Stat171: 0.005120191866522191 - syst_JES_EtaIntercalibration_Stat172: 0.005697990588795316 - syst_JES_EtaIntercalibration_Stat173: 0.003025462939782935 - syst_JES_EtaIntercalibration_Stat174: 0.005044159072630442 - syst_JES_EtaIntercalibration_Stat175: 0.006157784371630758 - syst_JES_EtaIntercalibration_Stat176: 0.004468890198639926 - syst_JES_EtaIntercalibration_Stat177: 0.003833867857660198 - syst_JES_EtaIntercalibration_Stat178: 0.005584721367266231 - syst_JES_EtaIntercalibration_Stat179: 0.0023621633320962377 - syst_JES_EtaIntercalibration_Stat18: 6.481642288031638e-08 - syst_JES_EtaIntercalibration_Stat180: 0.0024160214128811025 - syst_JES_EtaIntercalibration_Stat181: 0.004776819733619849 - syst_JES_EtaIntercalibration_Stat182: 0.0018272847484382395 - syst_JES_EtaIntercalibration_Stat183: 0.00044722371079807476 - syst_JES_EtaIntercalibration_Stat184: 0.00017002122573373007 - syst_JES_EtaIntercalibration_Stat185: 0.002320066971016138 - syst_JES_EtaIntercalibration_Stat186: 0.0021446691772858584 - syst_JES_EtaIntercalibration_Stat187: 0.00184779415249643 - syst_JES_EtaIntercalibration_Stat188: 0.0033297810750107884 - syst_JES_EtaIntercalibration_Stat189: 0.0006571980341381127 - syst_JES_EtaIntercalibration_Stat19: 5.099277543927179e-08 - syst_JES_EtaIntercalibration_Stat190: 0.00523945671682666 - syst_JES_EtaIntercalibration_Stat191: 0.004723592488773772 - syst_JES_EtaIntercalibration_Stat192: 0.0010702679664457869 - syst_JES_EtaIntercalibration_Stat193: 0.0024779610065535735 - syst_JES_EtaIntercalibration_Stat194: 0.0019855907246758456 - syst_JES_EtaIntercalibration_Stat195: 0.0022909289287972247 - syst_JES_EtaIntercalibration_Stat196: 0.0019082271877321104 - syst_JES_EtaIntercalibration_Stat197: 0.0015160603113003124 - syst_JES_EtaIntercalibration_Stat198: 0.0019921729342604775 - syst_JES_EtaIntercalibration_Stat199: 0.0020452966826355534 - syst_JES_EtaIntercalibration_Stat2: 7.163239682573799e-08 - syst_JES_EtaIntercalibration_Stat20: 5.0798551160441576e-08 - syst_JES_EtaIntercalibration_Stat200: 0.0015540619421374425 - syst_JES_EtaIntercalibration_Stat201: 0.0003772613285244063 - syst_JES_EtaIntercalibration_Stat202: 0.0009023937873788806 - syst_JES_EtaIntercalibration_Stat203: 0.0012318035801518845 - syst_JES_EtaIntercalibration_Stat204: 0.00039229265542449303 - syst_JES_EtaIntercalibration_Stat205: 0.0005186425937001318 - syst_JES_EtaIntercalibration_Stat206: 0.001179983462087499 - syst_JES_EtaIntercalibration_Stat207: 0.0008118324134327232 - syst_JES_EtaIntercalibration_Stat208: 0.00048663036773304643 - syst_JES_EtaIntercalibration_Stat209: 0.001109073897447776 - syst_JES_EtaIntercalibration_Stat21: 5.0798551160441576e-08 - syst_JES_EtaIntercalibration_Stat210: 0.0005228193449940429 - syst_JES_EtaIntercalibration_Stat211: 0.0018740131983259886 - syst_JES_EtaIntercalibration_Stat212: 7.902327441962905e-05 - syst_JES_EtaIntercalibration_Stat213: 0.00036543135726836587 - syst_JES_EtaIntercalibration_Stat214: 7.5352870383284e-05 - syst_JES_EtaIntercalibration_Stat215: 8.419772621632962e-05 - syst_JES_EtaIntercalibration_Stat216: 0.0005373037937703399 - syst_JES_EtaIntercalibration_Stat217: 0.0001660868088530814 - syst_JES_EtaIntercalibration_Stat218: 0.00020292260365715794 - syst_JES_EtaIntercalibration_Stat219: 0.0003520242529997045 - syst_JES_EtaIntercalibration_Stat22: 5.0798551160441576e-08 - syst_JES_EtaIntercalibration_Stat220: 0.00010335447776947063 - syst_JES_EtaIntercalibration_Stat221: 0.0001133574579593244 - syst_JES_EtaIntercalibration_Stat222: 0.0006471911570106036 - syst_JES_EtaIntercalibration_Stat223: 0.00020348450235828773 - syst_JES_EtaIntercalibration_Stat224: 0.00012380437512462956 - syst_JES_EtaIntercalibration_Stat225: 0.00012364747753189305 - syst_JES_EtaIntercalibration_Stat226: 0.00011152069359540408 - syst_JES_EtaIntercalibration_Stat227: 0.00011030205109153683 - syst_JES_EtaIntercalibration_Stat228: 0.0001159140831607618 - syst_JES_EtaIntercalibration_Stat229: 0.00018707135002452943 - syst_JES_EtaIntercalibration_Stat23: 7.163239682573799e-08 - syst_JES_EtaIntercalibration_Stat230: 0.000904551810055676 - syst_JES_EtaIntercalibration_Stat231: 7.526626784290558e-05 - syst_JES_EtaIntercalibration_Stat232: 6.723884349838268e-05 - syst_JES_EtaIntercalibration_Stat233: 2.8284389687599767e-05 - syst_JES_EtaIntercalibration_Stat234: 0.00011362606688167994 - syst_JES_EtaIntercalibration_Stat235: 0.00011035561471896206 - syst_JES_EtaIntercalibration_Stat236: 0.0011512085122600511 - syst_JES_EtaIntercalibration_Stat237: 3.1107632503937036e-08 - syst_JES_EtaIntercalibration_Stat238: 0.00010442826952027885 - syst_JES_EtaIntercalibration_Stat239: 0.00018816274524995644 - syst_JES_EtaIntercalibration_Stat24: 0.00038187786905632536 - syst_JES_EtaIntercalibration_Stat240: 0.0001609713846464644 - syst_JES_EtaIntercalibration_Stat241: 0.0007072371185642054 - syst_JES_EtaIntercalibration_Stat242: 0.00012155707332360385 - syst_JES_EtaIntercalibration_Stat243: 0.0002941638116339262 - syst_JES_EtaIntercalibration_Stat244: 0.0002285639400692944 - syst_JES_EtaIntercalibration_Stat245: 0.0002687939707285117 - syst_JES_EtaIntercalibration_Stat25: 4.337267384828839e-05 - syst_JES_EtaIntercalibration_Stat26: 2.848074034764546e-05 - syst_JES_EtaIntercalibration_Stat27: 0.0011019089382975347 - syst_JES_EtaIntercalibration_Stat28: 5.596685157305171e-05 - syst_JES_EtaIntercalibration_Stat29: 7.754910492713634e-05 - syst_JES_EtaIntercalibration_Stat3: 7.163239682573799e-08 - syst_JES_EtaIntercalibration_Stat30: 8.451063897522016e-05 - syst_JES_EtaIntercalibration_Stat31: 0.0006955915036858918 - syst_JES_EtaIntercalibration_Stat32: 6.442391559040789e-06 - syst_JES_EtaIntercalibration_Stat33: 8.857067686316957e-05 - syst_JES_EtaIntercalibration_Stat34: 0.001017787207462837 - syst_JES_EtaIntercalibration_Stat35: 6.135190033731635e-05 - syst_JES_EtaIntercalibration_Stat36: 4.024420051386287e-05 - syst_JES_EtaIntercalibration_Stat37: 0.00042116433752159023 - syst_JES_EtaIntercalibration_Stat38: 2.2596665130058464e-05 - syst_JES_EtaIntercalibration_Stat39: 6.797462281432681e-05 - syst_JES_EtaIntercalibration_Stat4: 4.28884026631909e-07 - syst_JES_EtaIntercalibration_Stat40: 0.0004180450761318449 - syst_JES_EtaIntercalibration_Stat41: 0.00036647034609088466 - syst_JES_EtaIntercalibration_Stat42: 4.2133985231283307e-07 - syst_JES_EtaIntercalibration_Stat43: 5.0798551160441576e-08 - syst_JES_EtaIntercalibration_Stat44: 5.0798551160441576e-08 - syst_JES_EtaIntercalibration_Stat45: 2.3927265869714407e-05 - syst_JES_EtaIntercalibration_Stat46: 0.000553020706551753 - syst_JES_EtaIntercalibration_Stat47: 0.00097886665632608 - syst_JES_EtaIntercalibration_Stat48: 0.00010615166178633285 - syst_JES_EtaIntercalibration_Stat49: 0.0001957258661367986 - syst_JES_EtaIntercalibration_Stat5: 2.111550530960602e-06 - syst_JES_EtaIntercalibration_Stat50: 0.0005368403952759143 - syst_JES_EtaIntercalibration_Stat51: 0.00022589464507818683 - syst_JES_EtaIntercalibration_Stat52: 0.00032815235314560825 - syst_JES_EtaIntercalibration_Stat53: 0.00030326105503344805 - syst_JES_EtaIntercalibration_Stat54: 0.0007850179536163488 - syst_JES_EtaIntercalibration_Stat55: 0.0001833547571219997 - syst_JES_EtaIntercalibration_Stat56: 0.000723644005761811 - syst_JES_EtaIntercalibration_Stat57: 0.00011668290491755851 - syst_JES_EtaIntercalibration_Stat58: 0.0003201865676055134 - syst_JES_EtaIntercalibration_Stat59: 0.0006195967781549546 - syst_JES_EtaIntercalibration_Stat6: 2.116237810904058e-06 - syst_JES_EtaIntercalibration_Stat60: 0.0003220778270465075 - syst_JES_EtaIntercalibration_Stat61: 0.0009767575581995768 - syst_JES_EtaIntercalibration_Stat62: 0.0002410879273049306 - syst_JES_EtaIntercalibration_Stat63: 0.0003300341061163225 - syst_JES_EtaIntercalibration_Stat64: 3.0969068439331524e-08 - syst_JES_EtaIntercalibration_Stat65: 5.0798551160441576e-08 - syst_JES_EtaIntercalibration_Stat66: 5.0798551160441576e-08 - syst_JES_EtaIntercalibration_Stat67: 0.00017416451324825044 - syst_JES_EtaIntercalibration_Stat68: 0.002813101135757476 - syst_JES_EtaIntercalibration_Stat69: 0.004487592311028264 - syst_JES_EtaIntercalibration_Stat7: 5.0798551160441576e-08 - syst_JES_EtaIntercalibration_Stat70: 0.0038711071904559808 - syst_JES_EtaIntercalibration_Stat71: 0.000349145968758054 - syst_JES_EtaIntercalibration_Stat72: 0.0020644497450894752 - syst_JES_EtaIntercalibration_Stat73: 0.001913292204552143 - syst_JES_EtaIntercalibration_Stat74: 0.003130204785633042 - syst_JES_EtaIntercalibration_Stat75: 0.004696940147585447 - syst_JES_EtaIntercalibration_Stat76: 0.00029976271128177374 - syst_JES_EtaIntercalibration_Stat77: 0.0020420188193794888 - syst_JES_EtaIntercalibration_Stat78: 0.0008988939689974564 - syst_JES_EtaIntercalibration_Stat79: 0.0018720247514389331 - syst_JES_EtaIntercalibration_Stat8: 3.1107632503937036e-08 - syst_JES_EtaIntercalibration_Stat80: 0.004566722019129257 - syst_JES_EtaIntercalibration_Stat81: 0.0013998311353516895 - syst_JES_EtaIntercalibration_Stat82: 0.0017890491888151092 - syst_JES_EtaIntercalibration_Stat83: 0.0015937653879021844 - syst_JES_EtaIntercalibration_Stat84: 0.001256389184080713 - syst_JES_EtaIntercalibration_Stat85: 0.002214582296958052 - syst_JES_EtaIntercalibration_Stat86: 0.0003490795348151335 - syst_JES_EtaIntercalibration_Stat87: 3.1107632503937036e-08 - syst_JES_EtaIntercalibration_Stat88: 9.780539389522441e-05 - syst_JES_EtaIntercalibration_Stat89: 0.0035505796709833165 - syst_JES_EtaIntercalibration_Stat9: 5.943470089796027e-06 - syst_JES_EtaIntercalibration_Stat90: 0.0061377573062153575 - syst_JES_EtaIntercalibration_Stat91: 0.004200711602514507 - syst_JES_EtaIntercalibration_Stat92: 0.0026023329917595098 - syst_JES_EtaIntercalibration_Stat93: 0.004091945839084383 - syst_JES_EtaIntercalibration_Stat94: 0.0027818769186782866 - syst_JES_EtaIntercalibration_Stat95: 0.005190284842857855 - syst_JES_EtaIntercalibration_Stat96: 0.005685082827013165 - syst_JES_EtaIntercalibration_Stat97: 0.0009718852092711361 - syst_JES_EtaIntercalibration_Stat98: 0.0018498374273162492 - syst_JES_EtaIntercalibration_Stat99: 0.00219851732426083 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.010464287505606866 - syst_JES_Flavour_Comp: 0.09021781794634583 - syst_JES_Flavour_Response: 1.5143212175757164 - syst_JES_Gjet_Generator: 1.2253698910941135 - syst_JES_Gjet_OOC: 0.7235000812024833 - syst_JES_Gjet_Purity: 0.26805623943493645 - syst_JES_Gjet_Stat1: 0.0003800119471806117 - syst_JES_Gjet_Stat10: 0.04503348753982974 - syst_JES_Gjet_Stat11: 0.02115423188749712 - syst_JES_Gjet_Stat12: 0.00957645157404349 - syst_JES_Gjet_Stat13: 0.001572768655274233 - syst_JES_Gjet_Stat14: 0.0024426054184006063 - syst_JES_Gjet_Stat15: 7.162261235112833e-17 - syst_JES_Gjet_Stat2: 5.6620740899426595e-06 - syst_JES_Gjet_Stat3: 0.00036435391068070065 - syst_JES_Gjet_Stat4: 0.0058839181460995866 - syst_JES_Gjet_Stat5: 0.0062175026552065095 - syst_JES_Gjet_Stat6: 0.01753448815905386 - syst_JES_Gjet_Stat7: 0.03925150825127615 - syst_JES_Gjet_Stat8: 0.034267488965490304 - syst_JES_Gjet_Stat9: 0.05740500043550213 - syst_JES_Gjet_Veto: 0.27768231848643155 - syst_JES_Gjet_dPhi: 0.09473439132648713 - syst_JES_LArESZee: 1.115454090269967 - syst_JES_LArEsmear: 0.09170561923895394 - syst_JES_LAr_JVT: 0.12652178152397317 - syst_JES_MJB_Alpha: 1.9433610060922806e-17 - syst_JES_MJB_Asym: 1.945958651889389e-05 + syst_JER_NP7: 2.71498964e-02 + syst_JER_NP8: 4.46592197e-02 + syst_JES_EtaIntercalibration_Modelling: 9.92923868e-01 + syst_JES_EtaIntercalibration_NonClosure: 3.45204171e-01 + syst_JES_EtaIntercalibration_Stat0: 5.07985512e-08 + syst_JES_EtaIntercalibration_Stat1: 5.07985512e-08 + syst_JES_EtaIntercalibration_Stat10: 5.94347009e-06 + syst_JES_EtaIntercalibration_Stat100: 2.53712529e-03 + syst_JES_EtaIntercalibration_Stat101: 5.10344108e-03 + syst_JES_EtaIntercalibration_Stat102: 1.79101130e-03 + syst_JES_EtaIntercalibration_Stat103: 3.39038670e-03 + syst_JES_EtaIntercalibration_Stat104: 3.92107673e-03 + syst_JES_EtaIntercalibration_Stat105: 4.61844592e-03 + syst_JES_EtaIntercalibration_Stat106: 7.53694323e-03 + syst_JES_EtaIntercalibration_Stat107: 3.69532465e-04 + syst_JES_EtaIntercalibration_Stat108: 1.08668336e-03 + syst_JES_EtaIntercalibration_Stat109: 1.37902918e-02 + syst_JES_EtaIntercalibration_Stat11: 1.15872882e-03 + syst_JES_EtaIntercalibration_Stat110: 1.91929623e-02 + syst_JES_EtaIntercalibration_Stat111: 1.78013785e-02 + syst_JES_EtaIntercalibration_Stat112: 2.12453401e-02 + syst_JES_EtaIntercalibration_Stat113: 2.03905291e-02 + syst_JES_EtaIntercalibration_Stat114: 1.99604033e-02 + syst_JES_EtaIntercalibration_Stat115: 2.89449663e-02 + syst_JES_EtaIntercalibration_Stat116: 1.88374912e-02 + syst_JES_EtaIntercalibration_Stat117: 1.20102801e-02 + syst_JES_EtaIntercalibration_Stat118: 1.31451706e-02 + syst_JES_EtaIntercalibration_Stat119: 1.61304825e-02 + syst_JES_EtaIntercalibration_Stat12: 3.11076325e-08 + syst_JES_EtaIntercalibration_Stat120: 2.24900178e-02 + syst_JES_EtaIntercalibration_Stat121: 2.36445443e-02 + syst_JES_EtaIntercalibration_Stat122: 1.95431863e-02 + syst_JES_EtaIntercalibration_Stat123: 2.48400564e-02 + syst_JES_EtaIntercalibration_Stat124: 1.93007947e-02 + syst_JES_EtaIntercalibration_Stat125: 1.54895390e-02 + syst_JES_EtaIntercalibration_Stat126: 8.68132736e-03 + syst_JES_EtaIntercalibration_Stat127: 1.02771638e-03 + syst_JES_EtaIntercalibration_Stat128: 1.31251026e-02 + syst_JES_EtaIntercalibration_Stat129: 5.72598085e-02 + syst_JES_EtaIntercalibration_Stat13: 1.09550509e-04 + syst_JES_EtaIntercalibration_Stat130: 6.58667526e-02 + syst_JES_EtaIntercalibration_Stat131: 4.02639352e-02 + syst_JES_EtaIntercalibration_Stat132: 3.28887104e-02 + syst_JES_EtaIntercalibration_Stat133: 4.26886802e-02 + syst_JES_EtaIntercalibration_Stat134: 5.89177876e-02 + syst_JES_EtaIntercalibration_Stat135: 4.22414284e-02 + syst_JES_EtaIntercalibration_Stat136: 3.93623205e-02 + syst_JES_EtaIntercalibration_Stat137: 3.21439981e-02 + syst_JES_EtaIntercalibration_Stat138: 4.50149405e-02 + syst_JES_EtaIntercalibration_Stat139: 3.86164146e-02 + syst_JES_EtaIntercalibration_Stat14: 1.13118533e-04 + syst_JES_EtaIntercalibration_Stat140: 5.39238952e-02 + syst_JES_EtaIntercalibration_Stat141: 4.24016698e-02 + syst_JES_EtaIntercalibration_Stat142: 1.76555275e-02 + syst_JES_EtaIntercalibration_Stat143: 2.64722524e-02 + syst_JES_EtaIntercalibration_Stat144: 5.43816761e-02 + syst_JES_EtaIntercalibration_Stat145: 1.39093856e-02 + syst_JES_EtaIntercalibration_Stat146: 2.68031630e-03 + syst_JES_EtaIntercalibration_Stat147: 1.01255690e-02 + syst_JES_EtaIntercalibration_Stat148: 8.03693827e-03 + syst_JES_EtaIntercalibration_Stat149: 6.34459857e-03 + syst_JES_EtaIntercalibration_Stat15: 5.94622585e-06 + syst_JES_EtaIntercalibration_Stat150: 1.07589657e-03 + syst_JES_EtaIntercalibration_Stat151: 1.64997000e-02 + syst_JES_EtaIntercalibration_Stat152: 2.12421344e-02 + syst_JES_EtaIntercalibration_Stat153: 9.21277825e-03 + syst_JES_EtaIntercalibration_Stat154: 1.69312928e-02 + syst_JES_EtaIntercalibration_Stat155: 7.13188844e-03 + syst_JES_EtaIntercalibration_Stat156: 5.13459664e-03 + syst_JES_EtaIntercalibration_Stat157: 1.32699409e-02 + syst_JES_EtaIntercalibration_Stat158: 1.29039187e-02 + syst_JES_EtaIntercalibration_Stat159: 9.74433519e-04 + syst_JES_EtaIntercalibration_Stat16: 1.05104356e-07 + syst_JES_EtaIntercalibration_Stat160: 3.61652209e-05 + syst_JES_EtaIntercalibration_Stat161: 1.34051148e-02 + syst_JES_EtaIntercalibration_Stat162: 1.25383911e-02 + syst_JES_EtaIntercalibration_Stat163: 8.17292671e-03 + syst_JES_EtaIntercalibration_Stat164: 6.40457877e-04 + syst_JES_EtaIntercalibration_Stat165: 3.99110264e-03 + syst_JES_EtaIntercalibration_Stat166: 5.23853529e-03 + syst_JES_EtaIntercalibration_Stat167: 1.08200943e-03 + syst_JES_EtaIntercalibration_Stat168: 5.43432728e-03 + syst_JES_EtaIntercalibration_Stat169: 3.66335418e-03 + syst_JES_EtaIntercalibration_Stat17: 9.88149179e-05 + syst_JES_EtaIntercalibration_Stat170: 8.28064895e-03 + syst_JES_EtaIntercalibration_Stat171: 5.12019187e-03 + syst_JES_EtaIntercalibration_Stat172: 5.69799059e-03 + syst_JES_EtaIntercalibration_Stat173: 3.02546294e-03 + syst_JES_EtaIntercalibration_Stat174: 5.04415907e-03 + syst_JES_EtaIntercalibration_Stat175: 6.15778437e-03 + syst_JES_EtaIntercalibration_Stat176: 4.46889020e-03 + syst_JES_EtaIntercalibration_Stat177: 3.83386786e-03 + syst_JES_EtaIntercalibration_Stat178: 5.58472137e-03 + syst_JES_EtaIntercalibration_Stat179: 2.36216333e-03 + syst_JES_EtaIntercalibration_Stat18: 6.48164229e-08 + syst_JES_EtaIntercalibration_Stat180: 2.41602141e-03 + syst_JES_EtaIntercalibration_Stat181: 4.77681973e-03 + syst_JES_EtaIntercalibration_Stat182: 1.82728475e-03 + syst_JES_EtaIntercalibration_Stat183: 4.47223711e-04 + syst_JES_EtaIntercalibration_Stat184: 1.70021226e-04 + syst_JES_EtaIntercalibration_Stat185: 2.32006697e-03 + syst_JES_EtaIntercalibration_Stat186: 2.14466918e-03 + syst_JES_EtaIntercalibration_Stat187: 1.84779415e-03 + syst_JES_EtaIntercalibration_Stat188: 3.32978108e-03 + syst_JES_EtaIntercalibration_Stat189: 6.57198034e-04 + syst_JES_EtaIntercalibration_Stat19: 5.09927754e-08 + syst_JES_EtaIntercalibration_Stat190: 5.23945672e-03 + syst_JES_EtaIntercalibration_Stat191: 4.72359249e-03 + syst_JES_EtaIntercalibration_Stat192: 1.07026797e-03 + syst_JES_EtaIntercalibration_Stat193: 2.47796101e-03 + syst_JES_EtaIntercalibration_Stat194: 1.98559072e-03 + syst_JES_EtaIntercalibration_Stat195: 2.29092893e-03 + syst_JES_EtaIntercalibration_Stat196: 1.90822719e-03 + syst_JES_EtaIntercalibration_Stat197: 1.51606031e-03 + syst_JES_EtaIntercalibration_Stat198: 1.99217293e-03 + syst_JES_EtaIntercalibration_Stat199: 2.04529668e-03 + syst_JES_EtaIntercalibration_Stat2: 7.16323968e-08 + syst_JES_EtaIntercalibration_Stat20: 5.07985512e-08 + syst_JES_EtaIntercalibration_Stat200: 1.55406194e-03 + syst_JES_EtaIntercalibration_Stat201: 3.77261329e-04 + syst_JES_EtaIntercalibration_Stat202: 9.02393787e-04 + syst_JES_EtaIntercalibration_Stat203: 1.23180358e-03 + syst_JES_EtaIntercalibration_Stat204: 3.92292655e-04 + syst_JES_EtaIntercalibration_Stat205: 5.18642594e-04 + syst_JES_EtaIntercalibration_Stat206: 1.17998346e-03 + syst_JES_EtaIntercalibration_Stat207: 8.11832413e-04 + syst_JES_EtaIntercalibration_Stat208: 4.86630368e-04 + syst_JES_EtaIntercalibration_Stat209: 1.10907390e-03 + syst_JES_EtaIntercalibration_Stat21: 5.07985512e-08 + syst_JES_EtaIntercalibration_Stat210: 5.22819345e-04 + syst_JES_EtaIntercalibration_Stat211: 1.87401320e-03 + syst_JES_EtaIntercalibration_Stat212: 7.90232744e-05 + syst_JES_EtaIntercalibration_Stat213: 3.65431357e-04 + syst_JES_EtaIntercalibration_Stat214: 7.53528704e-05 + syst_JES_EtaIntercalibration_Stat215: 8.41977262e-05 + syst_JES_EtaIntercalibration_Stat216: 5.37303794e-04 + syst_JES_EtaIntercalibration_Stat217: 1.66086809e-04 + syst_JES_EtaIntercalibration_Stat218: 2.02922604e-04 + syst_JES_EtaIntercalibration_Stat219: 3.52024253e-04 + syst_JES_EtaIntercalibration_Stat22: 5.07985512e-08 + syst_JES_EtaIntercalibration_Stat220: 1.03354478e-04 + syst_JES_EtaIntercalibration_Stat221: 1.13357458e-04 + syst_JES_EtaIntercalibration_Stat222: 6.47191157e-04 + syst_JES_EtaIntercalibration_Stat223: 2.03484502e-04 + syst_JES_EtaIntercalibration_Stat224: 1.23804375e-04 + syst_JES_EtaIntercalibration_Stat225: 1.23647478e-04 + syst_JES_EtaIntercalibration_Stat226: 1.11520694e-04 + syst_JES_EtaIntercalibration_Stat227: 1.10302051e-04 + syst_JES_EtaIntercalibration_Stat228: 1.15914083e-04 + syst_JES_EtaIntercalibration_Stat229: 1.87071350e-04 + syst_JES_EtaIntercalibration_Stat23: 7.16323968e-08 + syst_JES_EtaIntercalibration_Stat230: 9.04551810e-04 + syst_JES_EtaIntercalibration_Stat231: 7.52662678e-05 + syst_JES_EtaIntercalibration_Stat232: 6.72388435e-05 + syst_JES_EtaIntercalibration_Stat233: 2.82843897e-05 + syst_JES_EtaIntercalibration_Stat234: 1.13626067e-04 + syst_JES_EtaIntercalibration_Stat235: 1.10355615e-04 + syst_JES_EtaIntercalibration_Stat236: 1.15120851e-03 + syst_JES_EtaIntercalibration_Stat237: 3.11076325e-08 + syst_JES_EtaIntercalibration_Stat238: 1.04428270e-04 + syst_JES_EtaIntercalibration_Stat239: 1.88162745e-04 + syst_JES_EtaIntercalibration_Stat24: 3.81877869e-04 + syst_JES_EtaIntercalibration_Stat240: 1.60971385e-04 + syst_JES_EtaIntercalibration_Stat241: 7.07237119e-04 + syst_JES_EtaIntercalibration_Stat242: 1.21557073e-04 + syst_JES_EtaIntercalibration_Stat243: 2.94163812e-04 + syst_JES_EtaIntercalibration_Stat244: 2.28563940e-04 + syst_JES_EtaIntercalibration_Stat245: 2.68793971e-04 + syst_JES_EtaIntercalibration_Stat25: 4.33726738e-05 + syst_JES_EtaIntercalibration_Stat26: 2.84807403e-05 + syst_JES_EtaIntercalibration_Stat27: 1.10190894e-03 + syst_JES_EtaIntercalibration_Stat28: 5.59668516e-05 + syst_JES_EtaIntercalibration_Stat29: 7.75491049e-05 + syst_JES_EtaIntercalibration_Stat3: 7.16323968e-08 + syst_JES_EtaIntercalibration_Stat30: 8.45106390e-05 + syst_JES_EtaIntercalibration_Stat31: 6.95591504e-04 + syst_JES_EtaIntercalibration_Stat32: 6.44239156e-06 + syst_JES_EtaIntercalibration_Stat33: 8.85706769e-05 + syst_JES_EtaIntercalibration_Stat34: 1.01778721e-03 + syst_JES_EtaIntercalibration_Stat35: 6.13519003e-05 + syst_JES_EtaIntercalibration_Stat36: 4.02442005e-05 + syst_JES_EtaIntercalibration_Stat37: 4.21164338e-04 + syst_JES_EtaIntercalibration_Stat38: 2.25966651e-05 + syst_JES_EtaIntercalibration_Stat39: 6.79746228e-05 + syst_JES_EtaIntercalibration_Stat4: 4.28884027e-07 + syst_JES_EtaIntercalibration_Stat40: 4.18045076e-04 + syst_JES_EtaIntercalibration_Stat41: 3.66470346e-04 + syst_JES_EtaIntercalibration_Stat42: 4.21339852e-07 + syst_JES_EtaIntercalibration_Stat43: 5.07985512e-08 + syst_JES_EtaIntercalibration_Stat44: 5.07985512e-08 + syst_JES_EtaIntercalibration_Stat45: 2.39272659e-05 + syst_JES_EtaIntercalibration_Stat46: 5.53020707e-04 + syst_JES_EtaIntercalibration_Stat47: 9.78866656e-04 + syst_JES_EtaIntercalibration_Stat48: 1.06151662e-04 + syst_JES_EtaIntercalibration_Stat49: 1.95725866e-04 + syst_JES_EtaIntercalibration_Stat5: 2.11155053e-06 + syst_JES_EtaIntercalibration_Stat50: 5.36840395e-04 + syst_JES_EtaIntercalibration_Stat51: 2.25894645e-04 + syst_JES_EtaIntercalibration_Stat52: 3.28152353e-04 + syst_JES_EtaIntercalibration_Stat53: 3.03261055e-04 + syst_JES_EtaIntercalibration_Stat54: 7.85017954e-04 + syst_JES_EtaIntercalibration_Stat55: 1.83354757e-04 + syst_JES_EtaIntercalibration_Stat56: 7.23644006e-04 + syst_JES_EtaIntercalibration_Stat57: 1.16682905e-04 + syst_JES_EtaIntercalibration_Stat58: 3.20186568e-04 + syst_JES_EtaIntercalibration_Stat59: 6.19596778e-04 + syst_JES_EtaIntercalibration_Stat6: 2.11623781e-06 + syst_JES_EtaIntercalibration_Stat60: 3.22077827e-04 + syst_JES_EtaIntercalibration_Stat61: 9.76757558e-04 + syst_JES_EtaIntercalibration_Stat62: 2.41087927e-04 + syst_JES_EtaIntercalibration_Stat63: 3.30034106e-04 + syst_JES_EtaIntercalibration_Stat64: 3.09690684e-08 + syst_JES_EtaIntercalibration_Stat65: 5.07985512e-08 + syst_JES_EtaIntercalibration_Stat66: 5.07985512e-08 + syst_JES_EtaIntercalibration_Stat67: 1.74164513e-04 + syst_JES_EtaIntercalibration_Stat68: 2.81310114e-03 + syst_JES_EtaIntercalibration_Stat69: 4.48759231e-03 + syst_JES_EtaIntercalibration_Stat7: 5.07985512e-08 + syst_JES_EtaIntercalibration_Stat70: 3.87110719e-03 + syst_JES_EtaIntercalibration_Stat71: 3.49145969e-04 + syst_JES_EtaIntercalibration_Stat72: 2.06444975e-03 + syst_JES_EtaIntercalibration_Stat73: 1.91329220e-03 + syst_JES_EtaIntercalibration_Stat74: 3.13020479e-03 + syst_JES_EtaIntercalibration_Stat75: 4.69694015e-03 + syst_JES_EtaIntercalibration_Stat76: 2.99762711e-04 + syst_JES_EtaIntercalibration_Stat77: 2.04201882e-03 + syst_JES_EtaIntercalibration_Stat78: 8.98893969e-04 + syst_JES_EtaIntercalibration_Stat79: 1.87202475e-03 + syst_JES_EtaIntercalibration_Stat8: 3.11076325e-08 + syst_JES_EtaIntercalibration_Stat80: 4.56672202e-03 + syst_JES_EtaIntercalibration_Stat81: 1.39983114e-03 + syst_JES_EtaIntercalibration_Stat82: 1.78904919e-03 + syst_JES_EtaIntercalibration_Stat83: 1.59376539e-03 + syst_JES_EtaIntercalibration_Stat84: 1.25638918e-03 + syst_JES_EtaIntercalibration_Stat85: 2.21458230e-03 + syst_JES_EtaIntercalibration_Stat86: 3.49079535e-04 + syst_JES_EtaIntercalibration_Stat87: 3.11076325e-08 + syst_JES_EtaIntercalibration_Stat88: 9.78053939e-05 + syst_JES_EtaIntercalibration_Stat89: 3.55057967e-03 + syst_JES_EtaIntercalibration_Stat9: 5.94347009e-06 + syst_JES_EtaIntercalibration_Stat90: 6.13775731e-03 + syst_JES_EtaIntercalibration_Stat91: 4.20071160e-03 + syst_JES_EtaIntercalibration_Stat92: 2.60233299e-03 + syst_JES_EtaIntercalibration_Stat93: 4.09194584e-03 + syst_JES_EtaIntercalibration_Stat94: 2.78187692e-03 + syst_JES_EtaIntercalibration_Stat95: 5.19028484e-03 + syst_JES_EtaIntercalibration_Stat96: 5.68508283e-03 + syst_JES_EtaIntercalibration_Stat97: 9.71885209e-04 + syst_JES_EtaIntercalibration_Stat98: 1.84983743e-03 + syst_JES_EtaIntercalibration_Stat99: 2.19851732e-03 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.04642875e-02 + syst_JES_Flavour_Comp: 9.02178179e-02 + syst_JES_Flavour_Response: 1.51432122e+00 + syst_JES_Gjet_Generator: 1.22536989e+00 + syst_JES_Gjet_OOC: 7.23500081e-01 + syst_JES_Gjet_Purity: 2.68056239e-01 + syst_JES_Gjet_Stat1: 3.80011947e-04 + syst_JES_Gjet_Stat10: 4.50334875e-02 + syst_JES_Gjet_Stat11: 2.11542319e-02 + syst_JES_Gjet_Stat12: 9.57645157e-03 + syst_JES_Gjet_Stat13: 1.57276866e-03 + syst_JES_Gjet_Stat14: 2.44260542e-03 + syst_JES_Gjet_Stat15: 7.16226124e-17 + syst_JES_Gjet_Stat2: 5.66207409e-06 + syst_JES_Gjet_Stat3: 3.64353911e-04 + syst_JES_Gjet_Stat4: 5.88391815e-03 + syst_JES_Gjet_Stat5: 6.21750266e-03 + syst_JES_Gjet_Stat6: 1.75344882e-02 + syst_JES_Gjet_Stat7: 3.92515083e-02 + syst_JES_Gjet_Stat8: 3.42674890e-02 + syst_JES_Gjet_Stat9: 5.74050004e-02 + syst_JES_Gjet_Veto: 2.77682318e-01 + syst_JES_Gjet_dPhi: 9.47343913e-02 + syst_JES_LArESZee: 1.11545409e+00 + syst_JES_LArEsmear: 9.17056192e-02 + syst_JES_LAr_JVT: 1.26521782e-01 + syst_JES_MJB_Alpha: 1.94336101e-17 + syst_JES_MJB_Asym: 1.94595865e-05 syst_JES_MJB_Beta: 0.0 - syst_JES_MJB_Fragmentation: 0.007868724483675866 + syst_JES_MJB_Fragmentation: 7.86872448e-03 syst_JES_MJB_Stat1: 0.0 syst_JES_MJB_Stat10: 0.0 syst_JES_MJB_Stat11: 0.0 @@ -21866,335 +21866,335 @@ bins: syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 0.0003780200887519074 - syst_JES_MJB_Stat3: 1.8948635834803517e-12 - syst_JES_MJB_Stat4: 7.973495892643326e-05 - syst_JES_MJB_Stat5: 0.0006897629141052743 + syst_JES_MJB_Stat2: 3.78020089e-04 + syst_JES_MJB_Stat3: 1.89486358e-12 + syst_JES_MJB_Stat4: 7.97349589e-05 + syst_JES_MJB_Stat5: 6.89762914e-04 syst_JES_MJB_Stat6: 0.0 syst_JES_MJB_Stat7: 0.0 syst_JES_MJB_Stat8: 0.0 syst_JES_MJB_Stat9: 0.0 - syst_JES_MJB_Threshold: 2.501080760489613e-05 - syst_JES_Pileup_MuOffset: 3.825748350019248e-05 - syst_JES_Pileup_NPVOffset: 0.0589148538146366 - syst_JES_Pileup_Pt_term: 0.2965117535613049 - syst_JES_Pileup_Rho_topology: 0.4759426514822978 - syst_JES_PunchThrough_MC15: 4.581502673796011e-08 - syst_JES_SingleParticle_HighPt: 0.00011361791760105446 - syst_JES_Zjet_MC: 1.0952650033211142 - syst_JES_Zjet_MuScale: 0.07775248034628862 - syst_JES_Zjet_MuSmearID: 0.007013855626543792 - syst_JES_Zjet_MuSmearMS: 0.09373635847418012 - syst_JES_Zjet_OOC: 0.4420955779014307 - syst_JES_Zjet_Stat1: 0.005419469969471184 - syst_JES_Zjet_Stat10: 0.1207037874302211 - syst_JES_Zjet_Stat11: 0.11907996011084318 - syst_JES_Zjet_Stat12: 0.00423509362352239 - syst_JES_Zjet_Stat13: 0.007880152756768108 + syst_JES_MJB_Threshold: 2.50108076e-05 + syst_JES_Pileup_MuOffset: 3.82574835e-05 + syst_JES_Pileup_NPVOffset: 5.89148538e-02 + syst_JES_Pileup_Pt_term: 2.96511754e-01 + syst_JES_Pileup_Rho_topology: 4.75942651e-01 + syst_JES_PunchThrough_MC15: 4.58150267e-08 + syst_JES_SingleParticle_HighPt: 1.13617918e-04 + syst_JES_Zjet_MC: 1.09526500e+00 + syst_JES_Zjet_MuScale: 7.77524803e-02 + syst_JES_Zjet_MuSmearID: 7.01385563e-03 + syst_JES_Zjet_MuSmearMS: 9.37363585e-02 + syst_JES_Zjet_OOC: 4.42095578e-01 + syst_JES_Zjet_Stat1: 5.41946997e-03 + syst_JES_Zjet_Stat10: 1.20703787e-01 + syst_JES_Zjet_Stat11: 1.19079960e-01 + syst_JES_Zjet_Stat12: 4.23509362e-03 + syst_JES_Zjet_Stat13: 7.88015276e-03 syst_JES_Zjet_Stat2: 0.0 - syst_JES_Zjet_Stat3: 6.3981956831594325e-06 - syst_JES_Zjet_Stat4: 6.287344431475024e-05 - syst_JES_Zjet_Stat5: 0.006761060327345112 - syst_JES_Zjet_Stat6: 0.009525726166544995 - syst_JES_Zjet_Stat7: 0.012121842887944061 - syst_JES_Zjet_Stat8: 0.023046151522542763 - syst_JES_Zjet_Stat9: 0.07531141945282933 - syst_JES_Zjet_Veto: 0.09114061334004725 - syst_JES_Zjet_dPhi: 0.08575667962322236 + syst_JES_Zjet_Stat3: 6.39819568e-06 + syst_JES_Zjet_Stat4: 6.28734443e-05 + syst_JES_Zjet_Stat5: 6.76106033e-03 + syst_JES_Zjet_Stat6: 9.52572617e-03 + syst_JES_Zjet_Stat7: 1.21218429e-02 + syst_JES_Zjet_Stat8: 2.30461515e-02 + syst_JES_Zjet_Stat9: 7.53114195e-02 + syst_JES_Zjet_Veto: 9.11406133e-02 + syst_JES_Zjet_dPhi: 8.57566796e-02 syst_PRW: 0.0 - syst_Unfolding_bias: 0.0012556 - syst_cleaning: 0.5358099173214322 + syst_Unfolding_bias: 1.25560000e-03 + syst_cleaning: 5.35809917e-01 syst_lumi: 1.2568 - stat: 0.31264 syst_JER_CROSS_CALIB_FORWARD: 0.0147 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.13518540111639274 - syst_JER_NP1: 0.03943201565986705 + syst_JER_NP0: 1.35185401e-01 + syst_JER_NP1: 3.94320157e-02 syst_JER_NP2: 0.0 - syst_JER_NP3: 0.05587630266937854 - syst_JER_NP4: 0.007231312121600063 + syst_JER_NP3: 5.58763027e-02 + syst_JER_NP4: 7.23131212e-03 syst_JER_NP5: 0.0 syst_JER_NP6: 0.0 - syst_JER_NP7: 0.014523246021465036 - syst_JER_NP8: 0.022540382494536333 - syst_JES_EtaIntercalibration_Modelling: 0.5038275374570151 - syst_JES_EtaIntercalibration_NonClosure: 0.1493385750568151 - syst_JES_EtaIntercalibration_Stat0: 2.5441701987091983e-09 - syst_JES_EtaIntercalibration_Stat1: 2.5441701987091983e-09 - syst_JES_EtaIntercalibration_Stat10: 5.031076719868223e-07 - syst_JES_EtaIntercalibration_Stat100: 0.0004934965121457293 - syst_JES_EtaIntercalibration_Stat101: 0.0023732886554051953 - syst_JES_EtaIntercalibration_Stat102: 0.0027668102875874952 - syst_JES_EtaIntercalibration_Stat103: 0.001971441200619486 - syst_JES_EtaIntercalibration_Stat104: 0.001172304809979043 - syst_JES_EtaIntercalibration_Stat105: 0.0007431061902581622 - syst_JES_EtaIntercalibration_Stat106: 0.0011995493685130264 - syst_JES_EtaIntercalibration_Stat107: 3.6069929024110126e-05 - syst_JES_EtaIntercalibration_Stat108: 0.00025054735819800614 - syst_JES_EtaIntercalibration_Stat109: 0.0035753980152564836 - syst_JES_EtaIntercalibration_Stat11: 0.000620160128854761 - syst_JES_EtaIntercalibration_Stat110: 0.005981656208776965 - syst_JES_EtaIntercalibration_Stat111: 0.007076304597033681 - syst_JES_EtaIntercalibration_Stat112: 0.00824575599930049 - syst_JES_EtaIntercalibration_Stat113: 0.0068809376359621225 - syst_JES_EtaIntercalibration_Stat114: 0.009833488648490932 - syst_JES_EtaIntercalibration_Stat115: 0.008463058785096556 - syst_JES_EtaIntercalibration_Stat116: 0.004764743329918202 - syst_JES_EtaIntercalibration_Stat117: 0.0028138857475029084 - syst_JES_EtaIntercalibration_Stat118: 0.003265988824230726 - syst_JES_EtaIntercalibration_Stat119: 0.005963817296832625 - syst_JES_EtaIntercalibration_Stat12: 1.5579797014082052e-09 - syst_JES_EtaIntercalibration_Stat120: 0.00868560775075642 - syst_JES_EtaIntercalibration_Stat121: 0.009269761647421146 - syst_JES_EtaIntercalibration_Stat122: 0.007727887987671664 - syst_JES_EtaIntercalibration_Stat123: 0.010193599560508545 - syst_JES_EtaIntercalibration_Stat124: 0.008281400409954828 - syst_JES_EtaIntercalibration_Stat125: 0.006780956182574844 - syst_JES_EtaIntercalibration_Stat126: 0.001238332656235795 - syst_JES_EtaIntercalibration_Stat127: 0.00013535995978138093 - syst_JES_EtaIntercalibration_Stat128: 0.005238410941067911 - syst_JES_EtaIntercalibration_Stat129: 0.022969619065191307 - syst_JES_EtaIntercalibration_Stat13: 5.8612080019969445e-05 - syst_JES_EtaIntercalibration_Stat130: 0.029518351918764032 - syst_JES_EtaIntercalibration_Stat131: 0.022914939995557482 - syst_JES_EtaIntercalibration_Stat132: 0.021021505060294803 - syst_JES_EtaIntercalibration_Stat133: 0.021580774099878807 - syst_JES_EtaIntercalibration_Stat134: 0.02784231806082245 - syst_JES_EtaIntercalibration_Stat135: 0.0191071524566064 - syst_JES_EtaIntercalibration_Stat136: 0.015776092672141605 - syst_JES_EtaIntercalibration_Stat137: 0.013661145339977903 - syst_JES_EtaIntercalibration_Stat138: 0.02002084521192849 - syst_JES_EtaIntercalibration_Stat139: 0.013396129916882712 - syst_JES_EtaIntercalibration_Stat14: 6.051733590771574e-05 - syst_JES_EtaIntercalibration_Stat140: 0.028425792864931663 - syst_JES_EtaIntercalibration_Stat141: 0.021140985667655137 - syst_JES_EtaIntercalibration_Stat142: 0.011697369447871602 - syst_JES_EtaIntercalibration_Stat143: 0.016329868362910952 - syst_JES_EtaIntercalibration_Stat144: 0.03038136723388202 - syst_JES_EtaIntercalibration_Stat145: 0.006716166168283808 - syst_JES_EtaIntercalibration_Stat146: 0.0019477328050839006 - syst_JES_EtaIntercalibration_Stat147: 0.006179957281405754 - syst_JES_EtaIntercalibration_Stat148: 0.005603031935256125 - syst_JES_EtaIntercalibration_Stat149: 0.002854773677544334 - syst_JES_EtaIntercalibration_Stat15: 5.032497944865452e-07 - syst_JES_EtaIntercalibration_Stat150: 0.0036652554112912785 - syst_JES_EtaIntercalibration_Stat151: 0.011000602563041717 - syst_JES_EtaIntercalibration_Stat152: 0.010060693862751217 - syst_JES_EtaIntercalibration_Stat153: 0.004940674928590223 - syst_JES_EtaIntercalibration_Stat154: 0.007077681188072828 - syst_JES_EtaIntercalibration_Stat155: 0.005307445736962366 - syst_JES_EtaIntercalibration_Stat156: 0.002747912281623997 - syst_JES_EtaIntercalibration_Stat157: 0.00866854732639789 - syst_JES_EtaIntercalibration_Stat158: 0.008302267340913565 - syst_JES_EtaIntercalibration_Stat159: 0.004135978902847548 - syst_JES_EtaIntercalibration_Stat16: 1.2926595094996982e-08 - syst_JES_EtaIntercalibration_Stat160: 1.9321027803723716e-05 - syst_JES_EtaIntercalibration_Stat161: 0.007407806752339049 - syst_JES_EtaIntercalibration_Stat162: 0.006931563892802257 - syst_JES_EtaIntercalibration_Stat163: 0.00476422299541069 - syst_JES_EtaIntercalibration_Stat164: 5.394161258249516e-05 - syst_JES_EtaIntercalibration_Stat165: 0.004490174606849939 - syst_JES_EtaIntercalibration_Stat166: 0.001349124112155735 - syst_JES_EtaIntercalibration_Stat167: 0.003726624618025674 - syst_JES_EtaIntercalibration_Stat168: 0.003299923786998724 - syst_JES_EtaIntercalibration_Stat169: 0.0027078602953623733 - syst_JES_EtaIntercalibration_Stat17: 5.213455206242785e-05 - syst_JES_EtaIntercalibration_Stat170: 0.004649349927678062 - syst_JES_EtaIntercalibration_Stat171: 0.006622472121496623 - syst_JES_EtaIntercalibration_Stat172: 0.003925441249082707 - syst_JES_EtaIntercalibration_Stat173: 0.0016327962120240235 - syst_JES_EtaIntercalibration_Stat174: 0.004536335305067297 - syst_JES_EtaIntercalibration_Stat175: 0.003318208472579745 - syst_JES_EtaIntercalibration_Stat176: 0.0025928319710309036 - syst_JES_EtaIntercalibration_Stat177: 0.0022725392735880273 - syst_JES_EtaIntercalibration_Stat178: 0.004239630430532831 - syst_JES_EtaIntercalibration_Stat179: 0.0012643673151026959 - syst_JES_EtaIntercalibration_Stat18: 3.246177136263516e-09 - syst_JES_EtaIntercalibration_Stat180: 0.0013111769029005964 - syst_JES_EtaIntercalibration_Stat181: 0.0027049356276998534 - syst_JES_EtaIntercalibration_Stat182: 0.0009677096915268545 - syst_JES_EtaIntercalibration_Stat183: 0.0002320933391439746 - syst_JES_EtaIntercalibration_Stat184: 5.080883073590652e-05 - syst_JES_EtaIntercalibration_Stat185: 0.0005896866689183332 - syst_JES_EtaIntercalibration_Stat186: 0.005484523595536809 - syst_JES_EtaIntercalibration_Stat187: 0.0028394985239474945 - syst_JES_EtaIntercalibration_Stat188: 0.0019069879391333338 - syst_JES_EtaIntercalibration_Stat189: 0.001513574983276349 - syst_JES_EtaIntercalibration_Stat19: 7.68397232881535e-09 - syst_JES_EtaIntercalibration_Stat190: 0.004861811904084731 - syst_JES_EtaIntercalibration_Stat191: 0.0034248977721970035 - syst_JES_EtaIntercalibration_Stat192: 0.0005321230214903317 - syst_JES_EtaIntercalibration_Stat193: 0.0013171120073858563 - syst_JES_EtaIntercalibration_Stat194: 0.0011728980382634674 - syst_JES_EtaIntercalibration_Stat195: 0.0009326126507291225 - syst_JES_EtaIntercalibration_Stat196: 0.0025948930020620793 - syst_JES_EtaIntercalibration_Stat197: 0.0008633342154113898 - syst_JES_EtaIntercalibration_Stat198: 0.001364968522301888 - syst_JES_EtaIntercalibration_Stat199: 0.0008639797277714332 - syst_JES_EtaIntercalibration_Stat2: 3.587758457588805e-09 - syst_JES_EtaIntercalibration_Stat20: 2.5441701987091983e-09 - syst_JES_EtaIntercalibration_Stat200: 0.0006748519319080298 - syst_JES_EtaIntercalibration_Stat201: 0.00048011940181584003 - syst_JES_EtaIntercalibration_Stat202: 0.00037825309978901695 - syst_JES_EtaIntercalibration_Stat203: 0.0015917610850485699 - syst_JES_EtaIntercalibration_Stat204: 0.0002143449089668332 - syst_JES_EtaIntercalibration_Stat205: 0.0005211580016655218 - syst_JES_EtaIntercalibration_Stat206: 0.0011381754259779113 - syst_JES_EtaIntercalibration_Stat207: 0.0007026256809283303 - syst_JES_EtaIntercalibration_Stat208: 0.0008265043678045507 - syst_JES_EtaIntercalibration_Stat209: 5.787246387531811e-05 - syst_JES_EtaIntercalibration_Stat21: 2.5441701987091983e-09 - syst_JES_EtaIntercalibration_Stat210: 0.00036803830870576505 - syst_JES_EtaIntercalibration_Stat211: 0.0011510591850552256 - syst_JES_EtaIntercalibration_Stat212: 4.379813095327242e-05 - syst_JES_EtaIntercalibration_Stat213: 0.0001946178734726079 - syst_JES_EtaIntercalibration_Stat214: 4.031348254616562e-05 - syst_JES_EtaIntercalibration_Stat215: 0.0001458263666145461 - syst_JES_EtaIntercalibration_Stat216: 0.00025047792692171504 - syst_JES_EtaIntercalibration_Stat217: 0.00026304708703956406 - syst_JES_EtaIntercalibration_Stat218: 0.00010750713964662998 - syst_JES_EtaIntercalibration_Stat219: 0.00019306392723655036 - syst_JES_EtaIntercalibration_Stat22: 2.5441701987091983e-09 - syst_JES_EtaIntercalibration_Stat220: 6.577717898329176e-05 - syst_JES_EtaIntercalibration_Stat221: 0.00014986493519165848 - syst_JES_EtaIntercalibration_Stat222: 0.0003451636045506971 - syst_JES_EtaIntercalibration_Stat223: 0.0001888316128691115 - syst_JES_EtaIntercalibration_Stat224: 6.622982258771346e-05 - syst_JES_EtaIntercalibration_Stat225: 6.61442317968846e-05 - syst_JES_EtaIntercalibration_Stat226: 5.9663895908664904e-05 - syst_JES_EtaIntercalibration_Stat227: 5.900879934382668e-05 - syst_JES_EtaIntercalibration_Stat228: 6.201239059252594e-05 - syst_JES_EtaIntercalibration_Stat229: 0.00010028280460776911 - syst_JES_EtaIntercalibration_Stat23: 3.587758457588805e-09 - syst_JES_EtaIntercalibration_Stat230: 0.0004680167187911133 - syst_JES_EtaIntercalibration_Stat231: 4.026152102193855e-05 - syst_JES_EtaIntercalibration_Stat232: 2.7314686068120934e-05 - syst_JES_EtaIntercalibration_Stat233: 1.3674541125756288e-06 - syst_JES_EtaIntercalibration_Stat234: 5.2954335044451264e-05 - syst_JES_EtaIntercalibration_Stat235: 5.418110256353224e-05 - syst_JES_EtaIntercalibration_Stat236: 0.0006161289205190745 - syst_JES_EtaIntercalibration_Stat237: 1.5579797014082052e-09 - syst_JES_EtaIntercalibration_Stat238: 5.586436498341318e-05 - syst_JES_EtaIntercalibration_Stat239: 0.00010048329910985207 - syst_JES_EtaIntercalibration_Stat24: 1.561812418314056e-05 - syst_JES_EtaIntercalibration_Stat240: 8.614387079183289e-05 - syst_JES_EtaIntercalibration_Stat241: 0.0003785570639943204 - syst_JES_EtaIntercalibration_Stat242: 6.502907407460142e-05 - syst_JES_EtaIntercalibration_Stat243: 0.00015740332747435804 - syst_JES_EtaIntercalibration_Stat244: 0.00012237636536521258 - syst_JES_EtaIntercalibration_Stat245: 0.000143887501889497 - syst_JES_EtaIntercalibration_Stat25: 5.4425051302502234e-06 - syst_JES_EtaIntercalibration_Stat26: 3.582544016477676e-06 - syst_JES_EtaIntercalibration_Stat27: 0.0006141880787470561 - syst_JES_EtaIntercalibration_Stat28: 7.142017274552058e-06 - syst_JES_EtaIntercalibration_Stat29: 1.8877629803553197e-05 - syst_JES_EtaIntercalibration_Stat3: 3.587758457588805e-09 - syst_JES_EtaIntercalibration_Stat30: 2.1337766067468263e-05 - syst_JES_EtaIntercalibration_Stat31: 9.166374024116625e-05 - syst_JES_EtaIntercalibration_Stat32: 3.931057459513916e-07 - syst_JES_EtaIntercalibration_Stat33: 0.00018450455452347918 - syst_JES_EtaIntercalibration_Stat34: 0.00030213159654693514 - syst_JES_EtaIntercalibration_Stat35: 3.4783987965010565e-05 - syst_JES_EtaIntercalibration_Stat36: 5.494931187012264e-06 - syst_JES_EtaIntercalibration_Stat37: 6.312161647961815e-05 - syst_JES_EtaIntercalibration_Stat38: 3.9815092164794437e-05 - syst_JES_EtaIntercalibration_Stat39: 2.7299458023577593e-05 - syst_JES_EtaIntercalibration_Stat4: 2.1605074189874933e-08 - syst_JES_EtaIntercalibration_Stat40: 0.000180151401771732 - syst_JES_EtaIntercalibration_Stat41: 3.564409350741495e-05 - syst_JES_EtaIntercalibration_Stat42: 2.121615702124209e-08 - syst_JES_EtaIntercalibration_Stat43: 2.5441701987091983e-09 - syst_JES_EtaIntercalibration_Stat44: 2.5441701987091983e-09 - syst_JES_EtaIntercalibration_Stat45: 1.0982412557770492e-05 - syst_JES_EtaIntercalibration_Stat46: 2.9759897983696117e-05 - syst_JES_EtaIntercalibration_Stat47: 0.0004169263852288555 - syst_JES_EtaIntercalibration_Stat48: 4.7841650002900196e-05 - syst_JES_EtaIntercalibration_Stat49: 0.00021162702727912615 - syst_JES_EtaIntercalibration_Stat5: 1.2869946892178692e-07 - syst_JES_EtaIntercalibration_Stat50: 0.00020188126974783965 - syst_JES_EtaIntercalibration_Stat51: 0.00028734497154987764 - syst_JES_EtaIntercalibration_Stat52: 0.0001286823635934622 - syst_JES_EtaIntercalibration_Stat53: 0.00013712322480437077 - syst_JES_EtaIntercalibration_Stat54: 0.00017779760705645056 - syst_JES_EtaIntercalibration_Stat55: 0.0002127007961835279 - syst_JES_EtaIntercalibration_Stat56: 0.00023637623391692747 - syst_JES_EtaIntercalibration_Stat57: 8.133116900672215e-05 - syst_JES_EtaIntercalibration_Stat58: 9.940292588752105e-05 - syst_JES_EtaIntercalibration_Stat59: 0.00014186962069097104 - syst_JES_EtaIntercalibration_Stat6: 1.2893224177353778e-07 - syst_JES_EtaIntercalibration_Stat60: 6.87931644496748e-06 - syst_JES_EtaIntercalibration_Stat61: 0.00019205360469150273 - syst_JES_EtaIntercalibration_Stat62: 9.280808104237637e-05 - syst_JES_EtaIntercalibration_Stat63: 1.9684106450382753e-05 - syst_JES_EtaIntercalibration_Stat64: 1.4705111356259767e-09 - syst_JES_EtaIntercalibration_Stat65: 2.5441701987091983e-09 - syst_JES_EtaIntercalibration_Stat66: 2.5441701987091983e-09 - syst_JES_EtaIntercalibration_Stat67: 6.228031962024601e-05 - syst_JES_EtaIntercalibration_Stat68: 0.0005897308681084958 - syst_JES_EtaIntercalibration_Stat69: 0.0009729275087076118 - syst_JES_EtaIntercalibration_Stat7: 2.5441701987091983e-09 - syst_JES_EtaIntercalibration_Stat70: 0.0013952557630413141 - syst_JES_EtaIntercalibration_Stat71: 0.0002803902057847242 - syst_JES_EtaIntercalibration_Stat72: 0.0004190856908795622 - syst_JES_EtaIntercalibration_Stat73: 0.0006887223785386968 - syst_JES_EtaIntercalibration_Stat74: 0.0013012493256482401 - syst_JES_EtaIntercalibration_Stat75: 0.0014893235108598803 - syst_JES_EtaIntercalibration_Stat76: 0.000106961700625738 - syst_JES_EtaIntercalibration_Stat77: 0.00027215717885075157 - syst_JES_EtaIntercalibration_Stat78: 0.0002162126962044551 - syst_JES_EtaIntercalibration_Stat79: 0.0002437556717288851 - syst_JES_EtaIntercalibration_Stat8: 1.5579797014082052e-09 - syst_JES_EtaIntercalibration_Stat80: 0.001045684047645368 - syst_JES_EtaIntercalibration_Stat81: 0.0022840272200381063 - syst_JES_EtaIntercalibration_Stat82: 0.0003463257066332212 - syst_JES_EtaIntercalibration_Stat83: 0.00030067883197857476 - syst_JES_EtaIntercalibration_Stat84: 0.0002302268135448171 - syst_JES_EtaIntercalibration_Stat85: 0.0003786884295499402 - syst_JES_EtaIntercalibration_Stat86: 3.6533356098654217e-05 - syst_JES_EtaIntercalibration_Stat87: 1.5579797014082052e-09 - syst_JES_EtaIntercalibration_Stat88: 1.2414277939131217e-05 - syst_JES_EtaIntercalibration_Stat89: 0.0007763262378021241 - syst_JES_EtaIntercalibration_Stat9: 5.031076719868223e-07 - syst_JES_EtaIntercalibration_Stat90: 0.0011498482856446759 - syst_JES_EtaIntercalibration_Stat91: 0.001552145861799077 - syst_JES_EtaIntercalibration_Stat92: 0.0007763909759264335 - syst_JES_EtaIntercalibration_Stat93: 0.0008967906151939815 - syst_JES_EtaIntercalibration_Stat94: 0.0012781806171273291 - syst_JES_EtaIntercalibration_Stat95: 0.0014006166037499343 - syst_JES_EtaIntercalibration_Stat96: 0.0014037311815301387 - syst_JES_EtaIntercalibration_Stat97: 0.0009179264390461798 - syst_JES_EtaIntercalibration_Stat98: 0.0002916823067568549 - syst_JES_EtaIntercalibration_Stat99: 0.0005079381958466994 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0034264887392197857 - syst_JES_Flavour_Comp: 0.05882038252170756 - syst_JES_Flavour_Response: 0.721768070435372 - syst_JES_Gjet_Generator: 0.613017764832309 - syst_JES_Gjet_OOC: 0.3654651111939415 - syst_JES_Gjet_Purity: 0.11825597437339054 - syst_JES_Gjet_Stat1: 3.198231816175932e-05 - syst_JES_Gjet_Stat10: 0.0300643389250454 - syst_JES_Gjet_Stat11: 0.02436301583856153 - syst_JES_Gjet_Stat12: 0.007291607007374986 - syst_JES_Gjet_Stat13: 0.0008276480013115479 - syst_JES_Gjet_Stat14: 0.003184417058112835 - syst_JES_Gjet_Stat15: 1.416245218879838e-11 - syst_JES_Gjet_Stat2: 2.849223578450803e-07 - syst_JES_Gjet_Stat3: 3.345758785764262e-05 - syst_JES_Gjet_Stat4: 0.002809819818542641 - syst_JES_Gjet_Stat5: 0.0008502875044948034 - syst_JES_Gjet_Stat6: 0.011954676187584506 - syst_JES_Gjet_Stat7: 0.013496190971900182 - syst_JES_Gjet_Stat8: 0.014393594434678225 - syst_JES_Gjet_Stat9: 0.027703741173350577 - syst_JES_Gjet_Veto: 0.1456360130599571 - syst_JES_Gjet_dPhi: 0.04045053646121396 - syst_JES_LArESZee: 0.6218630616944538 - syst_JES_LArEsmear: 0.05320106836333271 - syst_JES_LAr_JVT: 0.07310493895763817 - syst_JES_MJB_Alpha: 3.842554716591554e-12 - syst_JES_MJB_Asym: 0.00046373556312925525 - syst_JES_MJB_Beta: 3.5351156982480786e-42 - syst_JES_MJB_Fragmentation: 0.0030840795628517756 + syst_JER_NP7: 1.45232460e-02 + syst_JER_NP8: 2.25403825e-02 + syst_JES_EtaIntercalibration_Modelling: 5.03827537e-01 + syst_JES_EtaIntercalibration_NonClosure: 1.49338575e-01 + syst_JES_EtaIntercalibration_Stat0: 2.54417020e-09 + syst_JES_EtaIntercalibration_Stat1: 2.54417020e-09 + syst_JES_EtaIntercalibration_Stat10: 5.03107672e-07 + syst_JES_EtaIntercalibration_Stat100: 4.93496512e-04 + syst_JES_EtaIntercalibration_Stat101: 2.37328866e-03 + syst_JES_EtaIntercalibration_Stat102: 2.76681029e-03 + syst_JES_EtaIntercalibration_Stat103: 1.97144120e-03 + syst_JES_EtaIntercalibration_Stat104: 1.17230481e-03 + syst_JES_EtaIntercalibration_Stat105: 7.43106190e-04 + syst_JES_EtaIntercalibration_Stat106: 1.19954937e-03 + syst_JES_EtaIntercalibration_Stat107: 3.60699290e-05 + syst_JES_EtaIntercalibration_Stat108: 2.50547358e-04 + syst_JES_EtaIntercalibration_Stat109: 3.57539802e-03 + syst_JES_EtaIntercalibration_Stat11: 6.20160129e-04 + syst_JES_EtaIntercalibration_Stat110: 5.98165621e-03 + syst_JES_EtaIntercalibration_Stat111: 7.07630460e-03 + syst_JES_EtaIntercalibration_Stat112: 8.24575600e-03 + syst_JES_EtaIntercalibration_Stat113: 6.88093764e-03 + syst_JES_EtaIntercalibration_Stat114: 9.83348865e-03 + syst_JES_EtaIntercalibration_Stat115: 8.46305879e-03 + syst_JES_EtaIntercalibration_Stat116: 4.76474333e-03 + syst_JES_EtaIntercalibration_Stat117: 2.81388575e-03 + syst_JES_EtaIntercalibration_Stat118: 3.26598882e-03 + syst_JES_EtaIntercalibration_Stat119: 5.96381730e-03 + syst_JES_EtaIntercalibration_Stat12: 1.55797970e-09 + syst_JES_EtaIntercalibration_Stat120: 8.68560775e-03 + syst_JES_EtaIntercalibration_Stat121: 9.26976165e-03 + syst_JES_EtaIntercalibration_Stat122: 7.72788799e-03 + syst_JES_EtaIntercalibration_Stat123: 1.01935996e-02 + syst_JES_EtaIntercalibration_Stat124: 8.28140041e-03 + syst_JES_EtaIntercalibration_Stat125: 6.78095618e-03 + syst_JES_EtaIntercalibration_Stat126: 1.23833266e-03 + syst_JES_EtaIntercalibration_Stat127: 1.35359960e-04 + syst_JES_EtaIntercalibration_Stat128: 5.23841094e-03 + syst_JES_EtaIntercalibration_Stat129: 2.29696191e-02 + syst_JES_EtaIntercalibration_Stat13: 5.86120800e-05 + syst_JES_EtaIntercalibration_Stat130: 2.95183519e-02 + syst_JES_EtaIntercalibration_Stat131: 2.29149400e-02 + syst_JES_EtaIntercalibration_Stat132: 2.10215051e-02 + syst_JES_EtaIntercalibration_Stat133: 2.15807741e-02 + syst_JES_EtaIntercalibration_Stat134: 2.78423181e-02 + syst_JES_EtaIntercalibration_Stat135: 1.91071525e-02 + syst_JES_EtaIntercalibration_Stat136: 1.57760927e-02 + syst_JES_EtaIntercalibration_Stat137: 1.36611453e-02 + syst_JES_EtaIntercalibration_Stat138: 2.00208452e-02 + syst_JES_EtaIntercalibration_Stat139: 1.33961299e-02 + syst_JES_EtaIntercalibration_Stat14: 6.05173359e-05 + syst_JES_EtaIntercalibration_Stat140: 2.84257929e-02 + syst_JES_EtaIntercalibration_Stat141: 2.11409857e-02 + syst_JES_EtaIntercalibration_Stat142: 1.16973694e-02 + syst_JES_EtaIntercalibration_Stat143: 1.63298684e-02 + syst_JES_EtaIntercalibration_Stat144: 3.03813672e-02 + syst_JES_EtaIntercalibration_Stat145: 6.71616617e-03 + syst_JES_EtaIntercalibration_Stat146: 1.94773281e-03 + syst_JES_EtaIntercalibration_Stat147: 6.17995728e-03 + syst_JES_EtaIntercalibration_Stat148: 5.60303194e-03 + syst_JES_EtaIntercalibration_Stat149: 2.85477368e-03 + syst_JES_EtaIntercalibration_Stat15: 5.03249794e-07 + syst_JES_EtaIntercalibration_Stat150: 3.66525541e-03 + syst_JES_EtaIntercalibration_Stat151: 1.10006026e-02 + syst_JES_EtaIntercalibration_Stat152: 1.00606939e-02 + syst_JES_EtaIntercalibration_Stat153: 4.94067493e-03 + syst_JES_EtaIntercalibration_Stat154: 7.07768119e-03 + syst_JES_EtaIntercalibration_Stat155: 5.30744574e-03 + syst_JES_EtaIntercalibration_Stat156: 2.74791228e-03 + syst_JES_EtaIntercalibration_Stat157: 8.66854733e-03 + syst_JES_EtaIntercalibration_Stat158: 8.30226734e-03 + syst_JES_EtaIntercalibration_Stat159: 4.13597890e-03 + syst_JES_EtaIntercalibration_Stat16: 1.29265951e-08 + syst_JES_EtaIntercalibration_Stat160: 1.93210278e-05 + syst_JES_EtaIntercalibration_Stat161: 7.40780675e-03 + syst_JES_EtaIntercalibration_Stat162: 6.93156389e-03 + syst_JES_EtaIntercalibration_Stat163: 4.76422300e-03 + syst_JES_EtaIntercalibration_Stat164: 5.39416126e-05 + syst_JES_EtaIntercalibration_Stat165: 4.49017461e-03 + syst_JES_EtaIntercalibration_Stat166: 1.34912411e-03 + syst_JES_EtaIntercalibration_Stat167: 3.72662462e-03 + syst_JES_EtaIntercalibration_Stat168: 3.29992379e-03 + syst_JES_EtaIntercalibration_Stat169: 2.70786030e-03 + syst_JES_EtaIntercalibration_Stat17: 5.21345521e-05 + syst_JES_EtaIntercalibration_Stat170: 4.64934993e-03 + syst_JES_EtaIntercalibration_Stat171: 6.62247212e-03 + syst_JES_EtaIntercalibration_Stat172: 3.92544125e-03 + syst_JES_EtaIntercalibration_Stat173: 1.63279621e-03 + syst_JES_EtaIntercalibration_Stat174: 4.53633531e-03 + syst_JES_EtaIntercalibration_Stat175: 3.31820847e-03 + syst_JES_EtaIntercalibration_Stat176: 2.59283197e-03 + syst_JES_EtaIntercalibration_Stat177: 2.27253927e-03 + syst_JES_EtaIntercalibration_Stat178: 4.23963043e-03 + syst_JES_EtaIntercalibration_Stat179: 1.26436732e-03 + syst_JES_EtaIntercalibration_Stat18: 3.24617714e-09 + syst_JES_EtaIntercalibration_Stat180: 1.31117690e-03 + syst_JES_EtaIntercalibration_Stat181: 2.70493563e-03 + syst_JES_EtaIntercalibration_Stat182: 9.67709692e-04 + syst_JES_EtaIntercalibration_Stat183: 2.32093339e-04 + syst_JES_EtaIntercalibration_Stat184: 5.08088307e-05 + syst_JES_EtaIntercalibration_Stat185: 5.89686669e-04 + syst_JES_EtaIntercalibration_Stat186: 5.48452360e-03 + syst_JES_EtaIntercalibration_Stat187: 2.83949852e-03 + syst_JES_EtaIntercalibration_Stat188: 1.90698794e-03 + syst_JES_EtaIntercalibration_Stat189: 1.51357498e-03 + syst_JES_EtaIntercalibration_Stat19: 7.68397233e-09 + syst_JES_EtaIntercalibration_Stat190: 4.86181190e-03 + syst_JES_EtaIntercalibration_Stat191: 3.42489777e-03 + syst_JES_EtaIntercalibration_Stat192: 5.32123021e-04 + syst_JES_EtaIntercalibration_Stat193: 1.31711201e-03 + syst_JES_EtaIntercalibration_Stat194: 1.17289804e-03 + syst_JES_EtaIntercalibration_Stat195: 9.32612651e-04 + syst_JES_EtaIntercalibration_Stat196: 2.59489300e-03 + syst_JES_EtaIntercalibration_Stat197: 8.63334215e-04 + syst_JES_EtaIntercalibration_Stat198: 1.36496852e-03 + syst_JES_EtaIntercalibration_Stat199: 8.63979728e-04 + syst_JES_EtaIntercalibration_Stat2: 3.58775846e-09 + syst_JES_EtaIntercalibration_Stat20: 2.54417020e-09 + syst_JES_EtaIntercalibration_Stat200: 6.74851932e-04 + syst_JES_EtaIntercalibration_Stat201: 4.80119402e-04 + syst_JES_EtaIntercalibration_Stat202: 3.78253100e-04 + syst_JES_EtaIntercalibration_Stat203: 1.59176109e-03 + syst_JES_EtaIntercalibration_Stat204: 2.14344909e-04 + syst_JES_EtaIntercalibration_Stat205: 5.21158002e-04 + syst_JES_EtaIntercalibration_Stat206: 1.13817543e-03 + syst_JES_EtaIntercalibration_Stat207: 7.02625681e-04 + syst_JES_EtaIntercalibration_Stat208: 8.26504368e-04 + syst_JES_EtaIntercalibration_Stat209: 5.78724639e-05 + syst_JES_EtaIntercalibration_Stat21: 2.54417020e-09 + syst_JES_EtaIntercalibration_Stat210: 3.68038309e-04 + syst_JES_EtaIntercalibration_Stat211: 1.15105919e-03 + syst_JES_EtaIntercalibration_Stat212: 4.37981310e-05 + syst_JES_EtaIntercalibration_Stat213: 1.94617873e-04 + syst_JES_EtaIntercalibration_Stat214: 4.03134825e-05 + syst_JES_EtaIntercalibration_Stat215: 1.45826367e-04 + syst_JES_EtaIntercalibration_Stat216: 2.50477927e-04 + syst_JES_EtaIntercalibration_Stat217: 2.63047087e-04 + syst_JES_EtaIntercalibration_Stat218: 1.07507140e-04 + syst_JES_EtaIntercalibration_Stat219: 1.93063927e-04 + syst_JES_EtaIntercalibration_Stat22: 2.54417020e-09 + syst_JES_EtaIntercalibration_Stat220: 6.57771790e-05 + syst_JES_EtaIntercalibration_Stat221: 1.49864935e-04 + syst_JES_EtaIntercalibration_Stat222: 3.45163605e-04 + syst_JES_EtaIntercalibration_Stat223: 1.88831613e-04 + syst_JES_EtaIntercalibration_Stat224: 6.62298226e-05 + syst_JES_EtaIntercalibration_Stat225: 6.61442318e-05 + syst_JES_EtaIntercalibration_Stat226: 5.96638959e-05 + syst_JES_EtaIntercalibration_Stat227: 5.90087993e-05 + syst_JES_EtaIntercalibration_Stat228: 6.20123906e-05 + syst_JES_EtaIntercalibration_Stat229: 1.00282805e-04 + syst_JES_EtaIntercalibration_Stat23: 3.58775846e-09 + syst_JES_EtaIntercalibration_Stat230: 4.68016719e-04 + syst_JES_EtaIntercalibration_Stat231: 4.02615210e-05 + syst_JES_EtaIntercalibration_Stat232: 2.73146861e-05 + syst_JES_EtaIntercalibration_Stat233: 1.36745411e-06 + syst_JES_EtaIntercalibration_Stat234: 5.29543350e-05 + syst_JES_EtaIntercalibration_Stat235: 5.41811026e-05 + syst_JES_EtaIntercalibration_Stat236: 6.16128921e-04 + syst_JES_EtaIntercalibration_Stat237: 1.55797970e-09 + syst_JES_EtaIntercalibration_Stat238: 5.58643650e-05 + syst_JES_EtaIntercalibration_Stat239: 1.00483299e-04 + syst_JES_EtaIntercalibration_Stat24: 1.56181242e-05 + syst_JES_EtaIntercalibration_Stat240: 8.61438708e-05 + syst_JES_EtaIntercalibration_Stat241: 3.78557064e-04 + syst_JES_EtaIntercalibration_Stat242: 6.50290741e-05 + syst_JES_EtaIntercalibration_Stat243: 1.57403327e-04 + syst_JES_EtaIntercalibration_Stat244: 1.22376365e-04 + syst_JES_EtaIntercalibration_Stat245: 1.43887502e-04 + syst_JES_EtaIntercalibration_Stat25: 5.44250513e-06 + syst_JES_EtaIntercalibration_Stat26: 3.58254402e-06 + syst_JES_EtaIntercalibration_Stat27: 6.14188079e-04 + syst_JES_EtaIntercalibration_Stat28: 7.14201727e-06 + syst_JES_EtaIntercalibration_Stat29: 1.88776298e-05 + syst_JES_EtaIntercalibration_Stat3: 3.58775846e-09 + syst_JES_EtaIntercalibration_Stat30: 2.13377661e-05 + syst_JES_EtaIntercalibration_Stat31: 9.16637402e-05 + syst_JES_EtaIntercalibration_Stat32: 3.93105746e-07 + syst_JES_EtaIntercalibration_Stat33: 1.84504555e-04 + syst_JES_EtaIntercalibration_Stat34: 3.02131597e-04 + syst_JES_EtaIntercalibration_Stat35: 3.47839880e-05 + syst_JES_EtaIntercalibration_Stat36: 5.49493119e-06 + syst_JES_EtaIntercalibration_Stat37: 6.31216165e-05 + syst_JES_EtaIntercalibration_Stat38: 3.98150922e-05 + syst_JES_EtaIntercalibration_Stat39: 2.72994580e-05 + syst_JES_EtaIntercalibration_Stat4: 2.16050742e-08 + syst_JES_EtaIntercalibration_Stat40: 1.80151402e-04 + syst_JES_EtaIntercalibration_Stat41: 3.56440935e-05 + syst_JES_EtaIntercalibration_Stat42: 2.12161570e-08 + syst_JES_EtaIntercalibration_Stat43: 2.54417020e-09 + syst_JES_EtaIntercalibration_Stat44: 2.54417020e-09 + syst_JES_EtaIntercalibration_Stat45: 1.09824126e-05 + syst_JES_EtaIntercalibration_Stat46: 2.97598980e-05 + syst_JES_EtaIntercalibration_Stat47: 4.16926385e-04 + syst_JES_EtaIntercalibration_Stat48: 4.78416500e-05 + syst_JES_EtaIntercalibration_Stat49: 2.11627027e-04 + syst_JES_EtaIntercalibration_Stat5: 1.28699469e-07 + syst_JES_EtaIntercalibration_Stat50: 2.01881270e-04 + syst_JES_EtaIntercalibration_Stat51: 2.87344972e-04 + syst_JES_EtaIntercalibration_Stat52: 1.28682364e-04 + syst_JES_EtaIntercalibration_Stat53: 1.37123225e-04 + syst_JES_EtaIntercalibration_Stat54: 1.77797607e-04 + syst_JES_EtaIntercalibration_Stat55: 2.12700796e-04 + syst_JES_EtaIntercalibration_Stat56: 2.36376234e-04 + syst_JES_EtaIntercalibration_Stat57: 8.13311690e-05 + syst_JES_EtaIntercalibration_Stat58: 9.94029259e-05 + syst_JES_EtaIntercalibration_Stat59: 1.41869621e-04 + syst_JES_EtaIntercalibration_Stat6: 1.28932242e-07 + syst_JES_EtaIntercalibration_Stat60: 6.87931644e-06 + syst_JES_EtaIntercalibration_Stat61: 1.92053605e-04 + syst_JES_EtaIntercalibration_Stat62: 9.28080810e-05 + syst_JES_EtaIntercalibration_Stat63: 1.96841065e-05 + syst_JES_EtaIntercalibration_Stat64: 1.47051114e-09 + syst_JES_EtaIntercalibration_Stat65: 2.54417020e-09 + syst_JES_EtaIntercalibration_Stat66: 2.54417020e-09 + syst_JES_EtaIntercalibration_Stat67: 6.22803196e-05 + syst_JES_EtaIntercalibration_Stat68: 5.89730868e-04 + syst_JES_EtaIntercalibration_Stat69: 9.72927509e-04 + syst_JES_EtaIntercalibration_Stat7: 2.54417020e-09 + syst_JES_EtaIntercalibration_Stat70: 1.39525576e-03 + syst_JES_EtaIntercalibration_Stat71: 2.80390206e-04 + syst_JES_EtaIntercalibration_Stat72: 4.19085691e-04 + syst_JES_EtaIntercalibration_Stat73: 6.88722379e-04 + syst_JES_EtaIntercalibration_Stat74: 1.30124933e-03 + syst_JES_EtaIntercalibration_Stat75: 1.48932351e-03 + syst_JES_EtaIntercalibration_Stat76: 1.06961701e-04 + syst_JES_EtaIntercalibration_Stat77: 2.72157179e-04 + syst_JES_EtaIntercalibration_Stat78: 2.16212696e-04 + syst_JES_EtaIntercalibration_Stat79: 2.43755672e-04 + syst_JES_EtaIntercalibration_Stat8: 1.55797970e-09 + syst_JES_EtaIntercalibration_Stat80: 1.04568405e-03 + syst_JES_EtaIntercalibration_Stat81: 2.28402722e-03 + syst_JES_EtaIntercalibration_Stat82: 3.46325707e-04 + syst_JES_EtaIntercalibration_Stat83: 3.00678832e-04 + syst_JES_EtaIntercalibration_Stat84: 2.30226814e-04 + syst_JES_EtaIntercalibration_Stat85: 3.78688430e-04 + syst_JES_EtaIntercalibration_Stat86: 3.65333561e-05 + syst_JES_EtaIntercalibration_Stat87: 1.55797970e-09 + syst_JES_EtaIntercalibration_Stat88: 1.24142779e-05 + syst_JES_EtaIntercalibration_Stat89: 7.76326238e-04 + syst_JES_EtaIntercalibration_Stat9: 5.03107672e-07 + syst_JES_EtaIntercalibration_Stat90: 1.14984829e-03 + syst_JES_EtaIntercalibration_Stat91: 1.55214586e-03 + syst_JES_EtaIntercalibration_Stat92: 7.76390976e-04 + syst_JES_EtaIntercalibration_Stat93: 8.96790615e-04 + syst_JES_EtaIntercalibration_Stat94: 1.27818062e-03 + syst_JES_EtaIntercalibration_Stat95: 1.40061660e-03 + syst_JES_EtaIntercalibration_Stat96: 1.40373118e-03 + syst_JES_EtaIntercalibration_Stat97: 9.17926439e-04 + syst_JES_EtaIntercalibration_Stat98: 2.91682307e-04 + syst_JES_EtaIntercalibration_Stat99: 5.07938196e-04 + syst_JES_EtaIntercalibration_TotalStat_MJB: 3.42648874e-03 + syst_JES_Flavour_Comp: 5.88203825e-02 + syst_JES_Flavour_Response: 7.21768070e-01 + syst_JES_Gjet_Generator: 6.13017765e-01 + syst_JES_Gjet_OOC: 3.65465111e-01 + syst_JES_Gjet_Purity: 1.18255974e-01 + syst_JES_Gjet_Stat1: 3.19823182e-05 + syst_JES_Gjet_Stat10: 3.00643389e-02 + syst_JES_Gjet_Stat11: 2.43630158e-02 + syst_JES_Gjet_Stat12: 7.29160701e-03 + syst_JES_Gjet_Stat13: 8.27648001e-04 + syst_JES_Gjet_Stat14: 3.18441706e-03 + syst_JES_Gjet_Stat15: 1.41624522e-11 + syst_JES_Gjet_Stat2: 2.84922358e-07 + syst_JES_Gjet_Stat3: 3.34575879e-05 + syst_JES_Gjet_Stat4: 2.80981982e-03 + syst_JES_Gjet_Stat5: 8.50287504e-04 + syst_JES_Gjet_Stat6: 1.19546762e-02 + syst_JES_Gjet_Stat7: 1.34961910e-02 + syst_JES_Gjet_Stat8: 1.43935944e-02 + syst_JES_Gjet_Stat9: 2.77037412e-02 + syst_JES_Gjet_Veto: 1.45636013e-01 + syst_JES_Gjet_dPhi: 4.04505365e-02 + syst_JES_LArESZee: 6.21863062e-01 + syst_JES_LArEsmear: 5.32010684e-02 + syst_JES_LAr_JVT: 7.31049390e-02 + syst_JES_MJB_Alpha: 3.84255472e-12 + syst_JES_MJB_Asym: 4.63735563e-04 + syst_JES_MJB_Beta: 3.53511570e-42 + syst_JES_MJB_Fragmentation: 3.08407956e-03 syst_JES_MJB_Stat1: 0.0 syst_JES_MJB_Stat10: 0.0 syst_JES_MJB_Stat11: 0.0 @@ -22203,335 +22203,335 @@ bins: syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 0.00024508518927099615 - syst_JES_MJB_Stat3: 9.266471820493492e-09 - syst_JES_MJB_Stat4: 4.2651751136383604e-05 - syst_JES_MJB_Stat5: 0.00036897329605270897 + syst_JES_MJB_Stat2: 2.45085189e-04 + syst_JES_MJB_Stat3: 9.26647182e-09 + syst_JES_MJB_Stat4: 4.26517511e-05 + syst_JES_MJB_Stat5: 3.68973296e-04 syst_JES_MJB_Stat6: 0.0 syst_JES_MJB_Stat7: 0.0 syst_JES_MJB_Stat8: 0.0 - syst_JES_MJB_Stat9: 1.3605259093453531e-42 - syst_JES_MJB_Threshold: 0.0005962288840931746 - syst_JES_Pileup_MuOffset: 0.0008985955723794771 - syst_JES_Pileup_NPVOffset: 0.03176346446784419 - syst_JES_Pileup_Pt_term: 0.1515916471973308 - syst_JES_Pileup_Rho_topology: 0.21249284693843223 - syst_JES_PunchThrough_MC15: 1.1379507930925661e-05 - syst_JES_SingleParticle_HighPt: 6.078289891079562e-05 - syst_JES_Zjet_MC: 0.5588607407038001 - syst_JES_Zjet_MuScale: 0.04102770049612822 - syst_JES_Zjet_MuSmearID: 0.003751169933500747 - syst_JES_Zjet_MuSmearMS: 0.06166964143725825 - syst_JES_Zjet_OOC: 0.19833549228516817 - syst_JES_Zjet_Stat1: 0.0032088516637576127 - syst_JES_Zjet_Stat10: 0.052817370958804837 - syst_JES_Zjet_Stat11: 0.07195911669135469 - syst_JES_Zjet_Stat12: 0.03768136144037262 - syst_JES_Zjet_Stat13: 0.003028507388136935 + syst_JES_MJB_Stat9: 1.36052591e-42 + syst_JES_MJB_Threshold: 5.96228884e-04 + syst_JES_Pileup_MuOffset: 8.98595572e-04 + syst_JES_Pileup_NPVOffset: 3.17634645e-02 + syst_JES_Pileup_Pt_term: 1.51591647e-01 + syst_JES_Pileup_Rho_topology: 2.12492847e-01 + syst_JES_PunchThrough_MC15: 1.13795079e-05 + syst_JES_SingleParticle_HighPt: 6.07828989e-05 + syst_JES_Zjet_MC: 5.58860741e-01 + syst_JES_Zjet_MuScale: 4.10277005e-02 + syst_JES_Zjet_MuSmearID: 3.75116993e-03 + syst_JES_Zjet_MuSmearMS: 6.16696414e-02 + syst_JES_Zjet_OOC: 1.98335492e-01 + syst_JES_Zjet_Stat1: 3.20885166e-03 + syst_JES_Zjet_Stat10: 5.28173710e-02 + syst_JES_Zjet_Stat11: 7.19591167e-02 + syst_JES_Zjet_Stat12: 3.76813614e-02 + syst_JES_Zjet_Stat13: 3.02850739e-03 syst_JES_Zjet_Stat2: 0.0 - syst_JES_Zjet_Stat3: 3.2190164258667584e-07 - syst_JES_Zjet_Stat4: 3.792325243172057e-06 - syst_JES_Zjet_Stat5: 0.0030579357007628526 - syst_JES_Zjet_Stat6: 0.0032952977103745877 - syst_JES_Zjet_Stat7: 0.005572343021566422 - syst_JES_Zjet_Stat8: 0.0059140042906646595 - syst_JES_Zjet_Stat9: 0.025727419225410074 - syst_JES_Zjet_Veto: 0.04251731735422639 - syst_JES_Zjet_dPhi: 0.04321031213726649 + syst_JES_Zjet_Stat3: 3.21901643e-07 + syst_JES_Zjet_Stat4: 3.79232524e-06 + syst_JES_Zjet_Stat5: 3.05793570e-03 + syst_JES_Zjet_Stat6: 3.29529771e-03 + syst_JES_Zjet_Stat7: 5.57234302e-03 + syst_JES_Zjet_Stat8: 5.91400429e-03 + syst_JES_Zjet_Stat9: 2.57274192e-02 + syst_JES_Zjet_Veto: 4.25173174e-02 + syst_JES_Zjet_dPhi: 4.32103121e-02 syst_PRW: 0.0 - syst_Unfolding_bias: 7.759e-05 - syst_cleaning: 0.28085203844729345 + syst_Unfolding_bias: 7.75900000e-05 + syst_cleaning: 2.80852038e-01 syst_lumi: 0.6723 - stat: 0.16868 syst_JER_CROSS_CALIB_FORWARD: 0.005944 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.07263479658538324 - syst_JER_NP1: 0.017394130295878548 - syst_JER_NP2: 1.686151461168302e-39 - syst_JER_NP3: 0.02904958731204283 - syst_JER_NP4: 0.0010325620889321862 + syst_JER_NP0: 7.26347966e-02 + syst_JER_NP1: 1.73941303e-02 + syst_JER_NP2: 1.68615146e-39 + syst_JER_NP3: 2.90495873e-02 + syst_JER_NP4: 1.03256209e-03 syst_JER_NP5: 0.0 syst_JER_NP6: 0.0 - syst_JER_NP7: 0.0077249466017571934 - syst_JER_NP8: 0.010868725178235025 - syst_JES_EtaIntercalibration_Modelling: 0.2843504308067776 - syst_JES_EtaIntercalibration_NonClosure: 0.07075967266035084 - syst_JES_EtaIntercalibration_Stat0: 1.2443665135320863e-10 - syst_JES_EtaIntercalibration_Stat1: 1.2443665135320863e-10 - syst_JES_EtaIntercalibration_Stat10: 3.258196977900508e-08 - syst_JES_EtaIntercalibration_Stat100: 0.00014436732421154033 - syst_JES_EtaIntercalibration_Stat101: 0.0005896984236031161 - syst_JES_EtaIntercalibration_Stat102: 0.0011268510052686645 - syst_JES_EtaIntercalibration_Stat103: 0.0008263299429858512 - syst_JES_EtaIntercalibration_Stat104: 0.00041388120302902133 - syst_JES_EtaIntercalibration_Stat105: 0.00029980182400212314 - syst_JES_EtaIntercalibration_Stat106: 8.221314432619641e-05 - syst_JES_EtaIntercalibration_Stat107: 5.888123079732082e-07 - syst_JES_EtaIntercalibration_Stat108: 2.6917720464407826e-05 - syst_JES_EtaIntercalibration_Stat109: 0.0009454491736735508 - syst_JES_EtaIntercalibration_Stat11: 0.0003312546842695354 - syst_JES_EtaIntercalibration_Stat110: 0.0016012891892159891 - syst_JES_EtaIntercalibration_Stat111: 0.0018418110733731622 - syst_JES_EtaIntercalibration_Stat112: 0.0027878199668378875 - syst_JES_EtaIntercalibration_Stat113: 0.0015660856521914758 - syst_JES_EtaIntercalibration_Stat114: 0.002599246819753753 - syst_JES_EtaIntercalibration_Stat115: 0.0018559878771155808 - syst_JES_EtaIntercalibration_Stat116: 0.001059830565467896 - syst_JES_EtaIntercalibration_Stat117: 0.0009956748804203107 - syst_JES_EtaIntercalibration_Stat118: 0.0006728877853513169 - syst_JES_EtaIntercalibration_Stat119: 0.0021768525001708314 - syst_JES_EtaIntercalibration_Stat12: 7.620157527899275e-11 - syst_JES_EtaIntercalibration_Stat120: 0.003221112075044891 - syst_JES_EtaIntercalibration_Stat121: 0.0025975270932177014 - syst_JES_EtaIntercalibration_Stat122: 0.0018795401053183195 - syst_JES_EtaIntercalibration_Stat123: 0.0025753791953807502 - syst_JES_EtaIntercalibration_Stat124: 0.003316705707475416 - syst_JES_EtaIntercalibration_Stat125: 0.0023475068732593733 - syst_JES_EtaIntercalibration_Stat126: 0.0007892686520285726 - syst_JES_EtaIntercalibration_Stat127: 2.378980995962071e-06 - syst_JES_EtaIntercalibration_Stat128: 0.003257012741761997 - syst_JES_EtaIntercalibration_Stat129: 0.010634655741959868 - syst_JES_EtaIntercalibration_Stat13: 3.13067929463648e-05 - syst_JES_EtaIntercalibration_Stat130: 0.013696954798421437 - syst_JES_EtaIntercalibration_Stat131: 0.01103575366705872 - syst_JES_EtaIntercalibration_Stat132: 0.010605106918367206 - syst_JES_EtaIntercalibration_Stat133: 0.007744308518518615 - syst_JES_EtaIntercalibration_Stat134: 0.010258839834503704 - syst_JES_EtaIntercalibration_Stat135: 0.008282523935975072 - syst_JES_EtaIntercalibration_Stat136: 0.005964649423897434 - syst_JES_EtaIntercalibration_Stat137: 0.006033948354933111 - syst_JES_EtaIntercalibration_Stat138: 0.007123231359432319 - syst_JES_EtaIntercalibration_Stat139: 0.005949945777063856 - syst_JES_EtaIntercalibration_Stat14: 3.232870292282783e-05 - syst_JES_EtaIntercalibration_Stat140: 0.010393260508618073 - syst_JES_EtaIntercalibration_Stat141: 0.008312863766476627 - syst_JES_EtaIntercalibration_Stat142: 0.00841676224863219 - syst_JES_EtaIntercalibration_Stat143: 0.007106316697136428 - syst_JES_EtaIntercalibration_Stat144: 0.01355522408520051 - syst_JES_EtaIntercalibration_Stat145: 0.0024446199766016805 - syst_JES_EtaIntercalibration_Stat146: 0.0012326471514590054 - syst_JES_EtaIntercalibration_Stat147: 0.003567158638188103 - syst_JES_EtaIntercalibration_Stat148: 0.0030109029875894375 - syst_JES_EtaIntercalibration_Stat149: 0.0010181466839311515 - syst_JES_EtaIntercalibration_Stat15: 3.258919537178043e-08 - syst_JES_EtaIntercalibration_Stat150: 0.0029918015174807302 - syst_JES_EtaIntercalibration_Stat151: 0.005499369304747591 - syst_JES_EtaIntercalibration_Stat152: 0.0035191956467352024 - syst_JES_EtaIntercalibration_Stat153: 0.002605004414583591 - syst_JES_EtaIntercalibration_Stat154: 0.003488122406109052 - syst_JES_EtaIntercalibration_Stat155: 0.00303348044640146 - syst_JES_EtaIntercalibration_Stat156: 0.0014855381878295826 - syst_JES_EtaIntercalibration_Stat157: 0.005710177230174209 - syst_JES_EtaIntercalibration_Stat158: 0.005019146513103597 - syst_JES_EtaIntercalibration_Stat159: 0.00344568399924819 - syst_JES_EtaIntercalibration_Stat16: 8.182890247797534e-10 - syst_JES_EtaIntercalibration_Stat160: 1.0320538804644018e-05 - syst_JES_EtaIntercalibration_Stat161: 0.0037837638714744077 - syst_JES_EtaIntercalibration_Stat162: 0.0036717964649473694 - syst_JES_EtaIntercalibration_Stat163: 0.0022386260853478855 - syst_JES_EtaIntercalibration_Stat164: 0.001232919402505695 - syst_JES_EtaIntercalibration_Stat165: 0.003045434410720415 - syst_JES_EtaIntercalibration_Stat166: 0.002889192875181579 - syst_JES_EtaIntercalibration_Stat167: 0.00382971444757961 - syst_JES_EtaIntercalibration_Stat168: 0.002004557993673418 - syst_JES_EtaIntercalibration_Stat169: 0.001743135347032754 - syst_JES_EtaIntercalibration_Stat17: 2.7781746920472806e-05 - syst_JES_EtaIntercalibration_Stat170: 0.0029238794007277386 - syst_JES_EtaIntercalibration_Stat171: 0.004190599360473392 - syst_JES_EtaIntercalibration_Stat172: 0.0025577054301658742 - syst_JES_EtaIntercalibration_Stat173: 0.000872950697347794 - syst_JES_EtaIntercalibration_Stat174: 0.0022655138489976177 - syst_JES_EtaIntercalibration_Stat175: 0.0017736999992952584 - syst_JES_EtaIntercalibration_Stat176: 0.0013740645836349907 - syst_JES_EtaIntercalibration_Stat177: 0.001416354305955964 - syst_JES_EtaIntercalibration_Stat178: 0.0031835720833679896 - syst_JES_EtaIntercalibration_Stat179: 0.0006753545494775318 - syst_JES_EtaIntercalibration_Stat18: 1.5877871677274634e-10 - syst_JES_EtaIntercalibration_Stat180: 0.0007485116603467177 - syst_JES_EtaIntercalibration_Stat181: 0.0014623260511937822 - syst_JES_EtaIntercalibration_Stat182: 0.00017226414332355993 - syst_JES_EtaIntercalibration_Stat183: 8.043193690941428e-05 - syst_JES_EtaIntercalibration_Stat184: 2.4943627356902204e-05 - syst_JES_EtaIntercalibration_Stat185: 0.001896580524918465 - syst_JES_EtaIntercalibration_Stat186: 0.0035539007734459887 - syst_JES_EtaIntercalibration_Stat187: 0.0022287140822231997 - syst_JES_EtaIntercalibration_Stat188: 0.001033861127037863 - syst_JES_EtaIntercalibration_Stat189: 0.0021094475580113385 - syst_JES_EtaIntercalibration_Stat19: 4.988708939194589e-10 - syst_JES_EtaIntercalibration_Stat190: 0.0029404406322990095 - syst_JES_EtaIntercalibration_Stat191: 0.0019774771066942845 - syst_JES_EtaIntercalibration_Stat192: 0.00011245862294639751 - syst_JES_EtaIntercalibration_Stat193: 0.00036720818005594595 - syst_JES_EtaIntercalibration_Stat194: 0.0006361843782143025 - syst_JES_EtaIntercalibration_Stat195: 0.0013314067195263812 - syst_JES_EtaIntercalibration_Stat196: 0.0019354109331095554 - syst_JES_EtaIntercalibration_Stat197: 0.00045710957931331957 - syst_JES_EtaIntercalibration_Stat198: 0.0006573699015774908 - syst_JES_EtaIntercalibration_Stat199: 0.001227274675857039 - syst_JES_EtaIntercalibration_Stat2: 1.7545110451347977e-10 - syst_JES_EtaIntercalibration_Stat20: 1.2443665135320863e-10 - syst_JES_EtaIntercalibration_Stat200: 0.0013492649952844698 - syst_JES_EtaIntercalibration_Stat201: 0.0007788991125299862 - syst_JES_EtaIntercalibration_Stat202: 0.0006976230032761248 - syst_JES_EtaIntercalibration_Stat203: 0.0007863648229034664 - syst_JES_EtaIntercalibration_Stat204: 0.00010951101679739806 - syst_JES_EtaIntercalibration_Stat205: 0.00031561212060850897 - syst_JES_EtaIntercalibration_Stat206: 0.0002172248412935316 - syst_JES_EtaIntercalibration_Stat207: 0.00041047682943133335 - syst_JES_EtaIntercalibration_Stat208: 0.0010800713251910726 - syst_JES_EtaIntercalibration_Stat209: 0.0009303974312088357 - syst_JES_EtaIntercalibration_Stat21: 1.2443665135320863e-10 - syst_JES_EtaIntercalibration_Stat210: 0.0002100266828286349 - syst_JES_EtaIntercalibration_Stat211: 0.0007655229976950399 - syst_JES_EtaIntercalibration_Stat212: 3.301496052928126e-05 - syst_JES_EtaIntercalibration_Stat213: 8.291037208938337e-05 - syst_JES_EtaIntercalibration_Stat214: 2.1529391538081145e-05 - syst_JES_EtaIntercalibration_Stat215: 0.00020223348684132408 - syst_JES_EtaIntercalibration_Stat216: 9.97418808725803e-05 - syst_JES_EtaIntercalibration_Stat217: 0.00016649656903371915 - syst_JES_EtaIntercalibration_Stat218: 3.575679515840311e-05 - syst_JES_EtaIntercalibration_Stat219: 0.00015796110027471955 - syst_JES_EtaIntercalibration_Stat22: 1.2443665135320863e-10 - syst_JES_EtaIntercalibration_Stat220: 0.00011301867235107657 - syst_JES_EtaIntercalibration_Stat221: 4.425768266640268e-05 - syst_JES_EtaIntercalibration_Stat222: 0.00015960850732956033 - syst_JES_EtaIntercalibration_Stat223: 0.00012758977653009665 - syst_JES_EtaIntercalibration_Stat224: 3.537770025029891e-05 - syst_JES_EtaIntercalibration_Stat225: 3.507346005172572e-05 - syst_JES_EtaIntercalibration_Stat226: 3.187213634195236e-05 - syst_JES_EtaIntercalibration_Stat227: 3.151995677344752e-05 - syst_JES_EtaIntercalibration_Stat228: 3.376298379882915e-05 - syst_JES_EtaIntercalibration_Stat229: 5.713943187501954e-05 - syst_JES_EtaIntercalibration_Stat23: 1.7545110451347977e-10 - syst_JES_EtaIntercalibration_Stat230: 0.0001917842819419777 - syst_JES_EtaIntercalibration_Stat231: 2.075862892873855e-05 - syst_JES_EtaIntercalibration_Stat232: 1.8014157952843646e-05 - syst_JES_EtaIntercalibration_Stat233: 5.3979363417884064e-06 - syst_JES_EtaIntercalibration_Stat234: 2.36994446137457e-05 - syst_JES_EtaIntercalibration_Stat235: 1.7773949336036713e-05 - syst_JES_EtaIntercalibration_Stat236: 0.0003290979115704018 - syst_JES_EtaIntercalibration_Stat237: 7.620157527899275e-11 - syst_JES_EtaIntercalibration_Stat238: 2.9843754371727427e-05 - syst_JES_EtaIntercalibration_Stat239: 5.000657156814492e-05 - syst_JES_EtaIntercalibration_Stat24: 7.42496132986563e-06 - syst_JES_EtaIntercalibration_Stat240: 4.6011003031883586e-05 - syst_JES_EtaIntercalibration_Stat241: 0.00020222500142168376 - syst_JES_EtaIntercalibration_Stat242: 3.4733457573354255e-05 - syst_JES_EtaIntercalibration_Stat243: 8.409780674904667e-05 - syst_JES_EtaIntercalibration_Stat244: 6.534877734127854e-05 - syst_JES_EtaIntercalibration_Stat245: 7.68515699254088e-05 - syst_JES_EtaIntercalibration_Stat25: 4.741410463933701e-07 - syst_JES_EtaIntercalibration_Stat26: 3.104865013168849e-07 - syst_JES_EtaIntercalibration_Stat27: 0.00033079512570306644 - syst_JES_EtaIntercalibration_Stat28: 6.394855178188165e-07 - syst_JES_EtaIntercalibration_Stat29: 2.7113656835624368e-06 - syst_JES_EtaIntercalibration_Stat3: 1.7545110451347977e-10 - syst_JES_EtaIntercalibration_Stat30: 3.080540864718402e-06 - syst_JES_EtaIntercalibration_Stat31: 4.313618702145566e-06 - syst_JES_EtaIntercalibration_Stat32: 2.094608973054398e-08 - syst_JES_EtaIntercalibration_Stat33: 0.00022393995289342789 - syst_JES_EtaIntercalibration_Stat34: 4.858227450220399e-05 - syst_JES_EtaIntercalibration_Stat35: 1.995771027748424e-05 - syst_JES_EtaIntercalibration_Stat36: 4.941540953994007e-07 - syst_JES_EtaIntercalibration_Stat37: 5.909479735983533e-06 - syst_JES_EtaIntercalibration_Stat38: 2.6698791408741703e-05 - syst_JES_EtaIntercalibration_Stat39: 6.7127918007092065e-06 - syst_JES_EtaIntercalibration_Stat4: 1.0633369029028382e-09 - syst_JES_EtaIntercalibration_Stat40: 4.478718333426288e-05 - syst_JES_EtaIntercalibration_Stat41: 6.60161241605176e-07 - syst_JES_EtaIntercalibration_Stat42: 1.044398716391398e-09 - syst_JES_EtaIntercalibration_Stat43: 1.2443665135320863e-10 - syst_JES_EtaIntercalibration_Stat44: 1.2443665135320863e-10 - syst_JES_EtaIntercalibration_Stat45: 1.9126157612095013e-06 - syst_JES_EtaIntercalibration_Stat46: 6.760246583335551e-06 - syst_JES_EtaIntercalibration_Stat47: 6.009288809834322e-05 - syst_JES_EtaIntercalibration_Stat48: 1.8503980402875483e-05 - syst_JES_EtaIntercalibration_Stat49: 0.00022825511144495758 - syst_JES_EtaIntercalibration_Stat5: 6.865645067295207e-09 - syst_JES_EtaIntercalibration_Stat50: 4.3881536102898675e-05 - syst_JES_EtaIntercalibration_Stat51: 0.00012462759686361605 - syst_JES_EtaIntercalibration_Stat52: 4.3590730972880005e-05 - syst_JES_EtaIntercalibration_Stat53: 4.9384243114580584e-05 - syst_JES_EtaIntercalibration_Stat54: 7.072555315775197e-05 - syst_JES_EtaIntercalibration_Stat55: 0.00022750512509792908 - syst_JES_EtaIntercalibration_Stat56: 6.622588932396455e-06 - syst_JES_EtaIntercalibration_Stat57: 5.2124452579859295e-05 - syst_JES_EtaIntercalibration_Stat58: 3.160983269490682e-05 - syst_JES_EtaIntercalibration_Stat59: 2.2891646402126695e-05 - syst_JES_EtaIntercalibration_Stat6: 6.8769992352188035e-09 - syst_JES_EtaIntercalibration_Stat60: 4.265329411288183e-06 - syst_JES_EtaIntercalibration_Stat61: 4.24567812604771e-05 - syst_JES_EtaIntercalibration_Stat62: 4.01838220946314e-05 - syst_JES_EtaIntercalibration_Stat63: 4.116454785370537e-06 - syst_JES_EtaIntercalibration_Stat64: 7.335235170054195e-11 - syst_JES_EtaIntercalibration_Stat65: 1.2443665135320863e-10 - syst_JES_EtaIntercalibration_Stat66: 1.2443665135320863e-10 - syst_JES_EtaIntercalibration_Stat67: 1.3536008523564103e-05 - syst_JES_EtaIntercalibration_Stat68: 6.377970993976063e-05 - syst_JES_EtaIntercalibration_Stat69: 8.944477234584478e-05 - syst_JES_EtaIntercalibration_Stat7: 1.2443665135320863e-10 - syst_JES_EtaIntercalibration_Stat70: 0.000334399388157335 - syst_JES_EtaIntercalibration_Stat71: 0.00010703636800172173 - syst_JES_EtaIntercalibration_Stat72: 0.00021304492501582854 - syst_JES_EtaIntercalibration_Stat73: 0.00035709800070953906 - syst_JES_EtaIntercalibration_Stat74: 0.0003004402436425587 - syst_JES_EtaIntercalibration_Stat75: 0.000321351646326497 - syst_JES_EtaIntercalibration_Stat76: 3.898805806910623e-05 - syst_JES_EtaIntercalibration_Stat77: 7.392220978839851e-05 - syst_JES_EtaIntercalibration_Stat78: 9.996152110062153e-05 - syst_JES_EtaIntercalibration_Stat79: 1.4586995809624405e-05 - syst_JES_EtaIntercalibration_Stat8: 7.620157527899275e-11 - syst_JES_EtaIntercalibration_Stat80: 0.00012385849052446907 - syst_JES_EtaIntercalibration_Stat81: 0.0009041358808203278 - syst_JES_EtaIntercalibration_Stat82: 0.00019883198453719662 - syst_JES_EtaIntercalibration_Stat83: 5.452897320461848e-05 - syst_JES_EtaIntercalibration_Stat84: 0.00028391001112776474 - syst_JES_EtaIntercalibration_Stat85: 2.557061399341048e-05 - syst_JES_EtaIntercalibration_Stat86: 2.429122613594258e-07 - syst_JES_EtaIntercalibration_Stat87: 7.620157527899275e-11 - syst_JES_EtaIntercalibration_Stat88: 2.9319224068859664e-06 - syst_JES_EtaIntercalibration_Stat89: 0.00012223878762487788 - syst_JES_EtaIntercalibration_Stat9: 3.258196977900508e-08 - syst_JES_EtaIntercalibration_Stat90: 0.00023044804593443615 - syst_JES_EtaIntercalibration_Stat91: 0.00031630829846053673 - syst_JES_EtaIntercalibration_Stat92: 0.0001911859835343585 - syst_JES_EtaIntercalibration_Stat93: 0.0002599072619224018 - syst_JES_EtaIntercalibration_Stat94: 0.00033724106641244033 - syst_JES_EtaIntercalibration_Stat95: 0.00020599752201179506 - syst_JES_EtaIntercalibration_Stat96: 0.0003665704356259517 - syst_JES_EtaIntercalibration_Stat97: 0.0003895992950455634 - syst_JES_EtaIntercalibration_Stat98: 8.445314877273671e-05 - syst_JES_EtaIntercalibration_Stat99: 8.697866103246246e-05 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.008118358146817618 - syst_JES_Flavour_Comp: 0.04657606762061392 - syst_JES_Flavour_Response: 0.36920363960827907 - syst_JES_Gjet_Generator: 0.33492511103230227 - syst_JES_Gjet_OOC: 0.2078108274368783 - syst_JES_Gjet_Purity: 0.06199301795363734 - syst_JES_Gjet_Stat1: 2.0672026388334553e-06 - syst_JES_Gjet_Stat10: 0.020335508353616343 - syst_JES_Gjet_Stat11: 0.022938754870306274 - syst_JES_Gjet_Stat12: 0.010109900988634853 - syst_JES_Gjet_Stat13: 0.0010166562250829923 - syst_JES_Gjet_Stat14: 0.002588942399900006 - syst_JES_Gjet_Stat15: 4.8404614191211155e-08 - syst_JES_Gjet_Stat2: 1.4046932049383592e-08 - syst_JES_Gjet_Stat3: 2.243466321482674e-06 - syst_JES_Gjet_Stat4: 0.0007149577139151309 - syst_JES_Gjet_Stat5: 7.650364321852587e-05 - syst_JES_Gjet_Stat6: 0.005193744025267321 - syst_JES_Gjet_Stat7: 0.00473948359528757 - syst_JES_Gjet_Stat8: 0.005320217288795637 - syst_JES_Gjet_Stat9: 0.014015858589469287 - syst_JES_Gjet_Veto: 0.08936796783523725 - syst_JES_Gjet_dPhi: 0.01937809588169075 - syst_JES_LArESZee: 0.37460323009819335 - syst_JES_LArEsmear: 0.03390867551232281 - syst_JES_LAr_JVT: 0.046957519898308084 - syst_JES_MJB_Alpha: 1.3137605375409854e-08 - syst_JES_MJB_Asym: 0.001884556419744445 - syst_JES_MJB_Beta: 3.3354968426221586e-30 - syst_JES_MJB_Fragmentation: 0.002923609705056405 + syst_JER_NP7: 7.72494660e-03 + syst_JER_NP8: 1.08687252e-02 + syst_JES_EtaIntercalibration_Modelling: 2.84350431e-01 + syst_JES_EtaIntercalibration_NonClosure: 7.07596727e-02 + syst_JES_EtaIntercalibration_Stat0: 1.24436651e-10 + syst_JES_EtaIntercalibration_Stat1: 1.24436651e-10 + syst_JES_EtaIntercalibration_Stat10: 3.25819698e-08 + syst_JES_EtaIntercalibration_Stat100: 1.44367324e-04 + syst_JES_EtaIntercalibration_Stat101: 5.89698424e-04 + syst_JES_EtaIntercalibration_Stat102: 1.12685101e-03 + syst_JES_EtaIntercalibration_Stat103: 8.26329943e-04 + syst_JES_EtaIntercalibration_Stat104: 4.13881203e-04 + syst_JES_EtaIntercalibration_Stat105: 2.99801824e-04 + syst_JES_EtaIntercalibration_Stat106: 8.22131443e-05 + syst_JES_EtaIntercalibration_Stat107: 5.88812308e-07 + syst_JES_EtaIntercalibration_Stat108: 2.69177205e-05 + syst_JES_EtaIntercalibration_Stat109: 9.45449174e-04 + syst_JES_EtaIntercalibration_Stat11: 3.31254684e-04 + syst_JES_EtaIntercalibration_Stat110: 1.60128919e-03 + syst_JES_EtaIntercalibration_Stat111: 1.84181107e-03 + syst_JES_EtaIntercalibration_Stat112: 2.78781997e-03 + syst_JES_EtaIntercalibration_Stat113: 1.56608565e-03 + syst_JES_EtaIntercalibration_Stat114: 2.59924682e-03 + syst_JES_EtaIntercalibration_Stat115: 1.85598788e-03 + syst_JES_EtaIntercalibration_Stat116: 1.05983057e-03 + syst_JES_EtaIntercalibration_Stat117: 9.95674880e-04 + syst_JES_EtaIntercalibration_Stat118: 6.72887785e-04 + syst_JES_EtaIntercalibration_Stat119: 2.17685250e-03 + syst_JES_EtaIntercalibration_Stat12: 7.62015753e-11 + syst_JES_EtaIntercalibration_Stat120: 3.22111208e-03 + syst_JES_EtaIntercalibration_Stat121: 2.59752709e-03 + syst_JES_EtaIntercalibration_Stat122: 1.87954011e-03 + syst_JES_EtaIntercalibration_Stat123: 2.57537920e-03 + syst_JES_EtaIntercalibration_Stat124: 3.31670571e-03 + syst_JES_EtaIntercalibration_Stat125: 2.34750687e-03 + syst_JES_EtaIntercalibration_Stat126: 7.89268652e-04 + syst_JES_EtaIntercalibration_Stat127: 2.37898100e-06 + syst_JES_EtaIntercalibration_Stat128: 3.25701274e-03 + syst_JES_EtaIntercalibration_Stat129: 1.06346557e-02 + syst_JES_EtaIntercalibration_Stat13: 3.13067929e-05 + syst_JES_EtaIntercalibration_Stat130: 1.36969548e-02 + syst_JES_EtaIntercalibration_Stat131: 1.10357537e-02 + syst_JES_EtaIntercalibration_Stat132: 1.06051069e-02 + syst_JES_EtaIntercalibration_Stat133: 7.74430852e-03 + syst_JES_EtaIntercalibration_Stat134: 1.02588398e-02 + syst_JES_EtaIntercalibration_Stat135: 8.28252394e-03 + syst_JES_EtaIntercalibration_Stat136: 5.96464942e-03 + syst_JES_EtaIntercalibration_Stat137: 6.03394835e-03 + syst_JES_EtaIntercalibration_Stat138: 7.12323136e-03 + syst_JES_EtaIntercalibration_Stat139: 5.94994578e-03 + syst_JES_EtaIntercalibration_Stat14: 3.23287029e-05 + syst_JES_EtaIntercalibration_Stat140: 1.03932605e-02 + syst_JES_EtaIntercalibration_Stat141: 8.31286377e-03 + syst_JES_EtaIntercalibration_Stat142: 8.41676225e-03 + syst_JES_EtaIntercalibration_Stat143: 7.10631670e-03 + syst_JES_EtaIntercalibration_Stat144: 1.35552241e-02 + syst_JES_EtaIntercalibration_Stat145: 2.44461998e-03 + syst_JES_EtaIntercalibration_Stat146: 1.23264715e-03 + syst_JES_EtaIntercalibration_Stat147: 3.56715864e-03 + syst_JES_EtaIntercalibration_Stat148: 3.01090299e-03 + syst_JES_EtaIntercalibration_Stat149: 1.01814668e-03 + syst_JES_EtaIntercalibration_Stat15: 3.25891954e-08 + syst_JES_EtaIntercalibration_Stat150: 2.99180152e-03 + syst_JES_EtaIntercalibration_Stat151: 5.49936930e-03 + syst_JES_EtaIntercalibration_Stat152: 3.51919565e-03 + syst_JES_EtaIntercalibration_Stat153: 2.60500441e-03 + syst_JES_EtaIntercalibration_Stat154: 3.48812241e-03 + syst_JES_EtaIntercalibration_Stat155: 3.03348045e-03 + syst_JES_EtaIntercalibration_Stat156: 1.48553819e-03 + syst_JES_EtaIntercalibration_Stat157: 5.71017723e-03 + syst_JES_EtaIntercalibration_Stat158: 5.01914651e-03 + syst_JES_EtaIntercalibration_Stat159: 3.44568400e-03 + syst_JES_EtaIntercalibration_Stat16: 8.18289025e-10 + syst_JES_EtaIntercalibration_Stat160: 1.03205388e-05 + syst_JES_EtaIntercalibration_Stat161: 3.78376387e-03 + syst_JES_EtaIntercalibration_Stat162: 3.67179646e-03 + syst_JES_EtaIntercalibration_Stat163: 2.23862609e-03 + syst_JES_EtaIntercalibration_Stat164: 1.23291940e-03 + syst_JES_EtaIntercalibration_Stat165: 3.04543441e-03 + syst_JES_EtaIntercalibration_Stat166: 2.88919288e-03 + syst_JES_EtaIntercalibration_Stat167: 3.82971445e-03 + syst_JES_EtaIntercalibration_Stat168: 2.00455799e-03 + syst_JES_EtaIntercalibration_Stat169: 1.74313535e-03 + syst_JES_EtaIntercalibration_Stat17: 2.77817469e-05 + syst_JES_EtaIntercalibration_Stat170: 2.92387940e-03 + syst_JES_EtaIntercalibration_Stat171: 4.19059936e-03 + syst_JES_EtaIntercalibration_Stat172: 2.55770543e-03 + syst_JES_EtaIntercalibration_Stat173: 8.72950697e-04 + syst_JES_EtaIntercalibration_Stat174: 2.26551385e-03 + syst_JES_EtaIntercalibration_Stat175: 1.77370000e-03 + syst_JES_EtaIntercalibration_Stat176: 1.37406458e-03 + syst_JES_EtaIntercalibration_Stat177: 1.41635431e-03 + syst_JES_EtaIntercalibration_Stat178: 3.18357208e-03 + syst_JES_EtaIntercalibration_Stat179: 6.75354549e-04 + syst_JES_EtaIntercalibration_Stat18: 1.58778717e-10 + syst_JES_EtaIntercalibration_Stat180: 7.48511660e-04 + syst_JES_EtaIntercalibration_Stat181: 1.46232605e-03 + syst_JES_EtaIntercalibration_Stat182: 1.72264143e-04 + syst_JES_EtaIntercalibration_Stat183: 8.04319369e-05 + syst_JES_EtaIntercalibration_Stat184: 2.49436274e-05 + syst_JES_EtaIntercalibration_Stat185: 1.89658052e-03 + syst_JES_EtaIntercalibration_Stat186: 3.55390077e-03 + syst_JES_EtaIntercalibration_Stat187: 2.22871408e-03 + syst_JES_EtaIntercalibration_Stat188: 1.03386113e-03 + syst_JES_EtaIntercalibration_Stat189: 2.10944756e-03 + syst_JES_EtaIntercalibration_Stat19: 4.98870894e-10 + syst_JES_EtaIntercalibration_Stat190: 2.94044063e-03 + syst_JES_EtaIntercalibration_Stat191: 1.97747711e-03 + syst_JES_EtaIntercalibration_Stat192: 1.12458623e-04 + syst_JES_EtaIntercalibration_Stat193: 3.67208180e-04 + syst_JES_EtaIntercalibration_Stat194: 6.36184378e-04 + syst_JES_EtaIntercalibration_Stat195: 1.33140672e-03 + syst_JES_EtaIntercalibration_Stat196: 1.93541093e-03 + syst_JES_EtaIntercalibration_Stat197: 4.57109579e-04 + syst_JES_EtaIntercalibration_Stat198: 6.57369902e-04 + syst_JES_EtaIntercalibration_Stat199: 1.22727468e-03 + syst_JES_EtaIntercalibration_Stat2: 1.75451105e-10 + syst_JES_EtaIntercalibration_Stat20: 1.24436651e-10 + syst_JES_EtaIntercalibration_Stat200: 1.34926500e-03 + syst_JES_EtaIntercalibration_Stat201: 7.78899113e-04 + syst_JES_EtaIntercalibration_Stat202: 6.97623003e-04 + syst_JES_EtaIntercalibration_Stat203: 7.86364823e-04 + syst_JES_EtaIntercalibration_Stat204: 1.09511017e-04 + syst_JES_EtaIntercalibration_Stat205: 3.15612121e-04 + syst_JES_EtaIntercalibration_Stat206: 2.17224841e-04 + syst_JES_EtaIntercalibration_Stat207: 4.10476829e-04 + syst_JES_EtaIntercalibration_Stat208: 1.08007133e-03 + syst_JES_EtaIntercalibration_Stat209: 9.30397431e-04 + syst_JES_EtaIntercalibration_Stat21: 1.24436651e-10 + syst_JES_EtaIntercalibration_Stat210: 2.10026683e-04 + syst_JES_EtaIntercalibration_Stat211: 7.65522998e-04 + syst_JES_EtaIntercalibration_Stat212: 3.30149605e-05 + syst_JES_EtaIntercalibration_Stat213: 8.29103721e-05 + syst_JES_EtaIntercalibration_Stat214: 2.15293915e-05 + syst_JES_EtaIntercalibration_Stat215: 2.02233487e-04 + syst_JES_EtaIntercalibration_Stat216: 9.97418809e-05 + syst_JES_EtaIntercalibration_Stat217: 1.66496569e-04 + syst_JES_EtaIntercalibration_Stat218: 3.57567952e-05 + syst_JES_EtaIntercalibration_Stat219: 1.57961100e-04 + syst_JES_EtaIntercalibration_Stat22: 1.24436651e-10 + syst_JES_EtaIntercalibration_Stat220: 1.13018672e-04 + syst_JES_EtaIntercalibration_Stat221: 4.42576827e-05 + syst_JES_EtaIntercalibration_Stat222: 1.59608507e-04 + syst_JES_EtaIntercalibration_Stat223: 1.27589777e-04 + syst_JES_EtaIntercalibration_Stat224: 3.53777003e-05 + syst_JES_EtaIntercalibration_Stat225: 3.50734601e-05 + syst_JES_EtaIntercalibration_Stat226: 3.18721363e-05 + syst_JES_EtaIntercalibration_Stat227: 3.15199568e-05 + syst_JES_EtaIntercalibration_Stat228: 3.37629838e-05 + syst_JES_EtaIntercalibration_Stat229: 5.71394319e-05 + syst_JES_EtaIntercalibration_Stat23: 1.75451105e-10 + syst_JES_EtaIntercalibration_Stat230: 1.91784282e-04 + syst_JES_EtaIntercalibration_Stat231: 2.07586289e-05 + syst_JES_EtaIntercalibration_Stat232: 1.80141580e-05 + syst_JES_EtaIntercalibration_Stat233: 5.39793634e-06 + syst_JES_EtaIntercalibration_Stat234: 2.36994446e-05 + syst_JES_EtaIntercalibration_Stat235: 1.77739493e-05 + syst_JES_EtaIntercalibration_Stat236: 3.29097912e-04 + syst_JES_EtaIntercalibration_Stat237: 7.62015753e-11 + syst_JES_EtaIntercalibration_Stat238: 2.98437544e-05 + syst_JES_EtaIntercalibration_Stat239: 5.00065716e-05 + syst_JES_EtaIntercalibration_Stat24: 7.42496133e-06 + syst_JES_EtaIntercalibration_Stat240: 4.60110030e-05 + syst_JES_EtaIntercalibration_Stat241: 2.02225001e-04 + syst_JES_EtaIntercalibration_Stat242: 3.47334576e-05 + syst_JES_EtaIntercalibration_Stat243: 8.40978067e-05 + syst_JES_EtaIntercalibration_Stat244: 6.53487773e-05 + syst_JES_EtaIntercalibration_Stat245: 7.68515699e-05 + syst_JES_EtaIntercalibration_Stat25: 4.74141046e-07 + syst_JES_EtaIntercalibration_Stat26: 3.10486501e-07 + syst_JES_EtaIntercalibration_Stat27: 3.30795126e-04 + syst_JES_EtaIntercalibration_Stat28: 6.39485518e-07 + syst_JES_EtaIntercalibration_Stat29: 2.71136568e-06 + syst_JES_EtaIntercalibration_Stat3: 1.75451105e-10 + syst_JES_EtaIntercalibration_Stat30: 3.08054086e-06 + syst_JES_EtaIntercalibration_Stat31: 4.31361870e-06 + syst_JES_EtaIntercalibration_Stat32: 2.09460897e-08 + syst_JES_EtaIntercalibration_Stat33: 2.23939953e-04 + syst_JES_EtaIntercalibration_Stat34: 4.85822745e-05 + syst_JES_EtaIntercalibration_Stat35: 1.99577103e-05 + syst_JES_EtaIntercalibration_Stat36: 4.94154095e-07 + syst_JES_EtaIntercalibration_Stat37: 5.90947974e-06 + syst_JES_EtaIntercalibration_Stat38: 2.66987914e-05 + syst_JES_EtaIntercalibration_Stat39: 6.71279180e-06 + syst_JES_EtaIntercalibration_Stat4: 1.06333690e-09 + syst_JES_EtaIntercalibration_Stat40: 4.47871833e-05 + syst_JES_EtaIntercalibration_Stat41: 6.60161242e-07 + syst_JES_EtaIntercalibration_Stat42: 1.04439872e-09 + syst_JES_EtaIntercalibration_Stat43: 1.24436651e-10 + syst_JES_EtaIntercalibration_Stat44: 1.24436651e-10 + syst_JES_EtaIntercalibration_Stat45: 1.91261576e-06 + syst_JES_EtaIntercalibration_Stat46: 6.76024658e-06 + syst_JES_EtaIntercalibration_Stat47: 6.00928881e-05 + syst_JES_EtaIntercalibration_Stat48: 1.85039804e-05 + syst_JES_EtaIntercalibration_Stat49: 2.28255111e-04 + syst_JES_EtaIntercalibration_Stat5: 6.86564507e-09 + syst_JES_EtaIntercalibration_Stat50: 4.38815361e-05 + syst_JES_EtaIntercalibration_Stat51: 1.24627597e-04 + syst_JES_EtaIntercalibration_Stat52: 4.35907310e-05 + syst_JES_EtaIntercalibration_Stat53: 4.93842431e-05 + syst_JES_EtaIntercalibration_Stat54: 7.07255532e-05 + syst_JES_EtaIntercalibration_Stat55: 2.27505125e-04 + syst_JES_EtaIntercalibration_Stat56: 6.62258893e-06 + syst_JES_EtaIntercalibration_Stat57: 5.21244526e-05 + syst_JES_EtaIntercalibration_Stat58: 3.16098327e-05 + syst_JES_EtaIntercalibration_Stat59: 2.28916464e-05 + syst_JES_EtaIntercalibration_Stat6: 6.87699924e-09 + syst_JES_EtaIntercalibration_Stat60: 4.26532941e-06 + syst_JES_EtaIntercalibration_Stat61: 4.24567813e-05 + syst_JES_EtaIntercalibration_Stat62: 4.01838221e-05 + syst_JES_EtaIntercalibration_Stat63: 4.11645479e-06 + syst_JES_EtaIntercalibration_Stat64: 7.33523517e-11 + syst_JES_EtaIntercalibration_Stat65: 1.24436651e-10 + syst_JES_EtaIntercalibration_Stat66: 1.24436651e-10 + syst_JES_EtaIntercalibration_Stat67: 1.35360085e-05 + syst_JES_EtaIntercalibration_Stat68: 6.37797099e-05 + syst_JES_EtaIntercalibration_Stat69: 8.94447723e-05 + syst_JES_EtaIntercalibration_Stat7: 1.24436651e-10 + syst_JES_EtaIntercalibration_Stat70: 3.34399388e-04 + syst_JES_EtaIntercalibration_Stat71: 1.07036368e-04 + syst_JES_EtaIntercalibration_Stat72: 2.13044925e-04 + syst_JES_EtaIntercalibration_Stat73: 3.57098001e-04 + syst_JES_EtaIntercalibration_Stat74: 3.00440244e-04 + syst_JES_EtaIntercalibration_Stat75: 3.21351646e-04 + syst_JES_EtaIntercalibration_Stat76: 3.89880581e-05 + syst_JES_EtaIntercalibration_Stat77: 7.39222098e-05 + syst_JES_EtaIntercalibration_Stat78: 9.99615211e-05 + syst_JES_EtaIntercalibration_Stat79: 1.45869958e-05 + syst_JES_EtaIntercalibration_Stat8: 7.62015753e-11 + syst_JES_EtaIntercalibration_Stat80: 1.23858491e-04 + syst_JES_EtaIntercalibration_Stat81: 9.04135881e-04 + syst_JES_EtaIntercalibration_Stat82: 1.98831985e-04 + syst_JES_EtaIntercalibration_Stat83: 5.45289732e-05 + syst_JES_EtaIntercalibration_Stat84: 2.83910011e-04 + syst_JES_EtaIntercalibration_Stat85: 2.55706140e-05 + syst_JES_EtaIntercalibration_Stat86: 2.42912261e-07 + syst_JES_EtaIntercalibration_Stat87: 7.62015753e-11 + syst_JES_EtaIntercalibration_Stat88: 2.93192241e-06 + syst_JES_EtaIntercalibration_Stat89: 1.22238788e-04 + syst_JES_EtaIntercalibration_Stat9: 3.25819698e-08 + syst_JES_EtaIntercalibration_Stat90: 2.30448046e-04 + syst_JES_EtaIntercalibration_Stat91: 3.16308298e-04 + syst_JES_EtaIntercalibration_Stat92: 1.91185984e-04 + syst_JES_EtaIntercalibration_Stat93: 2.59907262e-04 + syst_JES_EtaIntercalibration_Stat94: 3.37241066e-04 + syst_JES_EtaIntercalibration_Stat95: 2.05997522e-04 + syst_JES_EtaIntercalibration_Stat96: 3.66570436e-04 + syst_JES_EtaIntercalibration_Stat97: 3.89599295e-04 + syst_JES_EtaIntercalibration_Stat98: 8.44531488e-05 + syst_JES_EtaIntercalibration_Stat99: 8.69786610e-05 + syst_JES_EtaIntercalibration_TotalStat_MJB: 8.11835815e-03 + syst_JES_Flavour_Comp: 4.65760676e-02 + syst_JES_Flavour_Response: 3.69203640e-01 + syst_JES_Gjet_Generator: 3.34925111e-01 + syst_JES_Gjet_OOC: 2.07810827e-01 + syst_JES_Gjet_Purity: 6.19930180e-02 + syst_JES_Gjet_Stat1: 2.06720264e-06 + syst_JES_Gjet_Stat10: 2.03355084e-02 + syst_JES_Gjet_Stat11: 2.29387549e-02 + syst_JES_Gjet_Stat12: 1.01099010e-02 + syst_JES_Gjet_Stat13: 1.01665623e-03 + syst_JES_Gjet_Stat14: 2.58894240e-03 + syst_JES_Gjet_Stat15: 4.84046142e-08 + syst_JES_Gjet_Stat2: 1.40469320e-08 + syst_JES_Gjet_Stat3: 2.24346632e-06 + syst_JES_Gjet_Stat4: 7.14957714e-04 + syst_JES_Gjet_Stat5: 7.65036432e-05 + syst_JES_Gjet_Stat6: 5.19374403e-03 + syst_JES_Gjet_Stat7: 4.73948360e-03 + syst_JES_Gjet_Stat8: 5.32021729e-03 + syst_JES_Gjet_Stat9: 1.40158586e-02 + syst_JES_Gjet_Veto: 8.93679678e-02 + syst_JES_Gjet_dPhi: 1.93780959e-02 + syst_JES_LArESZee: 3.74603230e-01 + syst_JES_LArEsmear: 3.39086755e-02 + syst_JES_LAr_JVT: 4.69575199e-02 + syst_JES_MJB_Alpha: 1.31376054e-08 + syst_JES_MJB_Asym: 1.88455642e-03 + syst_JES_MJB_Beta: 3.33549684e-30 + syst_JES_MJB_Fragmentation: 2.92360971e-03 syst_JES_MJB_Stat1: 0.0 syst_JES_MJB_Stat10: 0.0 syst_JES_MJB_Stat11: 0.0 @@ -22539,336 +22539,336 @@ bins: syst_JES_MJB_Stat13: 0.0 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 - syst_JES_MJB_Stat16: 3.7420957697525593e-41 - syst_JES_MJB_Stat2: 0.0010341209346589981 - syst_JES_MJB_Stat3: 1.8862033294425075e-06 - syst_JES_MJB_Stat4: 2.278512837356858e-05 - syst_JES_MJB_Stat5: 0.00019709831220738548 + syst_JES_MJB_Stat16: 3.74209577e-41 + syst_JES_MJB_Stat2: 1.03412093e-03 + syst_JES_MJB_Stat3: 1.88620333e-06 + syst_JES_MJB_Stat4: 2.27851284e-05 + syst_JES_MJB_Stat5: 1.97098312e-04 syst_JES_MJB_Stat6: 0.0 syst_JES_MJB_Stat7: 0.0 syst_JES_MJB_Stat8: 0.0 - syst_JES_MJB_Stat9: 1.2765214451782624e-30 - syst_JES_MJB_Threshold: 0.0024215016850706503 - syst_JES_Pileup_MuOffset: 0.003512212617069189 - syst_JES_Pileup_NPVOffset: 0.018890253439273915 - syst_JES_Pileup_Pt_term: 0.07741306785679017 - syst_JES_Pileup_Rho_topology: 0.11140913472422269 - syst_JES_PunchThrough_MC15: 0.0002477001614856155 - syst_JES_SingleParticle_HighPt: 3.247034339208626e-05 - syst_JES_Zjet_MC: 0.30897628954338874 - syst_JES_Zjet_MuScale: 0.022597156347646936 - syst_JES_Zjet_MuSmearID: 0.002003251045176316 - syst_JES_Zjet_MuSmearMS: 0.04392276972140988 - syst_JES_Zjet_OOC: 0.10583457799793033 - syst_JES_Zjet_Stat1: 0.0017460953582207359 - syst_JES_Zjet_Stat10: 0.025233564948298527 - syst_JES_Zjet_Stat11: 0.04479817072158193 - syst_JES_Zjet_Stat12: 0.05570542769784646 - syst_JES_Zjet_Stat13: 0.0033602851486146234 + syst_JES_MJB_Stat9: 1.27652145e-30 + syst_JES_MJB_Threshold: 2.42150169e-03 + syst_JES_Pileup_MuOffset: 3.51221262e-03 + syst_JES_Pileup_NPVOffset: 1.88902534e-02 + syst_JES_Pileup_Pt_term: 7.74130679e-02 + syst_JES_Pileup_Rho_topology: 1.11409135e-01 + syst_JES_PunchThrough_MC15: 2.47700161e-04 + syst_JES_SingleParticle_HighPt: 3.24703434e-05 + syst_JES_Zjet_MC: 3.08976290e-01 + syst_JES_Zjet_MuScale: 2.25971563e-02 + syst_JES_Zjet_MuSmearID: 2.00325105e-03 + syst_JES_Zjet_MuSmearMS: 4.39227697e-02 + syst_JES_Zjet_OOC: 1.05834578e-01 + syst_JES_Zjet_Stat1: 1.74609536e-03 + syst_JES_Zjet_Stat10: 2.52335649e-02 + syst_JES_Zjet_Stat11: 4.47981707e-02 + syst_JES_Zjet_Stat12: 5.57054277e-02 + syst_JES_Zjet_Stat13: 3.36028515e-03 syst_JES_Zjet_Stat2: 0.0 - syst_JES_Zjet_Stat3: 1.587424565136872e-08 - syst_JES_Zjet_Stat4: 2.015241114606389e-07 - syst_JES_Zjet_Stat5: 0.0007685975458586894 - syst_JES_Zjet_Stat6: 0.0015646319055931336 - syst_JES_Zjet_Stat7: 0.002233506773551403 - syst_JES_Zjet_Stat8: 0.002193971911853021 - syst_JES_Zjet_Stat9: 0.009427645464271554 - syst_JES_Zjet_Veto: 0.02051889860591937 - syst_JES_Zjet_dPhi: 0.02283017027969787 + syst_JES_Zjet_Stat3: 1.58742457e-08 + syst_JES_Zjet_Stat4: 2.01524111e-07 + syst_JES_Zjet_Stat5: 7.68597546e-04 + syst_JES_Zjet_Stat6: 1.56463191e-03 + syst_JES_Zjet_Stat7: 2.23350677e-03 + syst_JES_Zjet_Stat8: 2.19397191e-03 + syst_JES_Zjet_Stat9: 9.42764546e-03 + syst_JES_Zjet_Veto: 2.05188986e-02 + syst_JES_Zjet_dPhi: 2.28301703e-02 syst_PRW: 0.0 - syst_Unfolding_bias: 4.159e-06 - syst_cleaning: 0.14817694658751746 + syst_Unfolding_bias: 4.15900000e-06 + syst_cleaning: 1.48176947e-01 syst_lumi: 0.3591 - stat: 0.088 syst_JER_CROSS_CALIB_FORWARD: 0.001451 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.0416647608897495 - syst_JER_NP1: 0.007932513772443134 - syst_JER_NP2: 3.32744280642057e-28 - syst_JER_NP3: 0.011819529210167382 - syst_JER_NP4: 9.588633270701305e-05 + syst_JER_NP0: 4.16647609e-02 + syst_JER_NP1: 7.93251377e-03 + syst_JER_NP2: 3.32744281e-28 + syst_JER_NP3: 1.18195292e-02 + syst_JER_NP4: 9.58863327e-05 syst_JER_NP5: 0.0 syst_JER_NP6: 0.0 - syst_JER_NP7: 0.003464015012597376 - syst_JER_NP8: 0.0053299997185741015 - syst_JES_EtaIntercalibration_Modelling: 0.16231041248176287 - syst_JES_EtaIntercalibration_NonClosure: 0.03369574750617651 - syst_JES_EtaIntercalibration_Stat0: 6.236681810065349e-12 - syst_JES_EtaIntercalibration_Stat1: 6.236681810065349e-12 - syst_JES_EtaIntercalibration_Stat10: 1.8048752164277176e-09 - syst_JES_EtaIntercalibration_Stat100: 6.572007512929363e-05 - syst_JES_EtaIntercalibration_Stat101: 6.96958277086943e-05 - syst_JES_EtaIntercalibration_Stat102: 0.00015065517301689313 - syst_JES_EtaIntercalibration_Stat103: 0.00012162369748840065 - syst_JES_EtaIntercalibration_Stat104: 9.410748323061242e-05 - syst_JES_EtaIntercalibration_Stat105: 0.0001223398937509756 - syst_JES_EtaIntercalibration_Stat106: 3.50632458102498e-05 - syst_JES_EtaIntercalibration_Stat107: 4.907766997858969e-07 - syst_JES_EtaIntercalibration_Stat108: 2.616365035693605e-06 - syst_JES_EtaIntercalibration_Stat109: 0.0002460519702725422 - syst_JES_EtaIntercalibration_Stat11: 0.0001738978994200333 - syst_JES_EtaIntercalibration_Stat110: 0.0004700482102933698 - syst_JES_EtaIntercalibration_Stat111: 0.0005164244959333359 - syst_JES_EtaIntercalibration_Stat112: 0.0008574596385107581 - syst_JES_EtaIntercalibration_Stat113: 0.0009124662868703699 - syst_JES_EtaIntercalibration_Stat114: 0.00037125129989671414 - syst_JES_EtaIntercalibration_Stat115: 0.00037741986526943703 - syst_JES_EtaIntercalibration_Stat116: 0.00014746552410648396 - syst_JES_EtaIntercalibration_Stat117: 0.0003911594399985765 - syst_JES_EtaIntercalibration_Stat118: 0.00014919552096158919 - syst_JES_EtaIntercalibration_Stat119: 0.0007147063920764946 - syst_JES_EtaIntercalibration_Stat12: 3.819172030689375e-12 - syst_JES_EtaIntercalibration_Stat120: 0.0007436765072933257 - syst_JES_EtaIntercalibration_Stat121: 0.0005269210068881292 - syst_JES_EtaIntercalibration_Stat122: 0.000249422752921621 - syst_JES_EtaIntercalibration_Stat123: 0.0006348366305593905 - syst_JES_EtaIntercalibration_Stat124: 0.0007864160222172485 - syst_JES_EtaIntercalibration_Stat125: 0.0006617047755608236 - syst_JES_EtaIntercalibration_Stat126: 0.0004362123520431305 - syst_JES_EtaIntercalibration_Stat127: 3.981984854347718e-05 - syst_JES_EtaIntercalibration_Stat128: 0.001991305970964784 - syst_JES_EtaIntercalibration_Stat129: 0.004282253077069944 - syst_JES_EtaIntercalibration_Stat13: 1.64371608907717e-05 - syst_JES_EtaIntercalibration_Stat130: 0.005578057816122024 - syst_JES_EtaIntercalibration_Stat131: 0.004562897763483201 - syst_JES_EtaIntercalibration_Stat132: 0.0041596106788977264 - syst_JES_EtaIntercalibration_Stat133: 0.002799199147524163 - syst_JES_EtaIntercalibration_Stat134: 0.0036465426091024907 - syst_JES_EtaIntercalibration_Stat135: 0.003041290967664883 - syst_JES_EtaIntercalibration_Stat136: 0.002259077687907169 - syst_JES_EtaIntercalibration_Stat137: 0.0023276655687619733 - syst_JES_EtaIntercalibration_Stat138: 0.0022121157293414828 - syst_JES_EtaIntercalibration_Stat139: 0.002909279292195921 - syst_JES_EtaIntercalibration_Stat14: 1.6974096641118035e-05 - syst_JES_EtaIntercalibration_Stat140: 0.0034310314411267057 - syst_JES_EtaIntercalibration_Stat141: 0.003492483750856974 - syst_JES_EtaIntercalibration_Stat142: 0.004445753366978424 - syst_JES_EtaIntercalibration_Stat143: 0.0026980976168404286 - syst_JES_EtaIntercalibration_Stat144: 0.004175241789405735 - syst_JES_EtaIntercalibration_Stat145: 0.0009334115209809657 - syst_JES_EtaIntercalibration_Stat146: 0.0013575539878767251 - syst_JES_EtaIntercalibration_Stat147: 0.0019234424218052381 - syst_JES_EtaIntercalibration_Stat148: 0.001531043392592124 - syst_JES_EtaIntercalibration_Stat149: 0.0006495343152597867 - syst_JES_EtaIntercalibration_Stat15: 1.8052595259615721e-09 - syst_JES_EtaIntercalibration_Stat150: 0.0015372725034944195 - syst_JES_EtaIntercalibration_Stat151: 0.0025577902083634614 - syst_JES_EtaIntercalibration_Stat152: 0.001409159845439828 - syst_JES_EtaIntercalibration_Stat153: 0.0012522727338722982 - syst_JES_EtaIntercalibration_Stat154: 0.001685811824463217 - syst_JES_EtaIntercalibration_Stat155: 0.001386526030651787 - syst_JES_EtaIntercalibration_Stat156: 0.0007847706921133077 - syst_JES_EtaIntercalibration_Stat157: 0.003046377644022487 - syst_JES_EtaIntercalibration_Stat158: 0.002455844229587862 - syst_JES_EtaIntercalibration_Stat159: 0.002140485217625901 - syst_JES_EtaIntercalibration_Stat16: 4.13452609134348e-11 - syst_JES_EtaIntercalibration_Stat160: 6.1426346749582954e-06 - syst_JES_EtaIntercalibration_Stat161: 0.0018237109822214154 - syst_JES_EtaIntercalibration_Stat162: 0.001733694344456369 - syst_JES_EtaIntercalibration_Stat163: 0.0010101678608404646 - syst_JES_EtaIntercalibration_Stat164: 0.0016742040641152438 - syst_JES_EtaIntercalibration_Stat165: 0.0016194267712681546 - syst_JES_EtaIntercalibration_Stat166: 0.002162425201018523 - syst_JES_EtaIntercalibration_Stat167: 0.002501636062419952 - syst_JES_EtaIntercalibration_Stat168: 0.0018561044905931346 - syst_JES_EtaIntercalibration_Stat169: 0.001464716709521674 - syst_JES_EtaIntercalibration_Stat17: 1.458432742847088e-05 - syst_JES_EtaIntercalibration_Stat170: 0.0020615844895371135 - syst_JES_EtaIntercalibration_Stat171: 0.0019781927831988466 - syst_JES_EtaIntercalibration_Stat172: 0.0013093573538190404 - syst_JES_EtaIntercalibration_Stat173: 0.000457789938181258 - syst_JES_EtaIntercalibration_Stat174: 0.0010547976618764377 - syst_JES_EtaIntercalibration_Stat175: 0.0009328378405703749 - syst_JES_EtaIntercalibration_Stat176: 0.0006262060672614087 - syst_JES_EtaIntercalibration_Stat177: 0.001420517225344346 - syst_JES_EtaIntercalibration_Stat178: 0.0019783713175235834 - syst_JES_EtaIntercalibration_Stat179: 0.00035459122944596355 - syst_JES_EtaIntercalibration_Stat18: 7.957488737032556e-12 - syst_JES_EtaIntercalibration_Stat180: 0.000550418269318888 - syst_JES_EtaIntercalibration_Stat181: 0.0008507257419844542 - syst_JES_EtaIntercalibration_Stat182: 0.0010129088913178469 - syst_JES_EtaIntercalibration_Stat183: 0.0005787166837062847 - syst_JES_EtaIntercalibration_Stat184: 1.2977623110119203e-05 - syst_JES_EtaIntercalibration_Stat185: 0.002270456121575575 - syst_JES_EtaIntercalibration_Stat186: 0.0015827745472745006 - syst_JES_EtaIntercalibration_Stat187: 0.001963954874736179 - syst_JES_EtaIntercalibration_Stat188: 0.0006190349586251168 - syst_JES_EtaIntercalibration_Stat189: 0.0012566410585366052 - syst_JES_EtaIntercalibration_Stat19: 2.5169014819813666e-11 - syst_JES_EtaIntercalibration_Stat190: 0.0016477905807702022 - syst_JES_EtaIntercalibration_Stat191: 0.0011051706972228317 - syst_JES_EtaIntercalibration_Stat192: 0.000963327258775542 - syst_JES_EtaIntercalibration_Stat193: 0.0011141530718442596 - syst_JES_EtaIntercalibration_Stat194: 0.0003346409833460894 - syst_JES_EtaIntercalibration_Stat195: 0.0006769509071984098 - syst_JES_EtaIntercalibration_Stat196: 0.0013683147627647667 - syst_JES_EtaIntercalibration_Stat197: 0.0001003019694472646 - syst_JES_EtaIntercalibration_Stat198: 0.00010661383247496544 - syst_JES_EtaIntercalibration_Stat199: 0.0011572323621468594 - syst_JES_EtaIntercalibration_Stat2: 8.79542307112057e-12 - syst_JES_EtaIntercalibration_Stat20: 6.236681810065349e-12 - syst_JES_EtaIntercalibration_Stat200: 0.0009571433160713185 - syst_JES_EtaIntercalibration_Stat201: 0.00033139667877032204 - syst_JES_EtaIntercalibration_Stat202: 0.0007350619067806466 - syst_JES_EtaIntercalibration_Stat203: 0.0001043035692905569 - syst_JES_EtaIntercalibration_Stat204: 0.00011470025839116492 - syst_JES_EtaIntercalibration_Stat205: 0.0001638144120735413 - syst_JES_EtaIntercalibration_Stat206: 0.000426398471499078 - syst_JES_EtaIntercalibration_Stat207: 0.00018394771179604274 - syst_JES_EtaIntercalibration_Stat208: 0.0007336404280538253 - syst_JES_EtaIntercalibration_Stat209: 0.0007100493134282998 - syst_JES_EtaIntercalibration_Stat21: 6.236681810065349e-12 - syst_JES_EtaIntercalibration_Stat210: 0.00011057873981918948 - syst_JES_EtaIntercalibration_Stat211: 0.00044437890012353196 - syst_JES_EtaIntercalibration_Stat212: 1.3662478984430314e-05 - syst_JES_EtaIntercalibration_Stat213: 3.108971403454847e-05 - syst_JES_EtaIntercalibration_Stat214: 1.1305095621002064e-05 - syst_JES_EtaIntercalibration_Stat215: 6.945996472789199e-05 - syst_JES_EtaIntercalibration_Stat216: 9.51904795659734e-05 - syst_JES_EtaIntercalibration_Stat217: 5.3944049486481824e-05 - syst_JES_EtaIntercalibration_Stat218: 6.362794784526685e-05 - syst_JES_EtaIntercalibration_Stat219: 0.00010819528397763 - syst_JES_EtaIntercalibration_Stat22: 6.236681810065349e-12 - syst_JES_EtaIntercalibration_Stat220: 8.61711163441672e-05 - syst_JES_EtaIntercalibration_Stat221: 6.845359418430854e-05 - syst_JES_EtaIntercalibration_Stat222: 1.4705124092650832e-06 - syst_JES_EtaIntercalibration_Stat223: 7.121842340293697e-05 - syst_JES_EtaIntercalibration_Stat224: 1.813081046175267e-05 - syst_JES_EtaIntercalibration_Stat225: 1.366762820499592e-05 - syst_JES_EtaIntercalibration_Stat226: 1.7017059264161947e-05 - syst_JES_EtaIntercalibration_Stat227: 1.6561766836602914e-05 - syst_JES_EtaIntercalibration_Stat228: 2.8039681221440447e-05 - syst_JES_EtaIntercalibration_Stat229: 4.1577119909873506e-05 - syst_JES_EtaIntercalibration_Stat23: 8.79542307112057e-12 - syst_JES_EtaIntercalibration_Stat230: 4.919136585824793e-05 - syst_JES_EtaIntercalibration_Stat231: 1.355328277180369e-06 - syst_JES_EtaIntercalibration_Stat232: 2.2208801228341884e-05 - syst_JES_EtaIntercalibration_Stat233: 6.604309729260129e-06 - syst_JES_EtaIntercalibration_Stat234: 2.7995958851234227e-05 - syst_JES_EtaIntercalibration_Stat235: 2.0977890426589608e-05 - syst_JES_EtaIntercalibration_Stat236: 0.0001727847722543859 - syst_JES_EtaIntercalibration_Stat237: 3.819172030689375e-12 - syst_JES_EtaIntercalibration_Stat238: 1.5666084418258444e-05 - syst_JES_EtaIntercalibration_Stat239: 1.6432202735786825e-05 - syst_JES_EtaIntercalibration_Stat24: 1.4183703042576718e-06 - syst_JES_EtaIntercalibration_Stat240: 2.4158222963413514e-05 - syst_JES_EtaIntercalibration_Stat241: 0.00010615800346653096 - syst_JES_EtaIntercalibration_Stat242: 1.8105097921579987e-05 - syst_JES_EtaIntercalibration_Stat243: 4.415389260303105e-05 - syst_JES_EtaIntercalibration_Stat244: 3.430939487589369e-05 - syst_JES_EtaIntercalibration_Stat245: 4.0352290601030316e-05 - syst_JES_EtaIntercalibration_Stat25: 3.161531949241538e-08 - syst_JES_EtaIntercalibration_Stat26: 2.0631052978459438e-08 - syst_JES_EtaIntercalibration_Stat27: 0.00017388333075924812 - syst_JES_EtaIntercalibration_Stat28: 4.33713315451578e-08 - syst_JES_EtaIntercalibration_Stat29: 2.538599745922937e-07 - syst_JES_EtaIntercalibration_Stat3: 8.79542307112057e-12 - syst_JES_EtaIntercalibration_Stat30: 2.870512544825401e-07 - syst_JES_EtaIntercalibration_Stat31: 6.803994194588941e-07 - syst_JES_EtaIntercalibration_Stat32: 1.0576181860671647e-09 - syst_JES_EtaIntercalibration_Stat33: 0.00015856846394280766 - syst_JES_EtaIntercalibration_Stat34: 0.00011373842838909228 - syst_JES_EtaIntercalibration_Stat35: 1.068666143002575e-05 - syst_JES_EtaIntercalibration_Stat36: 3.338527931589011e-08 - syst_JES_EtaIntercalibration_Stat37: 4.066250984629453e-07 - syst_JES_EtaIntercalibration_Stat38: 1.449414735907825e-05 - syst_JES_EtaIntercalibration_Stat39: 9.609539818582924e-07 - syst_JES_EtaIntercalibration_Stat4: 5.375368894317859e-11 - syst_JES_EtaIntercalibration_Stat40: 6.425724400181791e-06 - syst_JES_EtaIntercalibration_Stat41: 5.00307099226093e-07 - syst_JES_EtaIntercalibration_Stat42: 5.283052159500226e-11 - syst_JES_EtaIntercalibration_Stat43: 6.236681810065349e-12 - syst_JES_EtaIntercalibration_Stat44: 6.236681810065349e-12 - syst_JES_EtaIntercalibration_Stat45: 1.923661019286716e-07 - syst_JES_EtaIntercalibration_Stat46: 1.483253941407202e-06 - syst_JES_EtaIntercalibration_Stat47: 3.2005454222678986e-06 - syst_JES_EtaIntercalibration_Stat48: 4.478654102238752e-06 - syst_JES_EtaIntercalibration_Stat49: 0.0001590471369971808 - syst_JES_EtaIntercalibration_Stat5: 3.473121732677966e-10 - syst_JES_EtaIntercalibration_Stat50: 9.306790245299396e-06 - syst_JES_EtaIntercalibration_Stat51: 1.749744347040447e-05 - syst_JES_EtaIntercalibration_Stat52: 9.69995525762877e-06 - syst_JES_EtaIntercalibration_Stat53: 1.110603436459207e-05 - syst_JES_EtaIntercalibration_Stat54: 1.4399712045732025e-05 - syst_JES_EtaIntercalibration_Stat55: 0.0001589156754854968 - syst_JES_EtaIntercalibration_Stat56: 1.7749647717594284e-05 - syst_JES_EtaIntercalibration_Stat57: 2.0623991970700045e-05 - syst_JES_EtaIntercalibration_Stat58: 1.3464181399179083e-05 - syst_JES_EtaIntercalibration_Stat59: 2.491676882643494e-06 - syst_JES_EtaIntercalibration_Stat6: 3.4788104565605467e-10 - syst_JES_EtaIntercalibration_Stat60: 7.96004139436473e-07 - syst_JES_EtaIntercalibration_Stat61: 6.171577513083669e-06 - syst_JES_EtaIntercalibration_Stat62: 6.627705838664815e-06 - syst_JES_EtaIntercalibration_Stat63: 8.83922704482694e-07 - syst_JES_EtaIntercalibration_Stat64: 3.949075841257041e-12 - syst_JES_EtaIntercalibration_Stat65: 6.236681810065349e-12 - syst_JES_EtaIntercalibration_Stat66: 6.236681810065349e-12 - syst_JES_EtaIntercalibration_Stat67: 1.802813597546901e-06 - syst_JES_EtaIntercalibration_Stat68: 1.0357586589910798e-05 - syst_JES_EtaIntercalibration_Stat69: 9.226214933546693e-06 - syst_JES_EtaIntercalibration_Stat7: 6.236681810065349e-12 - syst_JES_EtaIntercalibration_Stat70: 0.00016062055682570646 - syst_JES_EtaIntercalibration_Stat71: 7.167582210899292e-05 - syst_JES_EtaIntercalibration_Stat72: 0.00012920477729170854 - syst_JES_EtaIntercalibration_Stat73: 4.7696365427566915e-05 - syst_JES_EtaIntercalibration_Stat74: 2.7995106768862308e-05 - syst_JES_EtaIntercalibration_Stat75: 3.3256335516710194e-05 - syst_JES_EtaIntercalibration_Stat76: 6.645887332032872e-06 - syst_JES_EtaIntercalibration_Stat77: 6.834524197045468e-05 - syst_JES_EtaIntercalibration_Stat78: 2.845544016528298e-05 - syst_JES_EtaIntercalibration_Stat79: 2.2360288459677795e-05 - syst_JES_EtaIntercalibration_Stat8: 3.819172030689375e-12 - syst_JES_EtaIntercalibration_Stat80: 3.204887924327464e-05 - syst_JES_EtaIntercalibration_Stat81: 0.00012373073164087086 - syst_JES_EtaIntercalibration_Stat82: 0.00010304805238334201 - syst_JES_EtaIntercalibration_Stat83: 1.1424048362992867e-05 - syst_JES_EtaIntercalibration_Stat84: 0.0001173190064524926 - syst_JES_EtaIntercalibration_Stat85: 3.991726537477236e-05 - syst_JES_EtaIntercalibration_Stat86: 4.4514234207240665e-07 - syst_JES_EtaIntercalibration_Stat87: 3.819172030689375e-12 - syst_JES_EtaIntercalibration_Stat88: 3.1418139266990337e-07 - syst_JES_EtaIntercalibration_Stat89: 1.3925501454166742e-05 - syst_JES_EtaIntercalibration_Stat9: 1.8048752164277176e-09 - syst_JES_EtaIntercalibration_Stat90: 3.2034067845810654e-05 - syst_JES_EtaIntercalibration_Stat91: 0.00010171512608751956 - syst_JES_EtaIntercalibration_Stat92: 4.2665927858186794e-05 - syst_JES_EtaIntercalibration_Stat93: 6.209702462074973e-05 - syst_JES_EtaIntercalibration_Stat94: 5.6468939249821225e-05 - syst_JES_EtaIntercalibration_Stat95: 3.439406964870543e-05 - syst_JES_EtaIntercalibration_Stat96: 4.1478772884452596e-05 - syst_JES_EtaIntercalibration_Stat97: 4.552281049100549e-05 - syst_JES_EtaIntercalibration_Stat98: 3.263148511407349e-05 - syst_JES_EtaIntercalibration_Stat99: 2.6134624294219345e-05 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.007682793632527167 - syst_JES_Flavour_Comp: 0.03407619807138114 - syst_JES_Flavour_Response: 0.18496850407569393 - syst_JES_Gjet_Generator: 0.18265997782765656 - syst_JES_Gjet_OOC: 0.11927331134834818 - syst_JES_Gjet_Purity: 0.03649534319608463 - syst_JES_Gjet_Stat1: 1.144539173641514e-07 - syst_JES_Gjet_Stat10: 0.011518043790071299 - syst_JES_Gjet_Stat11: 0.016253100473448134 - syst_JES_Gjet_Stat12: 0.012832983626187637 - syst_JES_Gjet_Stat13: 0.003859699858797313 - syst_JES_Gjet_Stat14: 0.001842789936482181 - syst_JES_Gjet_Stat15: 7.2564292871907736e-06 - syst_JES_Gjet_Stat2: 7.136049327183774e-10 - syst_JES_Gjet_Stat3: 1.260320738816084e-07 - syst_JES_Gjet_Stat4: 0.00010312270988138355 - syst_JES_Gjet_Stat5: 5.169946455689846e-06 - syst_JES_Gjet_Stat6: 0.0016533199932257517 - syst_JES_Gjet_Stat7: 0.00203931557146019 - syst_JES_Gjet_Stat8: 0.002015566173560174 - syst_JES_Gjet_Stat9: 0.006672211833417761 - syst_JES_Gjet_Veto: 0.05617753354322348 - syst_JES_Gjet_dPhi: 0.00982389600667678 - syst_JES_LArESZee: 0.21791326256104743 - syst_JES_LArEsmear: 0.01946030511066052 - syst_JES_LAr_JVT: 0.02726752784907352 - syst_JES_MJB_Alpha: 1.96934176794947e-06 - syst_JES_MJB_Asym: 0.002388635109743638 - syst_JES_MJB_Beta: 1.4601188202063938e-21 - syst_JES_MJB_Fragmentation: 0.006682602393529036 + syst_JER_NP7: 3.46401501e-03 + syst_JER_NP8: 5.32999972e-03 + syst_JES_EtaIntercalibration_Modelling: 1.62310412e-01 + syst_JES_EtaIntercalibration_NonClosure: 3.36957475e-02 + syst_JES_EtaIntercalibration_Stat0: 6.23668181e-12 + syst_JES_EtaIntercalibration_Stat1: 6.23668181e-12 + syst_JES_EtaIntercalibration_Stat10: 1.80487522e-09 + syst_JES_EtaIntercalibration_Stat100: 6.57200751e-05 + syst_JES_EtaIntercalibration_Stat101: 6.96958277e-05 + syst_JES_EtaIntercalibration_Stat102: 1.50655173e-04 + syst_JES_EtaIntercalibration_Stat103: 1.21623697e-04 + syst_JES_EtaIntercalibration_Stat104: 9.41074832e-05 + syst_JES_EtaIntercalibration_Stat105: 1.22339894e-04 + syst_JES_EtaIntercalibration_Stat106: 3.50632458e-05 + syst_JES_EtaIntercalibration_Stat107: 4.90776700e-07 + syst_JES_EtaIntercalibration_Stat108: 2.61636504e-06 + syst_JES_EtaIntercalibration_Stat109: 2.46051970e-04 + syst_JES_EtaIntercalibration_Stat11: 1.73897899e-04 + syst_JES_EtaIntercalibration_Stat110: 4.70048210e-04 + syst_JES_EtaIntercalibration_Stat111: 5.16424496e-04 + syst_JES_EtaIntercalibration_Stat112: 8.57459639e-04 + syst_JES_EtaIntercalibration_Stat113: 9.12466287e-04 + syst_JES_EtaIntercalibration_Stat114: 3.71251300e-04 + syst_JES_EtaIntercalibration_Stat115: 3.77419865e-04 + syst_JES_EtaIntercalibration_Stat116: 1.47465524e-04 + syst_JES_EtaIntercalibration_Stat117: 3.91159440e-04 + syst_JES_EtaIntercalibration_Stat118: 1.49195521e-04 + syst_JES_EtaIntercalibration_Stat119: 7.14706392e-04 + syst_JES_EtaIntercalibration_Stat12: 3.81917203e-12 + syst_JES_EtaIntercalibration_Stat120: 7.43676507e-04 + syst_JES_EtaIntercalibration_Stat121: 5.26921007e-04 + syst_JES_EtaIntercalibration_Stat122: 2.49422753e-04 + syst_JES_EtaIntercalibration_Stat123: 6.34836631e-04 + syst_JES_EtaIntercalibration_Stat124: 7.86416022e-04 + syst_JES_EtaIntercalibration_Stat125: 6.61704776e-04 + syst_JES_EtaIntercalibration_Stat126: 4.36212352e-04 + syst_JES_EtaIntercalibration_Stat127: 3.98198485e-05 + syst_JES_EtaIntercalibration_Stat128: 1.99130597e-03 + syst_JES_EtaIntercalibration_Stat129: 4.28225308e-03 + syst_JES_EtaIntercalibration_Stat13: 1.64371609e-05 + syst_JES_EtaIntercalibration_Stat130: 5.57805782e-03 + syst_JES_EtaIntercalibration_Stat131: 4.56289776e-03 + syst_JES_EtaIntercalibration_Stat132: 4.15961068e-03 + syst_JES_EtaIntercalibration_Stat133: 2.79919915e-03 + syst_JES_EtaIntercalibration_Stat134: 3.64654261e-03 + syst_JES_EtaIntercalibration_Stat135: 3.04129097e-03 + syst_JES_EtaIntercalibration_Stat136: 2.25907769e-03 + syst_JES_EtaIntercalibration_Stat137: 2.32766557e-03 + syst_JES_EtaIntercalibration_Stat138: 2.21211573e-03 + syst_JES_EtaIntercalibration_Stat139: 2.90927929e-03 + syst_JES_EtaIntercalibration_Stat14: 1.69740966e-05 + syst_JES_EtaIntercalibration_Stat140: 3.43103144e-03 + syst_JES_EtaIntercalibration_Stat141: 3.49248375e-03 + syst_JES_EtaIntercalibration_Stat142: 4.44575337e-03 + syst_JES_EtaIntercalibration_Stat143: 2.69809762e-03 + syst_JES_EtaIntercalibration_Stat144: 4.17524179e-03 + syst_JES_EtaIntercalibration_Stat145: 9.33411521e-04 + syst_JES_EtaIntercalibration_Stat146: 1.35755399e-03 + syst_JES_EtaIntercalibration_Stat147: 1.92344242e-03 + syst_JES_EtaIntercalibration_Stat148: 1.53104339e-03 + syst_JES_EtaIntercalibration_Stat149: 6.49534315e-04 + syst_JES_EtaIntercalibration_Stat15: 1.80525953e-09 + syst_JES_EtaIntercalibration_Stat150: 1.53727250e-03 + syst_JES_EtaIntercalibration_Stat151: 2.55779021e-03 + syst_JES_EtaIntercalibration_Stat152: 1.40915985e-03 + syst_JES_EtaIntercalibration_Stat153: 1.25227273e-03 + syst_JES_EtaIntercalibration_Stat154: 1.68581182e-03 + syst_JES_EtaIntercalibration_Stat155: 1.38652603e-03 + syst_JES_EtaIntercalibration_Stat156: 7.84770692e-04 + syst_JES_EtaIntercalibration_Stat157: 3.04637764e-03 + syst_JES_EtaIntercalibration_Stat158: 2.45584423e-03 + syst_JES_EtaIntercalibration_Stat159: 2.14048522e-03 + syst_JES_EtaIntercalibration_Stat16: 4.13452609e-11 + syst_JES_EtaIntercalibration_Stat160: 6.14263467e-06 + syst_JES_EtaIntercalibration_Stat161: 1.82371098e-03 + syst_JES_EtaIntercalibration_Stat162: 1.73369434e-03 + syst_JES_EtaIntercalibration_Stat163: 1.01016786e-03 + syst_JES_EtaIntercalibration_Stat164: 1.67420406e-03 + syst_JES_EtaIntercalibration_Stat165: 1.61942677e-03 + syst_JES_EtaIntercalibration_Stat166: 2.16242520e-03 + syst_JES_EtaIntercalibration_Stat167: 2.50163606e-03 + syst_JES_EtaIntercalibration_Stat168: 1.85610449e-03 + syst_JES_EtaIntercalibration_Stat169: 1.46471671e-03 + syst_JES_EtaIntercalibration_Stat17: 1.45843274e-05 + syst_JES_EtaIntercalibration_Stat170: 2.06158449e-03 + syst_JES_EtaIntercalibration_Stat171: 1.97819278e-03 + syst_JES_EtaIntercalibration_Stat172: 1.30935735e-03 + syst_JES_EtaIntercalibration_Stat173: 4.57789938e-04 + syst_JES_EtaIntercalibration_Stat174: 1.05479766e-03 + syst_JES_EtaIntercalibration_Stat175: 9.32837841e-04 + syst_JES_EtaIntercalibration_Stat176: 6.26206067e-04 + syst_JES_EtaIntercalibration_Stat177: 1.42051723e-03 + syst_JES_EtaIntercalibration_Stat178: 1.97837132e-03 + syst_JES_EtaIntercalibration_Stat179: 3.54591229e-04 + syst_JES_EtaIntercalibration_Stat18: 7.95748874e-12 + syst_JES_EtaIntercalibration_Stat180: 5.50418269e-04 + syst_JES_EtaIntercalibration_Stat181: 8.50725742e-04 + syst_JES_EtaIntercalibration_Stat182: 1.01290889e-03 + syst_JES_EtaIntercalibration_Stat183: 5.78716684e-04 + syst_JES_EtaIntercalibration_Stat184: 1.29776231e-05 + syst_JES_EtaIntercalibration_Stat185: 2.27045612e-03 + syst_JES_EtaIntercalibration_Stat186: 1.58277455e-03 + syst_JES_EtaIntercalibration_Stat187: 1.96395487e-03 + syst_JES_EtaIntercalibration_Stat188: 6.19034959e-04 + syst_JES_EtaIntercalibration_Stat189: 1.25664106e-03 + syst_JES_EtaIntercalibration_Stat19: 2.51690148e-11 + syst_JES_EtaIntercalibration_Stat190: 1.64779058e-03 + syst_JES_EtaIntercalibration_Stat191: 1.10517070e-03 + syst_JES_EtaIntercalibration_Stat192: 9.63327259e-04 + syst_JES_EtaIntercalibration_Stat193: 1.11415307e-03 + syst_JES_EtaIntercalibration_Stat194: 3.34640983e-04 + syst_JES_EtaIntercalibration_Stat195: 6.76950907e-04 + syst_JES_EtaIntercalibration_Stat196: 1.36831476e-03 + syst_JES_EtaIntercalibration_Stat197: 1.00301969e-04 + syst_JES_EtaIntercalibration_Stat198: 1.06613832e-04 + syst_JES_EtaIntercalibration_Stat199: 1.15723236e-03 + syst_JES_EtaIntercalibration_Stat2: 8.79542307e-12 + syst_JES_EtaIntercalibration_Stat20: 6.23668181e-12 + syst_JES_EtaIntercalibration_Stat200: 9.57143316e-04 + syst_JES_EtaIntercalibration_Stat201: 3.31396679e-04 + syst_JES_EtaIntercalibration_Stat202: 7.35061907e-04 + syst_JES_EtaIntercalibration_Stat203: 1.04303569e-04 + syst_JES_EtaIntercalibration_Stat204: 1.14700258e-04 + syst_JES_EtaIntercalibration_Stat205: 1.63814412e-04 + syst_JES_EtaIntercalibration_Stat206: 4.26398471e-04 + syst_JES_EtaIntercalibration_Stat207: 1.83947712e-04 + syst_JES_EtaIntercalibration_Stat208: 7.33640428e-04 + syst_JES_EtaIntercalibration_Stat209: 7.10049313e-04 + syst_JES_EtaIntercalibration_Stat21: 6.23668181e-12 + syst_JES_EtaIntercalibration_Stat210: 1.10578740e-04 + syst_JES_EtaIntercalibration_Stat211: 4.44378900e-04 + syst_JES_EtaIntercalibration_Stat212: 1.36624790e-05 + syst_JES_EtaIntercalibration_Stat213: 3.10897140e-05 + syst_JES_EtaIntercalibration_Stat214: 1.13050956e-05 + syst_JES_EtaIntercalibration_Stat215: 6.94599647e-05 + syst_JES_EtaIntercalibration_Stat216: 9.51904796e-05 + syst_JES_EtaIntercalibration_Stat217: 5.39440495e-05 + syst_JES_EtaIntercalibration_Stat218: 6.36279478e-05 + syst_JES_EtaIntercalibration_Stat219: 1.08195284e-04 + syst_JES_EtaIntercalibration_Stat22: 6.23668181e-12 + syst_JES_EtaIntercalibration_Stat220: 8.61711163e-05 + syst_JES_EtaIntercalibration_Stat221: 6.84535942e-05 + syst_JES_EtaIntercalibration_Stat222: 1.47051241e-06 + syst_JES_EtaIntercalibration_Stat223: 7.12184234e-05 + syst_JES_EtaIntercalibration_Stat224: 1.81308105e-05 + syst_JES_EtaIntercalibration_Stat225: 1.36676282e-05 + syst_JES_EtaIntercalibration_Stat226: 1.70170593e-05 + syst_JES_EtaIntercalibration_Stat227: 1.65617668e-05 + syst_JES_EtaIntercalibration_Stat228: 2.80396812e-05 + syst_JES_EtaIntercalibration_Stat229: 4.15771199e-05 + syst_JES_EtaIntercalibration_Stat23: 8.79542307e-12 + syst_JES_EtaIntercalibration_Stat230: 4.91913659e-05 + syst_JES_EtaIntercalibration_Stat231: 1.35532828e-06 + syst_JES_EtaIntercalibration_Stat232: 2.22088012e-05 + syst_JES_EtaIntercalibration_Stat233: 6.60430973e-06 + syst_JES_EtaIntercalibration_Stat234: 2.79959589e-05 + syst_JES_EtaIntercalibration_Stat235: 2.09778904e-05 + syst_JES_EtaIntercalibration_Stat236: 1.72784772e-04 + syst_JES_EtaIntercalibration_Stat237: 3.81917203e-12 + syst_JES_EtaIntercalibration_Stat238: 1.56660844e-05 + syst_JES_EtaIntercalibration_Stat239: 1.64322027e-05 + syst_JES_EtaIntercalibration_Stat24: 1.41837030e-06 + syst_JES_EtaIntercalibration_Stat240: 2.41582230e-05 + syst_JES_EtaIntercalibration_Stat241: 1.06158003e-04 + syst_JES_EtaIntercalibration_Stat242: 1.81050979e-05 + syst_JES_EtaIntercalibration_Stat243: 4.41538926e-05 + syst_JES_EtaIntercalibration_Stat244: 3.43093949e-05 + syst_JES_EtaIntercalibration_Stat245: 4.03522906e-05 + syst_JES_EtaIntercalibration_Stat25: 3.16153195e-08 + syst_JES_EtaIntercalibration_Stat26: 2.06310530e-08 + syst_JES_EtaIntercalibration_Stat27: 1.73883331e-04 + syst_JES_EtaIntercalibration_Stat28: 4.33713315e-08 + syst_JES_EtaIntercalibration_Stat29: 2.53859975e-07 + syst_JES_EtaIntercalibration_Stat3: 8.79542307e-12 + syst_JES_EtaIntercalibration_Stat30: 2.87051254e-07 + syst_JES_EtaIntercalibration_Stat31: 6.80399419e-07 + syst_JES_EtaIntercalibration_Stat32: 1.05761819e-09 + syst_JES_EtaIntercalibration_Stat33: 1.58568464e-04 + syst_JES_EtaIntercalibration_Stat34: 1.13738428e-04 + syst_JES_EtaIntercalibration_Stat35: 1.06866614e-05 + syst_JES_EtaIntercalibration_Stat36: 3.33852793e-08 + syst_JES_EtaIntercalibration_Stat37: 4.06625098e-07 + syst_JES_EtaIntercalibration_Stat38: 1.44941474e-05 + syst_JES_EtaIntercalibration_Stat39: 9.60953982e-07 + syst_JES_EtaIntercalibration_Stat4: 5.37536889e-11 + syst_JES_EtaIntercalibration_Stat40: 6.42572440e-06 + syst_JES_EtaIntercalibration_Stat41: 5.00307099e-07 + syst_JES_EtaIntercalibration_Stat42: 5.28305216e-11 + syst_JES_EtaIntercalibration_Stat43: 6.23668181e-12 + syst_JES_EtaIntercalibration_Stat44: 6.23668181e-12 + syst_JES_EtaIntercalibration_Stat45: 1.92366102e-07 + syst_JES_EtaIntercalibration_Stat46: 1.48325394e-06 + syst_JES_EtaIntercalibration_Stat47: 3.20054542e-06 + syst_JES_EtaIntercalibration_Stat48: 4.47865410e-06 + syst_JES_EtaIntercalibration_Stat49: 1.59047137e-04 + syst_JES_EtaIntercalibration_Stat5: 3.47312173e-10 + syst_JES_EtaIntercalibration_Stat50: 9.30679025e-06 + syst_JES_EtaIntercalibration_Stat51: 1.74974435e-05 + syst_JES_EtaIntercalibration_Stat52: 9.69995526e-06 + syst_JES_EtaIntercalibration_Stat53: 1.11060344e-05 + syst_JES_EtaIntercalibration_Stat54: 1.43997120e-05 + syst_JES_EtaIntercalibration_Stat55: 1.58915675e-04 + syst_JES_EtaIntercalibration_Stat56: 1.77496477e-05 + syst_JES_EtaIntercalibration_Stat57: 2.06239920e-05 + syst_JES_EtaIntercalibration_Stat58: 1.34641814e-05 + syst_JES_EtaIntercalibration_Stat59: 2.49167688e-06 + syst_JES_EtaIntercalibration_Stat6: 3.47881046e-10 + syst_JES_EtaIntercalibration_Stat60: 7.96004139e-07 + syst_JES_EtaIntercalibration_Stat61: 6.17157751e-06 + syst_JES_EtaIntercalibration_Stat62: 6.62770584e-06 + syst_JES_EtaIntercalibration_Stat63: 8.83922704e-07 + syst_JES_EtaIntercalibration_Stat64: 3.94907584e-12 + syst_JES_EtaIntercalibration_Stat65: 6.23668181e-12 + syst_JES_EtaIntercalibration_Stat66: 6.23668181e-12 + syst_JES_EtaIntercalibration_Stat67: 1.80281360e-06 + syst_JES_EtaIntercalibration_Stat68: 1.03575866e-05 + syst_JES_EtaIntercalibration_Stat69: 9.22621493e-06 + syst_JES_EtaIntercalibration_Stat7: 6.23668181e-12 + syst_JES_EtaIntercalibration_Stat70: 1.60620557e-04 + syst_JES_EtaIntercalibration_Stat71: 7.16758221e-05 + syst_JES_EtaIntercalibration_Stat72: 1.29204777e-04 + syst_JES_EtaIntercalibration_Stat73: 4.76963654e-05 + syst_JES_EtaIntercalibration_Stat74: 2.79951068e-05 + syst_JES_EtaIntercalibration_Stat75: 3.32563355e-05 + syst_JES_EtaIntercalibration_Stat76: 6.64588733e-06 + syst_JES_EtaIntercalibration_Stat77: 6.83452420e-05 + syst_JES_EtaIntercalibration_Stat78: 2.84554402e-05 + syst_JES_EtaIntercalibration_Stat79: 2.23602885e-05 + syst_JES_EtaIntercalibration_Stat8: 3.81917203e-12 + syst_JES_EtaIntercalibration_Stat80: 3.20488792e-05 + syst_JES_EtaIntercalibration_Stat81: 1.23730732e-04 + syst_JES_EtaIntercalibration_Stat82: 1.03048052e-04 + syst_JES_EtaIntercalibration_Stat83: 1.14240484e-05 + syst_JES_EtaIntercalibration_Stat84: 1.17319006e-04 + syst_JES_EtaIntercalibration_Stat85: 3.99172654e-05 + syst_JES_EtaIntercalibration_Stat86: 4.45142342e-07 + syst_JES_EtaIntercalibration_Stat87: 3.81917203e-12 + syst_JES_EtaIntercalibration_Stat88: 3.14181393e-07 + syst_JES_EtaIntercalibration_Stat89: 1.39255015e-05 + syst_JES_EtaIntercalibration_Stat9: 1.80487522e-09 + syst_JES_EtaIntercalibration_Stat90: 3.20340678e-05 + syst_JES_EtaIntercalibration_Stat91: 1.01715126e-04 + syst_JES_EtaIntercalibration_Stat92: 4.26659279e-05 + syst_JES_EtaIntercalibration_Stat93: 6.20970246e-05 + syst_JES_EtaIntercalibration_Stat94: 5.64689392e-05 + syst_JES_EtaIntercalibration_Stat95: 3.43940696e-05 + syst_JES_EtaIntercalibration_Stat96: 4.14787729e-05 + syst_JES_EtaIntercalibration_Stat97: 4.55228105e-05 + syst_JES_EtaIntercalibration_Stat98: 3.26314851e-05 + syst_JES_EtaIntercalibration_Stat99: 2.61346243e-05 + syst_JES_EtaIntercalibration_TotalStat_MJB: 7.68279363e-03 + syst_JES_Flavour_Comp: 3.40761981e-02 + syst_JES_Flavour_Response: 1.84968504e-01 + syst_JES_Gjet_Generator: 1.82659978e-01 + syst_JES_Gjet_OOC: 1.19273311e-01 + syst_JES_Gjet_Purity: 3.64953432e-02 + syst_JES_Gjet_Stat1: 1.14453917e-07 + syst_JES_Gjet_Stat10: 1.15180438e-02 + syst_JES_Gjet_Stat11: 1.62531005e-02 + syst_JES_Gjet_Stat12: 1.28329836e-02 + syst_JES_Gjet_Stat13: 3.85969986e-03 + syst_JES_Gjet_Stat14: 1.84278994e-03 + syst_JES_Gjet_Stat15: 7.25642929e-06 + syst_JES_Gjet_Stat2: 7.13604933e-10 + syst_JES_Gjet_Stat3: 1.26032074e-07 + syst_JES_Gjet_Stat4: 1.03122710e-04 + syst_JES_Gjet_Stat5: 5.16994646e-06 + syst_JES_Gjet_Stat6: 1.65331999e-03 + syst_JES_Gjet_Stat7: 2.03931557e-03 + syst_JES_Gjet_Stat8: 2.01556617e-03 + syst_JES_Gjet_Stat9: 6.67221183e-03 + syst_JES_Gjet_Veto: 5.61775335e-02 + syst_JES_Gjet_dPhi: 9.82389601e-03 + syst_JES_LArESZee: 2.17913263e-01 + syst_JES_LArEsmear: 1.94603051e-02 + syst_JES_LAr_JVT: 2.72675278e-02 + syst_JES_MJB_Alpha: 1.96934177e-06 + syst_JES_MJB_Asym: 2.38863511e-03 + syst_JES_MJB_Beta: 1.46011882e-21 + syst_JES_MJB_Fragmentation: 6.68260239e-03 syst_JES_MJB_Stat1: 0.0 syst_JES_MJB_Stat10: 0.0 syst_JES_MJB_Stat11: 0.0 @@ -22876,6125 +22876,6125 @@ bins: syst_JES_MJB_Stat13: 0.0 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 - syst_JES_MJB_Stat16: 7.380268488135945e-30 - syst_JES_MJB_Stat2: 0.0010896331630415805 - syst_JES_MJB_Stat3: 3.464015012597376e-05 - syst_JES_MJB_Stat4: 1.1961542877070666e-05 - syst_JES_MJB_Stat5: 0.0001034774424693614 + syst_JES_MJB_Stat16: 7.38026849e-30 + syst_JES_MJB_Stat2: 1.08963316e-03 + syst_JES_MJB_Stat3: 3.46401501e-05 + syst_JES_MJB_Stat4: 1.19615429e-05 + syst_JES_MJB_Stat5: 1.03477442e-04 syst_JES_MJB_Stat6: 0.0 syst_JES_MJB_Stat7: 0.0 syst_JES_MJB_Stat8: 0.0 - syst_JES_MJB_Stat9: 5.587595905217198e-22 - syst_JES_MJB_Threshold: 0.003064592662573609 - syst_JES_Pileup_MuOffset: 0.005121259220152793 - syst_JES_Pileup_NPVOffset: 0.012759908267695345 - syst_JES_Pileup_Pt_term: 0.03937574475486146 - syst_JES_Pileup_Rho_topology: 0.061990675105212396 - syst_JES_PunchThrough_MC15: 0.0009327506030552861 - syst_JES_SingleParticle_HighPt: 1.7045516067282912e-05 - syst_JES_Zjet_MC: 0.1679059558205128 - syst_JES_Zjet_MuScale: 0.011644366277303371 - syst_JES_Zjet_MuSmearID: 0.0010518950708126738 - syst_JES_Zjet_MuSmearMS: 0.026709831055250047 - syst_JES_Zjet_OOC: 0.06036728335779241 - syst_JES_Zjet_Stat1: 0.0009187375740656306 - syst_JES_Zjet_Stat10: 0.011418908912413655 - syst_JES_Zjet_Stat11: 0.022211715377250807 - syst_JES_Zjet_Stat12: 0.04290209583167238 - syst_JES_Zjet_Stat13: 0.00755656223093544 + syst_JES_MJB_Stat9: 5.58759591e-22 + syst_JES_MJB_Threshold: 3.06459266e-03 + syst_JES_Pileup_MuOffset: 5.12125922e-03 + syst_JES_Pileup_NPVOffset: 1.27599083e-02 + syst_JES_Pileup_Pt_term: 3.93757448e-02 + syst_JES_Pileup_Rho_topology: 6.19906751e-02 + syst_JES_PunchThrough_MC15: 9.32750603e-04 + syst_JES_SingleParticle_HighPt: 1.70455161e-05 + syst_JES_Zjet_MC: 1.67905956e-01 + syst_JES_Zjet_MuScale: 1.16443663e-02 + syst_JES_Zjet_MuSmearID: 1.05189507e-03 + syst_JES_Zjet_MuSmearMS: 2.67098311e-02 + syst_JES_Zjet_OOC: 6.03672834e-02 + syst_JES_Zjet_Stat1: 9.18737574e-04 + syst_JES_Zjet_Stat10: 1.14189089e-02 + syst_JES_Zjet_Stat11: 2.22117154e-02 + syst_JES_Zjet_Stat12: 4.29020958e-02 + syst_JES_Zjet_Stat13: 7.55656223e-03 syst_JES_Zjet_Stat2: 0.0 - syst_JES_Zjet_Stat3: 8.063561241950485e-10 - syst_JES_Zjet_Stat4: 1.0200913231176904e-08 - syst_JES_Zjet_Stat5: 0.0001105481427930836 - syst_JES_Zjet_Stat6: 0.0008065718752845279 - syst_JES_Zjet_Stat7: 0.0009513316614094162 - syst_JES_Zjet_Stat8: 0.0010630399239915686 - syst_JES_Zjet_Stat9: 0.003795713766869151 - syst_JES_Zjet_Veto: 0.011769340370216166 - syst_JES_Zjet_dPhi: 0.011550080724826125 + syst_JES_Zjet_Stat3: 8.06356124e-10 + syst_JES_Zjet_Stat4: 1.02009132e-08 + syst_JES_Zjet_Stat5: 1.10548143e-04 + syst_JES_Zjet_Stat6: 8.06571875e-04 + syst_JES_Zjet_Stat7: 9.51331661e-04 + syst_JES_Zjet_Stat8: 1.06303992e-03 + syst_JES_Zjet_Stat9: 3.79571377e-03 + syst_JES_Zjet_Veto: 1.17693404e-02 + syst_JES_Zjet_dPhi: 1.15500807e-02 syst_PRW: 0.0 - syst_Unfolding_bias: 2.104e-07 - syst_cleaning: 0.07778640176791828 + syst_Unfolding_bias: 2.10400000e-07 + syst_cleaning: 7.77864018e-02 syst_lumi: 0.1885 - stat: 0.04695 - syst_JER_CROSS_CALIB_FORWARD: 0.0002197 + syst_JER_CROSS_CALIB_FORWARD: 2.19700000e-04 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.019659564466182864 - syst_JER_NP1: 0.0037847499256886182 - syst_JER_NP2: 4.566551954155345e-20 - syst_JER_NP3: 0.0039229372605230385 - syst_JER_NP4: 7.025198075499366e-06 + syst_JER_NP0: 1.96595645e-02 + syst_JER_NP1: 3.78474993e-03 + syst_JER_NP2: 4.56655195e-20 + syst_JER_NP3: 3.92293726e-03 + syst_JER_NP4: 7.02519808e-06 syst_JER_NP5: 0.0 syst_JER_NP6: 0.0 - syst_JER_NP7: 0.00023798378095996376 - syst_JER_NP8: 0.0027531263592505155 - syst_JES_EtaIntercalibration_Modelling: 0.09168208808158768 - syst_JES_EtaIntercalibration_NonClosure: 0.014730108621459653 - syst_JES_EtaIntercalibration_Stat0: 3.490279071936799e-13 - syst_JES_EtaIntercalibration_Stat1: 3.490279071936799e-13 - syst_JES_EtaIntercalibration_Stat10: 9.861502456563098e-11 - syst_JES_EtaIntercalibration_Stat100: 3.919905483554418e-05 - syst_JES_EtaIntercalibration_Stat101: 6.2555053153202585e-06 - syst_JES_EtaIntercalibration_Stat102: 1.5038009575738408e-06 - syst_JES_EtaIntercalibration_Stat103: 1.9037524313838707e-06 - syst_JES_EtaIntercalibration_Stat104: 1.5578643867487314e-05 - syst_JES_EtaIntercalibration_Stat105: 1.8662778648422102e-05 - syst_JES_EtaIntercalibration_Stat106: 1.4829624295645524e-05 - syst_JES_EtaIntercalibration_Stat107: 6.21026894765206e-08 - syst_JES_EtaIntercalibration_Stat108: 4.4526690871880436e-07 - syst_JES_EtaIntercalibration_Stat109: 2.458162083752819e-05 - syst_JES_EtaIntercalibration_Stat11: 9.356538452995436e-05 - syst_JES_EtaIntercalibration_Stat110: 0.0001386411367524084 - syst_JES_EtaIntercalibration_Stat111: 0.00015721904305776701 - syst_JES_EtaIntercalibration_Stat112: 0.00022608890366568194 - syst_JES_EtaIntercalibration_Stat113: 0.0004536001448886453 - syst_JES_EtaIntercalibration_Stat114: 3.375348460529668e-05 - syst_JES_EtaIntercalibration_Stat115: 0.00010836611047739972 - syst_JES_EtaIntercalibration_Stat116: 1.709075548359405e-05 - syst_JES_EtaIntercalibration_Stat117: 0.0001231287423796735 - syst_JES_EtaIntercalibration_Stat118: 3.8805934710427994e-05 - syst_JES_EtaIntercalibration_Stat119: 0.00012720106603326877 - syst_JES_EtaIntercalibration_Stat12: 2.1373506965399947e-13 - syst_JES_EtaIntercalibration_Stat120: 0.00010099880840881244 - syst_JES_EtaIntercalibration_Stat121: 0.00018429034341223635 - syst_JES_EtaIntercalibration_Stat122: 1.2489393500086384e-05 - syst_JES_EtaIntercalibration_Stat123: 0.00025636880987163783 - syst_JES_EtaIntercalibration_Stat124: 0.0001660318013965999 - syst_JES_EtaIntercalibration_Stat125: 0.00023582421588971736 - syst_JES_EtaIntercalibration_Stat126: 0.00010622713071527443 - syst_JES_EtaIntercalibration_Stat127: 1.9026578149289945e-05 - syst_JES_EtaIntercalibration_Stat128: 0.0008673913480517317 - syst_JES_EtaIntercalibration_Stat129: 0.0012804689570622165 - syst_JES_EtaIntercalibration_Stat13: 8.842985326797882e-06 - syst_JES_EtaIntercalibration_Stat130: 0.0017778686678154828 - syst_JES_EtaIntercalibration_Stat131: 0.0014277062959516568 - syst_JES_EtaIntercalibration_Stat132: 0.0014848009184735844 - syst_JES_EtaIntercalibration_Stat133: 0.0012176969532687514 - syst_JES_EtaIntercalibration_Stat134: 0.0012730746826089974 - syst_JES_EtaIntercalibration_Stat135: 0.0007779336909403011 - syst_JES_EtaIntercalibration_Stat136: 0.0007587239072943465 - syst_JES_EtaIntercalibration_Stat137: 0.0005910945102096619 - syst_JES_EtaIntercalibration_Stat138: 0.0008260109139714801 - syst_JES_EtaIntercalibration_Stat139: 0.0010359185344417775 - syst_JES_EtaIntercalibration_Stat14: 9.131371786258099e-06 - syst_JES_EtaIntercalibration_Stat140: 0.0012221900455739278 - syst_JES_EtaIntercalibration_Stat141: 0.0015436280210918692 - syst_JES_EtaIntercalibration_Stat142: 0.0017376630858713666 - syst_JES_EtaIntercalibration_Stat143: 0.0010907432603504824 - syst_JES_EtaIntercalibration_Stat144: 0.0013761017404247406 - syst_JES_EtaIntercalibration_Stat145: 0.0005205975845842929 - syst_JES_EtaIntercalibration_Stat146: 0.0008768710324215301 - syst_JES_EtaIntercalibration_Stat147: 0.0010187922850120135 - syst_JES_EtaIntercalibration_Stat148: 0.0007991869363296675 - syst_JES_EtaIntercalibration_Stat149: 0.0003569846370293825 - syst_JES_EtaIntercalibration_Stat15: 9.863853633686989e-11 - syst_JES_EtaIntercalibration_Stat150: 0.0006607451511740362 - syst_JES_EtaIntercalibration_Stat151: 0.0013048920290583432 - syst_JES_EtaIntercalibration_Stat152: 0.0006500403569587046 - syst_JES_EtaIntercalibration_Stat153: 0.0005707107410939451 - syst_JES_EtaIntercalibration_Stat154: 0.000636784563255109 - syst_JES_EtaIntercalibration_Stat155: 0.000628668739296579 - syst_JES_EtaIntercalibration_Stat156: 0.0003159387097207305 - syst_JES_EtaIntercalibration_Stat157: 0.0011360986400836856 - syst_JES_EtaIntercalibration_Stat158: 0.0011281734042247228 - syst_JES_EtaIntercalibration_Stat159: 0.0012501585504434028 - syst_JES_EtaIntercalibration_Stat16: 1.977269842484834e-12 - syst_JES_EtaIntercalibration_Stat160: 2.6204582018227272e-05 - syst_JES_EtaIntercalibration_Stat161: 0.0008903138887318056 - syst_JES_EtaIntercalibration_Stat162: 0.000759675463602715 - syst_JES_EtaIntercalibration_Stat163: 0.0006738143040185479 - syst_JES_EtaIntercalibration_Stat164: 0.0011507997073734206 - syst_JES_EtaIntercalibration_Stat165: 0.0010170306423603961 - syst_JES_EtaIntercalibration_Stat166: 0.0010276841185403228 - syst_JES_EtaIntercalibration_Stat167: 0.001137284359648017 - syst_JES_EtaIntercalibration_Stat168: 0.0012769332040087297 - syst_JES_EtaIntercalibration_Stat169: 0.001069976904984402 - syst_JES_EtaIntercalibration_Stat17: 7.846215276232105e-06 - syst_JES_EtaIntercalibration_Stat170: 0.0010854373346720666 - syst_JES_EtaIntercalibration_Stat171: 0.0010241514487613636 - syst_JES_EtaIntercalibration_Stat172: 0.0005591477868148992 - syst_JES_EtaIntercalibration_Stat173: 0.00023795060411774537 - syst_JES_EtaIntercalibration_Stat174: 0.0005486772548593572 - syst_JES_EtaIntercalibration_Stat175: 0.0005070084022972401 - syst_JES_EtaIntercalibration_Stat176: 0.00025220595884118205 - syst_JES_EtaIntercalibration_Stat177: 0.0014112048779323292 - syst_JES_EtaIntercalibration_Stat178: 0.001147955687298077 - syst_JES_EtaIntercalibration_Stat179: 0.00019077984609229562 - syst_JES_EtaIntercalibration_Stat18: 4.453306271749115e-13 - syst_JES_EtaIntercalibration_Stat180: 0.0004350707491891405 - syst_JES_EtaIntercalibration_Stat181: 0.0006701564829761777 - syst_JES_EtaIntercalibration_Stat182: 0.0013970183850973473 - syst_JES_EtaIntercalibration_Stat183: 0.0007563332605901978 - syst_JES_EtaIntercalibration_Stat184: 6.976555458283981e-06 - syst_JES_EtaIntercalibration_Stat185: 0.001537464796344944 - syst_JES_EtaIntercalibration_Stat186: 0.001079117633763808 - syst_JES_EtaIntercalibration_Stat187: 0.0018542560988169892 - syst_JES_EtaIntercalibration_Stat188: 0.0005664672166154014 - syst_JES_EtaIntercalibration_Stat189: 0.0005496447852931928 - syst_JES_EtaIntercalibration_Stat19: 1.1821330179277625e-12 - syst_JES_EtaIntercalibration_Stat190: 0.0008943414123672235 - syst_JES_EtaIntercalibration_Stat191: 0.0007489424525288977 - syst_JES_EtaIntercalibration_Stat192: 0.0009506802972082676 - syst_JES_EtaIntercalibration_Stat193: 0.0016934853173263711 - syst_JES_EtaIntercalibration_Stat194: 0.00018004668721740148 - syst_JES_EtaIntercalibration_Stat195: 0.00022785232125216545 - syst_JES_EtaIntercalibration_Stat196: 0.0007306575446130697 - syst_JES_EtaIntercalibration_Stat197: 0.00041710898225164126 - syst_JES_EtaIntercalibration_Stat198: 0.0004858699491633538 - syst_JES_EtaIntercalibration_Stat199: 0.0006189720571237444 - syst_JES_EtaIntercalibration_Stat2: 4.921509829310514e-13 - syst_JES_EtaIntercalibration_Stat20: 3.490279071936799e-13 - syst_JES_EtaIntercalibration_Stat200: 0.0005458896068627337 - syst_JES_EtaIntercalibration_Stat201: 0.000298870323049981 - syst_JES_EtaIntercalibration_Stat202: 0.0004614189644997267 - syst_JES_EtaIntercalibration_Stat203: 6.124674176435837e-05 - syst_JES_EtaIntercalibration_Stat204: 0.00043298915468519526 - syst_JES_EtaIntercalibration_Stat205: 8.151042968847605e-05 - syst_JES_EtaIntercalibration_Stat206: 0.0005033797654224392 - syst_JES_EtaIntercalibration_Stat207: 0.00034539897086557746 - syst_JES_EtaIntercalibration_Stat208: 0.0003126951550632021 - syst_JES_EtaIntercalibration_Stat209: 0.00030747539738977493 - syst_JES_EtaIntercalibration_Stat21: 3.490279071936799e-13 - syst_JES_EtaIntercalibration_Stat210: 4.820638201265472e-05 - syst_JES_EtaIntercalibration_Stat211: 0.00019674842211057244 - syst_JES_EtaIntercalibration_Stat212: 2.4488009310681014e-05 - syst_JES_EtaIntercalibration_Stat213: 7.927894656685343e-05 - syst_JES_EtaIntercalibration_Stat214: 6.082096411336699e-06 - syst_JES_EtaIntercalibration_Stat215: 0.00014478310359983308 - syst_JES_EtaIntercalibration_Stat216: 6.415809906005633e-05 - syst_JES_EtaIntercalibration_Stat217: 0.00011713948128193159 - syst_JES_EtaIntercalibration_Stat218: 0.0001038602703010155 - syst_JES_EtaIntercalibration_Stat219: 6.262120467541326e-05 - syst_JES_EtaIntercalibration_Stat22: 3.490279071936799e-13 - syst_JES_EtaIntercalibration_Stat220: 5.079985057802828e-05 - syst_JES_EtaIntercalibration_Stat221: 5.524770040463223e-05 - syst_JES_EtaIntercalibration_Stat222: 7.209661479378063e-05 - syst_JES_EtaIntercalibration_Stat223: 3.871444137205133e-05 - syst_JES_EtaIntercalibration_Stat224: 6.581383194283706e-06 - syst_JES_EtaIntercalibration_Stat225: 1.1759602289193286e-05 - syst_JES_EtaIntercalibration_Stat226: 1.3334620607651349e-05 - syst_JES_EtaIntercalibration_Stat227: 1.0367726402157803e-05 - syst_JES_EtaIntercalibration_Stat228: 2.9256320257339266e-05 - syst_JES_EtaIntercalibration_Stat229: 1.7395551155396023e-05 - syst_JES_EtaIntercalibration_Stat23: 4.921509829310514e-13 - syst_JES_EtaIntercalibration_Stat230: 9.526162960499888e-06 - syst_JES_EtaIntercalibration_Stat231: 2.3986902679593024e-05 - syst_JES_EtaIntercalibration_Stat232: 2.361150949748872e-05 - syst_JES_EtaIntercalibration_Stat233: 6.667529583736395e-06 - syst_JES_EtaIntercalibration_Stat234: 1.5830357766014004e-05 - syst_JES_EtaIntercalibration_Stat235: 2.0553410300969518e-05 - syst_JES_EtaIntercalibration_Stat236: 9.298839800211637e-05 - syst_JES_EtaIntercalibration_Stat237: 2.1373506965399947e-13 - syst_JES_EtaIntercalibration_Stat238: 8.427729513338692e-06 - syst_JES_EtaIntercalibration_Stat239: 5.99364436298985e-06 - syst_JES_EtaIntercalibration_Stat24: 1.5043093722702123e-07 - syst_JES_EtaIntercalibration_Stat240: 1.2998794251775817e-05 - syst_JES_EtaIntercalibration_Stat241: 5.676091109205348e-05 - syst_JES_EtaIntercalibration_Stat242: 8.073469328609603e-06 - syst_JES_EtaIntercalibration_Stat243: 2.3592875381139958e-05 - syst_JES_EtaIntercalibration_Stat244: 1.8417031031086416e-05 - syst_JES_EtaIntercalibration_Stat245: 2.1576734507334517e-05 - syst_JES_EtaIntercalibration_Stat25: 1.895868906088973e-09 - syst_JES_EtaIntercalibration_Stat26: 1.2354124847596449e-09 - syst_JES_EtaIntercalibration_Stat27: 9.356449813713148e-05 - syst_JES_EtaIntercalibration_Stat28: 2.620543074917869e-09 - syst_JES_EtaIntercalibration_Stat29: 1.8709168019984213e-08 - syst_JES_EtaIntercalibration_Stat3: 4.921509829310514e-13 - syst_JES_EtaIntercalibration_Stat30: 2.1065592058318702e-08 - syst_JES_EtaIntercalibration_Stat31: 9.609323220185696e-08 - syst_JES_EtaIntercalibration_Stat32: 5.6693988217446824e-11 - syst_JES_EtaIntercalibration_Stat33: 9.204979718460073e-05 - syst_JES_EtaIntercalibration_Stat34: 8.490481007586423e-05 - syst_JES_EtaIntercalibration_Stat35: 5.768991141545526e-06 - syst_JES_EtaIntercalibration_Stat36: 2.012643038395035e-09 - syst_JES_EtaIntercalibration_Stat37: 2.4694380671521204e-08 - syst_JES_EtaIntercalibration_Stat38: 7.83097439380461e-06 - syst_JES_EtaIntercalibration_Stat39: 9.502558834489306e-08 - syst_JES_EtaIntercalibration_Stat4: 3.050972243400454e-12 - syst_JES_EtaIntercalibration_Stat40: 6.358260082460511e-07 - syst_JES_EtaIntercalibration_Stat41: 6.303826064511064e-08 - syst_JES_EtaIntercalibration_Stat42: 3.001680740697618e-12 - syst_JES_EtaIntercalibration_Stat43: 3.490279071936799e-13 - syst_JES_EtaIntercalibration_Stat44: 3.490279071936799e-13 - syst_JES_EtaIntercalibration_Stat45: 1.4611029913637532e-08 - syst_JES_EtaIntercalibration_Stat46: 1.6172039667277596e-07 - syst_JES_EtaIntercalibration_Stat47: 3.2312590038559276e-07 - syst_JES_EtaIntercalibration_Stat48: 6.7583581053389e-07 - syst_JES_EtaIntercalibration_Stat49: 9.209213802184786e-05 - syst_JES_EtaIntercalibration_Stat5: 1.8674557951394728e-11 - syst_JES_EtaIntercalibration_Stat50: 1.892198910546933e-06 - syst_JES_EtaIntercalibration_Stat51: 7.73846656321522e-07 - syst_JES_EtaIntercalibration_Stat52: 1.4053560998907003e-06 - syst_JES_EtaIntercalibration_Stat53: 1.6067866071992885e-06 - syst_JES_EtaIntercalibration_Stat54: 6.487215509754551e-06 - syst_JES_EtaIntercalibration_Stat55: 9.207582182583182e-05 - syst_JES_EtaIntercalibration_Stat56: 7.110169065311087e-06 - syst_JES_EtaIntercalibration_Stat57: 7.119731898289481e-06 - syst_JES_EtaIntercalibration_Stat58: 7.075786554687755e-06 - syst_JES_EtaIntercalibration_Stat59: 2.134759163816846e-07 - syst_JES_EtaIntercalibration_Stat6: 1.870643893603216e-11 - syst_JES_EtaIntercalibration_Stat60: 8.39040302414014e-08 - syst_JES_EtaIntercalibration_Stat61: 6.168105543844074e-07 - syst_JES_EtaIntercalibration_Stat62: 6.896168930425563e-07 - syst_JES_EtaIntercalibration_Stat63: 9.616062780967062e-08 - syst_JES_EtaIntercalibration_Stat64: 2.459512146747806e-13 - syst_JES_EtaIntercalibration_Stat65: 3.490279071936799e-13 - syst_JES_EtaIntercalibration_Stat66: 3.490279071936799e-13 - syst_JES_EtaIntercalibration_Stat67: 1.716807492848281e-07 - syst_JES_EtaIntercalibration_Stat68: 2.2698337097681844e-06 - syst_JES_EtaIntercalibration_Stat69: 4.587952831873928e-06 - syst_JES_EtaIntercalibration_Stat7: 3.490279071936799e-13 - syst_JES_EtaIntercalibration_Stat70: 0.00010090035629273071 - syst_JES_EtaIntercalibration_Stat71: 7.338371260027664e-05 - syst_JES_EtaIntercalibration_Stat72: 8.574107423353173e-05 - syst_JES_EtaIntercalibration_Stat73: 1.289959890849324e-05 - syst_JES_EtaIntercalibration_Stat74: 3.920720341977989e-06 - syst_JES_EtaIntercalibration_Stat75: 7.172375560963048e-06 - syst_JES_EtaIntercalibration_Stat76: 7.33067156347148e-06 - syst_JES_EtaIntercalibration_Stat77: 6.653103625382293e-05 - syst_JES_EtaIntercalibration_Stat78: 8.145723913809012e-06 - syst_JES_EtaIntercalibration_Stat79: 3.2818715338518356e-05 - syst_JES_EtaIntercalibration_Stat8: 2.1373506965399947e-13 - syst_JES_EtaIntercalibration_Stat80: 9.130518974844748e-06 - syst_JES_EtaIntercalibration_Stat81: 4.7449613101478495e-06 - syst_JES_EtaIntercalibration_Stat82: 2.4689298795227056e-05 - syst_JES_EtaIntercalibration_Stat83: 4.266216787740633e-06 - syst_JES_EtaIntercalibration_Stat84: 1.7817255680940316e-05 - syst_JES_EtaIntercalibration_Stat85: 1.8093559848741762e-05 - syst_JES_EtaIntercalibration_Stat86: 5.810592382730267e-08 - syst_JES_EtaIntercalibration_Stat87: 2.1373506965399947e-13 - syst_JES_EtaIntercalibration_Stat88: 2.42585119081942e-08 - syst_JES_EtaIntercalibration_Stat89: 8.279858977059937e-06 - syst_JES_EtaIntercalibration_Stat9: 9.861502456563098e-11 - syst_JES_EtaIntercalibration_Stat90: 9.16860117302525e-06 - syst_JES_EtaIntercalibration_Stat91: 5.849727685969664e-05 - syst_JES_EtaIntercalibration_Stat92: 2.297731550899713e-05 - syst_JES_EtaIntercalibration_Stat93: 6.36040458328517e-05 - syst_JES_EtaIntercalibration_Stat94: 9.080973583311429e-06 - syst_JES_EtaIntercalibration_Stat95: 1.2341037912185507e-05 - syst_JES_EtaIntercalibration_Stat96: 8.522965725027879e-06 - syst_JES_EtaIntercalibration_Stat97: 1.5938711788284525e-05 - syst_JES_EtaIntercalibration_Stat98: 2.3571304923730886e-05 - syst_JES_EtaIntercalibration_Stat99: 1.573655321218722e-05 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.00625108638558131 - syst_JES_Flavour_Comp: 0.0242512613074042 - syst_JES_Flavour_Response: 0.08887845183170102 - syst_JES_Gjet_Generator: 0.09838686739092774 - syst_JES_Gjet_OOC: 0.06751167084289945 - syst_JES_Gjet_Purity: 0.021996086015471025 - syst_JES_Gjet_Stat1: 6.254435466131216e-09 - syst_JES_Gjet_Stat10: 0.005526708491498353 - syst_JES_Gjet_Stat11: 0.008828275411992992 - syst_JES_Gjet_Stat12: 0.010737287087528209 - syst_JES_Gjet_Stat13: 0.005053186197835975 - syst_JES_Gjet_Stat14: 0.001463791073719197 - syst_JES_Gjet_Stat15: 0.00011329256418671086 - syst_JES_Gjet_Stat2: 4.0815777280360596e-11 - syst_JES_Gjet_Stat3: 6.9003900554574995e-09 - syst_JES_Gjet_Stat4: 1.0219972352345186e-05 - syst_JES_Gjet_Stat5: 3.116687920192684e-07 - syst_JES_Gjet_Stat6: 0.0006303959291588105 - syst_JES_Gjet_Stat7: 0.0010592135419734774 - syst_JES_Gjet_Stat8: 0.0007975544291770938 - syst_JES_Gjet_Stat9: 0.0028245326604590714 - syst_JES_Gjet_Veto: 0.03411958235383312 - syst_JES_Gjet_dPhi: 0.005231964831686085 - syst_JES_LArESZee: 0.12347823725256205 - syst_JES_LArEsmear: 0.010268162676448011 - syst_JES_LAr_JVT: 0.014920154045786525 - syst_JES_MJB_Alpha: 3.0743894455818216e-05 - syst_JES_MJB_Asym: 0.001799997268747928 - syst_JES_MJB_Beta: 1.818651896782051e-15 - syst_JES_MJB_Fragmentation: 0.007029843152588826 + syst_JER_NP7: 2.37983781e-04 + syst_JER_NP8: 2.75312636e-03 + syst_JES_EtaIntercalibration_Modelling: 9.16820881e-02 + syst_JES_EtaIntercalibration_NonClosure: 1.47301086e-02 + syst_JES_EtaIntercalibration_Stat0: 3.49027907e-13 + syst_JES_EtaIntercalibration_Stat1: 3.49027907e-13 + syst_JES_EtaIntercalibration_Stat10: 9.86150246e-11 + syst_JES_EtaIntercalibration_Stat100: 3.91990548e-05 + syst_JES_EtaIntercalibration_Stat101: 6.25550532e-06 + syst_JES_EtaIntercalibration_Stat102: 1.50380096e-06 + syst_JES_EtaIntercalibration_Stat103: 1.90375243e-06 + syst_JES_EtaIntercalibration_Stat104: 1.55786439e-05 + syst_JES_EtaIntercalibration_Stat105: 1.86627786e-05 + syst_JES_EtaIntercalibration_Stat106: 1.48296243e-05 + syst_JES_EtaIntercalibration_Stat107: 6.21026895e-08 + syst_JES_EtaIntercalibration_Stat108: 4.45266909e-07 + syst_JES_EtaIntercalibration_Stat109: 2.45816208e-05 + syst_JES_EtaIntercalibration_Stat11: 9.35653845e-05 + syst_JES_EtaIntercalibration_Stat110: 1.38641137e-04 + syst_JES_EtaIntercalibration_Stat111: 1.57219043e-04 + syst_JES_EtaIntercalibration_Stat112: 2.26088904e-04 + syst_JES_EtaIntercalibration_Stat113: 4.53600145e-04 + syst_JES_EtaIntercalibration_Stat114: 3.37534846e-05 + syst_JES_EtaIntercalibration_Stat115: 1.08366110e-04 + syst_JES_EtaIntercalibration_Stat116: 1.70907555e-05 + syst_JES_EtaIntercalibration_Stat117: 1.23128742e-04 + syst_JES_EtaIntercalibration_Stat118: 3.88059347e-05 + syst_JES_EtaIntercalibration_Stat119: 1.27201066e-04 + syst_JES_EtaIntercalibration_Stat12: 2.13735070e-13 + syst_JES_EtaIntercalibration_Stat120: 1.00998808e-04 + syst_JES_EtaIntercalibration_Stat121: 1.84290343e-04 + syst_JES_EtaIntercalibration_Stat122: 1.24893935e-05 + syst_JES_EtaIntercalibration_Stat123: 2.56368810e-04 + syst_JES_EtaIntercalibration_Stat124: 1.66031801e-04 + syst_JES_EtaIntercalibration_Stat125: 2.35824216e-04 + syst_JES_EtaIntercalibration_Stat126: 1.06227131e-04 + syst_JES_EtaIntercalibration_Stat127: 1.90265781e-05 + syst_JES_EtaIntercalibration_Stat128: 8.67391348e-04 + syst_JES_EtaIntercalibration_Stat129: 1.28046896e-03 + syst_JES_EtaIntercalibration_Stat13: 8.84298533e-06 + syst_JES_EtaIntercalibration_Stat130: 1.77786867e-03 + syst_JES_EtaIntercalibration_Stat131: 1.42770630e-03 + syst_JES_EtaIntercalibration_Stat132: 1.48480092e-03 + syst_JES_EtaIntercalibration_Stat133: 1.21769695e-03 + syst_JES_EtaIntercalibration_Stat134: 1.27307468e-03 + syst_JES_EtaIntercalibration_Stat135: 7.77933691e-04 + syst_JES_EtaIntercalibration_Stat136: 7.58723907e-04 + syst_JES_EtaIntercalibration_Stat137: 5.91094510e-04 + syst_JES_EtaIntercalibration_Stat138: 8.26010914e-04 + syst_JES_EtaIntercalibration_Stat139: 1.03591853e-03 + syst_JES_EtaIntercalibration_Stat14: 9.13137179e-06 + syst_JES_EtaIntercalibration_Stat140: 1.22219005e-03 + syst_JES_EtaIntercalibration_Stat141: 1.54362802e-03 + syst_JES_EtaIntercalibration_Stat142: 1.73766309e-03 + syst_JES_EtaIntercalibration_Stat143: 1.09074326e-03 + syst_JES_EtaIntercalibration_Stat144: 1.37610174e-03 + syst_JES_EtaIntercalibration_Stat145: 5.20597585e-04 + syst_JES_EtaIntercalibration_Stat146: 8.76871032e-04 + syst_JES_EtaIntercalibration_Stat147: 1.01879229e-03 + syst_JES_EtaIntercalibration_Stat148: 7.99186936e-04 + syst_JES_EtaIntercalibration_Stat149: 3.56984637e-04 + syst_JES_EtaIntercalibration_Stat15: 9.86385363e-11 + syst_JES_EtaIntercalibration_Stat150: 6.60745151e-04 + syst_JES_EtaIntercalibration_Stat151: 1.30489203e-03 + syst_JES_EtaIntercalibration_Stat152: 6.50040357e-04 + syst_JES_EtaIntercalibration_Stat153: 5.70710741e-04 + syst_JES_EtaIntercalibration_Stat154: 6.36784563e-04 + syst_JES_EtaIntercalibration_Stat155: 6.28668739e-04 + syst_JES_EtaIntercalibration_Stat156: 3.15938710e-04 + syst_JES_EtaIntercalibration_Stat157: 1.13609864e-03 + syst_JES_EtaIntercalibration_Stat158: 1.12817340e-03 + syst_JES_EtaIntercalibration_Stat159: 1.25015855e-03 + syst_JES_EtaIntercalibration_Stat16: 1.97726984e-12 + syst_JES_EtaIntercalibration_Stat160: 2.62045820e-05 + syst_JES_EtaIntercalibration_Stat161: 8.90313889e-04 + syst_JES_EtaIntercalibration_Stat162: 7.59675464e-04 + syst_JES_EtaIntercalibration_Stat163: 6.73814304e-04 + syst_JES_EtaIntercalibration_Stat164: 1.15079971e-03 + syst_JES_EtaIntercalibration_Stat165: 1.01703064e-03 + syst_JES_EtaIntercalibration_Stat166: 1.02768412e-03 + syst_JES_EtaIntercalibration_Stat167: 1.13728436e-03 + syst_JES_EtaIntercalibration_Stat168: 1.27693320e-03 + syst_JES_EtaIntercalibration_Stat169: 1.06997690e-03 + syst_JES_EtaIntercalibration_Stat17: 7.84621528e-06 + syst_JES_EtaIntercalibration_Stat170: 1.08543733e-03 + syst_JES_EtaIntercalibration_Stat171: 1.02415145e-03 + syst_JES_EtaIntercalibration_Stat172: 5.59147787e-04 + syst_JES_EtaIntercalibration_Stat173: 2.37950604e-04 + syst_JES_EtaIntercalibration_Stat174: 5.48677255e-04 + syst_JES_EtaIntercalibration_Stat175: 5.07008402e-04 + syst_JES_EtaIntercalibration_Stat176: 2.52205959e-04 + syst_JES_EtaIntercalibration_Stat177: 1.41120488e-03 + syst_JES_EtaIntercalibration_Stat178: 1.14795569e-03 + syst_JES_EtaIntercalibration_Stat179: 1.90779846e-04 + syst_JES_EtaIntercalibration_Stat18: 4.45330627e-13 + syst_JES_EtaIntercalibration_Stat180: 4.35070749e-04 + syst_JES_EtaIntercalibration_Stat181: 6.70156483e-04 + syst_JES_EtaIntercalibration_Stat182: 1.39701839e-03 + syst_JES_EtaIntercalibration_Stat183: 7.56333261e-04 + syst_JES_EtaIntercalibration_Stat184: 6.97655546e-06 + syst_JES_EtaIntercalibration_Stat185: 1.53746480e-03 + syst_JES_EtaIntercalibration_Stat186: 1.07911763e-03 + syst_JES_EtaIntercalibration_Stat187: 1.85425610e-03 + syst_JES_EtaIntercalibration_Stat188: 5.66467217e-04 + syst_JES_EtaIntercalibration_Stat189: 5.49644785e-04 + syst_JES_EtaIntercalibration_Stat19: 1.18213302e-12 + syst_JES_EtaIntercalibration_Stat190: 8.94341412e-04 + syst_JES_EtaIntercalibration_Stat191: 7.48942453e-04 + syst_JES_EtaIntercalibration_Stat192: 9.50680297e-04 + syst_JES_EtaIntercalibration_Stat193: 1.69348532e-03 + syst_JES_EtaIntercalibration_Stat194: 1.80046687e-04 + syst_JES_EtaIntercalibration_Stat195: 2.27852321e-04 + syst_JES_EtaIntercalibration_Stat196: 7.30657545e-04 + syst_JES_EtaIntercalibration_Stat197: 4.17108982e-04 + syst_JES_EtaIntercalibration_Stat198: 4.85869949e-04 + syst_JES_EtaIntercalibration_Stat199: 6.18972057e-04 + syst_JES_EtaIntercalibration_Stat2: 4.92150983e-13 + syst_JES_EtaIntercalibration_Stat20: 3.49027907e-13 + syst_JES_EtaIntercalibration_Stat200: 5.45889607e-04 + syst_JES_EtaIntercalibration_Stat201: 2.98870323e-04 + syst_JES_EtaIntercalibration_Stat202: 4.61418964e-04 + syst_JES_EtaIntercalibration_Stat203: 6.12467418e-05 + syst_JES_EtaIntercalibration_Stat204: 4.32989155e-04 + syst_JES_EtaIntercalibration_Stat205: 8.15104297e-05 + syst_JES_EtaIntercalibration_Stat206: 5.03379765e-04 + syst_JES_EtaIntercalibration_Stat207: 3.45398971e-04 + syst_JES_EtaIntercalibration_Stat208: 3.12695155e-04 + syst_JES_EtaIntercalibration_Stat209: 3.07475397e-04 + syst_JES_EtaIntercalibration_Stat21: 3.49027907e-13 + syst_JES_EtaIntercalibration_Stat210: 4.82063820e-05 + syst_JES_EtaIntercalibration_Stat211: 1.96748422e-04 + syst_JES_EtaIntercalibration_Stat212: 2.44880093e-05 + syst_JES_EtaIntercalibration_Stat213: 7.92789466e-05 + syst_JES_EtaIntercalibration_Stat214: 6.08209641e-06 + syst_JES_EtaIntercalibration_Stat215: 1.44783104e-04 + syst_JES_EtaIntercalibration_Stat216: 6.41580991e-05 + syst_JES_EtaIntercalibration_Stat217: 1.17139481e-04 + syst_JES_EtaIntercalibration_Stat218: 1.03860270e-04 + syst_JES_EtaIntercalibration_Stat219: 6.26212047e-05 + syst_JES_EtaIntercalibration_Stat22: 3.49027907e-13 + syst_JES_EtaIntercalibration_Stat220: 5.07998506e-05 + syst_JES_EtaIntercalibration_Stat221: 5.52477004e-05 + syst_JES_EtaIntercalibration_Stat222: 7.20966148e-05 + syst_JES_EtaIntercalibration_Stat223: 3.87144414e-05 + syst_JES_EtaIntercalibration_Stat224: 6.58138319e-06 + syst_JES_EtaIntercalibration_Stat225: 1.17596023e-05 + syst_JES_EtaIntercalibration_Stat226: 1.33346206e-05 + syst_JES_EtaIntercalibration_Stat227: 1.03677264e-05 + syst_JES_EtaIntercalibration_Stat228: 2.92563203e-05 + syst_JES_EtaIntercalibration_Stat229: 1.73955512e-05 + syst_JES_EtaIntercalibration_Stat23: 4.92150983e-13 + syst_JES_EtaIntercalibration_Stat230: 9.52616296e-06 + syst_JES_EtaIntercalibration_Stat231: 2.39869027e-05 + syst_JES_EtaIntercalibration_Stat232: 2.36115095e-05 + syst_JES_EtaIntercalibration_Stat233: 6.66752958e-06 + syst_JES_EtaIntercalibration_Stat234: 1.58303578e-05 + syst_JES_EtaIntercalibration_Stat235: 2.05534103e-05 + syst_JES_EtaIntercalibration_Stat236: 9.29883980e-05 + syst_JES_EtaIntercalibration_Stat237: 2.13735070e-13 + syst_JES_EtaIntercalibration_Stat238: 8.42772951e-06 + syst_JES_EtaIntercalibration_Stat239: 5.99364436e-06 + syst_JES_EtaIntercalibration_Stat24: 1.50430937e-07 + syst_JES_EtaIntercalibration_Stat240: 1.29987943e-05 + syst_JES_EtaIntercalibration_Stat241: 5.67609111e-05 + syst_JES_EtaIntercalibration_Stat242: 8.07346933e-06 + syst_JES_EtaIntercalibration_Stat243: 2.35928754e-05 + syst_JES_EtaIntercalibration_Stat244: 1.84170310e-05 + syst_JES_EtaIntercalibration_Stat245: 2.15767345e-05 + syst_JES_EtaIntercalibration_Stat25: 1.89586891e-09 + syst_JES_EtaIntercalibration_Stat26: 1.23541248e-09 + syst_JES_EtaIntercalibration_Stat27: 9.35644981e-05 + syst_JES_EtaIntercalibration_Stat28: 2.62054307e-09 + syst_JES_EtaIntercalibration_Stat29: 1.87091680e-08 + syst_JES_EtaIntercalibration_Stat3: 4.92150983e-13 + syst_JES_EtaIntercalibration_Stat30: 2.10655921e-08 + syst_JES_EtaIntercalibration_Stat31: 9.60932322e-08 + syst_JES_EtaIntercalibration_Stat32: 5.66939882e-11 + syst_JES_EtaIntercalibration_Stat33: 9.20497972e-05 + syst_JES_EtaIntercalibration_Stat34: 8.49048101e-05 + syst_JES_EtaIntercalibration_Stat35: 5.76899114e-06 + syst_JES_EtaIntercalibration_Stat36: 2.01264304e-09 + syst_JES_EtaIntercalibration_Stat37: 2.46943807e-08 + syst_JES_EtaIntercalibration_Stat38: 7.83097439e-06 + syst_JES_EtaIntercalibration_Stat39: 9.50255883e-08 + syst_JES_EtaIntercalibration_Stat4: 3.05097224e-12 + syst_JES_EtaIntercalibration_Stat40: 6.35826008e-07 + syst_JES_EtaIntercalibration_Stat41: 6.30382606e-08 + syst_JES_EtaIntercalibration_Stat42: 3.00168074e-12 + syst_JES_EtaIntercalibration_Stat43: 3.49027907e-13 + syst_JES_EtaIntercalibration_Stat44: 3.49027907e-13 + syst_JES_EtaIntercalibration_Stat45: 1.46110299e-08 + syst_JES_EtaIntercalibration_Stat46: 1.61720397e-07 + syst_JES_EtaIntercalibration_Stat47: 3.23125900e-07 + syst_JES_EtaIntercalibration_Stat48: 6.75835811e-07 + syst_JES_EtaIntercalibration_Stat49: 9.20921380e-05 + syst_JES_EtaIntercalibration_Stat5: 1.86745580e-11 + syst_JES_EtaIntercalibration_Stat50: 1.89219891e-06 + syst_JES_EtaIntercalibration_Stat51: 7.73846656e-07 + syst_JES_EtaIntercalibration_Stat52: 1.40535610e-06 + syst_JES_EtaIntercalibration_Stat53: 1.60678661e-06 + syst_JES_EtaIntercalibration_Stat54: 6.48721551e-06 + syst_JES_EtaIntercalibration_Stat55: 9.20758218e-05 + syst_JES_EtaIntercalibration_Stat56: 7.11016907e-06 + syst_JES_EtaIntercalibration_Stat57: 7.11973190e-06 + syst_JES_EtaIntercalibration_Stat58: 7.07578655e-06 + syst_JES_EtaIntercalibration_Stat59: 2.13475916e-07 + syst_JES_EtaIntercalibration_Stat6: 1.87064389e-11 + syst_JES_EtaIntercalibration_Stat60: 8.39040302e-08 + syst_JES_EtaIntercalibration_Stat61: 6.16810554e-07 + syst_JES_EtaIntercalibration_Stat62: 6.89616893e-07 + syst_JES_EtaIntercalibration_Stat63: 9.61606278e-08 + syst_JES_EtaIntercalibration_Stat64: 2.45951215e-13 + syst_JES_EtaIntercalibration_Stat65: 3.49027907e-13 + syst_JES_EtaIntercalibration_Stat66: 3.49027907e-13 + syst_JES_EtaIntercalibration_Stat67: 1.71680749e-07 + syst_JES_EtaIntercalibration_Stat68: 2.26983371e-06 + syst_JES_EtaIntercalibration_Stat69: 4.58795283e-06 + syst_JES_EtaIntercalibration_Stat7: 3.49027907e-13 + syst_JES_EtaIntercalibration_Stat70: 1.00900356e-04 + syst_JES_EtaIntercalibration_Stat71: 7.33837126e-05 + syst_JES_EtaIntercalibration_Stat72: 8.57410742e-05 + syst_JES_EtaIntercalibration_Stat73: 1.28995989e-05 + syst_JES_EtaIntercalibration_Stat74: 3.92072034e-06 + syst_JES_EtaIntercalibration_Stat75: 7.17237556e-06 + syst_JES_EtaIntercalibration_Stat76: 7.33067156e-06 + syst_JES_EtaIntercalibration_Stat77: 6.65310363e-05 + syst_JES_EtaIntercalibration_Stat78: 8.14572391e-06 + syst_JES_EtaIntercalibration_Stat79: 3.28187153e-05 + syst_JES_EtaIntercalibration_Stat8: 2.13735070e-13 + syst_JES_EtaIntercalibration_Stat80: 9.13051897e-06 + syst_JES_EtaIntercalibration_Stat81: 4.74496131e-06 + syst_JES_EtaIntercalibration_Stat82: 2.46892988e-05 + syst_JES_EtaIntercalibration_Stat83: 4.26621679e-06 + syst_JES_EtaIntercalibration_Stat84: 1.78172557e-05 + syst_JES_EtaIntercalibration_Stat85: 1.80935598e-05 + syst_JES_EtaIntercalibration_Stat86: 5.81059238e-08 + syst_JES_EtaIntercalibration_Stat87: 2.13735070e-13 + syst_JES_EtaIntercalibration_Stat88: 2.42585119e-08 + syst_JES_EtaIntercalibration_Stat89: 8.27985898e-06 + syst_JES_EtaIntercalibration_Stat9: 9.86150246e-11 + syst_JES_EtaIntercalibration_Stat90: 9.16860117e-06 + syst_JES_EtaIntercalibration_Stat91: 5.84972769e-05 + syst_JES_EtaIntercalibration_Stat92: 2.29773155e-05 + syst_JES_EtaIntercalibration_Stat93: 6.36040458e-05 + syst_JES_EtaIntercalibration_Stat94: 9.08097358e-06 + syst_JES_EtaIntercalibration_Stat95: 1.23410379e-05 + syst_JES_EtaIntercalibration_Stat96: 8.52296573e-06 + syst_JES_EtaIntercalibration_Stat97: 1.59387118e-05 + syst_JES_EtaIntercalibration_Stat98: 2.35713049e-05 + syst_JES_EtaIntercalibration_Stat99: 1.57365532e-05 + syst_JES_EtaIntercalibration_TotalStat_MJB: 6.25108639e-03 + syst_JES_Flavour_Comp: 2.42512613e-02 + syst_JES_Flavour_Response: 8.88784518e-02 + syst_JES_Gjet_Generator: 9.83868674e-02 + syst_JES_Gjet_OOC: 6.75116708e-02 + syst_JES_Gjet_Purity: 2.19960860e-02 + syst_JES_Gjet_Stat1: 6.25443547e-09 + syst_JES_Gjet_Stat10: 5.52670849e-03 + syst_JES_Gjet_Stat11: 8.82827541e-03 + syst_JES_Gjet_Stat12: 1.07372871e-02 + syst_JES_Gjet_Stat13: 5.05318620e-03 + syst_JES_Gjet_Stat14: 1.46379107e-03 + syst_JES_Gjet_Stat15: 1.13292564e-04 + syst_JES_Gjet_Stat2: 4.08157773e-11 + syst_JES_Gjet_Stat3: 6.90039006e-09 + syst_JES_Gjet_Stat4: 1.02199724e-05 + syst_JES_Gjet_Stat5: 3.11668792e-07 + syst_JES_Gjet_Stat6: 6.30395929e-04 + syst_JES_Gjet_Stat7: 1.05921354e-03 + syst_JES_Gjet_Stat8: 7.97554429e-04 + syst_JES_Gjet_Stat9: 2.82453266e-03 + syst_JES_Gjet_Veto: 3.41195824e-02 + syst_JES_Gjet_dPhi: 5.23196483e-03 + syst_JES_LArESZee: 1.23478237e-01 + syst_JES_LArEsmear: 1.02681627e-02 + syst_JES_LAr_JVT: 1.49201540e-02 + syst_JES_MJB_Alpha: 3.07438945e-05 + syst_JES_MJB_Asym: 1.79999727e-03 + syst_JES_MJB_Beta: 1.81865190e-15 + syst_JES_MJB_Fragmentation: 7.02984315e-03 syst_JES_MJB_Stat1: 0.0 syst_JES_MJB_Stat10: 0.0 syst_JES_MJB_Stat11: 0.0 - syst_JES_MJB_Stat12: 1.80479694148677e-36 + syst_JES_MJB_Stat12: 1.80479694e-36 syst_JES_MJB_Stat13: 0.0 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 - syst_JES_MJB_Stat16: 1.0129898133085212e-21 - syst_JES_MJB_Stat2: 0.0006878839782259796 - syst_JES_MJB_Stat3: 0.00012306220987776874 - syst_JES_MJB_Stat4: 6.4354347755221635e-06 - syst_JES_MJB_Stat5: 5.566871811664069e-05 + syst_JES_MJB_Stat16: 1.01298981e-21 + syst_JES_MJB_Stat2: 6.87883978e-04 + syst_JES_MJB_Stat3: 1.23062210e-04 + syst_JES_MJB_Stat4: 6.43543478e-06 + syst_JES_MJB_Stat5: 5.56687181e-05 syst_JES_MJB_Stat6: 0.0 syst_JES_MJB_Stat7: 0.0 syst_JES_MJB_Stat8: 0.0 - syst_JES_MJB_Stat9: 6.960246170215533e-16 - syst_JES_MJB_Threshold: 0.002336236357905595 - syst_JES_Pileup_MuOffset: 0.005262304889494716 - syst_JES_Pileup_NPVOffset: 0.008838484089480503 - syst_JES_Pileup_Pt_term: 0.020609077490271126 - syst_JES_Pileup_Rho_topology: 0.033845497115569154 - syst_JES_PunchThrough_MC15: 0.001212550909240515 - syst_JES_SingleParticle_HighPt: 9.171174951989522e-06 - syst_JES_Zjet_MC: 0.08870862007155786 - syst_JES_Zjet_MuScale: 0.00569109451248176 - syst_JES_Zjet_MuSmearID: 0.0005661180265633661 - syst_JES_Zjet_MuSmearMS: 0.015658437821187657 - syst_JES_Zjet_OOC: 0.03367885798241976 - syst_JES_Zjet_Stat1: 0.0004943906628365871 - syst_JES_Zjet_Stat10: 0.004797157453117418 - syst_JES_Zjet_Stat11: 0.008966205050075534 - syst_JES_Zjet_Stat12: 0.02646811477986296 - syst_JES_Zjet_Stat13: 0.00809624215299913 + syst_JES_MJB_Stat9: 6.96024617e-16 + syst_JES_MJB_Threshold: 2.33623636e-03 + syst_JES_Pileup_MuOffset: 5.26230489e-03 + syst_JES_Pileup_NPVOffset: 8.83848409e-03 + syst_JES_Pileup_Pt_term: 2.06090775e-02 + syst_JES_Pileup_Rho_topology: 3.38454971e-02 + syst_JES_PunchThrough_MC15: 1.21255091e-03 + syst_JES_SingleParticle_HighPt: 9.17117495e-06 + syst_JES_Zjet_MC: 8.87086201e-02 + syst_JES_Zjet_MuScale: 5.69109451e-03 + syst_JES_Zjet_MuSmearID: 5.66118027e-04 + syst_JES_Zjet_MuSmearMS: 1.56584378e-02 + syst_JES_Zjet_OOC: 3.36788580e-02 + syst_JES_Zjet_Stat1: 4.94390663e-04 + syst_JES_Zjet_Stat10: 4.79715745e-03 + syst_JES_Zjet_Stat11: 8.96620505e-03 + syst_JES_Zjet_Stat12: 2.64681148e-02 + syst_JES_Zjet_Stat13: 8.09624215e-03 syst_JES_Zjet_Stat2: 0.0 - syst_JES_Zjet_Stat3: 4.368185301701382e-11 - syst_JES_Zjet_Stat4: 5.504457466453892e-10 - syst_JES_Zjet_Stat5: 1.0946561103478355e-05 - syst_JES_Zjet_Stat6: 0.0004329736019666788 - syst_JES_Zjet_Stat7: 0.00047827139492133544 - syst_JES_Zjet_Stat8: 0.0005656190590848225 - syst_JES_Zjet_Stat9: 0.0015510295516204713 - syst_JES_Zjet_Veto: 0.00721042666906751 - syst_JES_Zjet_dPhi: 0.005753534826521867 + syst_JES_Zjet_Stat3: 4.36818530e-11 + syst_JES_Zjet_Stat4: 5.50445747e-10 + syst_JES_Zjet_Stat5: 1.09465611e-05 + syst_JES_Zjet_Stat6: 4.32973602e-04 + syst_JES_Zjet_Stat7: 4.78271395e-04 + syst_JES_Zjet_Stat8: 5.65619059e-04 + syst_JES_Zjet_Stat9: 1.55102955e-03 + syst_JES_Zjet_Veto: 7.21042667e-03 + syst_JES_Zjet_dPhi: 5.75353483e-03 syst_PRW: 0.0 - syst_Unfolding_bias: 1.128e-08 - syst_cleaning: 0.04225337945064276 + syst_Unfolding_bias: 1.12800000e-08 + syst_cleaning: 4.22533795e-02 syst_lumi: 0.10144 - stat: 0.026445 - syst_JER_CROSS_CALIB_FORWARD: 2.231e-05 + syst_JER_CROSS_CALIB_FORWARD: 2.23100000e-05 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.0069790517264167054 - syst_JER_NP1: 0.0012273302448811405 - syst_JER_NP2: 2.389364089041266e-14 - syst_JER_NP3: 0.0015441500599035055 - syst_JER_NP4: 4.3950789242060265e-07 + syst_JER_NP0: 6.97905173e-03 + syst_JER_NP1: 1.22733024e-03 + syst_JER_NP2: 2.38936409e-14 + syst_JER_NP3: 1.54415006e-03 + syst_JER_NP4: 4.39507892e-07 syst_JER_NP5: 0.0 syst_JER_NP6: 0.0 - syst_JER_NP7: 0.0007300594153902818 - syst_JER_NP8: 0.0012937546396052074 - syst_JES_EtaIntercalibration_Modelling: 0.051578496246013225 - syst_JES_EtaIntercalibration_NonClosure: 0.006114691386325233 - syst_JES_EtaIntercalibration_Stat0: 2.1298056249338814e-14 - syst_JES_EtaIntercalibration_Stat1: 2.1298056249338814e-14 - syst_JES_EtaIntercalibration_Stat10: 5.436131445826159e-12 - syst_JES_EtaIntercalibration_Stat100: 3.4445703955645905e-05 - syst_JES_EtaIntercalibration_Stat101: 2.6959148108758922e-06 - syst_JES_EtaIntercalibration_Stat102: 3.868729735801533e-06 - syst_JES_EtaIntercalibration_Stat103: 8.07042427633145e-06 - syst_JES_EtaIntercalibration_Stat104: 4.421135911731283e-06 - syst_JES_EtaIntercalibration_Stat105: 1.380313366594702e-07 - syst_JES_EtaIntercalibration_Stat106: 2.687954476456028e-06 - syst_JES_EtaIntercalibration_Stat107: 5.069713376841235e-09 - syst_JES_EtaIntercalibration_Stat108: 4.914941403516424e-08 - syst_JES_EtaIntercalibration_Stat109: 6.938258913445073e-06 - syst_JES_EtaIntercalibration_Stat11: 4.9034358356276245e-05 - syst_JES_EtaIntercalibration_Stat110: 2.3757829761996356e-05 - syst_JES_EtaIntercalibration_Stat111: 6.005924812274958e-05 - syst_JES_EtaIntercalibration_Stat112: 4.262013696599296e-05 - syst_JES_EtaIntercalibration_Stat113: 9.336818808887747e-05 - syst_JES_EtaIntercalibration_Stat114: 1.2788405999185355e-05 - syst_JES_EtaIntercalibration_Stat115: 3.045155004264972e-05 - syst_JES_EtaIntercalibration_Stat116: 3.392036666959837e-06 - syst_JES_EtaIntercalibration_Stat117: 2.616363068746385e-05 - syst_JES_EtaIntercalibration_Stat118: 1.2522076694781898e-05 - syst_JES_EtaIntercalibration_Stat119: 2.4994879610632255e-05 - syst_JES_EtaIntercalibration_Stat12: 1.3042342580993648e-14 - syst_JES_EtaIntercalibration_Stat120: 8.329229196030086e-06 - syst_JES_EtaIntercalibration_Stat121: 5.520780527244313e-05 - syst_JES_EtaIntercalibration_Stat122: 7.492396879503915e-06 - syst_JES_EtaIntercalibration_Stat123: 6.971929001359666e-05 - syst_JES_EtaIntercalibration_Stat124: 3.59621821779491e-05 - syst_JES_EtaIntercalibration_Stat125: 5.752251882523921e-05 - syst_JES_EtaIntercalibration_Stat126: 1.2990620654918686e-05 - syst_JES_EtaIntercalibration_Stat127: 3.6676175868419985e-06 - syst_JES_EtaIntercalibration_Stat128: 0.00024345247749817618 - syst_JES_EtaIntercalibration_Stat129: 0.0002938276038768311 - syst_JES_EtaIntercalibration_Stat13: 4.634101931303083e-06 - syst_JES_EtaIntercalibration_Stat130: 0.00048109538295435764 - syst_JES_EtaIntercalibration_Stat131: 0.0002862620477813991 - syst_JES_EtaIntercalibration_Stat132: 0.00044326284245354924 - syst_JES_EtaIntercalibration_Stat133: 0.0004412711786135595 - syst_JES_EtaIntercalibration_Stat134: 0.00032586705878317925 - syst_JES_EtaIntercalibration_Stat135: 0.00012147464179819588 - syst_JES_EtaIntercalibration_Stat136: 0.00017296181659545555 - syst_JES_EtaIntercalibration_Stat137: 8.969467250065634e-05 - syst_JES_EtaIntercalibration_Stat138: 0.00029622881914493054 - syst_JES_EtaIntercalibration_Stat139: 0.00021932707356822135 - syst_JES_EtaIntercalibration_Stat14: 4.785656376965361e-06 - syst_JES_EtaIntercalibration_Stat140: 0.00038514432035277374 - syst_JES_EtaIntercalibration_Stat141: 0.0004904758709661465 - syst_JES_EtaIntercalibration_Stat142: 0.0004753744077040748 - syst_JES_EtaIntercalibration_Stat143: 0.00042654773472613827 - syst_JES_EtaIntercalibration_Stat144: 0.0006110719843029952 - syst_JES_EtaIntercalibration_Stat145: 0.0002538283709024663 - syst_JES_EtaIntercalibration_Stat146: 0.0003417331524742661 - syst_JES_EtaIntercalibration_Stat147: 0.0004153457836550168 - syst_JES_EtaIntercalibration_Stat148: 0.0003785801987360142 - syst_JES_EtaIntercalibration_Stat149: 9.467957263845249e-05 - syst_JES_EtaIntercalibration_Stat15: 5.4377700928505615e-12 - syst_JES_EtaIntercalibration_Stat150: 0.0002835763685499904 - syst_JES_EtaIntercalibration_Stat151: 0.0005647592230322583 - syst_JES_EtaIntercalibration_Stat152: 0.00025421734539562795 - syst_JES_EtaIntercalibration_Stat153: 0.00025149377725900096 - syst_JES_EtaIntercalibration_Stat154: 0.00015054742608228144 - syst_JES_EtaIntercalibration_Stat155: 0.00023511407028663765 - syst_JES_EtaIntercalibration_Stat156: 0.0001128568841497939 - syst_JES_EtaIntercalibration_Stat157: 0.0004098404171137835 - syst_JES_EtaIntercalibration_Stat158: 0.00040505149339312396 - syst_JES_EtaIntercalibration_Stat159: 0.0005778705631114549 - syst_JES_EtaIntercalibration_Stat16: 8.814857046486914e-14 - syst_JES_EtaIntercalibration_Stat160: 7.973757575321688e-05 - syst_JES_EtaIntercalibration_Stat161: 0.000413398297682453 - syst_JES_EtaIntercalibration_Stat162: 0.0003365349341078872 - syst_JES_EtaIntercalibration_Stat163: 0.000355891026439274 - syst_JES_EtaIntercalibration_Stat164: 0.0005340319919880737 - syst_JES_EtaIntercalibration_Stat165: 0.0005851859255826306 - syst_JES_EtaIntercalibration_Stat166: 0.0004141291548237096 - syst_JES_EtaIntercalibration_Stat167: 0.00046054885293609195 - syst_JES_EtaIntercalibration_Stat168: 0.0006010049833404047 - syst_JES_EtaIntercalibration_Stat169: 0.0005032755995793955 - syst_JES_EtaIntercalibration_Stat17: 4.1118900028110285e-06 - syst_JES_EtaIntercalibration_Stat170: 0.0003182932000530329 - syst_JES_EtaIntercalibration_Stat171: 0.0004468548170267386 - syst_JES_EtaIntercalibration_Stat172: 0.00018070723747265905 - syst_JES_EtaIntercalibration_Stat173: 0.00010417000863972317 - syst_JES_EtaIntercalibration_Stat174: 0.0002930716671310961 - syst_JES_EtaIntercalibration_Stat175: 0.0002693455079911302 - syst_JES_EtaIntercalibration_Stat176: 0.00010432140564141185 - syst_JES_EtaIntercalibration_Stat177: 0.0008576477617297209 - syst_JES_EtaIntercalibration_Stat178: 0.0006021243734271184 - syst_JES_EtaIntercalibration_Stat179: 9.997659025992033e-05 - syst_JES_EtaIntercalibration_Stat18: 2.718055325043992e-14 - syst_JES_EtaIntercalibration_Stat180: 0.00026554907440386606 - syst_JES_EtaIntercalibration_Stat181: 0.0004272341417478242 - syst_JES_EtaIntercalibration_Stat182: 0.0009222471959035711 - syst_JES_EtaIntercalibration_Stat183: 0.0004410430672471227 - syst_JES_EtaIntercalibration_Stat184: 3.656398859835429e-06 - syst_JES_EtaIntercalibration_Stat185: 0.0008073563076486118 - syst_JES_EtaIntercalibration_Stat186: 0.0008368189215714473 - syst_JES_EtaIntercalibration_Stat187: 0.0008890955783828868 - syst_JES_EtaIntercalibration_Stat188: 0.0004801244838580928 - syst_JES_EtaIntercalibration_Stat189: 0.00024802951573351105 - syst_JES_EtaIntercalibration_Stat19: 5.0397275799392176e-14 - syst_JES_EtaIntercalibration_Stat190: 0.00042167469104512306 - syst_JES_EtaIntercalibration_Stat191: 0.0004748493761183645 - syst_JES_EtaIntercalibration_Stat192: 0.0003652486203601596 - syst_JES_EtaIntercalibration_Stat193: 0.0012746501166986963 - syst_JES_EtaIntercalibration_Stat194: 9.437078858170274e-05 - syst_JES_EtaIntercalibration_Stat195: 7.041420025839958e-05 - syst_JES_EtaIntercalibration_Stat196: 0.0004489673449984977 - syst_JES_EtaIntercalibration_Stat197: 0.0005116446077845442 - syst_JES_EtaIntercalibration_Stat198: 0.00043770868165938863 - syst_JES_EtaIntercalibration_Stat199: 0.00024464641030474987 - syst_JES_EtaIntercalibration_Stat2: 3.0041542487029524e-14 - syst_JES_EtaIntercalibration_Stat20: 2.1298056249338814e-14 - syst_JES_EtaIntercalibration_Stat200: 0.0002751898268468513 - syst_JES_EtaIntercalibration_Stat201: 0.00038984154473324157 - syst_JES_EtaIntercalibration_Stat202: 0.00024873467021858855 - syst_JES_EtaIntercalibration_Stat203: 5.187286458978335e-05 - syst_JES_EtaIntercalibration_Stat204: 0.0003850990457986101 - syst_JES_EtaIntercalibration_Stat205: 5.544692597430447e-05 - syst_JES_EtaIntercalibration_Stat206: 0.0003715903778231482 - syst_JES_EtaIntercalibration_Stat207: 0.0003016102783394492 - syst_JES_EtaIntercalibration_Stat208: 0.00020094423778750165 - syst_JES_EtaIntercalibration_Stat209: 0.0004142116729402975 - syst_JES_EtaIntercalibration_Stat21: 2.1298056249338814e-14 - syst_JES_EtaIntercalibration_Stat210: 5.330370531210753e-05 - syst_JES_EtaIntercalibration_Stat211: 0.00040456446952247304 - syst_JES_EtaIntercalibration_Stat212: 9.856843922245091e-05 - syst_JES_EtaIntercalibration_Stat213: 6.247253653206343e-05 - syst_JES_EtaIntercalibration_Stat214: 3.187847452862605e-06 - syst_JES_EtaIntercalibration_Stat215: 2.1119893388698722e-05 - syst_JES_EtaIntercalibration_Stat216: 6.128202934588573e-05 - syst_JES_EtaIntercalibration_Stat217: 9.99779039338193e-05 - syst_JES_EtaIntercalibration_Stat218: 7.78338135822086e-05 - syst_JES_EtaIntercalibration_Stat219: 3.326753598855797e-05 - syst_JES_EtaIntercalibration_Stat22: 2.1298056249338814e-14 - syst_JES_EtaIntercalibration_Stat220: 2.7075644089845766e-05 - syst_JES_EtaIntercalibration_Stat221: 2.7902307373226323e-05 - syst_JES_EtaIntercalibration_Stat222: 6.190349585816134e-05 - syst_JES_EtaIntercalibration_Stat223: 1.8683299139873558e-05 - syst_JES_EtaIntercalibration_Stat224: 2.631871578838907e-05 - syst_JES_EtaIntercalibration_Stat225: 2.731780036441441e-05 - syst_JES_EtaIntercalibration_Stat226: 1.9198675162625157e-05 - syst_JES_EtaIntercalibration_Stat227: 2.386706347144533e-05 - syst_JES_EtaIntercalibration_Stat228: 5.303287448807108e-05 - syst_JES_EtaIntercalibration_Stat229: 1.4293832612354181e-05 - syst_JES_EtaIntercalibration_Stat23: 3.0041542487029524e-14 - syst_JES_EtaIntercalibration_Stat230: 2.0192870226889487e-06 - syst_JES_EtaIntercalibration_Stat231: 3.3949571425866337e-06 - syst_JES_EtaIntercalibration_Stat232: 1.6616462765281907e-05 - syst_JES_EtaIntercalibration_Stat233: 2.2074987543038073e-05 - syst_JES_EtaIntercalibration_Stat234: 2.872670997638783e-05 - syst_JES_EtaIntercalibration_Stat235: 3.828372916462031e-05 - syst_JES_EtaIntercalibration_Stat236: 4.8860404529127674e-05 - syst_JES_EtaIntercalibration_Stat237: 1.3042342580995227e-14 - syst_JES_EtaIntercalibration_Stat238: 4.357730028351917e-06 - syst_JES_EtaIntercalibration_Stat239: 3.558026546767182e-06 - syst_JES_EtaIntercalibration_Stat24: 1.1586836615314813e-08 - syst_JES_EtaIntercalibration_Stat240: 6.811717184381629e-06 - syst_JES_EtaIntercalibration_Stat241: 2.576252279474974e-05 - syst_JES_EtaIntercalibration_Stat242: 3.249722127736462e-06 - syst_JES_EtaIntercalibration_Stat243: 1.0630027990085445e-05 - syst_JES_EtaIntercalibration_Stat244: 9.157335461257275e-06 - syst_JES_EtaIntercalibration_Stat245: 1.0134369490377781e-05 - syst_JES_EtaIntercalibration_Stat25: 1.0716505495262903e-10 - syst_JES_EtaIntercalibration_Stat26: 6.973428430836586e-11 - syst_JES_EtaIntercalibration_Stat27: 4.903430836394553e-05 - syst_JES_EtaIntercalibration_Stat28: 1.4812027106375413e-10 - syst_JES_EtaIntercalibration_Stat29: 1.173737060631554e-09 - syst_JES_EtaIntercalibration_Stat3: 3.0041542487029524e-14 - syst_JES_EtaIntercalibration_Stat30: 1.3187355307547455e-09 - syst_JES_EtaIntercalibration_Stat31: 8.20869392778169e-09 - syst_JES_EtaIntercalibration_Stat32: 3.2246204427808243e-12 - syst_JES_EtaIntercalibration_Stat33: 4.8921772692647294e-05 - syst_JES_EtaIntercalibration_Stat34: 4.817697511839807e-05 - syst_JES_EtaIntercalibration_Stat35: 3.0250003514322887e-06 - syst_JES_EtaIntercalibration_Stat36: 1.1379573805727524e-10 - syst_JES_EtaIntercalibration_Stat37: 1.3992617723285374e-09 - syst_JES_EtaIntercalibration_Stat38: 4.105848032696325e-06 - syst_JES_EtaIntercalibration_Stat39: 7.1666594203079205e-09 - syst_JES_EtaIntercalibration_Stat4: 1.907664192147035e-13 - syst_JES_EtaIntercalibration_Stat40: 4.7959929167164825e-08 - syst_JES_EtaIntercalibration_Stat41: 5.139880462293307e-09 - syst_JES_EtaIntercalibration_Stat42: 1.8795115479294082e-13 - syst_JES_EtaIntercalibration_Stat43: 2.1298056249338814e-14 - syst_JES_EtaIntercalibration_Stat44: 2.1298056249338814e-14 - syst_JES_EtaIntercalibration_Stat45: 9.2844738018479e-10 - syst_JES_EtaIntercalibration_Stat46: 1.2565688376189346e-08 - syst_JES_EtaIntercalibration_Stat47: 5.2321858720806157e-08 - syst_JES_EtaIntercalibration_Stat48: 6.843008051105889e-08 - syst_JES_EtaIntercalibration_Stat49: 4.892982739420227e-05 - syst_JES_EtaIntercalibration_Stat5: 1.0677242465636902e-12 - syst_JES_EtaIntercalibration_Stat50: 2.7278320451780015e-07 - syst_JES_EtaIntercalibration_Stat51: 8.783984673825427e-08 - syst_JES_EtaIntercalibration_Stat52: 1.3976296444605775e-07 - syst_JES_EtaIntercalibration_Stat53: 1.5932430491532045e-07 - syst_JES_EtaIntercalibration_Stat54: 3.669395293969839e-06 - syst_JES_EtaIntercalibration_Stat55: 4.8921775124936914e-05 - syst_JES_EtaIntercalibration_Stat56: 2.9842803004124848e-06 - syst_JES_EtaIntercalibration_Stat57: 2.9671812075889046e-06 - syst_JES_EtaIntercalibration_Stat58: 3.7053080892534097e-06 - syst_JES_EtaIntercalibration_Stat59: 1.5056059137436993e-08 - syst_JES_EtaIntercalibration_Stat6: 1.0696746884917864e-12 - syst_JES_EtaIntercalibration_Stat60: 6.457445367945438e-09 - syst_JES_EtaIntercalibration_Stat61: 4.674345622651368e-08 - syst_JES_EtaIntercalibration_Stat62: 5.313072128044609e-08 - syst_JES_EtaIntercalibration_Stat63: 7.465031605257945e-09 - syst_JES_EtaIntercalibration_Stat64: 1.713864274089404e-14 - syst_JES_EtaIntercalibration_Stat65: 2.1298056249338814e-14 - syst_JES_EtaIntercalibration_Stat66: 2.1298056249338814e-14 - syst_JES_EtaIntercalibration_Stat67: 1.270022845581921e-08 - syst_JES_EtaIntercalibration_Stat68: 3.201447314496991e-07 - syst_JES_EtaIntercalibration_Stat69: 4.629283905746114e-06 - syst_JES_EtaIntercalibration_Stat7: 2.1298056249338814e-14 - syst_JES_EtaIntercalibration_Stat70: 5.159449260337774e-05 - syst_JES_EtaIntercalibration_Stat71: 4.6760822009455735e-05 - syst_JES_EtaIntercalibration_Stat72: 4.816277911447802e-05 - syst_JES_EtaIntercalibration_Stat73: 8.02606959040351e-06 - syst_JES_EtaIntercalibration_Stat74: 3.2739483975774577e-06 - syst_JES_EtaIntercalibration_Stat75: 3.786325061322654e-06 - syst_JES_EtaIntercalibration_Stat76: 3.6909868332974554e-06 - syst_JES_EtaIntercalibration_Stat77: 4.486970704646594e-05 - syst_JES_EtaIntercalibration_Stat78: 3.1527568796015654e-06 - syst_JES_EtaIntercalibration_Stat79: 3.3776018268546496e-05 - syst_JES_EtaIntercalibration_Stat8: 1.3042342580993648e-14 - syst_JES_EtaIntercalibration_Stat80: 2.9058694877781416e-06 - syst_JES_EtaIntercalibration_Stat81: 7.354182414092473e-07 - syst_JES_EtaIntercalibration_Stat82: 8.505321319621029e-06 - syst_JES_EtaIntercalibration_Stat83: 1.0408303217503804e-06 - syst_JES_EtaIntercalibration_Stat84: 1.16644832182999e-06 - syst_JES_EtaIntercalibration_Stat85: 3.4799095085217377e-06 - syst_JES_EtaIntercalibration_Stat86: 4.792333518677984e-09 - syst_JES_EtaIntercalibration_Stat87: 1.3042342580993648e-14 - syst_JES_EtaIntercalibration_Stat88: 1.54658785961225e-09 - syst_JES_EtaIntercalibration_Stat89: 2.742100232941896e-06 - syst_JES_EtaIntercalibration_Stat9: 5.436131445826159e-12 - syst_JES_EtaIntercalibration_Stat90: 6.129636592001193e-06 - syst_JES_EtaIntercalibration_Stat91: 3.725054638525454e-05 - syst_JES_EtaIntercalibration_Stat92: 3.7500035666649705e-06 - syst_JES_EtaIntercalibration_Stat93: 4.446645621139602e-05 - syst_JES_EtaIntercalibration_Stat94: 1.2267494732014357e-06 - syst_JES_EtaIntercalibration_Stat95: 4.2678077285065224e-06 - syst_JES_EtaIntercalibration_Stat96: 5.855105699302106e-06 - syst_JES_EtaIntercalibration_Stat97: 5.181072831711594e-06 - syst_JES_EtaIntercalibration_Stat98: 2.9171600049143686e-05 - syst_JES_EtaIntercalibration_Stat99: 8.543646572161094e-06 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.004843638508394283 - syst_JES_Flavour_Comp: 0.015850066245918344 - syst_JES_Flavour_Response: 0.039873254428877514 - syst_JES_Gjet_Generator: 0.05107399142420729 - syst_JES_Gjet_OOC: 0.03653243280634346 - syst_JES_Gjet_Purity: 0.0118679556263916 - syst_JES_Gjet_Stat1: 3.4501586061368253e-10 - syst_JES_Gjet_Stat10: 0.0023777734858476322 - syst_JES_Gjet_Stat11: 0.0037035734915754 - syst_JES_Gjet_Stat12: 0.006412635710064934 - syst_JES_Gjet_Stat13: 0.004350938551623086 - syst_JES_Gjet_Stat14: 0.0003315623471912937 - syst_JES_Gjet_Stat15: 0.00035776356368417403 - syst_JES_Gjet_Stat2: 2.5790236524700576e-12 - syst_JES_Gjet_Stat3: 3.7831165405349e-10 - syst_JES_Gjet_Stat4: 7.71285208685315e-07 - syst_JES_Gjet_Stat5: 1.7622622478470675e-08 - syst_JES_Gjet_Stat6: 0.00029512849743798037 - syst_JES_Gjet_Stat7: 0.0005253384123591193 - syst_JES_Gjet_Stat8: 0.00030605028998515913 - syst_JES_Gjet_Stat9: 0.001101004504986242 - syst_JES_Gjet_Veto: 0.019677705023706395 - syst_JES_Gjet_dPhi: 0.002693481204686604 - syst_JES_LArESZee: 0.06828823818931046 - syst_JES_LArEsmear: 0.005123015201031518 - syst_JES_LAr_JVT: 0.007115277155529501 - syst_JES_MJB_Alpha: 9.707551694030208e-05 - syst_JES_MJB_Asym: 0.001367072755927789 - syst_JES_MJB_Beta: 2.585875943056192e-11 - syst_JES_MJB_Fragmentation: 0.004958378439570744 + syst_JER_NP7: 7.30059415e-04 + syst_JER_NP8: 1.29375464e-03 + syst_JES_EtaIntercalibration_Modelling: 5.15784962e-02 + syst_JES_EtaIntercalibration_NonClosure: 6.11469139e-03 + syst_JES_EtaIntercalibration_Stat0: 2.12980562e-14 + syst_JES_EtaIntercalibration_Stat1: 2.12980562e-14 + syst_JES_EtaIntercalibration_Stat10: 5.43613145e-12 + syst_JES_EtaIntercalibration_Stat100: 3.44457040e-05 + syst_JES_EtaIntercalibration_Stat101: 2.69591481e-06 + syst_JES_EtaIntercalibration_Stat102: 3.86872974e-06 + syst_JES_EtaIntercalibration_Stat103: 8.07042428e-06 + syst_JES_EtaIntercalibration_Stat104: 4.42113591e-06 + syst_JES_EtaIntercalibration_Stat105: 1.38031337e-07 + syst_JES_EtaIntercalibration_Stat106: 2.68795448e-06 + syst_JES_EtaIntercalibration_Stat107: 5.06971338e-09 + syst_JES_EtaIntercalibration_Stat108: 4.91494140e-08 + syst_JES_EtaIntercalibration_Stat109: 6.93825891e-06 + syst_JES_EtaIntercalibration_Stat11: 4.90343584e-05 + syst_JES_EtaIntercalibration_Stat110: 2.37578298e-05 + syst_JES_EtaIntercalibration_Stat111: 6.00592481e-05 + syst_JES_EtaIntercalibration_Stat112: 4.26201370e-05 + syst_JES_EtaIntercalibration_Stat113: 9.33681881e-05 + syst_JES_EtaIntercalibration_Stat114: 1.27884060e-05 + syst_JES_EtaIntercalibration_Stat115: 3.04515500e-05 + syst_JES_EtaIntercalibration_Stat116: 3.39203667e-06 + syst_JES_EtaIntercalibration_Stat117: 2.61636307e-05 + syst_JES_EtaIntercalibration_Stat118: 1.25220767e-05 + syst_JES_EtaIntercalibration_Stat119: 2.49948796e-05 + syst_JES_EtaIntercalibration_Stat12: 1.30423426e-14 + syst_JES_EtaIntercalibration_Stat120: 8.32922920e-06 + syst_JES_EtaIntercalibration_Stat121: 5.52078053e-05 + syst_JES_EtaIntercalibration_Stat122: 7.49239688e-06 + syst_JES_EtaIntercalibration_Stat123: 6.97192900e-05 + syst_JES_EtaIntercalibration_Stat124: 3.59621822e-05 + syst_JES_EtaIntercalibration_Stat125: 5.75225188e-05 + syst_JES_EtaIntercalibration_Stat126: 1.29906207e-05 + syst_JES_EtaIntercalibration_Stat127: 3.66761759e-06 + syst_JES_EtaIntercalibration_Stat128: 2.43452477e-04 + syst_JES_EtaIntercalibration_Stat129: 2.93827604e-04 + syst_JES_EtaIntercalibration_Stat13: 4.63410193e-06 + syst_JES_EtaIntercalibration_Stat130: 4.81095383e-04 + syst_JES_EtaIntercalibration_Stat131: 2.86262048e-04 + syst_JES_EtaIntercalibration_Stat132: 4.43262842e-04 + syst_JES_EtaIntercalibration_Stat133: 4.41271179e-04 + syst_JES_EtaIntercalibration_Stat134: 3.25867059e-04 + syst_JES_EtaIntercalibration_Stat135: 1.21474642e-04 + syst_JES_EtaIntercalibration_Stat136: 1.72961817e-04 + syst_JES_EtaIntercalibration_Stat137: 8.96946725e-05 + syst_JES_EtaIntercalibration_Stat138: 2.96228819e-04 + syst_JES_EtaIntercalibration_Stat139: 2.19327074e-04 + syst_JES_EtaIntercalibration_Stat14: 4.78565638e-06 + syst_JES_EtaIntercalibration_Stat140: 3.85144320e-04 + syst_JES_EtaIntercalibration_Stat141: 4.90475871e-04 + syst_JES_EtaIntercalibration_Stat142: 4.75374408e-04 + syst_JES_EtaIntercalibration_Stat143: 4.26547735e-04 + syst_JES_EtaIntercalibration_Stat144: 6.11071984e-04 + syst_JES_EtaIntercalibration_Stat145: 2.53828371e-04 + syst_JES_EtaIntercalibration_Stat146: 3.41733152e-04 + syst_JES_EtaIntercalibration_Stat147: 4.15345784e-04 + syst_JES_EtaIntercalibration_Stat148: 3.78580199e-04 + syst_JES_EtaIntercalibration_Stat149: 9.46795726e-05 + syst_JES_EtaIntercalibration_Stat15: 5.43777009e-12 + syst_JES_EtaIntercalibration_Stat150: 2.83576369e-04 + syst_JES_EtaIntercalibration_Stat151: 5.64759223e-04 + syst_JES_EtaIntercalibration_Stat152: 2.54217345e-04 + syst_JES_EtaIntercalibration_Stat153: 2.51493777e-04 + syst_JES_EtaIntercalibration_Stat154: 1.50547426e-04 + syst_JES_EtaIntercalibration_Stat155: 2.35114070e-04 + syst_JES_EtaIntercalibration_Stat156: 1.12856884e-04 + syst_JES_EtaIntercalibration_Stat157: 4.09840417e-04 + syst_JES_EtaIntercalibration_Stat158: 4.05051493e-04 + syst_JES_EtaIntercalibration_Stat159: 5.77870563e-04 + syst_JES_EtaIntercalibration_Stat16: 8.81485705e-14 + syst_JES_EtaIntercalibration_Stat160: 7.97375758e-05 + syst_JES_EtaIntercalibration_Stat161: 4.13398298e-04 + syst_JES_EtaIntercalibration_Stat162: 3.36534934e-04 + syst_JES_EtaIntercalibration_Stat163: 3.55891026e-04 + syst_JES_EtaIntercalibration_Stat164: 5.34031992e-04 + syst_JES_EtaIntercalibration_Stat165: 5.85185926e-04 + syst_JES_EtaIntercalibration_Stat166: 4.14129155e-04 + syst_JES_EtaIntercalibration_Stat167: 4.60548853e-04 + syst_JES_EtaIntercalibration_Stat168: 6.01004983e-04 + syst_JES_EtaIntercalibration_Stat169: 5.03275600e-04 + syst_JES_EtaIntercalibration_Stat17: 4.11189000e-06 + syst_JES_EtaIntercalibration_Stat170: 3.18293200e-04 + syst_JES_EtaIntercalibration_Stat171: 4.46854817e-04 + syst_JES_EtaIntercalibration_Stat172: 1.80707237e-04 + syst_JES_EtaIntercalibration_Stat173: 1.04170009e-04 + syst_JES_EtaIntercalibration_Stat174: 2.93071667e-04 + syst_JES_EtaIntercalibration_Stat175: 2.69345508e-04 + syst_JES_EtaIntercalibration_Stat176: 1.04321406e-04 + syst_JES_EtaIntercalibration_Stat177: 8.57647762e-04 + syst_JES_EtaIntercalibration_Stat178: 6.02124373e-04 + syst_JES_EtaIntercalibration_Stat179: 9.99765903e-05 + syst_JES_EtaIntercalibration_Stat18: 2.71805533e-14 + syst_JES_EtaIntercalibration_Stat180: 2.65549074e-04 + syst_JES_EtaIntercalibration_Stat181: 4.27234142e-04 + syst_JES_EtaIntercalibration_Stat182: 9.22247196e-04 + syst_JES_EtaIntercalibration_Stat183: 4.41043067e-04 + syst_JES_EtaIntercalibration_Stat184: 3.65639886e-06 + syst_JES_EtaIntercalibration_Stat185: 8.07356308e-04 + syst_JES_EtaIntercalibration_Stat186: 8.36818922e-04 + syst_JES_EtaIntercalibration_Stat187: 8.89095578e-04 + syst_JES_EtaIntercalibration_Stat188: 4.80124484e-04 + syst_JES_EtaIntercalibration_Stat189: 2.48029516e-04 + syst_JES_EtaIntercalibration_Stat19: 5.03972758e-14 + syst_JES_EtaIntercalibration_Stat190: 4.21674691e-04 + syst_JES_EtaIntercalibration_Stat191: 4.74849376e-04 + syst_JES_EtaIntercalibration_Stat192: 3.65248620e-04 + syst_JES_EtaIntercalibration_Stat193: 1.27465012e-03 + syst_JES_EtaIntercalibration_Stat194: 9.43707886e-05 + syst_JES_EtaIntercalibration_Stat195: 7.04142003e-05 + syst_JES_EtaIntercalibration_Stat196: 4.48967345e-04 + syst_JES_EtaIntercalibration_Stat197: 5.11644608e-04 + syst_JES_EtaIntercalibration_Stat198: 4.37708682e-04 + syst_JES_EtaIntercalibration_Stat199: 2.44646410e-04 + syst_JES_EtaIntercalibration_Stat2: 3.00415425e-14 + syst_JES_EtaIntercalibration_Stat20: 2.12980562e-14 + syst_JES_EtaIntercalibration_Stat200: 2.75189827e-04 + syst_JES_EtaIntercalibration_Stat201: 3.89841545e-04 + syst_JES_EtaIntercalibration_Stat202: 2.48734670e-04 + syst_JES_EtaIntercalibration_Stat203: 5.18728646e-05 + syst_JES_EtaIntercalibration_Stat204: 3.85099046e-04 + syst_JES_EtaIntercalibration_Stat205: 5.54469260e-05 + syst_JES_EtaIntercalibration_Stat206: 3.71590378e-04 + syst_JES_EtaIntercalibration_Stat207: 3.01610278e-04 + syst_JES_EtaIntercalibration_Stat208: 2.00944238e-04 + syst_JES_EtaIntercalibration_Stat209: 4.14211673e-04 + syst_JES_EtaIntercalibration_Stat21: 2.12980562e-14 + syst_JES_EtaIntercalibration_Stat210: 5.33037053e-05 + syst_JES_EtaIntercalibration_Stat211: 4.04564470e-04 + syst_JES_EtaIntercalibration_Stat212: 9.85684392e-05 + syst_JES_EtaIntercalibration_Stat213: 6.24725365e-05 + syst_JES_EtaIntercalibration_Stat214: 3.18784745e-06 + syst_JES_EtaIntercalibration_Stat215: 2.11198934e-05 + syst_JES_EtaIntercalibration_Stat216: 6.12820293e-05 + syst_JES_EtaIntercalibration_Stat217: 9.99779039e-05 + syst_JES_EtaIntercalibration_Stat218: 7.78338136e-05 + syst_JES_EtaIntercalibration_Stat219: 3.32675360e-05 + syst_JES_EtaIntercalibration_Stat22: 2.12980562e-14 + syst_JES_EtaIntercalibration_Stat220: 2.70756441e-05 + syst_JES_EtaIntercalibration_Stat221: 2.79023074e-05 + syst_JES_EtaIntercalibration_Stat222: 6.19034959e-05 + syst_JES_EtaIntercalibration_Stat223: 1.86832991e-05 + syst_JES_EtaIntercalibration_Stat224: 2.63187158e-05 + syst_JES_EtaIntercalibration_Stat225: 2.73178004e-05 + syst_JES_EtaIntercalibration_Stat226: 1.91986752e-05 + syst_JES_EtaIntercalibration_Stat227: 2.38670635e-05 + syst_JES_EtaIntercalibration_Stat228: 5.30328745e-05 + syst_JES_EtaIntercalibration_Stat229: 1.42938326e-05 + syst_JES_EtaIntercalibration_Stat23: 3.00415425e-14 + syst_JES_EtaIntercalibration_Stat230: 2.01928702e-06 + syst_JES_EtaIntercalibration_Stat231: 3.39495714e-06 + syst_JES_EtaIntercalibration_Stat232: 1.66164628e-05 + syst_JES_EtaIntercalibration_Stat233: 2.20749875e-05 + syst_JES_EtaIntercalibration_Stat234: 2.87267100e-05 + syst_JES_EtaIntercalibration_Stat235: 3.82837292e-05 + syst_JES_EtaIntercalibration_Stat236: 4.88604045e-05 + syst_JES_EtaIntercalibration_Stat237: 1.30423426e-14 + syst_JES_EtaIntercalibration_Stat238: 4.35773003e-06 + syst_JES_EtaIntercalibration_Stat239: 3.55802655e-06 + syst_JES_EtaIntercalibration_Stat24: 1.15868366e-08 + syst_JES_EtaIntercalibration_Stat240: 6.81171718e-06 + syst_JES_EtaIntercalibration_Stat241: 2.57625228e-05 + syst_JES_EtaIntercalibration_Stat242: 3.24972213e-06 + syst_JES_EtaIntercalibration_Stat243: 1.06300280e-05 + syst_JES_EtaIntercalibration_Stat244: 9.15733546e-06 + syst_JES_EtaIntercalibration_Stat245: 1.01343695e-05 + syst_JES_EtaIntercalibration_Stat25: 1.07165055e-10 + syst_JES_EtaIntercalibration_Stat26: 6.97342843e-11 + syst_JES_EtaIntercalibration_Stat27: 4.90343084e-05 + syst_JES_EtaIntercalibration_Stat28: 1.48120271e-10 + syst_JES_EtaIntercalibration_Stat29: 1.17373706e-09 + syst_JES_EtaIntercalibration_Stat3: 3.00415425e-14 + syst_JES_EtaIntercalibration_Stat30: 1.31873553e-09 + syst_JES_EtaIntercalibration_Stat31: 8.20869393e-09 + syst_JES_EtaIntercalibration_Stat32: 3.22462044e-12 + syst_JES_EtaIntercalibration_Stat33: 4.89217727e-05 + syst_JES_EtaIntercalibration_Stat34: 4.81769751e-05 + syst_JES_EtaIntercalibration_Stat35: 3.02500035e-06 + syst_JES_EtaIntercalibration_Stat36: 1.13795738e-10 + syst_JES_EtaIntercalibration_Stat37: 1.39926177e-09 + syst_JES_EtaIntercalibration_Stat38: 4.10584803e-06 + syst_JES_EtaIntercalibration_Stat39: 7.16665942e-09 + syst_JES_EtaIntercalibration_Stat4: 1.90766419e-13 + syst_JES_EtaIntercalibration_Stat40: 4.79599292e-08 + syst_JES_EtaIntercalibration_Stat41: 5.13988046e-09 + syst_JES_EtaIntercalibration_Stat42: 1.87951155e-13 + syst_JES_EtaIntercalibration_Stat43: 2.12980562e-14 + syst_JES_EtaIntercalibration_Stat44: 2.12980562e-14 + syst_JES_EtaIntercalibration_Stat45: 9.28447380e-10 + syst_JES_EtaIntercalibration_Stat46: 1.25656884e-08 + syst_JES_EtaIntercalibration_Stat47: 5.23218587e-08 + syst_JES_EtaIntercalibration_Stat48: 6.84300805e-08 + syst_JES_EtaIntercalibration_Stat49: 4.89298274e-05 + syst_JES_EtaIntercalibration_Stat5: 1.06772425e-12 + syst_JES_EtaIntercalibration_Stat50: 2.72783205e-07 + syst_JES_EtaIntercalibration_Stat51: 8.78398467e-08 + syst_JES_EtaIntercalibration_Stat52: 1.39762964e-07 + syst_JES_EtaIntercalibration_Stat53: 1.59324305e-07 + syst_JES_EtaIntercalibration_Stat54: 3.66939529e-06 + syst_JES_EtaIntercalibration_Stat55: 4.89217751e-05 + syst_JES_EtaIntercalibration_Stat56: 2.98428030e-06 + syst_JES_EtaIntercalibration_Stat57: 2.96718121e-06 + syst_JES_EtaIntercalibration_Stat58: 3.70530809e-06 + syst_JES_EtaIntercalibration_Stat59: 1.50560591e-08 + syst_JES_EtaIntercalibration_Stat6: 1.06967469e-12 + syst_JES_EtaIntercalibration_Stat60: 6.45744537e-09 + syst_JES_EtaIntercalibration_Stat61: 4.67434562e-08 + syst_JES_EtaIntercalibration_Stat62: 5.31307213e-08 + syst_JES_EtaIntercalibration_Stat63: 7.46503161e-09 + syst_JES_EtaIntercalibration_Stat64: 1.71386427e-14 + syst_JES_EtaIntercalibration_Stat65: 2.12980562e-14 + syst_JES_EtaIntercalibration_Stat66: 2.12980562e-14 + syst_JES_EtaIntercalibration_Stat67: 1.27002285e-08 + syst_JES_EtaIntercalibration_Stat68: 3.20144731e-07 + syst_JES_EtaIntercalibration_Stat69: 4.62928391e-06 + syst_JES_EtaIntercalibration_Stat7: 2.12980562e-14 + syst_JES_EtaIntercalibration_Stat70: 5.15944926e-05 + syst_JES_EtaIntercalibration_Stat71: 4.67608220e-05 + syst_JES_EtaIntercalibration_Stat72: 4.81627791e-05 + syst_JES_EtaIntercalibration_Stat73: 8.02606959e-06 + syst_JES_EtaIntercalibration_Stat74: 3.27394840e-06 + syst_JES_EtaIntercalibration_Stat75: 3.78632506e-06 + syst_JES_EtaIntercalibration_Stat76: 3.69098683e-06 + syst_JES_EtaIntercalibration_Stat77: 4.48697070e-05 + syst_JES_EtaIntercalibration_Stat78: 3.15275688e-06 + syst_JES_EtaIntercalibration_Stat79: 3.37760183e-05 + syst_JES_EtaIntercalibration_Stat8: 1.30423426e-14 + syst_JES_EtaIntercalibration_Stat80: 2.90586949e-06 + syst_JES_EtaIntercalibration_Stat81: 7.35418241e-07 + syst_JES_EtaIntercalibration_Stat82: 8.50532132e-06 + syst_JES_EtaIntercalibration_Stat83: 1.04083032e-06 + syst_JES_EtaIntercalibration_Stat84: 1.16644832e-06 + syst_JES_EtaIntercalibration_Stat85: 3.47990951e-06 + syst_JES_EtaIntercalibration_Stat86: 4.79233352e-09 + syst_JES_EtaIntercalibration_Stat87: 1.30423426e-14 + syst_JES_EtaIntercalibration_Stat88: 1.54658786e-09 + syst_JES_EtaIntercalibration_Stat89: 2.74210023e-06 + syst_JES_EtaIntercalibration_Stat9: 5.43613145e-12 + syst_JES_EtaIntercalibration_Stat90: 6.12963659e-06 + syst_JES_EtaIntercalibration_Stat91: 3.72505464e-05 + syst_JES_EtaIntercalibration_Stat92: 3.75000357e-06 + syst_JES_EtaIntercalibration_Stat93: 4.44664562e-05 + syst_JES_EtaIntercalibration_Stat94: 1.22674947e-06 + syst_JES_EtaIntercalibration_Stat95: 4.26780773e-06 + syst_JES_EtaIntercalibration_Stat96: 5.85510570e-06 + syst_JES_EtaIntercalibration_Stat97: 5.18107283e-06 + syst_JES_EtaIntercalibration_Stat98: 2.91716000e-05 + syst_JES_EtaIntercalibration_Stat99: 8.54364657e-06 + syst_JES_EtaIntercalibration_TotalStat_MJB: 4.84363851e-03 + syst_JES_Flavour_Comp: 1.58500662e-02 + syst_JES_Flavour_Response: 3.98732544e-02 + syst_JES_Gjet_Generator: 5.10739914e-02 + syst_JES_Gjet_OOC: 3.65324328e-02 + syst_JES_Gjet_Purity: 1.18679556e-02 + syst_JES_Gjet_Stat1: 3.45015861e-10 + syst_JES_Gjet_Stat10: 2.37777349e-03 + syst_JES_Gjet_Stat11: 3.70357349e-03 + syst_JES_Gjet_Stat12: 6.41263571e-03 + syst_JES_Gjet_Stat13: 4.35093855e-03 + syst_JES_Gjet_Stat14: 3.31562347e-04 + syst_JES_Gjet_Stat15: 3.57763564e-04 + syst_JES_Gjet_Stat2: 2.57902365e-12 + syst_JES_Gjet_Stat3: 3.78311654e-10 + syst_JES_Gjet_Stat4: 7.71285209e-07 + syst_JES_Gjet_Stat5: 1.76226225e-08 + syst_JES_Gjet_Stat6: 2.95128497e-04 + syst_JES_Gjet_Stat7: 5.25338412e-04 + syst_JES_Gjet_Stat8: 3.06050290e-04 + syst_JES_Gjet_Stat9: 1.10100450e-03 + syst_JES_Gjet_Veto: 1.96777050e-02 + syst_JES_Gjet_dPhi: 2.69348120e-03 + syst_JES_LArESZee: 6.82882382e-02 + syst_JES_LArEsmear: 5.12301520e-03 + syst_JES_LAr_JVT: 7.11527716e-03 + syst_JES_MJB_Alpha: 9.70755169e-05 + syst_JES_MJB_Asym: 1.36707276e-03 + syst_JES_MJB_Beta: 2.58587594e-11 + syst_JES_MJB_Fragmentation: 4.95837844e-03 syst_JES_MJB_Stat1: 0.0 syst_JES_MJB_Stat10: 0.0 syst_JES_MJB_Stat11: 0.0 - syst_JES_MJB_Stat12: 1.2288900479701186e-26 + syst_JES_MJB_Stat12: 1.22889005e-26 syst_JES_MJB_Stat13: 0.0 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 - syst_JES_MJB_Stat16: 5.2991717429707105e-16 - syst_JES_MJB_Stat2: 0.0003764612430250955 - syst_JES_MJB_Stat3: 0.0001516410482026552 - syst_JES_MJB_Stat4: 3.3727359350384963e-06 - syst_JES_MJB_Stat5: 2.9179530852123035e-05 + syst_JES_MJB_Stat16: 5.29917174e-16 + syst_JES_MJB_Stat2: 3.76461243e-04 + syst_JES_MJB_Stat3: 1.51641048e-04 + syst_JES_MJB_Stat4: 3.37273594e-06 + syst_JES_MJB_Stat5: 2.91795309e-05 syst_JES_MJB_Stat6: 0.0 syst_JES_MJB_Stat7: 0.0 syst_JES_MJB_Stat8: 0.0 - syst_JES_MJB_Stat9: 9.89780433985235e-12 - syst_JES_MJB_Threshold: 0.0018456093844581522 - syst_JES_Pileup_MuOffset: 0.00396610069841904 - syst_JES_Pileup_NPVOffset: 0.005433247164449635 - syst_JES_Pileup_Pt_term: 0.010798816740735996 - syst_JES_Pileup_Rho_topology: 0.016930672609202505 - syst_JES_PunchThrough_MC15: 0.0008707005627654091 - syst_JES_SingleParticle_HighPt: 4.80691189850615e-06 - syst_JES_Zjet_MC: 0.044883678547997824 - syst_JES_Zjet_MuScale: 0.002507557925552269 - syst_JES_Zjet_MuSmearID: 0.00029951909788859875 - syst_JES_Zjet_MuSmearMS: 0.008647284703882487 - syst_JES_Zjet_OOC: 0.016956599747590905 - syst_JES_Zjet_Stat1: 0.00025912688011860136 - syst_JES_Zjet_Stat10: 0.0019009010179385983 - syst_JES_Zjet_Stat11: 0.002907991188088437 - syst_JES_Zjet_Stat12: 0.013500880739788794 - syst_JES_Zjet_Stat13: 0.00598203276487182 + syst_JES_MJB_Stat9: 9.89780434e-12 + syst_JES_MJB_Threshold: 1.84560938e-03 + syst_JES_Pileup_MuOffset: 3.96610070e-03 + syst_JES_Pileup_NPVOffset: 5.43324716e-03 + syst_JES_Pileup_Pt_term: 1.07988167e-02 + syst_JES_Pileup_Rho_topology: 1.69306726e-02 + syst_JES_PunchThrough_MC15: 8.70700563e-04 + syst_JES_SingleParticle_HighPt: 4.80691190e-06 + syst_JES_Zjet_MC: 4.48836785e-02 + syst_JES_Zjet_MuScale: 2.50755793e-03 + syst_JES_Zjet_MuSmearID: 2.99519098e-04 + syst_JES_Zjet_MuSmearMS: 8.64728470e-03 + syst_JES_Zjet_OOC: 1.69565997e-02 + syst_JES_Zjet_Stat1: 2.59126880e-04 + syst_JES_Zjet_Stat10: 1.90090102e-03 + syst_JES_Zjet_Stat11: 2.90799119e-03 + syst_JES_Zjet_Stat12: 1.35008807e-02 + syst_JES_Zjet_Stat13: 5.98203276e-03 syst_JES_Zjet_Stat2: 0.0 - syst_JES_Zjet_Stat3: 8.97191823747401e-09 - syst_JES_Zjet_Stat4: 3.165322850832123e-11 - syst_JES_Zjet_Stat5: 8.259233528050847e-07 - syst_JES_Zjet_Stat6: 0.0002268275721776345 - syst_JES_Zjet_Stat7: 0.0002473819465927132 - syst_JES_Zjet_Stat8: 0.00029609212671058985 - syst_JES_Zjet_Stat9: 0.0006817418921410067 - syst_JES_Zjet_Veto: 0.003647282647053831 - syst_JES_Zjet_dPhi: 0.002701023694823872 + syst_JES_Zjet_Stat3: 8.97191824e-09 + syst_JES_Zjet_Stat4: 3.16532285e-11 + syst_JES_Zjet_Stat5: 8.25923353e-07 + syst_JES_Zjet_Stat6: 2.26827572e-04 + syst_JES_Zjet_Stat7: 2.47381947e-04 + syst_JES_Zjet_Stat8: 2.96092127e-04 + syst_JES_Zjet_Stat9: 6.81741892e-04 + syst_JES_Zjet_Veto: 3.64728265e-03 + syst_JES_Zjet_dPhi: 2.70102369e-03 syst_PRW: 0.0 - syst_Unfolding_bias: 6.413e-10 - syst_cleaning: 0.022447378466092648 + syst_Unfolding_bias: 6.41300000e-10 + syst_cleaning: 2.24473785e-02 syst_lumi: 0.05316 - stat: 0.015299 - syst_JER_CROSS_CALIB_FORWARD: 1.849e-06 + syst_JER_CROSS_CALIB_FORWARD: 1.84900000e-06 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.002572752611503873 - syst_JER_NP1: 0.0004790947166270987 - syst_JER_NP2: 2.0005186827420532e-10 - syst_JER_NP3: 0.0006966041487100115 - syst_JER_NP4: 2.7297120727285505e-08 + syst_JER_NP0: 2.57275261e-03 + syst_JER_NP1: 4.79094717e-04 + syst_JER_NP2: 2.00051868e-10 + syst_JER_NP3: 6.96604149e-04 + syst_JER_NP4: 2.72971207e-08 syst_JER_NP5: 0.0 syst_JER_NP6: 0.0 - syst_JER_NP7: 0.0003372389524876982 - syst_JER_NP8: 0.0005873575635845682 - syst_JES_EtaIntercalibration_Modelling: 0.030996810723040523 - syst_JES_EtaIntercalibration_NonClosure: 0.0027485524826715603 - syst_JES_EtaIntercalibration_Stat0: 1.5147641466578222e-15 - syst_JES_EtaIntercalibration_Stat1: 1.5147641466578222e-15 - syst_JES_EtaIntercalibration_Stat10: 3.3535400720432724e-13 - syst_JES_EtaIntercalibration_Stat100: 2.391201495472098e-05 - syst_JES_EtaIntercalibration_Stat101: 1.4870404336130206e-06 - syst_JES_EtaIntercalibration_Stat102: 1.8787421501988523e-06 - syst_JES_EtaIntercalibration_Stat103: 6.0610107036698096e-06 - syst_JES_EtaIntercalibration_Stat104: 1.7656522873997584e-06 - syst_JES_EtaIntercalibration_Stat105: 4.757904604642153e-07 - syst_JES_EtaIntercalibration_Stat106: 2.9747200675021507e-07 - syst_JES_EtaIntercalibration_Stat107: 3.5749535454979195e-10 - syst_JES_EtaIntercalibration_Stat108: 4.1948214205136315e-09 - syst_JES_EtaIntercalibration_Stat109: 2.895647941307782e-06 - syst_JES_EtaIntercalibration_Stat11: 2.63704735447864e-05 - syst_JES_EtaIntercalibration_Stat110: 1.146088033267951e-05 - syst_JES_EtaIntercalibration_Stat111: 2.4952586298818805e-05 - syst_JES_EtaIntercalibration_Stat112: 1.6328818106341928e-05 - syst_JES_EtaIntercalibration_Stat113: 8.225214100556896e-06 - syst_JES_EtaIntercalibration_Stat114: 1.6100954847461686e-05 - syst_JES_EtaIntercalibration_Stat115: 9.964268199421371e-06 - syst_JES_EtaIntercalibration_Stat116: 3.438530354671891e-06 - syst_JES_EtaIntercalibration_Stat117: 3.3418531041923437e-06 - syst_JES_EtaIntercalibration_Stat118: 9.09810810003926e-06 - syst_JES_EtaIntercalibration_Stat119: 8.804352203313996e-06 - syst_JES_EtaIntercalibration_Stat12: 9.275998099935122e-16 - syst_JES_EtaIntercalibration_Stat120: 1.3619929221548839e-05 - syst_JES_EtaIntercalibration_Stat121: 7.4970538880282835e-06 - syst_JES_EtaIntercalibration_Stat122: 4.762539448655518e-06 - syst_JES_EtaIntercalibration_Stat123: 1.3489836322209398e-05 - syst_JES_EtaIntercalibration_Stat124: 5.022649312862684e-06 - syst_JES_EtaIntercalibration_Stat125: 8.046067379161075e-06 - syst_JES_EtaIntercalibration_Stat126: 1.032487826502085e-06 - syst_JES_EtaIntercalibration_Stat127: 4.4938058215852763e-07 - syst_JES_EtaIntercalibration_Stat128: 4.4288775177803234e-05 - syst_JES_EtaIntercalibration_Stat129: 9.089575292608562e-05 - syst_JES_EtaIntercalibration_Stat13: 2.492421111782414e-06 - syst_JES_EtaIntercalibration_Stat130: 0.00015874529126874915 - syst_JES_EtaIntercalibration_Stat131: 3.641249373498058e-05 - syst_JES_EtaIntercalibration_Stat132: 0.0001376980185042617 - syst_JES_EtaIntercalibration_Stat133: 0.000134176103964156 - syst_JES_EtaIntercalibration_Stat134: 7.94659795132483e-05 - syst_JES_EtaIntercalibration_Stat135: 8.7874322756992e-06 - syst_JES_EtaIntercalibration_Stat136: 2.3435487513597835e-05 - syst_JES_EtaIntercalibration_Stat137: 9.377583643988465e-06 - syst_JES_EtaIntercalibration_Stat138: 0.00010004133249187557 - syst_JES_EtaIntercalibration_Stat139: 4.918668079876909e-05 - syst_JES_EtaIntercalibration_Stat14: 2.5738274997381517e-06 - syst_JES_EtaIntercalibration_Stat140: 0.0001097244598984201 - syst_JES_EtaIntercalibration_Stat141: 0.0001560619988978739 - syst_JES_EtaIntercalibration_Stat142: 0.00011701990119206218 - syst_JES_EtaIntercalibration_Stat143: 0.00015051188283653885 - syst_JES_EtaIntercalibration_Stat144: 0.0002403750586063371 - syst_JES_EtaIntercalibration_Stat145: 6.565286794002224e-05 - syst_JES_EtaIntercalibration_Stat146: 0.00011970755008770332 - syst_JES_EtaIntercalibration_Stat147: 0.00011134488616456528 - syst_JES_EtaIntercalibration_Stat148: 0.00016502972058086992 - syst_JES_EtaIntercalibration_Stat149: 1.8200344962390137e-05 - syst_JES_EtaIntercalibration_Stat15: 3.354932902516941e-13 - syst_JES_EtaIntercalibration_Stat150: 0.00013280392765276184 - syst_JES_EtaIntercalibration_Stat151: 0.00016581303567572724 - syst_JES_EtaIntercalibration_Stat152: 9.99323190964765e-05 - syst_JES_EtaIntercalibration_Stat153: 9.459595485537424e-05 - syst_JES_EtaIntercalibration_Stat154: 2.8774013049972713e-05 - syst_JES_EtaIntercalibration_Stat155: 5.9581106038323925e-05 - syst_JES_EtaIntercalibration_Stat156: 5.670930875967367e-05 - syst_JES_EtaIntercalibration_Stat157: 0.00018633761697520984 - syst_JES_EtaIntercalibration_Stat158: 0.0001279806003853709 - syst_JES_EtaIntercalibration_Stat159: 0.00019425896324236884 - syst_JES_EtaIntercalibration_Stat16: 3.5862556528362555e-15 - syst_JES_EtaIntercalibration_Stat160: 9.665684864467701e-05 - syst_JES_EtaIntercalibration_Stat161: 0.00018029847333796256 - syst_JES_EtaIntercalibration_Stat162: 0.00013694912205633157 - syst_JES_EtaIntercalibration_Stat163: 9.286105756451409e-05 - syst_JES_EtaIntercalibration_Stat164: 0.00020797026404452632 - syst_JES_EtaIntercalibration_Stat165: 0.0002122375056393191 - syst_JES_EtaIntercalibration_Stat166: 0.0001634635454008018 - syst_JES_EtaIntercalibration_Stat167: 0.00019775390490898024 - syst_JES_EtaIntercalibration_Stat168: 0.00027126155274937136 - syst_JES_EtaIntercalibration_Stat169: 0.00019236797542405545 - syst_JES_EtaIntercalibration_Stat17: 2.210962941424995e-06 - syst_JES_EtaIntercalibration_Stat170: 6.966000484496107e-05 - syst_JES_EtaIntercalibration_Stat171: 0.00017023066138331248 - syst_JES_EtaIntercalibration_Stat172: 5.271485250856726e-05 - syst_JES_EtaIntercalibration_Stat173: 4.320747707284006e-05 - syst_JES_EtaIntercalibration_Stat174: 0.0001661541895349016 - syst_JES_EtaIntercalibration_Stat175: 0.00013857741701572447 - syst_JES_EtaIntercalibration_Stat176: 5.121454944642197e-05 - syst_JES_EtaIntercalibration_Stat177: 0.00031318211071994516 - syst_JES_EtaIntercalibration_Stat178: 0.0002506926777949448 - syst_JES_EtaIntercalibration_Stat179: 5.376455616853914e-05 - syst_JES_EtaIntercalibration_Stat18: 1.9326177344472442e-15 - syst_JES_EtaIntercalibration_Stat180: 0.00011221525922529432 - syst_JES_EtaIntercalibration_Stat181: 0.000185329912048757 - syst_JES_EtaIntercalibration_Stat182: 0.0004961475484198224 - syst_JES_EtaIntercalibration_Stat183: 0.00016908454435799272 - syst_JES_EtaIntercalibration_Stat184: 1.9658800943605503e-06 - syst_JES_EtaIntercalibration_Stat185: 0.0005256137276318037 - syst_JES_EtaIntercalibration_Stat186: 0.0005982148610658213 - syst_JES_EtaIntercalibration_Stat187: 0.00040683509583122255 - syst_JES_EtaIntercalibration_Stat188: 0.00029427543220595227 - syst_JES_EtaIntercalibration_Stat189: 0.0001342578268668162 - syst_JES_EtaIntercalibration_Stat19: 1.8043701033878832e-15 - syst_JES_EtaIntercalibration_Stat190: 0.00018956247294955297 - syst_JES_EtaIntercalibration_Stat191: 0.00023567590182282106 - syst_JES_EtaIntercalibration_Stat192: 9.942351230971475e-05 - syst_JES_EtaIntercalibration_Stat193: 0.0007229750410629677 - syst_JES_EtaIntercalibration_Stat194: 5.075774893787228e-05 - syst_JES_EtaIntercalibration_Stat195: 2.9077846687813732e-05 - syst_JES_EtaIntercalibration_Stat196: 0.0002840449040204735 - syst_JES_EtaIntercalibration_Stat197: 0.00033006771518394524 - syst_JES_EtaIntercalibration_Stat198: 0.0003072939309521097 - syst_JES_EtaIntercalibration_Stat199: 0.00022137642150870537 - syst_JES_EtaIntercalibration_Stat2: 2.1358427628222078e-15 - syst_JES_EtaIntercalibration_Stat20: 1.5147641466578222e-15 - syst_JES_EtaIntercalibration_Stat200: 0.00021987159889353606 - syst_JES_EtaIntercalibration_Stat201: 0.0002998202253017631 - syst_JES_EtaIntercalibration_Stat202: 0.0001356947604994386 - syst_JES_EtaIntercalibration_Stat203: 3.0076908430721402e-05 - syst_JES_EtaIntercalibration_Stat204: 0.00015366370122771352 - syst_JES_EtaIntercalibration_Stat205: 3.805896313616544e-05 - syst_JES_EtaIntercalibration_Stat206: 0.0002270123653724616 - syst_JES_EtaIntercalibration_Stat207: 0.0002910353372015158 - syst_JES_EtaIntercalibration_Stat208: 0.00030676921793915373 - syst_JES_EtaIntercalibration_Stat209: 0.0002060900773933573 - syst_JES_EtaIntercalibration_Stat21: 1.5147641466578222e-15 - syst_JES_EtaIntercalibration_Stat210: 6.750707129627236e-05 - syst_JES_EtaIntercalibration_Stat211: 0.00041275762863937475 - syst_JES_EtaIntercalibration_Stat212: 7.296946634552017e-05 - syst_JES_EtaIntercalibration_Stat213: 3.729454667910578e-05 - syst_JES_EtaIntercalibration_Stat214: 1.7181232301773351e-06 - syst_JES_EtaIntercalibration_Stat215: 2.3622945810165168e-05 - syst_JES_EtaIntercalibration_Stat216: 5.0456398570944396e-05 - syst_JES_EtaIntercalibration_Stat217: 2.0396192506200758e-05 - syst_JES_EtaIntercalibration_Stat218: 4.7958599528655965e-05 - syst_JES_EtaIntercalibration_Stat219: 1.7928841310859996e-05 - syst_JES_EtaIntercalibration_Stat22: 1.5147641466578222e-15 - syst_JES_EtaIntercalibration_Stat220: 1.4764571653793414e-05 - syst_JES_EtaIntercalibration_Stat221: 1.4935283458977268e-05 - syst_JES_EtaIntercalibration_Stat222: 3.755952176182176e-05 - syst_JES_EtaIntercalibration_Stat223: 7.1675557898072896e-06 - syst_JES_EtaIntercalibration_Stat224: 3.63605803034e-05 - syst_JES_EtaIntercalibration_Stat225: 2.9770180970225894e-05 - syst_JES_EtaIntercalibration_Stat226: 2.3524299670765975e-05 - syst_JES_EtaIntercalibration_Stat227: 4.4044474304389195e-05 - syst_JES_EtaIntercalibration_Stat228: 6.472160672256213e-05 - syst_JES_EtaIntercalibration_Stat229: 1.4650931395307261e-05 - syst_JES_EtaIntercalibration_Stat23: 2.1358427628222078e-15 - syst_JES_EtaIntercalibration_Stat230: 1.2720155531284788e-05 - syst_JES_EtaIntercalibration_Stat231: 3.3756556281706225e-05 - syst_JES_EtaIntercalibration_Stat232: 9.23096517295456e-06 - syst_JES_EtaIntercalibration_Stat233: 2.5703638779219703e-05 - syst_JES_EtaIntercalibration_Stat234: 3.175661768435046e-05 - syst_JES_EtaIntercalibration_Stat235: 4.617689137165905e-05 - syst_JES_EtaIntercalibration_Stat236: 2.4658472519602666e-05 - syst_JES_EtaIntercalibration_Stat237: 9.276194040301511e-16 - syst_JES_EtaIntercalibration_Stat238: 1.8179823761522004e-06 - syst_JES_EtaIntercalibration_Stat239: 2.645399213729376e-06 - syst_JES_EtaIntercalibration_Stat24: 7.998208268574906e-10 - syst_JES_EtaIntercalibration_Stat240: 3.6633828628741497e-06 - syst_JES_EtaIntercalibration_Stat241: 5.577034583898507e-06 - syst_JES_EtaIntercalibration_Stat242: 2.3043164431127944e-06 - syst_JES_EtaIntercalibration_Stat243: 3.5087688724109485e-06 - syst_JES_EtaIntercalibration_Stat244: 3.83691203964855e-06 - syst_JES_EtaIntercalibration_Stat245: 6.509282909814261e-06 - syst_JES_EtaIntercalibration_Stat25: 6.459887537720761e-12 - syst_JES_EtaIntercalibration_Stat26: 4.202103795422003e-12 - syst_JES_EtaIntercalibration_Stat27: 2.6370470568130838e-05 - syst_JES_EtaIntercalibration_Stat28: 8.89127932302208e-12 - syst_JES_EtaIntercalibration_Stat29: 7.298948052116826e-11 - syst_JES_EtaIntercalibration_Stat3: 2.1358427628222078e-15 - syst_JES_EtaIntercalibration_Stat30: 8.188117508976041e-11 - syst_JES_EtaIntercalibration_Stat31: 5.900069107222389e-10 - syst_JES_EtaIntercalibration_Stat32: 2.1198907990743297e-13 - syst_JES_EtaIntercalibration_Stat33: 2.6361813145417374e-05 - syst_JES_EtaIntercalibration_Stat34: 2.6301190423762297e-05 - syst_JES_EtaIntercalibration_Stat35: 1.6263941286829763e-06 - syst_JES_EtaIntercalibration_Stat36: 6.8433327407046335e-12 - syst_JES_EtaIntercalibration_Stat37: 8.400260999963037e-11 - syst_JES_EtaIntercalibration_Stat38: 2.208366044050304e-06 - syst_JES_EtaIntercalibration_Stat39: 4.920951750662028e-10 - syst_JES_EtaIntercalibration_Stat4: 1.4097496441123862e-14 - syst_JES_EtaIntercalibration_Stat40: 3.2930251860194564e-09 - syst_JES_EtaIntercalibration_Stat41: 3.6234674255142283e-10 - syst_JES_EtaIntercalibration_Stat42: 1.3913849227298676e-14 - syst_JES_EtaIntercalibration_Stat43: 1.5147641466578222e-15 - syst_JES_EtaIntercalibration_Stat44: 1.5147641466578222e-15 - syst_JES_EtaIntercalibration_Stat45: 5.793301042835315e-11 - syst_JES_EtaIntercalibration_Stat46: 8.698007346046277e-10 - syst_JES_EtaIntercalibration_Stat47: 5.101498131676616e-09 - syst_JES_EtaIntercalibration_Stat48: 5.661205320424264e-09 - syst_JES_EtaIntercalibration_Stat49: 2.63617756683828e-05 - syst_JES_EtaIntercalibration_Stat5: 7.071381319026362e-14 - syst_JES_EtaIntercalibration_Stat50: 2.9671768189140248e-08 - syst_JES_EtaIntercalibration_Stat51: 1.826354775249048e-08 - syst_JES_EtaIntercalibration_Stat52: 1.1464629338971235e-08 - syst_JES_EtaIntercalibration_Stat53: 1.3052892661398852e-08 - syst_JES_EtaIntercalibration_Stat54: 7.799316529141961e-07 - syst_JES_EtaIntercalibration_Stat55: 2.6361813296890985e-05 - syst_JES_EtaIntercalibration_Stat56: 1.510345731256119e-06 - syst_JES_EtaIntercalibration_Stat57: 1.5077079129654622e-06 - syst_JES_EtaIntercalibration_Stat58: 1.9924613215337457e-06 - syst_JES_EtaIntercalibration_Stat59: 1.0039836964313712e-09 - syst_JES_EtaIntercalibration_Stat6: 7.085280112140944e-14 - syst_JES_EtaIntercalibration_Stat60: 4.4579758949719265e-10 - syst_JES_EtaIntercalibration_Stat61: 3.2155824460741166e-09 - syst_JES_EtaIntercalibration_Stat62: 3.6797474111064096e-09 - syst_JES_EtaIntercalibration_Stat63: 5.165490604724782e-10 - syst_JES_EtaIntercalibration_Stat64: 1.419415636802695e-15 - syst_JES_EtaIntercalibration_Stat65: 1.5147641466578222e-15 - syst_JES_EtaIntercalibration_Stat66: 1.5147641466578222e-15 - syst_JES_EtaIntercalibration_Stat67: 8.643413239571506e-10 - syst_JES_EtaIntercalibration_Stat68: 3.421175124134981e-08 - syst_JES_EtaIntercalibration_Stat69: 1.8485733634346245e-06 - syst_JES_EtaIntercalibration_Stat7: 1.5147641466578222e-15 - syst_JES_EtaIntercalibration_Stat70: 2.6745237347049287e-05 - syst_JES_EtaIntercalibration_Stat71: 2.617218004427602e-05 - syst_JES_EtaIntercalibration_Stat72: 2.629162435134191e-05 - syst_JES_EtaIntercalibration_Stat73: 4.3729903972081856e-06 - syst_JES_EtaIntercalibration_Stat74: 1.8388717885431815e-06 - syst_JES_EtaIntercalibration_Stat75: 7.877276703912336e-07 - syst_JES_EtaIntercalibration_Stat76: 7.743990177111948e-07 - syst_JES_EtaIntercalibration_Stat77: 2.590952085870927e-05 - syst_JES_EtaIntercalibration_Stat78: 1.5762187282328553e-06 - syst_JES_EtaIntercalibration_Stat79: 2.385018821396018e-05 - syst_JES_EtaIntercalibration_Stat8: 9.275998099935122e-16 - syst_JES_EtaIntercalibration_Stat80: 1.4913848698441324e-06 - syst_JES_EtaIntercalibration_Stat81: 1.4404069698248018e-07 - syst_JES_EtaIntercalibration_Stat82: 4.862358686892607e-06 - syst_JES_EtaIntercalibration_Stat83: 1.6739100437896895e-07 - syst_JES_EtaIntercalibration_Stat84: 5.289779012397399e-07 - syst_JES_EtaIntercalibration_Stat85: 4.266848485709329e-07 - syst_JES_EtaIntercalibration_Stat86: 3.394046630203829e-10 - syst_JES_EtaIntercalibration_Stat87: 9.275998099935122e-16 - syst_JES_EtaIntercalibration_Stat88: 9.631294097887365e-11 - syst_JES_EtaIntercalibration_Stat89: 4.889228293657394e-07 - syst_JES_EtaIntercalibration_Stat9: 3.3535400720432724e-13 - syst_JES_EtaIntercalibration_Stat90: 2.1165406020201925e-06 - syst_JES_EtaIntercalibration_Stat91: 2.4156098608839963e-05 - syst_JES_EtaIntercalibration_Stat92: 5.0309449093261786e-06 - syst_JES_EtaIntercalibration_Stat93: 2.5866284802290413e-05 - syst_JES_EtaIntercalibration_Stat94: 1.3083867432834987e-07 - syst_JES_EtaIntercalibration_Stat95: 1.944812245918613e-06 - syst_JES_EtaIntercalibration_Stat96: 2.2617694024811637e-06 - syst_JES_EtaIntercalibration_Stat97: 9.088371785281454e-07 - syst_JES_EtaIntercalibration_Stat98: 2.288571138210907e-05 - syst_JES_EtaIntercalibration_Stat99: 2.026463175091025e-06 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.003401993184884414 - syst_JES_Flavour_Comp: 0.010943120064679908 - syst_JES_Flavour_Response: 0.018129480825440095 - syst_JES_Gjet_Generator: 0.027864396638003844 - syst_JES_Gjet_OOC: 0.02056841449893501 - syst_JES_Gjet_Purity: 0.006550328236050465 - syst_JES_Gjet_Stat1: 2.1312885187135035e-11 - syst_JES_Gjet_Stat10: 0.001111636860669886 - syst_JES_Gjet_Stat11: 0.0015088028366887437 - syst_JES_Gjet_Stat12: 0.003415274073921448 - syst_JES_Gjet_Stat13: 0.0033999695219222186 - syst_JES_Gjet_Stat14: 0.000724888094811882 - syst_JES_Gjet_Stat15: 0.0004392815355782667 - syst_JES_Gjet_Stat2: 1.9338346363819536e-13 - syst_JES_Gjet_Stat3: 2.3072563235522836e-11 - syst_JES_Gjet_Stat4: 5.29655234839577e-08 - syst_JES_Gjet_Stat5: 1.0598041211596604e-09 - syst_JES_Gjet_Stat6: 0.00015535362081393534 - syst_JES_Gjet_Stat7: 0.0002569477378767908 - syst_JES_Gjet_Stat8: 0.0001262476363145069 - syst_JES_Gjet_Stat9: 0.0004878866364228477 - syst_JES_Gjet_Veto: 0.012414743281679248 - syst_JES_Gjet_dPhi: 0.0014696240165430069 - syst_JES_LArESZee: 0.03955186492126509 - syst_JES_LArEsmear: 0.0028159976917604174 - syst_JES_LAr_JVT: 0.003618724464504033 - syst_JES_MJB_Alpha: 0.00011884600755628057 - syst_JES_MJB_Asym: 0.0009671651087068845 - syst_JES_MJB_Beta: 1.3746138543616531e-08 - syst_JES_MJB_Fragmentation: 0.0032865988498750496 + syst_JER_NP7: 3.37238952e-04 + syst_JER_NP8: 5.87357564e-04 + syst_JES_EtaIntercalibration_Modelling: 3.09968107e-02 + syst_JES_EtaIntercalibration_NonClosure: 2.74855248e-03 + syst_JES_EtaIntercalibration_Stat0: 1.51476415e-15 + syst_JES_EtaIntercalibration_Stat1: 1.51476415e-15 + syst_JES_EtaIntercalibration_Stat10: 3.35354007e-13 + syst_JES_EtaIntercalibration_Stat100: 2.39120150e-05 + syst_JES_EtaIntercalibration_Stat101: 1.48704043e-06 + syst_JES_EtaIntercalibration_Stat102: 1.87874215e-06 + syst_JES_EtaIntercalibration_Stat103: 6.06101070e-06 + syst_JES_EtaIntercalibration_Stat104: 1.76565229e-06 + syst_JES_EtaIntercalibration_Stat105: 4.75790460e-07 + syst_JES_EtaIntercalibration_Stat106: 2.97472007e-07 + syst_JES_EtaIntercalibration_Stat107: 3.57495355e-10 + syst_JES_EtaIntercalibration_Stat108: 4.19482142e-09 + syst_JES_EtaIntercalibration_Stat109: 2.89564794e-06 + syst_JES_EtaIntercalibration_Stat11: 2.63704735e-05 + syst_JES_EtaIntercalibration_Stat110: 1.14608803e-05 + syst_JES_EtaIntercalibration_Stat111: 2.49525863e-05 + syst_JES_EtaIntercalibration_Stat112: 1.63288181e-05 + syst_JES_EtaIntercalibration_Stat113: 8.22521410e-06 + syst_JES_EtaIntercalibration_Stat114: 1.61009548e-05 + syst_JES_EtaIntercalibration_Stat115: 9.96426820e-06 + syst_JES_EtaIntercalibration_Stat116: 3.43853035e-06 + syst_JES_EtaIntercalibration_Stat117: 3.34185310e-06 + syst_JES_EtaIntercalibration_Stat118: 9.09810810e-06 + syst_JES_EtaIntercalibration_Stat119: 8.80435220e-06 + syst_JES_EtaIntercalibration_Stat12: 9.27599810e-16 + syst_JES_EtaIntercalibration_Stat120: 1.36199292e-05 + syst_JES_EtaIntercalibration_Stat121: 7.49705389e-06 + syst_JES_EtaIntercalibration_Stat122: 4.76253945e-06 + syst_JES_EtaIntercalibration_Stat123: 1.34898363e-05 + syst_JES_EtaIntercalibration_Stat124: 5.02264931e-06 + syst_JES_EtaIntercalibration_Stat125: 8.04606738e-06 + syst_JES_EtaIntercalibration_Stat126: 1.03248783e-06 + syst_JES_EtaIntercalibration_Stat127: 4.49380582e-07 + syst_JES_EtaIntercalibration_Stat128: 4.42887752e-05 + syst_JES_EtaIntercalibration_Stat129: 9.08957529e-05 + syst_JES_EtaIntercalibration_Stat13: 2.49242111e-06 + syst_JES_EtaIntercalibration_Stat130: 1.58745291e-04 + syst_JES_EtaIntercalibration_Stat131: 3.64124937e-05 + syst_JES_EtaIntercalibration_Stat132: 1.37698019e-04 + syst_JES_EtaIntercalibration_Stat133: 1.34176104e-04 + syst_JES_EtaIntercalibration_Stat134: 7.94659795e-05 + syst_JES_EtaIntercalibration_Stat135: 8.78743228e-06 + syst_JES_EtaIntercalibration_Stat136: 2.34354875e-05 + syst_JES_EtaIntercalibration_Stat137: 9.37758364e-06 + syst_JES_EtaIntercalibration_Stat138: 1.00041332e-04 + syst_JES_EtaIntercalibration_Stat139: 4.91866808e-05 + syst_JES_EtaIntercalibration_Stat14: 2.57382750e-06 + syst_JES_EtaIntercalibration_Stat140: 1.09724460e-04 + syst_JES_EtaIntercalibration_Stat141: 1.56061999e-04 + syst_JES_EtaIntercalibration_Stat142: 1.17019901e-04 + syst_JES_EtaIntercalibration_Stat143: 1.50511883e-04 + syst_JES_EtaIntercalibration_Stat144: 2.40375059e-04 + syst_JES_EtaIntercalibration_Stat145: 6.56528679e-05 + syst_JES_EtaIntercalibration_Stat146: 1.19707550e-04 + syst_JES_EtaIntercalibration_Stat147: 1.11344886e-04 + syst_JES_EtaIntercalibration_Stat148: 1.65029721e-04 + syst_JES_EtaIntercalibration_Stat149: 1.82003450e-05 + syst_JES_EtaIntercalibration_Stat15: 3.35493290e-13 + syst_JES_EtaIntercalibration_Stat150: 1.32803928e-04 + syst_JES_EtaIntercalibration_Stat151: 1.65813036e-04 + syst_JES_EtaIntercalibration_Stat152: 9.99323191e-05 + syst_JES_EtaIntercalibration_Stat153: 9.45959549e-05 + syst_JES_EtaIntercalibration_Stat154: 2.87740130e-05 + syst_JES_EtaIntercalibration_Stat155: 5.95811060e-05 + syst_JES_EtaIntercalibration_Stat156: 5.67093088e-05 + syst_JES_EtaIntercalibration_Stat157: 1.86337617e-04 + syst_JES_EtaIntercalibration_Stat158: 1.27980600e-04 + syst_JES_EtaIntercalibration_Stat159: 1.94258963e-04 + syst_JES_EtaIntercalibration_Stat16: 3.58625565e-15 + syst_JES_EtaIntercalibration_Stat160: 9.66568486e-05 + syst_JES_EtaIntercalibration_Stat161: 1.80298473e-04 + syst_JES_EtaIntercalibration_Stat162: 1.36949122e-04 + syst_JES_EtaIntercalibration_Stat163: 9.28610576e-05 + syst_JES_EtaIntercalibration_Stat164: 2.07970264e-04 + syst_JES_EtaIntercalibration_Stat165: 2.12237506e-04 + syst_JES_EtaIntercalibration_Stat166: 1.63463545e-04 + syst_JES_EtaIntercalibration_Stat167: 1.97753905e-04 + syst_JES_EtaIntercalibration_Stat168: 2.71261553e-04 + syst_JES_EtaIntercalibration_Stat169: 1.92367975e-04 + syst_JES_EtaIntercalibration_Stat17: 2.21096294e-06 + syst_JES_EtaIntercalibration_Stat170: 6.96600048e-05 + syst_JES_EtaIntercalibration_Stat171: 1.70230661e-04 + syst_JES_EtaIntercalibration_Stat172: 5.27148525e-05 + syst_JES_EtaIntercalibration_Stat173: 4.32074771e-05 + syst_JES_EtaIntercalibration_Stat174: 1.66154190e-04 + syst_JES_EtaIntercalibration_Stat175: 1.38577417e-04 + syst_JES_EtaIntercalibration_Stat176: 5.12145494e-05 + syst_JES_EtaIntercalibration_Stat177: 3.13182111e-04 + syst_JES_EtaIntercalibration_Stat178: 2.50692678e-04 + syst_JES_EtaIntercalibration_Stat179: 5.37645562e-05 + syst_JES_EtaIntercalibration_Stat18: 1.93261773e-15 + syst_JES_EtaIntercalibration_Stat180: 1.12215259e-04 + syst_JES_EtaIntercalibration_Stat181: 1.85329912e-04 + syst_JES_EtaIntercalibration_Stat182: 4.96147548e-04 + syst_JES_EtaIntercalibration_Stat183: 1.69084544e-04 + syst_JES_EtaIntercalibration_Stat184: 1.96588009e-06 + syst_JES_EtaIntercalibration_Stat185: 5.25613728e-04 + syst_JES_EtaIntercalibration_Stat186: 5.98214861e-04 + syst_JES_EtaIntercalibration_Stat187: 4.06835096e-04 + syst_JES_EtaIntercalibration_Stat188: 2.94275432e-04 + syst_JES_EtaIntercalibration_Stat189: 1.34257827e-04 + syst_JES_EtaIntercalibration_Stat19: 1.80437010e-15 + syst_JES_EtaIntercalibration_Stat190: 1.89562473e-04 + syst_JES_EtaIntercalibration_Stat191: 2.35675902e-04 + syst_JES_EtaIntercalibration_Stat192: 9.94235123e-05 + syst_JES_EtaIntercalibration_Stat193: 7.22975041e-04 + syst_JES_EtaIntercalibration_Stat194: 5.07577489e-05 + syst_JES_EtaIntercalibration_Stat195: 2.90778467e-05 + syst_JES_EtaIntercalibration_Stat196: 2.84044904e-04 + syst_JES_EtaIntercalibration_Stat197: 3.30067715e-04 + syst_JES_EtaIntercalibration_Stat198: 3.07293931e-04 + syst_JES_EtaIntercalibration_Stat199: 2.21376422e-04 + syst_JES_EtaIntercalibration_Stat2: 2.13584276e-15 + syst_JES_EtaIntercalibration_Stat20: 1.51476415e-15 + syst_JES_EtaIntercalibration_Stat200: 2.19871599e-04 + syst_JES_EtaIntercalibration_Stat201: 2.99820225e-04 + syst_JES_EtaIntercalibration_Stat202: 1.35694760e-04 + syst_JES_EtaIntercalibration_Stat203: 3.00769084e-05 + syst_JES_EtaIntercalibration_Stat204: 1.53663701e-04 + syst_JES_EtaIntercalibration_Stat205: 3.80589631e-05 + syst_JES_EtaIntercalibration_Stat206: 2.27012365e-04 + syst_JES_EtaIntercalibration_Stat207: 2.91035337e-04 + syst_JES_EtaIntercalibration_Stat208: 3.06769218e-04 + syst_JES_EtaIntercalibration_Stat209: 2.06090077e-04 + syst_JES_EtaIntercalibration_Stat21: 1.51476415e-15 + syst_JES_EtaIntercalibration_Stat210: 6.75070713e-05 + syst_JES_EtaIntercalibration_Stat211: 4.12757629e-04 + syst_JES_EtaIntercalibration_Stat212: 7.29694663e-05 + syst_JES_EtaIntercalibration_Stat213: 3.72945467e-05 + syst_JES_EtaIntercalibration_Stat214: 1.71812323e-06 + syst_JES_EtaIntercalibration_Stat215: 2.36229458e-05 + syst_JES_EtaIntercalibration_Stat216: 5.04563986e-05 + syst_JES_EtaIntercalibration_Stat217: 2.03961925e-05 + syst_JES_EtaIntercalibration_Stat218: 4.79585995e-05 + syst_JES_EtaIntercalibration_Stat219: 1.79288413e-05 + syst_JES_EtaIntercalibration_Stat22: 1.51476415e-15 + syst_JES_EtaIntercalibration_Stat220: 1.47645717e-05 + syst_JES_EtaIntercalibration_Stat221: 1.49352835e-05 + syst_JES_EtaIntercalibration_Stat222: 3.75595218e-05 + syst_JES_EtaIntercalibration_Stat223: 7.16755579e-06 + syst_JES_EtaIntercalibration_Stat224: 3.63605803e-05 + syst_JES_EtaIntercalibration_Stat225: 2.97701810e-05 + syst_JES_EtaIntercalibration_Stat226: 2.35242997e-05 + syst_JES_EtaIntercalibration_Stat227: 4.40444743e-05 + syst_JES_EtaIntercalibration_Stat228: 6.47216067e-05 + syst_JES_EtaIntercalibration_Stat229: 1.46509314e-05 + syst_JES_EtaIntercalibration_Stat23: 2.13584276e-15 + syst_JES_EtaIntercalibration_Stat230: 1.27201555e-05 + syst_JES_EtaIntercalibration_Stat231: 3.37565563e-05 + syst_JES_EtaIntercalibration_Stat232: 9.23096517e-06 + syst_JES_EtaIntercalibration_Stat233: 2.57036388e-05 + syst_JES_EtaIntercalibration_Stat234: 3.17566177e-05 + syst_JES_EtaIntercalibration_Stat235: 4.61768914e-05 + syst_JES_EtaIntercalibration_Stat236: 2.46584725e-05 + syst_JES_EtaIntercalibration_Stat237: 9.27619404e-16 + syst_JES_EtaIntercalibration_Stat238: 1.81798238e-06 + syst_JES_EtaIntercalibration_Stat239: 2.64539921e-06 + syst_JES_EtaIntercalibration_Stat24: 7.99820827e-10 + syst_JES_EtaIntercalibration_Stat240: 3.66338286e-06 + syst_JES_EtaIntercalibration_Stat241: 5.57703458e-06 + syst_JES_EtaIntercalibration_Stat242: 2.30431644e-06 + syst_JES_EtaIntercalibration_Stat243: 3.50876887e-06 + syst_JES_EtaIntercalibration_Stat244: 3.83691204e-06 + syst_JES_EtaIntercalibration_Stat245: 6.50928291e-06 + syst_JES_EtaIntercalibration_Stat25: 6.45988754e-12 + syst_JES_EtaIntercalibration_Stat26: 4.20210380e-12 + syst_JES_EtaIntercalibration_Stat27: 2.63704706e-05 + syst_JES_EtaIntercalibration_Stat28: 8.89127932e-12 + syst_JES_EtaIntercalibration_Stat29: 7.29894805e-11 + syst_JES_EtaIntercalibration_Stat3: 2.13584276e-15 + syst_JES_EtaIntercalibration_Stat30: 8.18811751e-11 + syst_JES_EtaIntercalibration_Stat31: 5.90006911e-10 + syst_JES_EtaIntercalibration_Stat32: 2.11989080e-13 + syst_JES_EtaIntercalibration_Stat33: 2.63618131e-05 + syst_JES_EtaIntercalibration_Stat34: 2.63011904e-05 + syst_JES_EtaIntercalibration_Stat35: 1.62639413e-06 + syst_JES_EtaIntercalibration_Stat36: 6.84333274e-12 + syst_JES_EtaIntercalibration_Stat37: 8.40026100e-11 + syst_JES_EtaIntercalibration_Stat38: 2.20836604e-06 + syst_JES_EtaIntercalibration_Stat39: 4.92095175e-10 + syst_JES_EtaIntercalibration_Stat4: 1.40974964e-14 + syst_JES_EtaIntercalibration_Stat40: 3.29302519e-09 + syst_JES_EtaIntercalibration_Stat41: 3.62346743e-10 + syst_JES_EtaIntercalibration_Stat42: 1.39138492e-14 + syst_JES_EtaIntercalibration_Stat43: 1.51476415e-15 + syst_JES_EtaIntercalibration_Stat44: 1.51476415e-15 + syst_JES_EtaIntercalibration_Stat45: 5.79330104e-11 + syst_JES_EtaIntercalibration_Stat46: 8.69800735e-10 + syst_JES_EtaIntercalibration_Stat47: 5.10149813e-09 + syst_JES_EtaIntercalibration_Stat48: 5.66120532e-09 + syst_JES_EtaIntercalibration_Stat49: 2.63617757e-05 + syst_JES_EtaIntercalibration_Stat5: 7.07138132e-14 + syst_JES_EtaIntercalibration_Stat50: 2.96717682e-08 + syst_JES_EtaIntercalibration_Stat51: 1.82635478e-08 + syst_JES_EtaIntercalibration_Stat52: 1.14646293e-08 + syst_JES_EtaIntercalibration_Stat53: 1.30528927e-08 + syst_JES_EtaIntercalibration_Stat54: 7.79931653e-07 + syst_JES_EtaIntercalibration_Stat55: 2.63618133e-05 + syst_JES_EtaIntercalibration_Stat56: 1.51034573e-06 + syst_JES_EtaIntercalibration_Stat57: 1.50770791e-06 + syst_JES_EtaIntercalibration_Stat58: 1.99246132e-06 + syst_JES_EtaIntercalibration_Stat59: 1.00398370e-09 + syst_JES_EtaIntercalibration_Stat6: 7.08528011e-14 + syst_JES_EtaIntercalibration_Stat60: 4.45797589e-10 + syst_JES_EtaIntercalibration_Stat61: 3.21558245e-09 + syst_JES_EtaIntercalibration_Stat62: 3.67974741e-09 + syst_JES_EtaIntercalibration_Stat63: 5.16549060e-10 + syst_JES_EtaIntercalibration_Stat64: 1.41941564e-15 + syst_JES_EtaIntercalibration_Stat65: 1.51476415e-15 + syst_JES_EtaIntercalibration_Stat66: 1.51476415e-15 + syst_JES_EtaIntercalibration_Stat67: 8.64341324e-10 + syst_JES_EtaIntercalibration_Stat68: 3.42117512e-08 + syst_JES_EtaIntercalibration_Stat69: 1.84857336e-06 + syst_JES_EtaIntercalibration_Stat7: 1.51476415e-15 + syst_JES_EtaIntercalibration_Stat70: 2.67452373e-05 + syst_JES_EtaIntercalibration_Stat71: 2.61721800e-05 + syst_JES_EtaIntercalibration_Stat72: 2.62916244e-05 + syst_JES_EtaIntercalibration_Stat73: 4.37299040e-06 + syst_JES_EtaIntercalibration_Stat74: 1.83887179e-06 + syst_JES_EtaIntercalibration_Stat75: 7.87727670e-07 + syst_JES_EtaIntercalibration_Stat76: 7.74399018e-07 + syst_JES_EtaIntercalibration_Stat77: 2.59095209e-05 + syst_JES_EtaIntercalibration_Stat78: 1.57621873e-06 + syst_JES_EtaIntercalibration_Stat79: 2.38501882e-05 + syst_JES_EtaIntercalibration_Stat8: 9.27599810e-16 + syst_JES_EtaIntercalibration_Stat80: 1.49138487e-06 + syst_JES_EtaIntercalibration_Stat81: 1.44040697e-07 + syst_JES_EtaIntercalibration_Stat82: 4.86235869e-06 + syst_JES_EtaIntercalibration_Stat83: 1.67391004e-07 + syst_JES_EtaIntercalibration_Stat84: 5.28977901e-07 + syst_JES_EtaIntercalibration_Stat85: 4.26684849e-07 + syst_JES_EtaIntercalibration_Stat86: 3.39404663e-10 + syst_JES_EtaIntercalibration_Stat87: 9.27599810e-16 + syst_JES_EtaIntercalibration_Stat88: 9.63129410e-11 + syst_JES_EtaIntercalibration_Stat89: 4.88922829e-07 + syst_JES_EtaIntercalibration_Stat9: 3.35354007e-13 + syst_JES_EtaIntercalibration_Stat90: 2.11654060e-06 + syst_JES_EtaIntercalibration_Stat91: 2.41560986e-05 + syst_JES_EtaIntercalibration_Stat92: 5.03094491e-06 + syst_JES_EtaIntercalibration_Stat93: 2.58662848e-05 + syst_JES_EtaIntercalibration_Stat94: 1.30838674e-07 + syst_JES_EtaIntercalibration_Stat95: 1.94481225e-06 + syst_JES_EtaIntercalibration_Stat96: 2.26176940e-06 + syst_JES_EtaIntercalibration_Stat97: 9.08837179e-07 + syst_JES_EtaIntercalibration_Stat98: 2.28857114e-05 + syst_JES_EtaIntercalibration_Stat99: 2.02646318e-06 + syst_JES_EtaIntercalibration_TotalStat_MJB: 3.40199318e-03 + syst_JES_Flavour_Comp: 1.09431201e-02 + syst_JES_Flavour_Response: 1.81294808e-02 + syst_JES_Gjet_Generator: 2.78643966e-02 + syst_JES_Gjet_OOC: 2.05684145e-02 + syst_JES_Gjet_Purity: 6.55032824e-03 + syst_JES_Gjet_Stat1: 2.13128852e-11 + syst_JES_Gjet_Stat10: 1.11163686e-03 + syst_JES_Gjet_Stat11: 1.50880284e-03 + syst_JES_Gjet_Stat12: 3.41527407e-03 + syst_JES_Gjet_Stat13: 3.39996952e-03 + syst_JES_Gjet_Stat14: 7.24888095e-04 + syst_JES_Gjet_Stat15: 4.39281536e-04 + syst_JES_Gjet_Stat2: 1.93383464e-13 + syst_JES_Gjet_Stat3: 2.30725632e-11 + syst_JES_Gjet_Stat4: 5.29655235e-08 + syst_JES_Gjet_Stat5: 1.05980412e-09 + syst_JES_Gjet_Stat6: 1.55353621e-04 + syst_JES_Gjet_Stat7: 2.56947738e-04 + syst_JES_Gjet_Stat8: 1.26247636e-04 + syst_JES_Gjet_Stat9: 4.87886636e-04 + syst_JES_Gjet_Veto: 1.24147433e-02 + syst_JES_Gjet_dPhi: 1.46962402e-03 + syst_JES_LArESZee: 3.95518649e-02 + syst_JES_LArEsmear: 2.81599769e-03 + syst_JES_LAr_JVT: 3.61872446e-03 + syst_JES_MJB_Alpha: 1.18846008e-04 + syst_JES_MJB_Asym: 9.67165109e-04 + syst_JES_MJB_Beta: 1.37461385e-08 + syst_JES_MJB_Fragmentation: 3.28659885e-03 syst_JES_MJB_Stat1: 0.0 - syst_JES_MJB_Stat10: 1.6424984832565295e-34 - syst_JES_MJB_Stat11: 6.109809223699215e-34 - syst_JES_MJB_Stat12: 1.523338685256824e-19 - syst_JES_MJB_Stat13: 4.004501467099244e-44 - syst_JES_MJB_Stat14: 4.125745023629066e-44 - syst_JES_MJB_Stat15: 9.465657663363915e-44 - syst_JES_MJB_Stat16: 4.435812194153738e-12 - syst_JES_MJB_Stat2: 0.00021641974840573122 - syst_JES_MJB_Stat3: 0.00011157871302358707 - syst_JES_MJB_Stat4: 1.8134571955246147e-06 - syst_JES_MJB_Stat5: 1.5687321210136547e-05 + syst_JES_MJB_Stat10: 1.64249848e-34 + syst_JES_MJB_Stat11: 6.10980922e-34 + syst_JES_MJB_Stat12: 1.52333869e-19 + syst_JES_MJB_Stat13: 4.00450147e-44 + syst_JES_MJB_Stat14: 4.12574502e-44 + syst_JES_MJB_Stat15: 9.46565766e-44 + syst_JES_MJB_Stat16: 4.43581219e-12 + syst_JES_MJB_Stat2: 2.16419748e-04 + syst_JES_MJB_Stat3: 1.11578713e-04 + syst_JES_MJB_Stat4: 1.81345720e-06 + syst_JES_MJB_Stat5: 1.56873212e-05 syst_JES_MJB_Stat6: 0.0 syst_JES_MJB_Stat7: 0.0 syst_JES_MJB_Stat8: 0.0 - syst_JES_MJB_Stat9: 5.262836378798034e-09 - syst_JES_MJB_Threshold: 0.001342923470455409 - syst_JES_Pileup_MuOffset: 0.0028157728956718087 - syst_JES_Pileup_NPVOffset: 0.0034329662101453898 - syst_JES_Pileup_Pt_term: 0.006176637434721258 - syst_JES_Pileup_Rho_topology: 0.009081085769333974 - syst_JES_PunchThrough_MC15: 0.0005119043953708544 - syst_JES_SingleParticle_HighPt: 2.5851823920180176e-06 - syst_JES_Zjet_MC: 0.023356311245571294 - syst_JES_Zjet_MuScale: 0.0011337917665956126 - syst_JES_Zjet_MuSmearID: 0.00016861714029125268 - syst_JES_Zjet_MuSmearMS: 0.0049219445344294566 - syst_JES_Zjet_OOC: 0.008969511915371983 - syst_JES_Zjet_Stat1: 0.00013935999094072876 - syst_JES_Zjet_Stat10: 0.0008469018287263288 - syst_JES_Zjet_Stat11: 0.0010200879962042491 - syst_JES_Zjet_Stat12: 0.006394999824081312 - syst_JES_Zjet_Stat13: 0.004133408036959332 + syst_JES_MJB_Stat9: 5.26283638e-09 + syst_JES_MJB_Threshold: 1.34292347e-03 + syst_JES_Pileup_MuOffset: 2.81577290e-03 + syst_JES_Pileup_NPVOffset: 3.43296621e-03 + syst_JES_Pileup_Pt_term: 6.17663743e-03 + syst_JES_Pileup_Rho_topology: 9.08108577e-03 + syst_JES_PunchThrough_MC15: 5.11904395e-04 + syst_JES_SingleParticle_HighPt: 2.58518239e-06 + syst_JES_Zjet_MC: 2.33563112e-02 + syst_JES_Zjet_MuScale: 1.13379177e-03 + syst_JES_Zjet_MuSmearID: 1.68617140e-04 + syst_JES_Zjet_MuSmearMS: 4.92194453e-03 + syst_JES_Zjet_OOC: 8.96951192e-03 + syst_JES_Zjet_Stat1: 1.39359991e-04 + syst_JES_Zjet_Stat10: 8.46901829e-04 + syst_JES_Zjet_Stat11: 1.02008800e-03 + syst_JES_Zjet_Stat12: 6.39499982e-03 + syst_JES_Zjet_Stat13: 4.13340804e-03 syst_JES_Zjet_Stat2: 0.0 - syst_JES_Zjet_Stat3: 5.416988172056016e-07 - syst_JES_Zjet_Stat4: 2.113968010637815e-12 - syst_JES_Zjet_Stat5: 5.455387173015312e-08 - syst_JES_Zjet_Stat6: 0.00012199126228955907 - syst_JES_Zjet_Stat7: 0.00013277630511503174 - syst_JES_Zjet_Stat8: 0.00015918640606220116 - syst_JES_Zjet_Stat9: 0.0003461243707108761 - syst_JES_Zjet_Veto: 0.0017117455272323628 - syst_JES_Zjet_dPhi: 0.0013407026851617774 + syst_JES_Zjet_Stat3: 5.41698817e-07 + syst_JES_Zjet_Stat4: 2.11396801e-12 + syst_JES_Zjet_Stat5: 5.45538717e-08 + syst_JES_Zjet_Stat6: 1.21991262e-04 + syst_JES_Zjet_Stat7: 1.32776305e-04 + syst_JES_Zjet_Stat8: 1.59186406e-04 + syst_JES_Zjet_Stat9: 3.46124371e-04 + syst_JES_Zjet_Veto: 1.71174553e-03 + syst_JES_Zjet_dPhi: 1.34070269e-03 syst_PRW: 0.0 - syst_Unfolding_bias: 4.216e-11 - syst_cleaning: 0.012264651768395219 + syst_Unfolding_bias: 4.21600000e-11 + syst_cleaning: 1.22646518e-02 syst_lumi: 0.02859 - stat: 0.008603 - syst_JER_CROSS_CALIB_FORWARD: 1.3938e-07 + syst_JER_CROSS_CALIB_FORWARD: 1.39380000e-07 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.0011831798542487105 - syst_JER_NP1: 0.000442928941817985 - syst_JER_NP2: 7.727544677968546e-08 - syst_JER_NP3: 0.00029598037097077905 - syst_JER_NP4: 1.7874764334110812e-09 + syst_JER_NP0: 1.18317985e-03 + syst_JER_NP1: 4.42928942e-04 + syst_JER_NP2: 7.72754468e-08 + syst_JER_NP3: 2.95980371e-04 + syst_JER_NP4: 1.78747643e-09 syst_JER_NP5: 0.0 syst_JER_NP6: 0.0 - syst_JER_NP7: 7.330039017631489e-05 - syst_JER_NP8: 0.00029016593097743224 - syst_JES_EtaIntercalibration_Modelling: 0.018857684773057375 - syst_JES_EtaIntercalibration_NonClosure: 0.001348744122322689 - syst_JES_EtaIntercalibration_Stat0: 1.2433765640384251e-16 - syst_JES_EtaIntercalibration_Stat1: 1.2433765640384251e-16 - syst_JES_EtaIntercalibration_Stat10: 2.3689318975219084e-14 - syst_JES_EtaIntercalibration_Stat100: 1.4126257053222132e-05 - syst_JES_EtaIntercalibration_Stat101: 8.237604152110914e-07 - syst_JES_EtaIntercalibration_Stat102: 1.0415906221093039e-06 - syst_JES_EtaIntercalibration_Stat103: 3.4046472284217646e-06 - syst_JES_EtaIntercalibration_Stat104: 9.021953724110981e-07 - syst_JES_EtaIntercalibration_Stat105: 1.0921014764969187e-07 - syst_JES_EtaIntercalibration_Stat106: 2.5162709452680167e-08 - syst_JES_EtaIntercalibration_Stat107: 2.4343982333406547e-11 - syst_JES_EtaIntercalibration_Stat108: 3.186963028888161e-10 - syst_JES_EtaIntercalibration_Stat109: 5.825668023497391e-06 - syst_JES_EtaIntercalibration_Stat11: 1.4419322972970857e-05 - syst_JES_EtaIntercalibration_Stat110: 1.9192084305775646e-05 - syst_JES_EtaIntercalibration_Stat111: 1.4469325027450312e-05 - syst_JES_EtaIntercalibration_Stat112: 6.882870967118299e-06 - syst_JES_EtaIntercalibration_Stat113: 1.3483097084868893e-06 - syst_JES_EtaIntercalibration_Stat114: 1.6065897519513187e-05 - syst_JES_EtaIntercalibration_Stat115: 2.515078839221546e-06 - syst_JES_EtaIntercalibration_Stat116: 2.9038253576101987e-06 - syst_JES_EtaIntercalibration_Stat117: 2.220763735182111e-07 - syst_JES_EtaIntercalibration_Stat118: 9.9020805272175e-06 - syst_JES_EtaIntercalibration_Stat119: 1.3880061299846627e-05 - syst_JES_EtaIntercalibration_Stat12: 7.614095350048405e-17 - syst_JES_EtaIntercalibration_Stat120: 1.514798029441549e-05 - syst_JES_EtaIntercalibration_Stat121: 4.831444163756837e-06 - syst_JES_EtaIntercalibration_Stat122: 2.2338140449688285e-06 - syst_JES_EtaIntercalibration_Stat123: 2.4390938250711063e-06 - syst_JES_EtaIntercalibration_Stat124: 1.0300518567043117e-06 - syst_JES_EtaIntercalibration_Stat125: 5.632943233337258e-07 - syst_JES_EtaIntercalibration_Stat126: 1.6986072971702436e-07 - syst_JES_EtaIntercalibration_Stat127: 4.2885578006640926e-08 - syst_JES_EtaIntercalibration_Stat128: 4.643036481388015e-06 - syst_JES_EtaIntercalibration_Stat129: 2.7364027823951653e-05 - syst_JES_EtaIntercalibration_Stat13: 1.3631239855313262e-06 - syst_JES_EtaIntercalibration_Stat130: 5.424207107955963e-05 - syst_JES_EtaIntercalibration_Stat131: 4.140540393475228e-06 - syst_JES_EtaIntercalibration_Stat132: 5.1494487811803706e-05 - syst_JES_EtaIntercalibration_Stat133: 4.135881858805931e-05 - syst_JES_EtaIntercalibration_Stat134: 3.184111505585192e-05 - syst_JES_EtaIntercalibration_Stat135: 3.3658172855935007e-06 - syst_JES_EtaIntercalibration_Stat136: 2.7759190820339126e-06 - syst_JES_EtaIntercalibration_Stat137: 2.228833838580167e-06 - syst_JES_EtaIntercalibration_Stat138: 4.3096487638205506e-05 - syst_JES_EtaIntercalibration_Stat139: 1.2088569890603273e-05 - syst_JES_EtaIntercalibration_Stat14: 1.4072912811243325e-06 - syst_JES_EtaIntercalibration_Stat140: 2.8356474018290783e-05 - syst_JES_EtaIntercalibration_Stat141: 7.567064622427907e-05 - syst_JES_EtaIntercalibration_Stat142: 2.23927306731448e-05 - syst_JES_EtaIntercalibration_Stat143: 3.960743964206724e-05 - syst_JES_EtaIntercalibration_Stat144: 8.027337214170089e-05 - syst_JES_EtaIntercalibration_Stat145: 4.092202707589154e-06 - syst_JES_EtaIntercalibration_Stat146: 3.2981604979139506e-05 - syst_JES_EtaIntercalibration_Stat147: 1.9243084472090227e-05 - syst_JES_EtaIntercalibration_Stat148: 5.8070469259340415e-05 - syst_JES_EtaIntercalibration_Stat149: 1.3252889298187019e-05 - syst_JES_EtaIntercalibration_Stat15: 2.3703824447645572e-14 - syst_JES_EtaIntercalibration_Stat150: 6.083516845337078e-05 - syst_JES_EtaIntercalibration_Stat151: 2.882252938241195e-05 - syst_JES_EtaIntercalibration_Stat152: 3.424694256426404e-05 - syst_JES_EtaIntercalibration_Stat153: 2.2793788627606425e-05 - syst_JES_EtaIntercalibration_Stat154: 5.090884083339553e-06 - syst_JES_EtaIntercalibration_Stat155: 1.2042108453256849e-05 - syst_JES_EtaIntercalibration_Stat156: 1.7552144341931556e-05 - syst_JES_EtaIntercalibration_Stat157: 7.261962596295851e-05 - syst_JES_EtaIntercalibration_Stat158: 5.018413725471426e-05 - syst_JES_EtaIntercalibration_Stat159: 4.33159474097012e-05 - syst_JES_EtaIntercalibration_Stat16: 8.515766128188349e-17 - syst_JES_EtaIntercalibration_Stat160: 6.489517696460578e-05 - syst_JES_EtaIntercalibration_Stat161: 6.889278653640017e-05 - syst_JES_EtaIntercalibration_Stat162: 2.807960875795815e-05 - syst_JES_EtaIntercalibration_Stat163: 6.171695082187714e-06 - syst_JES_EtaIntercalibration_Stat164: 7.456477849494357e-05 - syst_JES_EtaIntercalibration_Stat165: 8.086375887874617e-05 - syst_JES_EtaIntercalibration_Stat166: 6.18301301955608e-05 - syst_JES_EtaIntercalibration_Stat167: 8.509007991975328e-05 - syst_JES_EtaIntercalibration_Stat168: 0.00011764093962137503 - syst_JES_EtaIntercalibration_Stat169: 6.784407466205136e-05 - syst_JES_EtaIntercalibration_Stat17: 1.2046413427176717e-06 - syst_JES_EtaIntercalibration_Stat170: 2.514715292036059e-05 - syst_JES_EtaIntercalibration_Stat171: 5.632202875429826e-05 - syst_JES_EtaIntercalibration_Stat172: 1.564772580920307e-05 - syst_JES_EtaIntercalibration_Stat173: 1.516442442033327e-05 - syst_JES_EtaIntercalibration_Stat174: 7.40105201981448e-05 - syst_JES_EtaIntercalibration_Stat175: 5.740075041321324e-05 - syst_JES_EtaIntercalibration_Stat176: 2.7475547455874288e-05 - syst_JES_EtaIntercalibration_Stat177: 8.897187462900847e-05 - syst_JES_EtaIntercalibration_Stat178: 7.314496342879665e-05 - syst_JES_EtaIntercalibration_Stat179: 2.9408189386631744e-05 - syst_JES_EtaIntercalibration_Stat18: 1.5864988213043212e-16 - syst_JES_EtaIntercalibration_Stat180: 1.7278567996220058e-05 - syst_JES_EtaIntercalibration_Stat181: 7.260952355407657e-05 - syst_JES_EtaIntercalibration_Stat182: 0.0002605257834249568 - syst_JES_EtaIntercalibration_Stat183: 6.13164595418718e-05 - syst_JES_EtaIntercalibration_Stat184: 1.0753439138222965e-06 - syst_JES_EtaIntercalibration_Stat185: 0.00028208857664747787 - syst_JES_EtaIntercalibration_Stat186: 0.0003444787367530832 - syst_JES_EtaIntercalibration_Stat187: 0.0002845587607156033 - syst_JES_EtaIntercalibration_Stat188: 0.00014748412626375927 - syst_JES_EtaIntercalibration_Stat189: 7.687165065874414e-05 - syst_JES_EtaIntercalibration_Stat19: 4.0132801136601466e-17 - syst_JES_EtaIntercalibration_Stat190: 7.520481790916059e-05 - syst_JES_EtaIntercalibration_Stat191: 8.771841482835858e-05 - syst_JES_EtaIntercalibration_Stat192: 3.4679989457178325e-05 - syst_JES_EtaIntercalibration_Stat193: 0.0003252200639567 - syst_JES_EtaIntercalibration_Stat194: 2.7756114193012627e-05 - syst_JES_EtaIntercalibration_Stat195: 1.4861110885462095e-05 - syst_JES_EtaIntercalibration_Stat196: 0.0001830826700564529 - syst_JES_EtaIntercalibration_Stat197: 0.0002156052903989139 - syst_JES_EtaIntercalibration_Stat198: 0.00023005268961696579 - syst_JES_EtaIntercalibration_Stat199: 0.00017048933896288062 - syst_JES_EtaIntercalibration_Stat2: 1.7533025637350787e-16 - syst_JES_EtaIntercalibration_Stat20: 1.2433765640384251e-16 - syst_JES_EtaIntercalibration_Stat200: 0.00019793465859975102 - syst_JES_EtaIntercalibration_Stat201: 0.0001783002582022808 - syst_JES_EtaIntercalibration_Stat202: 8.622425627320596e-05 - syst_JES_EtaIntercalibration_Stat203: 1.6634586850520212e-05 - syst_JES_EtaIntercalibration_Stat204: 4.294267774603721e-05 - syst_JES_EtaIntercalibration_Stat205: 2.255936390947227e-05 - syst_JES_EtaIntercalibration_Stat206: 0.00012163791420197694 - syst_JES_EtaIntercalibration_Stat207: 0.00017595507239065317 - syst_JES_EtaIntercalibration_Stat208: 0.00021751365474378842 - syst_JES_EtaIntercalibration_Stat209: 7.796481514119046e-05 - syst_JES_EtaIntercalibration_Stat21: 1.2433765640384251e-16 - syst_JES_EtaIntercalibration_Stat210: 8.012783349124072e-05 - syst_JES_EtaIntercalibration_Stat211: 0.00023144267108724786 - syst_JES_EtaIntercalibration_Stat212: 3.922376560199186e-06 - syst_JES_EtaIntercalibration_Stat213: 2.0690592385912974e-05 - syst_JES_EtaIntercalibration_Stat214: 1.2680747296591004e-06 - syst_JES_EtaIntercalibration_Stat215: 3.747417644191797e-06 - syst_JES_EtaIntercalibration_Stat216: 8.083239325913839e-06 - syst_JES_EtaIntercalibration_Stat217: 1.01193669144863e-05 - syst_JES_EtaIntercalibration_Stat218: 2.4590270008074333e-05 - syst_JES_EtaIntercalibration_Stat219: 9.807405199643786e-06 - syst_JES_EtaIntercalibration_Stat22: 1.2433765640384251e-16 - syst_JES_EtaIntercalibration_Stat220: 1.148621438943223e-05 - syst_JES_EtaIntercalibration_Stat221: 1.837128661798079e-05 - syst_JES_EtaIntercalibration_Stat222: 2.104441731193647e-05 - syst_JES_EtaIntercalibration_Stat223: 4.1752882137045345e-05 - syst_JES_EtaIntercalibration_Stat224: 2.6220572076138993e-05 - syst_JES_EtaIntercalibration_Stat225: 3.733034143963862e-05 - syst_JES_EtaIntercalibration_Stat226: 1.123341322795525e-05 - syst_JES_EtaIntercalibration_Stat227: 1.6506867684391243e-05 - syst_JES_EtaIntercalibration_Stat228: 4.068748056835174e-05 - syst_JES_EtaIntercalibration_Stat229: 9.483840677700148e-06 - syst_JES_EtaIntercalibration_Stat23: 1.7533025637350787e-16 - syst_JES_EtaIntercalibration_Stat230: 1.604600412572011e-05 - syst_JES_EtaIntercalibration_Stat231: 3.762345644674343e-05 - syst_JES_EtaIntercalibration_Stat232: 7.128880732841237e-07 - syst_JES_EtaIntercalibration_Stat233: 1.888120724670547e-05 - syst_JES_EtaIntercalibration_Stat234: 2.5084311331985975e-05 - syst_JES_EtaIntercalibration_Stat235: 3.4606155966099445e-05 - syst_JES_EtaIntercalibration_Stat236: 8.190953424357875e-06 - syst_JES_EtaIntercalibration_Stat237: 6.2984114247006765e-15 - syst_JES_EtaIntercalibration_Stat238: 1.5796171783061869e-06 - syst_JES_EtaIntercalibration_Stat239: 1.6579295763089576e-06 - syst_JES_EtaIntercalibration_Stat24: 5.422093126275128e-11 - syst_JES_EtaIntercalibration_Stat240: 2.0037747347194493e-06 - syst_JES_EtaIntercalibration_Stat241: 1.656885859074185e-06 - syst_JES_EtaIntercalibration_Stat242: 3.5746318691579974e-06 - syst_JES_EtaIntercalibration_Stat243: 2.758622646811267e-06 - syst_JES_EtaIntercalibration_Stat244: 2.7828001846162077e-06 - syst_JES_EtaIntercalibration_Stat245: 1.2723883870501176e-05 - syst_JES_EtaIntercalibration_Stat25: 4.3195920923248063e-13 - syst_JES_EtaIntercalibration_Stat26: 2.808263454521317e-13 - syst_JES_EtaIntercalibration_Stat27: 1.4419322778415006e-05 - syst_JES_EtaIntercalibration_Stat28: 5.893210669915e-13 - syst_JES_EtaIntercalibration_Stat29: 4.778129412228178e-12 - syst_JES_EtaIntercalibration_Stat3: 1.7533025637350787e-16 - syst_JES_EtaIntercalibration_Stat30: 5.3585746255137665e-12 - syst_JES_EtaIntercalibration_Stat31: 4.043605471296625e-11 - syst_JES_EtaIntercalibration_Stat32: 1.6257194961001113e-14 - syst_JES_EtaIntercalibration_Stat33: 1.4419322962745616e-05 - syst_JES_EtaIntercalibration_Stat34: 1.4419322900351375e-05 - syst_JES_EtaIntercalibration_Stat35: 8.896677926053319e-07 - syst_JES_EtaIntercalibration_Stat36: 4.553561573098553e-13 - syst_JES_EtaIntercalibration_Stat37: 5.5638562274738916e-12 - syst_JES_EtaIntercalibration_Stat38: 1.2029093644917124e-06 - syst_JES_EtaIntercalibration_Stat39: 3.341967117982869e-11 - syst_JES_EtaIntercalibration_Stat4: 1.2317688463344086e-15 - syst_JES_EtaIntercalibration_Stat40: 2.23604997349925e-10 - syst_JES_EtaIntercalibration_Stat41: 2.4681901577041445e-11 - syst_JES_EtaIntercalibration_Stat42: 1.2183100621352513e-15 - syst_JES_EtaIntercalibration_Stat43: 1.2433765640384251e-16 - syst_JES_EtaIntercalibration_Stat44: 1.2433765640384251e-16 - syst_JES_EtaIntercalibration_Stat45: 3.7840260284715305e-12 - syst_JES_EtaIntercalibration_Stat46: 5.897421235591027e-11 - syst_JES_EtaIntercalibration_Stat47: 4.0878490025317715e-10 - syst_JES_EtaIntercalibration_Stat48: 4.263828842446071e-10 - syst_JES_EtaIntercalibration_Stat49: 1.4419320533418992e-05 - syst_JES_EtaIntercalibration_Stat5: 5.479212563389013e-15 - syst_JES_EtaIntercalibration_Stat50: 2.6807880580163364e-09 - syst_JES_EtaIntercalibration_Stat51: 1.99187630747996e-09 - syst_JES_EtaIntercalibration_Stat52: 8.600432517030757e-10 - syst_JES_EtaIntercalibration_Stat53: 9.77936871667466e-10 - syst_JES_EtaIntercalibration_Stat54: 1.0502258840430853e-07 - syst_JES_EtaIntercalibration_Stat55: 1.4419322973603267e-05 - syst_JES_EtaIntercalibration_Stat56: 8.172680055137171e-07 - syst_JES_EtaIntercalibration_Stat57: 8.165725990160477e-07 - syst_JES_EtaIntercalibration_Stat58: 1.089788618644811e-06 - syst_JES_EtaIntercalibration_Stat59: 6.753176302118878e-11 - syst_JES_EtaIntercalibration_Stat6: 5.490656382865349e-15 - syst_JES_EtaIntercalibration_Stat60: 3.021437308150378e-11 - syst_JES_EtaIntercalibration_Stat61: 2.184622326055467e-10 - syst_JES_EtaIntercalibration_Stat62: 2.504551148922792e-10 - syst_JES_EtaIntercalibration_Stat63: 3.501665499087541e-11 - syst_JES_EtaIntercalibration_Stat64: 1.3865066714588865e-16 - syst_JES_EtaIntercalibration_Stat65: 1.2433765640384251e-16 - syst_JES_EtaIntercalibration_Stat66: 1.2433765640384251e-16 - syst_JES_EtaIntercalibration_Stat67: 5.851205616580228e-11 - syst_JES_EtaIntercalibration_Stat68: 3.0645716633813607e-09 - syst_JES_EtaIntercalibration_Stat69: 5.187410301426618e-06 - syst_JES_EtaIntercalibration_Stat7: 1.2433765640384251e-16 - syst_JES_EtaIntercalibration_Stat70: 1.446026604702348e-05 - syst_JES_EtaIntercalibration_Stat71: 1.4406722714021397e-05 - syst_JES_EtaIntercalibration_Stat72: 1.441833135819024e-05 - syst_JES_EtaIntercalibration_Stat73: 2.3907363994633014e-06 - syst_JES_EtaIntercalibration_Stat74: 9.538916832621771e-07 - syst_JES_EtaIntercalibration_Stat75: 1.051839395154983e-07 - syst_JES_EtaIntercalibration_Stat76: 1.0400092027506387e-07 - syst_JES_EtaIntercalibration_Stat77: 1.4384539385863312e-05 - syst_JES_EtaIntercalibration_Stat78: 8.519404675983337e-07 - syst_JES_EtaIntercalibration_Stat79: 1.4116204252325394e-05 - syst_JES_EtaIntercalibration_Stat8: 7.614095350072785e-17 - syst_JES_EtaIntercalibration_Stat80: 8.215195755933026e-07 - syst_JES_EtaIntercalibration_Stat81: 1.5511973050334402e-08 - syst_JES_EtaIntercalibration_Stat82: 2.794015437949476e-06 - syst_JES_EtaIntercalibration_Stat83: 1.9917521359847968e-08 - syst_JES_EtaIntercalibration_Stat84: 1.1262860293904031e-07 - syst_JES_EtaIntercalibration_Stat85: 4.074895581484267e-08 - syst_JES_EtaIntercalibration_Stat86: 2.3147564047754072e-11 - syst_JES_EtaIntercalibration_Stat87: 7.614095350072785e-17 - syst_JES_EtaIntercalibration_Stat88: 6.255881952211055e-12 - syst_JES_EtaIntercalibration_Stat89: 6.068795164610518e-08 - syst_JES_EtaIntercalibration_Stat9: 2.3689318975219084e-14 - syst_JES_EtaIntercalibration_Stat90: 5.158031109328442e-06 - syst_JES_EtaIntercalibration_Stat91: 1.4132482555435014e-05 - syst_JES_EtaIntercalibration_Stat92: 8.487241928899811e-06 - syst_JES_EtaIntercalibration_Stat93: 1.4374033255309659e-05 - syst_JES_EtaIntercalibration_Stat94: 1.1704446804526902e-08 - syst_JES_EtaIntercalibration_Stat95: 9.664043300910597e-07 - syst_JES_EtaIntercalibration_Stat96: 1.000310606361844e-06 - syst_JES_EtaIntercalibration_Stat97: 1.1185767747790046e-07 - syst_JES_EtaIntercalibration_Stat98: 1.3986057034766498e-05 - syst_JES_EtaIntercalibration_Stat99: 1.4040600699400295e-06 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0021820565987159908 - syst_JES_Flavour_Comp: 0.007615033617785282 - syst_JES_Flavour_Response: 0.00818598955533172 - syst_JES_Gjet_Generator: 0.015890629314158706 - syst_JES_Gjet_OOC: 0.012122510909460961 - syst_JES_Gjet_Purity: 0.003653675980091831 - syst_JES_Gjet_Stat1: 1.508616253392492e-12 - syst_JES_Gjet_Stat10: 0.0005639244098281258 - syst_JES_Gjet_Stat11: 0.0006857592197703215 - syst_JES_Gjet_Stat12: 0.0017284492326938617 - syst_JES_Gjet_Stat13: 0.00243762568906713 - syst_JES_Gjet_Stat14: 0.0011291231642296601 - syst_JES_Gjet_Stat15: 0.0003283148907679942 - syst_JES_Gjet_Stat2: 1.648006968280171e-14 - syst_JES_Gjet_Stat3: 1.6040819337511257e-12 - syst_JES_Gjet_Stat4: 3.5973207681385252e-09 - syst_JES_Gjet_Stat5: 7.051667231938842e-11 - syst_JES_Gjet_Stat6: 8.466617196377784e-05 - syst_JES_Gjet_Stat7: 0.00013190502975626064 - syst_JES_Gjet_Stat8: 6.706452348857778e-05 - syst_JES_Gjet_Stat9: 0.0002483376884405587 - syst_JES_Gjet_Veto: 0.008216709606040607 - syst_JES_Gjet_dPhi: 0.0008788459136845321 - syst_JES_LArESZee: 0.02299661496829479 - syst_JES_LArEsmear: 0.0016238696838108654 - syst_JES_LAr_JVT: 0.0020934881776594775 - syst_JES_MJB_Alpha: 8.626453168452257e-05 - syst_JES_MJB_Asym: 0.0006213191611402308 - syst_JES_MJB_Beta: 6.500448906704444e-07 - syst_JES_MJB_Fragmentation: 0.0021436156371887195 + syst_JER_NP7: 7.33003902e-05 + syst_JER_NP8: 2.90165931e-04 + syst_JES_EtaIntercalibration_Modelling: 1.88576848e-02 + syst_JES_EtaIntercalibration_NonClosure: 1.34874412e-03 + syst_JES_EtaIntercalibration_Stat0: 1.24337656e-16 + syst_JES_EtaIntercalibration_Stat1: 1.24337656e-16 + syst_JES_EtaIntercalibration_Stat10: 2.36893190e-14 + syst_JES_EtaIntercalibration_Stat100: 1.41262571e-05 + syst_JES_EtaIntercalibration_Stat101: 8.23760415e-07 + syst_JES_EtaIntercalibration_Stat102: 1.04159062e-06 + syst_JES_EtaIntercalibration_Stat103: 3.40464723e-06 + syst_JES_EtaIntercalibration_Stat104: 9.02195372e-07 + syst_JES_EtaIntercalibration_Stat105: 1.09210148e-07 + syst_JES_EtaIntercalibration_Stat106: 2.51627095e-08 + syst_JES_EtaIntercalibration_Stat107: 2.43439823e-11 + syst_JES_EtaIntercalibration_Stat108: 3.18696303e-10 + syst_JES_EtaIntercalibration_Stat109: 5.82566802e-06 + syst_JES_EtaIntercalibration_Stat11: 1.44193230e-05 + syst_JES_EtaIntercalibration_Stat110: 1.91920843e-05 + syst_JES_EtaIntercalibration_Stat111: 1.44693250e-05 + syst_JES_EtaIntercalibration_Stat112: 6.88287097e-06 + syst_JES_EtaIntercalibration_Stat113: 1.34830971e-06 + syst_JES_EtaIntercalibration_Stat114: 1.60658975e-05 + syst_JES_EtaIntercalibration_Stat115: 2.51507884e-06 + syst_JES_EtaIntercalibration_Stat116: 2.90382536e-06 + syst_JES_EtaIntercalibration_Stat117: 2.22076374e-07 + syst_JES_EtaIntercalibration_Stat118: 9.90208053e-06 + syst_JES_EtaIntercalibration_Stat119: 1.38800613e-05 + syst_JES_EtaIntercalibration_Stat12: 7.61409535e-17 + syst_JES_EtaIntercalibration_Stat120: 1.51479803e-05 + syst_JES_EtaIntercalibration_Stat121: 4.83144416e-06 + syst_JES_EtaIntercalibration_Stat122: 2.23381404e-06 + syst_JES_EtaIntercalibration_Stat123: 2.43909383e-06 + syst_JES_EtaIntercalibration_Stat124: 1.03005186e-06 + syst_JES_EtaIntercalibration_Stat125: 5.63294323e-07 + syst_JES_EtaIntercalibration_Stat126: 1.69860730e-07 + syst_JES_EtaIntercalibration_Stat127: 4.28855780e-08 + syst_JES_EtaIntercalibration_Stat128: 4.64303648e-06 + syst_JES_EtaIntercalibration_Stat129: 2.73640278e-05 + syst_JES_EtaIntercalibration_Stat13: 1.36312399e-06 + syst_JES_EtaIntercalibration_Stat130: 5.42420711e-05 + syst_JES_EtaIntercalibration_Stat131: 4.14054039e-06 + syst_JES_EtaIntercalibration_Stat132: 5.14944878e-05 + syst_JES_EtaIntercalibration_Stat133: 4.13588186e-05 + syst_JES_EtaIntercalibration_Stat134: 3.18411151e-05 + syst_JES_EtaIntercalibration_Stat135: 3.36581729e-06 + syst_JES_EtaIntercalibration_Stat136: 2.77591908e-06 + syst_JES_EtaIntercalibration_Stat137: 2.22883384e-06 + syst_JES_EtaIntercalibration_Stat138: 4.30964876e-05 + syst_JES_EtaIntercalibration_Stat139: 1.20885699e-05 + syst_JES_EtaIntercalibration_Stat14: 1.40729128e-06 + syst_JES_EtaIntercalibration_Stat140: 2.83564740e-05 + syst_JES_EtaIntercalibration_Stat141: 7.56706462e-05 + syst_JES_EtaIntercalibration_Stat142: 2.23927307e-05 + syst_JES_EtaIntercalibration_Stat143: 3.96074396e-05 + syst_JES_EtaIntercalibration_Stat144: 8.02733721e-05 + syst_JES_EtaIntercalibration_Stat145: 4.09220271e-06 + syst_JES_EtaIntercalibration_Stat146: 3.29816050e-05 + syst_JES_EtaIntercalibration_Stat147: 1.92430845e-05 + syst_JES_EtaIntercalibration_Stat148: 5.80704693e-05 + syst_JES_EtaIntercalibration_Stat149: 1.32528893e-05 + syst_JES_EtaIntercalibration_Stat15: 2.37038244e-14 + syst_JES_EtaIntercalibration_Stat150: 6.08351685e-05 + syst_JES_EtaIntercalibration_Stat151: 2.88225294e-05 + syst_JES_EtaIntercalibration_Stat152: 3.42469426e-05 + syst_JES_EtaIntercalibration_Stat153: 2.27937886e-05 + syst_JES_EtaIntercalibration_Stat154: 5.09088408e-06 + syst_JES_EtaIntercalibration_Stat155: 1.20421085e-05 + syst_JES_EtaIntercalibration_Stat156: 1.75521443e-05 + syst_JES_EtaIntercalibration_Stat157: 7.26196260e-05 + syst_JES_EtaIntercalibration_Stat158: 5.01841373e-05 + syst_JES_EtaIntercalibration_Stat159: 4.33159474e-05 + syst_JES_EtaIntercalibration_Stat16: 8.51576613e-17 + syst_JES_EtaIntercalibration_Stat160: 6.48951770e-05 + syst_JES_EtaIntercalibration_Stat161: 6.88927865e-05 + syst_JES_EtaIntercalibration_Stat162: 2.80796088e-05 + syst_JES_EtaIntercalibration_Stat163: 6.17169508e-06 + syst_JES_EtaIntercalibration_Stat164: 7.45647785e-05 + syst_JES_EtaIntercalibration_Stat165: 8.08637589e-05 + syst_JES_EtaIntercalibration_Stat166: 6.18301302e-05 + syst_JES_EtaIntercalibration_Stat167: 8.50900799e-05 + syst_JES_EtaIntercalibration_Stat168: 1.17640940e-04 + syst_JES_EtaIntercalibration_Stat169: 6.78440747e-05 + syst_JES_EtaIntercalibration_Stat17: 1.20464134e-06 + syst_JES_EtaIntercalibration_Stat170: 2.51471529e-05 + syst_JES_EtaIntercalibration_Stat171: 5.63220288e-05 + syst_JES_EtaIntercalibration_Stat172: 1.56477258e-05 + syst_JES_EtaIntercalibration_Stat173: 1.51644244e-05 + syst_JES_EtaIntercalibration_Stat174: 7.40105202e-05 + syst_JES_EtaIntercalibration_Stat175: 5.74007504e-05 + syst_JES_EtaIntercalibration_Stat176: 2.74755475e-05 + syst_JES_EtaIntercalibration_Stat177: 8.89718746e-05 + syst_JES_EtaIntercalibration_Stat178: 7.31449634e-05 + syst_JES_EtaIntercalibration_Stat179: 2.94081894e-05 + syst_JES_EtaIntercalibration_Stat18: 1.58649882e-16 + syst_JES_EtaIntercalibration_Stat180: 1.72785680e-05 + syst_JES_EtaIntercalibration_Stat181: 7.26095236e-05 + syst_JES_EtaIntercalibration_Stat182: 2.60525783e-04 + syst_JES_EtaIntercalibration_Stat183: 6.13164595e-05 + syst_JES_EtaIntercalibration_Stat184: 1.07534391e-06 + syst_JES_EtaIntercalibration_Stat185: 2.82088577e-04 + syst_JES_EtaIntercalibration_Stat186: 3.44478737e-04 + syst_JES_EtaIntercalibration_Stat187: 2.84558761e-04 + syst_JES_EtaIntercalibration_Stat188: 1.47484126e-04 + syst_JES_EtaIntercalibration_Stat189: 7.68716507e-05 + syst_JES_EtaIntercalibration_Stat19: 4.01328011e-17 + syst_JES_EtaIntercalibration_Stat190: 7.52048179e-05 + syst_JES_EtaIntercalibration_Stat191: 8.77184148e-05 + syst_JES_EtaIntercalibration_Stat192: 3.46799895e-05 + syst_JES_EtaIntercalibration_Stat193: 3.25220064e-04 + syst_JES_EtaIntercalibration_Stat194: 2.77561142e-05 + syst_JES_EtaIntercalibration_Stat195: 1.48611109e-05 + syst_JES_EtaIntercalibration_Stat196: 1.83082670e-04 + syst_JES_EtaIntercalibration_Stat197: 2.15605290e-04 + syst_JES_EtaIntercalibration_Stat198: 2.30052690e-04 + syst_JES_EtaIntercalibration_Stat199: 1.70489339e-04 + syst_JES_EtaIntercalibration_Stat2: 1.75330256e-16 + syst_JES_EtaIntercalibration_Stat20: 1.24337656e-16 + syst_JES_EtaIntercalibration_Stat200: 1.97934659e-04 + syst_JES_EtaIntercalibration_Stat201: 1.78300258e-04 + syst_JES_EtaIntercalibration_Stat202: 8.62242563e-05 + syst_JES_EtaIntercalibration_Stat203: 1.66345869e-05 + syst_JES_EtaIntercalibration_Stat204: 4.29426777e-05 + syst_JES_EtaIntercalibration_Stat205: 2.25593639e-05 + syst_JES_EtaIntercalibration_Stat206: 1.21637914e-04 + syst_JES_EtaIntercalibration_Stat207: 1.75955072e-04 + syst_JES_EtaIntercalibration_Stat208: 2.17513655e-04 + syst_JES_EtaIntercalibration_Stat209: 7.79648151e-05 + syst_JES_EtaIntercalibration_Stat21: 1.24337656e-16 + syst_JES_EtaIntercalibration_Stat210: 8.01278335e-05 + syst_JES_EtaIntercalibration_Stat211: 2.31442671e-04 + syst_JES_EtaIntercalibration_Stat212: 3.92237656e-06 + syst_JES_EtaIntercalibration_Stat213: 2.06905924e-05 + syst_JES_EtaIntercalibration_Stat214: 1.26807473e-06 + syst_JES_EtaIntercalibration_Stat215: 3.74741764e-06 + syst_JES_EtaIntercalibration_Stat216: 8.08323933e-06 + syst_JES_EtaIntercalibration_Stat217: 1.01193669e-05 + syst_JES_EtaIntercalibration_Stat218: 2.45902700e-05 + syst_JES_EtaIntercalibration_Stat219: 9.80740520e-06 + syst_JES_EtaIntercalibration_Stat22: 1.24337656e-16 + syst_JES_EtaIntercalibration_Stat220: 1.14862144e-05 + syst_JES_EtaIntercalibration_Stat221: 1.83712866e-05 + syst_JES_EtaIntercalibration_Stat222: 2.10444173e-05 + syst_JES_EtaIntercalibration_Stat223: 4.17528821e-05 + syst_JES_EtaIntercalibration_Stat224: 2.62205721e-05 + syst_JES_EtaIntercalibration_Stat225: 3.73303414e-05 + syst_JES_EtaIntercalibration_Stat226: 1.12334132e-05 + syst_JES_EtaIntercalibration_Stat227: 1.65068677e-05 + syst_JES_EtaIntercalibration_Stat228: 4.06874806e-05 + syst_JES_EtaIntercalibration_Stat229: 9.48384068e-06 + syst_JES_EtaIntercalibration_Stat23: 1.75330256e-16 + syst_JES_EtaIntercalibration_Stat230: 1.60460041e-05 + syst_JES_EtaIntercalibration_Stat231: 3.76234564e-05 + syst_JES_EtaIntercalibration_Stat232: 7.12888073e-07 + syst_JES_EtaIntercalibration_Stat233: 1.88812072e-05 + syst_JES_EtaIntercalibration_Stat234: 2.50843113e-05 + syst_JES_EtaIntercalibration_Stat235: 3.46061560e-05 + syst_JES_EtaIntercalibration_Stat236: 8.19095342e-06 + syst_JES_EtaIntercalibration_Stat237: 6.29841142e-15 + syst_JES_EtaIntercalibration_Stat238: 1.57961718e-06 + syst_JES_EtaIntercalibration_Stat239: 1.65792958e-06 + syst_JES_EtaIntercalibration_Stat24: 5.42209313e-11 + syst_JES_EtaIntercalibration_Stat240: 2.00377473e-06 + syst_JES_EtaIntercalibration_Stat241: 1.65688586e-06 + syst_JES_EtaIntercalibration_Stat242: 3.57463187e-06 + syst_JES_EtaIntercalibration_Stat243: 2.75862265e-06 + syst_JES_EtaIntercalibration_Stat244: 2.78280018e-06 + syst_JES_EtaIntercalibration_Stat245: 1.27238839e-05 + syst_JES_EtaIntercalibration_Stat25: 4.31959209e-13 + syst_JES_EtaIntercalibration_Stat26: 2.80826345e-13 + syst_JES_EtaIntercalibration_Stat27: 1.44193228e-05 + syst_JES_EtaIntercalibration_Stat28: 5.89321067e-13 + syst_JES_EtaIntercalibration_Stat29: 4.77812941e-12 + syst_JES_EtaIntercalibration_Stat3: 1.75330256e-16 + syst_JES_EtaIntercalibration_Stat30: 5.35857463e-12 + syst_JES_EtaIntercalibration_Stat31: 4.04360547e-11 + syst_JES_EtaIntercalibration_Stat32: 1.62571950e-14 + syst_JES_EtaIntercalibration_Stat33: 1.44193230e-05 + syst_JES_EtaIntercalibration_Stat34: 1.44193229e-05 + syst_JES_EtaIntercalibration_Stat35: 8.89667793e-07 + syst_JES_EtaIntercalibration_Stat36: 4.55356157e-13 + syst_JES_EtaIntercalibration_Stat37: 5.56385623e-12 + syst_JES_EtaIntercalibration_Stat38: 1.20290936e-06 + syst_JES_EtaIntercalibration_Stat39: 3.34196712e-11 + syst_JES_EtaIntercalibration_Stat4: 1.23176885e-15 + syst_JES_EtaIntercalibration_Stat40: 2.23604997e-10 + syst_JES_EtaIntercalibration_Stat41: 2.46819016e-11 + syst_JES_EtaIntercalibration_Stat42: 1.21831006e-15 + syst_JES_EtaIntercalibration_Stat43: 1.24337656e-16 + syst_JES_EtaIntercalibration_Stat44: 1.24337656e-16 + syst_JES_EtaIntercalibration_Stat45: 3.78402603e-12 + syst_JES_EtaIntercalibration_Stat46: 5.89742124e-11 + syst_JES_EtaIntercalibration_Stat47: 4.08784900e-10 + syst_JES_EtaIntercalibration_Stat48: 4.26382884e-10 + syst_JES_EtaIntercalibration_Stat49: 1.44193205e-05 + syst_JES_EtaIntercalibration_Stat5: 5.47921256e-15 + syst_JES_EtaIntercalibration_Stat50: 2.68078806e-09 + syst_JES_EtaIntercalibration_Stat51: 1.99187631e-09 + syst_JES_EtaIntercalibration_Stat52: 8.60043252e-10 + syst_JES_EtaIntercalibration_Stat53: 9.77936872e-10 + syst_JES_EtaIntercalibration_Stat54: 1.05022588e-07 + syst_JES_EtaIntercalibration_Stat55: 1.44193230e-05 + syst_JES_EtaIntercalibration_Stat56: 8.17268006e-07 + syst_JES_EtaIntercalibration_Stat57: 8.16572599e-07 + syst_JES_EtaIntercalibration_Stat58: 1.08978862e-06 + syst_JES_EtaIntercalibration_Stat59: 6.75317630e-11 + syst_JES_EtaIntercalibration_Stat6: 5.49065638e-15 + syst_JES_EtaIntercalibration_Stat60: 3.02143731e-11 + syst_JES_EtaIntercalibration_Stat61: 2.18462233e-10 + syst_JES_EtaIntercalibration_Stat62: 2.50455115e-10 + syst_JES_EtaIntercalibration_Stat63: 3.50166550e-11 + syst_JES_EtaIntercalibration_Stat64: 1.38650667e-16 + syst_JES_EtaIntercalibration_Stat65: 1.24337656e-16 + syst_JES_EtaIntercalibration_Stat66: 1.24337656e-16 + syst_JES_EtaIntercalibration_Stat67: 5.85120562e-11 + syst_JES_EtaIntercalibration_Stat68: 3.06457166e-09 + syst_JES_EtaIntercalibration_Stat69: 5.18741030e-06 + syst_JES_EtaIntercalibration_Stat7: 1.24337656e-16 + syst_JES_EtaIntercalibration_Stat70: 1.44602660e-05 + syst_JES_EtaIntercalibration_Stat71: 1.44067227e-05 + syst_JES_EtaIntercalibration_Stat72: 1.44183314e-05 + syst_JES_EtaIntercalibration_Stat73: 2.39073640e-06 + syst_JES_EtaIntercalibration_Stat74: 9.53891683e-07 + syst_JES_EtaIntercalibration_Stat75: 1.05183940e-07 + syst_JES_EtaIntercalibration_Stat76: 1.04000920e-07 + syst_JES_EtaIntercalibration_Stat77: 1.43845394e-05 + syst_JES_EtaIntercalibration_Stat78: 8.51940468e-07 + syst_JES_EtaIntercalibration_Stat79: 1.41162043e-05 + syst_JES_EtaIntercalibration_Stat8: 7.61409535e-17 + syst_JES_EtaIntercalibration_Stat80: 8.21519576e-07 + syst_JES_EtaIntercalibration_Stat81: 1.55119731e-08 + syst_JES_EtaIntercalibration_Stat82: 2.79401544e-06 + syst_JES_EtaIntercalibration_Stat83: 1.99175214e-08 + syst_JES_EtaIntercalibration_Stat84: 1.12628603e-07 + syst_JES_EtaIntercalibration_Stat85: 4.07489558e-08 + syst_JES_EtaIntercalibration_Stat86: 2.31475640e-11 + syst_JES_EtaIntercalibration_Stat87: 7.61409535e-17 + syst_JES_EtaIntercalibration_Stat88: 6.25588195e-12 + syst_JES_EtaIntercalibration_Stat89: 6.06879516e-08 + syst_JES_EtaIntercalibration_Stat9: 2.36893190e-14 + syst_JES_EtaIntercalibration_Stat90: 5.15803111e-06 + syst_JES_EtaIntercalibration_Stat91: 1.41324826e-05 + syst_JES_EtaIntercalibration_Stat92: 8.48724193e-06 + syst_JES_EtaIntercalibration_Stat93: 1.43740333e-05 + syst_JES_EtaIntercalibration_Stat94: 1.17044468e-08 + syst_JES_EtaIntercalibration_Stat95: 9.66404330e-07 + syst_JES_EtaIntercalibration_Stat96: 1.00031061e-06 + syst_JES_EtaIntercalibration_Stat97: 1.11857677e-07 + syst_JES_EtaIntercalibration_Stat98: 1.39860570e-05 + syst_JES_EtaIntercalibration_Stat99: 1.40406007e-06 + syst_JES_EtaIntercalibration_TotalStat_MJB: 2.18205660e-03 + syst_JES_Flavour_Comp: 7.61503362e-03 + syst_JES_Flavour_Response: 8.18598956e-03 + syst_JES_Gjet_Generator: 1.58906293e-02 + syst_JES_Gjet_OOC: 1.21225109e-02 + syst_JES_Gjet_Purity: 3.65367598e-03 + syst_JES_Gjet_Stat1: 1.50861625e-12 + syst_JES_Gjet_Stat10: 5.63924410e-04 + syst_JES_Gjet_Stat11: 6.85759220e-04 + syst_JES_Gjet_Stat12: 1.72844923e-03 + syst_JES_Gjet_Stat13: 2.43762569e-03 + syst_JES_Gjet_Stat14: 1.12912316e-03 + syst_JES_Gjet_Stat15: 3.28314891e-04 + syst_JES_Gjet_Stat2: 1.64800697e-14 + syst_JES_Gjet_Stat3: 1.60408193e-12 + syst_JES_Gjet_Stat4: 3.59732077e-09 + syst_JES_Gjet_Stat5: 7.05166723e-11 + syst_JES_Gjet_Stat6: 8.46661720e-05 + syst_JES_Gjet_Stat7: 1.31905030e-04 + syst_JES_Gjet_Stat8: 6.70645235e-05 + syst_JES_Gjet_Stat9: 2.48337688e-04 + syst_JES_Gjet_Veto: 8.21670961e-03 + syst_JES_Gjet_dPhi: 8.78845914e-04 + syst_JES_LArESZee: 2.29966150e-02 + syst_JES_LArEsmear: 1.62386968e-03 + syst_JES_LAr_JVT: 2.09348818e-03 + syst_JES_MJB_Alpha: 8.62645317e-05 + syst_JES_MJB_Asym: 6.21319161e-04 + syst_JES_MJB_Beta: 6.50044891e-07 + syst_JES_MJB_Fragmentation: 2.14361564e-03 syst_JES_MJB_Stat1: 0.0 - syst_JES_MJB_Stat10: 7.448473132125804e-26 - syst_JES_MJB_Stat11: 2.771281288861454e-25 - syst_JES_MJB_Stat12: 1.6255296828874536e-14 - syst_JES_MJB_Stat13: 4.302622775703211e-33 - syst_JES_MJB_Stat14: 4.7908525331902074e-33 - syst_JES_MJB_Stat15: 1.0933570722550397e-32 - syst_JES_MJB_Stat16: 1.7099026684892768e-09 - syst_JES_MJB_Stat2: 0.00012921099024463823 - syst_JES_MJB_Stat3: 6.669261634543962e-05 - syst_JES_MJB_Stat4: 9.920321000350745e-07 - syst_JES_MJB_Stat5: 8.581172756680756e-06 + syst_JES_MJB_Stat10: 7.44847313e-26 + syst_JES_MJB_Stat11: 2.77128129e-25 + syst_JES_MJB_Stat12: 1.62552968e-14 + syst_JES_MJB_Stat13: 4.30262278e-33 + syst_JES_MJB_Stat14: 4.79085253e-33 + syst_JES_MJB_Stat15: 1.09335707e-32 + syst_JES_MJB_Stat16: 1.70990267e-09 + syst_JES_MJB_Stat2: 1.29210990e-04 + syst_JES_MJB_Stat3: 6.66926163e-05 + syst_JES_MJB_Stat4: 9.92032100e-07 + syst_JES_MJB_Stat5: 8.58117276e-06 syst_JES_MJB_Stat6: 0.0 syst_JES_MJB_Stat7: 0.0 syst_JES_MJB_Stat8: 0.0 - syst_JES_MJB_Stat9: 2.4976172645143213e-07 - syst_JES_MJB_Threshold: 0.0008654297704031219 - syst_JES_Pileup_MuOffset: 0.0018859681863700672 - syst_JES_Pileup_NPVOffset: 0.002147239332258982 - syst_JES_Pileup_Pt_term: 0.003306051118782043 - syst_JES_Pileup_Rho_topology: 0.004998332922085122 - syst_JES_PunchThrough_MC15: 0.000306450269211825 - syst_JES_SingleParticle_HighPt: 1.4136478769481457e-06 - syst_JES_Zjet_MC: 0.012316707149234328 - syst_JES_Zjet_MuScale: 0.0005961472364273779 - syst_JES_Zjet_MuSmearID: 9.907490802418139e-05 - syst_JES_Zjet_MuSmearMS: 0.002871103054576759 - syst_JES_Zjet_OOC: 0.004876574822557323 - syst_JES_Zjet_Stat1: 7.622105139001955e-05 - syst_JES_Zjet_Stat10: 0.0004325416136049802 - syst_JES_Zjet_Stat11: 0.00046569397677015325 - syst_JES_Zjet_Stat12: 0.0029070581349536165 - syst_JES_Zjet_Stat13: 0.002678432937372149 + syst_JES_MJB_Stat9: 2.49761726e-07 + syst_JES_MJB_Threshold: 8.65429770e-04 + syst_JES_Pileup_MuOffset: 1.88596819e-03 + syst_JES_Pileup_NPVOffset: 2.14723933e-03 + syst_JES_Pileup_Pt_term: 3.30605112e-03 + syst_JES_Pileup_Rho_topology: 4.99833292e-03 + syst_JES_PunchThrough_MC15: 3.06450269e-04 + syst_JES_SingleParticle_HighPt: 1.41364788e-06 + syst_JES_Zjet_MC: 1.23167071e-02 + syst_JES_Zjet_MuScale: 5.96147236e-04 + syst_JES_Zjet_MuSmearID: 9.90749080e-05 + syst_JES_Zjet_MuSmearMS: 2.87110305e-03 + syst_JES_Zjet_OOC: 4.87657482e-03 + syst_JES_Zjet_Stat1: 7.62210514e-05 + syst_JES_Zjet_Stat10: 4.32541614e-04 + syst_JES_Zjet_Stat11: 4.65693977e-04 + syst_JES_Zjet_Stat12: 2.90705813e-03 + syst_JES_Zjet_Stat13: 2.67843294e-03 syst_JES_Zjet_Stat2: 0.0 - syst_JES_Zjet_Stat3: 5.115612053671036e-06 - syst_JES_Zjet_Stat4: 1.656706597439099e-13 - syst_JES_Zjet_Stat5: 3.829889455411866e-07 - syst_JES_Zjet_Stat6: 6.671896638138215e-05 - syst_JES_Zjet_Stat7: 7.260273824037217e-05 - syst_JES_Zjet_Stat8: 8.707977764670739e-05 - syst_JES_Zjet_Stat9: 0.0001859456036049253 - syst_JES_Zjet_Veto: 0.0008288682811520779 - syst_JES_Zjet_dPhi: 0.0007478323525363155 + syst_JES_Zjet_Stat3: 5.11561205e-06 + syst_JES_Zjet_Stat4: 1.65670660e-13 + syst_JES_Zjet_Stat5: 3.82988946e-07 + syst_JES_Zjet_Stat6: 6.67189664e-05 + syst_JES_Zjet_Stat7: 7.26027382e-05 + syst_JES_Zjet_Stat8: 8.70797776e-05 + syst_JES_Zjet_Stat9: 1.85945604e-04 + syst_JES_Zjet_Veto: 8.28868281e-04 + syst_JES_Zjet_dPhi: 7.47832353e-04 syst_PRW: 0.0 - syst_Unfolding_bias: 3.236e-12 - syst_cleaning: 0.006820816080206238 + syst_Unfolding_bias: 3.23600000e-12 + syst_cleaning: 6.82081608e-03 syst_lumi: 0.01564 - stat: 0.004436 - syst_JER_CROSS_CALIB_FORWARD: 9.248e-09 + syst_JER_CROSS_CALIB_FORWARD: 9.24800000e-09 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.0005962660878332759 - syst_JER_NP1: 0.0002853308737238226 - syst_JER_NP2: 3.2527914166143515e-06 - syst_JER_NP3: 0.00012818044897721338 - syst_JER_NP4: 1.14644442952984e-10 + syst_JER_NP0: 5.96266088e-04 + syst_JER_NP1: 2.85330874e-04 + syst_JER_NP2: 3.25279142e-06 + syst_JER_NP3: 1.28180449e-04 + syst_JER_NP4: 1.14644443e-10 syst_JER_NP5: 0.0 syst_JER_NP6: 0.0 - syst_JER_NP7: 9.592097372316443e-06 - syst_JER_NP8: 0.00015343626526998107 - syst_JES_EtaIntercalibration_Modelling: 0.010896407974649261 - syst_JES_EtaIntercalibration_NonClosure: 0.0006949586606410485 - syst_JES_EtaIntercalibration_Stat0: 1.0414268673315472e-17 - syst_JES_EtaIntercalibration_Stat1: 1.0414268673315472e-17 - syst_JES_EtaIntercalibration_Stat10: 1.7412648830969828e-15 - syst_JES_EtaIntercalibration_Stat100: 7.58030602671316e-06 - syst_JES_EtaIntercalibration_Stat101: 4.356583340074737e-07 - syst_JES_EtaIntercalibration_Stat102: 7.220067919222529e-07 - syst_JES_EtaIntercalibration_Stat103: 1.656156969462738e-06 - syst_JES_EtaIntercalibration_Stat104: 3.7163316277614405e-07 - syst_JES_EtaIntercalibration_Stat105: 1.4013565294285392e-08 - syst_JES_EtaIntercalibration_Stat106: 1.6965694798622306e-09 - syst_JES_EtaIntercalibration_Stat107: 1.5276698786446743e-12 - syst_JES_EtaIntercalibration_Stat108: 2.108629220014747e-11 - syst_JES_EtaIntercalibration_Stat109: 9.408995838425055e-06 - syst_JES_EtaIntercalibration_Stat11: 7.607167146838699e-06 - syst_JES_EtaIntercalibration_Stat110: 1.3519675735756386e-05 - syst_JES_EtaIntercalibration_Stat111: 6.053272170281128e-06 - syst_JES_EtaIntercalibration_Stat112: 2.709683529491959e-06 - syst_JES_EtaIntercalibration_Stat113: 7.143337175298391e-07 - syst_JES_EtaIntercalibration_Stat114: 9.374622832370377e-06 - syst_JES_EtaIntercalibration_Stat115: 4.4947653228505707e-07 - syst_JES_EtaIntercalibration_Stat116: 1.568074477663609e-06 - syst_JES_EtaIntercalibration_Stat117: 3.0449541868474806e-08 - syst_JES_EtaIntercalibration_Stat118: 6.951182381976465e-06 - syst_JES_EtaIntercalibration_Stat119: 6.108409838083885e-06 - syst_JES_EtaIntercalibration_Stat12: 6.376738455760182e-18 - syst_JES_EtaIntercalibration_Stat120: 9.102370462137872e-06 - syst_JES_EtaIntercalibration_Stat121: 4.920020560932648e-06 - syst_JES_EtaIntercalibration_Stat122: 8.423633464841642e-07 - syst_JES_EtaIntercalibration_Stat123: 4.356531929092222e-06 - syst_JES_EtaIntercalibration_Stat124: 2.507267452825885e-07 - syst_JES_EtaIntercalibration_Stat125: 1.1566211858253332e-08 - syst_JES_EtaIntercalibration_Stat126: 2.4636472961850687e-08 - syst_JES_EtaIntercalibration_Stat127: 3.2527914175155953e-09 - syst_JES_EtaIntercalibration_Stat128: 7.714326461201911e-08 - syst_JES_EtaIntercalibration_Stat129: 5.708100099858095e-06 - syst_JES_EtaIntercalibration_Stat13: 7.188876876793368e-07 - syst_JES_EtaIntercalibration_Stat130: 9.876733911065946e-06 - syst_JES_EtaIntercalibration_Stat131: 4.8377491667096596e-06 - syst_JES_EtaIntercalibration_Stat132: 1.679262096130321e-05 - syst_JES_EtaIntercalibration_Stat133: 1.6435412034689e-05 - syst_JES_EtaIntercalibration_Stat134: 1.4189904580369808e-05 - syst_JES_EtaIntercalibration_Stat135: 1.987739167999665e-06 - syst_JES_EtaIntercalibration_Stat136: 9.376166487429711e-07 - syst_JES_EtaIntercalibration_Stat137: 2.842781755728005e-06 - syst_JES_EtaIntercalibration_Stat138: 1.2231217232965818e-05 - syst_JES_EtaIntercalibration_Stat139: 5.41348711552914e-07 - syst_JES_EtaIntercalibration_Stat14: 7.42356976121895e-07 - syst_JES_EtaIntercalibration_Stat140: 8.25780321877435e-06 - syst_JES_EtaIntercalibration_Stat141: 2.7346271240335492e-05 - syst_JES_EtaIntercalibration_Stat142: 3.733713433031518e-06 - syst_JES_EtaIntercalibration_Stat143: 6.892342326814593e-06 - syst_JES_EtaIntercalibration_Stat144: 2.5710394784989204e-05 - syst_JES_EtaIntercalibration_Stat145: 4.764671237346812e-06 - syst_JES_EtaIntercalibration_Stat146: 1.0799441223970803e-05 - syst_JES_EtaIntercalibration_Stat147: 1.8714808976025103e-06 - syst_JES_EtaIntercalibration_Stat148: 1.0055014719034478e-05 - syst_JES_EtaIntercalibration_Stat149: 8.71161070066839e-06 - syst_JES_EtaIntercalibration_Stat15: 1.7429257561273227e-15 - syst_JES_EtaIntercalibration_Stat150: 2.1640018553596484e-05 - syst_JES_EtaIntercalibration_Stat151: 5.642079315287938e-06 - syst_JES_EtaIntercalibration_Stat152: 8.949750499315609e-06 - syst_JES_EtaIntercalibration_Stat153: 2.073264816659946e-06 - syst_JES_EtaIntercalibration_Stat154: 1.0689727919830325e-06 - syst_JES_EtaIntercalibration_Stat155: 9.27063263435673e-06 - syst_JES_EtaIntercalibration_Stat156: 3.6127279166856725e-06 - syst_JES_EtaIntercalibration_Stat157: 2.2128389005980527e-05 - syst_JES_EtaIntercalibration_Stat158: 1.4711989693783775e-05 - syst_JES_EtaIntercalibration_Stat159: 6.552740357094884e-06 - syst_JES_EtaIntercalibration_Stat16: 1.9686103525075752e-17 - syst_JES_EtaIntercalibration_Stat160: 2.4545215780677095e-05 - syst_JES_EtaIntercalibration_Stat161: 2.0129627560079196e-05 - syst_JES_EtaIntercalibration_Stat162: 2.141644403256526e-06 - syst_JES_EtaIntercalibration_Stat163: 5.622106455769047e-06 - syst_JES_EtaIntercalibration_Stat164: 1.6837943223565044e-05 - syst_JES_EtaIntercalibration_Stat165: 3.5984756147568936e-05 - syst_JES_EtaIntercalibration_Stat166: 2.010273863805626e-05 - syst_JES_EtaIntercalibration_Stat167: 3.555248740594671e-05 - syst_JES_EtaIntercalibration_Stat168: 3.919618731458457e-05 - syst_JES_EtaIntercalibration_Stat169: 2.479399158566446e-05 - syst_JES_EtaIntercalibration_Stat17: 5.971245163550849e-07 - syst_JES_EtaIntercalibration_Stat170: 1.2827735575696905e-05 - syst_JES_EtaIntercalibration_Stat171: 1.1008800879637165e-05 - syst_JES_EtaIntercalibration_Stat172: 3.4796277086313418e-06 - syst_JES_EtaIntercalibration_Stat173: 7.856514954482045e-07 - syst_JES_EtaIntercalibration_Stat174: 1.9134231105534395e-05 - syst_JES_EtaIntercalibration_Stat175: 1.5413885039145713e-05 - syst_JES_EtaIntercalibration_Stat176: 1.4709503968523208e-05 - syst_JES_EtaIntercalibration_Stat177: 4.002566020692226e-05 - syst_JES_EtaIntercalibration_Stat178: 1.7695199207694725e-05 - syst_JES_EtaIntercalibration_Stat179: 1.544728230951969e-05 - syst_JES_EtaIntercalibration_Stat18: 1.3288505587536922e-17 - syst_JES_EtaIntercalibration_Stat180: 1.787871412462317e-05 - syst_JES_EtaIntercalibration_Stat181: 3.150736263161358e-05 - syst_JES_EtaIntercalibration_Stat182: 0.00013083365470041529 - syst_JES_EtaIntercalibration_Stat183: 2.5892665428649867e-05 - syst_JES_EtaIntercalibration_Stat184: 5.671600492821787e-07 - syst_JES_EtaIntercalibration_Stat185: 0.0001137249867531318 - syst_JES_EtaIntercalibration_Stat186: 0.000137802641756245 - syst_JES_EtaIntercalibration_Stat187: 0.00016540096032067046 - syst_JES_EtaIntercalibration_Stat188: 6.611237675107696e-05 - syst_JES_EtaIntercalibration_Stat189: 2.847513723847525e-05 - syst_JES_EtaIntercalibration_Stat19: 1.6014481282576718e-17 - syst_JES_EtaIntercalibration_Stat190: 1.880669229290467e-05 - syst_JES_EtaIntercalibration_Stat191: 2.6782346331118933e-05 - syst_JES_EtaIntercalibration_Stat192: 1.6085400212615167e-05 - syst_JES_EtaIntercalibration_Stat193: 0.00013019122119021698 - syst_JES_EtaIntercalibration_Stat194: 1.4644489578136827e-05 - syst_JES_EtaIntercalibration_Stat195: 7.741145768392429e-06 - syst_JES_EtaIntercalibration_Stat196: 0.00011282408283252295 - syst_JES_EtaIntercalibration_Stat197: 0.00015535152783526142 - syst_JES_EtaIntercalibration_Stat198: 0.0001581251640315355 - syst_JES_EtaIntercalibration_Stat199: 9.133100281394047e-05 - syst_JES_EtaIntercalibration_Stat2: 1.4686895213080266e-17 - syst_JES_EtaIntercalibration_Stat20: 1.0414268673315472e-17 - syst_JES_EtaIntercalibration_Stat200: 0.0001426543385249814 - syst_JES_EtaIntercalibration_Stat201: 8.040637474727983e-05 - syst_JES_EtaIntercalibration_Stat202: 6.967645030245154e-05 - syst_JES_EtaIntercalibration_Stat203: 8.789829179227546e-06 - syst_JES_EtaIntercalibration_Stat204: 1.2884528745747746e-05 - syst_JES_EtaIntercalibration_Stat205: 1.2115424827466842e-05 - syst_JES_EtaIntercalibration_Stat206: 5.1141055621486736e-05 - syst_JES_EtaIntercalibration_Stat207: 6.87904143031571e-05 - syst_JES_EtaIntercalibration_Stat208: 0.00013446718809806353 - syst_JES_EtaIntercalibration_Stat209: 3.283860147752946e-05 - syst_JES_EtaIntercalibration_Stat21: 1.0414268673315472e-17 - syst_JES_EtaIntercalibration_Stat210: 9.065442360276745e-05 - syst_JES_EtaIntercalibration_Stat211: 0.00014668208164257828 - syst_JES_EtaIntercalibration_Stat212: 1.8058048102715864e-05 - syst_JES_EtaIntercalibration_Stat213: 1.0257171978669365e-05 - syst_JES_EtaIntercalibration_Stat214: 5.077557947232114e-06 - syst_JES_EtaIntercalibration_Stat215: 3.100710606889169e-05 - syst_JES_EtaIntercalibration_Stat216: 6.9185810683983465e-06 - syst_JES_EtaIntercalibration_Stat217: 9.661296031071609e-06 - syst_JES_EtaIntercalibration_Stat218: 5.5697307681790145e-06 - syst_JES_EtaIntercalibration_Stat219: 5.172846870921273e-06 - syst_JES_EtaIntercalibration_Stat22: 1.0414268673315472e-17 - syst_JES_EtaIntercalibration_Stat220: 1.8895651106802325e-05 - syst_JES_EtaIntercalibration_Stat221: 8.712144282551798e-06 - syst_JES_EtaIntercalibration_Stat222: 1.1178655912047407e-05 - syst_JES_EtaIntercalibration_Stat223: 4.151543106785716e-05 - syst_JES_EtaIntercalibration_Stat224: 2.0845301317083427e-05 - syst_JES_EtaIntercalibration_Stat225: 2.233656254373085e-05 - syst_JES_EtaIntercalibration_Stat226: 5.951526253827668e-06 - syst_JES_EtaIntercalibration_Stat227: 1.0538027709206311e-05 - syst_JES_EtaIntercalibration_Stat228: 8.393114007923401e-06 - syst_JES_EtaIntercalibration_Stat229: 5.1907994634738105e-06 - syst_JES_EtaIntercalibration_Stat23: 1.4686895213080266e-17 - syst_JES_EtaIntercalibration_Stat230: 8.427197195252233e-06 - syst_JES_EtaIntercalibration_Stat231: 2.9288176368630395e-05 - syst_JES_EtaIntercalibration_Stat232: 9.469323161883553e-06 - syst_JES_EtaIntercalibration_Stat233: 1.0973085565600954e-05 - syst_JES_EtaIntercalibration_Stat234: 1.4904612306262784e-05 - syst_JES_EtaIntercalibration_Stat235: 2.1284683477796893e-05 - syst_JES_EtaIntercalibration_Stat236: 2.977538748698327e-06 - syst_JES_EtaIntercalibration_Stat237: 2.209231017634554e-11 - syst_JES_EtaIntercalibration_Stat238: 1.0385254293949667e-06 - syst_JES_EtaIntercalibration_Stat239: 9.042605418240918e-07 - syst_JES_EtaIntercalibration_Stat24: 3.4233236612975994e-12 - syst_JES_EtaIntercalibration_Stat240: 1.0567479690068015e-06 - syst_JES_EtaIntercalibration_Stat241: 6.822270199134596e-07 - syst_JES_EtaIntercalibration_Stat242: 2.006977396484574e-06 - syst_JES_EtaIntercalibration_Stat243: 2.198802117062834e-06 - syst_JES_EtaIntercalibration_Stat244: 2.8519647942252023e-06 - syst_JES_EtaIntercalibration_Stat245: 1.3119664739142535e-05 - syst_JES_EtaIntercalibration_Stat25: 2.9376234105022295e-14 - syst_JES_EtaIntercalibration_Stat26: 1.910010960701535e-14 - syst_JES_EtaIntercalibration_Stat27: 7.6071671340542e-06 - syst_JES_EtaIntercalibration_Stat28: 3.957215873565656e-14 - syst_JES_EtaIntercalibration_Stat29: 3.0627344657185026e-13 - syst_JES_EtaIntercalibration_Stat3: 1.4686895213080266e-17 - syst_JES_EtaIntercalibration_Stat30: 3.4353554284818913e-13 - syst_JES_EtaIntercalibration_Stat31: 2.533335387882939e-12 - syst_JES_EtaIntercalibration_Stat32: 1.3097069166420401e-15 - syst_JES_EtaIntercalibration_Stat33: 7.607167146091953e-06 - syst_JES_EtaIntercalibration_Stat34: 7.607167141917711e-06 - syst_JES_EtaIntercalibration_Stat35: 4.692991592786614e-07 - syst_JES_EtaIntercalibration_Stat36: 3.0752555206376365e-14 - syst_JES_EtaIntercalibration_Stat37: 3.731752672629176e-13 - syst_JES_EtaIntercalibration_Stat38: 5.962584952542921e-07 - syst_JES_EtaIntercalibration_Stat39: 2.123611835740658e-12 - syst_JES_EtaIntercalibration_Stat4: 1.1429579148857582e-16 - syst_JES_EtaIntercalibration_Stat40: 1.4211258102691308e-11 - syst_JES_EtaIntercalibration_Stat41: 1.5484731365954152e-12 - syst_JES_EtaIntercalibration_Stat42: 1.1333539085718107e-16 - syst_JES_EtaIntercalibration_Stat43: 1.0414268673315472e-17 - syst_JES_EtaIntercalibration_Stat44: 1.0414268673315472e-17 - syst_JES_EtaIntercalibration_Stat45: 2.409586137011472e-13 - syst_JES_EtaIntercalibration_Stat46: 3.716661471105486e-12 - syst_JES_EtaIntercalibration_Stat47: 2.754946766727081e-11 - syst_JES_EtaIntercalibration_Stat48: 2.827426837249728e-11 - syst_JES_EtaIntercalibration_Stat49: 7.607166992892072e-06 - syst_JES_EtaIntercalibration_Stat5: 4.484290060555851e-16 - syst_JES_EtaIntercalibration_Stat50: 1.9809340237213227e-10 - syst_JES_EtaIntercalibration_Stat51: 1.5807859724437714e-10 - syst_JES_EtaIntercalibration_Stat52: 5.6956049114646286e-11 - syst_JES_EtaIntercalibration_Stat53: 6.473489075658891e-11 - syst_JES_EtaIntercalibration_Stat54: 9.933513335542616e-09 - syst_JES_EtaIntercalibration_Stat55: 7.6071671469086154e-06 - syst_JES_EtaIntercalibration_Stat56: 4.3041461466098254e-07 - syst_JES_EtaIntercalibration_Stat57: 4.3006803974535016e-07 - syst_JES_EtaIntercalibration_Stat58: 5.747799349273313e-07 - syst_JES_EtaIntercalibration_Stat59: 4.3010168294834655e-12 - syst_JES_EtaIntercalibration_Stat6: 4.493885447171523e-16 - syst_JES_EtaIntercalibration_Stat60: 1.9047246713057377e-12 - syst_JES_EtaIntercalibration_Stat61: 1.3870175629746007e-11 - syst_JES_EtaIntercalibration_Stat62: 1.5882969126267633e-11 - syst_JES_EtaIntercalibration_Stat63: 2.2068517915800327e-12 - syst_JES_EtaIntercalibration_Stat64: 1.4315399924556773e-17 - syst_JES_EtaIntercalibration_Stat65: 1.0414268673315472e-17 - syst_JES_EtaIntercalibration_Stat66: 1.0414268673315472e-17 - syst_JES_EtaIntercalibration_Stat67: 3.721233825964179e-12 - syst_JES_EtaIntercalibration_Stat68: 2.2561626287792286e-10 - syst_JES_EtaIntercalibration_Stat69: 9.327024030126692e-06 - syst_JES_EtaIntercalibration_Stat7: 1.0414268673315472e-17 - syst_JES_EtaIntercalibration_Stat70: 7.609892959006108e-06 - syst_JES_EtaIntercalibration_Stat71: 7.605676451600525e-06 - syst_JES_EtaIntercalibration_Stat72: 7.607089900514343e-06 - syst_JES_EtaIntercalibration_Stat73: 1.26024297936004e-06 - syst_JES_EtaIntercalibration_Stat74: 3.773633506355214e-07 - syst_JES_EtaIntercalibration_Stat75: 9.911553763537784e-09 - syst_JES_EtaIntercalibration_Stat76: 9.831114526556424e-09 - syst_JES_EtaIntercalibration_Stat77: 7.604559786884162e-06 - syst_JES_EtaIntercalibration_Stat78: 4.485976406095208e-07 - syst_JES_EtaIntercalibration_Stat79: 7.580319739251205e-06 - syst_JES_EtaIntercalibration_Stat8: 6.3774110734686064e-18 - syst_JES_EtaIntercalibration_Stat80: 4.3419376435811467e-07 - syst_JES_EtaIntercalibration_Stat81: 1.2253597038654079e-09 - syst_JES_EtaIntercalibration_Stat82: 1.426016479568171e-06 - syst_JES_EtaIntercalibration_Stat83: 1.7709365657752961e-09 - syst_JES_EtaIntercalibration_Stat84: 1.419312215229616e-08 - syst_JES_EtaIntercalibration_Stat85: 3.091858902019948e-09 - syst_JES_EtaIntercalibration_Stat86: 1.4522185738851676e-12 - syst_JES_EtaIntercalibration_Stat87: 6.3774110734686064e-18 - syst_JES_EtaIntercalibration_Stat88: 3.944424672876895e-13 - syst_JES_EtaIntercalibration_Stat89: 5.503220372427403e-09 - syst_JES_EtaIntercalibration_Stat9: 1.7412648830969828e-15 - syst_JES_EtaIntercalibration_Stat90: 9.323879891355743e-06 - syst_JES_EtaIntercalibration_Stat91: 7.580034518260916e-06 - syst_JES_EtaIntercalibration_Stat92: 6.578831705747362e-06 - syst_JES_EtaIntercalibration_Stat93: 7.603548212498802e-06 - syst_JES_EtaIntercalibration_Stat94: 8.601027613023923e-10 - syst_JES_EtaIntercalibration_Stat95: 3.7945568640117583e-07 - syst_JES_EtaIntercalibration_Stat96: 3.8221081633438894e-07 - syst_JES_EtaIntercalibration_Stat97: 1.009885326311854e-08 - syst_JES_EtaIntercalibration_Stat98: 7.5673131804114966e-06 - syst_JES_EtaIntercalibration_Stat99: 8.187338441154122e-07 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0014179154655690868 - syst_JES_Flavour_Comp: 0.004758950409491572 - syst_JES_Flavour_Response: 0.0035197683162390106 - syst_JES_Gjet_Generator: 0.008667113360283227 - syst_JES_Gjet_OOC: 0.006733802788915042 - syst_JES_Gjet_Purity: 0.001972606587741205 - syst_JES_Gjet_Stat1: 1.1114570032169487e-13 - syst_JES_Gjet_Stat10: 0.00027211028554613664 - syst_JES_Gjet_Stat11: 0.0003245745831084129 - syst_JES_Gjet_Stat12: 0.000910361087700919 - syst_JES_Gjet_Stat13: 0.001612534883343613 - syst_JES_Gjet_Stat14: 0.001130451308106634 - syst_JES_Gjet_Stat15: 0.00018641761585215064 - syst_JES_Gjet_Stat2: 1.0184779006262765e-11 - syst_JES_Gjet_Stat3: 1.153695032276728e-13 - syst_JES_Gjet_Stat4: 2.285787363362568e-10 - syst_JES_Gjet_Stat5: 4.7616483514298914e-12 - syst_JES_Gjet_Stat6: 4.4640573473018916e-05 - syst_JES_Gjet_Stat7: 6.797451728405286e-05 - syst_JES_Gjet_Stat8: 3.632154857312667e-05 - syst_JES_Gjet_Stat9: 0.0001259047282670512 - syst_JES_Gjet_Veto: 0.005021857699099009 - syst_JES_Gjet_dPhi: 0.0005381311364342339 - syst_JES_LArESZee: 0.01259145864266726 - syst_JES_LArEsmear: 0.0009182923867156909 - syst_JES_LAr_JVT: 0.0012009261457308687 - syst_JES_MJB_Alpha: 4.9622382046814324e-05 - syst_JES_MJB_Asym: 0.00040293675372197064 - syst_JES_MJB_Beta: 5.418503677907767e-06 - syst_JES_MJB_Fragmentation: 0.0012783900539350265 + syst_JER_NP7: 9.59209737e-06 + syst_JER_NP8: 1.53436265e-04 + syst_JES_EtaIntercalibration_Modelling: 1.08964080e-02 + syst_JES_EtaIntercalibration_NonClosure: 6.94958661e-04 + syst_JES_EtaIntercalibration_Stat0: 1.04142687e-17 + syst_JES_EtaIntercalibration_Stat1: 1.04142687e-17 + syst_JES_EtaIntercalibration_Stat10: 1.74126488e-15 + syst_JES_EtaIntercalibration_Stat100: 7.58030603e-06 + syst_JES_EtaIntercalibration_Stat101: 4.35658334e-07 + syst_JES_EtaIntercalibration_Stat102: 7.22006792e-07 + syst_JES_EtaIntercalibration_Stat103: 1.65615697e-06 + syst_JES_EtaIntercalibration_Stat104: 3.71633163e-07 + syst_JES_EtaIntercalibration_Stat105: 1.40135653e-08 + syst_JES_EtaIntercalibration_Stat106: 1.69656948e-09 + syst_JES_EtaIntercalibration_Stat107: 1.52766988e-12 + syst_JES_EtaIntercalibration_Stat108: 2.10862922e-11 + syst_JES_EtaIntercalibration_Stat109: 9.40899584e-06 + syst_JES_EtaIntercalibration_Stat11: 7.60716715e-06 + syst_JES_EtaIntercalibration_Stat110: 1.35196757e-05 + syst_JES_EtaIntercalibration_Stat111: 6.05327217e-06 + syst_JES_EtaIntercalibration_Stat112: 2.70968353e-06 + syst_JES_EtaIntercalibration_Stat113: 7.14333718e-07 + syst_JES_EtaIntercalibration_Stat114: 9.37462283e-06 + syst_JES_EtaIntercalibration_Stat115: 4.49476532e-07 + syst_JES_EtaIntercalibration_Stat116: 1.56807448e-06 + syst_JES_EtaIntercalibration_Stat117: 3.04495419e-08 + syst_JES_EtaIntercalibration_Stat118: 6.95118238e-06 + syst_JES_EtaIntercalibration_Stat119: 6.10840984e-06 + syst_JES_EtaIntercalibration_Stat12: 6.37673846e-18 + syst_JES_EtaIntercalibration_Stat120: 9.10237046e-06 + syst_JES_EtaIntercalibration_Stat121: 4.92002056e-06 + syst_JES_EtaIntercalibration_Stat122: 8.42363346e-07 + syst_JES_EtaIntercalibration_Stat123: 4.35653193e-06 + syst_JES_EtaIntercalibration_Stat124: 2.50726745e-07 + syst_JES_EtaIntercalibration_Stat125: 1.15662119e-08 + syst_JES_EtaIntercalibration_Stat126: 2.46364730e-08 + syst_JES_EtaIntercalibration_Stat127: 3.25279142e-09 + syst_JES_EtaIntercalibration_Stat128: 7.71432646e-08 + syst_JES_EtaIntercalibration_Stat129: 5.70810010e-06 + syst_JES_EtaIntercalibration_Stat13: 7.18887688e-07 + syst_JES_EtaIntercalibration_Stat130: 9.87673391e-06 + syst_JES_EtaIntercalibration_Stat131: 4.83774917e-06 + syst_JES_EtaIntercalibration_Stat132: 1.67926210e-05 + syst_JES_EtaIntercalibration_Stat133: 1.64354120e-05 + syst_JES_EtaIntercalibration_Stat134: 1.41899046e-05 + syst_JES_EtaIntercalibration_Stat135: 1.98773917e-06 + syst_JES_EtaIntercalibration_Stat136: 9.37616649e-07 + syst_JES_EtaIntercalibration_Stat137: 2.84278176e-06 + syst_JES_EtaIntercalibration_Stat138: 1.22312172e-05 + syst_JES_EtaIntercalibration_Stat139: 5.41348712e-07 + syst_JES_EtaIntercalibration_Stat14: 7.42356976e-07 + syst_JES_EtaIntercalibration_Stat140: 8.25780322e-06 + syst_JES_EtaIntercalibration_Stat141: 2.73462712e-05 + syst_JES_EtaIntercalibration_Stat142: 3.73371343e-06 + syst_JES_EtaIntercalibration_Stat143: 6.89234233e-06 + syst_JES_EtaIntercalibration_Stat144: 2.57103948e-05 + syst_JES_EtaIntercalibration_Stat145: 4.76467124e-06 + syst_JES_EtaIntercalibration_Stat146: 1.07994412e-05 + syst_JES_EtaIntercalibration_Stat147: 1.87148090e-06 + syst_JES_EtaIntercalibration_Stat148: 1.00550147e-05 + syst_JES_EtaIntercalibration_Stat149: 8.71161070e-06 + syst_JES_EtaIntercalibration_Stat15: 1.74292576e-15 + syst_JES_EtaIntercalibration_Stat150: 2.16400186e-05 + syst_JES_EtaIntercalibration_Stat151: 5.64207932e-06 + syst_JES_EtaIntercalibration_Stat152: 8.94975050e-06 + syst_JES_EtaIntercalibration_Stat153: 2.07326482e-06 + syst_JES_EtaIntercalibration_Stat154: 1.06897279e-06 + syst_JES_EtaIntercalibration_Stat155: 9.27063263e-06 + syst_JES_EtaIntercalibration_Stat156: 3.61272792e-06 + syst_JES_EtaIntercalibration_Stat157: 2.21283890e-05 + syst_JES_EtaIntercalibration_Stat158: 1.47119897e-05 + syst_JES_EtaIntercalibration_Stat159: 6.55274036e-06 + syst_JES_EtaIntercalibration_Stat16: 1.96861035e-17 + syst_JES_EtaIntercalibration_Stat160: 2.45452158e-05 + syst_JES_EtaIntercalibration_Stat161: 2.01296276e-05 + syst_JES_EtaIntercalibration_Stat162: 2.14164440e-06 + syst_JES_EtaIntercalibration_Stat163: 5.62210646e-06 + syst_JES_EtaIntercalibration_Stat164: 1.68379432e-05 + syst_JES_EtaIntercalibration_Stat165: 3.59847561e-05 + syst_JES_EtaIntercalibration_Stat166: 2.01027386e-05 + syst_JES_EtaIntercalibration_Stat167: 3.55524874e-05 + syst_JES_EtaIntercalibration_Stat168: 3.91961873e-05 + syst_JES_EtaIntercalibration_Stat169: 2.47939916e-05 + syst_JES_EtaIntercalibration_Stat17: 5.97124516e-07 + syst_JES_EtaIntercalibration_Stat170: 1.28277356e-05 + syst_JES_EtaIntercalibration_Stat171: 1.10088009e-05 + syst_JES_EtaIntercalibration_Stat172: 3.47962771e-06 + syst_JES_EtaIntercalibration_Stat173: 7.85651495e-07 + syst_JES_EtaIntercalibration_Stat174: 1.91342311e-05 + syst_JES_EtaIntercalibration_Stat175: 1.54138850e-05 + syst_JES_EtaIntercalibration_Stat176: 1.47095040e-05 + syst_JES_EtaIntercalibration_Stat177: 4.00256602e-05 + syst_JES_EtaIntercalibration_Stat178: 1.76951992e-05 + syst_JES_EtaIntercalibration_Stat179: 1.54472823e-05 + syst_JES_EtaIntercalibration_Stat18: 1.32885056e-17 + syst_JES_EtaIntercalibration_Stat180: 1.78787141e-05 + syst_JES_EtaIntercalibration_Stat181: 3.15073626e-05 + syst_JES_EtaIntercalibration_Stat182: 1.30833655e-04 + syst_JES_EtaIntercalibration_Stat183: 2.58926654e-05 + syst_JES_EtaIntercalibration_Stat184: 5.67160049e-07 + syst_JES_EtaIntercalibration_Stat185: 1.13724987e-04 + syst_JES_EtaIntercalibration_Stat186: 1.37802642e-04 + syst_JES_EtaIntercalibration_Stat187: 1.65400960e-04 + syst_JES_EtaIntercalibration_Stat188: 6.61123768e-05 + syst_JES_EtaIntercalibration_Stat189: 2.84751372e-05 + syst_JES_EtaIntercalibration_Stat19: 1.60144813e-17 + syst_JES_EtaIntercalibration_Stat190: 1.88066923e-05 + syst_JES_EtaIntercalibration_Stat191: 2.67823463e-05 + syst_JES_EtaIntercalibration_Stat192: 1.60854002e-05 + syst_JES_EtaIntercalibration_Stat193: 1.30191221e-04 + syst_JES_EtaIntercalibration_Stat194: 1.46444896e-05 + syst_JES_EtaIntercalibration_Stat195: 7.74114577e-06 + syst_JES_EtaIntercalibration_Stat196: 1.12824083e-04 + syst_JES_EtaIntercalibration_Stat197: 1.55351528e-04 + syst_JES_EtaIntercalibration_Stat198: 1.58125164e-04 + syst_JES_EtaIntercalibration_Stat199: 9.13310028e-05 + syst_JES_EtaIntercalibration_Stat2: 1.46868952e-17 + syst_JES_EtaIntercalibration_Stat20: 1.04142687e-17 + syst_JES_EtaIntercalibration_Stat200: 1.42654339e-04 + syst_JES_EtaIntercalibration_Stat201: 8.04063747e-05 + syst_JES_EtaIntercalibration_Stat202: 6.96764503e-05 + syst_JES_EtaIntercalibration_Stat203: 8.78982918e-06 + syst_JES_EtaIntercalibration_Stat204: 1.28845287e-05 + syst_JES_EtaIntercalibration_Stat205: 1.21154248e-05 + syst_JES_EtaIntercalibration_Stat206: 5.11410556e-05 + syst_JES_EtaIntercalibration_Stat207: 6.87904143e-05 + syst_JES_EtaIntercalibration_Stat208: 1.34467188e-04 + syst_JES_EtaIntercalibration_Stat209: 3.28386015e-05 + syst_JES_EtaIntercalibration_Stat21: 1.04142687e-17 + syst_JES_EtaIntercalibration_Stat210: 9.06544236e-05 + syst_JES_EtaIntercalibration_Stat211: 1.46682082e-04 + syst_JES_EtaIntercalibration_Stat212: 1.80580481e-05 + syst_JES_EtaIntercalibration_Stat213: 1.02571720e-05 + syst_JES_EtaIntercalibration_Stat214: 5.07755795e-06 + syst_JES_EtaIntercalibration_Stat215: 3.10071061e-05 + syst_JES_EtaIntercalibration_Stat216: 6.91858107e-06 + syst_JES_EtaIntercalibration_Stat217: 9.66129603e-06 + syst_JES_EtaIntercalibration_Stat218: 5.56973077e-06 + syst_JES_EtaIntercalibration_Stat219: 5.17284687e-06 + syst_JES_EtaIntercalibration_Stat22: 1.04142687e-17 + syst_JES_EtaIntercalibration_Stat220: 1.88956511e-05 + syst_JES_EtaIntercalibration_Stat221: 8.71214428e-06 + syst_JES_EtaIntercalibration_Stat222: 1.11786559e-05 + syst_JES_EtaIntercalibration_Stat223: 4.15154311e-05 + syst_JES_EtaIntercalibration_Stat224: 2.08453013e-05 + syst_JES_EtaIntercalibration_Stat225: 2.23365625e-05 + syst_JES_EtaIntercalibration_Stat226: 5.95152625e-06 + syst_JES_EtaIntercalibration_Stat227: 1.05380277e-05 + syst_JES_EtaIntercalibration_Stat228: 8.39311401e-06 + syst_JES_EtaIntercalibration_Stat229: 5.19079946e-06 + syst_JES_EtaIntercalibration_Stat23: 1.46868952e-17 + syst_JES_EtaIntercalibration_Stat230: 8.42719720e-06 + syst_JES_EtaIntercalibration_Stat231: 2.92881764e-05 + syst_JES_EtaIntercalibration_Stat232: 9.46932316e-06 + syst_JES_EtaIntercalibration_Stat233: 1.09730856e-05 + syst_JES_EtaIntercalibration_Stat234: 1.49046123e-05 + syst_JES_EtaIntercalibration_Stat235: 2.12846835e-05 + syst_JES_EtaIntercalibration_Stat236: 2.97753875e-06 + syst_JES_EtaIntercalibration_Stat237: 2.20923102e-11 + syst_JES_EtaIntercalibration_Stat238: 1.03852543e-06 + syst_JES_EtaIntercalibration_Stat239: 9.04260542e-07 + syst_JES_EtaIntercalibration_Stat24: 3.42332366e-12 + syst_JES_EtaIntercalibration_Stat240: 1.05674797e-06 + syst_JES_EtaIntercalibration_Stat241: 6.82227020e-07 + syst_JES_EtaIntercalibration_Stat242: 2.00697740e-06 + syst_JES_EtaIntercalibration_Stat243: 2.19880212e-06 + syst_JES_EtaIntercalibration_Stat244: 2.85196479e-06 + syst_JES_EtaIntercalibration_Stat245: 1.31196647e-05 + syst_JES_EtaIntercalibration_Stat25: 2.93762341e-14 + syst_JES_EtaIntercalibration_Stat26: 1.91001096e-14 + syst_JES_EtaIntercalibration_Stat27: 7.60716713e-06 + syst_JES_EtaIntercalibration_Stat28: 3.95721587e-14 + syst_JES_EtaIntercalibration_Stat29: 3.06273447e-13 + syst_JES_EtaIntercalibration_Stat3: 1.46868952e-17 + syst_JES_EtaIntercalibration_Stat30: 3.43535543e-13 + syst_JES_EtaIntercalibration_Stat31: 2.53333539e-12 + syst_JES_EtaIntercalibration_Stat32: 1.30970692e-15 + syst_JES_EtaIntercalibration_Stat33: 7.60716715e-06 + syst_JES_EtaIntercalibration_Stat34: 7.60716714e-06 + syst_JES_EtaIntercalibration_Stat35: 4.69299159e-07 + syst_JES_EtaIntercalibration_Stat36: 3.07525552e-14 + syst_JES_EtaIntercalibration_Stat37: 3.73175267e-13 + syst_JES_EtaIntercalibration_Stat38: 5.96258495e-07 + syst_JES_EtaIntercalibration_Stat39: 2.12361184e-12 + syst_JES_EtaIntercalibration_Stat4: 1.14295791e-16 + syst_JES_EtaIntercalibration_Stat40: 1.42112581e-11 + syst_JES_EtaIntercalibration_Stat41: 1.54847314e-12 + syst_JES_EtaIntercalibration_Stat42: 1.13335391e-16 + syst_JES_EtaIntercalibration_Stat43: 1.04142687e-17 + syst_JES_EtaIntercalibration_Stat44: 1.04142687e-17 + syst_JES_EtaIntercalibration_Stat45: 2.40958614e-13 + syst_JES_EtaIntercalibration_Stat46: 3.71666147e-12 + syst_JES_EtaIntercalibration_Stat47: 2.75494677e-11 + syst_JES_EtaIntercalibration_Stat48: 2.82742684e-11 + syst_JES_EtaIntercalibration_Stat49: 7.60716699e-06 + syst_JES_EtaIntercalibration_Stat5: 4.48429006e-16 + syst_JES_EtaIntercalibration_Stat50: 1.98093402e-10 + syst_JES_EtaIntercalibration_Stat51: 1.58078597e-10 + syst_JES_EtaIntercalibration_Stat52: 5.69560491e-11 + syst_JES_EtaIntercalibration_Stat53: 6.47348908e-11 + syst_JES_EtaIntercalibration_Stat54: 9.93351334e-09 + syst_JES_EtaIntercalibration_Stat55: 7.60716715e-06 + syst_JES_EtaIntercalibration_Stat56: 4.30414615e-07 + syst_JES_EtaIntercalibration_Stat57: 4.30068040e-07 + syst_JES_EtaIntercalibration_Stat58: 5.74779935e-07 + syst_JES_EtaIntercalibration_Stat59: 4.30101683e-12 + syst_JES_EtaIntercalibration_Stat6: 4.49388545e-16 + syst_JES_EtaIntercalibration_Stat60: 1.90472467e-12 + syst_JES_EtaIntercalibration_Stat61: 1.38701756e-11 + syst_JES_EtaIntercalibration_Stat62: 1.58829691e-11 + syst_JES_EtaIntercalibration_Stat63: 2.20685179e-12 + syst_JES_EtaIntercalibration_Stat64: 1.43153999e-17 + syst_JES_EtaIntercalibration_Stat65: 1.04142687e-17 + syst_JES_EtaIntercalibration_Stat66: 1.04142687e-17 + syst_JES_EtaIntercalibration_Stat67: 3.72123383e-12 + syst_JES_EtaIntercalibration_Stat68: 2.25616263e-10 + syst_JES_EtaIntercalibration_Stat69: 9.32702403e-06 + syst_JES_EtaIntercalibration_Stat7: 1.04142687e-17 + syst_JES_EtaIntercalibration_Stat70: 7.60989296e-06 + syst_JES_EtaIntercalibration_Stat71: 7.60567645e-06 + syst_JES_EtaIntercalibration_Stat72: 7.60708990e-06 + syst_JES_EtaIntercalibration_Stat73: 1.26024298e-06 + syst_JES_EtaIntercalibration_Stat74: 3.77363351e-07 + syst_JES_EtaIntercalibration_Stat75: 9.91155376e-09 + syst_JES_EtaIntercalibration_Stat76: 9.83111453e-09 + syst_JES_EtaIntercalibration_Stat77: 7.60455979e-06 + syst_JES_EtaIntercalibration_Stat78: 4.48597641e-07 + syst_JES_EtaIntercalibration_Stat79: 7.58031974e-06 + syst_JES_EtaIntercalibration_Stat8: 6.37741107e-18 + syst_JES_EtaIntercalibration_Stat80: 4.34193764e-07 + syst_JES_EtaIntercalibration_Stat81: 1.22535970e-09 + syst_JES_EtaIntercalibration_Stat82: 1.42601648e-06 + syst_JES_EtaIntercalibration_Stat83: 1.77093657e-09 + syst_JES_EtaIntercalibration_Stat84: 1.41931222e-08 + syst_JES_EtaIntercalibration_Stat85: 3.09185890e-09 + syst_JES_EtaIntercalibration_Stat86: 1.45221857e-12 + syst_JES_EtaIntercalibration_Stat87: 6.37741107e-18 + syst_JES_EtaIntercalibration_Stat88: 3.94442467e-13 + syst_JES_EtaIntercalibration_Stat89: 5.50322037e-09 + syst_JES_EtaIntercalibration_Stat9: 1.74126488e-15 + syst_JES_EtaIntercalibration_Stat90: 9.32387989e-06 + syst_JES_EtaIntercalibration_Stat91: 7.58003452e-06 + syst_JES_EtaIntercalibration_Stat92: 6.57883171e-06 + syst_JES_EtaIntercalibration_Stat93: 7.60354821e-06 + syst_JES_EtaIntercalibration_Stat94: 8.60102761e-10 + syst_JES_EtaIntercalibration_Stat95: 3.79455686e-07 + syst_JES_EtaIntercalibration_Stat96: 3.82210816e-07 + syst_JES_EtaIntercalibration_Stat97: 1.00988533e-08 + syst_JES_EtaIntercalibration_Stat98: 7.56731318e-06 + syst_JES_EtaIntercalibration_Stat99: 8.18733844e-07 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.41791547e-03 + syst_JES_Flavour_Comp: 4.75895041e-03 + syst_JES_Flavour_Response: 3.51976832e-03 + syst_JES_Gjet_Generator: 8.66711336e-03 + syst_JES_Gjet_OOC: 6.73380279e-03 + syst_JES_Gjet_Purity: 1.97260659e-03 + syst_JES_Gjet_Stat1: 1.11145700e-13 + syst_JES_Gjet_Stat10: 2.72110286e-04 + syst_JES_Gjet_Stat11: 3.24574583e-04 + syst_JES_Gjet_Stat12: 9.10361088e-04 + syst_JES_Gjet_Stat13: 1.61253488e-03 + syst_JES_Gjet_Stat14: 1.13045131e-03 + syst_JES_Gjet_Stat15: 1.86417616e-04 + syst_JES_Gjet_Stat2: 1.01847790e-11 + syst_JES_Gjet_Stat3: 1.15369503e-13 + syst_JES_Gjet_Stat4: 2.28578736e-10 + syst_JES_Gjet_Stat5: 4.76164835e-12 + syst_JES_Gjet_Stat6: 4.46405735e-05 + syst_JES_Gjet_Stat7: 6.79745173e-05 + syst_JES_Gjet_Stat8: 3.63215486e-05 + syst_JES_Gjet_Stat9: 1.25904728e-04 + syst_JES_Gjet_Veto: 5.02185770e-03 + syst_JES_Gjet_dPhi: 5.38131136e-04 + syst_JES_LArESZee: 1.25914586e-02 + syst_JES_LArEsmear: 9.18292387e-04 + syst_JES_LAr_JVT: 1.20092615e-03 + syst_JES_MJB_Alpha: 4.96223820e-05 + syst_JES_MJB_Asym: 4.02936754e-04 + syst_JES_MJB_Beta: 5.41850368e-06 + syst_JES_MJB_Fragmentation: 1.27839005e-03 syst_JES_MJB_Stat1: 0.0 - syst_JES_MJB_Stat10: 2.0564928883903294e-19 - syst_JES_MJB_Stat11: 7.649601622309022e-19 - syst_JES_MJB_Stat12: 5.7304900528475415e-11 - syst_JES_MJB_Stat13: 1.0189735374385344e-24 - syst_JES_MJB_Stat14: 1.1345798558867376e-24 - syst_JES_MJB_Stat15: 2.5894159465825302e-24 - syst_JES_MJB_Stat16: 7.103236523409592e-08 - syst_JES_MJB_Stat2: 7.169824317931367e-05 - syst_JES_MJB_Stat3: 3.587943247878929e-05 - syst_JES_MJB_Stat4: 5.232525489665578e-07 - syst_JES_MJB_Stat5: 4.526077074023375e-06 + syst_JES_MJB_Stat10: 2.05649289e-19 + syst_JES_MJB_Stat11: 7.64960162e-19 + syst_JES_MJB_Stat12: 5.73049005e-11 + syst_JES_MJB_Stat13: 1.01897354e-24 + syst_JES_MJB_Stat14: 1.13457986e-24 + syst_JES_MJB_Stat15: 2.58941595e-24 + syst_JES_MJB_Stat16: 7.10323652e-08 + syst_JES_MJB_Stat2: 7.16982432e-05 + syst_JES_MJB_Stat3: 3.58794325e-05 + syst_JES_MJB_Stat4: 5.23252549e-07 + syst_JES_MJB_Stat5: 4.52607707e-06 syst_JES_MJB_Stat6: 0.0 syst_JES_MJB_Stat7: 0.0 syst_JES_MJB_Stat8: 0.0 - syst_JES_MJB_Stat9: 2.1105039090226772e-06 - syst_JES_MJB_Threshold: 0.0005288568899050102 - syst_JES_Pileup_MuOffset: 0.0011832585125406874 - syst_JES_Pileup_NPVOffset: 0.0012372401989912873 - syst_JES_Pileup_Pt_term: 0.0016128397316534585 - syst_JES_Pileup_Rho_topology: 0.0026610304395102286 - syst_JES_PunchThrough_MC15: 0.00022889143714870593 - syst_JES_SingleParticle_HighPt: 7.455733900830957e-07 - syst_JES_Zjet_MC: 0.006077827305049068 - syst_JES_Zjet_MuScale: 0.0003432365666344424 - syst_JES_Zjet_MuSmearID: 5.4948170124217966e-05 - syst_JES_Zjet_MuSmearMS: 0.0015222128629071559 - syst_JES_Zjet_OOC: 0.002521595278786824 - syst_JES_Zjet_Stat1: 4.063830828171862e-05 - syst_JES_Zjet_Stat10: 0.0002241364093582299 - syst_JES_Zjet_Stat11: 0.00024370910426161762 - syst_JES_Zjet_Stat12: 0.0013327464828316 - syst_JES_Zjet_Stat13: 0.0015106590449204614 + syst_JES_MJB_Stat9: 2.11050391e-06 + syst_JES_MJB_Threshold: 5.28856890e-04 + syst_JES_Pileup_MuOffset: 1.18325851e-03 + syst_JES_Pileup_NPVOffset: 1.23724020e-03 + syst_JES_Pileup_Pt_term: 1.61283973e-03 + syst_JES_Pileup_Rho_topology: 2.66103044e-03 + syst_JES_PunchThrough_MC15: 2.28891437e-04 + syst_JES_SingleParticle_HighPt: 7.45573390e-07 + syst_JES_Zjet_MC: 6.07782731e-03 + syst_JES_Zjet_MuScale: 3.43236567e-04 + syst_JES_Zjet_MuSmearID: 5.49481701e-05 + syst_JES_Zjet_MuSmearMS: 1.52221286e-03 + syst_JES_Zjet_OOC: 2.52159528e-03 + syst_JES_Zjet_Stat1: 4.06383083e-05 + syst_JES_Zjet_Stat10: 2.24136409e-04 + syst_JES_Zjet_Stat11: 2.43709104e-04 + syst_JES_Zjet_Stat12: 1.33274648e-03 + syst_JES_Zjet_Stat13: 1.51065904e-03 syst_JES_Zjet_Stat2: 0.0 - syst_JES_Zjet_Stat3: 1.3414733504004054e-05 - syst_JES_Zjet_Stat4: 1.3743676170969085e-14 - syst_JES_Zjet_Stat5: 3.246647667394334e-06 - syst_JES_Zjet_Stat6: 3.519172168280489e-05 - syst_JES_Zjet_Stat7: 3.829467162674202e-05 - syst_JES_Zjet_Stat8: 4.603422303840915e-05 - syst_JES_Zjet_Stat9: 9.558107697133361e-05 - syst_JES_Zjet_Veto: 0.0004305012923325551 - syst_JES_Zjet_dPhi: 0.0004639859992499774 + syst_JES_Zjet_Stat3: 1.34147335e-05 + syst_JES_Zjet_Stat4: 1.37436762e-14 + syst_JES_Zjet_Stat5: 3.24664767e-06 + syst_JES_Zjet_Stat6: 3.51917217e-05 + syst_JES_Zjet_Stat7: 3.82946716e-05 + syst_JES_Zjet_Stat8: 4.60342230e-05 + syst_JES_Zjet_Stat9: 9.55810770e-05 + syst_JES_Zjet_Veto: 4.30501292e-04 + syst_JES_Zjet_dPhi: 4.63985999e-04 syst_PRW: 0.0 - syst_Unfolding_bias: 2.619e-13 - syst_cleaning: 0.0036598233563930375 + syst_Unfolding_bias: 2.61900000e-13 + syst_cleaning: 3.65982336e-03 syst_lumi: 0.008247 -- stat: 0.0020779 +- stat: 2.07790000e-03 syst_JER_CROSS_CALIB_FORWARD: 6.5e-10 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.00032100445479774884 - syst_JER_NP1: 0.00016666857172244561 - syst_JER_NP2: 2.495885213706752e-05 - syst_JER_NP3: 6.401692647261348e-05 - syst_JER_NP4: 8.433355382052864e-12 + syst_JER_NP0: 3.21004455e-04 + syst_JER_NP1: 1.66668572e-04 + syst_JER_NP2: 2.49588521e-05 + syst_JER_NP3: 6.40169265e-05 + syst_JER_NP4: 8.43335538e-12 syst_JER_NP5: 0.0 syst_JER_NP6: 0.0 - syst_JER_NP7: 9.98180880401944e-07 - syst_JER_NP8: 8.718351277621246e-05 - syst_JES_EtaIntercalibration_Modelling: 0.006575731499232614 - syst_JES_EtaIntercalibration_NonClosure: 0.00039784239300883964 - syst_JES_EtaIntercalibration_Stat0: 9.73686037693876e-19 - syst_JES_EtaIntercalibration_Stat1: 9.73686037693876e-19 - syst_JES_EtaIntercalibration_Stat10: 1.5216474610352426e-16 - syst_JES_EtaIntercalibration_Stat100: 4.098025325852272e-06 - syst_JES_EtaIntercalibration_Stat101: 2.349368220914403e-07 - syst_JES_EtaIntercalibration_Stat102: 5.28362203840116e-07 - syst_JES_EtaIntercalibration_Stat103: 8.274857385478013e-07 - syst_JES_EtaIntercalibration_Stat104: 1.0554035042935e-07 - syst_JES_EtaIntercalibration_Stat105: 1.4310384029438204e-09 - syst_JES_EtaIntercalibration_Stat106: 1.1552345075784395e-10 - syst_JES_EtaIntercalibration_Stat107: 1.0494512107117731e-13 - syst_JES_EtaIntercalibration_Stat108: 1.4670300337757234e-12 - syst_JES_EtaIntercalibration_Stat109: 2.1977147147662272e-07 - syst_JES_EtaIntercalibration_Stat11: 4.0997642615150985e-06 - syst_JES_EtaIntercalibration_Stat110: 1.3226355620502573e-06 - syst_JES_EtaIntercalibration_Stat111: 1.6739137276156139e-07 - syst_JES_EtaIntercalibration_Stat112: 1.7637069675827673e-06 - syst_JES_EtaIntercalibration_Stat113: 3.977016068297939e-07 - syst_JES_EtaIntercalibration_Stat114: 2.311630599447066e-06 - syst_JES_EtaIntercalibration_Stat115: 6.60838836252834e-08 - syst_JES_EtaIntercalibration_Stat116: 6.393327451922043e-07 - syst_JES_EtaIntercalibration_Stat117: 5.648906000280054e-09 - syst_JES_EtaIntercalibration_Stat118: 4.0331561670111416e-06 - syst_JES_EtaIntercalibration_Stat119: 3.8585187248476584e-07 - syst_JES_EtaIntercalibration_Stat12: 7.295657887872415e-17 - syst_JES_EtaIntercalibration_Stat120: 2.2469439840592376e-06 - syst_JES_EtaIntercalibration_Stat121: 3.498352093128992e-06 - syst_JES_EtaIntercalibration_Stat122: 3.6126330397647643e-07 - syst_JES_EtaIntercalibration_Stat123: 1.7324535210885168e-06 - syst_JES_EtaIntercalibration_Stat124: 4.536020805728298e-08 - syst_JES_EtaIntercalibration_Stat125: 7.068103399604452e-09 - syst_JES_EtaIntercalibration_Stat126: 2.683382706585104e-09 - syst_JES_EtaIntercalibration_Stat127: 2.4205410042746566e-10 - syst_JES_EtaIntercalibration_Stat128: 5.4157578186252016e-08 - syst_JES_EtaIntercalibration_Stat129: 2.3688736310744818e-06 - syst_JES_EtaIntercalibration_Stat13: 3.874597656529591e-07 - syst_JES_EtaIntercalibration_Stat130: 2.7860279969878263e-06 - syst_JES_EtaIntercalibration_Stat131: 5.718109040583259e-06 - syst_JES_EtaIntercalibration_Stat132: 3.1987645286891624e-06 - syst_JES_EtaIntercalibration_Stat133: 5.682744943880553e-06 - syst_JES_EtaIntercalibration_Stat134: 4.698363290285245e-06 - syst_JES_EtaIntercalibration_Stat135: 6.565959640448606e-07 - syst_JES_EtaIntercalibration_Stat136: 2.2778675883378297e-07 - syst_JES_EtaIntercalibration_Stat137: 2.7720646218116926e-06 - syst_JES_EtaIntercalibration_Stat138: 1.1198014053840082e-05 - syst_JES_EtaIntercalibration_Stat139: 1.142504147694878e-06 - syst_JES_EtaIntercalibration_Stat14: 4.001037365482119e-07 - syst_JES_EtaIntercalibration_Stat140: 2.942113695967578e-06 - syst_JES_EtaIntercalibration_Stat141: 5.665594121537475e-06 - syst_JES_EtaIntercalibration_Stat142: 5.001416399381279e-07 - syst_JES_EtaIntercalibration_Stat143: 1.0646635841898605e-06 - syst_JES_EtaIntercalibration_Stat144: 1.0804531028693473e-05 - syst_JES_EtaIntercalibration_Stat145: 1.0378022818918833e-05 - syst_JES_EtaIntercalibration_Stat146: 4.4873390634094056e-07 - syst_JES_EtaIntercalibration_Stat147: 6.152239211728418e-08 - syst_JES_EtaIntercalibration_Stat148: 4.1586241414679456e-06 - syst_JES_EtaIntercalibration_Stat149: 2.4150074549574377e-06 - syst_JES_EtaIntercalibration_Stat15: 1.5239596016360638e-16 - syst_JES_EtaIntercalibration_Stat150: 4.665711850296802e-06 - syst_JES_EtaIntercalibration_Stat151: 2.8407605863219093e-06 - syst_JES_EtaIntercalibration_Stat152: 3.4622196276377385e-06 - syst_JES_EtaIntercalibration_Stat153: 8.750320679837917e-07 - syst_JES_EtaIntercalibration_Stat154: 3.4451223490610604e-07 - syst_JES_EtaIntercalibration_Stat155: 1.4158734291948556e-06 - syst_JES_EtaIntercalibration_Stat156: 2.971318688730645e-06 - syst_JES_EtaIntercalibration_Stat157: 9.544642895362823e-06 - syst_JES_EtaIntercalibration_Stat158: 4.248075799700378e-06 - syst_JES_EtaIntercalibration_Stat159: 1.2969409498893927e-06 - syst_JES_EtaIntercalibration_Stat16: 4.4064036568952694e-18 - syst_JES_EtaIntercalibration_Stat160: 7.853290053856409e-06 - syst_JES_EtaIntercalibration_Stat161: 3.964178568127324e-06 - syst_JES_EtaIntercalibration_Stat162: 2.2276369137889147e-06 - syst_JES_EtaIntercalibration_Stat163: 1.056095578061001e-05 - syst_JES_EtaIntercalibration_Stat164: 7.568184767003248e-06 - syst_JES_EtaIntercalibration_Stat165: 1.781762741640985e-05 - syst_JES_EtaIntercalibration_Stat166: 6.991991186350281e-06 - syst_JES_EtaIntercalibration_Stat167: 1.3307527572017275e-05 - syst_JES_EtaIntercalibration_Stat168: 1.2814071201222506e-05 - syst_JES_EtaIntercalibration_Stat169: 1.1400898581581191e-05 - syst_JES_EtaIntercalibration_Stat17: 2.430067283409395e-07 - syst_JES_EtaIntercalibration_Stat170: 6.896063949819491e-06 - syst_JES_EtaIntercalibration_Stat171: 1.686965613164655e-06 - syst_JES_EtaIntercalibration_Stat172: 5.785970164976657e-07 - syst_JES_EtaIntercalibration_Stat173: 2.6457074417818763e-06 - syst_JES_EtaIntercalibration_Stat174: 6.670424349319915e-06 - syst_JES_EtaIntercalibration_Stat175: 3.704634496141286e-06 - syst_JES_EtaIntercalibration_Stat176: 7.994631573749975e-06 - syst_JES_EtaIntercalibration_Stat177: 1.3773825421791869e-05 - syst_JES_EtaIntercalibration_Stat178: 7.915470106064453e-06 - syst_JES_EtaIntercalibration_Stat179: 7.88832878371585e-06 - syst_JES_EtaIntercalibration_Stat18: 1.2423678470968253e-18 - syst_JES_EtaIntercalibration_Stat180: 2.7246369794891946e-05 - syst_JES_EtaIntercalibration_Stat181: 1.5001912144790076e-05 - syst_JES_EtaIntercalibration_Stat182: 6.337892148908816e-05 - syst_JES_EtaIntercalibration_Stat183: 1.3114289444342761e-05 - syst_JES_EtaIntercalibration_Stat184: 3.056203660590076e-07 - syst_JES_EtaIntercalibration_Stat185: 4.601696168805585e-05 - syst_JES_EtaIntercalibration_Stat186: 4.4092831526224305e-05 - syst_JES_EtaIntercalibration_Stat187: 6.007375372614899e-05 - syst_JES_EtaIntercalibration_Stat188: 2.5677105940820354e-05 - syst_JES_EtaIntercalibration_Stat189: 1.076614224084003e-05 - syst_JES_EtaIntercalibration_Stat19: 3.1175730817416295e-18 - syst_JES_EtaIntercalibration_Stat190: 7.862190087214885e-06 - syst_JES_EtaIntercalibration_Stat191: 1.3366619570781536e-05 - syst_JES_EtaIntercalibration_Stat192: 8.472900138087314e-06 - syst_JES_EtaIntercalibration_Stat193: 5.8185921621986876e-05 - syst_JES_EtaIntercalibration_Stat194: 7.890357453894015e-06 - syst_JES_EtaIntercalibration_Stat195: 4.1653225046207405e-06 - syst_JES_EtaIntercalibration_Stat196: 6.304226652016883e-05 - syst_JES_EtaIntercalibration_Stat197: 9.013688479612549e-05 - syst_JES_EtaIntercalibration_Stat198: 8.293248142314325e-05 - syst_JES_EtaIntercalibration_Stat199: 4.633390200490349e-05 - syst_JES_EtaIntercalibration_Stat2: 1.373138802160947e-18 - syst_JES_EtaIntercalibration_Stat20: 9.73686037693876e-19 - syst_JES_EtaIntercalibration_Stat200: 8.0707256643997e-05 - syst_JES_EtaIntercalibration_Stat201: 3.7049983468282415e-05 - syst_JES_EtaIntercalibration_Stat202: 5.054643917458479e-05 - syst_JES_EtaIntercalibration_Stat203: 4.738252849679932e-06 - syst_JES_EtaIntercalibration_Stat204: 5.562975847511834e-06 - syst_JES_EtaIntercalibration_Stat205: 6.466111969336751e-06 - syst_JES_EtaIntercalibration_Stat206: 1.7458300824178167e-05 - syst_JES_EtaIntercalibration_Stat207: 2.6463091278231268e-05 - syst_JES_EtaIntercalibration_Stat208: 7.25200671314499e-05 - syst_JES_EtaIntercalibration_Stat209: 1.713043125551718e-05 - syst_JES_EtaIntercalibration_Stat21: 9.73686037693876e-19 - syst_JES_EtaIntercalibration_Stat210: 6.357500983090761e-05 - syst_JES_EtaIntercalibration_Stat211: 8.507244089597995e-05 - syst_JES_EtaIntercalibration_Stat212: 1.4338516301207739e-05 - syst_JES_EtaIntercalibration_Stat213: 8.509574431192198e-06 - syst_JES_EtaIntercalibration_Stat214: 1.1191255634646186e-05 - syst_JES_EtaIntercalibration_Stat215: 3.3746613655113606e-05 - syst_JES_EtaIntercalibration_Stat216: 8.771290618118864e-06 - syst_JES_EtaIntercalibration_Stat217: 5.14041381675639e-06 - syst_JES_EtaIntercalibration_Stat218: 7.158396550031299e-06 - syst_JES_EtaIntercalibration_Stat219: 2.7877605707807837e-06 - syst_JES_EtaIntercalibration_Stat22: 9.73686037693876e-19 - syst_JES_EtaIntercalibration_Stat220: 2.0930017749634137e-05 - syst_JES_EtaIntercalibration_Stat221: 7.329229768536391e-06 - syst_JES_EtaIntercalibration_Stat222: 6.257899567746154e-06 - syst_JES_EtaIntercalibration_Stat223: 1.8781471368079767e-05 - syst_JES_EtaIntercalibration_Stat224: 2.186702236245255e-05 - syst_JES_EtaIntercalibration_Stat225: 4.088777201071244e-06 - syst_JES_EtaIntercalibration_Stat226: 1.3516954686614882e-05 - syst_JES_EtaIntercalibration_Stat227: 1.1188910883102071e-05 - syst_JES_EtaIntercalibration_Stat228: 8.877625865060998e-06 - syst_JES_EtaIntercalibration_Stat229: 2.8160484313129277e-06 - syst_JES_EtaIntercalibration_Stat23: 1.373138802160947e-18 - syst_JES_EtaIntercalibration_Stat230: 1.6411248895071845e-06 - syst_JES_EtaIntercalibration_Stat231: 1.8799673188648784e-05 - syst_JES_EtaIntercalibration_Stat232: 1.2756569168507538e-05 - syst_JES_EtaIntercalibration_Stat233: 6.789236628664521e-06 - syst_JES_EtaIntercalibration_Stat234: 8.250199633948259e-06 - syst_JES_EtaIntercalibration_Stat235: 1.5747362152119318e-05 - syst_JES_EtaIntercalibration_Stat236: 1.9073138179125111e-06 - syst_JES_EtaIntercalibration_Stat237: 4.684331409268781e-09 - syst_JES_EtaIntercalibration_Stat238: 2.2235725196179234e-06 - syst_JES_EtaIntercalibration_Stat239: 4.914417157710566e-07 - syst_JES_EtaIntercalibration_Stat24: 2.387149017133199e-13 - syst_JES_EtaIntercalibration_Stat240: 5.694977787489606e-07 - syst_JES_EtaIntercalibration_Stat241: 3.5752853994471543e-07 - syst_JES_EtaIntercalibration_Stat242: 7.220005226452402e-07 - syst_JES_EtaIntercalibration_Stat243: 1.3599931718578589e-06 - syst_JES_EtaIntercalibration_Stat244: 2.0461955811456536e-06 - syst_JES_EtaIntercalibration_Stat245: 4.540749791609311e-06 - syst_JES_EtaIntercalibration_Stat25: 2.347880589531759e-15 - syst_JES_EtaIntercalibration_Stat26: 1.5256074200134187e-15 - syst_JES_EtaIntercalibration_Stat27: 4.099764260540388e-06 - syst_JES_EtaIntercalibration_Stat28: 3.112530055678178e-15 - syst_JES_EtaIntercalibration_Stat29: 2.249804213703939e-14 - syst_JES_EtaIntercalibration_Stat3: 1.373138802160947e-18 - syst_JES_EtaIntercalibration_Stat30: 2.524655331302671e-14 - syst_JES_EtaIntercalibration_Stat31: 1.7292392633756615e-13 - syst_JES_EtaIntercalibration_Stat32: 1.2545119050850016e-16 - syst_JES_EtaIntercalibration_Stat33: 4.099764261450551e-06 - syst_JES_EtaIntercalibration_Stat34: 4.099764261123829e-06 - syst_JES_EtaIntercalibration_Stat35: 2.528794173531092e-07 - syst_JES_EtaIntercalibration_Stat36: 2.298524639850528e-15 - syst_JES_EtaIntercalibration_Stat37: 2.930573737342229e-14 - syst_JES_EtaIntercalibration_Stat38: 2.4266031845955896e-07 - syst_JES_EtaIntercalibration_Stat39: 1.4983337118841084e-13 - syst_JES_EtaIntercalibration_Stat4: 1.2621422332189823e-17 - syst_JES_EtaIntercalibration_Stat40: 1.0022307921301696e-12 - syst_JES_EtaIntercalibration_Stat41: 1.064457882160281e-13 - syst_JES_EtaIntercalibration_Stat42: 1.2551563732061435e-17 - syst_JES_EtaIntercalibration_Stat43: 9.73686037693876e-19 - syst_JES_EtaIntercalibration_Stat44: 9.73686037693876e-19 - syst_JES_EtaIntercalibration_Stat45: 1.751410992431248e-14 - syst_JES_EtaIntercalibration_Stat46: 2.583394894549951e-13 - syst_JES_EtaIntercalibration_Stat47: 1.912406041482823e-12 - syst_JES_EtaIntercalibration_Stat48: 1.986927660403116e-12 - syst_JES_EtaIntercalibration_Stat49: 4.099764250466203e-06 - syst_JES_EtaIntercalibration_Stat5: 4.384137722160995e-17 - syst_JES_EtaIntercalibration_Stat50: 1.459942270147351e-11 - syst_JES_EtaIntercalibration_Stat51: 1.1883840828200284e-11 - syst_JES_EtaIntercalibration_Stat52: 4.003552765981734e-12 - syst_JES_EtaIntercalibration_Stat53: 4.550530118162059e-12 - syst_JES_EtaIntercalibration_Stat54: 8.398581542521974e-10 - syst_JES_EtaIntercalibration_Stat55: 4.09976426152432e-06 - syst_JES_EtaIntercalibration_Stat56: 2.319216022963148e-07 - syst_JES_EtaIntercalibration_Stat57: 2.317483852095619e-07 - syst_JES_EtaIntercalibration_Stat58: 3.097772075192456e-07 - syst_JES_EtaIntercalibration_Stat59: 3.067886286598641e-13 - syst_JES_EtaIntercalibration_Stat6: 4.393090964821921e-17 - syst_JES_EtaIntercalibration_Stat60: 1.3244965156567986e-13 - syst_JES_EtaIntercalibration_Stat61: 9.76406804308532e-13 - syst_JES_EtaIntercalibration_Stat62: 1.114323264653763e-12 - syst_JES_EtaIntercalibration_Stat63: 1.5339106582522986e-13 - syst_JES_EtaIntercalibration_Stat64: 1.738979010799153e-18 - syst_JES_EtaIntercalibration_Stat65: 9.73686037693876e-19 - syst_JES_EtaIntercalibration_Stat66: 9.73686037693876e-19 - syst_JES_EtaIntercalibration_Stat67: 2.6327605815949163e-13 - syst_JES_EtaIntercalibration_Stat68: 1.6595807512742487e-11 - syst_JES_EtaIntercalibration_Stat69: 2.3331235088975056e-07 - syst_JES_EtaIntercalibration_Stat7: 9.73686037693876e-19 - syst_JES_EtaIntercalibration_Stat70: 4.099924183616558e-06 - syst_JES_EtaIntercalibration_Stat71: 4.099873074723192e-06 - syst_JES_EtaIntercalibration_Stat72: 4.099758488045363e-06 - syst_JES_EtaIntercalibration_Stat73: 6.793235317557537e-07 - syst_JES_EtaIntercalibration_Stat74: 1.0561042771143955e-07 - syst_JES_EtaIntercalibration_Stat75: 8.365642797030006e-10 - syst_JES_EtaIntercalibration_Stat76: 8.311239957350962e-10 - syst_JES_EtaIntercalibration_Stat77: 4.099763614306289e-06 - syst_JES_EtaIntercalibration_Stat78: 2.4170744193664103e-07 - syst_JES_EtaIntercalibration_Stat79: 4.098032166223127e-06 - syst_JES_EtaIntercalibration_Stat8: 5.962584905055861e-19 - syst_JES_EtaIntercalibration_Stat80: 2.3406521151901636e-07 - syst_JES_EtaIntercalibration_Stat81: 9.198988901233698e-11 - syst_JES_EtaIntercalibration_Stat82: 7.210876958283228e-07 - syst_JES_EtaIntercalibration_Stat83: 1.4523227127863144e-10 - syst_JES_EtaIntercalibration_Stat84: 1.4391487222660485e-09 - syst_JES_EtaIntercalibration_Stat85: 2.3017999842514554e-10 - syst_JES_EtaIntercalibration_Stat86: 9.966052766970632e-14 - syst_JES_EtaIntercalibration_Stat87: 5.962584905055861e-19 - syst_JES_EtaIntercalibration_Stat88: 2.8277200621702286e-14 - syst_JES_EtaIntercalibration_Stat89: 4.554926999140601e-10 - syst_JES_EtaIntercalibration_Stat9: 1.5216474610352426e-16 - syst_JES_EtaIntercalibration_Stat90: 2.3345234606481793e-07 - syst_JES_EtaIntercalibration_Stat91: 4.097180775153291e-06 - syst_JES_EtaIntercalibration_Stat92: 3.966057127847529e-06 - syst_JES_EtaIntercalibration_Stat93: 4.0997526915467485e-06 - syst_JES_EtaIntercalibration_Stat94: 6.318363771578841e-11 - syst_JES_EtaIntercalibration_Stat95: 1.0607079716868387e-07 - syst_JES_EtaIntercalibration_Stat96: 1.0623301287484744e-07 - syst_JES_EtaIntercalibration_Stat97: 8.339999261840495e-10 - syst_JES_EtaIntercalibration_Stat98: 4.096298984416596e-06 - syst_JES_EtaIntercalibration_Stat99: 3.1423346018525784e-07 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0009186840751858062 - syst_JES_Flavour_Comp: 0.002817252917293724 - syst_JES_Flavour_Response: 0.0015300696062597935 - syst_JES_Gjet_Generator: 0.004743390638562251 - syst_JES_Gjet_OOC: 0.0036938272333719127 - syst_JES_Gjet_Purity: 0.0010681292337540434 - syst_JES_Gjet_Stat1: 9.742785792574933e-15 - syst_JES_Gjet_Stat10: 0.00012930374936559265 - syst_JES_Gjet_Stat11: 0.00016064515305479963 - syst_JES_Gjet_Stat12: 0.000498134951594445 - syst_JES_Gjet_Stat13: 0.0009998749959369922 - syst_JES_Gjet_Stat14: 0.0009590262913497211 - syst_JES_Gjet_Stat15: 7.946421757621477e-05 - syst_JES_Gjet_Stat2: 2.174589726722109e-09 - syst_JES_Gjet_Stat3: 9.818284548335059e-15 - syst_JES_Gjet_Stat4: 1.6113250637195306e-11 - syst_JES_Gjet_Stat5: 3.771943506045657e-13 - syst_JES_Gjet_Stat6: 2.405530035148179e-05 - syst_JES_Gjet_Stat7: 3.6499995547944935e-05 - syst_JES_Gjet_Stat8: 1.9751556419874864e-05 - syst_JES_Gjet_Stat9: 6.445629274942828e-05 - syst_JES_Gjet_Veto: 0.002986661346721452 - syst_JES_Gjet_dPhi: 0.00032875128516859063 - syst_JES_LArESZee: 0.007018433639352872 - syst_JES_LArEsmear: 0.0005310122668074627 - syst_JES_LAr_JVT: 0.0006877222986060579 - syst_JES_MJB_Alpha: 3.4284788172015886e-05 - syst_JES_MJB_Asym: 0.00027843158495400623 - syst_JES_MJB_Beta: 1.3024170866124263e-05 - syst_JES_MJB_Fragmentation: 0.0007241116264085256 + syst_JER_NP7: 9.98180880e-07 + syst_JER_NP8: 8.71835128e-05 + syst_JES_EtaIntercalibration_Modelling: 6.57573150e-03 + syst_JES_EtaIntercalibration_NonClosure: 3.97842393e-04 + syst_JES_EtaIntercalibration_Stat0: 9.73686038e-19 + syst_JES_EtaIntercalibration_Stat1: 9.73686038e-19 + syst_JES_EtaIntercalibration_Stat10: 1.52164746e-16 + syst_JES_EtaIntercalibration_Stat100: 4.09802533e-06 + syst_JES_EtaIntercalibration_Stat101: 2.34936822e-07 + syst_JES_EtaIntercalibration_Stat102: 5.28362204e-07 + syst_JES_EtaIntercalibration_Stat103: 8.27485739e-07 + syst_JES_EtaIntercalibration_Stat104: 1.05540350e-07 + syst_JES_EtaIntercalibration_Stat105: 1.43103840e-09 + syst_JES_EtaIntercalibration_Stat106: 1.15523451e-10 + syst_JES_EtaIntercalibration_Stat107: 1.04945121e-13 + syst_JES_EtaIntercalibration_Stat108: 1.46703003e-12 + syst_JES_EtaIntercalibration_Stat109: 2.19771471e-07 + syst_JES_EtaIntercalibration_Stat11: 4.09976426e-06 + syst_JES_EtaIntercalibration_Stat110: 1.32263556e-06 + syst_JES_EtaIntercalibration_Stat111: 1.67391373e-07 + syst_JES_EtaIntercalibration_Stat112: 1.76370697e-06 + syst_JES_EtaIntercalibration_Stat113: 3.97701607e-07 + syst_JES_EtaIntercalibration_Stat114: 2.31163060e-06 + syst_JES_EtaIntercalibration_Stat115: 6.60838836e-08 + syst_JES_EtaIntercalibration_Stat116: 6.39332745e-07 + syst_JES_EtaIntercalibration_Stat117: 5.64890600e-09 + syst_JES_EtaIntercalibration_Stat118: 4.03315617e-06 + syst_JES_EtaIntercalibration_Stat119: 3.85851872e-07 + syst_JES_EtaIntercalibration_Stat12: 7.29565789e-17 + syst_JES_EtaIntercalibration_Stat120: 2.24694398e-06 + syst_JES_EtaIntercalibration_Stat121: 3.49835209e-06 + syst_JES_EtaIntercalibration_Stat122: 3.61263304e-07 + syst_JES_EtaIntercalibration_Stat123: 1.73245352e-06 + syst_JES_EtaIntercalibration_Stat124: 4.53602081e-08 + syst_JES_EtaIntercalibration_Stat125: 7.06810340e-09 + syst_JES_EtaIntercalibration_Stat126: 2.68338271e-09 + syst_JES_EtaIntercalibration_Stat127: 2.42054100e-10 + syst_JES_EtaIntercalibration_Stat128: 5.41575782e-08 + syst_JES_EtaIntercalibration_Stat129: 2.36887363e-06 + syst_JES_EtaIntercalibration_Stat13: 3.87459766e-07 + syst_JES_EtaIntercalibration_Stat130: 2.78602800e-06 + syst_JES_EtaIntercalibration_Stat131: 5.71810904e-06 + syst_JES_EtaIntercalibration_Stat132: 3.19876453e-06 + syst_JES_EtaIntercalibration_Stat133: 5.68274494e-06 + syst_JES_EtaIntercalibration_Stat134: 4.69836329e-06 + syst_JES_EtaIntercalibration_Stat135: 6.56595964e-07 + syst_JES_EtaIntercalibration_Stat136: 2.27786759e-07 + syst_JES_EtaIntercalibration_Stat137: 2.77206462e-06 + syst_JES_EtaIntercalibration_Stat138: 1.11980141e-05 + syst_JES_EtaIntercalibration_Stat139: 1.14250415e-06 + syst_JES_EtaIntercalibration_Stat14: 4.00103737e-07 + syst_JES_EtaIntercalibration_Stat140: 2.94211370e-06 + syst_JES_EtaIntercalibration_Stat141: 5.66559412e-06 + syst_JES_EtaIntercalibration_Stat142: 5.00141640e-07 + syst_JES_EtaIntercalibration_Stat143: 1.06466358e-06 + syst_JES_EtaIntercalibration_Stat144: 1.08045310e-05 + syst_JES_EtaIntercalibration_Stat145: 1.03780228e-05 + syst_JES_EtaIntercalibration_Stat146: 4.48733906e-07 + syst_JES_EtaIntercalibration_Stat147: 6.15223921e-08 + syst_JES_EtaIntercalibration_Stat148: 4.15862414e-06 + syst_JES_EtaIntercalibration_Stat149: 2.41500745e-06 + syst_JES_EtaIntercalibration_Stat15: 1.52395960e-16 + syst_JES_EtaIntercalibration_Stat150: 4.66571185e-06 + syst_JES_EtaIntercalibration_Stat151: 2.84076059e-06 + syst_JES_EtaIntercalibration_Stat152: 3.46221963e-06 + syst_JES_EtaIntercalibration_Stat153: 8.75032068e-07 + syst_JES_EtaIntercalibration_Stat154: 3.44512235e-07 + syst_JES_EtaIntercalibration_Stat155: 1.41587343e-06 + syst_JES_EtaIntercalibration_Stat156: 2.97131869e-06 + syst_JES_EtaIntercalibration_Stat157: 9.54464290e-06 + syst_JES_EtaIntercalibration_Stat158: 4.24807580e-06 + syst_JES_EtaIntercalibration_Stat159: 1.29694095e-06 + syst_JES_EtaIntercalibration_Stat16: 4.40640366e-18 + syst_JES_EtaIntercalibration_Stat160: 7.85329005e-06 + syst_JES_EtaIntercalibration_Stat161: 3.96417857e-06 + syst_JES_EtaIntercalibration_Stat162: 2.22763691e-06 + syst_JES_EtaIntercalibration_Stat163: 1.05609558e-05 + syst_JES_EtaIntercalibration_Stat164: 7.56818477e-06 + syst_JES_EtaIntercalibration_Stat165: 1.78176274e-05 + syst_JES_EtaIntercalibration_Stat166: 6.99199119e-06 + syst_JES_EtaIntercalibration_Stat167: 1.33075276e-05 + syst_JES_EtaIntercalibration_Stat168: 1.28140712e-05 + syst_JES_EtaIntercalibration_Stat169: 1.14008986e-05 + syst_JES_EtaIntercalibration_Stat17: 2.43006728e-07 + syst_JES_EtaIntercalibration_Stat170: 6.89606395e-06 + syst_JES_EtaIntercalibration_Stat171: 1.68696561e-06 + syst_JES_EtaIntercalibration_Stat172: 5.78597016e-07 + syst_JES_EtaIntercalibration_Stat173: 2.64570744e-06 + syst_JES_EtaIntercalibration_Stat174: 6.67042435e-06 + syst_JES_EtaIntercalibration_Stat175: 3.70463450e-06 + syst_JES_EtaIntercalibration_Stat176: 7.99463157e-06 + syst_JES_EtaIntercalibration_Stat177: 1.37738254e-05 + syst_JES_EtaIntercalibration_Stat178: 7.91547011e-06 + syst_JES_EtaIntercalibration_Stat179: 7.88832878e-06 + syst_JES_EtaIntercalibration_Stat18: 1.24236785e-18 + syst_JES_EtaIntercalibration_Stat180: 2.72463698e-05 + syst_JES_EtaIntercalibration_Stat181: 1.50019121e-05 + syst_JES_EtaIntercalibration_Stat182: 6.33789215e-05 + syst_JES_EtaIntercalibration_Stat183: 1.31142894e-05 + syst_JES_EtaIntercalibration_Stat184: 3.05620366e-07 + syst_JES_EtaIntercalibration_Stat185: 4.60169617e-05 + syst_JES_EtaIntercalibration_Stat186: 4.40928315e-05 + syst_JES_EtaIntercalibration_Stat187: 6.00737537e-05 + syst_JES_EtaIntercalibration_Stat188: 2.56771059e-05 + syst_JES_EtaIntercalibration_Stat189: 1.07661422e-05 + syst_JES_EtaIntercalibration_Stat19: 3.11757308e-18 + syst_JES_EtaIntercalibration_Stat190: 7.86219009e-06 + syst_JES_EtaIntercalibration_Stat191: 1.33666196e-05 + syst_JES_EtaIntercalibration_Stat192: 8.47290014e-06 + syst_JES_EtaIntercalibration_Stat193: 5.81859216e-05 + syst_JES_EtaIntercalibration_Stat194: 7.89035745e-06 + syst_JES_EtaIntercalibration_Stat195: 4.16532250e-06 + syst_JES_EtaIntercalibration_Stat196: 6.30422665e-05 + syst_JES_EtaIntercalibration_Stat197: 9.01368848e-05 + syst_JES_EtaIntercalibration_Stat198: 8.29324814e-05 + syst_JES_EtaIntercalibration_Stat199: 4.63339020e-05 + syst_JES_EtaIntercalibration_Stat2: 1.37313880e-18 + syst_JES_EtaIntercalibration_Stat20: 9.73686038e-19 + syst_JES_EtaIntercalibration_Stat200: 8.07072566e-05 + syst_JES_EtaIntercalibration_Stat201: 3.70499835e-05 + syst_JES_EtaIntercalibration_Stat202: 5.05464392e-05 + syst_JES_EtaIntercalibration_Stat203: 4.73825285e-06 + syst_JES_EtaIntercalibration_Stat204: 5.56297585e-06 + syst_JES_EtaIntercalibration_Stat205: 6.46611197e-06 + syst_JES_EtaIntercalibration_Stat206: 1.74583008e-05 + syst_JES_EtaIntercalibration_Stat207: 2.64630913e-05 + syst_JES_EtaIntercalibration_Stat208: 7.25200671e-05 + syst_JES_EtaIntercalibration_Stat209: 1.71304313e-05 + syst_JES_EtaIntercalibration_Stat21: 9.73686038e-19 + syst_JES_EtaIntercalibration_Stat210: 6.35750098e-05 + syst_JES_EtaIntercalibration_Stat211: 8.50724409e-05 + syst_JES_EtaIntercalibration_Stat212: 1.43385163e-05 + syst_JES_EtaIntercalibration_Stat213: 8.50957443e-06 + syst_JES_EtaIntercalibration_Stat214: 1.11912556e-05 + syst_JES_EtaIntercalibration_Stat215: 3.37466137e-05 + syst_JES_EtaIntercalibration_Stat216: 8.77129062e-06 + syst_JES_EtaIntercalibration_Stat217: 5.14041382e-06 + syst_JES_EtaIntercalibration_Stat218: 7.15839655e-06 + syst_JES_EtaIntercalibration_Stat219: 2.78776057e-06 + syst_JES_EtaIntercalibration_Stat22: 9.73686038e-19 + syst_JES_EtaIntercalibration_Stat220: 2.09300177e-05 + syst_JES_EtaIntercalibration_Stat221: 7.32922977e-06 + syst_JES_EtaIntercalibration_Stat222: 6.25789957e-06 + syst_JES_EtaIntercalibration_Stat223: 1.87814714e-05 + syst_JES_EtaIntercalibration_Stat224: 2.18670224e-05 + syst_JES_EtaIntercalibration_Stat225: 4.08877720e-06 + syst_JES_EtaIntercalibration_Stat226: 1.35169547e-05 + syst_JES_EtaIntercalibration_Stat227: 1.11889109e-05 + syst_JES_EtaIntercalibration_Stat228: 8.87762587e-06 + syst_JES_EtaIntercalibration_Stat229: 2.81604843e-06 + syst_JES_EtaIntercalibration_Stat23: 1.37313880e-18 + syst_JES_EtaIntercalibration_Stat230: 1.64112489e-06 + syst_JES_EtaIntercalibration_Stat231: 1.87996732e-05 + syst_JES_EtaIntercalibration_Stat232: 1.27565692e-05 + syst_JES_EtaIntercalibration_Stat233: 6.78923663e-06 + syst_JES_EtaIntercalibration_Stat234: 8.25019963e-06 + syst_JES_EtaIntercalibration_Stat235: 1.57473622e-05 + syst_JES_EtaIntercalibration_Stat236: 1.90731382e-06 + syst_JES_EtaIntercalibration_Stat237: 4.68433141e-09 + syst_JES_EtaIntercalibration_Stat238: 2.22357252e-06 + syst_JES_EtaIntercalibration_Stat239: 4.91441716e-07 + syst_JES_EtaIntercalibration_Stat24: 2.38714902e-13 + syst_JES_EtaIntercalibration_Stat240: 5.69497779e-07 + syst_JES_EtaIntercalibration_Stat241: 3.57528540e-07 + syst_JES_EtaIntercalibration_Stat242: 7.22000523e-07 + syst_JES_EtaIntercalibration_Stat243: 1.35999317e-06 + syst_JES_EtaIntercalibration_Stat244: 2.04619558e-06 + syst_JES_EtaIntercalibration_Stat245: 4.54074979e-06 + syst_JES_EtaIntercalibration_Stat25: 2.34788059e-15 + syst_JES_EtaIntercalibration_Stat26: 1.52560742e-15 + syst_JES_EtaIntercalibration_Stat27: 4.09976426e-06 + syst_JES_EtaIntercalibration_Stat28: 3.11253006e-15 + syst_JES_EtaIntercalibration_Stat29: 2.24980421e-14 + syst_JES_EtaIntercalibration_Stat3: 1.37313880e-18 + syst_JES_EtaIntercalibration_Stat30: 2.52465533e-14 + syst_JES_EtaIntercalibration_Stat31: 1.72923926e-13 + syst_JES_EtaIntercalibration_Stat32: 1.25451191e-16 + syst_JES_EtaIntercalibration_Stat33: 4.09976426e-06 + syst_JES_EtaIntercalibration_Stat34: 4.09976426e-06 + syst_JES_EtaIntercalibration_Stat35: 2.52879417e-07 + syst_JES_EtaIntercalibration_Stat36: 2.29852464e-15 + syst_JES_EtaIntercalibration_Stat37: 2.93057374e-14 + syst_JES_EtaIntercalibration_Stat38: 2.42660318e-07 + syst_JES_EtaIntercalibration_Stat39: 1.49833371e-13 + syst_JES_EtaIntercalibration_Stat4: 1.26214223e-17 + syst_JES_EtaIntercalibration_Stat40: 1.00223079e-12 + syst_JES_EtaIntercalibration_Stat41: 1.06445788e-13 + syst_JES_EtaIntercalibration_Stat42: 1.25515637e-17 + syst_JES_EtaIntercalibration_Stat43: 9.73686038e-19 + syst_JES_EtaIntercalibration_Stat44: 9.73686038e-19 + syst_JES_EtaIntercalibration_Stat45: 1.75141099e-14 + syst_JES_EtaIntercalibration_Stat46: 2.58339489e-13 + syst_JES_EtaIntercalibration_Stat47: 1.91240604e-12 + syst_JES_EtaIntercalibration_Stat48: 1.98692766e-12 + syst_JES_EtaIntercalibration_Stat49: 4.09976425e-06 + syst_JES_EtaIntercalibration_Stat5: 4.38413772e-17 + syst_JES_EtaIntercalibration_Stat50: 1.45994227e-11 + syst_JES_EtaIntercalibration_Stat51: 1.18838408e-11 + syst_JES_EtaIntercalibration_Stat52: 4.00355277e-12 + syst_JES_EtaIntercalibration_Stat53: 4.55053012e-12 + syst_JES_EtaIntercalibration_Stat54: 8.39858154e-10 + syst_JES_EtaIntercalibration_Stat55: 4.09976426e-06 + syst_JES_EtaIntercalibration_Stat56: 2.31921602e-07 + syst_JES_EtaIntercalibration_Stat57: 2.31748385e-07 + syst_JES_EtaIntercalibration_Stat58: 3.09777208e-07 + syst_JES_EtaIntercalibration_Stat59: 3.06788629e-13 + syst_JES_EtaIntercalibration_Stat6: 4.39309096e-17 + syst_JES_EtaIntercalibration_Stat60: 1.32449652e-13 + syst_JES_EtaIntercalibration_Stat61: 9.76406804e-13 + syst_JES_EtaIntercalibration_Stat62: 1.11432326e-12 + syst_JES_EtaIntercalibration_Stat63: 1.53391066e-13 + syst_JES_EtaIntercalibration_Stat64: 1.73897901e-18 + syst_JES_EtaIntercalibration_Stat65: 9.73686038e-19 + syst_JES_EtaIntercalibration_Stat66: 9.73686038e-19 + syst_JES_EtaIntercalibration_Stat67: 2.63276058e-13 + syst_JES_EtaIntercalibration_Stat68: 1.65958075e-11 + syst_JES_EtaIntercalibration_Stat69: 2.33312351e-07 + syst_JES_EtaIntercalibration_Stat7: 9.73686038e-19 + syst_JES_EtaIntercalibration_Stat70: 4.09992418e-06 + syst_JES_EtaIntercalibration_Stat71: 4.09987307e-06 + syst_JES_EtaIntercalibration_Stat72: 4.09975849e-06 + syst_JES_EtaIntercalibration_Stat73: 6.79323532e-07 + syst_JES_EtaIntercalibration_Stat74: 1.05610428e-07 + syst_JES_EtaIntercalibration_Stat75: 8.36564280e-10 + syst_JES_EtaIntercalibration_Stat76: 8.31123996e-10 + syst_JES_EtaIntercalibration_Stat77: 4.09976361e-06 + syst_JES_EtaIntercalibration_Stat78: 2.41707442e-07 + syst_JES_EtaIntercalibration_Stat79: 4.09803217e-06 + syst_JES_EtaIntercalibration_Stat8: 5.96258491e-19 + syst_JES_EtaIntercalibration_Stat80: 2.34065212e-07 + syst_JES_EtaIntercalibration_Stat81: 9.19898890e-11 + syst_JES_EtaIntercalibration_Stat82: 7.21087696e-07 + syst_JES_EtaIntercalibration_Stat83: 1.45232271e-10 + syst_JES_EtaIntercalibration_Stat84: 1.43914872e-09 + syst_JES_EtaIntercalibration_Stat85: 2.30179998e-10 + syst_JES_EtaIntercalibration_Stat86: 9.96605277e-14 + syst_JES_EtaIntercalibration_Stat87: 5.96258491e-19 + syst_JES_EtaIntercalibration_Stat88: 2.82772006e-14 + syst_JES_EtaIntercalibration_Stat89: 4.55492700e-10 + syst_JES_EtaIntercalibration_Stat9: 1.52164746e-16 + syst_JES_EtaIntercalibration_Stat90: 2.33452346e-07 + syst_JES_EtaIntercalibration_Stat91: 4.09718078e-06 + syst_JES_EtaIntercalibration_Stat92: 3.96605713e-06 + syst_JES_EtaIntercalibration_Stat93: 4.09975269e-06 + syst_JES_EtaIntercalibration_Stat94: 6.31836377e-11 + syst_JES_EtaIntercalibration_Stat95: 1.06070797e-07 + syst_JES_EtaIntercalibration_Stat96: 1.06233013e-07 + syst_JES_EtaIntercalibration_Stat97: 8.33999926e-10 + syst_JES_EtaIntercalibration_Stat98: 4.09629898e-06 + syst_JES_EtaIntercalibration_Stat99: 3.14233460e-07 + syst_JES_EtaIntercalibration_TotalStat_MJB: 9.18684075e-04 + syst_JES_Flavour_Comp: 2.81725292e-03 + syst_JES_Flavour_Response: 1.53006961e-03 + syst_JES_Gjet_Generator: 4.74339064e-03 + syst_JES_Gjet_OOC: 3.69382723e-03 + syst_JES_Gjet_Purity: 1.06812923e-03 + syst_JES_Gjet_Stat1: 9.74278579e-15 + syst_JES_Gjet_Stat10: 1.29303749e-04 + syst_JES_Gjet_Stat11: 1.60645153e-04 + syst_JES_Gjet_Stat12: 4.98134952e-04 + syst_JES_Gjet_Stat13: 9.99874996e-04 + syst_JES_Gjet_Stat14: 9.59026291e-04 + syst_JES_Gjet_Stat15: 7.94642176e-05 + syst_JES_Gjet_Stat2: 2.17458973e-09 + syst_JES_Gjet_Stat3: 9.81828455e-15 + syst_JES_Gjet_Stat4: 1.61132506e-11 + syst_JES_Gjet_Stat5: 3.77194351e-13 + syst_JES_Gjet_Stat6: 2.40553004e-05 + syst_JES_Gjet_Stat7: 3.64999955e-05 + syst_JES_Gjet_Stat8: 1.97515564e-05 + syst_JES_Gjet_Stat9: 6.44562927e-05 + syst_JES_Gjet_Veto: 2.98666135e-03 + syst_JES_Gjet_dPhi: 3.28751285e-04 + syst_JES_LArESZee: 7.01843364e-03 + syst_JES_LArEsmear: 5.31012267e-04 + syst_JES_LAr_JVT: 6.87722299e-04 + syst_JES_MJB_Alpha: 3.42847882e-05 + syst_JES_MJB_Asym: 2.78431585e-04 + syst_JES_MJB_Beta: 1.30241709e-05 + syst_JES_MJB_Fragmentation: 7.24111626e-04 syst_JES_MJB_Stat1: 0.0 - syst_JES_MJB_Stat10: 7.450438644804747e-15 - syst_JES_MJB_Stat11: 2.771272484743813e-14 - syst_JES_MJB_Stat12: 1.2233458913301132e-08 - syst_JES_MJB_Stat13: 1.1663158534462268e-18 - syst_JES_MJB_Stat14: 1.299036305508497e-18 - syst_JES_MJB_Stat15: 2.9644042028467747e-18 - syst_JES_MJB_Stat16: 5.259411171176864e-07 - syst_JES_MJB_Stat2: 3.704856677389828e-05 - syst_JES_MJB_Stat3: 1.940762929880927e-05 - syst_JES_MJB_Stat4: 2.8197787147221324e-07 - syst_JES_MJB_Stat5: 2.4394414278682735e-06 + syst_JES_MJB_Stat10: 7.45043864e-15 + syst_JES_MJB_Stat11: 2.77127248e-14 + syst_JES_MJB_Stat12: 1.22334589e-08 + syst_JES_MJB_Stat13: 1.16631585e-18 + syst_JES_MJB_Stat14: 1.29903631e-18 + syst_JES_MJB_Stat15: 2.96440420e-18 + syst_JES_MJB_Stat16: 5.25941117e-07 + syst_JES_MJB_Stat2: 3.70485668e-05 + syst_JES_MJB_Stat3: 1.94076293e-05 + syst_JES_MJB_Stat4: 2.81977871e-07 + syst_JES_MJB_Stat5: 2.43944143e-06 syst_JES_MJB_Stat6: 0.0 syst_JES_MJB_Stat7: 0.0 syst_JES_MJB_Stat8: 0.0 - syst_JES_MJB_Stat9: 5.212606905378536e-06 - syst_JES_MJB_Threshold: 0.0003320739827207184 - syst_JES_Pileup_MuOffset: 0.0007468378739726582 - syst_JES_Pileup_NPVOffset: 0.0007292520209090956 - syst_JES_Pileup_Pt_term: 0.0008338117098602057 - syst_JES_Pileup_Rho_topology: 0.0014569958544896414 - syst_JES_PunchThrough_MC15: 0.0002095717239992075 - syst_JES_SingleParticle_HighPt: 4.017780730701963e-07 - syst_JES_Zjet_MC: 0.002958946560855738 - syst_JES_Zjet_MuScale: 0.0001993332887402403 - syst_JES_Zjet_MuSmearID: 3.0139261354585316e-05 - syst_JES_Zjet_MuSmearMS: 0.0007874465251685349 - syst_JES_Zjet_OOC: 0.0013312767631112623 - syst_JES_Zjet_Stat1: 2.5072516327644502e-05 - syst_JES_Zjet_Stat10: 0.00011784145906683268 - syst_JES_Zjet_Stat11: 0.00014113691818585242 - syst_JES_Zjet_Stat12: 0.0006370645493197686 - syst_JES_Zjet_Stat13: 0.0008263193132802839 + syst_JES_MJB_Stat9: 5.21260691e-06 + syst_JES_MJB_Threshold: 3.32073983e-04 + syst_JES_Pileup_MuOffset: 7.46837874e-04 + syst_JES_Pileup_NPVOffset: 7.29252021e-04 + syst_JES_Pileup_Pt_term: 8.33811710e-04 + syst_JES_Pileup_Rho_topology: 1.45699585e-03 + syst_JES_PunchThrough_MC15: 2.09571724e-04 + syst_JES_SingleParticle_HighPt: 4.01778073e-07 + syst_JES_Zjet_MC: 2.95894656e-03 + syst_JES_Zjet_MuScale: 1.99333289e-04 + syst_JES_Zjet_MuSmearID: 3.01392614e-05 + syst_JES_Zjet_MuSmearMS: 7.87446525e-04 + syst_JES_Zjet_OOC: 1.33127676e-03 + syst_JES_Zjet_Stat1: 2.50725163e-05 + syst_JES_Zjet_Stat10: 1.17841459e-04 + syst_JES_Zjet_Stat11: 1.41136918e-04 + syst_JES_Zjet_Stat12: 6.37064549e-04 + syst_JES_Zjet_Stat13: 8.26319313e-04 syst_JES_Zjet_Stat2: 0.0 - syst_JES_Zjet_Stat3: 1.5553816251898255e-05 - syst_JES_Zjet_Stat4: 1.5575799522014912e-14 - syst_JES_Zjet_Stat5: 8.020255511168761e-06 - syst_JES_Zjet_Stat6: 1.896654159302639e-05 - syst_JES_Zjet_Stat7: 2.0636247236355737e-05 - syst_JES_Zjet_Stat8: 2.501956584355532e-05 - syst_JES_Zjet_Stat9: 4.978908113231253e-05 - syst_JES_Zjet_Veto: 0.0002457135730886676 - syst_JES_Zjet_dPhi: 0.00028307645610329375 + syst_JES_Zjet_Stat3: 1.55538163e-05 + syst_JES_Zjet_Stat4: 1.55757995e-14 + syst_JES_Zjet_Stat5: 8.02025551e-06 + syst_JES_Zjet_Stat6: 1.89665416e-05 + syst_JES_Zjet_Stat7: 2.06362472e-05 + syst_JES_Zjet_Stat8: 2.50195658e-05 + syst_JES_Zjet_Stat9: 4.97890811e-05 + syst_JES_Zjet_Veto: 2.45713573e-04 + syst_JES_Zjet_dPhi: 2.83076456e-04 syst_PRW: 0.0 - syst_Unfolding_bias: 2.529e-14 - syst_cleaning: 0.0020100449621836824 + syst_Unfolding_bias: 2.52900000e-14 + syst_cleaning: 2.01004496e-03 syst_lumi: 0.004445 -- stat: 0.0009401 - syst_JER_CROSS_CALIB_FORWARD: 4.615e-11 +- stat: 9.40100000e-04 + syst_JER_CROSS_CALIB_FORWARD: 4.61500000e-11 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.00018520779546228608 - syst_JER_NP1: 9.604030872503483e-05 - syst_JER_NP2: 6.0517855216456575e-05 - syst_JER_NP3: 3.331122145764096e-05 - syst_JER_NP4: 6.631156516777446e-13 + syst_JER_NP0: 1.85207795e-04 + syst_JER_NP1: 9.60403087e-05 + syst_JER_NP2: 6.05178552e-05 + syst_JER_NP3: 3.33112215e-05 + syst_JER_NP4: 6.63115652e-13 syst_JER_NP5: 0.0 syst_JER_NP6: 0.0 - syst_JER_NP7: 8.605694437405966e-08 - syst_JER_NP8: 4.8190539600631157e-05 - syst_JES_EtaIntercalibration_Modelling: 0.004011071801900335 - syst_JES_EtaIntercalibration_NonClosure: 0.0002490103762898245 - syst_JES_EtaIntercalibration_Stat0: 8.734182961216235e-20 - syst_JES_EtaIntercalibration_Stat1: 8.734182961216235e-20 - syst_JES_EtaIntercalibration_Stat10: 1.4590802071167986e-17 - syst_JES_EtaIntercalibration_Stat100: 2.1754551090740704e-06 - syst_JES_EtaIntercalibration_Stat101: 1.247065407812971e-07 - syst_JES_EtaIntercalibration_Stat102: 3.321553917419501e-07 - syst_JES_EtaIntercalibration_Stat103: 4.089660499356884e-07 - syst_JES_EtaIntercalibration_Stat104: 1.9890343805160835e-08 - syst_JES_EtaIntercalibration_Stat105: 1.2176325727582685e-10 - syst_JES_EtaIntercalibration_Stat106: 7.815516921483826e-12 - syst_JES_EtaIntercalibration_Stat107: 7.416668584169952e-15 - syst_JES_EtaIntercalibration_Stat108: 1.0234462174437894e-13 - syst_JES_EtaIntercalibration_Stat109: 5.058186741547484e-06 - syst_JES_EtaIntercalibration_Stat11: 2.175455814306455e-06 - syst_JES_EtaIntercalibration_Stat110: 5.01226059478156e-06 - syst_JES_EtaIntercalibration_Stat111: 1.222928699876436e-06 - syst_JES_EtaIntercalibration_Stat112: 1.4567232647280677e-06 - syst_JES_EtaIntercalibration_Stat113: 2.206109955572251e-07 - syst_JES_EtaIntercalibration_Stat114: 4.56212774791544e-07 - syst_JES_EtaIntercalibration_Stat115: 7.727484632789637e-09 - syst_JES_EtaIntercalibration_Stat116: 1.770972868249257e-07 - syst_JES_EtaIntercalibration_Stat117: 6.605348798511704e-10 - syst_JES_EtaIntercalibration_Stat118: 2.170539957890663e-06 - syst_JES_EtaIntercalibration_Stat119: 1.158350727327436e-06 - syst_JES_EtaIntercalibration_Stat12: 1.2090578879377967e-13 - syst_JES_EtaIntercalibration_Stat120: 4.574375934212229e-07 - syst_JES_EtaIntercalibration_Stat121: 2.028761857654811e-06 - syst_JES_EtaIntercalibration_Stat122: 2.176404600321365e-07 - syst_JES_EtaIntercalibration_Stat123: 3.292107966314592e-07 - syst_JES_EtaIntercalibration_Stat124: 5.964365766785266e-09 - syst_JES_EtaIntercalibration_Stat125: 9.727908745845634e-10 - syst_JES_EtaIntercalibration_Stat126: 2.351571106728436e-10 - syst_JES_EtaIntercalibration_Stat127: 1.7251226045719092e-11 - syst_JES_EtaIntercalibration_Stat128: 1.0285568854954924e-08 - syst_JES_EtaIntercalibration_Stat129: 1.100640799716238e-06 - syst_JES_EtaIntercalibration_Stat13: 2.055944308584079e-07 - syst_JES_EtaIntercalibration_Stat130: 4.392975833077164e-06 - syst_JES_EtaIntercalibration_Stat131: 5.2182705976214e-06 - syst_JES_EtaIntercalibration_Stat132: 3.8714795579338915e-07 - syst_JES_EtaIntercalibration_Stat133: 1.935556795214235e-06 - syst_JES_EtaIntercalibration_Stat134: 1.3400151752872056e-06 - syst_JES_EtaIntercalibration_Stat135: 1.4814056399244604e-07 - syst_JES_EtaIntercalibration_Stat136: 4.074840211591124e-08 - syst_JES_EtaIntercalibration_Stat137: 1.9270236962749654e-06 - syst_JES_EtaIntercalibration_Stat138: 9.503787659664961e-06 - syst_JES_EtaIntercalibration_Stat139: 1.1358082716726446e-06 - syst_JES_EtaIntercalibration_Stat14: 2.1234942900792652e-07 - syst_JES_EtaIntercalibration_Stat140: 9.230224631611086e-07 - syst_JES_EtaIntercalibration_Stat141: 5.351695315505172e-07 - syst_JES_EtaIntercalibration_Stat142: 1.0173223253595686e-06 - syst_JES_EtaIntercalibration_Stat143: 2.788454066324206e-07 - syst_JES_EtaIntercalibration_Stat144: 4.208653562209653e-06 - syst_JES_EtaIntercalibration_Stat145: 4.695029050887226e-06 - syst_JES_EtaIntercalibration_Stat146: 5.087268440676194e-06 - syst_JES_EtaIntercalibration_Stat147: 1.411528306146593e-07 - syst_JES_EtaIntercalibration_Stat148: 4.18144481608929e-06 - syst_JES_EtaIntercalibration_Stat149: 1.0379637077831768e-06 - syst_JES_EtaIntercalibration_Stat15: 1.462674792710943e-17 - syst_JES_EtaIntercalibration_Stat150: 3.6942484496173236e-07 - syst_JES_EtaIntercalibration_Stat151: 8.643775737488797e-07 - syst_JES_EtaIntercalibration_Stat152: 1.49569137441519e-06 - syst_JES_EtaIntercalibration_Stat153: 8.821334761583437e-07 - syst_JES_EtaIntercalibration_Stat154: 1.0539828497181537e-07 - syst_JES_EtaIntercalibration_Stat155: 5.6892791283254855e-06 - syst_JES_EtaIntercalibration_Stat156: 1.781737051306954e-06 - syst_JES_EtaIntercalibration_Stat157: 3.312336875802339e-06 - syst_JES_EtaIntercalibration_Stat158: 1.6620375687691299e-06 - syst_JES_EtaIntercalibration_Stat159: 3.8728324557099034e-07 - syst_JES_EtaIntercalibration_Stat16: 7.873728333515198e-19 - syst_JES_EtaIntercalibration_Stat160: 3.4599975477881485e-06 - syst_JES_EtaIntercalibration_Stat161: 3.701310308525887e-07 - syst_JES_EtaIntercalibration_Stat162: 2.7137096157612368e-06 - syst_JES_EtaIntercalibration_Stat163: 4.852747404048556e-06 - syst_JES_EtaIntercalibration_Stat164: 7.300958067781242e-06 - syst_JES_EtaIntercalibration_Stat165: 8.21690785819094e-06 - syst_JES_EtaIntercalibration_Stat166: 2.939261762330807e-06 - syst_JES_EtaIntercalibration_Stat167: 3.2433200871175204e-06 - syst_JES_EtaIntercalibration_Stat168: 2.9993884376652515e-06 - syst_JES_EtaIntercalibration_Stat169: 5.544205891514131e-06 - syst_JES_EtaIntercalibration_Stat17: 6.767122505546101e-08 - syst_JES_EtaIntercalibration_Stat170: 3.060298025928194e-06 - syst_JES_EtaIntercalibration_Stat171: 8.044248317897701e-07 - syst_JES_EtaIntercalibration_Stat172: 1.6398927914653446e-07 - syst_JES_EtaIntercalibration_Stat173: 2.02889714623487e-06 - syst_JES_EtaIntercalibration_Stat174: 4.3004798764207696e-06 - syst_JES_EtaIntercalibration_Stat175: 1.7662283968954866e-06 - syst_JES_EtaIntercalibration_Stat176: 3.459684191873587e-06 - syst_JES_EtaIntercalibration_Stat177: 2.8995431967811756e-06 - syst_JES_EtaIntercalibration_Stat178: 3.807524491057149e-06 - syst_JES_EtaIntercalibration_Stat179: 3.323157685094103e-06 - syst_JES_EtaIntercalibration_Stat18: 1.1144363810913568e-19 - syst_JES_EtaIntercalibration_Stat180: 1.3669591461342216e-05 - syst_JES_EtaIntercalibration_Stat181: 5.687891856171319e-06 - syst_JES_EtaIntercalibration_Stat182: 2.756536380437414e-05 - syst_JES_EtaIntercalibration_Stat183: 6.8730450898782856e-06 - syst_JES_EtaIntercalibration_Stat184: 1.622065582290245e-07 - syst_JES_EtaIntercalibration_Stat185: 2.0364437311155936e-05 - syst_JES_EtaIntercalibration_Stat186: 1.352005646253003e-05 - syst_JES_EtaIntercalibration_Stat187: 1.5513468728817552e-05 - syst_JES_EtaIntercalibration_Stat188: 6.952648447174646e-06 - syst_JES_EtaIntercalibration_Stat189: 6.696504517283625e-06 - syst_JES_EtaIntercalibration_Stat19: 5.165313077394245e-19 - syst_JES_EtaIntercalibration_Stat190: 6.726851842243889e-06 - syst_JES_EtaIntercalibration_Stat191: 4.946762855646104e-06 - syst_JES_EtaIntercalibration_Stat192: 4.4799364671834355e-06 - syst_JES_EtaIntercalibration_Stat193: 2.08199520412512e-05 - syst_JES_EtaIntercalibration_Stat194: 4.18376872568414e-06 - syst_JES_EtaIntercalibration_Stat195: 2.2101811577334558e-06 - syst_JES_EtaIntercalibration_Stat196: 3.057417477218314e-05 - syst_JES_EtaIntercalibration_Stat197: 3.523853801777253e-05 - syst_JES_EtaIntercalibration_Stat198: 3.280227545460832e-05 - syst_JES_EtaIntercalibration_Stat199: 2.474657754114698e-05 - syst_JES_EtaIntercalibration_Stat2: 1.2317632037043483e-19 - syst_JES_EtaIntercalibration_Stat20: 8.734182961216235e-20 - syst_JES_EtaIntercalibration_Stat200: 3.309683066397748e-05 - syst_JES_EtaIntercalibration_Stat201: 1.7966938992215675e-05 - syst_JES_EtaIntercalibration_Stat202: 2.5465210179919975e-05 - syst_JES_EtaIntercalibration_Stat203: 2.514520464720858e-06 - syst_JES_EtaIntercalibration_Stat204: 2.6065547433345806e-06 - syst_JES_EtaIntercalibration_Stat205: 2.9556726391804624e-06 - syst_JES_EtaIntercalibration_Stat206: 5.535865029965958e-06 - syst_JES_EtaIntercalibration_Stat207: 1.19722494440268e-05 - syst_JES_EtaIntercalibration_Stat208: 2.8281198754649704e-05 - syst_JES_EtaIntercalibration_Stat209: 1.0457177248187007e-05 - syst_JES_EtaIntercalibration_Stat21: 8.734182961216235e-20 - syst_JES_EtaIntercalibration_Stat210: 3.115446438313457e-05 - syst_JES_EtaIntercalibration_Stat211: 3.808330441282637e-05 - syst_JES_EtaIntercalibration_Stat212: 8.165897709835705e-06 - syst_JES_EtaIntercalibration_Stat213: 9.175112478874577e-06 - syst_JES_EtaIntercalibration_Stat214: 1.0713775838610774e-05 - syst_JES_EtaIntercalibration_Stat215: 1.8073852543591805e-05 - syst_JES_EtaIntercalibration_Stat216: 6.192015990773926e-06 - syst_JES_EtaIntercalibration_Stat217: 1.5840112397012844e-06 - syst_JES_EtaIntercalibration_Stat218: 9.510284543981846e-06 - syst_JES_EtaIntercalibration_Stat219: 1.47923462219487e-06 - syst_JES_EtaIntercalibration_Stat22: 8.734182961216235e-20 - syst_JES_EtaIntercalibration_Stat220: 1.531473934743912e-05 - syst_JES_EtaIntercalibration_Stat221: 7.2741750563208195e-06 - syst_JES_EtaIntercalibration_Stat222: 3.7897271669606857e-06 - syst_JES_EtaIntercalibration_Stat223: 1.0770747792052324e-05 - syst_JES_EtaIntercalibration_Stat224: 1.4354696470145233e-05 - syst_JES_EtaIntercalibration_Stat225: 8.555624556213006e-06 - syst_JES_EtaIntercalibration_Stat226: 9.17369952132181e-06 - syst_JES_EtaIntercalibration_Stat227: 1.1963412838734605e-05 - syst_JES_EtaIntercalibration_Stat228: 9.494497406392819e-06 - syst_JES_EtaIntercalibration_Stat229: 1.4953423287996632e-06 - syst_JES_EtaIntercalibration_Stat23: 1.2317632037043483e-19 - syst_JES_EtaIntercalibration_Stat230: 4.905168366235971e-06 - syst_JES_EtaIntercalibration_Stat231: 9.857711803456215e-06 - syst_JES_EtaIntercalibration_Stat232: 9.704681741463511e-06 - syst_JES_EtaIntercalibration_Stat233: 5.890983852464714e-06 - syst_JES_EtaIntercalibration_Stat234: 4.219956069676555e-06 - syst_JES_EtaIntercalibration_Stat235: 1.1198233253509234e-05 - syst_JES_EtaIntercalibration_Stat236: 6.014390742211551e-07 - syst_JES_EtaIntercalibration_Stat237: 1.3068323343108964e-07 - syst_JES_EtaIntercalibration_Stat238: 3.44028207419101e-06 - syst_JES_EtaIntercalibration_Stat239: 2.951777938802308e-07 - syst_JES_EtaIntercalibration_Stat24: 1.728746054225432e-14 - syst_JES_EtaIntercalibration_Stat240: 3.0224277460346337e-07 - syst_JES_EtaIntercalibration_Stat241: 2.6607227415685387e-07 - syst_JES_EtaIntercalibration_Stat242: 8.991622364734854e-07 - syst_JES_EtaIntercalibration_Stat243: 6.108913815073839e-07 - syst_JES_EtaIntercalibration_Stat244: 1.1903931871103555e-06 - syst_JES_EtaIntercalibration_Stat245: 2.4678920154658305e-06 - syst_JES_EtaIntercalibration_Stat25: 2.043466299422381e-16 - syst_JES_EtaIntercalibration_Stat26: 1.326044991695229e-16 - syst_JES_EtaIntercalibration_Stat27: 2.175455814226951e-06 - syst_JES_EtaIntercalibration_Stat28: 2.655146829744073e-16 - syst_JES_EtaIntercalibration_Stat29: 1.7661512583864383e-15 - syst_JES_EtaIntercalibration_Stat3: 1.2317632037043483e-19 - syst_JES_EtaIntercalibration_Stat30: 1.982574667377751e-15 - syst_JES_EtaIntercalibration_Stat31: 1.2084388772296265e-14 - syst_JES_EtaIntercalibration_Stat32: 1.311289353079632e-17 - syst_JES_EtaIntercalibration_Stat33: 2.1754558143003725e-06 - syst_JES_EtaIntercalibration_Stat34: 2.1754558142727003e-06 - syst_JES_EtaIntercalibration_Stat35: 1.342339375398515e-07 - syst_JES_EtaIntercalibration_Stat36: 1.2340162991207328e-12 - syst_JES_EtaIntercalibration_Stat37: 2.494954830753455e-15 - syst_JES_EtaIntercalibration_Stat38: 6.757596227875409e-08 - syst_JES_EtaIntercalibration_Stat39: 1.1035132704964865e-14 - syst_JES_EtaIntercalibration_Stat4: 1.523815331068696e-18 - syst_JES_EtaIntercalibration_Stat40: 7.37919775996168e-14 - syst_JES_EtaIntercalibration_Stat41: 7.52787099235116e-15 - syst_JES_EtaIntercalibration_Stat42: 1.5203671996840104e-18 - syst_JES_EtaIntercalibration_Stat43: 8.734182961216235e-20 - syst_JES_EtaIntercalibration_Stat44: 8.734182961216235e-20 - syst_JES_EtaIntercalibration_Stat45: 1.3556771575355357e-15 - syst_JES_EtaIntercalibration_Stat46: 1.860118941035761e-14 - syst_JES_EtaIntercalibration_Stat47: 1.3108551359704093e-13 - syst_JES_EtaIntercalibration_Stat48: 1.4101357571775668e-13 - syst_JES_EtaIntercalibration_Stat49: 2.1754558134684857e-06 - syst_JES_EtaIntercalibration_Stat5: 4.71282207951881e-18 - syst_JES_EtaIntercalibration_Stat50: 1.0411698818208053e-12 - syst_JES_EtaIntercalibration_Stat51: 8.385345357676093e-13 - syst_JES_EtaIntercalibration_Stat52: 2.847251985687252e-13 - syst_JES_EtaIntercalibration_Stat53: 3.236742688259294e-13 - syst_JES_EtaIntercalibration_Stat54: 6.375330470998974e-11 - syst_JES_EtaIntercalibration_Stat55: 2.175455814307792e-06 - syst_JES_EtaIntercalibration_Stat56: 1.230622098099012e-07 - syst_JES_EtaIntercalibration_Stat57: 1.2297560633944038e-07 - syst_JES_EtaIntercalibration_Stat58: 1.6437161578106882e-07 - syst_JES_EtaIntercalibration_Stat59: 2.3027079710636344e-14 - syst_JES_EtaIntercalibration_Stat6: 4.720797422160265e-18 - syst_JES_EtaIntercalibration_Stat60: 9.533788080919097e-15 - syst_JES_EtaIntercalibration_Stat61: 7.17128524045725e-14 - syst_JES_EtaIntercalibration_Stat62: 8.135564529096284e-14 - syst_JES_EtaIntercalibration_Stat63: 1.1046959887226893e-14 - syst_JES_EtaIntercalibration_Stat64: 2.28284296437578e-19 - syst_JES_EtaIntercalibration_Stat65: 8.734182961216235e-20 - syst_JES_EtaIntercalibration_Stat66: 8.734182961216235e-20 - syst_JES_EtaIntercalibration_Stat67: 1.9502372240319894e-14 - syst_JES_EtaIntercalibration_Stat68: 1.1821219395646118e-12 - syst_JES_EtaIntercalibration_Stat69: 5.06191884812913e-06 - syst_JES_EtaIntercalibration_Stat7: 8.734182961216235e-20 - syst_JES_EtaIntercalibration_Stat70: 2.175464318808957e-06 - syst_JES_EtaIntercalibration_Stat71: 2.1754610682447133e-06 - syst_JES_EtaIntercalibration_Stat72: 2.1754554066397902e-06 - syst_JES_EtaIntercalibration_Stat73: 3.605273083144736e-07 - syst_JES_EtaIntercalibration_Stat74: 1.9813953219711274e-08 - syst_JES_EtaIntercalibration_Stat75: 6.345232720712456e-11 - syst_JES_EtaIntercalibration_Stat76: 6.309854657430917e-11 - syst_JES_EtaIntercalibration_Stat77: 2.1754557684937696e-06 - syst_JES_EtaIntercalibration_Stat78: 1.2825834401002928e-07 - syst_JES_EtaIntercalibration_Stat79: 2.1754558109344956e-06 - syst_JES_EtaIntercalibration_Stat8: 5.3485728937726927e-20 - syst_JES_EtaIntercalibration_Stat80: 1.2418651617498633e-07 - syst_JES_EtaIntercalibration_Stat81: 6.492619212129319e-12 - syst_JES_EtaIntercalibration_Stat82: 3.675461565572411e-07 - syst_JES_EtaIntercalibration_Stat83: 1.087839862273855e-11 - syst_JES_EtaIntercalibration_Stat84: 1.2213280504025116e-10 - syst_JES_EtaIntercalibration_Stat85: 1.6397401257516387e-11 - syst_JES_EtaIntercalibration_Stat86: 7.028426328557643e-15 - syst_JES_EtaIntercalibration_Stat87: 5.3485728937726927e-20 - syst_JES_EtaIntercalibration_Stat88: 2.1441865590475097e-15 - syst_JES_EtaIntercalibration_Stat89: 3.423975900908182e-11 - syst_JES_EtaIntercalibration_Stat9: 1.4590802071167986e-17 - syst_JES_EtaIntercalibration_Stat90: 5.06194498605234e-06 - syst_JES_EtaIntercalibration_Stat91: 2.1754513658590717e-06 - syst_JES_EtaIntercalibration_Stat92: 2.1624351356057945e-06 - syst_JES_EtaIntercalibration_Stat93: 2.1754549967797573e-06 - syst_JES_EtaIntercalibration_Stat94: 4.495029782993657e-12 - syst_JES_EtaIntercalibration_Stat95: 1.9891999401279066e-08 - syst_JES_EtaIntercalibration_Stat96: 1.989602058148061e-08 - syst_JES_EtaIntercalibration_Stat97: 6.262432527979843e-11 - syst_JES_EtaIntercalibration_Stat98: 2.175455731572229e-06 - syst_JES_EtaIntercalibration_Stat99: 1.3662377648125527e-07 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.000551296351792754 - syst_JES_Flavour_Comp: 0.001645702585523885 - syst_JES_Flavour_Response: 0.0006438569153934747 - syst_JES_Gjet_Generator: 0.0026041818292891917 - syst_JES_Gjet_OOC: 0.0020444402656962122 - syst_JES_Gjet_Purity: 0.0005475916270360605 - syst_JES_Gjet_Stat1: 9.372126919755193e-16 - syst_JES_Gjet_Stat10: 5.8811008110727025e-05 - syst_JES_Gjet_Stat11: 7.536013136931225e-05 - syst_JES_Gjet_Stat12: 0.00024288023283091607 - syst_JES_Gjet_Stat13: 0.0005658609988327522 - syst_JES_Gjet_Stat14: 0.0007064041902480477 - syst_JES_Gjet_Stat15: 7.533906207937554e-05 - syst_JES_Gjet_Stat2: 6.308995065788769e-08 - syst_JES_Gjet_Stat3: 9.11099825854445e-16 - syst_JES_Gjet_Stat4: 1.1858930603907757e-12 - syst_JES_Gjet_Stat5: 3.246628243836211e-14 - syst_JES_Gjet_Stat6: 1.2765662174364478e-05 - syst_JES_Gjet_Stat7: 1.9476290714609908e-05 - syst_JES_Gjet_Stat8: 1.0501866873139603e-05 - syst_JES_Gjet_Stat9: 3.125752189473759e-05 - syst_JES_Gjet_Veto: 0.001771527024913817 - syst_JES_Gjet_dPhi: 0.0001899691224909985 - syst_JES_LArESZee: 0.0039399777918155835 - syst_JES_LArEsmear: 0.0002967105786789544 - syst_JES_LAr_JVT: 0.000383060840467934 - syst_JES_MJB_Alpha: 2.2534633345142317e-05 - syst_JES_MJB_Asym: 0.00019181649433768722 - syst_JES_MJB_Beta: 1.4635728475207512e-05 - syst_JES_MJB_Fragmentation: 0.00038013822486037893 + syst_JER_NP7: 8.60569444e-08 + syst_JER_NP8: 4.81905396e-05 + syst_JES_EtaIntercalibration_Modelling: 4.01107180e-03 + syst_JES_EtaIntercalibration_NonClosure: 2.49010376e-04 + syst_JES_EtaIntercalibration_Stat0: 8.73418296e-20 + syst_JES_EtaIntercalibration_Stat1: 8.73418296e-20 + syst_JES_EtaIntercalibration_Stat10: 1.45908021e-17 + syst_JES_EtaIntercalibration_Stat100: 2.17545511e-06 + syst_JES_EtaIntercalibration_Stat101: 1.24706541e-07 + syst_JES_EtaIntercalibration_Stat102: 3.32155392e-07 + syst_JES_EtaIntercalibration_Stat103: 4.08966050e-07 + syst_JES_EtaIntercalibration_Stat104: 1.98903438e-08 + syst_JES_EtaIntercalibration_Stat105: 1.21763257e-10 + syst_JES_EtaIntercalibration_Stat106: 7.81551692e-12 + syst_JES_EtaIntercalibration_Stat107: 7.41666858e-15 + syst_JES_EtaIntercalibration_Stat108: 1.02344622e-13 + syst_JES_EtaIntercalibration_Stat109: 5.05818674e-06 + syst_JES_EtaIntercalibration_Stat11: 2.17545581e-06 + syst_JES_EtaIntercalibration_Stat110: 5.01226059e-06 + syst_JES_EtaIntercalibration_Stat111: 1.22292870e-06 + syst_JES_EtaIntercalibration_Stat112: 1.45672326e-06 + syst_JES_EtaIntercalibration_Stat113: 2.20610996e-07 + syst_JES_EtaIntercalibration_Stat114: 4.56212775e-07 + syst_JES_EtaIntercalibration_Stat115: 7.72748463e-09 + syst_JES_EtaIntercalibration_Stat116: 1.77097287e-07 + syst_JES_EtaIntercalibration_Stat117: 6.60534880e-10 + syst_JES_EtaIntercalibration_Stat118: 2.17053996e-06 + syst_JES_EtaIntercalibration_Stat119: 1.15835073e-06 + syst_JES_EtaIntercalibration_Stat12: 1.20905789e-13 + syst_JES_EtaIntercalibration_Stat120: 4.57437593e-07 + syst_JES_EtaIntercalibration_Stat121: 2.02876186e-06 + syst_JES_EtaIntercalibration_Stat122: 2.17640460e-07 + syst_JES_EtaIntercalibration_Stat123: 3.29210797e-07 + syst_JES_EtaIntercalibration_Stat124: 5.96436577e-09 + syst_JES_EtaIntercalibration_Stat125: 9.72790875e-10 + syst_JES_EtaIntercalibration_Stat126: 2.35157111e-10 + syst_JES_EtaIntercalibration_Stat127: 1.72512260e-11 + syst_JES_EtaIntercalibration_Stat128: 1.02855689e-08 + syst_JES_EtaIntercalibration_Stat129: 1.10064080e-06 + syst_JES_EtaIntercalibration_Stat13: 2.05594431e-07 + syst_JES_EtaIntercalibration_Stat130: 4.39297583e-06 + syst_JES_EtaIntercalibration_Stat131: 5.21827060e-06 + syst_JES_EtaIntercalibration_Stat132: 3.87147956e-07 + syst_JES_EtaIntercalibration_Stat133: 1.93555680e-06 + syst_JES_EtaIntercalibration_Stat134: 1.34001518e-06 + syst_JES_EtaIntercalibration_Stat135: 1.48140564e-07 + syst_JES_EtaIntercalibration_Stat136: 4.07484021e-08 + syst_JES_EtaIntercalibration_Stat137: 1.92702370e-06 + syst_JES_EtaIntercalibration_Stat138: 9.50378766e-06 + syst_JES_EtaIntercalibration_Stat139: 1.13580827e-06 + syst_JES_EtaIntercalibration_Stat14: 2.12349429e-07 + syst_JES_EtaIntercalibration_Stat140: 9.23022463e-07 + syst_JES_EtaIntercalibration_Stat141: 5.35169532e-07 + syst_JES_EtaIntercalibration_Stat142: 1.01732233e-06 + syst_JES_EtaIntercalibration_Stat143: 2.78845407e-07 + syst_JES_EtaIntercalibration_Stat144: 4.20865356e-06 + syst_JES_EtaIntercalibration_Stat145: 4.69502905e-06 + syst_JES_EtaIntercalibration_Stat146: 5.08726844e-06 + syst_JES_EtaIntercalibration_Stat147: 1.41152831e-07 + syst_JES_EtaIntercalibration_Stat148: 4.18144482e-06 + syst_JES_EtaIntercalibration_Stat149: 1.03796371e-06 + syst_JES_EtaIntercalibration_Stat15: 1.46267479e-17 + syst_JES_EtaIntercalibration_Stat150: 3.69424845e-07 + syst_JES_EtaIntercalibration_Stat151: 8.64377574e-07 + syst_JES_EtaIntercalibration_Stat152: 1.49569137e-06 + syst_JES_EtaIntercalibration_Stat153: 8.82133476e-07 + syst_JES_EtaIntercalibration_Stat154: 1.05398285e-07 + syst_JES_EtaIntercalibration_Stat155: 5.68927913e-06 + syst_JES_EtaIntercalibration_Stat156: 1.78173705e-06 + syst_JES_EtaIntercalibration_Stat157: 3.31233688e-06 + syst_JES_EtaIntercalibration_Stat158: 1.66203757e-06 + syst_JES_EtaIntercalibration_Stat159: 3.87283246e-07 + syst_JES_EtaIntercalibration_Stat16: 7.87372833e-19 + syst_JES_EtaIntercalibration_Stat160: 3.45999755e-06 + syst_JES_EtaIntercalibration_Stat161: 3.70131031e-07 + syst_JES_EtaIntercalibration_Stat162: 2.71370962e-06 + syst_JES_EtaIntercalibration_Stat163: 4.85274740e-06 + syst_JES_EtaIntercalibration_Stat164: 7.30095807e-06 + syst_JES_EtaIntercalibration_Stat165: 8.21690786e-06 + syst_JES_EtaIntercalibration_Stat166: 2.93926176e-06 + syst_JES_EtaIntercalibration_Stat167: 3.24332009e-06 + syst_JES_EtaIntercalibration_Stat168: 2.99938844e-06 + syst_JES_EtaIntercalibration_Stat169: 5.54420589e-06 + syst_JES_EtaIntercalibration_Stat17: 6.76712251e-08 + syst_JES_EtaIntercalibration_Stat170: 3.06029803e-06 + syst_JES_EtaIntercalibration_Stat171: 8.04424832e-07 + syst_JES_EtaIntercalibration_Stat172: 1.63989279e-07 + syst_JES_EtaIntercalibration_Stat173: 2.02889715e-06 + syst_JES_EtaIntercalibration_Stat174: 4.30047988e-06 + syst_JES_EtaIntercalibration_Stat175: 1.76622840e-06 + syst_JES_EtaIntercalibration_Stat176: 3.45968419e-06 + syst_JES_EtaIntercalibration_Stat177: 2.89954320e-06 + syst_JES_EtaIntercalibration_Stat178: 3.80752449e-06 + syst_JES_EtaIntercalibration_Stat179: 3.32315769e-06 + syst_JES_EtaIntercalibration_Stat18: 1.11443638e-19 + syst_JES_EtaIntercalibration_Stat180: 1.36695915e-05 + syst_JES_EtaIntercalibration_Stat181: 5.68789186e-06 + syst_JES_EtaIntercalibration_Stat182: 2.75653638e-05 + syst_JES_EtaIntercalibration_Stat183: 6.87304509e-06 + syst_JES_EtaIntercalibration_Stat184: 1.62206558e-07 + syst_JES_EtaIntercalibration_Stat185: 2.03644373e-05 + syst_JES_EtaIntercalibration_Stat186: 1.35200565e-05 + syst_JES_EtaIntercalibration_Stat187: 1.55134687e-05 + syst_JES_EtaIntercalibration_Stat188: 6.95264845e-06 + syst_JES_EtaIntercalibration_Stat189: 6.69650452e-06 + syst_JES_EtaIntercalibration_Stat19: 5.16531308e-19 + syst_JES_EtaIntercalibration_Stat190: 6.72685184e-06 + syst_JES_EtaIntercalibration_Stat191: 4.94676286e-06 + syst_JES_EtaIntercalibration_Stat192: 4.47993647e-06 + syst_JES_EtaIntercalibration_Stat193: 2.08199520e-05 + syst_JES_EtaIntercalibration_Stat194: 4.18376873e-06 + syst_JES_EtaIntercalibration_Stat195: 2.21018116e-06 + syst_JES_EtaIntercalibration_Stat196: 3.05741748e-05 + syst_JES_EtaIntercalibration_Stat197: 3.52385380e-05 + syst_JES_EtaIntercalibration_Stat198: 3.28022755e-05 + syst_JES_EtaIntercalibration_Stat199: 2.47465775e-05 + syst_JES_EtaIntercalibration_Stat2: 1.23176320e-19 + syst_JES_EtaIntercalibration_Stat20: 8.73418296e-20 + syst_JES_EtaIntercalibration_Stat200: 3.30968307e-05 + syst_JES_EtaIntercalibration_Stat201: 1.79669390e-05 + syst_JES_EtaIntercalibration_Stat202: 2.54652102e-05 + syst_JES_EtaIntercalibration_Stat203: 2.51452046e-06 + syst_JES_EtaIntercalibration_Stat204: 2.60655474e-06 + syst_JES_EtaIntercalibration_Stat205: 2.95567264e-06 + syst_JES_EtaIntercalibration_Stat206: 5.53586503e-06 + syst_JES_EtaIntercalibration_Stat207: 1.19722494e-05 + syst_JES_EtaIntercalibration_Stat208: 2.82811988e-05 + syst_JES_EtaIntercalibration_Stat209: 1.04571772e-05 + syst_JES_EtaIntercalibration_Stat21: 8.73418296e-20 + syst_JES_EtaIntercalibration_Stat210: 3.11544644e-05 + syst_JES_EtaIntercalibration_Stat211: 3.80833044e-05 + syst_JES_EtaIntercalibration_Stat212: 8.16589771e-06 + syst_JES_EtaIntercalibration_Stat213: 9.17511248e-06 + syst_JES_EtaIntercalibration_Stat214: 1.07137758e-05 + syst_JES_EtaIntercalibration_Stat215: 1.80738525e-05 + syst_JES_EtaIntercalibration_Stat216: 6.19201599e-06 + syst_JES_EtaIntercalibration_Stat217: 1.58401124e-06 + syst_JES_EtaIntercalibration_Stat218: 9.51028454e-06 + syst_JES_EtaIntercalibration_Stat219: 1.47923462e-06 + syst_JES_EtaIntercalibration_Stat22: 8.73418296e-20 + syst_JES_EtaIntercalibration_Stat220: 1.53147393e-05 + syst_JES_EtaIntercalibration_Stat221: 7.27417506e-06 + syst_JES_EtaIntercalibration_Stat222: 3.78972717e-06 + syst_JES_EtaIntercalibration_Stat223: 1.07707478e-05 + syst_JES_EtaIntercalibration_Stat224: 1.43546965e-05 + syst_JES_EtaIntercalibration_Stat225: 8.55562456e-06 + syst_JES_EtaIntercalibration_Stat226: 9.17369952e-06 + syst_JES_EtaIntercalibration_Stat227: 1.19634128e-05 + syst_JES_EtaIntercalibration_Stat228: 9.49449741e-06 + syst_JES_EtaIntercalibration_Stat229: 1.49534233e-06 + syst_JES_EtaIntercalibration_Stat23: 1.23176320e-19 + syst_JES_EtaIntercalibration_Stat230: 4.90516837e-06 + syst_JES_EtaIntercalibration_Stat231: 9.85771180e-06 + syst_JES_EtaIntercalibration_Stat232: 9.70468174e-06 + syst_JES_EtaIntercalibration_Stat233: 5.89098385e-06 + syst_JES_EtaIntercalibration_Stat234: 4.21995607e-06 + syst_JES_EtaIntercalibration_Stat235: 1.11982333e-05 + syst_JES_EtaIntercalibration_Stat236: 6.01439074e-07 + syst_JES_EtaIntercalibration_Stat237: 1.30683233e-07 + syst_JES_EtaIntercalibration_Stat238: 3.44028207e-06 + syst_JES_EtaIntercalibration_Stat239: 2.95177794e-07 + syst_JES_EtaIntercalibration_Stat24: 1.72874605e-14 + syst_JES_EtaIntercalibration_Stat240: 3.02242775e-07 + syst_JES_EtaIntercalibration_Stat241: 2.66072274e-07 + syst_JES_EtaIntercalibration_Stat242: 8.99162236e-07 + syst_JES_EtaIntercalibration_Stat243: 6.10891382e-07 + syst_JES_EtaIntercalibration_Stat244: 1.19039319e-06 + syst_JES_EtaIntercalibration_Stat245: 2.46789202e-06 + syst_JES_EtaIntercalibration_Stat25: 2.04346630e-16 + syst_JES_EtaIntercalibration_Stat26: 1.32604499e-16 + syst_JES_EtaIntercalibration_Stat27: 2.17545581e-06 + syst_JES_EtaIntercalibration_Stat28: 2.65514683e-16 + syst_JES_EtaIntercalibration_Stat29: 1.76615126e-15 + syst_JES_EtaIntercalibration_Stat3: 1.23176320e-19 + syst_JES_EtaIntercalibration_Stat30: 1.98257467e-15 + syst_JES_EtaIntercalibration_Stat31: 1.20843888e-14 + syst_JES_EtaIntercalibration_Stat32: 1.31128935e-17 + syst_JES_EtaIntercalibration_Stat33: 2.17545581e-06 + syst_JES_EtaIntercalibration_Stat34: 2.17545581e-06 + syst_JES_EtaIntercalibration_Stat35: 1.34233938e-07 + syst_JES_EtaIntercalibration_Stat36: 1.23401630e-12 + syst_JES_EtaIntercalibration_Stat37: 2.49495483e-15 + syst_JES_EtaIntercalibration_Stat38: 6.75759623e-08 + syst_JES_EtaIntercalibration_Stat39: 1.10351327e-14 + syst_JES_EtaIntercalibration_Stat4: 1.52381533e-18 + syst_JES_EtaIntercalibration_Stat40: 7.37919776e-14 + syst_JES_EtaIntercalibration_Stat41: 7.52787099e-15 + syst_JES_EtaIntercalibration_Stat42: 1.52036720e-18 + syst_JES_EtaIntercalibration_Stat43: 8.73418296e-20 + syst_JES_EtaIntercalibration_Stat44: 8.73418296e-20 + syst_JES_EtaIntercalibration_Stat45: 1.35567716e-15 + syst_JES_EtaIntercalibration_Stat46: 1.86011894e-14 + syst_JES_EtaIntercalibration_Stat47: 1.31085514e-13 + syst_JES_EtaIntercalibration_Stat48: 1.41013576e-13 + syst_JES_EtaIntercalibration_Stat49: 2.17545581e-06 + syst_JES_EtaIntercalibration_Stat5: 4.71282208e-18 + syst_JES_EtaIntercalibration_Stat50: 1.04116988e-12 + syst_JES_EtaIntercalibration_Stat51: 8.38534536e-13 + syst_JES_EtaIntercalibration_Stat52: 2.84725199e-13 + syst_JES_EtaIntercalibration_Stat53: 3.23674269e-13 + syst_JES_EtaIntercalibration_Stat54: 6.37533047e-11 + syst_JES_EtaIntercalibration_Stat55: 2.17545581e-06 + syst_JES_EtaIntercalibration_Stat56: 1.23062210e-07 + syst_JES_EtaIntercalibration_Stat57: 1.22975606e-07 + syst_JES_EtaIntercalibration_Stat58: 1.64371616e-07 + syst_JES_EtaIntercalibration_Stat59: 2.30270797e-14 + syst_JES_EtaIntercalibration_Stat6: 4.72079742e-18 + syst_JES_EtaIntercalibration_Stat60: 9.53378808e-15 + syst_JES_EtaIntercalibration_Stat61: 7.17128524e-14 + syst_JES_EtaIntercalibration_Stat62: 8.13556453e-14 + syst_JES_EtaIntercalibration_Stat63: 1.10469599e-14 + syst_JES_EtaIntercalibration_Stat64: 2.28284296e-19 + syst_JES_EtaIntercalibration_Stat65: 8.73418296e-20 + syst_JES_EtaIntercalibration_Stat66: 8.73418296e-20 + syst_JES_EtaIntercalibration_Stat67: 1.95023722e-14 + syst_JES_EtaIntercalibration_Stat68: 1.18212194e-12 + syst_JES_EtaIntercalibration_Stat69: 5.06191885e-06 + syst_JES_EtaIntercalibration_Stat7: 8.73418296e-20 + syst_JES_EtaIntercalibration_Stat70: 2.17546432e-06 + syst_JES_EtaIntercalibration_Stat71: 2.17546107e-06 + syst_JES_EtaIntercalibration_Stat72: 2.17545541e-06 + syst_JES_EtaIntercalibration_Stat73: 3.60527308e-07 + syst_JES_EtaIntercalibration_Stat74: 1.98139532e-08 + syst_JES_EtaIntercalibration_Stat75: 6.34523272e-11 + syst_JES_EtaIntercalibration_Stat76: 6.30985466e-11 + syst_JES_EtaIntercalibration_Stat77: 2.17545577e-06 + syst_JES_EtaIntercalibration_Stat78: 1.28258344e-07 + syst_JES_EtaIntercalibration_Stat79: 2.17545581e-06 + syst_JES_EtaIntercalibration_Stat8: 5.34857289e-20 + syst_JES_EtaIntercalibration_Stat80: 1.24186516e-07 + syst_JES_EtaIntercalibration_Stat81: 6.49261921e-12 + syst_JES_EtaIntercalibration_Stat82: 3.67546157e-07 + syst_JES_EtaIntercalibration_Stat83: 1.08783986e-11 + syst_JES_EtaIntercalibration_Stat84: 1.22132805e-10 + syst_JES_EtaIntercalibration_Stat85: 1.63974013e-11 + syst_JES_EtaIntercalibration_Stat86: 7.02842633e-15 + syst_JES_EtaIntercalibration_Stat87: 5.34857289e-20 + syst_JES_EtaIntercalibration_Stat88: 2.14418656e-15 + syst_JES_EtaIntercalibration_Stat89: 3.42397590e-11 + syst_JES_EtaIntercalibration_Stat9: 1.45908021e-17 + syst_JES_EtaIntercalibration_Stat90: 5.06194499e-06 + syst_JES_EtaIntercalibration_Stat91: 2.17545137e-06 + syst_JES_EtaIntercalibration_Stat92: 2.16243514e-06 + syst_JES_EtaIntercalibration_Stat93: 2.17545500e-06 + syst_JES_EtaIntercalibration_Stat94: 4.49502978e-12 + syst_JES_EtaIntercalibration_Stat95: 1.98919994e-08 + syst_JES_EtaIntercalibration_Stat96: 1.98960206e-08 + syst_JES_EtaIntercalibration_Stat97: 6.26243253e-11 + syst_JES_EtaIntercalibration_Stat98: 2.17545573e-06 + syst_JES_EtaIntercalibration_Stat99: 1.36623776e-07 + syst_JES_EtaIntercalibration_TotalStat_MJB: 5.51296352e-04 + syst_JES_Flavour_Comp: 1.64570259e-03 + syst_JES_Flavour_Response: 6.43856915e-04 + syst_JES_Gjet_Generator: 2.60418183e-03 + syst_JES_Gjet_OOC: 2.04444027e-03 + syst_JES_Gjet_Purity: 5.47591627e-04 + syst_JES_Gjet_Stat1: 9.37212692e-16 + syst_JES_Gjet_Stat10: 5.88110081e-05 + syst_JES_Gjet_Stat11: 7.53601314e-05 + syst_JES_Gjet_Stat12: 2.42880233e-04 + syst_JES_Gjet_Stat13: 5.65860999e-04 + syst_JES_Gjet_Stat14: 7.06404190e-04 + syst_JES_Gjet_Stat15: 7.53390621e-05 + syst_JES_Gjet_Stat2: 6.30899507e-08 + syst_JES_Gjet_Stat3: 9.11099826e-16 + syst_JES_Gjet_Stat4: 1.18589306e-12 + syst_JES_Gjet_Stat5: 3.24662824e-14 + syst_JES_Gjet_Stat6: 1.27656622e-05 + syst_JES_Gjet_Stat7: 1.94762907e-05 + syst_JES_Gjet_Stat8: 1.05018669e-05 + syst_JES_Gjet_Stat9: 3.12575219e-05 + syst_JES_Gjet_Veto: 1.77152702e-03 + syst_JES_Gjet_dPhi: 1.89969122e-04 + syst_JES_LArESZee: 3.93997779e-03 + syst_JES_LArEsmear: 2.96710579e-04 + syst_JES_LAr_JVT: 3.83060840e-04 + syst_JES_MJB_Alpha: 2.25346333e-05 + syst_JES_MJB_Asym: 1.91816494e-04 + syst_JES_MJB_Beta: 1.46357285e-05 + syst_JES_MJB_Fragmentation: 3.80138225e-04 syst_JES_MJB_Stat1: 0.0 - syst_JES_MJB_Stat10: 1.2313342397578326e-11 - syst_JES_MJB_Stat11: 4.5801810740807167e-11 - syst_JES_MJB_Stat12: 3.5495747922451483e-07 - syst_JES_MJB_Stat13: 3.01052851962907e-14 - syst_JES_MJB_Stat14: 3.352172988690713e-14 - syst_JES_MJB_Stat15: 7.650416139393851e-14 - syst_JES_MJB_Stat16: 1.3234851075852724e-06 - syst_JES_MJB_Stat2: 1.4930277961243724e-05 - syst_JES_MJB_Stat3: 1.0302238203419682e-05 - syst_JES_MJB_Stat4: 1.4964918977395101e-07 - syst_JES_MJB_Stat5: 1.2947295740810126e-06 + syst_JES_MJB_Stat10: 1.23133424e-11 + syst_JES_MJB_Stat11: 4.58018107e-11 + syst_JES_MJB_Stat12: 3.54957479e-07 + syst_JES_MJB_Stat13: 3.01052852e-14 + syst_JES_MJB_Stat14: 3.35217299e-14 + syst_JES_MJB_Stat15: 7.65041614e-14 + syst_JES_MJB_Stat16: 1.32348511e-06 + syst_JES_MJB_Stat2: 1.49302780e-05 + syst_JES_MJB_Stat3: 1.03022382e-05 + syst_JES_MJB_Stat4: 1.49649190e-07 + syst_JES_MJB_Stat5: 1.29472957e-06 syst_JES_MJB_Stat6: 0.0 syst_JES_MJB_Stat7: 0.0 syst_JES_MJB_Stat8: 0.0 - syst_JES_MJB_Stat9: 5.936604142942327e-06 - syst_JES_MJB_Threshold: 0.0002033771557968102 - syst_JES_Pileup_MuOffset: 0.00043677463190414345 - syst_JES_Pileup_NPVOffset: 0.00042975569999128573 - syst_JES_Pileup_Pt_term: 0.00045417933407410776 - syst_JES_Pileup_Rho_topology: 0.0007870837741308101 - syst_JES_PunchThrough_MC15: 0.00017798991544466783 - syst_JES_SingleParticle_HighPt: 2.1326340520586274e-07 - syst_JES_Zjet_MC: 0.0014477604040379058 - syst_JES_Zjet_MuScale: 0.00010269525439376447 - syst_JES_Zjet_MuSmearID: 1.6006577733856793e-05 - syst_JES_Zjet_MuSmearMS: 0.0003991849540000224 - syst_JES_Zjet_OOC: 0.0006956703583594748 - syst_JES_Zjet_Stat1: 1.9772981565762914e-05 - syst_JES_Zjet_Stat10: 5.7421419348532303e-05 - syst_JES_Zjet_Stat11: 7.514757930233016e-05 - syst_JES_Zjet_Stat12: 0.0002884718530463588 - syst_JES_Zjet_Stat13: 0.00043819609659945626 + syst_JES_MJB_Stat9: 5.93660414e-06 + syst_JES_MJB_Threshold: 2.03377156e-04 + syst_JES_Pileup_MuOffset: 4.36774632e-04 + syst_JES_Pileup_NPVOffset: 4.29755700e-04 + syst_JES_Pileup_Pt_term: 4.54179334e-04 + syst_JES_Pileup_Rho_topology: 7.87083774e-04 + syst_JES_PunchThrough_MC15: 1.77989915e-04 + syst_JES_SingleParticle_HighPt: 2.13263405e-07 + syst_JES_Zjet_MC: 1.44776040e-03 + syst_JES_Zjet_MuScale: 1.02695254e-04 + syst_JES_Zjet_MuSmearID: 1.60065777e-05 + syst_JES_Zjet_MuSmearMS: 3.99184954e-04 + syst_JES_Zjet_OOC: 6.95670358e-04 + syst_JES_Zjet_Stat1: 1.97729816e-05 + syst_JES_Zjet_Stat10: 5.74214193e-05 + syst_JES_Zjet_Stat11: 7.51475793e-05 + syst_JES_Zjet_Stat12: 2.88471853e-04 + syst_JES_Zjet_Stat13: 4.38196097e-04 syst_JES_Zjet_Stat2: 0.0 - syst_JES_Zjet_Stat3: 1.1334540484721908e-05 - syst_JES_Zjet_Stat4: 2.6405064534365842e-11 - syst_JES_Zjet_Stat5: 9.13396951022813e-06 - syst_JES_Zjet_Stat6: 1.0064401261376653e-05 - syst_JES_Zjet_Stat7: 1.095146629451965e-05 - syst_JES_Zjet_Stat8: 1.3448928879282543e-05 - syst_JES_Zjet_Stat9: 2.5816384332435094e-05 - syst_JES_Zjet_Veto: 0.00013412065342444468 - syst_JES_Zjet_dPhi: 0.00014466882006845846 + syst_JES_Zjet_Stat3: 1.13345405e-05 + syst_JES_Zjet_Stat4: 2.64050645e-11 + syst_JES_Zjet_Stat5: 9.13396951e-06 + syst_JES_Zjet_Stat6: 1.00644013e-05 + syst_JES_Zjet_Stat7: 1.09514663e-05 + syst_JES_Zjet_Stat8: 1.34489289e-05 + syst_JES_Zjet_Stat9: 2.58163843e-05 + syst_JES_Zjet_Veto: 1.34120653e-04 + syst_JES_Zjet_dPhi: 1.44668820e-04 syst_PRW: 0.0 - syst_Unfolding_bias: 2.683e-15 - syst_cleaning: 0.0010897197655819592 + syst_Unfolding_bias: 2.68300000e-15 + syst_cleaning: 1.08971977e-03 syst_lumi: 0.002359 -- stat: 0.0005445 - syst_JER_CROSS_CALIB_FORWARD: 3.262e-12 +- stat: 5.44500000e-04 + syst_JER_CROSS_CALIB_FORWARD: 3.26200000e-12 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.0001269595631490594 - syst_JER_NP1: 6.023979664640312e-05 - syst_JER_NP2: 6.830342359647461e-05 - syst_JER_NP3: 1.73057273756407e-05 - syst_JER_NP4: 5.4213190276905864e-14 + syst_JER_NP0: 1.26959563e-04 + syst_JER_NP1: 6.02397966e-05 + syst_JER_NP2: 6.83034236e-05 + syst_JER_NP3: 1.73057274e-05 + syst_JER_NP4: 5.42131903e-14 syst_JER_NP5: 0.0 syst_JER_NP6: 0.0 - syst_JER_NP7: 6.366152743219408e-09 - syst_JER_NP8: 2.502429419584097e-05 - syst_JES_EtaIntercalibration_Modelling: 0.002366336989948811 - syst_JES_EtaIntercalibration_NonClosure: 0.00015580971567909368 - syst_JES_EtaIntercalibration_Stat0: 5.614852106689899e-21 - syst_JES_EtaIntercalibration_Stat1: 5.614852106689899e-21 - syst_JES_EtaIntercalibration_Stat10: 1.4850158406141667e-18 - syst_JES_EtaIntercalibration_Stat100: 1.1349262410258971e-06 - syst_JES_EtaIntercalibration_Stat101: 6.502977346760423e-08 - syst_JES_EtaIntercalibration_Stat102: 1.843768091634348e-07 - syst_JES_EtaIntercalibration_Stat103: 1.991046224350404e-07 - syst_JES_EtaIntercalibration_Stat104: 2.5884752212596124e-09 - syst_JES_EtaIntercalibration_Stat105: 8.933297587829649e-12 - syst_JES_EtaIntercalibration_Stat106: 5.250519402878156e-13 - syst_JES_EtaIntercalibration_Stat107: 5.247295265960551e-16 - syst_JES_EtaIntercalibration_Stat108: 7.045530977151402e-15 - syst_JES_EtaIntercalibration_Stat109: 2.424145318262814e-06 - syst_JES_EtaIntercalibration_Stat11: 1.1349262916594995e-06 - syst_JES_EtaIntercalibration_Stat110: 2.4229710067821176e-06 - syst_JES_EtaIntercalibration_Stat111: 9.8133130168919e-07 - syst_JES_EtaIntercalibration_Stat112: 9.802249843785864e-07 - syst_JES_EtaIntercalibration_Stat113: 1.7791675166124044e-07 - syst_JES_EtaIntercalibration_Stat114: 3.771888442005479e-07 - syst_JES_EtaIntercalibration_Stat115: 7.194301061777995e-10 - syst_JES_EtaIntercalibration_Stat116: 3.2245057315501856e-08 - syst_JES_EtaIntercalibration_Stat117: 5.768251121440536e-11 - syst_JES_EtaIntercalibration_Stat118: 1.1346397506711104e-06 - syst_JES_EtaIntercalibration_Stat119: 9.816146253072983e-07 - syst_JES_EtaIntercalibration_Stat12: 1.926040497901979e-11 - syst_JES_EtaIntercalibration_Stat120: 2.9603241497638394e-07 - syst_JES_EtaIntercalibration_Stat121: 1.0813578177458192e-06 - syst_JES_EtaIntercalibration_Stat122: 1.4824252310899191e-07 - syst_JES_EtaIntercalibration_Stat123: 3.1445007987072845e-08 - syst_JES_EtaIntercalibration_Stat124: 5.919441356031833e-10 - syst_JES_EtaIntercalibration_Stat125: 8.979836996293418e-11 - syst_JES_EtaIntercalibration_Stat126: 1.743977442514667e-11 - syst_JES_EtaIntercalibration_Stat127: 1.1745036516687767e-12 - syst_JES_EtaIntercalibration_Stat128: 1.143415964000853e-09 - syst_JES_EtaIntercalibration_Stat129: 2.9356367282073577e-07 - syst_JES_EtaIntercalibration_Stat13: 1.0725724625870157e-07 - syst_JES_EtaIntercalibration_Stat130: 2.7259744435109806e-06 - syst_JES_EtaIntercalibration_Stat131: 1.3103175264034285e-06 - syst_JES_EtaIntercalibration_Stat132: 6.377142103442575e-07 - syst_JES_EtaIntercalibration_Stat133: 3.9979568531938916e-07 - syst_JES_EtaIntercalibration_Stat134: 5.541753761220359e-07 - syst_JES_EtaIntercalibration_Stat135: 2.355117619143468e-08 - syst_JES_EtaIntercalibration_Stat136: 5.279595699483058e-09 - syst_JES_EtaIntercalibration_Stat137: 1.102544961186525e-06 - syst_JES_EtaIntercalibration_Stat138: 3.4842073876277804e-06 - syst_JES_EtaIntercalibration_Stat139: 4.834494880543365e-07 - syst_JES_EtaIntercalibration_Stat14: 1.1075598888999071e-07 - syst_JES_EtaIntercalibration_Stat140: 2.5688273526066325e-07 - syst_JES_EtaIntercalibration_Stat141: 1.607091368746656e-07 - syst_JES_EtaIntercalibration_Stat142: 4.924431992544927e-07 - syst_JES_EtaIntercalibration_Stat143: 9.543506326293285e-08 - syst_JES_EtaIntercalibration_Stat144: 1.0240079116271513e-06 - syst_JES_EtaIntercalibration_Stat145: 9.108503760223191e-07 - syst_JES_EtaIntercalibration_Stat146: 2.4144732379289276e-06 - syst_JES_EtaIntercalibration_Stat147: 8.256396182427295e-08 - syst_JES_EtaIntercalibration_Stat148: 2.6024405252570133e-06 - syst_JES_EtaIntercalibration_Stat149: 6.847154938366738e-07 - syst_JES_EtaIntercalibration_Stat15: 1.4910191678887187e-18 - syst_JES_EtaIntercalibration_Stat150: 4.970422183275782e-07 - syst_JES_EtaIntercalibration_Stat151: 2.0790918281788325e-07 - syst_JES_EtaIntercalibration_Stat152: 4.772502173912549e-07 - syst_JES_EtaIntercalibration_Stat153: 5.675928511187088e-07 - syst_JES_EtaIntercalibration_Stat154: 2.1647598498447815e-08 - syst_JES_EtaIntercalibration_Stat155: 2.9109410368470195e-06 - syst_JES_EtaIntercalibration_Stat156: 9.117696680083188e-07 - syst_JES_EtaIntercalibration_Stat157: 7.822192084064416e-07 - syst_JES_EtaIntercalibration_Stat158: 2.3455940889250207e-07 - syst_JES_EtaIntercalibration_Stat159: 2.426732179289672e-07 - syst_JES_EtaIntercalibration_Stat16: 1.3165548399731588e-19 - syst_JES_EtaIntercalibration_Stat160: 1.160435810837894e-06 - syst_JES_EtaIntercalibration_Stat161: 8.907380561506285e-08 - syst_JES_EtaIntercalibration_Stat162: 9.101573912653789e-07 - syst_JES_EtaIntercalibration_Stat163: 9.684437660881501e-07 - syst_JES_EtaIntercalibration_Stat164: 3.0447712529351036e-06 - syst_JES_EtaIntercalibration_Stat165: 2.651474625090725e-06 - syst_JES_EtaIntercalibration_Stat166: 1.5535540035914426e-06 - syst_JES_EtaIntercalibration_Stat167: 3.724328664336701e-07 - syst_JES_EtaIntercalibration_Stat168: 4.5507321028928966e-07 - syst_JES_EtaIntercalibration_Stat169: 2.0053386821183098e-06 - syst_JES_EtaIntercalibration_Stat17: 1.2358182512384413e-08 - syst_JES_EtaIntercalibration_Stat170: 7.754491859561141e-07 - syst_JES_EtaIntercalibration_Stat171: 4.049907776727762e-07 - syst_JES_EtaIntercalibration_Stat172: 7.703798030716731e-08 - syst_JES_EtaIntercalibration_Stat173: 8.804522289709987e-07 - syst_JES_EtaIntercalibration_Stat174: 3.1707329546967527e-06 - syst_JES_EtaIntercalibration_Stat175: 4.2325459040629434e-07 - syst_JES_EtaIntercalibration_Stat176: 1.0042431677636646e-06 - syst_JES_EtaIntercalibration_Stat177: 6.918737118867865e-07 - syst_JES_EtaIntercalibration_Stat178: 1.1211313248232786e-06 - syst_JES_EtaIntercalibration_Stat179: 1.1507934697416387e-06 - syst_JES_EtaIntercalibration_Stat18: 7.164408326407701e-21 - syst_JES_EtaIntercalibration_Stat180: 3.2207893609331233e-06 - syst_JES_EtaIntercalibration_Stat181: 1.2947600578871746e-06 - syst_JES_EtaIntercalibration_Stat182: 1.0479784885592833e-05 - syst_JES_EtaIntercalibration_Stat183: 3.5799544253384013e-06 - syst_JES_EtaIntercalibration_Stat184: 8.461068195972204e-08 - syst_JES_EtaIntercalibration_Stat185: 1.0217138836288758e-05 - syst_JES_EtaIntercalibration_Stat186: 4.960890847418435e-06 - syst_JES_EtaIntercalibration_Stat187: 4.652295992303155e-06 - syst_JES_EtaIntercalibration_Stat188: 1.1440022672617394e-06 - syst_JES_EtaIntercalibration_Stat189: 2.9175461894372814e-06 - syst_JES_EtaIntercalibration_Stat19: 8.071306701519897e-20 - syst_JES_EtaIntercalibration_Stat190: 2.861611533297278e-06 - syst_JES_EtaIntercalibration_Stat191: 1.671987639756945e-06 - syst_JES_EtaIntercalibration_Stat192: 2.335815275230471e-06 - syst_JES_EtaIntercalibration_Stat193: 6.3362982884330815e-06 - syst_JES_EtaIntercalibration_Stat194: 2.0879872485244558e-06 - syst_JES_EtaIntercalibration_Stat195: 1.1713188856477129e-06 - syst_JES_EtaIntercalibration_Stat196: 1.254223152074622e-05 - syst_JES_EtaIntercalibration_Stat197: 9.571330135749157e-06 - syst_JES_EtaIntercalibration_Stat198: 1.2201051870638041e-05 - syst_JES_EtaIntercalibration_Stat199: 1.3860520480847752e-05 - syst_JES_EtaIntercalibration_Stat2: 7.920292322098975e-21 - syst_JES_EtaIntercalibration_Stat20: 5.614852106689899e-21 - syst_JES_EtaIntercalibration_Stat200: 1.2318977666592304e-05 - syst_JES_EtaIntercalibration_Stat201: 9.0363334793488e-06 - syst_JES_EtaIntercalibration_Stat202: 9.631979170970003e-06 - syst_JES_EtaIntercalibration_Stat203: 1.311616286990978e-06 - syst_JES_EtaIntercalibration_Stat204: 1.0000271196322626e-06 - syst_JES_EtaIntercalibration_Stat205: 1.0383860975090142e-06 - syst_JES_EtaIntercalibration_Stat206: 2.0915494616910213e-06 - syst_JES_EtaIntercalibration_Stat207: 5.9254463755906185e-06 - syst_JES_EtaIntercalibration_Stat208: 9.420185613882564e-06 - syst_JES_EtaIntercalibration_Stat209: 6.772034701624025e-06 - syst_JES_EtaIntercalibration_Stat21: 5.614852106689899e-21 - syst_JES_EtaIntercalibration_Stat210: 1.2074691745547792e-05 - syst_JES_EtaIntercalibration_Stat211: 1.3796719428907728e-05 - syst_JES_EtaIntercalibration_Stat212: 4.199606410129407e-06 - syst_JES_EtaIntercalibration_Stat213: 6.649142106317175e-06 - syst_JES_EtaIntercalibration_Stat214: 5.965325808369565e-06 - syst_JES_EtaIntercalibration_Stat215: 7.742854254084859e-06 - syst_JES_EtaIntercalibration_Stat216: 3.565018960328262e-06 - syst_JES_EtaIntercalibration_Stat217: 2.766443700854944e-07 - syst_JES_EtaIntercalibration_Stat218: 5.316821867196605e-06 - syst_JES_EtaIntercalibration_Stat219: 7.717184978993312e-07 - syst_JES_EtaIntercalibration_Stat22: 5.614852106689899e-21 - syst_JES_EtaIntercalibration_Stat220: 9.858916500686066e-06 - syst_JES_EtaIntercalibration_Stat221: 4.720754282950977e-06 - syst_JES_EtaIntercalibration_Stat222: 2.341732691833121e-06 - syst_JES_EtaIntercalibration_Stat223: 6.90901242942868e-06 - syst_JES_EtaIntercalibration_Stat224: 8.90162539933017e-06 - syst_JES_EtaIntercalibration_Stat225: 8.079421065274419e-06 - syst_JES_EtaIntercalibration_Stat226: 5.995668686643717e-06 - syst_JES_EtaIntercalibration_Stat227: 9.966468231023465e-06 - syst_JES_EtaIntercalibration_Stat228: 5.7102207269071486e-06 - syst_JES_EtaIntercalibration_Stat229: 7.803205671389162e-07 - syst_JES_EtaIntercalibration_Stat23: 7.920292322098975e-21 - syst_JES_EtaIntercalibration_Stat230: 2.7660851735490916e-06 - syst_JES_EtaIntercalibration_Stat231: 4.567418095497171e-06 - syst_JES_EtaIntercalibration_Stat232: 6.304665012239115e-06 - syst_JES_EtaIntercalibration_Stat233: 4.671870897188834e-06 - syst_JES_EtaIntercalibration_Stat234: 1.7186140098055758e-06 - syst_JES_EtaIntercalibration_Stat235: 7.440621546618266e-06 - syst_JES_EtaIntercalibration_Stat236: 1.6685654766894826e-06 - syst_JES_EtaIntercalibration_Stat237: 7.441756294719692e-07 - syst_JES_EtaIntercalibration_Stat238: 2.5773212353139065e-06 - syst_JES_EtaIntercalibration_Stat239: 3.771460800538699e-07 - syst_JES_EtaIntercalibration_Stat24: 1.2676347986308991e-15 - syst_JES_EtaIntercalibration_Stat240: 1.5714134624598327e-07 - syst_JES_EtaIntercalibration_Stat241: 1.3881156760155113e-07 - syst_JES_EtaIntercalibration_Stat242: 1.909435772027957e-06 - syst_JES_EtaIntercalibration_Stat243: 3.035657985923316e-07 - syst_JES_EtaIntercalibration_Stat244: 6.350749618797827e-07 - syst_JES_EtaIntercalibration_Stat245: 3.3251446209150063e-06 - syst_JES_EtaIntercalibration_Stat25: 1.875783568452128e-17 - syst_JES_EtaIntercalibration_Stat26: 1.2148418333264624e-17 - syst_JES_EtaIntercalibration_Stat27: 1.1349262916528211e-06 - syst_JES_EtaIntercalibration_Stat28: 2.377705273472724e-17 - syst_JES_EtaIntercalibration_Stat29: 1.4421687418606742e-16 - syst_JES_EtaIntercalibration_Stat3: 7.920292322098975e-21 - syst_JES_EtaIntercalibration_Stat30: 1.6175185098399956e-16 - syst_JES_EtaIntercalibration_Stat31: 8.414822517439094e-16 - syst_JES_EtaIntercalibration_Stat32: 1.440701537446254e-18 - syst_JES_EtaIntercalibration_Stat33: 1.1349262916588984e-06 - syst_JES_EtaIntercalibration_Stat34: 1.1349262916564428e-06 - syst_JES_EtaIntercalibration_Stat35: 7.001815389185246e-08 - syst_JES_EtaIntercalibration_Stat36: 1.9407628665167432e-10 - syst_JES_EtaIntercalibration_Stat37: 2.231909272349573e-16 - syst_JES_EtaIntercalibration_Stat38: 1.2340862005215165e-08 - syst_JES_EtaIntercalibration_Stat39: 8.301990140333194e-16 - syst_JES_EtaIntercalibration_Stat4: 1.9386388481758924e-19 - syst_JES_EtaIntercalibration_Stat40: 5.548414494095064e-15 - syst_JES_EtaIntercalibration_Stat41: 5.332700923145489e-16 - syst_JES_EtaIntercalibration_Stat42: 1.9414760985394595e-19 - syst_JES_EtaIntercalibration_Stat43: 5.614852106689899e-21 - syst_JES_EtaIntercalibration_Stat44: 5.614852106689899e-21 - syst_JES_EtaIntercalibration_Stat45: 1.0865926288949094e-16 - syst_JES_EtaIntercalibration_Stat46: 1.3535757862325255e-15 - syst_JES_EtaIntercalibration_Stat47: 8.727707717379176e-15 - syst_JES_EtaIntercalibration_Stat48: 9.970413039964794e-15 - syst_JES_EtaIntercalibration_Stat49: 1.1349262915944972e-06 - syst_JES_EtaIntercalibration_Stat5: 5.376586374146402e-19 - syst_JES_EtaIntercalibration_Stat50: 7.15081579560682e-14 - syst_JES_EtaIntercalibration_Stat51: 5.560309051662506e-14 - syst_JES_EtaIntercalibration_Stat52: 2.017972480901313e-14 - syst_JES_EtaIntercalibration_Stat53: 2.2951506042251342e-14 - syst_JES_EtaIntercalibration_Stat54: 4.4093010300983895e-12 - syst_JES_EtaIntercalibration_Stat55: 1.1349262916597056e-06 - syst_JES_EtaIntercalibration_Stat56: 6.419846317691128e-08 - syst_JES_EtaIntercalibration_Stat57: 6.415516183241707e-08 - syst_JES_EtaIntercalibration_Stat58: 8.592704012326243e-08 - syst_JES_EtaIntercalibration_Stat59: 1.7799894606429556e-15 - syst_JES_EtaIntercalibration_Stat6: 5.381635786561554e-19 - syst_JES_EtaIntercalibration_Stat60: 6.918519376304442e-16 - syst_JES_EtaIntercalibration_Stat61: 5.373251599357693e-15 - syst_JES_EtaIntercalibration_Stat62: 6.045045615793452e-15 - syst_JES_EtaIntercalibration_Stat63: 8.039837055562755e-16 - syst_JES_EtaIntercalibration_Stat64: 3.112495301201273e-20 - syst_JES_EtaIntercalibration_Stat65: 5.614852106689899e-21 - syst_JES_EtaIntercalibration_Stat66: 5.614852106689899e-21 - syst_JES_EtaIntercalibration_Stat67: 1.4774716544404497e-15 - syst_JES_EtaIntercalibration_Stat68: 8.106317952683573e-14 - syst_JES_EtaIntercalibration_Stat69: 2.4248711554715656e-06 - syst_JES_EtaIntercalibration_Stat7: 5.614852106689899e-21 - syst_JES_EtaIntercalibration_Stat70: 1.1349267428594597e-06 - syst_JES_EtaIntercalibration_Stat71: 1.1349265413925855e-06 - syst_JES_EtaIntercalibration_Stat72: 1.134926264451878e-06 - syst_JES_EtaIntercalibration_Stat73: 1.8801417719796993e-07 - syst_JES_EtaIntercalibration_Stat74: 2.5737794969541907e-09 - syst_JES_EtaIntercalibration_Stat75: 4.387258369414776e-12 - syst_JES_EtaIntercalibration_Stat76: 4.364760466064045e-12 - syst_JES_EtaIntercalibration_Stat77: 1.1349262884254793e-06 - syst_JES_EtaIntercalibration_Stat78: 6.690912132027148e-08 - syst_JES_EtaIntercalibration_Stat79: 1.1349262913979961e-06 - syst_JES_EtaIntercalibration_Stat8: 3.438380660645356e-21 - syst_JES_EtaIntercalibration_Stat80: 6.479591609595856e-08 - syst_JES_EtaIntercalibration_Stat81: 4.311980216347096e-13 - syst_JES_EtaIntercalibration_Stat82: 1.8889063725605883e-07 - syst_JES_EtaIntercalibration_Stat83: 7.504631658562597e-13 - syst_JES_EtaIntercalibration_Stat84: 8.95115238768171e-12 - syst_JES_EtaIntercalibration_Stat85: 1.1169534910639745e-12 - syst_JES_EtaIntercalibration_Stat86: 4.958492901247389e-16 - syst_JES_EtaIntercalibration_Stat87: 3.438380660645356e-21 - syst_JES_EtaIntercalibration_Stat88: 1.6682052751385244e-16 - syst_JES_EtaIntercalibration_Stat89: 2.3626690357094027e-12 - syst_JES_EtaIntercalibration_Stat9: 1.4850158406141667e-18 - syst_JES_EtaIntercalibration_Stat90: 2.4248730632826156e-06 - syst_JES_EtaIntercalibration_Stat91: 1.134925774931957e-06 - syst_JES_EtaIntercalibration_Stat92: 1.133798192841568e-06 - syst_JES_EtaIntercalibration_Stat93: 1.1349262370421817e-06 - syst_JES_EtaIntercalibration_Stat94: 3.081872279962296e-13 - syst_JES_EtaIntercalibration_Stat95: 2.584178382667146e-09 - syst_JES_EtaIntercalibration_Stat96: 2.583052962698742e-09 - syst_JES_EtaIntercalibration_Stat97: 4.319214172450817e-12 - syst_JES_EtaIntercalibration_Stat98: 1.1349262858946645e-06 - syst_JES_EtaIntercalibration_Stat99: 6.779384854099965e-08 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0003240871294883523 - syst_JES_Flavour_Comp: 0.0009664971430376812 - syst_JES_Flavour_Response: 0.00025227510776927635 - syst_JES_Gjet_Generator: 0.0014298636018865573 - syst_JES_Gjet_OOC: 0.00113930071096265 - syst_JES_Gjet_Purity: 0.00027291996537446645 - syst_JES_Gjet_Stat1: 9.565250584799125e-17 - syst_JES_Gjet_Stat10: 2.642839949751025e-05 - syst_JES_Gjet_Stat11: 3.348001194742917e-05 - syst_JES_Gjet_Stat12: 0.0001094959756109785 - syst_JES_Gjet_Stat13: 0.0003007173215829111 - syst_JES_Gjet_Stat14: 0.0004786508826900876 - syst_JES_Gjet_Stat15: 0.00012142937731455268 - syst_JES_Gjet_Stat2: 4.181170649460822e-07 - syst_JES_Gjet_Stat3: 8.89841786953164e-17 - syst_JES_Gjet_Stat4: 8.910746998993687e-14 - syst_JES_Gjet_Stat5: 2.940873448803093e-15 - syst_JES_Gjet_Stat6: 6.6611014854902185e-06 - syst_JES_Gjet_Stat7: 1.0260592965321254e-05 - syst_JES_Gjet_Stat8: 5.443550796628502e-06 - syst_JES_Gjet_Stat9: 1.4599509169831703e-05 - syst_JES_Gjet_Veto: 0.0010438124160978353 - syst_JES_Gjet_dPhi: 0.00010688187159195893 - syst_JES_LArESZee: 0.0021892493576566377 - syst_JES_LArEsmear: 0.0001660604332765635 - syst_JES_LAr_JVT: 0.0002087341071794449 - syst_JES_MJB_Alpha: 1.2796845734398769e-05 - syst_JES_MJB_Asym: 0.00013187149910045005 - syst_JES_MJB_Beta: 1.0911940661495551e-05 - syst_JES_MJB_Fragmentation: 0.00018694001711779104 + syst_JER_NP7: 6.36615274e-09 + syst_JER_NP8: 2.50242942e-05 + syst_JES_EtaIntercalibration_Modelling: 2.36633699e-03 + syst_JES_EtaIntercalibration_NonClosure: 1.55809716e-04 + syst_JES_EtaIntercalibration_Stat0: 5.61485211e-21 + syst_JES_EtaIntercalibration_Stat1: 5.61485211e-21 + syst_JES_EtaIntercalibration_Stat10: 1.48501584e-18 + syst_JES_EtaIntercalibration_Stat100: 1.13492624e-06 + syst_JES_EtaIntercalibration_Stat101: 6.50297735e-08 + syst_JES_EtaIntercalibration_Stat102: 1.84376809e-07 + syst_JES_EtaIntercalibration_Stat103: 1.99104622e-07 + syst_JES_EtaIntercalibration_Stat104: 2.58847522e-09 + syst_JES_EtaIntercalibration_Stat105: 8.93329759e-12 + syst_JES_EtaIntercalibration_Stat106: 5.25051940e-13 + syst_JES_EtaIntercalibration_Stat107: 5.24729527e-16 + syst_JES_EtaIntercalibration_Stat108: 7.04553098e-15 + syst_JES_EtaIntercalibration_Stat109: 2.42414532e-06 + syst_JES_EtaIntercalibration_Stat11: 1.13492629e-06 + syst_JES_EtaIntercalibration_Stat110: 2.42297101e-06 + syst_JES_EtaIntercalibration_Stat111: 9.81331302e-07 + syst_JES_EtaIntercalibration_Stat112: 9.80224984e-07 + syst_JES_EtaIntercalibration_Stat113: 1.77916752e-07 + syst_JES_EtaIntercalibration_Stat114: 3.77188844e-07 + syst_JES_EtaIntercalibration_Stat115: 7.19430106e-10 + syst_JES_EtaIntercalibration_Stat116: 3.22450573e-08 + syst_JES_EtaIntercalibration_Stat117: 5.76825112e-11 + syst_JES_EtaIntercalibration_Stat118: 1.13463975e-06 + syst_JES_EtaIntercalibration_Stat119: 9.81614625e-07 + syst_JES_EtaIntercalibration_Stat12: 1.92604050e-11 + syst_JES_EtaIntercalibration_Stat120: 2.96032415e-07 + syst_JES_EtaIntercalibration_Stat121: 1.08135782e-06 + syst_JES_EtaIntercalibration_Stat122: 1.48242523e-07 + syst_JES_EtaIntercalibration_Stat123: 3.14450080e-08 + syst_JES_EtaIntercalibration_Stat124: 5.91944136e-10 + syst_JES_EtaIntercalibration_Stat125: 8.97983700e-11 + syst_JES_EtaIntercalibration_Stat126: 1.74397744e-11 + syst_JES_EtaIntercalibration_Stat127: 1.17450365e-12 + syst_JES_EtaIntercalibration_Stat128: 1.14341596e-09 + syst_JES_EtaIntercalibration_Stat129: 2.93563673e-07 + syst_JES_EtaIntercalibration_Stat13: 1.07257246e-07 + syst_JES_EtaIntercalibration_Stat130: 2.72597444e-06 + syst_JES_EtaIntercalibration_Stat131: 1.31031753e-06 + syst_JES_EtaIntercalibration_Stat132: 6.37714210e-07 + syst_JES_EtaIntercalibration_Stat133: 3.99795685e-07 + syst_JES_EtaIntercalibration_Stat134: 5.54175376e-07 + syst_JES_EtaIntercalibration_Stat135: 2.35511762e-08 + syst_JES_EtaIntercalibration_Stat136: 5.27959570e-09 + syst_JES_EtaIntercalibration_Stat137: 1.10254496e-06 + syst_JES_EtaIntercalibration_Stat138: 3.48420739e-06 + syst_JES_EtaIntercalibration_Stat139: 4.83449488e-07 + syst_JES_EtaIntercalibration_Stat14: 1.10755989e-07 + syst_JES_EtaIntercalibration_Stat140: 2.56882735e-07 + syst_JES_EtaIntercalibration_Stat141: 1.60709137e-07 + syst_JES_EtaIntercalibration_Stat142: 4.92443199e-07 + syst_JES_EtaIntercalibration_Stat143: 9.54350633e-08 + syst_JES_EtaIntercalibration_Stat144: 1.02400791e-06 + syst_JES_EtaIntercalibration_Stat145: 9.10850376e-07 + syst_JES_EtaIntercalibration_Stat146: 2.41447324e-06 + syst_JES_EtaIntercalibration_Stat147: 8.25639618e-08 + syst_JES_EtaIntercalibration_Stat148: 2.60244053e-06 + syst_JES_EtaIntercalibration_Stat149: 6.84715494e-07 + syst_JES_EtaIntercalibration_Stat15: 1.49101917e-18 + syst_JES_EtaIntercalibration_Stat150: 4.97042218e-07 + syst_JES_EtaIntercalibration_Stat151: 2.07909183e-07 + syst_JES_EtaIntercalibration_Stat152: 4.77250217e-07 + syst_JES_EtaIntercalibration_Stat153: 5.67592851e-07 + syst_JES_EtaIntercalibration_Stat154: 2.16475985e-08 + syst_JES_EtaIntercalibration_Stat155: 2.91094104e-06 + syst_JES_EtaIntercalibration_Stat156: 9.11769668e-07 + syst_JES_EtaIntercalibration_Stat157: 7.82219208e-07 + syst_JES_EtaIntercalibration_Stat158: 2.34559409e-07 + syst_JES_EtaIntercalibration_Stat159: 2.42673218e-07 + syst_JES_EtaIntercalibration_Stat16: 1.31655484e-19 + syst_JES_EtaIntercalibration_Stat160: 1.16043581e-06 + syst_JES_EtaIntercalibration_Stat161: 8.90738056e-08 + syst_JES_EtaIntercalibration_Stat162: 9.10157391e-07 + syst_JES_EtaIntercalibration_Stat163: 9.68443766e-07 + syst_JES_EtaIntercalibration_Stat164: 3.04477125e-06 + syst_JES_EtaIntercalibration_Stat165: 2.65147463e-06 + syst_JES_EtaIntercalibration_Stat166: 1.55355400e-06 + syst_JES_EtaIntercalibration_Stat167: 3.72432866e-07 + syst_JES_EtaIntercalibration_Stat168: 4.55073210e-07 + syst_JES_EtaIntercalibration_Stat169: 2.00533868e-06 + syst_JES_EtaIntercalibration_Stat17: 1.23581825e-08 + syst_JES_EtaIntercalibration_Stat170: 7.75449186e-07 + syst_JES_EtaIntercalibration_Stat171: 4.04990778e-07 + syst_JES_EtaIntercalibration_Stat172: 7.70379803e-08 + syst_JES_EtaIntercalibration_Stat173: 8.80452229e-07 + syst_JES_EtaIntercalibration_Stat174: 3.17073295e-06 + syst_JES_EtaIntercalibration_Stat175: 4.23254590e-07 + syst_JES_EtaIntercalibration_Stat176: 1.00424317e-06 + syst_JES_EtaIntercalibration_Stat177: 6.91873712e-07 + syst_JES_EtaIntercalibration_Stat178: 1.12113132e-06 + syst_JES_EtaIntercalibration_Stat179: 1.15079347e-06 + syst_JES_EtaIntercalibration_Stat18: 7.16440833e-21 + syst_JES_EtaIntercalibration_Stat180: 3.22078936e-06 + syst_JES_EtaIntercalibration_Stat181: 1.29476006e-06 + syst_JES_EtaIntercalibration_Stat182: 1.04797849e-05 + syst_JES_EtaIntercalibration_Stat183: 3.57995443e-06 + syst_JES_EtaIntercalibration_Stat184: 8.46106820e-08 + syst_JES_EtaIntercalibration_Stat185: 1.02171388e-05 + syst_JES_EtaIntercalibration_Stat186: 4.96089085e-06 + syst_JES_EtaIntercalibration_Stat187: 4.65229599e-06 + syst_JES_EtaIntercalibration_Stat188: 1.14400227e-06 + syst_JES_EtaIntercalibration_Stat189: 2.91754619e-06 + syst_JES_EtaIntercalibration_Stat19: 8.07130670e-20 + syst_JES_EtaIntercalibration_Stat190: 2.86161153e-06 + syst_JES_EtaIntercalibration_Stat191: 1.67198764e-06 + syst_JES_EtaIntercalibration_Stat192: 2.33581528e-06 + syst_JES_EtaIntercalibration_Stat193: 6.33629829e-06 + syst_JES_EtaIntercalibration_Stat194: 2.08798725e-06 + syst_JES_EtaIntercalibration_Stat195: 1.17131889e-06 + syst_JES_EtaIntercalibration_Stat196: 1.25422315e-05 + syst_JES_EtaIntercalibration_Stat197: 9.57133014e-06 + syst_JES_EtaIntercalibration_Stat198: 1.22010519e-05 + syst_JES_EtaIntercalibration_Stat199: 1.38605205e-05 + syst_JES_EtaIntercalibration_Stat2: 7.92029232e-21 + syst_JES_EtaIntercalibration_Stat20: 5.61485211e-21 + syst_JES_EtaIntercalibration_Stat200: 1.23189777e-05 + syst_JES_EtaIntercalibration_Stat201: 9.03633348e-06 + syst_JES_EtaIntercalibration_Stat202: 9.63197917e-06 + syst_JES_EtaIntercalibration_Stat203: 1.31161629e-06 + syst_JES_EtaIntercalibration_Stat204: 1.00002712e-06 + syst_JES_EtaIntercalibration_Stat205: 1.03838610e-06 + syst_JES_EtaIntercalibration_Stat206: 2.09154946e-06 + syst_JES_EtaIntercalibration_Stat207: 5.92544638e-06 + syst_JES_EtaIntercalibration_Stat208: 9.42018561e-06 + syst_JES_EtaIntercalibration_Stat209: 6.77203470e-06 + syst_JES_EtaIntercalibration_Stat21: 5.61485211e-21 + syst_JES_EtaIntercalibration_Stat210: 1.20746917e-05 + syst_JES_EtaIntercalibration_Stat211: 1.37967194e-05 + syst_JES_EtaIntercalibration_Stat212: 4.19960641e-06 + syst_JES_EtaIntercalibration_Stat213: 6.64914211e-06 + syst_JES_EtaIntercalibration_Stat214: 5.96532581e-06 + syst_JES_EtaIntercalibration_Stat215: 7.74285425e-06 + syst_JES_EtaIntercalibration_Stat216: 3.56501896e-06 + syst_JES_EtaIntercalibration_Stat217: 2.76644370e-07 + syst_JES_EtaIntercalibration_Stat218: 5.31682187e-06 + syst_JES_EtaIntercalibration_Stat219: 7.71718498e-07 + syst_JES_EtaIntercalibration_Stat22: 5.61485211e-21 + syst_JES_EtaIntercalibration_Stat220: 9.85891650e-06 + syst_JES_EtaIntercalibration_Stat221: 4.72075428e-06 + syst_JES_EtaIntercalibration_Stat222: 2.34173269e-06 + syst_JES_EtaIntercalibration_Stat223: 6.90901243e-06 + syst_JES_EtaIntercalibration_Stat224: 8.90162540e-06 + syst_JES_EtaIntercalibration_Stat225: 8.07942107e-06 + syst_JES_EtaIntercalibration_Stat226: 5.99566869e-06 + syst_JES_EtaIntercalibration_Stat227: 9.96646823e-06 + syst_JES_EtaIntercalibration_Stat228: 5.71022073e-06 + syst_JES_EtaIntercalibration_Stat229: 7.80320567e-07 + syst_JES_EtaIntercalibration_Stat23: 7.92029232e-21 + syst_JES_EtaIntercalibration_Stat230: 2.76608517e-06 + syst_JES_EtaIntercalibration_Stat231: 4.56741810e-06 + syst_JES_EtaIntercalibration_Stat232: 6.30466501e-06 + syst_JES_EtaIntercalibration_Stat233: 4.67187090e-06 + syst_JES_EtaIntercalibration_Stat234: 1.71861401e-06 + syst_JES_EtaIntercalibration_Stat235: 7.44062155e-06 + syst_JES_EtaIntercalibration_Stat236: 1.66856548e-06 + syst_JES_EtaIntercalibration_Stat237: 7.44175629e-07 + syst_JES_EtaIntercalibration_Stat238: 2.57732124e-06 + syst_JES_EtaIntercalibration_Stat239: 3.77146080e-07 + syst_JES_EtaIntercalibration_Stat24: 1.26763480e-15 + syst_JES_EtaIntercalibration_Stat240: 1.57141346e-07 + syst_JES_EtaIntercalibration_Stat241: 1.38811568e-07 + syst_JES_EtaIntercalibration_Stat242: 1.90943577e-06 + syst_JES_EtaIntercalibration_Stat243: 3.03565799e-07 + syst_JES_EtaIntercalibration_Stat244: 6.35074962e-07 + syst_JES_EtaIntercalibration_Stat245: 3.32514462e-06 + syst_JES_EtaIntercalibration_Stat25: 1.87578357e-17 + syst_JES_EtaIntercalibration_Stat26: 1.21484183e-17 + syst_JES_EtaIntercalibration_Stat27: 1.13492629e-06 + syst_JES_EtaIntercalibration_Stat28: 2.37770527e-17 + syst_JES_EtaIntercalibration_Stat29: 1.44216874e-16 + syst_JES_EtaIntercalibration_Stat3: 7.92029232e-21 + syst_JES_EtaIntercalibration_Stat30: 1.61751851e-16 + syst_JES_EtaIntercalibration_Stat31: 8.41482252e-16 + syst_JES_EtaIntercalibration_Stat32: 1.44070154e-18 + syst_JES_EtaIntercalibration_Stat33: 1.13492629e-06 + syst_JES_EtaIntercalibration_Stat34: 1.13492629e-06 + syst_JES_EtaIntercalibration_Stat35: 7.00181539e-08 + syst_JES_EtaIntercalibration_Stat36: 1.94076287e-10 + syst_JES_EtaIntercalibration_Stat37: 2.23190927e-16 + syst_JES_EtaIntercalibration_Stat38: 1.23408620e-08 + syst_JES_EtaIntercalibration_Stat39: 8.30199014e-16 + syst_JES_EtaIntercalibration_Stat4: 1.93863885e-19 + syst_JES_EtaIntercalibration_Stat40: 5.54841449e-15 + syst_JES_EtaIntercalibration_Stat41: 5.33270092e-16 + syst_JES_EtaIntercalibration_Stat42: 1.94147610e-19 + syst_JES_EtaIntercalibration_Stat43: 5.61485211e-21 + syst_JES_EtaIntercalibration_Stat44: 5.61485211e-21 + syst_JES_EtaIntercalibration_Stat45: 1.08659263e-16 + syst_JES_EtaIntercalibration_Stat46: 1.35357579e-15 + syst_JES_EtaIntercalibration_Stat47: 8.72770772e-15 + syst_JES_EtaIntercalibration_Stat48: 9.97041304e-15 + syst_JES_EtaIntercalibration_Stat49: 1.13492629e-06 + syst_JES_EtaIntercalibration_Stat5: 5.37658637e-19 + syst_JES_EtaIntercalibration_Stat50: 7.15081580e-14 + syst_JES_EtaIntercalibration_Stat51: 5.56030905e-14 + syst_JES_EtaIntercalibration_Stat52: 2.01797248e-14 + syst_JES_EtaIntercalibration_Stat53: 2.29515060e-14 + syst_JES_EtaIntercalibration_Stat54: 4.40930103e-12 + syst_JES_EtaIntercalibration_Stat55: 1.13492629e-06 + syst_JES_EtaIntercalibration_Stat56: 6.41984632e-08 + syst_JES_EtaIntercalibration_Stat57: 6.41551618e-08 + syst_JES_EtaIntercalibration_Stat58: 8.59270401e-08 + syst_JES_EtaIntercalibration_Stat59: 1.77998946e-15 + syst_JES_EtaIntercalibration_Stat6: 5.38163579e-19 + syst_JES_EtaIntercalibration_Stat60: 6.91851938e-16 + syst_JES_EtaIntercalibration_Stat61: 5.37325160e-15 + syst_JES_EtaIntercalibration_Stat62: 6.04504562e-15 + syst_JES_EtaIntercalibration_Stat63: 8.03983706e-16 + syst_JES_EtaIntercalibration_Stat64: 3.11249530e-20 + syst_JES_EtaIntercalibration_Stat65: 5.61485211e-21 + syst_JES_EtaIntercalibration_Stat66: 5.61485211e-21 + syst_JES_EtaIntercalibration_Stat67: 1.47747165e-15 + syst_JES_EtaIntercalibration_Stat68: 8.10631795e-14 + syst_JES_EtaIntercalibration_Stat69: 2.42487116e-06 + syst_JES_EtaIntercalibration_Stat7: 5.61485211e-21 + syst_JES_EtaIntercalibration_Stat70: 1.13492674e-06 + syst_JES_EtaIntercalibration_Stat71: 1.13492654e-06 + syst_JES_EtaIntercalibration_Stat72: 1.13492626e-06 + syst_JES_EtaIntercalibration_Stat73: 1.88014177e-07 + syst_JES_EtaIntercalibration_Stat74: 2.57377950e-09 + syst_JES_EtaIntercalibration_Stat75: 4.38725837e-12 + syst_JES_EtaIntercalibration_Stat76: 4.36476047e-12 + syst_JES_EtaIntercalibration_Stat77: 1.13492629e-06 + syst_JES_EtaIntercalibration_Stat78: 6.69091213e-08 + syst_JES_EtaIntercalibration_Stat79: 1.13492629e-06 + syst_JES_EtaIntercalibration_Stat8: 3.43838066e-21 + syst_JES_EtaIntercalibration_Stat80: 6.47959161e-08 + syst_JES_EtaIntercalibration_Stat81: 4.31198022e-13 + syst_JES_EtaIntercalibration_Stat82: 1.88890637e-07 + syst_JES_EtaIntercalibration_Stat83: 7.50463166e-13 + syst_JES_EtaIntercalibration_Stat84: 8.95115239e-12 + syst_JES_EtaIntercalibration_Stat85: 1.11695349e-12 + syst_JES_EtaIntercalibration_Stat86: 4.95849290e-16 + syst_JES_EtaIntercalibration_Stat87: 3.43838066e-21 + syst_JES_EtaIntercalibration_Stat88: 1.66820528e-16 + syst_JES_EtaIntercalibration_Stat89: 2.36266904e-12 + syst_JES_EtaIntercalibration_Stat9: 1.48501584e-18 + syst_JES_EtaIntercalibration_Stat90: 2.42487306e-06 + syst_JES_EtaIntercalibration_Stat91: 1.13492577e-06 + syst_JES_EtaIntercalibration_Stat92: 1.13379819e-06 + syst_JES_EtaIntercalibration_Stat93: 1.13492624e-06 + syst_JES_EtaIntercalibration_Stat94: 3.08187228e-13 + syst_JES_EtaIntercalibration_Stat95: 2.58417838e-09 + syst_JES_EtaIntercalibration_Stat96: 2.58305296e-09 + syst_JES_EtaIntercalibration_Stat97: 4.31921417e-12 + syst_JES_EtaIntercalibration_Stat98: 1.13492629e-06 + syst_JES_EtaIntercalibration_Stat99: 6.77938485e-08 + syst_JES_EtaIntercalibration_TotalStat_MJB: 3.24087129e-04 + syst_JES_Flavour_Comp: 9.66497143e-04 + syst_JES_Flavour_Response: 2.52275108e-04 + syst_JES_Gjet_Generator: 1.42986360e-03 + syst_JES_Gjet_OOC: 1.13930071e-03 + syst_JES_Gjet_Purity: 2.72919965e-04 + syst_JES_Gjet_Stat1: 9.56525058e-17 + syst_JES_Gjet_Stat10: 2.64283995e-05 + syst_JES_Gjet_Stat11: 3.34800119e-05 + syst_JES_Gjet_Stat12: 1.09495976e-04 + syst_JES_Gjet_Stat13: 3.00717322e-04 + syst_JES_Gjet_Stat14: 4.78650883e-04 + syst_JES_Gjet_Stat15: 1.21429377e-04 + syst_JES_Gjet_Stat2: 4.18117065e-07 + syst_JES_Gjet_Stat3: 8.89841787e-17 + syst_JES_Gjet_Stat4: 8.91074700e-14 + syst_JES_Gjet_Stat5: 2.94087345e-15 + syst_JES_Gjet_Stat6: 6.66110149e-06 + syst_JES_Gjet_Stat7: 1.02605930e-05 + syst_JES_Gjet_Stat8: 5.44355080e-06 + syst_JES_Gjet_Stat9: 1.45995092e-05 + syst_JES_Gjet_Veto: 1.04381242e-03 + syst_JES_Gjet_dPhi: 1.06881872e-04 + syst_JES_LArESZee: 2.18924936e-03 + syst_JES_LArEsmear: 1.66060433e-04 + syst_JES_LAr_JVT: 2.08734107e-04 + syst_JES_MJB_Alpha: 1.27968457e-05 + syst_JES_MJB_Asym: 1.31871499e-04 + syst_JES_MJB_Beta: 1.09119407e-05 + syst_JES_MJB_Fragmentation: 1.86940017e-04 syst_JES_MJB_Stat1: 0.0 - syst_JES_MJB_Stat10: 1.9613364703691202e-09 - syst_JES_MJB_Stat11: 7.293822947545872e-09 - syst_JES_MJB_Stat12: 2.347966210377611e-06 - syst_JES_MJB_Stat13: 4.387562421208387e-11 - syst_JES_MJB_Stat14: 4.883506109090373e-11 - syst_JES_MJB_Stat15: 1.1143785541512005e-10 - syst_JES_MJB_Stat16: 2.022038760756084e-06 - syst_JES_MJB_Stat2: 4.040008508654407e-06 - syst_JES_MJB_Stat3: 5.374553655886226e-06 - syst_JES_MJB_Stat4: 7.805486964308308e-08 - syst_JES_MJB_Stat5: 6.752657592940723e-07 + syst_JES_MJB_Stat10: 1.96133647e-09 + syst_JES_MJB_Stat11: 7.29382295e-09 + syst_JES_MJB_Stat12: 2.34796621e-06 + syst_JES_MJB_Stat13: 4.38756242e-11 + syst_JES_MJB_Stat14: 4.88350611e-11 + syst_JES_MJB_Stat15: 1.11437855e-10 + syst_JES_MJB_Stat16: 2.02203876e-06 + syst_JES_MJB_Stat2: 4.04000851e-06 + syst_JES_MJB_Stat3: 5.37455366e-06 + syst_JES_MJB_Stat4: 7.80548696e-08 + syst_JES_MJB_Stat5: 6.75265759e-07 syst_JES_MJB_Stat6: 0.0 syst_JES_MJB_Stat7: 0.0 syst_JES_MJB_Stat8: 0.0 - syst_JES_MJB_Stat9: 4.283361647117833e-06 - syst_JES_MJB_Threshold: 0.00012159841240739947 - syst_JES_Pileup_MuOffset: 0.00024396554572316147 - syst_JES_Pileup_NPVOffset: 0.0002501802300342695 - syst_JES_Pileup_Pt_term: 0.00024322427407641697 - syst_JES_Pileup_Rho_topology: 0.0004208104799075232 - syst_JES_PunchThrough_MC15: 0.0001318107290777196 - syst_JES_SingleParticle_HighPt: 1.1122789668064394e-07 - syst_JES_Zjet_MC: 0.0007276039719517754 - syst_JES_Zjet_MuScale: 4.7721042528427644e-05 - syst_JES_Zjet_MuSmearID: 8.309165827566567e-06 - syst_JES_Zjet_MuSmearMS: 0.00019712825139994521 - syst_JES_Zjet_OOC: 0.00035622159886789575 - syst_JES_Zjet_Stat1: 1.5343990452291088e-05 - syst_JES_Zjet_Stat10: 2.6625969935384515e-05 - syst_JES_Zjet_Stat11: 3.526248289613197e-05 - syst_JES_Zjet_Stat12: 0.00013072723004408835 - syst_JES_Zjet_Stat13: 0.00021887277126221067 + syst_JES_MJB_Stat9: 4.28336165e-06 + syst_JES_MJB_Threshold: 1.21598412e-04 + syst_JES_Pileup_MuOffset: 2.43965546e-04 + syst_JES_Pileup_NPVOffset: 2.50180230e-04 + syst_JES_Pileup_Pt_term: 2.43224274e-04 + syst_JES_Pileup_Rho_topology: 4.20810480e-04 + syst_JES_PunchThrough_MC15: 1.31810729e-04 + syst_JES_SingleParticle_HighPt: 1.11227897e-07 + syst_JES_Zjet_MC: 7.27603972e-04 + syst_JES_Zjet_MuScale: 4.77210425e-05 + syst_JES_Zjet_MuSmearID: 8.30916583e-06 + syst_JES_Zjet_MuSmearMS: 1.97128251e-04 + syst_JES_Zjet_OOC: 3.56221599e-04 + syst_JES_Zjet_Stat1: 1.53439905e-05 + syst_JES_Zjet_Stat10: 2.66259699e-05 + syst_JES_Zjet_Stat11: 3.52624829e-05 + syst_JES_Zjet_Stat12: 1.30727230e-04 + syst_JES_Zjet_Stat13: 2.18872771e-04 syst_JES_Zjet_Stat2: 0.0 - syst_JES_Zjet_Stat3: 6.573132814722709e-06 - syst_JES_Zjet_Stat4: 4.2062853803238e-09 - syst_JES_Zjet_Stat5: 6.590453290964485e-06 - syst_JES_Zjet_Stat6: 5.250143498038887e-06 - syst_JES_Zjet_Stat7: 5.7157314492547666e-06 - syst_JES_Zjet_Stat8: 7.077793211870491e-06 - syst_JES_Zjet_Stat9: 1.3340120642258076e-05 - syst_JES_Zjet_Veto: 7.267604196019482e-05 - syst_JES_Zjet_dPhi: 6.716034153427155e-05 + syst_JES_Zjet_Stat3: 6.57313281e-06 + syst_JES_Zjet_Stat4: 4.20628538e-09 + syst_JES_Zjet_Stat5: 6.59045329e-06 + syst_JES_Zjet_Stat6: 5.25014350e-06 + syst_JES_Zjet_Stat7: 5.71573145e-06 + syst_JES_Zjet_Stat8: 7.07779321e-06 + syst_JES_Zjet_Stat9: 1.33401206e-05 + syst_JES_Zjet_Veto: 7.26760420e-05 + syst_JES_Zjet_dPhi: 6.71603415e-05 syst_PRW: 0.0 - syst_Unfolding_bias: 3.017e-16 - syst_cleaning: 0.0005828350967469272 - syst_lumi: 0.0012304 -- stat: 0.00035116 + syst_Unfolding_bias: 3.01700000e-16 + syst_cleaning: 5.82835097e-04 + syst_lumi: 1.23040000e-03 +- stat: 3.51160000e-04 syst_JER_CROSS_CALIB_FORWARD: 2.68e-13 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 8.467868858219286e-05 - syst_JER_NP1: 3.950838392037821e-05 - syst_JER_NP2: 4.951933254440011e-05 - syst_JER_NP3: 9.179059211052078e-06 - syst_JER_NP4: 5.270630607432094e-15 + syst_JER_NP0: 8.46786886e-05 + syst_JER_NP1: 3.95083839e-05 + syst_JER_NP2: 4.95193325e-05 + syst_JER_NP3: 9.17905921e-06 + syst_JER_NP4: 5.27063061e-15 syst_JER_NP5: 0.0 syst_JER_NP6: 0.0 - syst_JER_NP7: 4.901703785419923e-10 - syst_JER_NP8: 1.062445588018511e-05 - syst_JES_EtaIntercalibration_Modelling: 0.001375377630870882 - syst_JES_EtaIntercalibration_NonClosure: 8.806728336902418e-05 - syst_JES_EtaIntercalibration_Stat0: 2.5922534598298835e-22 - syst_JES_EtaIntercalibration_Stat1: 2.5922534598298835e-22 - syst_JES_EtaIntercalibration_Stat10: 1.7997005202733038e-19 - syst_JES_EtaIntercalibration_Stat100: 6.019742547870021e-07 - syst_JES_EtaIntercalibration_Stat101: 3.451197289582333e-08 - syst_JES_EtaIntercalibration_Stat102: 9.938507540772855e-08 - syst_JES_EtaIntercalibration_Stat103: 1.017165078637681e-07 - syst_JES_EtaIntercalibration_Stat104: 2.839969027067021e-10 - syst_JES_EtaIntercalibration_Stat105: 6.844971191916789e-13 - syst_JES_EtaIntercalibration_Stat106: 4.11416905340556e-14 - syst_JES_EtaIntercalibration_Stat107: 4.283456745150845e-17 - syst_JES_EtaIntercalibration_Stat108: 5.585832323835008e-16 - syst_JES_EtaIntercalibration_Stat109: 5.367751124708985e-07 - syst_JES_EtaIntercalibration_Stat11: 6.019742581705622e-07 - syst_JES_EtaIntercalibration_Stat110: 5.37014096871644e-07 - syst_JES_EtaIntercalibration_Stat111: 5.816623691452692e-07 - syst_JES_EtaIntercalibration_Stat112: 6.145782003130277e-07 - syst_JES_EtaIntercalibration_Stat113: 2.1520330892566098e-07 - syst_JES_EtaIntercalibration_Stat114: 9.015607852532956e-08 - syst_JES_EtaIntercalibration_Stat115: 6.376683637087542e-11 - syst_JES_EtaIntercalibration_Stat116: 4.5381840007099755e-09 - syst_JES_EtaIntercalibration_Stat117: 4.789500469777616e-12 - syst_JES_EtaIntercalibration_Stat118: 6.01950439776457e-07 - syst_JES_EtaIntercalibration_Stat119: 6.251255713854617e-07 - syst_JES_EtaIntercalibration_Stat12: 4.167314243011247e-10 - syst_JES_EtaIntercalibration_Stat120: 8.988196150890066e-08 - syst_JES_EtaIntercalibration_Stat121: 5.758340284318042e-07 - syst_JES_EtaIntercalibration_Stat122: 9.195407160332815e-08 - syst_JES_EtaIntercalibration_Stat123: 1.1637143568748948e-09 - syst_JES_EtaIntercalibration_Stat124: 5.415568391914186e-11 - syst_JES_EtaIntercalibration_Stat125: 7.60815532964463e-12 - syst_JES_EtaIntercalibration_Stat126: 1.3353675261889515e-12 - syst_JES_EtaIntercalibration_Stat127: 9.041305174956458e-14 - syst_JES_EtaIntercalibration_Stat128: 1.0871899988263321e-10 - syst_JES_EtaIntercalibration_Stat129: 1.7922096438475046e-07 - syst_JES_EtaIntercalibration_Stat13: 5.6915189536713356e-08 - syst_JES_EtaIntercalibration_Stat130: 1.3039111246841174e-06 - syst_JES_EtaIntercalibration_Stat131: 3.869084900528806e-07 - syst_JES_EtaIntercalibration_Stat132: 3.984722879950374e-07 - syst_JES_EtaIntercalibration_Stat133: 3.391322326173081e-07 - syst_JES_EtaIntercalibration_Stat134: 2.2750602189832248e-07 - syst_JES_EtaIntercalibration_Stat135: 3.075305838449242e-09 - syst_JES_EtaIntercalibration_Stat136: 5.821305072747863e-10 - syst_JES_EtaIntercalibration_Stat137: 5.984241772672591e-07 - syst_JES_EtaIntercalibration_Stat138: 8.213622389055879e-07 - syst_JES_EtaIntercalibration_Stat139: 1.1629085389659842e-07 - syst_JES_EtaIntercalibration_Stat14: 5.87771441548499e-08 - syst_JES_EtaIntercalibration_Stat140: 9.760382612889721e-08 - syst_JES_EtaIntercalibration_Stat141: 8.89304830077966e-08 - syst_JES_EtaIntercalibration_Stat142: 2.439200877336674e-07 - syst_JES_EtaIntercalibration_Stat143: 1.7443656354101913e-07 - syst_JES_EtaIntercalibration_Stat144: 1.378647222125733e-07 - syst_JES_EtaIntercalibration_Stat145: 1.6541532478884778e-07 - syst_JES_EtaIntercalibration_Stat146: 5.324305814610952e-07 - syst_JES_EtaIntercalibration_Stat147: 4.34049985600737e-08 - syst_JES_EtaIntercalibration_Stat148: 1.2746153642079638e-06 - syst_JES_EtaIntercalibration_Stat149: 8.733685005053709e-07 - syst_JES_EtaIntercalibration_Stat15: 1.8113888791247313e-19 - syst_JES_EtaIntercalibration_Stat150: 3.4287259568971097e-07 - syst_JES_EtaIntercalibration_Stat151: 8.08155455342597e-08 - syst_JES_EtaIntercalibration_Stat152: 2.0809016963806818e-07 - syst_JES_EtaIntercalibration_Stat153: 3.224851653490238e-07 - syst_JES_EtaIntercalibration_Stat154: 3.277598376860716e-09 - syst_JES_EtaIntercalibration_Stat155: 9.138248573988344e-07 - syst_JES_EtaIntercalibration_Stat156: 5.111569499674244e-07 - syst_JES_EtaIntercalibration_Stat157: 1.8278425824110236e-07 - syst_JES_EtaIntercalibration_Stat158: 2.4872209797822046e-07 - syst_JES_EtaIntercalibration_Stat159: 1.742407933722755e-08 - syst_JES_EtaIntercalibration_Stat16: 2.3921042476604148e-20 - syst_JES_EtaIntercalibration_Stat160: 2.3546191029548706e-07 - syst_JES_EtaIntercalibration_Stat161: 4.658563573409727e-08 - syst_JES_EtaIntercalibration_Stat162: 1.5431660497820705e-07 - syst_JES_EtaIntercalibration_Stat163: 1.219920394943867e-07 - syst_JES_EtaIntercalibration_Stat164: 6.638773589112676e-07 - syst_JES_EtaIntercalibration_Stat165: 5.434188439868459e-07 - syst_JES_EtaIntercalibration_Stat166: 1.0058738787740736e-06 - syst_JES_EtaIntercalibration_Stat167: 3.207785957634954e-07 - syst_JES_EtaIntercalibration_Stat168: 6.134405003747307e-07 - syst_JES_EtaIntercalibration_Stat169: 3.4184014436575464e-07 - syst_JES_EtaIntercalibration_Stat17: 1.7415770870564054e-09 - syst_JES_EtaIntercalibration_Stat170: 5.887902944198385e-07 - syst_JES_EtaIntercalibration_Stat171: 1.8025388671260326e-07 - syst_JES_EtaIntercalibration_Stat172: 3.116057944711555e-08 - syst_JES_EtaIntercalibration_Stat173: 2.917878852865554e-07 - syst_JES_EtaIntercalibration_Stat174: 1.6475375178741756e-06 - syst_JES_EtaIntercalibration_Stat175: 7.831275329089126e-07 - syst_JES_EtaIntercalibration_Stat176: 2.996273004917943e-07 - syst_JES_EtaIntercalibration_Stat177: 1.6138287726707566e-06 - syst_JES_EtaIntercalibration_Stat178: 1.926288375996699e-07 - syst_JES_EtaIntercalibration_Stat179: 4.7576687442485946e-07 - syst_JES_EtaIntercalibration_Stat18: 3.3068783996391524e-22 - syst_JES_EtaIntercalibration_Stat180: 4.1086825284998595e-07 - syst_JES_EtaIntercalibration_Stat181: 1.5481715239275006e-07 - syst_JES_EtaIntercalibration_Stat182: 3.6553785787076827e-06 - syst_JES_EtaIntercalibration_Stat183: 1.947653695520587e-06 - syst_JES_EtaIntercalibration_Stat184: 4.490341718740382e-08 - syst_JES_EtaIntercalibration_Stat185: 5.869842707219675e-06 - syst_JES_EtaIntercalibration_Stat186: 2.299383943581411e-06 - syst_JES_EtaIntercalibration_Stat187: 2.100857919993639e-06 - syst_JES_EtaIntercalibration_Stat188: 4.6383334291531915e-07 - syst_JES_EtaIntercalibration_Stat189: 9.262740239799453e-07 - syst_JES_EtaIntercalibration_Stat19: 1.3647901567182408e-20 - syst_JES_EtaIntercalibration_Stat190: 6.489412077183879e-07 - syst_JES_EtaIntercalibration_Stat191: 1.1649374350152887e-06 - syst_JES_EtaIntercalibration_Stat192: 1.2395053156400743e-06 - syst_JES_EtaIntercalibration_Stat193: 2.350286365530805e-06 - syst_JES_EtaIntercalibration_Stat194: 6.881437858471387e-07 - syst_JES_EtaIntercalibration_Stat195: 7.439747374743312e-07 - syst_JES_EtaIntercalibration_Stat196: 4.401466774553683e-06 - syst_JES_EtaIntercalibration_Stat197: 2.6808739768963405e-06 - syst_JES_EtaIntercalibration_Stat198: 5.013141205870825e-06 - syst_JES_EtaIntercalibration_Stat199: 8.748333326982918e-06 - syst_JES_EtaIntercalibration_Stat2: 3.6499558901444277e-22 - syst_JES_EtaIntercalibration_Stat20: 2.5922534598298835e-22 - syst_JES_EtaIntercalibration_Stat200: 5.698564819320739e-06 - syst_JES_EtaIntercalibration_Stat201: 5.6231908201660735e-06 - syst_JES_EtaIntercalibration_Stat202: 3.498415927244787e-06 - syst_JES_EtaIntercalibration_Stat203: 6.960222464117077e-07 - syst_JES_EtaIntercalibration_Stat204: 3.1384497765616705e-07 - syst_JES_EtaIntercalibration_Stat205: 3.7357806413117995e-07 - syst_JES_EtaIntercalibration_Stat206: 9.98776252571115e-07 - syst_JES_EtaIntercalibration_Stat207: 3.043278947122659e-06 - syst_JES_EtaIntercalibration_Stat208: 3.7969610585308883e-06 - syst_JES_EtaIntercalibration_Stat209: 3.345186541883726e-06 - syst_JES_EtaIntercalibration_Stat21: 2.5922534598298835e-22 - syst_JES_EtaIntercalibration_Stat210: 4.327432726224637e-06 - syst_JES_EtaIntercalibration_Stat211: 5.256483252850712e-06 - syst_JES_EtaIntercalibration_Stat212: 3.7857422984138793e-06 - syst_JES_EtaIntercalibration_Stat213: 4.009555181064354e-06 - syst_JES_EtaIntercalibration_Stat214: 3.89157586974737e-06 - syst_JES_EtaIntercalibration_Stat215: 3.840428459169627e-06 - syst_JES_EtaIntercalibration_Stat216: 1.9865786543703724e-06 - syst_JES_EtaIntercalibration_Stat217: 1.6701470556510884e-07 - syst_JES_EtaIntercalibration_Stat218: 1.9269783210184284e-06 - syst_JES_EtaIntercalibration_Stat219: 4.095469539625463e-07 - syst_JES_EtaIntercalibration_Stat22: 2.5922534598298835e-22 - syst_JES_EtaIntercalibration_Stat220: 6.248292855452599e-06 - syst_JES_EtaIntercalibration_Stat221: 2.847454082158306e-06 - syst_JES_EtaIntercalibration_Stat222: 1.3743823158059042e-06 - syst_JES_EtaIntercalibration_Stat223: 4.496220940968093e-06 - syst_JES_EtaIntercalibration_Stat224: 5.915227130043275e-06 - syst_JES_EtaIntercalibration_Stat225: 6.367247815971984e-06 - syst_JES_EtaIntercalibration_Stat226: 4.790413238959663e-06 - syst_JES_EtaIntercalibration_Stat227: 6.655158206233718e-06 - syst_JES_EtaIntercalibration_Stat228: 3.361709237872901e-06 - syst_JES_EtaIntercalibration_Stat229: 4.139992138579493e-07 - syst_JES_EtaIntercalibration_Stat23: 3.6499558901444277e-22 - syst_JES_EtaIntercalibration_Stat230: 1.3813105218184307e-06 - syst_JES_EtaIntercalibration_Stat231: 3.272391620818022e-06 - syst_JES_EtaIntercalibration_Stat232: 4.563953883547176e-06 - syst_JES_EtaIntercalibration_Stat233: 5.173297980978864e-06 - syst_JES_EtaIntercalibration_Stat234: 2.9028234531228387e-06 - syst_JES_EtaIntercalibration_Stat235: 6.394373679258978e-06 - syst_JES_EtaIntercalibration_Stat236: 1.51363502866444e-06 - syst_JES_EtaIntercalibration_Stat237: 1.1046154025270514e-06 - syst_JES_EtaIntercalibration_Stat238: 1.163546564388379e-06 - syst_JES_EtaIntercalibration_Stat239: 5.156098688688958e-07 - syst_JES_EtaIntercalibration_Stat24: 1.0871416589846975e-16 - syst_JES_EtaIntercalibration_Stat240: 8.065675567954615e-08 - syst_JES_EtaIntercalibration_Stat241: 5.6946096606791226e-08 - syst_JES_EtaIntercalibration_Stat242: 1.319469837349456e-06 - syst_JES_EtaIntercalibration_Stat243: 1.668019458729424e-07 - syst_JES_EtaIntercalibration_Stat244: 3.2923132690829205e-07 - syst_JES_EtaIntercalibration_Stat245: 1.15994933833336e-06 - syst_JES_EtaIntercalibration_Stat25: 2.0554492161082453e-18 - syst_JES_EtaIntercalibration_Stat26: 1.3268470145423699e-18 - syst_JES_EtaIntercalibration_Stat27: 6.019742581699101e-07 - syst_JES_EtaIntercalibration_Stat28: 2.5346235913839353e-18 - syst_JES_EtaIntercalibration_Stat29: 1.4000218105443932e-17 - syst_JES_EtaIntercalibration_Stat3: 3.6499558901444277e-22 - syst_JES_EtaIntercalibration_Stat30: 1.5676997501674226e-17 - syst_JES_EtaIntercalibration_Stat31: 6.742423507167139e-17 - syst_JES_EtaIntercalibration_Stat32: 1.8525331629960097e-19 - syst_JES_EtaIntercalibration_Stat33: 6.019742581704923e-07 - syst_JES_EtaIntercalibration_Stat34: 6.01974258170234e-07 - syst_JES_EtaIntercalibration_Stat35: 3.7308374394606093e-08 - syst_JES_EtaIntercalibration_Stat36: 3.9334873833041834e-09 - syst_JES_EtaIntercalibration_Stat37: 2.3764106984063173e-17 - syst_JES_EtaIntercalibration_Stat38: 1.7398450362626642e-09 - syst_JES_EtaIntercalibration_Stat39: 7.370330350715292e-17 - syst_JES_EtaIntercalibration_Stat4: 2.8682199221250454e-20 - syst_JES_EtaIntercalibration_Stat40: 4.920513443292064e-16 - syst_JES_EtaIntercalibration_Stat41: 4.36061412840402e-17 - syst_JES_EtaIntercalibration_Stat42: 2.8836433416556564e-20 - syst_JES_EtaIntercalibration_Stat43: 2.5922534598298835e-22 - syst_JES_EtaIntercalibration_Stat44: 2.5922534598298835e-22 - syst_JES_EtaIntercalibration_Stat45: 1.0323161772377444e-17 - syst_JES_EtaIntercalibration_Stat46: 1.14770569697767e-16 - syst_JES_EtaIntercalibration_Stat47: 6.595312331497273e-16 - syst_JES_EtaIntercalibration_Stat48: 8.193131993932479e-16 - syst_JES_EtaIntercalibration_Stat49: 6.019742581646917e-07 - syst_JES_EtaIntercalibration_Stat5: 7.24422269996409e-20 - syst_JES_EtaIntercalibration_Stat50: 5.586930036460095e-15 - syst_JES_EtaIntercalibration_Stat51: 4.100190323326467e-15 - syst_JES_EtaIntercalibration_Stat52: 1.6648899365423528e-15 - syst_JES_EtaIntercalibration_Stat53: 1.8938835867866852e-15 - syst_JES_EtaIntercalibration_Stat54: 3.327394791237082e-13 - syst_JES_EtaIntercalibration_Stat55: 6.019742581705991e-07 - syst_JES_EtaIntercalibration_Stat56: 3.406770733353531e-08 - syst_JES_EtaIntercalibration_Stat57: 3.404519066605386e-08 - syst_JES_EtaIntercalibration_Stat58: 4.912096086374572e-08 - syst_JES_EtaIntercalibration_Stat59: 1.634366629615277e-16 - syst_JES_EtaIntercalibration_Stat6: 7.241958374271079e-20 - syst_JES_EtaIntercalibration_Stat60: 5.825163809095843e-17 - syst_JES_EtaIntercalibration_Stat61: 4.745244988406816e-16 - syst_JES_EtaIntercalibration_Stat62: 5.281360633054054e-16 - syst_JES_EtaIntercalibration_Stat63: 6.820712643668549e-17 - syst_JES_EtaIntercalibration_Stat64: 4.8306897023095996e-21 - syst_JES_EtaIntercalibration_Stat65: 2.5922534598298835e-22 - syst_JES_EtaIntercalibration_Stat66: 2.5922534598298835e-22 - syst_JES_EtaIntercalibration_Stat67: 1.3232997633472923e-16 - syst_JES_EtaIntercalibration_Stat68: 6.322532463340935e-15 - syst_JES_EtaIntercalibration_Stat69: 5.369357522842281e-07 - syst_JES_EtaIntercalibration_Stat7: 2.5922534598298835e-22 - syst_JES_EtaIntercalibration_Stat70: 6.019742898237984e-07 - syst_JES_EtaIntercalibration_Stat71: 6.019742749570243e-07 - syst_JES_EtaIntercalibration_Stat72: 6.019742561414658e-07 - syst_JES_EtaIntercalibration_Stat73: 9.97921118766766e-08 - syst_JES_EtaIntercalibration_Stat74: 2.822339949249924e-10 - syst_JES_EtaIntercalibration_Stat75: 3.3115205582179316e-13 - syst_JES_EtaIntercalibration_Stat76: 3.29460987246939e-13 - syst_JES_EtaIntercalibration_Stat77: 6.01974257906108e-07 - syst_JES_EtaIntercalibration_Stat78: 3.550704143311014e-08 - syst_JES_EtaIntercalibration_Stat79: 6.019742581468948e-07 - syst_JES_EtaIntercalibration_Stat8: 1.5874245651368762e-22 - syst_JES_EtaIntercalibration_Stat80: 3.4387262561664126e-08 - syst_JES_EtaIntercalibration_Stat81: 3.188933933675485e-14 - syst_JES_EtaIntercalibration_Stat82: 9.988686088144925e-08 - syst_JES_EtaIntercalibration_Stat83: 5.692355146780197e-14 - syst_JES_EtaIntercalibration_Stat84: 6.859626657479253e-13 - syst_JES_EtaIntercalibration_Stat85: 8.598884636974727e-14 - syst_JES_EtaIntercalibration_Stat86: 4.033199806049627e-17 - syst_JES_EtaIntercalibration_Stat87: 1.5874245651368762e-22 - syst_JES_EtaIntercalibration_Stat88: 1.523650740819562e-17 - syst_JES_EtaIntercalibration_Stat89: 1.7886833670328575e-13 - syst_JES_EtaIntercalibration_Stat9: 1.7997005202733038e-19 - syst_JES_EtaIntercalibration_Stat90: 5.369358985523297e-07 - syst_JES_EtaIntercalibration_Stat91: 6.01974215475523e-07 - syst_JES_EtaIntercalibration_Stat92: 6.018874816458824e-07 - syst_JES_EtaIntercalibration_Stat93: 6.019742540918725e-07 - syst_JES_EtaIntercalibration_Stat94: 2.404718386838675e-14 - syst_JES_EtaIntercalibration_Stat95: 2.833602505281052e-10 - syst_JES_EtaIntercalibration_Stat96: 2.832116309399518e-10 - syst_JES_EtaIntercalibration_Stat97: 3.2688921242524964e-13 - syst_JES_EtaIntercalibration_Stat98: 6.019742577060851e-07 - syst_JES_EtaIntercalibration_Stat99: 3.565307506523806e-08 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.00019353921437269503 - syst_JES_Flavour_Comp: 0.000563997027917701 - syst_JES_Flavour_Response: 8.934396566081002e-05 - syst_JES_Gjet_Generator: 0.0007888200301716481 - syst_JES_Gjet_OOC: 0.0006399254858966003 - syst_JES_Gjet_Purity: 0.0001417936178923438 - syst_JES_Gjet_Stat1: 1.1625525020402305e-17 - syst_JES_Gjet_Stat10: 1.3147626211601848e-05 - syst_JES_Gjet_Stat11: 1.6111945878757164e-05 - syst_JES_Gjet_Stat12: 5.07066689400911e-05 - syst_JES_Gjet_Stat13: 0.0001591818064352833 - syst_JES_Gjet_Stat14: 0.00030569600504422686 - syst_JES_Gjet_Stat15: 0.00013920291618712592 - syst_JES_Gjet_Stat2: 9.084606485697121e-07 - syst_JES_Gjet_Stat3: 1.0280550010578228e-17 - syst_JES_Gjet_Stat4: 7.896674464929842e-15 - syst_JES_Gjet_Stat5: 3.1779402698446046e-16 - syst_JES_Gjet_Stat6: 3.57736114335693e-06 - syst_JES_Gjet_Stat7: 5.4825022343816695e-06 - syst_JES_Gjet_Stat8: 2.6941831387628015e-06 - syst_JES_Gjet_Stat9: 7.255081184935149e-06 - syst_JES_Gjet_Veto: 0.000607916079734695 - syst_JES_Gjet_dPhi: 6.088572143778868e-05 - syst_JES_LArESZee: 0.0012136398508206625 - syst_JES_LArEsmear: 9.672500232618245e-05 - syst_JES_LAr_JVT: 0.00011610102615825581 - syst_JES_MJB_Alpha: 6.956988428910889e-06 - syst_JES_MJB_Asym: 8.948945859708841e-05 - syst_JES_MJB_Beta: 6.706569223530016e-06 - syst_JES_MJB_Fragmentation: 9.186583750230549e-05 + syst_JER_NP7: 4.90170379e-10 + syst_JER_NP8: 1.06244559e-05 + syst_JES_EtaIntercalibration_Modelling: 1.37537763e-03 + syst_JES_EtaIntercalibration_NonClosure: 8.80672834e-05 + syst_JES_EtaIntercalibration_Stat0: 2.59225346e-22 + syst_JES_EtaIntercalibration_Stat1: 2.59225346e-22 + syst_JES_EtaIntercalibration_Stat10: 1.79970052e-19 + syst_JES_EtaIntercalibration_Stat100: 6.01974255e-07 + syst_JES_EtaIntercalibration_Stat101: 3.45119729e-08 + syst_JES_EtaIntercalibration_Stat102: 9.93850754e-08 + syst_JES_EtaIntercalibration_Stat103: 1.01716508e-07 + syst_JES_EtaIntercalibration_Stat104: 2.83996903e-10 + syst_JES_EtaIntercalibration_Stat105: 6.84497119e-13 + syst_JES_EtaIntercalibration_Stat106: 4.11416905e-14 + syst_JES_EtaIntercalibration_Stat107: 4.28345675e-17 + syst_JES_EtaIntercalibration_Stat108: 5.58583232e-16 + syst_JES_EtaIntercalibration_Stat109: 5.36775112e-07 + syst_JES_EtaIntercalibration_Stat11: 6.01974258e-07 + syst_JES_EtaIntercalibration_Stat110: 5.37014097e-07 + syst_JES_EtaIntercalibration_Stat111: 5.81662369e-07 + syst_JES_EtaIntercalibration_Stat112: 6.14578200e-07 + syst_JES_EtaIntercalibration_Stat113: 2.15203309e-07 + syst_JES_EtaIntercalibration_Stat114: 9.01560785e-08 + syst_JES_EtaIntercalibration_Stat115: 6.37668364e-11 + syst_JES_EtaIntercalibration_Stat116: 4.53818400e-09 + syst_JES_EtaIntercalibration_Stat117: 4.78950047e-12 + syst_JES_EtaIntercalibration_Stat118: 6.01950440e-07 + syst_JES_EtaIntercalibration_Stat119: 6.25125571e-07 + syst_JES_EtaIntercalibration_Stat12: 4.16731424e-10 + syst_JES_EtaIntercalibration_Stat120: 8.98819615e-08 + syst_JES_EtaIntercalibration_Stat121: 5.75834028e-07 + syst_JES_EtaIntercalibration_Stat122: 9.19540716e-08 + syst_JES_EtaIntercalibration_Stat123: 1.16371436e-09 + syst_JES_EtaIntercalibration_Stat124: 5.41556839e-11 + syst_JES_EtaIntercalibration_Stat125: 7.60815533e-12 + syst_JES_EtaIntercalibration_Stat126: 1.33536753e-12 + syst_JES_EtaIntercalibration_Stat127: 9.04130517e-14 + syst_JES_EtaIntercalibration_Stat128: 1.08719000e-10 + syst_JES_EtaIntercalibration_Stat129: 1.79220964e-07 + syst_JES_EtaIntercalibration_Stat13: 5.69151895e-08 + syst_JES_EtaIntercalibration_Stat130: 1.30391112e-06 + syst_JES_EtaIntercalibration_Stat131: 3.86908490e-07 + syst_JES_EtaIntercalibration_Stat132: 3.98472288e-07 + syst_JES_EtaIntercalibration_Stat133: 3.39132233e-07 + syst_JES_EtaIntercalibration_Stat134: 2.27506022e-07 + syst_JES_EtaIntercalibration_Stat135: 3.07530584e-09 + syst_JES_EtaIntercalibration_Stat136: 5.82130507e-10 + syst_JES_EtaIntercalibration_Stat137: 5.98424177e-07 + syst_JES_EtaIntercalibration_Stat138: 8.21362239e-07 + syst_JES_EtaIntercalibration_Stat139: 1.16290854e-07 + syst_JES_EtaIntercalibration_Stat14: 5.87771442e-08 + syst_JES_EtaIntercalibration_Stat140: 9.76038261e-08 + syst_JES_EtaIntercalibration_Stat141: 8.89304830e-08 + syst_JES_EtaIntercalibration_Stat142: 2.43920088e-07 + syst_JES_EtaIntercalibration_Stat143: 1.74436564e-07 + syst_JES_EtaIntercalibration_Stat144: 1.37864722e-07 + syst_JES_EtaIntercalibration_Stat145: 1.65415325e-07 + syst_JES_EtaIntercalibration_Stat146: 5.32430581e-07 + syst_JES_EtaIntercalibration_Stat147: 4.34049986e-08 + syst_JES_EtaIntercalibration_Stat148: 1.27461536e-06 + syst_JES_EtaIntercalibration_Stat149: 8.73368501e-07 + syst_JES_EtaIntercalibration_Stat15: 1.81138888e-19 + syst_JES_EtaIntercalibration_Stat150: 3.42872596e-07 + syst_JES_EtaIntercalibration_Stat151: 8.08155455e-08 + syst_JES_EtaIntercalibration_Stat152: 2.08090170e-07 + syst_JES_EtaIntercalibration_Stat153: 3.22485165e-07 + syst_JES_EtaIntercalibration_Stat154: 3.27759838e-09 + syst_JES_EtaIntercalibration_Stat155: 9.13824857e-07 + syst_JES_EtaIntercalibration_Stat156: 5.11156950e-07 + syst_JES_EtaIntercalibration_Stat157: 1.82784258e-07 + syst_JES_EtaIntercalibration_Stat158: 2.48722098e-07 + syst_JES_EtaIntercalibration_Stat159: 1.74240793e-08 + syst_JES_EtaIntercalibration_Stat16: 2.39210425e-20 + syst_JES_EtaIntercalibration_Stat160: 2.35461910e-07 + syst_JES_EtaIntercalibration_Stat161: 4.65856357e-08 + syst_JES_EtaIntercalibration_Stat162: 1.54316605e-07 + syst_JES_EtaIntercalibration_Stat163: 1.21992039e-07 + syst_JES_EtaIntercalibration_Stat164: 6.63877359e-07 + syst_JES_EtaIntercalibration_Stat165: 5.43418844e-07 + syst_JES_EtaIntercalibration_Stat166: 1.00587388e-06 + syst_JES_EtaIntercalibration_Stat167: 3.20778596e-07 + syst_JES_EtaIntercalibration_Stat168: 6.13440500e-07 + syst_JES_EtaIntercalibration_Stat169: 3.41840144e-07 + syst_JES_EtaIntercalibration_Stat17: 1.74157709e-09 + syst_JES_EtaIntercalibration_Stat170: 5.88790294e-07 + syst_JES_EtaIntercalibration_Stat171: 1.80253887e-07 + syst_JES_EtaIntercalibration_Stat172: 3.11605794e-08 + syst_JES_EtaIntercalibration_Stat173: 2.91787885e-07 + syst_JES_EtaIntercalibration_Stat174: 1.64753752e-06 + syst_JES_EtaIntercalibration_Stat175: 7.83127533e-07 + syst_JES_EtaIntercalibration_Stat176: 2.99627300e-07 + syst_JES_EtaIntercalibration_Stat177: 1.61382877e-06 + syst_JES_EtaIntercalibration_Stat178: 1.92628838e-07 + syst_JES_EtaIntercalibration_Stat179: 4.75766874e-07 + syst_JES_EtaIntercalibration_Stat18: 3.30687840e-22 + syst_JES_EtaIntercalibration_Stat180: 4.10868253e-07 + syst_JES_EtaIntercalibration_Stat181: 1.54817152e-07 + syst_JES_EtaIntercalibration_Stat182: 3.65537858e-06 + syst_JES_EtaIntercalibration_Stat183: 1.94765370e-06 + syst_JES_EtaIntercalibration_Stat184: 4.49034172e-08 + syst_JES_EtaIntercalibration_Stat185: 5.86984271e-06 + syst_JES_EtaIntercalibration_Stat186: 2.29938394e-06 + syst_JES_EtaIntercalibration_Stat187: 2.10085792e-06 + syst_JES_EtaIntercalibration_Stat188: 4.63833343e-07 + syst_JES_EtaIntercalibration_Stat189: 9.26274024e-07 + syst_JES_EtaIntercalibration_Stat19: 1.36479016e-20 + syst_JES_EtaIntercalibration_Stat190: 6.48941208e-07 + syst_JES_EtaIntercalibration_Stat191: 1.16493744e-06 + syst_JES_EtaIntercalibration_Stat192: 1.23950532e-06 + syst_JES_EtaIntercalibration_Stat193: 2.35028637e-06 + syst_JES_EtaIntercalibration_Stat194: 6.88143786e-07 + syst_JES_EtaIntercalibration_Stat195: 7.43974737e-07 + syst_JES_EtaIntercalibration_Stat196: 4.40146677e-06 + syst_JES_EtaIntercalibration_Stat197: 2.68087398e-06 + syst_JES_EtaIntercalibration_Stat198: 5.01314121e-06 + syst_JES_EtaIntercalibration_Stat199: 8.74833333e-06 + syst_JES_EtaIntercalibration_Stat2: 3.64995589e-22 + syst_JES_EtaIntercalibration_Stat20: 2.59225346e-22 + syst_JES_EtaIntercalibration_Stat200: 5.69856482e-06 + syst_JES_EtaIntercalibration_Stat201: 5.62319082e-06 + syst_JES_EtaIntercalibration_Stat202: 3.49841593e-06 + syst_JES_EtaIntercalibration_Stat203: 6.96022246e-07 + syst_JES_EtaIntercalibration_Stat204: 3.13844978e-07 + syst_JES_EtaIntercalibration_Stat205: 3.73578064e-07 + syst_JES_EtaIntercalibration_Stat206: 9.98776253e-07 + syst_JES_EtaIntercalibration_Stat207: 3.04327895e-06 + syst_JES_EtaIntercalibration_Stat208: 3.79696106e-06 + syst_JES_EtaIntercalibration_Stat209: 3.34518654e-06 + syst_JES_EtaIntercalibration_Stat21: 2.59225346e-22 + syst_JES_EtaIntercalibration_Stat210: 4.32743273e-06 + syst_JES_EtaIntercalibration_Stat211: 5.25648325e-06 + syst_JES_EtaIntercalibration_Stat212: 3.78574230e-06 + syst_JES_EtaIntercalibration_Stat213: 4.00955518e-06 + syst_JES_EtaIntercalibration_Stat214: 3.89157587e-06 + syst_JES_EtaIntercalibration_Stat215: 3.84042846e-06 + syst_JES_EtaIntercalibration_Stat216: 1.98657865e-06 + syst_JES_EtaIntercalibration_Stat217: 1.67014706e-07 + syst_JES_EtaIntercalibration_Stat218: 1.92697832e-06 + syst_JES_EtaIntercalibration_Stat219: 4.09546954e-07 + syst_JES_EtaIntercalibration_Stat22: 2.59225346e-22 + syst_JES_EtaIntercalibration_Stat220: 6.24829286e-06 + syst_JES_EtaIntercalibration_Stat221: 2.84745408e-06 + syst_JES_EtaIntercalibration_Stat222: 1.37438232e-06 + syst_JES_EtaIntercalibration_Stat223: 4.49622094e-06 + syst_JES_EtaIntercalibration_Stat224: 5.91522713e-06 + syst_JES_EtaIntercalibration_Stat225: 6.36724782e-06 + syst_JES_EtaIntercalibration_Stat226: 4.79041324e-06 + syst_JES_EtaIntercalibration_Stat227: 6.65515821e-06 + syst_JES_EtaIntercalibration_Stat228: 3.36170924e-06 + syst_JES_EtaIntercalibration_Stat229: 4.13999214e-07 + syst_JES_EtaIntercalibration_Stat23: 3.64995589e-22 + syst_JES_EtaIntercalibration_Stat230: 1.38131052e-06 + syst_JES_EtaIntercalibration_Stat231: 3.27239162e-06 + syst_JES_EtaIntercalibration_Stat232: 4.56395388e-06 + syst_JES_EtaIntercalibration_Stat233: 5.17329798e-06 + syst_JES_EtaIntercalibration_Stat234: 2.90282345e-06 + syst_JES_EtaIntercalibration_Stat235: 6.39437368e-06 + syst_JES_EtaIntercalibration_Stat236: 1.51363503e-06 + syst_JES_EtaIntercalibration_Stat237: 1.10461540e-06 + syst_JES_EtaIntercalibration_Stat238: 1.16354656e-06 + syst_JES_EtaIntercalibration_Stat239: 5.15609869e-07 + syst_JES_EtaIntercalibration_Stat24: 1.08714166e-16 + syst_JES_EtaIntercalibration_Stat240: 8.06567557e-08 + syst_JES_EtaIntercalibration_Stat241: 5.69460966e-08 + syst_JES_EtaIntercalibration_Stat242: 1.31946984e-06 + syst_JES_EtaIntercalibration_Stat243: 1.66801946e-07 + syst_JES_EtaIntercalibration_Stat244: 3.29231327e-07 + syst_JES_EtaIntercalibration_Stat245: 1.15994934e-06 + syst_JES_EtaIntercalibration_Stat25: 2.05544922e-18 + syst_JES_EtaIntercalibration_Stat26: 1.32684701e-18 + syst_JES_EtaIntercalibration_Stat27: 6.01974258e-07 + syst_JES_EtaIntercalibration_Stat28: 2.53462359e-18 + syst_JES_EtaIntercalibration_Stat29: 1.40002181e-17 + syst_JES_EtaIntercalibration_Stat3: 3.64995589e-22 + syst_JES_EtaIntercalibration_Stat30: 1.56769975e-17 + syst_JES_EtaIntercalibration_Stat31: 6.74242351e-17 + syst_JES_EtaIntercalibration_Stat32: 1.85253316e-19 + syst_JES_EtaIntercalibration_Stat33: 6.01974258e-07 + syst_JES_EtaIntercalibration_Stat34: 6.01974258e-07 + syst_JES_EtaIntercalibration_Stat35: 3.73083744e-08 + syst_JES_EtaIntercalibration_Stat36: 3.93348738e-09 + syst_JES_EtaIntercalibration_Stat37: 2.37641070e-17 + syst_JES_EtaIntercalibration_Stat38: 1.73984504e-09 + syst_JES_EtaIntercalibration_Stat39: 7.37033035e-17 + syst_JES_EtaIntercalibration_Stat4: 2.86821992e-20 + syst_JES_EtaIntercalibration_Stat40: 4.92051344e-16 + syst_JES_EtaIntercalibration_Stat41: 4.36061413e-17 + syst_JES_EtaIntercalibration_Stat42: 2.88364334e-20 + syst_JES_EtaIntercalibration_Stat43: 2.59225346e-22 + syst_JES_EtaIntercalibration_Stat44: 2.59225346e-22 + syst_JES_EtaIntercalibration_Stat45: 1.03231618e-17 + syst_JES_EtaIntercalibration_Stat46: 1.14770570e-16 + syst_JES_EtaIntercalibration_Stat47: 6.59531233e-16 + syst_JES_EtaIntercalibration_Stat48: 8.19313199e-16 + syst_JES_EtaIntercalibration_Stat49: 6.01974258e-07 + syst_JES_EtaIntercalibration_Stat5: 7.24422270e-20 + syst_JES_EtaIntercalibration_Stat50: 5.58693004e-15 + syst_JES_EtaIntercalibration_Stat51: 4.10019032e-15 + syst_JES_EtaIntercalibration_Stat52: 1.66488994e-15 + syst_JES_EtaIntercalibration_Stat53: 1.89388359e-15 + syst_JES_EtaIntercalibration_Stat54: 3.32739479e-13 + syst_JES_EtaIntercalibration_Stat55: 6.01974258e-07 + syst_JES_EtaIntercalibration_Stat56: 3.40677073e-08 + syst_JES_EtaIntercalibration_Stat57: 3.40451907e-08 + syst_JES_EtaIntercalibration_Stat58: 4.91209609e-08 + syst_JES_EtaIntercalibration_Stat59: 1.63436663e-16 + syst_JES_EtaIntercalibration_Stat6: 7.24195837e-20 + syst_JES_EtaIntercalibration_Stat60: 5.82516381e-17 + syst_JES_EtaIntercalibration_Stat61: 4.74524499e-16 + syst_JES_EtaIntercalibration_Stat62: 5.28136063e-16 + syst_JES_EtaIntercalibration_Stat63: 6.82071264e-17 + syst_JES_EtaIntercalibration_Stat64: 4.83068970e-21 + syst_JES_EtaIntercalibration_Stat65: 2.59225346e-22 + syst_JES_EtaIntercalibration_Stat66: 2.59225346e-22 + syst_JES_EtaIntercalibration_Stat67: 1.32329976e-16 + syst_JES_EtaIntercalibration_Stat68: 6.32253246e-15 + syst_JES_EtaIntercalibration_Stat69: 5.36935752e-07 + syst_JES_EtaIntercalibration_Stat7: 2.59225346e-22 + syst_JES_EtaIntercalibration_Stat70: 6.01974290e-07 + syst_JES_EtaIntercalibration_Stat71: 6.01974275e-07 + syst_JES_EtaIntercalibration_Stat72: 6.01974256e-07 + syst_JES_EtaIntercalibration_Stat73: 9.97921119e-08 + syst_JES_EtaIntercalibration_Stat74: 2.82233995e-10 + syst_JES_EtaIntercalibration_Stat75: 3.31152056e-13 + syst_JES_EtaIntercalibration_Stat76: 3.29460987e-13 + syst_JES_EtaIntercalibration_Stat77: 6.01974258e-07 + syst_JES_EtaIntercalibration_Stat78: 3.55070414e-08 + syst_JES_EtaIntercalibration_Stat79: 6.01974258e-07 + syst_JES_EtaIntercalibration_Stat8: 1.58742457e-22 + syst_JES_EtaIntercalibration_Stat80: 3.43872626e-08 + syst_JES_EtaIntercalibration_Stat81: 3.18893393e-14 + syst_JES_EtaIntercalibration_Stat82: 9.98868609e-08 + syst_JES_EtaIntercalibration_Stat83: 5.69235515e-14 + syst_JES_EtaIntercalibration_Stat84: 6.85962666e-13 + syst_JES_EtaIntercalibration_Stat85: 8.59888464e-14 + syst_JES_EtaIntercalibration_Stat86: 4.03319981e-17 + syst_JES_EtaIntercalibration_Stat87: 1.58742457e-22 + syst_JES_EtaIntercalibration_Stat88: 1.52365074e-17 + syst_JES_EtaIntercalibration_Stat89: 1.78868337e-13 + syst_JES_EtaIntercalibration_Stat9: 1.79970052e-19 + syst_JES_EtaIntercalibration_Stat90: 5.36935899e-07 + syst_JES_EtaIntercalibration_Stat91: 6.01974215e-07 + syst_JES_EtaIntercalibration_Stat92: 6.01887482e-07 + syst_JES_EtaIntercalibration_Stat93: 6.01974254e-07 + syst_JES_EtaIntercalibration_Stat94: 2.40471839e-14 + syst_JES_EtaIntercalibration_Stat95: 2.83360251e-10 + syst_JES_EtaIntercalibration_Stat96: 2.83211631e-10 + syst_JES_EtaIntercalibration_Stat97: 3.26889212e-13 + syst_JES_EtaIntercalibration_Stat98: 6.01974258e-07 + syst_JES_EtaIntercalibration_Stat99: 3.56530751e-08 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.93539214e-04 + syst_JES_Flavour_Comp: 5.63997028e-04 + syst_JES_Flavour_Response: 8.93439657e-05 + syst_JES_Gjet_Generator: 7.88820030e-04 + syst_JES_Gjet_OOC: 6.39925486e-04 + syst_JES_Gjet_Purity: 1.41793618e-04 + syst_JES_Gjet_Stat1: 1.16255250e-17 + syst_JES_Gjet_Stat10: 1.31476262e-05 + syst_JES_Gjet_Stat11: 1.61119459e-05 + syst_JES_Gjet_Stat12: 5.07066689e-05 + syst_JES_Gjet_Stat13: 1.59181806e-04 + syst_JES_Gjet_Stat14: 3.05696005e-04 + syst_JES_Gjet_Stat15: 1.39202916e-04 + syst_JES_Gjet_Stat2: 9.08460649e-07 + syst_JES_Gjet_Stat3: 1.02805500e-17 + syst_JES_Gjet_Stat4: 7.89667446e-15 + syst_JES_Gjet_Stat5: 3.17794027e-16 + syst_JES_Gjet_Stat6: 3.57736114e-06 + syst_JES_Gjet_Stat7: 5.48250223e-06 + syst_JES_Gjet_Stat8: 2.69418314e-06 + syst_JES_Gjet_Stat9: 7.25508118e-06 + syst_JES_Gjet_Veto: 6.07916080e-04 + syst_JES_Gjet_dPhi: 6.08857214e-05 + syst_JES_LArESZee: 1.21363985e-03 + syst_JES_LArEsmear: 9.67250023e-05 + syst_JES_LAr_JVT: 1.16101026e-04 + syst_JES_MJB_Alpha: 6.95698843e-06 + syst_JES_MJB_Asym: 8.94894586e-05 + syst_JES_MJB_Beta: 6.70656922e-06 + syst_JES_MJB_Fragmentation: 9.18658375e-05 syst_JES_MJB_Stat1: 0.0 - syst_JES_MJB_Stat10: 4.244206757451857e-08 - syst_JES_MJB_Stat11: 1.5749538792215473e-07 - syst_JES_MJB_Stat12: 5.027920320569928e-06 - syst_JES_MJB_Stat13: 5.0964859216915336e-09 - syst_JES_MJB_Stat14: 5.651915248557342e-09 - syst_JES_MJB_Stat15: 1.2893944671498905e-08 - syst_JES_MJB_Stat16: 2.042772201568251e-06 - syst_JES_MJB_Stat2: 7.873036945804332e-07 - syst_JES_MJB_Stat3: 2.8518216546621565e-06 - syst_JES_MJB_Stat4: 4.1421994972077036e-08 - syst_JES_MJB_Stat5: 3.5833122536976874e-07 + syst_JES_MJB_Stat10: 4.24420676e-08 + syst_JES_MJB_Stat11: 1.57495388e-07 + syst_JES_MJB_Stat12: 5.02792032e-06 + syst_JES_MJB_Stat13: 5.09648592e-09 + syst_JES_MJB_Stat14: 5.65191525e-09 + syst_JES_MJB_Stat15: 1.28939447e-08 + syst_JES_MJB_Stat16: 2.04277220e-06 + syst_JES_MJB_Stat2: 7.87303695e-07 + syst_JES_MJB_Stat3: 2.85182165e-06 + syst_JES_MJB_Stat4: 4.14219950e-08 + syst_JES_MJB_Stat5: 3.58331225e-07 syst_JES_MJB_Stat6: 0.0 syst_JES_MJB_Stat7: 0.0 syst_JES_MJB_Stat8: 0.0 - syst_JES_MJB_Stat9: 2.52273200122407e-06 - syst_JES_MJB_Threshold: 7.215760718732294e-05 - syst_JES_Pileup_MuOffset: 0.00014002972568351335 - syst_JES_Pileup_NPVOffset: 0.00014532229698157128 - syst_JES_Pileup_Pt_term: 0.00013144089194386957 - syst_JES_Pileup_Rho_topology: 0.00022782200837495923 - syst_JES_PunchThrough_MC15: 9.640276176023175e-05 - syst_JES_SingleParticle_HighPt: 5.902927409345299e-08 - syst_JES_Zjet_MC: 0.000373203014457279 - syst_JES_Zjet_MuScale: 2.3330987977366068e-05 - syst_JES_Zjet_MuSmearID: 4.393456384215052e-06 - syst_JES_Zjet_MuSmearMS: 9.956897107030885e-05 - syst_JES_Zjet_OOC: 0.00018750533325748365 - syst_JES_Zjet_Stat1: 9.959742315943722e-06 - syst_JES_Zjet_Stat10: 1.3318892596608773e-05 - syst_JES_Zjet_Stat11: 1.76803337072579e-05 - syst_JES_Zjet_Stat12: 6.268079849523296e-05 - syst_JES_Zjet_Stat13: 0.00010704006761488895 + syst_JES_MJB_Stat9: 2.52273200e-06 + syst_JES_MJB_Threshold: 7.21576072e-05 + syst_JES_Pileup_MuOffset: 1.40029726e-04 + syst_JES_Pileup_NPVOffset: 1.45322297e-04 + syst_JES_Pileup_Pt_term: 1.31440892e-04 + syst_JES_Pileup_Rho_topology: 2.27822008e-04 + syst_JES_PunchThrough_MC15: 9.64027618e-05 + syst_JES_SingleParticle_HighPt: 5.90292741e-08 + syst_JES_Zjet_MC: 3.73203014e-04 + syst_JES_Zjet_MuScale: 2.33309880e-05 + syst_JES_Zjet_MuSmearID: 4.39345638e-06 + syst_JES_Zjet_MuSmearMS: 9.95689711e-05 + syst_JES_Zjet_OOC: 1.87505333e-04 + syst_JES_Zjet_Stat1: 9.95974232e-06 + syst_JES_Zjet_Stat10: 1.33188926e-05 + syst_JES_Zjet_Stat11: 1.76803337e-05 + syst_JES_Zjet_Stat12: 6.26807985e-05 + syst_JES_Zjet_Stat13: 1.07040068e-04 syst_JES_Zjet_Stat2: 0.0 - syst_JES_Zjet_Stat3: 3.5801490192446835e-06 - syst_JES_Zjet_Stat4: 9.102793019096887e-08 - syst_JES_Zjet_Stat5: 3.880659831535115e-06 - syst_JES_Zjet_Stat6: 2.7860195171606386e-06 - syst_JES_Zjet_Stat7: 3.085151698053112e-06 - syst_JES_Zjet_Stat8: 3.769612015844602e-06 - syst_JES_Zjet_Stat9: 7.084008381559129e-06 - syst_JES_Zjet_Veto: 4.257216696387441e-05 - syst_JES_Zjet_dPhi: 3.357345082055165e-05 + syst_JES_Zjet_Stat3: 3.58014902e-06 + syst_JES_Zjet_Stat4: 9.10279302e-08 + syst_JES_Zjet_Stat5: 3.88065983e-06 + syst_JES_Zjet_Stat6: 2.78601952e-06 + syst_JES_Zjet_Stat7: 3.08515170e-06 + syst_JES_Zjet_Stat8: 3.76961202e-06 + syst_JES_Zjet_Stat9: 7.08400838e-06 + syst_JES_Zjet_Veto: 4.25721670e-05 + syst_JES_Zjet_dPhi: 3.35734508e-05 syst_PRW: 0.0 - syst_Unfolding_bias: 4.007e-17 - syst_cleaning: 0.00031583946476018476 - syst_lumi: 0.0006529 -- stat: 0.00021749 - syst_JER_CROSS_CALIB_FORWARD: 2.256e-14 + syst_Unfolding_bias: 4.00700000e-17 + syst_cleaning: 3.15839465e-04 + syst_lumi: 6.52900000e-04 +- stat: 2.17490000e-04 + syst_JER_CROSS_CALIB_FORWARD: 2.25600000e-14 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 4.587740301063259e-05 - syst_JER_NP1: 2.2525374025751494e-05 - syst_JER_NP2: 2.799856818769614e-05 - syst_JER_NP3: 4.660437962252045e-06 - syst_JER_NP4: 5.352903020791616e-16 + syst_JER_NP0: 4.58774030e-05 + syst_JER_NP1: 2.25253740e-05 + syst_JER_NP2: 2.79985682e-05 + syst_JER_NP3: 4.66043796e-06 + syst_JER_NP4: 5.35290302e-16 syst_JER_NP5: 0.0 syst_JER_NP6: 0.0 - syst_JER_NP7: 3.567158638188103e-11 - syst_JER_NP8: 2.012225384990459e-06 - syst_JES_EtaIntercalibration_Modelling: 0.0007597319000805482 - syst_JES_EtaIntercalibration_NonClosure: 4.025061334936401e-05 - syst_JES_EtaIntercalibration_Stat0: 2.692662622758373e-22 - syst_JES_EtaIntercalibration_Stat1: 2.692662622758373e-22 - syst_JES_EtaIntercalibration_Stat10: 2.2932721164310178e-20 - syst_JES_EtaIntercalibration_Stat100: 2.9938498190627077e-07 - syst_JES_EtaIntercalibration_Stat101: 1.7528353776707997e-08 - syst_JES_EtaIntercalibration_Stat102: 5.0636505366530535e-08 - syst_JES_EtaIntercalibration_Stat103: 5.092083031010001e-08 - syst_JES_EtaIntercalibration_Stat104: 2.5292920453621007e-11 - syst_JES_EtaIntercalibration_Stat105: 4.9635300416051424e-14 - syst_JES_EtaIntercalibration_Stat106: 3.2986082565227414e-15 - syst_JES_EtaIntercalibration_Stat107: 3.501537108371698e-18 - syst_JES_EtaIntercalibration_Stat108: 4.478954202712951e-17 - syst_JES_EtaIntercalibration_Stat109: 6.362787057045804e-08 - syst_JES_EtaIntercalibration_Stat11: 2.9938498208828025e-07 - syst_JES_EtaIntercalibration_Stat110: 6.367597965138091e-08 - syst_JES_EtaIntercalibration_Stat111: 2.9730181023962297e-07 - syst_JES_EtaIntercalibration_Stat112: 3.167980881807843e-07 - syst_JES_EtaIntercalibration_Stat113: 1.930367750714318e-07 - syst_JES_EtaIntercalibration_Stat114: 1.0869695216752986e-08 - syst_JES_EtaIntercalibration_Stat115: 4.975779103567602e-12 - syst_JES_EtaIntercalibration_Stat116: 4.829773064345259e-10 - syst_JES_EtaIntercalibration_Stat117: 3.543809513785977e-13 - syst_JES_EtaIntercalibration_Stat118: 2.993900255826848e-07 - syst_JES_EtaIntercalibration_Stat119: 3.185333393853774e-07 - syst_JES_EtaIntercalibration_Stat12: 2.2663884817039308e-09 - syst_JES_EtaIntercalibration_Stat120: 1.7327980180253748e-07 - syst_JES_EtaIntercalibration_Stat121: 2.864261853863924e-07 - syst_JES_EtaIntercalibration_Stat122: 4.959586485708681e-08 - syst_JES_EtaIntercalibration_Stat123: 1.5775159914790087e-10 - syst_JES_EtaIntercalibration_Stat124: 4.287104648827691e-12 - syst_JES_EtaIntercalibration_Stat125: 5.648662172258135e-13 - syst_JES_EtaIntercalibration_Stat126: 9.58623569238729e-14 - syst_JES_EtaIntercalibration_Stat127: 6.9758345065287805e-15 - syst_JES_EtaIntercalibration_Stat128: 8.688499784813256e-12 - syst_JES_EtaIntercalibration_Stat129: 1.5826748457911373e-07 - syst_JES_EtaIntercalibration_Stat13: 2.8899267724286774e-08 - syst_JES_EtaIntercalibration_Stat130: 4.86869895018166e-07 - syst_JES_EtaIntercalibration_Stat131: 9.104857865447433e-08 - syst_JES_EtaIntercalibration_Stat132: 2.0964553012167942e-07 - syst_JES_EtaIntercalibration_Stat133: 3.624170292287602e-07 - syst_JES_EtaIntercalibration_Stat134: 1.235924266561265e-07 - syst_JES_EtaIntercalibration_Stat135: 3.1377933978354915e-10 - syst_JES_EtaIntercalibration_Stat136: 5.204780206694611e-11 - syst_JES_EtaIntercalibration_Stat137: 2.990386206840287e-07 - syst_JES_EtaIntercalibration_Stat138: 2.7337311988379545e-07 - syst_JES_EtaIntercalibration_Stat139: 3.546786256599064e-08 - syst_JES_EtaIntercalibration_Stat14: 2.984323541441181e-08 - syst_JES_EtaIntercalibration_Stat140: 5.954597796660997e-08 - syst_JES_EtaIntercalibration_Stat141: 1.0635618317709603e-07 - syst_JES_EtaIntercalibration_Stat142: 3.688607966709799e-07 - syst_JES_EtaIntercalibration_Stat143: 3.6248743598468345e-07 - syst_JES_EtaIntercalibration_Stat144: 7.918311884960077e-09 - syst_JES_EtaIntercalibration_Stat145: 6.18264037507439e-08 - syst_JES_EtaIntercalibration_Stat146: 6.266502320024704e-08 - syst_JES_EtaIntercalibration_Stat147: 2.12551161605859e-08 - syst_JES_EtaIntercalibration_Stat148: 4.826954327523723e-07 - syst_JES_EtaIntercalibration_Stat149: 4.010681521886274e-07 - syst_JES_EtaIntercalibration_Stat15: 2.316970332395303e-20 - syst_JES_EtaIntercalibration_Stat150: 2.255494650847126e-07 - syst_JES_EtaIntercalibration_Stat151: 2.2143216636252287e-08 - syst_JES_EtaIntercalibration_Stat152: 1.2748628051186526e-07 - syst_JES_EtaIntercalibration_Stat153: 1.63003017922982e-07 - syst_JES_EtaIntercalibration_Stat154: 3.6420247620657383e-10 - syst_JES_EtaIntercalibration_Stat155: 3.239866350252738e-07 - syst_JES_EtaIntercalibration_Stat156: 2.7262872019469994e-07 - syst_JES_EtaIntercalibration_Stat157: 8.537742134194497e-08 - syst_JES_EtaIntercalibration_Stat158: 3.253789143940953e-07 - syst_JES_EtaIntercalibration_Stat159: 7.93871888626874e-08 - syst_JES_EtaIntercalibration_Stat16: 4.348899156108359e-21 - syst_JES_EtaIntercalibration_Stat160: 2.9251689233273353e-08 - syst_JES_EtaIntercalibration_Stat161: 1.778684196252949e-08 - syst_JES_EtaIntercalibration_Stat162: 1.1821918747817546e-08 - syst_JES_EtaIntercalibration_Stat163: 4.690740908428007e-08 - syst_JES_EtaIntercalibration_Stat164: 8.711598475595624e-08 - syst_JES_EtaIntercalibration_Stat165: 2.3194687899387652e-07 - syst_JES_EtaIntercalibration_Stat166: 5.52075502082822e-07 - syst_JES_EtaIntercalibration_Stat167: 2.4507012771857775e-07 - syst_JES_EtaIntercalibration_Stat168: 4.717765864262448e-07 - syst_JES_EtaIntercalibration_Stat169: 1.2796514242167667e-07 - syst_JES_EtaIntercalibration_Stat17: 1.8550264149640892e-10 - syst_JES_EtaIntercalibration_Stat170: 5.474360119685223e-07 - syst_JES_EtaIntercalibration_Stat171: 7.287801047469669e-08 - syst_JES_EtaIntercalibration_Stat172: 8.564384062196183e-09 - syst_JES_EtaIntercalibration_Stat173: 1.8061301690354435e-07 - syst_JES_EtaIntercalibration_Stat174: 4.364500002291213e-07 - syst_JES_EtaIntercalibration_Stat175: 3.38356221754529e-07 - syst_JES_EtaIntercalibration_Stat176: 1.5343964676705955e-07 - syst_JES_EtaIntercalibration_Stat177: 1.1687431743116192e-06 - syst_JES_EtaIntercalibration_Stat178: 4.459497638467813e-08 - syst_JES_EtaIntercalibration_Stat179: 2.3244172000740315e-07 - syst_JES_EtaIntercalibration_Stat18: 3.4363399133380273e-22 - syst_JES_EtaIntercalibration_Stat180: 2.7482404883988952e-08 - syst_JES_EtaIntercalibration_Stat181: 3.620813548085568e-08 - syst_JES_EtaIntercalibration_Stat182: 1.1592567087901627e-06 - syst_JES_EtaIntercalibration_Stat183: 1.2046757417247183e-06 - syst_JES_EtaIntercalibration_Stat184: 2.2802448881790284e-08 - syst_JES_EtaIntercalibration_Stat185: 2.5242103775240285e-06 - syst_JES_EtaIntercalibration_Stat186: 1.121797205380723e-06 - syst_JES_EtaIntercalibration_Stat187: 8.818002835109546e-07 - syst_JES_EtaIntercalibration_Stat188: 3.117159246413311e-07 - syst_JES_EtaIntercalibration_Stat189: 2.223662832327554e-07 - syst_JES_EtaIntercalibration_Stat19: 2.274696875822139e-21 - syst_JES_EtaIntercalibration_Stat190: 5.577875112217914e-08 - syst_JES_EtaIntercalibration_Stat191: 5.422344419160406e-07 - syst_JES_EtaIntercalibration_Stat192: 6.29400929455939e-07 - syst_JES_EtaIntercalibration_Stat193: 1.0041479808773208e-06 - syst_JES_EtaIntercalibration_Stat194: 6.188617535777423e-11 - syst_JES_EtaIntercalibration_Stat195: 4.62823106056731e-07 - syst_JES_EtaIntercalibration_Stat196: 1.1924272587877216e-06 - syst_JES_EtaIntercalibration_Stat197: 1.0031863872182478e-06 - syst_JES_EtaIntercalibration_Stat198: 2.0292984009257976e-06 - syst_JES_EtaIntercalibration_Stat199: 4.3914651313656125e-06 - syst_JES_EtaIntercalibration_Stat2: 3.7958940975743776e-22 - syst_JES_EtaIntercalibration_Stat20: 2.692662622758373e-22 - syst_JES_EtaIntercalibration_Stat200: 2.9133445985670834e-06 - syst_JES_EtaIntercalibration_Stat201: 2.734632333605379e-06 - syst_JES_EtaIntercalibration_Stat202: 1.5051475774820222e-06 - syst_JES_EtaIntercalibration_Stat203: 3.5422406309425113e-07 - syst_JES_EtaIntercalibration_Stat204: 6.444184257918142e-08 - syst_JES_EtaIntercalibration_Stat205: 2.535969547672645e-07 - syst_JES_EtaIntercalibration_Stat206: 4.948800972963048e-07 - syst_JES_EtaIntercalibration_Stat207: 1.5789682351143104e-06 - syst_JES_EtaIntercalibration_Stat208: 1.8315994431097644e-06 - syst_JES_EtaIntercalibration_Stat209: 1.4920152169130179e-06 - syst_JES_EtaIntercalibration_Stat21: 2.692662622758373e-22 - syst_JES_EtaIntercalibration_Stat210: 1.72634722752985e-06 - syst_JES_EtaIntercalibration_Stat211: 2.5743185506071306e-06 - syst_JES_EtaIntercalibration_Stat212: 2.4975533527834794e-06 - syst_JES_EtaIntercalibration_Stat213: 2.419825619750316e-06 - syst_JES_EtaIntercalibration_Stat214: 2.2396108478929995e-06 - syst_JES_EtaIntercalibration_Stat215: 1.9481259584534053e-06 - syst_JES_EtaIntercalibration_Stat216: 1.030779957265371e-06 - syst_JES_EtaIntercalibration_Stat217: 5.172210552558742e-08 - syst_JES_EtaIntercalibration_Stat218: 4.7011247079821233e-07 - syst_JES_EtaIntercalibration_Stat219: 2.0754696305896646e-07 - syst_JES_EtaIntercalibration_Stat22: 2.692662622758373e-22 - syst_JES_EtaIntercalibration_Stat220: 2.825852184297685e-06 - syst_JES_EtaIntercalibration_Stat221: 1.62340277426768e-06 - syst_JES_EtaIntercalibration_Stat222: 7.241704426445477e-07 - syst_JES_EtaIntercalibration_Stat223: 2.466632319580687e-06 - syst_JES_EtaIntercalibration_Stat224: 4.115129007698301e-06 - syst_JES_EtaIntercalibration_Stat225: 4.420785082991482e-06 - syst_JES_EtaIntercalibration_Stat226: 3.5262524016298093e-06 - syst_JES_EtaIntercalibration_Stat227: 3.7700165659450357e-06 - syst_JES_EtaIntercalibration_Stat228: 2.1157594381214516e-06 - syst_JES_EtaIntercalibration_Stat229: 2.0865476270624643e-07 - syst_JES_EtaIntercalibration_Stat23: 3.7958940975743776e-22 - syst_JES_EtaIntercalibration_Stat230: 7.122192923065533e-07 - syst_JES_EtaIntercalibration_Stat231: 2.4739686740134767e-06 - syst_JES_EtaIntercalibration_Stat232: 3.174849130706765e-06 - syst_JES_EtaIntercalibration_Stat233: 5.361928081390126e-06 - syst_JES_EtaIntercalibration_Stat234: 2.7600291021427654e-06 - syst_JES_EtaIntercalibration_Stat235: 4.041019797031437e-06 - syst_JES_EtaIntercalibration_Stat236: 9.365402767633649e-07 - syst_JES_EtaIntercalibration_Stat237: 6.604309729260128e-07 - syst_JES_EtaIntercalibration_Stat238: 4.443876095257382e-07 - syst_JES_EtaIntercalibration_Stat239: 3.256438967645486e-07 - syst_JES_EtaIntercalibration_Stat24: 9.539628085386768e-18 - syst_JES_EtaIntercalibration_Stat240: 3.5287299060710216e-08 - syst_JES_EtaIntercalibration_Stat241: 2.6685397355107904e-08 - syst_JES_EtaIntercalibration_Stat242: 4.544673266877939e-07 - syst_JES_EtaIntercalibration_Stat243: 8.605237548580516e-08 - syst_JES_EtaIntercalibration_Stat244: 1.2033381734473703e-07 - syst_JES_EtaIntercalibration_Stat245: 1.1707712276529519e-06 - syst_JES_EtaIntercalibration_Stat25: 2.3636125803523727e-19 - syst_JES_EtaIntercalibration_Stat26: 1.5177521825054312e-19 - syst_JES_EtaIntercalibration_Stat27: 2.9938498208821614e-07 - syst_JES_EtaIntercalibration_Stat28: 2.8214554311560556e-19 - syst_JES_EtaIntercalibration_Stat29: 1.419305255221723e-18 - syst_JES_EtaIntercalibration_Stat3: 3.7958940975743776e-22 - syst_JES_EtaIntercalibration_Stat30: 1.5867609230362966e-18 - syst_JES_EtaIntercalibration_Stat31: 5.400595777319387e-18 - syst_JES_EtaIntercalibration_Stat32: 2.4536845763056018e-20 - syst_JES_EtaIntercalibration_Stat33: 2.993849820882719e-07 - syst_JES_EtaIntercalibration_Stat34: 2.9938498208824367e-07 - syst_JES_EtaIntercalibration_Stat35: 1.9702077936050453e-08 - syst_JES_EtaIntercalibration_Stat36: 1.673161080103776e-08 - syst_JES_EtaIntercalibration_Stat37: 2.6490040217976265e-18 - syst_JES_EtaIntercalibration_Stat38: 1.8524283386599673e-10 - syst_JES_EtaIntercalibration_Stat39: 6.78764106601896e-18 - syst_JES_EtaIntercalibration_Stat4: 4.365400860173095e-21 - syst_JES_EtaIntercalibration_Stat40: 4.5238499787469996e-17 - syst_JES_EtaIntercalibration_Stat41: 3.575155065860361e-18 - syst_JES_EtaIntercalibration_Stat42: 4.4067493038378074e-21 - syst_JES_EtaIntercalibration_Stat43: 2.692662622758373e-22 - syst_JES_EtaIntercalibration_Stat44: 2.692662622758373e-22 - syst_JES_EtaIntercalibration_Stat45: 1.0204529242939138e-18 - syst_JES_EtaIntercalibration_Stat46: 9.905501406163142e-18 - syst_JES_EtaIntercalibration_Stat47: 4.935944970317234e-17 - syst_JES_EtaIntercalibration_Stat48: 6.899004708470635e-17 - syst_JES_EtaIntercalibration_Stat49: 2.9938498208774403e-07 - syst_JES_EtaIntercalibration_Stat5: 1.0183509251235549e-20 - syst_JES_EtaIntercalibration_Stat50: 4.403885401233779e-16 - syst_JES_EtaIntercalibration_Stat51: 2.9662122998025614e-16 - syst_JES_EtaIntercalibration_Stat52: 1.4083919982288313e-16 - syst_JES_EtaIntercalibration_Stat53: 1.603183589829936e-16 - syst_JES_EtaIntercalibration_Stat54: 2.4528282888359525e-14 - syst_JES_EtaIntercalibration_Stat55: 2.993849820882871e-07 - syst_JES_EtaIntercalibration_Stat56: 1.729452731352501e-08 - syst_JES_EtaIntercalibration_Stat57: 1.7285867058812532e-08 - syst_JES_EtaIntercalibration_Stat58: 3.808779725490074e-08 - syst_JES_EtaIntercalibration_Stat59: 1.5695039821548718e-17 - syst_JES_EtaIntercalibration_Stat6: 1.016103151850244e-20 - syst_JES_EtaIntercalibration_Stat60: 4.948937004044404e-18 - syst_JES_EtaIntercalibration_Stat61: 4.340195012899766e-17 - syst_JES_EtaIntercalibration_Stat62: 4.762901894902807e-17 - syst_JES_EtaIntercalibration_Stat63: 5.8912780079962265e-18 - syst_JES_EtaIntercalibration_Stat64: 7.534421012924616e-22 - syst_JES_EtaIntercalibration_Stat65: 2.692662622758373e-22 - syst_JES_EtaIntercalibration_Stat66: 2.692662622758373e-22 - syst_JES_EtaIntercalibration_Stat67: 1.2303423065147358e-17 - syst_JES_EtaIntercalibration_Stat68: 4.967103005525454e-16 - syst_JES_EtaIntercalibration_Stat69: 6.365286733002823e-08 - syst_JES_EtaIntercalibration_Stat7: 2.692662622758373e-22 - syst_JES_EtaIntercalibration_Stat70: 2.9938498468751144e-07 - syst_JES_EtaIntercalibration_Stat71: 2.993849835374296e-07 - syst_JES_EtaIntercalibration_Stat72: 2.9938498193894877e-07 - syst_JES_EtaIntercalibration_Stat73: 5.067114671104122e-08 - syst_JES_EtaIntercalibration_Stat74: 2.5123113959437593e-11 - syst_JES_EtaIntercalibration_Stat75: 2.4426665660861288e-14 - syst_JES_EtaIntercalibration_Stat76: 2.4300517642403428e-14 - syst_JES_EtaIntercalibration_Stat77: 2.993849820663238e-07 - syst_JES_EtaIntercalibration_Stat78: 1.8030648895587375e-08 - syst_JES_EtaIntercalibration_Stat79: 2.9938498208610925e-07 - syst_JES_EtaIntercalibration_Stat8: 1.648912368805571e-22 - syst_JES_EtaIntercalibration_Stat80: 1.7459071501456303e-08 - syst_JES_EtaIntercalibration_Stat81: 2.316273990465452e-15 - syst_JES_EtaIntercalibration_Stat82: 5.0679555282126096e-08 - syst_JES_EtaIntercalibration_Stat83: 4.243758114463524e-15 - syst_JES_EtaIntercalibration_Stat84: 4.9782443499189545e-14 - syst_JES_EtaIntercalibration_Stat85: 6.6357295567254695e-15 - syst_JES_EtaIntercalibration_Stat86: 3.282683045176308e-18 - syst_JES_EtaIntercalibration_Stat87: 1.648912368805571e-22 - syst_JES_EtaIntercalibration_Stat88: 1.4272783260457646e-18 - syst_JES_EtaIntercalibration_Stat89: 1.3281345800407425e-14 - syst_JES_EtaIntercalibration_Stat9: 2.2932721164310178e-20 - syst_JES_EtaIntercalibration_Stat90: 6.365287798904738e-08 - syst_JES_EtaIntercalibration_Stat91: 2.9938497934298e-07 - syst_JES_EtaIntercalibration_Stat92: 2.9938496958576246e-07 - syst_JES_EtaIntercalibration_Stat93: 2.9938498178748096e-07 - syst_JES_EtaIntercalibration_Stat94: 1.8920309742443438e-15 - syst_JES_EtaIntercalibration_Stat95: 2.522706050397372e-11 - syst_JES_EtaIntercalibration_Stat96: 2.5209290709975853e-11 - syst_JES_EtaIntercalibration_Stat97: 2.427284606860102e-14 - syst_JES_EtaIntercalibration_Stat98: 2.9938498205032545e-07 - syst_JES_EtaIntercalibration_Stat99: 1.807072353504419e-08 - syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0001121947970050305 - syst_JES_Flavour_Comp: 0.00030908349600067617 - syst_JES_Flavour_Response: 2.7305341968193695e-05 - syst_JES_Gjet_Generator: 0.00041475453885400697 - syst_JES_Gjet_OOC: 0.00034164158119292214 - syst_JES_Gjet_Purity: 6.984732564672752e-05 - syst_JES_Gjet_Stat1: 1.482635491278959e-18 - syst_JES_Gjet_Stat10: 6.6657667788484765e-06 - syst_JES_Gjet_Stat11: 7.911375228113e-06 - syst_JES_Gjet_Stat12: 2.34705624133722e-05 - syst_JES_Gjet_Stat13: 7.821903093237605e-05 - syst_JES_Gjet_Stat14: 0.00017650843464265382 - syst_JES_Gjet_Stat15: 0.0001220941452322756 - syst_JES_Gjet_Stat2: 9.585169169085898e-07 - syst_JES_Gjet_Stat3: 1.2347637244428587e-18 - syst_JES_Gjet_Stat4: 7.252715295859889e-16 - syst_JES_Gjet_Stat5: 3.601199002287294e-17 - syst_JES_Gjet_Stat6: 2.057192504361223e-06 - syst_JES_Gjet_Stat7: 2.7925151297710097e-06 - syst_JES_Gjet_Stat8: 1.0329069004207021e-06 - syst_JES_Gjet_Stat9: 3.593886058294002e-06 - syst_JES_Gjet_Veto: 0.0003326910992196816 - syst_JES_Gjet_dPhi: 3.269890212224258e-05 - syst_JES_LArESZee: 0.0006393248215891511 - syst_JES_LArEsmear: 5.226496603844682e-05 - syst_JES_LAr_JVT: 6.325037391193826e-05 - syst_JES_MJB_Alpha: 3.6447335636504352e-06 - syst_JES_MJB_Asym: 5.573565353523721e-05 - syst_JES_MJB_Beta: 3.5841813960791664e-06 - syst_JES_MJB_Fragmentation: 4.438765932103202e-05 + syst_JER_NP7: 3.56715864e-11 + syst_JER_NP8: 2.01222538e-06 + syst_JES_EtaIntercalibration_Modelling: 7.59731900e-04 + syst_JES_EtaIntercalibration_NonClosure: 4.02506133e-05 + syst_JES_EtaIntercalibration_Stat0: 2.69266262e-22 + syst_JES_EtaIntercalibration_Stat1: 2.69266262e-22 + syst_JES_EtaIntercalibration_Stat10: 2.29327212e-20 + syst_JES_EtaIntercalibration_Stat100: 2.99384982e-07 + syst_JES_EtaIntercalibration_Stat101: 1.75283538e-08 + syst_JES_EtaIntercalibration_Stat102: 5.06365054e-08 + syst_JES_EtaIntercalibration_Stat103: 5.09208303e-08 + syst_JES_EtaIntercalibration_Stat104: 2.52929205e-11 + syst_JES_EtaIntercalibration_Stat105: 4.96353004e-14 + syst_JES_EtaIntercalibration_Stat106: 3.29860826e-15 + syst_JES_EtaIntercalibration_Stat107: 3.50153711e-18 + syst_JES_EtaIntercalibration_Stat108: 4.47895420e-17 + syst_JES_EtaIntercalibration_Stat109: 6.36278706e-08 + syst_JES_EtaIntercalibration_Stat11: 2.99384982e-07 + syst_JES_EtaIntercalibration_Stat110: 6.36759797e-08 + syst_JES_EtaIntercalibration_Stat111: 2.97301810e-07 + syst_JES_EtaIntercalibration_Stat112: 3.16798088e-07 + syst_JES_EtaIntercalibration_Stat113: 1.93036775e-07 + syst_JES_EtaIntercalibration_Stat114: 1.08696952e-08 + syst_JES_EtaIntercalibration_Stat115: 4.97577910e-12 + syst_JES_EtaIntercalibration_Stat116: 4.82977306e-10 + syst_JES_EtaIntercalibration_Stat117: 3.54380951e-13 + syst_JES_EtaIntercalibration_Stat118: 2.99390026e-07 + syst_JES_EtaIntercalibration_Stat119: 3.18533339e-07 + syst_JES_EtaIntercalibration_Stat12: 2.26638848e-09 + syst_JES_EtaIntercalibration_Stat120: 1.73279802e-07 + syst_JES_EtaIntercalibration_Stat121: 2.86426185e-07 + syst_JES_EtaIntercalibration_Stat122: 4.95958649e-08 + syst_JES_EtaIntercalibration_Stat123: 1.57751599e-10 + syst_JES_EtaIntercalibration_Stat124: 4.28710465e-12 + syst_JES_EtaIntercalibration_Stat125: 5.64866217e-13 + syst_JES_EtaIntercalibration_Stat126: 9.58623569e-14 + syst_JES_EtaIntercalibration_Stat127: 6.97583451e-15 + syst_JES_EtaIntercalibration_Stat128: 8.68849978e-12 + syst_JES_EtaIntercalibration_Stat129: 1.58267485e-07 + syst_JES_EtaIntercalibration_Stat13: 2.88992677e-08 + syst_JES_EtaIntercalibration_Stat130: 4.86869895e-07 + syst_JES_EtaIntercalibration_Stat131: 9.10485787e-08 + syst_JES_EtaIntercalibration_Stat132: 2.09645530e-07 + syst_JES_EtaIntercalibration_Stat133: 3.62417029e-07 + syst_JES_EtaIntercalibration_Stat134: 1.23592427e-07 + syst_JES_EtaIntercalibration_Stat135: 3.13779340e-10 + syst_JES_EtaIntercalibration_Stat136: 5.20478021e-11 + syst_JES_EtaIntercalibration_Stat137: 2.99038621e-07 + syst_JES_EtaIntercalibration_Stat138: 2.73373120e-07 + syst_JES_EtaIntercalibration_Stat139: 3.54678626e-08 + syst_JES_EtaIntercalibration_Stat14: 2.98432354e-08 + syst_JES_EtaIntercalibration_Stat140: 5.95459780e-08 + syst_JES_EtaIntercalibration_Stat141: 1.06356183e-07 + syst_JES_EtaIntercalibration_Stat142: 3.68860797e-07 + syst_JES_EtaIntercalibration_Stat143: 3.62487436e-07 + syst_JES_EtaIntercalibration_Stat144: 7.91831188e-09 + syst_JES_EtaIntercalibration_Stat145: 6.18264038e-08 + syst_JES_EtaIntercalibration_Stat146: 6.26650232e-08 + syst_JES_EtaIntercalibration_Stat147: 2.12551162e-08 + syst_JES_EtaIntercalibration_Stat148: 4.82695433e-07 + syst_JES_EtaIntercalibration_Stat149: 4.01068152e-07 + syst_JES_EtaIntercalibration_Stat15: 2.31697033e-20 + syst_JES_EtaIntercalibration_Stat150: 2.25549465e-07 + syst_JES_EtaIntercalibration_Stat151: 2.21432166e-08 + syst_JES_EtaIntercalibration_Stat152: 1.27486281e-07 + syst_JES_EtaIntercalibration_Stat153: 1.63003018e-07 + syst_JES_EtaIntercalibration_Stat154: 3.64202476e-10 + syst_JES_EtaIntercalibration_Stat155: 3.23986635e-07 + syst_JES_EtaIntercalibration_Stat156: 2.72628720e-07 + syst_JES_EtaIntercalibration_Stat157: 8.53774213e-08 + syst_JES_EtaIntercalibration_Stat158: 3.25378914e-07 + syst_JES_EtaIntercalibration_Stat159: 7.93871889e-08 + syst_JES_EtaIntercalibration_Stat16: 4.34889916e-21 + syst_JES_EtaIntercalibration_Stat160: 2.92516892e-08 + syst_JES_EtaIntercalibration_Stat161: 1.77868420e-08 + syst_JES_EtaIntercalibration_Stat162: 1.18219187e-08 + syst_JES_EtaIntercalibration_Stat163: 4.69074091e-08 + syst_JES_EtaIntercalibration_Stat164: 8.71159848e-08 + syst_JES_EtaIntercalibration_Stat165: 2.31946879e-07 + syst_JES_EtaIntercalibration_Stat166: 5.52075502e-07 + syst_JES_EtaIntercalibration_Stat167: 2.45070128e-07 + syst_JES_EtaIntercalibration_Stat168: 4.71776586e-07 + syst_JES_EtaIntercalibration_Stat169: 1.27965142e-07 + syst_JES_EtaIntercalibration_Stat17: 1.85502641e-10 + syst_JES_EtaIntercalibration_Stat170: 5.47436012e-07 + syst_JES_EtaIntercalibration_Stat171: 7.28780105e-08 + syst_JES_EtaIntercalibration_Stat172: 8.56438406e-09 + syst_JES_EtaIntercalibration_Stat173: 1.80613017e-07 + syst_JES_EtaIntercalibration_Stat174: 4.36450000e-07 + syst_JES_EtaIntercalibration_Stat175: 3.38356222e-07 + syst_JES_EtaIntercalibration_Stat176: 1.53439647e-07 + syst_JES_EtaIntercalibration_Stat177: 1.16874317e-06 + syst_JES_EtaIntercalibration_Stat178: 4.45949764e-08 + syst_JES_EtaIntercalibration_Stat179: 2.32441720e-07 + syst_JES_EtaIntercalibration_Stat18: 3.43633991e-22 + syst_JES_EtaIntercalibration_Stat180: 2.74824049e-08 + syst_JES_EtaIntercalibration_Stat181: 3.62081355e-08 + syst_JES_EtaIntercalibration_Stat182: 1.15925671e-06 + syst_JES_EtaIntercalibration_Stat183: 1.20467574e-06 + syst_JES_EtaIntercalibration_Stat184: 2.28024489e-08 + syst_JES_EtaIntercalibration_Stat185: 2.52421038e-06 + syst_JES_EtaIntercalibration_Stat186: 1.12179721e-06 + syst_JES_EtaIntercalibration_Stat187: 8.81800284e-07 + syst_JES_EtaIntercalibration_Stat188: 3.11715925e-07 + syst_JES_EtaIntercalibration_Stat189: 2.22366283e-07 + syst_JES_EtaIntercalibration_Stat19: 2.27469688e-21 + syst_JES_EtaIntercalibration_Stat190: 5.57787511e-08 + syst_JES_EtaIntercalibration_Stat191: 5.42234442e-07 + syst_JES_EtaIntercalibration_Stat192: 6.29400929e-07 + syst_JES_EtaIntercalibration_Stat193: 1.00414798e-06 + syst_JES_EtaIntercalibration_Stat194: 6.18861754e-11 + syst_JES_EtaIntercalibration_Stat195: 4.62823106e-07 + syst_JES_EtaIntercalibration_Stat196: 1.19242726e-06 + syst_JES_EtaIntercalibration_Stat197: 1.00318639e-06 + syst_JES_EtaIntercalibration_Stat198: 2.02929840e-06 + syst_JES_EtaIntercalibration_Stat199: 4.39146513e-06 + syst_JES_EtaIntercalibration_Stat2: 3.79589410e-22 + syst_JES_EtaIntercalibration_Stat20: 2.69266262e-22 + syst_JES_EtaIntercalibration_Stat200: 2.91334460e-06 + syst_JES_EtaIntercalibration_Stat201: 2.73463233e-06 + syst_JES_EtaIntercalibration_Stat202: 1.50514758e-06 + syst_JES_EtaIntercalibration_Stat203: 3.54224063e-07 + syst_JES_EtaIntercalibration_Stat204: 6.44418426e-08 + syst_JES_EtaIntercalibration_Stat205: 2.53596955e-07 + syst_JES_EtaIntercalibration_Stat206: 4.94880097e-07 + syst_JES_EtaIntercalibration_Stat207: 1.57896824e-06 + syst_JES_EtaIntercalibration_Stat208: 1.83159944e-06 + syst_JES_EtaIntercalibration_Stat209: 1.49201522e-06 + syst_JES_EtaIntercalibration_Stat21: 2.69266262e-22 + syst_JES_EtaIntercalibration_Stat210: 1.72634723e-06 + syst_JES_EtaIntercalibration_Stat211: 2.57431855e-06 + syst_JES_EtaIntercalibration_Stat212: 2.49755335e-06 + syst_JES_EtaIntercalibration_Stat213: 2.41982562e-06 + syst_JES_EtaIntercalibration_Stat214: 2.23961085e-06 + syst_JES_EtaIntercalibration_Stat215: 1.94812596e-06 + syst_JES_EtaIntercalibration_Stat216: 1.03077996e-06 + syst_JES_EtaIntercalibration_Stat217: 5.17221055e-08 + syst_JES_EtaIntercalibration_Stat218: 4.70112471e-07 + syst_JES_EtaIntercalibration_Stat219: 2.07546963e-07 + syst_JES_EtaIntercalibration_Stat22: 2.69266262e-22 + syst_JES_EtaIntercalibration_Stat220: 2.82585218e-06 + syst_JES_EtaIntercalibration_Stat221: 1.62340277e-06 + syst_JES_EtaIntercalibration_Stat222: 7.24170443e-07 + syst_JES_EtaIntercalibration_Stat223: 2.46663232e-06 + syst_JES_EtaIntercalibration_Stat224: 4.11512901e-06 + syst_JES_EtaIntercalibration_Stat225: 4.42078508e-06 + syst_JES_EtaIntercalibration_Stat226: 3.52625240e-06 + syst_JES_EtaIntercalibration_Stat227: 3.77001657e-06 + syst_JES_EtaIntercalibration_Stat228: 2.11575944e-06 + syst_JES_EtaIntercalibration_Stat229: 2.08654763e-07 + syst_JES_EtaIntercalibration_Stat23: 3.79589410e-22 + syst_JES_EtaIntercalibration_Stat230: 7.12219292e-07 + syst_JES_EtaIntercalibration_Stat231: 2.47396867e-06 + syst_JES_EtaIntercalibration_Stat232: 3.17484913e-06 + syst_JES_EtaIntercalibration_Stat233: 5.36192808e-06 + syst_JES_EtaIntercalibration_Stat234: 2.76002910e-06 + syst_JES_EtaIntercalibration_Stat235: 4.04101980e-06 + syst_JES_EtaIntercalibration_Stat236: 9.36540277e-07 + syst_JES_EtaIntercalibration_Stat237: 6.60430973e-07 + syst_JES_EtaIntercalibration_Stat238: 4.44387610e-07 + syst_JES_EtaIntercalibration_Stat239: 3.25643897e-07 + syst_JES_EtaIntercalibration_Stat24: 9.53962809e-18 + syst_JES_EtaIntercalibration_Stat240: 3.52872991e-08 + syst_JES_EtaIntercalibration_Stat241: 2.66853974e-08 + syst_JES_EtaIntercalibration_Stat242: 4.54467327e-07 + syst_JES_EtaIntercalibration_Stat243: 8.60523755e-08 + syst_JES_EtaIntercalibration_Stat244: 1.20333817e-07 + syst_JES_EtaIntercalibration_Stat245: 1.17077123e-06 + syst_JES_EtaIntercalibration_Stat25: 2.36361258e-19 + syst_JES_EtaIntercalibration_Stat26: 1.51775218e-19 + syst_JES_EtaIntercalibration_Stat27: 2.99384982e-07 + syst_JES_EtaIntercalibration_Stat28: 2.82145543e-19 + syst_JES_EtaIntercalibration_Stat29: 1.41930526e-18 + syst_JES_EtaIntercalibration_Stat3: 3.79589410e-22 + syst_JES_EtaIntercalibration_Stat30: 1.58676092e-18 + syst_JES_EtaIntercalibration_Stat31: 5.40059578e-18 + syst_JES_EtaIntercalibration_Stat32: 2.45368458e-20 + syst_JES_EtaIntercalibration_Stat33: 2.99384982e-07 + syst_JES_EtaIntercalibration_Stat34: 2.99384982e-07 + syst_JES_EtaIntercalibration_Stat35: 1.97020779e-08 + syst_JES_EtaIntercalibration_Stat36: 1.67316108e-08 + syst_JES_EtaIntercalibration_Stat37: 2.64900402e-18 + syst_JES_EtaIntercalibration_Stat38: 1.85242834e-10 + syst_JES_EtaIntercalibration_Stat39: 6.78764107e-18 + syst_JES_EtaIntercalibration_Stat4: 4.36540086e-21 + syst_JES_EtaIntercalibration_Stat40: 4.52384998e-17 + syst_JES_EtaIntercalibration_Stat41: 3.57515507e-18 + syst_JES_EtaIntercalibration_Stat42: 4.40674930e-21 + syst_JES_EtaIntercalibration_Stat43: 2.69266262e-22 + syst_JES_EtaIntercalibration_Stat44: 2.69266262e-22 + syst_JES_EtaIntercalibration_Stat45: 1.02045292e-18 + syst_JES_EtaIntercalibration_Stat46: 9.90550141e-18 + syst_JES_EtaIntercalibration_Stat47: 4.93594497e-17 + syst_JES_EtaIntercalibration_Stat48: 6.89900471e-17 + syst_JES_EtaIntercalibration_Stat49: 2.99384982e-07 + syst_JES_EtaIntercalibration_Stat5: 1.01835093e-20 + syst_JES_EtaIntercalibration_Stat50: 4.40388540e-16 + syst_JES_EtaIntercalibration_Stat51: 2.96621230e-16 + syst_JES_EtaIntercalibration_Stat52: 1.40839200e-16 + syst_JES_EtaIntercalibration_Stat53: 1.60318359e-16 + syst_JES_EtaIntercalibration_Stat54: 2.45282829e-14 + syst_JES_EtaIntercalibration_Stat55: 2.99384982e-07 + syst_JES_EtaIntercalibration_Stat56: 1.72945273e-08 + syst_JES_EtaIntercalibration_Stat57: 1.72858671e-08 + syst_JES_EtaIntercalibration_Stat58: 3.80877973e-08 + syst_JES_EtaIntercalibration_Stat59: 1.56950398e-17 + syst_JES_EtaIntercalibration_Stat6: 1.01610315e-20 + syst_JES_EtaIntercalibration_Stat60: 4.94893700e-18 + syst_JES_EtaIntercalibration_Stat61: 4.34019501e-17 + syst_JES_EtaIntercalibration_Stat62: 4.76290189e-17 + syst_JES_EtaIntercalibration_Stat63: 5.89127801e-18 + syst_JES_EtaIntercalibration_Stat64: 7.53442101e-22 + syst_JES_EtaIntercalibration_Stat65: 2.69266262e-22 + syst_JES_EtaIntercalibration_Stat66: 2.69266262e-22 + syst_JES_EtaIntercalibration_Stat67: 1.23034231e-17 + syst_JES_EtaIntercalibration_Stat68: 4.96710301e-16 + syst_JES_EtaIntercalibration_Stat69: 6.36528673e-08 + syst_JES_EtaIntercalibration_Stat7: 2.69266262e-22 + syst_JES_EtaIntercalibration_Stat70: 2.99384985e-07 + syst_JES_EtaIntercalibration_Stat71: 2.99384984e-07 + syst_JES_EtaIntercalibration_Stat72: 2.99384982e-07 + syst_JES_EtaIntercalibration_Stat73: 5.06711467e-08 + syst_JES_EtaIntercalibration_Stat74: 2.51231140e-11 + syst_JES_EtaIntercalibration_Stat75: 2.44266657e-14 + syst_JES_EtaIntercalibration_Stat76: 2.43005176e-14 + syst_JES_EtaIntercalibration_Stat77: 2.99384982e-07 + syst_JES_EtaIntercalibration_Stat78: 1.80306489e-08 + syst_JES_EtaIntercalibration_Stat79: 2.99384982e-07 + syst_JES_EtaIntercalibration_Stat8: 1.64891237e-22 + syst_JES_EtaIntercalibration_Stat80: 1.74590715e-08 + syst_JES_EtaIntercalibration_Stat81: 2.31627399e-15 + syst_JES_EtaIntercalibration_Stat82: 5.06795553e-08 + syst_JES_EtaIntercalibration_Stat83: 4.24375811e-15 + syst_JES_EtaIntercalibration_Stat84: 4.97824435e-14 + syst_JES_EtaIntercalibration_Stat85: 6.63572956e-15 + syst_JES_EtaIntercalibration_Stat86: 3.28268305e-18 + syst_JES_EtaIntercalibration_Stat87: 1.64891237e-22 + syst_JES_EtaIntercalibration_Stat88: 1.42727833e-18 + syst_JES_EtaIntercalibration_Stat89: 1.32813458e-14 + syst_JES_EtaIntercalibration_Stat9: 2.29327212e-20 + syst_JES_EtaIntercalibration_Stat90: 6.36528780e-08 + syst_JES_EtaIntercalibration_Stat91: 2.99384979e-07 + syst_JES_EtaIntercalibration_Stat92: 2.99384970e-07 + syst_JES_EtaIntercalibration_Stat93: 2.99384982e-07 + syst_JES_EtaIntercalibration_Stat94: 1.89203097e-15 + syst_JES_EtaIntercalibration_Stat95: 2.52270605e-11 + syst_JES_EtaIntercalibration_Stat96: 2.52092907e-11 + syst_JES_EtaIntercalibration_Stat97: 2.42728461e-14 + syst_JES_EtaIntercalibration_Stat98: 2.99384982e-07 + syst_JES_EtaIntercalibration_Stat99: 1.80707235e-08 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.12194797e-04 + syst_JES_Flavour_Comp: 3.09083496e-04 + syst_JES_Flavour_Response: 2.73053420e-05 + syst_JES_Gjet_Generator: 4.14754539e-04 + syst_JES_Gjet_OOC: 3.41641581e-04 + syst_JES_Gjet_Purity: 6.98473256e-05 + syst_JES_Gjet_Stat1: 1.48263549e-18 + syst_JES_Gjet_Stat10: 6.66576678e-06 + syst_JES_Gjet_Stat11: 7.91137523e-06 + syst_JES_Gjet_Stat12: 2.34705624e-05 + syst_JES_Gjet_Stat13: 7.82190309e-05 + syst_JES_Gjet_Stat14: 1.76508435e-04 + syst_JES_Gjet_Stat15: 1.22094145e-04 + syst_JES_Gjet_Stat2: 9.58516917e-07 + syst_JES_Gjet_Stat3: 1.23476372e-18 + syst_JES_Gjet_Stat4: 7.25271530e-16 + syst_JES_Gjet_Stat5: 3.60119900e-17 + syst_JES_Gjet_Stat6: 2.05719250e-06 + syst_JES_Gjet_Stat7: 2.79251513e-06 + syst_JES_Gjet_Stat8: 1.03290690e-06 + syst_JES_Gjet_Stat9: 3.59388606e-06 + syst_JES_Gjet_Veto: 3.32691099e-04 + syst_JES_Gjet_dPhi: 3.26989021e-05 + syst_JES_LArESZee: 6.39324822e-04 + syst_JES_LArEsmear: 5.22649660e-05 + syst_JES_LAr_JVT: 6.32503739e-05 + syst_JES_MJB_Alpha: 3.64473356e-06 + syst_JES_MJB_Asym: 5.57356535e-05 + syst_JES_MJB_Beta: 3.58418140e-06 + syst_JES_MJB_Fragmentation: 4.43876593e-05 syst_JES_MJB_Stat1: 0.0 - syst_JES_MJB_Stat10: 2.308223721825941e-07 - syst_JES_MJB_Stat11: 8.492632982032133e-07 - syst_JES_MJB_Stat12: 5.098432773902192e-06 - syst_JES_MJB_Stat13: 1.0182346389708022e-07 - syst_JES_MJB_Stat14: 1.1120971349999065e-07 - syst_JES_MJB_Stat15: 2.5310517022919544e-07 - syst_JES_MJB_Stat16: 1.4043699325676265e-06 - syst_JES_MJB_Stat2: 1.0778552175501123e-07 - syst_JES_MJB_Stat3: 1.4479944751275815e-06 - syst_JES_MJB_Stat4: 2.1035688613940413e-08 - syst_JES_MJB_Stat5: 1.819302841750103e-07 + syst_JES_MJB_Stat10: 2.30822372e-07 + syst_JES_MJB_Stat11: 8.49263298e-07 + syst_JES_MJB_Stat12: 5.09843277e-06 + syst_JES_MJB_Stat13: 1.01823464e-07 + syst_JES_MJB_Stat14: 1.11209713e-07 + syst_JES_MJB_Stat15: 2.53105170e-07 + syst_JES_MJB_Stat16: 1.40436993e-06 + syst_JES_MJB_Stat2: 1.07785522e-07 + syst_JES_MJB_Stat3: 1.44799448e-06 + syst_JES_MJB_Stat4: 2.10356886e-08 + syst_JES_MJB_Stat5: 1.81930284e-07 syst_JES_MJB_Stat6: 0.0 syst_JES_MJB_Stat7: 0.0 syst_JES_MJB_Stat8: 0.0 - syst_JES_MJB_Stat9: 1.317224639156131e-06 - syst_JES_MJB_Threshold: 4.060559167159124e-05 - syst_JES_Pileup_MuOffset: 7.838226011030813e-05 - syst_JES_Pileup_NPVOffset: 8.101498796519073e-05 - syst_JES_Pileup_Pt_term: 6.729846710735692e-05 - syst_JES_Pileup_Rho_topology: 0.00011894907271601575 - syst_JES_PunchThrough_MC15: 6.755725349657134e-05 - syst_JES_SingleParticle_HighPt: 2.997425687152227e-08 - syst_JES_Zjet_MC: 0.00018391201700813356 - syst_JES_Zjet_MuScale: 1.2055899831617711e-05 - syst_JES_Zjet_MuSmearID: 2.2274341179931673e-06 - syst_JES_Zjet_MuSmearMS: 4.90698998878131e-05 - syst_JES_Zjet_OOC: 9.718200180588997e-05 - syst_JES_Zjet_Stat1: 5.471500593986991e-06 - syst_JES_Zjet_Stat10: 6.8311570030266476e-06 - syst_JES_Zjet_Stat11: 9.440320439476617e-06 - syst_JES_Zjet_Stat12: 2.97567572157989e-05 - syst_JES_Zjet_Stat13: 5.133092927271043e-05 + syst_JES_MJB_Stat9: 1.31722464e-06 + syst_JES_MJB_Threshold: 4.06055917e-05 + syst_JES_Pileup_MuOffset: 7.83822601e-05 + syst_JES_Pileup_NPVOffset: 8.10149880e-05 + syst_JES_Pileup_Pt_term: 6.72984671e-05 + syst_JES_Pileup_Rho_topology: 1.18949073e-04 + syst_JES_PunchThrough_MC15: 6.75572535e-05 + syst_JES_SingleParticle_HighPt: 2.99742569e-08 + syst_JES_Zjet_MC: 1.83912017e-04 + syst_JES_Zjet_MuScale: 1.20558998e-05 + syst_JES_Zjet_MuSmearID: 2.22743412e-06 + syst_JES_Zjet_MuSmearMS: 4.90698999e-05 + syst_JES_Zjet_OOC: 9.71820018e-05 + syst_JES_Zjet_Stat1: 5.47150059e-06 + syst_JES_Zjet_Stat10: 6.83115700e-06 + syst_JES_Zjet_Stat11: 9.44032044e-06 + syst_JES_Zjet_Stat12: 2.97567572e-05 + syst_JES_Zjet_Stat13: 5.13309293e-05 syst_JES_Zjet_Stat2: 0.0 - syst_JES_Zjet_Stat3: 1.8290456527927038e-06 - syst_JES_Zjet_Stat4: 4.950201208030666e-07 - syst_JES_Zjet_Stat5: 2.0273654699998807e-06 - syst_JES_Zjet_Stat6: 1.4152693763026175e-06 - syst_JES_Zjet_Stat7: 1.8494752417915738e-06 - syst_JES_Zjet_Stat8: 1.916257485308277e-06 - syst_JES_Zjet_Stat9: 3.7138897398818937e-06 - syst_JES_Zjet_Veto: 2.262690433974564e-05 - syst_JES_Zjet_dPhi: 1.7210238231936246e-05 + syst_JES_Zjet_Stat3: 1.82904565e-06 + syst_JES_Zjet_Stat4: 4.95020121e-07 + syst_JES_Zjet_Stat5: 2.02736547e-06 + syst_JES_Zjet_Stat6: 1.41526938e-06 + syst_JES_Zjet_Stat7: 1.84947524e-06 + syst_JES_Zjet_Stat8: 1.91625749e-06 + syst_JES_Zjet_Stat9: 3.71388974e-06 + syst_JES_Zjet_Veto: 2.26269043e-05 + syst_JES_Zjet_dPhi: 1.72102382e-05 syst_PRW: 0.0 - syst_Unfolding_bias: 5.553e-18 - syst_cleaning: 0.0001634189936941236 - syst_lumi: 0.0003316 -- stat: 0.00014259 - syst_JER_CROSS_CALIB_FORWARD: 2.005e-15 + syst_Unfolding_bias: 5.55300000e-18 + syst_cleaning: 1.63418994e-04 + syst_lumi: 3.31600000e-04 +- stat: 1.42590000e-04 + syst_JER_CROSS_CALIB_FORWARD: 2.00500000e-15 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 2.259168652402914e-05 - syst_JER_NP1: 1.1018840683120889e-05 - syst_JER_NP2: 1.4156661793254325e-05 - syst_JER_NP3: 2.288122101200021e-06 - syst_JER_NP4: 5.799772129144385e-17 + syst_JER_NP0: 2.25916865e-05 + syst_JER_NP1: 1.10188407e-05 + syst_JER_NP2: 1.41566618e-05 + syst_JER_NP3: 2.28812210e-06 + syst_JER_NP4: 5.79977213e-17 syst_JER_NP5: 0.0 syst_JER_NP6: 0.0 - syst_JER_NP7: 2.5807557032776268e-12 - syst_JER_NP8: 4.273151851970627e-07 - syst_JES_EtaIntercalibration_Modelling: 0.00041208160608670704 - syst_JES_EtaIntercalibration_NonClosure: 1.5030163106234077e-05 - syst_JES_EtaIntercalibration_Stat0: 9.278655182729877e-23 - syst_JES_EtaIntercalibration_Stat1: 9.278655182729877e-23 - syst_JES_EtaIntercalibration_Stat10: 3.1255446406466502e-21 - syst_JES_EtaIntercalibration_Stat100: 1.1907849301419421e-07 - syst_JES_EtaIntercalibration_Stat101: 8.602230306992598e-09 - syst_JES_EtaIntercalibration_Stat102: 2.487224959750285e-08 - syst_JES_EtaIntercalibration_Stat103: 2.4898108852241668e-08 - syst_JES_EtaIntercalibration_Stat104: 1.9810339915496153e-12 - syst_JES_EtaIntercalibration_Stat105: 3.5791072517216846e-15 - syst_JES_EtaIntercalibration_Stat106: 2.7788924052578936e-16 - syst_JES_EtaIntercalibration_Stat107: 2.8912142202733353e-19 - syst_JES_EtaIntercalibration_Stat108: 3.731428814810755e-18 - syst_JES_EtaIntercalibration_Stat109: 3.960406114576569e-09 - syst_JES_EtaIntercalibration_Stat11: 1.190784930203603e-07 - syst_JES_EtaIntercalibration_Stat110: 3.965764767443979e-09 - syst_JES_EtaIntercalibration_Stat111: 1.1891356258639832e-07 - syst_JES_EtaIntercalibration_Stat112: 1.2329350508745382e-07 - syst_JES_EtaIntercalibration_Stat113: 9.929845267439641e-08 - syst_JES_EtaIntercalibration_Stat114: 6.646895849367061e-10 - syst_JES_EtaIntercalibration_Stat115: 3.6420685478859397e-13 - syst_JES_EtaIntercalibration_Stat116: 4.2501630164824267e-11 - syst_JES_EtaIntercalibration_Stat117: 2.4890341314453683e-14 - syst_JES_EtaIntercalibration_Stat118: 1.1907886469423633e-07 - syst_JES_EtaIntercalibration_Stat119: 1.234731915963947e-07 - syst_JES_EtaIntercalibration_Stat12: 4.436648143587697e-09 - syst_JES_EtaIntercalibration_Stat120: 9.705453634918685e-08 - syst_JES_EtaIntercalibration_Stat121: 1.1321687274872064e-07 - syst_JES_EtaIntercalibration_Stat122: 2.4759562892491264e-08 - syst_JES_EtaIntercalibration_Stat123: 3.2772864736321116e-11 - syst_JES_EtaIntercalibration_Stat124: 3.145858907754764e-13 - syst_JES_EtaIntercalibration_Stat125: 3.9363711093690084e-14 - syst_JES_EtaIntercalibration_Stat126: 6.79032552607016e-15 - syst_JES_EtaIntercalibration_Stat127: 5.589327630139484e-16 - syst_JES_EtaIntercalibration_Stat128: 6.331952722654521e-13 - syst_JES_EtaIntercalibration_Stat129: 6.4325293835318e-08 - syst_JES_EtaIntercalibration_Stat13: 1.4185496113989123e-08 - syst_JES_EtaIntercalibration_Stat130: 1.6590055665970505e-07 - syst_JES_EtaIntercalibration_Stat131: 1.1894025517040057e-07 - syst_JES_EtaIntercalibration_Stat132: 1.083007454960491e-07 - syst_JES_EtaIntercalibration_Stat133: 1.5204930146172983e-07 - syst_JES_EtaIntercalibration_Stat134: 4.0636503967338286e-08 - syst_JES_EtaIntercalibration_Stat135: 2.69857440280975e-11 - syst_JES_EtaIntercalibration_Stat136: 4.084717455038965e-12 - syst_JES_EtaIntercalibration_Stat137: 1.1905251623532464e-07 - syst_JES_EtaIntercalibration_Stat138: 1.1836976303093624e-07 - syst_JES_EtaIntercalibration_Stat139: 2.3492106653086692e-08 - syst_JES_EtaIntercalibration_Stat14: 1.4644489577994877e-08 - syst_JES_EtaIntercalibration_Stat140: 3.3836615962703773e-08 - syst_JES_EtaIntercalibration_Stat141: 3.6443037743854454e-08 - syst_JES_EtaIntercalibration_Stat142: 2.6823800864515826e-07 - syst_JES_EtaIntercalibration_Stat143: 2.6776033699373774e-07 - syst_JES_EtaIntercalibration_Stat144: 1.2196870073550632e-08 - syst_JES_EtaIntercalibration_Stat145: 1.4031667840809233e-08 - syst_JES_EtaIntercalibration_Stat146: 3.811839237831916e-09 - syst_JES_EtaIntercalibration_Stat147: 1.011836541888066e-08 - syst_JES_EtaIntercalibration_Stat148: 1.6564349277891965e-07 - syst_JES_EtaIntercalibration_Stat149: 9.744794199981854e-08 - syst_JES_EtaIntercalibration_Stat15: 3.176054388557444e-21 - syst_JES_EtaIntercalibration_Stat150: 1.2411556580461614e-07 - syst_JES_EtaIntercalibration_Stat151: 2.3462577692998696e-08 - syst_JES_EtaIntercalibration_Stat152: 2.9678669120262116e-08 - syst_JES_EtaIntercalibration_Stat153: 6.381991536150765e-08 - syst_JES_EtaIntercalibration_Stat154: 3.284290572939611e-11 - syst_JES_EtaIntercalibration_Stat155: 1.2025269031501957e-07 - syst_JES_EtaIntercalibration_Stat156: 1.1129163984774418e-07 - syst_JES_EtaIntercalibration_Stat157: 5.7103873353740205e-08 - syst_JES_EtaIntercalibration_Stat158: 1.3337576021925534e-07 - syst_JES_EtaIntercalibration_Stat159: 1.936560977816087e-08 - syst_JES_EtaIntercalibration_Stat16: 8.116507734703393e-22 - syst_JES_EtaIntercalibration_Stat160: 5.182150770433064e-09 - syst_JES_EtaIntercalibration_Stat161: 3.394347729314131e-09 - syst_JES_EtaIntercalibration_Stat162: 2.465039404857456e-10 - syst_JES_EtaIntercalibration_Stat163: 1.1851374286137578e-08 - syst_JES_EtaIntercalibration_Stat164: 1.3277187126797602e-08 - syst_JES_EtaIntercalibration_Stat165: 1.1196869964414162e-07 - syst_JES_EtaIntercalibration_Stat166: 2.3088669840421732e-07 - syst_JES_EtaIntercalibration_Stat167: 1.372652916800165e-07 - syst_JES_EtaIntercalibration_Stat168: 7.904339362021344e-08 - syst_JES_EtaIntercalibration_Stat169: 1.0783018547698043e-07 - syst_JES_EtaIntercalibration_Stat17: 1.6333239116145275e-11 - syst_JES_EtaIntercalibration_Stat170: 1.9116091176807041e-07 - syst_JES_EtaIntercalibration_Stat171: 1.918218811163106e-08 - syst_JES_EtaIntercalibration_Stat172: 1.5937013261194835e-09 - syst_JES_EtaIntercalibration_Stat173: 9.60674760819186e-08 - syst_JES_EtaIntercalibration_Stat174: 1.5152308915393061e-07 - syst_JES_EtaIntercalibration_Stat175: 6.127288368438358e-08 - syst_JES_EtaIntercalibration_Stat176: 7.359841438509392e-08 - syst_JES_EtaIntercalibration_Stat177: 4.990915153306055e-07 - syst_JES_EtaIntercalibration_Stat178: 3.446034931627943e-08 - syst_JES_EtaIntercalibration_Stat179: 1.2480128875536502e-07 - syst_JES_EtaIntercalibration_Stat18: 1.1839052949877369e-22 - syst_JES_EtaIntercalibration_Stat180: 9.770338517676857e-08 - syst_JES_EtaIntercalibration_Stat181: 9.935014984890563e-09 - syst_JES_EtaIntercalibration_Stat182: 3.263485784663387e-07 - syst_JES_EtaIntercalibration_Stat183: 8.324396237565821e-07 - syst_JES_EtaIntercalibration_Stat184: 1.1192512318529259e-08 - syst_JES_EtaIntercalibration_Stat185: 6.561655488518123e-07 - syst_JES_EtaIntercalibration_Stat186: 5.454746808972897e-07 - syst_JES_EtaIntercalibration_Stat187: 4.786579049801642e-07 - syst_JES_EtaIntercalibration_Stat188: 5.3002348162605026e-08 - syst_JES_EtaIntercalibration_Stat189: 4.4906641858415556e-08 - syst_JES_EtaIntercalibration_Stat19: 3.8056673012101312e-22 - syst_JES_EtaIntercalibration_Stat190: 4.4242566324751104e-08 - syst_JES_EtaIntercalibration_Stat191: 2.2851708907650652e-07 - syst_JES_EtaIntercalibration_Stat192: 3.0893509026978464e-07 - syst_JES_EtaIntercalibration_Stat193: 4.923137896707749e-07 - syst_JES_EtaIntercalibration_Stat194: 1.4583867799729996e-07 - syst_JES_EtaIntercalibration_Stat195: 1.5634358573347356e-07 - syst_JES_EtaIntercalibration_Stat196: 2.4774823410066926e-07 - syst_JES_EtaIntercalibration_Stat197: 3.453724810621136e-07 - syst_JES_EtaIntercalibration_Stat198: 7.761285508857409e-07 - syst_JES_EtaIntercalibration_Stat199: 1.58612978267858e-06 - syst_JES_EtaIntercalibration_Stat2: 1.3081849439203925e-22 - syst_JES_EtaIntercalibration_Stat20: 9.278655182729877e-23 - syst_JES_EtaIntercalibration_Stat200: 1.443762413799445e-06 - syst_JES_EtaIntercalibration_Stat201: 9.421242433989267e-07 - syst_JES_EtaIntercalibration_Stat202: 8.141402013781166e-07 - syst_JES_EtaIntercalibration_Stat203: 1.8645726509578542e-07 - syst_JES_EtaIntercalibration_Stat204: 1.7845012608569375e-08 - syst_JES_EtaIntercalibration_Stat205: 9.810170691685237e-08 - syst_JES_EtaIntercalibration_Stat206: 2.393107642940451e-07 - syst_JES_EtaIntercalibration_Stat207: 9.287140517941999e-07 - syst_JES_EtaIntercalibration_Stat208: 9.95765775672171e-07 - syst_JES_EtaIntercalibration_Stat209: 1.096809682670608e-06 - syst_JES_EtaIntercalibration_Stat21: 9.278655182729877e-23 - syst_JES_EtaIntercalibration_Stat210: 9.267590665863484e-07 - syst_JES_EtaIntercalibration_Stat211: 1.582241764080319e-06 - syst_JES_EtaIntercalibration_Stat212: 1.0984817465483893e-06 - syst_JES_EtaIntercalibration_Stat213: 1.6102106787622543e-06 - syst_JES_EtaIntercalibration_Stat214: 8.663486639338692e-07 - syst_JES_EtaIntercalibration_Stat215: 1.134936170011336e-06 - syst_JES_EtaIntercalibration_Stat216: 4.850221574649967e-07 - syst_JES_EtaIntercalibration_Stat217: 3.4892077539177863e-08 - syst_JES_EtaIntercalibration_Stat218: 1.8692573992564536e-07 - syst_JES_EtaIntercalibration_Stat219: 9.450959571916494e-08 - syst_JES_EtaIntercalibration_Stat22: 9.278655182729877e-23 - syst_JES_EtaIntercalibration_Stat220: 1.1333177610449772e-06 - syst_JES_EtaIntercalibration_Stat221: 8.579999592074583e-07 - syst_JES_EtaIntercalibration_Stat222: 3.289770701355947e-07 - syst_JES_EtaIntercalibration_Stat223: 1.332112498064634e-06 - syst_JES_EtaIntercalibration_Stat224: 2.896348390646402e-06 - syst_JES_EtaIntercalibration_Stat225: 2.8579994314205173e-06 - syst_JES_EtaIntercalibration_Stat226: 2.6320366638783737e-06 - syst_JES_EtaIntercalibration_Stat227: 2.303399824172955e-06 - syst_JES_EtaIntercalibration_Stat228: 1.087025266495678e-06 - syst_JES_EtaIntercalibration_Stat229: 9.513969768188252e-08 - syst_JES_EtaIntercalibration_Stat23: 1.3081849439203925e-22 - syst_JES_EtaIntercalibration_Stat230: 2.2620583548930308e-07 - syst_JES_EtaIntercalibration_Stat231: 1.574629061080736e-06 - syst_JES_EtaIntercalibration_Stat232: 1.9831981747011297e-06 - syst_JES_EtaIntercalibration_Stat233: 3.545647014297955e-06 - syst_JES_EtaIntercalibration_Stat234: 1.8113659900748938e-06 - syst_JES_EtaIntercalibration_Stat235: 2.197451478417669e-06 - syst_JES_EtaIntercalibration_Stat236: 5.2051454350479e-07 - syst_JES_EtaIntercalibration_Stat237: 4.662680773975417e-07 - syst_JES_EtaIntercalibration_Stat238: 3.5024606707285095e-07 - syst_JES_EtaIntercalibration_Stat239: 6.724473513220197e-08 - syst_JES_EtaIntercalibration_Stat24: 8.742226633987476e-19 - syst_JES_EtaIntercalibration_Stat240: 1.2351590859075604e-08 - syst_JES_EtaIntercalibration_Stat241: 1.2993187137881144e-08 - syst_JES_EtaIntercalibration_Stat242: 2.040852607980302e-07 - syst_JES_EtaIntercalibration_Stat243: 4.240763669297872e-08 - syst_JES_EtaIntercalibration_Stat244: 1.6965467295733537e-08 - syst_JES_EtaIntercalibration_Stat245: 7.846509606187963e-07 - syst_JES_EtaIntercalibration_Stat25: 2.900782933968e-20 - syst_JES_EtaIntercalibration_Stat26: 1.8487083788418334e-20 - syst_JES_EtaIntercalibration_Stat27: 1.1907849302035397e-07 - syst_JES_EtaIntercalibration_Stat28: 3.34069086717104e-20 - syst_JES_EtaIntercalibration_Stat29: 1.536386344641217e-19 - syst_JES_EtaIntercalibration_Stat3: 1.3081849439203925e-22 - syst_JES_EtaIntercalibration_Stat30: 1.7100823245680307e-19 - syst_JES_EtaIntercalibration_Stat31: 4.391615078760887e-19 - syst_JES_EtaIntercalibration_Stat32: 3.388161448337431e-21 - syst_JES_EtaIntercalibration_Stat33: 1.1907849302035926e-07 - syst_JES_EtaIntercalibration_Stat34: 1.19078493020356e-07 - syst_JES_EtaIntercalibration_Stat35: 1.0897197655814563e-08 - syst_JES_EtaIntercalibration_Stat36: 1.4332720432623069e-08 - syst_JES_EtaIntercalibration_Stat37: 3.1472364067543446e-19 - syst_JES_EtaIntercalibration_Stat38: 1.6307258351446948e-11 - syst_JES_EtaIntercalibration_Stat39: 6.647311721798576e-19 - syst_JES_EtaIntercalibration_Stat4: 6.906834072677582e-22 - syst_JES_EtaIntercalibration_Stat40: 4.4199402911387055e-18 - syst_JES_EtaIntercalibration_Stat41: 2.96557369638941e-19 - syst_JES_EtaIntercalibration_Stat42: 6.999093498982565e-22 - syst_JES_EtaIntercalibration_Stat43: 9.278655182729877e-23 - syst_JES_EtaIntercalibration_Stat44: 9.278655182729877e-23 - syst_JES_EtaIntercalibration_Stat45: 1.072126760118877e-19 - syst_JES_EtaIntercalibration_Stat46: 8.853262247894841e-19 - syst_JES_EtaIntercalibration_Stat47: 3.725398770601612e-18 - syst_JES_EtaIntercalibration_Stat48: 6.127513173180454e-18 - syst_JES_EtaIntercalibration_Stat49: 1.1907849302031064e-07 - syst_JES_EtaIntercalibration_Stat5: 1.5131415214959242e-21 - syst_JES_EtaIntercalibration_Stat50: 3.6275633766862023e-17 - syst_JES_EtaIntercalibration_Stat51: 2.1649171877926417e-17 - syst_JES_EtaIntercalibration_Stat52: 1.2585551790346738e-17 - syst_JES_EtaIntercalibration_Stat53: 1.433341313182244e-17 - syst_JES_EtaIntercalibration_Stat54: 1.8431049427880354e-15 - syst_JES_EtaIntercalibration_Stat55: 1.1907849302036163e-07 - syst_JES_EtaIntercalibration_Stat56: 8.491379084101997e-09 - syst_JES_EtaIntercalibration_Stat57: 8.486182931611286e-09 - syst_JES_EtaIntercalibration_Stat58: 2.224819262288416e-08 - syst_JES_EtaIntercalibration_Stat59: 1.614874133640142e-18 - syst_JES_EtaIntercalibration_Stat6: 1.5059742510414979e-21 - syst_JES_EtaIntercalibration_Stat60: 4.2811178689099415e-19 - syst_JES_EtaIntercalibration_Stat61: 4.21454063333123e-18 - syst_JES_EtaIntercalibration_Stat62: 4.542661361996071e-18 - syst_JES_EtaIntercalibration_Stat63: 5.270451092648522e-19 - syst_JES_EtaIntercalibration_Stat64: 1.1810854456812174e-22 - syst_JES_EtaIntercalibration_Stat65: 9.278655182729877e-23 - syst_JES_EtaIntercalibration_Stat66: 9.278655182729877e-23 - syst_JES_EtaIntercalibration_Stat67: 1.2176767625585207e-18 - syst_JES_EtaIntercalibration_Stat68: 4.067235078957202e-17 - syst_JES_EtaIntercalibration_Stat69: 3.962932260101755e-09 - syst_JES_EtaIntercalibration_Stat7: 9.278655182729877e-23 - syst_JES_EtaIntercalibration_Stat70: 1.1907849326042257e-07 - syst_JES_EtaIntercalibration_Stat71: 1.1907849316536184e-07 - syst_JES_EtaIntercalibration_Stat72: 1.1907849300919263e-07 - syst_JES_EtaIntercalibration_Stat73: 2.4872249621503592e-08 - syst_JES_EtaIntercalibration_Stat74: 1.9675872594981984e-12 - syst_JES_EtaIntercalibration_Stat75: 1.8361275878053793e-15 - syst_JES_EtaIntercalibration_Stat76: 1.8264233031798368e-15 - syst_JES_EtaIntercalibration_Stat77: 1.1907849301846863e-07 - syst_JES_EtaIntercalibration_Stat78: 8.850779625586925e-09 - syst_JES_EtaIntercalibration_Stat79: 1.1907849302015726e-07 - syst_JES_EtaIntercalibration_Stat8: 5.681992674229701e-23 - syst_JES_EtaIntercalibration_Stat80: 8.571919394465912e-09 - syst_JES_EtaIntercalibration_Stat81: 1.7001549555910336e-16 - syst_JES_EtaIntercalibration_Stat82: 2.4872907845662114e-08 - syst_JES_EtaIntercalibration_Stat83: 3.239178085564299e-16 - syst_JES_EtaIntercalibration_Stat84: 3.596525226868289e-15 - syst_JES_EtaIntercalibration_Stat85: 5.318427469656796e-16 - syst_JES_EtaIntercalibration_Stat86: 2.694731220727403e-19 - syst_JES_EtaIntercalibration_Stat87: 5.681992674229701e-23 - syst_JES_EtaIntercalibration_Stat88: 1.3968635822799591e-19 - syst_JES_EtaIntercalibration_Stat89: 1.0082502845524022e-15 - syst_JES_EtaIntercalibration_Stat9: 3.1255446406466502e-21 - syst_JES_EtaIntercalibration_Stat90: 3.9629330358013354e-09 - syst_JES_EtaIntercalibration_Stat91: 1.1907849288185398e-07 - syst_JES_EtaIntercalibration_Stat92: 1.1907849213557106e-07 - syst_JES_EtaIntercalibration_Stat93: 1.1907849299778594e-07 - syst_JES_EtaIntercalibration_Stat94: 1.554611472362146e-16 - syst_JES_EtaIntercalibration_Stat95: 1.975382509947355e-12 - syst_JES_EtaIntercalibration_Stat96: 1.9742693080901473e-12 - syst_JES_EtaIntercalibration_Stat97: 1.8429046667692825e-15 - syst_JES_EtaIntercalibration_Stat98: 1.1907849301712946e-07 - syst_JES_EtaIntercalibration_Stat99: 8.869366278333037e-09 - syst_JES_EtaIntercalibration_TotalStat_MJB: 6.445786899207885e-05 - syst_JES_Flavour_Comp: 0.00016692135872919318 - syst_JES_Flavour_Response: 6.190161871873787e-06 - syst_JES_Gjet_Generator: 0.000216189546463283 - syst_JES_Gjet_OOC: 0.00017943435429147898 - syst_JES_Gjet_Purity: 3.320858435706045e-05 - syst_JES_Gjet_Stat1: 2.0161071400101728e-19 - syst_JES_Gjet_Stat10: 3.3176260714553107e-06 - syst_JES_Gjet_Stat11: 3.862947158582422e-06 - syst_JES_Gjet_Stat12: 1.133880790691861e-05 - syst_JES_Gjet_Stat13: 3.81436844149854e-05 - syst_JES_Gjet_Stat14: 9.728177154534142e-05 - syst_JES_Gjet_Stat15: 9.044977100579083e-05 - syst_JES_Gjet_Stat2: 6.475271944096201e-07 - syst_JES_Gjet_Stat3: 1.56445659155983e-19 - syst_JES_Gjet_Stat4: 7.076389316853264e-17 - syst_JES_Gjet_Stat5: 4.356526290520923e-18 - syst_JES_Gjet_Stat6: 1.493234994902008e-06 - syst_JES_Gjet_Stat7: 1.3724631607077839e-06 - syst_JES_Gjet_Stat8: 2.743567312654866e-07 - syst_JES_Gjet_Stat9: 1.753140253944333e-06 - syst_JES_Gjet_Veto: 0.00017799333554939636 - syst_JES_Gjet_dPhi: 1.7232593391593732e-05 - syst_JES_LArESZee: 0.000330227508696656 - syst_JES_LArEsmear: 2.672407528802447e-05 - syst_JES_LAr_JVT: 3.474254020649613e-05 - syst_JES_MJB_Alpha: 2.021272062340941e-06 - syst_JES_MJB_Asym: 3.3795006657788955e-05 - syst_JES_MJB_Beta: 1.7922566780458653e-06 - syst_JES_MJB_Fragmentation: 2.1655546056380104e-05 + syst_JER_NP7: 2.58075570e-12 + syst_JER_NP8: 4.27315185e-07 + syst_JES_EtaIntercalibration_Modelling: 4.12081606e-04 + syst_JES_EtaIntercalibration_NonClosure: 1.50301631e-05 + syst_JES_EtaIntercalibration_Stat0: 9.27865518e-23 + syst_JES_EtaIntercalibration_Stat1: 9.27865518e-23 + syst_JES_EtaIntercalibration_Stat10: 3.12554464e-21 + syst_JES_EtaIntercalibration_Stat100: 1.19078493e-07 + syst_JES_EtaIntercalibration_Stat101: 8.60223031e-09 + syst_JES_EtaIntercalibration_Stat102: 2.48722496e-08 + syst_JES_EtaIntercalibration_Stat103: 2.48981089e-08 + syst_JES_EtaIntercalibration_Stat104: 1.98103399e-12 + syst_JES_EtaIntercalibration_Stat105: 3.57910725e-15 + syst_JES_EtaIntercalibration_Stat106: 2.77889241e-16 + syst_JES_EtaIntercalibration_Stat107: 2.89121422e-19 + syst_JES_EtaIntercalibration_Stat108: 3.73142881e-18 + syst_JES_EtaIntercalibration_Stat109: 3.96040611e-09 + syst_JES_EtaIntercalibration_Stat11: 1.19078493e-07 + syst_JES_EtaIntercalibration_Stat110: 3.96576477e-09 + syst_JES_EtaIntercalibration_Stat111: 1.18913563e-07 + syst_JES_EtaIntercalibration_Stat112: 1.23293505e-07 + syst_JES_EtaIntercalibration_Stat113: 9.92984527e-08 + syst_JES_EtaIntercalibration_Stat114: 6.64689585e-10 + syst_JES_EtaIntercalibration_Stat115: 3.64206855e-13 + syst_JES_EtaIntercalibration_Stat116: 4.25016302e-11 + syst_JES_EtaIntercalibration_Stat117: 2.48903413e-14 + syst_JES_EtaIntercalibration_Stat118: 1.19078865e-07 + syst_JES_EtaIntercalibration_Stat119: 1.23473192e-07 + syst_JES_EtaIntercalibration_Stat12: 4.43664814e-09 + syst_JES_EtaIntercalibration_Stat120: 9.70545363e-08 + syst_JES_EtaIntercalibration_Stat121: 1.13216873e-07 + syst_JES_EtaIntercalibration_Stat122: 2.47595629e-08 + syst_JES_EtaIntercalibration_Stat123: 3.27728647e-11 + syst_JES_EtaIntercalibration_Stat124: 3.14585891e-13 + syst_JES_EtaIntercalibration_Stat125: 3.93637111e-14 + syst_JES_EtaIntercalibration_Stat126: 6.79032553e-15 + syst_JES_EtaIntercalibration_Stat127: 5.58932763e-16 + syst_JES_EtaIntercalibration_Stat128: 6.33195272e-13 + syst_JES_EtaIntercalibration_Stat129: 6.43252938e-08 + syst_JES_EtaIntercalibration_Stat13: 1.41854961e-08 + syst_JES_EtaIntercalibration_Stat130: 1.65900557e-07 + syst_JES_EtaIntercalibration_Stat131: 1.18940255e-07 + syst_JES_EtaIntercalibration_Stat132: 1.08300745e-07 + syst_JES_EtaIntercalibration_Stat133: 1.52049301e-07 + syst_JES_EtaIntercalibration_Stat134: 4.06365040e-08 + syst_JES_EtaIntercalibration_Stat135: 2.69857440e-11 + syst_JES_EtaIntercalibration_Stat136: 4.08471746e-12 + syst_JES_EtaIntercalibration_Stat137: 1.19052516e-07 + syst_JES_EtaIntercalibration_Stat138: 1.18369763e-07 + syst_JES_EtaIntercalibration_Stat139: 2.34921067e-08 + syst_JES_EtaIntercalibration_Stat14: 1.46444896e-08 + syst_JES_EtaIntercalibration_Stat140: 3.38366160e-08 + syst_JES_EtaIntercalibration_Stat141: 3.64430377e-08 + syst_JES_EtaIntercalibration_Stat142: 2.68238009e-07 + syst_JES_EtaIntercalibration_Stat143: 2.67760337e-07 + syst_JES_EtaIntercalibration_Stat144: 1.21968701e-08 + syst_JES_EtaIntercalibration_Stat145: 1.40316678e-08 + syst_JES_EtaIntercalibration_Stat146: 3.81183924e-09 + syst_JES_EtaIntercalibration_Stat147: 1.01183654e-08 + syst_JES_EtaIntercalibration_Stat148: 1.65643493e-07 + syst_JES_EtaIntercalibration_Stat149: 9.74479420e-08 + syst_JES_EtaIntercalibration_Stat15: 3.17605439e-21 + syst_JES_EtaIntercalibration_Stat150: 1.24115566e-07 + syst_JES_EtaIntercalibration_Stat151: 2.34625777e-08 + syst_JES_EtaIntercalibration_Stat152: 2.96786691e-08 + syst_JES_EtaIntercalibration_Stat153: 6.38199154e-08 + syst_JES_EtaIntercalibration_Stat154: 3.28429057e-11 + syst_JES_EtaIntercalibration_Stat155: 1.20252690e-07 + syst_JES_EtaIntercalibration_Stat156: 1.11291640e-07 + syst_JES_EtaIntercalibration_Stat157: 5.71038734e-08 + syst_JES_EtaIntercalibration_Stat158: 1.33375760e-07 + syst_JES_EtaIntercalibration_Stat159: 1.93656098e-08 + syst_JES_EtaIntercalibration_Stat16: 8.11650773e-22 + syst_JES_EtaIntercalibration_Stat160: 5.18215077e-09 + syst_JES_EtaIntercalibration_Stat161: 3.39434773e-09 + syst_JES_EtaIntercalibration_Stat162: 2.46503940e-10 + syst_JES_EtaIntercalibration_Stat163: 1.18513743e-08 + syst_JES_EtaIntercalibration_Stat164: 1.32771871e-08 + syst_JES_EtaIntercalibration_Stat165: 1.11968700e-07 + syst_JES_EtaIntercalibration_Stat166: 2.30886698e-07 + syst_JES_EtaIntercalibration_Stat167: 1.37265292e-07 + syst_JES_EtaIntercalibration_Stat168: 7.90433936e-08 + syst_JES_EtaIntercalibration_Stat169: 1.07830185e-07 + syst_JES_EtaIntercalibration_Stat17: 1.63332391e-11 + syst_JES_EtaIntercalibration_Stat170: 1.91160912e-07 + syst_JES_EtaIntercalibration_Stat171: 1.91821881e-08 + syst_JES_EtaIntercalibration_Stat172: 1.59370133e-09 + syst_JES_EtaIntercalibration_Stat173: 9.60674761e-08 + syst_JES_EtaIntercalibration_Stat174: 1.51523089e-07 + syst_JES_EtaIntercalibration_Stat175: 6.12728837e-08 + syst_JES_EtaIntercalibration_Stat176: 7.35984144e-08 + syst_JES_EtaIntercalibration_Stat177: 4.99091515e-07 + syst_JES_EtaIntercalibration_Stat178: 3.44603493e-08 + syst_JES_EtaIntercalibration_Stat179: 1.24801289e-07 + syst_JES_EtaIntercalibration_Stat18: 1.18390529e-22 + syst_JES_EtaIntercalibration_Stat180: 9.77033852e-08 + syst_JES_EtaIntercalibration_Stat181: 9.93501498e-09 + syst_JES_EtaIntercalibration_Stat182: 3.26348578e-07 + syst_JES_EtaIntercalibration_Stat183: 8.32439624e-07 + syst_JES_EtaIntercalibration_Stat184: 1.11925123e-08 + syst_JES_EtaIntercalibration_Stat185: 6.56165549e-07 + syst_JES_EtaIntercalibration_Stat186: 5.45474681e-07 + syst_JES_EtaIntercalibration_Stat187: 4.78657905e-07 + syst_JES_EtaIntercalibration_Stat188: 5.30023482e-08 + syst_JES_EtaIntercalibration_Stat189: 4.49066419e-08 + syst_JES_EtaIntercalibration_Stat19: 3.80566730e-22 + syst_JES_EtaIntercalibration_Stat190: 4.42425663e-08 + syst_JES_EtaIntercalibration_Stat191: 2.28517089e-07 + syst_JES_EtaIntercalibration_Stat192: 3.08935090e-07 + syst_JES_EtaIntercalibration_Stat193: 4.92313790e-07 + syst_JES_EtaIntercalibration_Stat194: 1.45838678e-07 + syst_JES_EtaIntercalibration_Stat195: 1.56343586e-07 + syst_JES_EtaIntercalibration_Stat196: 2.47748234e-07 + syst_JES_EtaIntercalibration_Stat197: 3.45372481e-07 + syst_JES_EtaIntercalibration_Stat198: 7.76128551e-07 + syst_JES_EtaIntercalibration_Stat199: 1.58612978e-06 + syst_JES_EtaIntercalibration_Stat2: 1.30818494e-22 + syst_JES_EtaIntercalibration_Stat20: 9.27865518e-23 + syst_JES_EtaIntercalibration_Stat200: 1.44376241e-06 + syst_JES_EtaIntercalibration_Stat201: 9.42124243e-07 + syst_JES_EtaIntercalibration_Stat202: 8.14140201e-07 + syst_JES_EtaIntercalibration_Stat203: 1.86457265e-07 + syst_JES_EtaIntercalibration_Stat204: 1.78450126e-08 + syst_JES_EtaIntercalibration_Stat205: 9.81017069e-08 + syst_JES_EtaIntercalibration_Stat206: 2.39310764e-07 + syst_JES_EtaIntercalibration_Stat207: 9.28714052e-07 + syst_JES_EtaIntercalibration_Stat208: 9.95765776e-07 + syst_JES_EtaIntercalibration_Stat209: 1.09680968e-06 + syst_JES_EtaIntercalibration_Stat21: 9.27865518e-23 + syst_JES_EtaIntercalibration_Stat210: 9.26759067e-07 + syst_JES_EtaIntercalibration_Stat211: 1.58224176e-06 + syst_JES_EtaIntercalibration_Stat212: 1.09848175e-06 + syst_JES_EtaIntercalibration_Stat213: 1.61021068e-06 + syst_JES_EtaIntercalibration_Stat214: 8.66348664e-07 + syst_JES_EtaIntercalibration_Stat215: 1.13493617e-06 + syst_JES_EtaIntercalibration_Stat216: 4.85022157e-07 + syst_JES_EtaIntercalibration_Stat217: 3.48920775e-08 + syst_JES_EtaIntercalibration_Stat218: 1.86925740e-07 + syst_JES_EtaIntercalibration_Stat219: 9.45095957e-08 + syst_JES_EtaIntercalibration_Stat22: 9.27865518e-23 + syst_JES_EtaIntercalibration_Stat220: 1.13331776e-06 + syst_JES_EtaIntercalibration_Stat221: 8.57999959e-07 + syst_JES_EtaIntercalibration_Stat222: 3.28977070e-07 + syst_JES_EtaIntercalibration_Stat223: 1.33211250e-06 + syst_JES_EtaIntercalibration_Stat224: 2.89634839e-06 + syst_JES_EtaIntercalibration_Stat225: 2.85799943e-06 + syst_JES_EtaIntercalibration_Stat226: 2.63203666e-06 + syst_JES_EtaIntercalibration_Stat227: 2.30339982e-06 + syst_JES_EtaIntercalibration_Stat228: 1.08702527e-06 + syst_JES_EtaIntercalibration_Stat229: 9.51396977e-08 + syst_JES_EtaIntercalibration_Stat23: 1.30818494e-22 + syst_JES_EtaIntercalibration_Stat230: 2.26205835e-07 + syst_JES_EtaIntercalibration_Stat231: 1.57462906e-06 + syst_JES_EtaIntercalibration_Stat232: 1.98319817e-06 + syst_JES_EtaIntercalibration_Stat233: 3.54564701e-06 + syst_JES_EtaIntercalibration_Stat234: 1.81136599e-06 + syst_JES_EtaIntercalibration_Stat235: 2.19745148e-06 + syst_JES_EtaIntercalibration_Stat236: 5.20514544e-07 + syst_JES_EtaIntercalibration_Stat237: 4.66268077e-07 + syst_JES_EtaIntercalibration_Stat238: 3.50246067e-07 + syst_JES_EtaIntercalibration_Stat239: 6.72447351e-08 + syst_JES_EtaIntercalibration_Stat24: 8.74222663e-19 + syst_JES_EtaIntercalibration_Stat240: 1.23515909e-08 + syst_JES_EtaIntercalibration_Stat241: 1.29931871e-08 + syst_JES_EtaIntercalibration_Stat242: 2.04085261e-07 + syst_JES_EtaIntercalibration_Stat243: 4.24076367e-08 + syst_JES_EtaIntercalibration_Stat244: 1.69654673e-08 + syst_JES_EtaIntercalibration_Stat245: 7.84650961e-07 + syst_JES_EtaIntercalibration_Stat25: 2.90078293e-20 + syst_JES_EtaIntercalibration_Stat26: 1.84870838e-20 + syst_JES_EtaIntercalibration_Stat27: 1.19078493e-07 + syst_JES_EtaIntercalibration_Stat28: 3.34069087e-20 + syst_JES_EtaIntercalibration_Stat29: 1.53638634e-19 + syst_JES_EtaIntercalibration_Stat3: 1.30818494e-22 + syst_JES_EtaIntercalibration_Stat30: 1.71008232e-19 + syst_JES_EtaIntercalibration_Stat31: 4.39161508e-19 + syst_JES_EtaIntercalibration_Stat32: 3.38816145e-21 + syst_JES_EtaIntercalibration_Stat33: 1.19078493e-07 + syst_JES_EtaIntercalibration_Stat34: 1.19078493e-07 + syst_JES_EtaIntercalibration_Stat35: 1.08971977e-08 + syst_JES_EtaIntercalibration_Stat36: 1.43327204e-08 + syst_JES_EtaIntercalibration_Stat37: 3.14723641e-19 + syst_JES_EtaIntercalibration_Stat38: 1.63072584e-11 + syst_JES_EtaIntercalibration_Stat39: 6.64731172e-19 + syst_JES_EtaIntercalibration_Stat4: 6.90683407e-22 + syst_JES_EtaIntercalibration_Stat40: 4.41994029e-18 + syst_JES_EtaIntercalibration_Stat41: 2.96557370e-19 + syst_JES_EtaIntercalibration_Stat42: 6.99909350e-22 + syst_JES_EtaIntercalibration_Stat43: 9.27865518e-23 + syst_JES_EtaIntercalibration_Stat44: 9.27865518e-23 + syst_JES_EtaIntercalibration_Stat45: 1.07212676e-19 + syst_JES_EtaIntercalibration_Stat46: 8.85326225e-19 + syst_JES_EtaIntercalibration_Stat47: 3.72539877e-18 + syst_JES_EtaIntercalibration_Stat48: 6.12751317e-18 + syst_JES_EtaIntercalibration_Stat49: 1.19078493e-07 + syst_JES_EtaIntercalibration_Stat5: 1.51314152e-21 + syst_JES_EtaIntercalibration_Stat50: 3.62756338e-17 + syst_JES_EtaIntercalibration_Stat51: 2.16491719e-17 + syst_JES_EtaIntercalibration_Stat52: 1.25855518e-17 + syst_JES_EtaIntercalibration_Stat53: 1.43334131e-17 + syst_JES_EtaIntercalibration_Stat54: 1.84310494e-15 + syst_JES_EtaIntercalibration_Stat55: 1.19078493e-07 + syst_JES_EtaIntercalibration_Stat56: 8.49137908e-09 + syst_JES_EtaIntercalibration_Stat57: 8.48618293e-09 + syst_JES_EtaIntercalibration_Stat58: 2.22481926e-08 + syst_JES_EtaIntercalibration_Stat59: 1.61487413e-18 + syst_JES_EtaIntercalibration_Stat6: 1.50597425e-21 + syst_JES_EtaIntercalibration_Stat60: 4.28111787e-19 + syst_JES_EtaIntercalibration_Stat61: 4.21454063e-18 + syst_JES_EtaIntercalibration_Stat62: 4.54266136e-18 + syst_JES_EtaIntercalibration_Stat63: 5.27045109e-19 + syst_JES_EtaIntercalibration_Stat64: 1.18108545e-22 + syst_JES_EtaIntercalibration_Stat65: 9.27865518e-23 + syst_JES_EtaIntercalibration_Stat66: 9.27865518e-23 + syst_JES_EtaIntercalibration_Stat67: 1.21767676e-18 + syst_JES_EtaIntercalibration_Stat68: 4.06723508e-17 + syst_JES_EtaIntercalibration_Stat69: 3.96293226e-09 + syst_JES_EtaIntercalibration_Stat7: 9.27865518e-23 + syst_JES_EtaIntercalibration_Stat70: 1.19078493e-07 + syst_JES_EtaIntercalibration_Stat71: 1.19078493e-07 + syst_JES_EtaIntercalibration_Stat72: 1.19078493e-07 + syst_JES_EtaIntercalibration_Stat73: 2.48722496e-08 + syst_JES_EtaIntercalibration_Stat74: 1.96758726e-12 + syst_JES_EtaIntercalibration_Stat75: 1.83612759e-15 + syst_JES_EtaIntercalibration_Stat76: 1.82642330e-15 + syst_JES_EtaIntercalibration_Stat77: 1.19078493e-07 + syst_JES_EtaIntercalibration_Stat78: 8.85077963e-09 + syst_JES_EtaIntercalibration_Stat79: 1.19078493e-07 + syst_JES_EtaIntercalibration_Stat8: 5.68199267e-23 + syst_JES_EtaIntercalibration_Stat80: 8.57191939e-09 + syst_JES_EtaIntercalibration_Stat81: 1.70015496e-16 + syst_JES_EtaIntercalibration_Stat82: 2.48729078e-08 + syst_JES_EtaIntercalibration_Stat83: 3.23917809e-16 + syst_JES_EtaIntercalibration_Stat84: 3.59652523e-15 + syst_JES_EtaIntercalibration_Stat85: 5.31842747e-16 + syst_JES_EtaIntercalibration_Stat86: 2.69473122e-19 + syst_JES_EtaIntercalibration_Stat87: 5.68199267e-23 + syst_JES_EtaIntercalibration_Stat88: 1.39686358e-19 + syst_JES_EtaIntercalibration_Stat89: 1.00825028e-15 + syst_JES_EtaIntercalibration_Stat9: 3.12554464e-21 + syst_JES_EtaIntercalibration_Stat90: 3.96293304e-09 + syst_JES_EtaIntercalibration_Stat91: 1.19078493e-07 + syst_JES_EtaIntercalibration_Stat92: 1.19078492e-07 + syst_JES_EtaIntercalibration_Stat93: 1.19078493e-07 + syst_JES_EtaIntercalibration_Stat94: 1.55461147e-16 + syst_JES_EtaIntercalibration_Stat95: 1.97538251e-12 + syst_JES_EtaIntercalibration_Stat96: 1.97426931e-12 + syst_JES_EtaIntercalibration_Stat97: 1.84290467e-15 + syst_JES_EtaIntercalibration_Stat98: 1.19078493e-07 + syst_JES_EtaIntercalibration_Stat99: 8.86936628e-09 + syst_JES_EtaIntercalibration_TotalStat_MJB: 6.44578690e-05 + syst_JES_Flavour_Comp: 1.66921359e-04 + syst_JES_Flavour_Response: 6.19016187e-06 + syst_JES_Gjet_Generator: 2.16189546e-04 + syst_JES_Gjet_OOC: 1.79434354e-04 + syst_JES_Gjet_Purity: 3.32085844e-05 + syst_JES_Gjet_Stat1: 2.01610714e-19 + syst_JES_Gjet_Stat10: 3.31762607e-06 + syst_JES_Gjet_Stat11: 3.86294716e-06 + syst_JES_Gjet_Stat12: 1.13388079e-05 + syst_JES_Gjet_Stat13: 3.81436844e-05 + syst_JES_Gjet_Stat14: 9.72817715e-05 + syst_JES_Gjet_Stat15: 9.04497710e-05 + syst_JES_Gjet_Stat2: 6.47527194e-07 + syst_JES_Gjet_Stat3: 1.56445659e-19 + syst_JES_Gjet_Stat4: 7.07638932e-17 + syst_JES_Gjet_Stat5: 4.35652629e-18 + syst_JES_Gjet_Stat6: 1.49323499e-06 + syst_JES_Gjet_Stat7: 1.37246316e-06 + syst_JES_Gjet_Stat8: 2.74356731e-07 + syst_JES_Gjet_Stat9: 1.75314025e-06 + syst_JES_Gjet_Veto: 1.77993336e-04 + syst_JES_Gjet_dPhi: 1.72325934e-05 + syst_JES_LArESZee: 3.30227509e-04 + syst_JES_LArEsmear: 2.67240753e-05 + syst_JES_LAr_JVT: 3.47425402e-05 + syst_JES_MJB_Alpha: 2.02127206e-06 + syst_JES_MJB_Asym: 3.37950067e-05 + syst_JES_MJB_Beta: 1.79225668e-06 + syst_JES_MJB_Fragmentation: 2.16555461e-05 syst_JES_MJB_Stat1: 0.0 - syst_JES_MJB_Stat10: 4.5199836291185835e-07 - syst_JES_MJB_Stat11: 1.6110393436226194e-06 - syst_JES_MJB_Stat12: 3.6961043004763815e-06 - syst_JES_MJB_Stat13: 5.19674215254134e-07 - syst_JES_MJB_Stat14: 5.508858388994947e-07 - syst_JES_MJB_Stat15: 1.216467811822409e-06 - syst_JES_MJB_Stat16: 7.639369525687314e-07 - syst_JES_MJB_Stat2: 1.1352727018210206e-08 - syst_JES_MJB_Stat3: 7.107470488858888e-07 - syst_JES_MJB_Stat4: 1.0319730991013041e-08 - syst_JES_MJB_Stat5: 8.932315976693839e-08 + syst_JES_MJB_Stat10: 4.51998363e-07 + syst_JES_MJB_Stat11: 1.61103934e-06 + syst_JES_MJB_Stat12: 3.69610430e-06 + syst_JES_MJB_Stat13: 5.19674215e-07 + syst_JES_MJB_Stat14: 5.50885839e-07 + syst_JES_MJB_Stat15: 1.21646781e-06 + syst_JES_MJB_Stat16: 7.63936953e-07 + syst_JES_MJB_Stat2: 1.13527270e-08 + syst_JES_MJB_Stat3: 7.10747049e-07 + syst_JES_MJB_Stat4: 1.03197310e-08 + syst_JES_MJB_Stat5: 8.93231598e-08 syst_JES_MJB_Stat6: 0.0 syst_JES_MJB_Stat7: 0.0 syst_JES_MJB_Stat8: 0.0 - syst_JES_MJB_Stat9: 6.503850782421134e-07 - syst_JES_MJB_Threshold: 2.328109963038688e-05 - syst_JES_Pileup_MuOffset: 4.325131327485907e-05 - syst_JES_Pileup_NPVOffset: 4.476096848818175e-05 - syst_JES_Pileup_Pt_term: 3.380811884740114e-05 - syst_JES_Pileup_Rho_topology: 6.184004103329816e-05 - syst_JES_PunchThrough_MC15: 4.673733411310491e-05 - syst_JES_SingleParticle_HighPt: 1.4706416660764102e-08 - syst_JES_Zjet_MC: 9.213008249209374e-05 - syst_JES_Zjet_MuScale: 6.5968001902437525e-06 - syst_JES_Zjet_MuSmearID: 1.0928430571221103e-06 - syst_JES_Zjet_MuSmearMS: 2.4120323380916767e-05 - syst_JES_Zjet_OOC: 5.081349697668918e-05 - syst_JES_Zjet_Stat1: 2.8772738399394663e-06 - syst_JES_Zjet_Stat10: 3.690530730125411e-06 - syst_JES_Zjet_Stat11: 5.197000865884091e-06 - syst_JES_Zjet_Stat12: 1.4697383330035317e-05 - syst_JES_Zjet_Stat13: 2.5219343766244197e-05 + syst_JES_MJB_Stat9: 6.50385078e-07 + syst_JES_MJB_Threshold: 2.32810996e-05 + syst_JES_Pileup_MuOffset: 4.32513133e-05 + syst_JES_Pileup_NPVOffset: 4.47609685e-05 + syst_JES_Pileup_Pt_term: 3.38081188e-05 + syst_JES_Pileup_Rho_topology: 6.18400410e-05 + syst_JES_PunchThrough_MC15: 4.67373341e-05 + syst_JES_SingleParticle_HighPt: 1.47064167e-08 + syst_JES_Zjet_MC: 9.21300825e-05 + syst_JES_Zjet_MuScale: 6.59680019e-06 + syst_JES_Zjet_MuSmearID: 1.09284306e-06 + syst_JES_Zjet_MuSmearMS: 2.41203234e-05 + syst_JES_Zjet_OOC: 5.08134970e-05 + syst_JES_Zjet_Stat1: 2.87727384e-06 + syst_JES_Zjet_Stat10: 3.69053073e-06 + syst_JES_Zjet_Stat11: 5.19700087e-06 + syst_JES_Zjet_Stat12: 1.46973833e-05 + syst_JES_Zjet_Stat13: 2.52193438e-05 syst_JES_Zjet_Stat2: 0.0 - syst_JES_Zjet_Stat3: 9.099328917563044e-07 - syst_JES_Zjet_Stat4: 9.696020420770391e-07 - syst_JES_Zjet_Stat5: 1.0213903611980185e-06 - syst_JES_Zjet_Stat6: 7.067634469891605e-07 - syst_JES_Zjet_Stat7: 1.428861150532129e-06 - syst_JES_Zjet_Stat8: 9.407362582041792e-07 - syst_JES_Zjet_Stat9: 2.06512632785503e-06 - syst_JES_Zjet_Veto: 1.047990701294625e-05 - syst_JES_Zjet_dPhi: 9.271526087974946e-06 + syst_JES_Zjet_Stat3: 9.09932892e-07 + syst_JES_Zjet_Stat4: 9.69602042e-07 + syst_JES_Zjet_Stat5: 1.02139036e-06 + syst_JES_Zjet_Stat6: 7.06763447e-07 + syst_JES_Zjet_Stat7: 1.42886115e-06 + syst_JES_Zjet_Stat8: 9.40736258e-07 + syst_JES_Zjet_Stat9: 2.06512633e-06 + syst_JES_Zjet_Veto: 1.04799070e-05 + syst_JES_Zjet_dPhi: 9.27152609e-06 syst_PRW: 0.0 - syst_Unfolding_bias: 8.142e-19 - syst_cleaning: 8.16748558309104e-05 - syst_lumi: 0.0001628 -- stat: 9.5949e-05 - syst_JER_CROSS_CALIB_FORWARD: 2.019e-16 + syst_Unfolding_bias: 8.14200000e-19 + syst_cleaning: 8.16748558e-05 + syst_lumi: 1.62800000e-04 +- stat: 9.59490000e-05 + syst_JER_CROSS_CALIB_FORWARD: 2.01900000e-16 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 1.15020003477656e-05 - syst_JER_NP1: 5.261489784272131e-06 - syst_JER_NP2: 7.241718057892063e-06 - syst_JER_NP3: 1.1540063723827523e-06 - syst_JER_NP4: 7.155967911470816e-18 + syst_JER_NP0: 1.15020003e-05 + syst_JER_NP1: 5.26148978e-06 + syst_JER_NP2: 7.24171806e-06 + syst_JER_NP3: 1.15400637e-06 + syst_JER_NP4: 7.15596791e-18 syst_JER_NP5: 0.0 syst_JER_NP6: 0.0 - syst_JER_NP7: 2.0308295718745087e-13 - syst_JER_NP8: 9.854818149007114e-07 - syst_JES_EtaIntercalibration_Modelling: 0.00023513423825551226 - syst_JES_EtaIntercalibration_NonClosure: 4.824744863720775e-06 - syst_JES_EtaIntercalibration_Stat0: 2.8213560569343246e-23 - syst_JES_EtaIntercalibration_Stat1: 2.8213560569343246e-23 - syst_JES_EtaIntercalibration_Stat10: 4.849020563990217e-22 - syst_JES_EtaIntercalibration_Stat100: 2.1486090268204006e-08 - syst_JES_EtaIntercalibration_Stat101: 4.337921245323352e-09 - syst_JES_EtaIntercalibration_Stat102: 1.2548708100941102e-08 - syst_JES_EtaIntercalibration_Stat103: 1.2551106801388344e-08 - syst_JES_EtaIntercalibration_Stat104: 1.5354717143297528e-13 - syst_JES_EtaIntercalibration_Stat105: 2.802564398888766e-16 - syst_JES_EtaIntercalibration_Stat106: 2.6393415845623318e-17 - syst_JES_EtaIntercalibration_Stat107: 2.500345672939444e-20 - syst_JES_EtaIntercalibration_Stat108: 3.466665400640795e-19 - syst_JES_EtaIntercalibration_Stat109: 1.6641808227295345e-11 - syst_JES_EtaIntercalibration_Stat11: 2.1486090267891914e-08 - syst_JES_EtaIntercalibration_Stat110: 1.7245297416977186e-11 - syst_JES_EtaIntercalibration_Stat111: 2.147740001778842e-08 - syst_JES_EtaIntercalibration_Stat112: 2.2156992547500665e-08 - syst_JES_EtaIntercalibration_Stat113: 1.8688826709959892e-08 - syst_JES_EtaIntercalibration_Stat114: 1.0524596774280856e-12 - syst_JES_EtaIntercalibration_Stat115: 2.7738084770762383e-14 - syst_JES_EtaIntercalibration_Stat116: 3.519373062521221e-12 - syst_JES_EtaIntercalibration_Stat117: 1.8306003625860014e-15 - syst_JES_EtaIntercalibration_Stat118: 2.1486118324374793e-08 - syst_JES_EtaIntercalibration_Stat119: 2.216593712771919e-08 - syst_JES_EtaIntercalibration_Stat12: 4.553561573098584e-09 - syst_JES_EtaIntercalibration_Stat120: 1.8472249695066245e-08 - syst_JES_EtaIntercalibration_Stat121: 2.095409446862355e-08 - syst_JES_EtaIntercalibration_Stat122: 1.2540040017948572e-08 - syst_JES_EtaIntercalibration_Stat123: 3.789509593459687e-12 - syst_JES_EtaIntercalibration_Stat124: 2.38209044066341e-14 - syst_JES_EtaIntercalibration_Stat125: 2.841455956560826e-15 - syst_JES_EtaIntercalibration_Stat126: 5.183412582459552e-16 - syst_JES_EtaIntercalibration_Stat127: 5.0212143913424255e-17 - syst_JES_EtaIntercalibration_Stat128: 4.697456997788804e-14 - syst_JES_EtaIntercalibration_Stat129: 1.4620511849795139e-08 - syst_JES_EtaIntercalibration_Stat13: 7.126523047742152e-09 - syst_JES_EtaIntercalibration_Stat130: 5.4860937605914094e-08 - syst_JES_EtaIntercalibration_Stat131: 7.012639654224364e-08 - syst_JES_EtaIntercalibration_Stat132: 6.377259834756617e-08 - syst_JES_EtaIntercalibration_Stat133: 3.8797807927768285e-08 - syst_JES_EtaIntercalibration_Stat134: 2.2806485787325937e-09 - syst_JES_EtaIntercalibration_Stat135: 2.208472971874458e-12 - syst_JES_EtaIntercalibration_Stat136: 3.165004856236401e-13 - syst_JES_EtaIntercalibration_Stat137: 2.148609063283505e-08 - syst_JES_EtaIntercalibration_Stat138: 3.747118893229837e-08 - syst_JES_EtaIntercalibration_Stat139: 1.0126344688484585e-08 - syst_JES_EtaIntercalibration_Stat14: 7.357751830552597e-09 - syst_JES_EtaIntercalibration_Stat140: 4.989176822152127e-09 - syst_JES_EtaIntercalibration_Stat141: 1.2562897874296359e-08 - syst_JES_EtaIntercalibration_Stat142: 1.0808859303328312e-07 - syst_JES_EtaIntercalibration_Stat143: 1.0809872119146461e-07 - syst_JES_EtaIntercalibration_Stat144: 5.255409322399802e-09 - syst_JES_EtaIntercalibration_Stat145: 2.1972110652370197e-09 - syst_JES_EtaIntercalibration_Stat146: 4.599161119160754e-12 - syst_JES_EtaIntercalibration_Stat147: 4.013868333665169e-09 - syst_JES_EtaIntercalibration_Stat148: 5.4947340245001856e-08 - syst_JES_EtaIntercalibration_Stat149: 8.159486549409834e-09 - syst_JES_EtaIntercalibration_Stat15: 4.968893356422535e-22 - syst_JES_EtaIntercalibration_Stat150: 7.00520492205617e-08 - syst_JES_EtaIntercalibration_Stat151: 1.684496532350245e-08 - syst_JES_EtaIntercalibration_Stat152: 6.570894079195007e-09 - syst_JES_EtaIntercalibration_Stat153: 1.1185517466796072e-08 - syst_JES_EtaIntercalibration_Stat154: 2.754246372422046e-12 - syst_JES_EtaIntercalibration_Stat155: 2.1473803191151306e-08 - syst_JES_EtaIntercalibration_Stat156: 2.2288182406827164e-08 - syst_JES_EtaIntercalibration_Stat157: 4.105333125033826e-08 - syst_JES_EtaIntercalibration_Stat158: 3.19915872780003e-08 - syst_JES_EtaIntercalibration_Stat159: 7.759028319620634e-09 - syst_JES_EtaIntercalibration_Stat16: 1.662540582211454e-22 - syst_JES_EtaIntercalibration_Stat160: 2.3367277811236377e-09 - syst_JES_EtaIntercalibration_Stat161: 1.5985392926043452e-09 - syst_JES_EtaIntercalibration_Stat162: 1.8331381474127912e-10 - syst_JES_EtaIntercalibration_Stat163: 1.9440075486157453e-09 - syst_JES_EtaIntercalibration_Stat164: 3.748024879960111e-09 - syst_JES_EtaIntercalibration_Stat165: 4.2724604246265406e-08 - syst_JES_EtaIntercalibration_Stat166: 7.683460597282971e-08 - syst_JES_EtaIntercalibration_Stat167: 6.191485201468223e-08 - syst_JES_EtaIntercalibration_Stat168: 7.865444336304212e-08 - syst_JES_EtaIntercalibration_Stat169: 3.989687616844206e-08 - syst_JES_EtaIntercalibration_Stat17: 1.3527316808265294e-12 - syst_JES_EtaIntercalibration_Stat170: 1.1603688842346644e-08 - syst_JES_EtaIntercalibration_Stat171: 2.2690867783097236e-09 - syst_JES_EtaIntercalibration_Stat172: 2.2705609343809186e-10 - syst_JES_EtaIntercalibration_Stat173: 1.8211340992634234e-08 - syst_JES_EtaIntercalibration_Stat174: 1.0829803211854776e-07 - syst_JES_EtaIntercalibration_Stat175: 3.8086246861564085e-09 - syst_JES_EtaIntercalibration_Stat176: 2.401786210302657e-08 - syst_JES_EtaIntercalibration_Stat177: 1.5069515942789935e-07 - syst_JES_EtaIntercalibration_Stat178: 1.9444004493673622e-08 - syst_JES_EtaIntercalibration_Stat179: 7.274684512059612e-08 - syst_JES_EtaIntercalibration_Stat18: 3.5991911591356186e-23 - syst_JES_EtaIntercalibration_Stat180: 1.2548323712751438e-07 - syst_JES_EtaIntercalibration_Stat181: 1.6145014114270698e-09 - syst_JES_EtaIntercalibration_Stat182: 9.090406023935344e-08 - syst_JES_EtaIntercalibration_Stat183: 4.379474421377524e-07 - syst_JES_EtaIntercalibration_Stat184: 5.647351658081168e-09 - syst_JES_EtaIntercalibration_Stat185: 1.471587197552357e-07 - syst_JES_EtaIntercalibration_Stat186: 2.7468969765901307e-07 - syst_JES_EtaIntercalibration_Stat187: 2.5786276873562026e-07 - syst_JES_EtaIntercalibration_Stat188: 1.2618353775354375e-08 - syst_JES_EtaIntercalibration_Stat189: 1.3922312696890556e-08 - syst_JES_EtaIntercalibration_Stat19: 6.789802922029475e-23 - syst_JES_EtaIntercalibration_Stat190: 1.876639557826702e-08 - syst_JES_EtaIntercalibration_Stat191: 8.366883694064355e-08 - syst_JES_EtaIntercalibration_Stat192: 1.5586919997228444e-07 - syst_JES_EtaIntercalibration_Stat193: 2.9741590408046436e-07 - syst_JES_EtaIntercalibration_Stat194: 2.401488444694249e-07 - syst_JES_EtaIntercalibration_Stat195: 1.957994051957258e-07 - syst_JES_EtaIntercalibration_Stat196: 6.914624555968314e-08 - syst_JES_EtaIntercalibration_Stat197: 1.0354746194378691e-07 - syst_JES_EtaIntercalibration_Stat198: 2.7770438869416525e-07 - syst_JES_EtaIntercalibration_Stat199: 5.827931258173864e-07 - syst_JES_EtaIntercalibration_Stat2: 3.977489786284811e-23 - syst_JES_EtaIntercalibration_Stat20: 2.8213560569343246e-23 - syst_JES_EtaIntercalibration_Stat200: 7.070990948940607e-07 - syst_JES_EtaIntercalibration_Stat201: 4.2663127156245826e-07 - syst_JES_EtaIntercalibration_Stat202: 4.7281301536654e-07 - syst_JES_EtaIntercalibration_Stat203: 1.4447936582086729e-07 - syst_JES_EtaIntercalibration_Stat204: 1.8433584316404665e-08 - syst_JES_EtaIntercalibration_Stat205: 1.0773597053445057e-07 - syst_JES_EtaIntercalibration_Stat206: 1.1419150712728157e-07 - syst_JES_EtaIntercalibration_Stat207: 5.858318615439074e-07 - syst_JES_EtaIntercalibration_Stat208: 5.804019533909238e-07 - syst_JES_EtaIntercalibration_Stat209: 6.704144464433923e-07 - syst_JES_EtaIntercalibration_Stat21: 2.8213560569343246e-23 - syst_JES_EtaIntercalibration_Stat210: 3.761438421667966e-07 - syst_JES_EtaIntercalibration_Stat211: 8.002353653769621e-07 - syst_JES_EtaIntercalibration_Stat212: 5.265253650110316e-07 - syst_JES_EtaIntercalibration_Stat213: 9.749246688847296e-07 - syst_JES_EtaIntercalibration_Stat214: 4.2301275394484266e-07 - syst_JES_EtaIntercalibration_Stat215: 5.460762189246113e-07 - syst_JES_EtaIntercalibration_Stat216: 2.0232498381317122e-07 - syst_JES_EtaIntercalibration_Stat217: 6.779896957181576e-09 - syst_JES_EtaIntercalibration_Stat218: 1.3233403716353551e-07 - syst_JES_EtaIntercalibration_Stat219: 2.0418058183872433e-08 - syst_JES_EtaIntercalibration_Stat22: 2.8213560569343246e-23 - syst_JES_EtaIntercalibration_Stat220: 6.412301536889855e-07 - syst_JES_EtaIntercalibration_Stat221: 4.5771124117722956e-07 - syst_JES_EtaIntercalibration_Stat222: 5.910623380828795e-08 - syst_JES_EtaIntercalibration_Stat223: 6.230332475077072e-07 - syst_JES_EtaIntercalibration_Stat224: 1.7752346323796188e-06 - syst_JES_EtaIntercalibration_Stat225: 1.8401148741315037e-06 - syst_JES_EtaIntercalibration_Stat226: 1.8994432736989014e-06 - syst_JES_EtaIntercalibration_Stat227: 1.7075089077366478e-06 - syst_JES_EtaIntercalibration_Stat228: 4.961088892571872e-07 - syst_JES_EtaIntercalibration_Stat229: 3.625315408002454e-08 - syst_JES_EtaIntercalibration_Stat23: 3.977489786284811e-23 - syst_JES_EtaIntercalibration_Stat230: 6.102881020678517e-08 - syst_JES_EtaIntercalibration_Stat231: 9.007377531779158e-07 - syst_JES_EtaIntercalibration_Stat232: 1.2773874705851783e-06 - syst_JES_EtaIntercalibration_Stat233: 1.982010784531709e-06 - syst_JES_EtaIntercalibration_Stat234: 1.441225822000147e-06 - syst_JES_EtaIntercalibration_Stat235: 1.3293197508500355e-06 - syst_JES_EtaIntercalibration_Stat236: 2.941782580341382e-07 - syst_JES_EtaIntercalibration_Stat237: 4.025286076790071e-07 - syst_JES_EtaIntercalibration_Stat238: 3.199482926974295e-07 - syst_JES_EtaIntercalibration_Stat239: 5.996262419207485e-09 - syst_JES_EtaIntercalibration_Stat24: 8.900568408815248e-20 - syst_JES_EtaIntercalibration_Stat240: 4.329567732464755e-09 - syst_JES_EtaIntercalibration_Stat241: 6.119014544842985e-09 - syst_JES_EtaIntercalibration_Stat242: 1.1879217935116773e-07 - syst_JES_EtaIntercalibration_Stat243: 2.1405127259973837e-08 - syst_JES_EtaIntercalibration_Stat244: 6.22412480389745e-08 - syst_JES_EtaIntercalibration_Stat245: 4.516463660874513e-07 - syst_JES_EtaIntercalibration_Stat25: 4.040162957109527e-21 - syst_JES_EtaIntercalibration_Stat26: 2.5502217959767737e-21 - syst_JES_EtaIntercalibration_Stat27: 2.148609026789128e-08 - syst_JES_EtaIntercalibration_Stat28: 4.476623839457588e-21 - syst_JES_EtaIntercalibration_Stat29: 1.894887331742972e-20 - syst_JES_EtaIntercalibration_Stat3: 3.977489786284811e-23 - syst_JES_EtaIntercalibration_Stat30: 2.0970765674326248e-20 - syst_JES_EtaIntercalibration_Stat31: 3.8720287640977047e-20 - syst_JES_EtaIntercalibration_Stat32: 5.185098914196334e-22 - syst_JES_EtaIntercalibration_Stat33: 2.148609026789178e-08 - syst_JES_EtaIntercalibration_Stat34: 2.1486090267891362e-08 - syst_JES_EtaIntercalibration_Stat35: 6.332377752471212e-09 - syst_JES_EtaIntercalibration_Stat36: 7.34735952570847e-09 - syst_JES_EtaIntercalibration_Stat37: 4.243816922005472e-20 - syst_JES_EtaIntercalibration_Stat38: 1.3509996294429987e-12 - syst_JES_EtaIntercalibration_Stat39: 7.414865126421299e-20 - syst_JES_EtaIntercalibration_Stat4: 1.202303492259754e-22 - syst_JES_EtaIntercalibration_Stat40: 4.910242865599831e-19 - syst_JES_EtaIntercalibration_Stat41: 2.5846066344948897e-20 - syst_JES_EtaIntercalibration_Stat42: 1.2217733483342972e-22 - syst_JES_EtaIntercalibration_Stat43: 2.8213560569343246e-23 - syst_JES_EtaIntercalibration_Stat44: 2.8213560569343246e-23 - syst_JES_EtaIntercalibration_Stat45: 1.2788111669464732e-20 - syst_JES_EtaIntercalibration_Stat46: 8.671941034595427e-20 - syst_JES_EtaIntercalibration_Stat47: 2.9981849092409227e-19 - syst_JES_EtaIntercalibration_Stat48: 6.167779626413383e-19 - syst_JES_EtaIntercalibration_Stat49: 2.1486090267887104e-08 - syst_JES_EtaIntercalibration_Stat5: 2.5249606308812025e-22 - syst_JES_EtaIntercalibration_Stat50: 3.3724007697595793e-18 - syst_JES_EtaIntercalibration_Stat51: 1.6993154996939208e-18 - syst_JES_EtaIntercalibration_Stat52: 1.2761100697334066e-18 - syst_JES_EtaIntercalibration_Stat53: 1.4539456650095286e-18 - syst_JES_EtaIntercalibration_Stat54: 1.5321767590473587e-16 - syst_JES_EtaIntercalibration_Stat55: 2.1486090267892206e-08 - syst_JES_EtaIntercalibration_Stat56: 4.2824956217137275e-09 - syst_JES_EtaIntercalibration_Stat57: 4.2798975454948e-09 - syst_JES_EtaIntercalibration_Stat58: 5.169305635225388e-09 - syst_JES_EtaIntercalibration_Stat59: 1.9059261055980106e-19 - syst_JES_EtaIntercalibration_Stat6: 2.505741544433503e-22 - syst_JES_EtaIntercalibration_Stat60: 3.9233889136179195e-20 - syst_JES_EtaIntercalibration_Stat61: 4.650519755898259e-19 - syst_JES_EtaIntercalibration_Stat62: 4.900889654868798e-19 - syst_JES_EtaIntercalibration_Stat63: 5.1675670685052553e-20 - syst_JES_EtaIntercalibration_Stat64: 1.9338347266506514e-23 - syst_JES_EtaIntercalibration_Stat65: 2.8213560569343246e-23 - syst_JES_EtaIntercalibration_Stat66: 2.8213560569343246e-23 - syst_JES_EtaIntercalibration_Stat67: 1.3730004806991147e-19 - syst_JES_EtaIntercalibration_Stat68: 3.7421077950802006e-18 - syst_JES_EtaIntercalibration_Stat69: 1.7008740060605298e-11 - syst_JES_EtaIntercalibration_Stat7: 2.8213560569343246e-23 - syst_JES_EtaIntercalibration_Stat70: 2.1486090292974903e-08 - syst_JES_EtaIntercalibration_Stat71: 2.1486090284075048e-08 - syst_JES_EtaIntercalibration_Stat72: 2.1486090266984037e-08 - syst_JES_EtaIntercalibration_Stat73: 1.2548708102824044e-08 - syst_JES_EtaIntercalibration_Stat74: 1.5259169709277615e-13 - syst_JES_EtaIntercalibration_Stat75: 1.5284730807901067e-16 - syst_JES_EtaIntercalibration_Stat76: 1.519831633637779e-16 - syst_JES_EtaIntercalibration_Stat77: 2.148609026771219e-08 - syst_JES_EtaIntercalibration_Stat78: 4.463494930984995e-09 - syst_JES_EtaIntercalibration_Stat79: 2.1486090267871834e-08 - syst_JES_EtaIntercalibration_Stat8: 1.727720680549955e-23 - syst_JES_EtaIntercalibration_Stat80: 4.322332785499013e-09 - syst_JES_EtaIntercalibration_Stat81: 1.3443634629432437e-17 - syst_JES_EtaIntercalibration_Stat82: 1.2548759139430626e-08 - syst_JES_EtaIntercalibration_Stat83: 2.7476972462045376e-17 - syst_JES_EtaIntercalibration_Stat84: 2.8234872268172207e-16 - syst_JES_EtaIntercalibration_Stat85: 4.780901248718697e-17 - syst_JES_EtaIntercalibration_Stat86: 2.312340168244067e-20 - syst_JES_EtaIntercalibration_Stat87: 1.727720680549955e-23 - syst_JES_EtaIntercalibration_Stat88: 1.5225698670340222e-20 - syst_JES_EtaIntercalibration_Stat89: 8.50025728478262e-17 - syst_JES_EtaIntercalibration_Stat9: 4.849020563990217e-22 - syst_JES_EtaIntercalibration_Stat90: 1.7000141377452773e-11 - syst_JES_EtaIntercalibration_Stat91: 2.1486090264109697e-08 - syst_JES_EtaIntercalibration_Stat92: 2.148609020045741e-08 - syst_JES_EtaIntercalibration_Stat93: 2.148609026604642e-08 - syst_JES_EtaIntercalibration_Stat94: 1.4417794110057196e-17 - syst_JES_EtaIntercalibration_Stat95: 1.5319792526625255e-13 - syst_JES_EtaIntercalibration_Stat96: 1.5307634750813073e-13 - syst_JES_EtaIntercalibration_Stat97: 1.552376852024018e-16 - syst_JES_EtaIntercalibration_Stat98: 2.1486090267585924e-08 - syst_JES_EtaIntercalibration_Stat99: 4.473051412554858e-09 - syst_JES_EtaIntercalibration_TotalStat_MJB: 3.931725701266557e-05 - syst_JES_Flavour_Comp: 9.737023107705968e-05 - syst_JES_Flavour_Response: 2.8736688657533246e-06 - syst_JES_Gjet_Generator: 0.00012149064439289141 - syst_JES_Gjet_OOC: 0.00010102913577280566 - syst_JES_Gjet_Purity: 1.7872708244695317e-05 - syst_JES_Gjet_Stat1: 3.105567097970997e-20 - syst_JES_Gjet_Stat10: 1.7463668765468498e-06 - syst_JES_Gjet_Stat11: 2.0111795046688398e-06 - syst_JES_Gjet_Stat12: 6.0330971109373e-06 - syst_JES_Gjet_Stat13: 2.0957635839951033e-05 - syst_JES_Gjet_Stat14: 5.618048304349117e-05 - syst_JES_Gjet_Stat15: 6.481245308580751e-05 - syst_JES_Gjet_Stat2: 3.656359254777891e-07 - syst_JES_Gjet_Stat3: 2.2195357622710204e-20 - syst_JES_Gjet_Stat4: 7.851039108602122e-18 - syst_JES_Gjet_Stat5: 5.995621191336224e-19 - syst_JES_Gjet_Stat6: 1.1433492642233168e-06 - syst_JES_Gjet_Stat7: 7.036027856681638e-07 - syst_JES_Gjet_Stat8: 5.31652902458806e-08 - syst_JES_Gjet_Stat9: 8.926515711631276e-07 - syst_JES_Gjet_Veto: 0.00010170613649136418 - syst_JES_Gjet_dPhi: 9.849418599592567e-06 - syst_JES_LArESZee: 0.00018122623292448587 - syst_JES_LArEsmear: 1.5249056060950133e-05 - syst_JES_LAr_JVT: 2.042904305149901e-05 - syst_JES_MJB_Alpha: 1.2775258666657203e-06 - syst_JES_MJB_Asym: 2.222558604401693e-05 - syst_JES_MJB_Beta: 9.51681995206382e-07 - syst_JES_MJB_Fragmentation: 1.1605510889228444e-05 + syst_JER_NP7: 2.03082957e-13 + syst_JER_NP8: 9.85481815e-07 + syst_JES_EtaIntercalibration_Modelling: 2.35134238e-04 + syst_JES_EtaIntercalibration_NonClosure: 4.82474486e-06 + syst_JES_EtaIntercalibration_Stat0: 2.82135606e-23 + syst_JES_EtaIntercalibration_Stat1: 2.82135606e-23 + syst_JES_EtaIntercalibration_Stat10: 4.84902056e-22 + syst_JES_EtaIntercalibration_Stat100: 2.14860903e-08 + syst_JES_EtaIntercalibration_Stat101: 4.33792125e-09 + syst_JES_EtaIntercalibration_Stat102: 1.25487081e-08 + syst_JES_EtaIntercalibration_Stat103: 1.25511068e-08 + syst_JES_EtaIntercalibration_Stat104: 1.53547171e-13 + syst_JES_EtaIntercalibration_Stat105: 2.80256440e-16 + syst_JES_EtaIntercalibration_Stat106: 2.63934158e-17 + syst_JES_EtaIntercalibration_Stat107: 2.50034567e-20 + syst_JES_EtaIntercalibration_Stat108: 3.46666540e-19 + syst_JES_EtaIntercalibration_Stat109: 1.66418082e-11 + syst_JES_EtaIntercalibration_Stat11: 2.14860903e-08 + syst_JES_EtaIntercalibration_Stat110: 1.72452974e-11 + syst_JES_EtaIntercalibration_Stat111: 2.14774000e-08 + syst_JES_EtaIntercalibration_Stat112: 2.21569925e-08 + syst_JES_EtaIntercalibration_Stat113: 1.86888267e-08 + syst_JES_EtaIntercalibration_Stat114: 1.05245968e-12 + syst_JES_EtaIntercalibration_Stat115: 2.77380848e-14 + syst_JES_EtaIntercalibration_Stat116: 3.51937306e-12 + syst_JES_EtaIntercalibration_Stat117: 1.83060036e-15 + syst_JES_EtaIntercalibration_Stat118: 2.14861183e-08 + syst_JES_EtaIntercalibration_Stat119: 2.21659371e-08 + syst_JES_EtaIntercalibration_Stat12: 4.55356157e-09 + syst_JES_EtaIntercalibration_Stat120: 1.84722497e-08 + syst_JES_EtaIntercalibration_Stat121: 2.09540945e-08 + syst_JES_EtaIntercalibration_Stat122: 1.25400400e-08 + syst_JES_EtaIntercalibration_Stat123: 3.78950959e-12 + syst_JES_EtaIntercalibration_Stat124: 2.38209044e-14 + syst_JES_EtaIntercalibration_Stat125: 2.84145596e-15 + syst_JES_EtaIntercalibration_Stat126: 5.18341258e-16 + syst_JES_EtaIntercalibration_Stat127: 5.02121439e-17 + syst_JES_EtaIntercalibration_Stat128: 4.69745700e-14 + syst_JES_EtaIntercalibration_Stat129: 1.46205118e-08 + syst_JES_EtaIntercalibration_Stat13: 7.12652305e-09 + syst_JES_EtaIntercalibration_Stat130: 5.48609376e-08 + syst_JES_EtaIntercalibration_Stat131: 7.01263965e-08 + syst_JES_EtaIntercalibration_Stat132: 6.37725983e-08 + syst_JES_EtaIntercalibration_Stat133: 3.87978079e-08 + syst_JES_EtaIntercalibration_Stat134: 2.28064858e-09 + syst_JES_EtaIntercalibration_Stat135: 2.20847297e-12 + syst_JES_EtaIntercalibration_Stat136: 3.16500486e-13 + syst_JES_EtaIntercalibration_Stat137: 2.14860906e-08 + syst_JES_EtaIntercalibration_Stat138: 3.74711889e-08 + syst_JES_EtaIntercalibration_Stat139: 1.01263447e-08 + syst_JES_EtaIntercalibration_Stat14: 7.35775183e-09 + syst_JES_EtaIntercalibration_Stat140: 4.98917682e-09 + syst_JES_EtaIntercalibration_Stat141: 1.25628979e-08 + syst_JES_EtaIntercalibration_Stat142: 1.08088593e-07 + syst_JES_EtaIntercalibration_Stat143: 1.08098721e-07 + syst_JES_EtaIntercalibration_Stat144: 5.25540932e-09 + syst_JES_EtaIntercalibration_Stat145: 2.19721107e-09 + syst_JES_EtaIntercalibration_Stat146: 4.59916112e-12 + syst_JES_EtaIntercalibration_Stat147: 4.01386833e-09 + syst_JES_EtaIntercalibration_Stat148: 5.49473402e-08 + syst_JES_EtaIntercalibration_Stat149: 8.15948655e-09 + syst_JES_EtaIntercalibration_Stat15: 4.96889336e-22 + syst_JES_EtaIntercalibration_Stat150: 7.00520492e-08 + syst_JES_EtaIntercalibration_Stat151: 1.68449653e-08 + syst_JES_EtaIntercalibration_Stat152: 6.57089408e-09 + syst_JES_EtaIntercalibration_Stat153: 1.11855175e-08 + syst_JES_EtaIntercalibration_Stat154: 2.75424637e-12 + syst_JES_EtaIntercalibration_Stat155: 2.14738032e-08 + syst_JES_EtaIntercalibration_Stat156: 2.22881824e-08 + syst_JES_EtaIntercalibration_Stat157: 4.10533313e-08 + syst_JES_EtaIntercalibration_Stat158: 3.19915873e-08 + syst_JES_EtaIntercalibration_Stat159: 7.75902832e-09 + syst_JES_EtaIntercalibration_Stat16: 1.66254058e-22 + syst_JES_EtaIntercalibration_Stat160: 2.33672778e-09 + syst_JES_EtaIntercalibration_Stat161: 1.59853929e-09 + syst_JES_EtaIntercalibration_Stat162: 1.83313815e-10 + syst_JES_EtaIntercalibration_Stat163: 1.94400755e-09 + syst_JES_EtaIntercalibration_Stat164: 3.74802488e-09 + syst_JES_EtaIntercalibration_Stat165: 4.27246042e-08 + syst_JES_EtaIntercalibration_Stat166: 7.68346060e-08 + syst_JES_EtaIntercalibration_Stat167: 6.19148520e-08 + syst_JES_EtaIntercalibration_Stat168: 7.86544434e-08 + syst_JES_EtaIntercalibration_Stat169: 3.98968762e-08 + syst_JES_EtaIntercalibration_Stat17: 1.35273168e-12 + syst_JES_EtaIntercalibration_Stat170: 1.16036888e-08 + syst_JES_EtaIntercalibration_Stat171: 2.26908678e-09 + syst_JES_EtaIntercalibration_Stat172: 2.27056093e-10 + syst_JES_EtaIntercalibration_Stat173: 1.82113410e-08 + syst_JES_EtaIntercalibration_Stat174: 1.08298032e-07 + syst_JES_EtaIntercalibration_Stat175: 3.80862469e-09 + syst_JES_EtaIntercalibration_Stat176: 2.40178621e-08 + syst_JES_EtaIntercalibration_Stat177: 1.50695159e-07 + syst_JES_EtaIntercalibration_Stat178: 1.94440045e-08 + syst_JES_EtaIntercalibration_Stat179: 7.27468451e-08 + syst_JES_EtaIntercalibration_Stat18: 3.59919116e-23 + syst_JES_EtaIntercalibration_Stat180: 1.25483237e-07 + syst_JES_EtaIntercalibration_Stat181: 1.61450141e-09 + syst_JES_EtaIntercalibration_Stat182: 9.09040602e-08 + syst_JES_EtaIntercalibration_Stat183: 4.37947442e-07 + syst_JES_EtaIntercalibration_Stat184: 5.64735166e-09 + syst_JES_EtaIntercalibration_Stat185: 1.47158720e-07 + syst_JES_EtaIntercalibration_Stat186: 2.74689698e-07 + syst_JES_EtaIntercalibration_Stat187: 2.57862769e-07 + syst_JES_EtaIntercalibration_Stat188: 1.26183538e-08 + syst_JES_EtaIntercalibration_Stat189: 1.39223127e-08 + syst_JES_EtaIntercalibration_Stat19: 6.78980292e-23 + syst_JES_EtaIntercalibration_Stat190: 1.87663956e-08 + syst_JES_EtaIntercalibration_Stat191: 8.36688369e-08 + syst_JES_EtaIntercalibration_Stat192: 1.55869200e-07 + syst_JES_EtaIntercalibration_Stat193: 2.97415904e-07 + syst_JES_EtaIntercalibration_Stat194: 2.40148844e-07 + syst_JES_EtaIntercalibration_Stat195: 1.95799405e-07 + syst_JES_EtaIntercalibration_Stat196: 6.91462456e-08 + syst_JES_EtaIntercalibration_Stat197: 1.03547462e-07 + syst_JES_EtaIntercalibration_Stat198: 2.77704389e-07 + syst_JES_EtaIntercalibration_Stat199: 5.82793126e-07 + syst_JES_EtaIntercalibration_Stat2: 3.97748979e-23 + syst_JES_EtaIntercalibration_Stat20: 2.82135606e-23 + syst_JES_EtaIntercalibration_Stat200: 7.07099095e-07 + syst_JES_EtaIntercalibration_Stat201: 4.26631272e-07 + syst_JES_EtaIntercalibration_Stat202: 4.72813015e-07 + syst_JES_EtaIntercalibration_Stat203: 1.44479366e-07 + syst_JES_EtaIntercalibration_Stat204: 1.84335843e-08 + syst_JES_EtaIntercalibration_Stat205: 1.07735971e-07 + syst_JES_EtaIntercalibration_Stat206: 1.14191507e-07 + syst_JES_EtaIntercalibration_Stat207: 5.85831862e-07 + syst_JES_EtaIntercalibration_Stat208: 5.80401953e-07 + syst_JES_EtaIntercalibration_Stat209: 6.70414446e-07 + syst_JES_EtaIntercalibration_Stat21: 2.82135606e-23 + syst_JES_EtaIntercalibration_Stat210: 3.76143842e-07 + syst_JES_EtaIntercalibration_Stat211: 8.00235365e-07 + syst_JES_EtaIntercalibration_Stat212: 5.26525365e-07 + syst_JES_EtaIntercalibration_Stat213: 9.74924669e-07 + syst_JES_EtaIntercalibration_Stat214: 4.23012754e-07 + syst_JES_EtaIntercalibration_Stat215: 5.46076219e-07 + syst_JES_EtaIntercalibration_Stat216: 2.02324984e-07 + syst_JES_EtaIntercalibration_Stat217: 6.77989696e-09 + syst_JES_EtaIntercalibration_Stat218: 1.32334037e-07 + syst_JES_EtaIntercalibration_Stat219: 2.04180582e-08 + syst_JES_EtaIntercalibration_Stat22: 2.82135606e-23 + syst_JES_EtaIntercalibration_Stat220: 6.41230154e-07 + syst_JES_EtaIntercalibration_Stat221: 4.57711241e-07 + syst_JES_EtaIntercalibration_Stat222: 5.91062338e-08 + syst_JES_EtaIntercalibration_Stat223: 6.23033248e-07 + syst_JES_EtaIntercalibration_Stat224: 1.77523463e-06 + syst_JES_EtaIntercalibration_Stat225: 1.84011487e-06 + syst_JES_EtaIntercalibration_Stat226: 1.89944327e-06 + syst_JES_EtaIntercalibration_Stat227: 1.70750891e-06 + syst_JES_EtaIntercalibration_Stat228: 4.96108889e-07 + syst_JES_EtaIntercalibration_Stat229: 3.62531541e-08 + syst_JES_EtaIntercalibration_Stat23: 3.97748979e-23 + syst_JES_EtaIntercalibration_Stat230: 6.10288102e-08 + syst_JES_EtaIntercalibration_Stat231: 9.00737753e-07 + syst_JES_EtaIntercalibration_Stat232: 1.27738747e-06 + syst_JES_EtaIntercalibration_Stat233: 1.98201078e-06 + syst_JES_EtaIntercalibration_Stat234: 1.44122582e-06 + syst_JES_EtaIntercalibration_Stat235: 1.32931975e-06 + syst_JES_EtaIntercalibration_Stat236: 2.94178258e-07 + syst_JES_EtaIntercalibration_Stat237: 4.02528608e-07 + syst_JES_EtaIntercalibration_Stat238: 3.19948293e-07 + syst_JES_EtaIntercalibration_Stat239: 5.99626242e-09 + syst_JES_EtaIntercalibration_Stat24: 8.90056841e-20 + syst_JES_EtaIntercalibration_Stat240: 4.32956773e-09 + syst_JES_EtaIntercalibration_Stat241: 6.11901454e-09 + syst_JES_EtaIntercalibration_Stat242: 1.18792179e-07 + syst_JES_EtaIntercalibration_Stat243: 2.14051273e-08 + syst_JES_EtaIntercalibration_Stat244: 6.22412480e-08 + syst_JES_EtaIntercalibration_Stat245: 4.51646366e-07 + syst_JES_EtaIntercalibration_Stat25: 4.04016296e-21 + syst_JES_EtaIntercalibration_Stat26: 2.55022180e-21 + syst_JES_EtaIntercalibration_Stat27: 2.14860903e-08 + syst_JES_EtaIntercalibration_Stat28: 4.47662384e-21 + syst_JES_EtaIntercalibration_Stat29: 1.89488733e-20 + syst_JES_EtaIntercalibration_Stat3: 3.97748979e-23 + syst_JES_EtaIntercalibration_Stat30: 2.09707657e-20 + syst_JES_EtaIntercalibration_Stat31: 3.87202876e-20 + syst_JES_EtaIntercalibration_Stat32: 5.18509891e-22 + syst_JES_EtaIntercalibration_Stat33: 2.14860903e-08 + syst_JES_EtaIntercalibration_Stat34: 2.14860903e-08 + syst_JES_EtaIntercalibration_Stat35: 6.33237775e-09 + syst_JES_EtaIntercalibration_Stat36: 7.34735953e-09 + syst_JES_EtaIntercalibration_Stat37: 4.24381692e-20 + syst_JES_EtaIntercalibration_Stat38: 1.35099963e-12 + syst_JES_EtaIntercalibration_Stat39: 7.41486513e-20 + syst_JES_EtaIntercalibration_Stat4: 1.20230349e-22 + syst_JES_EtaIntercalibration_Stat40: 4.91024287e-19 + syst_JES_EtaIntercalibration_Stat41: 2.58460663e-20 + syst_JES_EtaIntercalibration_Stat42: 1.22177335e-22 + syst_JES_EtaIntercalibration_Stat43: 2.82135606e-23 + syst_JES_EtaIntercalibration_Stat44: 2.82135606e-23 + syst_JES_EtaIntercalibration_Stat45: 1.27881117e-20 + syst_JES_EtaIntercalibration_Stat46: 8.67194103e-20 + syst_JES_EtaIntercalibration_Stat47: 2.99818491e-19 + syst_JES_EtaIntercalibration_Stat48: 6.16777963e-19 + syst_JES_EtaIntercalibration_Stat49: 2.14860903e-08 + syst_JES_EtaIntercalibration_Stat5: 2.52496063e-22 + syst_JES_EtaIntercalibration_Stat50: 3.37240077e-18 + syst_JES_EtaIntercalibration_Stat51: 1.69931550e-18 + syst_JES_EtaIntercalibration_Stat52: 1.27611007e-18 + syst_JES_EtaIntercalibration_Stat53: 1.45394567e-18 + syst_JES_EtaIntercalibration_Stat54: 1.53217676e-16 + syst_JES_EtaIntercalibration_Stat55: 2.14860903e-08 + syst_JES_EtaIntercalibration_Stat56: 4.28249562e-09 + syst_JES_EtaIntercalibration_Stat57: 4.27989755e-09 + syst_JES_EtaIntercalibration_Stat58: 5.16930564e-09 + syst_JES_EtaIntercalibration_Stat59: 1.90592611e-19 + syst_JES_EtaIntercalibration_Stat6: 2.50574154e-22 + syst_JES_EtaIntercalibration_Stat60: 3.92338891e-20 + syst_JES_EtaIntercalibration_Stat61: 4.65051976e-19 + syst_JES_EtaIntercalibration_Stat62: 4.90088965e-19 + syst_JES_EtaIntercalibration_Stat63: 5.16756707e-20 + syst_JES_EtaIntercalibration_Stat64: 1.93383473e-23 + syst_JES_EtaIntercalibration_Stat65: 2.82135606e-23 + syst_JES_EtaIntercalibration_Stat66: 2.82135606e-23 + syst_JES_EtaIntercalibration_Stat67: 1.37300048e-19 + syst_JES_EtaIntercalibration_Stat68: 3.74210780e-18 + syst_JES_EtaIntercalibration_Stat69: 1.70087401e-11 + syst_JES_EtaIntercalibration_Stat7: 2.82135606e-23 + syst_JES_EtaIntercalibration_Stat70: 2.14860903e-08 + syst_JES_EtaIntercalibration_Stat71: 2.14860903e-08 + syst_JES_EtaIntercalibration_Stat72: 2.14860903e-08 + syst_JES_EtaIntercalibration_Stat73: 1.25487081e-08 + syst_JES_EtaIntercalibration_Stat74: 1.52591697e-13 + syst_JES_EtaIntercalibration_Stat75: 1.52847308e-16 + syst_JES_EtaIntercalibration_Stat76: 1.51983163e-16 + syst_JES_EtaIntercalibration_Stat77: 2.14860903e-08 + syst_JES_EtaIntercalibration_Stat78: 4.46349493e-09 + syst_JES_EtaIntercalibration_Stat79: 2.14860903e-08 + syst_JES_EtaIntercalibration_Stat8: 1.72772068e-23 + syst_JES_EtaIntercalibration_Stat80: 4.32233279e-09 + syst_JES_EtaIntercalibration_Stat81: 1.34436346e-17 + syst_JES_EtaIntercalibration_Stat82: 1.25487591e-08 + syst_JES_EtaIntercalibration_Stat83: 2.74769725e-17 + syst_JES_EtaIntercalibration_Stat84: 2.82348723e-16 + syst_JES_EtaIntercalibration_Stat85: 4.78090125e-17 + syst_JES_EtaIntercalibration_Stat86: 2.31234017e-20 + syst_JES_EtaIntercalibration_Stat87: 1.72772068e-23 + syst_JES_EtaIntercalibration_Stat88: 1.52256987e-20 + syst_JES_EtaIntercalibration_Stat89: 8.50025728e-17 + syst_JES_EtaIntercalibration_Stat9: 4.84902056e-22 + syst_JES_EtaIntercalibration_Stat90: 1.70001414e-11 + syst_JES_EtaIntercalibration_Stat91: 2.14860903e-08 + syst_JES_EtaIntercalibration_Stat92: 2.14860902e-08 + syst_JES_EtaIntercalibration_Stat93: 2.14860903e-08 + syst_JES_EtaIntercalibration_Stat94: 1.44177941e-17 + syst_JES_EtaIntercalibration_Stat95: 1.53197925e-13 + syst_JES_EtaIntercalibration_Stat96: 1.53076348e-13 + syst_JES_EtaIntercalibration_Stat97: 1.55237685e-16 + syst_JES_EtaIntercalibration_Stat98: 2.14860903e-08 + syst_JES_EtaIntercalibration_Stat99: 4.47305141e-09 + syst_JES_EtaIntercalibration_TotalStat_MJB: 3.93172570e-05 + syst_JES_Flavour_Comp: 9.73702311e-05 + syst_JES_Flavour_Response: 2.87366887e-06 + syst_JES_Gjet_Generator: 1.21490644e-04 + syst_JES_Gjet_OOC: 1.01029136e-04 + syst_JES_Gjet_Purity: 1.78727082e-05 + syst_JES_Gjet_Stat1: 3.10556710e-20 + syst_JES_Gjet_Stat10: 1.74636688e-06 + syst_JES_Gjet_Stat11: 2.01117950e-06 + syst_JES_Gjet_Stat12: 6.03309711e-06 + syst_JES_Gjet_Stat13: 2.09576358e-05 + syst_JES_Gjet_Stat14: 5.61804830e-05 + syst_JES_Gjet_Stat15: 6.48124531e-05 + syst_JES_Gjet_Stat2: 3.65635925e-07 + syst_JES_Gjet_Stat3: 2.21953576e-20 + syst_JES_Gjet_Stat4: 7.85103911e-18 + syst_JES_Gjet_Stat5: 5.99562119e-19 + syst_JES_Gjet_Stat6: 1.14334926e-06 + syst_JES_Gjet_Stat7: 7.03602786e-07 + syst_JES_Gjet_Stat8: 5.31652902e-08 + syst_JES_Gjet_Stat9: 8.92651571e-07 + syst_JES_Gjet_Veto: 1.01706136e-04 + syst_JES_Gjet_dPhi: 9.84941860e-06 + syst_JES_LArESZee: 1.81226233e-04 + syst_JES_LArEsmear: 1.52490561e-05 + syst_JES_LAr_JVT: 2.04290431e-05 + syst_JES_MJB_Alpha: 1.27752587e-06 + syst_JES_MJB_Asym: 2.22255860e-05 + syst_JES_MJB_Beta: 9.51681995e-07 + syst_JES_MJB_Fragmentation: 1.16055109e-05 syst_JES_MJB_Stat1: 0.0 - syst_JES_MJB_Stat10: 4.671608181343979e-07 - syst_JES_MJB_Stat11: 1.5028448048617662e-06 - syst_JES_MJB_Stat12: 2.5532996298907026e-06 - syst_JES_MJB_Stat13: 1.0571909997725104e-06 - syst_JES_MJB_Stat14: 1.1571299797343425e-06 - syst_JES_MJB_Stat15: 2.1188956628394896e-06 - syst_JES_MJB_Stat16: 3.2862856449188953e-07 - syst_JES_MJB_Stat2: 1.0574170180207996e-09 - syst_JES_MJB_Stat3: 3.5515701809199825e-07 - syst_JES_MJB_Stat4: 5.118345873424343e-09 - syst_JES_MJB_Stat5: 4.504249327024427e-08 + syst_JES_MJB_Stat10: 4.67160818e-07 + syst_JES_MJB_Stat11: 1.50284480e-06 + syst_JES_MJB_Stat12: 2.55329963e-06 + syst_JES_MJB_Stat13: 1.05719100e-06 + syst_JES_MJB_Stat14: 1.15712998e-06 + syst_JES_MJB_Stat15: 2.11889566e-06 + syst_JES_MJB_Stat16: 3.28628564e-07 + syst_JES_MJB_Stat2: 1.05741702e-09 + syst_JES_MJB_Stat3: 3.55157018e-07 + syst_JES_MJB_Stat4: 5.11834587e-09 + syst_JES_MJB_Stat5: 4.50424933e-08 syst_JES_MJB_Stat6: 0.0 syst_JES_MJB_Stat7: 0.0 syst_JES_MJB_Stat8: 0.0 - syst_JES_MJB_Stat9: 3.2839683311505916e-07 - syst_JES_MJB_Threshold: 1.4705205710903876e-05 - syst_JES_Pileup_MuOffset: 2.5069579174768773e-05 - syst_JES_Pileup_NPVOffset: 2.5997501322242493e-05 - syst_JES_Pileup_Pt_term: 1.8861476612397028e-05 - syst_JES_Pileup_Rho_topology: 3.4325006554988446e-05 - syst_JES_PunchThrough_MC15: 3.2889536329963666e-05 - syst_JES_SingleParticle_HighPt: 7.2957229936449755e-09 - syst_JES_Zjet_MC: 5.039836381272709e-05 - syst_JES_Zjet_MuScale: 3.6368876804212694e-06 - syst_JES_Zjet_MuSmearID: 5.510612307176037e-07 - syst_JES_Zjet_MuSmearMS: 1.281722266132566e-05 - syst_JES_Zjet_OOC: 2.8541444865318225e-05 - syst_JES_Zjet_Stat1: 1.7701725198409334e-06 - syst_JES_Zjet_Stat10: 2.2043749113977867e-06 - syst_JES_Zjet_Stat11: 3.0049999584026618e-06 - syst_JES_Zjet_Stat12: 8.152378839946043e-06 - syst_JES_Zjet_Stat13: 1.3375251427543334e-05 + syst_JES_MJB_Stat9: 3.28396833e-07 + syst_JES_MJB_Threshold: 1.47052057e-05 + syst_JES_Pileup_MuOffset: 2.50695792e-05 + syst_JES_Pileup_NPVOffset: 2.59975013e-05 + syst_JES_Pileup_Pt_term: 1.88614766e-05 + syst_JES_Pileup_Rho_topology: 3.43250066e-05 + syst_JES_PunchThrough_MC15: 3.28895363e-05 + syst_JES_SingleParticle_HighPt: 7.29572299e-09 + syst_JES_Zjet_MC: 5.03983638e-05 + syst_JES_Zjet_MuScale: 3.63688768e-06 + syst_JES_Zjet_MuSmearID: 5.51061231e-07 + syst_JES_Zjet_MuSmearMS: 1.28172227e-05 + syst_JES_Zjet_OOC: 2.85414449e-05 + syst_JES_Zjet_Stat1: 1.77017252e-06 + syst_JES_Zjet_Stat10: 2.20437491e-06 + syst_JES_Zjet_Stat11: 3.00499996e-06 + syst_JES_Zjet_Stat12: 8.15237884e-06 + syst_JES_Zjet_Stat13: 1.33752514e-05 syst_JES_Zjet_Stat2: 0.0 - syst_JES_Zjet_Stat3: 5.105219755309256e-07 - syst_JES_Zjet_Stat4: 1.0051090836322162e-06 - syst_JES_Zjet_Stat5: 6.075168207519671e-07 - syst_JES_Zjet_Stat6: 4.1468321342923925e-07 - syst_JES_Zjet_Stat7: 1.1201081856231567e-06 - syst_JES_Zjet_Stat8: 4.744379735012786e-07 - syst_JES_Zjet_Stat9: 1.2649241993099825e-06 - syst_JES_Zjet_Veto: 5.029022643615756e-06 - syst_JES_Zjet_dPhi: 5.478560577377966e-06 + syst_JES_Zjet_Stat3: 5.10521976e-07 + syst_JES_Zjet_Stat4: 1.00510908e-06 + syst_JES_Zjet_Stat5: 6.07516821e-07 + syst_JES_Zjet_Stat6: 4.14683213e-07 + syst_JES_Zjet_Stat7: 1.12010819e-06 + syst_JES_Zjet_Stat8: 4.74437974e-07 + syst_JES_Zjet_Stat9: 1.26492420e-06 + syst_JES_Zjet_Veto: 5.02902264e-06 + syst_JES_Zjet_dPhi: 5.47856058e-06 syst_PRW: 0.0 - syst_Unfolding_bias: 1.3411e-19 - syst_cleaning: 4.17337642083721e-05 + syst_Unfolding_bias: 1.34110000e-19 + syst_cleaning: 4.17337642e-05 syst_lumi: 8.21e-05 -- stat: 6.509e-05 - syst_JER_CROSS_CALIB_FORWARD: 2.074e-17 +- stat: 6.50900000e-05 + syst_JER_CROSS_CALIB_FORWARD: 2.07400000e-17 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 5.9717934282759655e-06 - syst_JER_NP1: 2.5718076813789946e-06 - syst_JER_NP2: 3.712369597709797e-06 - syst_JER_NP3: 5.46426728848434e-07 - syst_JER_NP4: 9.027448809048988e-19 + syst_JER_NP0: 5.97179343e-06 + syst_JER_NP1: 2.57180768e-06 + syst_JER_NP2: 3.71236960e-06 + syst_JER_NP3: 5.46426729e-07 + syst_JER_NP4: 9.02744881e-19 syst_JER_NP5: 0.0 syst_JER_NP6: 0.0 - syst_JER_NP7: 1.5787643110990315e-14 - syst_JER_NP8: 8.170361436313574e-07 - syst_JES_EtaIntercalibration_Modelling: 0.00012499616104104958 - syst_JES_EtaIntercalibration_NonClosure: 1.1231372879127465e-06 - syst_JES_EtaIntercalibration_Stat0: 7.764032457428292e-24 - syst_JES_EtaIntercalibration_Stat1: 7.764032457428292e-24 - syst_JES_EtaIntercalibration_Stat10: 7.712311785709912e-23 - syst_JES_EtaIntercalibration_Stat100: 6.810423775247463e-09 - syst_JES_EtaIntercalibration_Stat101: 2.0403558511567026e-09 - syst_JES_EtaIntercalibration_Stat102: 5.9582547780507745e-09 - syst_JES_EtaIntercalibration_Stat103: 5.958442584884299e-09 - syst_JES_EtaIntercalibration_Stat104: 1.0952013133067136e-14 - syst_JES_EtaIntercalibration_Stat105: 2.160375777834986e-17 - syst_JES_EtaIntercalibration_Stat106: 2.5384605571093673e-18 - syst_JES_EtaIntercalibration_Stat107: 1.8660305347664465e-21 - syst_JES_EtaIntercalibration_Stat108: 3.2352450834519476e-20 - syst_JES_EtaIntercalibration_Stat109: 2.7634476355899387e-11 - syst_JES_EtaIntercalibration_Stat11: 6.810423775360827e-09 - syst_JES_EtaIntercalibration_Stat110: 2.7586748731307574e-11 - syst_JES_EtaIntercalibration_Stat111: 6.8095598341940655e-09 - syst_JES_EtaIntercalibration_Stat112: 6.7460020165650704e-09 - syst_JES_EtaIntercalibration_Stat113: 7.100542394257072e-09 - syst_JES_EtaIntercalibration_Stat114: 5.288731698593908e-12 - syst_JES_EtaIntercalibration_Stat115: 2.0197469067930267e-15 - syst_JES_EtaIntercalibration_Stat116: 2.576722787316284e-13 - syst_JES_EtaIntercalibration_Stat117: 1.2822740853655274e-16 - syst_JES_EtaIntercalibration_Stat118: 6.810421775710517e-09 - syst_JES_EtaIntercalibration_Stat119: 6.745830125344101e-09 - syst_JES_EtaIntercalibration_Stat12: 2.8422953752205294e-09 - syst_JES_EtaIntercalibration_Stat120: 7.117867937910072e-09 - syst_JES_EtaIntercalibration_Stat121: 1.04379149618111e-08 - syst_JES_EtaIntercalibration_Stat122: 5.9573881897168534e-09 - syst_JES_EtaIntercalibration_Stat123: 3.2321255674030904e-13 - syst_JES_EtaIntercalibration_Stat124: 1.7134796198087681e-15 - syst_JES_EtaIntercalibration_Stat125: 1.9282918952274836e-16 - syst_JES_EtaIntercalibration_Stat126: 3.861091393634707e-17 - syst_JES_EtaIntercalibration_Stat127: 4.557023307005183e-18 - syst_JES_EtaIntercalibration_Stat128: 3.261193864503458e-15 - syst_JES_EtaIntercalibration_Stat129: 2.0072299587989413e-09 - syst_JES_EtaIntercalibration_Stat13: 3.249327314999216e-09 - syst_JES_EtaIntercalibration_Stat130: 1.4091066425221336e-08 - syst_JES_EtaIntercalibration_Stat131: 2.5194388105290432e-08 - syst_JES_EtaIntercalibration_Stat132: 3.0660939320249144e-08 - syst_JES_EtaIntercalibration_Stat133: 1.4420867614328899e-08 - syst_JES_EtaIntercalibration_Stat134: 5.369131198077465e-09 - syst_JES_EtaIntercalibration_Stat135: 1.6093086924204443e-13 - syst_JES_EtaIntercalibration_Stat136: 2.2506377246238453e-14 - syst_JES_EtaIntercalibration_Stat137: 6.810423741398197e-09 - syst_JES_EtaIntercalibration_Stat138: 1.6991800228345435e-08 - syst_JES_EtaIntercalibration_Stat139: 1.2069969055469862e-08 - syst_JES_EtaIntercalibration_Stat14: 3.3508254923227518e-09 - syst_JES_EtaIntercalibration_Stat140: 2.073226428597406e-08 - syst_JES_EtaIntercalibration_Stat141: 5.811245259838893e-09 - syst_JES_EtaIntercalibration_Stat142: 2.78830917767365e-08 - syst_JES_EtaIntercalibration_Stat143: 2.788658456307755e-08 - syst_JES_EtaIntercalibration_Stat144: 1.3872719785070085e-09 - syst_JES_EtaIntercalibration_Stat145: 2.438236827463649e-10 - syst_JES_EtaIntercalibration_Stat146: 2.9470122965980306e-11 - syst_JES_EtaIntercalibration_Stat147: 1.045568566618182e-09 - syst_JES_EtaIntercalibration_Stat148: 1.4121765992608715e-08 - syst_JES_EtaIntercalibration_Stat149: 1.2418447809609701e-08 - syst_JES_EtaIntercalibration_Stat15: 7.998191342422361e-23 - syst_JES_EtaIntercalibration_Stat150: 3.476967644370594e-08 - syst_JES_EtaIntercalibration_Stat151: 8.823208755889209e-09 - syst_JES_EtaIntercalibration_Stat152: 3.0807542501796535e-09 - syst_JES_EtaIntercalibration_Stat153: 3.71805281699978e-09 - syst_JES_EtaIntercalibration_Stat154: 2.0265799188534362e-13 - syst_JES_EtaIntercalibration_Stat155: 6.821466813288767e-09 - syst_JES_EtaIntercalibration_Stat156: 1.1386572915060966e-08 - syst_JES_EtaIntercalibration_Stat157: 2.2451822019604555e-08 - syst_JES_EtaIntercalibration_Stat158: 1.442802652883876e-08 - syst_JES_EtaIntercalibration_Stat159: 1.0453986825408321e-09 - syst_JES_EtaIntercalibration_Stat16: 3.3856539619399973e-23 - syst_JES_EtaIntercalibration_Stat160: 1.1027958313645368e-09 - syst_JES_EtaIntercalibration_Stat161: 9.981501195711997e-10 - syst_JES_EtaIntercalibration_Stat162: 2.6567681886645665e-11 - syst_JES_EtaIntercalibration_Stat163: 2.209285209903873e-10 - syst_JES_EtaIntercalibration_Stat164: 8.622208226869727e-10 - syst_JES_EtaIntercalibration_Stat165: 1.2177947394778811e-08 - syst_JES_EtaIntercalibration_Stat166: 1.891678272725042e-08 - syst_JES_EtaIntercalibration_Stat167: 2.2595930496441167e-08 - syst_JES_EtaIntercalibration_Stat168: 4.5248123726293885e-08 - syst_JES_EtaIntercalibration_Stat169: 3.829037590243795e-09 - syst_JES_EtaIntercalibration_Stat17: 9.903866519405118e-14 - syst_JES_EtaIntercalibration_Stat170: 2.2209272905703152e-08 - syst_JES_EtaIntercalibration_Stat171: 5.729476126139283e-09 - syst_JES_EtaIntercalibration_Stat172: 2.3986073559488637e-11 - syst_JES_EtaIntercalibration_Stat173: 7.156369330882805e-09 - syst_JES_EtaIntercalibration_Stat174: 4.1645156510091304e-08 - syst_JES_EtaIntercalibration_Stat175: 1.031967906477716e-08 - syst_JES_EtaIntercalibration_Stat176: 2.610832110171008e-08 - syst_JES_EtaIntercalibration_Stat177: 3.839726650427084e-08 - syst_JES_EtaIntercalibration_Stat178: 8.901501165533821e-09 - syst_JES_EtaIntercalibration_Stat179: 2.905117842704492e-08 - syst_JES_EtaIntercalibration_Stat18: 9.905725617035836e-24 - syst_JES_EtaIntercalibration_Stat180: 5.067373304533622e-08 - syst_JES_EtaIntercalibration_Stat181: 1.7584727549780236e-10 - syst_JES_EtaIntercalibration_Stat182: 2.8403460823463045e-08 - syst_JES_EtaIntercalibration_Stat183: 1.2879961907940567e-07 - syst_JES_EtaIntercalibration_Stat184: 2.7530947586311573e-09 - syst_JES_EtaIntercalibration_Stat185: 4.9181438571884005e-08 - syst_JES_EtaIntercalibration_Stat186: 1.2983596448981305e-07 - syst_JES_EtaIntercalibration_Stat187: 7.880738099949777e-08 - syst_JES_EtaIntercalibration_Stat188: 3.394948074713367e-08 - syst_JES_EtaIntercalibration_Stat189: 5.49413488367368e-09 - syst_JES_EtaIntercalibration_Stat19: 1.1581829335212983e-23 - syst_JES_EtaIntercalibration_Stat190: 4.722490127041029e-09 - syst_JES_EtaIntercalibration_Stat191: 2.064471822888363e-08 - syst_JES_EtaIntercalibration_Stat192: 7.403991946916204e-08 - syst_JES_EtaIntercalibration_Stat193: 1.7109554896314516e-07 - syst_JES_EtaIntercalibration_Stat194: 1.7277206805499554e-07 - syst_JES_EtaIntercalibration_Stat195: 1.1877982657000304e-07 - syst_JES_EtaIntercalibration_Stat196: 3.585280567821715e-08 - syst_JES_EtaIntercalibration_Stat197: 2.6734012044584704e-08 - syst_JES_EtaIntercalibration_Stat198: 8.827294758305061e-08 - syst_JES_EtaIntercalibration_Stat199: 2.065854060673212e-07 - syst_JES_EtaIntercalibration_Stat2: 1.094606645101335e-23 - syst_JES_EtaIntercalibration_Stat20: 7.764032457428292e-24 - syst_JES_EtaIntercalibration_Stat200: 3.2551062839790655e-07 - syst_JES_EtaIntercalibration_Stat201: 2.489421217873745e-07 - syst_JES_EtaIntercalibration_Stat202: 2.942307937657104e-07 - syst_JES_EtaIntercalibration_Stat203: 1.1975520697202773e-07 - syst_JES_EtaIntercalibration_Stat204: 2.1052383709867633e-08 - syst_JES_EtaIntercalibration_Stat205: 4.845423367209515e-08 - syst_JES_EtaIntercalibration_Stat206: 6.132205720619621e-08 - syst_JES_EtaIntercalibration_Stat207: 3.0749294638251463e-07 - syst_JES_EtaIntercalibration_Stat208: 3.062395977008852e-07 - syst_JES_EtaIntercalibration_Stat209: 3.1379060310978084e-07 - syst_JES_EtaIntercalibration_Stat21: 7.764032457428292e-24 - syst_JES_EtaIntercalibration_Stat210: 8.632704370589787e-08 - syst_JES_EtaIntercalibration_Stat211: 2.9209999572064357e-07 - syst_JES_EtaIntercalibration_Stat212: 2.3451539395101548e-07 - syst_JES_EtaIntercalibration_Stat213: 4.351851131415228e-07 - syst_JES_EtaIntercalibration_Stat214: 2.527194640307707e-07 - syst_JES_EtaIntercalibration_Stat215: 1.5225848909009965e-07 - syst_JES_EtaIntercalibration_Stat216: 6.73423399560039e-08 - syst_JES_EtaIntercalibration_Stat217: 1.6679560296587557e-08 - syst_JES_EtaIntercalibration_Stat218: 4.9776702087924634e-08 - syst_JES_EtaIntercalibration_Stat219: 3.146091195038694e-08 - syst_JES_EtaIntercalibration_Stat22: 7.764032457428292e-24 - syst_JES_EtaIntercalibration_Stat220: 3.5542546335342943e-07 - syst_JES_EtaIntercalibration_Stat221: 2.5340045382753365e-07 - syst_JES_EtaIntercalibration_Stat222: 2.5703633984322137e-08 - syst_JES_EtaIntercalibration_Stat223: 2.272023697059518e-07 - syst_JES_EtaIntercalibration_Stat224: 7.245820381433699e-07 - syst_JES_EtaIntercalibration_Stat225: 9.92088791389158e-07 - syst_JES_EtaIntercalibration_Stat226: 1.0801717675906922e-06 - syst_JES_EtaIntercalibration_Stat227: 1.0442633324502015e-06 - syst_JES_EtaIntercalibration_Stat228: 2.3475661865003935e-07 - syst_JES_EtaIntercalibration_Stat229: 9.760434006743757e-09 - syst_JES_EtaIntercalibration_Stat23: 1.094606645101335e-23 - syst_JES_EtaIntercalibration_Stat230: 3.186107460544474e-08 - syst_JES_EtaIntercalibration_Stat231: 4.2987124816623874e-07 - syst_JES_EtaIntercalibration_Stat232: 7.504110123795011e-07 - syst_JES_EtaIntercalibration_Stat233: 9.31855711738679e-07 - syst_JES_EtaIntercalibration_Stat234: 8.460383014379431e-07 - syst_JES_EtaIntercalibration_Stat235: 8.095243464529031e-07 - syst_JES_EtaIntercalibration_Stat236: 1.5246207790791783e-07 - syst_JES_EtaIntercalibration_Stat237: 2.2516660498395406e-07 - syst_JES_EtaIntercalibration_Stat238: 2.0723914881122243e-07 - syst_JES_EtaIntercalibration_Stat239: 3.886756437892655e-08 - syst_JES_EtaIntercalibration_Stat24: 8.944359269953325e-21 - syst_JES_EtaIntercalibration_Stat240: 1.8778883752768693e-09 - syst_JES_EtaIntercalibration_Stat241: 2.25856303874831e-09 - syst_JES_EtaIntercalibration_Stat242: 5.564999258760058e-08 - syst_JES_EtaIntercalibration_Stat243: 1.0164318769682342e-08 - syst_JES_EtaIntercalibration_Stat244: 4.83761792245335e-08 - syst_JES_EtaIntercalibration_Stat245: 2.409343634685596e-07 - syst_JES_EtaIntercalibration_Stat25: 5.724495261592938e-22 - syst_JES_EtaIntercalibration_Stat26: 3.565572148628464e-22 - syst_JES_EtaIntercalibration_Stat27: 6.8104237753608775e-09 - syst_JES_EtaIntercalibration_Stat28: 6.095131253713903e-22 - syst_JES_EtaIntercalibration_Stat29: 2.393085194889643e-21 - syst_JES_EtaIntercalibration_Stat3: 1.094606645101335e-23 - syst_JES_EtaIntercalibration_Stat30: 2.6222603125548005e-21 - syst_JES_EtaIntercalibration_Stat31: 3.5020342131395576e-21 - syst_JES_EtaIntercalibration_Stat32: 7.945368635249091e-23 - syst_JES_EtaIntercalibration_Stat33: 6.810423775360844e-09 - syst_JES_EtaIntercalibration_Stat34: 6.810423775360897e-09 - syst_JES_EtaIntercalibration_Stat35: 3.1670549016396234e-09 - syst_JES_EtaIntercalibration_Stat36: 1.2075858230370394e-08 - syst_JES_EtaIntercalibration_Stat37: 5.832771830785085e-21 - syst_JES_EtaIntercalibration_Stat38: 9.890010101472617e-14 - syst_JES_EtaIntercalibration_Stat39: 8.464331415510796e-21 - syst_JES_EtaIntercalibration_Stat4: 2.0661836196233866e-23 - syst_JES_EtaIntercalibration_Stat40: 5.570711144172775e-20 - syst_JES_EtaIntercalibration_Stat41: 1.963986508883144e-21 - syst_JES_EtaIntercalibration_Stat42: 2.099475772663262e-23 - syst_JES_EtaIntercalibration_Stat43: 7.764032457428292e-24 - syst_JES_EtaIntercalibration_Stat44: 7.764032457428292e-24 - syst_JES_EtaIntercalibration_Stat45: 1.554732237742242e-21 - syst_JES_EtaIntercalibration_Stat46: 8.164452785092214e-21 - syst_JES_EtaIntercalibration_Stat47: 2.2709742402766263e-20 - syst_JES_EtaIntercalibration_Stat48: 6.323399597328956e-20 - syst_JES_EtaIntercalibration_Stat49: 6.810423775361226e-09 - syst_JES_EtaIntercalibration_Stat5: 4.247326306042426e-23 - syst_JES_EtaIntercalibration_Stat50: 3.1914737160127135e-19 - syst_JES_EtaIntercalibration_Stat51: 1.259617255359738e-19 - syst_JES_EtaIntercalibration_Stat52: 1.3191818221913158e-19 - syst_JES_EtaIntercalibration_Stat53: 1.5049572019413043e-19 - syst_JES_EtaIntercalibration_Stat54: 1.2749265740499528e-17 - syst_JES_EtaIntercalibration_Stat55: 6.810423775360764e-09 - syst_JES_EtaIntercalibration_Stat56: 2.0143750892026104e-09 - syst_JES_EtaIntercalibration_Stat57: 2.0135090637980026e-09 - syst_JES_EtaIntercalibration_Stat58: 1.167748654463319e-08 - syst_JES_EtaIntercalibration_Stat59: 2.3157399611139413e-20 - syst_JES_EtaIntercalibration_Stat6: 4.204490127233028e-23 - syst_JES_EtaIntercalibration_Stat60: 3.208172200412565e-21 - syst_JES_EtaIntercalibration_Stat61: 5.2387613755543404e-20 - syst_JES_EtaIntercalibration_Stat62: 5.3603752182100086e-20 - syst_JES_EtaIntercalibration_Stat63: 4.867454994142216e-21 - syst_JES_EtaIntercalibration_Stat64: 2.8396972990091743e-24 - syst_JES_EtaIntercalibration_Stat65: 7.764032457428292e-24 - syst_JES_EtaIntercalibration_Stat66: 7.764032457428292e-24 - syst_JES_EtaIntercalibration_Stat67: 1.5845751575737896e-20 - syst_JES_EtaIntercalibration_Stat68: 3.4811637019824277e-19 - syst_JES_EtaIntercalibration_Stat69: 2.760022951500456e-11 - syst_JES_EtaIntercalibration_Stat7: 7.764032457428292e-24 - syst_JES_EtaIntercalibration_Stat70: 6.81042377276679e-09 - syst_JES_EtaIntercalibration_Stat71: 6.810423773608568e-09 - syst_JES_EtaIntercalibration_Stat72: 6.810423775431782e-09 - syst_JES_EtaIntercalibration_Stat73: 5.958254778189214e-09 - syst_JES_EtaIntercalibration_Stat74: 1.0882301827854728e-14 - syst_JES_EtaIntercalibration_Stat75: 1.272891551822071e-17 - syst_JES_EtaIntercalibration_Stat76: 1.2660518808672366e-17 - syst_JES_EtaIntercalibration_Stat77: 6.810423775377422e-09 - syst_JES_EtaIntercalibration_Stat78: 2.099245578760105e-09 - syst_JES_EtaIntercalibration_Stat79: 6.8104237753625765e-09 - syst_JES_EtaIntercalibration_Stat8: 4.754479466776568e-24 - syst_JES_EtaIntercalibration_Stat80: 2.033427647641302e-09 - syst_JES_EtaIntercalibration_Stat81: 1.0064528485229698e-18 - syst_JES_EtaIntercalibration_Stat82: 5.958258417373251e-09 - syst_JES_EtaIntercalibration_Stat83: 2.340010886470403e-18 - syst_JES_EtaIntercalibration_Stat84: 2.184984638389936e-17 - syst_JES_EtaIntercalibration_Stat85: 4.345635396578963e-18 - syst_JES_EtaIntercalibration_Stat86: 1.702087272637628e-21 - syst_JES_EtaIntercalibration_Stat87: 4.754479466776568e-24 - syst_JES_EtaIntercalibration_Stat88: 1.6655493838370568e-21 - syst_JES_EtaIntercalibration_Stat89: 7.194122167957672e-18 - syst_JES_EtaIntercalibration_Stat9: 7.712311785709912e-23 - syst_JES_EtaIntercalibration_Stat90: 2.7600224679382043e-11 - syst_JES_EtaIntercalibration_Stat91: 6.8104237749125125e-09 - syst_JES_EtaIntercalibration_Stat92: 6.810423780369339e-09 - syst_JES_EtaIntercalibration_Stat93: 6.810423775506376e-09 - syst_JES_EtaIntercalibration_Stat94: 1.3596422295221638e-18 - syst_JES_EtaIntercalibration_Stat95: 1.0925597065469234e-14 - syst_JES_EtaIntercalibration_Stat96: 1.0918652461155636e-14 - syst_JES_EtaIntercalibration_Stat97: 1.3115751214474908e-17 - syst_JES_EtaIntercalibration_Stat98: 6.810423775389523e-09 - syst_JES_EtaIntercalibration_Stat99: 2.1035778587403692e-09 - syst_JES_EtaIntercalibration_TotalStat_MJB: 2.2917325323867967e-05 - syst_JES_Flavour_Comp: 5.357570974798187e-05 - syst_JES_Flavour_Response: 5.383936663817657e-06 - syst_JES_Gjet_Generator: 6.473355930272952e-05 - syst_JES_Gjet_OOC: 5.386578018556865e-05 - syst_JES_Gjet_Purity: 9.410967790296597e-06 - syst_JES_Gjet_Stat1: 4.868794820076114e-21 - syst_JES_Gjet_Stat10: 1.0078269531521768e-06 - syst_JES_Gjet_Stat11: 1.1253991591875304e-06 - syst_JES_Gjet_Stat12: 3.0619537472012865e-06 - syst_JES_Gjet_Stat13: 1.1168748184107293e-05 - syst_JES_Gjet_Stat14: 3.0337492892458992e-05 - syst_JES_Gjet_Stat15: 4.052207546510914e-05 - syst_JES_Gjet_Stat2: 1.792672585833786e-07 - syst_JES_Gjet_Stat3: 3.1598722929099527e-21 - syst_JES_Gjet_Stat4: 8.8937767427567e-19 - syst_JES_Gjet_Stat5: 8.424847043567021e-20 - syst_JES_Gjet_Stat6: 7.015585560022769e-07 - syst_JES_Gjet_Stat7: 3.8004599968293314e-07 - syst_JES_Gjet_Stat8: 7.154235126274006e-09 - syst_JES_Gjet_Stat9: 4.6302583154182665e-07 - syst_JES_Gjet_Veto: 5.4830658394733876e-05 - syst_JES_Gjet_dPhi: 5.523295642096303e-06 - syst_JES_LArESZee: 9.495455162866074e-05 - syst_JES_LArEsmear: 8.687801620663307e-06 - syst_JES_LAr_JVT: 1.1099179282721764e-05 - syst_JES_MJB_Alpha: 8.044936171281908e-07 - syst_JES_MJB_Asym: 1.387927501708933e-05 - syst_JES_MJB_Beta: 5.434201321261479e-07 - syst_JES_MJB_Fragmentation: 6.239964483071999e-06 + syst_JER_NP7: 1.57876431e-14 + syst_JER_NP8: 8.17036144e-07 + syst_JES_EtaIntercalibration_Modelling: 1.24996161e-04 + syst_JES_EtaIntercalibration_NonClosure: 1.12313729e-06 + syst_JES_EtaIntercalibration_Stat0: 7.76403246e-24 + syst_JES_EtaIntercalibration_Stat1: 7.76403246e-24 + syst_JES_EtaIntercalibration_Stat10: 7.71231179e-23 + syst_JES_EtaIntercalibration_Stat100: 6.81042378e-09 + syst_JES_EtaIntercalibration_Stat101: 2.04035585e-09 + syst_JES_EtaIntercalibration_Stat102: 5.95825478e-09 + syst_JES_EtaIntercalibration_Stat103: 5.95844258e-09 + syst_JES_EtaIntercalibration_Stat104: 1.09520131e-14 + syst_JES_EtaIntercalibration_Stat105: 2.16037578e-17 + syst_JES_EtaIntercalibration_Stat106: 2.53846056e-18 + syst_JES_EtaIntercalibration_Stat107: 1.86603053e-21 + syst_JES_EtaIntercalibration_Stat108: 3.23524508e-20 + syst_JES_EtaIntercalibration_Stat109: 2.76344764e-11 + syst_JES_EtaIntercalibration_Stat11: 6.81042378e-09 + syst_JES_EtaIntercalibration_Stat110: 2.75867487e-11 + syst_JES_EtaIntercalibration_Stat111: 6.80955983e-09 + syst_JES_EtaIntercalibration_Stat112: 6.74600202e-09 + syst_JES_EtaIntercalibration_Stat113: 7.10054239e-09 + syst_JES_EtaIntercalibration_Stat114: 5.28873170e-12 + syst_JES_EtaIntercalibration_Stat115: 2.01974691e-15 + syst_JES_EtaIntercalibration_Stat116: 2.57672279e-13 + syst_JES_EtaIntercalibration_Stat117: 1.28227409e-16 + syst_JES_EtaIntercalibration_Stat118: 6.81042178e-09 + syst_JES_EtaIntercalibration_Stat119: 6.74583013e-09 + syst_JES_EtaIntercalibration_Stat12: 2.84229538e-09 + syst_JES_EtaIntercalibration_Stat120: 7.11786794e-09 + syst_JES_EtaIntercalibration_Stat121: 1.04379150e-08 + syst_JES_EtaIntercalibration_Stat122: 5.95738819e-09 + syst_JES_EtaIntercalibration_Stat123: 3.23212557e-13 + syst_JES_EtaIntercalibration_Stat124: 1.71347962e-15 + syst_JES_EtaIntercalibration_Stat125: 1.92829190e-16 + syst_JES_EtaIntercalibration_Stat126: 3.86109139e-17 + syst_JES_EtaIntercalibration_Stat127: 4.55702331e-18 + syst_JES_EtaIntercalibration_Stat128: 3.26119386e-15 + syst_JES_EtaIntercalibration_Stat129: 2.00722996e-09 + syst_JES_EtaIntercalibration_Stat13: 3.24932731e-09 + syst_JES_EtaIntercalibration_Stat130: 1.40910664e-08 + syst_JES_EtaIntercalibration_Stat131: 2.51943881e-08 + syst_JES_EtaIntercalibration_Stat132: 3.06609393e-08 + syst_JES_EtaIntercalibration_Stat133: 1.44208676e-08 + syst_JES_EtaIntercalibration_Stat134: 5.36913120e-09 + syst_JES_EtaIntercalibration_Stat135: 1.60930869e-13 + syst_JES_EtaIntercalibration_Stat136: 2.25063772e-14 + syst_JES_EtaIntercalibration_Stat137: 6.81042374e-09 + syst_JES_EtaIntercalibration_Stat138: 1.69918002e-08 + syst_JES_EtaIntercalibration_Stat139: 1.20699691e-08 + syst_JES_EtaIntercalibration_Stat14: 3.35082549e-09 + syst_JES_EtaIntercalibration_Stat140: 2.07322643e-08 + syst_JES_EtaIntercalibration_Stat141: 5.81124526e-09 + syst_JES_EtaIntercalibration_Stat142: 2.78830918e-08 + syst_JES_EtaIntercalibration_Stat143: 2.78865846e-08 + syst_JES_EtaIntercalibration_Stat144: 1.38727198e-09 + syst_JES_EtaIntercalibration_Stat145: 2.43823683e-10 + syst_JES_EtaIntercalibration_Stat146: 2.94701230e-11 + syst_JES_EtaIntercalibration_Stat147: 1.04556857e-09 + syst_JES_EtaIntercalibration_Stat148: 1.41217660e-08 + syst_JES_EtaIntercalibration_Stat149: 1.24184478e-08 + syst_JES_EtaIntercalibration_Stat15: 7.99819134e-23 + syst_JES_EtaIntercalibration_Stat150: 3.47696764e-08 + syst_JES_EtaIntercalibration_Stat151: 8.82320876e-09 + syst_JES_EtaIntercalibration_Stat152: 3.08075425e-09 + syst_JES_EtaIntercalibration_Stat153: 3.71805282e-09 + syst_JES_EtaIntercalibration_Stat154: 2.02657992e-13 + syst_JES_EtaIntercalibration_Stat155: 6.82146681e-09 + syst_JES_EtaIntercalibration_Stat156: 1.13865729e-08 + syst_JES_EtaIntercalibration_Stat157: 2.24518220e-08 + syst_JES_EtaIntercalibration_Stat158: 1.44280265e-08 + syst_JES_EtaIntercalibration_Stat159: 1.04539868e-09 + syst_JES_EtaIntercalibration_Stat16: 3.38565396e-23 + syst_JES_EtaIntercalibration_Stat160: 1.10279583e-09 + syst_JES_EtaIntercalibration_Stat161: 9.98150120e-10 + syst_JES_EtaIntercalibration_Stat162: 2.65676819e-11 + syst_JES_EtaIntercalibration_Stat163: 2.20928521e-10 + syst_JES_EtaIntercalibration_Stat164: 8.62220823e-10 + syst_JES_EtaIntercalibration_Stat165: 1.21779474e-08 + syst_JES_EtaIntercalibration_Stat166: 1.89167827e-08 + syst_JES_EtaIntercalibration_Stat167: 2.25959305e-08 + syst_JES_EtaIntercalibration_Stat168: 4.52481237e-08 + syst_JES_EtaIntercalibration_Stat169: 3.82903759e-09 + syst_JES_EtaIntercalibration_Stat17: 9.90386652e-14 + syst_JES_EtaIntercalibration_Stat170: 2.22092729e-08 + syst_JES_EtaIntercalibration_Stat171: 5.72947613e-09 + syst_JES_EtaIntercalibration_Stat172: 2.39860736e-11 + syst_JES_EtaIntercalibration_Stat173: 7.15636933e-09 + syst_JES_EtaIntercalibration_Stat174: 4.16451565e-08 + syst_JES_EtaIntercalibration_Stat175: 1.03196791e-08 + syst_JES_EtaIntercalibration_Stat176: 2.61083211e-08 + syst_JES_EtaIntercalibration_Stat177: 3.83972665e-08 + syst_JES_EtaIntercalibration_Stat178: 8.90150117e-09 + syst_JES_EtaIntercalibration_Stat179: 2.90511784e-08 + syst_JES_EtaIntercalibration_Stat18: 9.90572562e-24 + syst_JES_EtaIntercalibration_Stat180: 5.06737330e-08 + syst_JES_EtaIntercalibration_Stat181: 1.75847275e-10 + syst_JES_EtaIntercalibration_Stat182: 2.84034608e-08 + syst_JES_EtaIntercalibration_Stat183: 1.28799619e-07 + syst_JES_EtaIntercalibration_Stat184: 2.75309476e-09 + syst_JES_EtaIntercalibration_Stat185: 4.91814386e-08 + syst_JES_EtaIntercalibration_Stat186: 1.29835964e-07 + syst_JES_EtaIntercalibration_Stat187: 7.88073810e-08 + syst_JES_EtaIntercalibration_Stat188: 3.39494807e-08 + syst_JES_EtaIntercalibration_Stat189: 5.49413488e-09 + syst_JES_EtaIntercalibration_Stat19: 1.15818293e-23 + syst_JES_EtaIntercalibration_Stat190: 4.72249013e-09 + syst_JES_EtaIntercalibration_Stat191: 2.06447182e-08 + syst_JES_EtaIntercalibration_Stat192: 7.40399195e-08 + syst_JES_EtaIntercalibration_Stat193: 1.71095549e-07 + syst_JES_EtaIntercalibration_Stat194: 1.72772068e-07 + syst_JES_EtaIntercalibration_Stat195: 1.18779827e-07 + syst_JES_EtaIntercalibration_Stat196: 3.58528057e-08 + syst_JES_EtaIntercalibration_Stat197: 2.67340120e-08 + syst_JES_EtaIntercalibration_Stat198: 8.82729476e-08 + syst_JES_EtaIntercalibration_Stat199: 2.06585406e-07 + syst_JES_EtaIntercalibration_Stat2: 1.09460665e-23 + syst_JES_EtaIntercalibration_Stat20: 7.76403246e-24 + syst_JES_EtaIntercalibration_Stat200: 3.25510628e-07 + syst_JES_EtaIntercalibration_Stat201: 2.48942122e-07 + syst_JES_EtaIntercalibration_Stat202: 2.94230794e-07 + syst_JES_EtaIntercalibration_Stat203: 1.19755207e-07 + syst_JES_EtaIntercalibration_Stat204: 2.10523837e-08 + syst_JES_EtaIntercalibration_Stat205: 4.84542337e-08 + syst_JES_EtaIntercalibration_Stat206: 6.13220572e-08 + syst_JES_EtaIntercalibration_Stat207: 3.07492946e-07 + syst_JES_EtaIntercalibration_Stat208: 3.06239598e-07 + syst_JES_EtaIntercalibration_Stat209: 3.13790603e-07 + syst_JES_EtaIntercalibration_Stat21: 7.76403246e-24 + syst_JES_EtaIntercalibration_Stat210: 8.63270437e-08 + syst_JES_EtaIntercalibration_Stat211: 2.92099996e-07 + syst_JES_EtaIntercalibration_Stat212: 2.34515394e-07 + syst_JES_EtaIntercalibration_Stat213: 4.35185113e-07 + syst_JES_EtaIntercalibration_Stat214: 2.52719464e-07 + syst_JES_EtaIntercalibration_Stat215: 1.52258489e-07 + syst_JES_EtaIntercalibration_Stat216: 6.73423400e-08 + syst_JES_EtaIntercalibration_Stat217: 1.66795603e-08 + syst_JES_EtaIntercalibration_Stat218: 4.97767021e-08 + syst_JES_EtaIntercalibration_Stat219: 3.14609120e-08 + syst_JES_EtaIntercalibration_Stat22: 7.76403246e-24 + syst_JES_EtaIntercalibration_Stat220: 3.55425463e-07 + syst_JES_EtaIntercalibration_Stat221: 2.53400454e-07 + syst_JES_EtaIntercalibration_Stat222: 2.57036340e-08 + syst_JES_EtaIntercalibration_Stat223: 2.27202370e-07 + syst_JES_EtaIntercalibration_Stat224: 7.24582038e-07 + syst_JES_EtaIntercalibration_Stat225: 9.92088791e-07 + syst_JES_EtaIntercalibration_Stat226: 1.08017177e-06 + syst_JES_EtaIntercalibration_Stat227: 1.04426333e-06 + syst_JES_EtaIntercalibration_Stat228: 2.34756619e-07 + syst_JES_EtaIntercalibration_Stat229: 9.76043401e-09 + syst_JES_EtaIntercalibration_Stat23: 1.09460665e-23 + syst_JES_EtaIntercalibration_Stat230: 3.18610746e-08 + syst_JES_EtaIntercalibration_Stat231: 4.29871248e-07 + syst_JES_EtaIntercalibration_Stat232: 7.50411012e-07 + syst_JES_EtaIntercalibration_Stat233: 9.31855712e-07 + syst_JES_EtaIntercalibration_Stat234: 8.46038301e-07 + syst_JES_EtaIntercalibration_Stat235: 8.09524346e-07 + syst_JES_EtaIntercalibration_Stat236: 1.52462078e-07 + syst_JES_EtaIntercalibration_Stat237: 2.25166605e-07 + syst_JES_EtaIntercalibration_Stat238: 2.07239149e-07 + syst_JES_EtaIntercalibration_Stat239: 3.88675644e-08 + syst_JES_EtaIntercalibration_Stat24: 8.94435927e-21 + syst_JES_EtaIntercalibration_Stat240: 1.87788838e-09 + syst_JES_EtaIntercalibration_Stat241: 2.25856304e-09 + syst_JES_EtaIntercalibration_Stat242: 5.56499926e-08 + syst_JES_EtaIntercalibration_Stat243: 1.01643188e-08 + syst_JES_EtaIntercalibration_Stat244: 4.83761792e-08 + syst_JES_EtaIntercalibration_Stat245: 2.40934363e-07 + syst_JES_EtaIntercalibration_Stat25: 5.72449526e-22 + syst_JES_EtaIntercalibration_Stat26: 3.56557215e-22 + syst_JES_EtaIntercalibration_Stat27: 6.81042378e-09 + syst_JES_EtaIntercalibration_Stat28: 6.09513125e-22 + syst_JES_EtaIntercalibration_Stat29: 2.39308519e-21 + syst_JES_EtaIntercalibration_Stat3: 1.09460665e-23 + syst_JES_EtaIntercalibration_Stat30: 2.62226031e-21 + syst_JES_EtaIntercalibration_Stat31: 3.50203421e-21 + syst_JES_EtaIntercalibration_Stat32: 7.94536864e-23 + syst_JES_EtaIntercalibration_Stat33: 6.81042378e-09 + syst_JES_EtaIntercalibration_Stat34: 6.81042378e-09 + syst_JES_EtaIntercalibration_Stat35: 3.16705490e-09 + syst_JES_EtaIntercalibration_Stat36: 1.20758582e-08 + syst_JES_EtaIntercalibration_Stat37: 5.83277183e-21 + syst_JES_EtaIntercalibration_Stat38: 9.89001010e-14 + syst_JES_EtaIntercalibration_Stat39: 8.46433142e-21 + syst_JES_EtaIntercalibration_Stat4: 2.06618362e-23 + syst_JES_EtaIntercalibration_Stat40: 5.57071114e-20 + syst_JES_EtaIntercalibration_Stat41: 1.96398651e-21 + syst_JES_EtaIntercalibration_Stat42: 2.09947577e-23 + syst_JES_EtaIntercalibration_Stat43: 7.76403246e-24 + syst_JES_EtaIntercalibration_Stat44: 7.76403246e-24 + syst_JES_EtaIntercalibration_Stat45: 1.55473224e-21 + syst_JES_EtaIntercalibration_Stat46: 8.16445279e-21 + syst_JES_EtaIntercalibration_Stat47: 2.27097424e-20 + syst_JES_EtaIntercalibration_Stat48: 6.32339960e-20 + syst_JES_EtaIntercalibration_Stat49: 6.81042378e-09 + syst_JES_EtaIntercalibration_Stat5: 4.24732631e-23 + syst_JES_EtaIntercalibration_Stat50: 3.19147372e-19 + syst_JES_EtaIntercalibration_Stat51: 1.25961726e-19 + syst_JES_EtaIntercalibration_Stat52: 1.31918182e-19 + syst_JES_EtaIntercalibration_Stat53: 1.50495720e-19 + syst_JES_EtaIntercalibration_Stat54: 1.27492657e-17 + syst_JES_EtaIntercalibration_Stat55: 6.81042378e-09 + syst_JES_EtaIntercalibration_Stat56: 2.01437509e-09 + syst_JES_EtaIntercalibration_Stat57: 2.01350906e-09 + syst_JES_EtaIntercalibration_Stat58: 1.16774865e-08 + syst_JES_EtaIntercalibration_Stat59: 2.31573996e-20 + syst_JES_EtaIntercalibration_Stat6: 4.20449013e-23 + syst_JES_EtaIntercalibration_Stat60: 3.20817220e-21 + syst_JES_EtaIntercalibration_Stat61: 5.23876138e-20 + syst_JES_EtaIntercalibration_Stat62: 5.36037522e-20 + syst_JES_EtaIntercalibration_Stat63: 4.86745499e-21 + syst_JES_EtaIntercalibration_Stat64: 2.83969730e-24 + syst_JES_EtaIntercalibration_Stat65: 7.76403246e-24 + syst_JES_EtaIntercalibration_Stat66: 7.76403246e-24 + syst_JES_EtaIntercalibration_Stat67: 1.58457516e-20 + syst_JES_EtaIntercalibration_Stat68: 3.48116370e-19 + syst_JES_EtaIntercalibration_Stat69: 2.76002295e-11 + syst_JES_EtaIntercalibration_Stat7: 7.76403246e-24 + syst_JES_EtaIntercalibration_Stat70: 6.81042377e-09 + syst_JES_EtaIntercalibration_Stat71: 6.81042377e-09 + syst_JES_EtaIntercalibration_Stat72: 6.81042378e-09 + syst_JES_EtaIntercalibration_Stat73: 5.95825478e-09 + syst_JES_EtaIntercalibration_Stat74: 1.08823018e-14 + syst_JES_EtaIntercalibration_Stat75: 1.27289155e-17 + syst_JES_EtaIntercalibration_Stat76: 1.26605188e-17 + syst_JES_EtaIntercalibration_Stat77: 6.81042378e-09 + syst_JES_EtaIntercalibration_Stat78: 2.09924558e-09 + syst_JES_EtaIntercalibration_Stat79: 6.81042378e-09 + syst_JES_EtaIntercalibration_Stat8: 4.75447947e-24 + syst_JES_EtaIntercalibration_Stat80: 2.03342765e-09 + syst_JES_EtaIntercalibration_Stat81: 1.00645285e-18 + syst_JES_EtaIntercalibration_Stat82: 5.95825842e-09 + syst_JES_EtaIntercalibration_Stat83: 2.34001089e-18 + syst_JES_EtaIntercalibration_Stat84: 2.18498464e-17 + syst_JES_EtaIntercalibration_Stat85: 4.34563540e-18 + syst_JES_EtaIntercalibration_Stat86: 1.70208727e-21 + syst_JES_EtaIntercalibration_Stat87: 4.75447947e-24 + syst_JES_EtaIntercalibration_Stat88: 1.66554938e-21 + syst_JES_EtaIntercalibration_Stat89: 7.19412217e-18 + syst_JES_EtaIntercalibration_Stat9: 7.71231179e-23 + syst_JES_EtaIntercalibration_Stat90: 2.76002247e-11 + syst_JES_EtaIntercalibration_Stat91: 6.81042377e-09 + syst_JES_EtaIntercalibration_Stat92: 6.81042378e-09 + syst_JES_EtaIntercalibration_Stat93: 6.81042378e-09 + syst_JES_EtaIntercalibration_Stat94: 1.35964223e-18 + syst_JES_EtaIntercalibration_Stat95: 1.09255971e-14 + syst_JES_EtaIntercalibration_Stat96: 1.09186525e-14 + syst_JES_EtaIntercalibration_Stat97: 1.31157512e-17 + syst_JES_EtaIntercalibration_Stat98: 6.81042378e-09 + syst_JES_EtaIntercalibration_Stat99: 2.10357786e-09 + syst_JES_EtaIntercalibration_TotalStat_MJB: 2.29173253e-05 + syst_JES_Flavour_Comp: 5.35757097e-05 + syst_JES_Flavour_Response: 5.38393666e-06 + syst_JES_Gjet_Generator: 6.47335593e-05 + syst_JES_Gjet_OOC: 5.38657802e-05 + syst_JES_Gjet_Purity: 9.41096779e-06 + syst_JES_Gjet_Stat1: 4.86879482e-21 + syst_JES_Gjet_Stat10: 1.00782695e-06 + syst_JES_Gjet_Stat11: 1.12539916e-06 + syst_JES_Gjet_Stat12: 3.06195375e-06 + syst_JES_Gjet_Stat13: 1.11687482e-05 + syst_JES_Gjet_Stat14: 3.03374929e-05 + syst_JES_Gjet_Stat15: 4.05220755e-05 + syst_JES_Gjet_Stat2: 1.79267259e-07 + syst_JES_Gjet_Stat3: 3.15987229e-21 + syst_JES_Gjet_Stat4: 8.89377674e-19 + syst_JES_Gjet_Stat5: 8.42484704e-20 + syst_JES_Gjet_Stat6: 7.01558556e-07 + syst_JES_Gjet_Stat7: 3.80046000e-07 + syst_JES_Gjet_Stat8: 7.15423513e-09 + syst_JES_Gjet_Stat9: 4.63025832e-07 + syst_JES_Gjet_Veto: 5.48306584e-05 + syst_JES_Gjet_dPhi: 5.52329564e-06 + syst_JES_LArESZee: 9.49545516e-05 + syst_JES_LArEsmear: 8.68780162e-06 + syst_JES_LAr_JVT: 1.10991793e-05 + syst_JES_MJB_Alpha: 8.04493617e-07 + syst_JES_MJB_Asym: 1.38792750e-05 + syst_JES_MJB_Beta: 5.43420132e-07 + syst_JES_MJB_Fragmentation: 6.23996448e-06 syst_JES_MJB_Stat1: 0.0 - syst_JES_MJB_Stat10: 3.056176164752287e-07 - syst_JES_MJB_Stat11: 7.739902389565388e-07 - syst_JES_MJB_Stat12: 1.3283118308590043e-06 - syst_JES_MJB_Stat13: 1.1435362029686685e-06 - syst_JES_MJB_Stat14: 1.4934982691653848e-06 - syst_JES_MJB_Stat15: 1.6901280151219317e-06 - syst_JES_MJB_Stat16: 4.502200878459334e-07 - syst_JES_MJB_Stat2: 8.286997088813293e-11 - syst_JES_MJB_Stat3: 1.547587396562792e-07 - syst_JES_MJB_Stat4: 2.3793719759634057e-09 - syst_JES_MJB_Stat5: 2.117913810215137e-08 + syst_JES_MJB_Stat10: 3.05617616e-07 + syst_JES_MJB_Stat11: 7.73990239e-07 + syst_JES_MJB_Stat12: 1.32831183e-06 + syst_JES_MJB_Stat13: 1.14353620e-06 + syst_JES_MJB_Stat14: 1.49349827e-06 + syst_JES_MJB_Stat15: 1.69012802e-06 + syst_JES_MJB_Stat16: 4.50220088e-07 + syst_JES_MJB_Stat2: 8.28699709e-11 + syst_JES_MJB_Stat3: 1.54758740e-07 + syst_JES_MJB_Stat4: 2.37937198e-09 + syst_JES_MJB_Stat5: 2.11791381e-08 syst_JES_MJB_Stat6: 0.0 syst_JES_MJB_Stat7: 0.0 syst_JES_MJB_Stat8: 0.0 - syst_JES_MJB_Stat9: 1.559711752215774e-07 - syst_JES_MJB_Threshold: 8.54787346361655e-06 - syst_JES_Pileup_MuOffset: 1.3573562271931418e-05 - syst_JES_Pileup_NPVOffset: 1.3995565976408386e-05 - syst_JES_Pileup_Pt_term: 9.845591741992962e-06 - syst_JES_Pileup_Rho_topology: 1.8090138197371516e-05 - syst_JES_PunchThrough_MC15: 2.080254311376376e-05 - syst_JES_SingleParticle_HighPt: 3.222903504605746e-09 - syst_JES_Zjet_MC: 2.633341793235356e-05 - syst_JES_Zjet_MuScale: 1.7552796785697715e-06 - syst_JES_Zjet_MuSmearID: 2.5991188891622487e-07 - syst_JES_Zjet_MuSmearMS: 6.766418919930985e-06 - syst_JES_Zjet_OOC: 1.5206321054088002e-05 - syst_JES_Zjet_Stat1: 1.1425160567799474e-06 - syst_JES_Zjet_Stat10: 1.2335267761585075e-06 - syst_JES_Zjet_Stat11: 1.575527451363511e-06 - syst_JES_Zjet_Stat12: 4.378239457818633e-06 - syst_JES_Zjet_Stat13: 6.958796932660128e-06 + syst_JES_MJB_Stat9: 1.55971175e-07 + syst_JES_MJB_Threshold: 8.54787346e-06 + syst_JES_Pileup_MuOffset: 1.35735623e-05 + syst_JES_Pileup_NPVOffset: 1.39955660e-05 + syst_JES_Pileup_Pt_term: 9.84559174e-06 + syst_JES_Pileup_Rho_topology: 1.80901382e-05 + syst_JES_PunchThrough_MC15: 2.08025431e-05 + syst_JES_SingleParticle_HighPt: 3.22290350e-09 + syst_JES_Zjet_MC: 2.63334179e-05 + syst_JES_Zjet_MuScale: 1.75527968e-06 + syst_JES_Zjet_MuSmearID: 2.59911889e-07 + syst_JES_Zjet_MuSmearMS: 6.76641892e-06 + syst_JES_Zjet_OOC: 1.52063211e-05 + syst_JES_Zjet_Stat1: 1.14251606e-06 + syst_JES_Zjet_Stat10: 1.23352678e-06 + syst_JES_Zjet_Stat11: 1.57552745e-06 + syst_JES_Zjet_Stat12: 4.37823946e-06 + syst_JES_Zjet_Stat13: 6.95879693e-06 syst_JES_Zjet_Stat2: 0.0 - syst_JES_Zjet_Stat3: 3.19823181617593e-07 - syst_JES_Zjet_Stat4: 6.700438549080196e-07 - syst_JES_Zjet_Stat5: 4.26257703742381e-07 - syst_JES_Zjet_Stat6: 2.964821200342442e-07 - syst_JES_Zjet_Stat7: 6.86712210463743e-07 - syst_JES_Zjet_Stat8: 2.238326830469581e-07 - syst_JES_Zjet_Stat9: 7.088703883644739e-07 - syst_JES_Zjet_Veto: 2.5770702357522195e-06 - syst_JES_Zjet_dPhi: 2.987157972053035e-06 + syst_JES_Zjet_Stat3: 3.19823182e-07 + syst_JES_Zjet_Stat4: 6.70043855e-07 + syst_JES_Zjet_Stat5: 4.26257704e-07 + syst_JES_Zjet_Stat6: 2.96482120e-07 + syst_JES_Zjet_Stat7: 6.86712210e-07 + syst_JES_Zjet_Stat8: 2.23832683e-07 + syst_JES_Zjet_Stat9: 7.08870388e-07 + syst_JES_Zjet_Veto: 2.57707024e-06 + syst_JES_Zjet_dPhi: 2.98715797e-06 syst_PRW: 0.0 - syst_Unfolding_bias: 2.229e-20 - syst_cleaning: 2.000518682742053e-05 - syst_lumi: 3.8985e-05 -- stat: 4.114e-05 - syst_JER_CROSS_CALIB_FORWARD: 2.417e-18 + syst_Unfolding_bias: 2.22900000e-20 + syst_cleaning: 2.00051868e-05 + syst_lumi: 3.89850000e-05 +- stat: 4.11400000e-05 + syst_JER_CROSS_CALIB_FORWARD: 2.41700000e-18 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 3.6284587637177305e-06 - syst_JER_NP1: 1.5144328971598578e-06 - syst_JER_NP2: 2.3360911005352514e-06 - syst_JER_NP3: 2.433668578504476e-07 - syst_JER_NP4: 1.2860477246198914e-19 + syst_JER_NP0: 3.62845876e-06 + syst_JER_NP1: 1.51443290e-06 + syst_JER_NP2: 2.33609110e-06 + syst_JER_NP3: 2.43366858e-07 + syst_JER_NP4: 1.28604772e-19 syst_JER_NP5: 0.0 syst_JER_NP6: 0.0 - syst_JER_NP7: 1.3709182141907665e-15 - syst_JER_NP8: 4.556993828172252e-07 - syst_JES_EtaIntercalibration_Modelling: 6.482777549014002e-05 - syst_JES_EtaIntercalibration_NonClosure: 1.9697032771460783e-07 - syst_JES_EtaIntercalibration_Stat0: 2.1934452352406704e-24 - syst_JES_EtaIntercalibration_Stat1: 2.1934452352406704e-24 - syst_JES_EtaIntercalibration_Stat10: 1.382989837562084e-23 - syst_JES_EtaIntercalibration_Stat100: 4.4271218641254875e-09 - syst_JES_EtaIntercalibration_Stat101: 9.08114238397745e-10 - syst_JES_EtaIntercalibration_Stat102: 2.868276137336139e-09 - syst_JES_EtaIntercalibration_Stat103: 2.8682906868560447e-09 - syst_JES_EtaIntercalibration_Stat104: 8.29230124016699e-16 - syst_JES_EtaIntercalibration_Stat105: 1.8492077472158736e-18 - syst_JES_EtaIntercalibration_Stat106: 2.7581417657546174e-19 - syst_JES_EtaIntercalibration_Stat107: 9.564345345082432e-23 - syst_JES_EtaIntercalibration_Stat108: 3.432508812807332e-21 - syst_JES_EtaIntercalibration_Stat109: 3.969829352950113e-12 - syst_JES_EtaIntercalibration_Stat11: 4.4271218641460504e-09 - syst_JES_EtaIntercalibration_Stat110: 3.965858571812761e-12 - syst_JES_EtaIntercalibration_Stat111: 4.427122013852995e-09 - syst_JES_EtaIntercalibration_Stat112: 4.421130053241479e-09 - syst_JES_EtaIntercalibration_Stat113: 4.453968660211039e-09 - syst_JES_EtaIntercalibration_Stat114: 7.398385052325157e-13 - syst_JES_EtaIntercalibration_Stat115: 1.6089137849804134e-16 - syst_JES_EtaIntercalibration_Stat116: 1.9415941380409554e-14 - syst_JES_EtaIntercalibration_Stat117: 9.68075260504058e-18 - syst_JES_EtaIntercalibration_Stat118: 4.42712170987808e-09 - syst_JES_EtaIntercalibration_Stat119: 4.421047257064778e-09 - syst_JES_EtaIntercalibration_Stat12: 1.2955740040615206e-09 - syst_JES_EtaIntercalibration_Stat120: 4.454835066605515e-09 - syst_JES_EtaIntercalibration_Stat121: 6.024274894126263e-09 - syst_JES_EtaIntercalibration_Stat122: 2.8682760933111057e-09 - syst_JES_EtaIntercalibration_Stat123: 2.5568226998264862e-14 - syst_JES_EtaIntercalibration_Stat124: 1.33958217646399e-16 - syst_JES_EtaIntercalibration_Stat125: 1.3857569874620876e-17 - syst_JES_EtaIntercalibration_Stat126: 3.1681773940232578e-18 - syst_JES_EtaIntercalibration_Stat127: 4.674798585399744e-19 - syst_JES_EtaIntercalibration_Stat128: 2.4202550769856884e-16 - syst_JES_EtaIntercalibration_Stat129: 2.2050105373897878e-10 - syst_JES_EtaIntercalibration_Stat13: 1.3284829694053293e-09 - syst_JES_EtaIntercalibration_Stat130: 3.124060493572428e-09 - syst_JES_EtaIntercalibration_Stat131: 7.799022631073716e-09 - syst_JES_EtaIntercalibration_Stat132: 9.871567808610747e-09 - syst_JES_EtaIntercalibration_Stat133: 1.0303601057397359e-08 - syst_JES_EtaIntercalibration_Stat134: 3.1428481948111477e-09 - syst_JES_EtaIntercalibration_Stat135: 1.2130691447728773e-14 - syst_JES_EtaIntercalibration_Stat136: 1.6949316999513579e-15 - syst_JES_EtaIntercalibration_Stat137: 4.4271218605635916e-09 - syst_JES_EtaIntercalibration_Stat138: 6.824130933679394e-09 - syst_JES_EtaIntercalibration_Stat139: 4.796109276017384e-09 - syst_JES_EtaIntercalibration_Stat14: 1.3657220617680603e-09 - syst_JES_EtaIntercalibration_Stat140: 1.2392794600290184e-08 - syst_JES_EtaIntercalibration_Stat141: 4.589636260097308e-09 - syst_JES_EtaIntercalibration_Stat142: 6.283512413008848e-09 - syst_JES_EtaIntercalibration_Stat143: 6.284855839091538e-09 - syst_JES_EtaIntercalibration_Stat144: 2.643900683907448e-10 - syst_JES_EtaIntercalibration_Stat145: 2.3386822697194246e-11 - syst_JES_EtaIntercalibration_Stat146: 4.134296333244026e-12 - syst_JES_EtaIntercalibration_Stat147: 1.9757355592285117e-10 - syst_JES_EtaIntercalibration_Stat148: 3.129188795838308e-09 - syst_JES_EtaIntercalibration_Stat149: 6.1446996671928555e-09 - syst_JES_EtaIntercalibration_Stat15: 1.4575765871816136e-23 - syst_JES_EtaIntercalibration_Stat150: 1.3504635898460945e-08 - syst_JES_EtaIntercalibration_Stat151: 4.298093996180168e-09 - syst_JES_EtaIntercalibration_Stat152: 2.7117057362479435e-09 - syst_JES_EtaIntercalibration_Stat153: 3.6800320650776948e-09 - syst_JES_EtaIntercalibration_Stat154: 1.5267979589651018e-14 - syst_JES_EtaIntercalibration_Stat155: 4.4284510731293785e-09 - syst_JES_EtaIntercalibration_Stat156: 5.820963386759961e-09 - syst_JES_EtaIntercalibration_Stat157: 8.291399806425932e-09 - syst_JES_EtaIntercalibration_Stat158: 8.752055993256773e-09 - syst_JES_EtaIntercalibration_Stat159: 2.694292482222616e-09 - syst_JES_EtaIntercalibration_Stat16: 7.510323694755108e-24 - syst_JES_EtaIntercalibration_Stat160: 4.927554325187597e-10 - syst_JES_EtaIntercalibration_Stat161: 4.774162129114908e-10 - syst_JES_EtaIntercalibration_Stat162: 2.7901558846774133e-12 - syst_JES_EtaIntercalibration_Stat163: 2.145916466937844e-11 - syst_JES_EtaIntercalibration_Stat164: 1.52747839667211e-10 - syst_JES_EtaIntercalibration_Stat165: 2.921049797589901e-09 - syst_JES_EtaIntercalibration_Stat166: 4.0878092161327685e-09 - syst_JES_EtaIntercalibration_Stat167: 7.830411531330905e-09 - syst_JES_EtaIntercalibration_Stat168: 1.7423258614564612e-08 - syst_JES_EtaIntercalibration_Stat169: 3.813948520890128e-09 - syst_JES_EtaIntercalibration_Stat17: 7.462540907239813e-15 - syst_JES_EtaIntercalibration_Stat170: 1.4330080250996503e-08 - syst_JES_EtaIntercalibration_Stat171: 4.911058007191526e-09 - syst_JES_EtaIntercalibration_Stat172: 2.240649860636139e-12 - syst_JES_EtaIntercalibration_Stat173: 4.4563313066691975e-09 - syst_JES_EtaIntercalibration_Stat174: 9.115792944116272e-09 - syst_JES_EtaIntercalibration_Stat175: 1.0445641148345083e-08 - syst_JES_EtaIntercalibration_Stat176: 1.2007065045214005e-08 - syst_JES_EtaIntercalibration_Stat177: 1.3229218722207294e-08 - syst_JES_EtaIntercalibration_Stat178: 3.4703914764763926e-09 - syst_JES_EtaIntercalibration_Stat179: 8.45253433888322e-09 - syst_JES_EtaIntercalibration_Stat18: 2.798781341941524e-24 - syst_JES_EtaIntercalibration_Stat180: 1.0780437595478209e-08 - syst_JES_EtaIntercalibration_Stat181: 1.6259900460949936e-11 - syst_JES_EtaIntercalibration_Stat182: 8.109627208910406e-09 - syst_JES_EtaIntercalibration_Stat183: 2.099005009522369e-08 - syst_JES_EtaIntercalibration_Stat184: 2.1598673570384615e-09 - syst_JES_EtaIntercalibration_Stat185: 1.914750500718044e-08 - syst_JES_EtaIntercalibration_Stat186: 6.21777966801655e-08 - syst_JES_EtaIntercalibration_Stat187: 3.0639054734113454e-08 - syst_JES_EtaIntercalibration_Stat188: 3.478067929181372e-08 - syst_JES_EtaIntercalibration_Stat189: 1.9780909949494234e-09 - syst_JES_EtaIntercalibration_Stat19: 2.067070073195391e-24 - syst_JES_EtaIntercalibration_Stat190: 1.4196748465757926e-09 - syst_JES_EtaIntercalibration_Stat191: 1.7482925863538973e-08 - syst_JES_EtaIntercalibration_Stat192: 3.607003292208091e-08 - syst_JES_EtaIntercalibration_Stat193: 7.831055532302143e-08 - syst_JES_EtaIntercalibration_Stat194: 1.0013851743959464e-07 - syst_JES_EtaIntercalibration_Stat195: 5.4193681845765015e-08 - syst_JES_EtaIntercalibration_Stat196: 3.13574320855519e-08 - syst_JES_EtaIntercalibration_Stat197: 6.889860285230754e-09 - syst_JES_EtaIntercalibration_Stat198: 3.75458053682432e-08 - syst_JES_EtaIntercalibration_Stat199: 8.134248766788486e-08 - syst_JES_EtaIntercalibration_Stat2: 3.092677965776586e-24 - syst_JES_EtaIntercalibration_Stat20: 2.1934452352406704e-24 - syst_JES_EtaIntercalibration_Stat200: 1.3461374251910537e-07 - syst_JES_EtaIntercalibration_Stat201: 1.5732999555075313e-07 - syst_JES_EtaIntercalibration_Stat202: 1.9975466828086897e-07 - syst_JES_EtaIntercalibration_Stat203: 6.153960457095901e-08 - syst_JES_EtaIntercalibration_Stat204: 8.245761422470335e-09 - syst_JES_EtaIntercalibration_Stat205: 1.197347543531117e-08 - syst_JES_EtaIntercalibration_Stat206: 3.627634384829872e-08 - syst_JES_EtaIntercalibration_Stat207: 1.4560865728039662e-07 - syst_JES_EtaIntercalibration_Stat208: 1.587476175411776e-07 - syst_JES_EtaIntercalibration_Stat209: 1.7441966766609205e-07 - syst_JES_EtaIntercalibration_Stat21: 2.1934452352406704e-24 - syst_JES_EtaIntercalibration_Stat210: 7.55819123534196e-08 - syst_JES_EtaIntercalibration_Stat211: 1.0403936887063473e-07 - syst_JES_EtaIntercalibration_Stat212: 1.0827605968079924e-07 - syst_JES_EtaIntercalibration_Stat213: 1.5954696863306428e-07 - syst_JES_EtaIntercalibration_Stat214: 1.626225922189165e-07 - syst_JES_EtaIntercalibration_Stat215: 8.199718409799205e-08 - syst_JES_EtaIntercalibration_Stat216: 2.2407633760618275e-08 - syst_JES_EtaIntercalibration_Stat217: 7.0116066326252934e-09 - syst_JES_EtaIntercalibration_Stat218: 1.0712405464226978e-08 - syst_JES_EtaIntercalibration_Stat219: 2.4685061692246185e-08 - syst_JES_EtaIntercalibration_Stat22: 2.1934452352406704e-24 - syst_JES_EtaIntercalibration_Stat220: 1.751222055451564e-07 - syst_JES_EtaIntercalibration_Stat221: 1.523060875342808e-07 - syst_JES_EtaIntercalibration_Stat222: 6.455353359809207e-08 - syst_JES_EtaIntercalibration_Stat223: 1.5412030203707753e-07 - syst_JES_EtaIntercalibration_Stat224: 1.9758180584254207e-07 - syst_JES_EtaIntercalibration_Stat225: 4.614765730782008e-07 - syst_JES_EtaIntercalibration_Stat226: 5.357732542783374e-07 - syst_JES_EtaIntercalibration_Stat227: 6.168618220476933e-07 - syst_JES_EtaIntercalibration_Stat228: 1.25199663238365e-07 - syst_JES_EtaIntercalibration_Stat229: 2.6220063286536896e-09 - syst_JES_EtaIntercalibration_Stat23: 3.092677965776586e-24 - syst_JES_EtaIntercalibration_Stat230: 2.0732648166624534e-08 - syst_JES_EtaIntercalibration_Stat231: 1.805844123948687e-07 - syst_JES_EtaIntercalibration_Stat232: 4.0339463308282086e-07 - syst_JES_EtaIntercalibration_Stat233: 4.355136278005546e-07 - syst_JES_EtaIntercalibration_Stat234: 4.0308019983621127e-07 - syst_JES_EtaIntercalibration_Stat235: 4.891942252316559e-07 - syst_JES_EtaIntercalibration_Stat236: 6.952808407399128e-08 - syst_JES_EtaIntercalibration_Stat237: 1.02511427045964e-07 - syst_JES_EtaIntercalibration_Stat238: 1.440930713349882e-07 - syst_JES_EtaIntercalibration_Stat239: 3.834013133454292e-08 - syst_JES_EtaIntercalibration_Stat24: 9.700604723418022e-22 - syst_JES_EtaIntercalibration_Stat240: 8.528370599358356e-10 - syst_JES_EtaIntercalibration_Stat241: 7.134065233091158e-10 - syst_JES_EtaIntercalibration_Stat242: 2.4574158683462596e-08 - syst_JES_EtaIntercalibration_Stat243: 4.809022399343803e-09 - syst_JES_EtaIntercalibration_Stat244: 2.7297120741237177e-08 - syst_JES_EtaIntercalibration_Stat245: 1.365689598700964e-07 - syst_JES_EtaIntercalibration_Stat25: 9.079937004186758e-23 - syst_JES_EtaIntercalibration_Stat26: 5.552477101933874e-23 - syst_JES_EtaIntercalibration_Stat27: 4.427121864146052e-09 - syst_JES_EtaIntercalibration_Stat28: 9.309442142255357e-23 - syst_JES_EtaIntercalibration_Stat29: 3.4218404211667663e-22 - syst_JES_EtaIntercalibration_Stat3: 3.092677965776586e-24 - syst_JES_EtaIntercalibration_Stat30: 3.6941337919294426e-22 - syst_JES_EtaIntercalibration_Stat31: 4.491161487577574e-22 - syst_JES_EtaIntercalibration_Stat32: 1.3688162285347146e-23 - syst_JES_EtaIntercalibration_Stat33: 4.427121864146052e-09 - syst_JES_EtaIntercalibration_Stat34: 4.4271218641460595e-09 - syst_JES_EtaIntercalibration_Stat35: 1.3414733504620877e-09 - syst_JES_EtaIntercalibration_Stat36: 5.1312005174228275e-09 - syst_JES_EtaIntercalibration_Stat37: 8.999411217824198e-22 - syst_JES_EtaIntercalibration_Stat38: 7.452148578624601e-15 - syst_JES_EtaIntercalibration_Stat39: 1.096756659788647e-21 - syst_JES_EtaIntercalibration_Stat4: 3.840010546860516e-24 - syst_JES_EtaIntercalibration_Stat40: 7.148700476007422e-21 - syst_JES_EtaIntercalibration_Stat41: 1.083547783752521e-22 - syst_JES_EtaIntercalibration_Stat42: 3.874652073089918e-24 - syst_JES_EtaIntercalibration_Stat43: 2.1934452352406704e-24 - syst_JES_EtaIntercalibration_Stat44: 2.1934452352406704e-24 - syst_JES_EtaIntercalibration_Stat45: 2.134040080879457e-22 - syst_JES_EtaIntercalibration_Stat46: 7.855281328507593e-22 - syst_JES_EtaIntercalibration_Stat47: 1.969361642766508e-21 - syst_JES_EtaIntercalibration_Stat48: 7.33978155192646e-21 - syst_JES_EtaIntercalibration_Stat49: 4.427121864146071e-09 - syst_JES_EtaIntercalibration_Stat5: 7.90413149877961e-24 - syst_JES_EtaIntercalibration_Stat50: 3.43622143423383e-20 - syst_JES_EtaIntercalibration_Stat51: 9.425522306482543e-21 - syst_JES_EtaIntercalibration_Stat52: 1.5470093341670567e-20 - syst_JES_EtaIntercalibration_Stat53: 1.7682604967311802e-20 - syst_JES_EtaIntercalibration_Stat54: 1.1918174270880042e-18 - syst_JES_EtaIntercalibration_Stat55: 4.4271218641460355e-09 - syst_JES_EtaIntercalibration_Stat56: 8.964228954572833e-10 - syst_JES_EtaIntercalibration_Stat57: 8.958166776745398e-10 - syst_JES_EtaIntercalibration_Stat58: 5.075774891581033e-09 - syst_JES_EtaIntercalibration_Stat59: 3.2065462728611922e-21 - syst_JES_EtaIntercalibration_Stat6: 7.821825042788927e-24 - syst_JES_EtaIntercalibration_Stat60: 2.420019869236614e-22 - syst_JES_EtaIntercalibration_Stat61: 6.678502227296178e-21 - syst_JES_EtaIntercalibration_Stat62: 6.5832485329584815e-21 - syst_JES_EtaIntercalibration_Stat63: 4.674184492507758e-22 - syst_JES_EtaIntercalibration_Stat64: 3.6234502894340915e-25 - syst_JES_EtaIntercalibration_Stat65: 2.1934452352406704e-24 - syst_JES_EtaIntercalibration_Stat66: 2.1934452352406704e-24 - syst_JES_EtaIntercalibration_Stat67: 2.0718225865165194e-21 - syst_JES_EtaIntercalibration_Stat68: 3.6510615535074184e-20 - syst_JES_EtaIntercalibration_Stat69: 3.966396338747012e-12 - syst_JES_EtaIntercalibration_Stat7: 2.1934452352406704e-24 - syst_JES_EtaIntercalibration_Stat70: 4.42712186385189e-09 - syst_JES_EtaIntercalibration_Stat71: 4.4271218639413795e-09 - syst_JES_EtaIntercalibration_Stat72: 4.427121864151827e-09 - syst_JES_EtaIntercalibration_Stat73: 2.8682761373461247e-09 - syst_JES_EtaIntercalibration_Stat74: 8.241796292118244e-16 - syst_JES_EtaIntercalibration_Stat75: 1.1923917799427336e-18 - syst_JES_EtaIntercalibration_Stat76: 1.1858672567157422e-18 - syst_JES_EtaIntercalibration_Stat77: 4.427121864147649e-09 - syst_JES_EtaIntercalibration_Stat78: 9.342682056009896e-10 - syst_JES_EtaIntercalibration_Stat79: 4.427121864146165e-09 - syst_JES_EtaIntercalibration_Stat8: 1.3432054012696644e-24 - syst_JES_EtaIntercalibration_Stat80: 9.048233418274471e-10 - syst_JES_EtaIntercalibration_Stat81: 7.603497986453341e-20 - syst_JES_EtaIntercalibration_Stat82: 2.8682764129611857e-09 - syst_JES_EtaIntercalibration_Stat83: 2.244133310005223e-19 - syst_JES_EtaIntercalibration_Stat84: 1.880403063175552e-18 - syst_JES_EtaIntercalibration_Stat85: 4.466752847427311e-19 - syst_JES_EtaIntercalibration_Stat86: 8.297631732458365e-23 - syst_JES_EtaIntercalibration_Stat87: 1.3432054012696644e-24 - syst_JES_EtaIntercalibration_Stat88: 2.0729396246634872e-22 - syst_JES_EtaIntercalibration_Stat89: 6.866925881899411e-19 - syst_JES_EtaIntercalibration_Stat9: 1.382989837562084e-23 - syst_JES_EtaIntercalibration_Stat90: 3.966395914876842e-12 - syst_JES_EtaIntercalibration_Stat91: 4.427121864027174e-09 - syst_JES_EtaIntercalibration_Stat92: 4.427121864554727e-09 - syst_JES_EtaIntercalibration_Stat93: 4.4271218641581e-09 - syst_JES_EtaIntercalibration_Stat94: 1.460667370587842e-19 - syst_JES_EtaIntercalibration_Stat95: 8.274693481436684e-16 - syst_JES_EtaIntercalibration_Stat96: 8.270084196447262e-16 - syst_JES_EtaIntercalibration_Stat97: 1.248562648608391e-18 - syst_JES_EtaIntercalibration_Stat98: 4.427121864148973e-09 - syst_JES_EtaIntercalibration_Stat99: 9.362602301351469e-10 - syst_JES_EtaIntercalibration_TotalStat_MJB: 1.2710631957145167e-05 - syst_JES_Flavour_Comp: 2.8130003554923344e-05 - syst_JES_Flavour_Response: 4.505749077567458e-06 - syst_JES_Gjet_Generator: 3.3460968306371535e-05 - syst_JES_Gjet_OOC: 2.790000358422916e-05 - syst_JES_Gjet_Purity: 4.525800343585651e-06 - syst_JES_Gjet_Stat1: 8.5260201002578e-22 - syst_JES_Gjet_Stat10: 6.826339044465928e-07 - syst_JES_Gjet_Stat11: 7.284386315950027e-07 - syst_JES_Gjet_Stat12: 1.5152207759927264e-06 - syst_JES_Gjet_Stat13: 5.843575339635829e-06 - syst_JES_Gjet_Stat14: 1.5992882010444524e-05 - syst_JES_Gjet_Stat15: 2.344896746127641e-05 - syst_JES_Gjet_Stat2: 8.693163003188192e-08 - syst_JES_Gjet_Stat3: 4.954548447638797e-22 - syst_JES_Gjet_Stat4: 1.1398821906999863e-19 - syst_JES_Gjet_Stat5: 1.3314107223824659e-20 - syst_JES_Gjet_Stat6: 3.9942990311192274e-07 - syst_JES_Gjet_Stat7: 2.493169218083682e-07 - syst_JES_Gjet_Stat8: 7.954442683375203e-10 - syst_JES_Gjet_Stat9: 2.7989662377384977e-07 - syst_JES_Gjet_Veto: 2.8635734231899834e-05 - syst_JES_Gjet_dPhi: 2.979861406173113e-06 - syst_JES_LArESZee: 4.9032465520306034e-05 - syst_JES_LArEsmear: 4.652537452831519e-06 - syst_JES_LAr_JVT: 5.764633639703394e-06 - syst_JES_MJB_Alpha: 5.811026307804844e-07 - syst_JES_MJB_Asym: 8.490497629703456e-06 - syst_JES_MJB_Beta: 3.5080793559296804e-07 - syst_JES_MJB_Fragmentation: 3.3789257168514376e-06 + syst_JER_NP7: 1.37091821e-15 + syst_JER_NP8: 4.55699383e-07 + syst_JES_EtaIntercalibration_Modelling: 6.48277755e-05 + syst_JES_EtaIntercalibration_NonClosure: 1.96970328e-07 + syst_JES_EtaIntercalibration_Stat0: 2.19344524e-24 + syst_JES_EtaIntercalibration_Stat1: 2.19344524e-24 + syst_JES_EtaIntercalibration_Stat10: 1.38298984e-23 + syst_JES_EtaIntercalibration_Stat100: 4.42712186e-09 + syst_JES_EtaIntercalibration_Stat101: 9.08114238e-10 + syst_JES_EtaIntercalibration_Stat102: 2.86827614e-09 + syst_JES_EtaIntercalibration_Stat103: 2.86829069e-09 + syst_JES_EtaIntercalibration_Stat104: 8.29230124e-16 + syst_JES_EtaIntercalibration_Stat105: 1.84920775e-18 + syst_JES_EtaIntercalibration_Stat106: 2.75814177e-19 + syst_JES_EtaIntercalibration_Stat107: 9.56434535e-23 + syst_JES_EtaIntercalibration_Stat108: 3.43250881e-21 + syst_JES_EtaIntercalibration_Stat109: 3.96982935e-12 + syst_JES_EtaIntercalibration_Stat11: 4.42712186e-09 + syst_JES_EtaIntercalibration_Stat110: 3.96585857e-12 + syst_JES_EtaIntercalibration_Stat111: 4.42712201e-09 + syst_JES_EtaIntercalibration_Stat112: 4.42113005e-09 + syst_JES_EtaIntercalibration_Stat113: 4.45396866e-09 + syst_JES_EtaIntercalibration_Stat114: 7.39838505e-13 + syst_JES_EtaIntercalibration_Stat115: 1.60891378e-16 + syst_JES_EtaIntercalibration_Stat116: 1.94159414e-14 + syst_JES_EtaIntercalibration_Stat117: 9.68075261e-18 + syst_JES_EtaIntercalibration_Stat118: 4.42712171e-09 + syst_JES_EtaIntercalibration_Stat119: 4.42104726e-09 + syst_JES_EtaIntercalibration_Stat12: 1.29557400e-09 + syst_JES_EtaIntercalibration_Stat120: 4.45483507e-09 + syst_JES_EtaIntercalibration_Stat121: 6.02427489e-09 + syst_JES_EtaIntercalibration_Stat122: 2.86827609e-09 + syst_JES_EtaIntercalibration_Stat123: 2.55682270e-14 + syst_JES_EtaIntercalibration_Stat124: 1.33958218e-16 + syst_JES_EtaIntercalibration_Stat125: 1.38575699e-17 + syst_JES_EtaIntercalibration_Stat126: 3.16817739e-18 + syst_JES_EtaIntercalibration_Stat127: 4.67479859e-19 + syst_JES_EtaIntercalibration_Stat128: 2.42025508e-16 + syst_JES_EtaIntercalibration_Stat129: 2.20501054e-10 + syst_JES_EtaIntercalibration_Stat13: 1.32848297e-09 + syst_JES_EtaIntercalibration_Stat130: 3.12406049e-09 + syst_JES_EtaIntercalibration_Stat131: 7.79902263e-09 + syst_JES_EtaIntercalibration_Stat132: 9.87156781e-09 + syst_JES_EtaIntercalibration_Stat133: 1.03036011e-08 + syst_JES_EtaIntercalibration_Stat134: 3.14284819e-09 + syst_JES_EtaIntercalibration_Stat135: 1.21306914e-14 + syst_JES_EtaIntercalibration_Stat136: 1.69493170e-15 + syst_JES_EtaIntercalibration_Stat137: 4.42712186e-09 + syst_JES_EtaIntercalibration_Stat138: 6.82413093e-09 + syst_JES_EtaIntercalibration_Stat139: 4.79610928e-09 + syst_JES_EtaIntercalibration_Stat14: 1.36572206e-09 + syst_JES_EtaIntercalibration_Stat140: 1.23927946e-08 + syst_JES_EtaIntercalibration_Stat141: 4.58963626e-09 + syst_JES_EtaIntercalibration_Stat142: 6.28351241e-09 + syst_JES_EtaIntercalibration_Stat143: 6.28485584e-09 + syst_JES_EtaIntercalibration_Stat144: 2.64390068e-10 + syst_JES_EtaIntercalibration_Stat145: 2.33868227e-11 + syst_JES_EtaIntercalibration_Stat146: 4.13429633e-12 + syst_JES_EtaIntercalibration_Stat147: 1.97573556e-10 + syst_JES_EtaIntercalibration_Stat148: 3.12918880e-09 + syst_JES_EtaIntercalibration_Stat149: 6.14469967e-09 + syst_JES_EtaIntercalibration_Stat15: 1.45757659e-23 + syst_JES_EtaIntercalibration_Stat150: 1.35046359e-08 + syst_JES_EtaIntercalibration_Stat151: 4.29809400e-09 + syst_JES_EtaIntercalibration_Stat152: 2.71170574e-09 + syst_JES_EtaIntercalibration_Stat153: 3.68003207e-09 + syst_JES_EtaIntercalibration_Stat154: 1.52679796e-14 + syst_JES_EtaIntercalibration_Stat155: 4.42845107e-09 + syst_JES_EtaIntercalibration_Stat156: 5.82096339e-09 + syst_JES_EtaIntercalibration_Stat157: 8.29139981e-09 + syst_JES_EtaIntercalibration_Stat158: 8.75205599e-09 + syst_JES_EtaIntercalibration_Stat159: 2.69429248e-09 + syst_JES_EtaIntercalibration_Stat16: 7.51032369e-24 + syst_JES_EtaIntercalibration_Stat160: 4.92755433e-10 + syst_JES_EtaIntercalibration_Stat161: 4.77416213e-10 + syst_JES_EtaIntercalibration_Stat162: 2.79015588e-12 + syst_JES_EtaIntercalibration_Stat163: 2.14591647e-11 + syst_JES_EtaIntercalibration_Stat164: 1.52747840e-10 + syst_JES_EtaIntercalibration_Stat165: 2.92104980e-09 + syst_JES_EtaIntercalibration_Stat166: 4.08780922e-09 + syst_JES_EtaIntercalibration_Stat167: 7.83041153e-09 + syst_JES_EtaIntercalibration_Stat168: 1.74232586e-08 + syst_JES_EtaIntercalibration_Stat169: 3.81394852e-09 + syst_JES_EtaIntercalibration_Stat17: 7.46254091e-15 + syst_JES_EtaIntercalibration_Stat170: 1.43300803e-08 + syst_JES_EtaIntercalibration_Stat171: 4.91105801e-09 + syst_JES_EtaIntercalibration_Stat172: 2.24064986e-12 + syst_JES_EtaIntercalibration_Stat173: 4.45633131e-09 + syst_JES_EtaIntercalibration_Stat174: 9.11579294e-09 + syst_JES_EtaIntercalibration_Stat175: 1.04456411e-08 + syst_JES_EtaIntercalibration_Stat176: 1.20070650e-08 + syst_JES_EtaIntercalibration_Stat177: 1.32292187e-08 + syst_JES_EtaIntercalibration_Stat178: 3.47039148e-09 + syst_JES_EtaIntercalibration_Stat179: 8.45253434e-09 + syst_JES_EtaIntercalibration_Stat18: 2.79878134e-24 + syst_JES_EtaIntercalibration_Stat180: 1.07804376e-08 + syst_JES_EtaIntercalibration_Stat181: 1.62599005e-11 + syst_JES_EtaIntercalibration_Stat182: 8.10962721e-09 + syst_JES_EtaIntercalibration_Stat183: 2.09900501e-08 + syst_JES_EtaIntercalibration_Stat184: 2.15986736e-09 + syst_JES_EtaIntercalibration_Stat185: 1.91475050e-08 + syst_JES_EtaIntercalibration_Stat186: 6.21777967e-08 + syst_JES_EtaIntercalibration_Stat187: 3.06390547e-08 + syst_JES_EtaIntercalibration_Stat188: 3.47806793e-08 + syst_JES_EtaIntercalibration_Stat189: 1.97809099e-09 + syst_JES_EtaIntercalibration_Stat19: 2.06707007e-24 + syst_JES_EtaIntercalibration_Stat190: 1.41967485e-09 + syst_JES_EtaIntercalibration_Stat191: 1.74829259e-08 + syst_JES_EtaIntercalibration_Stat192: 3.60700329e-08 + syst_JES_EtaIntercalibration_Stat193: 7.83105553e-08 + syst_JES_EtaIntercalibration_Stat194: 1.00138517e-07 + syst_JES_EtaIntercalibration_Stat195: 5.41936818e-08 + syst_JES_EtaIntercalibration_Stat196: 3.13574321e-08 + syst_JES_EtaIntercalibration_Stat197: 6.88986029e-09 + syst_JES_EtaIntercalibration_Stat198: 3.75458054e-08 + syst_JES_EtaIntercalibration_Stat199: 8.13424877e-08 + syst_JES_EtaIntercalibration_Stat2: 3.09267797e-24 + syst_JES_EtaIntercalibration_Stat20: 2.19344524e-24 + syst_JES_EtaIntercalibration_Stat200: 1.34613743e-07 + syst_JES_EtaIntercalibration_Stat201: 1.57329996e-07 + syst_JES_EtaIntercalibration_Stat202: 1.99754668e-07 + syst_JES_EtaIntercalibration_Stat203: 6.15396046e-08 + syst_JES_EtaIntercalibration_Stat204: 8.24576142e-09 + syst_JES_EtaIntercalibration_Stat205: 1.19734754e-08 + syst_JES_EtaIntercalibration_Stat206: 3.62763438e-08 + syst_JES_EtaIntercalibration_Stat207: 1.45608657e-07 + syst_JES_EtaIntercalibration_Stat208: 1.58747618e-07 + syst_JES_EtaIntercalibration_Stat209: 1.74419668e-07 + syst_JES_EtaIntercalibration_Stat21: 2.19344524e-24 + syst_JES_EtaIntercalibration_Stat210: 7.55819124e-08 + syst_JES_EtaIntercalibration_Stat211: 1.04039369e-07 + syst_JES_EtaIntercalibration_Stat212: 1.08276060e-07 + syst_JES_EtaIntercalibration_Stat213: 1.59546969e-07 + syst_JES_EtaIntercalibration_Stat214: 1.62622592e-07 + syst_JES_EtaIntercalibration_Stat215: 8.19971841e-08 + syst_JES_EtaIntercalibration_Stat216: 2.24076338e-08 + syst_JES_EtaIntercalibration_Stat217: 7.01160663e-09 + syst_JES_EtaIntercalibration_Stat218: 1.07124055e-08 + syst_JES_EtaIntercalibration_Stat219: 2.46850617e-08 + syst_JES_EtaIntercalibration_Stat22: 2.19344524e-24 + syst_JES_EtaIntercalibration_Stat220: 1.75122206e-07 + syst_JES_EtaIntercalibration_Stat221: 1.52306088e-07 + syst_JES_EtaIntercalibration_Stat222: 6.45535336e-08 + syst_JES_EtaIntercalibration_Stat223: 1.54120302e-07 + syst_JES_EtaIntercalibration_Stat224: 1.97581806e-07 + syst_JES_EtaIntercalibration_Stat225: 4.61476573e-07 + syst_JES_EtaIntercalibration_Stat226: 5.35773254e-07 + syst_JES_EtaIntercalibration_Stat227: 6.16861822e-07 + syst_JES_EtaIntercalibration_Stat228: 1.25199663e-07 + syst_JES_EtaIntercalibration_Stat229: 2.62200633e-09 + syst_JES_EtaIntercalibration_Stat23: 3.09267797e-24 + syst_JES_EtaIntercalibration_Stat230: 2.07326482e-08 + syst_JES_EtaIntercalibration_Stat231: 1.80584412e-07 + syst_JES_EtaIntercalibration_Stat232: 4.03394633e-07 + syst_JES_EtaIntercalibration_Stat233: 4.35513628e-07 + syst_JES_EtaIntercalibration_Stat234: 4.03080200e-07 + syst_JES_EtaIntercalibration_Stat235: 4.89194225e-07 + syst_JES_EtaIntercalibration_Stat236: 6.95280841e-08 + syst_JES_EtaIntercalibration_Stat237: 1.02511427e-07 + syst_JES_EtaIntercalibration_Stat238: 1.44093071e-07 + syst_JES_EtaIntercalibration_Stat239: 3.83401313e-08 + syst_JES_EtaIntercalibration_Stat24: 9.70060472e-22 + syst_JES_EtaIntercalibration_Stat240: 8.52837060e-10 + syst_JES_EtaIntercalibration_Stat241: 7.13406523e-10 + syst_JES_EtaIntercalibration_Stat242: 2.45741587e-08 + syst_JES_EtaIntercalibration_Stat243: 4.80902240e-09 + syst_JES_EtaIntercalibration_Stat244: 2.72971207e-08 + syst_JES_EtaIntercalibration_Stat245: 1.36568960e-07 + syst_JES_EtaIntercalibration_Stat25: 9.07993700e-23 + syst_JES_EtaIntercalibration_Stat26: 5.55247710e-23 + syst_JES_EtaIntercalibration_Stat27: 4.42712186e-09 + syst_JES_EtaIntercalibration_Stat28: 9.30944214e-23 + syst_JES_EtaIntercalibration_Stat29: 3.42184042e-22 + syst_JES_EtaIntercalibration_Stat3: 3.09267797e-24 + syst_JES_EtaIntercalibration_Stat30: 3.69413379e-22 + syst_JES_EtaIntercalibration_Stat31: 4.49116149e-22 + syst_JES_EtaIntercalibration_Stat32: 1.36881623e-23 + syst_JES_EtaIntercalibration_Stat33: 4.42712186e-09 + syst_JES_EtaIntercalibration_Stat34: 4.42712186e-09 + syst_JES_EtaIntercalibration_Stat35: 1.34147335e-09 + syst_JES_EtaIntercalibration_Stat36: 5.13120052e-09 + syst_JES_EtaIntercalibration_Stat37: 8.99941122e-22 + syst_JES_EtaIntercalibration_Stat38: 7.45214858e-15 + syst_JES_EtaIntercalibration_Stat39: 1.09675666e-21 + syst_JES_EtaIntercalibration_Stat4: 3.84001055e-24 + syst_JES_EtaIntercalibration_Stat40: 7.14870048e-21 + syst_JES_EtaIntercalibration_Stat41: 1.08354778e-22 + syst_JES_EtaIntercalibration_Stat42: 3.87465207e-24 + syst_JES_EtaIntercalibration_Stat43: 2.19344524e-24 + syst_JES_EtaIntercalibration_Stat44: 2.19344524e-24 + syst_JES_EtaIntercalibration_Stat45: 2.13404008e-22 + syst_JES_EtaIntercalibration_Stat46: 7.85528133e-22 + syst_JES_EtaIntercalibration_Stat47: 1.96936164e-21 + syst_JES_EtaIntercalibration_Stat48: 7.33978155e-21 + syst_JES_EtaIntercalibration_Stat49: 4.42712186e-09 + syst_JES_EtaIntercalibration_Stat5: 7.90413150e-24 + syst_JES_EtaIntercalibration_Stat50: 3.43622143e-20 + syst_JES_EtaIntercalibration_Stat51: 9.42552231e-21 + syst_JES_EtaIntercalibration_Stat52: 1.54700933e-20 + syst_JES_EtaIntercalibration_Stat53: 1.76826050e-20 + syst_JES_EtaIntercalibration_Stat54: 1.19181743e-18 + syst_JES_EtaIntercalibration_Stat55: 4.42712186e-09 + syst_JES_EtaIntercalibration_Stat56: 8.96422895e-10 + syst_JES_EtaIntercalibration_Stat57: 8.95816678e-10 + syst_JES_EtaIntercalibration_Stat58: 5.07577489e-09 + syst_JES_EtaIntercalibration_Stat59: 3.20654627e-21 + syst_JES_EtaIntercalibration_Stat6: 7.82182504e-24 + syst_JES_EtaIntercalibration_Stat60: 2.42001987e-22 + syst_JES_EtaIntercalibration_Stat61: 6.67850223e-21 + syst_JES_EtaIntercalibration_Stat62: 6.58324853e-21 + syst_JES_EtaIntercalibration_Stat63: 4.67418449e-22 + syst_JES_EtaIntercalibration_Stat64: 3.62345029e-25 + syst_JES_EtaIntercalibration_Stat65: 2.19344524e-24 + syst_JES_EtaIntercalibration_Stat66: 2.19344524e-24 + syst_JES_EtaIntercalibration_Stat67: 2.07182259e-21 + syst_JES_EtaIntercalibration_Stat68: 3.65106155e-20 + syst_JES_EtaIntercalibration_Stat69: 3.96639634e-12 + syst_JES_EtaIntercalibration_Stat7: 2.19344524e-24 + syst_JES_EtaIntercalibration_Stat70: 4.42712186e-09 + syst_JES_EtaIntercalibration_Stat71: 4.42712186e-09 + syst_JES_EtaIntercalibration_Stat72: 4.42712186e-09 + syst_JES_EtaIntercalibration_Stat73: 2.86827614e-09 + syst_JES_EtaIntercalibration_Stat74: 8.24179629e-16 + syst_JES_EtaIntercalibration_Stat75: 1.19239178e-18 + syst_JES_EtaIntercalibration_Stat76: 1.18586726e-18 + syst_JES_EtaIntercalibration_Stat77: 4.42712186e-09 + syst_JES_EtaIntercalibration_Stat78: 9.34268206e-10 + syst_JES_EtaIntercalibration_Stat79: 4.42712186e-09 + syst_JES_EtaIntercalibration_Stat8: 1.34320540e-24 + syst_JES_EtaIntercalibration_Stat80: 9.04823342e-10 + syst_JES_EtaIntercalibration_Stat81: 7.60349799e-20 + syst_JES_EtaIntercalibration_Stat82: 2.86827641e-09 + syst_JES_EtaIntercalibration_Stat83: 2.24413331e-19 + syst_JES_EtaIntercalibration_Stat84: 1.88040306e-18 + syst_JES_EtaIntercalibration_Stat85: 4.46675285e-19 + syst_JES_EtaIntercalibration_Stat86: 8.29763173e-23 + syst_JES_EtaIntercalibration_Stat87: 1.34320540e-24 + syst_JES_EtaIntercalibration_Stat88: 2.07293962e-22 + syst_JES_EtaIntercalibration_Stat89: 6.86692588e-19 + syst_JES_EtaIntercalibration_Stat9: 1.38298984e-23 + syst_JES_EtaIntercalibration_Stat90: 3.96639591e-12 + syst_JES_EtaIntercalibration_Stat91: 4.42712186e-09 + syst_JES_EtaIntercalibration_Stat92: 4.42712186e-09 + syst_JES_EtaIntercalibration_Stat93: 4.42712186e-09 + syst_JES_EtaIntercalibration_Stat94: 1.46066737e-19 + syst_JES_EtaIntercalibration_Stat95: 8.27469348e-16 + syst_JES_EtaIntercalibration_Stat96: 8.27008420e-16 + syst_JES_EtaIntercalibration_Stat97: 1.24856265e-18 + syst_JES_EtaIntercalibration_Stat98: 4.42712186e-09 + syst_JES_EtaIntercalibration_Stat99: 9.36260230e-10 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.27106320e-05 + syst_JES_Flavour_Comp: 2.81300036e-05 + syst_JES_Flavour_Response: 4.50574908e-06 + syst_JES_Gjet_Generator: 3.34609683e-05 + syst_JES_Gjet_OOC: 2.79000036e-05 + syst_JES_Gjet_Purity: 4.52580034e-06 + syst_JES_Gjet_Stat1: 8.52602010e-22 + syst_JES_Gjet_Stat10: 6.82633904e-07 + syst_JES_Gjet_Stat11: 7.28438632e-07 + syst_JES_Gjet_Stat12: 1.51522078e-06 + syst_JES_Gjet_Stat13: 5.84357534e-06 + syst_JES_Gjet_Stat14: 1.59928820e-05 + syst_JES_Gjet_Stat15: 2.34489675e-05 + syst_JES_Gjet_Stat2: 8.69316300e-08 + syst_JES_Gjet_Stat3: 4.95454845e-22 + syst_JES_Gjet_Stat4: 1.13988219e-19 + syst_JES_Gjet_Stat5: 1.33141072e-20 + syst_JES_Gjet_Stat6: 3.99429903e-07 + syst_JES_Gjet_Stat7: 2.49316922e-07 + syst_JES_Gjet_Stat8: 7.95444268e-10 + syst_JES_Gjet_Stat9: 2.79896624e-07 + syst_JES_Gjet_Veto: 2.86357342e-05 + syst_JES_Gjet_dPhi: 2.97986141e-06 + syst_JES_LArESZee: 4.90324655e-05 + syst_JES_LArEsmear: 4.65253745e-06 + syst_JES_LAr_JVT: 5.76463364e-06 + syst_JES_MJB_Alpha: 5.81102631e-07 + syst_JES_MJB_Asym: 8.49049763e-06 + syst_JES_MJB_Beta: 3.50807936e-07 + syst_JES_MJB_Fragmentation: 3.37892572e-06 syst_JES_MJB_Stat1: 0.0 - syst_JES_MJB_Stat10: 1.6498556626262797e-07 - syst_JES_MJB_Stat11: 2.930828039991429e-07 - syst_JES_MJB_Stat12: 5.676631637687969e-07 - syst_JES_MJB_Stat13: 8.833004627531901e-07 - syst_JES_MJB_Stat14: 1.386398221111092e-06 - syst_JES_MJB_Stat15: 9.084577810773596e-07 - syst_JES_MJB_Stat16: 1.1039583461344909e-06 - syst_JES_MJB_Stat2: 6.420712343657828e-12 - syst_JES_MJB_Stat3: 5.449031840611688e-08 - syst_JES_MJB_Stat4: 2.1501585127613267e-09 - syst_JES_MJB_Stat5: 9.405654522679429e-09 + syst_JES_MJB_Stat10: 1.64985566e-07 + syst_JES_MJB_Stat11: 2.93082804e-07 + syst_JES_MJB_Stat12: 5.67663164e-07 + syst_JES_MJB_Stat13: 8.83300463e-07 + syst_JES_MJB_Stat14: 1.38639822e-06 + syst_JES_MJB_Stat15: 9.08457781e-07 + syst_JES_MJB_Stat16: 1.10395835e-06 + syst_JES_MJB_Stat2: 6.42071234e-12 + syst_JES_MJB_Stat3: 5.44903184e-08 + syst_JES_MJB_Stat4: 2.15015851e-09 + syst_JES_MJB_Stat5: 9.40565452e-09 syst_JES_MJB_Stat6: 0.0 syst_JES_MJB_Stat7: 0.0 syst_JES_MJB_Stat8: 0.0 - syst_JES_MJB_Stat9: 7.508440250811083e-08 - syst_JES_MJB_Threshold: 4.876453014230733e-06 - syst_JES_Pileup_MuOffset: 7.351006189631458e-06 - syst_JES_Pileup_NPVOffset: 7.436636067470292e-06 - syst_JES_Pileup_Pt_term: 4.869714673366397e-06 - syst_JES_Pileup_Rho_topology: 9.43757441030268e-06 - syst_JES_PunchThrough_MC15: 1.2923374433560298e-05 - syst_JES_SingleParticle_HighPt: 3.564761090171401e-09 - syst_JES_Zjet_MC: 1.3485692195805154e-05 - syst_JES_Zjet_MuScale: 9.06594246341769e-07 - syst_JES_Zjet_MuSmearID: 1.1845489394702102e-07 - syst_JES_Zjet_MuSmearMS: 3.5790192790763224e-06 - syst_JES_Zjet_OOC: 8.002639736361998e-06 - syst_JES_Zjet_Stat1: 7.106540930720093e-07 - syst_JES_Zjet_Stat10: 7.103990903006562e-07 - syst_JES_Zjet_Stat11: 8.377441181530312e-07 - syst_JES_Zjet_Stat12: 2.240343277268017e-06 - syst_JES_Zjet_Stat13: 3.6369059308703602e-06 + syst_JES_MJB_Stat9: 7.50844025e-08 + syst_JES_MJB_Threshold: 4.87645301e-06 + syst_JES_Pileup_MuOffset: 7.35100619e-06 + syst_JES_Pileup_NPVOffset: 7.43663607e-06 + syst_JES_Pileup_Pt_term: 4.86971467e-06 + syst_JES_Pileup_Rho_topology: 9.43757441e-06 + syst_JES_PunchThrough_MC15: 1.29233744e-05 + syst_JES_SingleParticle_HighPt: 3.56476109e-09 + syst_JES_Zjet_MC: 1.34856922e-05 + syst_JES_Zjet_MuScale: 9.06594246e-07 + syst_JES_Zjet_MuSmearID: 1.18454894e-07 + syst_JES_Zjet_MuSmearMS: 3.57901928e-06 + syst_JES_Zjet_OOC: 8.00263974e-06 + syst_JES_Zjet_Stat1: 7.10654093e-07 + syst_JES_Zjet_Stat10: 7.10399090e-07 + syst_JES_Zjet_Stat11: 8.37744118e-07 + syst_JES_Zjet_Stat12: 2.24034328e-06 + syst_JES_Zjet_Stat13: 3.63690593e-06 syst_JES_Zjet_Stat2: 0.0 - syst_JES_Zjet_Stat3: 2.046418029142628e-07 - syst_JES_Zjet_Stat4: 3.796655370190978e-07 - syst_JES_Zjet_Stat5: 2.941022271251543e-07 - syst_JES_Zjet_Stat6: 2.1351771747328138e-07 - syst_JES_Zjet_Stat7: 3.794591006617182e-07 - syst_JES_Zjet_Stat8: 1.0299344384474189e-07 - syst_JES_Zjet_Stat9: 3.9302497058075076e-07 - syst_JES_Zjet_Veto: 1.4482457906032387e-06 - syst_JES_Zjet_dPhi: 1.5449060651055779e-06 + syst_JES_Zjet_Stat3: 2.04641803e-07 + syst_JES_Zjet_Stat4: 3.79665537e-07 + syst_JES_Zjet_Stat5: 2.94102227e-07 + syst_JES_Zjet_Stat6: 2.13517717e-07 + syst_JES_Zjet_Stat7: 3.79459101e-07 + syst_JES_Zjet_Stat8: 1.02993444e-07 + syst_JES_Zjet_Stat9: 3.93024971e-07 + syst_JES_Zjet_Veto: 1.44824579e-06 + syst_JES_Zjet_dPhi: 1.54490607e-06 syst_PRW: 0.0 syst_Unfolding_bias: 4.1e-21 - syst_cleaning: 9.719403106672755e-06 - syst_lumi: 1.877e-05 -- stat: 2.7778e-05 - syst_JER_CROSS_CALIB_FORWARD: 3.184e-19 + syst_cleaning: 9.71940311e-06 + syst_lumi: 1.87700000e-05 +- stat: 2.77780000e-05 + syst_JER_CROSS_CALIB_FORWARD: 3.18400000e-19 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 2.172493728414423e-06 - syst_JER_NP1: 9.282931487412798e-07 - syst_JER_NP2: 1.6240971915190297e-06 - syst_JER_NP3: 4.883329064275722e-08 - syst_JER_NP4: 2.0602744356031796e-20 + syst_JER_NP0: 2.17249373e-06 + syst_JER_NP1: 9.28293149e-07 + syst_JER_NP2: 1.62409719e-06 + syst_JER_NP3: 4.88332906e-08 + syst_JER_NP4: 2.06027444e-20 syst_JER_NP5: 0.0 syst_JER_NP6: 0.0 - syst_JER_NP7: 1.3293489948091133e-16 - syst_JER_NP8: 2.3871128000159526e-07 - syst_JES_EtaIntercalibration_Modelling: 3.421687412666446e-05 - syst_JES_EtaIntercalibration_NonClosure: 2.5161184391836566e-08 - syst_JES_EtaIntercalibration_Stat0: 6.522352949664714e-25 - syst_JES_EtaIntercalibration_Stat1: 6.522352949664714e-25 - syst_JES_EtaIntercalibration_Stat10: 2.7952505446739477e-24 - syst_JES_EtaIntercalibration_Stat100: 1.0917982265476083e-09 - syst_JES_EtaIntercalibration_Stat101: 3.4056449003785763e-10 - syst_JES_EtaIntercalibration_Stat102: 1.4194156368030483e-09 - syst_JES_EtaIntercalibration_Stat103: 1.4194167889955006e-09 - syst_JES_EtaIntercalibration_Stat104: 6.769949718240158e-17 - syst_JES_EtaIntercalibration_Stat105: 1.7525668981829908e-19 - syst_JES_EtaIntercalibration_Stat106: 3.3820140449146573e-20 - syst_JES_EtaIntercalibration_Stat107: 1.0060995418322186e-23 - syst_JES_EtaIntercalibration_Stat108: 4.288271534079902e-22 - syst_JES_EtaIntercalibration_Stat109: 4.0624981816316277e-13 - syst_JES_EtaIntercalibration_Stat11: 1.0917982265510418e-09 - syst_JES_EtaIntercalibration_Stat110: 4.059102575750827e-13 - syst_JES_EtaIntercalibration_Stat111: 1.0917116352459e-09 - syst_JES_EtaIntercalibration_Stat112: 1.0911967370400033e-09 - syst_JES_EtaIntercalibration_Stat113: 1.0939632907868094e-09 - syst_JES_EtaIntercalibration_Stat114: 7.523099291752577e-14 - syst_JES_EtaIntercalibration_Stat115: 1.4139416775454355e-17 - syst_JES_EtaIntercalibration_Stat116: 1.5408843910884424e-15 - syst_JES_EtaIntercalibration_Stat117: 7.811761517097153e-19 - syst_JES_EtaIntercalibration_Stat118: 1.0917982135462275e-09 - syst_JES_EtaIntercalibration_Stat119: 1.0911901227902495e-09 - syst_JES_EtaIntercalibration_Stat12: 4.489475693218531e-10 - syst_JES_EtaIntercalibration_Stat120: 1.0941365269359428e-09 - syst_JES_EtaIntercalibration_Stat121: 2.0590378141258118e-09 - syst_JES_EtaIntercalibration_Stat122: 1.4194156330216281e-09 - syst_JES_EtaIntercalibration_Stat123: 1.9836381934835675e-15 - syst_JES_EtaIntercalibration_Stat124: 1.1491164725561982e-17 - syst_JES_EtaIntercalibration_Stat125: 1.0345465905772443e-18 - syst_JES_EtaIntercalibration_Stat126: 2.861018175405392e-19 - syst_JES_EtaIntercalibration_Stat127: 5.4031132283074236e-20 - syst_JES_EtaIntercalibration_Stat128: 1.9236537275910653e-17 - syst_JES_EtaIntercalibration_Stat129: 2.3342567998187346e-11 - syst_JES_EtaIntercalibration_Stat13: 4.466093007316351e-10 - syst_JES_EtaIntercalibration_Stat130: 6.711113008100817e-10 - syst_JES_EtaIntercalibration_Stat131: 1.7559355476497423e-09 - syst_JES_EtaIntercalibration_Stat132: 2.2104539957891e-09 - syst_JES_EtaIntercalibration_Stat133: 6.350195115112606e-09 - syst_JES_EtaIntercalibration_Stat134: 5.151149782834079e-10 - syst_JES_EtaIntercalibration_Stat135: 9.672464667808304e-16 - syst_JES_EtaIntercalibration_Stat136: 1.3722123851649206e-16 - syst_JES_EtaIntercalibration_Stat137: 1.0917982261238026e-09 - syst_JES_EtaIntercalibration_Stat138: 1.6651923334858346e-09 - syst_JES_EtaIntercalibration_Stat139: 7.590119020805933e-10 - syst_JES_EtaIntercalibration_Stat14: 4.568284004962915e-10 - syst_JES_EtaIntercalibration_Stat140: 3.874595369941235e-09 - syst_JES_EtaIntercalibration_Stat141: 2.3674697463748084e-09 - syst_JES_EtaIntercalibration_Stat142: 1.3656858686304801e-09 - syst_JES_EtaIntercalibration_Stat143: 1.3656558236805815e-09 - syst_JES_EtaIntercalibration_Stat144: 3.917841339417688e-11 - syst_JES_EtaIntercalibration_Stat145: 2.0754673619934382e-12 - syst_JES_EtaIntercalibration_Stat146: 4.2035168738569376e-13 - syst_JES_EtaIntercalibration_Stat147: 2.9084550452087102e-11 - syst_JES_EtaIntercalibration_Stat148: 6.718095757541716e-10 - syst_JES_EtaIntercalibration_Stat149: 1.5629100389977664e-09 - syst_JES_EtaIntercalibration_Stat15: 3.008617893651502e-24 - syst_JES_EtaIntercalibration_Stat150: 4.347196912954369e-09 - syst_JES_EtaIntercalibration_Stat151: 2.123245628748591e-09 - syst_JES_EtaIntercalibration_Stat152: 1.0512605041092336e-09 - syst_JES_EtaIntercalibration_Stat153: 1.54897407579985e-09 - syst_JES_EtaIntercalibration_Stat154: 1.2073798449535258e-15 - syst_JES_EtaIntercalibration_Stat155: 1.0918474843480292e-09 - syst_JES_EtaIntercalibration_Stat156: 1.4892207123190302e-09 - syst_JES_EtaIntercalibration_Stat157: 2.949485373332101e-09 - syst_JES_EtaIntercalibration_Stat158: 3.1254859466268167e-09 - syst_JES_EtaIntercalibration_Stat159: 1.466187931167516e-09 - syst_JES_EtaIntercalibration_Stat16: 1.8222488386606256e-24 - syst_JES_EtaIntercalibration_Stat160: 1.8499187540005642e-10 - syst_JES_EtaIntercalibration_Stat161: 1.8183126189565835e-10 - syst_JES_EtaIntercalibration_Stat162: 2.558446413020996e-13 - syst_JES_EtaIntercalibration_Stat163: 1.9171234095644444e-12 - syst_JES_EtaIntercalibration_Stat164: 2.1653720052395154e-11 - syst_JES_EtaIntercalibration_Stat165: 6.561799651581874e-10 - syst_JES_EtaIntercalibration_Stat166: 8.533035143890771e-10 - syst_JES_EtaIntercalibration_Stat167: 2.3282452619945348e-09 - syst_JES_EtaIntercalibration_Stat168: 4.979840255219037e-09 - syst_JES_EtaIntercalibration_Stat169: 3.17009669726335e-09 - syst_JES_EtaIntercalibration_Stat17: 5.92274774149895e-16 - syst_JES_EtaIntercalibration_Stat170: 4.759444374084016e-09 - syst_JES_EtaIntercalibration_Stat171: 1.7564427424484978e-09 - syst_JES_EtaIntercalibration_Stat172: 1.9621385549544425e-13 - syst_JES_EtaIntercalibration_Stat173: 1.093639602071336e-09 - syst_JES_EtaIntercalibration_Stat174: 1.3799087904640655e-09 - syst_JES_EtaIntercalibration_Stat175: 5.164279447076814e-09 - syst_JES_EtaIntercalibration_Stat176: 2.686958658037001e-09 - syst_JES_EtaIntercalibration_Stat177: 4.867897980648321e-09 - syst_JES_EtaIntercalibration_Stat178: 1.1582653528013348e-09 - syst_JES_EtaIntercalibration_Stat179: 1.978912334307662e-09 - syst_JES_EtaIntercalibration_Stat18: 8.322759323085104e-25 - syst_JES_EtaIntercalibration_Stat180: 1.422573121521351e-09 - syst_JES_EtaIntercalibration_Stat181: 1.3898684326223111e-12 - syst_JES_EtaIntercalibration_Stat182: 1.617251133868825e-09 - syst_JES_EtaIntercalibration_Stat183: 1.4866368781582138e-09 - syst_JES_EtaIntercalibration_Stat184: 3.2103561718289275e-09 - syst_JES_EtaIntercalibration_Stat185: 1.204101219790097e-08 - syst_JES_EtaIntercalibration_Stat186: 3.184574225858145e-08 - syst_JES_EtaIntercalibration_Stat187: 1.733618974861547e-08 - syst_JES_EtaIntercalibration_Stat188: 1.3974352176398017e-08 - syst_JES_EtaIntercalibration_Stat189: 5.936996645173383e-10 - syst_JES_EtaIntercalibration_Stat19: 3.9452318056104133e-25 - syst_JES_EtaIntercalibration_Stat190: 4.663646118650084e-10 - syst_JES_EtaIntercalibration_Stat191: 7.426659814479184e-09 - syst_JES_EtaIntercalibration_Stat192: 1.9843560038460842e-08 - syst_JES_EtaIntercalibration_Stat193: 3.150362841007365e-08 - syst_JES_EtaIntercalibration_Stat194: 4.258246910408085e-08 - syst_JES_EtaIntercalibration_Stat195: 1.742977067749315e-08 - syst_JES_EtaIntercalibration_Stat196: 1.3238656137236892e-08 - syst_JES_EtaIntercalibration_Stat197: 1.7312275088791768e-09 - syst_JES_EtaIntercalibration_Stat198: 2.1196230797007284e-08 - syst_JES_EtaIntercalibration_Stat199: 3.8817806159029643e-08 - syst_JES_EtaIntercalibration_Stat2: 9.196641492958178e-25 - syst_JES_EtaIntercalibration_Stat20: 6.522352949664714e-25 - syst_JES_EtaIntercalibration_Stat200: 3.7229924372069306e-08 - syst_JES_EtaIntercalibration_Stat201: 8.99517387269418e-08 - syst_JES_EtaIntercalibration_Stat202: 1.13484670660843e-07 - syst_JES_EtaIntercalibration_Stat203: 1.8377131896735135e-08 - syst_JES_EtaIntercalibration_Stat204: 1.7681686796939794e-09 - syst_JES_EtaIntercalibration_Stat205: 2.4555903567166895e-09 - syst_JES_EtaIntercalibration_Stat206: 2.0422656554669864e-08 - syst_JES_EtaIntercalibration_Stat207: 6.693588574150641e-08 - syst_JES_EtaIntercalibration_Stat208: 8.217186440625525e-08 - syst_JES_EtaIntercalibration_Stat209: 9.139884832425407e-08 - syst_JES_EtaIntercalibration_Stat21: 6.522352949664714e-25 - syst_JES_EtaIntercalibration_Stat210: 6.67393864221121e-08 - syst_JES_EtaIntercalibration_Stat211: 3.790672071018542e-08 - syst_JES_EtaIntercalibration_Stat212: 5.0189019715471634e-08 - syst_JES_EtaIntercalibration_Stat213: 4.6899215633099875e-08 - syst_JES_EtaIntercalibration_Stat214: 9.701858829626414e-08 - syst_JES_EtaIntercalibration_Stat215: 6.868658875646686e-08 - syst_JES_EtaIntercalibration_Stat216: 8.472948542272636e-09 - syst_JES_EtaIntercalibration_Stat217: 1.484886222116277e-09 - syst_JES_EtaIntercalibration_Stat218: 1.593407254910056e-09 - syst_JES_EtaIntercalibration_Stat219: 7.71599481596508e-09 - syst_JES_EtaIntercalibration_Stat22: 6.522352949664714e-25 - syst_JES_EtaIntercalibration_Stat220: 8.551499868444131e-08 - syst_JES_EtaIntercalibration_Stat221: 8.15205610567052e-08 - syst_JES_EtaIntercalibration_Stat222: 9.807737697858767e-08 - syst_JES_EtaIntercalibration_Stat223: 1.2811408470578088e-07 - syst_JES_EtaIntercalibration_Stat224: 5.773059912212933e-08 - syst_JES_EtaIntercalibration_Stat225: 2.027282138110036e-07 - syst_JES_EtaIntercalibration_Stat226: 2.651171957832988e-07 - syst_JES_EtaIntercalibration_Stat227: 3.520239541565318e-07 - syst_JES_EtaIntercalibration_Stat228: 6.813820128973173e-08 - syst_JES_EtaIntercalibration_Stat229: 9.995928271051169e-10 - syst_JES_EtaIntercalibration_Stat23: 9.196641492958178e-25 - syst_JES_EtaIntercalibration_Stat230: 1.0836575877557981e-08 - syst_JES_EtaIntercalibration_Stat231: 6.851378474438558e-08 - syst_JES_EtaIntercalibration_Stat232: 2.178919915921682e-07 - syst_JES_EtaIntercalibration_Stat233: 2.0224457347479064e-07 - syst_JES_EtaIntercalibration_Stat234: 1.9534016484072084e-07 - syst_JES_EtaIntercalibration_Stat235: 2.70257969355207e-07 - syst_JES_EtaIntercalibration_Stat236: 1.8763563594104398e-08 - syst_JES_EtaIntercalibration_Stat237: 4.712044221991131e-08 - syst_JES_EtaIntercalibration_Stat238: 7.42925278661993e-08 - syst_JES_EtaIntercalibration_Stat239: 1.5697159899803533e-08 - syst_JES_EtaIntercalibration_Stat24: 1.098227739360102e-22 - syst_JES_EtaIntercalibration_Stat240: 3.2074276284703605e-10 - syst_JES_EtaIntercalibration_Stat241: 2.247705236457841e-10 - syst_JES_EtaIntercalibration_Stat242: 1.0646709444706378e-08 - syst_JES_EtaIntercalibration_Stat243: 1.3388739541445582e-09 - syst_JES_EtaIntercalibration_Stat244: 1.4142194845079869e-08 - syst_JES_EtaIntercalibration_Stat245: 5.562917489950754e-08 - syst_JES_EtaIntercalibration_Stat25: 1.6095935760309186e-23 - syst_JES_EtaIntercalibration_Stat26: 9.584814591321002e-24 - syst_JES_EtaIntercalibration_Stat27: 1.0917982265510407e-09 - syst_JES_EtaIntercalibration_Stat28: 1.6001422397712024e-23 - syst_JES_EtaIntercalibration_Stat29: 5.54391863847225e-23 - syst_JES_EtaIntercalibration_Stat3: 9.196641492958178e-25 - syst_JES_EtaIntercalibration_Stat30: 5.84379404725004e-23 - syst_JES_EtaIntercalibration_Stat31: 8.730203362465275e-23 - syst_JES_EtaIntercalibration_Stat32: 2.768588268414067e-24 - syst_JES_EtaIntercalibration_Stat33: 1.091798226551042e-09 - syst_JES_EtaIntercalibration_Stat34: 1.091798226551043e-09 - syst_JES_EtaIntercalibration_Stat35: 4.543169268253158e-10 - syst_JES_EtaIntercalibration_Stat36: 1.1892260844767963e-09 - syst_JES_EtaIntercalibration_Stat37: 1.5551086178845356e-22 - syst_JES_EtaIntercalibration_Stat38: 5.91495346021632e-16 - syst_JES_EtaIntercalibration_Stat39: 1.608447971430845e-22 - syst_JES_EtaIntercalibration_Stat4: 7.779647999749089e-25 - syst_JES_EtaIntercalibration_Stat40: 1.0336475305686895e-21 - syst_JES_EtaIntercalibration_Stat41: 9.029745123756263e-24 - syst_JES_EtaIntercalibration_Stat42: 7.673827776931144e-25 - syst_JES_EtaIntercalibration_Stat43: 6.522352949664714e-25 - syst_JES_EtaIntercalibration_Stat44: 6.522352949664714e-25 - syst_JES_EtaIntercalibration_Stat45: 3.299058255441998e-23 - syst_JES_EtaIntercalibration_Stat46: 6.778528361672613e-23 - syst_JES_EtaIntercalibration_Stat47: 2.880730636487903e-22 - syst_JES_EtaIntercalibration_Stat48: 9.602016090914281e-22 - syst_JES_EtaIntercalibration_Stat49: 1.0917982265510382e-09 - syst_JES_EtaIntercalibration_Stat5: 1.6291748463562773e-24 - syst_JES_EtaIntercalibration_Stat50: 4.199598731688541e-21 - syst_JES_EtaIntercalibration_Stat51: 6.210932538677264e-22 - syst_JES_EtaIntercalibration_Stat52: 2.047837395888648e-21 - syst_JES_EtaIntercalibration_Stat53: 2.3466791871706706e-21 - syst_JES_EtaIntercalibration_Stat54: 1.2504936072412395e-19 - syst_JES_EtaIntercalibration_Stat55: 1.091798226551038e-09 - syst_JES_EtaIntercalibration_Stat56: 3.361824014950853e-10 - syst_JES_EtaIntercalibration_Stat57: 3.359572348900906e-10 - syst_JES_EtaIntercalibration_Stat58: 1.1826442914080817e-09 - syst_JES_EtaIntercalibration_Stat59: 5.036929421780694e-22 - syst_JES_EtaIntercalibration_Stat6: 1.6199295138986758e-24 - syst_JES_EtaIntercalibration_Stat60: 4.163692591918861e-23 - syst_JES_EtaIntercalibration_Stat61: 9.605773316084447e-22 - syst_JES_EtaIntercalibration_Stat62: 9.016752592119848e-22 - syst_JES_EtaIntercalibration_Stat63: 4.03482895176487e-23 - syst_JES_EtaIntercalibration_Stat64: 1.6367880131525892e-26 - syst_JES_EtaIntercalibration_Stat65: 6.522352949664714e-25 - syst_JES_EtaIntercalibration_Stat66: 6.522352949664714e-25 - syst_JES_EtaIntercalibration_Stat67: 3.062418051148471e-22 - syst_JES_EtaIntercalibration_Stat68: 4.2948561885120206e-21 - syst_JES_EtaIntercalibration_Stat69: 4.059061055661569e-13 - syst_JES_EtaIntercalibration_Stat7: 6.522352949664714e-25 - syst_JES_EtaIntercalibration_Stat70: 1.0917982265144003e-09 - syst_JES_EtaIntercalibration_Stat71: 1.0917982265250697e-09 - syst_JES_EtaIntercalibration_Stat72: 1.091798226551487e-09 - syst_JES_EtaIntercalibration_Stat73: 1.4194156368035843e-09 - syst_JES_EtaIntercalibration_Stat74: 6.730574403822509e-17 - syst_JES_EtaIntercalibration_Stat75: 1.2541009072937473e-19 - syst_JES_EtaIntercalibration_Stat76: 1.2475991161499273e-19 - syst_JES_EtaIntercalibration_Stat77: 1.0917982265511871e-09 - syst_JES_EtaIntercalibration_Stat78: 3.503938783709563e-10 - syst_JES_EtaIntercalibration_Stat79: 1.0917982265510343e-09 - syst_JES_EtaIntercalibration_Stat8: 3.994109162253831e-25 - syst_JES_EtaIntercalibration_Stat80: 3.3933473395938906e-10 - syst_JES_EtaIntercalibration_Stat81: 4.923537923840945e-21 - syst_JES_EtaIntercalibration_Stat82: 1.4194156593164702e-09 - syst_JES_EtaIntercalibration_Stat83: 2.417456480492462e-20 - syst_JES_EtaIntercalibration_Stat84: 1.7965306753573677e-19 - syst_JES_EtaIntercalibration_Stat85: 5.180034555869295e-20 - syst_JES_EtaIntercalibration_Stat86: 1.0368696579127002e-23 - syst_JES_EtaIntercalibration_Stat87: 3.994109162253831e-25 - syst_JES_EtaIntercalibration_Stat88: 3.101703725374169e-23 - syst_JES_EtaIntercalibration_Stat89: 7.385305303777225e-20 - syst_JES_EtaIntercalibration_Stat9: 2.7952505446739477e-24 - syst_JES_EtaIntercalibration_Stat90: 4.05906064058732e-13 - syst_JES_EtaIntercalibration_Stat91: 1.0917982265300494e-09 - syst_JES_EtaIntercalibration_Stat92: 1.0917982265875072e-09 - syst_JES_EtaIntercalibration_Stat93: 1.0917982265520091e-09 - syst_JES_EtaIntercalibration_Stat94: 1.782508397595927e-20 - syst_JES_EtaIntercalibration_Stat95: 6.759136415964659e-17 - syst_JES_EtaIntercalibration_Stat96: 6.755612436532088e-17 - syst_JES_EtaIntercalibration_Stat97: 1.3358792201393057e-19 - syst_JES_EtaIntercalibration_Stat98: 1.0917982265513538e-09 - syst_JES_EtaIntercalibration_Stat99: 3.510867127007312e-10 - syst_JES_EtaIntercalibration_TotalStat_MJB: 6.839178952915328e-06 - syst_JES_Flavour_Comp: 1.4370027835742002e-05 - syst_JES_Flavour_Response: 3.2112259341254707e-06 - syst_JES_Gjet_Generator: 1.7330282744375522e-05 - syst_JES_Gjet_OOC: 1.4475623475346406e-05 - syst_JES_Gjet_Purity: 2.0072802494918344e-06 - syst_JES_Gjet_Stat1: 1.6645008260736912e-22 - syst_JES_Gjet_Stat10: 4.4330272952013276e-07 - syst_JES_Gjet_Stat11: 4.6019798999995645e-07 - syst_JES_Gjet_Stat12: 7.368686636708065e-07 - syst_JES_Gjet_Stat13: 3.099082888533316e-06 - syst_JES_Gjet_Stat14: 8.552745801787868e-06 - syst_JES_Gjet_Stat15: 1.3411309891282058e-05 - syst_JES_Gjet_Stat2: 4.308476383827581e-08 - syst_JES_Gjet_Stat3: 8.525346092681516e-23 - syst_JES_Gjet_Stat4: 1.646835356433666e-20 - syst_JES_Gjet_Stat5: 2.358731940577394e-21 - syst_JES_Gjet_Stat6: 2.2201803980757961e-07 - syst_JES_Gjet_Stat7: 1.6831294513494796e-07 - syst_JES_Gjet_Stat8: 7.833199131175509e-11 - syst_JES_Gjet_Stat9: 1.7730050761348655e-07 - syst_JES_Gjet_Veto: 1.5085081206277942e-05 - syst_JES_Gjet_dPhi: 1.498110393128624e-06 - syst_JES_LArESZee: 2.535942576242609e-05 - syst_JES_LArEsmear: 2.3500984553843697e-06 - syst_JES_LAr_JVT: 2.976322899149217e-06 - syst_JES_MJB_Alpha: 3.972848191159587e-07 - syst_JES_MJB_Asym: 5.323954545260506e-06 - syst_JES_MJB_Beta: 2.4777624482585087e-07 - syst_JES_MJB_Fragmentation: 1.7966526514604875e-06 + syst_JER_NP7: 1.32934899e-16 + syst_JER_NP8: 2.38711280e-07 + syst_JES_EtaIntercalibration_Modelling: 3.42168741e-05 + syst_JES_EtaIntercalibration_NonClosure: 2.51611844e-08 + syst_JES_EtaIntercalibration_Stat0: 6.52235295e-25 + syst_JES_EtaIntercalibration_Stat1: 6.52235295e-25 + syst_JES_EtaIntercalibration_Stat10: 2.79525054e-24 + syst_JES_EtaIntercalibration_Stat100: 1.09179823e-09 + syst_JES_EtaIntercalibration_Stat101: 3.40564490e-10 + syst_JES_EtaIntercalibration_Stat102: 1.41941564e-09 + syst_JES_EtaIntercalibration_Stat103: 1.41941679e-09 + syst_JES_EtaIntercalibration_Stat104: 6.76994972e-17 + syst_JES_EtaIntercalibration_Stat105: 1.75256690e-19 + syst_JES_EtaIntercalibration_Stat106: 3.38201404e-20 + syst_JES_EtaIntercalibration_Stat107: 1.00609954e-23 + syst_JES_EtaIntercalibration_Stat108: 4.28827153e-22 + syst_JES_EtaIntercalibration_Stat109: 4.06249818e-13 + syst_JES_EtaIntercalibration_Stat11: 1.09179823e-09 + syst_JES_EtaIntercalibration_Stat110: 4.05910258e-13 + syst_JES_EtaIntercalibration_Stat111: 1.09171164e-09 + syst_JES_EtaIntercalibration_Stat112: 1.09119674e-09 + syst_JES_EtaIntercalibration_Stat113: 1.09396329e-09 + syst_JES_EtaIntercalibration_Stat114: 7.52309929e-14 + syst_JES_EtaIntercalibration_Stat115: 1.41394168e-17 + syst_JES_EtaIntercalibration_Stat116: 1.54088439e-15 + syst_JES_EtaIntercalibration_Stat117: 7.81176152e-19 + syst_JES_EtaIntercalibration_Stat118: 1.09179821e-09 + syst_JES_EtaIntercalibration_Stat119: 1.09119012e-09 + syst_JES_EtaIntercalibration_Stat12: 4.48947569e-10 + syst_JES_EtaIntercalibration_Stat120: 1.09413653e-09 + syst_JES_EtaIntercalibration_Stat121: 2.05903781e-09 + syst_JES_EtaIntercalibration_Stat122: 1.41941563e-09 + syst_JES_EtaIntercalibration_Stat123: 1.98363819e-15 + syst_JES_EtaIntercalibration_Stat124: 1.14911647e-17 + syst_JES_EtaIntercalibration_Stat125: 1.03454659e-18 + syst_JES_EtaIntercalibration_Stat126: 2.86101818e-19 + syst_JES_EtaIntercalibration_Stat127: 5.40311323e-20 + syst_JES_EtaIntercalibration_Stat128: 1.92365373e-17 + syst_JES_EtaIntercalibration_Stat129: 2.33425680e-11 + syst_JES_EtaIntercalibration_Stat13: 4.46609301e-10 + syst_JES_EtaIntercalibration_Stat130: 6.71111301e-10 + syst_JES_EtaIntercalibration_Stat131: 1.75593555e-09 + syst_JES_EtaIntercalibration_Stat132: 2.21045400e-09 + syst_JES_EtaIntercalibration_Stat133: 6.35019512e-09 + syst_JES_EtaIntercalibration_Stat134: 5.15114978e-10 + syst_JES_EtaIntercalibration_Stat135: 9.67246467e-16 + syst_JES_EtaIntercalibration_Stat136: 1.37221239e-16 + syst_JES_EtaIntercalibration_Stat137: 1.09179823e-09 + syst_JES_EtaIntercalibration_Stat138: 1.66519233e-09 + syst_JES_EtaIntercalibration_Stat139: 7.59011902e-10 + syst_JES_EtaIntercalibration_Stat14: 4.56828400e-10 + syst_JES_EtaIntercalibration_Stat140: 3.87459537e-09 + syst_JES_EtaIntercalibration_Stat141: 2.36746975e-09 + syst_JES_EtaIntercalibration_Stat142: 1.36568587e-09 + syst_JES_EtaIntercalibration_Stat143: 1.36565582e-09 + syst_JES_EtaIntercalibration_Stat144: 3.91784134e-11 + syst_JES_EtaIntercalibration_Stat145: 2.07546736e-12 + syst_JES_EtaIntercalibration_Stat146: 4.20351687e-13 + syst_JES_EtaIntercalibration_Stat147: 2.90845505e-11 + syst_JES_EtaIntercalibration_Stat148: 6.71809576e-10 + syst_JES_EtaIntercalibration_Stat149: 1.56291004e-09 + syst_JES_EtaIntercalibration_Stat15: 3.00861789e-24 + syst_JES_EtaIntercalibration_Stat150: 4.34719691e-09 + syst_JES_EtaIntercalibration_Stat151: 2.12324563e-09 + syst_JES_EtaIntercalibration_Stat152: 1.05126050e-09 + syst_JES_EtaIntercalibration_Stat153: 1.54897408e-09 + syst_JES_EtaIntercalibration_Stat154: 1.20737984e-15 + syst_JES_EtaIntercalibration_Stat155: 1.09184748e-09 + syst_JES_EtaIntercalibration_Stat156: 1.48922071e-09 + syst_JES_EtaIntercalibration_Stat157: 2.94948537e-09 + syst_JES_EtaIntercalibration_Stat158: 3.12548595e-09 + syst_JES_EtaIntercalibration_Stat159: 1.46618793e-09 + syst_JES_EtaIntercalibration_Stat16: 1.82224884e-24 + syst_JES_EtaIntercalibration_Stat160: 1.84991875e-10 + syst_JES_EtaIntercalibration_Stat161: 1.81831262e-10 + syst_JES_EtaIntercalibration_Stat162: 2.55844641e-13 + syst_JES_EtaIntercalibration_Stat163: 1.91712341e-12 + syst_JES_EtaIntercalibration_Stat164: 2.16537201e-11 + syst_JES_EtaIntercalibration_Stat165: 6.56179965e-10 + syst_JES_EtaIntercalibration_Stat166: 8.53303514e-10 + syst_JES_EtaIntercalibration_Stat167: 2.32824526e-09 + syst_JES_EtaIntercalibration_Stat168: 4.97984026e-09 + syst_JES_EtaIntercalibration_Stat169: 3.17009670e-09 + syst_JES_EtaIntercalibration_Stat17: 5.92274774e-16 + syst_JES_EtaIntercalibration_Stat170: 4.75944437e-09 + syst_JES_EtaIntercalibration_Stat171: 1.75644274e-09 + syst_JES_EtaIntercalibration_Stat172: 1.96213855e-13 + syst_JES_EtaIntercalibration_Stat173: 1.09363960e-09 + syst_JES_EtaIntercalibration_Stat174: 1.37990879e-09 + syst_JES_EtaIntercalibration_Stat175: 5.16427945e-09 + syst_JES_EtaIntercalibration_Stat176: 2.68695866e-09 + syst_JES_EtaIntercalibration_Stat177: 4.86789798e-09 + syst_JES_EtaIntercalibration_Stat178: 1.15826535e-09 + syst_JES_EtaIntercalibration_Stat179: 1.97891233e-09 + syst_JES_EtaIntercalibration_Stat18: 8.32275932e-25 + syst_JES_EtaIntercalibration_Stat180: 1.42257312e-09 + syst_JES_EtaIntercalibration_Stat181: 1.38986843e-12 + syst_JES_EtaIntercalibration_Stat182: 1.61725113e-09 + syst_JES_EtaIntercalibration_Stat183: 1.48663688e-09 + syst_JES_EtaIntercalibration_Stat184: 3.21035617e-09 + syst_JES_EtaIntercalibration_Stat185: 1.20410122e-08 + syst_JES_EtaIntercalibration_Stat186: 3.18457423e-08 + syst_JES_EtaIntercalibration_Stat187: 1.73361897e-08 + syst_JES_EtaIntercalibration_Stat188: 1.39743522e-08 + syst_JES_EtaIntercalibration_Stat189: 5.93699665e-10 + syst_JES_EtaIntercalibration_Stat19: 3.94523181e-25 + syst_JES_EtaIntercalibration_Stat190: 4.66364612e-10 + syst_JES_EtaIntercalibration_Stat191: 7.42665981e-09 + syst_JES_EtaIntercalibration_Stat192: 1.98435600e-08 + syst_JES_EtaIntercalibration_Stat193: 3.15036284e-08 + syst_JES_EtaIntercalibration_Stat194: 4.25824691e-08 + syst_JES_EtaIntercalibration_Stat195: 1.74297707e-08 + syst_JES_EtaIntercalibration_Stat196: 1.32386561e-08 + syst_JES_EtaIntercalibration_Stat197: 1.73122751e-09 + syst_JES_EtaIntercalibration_Stat198: 2.11962308e-08 + syst_JES_EtaIntercalibration_Stat199: 3.88178062e-08 + syst_JES_EtaIntercalibration_Stat2: 9.19664149e-25 + syst_JES_EtaIntercalibration_Stat20: 6.52235295e-25 + syst_JES_EtaIntercalibration_Stat200: 3.72299244e-08 + syst_JES_EtaIntercalibration_Stat201: 8.99517387e-08 + syst_JES_EtaIntercalibration_Stat202: 1.13484671e-07 + syst_JES_EtaIntercalibration_Stat203: 1.83771319e-08 + syst_JES_EtaIntercalibration_Stat204: 1.76816868e-09 + syst_JES_EtaIntercalibration_Stat205: 2.45559036e-09 + syst_JES_EtaIntercalibration_Stat206: 2.04226566e-08 + syst_JES_EtaIntercalibration_Stat207: 6.69358857e-08 + syst_JES_EtaIntercalibration_Stat208: 8.21718644e-08 + syst_JES_EtaIntercalibration_Stat209: 9.13988483e-08 + syst_JES_EtaIntercalibration_Stat21: 6.52235295e-25 + syst_JES_EtaIntercalibration_Stat210: 6.67393864e-08 + syst_JES_EtaIntercalibration_Stat211: 3.79067207e-08 + syst_JES_EtaIntercalibration_Stat212: 5.01890197e-08 + syst_JES_EtaIntercalibration_Stat213: 4.68992156e-08 + syst_JES_EtaIntercalibration_Stat214: 9.70185883e-08 + syst_JES_EtaIntercalibration_Stat215: 6.86865888e-08 + syst_JES_EtaIntercalibration_Stat216: 8.47294854e-09 + syst_JES_EtaIntercalibration_Stat217: 1.48488622e-09 + syst_JES_EtaIntercalibration_Stat218: 1.59340725e-09 + syst_JES_EtaIntercalibration_Stat219: 7.71599482e-09 + syst_JES_EtaIntercalibration_Stat22: 6.52235295e-25 + syst_JES_EtaIntercalibration_Stat220: 8.55149987e-08 + syst_JES_EtaIntercalibration_Stat221: 8.15205611e-08 + syst_JES_EtaIntercalibration_Stat222: 9.80773770e-08 + syst_JES_EtaIntercalibration_Stat223: 1.28114085e-07 + syst_JES_EtaIntercalibration_Stat224: 5.77305991e-08 + syst_JES_EtaIntercalibration_Stat225: 2.02728214e-07 + syst_JES_EtaIntercalibration_Stat226: 2.65117196e-07 + syst_JES_EtaIntercalibration_Stat227: 3.52023954e-07 + syst_JES_EtaIntercalibration_Stat228: 6.81382013e-08 + syst_JES_EtaIntercalibration_Stat229: 9.99592827e-10 + syst_JES_EtaIntercalibration_Stat23: 9.19664149e-25 + syst_JES_EtaIntercalibration_Stat230: 1.08365759e-08 + syst_JES_EtaIntercalibration_Stat231: 6.85137847e-08 + syst_JES_EtaIntercalibration_Stat232: 2.17891992e-07 + syst_JES_EtaIntercalibration_Stat233: 2.02244573e-07 + syst_JES_EtaIntercalibration_Stat234: 1.95340165e-07 + syst_JES_EtaIntercalibration_Stat235: 2.70257969e-07 + syst_JES_EtaIntercalibration_Stat236: 1.87635636e-08 + syst_JES_EtaIntercalibration_Stat237: 4.71204422e-08 + syst_JES_EtaIntercalibration_Stat238: 7.42925279e-08 + syst_JES_EtaIntercalibration_Stat239: 1.56971599e-08 + syst_JES_EtaIntercalibration_Stat24: 1.09822774e-22 + syst_JES_EtaIntercalibration_Stat240: 3.20742763e-10 + syst_JES_EtaIntercalibration_Stat241: 2.24770524e-10 + syst_JES_EtaIntercalibration_Stat242: 1.06467094e-08 + syst_JES_EtaIntercalibration_Stat243: 1.33887395e-09 + syst_JES_EtaIntercalibration_Stat244: 1.41421948e-08 + syst_JES_EtaIntercalibration_Stat245: 5.56291749e-08 + syst_JES_EtaIntercalibration_Stat25: 1.60959358e-23 + syst_JES_EtaIntercalibration_Stat26: 9.58481459e-24 + syst_JES_EtaIntercalibration_Stat27: 1.09179823e-09 + syst_JES_EtaIntercalibration_Stat28: 1.60014224e-23 + syst_JES_EtaIntercalibration_Stat29: 5.54391864e-23 + syst_JES_EtaIntercalibration_Stat3: 9.19664149e-25 + syst_JES_EtaIntercalibration_Stat30: 5.84379405e-23 + syst_JES_EtaIntercalibration_Stat31: 8.73020336e-23 + syst_JES_EtaIntercalibration_Stat32: 2.76858827e-24 + syst_JES_EtaIntercalibration_Stat33: 1.09179823e-09 + syst_JES_EtaIntercalibration_Stat34: 1.09179823e-09 + syst_JES_EtaIntercalibration_Stat35: 4.54316927e-10 + syst_JES_EtaIntercalibration_Stat36: 1.18922608e-09 + syst_JES_EtaIntercalibration_Stat37: 1.55510862e-22 + syst_JES_EtaIntercalibration_Stat38: 5.91495346e-16 + syst_JES_EtaIntercalibration_Stat39: 1.60844797e-22 + syst_JES_EtaIntercalibration_Stat4: 7.77964800e-25 + syst_JES_EtaIntercalibration_Stat40: 1.03364753e-21 + syst_JES_EtaIntercalibration_Stat41: 9.02974512e-24 + syst_JES_EtaIntercalibration_Stat42: 7.67382778e-25 + syst_JES_EtaIntercalibration_Stat43: 6.52235295e-25 + syst_JES_EtaIntercalibration_Stat44: 6.52235295e-25 + syst_JES_EtaIntercalibration_Stat45: 3.29905826e-23 + syst_JES_EtaIntercalibration_Stat46: 6.77852836e-23 + syst_JES_EtaIntercalibration_Stat47: 2.88073064e-22 + syst_JES_EtaIntercalibration_Stat48: 9.60201609e-22 + syst_JES_EtaIntercalibration_Stat49: 1.09179823e-09 + syst_JES_EtaIntercalibration_Stat5: 1.62917485e-24 + syst_JES_EtaIntercalibration_Stat50: 4.19959873e-21 + syst_JES_EtaIntercalibration_Stat51: 6.21093254e-22 + syst_JES_EtaIntercalibration_Stat52: 2.04783740e-21 + syst_JES_EtaIntercalibration_Stat53: 2.34667919e-21 + syst_JES_EtaIntercalibration_Stat54: 1.25049361e-19 + syst_JES_EtaIntercalibration_Stat55: 1.09179823e-09 + syst_JES_EtaIntercalibration_Stat56: 3.36182401e-10 + syst_JES_EtaIntercalibration_Stat57: 3.35957235e-10 + syst_JES_EtaIntercalibration_Stat58: 1.18264429e-09 + syst_JES_EtaIntercalibration_Stat59: 5.03692942e-22 + syst_JES_EtaIntercalibration_Stat6: 1.61992951e-24 + syst_JES_EtaIntercalibration_Stat60: 4.16369259e-23 + syst_JES_EtaIntercalibration_Stat61: 9.60577332e-22 + syst_JES_EtaIntercalibration_Stat62: 9.01675259e-22 + syst_JES_EtaIntercalibration_Stat63: 4.03482895e-23 + syst_JES_EtaIntercalibration_Stat64: 1.63678801e-26 + syst_JES_EtaIntercalibration_Stat65: 6.52235295e-25 + syst_JES_EtaIntercalibration_Stat66: 6.52235295e-25 + syst_JES_EtaIntercalibration_Stat67: 3.06241805e-22 + syst_JES_EtaIntercalibration_Stat68: 4.29485619e-21 + syst_JES_EtaIntercalibration_Stat69: 4.05906106e-13 + syst_JES_EtaIntercalibration_Stat7: 6.52235295e-25 + syst_JES_EtaIntercalibration_Stat70: 1.09179823e-09 + syst_JES_EtaIntercalibration_Stat71: 1.09179823e-09 + syst_JES_EtaIntercalibration_Stat72: 1.09179823e-09 + syst_JES_EtaIntercalibration_Stat73: 1.41941564e-09 + syst_JES_EtaIntercalibration_Stat74: 6.73057440e-17 + syst_JES_EtaIntercalibration_Stat75: 1.25410091e-19 + syst_JES_EtaIntercalibration_Stat76: 1.24759912e-19 + syst_JES_EtaIntercalibration_Stat77: 1.09179823e-09 + syst_JES_EtaIntercalibration_Stat78: 3.50393878e-10 + syst_JES_EtaIntercalibration_Stat79: 1.09179823e-09 + syst_JES_EtaIntercalibration_Stat8: 3.99410916e-25 + syst_JES_EtaIntercalibration_Stat80: 3.39334734e-10 + syst_JES_EtaIntercalibration_Stat81: 4.92353792e-21 + syst_JES_EtaIntercalibration_Stat82: 1.41941566e-09 + syst_JES_EtaIntercalibration_Stat83: 2.41745648e-20 + syst_JES_EtaIntercalibration_Stat84: 1.79653068e-19 + syst_JES_EtaIntercalibration_Stat85: 5.18003456e-20 + syst_JES_EtaIntercalibration_Stat86: 1.03686966e-23 + syst_JES_EtaIntercalibration_Stat87: 3.99410916e-25 + syst_JES_EtaIntercalibration_Stat88: 3.10170373e-23 + syst_JES_EtaIntercalibration_Stat89: 7.38530530e-20 + syst_JES_EtaIntercalibration_Stat9: 2.79525054e-24 + syst_JES_EtaIntercalibration_Stat90: 4.05906064e-13 + syst_JES_EtaIntercalibration_Stat91: 1.09179823e-09 + syst_JES_EtaIntercalibration_Stat92: 1.09179823e-09 + syst_JES_EtaIntercalibration_Stat93: 1.09179823e-09 + syst_JES_EtaIntercalibration_Stat94: 1.78250840e-20 + syst_JES_EtaIntercalibration_Stat95: 6.75913642e-17 + syst_JES_EtaIntercalibration_Stat96: 6.75561244e-17 + syst_JES_EtaIntercalibration_Stat97: 1.33587922e-19 + syst_JES_EtaIntercalibration_Stat98: 1.09179823e-09 + syst_JES_EtaIntercalibration_Stat99: 3.51086713e-10 + syst_JES_EtaIntercalibration_TotalStat_MJB: 6.83917895e-06 + syst_JES_Flavour_Comp: 1.43700278e-05 + syst_JES_Flavour_Response: 3.21122593e-06 + syst_JES_Gjet_Generator: 1.73302827e-05 + syst_JES_Gjet_OOC: 1.44756235e-05 + syst_JES_Gjet_Purity: 2.00728025e-06 + syst_JES_Gjet_Stat1: 1.66450083e-22 + syst_JES_Gjet_Stat10: 4.43302730e-07 + syst_JES_Gjet_Stat11: 4.60197990e-07 + syst_JES_Gjet_Stat12: 7.36868664e-07 + syst_JES_Gjet_Stat13: 3.09908289e-06 + syst_JES_Gjet_Stat14: 8.55274580e-06 + syst_JES_Gjet_Stat15: 1.34113099e-05 + syst_JES_Gjet_Stat2: 4.30847638e-08 + syst_JES_Gjet_Stat3: 8.52534609e-23 + syst_JES_Gjet_Stat4: 1.64683536e-20 + syst_JES_Gjet_Stat5: 2.35873194e-21 + syst_JES_Gjet_Stat6: 2.22018040e-07 + syst_JES_Gjet_Stat7: 1.68312945e-07 + syst_JES_Gjet_Stat8: 7.83319913e-11 + syst_JES_Gjet_Stat9: 1.77300508e-07 + syst_JES_Gjet_Veto: 1.50850812e-05 + syst_JES_Gjet_dPhi: 1.49811039e-06 + syst_JES_LArESZee: 2.53594258e-05 + syst_JES_LArEsmear: 2.35009846e-06 + syst_JES_LAr_JVT: 2.97632290e-06 + syst_JES_MJB_Alpha: 3.97284819e-07 + syst_JES_MJB_Asym: 5.32395455e-06 + syst_JES_MJB_Beta: 2.47776245e-07 + syst_JES_MJB_Fragmentation: 1.79665265e-06 syst_JES_MJB_Stat1: 0.0 - syst_JES_MJB_Stat10: 8.445208153148151e-08 - syst_JES_MJB_Stat11: 1.1048693723694218e-07 - syst_JES_MJB_Stat12: 2.240240333089287e-07 - syst_JES_MJB_Stat13: 5.314715490974094e-07 - syst_JES_MJB_Stat14: 1.0068000397298363e-06 - syst_JES_MJB_Stat15: 4.090338983507357e-07 - syst_JES_MJB_Stat16: 1.417489992910003e-06 - syst_JES_MJB_Stat2: 5.08270309481087e-13 - syst_JES_MJB_Stat3: 1.3674541125756288e-08 - syst_JES_MJB_Stat4: 1.8515314384314405e-09 - syst_JES_MJB_Stat5: 3.5002112107700014e-09 + syst_JES_MJB_Stat10: 8.44520815e-08 + syst_JES_MJB_Stat11: 1.10486937e-07 + syst_JES_MJB_Stat12: 2.24024033e-07 + syst_JES_MJB_Stat13: 5.31471549e-07 + syst_JES_MJB_Stat14: 1.00680004e-06 + syst_JES_MJB_Stat15: 4.09033898e-07 + syst_JES_MJB_Stat16: 1.41748999e-06 + syst_JES_MJB_Stat2: 5.08270309e-13 + syst_JES_MJB_Stat3: 1.36745411e-08 + syst_JES_MJB_Stat4: 1.85153144e-09 + syst_JES_MJB_Stat5: 3.50021121e-09 syst_JES_MJB_Stat6: 0.0 syst_JES_MJB_Stat7: 0.0 syst_JES_MJB_Stat8: 0.0 - syst_JES_MJB_Stat9: 3.716115007639026e-08 - syst_JES_MJB_Threshold: 2.774716381902842e-06 - syst_JES_Pileup_MuOffset: 4.097453446959466e-06 - syst_JES_Pileup_NPVOffset: 4.000961845294204e-06 - syst_JES_Pileup_Pt_term: 2.274025230730741e-06 - syst_JES_Pileup_Rho_topology: 4.942935565026111e-06 - syst_JES_PunchThrough_MC15: 8.037333932965582e-06 - syst_JES_SingleParticle_HighPt: 8.555600665645866e-09 - syst_JES_Zjet_MC: 6.837054409612374e-06 - syst_JES_Zjet_MuScale: 5.192492245540671e-07 - syst_JES_Zjet_MuSmearID: 5.005417964565997e-08 - syst_JES_Zjet_MuSmearMS: 1.8204186331720514e-06 - syst_JES_Zjet_OOC: 4.205500059445964e-06 - syst_JES_Zjet_Stat1: 4.170641767162459e-07 - syst_JES_Zjet_Stat10: 4.018538633632878e-07 - syst_JES_Zjet_Stat11: 4.492426154095357e-07 - syst_JES_Zjet_Stat12: 1.0531556900572678e-06 - syst_JES_Zjet_Stat13: 1.8521916747464341e-06 + syst_JES_MJB_Stat9: 3.71611501e-08 + syst_JES_MJB_Threshold: 2.77471638e-06 + syst_JES_Pileup_MuOffset: 4.09745345e-06 + syst_JES_Pileup_NPVOffset: 4.00096185e-06 + syst_JES_Pileup_Pt_term: 2.27402523e-06 + syst_JES_Pileup_Rho_topology: 4.94293557e-06 + syst_JES_PunchThrough_MC15: 8.03733393e-06 + syst_JES_SingleParticle_HighPt: 8.55560067e-09 + syst_JES_Zjet_MC: 6.83705441e-06 + syst_JES_Zjet_MuScale: 5.19249225e-07 + syst_JES_Zjet_MuSmearID: 5.00541796e-08 + syst_JES_Zjet_MuSmearMS: 1.82041863e-06 + syst_JES_Zjet_OOC: 4.20550006e-06 + syst_JES_Zjet_Stat1: 4.17064177e-07 + syst_JES_Zjet_Stat10: 4.01853863e-07 + syst_JES_Zjet_Stat11: 4.49242615e-07 + syst_JES_Zjet_Stat12: 1.05315569e-06 + syst_JES_Zjet_Stat13: 1.85219167e-06 syst_JES_Zjet_Stat2: 0.0 - syst_JES_Zjet_Stat3: 1.1984925562972847e-07 - syst_JES_Zjet_Stat4: 2.0611404610069636e-07 - syst_JES_Zjet_Stat5: 1.730318756761249e-07 - syst_JES_Zjet_Stat6: 1.4295027212286094e-07 - syst_JES_Zjet_Stat7: 2.0511398126895205e-07 - syst_JES_Zjet_Stat8: 4.936318137032905e-08 - syst_JES_Zjet_Stat9: 2.2168337781619987e-07 - syst_JES_Zjet_Veto: 7.987500281690135e-07 - syst_JES_Zjet_dPhi: 7.832290900496483e-07 + syst_JES_Zjet_Stat3: 1.19849256e-07 + syst_JES_Zjet_Stat4: 2.06114046e-07 + syst_JES_Zjet_Stat5: 1.73031876e-07 + syst_JES_Zjet_Stat6: 1.42950272e-07 + syst_JES_Zjet_Stat7: 2.05113981e-07 + syst_JES_Zjet_Stat8: 4.93631814e-08 + syst_JES_Zjet_Stat9: 2.21683378e-07 + syst_JES_Zjet_Veto: 7.98750028e-07 + syst_JES_Zjet_dPhi: 7.83229090e-07 syst_PRW: 0.0 - syst_Unfolding_bias: 8.334e-22 - syst_cleaning: 4.825493549886893e-06 - syst_lumi: 9.287e-06 -- stat: 1.5957e-05 - syst_JER_CROSS_CALIB_FORWARD: 3.314e-20 + syst_Unfolding_bias: 8.33400000e-22 + syst_cleaning: 4.82549355e-06 + syst_lumi: 9.28700000e-06 +- stat: 1.59570000e-05 + syst_JER_CROSS_CALIB_FORWARD: 3.31400000e-20 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 7.97685163457363e-07 - syst_JER_NP1: 3.7835891690298513e-07 - syst_JER_NP2: 7.158363569978826e-07 - syst_JER_NP3: 6.60474420397944e-08 - syst_JER_NP4: 2.5963441605457473e-21 + syst_JER_NP0: 7.97685163e-07 + syst_JER_NP1: 3.78358917e-07 + syst_JER_NP2: 7.15836357e-07 + syst_JER_NP3: 6.60474420e-08 + syst_JER_NP4: 2.59634416e-21 syst_JER_NP5: 0.0 syst_JER_NP6: 0.0 - syst_JER_NP7: 1.010305236054926e-17 - syst_JER_NP8: 8.766413056090843e-08 - syst_JES_EtaIntercalibration_Modelling: 1.3269524284992283e-05 - syst_JES_EtaIntercalibration_NonClosure: 1.2584212996846484e-09 - syst_JES_EtaIntercalibration_Stat0: 1.4491446373637105e-25 - syst_JES_EtaIntercalibration_Stat1: 1.4491446373637105e-25 - syst_JES_EtaIntercalibration_Stat10: 4.463301964543739e-25 - syst_JES_EtaIntercalibration_Stat100: 1.1128426438588814e-10 - syst_JES_EtaIntercalibration_Stat101: 6.859787223383115e-11 - syst_JES_EtaIntercalibration_Stat102: 5.064516561331872e-10 - syst_JES_EtaIntercalibration_Stat103: 5.064517229614687e-10 - syst_JES_EtaIntercalibration_Stat104: 4.218694249113107e-18 - syst_JES_EtaIntercalibration_Stat105: 1.283053514506702e-20 - syst_JES_EtaIntercalibration_Stat106: 3.2768304808152647e-21 - syst_JES_EtaIntercalibration_Stat107: 4.242622183399672e-24 - syst_JES_EtaIntercalibration_Stat108: 4.6685998971854503e-23 - syst_JES_EtaIntercalibration_Stat109: 2.5538907557241466e-14 - syst_JES_EtaIntercalibration_Stat11: 1.1128426438630037e-10 - syst_JES_EtaIntercalibration_Stat110: 2.5521403288947003e-14 - syst_JES_EtaIntercalibration_Stat111: 1.1127560474887261e-10 - syst_JES_EtaIntercalibration_Stat112: 1.1124541557271954e-10 - syst_JES_EtaIntercalibration_Stat113: 1.1142282849680522e-10 - syst_JES_EtaIntercalibration_Stat114: 4.727588138364674e-15 - syst_JES_EtaIntercalibration_Stat115: 9.659851847725203e-19 - syst_JES_EtaIntercalibration_Stat116: 9.173200427335871e-17 - syst_JES_EtaIntercalibration_Stat117: 4.620244474051129e-20 - syst_JES_EtaIntercalibration_Stat118: 1.1128426354163695e-10 - syst_JES_EtaIntercalibration_Stat119: 1.112450353550219e-10 - syst_JES_EtaIntercalibration_Stat12: 8.285265038005728e-11 - syst_JES_EtaIntercalibration_Stat120: 1.1143149068554398e-10 - syst_JES_EtaIntercalibration_Stat121: 5.535756642727351e-10 - syst_JES_EtaIntercalibration_Stat122: 5.064516558819057e-10 - syst_JES_EtaIntercalibration_Stat123: 1.0878406338605071e-16 - syst_JES_EtaIntercalibration_Stat124: 7.619333991891941e-19 - syst_JES_EtaIntercalibration_Stat125: 5.3578496386143576e-20 - syst_JES_EtaIntercalibration_Stat126: 1.99904051984946e-20 - syst_JES_EtaIntercalibration_Stat127: 4.9198476830600626e-21 - syst_JES_EtaIntercalibration_Stat128: 1.1403303873439487e-18 - syst_JES_EtaIntercalibration_Stat129: 1.7686362507593246e-12 - syst_JES_EtaIntercalibration_Stat13: 8.187404167378087e-11 - syst_JES_EtaIntercalibration_Stat130: 9.842122685742136e-11 - syst_JES_EtaIntercalibration_Stat131: 2.0046393709343335e-10 - syst_JES_EtaIntercalibration_Stat132: 3.351637236859025e-10 - syst_JES_EtaIntercalibration_Stat133: 1.824896985448768e-09 - syst_JES_EtaIntercalibration_Stat134: 2.2672527078012585e-10 - syst_JES_EtaIntercalibration_Stat135: 5.799975344775183e-17 - syst_JES_EtaIntercalibration_Stat136: 8.453603536362466e-18 - syst_JES_EtaIntercalibration_Stat137: 1.1127560409199233e-10 - syst_JES_EtaIntercalibration_Stat138: 1.9565761728079997e-10 - syst_JES_EtaIntercalibration_Stat139: 1.1436383202306576e-10 - syst_JES_EtaIntercalibration_Stat14: 8.336360536829009e-11 - syst_JES_EtaIntercalibration_Stat140: 5.248978621627918e-10 - syst_JES_EtaIntercalibration_Stat141: 6.252001439539181e-10 - syst_JES_EtaIntercalibration_Stat142: 1.900903271691507e-10 - syst_JES_EtaIntercalibration_Stat143: 1.9008861006538687e-10 - syst_JES_EtaIntercalibration_Stat144: 3.377206685633147e-12 - syst_JES_EtaIntercalibration_Stat145: 1.2494749181956394e-13 - syst_JES_EtaIntercalibration_Stat146: 2.637713135259168e-14 - syst_JES_EtaIntercalibration_Stat147: 2.495290113393631e-12 - syst_JES_EtaIntercalibration_Stat148: 9.84743075622647e-11 - syst_JES_EtaIntercalibration_Stat149: 1.8607981593928987e-10 - syst_JES_EtaIntercalibration_Stat15: 4.932107578662493e-25 - syst_JES_EtaIntercalibration_Stat150: 8.579435844360631e-10 - syst_JES_EtaIntercalibration_Stat151: 1.0536253259579516e-09 - syst_JES_EtaIntercalibration_Stat152: 1.3263850836012896e-10 - syst_JES_EtaIntercalibration_Stat153: 2.754840008058544e-10 - syst_JES_EtaIntercalibration_Stat154: 7.138827805039144e-17 - syst_JES_EtaIntercalibration_Stat155: 1.1128414287506856e-10 - syst_JES_EtaIntercalibration_Stat156: 1.7560691522545463e-10 - syst_JES_EtaIntercalibration_Stat157: 8.706969665159056e-10 - syst_JES_EtaIntercalibration_Stat158: 4.649690555991257e-10 - syst_JES_EtaIntercalibration_Stat159: 2.7496346228574716e-10 - syst_JES_EtaIntercalibration_Stat16: 3.3960619793372443e-25 - syst_JES_EtaIntercalibration_Stat160: 3.727757525198628e-11 - syst_JES_EtaIntercalibration_Stat161: 3.676125832816391e-11 - syst_JES_EtaIntercalibration_Stat162: 1.5479282444851893e-14 - syst_JES_EtaIntercalibration_Stat163: 1.1579924730338276e-13 - syst_JES_EtaIntercalibration_Stat164: 1.8165781660605746e-12 - syst_JES_EtaIntercalibration_Stat165: 9.809447033727232e-11 - syst_JES_EtaIntercalibration_Stat166: 1.195417137519368e-10 - syst_JES_EtaIntercalibration_Stat167: 3.952317761453398e-10 - syst_JES_EtaIntercalibration_Stat168: 1.2864896540586713e-09 - syst_JES_EtaIntercalibration_Stat169: 1.280391880794794e-09 - syst_JES_EtaIntercalibration_Stat17: 3.525589425434431e-17 - syst_JES_EtaIntercalibration_Stat170: 6.935700901855557e-10 - syst_JES_EtaIntercalibration_Stat171: 7.763998116305799e-11 - syst_JES_EtaIntercalibration_Stat172: 1.1746410285192451e-14 - syst_JES_EtaIntercalibration_Stat173: 1.1130954744277419e-10 - syst_JES_EtaIntercalibration_Stat174: 1.324817552533178e-10 - syst_JES_EtaIntercalibration_Stat175: 1.4925625045538295e-09 - syst_JES_EtaIntercalibration_Stat176: 4.677931594198445e-10 - syst_JES_EtaIntercalibration_Stat177: 1.0340525470207016e-09 - syst_JES_EtaIntercalibration_Stat178: 2.547111697590037e-10 - syst_JES_EtaIntercalibration_Stat179: 2.702188447814105e-10 - syst_JES_EtaIntercalibration_Stat18: 1.8486971811251297e-25 - syst_JES_EtaIntercalibration_Stat180: 8.219349913466394e-11 - syst_JES_EtaIntercalibration_Stat181: 8.114489309254157e-14 - syst_JES_EtaIntercalibration_Stat182: 1.5012916039197715e-10 - syst_JES_EtaIntercalibration_Stat183: 1.1249992299997366e-09 - syst_JES_EtaIntercalibration_Stat184: 1.0708404117794603e-09 - syst_JES_EtaIntercalibration_Stat185: 4.222925615020942e-09 - syst_JES_EtaIntercalibration_Stat186: 1.1523522410704115e-08 - syst_JES_EtaIntercalibration_Stat187: 7.757314161486564e-09 - syst_JES_EtaIntercalibration_Stat188: 3.8036936216656565e-09 - syst_JES_EtaIntercalibration_Stat189: 1.0054009611129035e-10 - syst_JES_EtaIntercalibration_Stat19: 6.29814407186752e-26 - syst_JES_EtaIntercalibration_Stat190: 8.583838143860823e-11 - syst_JES_EtaIntercalibration_Stat191: 1.7199225585764027e-09 - syst_JES_EtaIntercalibration_Stat192: 9.773609517471014e-09 - syst_JES_EtaIntercalibration_Stat193: 1.4715130877773394e-08 - syst_JES_EtaIntercalibration_Stat194: 8.868966160156436e-09 - syst_JES_EtaIntercalibration_Stat195: 2.8741514586917646e-09 - syst_JES_EtaIntercalibration_Stat196: 2.2546977358395515e-09 - syst_JES_EtaIntercalibration_Stat197: 2.634721350290197e-10 - syst_JES_EtaIntercalibration_Stat198: 1.1476325664166211e-08 - syst_JES_EtaIntercalibration_Stat199: 1.3192258449560485e-08 - syst_JES_EtaIntercalibration_Stat2: 2.043321846283644e-25 - syst_JES_EtaIntercalibration_Stat20: 1.4491446373637105e-25 - syst_JES_EtaIntercalibration_Stat200: 4.020320509611143e-09 - syst_JES_EtaIntercalibration_Stat201: 2.952748211412548e-08 - syst_JES_EtaIntercalibration_Stat202: 3.420306565207277e-08 - syst_JES_EtaIntercalibration_Stat203: 3.7965150055676056e-09 - syst_JES_EtaIntercalibration_Stat204: 1.6489953725829555e-10 - syst_JES_EtaIntercalibration_Stat205: 3.7557874230978516e-10 - syst_JES_EtaIntercalibration_Stat206: 7.835919172324329e-09 - syst_JES_EtaIntercalibration_Stat207: 2.3194729465979982e-08 - syst_JES_EtaIntercalibration_Stat208: 2.989287875063223e-08 - syst_JES_EtaIntercalibration_Stat209: 3.454718910418038e-08 - syst_JES_EtaIntercalibration_Stat21: 1.4491446373637105e-25 - syst_JES_EtaIntercalibration_Stat210: 1.9203144553692242e-08 - syst_JES_EtaIntercalibration_Stat211: 8.16285836885585e-09 - syst_JES_EtaIntercalibration_Stat212: 1.6153955397982254e-08 - syst_JES_EtaIntercalibration_Stat213: 1.2514684793473625e-08 - syst_JES_EtaIntercalibration_Stat214: 3.3842961971435066e-08 - syst_JES_EtaIntercalibration_Stat215: 3.016717877097558e-08 - syst_JES_EtaIntercalibration_Stat216: 1.8028964383735411e-09 - syst_JES_EtaIntercalibration_Stat217: 1.2739472034221043e-10 - syst_JES_EtaIntercalibration_Stat218: 1.729906230840273e-10 - syst_JES_EtaIntercalibration_Stat219: 6.530809140527688e-10 - syst_JES_EtaIntercalibration_Stat22: 1.4491446373637105e-25 - syst_JES_EtaIntercalibration_Stat220: 3.2637243679575636e-08 - syst_JES_EtaIntercalibration_Stat221: 2.9779251165870507e-08 - syst_JES_EtaIntercalibration_Stat222: 4.217543716430216e-08 - syst_JES_EtaIntercalibration_Stat223: 4.28068180901127e-08 - syst_JES_EtaIntercalibration_Stat224: 3.10091615494518e-08 - syst_JES_EtaIntercalibration_Stat225: 6.329350993585362e-08 - syst_JES_EtaIntercalibration_Stat226: 1.0278054825695376e-07 - syst_JES_EtaIntercalibration_Stat227: 1.1862979726864579e-07 - syst_JES_EtaIntercalibration_Stat228: 2.2489846597965045e-08 - syst_JES_EtaIntercalibration_Stat229: 3.0669109458867567e-10 - syst_JES_EtaIntercalibration_Stat23: 2.043321846283644e-25 - syst_JES_EtaIntercalibration_Stat230: 2.956610728520417e-09 - syst_JES_EtaIntercalibration_Stat231: 1.8088152718008543e-08 - syst_JES_EtaIntercalibration_Stat232: 8.853377702888347e-08 - syst_JES_EtaIntercalibration_Stat233: 6.736868560392134e-08 - syst_JES_EtaIntercalibration_Stat234: 7.507464601981151e-08 - syst_JES_EtaIntercalibration_Stat235: 8.413911040651665e-08 - syst_JES_EtaIntercalibration_Stat236: 1.3950558232558293e-09 - syst_JES_EtaIntercalibration_Stat237: 1.6255296829033915e-08 - syst_JES_EtaIntercalibration_Stat238: 1.746819395358318e-08 - syst_JES_EtaIntercalibration_Stat239: 4.140643078979399e-09 - syst_JES_EtaIntercalibration_Stat24: 8.533521708532768e-24 - syst_JES_EtaIntercalibration_Stat240: 6.424885282804666e-11 - syst_JES_EtaIntercalibration_Stat241: 4.447540219042431e-11 - syst_JES_EtaIntercalibration_Stat242: 3.7174532572717043e-09 - syst_JES_EtaIntercalibration_Stat243: 2.140814876472708e-09 - syst_JES_EtaIntercalibration_Stat244: 5.1000236029783e-09 - syst_JES_EtaIntercalibration_Stat245: 1.1331726291699778e-08 - syst_JES_EtaIntercalibration_Stat25: 2.2416629429956683e-24 - syst_JES_EtaIntercalibration_Stat26: 1.2794478525911089e-24 - syst_JES_EtaIntercalibration_Stat27: 1.1128426438630001e-10 - syst_JES_EtaIntercalibration_Stat28: 2.1873067246044847e-24 - syst_JES_EtaIntercalibration_Stat29: 7.156901057720443e-24 - syst_JES_EtaIntercalibration_Stat3: 2.043321846283644e-25 - syst_JES_EtaIntercalibration_Stat30: 7.253621123790516e-24 - syst_JES_EtaIntercalibration_Stat31: 1.4283502091574042e-23 - syst_JES_EtaIntercalibration_Stat32: 4.819129485705899e-25 - syst_JES_EtaIntercalibration_Stat33: 1.1128426438630033e-10 - syst_JES_EtaIntercalibration_Stat34: 1.1128426438630044e-10 - syst_JES_EtaIntercalibration_Stat35: 8.324236181176026e-11 - syst_JES_EtaIntercalibration_Stat36: 2.1226282646756662e-10 - syst_JES_EtaIntercalibration_Stat37: 2.104398625944001e-23 - syst_JES_EtaIntercalibration_Stat38: 3.520393184457747e-17 - syst_JES_EtaIntercalibration_Stat39: 1.8693816559694278e-23 - syst_JES_EtaIntercalibration_Stat4: 1.2310468431379853e-25 - syst_JES_EtaIntercalibration_Stat40: 1.17547241490847e-22 - syst_JES_EtaIntercalibration_Stat41: 4.1726635941566146e-24 - syst_JES_EtaIntercalibration_Stat42: 1.1497109984687457e-25 - syst_JES_EtaIntercalibration_Stat43: 1.4491446373637105e-25 - syst_JES_EtaIntercalibration_Stat44: 1.4491446373637105e-25 - syst_JES_EtaIntercalibration_Stat45: 4.0288903224088886e-24 - syst_JES_EtaIntercalibration_Stat46: 2.4093619487324853e-24 - syst_JES_EtaIntercalibration_Stat47: 4.600777624489147e-23 - syst_JES_EtaIntercalibration_Stat48: 9.876870330221005e-23 - syst_JES_EtaIntercalibration_Stat49: 1.1128426438629887e-10 - syst_JES_EtaIntercalibration_Stat5: 2.613041822761358e-25 - syst_JES_EtaIntercalibration_Stat50: 4.0738728743420556e-22 - syst_JES_EtaIntercalibration_Stat51: 2.768144083587413e-23 - syst_JES_EtaIntercalibration_Stat52: 2.136204898295105e-22 - syst_JES_EtaIntercalibration_Stat53: 2.457520894560207e-22 - syst_JES_EtaIntercalibration_Stat54: 1.0303849864868313e-20 - syst_JES_EtaIntercalibration_Stat55: 1.1128426438629962e-10 - syst_JES_EtaIntercalibration_Stat56: 6.771452632190618e-11 - syst_JES_EtaIntercalibration_Stat57: 6.767122505171625e-11 - syst_JES_EtaIntercalibration_Stat58: 2.1174321122529948e-10 - syst_JES_EtaIntercalibration_Stat59: 6.274516455472884e-23 - syst_JES_EtaIntercalibration_Stat6: 2.6356909435667913e-25 - syst_JES_EtaIntercalibration_Stat60: 1.0622778956092421e-23 - syst_JES_EtaIntercalibration_Stat61: 1.0901305333192902e-22 - syst_JES_EtaIntercalibration_Stat62: 9.586164924906102e-23 - syst_JES_EtaIntercalibration_Stat63: 2.3580559789792947e-24 - syst_JES_EtaIntercalibration_Stat64: 1.1548448759465491e-26 - syst_JES_EtaIntercalibration_Stat65: 1.4491446373637105e-25 - syst_JES_EtaIntercalibration_Stat66: 1.4491446373637105e-25 - syst_JES_EtaIntercalibration_Stat67: 3.574139528613845e-23 - syst_JES_EtaIntercalibration_Stat68: 3.955607466622541e-22 - syst_JES_EtaIntercalibration_Stat69: 2.5521768549616942e-14 - syst_JES_EtaIntercalibration_Stat7: 1.4491446373637105e-25 - syst_JES_EtaIntercalibration_Stat70: 1.1128426438277477e-10 - syst_JES_EtaIntercalibration_Stat71: 1.1128426438377503e-10 - syst_JES_EtaIntercalibration_Stat72: 1.1128426438631496e-10 - syst_JES_EtaIntercalibration_Stat73: 5.064516561331643e-10 - syst_JES_EtaIntercalibration_Stat74: 4.1974911751177755e-18 - syst_JES_EtaIntercalibration_Stat75: 1.0370250070789036e-20 - syst_JES_EtaIntercalibration_Stat76: 1.0317955840184624e-20 - syst_JES_EtaIntercalibration_Stat77: 1.1128426438630565e-10 - syst_JES_EtaIntercalibration_Stat78: 7.058107040840819e-11 - syst_JES_EtaIntercalibration_Stat79: 1.1128426438629554e-10 - syst_JES_EtaIntercalibration_Stat8: 8.874162312579142e-26 - syst_JES_EtaIntercalibration_Stat80: 6.834672486616618e-11 - syst_JES_EtaIntercalibration_Stat81: 6.683980601969159e-23 - syst_JES_EtaIntercalibration_Stat82: 5.064516575372555e-10 - syst_JES_EtaIntercalibration_Stat83: 2.0412612166746324e-21 - syst_JES_EtaIntercalibration_Stat84: 1.3301547579135295e-20 - syst_JES_EtaIntercalibration_Stat85: 4.74273093797234e-21 - syst_JES_EtaIntercalibration_Stat86: 4.0702948136467956e-24 - syst_JES_EtaIntercalibration_Stat87: 8.874162312579142e-26 - syst_JES_EtaIntercalibration_Stat88: 4.166221399541796e-24 - syst_JES_EtaIntercalibration_Stat89: 6.2681721881901104e-21 - syst_JES_EtaIntercalibration_Stat9: 4.463301964543739e-25 - syst_JES_EtaIntercalibration_Stat90: 2.5521765378551133e-14 - syst_JES_EtaIntercalibration_Stat91: 1.1128426438383422e-10 - syst_JES_EtaIntercalibration_Stat92: 1.1128426438876852e-10 - syst_JES_EtaIntercalibration_Stat93: 1.1128426438633884e-10 - syst_JES_EtaIntercalibration_Stat94: 1.7334505091002745e-21 - syst_JES_EtaIntercalibration_Stat95: 4.215664057838038e-18 - syst_JES_EtaIntercalibration_Stat96: 4.213134040471149e-18 - syst_JES_EtaIntercalibration_Stat97: 1.1238615131211673e-20 - syst_JES_EtaIntercalibration_Stat98: 1.1128426438632286e-10 - syst_JES_EtaIntercalibration_Stat99: 7.071963538294133e-11 - syst_JES_EtaIntercalibration_TotalStat_MJB: 2.7545327643722086e-06 - syst_JES_Flavour_Comp: 5.205029562836315e-06 - syst_JES_Flavour_Response: 1.582848934674437e-06 - syst_JES_Gjet_Generator: 6.612741035304498e-06 - syst_JES_Gjet_OOC: 5.5162900576383755e-06 - syst_JES_Gjet_Purity: 6.272472618513372e-07 - syst_JES_Gjet_Stat1: 2.5348563568770516e-23 - syst_JES_Gjet_Stat10: 1.8520379990702134e-07 - syst_JES_Gjet_Stat11: 1.8994590677348116e-07 - syst_JES_Gjet_Stat12: 2.456983719929784e-07 - syst_JES_Gjet_Stat13: 1.1939708916049839e-06 - syst_JES_Gjet_Stat14: 3.4267591102964912e-06 - syst_JES_Gjet_Stat15: 5.626002843938137e-06 - syst_JES_Gjet_Stat2: 1.5371950917173784e-08 - syst_JES_Gjet_Stat3: 1.1263737512477818e-23 - syst_JES_Gjet_Stat4: 1.8738859083933044e-21 - syst_JES_Gjet_Stat5: 3.2779437193917774e-22 - syst_JES_Gjet_Stat6: 8.456830139005986e-08 - syst_JES_Gjet_Stat7: 7.204947466845264e-08 - syst_JES_Gjet_Stat8: 5.038535294325256e-12 - syst_JES_Gjet_Stat9: 7.367468001287824e-08 - syst_JES_Gjet_Veto: 5.905630110326924e-06 - syst_JES_Gjet_dPhi: 4.941674817306377e-07 - syst_JES_LArESZee: 9.521131130280687e-06 - syst_JES_LArEsmear: 8.407298436477678e-07 - syst_JES_LAr_JVT: 1.0774454788990485e-06 - syst_JES_MJB_Alpha: 1.5904867431072791e-07 - syst_JES_MJB_Asym: 2.505000399201565e-06 - syst_JES_MJB_Beta: 1.3544472701068876e-07 - syst_JES_MJB_Fragmentation: 6.732589546378125e-07 + syst_JER_NP7: 1.01030524e-17 + syst_JER_NP8: 8.76641306e-08 + syst_JES_EtaIntercalibration_Modelling: 1.32695243e-05 + syst_JES_EtaIntercalibration_NonClosure: 1.25842130e-09 + syst_JES_EtaIntercalibration_Stat0: 1.44914464e-25 + syst_JES_EtaIntercalibration_Stat1: 1.44914464e-25 + syst_JES_EtaIntercalibration_Stat10: 4.46330196e-25 + syst_JES_EtaIntercalibration_Stat100: 1.11284264e-10 + syst_JES_EtaIntercalibration_Stat101: 6.85978722e-11 + syst_JES_EtaIntercalibration_Stat102: 5.06451656e-10 + syst_JES_EtaIntercalibration_Stat103: 5.06451723e-10 + syst_JES_EtaIntercalibration_Stat104: 4.21869425e-18 + syst_JES_EtaIntercalibration_Stat105: 1.28305351e-20 + syst_JES_EtaIntercalibration_Stat106: 3.27683048e-21 + syst_JES_EtaIntercalibration_Stat107: 4.24262218e-24 + syst_JES_EtaIntercalibration_Stat108: 4.66859990e-23 + syst_JES_EtaIntercalibration_Stat109: 2.55389076e-14 + syst_JES_EtaIntercalibration_Stat11: 1.11284264e-10 + syst_JES_EtaIntercalibration_Stat110: 2.55214033e-14 + syst_JES_EtaIntercalibration_Stat111: 1.11275605e-10 + syst_JES_EtaIntercalibration_Stat112: 1.11245416e-10 + syst_JES_EtaIntercalibration_Stat113: 1.11422828e-10 + syst_JES_EtaIntercalibration_Stat114: 4.72758814e-15 + syst_JES_EtaIntercalibration_Stat115: 9.65985185e-19 + syst_JES_EtaIntercalibration_Stat116: 9.17320043e-17 + syst_JES_EtaIntercalibration_Stat117: 4.62024447e-20 + syst_JES_EtaIntercalibration_Stat118: 1.11284264e-10 + syst_JES_EtaIntercalibration_Stat119: 1.11245035e-10 + syst_JES_EtaIntercalibration_Stat12: 8.28526504e-11 + syst_JES_EtaIntercalibration_Stat120: 1.11431491e-10 + syst_JES_EtaIntercalibration_Stat121: 5.53575664e-10 + syst_JES_EtaIntercalibration_Stat122: 5.06451656e-10 + syst_JES_EtaIntercalibration_Stat123: 1.08784063e-16 + syst_JES_EtaIntercalibration_Stat124: 7.61933399e-19 + syst_JES_EtaIntercalibration_Stat125: 5.35784964e-20 + syst_JES_EtaIntercalibration_Stat126: 1.99904052e-20 + syst_JES_EtaIntercalibration_Stat127: 4.91984768e-21 + syst_JES_EtaIntercalibration_Stat128: 1.14033039e-18 + syst_JES_EtaIntercalibration_Stat129: 1.76863625e-12 + syst_JES_EtaIntercalibration_Stat13: 8.18740417e-11 + syst_JES_EtaIntercalibration_Stat130: 9.84212269e-11 + syst_JES_EtaIntercalibration_Stat131: 2.00463937e-10 + syst_JES_EtaIntercalibration_Stat132: 3.35163724e-10 + syst_JES_EtaIntercalibration_Stat133: 1.82489699e-09 + syst_JES_EtaIntercalibration_Stat134: 2.26725271e-10 + syst_JES_EtaIntercalibration_Stat135: 5.79997534e-17 + syst_JES_EtaIntercalibration_Stat136: 8.45360354e-18 + syst_JES_EtaIntercalibration_Stat137: 1.11275604e-10 + syst_JES_EtaIntercalibration_Stat138: 1.95657617e-10 + syst_JES_EtaIntercalibration_Stat139: 1.14363832e-10 + syst_JES_EtaIntercalibration_Stat14: 8.33636054e-11 + syst_JES_EtaIntercalibration_Stat140: 5.24897862e-10 + syst_JES_EtaIntercalibration_Stat141: 6.25200144e-10 + syst_JES_EtaIntercalibration_Stat142: 1.90090327e-10 + syst_JES_EtaIntercalibration_Stat143: 1.90088610e-10 + syst_JES_EtaIntercalibration_Stat144: 3.37720669e-12 + syst_JES_EtaIntercalibration_Stat145: 1.24947492e-13 + syst_JES_EtaIntercalibration_Stat146: 2.63771314e-14 + syst_JES_EtaIntercalibration_Stat147: 2.49529011e-12 + syst_JES_EtaIntercalibration_Stat148: 9.84743076e-11 + syst_JES_EtaIntercalibration_Stat149: 1.86079816e-10 + syst_JES_EtaIntercalibration_Stat15: 4.93210758e-25 + syst_JES_EtaIntercalibration_Stat150: 8.57943584e-10 + syst_JES_EtaIntercalibration_Stat151: 1.05362533e-09 + syst_JES_EtaIntercalibration_Stat152: 1.32638508e-10 + syst_JES_EtaIntercalibration_Stat153: 2.75484001e-10 + syst_JES_EtaIntercalibration_Stat154: 7.13882781e-17 + syst_JES_EtaIntercalibration_Stat155: 1.11284143e-10 + syst_JES_EtaIntercalibration_Stat156: 1.75606915e-10 + syst_JES_EtaIntercalibration_Stat157: 8.70696967e-10 + syst_JES_EtaIntercalibration_Stat158: 4.64969056e-10 + syst_JES_EtaIntercalibration_Stat159: 2.74963462e-10 + syst_JES_EtaIntercalibration_Stat16: 3.39606198e-25 + syst_JES_EtaIntercalibration_Stat160: 3.72775753e-11 + syst_JES_EtaIntercalibration_Stat161: 3.67612583e-11 + syst_JES_EtaIntercalibration_Stat162: 1.54792824e-14 + syst_JES_EtaIntercalibration_Stat163: 1.15799247e-13 + syst_JES_EtaIntercalibration_Stat164: 1.81657817e-12 + syst_JES_EtaIntercalibration_Stat165: 9.80944703e-11 + syst_JES_EtaIntercalibration_Stat166: 1.19541714e-10 + syst_JES_EtaIntercalibration_Stat167: 3.95231776e-10 + syst_JES_EtaIntercalibration_Stat168: 1.28648965e-09 + syst_JES_EtaIntercalibration_Stat169: 1.28039188e-09 + syst_JES_EtaIntercalibration_Stat17: 3.52558943e-17 + syst_JES_EtaIntercalibration_Stat170: 6.93570090e-10 + syst_JES_EtaIntercalibration_Stat171: 7.76399812e-11 + syst_JES_EtaIntercalibration_Stat172: 1.17464103e-14 + syst_JES_EtaIntercalibration_Stat173: 1.11309547e-10 + syst_JES_EtaIntercalibration_Stat174: 1.32481755e-10 + syst_JES_EtaIntercalibration_Stat175: 1.49256250e-09 + syst_JES_EtaIntercalibration_Stat176: 4.67793159e-10 + syst_JES_EtaIntercalibration_Stat177: 1.03405255e-09 + syst_JES_EtaIntercalibration_Stat178: 2.54711170e-10 + syst_JES_EtaIntercalibration_Stat179: 2.70218845e-10 + syst_JES_EtaIntercalibration_Stat18: 1.84869718e-25 + syst_JES_EtaIntercalibration_Stat180: 8.21934991e-11 + syst_JES_EtaIntercalibration_Stat181: 8.11448931e-14 + syst_JES_EtaIntercalibration_Stat182: 1.50129160e-10 + syst_JES_EtaIntercalibration_Stat183: 1.12499923e-09 + syst_JES_EtaIntercalibration_Stat184: 1.07084041e-09 + syst_JES_EtaIntercalibration_Stat185: 4.22292562e-09 + syst_JES_EtaIntercalibration_Stat186: 1.15235224e-08 + syst_JES_EtaIntercalibration_Stat187: 7.75731416e-09 + syst_JES_EtaIntercalibration_Stat188: 3.80369362e-09 + syst_JES_EtaIntercalibration_Stat189: 1.00540096e-10 + syst_JES_EtaIntercalibration_Stat19: 6.29814407e-26 + syst_JES_EtaIntercalibration_Stat190: 8.58383814e-11 + syst_JES_EtaIntercalibration_Stat191: 1.71992256e-09 + syst_JES_EtaIntercalibration_Stat192: 9.77360952e-09 + syst_JES_EtaIntercalibration_Stat193: 1.47151309e-08 + syst_JES_EtaIntercalibration_Stat194: 8.86896616e-09 + syst_JES_EtaIntercalibration_Stat195: 2.87415146e-09 + syst_JES_EtaIntercalibration_Stat196: 2.25469774e-09 + syst_JES_EtaIntercalibration_Stat197: 2.63472135e-10 + syst_JES_EtaIntercalibration_Stat198: 1.14763257e-08 + syst_JES_EtaIntercalibration_Stat199: 1.31922584e-08 + syst_JES_EtaIntercalibration_Stat2: 2.04332185e-25 + syst_JES_EtaIntercalibration_Stat20: 1.44914464e-25 + syst_JES_EtaIntercalibration_Stat200: 4.02032051e-09 + syst_JES_EtaIntercalibration_Stat201: 2.95274821e-08 + syst_JES_EtaIntercalibration_Stat202: 3.42030657e-08 + syst_JES_EtaIntercalibration_Stat203: 3.79651501e-09 + syst_JES_EtaIntercalibration_Stat204: 1.64899537e-10 + syst_JES_EtaIntercalibration_Stat205: 3.75578742e-10 + syst_JES_EtaIntercalibration_Stat206: 7.83591917e-09 + syst_JES_EtaIntercalibration_Stat207: 2.31947295e-08 + syst_JES_EtaIntercalibration_Stat208: 2.98928788e-08 + syst_JES_EtaIntercalibration_Stat209: 3.45471891e-08 + syst_JES_EtaIntercalibration_Stat21: 1.44914464e-25 + syst_JES_EtaIntercalibration_Stat210: 1.92031446e-08 + syst_JES_EtaIntercalibration_Stat211: 8.16285837e-09 + syst_JES_EtaIntercalibration_Stat212: 1.61539554e-08 + syst_JES_EtaIntercalibration_Stat213: 1.25146848e-08 + syst_JES_EtaIntercalibration_Stat214: 3.38429620e-08 + syst_JES_EtaIntercalibration_Stat215: 3.01671788e-08 + syst_JES_EtaIntercalibration_Stat216: 1.80289644e-09 + syst_JES_EtaIntercalibration_Stat217: 1.27394720e-10 + syst_JES_EtaIntercalibration_Stat218: 1.72990623e-10 + syst_JES_EtaIntercalibration_Stat219: 6.53080914e-10 + syst_JES_EtaIntercalibration_Stat22: 1.44914464e-25 + syst_JES_EtaIntercalibration_Stat220: 3.26372437e-08 + syst_JES_EtaIntercalibration_Stat221: 2.97792512e-08 + syst_JES_EtaIntercalibration_Stat222: 4.21754372e-08 + syst_JES_EtaIntercalibration_Stat223: 4.28068181e-08 + syst_JES_EtaIntercalibration_Stat224: 3.10091615e-08 + syst_JES_EtaIntercalibration_Stat225: 6.32935099e-08 + syst_JES_EtaIntercalibration_Stat226: 1.02780548e-07 + syst_JES_EtaIntercalibration_Stat227: 1.18629797e-07 + syst_JES_EtaIntercalibration_Stat228: 2.24898466e-08 + syst_JES_EtaIntercalibration_Stat229: 3.06691095e-10 + syst_JES_EtaIntercalibration_Stat23: 2.04332185e-25 + syst_JES_EtaIntercalibration_Stat230: 2.95661073e-09 + syst_JES_EtaIntercalibration_Stat231: 1.80881527e-08 + syst_JES_EtaIntercalibration_Stat232: 8.85337770e-08 + syst_JES_EtaIntercalibration_Stat233: 6.73686856e-08 + syst_JES_EtaIntercalibration_Stat234: 7.50746460e-08 + syst_JES_EtaIntercalibration_Stat235: 8.41391104e-08 + syst_JES_EtaIntercalibration_Stat236: 1.39505582e-09 + syst_JES_EtaIntercalibration_Stat237: 1.62552968e-08 + syst_JES_EtaIntercalibration_Stat238: 1.74681940e-08 + syst_JES_EtaIntercalibration_Stat239: 4.14064308e-09 + syst_JES_EtaIntercalibration_Stat24: 8.53352171e-24 + syst_JES_EtaIntercalibration_Stat240: 6.42488528e-11 + syst_JES_EtaIntercalibration_Stat241: 4.44754022e-11 + syst_JES_EtaIntercalibration_Stat242: 3.71745326e-09 + syst_JES_EtaIntercalibration_Stat243: 2.14081488e-09 + syst_JES_EtaIntercalibration_Stat244: 5.10002360e-09 + syst_JES_EtaIntercalibration_Stat245: 1.13317263e-08 + syst_JES_EtaIntercalibration_Stat25: 2.24166294e-24 + syst_JES_EtaIntercalibration_Stat26: 1.27944785e-24 + syst_JES_EtaIntercalibration_Stat27: 1.11284264e-10 + syst_JES_EtaIntercalibration_Stat28: 2.18730672e-24 + syst_JES_EtaIntercalibration_Stat29: 7.15690106e-24 + syst_JES_EtaIntercalibration_Stat3: 2.04332185e-25 + syst_JES_EtaIntercalibration_Stat30: 7.25362112e-24 + syst_JES_EtaIntercalibration_Stat31: 1.42835021e-23 + syst_JES_EtaIntercalibration_Stat32: 4.81912949e-25 + syst_JES_EtaIntercalibration_Stat33: 1.11284264e-10 + syst_JES_EtaIntercalibration_Stat34: 1.11284264e-10 + syst_JES_EtaIntercalibration_Stat35: 8.32423618e-11 + syst_JES_EtaIntercalibration_Stat36: 2.12262826e-10 + syst_JES_EtaIntercalibration_Stat37: 2.10439863e-23 + syst_JES_EtaIntercalibration_Stat38: 3.52039318e-17 + syst_JES_EtaIntercalibration_Stat39: 1.86938166e-23 + syst_JES_EtaIntercalibration_Stat4: 1.23104684e-25 + syst_JES_EtaIntercalibration_Stat40: 1.17547241e-22 + syst_JES_EtaIntercalibration_Stat41: 4.17266359e-24 + syst_JES_EtaIntercalibration_Stat42: 1.14971100e-25 + syst_JES_EtaIntercalibration_Stat43: 1.44914464e-25 + syst_JES_EtaIntercalibration_Stat44: 1.44914464e-25 + syst_JES_EtaIntercalibration_Stat45: 4.02889032e-24 + syst_JES_EtaIntercalibration_Stat46: 2.40936195e-24 + syst_JES_EtaIntercalibration_Stat47: 4.60077762e-23 + syst_JES_EtaIntercalibration_Stat48: 9.87687033e-23 + syst_JES_EtaIntercalibration_Stat49: 1.11284264e-10 + syst_JES_EtaIntercalibration_Stat5: 2.61304182e-25 + syst_JES_EtaIntercalibration_Stat50: 4.07387287e-22 + syst_JES_EtaIntercalibration_Stat51: 2.76814408e-23 + syst_JES_EtaIntercalibration_Stat52: 2.13620490e-22 + syst_JES_EtaIntercalibration_Stat53: 2.45752089e-22 + syst_JES_EtaIntercalibration_Stat54: 1.03038499e-20 + syst_JES_EtaIntercalibration_Stat55: 1.11284264e-10 + syst_JES_EtaIntercalibration_Stat56: 6.77145263e-11 + syst_JES_EtaIntercalibration_Stat57: 6.76712251e-11 + syst_JES_EtaIntercalibration_Stat58: 2.11743211e-10 + syst_JES_EtaIntercalibration_Stat59: 6.27451646e-23 + syst_JES_EtaIntercalibration_Stat6: 2.63569094e-25 + syst_JES_EtaIntercalibration_Stat60: 1.06227790e-23 + syst_JES_EtaIntercalibration_Stat61: 1.09013053e-22 + syst_JES_EtaIntercalibration_Stat62: 9.58616492e-23 + syst_JES_EtaIntercalibration_Stat63: 2.35805598e-24 + syst_JES_EtaIntercalibration_Stat64: 1.15484488e-26 + syst_JES_EtaIntercalibration_Stat65: 1.44914464e-25 + syst_JES_EtaIntercalibration_Stat66: 1.44914464e-25 + syst_JES_EtaIntercalibration_Stat67: 3.57413953e-23 + syst_JES_EtaIntercalibration_Stat68: 3.95560747e-22 + syst_JES_EtaIntercalibration_Stat69: 2.55217685e-14 + syst_JES_EtaIntercalibration_Stat7: 1.44914464e-25 + syst_JES_EtaIntercalibration_Stat70: 1.11284264e-10 + syst_JES_EtaIntercalibration_Stat71: 1.11284264e-10 + syst_JES_EtaIntercalibration_Stat72: 1.11284264e-10 + syst_JES_EtaIntercalibration_Stat73: 5.06451656e-10 + syst_JES_EtaIntercalibration_Stat74: 4.19749118e-18 + syst_JES_EtaIntercalibration_Stat75: 1.03702501e-20 + syst_JES_EtaIntercalibration_Stat76: 1.03179558e-20 + syst_JES_EtaIntercalibration_Stat77: 1.11284264e-10 + syst_JES_EtaIntercalibration_Stat78: 7.05810704e-11 + syst_JES_EtaIntercalibration_Stat79: 1.11284264e-10 + syst_JES_EtaIntercalibration_Stat8: 8.87416231e-26 + syst_JES_EtaIntercalibration_Stat80: 6.83467249e-11 + syst_JES_EtaIntercalibration_Stat81: 6.68398060e-23 + syst_JES_EtaIntercalibration_Stat82: 5.06451658e-10 + syst_JES_EtaIntercalibration_Stat83: 2.04126122e-21 + syst_JES_EtaIntercalibration_Stat84: 1.33015476e-20 + syst_JES_EtaIntercalibration_Stat85: 4.74273094e-21 + syst_JES_EtaIntercalibration_Stat86: 4.07029481e-24 + syst_JES_EtaIntercalibration_Stat87: 8.87416231e-26 + syst_JES_EtaIntercalibration_Stat88: 4.16622140e-24 + syst_JES_EtaIntercalibration_Stat89: 6.26817219e-21 + syst_JES_EtaIntercalibration_Stat9: 4.46330196e-25 + syst_JES_EtaIntercalibration_Stat90: 2.55217654e-14 + syst_JES_EtaIntercalibration_Stat91: 1.11284264e-10 + syst_JES_EtaIntercalibration_Stat92: 1.11284264e-10 + syst_JES_EtaIntercalibration_Stat93: 1.11284264e-10 + syst_JES_EtaIntercalibration_Stat94: 1.73345051e-21 + syst_JES_EtaIntercalibration_Stat95: 4.21566406e-18 + syst_JES_EtaIntercalibration_Stat96: 4.21313404e-18 + syst_JES_EtaIntercalibration_Stat97: 1.12386151e-20 + syst_JES_EtaIntercalibration_Stat98: 1.11284264e-10 + syst_JES_EtaIntercalibration_Stat99: 7.07196354e-11 + syst_JES_EtaIntercalibration_TotalStat_MJB: 2.75453276e-06 + syst_JES_Flavour_Comp: 5.20502956e-06 + syst_JES_Flavour_Response: 1.58284893e-06 + syst_JES_Gjet_Generator: 6.61274104e-06 + syst_JES_Gjet_OOC: 5.51629006e-06 + syst_JES_Gjet_Purity: 6.27247262e-07 + syst_JES_Gjet_Stat1: 2.53485636e-23 + syst_JES_Gjet_Stat10: 1.85203800e-07 + syst_JES_Gjet_Stat11: 1.89945907e-07 + syst_JES_Gjet_Stat12: 2.45698372e-07 + syst_JES_Gjet_Stat13: 1.19397089e-06 + syst_JES_Gjet_Stat14: 3.42675911e-06 + syst_JES_Gjet_Stat15: 5.62600284e-06 + syst_JES_Gjet_Stat2: 1.53719509e-08 + syst_JES_Gjet_Stat3: 1.12637375e-23 + syst_JES_Gjet_Stat4: 1.87388591e-21 + syst_JES_Gjet_Stat5: 3.27794372e-22 + syst_JES_Gjet_Stat6: 8.45683014e-08 + syst_JES_Gjet_Stat7: 7.20494747e-08 + syst_JES_Gjet_Stat8: 5.03853529e-12 + syst_JES_Gjet_Stat9: 7.36746800e-08 + syst_JES_Gjet_Veto: 5.90563011e-06 + syst_JES_Gjet_dPhi: 4.94167482e-07 + syst_JES_LArESZee: 9.52113113e-06 + syst_JES_LArEsmear: 8.40729844e-07 + syst_JES_LAr_JVT: 1.07744548e-06 + syst_JES_MJB_Alpha: 1.59048674e-07 + syst_JES_MJB_Asym: 2.50500040e-06 + syst_JES_MJB_Beta: 1.35444727e-07 + syst_JES_MJB_Fragmentation: 6.73258955e-07 syst_JES_MJB_Stat1: 0.0 - syst_JES_MJB_Stat10: 3.037963586022716e-08 - syst_JES_MJB_Stat11: 3.4552230029333854e-08 - syst_JES_MJB_Stat12: 6.510772841990419e-08 - syst_JES_MJB_Stat13: 1.8299602967004505e-07 - syst_JES_MJB_Stat14: 4.7514585129200063e-07 - syst_JES_MJB_Stat15: 4.840213425046462e-08 - syst_JES_MJB_Stat16: 9.918968293124038e-07 - syst_JES_MJB_Stat2: 2.947084449078445e-14 - syst_JES_MJB_Stat3: 1.5510514981779294e-09 - syst_JES_MJB_Stat4: 6.786241522374517e-10 - syst_JES_MJB_Stat5: 6.953833529068697e-10 + syst_JES_MJB_Stat10: 3.03796359e-08 + syst_JES_MJB_Stat11: 3.45522300e-08 + syst_JES_MJB_Stat12: 6.51077284e-08 + syst_JES_MJB_Stat13: 1.82996030e-07 + syst_JES_MJB_Stat14: 4.75145851e-07 + syst_JES_MJB_Stat15: 4.84021343e-08 + syst_JES_MJB_Stat16: 9.91896829e-07 + syst_JES_MJB_Stat2: 2.94708445e-14 + syst_JES_MJB_Stat3: 1.55105150e-09 + syst_JES_MJB_Stat4: 6.78624152e-10 + syst_JES_MJB_Stat5: 6.95383353e-10 syst_JES_MJB_Stat6: 0.0 syst_JES_MJB_Stat7: 0.0 syst_JES_MJB_Stat8: 0.0 - syst_JES_MJB_Stat9: 1.3258848931939756e-08 - syst_JES_MJB_Threshold: 1.0549576721366597e-06 - syst_JES_Pileup_MuOffset: 1.6645938693867641e-06 - syst_JES_Pileup_NPVOffset: 1.5282120271742401e-06 - syst_JES_Pileup_Pt_term: 7.42191570620416e-07 - syst_JES_Pileup_Rho_topology: 1.8901909956403876e-06 - syst_JES_PunchThrough_MC15: 3.553854632648893e-06 - syst_JES_SingleParticle_HighPt: 1.1115554990642619e-08 - syst_JES_Zjet_MC: 2.5095570824350654e-06 - syst_JES_Zjet_MuScale: 2.0479179671070813e-07 - syst_JES_Zjet_MuSmearID: 1.524750368912892e-08 - syst_JES_Zjet_MuSmearMS: 6.086620306048342e-07 - syst_JES_Zjet_OOC: 1.5704642625669647e-06 - syst_JES_Zjet_Stat1: 1.806875964198982e-07 - syst_JES_Zjet_Stat10: 1.4063599068161748e-07 - syst_JES_Zjet_Stat11: 1.5865166584375973e-07 - syst_JES_Zjet_Stat12: 3.2687156499151165e-07 - syst_JES_Zjet_Stat13: 6.297908760056785e-07 + syst_JES_MJB_Stat9: 1.32588489e-08 + syst_JES_MJB_Threshold: 1.05495767e-06 + syst_JES_Pileup_MuOffset: 1.66459387e-06 + syst_JES_Pileup_NPVOffset: 1.52821203e-06 + syst_JES_Pileup_Pt_term: 7.42191571e-07 + syst_JES_Pileup_Rho_topology: 1.89019100e-06 + syst_JES_PunchThrough_MC15: 3.55385463e-06 + syst_JES_SingleParticle_HighPt: 1.11155550e-08 + syst_JES_Zjet_MC: 2.50955708e-06 + syst_JES_Zjet_MuScale: 2.04791797e-07 + syst_JES_Zjet_MuSmearID: 1.52475037e-08 + syst_JES_Zjet_MuSmearMS: 6.08662031e-07 + syst_JES_Zjet_OOC: 1.57046426e-06 + syst_JES_Zjet_Stat1: 1.80687596e-07 + syst_JES_Zjet_Stat10: 1.40635991e-07 + syst_JES_Zjet_Stat11: 1.58651666e-07 + syst_JES_Zjet_Stat12: 3.26871565e-07 + syst_JES_Zjet_Stat13: 6.29790876e-07 syst_JES_Zjet_Stat2: 0.0 - syst_JES_Zjet_Stat3: 4.5856045130386026e-08 - syst_JES_Zjet_Stat4: 7.629683807340904e-08 - syst_JES_Zjet_Stat5: 6.160038697118644e-08 - syst_JES_Zjet_Stat6: 6.847137065956837e-08 - syst_JES_Zjet_Stat7: 7.724919853953178e-08 - syst_JES_Zjet_Stat8: 2.410668345086068e-08 - syst_JES_Zjet_Stat9: 8.631797886303873e-08 - syst_JES_Zjet_Veto: 2.8446672916177736e-07 - syst_JES_Zjet_dPhi: 2.807442385873662e-07 + syst_JES_Zjet_Stat3: 4.58560451e-08 + syst_JES_Zjet_Stat4: 7.62968381e-08 + syst_JES_Zjet_Stat5: 6.16003870e-08 + syst_JES_Zjet_Stat6: 6.84713707e-08 + syst_JES_Zjet_Stat7: 7.72491985e-08 + syst_JES_Zjet_Stat8: 2.41066835e-08 + syst_JES_Zjet_Stat9: 8.63179789e-08 + syst_JES_Zjet_Veto: 2.84466729e-07 + syst_JES_Zjet_dPhi: 2.80744239e-07 syst_PRW: 0.0 - syst_Unfolding_bias: 1.3099e-22 - syst_cleaning: 1.7173283757045416e-06 - syst_lumi: 3.314e-06 -- stat: 9.199e-06 - syst_JER_CROSS_CALIB_FORWARD: 4.469e-21 + syst_Unfolding_bias: 1.30990000e-22 + syst_cleaning: 1.71732838e-06 + syst_lumi: 3.31400000e-06 +- stat: 9.19900000e-06 + syst_JER_CROSS_CALIB_FORWARD: 4.46900000e-21 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 3.033693458475988e-07 - syst_JER_NP1: 1.6682597969141377e-07 - syst_JER_NP2: 3.0970860498216705e-07 - syst_JER_NP3: 6.641296164906366e-08 - syst_JER_NP4: 4.2080174369885876e-22 + syst_JER_NP0: 3.03369346e-07 + syst_JER_NP1: 1.66825980e-07 + syst_JER_NP2: 3.09708605e-07 + syst_JER_NP3: 6.64129616e-08 + syst_JER_NP4: 4.20801744e-22 syst_JER_NP5: 0.0 syst_JER_NP6: 0.0 - syst_JER_NP7: 9.921187025754529e-19 - syst_JER_NP8: 3.509097453430868e-08 - syst_JES_EtaIntercalibration_Modelling: 5.7216844329270725e-06 - syst_JES_EtaIntercalibration_NonClosure: 1.3192032140652176e-10 - syst_JES_EtaIntercalibration_Stat0: 3.9456558390209354e-26 - syst_JES_EtaIntercalibration_Stat1: 3.9456558390209354e-26 - syst_JES_EtaIntercalibration_Stat10: 9.198991937707087e-26 - syst_JES_EtaIntercalibration_Stat100: 8.148433024146931e-12 - syst_JES_EtaIntercalibration_Stat101: 1.19736672327462e-11 - syst_JES_EtaIntercalibration_Stat102: 2.0048488097610579e-10 - syst_JES_EtaIntercalibration_Stat103: 2.0048488576233176e-10 - syst_JES_EtaIntercalibration_Stat104: 3.3463815758517437e-19 - syst_JES_EtaIntercalibration_Stat105: 1.1893665955772424e-21 - syst_JES_EtaIntercalibration_Stat106: 4.130931704833668e-22 - syst_JES_EtaIntercalibration_Stat107: 1.1295518353754288e-24 - syst_JES_EtaIntercalibration_Stat108: 7.384479179332825e-24 - syst_JES_EtaIntercalibration_Stat109: 1.7597478969174065e-15 - syst_JES_EtaIntercalibration_Stat11: 8.148433024207787e-12 - syst_JES_EtaIntercalibration_Stat110: 1.7591927865643378e-15 - syst_JES_EtaIntercalibration_Stat111: 8.147567039108822e-12 - syst_JES_EtaIntercalibration_Stat112: 8.144623193648602e-12 - syst_JES_EtaIntercalibration_Stat113: 8.15969135789972e-12 - syst_JES_EtaIntercalibration_Stat114: 3.2683399318567967e-16 - syst_JES_EtaIntercalibration_Stat115: 8.510549251810955e-20 - syst_JES_EtaIntercalibration_Stat116: 6.860775033857327e-18 - syst_JES_EtaIntercalibration_Stat117: 3.142760582672501e-21 - syst_JES_EtaIntercalibration_Stat118: 8.147566928598209e-12 - syst_JES_EtaIntercalibration_Stat119: 8.14546213916379e-12 - syst_JES_EtaIntercalibration_Stat12: 1.354463731518863e-11 - syst_JES_EtaIntercalibration_Stat120: 8.16055753678458e-12 - syst_JES_EtaIntercalibration_Stat121: 2.03345559299312e-10 - syst_JES_EtaIntercalibration_Stat122: 2.0048488095465766e-10 - syst_JES_EtaIntercalibration_Stat123: 7.08967785405238e-18 - syst_JES_EtaIntercalibration_Stat124: 6.477410058812087e-20 - syst_JES_EtaIntercalibration_Stat125: 2.918546341931202e-21 - syst_JES_EtaIntercalibration_Stat126: 1.8208616092388788e-21 - syst_JES_EtaIntercalibration_Stat127: 5.801388199559001e-22 - syst_JES_EtaIntercalibration_Stat128: 8.20692232006006e-20 - syst_JES_EtaIntercalibration_Stat129: 1.505456635044663e-13 - syst_JES_EtaIntercalibration_Stat13: 1.3380092488469585e-11 - syst_JES_EtaIntercalibration_Stat130: 1.4810828481891215e-11 - syst_JES_EtaIntercalibration_Stat131: 2.0643976046294957e-11 - syst_JES_EtaIntercalibration_Stat132: 8.939393309951183e-11 - syst_JES_EtaIntercalibration_Stat133: 3.5688363649794874e-10 - syst_JES_EtaIntercalibration_Stat134: 1.2566027210570475e-10 - syst_JES_EtaIntercalibration_Stat135: 4.3805372672766985e-18 - syst_JES_EtaIntercalibration_Stat136: 6.592943557319447e-19 - syst_JES_EtaIntercalibration_Stat137: 8.147566993873427e-12 - syst_JES_EtaIntercalibration_Stat138: 2.0424902741506507e-11 - syst_JES_EtaIntercalibration_Stat139: 1.0160571745108638e-10 - syst_JES_EtaIntercalibration_Stat14: 1.3579278331340008e-11 - syst_JES_EtaIntercalibration_Stat140: 5.2472469215600094e-11 - syst_JES_EtaIntercalibration_Stat141: 1.7243494447182103e-10 - syst_JES_EtaIntercalibration_Stat142: 2.6179792479669652e-11 - syst_JES_EtaIntercalibration_Stat143: 2.6179670378167596e-11 - syst_JES_EtaIntercalibration_Stat144: 2.9617842379576917e-13 - syst_JES_EtaIntercalibration_Stat145: 8.743825839270818e-15 - syst_JES_EtaIntercalibration_Stat146: 1.818560919527306e-15 - syst_JES_EtaIntercalibration_Stat147: 2.1816188370107187e-13 - syst_JES_EtaIntercalibration_Stat148: 1.4810965319907413e-11 - syst_JES_EtaIntercalibration_Stat149: 1.9508463464609405e-11 - syst_JES_EtaIntercalibration_Stat15: 1.0484298581688716e-25 - syst_JES_EtaIntercalibration_Stat150: 1.7258966966478614e-10 - syst_JES_EtaIntercalibration_Stat151: 5.577872421452466e-10 - syst_JES_EtaIntercalibration_Stat152: 1.3252536059185047e-11 - syst_JES_EtaIntercalibration_Stat153: 3.926145421084145e-11 - syst_JES_EtaIntercalibration_Stat154: 5.292379397539447e-18 - syst_JES_EtaIntercalibration_Stat155: 8.147289463256046e-12 - syst_JES_EtaIntercalibration_Stat156: 1.8052299541886624e-11 - syst_JES_EtaIntercalibration_Stat157: 2.584582981353085e-10 - syst_JES_EtaIntercalibration_Stat158: 4.964923767548344e-11 - syst_JES_EtaIntercalibration_Stat159: 3.9672651503557005e-11 - syst_JES_EtaIntercalibration_Stat16: 7.943420343277826e-26 - syst_JES_EtaIntercalibration_Stat160: 6.5078482793809955e-12 - syst_JES_EtaIntercalibration_Stat161: 6.4228153430346065e-12 - syst_JES_EtaIntercalibration_Stat162: 1.06818394909339e-15 - syst_JES_EtaIntercalibration_Stat163: 8.10601151923682e-15 - syst_JES_EtaIntercalibration_Stat164: 1.5669974967034887e-13 - syst_JES_EtaIntercalibration_Stat165: 1.488359137708369e-11 - syst_JES_EtaIntercalibration_Stat166: 1.7186121930208686e-11 - syst_JES_EtaIntercalibration_Stat167: 6.414679103431441e-11 - syst_JES_EtaIntercalibration_Stat168: 4.1231865104552327e-10 - syst_JES_EtaIntercalibration_Stat169: 5.221583248587162e-10 - syst_JES_EtaIntercalibration_Stat17: 2.63704736488994e-18 - syst_JES_EtaIntercalibration_Stat170: 1.0589481865865771e-09 - syst_JES_EtaIntercalibration_Stat171: 2.2430635011073583e-10 - syst_JES_EtaIntercalibration_Stat172: 8.221090549720274e-16 - syst_JES_EtaIntercalibration_Stat173: 8.141342607051248e-12 - syst_JES_EtaIntercalibration_Stat174: 1.6465118242818664e-11 - syst_JES_EtaIntercalibration_Stat175: 7.962537849203606e-10 - syst_JES_EtaIntercalibration_Stat176: 2.1572709797334222e-10 - syst_JES_EtaIntercalibration_Stat177: 2.0187802424979296e-10 - syst_JES_EtaIntercalibration_Stat178: 5.774570719975641e-11 - syst_JES_EtaIntercalibration_Stat179: 3.570894961882805e-11 - syst_JES_EtaIntercalibration_Stat18: 5.034361131265814e-26 - syst_JES_EtaIntercalibration_Stat180: 2.2498873571803545e-12 - syst_JES_EtaIntercalibration_Stat181: 5.562824709623699e-15 - syst_JES_EtaIntercalibration_Stat182: 1.0319015687070157e-11 - syst_JES_EtaIntercalibration_Stat183: 3.7961734351844357e-10 - syst_JES_EtaIntercalibration_Stat184: 1.461850881588132e-09 - syst_JES_EtaIntercalibration_Stat185: 5.358538116874788e-09 - syst_JES_EtaIntercalibration_Stat186: 6.287759696426065e-09 - syst_JES_EtaIntercalibration_Stat187: 3.850035195618347e-09 - syst_JES_EtaIntercalibration_Stat188: 1.5909149466580544e-09 - syst_JES_EtaIntercalibration_Stat189: 1.564908384704597e-11 - syst_JES_EtaIntercalibration_Stat19: 1.6281218282118817e-26 - syst_JES_EtaIntercalibration_Stat190: 1.4011253658042167e-11 - syst_JES_EtaIntercalibration_Stat191: 5.093667244726534e-10 - syst_JES_EtaIntercalibration_Stat192: 5.831558625273351e-09 - syst_JES_EtaIntercalibration_Stat193: 7.959208927399758e-09 - syst_JES_EtaIntercalibration_Stat194: 1.544123294947654e-09 - syst_JES_EtaIntercalibration_Stat195: 1.1514789272930703e-09 - syst_JES_EtaIntercalibration_Stat196: 3.420561467069405e-10 - syst_JES_EtaIntercalibration_Stat197: 3.7855872605845454e-11 - syst_JES_EtaIntercalibration_Stat198: 4.0201802198408966e-09 - syst_JES_EtaIntercalibration_Stat199: 2.9168148724250565e-09 - syst_JES_EtaIntercalibration_Stat2: 5.563532218833644e-26 - syst_JES_EtaIntercalibration_Stat20: 3.9456558390209354e-26 - syst_JES_EtaIntercalibration_Stat200: 1.1041250963092906e-09 - syst_JES_EtaIntercalibration_Stat201: 9.700594968866601e-09 - syst_JES_EtaIntercalibration_Stat202: 8.014077988140619e-09 - syst_JES_EtaIntercalibration_Stat203: 1.7158511029515353e-09 - syst_JES_EtaIntercalibration_Stat204: 1.0744722514884923e-11 - syst_JES_EtaIntercalibration_Stat205: 6.08342541254514e-11 - syst_JES_EtaIntercalibration_Stat206: 3.004732977736957e-09 - syst_JES_EtaIntercalibration_Stat207: 1.0010618699660876e-08 - syst_JES_EtaIntercalibration_Stat208: 1.3024755151249484e-08 - syst_JES_EtaIntercalibration_Stat209: 1.1473040606134017e-08 - syst_JES_EtaIntercalibration_Stat21: 3.9456558390209354e-26 - syst_JES_EtaIntercalibration_Stat210: 2.836512427259927e-09 - syst_JES_EtaIntercalibration_Stat211: 5.243372292713916e-10 - syst_JES_EtaIntercalibration_Stat212: 6.340774775214776e-09 - syst_JES_EtaIntercalibration_Stat213: 7.460784292499013e-09 - syst_JES_EtaIntercalibration_Stat214: 1.1538335798545648e-08 - syst_JES_EtaIntercalibration_Stat215: 1.1075991693749142e-08 - syst_JES_EtaIntercalibration_Stat216: 4.4155788691857834e-10 - syst_JES_EtaIntercalibration_Stat217: 5.9534471881318475e-12 - syst_JES_EtaIntercalibration_Stat218: 3.1599891119274444e-11 - syst_JES_EtaIntercalibration_Stat219: 5.802082794135223e-10 - syst_JES_EtaIntercalibration_Stat22: 3.9456558390209354e-26 - syst_JES_EtaIntercalibration_Stat220: 1.4275697907633097e-08 - syst_JES_EtaIntercalibration_Stat221: 1.1760550274115576e-08 - syst_JES_EtaIntercalibration_Stat222: 1.2514067084685138e-08 - syst_JES_EtaIntercalibration_Stat223: 1.0502811754477939e-08 - syst_JES_EtaIntercalibration_Stat224: 2.3954565994816104e-08 - syst_JES_EtaIntercalibration_Stat225: 2.2295362118611127e-08 - syst_JES_EtaIntercalibration_Stat226: 4.5186620530860685e-08 - syst_JES_EtaIntercalibration_Stat227: 3.978952493747569e-08 - syst_JES_EtaIntercalibration_Stat228: 6.803051741681817e-09 - syst_JES_EtaIntercalibration_Stat229: 1.1201657288098043e-10 - syst_JES_EtaIntercalibration_Stat23: 5.563532218833644e-26 - syst_JES_EtaIntercalibration_Stat230: 6.406855937197739e-10 - syst_JES_EtaIntercalibration_Stat231: 6.496562533371014e-09 - syst_JES_EtaIntercalibration_Stat232: 3.7048566773898326e-08 - syst_JES_EtaIntercalibration_Stat233: 3.219916290837388e-08 - syst_JES_EtaIntercalibration_Stat234: 3.307559031975091e-08 - syst_JES_EtaIntercalibration_Stat235: 2.3502682825583972e-08 - syst_JES_EtaIntercalibration_Stat236: 7.905939587898454e-10 - syst_JES_EtaIntercalibration_Stat237: 6.386937352910235e-09 - syst_JES_EtaIntercalibration_Stat238: 3.6961104894199254e-09 - syst_JES_EtaIntercalibration_Stat239: 1.6676250023011768e-09 - syst_JES_EtaIntercalibration_Stat24: 7.041380741729565e-25 - syst_JES_EtaIntercalibration_Stat240: 1.1156791678627866e-11 - syst_JES_EtaIntercalibration_Stat241: 7.869360012097554e-12 - syst_JES_EtaIntercalibration_Stat242: 9.93337888132734e-10 - syst_JES_EtaIntercalibration_Stat243: 3.4282481692523168e-09 - syst_JES_EtaIntercalibration_Stat244: 2.0221693178451657e-09 - syst_JES_EtaIntercalibration_Stat245: 4.581573392405713e-09 - syst_JES_EtaIntercalibration_Stat25: 4.0643363920202272e-25 - syst_JES_EtaIntercalibration_Stat26: 2.1611055226434456e-25 - syst_JES_EtaIntercalibration_Stat27: 8.148433024207685e-12 - syst_JES_EtaIntercalibration_Stat28: 3.958823523156848e-25 - syst_JES_EtaIntercalibration_Stat29: 1.2158311015515272e-24 - syst_JES_EtaIntercalibration_Stat3: 5.563532218833644e-26 - syst_JES_EtaIntercalibration_Stat30: 1.1592460006400712e-24 - syst_JES_EtaIntercalibration_Stat31: 2.9002661946793782e-24 - syst_JES_EtaIntercalibration_Stat32: 1.1718185567740425e-25 - syst_JES_EtaIntercalibration_Stat33: 8.148433024207773e-12 - syst_JES_EtaIntercalibration_Stat34: 8.148433024207774e-12 - syst_JES_EtaIntercalibration_Stat35: 1.3570618077302181e-11 - syst_JES_EtaIntercalibration_Stat36: 1.0428677912372224e-10 - syst_JES_EtaIntercalibration_Stat37: 3.6462817705163706e-24 - syst_JES_EtaIntercalibration_Stat38: 2.632717052019126e-18 - syst_JES_EtaIntercalibration_Stat39: 2.8251885331911924e-24 - syst_JES_EtaIntercalibration_Stat4: 2.6091896730594346e-26 - syst_JES_EtaIntercalibration_Stat40: 1.721299127839203e-23 - syst_JES_EtaIntercalibration_Stat41: 1.1411197778936267e-24 - syst_JES_EtaIntercalibration_Stat42: 2.2106580468267812e-26 - syst_JES_EtaIntercalibration_Stat43: 3.9456558390209354e-26 - syst_JES_EtaIntercalibration_Stat44: 3.9456558390209354e-26 - syst_JES_EtaIntercalibration_Stat45: 6.393773629868357e-25 - syst_JES_EtaIntercalibration_Stat46: 1.1008976008239821e-24 - syst_JES_EtaIntercalibration_Stat47: 9.254206016725584e-24 - syst_JES_EtaIntercalibration_Stat48: 1.3077387621386773e-23 - syst_JES_EtaIntercalibration_Stat49: 8.148433024207344e-12 - syst_JES_EtaIntercalibration_Stat5: 5.352628956877172e-26 - syst_JES_EtaIntercalibration_Stat50: 5.151615408122e-23 - syst_JES_EtaIntercalibration_Stat51: 8.790308413246944e-24 - syst_JES_EtaIntercalibration_Stat52: 2.8743658444081194e-23 - syst_JES_EtaIntercalibration_Stat53: 3.325367282981385e-23 - syst_JES_EtaIntercalibration_Stat54: 1.0967385092295246e-21 - syst_JES_EtaIntercalibration_Stat55: 8.1484330242076e-12 - syst_JES_EtaIntercalibration_Stat56: 1.1819514710850258e-11 - syst_JES_EtaIntercalibration_Stat57: 1.1811720482216204e-11 - syst_JES_EtaIntercalibration_Stat58: 1.04252138107571e-10 - syst_JES_EtaIntercalibration_Stat59: 1.01450683092821e-23 - syst_JES_EtaIntercalibration_Stat6: 5.554279044799603e-26 - syst_JES_EtaIntercalibration_Stat60: 2.823648703362371e-24 - syst_JES_EtaIntercalibration_Stat61: 1.6021083025423096e-23 - syst_JES_EtaIntercalibration_Stat62: 1.2890310908100705e-23 - syst_JES_EtaIntercalibration_Stat63: 9.140199929432615e-25 - syst_JES_EtaIntercalibration_Stat64: 6.3462341589323665e-27 - syst_JES_EtaIntercalibration_Stat65: 3.9456558390209354e-26 - syst_JES_EtaIntercalibration_Stat66: 3.9456558390209354e-26 - syst_JES_EtaIntercalibration_Stat67: 5.3965189342297314e-24 - syst_JES_EtaIntercalibration_Stat68: 4.699006201315338e-23 - syst_JES_EtaIntercalibration_Stat69: 1.758897585230826e-15 - syst_JES_EtaIntercalibration_Stat7: 3.9456558390209354e-26 - syst_JES_EtaIntercalibration_Stat70: 8.148433023774771e-12 - syst_JES_EtaIntercalibration_Stat71: 8.148433023896304e-12 - syst_JES_EtaIntercalibration_Stat72: 8.148433024205627e-12 - syst_JES_EtaIntercalibration_Stat73: 2.004848809760924e-10 - syst_JES_EtaIntercalibration_Stat74: 3.3319185395182047e-19 - syst_JES_EtaIntercalibration_Stat75: 1.1106215162241366e-21 - syst_JES_EtaIntercalibration_Stat76: 1.104355702086402e-21 - syst_JES_EtaIntercalibration_Stat77: 8.148433024206637e-12 - syst_JES_EtaIntercalibration_Stat78: 1.2323541495849632e-11 - syst_JES_EtaIntercalibration_Stat79: 8.14843302420626e-12 - syst_JES_EtaIntercalibration_Stat8: 2.416210876558584e-26 - syst_JES_EtaIntercalibration_Stat80: 1.1930365962475737e-11 - syst_JES_EtaIntercalibration_Stat81: 6.116820988062344e-23 - syst_JES_EtaIntercalibration_Stat82: 2.004848810875983e-10 - syst_JES_EtaIntercalibration_Stat83: 2.216633885348458e-22 - syst_JES_EtaIntercalibration_Stat84: 1.2549314114723563e-21 - syst_JES_EtaIntercalibration_Stat85: 5.638195699867113e-22 - syst_JES_EtaIntercalibration_Stat86: 1.070359756110066e-24 - syst_JES_EtaIntercalibration_Stat87: 2.416210876558584e-26 - syst_JES_EtaIntercalibration_Stat88: 8.07710319359608e-25 - syst_JES_EtaIntercalibration_Stat89: 6.918068252314008e-22 - syst_JES_EtaIntercalibration_Stat9: 9.198991937707087e-26 - syst_JES_EtaIntercalibration_Stat90: 1.7588972737621376e-15 - syst_JES_EtaIntercalibration_Stat91: 8.148433023863077e-12 - syst_JES_EtaIntercalibration_Stat92: 8.148433024413435e-12 - syst_JES_EtaIntercalibration_Stat93: 8.148433024204918e-12 - syst_JES_EtaIntercalibration_Stat94: 2.207460954920834e-22 - syst_JES_EtaIntercalibration_Stat95: 3.3473272867227114e-19 - syst_JES_EtaIntercalibration_Stat96: 3.3459032168051424e-19 - syst_JES_EtaIntercalibration_Stat97: 1.2245135309487632e-21 - syst_JES_EtaIntercalibration_Stat98: 8.147566998805293e-12 - syst_JES_EtaIntercalibration_Stat99: 1.2340862079561137e-11 - syst_JES_EtaIntercalibration_TotalStat_MJB: 1.3175280718072005e-06 - syst_JES_Flavour_Comp: 2.1259761875430305e-06 - syst_JES_Flavour_Response: 8.572191362189717e-07 - syst_JES_Gjet_Generator: 2.868909374657903e-06 - syst_JES_Gjet_OOC: 2.400509945824012e-06 - syst_JES_Gjet_Purity: 2.2104809431433692e-07 - syst_JES_Gjet_Stat1: 4.915560191880474e-24 - syst_JES_Gjet_Stat10: 9.15535952325194e-08 - syst_JES_Gjet_Stat11: 9.281709581214013e-08 - syst_JES_Gjet_Stat12: 8.930154239989363e-08 - syst_JES_Gjet_Stat13: 5.381313478138957e-07 - syst_JES_Gjet_Stat14: 1.5910568814470463e-06 - syst_JES_Gjet_Stat15: 2.629509840255404e-06 - syst_JES_Gjet_Stat2: 6.09335474102731e-09 - syst_JES_Gjet_Stat3: 1.8844069803256408e-24 - syst_JES_Gjet_Stat4: 2.74945611348863e-22 - syst_JES_Gjet_Stat5: 5.841267157689331e-23 - syst_JES_Gjet_Stat6: 3.478339475597515e-08 - syst_JES_Gjet_Stat7: 3.079572819402067e-08 - syst_JES_Gjet_Stat8: 3.647698488630654e-13 - syst_JES_Gjet_Stat9: 3.115073514381322e-08 - syst_JES_Gjet_Veto: 2.6256886715678994e-06 - syst_JES_Gjet_dPhi: 1.825e-07 - syst_JES_LArESZee: 4.025664688905423e-06 - syst_JES_LArEsmear: 3.575428482014428e-07 - syst_JES_LAr_JVT: 4.426534649135823e-07 - syst_JES_MJB_Alpha: 6.417935104065794e-08 - syst_JES_MJB_Asym: 1.3225269174954437e-06 - syst_JES_MJB_Beta: 8.210475184177832e-08 - syst_JES_MJB_Fragmentation: 3.047940739253308e-07 + syst_JER_NP7: 9.92118703e-19 + syst_JER_NP8: 3.50909745e-08 + syst_JES_EtaIntercalibration_Modelling: 5.72168443e-06 + syst_JES_EtaIntercalibration_NonClosure: 1.31920321e-10 + syst_JES_EtaIntercalibration_Stat0: 3.94565584e-26 + syst_JES_EtaIntercalibration_Stat1: 3.94565584e-26 + syst_JES_EtaIntercalibration_Stat10: 9.19899194e-26 + syst_JES_EtaIntercalibration_Stat100: 8.14843302e-12 + syst_JES_EtaIntercalibration_Stat101: 1.19736672e-11 + syst_JES_EtaIntercalibration_Stat102: 2.00484881e-10 + syst_JES_EtaIntercalibration_Stat103: 2.00484886e-10 + syst_JES_EtaIntercalibration_Stat104: 3.34638158e-19 + syst_JES_EtaIntercalibration_Stat105: 1.18936660e-21 + syst_JES_EtaIntercalibration_Stat106: 4.13093170e-22 + syst_JES_EtaIntercalibration_Stat107: 1.12955184e-24 + syst_JES_EtaIntercalibration_Stat108: 7.38447918e-24 + syst_JES_EtaIntercalibration_Stat109: 1.75974790e-15 + syst_JES_EtaIntercalibration_Stat11: 8.14843302e-12 + syst_JES_EtaIntercalibration_Stat110: 1.75919279e-15 + syst_JES_EtaIntercalibration_Stat111: 8.14756704e-12 + syst_JES_EtaIntercalibration_Stat112: 8.14462319e-12 + syst_JES_EtaIntercalibration_Stat113: 8.15969136e-12 + syst_JES_EtaIntercalibration_Stat114: 3.26833993e-16 + syst_JES_EtaIntercalibration_Stat115: 8.51054925e-20 + syst_JES_EtaIntercalibration_Stat116: 6.86077503e-18 + syst_JES_EtaIntercalibration_Stat117: 3.14276058e-21 + syst_JES_EtaIntercalibration_Stat118: 8.14756693e-12 + syst_JES_EtaIntercalibration_Stat119: 8.14546214e-12 + syst_JES_EtaIntercalibration_Stat12: 1.35446373e-11 + syst_JES_EtaIntercalibration_Stat120: 8.16055754e-12 + syst_JES_EtaIntercalibration_Stat121: 2.03345559e-10 + syst_JES_EtaIntercalibration_Stat122: 2.00484881e-10 + syst_JES_EtaIntercalibration_Stat123: 7.08967785e-18 + syst_JES_EtaIntercalibration_Stat124: 6.47741006e-20 + syst_JES_EtaIntercalibration_Stat125: 2.91854634e-21 + syst_JES_EtaIntercalibration_Stat126: 1.82086161e-21 + syst_JES_EtaIntercalibration_Stat127: 5.80138820e-22 + syst_JES_EtaIntercalibration_Stat128: 8.20692232e-20 + syst_JES_EtaIntercalibration_Stat129: 1.50545664e-13 + syst_JES_EtaIntercalibration_Stat13: 1.33800925e-11 + syst_JES_EtaIntercalibration_Stat130: 1.48108285e-11 + syst_JES_EtaIntercalibration_Stat131: 2.06439760e-11 + syst_JES_EtaIntercalibration_Stat132: 8.93939331e-11 + syst_JES_EtaIntercalibration_Stat133: 3.56883636e-10 + syst_JES_EtaIntercalibration_Stat134: 1.25660272e-10 + syst_JES_EtaIntercalibration_Stat135: 4.38053727e-18 + syst_JES_EtaIntercalibration_Stat136: 6.59294356e-19 + syst_JES_EtaIntercalibration_Stat137: 8.14756699e-12 + syst_JES_EtaIntercalibration_Stat138: 2.04249027e-11 + syst_JES_EtaIntercalibration_Stat139: 1.01605717e-10 + syst_JES_EtaIntercalibration_Stat14: 1.35792783e-11 + syst_JES_EtaIntercalibration_Stat140: 5.24724692e-11 + syst_JES_EtaIntercalibration_Stat141: 1.72434944e-10 + syst_JES_EtaIntercalibration_Stat142: 2.61797925e-11 + syst_JES_EtaIntercalibration_Stat143: 2.61796704e-11 + syst_JES_EtaIntercalibration_Stat144: 2.96178424e-13 + syst_JES_EtaIntercalibration_Stat145: 8.74382584e-15 + syst_JES_EtaIntercalibration_Stat146: 1.81856092e-15 + syst_JES_EtaIntercalibration_Stat147: 2.18161884e-13 + syst_JES_EtaIntercalibration_Stat148: 1.48109653e-11 + syst_JES_EtaIntercalibration_Stat149: 1.95084635e-11 + syst_JES_EtaIntercalibration_Stat15: 1.04842986e-25 + syst_JES_EtaIntercalibration_Stat150: 1.72589670e-10 + syst_JES_EtaIntercalibration_Stat151: 5.57787242e-10 + syst_JES_EtaIntercalibration_Stat152: 1.32525361e-11 + syst_JES_EtaIntercalibration_Stat153: 3.92614542e-11 + syst_JES_EtaIntercalibration_Stat154: 5.29237940e-18 + syst_JES_EtaIntercalibration_Stat155: 8.14728946e-12 + syst_JES_EtaIntercalibration_Stat156: 1.80522995e-11 + syst_JES_EtaIntercalibration_Stat157: 2.58458298e-10 + syst_JES_EtaIntercalibration_Stat158: 4.96492377e-11 + syst_JES_EtaIntercalibration_Stat159: 3.96726515e-11 + syst_JES_EtaIntercalibration_Stat16: 7.94342034e-26 + syst_JES_EtaIntercalibration_Stat160: 6.50784828e-12 + syst_JES_EtaIntercalibration_Stat161: 6.42281534e-12 + syst_JES_EtaIntercalibration_Stat162: 1.06818395e-15 + syst_JES_EtaIntercalibration_Stat163: 8.10601152e-15 + syst_JES_EtaIntercalibration_Stat164: 1.56699750e-13 + syst_JES_EtaIntercalibration_Stat165: 1.48835914e-11 + syst_JES_EtaIntercalibration_Stat166: 1.71861219e-11 + syst_JES_EtaIntercalibration_Stat167: 6.41467910e-11 + syst_JES_EtaIntercalibration_Stat168: 4.12318651e-10 + syst_JES_EtaIntercalibration_Stat169: 5.22158325e-10 + syst_JES_EtaIntercalibration_Stat17: 2.63704736e-18 + syst_JES_EtaIntercalibration_Stat170: 1.05894819e-09 + syst_JES_EtaIntercalibration_Stat171: 2.24306350e-10 + syst_JES_EtaIntercalibration_Stat172: 8.22109055e-16 + syst_JES_EtaIntercalibration_Stat173: 8.14134261e-12 + syst_JES_EtaIntercalibration_Stat174: 1.64651182e-11 + syst_JES_EtaIntercalibration_Stat175: 7.96253785e-10 + syst_JES_EtaIntercalibration_Stat176: 2.15727098e-10 + syst_JES_EtaIntercalibration_Stat177: 2.01878024e-10 + syst_JES_EtaIntercalibration_Stat178: 5.77457072e-11 + syst_JES_EtaIntercalibration_Stat179: 3.57089496e-11 + syst_JES_EtaIntercalibration_Stat18: 5.03436113e-26 + syst_JES_EtaIntercalibration_Stat180: 2.24988736e-12 + syst_JES_EtaIntercalibration_Stat181: 5.56282471e-15 + syst_JES_EtaIntercalibration_Stat182: 1.03190157e-11 + syst_JES_EtaIntercalibration_Stat183: 3.79617344e-10 + syst_JES_EtaIntercalibration_Stat184: 1.46185088e-09 + syst_JES_EtaIntercalibration_Stat185: 5.35853812e-09 + syst_JES_EtaIntercalibration_Stat186: 6.28775970e-09 + syst_JES_EtaIntercalibration_Stat187: 3.85003520e-09 + syst_JES_EtaIntercalibration_Stat188: 1.59091495e-09 + syst_JES_EtaIntercalibration_Stat189: 1.56490838e-11 + syst_JES_EtaIntercalibration_Stat19: 1.62812183e-26 + syst_JES_EtaIntercalibration_Stat190: 1.40112537e-11 + syst_JES_EtaIntercalibration_Stat191: 5.09366724e-10 + syst_JES_EtaIntercalibration_Stat192: 5.83155863e-09 + syst_JES_EtaIntercalibration_Stat193: 7.95920893e-09 + syst_JES_EtaIntercalibration_Stat194: 1.54412329e-09 + syst_JES_EtaIntercalibration_Stat195: 1.15147893e-09 + syst_JES_EtaIntercalibration_Stat196: 3.42056147e-10 + syst_JES_EtaIntercalibration_Stat197: 3.78558726e-11 + syst_JES_EtaIntercalibration_Stat198: 4.02018022e-09 + syst_JES_EtaIntercalibration_Stat199: 2.91681487e-09 + syst_JES_EtaIntercalibration_Stat2: 5.56353222e-26 + syst_JES_EtaIntercalibration_Stat20: 3.94565584e-26 + syst_JES_EtaIntercalibration_Stat200: 1.10412510e-09 + syst_JES_EtaIntercalibration_Stat201: 9.70059497e-09 + syst_JES_EtaIntercalibration_Stat202: 8.01407799e-09 + syst_JES_EtaIntercalibration_Stat203: 1.71585110e-09 + syst_JES_EtaIntercalibration_Stat204: 1.07447225e-11 + syst_JES_EtaIntercalibration_Stat205: 6.08342541e-11 + syst_JES_EtaIntercalibration_Stat206: 3.00473298e-09 + syst_JES_EtaIntercalibration_Stat207: 1.00106187e-08 + syst_JES_EtaIntercalibration_Stat208: 1.30247552e-08 + syst_JES_EtaIntercalibration_Stat209: 1.14730406e-08 + syst_JES_EtaIntercalibration_Stat21: 3.94565584e-26 + syst_JES_EtaIntercalibration_Stat210: 2.83651243e-09 + syst_JES_EtaIntercalibration_Stat211: 5.24337229e-10 + syst_JES_EtaIntercalibration_Stat212: 6.34077478e-09 + syst_JES_EtaIntercalibration_Stat213: 7.46078429e-09 + syst_JES_EtaIntercalibration_Stat214: 1.15383358e-08 + syst_JES_EtaIntercalibration_Stat215: 1.10759917e-08 + syst_JES_EtaIntercalibration_Stat216: 4.41557887e-10 + syst_JES_EtaIntercalibration_Stat217: 5.95344719e-12 + syst_JES_EtaIntercalibration_Stat218: 3.15998911e-11 + syst_JES_EtaIntercalibration_Stat219: 5.80208279e-10 + syst_JES_EtaIntercalibration_Stat22: 3.94565584e-26 + syst_JES_EtaIntercalibration_Stat220: 1.42756979e-08 + syst_JES_EtaIntercalibration_Stat221: 1.17605503e-08 + syst_JES_EtaIntercalibration_Stat222: 1.25140671e-08 + syst_JES_EtaIntercalibration_Stat223: 1.05028118e-08 + syst_JES_EtaIntercalibration_Stat224: 2.39545660e-08 + syst_JES_EtaIntercalibration_Stat225: 2.22953621e-08 + syst_JES_EtaIntercalibration_Stat226: 4.51866205e-08 + syst_JES_EtaIntercalibration_Stat227: 3.97895249e-08 + syst_JES_EtaIntercalibration_Stat228: 6.80305174e-09 + syst_JES_EtaIntercalibration_Stat229: 1.12016573e-10 + syst_JES_EtaIntercalibration_Stat23: 5.56353222e-26 + syst_JES_EtaIntercalibration_Stat230: 6.40685594e-10 + syst_JES_EtaIntercalibration_Stat231: 6.49656253e-09 + syst_JES_EtaIntercalibration_Stat232: 3.70485668e-08 + syst_JES_EtaIntercalibration_Stat233: 3.21991629e-08 + syst_JES_EtaIntercalibration_Stat234: 3.30755903e-08 + syst_JES_EtaIntercalibration_Stat235: 2.35026828e-08 + syst_JES_EtaIntercalibration_Stat236: 7.90593959e-10 + syst_JES_EtaIntercalibration_Stat237: 6.38693735e-09 + syst_JES_EtaIntercalibration_Stat238: 3.69611049e-09 + syst_JES_EtaIntercalibration_Stat239: 1.66762500e-09 + syst_JES_EtaIntercalibration_Stat24: 7.04138074e-25 + syst_JES_EtaIntercalibration_Stat240: 1.11567917e-11 + syst_JES_EtaIntercalibration_Stat241: 7.86936001e-12 + syst_JES_EtaIntercalibration_Stat242: 9.93337888e-10 + syst_JES_EtaIntercalibration_Stat243: 3.42824817e-09 + syst_JES_EtaIntercalibration_Stat244: 2.02216932e-09 + syst_JES_EtaIntercalibration_Stat245: 4.58157339e-09 + syst_JES_EtaIntercalibration_Stat25: 4.06433639e-25 + syst_JES_EtaIntercalibration_Stat26: 2.16110552e-25 + syst_JES_EtaIntercalibration_Stat27: 8.14843302e-12 + syst_JES_EtaIntercalibration_Stat28: 3.95882352e-25 + syst_JES_EtaIntercalibration_Stat29: 1.21583110e-24 + syst_JES_EtaIntercalibration_Stat3: 5.56353222e-26 + syst_JES_EtaIntercalibration_Stat30: 1.15924600e-24 + syst_JES_EtaIntercalibration_Stat31: 2.90026619e-24 + syst_JES_EtaIntercalibration_Stat32: 1.17181856e-25 + syst_JES_EtaIntercalibration_Stat33: 8.14843302e-12 + syst_JES_EtaIntercalibration_Stat34: 8.14843302e-12 + syst_JES_EtaIntercalibration_Stat35: 1.35706181e-11 + syst_JES_EtaIntercalibration_Stat36: 1.04286779e-10 + syst_JES_EtaIntercalibration_Stat37: 3.64628177e-24 + syst_JES_EtaIntercalibration_Stat38: 2.63271705e-18 + syst_JES_EtaIntercalibration_Stat39: 2.82518853e-24 + syst_JES_EtaIntercalibration_Stat4: 2.60918967e-26 + syst_JES_EtaIntercalibration_Stat40: 1.72129913e-23 + syst_JES_EtaIntercalibration_Stat41: 1.14111978e-24 + syst_JES_EtaIntercalibration_Stat42: 2.21065805e-26 + syst_JES_EtaIntercalibration_Stat43: 3.94565584e-26 + syst_JES_EtaIntercalibration_Stat44: 3.94565584e-26 + syst_JES_EtaIntercalibration_Stat45: 6.39377363e-25 + syst_JES_EtaIntercalibration_Stat46: 1.10089760e-24 + syst_JES_EtaIntercalibration_Stat47: 9.25420602e-24 + syst_JES_EtaIntercalibration_Stat48: 1.30773876e-23 + syst_JES_EtaIntercalibration_Stat49: 8.14843302e-12 + syst_JES_EtaIntercalibration_Stat5: 5.35262896e-26 + syst_JES_EtaIntercalibration_Stat50: 5.15161541e-23 + syst_JES_EtaIntercalibration_Stat51: 8.79030841e-24 + syst_JES_EtaIntercalibration_Stat52: 2.87436584e-23 + syst_JES_EtaIntercalibration_Stat53: 3.32536728e-23 + syst_JES_EtaIntercalibration_Stat54: 1.09673851e-21 + syst_JES_EtaIntercalibration_Stat55: 8.14843302e-12 + syst_JES_EtaIntercalibration_Stat56: 1.18195147e-11 + syst_JES_EtaIntercalibration_Stat57: 1.18117205e-11 + syst_JES_EtaIntercalibration_Stat58: 1.04252138e-10 + syst_JES_EtaIntercalibration_Stat59: 1.01450683e-23 + syst_JES_EtaIntercalibration_Stat6: 5.55427904e-26 + syst_JES_EtaIntercalibration_Stat60: 2.82364870e-24 + syst_JES_EtaIntercalibration_Stat61: 1.60210830e-23 + syst_JES_EtaIntercalibration_Stat62: 1.28903109e-23 + syst_JES_EtaIntercalibration_Stat63: 9.14019993e-25 + syst_JES_EtaIntercalibration_Stat64: 6.34623416e-27 + syst_JES_EtaIntercalibration_Stat65: 3.94565584e-26 + syst_JES_EtaIntercalibration_Stat66: 3.94565584e-26 + syst_JES_EtaIntercalibration_Stat67: 5.39651893e-24 + syst_JES_EtaIntercalibration_Stat68: 4.69900620e-23 + syst_JES_EtaIntercalibration_Stat69: 1.75889759e-15 + syst_JES_EtaIntercalibration_Stat7: 3.94565584e-26 + syst_JES_EtaIntercalibration_Stat70: 8.14843302e-12 + syst_JES_EtaIntercalibration_Stat71: 8.14843302e-12 + syst_JES_EtaIntercalibration_Stat72: 8.14843302e-12 + syst_JES_EtaIntercalibration_Stat73: 2.00484881e-10 + syst_JES_EtaIntercalibration_Stat74: 3.33191854e-19 + syst_JES_EtaIntercalibration_Stat75: 1.11062152e-21 + syst_JES_EtaIntercalibration_Stat76: 1.10435570e-21 + syst_JES_EtaIntercalibration_Stat77: 8.14843302e-12 + syst_JES_EtaIntercalibration_Stat78: 1.23235415e-11 + syst_JES_EtaIntercalibration_Stat79: 8.14843302e-12 + syst_JES_EtaIntercalibration_Stat8: 2.41621088e-26 + syst_JES_EtaIntercalibration_Stat80: 1.19303660e-11 + syst_JES_EtaIntercalibration_Stat81: 6.11682099e-23 + syst_JES_EtaIntercalibration_Stat82: 2.00484881e-10 + syst_JES_EtaIntercalibration_Stat83: 2.21663389e-22 + syst_JES_EtaIntercalibration_Stat84: 1.25493141e-21 + syst_JES_EtaIntercalibration_Stat85: 5.63819570e-22 + syst_JES_EtaIntercalibration_Stat86: 1.07035976e-24 + syst_JES_EtaIntercalibration_Stat87: 2.41621088e-26 + syst_JES_EtaIntercalibration_Stat88: 8.07710319e-25 + syst_JES_EtaIntercalibration_Stat89: 6.91806825e-22 + syst_JES_EtaIntercalibration_Stat9: 9.19899194e-26 + syst_JES_EtaIntercalibration_Stat90: 1.75889727e-15 + syst_JES_EtaIntercalibration_Stat91: 8.14843302e-12 + syst_JES_EtaIntercalibration_Stat92: 8.14843302e-12 + syst_JES_EtaIntercalibration_Stat93: 8.14843302e-12 + syst_JES_EtaIntercalibration_Stat94: 2.20746095e-22 + syst_JES_EtaIntercalibration_Stat95: 3.34732729e-19 + syst_JES_EtaIntercalibration_Stat96: 3.34590322e-19 + syst_JES_EtaIntercalibration_Stat97: 1.22451353e-21 + syst_JES_EtaIntercalibration_Stat98: 8.14756700e-12 + syst_JES_EtaIntercalibration_Stat99: 1.23408621e-11 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.31752807e-06 + syst_JES_Flavour_Comp: 2.12597619e-06 + syst_JES_Flavour_Response: 8.57219136e-07 + syst_JES_Gjet_Generator: 2.86890937e-06 + syst_JES_Gjet_OOC: 2.40050995e-06 + syst_JES_Gjet_Purity: 2.21048094e-07 + syst_JES_Gjet_Stat1: 4.91556019e-24 + syst_JES_Gjet_Stat10: 9.15535952e-08 + syst_JES_Gjet_Stat11: 9.28170958e-08 + syst_JES_Gjet_Stat12: 8.93015424e-08 + syst_JES_Gjet_Stat13: 5.38131348e-07 + syst_JES_Gjet_Stat14: 1.59105688e-06 + syst_JES_Gjet_Stat15: 2.62950984e-06 + syst_JES_Gjet_Stat2: 6.09335474e-09 + syst_JES_Gjet_Stat3: 1.88440698e-24 + syst_JES_Gjet_Stat4: 2.74945611e-22 + syst_JES_Gjet_Stat5: 5.84126716e-23 + syst_JES_Gjet_Stat6: 3.47833948e-08 + syst_JES_Gjet_Stat7: 3.07957282e-08 + syst_JES_Gjet_Stat8: 3.64769849e-13 + syst_JES_Gjet_Stat9: 3.11507351e-08 + syst_JES_Gjet_Veto: 2.62568867e-06 + syst_JES_Gjet_dPhi: 1.82500000e-07 + syst_JES_LArESZee: 4.02566469e-06 + syst_JES_LArEsmear: 3.57542848e-07 + syst_JES_LAr_JVT: 4.42653465e-07 + syst_JES_MJB_Alpha: 6.41793510e-08 + syst_JES_MJB_Asym: 1.32252692e-06 + syst_JES_MJB_Beta: 8.21047518e-08 + syst_JES_MJB_Fragmentation: 3.04794074e-07 syst_JES_MJB_Stat1: 0.0 - syst_JES_MJB_Stat10: 1.206000671641604e-08 - syst_JES_MJB_Stat11: 1.3167226767622709e-08 - syst_JES_MJB_Stat12: 2.315161117503488e-08 - syst_JES_MJB_Stat13: 6.133364737238444e-08 - syst_JES_MJB_Stat14: 2.5167524709434576e-07 - syst_JES_MJB_Stat15: 8.288382351219084e-08 - syst_JES_MJB_Stat16: 6.628724368232548e-07 - syst_JES_MJB_Stat2: 2.1087718582151077e-15 - syst_JES_MJB_Stat3: 1.0016449820170818e-10 - syst_JES_MJB_Stat4: 1.8454025983508313e-10 - syst_JES_MJB_Stat5: 1.2321146730316948e-10 + syst_JES_MJB_Stat10: 1.20600067e-08 + syst_JES_MJB_Stat11: 1.31672268e-08 + syst_JES_MJB_Stat12: 2.31516112e-08 + syst_JES_MJB_Stat13: 6.13336474e-08 + syst_JES_MJB_Stat14: 2.51675247e-07 + syst_JES_MJB_Stat15: 8.28838235e-08 + syst_JES_MJB_Stat16: 6.62872437e-07 + syst_JES_MJB_Stat2: 2.10877186e-15 + syst_JES_MJB_Stat3: 1.00164498e-10 + syst_JES_MJB_Stat4: 1.84540260e-10 + syst_JES_MJB_Stat5: 1.23211467e-10 syst_JES_MJB_Stat6: 0.0 syst_JES_MJB_Stat7: 0.0 syst_JES_MJB_Stat8: 0.0 - syst_JES_MJB_Stat9: 5.254176124760189e-09 - syst_JES_MJB_Threshold: 4.4021727305956544e-07 - syst_JES_Pileup_MuOffset: 7.822273630473433e-07 - syst_JES_Pileup_NPVOffset: 6.680740733631264e-07 - syst_JES_Pileup_Pt_term: 2.9523717584342253e-07 - syst_JES_Pileup_Rho_topology: 8.556372756606622e-07 - syst_JES_PunchThrough_MC15: 1.7132898178650334e-06 - syst_JES_SingleParticle_HighPt: 9.864033999840024e-09 - syst_JES_Zjet_MC: 1.0927134516880444e-06 - syst_JES_Zjet_MuScale: 9.37999466950808e-08 - syst_JES_Zjet_MuSmearID: 5.9250232067056075e-09 - syst_JES_Zjet_MuSmearMS: 2.2942063442506651e-07 - syst_JES_Zjet_OOC: 6.793890417132145e-07 - syst_JES_Zjet_Stat1: 9.641215276094608e-08 - syst_JES_Zjet_Stat10: 5.11225730475296e-08 - syst_JES_Zjet_Stat11: 6.032501802734915e-08 - syst_JES_Zjet_Stat12: 1.1463608332457977e-07 - syst_JES_Zjet_Stat13: 2.434191652273912e-07 + syst_JES_MJB_Stat9: 5.25417612e-09 + syst_JES_MJB_Threshold: 4.40217273e-07 + syst_JES_Pileup_MuOffset: 7.82227363e-07 + syst_JES_Pileup_NPVOffset: 6.68074073e-07 + syst_JES_Pileup_Pt_term: 2.95237176e-07 + syst_JES_Pileup_Rho_topology: 8.55637276e-07 + syst_JES_PunchThrough_MC15: 1.71328982e-06 + syst_JES_SingleParticle_HighPt: 9.86403400e-09 + syst_JES_Zjet_MC: 1.09271345e-06 + syst_JES_Zjet_MuScale: 9.37999467e-08 + syst_JES_Zjet_MuSmearID: 5.92502321e-09 + syst_JES_Zjet_MuSmearMS: 2.29420634e-07 + syst_JES_Zjet_OOC: 6.79389042e-07 + syst_JES_Zjet_Stat1: 9.64121528e-08 + syst_JES_Zjet_Stat10: 5.11225730e-08 + syst_JES_Zjet_Stat11: 6.03250180e-08 + syst_JES_Zjet_Stat12: 1.14636083e-07 + syst_JES_Zjet_Stat13: 2.43419165e-07 syst_JES_Zjet_Stat2: 0.0 - syst_JES_Zjet_Stat3: 1.8567584657138366e-08 - syst_JES_Zjet_Stat4: 2.9739312365957626e-08 - syst_JES_Zjet_Stat5: 2.224819262322213e-08 - syst_JES_Zjet_Stat6: 3.292987216419159e-08 - syst_JES_Zjet_Stat7: 3.19365360793872e-08 - syst_JES_Zjet_Stat8: 1.4078464076382764e-08 - syst_JES_Zjet_Stat9: 3.558321092875122e-08 - syst_JES_Zjet_Veto: 9.837768192024042e-08 - syst_JES_Zjet_dPhi: 1.1791447186414397e-07 + syst_JES_Zjet_Stat3: 1.85675847e-08 + syst_JES_Zjet_Stat4: 2.97393124e-08 + syst_JES_Zjet_Stat5: 2.22481926e-08 + syst_JES_Zjet_Stat6: 3.29298722e-08 + syst_JES_Zjet_Stat7: 3.19365361e-08 + syst_JES_Zjet_Stat8: 1.40784641e-08 + syst_JES_Zjet_Stat9: 3.55832109e-08 + syst_JES_Zjet_Veto: 9.83776819e-08 + syst_JES_Zjet_dPhi: 1.17914472e-07 syst_PRW: 0.0 syst_Unfolding_bias: 2.6e-23 - syst_cleaning: 6.767988530575388e-07 - syst_lumi: 1.3132e-06 -- stat: 7.114e-06 - syst_JER_CROSS_CALIB_FORWARD: 1.0681e-21 + syst_cleaning: 6.76798853e-07 + syst_lumi: 1.31320000e-06 +- stat: 7.11400000e-06 + syst_JER_CROSS_CALIB_FORWARD: 1.06810000e-21 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 1.6100793668325795e-07 - syst_JER_NP1: 1.0310386159111598e-07 - syst_JER_NP2: 1.8036099911011802e-07 - syst_JER_NP3: 5.463212859664173e-08 - syst_JER_NP4: 1.2006576198067457e-22 + syst_JER_NP0: 1.61007937e-07 + syst_JER_NP1: 1.03103862e-07 + syst_JER_NP2: 1.80360999e-07 + syst_JER_NP3: 5.46321286e-08 + syst_JER_NP4: 1.20065762e-22 syst_JER_NP5: 0.0 syst_JER_NP6: 0.0 - syst_JER_NP7: 1.7242565789348171e-19 - syst_JER_NP8: 1.9297748825852072e-08 - syst_JES_EtaIntercalibration_Modelling: 3.3494577173029067e-06 - syst_JES_EtaIntercalibration_NonClosure: 6.932600864754873e-11 - syst_JES_EtaIntercalibration_Stat0: 1.8159916354432915e-26 - syst_JES_EtaIntercalibration_Stat1: 1.8159916354432915e-26 - syst_JES_EtaIntercalibration_Stat10: 3.3500253652024785e-26 - syst_JES_EtaIntercalibration_Stat100: 4.259978961061068e-13 - syst_JES_EtaIntercalibration_Stat101: 2.592014033535401e-12 - syst_JES_EtaIntercalibration_Stat102: 1.0707538092391053e-10 - syst_JES_EtaIntercalibration_Stat103: 1.070753815113619e-10 - syst_JES_EtaIntercalibration_Stat104: 4.6548023279914906e-20 - syst_JES_EtaIntercalibration_Stat105: 1.8865730712591022e-22 - syst_JES_EtaIntercalibration_Stat106: 9.303805283323593e-23 - syst_JES_EtaIntercalibration_Stat107: 4.371901079287477e-25 - syst_JES_EtaIntercalibration_Stat108: 2.2126508236728178e-24 - syst_JES_EtaIntercalibration_Stat109: 1.8896433798700397e-16 - syst_JES_EtaIntercalibration_Stat11: 4.2599789612156635e-13 - syst_JES_EtaIntercalibration_Stat110: 1.8890968340269775e-16 - syst_JES_EtaIntercalibration_Stat111: 4.258246951313353e-13 - syst_JES_EtaIntercalibration_Stat112: 4.2550207407516834e-13 - syst_JES_EtaIntercalibration_Stat113: 4.2781654985183407e-13 - syst_JES_EtaIntercalibration_Stat114: 3.535053406545257e-17 - syst_JES_EtaIntercalibration_Stat115: 1.3278952923705995e-20 - syst_JES_EtaIntercalibration_Stat116: 8.915986609123806e-19 - syst_JES_EtaIntercalibration_Stat117: 2.8342769801132704e-22 - syst_JES_EtaIntercalibration_Stat118: 4.2599788586205207e-13 - syst_JES_EtaIntercalibration_Stat119: 4.256719740435204e-13 - syst_JES_EtaIntercalibration_Stat12: 2.8050562828578002e-12 - syst_JES_EtaIntercalibration_Stat120: 4.2798977633369964e-13 - syst_JES_EtaIntercalibration_Stat121: 1.0721807413243114e-10 - syst_JES_EtaIntercalibration_Stat122: 1.0707538092067915e-10 - syst_JES_EtaIntercalibration_Stat123: 7.538236284237314e-19 - syst_JES_EtaIntercalibration_Stat124: 9.685989508047178e-21 - syst_JES_EtaIntercalibration_Stat125: 3.942816601111444e-22 - syst_JES_EtaIntercalibration_Stat126: 3.1331731627058213e-22 - syst_JES_EtaIntercalibration_Stat127: 1.2120357019346749e-22 - syst_JES_EtaIntercalibration_Stat128: 9.452997461123112e-21 - syst_JES_EtaIntercalibration_Stat129: 1.9323427976164064e-14 - syst_JES_EtaIntercalibration_Stat13: 2.774745393725345e-12 - syst_JES_EtaIntercalibration_Stat130: 2.997158127305765e-12 - syst_JES_EtaIntercalibration_Stat131: 2.9176731619562877e-12 - syst_JES_EtaIntercalibration_Stat132: 3.5516929414013256e-11 - syst_JES_EtaIntercalibration_Stat133: 4.3822401155117006e-11 - syst_JES_EtaIntercalibration_Stat134: 4.9666554967718304e-11 - syst_JES_EtaIntercalibration_Stat135: 5.758556850461754e-19 - syst_JES_EtaIntercalibration_Stat136: 8.949042448776293e-20 - syst_JES_EtaIntercalibration_Stat137: 4.258246899683804e-13 - syst_JES_EtaIntercalibration_Stat138: 2.9113506672161635e-12 - syst_JES_EtaIntercalibration_Stat139: 6.458083567707994e-11 - syst_JES_EtaIntercalibration_Stat14: 2.8085203844729383e-12 - syst_JES_EtaIntercalibration_Stat140: 4.630636550009819e-12 - syst_JES_EtaIntercalibration_Stat141: 6.40903554893402e-11 - syst_JES_EtaIntercalibration_Stat142: 4.869643886052005e-12 - syst_JES_EtaIntercalibration_Stat143: 4.869628936166935e-12 - syst_JES_EtaIntercalibration_Stat144: 3.8122173047258795e-14 - syst_JES_EtaIntercalibration_Stat145: 1.00053537403732e-15 - syst_JES_EtaIntercalibration_Stat146: 1.95814352748177e-16 - syst_JES_EtaIntercalibration_Stat147: 2.8033987854031756e-14 - syst_JES_EtaIntercalibration_Stat148: 2.9980430792768806e-12 - syst_JES_EtaIntercalibration_Stat149: 2.7865156791233023e-12 - syst_JES_EtaIntercalibration_Stat15: 3.951900208760338e-26 - syst_JES_EtaIntercalibration_Stat150: 4.984454965941613e-11 - syst_JES_EtaIntercalibration_Stat151: 2.938375606946804e-10 - syst_JES_EtaIntercalibration_Stat152: 3.4595890044917184e-12 - syst_JES_EtaIntercalibration_Stat153: 6.902936506118247e-12 - syst_JES_EtaIntercalibration_Stat154: 6.807171624103509e-19 - syst_JES_EtaIntercalibration_Stat155: 4.258013169987941e-13 - syst_JES_EtaIntercalibration_Stat156: 2.5225864836512547e-12 - syst_JES_EtaIntercalibration_Stat157: 9.089329059397068e-11 - syst_JES_EtaIntercalibration_Stat158: 4.7458193873583386e-12 - syst_JES_EtaIntercalibration_Stat159: 6.994890483620515e-12 - syst_JES_EtaIntercalibration_Stat16: 3.200780812161308e-26 - syst_JES_EtaIntercalibration_Stat160: 1.4089871040678727e-12 - syst_JES_EtaIntercalibration_Stat161: 1.3906796859306557e-12 - syst_JES_EtaIntercalibration_Stat162: 1.1860647070037957e-16 - syst_JES_EtaIntercalibration_Stat163: 9.260668776470737e-16 - syst_JES_EtaIntercalibration_Stat164: 1.998539353327825e-14 - syst_JES_EtaIntercalibration_Stat165: 3.0239855104646253e-12 - syst_JES_EtaIntercalibration_Stat166: 3.3611888649219043e-12 - syst_JES_EtaIntercalibration_Stat167: 1.4027266235086579e-11 - syst_JES_EtaIntercalibration_Stat168: 4.0635938428932584e-10 - syst_JES_EtaIntercalibration_Stat169: 2.882170339125541e-10 - syst_JES_EtaIntercalibration_Stat17: 3.42616972710774e-19 - syst_JES_EtaIntercalibration_Stat170: 6.404723784051893e-10 - syst_JES_EtaIntercalibration_Stat171: 1.4600404472137066e-10 - syst_JES_EtaIntercalibration_Stat172: 9.453656825486897e-17 - syst_JES_EtaIntercalibration_Stat173: 4.2402898702235856e-13 - syst_JES_EtaIntercalibration_Stat174: 3.177936076685621e-12 - syst_JES_EtaIntercalibration_Stat175: 6.192275086751234e-10 - syst_JES_EtaIntercalibration_Stat176: 1.2784515947035302e-10 - syst_JES_EtaIntercalibration_Stat177: 5.191546928180463e-11 - syst_JES_EtaIntercalibration_Stat178: 1.6581408625324934e-11 - syst_JES_EtaIntercalibration_Stat179: 6.401779949381267e-12 - syst_JES_EtaIntercalibration_Stat18: 2.3171408044182383e-26 - syst_JES_EtaIntercalibration_Stat180: 3.9704409075063687e-13 - syst_JES_EtaIntercalibration_Stat181: 6.298509744376046e-16 - syst_JES_EtaIntercalibration_Stat182: 6.757275991847603e-13 - syst_JES_EtaIntercalibration_Stat183: 1.4270816374685788e-10 - syst_JES_EtaIntercalibration_Stat184: 2.44478971488347e-09 - syst_JES_EtaIntercalibration_Stat185: 5.243189201240025e-09 - syst_JES_EtaIntercalibration_Stat186: 3.763140576699201e-09 - syst_JES_EtaIntercalibration_Stat187: 2.8087308579321016e-09 - syst_JES_EtaIntercalibration_Stat188: 8.035085230879632e-10 - syst_JES_EtaIntercalibration_Stat189: 3.1512652440889514e-12 - syst_JES_EtaIntercalibration_Stat19: 8.594399333723096e-27 - syst_JES_EtaIntercalibration_Stat190: 2.8985968774003396e-12 - syst_JES_EtaIntercalibration_Stat191: 2.1331877624813057e-10 - syst_JES_EtaIntercalibration_Stat192: 4.312488956507599e-09 - syst_JES_EtaIntercalibration_Stat193: 4.2910524350093874e-09 - syst_JES_EtaIntercalibration_Stat194: 3.306138581487473e-10 - syst_JES_EtaIntercalibration_Stat195: 9.511713587335354e-10 - syst_JES_EtaIntercalibration_Stat196: 1.1519349232921103e-10 - syst_JES_EtaIntercalibration_Stat197: 7.173886468818697e-12 - syst_JES_EtaIntercalibration_Stat198: 1.2451982522875623e-09 - syst_JES_EtaIntercalibration_Stat199: 5.466795959929363e-10 - syst_JES_EtaIntercalibration_Stat2: 2.56022788194723e-26 - syst_JES_EtaIntercalibration_Stat20: 1.8159916354432915e-26 - syst_JES_EtaIntercalibration_Stat200: 1.1911238144788936e-09 - syst_JES_EtaIntercalibration_Stat201: 4.605386710147151e-09 - syst_JES_EtaIntercalibration_Stat202: 1.868348620439986e-09 - syst_JES_EtaIntercalibration_Stat203: 1.2306542680623181e-09 - syst_JES_EtaIntercalibration_Stat204: 2.9983818295999263e-13 - syst_JES_EtaIntercalibration_Stat205: 1.2906403678310236e-11 - syst_JES_EtaIntercalibration_Stat206: 1.6552804958676944e-09 - syst_JES_EtaIntercalibration_Stat207: 5.58948307091094e-09 - syst_JES_EtaIntercalibration_Stat208: 7.330351901511959e-09 - syst_JES_EtaIntercalibration_Stat209: 3.999382702367954e-09 - syst_JES_EtaIntercalibration_Stat21: 1.8159916354432915e-26 - syst_JES_EtaIntercalibration_Stat210: 2.8971325047363646e-10 - syst_JES_EtaIntercalibration_Stat211: 7.41054781831276e-10 - syst_JES_EtaIntercalibration_Stat212: 4.019084089690087e-09 - syst_JES_EtaIntercalibration_Stat213: 6.03240840440632e-09 - syst_JES_EtaIntercalibration_Stat214: 5.382871050842663e-09 - syst_JES_EtaIntercalibration_Stat215: 6.0994388928408815e-09 - syst_JES_EtaIntercalibration_Stat216: 7.271828844933027e-10 - syst_JES_EtaIntercalibration_Stat217: 5.312619400735856e-13 - syst_JES_EtaIntercalibration_Stat218: 8.710421896067951e-12 - syst_JES_EtaIntercalibration_Stat219: 3.5320555983732763e-10 - syst_JES_EtaIntercalibration_Stat22: 1.8159916354432915e-26 - syst_JES_EtaIntercalibration_Stat220: 8.090135289350854e-09 - syst_JES_EtaIntercalibration_Stat221: 5.723251414187569e-09 - syst_JES_EtaIntercalibration_Stat222: 3.7862630653455655e-09 - syst_JES_EtaIntercalibration_Stat223: 3.397906818910724e-09 - syst_JES_EtaIntercalibration_Stat224: 2.0284276546132967e-08 - syst_JES_EtaIntercalibration_Stat225: 1.1133228372758728e-08 - syst_JES_EtaIntercalibration_Stat226: 2.6110760234049104e-08 - syst_JES_EtaIntercalibration_Stat227: 1.953995138172048e-08 - syst_JES_EtaIntercalibration_Stat228: 2.9421466652769026e-09 - syst_JES_EtaIntercalibration_Stat229: 5.833276839607392e-11 - syst_JES_EtaIntercalibration_Stat23: 2.56022788194723e-26 - syst_JES_EtaIntercalibration_Stat230: 1.4306739670520032e-10 - syst_JES_EtaIntercalibration_Stat231: 3.5820565322172125e-09 - syst_JES_EtaIntercalibration_Stat232: 1.9052558883257655e-08 - syst_JES_EtaIntercalibration_Stat233: 2.3455285118710452e-08 - syst_JES_EtaIntercalibration_Stat234: 1.9321673711146248e-08 - syst_JES_EtaIntercalibration_Stat235: 8.89100864637978e-09 - syst_JES_EtaIntercalibration_Stat236: 1.1512698147988595e-09 - syst_JES_EtaIntercalibration_Stat237: 3.545508003093492e-09 - syst_JES_EtaIntercalibration_Stat238: 1.547937694967081e-09 - syst_JES_EtaIntercalibration_Stat239: 8.451004018458398e-10 - syst_JES_EtaIntercalibration_Stat24: 2.0929252256112735e-25 - syst_JES_EtaIntercalibration_Stat240: 2.4066327601865226e-12 - syst_JES_EtaIntercalibration_Stat241: 1.7239350683827974e-12 - syst_JES_EtaIntercalibration_Stat242: 4.569758308707365e-10 - syst_JES_EtaIntercalibration_Stat243: 3.455527964393442e-09 - syst_JES_EtaIntercalibration_Stat244: 1.066510284761934e-09 - syst_JES_EtaIntercalibration_Stat245: 2.095768594096209e-09 - syst_JES_EtaIntercalibration_Stat25: 1.341396196384573e-25 - syst_JES_EtaIntercalibration_Stat26: 6.361350858897817e-26 - syst_JES_EtaIntercalibration_Stat27: 4.259978961215223e-13 - syst_JES_EtaIntercalibration_Stat28: 1.3196047045611805e-25 - syst_JES_EtaIntercalibration_Stat29: 3.755123566542118e-25 - syst_JES_EtaIntercalibration_Stat3: 2.56022788194723e-26 - syst_JES_EtaIntercalibration_Stat30: 3.2818354666253456e-25 - syst_JES_EtaIntercalibration_Stat31: 9.95724061926797e-25 - syst_JES_EtaIntercalibration_Stat32: 5.186468234743176e-26 - syst_JES_EtaIntercalibration_Stat33: 4.259978961215575e-13 - syst_JES_EtaIntercalibration_Stat34: 4.2599789612155287e-13 - syst_JES_EtaIntercalibration_Stat35: 2.8085203844729516e-12 - syst_JES_EtaIntercalibration_Stat36: 7.868706818785413e-11 - syst_JES_EtaIntercalibration_Stat37: 1.1088315908198143e-24 - syst_JES_EtaIntercalibration_Stat38: 3.4214059166767185e-19 - syst_JES_EtaIntercalibration_Stat39: 7.616340667768216e-25 - syst_JES_EtaIntercalibration_Stat4: 1.0637906032203894e-26 - syst_JES_EtaIntercalibration_Stat40: 4.433117533708643e-24 - syst_JES_EtaIntercalibration_Stat41: 4.508170329523941e-25 - syst_JES_EtaIntercalibration_Stat42: 8.154648658893894e-27 - syst_JES_EtaIntercalibration_Stat43: 1.8159916354432915e-26 - syst_JES_EtaIntercalibration_Stat44: 1.8159916354432915e-26 - syst_JES_EtaIntercalibration_Stat45: 1.8164752317331498e-25 - syst_JES_EtaIntercalibration_Stat46: 6.426520402208337e-25 - syst_JES_EtaIntercalibration_Stat47: 3.0750792132073603e-24 - syst_JES_EtaIntercalibration_Stat48: 3.050019047071673e-24 - syst_JES_EtaIntercalibration_Stat49: 4.2599789612137414e-13 - syst_JES_EtaIntercalibration_Stat5: 1.933575291396743e-26 - syst_JES_EtaIntercalibration_Stat50: 1.1616298290225677e-23 - syst_JES_EtaIntercalibration_Stat51: 3.6024628964085105e-24 - syst_JES_EtaIntercalibration_Stat52: 6.805405753516832e-24 - syst_JES_EtaIntercalibration_Stat53: 7.941057799027784e-24 - syst_JES_EtaIntercalibration_Stat54: 2.0631753189612246e-22 - syst_JES_EtaIntercalibration_Stat55: 4.2599789612148774e-13 - syst_JES_EtaIntercalibration_Stat56: 2.559105068183118e-12 - syst_JES_EtaIntercalibration_Stat57: 2.5573730173755897e-12 - syst_JES_EtaIntercalibration_Stat58: 7.867840793381621e-11 - syst_JES_EtaIntercalibration_Stat59: 2.9134232043251115e-24 - syst_JES_EtaIntercalibration_Stat6: 2.0970500709329759e-26 - syst_JES_EtaIntercalibration_Stat60: 1.1640145488781488e-24 - syst_JES_EtaIntercalibration_Stat61: 4.188047764770598e-24 - syst_JES_EtaIntercalibration_Stat62: 2.977284552658681e-24 - syst_JES_EtaIntercalibration_Stat63: 4.914684289707732e-25 - syst_JES_EtaIntercalibration_Stat64: 4.102362337726886e-27 - syst_JES_EtaIntercalibration_Stat65: 1.8159916354432915e-26 - syst_JES_EtaIntercalibration_Stat66: 1.8159916354432915e-26 - syst_JES_EtaIntercalibration_Stat67: 1.4434918600393974e-24 - syst_JES_EtaIntercalibration_Stat68: 1.00029141128973e-23 - syst_JES_EtaIntercalibration_Stat69: 1.888801392221807e-16 - syst_JES_EtaIntercalibration_Stat7: 1.8159916354432915e-26 - syst_JES_EtaIntercalibration_Stat70: 4.2599789602815007e-13 - syst_JES_EtaIntercalibration_Stat71: 4.2599789605444834e-13 - syst_JES_EtaIntercalibration_Stat72: 4.2599789612008213e-13 - syst_JES_EtaIntercalibration_Stat73: 1.0707538092390489e-10 - syst_JES_EtaIntercalibration_Stat74: 4.6400571114765243e-20 - syst_JES_EtaIntercalibration_Stat75: 2.1126691056575804e-22 - syst_JES_EtaIntercalibration_Stat76: 2.0951821312716469e-22 - syst_JES_EtaIntercalibration_Stat77: 4.259978961206794e-13 - syst_JES_EtaIntercalibration_Stat78: 2.6673582436555157e-12 - syst_JES_EtaIntercalibration_Stat79: 4.259978961208849e-13 - syst_JES_EtaIntercalibration_Stat8: 1.1120632209995977e-26 - syst_JES_EtaIntercalibration_Stat80: 2.5833537794771135e-12 - syst_JES_EtaIntercalibration_Stat81: 2.8180655931862194e-23 - syst_JES_EtaIntercalibration_Stat82: 1.0707538093944448e-10 - syst_JES_EtaIntercalibration_Stat83: 4.207959886631525e-23 - syst_JES_EtaIntercalibration_Stat84: 2.0498190670154282e-22 - syst_JES_EtaIntercalibration_Stat85: 1.1929231607693765e-22 - syst_JES_EtaIntercalibration_Stat86: 4.128521637039099e-25 - syst_JES_EtaIntercalibration_Stat87: 1.1120632209995977e-26 - syst_JES_EtaIntercalibration_Stat88: 2.8720224146061255e-25 - syst_JES_EtaIntercalibration_Stat89: 1.3623454133221868e-22 - syst_JES_EtaIntercalibration_Stat9: 3.3500253652024785e-26 - syst_JES_EtaIntercalibration_Stat90: 1.888800855151021e-16 - syst_JES_EtaIntercalibration_Stat91: 4.259978960401301e-13 - syst_JES_EtaIntercalibration_Stat92: 4.2599789614940226e-13 - syst_JES_EtaIntercalibration_Stat93: 4.259978961190065e-13 - syst_JES_EtaIntercalibration_Stat94: 5.04551305617179e-23 - syst_JES_EtaIntercalibration_Stat95: 4.664333762024959e-20 - syst_JES_EtaIntercalibration_Stat96: 4.661920200550413e-20 - syst_JES_EtaIntercalibration_Stat97: 2.365513312158695e-22 - syst_JES_EtaIntercalibration_Stat98: 4.2599789612133905e-13 - syst_JES_EtaIntercalibration_Stat99: 2.672554407132149e-12 - syst_JES_EtaIntercalibration_TotalStat_MJB: 8.66473350715416e-07 - syst_JES_Flavour_Comp: 1.207063324768009e-06 - syst_JES_Flavour_Response: 6.108224946741892e-07 - syst_JES_Gjet_Generator: 1.7124049608664418e-06 - syst_JES_Gjet_OOC: 1.442660274458266e-06 - syst_JES_Gjet_Purity: 1.0920763469190237e-07 - syst_JES_Gjet_Stat1: 1.662768775266122e-24 - syst_JES_Gjet_Stat10: 6.631581315945694e-08 - syst_JES_Gjet_Stat11: 6.633695953237531e-08 - syst_JES_Gjet_Stat12: 4.617251861226546e-08 - syst_JES_Gjet_Stat13: 3.4536277665666285e-07 - syst_JES_Gjet_Stat14: 1.0187785284349096e-06 - syst_JES_Gjet_Stat15: 1.6512304503006235e-06 - syst_JES_Gjet_Stat2: 3.343291071309825e-09 - syst_JES_Gjet_Stat3: 5.605749459260554e-25 - syst_JES_Gjet_Stat4: 7.122939826188341e-23 - syst_JES_Gjet_Stat5: 1.8275558178890188e-23 - syst_JES_Gjet_Stat6: 1.9576927108205723e-08 - syst_JES_Gjet_Stat7: 1.7910460630592392e-08 - syst_JES_Gjet_Stat8: 4.210614589151646e-14 - syst_JES_Gjet_Stat9: 1.804356394950842e-08 - syst_JES_Gjet_Veto: 1.5954287824907762e-06 - syst_JES_Gjet_dPhi: 1.0047271308668836e-07 - syst_JES_LArESZee: 2.347900072405127e-06 - syst_JES_LArEsmear: 2.1712914935586149e-07 - syst_JES_LAr_JVT: 2.6436464873352486e-07 - syst_JES_MJB_Alpha: 3.5681034748869046e-08 - syst_JES_MJB_Asym: 9.181792676269705e-07 - syst_JES_MJB_Beta: 6.387077031005655e-08 - syst_JES_MJB_Fragmentation: 2.003345701570251e-07 + syst_JER_NP7: 1.72425658e-19 + syst_JER_NP8: 1.92977488e-08 + syst_JES_EtaIntercalibration_Modelling: 3.34945772e-06 + syst_JES_EtaIntercalibration_NonClosure: 6.93260086e-11 + syst_JES_EtaIntercalibration_Stat0: 1.81599164e-26 + syst_JES_EtaIntercalibration_Stat1: 1.81599164e-26 + syst_JES_EtaIntercalibration_Stat10: 3.35002537e-26 + syst_JES_EtaIntercalibration_Stat100: 4.25997896e-13 + syst_JES_EtaIntercalibration_Stat101: 2.59201403e-12 + syst_JES_EtaIntercalibration_Stat102: 1.07075381e-10 + syst_JES_EtaIntercalibration_Stat103: 1.07075382e-10 + syst_JES_EtaIntercalibration_Stat104: 4.65480233e-20 + syst_JES_EtaIntercalibration_Stat105: 1.88657307e-22 + syst_JES_EtaIntercalibration_Stat106: 9.30380528e-23 + syst_JES_EtaIntercalibration_Stat107: 4.37190108e-25 + syst_JES_EtaIntercalibration_Stat108: 2.21265082e-24 + syst_JES_EtaIntercalibration_Stat109: 1.88964338e-16 + syst_JES_EtaIntercalibration_Stat11: 4.25997896e-13 + syst_JES_EtaIntercalibration_Stat110: 1.88909683e-16 + syst_JES_EtaIntercalibration_Stat111: 4.25824695e-13 + syst_JES_EtaIntercalibration_Stat112: 4.25502074e-13 + syst_JES_EtaIntercalibration_Stat113: 4.27816550e-13 + syst_JES_EtaIntercalibration_Stat114: 3.53505341e-17 + syst_JES_EtaIntercalibration_Stat115: 1.32789529e-20 + syst_JES_EtaIntercalibration_Stat116: 8.91598661e-19 + syst_JES_EtaIntercalibration_Stat117: 2.83427698e-22 + syst_JES_EtaIntercalibration_Stat118: 4.25997886e-13 + syst_JES_EtaIntercalibration_Stat119: 4.25671974e-13 + syst_JES_EtaIntercalibration_Stat12: 2.80505628e-12 + syst_JES_EtaIntercalibration_Stat120: 4.27989776e-13 + syst_JES_EtaIntercalibration_Stat121: 1.07218074e-10 + syst_JES_EtaIntercalibration_Stat122: 1.07075381e-10 + syst_JES_EtaIntercalibration_Stat123: 7.53823628e-19 + syst_JES_EtaIntercalibration_Stat124: 9.68598951e-21 + syst_JES_EtaIntercalibration_Stat125: 3.94281660e-22 + syst_JES_EtaIntercalibration_Stat126: 3.13317316e-22 + syst_JES_EtaIntercalibration_Stat127: 1.21203570e-22 + syst_JES_EtaIntercalibration_Stat128: 9.45299746e-21 + syst_JES_EtaIntercalibration_Stat129: 1.93234280e-14 + syst_JES_EtaIntercalibration_Stat13: 2.77474539e-12 + syst_JES_EtaIntercalibration_Stat130: 2.99715813e-12 + syst_JES_EtaIntercalibration_Stat131: 2.91767316e-12 + syst_JES_EtaIntercalibration_Stat132: 3.55169294e-11 + syst_JES_EtaIntercalibration_Stat133: 4.38224012e-11 + syst_JES_EtaIntercalibration_Stat134: 4.96665550e-11 + syst_JES_EtaIntercalibration_Stat135: 5.75855685e-19 + syst_JES_EtaIntercalibration_Stat136: 8.94904245e-20 + syst_JES_EtaIntercalibration_Stat137: 4.25824690e-13 + syst_JES_EtaIntercalibration_Stat138: 2.91135067e-12 + syst_JES_EtaIntercalibration_Stat139: 6.45808357e-11 + syst_JES_EtaIntercalibration_Stat14: 2.80852038e-12 + syst_JES_EtaIntercalibration_Stat140: 4.63063655e-12 + syst_JES_EtaIntercalibration_Stat141: 6.40903555e-11 + syst_JES_EtaIntercalibration_Stat142: 4.86964389e-12 + syst_JES_EtaIntercalibration_Stat143: 4.86962894e-12 + syst_JES_EtaIntercalibration_Stat144: 3.81221730e-14 + syst_JES_EtaIntercalibration_Stat145: 1.00053537e-15 + syst_JES_EtaIntercalibration_Stat146: 1.95814353e-16 + syst_JES_EtaIntercalibration_Stat147: 2.80339879e-14 + syst_JES_EtaIntercalibration_Stat148: 2.99804308e-12 + syst_JES_EtaIntercalibration_Stat149: 2.78651568e-12 + syst_JES_EtaIntercalibration_Stat15: 3.95190021e-26 + syst_JES_EtaIntercalibration_Stat150: 4.98445497e-11 + syst_JES_EtaIntercalibration_Stat151: 2.93837561e-10 + syst_JES_EtaIntercalibration_Stat152: 3.45958900e-12 + syst_JES_EtaIntercalibration_Stat153: 6.90293651e-12 + syst_JES_EtaIntercalibration_Stat154: 6.80717162e-19 + syst_JES_EtaIntercalibration_Stat155: 4.25801317e-13 + syst_JES_EtaIntercalibration_Stat156: 2.52258648e-12 + syst_JES_EtaIntercalibration_Stat157: 9.08932906e-11 + syst_JES_EtaIntercalibration_Stat158: 4.74581939e-12 + syst_JES_EtaIntercalibration_Stat159: 6.99489048e-12 + syst_JES_EtaIntercalibration_Stat16: 3.20078081e-26 + syst_JES_EtaIntercalibration_Stat160: 1.40898710e-12 + syst_JES_EtaIntercalibration_Stat161: 1.39067969e-12 + syst_JES_EtaIntercalibration_Stat162: 1.18606471e-16 + syst_JES_EtaIntercalibration_Stat163: 9.26066878e-16 + syst_JES_EtaIntercalibration_Stat164: 1.99853935e-14 + syst_JES_EtaIntercalibration_Stat165: 3.02398551e-12 + syst_JES_EtaIntercalibration_Stat166: 3.36118886e-12 + syst_JES_EtaIntercalibration_Stat167: 1.40272662e-11 + syst_JES_EtaIntercalibration_Stat168: 4.06359384e-10 + syst_JES_EtaIntercalibration_Stat169: 2.88217034e-10 + syst_JES_EtaIntercalibration_Stat17: 3.42616973e-19 + syst_JES_EtaIntercalibration_Stat170: 6.40472378e-10 + syst_JES_EtaIntercalibration_Stat171: 1.46004045e-10 + syst_JES_EtaIntercalibration_Stat172: 9.45365683e-17 + syst_JES_EtaIntercalibration_Stat173: 4.24028987e-13 + syst_JES_EtaIntercalibration_Stat174: 3.17793608e-12 + syst_JES_EtaIntercalibration_Stat175: 6.19227509e-10 + syst_JES_EtaIntercalibration_Stat176: 1.27845159e-10 + syst_JES_EtaIntercalibration_Stat177: 5.19154693e-11 + syst_JES_EtaIntercalibration_Stat178: 1.65814086e-11 + syst_JES_EtaIntercalibration_Stat179: 6.40177995e-12 + syst_JES_EtaIntercalibration_Stat18: 2.31714080e-26 + syst_JES_EtaIntercalibration_Stat180: 3.97044091e-13 + syst_JES_EtaIntercalibration_Stat181: 6.29850974e-16 + syst_JES_EtaIntercalibration_Stat182: 6.75727599e-13 + syst_JES_EtaIntercalibration_Stat183: 1.42708164e-10 + syst_JES_EtaIntercalibration_Stat184: 2.44478971e-09 + syst_JES_EtaIntercalibration_Stat185: 5.24318920e-09 + syst_JES_EtaIntercalibration_Stat186: 3.76314058e-09 + syst_JES_EtaIntercalibration_Stat187: 2.80873086e-09 + syst_JES_EtaIntercalibration_Stat188: 8.03508523e-10 + syst_JES_EtaIntercalibration_Stat189: 3.15126524e-12 + syst_JES_EtaIntercalibration_Stat19: 8.59439933e-27 + syst_JES_EtaIntercalibration_Stat190: 2.89859688e-12 + syst_JES_EtaIntercalibration_Stat191: 2.13318776e-10 + syst_JES_EtaIntercalibration_Stat192: 4.31248896e-09 + syst_JES_EtaIntercalibration_Stat193: 4.29105244e-09 + syst_JES_EtaIntercalibration_Stat194: 3.30613858e-10 + syst_JES_EtaIntercalibration_Stat195: 9.51171359e-10 + syst_JES_EtaIntercalibration_Stat196: 1.15193492e-10 + syst_JES_EtaIntercalibration_Stat197: 7.17388647e-12 + syst_JES_EtaIntercalibration_Stat198: 1.24519825e-09 + syst_JES_EtaIntercalibration_Stat199: 5.46679596e-10 + syst_JES_EtaIntercalibration_Stat2: 2.56022788e-26 + syst_JES_EtaIntercalibration_Stat20: 1.81599164e-26 + syst_JES_EtaIntercalibration_Stat200: 1.19112381e-09 + syst_JES_EtaIntercalibration_Stat201: 4.60538671e-09 + syst_JES_EtaIntercalibration_Stat202: 1.86834862e-09 + syst_JES_EtaIntercalibration_Stat203: 1.23065427e-09 + syst_JES_EtaIntercalibration_Stat204: 2.99838183e-13 + syst_JES_EtaIntercalibration_Stat205: 1.29064037e-11 + syst_JES_EtaIntercalibration_Stat206: 1.65528050e-09 + syst_JES_EtaIntercalibration_Stat207: 5.58948307e-09 + syst_JES_EtaIntercalibration_Stat208: 7.33035190e-09 + syst_JES_EtaIntercalibration_Stat209: 3.99938270e-09 + syst_JES_EtaIntercalibration_Stat21: 1.81599164e-26 + syst_JES_EtaIntercalibration_Stat210: 2.89713250e-10 + syst_JES_EtaIntercalibration_Stat211: 7.41054782e-10 + syst_JES_EtaIntercalibration_Stat212: 4.01908409e-09 + syst_JES_EtaIntercalibration_Stat213: 6.03240840e-09 + syst_JES_EtaIntercalibration_Stat214: 5.38287105e-09 + syst_JES_EtaIntercalibration_Stat215: 6.09943889e-09 + syst_JES_EtaIntercalibration_Stat216: 7.27182884e-10 + syst_JES_EtaIntercalibration_Stat217: 5.31261940e-13 + syst_JES_EtaIntercalibration_Stat218: 8.71042190e-12 + syst_JES_EtaIntercalibration_Stat219: 3.53205560e-10 + syst_JES_EtaIntercalibration_Stat22: 1.81599164e-26 + syst_JES_EtaIntercalibration_Stat220: 8.09013529e-09 + syst_JES_EtaIntercalibration_Stat221: 5.72325141e-09 + syst_JES_EtaIntercalibration_Stat222: 3.78626307e-09 + syst_JES_EtaIntercalibration_Stat223: 3.39790682e-09 + syst_JES_EtaIntercalibration_Stat224: 2.02842765e-08 + syst_JES_EtaIntercalibration_Stat225: 1.11332284e-08 + syst_JES_EtaIntercalibration_Stat226: 2.61107602e-08 + syst_JES_EtaIntercalibration_Stat227: 1.95399514e-08 + syst_JES_EtaIntercalibration_Stat228: 2.94214667e-09 + syst_JES_EtaIntercalibration_Stat229: 5.83327684e-11 + syst_JES_EtaIntercalibration_Stat23: 2.56022788e-26 + syst_JES_EtaIntercalibration_Stat230: 1.43067397e-10 + syst_JES_EtaIntercalibration_Stat231: 3.58205653e-09 + syst_JES_EtaIntercalibration_Stat232: 1.90525589e-08 + syst_JES_EtaIntercalibration_Stat233: 2.34552851e-08 + syst_JES_EtaIntercalibration_Stat234: 1.93216737e-08 + syst_JES_EtaIntercalibration_Stat235: 8.89100865e-09 + syst_JES_EtaIntercalibration_Stat236: 1.15126981e-09 + syst_JES_EtaIntercalibration_Stat237: 3.54550800e-09 + syst_JES_EtaIntercalibration_Stat238: 1.54793769e-09 + syst_JES_EtaIntercalibration_Stat239: 8.45100402e-10 + syst_JES_EtaIntercalibration_Stat24: 2.09292523e-25 + syst_JES_EtaIntercalibration_Stat240: 2.40663276e-12 + syst_JES_EtaIntercalibration_Stat241: 1.72393507e-12 + syst_JES_EtaIntercalibration_Stat242: 4.56975831e-10 + syst_JES_EtaIntercalibration_Stat243: 3.45552796e-09 + syst_JES_EtaIntercalibration_Stat244: 1.06651028e-09 + syst_JES_EtaIntercalibration_Stat245: 2.09576859e-09 + syst_JES_EtaIntercalibration_Stat25: 1.34139620e-25 + syst_JES_EtaIntercalibration_Stat26: 6.36135086e-26 + syst_JES_EtaIntercalibration_Stat27: 4.25997896e-13 + syst_JES_EtaIntercalibration_Stat28: 1.31960470e-25 + syst_JES_EtaIntercalibration_Stat29: 3.75512357e-25 + syst_JES_EtaIntercalibration_Stat3: 2.56022788e-26 + syst_JES_EtaIntercalibration_Stat30: 3.28183547e-25 + syst_JES_EtaIntercalibration_Stat31: 9.95724062e-25 + syst_JES_EtaIntercalibration_Stat32: 5.18646823e-26 + syst_JES_EtaIntercalibration_Stat33: 4.25997896e-13 + syst_JES_EtaIntercalibration_Stat34: 4.25997896e-13 + syst_JES_EtaIntercalibration_Stat35: 2.80852038e-12 + syst_JES_EtaIntercalibration_Stat36: 7.86870682e-11 + syst_JES_EtaIntercalibration_Stat37: 1.10883159e-24 + syst_JES_EtaIntercalibration_Stat38: 3.42140592e-19 + syst_JES_EtaIntercalibration_Stat39: 7.61634067e-25 + syst_JES_EtaIntercalibration_Stat4: 1.06379060e-26 + syst_JES_EtaIntercalibration_Stat40: 4.43311753e-24 + syst_JES_EtaIntercalibration_Stat41: 4.50817033e-25 + syst_JES_EtaIntercalibration_Stat42: 8.15464866e-27 + syst_JES_EtaIntercalibration_Stat43: 1.81599164e-26 + syst_JES_EtaIntercalibration_Stat44: 1.81599164e-26 + syst_JES_EtaIntercalibration_Stat45: 1.81647523e-25 + syst_JES_EtaIntercalibration_Stat46: 6.42652040e-25 + syst_JES_EtaIntercalibration_Stat47: 3.07507921e-24 + syst_JES_EtaIntercalibration_Stat48: 3.05001905e-24 + syst_JES_EtaIntercalibration_Stat49: 4.25997896e-13 + syst_JES_EtaIntercalibration_Stat5: 1.93357529e-26 + syst_JES_EtaIntercalibration_Stat50: 1.16162983e-23 + syst_JES_EtaIntercalibration_Stat51: 3.60246290e-24 + syst_JES_EtaIntercalibration_Stat52: 6.80540575e-24 + syst_JES_EtaIntercalibration_Stat53: 7.94105780e-24 + syst_JES_EtaIntercalibration_Stat54: 2.06317532e-22 + syst_JES_EtaIntercalibration_Stat55: 4.25997896e-13 + syst_JES_EtaIntercalibration_Stat56: 2.55910507e-12 + syst_JES_EtaIntercalibration_Stat57: 2.55737302e-12 + syst_JES_EtaIntercalibration_Stat58: 7.86784079e-11 + syst_JES_EtaIntercalibration_Stat59: 2.91342320e-24 + syst_JES_EtaIntercalibration_Stat6: 2.09705007e-26 + syst_JES_EtaIntercalibration_Stat60: 1.16401455e-24 + syst_JES_EtaIntercalibration_Stat61: 4.18804776e-24 + syst_JES_EtaIntercalibration_Stat62: 2.97728455e-24 + syst_JES_EtaIntercalibration_Stat63: 4.91468429e-25 + syst_JES_EtaIntercalibration_Stat64: 4.10236234e-27 + syst_JES_EtaIntercalibration_Stat65: 1.81599164e-26 + syst_JES_EtaIntercalibration_Stat66: 1.81599164e-26 + syst_JES_EtaIntercalibration_Stat67: 1.44349186e-24 + syst_JES_EtaIntercalibration_Stat68: 1.00029141e-23 + syst_JES_EtaIntercalibration_Stat69: 1.88880139e-16 + syst_JES_EtaIntercalibration_Stat7: 1.81599164e-26 + syst_JES_EtaIntercalibration_Stat70: 4.25997896e-13 + syst_JES_EtaIntercalibration_Stat71: 4.25997896e-13 + syst_JES_EtaIntercalibration_Stat72: 4.25997896e-13 + syst_JES_EtaIntercalibration_Stat73: 1.07075381e-10 + syst_JES_EtaIntercalibration_Stat74: 4.64005711e-20 + syst_JES_EtaIntercalibration_Stat75: 2.11266911e-22 + syst_JES_EtaIntercalibration_Stat76: 2.09518213e-22 + syst_JES_EtaIntercalibration_Stat77: 4.25997896e-13 + syst_JES_EtaIntercalibration_Stat78: 2.66735824e-12 + syst_JES_EtaIntercalibration_Stat79: 4.25997896e-13 + syst_JES_EtaIntercalibration_Stat8: 1.11206322e-26 + syst_JES_EtaIntercalibration_Stat80: 2.58335378e-12 + syst_JES_EtaIntercalibration_Stat81: 2.81806559e-23 + syst_JES_EtaIntercalibration_Stat82: 1.07075381e-10 + syst_JES_EtaIntercalibration_Stat83: 4.20795989e-23 + syst_JES_EtaIntercalibration_Stat84: 2.04981907e-22 + syst_JES_EtaIntercalibration_Stat85: 1.19292316e-22 + syst_JES_EtaIntercalibration_Stat86: 4.12852164e-25 + syst_JES_EtaIntercalibration_Stat87: 1.11206322e-26 + syst_JES_EtaIntercalibration_Stat88: 2.87202241e-25 + syst_JES_EtaIntercalibration_Stat89: 1.36234541e-22 + syst_JES_EtaIntercalibration_Stat9: 3.35002537e-26 + syst_JES_EtaIntercalibration_Stat90: 1.88880086e-16 + syst_JES_EtaIntercalibration_Stat91: 4.25997896e-13 + syst_JES_EtaIntercalibration_Stat92: 4.25997896e-13 + syst_JES_EtaIntercalibration_Stat93: 4.25997896e-13 + syst_JES_EtaIntercalibration_Stat94: 5.04551306e-23 + syst_JES_EtaIntercalibration_Stat95: 4.66433376e-20 + syst_JES_EtaIntercalibration_Stat96: 4.66192020e-20 + syst_JES_EtaIntercalibration_Stat97: 2.36551331e-22 + syst_JES_EtaIntercalibration_Stat98: 4.25997896e-13 + syst_JES_EtaIntercalibration_Stat99: 2.67255441e-12 + syst_JES_EtaIntercalibration_TotalStat_MJB: 8.66473351e-07 + syst_JES_Flavour_Comp: 1.20706332e-06 + syst_JES_Flavour_Response: 6.10822495e-07 + syst_JES_Gjet_Generator: 1.71240496e-06 + syst_JES_Gjet_OOC: 1.44266027e-06 + syst_JES_Gjet_Purity: 1.09207635e-07 + syst_JES_Gjet_Stat1: 1.66276878e-24 + syst_JES_Gjet_Stat10: 6.63158132e-08 + syst_JES_Gjet_Stat11: 6.63369595e-08 + syst_JES_Gjet_Stat12: 4.61725186e-08 + syst_JES_Gjet_Stat13: 3.45362777e-07 + syst_JES_Gjet_Stat14: 1.01877853e-06 + syst_JES_Gjet_Stat15: 1.65123045e-06 + syst_JES_Gjet_Stat2: 3.34329107e-09 + syst_JES_Gjet_Stat3: 5.60574946e-25 + syst_JES_Gjet_Stat4: 7.12293983e-23 + syst_JES_Gjet_Stat5: 1.82755582e-23 + syst_JES_Gjet_Stat6: 1.95769271e-08 + syst_JES_Gjet_Stat7: 1.79104606e-08 + syst_JES_Gjet_Stat8: 4.21061459e-14 + syst_JES_Gjet_Stat9: 1.80435639e-08 + syst_JES_Gjet_Veto: 1.59542878e-06 + syst_JES_Gjet_dPhi: 1.00472713e-07 + syst_JES_LArESZee: 2.34790007e-06 + syst_JES_LArEsmear: 2.17129149e-07 + syst_JES_LAr_JVT: 2.64364649e-07 + syst_JES_MJB_Alpha: 3.56810347e-08 + syst_JES_MJB_Asym: 9.18179268e-07 + syst_JES_MJB_Beta: 6.38707703e-08 + syst_JES_MJB_Fragmentation: 2.00334570e-07 syst_JES_MJB_Stat1: 0.0 - syst_JES_MJB_Stat10: 6.618663063640572e-09 - syst_JES_MJB_Stat11: 7.152191325041578e-09 - syst_JES_MJB_Stat12: 1.2214580498322487e-08 - syst_JES_MJB_Stat13: 2.760210185384439e-08 - syst_JES_MJB_Stat14: 1.790014804408053e-07 - syst_JES_MJB_Stat15: 1.2408540395630745e-07 - syst_JES_MJB_Stat16: 5.258660285662119e-07 - syst_JES_MJB_Stat2: 2.585951855700334e-16 - syst_JES_MJB_Stat3: 9.006664199358161e-12 - syst_JES_MJB_Stat4: 5.632242071324705e-11 - syst_JES_MJB_Stat5: 3.1003432068079175e-11 + syst_JES_MJB_Stat10: 6.61866306e-09 + syst_JES_MJB_Stat11: 7.15219133e-09 + syst_JES_MJB_Stat12: 1.22145805e-08 + syst_JES_MJB_Stat13: 2.76021019e-08 + syst_JES_MJB_Stat14: 1.79001480e-07 + syst_JES_MJB_Stat15: 1.24085404e-07 + syst_JES_MJB_Stat16: 5.25866029e-07 + syst_JES_MJB_Stat2: 2.58595186e-16 + syst_JES_MJB_Stat3: 9.00666420e-12 + syst_JES_MJB_Stat4: 5.63224207e-11 + syst_JES_MJB_Stat5: 3.10034321e-11 syst_JES_MJB_Stat6: 0.0 syst_JES_MJB_Stat7: 0.0 syst_JES_MJB_Stat8: 0.0 - syst_JES_MJB_Stat9: 2.8829985691983963e-09 - syst_JES_MJB_Threshold: 2.6322600555416254e-07 - syst_JES_Pileup_MuOffset: 5.133437055229178e-07 - syst_JES_Pileup_NPVOffset: 4.1485632452693793e-07 - syst_JES_Pileup_Pt_term: 1.7683968184488455e-07 - syst_JES_Pileup_Rho_topology: 5.529918873726811e-07 - syst_JES_PunchThrough_MC15: 1.0998599308548339e-06 - syst_JES_SingleParticle_HighPt: 7.368030995455978e-09 - syst_JES_Zjet_MC: 6.817464246330889e-07 - syst_JES_Zjet_MuScale: 6.426541896696855e-08 - syst_JES_Zjet_MuSmearID: 3.246939289161409e-09 - syst_JES_Zjet_MuSmearMS: 1.276716393722584e-07 - syst_JES_Zjet_OOC: 4.1782372778481593e-07 - syst_JES_Zjet_Stat1: 6.902987831366937e-08 - syst_JES_Zjet_Stat10: 2.661721435462396e-08 - syst_JES_Zjet_Stat11: 3.2466312925862096e-08 - syst_JES_Zjet_Stat12: 6.033134011440488e-08 - syst_JES_Zjet_Stat13: 1.3801290084626147e-07 + syst_JES_MJB_Stat9: 2.88299857e-09 + syst_JES_MJB_Threshold: 2.63226006e-07 + syst_JES_Pileup_MuOffset: 5.13343706e-07 + syst_JES_Pileup_NPVOffset: 4.14856325e-07 + syst_JES_Pileup_Pt_term: 1.76839682e-07 + syst_JES_Pileup_Rho_topology: 5.52991887e-07 + syst_JES_PunchThrough_MC15: 1.09985993e-06 + syst_JES_SingleParticle_HighPt: 7.36803100e-09 + syst_JES_Zjet_MC: 6.81746425e-07 + syst_JES_Zjet_MuScale: 6.42654190e-08 + syst_JES_Zjet_MuSmearID: 3.24693929e-09 + syst_JES_Zjet_MuSmearMS: 1.27671639e-07 + syst_JES_Zjet_OOC: 4.17823728e-07 + syst_JES_Zjet_Stat1: 6.90298783e-08 + syst_JES_Zjet_Stat10: 2.66172144e-08 + syst_JES_Zjet_Stat11: 3.24663129e-08 + syst_JES_Zjet_Stat12: 6.03313401e-08 + syst_JES_Zjet_Stat13: 1.38012901e-07 syst_JES_Zjet_Stat2: 0.0 - syst_JES_Zjet_Stat3: 1.0244214501366125e-08 - syst_JES_Zjet_Stat4: 1.5631758538309118e-08 - syst_JES_Zjet_Stat5: 1.115180912453219e-08 - syst_JES_Zjet_Stat6: 1.968008177701505e-08 - syst_JES_Zjet_Stat7: 1.853256989734559e-08 - syst_JES_Zjet_Stat8: 9.594052570212444e-09 - syst_JES_Zjet_Stat9: 2.0282383365867036e-08 - syst_JES_Zjet_Veto: 4.395062115602008e-08 - syst_JES_Zjet_dPhi: 7.322290010645578e-08 + syst_JES_Zjet_Stat3: 1.02442145e-08 + syst_JES_Zjet_Stat4: 1.56317585e-08 + syst_JES_Zjet_Stat5: 1.11518091e-08 + syst_JES_Zjet_Stat6: 1.96800818e-08 + syst_JES_Zjet_Stat7: 1.85325699e-08 + syst_JES_Zjet_Stat8: 9.59405257e-09 + syst_JES_Zjet_Stat9: 2.02823834e-08 + syst_JES_Zjet_Veto: 4.39506212e-08 + syst_JES_Zjet_dPhi: 7.32229001e-08 syst_PRW: 0.0 - syst_Unfolding_bias: 8.933e-24 - syst_cleaning: 3.6771438644687264e-07 - syst_lumi: 7.205e-07 -- stat: 9.9024e-07 + syst_Unfolding_bias: 8.93300000e-24 + syst_cleaning: 3.67714386e-07 + syst_lumi: 7.20500000e-07 +- stat: 9.90240000e-07 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 1.4220523021323795e-08 - syst_JER_NP1: 1.8180612613440727e-08 - syst_JER_NP2: 3.5518723330097325e-08 - syst_JER_NP3: 1.331369470695494e-08 + syst_JER_NP0: 1.42205230e-08 + syst_JER_NP1: 1.81806126e-08 + syst_JER_NP2: 3.55187233e-08 + syst_JER_NP3: 1.33136947e-08 syst_JER_NP4: 0.0 syst_JER_NP5: 0.0 syst_JER_NP6: 0.0 syst_JER_NP7: 0.0 - syst_JER_NP8: 1.7537014426634881e-09 - syst_JES_EtaIntercalibration_Modelling: 3.7980324840632946e-07 + syst_JER_NP8: 1.75370144e-09 + syst_JES_EtaIntercalibration_Modelling: 3.79803248e-07 syst_JES_EtaIntercalibration_NonClosure: 0.0 syst_JES_EtaIntercalibration_Stat0: 0.0 syst_JES_EtaIntercalibration_Stat1: 0.0 @@ -29035,13 +29035,13 @@ bins: syst_JES_EtaIntercalibration_Stat130: 0.0 syst_JES_EtaIntercalibration_Stat131: 0.0 syst_JES_EtaIntercalibration_Stat132: 0.0 - syst_JES_EtaIntercalibration_Stat133: 1.4228797384178327e-11 + syst_JES_EtaIntercalibration_Stat133: 1.42287974e-11 syst_JES_EtaIntercalibration_Stat134: 0.0 syst_JES_EtaIntercalibration_Stat135: 0.0 syst_JES_EtaIntercalibration_Stat136: 0.0 syst_JES_EtaIntercalibration_Stat137: 0.0 syst_JES_EtaIntercalibration_Stat138: 0.0 - syst_JES_EtaIntercalibration_Stat139: 6.166966900348988e-12 + syst_JES_EtaIntercalibration_Stat139: 6.16696690e-12 syst_JES_EtaIntercalibration_Stat14: 0.0 syst_JES_EtaIntercalibration_Stat140: 0.0 syst_JES_EtaIntercalibration_Stat141: 0.0 @@ -29073,15 +29073,15 @@ bins: syst_JES_EtaIntercalibration_Stat165: 0.0 syst_JES_EtaIntercalibration_Stat166: 0.0 syst_JES_EtaIntercalibration_Stat167: 0.0 - syst_JES_EtaIntercalibration_Stat168: 8.904473201711598e-12 - syst_JES_EtaIntercalibration_Stat169: 2.6214588972554957e-11 + syst_JES_EtaIntercalibration_Stat168: 8.90447320e-12 + syst_JES_EtaIntercalibration_Stat169: 2.62145890e-11 syst_JES_EtaIntercalibration_Stat17: 0.0 - syst_JES_EtaIntercalibration_Stat170: 4.024947436923866e-11 + syst_JES_EtaIntercalibration_Stat170: 4.02494744e-11 syst_JES_EtaIntercalibration_Stat171: 0.0 syst_JES_EtaIntercalibration_Stat172: 0.0 syst_JES_EtaIntercalibration_Stat173: 0.0 syst_JES_EtaIntercalibration_Stat174: 0.0 - syst_JES_EtaIntercalibration_Stat175: 9.514155085975843e-12 + syst_JES_EtaIntercalibration_Stat175: 9.51415509e-12 syst_JES_EtaIntercalibration_Stat176: 0.0 syst_JES_EtaIntercalibration_Stat177: 0.0 syst_JES_EtaIntercalibration_Stat178: 0.0 @@ -29091,75 +29091,75 @@ bins: syst_JES_EtaIntercalibration_Stat181: 0.0 syst_JES_EtaIntercalibration_Stat182: 0.0 syst_JES_EtaIntercalibration_Stat183: 0.0 - syst_JES_EtaIntercalibration_Stat184: 5.688054852056193e-11 - syst_JES_EtaIntercalibration_Stat185: 1.219624043578594e-09 - syst_JES_EtaIntercalibration_Stat186: 2.5081954484250223e-10 - syst_JES_EtaIntercalibration_Stat187: 4.603932530999993e-10 - syst_JES_EtaIntercalibration_Stat188: 8.379661807018228e-12 + syst_JES_EtaIntercalibration_Stat184: 5.68805485e-11 + syst_JES_EtaIntercalibration_Stat185: 1.21962404e-09 + syst_JES_EtaIntercalibration_Stat186: 2.50819545e-10 + syst_JES_EtaIntercalibration_Stat187: 4.60393253e-10 + syst_JES_EtaIntercalibration_Stat188: 8.37966181e-12 syst_JES_EtaIntercalibration_Stat189: 0.0 syst_JES_EtaIntercalibration_Stat19: 0.0 syst_JES_EtaIntercalibration_Stat190: 0.0 - syst_JES_EtaIntercalibration_Stat191: 8.705324326525692e-12 - syst_JES_EtaIntercalibration_Stat192: 3.575459833364095e-10 - syst_JES_EtaIntercalibration_Stat193: 3.7270394802946484e-10 + syst_JES_EtaIntercalibration_Stat191: 8.70532433e-12 + syst_JES_EtaIntercalibration_Stat192: 3.57545983e-10 + syst_JES_EtaIntercalibration_Stat193: 3.72703948e-10 syst_JES_EtaIntercalibration_Stat194: 0.0 - syst_JES_EtaIntercalibration_Stat195: 4.0426065848657593e-10 - syst_JES_EtaIntercalibration_Stat196: 1.0432142013987348e-11 + syst_JES_EtaIntercalibration_Stat195: 4.04260658e-10 + syst_JES_EtaIntercalibration_Stat196: 1.04321420e-11 syst_JES_EtaIntercalibration_Stat197: 0.0 - syst_JES_EtaIntercalibration_Stat198: 5.285691126049648e-11 - syst_JES_EtaIntercalibration_Stat199: 1.2527740335252003e-09 + syst_JES_EtaIntercalibration_Stat198: 5.28569113e-11 + syst_JES_EtaIntercalibration_Stat199: 1.25277403e-09 syst_JES_EtaIntercalibration_Stat2: 0.0 syst_JES_EtaIntercalibration_Stat20: 0.0 - syst_JES_EtaIntercalibration_Stat200: 2.2533981006471093e-10 - syst_JES_EtaIntercalibration_Stat201: 3.66588908042783e-10 - syst_JES_EtaIntercalibration_Stat202: 6.879705807663581e-10 - syst_JES_EtaIntercalibration_Stat203: 4.144534121475537e-10 + syst_JES_EtaIntercalibration_Stat200: 2.25339810e-10 + syst_JES_EtaIntercalibration_Stat201: 3.66588908e-10 + syst_JES_EtaIntercalibration_Stat202: 6.87970581e-10 + syst_JES_EtaIntercalibration_Stat203: 4.14453412e-10 syst_JES_EtaIntercalibration_Stat204: 0.0 syst_JES_EtaIntercalibration_Stat205: 0.0 - syst_JES_EtaIntercalibration_Stat206: 2.441606233609343e-10 - syst_JES_EtaIntercalibration_Stat207: 3.215854702874494e-10 - syst_JES_EtaIntercalibration_Stat208: 6.644146897834214e-10 - syst_JES_EtaIntercalibration_Stat209: 3.8096457512477457e-10 + syst_JES_EtaIntercalibration_Stat206: 2.44160623e-10 + syst_JES_EtaIntercalibration_Stat207: 3.21585470e-10 + syst_JES_EtaIntercalibration_Stat208: 6.64414690e-10 + syst_JES_EtaIntercalibration_Stat209: 3.80964575e-10 syst_JES_EtaIntercalibration_Stat21: 0.0 - syst_JES_EtaIntercalibration_Stat210: 4.0417405594619746e-10 - syst_JES_EtaIntercalibration_Stat211: 4.044338635673329e-10 - syst_JES_EtaIntercalibration_Stat212: 5.624604786116088e-11 - syst_JES_EtaIntercalibration_Stat213: 1.2054207595275602e-09 - syst_JES_EtaIntercalibration_Stat214: 3.4212279959102403e-10 - syst_JES_EtaIntercalibration_Stat215: 7.534483044642148e-10 - syst_JES_EtaIntercalibration_Stat216: 4.163339486518004e-10 + syst_JES_EtaIntercalibration_Stat210: 4.04174056e-10 + syst_JES_EtaIntercalibration_Stat211: 4.04433864e-10 + syst_JES_EtaIntercalibration_Stat212: 5.62460479e-11 + syst_JES_EtaIntercalibration_Stat213: 1.20542076e-09 + syst_JES_EtaIntercalibration_Stat214: 3.42122800e-10 + syst_JES_EtaIntercalibration_Stat215: 7.53448304e-10 + syst_JES_EtaIntercalibration_Stat216: 4.16333949e-10 syst_JES_EtaIntercalibration_Stat217: 0.0 syst_JES_EtaIntercalibration_Stat218: 0.0 - syst_JES_EtaIntercalibration_Stat219: 2.411252593570404e-10 + syst_JES_EtaIntercalibration_Stat219: 2.41125259e-10 syst_JES_EtaIntercalibration_Stat22: 0.0 - syst_JES_EtaIntercalibration_Stat220: 3.998750000625196e-10 - syst_JES_EtaIntercalibration_Stat221: 4.3057327773562536e-10 - syst_JES_EtaIntercalibration_Stat222: 3.8096457512477457e-10 - syst_JES_EtaIntercalibration_Stat223: 3.667457322287473e-10 - syst_JES_EtaIntercalibration_Stat224: 4.380614882639195e-10 - syst_JES_EtaIntercalibration_Stat225: 5.391946842282479e-10 - syst_JES_EtaIntercalibration_Stat226: 2.756738834202471e-09 - syst_JES_EtaIntercalibration_Stat227: 2.641218800099681e-09 - syst_JES_EtaIntercalibration_Stat228: 4.0738146137864444e-10 + syst_JES_EtaIntercalibration_Stat220: 3.99875000e-10 + syst_JES_EtaIntercalibration_Stat221: 4.30573278e-10 + syst_JES_EtaIntercalibration_Stat222: 3.80964575e-10 + syst_JES_EtaIntercalibration_Stat223: 3.66745732e-10 + syst_JES_EtaIntercalibration_Stat224: 4.38061488e-10 + syst_JES_EtaIntercalibration_Stat225: 5.39194684e-10 + syst_JES_EtaIntercalibration_Stat226: 2.75673883e-09 + syst_JES_EtaIntercalibration_Stat227: 2.64121880e-09 + syst_JES_EtaIntercalibration_Stat228: 4.07381461e-10 syst_JES_EtaIntercalibration_Stat229: 0.0 syst_JES_EtaIntercalibration_Stat23: 0.0 syst_JES_EtaIntercalibration_Stat230: 0.0 - syst_JES_EtaIntercalibration_Stat231: 4.819753831888097e-10 - syst_JES_EtaIntercalibration_Stat232: 1.2964400294653045e-09 - syst_JES_EtaIntercalibration_Stat233: 2.5200013392853587e-09 - syst_JES_EtaIntercalibration_Stat234: 1.2272259816350044e-09 - syst_JES_EtaIntercalibration_Stat235: 4.712265352248321e-10 - syst_JES_EtaIntercalibration_Stat236: 2.2585942530698162e-10 - syst_JES_EtaIntercalibration_Stat237: 4.804708940196066e-10 - syst_JES_EtaIntercalibration_Stat238: 6.929935281083077e-10 - syst_JES_EtaIntercalibration_Stat239: 8.101667652403423e-12 + syst_JES_EtaIntercalibration_Stat231: 4.81975383e-10 + syst_JES_EtaIntercalibration_Stat232: 1.29644003e-09 + syst_JES_EtaIntercalibration_Stat233: 2.52000134e-09 + syst_JES_EtaIntercalibration_Stat234: 1.22722598e-09 + syst_JES_EtaIntercalibration_Stat235: 4.71226535e-10 + syst_JES_EtaIntercalibration_Stat236: 2.25859425e-10 + syst_JES_EtaIntercalibration_Stat237: 4.80470894e-10 + syst_JES_EtaIntercalibration_Stat238: 6.92993528e-10 + syst_JES_EtaIntercalibration_Stat239: 8.10166765e-12 syst_JES_EtaIntercalibration_Stat24: 0.0 syst_JES_EtaIntercalibration_Stat240: 0.0 syst_JES_EtaIntercalibration_Stat241: 0.0 - syst_JES_EtaIntercalibration_Stat242: 8.989696032124779e-12 - syst_JES_EtaIntercalibration_Stat243: 5.321726106255376e-11 - syst_JES_EtaIntercalibration_Stat244: 4.790852533735515e-11 - syst_JES_EtaIntercalibration_Stat245: 3.813975878266668e-10 + syst_JES_EtaIntercalibration_Stat242: 8.98969603e-12 + syst_JES_EtaIntercalibration_Stat243: 5.32172611e-11 + syst_JES_EtaIntercalibration_Stat244: 4.79085253e-11 + syst_JES_EtaIntercalibration_Stat245: 3.81397588e-10 syst_JES_EtaIntercalibration_Stat25: 0.0 syst_JES_EtaIntercalibration_Stat26: 0.0 syst_JES_EtaIntercalibration_Stat27: 0.0 @@ -29172,7 +29172,7 @@ bins: syst_JES_EtaIntercalibration_Stat33: 0.0 syst_JES_EtaIntercalibration_Stat34: 0.0 syst_JES_EtaIntercalibration_Stat35: 0.0 - syst_JES_EtaIntercalibration_Stat36: 9.844976790221498e-12 + syst_JES_EtaIntercalibration_Stat36: 9.84497679e-12 syst_JES_EtaIntercalibration_Stat37: 0.0 syst_JES_EtaIntercalibration_Stat38: 0.0 syst_JES_EtaIntercalibration_Stat39: 0.0 @@ -29196,7 +29196,7 @@ bins: syst_JES_EtaIntercalibration_Stat55: 0.0 syst_JES_EtaIntercalibration_Stat56: 0.0 syst_JES_EtaIntercalibration_Stat57: 0.0 - syst_JES_EtaIntercalibration_Stat58: 9.844976790221498e-12 + syst_JES_EtaIntercalibration_Stat58: 9.84497679e-12 syst_JES_EtaIntercalibration_Stat59: 0.0 syst_JES_EtaIntercalibration_Stat6: 0.0 syst_JES_EtaIntercalibration_Stat60: 0.0 @@ -29242,44 +29242,44 @@ bins: syst_JES_EtaIntercalibration_Stat97: 0.0 syst_JES_EtaIntercalibration_Stat98: 0.0 syst_JES_EtaIntercalibration_Stat99: 0.0 - syst_JES_EtaIntercalibration_TotalStat_MJB: 1.051550287670542e-07 - syst_JES_Flavour_Comp: 8.731903973361137e-08 - syst_JES_Flavour_Response: 1.067560165751795e-07 - syst_JES_Gjet_Generator: 2.059480699108394e-07 - syst_JES_Gjet_OOC: 1.662543458078615e-07 - syst_JES_Gjet_Purity: 2.5634351952019386e-09 + syst_JES_EtaIntercalibration_TotalStat_MJB: 1.05155029e-07 + syst_JES_Flavour_Comp: 8.73190397e-08 + syst_JES_Flavour_Response: 1.06756017e-07 + syst_JES_Gjet_Generator: 2.05948070e-07 + syst_JES_Gjet_OOC: 1.66254346e-07 + syst_JES_Gjet_Purity: 2.56343520e-09 syst_JES_Gjet_Stat1: 0.0 - syst_JES_Gjet_Stat10: 1.107993568347759e-08 - syst_JES_Gjet_Stat11: 1.0461455479521001e-08 - syst_JES_Gjet_Stat12: 3.4308752163260027e-09 - syst_JES_Gjet_Stat13: 4.543588312116317e-08 - syst_JES_Gjet_Stat14: 1.4951310979308806e-07 - syst_JES_Gjet_Stat15: 2.396566450153219e-07 - syst_JES_Gjet_Stat2: 3.035419040264457e-10 + syst_JES_Gjet_Stat10: 1.10799357e-08 + syst_JES_Gjet_Stat11: 1.04614555e-08 + syst_JES_Gjet_Stat12: 3.43087522e-09 + syst_JES_Gjet_Stat13: 4.54358831e-08 + syst_JES_Gjet_Stat14: 1.49513110e-07 + syst_JES_Gjet_Stat15: 2.39656645e-07 + syst_JES_Gjet_Stat2: 3.03541904e-10 syst_JES_Gjet_Stat3: 0.0 syst_JES_Gjet_Stat4: 0.0 syst_JES_Gjet_Stat5: 0.0 - syst_JES_Gjet_Stat6: 1.8725394521878576e-09 - syst_JES_Gjet_Stat7: 3.677365735142481e-09 + syst_JES_Gjet_Stat6: 1.87253945e-09 + syst_JES_Gjet_Stat7: 3.67736574e-09 syst_JES_Gjet_Stat8: 0.0 - syst_JES_Gjet_Stat9: 3.677365735142481e-09 - syst_JES_Gjet_Veto: 2.0083577246098366e-07 - syst_JES_Gjet_dPhi: 7.367751675375603e-09 - syst_JES_LArESZee: 2.742373424608691e-07 - syst_JES_LArEsmear: 2.2354746140361336e-08 - syst_JES_LAr_JVT: 3.354480512314835e-08 - syst_JES_MJB_Alpha: 3.496262969228717e-09 - syst_JES_MJB_Asym: 1.5465040413784893e-07 - syst_JES_MJB_Beta: 1.1480473454958207e-08 - syst_JES_MJB_Fragmentation: 3.196134344798416e-08 + syst_JES_Gjet_Stat9: 3.67736574e-09 + syst_JES_Gjet_Veto: 2.00835772e-07 + syst_JES_Gjet_dPhi: 7.36775168e-09 + syst_JES_LArESZee: 2.74237342e-07 + syst_JES_LArEsmear: 2.23547461e-08 + syst_JES_LAr_JVT: 3.35448051e-08 + syst_JES_MJB_Alpha: 3.49626297e-09 + syst_JES_MJB_Asym: 1.54650404e-07 + syst_JES_MJB_Beta: 1.14804735e-08 + syst_JES_MJB_Fragmentation: 3.19613434e-08 syst_JES_MJB_Stat1: 0.0 - syst_JES_MJB_Stat10: 6.009072370174951e-10 - syst_JES_MJB_Stat11: 6.469370351896697e-10 - syst_JES_MJB_Stat12: 1.088677384490006e-09 - syst_JES_MJB_Stat13: 1.4805269222476164e-09 - syst_JES_MJB_Stat14: 3.380124664860751e-08 - syst_JES_MJB_Stat15: 6.664107198267446e-08 - syst_JES_MJB_Stat16: 1.118609569957275e-07 + syst_JES_MJB_Stat10: 6.00907237e-10 + syst_JES_MJB_Stat11: 6.46937035e-10 + syst_JES_MJB_Stat12: 1.08867738e-09 + syst_JES_MJB_Stat13: 1.48052692e-09 + syst_JES_MJB_Stat14: 3.38012466e-08 + syst_JES_MJB_Stat15: 6.66410720e-08 + syst_JES_MJB_Stat16: 1.11860957e-07 syst_JES_MJB_Stat2: 0.0 syst_JES_MJB_Stat3: 0.0 syst_JES_MJB_Stat4: 0.0 @@ -29287,53 +29287,53 @@ bins: syst_JES_MJB_Stat6: 0.0 syst_JES_MJB_Stat7: 0.0 syst_JES_MJB_Stat8: 0.0 - syst_JES_MJB_Stat9: 2.6171287702365736e-10 - syst_JES_MJB_Threshold: 3.2636890170480397e-08 - syst_JES_Pileup_MuOffset: 7.467198336725764e-08 - syst_JES_Pileup_NPVOffset: 5.03829740587036e-08 - syst_JES_Pileup_Pt_term: 1.914451365274135e-08 - syst_JES_Pileup_Rho_topology: 7.750639199446715e-08 - syst_JES_PunchThrough_MC15: 1.6041517228741176e-07 - syst_JES_SingleParticle_HighPt: 2.830259837894747e-09 - syst_JES_Zjet_MC: 7.746720386718498e-08 - syst_JES_Zjet_MuScale: 6.3958937608437496e-09 + syst_JES_MJB_Stat9: 2.61712877e-10 + syst_JES_MJB_Threshold: 3.26368902e-08 + syst_JES_Pileup_MuOffset: 7.46719834e-08 + syst_JES_Pileup_NPVOffset: 5.03829741e-08 + syst_JES_Pileup_Pt_term: 1.91445137e-08 + syst_JES_Pileup_Rho_topology: 7.75063920e-08 + syst_JES_PunchThrough_MC15: 1.60415172e-07 + syst_JES_SingleParticle_HighPt: 2.83025984e-09 + syst_JES_Zjet_MC: 7.74672039e-08 + syst_JES_Zjet_MuScale: 6.39589376e-09 syst_JES_Zjet_MuSmearID: 0.0 - syst_JES_Zjet_MuSmearMS: 1.1697932242494826e-08 - syst_JES_Zjet_OOC: 3.903021521846888e-08 - syst_JES_Zjet_Stat1: 6.011333795423441e-09 - syst_JES_Zjet_Stat10: 3.78156025999851e-09 - syst_JES_Zjet_Stat11: 2.8400200703516167e-09 - syst_JES_Zjet_Stat12: 7.923464188724524e-09 - syst_JES_Zjet_Stat13: 1.3864061481037942e-08 + syst_JES_Zjet_MuSmearMS: 1.16979322e-08 + syst_JES_Zjet_OOC: 3.90302152e-08 + syst_JES_Zjet_Stat1: 6.01133380e-09 + syst_JES_Zjet_Stat10: 3.78156026e-09 + syst_JES_Zjet_Stat11: 2.84002007e-09 + syst_JES_Zjet_Stat12: 7.92346419e-09 + syst_JES_Zjet_Stat13: 1.38640615e-08 syst_JES_Zjet_Stat2: 0.0 - syst_JES_Zjet_Stat3: 9.31843334472056e-10 - syst_JES_Zjet_Stat4: 1.234086200392825e-09 - syst_JES_Zjet_Stat5: 8.998003945320318e-10 - syst_JES_Zjet_Stat6: 1.8848342015944002e-09 - syst_JES_Zjet_Stat7: 2.0543906030743034e-09 - syst_JES_Zjet_Stat8: 1.0542993265671755e-09 - syst_JES_Zjet_Stat9: 3.6500781840941433e-09 + syst_JES_Zjet_Stat3: 9.31843334e-10 + syst_JES_Zjet_Stat4: 1.23408620e-09 + syst_JES_Zjet_Stat5: 8.99800395e-10 + syst_JES_Zjet_Stat6: 1.88483420e-09 + syst_JES_Zjet_Stat7: 2.05439060e-09 + syst_JES_Zjet_Stat8: 1.05429933e-09 + syst_JES_Zjet_Stat9: 3.65007818e-09 syst_JES_Zjet_Veto: 0.0 - syst_JES_Zjet_dPhi: 5.785512315257829e-09 + syst_JES_Zjet_dPhi: 5.78551232e-09 syst_PRW: 0.0 - syst_Unfolding_bias: 2.348e-25 - syst_cleaning: 3.235470908538662e-08 + syst_Unfolding_bias: 2.34800000e-25 + syst_cleaning: 3.23547091e-08 syst_lumi: 6.54e-08 - stat: 2.9678 syst_JER_CROSS_CALIB_FORWARD: 0.1634 syst_JER_NOISE_FORWARD: 0.08342 - syst_JER_NP0: 1.8084031630142652 - syst_JER_NP1: 0.3352367036886027 - syst_JER_NP2: 0.1804745619194018 - syst_JER_NP3: 0.34095534531665583 + syst_JER_NP0: 1.80840316e+00 + syst_JER_NP1: 3.35236704e-01 + syst_JER_NP2: 1.80474562e-01 + syst_JER_NP3: 3.40955345e-01 syst_JER_NP4: 0.0 syst_JER_NP5: 0.0 syst_JER_NP6: 0.0 - syst_JER_NP7: 0.006200796239193802 - syst_JER_NP8: 0.22145737738896845 - syst_JES_EtaIntercalibration_Modelling: 4.03256383303476 - syst_JES_EtaIntercalibration_NonClosure: 1.6890099910894547 - syst_JES_EtaIntercalibration_Stat0: 1.495323710773022 + syst_JER_NP7: 6.20079624e-03 + syst_JER_NP8: 2.21457377e-01 + syst_JES_EtaIntercalibration_Modelling: 4.03256383e+00 + syst_JES_EtaIntercalibration_NonClosure: 1.68900999e+00 + syst_JES_EtaIntercalibration_Stat0: 1.49532371e+00 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 syst_JES_EtaIntercalibration_Stat100: 0.0 @@ -29580,36 +29580,36 @@ bins: syst_JES_EtaIntercalibration_Stat98: 0.0 syst_JES_EtaIntercalibration_Stat99: 0.0 syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0 - syst_JES_Flavour_Comp: 0.2854607284724117 - syst_JES_Flavour_Response: 5.194043319033834 - syst_JES_Gjet_Generator: 3.1442793689492667 - syst_JES_Gjet_OOC: 1.9810683986172712 - syst_JES_Gjet_Purity: 0.7676713147565173 - syst_JES_Gjet_Stat1: 0.007642946601278854 - syst_JES_Gjet_Stat10: 0.03661555407200606 - syst_JES_Gjet_Stat11: 3.824916540530065e-07 - syst_JES_Gjet_Stat12: 0.0011948784205934929 - syst_JES_Gjet_Stat13: 1.4826354912789589e-05 - syst_JES_Gjet_Stat14: 5.511385669684167e-07 + syst_JES_Flavour_Comp: 2.85460728e-01 + syst_JES_Flavour_Response: 5.19404332e+00 + syst_JES_Gjet_Generator: 3.14427937e+00 + syst_JES_Gjet_OOC: 1.98106840e+00 + syst_JES_Gjet_Purity: 7.67671315e-01 + syst_JES_Gjet_Stat1: 7.64294660e-03 + syst_JES_Gjet_Stat10: 3.66155541e-02 + syst_JES_Gjet_Stat11: 3.82491654e-07 + syst_JES_Gjet_Stat12: 1.19487842e-03 + syst_JES_Gjet_Stat13: 1.48263549e-05 + syst_JES_Gjet_Stat14: 5.51138567e-07 syst_JES_Gjet_Stat15: 0.0 - syst_JES_Gjet_Stat2: 0.0019372988282657891 - syst_JES_Gjet_Stat3: 0.036753724981285915 - syst_JES_Gjet_Stat4: 0.04693777476617314 - syst_JES_Gjet_Stat5: 0.07420985985702978 - syst_JES_Gjet_Stat6: 0.15144984912504864 - syst_JES_Gjet_Stat7: 0.2204783152602541 - syst_JES_Gjet_Stat8: 0.07173286833802199 - syst_JES_Gjet_Stat9: 0.05613175816772533 - syst_JES_Gjet_Veto: 0.569767399909823 - syst_JES_Gjet_dPhi: 0.2882404725225102 - syst_JES_LArESZee: 2.0483893672834763 - syst_JES_LArEsmear: 0.14235745572326022 - syst_JES_LAr_JVT: 0.31271103274428935 - syst_JES_MJB_Alpha: 7.963103587797912e-06 + syst_JES_Gjet_Stat2: 1.93729883e-03 + syst_JES_Gjet_Stat3: 3.67537250e-02 + syst_JES_Gjet_Stat4: 4.69377748e-02 + syst_JES_Gjet_Stat5: 7.42098599e-02 + syst_JES_Gjet_Stat6: 1.51449849e-01 + syst_JES_Gjet_Stat7: 2.20478315e-01 + syst_JES_Gjet_Stat8: 7.17328683e-02 + syst_JES_Gjet_Stat9: 5.61317582e-02 + syst_JES_Gjet_Veto: 5.69767400e-01 + syst_JES_Gjet_dPhi: 2.88240473e-01 + syst_JES_LArESZee: 2.04838937e+00 + syst_JES_LArEsmear: 1.42357456e-01 + syst_JES_LAr_JVT: 3.12711033e-01 + syst_JES_MJB_Alpha: 7.96310359e-06 syst_JES_MJB_Asym: 0.0 - syst_JES_MJB_Beta: 4.129209125244203e-24 - syst_JES_MJB_Fragmentation: 0.004793314595089707 - syst_JES_MJB_Stat1: 6.3479662097399355e-06 + syst_JES_MJB_Beta: 4.12920913e-24 + syst_JES_MJB_Fragmentation: 4.79331460e-03 + syst_JES_MJB_Stat1: 6.34796621e-06 syst_JES_MJB_Stat10: 0.0 syst_JES_MJB_Stat11: 0.0 syst_JES_MJB_Stat12: 0.0 @@ -29617,60 +29617,60 @@ bins: syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 0.00014643116543533346 - syst_JES_MJB_Stat3: 1.8400923226629147e-06 + syst_JES_MJB_Stat2: 1.46431165e-04 + syst_JES_MJB_Stat3: 1.84009232e-06 syst_JES_MJB_Stat4: 0.0 - syst_JES_MJB_Stat5: 3.219882451270543e-24 - syst_JES_MJB_Stat6: 1.4427983222565625e-24 + syst_JES_MJB_Stat5: 3.21988245e-24 + syst_JES_MJB_Stat6: 1.44279832e-24 syst_JES_MJB_Stat7: 0.0 syst_JES_MJB_Stat8: 0.0 syst_JES_MJB_Stat9: 0.0 - syst_JES_MJB_Threshold: 9.569580711806599e-32 - syst_JES_Pileup_MuOffset: 6.8805718330673655e-43 - syst_JES_Pileup_NPVOffset: 0.24062183504412063 - syst_JES_Pileup_Pt_term: 0.9914035240506259 - syst_JES_Pileup_Rho_topology: 1.7245639303893607 - syst_JES_PunchThrough_MC15: 1.2678611911404183e-05 + syst_JES_MJB_Threshold: 9.56958071e-32 + syst_JES_Pileup_MuOffset: 6.88057183e-43 + syst_JES_Pileup_NPVOffset: 2.40621835e-01 + syst_JES_Pileup_Pt_term: 9.91403524e-01 + syst_JES_Pileup_Rho_topology: 1.72456393e+00 + syst_JES_PunchThrough_MC15: 1.26786119e-05 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 2.983524216425937 - syst_JES_Zjet_MuScale: 0.1677262948973714 - syst_JES_Zjet_MuSmearID: 0.021776994099278257 - syst_JES_Zjet_MuSmearMS: 0.15154411898849784 - syst_JES_Zjet_OOC: 2.0750693964299125 - syst_JES_Zjet_Stat1: 0.048553329442994946 - syst_JES_Zjet_Stat10: 0.1733078474853346 - syst_JES_Zjet_Stat11: 0.07232239694589775 - syst_JES_Zjet_Stat12: 0.0034253902307447605 - syst_JES_Zjet_Stat13: 0.00476536313070683 - syst_JES_Zjet_Stat2: 0.007319678277082948 - syst_JES_Zjet_Stat3: 0.006714294955540753 - syst_JES_Zjet_Stat4: 0.010495361868463612 - syst_JES_Zjet_Stat5: 0.04233848692383799 - syst_JES_Zjet_Stat6: 0.10683683950304781 - syst_JES_Zjet_Stat7: 0.1445496754579546 - syst_JES_Zjet_Stat8: 0.19952956547840223 - syst_JES_Zjet_Stat9: 0.19454800821391105 - syst_JES_Zjet_Veto: 0.26421644536250954 - syst_JES_Zjet_dPhi: 0.4168095968184994 + syst_JES_Zjet_MC: 2.98352422e+00 + syst_JES_Zjet_MuScale: 1.67726295e-01 + syst_JES_Zjet_MuSmearID: 2.17769941e-02 + syst_JES_Zjet_MuSmearMS: 1.51544119e-01 + syst_JES_Zjet_OOC: 2.07506940e+00 + syst_JES_Zjet_Stat1: 4.85533294e-02 + syst_JES_Zjet_Stat10: 1.73307847e-01 + syst_JES_Zjet_Stat11: 7.23223969e-02 + syst_JES_Zjet_Stat12: 3.42539023e-03 + syst_JES_Zjet_Stat13: 4.76536313e-03 + syst_JES_Zjet_Stat2: 7.31967828e-03 + syst_JES_Zjet_Stat3: 6.71429496e-03 + syst_JES_Zjet_Stat4: 1.04953619e-02 + syst_JES_Zjet_Stat5: 4.23384869e-02 + syst_JES_Zjet_Stat6: 1.06836840e-01 + syst_JES_Zjet_Stat7: 1.44549675e-01 + syst_JES_Zjet_Stat8: 1.99529565e-01 + syst_JES_Zjet_Stat9: 1.94548008e-01 + syst_JES_Zjet_Veto: 2.64216445e-01 + syst_JES_Zjet_dPhi: 4.16809597e-01 syst_PRW: 0.0 syst_Unfolding_bias: 0.0 - syst_cleaning: 1.7701559253353927 + syst_cleaning: 1.77015593e+00 syst_lumi: 2.975 - stat: 1.643 syst_JER_CROSS_CALIB_FORWARD: 0.04059 syst_JER_NOISE_FORWARD: 0.04452 - syst_JER_NP0: 0.8278532644738439 - syst_JER_NP1: 0.130472980727812 - syst_JER_NP2: 0.09210866354475024 - syst_JER_NP3: 0.19007159177530975 + syst_JER_NP0: 8.27853264e-01 + syst_JER_NP1: 1.30472981e-01 + syst_JER_NP2: 9.21086635e-02 + syst_JER_NP3: 1.90071592e-01 syst_JER_NP4: 0.0 syst_JER_NP5: 0.0 syst_JER_NP6: 0.0 - syst_JER_NP7: 0.0003899899325623676 - syst_JER_NP8: 0.09531135976367142 - syst_JES_EtaIntercalibration_Modelling: 2.122534039774156 - syst_JES_EtaIntercalibration_NonClosure: 0.9679097620646255 - syst_JES_EtaIntercalibration_Stat0: 0.9529203167106892 + syst_JER_NP7: 3.89989933e-04 + syst_JER_NP8: 9.53113598e-02 + syst_JES_EtaIntercalibration_Modelling: 2.12253404e+00 + syst_JES_EtaIntercalibration_NonClosure: 9.67909762e-01 + syst_JES_EtaIntercalibration_Stat0: 9.52920317e-01 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 syst_JES_EtaIntercalibration_Stat100: 0.0 @@ -29917,97 +29917,97 @@ bins: syst_JES_EtaIntercalibration_Stat98: 0.0 syst_JES_EtaIntercalibration_Stat99: 0.0 syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0 - syst_JES_Flavour_Comp: 0.17137300691765903 - syst_JES_Flavour_Response: 2.659895862623197 - syst_JES_Gjet_Generator: 1.7246984519039843 - syst_JES_Gjet_OOC: 1.0772778564511571 - syst_JES_Gjet_Purity: 0.45647493907113895 - syst_JES_Gjet_Stat1: 0.0014509409388434803 - syst_JES_Gjet_Stat10: 0.020524802069691195 - syst_JES_Gjet_Stat11: 9.765849149750112e-05 - syst_JES_Gjet_Stat12: 0.006099684172151867 - syst_JES_Gjet_Stat13: 0.0003641636822913564 - syst_JES_Gjet_Stat14: 9.736723614876645e-06 + syst_JES_Flavour_Comp: 1.71373007e-01 + syst_JES_Flavour_Response: 2.65989586e+00 + syst_JES_Gjet_Generator: 1.72469845e+00 + syst_JES_Gjet_OOC: 1.07727786e+00 + syst_JES_Gjet_Purity: 4.56474939e-01 + syst_JES_Gjet_Stat1: 1.45094094e-03 + syst_JES_Gjet_Stat10: 2.05248021e-02 + syst_JES_Gjet_Stat11: 9.76584915e-05 + syst_JES_Gjet_Stat12: 6.09968417e-03 + syst_JES_Gjet_Stat13: 3.64163682e-04 + syst_JES_Gjet_Stat14: 9.73672361e-06 syst_JES_Gjet_Stat15: 0.0 - syst_JES_Gjet_Stat2: 0.0010687619508103756 - syst_JES_Gjet_Stat3: 0.012086037398585197 - syst_JES_Gjet_Stat4: 0.01127432883811715 - syst_JES_Gjet_Stat5: 0.01977843459427464 - syst_JES_Gjet_Stat6: 0.07092141214048124 - syst_JES_Gjet_Stat7: 0.11949866892564119 - syst_JES_Gjet_Stat8: 0.03955923912311763 - syst_JES_Gjet_Stat9: 0.04337677719702099 - syst_JES_Gjet_Veto: 0.3520071128542717 - syst_JES_Gjet_dPhi: 0.1545437478515388 - syst_JES_LArESZee: 1.2251313766286456 - syst_JES_LArEsmear: 0.08035892903094217 - syst_JES_LAr_JVT: 0.21016072420887782 - syst_JES_MJB_Alpha: 3.890186113799698e-05 + syst_JES_Gjet_Stat2: 1.06876195e-03 + syst_JES_Gjet_Stat3: 1.20860374e-02 + syst_JES_Gjet_Stat4: 1.12743288e-02 + syst_JES_Gjet_Stat5: 1.97784346e-02 + syst_JES_Gjet_Stat6: 7.09214121e-02 + syst_JES_Gjet_Stat7: 1.19498669e-01 + syst_JES_Gjet_Stat8: 3.95592391e-02 + syst_JES_Gjet_Stat9: 4.33767772e-02 + syst_JES_Gjet_Veto: 3.52007113e-01 + syst_JES_Gjet_dPhi: 1.54543748e-01 + syst_JES_LArESZee: 1.22513138e+00 + syst_JES_LArEsmear: 8.03589290e-02 + syst_JES_LAr_JVT: 2.10160724e-01 + syst_JES_MJB_Alpha: 3.89018611e-05 syst_JES_MJB_Asym: 0.0 - syst_JES_MJB_Beta: 7.752659414678294e-17 - syst_JES_MJB_Fragmentation: 0.003414881085777366 - syst_JES_MJB_Stat1: 2.7262479711134125e-05 - syst_JES_MJB_Stat10: 7.32370553408587e-43 + syst_JES_MJB_Beta: 7.75265941e-17 + syst_JES_MJB_Fragmentation: 3.41488109e-03 + syst_JES_MJB_Stat1: 2.72624797e-05 + syst_JES_MJB_Stat10: 7.32370553e-43 syst_JES_MJB_Stat11: 0.0 syst_JES_MJB_Stat12: 0.0 syst_JES_MJB_Stat13: 0.0 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 0.0006108635204978278 - syst_JES_MJB_Stat3: 4.4954128957277105e-05 + syst_JES_MJB_Stat2: 6.10863520e-04 + syst_JES_MJB_Stat3: 4.49541290e-05 syst_JES_MJB_Stat4: 0.0 - syst_JES_MJB_Stat5: 6.044857318415381e-17 - syst_JES_MJB_Stat6: 2.7089272270747513e-17 - syst_JES_MJB_Stat7: 1.6082091748277025e-31 - syst_JES_MJB_Stat8: 9.465657663363915e-44 - syst_JES_MJB_Stat9: 7.32370553408587e-43 - syst_JES_MJB_Threshold: 5.03680374254153e-22 - syst_JES_Pileup_MuOffset: 3.34025998236434e-30 - syst_JES_Pileup_NPVOffset: 0.11865096628346522 - syst_JES_Pileup_Pt_term: 0.5618965563161958 - syst_JES_Pileup_Rho_topology: 0.9333503682969221 - syst_JES_PunchThrough_MC15: 0.0003114227352008841 + syst_JES_MJB_Stat5: 6.04485732e-17 + syst_JES_MJB_Stat6: 2.70892723e-17 + syst_JES_MJB_Stat7: 1.60820917e-31 + syst_JES_MJB_Stat8: 9.46565766e-44 + syst_JES_MJB_Stat9: 7.32370553e-43 + syst_JES_MJB_Threshold: 5.03680374e-22 + syst_JES_Pileup_MuOffset: 3.34025998e-30 + syst_JES_Pileup_NPVOffset: 1.18650966e-01 + syst_JES_Pileup_Pt_term: 5.61896556e-01 + syst_JES_Pileup_Rho_topology: 9.33350368e-01 + syst_JES_PunchThrough_MC15: 3.11422735e-04 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 1.5983604099201156 - syst_JES_Zjet_MuScale: 0.09507814299301391 - syst_JES_Zjet_MuSmearID: 0.012537716020372291 - syst_JES_Zjet_MuSmearMS: 0.09140557258723342 - syst_JES_Zjet_OOC: 1.0133423644060284 - syst_JES_Zjet_Stat1: 0.01132143701126319 - syst_JES_Zjet_Stat10: 0.15060714416985668 - syst_JES_Zjet_Stat11: 0.040656901858725045 - syst_JES_Zjet_Stat12: 0.0018894213772080806 - syst_JES_Zjet_Stat13: 0.0036099365926148892 - syst_JES_Zjet_Stat2: 0.0008346059169901685 - syst_JES_Zjet_Stat3: 0.004505930175890434 - syst_JES_Zjet_Stat4: 0.005789379824298972 - syst_JES_Zjet_Stat5: 0.010758157126106683 - syst_JES_Zjet_Stat6: 0.024668171800925984 - syst_JES_Zjet_Stat7: 0.053641777403438076 - syst_JES_Zjet_Stat8: 0.09875710341539994 - syst_JES_Zjet_Stat9: 0.11439878102497421 - syst_JES_Zjet_Veto: 0.13900274925338704 - syst_JES_Zjet_dPhi: 0.1880255501255082 + syst_JES_Zjet_MC: 1.59836041e+00 + syst_JES_Zjet_MuScale: 9.50781430e-02 + syst_JES_Zjet_MuSmearID: 1.25377160e-02 + syst_JES_Zjet_MuSmearMS: 9.14055726e-02 + syst_JES_Zjet_OOC: 1.01334236e+00 + syst_JES_Zjet_Stat1: 1.13214370e-02 + syst_JES_Zjet_Stat10: 1.50607144e-01 + syst_JES_Zjet_Stat11: 4.06569019e-02 + syst_JES_Zjet_Stat12: 1.88942138e-03 + syst_JES_Zjet_Stat13: 3.60993659e-03 + syst_JES_Zjet_Stat2: 8.34605917e-04 + syst_JES_Zjet_Stat3: 4.50593018e-03 + syst_JES_Zjet_Stat4: 5.78937982e-03 + syst_JES_Zjet_Stat5: 1.07581571e-02 + syst_JES_Zjet_Stat6: 2.46681718e-02 + syst_JES_Zjet_Stat7: 5.36417774e-02 + syst_JES_Zjet_Stat8: 9.87571034e-02 + syst_JES_Zjet_Stat9: 1.14398781e-01 + syst_JES_Zjet_Veto: 1.39002749e-01 + syst_JES_Zjet_dPhi: 1.88025550e-01 syst_PRW: 0.0 syst_Unfolding_bias: 0.0 - syst_cleaning: 0.8659388012440602 + syst_cleaning: 8.65938801e-01 syst_lumi: 1.641 - stat: 0.8156 syst_JER_CROSS_CALIB_FORWARD: 0.006011 syst_JER_NOISE_FORWARD: 0.02464 - syst_JER_NP0: 0.32994816259527804 - syst_JER_NP1: 0.054313560001163615 - syst_JER_NP2: 0.05001825866621108 - syst_JER_NP3: 0.09870429018031587 + syst_JER_NP0: 3.29948163e-01 + syst_JER_NP1: 5.43135600e-02 + syst_JER_NP2: 5.00182587e-02 + syst_JER_NP3: 9.87042902e-02 syst_JER_NP4: 0.0 syst_JER_NP5: 0.0 syst_JER_NP6: 0.0 - syst_JER_NP7: 2.1642302904265988e-05 - syst_JER_NP8: 0.04286921739430287 - syst_JES_EtaIntercalibration_Modelling: 1.105827376899306 - syst_JES_EtaIntercalibration_NonClosure: 0.5226862036633453 - syst_JES_EtaIntercalibration_Stat0: 0.5904321362358252 + syst_JER_NP7: 2.16423029e-05 + syst_JER_NP8: 4.28692174e-02 + syst_JES_EtaIntercalibration_Modelling: 1.10582738e+00 + syst_JES_EtaIntercalibration_NonClosure: 5.22686204e-01 + syst_JES_EtaIntercalibration_Stat0: 5.90432136e-01 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 syst_JES_EtaIntercalibration_Stat100: 0.0 @@ -30254,97 +30254,97 @@ bins: syst_JES_EtaIntercalibration_Stat98: 0.0 syst_JES_EtaIntercalibration_Stat99: 0.0 syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0 - syst_JES_Flavour_Comp: 0.10478802066553218 - syst_JES_Flavour_Response: 1.3583615056383187 - syst_JES_Gjet_Generator: 0.9435982871434221 - syst_JES_Gjet_OOC: 0.5863208933681283 - syst_JES_Gjet_Purity: 0.24768920041051448 - syst_JES_Gjet_Stat1: 0.000605069880261776 - syst_JES_Gjet_Stat10: 0.011424607126724315 - syst_JES_Gjet_Stat11: 0.0021602485968054692 - syst_JES_Gjet_Stat12: 0.0089203770789132 - syst_JES_Gjet_Stat13: 0.0015423912441400853 - syst_JES_Gjet_Stat14: 3.6251808680008654e-05 + syst_JES_Flavour_Comp: 1.04788021e-01 + syst_JES_Flavour_Response: 1.35836151e+00 + syst_JES_Gjet_Generator: 9.43598287e-01 + syst_JES_Gjet_OOC: 5.86320893e-01 + syst_JES_Gjet_Purity: 2.47689200e-01 + syst_JES_Gjet_Stat1: 6.05069880e-04 + syst_JES_Gjet_Stat10: 1.14246071e-02 + syst_JES_Gjet_Stat11: 2.16024860e-03 + syst_JES_Gjet_Stat12: 8.92037708e-03 + syst_JES_Gjet_Stat13: 1.54239124e-03 + syst_JES_Gjet_Stat14: 3.62518087e-05 syst_JES_Gjet_Stat15: 0.0 - syst_JES_Gjet_Stat2: 0.0005938336193749895 - syst_JES_Gjet_Stat3: 0.0026410082828344176 - syst_JES_Gjet_Stat4: 0.0016835509704193694 - syst_JES_Gjet_Stat5: 0.003014817241558765 - syst_JES_Gjet_Stat6: 0.040215736658676296 - syst_JES_Gjet_Stat7: 0.06117425193657868 - syst_JES_Gjet_Stat8: 0.021656640436595882 - syst_JES_Gjet_Stat9: 0.03259897794410126 - syst_JES_Gjet_Veto: 0.22044373431785264 - syst_JES_Gjet_dPhi: 0.08509416005226211 - syst_JES_LArESZee: 0.7319951690414357 - syst_JES_LArEsmear: 0.05688223272692449 - syst_JES_LAr_JVT: 0.12205120400880935 - syst_JES_MJB_Alpha: 7.032992304133427e-05 - syst_JES_MJB_Asym: 3.229408730712172e-39 - syst_JES_MJB_Beta: 8.90274115090403e-12 - syst_JES_MJB_Fragmentation: 0.0045818518090396596 - syst_JES_MJB_Stat1: 3.7905931923644886e-05 - syst_JES_MJB_Stat10: 6.878997969908117e-31 + syst_JES_Gjet_Stat2: 5.93833619e-04 + syst_JES_Gjet_Stat3: 2.64100828e-03 + syst_JES_Gjet_Stat4: 1.68355097e-03 + syst_JES_Gjet_Stat5: 3.01481724e-03 + syst_JES_Gjet_Stat6: 4.02157367e-02 + syst_JES_Gjet_Stat7: 6.11742519e-02 + syst_JES_Gjet_Stat8: 2.16566404e-02 + syst_JES_Gjet_Stat9: 3.25989779e-02 + syst_JES_Gjet_Veto: 2.20443734e-01 + syst_JES_Gjet_dPhi: 8.50941601e-02 + syst_JES_LArESZee: 7.31995169e-01 + syst_JES_LArEsmear: 5.68822327e-02 + syst_JES_LAr_JVT: 1.22051204e-01 + syst_JES_MJB_Alpha: 7.03299230e-05 + syst_JES_MJB_Asym: 3.22940873e-39 + syst_JES_MJB_Beta: 8.90274115e-12 + syst_JES_MJB_Fragmentation: 4.58185181e-03 + syst_JES_MJB_Stat1: 3.79059319e-05 + syst_JES_MJB_Stat10: 6.87899797e-31 syst_JES_MJB_Stat11: 0.0 syst_JES_MJB_Stat12: 0.0 syst_JES_MJB_Stat13: 0.0 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 0.0008348512127918364 - syst_JES_MJB_Stat3: 0.0001861478124367837 + syst_JES_MJB_Stat2: 8.34851213e-04 + syst_JES_MJB_Stat3: 1.86147812e-04 syst_JES_MJB_Stat4: 0.0 - syst_JES_MJB_Stat5: 6.941193611332275e-12 - syst_JES_MJB_Stat6: 3.11074219499948e-12 - syst_JES_MJB_Stat7: 2.670822345271209e-22 - syst_JES_MJB_Stat8: 5.999823997418591e-32 - syst_JES_MJB_Stat9: 6.843782068418017e-31 - syst_JES_MJB_Threshold: 4.494670871074828e-15 - syst_JES_Pileup_MuOffset: 5.546892679718892e-21 - syst_JES_Pileup_NPVOffset: 0.059387962374541865 - syst_JES_Pileup_Pt_term: 0.30500299588692564 - syst_JES_Pileup_Rho_topology: 0.4651674617812385 - syst_JES_PunchThrough_MC15: 0.0013189566899637001 + syst_JES_MJB_Stat5: 6.94119361e-12 + syst_JES_MJB_Stat6: 3.11074219e-12 + syst_JES_MJB_Stat7: 2.67082235e-22 + syst_JES_MJB_Stat8: 5.99982400e-32 + syst_JES_MJB_Stat9: 6.84378207e-31 + syst_JES_MJB_Threshold: 4.49467087e-15 + syst_JES_Pileup_MuOffset: 5.54689268e-21 + syst_JES_Pileup_NPVOffset: 5.93879624e-02 + syst_JES_Pileup_Pt_term: 3.05002996e-01 + syst_JES_Pileup_Rho_topology: 4.65167462e-01 + syst_JES_PunchThrough_MC15: 1.31895669e-03 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.8636150068172738 - syst_JES_Zjet_MuScale: 0.05822309915317116 - syst_JES_Zjet_MuSmearID: 0.007060626395233995 - syst_JES_Zjet_MuSmearMS: 0.055024447293907465 - syst_JES_Zjet_OOC: 0.4747196514786385 - syst_JES_Zjet_Stat1: 0.0016774408804783555 - syst_JES_Zjet_Stat10: 0.11778751748381489 - syst_JES_Zjet_Stat11: 0.022635812333556753 - syst_JES_Zjet_Stat12: 0.0011284759368280742 - syst_JES_Zjet_Stat13: 0.002357316853967663 - syst_JES_Zjet_Stat2: 5.9359113342013453e-05 - syst_JES_Zjet_Stat3: 0.002778209495340479 - syst_JES_Zjet_Stat4: 0.003216418349655405 - syst_JES_Zjet_Stat5: 0.0016200765745791156 - syst_JES_Zjet_Stat6: 0.0035006857542487302 - syst_JES_Zjet_Stat7: 0.019806714088914396 - syst_JES_Zjet_Stat8: 0.048709681789147426 - syst_JES_Zjet_Stat9: 0.07726937475481473 - syst_JES_Zjet_Veto: 0.07241905325948414 - syst_JES_Zjet_dPhi: 0.09146110252451584 + syst_JES_Zjet_MC: 8.63615007e-01 + syst_JES_Zjet_MuScale: 5.82230992e-02 + syst_JES_Zjet_MuSmearID: 7.06062640e-03 + syst_JES_Zjet_MuSmearMS: 5.50244473e-02 + syst_JES_Zjet_OOC: 4.74719651e-01 + syst_JES_Zjet_Stat1: 1.67744088e-03 + syst_JES_Zjet_Stat10: 1.17787517e-01 + syst_JES_Zjet_Stat11: 2.26358123e-02 + syst_JES_Zjet_Stat12: 1.12847594e-03 + syst_JES_Zjet_Stat13: 2.35731685e-03 + syst_JES_Zjet_Stat2: 5.93591133e-05 + syst_JES_Zjet_Stat3: 2.77820950e-03 + syst_JES_Zjet_Stat4: 3.21641835e-03 + syst_JES_Zjet_Stat5: 1.62007657e-03 + syst_JES_Zjet_Stat6: 3.50068575e-03 + syst_JES_Zjet_Stat7: 1.98067141e-02 + syst_JES_Zjet_Stat8: 4.87096818e-02 + syst_JES_Zjet_Stat9: 7.72693748e-02 + syst_JES_Zjet_Veto: 7.24190533e-02 + syst_JES_Zjet_dPhi: 9.14611025e-02 syst_PRW: 0.0 syst_Unfolding_bias: 0.0 - syst_cleaning: 0.4347447526997882 + syst_cleaning: 4.34744753e-01 syst_lumi: 0.9117 - stat: 0.4322 - syst_JER_CROSS_CALIB_FORWARD: 0.0005771 + syst_JER_CROSS_CALIB_FORWARD: 5.77100000e-04 syst_JER_NOISE_FORWARD: 0.013378 - syst_JER_NP0: 0.12870028622734295 - syst_JER_NP1: 0.026852785237289633 - syst_JER_NP2: 0.027059756096461773 - syst_JER_NP3: 0.04627460750778985 + syst_JER_NP0: 1.28700286e-01 + syst_JER_NP1: 2.68527852e-02 + syst_JER_NP2: 2.70597561e-02 + syst_JER_NP3: 4.62746075e-02 syst_JER_NP4: 0.0 syst_JER_NP5: 0.0 syst_JER_NP6: 0.0 - syst_JER_NP7: 1.1327913433196779e-06 - syst_JER_NP8: 0.0194811087980125 - syst_JES_EtaIntercalibration_Modelling: 0.6047273827932715 - syst_JES_EtaIntercalibration_NonClosure: 0.26708715337881755 - syst_JES_EtaIntercalibration_Stat0: 0.3473044881656441 + syst_JER_NP7: 1.13279134e-06 + syst_JER_NP8: 1.94811088e-02 + syst_JES_EtaIntercalibration_Modelling: 6.04727383e-01 + syst_JES_EtaIntercalibration_NonClosure: 2.67087153e-01 + syst_JES_EtaIntercalibration_Stat0: 3.47304488e-01 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 syst_JES_EtaIntercalibration_Stat100: 0.0 @@ -30591,97 +30591,97 @@ bins: syst_JES_EtaIntercalibration_Stat98: 0.0 syst_JES_EtaIntercalibration_Stat99: 0.0 syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0 - syst_JES_Flavour_Comp: 0.05710996497985268 - syst_JES_Flavour_Response: 0.711790685524895 - syst_JES_Gjet_Generator: 0.529214727213822 - syst_JES_Gjet_OOC: 0.31598998006265955 - syst_JES_Gjet_Purity: 0.11779958605614878 - syst_JES_Gjet_Stat1: 0.0002836384141825645 - syst_JES_Gjet_Stat10: 0.006206804068923072 - syst_JES_Gjet_Stat11: 0.00772374693720606 - syst_JES_Gjet_Stat12: 0.007610647590711319 - syst_JES_Gjet_Stat13: 0.002071532765857735 - syst_JES_Gjet_Stat14: 0.0002919054837372588 + syst_JES_Flavour_Comp: 5.71099650e-02 + syst_JES_Flavour_Response: 7.11790686e-01 + syst_JES_Gjet_Generator: 5.29214727e-01 + syst_JES_Gjet_OOC: 3.15989980e-01 + syst_JES_Gjet_Purity: 1.17799586e-01 + syst_JES_Gjet_Stat1: 2.83638414e-04 + syst_JES_Gjet_Stat10: 6.20680407e-03 + syst_JES_Gjet_Stat11: 7.72374694e-03 + syst_JES_Gjet_Stat12: 7.61064759e-03 + syst_JES_Gjet_Stat13: 2.07153277e-03 + syst_JES_Gjet_Stat14: 2.91905484e-04 syst_JES_Gjet_Stat15: 0.0 - syst_JES_Gjet_Stat2: 0.00032233465528856806 - syst_JES_Gjet_Stat3: 3.903146519156051e-05 - syst_JES_Gjet_Stat4: 0.00016318257014767232 - syst_JES_Gjet_Stat5: 0.00029323994867684725 - syst_JES_Gjet_Stat6: 0.021475789810854455 - syst_JES_Gjet_Stat7: 0.028615636896633982 - syst_JES_Gjet_Stat8: 0.010599085184580791 - syst_JES_Gjet_Stat9: 0.024005495844701893 - syst_JES_Gjet_Veto: 0.12592351676712338 - syst_JES_Gjet_dPhi: 0.048066240491638206 - syst_JES_LArESZee: 0.4519057949396091 - syst_JES_LArEsmear: 0.04189299644033594 - syst_JES_LAr_JVT: 0.06732381896476165 - syst_JES_MJB_Alpha: 6.690912269638573e-05 - syst_JES_MJB_Asym: 6.591319345767522e-28 - syst_JES_MJB_Beta: 1.9199783201901004e-08 - syst_JES_MJB_Fragmentation: 0.005335548716626997 - syst_JES_MJB_Stat1: 2.8284389687599767e-05 - syst_JES_MJB_Stat10: 3.114790951251785e-22 + syst_JES_Gjet_Stat2: 3.22334655e-04 + syst_JES_Gjet_Stat3: 3.90314652e-05 + syst_JES_Gjet_Stat4: 1.63182570e-04 + syst_JES_Gjet_Stat5: 2.93239949e-04 + syst_JES_Gjet_Stat6: 2.14757898e-02 + syst_JES_Gjet_Stat7: 2.86156369e-02 + syst_JES_Gjet_Stat8: 1.05990852e-02 + syst_JES_Gjet_Stat9: 2.40054958e-02 + syst_JES_Gjet_Veto: 1.25923517e-01 + syst_JES_Gjet_dPhi: 4.80662405e-02 + syst_JES_LArESZee: 4.51905795e-01 + syst_JES_LArEsmear: 4.18929964e-02 + syst_JES_LAr_JVT: 6.73238190e-02 + syst_JES_MJB_Alpha: 6.69091227e-05 + syst_JES_MJB_Asym: 6.59131935e-28 + syst_JES_MJB_Beta: 1.91997832e-08 + syst_JES_MJB_Fragmentation: 5.33554872e-03 + syst_JES_MJB_Stat1: 2.82843897e-05 + syst_JES_MJB_Stat10: 3.11479095e-22 syst_JES_MJB_Stat11: 0.0 syst_JES_MJB_Stat12: 0.0 syst_JES_MJB_Stat13: 0.0 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 0.0007428055785331718 - syst_JES_MJB_Stat3: 0.0002429078798124919 + syst_JES_MJB_Stat2: 7.42805579e-04 + syst_JES_MJB_Stat3: 2.42907880e-04 syst_JES_MJB_Stat4: 0.0 - syst_JES_MJB_Stat5: 1.4973579231432943e-08 - syst_JES_MJB_Stat6: 6.707838241764257e-09 - syst_JES_MJB_Stat7: 8.846449499658041e-16 - syst_JES_MJB_Stat8: 2.716721691671784e-23 - syst_JES_MJB_Stat9: 3.0989501621516926e-22 - syst_JES_MJB_Threshold: 2.692440705146746e-10 - syst_JES_Pileup_MuOffset: 1.8368384542213644e-14 - syst_JES_Pileup_NPVOffset: 0.03065135029652038 - syst_JES_Pileup_Pt_term: 0.16694367313558187 - syst_JES_Pileup_Rho_topology: 0.21418792566342296 - syst_JES_PunchThrough_MC15: 0.0017718879761429614 + syst_JES_MJB_Stat5: 1.49735792e-08 + syst_JES_MJB_Stat6: 6.70783824e-09 + syst_JES_MJB_Stat7: 8.84644950e-16 + syst_JES_MJB_Stat8: 2.71672169e-23 + syst_JES_MJB_Stat9: 3.09895016e-22 + syst_JES_MJB_Threshold: 2.69244071e-10 + syst_JES_Pileup_MuOffset: 1.83683845e-14 + syst_JES_Pileup_NPVOffset: 3.06513503e-02 + syst_JES_Pileup_Pt_term: 1.66943673e-01 + syst_JES_Pileup_Rho_topology: 2.14187926e-01 + syst_JES_PunchThrough_MC15: 1.77188798e-03 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.4755943965187143 - syst_JES_Zjet_MuScale: 0.03633195287897418 - syst_JES_Zjet_MuSmearID: 0.0038425578025643283 - syst_JES_Zjet_MuSmearMS: 0.03966728374870153 - syst_JES_Zjet_OOC: 0.21162084018356983 - syst_JES_Zjet_Stat1: 0.00016248057523285668 - syst_JES_Zjet_Stat10: 0.0715557340469651 - syst_JES_Zjet_Stat11: 0.012298997550613627 - syst_JES_Zjet_Stat12: 0.0033853262767420214 - syst_JES_Zjet_Stat13: 0.005774885398646453 - syst_JES_Zjet_Stat2: 4.121828581916041e-05 - syst_JES_Zjet_Stat3: 0.0015553816251968517 - syst_JES_Zjet_Stat4: 0.001747639264836997 - syst_JES_Zjet_Stat5: 0.00015697149804980523 - syst_JES_Zjet_Stat6: 0.0003291372206238608 - syst_JES_Zjet_Stat7: 0.0053364455164463176 - syst_JES_Zjet_Stat8: 0.020327016505134243 - syst_JES_Zjet_Stat9: 0.04531271896498818 - syst_JES_Zjet_Veto: 0.04024979378829164 - syst_JES_Zjet_dPhi: 0.051352901329915136 + syst_JES_Zjet_MC: 4.75594397e-01 + syst_JES_Zjet_MuScale: 3.63319529e-02 + syst_JES_Zjet_MuSmearID: 3.84255780e-03 + syst_JES_Zjet_MuSmearMS: 3.96672837e-02 + syst_JES_Zjet_OOC: 2.11620840e-01 + syst_JES_Zjet_Stat1: 1.62480575e-04 + syst_JES_Zjet_Stat10: 7.15557340e-02 + syst_JES_Zjet_Stat11: 1.22989976e-02 + syst_JES_Zjet_Stat12: 3.38532628e-03 + syst_JES_Zjet_Stat13: 5.77488540e-03 + syst_JES_Zjet_Stat2: 4.12182858e-05 + syst_JES_Zjet_Stat3: 1.55538163e-03 + syst_JES_Zjet_Stat4: 1.74763926e-03 + syst_JES_Zjet_Stat5: 1.56971498e-04 + syst_JES_Zjet_Stat6: 3.29137221e-04 + syst_JES_Zjet_Stat7: 5.33644552e-03 + syst_JES_Zjet_Stat8: 2.03270165e-02 + syst_JES_Zjet_Stat9: 4.53127190e-02 + syst_JES_Zjet_Veto: 4.02497938e-02 + syst_JES_Zjet_dPhi: 5.13529013e-02 syst_PRW: 0.0 syst_Unfolding_bias: 0.0 - syst_cleaning: 0.22057667034389652 + syst_cleaning: 2.20576670e-01 syst_lumi: 0.4952 - stat: 0.25534 - syst_JER_CROSS_CALIB_FORWARD: 4.333e-05 + syst_JER_CROSS_CALIB_FORWARD: 4.33300000e-05 syst_JER_NOISE_FORWARD: 0.007377 - syst_JER_NP0: 0.059720135632799765 - syst_JER_NP1: 0.014551448312796908 - syst_JER_NP2: 0.014918195492417975 - syst_JER_NP3: 0.022447485382554547 + syst_JER_NP0: 5.97201356e-02 + syst_JER_NP1: 1.45514483e-02 + syst_JER_NP2: 1.49181955e-02 + syst_JER_NP3: 2.24474854e-02 syst_JER_NP4: 0.0 syst_JER_NP5: 0.0 syst_JER_NP6: 0.0 - syst_JER_NP7: 6.243017119150002e-08 - syst_JER_NP8: 0.009703862632993112 - syst_JES_EtaIntercalibration_Modelling: 0.3518942561338562 - syst_JES_EtaIntercalibration_NonClosure: 0.13535909158604753 - syst_JES_EtaIntercalibration_Stat0: 0.19534033761617184 + syst_JER_NP7: 6.24301712e-08 + syst_JER_NP8: 9.70386263e-03 + syst_JES_EtaIntercalibration_Modelling: 3.51894256e-01 + syst_JES_EtaIntercalibration_NonClosure: 1.35359092e-01 + syst_JES_EtaIntercalibration_Stat0: 1.95340338e-01 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 syst_JES_EtaIntercalibration_Stat100: 0.0 @@ -30928,97 +30928,97 @@ bins: syst_JES_EtaIntercalibration_Stat98: 0.0 syst_JES_EtaIntercalibration_Stat99: 0.0 syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0 - syst_JES_Flavour_Comp: 0.032209136514349465 - syst_JES_Flavour_Response: 0.3891396021995191 - syst_JES_Gjet_Generator: 0.3078827171180611 - syst_JES_Gjet_OOC: 0.1754132477893275 - syst_JES_Gjet_Purity: 0.060461058541841625 - syst_JES_Gjet_Stat1: 0.0001222032937362983 - syst_JES_Gjet_Stat10: 0.003423052010998372 - syst_JES_Gjet_Stat11: 0.009572308969104581 - syst_JES_Gjet_Stat12: 0.005234012227727406 - syst_JES_Gjet_Stat13: 0.0015675061388706665 - syst_JES_Gjet_Stat14: 0.0004312845635966467 + syst_JES_Flavour_Comp: 3.22091365e-02 + syst_JES_Flavour_Response: 3.89139602e-01 + syst_JES_Gjet_Generator: 3.07882717e-01 + syst_JES_Gjet_OOC: 1.75413248e-01 + syst_JES_Gjet_Purity: 6.04610585e-02 + syst_JES_Gjet_Stat1: 1.22203294e-04 + syst_JES_Gjet_Stat10: 3.42305201e-03 + syst_JES_Gjet_Stat11: 9.57230897e-03 + syst_JES_Gjet_Stat12: 5.23401223e-03 + syst_JES_Gjet_Stat13: 1.56750614e-03 + syst_JES_Gjet_Stat14: 4.31284564e-04 syst_JES_Gjet_Stat15: 0.0 - syst_JES_Gjet_Stat2: 0.0001743309137818075 - syst_JES_Gjet_Stat3: 0.00015934719380020473 - syst_JES_Gjet_Stat4: 1.2328417051673748e-05 - syst_JES_Gjet_Stat5: 2.2143840565719396e-05 - syst_JES_Gjet_Stat6: 0.00787547184300725 - syst_JES_Gjet_Stat7: 0.01145976491905484 - syst_JES_Gjet_Stat8: 0.004300153442611089 - syst_JES_Gjet_Stat9: 0.015424495024149089 - syst_JES_Gjet_Veto: 0.07593143420218006 - syst_JES_Gjet_dPhi: 0.027110337511731575 - syst_JES_LArESZee: 0.2884824258078818 - syst_JES_LArEsmear: 0.025728355466294383 - syst_JES_LAr_JVT: 0.036981447713684765 - syst_JES_MJB_Alpha: 4.514590429928278e-05 - syst_JES_MJB_Asym: 9.27339915423459e-20 - syst_JES_MJB_Beta: 2.1581353062308212e-06 - syst_JES_MJB_Fragmentation: 0.0013221216160020984 - syst_JES_MJB_Stat1: 1.68961556278344e-05 - syst_JES_MJB_Stat10: 3.977307482141656e-16 + syst_JES_Gjet_Stat2: 1.74330914e-04 + syst_JES_Gjet_Stat3: 1.59347194e-04 + syst_JES_Gjet_Stat4: 1.23284171e-05 + syst_JES_Gjet_Stat5: 2.21438406e-05 + syst_JES_Gjet_Stat6: 7.87547184e-03 + syst_JES_Gjet_Stat7: 1.14597649e-02 + syst_JES_Gjet_Stat8: 4.30015344e-03 + syst_JES_Gjet_Stat9: 1.54244950e-02 + syst_JES_Gjet_Veto: 7.59314342e-02 + syst_JES_Gjet_dPhi: 2.71103375e-02 + syst_JES_LArESZee: 2.88482426e-01 + syst_JES_LArEsmear: 2.57283555e-02 + syst_JES_LAr_JVT: 3.69814477e-02 + syst_JES_MJB_Alpha: 4.51459043e-05 + syst_JES_MJB_Asym: 9.27339915e-20 + syst_JES_MJB_Beta: 2.15813531e-06 + syst_JES_MJB_Fragmentation: 1.32212162e-03 + syst_JES_MJB_Stat1: 1.68961556e-05 + syst_JES_MJB_Stat10: 3.97730748e-16 syst_JES_MJB_Stat11: 0.0 syst_JES_MJB_Stat12: 0.0 syst_JES_MJB_Stat13: 0.0 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 0.0005794107761338237 - syst_JES_MJB_Stat3: 0.0001864230272123055 + syst_JES_MJB_Stat2: 5.79410776e-04 + syst_JES_MJB_Stat3: 1.86423027e-04 syst_JES_MJB_Stat4: 0.0 - syst_JES_MJB_Stat5: 1.6826873595531642e-06 - syst_JES_MJB_Stat6: 7.524887039422917e-07 - syst_JES_MJB_Stat7: 2.6093345416025134e-11 - syst_JES_MJB_Stat8: 3.4692977675604606e-17 - syst_JES_MJB_Stat9: 3.957048774971064e-16 - syst_JES_MJB_Threshold: 3.722092134351728e-07 - syst_JES_Pileup_MuOffset: 5.418538735383809e-10 - syst_JES_Pileup_NPVOffset: 0.01720232542419774 - syst_JES_Pileup_Pt_term: 0.09888127426363397 - syst_JES_Pileup_Rho_topology: 0.11267121504625749 - syst_JES_PunchThrough_MC15: 0.001340607325058311 + syst_JES_MJB_Stat5: 1.68268736e-06 + syst_JES_MJB_Stat6: 7.52488704e-07 + syst_JES_MJB_Stat7: 2.60933454e-11 + syst_JES_MJB_Stat8: 3.46929777e-17 + syst_JES_MJB_Stat9: 3.95704877e-16 + syst_JES_MJB_Threshold: 3.72209213e-07 + syst_JES_Pileup_MuOffset: 5.41853874e-10 + syst_JES_Pileup_NPVOffset: 1.72023254e-02 + syst_JES_Pileup_Pt_term: 9.88812743e-02 + syst_JES_Pileup_Rho_topology: 1.12671215e-01 + syst_JES_PunchThrough_MC15: 1.34060733e-03 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.27466875959963116 - syst_JES_Zjet_MuScale: 0.020981913830725736 - syst_JES_Zjet_MuSmearID: 0.0021191157278019597 - syst_JES_Zjet_MuSmearMS: 0.02678089057518439 - syst_JES_Zjet_OOC: 0.10853657574753314 - syst_JES_Zjet_Stat1: 1.2269144713467194e-05 - syst_JES_Zjet_Stat10: 0.03626174568329551 - syst_JES_Zjet_Stat11: 0.006782756371859452 - syst_JES_Zjet_Stat12: 0.011617268525776617 - syst_JES_Zjet_Stat13: 0.003710638436644023 - syst_JES_Zjet_Stat2: 1.699003355678852e-05 - syst_JES_Zjet_Stat3: 0.0008648995707595189 - syst_JES_Zjet_Stat4: 0.0009635398642505664 - syst_JES_Zjet_Stat5: 1.1839785279725304e-05 - syst_JES_Zjet_Stat6: 2.446461679650838e-05 - syst_JES_Zjet_Stat7: 0.0019301045360290722 - syst_JES_Zjet_Stat8: 0.006724618873958583 - syst_JES_Zjet_Stat9: 0.02138422081816403 - syst_JES_Zjet_Veto: 0.022431051580342816 - syst_JES_Zjet_dPhi: 0.026405163794227825 + syst_JES_Zjet_MC: 2.74668760e-01 + syst_JES_Zjet_MuScale: 2.09819138e-02 + syst_JES_Zjet_MuSmearID: 2.11911573e-03 + syst_JES_Zjet_MuSmearMS: 2.67808906e-02 + syst_JES_Zjet_OOC: 1.08536576e-01 + syst_JES_Zjet_Stat1: 1.22691447e-05 + syst_JES_Zjet_Stat10: 3.62617457e-02 + syst_JES_Zjet_Stat11: 6.78275637e-03 + syst_JES_Zjet_Stat12: 1.16172685e-02 + syst_JES_Zjet_Stat13: 3.71063844e-03 + syst_JES_Zjet_Stat2: 1.69900336e-05 + syst_JES_Zjet_Stat3: 8.64899571e-04 + syst_JES_Zjet_Stat4: 9.63539864e-04 + syst_JES_Zjet_Stat5: 1.18397853e-05 + syst_JES_Zjet_Stat6: 2.44646168e-05 + syst_JES_Zjet_Stat7: 1.93010454e-03 + syst_JES_Zjet_Stat8: 6.72461887e-03 + syst_JES_Zjet_Stat9: 2.13842208e-02 + syst_JES_Zjet_Veto: 2.24310516e-02 + syst_JES_Zjet_dPhi: 2.64051638e-02 syst_PRW: 0.0 syst_Unfolding_bias: 0.0 - syst_cleaning: 0.1176928523743052 + syst_cleaning: 1.17692852e-01 syst_lumi: 0.2731 - stat: 0.13559 - syst_JER_CROSS_CALIB_FORWARD: 2.802e-06 + syst_JER_CROSS_CALIB_FORWARD: 2.80200000e-06 syst_JER_NOISE_FORWARD: 0.003997 - syst_JER_NP0: 0.0317458753226305 - syst_JER_NP1: 0.007865387848033941 - syst_JER_NP2: 0.008080763871689359 - syst_JER_NP3: 0.01150701771746268 + syst_JER_NP0: 3.17458753e-02 + syst_JER_NP1: 7.86538785e-03 + syst_JER_NP2: 8.08076387e-03 + syst_JER_NP3: 1.15070177e-02 syst_JER_NP4: 0.0 syst_JER_NP5: 0.0 syst_JER_NP6: 0.0 - syst_JER_NP7: 3.6885217906364604e-09 - syst_JER_NP8: 0.00509802557369027 - syst_JES_EtaIntercalibration_Modelling: 0.1934074197128952 - syst_JES_EtaIntercalibration_NonClosure: 0.06054112238800995 - syst_JES_EtaIntercalibration_Stat0: 0.09847630120998654 + syst_JER_NP7: 3.68852179e-09 + syst_JER_NP8: 5.09802557e-03 + syst_JES_EtaIntercalibration_Modelling: 1.93407420e-01 + syst_JES_EtaIntercalibration_NonClosure: 6.05411224e-02 + syst_JES_EtaIntercalibration_Stat0: 9.84763012e-02 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 syst_JES_EtaIntercalibration_Stat100: 0.0 @@ -31265,97 +31265,97 @@ bins: syst_JES_EtaIntercalibration_Stat98: 0.0 syst_JES_EtaIntercalibration_Stat99: 0.0 syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0 - syst_JES_Flavour_Comp: 0.018846492379220064 - syst_JES_Flavour_Response: 0.20017991907281812 - syst_JES_Gjet_Generator: 0.16554404247812723 - syst_JES_Gjet_OOC: 0.09719666287995694 - syst_JES_Gjet_Purity: 0.03227411462767027 - syst_JES_Gjet_Stat1: 4.911049251432936e-05 - syst_JES_Gjet_Stat10: 0.0018541603895024833 - syst_JES_Gjet_Stat11: 0.0069195453607878024 - syst_JES_Gjet_Stat12: 0.004227260578672671 - syst_JES_Gjet_Stat13: 0.0008811390687733407 - syst_JES_Gjet_Stat14: 0.00031302248896844455 + syst_JES_Flavour_Comp: 1.88464924e-02 + syst_JES_Flavour_Response: 2.00179919e-01 + syst_JES_Gjet_Generator: 1.65544042e-01 + syst_JES_Gjet_OOC: 9.71966629e-02 + syst_JES_Gjet_Purity: 3.22741146e-02 + syst_JES_Gjet_Stat1: 4.91104925e-05 + syst_JES_Gjet_Stat10: 1.85416039e-03 + syst_JES_Gjet_Stat11: 6.91954536e-03 + syst_JES_Gjet_Stat12: 4.22726058e-03 + syst_JES_Gjet_Stat13: 8.81139069e-04 + syst_JES_Gjet_Stat14: 3.13022489e-04 syst_JES_Gjet_Stat15: 0.0 - syst_JES_Gjet_Stat2: 8.4757906268383e-05 - syst_JES_Gjet_Stat3: 5.158072863614084e-05 - syst_JES_Gjet_Stat4: 7.996870079443582e-07 - syst_JES_Gjet_Stat5: 1.4359763333704354e-06 - syst_JES_Gjet_Stat6: 0.0023563063192208267 - syst_JES_Gjet_Stat7: 0.0035255431850992835 - syst_JES_Gjet_Stat8: 0.001242743183445397 - syst_JES_Gjet_Stat9: 0.006940645575160858 - syst_JES_Gjet_Veto: 0.04272096791974638 - syst_JES_Gjet_dPhi: 0.01286846381663328 - syst_JES_LArESZee: 0.16719858701556065 - syst_JES_LArEsmear: 0.013620311413473628 - syst_JES_LAr_JVT: 0.019490727923810337 - syst_JES_MJB_Alpha: 2.5764255762587052e-05 - syst_JES_MJB_Asym: 5.015119728925341e-14 - syst_JES_MJB_Beta: 2.767817190495066e-05 - syst_JES_MJB_Fragmentation: 0.0018183314074997439 - syst_JES_MJB_Stat1: 9.291586557203243e-06 - syst_JES_MJB_Stat10: 5.840305097338666e-12 + syst_JES_Gjet_Stat2: 8.47579063e-05 + syst_JES_Gjet_Stat3: 5.15807286e-05 + syst_JES_Gjet_Stat4: 7.99687008e-07 + syst_JES_Gjet_Stat5: 1.43597633e-06 + syst_JES_Gjet_Stat6: 2.35630632e-03 + syst_JES_Gjet_Stat7: 3.52554319e-03 + syst_JES_Gjet_Stat8: 1.24274318e-03 + syst_JES_Gjet_Stat9: 6.94064558e-03 + syst_JES_Gjet_Veto: 4.27209679e-02 + syst_JES_Gjet_dPhi: 1.28684638e-02 + syst_JES_LArESZee: 1.67198587e-01 + syst_JES_LArEsmear: 1.36203114e-02 + syst_JES_LAr_JVT: 1.94907279e-02 + syst_JES_MJB_Alpha: 2.57642558e-05 + syst_JES_MJB_Asym: 5.01511973e-14 + syst_JES_MJB_Beta: 2.76781719e-05 + syst_JES_MJB_Fragmentation: 1.81833141e-03 + syst_JES_MJB_Stat1: 9.29158656e-06 + syst_JES_MJB_Stat10: 5.84030510e-12 syst_JES_MJB_Stat11: 0.0 syst_JES_MJB_Stat12: 0.0 syst_JES_MJB_Stat13: 0.0 syst_JES_MJB_Stat14: 0.0 - syst_JES_MJB_Stat15: 1.8775430754046631e-37 - syst_JES_MJB_Stat16: 1.7684238745278238e-37 - syst_JES_MJB_Stat2: 0.00036516494902988703 - syst_JES_MJB_Stat3: 0.00011327402736285138 + syst_JES_MJB_Stat15: 1.87754308e-37 + syst_JES_MJB_Stat16: 1.76842387e-37 + syst_JES_MJB_Stat2: 3.65164949e-04 + syst_JES_MJB_Stat3: 1.13274027e-04 syst_JES_MJB_Stat4: 0.0 - syst_JES_MJB_Stat5: 2.158135306230821e-05 - syst_JES_MJB_Stat6: 9.537168772098981e-06 - syst_JES_MJB_Stat7: 2.1685276110762347e-08 - syst_JES_MJB_Stat8: 5.100023602886559e-13 - syst_JES_MJB_Stat9: 5.811211098385602e-12 - syst_JES_MJB_Threshold: 2.9834231029264017e-05 - syst_JES_Pileup_MuOffset: 4.500659285340399e-07 - syst_JES_Pileup_NPVOffset: 0.009734259653409705 - syst_JES_Pileup_Pt_term: 0.05174830045518404 - syst_JES_Pileup_Rho_topology: 0.058068989142226336 - syst_JES_PunchThrough_MC15: 0.0007887759377668668 + syst_JES_MJB_Stat5: 2.15813531e-05 + syst_JES_MJB_Stat6: 9.53716877e-06 + syst_JES_MJB_Stat7: 2.16852761e-08 + syst_JES_MJB_Stat8: 5.10002360e-13 + syst_JES_MJB_Stat9: 5.81121110e-12 + syst_JES_MJB_Threshold: 2.98342310e-05 + syst_JES_Pileup_MuOffset: 4.50065929e-07 + syst_JES_Pileup_NPVOffset: 9.73425965e-03 + syst_JES_Pileup_Pt_term: 5.17483005e-02 + syst_JES_Pileup_Rho_topology: 5.80689891e-02 + syst_JES_PunchThrough_MC15: 7.88775938e-04 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.14710244729439412 - syst_JES_Zjet_MuScale: 0.009916822374127712 - syst_JES_Zjet_MuSmearID: 0.001148346933504487 - syst_JES_Zjet_MuSmearMS: 0.016102792824538234 - syst_JES_Zjet_OOC: 0.055467874260692565 - syst_JES_Zjet_Stat1: 7.96040206271015e-07 - syst_JES_Zjet_Stat10: 0.016165261365038302 - syst_JES_Zjet_Stat11: 0.003681742803007836 - syst_JES_Zjet_Stat12: 0.01529636270490472 - syst_JES_Zjet_Stat13: 0.0008437388399261944 - syst_JES_Zjet_Stat2: 8.350494526052979e-06 - syst_JES_Zjet_Stat3: 0.00047129102473949147 - syst_JES_Zjet_Stat4: 0.0005206544727552045 - syst_JES_Zjet_Stat5: 7.672841630549923e-07 - syst_JES_Zjet_Stat6: 1.5749171406775659e-06 - syst_JES_Zjet_Stat7: 0.0010719303641911634 - syst_JES_Zjet_Stat8: 0.0022776360617974066 - syst_JES_Zjet_Stat9: 0.007942500283286115 - syst_JES_Zjet_Veto: 0.010580950087303123 - syst_JES_Zjet_dPhi: 0.01154833749939791 + syst_JES_Zjet_MC: 1.47102447e-01 + syst_JES_Zjet_MuScale: 9.91682237e-03 + syst_JES_Zjet_MuSmearID: 1.14834693e-03 + syst_JES_Zjet_MuSmearMS: 1.61027928e-02 + syst_JES_Zjet_OOC: 5.54678743e-02 + syst_JES_Zjet_Stat1: 7.96040206e-07 + syst_JES_Zjet_Stat10: 1.61652614e-02 + syst_JES_Zjet_Stat11: 3.68174280e-03 + syst_JES_Zjet_Stat12: 1.52963627e-02 + syst_JES_Zjet_Stat13: 8.43738840e-04 + syst_JES_Zjet_Stat2: 8.35049453e-06 + syst_JES_Zjet_Stat3: 4.71291025e-04 + syst_JES_Zjet_Stat4: 5.20654473e-04 + syst_JES_Zjet_Stat5: 7.67284163e-07 + syst_JES_Zjet_Stat6: 1.57491714e-06 + syst_JES_Zjet_Stat7: 1.07193036e-03 + syst_JES_Zjet_Stat8: 2.27763606e-03 + syst_JES_Zjet_Stat9: 7.94250028e-03 + syst_JES_Zjet_Veto: 1.05809501e-02 + syst_JES_Zjet_dPhi: 1.15483375e-02 syst_PRW: 0.0 syst_Unfolding_bias: 0.0 - syst_cleaning: 0.06264827770976629 + syst_cleaning: 6.26482777e-02 syst_lumi: 0.148 - stat: 0.07452 - syst_JER_CROSS_CALIB_FORWARD: 1.812e-07 + syst_JER_CROSS_CALIB_FORWARD: 1.81200000e-07 syst_JER_NOISE_FORWARD: 0.002238 - syst_JER_NP0: 0.01860336259927221 - syst_JER_NP1: 0.004384070368960789 - syst_JER_NP2: 0.004525198863033535 - syst_JER_NP3: 0.006446123389293755 + syst_JER_NP0: 1.86033626e-02 + syst_JER_NP1: 4.38407037e-03 + syst_JER_NP2: 4.52519886e-03 + syst_JER_NP3: 6.44612339e-03 syst_JER_NP4: 0.0 syst_JER_NP5: 0.0 syst_JER_NP6: 0.0 - syst_JER_NP7: 2.542802194430389e-10 - syst_JER_NP8: 0.002837376032534285 - syst_JES_EtaIntercalibration_Modelling: 0.10254475900795712 - syst_JES_EtaIntercalibration_NonClosure: 0.025860757916194185 - syst_JES_EtaIntercalibration_Stat0: 0.046699042816743044 + syst_JER_NP7: 2.54280219e-10 + syst_JER_NP8: 2.83737603e-03 + syst_JES_EtaIntercalibration_Modelling: 1.02544759e-01 + syst_JES_EtaIntercalibration_NonClosure: 2.58607579e-02 + syst_JES_EtaIntercalibration_Stat0: 4.66990428e-02 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 syst_JES_EtaIntercalibration_Stat100: 0.0 @@ -31602,97 +31602,97 @@ bins: syst_JES_EtaIntercalibration_Stat98: 0.0 syst_JES_EtaIntercalibration_Stat99: 0.0 syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0 - syst_JES_Flavour_Comp: 0.011397248878567141 - syst_JES_Flavour_Response: 0.09861281914639698 - syst_JES_Gjet_Generator: 0.08548166864889804 - syst_JES_Gjet_OOC: 0.05295119828672436 - syst_JES_Gjet_Purity: 0.016998737453116922 - syst_JES_Gjet_Stat1: 2.675049264499628e-05 - syst_JES_Gjet_Stat10: 0.0010385376642182988 - syst_JES_Gjet_Stat11: 0.0036039238598366643 - syst_JES_Gjet_Stat12: 0.003147548569919136 - syst_JES_Gjet_Stat13: 0.00011126247705313774 - syst_JES_Gjet_Stat14: 0.0002398807203590985 + syst_JES_Flavour_Comp: 1.13972489e-02 + syst_JES_Flavour_Response: 9.86128191e-02 + syst_JES_Gjet_Generator: 8.54816686e-02 + syst_JES_Gjet_OOC: 5.29511983e-02 + syst_JES_Gjet_Purity: 1.69987375e-02 + syst_JES_Gjet_Stat1: 2.67504926e-05 + syst_JES_Gjet_Stat10: 1.03853766e-03 + syst_JES_Gjet_Stat11: 3.60392386e-03 + syst_JES_Gjet_Stat12: 3.14754857e-03 + syst_JES_Gjet_Stat13: 1.11262477e-04 + syst_JES_Gjet_Stat14: 2.39880720e-04 syst_JES_Gjet_Stat15: 0.0 - syst_JES_Gjet_Stat2: 3.91183674889431e-05 - syst_JES_Gjet_Stat3: 9.315418440067562e-06 - syst_JES_Gjet_Stat4: 5.176869388926091e-08 - syst_JES_Gjet_Stat5: 9.294671269065947e-08 - syst_JES_Gjet_Stat6: 0.0006734924795422738 - syst_JES_Gjet_Stat7: 0.0014093080855512043 - syst_JES_Gjet_Stat8: 0.00037212698101588926 - syst_JES_Gjet_Stat9: 0.002595115170854658 - syst_JES_Gjet_Veto: 0.022224891450803533 - syst_JES_Gjet_dPhi: 0.005587142807374803 - syst_JES_LArESZee: 0.0921966788989712 - syst_JES_LArEsmear: 0.007185274385853334 - syst_JES_LAr_JVT: 0.009955419164957346 - syst_JES_MJB_Alpha: 1.4575207545692103e-05 - syst_JES_MJB_Asym: 4.3717914681155594e-10 - syst_JES_MJB_Beta: 8.481852804664792e-05 - syst_JES_MJB_Fragmentation: 0.001912848106881464 - syst_JES_MJB_Stat1: 5.214338956186105e-06 - syst_JES_MJB_Stat10: 3.1808722557657044e-09 + syst_JES_Gjet_Stat2: 3.91183675e-05 + syst_JES_Gjet_Stat3: 9.31541844e-06 + syst_JES_Gjet_Stat4: 5.17686939e-08 + syst_JES_Gjet_Stat5: 9.29467127e-08 + syst_JES_Gjet_Stat6: 6.73492480e-04 + syst_JES_Gjet_Stat7: 1.40930809e-03 + syst_JES_Gjet_Stat8: 3.72126981e-04 + syst_JES_Gjet_Stat9: 2.59511517e-03 + syst_JES_Gjet_Veto: 2.22248915e-02 + syst_JES_Gjet_dPhi: 5.58714281e-03 + syst_JES_LArESZee: 9.21966789e-02 + syst_JES_LArEsmear: 7.18527439e-03 + syst_JES_LAr_JVT: 9.95541916e-03 + syst_JES_MJB_Alpha: 1.45752075e-05 + syst_JES_MJB_Asym: 4.37179147e-10 + syst_JES_MJB_Beta: 8.48185280e-05 + syst_JES_MJB_Fragmentation: 1.91284811e-03 + syst_JES_MJB_Stat1: 5.21433896e-06 + syst_JES_MJB_Stat10: 3.18087226e-09 syst_JES_MJB_Stat11: 0.0 syst_JES_MJB_Stat12: 0.0 syst_JES_MJB_Stat13: 0.0 syst_JES_MJB_Stat14: 0.0 - syst_JES_MJB_Stat15: 3.2068920702137767e-28 - syst_JES_MJB_Stat16: 3.020696588926098e-28 - syst_JES_MJB_Stat2: 0.00021326387850501078 - syst_JES_MJB_Stat3: 6.540063512688543e-05 + syst_JES_MJB_Stat15: 3.20689207e-28 + syst_JES_MJB_Stat16: 3.02069659e-28 + syst_JES_MJB_Stat2: 2.13263879e-04 + syst_JES_MJB_Stat3: 6.54006351e-05 syst_JES_MJB_Stat4: 0.0 - syst_JES_MJB_Stat5: 6.612969983297974e-05 - syst_JES_MJB_Stat6: 2.837800677901815e-05 - syst_JES_MJB_Stat7: 1.3631239855567065e-06 - syst_JES_MJB_Stat8: 2.82324281633727e-10 - syst_JES_MJB_Stat9: 3.1641525986431186e-09 - syst_JES_MJB_Threshold: 0.0002908544252284981 - syst_JES_Pileup_MuOffset: 2.8165173651692617e-05 - syst_JES_Pileup_NPVOffset: 0.005579039881556683 - syst_JES_Pileup_Pt_term: 0.02472528007930345 - syst_JES_Pileup_Rho_topology: 0.02783092883825475 - syst_JES_PunchThrough_MC15: 0.0004487743642650302 + syst_JES_MJB_Stat5: 6.61296998e-05 + syst_JES_MJB_Stat6: 2.83780068e-05 + syst_JES_MJB_Stat7: 1.36312399e-06 + syst_JES_MJB_Stat8: 2.82324282e-10 + syst_JES_MJB_Stat9: 3.16415260e-09 + syst_JES_MJB_Threshold: 2.90854425e-04 + syst_JES_Pileup_MuOffset: 2.81651737e-05 + syst_JES_Pileup_NPVOffset: 5.57903988e-03 + syst_JES_Pileup_Pt_term: 2.47252801e-02 + syst_JES_Pileup_Rho_topology: 2.78309288e-02 + syst_JES_PunchThrough_MC15: 4.48774364e-04 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.07678178299570804 - syst_JES_Zjet_MuScale: 0.004968993333664275 - syst_JES_Zjet_MuSmearID: 0.0006431102893071665 - syst_JES_Zjet_MuSmearMS: 0.009069179565980596 - syst_JES_Zjet_OOC: 0.027154679154797617 - syst_JES_Zjet_Stat1: 5.1538595059916016e-08 - syst_JES_Zjet_Stat10: 0.006871829068741451 - syst_JES_Zjet_Stat11: 0.0021315062162705505 - syst_JES_Zjet_Stat12: 0.01274218584074177 - syst_JES_Zjet_Stat13: 0.0017840619580048222 - syst_JES_Zjet_Stat2: 4.597692006059178e-06 - syst_JES_Zjet_Stat3: 0.00026483056847728133 - syst_JES_Zjet_Stat4: 0.00027608889872647905 - syst_JES_Zjet_Stat5: 4.965462130305697e-08 - syst_JES_Zjet_Stat6: 1.0172750070654444e-07 - syst_JES_Zjet_Stat7: 0.0006110568784221318 - syst_JES_Zjet_Stat8: 0.0010585540945435901 - syst_JES_Zjet_Stat9: 0.002573849791654517 - syst_JES_Zjet_Veto: 0.005320508810254899 - syst_JES_Zjet_dPhi: 0.00537810254643773 + syst_JES_Zjet_MC: 7.67817830e-02 + syst_JES_Zjet_MuScale: 4.96899333e-03 + syst_JES_Zjet_MuSmearID: 6.43110289e-04 + syst_JES_Zjet_MuSmearMS: 9.06917957e-03 + syst_JES_Zjet_OOC: 2.71546792e-02 + syst_JES_Zjet_Stat1: 5.15385951e-08 + syst_JES_Zjet_Stat10: 6.87182907e-03 + syst_JES_Zjet_Stat11: 2.13150622e-03 + syst_JES_Zjet_Stat12: 1.27421858e-02 + syst_JES_Zjet_Stat13: 1.78406196e-03 + syst_JES_Zjet_Stat2: 4.59769201e-06 + syst_JES_Zjet_Stat3: 2.64830568e-04 + syst_JES_Zjet_Stat4: 2.76088899e-04 + syst_JES_Zjet_Stat5: 4.96546213e-08 + syst_JES_Zjet_Stat6: 1.01727501e-07 + syst_JES_Zjet_Stat7: 6.11056878e-04 + syst_JES_Zjet_Stat8: 1.05855409e-03 + syst_JES_Zjet_Stat9: 2.57384979e-03 + syst_JES_Zjet_Veto: 5.32050881e-03 + syst_JES_Zjet_dPhi: 5.37810255e-03 syst_PRW: 0.0 syst_Unfolding_bias: 0.0 - syst_cleaning: 0.03453882515373098 + syst_cleaning: 3.45388252e-02 syst_lumi: 0.08286 - stat: 0.04314 - syst_JER_CROSS_CALIB_FORWARD: 1.1905e-08 - syst_JER_NOISE_FORWARD: 0.0012283 - syst_JER_NP0: 0.010559133676585404 - syst_JER_NP1: 0.0022471909131179754 - syst_JER_NP2: 0.002482311019997293 - syst_JER_NP3: 0.0035857633775808464 + syst_JER_CROSS_CALIB_FORWARD: 1.19050000e-08 + syst_JER_NOISE_FORWARD: 1.22830000e-03 + syst_JER_NP0: 1.05591337e-02 + syst_JER_NP1: 2.24719091e-03 + syst_JER_NP2: 2.48231102e-03 + syst_JER_NP3: 3.58576338e-03 syst_JER_NP4: 0.0 syst_JER_NP5: 0.0 syst_JER_NP6: 0.0 - syst_JER_NP7: 1.9762391049668055e-11 - syst_JER_NP8: 0.001555811685262712 - syst_JES_EtaIntercalibration_Modelling: 0.05495677938161952 - syst_JES_EtaIntercalibration_NonClosure: 0.012377745877178123 - syst_JES_EtaIntercalibration_Stat0: 0.02239945535052136 + syst_JER_NP7: 1.97623910e-11 + syst_JER_NP8: 1.55581169e-03 + syst_JES_EtaIntercalibration_Modelling: 5.49567794e-02 + syst_JES_EtaIntercalibration_NonClosure: 1.23777459e-02 + syst_JES_EtaIntercalibration_Stat0: 2.23994554e-02 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 syst_JES_EtaIntercalibration_Stat100: 0.0 @@ -31939,97 +31939,97 @@ bins: syst_JES_EtaIntercalibration_Stat98: 0.0 syst_JES_EtaIntercalibration_Stat99: 0.0 syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0 - syst_JES_Flavour_Comp: 0.007135737015193315 - syst_JES_Flavour_Response: 0.04723576928557425 - syst_JES_Gjet_Generator: 0.04397604802616988 - syst_JES_Gjet_OOC: 0.02793260997472309 - syst_JES_Gjet_Purity: 0.009458570875137533 - syst_JES_Gjet_Stat1: 1.5167921124201563e-05 - syst_JES_Gjet_Stat10: 0.000569931318230539 - syst_JES_Gjet_Stat11: 0.0017534927288129826 - syst_JES_Gjet_Stat12: 0.0020527759254239126 - syst_JES_Gjet_Stat13: 0.0005568674056721223 - syst_JES_Gjet_Stat14: 0.0001166168495544276 - syst_JES_Gjet_Stat15: 2.1331752740925905e-41 - syst_JES_Gjet_Stat2: 1.8472321862722078e-05 - syst_JES_Gjet_Stat3: 1.1475426813209304e-06 - syst_JES_Gjet_Stat4: 3.399075055070129e-09 - syst_JES_Gjet_Stat5: 6.103042745221436e-09 - syst_JES_Gjet_Stat6: 0.00028533327881619417 - syst_JES_Gjet_Stat7: 0.0007245342567470499 - syst_JES_Gjet_Stat8: 0.0001723552610511208 - syst_JES_Gjet_Stat9: 0.0007851887846244366 - syst_JES_Gjet_Veto: 0.01258644599360757 - syst_JES_Gjet_dPhi: 0.0024356204035111875 - syst_JES_LArESZee: 0.051664650148820324 - syst_JES_LArEsmear: 0.0037683055542246037 - syst_JES_LAr_JVT: 0.005158842966208606 - syst_JES_MJB_Alpha: 8.009002934198488e-06 - syst_JES_MJB_Asym: 1.6911449967247044e-07 - syst_JES_MJB_Beta: 0.0001036026190547324 - syst_JES_MJB_Fragmentation: 0.00115192953777564 - syst_JES_MJB_Stat1: 2.8622139595075754e-06 - syst_JES_MJB_Stat10: 1.321639439294999e-07 + syst_JES_Flavour_Comp: 7.13573702e-03 + syst_JES_Flavour_Response: 4.72357693e-02 + syst_JES_Gjet_Generator: 4.39760480e-02 + syst_JES_Gjet_OOC: 2.79326100e-02 + syst_JES_Gjet_Purity: 9.45857088e-03 + syst_JES_Gjet_Stat1: 1.51679211e-05 + syst_JES_Gjet_Stat10: 5.69931318e-04 + syst_JES_Gjet_Stat11: 1.75349273e-03 + syst_JES_Gjet_Stat12: 2.05277593e-03 + syst_JES_Gjet_Stat13: 5.56867406e-04 + syst_JES_Gjet_Stat14: 1.16616850e-04 + syst_JES_Gjet_Stat15: 2.13317527e-41 + syst_JES_Gjet_Stat2: 1.84723219e-05 + syst_JES_Gjet_Stat3: 1.14754268e-06 + syst_JES_Gjet_Stat4: 3.39907506e-09 + syst_JES_Gjet_Stat5: 6.10304275e-09 + syst_JES_Gjet_Stat6: 2.85333279e-04 + syst_JES_Gjet_Stat7: 7.24534257e-04 + syst_JES_Gjet_Stat8: 1.72355261e-04 + syst_JES_Gjet_Stat9: 7.85188785e-04 + syst_JES_Gjet_Veto: 1.25864460e-02 + syst_JES_Gjet_dPhi: 2.43562040e-03 + syst_JES_LArESZee: 5.16646501e-02 + syst_JES_LArEsmear: 3.76830555e-03 + syst_JES_LAr_JVT: 5.15884297e-03 + syst_JES_MJB_Alpha: 8.00900293e-06 + syst_JES_MJB_Asym: 1.69114500e-07 + syst_JES_MJB_Beta: 1.03602619e-04 + syst_JES_MJB_Fragmentation: 1.15192954e-03 + syst_JES_MJB_Stat1: 2.86221396e-06 + syst_JES_MJB_Stat10: 1.32163944e-07 syst_JES_MJB_Stat11: 0.0 syst_JES_MJB_Stat12: 0.0 syst_JES_MJB_Stat13: 0.0 syst_JES_MJB_Stat14: 0.0 - syst_JES_MJB_Stat15: 1.5146784312189833e-21 - syst_JES_MJB_Stat16: 1.4263429538025098e-21 - syst_JES_MJB_Stat2: 0.0001180343068772804 - syst_JES_MJB_Stat3: 3.610854054098559e-05 + syst_JES_MJB_Stat15: 1.51467843e-21 + syst_JES_MJB_Stat16: 1.42634295e-21 + syst_JES_MJB_Stat2: 1.18034307e-04 + syst_JES_MJB_Stat3: 3.61085405e-05 syst_JES_MJB_Stat4: 0.0 - syst_JES_MJB_Stat5: 8.07741894109746e-05 - syst_JES_MJB_Stat6: 3.418109857801531e-05 - syst_JES_MJB_Stat7: 1.2921099024463824e-05 - syst_JES_MJB_Stat8: 1.3440714266734488e-08 - syst_JES_MJB_Stat9: 1.31459178740018e-07 - syst_JES_MJB_Threshold: 0.00047893783260460855 - syst_JES_Pileup_MuOffset: 0.000262080076837214 - syst_JES_Pileup_NPVOffset: 0.0031927195304316974 - syst_JES_Pileup_Pt_term: 0.011811139318456964 - syst_JES_Pileup_Rho_topology: 0.014200900077107788 - syst_JES_PunchThrough_MC15: 0.00024690395743103157 + syst_JES_MJB_Stat5: 8.07741894e-05 + syst_JES_MJB_Stat6: 3.41810986e-05 + syst_JES_MJB_Stat7: 1.29210990e-05 + syst_JES_MJB_Stat8: 1.34407143e-08 + syst_JES_MJB_Stat9: 1.31459179e-07 + syst_JES_MJB_Threshold: 4.78937833e-04 + syst_JES_Pileup_MuOffset: 2.62080077e-04 + syst_JES_Pileup_NPVOffset: 3.19271953e-03 + syst_JES_Pileup_Pt_term: 1.18111393e-02 + syst_JES_Pileup_Rho_topology: 1.42009001e-02 + syst_JES_PunchThrough_MC15: 2.46903957e-04 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.0397764725528798 - syst_JES_Zjet_MuScale: 0.0028014587271634047 - syst_JES_Zjet_MuSmearID: 0.0003529053397243924 - syst_JES_Zjet_MuSmearMS: 0.005029564866864727 - syst_JES_Zjet_OOC: 0.014107152334897358 - syst_JES_Zjet_Stat1: 3.383371813738478e-09 - syst_JES_Zjet_Stat10: 0.0027475645124364232 - syst_JES_Zjet_Stat11: 0.001338941487705867 - syst_JES_Zjet_Stat12: 0.008910118223121398 - syst_JES_Zjet_Stat13: 0.0011967078455078332 - syst_JES_Zjet_Stat2: 2.516667362451682e-06 - syst_JES_Zjet_Stat3: 0.0001454922678357857 - syst_JES_Zjet_Stat4: 0.00011433267380762164 - syst_JES_Zjet_Stat5: 3.2606727572695793e-09 - syst_JES_Zjet_Stat6: 6.6863236535483385e-09 - syst_JES_Zjet_Stat7: 0.0003342356197972921 - syst_JES_Zjet_Stat8: 0.0005270271113147311 - syst_JES_Zjet_Stat9: 0.0008525092653455446 - syst_JES_Zjet_Veto: 0.0027544302496160617 - syst_JES_Zjet_dPhi: 0.002458123013602045 + syst_JES_Zjet_MC: 3.97764726e-02 + syst_JES_Zjet_MuScale: 2.80145873e-03 + syst_JES_Zjet_MuSmearID: 3.52905340e-04 + syst_JES_Zjet_MuSmearMS: 5.02956487e-03 + syst_JES_Zjet_OOC: 1.41071523e-02 + syst_JES_Zjet_Stat1: 3.38337181e-09 + syst_JES_Zjet_Stat10: 2.74756451e-03 + syst_JES_Zjet_Stat11: 1.33894149e-03 + syst_JES_Zjet_Stat12: 8.91011822e-03 + syst_JES_Zjet_Stat13: 1.19670785e-03 + syst_JES_Zjet_Stat2: 2.51666736e-06 + syst_JES_Zjet_Stat3: 1.45492268e-04 + syst_JES_Zjet_Stat4: 1.14332674e-04 + syst_JES_Zjet_Stat5: 3.26067276e-09 + syst_JES_Zjet_Stat6: 6.68632365e-09 + syst_JES_Zjet_Stat7: 3.34235620e-04 + syst_JES_Zjet_Stat8: 5.27027111e-04 + syst_JES_Zjet_Stat9: 8.52509265e-04 + syst_JES_Zjet_Veto: 2.75443025e-03 + syst_JES_Zjet_dPhi: 2.45812301e-03 syst_PRW: 0.0 syst_Unfolding_bias: 0.0 - syst_cleaning: 0.018888014056538605 + syst_cleaning: 1.88880141e-02 syst_lumi: 0.04547 - stat: 0.022654 - syst_JER_CROSS_CALIB_FORWARD: 7.605e-10 + syst_JER_CROSS_CALIB_FORWARD: 7.60500000e-10 syst_JER_NOISE_FORWARD: 0.000645 - syst_JER_NP0: 0.005421825960873329 - syst_JER_NP1: 0.000992731598922891 - syst_JER_NP2: 0.001281231704259616 - syst_JER_NP3: 0.0018512328945867402 + syst_JER_NP0: 5.42182596e-03 + syst_JER_NP1: 9.92731599e-04 + syst_JER_NP2: 1.28123170e-03 + syst_JER_NP3: 1.85123289e-03 syst_JER_NP4: 0.0 syst_JER_NP5: 0.0 syst_JER_NP6: 0.0 - syst_JER_NP7: 1.610270793997084e-12 - syst_JER_NP8: 0.0008166984556738184 - syst_JES_EtaIntercalibration_Modelling: 0.031172665510026565 - syst_JES_EtaIntercalibration_NonClosure: 0.005987187215212165 - syst_JES_EtaIntercalibration_Stat0: 0.011821653818311547 + syst_JER_NP7: 1.61027079e-12 + syst_JER_NP8: 8.16698456e-04 + syst_JES_EtaIntercalibration_Modelling: 3.11726655e-02 + syst_JES_EtaIntercalibration_NonClosure: 5.98718722e-03 + syst_JES_EtaIntercalibration_Stat0: 1.18216538e-02 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 syst_JES_EtaIntercalibration_Stat100: 0.0 @@ -32276,97 +32276,97 @@ bins: syst_JES_EtaIntercalibration_Stat98: 0.0 syst_JES_EtaIntercalibration_Stat99: 0.0 syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0 - syst_JES_Flavour_Comp: 0.004917278795228109 - syst_JES_Flavour_Response: 0.022838666226380207 - syst_JES_Gjet_Generator: 0.02388762598082949 - syst_JES_Gjet_OOC: 0.01553264546044878 - syst_JES_Gjet_Purity: 0.005348695238093118 - syst_JES_Gjet_Stat1: 8.04786639061559e-06 - syst_JES_Gjet_Stat10: 0.000299298379547902 - syst_JES_Gjet_Stat11: 0.0008169144554358186 - syst_JES_Gjet_Stat12: 0.001598047936546335 - syst_JES_Gjet_Stat13: 0.0006321534841318206 - syst_JES_Gjet_Stat14: 0.00018988427712688592 - syst_JES_Gjet_Stat15: 9.97752689798429e-31 - syst_JES_Gjet_Stat2: 9.119247501850139e-06 - syst_JES_Gjet_Stat3: 1.0310145964691673e-07 - syst_JES_Gjet_Stat4: 2.1673872998382177e-10 - syst_JES_Gjet_Stat5: 3.893122493577617e-10 - syst_JES_Gjet_Stat6: 0.00015113246532429754 - syst_JES_Gjet_Stat7: 0.0002884811208432885 - syst_JES_Gjet_Stat8: 8.884070465164039e-05 - syst_JES_Gjet_Stat9: 0.00021980167623337178 - syst_JES_Gjet_Veto: 0.00780628751392107 - syst_JES_Gjet_dPhi: 0.0011610379095877963 - syst_JES_LArESZee: 0.030385714982537438 - syst_JES_LArEsmear: 0.002002722896458719 - syst_JES_LAr_JVT: 0.002927963626823257 - syst_JES_MJB_Alpha: 4.2062853861810186e-06 - syst_JES_MJB_Asym: 6.999211803915853e-06 - syst_JES_MJB_Beta: 7.491985768139179e-05 - syst_JES_MJB_Fragmentation: 0.0011744274381586968 - syst_JES_MJB_Stat1: 1.5025540759595807e-06 - syst_JES_MJB_Stat10: 3.988961769683936e-07 + syst_JES_Flavour_Comp: 4.91727880e-03 + syst_JES_Flavour_Response: 2.28386662e-02 + syst_JES_Gjet_Generator: 2.38876260e-02 + syst_JES_Gjet_OOC: 1.55326455e-02 + syst_JES_Gjet_Purity: 5.34869524e-03 + syst_JES_Gjet_Stat1: 8.04786639e-06 + syst_JES_Gjet_Stat10: 2.99298380e-04 + syst_JES_Gjet_Stat11: 8.16914455e-04 + syst_JES_Gjet_Stat12: 1.59804794e-03 + syst_JES_Gjet_Stat13: 6.32153484e-04 + syst_JES_Gjet_Stat14: 1.89884277e-04 + syst_JES_Gjet_Stat15: 9.97752690e-31 + syst_JES_Gjet_Stat2: 9.11924750e-06 + syst_JES_Gjet_Stat3: 1.03101460e-07 + syst_JES_Gjet_Stat4: 2.16738730e-10 + syst_JES_Gjet_Stat5: 3.89312249e-10 + syst_JES_Gjet_Stat6: 1.51132465e-04 + syst_JES_Gjet_Stat7: 2.88481121e-04 + syst_JES_Gjet_Stat8: 8.88407047e-05 + syst_JES_Gjet_Stat9: 2.19801676e-04 + syst_JES_Gjet_Veto: 7.80628751e-03 + syst_JES_Gjet_dPhi: 1.16103791e-03 + syst_JES_LArESZee: 3.03857150e-02 + syst_JES_LArEsmear: 2.00272290e-03 + syst_JES_LAr_JVT: 2.92796363e-03 + syst_JES_MJB_Alpha: 4.20628539e-06 + syst_JES_MJB_Asym: 6.99921180e-06 + syst_JES_MJB_Beta: 7.49198577e-05 + syst_JES_MJB_Fragmentation: 1.17442744e-03 + syst_JES_MJB_Stat1: 1.50255408e-06 + syst_JES_MJB_Stat10: 3.98896177e-07 syst_JES_MJB_Stat11: 0.0 syst_JES_MJB_Stat12: 0.0 syst_JES_MJB_Stat13: 0.0 syst_JES_MJB_Stat14: 0.0 - syst_JES_MJB_Stat15: 1.0815791267863854e-16 - syst_JES_MJB_Stat16: 1.0188545343601424e-16 - syst_JES_MJB_Stat2: 6.206771362794026e-05 - syst_JES_MJB_Stat3: 1.8975101449004163e-05 + syst_JES_MJB_Stat15: 1.08157913e-16 + syst_JES_MJB_Stat16: 1.01885453e-16 + syst_JES_MJB_Stat2: 6.20677136e-05 + syst_JES_MJB_Stat3: 1.89751014e-05 syst_JES_MJB_Stat4: 0.0 - syst_JES_MJB_Stat5: 5.8413413485260386e-05 - syst_JES_MJB_Stat6: 2.5828191477530904e-05 - syst_JES_MJB_Stat7: 3.3696182435848726e-05 - syst_JES_MJB_Stat8: 1.1310291773424769e-07 - syst_JES_MJB_Stat9: 3.9309328091433974e-07 - syst_JES_MJB_Threshold: 0.0003484402284467165 - syst_JES_Pileup_MuOffset: 0.0006680231957050593 - syst_JES_Pileup_NPVOffset: 0.0019618714197163893 - syst_JES_Pileup_Pt_term: 0.0058628202044749755 - syst_JES_Pileup_Rho_topology: 0.007836195042876358 - syst_JES_PunchThrough_MC15: 0.00012959193670896379 + syst_JES_MJB_Stat5: 5.84134135e-05 + syst_JES_MJB_Stat6: 2.58281915e-05 + syst_JES_MJB_Stat7: 3.36961824e-05 + syst_JES_MJB_Stat8: 1.13102918e-07 + syst_JES_MJB_Stat9: 3.93093281e-07 + syst_JES_MJB_Threshold: 3.48440228e-04 + syst_JES_Pileup_MuOffset: 6.68023196e-04 + syst_JES_Pileup_NPVOffset: 1.96187142e-03 + syst_JES_Pileup_Pt_term: 5.86282020e-03 + syst_JES_Pileup_Rho_topology: 7.83619504e-03 + syst_JES_PunchThrough_MC15: 1.29591937e-04 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.021211889944085606 - syst_JES_Zjet_MuScale: 0.001241355263411728 - syst_JES_Zjet_MuSmearID: 0.0001853294355204618 - syst_JES_Zjet_MuSmearMS: 0.0031337630334790797 - syst_JES_Zjet_OOC: 0.00777017134624456 - syst_JES_Zjet_Stat1: 2.1581149895394824e-10 - syst_JES_Zjet_Stat10: 0.0010333499443557347 - syst_JES_Zjet_Stat11: 0.0009194017660957587 - syst_JES_Zjet_Stat12: 0.005525619128206358 - syst_JES_Zjet_Stat13: 0.001034073657918042 - syst_JES_Zjet_Stat2: 1.3215546007354167e-06 - syst_JES_Zjet_Stat3: 7.640942137590103e-05 - syst_JES_Zjet_Stat4: 3.0241607103420112e-05 - syst_JES_Zjet_Stat5: 2.0801261181716845e-10 - syst_JES_Zjet_Stat6: 4.278908359616971e-10 - syst_JES_Zjet_Stat7: 0.00015847073019730647 - syst_JES_Zjet_Stat8: 0.0002060687747403764 - syst_JES_Zjet_Stat9: 0.000334056850962527 - syst_JES_Zjet_Veto: 0.001277777252693129 - syst_JES_Zjet_dPhi: 0.0009905921499285162 + syst_JES_Zjet_MC: 2.12118899e-02 + syst_JES_Zjet_MuScale: 1.24135526e-03 + syst_JES_Zjet_MuSmearID: 1.85329436e-04 + syst_JES_Zjet_MuSmearMS: 3.13376303e-03 + syst_JES_Zjet_OOC: 7.77017135e-03 + syst_JES_Zjet_Stat1: 2.15811499e-10 + syst_JES_Zjet_Stat10: 1.03334994e-03 + syst_JES_Zjet_Stat11: 9.19401766e-04 + syst_JES_Zjet_Stat12: 5.52561913e-03 + syst_JES_Zjet_Stat13: 1.03407366e-03 + syst_JES_Zjet_Stat2: 1.32155460e-06 + syst_JES_Zjet_Stat3: 7.64094214e-05 + syst_JES_Zjet_Stat4: 3.02416071e-05 + syst_JES_Zjet_Stat5: 2.08012612e-10 + syst_JES_Zjet_Stat6: 4.27890836e-10 + syst_JES_Zjet_Stat7: 1.58470730e-04 + syst_JES_Zjet_Stat8: 2.06068775e-04 + syst_JES_Zjet_Stat9: 3.34056851e-04 + syst_JES_Zjet_Veto: 1.27777725e-03 + syst_JES_Zjet_dPhi: 9.90592150e-04 syst_PRW: 0.0 syst_Unfolding_bias: 0.0 - syst_cleaning: 0.00994456971165671 + syst_cleaning: 9.94456971e-03 syst_lumi: 0.02388 - stat: 0.012649 - syst_JER_CROSS_CALIB_FORWARD: 5.793e-11 - syst_JER_NOISE_FORWARD: 0.0003598 - syst_JER_NP0: 0.0027994833005395834 - syst_JER_NP1: 0.000662347884423284 - syst_JER_NP2: 0.0005532774349275416 - syst_JER_NP3: 0.0009923456794383699 + syst_JER_CROSS_CALIB_FORWARD: 5.79300000e-11 + syst_JER_NOISE_FORWARD: 3.59800000e-04 + syst_JER_NP0: 2.79948330e-03 + syst_JER_NP1: 6.62347884e-04 + syst_JER_NP2: 5.53277435e-04 + syst_JER_NP3: 9.92345679e-04 syst_JER_NP4: 0.0 syst_JER_NP5: 0.0 syst_JER_NP6: 0.0 - syst_JER_NP7: 1.6299802721198805e-13 - syst_JER_NP8: 0.0004555994841963718 - syst_JES_EtaIntercalibration_Modelling: 0.019119850287070764 - syst_JES_EtaIntercalibration_NonClosure: 0.0029967637544524597 - syst_JES_EtaIntercalibration_Stat0: 0.007079227411942634 + syst_JER_NP7: 1.62998027e-13 + syst_JER_NP8: 4.55599484e-04 + syst_JES_EtaIntercalibration_Modelling: 1.91198503e-02 + syst_JES_EtaIntercalibration_NonClosure: 2.99676375e-03 + syst_JES_EtaIntercalibration_Stat0: 7.07922741e-03 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 syst_JES_EtaIntercalibration_Stat100: 0.0 @@ -32613,97 +32613,97 @@ bins: syst_JES_EtaIntercalibration_Stat98: 0.0 syst_JES_EtaIntercalibration_Stat99: 0.0 syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0 - syst_JES_Flavour_Comp: 0.003919857400467522 - syst_JES_Flavour_Response: 0.012019926986051123 - syst_JES_Gjet_Generator: 0.014438633176308623 - syst_JES_Gjet_OOC: 0.009924711884986889 - syst_JES_Gjet_Purity: 0.0030999065711727505 - syst_JES_Gjet_Stat1: 4.498294616665631e-06 - syst_JES_Gjet_Stat10: 0.00016852854357645176 - syst_JES_Gjet_Stat11: 0.00039071627493617413 - syst_JES_Gjet_Stat12: 0.0013331707345647819 - syst_JES_Gjet_Stat13: 0.0007598435891681919 - syst_JES_Gjet_Stat14: 0.0003377598663370176 - syst_JES_Gjet_Stat15: 7.259767403298814e-23 - syst_JES_Gjet_Stat2: 5.009956960892977e-06 - syst_JES_Gjet_Stat3: 8.815210235485978e-09 - syst_JES_Gjet_Stat4: 1.6469939852652773e-11 - syst_JES_Gjet_Stat5: 2.958578036827827e-11 - syst_JES_Gjet_Stat6: 8.185147692619847e-05 - syst_JES_Gjet_Stat7: 8.383812159226851e-05 - syst_JES_Gjet_Stat8: 4.944512501753839e-05 - syst_JES_Gjet_Stat9: 8.940176357740377e-05 - syst_JES_Gjet_Veto: 0.00525985722239682 - syst_JES_Gjet_dPhi: 0.0006300414192733681 - syst_JES_LArESZee: 0.01872152437703725 - syst_JES_LArEsmear: 0.0012225652324109337 - syst_JES_LAr_JVT: 0.0019233529967221305 - syst_JES_MJB_Alpha: 2.3469288442558285e-06 - syst_JES_MJB_Asym: 5.371085310018823e-05 - syst_JES_MJB_Beta: 4.602925021114291e-05 - syst_JES_MJB_Fragmentation: 0.0012208489587168432 - syst_JES_MJB_Stat1: 8.384000735778965e-07 - syst_JES_MJB_Stat10: 3.532832300010857e-06 + syst_JES_Flavour_Comp: 3.91985740e-03 + syst_JES_Flavour_Response: 1.20199270e-02 + syst_JES_Gjet_Generator: 1.44386332e-02 + syst_JES_Gjet_OOC: 9.92471188e-03 + syst_JES_Gjet_Purity: 3.09990657e-03 + syst_JES_Gjet_Stat1: 4.49829462e-06 + syst_JES_Gjet_Stat10: 1.68528544e-04 + syst_JES_Gjet_Stat11: 3.90716275e-04 + syst_JES_Gjet_Stat12: 1.33317073e-03 + syst_JES_Gjet_Stat13: 7.59843589e-04 + syst_JES_Gjet_Stat14: 3.37759866e-04 + syst_JES_Gjet_Stat15: 7.25976740e-23 + syst_JES_Gjet_Stat2: 5.00995696e-06 + syst_JES_Gjet_Stat3: 8.81521024e-09 + syst_JES_Gjet_Stat4: 1.64699399e-11 + syst_JES_Gjet_Stat5: 2.95857804e-11 + syst_JES_Gjet_Stat6: 8.18514769e-05 + syst_JES_Gjet_Stat7: 8.38381216e-05 + syst_JES_Gjet_Stat8: 4.94451250e-05 + syst_JES_Gjet_Stat9: 8.94017636e-05 + syst_JES_Gjet_Veto: 5.25985722e-03 + syst_JES_Gjet_dPhi: 6.30041419e-04 + syst_JES_LArESZee: 1.87215244e-02 + syst_JES_LArEsmear: 1.22256523e-03 + syst_JES_LAr_JVT: 1.92335300e-03 + syst_JES_MJB_Alpha: 2.34692884e-06 + syst_JES_MJB_Asym: 5.37108531e-05 + syst_JES_MJB_Beta: 4.60292502e-05 + syst_JES_MJB_Fragmentation: 1.22084896e-03 + syst_JES_MJB_Stat1: 8.38400074e-07 + syst_JES_MJB_Stat10: 3.53283230e-06 syst_JES_MJB_Stat11: 0.0 syst_JES_MJB_Stat12: 0.0 syst_JES_MJB_Stat13: 0.0 syst_JES_MJB_Stat14: 0.0 - syst_JES_MJB_Stat15: 2.4188089527699367e-13 - syst_JES_MJB_Stat16: 2.2776015098526346e-13 - syst_JES_MJB_Stat2: 3.463058005578307e-05 - syst_JES_MJB_Stat3: 1.0588337074347417e-05 + syst_JES_MJB_Stat15: 2.41880895e-13 + syst_JES_MJB_Stat16: 2.27760151e-13 + syst_JES_MJB_Stat2: 3.46305801e-05 + syst_JES_MJB_Stat3: 1.05883371e-05 syst_JES_MJB_Stat4: 0.0 - syst_JES_MJB_Stat5: 3.588809273282714e-05 - syst_JES_MJB_Stat6: 1.6742956728128995e-05 - syst_JES_MJB_Stat7: 3.9412816126229804e-05 - syst_JES_MJB_Stat8: 2.8916588232362406e-07 - syst_JES_MJB_Stat9: 3.5466059137575463e-06 - syst_JES_MJB_Threshold: 0.00043027074766941803 - syst_JES_Pileup_MuOffset: 0.0008521018014298526 - syst_JES_Pileup_NPVOffset: 0.0013395448732685293 - syst_JES_Pileup_Pt_term: 0.0032631626913165084 - syst_JES_Pileup_Rho_topology: 0.004680992923515265 - syst_JES_PunchThrough_MC15: 6.938003173103915e-05 + syst_JES_MJB_Stat5: 3.58880927e-05 + syst_JES_MJB_Stat6: 1.67429567e-05 + syst_JES_MJB_Stat7: 3.94128161e-05 + syst_JES_MJB_Stat8: 2.89165882e-07 + syst_JES_MJB_Stat9: 3.54660591e-06 + syst_JES_MJB_Threshold: 4.30270748e-04 + syst_JES_Pileup_MuOffset: 8.52101801e-04 + syst_JES_Pileup_NPVOffset: 1.33954487e-03 + syst_JES_Pileup_Pt_term: 3.26316269e-03 + syst_JES_Pileup_Rho_topology: 4.68099292e-03 + syst_JES_PunchThrough_MC15: 6.93800317e-05 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.012559736740871602 - syst_JES_Zjet_MuScale: 0.0005638186477050932 - syst_JES_Zjet_MuSmearID: 0.00010336879211649814 - syst_JES_Zjet_MuSmearMS: 0.0021596761331273725 - syst_JES_Zjet_OOC: 0.004601843407809527 - syst_JES_Zjet_Stat1: 1.639192371260921e-11 - syst_JES_Zjet_Stat10: 0.0004488908191308884 - syst_JES_Zjet_Stat11: 0.0005629833478887276 - syst_JES_Zjet_Stat12: 0.003483050817889397 - syst_JES_Zjet_Stat13: 0.001209613991114521 - syst_JES_Zjet_Stat2: 7.374206177576059e-07 - syst_JES_Zjet_Stat3: 4.262577037427007e-05 - syst_JES_Zjet_Stat4: 5.796315333933744e-06 - syst_JES_Zjet_Stat5: 1.581412542633958e-11 - syst_JES_Zjet_Stat6: 3.268977936603427e-11 - syst_JES_Zjet_Stat7: 5.3415579492995476e-05 - syst_JES_Zjet_Stat8: 5.962442693751341e-05 - syst_JES_Zjet_Stat9: 0.00016691805399881104 - syst_JES_Zjet_Veto: 0.0006501323403738657 - syst_JES_Zjet_dPhi: 0.000526808162427273 + syst_JES_Zjet_MC: 1.25597367e-02 + syst_JES_Zjet_MuScale: 5.63818648e-04 + syst_JES_Zjet_MuSmearID: 1.03368792e-04 + syst_JES_Zjet_MuSmearMS: 2.15967613e-03 + syst_JES_Zjet_OOC: 4.60184341e-03 + syst_JES_Zjet_Stat1: 1.63919237e-11 + syst_JES_Zjet_Stat10: 4.48890819e-04 + syst_JES_Zjet_Stat11: 5.62983348e-04 + syst_JES_Zjet_Stat12: 3.48305082e-03 + syst_JES_Zjet_Stat13: 1.20961399e-03 + syst_JES_Zjet_Stat2: 7.37420618e-07 + syst_JES_Zjet_Stat3: 4.26257704e-05 + syst_JES_Zjet_Stat4: 5.79631533e-06 + syst_JES_Zjet_Stat5: 1.58141254e-11 + syst_JES_Zjet_Stat6: 3.26897794e-11 + syst_JES_Zjet_Stat7: 5.34155795e-05 + syst_JES_Zjet_Stat8: 5.96244269e-05 + syst_JES_Zjet_Stat9: 1.66918054e-04 + syst_JES_Zjet_Veto: 6.50132340e-04 + syst_JES_Zjet_dPhi: 5.26808162e-04 syst_PRW: 0.0 syst_Unfolding_bias: 0.0 - syst_cleaning: 0.00558586385440963 + syst_cleaning: 5.58586385e-03 syst_lumi: 0.013319 - stat: 0.007249 syst_JER_CROSS_CALIB_FORWARD: 4.46e-12 - syst_JER_NOISE_FORWARD: 0.0001869 - syst_JER_NP0: 0.001331535860388296 - syst_JER_NP1: 0.00037410230723025487 - syst_JER_NP2: 0.000146728016411318 - syst_JER_NP3: 0.00047228958013066516 + syst_JER_NOISE_FORWARD: 1.86900000e-04 + syst_JER_NP0: 1.33153586e-03 + syst_JER_NP1: 3.74102307e-04 + syst_JER_NP2: 1.46728016e-04 + syst_JER_NP3: 4.72289580e-04 syst_JER_NP4: 0.0 syst_JER_NP5: 0.0 syst_JER_NP6: 0.0 - syst_JER_NP7: 1.7168345144480297e-14 - syst_JER_NP8: 0.00023663403706990254 - syst_JES_EtaIntercalibration_Modelling: 0.01079187036615989 - syst_JES_EtaIntercalibration_NonClosure: 0.0014494181134165531 - syst_JES_EtaIntercalibration_Stat0: 0.0038808879628250024 + syst_JER_NP7: 1.71683451e-14 + syst_JER_NP8: 2.36634037e-04 + syst_JES_EtaIntercalibration_Modelling: 1.07918704e-02 + syst_JES_EtaIntercalibration_NonClosure: 1.44941811e-03 + syst_JES_EtaIntercalibration_Stat0: 3.88088796e-03 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 syst_JES_EtaIntercalibration_Stat100: 0.0 @@ -32950,97 +32950,97 @@ bins: syst_JES_EtaIntercalibration_Stat98: 0.0 syst_JES_EtaIntercalibration_Stat99: 0.0 syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0 - syst_JES_Flavour_Comp: 0.002798264596138114 - syst_JES_Flavour_Response: 0.005668467341354275 - syst_JES_Gjet_Generator: 0.007868890058324618 - syst_JES_Gjet_OOC: 0.0057597091072379685 - syst_JES_Gjet_Purity: 0.0017899432951912193 - syst_JES_Gjet_Stat1: 2.3372867713057976e-06 - syst_JES_Gjet_Stat10: 9.766168478477115e-05 - syst_JES_Gjet_Stat11: 0.00018089358750381394 - syst_JES_Gjet_Stat12: 0.0008838275963105021 - syst_JES_Gjet_Stat13: 0.0007352672082311301 - syst_JES_Gjet_Stat14: 0.00018575549899464618 - syst_JES_Gjet_Stat15: 4.924602217438481e-17 - syst_JES_Gjet_Stat2: 2.5946121097381785e-06 - syst_JES_Gjet_Stat3: 6.480279297165265e-10 - syst_JES_Gjet_Stat4: 1.2644881494106618e-12 - syst_JES_Gjet_Stat5: 2.271343380028656e-12 - syst_JES_Gjet_Stat6: 5.065218751445983e-05 - syst_JES_Gjet_Stat7: 1.540359920862897e-05 - syst_JES_Gjet_Stat8: 2.5669820938214585e-05 - syst_JES_Gjet_Stat9: 4.272377408056901e-05 - syst_JES_Gjet_Veto: 0.0033004155420189134 - syst_JES_Gjet_dPhi: 0.00038795138870739975 - syst_JES_LArESZee: 0.010395321098936771 - syst_JES_LArEsmear: 0.0007387774681864627 - syst_JES_LAr_JVT: 0.0011720518450563523 - syst_JES_MJB_Alpha: 1.2189307558265976e-06 - syst_JES_MJB_Asym: 0.00012962236255754638 - syst_JES_MJB_Beta: 2.4473877910948237e-05 - syst_JES_MJB_Fragmentation: 0.000881354189585549 - syst_JES_MJB_Stat1: 4.3559069895553034e-07 - syst_JES_MJB_Stat10: 1.013745806008587e-05 + syst_JES_Flavour_Comp: 2.79826460e-03 + syst_JES_Flavour_Response: 5.66846734e-03 + syst_JES_Gjet_Generator: 7.86889006e-03 + syst_JES_Gjet_OOC: 5.75970911e-03 + syst_JES_Gjet_Purity: 1.78994330e-03 + syst_JES_Gjet_Stat1: 2.33728677e-06 + syst_JES_Gjet_Stat10: 9.76616848e-05 + syst_JES_Gjet_Stat11: 1.80893588e-04 + syst_JES_Gjet_Stat12: 8.83827596e-04 + syst_JES_Gjet_Stat13: 7.35267208e-04 + syst_JES_Gjet_Stat14: 1.85755499e-04 + syst_JES_Gjet_Stat15: 4.92460222e-17 + syst_JES_Gjet_Stat2: 2.59461211e-06 + syst_JES_Gjet_Stat3: 6.48027930e-10 + syst_JES_Gjet_Stat4: 1.26448815e-12 + syst_JES_Gjet_Stat5: 2.27134338e-12 + syst_JES_Gjet_Stat6: 5.06521875e-05 + syst_JES_Gjet_Stat7: 1.54035992e-05 + syst_JES_Gjet_Stat8: 2.56698209e-05 + syst_JES_Gjet_Stat9: 4.27237741e-05 + syst_JES_Gjet_Veto: 3.30041554e-03 + syst_JES_Gjet_dPhi: 3.87951389e-04 + syst_JES_LArESZee: 1.03953211e-02 + syst_JES_LArEsmear: 7.38777468e-04 + syst_JES_LAr_JVT: 1.17205185e-03 + syst_JES_MJB_Alpha: 1.21893076e-06 + syst_JES_MJB_Asym: 1.29622363e-04 + syst_JES_MJB_Beta: 2.44738779e-05 + syst_JES_MJB_Fragmentation: 8.81354190e-04 + syst_JES_MJB_Stat1: 4.35590699e-07 + syst_JES_MJB_Stat10: 1.01374581e-05 syst_JES_MJB_Stat11: 0.0 syst_JES_MJB_Stat12: 0.0 syst_JES_MJB_Stat13: 0.0 syst_JES_MJB_Stat14: 0.0 - syst_JES_MJB_Stat15: 4.202821284565881e-11 - syst_JES_MJB_Stat16: 3.944183536234084e-11 - syst_JES_MJB_Stat2: 1.799190026095076e-05 - syst_JES_MJB_Stat3: 5.499754267237764e-06 + syst_JES_MJB_Stat15: 4.20282128e-11 + syst_JES_MJB_Stat16: 3.94418354e-11 + syst_JES_MJB_Stat2: 1.79919003e-05 + syst_JES_MJB_Stat3: 5.49975427e-06 syst_JES_MJB_Stat4: 0.0 - syst_JES_MJB_Stat5: 1.908719989940903e-05 - syst_JES_MJB_Stat6: 9.14134410248296e-06 - syst_JES_MJB_Stat7: 2.1988385002086896e-05 - syst_JES_MJB_Stat8: 3.223346552885681e-07 - syst_JES_MJB_Stat9: 1.0148413032095217e-05 - syst_JES_MJB_Threshold: 0.0003405682750932623 - syst_JES_Pileup_MuOffset: 0.0007498408431127235 - syst_JES_Pileup_NPVOffset: 0.000789807881702886 - syst_JES_Pileup_Pt_term: 0.0018363136986909397 - syst_JES_Pileup_Rho_topology: 0.0025936302743452084 - syst_JES_PunchThrough_MC15: 2.828980022463927e-05 + syst_JES_MJB_Stat5: 1.90871999e-05 + syst_JES_MJB_Stat6: 9.14134410e-06 + syst_JES_MJB_Stat7: 2.19883850e-05 + syst_JES_MJB_Stat8: 3.22334655e-07 + syst_JES_MJB_Stat9: 1.01484130e-05 + syst_JES_MJB_Threshold: 3.40568275e-04 + syst_JES_Pileup_MuOffset: 7.49840843e-04 + syst_JES_Pileup_NPVOffset: 7.89807882e-04 + syst_JES_Pileup_Pt_term: 1.83631370e-03 + syst_JES_Pileup_Rho_topology: 2.59363027e-03 + syst_JES_PunchThrough_MC15: 2.82898002e-05 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.006698883563699252 - syst_JES_Zjet_MuScale: 0.0003538055398096531 - syst_JES_Zjet_MuSmearID: 5.368491477330542e-05 - syst_JES_Zjet_MuSmearMS: 0.0013685052676186526 - syst_JES_Zjet_OOC: 0.002553386134136394 - syst_JES_Zjet_Stat1: 1.2584705032300121e-12 - syst_JES_Zjet_Stat10: 0.0002690777025321868 - syst_JES_Zjet_Stat11: 0.00034345248579679835 - syst_JES_Zjet_Stat12: 0.0020003926489566993 - syst_JES_Zjet_Stat13: 0.0010345743665875354 - syst_JES_Zjet_Stat2: 3.9300232709483096e-07 - syst_JES_Zjet_Stat3: 2.2144269574768097e-05 - syst_JES_Zjet_Stat4: 7.512561752178814e-07 - syst_JES_Zjet_Stat5: 1.2145298926230676e-12 - syst_JES_Zjet_Stat6: 2.526801535538555e-12 - syst_JES_Zjet_Stat7: 9.339157651733341e-06 - syst_JES_Zjet_Stat8: 1.0944992335055276e-05 - syst_JES_Zjet_Stat9: 8.41647785464175e-05 - syst_JES_Zjet_Veto: 0.0004197477426979209 - syst_JES_Zjet_dPhi: 0.0003895468264535087 + syst_JES_Zjet_MC: 6.69888356e-03 + syst_JES_Zjet_MuScale: 3.53805540e-04 + syst_JES_Zjet_MuSmearID: 5.36849148e-05 + syst_JES_Zjet_MuSmearMS: 1.36850527e-03 + syst_JES_Zjet_OOC: 2.55338613e-03 + syst_JES_Zjet_Stat1: 1.25847050e-12 + syst_JES_Zjet_Stat10: 2.69077703e-04 + syst_JES_Zjet_Stat11: 3.43452486e-04 + syst_JES_Zjet_Stat12: 2.00039265e-03 + syst_JES_Zjet_Stat13: 1.03457437e-03 + syst_JES_Zjet_Stat2: 3.93002327e-07 + syst_JES_Zjet_Stat3: 2.21442696e-05 + syst_JES_Zjet_Stat4: 7.51256175e-07 + syst_JES_Zjet_Stat5: 1.21452989e-12 + syst_JES_Zjet_Stat6: 2.52680154e-12 + syst_JES_Zjet_Stat7: 9.33915765e-06 + syst_JES_Zjet_Stat8: 1.09449923e-05 + syst_JES_Zjet_Stat9: 8.41647785e-05 + syst_JES_Zjet_Veto: 4.19747743e-04 + syst_JES_Zjet_dPhi: 3.89546826e-04 syst_PRW: 0.0 syst_Unfolding_bias: 0.0 - syst_cleaning: 0.0029401562458481693 + syst_cleaning: 2.94015625e-03 syst_lumi: 0.006918 - stat: 0.004325 - syst_JER_CROSS_CALIB_FORWARD: 3.8856e-13 - syst_JER_NOISE_FORWARD: 0.0001038 - syst_JER_NP0: 0.0007004212500345774 - syst_JER_NP1: 0.00021450095821464292 - syst_JER_NP2: 0.0002806763750300335 - syst_JER_NP3: 0.00019849344649131365 + syst_JER_CROSS_CALIB_FORWARD: 3.88560000e-13 + syst_JER_NOISE_FORWARD: 1.03800000e-04 + syst_JER_NP0: 7.00421250e-04 + syst_JER_NP1: 2.14500958e-04 + syst_JER_NP2: 2.80676375e-04 + syst_JER_NP3: 1.98493446e-04 syst_JER_NP4: 0.0 syst_JER_NP5: 0.0 syst_JER_NP6: 0.0 - syst_JER_NP7: 2.0882650693817583e-15 - syst_JER_NP8: 0.00013143711604794134 - syst_JES_EtaIntercalibration_Modelling: 0.006619175534007238 - syst_JES_EtaIntercalibration_NonClosure: 0.0007548022704655836 - syst_JES_EtaIntercalibration_Stat0: 0.0021899823629426794 + syst_JER_NP7: 2.08826507e-15 + syst_JER_NP8: 1.31437116e-04 + syst_JES_EtaIntercalibration_Modelling: 6.61917553e-03 + syst_JES_EtaIntercalibration_NonClosure: 7.54802270e-04 + syst_JES_EtaIntercalibration_Stat0: 2.18998236e-03 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 syst_JES_EtaIntercalibration_Stat100: 0.0 @@ -33287,97 +33287,97 @@ bins: syst_JES_EtaIntercalibration_Stat98: 0.0 syst_JES_EtaIntercalibration_Stat99: 0.0 syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0 - syst_JES_Flavour_Comp: 0.001961418555535763 - syst_JES_Flavour_Response: 0.002696968297922688 - syst_JES_Gjet_Generator: 0.00444509288429387 - syst_JES_Gjet_OOC: 0.0033633557647088125 - syst_JES_Gjet_Purity: 0.0011389723032190029 - syst_JES_Gjet_Stat1: 1.2981635645798596e-06 - syst_JES_Gjet_Stat10: 7.466005006025646e-05 - syst_JES_Gjet_Stat11: 9.562377881573182e-05 - syst_JES_Gjet_Stat12: 0.0005390910127241966 - syst_JES_Gjet_Stat13: 0.0006787921920588067 - syst_JES_Gjet_Stat14: 8.467656464453431e-05 - syst_JES_Gjet_Stat15: 1.0990251316507737e-12 - syst_JES_Gjet_Stat2: 1.4402002464935215e-06 - syst_JES_Gjet_Stat3: 4.760328960637384e-11 - syst_JES_Gjet_Stat4: 1.0972522180428711e-13 - syst_JES_Gjet_Stat5: 1.970616401027861e-13 - syst_JES_Gjet_Stat6: 3.227093855158229e-05 - syst_JES_Gjet_Stat7: 2.132162569176363e-06 - syst_JES_Gjet_Stat8: 1.4257702155326433e-05 - syst_JES_Gjet_Stat9: 2.3351495570041652e-05 - syst_JES_Gjet_Veto: 0.0021831722332422607 - syst_JES_Gjet_dPhi: 0.00028137098286781456 - syst_JES_LArESZee: 0.006261926301067428 - syst_JES_LArEsmear: 0.000489662863611281 - syst_JES_LAr_JVT: 0.0007536966100494283 - syst_JES_MJB_Alpha: 6.770586606764819e-07 - syst_JES_MJB_Asym: 0.00018888178181074004 - syst_JES_MJB_Beta: 1.3657220617680598e-05 - syst_JES_MJB_Fragmentation: 0.0006603487033378653 - syst_JES_MJB_Stat1: 2.4468505226106477e-07 - syst_JES_MJB_Stat10: 9.154263306651169e-06 + syst_JES_Flavour_Comp: 1.96141856e-03 + syst_JES_Flavour_Response: 2.69696830e-03 + syst_JES_Gjet_Generator: 4.44509288e-03 + syst_JES_Gjet_OOC: 3.36335576e-03 + syst_JES_Gjet_Purity: 1.13897230e-03 + syst_JES_Gjet_Stat1: 1.29816356e-06 + syst_JES_Gjet_Stat10: 7.46600501e-05 + syst_JES_Gjet_Stat11: 9.56237788e-05 + syst_JES_Gjet_Stat12: 5.39091013e-04 + syst_JES_Gjet_Stat13: 6.78792192e-04 + syst_JES_Gjet_Stat14: 8.46765646e-05 + syst_JES_Gjet_Stat15: 1.09902513e-12 + syst_JES_Gjet_Stat2: 1.44020025e-06 + syst_JES_Gjet_Stat3: 4.76032896e-11 + syst_JES_Gjet_Stat4: 1.09725222e-13 + syst_JES_Gjet_Stat5: 1.97061640e-13 + syst_JES_Gjet_Stat6: 3.22709386e-05 + syst_JES_Gjet_Stat7: 2.13216257e-06 + syst_JES_Gjet_Stat8: 1.42577022e-05 + syst_JES_Gjet_Stat9: 2.33514956e-05 + syst_JES_Gjet_Veto: 2.18317223e-03 + syst_JES_Gjet_dPhi: 2.81370983e-04 + syst_JES_LArESZee: 6.26192630e-03 + syst_JES_LArEsmear: 4.89662864e-04 + syst_JES_LAr_JVT: 7.53696610e-04 + syst_JES_MJB_Alpha: 6.77058661e-07 + syst_JES_MJB_Asym: 1.88881782e-04 + syst_JES_MJB_Beta: 1.36572206e-05 + syst_JES_MJB_Fragmentation: 6.60348703e-04 + syst_JES_MJB_Stat1: 2.44685052e-07 + syst_JES_MJB_Stat10: 9.15426331e-06 syst_JES_MJB_Stat11: 0.0 syst_JES_MJB_Stat12: 0.0 syst_JES_MJB_Stat13: 0.0 syst_JES_MJB_Stat14: 0.0 - syst_JES_MJB_Stat15: 1.2075858230370213e-09 - syst_JES_MJB_Stat16: 1.116530702130488e-09 - syst_JES_MJB_Stat2: 9.991661360854861e-06 - syst_JES_MJB_Stat3: 3.054779329182388e-06 + syst_JES_MJB_Stat15: 1.20758582e-09 + syst_JES_MJB_Stat16: 1.11653070e-09 + syst_JES_MJB_Stat2: 9.99166136e-06 + syst_JES_MJB_Stat3: 3.05477933e-06 syst_JES_MJB_Stat4: 0.0 - syst_JES_MJB_Stat5: 1.0648648364933459e-05 - syst_JES_MJB_Stat6: 5.140952708399485e-06 - syst_JES_MJB_Stat7: 2.785137698570755e-06 - syst_JES_MJB_Stat8: 2.4768326548234947e-07 - syst_JES_MJB_Stat9: 9.159028196675672e-06 - syst_JES_MJB_Threshold: 0.000338537412998918 - syst_JES_Pileup_MuOffset: 0.0006072401419537415 - syst_JES_Pileup_NPVOffset: 0.00046602766012330215 - syst_JES_Pileup_Pt_term: 0.0011360028521090956 - syst_JES_Pileup_Rho_topology: 0.0015408246980107762 - syst_JES_PunchThrough_MC15: 6.40608513446395e-05 + syst_JES_MJB_Stat5: 1.06486484e-05 + syst_JES_MJB_Stat6: 5.14095271e-06 + syst_JES_MJB_Stat7: 2.78513770e-06 + syst_JES_MJB_Stat8: 2.47683265e-07 + syst_JES_MJB_Stat9: 9.15902820e-06 + syst_JES_MJB_Threshold: 3.38537413e-04 + syst_JES_Pileup_MuOffset: 6.07240142e-04 + syst_JES_Pileup_NPVOffset: 4.66027660e-04 + syst_JES_Pileup_Pt_term: 1.13600285e-03 + syst_JES_Pileup_Rho_topology: 1.54082470e-03 + syst_JES_PunchThrough_MC15: 6.40608513e-05 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.003658974472102805 - syst_JES_Zjet_MuScale: 0.0002965785014123579 - syst_JES_Zjet_MuSmearID: 2.960940855461804e-05 - syst_JES_Zjet_MuSmearMS: 0.0009608871564861297 - syst_JES_Zjet_OOC: 0.001540174990057948 - syst_JES_Zjet_Stat1: 1.092191494198705e-13 - syst_JES_Zjet_Stat10: 0.00018404813147652438 - syst_JES_Zjet_Stat11: 0.00022102843142908108 - syst_JES_Zjet_Stat12: 0.0011646830341341804 - syst_JES_Zjet_Stat13: 0.0008406296271248118 - syst_JES_Zjet_Stat2: 2.8414293487148123e-07 - syst_JES_Zjet_Stat3: 1.2297560733739029e-05 - syst_JES_Zjet_Stat4: 1.5503432974667258e-07 - syst_JES_Zjet_Stat5: 1.0548567249039083e-13 - syst_JES_Zjet_Stat6: 2.2109207923396984e-13 - syst_JES_Zjet_Stat7: 1.0284047129088362e-05 - syst_JES_Zjet_Stat8: 1.5137611440568555e-06 - syst_JES_Zjet_Stat9: 4.6160028194262136e-05 - syst_JES_Zjet_Veto: 0.00031270314996814473 - syst_JES_Zjet_dPhi: 0.00031534701520705724 + syst_JES_Zjet_MC: 3.65897447e-03 + syst_JES_Zjet_MuScale: 2.96578501e-04 + syst_JES_Zjet_MuSmearID: 2.96094086e-05 + syst_JES_Zjet_MuSmearMS: 9.60887156e-04 + syst_JES_Zjet_OOC: 1.54017499e-03 + syst_JES_Zjet_Stat1: 1.09219149e-13 + syst_JES_Zjet_Stat10: 1.84048131e-04 + syst_JES_Zjet_Stat11: 2.21028431e-04 + syst_JES_Zjet_Stat12: 1.16468303e-03 + syst_JES_Zjet_Stat13: 8.40629627e-04 + syst_JES_Zjet_Stat2: 2.84142935e-07 + syst_JES_Zjet_Stat3: 1.22975607e-05 + syst_JES_Zjet_Stat4: 1.55034330e-07 + syst_JES_Zjet_Stat5: 1.05485672e-13 + syst_JES_Zjet_Stat6: 2.21092079e-13 + syst_JES_Zjet_Stat7: 1.02840471e-05 + syst_JES_Zjet_Stat8: 1.51376114e-06 + syst_JES_Zjet_Stat9: 4.61600282e-05 + syst_JES_Zjet_Veto: 3.12703150e-04 + syst_JES_Zjet_dPhi: 3.15347015e-04 syst_PRW: 0.0 syst_Unfolding_bias: 0.0 - syst_cleaning: 0.0016541085212282778 - syst_lumi: 0.0038427 -- stat: 0.0023643 - syst_JER_CROSS_CALIB_FORWARD: 3.548e-14 - syst_JER_NOISE_FORWARD: 5.169e-05 - syst_JER_NP0: 0.00034254999635089766 - syst_JER_NP1: 0.0001293231560858302 - syst_JER_NP2: 0.00019469391361827415 - syst_JER_NP3: 6.371961609269158e-05 + syst_cleaning: 1.65410852e-03 + syst_lumi: 3.84270000e-03 +- stat: 2.36430000e-03 + syst_JER_CROSS_CALIB_FORWARD: 3.54800000e-14 + syst_JER_NOISE_FORWARD: 5.16900000e-05 + syst_JER_NP0: 3.42549996e-04 + syst_JER_NP1: 1.29323156e-04 + syst_JER_NP2: 1.94693914e-04 + syst_JER_NP3: 6.37196161e-05 syst_JER_NP4: 0.0 syst_JER_NP5: 0.0 syst_JER_NP6: 0.0 - syst_JER_NP7: 2.647959969485944e-16 - syst_JER_NP8: 6.526215059282064e-05 - syst_JES_EtaIntercalibration_Modelling: 0.0036690010902151555 - syst_JES_EtaIntercalibration_NonClosure: 0.000339150980648737 - syst_JES_EtaIntercalibration_Stat0: 0.0011070429079308535 + syst_JER_NP7: 2.64795997e-16 + syst_JER_NP8: 6.52621506e-05 + syst_JES_EtaIntercalibration_Modelling: 3.66900109e-03 + syst_JES_EtaIntercalibration_NonClosure: 3.39150981e-04 + syst_JES_EtaIntercalibration_Stat0: 1.10704291e-03 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 syst_JES_EtaIntercalibration_Stat100: 0.0 @@ -33624,97 +33624,97 @@ bins: syst_JES_EtaIntercalibration_Stat98: 0.0 syst_JES_EtaIntercalibration_Stat99: 0.0 syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0 - syst_JES_Flavour_Comp: 0.0011494015877838346 - syst_JES_Flavour_Response: 0.00113606155092935 - syst_JES_Gjet_Generator: 0.0022563479341626367 - syst_JES_Gjet_OOC: 0.001731788381991287 - syst_JES_Gjet_Purity: 0.0006087136272501217 - syst_JES_Gjet_Stat1: 6.464873579982476e-07 - syst_JES_Gjet_Stat10: 4.855804439019347e-05 - syst_JES_Gjet_Stat11: 4.687619305148403e-05 - syst_JES_Gjet_Stat12: 0.0002750920345993319 - syst_JES_Gjet_Stat13: 0.00045332784957467597 - syst_JES_Gjet_Stat14: 0.00019527623383299873 - syst_JES_Gjet_Stat15: 9.285221806720613e-10 - syst_JES_Gjet_Stat2: 7.172422394142721e-07 - syst_JES_Gjet_Stat3: 3.3806727098091e-12 - syst_JES_Gjet_Stat4: 9.978763688453595e-15 - syst_JES_Gjet_Stat5: 1.7906825514311574e-14 - syst_JES_Gjet_Stat6: 1.6751812200475508e-05 - syst_JES_Gjet_Stat7: 2.1938976408308115e-07 - syst_JES_Gjet_Stat8: 7.098675557454362e-06 - syst_JES_Gjet_Stat9: 1.1598873062960384e-05 - syst_JES_Gjet_Veto: 0.0012554326266271717 - syst_JES_Gjet_dPhi: 0.0001502669624368577 - syst_JES_LArESZee: 0.0033572900902364695 - syst_JES_LArEsmear: 0.0002836435218720851 - syst_JES_LAr_JVT: 0.0004004605723413979 - syst_JES_MJB_Alpha: 3.3712634686773754e-07 - syst_JES_MJB_Asym: 0.00015006898013913465 - syst_JES_MJB_Beta: 6.806093648341904e-06 - syst_JES_MJB_Fragmentation: 0.0003843152189284208 - syst_JES_MJB_Stat1: 1.2647552609101888e-07 - syst_JES_MJB_Stat10: 3.434950484359272e-06 + syst_JES_Flavour_Comp: 1.14940159e-03 + syst_JES_Flavour_Response: 1.13606155e-03 + syst_JES_Gjet_Generator: 2.25634793e-03 + syst_JES_Gjet_OOC: 1.73178838e-03 + syst_JES_Gjet_Purity: 6.08713627e-04 + syst_JES_Gjet_Stat1: 6.46487358e-07 + syst_JES_Gjet_Stat10: 4.85580444e-05 + syst_JES_Gjet_Stat11: 4.68761931e-05 + syst_JES_Gjet_Stat12: 2.75092035e-04 + syst_JES_Gjet_Stat13: 4.53327850e-04 + syst_JES_Gjet_Stat14: 1.95276234e-04 + syst_JES_Gjet_Stat15: 9.28522181e-10 + syst_JES_Gjet_Stat2: 7.17242239e-07 + syst_JES_Gjet_Stat3: 3.38067271e-12 + syst_JES_Gjet_Stat4: 9.97876369e-15 + syst_JES_Gjet_Stat5: 1.79068255e-14 + syst_JES_Gjet_Stat6: 1.67518122e-05 + syst_JES_Gjet_Stat7: 2.19389764e-07 + syst_JES_Gjet_Stat8: 7.09867556e-06 + syst_JES_Gjet_Stat9: 1.15988731e-05 + syst_JES_Gjet_Veto: 1.25543263e-03 + syst_JES_Gjet_dPhi: 1.50266962e-04 + syst_JES_LArESZee: 3.35729009e-03 + syst_JES_LArEsmear: 2.83643522e-04 + syst_JES_LAr_JVT: 4.00460572e-04 + syst_JES_MJB_Alpha: 3.37126347e-07 + syst_JES_MJB_Asym: 1.50068980e-04 + syst_JES_MJB_Beta: 6.80609365e-06 + syst_JES_MJB_Fragmentation: 3.84315219e-04 + syst_JES_MJB_Stat1: 1.26475526e-07 + syst_JES_MJB_Stat10: 3.43495048e-06 syst_JES_MJB_Stat11: 0.0 syst_JES_MJB_Stat12: 0.0 syst_JES_MJB_Stat13: 0.0 syst_JES_MJB_Stat14: 0.0 - syst_JES_MJB_Stat15: 6.607773830875266e-09 - syst_JES_MJB_Stat16: 6.003942135588917e-09 - syst_JES_MJB_Stat2: 4.975206829871497e-06 - syst_JES_MJB_Stat3: 1.5212880619724852e-06 + syst_JES_MJB_Stat15: 6.60777383e-09 + syst_JES_MJB_Stat16: 6.00394214e-09 + syst_JES_MJB_Stat2: 4.97520683e-06 + syst_JES_MJB_Stat3: 1.52128806e-06 syst_JES_MJB_Stat4: 0.0 - syst_JES_MJB_Stat5: 5.306137648987255e-06 - syst_JES_MJB_Stat6: 2.5658626229788686e-06 - syst_JES_MJB_Stat7: 3.342078635744527e-06 - syst_JES_MJB_Stat8: 1.368320137979413e-07 - syst_JES_MJB_Stat9: 3.4361603960670983e-06 - syst_JES_MJB_Threshold: 0.0002081940200870332 - syst_JES_Pileup_MuOffset: 0.0003726904479591609 - syst_JES_Pileup_NPVOffset: 0.00025795412382824975 - syst_JES_Pileup_Pt_term: 0.0005721577579654059 - syst_JES_Pileup_Rho_topology: 0.0008270525013564738 - syst_JES_PunchThrough_MC15: 7.23295810854729e-05 + syst_JES_MJB_Stat5: 5.30613765e-06 + syst_JES_MJB_Stat6: 2.56586262e-06 + syst_JES_MJB_Stat7: 3.34207864e-06 + syst_JES_MJB_Stat8: 1.36832014e-07 + syst_JES_MJB_Stat9: 3.43616040e-06 + syst_JES_MJB_Threshold: 2.08194020e-04 + syst_JES_Pileup_MuOffset: 3.72690448e-04 + syst_JES_Pileup_NPVOffset: 2.57954124e-04 + syst_JES_Pileup_Pt_term: 5.72157758e-04 + syst_JES_Pileup_Rho_topology: 8.27052501e-04 + syst_JES_PunchThrough_MC15: 7.23295811e-05 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.0017552922833534023 - syst_JES_Zjet_MuScale: 0.00016604408661557326 - syst_JES_Zjet_MuSmearID: 1.3683201379708655e-05 - syst_JES_Zjet_MuSmearMS: 0.0005272647535157266 - syst_JES_Zjet_OOC: 0.0008298829721713779 - syst_JES_Zjet_Stat1: 9.93473507447481e-15 - syst_JES_Zjet_Stat10: 8.480568259261875e-05 - syst_JES_Zjet_Stat11: 0.00010369682540945985 - syst_JES_Zjet_Stat12: 0.0005419875367570734 - syst_JES_Zjet_Stat13: 0.0005005695519106211 - syst_JES_Zjet_Stat2: 2.517535848689695e-07 - syst_JES_Zjet_Stat3: 6.123665630159766e-06 - syst_JES_Zjet_Stat4: 6.011544574591459e-07 - syst_JES_Zjet_Stat5: 9.597221244063304e-15 - syst_JES_Zjet_Stat6: 2.029687352771357e-14 - syst_JES_Zjet_Stat7: 9.25781121620616e-06 - syst_JES_Zjet_Stat8: 1.5579422898182281e-07 - syst_JES_Zjet_Stat9: 2.1416246821333303e-05 - syst_JES_Zjet_Veto: 0.0001673111090155104 - syst_JES_Zjet_dPhi: 0.00016841611168471975 + syst_JES_Zjet_MC: 1.75529228e-03 + syst_JES_Zjet_MuScale: 1.66044087e-04 + syst_JES_Zjet_MuSmearID: 1.36832014e-05 + syst_JES_Zjet_MuSmearMS: 5.27264754e-04 + syst_JES_Zjet_OOC: 8.29882972e-04 + syst_JES_Zjet_Stat1: 9.93473507e-15 + syst_JES_Zjet_Stat10: 8.48056826e-05 + syst_JES_Zjet_Stat11: 1.03696825e-04 + syst_JES_Zjet_Stat12: 5.41987537e-04 + syst_JES_Zjet_Stat13: 5.00569552e-04 + syst_JES_Zjet_Stat2: 2.51753585e-07 + syst_JES_Zjet_Stat3: 6.12366563e-06 + syst_JES_Zjet_Stat4: 6.01154457e-07 + syst_JES_Zjet_Stat5: 9.59722124e-15 + syst_JES_Zjet_Stat6: 2.02968735e-14 + syst_JES_Zjet_Stat7: 9.25781122e-06 + syst_JES_Zjet_Stat8: 1.55794229e-07 + syst_JES_Zjet_Stat9: 2.14162468e-05 + syst_JES_Zjet_Veto: 1.67311109e-04 + syst_JES_Zjet_dPhi: 1.68416112e-04 syst_PRW: 0.0 syst_Unfolding_bias: 0.0 - syst_cleaning: 0.0008371001552980383 + syst_cleaning: 8.37100155e-04 syst_lumi: 0.001913 -- stat: 0.0012459 - syst_JER_CROSS_CALIB_FORWARD: 3.518e-15 - syst_JER_NOISE_FORWARD: 2.559e-05 - syst_JER_NP0: 0.00017097896800483974 - syst_JER_NP1: 7.932844808137873e-05 - syst_JER_NP2: 0.00010289446085674387 - syst_JER_NP3: 2.6003569043498623e-05 +- stat: 1.24590000e-03 + syst_JER_CROSS_CALIB_FORWARD: 3.51800000e-15 + syst_JER_NOISE_FORWARD: 2.55900000e-05 + syst_JER_NP0: 1.70978968e-04 + syst_JER_NP1: 7.93284481e-05 + syst_JER_NP2: 1.02894461e-04 + syst_JER_NP3: 2.60035690e-05 syst_JER_NP4: 0.0 syst_JER_NP5: 0.0 syst_JER_NP6: 0.0 - syst_JER_NP7: 3.6456737374592366e-17 - syst_JER_NP8: 3.1447090087955676e-05 - syst_JES_EtaIntercalibration_Modelling: 0.002064145525393014 - syst_JES_EtaIntercalibration_NonClosure: 0.0001647034304439346 - syst_JES_EtaIntercalibration_Stat0: 0.0005626568670157682 + syst_JER_NP7: 3.64567374e-17 + syst_JER_NP8: 3.14470901e-05 + syst_JES_EtaIntercalibration_Modelling: 2.06414553e-03 + syst_JES_EtaIntercalibration_NonClosure: 1.64703430e-04 + syst_JES_EtaIntercalibration_Stat0: 5.62656867e-04 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 syst_JES_EtaIntercalibration_Stat100: 0.0 @@ -33961,97 +33961,97 @@ bins: syst_JES_EtaIntercalibration_Stat98: 0.0 syst_JES_EtaIntercalibration_Stat99: 0.0 syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0 - syst_JES_Flavour_Comp: 0.0006535749765711659 - syst_JES_Flavour_Response: 0.00046208388848779393 - syst_JES_Gjet_Generator: 0.001188952878586868 - syst_JES_Gjet_OOC: 0.0009262725948661118 - syst_JES_Gjet_Purity: 0.00029400749565274687 - syst_JES_Gjet_Stat1: 3.2112217570033595e-07 - syst_JES_Gjet_Stat10: 2.406684597116955e-05 - syst_JES_Gjet_Stat11: 2.2579594216903013e-05 - syst_JES_Gjet_Stat12: 0.00013989548777569631 - syst_JES_Gjet_Stat13: 0.0002616693476508091 - syst_JES_Gjet_Stat14: 0.00019323334986487192 - syst_JES_Gjet_Stat15: 9.217401423394773e-08 - syst_JES_Gjet_Stat2: 3.550704155516198e-07 - syst_JES_Gjet_Stat3: 2.447252117538516e-13 - syst_JES_Gjet_Stat4: 9.8483075068765e-16 - syst_JES_Gjet_Stat5: 1.7659244038180117e-15 - syst_JES_Gjet_Stat6: 8.348629168911505e-06 - syst_JES_Gjet_Stat7: 1.9039465828317637e-08 - syst_JES_Gjet_Stat8: 3.488048176272799e-06 - syst_JES_Gjet_Stat9: 5.740708034228236e-06 - syst_JES_Gjet_Veto: 0.0007088526010391724 - syst_JES_Gjet_dPhi: 7.616282754730157e-05 - syst_JES_LArESZee: 0.00175660375440792 - syst_JES_LArEsmear: 0.00015553610513318122 - syst_JES_LAr_JVT: 0.00019264310914226857 - syst_JES_MJB_Alpha: 1.6686671942877607e-07 - syst_JES_MJB_Asym: 8.42842262822647e-05 - syst_JES_MJB_Beta: 3.3699646537463863e-06 - syst_JES_MJB_Fragmentation: 0.00018606501551876966 - syst_JES_MJB_Stat1: 1.581122386154848e-07 - syst_JES_MJB_Stat10: 7.668664277923503e-07 + syst_JES_Flavour_Comp: 6.53574977e-04 + syst_JES_Flavour_Response: 4.62083888e-04 + syst_JES_Gjet_Generator: 1.18895288e-03 + syst_JES_Gjet_OOC: 9.26272595e-04 + syst_JES_Gjet_Purity: 2.94007496e-04 + syst_JES_Gjet_Stat1: 3.21122176e-07 + syst_JES_Gjet_Stat10: 2.40668460e-05 + syst_JES_Gjet_Stat11: 2.25795942e-05 + syst_JES_Gjet_Stat12: 1.39895488e-04 + syst_JES_Gjet_Stat13: 2.61669348e-04 + syst_JES_Gjet_Stat14: 1.93233350e-04 + syst_JES_Gjet_Stat15: 9.21740142e-08 + syst_JES_Gjet_Stat2: 3.55070416e-07 + syst_JES_Gjet_Stat3: 2.44725212e-13 + syst_JES_Gjet_Stat4: 9.84830751e-16 + syst_JES_Gjet_Stat5: 1.76592440e-15 + syst_JES_Gjet_Stat6: 8.34862917e-06 + syst_JES_Gjet_Stat7: 1.90394658e-08 + syst_JES_Gjet_Stat8: 3.48804818e-06 + syst_JES_Gjet_Stat9: 5.74070803e-06 + syst_JES_Gjet_Veto: 7.08852601e-04 + syst_JES_Gjet_dPhi: 7.61628275e-05 + syst_JES_LArESZee: 1.75660375e-03 + syst_JES_LArEsmear: 1.55536105e-04 + syst_JES_LAr_JVT: 1.92643109e-04 + syst_JES_MJB_Alpha: 1.66866719e-07 + syst_JES_MJB_Asym: 8.42842263e-05 + syst_JES_MJB_Beta: 3.36996465e-06 + syst_JES_MJB_Fragmentation: 1.86065016e-04 + syst_JES_MJB_Stat1: 1.58112239e-07 + syst_JES_MJB_Stat10: 7.66866428e-07 syst_JES_MJB_Stat11: 0.0 syst_JES_MJB_Stat12: 0.0 syst_JES_MJB_Stat13: 0.0 syst_JES_MJB_Stat14: 0.0 - syst_JES_MJB_Stat15: 1.3336791218280354e-08 - syst_JES_MJB_Stat16: 1.5548699005061484e-08 - syst_JES_MJB_Stat2: 2.452970597051665e-06 - syst_JES_MJB_Stat3: 7.531622053050723e-07 + syst_JES_MJB_Stat15: 1.33367912e-08 + syst_JES_MJB_Stat16: 1.55486990e-08 + syst_JES_MJB_Stat2: 2.45297060e-06 + syst_JES_MJB_Stat3: 7.53162205e-07 syst_JES_MJB_Stat4: 0.0 - syst_JES_MJB_Stat5: 2.6179947956403582e-06 - syst_JES_MJB_Stat6: 1.2708606247342783e-06 - syst_JES_MJB_Stat7: 1.7831463063921879e-06 - syst_JES_MJB_Stat8: 6.966308348042024e-08 - syst_JES_MJB_Stat9: 7.671849979470403e-07 - syst_JES_MJB_Threshold: 9.691474229961094e-05 - syst_JES_Pileup_MuOffset: 0.0002023217981335674 - syst_JES_Pileup_NPVOffset: 0.0001581724969771926 - syst_JES_Pileup_Pt_term: 0.0002598834883173612 - syst_JES_Pileup_Rho_topology: 0.0004163437852304271 - syst_JES_PunchThrough_MC15: 5.237758943479549e-05 + syst_JES_MJB_Stat5: 2.61799480e-06 + syst_JES_MJB_Stat6: 1.27086062e-06 + syst_JES_MJB_Stat7: 1.78314631e-06 + syst_JES_MJB_Stat8: 6.96630835e-08 + syst_JES_MJB_Stat9: 7.67184998e-07 + syst_JES_MJB_Threshold: 9.69147423e-05 + syst_JES_Pileup_MuOffset: 2.02321798e-04 + syst_JES_Pileup_NPVOffset: 1.58172497e-04 + syst_JES_Pileup_Pt_term: 2.59883488e-04 + syst_JES_Pileup_Rho_topology: 4.16343785e-04 + syst_JES_PunchThrough_MC15: 5.23775894e-05 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.0008301364405927499 - syst_JES_Zjet_MuScale: 6.731315974607044e-05 - syst_JES_Zjet_MuSmearID: 4.994368503614575e-06 - syst_JES_Zjet_MuSmearMS: 0.00023180340808538603 - syst_JES_Zjet_OOC: 0.0004118339858183149 - syst_JES_Zjet_Stat1: 9.80860055002751e-16 - syst_JES_Zjet_Stat10: 3.0484270808894215e-05 - syst_JES_Zjet_Stat11: 3.959190194976745e-05 - syst_JES_Zjet_Stat12: 0.00021111212660574475 - syst_JES_Zjet_Stat13: 0.00024087483783077053 - syst_JES_Zjet_Stat2: 2.0239013686319067e-07 - syst_JES_Zjet_Stat3: 3.03195493864932e-06 - syst_JES_Zjet_Stat4: 1.2089728634734477e-06 - syst_JES_Zjet_Stat5: 9.474154541699222e-16 - syst_JES_Zjet_Stat6: 2.0230494309334115e-15 - syst_JES_Zjet_Stat7: 3.6979284453786427e-06 - syst_JES_Zjet_Stat8: 1.3518370904309478e-08 - syst_JES_Zjet_Stat9: 8.003766798181889e-06 - syst_JES_Zjet_Veto: 8.394126205269969e-05 - syst_JES_Zjet_dPhi: 7.107605363271094e-05 + syst_JES_Zjet_MC: 8.30136441e-04 + syst_JES_Zjet_MuScale: 6.73131597e-05 + syst_JES_Zjet_MuSmearID: 4.99436850e-06 + syst_JES_Zjet_MuSmearMS: 2.31803408e-04 + syst_JES_Zjet_OOC: 4.11833986e-04 + syst_JES_Zjet_Stat1: 9.80860055e-16 + syst_JES_Zjet_Stat10: 3.04842708e-05 + syst_JES_Zjet_Stat11: 3.95919019e-05 + syst_JES_Zjet_Stat12: 2.11112127e-04 + syst_JES_Zjet_Stat13: 2.40874838e-04 + syst_JES_Zjet_Stat2: 2.02390137e-07 + syst_JES_Zjet_Stat3: 3.03195494e-06 + syst_JES_Zjet_Stat4: 1.20897286e-06 + syst_JES_Zjet_Stat5: 9.47415454e-16 + syst_JES_Zjet_Stat6: 2.02304943e-15 + syst_JES_Zjet_Stat7: 3.69792845e-06 + syst_JES_Zjet_Stat8: 1.35183709e-08 + syst_JES_Zjet_Stat9: 8.00376680e-06 + syst_JES_Zjet_Veto: 8.39412621e-05 + syst_JES_Zjet_dPhi: 7.10760536e-05 syst_PRW: 0.0 syst_Unfolding_bias: 0.0 - syst_cleaning: 0.00042158116656226477 - syst_lumi: 0.0009474 -- stat: 0.0005856 - syst_JER_CROSS_CALIB_FORWARD: 4.054e-16 - syst_JER_NOISE_FORWARD: 1.323e-05 - syst_JER_NP0: 9.306187981660376e-05 - syst_JER_NP1: 5.021637481937541e-05 - syst_JER_NP2: 5.604964585079909e-05 - syst_JER_NP3: 1.394261621791262e-05 + syst_cleaning: 4.21581167e-04 + syst_lumi: 9.47400000e-04 +- stat: 5.85600000e-04 + syst_JER_CROSS_CALIB_FORWARD: 4.05400000e-16 + syst_JER_NOISE_FORWARD: 1.32300000e-05 + syst_JER_NP0: 9.30618798e-05 + syst_JER_NP1: 5.02163748e-05 + syst_JER_NP2: 5.60496459e-05 + syst_JER_NP3: 1.39426162e-05 syst_JER_NP4: 0.0 syst_JER_NP5: 0.0 syst_JER_NP6: 0.0 - syst_JER_NP7: 5.792050673120876e-18 - syst_JER_NP8: 1.5228972486678148e-05 - syst_JES_EtaIntercalibration_Modelling: 0.0012027509166489961 - syst_JES_EtaIntercalibration_NonClosure: 0.0001023917975230438 - syst_JES_EtaIntercalibration_Stat0: 0.000303351557602726 + syst_JER_NP7: 5.79205067e-18 + syst_JER_NP8: 1.52289725e-05 + syst_JES_EtaIntercalibration_Modelling: 1.20275092e-03 + syst_JES_EtaIntercalibration_NonClosure: 1.02391798e-04 + syst_JES_EtaIntercalibration_Stat0: 3.03351558e-04 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 syst_JES_EtaIntercalibration_Stat100: 0.0 @@ -34298,97 +34298,97 @@ bins: syst_JES_EtaIntercalibration_Stat98: 0.0 syst_JES_EtaIntercalibration_Stat99: 0.0 syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0 - syst_JES_Flavour_Comp: 0.0003868831022414911 - syst_JES_Flavour_Response: 0.00018068544490356715 - syst_JES_Gjet_Generator: 0.0006622723816527456 - syst_JES_Gjet_OOC: 0.0005281937712620247 - syst_JES_Gjet_Purity: 0.000148263382785501 - syst_JES_Gjet_Stat1: 1.724256543286328e-07 - syst_JES_Gjet_Stat10: 9.875287679353954e-06 - syst_JES_Gjet_Stat11: 1.082116010416628e-05 - syst_JES_Gjet_Stat12: 6.759531492640596e-05 - syst_JES_Gjet_Stat13: 0.00014268525458154392 - syst_JES_Gjet_Stat14: 0.0001533169354637641 - syst_JES_Gjet_Stat15: 1.7508980552847732e-06 - syst_JES_Gjet_Stat2: 1.8506962878873453e-07 - syst_JES_Gjet_Stat3: 1.9728754766631245e-14 - syst_JES_Gjet_Stat4: 1.1294199429353106e-16 - syst_JES_Gjet_Stat5: 2.0214833044079291e-16 - syst_JES_Gjet_Stat6: 4.230520298970329e-06 - syst_JES_Gjet_Stat7: 1.5836019367325892e-09 - syst_JES_Gjet_Stat8: 1.6865883670890178e-06 - syst_JES_Gjet_Stat9: 2.9921044768215316e-06 - syst_JES_Gjet_Veto: 0.000416366025871468 - syst_JES_Gjet_dPhi: 4.127692212362739e-05 - syst_JES_LArESZee: 0.0009462664886278072 - syst_JES_LArEsmear: 8.33669970671848e-05 - syst_JES_LAr_JVT: 9.681840372573801e-05 - syst_JES_MJB_Alpha: 8.560614716245557e-08 - syst_JES_MJB_Asym: 4.457244328057415e-05 - syst_JES_MJB_Beta: 1.7519693918559193e-06 - syst_JES_MJB_Fragmentation: 8.361357350932922e-05 - syst_JES_MJB_Stat1: 2.8277660352299304e-07 - syst_JES_MJB_Stat10: 1.3483443291681838e-07 + syst_JES_Flavour_Comp: 3.86883102e-04 + syst_JES_Flavour_Response: 1.80685445e-04 + syst_JES_Gjet_Generator: 6.62272382e-04 + syst_JES_Gjet_OOC: 5.28193771e-04 + syst_JES_Gjet_Purity: 1.48263383e-04 + syst_JES_Gjet_Stat1: 1.72425654e-07 + syst_JES_Gjet_Stat10: 9.87528768e-06 + syst_JES_Gjet_Stat11: 1.08211601e-05 + syst_JES_Gjet_Stat12: 6.75953149e-05 + syst_JES_Gjet_Stat13: 1.42685255e-04 + syst_JES_Gjet_Stat14: 1.53316935e-04 + syst_JES_Gjet_Stat15: 1.75089806e-06 + syst_JES_Gjet_Stat2: 1.85069629e-07 + syst_JES_Gjet_Stat3: 1.97287548e-14 + syst_JES_Gjet_Stat4: 1.12941994e-16 + syst_JES_Gjet_Stat5: 2.02148330e-16 + syst_JES_Gjet_Stat6: 4.23052030e-06 + syst_JES_Gjet_Stat7: 1.58360194e-09 + syst_JES_Gjet_Stat8: 1.68658837e-06 + syst_JES_Gjet_Stat9: 2.99210448e-06 + syst_JES_Gjet_Veto: 4.16366026e-04 + syst_JES_Gjet_dPhi: 4.12769221e-05 + syst_JES_LArESZee: 9.46266489e-04 + syst_JES_LArEsmear: 8.33669971e-05 + syst_JES_LAr_JVT: 9.68184037e-05 + syst_JES_MJB_Alpha: 8.56061472e-08 + syst_JES_MJB_Asym: 4.45724433e-05 + syst_JES_MJB_Beta: 1.75196939e-06 + syst_JES_MJB_Fragmentation: 8.36135735e-05 + syst_JES_MJB_Stat1: 2.82776604e-07 + syst_JES_MJB_Stat10: 1.34834433e-07 syst_JES_MJB_Stat11: 0.0 syst_JES_MJB_Stat12: 0.0 syst_JES_MJB_Stat13: 0.0 syst_JES_MJB_Stat14: 0.0 - syst_JES_MJB_Stat15: 1.4376021702821681e-08 - syst_JES_MJB_Stat16: 6.438916912027984e-08 - syst_JES_MJB_Stat2: 1.2302984221318014e-06 - syst_JES_MJB_Stat3: 3.925812622884592e-07 + syst_JES_MJB_Stat15: 1.43760217e-08 + syst_JES_MJB_Stat16: 6.43891691e-08 + syst_JES_MJB_Stat2: 1.23029842e-06 + syst_JES_MJB_Stat3: 3.92581262e-07 syst_JES_MJB_Stat4: 0.0 - syst_JES_MJB_Stat5: 1.317224639156131e-06 - syst_JES_MJB_Stat6: 6.624995924527048e-07 - syst_JES_MJB_Stat7: 4.602058997757502e-07 - syst_JES_MJB_Stat8: 3.652895153162762e-08 - syst_JES_MJB_Stat9: 1.3496630912935273e-07 - syst_JES_MJB_Threshold: 4.867910229246221e-05 - syst_JES_Pileup_MuOffset: 0.00010887316783762654 - syst_JES_Pileup_NPVOffset: 9.575400814065175e-05 - syst_JES_Pileup_Pt_term: 0.00012083307608018592 - syst_JES_Pileup_Rho_topology: 0.00020587773070441595 - syst_JES_PunchThrough_MC15: 3.588757305809352e-05 + syst_JES_MJB_Stat5: 1.31722464e-06 + syst_JES_MJB_Stat6: 6.62499592e-07 + syst_JES_MJB_Stat7: 4.60205900e-07 + syst_JES_MJB_Stat8: 3.65289515e-08 + syst_JES_MJB_Stat9: 1.34966309e-07 + syst_JES_MJB_Threshold: 4.86791023e-05 + syst_JES_Pileup_MuOffset: 1.08873168e-04 + syst_JES_Pileup_NPVOffset: 9.57540081e-05 + syst_JES_Pileup_Pt_term: 1.20833076e-04 + syst_JES_Pileup_Rho_topology: 2.05877731e-04 + syst_JES_PunchThrough_MC15: 3.58875731e-05 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.0004103745941210299 - syst_JES_Zjet_MuScale: 2.8931341137251143e-05 - syst_JES_Zjet_MuSmearID: 1.2912438770411678e-06 - syst_JES_Zjet_MuSmearMS: 9.483879625448649e-05 - syst_JES_Zjet_OOC: 0.00019521319115264728 - syst_JES_Zjet_Stat1: 1.125614395563596e-16 - syst_JES_Zjet_Stat10: 9.058887721458966e-06 - syst_JES_Zjet_Stat11: 1.3324099247228684e-05 - syst_JES_Zjet_Stat12: 7.922137211636767e-05 - syst_JES_Zjet_Stat13: 0.0001051622251571352 - syst_JES_Zjet_Stat2: 1.341473350460514e-07 - syst_JES_Zjet_Stat3: 1.5804963619066005e-06 - syst_JES_Zjet_Stat4: 1.3025157957973825e-06 - syst_JES_Zjet_Stat5: 1.0863676817726124e-16 - syst_JES_Zjet_Stat6: 2.3445009596927017e-16 - syst_JES_Zjet_Stat7: 8.849913574085753e-07 - syst_JES_Zjet_Stat8: 1.1244226210157563e-09 - syst_JES_Zjet_Stat9: 2.257725130198836e-06 - syst_JES_Zjet_Veto: 4.4610645310284404e-05 - syst_JES_Zjet_dPhi: 3.189955642324827e-05 + syst_JES_Zjet_MC: 4.10374594e-04 + syst_JES_Zjet_MuScale: 2.89313411e-05 + syst_JES_Zjet_MuSmearID: 1.29124388e-06 + syst_JES_Zjet_MuSmearMS: 9.48387963e-05 + syst_JES_Zjet_OOC: 1.95213191e-04 + syst_JES_Zjet_Stat1: 1.12561440e-16 + syst_JES_Zjet_Stat10: 9.05888772e-06 + syst_JES_Zjet_Stat11: 1.33240992e-05 + syst_JES_Zjet_Stat12: 7.92213721e-05 + syst_JES_Zjet_Stat13: 1.05162225e-04 + syst_JES_Zjet_Stat2: 1.34147335e-07 + syst_JES_Zjet_Stat3: 1.58049636e-06 + syst_JES_Zjet_Stat4: 1.30251580e-06 + syst_JES_Zjet_Stat5: 1.08636768e-16 + syst_JES_Zjet_Stat6: 2.34450096e-16 + syst_JES_Zjet_Stat7: 8.84991357e-07 + syst_JES_Zjet_Stat8: 1.12442262e-09 + syst_JES_Zjet_Stat9: 2.25772513e-06 + syst_JES_Zjet_Veto: 4.46106453e-05 + syst_JES_Zjet_dPhi: 3.18995564e-05 syst_PRW: 0.0 syst_Unfolding_bias: 0.0 - syst_cleaning: 0.0002235211567167636 - syst_lumi: 0.0004938 -- stat: 0.00025535 - syst_JER_CROSS_CALIB_FORWARD: 4.867e-17 - syst_JER_NOISE_FORWARD: 6.009e-06 - syst_JER_NP0: 4.8453591309107315e-05 - syst_JER_NP1: 2.9882349305233683e-05 - syst_JER_NP2: 3.076455102874085e-05 - syst_JER_NP3: 6.977814351213422e-06 + syst_cleaning: 2.23521157e-04 + syst_lumi: 4.93800000e-04 +- stat: 2.55350000e-04 + syst_JER_CROSS_CALIB_FORWARD: 4.86700000e-17 + syst_JER_NOISE_FORWARD: 6.00900000e-06 + syst_JER_NP0: 4.84535913e-05 + syst_JER_NP1: 2.98823493e-05 + syst_JER_NP2: 3.07645510e-05 + syst_JER_NP3: 6.97781435e-06 syst_JER_NP4: 0.0 syst_JER_NP5: 0.0 syst_JER_NP6: 0.0 - syst_JER_NP7: 9.460129597420957e-19 - syst_JER_NP8: 7.140309867225652e-06 - syst_JES_EtaIntercalibration_Modelling: 0.0006341120622571376 - syst_JES_EtaIntercalibration_NonClosure: 6.502627987975324e-05 - syst_JES_EtaIntercalibration_Stat0: 0.00015294694341502874 + syst_JER_NP7: 9.46012960e-19 + syst_JER_NP8: 7.14030987e-06 + syst_JES_EtaIntercalibration_Modelling: 6.34112062e-04 + syst_JES_EtaIntercalibration_NonClosure: 6.50262799e-05 + syst_JES_EtaIntercalibration_Stat0: 1.52946943e-04 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 syst_JES_EtaIntercalibration_Stat100: 0.0 @@ -34635,97 +34635,97 @@ bins: syst_JES_EtaIntercalibration_Stat98: 0.0 syst_JES_EtaIntercalibration_Stat99: 0.0 syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0 - syst_JES_Flavour_Comp: 0.00020815145327381213 - syst_JES_Flavour_Response: 5.684638313032765e-05 - syst_JES_Gjet_Generator: 0.00033350587700968634 - syst_JES_Gjet_OOC: 0.0002691255608447477 - syst_JES_Gjet_Purity: 6.822631237286681e-05 - syst_JES_Gjet_Stat1: 9.244821156055056e-08 - syst_JES_Gjet_Stat10: 3.4505916188387175e-06 - syst_JES_Gjet_Stat11: 4.704449064449524e-06 - syst_JES_Gjet_Stat12: 2.7478406067310382e-05 - syst_JES_Gjet_Stat13: 6.648097077359806e-05 - syst_JES_Gjet_Stat14: 9.875490709326804e-05 - syst_JES_Gjet_Stat15: 8.574118307441297e-06 - syst_JES_Gjet_Stat2: 9.063821876007935e-08 - syst_JES_Gjet_Stat3: 1.6129181103052783e-15 - syst_JES_Gjet_Stat4: 1.3486222154480477e-17 - syst_JES_Gjet_Stat5: 2.4081363644943365e-17 - syst_JES_Gjet_Stat6: 1.8100905170736627e-06 - syst_JES_Gjet_Stat7: 1.1919625547348038e-10 - syst_JES_Gjet_Stat8: 6.186539652139959e-07 - syst_JES_Gjet_Stat9: 1.4653139968029914e-06 - syst_JES_Gjet_Veto: 0.00022356369897637675 - syst_JES_Gjet_dPhi: 2.1048070576658564e-05 - syst_JES_LArESZee: 0.000475540818437282 - syst_JES_LArEsmear: 3.775894695300704e-05 - syst_JES_LAr_JVT: 4.4172495364762905e-05 - syst_JES_MJB_Alpha: 7.039965252044927e-08 - syst_JES_MJB_Asym: 2.273957123606336e-05 - syst_JES_MJB_Beta: 7.804620938905361e-07 - syst_JES_MJB_Fragmentation: 3.402181359069501e-05 - syst_JES_MJB_Stat1: 2.0537068455599988e-07 - syst_JES_MJB_Stat10: 2.729587697803461e-08 + syst_JES_Flavour_Comp: 2.08151453e-04 + syst_JES_Flavour_Response: 5.68463831e-05 + syst_JES_Gjet_Generator: 3.33505877e-04 + syst_JES_Gjet_OOC: 2.69125561e-04 + syst_JES_Gjet_Purity: 6.82263124e-05 + syst_JES_Gjet_Stat1: 9.24482116e-08 + syst_JES_Gjet_Stat10: 3.45059162e-06 + syst_JES_Gjet_Stat11: 4.70444906e-06 + syst_JES_Gjet_Stat12: 2.74784061e-05 + syst_JES_Gjet_Stat13: 6.64809708e-05 + syst_JES_Gjet_Stat14: 9.87549071e-05 + syst_JES_Gjet_Stat15: 8.57411831e-06 + syst_JES_Gjet_Stat2: 9.06382188e-08 + syst_JES_Gjet_Stat3: 1.61291811e-15 + syst_JES_Gjet_Stat4: 1.34862222e-17 + syst_JES_Gjet_Stat5: 2.40813636e-17 + syst_JES_Gjet_Stat6: 1.81009052e-06 + syst_JES_Gjet_Stat7: 1.19196255e-10 + syst_JES_Gjet_Stat8: 6.18653965e-07 + syst_JES_Gjet_Stat9: 1.46531400e-06 + syst_JES_Gjet_Veto: 2.23563699e-04 + syst_JES_Gjet_dPhi: 2.10480706e-05 + syst_JES_LArESZee: 4.75540818e-04 + syst_JES_LArEsmear: 3.77589470e-05 + syst_JES_LAr_JVT: 4.41724954e-05 + syst_JES_MJB_Alpha: 7.03996525e-08 + syst_JES_MJB_Asym: 2.27395712e-05 + syst_JES_MJB_Beta: 7.80462094e-07 + syst_JES_MJB_Fragmentation: 3.40218136e-05 + syst_JES_MJB_Stat1: 2.05370685e-07 + syst_JES_MJB_Stat10: 2.72958770e-08 syst_JES_MJB_Stat11: 0.0 syst_JES_MJB_Stat12: 0.0 syst_JES_MJB_Stat13: 0.0 syst_JES_MJB_Stat14: 0.0 - syst_JES_MJB_Stat15: 9.677833887291102e-09 - syst_JES_MJB_Stat16: 1.3097336827290502e-07 - syst_JES_MJB_Stat2: 5.282888674768758e-07 - syst_JES_MJB_Stat3: 1.922161478648451e-07 + syst_JES_MJB_Stat15: 9.67783389e-09 + syst_JES_MJB_Stat16: 1.30973368e-07 + syst_JES_MJB_Stat2: 5.28288867e-07 + syst_JES_MJB_Stat3: 1.92216148e-07 syst_JES_MJB_Stat4: 0.0 - syst_JES_MJB_Stat5: 5.702777283920529e-07 - syst_JES_MJB_Stat6: 3.244131740543223e-07 - syst_JES_MJB_Stat7: 7.239116679089386e-08 - syst_JES_MJB_Stat8: 1.790940535026219e-08 - syst_JES_MJB_Stat9: 2.737307801472096e-08 - syst_JES_MJB_Threshold: 2.3467732634406762e-05 - syst_JES_Pileup_MuOffset: 5.25961776177699e-05 - syst_JES_Pileup_NPVOffset: 5.04615940592447e-05 - syst_JES_Pileup_Pt_term: 5.385935294821133e-05 - syst_JES_Pileup_Rho_topology: 9.650801041882481e-05 - syst_JES_PunchThrough_MC15: 2.4856743048919344e-05 + syst_JES_MJB_Stat5: 5.70277728e-07 + syst_JES_MJB_Stat6: 3.24413174e-07 + syst_JES_MJB_Stat7: 7.23911668e-08 + syst_JES_MJB_Stat8: 1.79094054e-08 + syst_JES_MJB_Stat9: 2.73730780e-08 + syst_JES_MJB_Threshold: 2.34677326e-05 + syst_JES_Pileup_MuOffset: 5.25961776e-05 + syst_JES_Pileup_NPVOffset: 5.04615941e-05 + syst_JES_Pileup_Pt_term: 5.38593529e-05 + syst_JES_Pileup_Rho_topology: 9.65080104e-05 + syst_JES_PunchThrough_MC15: 2.48567430e-05 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.0001884212302263203 - syst_JES_Zjet_MuScale: 1.3752105293372357e-05 - syst_JES_Zjet_MuSmearID: 1.6558405720337926e-07 - syst_JES_Zjet_MuSmearMS: 3.6893653587033094e-05 - syst_JES_Zjet_OOC: 8.60204196688205e-05 - syst_JES_Zjet_Stat1: 1.3450521950838934e-17 - syst_JES_Zjet_Stat10: 3.1303167172029096e-06 - syst_JES_Zjet_Stat11: 4.381987106325166e-06 - syst_JES_Zjet_Stat12: 2.8083786692680887e-05 - syst_JES_Zjet_Stat13: 3.971117569400332e-05 - syst_JES_Zjet_Stat2: 6.862385299585784e-08 - syst_JES_Zjet_Stat3: 7.738803008217744e-07 - syst_JES_Zjet_Stat4: 8.771115274847171e-07 - syst_JES_Zjet_Stat5: 1.2965948740836513e-17 - syst_JES_Zjet_Stat6: 2.830042755860766e-17 - syst_JES_Zjet_Stat7: 1.350999627240696e-07 - syst_JES_Zjet_Stat8: 8.462579374632079e-11 - syst_JES_Zjet_Stat9: 4.2461201590455675e-07 - syst_JES_Zjet_Veto: 2.110402331310312e-05 - syst_JES_Zjet_dPhi: 1.608546364734321e-05 + syst_JES_Zjet_MC: 1.88421230e-04 + syst_JES_Zjet_MuScale: 1.37521053e-05 + syst_JES_Zjet_MuSmearID: 1.65584057e-07 + syst_JES_Zjet_MuSmearMS: 3.68936536e-05 + syst_JES_Zjet_OOC: 8.60204197e-05 + syst_JES_Zjet_Stat1: 1.34505220e-17 + syst_JES_Zjet_Stat10: 3.13031672e-06 + syst_JES_Zjet_Stat11: 4.38198711e-06 + syst_JES_Zjet_Stat12: 2.80837867e-05 + syst_JES_Zjet_Stat13: 3.97111757e-05 + syst_JES_Zjet_Stat2: 6.86238530e-08 + syst_JES_Zjet_Stat3: 7.73880301e-07 + syst_JES_Zjet_Stat4: 8.77111527e-07 + syst_JES_Zjet_Stat5: 1.29659487e-17 + syst_JES_Zjet_Stat6: 2.83004276e-17 + syst_JES_Zjet_Stat7: 1.35099963e-07 + syst_JES_Zjet_Stat8: 8.46257937e-11 + syst_JES_Zjet_Stat9: 4.24612016e-07 + syst_JES_Zjet_Veto: 2.11040233e-05 + syst_JES_Zjet_dPhi: 1.60854636e-05 syst_PRW: 0.0 syst_Unfolding_bias: 0.0 - syst_cleaning: 0.00011150077073724649 - syst_lumi: 0.0002418 -- stat: 0.00015254 - syst_JER_CROSS_CALIB_FORWARD: 6.496e-18 - syst_JER_NOISE_FORWARD: 2.266e-06 - syst_JER_NP0: 2.5384727692059255e-05 - syst_JER_NP1: 1.9595206046377773e-05 - syst_JER_NP2: 1.9454500764604574e-05 - syst_JER_NP3: 3.5163906283574354e-06 + syst_cleaning: 1.11500771e-04 + syst_lumi: 2.41800000e-04 +- stat: 1.52540000e-04 + syst_JER_CROSS_CALIB_FORWARD: 6.49600000e-18 + syst_JER_NOISE_FORWARD: 2.26600000e-06 + syst_JER_NP0: 2.53847277e-05 + syst_JER_NP1: 1.95952060e-05 + syst_JER_NP2: 1.94545008e-05 + syst_JER_NP3: 3.51639063e-06 syst_JER_NP4: 0.0 syst_JER_NP5: 0.0 syst_JER_NP6: 0.0 - syst_JER_NP7: 1.6970188567013626e-19 - syst_JER_NP8: 3.6586810010576218e-06 - syst_JES_EtaIntercalibration_Modelling: 0.00035307127821447044 - syst_JES_EtaIntercalibration_NonClosure: 4.2560284303561696e-05 - syst_JES_EtaIntercalibration_Stat0: 8.159999800857841e-05 + syst_JER_NP7: 1.69701886e-19 + syst_JER_NP8: 3.65868100e-06 + syst_JES_EtaIntercalibration_Modelling: 3.53071278e-04 + syst_JES_EtaIntercalibration_NonClosure: 4.25602843e-05 + syst_JES_EtaIntercalibration_Stat0: 8.15999980e-05 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 syst_JES_EtaIntercalibration_Stat100: 0.0 @@ -34972,97 +34972,97 @@ bins: syst_JES_EtaIntercalibration_Stat98: 0.0 syst_JES_EtaIntercalibration_Stat99: 0.0 syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0 - syst_JES_Flavour_Comp: 0.00011724022464581002 - syst_JES_Flavour_Response: 1.545183726939939e-05 - syst_JES_Gjet_Generator: 0.0001747925627708456 - syst_JES_Gjet_OOC: 0.00014149146502527986 - syst_JES_Gjet_Purity: 3.1860261690701786e-05 - syst_JES_Gjet_Stat1: 5.196152420067852e-08 - syst_JES_Gjet_Stat10: 1.1172593734223044e-06 - syst_JES_Gjet_Stat11: 2.1630906129887398e-06 - syst_JES_Gjet_Stat12: 1.0910937849241008e-05 - syst_JES_Gjet_Stat13: 3.0310197541421598e-05 - syst_JES_Gjet_Stat14: 6.286576234326598e-05 - syst_JES_Gjet_Stat15: 1.7615109991141127e-05 - syst_JES_Gjet_Stat2: 4.540571192041812e-08 - syst_JES_Gjet_Stat3: 1.43597351706325e-16 - syst_JES_Gjet_Stat4: 1.7908509150680297e-18 - syst_JES_Gjet_Stat5: 3.1850103218043105e-18 - syst_JES_Gjet_Stat6: 6.354677548861153e-07 - syst_JES_Gjet_Stat7: 8.968513708144066e-12 - syst_JES_Gjet_Stat8: 1.6673744892794778e-07 - syst_JES_Gjet_Stat9: 7.339564523712758e-07 - syst_JES_Gjet_Veto: 0.00012623852581522015 - syst_JES_Gjet_dPhi: 1.0517099540747914e-05 - syst_JES_LArESZee: 0.00025797629736082345 - syst_JES_LArEsmear: 1.6658465565591567e-05 - syst_JES_LAr_JVT: 2.0524187560047292e-05 - syst_JES_MJB_Alpha: 3.3071252455871704e-07 - syst_JES_MJB_Asym: 1.2971856729088554e-05 - syst_JES_MJB_Beta: 5.737418300071906e-08 - syst_JES_MJB_Fragmentation: 1.452009958643535e-05 - syst_JES_MJB_Stat1: 8.215593648665932e-08 - syst_JES_MJB_Stat10: 1.0479019360130987e-08 + syst_JES_Flavour_Comp: 1.17240225e-04 + syst_JES_Flavour_Response: 1.54518373e-05 + syst_JES_Gjet_Generator: 1.74792563e-04 + syst_JES_Gjet_OOC: 1.41491465e-04 + syst_JES_Gjet_Purity: 3.18602617e-05 + syst_JES_Gjet_Stat1: 5.19615242e-08 + syst_JES_Gjet_Stat10: 1.11725937e-06 + syst_JES_Gjet_Stat11: 2.16309061e-06 + syst_JES_Gjet_Stat12: 1.09109378e-05 + syst_JES_Gjet_Stat13: 3.03101975e-05 + syst_JES_Gjet_Stat14: 6.28657623e-05 + syst_JES_Gjet_Stat15: 1.76151100e-05 + syst_JES_Gjet_Stat2: 4.54057119e-08 + syst_JES_Gjet_Stat3: 1.43597352e-16 + syst_JES_Gjet_Stat4: 1.79085092e-18 + syst_JES_Gjet_Stat5: 3.18501032e-18 + syst_JES_Gjet_Stat6: 6.35467755e-07 + syst_JES_Gjet_Stat7: 8.96851371e-12 + syst_JES_Gjet_Stat8: 1.66737449e-07 + syst_JES_Gjet_Stat9: 7.33956452e-07 + syst_JES_Gjet_Veto: 1.26238526e-04 + syst_JES_Gjet_dPhi: 1.05170995e-05 + syst_JES_LArESZee: 2.57976297e-04 + syst_JES_LArEsmear: 1.66584656e-05 + syst_JES_LAr_JVT: 2.05241876e-05 + syst_JES_MJB_Alpha: 3.30712525e-07 + syst_JES_MJB_Asym: 1.29718567e-05 + syst_JES_MJB_Beta: 5.73741830e-08 + syst_JES_MJB_Fragmentation: 1.45200996e-05 + syst_JES_MJB_Stat1: 8.21559365e-08 + syst_JES_MJB_Stat10: 1.04790194e-08 syst_JES_MJB_Stat11: 0.0 syst_JES_MJB_Stat12: 0.0 syst_JES_MJB_Stat13: 0.0 syst_JES_MJB_Stat14: 0.0 - syst_JES_MJB_Stat15: 5.439505561170059e-09 - syst_JES_MJB_Stat16: 1.3836435014843962e-07 - syst_JES_MJB_Stat2: 2.1632200257948796e-07 - syst_JES_MJB_Stat3: 9.630006892520897e-08 + syst_JES_MJB_Stat15: 5.43950556e-09 + syst_JES_MJB_Stat16: 1.38364350e-07 + syst_JES_MJB_Stat2: 2.16322003e-07 + syst_JES_MJB_Stat3: 9.63000689e-08 syst_JES_MJB_Stat4: 0.0 - syst_JES_MJB_Stat5: 2.32960833618014e-07 - syst_JES_MJB_Stat6: 1.6253350423835694e-07 - syst_JES_MJB_Stat7: 8.650305270733224e-09 - syst_JES_MJB_Stat8: 8.972889208610568e-09 - syst_JES_MJB_Stat9: 1.0524143290548642e-08 - syst_JES_MJB_Threshold: 1.0862348675585773e-05 - syst_JES_Pileup_MuOffset: 2.6648694151871684e-05 - syst_JES_Pileup_NPVOffset: 2.96762240691096e-05 - syst_JES_Pileup_Pt_term: 2.6276938082661e-05 - syst_JES_Pileup_Rho_topology: 5.04493597580782e-05 - syst_JES_PunchThrough_MC15: 1.846885689478372e-05 + syst_JES_MJB_Stat5: 2.32960834e-07 + syst_JES_MJB_Stat6: 1.62533504e-07 + syst_JES_MJB_Stat7: 8.65030527e-09 + syst_JES_MJB_Stat8: 8.97288921e-09 + syst_JES_MJB_Stat9: 1.05241433e-08 + syst_JES_MJB_Threshold: 1.08623487e-05 + syst_JES_Pileup_MuOffset: 2.66486942e-05 + syst_JES_Pileup_NPVOffset: 2.96762241e-05 + syst_JES_Pileup_Pt_term: 2.62769381e-05 + syst_JES_Pileup_Rho_topology: 5.04493598e-05 + syst_JES_PunchThrough_MC15: 1.84688569e-05 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 9.266284800285388e-05 - syst_JES_Zjet_MuScale: 5.237979381402718e-06 - syst_JES_Zjet_MuSmearID: 2.1520731284075784e-08 - syst_JES_Zjet_MuSmearMS: 1.5500221772606997e-05 - syst_JES_Zjet_OOC: 4.32057337282912e-05 - syst_JES_Zjet_Stat1: 1.7881939576007968e-18 - syst_JES_Zjet_Stat10: 1.6924148427616674e-06 - syst_JES_Zjet_Stat11: 1.5017428108700905e-06 - syst_JES_Zjet_Stat12: 1.1048694538270122e-05 - syst_JES_Zjet_Stat13: 1.5857745962147332e-05 - syst_JES_Zjet_Stat2: 2.987787643056002e-08 - syst_JES_Zjet_Stat3: 3.8771957327429316e-07 - syst_JES_Zjet_Stat4: 4.929417356113719e-07 - syst_JES_Zjet_Stat5: 1.7188982481519955e-18 - syst_JES_Zjet_Stat6: 3.797338598281696e-18 - syst_JES_Zjet_Stat7: 1.5900226384557047e-08 - syst_JES_Zjet_Stat8: 6.368533649889848e-12 - syst_JES_Zjet_Stat9: 6.028400838691543e-08 - syst_JES_Zjet_Veto: 9.099363659069792e-06 - syst_JES_Zjet_dPhi: 6.753563446803472e-06 + syst_JES_Zjet_MC: 9.26628480e-05 + syst_JES_Zjet_MuScale: 5.23797938e-06 + syst_JES_Zjet_MuSmearID: 2.15207313e-08 + syst_JES_Zjet_MuSmearMS: 1.55002218e-05 + syst_JES_Zjet_OOC: 4.32057337e-05 + syst_JES_Zjet_Stat1: 1.78819396e-18 + syst_JES_Zjet_Stat10: 1.69241484e-06 + syst_JES_Zjet_Stat11: 1.50174281e-06 + syst_JES_Zjet_Stat12: 1.10486945e-05 + syst_JES_Zjet_Stat13: 1.58577460e-05 + syst_JES_Zjet_Stat2: 2.98778764e-08 + syst_JES_Zjet_Stat3: 3.87719573e-07 + syst_JES_Zjet_Stat4: 4.92941736e-07 + syst_JES_Zjet_Stat5: 1.71889825e-18 + syst_JES_Zjet_Stat6: 3.79733860e-18 + syst_JES_Zjet_Stat7: 1.59002264e-08 + syst_JES_Zjet_Stat8: 6.36853365e-12 + syst_JES_Zjet_Stat9: 6.02840084e-08 + syst_JES_Zjet_Veto: 9.09936366e-06 + syst_JES_Zjet_dPhi: 6.75356345e-06 syst_PRW: 0.0 syst_Unfolding_bias: 0.0 - syst_cleaning: 5.697581131497822e-05 - syst_lumi: 0.00012114 -- stat: 8.589e-05 - syst_JER_CROSS_CALIB_FORWARD: 9.194e-19 - syst_JER_NOISE_FORWARD: 5.973e-07 - syst_JER_NP0: 1.231956641891264e-05 - syst_JER_NP1: 1.2068689489749912e-05 - syst_JER_NP2: 1.2432462386832304e-05 - syst_JER_NP3: 1.6779545427514617e-06 + syst_cleaning: 5.69758113e-05 + syst_lumi: 1.21140000e-04 +- stat: 8.58900000e-05 + syst_JER_CROSS_CALIB_FORWARD: 9.19400000e-19 + syst_JER_NOISE_FORWARD: 5.97300000e-07 + syst_JER_NP0: 1.23195664e-05 + syst_JER_NP1: 1.20686895e-05 + syst_JER_NP2: 1.24324624e-05 + syst_JER_NP3: 1.67795454e-06 syst_JER_NP4: 0.0 syst_JER_NP5: 0.0 syst_JER_NP6: 0.0 - syst_JER_NP7: 3.165160777906866e-20 - syst_JER_NP8: 1.7692208502261667e-06 - syst_JES_EtaIntercalibration_Modelling: 0.00019576498665491743 - syst_JES_EtaIntercalibration_NonClosure: 2.5551426574655278e-05 - syst_JES_EtaIntercalibration_Stat0: 4.353000513151819e-05 + syst_JER_NP7: 3.16516078e-20 + syst_JER_NP8: 1.76922085e-06 + syst_JES_EtaIntercalibration_Modelling: 1.95764987e-04 + syst_JES_EtaIntercalibration_NonClosure: 2.55514266e-05 + syst_JES_EtaIntercalibration_Stat0: 4.35300051e-05 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 syst_JES_EtaIntercalibration_Stat100: 0.0 @@ -35309,97 +35309,97 @@ bins: syst_JES_EtaIntercalibration_Stat98: 0.0 syst_JES_EtaIntercalibration_Stat99: 0.0 syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0 - syst_JES_Flavour_Comp: 6.473837038418562e-05 - syst_JES_Flavour_Response: 3.975507766311117e-06 - syst_JES_Gjet_Generator: 9.161388909439441e-05 - syst_JES_Gjet_OOC: 7.455334382172271e-05 - syst_JES_Gjet_Purity: 1.6418666777482272e-05 - syst_JES_Gjet_Stat1: 2.6725543958272263e-08 - syst_JES_Gjet_Stat10: 2.770415266706419e-07 - syst_JES_Gjet_Stat11: 9.94513653752426e-07 - syst_JES_Gjet_Stat12: 4.3550003444316745e-06 - syst_JES_Gjet_Stat13: 1.3208868687363046e-05 - syst_JES_Gjet_Stat14: 3.611557762240554e-05 - syst_JES_Gjet_Stat15: 1.9110884333279817e-05 - syst_JES_Gjet_Stat2: 2.1650635094610966e-08 - syst_JES_Gjet_Stat3: 1.3503882515780416e-17 - syst_JES_Gjet_Stat4: 2.5205380378006594e-19 - syst_JES_Gjet_Stat5: 4.463050332171933e-19 - syst_JES_Gjet_Stat6: 1.5917410216489364e-07 - syst_JES_Gjet_Stat7: 6.728236821602428e-13 - syst_JES_Gjet_Stat8: 3.606743948147692e-08 - syst_JES_Gjet_Stat9: 3.499608593704007e-07 - syst_JES_Gjet_Veto: 7.002411441782037e-05 - syst_JES_Gjet_dPhi: 4.680757070175721e-06 - syst_JES_LArESZee: 0.00013929632694367788 - syst_JES_LArEsmear: 7.626511833728444e-06 - syst_JES_LAr_JVT: 1.0088330820804797e-05 - syst_JES_MJB_Alpha: 5.664471560090579e-07 - syst_JES_MJB_Asym: 7.550957075099818e-06 - syst_JES_MJB_Beta: 4.2798975455026957e-07 - syst_JES_MJB_Fragmentation: 6.16501362528908e-06 - syst_JES_MJB_Stat1: 2.1927886355050274e-08 - syst_JES_MJB_Stat10: 4.800903655438213e-09 + syst_JES_Flavour_Comp: 6.47383704e-05 + syst_JES_Flavour_Response: 3.97550777e-06 + syst_JES_Gjet_Generator: 9.16138891e-05 + syst_JES_Gjet_OOC: 7.45533438e-05 + syst_JES_Gjet_Purity: 1.64186668e-05 + syst_JES_Gjet_Stat1: 2.67255440e-08 + syst_JES_Gjet_Stat10: 2.77041527e-07 + syst_JES_Gjet_Stat11: 9.94513654e-07 + syst_JES_Gjet_Stat12: 4.35500034e-06 + syst_JES_Gjet_Stat13: 1.32088687e-05 + syst_JES_Gjet_Stat14: 3.61155776e-05 + syst_JES_Gjet_Stat15: 1.91108843e-05 + syst_JES_Gjet_Stat2: 2.16506351e-08 + syst_JES_Gjet_Stat3: 1.35038825e-17 + syst_JES_Gjet_Stat4: 2.52053804e-19 + syst_JES_Gjet_Stat5: 4.46305033e-19 + syst_JES_Gjet_Stat6: 1.59174102e-07 + syst_JES_Gjet_Stat7: 6.72823682e-13 + syst_JES_Gjet_Stat8: 3.60674395e-08 + syst_JES_Gjet_Stat9: 3.49960859e-07 + syst_JES_Gjet_Veto: 7.00241144e-05 + syst_JES_Gjet_dPhi: 4.68075707e-06 + syst_JES_LArESZee: 1.39296327e-04 + syst_JES_LArEsmear: 7.62651183e-06 + syst_JES_LAr_JVT: 1.00883308e-05 + syst_JES_MJB_Alpha: 5.66447156e-07 + syst_JES_MJB_Asym: 7.55095708e-06 + syst_JES_MJB_Beta: 4.27989755e-07 + syst_JES_MJB_Fragmentation: 6.16501363e-06 + syst_JES_MJB_Stat1: 2.19278864e-08 + syst_JES_MJB_Stat10: 4.80090366e-09 syst_JES_MJB_Stat11: 0.0 syst_JES_MJB_Stat12: 0.0 syst_JES_MJB_Stat13: 0.0 syst_JES_MJB_Stat14: 0.0 - syst_JES_MJB_Stat15: 2.679482599309053e-09 - syst_JES_MJB_Stat16: 9.15190112053228e-08 - syst_JES_MJB_Stat2: 8.878808520854586e-08 - syst_JES_MJB_Stat3: 4.5914382006077355e-08 + syst_JES_MJB_Stat15: 2.67948260e-09 + syst_JES_MJB_Stat16: 9.15190112e-08 + syst_JES_MJB_Stat2: 8.87880852e-08 + syst_JES_MJB_Stat3: 4.59143820e-08 syst_JES_MJB_Stat4: 0.0 - syst_JES_MJB_Stat5: 9.28725643018432e-08 - syst_JES_MJB_Stat6: 7.74718134226894e-08 - syst_JES_MJB_Stat7: 9.676291270419675e-10 - syst_JES_MJB_Stat8: 4.278165494695126e-09 - syst_JES_MJB_Stat9: 4.82168691622289e-09 - syst_JES_MJB_Threshold: 4.799446947305491e-06 - syst_JES_Pileup_MuOffset: 1.3614106902400906e-05 - syst_JES_Pileup_NPVOffset: 1.7035221982703952e-05 - syst_JES_Pileup_Pt_term: 1.327610111252547e-05 - syst_JES_Pileup_Rho_topology: 2.7066719417025774e-05 - syst_JES_PunchThrough_MC15: 1.2553563269048354e-05 + syst_JES_MJB_Stat5: 9.28725643e-08 + syst_JES_MJB_Stat6: 7.74718134e-08 + syst_JES_MJB_Stat7: 9.67629127e-10 + syst_JES_MJB_Stat8: 4.27816549e-09 + syst_JES_MJB_Stat9: 4.82168692e-09 + syst_JES_MJB_Threshold: 4.79944695e-06 + syst_JES_Pileup_MuOffset: 1.36141069e-05 + syst_JES_Pileup_NPVOffset: 1.70352220e-05 + syst_JES_Pileup_Pt_term: 1.32761011e-05 + syst_JES_Pileup_Rho_topology: 2.70667194e-05 + syst_JES_PunchThrough_MC15: 1.25535633e-05 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 4.7172853157298e-05 - syst_JES_Zjet_MuScale: 1.7937733273744485e-06 - syst_JES_Zjet_MuSmearID: 2.5409185347040802e-08 - syst_JES_Zjet_MuSmearMS: 6.444926900283664e-06 - syst_JES_Zjet_OOC: 2.1972032222805427e-05 - syst_JES_Zjet_Stat1: 2.5204656315847673e-19 - syst_JES_Zjet_Stat10: 8.711568980815109e-07 - syst_JES_Zjet_Stat11: 3.887712703827277e-07 - syst_JES_Zjet_Stat12: 4.709575432032064e-06 - syst_JES_Zjet_Stat13: 6.660237533301646e-06 - syst_JES_Zjet_Stat2: 1.0389706769201425e-08 - syst_JES_Zjet_Stat3: 1.848098211675992e-07 - syst_JES_Zjet_Stat4: 2.428335290928094e-07 - syst_JES_Zjet_Stat5: 2.4159036466713654e-19 - syst_JES_Zjet_Stat6: 5.399735086094502e-19 - syst_JES_Zjet_Stat7: 1.516410478678498e-09 - syst_JES_Zjet_Stat8: 4.777634893134789e-13 - syst_JES_Zjet_Stat9: 6.6389489943099886e-09 - syst_JES_Zjet_Veto: 3.7630645423643744e-06 - syst_JES_Zjet_dPhi: 1.8702754227118527e-06 + syst_JES_Zjet_MC: 4.71728532e-05 + syst_JES_Zjet_MuScale: 1.79377333e-06 + syst_JES_Zjet_MuSmearID: 2.54091853e-08 + syst_JES_Zjet_MuSmearMS: 6.44492690e-06 + syst_JES_Zjet_OOC: 2.19720322e-05 + syst_JES_Zjet_Stat1: 2.52046563e-19 + syst_JES_Zjet_Stat10: 8.71156898e-07 + syst_JES_Zjet_Stat11: 3.88771270e-07 + syst_JES_Zjet_Stat12: 4.70957543e-06 + syst_JES_Zjet_Stat13: 6.66023753e-06 + syst_JES_Zjet_Stat2: 1.03897068e-08 + syst_JES_Zjet_Stat3: 1.84809821e-07 + syst_JES_Zjet_Stat4: 2.42833529e-07 + syst_JES_Zjet_Stat5: 2.41590365e-19 + syst_JES_Zjet_Stat6: 5.39973509e-19 + syst_JES_Zjet_Stat7: 1.51641048e-09 + syst_JES_Zjet_Stat8: 4.77763489e-13 + syst_JES_Zjet_Stat9: 6.63894899e-09 + syst_JES_Zjet_Veto: 3.76306454e-06 + syst_JES_Zjet_dPhi: 1.87027542e-06 syst_PRW: 0.0 syst_Unfolding_bias: 0.0 - syst_cleaning: 2.7790755207442636e-05 - syst_lumi: 5.776e-05 -- stat: 5.049e-05 - syst_JER_CROSS_CALIB_FORWARD: 1.2663e-19 - syst_JER_NOISE_FORWARD: 1.0171e-07 - syst_JER_NP0: 5.180136943170518e-06 - syst_JER_NP1: 6.070637693026986e-06 - syst_JER_NP2: 6.542529403831518e-06 - syst_JER_NP3: 7.114116960932566e-07 + syst_cleaning: 2.77907552e-05 + syst_lumi: 5.77600000e-05 +- stat: 5.04900000e-05 + syst_JER_CROSS_CALIB_FORWARD: 1.26630000e-19 + syst_JER_NOISE_FORWARD: 1.01710000e-07 + syst_JER_NP0: 5.18013694e-06 + syst_JER_NP1: 6.07063769e-06 + syst_JER_NP2: 6.54252940e-06 + syst_JER_NP3: 7.11411696e-07 syst_JER_NP4: 0.0 syst_JER_NP5: 0.0 syst_JER_NP6: 0.0 - syst_JER_NP7: 5.643336867492495e-21 - syst_JER_NP8: 6.992134919486323e-07 - syst_JES_EtaIntercalibration_Modelling: 9.442169454103225e-05 - syst_JES_EtaIntercalibration_NonClosure: 1.1229299354812837e-05 - syst_JES_EtaIntercalibration_Stat0: 1.9551621416138354e-05 + syst_JER_NP7: 5.64333687e-21 + syst_JER_NP8: 6.99213492e-07 + syst_JES_EtaIntercalibration_Modelling: 9.44216945e-05 + syst_JES_EtaIntercalibration_NonClosure: 1.12292994e-05 + syst_JES_EtaIntercalibration_Stat0: 1.95516214e-05 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 syst_JES_EtaIntercalibration_Stat100: 0.0 @@ -35646,97 +35646,97 @@ bins: syst_JES_EtaIntercalibration_Stat98: 0.0 syst_JES_EtaIntercalibration_Stat99: 0.0 syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0 - syst_JES_Flavour_Comp: 3.0455417826718447e-05 - syst_JES_Flavour_Response: 8.589219565827852e-07 - syst_JES_Gjet_Generator: 4.1823506153836504e-05 - syst_JES_Gjet_OOC: 3.425404063756567e-05 - syst_JES_Gjet_Purity: 7.147929123179664e-06 - syst_JES_Gjet_Stat1: 1.1696539103278946e-08 - syst_JES_Gjet_Stat10: 4.6072551481332134e-08 - syst_JES_Gjet_Stat11: 4.1676855591563043e-07 - syst_JES_Gjet_Stat12: 1.6925426877925415e-06 - syst_JES_Gjet_Stat13: 5.2528360137643736e-06 - syst_JES_Gjet_Stat14: 1.7190183245096604e-05 - syst_JES_Gjet_Stat15: 1.3489233706923459e-05 - syst_JES_Gjet_Stat2: 9.171209026077203e-09 - syst_JES_Gjet_Stat3: 1.2323171006989232e-18 - syst_JES_Gjet_Stat4: 3.452189558816259e-20 - syst_JES_Gjet_Stat5: 6.077000658219482e-20 - syst_JES_Gjet_Stat6: 2.6287407688853614e-08 - syst_JES_Gjet_Stat7: 4.703655900903785e-14 - syst_JES_Gjet_Stat8: 1.1553317910886032e-08 - syst_JES_Gjet_Stat9: 1.4835015117579456e-07 - syst_JES_Gjet_Veto: 3.2975507577594615e-05 - syst_JES_Gjet_dPhi: 1.867708812288468e-06 - syst_JES_LArESZee: 6.47637815449345e-05 - syst_JES_LArEsmear: 3.4172585503587524e-06 - syst_JES_LAr_JVT: 4.576062800049842e-06 - syst_JES_MJB_Alpha: 4.1228278499107865e-07 - syst_JES_MJB_Asym: 3.9777986635198124e-06 - syst_JES_MJB_Beta: 3.804449598825039e-07 - syst_JES_MJB_Fragmentation: 2.4422323804257444e-06 - syst_JES_MJB_Stat1: 4.644368929144195e-09 - syst_JES_MJB_Stat10: 2.022043886252719e-09 + syst_JES_Flavour_Comp: 3.04554178e-05 + syst_JES_Flavour_Response: 8.58921957e-07 + syst_JES_Gjet_Generator: 4.18235062e-05 + syst_JES_Gjet_OOC: 3.42540406e-05 + syst_JES_Gjet_Purity: 7.14792912e-06 + syst_JES_Gjet_Stat1: 1.16965391e-08 + syst_JES_Gjet_Stat10: 4.60725515e-08 + syst_JES_Gjet_Stat11: 4.16768556e-07 + syst_JES_Gjet_Stat12: 1.69254269e-06 + syst_JES_Gjet_Stat13: 5.25283601e-06 + syst_JES_Gjet_Stat14: 1.71901832e-05 + syst_JES_Gjet_Stat15: 1.34892337e-05 + syst_JES_Gjet_Stat2: 9.17120903e-09 + syst_JES_Gjet_Stat3: 1.23231710e-18 + syst_JES_Gjet_Stat4: 3.45218956e-20 + syst_JES_Gjet_Stat5: 6.07700066e-20 + syst_JES_Gjet_Stat6: 2.62874077e-08 + syst_JES_Gjet_Stat7: 4.70365590e-14 + syst_JES_Gjet_Stat8: 1.15533179e-08 + syst_JES_Gjet_Stat9: 1.48350151e-07 + syst_JES_Gjet_Veto: 3.29755076e-05 + syst_JES_Gjet_dPhi: 1.86770881e-06 + syst_JES_LArESZee: 6.47637815e-05 + syst_JES_LArEsmear: 3.41725855e-06 + syst_JES_LAr_JVT: 4.57606280e-06 + syst_JES_MJB_Alpha: 4.12282785e-07 + syst_JES_MJB_Asym: 3.97779866e-06 + syst_JES_MJB_Beta: 3.80444960e-07 + syst_JES_MJB_Fragmentation: 2.44223238e-06 + syst_JES_MJB_Stat1: 4.64436893e-09 + syst_JES_MJB_Stat10: 2.02204389e-09 syst_JES_MJB_Stat11: 0.0 syst_JES_MJB_Stat12: 0.0 syst_JES_MJB_Stat13: 0.0 syst_JES_MJB_Stat14: 0.0 - syst_JES_MJB_Stat15: 1.144106160939622e-09 - syst_JES_MJB_Stat16: 4.375892834825254e-08 - syst_JES_MJB_Stat2: 3.524811400273779e-08 - syst_JES_MJB_Stat3: 1.9409855099922822e-08 + syst_JES_MJB_Stat15: 1.14410616e-09 + syst_JES_MJB_Stat16: 4.37589283e-08 + syst_JES_MJB_Stat2: 3.52481140e-08 + syst_JES_MJB_Stat3: 1.94098551e-08 syst_JES_MJB_Stat4: 0.0 - syst_JES_MJB_Stat5: 3.582747095456223e-08 - syst_JES_MJB_Stat6: 3.270220023178868e-08 - syst_JES_MJB_Stat7: 1.068559587985153e-09 - syst_JES_MJB_Stat8: 1.8134571955246146e-09 - syst_JES_MJB_Stat9: 2.03070438068143e-09 - syst_JES_MJB_Threshold: 1.958461832663583e-06 - syst_JES_Pileup_MuOffset: 6.45439478185213e-06 - syst_JES_Pileup_NPVOffset: 7.518780137096708e-06 - syst_JES_Pileup_Pt_term: 6.041295308127223e-06 - syst_JES_Pileup_Rho_topology: 1.1839286042663215e-05 - syst_JES_PunchThrough_MC15: 7.22446254056314e-06 + syst_JES_MJB_Stat5: 3.58274710e-08 + syst_JES_MJB_Stat6: 3.27022002e-08 + syst_JES_MJB_Stat7: 1.06855959e-09 + syst_JES_MJB_Stat8: 1.81345720e-09 + syst_JES_MJB_Stat9: 2.03070438e-09 + syst_JES_MJB_Threshold: 1.95846183e-06 + syst_JES_Pileup_MuOffset: 6.45439478e-06 + syst_JES_Pileup_NPVOffset: 7.51878014e-06 + syst_JES_Pileup_Pt_term: 6.04129531e-06 + syst_JES_Pileup_Rho_topology: 1.18392860e-05 + syst_JES_PunchThrough_MC15: 7.22446254e-06 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 2.0618149165237892e-05 - syst_JES_Zjet_MuScale: 8.071509957870337e-07 - syst_JES_Zjet_MuSmearID: 1.2306220987777727e-08 - syst_JES_Zjet_MuSmearMS: 2.4979725779119356e-06 - syst_JES_Zjet_OOC: 9.181157484217337e-06 - syst_JES_Zjet_Stat1: 3.458124347099161e-20 - syst_JES_Zjet_Stat10: 3.80069762505188e-07 - syst_JES_Zjet_Stat11: 6.592527261035786e-08 - syst_JES_Zjet_Stat12: 1.9268798613302283e-06 - syst_JES_Zjet_Stat13: 2.659717842178001e-06 - syst_JES_Zjet_Stat2: 2.6968031073846688e-09 - syst_JES_Zjet_Stat3: 7.754391465485864e-08 - syst_JES_Zjet_Stat4: 1.0368922202696884e-07 - syst_JES_Zjet_Stat5: 3.299686122572873e-20 - syst_JES_Zjet_Stat6: 7.466650319922582e-20 - syst_JES_Zjet_Stat7: 1.1551046797785345e-10 - syst_JES_Zjet_Stat8: 3.340287413499066e-14 - syst_JES_Zjet_Stat9: 5.596254670847632e-10 - syst_JES_Zjet_Veto: 1.5801438249412616e-06 - syst_JES_Zjet_dPhi: 3.2531790600580226e-07 + syst_JES_Zjet_MC: 2.06181492e-05 + syst_JES_Zjet_MuScale: 8.07150996e-07 + syst_JES_Zjet_MuSmearID: 1.23062210e-08 + syst_JES_Zjet_MuSmearMS: 2.49797258e-06 + syst_JES_Zjet_OOC: 9.18115748e-06 + syst_JES_Zjet_Stat1: 3.45812435e-20 + syst_JES_Zjet_Stat10: 3.80069763e-07 + syst_JES_Zjet_Stat11: 6.59252726e-08 + syst_JES_Zjet_Stat12: 1.92687986e-06 + syst_JES_Zjet_Stat13: 2.65971784e-06 + syst_JES_Zjet_Stat2: 2.69680311e-09 + syst_JES_Zjet_Stat3: 7.75439147e-08 + syst_JES_Zjet_Stat4: 1.03689222e-07 + syst_JES_Zjet_Stat5: 3.29968612e-20 + syst_JES_Zjet_Stat6: 7.46665032e-20 + syst_JES_Zjet_Stat7: 1.15510468e-10 + syst_JES_Zjet_Stat8: 3.34028741e-14 + syst_JES_Zjet_Stat9: 5.59625467e-10 + syst_JES_Zjet_Veto: 1.58014382e-06 + syst_JES_Zjet_dPhi: 3.25317906e-07 syst_PRW: 0.0 syst_Unfolding_bias: 0.0 - syst_cleaning: 1.200917427427881e-05 - syst_lumi: 2.448e-05 -- stat: 2.9759e-05 - syst_JER_CROSS_CALIB_FORWARD: 2.004e-20 - syst_JER_NOISE_FORWARD: 1.3868e-08 - syst_JER_NP0: 2.2532892107982944e-06 - syst_JER_NP1: 3.052100710985796e-06 - syst_JER_NP2: 3.3897434637447124e-06 - syst_JER_NP3: 3.205139590387803e-07 + syst_cleaning: 1.20091743e-05 + syst_lumi: 2.44800000e-05 +- stat: 2.97590000e-05 + syst_JER_CROSS_CALIB_FORWARD: 2.00400000e-20 + syst_JER_NOISE_FORWARD: 1.38680000e-08 + syst_JER_NP0: 2.25328921e-06 + syst_JER_NP1: 3.05210071e-06 + syst_JER_NP2: 3.38974346e-06 + syst_JER_NP3: 3.20513959e-07 syst_JER_NP4: 0.0 syst_JER_NP5: 0.0 syst_JER_NP6: 0.0 - syst_JER_NP7: 1.1377902827410683e-21 - syst_JER_NP8: 2.392486136443637e-07 - syst_JES_EtaIntercalibration_Modelling: 4.637048522497905e-05 - syst_JES_EtaIntercalibration_NonClosure: 3.985875907501387e-06 - syst_JES_EtaIntercalibration_Stat0: 8.79268303761713e-06 + syst_JER_NP7: 1.13779028e-21 + syst_JER_NP8: 2.39248614e-07 + syst_JES_EtaIntercalibration_Modelling: 4.63704852e-05 + syst_JES_EtaIntercalibration_NonClosure: 3.98587591e-06 + syst_JES_EtaIntercalibration_Stat0: 8.79268304e-06 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 syst_JES_EtaIntercalibration_Stat100: 0.0 @@ -35983,97 +35983,97 @@ bins: syst_JES_EtaIntercalibration_Stat98: 0.0 syst_JES_EtaIntercalibration_Stat99: 0.0 syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0 - syst_JES_Flavour_Comp: 1.5235018871008989e-05 - syst_JES_Flavour_Response: 1.5485682120914144e-07 - syst_JES_Gjet_Generator: 1.9984205638453586e-05 - syst_JES_Gjet_OOC: 1.6676860465927034e-05 - syst_JES_Gjet_Purity: 2.748119493399077e-06 - syst_JES_Gjet_Stat1: 5.273228683618413e-09 - syst_JES_Gjet_Stat10: 6.222392526191191e-09 - syst_JES_Gjet_Stat11: 1.872593055097663e-07 - syst_JES_Gjet_Stat12: 7.406998582421898e-07 - syst_JES_Gjet_Stat13: 2.3167206888185725e-06 - syst_JES_Gjet_Stat14: 8.744782387229542e-06 - syst_JES_Gjet_Stat15: 8.964844839705815e-06 - syst_JES_Gjet_Stat2: 4.091970032881472e-09 - syst_JES_Gjet_Stat3: 1.2882482768084729e-19 - syst_JES_Gjet_Stat4: 5.4325917157467305e-21 - syst_JES_Gjet_Stat5: 9.495731185643367e-21 - syst_JES_Gjet_Stat6: 3.52151918459917e-09 - syst_JES_Gjet_Stat7: 3.6677346087800575e-15 - syst_JES_Gjet_Stat8: 5.332256464903015e-09 - syst_JES_Gjet_Stat9: 6.682252011209979e-08 - syst_JES_Gjet_Veto: 1.6418839027166325e-05 - syst_JES_Gjet_dPhi: 7.878771906204673e-07 - syst_JES_LArESZee: 3.0744175058049615e-05 - syst_JES_LArEsmear: 1.5120423274498634e-06 - syst_JES_LAr_JVT: 2.065252042729894e-06 - syst_JES_MJB_Alpha: 1.6615880792783752e-07 - syst_JES_MJB_Asym: 2.504162135325906e-06 - syst_JES_MJB_Beta: 1.6099412256352714e-07 - syst_JES_MJB_Fragmentation: 1.069379637920977e-06 - syst_JES_MJB_Stat1: 1.0189681103940398e-09 - syst_JES_MJB_Stat10: 9.098516542028747e-10 + syst_JES_Flavour_Comp: 1.52350189e-05 + syst_JES_Flavour_Response: 1.54856821e-07 + syst_JES_Gjet_Generator: 1.99842056e-05 + syst_JES_Gjet_OOC: 1.66768605e-05 + syst_JES_Gjet_Purity: 2.74811949e-06 + syst_JES_Gjet_Stat1: 5.27322868e-09 + syst_JES_Gjet_Stat10: 6.22239253e-09 + syst_JES_Gjet_Stat11: 1.87259306e-07 + syst_JES_Gjet_Stat12: 7.40699858e-07 + syst_JES_Gjet_Stat13: 2.31672069e-06 + syst_JES_Gjet_Stat14: 8.74478239e-06 + syst_JES_Gjet_Stat15: 8.96484484e-06 + syst_JES_Gjet_Stat2: 4.09197003e-09 + syst_JES_Gjet_Stat3: 1.28824828e-19 + syst_JES_Gjet_Stat4: 5.43259172e-21 + syst_JES_Gjet_Stat5: 9.49573119e-21 + syst_JES_Gjet_Stat6: 3.52151918e-09 + syst_JES_Gjet_Stat7: 3.66773461e-15 + syst_JES_Gjet_Stat8: 5.33225646e-09 + syst_JES_Gjet_Stat9: 6.68225201e-08 + syst_JES_Gjet_Veto: 1.64188390e-05 + syst_JES_Gjet_dPhi: 7.87877191e-07 + syst_JES_LArESZee: 3.07441751e-05 + syst_JES_LArEsmear: 1.51204233e-06 + syst_JES_LAr_JVT: 2.06525204e-06 + syst_JES_MJB_Alpha: 1.66158808e-07 + syst_JES_MJB_Asym: 2.50416214e-06 + syst_JES_MJB_Beta: 1.60994123e-07 + syst_JES_MJB_Fragmentation: 1.06937964e-06 + syst_JES_MJB_Stat1: 1.01896811e-09 + syst_JES_MJB_Stat10: 9.09851654e-10 syst_JES_MJB_Stat11: 0.0 syst_JES_MJB_Stat12: 0.0 syst_JES_MJB_Stat13: 0.0 syst_JES_MJB_Stat14: 0.0 - syst_JES_MJB_Stat15: 5.162377431959038e-10 - syst_JES_MJB_Stat16: 2.044091849501876e-08 - syst_JES_MJB_Stat2: 1.5419227719960555e-08 - syst_JES_MJB_Stat3: 8.529221696614528e-09 + syst_JES_MJB_Stat15: 5.16237743e-10 + syst_JES_MJB_Stat16: 2.04409185e-08 + syst_JES_MJB_Stat2: 1.54192277e-08 + syst_JES_MJB_Stat3: 8.52922170e-09 syst_JES_MJB_Stat4: 0.0 - syst_JES_MJB_Stat5: 1.547587396562792e-08 - syst_JES_MJB_Stat6: 1.4235184956648788e-08 - syst_JES_MJB_Stat7: 1.6531141484685807e-09 - syst_JES_MJB_Stat8: 8.168351608494825e-10 - syst_JES_MJB_Stat9: 9.139220018898933e-10 - syst_JES_MJB_Threshold: 8.716652683226515e-07 - syst_JES_Pileup_MuOffset: 3.5356275256310585e-06 - syst_JES_Pileup_NPVOffset: 3.4798176676371995e-06 - syst_JES_Pileup_Pt_term: 2.791244960586584e-06 - syst_JES_Pileup_Rho_topology: 4.701179080826426e-06 - syst_JES_PunchThrough_MC15: 4.560044736622658e-06 + syst_JES_MJB_Stat5: 1.54758740e-08 + syst_JES_MJB_Stat6: 1.42351850e-08 + syst_JES_MJB_Stat7: 1.65311415e-09 + syst_JES_MJB_Stat8: 8.16835161e-10 + syst_JES_MJB_Stat9: 9.13922002e-10 + syst_JES_MJB_Threshold: 8.71665268e-07 + syst_JES_Pileup_MuOffset: 3.53562753e-06 + syst_JES_Pileup_NPVOffset: 3.47981767e-06 + syst_JES_Pileup_Pt_term: 2.79124496e-06 + syst_JES_Pileup_Rho_topology: 4.70117908e-06 + syst_JES_PunchThrough_MC15: 4.56004474e-06 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 8.551042743431937e-06 - syst_JES_Zjet_MuScale: 4.0243149671962803e-07 - syst_JES_Zjet_MuSmearID: 5.6317632008103584e-09 - syst_JES_Zjet_MuSmearMS: 1.0801081091724107e-06 - syst_JES_Zjet_OOC: 4.138262678951156e-06 - syst_JES_Zjet_Stat1: 5.453636584885355e-21 - syst_JES_Zjet_Stat10: 1.727136904813498e-07 - syst_JES_Zjet_Stat11: 8.97871195829335e-09 - syst_JES_Zjet_Stat12: 8.608186844510288e-07 - syst_JES_Zjet_Stat13: 1.167345951292932e-06 - syst_JES_Zjet_Stat2: 5.95392465101789e-10 - syst_JES_Zjet_Stat3: 3.227676679904603e-08 - syst_JES_Zjet_Stat4: 4.67913526023642e-08 - syst_JES_Zjet_Stat5: 5.176365806963414e-21 - syst_JES_Zjet_Stat6: 1.1852098411251909e-20 - syst_JES_Zjet_Stat7: 8.709617436323448e-12 - syst_JES_Zjet_Stat8: 2.604730000268886e-15 - syst_JES_Zjet_Stat9: 4.500732570278977e-11 - syst_JES_Zjet_Veto: 6.803869492244835e-07 - syst_JES_Zjet_dPhi: 4.478881517108931e-08 + syst_JES_Zjet_MC: 8.55104274e-06 + syst_JES_Zjet_MuScale: 4.02431497e-07 + syst_JES_Zjet_MuSmearID: 5.63176320e-09 + syst_JES_Zjet_MuSmearMS: 1.08010811e-06 + syst_JES_Zjet_OOC: 4.13826268e-06 + syst_JES_Zjet_Stat1: 5.45363658e-21 + syst_JES_Zjet_Stat10: 1.72713690e-07 + syst_JES_Zjet_Stat11: 8.97871196e-09 + syst_JES_Zjet_Stat12: 8.60818684e-07 + syst_JES_Zjet_Stat13: 1.16734595e-06 + syst_JES_Zjet_Stat2: 5.95392465e-10 + syst_JES_Zjet_Stat3: 3.22767668e-08 + syst_JES_Zjet_Stat4: 4.67913526e-08 + syst_JES_Zjet_Stat5: 5.17636581e-21 + syst_JES_Zjet_Stat6: 1.18520984e-20 + syst_JES_Zjet_Stat7: 8.70961744e-12 + syst_JES_Zjet_Stat8: 2.60473000e-15 + syst_JES_Zjet_Stat9: 4.50073257e-11 + syst_JES_Zjet_Veto: 6.80386949e-07 + syst_JES_Zjet_dPhi: 4.47888152e-08 syst_PRW: 0.0 syst_Unfolding_bias: 0.0 - syst_cleaning: 5.507055542665245e-06 - syst_lumi: 1.1028e-05 -- stat: 1.7381e-05 - syst_JER_CROSS_CALIB_FORWARD: 2.912e-21 - syst_JER_NOISE_FORWARD: 1.2909e-09 - syst_JER_NP0: 7.918229221233748e-07 - syst_JER_NP1: 1.2765606007941806e-06 - syst_JER_NP2: 1.620233538722119e-06 - syst_JER_NP3: 1.215378778907744e-07 + syst_cleaning: 5.50705554e-06 + syst_lumi: 1.10280000e-05 +- stat: 1.73810000e-05 + syst_JER_CROSS_CALIB_FORWARD: 2.91200000e-21 + syst_JER_NOISE_FORWARD: 1.29090000e-09 + syst_JER_NP0: 7.91822922e-07 + syst_JER_NP1: 1.27656060e-06 + syst_JER_NP2: 1.62023354e-06 + syst_JER_NP3: 1.21537878e-07 syst_JER_NP4: 0.0 syst_JER_NP5: 0.0 syst_JER_NP6: 0.0 - syst_JER_NP7: 2.0690766056383704e-22 - syst_JER_NP8: 5.139282738480925e-08 - syst_JES_EtaIntercalibration_Modelling: 1.9204407697192854e-05 - syst_JES_EtaIntercalibration_NonClosure: 9.023446902376054e-07 - syst_JES_EtaIntercalibration_Stat0: 3.4472268202136044e-06 + syst_JER_NP7: 2.06907661e-22 + syst_JER_NP8: 5.13928274e-08 + syst_JES_EtaIntercalibration_Modelling: 1.92044077e-05 + syst_JES_EtaIntercalibration_NonClosure: 9.02344690e-07 + syst_JES_EtaIntercalibration_Stat0: 3.44722682e-06 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 syst_JES_EtaIntercalibration_Stat100: 0.0 @@ -36320,97 +36320,97 @@ bins: syst_JES_EtaIntercalibration_Stat98: 0.0 syst_JES_EtaIntercalibration_Stat99: 0.0 syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0 - syst_JES_Flavour_Comp: 6.571018414218606e-06 - syst_JES_Flavour_Response: 1.819752232448143e-08 - syst_JES_Gjet_Generator: 8.23903798995975e-06 - syst_JES_Gjet_OOC: 6.937572125751198e-06 - syst_JES_Gjet_Purity: 8.010330455106081e-07 - syst_JES_Gjet_Stat1: 1.86628474515298e-09 - syst_JES_Gjet_Stat10: 5.766863163800577e-10 - syst_JES_Gjet_Stat11: 7.097377173998856e-08 - syst_JES_Gjet_Stat12: 2.7884909897648944e-07 - syst_JES_Gjet_Stat13: 9.544421132263601e-07 - syst_JES_Gjet_Stat14: 4.0878072361597475e-06 - syst_JES_Gjet_Stat15: 4.823508551873833e-06 - syst_JES_Gjet_Stat2: 1.4445303735124438e-09 - syst_JES_Gjet_Stat3: 1.238915013635217e-20 - syst_JES_Gjet_Stat4: 7.848937328549642e-22 - syst_JES_Gjet_Stat5: 1.3602534203228456e-21 - syst_JES_Gjet_Stat6: 3.2440178791122595e-10 - syst_JES_Gjet_Stat7: 2.5964920436619866e-16 - syst_JES_Gjet_Stat8: 1.917963835705721e-09 - syst_JES_Gjet_Stat9: 2.5339903311123658e-08 - syst_JES_Gjet_Veto: 7.038287717904121e-06 - syst_JES_Gjet_dPhi: 2.3316293937931043e-07 - syst_JES_LArESZee: 1.262633655301489e-05 - syst_JES_LArEsmear: 5.422841690479263e-07 - syst_JES_LAr_JVT: 8.665771561147916e-07 - syst_JES_MJB_Alpha: 2.4394077434235955e-08 - syst_JES_MJB_Asym: 1.6757696381066223e-06 - syst_JES_MJB_Beta: 2.4032204955018172e-08 - syst_JES_MJB_Fragmentation: 4.019407512308251e-07 - syst_JES_MJB_Stat1: 1.7534749157031017e-10 - syst_JES_MJB_Stat10: 3.44966309792959e-10 + syst_JES_Flavour_Comp: 6.57101841e-06 + syst_JES_Flavour_Response: 1.81975223e-08 + syst_JES_Gjet_Generator: 8.23903799e-06 + syst_JES_Gjet_OOC: 6.93757213e-06 + syst_JES_Gjet_Purity: 8.01033046e-07 + syst_JES_Gjet_Stat1: 1.86628475e-09 + syst_JES_Gjet_Stat10: 5.76686316e-10 + syst_JES_Gjet_Stat11: 7.09737717e-08 + syst_JES_Gjet_Stat12: 2.78849099e-07 + syst_JES_Gjet_Stat13: 9.54442113e-07 + syst_JES_Gjet_Stat14: 4.08780724e-06 + syst_JES_Gjet_Stat15: 4.82350855e-06 + syst_JES_Gjet_Stat2: 1.44453037e-09 + syst_JES_Gjet_Stat3: 1.23891501e-20 + syst_JES_Gjet_Stat4: 7.84893733e-22 + syst_JES_Gjet_Stat5: 1.36025342e-21 + syst_JES_Gjet_Stat6: 3.24401788e-10 + syst_JES_Gjet_Stat7: 2.59649204e-16 + syst_JES_Gjet_Stat8: 1.91796384e-09 + syst_JES_Gjet_Stat9: 2.53399033e-08 + syst_JES_Gjet_Veto: 7.03828772e-06 + syst_JES_Gjet_dPhi: 2.33162939e-07 + syst_JES_LArESZee: 1.26263366e-05 + syst_JES_LArEsmear: 5.42284169e-07 + syst_JES_LAr_JVT: 8.66577156e-07 + syst_JES_MJB_Alpha: 2.43940774e-08 + syst_JES_MJB_Asym: 1.67576964e-06 + syst_JES_MJB_Beta: 2.40322050e-08 + syst_JES_MJB_Fragmentation: 4.01940751e-07 + syst_JES_MJB_Stat1: 1.75347492e-10 + syst_JES_MJB_Stat10: 3.44966310e-10 syst_JES_MJB_Stat11: 0.0 syst_JES_MJB_Stat12: 0.0 syst_JES_MJB_Stat13: 0.0 syst_JES_MJB_Stat14: 0.0 - syst_JES_MJB_Stat15: 1.9580834379566157e-10 - syst_JES_MJB_Stat16: 7.821277181509423e-09 - syst_JES_MJB_Stat2: 5.4159703832554325e-09 - syst_JES_MJB_Stat3: 2.923365697274291e-09 + syst_JES_MJB_Stat15: 1.95808344e-10 + syst_JES_MJB_Stat16: 7.82127718e-09 + syst_JES_MJB_Stat2: 5.41597038e-09 + syst_JES_MJB_Stat3: 2.92336570e-09 syst_JES_MJB_Stat4: 0.0 - syst_JES_MJB_Stat5: 5.418720951479233e-09 - syst_JES_MJB_Stat6: 4.7661390034282475e-09 - syst_JES_MJB_Stat7: 1.1171859989931701e-09 - syst_JES_MJB_Stat8: 3.0977728693369375e-10 - syst_JES_MJB_Stat9: 3.465078361603701e-10 - syst_JES_MJB_Threshold: 3.315727521977643e-07 - syst_JES_Pileup_MuOffset: 1.882109122766265e-06 - syst_JES_Pileup_NPVOffset: 1.8510924308364503e-06 - syst_JES_Pileup_Pt_term: 9.957150031510022e-07 - syst_JES_Pileup_Rho_topology: 1.5155255548818702e-06 - syst_JES_PunchThrough_MC15: 2.7033421906965456e-06 + syst_JES_MJB_Stat5: 5.41872095e-09 + syst_JES_MJB_Stat6: 4.76613900e-09 + syst_JES_MJB_Stat7: 1.11718600e-09 + syst_JES_MJB_Stat8: 3.09777287e-10 + syst_JES_MJB_Stat9: 3.46507836e-10 + syst_JES_MJB_Threshold: 3.31572752e-07 + syst_JES_Pileup_MuOffset: 1.88210912e-06 + syst_JES_Pileup_NPVOffset: 1.85109243e-06 + syst_JES_Pileup_Pt_term: 9.95715003e-07 + syst_JES_Pileup_Rho_topology: 1.51552555e-06 + syst_JES_PunchThrough_MC15: 2.70334219e-06 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 2.9201782051785813e-06 - syst_JES_Zjet_MuScale: 1.5813814209971608e-07 - syst_JES_Zjet_MuSmearID: 1.9970545811269405e-09 - syst_JES_Zjet_MuSmearMS: 4.041318194599381e-07 - syst_JES_Zjet_OOC: 2.103374248677586e-06 - syst_JES_Zjet_Stat1: 7.89563695973922e-22 - syst_JES_Zjet_Stat10: 6.56236306741372e-08 - syst_JES_Zjet_Stat11: 8.353629873743509e-10 - syst_JES_Zjet_Stat12: 3.2584499382375046e-07 - syst_JES_Zjet_Stat13: 4.3833231685560213e-07 - syst_JES_Zjet_Stat2: 8.64899570759499e-11 - syst_JES_Zjet_Stat3: 9.358270513294642e-09 - syst_JES_Zjet_Stat4: 1.7744860526278633e-08 - syst_JES_Zjet_Stat5: 7.447651760790108e-22 - syst_JES_Zjet_Stat6: 1.7251506455959144e-21 - syst_JES_Zjet_Stat7: 5.440371526673756e-13 - syst_JES_Zjet_Stat8: 1.8451999357349517e-16 - syst_JES_Zjet_Stat9: 2.906379941919762e-12 - syst_JES_Zjet_Veto: 2.0020080837748883e-07 - syst_JES_Zjet_dPhi: 4.188772699825093e-09 + syst_JES_Zjet_MC: 2.92017821e-06 + syst_JES_Zjet_MuScale: 1.58138142e-07 + syst_JES_Zjet_MuSmearID: 1.99705458e-09 + syst_JES_Zjet_MuSmearMS: 4.04131819e-07 + syst_JES_Zjet_OOC: 2.10337425e-06 + syst_JES_Zjet_Stat1: 7.89563696e-22 + syst_JES_Zjet_Stat10: 6.56236307e-08 + syst_JES_Zjet_Stat11: 8.35362987e-10 + syst_JES_Zjet_Stat12: 3.25844994e-07 + syst_JES_Zjet_Stat13: 4.38332317e-07 + syst_JES_Zjet_Stat2: 8.64899571e-11 + syst_JES_Zjet_Stat3: 9.35827051e-09 + syst_JES_Zjet_Stat4: 1.77448605e-08 + syst_JES_Zjet_Stat5: 7.44765176e-22 + syst_JES_Zjet_Stat6: 1.72515065e-21 + syst_JES_Zjet_Stat7: 5.44037153e-13 + syst_JES_Zjet_Stat8: 1.84519994e-16 + syst_JES_Zjet_Stat9: 2.90637994e-12 + syst_JES_Zjet_Veto: 2.00200808e-07 + syst_JES_Zjet_dPhi: 4.18877270e-09 syst_PRW: 0.0 syst_Unfolding_bias: 0.0 - syst_cleaning: 2.1148340360415993e-06 - syst_lumi: 4.182e-06 -- stat: 1.023e-05 - syst_JER_CROSS_CALIB_FORWARD: 4.704e-22 - syst_JER_NOISE_FORWARD: 1.0556e-10 - syst_JER_NP0: 2.4231862227241225e-07 - syst_JER_NP1: 5.413168480658994e-07 - syst_JER_NP2: 8.608556368520799e-07 - syst_JER_NP3: 4.5769434172246854e-08 + syst_cleaning: 2.11483404e-06 + syst_lumi: 4.18200000e-06 +- stat: 1.02300000e-05 + syst_JER_CROSS_CALIB_FORWARD: 4.70400000e-22 + syst_JER_NOISE_FORWARD: 1.05560000e-10 + syst_JER_NP0: 2.42318622e-07 + syst_JER_NP1: 5.41316848e-07 + syst_JER_NP2: 8.60855637e-07 + syst_JER_NP3: 4.57694342e-08 syst_JER_NP4: 0.0 syst_JER_NP5: 0.0 syst_JER_NP6: 0.0 - syst_JER_NP7: 4.113866399143268e-23 - syst_JER_NP8: 8.326727325413508e-09 - syst_JES_EtaIntercalibration_Modelling: 8.376624663311588e-06 - syst_JES_EtaIntercalibration_NonClosure: 1.499339481238322e-07 - syst_JES_EtaIntercalibration_Stat0: 1.5227760012556016e-06 + syst_JER_NP7: 4.11386640e-23 + syst_JER_NP8: 8.32672733e-09 + syst_JES_EtaIntercalibration_Modelling: 8.37662466e-06 + syst_JES_EtaIntercalibration_NonClosure: 1.49933948e-07 + syst_JES_EtaIntercalibration_Stat0: 1.52277600e-06 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 syst_JES_EtaIntercalibration_Stat100: 0.0 @@ -36657,97 +36657,97 @@ bins: syst_JES_EtaIntercalibration_Stat98: 0.0 syst_JES_EtaIntercalibration_Stat99: 0.0 syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0 - syst_JES_Flavour_Comp: 2.729739548015524e-06 - syst_JES_Flavour_Response: 1.7724162265111432e-09 - syst_JES_Gjet_Generator: 3.4133386881468414e-06 - syst_JES_Gjet_OOC: 2.791148643479956e-06 - syst_JES_Gjet_Purity: 2.5351816714981194e-07 - syst_JES_Gjet_Stat1: 5.616174743539313e-10 - syst_JES_Gjet_Stat10: 4.706848069568424e-11 - syst_JES_Gjet_Stat11: 2.6724944808175005e-08 - syst_JES_Gjet_Stat12: 1.048443697820727e-07 - syst_JES_Gjet_Stat13: 4.5211335967874253e-07 - syst_JES_Gjet_Stat14: 1.8765942555597892e-06 - syst_JES_Gjet_Stat15: 2.43001728388915e-06 - syst_JES_Gjet_Stat2: 4.3439834253827445e-10 - syst_JES_Gjet_Stat3: 1.3247023118704821e-21 - syst_JES_Gjet_Stat4: 1.2606272992046458e-22 - syst_JES_Gjet_Stat5: 2.163504737688365e-22 - syst_JES_Gjet_Stat6: 2.6375208259841286e-11 - syst_JES_Gjet_Stat7: 2.036775889789547e-17 - syst_JES_Gjet_Stat8: 5.795576485827359e-10 - syst_JES_Gjet_Stat9: 9.541867898565084e-09 - syst_JES_Gjet_Veto: 2.9173733048754665e-06 - syst_JES_Gjet_dPhi: 5.251664470194188e-08 - syst_JES_LArESZee: 5.573535413003133e-06 - syst_JES_LArEsmear: 2.51597202488422e-07 - syst_JES_LAr_JVT: 4.4666504080238915e-07 - syst_JES_MJB_Alpha: 3.986939461541898e-09 - syst_JES_MJB_Asym: 1.01327566831539e-06 - syst_JES_MJB_Beta: 3.906640596471603e-09 - syst_JES_MJB_Fragmentation: 1.5107013495393454e-07 - syst_JES_MJB_Stat1: 2.6135117308900682e-11 - syst_JES_MJB_Stat10: 1.2990453717923583e-10 + syst_JES_Flavour_Comp: 2.72973955e-06 + syst_JES_Flavour_Response: 1.77241623e-09 + syst_JES_Gjet_Generator: 3.41333869e-06 + syst_JES_Gjet_OOC: 2.79114864e-06 + syst_JES_Gjet_Purity: 2.53518167e-07 + syst_JES_Gjet_Stat1: 5.61617474e-10 + syst_JES_Gjet_Stat10: 4.70684807e-11 + syst_JES_Gjet_Stat11: 2.67249448e-08 + syst_JES_Gjet_Stat12: 1.04844370e-07 + syst_JES_Gjet_Stat13: 4.52113360e-07 + syst_JES_Gjet_Stat14: 1.87659426e-06 + syst_JES_Gjet_Stat15: 2.43001728e-06 + syst_JES_Gjet_Stat2: 4.34398343e-10 + syst_JES_Gjet_Stat3: 1.32470231e-21 + syst_JES_Gjet_Stat4: 1.26062730e-22 + syst_JES_Gjet_Stat5: 2.16350474e-22 + syst_JES_Gjet_Stat6: 2.63752083e-11 + syst_JES_Gjet_Stat7: 2.03677589e-17 + syst_JES_Gjet_Stat8: 5.79557649e-10 + syst_JES_Gjet_Stat9: 9.54186790e-09 + syst_JES_Gjet_Veto: 2.91737330e-06 + syst_JES_Gjet_dPhi: 5.25166447e-08 + syst_JES_LArESZee: 5.57353541e-06 + syst_JES_LArEsmear: 2.51597202e-07 + syst_JES_LAr_JVT: 4.46665041e-07 + syst_JES_MJB_Alpha: 3.98693946e-09 + syst_JES_MJB_Asym: 1.01327567e-06 + syst_JES_MJB_Beta: 3.90664060e-09 + syst_JES_MJB_Fragmentation: 1.51070135e-07 + syst_JES_MJB_Stat1: 2.61351173e-11 + syst_JES_MJB_Stat10: 1.29904537e-10 syst_JES_MJB_Stat11: 0.0 syst_JES_MJB_Stat12: 0.0 syst_JES_MJB_Stat13: 0.0 syst_JES_MJB_Stat14: 0.0 - syst_JES_MJB_Stat15: 7.37507233862828e-11 - syst_JES_MJB_Stat16: 2.9510503615323136e-09 - syst_JES_MJB_Stat2: 1.6269360229952127e-09 - syst_JES_MJB_Stat3: 8.633327689830845e-10 + syst_JES_MJB_Stat15: 7.37507234e-11 + syst_JES_MJB_Stat16: 2.95105036e-09 + syst_JES_MJB_Stat2: 1.62693602e-09 + syst_JES_MJB_Stat3: 8.63332769e-10 syst_JES_MJB_Stat4: 0.0 - syst_JES_MJB_Stat5: 1.6272617337109602e-09 - syst_JES_MJB_Stat6: 1.375606981481266e-09 - syst_JES_MJB_Stat7: 4.509458540253261e-10 - syst_JES_MJB_Stat8: 1.1665362188976388e-10 - syst_JES_MJB_Stat9: 1.3051075496180943e-10 - syst_JES_MJB_Threshold: 1.3721681675363263e-07 - syst_JES_Pileup_MuOffset: 9.641632693688346e-07 - syst_JES_Pileup_NPVOffset: 9.849675070782793e-07 - syst_JES_Pileup_Pt_term: 2.999449784127082e-07 - syst_JES_Pileup_Rho_topology: 5.25825940782689e-07 - syst_JES_PunchThrough_MC15: 1.5555243488933243e-06 + syst_JES_MJB_Stat5: 1.62726173e-09 + syst_JES_MJB_Stat6: 1.37560698e-09 + syst_JES_MJB_Stat7: 4.50945854e-10 + syst_JES_MJB_Stat8: 1.16653622e-10 + syst_JES_MJB_Stat9: 1.30510755e-10 + syst_JES_MJB_Threshold: 1.37216817e-07 + syst_JES_Pileup_MuOffset: 9.64163269e-07 + syst_JES_Pileup_NPVOffset: 9.84967507e-07 + syst_JES_Pileup_Pt_term: 2.99944978e-07 + syst_JES_Pileup_Rho_topology: 5.25825941e-07 + syst_JES_PunchThrough_MC15: 1.55552435e-06 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 1.1319628295575786e-06 - syst_JES_Zjet_MuScale: 6.007608242726468e-08 - syst_JES_Zjet_MuSmearID: 6.011082327667834e-10 - syst_JES_Zjet_MuSmearMS: 1.5166733357911978e-07 - syst_JES_Zjet_OOC: 1.0876289475276025e-06 - syst_JES_Zjet_Stat1: 1.2711602062682735e-22 - syst_JES_Zjet_Stat10: 2.4724779885056664e-08 - syst_JES_Zjet_Stat11: 6.829448699790855e-11 - syst_JES_Zjet_Stat12: 1.226826418039651e-07 - syst_JES_Zjet_Stat13: 1.64607839424494e-07 - syst_JES_Zjet_Stat2: 1.0172334392851672e-11 - syst_JES_Zjet_Stat3: 2.0862551977167126e-09 - syst_JES_Zjet_Stat4: 6.6839840666407964e-09 - syst_JES_Zjet_Stat5: 1.1901558007252663e-22 - syst_JES_Zjet_Stat6: 2.788165525932777e-22 - syst_JES_Zjet_Stat7: 3.507402804209271e-14 - syst_JES_Zjet_Stat8: 1.4476259820062743e-17 - syst_JES_Zjet_Stat9: 1.8888000739992201e-13 - syst_JES_Zjet_Veto: 4.485519603646829e-08 - syst_JES_Zjet_dPhi: 3.433961161515954e-10 + syst_JES_Zjet_MC: 1.13196283e-06 + syst_JES_Zjet_MuScale: 6.00760824e-08 + syst_JES_Zjet_MuSmearID: 6.01108233e-10 + syst_JES_Zjet_MuSmearMS: 1.51667334e-07 + syst_JES_Zjet_OOC: 1.08762895e-06 + syst_JES_Zjet_Stat1: 1.27116021e-22 + syst_JES_Zjet_Stat10: 2.47247799e-08 + syst_JES_Zjet_Stat11: 6.82944870e-11 + syst_JES_Zjet_Stat12: 1.22682642e-07 + syst_JES_Zjet_Stat13: 1.64607839e-07 + syst_JES_Zjet_Stat2: 1.01723344e-11 + syst_JES_Zjet_Stat3: 2.08625520e-09 + syst_JES_Zjet_Stat4: 6.68398407e-09 + syst_JES_Zjet_Stat5: 1.19015580e-22 + syst_JES_Zjet_Stat6: 2.78816553e-22 + syst_JES_Zjet_Stat7: 3.50740280e-14 + syst_JES_Zjet_Stat8: 1.44762598e-17 + syst_JES_Zjet_Stat9: 1.88880007e-13 + syst_JES_Zjet_Veto: 4.48551960e-08 + syst_JES_Zjet_dPhi: 3.43396116e-10 syst_PRW: 0.0 syst_Unfolding_bias: 0.0 - syst_cleaning: 8.05230420438771e-07 - syst_lumi: 1.575e-06 -- stat: 5.773e-06 - syst_JER_CROSS_CALIB_FORWARD: 9.241e-23 - syst_JER_NOISE_FORWARD: 8.814e-12 - syst_JER_NP0: 6.248901365040098e-08 - syst_JER_NP1: 2.416312634987451e-07 - syst_JER_NP2: 4.620265657946521e-07 - syst_JER_NP3: 1.808260976735504e-08 + syst_cleaning: 8.05230420e-07 + syst_lumi: 1.57500000e-06 +- stat: 5.77300000e-06 + syst_JER_CROSS_CALIB_FORWARD: 9.24100000e-23 + syst_JER_NOISE_FORWARD: 8.81400000e-12 + syst_JER_NP0: 6.24890137e-08 + syst_JER_NP1: 2.41631263e-07 + syst_JER_NP2: 4.62026566e-07 + syst_JER_NP3: 1.80826098e-08 syst_JER_NP4: 0.0 syst_JER_NP5: 0.0 syst_JER_NP6: 0.0 - syst_JER_NP7: 9.778627242614374e-24 - syst_JER_NP8: 1.1633458283589654e-09 - syst_JES_EtaIntercalibration_Modelling: 3.957130778733501e-06 - syst_JES_EtaIntercalibration_NonClosure: 2.2466805447148024e-08 - syst_JES_EtaIntercalibration_Stat0: 7.977326118443447e-07 + syst_JER_NP7: 9.77862724e-24 + syst_JER_NP8: 1.16334583e-09 + syst_JES_EtaIntercalibration_Modelling: 3.95713078e-06 + syst_JES_EtaIntercalibration_NonClosure: 2.24668054e-08 + syst_JES_EtaIntercalibration_Stat0: 7.97732612e-07 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 syst_JES_EtaIntercalibration_Stat100: 0.0 @@ -36994,97 +36994,97 @@ bins: syst_JES_EtaIntercalibration_Stat98: 0.0 syst_JES_EtaIntercalibration_Stat99: 0.0 syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0 - syst_JES_Flavour_Comp: 1.2125102020189356e-06 - syst_JES_Flavour_Response: 1.669433047197461e-10 - syst_JES_Gjet_Generator: 1.530508003899359e-06 - syst_JES_Gjet_OOC: 1.2261128118978284e-06 - syst_JES_Gjet_Purity: 9.604390640092686e-08 - syst_JES_Gjet_Stat1: 1.426343840032589e-10 - syst_JES_Gjet_Stat10: 3.9265591807586445e-12 - syst_JES_Gjet_Stat11: 1.0559250008878473e-08 - syst_JES_Gjet_Stat12: 4.1412709099985236e-08 - syst_JES_Gjet_Stat13: 2.311923196713074e-07 - syst_JES_Gjet_Stat14: 8.60874537897364e-07 - syst_JES_Gjet_Stat15: 1.2369943694293845e-06 - syst_JES_Gjet_Stat2: 1.1033163644213748e-10 - syst_JES_Gjet_Stat3: 1.726485917782129e-22 - syst_JES_Gjet_Stat4: 2.4608892920040106e-23 - syst_JES_Gjet_Stat5: 4.179617775586663e-23 - syst_JES_Gjet_Stat6: 2.1948431851729178e-12 - syst_JES_Gjet_Stat7: 1.9613069172029145e-18 - syst_JES_Gjet_Stat8: 1.4733119060141337e-10 - syst_JES_Gjet_Stat9: 3.769808582635995e-09 - syst_JES_Gjet_Veto: 1.3000658627546529e-06 - syst_JES_Gjet_dPhi: 9.75697332321863e-09 - syst_JES_LArESZee: 2.6501103278920296e-06 - syst_JES_LArEsmear: 1.3296291952552036e-07 - syst_JES_LAr_JVT: 2.3954680270878176e-07 - syst_JES_MJB_Alpha: 4.277852626151934e-09 - syst_JES_MJB_Asym: 5.134793926731627e-07 - syst_JES_MJB_Beta: 4.227069995871845e-09 - syst_JES_MJB_Fragmentation: 5.965670289246633e-08 - syst_JES_MJB_Stat1: 3.553835773850559e-12 - syst_JES_MJB_Stat10: 5.1329382349482843e-11 + syst_JES_Flavour_Comp: 1.21251020e-06 + syst_JES_Flavour_Response: 1.66943305e-10 + syst_JES_Gjet_Generator: 1.53050800e-06 + syst_JES_Gjet_OOC: 1.22611281e-06 + syst_JES_Gjet_Purity: 9.60439064e-08 + syst_JES_Gjet_Stat1: 1.42634384e-10 + syst_JES_Gjet_Stat10: 3.92655918e-12 + syst_JES_Gjet_Stat11: 1.05592500e-08 + syst_JES_Gjet_Stat12: 4.14127091e-08 + syst_JES_Gjet_Stat13: 2.31192320e-07 + syst_JES_Gjet_Stat14: 8.60874538e-07 + syst_JES_Gjet_Stat15: 1.23699437e-06 + syst_JES_Gjet_Stat2: 1.10331636e-10 + syst_JES_Gjet_Stat3: 1.72648592e-22 + syst_JES_Gjet_Stat4: 2.46088929e-23 + syst_JES_Gjet_Stat5: 4.17961778e-23 + syst_JES_Gjet_Stat6: 2.19484319e-12 + syst_JES_Gjet_Stat7: 1.96130692e-18 + syst_JES_Gjet_Stat8: 1.47331191e-10 + syst_JES_Gjet_Stat9: 3.76980858e-09 + syst_JES_Gjet_Veto: 1.30006586e-06 + syst_JES_Gjet_dPhi: 9.75697332e-09 + syst_JES_LArESZee: 2.65011033e-06 + syst_JES_LArEsmear: 1.32962920e-07 + syst_JES_LAr_JVT: 2.39546803e-07 + syst_JES_MJB_Alpha: 4.27785263e-09 + syst_JES_MJB_Asym: 5.13479393e-07 + syst_JES_MJB_Beta: 4.22707000e-09 + syst_JES_MJB_Fragmentation: 5.96567029e-08 + syst_JES_MJB_Stat1: 3.55383577e-12 + syst_JES_MJB_Stat10: 5.13293823e-11 syst_JES_MJB_Stat11: 0.0 syst_JES_MJB_Stat12: 0.0 syst_JES_MJB_Stat13: 0.0 syst_JES_MJB_Stat14: 0.0 - syst_JES_MJB_Stat15: 2.914175483734636e-11 - syst_JES_MJB_Stat16: 1.1664481417962823e-09 - syst_JES_MJB_Stat2: 4.1315547590435093e-10 - syst_JES_MJB_Stat3: 2.192205993970457e-10 + syst_JES_MJB_Stat15: 2.91417548e-11 + syst_JES_MJB_Stat16: 1.16644814e-09 + syst_JES_MJB_Stat2: 4.13155476e-10 + syst_JES_MJB_Stat3: 2.19220599e-10 syst_JES_MJB_Stat4: 0.0 - syst_JES_MJB_Stat5: 4.1300751506479874e-10 - syst_JES_MJB_Stat6: 3.4503537137516785e-10 - syst_JES_MJB_Stat7: 1.2990429237361317e-10 - syst_JES_MJB_Stat8: 4.6089871989407826e-11 - syst_JES_MJB_Stat9: 5.15545489544657e-11 - syst_JES_MJB_Threshold: 8.578150893403542e-08 - syst_JES_Pileup_MuOffset: 4.5441611712174115e-07 - syst_JES_Pileup_NPVOffset: 4.516742098847354e-07 - syst_JES_Pileup_Pt_term: 7.612745682734974e-08 - syst_JES_Pileup_Rho_topology: 1.8195822927254485e-07 - syst_JES_PunchThrough_MC15: 8.36971337621546e-07 + syst_JES_MJB_Stat5: 4.13007515e-10 + syst_JES_MJB_Stat6: 3.45035371e-10 + syst_JES_MJB_Stat7: 1.29904292e-10 + syst_JES_MJB_Stat8: 4.60898720e-11 + syst_JES_MJB_Stat9: 5.15545490e-11 + syst_JES_MJB_Threshold: 8.57815089e-08 + syst_JES_Pileup_MuOffset: 4.54416117e-07 + syst_JES_Pileup_NPVOffset: 4.51674210e-07 + syst_JES_Pileup_Pt_term: 7.61274568e-08 + syst_JES_Pileup_Rho_topology: 1.81958229e-07 + syst_JES_PunchThrough_MC15: 8.36971338e-07 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 4.471356685336119e-07 - syst_JES_Zjet_MuScale: 2.3782446369881716e-08 - syst_JES_Zjet_MuSmearID: 1.526802786871975e-10 - syst_JES_Zjet_MuSmearMS: 5.988882763086951e-08 - syst_JES_Zjet_OOC: 4.919493692190285e-07 - syst_JES_Zjet_Stat1: 2.4875317083406193e-23 - syst_JES_Zjet_Stat10: 9.76874831921638e-09 - syst_JES_Zjet_Stat11: 5.702043381023596e-12 - syst_JES_Zjet_Stat12: 4.8472876951961496e-08 - syst_JES_Zjet_Stat13: 6.498345635621425e-08 - syst_JES_Zjet_Stat2: 1.1115436057572548e-12 - syst_JES_Zjet_Stat3: 3.8598752246672434e-10 - syst_JES_Zjet_Stat4: 2.6405114561631177e-09 - syst_JES_Zjet_Stat5: 2.3121878097377814e-23 - syst_JES_Zjet_Stat6: 5.471896449129862e-23 - syst_JES_Zjet_Stat7: 2.6353151688470515e-15 - syst_JES_Zjet_Stat8: 1.3946100972917125e-18 - syst_JES_Zjet_Stat9: 1.4038255115775747e-14 - syst_JES_Zjet_Veto: 8.31263545404675e-09 - syst_JES_Zjet_dPhi: 2.8704735009037706e-11 + syst_JES_Zjet_MC: 4.47135669e-07 + syst_JES_Zjet_MuScale: 2.37824464e-08 + syst_JES_Zjet_MuSmearID: 1.52680279e-10 + syst_JES_Zjet_MuSmearMS: 5.98888276e-08 + syst_JES_Zjet_OOC: 4.91949369e-07 + syst_JES_Zjet_Stat1: 2.48753171e-23 + syst_JES_Zjet_Stat10: 9.76874832e-09 + syst_JES_Zjet_Stat11: 5.70204338e-12 + syst_JES_Zjet_Stat12: 4.84728770e-08 + syst_JES_Zjet_Stat13: 6.49834564e-08 + syst_JES_Zjet_Stat2: 1.11154361e-12 + syst_JES_Zjet_Stat3: 3.85987522e-10 + syst_JES_Zjet_Stat4: 2.64051146e-09 + syst_JES_Zjet_Stat5: 2.31218781e-23 + syst_JES_Zjet_Stat6: 5.47189645e-23 + syst_JES_Zjet_Stat7: 2.63531517e-15 + syst_JES_Zjet_Stat8: 1.39461010e-18 + syst_JES_Zjet_Stat9: 1.40382551e-14 + syst_JES_Zjet_Veto: 8.31263545e-09 + syst_JES_Zjet_dPhi: 2.87047350e-11 syst_PRW: 0.0 syst_Unfolding_bias: 0.0 - syst_cleaning: 3.200829892387285e-07 - syst_lumi: 6.222e-07 -- stat: 1.8438e-06 + syst_cleaning: 3.20082989e-07 + syst_lumi: 6.22200000e-07 +- stat: 1.84380000e-06 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 syst_JER_NP0: 0.0 - syst_JER_NP1: 5.853979202858513e-08 - syst_JER_NP2: 1.3856494388913814e-07 - syst_JER_NP3: 3.6624214326043908e-09 + syst_JER_NP1: 5.85397920e-08 + syst_JER_NP2: 1.38564944e-07 + syst_JER_NP3: 3.66242143e-09 syst_JER_NP4: 0.0 syst_JER_NP5: 0.0 syst_JER_NP6: 0.0 syst_JER_NP7: 0.0 syst_JER_NP8: 0.0 - syst_JES_EtaIntercalibration_Modelling: 1.0583727356182227e-06 + syst_JES_EtaIntercalibration_Modelling: 1.05837274e-06 syst_JES_EtaIntercalibration_NonClosure: 0.0 - syst_JES_EtaIntercalibration_Stat0: 2.976921690270001e-07 + syst_JES_EtaIntercalibration_Stat0: 2.97692169e-07 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 syst_JES_EtaIntercalibration_Stat100: 0.0 @@ -37331,18 +37331,18 @@ bins: syst_JES_EtaIntercalibration_Stat98: 0.0 syst_JES_EtaIntercalibration_Stat99: 0.0 syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0 - syst_JES_Flavour_Comp: 4.1940914093519714e-07 + syst_JES_Flavour_Comp: 4.19409141e-07 syst_JES_Flavour_Response: 0.0 - syst_JES_Gjet_Generator: 4.935268797897435e-07 - syst_JES_Gjet_OOC: 4.4293997369846853e-07 - syst_JES_Gjet_Purity: 1.9476911331112026e-08 + syst_JES_Gjet_Generator: 4.93526880e-07 + syst_JES_Gjet_OOC: 4.42939974e-07 + syst_JES_Gjet_Purity: 1.94769113e-08 syst_JES_Gjet_Stat1: 0.0 syst_JES_Gjet_Stat10: 0.0 - syst_JES_Gjet_Stat11: 2.1383233501975323e-09 - syst_JES_Gjet_Stat12: 8.385577260988059e-09 - syst_JES_Gjet_Stat13: 6.298617149819474e-08 - syst_JES_Gjet_Stat14: 2.942559939916263e-07 - syst_JES_Gjet_Stat15: 4.079678663816551e-07 + syst_JES_Gjet_Stat11: 2.13832335e-09 + syst_JES_Gjet_Stat12: 8.38557726e-09 + syst_JES_Gjet_Stat13: 6.29861715e-08 + syst_JES_Gjet_Stat14: 2.94255994e-07 + syst_JES_Gjet_Stat15: 4.07967866e-07 syst_JES_Gjet_Stat2: 0.0 syst_JES_Gjet_Stat3: 0.0 syst_JES_Gjet_Stat4: 0.0 @@ -37350,52 +37350,52 @@ bins: syst_JES_Gjet_Stat6: 0.0 syst_JES_Gjet_Stat7: 0.0 syst_JES_Gjet_Stat8: 0.0 - syst_JES_Gjet_Stat9: 7.634013934359827e-10 - syst_JES_Gjet_Veto: 4.4772597009778206e-07 + syst_JES_Gjet_Stat9: 7.63401393e-10 + syst_JES_Gjet_Veto: 4.47725970e-07 syst_JES_Gjet_dPhi: 0.0 - syst_JES_LArESZee: 6.793435360699328e-07 - syst_JES_LArEsmear: 3.866803427897518e-08 - syst_JES_LAr_JVT: 6.656271253487195e-08 - syst_JES_MJB_Alpha: 1.1749873585171035e-09 - syst_JES_MJB_Asym: 1.0905515336287416e-07 - syst_JES_MJB_Beta: 1.1634185274440148e-09 - syst_JES_MJB_Fragmentation: 1.2078185821968463e-08 + syst_JES_LArESZee: 6.79343536e-07 + syst_JES_LArEsmear: 3.86680343e-08 + syst_JES_LAr_JVT: 6.65627125e-08 + syst_JES_MJB_Alpha: 1.17498736e-09 + syst_JES_MJB_Asym: 1.09055153e-07 + syst_JES_MJB_Beta: 1.16341853e-09 + syst_JES_MJB_Fragmentation: 1.20781858e-08 syst_JES_MJB_Stat1: 0.0 - syst_JES_MJB_Stat10: 1.0394036896220833e-11 + syst_JES_MJB_Stat10: 1.03940369e-11 syst_JES_MJB_Stat11: 0.0 syst_JES_MJB_Stat12: 0.0 syst_JES_MJB_Stat13: 0.0 syst_JES_MJB_Stat14: 0.0 - syst_JES_MJB_Stat15: 5.900231075983381e-12 - syst_JES_MJB_Stat16: 2.3625731405186165e-10 + syst_JES_MJB_Stat15: 5.90023108e-12 + syst_JES_MJB_Stat16: 2.36257314e-10 syst_JES_MJB_Stat2: 0.0 syst_JES_MJB_Stat3: 0.0 syst_JES_MJB_Stat4: 0.0 syst_JES_MJB_Stat5: 0.0 syst_JES_MJB_Stat6: 0.0 syst_JES_MJB_Stat7: 0.0 - syst_JES_MJB_Stat8: 9.333155776584896e-12 - syst_JES_MJB_Stat9: 1.0440802268025192e-11 - syst_JES_MJB_Threshold: 6.813338477391241e-08 - syst_JES_Pileup_MuOffset: 1.0717370852965758e-07 - syst_JES_Pileup_NPVOffset: 9.075537559836331e-08 + syst_JES_MJB_Stat8: 9.33315578e-12 + syst_JES_MJB_Stat9: 1.04408023e-11 + syst_JES_MJB_Threshold: 6.81333848e-08 + syst_JES_Pileup_MuOffset: 1.07173709e-07 + syst_JES_Pileup_NPVOffset: 9.07553756e-08 syst_JES_Pileup_Pt_term: 0.0 syst_JES_Pileup_Rho_topology: 0.0 - syst_JES_PunchThrough_MC15: 2.2050090135870192e-07 + syst_JES_PunchThrough_MC15: 2.20500901e-07 syst_JES_SingleParticle_HighPt: 0.0 syst_JES_Zjet_MC: 0.0 - syst_JES_Zjet_MuScale: 4.817699321252832e-09 + syst_JES_Zjet_MuScale: 4.81769932e-09 syst_JES_Zjet_MuSmearID: 0.0 - syst_JES_Zjet_MuSmearMS: 1.2124745110722948e-08 - syst_JES_Zjet_OOC: 9.730661436921952e-08 + syst_JES_Zjet_MuSmearMS: 1.21247451e-08 + syst_JES_Zjet_OOC: 9.73066144e-08 syst_JES_Zjet_Stat1: 0.0 - syst_JES_Zjet_Stat10: 1.978002022243658e-09 + syst_JES_Zjet_Stat10: 1.97800202e-09 syst_JES_Zjet_Stat11: 0.0 - syst_JES_Zjet_Stat12: 9.814826577683378e-09 - syst_JES_Zjet_Stat13: 1.3153025621506254e-08 + syst_JES_Zjet_Stat12: 9.81482658e-09 + syst_JES_Zjet_Stat13: 1.31530256e-08 syst_JES_Zjet_Stat2: 0.0 syst_JES_Zjet_Stat3: 0.0 - syst_JES_Zjet_Stat4: 5.347706868368908e-10 + syst_JES_Zjet_Stat4: 5.34770687e-10 syst_JES_Zjet_Stat5: 0.0 syst_JES_Zjet_Stat6: 0.0 syst_JES_Zjet_Stat7: 0.0 @@ -37405,23 +37405,23 @@ bins: syst_JES_Zjet_dPhi: 0.0 syst_PRW: 0.0 syst_Unfolding_bias: 0.0 - syst_cleaning: 6.524635392111961e-08 + syst_cleaning: 6.52463539e-08 syst_lumi: 1.26e-07 - stat: 1.4283 syst_JER_CROSS_CALIB_FORWARD: 0.10049 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.7462688590581816 - syst_JER_NP1: 0.07705467344684551 - syst_JER_NP2: 0.05707567082391587 - syst_JER_NP3: 0.059083394240683235 + syst_JER_NP0: 7.46268859e-01 + syst_JER_NP1: 7.70546734e-02 + syst_JER_NP2: 5.70756708e-02 + syst_JER_NP3: 5.90833942e-02 syst_JER_NP4: 0.0 syst_JER_NP5: 0.0 syst_JER_NP6: 0.0 syst_JER_NP7: 0.0 - syst_JER_NP8: 0.03532548088844651 - syst_JES_EtaIntercalibration_Modelling: 1.3152836196045323 - syst_JES_EtaIntercalibration_NonClosure: 0.6342997398706702 - syst_JES_EtaIntercalibration_Stat0: 0.3888988653879052 + syst_JER_NP8: 3.53254809e-02 + syst_JES_EtaIntercalibration_Modelling: 1.31528362e+00 + syst_JES_EtaIntercalibration_NonClosure: 6.34299740e-01 + syst_JES_EtaIntercalibration_Stat0: 3.88898865e-01 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 syst_JES_EtaIntercalibration_Stat100: 0.0 @@ -37668,36 +37668,36 @@ bins: syst_JES_EtaIntercalibration_Stat98: 0.0 syst_JES_EtaIntercalibration_Stat99: 0.0 syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0 - syst_JES_Flavour_Comp: 0.01797571695371286 - syst_JES_Flavour_Response: 1.5002227192987045 - syst_JES_Gjet_Generator: 0.8091296187879912 - syst_JES_Gjet_OOC: 0.547184125774862 - syst_JES_Gjet_Purity: 0.2125494765930982 - syst_JES_Gjet_Stat1: 0.0002498075873547479 - syst_JES_Gjet_Stat10: 0.00701749899934992 - syst_JES_Gjet_Stat11: 0.0041300751506479876 - syst_JES_Gjet_Stat12: 0.0006440168605518026 - syst_JES_Gjet_Stat13: 3.6147900369963733e-06 - syst_JES_Gjet_Stat14: 1.2817175976009692e-06 - syst_JES_Gjet_Stat15: 4.797925160763427e-10 - syst_JES_Gjet_Stat2: 0.0030552927715687085 - syst_JES_Gjet_Stat3: 0.00023252355461078844 - syst_JES_Gjet_Stat4: 0.00549233311181849 - syst_JES_Gjet_Stat5: 0.005524376051776411 - syst_JES_Gjet_Stat6: 0.04674534067690597 - syst_JES_Gjet_Stat7: 0.04603758898986783 - syst_JES_Gjet_Stat8: 0.015399440533668747 - syst_JES_Gjet_Stat9: 0.01035852985466567 - syst_JES_Gjet_Veto: 0.14246215172809934 - syst_JES_Gjet_dPhi: 0.054428410550005954 - syst_JES_LArESZee: 0.511539683211381 - syst_JES_LArEsmear: 0.04231536452637505 - syst_JES_LAr_JVT: 0.08285133251795049 - syst_JES_MJB_Alpha: 1.299038105676658e-06 - syst_JES_MJB_Asym: 1.641118141469972e-06 - syst_JES_MJB_Beta: 3.605263755954618e-16 - syst_JES_MJB_Fragmentation: 0.000492651621330936 - syst_JES_MJB_Stat1: 1.5887414854217159e-06 + syst_JES_Flavour_Comp: 1.79757170e-02 + syst_JES_Flavour_Response: 1.50022272e+00 + syst_JES_Gjet_Generator: 8.09129619e-01 + syst_JES_Gjet_OOC: 5.47184126e-01 + syst_JES_Gjet_Purity: 2.12549477e-01 + syst_JES_Gjet_Stat1: 2.49807587e-04 + syst_JES_Gjet_Stat10: 7.01749900e-03 + syst_JES_Gjet_Stat11: 4.13007515e-03 + syst_JES_Gjet_Stat12: 6.44016861e-04 + syst_JES_Gjet_Stat13: 3.61479004e-06 + syst_JES_Gjet_Stat14: 1.28171760e-06 + syst_JES_Gjet_Stat15: 4.79792516e-10 + syst_JES_Gjet_Stat2: 3.05529277e-03 + syst_JES_Gjet_Stat3: 2.32523555e-04 + syst_JES_Gjet_Stat4: 5.49233311e-03 + syst_JES_Gjet_Stat5: 5.52437605e-03 + syst_JES_Gjet_Stat6: 4.67453407e-02 + syst_JES_Gjet_Stat7: 4.60375890e-02 + syst_JES_Gjet_Stat8: 1.53994405e-02 + syst_JES_Gjet_Stat9: 1.03585299e-02 + syst_JES_Gjet_Veto: 1.42462152e-01 + syst_JES_Gjet_dPhi: 5.44284106e-02 + syst_JES_LArESZee: 5.11539683e-01 + syst_JES_LArEsmear: 4.23153645e-02 + syst_JES_LAr_JVT: 8.28513325e-02 + syst_JES_MJB_Alpha: 1.29903811e-06 + syst_JES_MJB_Asym: 1.64111814e-06 + syst_JES_MJB_Beta: 3.60526376e-16 + syst_JES_MJB_Fragmentation: 4.92651621e-04 + syst_JES_MJB_Stat1: 1.58874149e-06 syst_JES_MJB_Stat10: 0.0 syst_JES_MJB_Stat11: 0.0 syst_JES_MJB_Stat12: 0.0 @@ -37705,60 +37705,60 @@ bins: syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 1.5862996587971645e-06 - syst_JES_MJB_Stat3: 1.3154925883485618e-06 - syst_JES_MJB_Stat4: 4.81336919423391e-29 + syst_JES_MJB_Stat2: 1.58629966e-06 + syst_JES_MJB_Stat3: 1.31549259e-06 + syst_JES_MJB_Stat4: 4.81336919e-29 syst_JES_MJB_Stat5: 0.0 syst_JES_MJB_Stat6: 0.0 syst_JES_MJB_Stat7: 0.0 syst_JES_MJB_Stat8: 0.0 syst_JES_MJB_Stat9: 0.0 - syst_JES_MJB_Threshold: 5.193554358048057e-07 - syst_JES_Pileup_MuOffset: 0.06175354741834675 - syst_JES_Pileup_NPVOffset: 0.05403012727407552 - syst_JES_Pileup_Pt_term: 0.3628048786882558 - syst_JES_Pileup_Rho_topology: 0.4298867757910215 - syst_JES_PunchThrough_MC15: 0.00021386328623679193 + syst_JES_MJB_Threshold: 5.19355436e-07 + syst_JES_Pileup_MuOffset: 6.17535474e-02 + syst_JES_Pileup_NPVOffset: 5.40301273e-02 + syst_JES_Pileup_Pt_term: 3.62804879e-01 + syst_JES_Pileup_Rho_topology: 4.29886776e-01 + syst_JES_PunchThrough_MC15: 2.13863286e-04 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.7435644491232754 - syst_JES_Zjet_MuScale: 0.03627149509945792 - syst_JES_Zjet_MuSmearID: 0.00437285284453982 - syst_JES_Zjet_MuSmearMS: 0.01355959438921386 - syst_JES_Zjet_OOC: 0.5686981800568733 - syst_JES_Zjet_Stat1: 0.009238101590694919 - syst_JES_Zjet_Stat10: 0.024661392904700253 - syst_JES_Zjet_Stat11: 0.021828764984533598 - syst_JES_Zjet_Stat12: 0.01730362467086015 - syst_JES_Zjet_Stat13: 5.6750253461989045e-05 - syst_JES_Zjet_Stat2: 0.00017329168329726616 - syst_JES_Zjet_Stat3: 0.004940759499307773 - syst_JES_Zjet_Stat4: 0.0026486790117905947 - syst_JES_Zjet_Stat5: 0.004290289849088908 - syst_JES_Zjet_Stat6: 0.025568453218761594 - syst_JES_Zjet_Stat7: 0.0547688856542426 - syst_JES_Zjet_Stat8: 0.05257315165557416 - syst_JES_Zjet_Stat9: 0.056627425113631995 - syst_JES_Zjet_Veto: 0.037726268179479404 - syst_JES_Zjet_dPhi: 0.1333569057079535 + syst_JES_Zjet_MC: 7.43564449e-01 + syst_JES_Zjet_MuScale: 3.62714951e-02 + syst_JES_Zjet_MuSmearID: 4.37285284e-03 + syst_JES_Zjet_MuSmearMS: 1.35595944e-02 + syst_JES_Zjet_OOC: 5.68698180e-01 + syst_JES_Zjet_Stat1: 9.23810159e-03 + syst_JES_Zjet_Stat10: 2.46613929e-02 + syst_JES_Zjet_Stat11: 2.18287650e-02 + syst_JES_Zjet_Stat12: 1.73036247e-02 + syst_JES_Zjet_Stat13: 5.67502535e-05 + syst_JES_Zjet_Stat2: 1.73291683e-04 + syst_JES_Zjet_Stat3: 4.94075950e-03 + syst_JES_Zjet_Stat4: 2.64867901e-03 + syst_JES_Zjet_Stat5: 4.29028985e-03 + syst_JES_Zjet_Stat6: 2.55684532e-02 + syst_JES_Zjet_Stat7: 5.47688857e-02 + syst_JES_Zjet_Stat8: 5.25731517e-02 + syst_JES_Zjet_Stat9: 5.66274251e-02 + syst_JES_Zjet_Veto: 3.77262682e-02 + syst_JES_Zjet_dPhi: 1.33356906e-01 syst_PRW: 0.0 syst_Unfolding_bias: 0.01801 - syst_cleaning: 0.4744087161931154 + syst_cleaning: 4.74408716e-01 syst_lumi: 0.7221 - stat: 1.1593 syst_JER_CROSS_CALIB_FORWARD: 0.08974 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.5319006932689597 - syst_JER_NP1: 0.0500619196595576 - syst_JER_NP2: 0.03547106182157506 - syst_JER_NP3: 0.04780947500234656 + syst_JER_NP0: 5.31900693e-01 + syst_JER_NP1: 5.00619197e-02 + syst_JER_NP2: 3.54710618e-02 + syst_JER_NP3: 4.78094750e-02 syst_JER_NP4: 0.0 syst_JER_NP5: 0.0 syst_JER_NP6: 0.0 syst_JER_NP7: 0.0 - syst_JER_NP8: 0.012486117040537462 - syst_JES_EtaIntercalibration_Modelling: 0.9799574927005763 - syst_JES_EtaIntercalibration_NonClosure: 0.5540271721675751 - syst_JES_EtaIntercalibration_Stat0: 0.31119773055085087 + syst_JER_NP8: 1.24861170e-02 + syst_JES_EtaIntercalibration_Modelling: 9.79957493e-01 + syst_JES_EtaIntercalibration_NonClosure: 5.54027172e-01 + syst_JES_EtaIntercalibration_Stat0: 3.11197731e-01 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 syst_JES_EtaIntercalibration_Stat100: 0.0 @@ -38005,36 +38005,36 @@ bins: syst_JES_EtaIntercalibration_Stat98: 0.0 syst_JES_EtaIntercalibration_Stat99: 0.0 syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0 - syst_JES_Flavour_Comp: 0.011942981819880662 - syst_JES_Flavour_Response: 1.103148231200141 - syst_JES_Gjet_Generator: 0.6262728558703466 - syst_JES_Gjet_OOC: 0.4026149276914605 - syst_JES_Gjet_Purity: 0.1546509214327545 - syst_JES_Gjet_Stat1: 0.0020307384143458756 - syst_JES_Gjet_Stat10: 0.005161685282957495 - syst_JES_Gjet_Stat11: 0.0007492851793542961 - syst_JES_Gjet_Stat12: 0.0012578916914691026 - syst_JES_Gjet_Stat13: 2.8345076476101385e-05 - syst_JES_Gjet_Stat14: 2.4872249596689076e-05 - syst_JES_Gjet_Stat15: 7.399848412574071e-08 - syst_JES_Gjet_Stat2: 0.003145300854846798 - syst_JES_Gjet_Stat3: 0.00175963813454379 - syst_JES_Gjet_Stat4: 0.0007825424979512485 - syst_JES_Gjet_Stat5: 0.009811203776611497 - syst_JES_Gjet_Stat6: 0.032689106365882806 - syst_JES_Gjet_Stat7: 0.037903692432268384 - syst_JES_Gjet_Stat8: 0.01679834476964918 - syst_JES_Gjet_Stat9: 0.013440714266734488 - syst_JES_Gjet_Veto: 0.1100589959976012 - syst_JES_Gjet_dPhi: 0.0675197650692003 - syst_JES_LArESZee: 0.41138384837035114 - syst_JES_LArEsmear: 0.03940797222644169 - syst_JES_LAr_JVT: 0.05912301328586019 - syst_JES_MJB_Alpha: 2.5166698233975788e-05 - syst_JES_MJB_Asym: 1.3847798948263745e-05 - syst_JES_MJB_Beta: 1.4644489577994858e-11 - syst_JES_MJB_Fragmentation: 0.001239345387694649 - syst_JES_MJB_Stat1: 3.113857226977499e-05 + syst_JES_Flavour_Comp: 1.19429818e-02 + syst_JES_Flavour_Response: 1.10314823e+00 + syst_JES_Gjet_Generator: 6.26272856e-01 + syst_JES_Gjet_OOC: 4.02614928e-01 + syst_JES_Gjet_Purity: 1.54650921e-01 + syst_JES_Gjet_Stat1: 2.03073841e-03 + syst_JES_Gjet_Stat10: 5.16168528e-03 + syst_JES_Gjet_Stat11: 7.49285179e-04 + syst_JES_Gjet_Stat12: 1.25789169e-03 + syst_JES_Gjet_Stat13: 2.83450765e-05 + syst_JES_Gjet_Stat14: 2.48722496e-05 + syst_JES_Gjet_Stat15: 7.39984841e-08 + syst_JES_Gjet_Stat2: 3.14530085e-03 + syst_JES_Gjet_Stat3: 1.75963813e-03 + syst_JES_Gjet_Stat4: 7.82542498e-04 + syst_JES_Gjet_Stat5: 9.81120378e-03 + syst_JES_Gjet_Stat6: 3.26891064e-02 + syst_JES_Gjet_Stat7: 3.79036924e-02 + syst_JES_Gjet_Stat8: 1.67983448e-02 + syst_JES_Gjet_Stat9: 1.34407143e-02 + syst_JES_Gjet_Veto: 1.10058996e-01 + syst_JES_Gjet_dPhi: 6.75197651e-02 + syst_JES_LArESZee: 4.11383848e-01 + syst_JES_LArEsmear: 3.94079722e-02 + syst_JES_LAr_JVT: 5.91230133e-02 + syst_JES_MJB_Alpha: 2.51666982e-05 + syst_JES_MJB_Asym: 1.38477989e-05 + syst_JES_MJB_Beta: 1.46444896e-11 + syst_JES_MJB_Fragmentation: 1.23934539e-03 + syst_JES_MJB_Stat1: 3.11385723e-05 syst_JES_MJB_Stat10: 0.0 syst_JES_MJB_Stat11: 0.0 syst_JES_MJB_Stat12: 0.0 @@ -38042,60 +38042,60 @@ bins: syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 3.106623435097984e-05 - syst_JES_MJB_Stat3: 2.561703144326733e-05 - syst_JES_MJB_Stat4: 9.323629497143266e-21 + syst_JES_MJB_Stat2: 3.10662344e-05 + syst_JES_MJB_Stat3: 2.56170314e-05 + syst_JES_MJB_Stat4: 9.32362950e-21 syst_JES_MJB_Stat5: 0.0 syst_JES_MJB_Stat6: 0.0 syst_JES_MJB_Stat7: 0.0 syst_JES_MJB_Stat8: 0.0 syst_JES_MJB_Stat9: 0.0 - syst_JES_MJB_Threshold: 2.76434839505412e-05 - syst_JES_Pileup_MuOffset: 0.03244452496184834 - syst_JES_Pileup_NPVOffset: 0.04273344679522119 - syst_JES_Pileup_Pt_term: 0.24285132797660386 - syst_JES_Pileup_Rho_topology: 0.2846514842750692 - syst_JES_PunchThrough_MC15: 0.00016994090700887763 + syst_JES_MJB_Threshold: 2.76434840e-05 + syst_JES_Pileup_MuOffset: 3.24445250e-02 + syst_JES_Pileup_NPVOffset: 4.27334468e-02 + syst_JES_Pileup_Pt_term: 2.42851328e-01 + syst_JES_Pileup_Rho_topology: 2.84651484e-01 + syst_JES_PunchThrough_MC15: 1.69940907e-04 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.5448431035628514 - syst_JES_Zjet_MuScale: 0.023557499204075124 - syst_JES_Zjet_MuSmearID: 0.006907324393714254 - syst_JES_Zjet_MuSmearMS: 0.020374194462603912 - syst_JES_Zjet_OOC: 0.35318375882817715 - syst_JES_Zjet_Stat1: 0.0017572743745642 - syst_JES_Zjet_Stat10: 0.03535432752860673 - syst_JES_Zjet_Stat11: 0.007710297075988706 - syst_JES_Zjet_Stat12: 0.006394091543761318 - syst_JES_Zjet_Stat13: 5.9049539159929095e-05 - syst_JES_Zjet_Stat2: 0.0001447128449723797 - syst_JES_Zjet_Stat3: 0.0048842105482872055 - syst_JES_Zjet_Stat4: 0.0023446212913816166 - syst_JES_Zjet_Stat5: 0.0054412400160683974 - syst_JES_Zjet_Stat6: 0.022974200747795343 - syst_JES_Zjet_Stat7: 0.03553353807320628 - syst_JES_Zjet_Stat8: 0.038873063617368774 - syst_JES_Zjet_Stat9: 0.04507211554830769 - syst_JES_Zjet_Veto: 0.055637060490288305 - syst_JES_Zjet_dPhi: 0.0901155275188466 + syst_JES_Zjet_MC: 5.44843104e-01 + syst_JES_Zjet_MuScale: 2.35574992e-02 + syst_JES_Zjet_MuSmearID: 6.90732439e-03 + syst_JES_Zjet_MuSmearMS: 2.03741945e-02 + syst_JES_Zjet_OOC: 3.53183759e-01 + syst_JES_Zjet_Stat1: 1.75727437e-03 + syst_JES_Zjet_Stat10: 3.53543275e-02 + syst_JES_Zjet_Stat11: 7.71029708e-03 + syst_JES_Zjet_Stat12: 6.39409154e-03 + syst_JES_Zjet_Stat13: 5.90495392e-05 + syst_JES_Zjet_Stat2: 1.44712845e-04 + syst_JES_Zjet_Stat3: 4.88421055e-03 + syst_JES_Zjet_Stat4: 2.34462129e-03 + syst_JES_Zjet_Stat5: 5.44124002e-03 + syst_JES_Zjet_Stat6: 2.29742007e-02 + syst_JES_Zjet_Stat7: 3.55335381e-02 + syst_JES_Zjet_Stat8: 3.88730636e-02 + syst_JES_Zjet_Stat9: 4.50721155e-02 + syst_JES_Zjet_Veto: 5.56370605e-02 + syst_JES_Zjet_dPhi: 9.01155275e-02 syst_PRW: 0.0 syst_Unfolding_bias: 0.001867 - syst_cleaning: 0.3346841775465342 + syst_cleaning: 3.34684178e-01 syst_lumi: 0.5483 - stat: 0.7242 syst_JER_CROSS_CALIB_FORWARD: 0.05049 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.274486333903894 - syst_JER_NP1: 0.02652990953621968 - syst_JER_NP2: 0.018627433398082514 - syst_JER_NP3: 0.029457005957836246 + syst_JER_NP0: 2.74486334e-01 + syst_JER_NP1: 2.65299095e-02 + syst_JER_NP2: 1.86274334e-02 + syst_JER_NP3: 2.94570060e-02 syst_JER_NP4: 0.0 syst_JER_NP5: 0.0 syst_JER_NP6: 0.0 syst_JER_NP7: 0.0 - syst_JER_NP8: 0.002072841240302788 - syst_JES_EtaIntercalibration_Modelling: 0.5014796780528599 - syst_JES_EtaIntercalibration_NonClosure: 0.3269173748824006 - syst_JES_EtaIntercalibration_Stat0: 0.1820254583842601 + syst_JER_NP8: 2.07284124e-03 + syst_JES_EtaIntercalibration_Modelling: 5.01479678e-01 + syst_JES_EtaIntercalibration_NonClosure: 3.26917375e-01 + syst_JES_EtaIntercalibration_Stat0: 1.82025458e-01 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 syst_JES_EtaIntercalibration_Stat100: 0.0 @@ -38342,36 +38342,36 @@ bins: syst_JES_EtaIntercalibration_Stat98: 0.0 syst_JES_EtaIntercalibration_Stat99: 0.0 syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0 - syst_JES_Flavour_Comp: 0.0069238650152931205 - syst_JES_Flavour_Response: 0.5595862288334122 - syst_JES_Gjet_Generator: 0.3396259265721626 - syst_JES_Gjet_OOC: 0.2082554441065107 - syst_JES_Gjet_Purity: 0.07927502554398831 - syst_JES_Gjet_Stat1: 0.0010470665752830618 - syst_JES_Gjet_Stat10: 0.003120380635034771 - syst_JES_Gjet_Stat11: 0.00422187384335682 - syst_JES_Gjet_Stat12: 0.0010940527535269952 - syst_JES_Gjet_Stat13: 2.5656173524270917e-05 - syst_JES_Gjet_Stat14: 4.779594203486317e-05 - syst_JES_Gjet_Stat15: 9.64563643934396e-07 - syst_JES_Gjet_Stat2: 0.0013113118116984991 - syst_JES_Gjet_Stat3: 0.0037772148483638046 - syst_JES_Gjet_Stat4: 0.0024873909632951766 - syst_JES_Gjet_Stat5: 0.006614004900902988 - syst_JES_Gjet_Stat6: 0.015874041703359612 - syst_JES_Gjet_Stat7: 0.027164629575976183 - syst_JES_Gjet_Stat8: 0.017289746325495927 - syst_JES_Gjet_Stat9: 0.007745731211448019 - syst_JES_Gjet_Veto: 0.06330076460833628 - syst_JES_Gjet_dPhi: 0.052438086349522704 - syst_JES_LArESZee: 0.23388109692747724 - syst_JES_LArEsmear: 0.023535753121580794 - syst_JES_LAr_JVT: 0.04157066634058203 - syst_JES_MJB_Alpha: 5.8222887896427815e-05 - syst_JES_MJB_Asym: 3.331488808126931e-05 - syst_JES_MJB_Beta: 1.2609329879101427e-08 - syst_JES_MJB_Fragmentation: 0.0006829506625664843 - syst_JES_MJB_Stat1: 7.202086017259165e-05 + syst_JES_Flavour_Comp: 6.92386502e-03 + syst_JES_Flavour_Response: 5.59586229e-01 + syst_JES_Gjet_Generator: 3.39625927e-01 + syst_JES_Gjet_OOC: 2.08255444e-01 + syst_JES_Gjet_Purity: 7.92750255e-02 + syst_JES_Gjet_Stat1: 1.04706658e-03 + syst_JES_Gjet_Stat10: 3.12038064e-03 + syst_JES_Gjet_Stat11: 4.22187384e-03 + syst_JES_Gjet_Stat12: 1.09405275e-03 + syst_JES_Gjet_Stat13: 2.56561735e-05 + syst_JES_Gjet_Stat14: 4.77959420e-05 + syst_JES_Gjet_Stat15: 9.64563644e-07 + syst_JES_Gjet_Stat2: 1.31131181e-03 + syst_JES_Gjet_Stat3: 3.77721485e-03 + syst_JES_Gjet_Stat4: 2.48739096e-03 + syst_JES_Gjet_Stat5: 6.61400490e-03 + syst_JES_Gjet_Stat6: 1.58740417e-02 + syst_JES_Gjet_Stat7: 2.71646296e-02 + syst_JES_Gjet_Stat8: 1.72897463e-02 + syst_JES_Gjet_Stat9: 7.74573121e-03 + syst_JES_Gjet_Veto: 6.33007646e-02 + syst_JES_Gjet_dPhi: 5.24380863e-02 + syst_JES_LArESZee: 2.33881097e-01 + syst_JES_LArEsmear: 2.35357531e-02 + syst_JES_LAr_JVT: 4.15706663e-02 + syst_JES_MJB_Alpha: 5.82228879e-05 + syst_JES_MJB_Asym: 3.33148881e-05 + syst_JES_MJB_Beta: 1.26093299e-08 + syst_JES_MJB_Fragmentation: 6.82950663e-04 + syst_JES_MJB_Stat1: 7.20208602e-05 syst_JES_MJB_Stat10: 0.0 syst_JES_MJB_Stat11: 0.0 syst_JES_MJB_Stat12: 0.0 @@ -38379,60 +38379,60 @@ bins: syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 7.276446986682443e-05 - syst_JES_MJB_Stat3: 5.167572554389686e-05 - syst_JES_MJB_Stat4: 5.224731261031518e-15 + syst_JES_MJB_Stat2: 7.27644699e-05 + syst_JES_MJB_Stat3: 5.16757255e-05 + syst_JES_MJB_Stat4: 5.22473126e-15 syst_JES_MJB_Stat5: 0.0 syst_JES_MJB_Stat6: 0.0 syst_JES_MJB_Stat7: 0.0 syst_JES_MJB_Stat8: 0.0 syst_JES_MJB_Stat9: 0.0 - syst_JES_MJB_Threshold: 0.0005441699641103872 - syst_JES_Pileup_MuOffset: 0.024619270744682915 - syst_JES_Pileup_NPVOffset: 0.023183155350383174 - syst_JES_Pileup_Pt_term: 0.1489656336206442 - syst_JES_Pileup_Rho_topology: 0.15043379773175974 - syst_JES_PunchThrough_MC15: 0.00013123154984606407 + syst_JES_MJB_Threshold: 5.44169964e-04 + syst_JES_Pileup_MuOffset: 2.46192707e-02 + syst_JES_Pileup_NPVOffset: 2.31831554e-02 + syst_JES_Pileup_Pt_term: 1.48965634e-01 + syst_JES_Pileup_Rho_topology: 1.50433798e-01 + syst_JES_PunchThrough_MC15: 1.31231550e-04 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.3070063842984377 - syst_JES_Zjet_MuScale: 0.010927248910407413 - syst_JES_Zjet_MuSmearID: 0.004427038562063809 - syst_JES_Zjet_MuSmearMS: 0.027585538385175665 - syst_JES_Zjet_OOC: 0.19161165804825134 - syst_JES_Zjet_Stat1: 0.0006411559536298482 - syst_JES_Zjet_Stat10: 0.0295939216732085 - syst_JES_Zjet_Stat11: 0.010665244336160331 - syst_JES_Zjet_Stat12: 0.007443760944576338 - syst_JES_Zjet_Stat13: 0.0003268697420992038 - syst_JES_Zjet_Stat2: 9.562652508587773e-05 - syst_JES_Zjet_Stat3: 0.002813667135607906 - syst_JES_Zjet_Stat4: 0.0035085905727941526 - syst_JES_Zjet_Stat5: 0.004021161355214122 - syst_JES_Zjet_Stat6: 0.013178394249680044 - syst_JES_Zjet_Stat7: 0.01371794229285136 - syst_JES_Zjet_Stat8: 0.02086536544132405 - syst_JES_Zjet_Stat9: 0.034590299839694943 - syst_JES_Zjet_Veto: 0.04204628015651325 - syst_JES_Zjet_dPhi: 0.05247894149084945 + syst_JES_Zjet_MC: 3.07006384e-01 + syst_JES_Zjet_MuScale: 1.09272489e-02 + syst_JES_Zjet_MuSmearID: 4.42703856e-03 + syst_JES_Zjet_MuSmearMS: 2.75855384e-02 + syst_JES_Zjet_OOC: 1.91611658e-01 + syst_JES_Zjet_Stat1: 6.41155954e-04 + syst_JES_Zjet_Stat10: 2.95939217e-02 + syst_JES_Zjet_Stat11: 1.06652443e-02 + syst_JES_Zjet_Stat12: 7.44376094e-03 + syst_JES_Zjet_Stat13: 3.26869742e-04 + syst_JES_Zjet_Stat2: 9.56265251e-05 + syst_JES_Zjet_Stat3: 2.81366714e-03 + syst_JES_Zjet_Stat4: 3.50859057e-03 + syst_JES_Zjet_Stat5: 4.02116136e-03 + syst_JES_Zjet_Stat6: 1.31783942e-02 + syst_JES_Zjet_Stat7: 1.37179423e-02 + syst_JES_Zjet_Stat8: 2.08653654e-02 + syst_JES_Zjet_Stat9: 3.45902998e-02 + syst_JES_Zjet_Veto: 4.20462802e-02 + syst_JES_Zjet_dPhi: 5.24789415e-02 syst_PRW: 0.0 - syst_Unfolding_bias: 0.00012518 - syst_cleaning: 0.16870174865720866 + syst_Unfolding_bias: 1.25180000e-04 + syst_cleaning: 1.68701749e-01 syst_lumi: 0.3078 - stat: 0.4113 syst_JER_CROSS_CALIB_FORWARD: 0.02287 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.1590904459733519 - syst_JER_NP1: 0.015873411731571762 - syst_JER_NP2: 0.011130921255673314 - syst_JER_NP3: 0.01886070717125951 + syst_JER_NP0: 1.59090446e-01 + syst_JER_NP1: 1.58734117e-02 + syst_JER_NP2: 1.11309213e-02 + syst_JER_NP3: 1.88607072e-02 syst_JER_NP4: 0.0 syst_JER_NP5: 0.0 syst_JER_NP6: 0.0 syst_JER_NP7: 0.0 - syst_JER_NP8: 0.0002613926150448784 - syst_JES_EtaIntercalibration_Modelling: 0.2829899777377283 - syst_JES_EtaIntercalibration_NonClosure: 0.20155736156240983 - syst_JES_EtaIntercalibration_Stat0: 0.11844861248659691 + syst_JER_NP8: 2.61392615e-04 + syst_JES_EtaIntercalibration_Modelling: 2.82989978e-01 + syst_JES_EtaIntercalibration_NonClosure: 2.01557362e-01 + syst_JES_EtaIntercalibration_Stat0: 1.18448612e-01 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 syst_JES_EtaIntercalibration_Stat100: 0.0 @@ -38679,36 +38679,36 @@ bins: syst_JES_EtaIntercalibration_Stat98: 0.0 syst_JES_EtaIntercalibration_Stat99: 0.0 syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0 - syst_JES_Flavour_Comp: 0.004533151074859518 - syst_JES_Flavour_Response: 0.3087605018456862 - syst_JES_Gjet_Generator: 0.20422394570666783 - syst_JES_Gjet_OOC: 0.11992280517065967 - syst_JES_Gjet_Purity: 0.04489025813024469 - syst_JES_Gjet_Stat1: 0.0002438542275622877 - syst_JES_Gjet_Stat10: 0.0030110720267041108 - syst_JES_Gjet_Stat11: 0.0019121832214907685 - syst_JES_Gjet_Stat12: 0.0017001858721916259 - syst_JES_Gjet_Stat13: 7.875586600850758e-05 - syst_JES_Gjet_Stat14: 1.9979206065307e-06 - syst_JES_Gjet_Stat15: 3.09565395474042e-06 - syst_JES_Gjet_Stat2: 0.0003980706469962336 - syst_JES_Gjet_Stat3: 0.001730445153710455 - syst_JES_Gjet_Stat4: 0.0009423006340717382 - syst_JES_Gjet_Stat5: 0.0018207378038883027 - syst_JES_Gjet_Stat6: 0.006966032514997328 - syst_JES_Gjet_Stat7: 0.015486290412813521 - syst_JES_Gjet_Stat8: 0.009267919723433085 - syst_JES_Gjet_Stat9: 0.0014072912811497122 - syst_JES_Gjet_Veto: 0.04106419943210875 - syst_JES_Gjet_dPhi: 0.03025992729667406 - syst_JES_LArESZee: 0.1523289532557747 - syst_JES_LArEsmear: 0.012704084500663557 - syst_JES_LAr_JVT: 0.02887398829396452 - syst_JES_MJB_Alpha: 0.00014427983227048748 - syst_JES_MJB_Asym: 4.512891968571816e-05 - syst_JES_MJB_Beta: 8.571053421254589e-07 - syst_JES_MJB_Fragmentation: 0.0007675853644220947 - syst_JES_MJB_Stat1: 0.0001444846715053192 + syst_JES_Flavour_Comp: 4.53315107e-03 + syst_JES_Flavour_Response: 3.08760502e-01 + syst_JES_Gjet_Generator: 2.04223946e-01 + syst_JES_Gjet_OOC: 1.19922805e-01 + syst_JES_Gjet_Purity: 4.48902581e-02 + syst_JES_Gjet_Stat1: 2.43854228e-04 + syst_JES_Gjet_Stat10: 3.01107203e-03 + syst_JES_Gjet_Stat11: 1.91218322e-03 + syst_JES_Gjet_Stat12: 1.70018587e-03 + syst_JES_Gjet_Stat13: 7.87558660e-05 + syst_JES_Gjet_Stat14: 1.99792061e-06 + syst_JES_Gjet_Stat15: 3.09565395e-06 + syst_JES_Gjet_Stat2: 3.98070647e-04 + syst_JES_Gjet_Stat3: 1.73044515e-03 + syst_JES_Gjet_Stat4: 9.42300634e-04 + syst_JES_Gjet_Stat5: 1.82073780e-03 + syst_JES_Gjet_Stat6: 6.96603251e-03 + syst_JES_Gjet_Stat7: 1.54862904e-02 + syst_JES_Gjet_Stat8: 9.26791972e-03 + syst_JES_Gjet_Stat9: 1.40729128e-03 + syst_JES_Gjet_Veto: 4.10641994e-02 + syst_JES_Gjet_dPhi: 3.02599273e-02 + syst_JES_LArESZee: 1.52328953e-01 + syst_JES_LArEsmear: 1.27040845e-02 + syst_JES_LAr_JVT: 2.88739883e-02 + syst_JES_MJB_Alpha: 1.44279832e-04 + syst_JES_MJB_Asym: 4.51289197e-05 + syst_JES_MJB_Beta: 8.57105342e-07 + syst_JES_MJB_Fragmentation: 7.67585364e-04 + syst_JES_MJB_Stat1: 1.44484672e-04 syst_JES_MJB_Stat10: 0.0 syst_JES_MJB_Stat11: 0.0 syst_JES_MJB_Stat12: 0.0 @@ -38716,60 +38716,60 @@ bins: syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 0.00016051504812633613 - syst_JES_MJB_Stat3: 2.0293476858025093e-05 - syst_JES_MJB_Stat4: 4.925952496725887e-11 - syst_JES_MJB_Stat5: 2.688142853346898e-33 - syst_JES_MJB_Stat6: 2.688142853346898e-33 - syst_JES_MJB_Stat7: 2.688142853346898e-33 + syst_JES_MJB_Stat2: 1.60515048e-04 + syst_JES_MJB_Stat3: 2.02934769e-05 + syst_JES_MJB_Stat4: 4.92595250e-11 + syst_JES_MJB_Stat5: 2.68814285e-33 + syst_JES_MJB_Stat6: 2.68814285e-33 + syst_JES_MJB_Stat7: 2.68814285e-33 syst_JES_MJB_Stat8: 0.0 syst_JES_MJB_Stat9: 0.0 - syst_JES_MJB_Threshold: 0.001867883999527808 - syst_JES_Pileup_MuOffset: 0.015998928089093967 - syst_JES_Pileup_NPVOffset: 0.014501581594777862 - syst_JES_Pileup_Pt_term: 0.08591033508839319 - syst_JES_Pileup_Rho_topology: 0.08952859878273534 - syst_JES_PunchThrough_MC15: 0.0003387958262360975 + syst_JES_MJB_Threshold: 1.86788400e-03 + syst_JES_Pileup_MuOffset: 1.59989281e-02 + syst_JES_Pileup_NPVOffset: 1.45015816e-02 + syst_JES_Pileup_Pt_term: 8.59103351e-02 + syst_JES_Pileup_Rho_topology: 8.95285988e-02 + syst_JES_PunchThrough_MC15: 3.38795826e-04 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.1894931133313293 - syst_JES_Zjet_MuScale: 0.010719865017806893 - syst_JES_Zjet_MuSmearID: 0.0013748733578042743 - syst_JES_Zjet_MuSmearMS: 0.01681791553671263 - syst_JES_Zjet_OOC: 0.11523585596505977 - syst_JES_Zjet_Stat1: 0.0006064600854137062 - syst_JES_Zjet_Stat10: 0.024667748235297035 - syst_JES_Zjet_Stat11: 0.012421447620949821 - syst_JES_Zjet_Stat12: 0.005521693218569826 - syst_JES_Zjet_Stat13: 0.0010557778877680665 - syst_JES_Zjet_Stat2: 4.2747013930799896e-05 - syst_JES_Zjet_Stat3: 0.0008054779393627115 - syst_JES_Zjet_Stat4: 0.001388826123026205 - syst_JES_Zjet_Stat5: 0.000971025452395559 - syst_JES_Zjet_Stat6: 0.003636747276069647 - syst_JES_Zjet_Stat7: 0.0031169446578340142 - syst_JES_Zjet_Stat8: 0.008570710282701193 - syst_JES_Zjet_Stat9: 0.021971287513479952 - syst_JES_Zjet_Veto: 0.02079913700132772 - syst_JES_Zjet_dPhi: 0.02304427694678225 + syst_JES_Zjet_MC: 1.89493113e-01 + syst_JES_Zjet_MuScale: 1.07198650e-02 + syst_JES_Zjet_MuSmearID: 1.37487336e-03 + syst_JES_Zjet_MuSmearMS: 1.68179155e-02 + syst_JES_Zjet_OOC: 1.15235856e-01 + syst_JES_Zjet_Stat1: 6.06460085e-04 + syst_JES_Zjet_Stat10: 2.46677482e-02 + syst_JES_Zjet_Stat11: 1.24214476e-02 + syst_JES_Zjet_Stat12: 5.52169322e-03 + syst_JES_Zjet_Stat13: 1.05577789e-03 + syst_JES_Zjet_Stat2: 4.27470139e-05 + syst_JES_Zjet_Stat3: 8.05477939e-04 + syst_JES_Zjet_Stat4: 1.38882612e-03 + syst_JES_Zjet_Stat5: 9.71025452e-04 + syst_JES_Zjet_Stat6: 3.63674728e-03 + syst_JES_Zjet_Stat7: 3.11694466e-03 + syst_JES_Zjet_Stat8: 8.57071028e-03 + syst_JES_Zjet_Stat9: 2.19712875e-02 + syst_JES_Zjet_Veto: 2.07991370e-02 + syst_JES_Zjet_dPhi: 2.30442769e-02 syst_PRW: 0.0 - syst_Unfolding_bias: 8.756e-06 - syst_cleaning: 0.0931843334472056 + syst_Unfolding_bias: 8.75600000e-06 + syst_cleaning: 9.31843334e-02 syst_lumi: 0.1864 - stat: 0.17975 syst_JER_CROSS_CALIB_FORWARD: 0.005805 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.08115354012610909 - syst_JER_NP1: 0.008033531773136893 - syst_JER_NP2: 0.0056320583049183715 - syst_JER_NP3: 0.009741211770103347 + syst_JER_NP0: 8.11535401e-02 + syst_JER_NP1: 8.03353177e-03 + syst_JER_NP2: 5.63205830e-03 + syst_JER_NP3: 9.74121177e-03 syst_JER_NP4: 0.0 syst_JER_NP5: 0.0 syst_JER_NP6: 0.0 syst_JER_NP7: 0.0 - syst_JER_NP8: 2.2179578715566265e-05 - syst_JES_EtaIntercalibration_Modelling: 0.14361645971127404 - syst_JES_EtaIntercalibration_NonClosure: 0.098878956684423 - syst_JES_EtaIntercalibration_Stat0: 0.06732150399389486 + syst_JER_NP8: 2.21795787e-05 + syst_JES_EtaIntercalibration_Modelling: 1.43616460e-01 + syst_JES_EtaIntercalibration_NonClosure: 9.88789567e-02 + syst_JES_EtaIntercalibration_Stat0: 6.73215040e-02 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 syst_JES_EtaIntercalibration_Stat100: 0.0 @@ -39016,97 +39016,97 @@ bins: syst_JES_EtaIntercalibration_Stat98: 0.0 syst_JES_EtaIntercalibration_Stat99: 0.0 syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0 - syst_JES_Flavour_Comp: 0.0028309523994011275 - syst_JES_Flavour_Response: 0.15112504755995945 - syst_JES_Gjet_Generator: 0.10826214516163994 - syst_JES_Gjet_OOC: 0.06143220897867828 - syst_JES_Gjet_Purity: 0.022468326039115596 - syst_JES_Gjet_Stat1: 2.7236851414948826e-05 - syst_JES_Gjet_Stat10: 0.0026247786249510643 - syst_JES_Gjet_Stat11: 0.0001575685500623459 - syst_JES_Gjet_Stat12: 0.0017975673645235107 - syst_JES_Gjet_Stat13: 0.00014139763107987345 - syst_JES_Gjet_Stat14: 4.260844986619438e-06 - syst_JES_Gjet_Stat15: 3.4819813325174506e-06 - syst_JES_Gjet_Stat2: 0.0002510102899783194 - syst_JES_Gjet_Stat3: 0.0005288433510974681 - syst_JES_Gjet_Stat4: 0.00020816163929744596 - syst_JES_Gjet_Stat5: 0.00013237679063944705 - syst_JES_Gjet_Stat6: 0.0016832829441303088 - syst_JES_Gjet_Stat7: 0.0042450901933881215 - syst_JES_Gjet_Stat8: 0.0019921315889016972 - syst_JES_Gjet_Stat9: 0.0014930277961796247 - syst_JES_Gjet_Veto: 0.022742574062757277 - syst_JES_Gjet_dPhi: 0.011897019248534485 - syst_JES_LArESZee: 0.08716025814555622 - syst_JES_LArEsmear: 0.00645361795816889 - syst_JES_LAr_JVT: 0.016617021957920138 - syst_JES_MJB_Alpha: 0.0003832162411746141 - syst_JES_MJB_Asym: 9.420489729838888e-05 - syst_JES_MJB_Beta: 7.470335133044568e-06 - syst_JES_MJB_Fragmentation: 0.0012638912768299139 - syst_JES_MJB_Stat1: 0.0004509092015860843 - syst_JES_MJB_Stat10: 1.4809034404713899e-43 + syst_JES_Flavour_Comp: 2.83095240e-03 + syst_JES_Flavour_Response: 1.51125048e-01 + syst_JES_Gjet_Generator: 1.08262145e-01 + syst_JES_Gjet_OOC: 6.14322090e-02 + syst_JES_Gjet_Purity: 2.24683260e-02 + syst_JES_Gjet_Stat1: 2.72368514e-05 + syst_JES_Gjet_Stat10: 2.62477862e-03 + syst_JES_Gjet_Stat11: 1.57568550e-04 + syst_JES_Gjet_Stat12: 1.79756736e-03 + syst_JES_Gjet_Stat13: 1.41397631e-04 + syst_JES_Gjet_Stat14: 4.26084499e-06 + syst_JES_Gjet_Stat15: 3.48198133e-06 + syst_JES_Gjet_Stat2: 2.51010290e-04 + syst_JES_Gjet_Stat3: 5.28843351e-04 + syst_JES_Gjet_Stat4: 2.08161639e-04 + syst_JES_Gjet_Stat5: 1.32376791e-04 + syst_JES_Gjet_Stat6: 1.68328294e-03 + syst_JES_Gjet_Stat7: 4.24509019e-03 + syst_JES_Gjet_Stat8: 1.99213159e-03 + syst_JES_Gjet_Stat9: 1.49302780e-03 + syst_JES_Gjet_Veto: 2.27425741e-02 + syst_JES_Gjet_dPhi: 1.18970192e-02 + syst_JES_LArESZee: 8.71602581e-02 + syst_JES_LArEsmear: 6.45361796e-03 + syst_JES_LAr_JVT: 1.66170220e-02 + syst_JES_MJB_Alpha: 3.83216241e-04 + syst_JES_MJB_Asym: 9.42048973e-05 + syst_JES_MJB_Beta: 7.47033513e-06 + syst_JES_MJB_Fragmentation: 1.26389128e-03 + syst_JES_MJB_Stat1: 4.50909202e-04 + syst_JES_MJB_Stat10: 1.48090344e-43 syst_JES_MJB_Stat11: 0.0 syst_JES_MJB_Stat12: 0.0 syst_JES_MJB_Stat13: 0.0 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 0.0004929662158809668 - syst_JES_MJB_Stat3: 4.801569613157764e-05 - syst_JES_MJB_Stat4: 1.7640937475089016e-08 - syst_JES_MJB_Stat5: 1.1302497544790709e-24 - syst_JES_MJB_Stat6: 1.1302497544790709e-24 - syst_JES_MJB_Stat7: 1.1302497544790709e-24 - syst_JES_MJB_Stat8: 1.4809034404713899e-43 - syst_JES_MJB_Stat9: 1.4809034404713899e-43 - syst_JES_MJB_Threshold: 0.0017422335224288963 - syst_JES_Pileup_MuOffset: 0.010658324442425272 - syst_JES_Pileup_NPVOffset: 0.0069533406359821035 - syst_JES_Pileup_Pt_term: 0.038624345949154926 - syst_JES_Pileup_Rho_topology: 0.04799895910329723 - syst_JES_PunchThrough_MC15: 0.0003814002150956394 + syst_JES_MJB_Stat2: 4.92966216e-04 + syst_JES_MJB_Stat3: 4.80156961e-05 + syst_JES_MJB_Stat4: 1.76409375e-08 + syst_JES_MJB_Stat5: 1.13024975e-24 + syst_JES_MJB_Stat6: 1.13024975e-24 + syst_JES_MJB_Stat7: 1.13024975e-24 + syst_JES_MJB_Stat8: 1.48090344e-43 + syst_JES_MJB_Stat9: 1.48090344e-43 + syst_JES_MJB_Threshold: 1.74223352e-03 + syst_JES_Pileup_MuOffset: 1.06583244e-02 + syst_JES_Pileup_NPVOffset: 6.95334064e-03 + syst_JES_Pileup_Pt_term: 3.86243459e-02 + syst_JES_Pileup_Rho_topology: 4.79989591e-02 + syst_JES_PunchThrough_MC15: 3.81400215e-04 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.09375158278663885 - syst_JES_Zjet_MuScale: 0.0075876490430172115 - syst_JES_Zjet_MuSmearID: 0.00018846594566393157 - syst_JES_Zjet_MuSmearMS: 0.007436344311555243 - syst_JES_Zjet_OOC: 0.05413796888506254 - syst_JES_Zjet_Stat1: 0.0005023555190300989 - syst_JES_Zjet_Stat10: 0.014174235314471114 - syst_JES_Zjet_Stat11: 0.0077736354223747845 - syst_JES_Zjet_Stat12: 0.0029139484758656936 - syst_JES_Zjet_Stat13: 0.0011770662541569189 - syst_JES_Zjet_Stat2: 1.2999041310804424e-05 - syst_JES_Zjet_Stat3: 0.0003801363966722997 - syst_JES_Zjet_Stat4: 0.00037902771336671416 - syst_JES_Zjet_Stat5: 0.00022686000104690118 - syst_JES_Zjet_Stat6: 0.0001063517978221337 - syst_JES_Zjet_Stat7: 0.0005468426281847457 - syst_JES_Zjet_Stat8: 0.002545175913370233 - syst_JES_Zjet_Stat9: 0.005250399127685437 - syst_JES_Zjet_Veto: 0.007177577376803402 - syst_JES_Zjet_dPhi: 0.00618224479861482 + syst_JES_Zjet_MC: 9.37515828e-02 + syst_JES_Zjet_MuScale: 7.58764904e-03 + syst_JES_Zjet_MuSmearID: 1.88465946e-04 + syst_JES_Zjet_MuSmearMS: 7.43634431e-03 + syst_JES_Zjet_OOC: 5.41379689e-02 + syst_JES_Zjet_Stat1: 5.02355519e-04 + syst_JES_Zjet_Stat10: 1.41742353e-02 + syst_JES_Zjet_Stat11: 7.77363542e-03 + syst_JES_Zjet_Stat12: 2.91394848e-03 + syst_JES_Zjet_Stat13: 1.17706625e-03 + syst_JES_Zjet_Stat2: 1.29990413e-05 + syst_JES_Zjet_Stat3: 3.80136397e-04 + syst_JES_Zjet_Stat4: 3.79027713e-04 + syst_JES_Zjet_Stat5: 2.26860001e-04 + syst_JES_Zjet_Stat6: 1.06351798e-04 + syst_JES_Zjet_Stat7: 5.46842628e-04 + syst_JES_Zjet_Stat8: 2.54517591e-03 + syst_JES_Zjet_Stat9: 5.25039913e-03 + syst_JES_Zjet_Veto: 7.17757738e-03 + syst_JES_Zjet_dPhi: 6.18224480e-03 syst_PRW: 0.0 - syst_Unfolding_bias: 5.312e-07 - syst_cleaning: 0.04372562263707631 + syst_Unfolding_bias: 5.31200000e-07 + syst_cleaning: 4.37256226e-02 syst_lumi: 0.09452 - stat: 0.11651 - syst_JER_CROSS_CALIB_FORWARD: 0.0011407 + syst_JER_CROSS_CALIB_FORWARD: 1.14070000e-03 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.04760221318384262 - syst_JER_NP1: 0.004831120651567294 - syst_JER_NP2: 0.0033865841197289045 - syst_JER_NP3: 0.005884647206927532 + syst_JER_NP0: 4.76022132e-02 + syst_JER_NP1: 4.83112065e-03 + syst_JER_NP2: 3.38658412e-03 + syst_JER_NP3: 5.88464721e-03 syst_JER_NP4: 0.0 syst_JER_NP5: 0.0 syst_JER_NP6: 0.0 syst_JER_NP7: 0.0 - syst_JER_NP8: 1.8795058579318128e-06 - syst_JES_EtaIntercalibration_Modelling: 0.08777290854813914 - syst_JES_EtaIntercalibration_NonClosure: 0.05483648853637512 - syst_JES_EtaIntercalibration_Stat0: 0.04442709392926798 + syst_JER_NP8: 1.87950586e-06 + syst_JES_EtaIntercalibration_Modelling: 8.77729085e-02 + syst_JES_EtaIntercalibration_NonClosure: 5.48364885e-02 + syst_JES_EtaIntercalibration_Stat0: 4.44270939e-02 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 syst_JES_EtaIntercalibration_Stat100: 0.0 @@ -39353,97 +39353,97 @@ bins: syst_JES_EtaIntercalibration_Stat98: 0.0 syst_JES_EtaIntercalibration_Stat99: 0.0 syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0 - syst_JES_Flavour_Comp: 0.0017477534687420878 - syst_JES_Flavour_Response: 0.08773180381138872 - syst_JES_Gjet_Generator: 0.06636261805414251 - syst_JES_Gjet_OOC: 0.03803132535160983 - syst_JES_Gjet_Purity: 0.013737574276414304 - syst_JES_Gjet_Stat1: 3.833727005147862e-06 - syst_JES_Gjet_Stat10: 0.0020573242039114785 - syst_JES_Gjet_Stat11: 0.0013077241959507364 - syst_JES_Gjet_Stat12: 0.0014707917867597712 - syst_JES_Gjet_Stat13: 0.00028315783584425137 - syst_JES_Gjet_Stat14: 3.199097841579717e-05 - syst_JES_Gjet_Stat15: 3.0623056130144815e-06 - syst_JES_Gjet_Stat2: 2.8512607575421788e-05 - syst_JES_Gjet_Stat3: 3.616339092231258e-05 - syst_JES_Gjet_Stat4: 6.961281832392652e-05 - syst_JES_Gjet_Stat5: 7.215183625521944e-05 - syst_JES_Gjet_Stat6: 0.0003944953995929484 - syst_JES_Gjet_Stat7: 0.0011505562513410633 - syst_JES_Gjet_Stat8: 0.0002980262236783871 - syst_JES_Gjet_Stat9: 0.0006066505733312782 - syst_JES_Gjet_Veto: 0.015350947592901228 - syst_JES_Gjet_dPhi: 0.004800456644945354 - syst_JES_LArESZee: 0.056798875869157835 - syst_JES_LArEsmear: 0.0046937244997975755 - syst_JES_LAr_JVT: 0.009853024459525106 - syst_JES_MJB_Alpha: 0.0004608121173536998 - syst_JES_MJB_Asym: 0.00025805126791976816 - syst_JES_MJB_Beta: 2.0784609690826528e-05 - syst_JES_MJB_Fragmentation: 0.0011056826531006445 - syst_JES_MJB_Stat1: 0.0006969009183520997 - syst_JES_MJB_Stat10: 7.970031791028188e-33 + syst_JES_Flavour_Comp: 1.74775347e-03 + syst_JES_Flavour_Response: 8.77318038e-02 + syst_JES_Gjet_Generator: 6.63626181e-02 + syst_JES_Gjet_OOC: 3.80313254e-02 + syst_JES_Gjet_Purity: 1.37375743e-02 + syst_JES_Gjet_Stat1: 3.83372701e-06 + syst_JES_Gjet_Stat10: 2.05732420e-03 + syst_JES_Gjet_Stat11: 1.30772420e-03 + syst_JES_Gjet_Stat12: 1.47079179e-03 + syst_JES_Gjet_Stat13: 2.83157836e-04 + syst_JES_Gjet_Stat14: 3.19909784e-05 + syst_JES_Gjet_Stat15: 3.06230561e-06 + syst_JES_Gjet_Stat2: 2.85126076e-05 + syst_JES_Gjet_Stat3: 3.61633909e-05 + syst_JES_Gjet_Stat4: 6.96128183e-05 + syst_JES_Gjet_Stat5: 7.21518363e-05 + syst_JES_Gjet_Stat6: 3.94495400e-04 + syst_JES_Gjet_Stat7: 1.15055625e-03 + syst_JES_Gjet_Stat8: 2.98026224e-04 + syst_JES_Gjet_Stat9: 6.06650573e-04 + syst_JES_Gjet_Veto: 1.53509476e-02 + syst_JES_Gjet_dPhi: 4.80045664e-03 + syst_JES_LArESZee: 5.67988759e-02 + syst_JES_LArEsmear: 4.69372450e-03 + syst_JES_LAr_JVT: 9.85302446e-03 + syst_JES_MJB_Alpha: 4.60812117e-04 + syst_JES_MJB_Asym: 2.58051268e-04 + syst_JES_MJB_Beta: 2.07846097e-05 + syst_JES_MJB_Fragmentation: 1.10568265e-03 + syst_JES_MJB_Stat1: 6.96900918e-04 + syst_JES_MJB_Stat10: 7.97003179e-33 syst_JES_MJB_Stat11: 0.0 syst_JES_MJB_Stat12: 0.0 syst_JES_MJB_Stat13: 0.0 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 0.0007480536929258488 - syst_JES_MJB_Stat3: 9.517012663120712e-05 - syst_JES_MJB_Stat4: 8.467996398204241e-07 - syst_JES_MJB_Stat5: 3.558498384150256e-18 - syst_JES_MJB_Stat6: 3.558498384150256e-18 - syst_JES_MJB_Stat7: 3.558498384150256e-18 - syst_JES_MJB_Stat8: 7.970031791028188e-33 - syst_JES_MJB_Stat9: 7.970031791028188e-33 - syst_JES_MJB_Threshold: 0.0005926466316448614 - syst_JES_Pileup_MuOffset: 0.008837165326053371 - syst_JES_Pileup_NPVOffset: 0.004019365372792078 - syst_JES_Pileup_Pt_term: 0.02409823852483828 - syst_JES_Pileup_Rho_topology: 0.027185872709920497 - syst_JES_PunchThrough_MC15: 0.00031599841186309783 + syst_JES_MJB_Stat2: 7.48053693e-04 + syst_JES_MJB_Stat3: 9.51701266e-05 + syst_JES_MJB_Stat4: 8.46799640e-07 + syst_JES_MJB_Stat5: 3.55849838e-18 + syst_JES_MJB_Stat6: 3.55849838e-18 + syst_JES_MJB_Stat7: 3.55849838e-18 + syst_JES_MJB_Stat8: 7.97003179e-33 + syst_JES_MJB_Stat9: 7.97003179e-33 + syst_JES_MJB_Threshold: 5.92646632e-04 + syst_JES_Pileup_MuOffset: 8.83716533e-03 + syst_JES_Pileup_NPVOffset: 4.01936537e-03 + syst_JES_Pileup_Pt_term: 2.40982385e-02 + syst_JES_Pileup_Rho_topology: 2.71858727e-02 + syst_JES_PunchThrough_MC15: 3.15998412e-04 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.05499731993470228 - syst_JES_Zjet_MuScale: 0.003718311593653765 - syst_JES_Zjet_MuSmearID: 9.057352151705266e-05 - syst_JES_Zjet_MuSmearMS: 0.004669374583389087 - syst_JES_Zjet_OOC: 0.029793732142851793 - syst_JES_Zjet_Stat1: 0.0001875447868510346 - syst_JES_Zjet_Stat10: 0.007116319326028028 - syst_JES_Zjet_Stat11: 0.005228511834881891 - syst_JES_Zjet_Stat12: 0.0017370388618277945 - syst_JES_Zjet_Stat13: 0.0009263712052951559 - syst_JES_Zjet_Stat2: 3.5039387837118387e-06 - syst_JES_Zjet_Stat3: 6.535014670985827e-05 - syst_JES_Zjet_Stat4: 5.9923932614607335e-05 - syst_JES_Zjet_Stat5: 6.461602510213701e-05 - syst_JES_Zjet_Stat6: 0.00016051934486223146 - syst_JES_Zjet_Stat7: 0.00026165612929950635 - syst_JES_Zjet_Stat8: 0.000809323377890445 - syst_JES_Zjet_Stat9: 0.0013648232559566092 - syst_JES_Zjet_Veto: 0.003951491996702005 - syst_JES_Zjet_dPhi: 0.0036560068380680037 + syst_JES_Zjet_MC: 5.49973199e-02 + syst_JES_Zjet_MuScale: 3.71831159e-03 + syst_JES_Zjet_MuSmearID: 9.05735215e-05 + syst_JES_Zjet_MuSmearMS: 4.66937458e-03 + syst_JES_Zjet_OOC: 2.97937321e-02 + syst_JES_Zjet_Stat1: 1.87544787e-04 + syst_JES_Zjet_Stat10: 7.11631933e-03 + syst_JES_Zjet_Stat11: 5.22851183e-03 + syst_JES_Zjet_Stat12: 1.73703886e-03 + syst_JES_Zjet_Stat13: 9.26371205e-04 + syst_JES_Zjet_Stat2: 3.50393878e-06 + syst_JES_Zjet_Stat3: 6.53501467e-05 + syst_JES_Zjet_Stat4: 5.99239326e-05 + syst_JES_Zjet_Stat5: 6.46160251e-05 + syst_JES_Zjet_Stat6: 1.60519345e-04 + syst_JES_Zjet_Stat7: 2.61656129e-04 + syst_JES_Zjet_Stat8: 8.09323378e-04 + syst_JES_Zjet_Stat9: 1.36482326e-03 + syst_JES_Zjet_Veto: 3.95149200e-03 + syst_JES_Zjet_dPhi: 3.65600684e-03 syst_PRW: 0.0 - syst_Unfolding_bias: 3.8828e-08 - syst_cleaning: 0.02515803797993794 + syst_Unfolding_bias: 3.88280000e-08 + syst_cleaning: 2.51580380e-02 syst_lumi: 0.05685 - stat: 0.07088 - syst_JER_CROSS_CALIB_FORWARD: 0.0001629 + syst_JER_CROSS_CALIB_FORWARD: 1.62900000e-04 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.024711214053542572 - syst_JER_NP1: 0.0028569345022243686 - syst_JER_NP2: 0.002002587825789421 - syst_JER_NP3: 0.0034828859800458585 + syst_JER_NP0: 2.47112141e-02 + syst_JER_NP1: 2.85693450e-03 + syst_JER_NP2: 2.00258783e-03 + syst_JER_NP3: 3.48288598e-03 syst_JER_NP4: 0.0 syst_JER_NP5: 0.0 syst_JER_NP6: 0.0 syst_JER_NP7: 0.0 - syst_JER_NP8: 1.5220673441080063e-07 - syst_JES_EtaIntercalibration_Modelling: 0.05300279803934883 - syst_JES_EtaIntercalibration_NonClosure: 0.029923453594129134 - syst_JES_EtaIntercalibration_Stat0: 0.026818468916028747 + syst_JER_NP8: 1.52206734e-07 + syst_JES_EtaIntercalibration_Modelling: 5.30027980e-02 + syst_JES_EtaIntercalibration_NonClosure: 2.99234536e-02 + syst_JES_EtaIntercalibration_Stat0: 2.68184689e-02 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 syst_JES_EtaIntercalibration_Stat100: 0.0 @@ -39690,97 +39690,97 @@ bins: syst_JES_EtaIntercalibration_Stat98: 0.0 syst_JES_EtaIntercalibration_Stat99: 0.0 syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0 - syst_JES_Flavour_Comp: 0.0012450525531076994 - syst_JES_Flavour_Response: 0.04921243821433764 - syst_JES_Gjet_Generator: 0.038770037400033555 - syst_JES_Gjet_OOC: 0.023598921585530133 - syst_JES_Gjet_Purity: 0.008559596252160495 - syst_JES_Gjet_Stat1: 3.375069781500821e-06 - syst_JES_Gjet_Stat10: 0.001323109952913967 - syst_JES_Gjet_Stat11: 0.001812657372478318 - syst_JES_Gjet_Stat12: 0.0009485461124795146 - syst_JES_Gjet_Stat13: 0.0003608938475507722 - syst_JES_Gjet_Stat14: 3.8945162408186204e-05 - syst_JES_Gjet_Stat15: 1.8089388620035642e-06 - syst_JES_Gjet_Stat2: 0.0001756305671195934 - syst_JES_Gjet_Stat3: 0.00028825381229048816 - syst_JES_Gjet_Stat4: 0.00010861553756254213 - syst_JES_Gjet_Stat5: 0.0001066953170246942 - syst_JES_Gjet_Stat6: 0.00024669263603723564 - syst_JES_Gjet_Stat7: 0.0010830416797150515 - syst_JES_Gjet_Stat8: 0.0002428251558220441 - syst_JES_Gjet_Stat9: 0.0019900743640763855 - syst_JES_Gjet_Veto: 0.010420577095343615 - syst_JES_Gjet_dPhi: 0.0027319465587745304 - syst_JES_LArESZee: 0.03571860036451596 - syst_JES_LArEsmear: 0.00396261741150972 - syst_JES_LAr_JVT: 0.00424121477497898 - syst_JES_MJB_Alpha: 0.00017450411886256437 - syst_JES_MJB_Asym: 0.00039666453080657466 - syst_JES_MJB_Beta: 1.595218793770936e-05 - syst_JES_MJB_Fragmentation: 0.0007275346087923495 - syst_JES_MJB_Stat1: 0.00038202953747059926 - syst_JES_MJB_Stat10: 6.14791434146573e-25 + syst_JES_Flavour_Comp: 1.24505255e-03 + syst_JES_Flavour_Response: 4.92124382e-02 + syst_JES_Gjet_Generator: 3.87700374e-02 + syst_JES_Gjet_OOC: 2.35989216e-02 + syst_JES_Gjet_Purity: 8.55959625e-03 + syst_JES_Gjet_Stat1: 3.37506978e-06 + syst_JES_Gjet_Stat10: 1.32310995e-03 + syst_JES_Gjet_Stat11: 1.81265737e-03 + syst_JES_Gjet_Stat12: 9.48546112e-04 + syst_JES_Gjet_Stat13: 3.60893848e-04 + syst_JES_Gjet_Stat14: 3.89451624e-05 + syst_JES_Gjet_Stat15: 1.80893886e-06 + syst_JES_Gjet_Stat2: 1.75630567e-04 + syst_JES_Gjet_Stat3: 2.88253812e-04 + syst_JES_Gjet_Stat4: 1.08615538e-04 + syst_JES_Gjet_Stat5: 1.06695317e-04 + syst_JES_Gjet_Stat6: 2.46692636e-04 + syst_JES_Gjet_Stat7: 1.08304168e-03 + syst_JES_Gjet_Stat8: 2.42825156e-04 + syst_JES_Gjet_Stat9: 1.99007436e-03 + syst_JES_Gjet_Veto: 1.04205771e-02 + syst_JES_Gjet_dPhi: 2.73194656e-03 + syst_JES_LArESZee: 3.57186004e-02 + syst_JES_LArEsmear: 3.96261741e-03 + syst_JES_LAr_JVT: 4.24121477e-03 + syst_JES_MJB_Alpha: 1.74504119e-04 + syst_JES_MJB_Asym: 3.96664531e-04 + syst_JES_MJB_Beta: 1.59521879e-05 + syst_JES_MJB_Fragmentation: 7.27534609e-04 + syst_JES_MJB_Stat1: 3.82029537e-04 + syst_JES_MJB_Stat10: 6.14791434e-25 syst_JES_MJB_Stat11: 0.0 syst_JES_MJB_Stat12: 0.0 syst_JES_MJB_Stat13: 0.0 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 0.00041673679943100784 - syst_JES_MJB_Stat3: 7.874925190120855e-05 - syst_JES_MJB_Stat4: 7.084087802956708e-06 - syst_JES_MJB_Stat5: 1.414219484377939e-13 - syst_JES_MJB_Stat6: 1.414219484377939e-13 - syst_JES_MJB_Stat7: 1.414219484377939e-13 - syst_JES_MJB_Stat8: 6.14791434146573e-25 - syst_JES_MJB_Stat9: 6.14791434146573e-25 - syst_JES_MJB_Threshold: 0.00032315013028002946 - syst_JES_Pileup_MuOffset: 0.0023366067105955166 - syst_JES_Pileup_NPVOffset: 0.0022985966914619883 - syst_JES_Pileup_Pt_term: 0.018049949445912584 - syst_JES_Pileup_Rho_topology: 0.013704432640572905 - syst_JES_PunchThrough_MC15: 0.00020587872255468752 + syst_JES_MJB_Stat2: 4.16736799e-04 + syst_JES_MJB_Stat3: 7.87492519e-05 + syst_JES_MJB_Stat4: 7.08408780e-06 + syst_JES_MJB_Stat5: 1.41421948e-13 + syst_JES_MJB_Stat6: 1.41421948e-13 + syst_JES_MJB_Stat7: 1.41421948e-13 + syst_JES_MJB_Stat8: 6.14791434e-25 + syst_JES_MJB_Stat9: 6.14791434e-25 + syst_JES_MJB_Threshold: 3.23150130e-04 + syst_JES_Pileup_MuOffset: 2.33660671e-03 + syst_JES_Pileup_NPVOffset: 2.29859669e-03 + syst_JES_Pileup_Pt_term: 1.80499494e-02 + syst_JES_Pileup_Rho_topology: 1.37044326e-02 + syst_JES_PunchThrough_MC15: 2.05878723e-04 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.03614077579410824 - syst_JES_Zjet_MuScale: 0.002487206867150378 - syst_JES_Zjet_MuSmearID: 6.548002901648716e-05 - syst_JES_Zjet_MuSmearMS: 0.002502953269140277 - syst_JES_Zjet_OOC: 0.015413858918194365 - syst_JES_Zjet_Stat1: 0.00012459878520675876 - syst_JES_Zjet_Stat10: 0.004348291929884653 - syst_JES_Zjet_Stat11: 0.0032668986313474746 - syst_JES_Zjet_Stat12: 0.0008723261585410585 - syst_JES_Zjet_Stat13: 0.0007130929322325387 - syst_JES_Zjet_Stat2: 6.785309038651076e-07 - syst_JES_Zjet_Stat3: 0.00011573340874613519 - syst_JES_Zjet_Stat4: 0.00011534308420967424 - syst_JES_Zjet_Stat5: 0.00011142193859379758 - syst_JES_Zjet_Stat6: 0.0001511395615813411 - syst_JES_Zjet_Stat7: 0.0002507301487655603 - syst_JES_Zjet_Stat8: 0.0002245016471387237 - syst_JES_Zjet_Stat9: 0.0015491838980572965 - syst_JES_Zjet_Veto: 0.0028461178823091645 - syst_JES_Zjet_dPhi: 0.0029484685431593128 + syst_JES_Zjet_MC: 3.61407758e-02 + syst_JES_Zjet_MuScale: 2.48720687e-03 + syst_JES_Zjet_MuSmearID: 6.54800290e-05 + syst_JES_Zjet_MuSmearMS: 2.50295327e-03 + syst_JES_Zjet_OOC: 1.54138589e-02 + syst_JES_Zjet_Stat1: 1.24598785e-04 + syst_JES_Zjet_Stat10: 4.34829193e-03 + syst_JES_Zjet_Stat11: 3.26689863e-03 + syst_JES_Zjet_Stat12: 8.72326159e-04 + syst_JES_Zjet_Stat13: 7.13092932e-04 + syst_JES_Zjet_Stat2: 6.78530904e-07 + syst_JES_Zjet_Stat3: 1.15733409e-04 + syst_JES_Zjet_Stat4: 1.15343084e-04 + syst_JES_Zjet_Stat5: 1.11421939e-04 + syst_JES_Zjet_Stat6: 1.51139562e-04 + syst_JES_Zjet_Stat7: 2.50730149e-04 + syst_JES_Zjet_Stat8: 2.24501647e-04 + syst_JES_Zjet_Stat9: 1.54918390e-03 + syst_JES_Zjet_Veto: 2.84611788e-03 + syst_JES_Zjet_dPhi: 2.94846854e-03 syst_PRW: 0.0 syst_Unfolding_bias: 3.13e-09 - syst_cleaning: 0.014436643481086593 + syst_cleaning: 1.44366435e-02 syst_lumi: 0.03362 - stat: 0.033583 - syst_JER_CROSS_CALIB_FORWARD: 1.483e-05 + syst_JER_CROSS_CALIB_FORWARD: 1.48300000e-05 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.0098723448582391 - syst_JER_NP1: 0.0013616395512396078 - syst_JER_NP2: 0.0009543715772695663 - syst_JER_NP3: 0.0016602108299851558 + syst_JER_NP0: 9.87234486e-03 + syst_JER_NP1: 1.36163955e-03 + syst_JER_NP2: 9.54371577e-04 + syst_JER_NP3: 1.66021083e-03 syst_JER_NP4: 0.0 syst_JER_NP5: 0.0 syst_JER_NP6: 0.0 syst_JER_NP7: 0.0 - syst_JER_NP8: 9.733276334693267e-09 - syst_JES_EtaIntercalibration_Modelling: 0.026462042154754423 - syst_JES_EtaIntercalibration_NonClosure: 0.012740737292244904 - syst_JES_EtaIntercalibration_Stat0: 0.01207562321373104 + syst_JER_NP8: 9.73327633e-09 + syst_JES_EtaIntercalibration_Modelling: 2.64620422e-02 + syst_JES_EtaIntercalibration_NonClosure: 1.27407373e-02 + syst_JES_EtaIntercalibration_Stat0: 1.20756232e-02 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 syst_JES_EtaIntercalibration_Stat100: 0.0 @@ -40027,97 +40027,97 @@ bins: syst_JES_EtaIntercalibration_Stat98: 0.0 syst_JES_EtaIntercalibration_Stat99: 0.0 syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0 - syst_JES_Flavour_Comp: 0.0007943736400460428 - syst_JES_Flavour_Response: 0.02234792328159375 - syst_JES_Gjet_Generator: 0.01845166930117706 - syst_JES_Gjet_OOC: 0.01136111618636127 - syst_JES_Gjet_Purity: 0.004089266040501645 - syst_JES_Gjet_Stat1: 1.7896681644371953e-06 - syst_JES_Gjet_Stat10: 0.0006529468182784873 - syst_JES_Gjet_Stat11: 0.001012636850010901 - syst_JES_Gjet_Stat12: 0.0006278071120973384 - syst_JES_Gjet_Stat13: 0.00023797436432313458 - syst_JES_Gjet_Stat14: 2.2863070659909182e-05 - syst_JES_Gjet_Stat15: 8.836206878519764e-06 - syst_JES_Gjet_Stat2: 7.640008965963326e-05 - syst_JES_Gjet_Stat3: 0.00012266629318194954 - syst_JES_Gjet_Stat4: 0.00016170799345347774 - syst_JES_Gjet_Stat5: 0.00016209273518575715 - syst_JES_Gjet_Stat6: 0.0001594459616923552 - syst_JES_Gjet_Stat7: 0.0007107645654504732 - syst_JES_Gjet_Stat8: 0.00014606262038933848 - syst_JES_Gjet_Stat9: 0.001038055438196222 - syst_JES_Gjet_Veto: 0.005185183603306637 - syst_JES_Gjet_dPhi: 0.0014406075827580528 - syst_JES_LArESZee: 0.01869164719868209 - syst_JES_LArEsmear: 0.001982295323608468 - syst_JES_LAr_JVT: 0.0016098051900773583 - syst_JES_MJB_Alpha: 4.184634751087627e-05 - syst_JES_MJB_Asym: 0.0003692923604679631 - syst_JES_MJB_Beta: 2.095781477170535e-06 - syst_JES_MJB_Fragmentation: 0.0003554159210144735 - syst_JES_MJB_Stat1: 0.00016627081884684395 - syst_JES_MJB_Stat10: 3.8261002339196504e-19 + syst_JES_Flavour_Comp: 7.94373640e-04 + syst_JES_Flavour_Response: 2.23479233e-02 + syst_JES_Gjet_Generator: 1.84516693e-02 + syst_JES_Gjet_OOC: 1.13611162e-02 + syst_JES_Gjet_Purity: 4.08926604e-03 + syst_JES_Gjet_Stat1: 1.78966816e-06 + syst_JES_Gjet_Stat10: 6.52946818e-04 + syst_JES_Gjet_Stat11: 1.01263685e-03 + syst_JES_Gjet_Stat12: 6.27807112e-04 + syst_JES_Gjet_Stat13: 2.37974364e-04 + syst_JES_Gjet_Stat14: 2.28630707e-05 + syst_JES_Gjet_Stat15: 8.83620688e-06 + syst_JES_Gjet_Stat2: 7.64000897e-05 + syst_JES_Gjet_Stat3: 1.22666293e-04 + syst_JES_Gjet_Stat4: 1.61707993e-04 + syst_JES_Gjet_Stat5: 1.62092735e-04 + syst_JES_Gjet_Stat6: 1.59445962e-04 + syst_JES_Gjet_Stat7: 7.10764565e-04 + syst_JES_Gjet_Stat8: 1.46062620e-04 + syst_JES_Gjet_Stat9: 1.03805544e-03 + syst_JES_Gjet_Veto: 5.18518360e-03 + syst_JES_Gjet_dPhi: 1.44060758e-03 + syst_JES_LArESZee: 1.86916472e-02 + syst_JES_LArEsmear: 1.98229532e-03 + syst_JES_LAr_JVT: 1.60980519e-03 + syst_JES_MJB_Alpha: 4.18463475e-05 + syst_JES_MJB_Asym: 3.69292360e-04 + syst_JES_MJB_Beta: 2.09578148e-06 + syst_JES_MJB_Fragmentation: 3.55415921e-04 + syst_JES_MJB_Stat1: 1.66270819e-04 + syst_JES_MJB_Stat10: 3.82610023e-19 syst_JES_MJB_Stat11: 0.0 syst_JES_MJB_Stat12: 0.0 syst_JES_MJB_Stat13: 0.0 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 0.00016874612528884923 - syst_JES_MJB_Stat3: 3.87876488073201e-05 - syst_JES_MJB_Stat4: 1.4358701194733798e-05 - syst_JES_MJB_Stat5: 2.0966475012867595e-10 - syst_JES_MJB_Stat6: 2.0966475012867595e-10 - syst_JES_MJB_Stat7: 2.0966475012867595e-10 - syst_JES_MJB_Stat8: 3.8261002339196504e-19 - syst_JES_MJB_Stat9: 3.8261002339196504e-19 - syst_JES_MJB_Threshold: 0.00023090143800981404 - syst_JES_Pileup_MuOffset: 0.00011243744696830321 - syst_JES_Pileup_NPVOffset: 0.001061343568313296 - syst_JES_Pileup_Pt_term: 0.009474394479332177 - syst_JES_Pileup_Rho_topology: 0.006141912487165541 - syst_JES_PunchThrough_MC15: 0.00010211549026503032 + syst_JES_MJB_Stat2: 1.68746125e-04 + syst_JES_MJB_Stat3: 3.87876488e-05 + syst_JES_MJB_Stat4: 1.43587012e-05 + syst_JES_MJB_Stat5: 2.09664750e-10 + syst_JES_MJB_Stat6: 2.09664750e-10 + syst_JES_MJB_Stat7: 2.09664750e-10 + syst_JES_MJB_Stat8: 3.82610023e-19 + syst_JES_MJB_Stat9: 3.82610023e-19 + syst_JES_MJB_Threshold: 2.30901438e-04 + syst_JES_Pileup_MuOffset: 1.12437447e-04 + syst_JES_Pileup_NPVOffset: 1.06134357e-03 + syst_JES_Pileup_Pt_term: 9.47439448e-03 + syst_JES_Pileup_Rho_topology: 6.14191249e-03 + syst_JES_PunchThrough_MC15: 1.02115490e-04 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.018256135270094818 - syst_JES_Zjet_MuScale: 0.0013793749698685995 - syst_JES_Zjet_MuSmearID: 3.24862847983576e-05 - syst_JES_Zjet_MuSmearMS: 0.0015279141598924988 - syst_JES_Zjet_OOC: 0.006557905839519199 - syst_JES_Zjet_Stat1: 0.00012684276437779178 - syst_JES_Zjet_Stat10: 0.001983494580279966 - syst_JES_Zjet_Stat11: 0.0015842234219957739 - syst_JES_Zjet_Stat12: 0.0006873668943875607 - syst_JES_Zjet_Stat13: 0.0003138476501425493 - syst_JES_Zjet_Stat2: 7.886893352264883e-08 - syst_JES_Zjet_Stat3: 0.0001343963128649276 - syst_JES_Zjet_Stat4: 0.0001342443198751813 - syst_JES_Zjet_Stat5: 0.00013707887882073591 - syst_JES_Zjet_Stat6: 0.0001411533091181358 - syst_JES_Zjet_Stat7: 0.0002047411269750169 - syst_JES_Zjet_Stat8: 0.00016514641889850355 - syst_JES_Zjet_Stat9: 0.0008662971011725711 - syst_JES_Zjet_Veto: 0.0015430310528307587 - syst_JES_Zjet_dPhi: 0.0015358409683297292 + syst_JES_Zjet_MC: 1.82561353e-02 + syst_JES_Zjet_MuScale: 1.37937497e-03 + syst_JES_Zjet_MuSmearID: 3.24862848e-05 + syst_JES_Zjet_MuSmearMS: 1.52791416e-03 + syst_JES_Zjet_OOC: 6.55790584e-03 + syst_JES_Zjet_Stat1: 1.26842764e-04 + syst_JES_Zjet_Stat10: 1.98349458e-03 + syst_JES_Zjet_Stat11: 1.58422342e-03 + syst_JES_Zjet_Stat12: 6.87366894e-04 + syst_JES_Zjet_Stat13: 3.13847650e-04 + syst_JES_Zjet_Stat2: 7.88689335e-08 + syst_JES_Zjet_Stat3: 1.34396313e-04 + syst_JES_Zjet_Stat4: 1.34244320e-04 + syst_JES_Zjet_Stat5: 1.37078879e-04 + syst_JES_Zjet_Stat6: 1.41153309e-04 + syst_JES_Zjet_Stat7: 2.04741127e-04 + syst_JES_Zjet_Stat8: 1.65146419e-04 + syst_JES_Zjet_Stat9: 8.66297101e-04 + syst_JES_Zjet_Veto: 1.54303105e-03 + syst_JES_Zjet_dPhi: 1.53584097e-03 syst_PRW: 0.0 - syst_Unfolding_bias: 2.206e-10 - syst_cleaning: 0.006797433394304059 + syst_Unfolding_bias: 2.20600000e-10 + syst_cleaning: 6.79743339e-03 syst_lumi: 0.01602 - stat: 0.020393 - syst_JER_CROSS_CALIB_FORWARD: 1.3583e-06 + syst_JER_CROSS_CALIB_FORWARD: 1.35830000e-06 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.005155875095461487 - syst_JER_NP1: 0.0007900850713689002 - syst_JER_NP2: 0.000553840904502367 - syst_JER_NP3: 0.0009672574941555118 + syst_JER_NP0: 5.15587510e-03 + syst_JER_NP1: 7.90085071e-04 + syst_JER_NP2: 5.53840905e-04 + syst_JER_NP3: 9.67257494e-04 syst_JER_NP4: 0.0 syst_JER_NP5: 0.0 syst_JER_NP6: 0.0 syst_JER_NP7: 0.0 - syst_JER_NP8: 7.407449379341043e-10 - syst_JES_EtaIntercalibration_Modelling: 0.016199904320705106 - syst_JES_EtaIntercalibration_NonClosure: 0.006380790389912522 - syst_JES_EtaIntercalibration_Stat0: 0.006378526553993485 + syst_JER_NP8: 7.40744938e-10 + syst_JES_EtaIntercalibration_Modelling: 1.61999043e-02 + syst_JES_EtaIntercalibration_NonClosure: 6.38079039e-03 + syst_JES_EtaIntercalibration_Stat0: 6.37852655e-03 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 syst_JES_EtaIntercalibration_Stat100: 0.0 @@ -40364,97 +40364,97 @@ bins: syst_JES_EtaIntercalibration_Stat98: 0.0 syst_JES_EtaIntercalibration_Stat99: 0.0 syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0 - syst_JES_Flavour_Comp: 0.0007420328210396088 - syst_JES_Flavour_Response: 0.012002171251486124 - syst_JES_Gjet_Generator: 0.010667353561216578 - syst_JES_Gjet_OOC: 0.0065594225927287225 - syst_JES_Gjet_Purity: 0.00223076018433179 - syst_JES_Gjet_Stat1: 1.0971036940365983e-06 - syst_JES_Gjet_Stat10: 0.00044059736585685575 - syst_JES_Gjet_Stat11: 0.0005585575773364819 - syst_JES_Gjet_Stat12: 0.000632164035278819 - syst_JES_Gjet_Stat13: 0.0001467191257982408 - syst_JES_Gjet_Stat14: 1.3986310271118684e-05 - syst_JES_Gjet_Stat15: 1.244412680745419e-05 - syst_JES_Gjet_Stat2: 1.931609869383567e-05 - syst_JES_Gjet_Stat3: 2.9059290093703254e-05 - syst_JES_Gjet_Stat4: 0.00015798685214915827 - syst_JES_Gjet_Stat5: 0.00015886251599417654 - syst_JES_Gjet_Stat6: 0.00010470645479147883 - syst_JES_Gjet_Stat7: 0.0002945602856377621 - syst_JES_Gjet_Stat8: 8.906845345014136e-05 - syst_JES_Gjet_Stat9: 0.000425347059558427 - syst_JES_Gjet_Veto: 0.003009906435422869 - syst_JES_Gjet_dPhi: 0.0007049998226950132 - syst_JES_LArESZee: 0.01191049835229408 - syst_JES_LArEsmear: 0.0010569151385045063 - syst_JES_LAr_JVT: 0.0010076701580874568 - syst_JES_MJB_Alpha: 5.487136986801158e-05 - syst_JES_MJB_Asym: 0.0001937709916370353 - syst_JES_MJB_Beta: 5.99982428167705e-06 - syst_JES_MJB_Fragmentation: 0.00020065801648624348 - syst_JES_MJB_Stat1: 0.00010329849950507509 - syst_JES_MJB_Stat10: 8.920927684383503e-15 + syst_JES_Flavour_Comp: 7.42032821e-04 + syst_JES_Flavour_Response: 1.20021713e-02 + syst_JES_Gjet_Generator: 1.06673536e-02 + syst_JES_Gjet_OOC: 6.55942259e-03 + syst_JES_Gjet_Purity: 2.23076018e-03 + syst_JES_Gjet_Stat1: 1.09710369e-06 + syst_JES_Gjet_Stat10: 4.40597366e-04 + syst_JES_Gjet_Stat11: 5.58557577e-04 + syst_JES_Gjet_Stat12: 6.32164035e-04 + syst_JES_Gjet_Stat13: 1.46719126e-04 + syst_JES_Gjet_Stat14: 1.39863103e-05 + syst_JES_Gjet_Stat15: 1.24441268e-05 + syst_JES_Gjet_Stat2: 1.93160987e-05 + syst_JES_Gjet_Stat3: 2.90592901e-05 + syst_JES_Gjet_Stat4: 1.57986852e-04 + syst_JES_Gjet_Stat5: 1.58862516e-04 + syst_JES_Gjet_Stat6: 1.04706455e-04 + syst_JES_Gjet_Stat7: 2.94560286e-04 + syst_JES_Gjet_Stat8: 8.90684535e-05 + syst_JES_Gjet_Stat9: 4.25347060e-04 + syst_JES_Gjet_Veto: 3.00990644e-03 + syst_JES_Gjet_dPhi: 7.04999823e-04 + syst_JES_LArESZee: 1.19104984e-02 + syst_JES_LArEsmear: 1.05691514e-03 + syst_JES_LAr_JVT: 1.00767016e-03 + syst_JES_MJB_Alpha: 5.48713699e-05 + syst_JES_MJB_Asym: 1.93770992e-04 + syst_JES_MJB_Beta: 5.99982428e-06 + syst_JES_MJB_Fragmentation: 2.00658016e-04 + syst_JES_MJB_Stat1: 1.03298500e-04 + syst_JES_MJB_Stat10: 8.92092768e-15 syst_JES_MJB_Stat11: 0.0 syst_JES_MJB_Stat12: 0.0 syst_JES_MJB_Stat13: 0.0 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 0.00010211069091921764 - syst_JES_MJB_Stat3: 2.2941002593609548e-05 - syst_JES_MJB_Stat4: 1.1400358131131105e-05 - syst_JES_MJB_Stat5: 3.6658852368553694e-08 - syst_JES_MJB_Stat6: 3.6658852368553694e-08 - syst_JES_MJB_Stat7: 3.6658852368553694e-08 - syst_JES_MJB_Stat8: 8.920927684383503e-15 - syst_JES_MJB_Stat9: 8.920927684383503e-15 - syst_JES_MJB_Threshold: 0.00010107698105899285 - syst_JES_Pileup_MuOffset: 0.00015383170373820866 - syst_JES_Pileup_NPVOffset: 0.0006457737432723631 - syst_JES_Pileup_Pt_term: 0.004549104829524157 - syst_JES_Pileup_Rho_topology: 0.0033693316844739403 - syst_JES_PunchThrough_MC15: 7.695725286644529e-05 + syst_JES_MJB_Stat2: 1.02110691e-04 + syst_JES_MJB_Stat3: 2.29410026e-05 + syst_JES_MJB_Stat4: 1.14003581e-05 + syst_JES_MJB_Stat5: 3.66588524e-08 + syst_JES_MJB_Stat6: 3.66588524e-08 + syst_JES_MJB_Stat7: 3.66588524e-08 + syst_JES_MJB_Stat8: 8.92092768e-15 + syst_JES_MJB_Stat9: 8.92092768e-15 + syst_JES_MJB_Threshold: 1.01076981e-04 + syst_JES_Pileup_MuOffset: 1.53831704e-04 + syst_JES_Pileup_NPVOffset: 6.45773743e-04 + syst_JES_Pileup_Pt_term: 4.54910483e-03 + syst_JES_Pileup_Rho_topology: 3.36933168e-03 + syst_JES_PunchThrough_MC15: 7.69572529e-05 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.009895505381232432 - syst_JES_Zjet_MuScale: 0.0007073901805227439 - syst_JES_Zjet_MuSmearID: 1.898661304709189e-05 - syst_JES_Zjet_MuSmearMS: 0.001045323643662574 - syst_JES_Zjet_OOC: 0.003483094271980016 - syst_JES_Zjet_Stat1: 9.848284419126004e-05 - syst_JES_Zjet_Stat10: 0.0009489991095886233 - syst_JES_Zjet_Stat11: 0.000899126841816548 - syst_JES_Zjet_Stat12: 0.000981419818426345 - syst_JES_Zjet_Stat13: 0.0002823544713653389 - syst_JES_Zjet_Stat2: 8.620416869270302e-09 - syst_JES_Zjet_Stat3: 9.963411338868832e-05 - syst_JES_Zjet_Stat4: 9.960404624311203e-05 - syst_JES_Zjet_Stat5: 9.936136264539651e-05 - syst_JES_Zjet_Stat6: 0.00010148280876582004 - syst_JES_Zjet_Stat7: 0.00012775818212545134 - syst_JES_Zjet_Stat8: 3.9389543028575494e-05 - syst_JES_Zjet_Stat9: 0.0003712316359094413 - syst_JES_Zjet_Veto: 0.0007804940038206572 - syst_JES_Zjet_dPhi: 0.0007642975467708895 + syst_JES_Zjet_MC: 9.89550538e-03 + syst_JES_Zjet_MuScale: 7.07390181e-04 + syst_JES_Zjet_MuSmearID: 1.89866130e-05 + syst_JES_Zjet_MuSmearMS: 1.04532364e-03 + syst_JES_Zjet_OOC: 3.48309427e-03 + syst_JES_Zjet_Stat1: 9.84828442e-05 + syst_JES_Zjet_Stat10: 9.48999110e-04 + syst_JES_Zjet_Stat11: 8.99126842e-04 + syst_JES_Zjet_Stat12: 9.81419818e-04 + syst_JES_Zjet_Stat13: 2.82354471e-04 + syst_JES_Zjet_Stat2: 8.62041687e-09 + syst_JES_Zjet_Stat3: 9.96341134e-05 + syst_JES_Zjet_Stat4: 9.96040462e-05 + syst_JES_Zjet_Stat5: 9.93613626e-05 + syst_JES_Zjet_Stat6: 1.01482809e-04 + syst_JES_Zjet_Stat7: 1.27758182e-04 + syst_JES_Zjet_Stat8: 3.93895430e-05 + syst_JES_Zjet_Stat9: 3.71231636e-04 + syst_JES_Zjet_Veto: 7.80494004e-04 + syst_JES_Zjet_dPhi: 7.64297547e-04 syst_PRW: 0.0 - syst_Unfolding_bias: 2.001e-11 - syst_cleaning: 0.0038745976565315783 + syst_Unfolding_bias: 2.00100000e-11 + syst_cleaning: 3.87459766e-03 syst_lumi: 0.009298 - stat: 0.011182 - syst_JER_CROSS_CALIB_FORWARD: 1.1157e-07 + syst_JER_CROSS_CALIB_FORWARD: 1.11570000e-07 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.002705480502609472 - syst_JER_NP1: 0.00042253295764945955 - syst_JER_NP2: 0.0002962298220976409 - syst_JER_NP3: 0.0005384512884189247 + syst_JER_NP0: 2.70548050e-03 + syst_JER_NP1: 4.22532958e-04 + syst_JER_NP2: 2.96229822e-04 + syst_JER_NP3: 5.38451288e-04 syst_JER_NP4: 0.0 syst_JER_NP5: 0.0 syst_JER_NP6: 0.0 syst_JER_NP7: 0.0 - syst_JER_NP8: 5.797567939015463e-11 - syst_JES_EtaIntercalibration_Modelling: 0.009107615604536679 - syst_JES_EtaIntercalibration_NonClosure: 0.003023018814033416 - syst_JES_EtaIntercalibration_Stat0: 0.003218621754726703 + syst_JER_NP8: 5.79756794e-11 + syst_JES_EtaIntercalibration_Modelling: 9.10761560e-03 + syst_JES_EtaIntercalibration_NonClosure: 3.02301881e-03 + syst_JES_EtaIntercalibration_Stat0: 3.21862175e-03 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 syst_JES_EtaIntercalibration_Stat100: 0.0 @@ -40701,97 +40701,97 @@ bins: syst_JES_EtaIntercalibration_Stat98: 0.0 syst_JES_EtaIntercalibration_Stat99: 0.0 syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0 - syst_JES_Flavour_Comp: 0.0006835420451588914 - syst_JES_Flavour_Response: 0.00572184314709867 - syst_JES_Gjet_Generator: 0.005698101087204402 - syst_JES_Gjet_OOC: 0.003642723015478943 - syst_JES_Gjet_Purity: 0.0012225777797342794 - syst_JES_Gjet_Stat1: 1.3117659739684924e-06 - syst_JES_Gjet_Stat10: 0.00032414791376777363 - syst_JES_Gjet_Stat11: 0.0002816548375228091 - syst_JES_Gjet_Stat12: 0.00041337614190952045 - syst_JES_Gjet_Stat13: 4.978907786854462e-05 - syst_JES_Gjet_Stat14: 7.556071648019227e-06 - syst_JES_Gjet_Stat15: 3.2219525613360607e-06 - syst_JES_Gjet_Stat2: 3.6221850794789603e-06 - syst_JES_Gjet_Stat3: 2.3168916504662016e-06 - syst_JES_Gjet_Stat4: 6.17833639987335e-05 - syst_JES_Gjet_Stat5: 6.23678176030515e-05 - syst_JES_Gjet_Stat6: 5.3175038081791726e-05 - syst_JES_Gjet_Stat7: 5.5922950565934916e-05 - syst_JES_Gjet_Stat8: 4.3833389884310795e-05 - syst_JES_Gjet_Stat9: 0.0001539215159586209 - syst_JES_Gjet_Veto: 0.001762190682077283 - syst_JES_Gjet_dPhi: 0.00029766024255852507 - syst_JES_LArESZee: 0.006888440806888014 - syst_JES_LArEsmear: 0.000541101995930527 - syst_JES_LAr_JVT: 0.0006714672199742888 - syst_JES_MJB_Alpha: 1.708693844169899e-05 - syst_JES_MJB_Asym: 2.4665586973554877e-05 - syst_JES_MJB_Beta: 6.071961359059423e-06 - syst_JES_MJB_Fragmentation: 7.126522517734756e-05 - syst_JES_MJB_Stat1: 2.071648647816516e-05 - syst_JES_MJB_Stat10: 8.093007398365579e-12 + syst_JES_Flavour_Comp: 6.83542045e-04 + syst_JES_Flavour_Response: 5.72184315e-03 + syst_JES_Gjet_Generator: 5.69810109e-03 + syst_JES_Gjet_OOC: 3.64272302e-03 + syst_JES_Gjet_Purity: 1.22257778e-03 + syst_JES_Gjet_Stat1: 1.31176597e-06 + syst_JES_Gjet_Stat10: 3.24147914e-04 + syst_JES_Gjet_Stat11: 2.81654838e-04 + syst_JES_Gjet_Stat12: 4.13376142e-04 + syst_JES_Gjet_Stat13: 4.97890779e-05 + syst_JES_Gjet_Stat14: 7.55607165e-06 + syst_JES_Gjet_Stat15: 3.22195256e-06 + syst_JES_Gjet_Stat2: 3.62218508e-06 + syst_JES_Gjet_Stat3: 2.31689165e-06 + syst_JES_Gjet_Stat4: 6.17833640e-05 + syst_JES_Gjet_Stat5: 6.23678176e-05 + syst_JES_Gjet_Stat6: 5.31750381e-05 + syst_JES_Gjet_Stat7: 5.59229506e-05 + syst_JES_Gjet_Stat8: 4.38333899e-05 + syst_JES_Gjet_Stat9: 1.53921516e-04 + syst_JES_Gjet_Veto: 1.76219068e-03 + syst_JES_Gjet_dPhi: 2.97660243e-04 + syst_JES_LArESZee: 6.88844081e-03 + syst_JES_LArEsmear: 5.41101996e-04 + syst_JES_LAr_JVT: 6.71467220e-04 + syst_JES_MJB_Alpha: 1.70869384e-05 + syst_JES_MJB_Asym: 2.46655870e-05 + syst_JES_MJB_Beta: 6.07196136e-06 + syst_JES_MJB_Fragmentation: 7.12652252e-05 + syst_JES_MJB_Stat1: 2.07164865e-05 + syst_JES_MJB_Stat10: 8.09300740e-12 syst_JES_MJB_Stat11: 0.0 syst_JES_MJB_Stat12: 0.0 syst_JES_MJB_Stat13: 0.0 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 3.364360515759273e-05 - syst_JES_MJB_Stat3: 1.364477719678852e-05 - syst_JES_MJB_Stat4: 4.414111787374755e-07 - syst_JES_MJB_Stat5: 7.469442131339173e-07 - syst_JES_MJB_Stat6: 7.469442131339173e-07 - syst_JES_MJB_Stat7: 7.469442131339173e-07 - syst_JES_MJB_Stat8: 8.093007398365579e-12 - syst_JES_MJB_Stat9: 8.093007398365579e-12 - syst_JES_MJB_Threshold: 5.036085901578229e-06 - syst_JES_Pileup_MuOffset: 0.00024448145369945757 - syst_JES_Pileup_NPVOffset: 0.0004847730190511844 - syst_JES_Pileup_Pt_term: 0.0019409451306000383 - syst_JES_Pileup_Rho_topology: 0.001866646993943954 - syst_JES_PunchThrough_MC15: 7.644385717636179e-05 + syst_JES_MJB_Stat2: 3.36436052e-05 + syst_JES_MJB_Stat3: 1.36447772e-05 + syst_JES_MJB_Stat4: 4.41411179e-07 + syst_JES_MJB_Stat5: 7.46944213e-07 + syst_JES_MJB_Stat6: 7.46944213e-07 + syst_JES_MJB_Stat7: 7.46944213e-07 + syst_JES_MJB_Stat8: 8.09300740e-12 + syst_JES_MJB_Stat9: 8.09300740e-12 + syst_JES_MJB_Threshold: 5.03608590e-06 + syst_JES_Pileup_MuOffset: 2.44481454e-04 + syst_JES_Pileup_NPVOffset: 4.84773019e-04 + syst_JES_Pileup_Pt_term: 1.94094513e-03 + syst_JES_Pileup_Rho_topology: 1.86664699e-03 + syst_JES_PunchThrough_MC15: 7.64438572e-05 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.005151678173178135 - syst_JES_Zjet_MuScale: 0.00032292234360601317 - syst_JES_Zjet_MuSmearID: 1.0425223774576735e-05 - syst_JES_Zjet_MuSmearMS: 0.0005940511152249442 - syst_JES_Zjet_OOC: 0.0019577861859763953 - syst_JES_Zjet_Stat1: 2.2194212646543692e-05 - syst_JES_Zjet_Stat10: 0.0004053565190051839 - syst_JES_Zjet_Stat11: 0.0004363253839747924 - syst_JES_Zjet_Stat12: 0.0008559129205123614 - syst_JES_Zjet_Stat13: 0.000283416066411204 - syst_JES_Zjet_Stat2: 7.900749758725434e-10 - syst_JES_Zjet_Stat3: 1.9494582016550138e-05 - syst_JES_Zjet_Stat4: 1.9487391276155974e-05 - syst_JES_Zjet_Stat5: 2.2765168569549405e-05 - syst_JES_Zjet_Stat6: 2.236190231174441e-05 - syst_JES_Zjet_Stat7: 2.222836567878979e-05 - syst_JES_Zjet_Stat8: 8.687674645726554e-06 - syst_JES_Zjet_Stat9: 0.0001610438998130634 - syst_JES_Zjet_Veto: 0.00034640349305398177 - syst_JES_Zjet_dPhi: 0.0003406072224718672 + syst_JES_Zjet_MC: 5.15167817e-03 + syst_JES_Zjet_MuScale: 3.22922344e-04 + syst_JES_Zjet_MuSmearID: 1.04252238e-05 + syst_JES_Zjet_MuSmearMS: 5.94051115e-04 + syst_JES_Zjet_OOC: 1.95778619e-03 + syst_JES_Zjet_Stat1: 2.21942126e-05 + syst_JES_Zjet_Stat10: 4.05356519e-04 + syst_JES_Zjet_Stat11: 4.36325384e-04 + syst_JES_Zjet_Stat12: 8.55912921e-04 + syst_JES_Zjet_Stat13: 2.83416066e-04 + syst_JES_Zjet_Stat2: 7.90074976e-10 + syst_JES_Zjet_Stat3: 1.94945820e-05 + syst_JES_Zjet_Stat4: 1.94873913e-05 + syst_JES_Zjet_Stat5: 2.27651686e-05 + syst_JES_Zjet_Stat6: 2.23619023e-05 + syst_JES_Zjet_Stat7: 2.22283657e-05 + syst_JES_Zjet_Stat8: 8.68767465e-06 + syst_JES_Zjet_Stat9: 1.61043900e-04 + syst_JES_Zjet_Veto: 3.46403493e-04 + syst_JES_Zjet_dPhi: 3.40607222e-04 syst_PRW: 0.0 - syst_Unfolding_bias: 1.955e-12 - syst_cleaning: 0.002065470588025886 + syst_Unfolding_bias: 1.95500000e-12 + syst_cleaning: 2.06547059e-03 syst_lumi: 0.004973 - stat: 0.006271 - syst_JER_CROSS_CALIB_FORWARD: 8.846e-09 + syst_JER_CROSS_CALIB_FORWARD: 8.84600000e-09 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.0014645042676619281 - syst_JER_NP1: 0.0002286782619752039 - syst_JER_NP2: 0.00016035887097382546 - syst_JER_NP3: 0.0003321119972238281 + syst_JER_NP0: 1.46450427e-03 + syst_JER_NP1: 2.28678262e-04 + syst_JER_NP2: 1.60358871e-04 + syst_JER_NP3: 3.32111997e-04 syst_JER_NP4: 0.0 syst_JER_NP5: 0.0 syst_JER_NP6: 0.0 syst_JER_NP7: 0.0 - syst_JER_NP8: 4.8337085141741844e-12 - syst_JES_EtaIntercalibration_Modelling: 0.005044664805514832 - syst_JES_EtaIntercalibration_NonClosure: 0.001441042272107241 - syst_JES_EtaIntercalibration_Stat0: 0.001704118173719182 + syst_JER_NP8: 4.83370851e-12 + syst_JES_EtaIntercalibration_Modelling: 5.04466481e-03 + syst_JES_EtaIntercalibration_NonClosure: 1.44104227e-03 + syst_JES_EtaIntercalibration_Stat0: 1.70411817e-03 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 syst_JES_EtaIntercalibration_Stat100: 0.0 @@ -41038,97 +41038,97 @@ bins: syst_JES_EtaIntercalibration_Stat98: 0.0 syst_JES_EtaIntercalibration_Stat99: 0.0 syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0 - syst_JES_Flavour_Comp: 0.0005673577068305321 - syst_JES_Flavour_Response: 0.0027041854133916187 - syst_JES_Gjet_Generator: 0.003088153007867324 - syst_JES_Gjet_OOC: 0.0020674353677926673 - syst_JES_Gjet_Purity: 0.0007117551878981986 - syst_JES_Gjet_Stat1: 3.643346744422985e-06 - syst_JES_Gjet_Stat10: 0.00021141430107729232 - syst_JES_Gjet_Stat11: 0.0001881173769219633 - syst_JES_Gjet_Stat12: 0.000209337984787759 - syst_JES_Gjet_Stat13: 8.282196810025708e-05 - syst_JES_Gjet_Stat14: 4.099764261515535e-06 - syst_JES_Gjet_Stat15: 8.758621534665145e-06 - syst_JES_Gjet_Stat2: 3.856513706380414e-06 - syst_JES_Gjet_Stat3: 1.1934950063050119e-06 - syst_JES_Gjet_Stat4: 1.2384399909058976e-05 - syst_JES_Gjet_Stat5: 1.2737695823028589e-05 - syst_JES_Gjet_Stat6: 1.8727169320268346e-05 - syst_JES_Gjet_Stat7: 1.4715275974306428e-05 - syst_JES_Gjet_Stat8: 1.4487276719590883e-05 - syst_JES_Gjet_Stat9: 7.492083021430021e-05 - syst_JES_Gjet_Veto: 0.0010892284241608829 - syst_JES_Gjet_dPhi: 0.00013117433133048555 - syst_JES_LArESZee: 0.0039247538457844715 - syst_JES_LArEsmear: 0.0002900771750758753 - syst_JES_LAr_JVT: 0.00042346542952170253 - syst_JES_MJB_Alpha: 1.4486561683418877e-06 - syst_JES_MJB_Asym: 5.975884097771643e-05 - syst_JES_MJB_Beta: 2.298554264641146e-06 - syst_JES_MJB_Fragmentation: 2.7652191561704774e-05 - syst_JES_MJB_Stat1: 4.472507563716355e-06 - syst_JES_MJB_Stat10: 8.778033492759071e-10 + syst_JES_Flavour_Comp: 5.67357707e-04 + syst_JES_Flavour_Response: 2.70418541e-03 + syst_JES_Gjet_Generator: 3.08815301e-03 + syst_JES_Gjet_OOC: 2.06743537e-03 + syst_JES_Gjet_Purity: 7.11755188e-04 + syst_JES_Gjet_Stat1: 3.64334674e-06 + syst_JES_Gjet_Stat10: 2.11414301e-04 + syst_JES_Gjet_Stat11: 1.88117377e-04 + syst_JES_Gjet_Stat12: 2.09337985e-04 + syst_JES_Gjet_Stat13: 8.28219681e-05 + syst_JES_Gjet_Stat14: 4.09976426e-06 + syst_JES_Gjet_Stat15: 8.75862153e-06 + syst_JES_Gjet_Stat2: 3.85651371e-06 + syst_JES_Gjet_Stat3: 1.19349501e-06 + syst_JES_Gjet_Stat4: 1.23843999e-05 + syst_JES_Gjet_Stat5: 1.27376958e-05 + syst_JES_Gjet_Stat6: 1.87271693e-05 + syst_JES_Gjet_Stat7: 1.47152760e-05 + syst_JES_Gjet_Stat8: 1.44872767e-05 + syst_JES_Gjet_Stat9: 7.49208302e-05 + syst_JES_Gjet_Veto: 1.08922842e-03 + syst_JES_Gjet_dPhi: 1.31174331e-04 + syst_JES_LArESZee: 3.92475385e-03 + syst_JES_LArEsmear: 2.90077175e-04 + syst_JES_LAr_JVT: 4.23465430e-04 + syst_JES_MJB_Alpha: 1.44865617e-06 + syst_JES_MJB_Asym: 5.97588410e-05 + syst_JES_MJB_Beta: 2.29855426e-06 + syst_JES_MJB_Fragmentation: 2.76521916e-05 + syst_JES_MJB_Stat1: 4.47250756e-06 + syst_JES_MJB_Stat10: 8.77803349e-10 syst_JES_MJB_Stat11: 0.0 syst_JES_MJB_Stat12: 0.0 syst_JES_MJB_Stat13: 0.0 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 2.656432902879348e-05 - syst_JES_MJB_Stat3: 1.2486500500540574e-05 - syst_JES_MJB_Stat4: 1.4021881141630034e-06 - syst_JES_MJB_Stat5: 3.357807606587775e-06 - syst_JES_MJB_Stat6: 3.357807606587775e-06 - syst_JES_MJB_Stat7: 3.357807606587775e-06 - syst_JES_MJB_Stat8: 8.778033492759071e-10 - syst_JES_MJB_Stat9: 8.778033492759071e-10 - syst_JES_MJB_Threshold: 3.689637361205028e-05 - syst_JES_Pileup_MuOffset: 0.00017817837481969883 - syst_JES_Pileup_NPVOffset: 0.00037901399710300936 - syst_JES_Pileup_Pt_term: 0.0010625733892301273 - syst_JES_Pileup_Rho_topology: 0.0011331296163722842 - syst_JES_PunchThrough_MC15: 4.7242767435873184e-05 + syst_JES_MJB_Stat2: 2.65643290e-05 + syst_JES_MJB_Stat3: 1.24865005e-05 + syst_JES_MJB_Stat4: 1.40218811e-06 + syst_JES_MJB_Stat5: 3.35780761e-06 + syst_JES_MJB_Stat6: 3.35780761e-06 + syst_JES_MJB_Stat7: 3.35780761e-06 + syst_JES_MJB_Stat8: 8.77803349e-10 + syst_JES_MJB_Stat9: 8.77803349e-10 + syst_JES_MJB_Threshold: 3.68963736e-05 + syst_JES_Pileup_MuOffset: 1.78178375e-04 + syst_JES_Pileup_NPVOffset: 3.79013997e-04 + syst_JES_Pileup_Pt_term: 1.06257339e-03 + syst_JES_Pileup_Rho_topology: 1.13312962e-03 + syst_JES_PunchThrough_MC15: 4.72427674e-05 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.0028930632122371614 - syst_JES_Zjet_MuScale: 0.00017450102435229427 - syst_JES_Zjet_MuSmearID: 7.3019769069752615e-06 - syst_JES_Zjet_MuSmearMS: 0.0003621354442746526 - syst_JES_Zjet_OOC: 0.0011487305689325065 - syst_JES_Zjet_Stat1: 4.07612325009929e-06 - syst_JES_Zjet_Stat10: 0.000153236032560883 - syst_JES_Zjet_Stat11: 0.00020247434479459366 - syst_JES_Zjet_Stat12: 0.0005986452705901885 - syst_JES_Zjet_Stat13: 0.0002224036337383002 - syst_JES_Zjet_Stat2: 6.653673177275841e-11 - syst_JES_Zjet_Stat3: 5.4963384175285275e-06 - syst_JES_Zjet_Stat4: 5.494810529035555e-06 - syst_JES_Zjet_Stat5: 1.4312368802892134e-05 - syst_JES_Zjet_Stat6: 4.098014275231358e-06 - syst_JES_Zjet_Stat7: 8.026580638727802e-06 - syst_JES_Zjet_Stat8: 7.880453794040037e-06 - syst_JES_Zjet_Stat9: 6.77152883402264e-05 - syst_JES_Zjet_Veto: 0.00017855824483904403 - syst_JES_Zjet_dPhi: 0.00015522472443203113 + syst_JES_Zjet_MC: 2.89306321e-03 + syst_JES_Zjet_MuScale: 1.74501024e-04 + syst_JES_Zjet_MuSmearID: 7.30197691e-06 + syst_JES_Zjet_MuSmearMS: 3.62135444e-04 + syst_JES_Zjet_OOC: 1.14873057e-03 + syst_JES_Zjet_Stat1: 4.07612325e-06 + syst_JES_Zjet_Stat10: 1.53236033e-04 + syst_JES_Zjet_Stat11: 2.02474345e-04 + syst_JES_Zjet_Stat12: 5.98645271e-04 + syst_JES_Zjet_Stat13: 2.22403634e-04 + syst_JES_Zjet_Stat2: 6.65367318e-11 + syst_JES_Zjet_Stat3: 5.49633842e-06 + syst_JES_Zjet_Stat4: 5.49481053e-06 + syst_JES_Zjet_Stat5: 1.43123688e-05 + syst_JES_Zjet_Stat6: 4.09801428e-06 + syst_JES_Zjet_Stat7: 8.02658064e-06 + syst_JES_Zjet_Stat8: 7.88045379e-06 + syst_JES_Zjet_Stat9: 6.77152883e-05 + syst_JES_Zjet_Veto: 1.78558245e-04 + syst_JES_Zjet_dPhi: 1.55224724e-04 syst_PRW: 0.0 - syst_Unfolding_bias: 2.109e-13 - syst_cleaning: 0.0011190780267702517 + syst_Unfolding_bias: 2.10900000e-13 + syst_cleaning: 1.11907803e-03 syst_lumi: 0.002694 - stat: 0.003642 - syst_JER_CROSS_CALIB_FORWARD: 6.787e-10 + syst_JER_CROSS_CALIB_FORWARD: 6.78700000e-10 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.0007237035373687212 - syst_JER_NP1: 0.00011538350001191679 - syst_JER_NP2: 8.18972812430303e-05 - syst_JER_NP3: 0.00020930371729857068 + syst_JER_NP0: 7.23703537e-04 + syst_JER_NP1: 1.15383500e-04 + syst_JER_NP2: 8.18972812e-05 + syst_JER_NP3: 2.09303717e-04 syst_JER_NP4: 0.0 syst_JER_NP5: 0.0 syst_JER_NP6: 0.0 syst_JER_NP7: 0.0 - syst_JER_NP8: 4.2026534510949145e-13 - syst_JES_EtaIntercalibration_Modelling: 0.00269306382211785 - syst_JES_EtaIntercalibration_NonClosure: 0.000676423186696021 - syst_JES_EtaIntercalibration_Stat0: 0.0009177179959007015 + syst_JER_NP8: 4.20265345e-13 + syst_JES_EtaIntercalibration_Modelling: 2.69306382e-03 + syst_JES_EtaIntercalibration_NonClosure: 6.76423187e-04 + syst_JES_EtaIntercalibration_Stat0: 9.17717996e-04 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 syst_JES_EtaIntercalibration_Stat100: 0.0 @@ -41375,97 +41375,97 @@ bins: syst_JES_EtaIntercalibration_Stat98: 0.0 syst_JES_EtaIntercalibration_Stat99: 0.0 syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0 - syst_JES_Flavour_Comp: 0.0004280765206128456 - syst_JES_Flavour_Response: 0.001252883043224706 - syst_JES_Gjet_Generator: 0.0016664851484486742 - syst_JES_Gjet_OOC: 0.0011729961924490633 - syst_JES_Gjet_Purity: 0.0003916035112202137 - syst_JES_Gjet_Stat1: 3.027623079006206e-06 - syst_JES_Gjet_Stat10: 0.00010191900362542796 - syst_JES_Gjet_Stat11: 0.0001289731664921041 - syst_JES_Gjet_Stat12: 0.00011625750427391772 - syst_JES_Gjet_Stat13: 0.00011369060251401609 - syst_JES_Gjet_Stat14: 1.9892603527513067e-06 - syst_JES_Gjet_Stat15: 3.4468691591065657e-06 - syst_JES_Gjet_Stat2: 3.074872274530277e-06 - syst_JES_Gjet_Stat3: 8.18357041577819e-07 - syst_JES_Gjet_Stat4: 1.672297057194086e-06 - syst_JES_Gjet_Stat5: 1.940971887998381e-06 - syst_JES_Gjet_Stat6: 3.5397266490507425e-06 - syst_JES_Gjet_Stat7: 5.575022126189276e-06 - syst_JES_Gjet_Stat8: 3.8072432713841655e-06 - syst_JES_Gjet_Stat9: 4.8952391879764155e-05 - syst_JES_Gjet_Veto: 0.0006434557851942898 - syst_JES_Gjet_dPhi: 7.49485283377866e-05 - syst_JES_LArESZee: 0.0021682529833946963 - syst_JES_LArEsmear: 0.0001489747900652993 - syst_JES_LAr_JVT: 0.0002150180166869744 - syst_JES_MJB_Alpha: 3.5144392155790663e-06 - syst_JES_MJB_Asym: 7.292529190891182e-05 - syst_JES_MJB_Beta: 1.3709735619259768e-06 - syst_JES_MJB_Fragmentation: 6.364420695793957e-05 - syst_JES_MJB_Stat1: 4.0754929763158706e-06 - syst_JES_MJB_Stat10: 1.6636348006699067e-08 + syst_JES_Flavour_Comp: 4.28076521e-04 + syst_JES_Flavour_Response: 1.25288304e-03 + syst_JES_Gjet_Generator: 1.66648515e-03 + syst_JES_Gjet_OOC: 1.17299619e-03 + syst_JES_Gjet_Purity: 3.91603511e-04 + syst_JES_Gjet_Stat1: 3.02762308e-06 + syst_JES_Gjet_Stat10: 1.01919004e-04 + syst_JES_Gjet_Stat11: 1.28973166e-04 + syst_JES_Gjet_Stat12: 1.16257504e-04 + syst_JES_Gjet_Stat13: 1.13690603e-04 + syst_JES_Gjet_Stat14: 1.98926035e-06 + syst_JES_Gjet_Stat15: 3.44686916e-06 + syst_JES_Gjet_Stat2: 3.07487227e-06 + syst_JES_Gjet_Stat3: 8.18357042e-07 + syst_JES_Gjet_Stat4: 1.67229706e-06 + syst_JES_Gjet_Stat5: 1.94097189e-06 + syst_JES_Gjet_Stat6: 3.53972665e-06 + syst_JES_Gjet_Stat7: 5.57502213e-06 + syst_JES_Gjet_Stat8: 3.80724327e-06 + syst_JES_Gjet_Stat9: 4.89523919e-05 + syst_JES_Gjet_Veto: 6.43455785e-04 + syst_JES_Gjet_dPhi: 7.49485283e-05 + syst_JES_LArESZee: 2.16825298e-03 + syst_JES_LArEsmear: 1.48974790e-04 + syst_JES_LAr_JVT: 2.15018017e-04 + syst_JES_MJB_Alpha: 3.51443922e-06 + syst_JES_MJB_Asym: 7.29252919e-05 + syst_JES_MJB_Beta: 1.37097356e-06 + syst_JES_MJB_Fragmentation: 6.36442070e-05 + syst_JES_MJB_Stat1: 4.07549298e-06 + syst_JES_MJB_Stat10: 1.66363480e-08 syst_JES_MJB_Stat11: 0.0 syst_JES_MJB_Stat12: 0.0 syst_JES_MJB_Stat13: 0.0 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 1.2762501586679627e-05 - syst_JES_MJB_Stat3: 9.241190440089417e-06 - syst_JES_MJB_Stat4: 1.3966135041592574e-06 - syst_JES_MJB_Stat5: 2.909538337619046e-06 - syst_JES_MJB_Stat6: 2.909538337619046e-06 - syst_JES_MJB_Stat7: 2.909538337619046e-06 - syst_JES_MJB_Stat8: 1.6636348006699067e-08 - syst_JES_MJB_Stat9: 1.6636348006699067e-08 - syst_JES_MJB_Threshold: 3.356399630667957e-05 - syst_JES_Pileup_MuOffset: 0.00010086022177609145 - syst_JES_Pileup_NPVOffset: 0.000237706220995581 - syst_JES_Pileup_Pt_term: 0.0006498417268843237 - syst_JES_Pileup_Rho_topology: 0.0006011585564557824 - syst_JES_PunchThrough_MC15: 1.2565889184614037e-05 + syst_JES_MJB_Stat2: 1.27625016e-05 + syst_JES_MJB_Stat3: 9.24119044e-06 + syst_JES_MJB_Stat4: 1.39661350e-06 + syst_JES_MJB_Stat5: 2.90953834e-06 + syst_JES_MJB_Stat6: 2.90953834e-06 + syst_JES_MJB_Stat7: 2.90953834e-06 + syst_JES_MJB_Stat8: 1.66363480e-08 + syst_JES_MJB_Stat9: 1.66363480e-08 + syst_JES_MJB_Threshold: 3.35639963e-05 + syst_JES_Pileup_MuOffset: 1.00860222e-04 + syst_JES_Pileup_NPVOffset: 2.37706221e-04 + syst_JES_Pileup_Pt_term: 6.49841727e-04 + syst_JES_Pileup_Rho_topology: 6.01158556e-04 + syst_JES_PunchThrough_MC15: 1.25658892e-05 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.001560603969622018 - syst_JES_Zjet_MuScale: 0.00011253720694397033 - syst_JES_Zjet_MuSmearID: 5.1042930950328475e-06 - syst_JES_Zjet_MuSmearMS: 0.00021941893149862894 - syst_JES_Zjet_OOC: 0.0005762919811172112 - syst_JES_Zjet_Stat1: 4.229110860452821e-06 - syst_JES_Zjet_Stat10: 6.118595488345344e-05 - syst_JES_Zjet_Stat11: 9.524064451036648e-05 - syst_JES_Zjet_Stat12: 0.00034390294372104466 - syst_JES_Zjet_Stat13: 0.00015739265572128834 - syst_JES_Zjet_Stat2: 5.210008829167183e-12 - syst_JES_Zjet_Stat3: 3.123302349677341e-06 - syst_JES_Zjet_Stat4: 3.1233456004739535e-06 - syst_JES_Zjet_Stat5: 4.911175813387258e-06 - syst_JES_Zjet_Stat6: 4.068740683553082e-06 - syst_JES_Zjet_Stat7: 3.885004150255184e-06 - syst_JES_Zjet_Stat8: 4.697265800441784e-06 - syst_JES_Zjet_Stat9: 2.285818752110499e-05 - syst_JES_Zjet_Veto: 0.00011218999383523471 - syst_JES_Zjet_dPhi: 7.374791188908335e-05 + syst_JES_Zjet_MC: 1.56060397e-03 + syst_JES_Zjet_MuScale: 1.12537207e-04 + syst_JES_Zjet_MuSmearID: 5.10429310e-06 + syst_JES_Zjet_MuSmearMS: 2.19418931e-04 + syst_JES_Zjet_OOC: 5.76291981e-04 + syst_JES_Zjet_Stat1: 4.22911086e-06 + syst_JES_Zjet_Stat10: 6.11859549e-05 + syst_JES_Zjet_Stat11: 9.52406445e-05 + syst_JES_Zjet_Stat12: 3.43902944e-04 + syst_JES_Zjet_Stat13: 1.57392656e-04 + syst_JES_Zjet_Stat2: 5.21000883e-12 + syst_JES_Zjet_Stat3: 3.12330235e-06 + syst_JES_Zjet_Stat4: 3.12334560e-06 + syst_JES_Zjet_Stat5: 4.91117581e-06 + syst_JES_Zjet_Stat6: 4.06874068e-06 + syst_JES_Zjet_Stat7: 3.88500415e-06 + syst_JES_Zjet_Stat8: 4.69726580e-06 + syst_JES_Zjet_Stat9: 2.28581875e-05 + syst_JES_Zjet_Veto: 1.12189994e-04 + syst_JES_Zjet_dPhi: 7.37479119e-05 syst_PRW: 0.0 - syst_Unfolding_bias: 2.428e-14 - syst_cleaning: 0.00059158195332515 - syst_lumi: 0.0014125 -- stat: 0.0021132 - syst_JER_CROSS_CALIB_FORWARD: 5.457e-11 + syst_Unfolding_bias: 2.42800000e-14 + syst_cleaning: 5.91581953e-04 + syst_lumi: 1.41250000e-03 +- stat: 2.11320000e-03 + syst_JER_CROSS_CALIB_FORWARD: 5.45700000e-11 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.0003577460377139068 - syst_JER_NP1: 3.993132440515842e-05 - syst_JER_NP2: 3.866250342062707e-05 - syst_JER_NP3: 0.0001274912557785827 + syst_JER_NP0: 3.57746038e-04 + syst_JER_NP1: 3.99313244e-05 + syst_JER_NP2: 3.86625034e-05 + syst_JER_NP3: 1.27491256e-04 syst_JER_NP4: 0.0 syst_JER_NP5: 0.0 syst_JER_NP6: 0.0 syst_JER_NP7: 0.0 - syst_JER_NP8: 4.040681223506749e-14 - syst_JES_EtaIntercalibration_Modelling: 0.0015401369314122688 - syst_JES_EtaIntercalibration_NonClosure: 0.00033308694060260006 - syst_JES_EtaIntercalibration_Stat0: 0.00052391989845777 + syst_JER_NP8: 4.04068122e-14 + syst_JES_EtaIntercalibration_Modelling: 1.54013693e-03 + syst_JES_EtaIntercalibration_NonClosure: 3.33086941e-04 + syst_JES_EtaIntercalibration_Stat0: 5.23919898e-04 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 syst_JES_EtaIntercalibration_Stat100: 0.0 @@ -41712,97 +41712,97 @@ bins: syst_JES_EtaIntercalibration_Stat98: 0.0 syst_JES_EtaIntercalibration_Stat99: 0.0 syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0 - syst_JES_Flavour_Comp: 0.0003078837605330947 - syst_JES_Flavour_Response: 0.0005897882564954985 - syst_JES_Gjet_Generator: 0.0009503649969879994 - syst_JES_Gjet_OOC: 0.0006927145209247458 - syst_JES_Gjet_Purity: 0.0002184560539330508 - syst_JES_Gjet_Stat1: 1.92257653424387e-06 - syst_JES_Gjet_Stat10: 3.825851940417977e-05 - syst_JES_Gjet_Stat11: 6.594570721434413e-05 - syst_JES_Gjet_Stat12: 7.928068286158993e-05 - syst_JES_Gjet_Stat13: 9.870865248295106e-05 - syst_JES_Gjet_Stat14: 1.3917013669442897e-06 - syst_JES_Gjet_Stat15: 3.2528993386669687e-06 - syst_JES_Gjet_Stat2: 1.9113509893294717e-06 - syst_JES_Gjet_Stat3: 2.409676416446148e-06 - syst_JES_Gjet_Stat4: 2.4185886435481332e-06 - syst_JES_Gjet_Stat5: 2.3574061316784175e-06 - syst_JES_Gjet_Stat6: 2.8989579175110487e-06 - syst_JES_Gjet_Stat7: 3.958420265712068e-06 - syst_JES_Gjet_Stat8: 7.6169108403604144e-06 - syst_JES_Gjet_Stat9: 2.246046321873171e-05 - syst_JES_Gjet_Veto: 0.0003897758073559723 - syst_JES_Gjet_dPhi: 4.349567191112238e-05 - syst_JES_LArESZee: 0.0012652028009374624 - syst_JES_LArEsmear: 6.811019802496539e-05 - syst_JES_LAr_JVT: 0.00010896935027795659 - syst_JES_MJB_Alpha: 6.132433509627316e-06 - syst_JES_MJB_Asym: 4.70581796821764e-05 - syst_JES_MJB_Beta: 6.6934876559234795e-06 - syst_JES_MJB_Fragmentation: 5.26023830288442e-05 - syst_JES_MJB_Stat1: 2.1744654515535536e-06 - syst_JES_MJB_Stat10: 8.593570081752984e-08 + syst_JES_Flavour_Comp: 3.07883761e-04 + syst_JES_Flavour_Response: 5.89788256e-04 + syst_JES_Gjet_Generator: 9.50364997e-04 + syst_JES_Gjet_OOC: 6.92714521e-04 + syst_JES_Gjet_Purity: 2.18456054e-04 + syst_JES_Gjet_Stat1: 1.92257653e-06 + syst_JES_Gjet_Stat10: 3.82585194e-05 + syst_JES_Gjet_Stat11: 6.59457072e-05 + syst_JES_Gjet_Stat12: 7.92806829e-05 + syst_JES_Gjet_Stat13: 9.87086525e-05 + syst_JES_Gjet_Stat14: 1.39170137e-06 + syst_JES_Gjet_Stat15: 3.25289934e-06 + syst_JES_Gjet_Stat2: 1.91135099e-06 + syst_JES_Gjet_Stat3: 2.40967642e-06 + syst_JES_Gjet_Stat4: 2.41858864e-06 + syst_JES_Gjet_Stat5: 2.35740613e-06 + syst_JES_Gjet_Stat6: 2.89895792e-06 + syst_JES_Gjet_Stat7: 3.95842027e-06 + syst_JES_Gjet_Stat8: 7.61691084e-06 + syst_JES_Gjet_Stat9: 2.24604632e-05 + syst_JES_Gjet_Veto: 3.89775807e-04 + syst_JES_Gjet_dPhi: 4.34956719e-05 + syst_JES_LArESZee: 1.26520280e-03 + syst_JES_LArEsmear: 6.81101980e-05 + syst_JES_LAr_JVT: 1.08969350e-04 + syst_JES_MJB_Alpha: 6.13243351e-06 + syst_JES_MJB_Asym: 4.70581797e-05 + syst_JES_MJB_Beta: 6.69348766e-06 + syst_JES_MJB_Fragmentation: 5.26023830e-05 + syst_JES_MJB_Stat1: 2.17446545e-06 + syst_JES_MJB_Stat10: 8.59357008e-08 syst_JES_MJB_Stat11: 0.0 syst_JES_MJB_Stat12: 0.0 syst_JES_MJB_Stat13: 0.0 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 3.5224387503546464e-06 - syst_JES_MJB_Stat3: 2.9567970846847103e-06 - syst_JES_MJB_Stat4: 6.673790002689627e-06 - syst_JES_MJB_Stat5: 1.9857841309354343e-06 - syst_JES_MJB_Stat6: 1.9857841309354343e-06 - syst_JES_MJB_Stat7: 1.9857841309354343e-06 - syst_JES_MJB_Stat8: 8.593570081752984e-08 - syst_JES_MJB_Stat9: 8.593570081752984e-08 - syst_JES_MJB_Threshold: 2.105991460233975e-05 - syst_JES_Pileup_MuOffset: 5.432600391719406e-05 - syst_JES_Pileup_NPVOffset: 0.00012788739851916608 - syst_JES_Pileup_Pt_term: 0.00038148502365754807 - syst_JES_Pileup_Rho_topology: 0.0003221795268169596 - syst_JES_PunchThrough_MC15: 5.714331522584246e-06 + syst_JES_MJB_Stat2: 3.52243875e-06 + syst_JES_MJB_Stat3: 2.95679708e-06 + syst_JES_MJB_Stat4: 6.67379000e-06 + syst_JES_MJB_Stat5: 1.98578413e-06 + syst_JES_MJB_Stat6: 1.98578413e-06 + syst_JES_MJB_Stat7: 1.98578413e-06 + syst_JES_MJB_Stat8: 8.59357008e-08 + syst_JES_MJB_Stat9: 8.59357008e-08 + syst_JES_MJB_Threshold: 2.10599146e-05 + syst_JES_Pileup_MuOffset: 5.43260039e-05 + syst_JES_Pileup_NPVOffset: 1.27887399e-04 + syst_JES_Pileup_Pt_term: 3.81485024e-04 + syst_JES_Pileup_Rho_topology: 3.22179527e-04 + syst_JES_PunchThrough_MC15: 5.71433152e-06 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.0008232455344549401 - syst_JES_Zjet_MuScale: 5.786234786110913e-05 - syst_JES_Zjet_MuSmearID: 7.4569609761618034e-06 - syst_JES_Zjet_MuSmearMS: 0.00011994482106368745 - syst_JES_Zjet_OOC: 0.000314630751834591 - syst_JES_Zjet_Stat1: 9.028759424749339e-07 - syst_JES_Zjet_Stat10: 2.4979875900412316e-05 - syst_JES_Zjet_Stat11: 4.487857861775482e-05 - syst_JES_Zjet_Stat12: 0.0001835481680649524 - syst_JES_Zjet_Stat13: 9.503784127914523e-05 - syst_JES_Zjet_Stat2: 4.1447975825123235e-13 - syst_JES_Zjet_Stat3: 2.867192053211644e-06 - syst_JES_Zjet_Stat4: 2.867244996072013e-06 - syst_JES_Zjet_Stat5: 3.4918002616845082e-06 - syst_JES_Zjet_Stat6: 1.9830894098602815e-06 - syst_JES_Zjet_Stat7: 3.2448596992011844e-06 - syst_JES_Zjet_Stat8: 1.6439908758870897e-06 - syst_JES_Zjet_Stat9: 1.0309928455134885e-05 - syst_JES_Zjet_Veto: 5.398499861072519e-05 - syst_JES_Zjet_dPhi: 3.152648569060624e-05 + syst_JES_Zjet_MC: 8.23245534e-04 + syst_JES_Zjet_MuScale: 5.78623479e-05 + syst_JES_Zjet_MuSmearID: 7.45696098e-06 + syst_JES_Zjet_MuSmearMS: 1.19944821e-04 + syst_JES_Zjet_OOC: 3.14630752e-04 + syst_JES_Zjet_Stat1: 9.02875942e-07 + syst_JES_Zjet_Stat10: 2.49798759e-05 + syst_JES_Zjet_Stat11: 4.48785786e-05 + syst_JES_Zjet_Stat12: 1.83548168e-04 + syst_JES_Zjet_Stat13: 9.50378413e-05 + syst_JES_Zjet_Stat2: 4.14479758e-13 + syst_JES_Zjet_Stat3: 2.86719205e-06 + syst_JES_Zjet_Stat4: 2.86724500e-06 + syst_JES_Zjet_Stat5: 3.49180026e-06 + syst_JES_Zjet_Stat6: 1.98308941e-06 + syst_JES_Zjet_Stat7: 3.24485970e-06 + syst_JES_Zjet_Stat8: 1.64399088e-06 + syst_JES_Zjet_Stat9: 1.03099285e-05 + syst_JES_Zjet_Veto: 5.39849986e-05 + syst_JES_Zjet_dPhi: 3.15264857e-05 syst_PRW: 0.0 - syst_Unfolding_bias: 3.126e-15 - syst_cleaning: 0.0003197365790772147 - syst_lumi: 0.0007481 -- stat: 0.0011503 - syst_JER_CROSS_CALIB_FORWARD: 4.182e-12 + syst_Unfolding_bias: 3.12600000e-15 + syst_cleaning: 3.19736579e-04 + syst_lumi: 7.48100000e-04 +- stat: 1.15030000e-03 + syst_JER_CROSS_CALIB_FORWARD: 4.18200000e-12 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 0.000186973455870078 - syst_JER_NP1: 1.715092390368519e-05 - syst_JER_NP2: 3.839852340911041e-05 - syst_JER_NP3: 6.21863160188799e-05 + syst_JER_NP0: 1.86973456e-04 + syst_JER_NP1: 1.71509239e-05 + syst_JER_NP2: 3.83985234e-05 + syst_JER_NP3: 6.21863160e-05 syst_JER_NP4: 0.0 syst_JER_NP5: 0.0 syst_JER_NP6: 0.0 syst_JER_NP7: 0.0 - syst_JER_NP8: 3.8570692332391444e-15 - syst_JES_EtaIntercalibration_Modelling: 0.0008504500514433521 - syst_JES_EtaIntercalibration_NonClosure: 0.00014239881741081982 - syst_JES_EtaIntercalibration_Stat0: 0.00028330236056199745 + syst_JER_NP8: 3.85706923e-15 + syst_JES_EtaIntercalibration_Modelling: 8.50450051e-04 + syst_JES_EtaIntercalibration_NonClosure: 1.42398817e-04 + syst_JES_EtaIntercalibration_Stat0: 2.83302361e-04 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 syst_JES_EtaIntercalibration_Stat100: 0.0 @@ -42049,97 +42049,97 @@ bins: syst_JES_EtaIntercalibration_Stat98: 0.0 syst_JES_EtaIntercalibration_Stat99: 0.0 syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0 - syst_JES_Flavour_Comp: 0.00019133747019337325 - syst_JES_Flavour_Response: 0.00025108440811806695 - syst_JES_Gjet_Generator: 0.000504562709184894 - syst_JES_Gjet_OOC: 0.00037095098958622556 - syst_JES_Gjet_Purity: 0.00011445961067118828 - syst_JES_Gjet_Stat1: 2.9418883068661775e-06 - syst_JES_Gjet_Stat10: 1.0969848015355544e-05 - syst_JES_Gjet_Stat11: 2.4275193099128996e-05 - syst_JES_Gjet_Stat12: 5.130287352575877e-05 - syst_JES_Gjet_Stat13: 6.753850910406597e-05 - syst_JES_Gjet_Stat14: 7.662793633021103e-06 - syst_JES_Gjet_Stat15: 3.5823156571552996e-06 - syst_JES_Gjet_Stat2: 2.9400950229524567e-06 - syst_JES_Gjet_Stat3: 2.992451425134344e-06 - syst_JES_Gjet_Stat4: 3.0027785653124674e-06 - syst_JES_Gjet_Stat5: 2.9905792433340986e-06 - syst_JES_Gjet_Stat6: 2.99678198531358e-06 - syst_JES_Gjet_Stat7: 3.4291922966640414e-06 - syst_JES_Gjet_Stat8: 5.68272529249831e-06 - syst_JES_Gjet_Stat9: 6.504869907999698e-06 - syst_JES_Gjet_Veto: 0.00022763833157005874 - syst_JES_Gjet_dPhi: 2.1843780733883956e-05 - syst_JES_LArESZee: 0.0006988132869372189 - syst_JES_LArEsmear: 2.568880690106102e-05 - syst_JES_LAr_JVT: 5.858068282292381e-05 - syst_JES_MJB_Alpha: 5.275684789674228e-06 - syst_JES_MJB_Asym: 2.1958347404802576e-05 - syst_JES_MJB_Beta: 5.420663520271296e-06 - syst_JES_MJB_Fragmentation: 2.9799934144479798e-05 - syst_JES_MJB_Stat1: 2.9767946301349042e-06 - syst_JES_MJB_Stat10: 1.6116732764428404e-07 + syst_JES_Flavour_Comp: 1.91337470e-04 + syst_JES_Flavour_Response: 2.51084408e-04 + syst_JES_Gjet_Generator: 5.04562709e-04 + syst_JES_Gjet_OOC: 3.70950990e-04 + syst_JES_Gjet_Purity: 1.14459611e-04 + syst_JES_Gjet_Stat1: 2.94188831e-06 + syst_JES_Gjet_Stat10: 1.09698480e-05 + syst_JES_Gjet_Stat11: 2.42751931e-05 + syst_JES_Gjet_Stat12: 5.13028735e-05 + syst_JES_Gjet_Stat13: 6.75385091e-05 + syst_JES_Gjet_Stat14: 7.66279363e-06 + syst_JES_Gjet_Stat15: 3.58231566e-06 + syst_JES_Gjet_Stat2: 2.94009502e-06 + syst_JES_Gjet_Stat3: 2.99245143e-06 + syst_JES_Gjet_Stat4: 3.00277857e-06 + syst_JES_Gjet_Stat5: 2.99057924e-06 + syst_JES_Gjet_Stat6: 2.99678199e-06 + syst_JES_Gjet_Stat7: 3.42919230e-06 + syst_JES_Gjet_Stat8: 5.68272529e-06 + syst_JES_Gjet_Stat9: 6.50486991e-06 + syst_JES_Gjet_Veto: 2.27638332e-04 + syst_JES_Gjet_dPhi: 2.18437807e-05 + syst_JES_LArESZee: 6.98813287e-04 + syst_JES_LArEsmear: 2.56888069e-05 + syst_JES_LAr_JVT: 5.85806828e-05 + syst_JES_MJB_Alpha: 5.27568479e-06 + syst_JES_MJB_Asym: 2.19583474e-05 + syst_JES_MJB_Beta: 5.42066352e-06 + syst_JES_MJB_Fragmentation: 2.97999341e-05 + syst_JES_MJB_Stat1: 2.97679463e-06 + syst_JES_MJB_Stat10: 1.61167328e-07 syst_JES_MJB_Stat11: 0.0 syst_JES_MJB_Stat12: 0.0 syst_JES_MJB_Stat13: 0.0 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 3.998514849290921e-06 - syst_JES_MJB_Stat3: 2.725266363128566e-06 - syst_JES_MJB_Stat4: 5.413954007931726e-06 - syst_JES_MJB_Stat5: 3.005516446053822e-06 - syst_JES_MJB_Stat6: 3.005516446053822e-06 - syst_JES_MJB_Stat7: 3.005516446053822e-06 - syst_JES_MJB_Stat8: 1.6116732764428404e-07 - syst_JES_MJB_Stat9: 1.6116732764428404e-07 - syst_JES_MJB_Threshold: 1.0806992601190684e-05 - syst_JES_Pileup_MuOffset: 2.6604317332210928e-05 - syst_JES_Pileup_NPVOffset: 6.982295754263062e-05 - syst_JES_Pileup_Pt_term: 0.00020157539532393332 - syst_JES_Pileup_Rho_topology: 0.0001664487533747249 - syst_JES_PunchThrough_MC15: 4.435269777589634e-06 + syst_JES_MJB_Stat2: 3.99851485e-06 + syst_JES_MJB_Stat3: 2.72526636e-06 + syst_JES_MJB_Stat4: 5.41395401e-06 + syst_JES_MJB_Stat5: 3.00551645e-06 + syst_JES_MJB_Stat6: 3.00551645e-06 + syst_JES_MJB_Stat7: 3.00551645e-06 + syst_JES_MJB_Stat8: 1.61167328e-07 + syst_JES_MJB_Stat9: 1.61167328e-07 + syst_JES_MJB_Threshold: 1.08069926e-05 + syst_JES_Pileup_MuOffset: 2.66043173e-05 + syst_JES_Pileup_NPVOffset: 6.98229575e-05 + syst_JES_Pileup_Pt_term: 2.01575395e-04 + syst_JES_Pileup_Rho_topology: 1.66448753e-04 + syst_JES_PunchThrough_MC15: 4.43526978e-06 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.00040332076564441856 - syst_JES_Zjet_MuScale: 1.9903335668927457e-05 - syst_JES_Zjet_MuSmearID: 5.720730198147785e-06 - syst_JES_Zjet_MuSmearMS: 6.778530574541949e-05 - syst_JES_Zjet_OOC: 0.00016397087393802597 - syst_JES_Zjet_Stat1: 2.557712014672488e-07 - syst_JES_Zjet_Stat10: 7.694569822283764e-06 - syst_JES_Zjet_Stat11: 1.6705640866186487e-05 - syst_JES_Zjet_Stat12: 0.00010044577094133927 - syst_JES_Zjet_Stat13: 4.624313333620463e-05 - syst_JES_Zjet_Stat2: 3.0709260818196197e-14 - syst_JES_Zjet_Stat3: 3.0501403914410233e-06 - syst_JES_Zjet_Stat4: 3.0501403914410233e-06 - syst_JES_Zjet_Stat5: 3.108088127370265e-06 - syst_JES_Zjet_Stat6: 2.861781948367136e-06 - syst_JES_Zjet_Stat7: 3.0736572141343283e-06 - syst_JES_Zjet_Stat8: 2.8163510221561516e-06 - syst_JES_Zjet_Stat9: 4.680652378408377e-06 - syst_JES_Zjet_Veto: 2.0999168715689673e-05 - syst_JES_Zjet_dPhi: 9.792538690247795e-06 + syst_JES_Zjet_MC: 4.03320766e-04 + syst_JES_Zjet_MuScale: 1.99033357e-05 + syst_JES_Zjet_MuSmearID: 5.72073020e-06 + syst_JES_Zjet_MuSmearMS: 6.77853057e-05 + syst_JES_Zjet_OOC: 1.63970874e-04 + syst_JES_Zjet_Stat1: 2.55771201e-07 + syst_JES_Zjet_Stat10: 7.69456982e-06 + syst_JES_Zjet_Stat11: 1.67056409e-05 + syst_JES_Zjet_Stat12: 1.00445771e-04 + syst_JES_Zjet_Stat13: 4.62431333e-05 + syst_JES_Zjet_Stat2: 3.07092608e-14 + syst_JES_Zjet_Stat3: 3.05014039e-06 + syst_JES_Zjet_Stat4: 3.05014039e-06 + syst_JES_Zjet_Stat5: 3.10808813e-06 + syst_JES_Zjet_Stat6: 2.86178195e-06 + syst_JES_Zjet_Stat7: 3.07365721e-06 + syst_JES_Zjet_Stat8: 2.81635102e-06 + syst_JES_Zjet_Stat9: 4.68065238e-06 + syst_JES_Zjet_Veto: 2.09991687e-05 + syst_JES_Zjet_dPhi: 9.79253869e-06 syst_PRW: 0.0 - syst_Unfolding_bias: 4.022e-16 - syst_cleaning: 0.00015727021332725405 - syst_lumi: 0.0003652 + syst_Unfolding_bias: 4.02200000e-16 + syst_cleaning: 1.57270213e-04 + syst_lumi: 3.65200000e-04 - stat: 0.000631 - syst_JER_CROSS_CALIB_FORWARD: 3.098e-13 + syst_JER_CROSS_CALIB_FORWARD: 3.09800000e-13 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 9.280334099589302e-05 - syst_JER_NP1: 2.7805040909878196e-05 - syst_JER_NP2: 3.376373277275485e-05 - syst_JER_NP3: 2.0891431422475578e-05 + syst_JER_NP0: 9.28033410e-05 + syst_JER_NP1: 2.78050409e-05 + syst_JER_NP2: 3.37637328e-05 + syst_JER_NP3: 2.08914314e-05 syst_JER_NP4: 0.0 syst_JER_NP5: 0.0 syst_JER_NP6: 0.0 syst_JER_NP7: 0.0 - syst_JER_NP8: 3.6427647614826847e-16 - syst_JES_EtaIntercalibration_Modelling: 0.0004095079089590334 - syst_JES_EtaIntercalibration_NonClosure: 5.427821662508819e-05 - syst_JES_EtaIntercalibration_Stat0: 0.00013106933537254244 + syst_JER_NP8: 3.64276476e-16 + syst_JES_EtaIntercalibration_Modelling: 4.09507909e-04 + syst_JES_EtaIntercalibration_NonClosure: 5.42782166e-05 + syst_JES_EtaIntercalibration_Stat0: 1.31069335e-04 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 syst_JES_EtaIntercalibration_Stat100: 0.0 @@ -42386,97 +42386,97 @@ bins: syst_JES_EtaIntercalibration_Stat98: 0.0 syst_JES_EtaIntercalibration_Stat99: 0.0 syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0 - syst_JES_Flavour_Comp: 9.844167854623366e-05 - syst_JES_Flavour_Response: 9.073637418367563e-05 - syst_JES_Gjet_Generator: 0.000228928083685685 - syst_JES_Gjet_OOC: 0.00017003101922884542 - syst_JES_Gjet_Purity: 5.05247147443704e-05 - syst_JES_Gjet_Stat1: 1.0782882309710943e-06 - syst_JES_Gjet_Stat10: 6.190920771581559e-06 - syst_JES_Gjet_Stat11: 9.683686526834705e-06 - syst_JES_Gjet_Stat12: 2.7662170467987505e-05 - syst_JES_Gjet_Stat13: 3.088300624939224e-05 - syst_JES_Gjet_Stat14: 3.887801375109073e-06 - syst_JES_Gjet_Stat15: 2.120394304722591e-06 - syst_JES_Gjet_Stat2: 1.0780243491976145e-06 - syst_JES_Gjet_Stat3: 1.0793552485792372e-06 - syst_JES_Gjet_Stat4: 1.0811133046017886e-06 - syst_JES_Gjet_Stat5: 1.0791880985759619e-06 - syst_JES_Gjet_Stat6: 1.0718819203624995e-06 - syst_JES_Gjet_Stat7: 1.2804774226826492e-06 - syst_JES_Gjet_Stat8: 2.859855259886416e-06 - syst_JES_Gjet_Stat9: 5.47492610635066e-06 - syst_JES_Gjet_Veto: 0.00011582197751290556 - syst_JES_Gjet_dPhi: 9.747466375935851e-06 - syst_JES_LArESZee: 0.0003341723058543302 - syst_JES_LArEsmear: 1.715501871173564e-05 - syst_JES_LAr_JVT: 2.6086703509642608e-05 - syst_JES_MJB_Alpha: 2.9402367026312697e-06 - syst_JES_MJB_Asym: 9.025578818003863e-06 - syst_JES_MJB_Beta: 2.94209415340502e-06 - syst_JES_MJB_Fragmentation: 1.3423393758680665e-05 - syst_JES_MJB_Stat1: 1.0978794970305255e-06 - syst_JES_MJB_Stat10: 1.396032950900515e-07 + syst_JES_Flavour_Comp: 9.84416785e-05 + syst_JES_Flavour_Response: 9.07363742e-05 + syst_JES_Gjet_Generator: 2.28928084e-04 + syst_JES_Gjet_OOC: 1.70031019e-04 + syst_JES_Gjet_Purity: 5.05247147e-05 + syst_JES_Gjet_Stat1: 1.07828823e-06 + syst_JES_Gjet_Stat10: 6.19092077e-06 + syst_JES_Gjet_Stat11: 9.68368653e-06 + syst_JES_Gjet_Stat12: 2.76621705e-05 + syst_JES_Gjet_Stat13: 3.08830062e-05 + syst_JES_Gjet_Stat14: 3.88780138e-06 + syst_JES_Gjet_Stat15: 2.12039430e-06 + syst_JES_Gjet_Stat2: 1.07802435e-06 + syst_JES_Gjet_Stat3: 1.07935525e-06 + syst_JES_Gjet_Stat4: 1.08111330e-06 + syst_JES_Gjet_Stat5: 1.07918810e-06 + syst_JES_Gjet_Stat6: 1.07188192e-06 + syst_JES_Gjet_Stat7: 1.28047742e-06 + syst_JES_Gjet_Stat8: 2.85985526e-06 + syst_JES_Gjet_Stat9: 5.47492611e-06 + syst_JES_Gjet_Veto: 1.15821978e-04 + syst_JES_Gjet_dPhi: 9.74746638e-06 + syst_JES_LArESZee: 3.34172306e-04 + syst_JES_LArEsmear: 1.71550187e-05 + syst_JES_LAr_JVT: 2.60867035e-05 + syst_JES_MJB_Alpha: 2.94023670e-06 + syst_JES_MJB_Asym: 9.02557882e-06 + syst_JES_MJB_Beta: 2.94209415e-06 + syst_JES_MJB_Fragmentation: 1.34233938e-05 + syst_JES_MJB_Stat1: 1.09787950e-06 + syst_JES_MJB_Stat10: 1.39603295e-07 syst_JES_MJB_Stat11: 0.0 syst_JES_MJB_Stat12: 0.0 syst_JES_MJB_Stat13: 0.0 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 1.0294042986115804e-06 - syst_JES_MJB_Stat3: 4.788779747493091e-06 - syst_JES_MJB_Stat4: 2.9420717713033445e-06 - syst_JES_MJB_Stat5: 1.133271229670991e-06 - syst_JES_MJB_Stat6: 1.133271229670991e-06 - syst_JES_MJB_Stat7: 1.133271229670991e-06 - syst_JES_MJB_Stat8: 1.396032950900515e-07 - syst_JES_MJB_Stat9: 1.396032950900515e-07 - syst_JES_MJB_Threshold: 5.145047576650419e-06 - syst_JES_Pileup_MuOffset: 1.1501684565167486e-05 - syst_JES_Pileup_NPVOffset: 3.8455420944257e-05 - syst_JES_Pileup_Pt_term: 9.362428143916514e-05 - syst_JES_Pileup_Rho_topology: 7.434014931381292e-05 - syst_JES_PunchThrough_MC15: 2.183086869549629e-06 + syst_JES_MJB_Stat2: 1.02940430e-06 + syst_JES_MJB_Stat3: 4.78877975e-06 + syst_JES_MJB_Stat4: 2.94207177e-06 + syst_JES_MJB_Stat5: 1.13327123e-06 + syst_JES_MJB_Stat6: 1.13327123e-06 + syst_JES_MJB_Stat7: 1.13327123e-06 + syst_JES_MJB_Stat8: 1.39603295e-07 + syst_JES_MJB_Stat9: 1.39603295e-07 + syst_JES_MJB_Threshold: 5.14504758e-06 + syst_JES_Pileup_MuOffset: 1.15016846e-05 + syst_JES_Pileup_NPVOffset: 3.84554209e-05 + syst_JES_Pileup_Pt_term: 9.36242814e-05 + syst_JES_Pileup_Rho_topology: 7.43401493e-05 + syst_JES_PunchThrough_MC15: 2.18308687e-06 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.0001709454307666631 - syst_JES_Zjet_MuScale: 8.258815756965402e-06 - syst_JES_Zjet_MuSmearID: 2.8247720261996363e-06 - syst_JES_Zjet_MuSmearMS: 4.911589839349373e-05 - syst_JES_Zjet_OOC: 7.161768967929641e-05 - syst_JES_Zjet_Stat1: 6.005305784679079e-07 - syst_JES_Zjet_Stat10: 4.693847429082032e-06 - syst_JES_Zjet_Stat11: 7.91790265837488e-06 - syst_JES_Zjet_Stat12: 5.60447874471837e-05 - syst_JES_Zjet_Stat13: 1.92818742605588e-05 - syst_JES_Zjet_Stat2: 2.1633314586535278e-15 - syst_JES_Zjet_Stat3: 1.0857357665081314e-06 - syst_JES_Zjet_Stat4: 1.0857357665081314e-06 - syst_JES_Zjet_Stat5: 1.085302819343523e-06 - syst_JES_Zjet_Stat6: 1.0602101669362542e-06 - syst_JES_Zjet_Stat7: 1.0815110610044634e-06 - syst_JES_Zjet_Stat8: 1.0539152432714881e-06 - syst_JES_Zjet_Stat9: 1.836503326297015e-06 - syst_JES_Zjet_Veto: 1.563588574401847e-05 - syst_JES_Zjet_dPhi: 1.9114211336071387e-06 + syst_JES_Zjet_MC: 1.70945431e-04 + syst_JES_Zjet_MuScale: 8.25881576e-06 + syst_JES_Zjet_MuSmearID: 2.82477203e-06 + syst_JES_Zjet_MuSmearMS: 4.91158984e-05 + syst_JES_Zjet_OOC: 7.16176897e-05 + syst_JES_Zjet_Stat1: 6.00530578e-07 + syst_JES_Zjet_Stat10: 4.69384743e-06 + syst_JES_Zjet_Stat11: 7.91790266e-06 + syst_JES_Zjet_Stat12: 5.60447874e-05 + syst_JES_Zjet_Stat13: 1.92818743e-05 + syst_JES_Zjet_Stat2: 2.16333146e-15 + syst_JES_Zjet_Stat3: 1.08573577e-06 + syst_JES_Zjet_Stat4: 1.08573577e-06 + syst_JES_Zjet_Stat5: 1.08530282e-06 + syst_JES_Zjet_Stat6: 1.06021017e-06 + syst_JES_Zjet_Stat7: 1.08151106e-06 + syst_JES_Zjet_Stat8: 1.05391524e-06 + syst_JES_Zjet_Stat9: 1.83650333e-06 + syst_JES_Zjet_Veto: 1.56358857e-05 + syst_JES_Zjet_dPhi: 1.91142113e-06 syst_PRW: 0.0 - syst_Unfolding_bias: 5.095e-17 - syst_cleaning: 6.990557059347988e-05 - syst_lumi: 0.0001578 -- stat: 0.00031116 - syst_JER_CROSS_CALIB_FORWARD: 2.559e-14 + syst_Unfolding_bias: 5.09500000e-17 + syst_cleaning: 6.99055706e-05 + syst_lumi: 1.57800000e-04 +- stat: 3.11160000e-04 + syst_JER_CROSS_CALIB_FORWARD: 2.55900000e-14 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 4.247933232761551e-05 - syst_JER_NP1: 2.176016773832408e-05 - syst_JER_NP2: 2.04486021038114e-05 - syst_JER_NP3: 5.245288388639846e-06 + syst_JER_NP0: 4.24793323e-05 + syst_JER_NP1: 2.17601677e-05 + syst_JER_NP2: 2.04486021e-05 + syst_JER_NP3: 5.24528839e-06 syst_JER_NP4: 0.0 syst_JER_NP5: 0.0 syst_JER_NP6: 0.0 syst_JER_NP7: 0.0 - syst_JER_NP8: 3.899449128723184e-17 - syst_JES_EtaIntercalibration_Modelling: 0.00020184040105984726 - syst_JES_EtaIntercalibration_NonClosure: 2.8262975781046128e-05 - syst_JES_EtaIntercalibration_Stat0: 6.041894797991769e-05 + syst_JER_NP8: 3.89944913e-17 + syst_JES_EtaIntercalibration_Modelling: 2.01840401e-04 + syst_JES_EtaIntercalibration_NonClosure: 2.82629758e-05 + syst_JES_EtaIntercalibration_Stat0: 6.04189480e-05 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 syst_JES_EtaIntercalibration_Stat100: 0.0 @@ -42723,97 +42723,97 @@ bins: syst_JES_EtaIntercalibration_Stat98: 0.0 syst_JES_EtaIntercalibration_Stat99: 0.0 syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0 - syst_JES_Flavour_Comp: 5.248181089672878e-05 - syst_JES_Flavour_Response: 2.987191448501418e-05 - syst_JES_Gjet_Generator: 0.00010572254005177893 - syst_JES_Gjet_OOC: 8.025666514377481e-05 - syst_JES_Gjet_Purity: 2.188032163840376e-05 - syst_JES_Gjet_Stat1: 2.0403558518741463e-07 - syst_JES_Gjet_Stat10: 3.760376931572153e-06 - syst_JES_Gjet_Stat11: 4.200728302032876e-06 - syst_JES_Gjet_Stat12: 1.0802603424637971e-05 - syst_JES_Gjet_Stat13: 8.66364195936097e-06 - syst_JES_Gjet_Stat14: 3.03621554406139e-06 - syst_JES_Gjet_Stat15: 7.327192941877537e-07 - syst_JES_Gjet_Stat2: 2.0403529648698005e-07 - syst_JES_Gjet_Stat3: 2.0351812580659315e-07 - syst_JES_Gjet_Stat4: 2.0373298898673724e-07 - syst_JES_Gjet_Stat5: 2.0349877267690705e-07 - syst_JES_Gjet_Stat6: 2.0311917586234935e-07 - syst_JES_Gjet_Stat7: 3.2297833905697144e-07 - syst_JES_Gjet_Stat8: 3.6207986784686055e-06 - syst_JES_Gjet_Stat9: 4.118833292025788e-06 - syst_JES_Gjet_Veto: 6.0350041425006495e-05 - syst_JES_Gjet_dPhi: 5.579906343972092e-06 - syst_JES_LArESZee: 0.0001609527570437984 - syst_JES_LArEsmear: 1.1838529207950623e-05 - syst_JES_LAr_JVT: 7.566034678086006e-06 - syst_JES_MJB_Alpha: 3.636537447559148e-06 - syst_JES_MJB_Asym: 4.440603647028183e-06 - syst_JES_MJB_Beta: 3.63691147919495e-06 - syst_JES_MJB_Fragmentation: 6.038795140590987e-06 - syst_JES_MJB_Stat1: 2.1035603407556436e-07 - syst_JES_MJB_Stat10: 8.434221407456648e-08 + syst_JES_Flavour_Comp: 5.24818109e-05 + syst_JES_Flavour_Response: 2.98719145e-05 + syst_JES_Gjet_Generator: 1.05722540e-04 + syst_JES_Gjet_OOC: 8.02566651e-05 + syst_JES_Gjet_Purity: 2.18803216e-05 + syst_JES_Gjet_Stat1: 2.04035585e-07 + syst_JES_Gjet_Stat10: 3.76037693e-06 + syst_JES_Gjet_Stat11: 4.20072830e-06 + syst_JES_Gjet_Stat12: 1.08026034e-05 + syst_JES_Gjet_Stat13: 8.66364196e-06 + syst_JES_Gjet_Stat14: 3.03621554e-06 + syst_JES_Gjet_Stat15: 7.32719294e-07 + syst_JES_Gjet_Stat2: 2.04035296e-07 + syst_JES_Gjet_Stat3: 2.03518126e-07 + syst_JES_Gjet_Stat4: 2.03732989e-07 + syst_JES_Gjet_Stat5: 2.03498773e-07 + syst_JES_Gjet_Stat6: 2.03119176e-07 + syst_JES_Gjet_Stat7: 3.22978339e-07 + syst_JES_Gjet_Stat8: 3.62079868e-06 + syst_JES_Gjet_Stat9: 4.11883329e-06 + syst_JES_Gjet_Veto: 6.03500414e-05 + syst_JES_Gjet_dPhi: 5.57990634e-06 + syst_JES_LArESZee: 1.60952757e-04 + syst_JES_LArEsmear: 1.18385292e-05 + syst_JES_LAr_JVT: 7.56603468e-06 + syst_JES_MJB_Alpha: 3.63653745e-06 + syst_JES_MJB_Asym: 4.44060365e-06 + syst_JES_MJB_Beta: 3.63691148e-06 + syst_JES_MJB_Fragmentation: 6.03879514e-06 + syst_JES_MJB_Stat1: 2.10356034e-07 + syst_JES_MJB_Stat10: 8.43422141e-08 syst_JES_MJB_Stat11: 0.0 syst_JES_MJB_Stat12: 0.0 syst_JES_MJB_Stat13: 0.0 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 6.169676875655645e-07 - syst_JES_MJB_Stat3: 3.838804202808474e-06 - syst_JES_MJB_Stat4: 3.6369850522101405e-06 - syst_JES_MJB_Stat5: 2.4547278479497475e-07 - syst_JES_MJB_Stat6: 2.4547278479497475e-07 - syst_JES_MJB_Stat7: 2.4547278479497475e-07 - syst_JES_MJB_Stat8: 8.434221407456648e-08 - syst_JES_MJB_Stat9: 8.434221407456648e-08 - syst_JES_MJB_Threshold: 3.5662919505640514e-06 - syst_JES_Pileup_MuOffset: 5.126870480326188e-06 - syst_JES_Pileup_NPVOffset: 2.212342303419613e-05 - syst_JES_Pileup_Pt_term: 3.9796301335676914e-05 - syst_JES_Pileup_Rho_topology: 3.2298581559412174e-05 - syst_JES_PunchThrough_MC15: 1.6686520091079506e-06 + syst_JES_MJB_Stat2: 6.16967688e-07 + syst_JES_MJB_Stat3: 3.83880420e-06 + syst_JES_MJB_Stat4: 3.63698505e-06 + syst_JES_MJB_Stat5: 2.45472785e-07 + syst_JES_MJB_Stat6: 2.45472785e-07 + syst_JES_MJB_Stat7: 2.45472785e-07 + syst_JES_MJB_Stat8: 8.43422141e-08 + syst_JES_MJB_Stat9: 8.43422141e-08 + syst_JES_MJB_Threshold: 3.56629195e-06 + syst_JES_Pileup_MuOffset: 5.12687048e-06 + syst_JES_Pileup_NPVOffset: 2.21234230e-05 + syst_JES_Pileup_Pt_term: 3.97963013e-05 + syst_JES_Pileup_Rho_topology: 3.22985816e-05 + syst_JES_PunchThrough_MC15: 1.66865201e-06 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 6.959270723287032e-05 - syst_JES_Zjet_MuScale: 4.117839186697314e-06 - syst_JES_Zjet_MuSmearID: 3.6140763176778654e-06 - syst_JES_Zjet_MuSmearMS: 2.6433027579148023e-05 - syst_JES_Zjet_OOC: 3.287255126621601e-05 - syst_JES_Zjet_Stat1: 4.248891194794237e-07 - syst_JES_Zjet_Stat10: 3.4041458862881906e-06 - syst_JES_Zjet_Stat11: 4.03022223549769e-06 - syst_JES_Zjet_Stat12: 2.527266903197998e-05 - syst_JES_Zjet_Stat13: 8.413181086842242e-06 - syst_JES_Zjet_Stat2: 1.680089283341811e-16 - syst_JES_Zjet_Stat3: 2.0411855072971688e-07 - syst_JES_Zjet_Stat4: 2.0411855072971688e-07 - syst_JES_Zjet_Stat5: 2.0316596528946476e-07 - syst_JES_Zjet_Stat6: 2.023880596545903e-07 - syst_JES_Zjet_Stat7: 2.0264785550493744e-07 - syst_JES_Zjet_Stat8: 2.0146994544782606e-07 - syst_JES_Zjet_Stat9: 8.222553070670934e-07 - syst_JES_Zjet_Veto: 9.801555529991146e-06 - syst_JES_Zjet_dPhi: 2.786938643027506e-07 + syst_JES_Zjet_MC: 6.95927072e-05 + syst_JES_Zjet_MuScale: 4.11783919e-06 + syst_JES_Zjet_MuSmearID: 3.61407632e-06 + syst_JES_Zjet_MuSmearMS: 2.64330276e-05 + syst_JES_Zjet_OOC: 3.28725513e-05 + syst_JES_Zjet_Stat1: 4.24889119e-07 + syst_JES_Zjet_Stat10: 3.40414589e-06 + syst_JES_Zjet_Stat11: 4.03022224e-06 + syst_JES_Zjet_Stat12: 2.52726690e-05 + syst_JES_Zjet_Stat13: 8.41318109e-06 + syst_JES_Zjet_Stat2: 1.68008928e-16 + syst_JES_Zjet_Stat3: 2.04118551e-07 + syst_JES_Zjet_Stat4: 2.04118551e-07 + syst_JES_Zjet_Stat5: 2.03165965e-07 + syst_JES_Zjet_Stat6: 2.02388060e-07 + syst_JES_Zjet_Stat7: 2.02647856e-07 + syst_JES_Zjet_Stat8: 2.01469945e-07 + syst_JES_Zjet_Stat9: 8.22255307e-07 + syst_JES_Zjet_Veto: 9.80155553e-06 + syst_JES_Zjet_dPhi: 2.78693864e-07 syst_PRW: 0.0 - syst_Unfolding_bias: 7.271e-18 - syst_cleaning: 3.185241435119165e-05 - syst_lumi: 7.033e-05 -- stat: 0.00016613 - syst_JER_CROSS_CALIB_FORWARD: 2.279e-15 + syst_Unfolding_bias: 7.27100000e-18 + syst_cleaning: 3.18524144e-05 + syst_lumi: 7.03300000e-05 +- stat: 1.66130000e-04 + syst_JER_CROSS_CALIB_FORWARD: 2.27900000e-15 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 1.741399485327821e-05 - syst_JER_NP1: 1.4858971927761354e-05 - syst_JER_NP2: 9.93237109002679e-06 - syst_JER_NP3: 9.518324004785453e-07 + syst_JER_NP0: 1.74139949e-05 + syst_JER_NP1: 1.48589719e-05 + syst_JER_NP2: 9.93237109e-06 + syst_JER_NP3: 9.51832400e-07 syst_JER_NP4: 0.0 syst_JER_NP5: 0.0 syst_JER_NP6: 0.0 syst_JER_NP7: 0.0 - syst_JER_NP8: 4.550984839295776e-18 - syst_JES_EtaIntercalibration_Modelling: 0.00010325455571063197 - syst_JES_EtaIntercalibration_NonClosure: 2.029090128604444e-05 - syst_JES_EtaIntercalibration_Stat0: 3.0943357930257026e-05 + syst_JER_NP8: 4.55098484e-18 + syst_JES_EtaIntercalibration_Modelling: 1.03254556e-04 + syst_JES_EtaIntercalibration_NonClosure: 2.02909013e-05 + syst_JES_EtaIntercalibration_Stat0: 3.09433579e-05 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 syst_JES_EtaIntercalibration_Stat100: 0.0 @@ -43060,97 +43060,97 @@ bins: syst_JES_EtaIntercalibration_Stat98: 0.0 syst_JES_EtaIntercalibration_Stat99: 0.0 syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0 - syst_JES_Flavour_Comp: 3.0492400282693393e-05 - syst_JES_Flavour_Response: 8.773369976810507e-06 - syst_JES_Gjet_Generator: 5.231331761607172e-05 - syst_JES_Gjet_OOC: 4.080504962624111e-05 - syst_JES_Gjet_Purity: 1.1131915861611603e-05 - syst_JES_Gjet_Stat1: 2.0048488102237216e-08 - syst_JES_Gjet_Stat10: 1.0209174109593784e-06 - syst_JES_Gjet_Stat11: 1.0993032520646883e-06 - syst_JES_Gjet_Stat12: 2.957329327281627e-06 - syst_JES_Gjet_Stat13: 4.053835806985774e-06 - syst_JES_Gjet_Stat14: 4.250711188436589e-06 - syst_JES_Gjet_Stat15: 8.042871875145096e-07 - syst_JES_Gjet_Stat2: 2.0048466810795738e-08 - syst_JES_Gjet_Stat3: 1.9927402047212762e-08 - syst_JES_Gjet_Stat4: 1.9948721294479e-08 - syst_JES_Gjet_Stat5: 1.991597044170331e-08 - syst_JES_Gjet_Stat6: 2.1076155285772594e-08 - syst_JES_Gjet_Stat7: 8.898813670933896e-08 - syst_JES_Gjet_Stat8: 1.4480521312007382e-06 - syst_JES_Gjet_Stat9: 1.5219569901938753e-06 - syst_JES_Gjet_Veto: 3.397913882075295e-05 - syst_JES_Gjet_dPhi: 5.854745271305576e-06 - syst_JES_LArESZee: 7.938490662588198e-05 - syst_JES_LArEsmear: 4.372491311312122e-06 - syst_JES_LAr_JVT: 3.4497725896064514e-06 - syst_JES_MJB_Alpha: 1.4506499645589904e-06 - syst_JES_MJB_Asym: 2.67578044689769e-06 - syst_JES_MJB_Beta: 1.4510055375755807e-06 - syst_JES_MJB_Fragmentation: 2.7080614376341576e-06 - syst_JES_MJB_Stat1: 2.19365920477065e-08 - syst_JES_MJB_Stat10: 3.918764952124585e-08 + syst_JES_Flavour_Comp: 3.04924003e-05 + syst_JES_Flavour_Response: 8.77336998e-06 + syst_JES_Gjet_Generator: 5.23133176e-05 + syst_JES_Gjet_OOC: 4.08050496e-05 + syst_JES_Gjet_Purity: 1.11319159e-05 + syst_JES_Gjet_Stat1: 2.00484881e-08 + syst_JES_Gjet_Stat10: 1.02091741e-06 + syst_JES_Gjet_Stat11: 1.09930325e-06 + syst_JES_Gjet_Stat12: 2.95732933e-06 + syst_JES_Gjet_Stat13: 4.05383581e-06 + syst_JES_Gjet_Stat14: 4.25071119e-06 + syst_JES_Gjet_Stat15: 8.04287188e-07 + syst_JES_Gjet_Stat2: 2.00484668e-08 + syst_JES_Gjet_Stat3: 1.99274020e-08 + syst_JES_Gjet_Stat4: 1.99487213e-08 + syst_JES_Gjet_Stat5: 1.99159704e-08 + syst_JES_Gjet_Stat6: 2.10761553e-08 + syst_JES_Gjet_Stat7: 8.89881367e-08 + syst_JES_Gjet_Stat8: 1.44805213e-06 + syst_JES_Gjet_Stat9: 1.52195699e-06 + syst_JES_Gjet_Veto: 3.39791388e-05 + syst_JES_Gjet_dPhi: 5.85474527e-06 + syst_JES_LArESZee: 7.93849066e-05 + syst_JES_LArEsmear: 4.37249131e-06 + syst_JES_LAr_JVT: 3.44977259e-06 + syst_JES_MJB_Alpha: 1.45064996e-06 + syst_JES_MJB_Asym: 2.67578045e-06 + syst_JES_MJB_Beta: 1.45100554e-06 + syst_JES_MJB_Fragmentation: 2.70806144e-06 + syst_JES_MJB_Stat1: 2.19365920e-08 + syst_JES_MJB_Stat10: 3.91876495e-08 syst_JES_MJB_Stat11: 0.0 syst_JES_MJB_Stat12: 0.0 syst_JES_MJB_Stat13: 0.0 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 3.3251638707738904e-07 - syst_JES_MJB_Stat3: 1.4065950415098157e-06 - syst_JES_MJB_Stat4: 1.4510166614739475e-06 - syst_JES_MJB_Stat5: 4.961810229140167e-08 - syst_JES_MJB_Stat6: 4.961810229140167e-08 - syst_JES_MJB_Stat7: 4.961810229140167e-08 - syst_JES_MJB_Stat8: 3.918764952124585e-08 - syst_JES_MJB_Stat9: 3.918764952124585e-08 - syst_JES_MJB_Threshold: 2.7011331861660525e-06 - syst_JES_Pileup_MuOffset: 2.2941013019371193e-06 - syst_JES_Pileup_NPVOffset: 1.681421383086346e-05 - syst_JES_Pileup_Pt_term: 1.5840237119437323e-05 - syst_JES_Pileup_Rho_topology: 1.5119308019879748e-05 - syst_JES_PunchThrough_MC15: 1.805853003430789e-06 + syst_JES_MJB_Stat2: 3.32516387e-07 + syst_JES_MJB_Stat3: 1.40659504e-06 + syst_JES_MJB_Stat4: 1.45101666e-06 + syst_JES_MJB_Stat5: 4.96181023e-08 + syst_JES_MJB_Stat6: 4.96181023e-08 + syst_JES_MJB_Stat7: 4.96181023e-08 + syst_JES_MJB_Stat8: 3.91876495e-08 + syst_JES_MJB_Stat9: 3.91876495e-08 + syst_JES_MJB_Threshold: 2.70113319e-06 + syst_JES_Pileup_MuOffset: 2.29410130e-06 + syst_JES_Pileup_NPVOffset: 1.68142138e-05 + syst_JES_Pileup_Pt_term: 1.58402371e-05 + syst_JES_Pileup_Rho_topology: 1.51193080e-05 + syst_JES_PunchThrough_MC15: 1.80585300e-06 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 3.449332109264053e-05 - syst_JES_Zjet_MuScale: 1.0786158572448302e-06 - syst_JES_Zjet_MuSmearID: 1.4471889616425352e-06 - syst_JES_Zjet_MuSmearMS: 8.505086859050882e-06 - syst_JES_Zjet_OOC: 1.9375092257844867e-05 - syst_JES_Zjet_Stat1: 1.5712380203898932e-07 - syst_JES_Zjet_Stat10: 9.224309051088868e-07 - syst_JES_Zjet_Stat11: 1.0265330925011623e-06 - syst_JES_Zjet_Stat12: 7.367342144050322e-06 - syst_JES_Zjet_Stat13: 3.736027167995436e-06 - syst_JES_Zjet_Stat2: 1.394300900092946e-17 - syst_JES_Zjet_Stat3: 1.997054279902026e-08 - syst_JES_Zjet_Stat4: 1.997054279902026e-08 - syst_JES_Zjet_Stat5: 1.9762704260487733e-08 - syst_JES_Zjet_Stat6: 2.1079165140014443e-08 - syst_JES_Zjet_Stat7: 1.96935726316989e-08 - syst_JES_Zjet_Stat8: 2.0954590873302678e-08 - syst_JES_Zjet_Stat9: 3.3724363226012145e-07 - syst_JES_Zjet_Veto: 2.9103414218739014e-06 - syst_JES_Zjet_dPhi: 3.1541754469274537e-08 + syst_JES_Zjet_MC: 3.44933211e-05 + syst_JES_Zjet_MuScale: 1.07861586e-06 + syst_JES_Zjet_MuSmearID: 1.44718896e-06 + syst_JES_Zjet_MuSmearMS: 8.50508686e-06 + syst_JES_Zjet_OOC: 1.93750923e-05 + syst_JES_Zjet_Stat1: 1.57123802e-07 + syst_JES_Zjet_Stat10: 9.22430905e-07 + syst_JES_Zjet_Stat11: 1.02653309e-06 + syst_JES_Zjet_Stat12: 7.36734214e-06 + syst_JES_Zjet_Stat13: 3.73602717e-06 + syst_JES_Zjet_Stat2: 1.39430090e-17 + syst_JES_Zjet_Stat3: 1.99705428e-08 + syst_JES_Zjet_Stat4: 1.99705428e-08 + syst_JES_Zjet_Stat5: 1.97627043e-08 + syst_JES_Zjet_Stat6: 2.10791651e-08 + syst_JES_Zjet_Stat7: 1.96935726e-08 + syst_JES_Zjet_Stat8: 2.09545909e-08 + syst_JES_Zjet_Stat9: 3.37243632e-07 + syst_JES_Zjet_Veto: 2.91034142e-06 + syst_JES_Zjet_dPhi: 3.15417545e-08 syst_PRW: 0.0 - syst_Unfolding_bias: 1.1234e-18 - syst_cleaning: 1.431539992455677e-05 - syst_lumi: 3.147e-05 -- stat: 5.002e-05 + syst_Unfolding_bias: 1.12340000e-18 + syst_cleaning: 1.43153999e-05 + syst_lumi: 3.14700000e-05 +- stat: 5.00200000e-05 syst_JER_CROSS_CALIB_FORWARD: 1.83e-16 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 5.817171907379048e-06 - syst_JER_NP1: 7.561988941409529e-06 - syst_JER_NP2: 3.736620733697762e-06 - syst_JER_NP3: 1.0840337421726087e-07 + syst_JER_NP0: 5.81717191e-06 + syst_JER_NP1: 7.56198894e-06 + syst_JER_NP2: 3.73662073e-06 + syst_JER_NP3: 1.08403374e-07 syst_JER_NP4: 0.0 syst_JER_NP5: 0.0 syst_JER_NP6: 0.0 syst_JER_NP7: 0.0 - syst_JER_NP8: 4.808502960381744e-19 - syst_JES_EtaIntercalibration_Modelling: 4.446217943376145e-05 - syst_JES_EtaIntercalibration_NonClosure: 1.1816486819270776e-05 - syst_JES_EtaIntercalibration_Stat0: 1.370547131622988e-05 + syst_JER_NP8: 4.80850296e-19 + syst_JES_EtaIntercalibration_Modelling: 4.44621794e-05 + syst_JES_EtaIntercalibration_NonClosure: 1.18164868e-05 + syst_JES_EtaIntercalibration_Stat0: 1.37054713e-05 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 syst_JES_EtaIntercalibration_Stat100: 0.0 @@ -43397,97 +43397,97 @@ bins: syst_JES_EtaIntercalibration_Stat98: 0.0 syst_JES_EtaIntercalibration_Stat99: 0.0 syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0 - syst_JES_Flavour_Comp: 1.4211669958171702e-05 - syst_JES_Flavour_Response: 2.162501502889651e-06 - syst_JES_Gjet_Generator: 2.209971945523291e-05 - syst_JES_Gjet_OOC: 1.7605410389990913e-05 - syst_JES_Gjet_Purity: 4.713272751496565e-06 - syst_JES_Gjet_Stat1: 3.259719654269138e-11 - syst_JES_Gjet_Stat10: 8.309850224282023e-08 - syst_JES_Gjet_Stat11: 1.6792096913429245e-07 - syst_JES_Gjet_Stat12: 1.355795061947048e-06 - syst_JES_Gjet_Stat13: 3.653648317777725e-06 - syst_JES_Gjet_Stat14: 5.13300701343764e-06 - syst_JES_Gjet_Stat15: 1.4540693518536176e-06 - syst_JES_Gjet_Stat2: 3.243127145084618e-11 - syst_JES_Gjet_Stat3: 1.6585109100596082e-11 - syst_JES_Gjet_Stat4: 1.8627443967168445e-11 - syst_JES_Gjet_Stat5: 1.3365464386526194e-11 - syst_JES_Gjet_Stat6: 6.891369108696761e-10 - syst_JES_Gjet_Stat7: 2.2684760251929046e-08 - syst_JES_Gjet_Stat8: 2.4710929998298326e-07 - syst_JES_Gjet_Stat9: 2.577342986003221e-07 - syst_JES_Gjet_Veto: 1.5680012755096854e-05 - syst_JES_Gjet_dPhi: 4.608986696879478e-06 - syst_JES_LArESZee: 3.377635119428978e-05 - syst_JES_LArEsmear: 8.10296526964512e-07 - syst_JES_LAr_JVT: 1.187515491130537e-06 - syst_JES_MJB_Alpha: 2.473673302096904e-07 - syst_JES_MJB_Asym: 1.0615427487859356e-06 - syst_JES_MJB_Beta: 2.4759222920953556e-07 - syst_JES_MJB_Fragmentation: 9.956694067309897e-07 - syst_JES_MJB_Stat1: 7.015089192382018e-10 - syst_JES_MJB_Stat10: 1.1434999431569728e-08 + syst_JES_Flavour_Comp: 1.42116700e-05 + syst_JES_Flavour_Response: 2.16250150e-06 + syst_JES_Gjet_Generator: 2.20997195e-05 + syst_JES_Gjet_OOC: 1.76054104e-05 + syst_JES_Gjet_Purity: 4.71327275e-06 + syst_JES_Gjet_Stat1: 3.25971965e-11 + syst_JES_Gjet_Stat10: 8.30985022e-08 + syst_JES_Gjet_Stat11: 1.67920969e-07 + syst_JES_Gjet_Stat12: 1.35579506e-06 + syst_JES_Gjet_Stat13: 3.65364832e-06 + syst_JES_Gjet_Stat14: 5.13300701e-06 + syst_JES_Gjet_Stat15: 1.45406935e-06 + syst_JES_Gjet_Stat2: 3.24312715e-11 + syst_JES_Gjet_Stat3: 1.65851091e-11 + syst_JES_Gjet_Stat4: 1.86274440e-11 + syst_JES_Gjet_Stat5: 1.33654644e-11 + syst_JES_Gjet_Stat6: 6.89136911e-10 + syst_JES_Gjet_Stat7: 2.26847603e-08 + syst_JES_Gjet_Stat8: 2.47109300e-07 + syst_JES_Gjet_Stat9: 2.57734299e-07 + syst_JES_Gjet_Veto: 1.56800128e-05 + syst_JES_Gjet_dPhi: 4.60898670e-06 + syst_JES_LArESZee: 3.37763512e-05 + syst_JES_LArEsmear: 8.10296527e-07 + syst_JES_LAr_JVT: 1.18751549e-06 + syst_JES_MJB_Alpha: 2.47367330e-07 + syst_JES_MJB_Asym: 1.06154275e-06 + syst_JES_MJB_Beta: 2.47592229e-07 + syst_JES_MJB_Fragmentation: 9.95669407e-07 + syst_JES_MJB_Stat1: 7.01508919e-10 + syst_JES_MJB_Stat10: 1.14349994e-08 syst_JES_MJB_Stat11: 0.0 syst_JES_MJB_Stat12: 0.0 syst_JES_MJB_Stat13: 0.0 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 8.116654698943093e-08 - syst_JES_MJB_Stat3: 2.4659911499064126e-07 - syst_JES_MJB_Stat4: 2.475932209710846e-07 - syst_JES_MJB_Stat5: 1.14460725177849e-08 - syst_JES_MJB_Stat6: 1.14460725177849e-08 - syst_JES_MJB_Stat7: 1.14460725177849e-08 - syst_JES_MJB_Stat8: 1.1434999431569728e-08 - syst_JES_MJB_Stat9: 1.1434999431569728e-08 - syst_JES_MJB_Threshold: 1.1361387241645602e-06 - syst_JES_Pileup_MuOffset: 8.432489361960702e-07 - syst_JES_Pileup_NPVOffset: 8.876986355177076e-06 - syst_JES_Pileup_Pt_term: 5.851615247092037e-06 - syst_JES_Pileup_Rho_topology: 6.2043052542166234e-06 - syst_JES_PunchThrough_MC15: 9.018411500924096e-07 + syst_JES_MJB_Stat2: 8.11665470e-08 + syst_JES_MJB_Stat3: 2.46599115e-07 + syst_JES_MJB_Stat4: 2.47593221e-07 + syst_JES_MJB_Stat5: 1.14460725e-08 + syst_JES_MJB_Stat6: 1.14460725e-08 + syst_JES_MJB_Stat7: 1.14460725e-08 + syst_JES_MJB_Stat8: 1.14349994e-08 + syst_JES_MJB_Stat9: 1.14349994e-08 + syst_JES_MJB_Threshold: 1.13613872e-06 + syst_JES_Pileup_MuOffset: 8.43248936e-07 + syst_JES_Pileup_NPVOffset: 8.87698636e-06 + syst_JES_Pileup_Pt_term: 5.85161525e-06 + syst_JES_Pileup_Rho_topology: 6.20430525e-06 + syst_JES_PunchThrough_MC15: 9.01841150e-07 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 1.7290052053131593e-05 - syst_JES_Zjet_MuScale: 1.4461188981200683e-07 - syst_JES_Zjet_MuSmearID: 2.470212650781912e-07 - syst_JES_Zjet_MuSmearMS: 1.6260510654650423e-06 - syst_JES_Zjet_OOC: 1.061786111935921e-05 - syst_JES_Zjet_Stat1: 3.634309470874648e-08 - syst_JES_Zjet_Stat10: 6.615975872839923e-08 - syst_JES_Zjet_Stat11: 8.170691693485931e-08 - syst_JES_Zjet_Stat12: 1.4327785968180849e-06 - syst_JES_Zjet_Stat13: 1.3703870283609665e-06 - syst_JES_Zjet_Stat2: 1.0381046515164066e-18 - syst_JES_Zjet_Stat3: 2.054011606588434e-11 - syst_JES_Zjet_Stat4: 2.054011606588434e-11 - syst_JES_Zjet_Stat5: 1.3808045263541108e-11 - syst_JES_Zjet_Stat6: 6.946627852251407e-10 - syst_JES_Zjet_Stat7: 2.133993034196691e-11 - syst_JES_Zjet_Stat8: 6.807155052007777e-10 - syst_JES_Zjet_Stat9: 9.435658999243242e-08 - syst_JES_Zjet_Veto: 1.7287547079617746e-07 - syst_JES_Zjet_dPhi: 2.4779472855571404e-09 + syst_JES_Zjet_MC: 1.72900521e-05 + syst_JES_Zjet_MuScale: 1.44611890e-07 + syst_JES_Zjet_MuSmearID: 2.47021265e-07 + syst_JES_Zjet_MuSmearMS: 1.62605107e-06 + syst_JES_Zjet_OOC: 1.06178611e-05 + syst_JES_Zjet_Stat1: 3.63430947e-08 + syst_JES_Zjet_Stat10: 6.61597587e-08 + syst_JES_Zjet_Stat11: 8.17069169e-08 + syst_JES_Zjet_Stat12: 1.43277860e-06 + syst_JES_Zjet_Stat13: 1.37038703e-06 + syst_JES_Zjet_Stat2: 1.03810465e-18 + syst_JES_Zjet_Stat3: 2.05401161e-11 + syst_JES_Zjet_Stat4: 2.05401161e-11 + syst_JES_Zjet_Stat5: 1.38080453e-11 + syst_JES_Zjet_Stat6: 6.94662785e-10 + syst_JES_Zjet_Stat7: 2.13399303e-11 + syst_JES_Zjet_Stat8: 6.80715505e-10 + syst_JES_Zjet_Stat9: 9.43565900e-08 + syst_JES_Zjet_Veto: 1.72875471e-07 + syst_JES_Zjet_dPhi: 2.47794729e-09 syst_PRW: 0.0 - syst_Unfolding_bias: 1.554e-19 - syst_cleaning: 5.3165299538326685e-06 - syst_lumi: 1.1567e-05 -- stat: 2.5951e-05 - syst_JER_CROSS_CALIB_FORWARD: 1.632e-17 + syst_Unfolding_bias: 1.55400000e-19 + syst_cleaning: 5.31652995e-06 + syst_lumi: 1.15670000e-05 +- stat: 2.59510000e-05 + syst_JER_CROSS_CALIB_FORWARD: 1.63200000e-17 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 1.866423585363194e-06 - syst_JER_NP1: 3.2490224299010314e-06 - syst_JER_NP2: 1.5047489724203172e-06 - syst_JER_NP3: 1.0137806288446973e-08 + syst_JER_NP0: 1.86642359e-06 + syst_JER_NP1: 3.24902243e-06 + syst_JER_NP2: 1.50474897e-06 + syst_JER_NP3: 1.01378063e-08 syst_JER_NP4: 0.0 syst_JER_NP5: 0.0 syst_JER_NP6: 0.0 syst_JER_NP7: 0.0 - syst_JER_NP8: 5.649771057308428e-20 - syst_JES_EtaIntercalibration_Modelling: 1.8132711518137596e-05 - syst_JES_EtaIntercalibration_NonClosure: 5.709609706451046e-06 - syst_JES_EtaIntercalibration_Stat0: 5.368421066756966e-06 + syst_JER_NP8: 5.64977106e-20 + syst_JES_EtaIntercalibration_Modelling: 1.81327115e-05 + syst_JES_EtaIntercalibration_NonClosure: 5.70960971e-06 + syst_JES_EtaIntercalibration_Stat0: 5.36842107e-06 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 syst_JES_EtaIntercalibration_Stat100: 0.0 @@ -43734,97 +43734,97 @@ bins: syst_JES_EtaIntercalibration_Stat98: 0.0 syst_JES_EtaIntercalibration_Stat99: 0.0 syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0 - syst_JES_Flavour_Comp: 5.6615196502352615e-06 - syst_JES_Flavour_Response: 5.830321517720956e-07 - syst_JES_Gjet_Generator: 8.558428287366785e-06 - syst_JES_Gjet_OOC: 6.884411449063748e-06 - syst_JES_Gjet_Purity: 1.7190023269326893e-06 - syst_JES_Gjet_Stat1: 3.021562633520572e-10 - syst_JES_Gjet_Stat10: 1.05284537326238e-07 - syst_JES_Gjet_Stat11: 1.1146451454221686e-07 - syst_JES_Gjet_Stat12: 6.244908065776469e-07 - syst_JES_Gjet_Stat13: 2.0306801496050528e-06 - syst_JES_Gjet_Stat14: 3.2260987275655407e-06 - syst_JES_Gjet_Stat15: 1.0744100555653786e-06 - syst_JES_Gjet_Stat2: 3.0224296329101746e-10 - syst_JES_Gjet_Stat3: 3.0397434688789526e-10 - syst_JES_Gjet_Stat4: 3.03871510098047e-10 - syst_JES_Gjet_Stat5: 3.044702880992825e-10 - syst_JES_Gjet_Stat6: 7.445694092749177e-11 - syst_JES_Gjet_Stat7: 4.794173306533151e-09 - syst_JES_Gjet_Stat8: 2.2377115978523684e-08 - syst_JES_Gjet_Stat9: 2.4497782568020316e-08 - syst_JES_Gjet_Veto: 6.276156845554451e-06 - syst_JES_Gjet_dPhi: 1.9978585779495273e-06 - syst_JES_LArESZee: 1.4066866139975884e-05 - syst_JES_LArEsmear: 1.0642824539898937e-07 - syst_JES_LAr_JVT: 4.2852401041248553e-07 - syst_JES_MJB_Alpha: 2.2394197593796478e-08 - syst_JES_MJB_Asym: 3.393074412314e-07 - syst_JES_MJB_Beta: 2.2481427644168863e-08 - syst_JES_MJB_Fragmentation: 3.545508003093513e-07 - syst_JES_MJB_Stat1: 8.241568878258253e-11 - syst_JES_MJB_Stat10: 2.4802967564386324e-09 + syst_JES_Flavour_Comp: 5.66151965e-06 + syst_JES_Flavour_Response: 5.83032152e-07 + syst_JES_Gjet_Generator: 8.55842829e-06 + syst_JES_Gjet_OOC: 6.88441145e-06 + syst_JES_Gjet_Purity: 1.71900233e-06 + syst_JES_Gjet_Stat1: 3.02156263e-10 + syst_JES_Gjet_Stat10: 1.05284537e-07 + syst_JES_Gjet_Stat11: 1.11464515e-07 + syst_JES_Gjet_Stat12: 6.24490807e-07 + syst_JES_Gjet_Stat13: 2.03068015e-06 + syst_JES_Gjet_Stat14: 3.22609873e-06 + syst_JES_Gjet_Stat15: 1.07441006e-06 + syst_JES_Gjet_Stat2: 3.02242963e-10 + syst_JES_Gjet_Stat3: 3.03974347e-10 + syst_JES_Gjet_Stat4: 3.03871510e-10 + syst_JES_Gjet_Stat5: 3.04470288e-10 + syst_JES_Gjet_Stat6: 7.44569409e-11 + syst_JES_Gjet_Stat7: 4.79417331e-09 + syst_JES_Gjet_Stat8: 2.23771160e-08 + syst_JES_Gjet_Stat9: 2.44977826e-08 + syst_JES_Gjet_Veto: 6.27615685e-06 + syst_JES_Gjet_dPhi: 1.99785858e-06 + syst_JES_LArESZee: 1.40668661e-05 + syst_JES_LArEsmear: 1.06428245e-07 + syst_JES_LAr_JVT: 4.28524010e-07 + syst_JES_MJB_Alpha: 2.23941976e-08 + syst_JES_MJB_Asym: 3.39307441e-07 + syst_JES_MJB_Beta: 2.24814276e-08 + syst_JES_MJB_Fragmentation: 3.54550800e-07 + syst_JES_MJB_Stat1: 8.24156888e-11 + syst_JES_MJB_Stat10: 2.48029676e-09 syst_JES_MJB_Stat11: 0.0 syst_JES_MJB_Stat12: 0.0 syst_JES_MJB_Stat13: 0.0 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 1.343293725586478e-08 - syst_JES_MJB_Stat3: 2.9825706036834655e-08 - syst_JES_MJB_Stat4: 2.2481457552113917e-08 - syst_JES_MJB_Stat5: 2.3965695498983544e-09 - syst_JES_MJB_Stat6: 2.3965695498983544e-09 - syst_JES_MJB_Stat7: 2.3965695498983544e-09 - syst_JES_MJB_Stat8: 2.4802967564386324e-09 - syst_JES_MJB_Stat9: 2.4802967564386324e-09 - syst_JES_MJB_Threshold: 3.5671586360874136e-07 - syst_JES_Pileup_MuOffset: 3.0077062277691513e-07 - syst_JES_Pileup_NPVOffset: 3.2038972314979145e-06 - syst_JES_Pileup_Pt_term: 1.373719924147568e-06 - syst_JES_Pileup_Rho_topology: 2.707774547483597e-06 - syst_JES_PunchThrough_MC15: 3.2999634706311523e-07 + syst_JES_MJB_Stat2: 1.34329373e-08 + syst_JES_MJB_Stat3: 2.98257060e-08 + syst_JES_MJB_Stat4: 2.24814576e-08 + syst_JES_MJB_Stat5: 2.39656955e-09 + syst_JES_MJB_Stat6: 2.39656955e-09 + syst_JES_MJB_Stat7: 2.39656955e-09 + syst_JES_MJB_Stat8: 2.48029676e-09 + syst_JES_MJB_Stat9: 2.48029676e-09 + syst_JES_MJB_Threshold: 3.56715864e-07 + syst_JES_Pileup_MuOffset: 3.00770623e-07 + syst_JES_Pileup_NPVOffset: 3.20389723e-06 + syst_JES_Pileup_Pt_term: 1.37371992e-06 + syst_JES_Pileup_Rho_topology: 2.70777455e-06 + syst_JES_PunchThrough_MC15: 3.29996347e-07 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 6.920822060998246e-06 - syst_JES_Zjet_MuScale: 1.1369046343031592e-07 - syst_JES_Zjet_MuSmearID: 2.236824607982262e-08 - syst_JES_Zjet_MuSmearMS: 4.070614204269424e-07 - syst_JES_Zjet_OOC: 3.855299210178115e-06 - syst_JES_Zjet_Stat1: 6.877716354916102e-09 - syst_JES_Zjet_Stat10: 1.0618753351971219e-07 - syst_JES_Zjet_Stat11: 1.0533534769962074e-07 - syst_JES_Zjet_Stat12: 4.529656140370922e-07 - syst_JES_Zjet_Stat13: 4.851516979255046e-07 - syst_JES_Zjet_Stat2: 8.556330989390255e-20 - syst_JES_Zjet_Stat3: 3.042379628521562e-10 - syst_JES_Zjet_Stat4: 3.042379628521562e-10 - syst_JES_Zjet_Stat5: 3.0700923627869897e-10 - syst_JES_Zjet_Stat6: 7.370416473192e-11 - syst_JES_Zjet_Stat7: 3.083942995563148e-10 - syst_JES_Zjet_Stat8: 7.500386132140131e-11 - syst_JES_Zjet_Stat9: 2.0250891011261702e-08 - syst_JES_Zjet_Veto: 1.3083193196642592e-07 - syst_JES_Zjet_dPhi: 1.763083681366259e-10 + syst_JES_Zjet_MC: 6.92082206e-06 + syst_JES_Zjet_MuScale: 1.13690463e-07 + syst_JES_Zjet_MuSmearID: 2.23682461e-08 + syst_JES_Zjet_MuSmearMS: 4.07061420e-07 + syst_JES_Zjet_OOC: 3.85529921e-06 + syst_JES_Zjet_Stat1: 6.87771635e-09 + syst_JES_Zjet_Stat10: 1.06187534e-07 + syst_JES_Zjet_Stat11: 1.05335348e-07 + syst_JES_Zjet_Stat12: 4.52965614e-07 + syst_JES_Zjet_Stat13: 4.85151698e-07 + syst_JES_Zjet_Stat2: 8.55633099e-20 + syst_JES_Zjet_Stat3: 3.04237963e-10 + syst_JES_Zjet_Stat4: 3.04237963e-10 + syst_JES_Zjet_Stat5: 3.07009236e-10 + syst_JES_Zjet_Stat6: 7.37041647e-11 + syst_JES_Zjet_Stat7: 3.08394300e-10 + syst_JES_Zjet_Stat8: 7.50038613e-11 + syst_JES_Zjet_Stat9: 2.02508910e-08 + syst_JES_Zjet_Veto: 1.30831932e-07 + syst_JES_Zjet_dPhi: 1.76308368e-10 syst_PRW: 0.0 - syst_Unfolding_bias: 2.363e-20 - syst_cleaning: 1.899193710499274e-06 - syst_lumi: 4.084e-06 -- stat: 1.2325e-05 - syst_JER_CROSS_CALIB_FORWARD: 2.132e-18 + syst_Unfolding_bias: 2.36300000e-20 + syst_cleaning: 1.89919371e-06 + syst_lumi: 4.08400000e-06 +- stat: 1.23250000e-05 + syst_JER_CROSS_CALIB_FORWARD: 2.13200000e-18 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 6.753029153646531e-07 - syst_JER_NP1: 1.448180192517492e-06 - syst_JER_NP2: 6.971824438409217e-07 - syst_JER_NP3: 1.0888908343799895e-09 + syst_JER_NP0: 6.75302915e-07 + syst_JER_NP1: 1.44818019e-06 + syst_JER_NP2: 6.97182444e-07 + syst_JER_NP3: 1.08889083e-09 syst_JER_NP4: 0.0 syst_JER_NP5: 0.0 syst_JER_NP6: 0.0 syst_JER_NP7: 0.0 - syst_JER_NP8: 9.689588278146807e-21 - syst_JES_EtaIntercalibration_Modelling: 8.029677624288536e-06 - syst_JES_EtaIntercalibration_NonClosure: 2.7456445509206033e-06 - syst_JES_EtaIntercalibration_Stat0: 2.199036323028794e-06 + syst_JER_NP8: 9.68958828e-21 + syst_JES_EtaIntercalibration_Modelling: 8.02967762e-06 + syst_JES_EtaIntercalibration_NonClosure: 2.74564455e-06 + syst_JES_EtaIntercalibration_Stat0: 2.19903632e-06 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 syst_JES_EtaIntercalibration_Stat100: 0.0 @@ -44071,97 +44071,97 @@ bins: syst_JES_EtaIntercalibration_Stat98: 0.0 syst_JES_EtaIntercalibration_Stat99: 0.0 syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0 - syst_JES_Flavour_Comp: 2.35285714610981e-06 - syst_JES_Flavour_Response: 2.2878776994192674e-07 - syst_JES_Gjet_Generator: 3.5833921732766005e-06 - syst_JES_Gjet_OOC: 2.884214104396552e-06 - syst_JES_Gjet_Purity: 7.15606449104534e-07 - syst_JES_Gjet_Stat1: 9.005798173613278e-11 - syst_JES_Gjet_Stat10: 5.5985830772325774e-08 - syst_JES_Gjet_Stat11: 5.636046185713882e-08 - syst_JES_Gjet_Stat12: 2.6995349599514357e-07 - syst_JES_Gjet_Stat13: 8.914402447724693e-07 - syst_JES_Gjet_Stat14: 1.6026004453699617e-06 - syst_JES_Gjet_Stat15: 6.501572194477271e-07 - syst_JES_Gjet_Stat2: 9.005799166131251e-11 - syst_JES_Gjet_Stat3: 9.030908135987498e-11 - syst_JES_Gjet_Stat4: 9.030016641813403e-11 - syst_JES_Gjet_Stat5: 9.040240570203937e-11 - syst_JES_Gjet_Stat6: 1.999262507780494e-11 - syst_JES_Gjet_Stat7: 1.0120371169453222e-09 - syst_JES_Gjet_Stat8: 6.536784129065301e-11 - syst_JES_Gjet_Stat9: 1.3190177661805771e-09 - syst_JES_Gjet_Veto: 2.6267776837791204e-06 - syst_JES_Gjet_dPhi: 6.341848492763235e-07 - syst_JES_LArESZee: 6.39939346735298e-06 - syst_JES_LArEsmear: 1.4434675209103252e-08 - syst_JES_LAr_JVT: 2.256558607703332e-07 - syst_JES_MJB_Alpha: 6.671148233250405e-11 - syst_JES_MJB_Asym: 1.5205227653672276e-07 - syst_JES_MJB_Beta: 1.240894116151737e-10 - syst_JES_MJB_Fragmentation: 1.675759156322892e-07 - syst_JES_MJB_Stat1: 2.176727671406956e-11 - syst_JES_MJB_Stat10: 5.261104327990464e-10 + syst_JES_Flavour_Comp: 2.35285715e-06 + syst_JES_Flavour_Response: 2.28787770e-07 + syst_JES_Gjet_Generator: 3.58339217e-06 + syst_JES_Gjet_OOC: 2.88421410e-06 + syst_JES_Gjet_Purity: 7.15606449e-07 + syst_JES_Gjet_Stat1: 9.00579817e-11 + syst_JES_Gjet_Stat10: 5.59858308e-08 + syst_JES_Gjet_Stat11: 5.63604619e-08 + syst_JES_Gjet_Stat12: 2.69953496e-07 + syst_JES_Gjet_Stat13: 8.91440245e-07 + syst_JES_Gjet_Stat14: 1.60260045e-06 + syst_JES_Gjet_Stat15: 6.50157219e-07 + syst_JES_Gjet_Stat2: 9.00579917e-11 + syst_JES_Gjet_Stat3: 9.03090814e-11 + syst_JES_Gjet_Stat4: 9.03001664e-11 + syst_JES_Gjet_Stat5: 9.04024057e-11 + syst_JES_Gjet_Stat6: 1.99926251e-11 + syst_JES_Gjet_Stat7: 1.01203712e-09 + syst_JES_Gjet_Stat8: 6.53678413e-11 + syst_JES_Gjet_Stat9: 1.31901777e-09 + syst_JES_Gjet_Veto: 2.62677768e-06 + syst_JES_Gjet_dPhi: 6.34184849e-07 + syst_JES_LArESZee: 6.39939347e-06 + syst_JES_LArEsmear: 1.44346752e-08 + syst_JES_LAr_JVT: 2.25655861e-07 + syst_JES_MJB_Alpha: 6.67114823e-11 + syst_JES_MJB_Asym: 1.52052277e-07 + syst_JES_MJB_Beta: 1.24089412e-10 + syst_JES_MJB_Fragmentation: 1.67575916e-07 + syst_JES_MJB_Stat1: 2.17672767e-11 + syst_JES_MJB_Stat10: 5.26110433e-10 syst_JES_MJB_Stat11: 0.0 syst_JES_MJB_Stat12: 0.0 syst_JES_MJB_Stat13: 0.0 syst_JES_MJB_Stat14: 0.0 syst_JES_MJB_Stat15: 0.0 syst_JES_MJB_Stat16: 0.0 - syst_JES_MJB_Stat2: 2.1982625022503566e-09 - syst_JES_MJB_Stat3: 3.671821286374788e-09 - syst_JES_MJB_Stat4: 1.24187345067845e-10 - syst_JES_MJB_Stat5: 5.033062117637731e-10 - syst_JES_MJB_Stat6: 5.033062117637731e-10 - syst_JES_MJB_Stat7: 5.033062117637731e-10 - syst_JES_MJB_Stat8: 5.261104327990464e-10 - syst_JES_MJB_Stat9: 5.261104327990464e-10 - syst_JES_MJB_Threshold: 1.4185496111913242e-07 - syst_JES_Pileup_MuOffset: 1.4696451102719888e-07 - syst_JES_Pileup_NPVOffset: 1.1540222387371917e-06 - syst_JES_Pileup_Pt_term: 7.990817902442779e-07 - syst_JES_Pileup_Rho_topology: 1.2406765049762166e-06 - syst_JES_PunchThrough_MC15: 1.3887253869286037e-07 + syst_JES_MJB_Stat2: 2.19826250e-09 + syst_JES_MJB_Stat3: 3.67182129e-09 + syst_JES_MJB_Stat4: 1.24187345e-10 + syst_JES_MJB_Stat5: 5.03306212e-10 + syst_JES_MJB_Stat6: 5.03306212e-10 + syst_JES_MJB_Stat7: 5.03306212e-10 + syst_JES_MJB_Stat8: 5.26110433e-10 + syst_JES_MJB_Stat9: 5.26110433e-10 + syst_JES_MJB_Threshold: 1.41854961e-07 + syst_JES_Pileup_MuOffset: 1.46964511e-07 + syst_JES_Pileup_NPVOffset: 1.15402224e-06 + syst_JES_Pileup_Pt_term: 7.99081790e-07 + syst_JES_Pileup_Rho_topology: 1.24067650e-06 + syst_JES_PunchThrough_MC15: 1.38872539e-07 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 2.6441301026991846e-06 - syst_JES_Zjet_MuScale: 5.784075725645369e-08 - syst_JES_Zjet_MuSmearID: 6.475800027795794e-11 - syst_JES_Zjet_MuSmearMS: 1.642568561734943e-07 - syst_JES_Zjet_OOC: 1.3132811989440798e-06 - syst_JES_Zjet_Stat1: 1.3657001296403689e-09 - syst_JES_Zjet_Stat10: 5.593952338266746e-08 - syst_JES_Zjet_Stat11: 5.569214658055479e-08 - syst_JES_Zjet_Stat12: 1.9128150015095553e-07 - syst_JES_Zjet_Stat13: 2.0880863847072994e-07 - syst_JES_Zjet_Stat2: 1.0322156787706724e-20 - syst_JES_Zjet_Stat3: 9.038247965518705e-11 - syst_JES_Zjet_Stat4: 9.038247965518705e-11 - syst_JES_Zjet_Stat5: 9.075487049145242e-11 - syst_JES_Zjet_Stat6: 1.9896698824600905e-11 - syst_JES_Zjet_Stat7: 9.098864831596783e-11 - syst_JES_Zjet_Stat8: 2.0036049228078872e-11 - syst_JES_Zjet_Stat9: 4.281701852067703e-09 - syst_JES_Zjet_Veto: 8.179299186326831e-08 - syst_JES_Zjet_dPhi: 1.5750775179336413e-11 + syst_JES_Zjet_MC: 2.64413010e-06 + syst_JES_Zjet_MuScale: 5.78407573e-08 + syst_JES_Zjet_MuSmearID: 6.47580003e-11 + syst_JES_Zjet_MuSmearMS: 1.64256856e-07 + syst_JES_Zjet_OOC: 1.31328120e-06 + syst_JES_Zjet_Stat1: 1.36570013e-09 + syst_JES_Zjet_Stat10: 5.59395234e-08 + syst_JES_Zjet_Stat11: 5.56921466e-08 + syst_JES_Zjet_Stat12: 1.91281500e-07 + syst_JES_Zjet_Stat13: 2.08808638e-07 + syst_JES_Zjet_Stat2: 1.03221568e-20 + syst_JES_Zjet_Stat3: 9.03824797e-11 + syst_JES_Zjet_Stat4: 9.03824797e-11 + syst_JES_Zjet_Stat5: 9.07548705e-11 + syst_JES_Zjet_Stat6: 1.98966988e-11 + syst_JES_Zjet_Stat7: 9.09886483e-11 + syst_JES_Zjet_Stat8: 2.00360492e-11 + syst_JES_Zjet_Stat9: 4.28170185e-09 + syst_JES_Zjet_Veto: 8.17929919e-08 + syst_JES_Zjet_dPhi: 1.57507752e-11 syst_PRW: 0.0 - syst_Unfolding_bias: 5.173e-21 - syst_cleaning: 7.907677961955709e-07 - syst_lumi: 1.634e-06 -- stat: 1.6048e-06 + syst_Unfolding_bias: 5.17300000e-21 + syst_cleaning: 7.90767796e-07 + syst_lumi: 1.63400000e-06 +- stat: 1.60480000e-06 syst_JER_CROSS_CALIB_FORWARD: 0.0 syst_JER_NOISE_FORWARD: 0.0 - syst_JER_NP0: 6.647610999449351e-08 - syst_JER_NP1: 2.1059883665395688e-07 - syst_JER_NP2: 8.429056693960482e-08 + syst_JER_NP0: 6.64761100e-08 + syst_JER_NP1: 2.10598837e-07 + syst_JER_NP2: 8.42905669e-08 syst_JER_NP3: 0.0 syst_JER_NP4: 0.0 syst_JER_NP5: 0.0 syst_JER_NP6: 0.0 syst_JER_NP7: 0.0 syst_JER_NP8: 0.0 - syst_JES_EtaIntercalibration_Modelling: 8.842236411112293e-07 - syst_JES_EtaIntercalibration_NonClosure: 3.026783565106696e-07 - syst_JES_EtaIntercalibration_Stat0: 2.489165472603218e-07 + syst_JES_EtaIntercalibration_Modelling: 8.84223641e-07 + syst_JES_EtaIntercalibration_NonClosure: 3.02678357e-07 + syst_JES_EtaIntercalibration_Stat0: 2.48916547e-07 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 syst_JES_EtaIntercalibration_Stat100: 0.0 @@ -44408,18 +44408,18 @@ bins: syst_JES_EtaIntercalibration_Stat98: 0.0 syst_JES_EtaIntercalibration_Stat99: 0.0 syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0 - syst_JES_Flavour_Comp: 3.625231682251495e-07 - syst_JES_Flavour_Response: 8.719891785452386e-08 - syst_JES_Gjet_Generator: 5.305895094138218e-07 - syst_JES_Gjet_OOC: 4.1901739820680483e-07 - syst_JES_Gjet_Purity: 1.3625555695090015e-07 + syst_JES_Flavour_Comp: 3.62523168e-07 + syst_JES_Flavour_Response: 8.71989179e-08 + syst_JES_Gjet_Generator: 5.30589509e-07 + syst_JES_Gjet_OOC: 4.19017398e-07 + syst_JES_Gjet_Purity: 1.36255557e-07 syst_JES_Gjet_Stat1: 0.0 - syst_JES_Gjet_Stat10: 6.4025258101783546e-09 - syst_JES_Gjet_Stat11: 6.47960207111517e-09 - syst_JES_Gjet_Stat12: 1.682596115382417e-08 - syst_JES_Gjet_Stat13: 1.1935211854005775e-07 - syst_JES_Gjet_Stat14: 2.731894763712541e-07 - syst_JES_Gjet_Stat15: 1.8215658099558193e-07 + syst_JES_Gjet_Stat10: 6.40252581e-09 + syst_JES_Gjet_Stat11: 6.47960207e-09 + syst_JES_Gjet_Stat12: 1.68259612e-08 + syst_JES_Gjet_Stat13: 1.19352119e-07 + syst_JES_Gjet_Stat14: 2.73189476e-07 + syst_JES_Gjet_Stat15: 1.82156581e-07 syst_JES_Gjet_Stat2: 0.0 syst_JES_Gjet_Stat3: 0.0 syst_JES_Gjet_Stat4: 0.0 @@ -44428,15 +44428,15 @@ bins: syst_JES_Gjet_Stat7: 0.0 syst_JES_Gjet_Stat8: 0.0 syst_JES_Gjet_Stat9: 0.0 - syst_JES_Gjet_Veto: 3.955046637841329e-07 - syst_JES_Gjet_dPhi: 1.2332201749890408e-07 - syst_JES_LArESZee: 7.991330349197184e-07 + syst_JES_Gjet_Veto: 3.95504664e-07 + syst_JES_Gjet_dPhi: 1.23322017e-07 + syst_JES_LArESZee: 7.99133035e-07 syst_JES_LArEsmear: 0.0 - syst_JES_LAr_JVT: 1.1793562990038253e-07 + syst_JES_LAr_JVT: 1.17935630e-07 syst_JES_MJB_Alpha: 0.0 - syst_JES_MJB_Asym: 1.178447707791907e-07 + syst_JES_MJB_Asym: 1.17844771e-07 syst_JES_MJB_Beta: 0.0 - syst_JES_MJB_Fragmentation: 1.191737558147766e-07 + syst_JES_MJB_Fragmentation: 1.19173756e-07 syst_JES_MJB_Stat1: 0.0 syst_JES_MJB_Stat10: 0.0 syst_JES_MJB_Stat11: 0.0 @@ -44453,23 +44453,23 @@ bins: syst_JES_MJB_Stat7: 0.0 syst_JES_MJB_Stat8: 0.0 syst_JES_MJB_Stat9: 0.0 - syst_JES_MJB_Threshold: 2.6249229988706334e-08 - syst_JES_Pileup_MuOffset: 1.205940374769831e-07 - syst_JES_Pileup_NPVOffset: 1.137719649122753e-07 - syst_JES_Pileup_Pt_term: 2.3116128633488784e-07 - syst_JES_Pileup_Rho_topology: 1.3542814109334885e-07 - syst_JES_PunchThrough_MC15: 1.2041405929126383e-07 + syst_JES_MJB_Threshold: 2.62492300e-08 + syst_JES_Pileup_MuOffset: 1.20594037e-07 + syst_JES_Pileup_NPVOffset: 1.13771965e-07 + syst_JES_Pileup_Pt_term: 2.31161286e-07 + syst_JES_Pileup_Rho_topology: 1.35428141e-07 + syst_JES_PunchThrough_MC15: 1.20414059e-07 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 1.5022409926506466e-07 - syst_JES_Zjet_MuScale: 6.844198766108419e-09 + syst_JES_Zjet_MC: 1.50224099e-07 + syst_JES_Zjet_MuScale: 6.84419877e-09 syst_JES_Zjet_MuSmearID: 0.0 - syst_JES_Zjet_MuSmearMS: 1.7181944011083264e-08 - syst_JES_Zjet_OOC: 1.1991378684288142e-07 + syst_JES_Zjet_MuSmearMS: 1.71819440e-08 + syst_JES_Zjet_OOC: 1.19913787e-07 syst_JES_Zjet_Stat1: 0.0 - syst_JES_Zjet_Stat10: 6.395597606948079e-09 - syst_JES_Zjet_Stat11: 6.444095029560008e-09 - syst_JES_Zjet_Stat12: 2.397158317675326e-09 - syst_JES_Zjet_Stat13: 1.1454958609702611e-07 + syst_JES_Zjet_Stat10: 6.39559761e-09 + syst_JES_Zjet_Stat11: 6.44409503e-09 + syst_JES_Zjet_Stat12: 2.39715832e-09 + syst_JES_Zjet_Stat13: 1.14549586e-07 syst_JES_Zjet_Stat2: 0.0 syst_JES_Zjet_Stat3: 0.0 syst_JES_Zjet_Stat4: 0.0 @@ -44478,17 +44478,17 @@ bins: syst_JES_Zjet_Stat7: 0.0 syst_JES_Zjet_Stat8: 0.0 syst_JES_Zjet_Stat9: 0.0 - syst_JES_Zjet_Veto: 9.715939005057617e-09 + syst_JES_Zjet_Veto: 9.71593901e-09 syst_JES_Zjet_dPhi: 0.0 syst_PRW: 0.0 - syst_Unfolding_bias: 1.0781e-22 - syst_cleaning: 8.02285934065904e-08 - syst_lumi: 1.641e-07 + syst_Unfolding_bias: 1.07810000e-22 + syst_cleaning: 8.02285934e-08 + syst_lumi: 1.64100000e-07 - stat: 0.27775 syst_JER_CROSS_CALIB_FORWARD: 0.03072 syst_JER_NOISE_FORWARD: 0.013908 - syst_JER_NP0: 0.07929428778291663 - syst_JER_NP1: 0.014048307398046215 + syst_JER_NP0: 7.92942878e-02 + syst_JER_NP1: 1.40483074e-02 syst_JER_NP2: 0.0 syst_JER_NP3: 0.0 syst_JER_NP4: 0.0 @@ -44496,9 +44496,9 @@ bins: syst_JER_NP6: 0.0 syst_JER_NP7: 0.0 syst_JER_NP8: 0.0 - syst_JES_EtaIntercalibration_Modelling: 0.12479647551112971 - syst_JES_EtaIntercalibration_NonClosure: 0.08442364642089324 - syst_JES_EtaIntercalibration_Stat0: 0.03904152404812086 + syst_JES_EtaIntercalibration_Modelling: 1.24796476e-01 + syst_JES_EtaIntercalibration_NonClosure: 8.44236464e-02 + syst_JES_EtaIntercalibration_Stat0: 3.90415240e-02 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 syst_JES_EtaIntercalibration_Stat100: 0.0 @@ -44745,35 +44745,35 @@ bins: syst_JES_EtaIntercalibration_Stat98: 0.0 syst_JES_EtaIntercalibration_Stat99: 0.0 syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0 - syst_JES_Flavour_Comp: 0.0012212690244168152 - syst_JES_Flavour_Response: 0.13363011337269756 - syst_JES_Gjet_Generator: 0.07606390783413643 - syst_JES_Gjet_OOC: 0.05217241512523644 - syst_JES_Gjet_Purity: 0.023449231863751953 - syst_JES_Gjet_Stat1: 0.0012098530933547262 - syst_JES_Gjet_Stat10: 1.2572479150907349e-05 - syst_JES_Gjet_Stat11: 6.59520979101499e-06 - syst_JES_Gjet_Stat12: 6.621573906557261e-06 - syst_JES_Gjet_Stat13: 1.257476752889262e-09 - syst_JES_Gjet_Stat14: 6.162636773330066e-25 + syst_JES_Flavour_Comp: 1.22126902e-03 + syst_JES_Flavour_Response: 1.33630113e-01 + syst_JES_Gjet_Generator: 7.60639078e-02 + syst_JES_Gjet_OOC: 5.21724151e-02 + syst_JES_Gjet_Purity: 2.34492319e-02 + syst_JES_Gjet_Stat1: 1.20985309e-03 + syst_JES_Gjet_Stat10: 1.25724792e-05 + syst_JES_Gjet_Stat11: 6.59520979e-06 + syst_JES_Gjet_Stat12: 6.62157391e-06 + syst_JES_Gjet_Stat13: 1.25747675e-09 + syst_JES_Gjet_Stat14: 6.16263677e-25 syst_JES_Gjet_Stat15: 0.0 - syst_JES_Gjet_Stat2: 0.00036998640515564893 - syst_JES_Gjet_Stat3: 0.0023376731737991094 - syst_JES_Gjet_Stat4: 0.0003337761637684752 - syst_JES_Gjet_Stat5: 0.003684570947545996 - syst_JES_Gjet_Stat6: 0.004578495476682269 - syst_JES_Gjet_Stat7: 0.00786644926253262 - syst_JES_Gjet_Stat8: 0.006708775747481801 - syst_JES_Gjet_Stat9: 0.005334744300339051 - syst_JES_Gjet_Veto: 0.01654530785449458 - syst_JES_Gjet_dPhi: 0.008097231158241687 - syst_JES_LArESZee: 0.04855862925371761 - syst_JES_LArEsmear: 0.00369594196383006 - syst_JES_LAr_JVT: 0.007288196394685039 + syst_JES_Gjet_Stat2: 3.69986405e-04 + syst_JES_Gjet_Stat3: 2.33767317e-03 + syst_JES_Gjet_Stat4: 3.33776164e-04 + syst_JES_Gjet_Stat5: 3.68457095e-03 + syst_JES_Gjet_Stat6: 4.57849548e-03 + syst_JES_Gjet_Stat7: 7.86644926e-03 + syst_JES_Gjet_Stat8: 6.70877575e-03 + syst_JES_Gjet_Stat9: 5.33474430e-03 + syst_JES_Gjet_Veto: 1.65453079e-02 + syst_JES_Gjet_dPhi: 8.09723116e-03 + syst_JES_LArESZee: 4.85586293e-02 + syst_JES_LArEsmear: 3.69594196e-03 + syst_JES_LAr_JVT: 7.28819639e-03 syst_JES_MJB_Alpha: 0.0 syst_JES_MJB_Asym: 0.0 syst_JES_MJB_Beta: 0.0 - syst_JES_MJB_Fragmentation: 7.1182685062593e-06 + syst_JES_MJB_Fragmentation: 7.11826851e-06 syst_JES_MJB_Stat1: 0.0 syst_JES_MJB_Stat10: 0.0 syst_JES_MJB_Stat11: 0.0 @@ -44790,42 +44790,42 @@ bins: syst_JES_MJB_Stat7: 0.0 syst_JES_MJB_Stat8: 0.0 syst_JES_MJB_Stat9: 0.0 - syst_JES_MJB_Threshold: 1.257468886295005e-09 - syst_JES_Pileup_MuOffset: 0.006624228313547172 - syst_JES_Pileup_NPVOffset: 0.0111639334801852 - syst_JES_Pileup_Pt_term: 0.06874585860253693 - syst_JES_Pileup_Rho_topology: 0.04110832762348767 - syst_JES_PunchThrough_MC15: 3.660689381796823e-06 + syst_JES_MJB_Threshold: 1.25746889e-09 + syst_JES_Pileup_MuOffset: 6.62422831e-03 + syst_JES_Pileup_NPVOffset: 1.11639335e-02 + syst_JES_Pileup_Pt_term: 6.87458586e-02 + syst_JES_Pileup_Rho_topology: 4.11083276e-02 + syst_JES_PunchThrough_MC15: 3.66068938e-06 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.08251600132701535 - syst_JES_Zjet_MuScale: 0.0016648359288530506 - syst_JES_Zjet_MuSmearID: 0.0003638919345080349 - syst_JES_Zjet_MuSmearMS: 0.0049143267565354256 - syst_JES_Zjet_OOC: 0.06068009311133264 - syst_JES_Zjet_Stat1: 0.00030831417012521493 - syst_JES_Zjet_Stat10: 0.005550034504397247 - syst_JES_Zjet_Stat11: 0.0014212350148726284 - syst_JES_Zjet_Stat12: 1.164024745226664e-05 - syst_JES_Zjet_Stat13: 7.1299020001056646e-06 + syst_JES_Zjet_MC: 8.25160013e-02 + syst_JES_Zjet_MuScale: 1.66483593e-03 + syst_JES_Zjet_MuSmearID: 3.63891935e-04 + syst_JES_Zjet_MuSmearMS: 4.91432676e-03 + syst_JES_Zjet_OOC: 6.06800931e-02 + syst_JES_Zjet_Stat1: 3.08314170e-04 + syst_JES_Zjet_Stat10: 5.55003450e-03 + syst_JES_Zjet_Stat11: 1.42123501e-03 + syst_JES_Zjet_Stat12: 1.16402475e-05 + syst_JES_Zjet_Stat13: 7.12990200e-06 syst_JES_Zjet_Stat2: 0.0 - syst_JES_Zjet_Stat3: 0.00036998640515564893 - syst_JES_Zjet_Stat4: 0.0023376731737991094 - syst_JES_Zjet_Stat5: 0.0003337761637684752 - syst_JES_Zjet_Stat6: 0.00040166535822746776 - syst_JES_Zjet_Stat7: 0.005273241624465922 - syst_JES_Zjet_Stat8: 0.0032521453042568685 - syst_JES_Zjet_Stat9: 0.00786644926253262 - syst_JES_Zjet_Veto: 0.0022922076520245716 - syst_JES_Zjet_dPhi: 0.011191361713393059 + syst_JES_Zjet_Stat3: 3.69986405e-04 + syst_JES_Zjet_Stat4: 2.33767317e-03 + syst_JES_Zjet_Stat5: 3.33776164e-04 + syst_JES_Zjet_Stat6: 4.01665358e-04 + syst_JES_Zjet_Stat7: 5.27324162e-03 + syst_JES_Zjet_Stat8: 3.25214530e-03 + syst_JES_Zjet_Stat9: 7.86644926e-03 + syst_JES_Zjet_Veto: 2.29220765e-03 + syst_JES_Zjet_dPhi: 1.11913617e-02 syst_PRW: 0.01909 syst_Unfolding_bias: 0.003744 - syst_cleaning: 0.04015759797348442 + syst_cleaning: 4.01575980e-02 syst_lumi: 0.06334 - stat: 0.12141 syst_JER_CROSS_CALIB_FORWARD: 0.01289 syst_JER_NOISE_FORWARD: 0.005883 - syst_JER_NP0: 0.030029806442932662 - syst_JER_NP1: 0.003944540438061194 + syst_JER_NP0: 3.00298064e-02 + syst_JER_NP1: 3.94454044e-03 syst_JER_NP2: 0.0 syst_JER_NP3: 0.0 syst_JER_NP4: 0.0 @@ -44833,9 +44833,9 @@ bins: syst_JER_NP6: 0.0 syst_JER_NP7: 0.0 syst_JER_NP8: 0.0 - syst_JES_EtaIntercalibration_Modelling: 0.047320581146051026 - syst_JES_EtaIntercalibration_NonClosure: 0.02659565002025707 - syst_JES_EtaIntercalibration_Stat0: 0.015450571089768819 + syst_JES_EtaIntercalibration_Modelling: 4.73205811e-02 + syst_JES_EtaIntercalibration_NonClosure: 2.65956500e-02 + syst_JES_EtaIntercalibration_Stat0: 1.54505711e-02 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 syst_JES_EtaIntercalibration_Stat100: 0.0 @@ -45082,35 +45082,35 @@ bins: syst_JES_EtaIntercalibration_Stat98: 0.0 syst_JES_EtaIntercalibration_Stat99: 0.0 syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0 - syst_JES_Flavour_Comp: 0.0005099157577482774 - syst_JES_Flavour_Response: 0.048041378779131644 - syst_JES_Gjet_Generator: 0.02977871387417529 - syst_JES_Gjet_OOC: 0.01813087628880634 - syst_JES_Gjet_Purity: 0.008050908271741767 - syst_JES_Gjet_Stat1: 0.0001092206742105175 - syst_JES_Gjet_Stat10: 6.904221751942792e-06 - syst_JES_Gjet_Stat11: 6.773637552120721e-06 - syst_JES_Gjet_Stat12: 6.85330436723775e-06 - syst_JES_Gjet_Stat13: 2.826111964041228e-08 - syst_JES_Gjet_Stat14: 4.711178196587346e-19 + syst_JES_Flavour_Comp: 5.09915758e-04 + syst_JES_Flavour_Response: 4.80413788e-02 + syst_JES_Gjet_Generator: 2.97787139e-02 + syst_JES_Gjet_OOC: 1.81308763e-02 + syst_JES_Gjet_Purity: 8.05090827e-03 + syst_JES_Gjet_Stat1: 1.09220674e-04 + syst_JES_Gjet_Stat10: 6.90422175e-06 + syst_JES_Gjet_Stat11: 6.77363755e-06 + syst_JES_Gjet_Stat12: 6.85330437e-06 + syst_JES_Gjet_Stat13: 2.82611196e-08 + syst_JES_Gjet_Stat14: 4.71117820e-19 syst_JES_Gjet_Stat15: 0.0 - syst_JES_Gjet_Stat2: 0.00013876766437106305 - syst_JES_Gjet_Stat3: 0.0001930771132863758 - syst_JES_Gjet_Stat4: 0.00011272205906565052 - syst_JES_Gjet_Stat5: 0.00030944637770541117 - syst_JES_Gjet_Stat6: 0.0013525682977210429 - syst_JES_Gjet_Stat7: 0.002222840405877129 - syst_JES_Gjet_Stat8: 0.0015631084439347131 - syst_JES_Gjet_Stat9: 0.000800369470932019 - syst_JES_Gjet_Veto: 0.005637314498056677 - syst_JES_Gjet_dPhi: 0.002368516452866646 - syst_JES_LArESZee: 0.019526768165776944 - syst_JES_LArEsmear: 0.0009760589787507721 - syst_JES_LAr_JVT: 0.0020452107642001107 + syst_JES_Gjet_Stat2: 1.38767664e-04 + syst_JES_Gjet_Stat3: 1.93077113e-04 + syst_JES_Gjet_Stat4: 1.12722059e-04 + syst_JES_Gjet_Stat5: 3.09446378e-04 + syst_JES_Gjet_Stat6: 1.35256830e-03 + syst_JES_Gjet_Stat7: 2.22284041e-03 + syst_JES_Gjet_Stat8: 1.56310844e-03 + syst_JES_Gjet_Stat9: 8.00369471e-04 + syst_JES_Gjet_Veto: 5.63731450e-03 + syst_JES_Gjet_dPhi: 2.36851645e-03 + syst_JES_LArESZee: 1.95267682e-02 + syst_JES_LArEsmear: 9.76058979e-04 + syst_JES_LAr_JVT: 2.04521076e-03 syst_JES_MJB_Alpha: 0.0 syst_JES_MJB_Asym: 0.0 syst_JES_MJB_Beta: 0.0 - syst_JES_MJB_Fragmentation: 4.1832242038976345e-06 + syst_JES_MJB_Fragmentation: 4.18322420e-06 syst_JES_MJB_Stat1: 0.0 syst_JES_MJB_Stat10: 0.0 syst_JES_MJB_Stat11: 0.0 @@ -45127,42 +45127,42 @@ bins: syst_JES_MJB_Stat7: 0.0 syst_JES_MJB_Stat8: 0.0 syst_JES_MJB_Stat9: 0.0 - syst_JES_MJB_Threshold: 2.8249748671448385e-08 - syst_JES_Pileup_MuOffset: 0.00130336823269558 - syst_JES_Pileup_NPVOffset: 0.002931495991810325 - syst_JES_Pileup_Pt_term: 0.025243261972257073 - syst_JES_Pileup_Rho_topology: 0.015125669200071778 - syst_JES_PunchThrough_MC15: 2.7963960288199526e-07 + syst_JES_MJB_Threshold: 2.82497487e-08 + syst_JES_Pileup_MuOffset: 1.30336823e-03 + syst_JES_Pileup_NPVOffset: 2.93149599e-03 + syst_JES_Pileup_Pt_term: 2.52432620e-02 + syst_JES_Pileup_Rho_topology: 1.51256692e-02 + syst_JES_PunchThrough_MC15: 2.79639603e-07 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.02462046049528725 - syst_JES_Zjet_MuScale: 0.0006945758759847625 - syst_JES_Zjet_MuSmearID: 0.00013760570364269062 - syst_JES_Zjet_MuSmearMS: 0.001098868130168493 - syst_JES_Zjet_OOC: 0.01570054378039181 - syst_JES_Zjet_Stat1: 0.00011088157860979433 - syst_JES_Zjet_Stat10: 0.003232052113982694 - syst_JES_Zjet_Stat11: 0.0008381181352739005 - syst_JES_Zjet_Stat12: 4.324930866499487e-06 - syst_JES_Zjet_Stat13: 4.072567097973955e-06 + syst_JES_Zjet_MC: 2.46204605e-02 + syst_JES_Zjet_MuScale: 6.94575876e-04 + syst_JES_Zjet_MuSmearID: 1.37605704e-04 + syst_JES_Zjet_MuSmearMS: 1.09886813e-03 + syst_JES_Zjet_OOC: 1.57005438e-02 + syst_JES_Zjet_Stat1: 1.10881579e-04 + syst_JES_Zjet_Stat10: 3.23205211e-03 + syst_JES_Zjet_Stat11: 8.38118135e-04 + syst_JES_Zjet_Stat12: 4.32493087e-06 + syst_JES_Zjet_Stat13: 4.07256710e-06 syst_JES_Zjet_Stat2: 0.0 - syst_JES_Zjet_Stat3: 0.00013876766437106305 - syst_JES_Zjet_Stat4: 0.0001930771132863758 - syst_JES_Zjet_Stat5: 0.00011272205906565052 - syst_JES_Zjet_Stat6: 0.0001377604902539186 - syst_JES_Zjet_Stat7: 0.0016328035811756414 - syst_JES_Zjet_Stat8: 0.0004298620591756732 - syst_JES_Zjet_Stat9: 0.002222840405877129 - syst_JES_Zjet_Veto: 0.00037828495962038993 - syst_JES_Zjet_dPhi: 0.002495764562213351 + syst_JES_Zjet_Stat3: 1.38767664e-04 + syst_JES_Zjet_Stat4: 1.93077113e-04 + syst_JES_Zjet_Stat5: 1.12722059e-04 + syst_JES_Zjet_Stat6: 1.37760490e-04 + syst_JES_Zjet_Stat7: 1.63280358e-03 + syst_JES_Zjet_Stat8: 4.29862059e-04 + syst_JES_Zjet_Stat9: 2.22284041e-03 + syst_JES_Zjet_Veto: 3.78284960e-04 + syst_JES_Zjet_dPhi: 2.49576456e-03 syst_PRW: 0.004016 - syst_Unfolding_bias: 0.0005067 - syst_cleaning: 0.013016361818880114 + syst_Unfolding_bias: 5.06700000e-04 + syst_cleaning: 1.30163618e-02 syst_lumi: 0.02205 - stat: 0.03568 syst_JER_CROSS_CALIB_FORWARD: 0.005609 syst_JER_NOISE_FORWARD: 0.002542 - syst_JER_NP0: 0.012101931787941956 - syst_JER_NP1: 0.0010329308532036402 + syst_JER_NP0: 1.21019318e-02 + syst_JER_NP1: 1.03293085e-03 syst_JER_NP2: 0.0 syst_JER_NP3: 0.0 syst_JER_NP4: 0.0 @@ -45170,9 +45170,9 @@ bins: syst_JER_NP6: 0.0 syst_JER_NP7: 0.0 syst_JER_NP8: 0.0 - syst_JES_EtaIntercalibration_Modelling: 0.018546969887288867 - syst_JES_EtaIntercalibration_NonClosure: 0.009045882309095116 - syst_JES_EtaIntercalibration_Stat0: 0.006293557559123456 + syst_JES_EtaIntercalibration_Modelling: 1.85469699e-02 + syst_JES_EtaIntercalibration_NonClosure: 9.04588231e-03 + syst_JES_EtaIntercalibration_Stat0: 6.29355756e-03 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 syst_JES_EtaIntercalibration_Stat100: 0.0 @@ -45419,35 +45419,35 @@ bins: syst_JES_EtaIntercalibration_Stat98: 0.0 syst_JES_EtaIntercalibration_Stat99: 0.0 syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0 - syst_JES_Flavour_Comp: 0.0001305100283503149 - syst_JES_Flavour_Response: 0.01755157453763052 - syst_JES_Gjet_Generator: 0.011589013363958123 - syst_JES_Gjet_OOC: 0.006550313809276621 - syst_JES_Gjet_Purity: 0.0027428368526035227 - syst_JES_Gjet_Stat1: 1.109619866215453e-05 - syst_JES_Gjet_Stat10: 2.2241635791629623e-05 - syst_JES_Gjet_Stat11: 2.2621157950025457e-05 - syst_JES_Gjet_Stat12: 2.2949694812785635e-05 - syst_JES_Gjet_Stat13: 1.1989208161855394e-07 - syst_JES_Gjet_Stat14: 6.707366752310477e-15 + syst_JES_Flavour_Comp: 1.30510028e-04 + syst_JES_Flavour_Response: 1.75515745e-02 + syst_JES_Gjet_Generator: 1.15890134e-02 + syst_JES_Gjet_OOC: 6.55031381e-03 + syst_JES_Gjet_Purity: 2.74283685e-03 + syst_JES_Gjet_Stat1: 1.10961987e-05 + syst_JES_Gjet_Stat10: 2.22416358e-05 + syst_JES_Gjet_Stat11: 2.26211580e-05 + syst_JES_Gjet_Stat12: 2.29496948e-05 + syst_JES_Gjet_Stat13: 1.19892082e-07 + syst_JES_Gjet_Stat14: 6.70736675e-15 syst_JES_Gjet_Stat15: 0.0 - syst_JES_Gjet_Stat2: 3.4197781726305e-05 - syst_JES_Gjet_Stat3: 1.812910022587994e-05 - syst_JES_Gjet_Stat4: 4.086225978822023e-05 - syst_JES_Gjet_Stat5: 2.1308897202811787e-05 - syst_JES_Gjet_Stat6: 0.0002898947605058601 - syst_JES_Gjet_Stat7: 0.0005050089182380842 - syst_JES_Gjet_Stat8: 0.00028970018583873914 - syst_JES_Gjet_Stat9: 0.00021285921844026393 - syst_JES_Gjet_Veto: 0.001888587832217501 - syst_JES_Gjet_dPhi: 0.0005136896217561729 - syst_JES_LArESZee: 0.008062710276327682 - syst_JES_LArEsmear: 0.00018427184049658808 - syst_JES_LAr_JVT: 0.00035881990956467284 + syst_JES_Gjet_Stat2: 3.41977817e-05 + syst_JES_Gjet_Stat3: 1.81291002e-05 + syst_JES_Gjet_Stat4: 4.08622598e-05 + syst_JES_Gjet_Stat5: 2.13088972e-05 + syst_JES_Gjet_Stat6: 2.89894761e-04 + syst_JES_Gjet_Stat7: 5.05008918e-04 + syst_JES_Gjet_Stat8: 2.89700186e-04 + syst_JES_Gjet_Stat9: 2.12859218e-04 + syst_JES_Gjet_Veto: 1.88858783e-03 + syst_JES_Gjet_dPhi: 5.13689622e-04 + syst_JES_LArESZee: 8.06271028e-03 + syst_JES_LArEsmear: 1.84271840e-04 + syst_JES_LAr_JVT: 3.58819910e-04 syst_JES_MJB_Alpha: 0.0 syst_JES_MJB_Asym: 0.0 syst_JES_MJB_Beta: 0.0 - syst_JES_MJB_Fragmentation: 1.8529129502488775e-05 + syst_JES_MJB_Fragmentation: 1.85291295e-05 syst_JES_MJB_Stat1: 0.0 syst_JES_MJB_Stat10: 0.0 syst_JES_MJB_Stat11: 0.0 @@ -45464,42 +45464,42 @@ bins: syst_JES_MJB_Stat7: 0.0 syst_JES_MJB_Stat8: 0.0 syst_JES_MJB_Stat9: 0.0 - syst_JES_MJB_Threshold: 1.1873208285884654e-07 - syst_JES_Pileup_MuOffset: 0.0006383473251295097 - syst_JES_Pileup_NPVOffset: 0.0004906899937842654 - syst_JES_Pileup_Pt_term: 0.008628049765155507 - syst_JES_Pileup_Rho_topology: 0.005197526984056937 - syst_JES_PunchThrough_MC15: 2.0957814771583416e-08 + syst_JES_MJB_Threshold: 1.18732083e-07 + syst_JES_Pileup_MuOffset: 6.38347325e-04 + syst_JES_Pileup_NPVOffset: 4.90689994e-04 + syst_JES_Pileup_Pt_term: 8.62804977e-03 + syst_JES_Pileup_Rho_topology: 5.19752698e-03 + syst_JES_PunchThrough_MC15: 2.09578148e-08 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.008272074830415884 - syst_JES_Zjet_MuScale: 0.0002881449808690063 - syst_JES_Zjet_MuSmearID: 3.629247132670908e-05 - syst_JES_Zjet_MuSmearMS: 0.00018124738536045147 - syst_JES_Zjet_OOC: 0.004805973444579152 - syst_JES_Zjet_Stat1: 4.0621772487177364e-05 - syst_JES_Zjet_Stat10: 0.0009588610900438081 - syst_JES_Zjet_Stat11: 0.00015475771679224917 - syst_JES_Zjet_Stat12: 1.6246636574996068e-06 - syst_JES_Zjet_Stat13: 1.835530371391332e-05 + syst_JES_Zjet_MC: 8.27207483e-03 + syst_JES_Zjet_MuScale: 2.88144981e-04 + syst_JES_Zjet_MuSmearID: 3.62924713e-05 + syst_JES_Zjet_MuSmearMS: 1.81247385e-04 + syst_JES_Zjet_OOC: 4.80597344e-03 + syst_JES_Zjet_Stat1: 4.06217725e-05 + syst_JES_Zjet_Stat10: 9.58861090e-04 + syst_JES_Zjet_Stat11: 1.54757717e-04 + syst_JES_Zjet_Stat12: 1.62466366e-06 + syst_JES_Zjet_Stat13: 1.83553037e-05 syst_JES_Zjet_Stat2: 0.0 - syst_JES_Zjet_Stat3: 3.4197781726305e-05 - syst_JES_Zjet_Stat4: 1.812910022587994e-05 - syst_JES_Zjet_Stat5: 4.086225978822023e-05 - syst_JES_Zjet_Stat6: 4.835892549467988e-05 - syst_JES_Zjet_Stat7: 0.0003456933905934564 - syst_JES_Zjet_Stat8: 0.0002987452426399457 - syst_JES_Zjet_Stat9: 0.0005050089182380842 - syst_JES_Zjet_Veto: 0.0002805595836894544 - syst_JES_Zjet_dPhi: 0.0004843886662588216 - syst_PRW: 0.0004834 - syst_Unfolding_bias: 0.0007764 - syst_cleaning: 0.0044886096678147455 + syst_JES_Zjet_Stat3: 3.41977817e-05 + syst_JES_Zjet_Stat4: 1.81291002e-05 + syst_JES_Zjet_Stat5: 4.08622598e-05 + syst_JES_Zjet_Stat6: 4.83589255e-05 + syst_JES_Zjet_Stat7: 3.45693391e-04 + syst_JES_Zjet_Stat8: 2.98745243e-04 + syst_JES_Zjet_Stat9: 5.05008918e-04 + syst_JES_Zjet_Veto: 2.80559584e-04 + syst_JES_Zjet_dPhi: 4.84388666e-04 + syst_PRW: 4.83400000e-04 + syst_Unfolding_bias: 7.76400000e-04 + syst_cleaning: 4.48860967e-03 syst_lumi: 0.008166 - stat: 0.011811 syst_JER_CROSS_CALIB_FORWARD: 0.001661 - syst_JER_NOISE_FORWARD: 0.0008504 - syst_JER_NP0: 0.003802181314719223 - syst_JER_NP1: 0.00013781409808415827 + syst_JER_NOISE_FORWARD: 8.50400000e-04 + syst_JER_NP0: 3.80218131e-03 + syst_JER_NP1: 1.37814098e-04 syst_JER_NP2: 0.0 syst_JER_NP3: 0.0 syst_JER_NP4: 0.0 @@ -45507,9 +45507,9 @@ bins: syst_JER_NP6: 0.0 syst_JER_NP7: 0.0 syst_JER_NP8: 0.0 - syst_JES_EtaIntercalibration_Modelling: 0.00584384214365857 - syst_JES_EtaIntercalibration_NonClosure: 0.002417687893422143 - syst_JES_EtaIntercalibration_Stat0: 0.0020715102582415565 + syst_JES_EtaIntercalibration_Modelling: 5.84384214e-03 + syst_JES_EtaIntercalibration_NonClosure: 2.41768789e-03 + syst_JES_EtaIntercalibration_Stat0: 2.07151026e-03 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 syst_JES_EtaIntercalibration_Stat100: 0.0 @@ -45756,35 +45756,35 @@ bins: syst_JES_EtaIntercalibration_Stat98: 0.0 syst_JES_EtaIntercalibration_Stat99: 0.0 syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0 - syst_JES_Flavour_Comp: 1.181605060924271e-05 - syst_JES_Flavour_Response: 0.004897604618586518 - syst_JES_Gjet_Generator: 0.003463195200966876 - syst_JES_Gjet_OOC: 0.0018515428701491089 - syst_JES_Gjet_Purity: 0.0006893754909336421 - syst_JES_Gjet_Stat1: 1.6889780193951608e-06 - syst_JES_Gjet_Stat10: 2.5281958976878763e-05 - syst_JES_Gjet_Stat11: 2.5167950796747437e-05 - syst_JES_Gjet_Stat12: 2.576558844660839e-05 - syst_JES_Gjet_Stat13: 1.8824213416501632e-07 - syst_JES_Gjet_Stat14: 8.002074730968213e-12 + syst_JES_Flavour_Comp: 1.18160506e-05 + syst_JES_Flavour_Response: 4.89760462e-03 + syst_JES_Gjet_Generator: 3.46319520e-03 + syst_JES_Gjet_OOC: 1.85154287e-03 + syst_JES_Gjet_Purity: 6.89375491e-04 + syst_JES_Gjet_Stat1: 1.68897802e-06 + syst_JES_Gjet_Stat10: 2.52819590e-05 + syst_JES_Gjet_Stat11: 2.51679508e-05 + syst_JES_Gjet_Stat12: 2.57655884e-05 + syst_JES_Gjet_Stat13: 1.88242134e-07 + syst_JES_Gjet_Stat14: 8.00207473e-12 syst_JES_Gjet_Stat15: 0.0 - syst_JES_Gjet_Stat2: 3.974842229573396e-06 - syst_JES_Gjet_Stat3: 3.045629163243615e-06 - syst_JES_Gjet_Stat4: 1.265124818940803e-05 - syst_JES_Gjet_Stat5: 1.2735997438363436e-05 - syst_JES_Gjet_Stat6: 3.542377286512548e-05 - syst_JES_Gjet_Stat7: 5.576476553344415e-05 - syst_JES_Gjet_Stat8: 3.452882848794613e-05 - syst_JES_Gjet_Stat9: 6.123052731277103e-05 - syst_JES_Gjet_Veto: 0.0005534327149708444 - syst_JES_Gjet_dPhi: 3.935938865124813e-05 - syst_JES_LArESZee: 0.0026220825215847042 - syst_JES_LArEsmear: 7.730778534533246e-05 - syst_JES_LAr_JVT: 9.727670571621964e-05 + syst_JES_Gjet_Stat2: 3.97484223e-06 + syst_JES_Gjet_Stat3: 3.04562916e-06 + syst_JES_Gjet_Stat4: 1.26512482e-05 + syst_JES_Gjet_Stat5: 1.27359974e-05 + syst_JES_Gjet_Stat6: 3.54237729e-05 + syst_JES_Gjet_Stat7: 5.57647655e-05 + syst_JES_Gjet_Stat8: 3.45288285e-05 + syst_JES_Gjet_Stat9: 6.12305273e-05 + syst_JES_Gjet_Veto: 5.53432715e-04 + syst_JES_Gjet_dPhi: 3.93593887e-05 + syst_JES_LArESZee: 2.62208252e-03 + syst_JES_LArEsmear: 7.73077853e-05 + syst_JES_LAr_JVT: 9.72767057e-05 syst_JES_MJB_Alpha: 0.0 syst_JES_MJB_Asym: 0.0 syst_JES_MJB_Beta: 0.0 - syst_JES_MJB_Fragmentation: 2.16550259928267e-05 + syst_JES_MJB_Fragmentation: 2.16550260e-05 syst_JES_MJB_Stat1: 0.0 syst_JES_MJB_Stat10: 0.0 syst_JES_MJB_Stat11: 0.0 @@ -45801,42 +45801,42 @@ bins: syst_JES_MJB_Stat7: 0.0 syst_JES_MJB_Stat8: 0.0 syst_JES_MJB_Stat9: 0.0 - syst_JES_MJB_Threshold: 1.4921617707205877e-07 - syst_JES_Pileup_MuOffset: 8.088677271346657e-05 - syst_JES_Pileup_NPVOffset: 3.750756019619048e-05 - syst_JES_Pileup_Pt_term: 0.0022517134098281695 - syst_JES_Pileup_Rho_topology: 0.0010300758855540694 - syst_JES_PunchThrough_MC15: 8.444613712302062e-10 + syst_JES_MJB_Threshold: 1.49216177e-07 + syst_JES_Pileup_MuOffset: 8.08867727e-05 + syst_JES_Pileup_NPVOffset: 3.75075602e-05 + syst_JES_Pileup_Pt_term: 2.25171341e-03 + syst_JES_Pileup_Rho_topology: 1.03007589e-03 + syst_JES_PunchThrough_MC15: 8.44461371e-10 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.0023755051568034955 - syst_JES_Zjet_MuScale: 0.00010627649069761385 - syst_JES_Zjet_MuSmearID: 6.052604150281101e-06 - syst_JES_Zjet_MuSmearMS: 7.461327897901285e-05 - syst_JES_Zjet_OOC: 0.0012350804376638795 - syst_JES_Zjet_Stat1: 1.2625828319361864e-05 - syst_JES_Zjet_Stat10: 7.361775465707984e-05 - syst_JES_Zjet_Stat11: 5.8740547520430886e-05 - syst_JES_Zjet_Stat12: 4.933746725359948e-07 - syst_JES_Zjet_Stat13: 2.115875538565537e-05 + syst_JES_Zjet_MC: 2.37550516e-03 + syst_JES_Zjet_MuScale: 1.06276491e-04 + syst_JES_Zjet_MuSmearID: 6.05260415e-06 + syst_JES_Zjet_MuSmearMS: 7.46132790e-05 + syst_JES_Zjet_OOC: 1.23508044e-03 + syst_JES_Zjet_Stat1: 1.26258283e-05 + syst_JES_Zjet_Stat10: 7.36177547e-05 + syst_JES_Zjet_Stat11: 5.87405475e-05 + syst_JES_Zjet_Stat12: 4.93374673e-07 + syst_JES_Zjet_Stat13: 2.11587554e-05 syst_JES_Zjet_Stat2: 0.0 - syst_JES_Zjet_Stat3: 3.974842229573396e-06 - syst_JES_Zjet_Stat4: 3.045629163243615e-06 - syst_JES_Zjet_Stat5: 1.265124818940803e-05 - syst_JES_Zjet_Stat6: 1.3856835524390119e-05 - syst_JES_Zjet_Stat7: 3.856938423153784e-06 - syst_JES_Zjet_Stat8: 8.895278972578658e-05 - syst_JES_Zjet_Stat9: 5.576476553344415e-05 - syst_JES_Zjet_Veto: 0.00011233966174063371 - syst_JES_Zjet_dPhi: 0.00012332124391198785 + syst_JES_Zjet_Stat3: 3.97484223e-06 + syst_JES_Zjet_Stat4: 3.04562916e-06 + syst_JES_Zjet_Stat5: 1.26512482e-05 + syst_JES_Zjet_Stat6: 1.38568355e-05 + syst_JES_Zjet_Stat7: 3.85693842e-06 + syst_JES_Zjet_Stat8: 8.89527897e-05 + syst_JES_Zjet_Stat9: 5.57647655e-05 + syst_JES_Zjet_Veto: 1.12339662e-04 + syst_JES_Zjet_dPhi: 1.23321244e-04 syst_PRW: 2.62e-05 - syst_Unfolding_bias: 2.135e-05 - syst_cleaning: 0.001247942606853376 + syst_Unfolding_bias: 2.13500000e-05 + syst_cleaning: 1.24794261e-03 syst_lumi: 0.002473 - stat: 0.00476 - syst_JER_CROSS_CALIB_FORWARD: 0.0003764 - syst_JER_NOISE_FORWARD: 0.0002703 - syst_JER_NP0: 0.0011799337608527014 - syst_JER_NP1: 1.5587444050581223e-05 + syst_JER_CROSS_CALIB_FORWARD: 3.76400000e-04 + syst_JER_NOISE_FORWARD: 2.70300000e-04 + syst_JER_NP0: 1.17993376e-03 + syst_JER_NP1: 1.55874441e-05 syst_JER_NP2: 0.0 syst_JER_NP3: 0.0 syst_JER_NP4: 0.0 @@ -45844,9 +45844,9 @@ bins: syst_JER_NP6: 0.0 syst_JER_NP7: 0.0 syst_JER_NP8: 0.0 - syst_JES_EtaIntercalibration_Modelling: 0.001917251785108049 - syst_JES_EtaIntercalibration_NonClosure: 0.00070280531265778 - syst_JES_EtaIntercalibration_Stat0: 0.0007034826010641627 + syst_JES_EtaIntercalibration_Modelling: 1.91725179e-03 + syst_JES_EtaIntercalibration_NonClosure: 7.02805313e-04 + syst_JES_EtaIntercalibration_Stat0: 7.03482601e-04 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 syst_JES_EtaIntercalibration_Stat100: 0.0 @@ -46093,35 +46093,35 @@ bins: syst_JES_EtaIntercalibration_Stat98: 0.0 syst_JES_EtaIntercalibration_Stat99: 0.0 syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0 - syst_JES_Flavour_Comp: 1.0082267790291458e-05 - syst_JES_Flavour_Response: 0.0014171378620303672 - syst_JES_Gjet_Generator: 0.0010527955214570397 - syst_JES_Gjet_OOC: 0.000572498131001316 - syst_JES_Gjet_Purity: 0.0001941359510755285 - syst_JES_Gjet_Stat1: 2.0876247268127476e-07 - syst_JES_Gjet_Stat10: 1.286062597850794e-05 - syst_JES_Gjet_Stat11: 1.260989403920588e-05 - syst_JES_Gjet_Stat12: 1.2985054850480994e-05 - syst_JES_Gjet_Stat13: 2.2292785828603833e-07 - syst_JES_Gjet_Stat14: 4.3465815015940976e-10 + syst_JES_Flavour_Comp: 1.00822678e-05 + syst_JES_Flavour_Response: 1.41713786e-03 + syst_JES_Gjet_Generator: 1.05279552e-03 + syst_JES_Gjet_OOC: 5.72498131e-04 + syst_JES_Gjet_Purity: 1.94135951e-04 + syst_JES_Gjet_Stat1: 2.08762473e-07 + syst_JES_Gjet_Stat10: 1.28606260e-05 + syst_JES_Gjet_Stat11: 1.26098940e-05 + syst_JES_Gjet_Stat12: 1.29850549e-05 + syst_JES_Gjet_Stat13: 2.22927858e-07 + syst_JES_Gjet_Stat14: 4.34658150e-10 syst_JES_Gjet_Stat15: 0.0 - syst_JES_Gjet_Stat2: 4.344599722644193e-07 - syst_JES_Gjet_Stat3: 3.927088584435039e-07 - syst_JES_Gjet_Stat4: 4.079397512807498e-06 - syst_JES_Gjet_Stat5: 4.205393319001209e-06 - syst_JES_Gjet_Stat6: 3.294083412468482e-05 - syst_JES_Gjet_Stat7: 1.7863418149951037e-05 - syst_JES_Gjet_Stat8: 3.314079558957019e-05 - syst_JES_Gjet_Stat9: 1.878392086333415e-05 - syst_JES_Gjet_Veto: 0.00020320877810763984 - syst_JES_Gjet_dPhi: 1.4460995816332982e-05 - syst_JES_LArESZee: 0.0008624977217361213 - syst_JES_LArEsmear: 2.076976347963549e-05 - syst_JES_LAr_JVT: 2.917273513059754e-05 + syst_JES_Gjet_Stat2: 4.34459972e-07 + syst_JES_Gjet_Stat3: 3.92708858e-07 + syst_JES_Gjet_Stat4: 4.07939751e-06 + syst_JES_Gjet_Stat5: 4.20539332e-06 + syst_JES_Gjet_Stat6: 3.29408341e-05 + syst_JES_Gjet_Stat7: 1.78634181e-05 + syst_JES_Gjet_Stat8: 3.31407956e-05 + syst_JES_Gjet_Stat9: 1.87839209e-05 + syst_JES_Gjet_Veto: 2.03208778e-04 + syst_JES_Gjet_dPhi: 1.44609958e-05 + syst_JES_LArESZee: 8.62497722e-04 + syst_JES_LArEsmear: 2.07697635e-05 + syst_JES_LAr_JVT: 2.91727351e-05 syst_JES_MJB_Alpha: 0.0 syst_JES_MJB_Asym: 0.0 syst_JES_MJB_Beta: 0.0 - syst_JES_MJB_Fragmentation: 1.1141039345029708e-05 + syst_JES_MJB_Fragmentation: 1.11410393e-05 syst_JES_MJB_Stat1: 0.0 syst_JES_MJB_Stat10: 0.0 syst_JES_MJB_Stat11: 0.0 @@ -46138,42 +46138,42 @@ bins: syst_JES_MJB_Stat7: 0.0 syst_JES_MJB_Stat8: 0.0 syst_JES_MJB_Stat9: 0.0 - syst_JES_MJB_Threshold: 1.2366842766041786e-07 - syst_JES_Pileup_MuOffset: 7.771711973561554e-06 - syst_JES_Pileup_NPVOffset: 2.5530411458974546e-05 - syst_JES_Pileup_Pt_term: 0.0006635413692265164 - syst_JES_Pileup_Rho_topology: 0.00029288176368630396 - syst_JES_PunchThrough_MC15: 4.1404674554934015e-11 + syst_JES_MJB_Threshold: 1.23668428e-07 + syst_JES_Pileup_MuOffset: 7.77171197e-06 + syst_JES_Pileup_NPVOffset: 2.55304115e-05 + syst_JES_Pileup_Pt_term: 6.63541369e-04 + syst_JES_Pileup_Rho_topology: 2.92881764e-04 + syst_JES_PunchThrough_MC15: 4.14046746e-11 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.0007482831950538513 - syst_JES_Zjet_MuScale: 2.047045370772226e-05 - syst_JES_Zjet_MuSmearID: 1.360792036830022e-06 - syst_JES_Zjet_MuSmearMS: 2.0745603751156534e-05 - syst_JES_Zjet_OOC: 0.0003427905907401777 - syst_JES_Zjet_Stat1: 4.076808846082926e-06 - syst_JES_Zjet_Stat10: 2.1421057396870023e-05 - syst_JES_Zjet_Stat11: 1.0935665000355486e-05 - syst_JES_Zjet_Stat12: 1.5233386852568277e-07 - syst_JES_Zjet_Stat13: 1.0459662900877829e-05 + syst_JES_Zjet_MC: 7.48283195e-04 + syst_JES_Zjet_MuScale: 2.04704537e-05 + syst_JES_Zjet_MuSmearID: 1.36079204e-06 + syst_JES_Zjet_MuSmearMS: 2.07456038e-05 + syst_JES_Zjet_OOC: 3.42790591e-04 + syst_JES_Zjet_Stat1: 4.07680885e-06 + syst_JES_Zjet_Stat10: 2.14210574e-05 + syst_JES_Zjet_Stat11: 1.09356650e-05 + syst_JES_Zjet_Stat12: 1.52333869e-07 + syst_JES_Zjet_Stat13: 1.04596629e-05 syst_JES_Zjet_Stat2: 0.0 - syst_JES_Zjet_Stat3: 4.344599722644193e-07 - syst_JES_Zjet_Stat4: 3.927088584435039e-07 - syst_JES_Zjet_Stat5: 4.079397512807498e-06 - syst_JES_Zjet_Stat6: 4.246822361189599e-06 - syst_JES_Zjet_Stat7: 1.4043346004692041e-05 - syst_JES_Zjet_Stat8: 4.636890633819176e-05 - syst_JES_Zjet_Stat9: 1.7863418149951037e-05 - syst_JES_Zjet_Veto: 2.4231885502370633e-05 - syst_JES_Zjet_dPhi: 6.42005660021779e-05 + syst_JES_Zjet_Stat3: 4.34459972e-07 + syst_JES_Zjet_Stat4: 3.92708858e-07 + syst_JES_Zjet_Stat5: 4.07939751e-06 + syst_JES_Zjet_Stat6: 4.24682236e-06 + syst_JES_Zjet_Stat7: 1.40433460e-05 + syst_JES_Zjet_Stat8: 4.63689063e-05 + syst_JES_Zjet_Stat9: 1.78634181e-05 + syst_JES_Zjet_Veto: 2.42318855e-05 + syst_JES_Zjet_dPhi: 6.42005660e-05 syst_PRW: 1.51e-06 - syst_Unfolding_bias: 0.0001565 - syst_cleaning: 0.00036295124672605823 - syst_lumi: 0.0007631 -- stat: 0.0011234 - syst_JER_CROSS_CALIB_FORWARD: 3.759e-05 - syst_JER_NOISE_FORWARD: 5.651e-05 - syst_JER_NP0: 0.00023591581125477788 - syst_JER_NP1: 7.938583186406753e-07 + syst_Unfolding_bias: 1.56500000e-04 + syst_cleaning: 3.62951247e-04 + syst_lumi: 7.63100000e-04 +- stat: 1.12340000e-03 + syst_JER_CROSS_CALIB_FORWARD: 3.75900000e-05 + syst_JER_NOISE_FORWARD: 5.65100000e-05 + syst_JER_NP0: 2.35915811e-04 + syst_JER_NP1: 7.93858319e-07 syst_JER_NP2: 0.0 syst_JER_NP3: 0.0 syst_JER_NP4: 0.0 @@ -46181,9 +46181,9 @@ bins: syst_JER_NP6: 0.0 syst_JER_NP7: 0.0 syst_JER_NP8: 0.0 - syst_JES_EtaIntercalibration_Modelling: 0.0004245177145891559 - syst_JES_EtaIntercalibration_NonClosure: 0.0001417131492663966 - syst_JES_EtaIntercalibration_Stat0: 0.00015823950202146112 + syst_JES_EtaIntercalibration_Modelling: 4.24517715e-04 + syst_JES_EtaIntercalibration_NonClosure: 1.41713149e-04 + syst_JES_EtaIntercalibration_Stat0: 1.58239502e-04 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 syst_JES_EtaIntercalibration_Stat100: 0.0 @@ -46430,35 +46430,35 @@ bins: syst_JES_EtaIntercalibration_Stat98: 0.0 syst_JES_EtaIntercalibration_Stat99: 0.0 syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0 - syst_JES_Flavour_Comp: 2.616131308600902e-07 - syst_JES_Flavour_Response: 0.00027871341463948235 - syst_JES_Gjet_Generator: 0.00021802460870277925 - syst_JES_Gjet_OOC: 0.00012317321259105 - syst_JES_Gjet_Purity: 4.322716131091655e-05 - syst_JES_Gjet_Stat1: 1.1617401032502923e-08 - syst_JES_Gjet_Stat10: 3.2831067917829173e-06 - syst_JES_Gjet_Stat11: 3.219415050517718e-06 - syst_JES_Gjet_Stat12: 3.2446161157677807e-06 - syst_JES_Gjet_Stat13: 2.429381557104606e-07 - syst_JES_Gjet_Stat14: 3.956004044487316e-09 + syst_JES_Flavour_Comp: 2.61613131e-07 + syst_JES_Flavour_Response: 2.78713415e-04 + syst_JES_Gjet_Generator: 2.18024609e-04 + syst_JES_Gjet_OOC: 1.23173213e-04 + syst_JES_Gjet_Purity: 4.32271613e-05 + syst_JES_Gjet_Stat1: 1.16174010e-08 + syst_JES_Gjet_Stat10: 3.28310679e-06 + syst_JES_Gjet_Stat11: 3.21941505e-06 + syst_JES_Gjet_Stat12: 3.24461612e-06 + syst_JES_Gjet_Stat13: 2.42938156e-07 + syst_JES_Gjet_Stat14: 3.95600404e-09 syst_JES_Gjet_Stat15: 0.0 - syst_JES_Gjet_Stat2: 2.5359469631678026e-08 - syst_JES_Gjet_Stat3: 2.4601781947655744e-08 - syst_JES_Gjet_Stat4: 8.625954381980002e-07 - syst_JES_Gjet_Stat5: 8.73243612916808e-07 - syst_JES_Gjet_Stat6: 1.63824378259159e-05 - syst_JES_Gjet_Stat7: 8.227874740782093e-06 - syst_JES_Gjet_Stat8: 1.6429473820164387e-05 - syst_JES_Gjet_Stat9: 3.838754043631865e-06 - syst_JES_Gjet_Veto: 5.4209125384938654e-05 - syst_JES_Gjet_dPhi: 7.298666504917182e-06 - syst_JES_LArESZee: 0.0001960229068246872 - syst_JES_LArEsmear: 5.913094177332202e-06 - syst_JES_LAr_JVT: 9.297563699701122e-06 + syst_JES_Gjet_Stat2: 2.53594696e-08 + syst_JES_Gjet_Stat3: 2.46017819e-08 + syst_JES_Gjet_Stat4: 8.62595438e-07 + syst_JES_Gjet_Stat5: 8.73243613e-07 + syst_JES_Gjet_Stat6: 1.63824378e-05 + syst_JES_Gjet_Stat7: 8.22787474e-06 + syst_JES_Gjet_Stat8: 1.64294738e-05 + syst_JES_Gjet_Stat9: 3.83875404e-06 + syst_JES_Gjet_Veto: 5.42091254e-05 + syst_JES_Gjet_dPhi: 7.29866650e-06 + syst_JES_LArESZee: 1.96022907e-04 + syst_JES_LArEsmear: 5.91309418e-06 + syst_JES_LAr_JVT: 9.29756370e-06 syst_JES_MJB_Alpha: 0.0 syst_JES_MJB_Asym: 0.0 syst_JES_MJB_Beta: 0.0 - syst_JES_MJB_Fragmentation: 3.1803463207644538e-06 + syst_JES_MJB_Fragmentation: 3.18034632e-06 syst_JES_MJB_Stat1: 0.0 syst_JES_MJB_Stat10: 0.0 syst_JES_MJB_Stat11: 0.0 @@ -46475,42 +46475,42 @@ bins: syst_JES_MJB_Stat7: 0.0 syst_JES_MJB_Stat8: 0.0 syst_JES_MJB_Stat9: 0.0 - syst_JES_MJB_Threshold: 1.4150855097837727e-07 - syst_JES_Pileup_MuOffset: 3.343637481471339e-07 - syst_JES_Pileup_NPVOffset: 4.692202956295369e-06 - syst_JES_Pileup_Pt_term: 0.00013993161213607166 - syst_JES_Pileup_Rho_topology: 7.416459583251297e-05 - syst_JES_PunchThrough_MC15: 1.171645768779967e-12 + syst_JES_MJB_Threshold: 1.41508551e-07 + syst_JES_Pileup_MuOffset: 3.34363748e-07 + syst_JES_Pileup_NPVOffset: 4.69220296e-06 + syst_JES_Pileup_Pt_term: 1.39931612e-04 + syst_JES_Pileup_Rho_topology: 7.41645958e-05 + syst_JES_PunchThrough_MC15: 1.17164577e-12 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 0.0001849726128376847 - syst_JES_Zjet_MuScale: 7.086435546168468e-06 - syst_JES_Zjet_MuSmearID: 2.5351808613982555e-07 - syst_JES_Zjet_MuSmearMS: 4.957303778264955e-06 - syst_JES_Zjet_OOC: 6.547059131205399e-05 - syst_JES_Zjet_Stat1: 8.62508868070352e-07 - syst_JES_Zjet_Stat10: 1.3318531563201703e-05 - syst_JES_Zjet_Stat11: 1.1038787554346719e-05 - syst_JES_Zjet_Stat12: 3.121155555239117e-08 - syst_JES_Zjet_Stat13: 3.2334090369144453e-06 + syst_JES_Zjet_MC: 1.84972613e-04 + syst_JES_Zjet_MuScale: 7.08643555e-06 + syst_JES_Zjet_MuSmearID: 2.53518086e-07 + syst_JES_Zjet_MuSmearMS: 4.95730378e-06 + syst_JES_Zjet_OOC: 6.54705913e-05 + syst_JES_Zjet_Stat1: 8.62508868e-07 + syst_JES_Zjet_Stat10: 1.33185316e-05 + syst_JES_Zjet_Stat11: 1.10387876e-05 + syst_JES_Zjet_Stat12: 3.12115556e-08 + syst_JES_Zjet_Stat13: 3.23340904e-06 syst_JES_Zjet_Stat2: 0.0 - syst_JES_Zjet_Stat3: 2.5359469631678026e-08 - syst_JES_Zjet_Stat4: 2.4601781947655744e-08 - syst_JES_Zjet_Stat5: 8.625954381980002e-07 - syst_JES_Zjet_Stat6: 8.741093223962321e-07 - syst_JES_Zjet_Stat7: 3.343466467485617e-06 - syst_JES_Zjet_Stat8: 1.5145201905223977e-05 - syst_JES_Zjet_Stat9: 8.227874740782093e-06 - syst_JES_Zjet_Veto: 5.336260705775159e-06 - syst_JES_Zjet_dPhi: 1.4327335647286276e-05 - syst_PRW: 4.632e-08 - syst_Unfolding_bias: 3.406e-05 - syst_cleaning: 7.253828782098458e-05 - syst_lumi: 0.0001561 -- stat: 0.00013851 - syst_JER_CROSS_CALIB_FORWARD: 1.3589e-06 - syst_JER_NOISE_FORWARD: 5.558e-06 - syst_JER_NP0: 1.9533985768398622e-05 - syst_JER_NP1: 1.6988971199869638e-08 + syst_JES_Zjet_Stat3: 2.53594696e-08 + syst_JES_Zjet_Stat4: 2.46017819e-08 + syst_JES_Zjet_Stat5: 8.62595438e-07 + syst_JES_Zjet_Stat6: 8.74109322e-07 + syst_JES_Zjet_Stat7: 3.34346647e-06 + syst_JES_Zjet_Stat8: 1.51452019e-05 + syst_JES_Zjet_Stat9: 8.22787474e-06 + syst_JES_Zjet_Veto: 5.33626071e-06 + syst_JES_Zjet_dPhi: 1.43273356e-05 + syst_PRW: 4.63200000e-08 + syst_Unfolding_bias: 3.40600000e-05 + syst_cleaning: 7.25382878e-05 + syst_lumi: 1.56100000e-04 +- stat: 1.38510000e-04 + syst_JER_CROSS_CALIB_FORWARD: 1.35890000e-06 + syst_JER_NOISE_FORWARD: 5.55800000e-06 + syst_JER_NP0: 1.95339858e-05 + syst_JER_NP1: 1.69889712e-08 syst_JER_NP2: 0.0 syst_JER_NP3: 0.0 syst_JER_NP4: 0.0 @@ -46518,9 +46518,9 @@ bins: syst_JER_NP6: 0.0 syst_JER_NP7: 0.0 syst_JER_NP8: 0.0 - syst_JES_EtaIntercalibration_Modelling: 4.089881508063528e-05 - syst_JES_EtaIntercalibration_NonClosure: 1.2789848630847825e-05 - syst_JES_EtaIntercalibration_Stat0: 1.4839382568018117e-05 + syst_JES_EtaIntercalibration_Modelling: 4.08988151e-05 + syst_JES_EtaIntercalibration_NonClosure: 1.27898486e-05 + syst_JES_EtaIntercalibration_Stat0: 1.48393826e-05 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 syst_JES_EtaIntercalibration_Stat100: 0.0 @@ -46767,35 +46767,35 @@ bins: syst_JES_EtaIntercalibration_Stat98: 0.0 syst_JES_EtaIntercalibration_Stat99: 0.0 syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0 - syst_JES_Flavour_Comp: 4.5760975486240457e-07 - syst_JES_Flavour_Response: 2.48281589128151e-05 - syst_JES_Gjet_Generator: 2.0317462316933182e-05 - syst_JES_Gjet_OOC: 1.1645946977382303e-05 - syst_JES_Gjet_Purity: 4.445913832667026e-06 - syst_JES_Gjet_Stat1: 2.8119546582404206e-10 - syst_JES_Gjet_Stat10: 3.0891133014804975e-07 - syst_JES_Gjet_Stat11: 3.156721443206543e-07 - syst_JES_Gjet_Stat12: 2.8871049624667267e-07 - syst_JES_Gjet_Stat13: 8.798480039188589e-08 - syst_JES_Gjet_Stat14: 3.5100009615383295e-09 + syst_JES_Flavour_Comp: 4.57609755e-07 + syst_JES_Flavour_Response: 2.48281589e-05 + syst_JES_Gjet_Generator: 2.03174623e-05 + syst_JES_Gjet_OOC: 1.16459470e-05 + syst_JES_Gjet_Purity: 4.44591383e-06 + syst_JES_Gjet_Stat1: 2.81195466e-10 + syst_JES_Gjet_Stat10: 3.08911330e-07 + syst_JES_Gjet_Stat11: 3.15672144e-07 + syst_JES_Gjet_Stat12: 2.88710496e-07 + syst_JES_Gjet_Stat13: 8.79848004e-08 + syst_JES_Gjet_Stat14: 3.51000096e-09 syst_JES_Gjet_Stat15: 0.0 - syst_JES_Gjet_Stat2: 7.031818736998274e-10 - syst_JES_Gjet_Stat3: 6.985834434768691e-10 - syst_JES_Gjet_Stat4: 8.005520022089446e-08 - syst_JES_Gjet_Stat5: 8.037561759580761e-08 - syst_JES_Gjet_Stat6: 1.7243768167780846e-06 - syst_JES_Gjet_Stat7: 1.2409931546950613e-06 - syst_JES_Gjet_Stat8: 1.7260043457890784e-06 - syst_JES_Gjet_Stat9: 3.598989192467796e-07 - syst_JES_Gjet_Veto: 5.7357584284905165e-06 - syst_JES_Gjet_dPhi: 1.1801769221180356e-06 - syst_JES_LArESZee: 1.9727153874799068e-05 - syst_JES_LArEsmear: 9.217398331416517e-07 - syst_JES_LAr_JVT: 1.6139559125019493e-06 + syst_JES_Gjet_Stat2: 7.03181874e-10 + syst_JES_Gjet_Stat3: 6.98583443e-10 + syst_JES_Gjet_Stat4: 8.00552002e-08 + syst_JES_Gjet_Stat5: 8.03756176e-08 + syst_JES_Gjet_Stat6: 1.72437682e-06 + syst_JES_Gjet_Stat7: 1.24099315e-06 + syst_JES_Gjet_Stat8: 1.72600435e-06 + syst_JES_Gjet_Stat9: 3.59898919e-07 + syst_JES_Gjet_Veto: 5.73575843e-06 + syst_JES_Gjet_dPhi: 1.18017692e-06 + syst_JES_LArESZee: 1.97271539e-05 + syst_JES_LArEsmear: 9.21739833e-07 + syst_JES_LAr_JVT: 1.61395591e-06 syst_JES_MJB_Alpha: 0.0 syst_JES_MJB_Asym: 0.0 syst_JES_MJB_Beta: 0.0 - syst_JES_MJB_Fragmentation: 4.014660317822667e-07 + syst_JES_MJB_Fragmentation: 4.01466032e-07 syst_JES_MJB_Stat1: 0.0 syst_JES_MJB_Stat10: 0.0 syst_JES_MJB_Stat11: 0.0 @@ -46812,42 +46812,42 @@ bins: syst_JES_MJB_Stat7: 0.0 syst_JES_MJB_Stat8: 0.0 syst_JES_MJB_Stat9: 0.0 - syst_JES_MJB_Threshold: 5.0350716976027265e-08 - syst_JES_Pileup_MuOffset: 6.285612380667456e-09 - syst_JES_Pileup_NPVOffset: 3.775140777782333e-07 - syst_JES_Pileup_Pt_term: 1.4070590277241393e-05 - syst_JES_Pileup_Rho_topology: 8.006651406799225e-06 - syst_JES_PunchThrough_MC15: 1.760629645893764e-14 + syst_JES_MJB_Threshold: 5.03507170e-08 + syst_JES_Pileup_MuOffset: 6.28561238e-09 + syst_JES_Pileup_NPVOffset: 3.77514078e-07 + syst_JES_Pileup_Pt_term: 1.40705903e-05 + syst_JES_Pileup_Rho_topology: 8.00665141e-06 + syst_JES_PunchThrough_MC15: 1.76062965e-14 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 2.1184368647660943e-05 - syst_JES_Zjet_MuScale: 1.1781892239788988e-06 - syst_JES_Zjet_MuSmearID: 2.358890571661814e-08 - syst_JES_Zjet_MuSmearMS: 7.551873012703537e-07 - syst_JES_Zjet_OOC: 5.8873102619107826e-06 - syst_JES_Zjet_Stat1: 8.004654029317882e-08 - syst_JES_Zjet_Stat10: 2.0583953628980023e-06 - syst_JES_Zjet_Stat11: 1.714720351194328e-06 - syst_JES_Zjet_Stat12: 3.537713774459432e-09 - syst_JES_Zjet_Stat13: 3.9249991082801536e-07 + syst_JES_Zjet_MC: 2.11843686e-05 + syst_JES_Zjet_MuScale: 1.17818922e-06 + syst_JES_Zjet_MuSmearID: 2.35889057e-08 + syst_JES_Zjet_MuSmearMS: 7.55187301e-07 + syst_JES_Zjet_OOC: 5.88731026e-06 + syst_JES_Zjet_Stat1: 8.00465403e-08 + syst_JES_Zjet_Stat10: 2.05839536e-06 + syst_JES_Zjet_Stat11: 1.71472035e-06 + syst_JES_Zjet_Stat12: 3.53771377e-09 + syst_JES_Zjet_Stat13: 3.92499911e-07 syst_JES_Zjet_Stat2: 0.0 - syst_JES_Zjet_Stat3: 7.031818736998274e-10 - syst_JES_Zjet_Stat4: 6.985834434768691e-10 - syst_JES_Zjet_Stat5: 8.005520022089446e-08 - syst_JES_Zjet_Stat6: 8.038427752618978e-08 - syst_JES_Zjet_Stat7: 2.320368414405512e-07 - syst_JES_Zjet_Stat8: 1.2828222197561125e-06 - syst_JES_Zjet_Stat9: 1.2409931546950613e-06 - syst_JES_Zjet_Veto: 8.434440511972326e-07 - syst_JES_Zjet_dPhi: 1.1890095994145715e-06 - syst_PRW: 7.112e-10 - syst_Unfolding_bias: 1.716e-06 - syst_cleaning: 6.498654629998427e-06 - syst_lumi: 1.464e-05 -- stat: 3.3693e-06 - syst_JER_CROSS_CALIB_FORWARD: 6.682e-09 - syst_JER_NOISE_FORWARD: 8.172e-08 - syst_JER_NP0: 2.2517646413424296e-07 - syst_JER_NP1: 5.661522972052219e-11 + syst_JES_Zjet_Stat3: 7.03181874e-10 + syst_JES_Zjet_Stat4: 6.98583443e-10 + syst_JES_Zjet_Stat5: 8.00552002e-08 + syst_JES_Zjet_Stat6: 8.03842775e-08 + syst_JES_Zjet_Stat7: 2.32036841e-07 + syst_JES_Zjet_Stat8: 1.28282222e-06 + syst_JES_Zjet_Stat9: 1.24099315e-06 + syst_JES_Zjet_Veto: 8.43444051e-07 + syst_JES_Zjet_dPhi: 1.18900960e-06 + syst_PRW: 7.11200000e-10 + syst_Unfolding_bias: 1.71600000e-06 + syst_cleaning: 6.49865463e-06 + syst_lumi: 1.46400000e-05 +- stat: 3.36930000e-06 + syst_JER_CROSS_CALIB_FORWARD: 6.68200000e-09 + syst_JER_NOISE_FORWARD: 8.17200000e-08 + syst_JER_NP0: 2.25176464e-07 + syst_JER_NP1: 5.66152297e-11 syst_JER_NP2: 0.0 syst_JER_NP3: 0.0 syst_JER_NP4: 0.0 @@ -46855,9 +46855,9 @@ bins: syst_JER_NP6: 0.0 syst_JER_NP7: 0.0 syst_JER_NP8: 0.0 - syst_JES_EtaIntercalibration_Modelling: 5.626393637802104e-07 - syst_JES_EtaIntercalibration_NonClosure: 1.651257329279722e-07 - syst_JES_EtaIntercalibration_Stat0: 1.9763420756539088e-07 + syst_JES_EtaIntercalibration_Modelling: 5.62639364e-07 + syst_JES_EtaIntercalibration_NonClosure: 1.65125733e-07 + syst_JES_EtaIntercalibration_Stat0: 1.97634208e-07 syst_JES_EtaIntercalibration_Stat1: 0.0 syst_JES_EtaIntercalibration_Stat10: 0.0 syst_JES_EtaIntercalibration_Stat100: 0.0 @@ -47104,35 +47104,35 @@ bins: syst_JES_EtaIntercalibration_Stat98: 0.0 syst_JES_EtaIntercalibration_Stat99: 0.0 syst_JES_EtaIntercalibration_TotalStat_MJB: 0.0 - syst_JES_Flavour_Comp: 1.1664772565681468e-08 - syst_JES_Flavour_Response: 3.207005144991196e-07 - syst_JES_Gjet_Generator: 2.743183324169203e-07 - syst_JES_Gjet_OOC: 1.6097865541741862e-07 - syst_JES_Gjet_Purity: 6.238670611596673e-08 - syst_JES_Gjet_Stat1: 1.0809304637672118e-12 - syst_JES_Gjet_Stat10: 3.910970912197497e-09 - syst_JES_Gjet_Stat11: 4.2954215517804535e-09 - syst_JES_Gjet_Stat12: 3.3307619488639534e-09 - syst_JES_Gjet_Stat13: 3.4663039032952666e-09 - syst_JES_Gjet_Stat14: 1.2860477246198915e-10 + syst_JES_Flavour_Comp: 1.16647726e-08 + syst_JES_Flavour_Response: 3.20700514e-07 + syst_JES_Gjet_Generator: 2.74318332e-07 + syst_JES_Gjet_OOC: 1.60978655e-07 + syst_JES_Gjet_Purity: 6.23867061e-08 + syst_JES_Gjet_Stat1: 1.08093046e-12 + syst_JES_Gjet_Stat10: 3.91097091e-09 + syst_JES_Gjet_Stat11: 4.29542155e-09 + syst_JES_Gjet_Stat12: 3.33076195e-09 + syst_JES_Gjet_Stat13: 3.46630390e-09 + syst_JES_Gjet_Stat14: 1.28604772e-10 syst_JES_Gjet_Stat15: 0.0 - syst_JES_Gjet_Stat2: 3.0727924157026943e-12 - syst_JES_Gjet_Stat3: 3.073005562555981e-12 - syst_JES_Gjet_Stat4: 1.0583270518496396e-09 - syst_JES_Gjet_Stat5: 1.0597992888404625e-09 - syst_JES_Gjet_Stat6: 1.7814532214761284e-08 - syst_JES_Gjet_Stat7: 1.5382334283196422e-08 - syst_JES_Gjet_Stat8: 1.7831507202786698e-08 - syst_JES_Gjet_Stat9: 4.976219749970855e-09 - syst_JES_Gjet_Veto: 8.042673249610479e-08 - syst_JES_Gjet_dPhi: 1.4628730858143505e-08 - syst_JES_LArESZee: 2.823206820266628e-07 - syst_JES_LArEsmear: 1.0463563064272132e-08 - syst_JES_LAr_JVT: 1.897342950022478e-08 + syst_JES_Gjet_Stat2: 3.07279242e-12 + syst_JES_Gjet_Stat3: 3.07300556e-12 + syst_JES_Gjet_Stat4: 1.05832705e-09 + syst_JES_Gjet_Stat5: 1.05979929e-09 + syst_JES_Gjet_Stat6: 1.78145322e-08 + syst_JES_Gjet_Stat7: 1.53823343e-08 + syst_JES_Gjet_Stat8: 1.78315072e-08 + syst_JES_Gjet_Stat9: 4.97621975e-09 + syst_JES_Gjet_Veto: 8.04267325e-08 + syst_JES_Gjet_dPhi: 1.46287309e-08 + syst_JES_LArESZee: 2.82320682e-07 + syst_JES_LArEsmear: 1.04635631e-08 + syst_JES_LAr_JVT: 1.89734295e-08 syst_JES_MJB_Alpha: 0.0 syst_JES_MJB_Asym: 0.0 syst_JES_MJB_Beta: 0.0 - syst_JES_MJB_Fragmentation: 7.045656300693357e-09 + syst_JES_MJB_Fragmentation: 7.04565630e-09 syst_JES_MJB_Stat1: 0.0 syst_JES_MJB_Stat10: 0.0 syst_JES_MJB_Stat11: 0.0 @@ -47149,34 +47149,34 @@ bins: syst_JES_MJB_Stat7: 0.0 syst_JES_MJB_Stat8: 0.0 syst_JES_MJB_Stat9: 0.0 - syst_JES_MJB_Threshold: 2.8561517816810787e-09 - syst_JES_Pileup_MuOffset: 1.9139161423636093e-11 - syst_JES_Pileup_NPVOffset: 4.8345796870048585e-09 - syst_JES_Pileup_Pt_term: 1.953497632453134e-07 - syst_JES_Pileup_Rho_topology: 1.1348540027245795e-07 - syst_JES_PunchThrough_MC15: 4.9138281410729045e-17 + syst_JES_MJB_Threshold: 2.85615178e-09 + syst_JES_Pileup_MuOffset: 1.91391614e-11 + syst_JES_Pileup_NPVOffset: 4.83457969e-09 + syst_JES_Pileup_Pt_term: 1.95349763e-07 + syst_JES_Pileup_Rho_topology: 1.13485400e-07 + syst_JES_PunchThrough_MC15: 4.91382814e-17 syst_JES_SingleParticle_HighPt: 0.0 - syst_JES_Zjet_MC: 3.18553021489359e-07 - syst_JES_Zjet_MuScale: 1.4576769558101685e-08 - syst_JES_Zjet_MuSmearID: 3.267187779677654e-10 - syst_JES_Zjet_MuSmearMS: 7.73853130445306e-09 - syst_JES_Zjet_OOC: 7.838863513769073e-08 - syst_JES_Zjet_Stat1: 1.0583270518496396e-09 - syst_JES_Zjet_Stat10: 2.5223801299566246e-08 - syst_JES_Zjet_Stat11: 1.9986608907153307e-08 - syst_JES_Zjet_Stat12: 6.742873793865639e-11 - syst_JES_Zjet_Stat13: 7.730280379779248e-09 + syst_JES_Zjet_MC: 3.18553021e-07 + syst_JES_Zjet_MuScale: 1.45767696e-08 + syst_JES_Zjet_MuSmearID: 3.26718778e-10 + syst_JES_Zjet_MuSmearMS: 7.73853130e-09 + syst_JES_Zjet_OOC: 7.83886351e-08 + syst_JES_Zjet_Stat1: 1.05832705e-09 + syst_JES_Zjet_Stat10: 2.52238013e-08 + syst_JES_Zjet_Stat11: 1.99866089e-08 + syst_JES_Zjet_Stat12: 6.74287379e-11 + syst_JES_Zjet_Stat13: 7.73028038e-09 syst_JES_Zjet_Stat2: 0.0 - syst_JES_Zjet_Stat3: 3.0727924157026943e-12 - syst_JES_Zjet_Stat4: 3.073005562555981e-12 - syst_JES_Zjet_Stat5: 1.0583270518496396e-09 - syst_JES_Zjet_Stat6: 1.0597992888404625e-09 - syst_JES_Zjet_Stat7: 2.124697992300729e-09 - syst_JES_Zjet_Stat8: 1.320836169818195e-08 - syst_JES_Zjet_Stat9: 1.5382334283196422e-08 - syst_JES_Zjet_Veto: 9.513149360227662e-09 - syst_JES_Zjet_dPhi: 1.2486901967661954e-08 - syst_PRW: 1.948e-12 - syst_Unfolding_bias: 1.0029e-08 - syst_cleaning: 8.752918756049322e-08 - syst_lumi: 2.025e-07 + syst_JES_Zjet_Stat3: 3.07279242e-12 + syst_JES_Zjet_Stat4: 3.07300556e-12 + syst_JES_Zjet_Stat5: 1.05832705e-09 + syst_JES_Zjet_Stat6: 1.05979929e-09 + syst_JES_Zjet_Stat7: 2.12469799e-09 + syst_JES_Zjet_Stat8: 1.32083617e-08 + syst_JES_Zjet_Stat9: 1.53823343e-08 + syst_JES_Zjet_Veto: 9.51314936e-09 + syst_JES_Zjet_dPhi: 1.24869020e-08 + syst_PRW: 1.94800000e-12 + syst_Unfolding_bias: 1.00290000e-08 + syst_cleaning: 8.75291876e-08 + syst_lumi: 2.02500000e-07 diff --git a/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_13TEV_HADR_DIF/data_d2Sig_dmttBar_dyttBar.yaml b/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_13TEV_HADR_DIF/data_d2Sig_dmttBar_dyttBar.yaml index 77bac308c7..b6500e42d6 100644 --- a/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_13TEV_HADR_DIF/data_d2Sig_dmttBar_dyttBar.yaml +++ b/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_13TEV_HADR_DIF/data_d2Sig_dmttBar_dyttBar.yaml @@ -1,12 +1,12 @@ data_central: -- 0.7569238 -- 0.6696305 -- 0.4818348 -- 0.1334117 +- 7.56923800e-01 +- 6.69630500e-01 +- 4.81834800e-01 +- 1.33411700e-01 - 0.202234 -- 0.1971964 -- 0.1578857 -- 0.04561878 -- 0.01063745 -- 0.007859592 -- 0.001781781 +- 1.97196400e-01 +- 1.57885700e-01 +- 4.56187800e-02 +- 1.06374500e-02 +- 7.85959200e-03 +- 1.78178100e-03 diff --git a/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_13TEV_HADR_DIF/data_d2Sig_dmttBar_dyttBar_norm.yaml b/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_13TEV_HADR_DIF/data_d2Sig_dmttBar_dyttBar_norm.yaml index d48ef10b61..3ab2a79cef 100644 --- a/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_13TEV_HADR_DIF/data_d2Sig_dmttBar_dyttBar_norm.yaml +++ b/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_13TEV_HADR_DIF/data_d2Sig_dmttBar_dyttBar_norm.yaml @@ -1,12 +1,12 @@ data_central: -- 0.0008937502 -- 0.0007906771 -- 0.0005689343 -- 0.000157528 -- 0.0002387912 -- 0.0002328429 -- 0.0001864262 -- 5.386512e-05 -- 1.256034e-05 -- 9.280342e-06 -- 2.103867e-06 +- 8.93750200e-04 +- 7.90677100e-04 +- 5.68934300e-04 +- 1.57528000e-04 +- 2.38791200e-04 +- 2.32842900e-04 +- 1.86426200e-04 +- 5.38651200e-05 +- 1.25603400e-05 +- 9.28034200e-06 +- 2.10386700e-06 diff --git a/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_13TEV_HADR_DIF/data_dSig_dmttBar.yaml b/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_13TEV_HADR_DIF/data_dSig_dmttBar.yaml index 6fcc1310ae..b28fbf2c65 100644 --- a/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_13TEV_HADR_DIF/data_dSig_dmttBar.yaml +++ b/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_13TEV_HADR_DIF/data_dSig_dmttBar.yaml @@ -2,9 +2,9 @@ data_central: - 3.755971 - 2.475661 - 1.095144 -- 0.5433309 -- 0.2582264 +- 5.43330900e-01 +- 2.58226400e-01 - 0.140046 -- 0.07230107 -- 0.03606311 -- 0.003269028 +- 7.23010700e-02 +- 3.60631100e-02 +- 3.26902800e-03 diff --git a/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_13TEV_HADR_DIF/data_dSig_dmttBar_norm.yaml b/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_13TEV_HADR_DIF/data_dSig_dmttBar_norm.yaml index 4698a8ebd4..2651ec97ee 100644 --- a/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_13TEV_HADR_DIF/data_dSig_dmttBar_norm.yaml +++ b/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_13TEV_HADR_DIF/data_dSig_dmttBar_norm.yaml @@ -1,10 +1,10 @@ data_central: -- 0.00384425 -- 0.002533848 -- 0.001120884 -- 0.0005561011 -- 0.0002642956 -- 0.0001433376 -- 7.400041e-05 -- 3.691072e-05 -- 3.345862e-06 +- 3.84425000e-03 +- 2.53384800e-03 +- 1.12088400e-03 +- 5.56101100e-04 +- 2.64295600e-04 +- 1.43337600e-04 +- 7.40004100e-05 +- 3.69107200e-05 +- 3.34586200e-06 diff --git a/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_13TEV_HADR_DIF/data_dSig_dyttBar_norm.yaml b/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_13TEV_HADR_DIF/data_dSig_dyttBar_norm.yaml index e695de95d0..f42a95909e 100644 --- a/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_13TEV_HADR_DIF/data_dSig_dyttBar_norm.yaml +++ b/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_13TEV_HADR_DIF/data_dSig_dyttBar_norm.yaml @@ -1,13 +1,13 @@ data_central: -- 0.7048442 -- 0.7374748 -- 0.7422349 -- 0.6981101 +- 7.04844200e-01 +- 7.37474800e-01 +- 7.42234900e-01 +- 6.98110100e-01 - 0.689934 -- 0.6364193 -- 0.5564977 -- 0.5129826 -- 0.4734712 -- 0.4084528 -- 0.2885234 +- 6.36419300e-01 +- 5.56497700e-01 +- 5.12982600e-01 +- 4.73471200e-01 +- 4.08452800e-01 +- 2.88523400e-01 - 0.13042 diff --git a/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_13TEV_HADR_DIF/filter.py b/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_13TEV_HADR_DIF/filter.py index 8143531f2c..c88aaf5117 100644 --- a/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_13TEV_HADR_DIF/filter.py +++ b/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_13TEV_HADR_DIF/filter.py @@ -8,6 +8,10 @@ ) import yaml +from nnpdf_data.filter_utils.utils import prettify_float + +yaml.add_representer(float, prettify_float) + def processData(): diff --git a/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_13TEV_HADR_DIF/uncertainties_d2Sig_dmttBar_dyttBar.yaml b/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_13TEV_HADR_DIF/uncertainties_d2Sig_dmttBar_dyttBar.yaml index 51f040112e..b64823d4c2 100644 --- a/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_13TEV_HADR_DIF/uncertainties_d2Sig_dmttBar_dyttBar.yaml +++ b/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_13TEV_HADR_DIF/uncertainties_d2Sig_dmttBar_dyttBar.yaml @@ -44,124 +44,124 @@ definitions: treatment: ADD type: CORR bins: -- ArtUnc_1: 0.12572431343802282 - ArtUnc_2: -0.030967624750449424 - ArtUnc_3: 0.005819014412974627 - ArtUnc_4: 0.004851262323010116 - ArtUnc_5: -0.0018779264858097132 - ArtUnc_6: -3.572712853339883e-05 - ArtUnc_7: -9.79450076419744e-05 - ArtUnc_8: 8.43154449329328e-06 - ArtUnc_9: 1.6794433291032515e-06 - ArtUnc_10: -1.238361141259047e-06 - ArtUnc_11: 6.897009707701363e-08 -- ArtUnc_1: 0.12249376589315022 - ArtUnc_2: 0.024785018226278814 - ArtUnc_3: 0.010383785834127897 - ArtUnc_4: 0.010086501371340213 - ArtUnc_5: 0.004024016194861488 - ArtUnc_6: -0.00021177806415028882 - ArtUnc_7: 0.0002861458101743403 - ArtUnc_8: 1.5317175523189888e-05 - ArtUnc_9: 5.682343475115923e-07 - ArtUnc_10: 1.341955430509558e-07 - ArtUnc_11: -8.737853913013028e-08 -- ArtUnc_1: 0.09673245308528809 - ArtUnc_2: 0.0016048314009037038 - ArtUnc_3: -0.019084498862394453 - ArtUnc_4: -0.010793697090059227 - ArtUnc_5: 0.010605227356393987 - ArtUnc_6: 0.00033982801326121106 - ArtUnc_7: 9.747065649339384e-05 - ArtUnc_8: 1.451787594992551e-05 - ArtUnc_9: -6.828086119186346e-07 - ArtUnc_10: 6.599712966616914e-07 - ArtUnc_11: -1.3316177183260348e-07 -- ArtUnc_1: 0.04009857946324827 - ArtUnc_2: 0.006233970756109728 - ArtUnc_3: -0.01858569447655478 - ArtUnc_4: 0.008223496887307152 - ArtUnc_5: -0.015005607052197155 - ArtUnc_6: 0.0006728161377086002 - ArtUnc_7: 0.0005282539352528803 - ArtUnc_8: 3.996817135997703e-05 - ArtUnc_9: -4.176267195395085e-06 - ArtUnc_10: 1.3166744140913902e-06 - ArtUnc_11: 1.9103300352341333e-08 -- ArtUnc_1: 0.03350188201215257 - ArtUnc_2: 0.0040256432505781274 - ArtUnc_3: 0.007952112015051983 - ArtUnc_4: -0.01160097047325182 - ArtUnc_5: -0.006097440099735816 - ArtUnc_6: 0.007672887559334649 - ArtUnc_7: 0.0015236939592421805 - ArtUnc_8: 0.0002598784544551849 - ArtUnc_9: 1.7794228441598485e-05 - ArtUnc_10: 4.543391089989308e-06 - ArtUnc_11: 6.435283617470717e-08 -- ArtUnc_1: 0.0386851746659633 - ArtUnc_2: 0.004038797847736396 - ArtUnc_3: 0.005614781520574296 - ArtUnc_4: -0.012517897676229494 - ArtUnc_5: -0.0073880250280568245 - ArtUnc_6: -0.006510604552969884 - ArtUnc_7: 0.003146915930501997 - ArtUnc_8: 6.181475674361893e-05 - ArtUnc_9: 7.421764685871834e-07 - ArtUnc_10: 7.223298051640015e-06 - ArtUnc_11: -3.573407371093464e-07 -- ArtUnc_1: 0.03258628010050224 - ArtUnc_2: 0.004674688823726617 - ArtUnc_3: 0.0029571514995138165 - ArtUnc_4: -0.007404771177771257 - ArtUnc_5: -0.005491765871362231 - ArtUnc_6: -0.001232322215767448 - ArtUnc_7: -0.006910967855923225 - ArtUnc_8: 0.00012486607404349153 - ArtUnc_9: -2.824036156206424e-07 - ArtUnc_10: 8.575080876129372e-06 - ArtUnc_11: -3.7889491666331305e-07 -- ArtUnc_1: 0.008586077288689712 - ArtUnc_2: 0.0009256935886337409 - ArtUnc_3: 0.0007755471688005582 - ArtUnc_4: -0.0017480570330587932 - ArtUnc_5: -0.00127390765392154 - ArtUnc_6: 0.0005918406785420577 - ArtUnc_7: -0.00010325871045325449 - ArtUnc_8: -0.002385262023856039 - ArtUnc_9: 5.738177270408658e-05 - ArtUnc_10: 2.9241109415670023e-05 - ArtUnc_11: -5.264964937619258e-07 -- ArtUnc_1: 0.0018069605379896355 - ArtUnc_2: 9.068988692723558e-05 - ArtUnc_3: 0.00046929666541382285 - ArtUnc_4: -0.0005112722964789579 - ArtUnc_5: -0.00020094588197462136 - ArtUnc_6: 0.00026046805381894385 - ArtUnc_7: 3.8582235838662514e-05 - ArtUnc_8: -0.00020864029153986694 - ArtUnc_9: -0.0006237760077365698 - ArtUnc_10: 1.697226123734584e-05 - ArtUnc_11: 2.9080996707436204e-06 -- ArtUnc_1: 0.0018332999477209753 - ArtUnc_2: 0.0003151061287127642 - ArtUnc_3: 0.00017170507843432771 - ArtUnc_4: -0.0005071176034659506 - ArtUnc_5: -0.00034037857973427286 - ArtUnc_6: 2.3600295956238814e-06 - ArtUnc_7: -5.837692615392357e-05 - ArtUnc_8: -0.00013450902760795753 - ArtUnc_9: -1.7945014159791126e-05 - ArtUnc_10: -0.0005192834120320241 - ArtUnc_11: -1.263149979524688e-05 -- ArtUnc_1: 0.00040903899915075375 - ArtUnc_2: 7.801648665174018e-05 - ArtUnc_3: 1.4497227287244598e-05 - ArtUnc_4: -9.059885249118446e-05 - ArtUnc_5: -4.411628446745309e-05 - ArtUnc_6: -2.4892089997169247e-05 - ArtUnc_7: -1.6617971950378803e-05 - ArtUnc_8: -1.548481087765719e-05 - ArtUnc_9: 1.0913661715695929e-05 - ArtUnc_10: -4.447618751563619e-05 - ArtUnc_11: 0.0001481150396997503 +- ArtUnc_1: 1.25724313e-01 + ArtUnc_2: -3.09676248e-02 + ArtUnc_3: 5.81901441e-03 + ArtUnc_4: 4.85126232e-03 + ArtUnc_5: -1.87792649e-03 + ArtUnc_6: -3.57271285e-05 + ArtUnc_7: -9.79450076e-05 + ArtUnc_8: 8.43154449e-06 + ArtUnc_9: 1.67944333e-06 + ArtUnc_10: -1.23836114e-06 + ArtUnc_11: 6.89700971e-08 +- ArtUnc_1: 1.22493766e-01 + ArtUnc_2: 2.47850182e-02 + ArtUnc_3: 1.03837858e-02 + ArtUnc_4: 1.00865014e-02 + ArtUnc_5: 4.02401619e-03 + ArtUnc_6: -2.11778064e-04 + ArtUnc_7: 2.86145810e-04 + ArtUnc_8: 1.53171755e-05 + ArtUnc_9: 5.68234348e-07 + ArtUnc_10: 1.34195543e-07 + ArtUnc_11: -8.73785391e-08 +- ArtUnc_1: 9.67324531e-02 + ArtUnc_2: 1.60483140e-03 + ArtUnc_3: -1.90844989e-02 + ArtUnc_4: -1.07936971e-02 + ArtUnc_5: 1.06052274e-02 + ArtUnc_6: 3.39828013e-04 + ArtUnc_7: 9.74706565e-05 + ArtUnc_8: 1.45178759e-05 + ArtUnc_9: -6.82808612e-07 + ArtUnc_10: 6.59971297e-07 + ArtUnc_11: -1.33161772e-07 +- ArtUnc_1: 4.00985795e-02 + ArtUnc_2: 6.23397076e-03 + ArtUnc_3: -1.85856945e-02 + ArtUnc_4: 8.22349689e-03 + ArtUnc_5: -1.50056071e-02 + ArtUnc_6: 6.72816138e-04 + ArtUnc_7: 5.28253935e-04 + ArtUnc_8: 3.99681714e-05 + ArtUnc_9: -4.17626720e-06 + ArtUnc_10: 1.31667441e-06 + ArtUnc_11: 1.91033004e-08 +- ArtUnc_1: 3.35018820e-02 + ArtUnc_2: 4.02564325e-03 + ArtUnc_3: 7.95211202e-03 + ArtUnc_4: -1.16009705e-02 + ArtUnc_5: -6.09744010e-03 + ArtUnc_6: 7.67288756e-03 + ArtUnc_7: 1.52369396e-03 + ArtUnc_8: 2.59878454e-04 + ArtUnc_9: 1.77942284e-05 + ArtUnc_10: 4.54339109e-06 + ArtUnc_11: 6.43528362e-08 +- ArtUnc_1: 3.86851747e-02 + ArtUnc_2: 4.03879785e-03 + ArtUnc_3: 5.61478152e-03 + ArtUnc_4: -1.25178977e-02 + ArtUnc_5: -7.38802503e-03 + ArtUnc_6: -6.51060455e-03 + ArtUnc_7: 3.14691593e-03 + ArtUnc_8: 6.18147567e-05 + ArtUnc_9: 7.42176469e-07 + ArtUnc_10: 7.22329805e-06 + ArtUnc_11: -3.57340737e-07 +- ArtUnc_1: 3.25862801e-02 + ArtUnc_2: 4.67468882e-03 + ArtUnc_3: 2.95715150e-03 + ArtUnc_4: -7.40477118e-03 + ArtUnc_5: -5.49176587e-03 + ArtUnc_6: -1.23232222e-03 + ArtUnc_7: -6.91096786e-03 + ArtUnc_8: 1.24866074e-04 + ArtUnc_9: -2.82403616e-07 + ArtUnc_10: 8.57508088e-06 + ArtUnc_11: -3.78894917e-07 +- ArtUnc_1: 8.58607729e-03 + ArtUnc_2: 9.25693589e-04 + ArtUnc_3: 7.75547169e-04 + ArtUnc_4: -1.74805703e-03 + ArtUnc_5: -1.27390765e-03 + ArtUnc_6: 5.91840679e-04 + ArtUnc_7: -1.03258710e-04 + ArtUnc_8: -2.38526202e-03 + ArtUnc_9: 5.73817727e-05 + ArtUnc_10: 2.92411094e-05 + ArtUnc_11: -5.26496494e-07 +- ArtUnc_1: 1.80696054e-03 + ArtUnc_2: 9.06898869e-05 + ArtUnc_3: 4.69296665e-04 + ArtUnc_4: -5.11272296e-04 + ArtUnc_5: -2.00945882e-04 + ArtUnc_6: 2.60468054e-04 + ArtUnc_7: 3.85822358e-05 + ArtUnc_8: -2.08640292e-04 + ArtUnc_9: -6.23776008e-04 + ArtUnc_10: 1.69722612e-05 + ArtUnc_11: 2.90809967e-06 +- ArtUnc_1: 1.83329995e-03 + ArtUnc_2: 3.15106129e-04 + ArtUnc_3: 1.71705078e-04 + ArtUnc_4: -5.07117603e-04 + ArtUnc_5: -3.40378580e-04 + ArtUnc_6: 2.36002960e-06 + ArtUnc_7: -5.83769262e-05 + ArtUnc_8: -1.34509028e-04 + ArtUnc_9: -1.79450142e-05 + ArtUnc_10: -5.19283412e-04 + ArtUnc_11: -1.26314998e-05 +- ArtUnc_1: 4.09038999e-04 + ArtUnc_2: 7.80164867e-05 + ArtUnc_3: 1.44972273e-05 + ArtUnc_4: -9.05988525e-05 + ArtUnc_5: -4.41162845e-05 + ArtUnc_6: -2.48920900e-05 + ArtUnc_7: -1.66179720e-05 + ArtUnc_8: -1.54848109e-05 + ArtUnc_9: 1.09136617e-05 + ArtUnc_10: -4.44761875e-05 + ArtUnc_11: 1.48115040e-04 diff --git a/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_13TEV_HADR_DIF/uncertainties_d2Sig_dmttBar_dyttBar_norm.yaml b/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_13TEV_HADR_DIF/uncertainties_d2Sig_dmttBar_dyttBar_norm.yaml index e8988d60d2..7cab961cf1 100644 --- a/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_13TEV_HADR_DIF/uncertainties_d2Sig_dmttBar_dyttBar_norm.yaml +++ b/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_13TEV_HADR_DIF/uncertainties_d2Sig_dmttBar_dyttBar_norm.yaml @@ -44,124 +44,124 @@ definitions: treatment: ADD type: CORR bins: -- ArtUnc_1: -5.55229508622633e-05 - ArtUnc_2: -1.6063305313152705e-05 - ArtUnc_3: -3.9847713831746646e-06 - ArtUnc_4: 2.7376184703135764e-06 - ArtUnc_5: 8.212323811096942e-07 - ArtUnc_6: 1.892424250761547e-07 - ArtUnc_7: 5.675545179819385e-07 - ArtUnc_8: -2.645067748449761e-07 - ArtUnc_9: -4.790086416506248e-09 - ArtUnc_10: -4.983287556805458e-08 - ArtUnc_11: 1.9197747218006772e-08 -- ArtUnc_1: -1.1336378108115176e-05 - ArtUnc_2: 3.7404741705586255e-05 - ArtUnc_3: -1.1531789421226017e-05 - ArtUnc_4: -4.753300101447433e-06 - ArtUnc_5: 8.983349560631696e-07 - ArtUnc_6: -2.6775775550658507e-07 - ArtUnc_7: 5.7830696149725e-07 - ArtUnc_8: -2.6413640481954097e-07 - ArtUnc_9: -4.675633508148592e-09 - ArtUnc_10: -4.923331747139944e-08 - ArtUnc_11: 2.1155288274584198e-08 -- ArtUnc_1: 6.693043323891525e-06 - ArtUnc_2: -7.565621320329111e-06 - ArtUnc_3: 1.0955882976265047e-05 - ArtUnc_4: -2.130277686554802e-05 - ArtUnc_5: 8.510037267244748e-08 - ArtUnc_6: -6.808175256431934e-08 - ArtUnc_7: 8.347159494168597e-07 - ArtUnc_8: -3.806949276751337e-07 - ArtUnc_9: -6.646770753067485e-09 - ArtUnc_10: -7.001845557789202e-08 - ArtUnc_11: 3.2677555570907125e-08 -- ArtUnc_1: 2.9178767100718847e-05 - ArtUnc_2: -1.0482720615624124e-05 - ArtUnc_3: -8.908875889674179e-06 - ArtUnc_4: 1.0895873878796928e-05 - ArtUnc_5: -3.753909897313651e-07 - ArtUnc_6: -6.004560505278667e-07 - ArtUnc_7: 1.278240902056735e-06 - ArtUnc_8: -5.588146198970754e-07 - ArtUnc_9: -9.876915921045385e-09 - ArtUnc_10: -1.0287308799549265e-07 - ArtUnc_11: 5.159364225081822e-08 -- ArtUnc_1: -8.955569348252178e-06 - ArtUnc_2: 1.0694329159576895e-05 - ArtUnc_3: 1.4747374509479817e-05 - ArtUnc_4: 6.882011072598941e-06 - ArtUnc_5: -9.176877259858226e-06 - ArtUnc_6: -1.3961841756521683e-06 - ArtUnc_7: 6.014367914593445e-07 - ArtUnc_8: -9.520590949549846e-08 - ArtUnc_9: -1.3246087260831596e-09 - ArtUnc_10: -1.1604770050477927e-08 - ArtUnc_11: -6.0703867656636045e-09 -- ArtUnc_1: -2.2897640175604536e-06 - ArtUnc_2: 7.979123807479352e-06 - ArtUnc_3: 1.6313432087876202e-05 - ArtUnc_4: 7.831047601142676e-06 - ArtUnc_5: 7.672149507785587e-06 - ArtUnc_6: -3.897603439484414e-06 - ArtUnc_7: 2.8673920253351646e-07 - ArtUnc_8: -9.468476106826021e-08 - ArtUnc_9: -1.1389670958996195e-09 - ArtUnc_10: -1.2280664160592947e-08 - ArtUnc_11: 1.2793130494501217e-08 -- ArtUnc_1: 5.126145118988901e-07 - ArtUnc_2: 6.625554567342654e-06 - ArtUnc_3: 9.786178473334284e-06 - ArtUnc_4: 5.502680316449936e-06 - ArtUnc_5: 2.1703128634167677e-06 - ArtUnc_6: 7.852510113243269e-06 - ArtUnc_7: 4.121542189970049e-07 - ArtUnc_8: -1.033764861735145e-07 - ArtUnc_9: -1.3049386290676363e-09 - ArtUnc_10: -1.3805858490357877e-08 - ArtUnc_11: 1.5816255383280115e-08 -- ArtUnc_1: -3.529383451610246e-07 - ArtUnc_2: 1.532104658429573e-06 - ArtUnc_3: 2.3057955921305618e-06 - ArtUnc_4: 1.310151296564722e-06 - ArtUnc_5: -6.778054500574653e-07 - ArtUnc_6: 1.511643358257614e-07 - ArtUnc_7: -2.6151960757941267e-06 - ArtUnc_8: -6.421735655664584e-07 - ArtUnc_9: -6.184375792823713e-09 - ArtUnc_10: -5.976788964216557e-08 - ArtUnc_11: 1.3467468345962385e-08 -- ArtUnc_1: -5.622307652566918e-07 - ArtUnc_2: 4.941849506434988e-07 - ArtUnc_3: 6.659818192549151e-07 - ArtUnc_4: 2.7773729538585604e-07 - ArtUnc_5: -2.991530709352214e-07 - ArtUnc_6: -2.9723666782861835e-08 - ArtUnc_7: -3.15300648797877e-07 - ArtUnc_8: 3.7922633041197334e-07 - ArtUnc_9: -1.2309324361041876e-08 - ArtUnc_10: -1.4640314208427946e-07 - ArtUnc_11: 5.62664596206798e-07 -- ArtUnc_1: 3.4059536644112056e-07 - ArtUnc_2: 3.5716791488159413e-07 - ArtUnc_3: 6.827663524046726e-07 - ArtUnc_4: 3.6892427307243835e-07 - ArtUnc_5: 7.102863933451389e-08 - ArtUnc_6: 8.61898038089381e-08 - ArtUnc_7: -2.3768984111756713e-07 - ArtUnc_8: 3.940447480639138e-07 - ArtUnc_9: -1.1148370749710887e-08 - ArtUnc_10: -2.7625790858262917e-07 - ArtUnc_11: -3.6574536708147555e-07 -- ArtUnc_1: 9.069940806525574e-08 - ArtUnc_2: 7.46910438136279e-08 - ArtUnc_3: 1.2154839933470686e-07 - ArtUnc_4: 3.766993378327994e-08 - ArtUnc_5: 4.50316407852828e-08 - ArtUnc_6: 2.087564107008197e-08 - ArtUnc_7: -4.29602953387275e-08 - ArtUnc_8: 9.813838318932795e-08 - ArtUnc_9: -5.9417031859682016e-08 - ArtUnc_10: 1.2200739849410595e-07 - ArtUnc_11: -6.524514390938323e-08 +- ArtUnc_1: -5.55229509e-05 + ArtUnc_2: -1.60633053e-05 + ArtUnc_3: -3.98477138e-06 + ArtUnc_4: 2.73761847e-06 + ArtUnc_5: 8.21232381e-07 + ArtUnc_6: 1.89242425e-07 + ArtUnc_7: 5.67554518e-07 + ArtUnc_8: -2.64506775e-07 + ArtUnc_9: -4.79008642e-09 + ArtUnc_10: -4.98328756e-08 + ArtUnc_11: 1.91977472e-08 +- ArtUnc_1: -1.13363781e-05 + ArtUnc_2: 3.74047417e-05 + ArtUnc_3: -1.15317894e-05 + ArtUnc_4: -4.75330010e-06 + ArtUnc_5: 8.98334956e-07 + ArtUnc_6: -2.67757756e-07 + ArtUnc_7: 5.78306961e-07 + ArtUnc_8: -2.64136405e-07 + ArtUnc_9: -4.67563351e-09 + ArtUnc_10: -4.92333175e-08 + ArtUnc_11: 2.11552883e-08 +- ArtUnc_1: 6.69304332e-06 + ArtUnc_2: -7.56562132e-06 + ArtUnc_3: 1.09558830e-05 + ArtUnc_4: -2.13027769e-05 + ArtUnc_5: 8.51003727e-08 + ArtUnc_6: -6.80817526e-08 + ArtUnc_7: 8.34715949e-07 + ArtUnc_8: -3.80694928e-07 + ArtUnc_9: -6.64677075e-09 + ArtUnc_10: -7.00184556e-08 + ArtUnc_11: 3.26775556e-08 +- ArtUnc_1: 2.91787671e-05 + ArtUnc_2: -1.04827206e-05 + ArtUnc_3: -8.90887589e-06 + ArtUnc_4: 1.08958739e-05 + ArtUnc_5: -3.75390990e-07 + ArtUnc_6: -6.00456051e-07 + ArtUnc_7: 1.27824090e-06 + ArtUnc_8: -5.58814620e-07 + ArtUnc_9: -9.87691592e-09 + ArtUnc_10: -1.02873088e-07 + ArtUnc_11: 5.15936423e-08 +- ArtUnc_1: -8.95556935e-06 + ArtUnc_2: 1.06943292e-05 + ArtUnc_3: 1.47473745e-05 + ArtUnc_4: 6.88201107e-06 + ArtUnc_5: -9.17687726e-06 + ArtUnc_6: -1.39618418e-06 + ArtUnc_7: 6.01436791e-07 + ArtUnc_8: -9.52059095e-08 + ArtUnc_9: -1.32460873e-09 + ArtUnc_10: -1.16047701e-08 + ArtUnc_11: -6.07038677e-09 +- ArtUnc_1: -2.28976402e-06 + ArtUnc_2: 7.97912381e-06 + ArtUnc_3: 1.63134321e-05 + ArtUnc_4: 7.83104760e-06 + ArtUnc_5: 7.67214951e-06 + ArtUnc_6: -3.89760344e-06 + ArtUnc_7: 2.86739203e-07 + ArtUnc_8: -9.46847611e-08 + ArtUnc_9: -1.13896710e-09 + ArtUnc_10: -1.22806642e-08 + ArtUnc_11: 1.27931305e-08 +- ArtUnc_1: 5.12614512e-07 + ArtUnc_2: 6.62555457e-06 + ArtUnc_3: 9.78617847e-06 + ArtUnc_4: 5.50268032e-06 + ArtUnc_5: 2.17031286e-06 + ArtUnc_6: 7.85251011e-06 + ArtUnc_7: 4.12154219e-07 + ArtUnc_8: -1.03376486e-07 + ArtUnc_9: -1.30493863e-09 + ArtUnc_10: -1.38058585e-08 + ArtUnc_11: 1.58162554e-08 +- ArtUnc_1: -3.52938345e-07 + ArtUnc_2: 1.53210466e-06 + ArtUnc_3: 2.30579559e-06 + ArtUnc_4: 1.31015130e-06 + ArtUnc_5: -6.77805450e-07 + ArtUnc_6: 1.51164336e-07 + ArtUnc_7: -2.61519608e-06 + ArtUnc_8: -6.42173566e-07 + ArtUnc_9: -6.18437579e-09 + ArtUnc_10: -5.97678896e-08 + ArtUnc_11: 1.34674683e-08 +- ArtUnc_1: -5.62230765e-07 + ArtUnc_2: 4.94184951e-07 + ArtUnc_3: 6.65981819e-07 + ArtUnc_4: 2.77737295e-07 + ArtUnc_5: -2.99153071e-07 + ArtUnc_6: -2.97236668e-08 + ArtUnc_7: -3.15300649e-07 + ArtUnc_8: 3.79226330e-07 + ArtUnc_9: -1.23093244e-08 + ArtUnc_10: -1.46403142e-07 + ArtUnc_11: 5.62664596e-07 +- ArtUnc_1: 3.40595366e-07 + ArtUnc_2: 3.57167915e-07 + ArtUnc_3: 6.82766352e-07 + ArtUnc_4: 3.68924273e-07 + ArtUnc_5: 7.10286393e-08 + ArtUnc_6: 8.61898038e-08 + ArtUnc_7: -2.37689841e-07 + ArtUnc_8: 3.94044748e-07 + ArtUnc_9: -1.11483707e-08 + ArtUnc_10: -2.76257909e-07 + ArtUnc_11: -3.65745367e-07 +- ArtUnc_1: 9.06994081e-08 + ArtUnc_2: 7.46910438e-08 + ArtUnc_3: 1.21548399e-07 + ArtUnc_4: 3.76699338e-08 + ArtUnc_5: 4.50316408e-08 + ArtUnc_6: 2.08756411e-08 + ArtUnc_7: -4.29602953e-08 + ArtUnc_8: 9.81383832e-08 + ArtUnc_9: -5.94170319e-08 + ArtUnc_10: 1.22007398e-07 + ArtUnc_11: -6.52451439e-08 diff --git a/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_13TEV_HADR_DIF/uncertainties_dSig_dmttBar.yaml b/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_13TEV_HADR_DIF/uncertainties_dSig_dmttBar.yaml index 62051f94ff..885ab1acd4 100644 --- a/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_13TEV_HADR_DIF/uncertainties_dSig_dmttBar.yaml +++ b/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_13TEV_HADR_DIF/uncertainties_dSig_dmttBar.yaml @@ -36,84 +36,84 @@ definitions: treatment: ADD type: CORR bins: -- ArtUnc_1: -0.7474469674207332 - ArtUnc_2: 0.13433179245450586 - ArtUnc_3: -0.008830993663599818 - ArtUnc_4: -1.950452964344538e-05 - ArtUnc_5: -0.0001166151377083212 - ArtUnc_6: 3.5891218367441383e-07 - ArtUnc_7: -3.6041955647845717e-07 - ArtUnc_8: -8.038367739164611e-07 - ArtUnc_9: 1.594027724439905e-08 -- ArtUnc_1: -0.4585364285587262 - ArtUnc_2: -0.16048814257989547 - ArtUnc_3: 0.042233903800038816 - ArtUnc_4: -0.001948535124395255 - ArtUnc_5: 0.0006327169055347957 - ArtUnc_6: -3.902659081684771e-06 - ArtUnc_7: -2.7923673874076627e-06 - ArtUnc_8: 1.6824895966106902e-06 - ArtUnc_9: -2.1788673135256834e-09 -- ArtUnc_1: -0.18515063545890487 - ArtUnc_2: -0.10957172943366615 - ArtUnc_3: -0.04858174946633176 - ArtUnc_4: 0.0162185256139053 - ArtUnc_5: 0.00019667915374509454 - ArtUnc_6: -0.00011064211802629475 - ArtUnc_7: 1.51095832706284e-06 - ArtUnc_8: -2.042365331465674e-05 - ArtUnc_9: -6.663235013297448e-08 -- ArtUnc_1: -0.08724498193437275 - ArtUnc_2: -0.060034144363527914 - ArtUnc_3: -0.03194438791736316 - ArtUnc_4: -0.017982099293054818 - ArtUnc_5: -0.008965997890071766 - ArtUnc_6: 0.00014528821783410105 - ArtUnc_7: -6.515154299402488e-05 - ArtUnc_8: 1.8757721128576917e-05 - ArtUnc_9: -5.6027754724097336e-08 -- ArtUnc_1: -0.034811202027402566 - ArtUnc_2: -0.025864963112803 - ArtUnc_3: -0.019931791863227265 - ArtUnc_4: -0.011111273595343 - ArtUnc_5: 0.01092194867109929 - ArtUnc_6: -0.0031848152381811373 - ArtUnc_7: 9.487254432842298e-05 - ArtUnc_8: -7.846268083125068e-05 - ArtUnc_9: -8.507011988914621e-07 -- ArtUnc_1: -0.019944125503687477 - ArtUnc_2: -0.014462753521273759 - ArtUnc_3: -0.010901621134684675 - ArtUnc_4: -0.005225526373970483 - ArtUnc_5: 0.006385535245646593 - ArtUnc_6: 0.004487003163116339 - ArtUnc_7: -0.001574625050532282 - ArtUnc_8: 0.00014643965583389067 - ArtUnc_9: -1.6867144560129605e-06 -- ArtUnc_1: -0.01024126925051344 - ArtUnc_2: -0.007278197671113252 - ArtUnc_3: -0.005110504221392294 - ArtUnc_4: -0.002663356823966786 - ArtUnc_5: 0.0025379366459851787 - ArtUnc_6: 0.0024363843734280977 - ArtUnc_7: 0.00248948477338266 - ArtUnc_8: -0.0011220037456774498 - ArtUnc_9: -1.3242783164656783e-06 -- ArtUnc_1: -0.006464534585846699 - ArtUnc_2: -0.004290059368971902 - ArtUnc_3: -0.003005369727053722 - ArtUnc_4: -0.0011796240155819496 - ArtUnc_5: 0.0014316530838644572 - ArtUnc_6: 0.0008871969488260389 - ArtUnc_7: 0.0014774225664501664 - ArtUnc_8: 0.0020522889003933235 - ArtUnc_9: -2.6524669428927047e-06 -- ArtUnc_1: -0.0004590916271690189 - ArtUnc_2: -0.00036888802622515464 - ArtUnc_3: -0.0002512516698478096 - ArtUnc_4: -0.00011378760350326262 - ArtUnc_5: 0.0001224005125731237 - ArtUnc_6: 4.7796089038594316e-05 - ArtUnc_7: 2.1229213654488994e-05 - ArtUnc_8: 1.8944320757584363e-05 - ArtUnc_9: 0.00021841603249711286 +- ArtUnc_1: -7.47446967e-01 + ArtUnc_2: 1.34331792e-01 + ArtUnc_3: -8.83099366e-03 + ArtUnc_4: -1.95045296e-05 + ArtUnc_5: -1.16615138e-04 + ArtUnc_6: 3.58912184e-07 + ArtUnc_7: -3.60419556e-07 + ArtUnc_8: -8.03836774e-07 + ArtUnc_9: 1.59402772e-08 +- ArtUnc_1: -4.58536429e-01 + ArtUnc_2: -1.60488143e-01 + ArtUnc_3: 4.22339038e-02 + ArtUnc_4: -1.94853512e-03 + ArtUnc_5: 6.32716906e-04 + ArtUnc_6: -3.90265908e-06 + ArtUnc_7: -2.79236739e-06 + ArtUnc_8: 1.68248960e-06 + ArtUnc_9: -2.17886731e-09 +- ArtUnc_1: -1.85150635e-01 + ArtUnc_2: -1.09571729e-01 + ArtUnc_3: -4.85817495e-02 + ArtUnc_4: 1.62185256e-02 + ArtUnc_5: 1.96679154e-04 + ArtUnc_6: -1.10642118e-04 + ArtUnc_7: 1.51095833e-06 + ArtUnc_8: -2.04236533e-05 + ArtUnc_9: -6.66323501e-08 +- ArtUnc_1: -8.72449819e-02 + ArtUnc_2: -6.00341444e-02 + ArtUnc_3: -3.19443879e-02 + ArtUnc_4: -1.79820993e-02 + ArtUnc_5: -8.96599789e-03 + ArtUnc_6: 1.45288218e-04 + ArtUnc_7: -6.51515430e-05 + ArtUnc_8: 1.87577211e-05 + ArtUnc_9: -5.60277547e-08 +- ArtUnc_1: -3.48112020e-02 + ArtUnc_2: -2.58649631e-02 + ArtUnc_3: -1.99317919e-02 + ArtUnc_4: -1.11112736e-02 + ArtUnc_5: 1.09219487e-02 + ArtUnc_6: -3.18481524e-03 + ArtUnc_7: 9.48725443e-05 + ArtUnc_8: -7.84626808e-05 + ArtUnc_9: -8.50701199e-07 +- ArtUnc_1: -1.99441255e-02 + ArtUnc_2: -1.44627535e-02 + ArtUnc_3: -1.09016211e-02 + ArtUnc_4: -5.22552637e-03 + ArtUnc_5: 6.38553525e-03 + ArtUnc_6: 4.48700316e-03 + ArtUnc_7: -1.57462505e-03 + ArtUnc_8: 1.46439656e-04 + ArtUnc_9: -1.68671446e-06 +- ArtUnc_1: -1.02412693e-02 + ArtUnc_2: -7.27819767e-03 + ArtUnc_3: -5.11050422e-03 + ArtUnc_4: -2.66335682e-03 + ArtUnc_5: 2.53793665e-03 + ArtUnc_6: 2.43638437e-03 + ArtUnc_7: 2.48948477e-03 + ArtUnc_8: -1.12200375e-03 + ArtUnc_9: -1.32427832e-06 +- ArtUnc_1: -6.46453459e-03 + ArtUnc_2: -4.29005937e-03 + ArtUnc_3: -3.00536973e-03 + ArtUnc_4: -1.17962402e-03 + ArtUnc_5: 1.43165308e-03 + ArtUnc_6: 8.87196949e-04 + ArtUnc_7: 1.47742257e-03 + ArtUnc_8: 2.05228890e-03 + ArtUnc_9: -2.65246694e-06 +- ArtUnc_1: -4.59091627e-04 + ArtUnc_2: -3.68888026e-04 + ArtUnc_3: -2.51251670e-04 + ArtUnc_4: -1.13787604e-04 + ArtUnc_5: 1.22400513e-04 + ArtUnc_6: 4.77960890e-05 + ArtUnc_7: 2.12292137e-05 + ArtUnc_8: 1.89443208e-05 + ArtUnc_9: 2.18416032e-04 diff --git a/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_13TEV_HADR_DIF/uncertainties_dSig_dmttBar_norm.yaml b/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_13TEV_HADR_DIF/uncertainties_dSig_dmttBar_norm.yaml index 63ec2f638e..85449d0f31 100644 --- a/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_13TEV_HADR_DIF/uncertainties_dSig_dmttBar_norm.yaml +++ b/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_13TEV_HADR_DIF/uncertainties_dSig_dmttBar_norm.yaml @@ -36,84 +36,84 @@ definitions: treatment: ADD type: CORR bins: -- ArtUnc_1: -0.00023185009179749723 - ArtUnc_2: -1.2463168418887053e-05 - ArtUnc_3: -7.671609195156297e-06 - ArtUnc_4: -2.8957428033971954e-06 - ArtUnc_5: -1.4567705649396028e-06 - ArtUnc_6: 7.443726097396333e-07 - ArtUnc_7: 1.4944035085879796e-07 - ArtUnc_8: 5.165414474350381e-07 - ArtUnc_9: 5.820784380673833e-09 -- ArtUnc_1: 0.00010353812002657724 - ArtUnc_2: -7.70051829024793e-05 - ArtUnc_3: -2.5256545850771437e-06 - ArtUnc_4: -1.3188116295262763e-06 - ArtUnc_5: -1.182876683503371e-06 - ArtUnc_6: 5.980652138015904e-07 - ArtUnc_7: 1.1525253631251705e-07 - ArtUnc_8: 4.1367658370238675e-07 - ArtUnc_9: 4.648561339665962e-09 -- ArtUnc_1: 9.508979523320785e-05 - ArtUnc_2: 3.173962969235459e-05 - ArtUnc_3: -2.586317975657131e-05 - ArtUnc_4: -6.365231896522173e-07 - ArtUnc_5: -9.542324174193462e-07 - ArtUnc_6: 4.4482438452750576e-07 - ArtUnc_7: 1.0429760771323491e-07 - ArtUnc_8: 3.133723036361458e-07 - ArtUnc_9: 3.489403135749334e-09 -- ArtUnc_1: 5.477076050481985e-05 - ArtUnc_2: 2.4988350592102037e-05 - ArtUnc_3: 1.1064080419046945e-05 - ArtUnc_4: -1.467450577441493e-05 - ArtUnc_5: -1.158113896952594e-06 - ArtUnc_6: 6.8444896764931e-07 - ArtUnc_7: 1.2845035252991897e-07 - ArtUnc_8: 4.060965220593821e-07 - ArtUnc_9: 4.593632964422252e-09 -- ArtUnc_1: 2.5694973030784372e-05 - ArtUnc_2: 1.9702392030082153e-05 - ArtUnc_3: 9.663269889181145e-06 - ArtUnc_4: 9.258509645681314e-06 - ArtUnc_5: -5.121443078126092e-06 - ArtUnc_6: 2.4917043783707554e-07 - ArtUnc_7: 4.335631408738063e-08 - ArtUnc_8: 4.383602657798109e-07 - ArtUnc_9: 4.339092827755618e-09 -- ArtUnc_1: 1.4055967162740788e-05 - ArtUnc_2: 1.0413062070066372e-05 - ArtUnc_3: 4.747891620649937e-06 - ArtUnc_4: 5.221616966294835e-06 - ArtUnc_5: 3.4810014570263557e-06 - ArtUnc_6: 2.8280846490199626e-06 - ArtUnc_7: -3.1871944876900157e-07 - ArtUnc_8: 4.1609607093151655e-07 - ArtUnc_9: 3.861042828865693e-09 -- ArtUnc_1: 7.041115499105399e-06 - ArtUnc_2: 4.8891073707433855e-06 - ArtUnc_3: 2.45813551101217e-06 - ArtUnc_4: 2.206060722389921e-06 - ArtUnc_5: 2.1500988601865807e-06 - ArtUnc_6: -1.1671822472062922e-06 - ArtUnc_7: 2.252326837660688e-06 - ArtUnc_8: 6.339876980358593e-07 - ArtUnc_9: 5.60825760248035e-09 -- ArtUnc_1: 3.845446926191874e-06 - ArtUnc_2: 2.473503909597002e-06 - ArtUnc_3: 9.873118119557914e-07 - ArtUnc_4: 6.678497864127679e-07 - ArtUnc_5: 1.66300104973443e-06 - ArtUnc_6: -1.8325780884139003e-06 - ArtUnc_7: -1.7484063726531527e-06 - ArtUnc_8: 8.732882692262243e-07 - ArtUnc_9: 6.017404422930786e-09 -- ArtUnc_1: 3.5959903967503224e-07 - ArtUnc_2: 2.3550129109635827e-07 - ArtUnc_3: 1.0083624378594788e-07 - ArtUnc_4: 1.0122814756530149e-07 - ArtUnc_5: 5.952686188657464e-08 - ArtUnc_6: -3.972748976518363e-08 - ArtUnc_7: -2.1836094429198322e-08 - ArtUnc_8: -1.2872537326294003e-07 - ArtUnc_9: 1.569835315110177e-07 +- ArtUnc_1: -2.31850092e-04 + ArtUnc_2: -1.24631684e-05 + ArtUnc_3: -7.67160920e-06 + ArtUnc_4: -2.89574280e-06 + ArtUnc_5: -1.45677056e-06 + ArtUnc_6: 7.44372610e-07 + ArtUnc_7: 1.49440351e-07 + ArtUnc_8: 5.16541447e-07 + ArtUnc_9: 5.82078438e-09 +- ArtUnc_1: 1.03538120e-04 + ArtUnc_2: -7.70051829e-05 + ArtUnc_3: -2.52565459e-06 + ArtUnc_4: -1.31881163e-06 + ArtUnc_5: -1.18287668e-06 + ArtUnc_6: 5.98065214e-07 + ArtUnc_7: 1.15252536e-07 + ArtUnc_8: 4.13676584e-07 + ArtUnc_9: 4.64856134e-09 +- ArtUnc_1: 9.50897952e-05 + ArtUnc_2: 3.17396297e-05 + ArtUnc_3: -2.58631798e-05 + ArtUnc_4: -6.36523190e-07 + ArtUnc_5: -9.54232417e-07 + ArtUnc_6: 4.44824385e-07 + ArtUnc_7: 1.04297608e-07 + ArtUnc_8: 3.13372304e-07 + ArtUnc_9: 3.48940314e-09 +- ArtUnc_1: 5.47707605e-05 + ArtUnc_2: 2.49883506e-05 + ArtUnc_3: 1.10640804e-05 + ArtUnc_4: -1.46745058e-05 + ArtUnc_5: -1.15811390e-06 + ArtUnc_6: 6.84448968e-07 + ArtUnc_7: 1.28450353e-07 + ArtUnc_8: 4.06096522e-07 + ArtUnc_9: 4.59363296e-09 +- ArtUnc_1: 2.56949730e-05 + ArtUnc_2: 1.97023920e-05 + ArtUnc_3: 9.66326989e-06 + ArtUnc_4: 9.25850965e-06 + ArtUnc_5: -5.12144308e-06 + ArtUnc_6: 2.49170438e-07 + ArtUnc_7: 4.33563141e-08 + ArtUnc_8: 4.38360266e-07 + ArtUnc_9: 4.33909283e-09 +- ArtUnc_1: 1.40559672e-05 + ArtUnc_2: 1.04130621e-05 + ArtUnc_3: 4.74789162e-06 + ArtUnc_4: 5.22161697e-06 + ArtUnc_5: 3.48100146e-06 + ArtUnc_6: 2.82808465e-06 + ArtUnc_7: -3.18719449e-07 + ArtUnc_8: 4.16096071e-07 + ArtUnc_9: 3.86104283e-09 +- ArtUnc_1: 7.04111550e-06 + ArtUnc_2: 4.88910737e-06 + ArtUnc_3: 2.45813551e-06 + ArtUnc_4: 2.20606072e-06 + ArtUnc_5: 2.15009886e-06 + ArtUnc_6: -1.16718225e-06 + ArtUnc_7: 2.25232684e-06 + ArtUnc_8: 6.33987698e-07 + ArtUnc_9: 5.60825760e-09 +- ArtUnc_1: 3.84544693e-06 + ArtUnc_2: 2.47350391e-06 + ArtUnc_3: 9.87311812e-07 + ArtUnc_4: 6.67849786e-07 + ArtUnc_5: 1.66300105e-06 + ArtUnc_6: -1.83257809e-06 + ArtUnc_7: -1.74840637e-06 + ArtUnc_8: 8.73288269e-07 + ArtUnc_9: 6.01740442e-09 +- ArtUnc_1: 3.59599040e-07 + ArtUnc_2: 2.35501291e-07 + ArtUnc_3: 1.00836244e-07 + ArtUnc_4: 1.01228148e-07 + ArtUnc_5: 5.95268619e-08 + ArtUnc_6: -3.97274898e-08 + ArtUnc_7: -2.18360944e-08 + ArtUnc_8: -1.28725373e-07 + ArtUnc_9: 1.56983532e-07 diff --git a/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_13TEV_HADR_DIF/uncertainties_dSig_dyttBar.yaml b/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_13TEV_HADR_DIF/uncertainties_dSig_dyttBar.yaml index e6994bb187..dae5e708af 100644 --- a/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_13TEV_HADR_DIF/uncertainties_dSig_dyttBar.yaml +++ b/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_13TEV_HADR_DIF/uncertainties_dSig_dyttBar.yaml @@ -48,147 +48,147 @@ definitions: treatment: ADD type: CORR bins: -- ArtUnc_1: -108.74056166528112 - ArtUnc_2: 17.572905481952972 - ArtUnc_3: 8.618433639147067 - ArtUnc_4: 1.1670423901997502 - ArtUnc_5: -0.33882178518210326 - ArtUnc_6: -3.3613819097154263 - ArtUnc_7: -2.611347997460704 - ArtUnc_8: 14.060761461750543 - ArtUnc_9: -6.235354511656115 - ArtUnc_10: 6.5715888357638494 - ArtUnc_11: 4.456303306720026 - ArtUnc_12: -4.814763819921076 -- ArtUnc_1: -93.84454940384389 - ArtUnc_2: 29.18191800906318 - ArtUnc_3: -18.233664358135425 - ArtUnc_4: 1.5485993923807706 - ArtUnc_5: 3.9008297802490075 - ArtUnc_6: 3.588358696198876 - ArtUnc_7: 0.886275074628495 - ArtUnc_8: -2.7033837646081187 - ArtUnc_9: 6.6205215028274536 - ArtUnc_10: 4.4223093806511775 - ArtUnc_11: -0.9343975885266045 - ArtUnc_12: 2.510726991097837 -- ArtUnc_1: -125.05787418739568 - ArtUnc_2: -9.386094601948002 - ArtUnc_3: 0.7382796677313633 - ArtUnc_4: 0.35113109798288505 - ArtUnc_5: -18.990322513236986 - ArtUnc_6: 1.6826285196406785 - ArtUnc_7: -3.9765734377927267 - ArtUnc_8: -1.8316534494506413 - ArtUnc_9: 9.926016224191759 - ArtUnc_10: -1.7995841219828814 - ArtUnc_11: 6.688344935606228 - ArtUnc_12: -1.6220494158541248 -- ArtUnc_1: -104.28552271444184 - ArtUnc_2: 1.3645670293910892 - ArtUnc_3: -1.539922869569102 - ArtUnc_4: -0.6254659294172756 - ArtUnc_5: -5.082401336126145 - ArtUnc_6: -14.820500600498448 - ArtUnc_7: -1.996775640960533 - ArtUnc_8: -11.580728341630676 - ArtUnc_9: -9.162347670721172 - ArtUnc_10: 2.9027593086259995 - ArtUnc_11: -4.8829363821245 - ArtUnc_12: -0.33018403384669476 -- ArtUnc_1: -101.3989139102915 - ArtUnc_2: 11.415028002631077 - ArtUnc_3: 14.640784136996428 - ArtUnc_4: 1.085350407156512 - ArtUnc_5: 7.449352735214441 - ArtUnc_6: 9.465238702624463 - ArtUnc_7: 1.5751313263125817 - ArtUnc_8: -10.693045612249255 - ArtUnc_9: -3.8255774633932593 - ArtUnc_10: -5.661099797795791 - ArtUnc_11: 5.625326444151591 - ArtUnc_12: 1.4810784502006284 -- ArtUnc_1: -115.70739130226143 - ArtUnc_2: -15.475463220810038 - ArtUnc_3: -0.47631582306255654 - ArtUnc_4: -3.532553568768675 - ArtUnc_5: 16.684733758177227 - ArtUnc_6: -9.683300761086324 - ArtUnc_7: 0.8648470066162364 - ArtUnc_8: 1.9014580408226633 - ArtUnc_9: 8.452415607001424 - ArtUnc_10: -1.675571401344287 - ArtUnc_11: 4.334651189055657 - ArtUnc_12: -0.2315110475951015 -- ArtUnc_1: -94.3628750485581 - ArtUnc_2: -5.485144887698435 - ArtUnc_3: 8.801320911025163 - ArtUnc_4: -0.3265457780672498 - ArtUnc_5: -3.2822483375667297 - ArtUnc_6: 2.080961970958894 - ArtUnc_7: 4.8757940705040115 - ArtUnc_8: 4.703003918964788 - ArtUnc_9: 2.344506192895438 - ArtUnc_10: 3.9295885390944743 - ArtUnc_11: -8.875751726225221 - ArtUnc_12: 14.39717338829606 -- ArtUnc_1: -80.62334855903359 - ArtUnc_2: -2.2772290138736695 - ArtUnc_3: -12.315364808482421 - ArtUnc_4: -1.6180339090033495 - ArtUnc_5: -3.4904694039785826 - ArtUnc_6: 1.121594458029122 - ArtUnc_7: 4.139325797061882 - ArtUnc_8: 6.787566020565014 - ArtUnc_9: -9.495473312765835 - ArtUnc_10: -14.055793627198515 - ArtUnc_11: 1.4828873457161087 - ArtUnc_12: 2.7980219656316714 -- ArtUnc_1: -70.9895405766242 - ArtUnc_2: 2.6389620773928213 - ArtUnc_3: 4.269654072357551 - ArtUnc_4: -0.3625151655373676 - ArtUnc_5: -0.15185777976382472 - ArtUnc_6: 3.069231513366833 - ArtUnc_7: 3.9665904800944514 - ArtUnc_8: 1.0780058639982804 - ArtUnc_9: 4.588062113491917 - ArtUnc_10: -4.996659763934352 - ArtUnc_11: -12.88135150038509 - ArtUnc_12: -13.110084894969456 -- ArtUnc_1: -67.71689347293488 - ArtUnc_2: -22.510384595696227 - ArtUnc_3: -7.113720268439048 - ArtUnc_4: -1.2445860615509254 - ArtUnc_5: 0.8795328248847428 - ArtUnc_6: 9.951087697351745 - ArtUnc_7: 6.22015234517896 - ArtUnc_8: -1.9924181164315278 - ArtUnc_9: -6.454037984317499 - ArtUnc_10: 11.376913154353417 - ArtUnc_11: 2.329093345187149 - ArtUnc_12: -4.855896279077746 -- ArtUnc_1: -54.478432070382276 - ArtUnc_2: -9.892953421184384 - ArtUnc_3: -3.3117638254402695 - ArtUnc_4: -0.6032764827664957 - ArtUnc_5: 5.847970655292559 - ArtUnc_6: 7.928062994424768 - ArtUnc_7: -16.093293578058674 - ArtUnc_8: 1.2311941046400796 - ArtUnc_9: -2.9597595437617086 - ArtUnc_10: -0.7421773207502872 - ArtUnc_11: -5.646719624184925 - ArtUnc_12: 1.4624850839481716 -- ArtUnc_1: -29.29988082023387 - ArtUnc_2: -13.913298862570803 - ArtUnc_3: -2.245733056465964 - ArtUnc_4: 12.010869164893144 - ArtUnc_5: 3.8753584207688476 - ArtUnc_6: -2.9306560560094073 - ArtUnc_7: 0.9098841284338619 - ArtUnc_8: 0.8884888407576711 - ArtUnc_9: -0.07778829182341201 - ArtUnc_10: -1.7820630233576849 - ArtUnc_11: -0.4683911602945567 - ArtUnc_12: -0.08464249413530343 +- ArtUnc_1: -1.08740562e+02 + ArtUnc_2: 1.75729055e+01 + ArtUnc_3: 8.61843364e+00 + ArtUnc_4: 1.16704239e+00 + ArtUnc_5: -3.38821785e-01 + ArtUnc_6: -3.36138191e+00 + ArtUnc_7: -2.61134800e+00 + ArtUnc_8: 1.40607615e+01 + ArtUnc_9: -6.23535451e+00 + ArtUnc_10: 6.57158884e+00 + ArtUnc_11: 4.45630331e+00 + ArtUnc_12: -4.81476382e+00 +- ArtUnc_1: -9.38445494e+01 + ArtUnc_2: 2.91819180e+01 + ArtUnc_3: -1.82336644e+01 + ArtUnc_4: 1.54859939e+00 + ArtUnc_5: 3.90082978e+00 + ArtUnc_6: 3.58835870e+00 + ArtUnc_7: 8.86275075e-01 + ArtUnc_8: -2.70338376e+00 + ArtUnc_9: 6.62052150e+00 + ArtUnc_10: 4.42230938e+00 + ArtUnc_11: -9.34397589e-01 + ArtUnc_12: 2.51072699e+00 +- ArtUnc_1: -1.25057874e+02 + ArtUnc_2: -9.38609460e+00 + ArtUnc_3: 7.38279668e-01 + ArtUnc_4: 3.51131098e-01 + ArtUnc_5: -1.89903225e+01 + ArtUnc_6: 1.68262852e+00 + ArtUnc_7: -3.97657344e+00 + ArtUnc_8: -1.83165345e+00 + ArtUnc_9: 9.92601622e+00 + ArtUnc_10: -1.79958412e+00 + ArtUnc_11: 6.68834494e+00 + ArtUnc_12: -1.62204942e+00 +- ArtUnc_1: -1.04285523e+02 + ArtUnc_2: 1.36456703e+00 + ArtUnc_3: -1.53992287e+00 + ArtUnc_4: -6.25465929e-01 + ArtUnc_5: -5.08240134e+00 + ArtUnc_6: -1.48205006e+01 + ArtUnc_7: -1.99677564e+00 + ArtUnc_8: -1.15807283e+01 + ArtUnc_9: -9.16234767e+00 + ArtUnc_10: 2.90275931e+00 + ArtUnc_11: -4.88293638e+00 + ArtUnc_12: -3.30184034e-01 +- ArtUnc_1: -1.01398914e+02 + ArtUnc_2: 1.14150280e+01 + ArtUnc_3: 1.46407841e+01 + ArtUnc_4: 1.08535041e+00 + ArtUnc_5: 7.44935274e+00 + ArtUnc_6: 9.46523870e+00 + ArtUnc_7: 1.57513133e+00 + ArtUnc_8: -1.06930456e+01 + ArtUnc_9: -3.82557746e+00 + ArtUnc_10: -5.66109980e+00 + ArtUnc_11: 5.62532644e+00 + ArtUnc_12: 1.48107845e+00 +- ArtUnc_1: -1.15707391e+02 + ArtUnc_2: -1.54754632e+01 + ArtUnc_3: -4.76315823e-01 + ArtUnc_4: -3.53255357e+00 + ArtUnc_5: 1.66847338e+01 + ArtUnc_6: -9.68330076e+00 + ArtUnc_7: 8.64847007e-01 + ArtUnc_8: 1.90145804e+00 + ArtUnc_9: 8.45241561e+00 + ArtUnc_10: -1.67557140e+00 + ArtUnc_11: 4.33465119e+00 + ArtUnc_12: -2.31511048e-01 +- ArtUnc_1: -9.43628750e+01 + ArtUnc_2: -5.48514489e+00 + ArtUnc_3: 8.80132091e+00 + ArtUnc_4: -3.26545778e-01 + ArtUnc_5: -3.28224834e+00 + ArtUnc_6: 2.08096197e+00 + ArtUnc_7: 4.87579407e+00 + ArtUnc_8: 4.70300392e+00 + ArtUnc_9: 2.34450619e+00 + ArtUnc_10: 3.92958854e+00 + ArtUnc_11: -8.87575173e+00 + ArtUnc_12: 1.43971734e+01 +- ArtUnc_1: -8.06233486e+01 + ArtUnc_2: -2.27722901e+00 + ArtUnc_3: -1.23153648e+01 + ArtUnc_4: -1.61803391e+00 + ArtUnc_5: -3.49046940e+00 + ArtUnc_6: 1.12159446e+00 + ArtUnc_7: 4.13932580e+00 + ArtUnc_8: 6.78756602e+00 + ArtUnc_9: -9.49547331e+00 + ArtUnc_10: -1.40557936e+01 + ArtUnc_11: 1.48288735e+00 + ArtUnc_12: 2.79802197e+00 +- ArtUnc_1: -7.09895406e+01 + ArtUnc_2: 2.63896208e+00 + ArtUnc_3: 4.26965407e+00 + ArtUnc_4: -3.62515166e-01 + ArtUnc_5: -1.51857780e-01 + ArtUnc_6: 3.06923151e+00 + ArtUnc_7: 3.96659048e+00 + ArtUnc_8: 1.07800586e+00 + ArtUnc_9: 4.58806211e+00 + ArtUnc_10: -4.99665976e+00 + ArtUnc_11: -1.28813515e+01 + ArtUnc_12: -1.31100849e+01 +- ArtUnc_1: -6.77168935e+01 + ArtUnc_2: -2.25103846e+01 + ArtUnc_3: -7.11372027e+00 + ArtUnc_4: -1.24458606e+00 + ArtUnc_5: 8.79532825e-01 + ArtUnc_6: 9.95108770e+00 + ArtUnc_7: 6.22015235e+00 + ArtUnc_8: -1.99241812e+00 + ArtUnc_9: -6.45403798e+00 + ArtUnc_10: 1.13769132e+01 + ArtUnc_11: 2.32909335e+00 + ArtUnc_12: -4.85589628e+00 +- ArtUnc_1: -5.44784321e+01 + ArtUnc_2: -9.89295342e+00 + ArtUnc_3: -3.31176383e+00 + ArtUnc_4: -6.03276483e-01 + ArtUnc_5: 5.84797066e+00 + ArtUnc_6: 7.92806299e+00 + ArtUnc_7: -1.60932936e+01 + ArtUnc_8: 1.23119410e+00 + ArtUnc_9: -2.95975954e+00 + ArtUnc_10: -7.42177321e-01 + ArtUnc_11: -5.64671962e+00 + ArtUnc_12: 1.46248508e+00 +- ArtUnc_1: -2.92998808e+01 + ArtUnc_2: -1.39132989e+01 + ArtUnc_3: -2.24573306e+00 + ArtUnc_4: 1.20108692e+01 + ArtUnc_5: 3.87535842e+00 + ArtUnc_6: -2.93065606e+00 + ArtUnc_7: 9.09884128e-01 + ArtUnc_8: 8.88488841e-01 + ArtUnc_9: -7.77882918e-02 + ArtUnc_10: -1.78206302e+00 + ArtUnc_11: -4.68391160e-01 + ArtUnc_12: -8.46424941e-02 diff --git a/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_13TEV_HADR_DIF/uncertainties_dSig_dyttBar_norm.yaml b/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_13TEV_HADR_DIF/uncertainties_dSig_dyttBar_norm.yaml index 3208b50ff6..9c385d2bfd 100644 --- a/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_13TEV_HADR_DIF/uncertainties_dSig_dyttBar_norm.yaml +++ b/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_13TEV_HADR_DIF/uncertainties_dSig_dyttBar_norm.yaml @@ -48,147 +48,147 @@ definitions: treatment: ADD type: CORR bins: -- ArtUnc_1: -0.03301808072863789 - ArtUnc_2: 0.01772329709766494 - ArtUnc_3: -3.1700164200624965e-05 - ArtUnc_4: 0.004185608087675728 - ArtUnc_5: 0.011852460828110539 - ArtUnc_6: -0.0033838803937499625 - ArtUnc_7: -0.0012501627126595765 - ArtUnc_8: -0.009403024894325306 - ArtUnc_9: -0.0010047929018795411 - ArtUnc_10: -0.01291465890997541 - ArtUnc_11: -0.0077381944949296965 - ArtUnc_12: -0.0025655076048347702 -- ArtUnc_1: -0.06304423448636806 - ArtUnc_2: -0.020874598408257408 - ArtUnc_3: -3.1719007659472976e-05 - ArtUnc_4: 0.0013295720991207273 - ArtUnc_5: 0.004187321150032052 - ArtUnc_6: -0.003043816503229564 - ArtUnc_7: -0.0015611005378713969 - ArtUnc_8: 0.010229190193652706 - ArtUnc_9: -0.0013256529059227147 - ArtUnc_10: -0.0030153902368277295 - ArtUnc_11: 0.003184839283137318 - ArtUnc_12: 0.00020467502718571096 -- ArtUnc_1: -0.0025412519887143205 - ArtUnc_2: 0.013201239271991598 - ArtUnc_3: -3.172492844166394e-05 - ArtUnc_4: -0.025492121234287034 - ArtUnc_5: 0.004593410464013228 - ArtUnc_6: -0.0030194528080978835 - ArtUnc_7: -0.001600053527915089 - ArtUnc_8: 0.012187627847910564 - ArtUnc_9: -0.0031744601727846 - ArtUnc_10: 0.003475416901532007 - ArtUnc_11: -0.005406669148952614 - ArtUnc_12: 0.0034230568797391204 -- ArtUnc_1: -0.024767651728666216 - ArtUnc_2: -0.0007370749067332273 - ArtUnc_3: -3.437015348009303e-05 - ArtUnc_4: -0.00962243064795938 - ArtUnc_5: -0.005376539101713777 - ArtUnc_6: 0.023270809211707807 - ArtUnc_7: 0.004621937074422121 - ArtUnc_8: -0.007294615041068444 - ArtUnc_9: -0.004924650479012742 - ArtUnc_10: 0.000638738226316133 - ArtUnc_11: 0.000248556619878127 - ArtUnc_12: -0.0013016917048127338 -- ArtUnc_1: -0.03404131424965747 - ArtUnc_2: 0.013629760314037141 - ArtUnc_3: -3.438938785405517e-05 - ArtUnc_4: 0.009430804035195577 - ArtUnc_5: -0.01889740676776477 - ArtUnc_6: -0.003991128375237542 - ArtUnc_7: -0.0014013642793071401 - ArtUnc_8: 4.6878180418443796e-05 - ArtUnc_9: 0.0008810663927323272 - ArtUnc_10: 0.007689680278106873 - ArtUnc_11: -0.003909386470283969 - ArtUnc_12: 0.009709760015296633 -- ArtUnc_1: 0.012584323008483576 - ArtUnc_2: 0.004513895152918287 - ArtUnc_3: -3.699935961954575e-05 - ArtUnc_4: 0.014026436898593259 - ArtUnc_5: 0.007903943825399105 - ArtUnc_6: 0.009719793793777215 - ArtUnc_7: 0.009641672410304261 - ArtUnc_8: 0.013806267780080221 - ArtUnc_9: 0.004309037583137235 - ArtUnc_10: -0.002012628527190696 - ArtUnc_11: -0.005745475481977625 - ArtUnc_12: 0.0058623118884024595 -- ArtUnc_1: -0.004430497265214214 - ArtUnc_2: 0.01385604078212426 - ArtUnc_3: -3.9658572349488176e-05 - ArtUnc_4: -0.003588564800830511 - ArtUnc_5: -0.0020311946592570765 - ArtUnc_6: -0.002220620851391058 - ArtUnc_7: 0.0048561388226903346 - ArtUnc_8: 0.0018270481968078772 - ArtUnc_9: 0.004117609135157795 - ArtUnc_10: -0.007214433205091259 - ArtUnc_11: 0.02012250652516763 - ArtUnc_12: 0.002281740408267315 -- ArtUnc_1: -0.007211166486994318 - ArtUnc_2: -0.008972408763081073 - ArtUnc_3: -3.9670919368363975e-05 - ArtUnc_4: -0.007343425859425414 - ArtUnc_5: 0.010021420690303495 - ArtUnc_6: -0.006169028514156388 - ArtUnc_7: 0.007933228727964469 - ArtUnc_8: -0.012233905982739518 - ArtUnc_9: 0.008048525288660355 - ArtUnc_10: 0.008136405521126428 - ArtUnc_11: -0.00102984586372723 - ArtUnc_12: 0.010336183338913348 -- ArtUnc_1: -0.01412029186313896 - ArtUnc_2: 0.005178376027629166 - ArtUnc_3: -3.965322465102166e-05 - ArtUnc_4: 0.00019616014673657468 - ArtUnc_5: -0.002320600850120385 - ArtUnc_6: -0.004679043379895691 - ArtUnc_7: 0.007426385724253546 - ArtUnc_8: 0.0019435562513150783 - ArtUnc_9: 0.005806407309375671 - ArtUnc_10: 0.009074006167790161 - ArtUnc_11: -0.0017830736428959457 - ArtUnc_12: -0.019267152663521667 -- ArtUnc_1: 0.013431216965135266 - ArtUnc_2: -0.010686877229342466 - ArtUnc_3: -4.7568302594083954e-05 - ArtUnc_4: -0.008880926407928225 - ArtUnc_5: -0.015811694939688804 - ArtUnc_6: -0.0044734171577508 - ArtUnc_7: 0.0045560997677492835 - ArtUnc_8: 0.0001778842812409291 - ArtUnc_9: 0.005868681521603491 - ArtUnc_10: -0.01483157353146372 - ArtUnc_11: -0.007637382951891884 - ArtUnc_12: -0.0002499777883405328 -- ArtUnc_1: 0.011083947424457315 - ArtUnc_2: -0.0025295622352911884 - ArtUnc_3: -5.286534526161879e-05 - ArtUnc_4: 0.0037024172070462477 - ArtUnc_5: -0.001114644798578539 - ArtUnc_6: -0.009165949949504789 - ArtUnc_7: 0.00938449446596575 - ArtUnc_8: -0.0014456593602200632 - ArtUnc_9: -0.018536321936100428 - ArtUnc_10: 0.00020575461349550241 - ArtUnc_11: 0.000626177447739694 - ArtUnc_12: 0.0005397532054034583 -- ArtUnc_1: 0.020920195526821492 - ArtUnc_2: -0.003202074388989974 - ArtUnc_3: -0.00021415455855597058 - ArtUnc_4: 0.0036137202670168413 - ArtUnc_5: 0.0022134938910562687 - ArtUnc_6: 0.0023025621103969227 - ArtUnc_7: -0.00860181759031612 - ArtUnc_8: -0.0012653690969476143 - ArtUnc_9: 0.0006634097109710064 - ArtUnc_10: 0.002246092732400667 - ArtUnc_11: 0.0013915632135441498 - ArtUnc_12: -0.001368223999471566 +- ArtUnc_1: -3.30180807e-02 + ArtUnc_2: 1.77232971e-02 + ArtUnc_3: -3.17001642e-05 + ArtUnc_4: 4.18560809e-03 + ArtUnc_5: 1.18524608e-02 + ArtUnc_6: -3.38388039e-03 + ArtUnc_7: -1.25016271e-03 + ArtUnc_8: -9.40302489e-03 + ArtUnc_9: -1.00479290e-03 + ArtUnc_10: -1.29146589e-02 + ArtUnc_11: -7.73819449e-03 + ArtUnc_12: -2.56550760e-03 +- ArtUnc_1: -6.30442345e-02 + ArtUnc_2: -2.08745984e-02 + ArtUnc_3: -3.17190077e-05 + ArtUnc_4: 1.32957210e-03 + ArtUnc_5: 4.18732115e-03 + ArtUnc_6: -3.04381650e-03 + ArtUnc_7: -1.56110054e-03 + ArtUnc_8: 1.02291902e-02 + ArtUnc_9: -1.32565291e-03 + ArtUnc_10: -3.01539024e-03 + ArtUnc_11: 3.18483928e-03 + ArtUnc_12: 2.04675027e-04 +- ArtUnc_1: -2.54125199e-03 + ArtUnc_2: 1.32012393e-02 + ArtUnc_3: -3.17249284e-05 + ArtUnc_4: -2.54921212e-02 + ArtUnc_5: 4.59341046e-03 + ArtUnc_6: -3.01945281e-03 + ArtUnc_7: -1.60005353e-03 + ArtUnc_8: 1.21876278e-02 + ArtUnc_9: -3.17446017e-03 + ArtUnc_10: 3.47541690e-03 + ArtUnc_11: -5.40666915e-03 + ArtUnc_12: 3.42305688e-03 +- ArtUnc_1: -2.47676517e-02 + ArtUnc_2: -7.37074907e-04 + ArtUnc_3: -3.43701535e-05 + ArtUnc_4: -9.62243065e-03 + ArtUnc_5: -5.37653910e-03 + ArtUnc_6: 2.32708092e-02 + ArtUnc_7: 4.62193707e-03 + ArtUnc_8: -7.29461504e-03 + ArtUnc_9: -4.92465048e-03 + ArtUnc_10: 6.38738226e-04 + ArtUnc_11: 2.48556620e-04 + ArtUnc_12: -1.30169170e-03 +- ArtUnc_1: -3.40413142e-02 + ArtUnc_2: 1.36297603e-02 + ArtUnc_3: -3.43893879e-05 + ArtUnc_4: 9.43080404e-03 + ArtUnc_5: -1.88974068e-02 + ArtUnc_6: -3.99112838e-03 + ArtUnc_7: -1.40136428e-03 + ArtUnc_8: 4.68781804e-05 + ArtUnc_9: 8.81066393e-04 + ArtUnc_10: 7.68968028e-03 + ArtUnc_11: -3.90938647e-03 + ArtUnc_12: 9.70976002e-03 +- ArtUnc_1: 1.25843230e-02 + ArtUnc_2: 4.51389515e-03 + ArtUnc_3: -3.69993596e-05 + ArtUnc_4: 1.40264369e-02 + ArtUnc_5: 7.90394383e-03 + ArtUnc_6: 9.71979379e-03 + ArtUnc_7: 9.64167241e-03 + ArtUnc_8: 1.38062678e-02 + ArtUnc_9: 4.30903758e-03 + ArtUnc_10: -2.01262853e-03 + ArtUnc_11: -5.74547548e-03 + ArtUnc_12: 5.86231189e-03 +- ArtUnc_1: -4.43049727e-03 + ArtUnc_2: 1.38560408e-02 + ArtUnc_3: -3.96585723e-05 + ArtUnc_4: -3.58856480e-03 + ArtUnc_5: -2.03119466e-03 + ArtUnc_6: -2.22062085e-03 + ArtUnc_7: 4.85613882e-03 + ArtUnc_8: 1.82704820e-03 + ArtUnc_9: 4.11760914e-03 + ArtUnc_10: -7.21443321e-03 + ArtUnc_11: 2.01225065e-02 + ArtUnc_12: 2.28174041e-03 +- ArtUnc_1: -7.21116649e-03 + ArtUnc_2: -8.97240876e-03 + ArtUnc_3: -3.96709194e-05 + ArtUnc_4: -7.34342586e-03 + ArtUnc_5: 1.00214207e-02 + ArtUnc_6: -6.16902851e-03 + ArtUnc_7: 7.93322873e-03 + ArtUnc_8: -1.22339060e-02 + ArtUnc_9: 8.04852529e-03 + ArtUnc_10: 8.13640552e-03 + ArtUnc_11: -1.02984586e-03 + ArtUnc_12: 1.03361833e-02 +- ArtUnc_1: -1.41202919e-02 + ArtUnc_2: 5.17837603e-03 + ArtUnc_3: -3.96532247e-05 + ArtUnc_4: 1.96160147e-04 + ArtUnc_5: -2.32060085e-03 + ArtUnc_6: -4.67904338e-03 + ArtUnc_7: 7.42638572e-03 + ArtUnc_8: 1.94355625e-03 + ArtUnc_9: 5.80640731e-03 + ArtUnc_10: 9.07400617e-03 + ArtUnc_11: -1.78307364e-03 + ArtUnc_12: -1.92671527e-02 +- ArtUnc_1: 1.34312170e-02 + ArtUnc_2: -1.06868772e-02 + ArtUnc_3: -4.75683026e-05 + ArtUnc_4: -8.88092641e-03 + ArtUnc_5: -1.58116949e-02 + ArtUnc_6: -4.47341716e-03 + ArtUnc_7: 4.55609977e-03 + ArtUnc_8: 1.77884281e-04 + ArtUnc_9: 5.86868152e-03 + ArtUnc_10: -1.48315735e-02 + ArtUnc_11: -7.63738295e-03 + ArtUnc_12: -2.49977788e-04 +- ArtUnc_1: 1.10839474e-02 + ArtUnc_2: -2.52956224e-03 + ArtUnc_3: -5.28653453e-05 + ArtUnc_4: 3.70241721e-03 + ArtUnc_5: -1.11464480e-03 + ArtUnc_6: -9.16594995e-03 + ArtUnc_7: 9.38449447e-03 + ArtUnc_8: -1.44565936e-03 + ArtUnc_9: -1.85363219e-02 + ArtUnc_10: 2.05754613e-04 + ArtUnc_11: 6.26177448e-04 + ArtUnc_12: 5.39753205e-04 +- ArtUnc_1: 2.09201955e-02 + ArtUnc_2: -3.20207439e-03 + ArtUnc_3: -2.14154559e-04 + ArtUnc_4: 3.61372027e-03 + ArtUnc_5: 2.21349389e-03 + ArtUnc_6: 2.30256211e-03 + ArtUnc_7: -8.60181759e-03 + ArtUnc_8: -1.26536910e-03 + ArtUnc_9: 6.63409711e-04 + ArtUnc_10: 2.24609273e-03 + ArtUnc_11: 1.39156321e-03 + ArtUnc_12: -1.36822400e-03 diff --git a/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_13TEV_LJ_DIF/data_dSig_dmttBar.yaml b/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_13TEV_LJ_DIF/data_dSig_dmttBar.yaml index 8d7af507a5..807c299b18 100644 --- a/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_13TEV_LJ_DIF/data_dSig_dmttBar.yaml +++ b/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_13TEV_LJ_DIF/data_dSig_dmttBar.yaml @@ -2,9 +2,9 @@ data_central: - 2.428255 - 3.158267 - 1.798348 -- 0.8555321 -- 0.3512963 +- 8.55532100e-01 +- 3.51296300e-01 - 0.146552 -- 0.05697398 -- 0.0190445 -- 0.004882488 +- 5.69739800e-02 +- 1.90445000e-02 +- 4.88248800e-03 diff --git a/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_13TEV_LJ_DIF/data_dSig_dmttBar_norm.yaml b/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_13TEV_LJ_DIF/data_dSig_dmttBar_norm.yaml index 9c517b76b5..436edcf754 100644 --- a/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_13TEV_LJ_DIF/data_dSig_dmttBar_norm.yaml +++ b/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_13TEV_LJ_DIF/data_dSig_dmttBar_norm.yaml @@ -1,10 +1,10 @@ data_central: -- 0.002971283 -- 0.003864547 -- 0.00220051 -- 0.001046854 -- 0.0004298564 -- 0.0001793252 -- 6.971501e-05 -- 2.330341e-05 -- 5.974353e-06 +- 2.97128300e-03 +- 3.86454700e-03 +- 2.20051000e-03 +- 1.04685400e-03 +- 4.29856400e-04 +- 1.79325200e-04 +- 6.97150100e-05 +- 2.33034100e-05 +- 5.97435300e-06 diff --git a/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_13TEV_LJ_DIF/data_dSig_dpTt.yaml b/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_13TEV_LJ_DIF/data_dSig_dpTt.yaml index dc92d066a2..cbcfc03c9f 100644 --- a/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_13TEV_LJ_DIF/data_dSig_dpTt.yaml +++ b/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_13TEV_LJ_DIF/data_dSig_dpTt.yaml @@ -3,7 +3,7 @@ data_central: - 5.150934 - 3.939237 - 1.830436 -- 0.6709011 -- 0.2332631 -- 0.08340849 -- 0.006834904 +- 6.70901100e-01 +- 2.33263100e-01 +- 8.34084900e-02 +- 6.83490400e-03 diff --git a/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_13TEV_LJ_DIF/data_dSig_dpTt_norm.yaml b/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_13TEV_LJ_DIF/data_dSig_dpTt_norm.yaml index c279aec779..9ae14feedb 100644 --- a/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_13TEV_LJ_DIF/data_dSig_dpTt_norm.yaml +++ b/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_13TEV_LJ_DIF/data_dSig_dpTt_norm.yaml @@ -1,9 +1,9 @@ data_central: -- 0.003159005 -- 0.006282608 -- 0.004804698 -- 0.002232587 -- 0.0008182998 -- 0.0002845117 -- 0.0001017336 -- 8.336551e-06 +- 3.15900500e-03 +- 6.28260800e-03 +- 4.80469800e-03 +- 2.23258700e-03 +- 8.18299800e-04 +- 2.84511700e-04 +- 1.01733600e-04 +- 8.33655100e-06 diff --git a/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_13TEV_LJ_DIF/data_dSig_dyt_norm.yaml b/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_13TEV_LJ_DIF/data_dSig_dyt_norm.yaml index 92075ec10b..f0be7d73d2 100644 --- a/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_13TEV_LJ_DIF/data_dSig_dyt_norm.yaml +++ b/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_13TEV_LJ_DIF/data_dSig_dyt_norm.yaml @@ -1,6 +1,6 @@ data_central: -- 0.5992388 -- 0.5640683 -- 0.4909782 -- 0.3741397 +- 5.99238800e-01 +- 5.64068300e-01 +- 4.90978200e-01 +- 3.74139700e-01 - 0.18902 diff --git a/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_13TEV_LJ_DIF/data_dSig_dyttBar_norm.yaml b/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_13TEV_LJ_DIF/data_dSig_dyttBar_norm.yaml index 26c41da108..88744506a1 100644 --- a/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_13TEV_LJ_DIF/data_dSig_dyttBar_norm.yaml +++ b/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_13TEV_LJ_DIF/data_dSig_dyttBar_norm.yaml @@ -1,8 +1,8 @@ data_central: -- 0.7065557 -- 0.6899223 -- 0.6262181 -- 0.5248349 -- 0.4067388 -- 0.2669551 -- 0.1096585 +- 7.06555700e-01 +- 6.89922300e-01 +- 6.26218100e-01 +- 5.24834900e-01 +- 4.06738800e-01 +- 2.66955100e-01 +- 1.09658500e-01 diff --git a/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_13TEV_LJ_DIF/filter.py b/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_13TEV_LJ_DIF/filter.py index f224ee8f3f..207f3a086c 100644 --- a/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_13TEV_LJ_DIF/filter.py +++ b/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_13TEV_LJ_DIF/filter.py @@ -2,8 +2,11 @@ from nnpdf_data.filter_utils.utils import covmat_to_artunc as cta from nnpdf_data.filter_utils.utils import percentage_to_absolute as pta +from nnpdf_data.filter_utils.utils import prettify_float from nnpdf_data.filter_utils.utils import symmetrize_errors as se +yaml.add_representer(float, prettify_float) + def processData(): with open('metadata.yaml', 'r') as file: diff --git a/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_13TEV_LJ_DIF/uncertainties_dSig_dmttBar.yaml b/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_13TEV_LJ_DIF/uncertainties_dSig_dmttBar.yaml index df8aa01fae..802da9a3ce 100644 --- a/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_13TEV_LJ_DIF/uncertainties_dSig_dmttBar.yaml +++ b/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_13TEV_LJ_DIF/uncertainties_dSig_dmttBar.yaml @@ -36,84 +36,84 @@ definitions: treatment: ADD type: CORR bins: -- ArtUnc_1: -0.4768937138449865 - ArtUnc_2: 0.11372810848126905 - ArtUnc_3: -0.00601411266852345 - ArtUnc_4: -0.0014363543876582403 - ArtUnc_5: -0.00025079032733944394 - ArtUnc_6: 8.641653192307521e-05 - ArtUnc_7: 2.184013893147147e-06 - ArtUnc_8: -1.6978244824953967e-06 - ArtUnc_9: -1.8471518680358935e-07 -- ArtUnc_1: -0.3285526544782228 - ArtUnc_2: -0.11473611849129288 - ArtUnc_3: 0.02192827592066537 - ArtUnc_4: 0.0027138647532772174 - ArtUnc_5: 0.0007368077929176224 - ArtUnc_6: -0.00013771629583494798 - ArtUnc_7: 1.1958122255561312e-05 - ArtUnc_8: 2.7351275521414434e-06 - ArtUnc_9: -3.6657710984616997e-07 -- ArtUnc_1: -0.12125324691251281 - ArtUnc_2: -0.1120665222608525 - ArtUnc_3: -0.019861646447733906 - ArtUnc_4: -0.007267996836250224 - ArtUnc_5: -0.0011833236516691058 - ArtUnc_6: 0.00018589134688611837 - ArtUnc_7: -3.2903160760106006e-05 - ArtUnc_8: -4.937842319861809e-06 - ArtUnc_9: 2.5390639587545284e-06 -- ArtUnc_1: -0.07042088220456251 - ArtUnc_2: -0.035805097877114986 - ArtUnc_3: -0.02496212482723592 - ArtUnc_4: 0.007336998645481088 - ArtUnc_5: 0.0031346185177558725 - ArtUnc_6: -0.00035324598994719315 - ArtUnc_7: 6.549041701878525e-05 - ArtUnc_8: -1.3252530704677942e-05 - ArtUnc_9: -3.1498391661734858e-06 -- ArtUnc_1: -0.028529033961831287 - ArtUnc_2: -0.012326485833619744 - ArtUnc_3: -0.005269531518183977 - ArtUnc_4: 0.004649712902739519 - ArtUnc_5: -0.006519559255385965 - ArtUnc_6: -0.001120642198696744 - ArtUnc_7: -5.55334063431358e-05 - ArtUnc_8: 2.4140737793592194e-05 - ArtUnc_9: -4.140384261865427e-06 -- ArtUnc_1: -0.008643721506905573 - ArtUnc_2: -0.007835605641362188 - ArtUnc_3: -0.0017545159056862013 - ArtUnc_4: 0.002277222578443607 - ArtUnc_5: -0.001557474628302254 - ArtUnc_6: 0.0036980858291334796 - ArtUnc_7: 0.000472798562584605 - ArtUnc_8: 3.3103280676859063e-06 - ArtUnc_9: 1.3362355138242217e-05 -- ArtUnc_1: -0.0051433608682601595 - ArtUnc_2: -0.0018126597286757065 - ArtUnc_3: -0.0009181871562693953 - ArtUnc_4: 0.0009017142951001793 - ArtUnc_5: 1.224178311782521e-05 - ArtUnc_6: 0.0010843183798372577 - ArtUnc_7: -0.0013474885670333588 - ArtUnc_8: 0.00041302592519577207 - ArtUnc_9: -4.1656928415982286e-05 -- ArtUnc_1: -0.0015877692683655441 - ArtUnc_2: -0.0006361789162923479 - ArtUnc_3: -1.2793042091047493e-05 - ArtUnc_4: 0.0005018508540304645 - ArtUnc_5: -0.00021866941481089988 - ArtUnc_6: 0.000499895411483625 - ArtUnc_7: -0.0006352091336320839 - ArtUnc_8: -0.0008725170435780531 - ArtUnc_9: -2.7546780248344236e-05 -- ArtUnc_1: -0.0008647495411311449 - ArtUnc_2: 0.0002513344158606753 - ArtUnc_3: -0.000131474182411639 - ArtUnc_4: 0.0001862352709414672 - ArtUnc_5: 3.174258777583912e-06 - ArtUnc_6: 7.371630602090801e-06 - ArtUnc_7: -0.00018032080523772018 - ArtUnc_8: -1.535518893763898e-05 - ArtUnc_9: 0.00044300611084790417 +- ArtUnc_1: -4.76893714e-01 + ArtUnc_2: 1.13728108e-01 + ArtUnc_3: -6.01411267e-03 + ArtUnc_4: -1.43635439e-03 + ArtUnc_5: -2.50790327e-04 + ArtUnc_6: 8.64165319e-05 + ArtUnc_7: 2.18401389e-06 + ArtUnc_8: -1.69782448e-06 + ArtUnc_9: -1.84715187e-07 +- ArtUnc_1: -3.28552654e-01 + ArtUnc_2: -1.14736118e-01 + ArtUnc_3: 2.19282759e-02 + ArtUnc_4: 2.71386475e-03 + ArtUnc_5: 7.36807793e-04 + ArtUnc_6: -1.37716296e-04 + ArtUnc_7: 1.19581223e-05 + ArtUnc_8: 2.73512755e-06 + ArtUnc_9: -3.66577110e-07 +- ArtUnc_1: -1.21253247e-01 + ArtUnc_2: -1.12066522e-01 + ArtUnc_3: -1.98616464e-02 + ArtUnc_4: -7.26799684e-03 + ArtUnc_5: -1.18332365e-03 + ArtUnc_6: 1.85891347e-04 + ArtUnc_7: -3.29031608e-05 + ArtUnc_8: -4.93784232e-06 + ArtUnc_9: 2.53906396e-06 +- ArtUnc_1: -7.04208822e-02 + ArtUnc_2: -3.58050979e-02 + ArtUnc_3: -2.49621248e-02 + ArtUnc_4: 7.33699865e-03 + ArtUnc_5: 3.13461852e-03 + ArtUnc_6: -3.53245990e-04 + ArtUnc_7: 6.54904170e-05 + ArtUnc_8: -1.32525307e-05 + ArtUnc_9: -3.14983917e-06 +- ArtUnc_1: -2.85290340e-02 + ArtUnc_2: -1.23264858e-02 + ArtUnc_3: -5.26953152e-03 + ArtUnc_4: 4.64971290e-03 + ArtUnc_5: -6.51955926e-03 + ArtUnc_6: -1.12064220e-03 + ArtUnc_7: -5.55334063e-05 + ArtUnc_8: 2.41407378e-05 + ArtUnc_9: -4.14038426e-06 +- ArtUnc_1: -8.64372151e-03 + ArtUnc_2: -7.83560564e-03 + ArtUnc_3: -1.75451591e-03 + ArtUnc_4: 2.27722258e-03 + ArtUnc_5: -1.55747463e-03 + ArtUnc_6: 3.69808583e-03 + ArtUnc_7: 4.72798563e-04 + ArtUnc_8: 3.31032807e-06 + ArtUnc_9: 1.33623551e-05 +- ArtUnc_1: -5.14336087e-03 + ArtUnc_2: -1.81265973e-03 + ArtUnc_3: -9.18187156e-04 + ArtUnc_4: 9.01714295e-04 + ArtUnc_5: 1.22417831e-05 + ArtUnc_6: 1.08431838e-03 + ArtUnc_7: -1.34748857e-03 + ArtUnc_8: 4.13025925e-04 + ArtUnc_9: -4.16569284e-05 +- ArtUnc_1: -1.58776927e-03 + ArtUnc_2: -6.36178916e-04 + ArtUnc_3: -1.27930421e-05 + ArtUnc_4: 5.01850854e-04 + ArtUnc_5: -2.18669415e-04 + ArtUnc_6: 4.99895411e-04 + ArtUnc_7: -6.35209134e-04 + ArtUnc_8: -8.72517044e-04 + ArtUnc_9: -2.75467802e-05 +- ArtUnc_1: -8.64749541e-04 + ArtUnc_2: 2.51334416e-04 + ArtUnc_3: -1.31474182e-04 + ArtUnc_4: 1.86235271e-04 + ArtUnc_5: 3.17425878e-06 + ArtUnc_6: 7.37163060e-06 + ArtUnc_7: -1.80320805e-04 + ArtUnc_8: -1.53551889e-05 + ArtUnc_9: 4.43006111e-04 diff --git a/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_13TEV_LJ_DIF/uncertainties_dSig_dmttBar_norm.yaml b/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_13TEV_LJ_DIF/uncertainties_dSig_dmttBar_norm.yaml index a6c5410c5d..e694d94843 100644 --- a/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_13TEV_LJ_DIF/uncertainties_dSig_dmttBar_norm.yaml +++ b/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_13TEV_LJ_DIF/uncertainties_dSig_dmttBar_norm.yaml @@ -36,84 +36,84 @@ definitions: treatment: ADD type: CORR bins: -- ArtUnc_1: -0.0003767721635734172 - ArtUnc_2: -1.8595187410419988e-05 - ArtUnc_3: -9.837505799282343e-06 - ArtUnc_4: 3.71258067864992e-07 - ArtUnc_5: -1.9836873059643854e-07 - ArtUnc_6: -4.4191540789049355e-08 - ArtUnc_7: -9.08740389312925e-09 - ArtUnc_8: 4.777453717213974e-09 - ArtUnc_9: 1.5179686318585183e-10 -- ArtUnc_1: -3.2177541338357055e-05 - ArtUnc_2: 4.6392361806497284e-05 - ArtUnc_3: -3.455512309171449e-05 - ArtUnc_4: -1.911129200720932e-06 - ArtUnc_5: 7.970535972744484e-07 - ArtUnc_6: -9.975403623626914e-08 - ArtUnc_7: 1.816128950169616e-08 - ArtUnc_8: -8.446568032425312e-09 - ArtUnc_9: -2.499273630927996e-09 -- ArtUnc_1: -0.00010230522075010726 - ArtUnc_2: 3.488366320202561e-05 - ArtUnc_3: 2.5507645997459276e-05 - ArtUnc_4: 1.0740723259459702e-05 - ArtUnc_5: 8.149793364464123e-07 - ArtUnc_6: -3.2069057582737746e-07 - ArtUnc_7: -3.4028797281143786e-08 - ArtUnc_8: 2.2730012094823326e-08 - ArtUnc_9: -1.8633403844871215e-10 -- ArtUnc_1: -8.181494155517115e-05 - ArtUnc_2: 2.284062034235567e-05 - ArtUnc_3: 2.208761063800748e-05 - ArtUnc_4: -1.1542087251152821e-05 - ArtUnc_5: -3.729960411030779e-06 - ArtUnc_6: 7.908890073733625e-07 - ArtUnc_7: -2.8873031609627195e-08 - ArtUnc_8: -1.1564969629962798e-08 - ArtUnc_9: 1.18344055580911e-09 -- ArtUnc_1: -3.347803273003813e-05 - ArtUnc_2: 1.9373964576078233e-06 - ArtUnc_3: 1.054703626427947e-05 - ArtUnc_4: -5.93262296803935e-06 - ArtUnc_5: 7.885670282040238e-06 - ArtUnc_6: 9.186261615083156e-07 - ArtUnc_7: 6.191810377498999e-08 - ArtUnc_8: -1.662962806867607e-08 - ArtUnc_9: -7.0734607051405705e-09 -- ArtUnc_1: -7.951426151288158e-06 - ArtUnc_2: 9.053693175480572e-07 - ArtUnc_3: 4.5403577568246554e-06 - ArtUnc_4: -3.7561159097540905e-06 - ArtUnc_5: 9.087622347278947e-07 - ArtUnc_6: -4.413918789060133e-06 - ArtUnc_7: -5.672581705574728e-07 - ArtUnc_8: -3.821829622957077e-08 - ArtUnc_9: 1.0145248696772597e-08 -- ArtUnc_1: -6.036261582039844e-06 - ArtUnc_2: 5.887016678095043e-07 - ArtUnc_3: 2.0477179866872047e-06 - ArtUnc_4: -6.871326043780139e-07 - ArtUnc_5: -7.227780283561226e-08 - ArtUnc_6: -1.2457456909019132e-06 - ArtUnc_7: 1.7906611765212065e-06 - ArtUnc_8: -3.94950786775536e-07 - ArtUnc_9: -4.600337213956871e-08 -- ArtUnc_1: -2.5995713117427245e-07 - ArtUnc_2: 2.039372781204784e-07 - ArtUnc_3: 4.968675498953115e-07 - ArtUnc_4: -7.67700902997636e-07 - ArtUnc_5: 6.718880105682592e-08 - ArtUnc_6: -5.32328973655657e-07 - ArtUnc_7: 5.756132546172232e-07 - ArtUnc_8: 1.1791185455809629e-06 - ArtUnc_9: -3.240684090377165e-08 -- ArtUnc_1: -7.654449498908978e-07 - ArtUnc_2: 2.693838633714966e-07 - ArtUnc_3: 6.433843308290021e-08 - ArtUnc_4: -9.776166729021103e-08 - ArtUnc_5: 1.0266024250195621e-07 - ArtUnc_6: -4.840785457695069e-08 - ArtUnc_7: 2.1183143777313055e-07 - ArtUnc_8: 4.009407525988049e-08 - ArtUnc_9: 5.065244777928927e-07 +- ArtUnc_1: -3.76772164e-04 + ArtUnc_2: -1.85951874e-05 + ArtUnc_3: -9.83750580e-06 + ArtUnc_4: 3.71258068e-07 + ArtUnc_5: -1.98368731e-07 + ArtUnc_6: -4.41915408e-08 + ArtUnc_7: -9.08740389e-09 + ArtUnc_8: 4.77745372e-09 + ArtUnc_9: 1.51796863e-10 +- ArtUnc_1: -3.21775413e-05 + ArtUnc_2: 4.63923618e-05 + ArtUnc_3: -3.45551231e-05 + ArtUnc_4: -1.91112920e-06 + ArtUnc_5: 7.97053597e-07 + ArtUnc_6: -9.97540362e-08 + ArtUnc_7: 1.81612895e-08 + ArtUnc_8: -8.44656803e-09 + ArtUnc_9: -2.49927363e-09 +- ArtUnc_1: -1.02305221e-04 + ArtUnc_2: 3.48836632e-05 + ArtUnc_3: 2.55076460e-05 + ArtUnc_4: 1.07407233e-05 + ArtUnc_5: 8.14979336e-07 + ArtUnc_6: -3.20690576e-07 + ArtUnc_7: -3.40287973e-08 + ArtUnc_8: 2.27300121e-08 + ArtUnc_9: -1.86334038e-10 +- ArtUnc_1: -8.18149416e-05 + ArtUnc_2: 2.28406203e-05 + ArtUnc_3: 2.20876106e-05 + ArtUnc_4: -1.15420873e-05 + ArtUnc_5: -3.72996041e-06 + ArtUnc_6: 7.90889007e-07 + ArtUnc_7: -2.88730316e-08 + ArtUnc_8: -1.15649696e-08 + ArtUnc_9: 1.18344056e-09 +- ArtUnc_1: -3.34780327e-05 + ArtUnc_2: 1.93739646e-06 + ArtUnc_3: 1.05470363e-05 + ArtUnc_4: -5.93262297e-06 + ArtUnc_5: 7.88567028e-06 + ArtUnc_6: 9.18626162e-07 + ArtUnc_7: 6.19181038e-08 + ArtUnc_8: -1.66296281e-08 + ArtUnc_9: -7.07346071e-09 +- ArtUnc_1: -7.95142615e-06 + ArtUnc_2: 9.05369318e-07 + ArtUnc_3: 4.54035776e-06 + ArtUnc_4: -3.75611591e-06 + ArtUnc_5: 9.08762235e-07 + ArtUnc_6: -4.41391879e-06 + ArtUnc_7: -5.67258171e-07 + ArtUnc_8: -3.82182962e-08 + ArtUnc_9: 1.01452487e-08 +- ArtUnc_1: -6.03626158e-06 + ArtUnc_2: 5.88701668e-07 + ArtUnc_3: 2.04771799e-06 + ArtUnc_4: -6.87132604e-07 + ArtUnc_5: -7.22778028e-08 + ArtUnc_6: -1.24574569e-06 + ArtUnc_7: 1.79066118e-06 + ArtUnc_8: -3.94950787e-07 + ArtUnc_9: -4.60033721e-08 +- ArtUnc_1: -2.59957131e-07 + ArtUnc_2: 2.03937278e-07 + ArtUnc_3: 4.96867550e-07 + ArtUnc_4: -7.67700903e-07 + ArtUnc_5: 6.71888011e-08 + ArtUnc_6: -5.32328974e-07 + ArtUnc_7: 5.75613255e-07 + ArtUnc_8: 1.17911855e-06 + ArtUnc_9: -3.24068409e-08 +- ArtUnc_1: -7.65444950e-07 + ArtUnc_2: 2.69383863e-07 + ArtUnc_3: 6.43384331e-08 + ArtUnc_4: -9.77616673e-08 + ArtUnc_5: 1.02660243e-07 + ArtUnc_6: -4.84078546e-08 + ArtUnc_7: 2.11831438e-07 + ArtUnc_8: 4.00940753e-08 + ArtUnc_9: 5.06524478e-07 diff --git a/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_13TEV_LJ_DIF/uncertainties_dSig_dpTt.yaml b/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_13TEV_LJ_DIF/uncertainties_dSig_dpTt.yaml index 520dc9b95c..bc24607ba4 100644 --- a/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_13TEV_LJ_DIF/uncertainties_dSig_dpTt.yaml +++ b/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_13TEV_LJ_DIF/uncertainties_dSig_dpTt.yaml @@ -32,67 +32,67 @@ definitions: treatment: ADD type: CORR bins: -- ArtUnc_1: -0.4578007848394475 - ArtUnc_2: -0.10894337042160275 - ArtUnc_3: -0.028529948448664858 - ArtUnc_4: -0.018324323381949437 - ArtUnc_5: -0.000137782000205578 - ArtUnc_6: 0.00012131294536779032 - ArtUnc_7: -0.00010459879789593307 - ArtUnc_8: 3.749449585994743e-06 -- ArtUnc_1: -0.7272702302958105 - ArtUnc_2: -0.028128001071933223 - ArtUnc_3: 0.02552629009958365 - ArtUnc_4: 0.015334565440666161 - ArtUnc_5: -0.0002686712227961708 - ArtUnc_6: -7.282716713717671e-05 - ArtUnc_7: 9.900113674876598e-05 - ArtUnc_8: -2.902857930824443e-06 -- ArtUnc_1: -0.34167331979100796 - ArtUnc_2: 0.1746082129981398 - ArtUnc_3: 0.0061315449038217415 - ArtUnc_4: -0.015234173152283467 - ArtUnc_5: 0.0012427218764505905 - ArtUnc_6: 0.0003041875898921142 - ArtUnc_7: -4.124570691367787e-05 - ArtUnc_8: 5.752054202146463e-06 -- ArtUnc_1: -0.1424300711268384 - ArtUnc_2: 0.06934764747362841 - ArtUnc_3: -0.04496666785851756 - ArtUnc_4: 0.01380684936258576 - ArtUnc_5: -0.005270285757469065 - ArtUnc_6: -0.002041864917358551 - ArtUnc_7: 5.6031504130110845e-05 - ArtUnc_8: -7.564533064744468e-06 -- ArtUnc_1: -0.049360387167213284 - ArtUnc_2: 0.016050667645273662 - ArtUnc_3: -0.020987146517902417 - ArtUnc_4: 0.00857314101087287 - ArtUnc_5: 0.007822916387333626 - ArtUnc_6: 0.006025065548401886 - ArtUnc_7: -0.0006850876541672745 - ArtUnc_8: -2.0008196272050745e-05 -- ArtUnc_1: -0.019153879503505 - ArtUnc_2: -0.00028195918222526485 - ArtUnc_3: -0.006869576545077408 - ArtUnc_4: 0.0025811032578955113 - ArtUnc_5: 0.009784845944941818 - ArtUnc_6: -0.006124729314141065 - ArtUnc_7: -0.00020012988960249313 - ArtUnc_8: -2.552915428405661e-05 -- ArtUnc_1: -0.005250188868542926 - ArtUnc_2: 0.0015073531888265127 - ArtUnc_3: -0.004940248230774361 - ArtUnc_4: 0.0004198449161122257 - ArtUnc_5: 0.002051141213429885 - ArtUnc_6: 0.0008126223897775701 - ArtUnc_7: 0.0037487857072210405 - ArtUnc_8: 1.2295082137270223e-05 -- ArtUnc_1: -0.0007169104617765187 - ArtUnc_2: 0.00011116230272928719 - ArtUnc_3: -0.0005687378193235449 - ArtUnc_4: 0.00041943790368675346 - ArtUnc_5: 0.0002604725374867477 - ArtUnc_6: -4.9673119801807035e-05 - ArtUnc_7: -4.959979230787202e-05 - ArtUnc_8: 0.001281607572175139 +- ArtUnc_1: -4.57800785e-01 + ArtUnc_2: -1.08943370e-01 + ArtUnc_3: -2.85299484e-02 + ArtUnc_4: -1.83243234e-02 + ArtUnc_5: -1.37782000e-04 + ArtUnc_6: 1.21312945e-04 + ArtUnc_7: -1.04598798e-04 + ArtUnc_8: 3.74944959e-06 +- ArtUnc_1: -7.27270230e-01 + ArtUnc_2: -2.81280011e-02 + ArtUnc_3: 2.55262901e-02 + ArtUnc_4: 1.53345654e-02 + ArtUnc_5: -2.68671223e-04 + ArtUnc_6: -7.28271671e-05 + ArtUnc_7: 9.90011367e-05 + ArtUnc_8: -2.90285793e-06 +- ArtUnc_1: -3.41673320e-01 + ArtUnc_2: 1.74608213e-01 + ArtUnc_3: 6.13154490e-03 + ArtUnc_4: -1.52341732e-02 + ArtUnc_5: 1.24272188e-03 + ArtUnc_6: 3.04187590e-04 + ArtUnc_7: -4.12457069e-05 + ArtUnc_8: 5.75205420e-06 +- ArtUnc_1: -1.42430071e-01 + ArtUnc_2: 6.93476475e-02 + ArtUnc_3: -4.49666679e-02 + ArtUnc_4: 1.38068494e-02 + ArtUnc_5: -5.27028576e-03 + ArtUnc_6: -2.04186492e-03 + ArtUnc_7: 5.60315041e-05 + ArtUnc_8: -7.56453306e-06 +- ArtUnc_1: -4.93603872e-02 + ArtUnc_2: 1.60506676e-02 + ArtUnc_3: -2.09871465e-02 + ArtUnc_4: 8.57314101e-03 + ArtUnc_5: 7.82291639e-03 + ArtUnc_6: 6.02506555e-03 + ArtUnc_7: -6.85087654e-04 + ArtUnc_8: -2.00081963e-05 +- ArtUnc_1: -1.91538795e-02 + ArtUnc_2: -2.81959182e-04 + ArtUnc_3: -6.86957655e-03 + ArtUnc_4: 2.58110326e-03 + ArtUnc_5: 9.78484594e-03 + ArtUnc_6: -6.12472931e-03 + ArtUnc_7: -2.00129890e-04 + ArtUnc_8: -2.55291543e-05 +- ArtUnc_1: -5.25018887e-03 + ArtUnc_2: 1.50735319e-03 + ArtUnc_3: -4.94024823e-03 + ArtUnc_4: 4.19844916e-04 + ArtUnc_5: 2.05114121e-03 + ArtUnc_6: 8.12622390e-04 + ArtUnc_7: 3.74878571e-03 + ArtUnc_8: 1.22950821e-05 +- ArtUnc_1: -7.16910462e-04 + ArtUnc_2: 1.11162303e-04 + ArtUnc_3: -5.68737819e-04 + ArtUnc_4: 4.19437904e-04 + ArtUnc_5: 2.60472537e-04 + ArtUnc_6: -4.96731198e-05 + ArtUnc_7: -4.95997923e-05 + ArtUnc_8: 1.28160757e-03 diff --git a/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_13TEV_LJ_DIF/uncertainties_dSig_dpTt_norm.yaml b/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_13TEV_LJ_DIF/uncertainties_dSig_dpTt_norm.yaml index a66fb4df93..06c6b651e2 100644 --- a/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_13TEV_LJ_DIF/uncertainties_dSig_dpTt_norm.yaml +++ b/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_13TEV_LJ_DIF/uncertainties_dSig_dpTt_norm.yaml @@ -32,67 +32,67 @@ definitions: treatment: ADD type: CORR bins: -- ArtUnc_1: 0.0003000613383146498 - ArtUnc_2: -6.160525946139493e-05 - ArtUnc_3: -2.650572821846945e-05 - ArtUnc_4: -1.77597661677116e-05 - ArtUnc_5: -3.5167026083884023e-08 - ArtUnc_6: 5.711585999720439e-08 - ArtUnc_7: 1.3348470786014174e-07 - ArtUnc_8: 3.9602954117900495e-09 -- ArtUnc_1: 0.000290599196281625 - ArtUnc_2: -2.5417170773200103e-05 - ArtUnc_3: 3.524701539291585e-05 - ArtUnc_4: 1.8531392020966405e-05 - ArtUnc_5: 3.811531258636513e-07 - ArtUnc_6: -3.79929165312433e-07 - ArtUnc_7: -1.4259305341567106e-07 - ArtUnc_8: -3.0596592228070473e-09 -- ArtUnc_1: 0.00012242145464110756 - ArtUnc_2: 8.171165460362511e-05 - ArtUnc_3: 1.968036160788774e-05 - ArtUnc_4: -2.8246217537533306e-05 - ArtUnc_5: 3.2882796710170037e-06 - ArtUnc_6: 4.5983076727545854e-07 - ArtUnc_7: 5.7255169299838814e-08 - ArtUnc_8: -1.2706218737814834e-09 -- ArtUnc_1: 0.00016329736112724914 - ArtUnc_2: 8.100755427742141e-05 - ArtUnc_3: -2.0751935864502696e-05 - ArtUnc_4: 1.4592567025532981e-05 - ArtUnc_5: -9.262540268334962e-06 - ArtUnc_6: 1.5214406684099922e-06 - ArtUnc_7: -2.292484078360897e-07 - ArtUnc_8: 1.2473403201541863e-08 -- ArtUnc_1: 6.570753789615008e-05 - ArtUnc_2: 3.604439492540245e-05 - ArtUnc_3: -1.5899974453847757e-05 - ArtUnc_4: 1.1631527906491164e-05 - ArtUnc_5: 1.0703856851826212e-05 - ArtUnc_6: -6.6208162852360154e-06 - ArtUnc_7: 8.998120004105635e-07 - ArtUnc_8: -4.4806158222890025e-08 -- ArtUnc_1: 2.7933582024421333e-05 - ArtUnc_2: 9.17082631932869e-06 - ArtUnc_3: -8.831010761230868e-06 - ArtUnc_4: 9.120506267694199e-06 - ArtUnc_5: 1.0514490188114921e-05 - ArtUnc_6: 8.298924392608875e-06 - ArtUnc_7: -1.147137763293155e-07 - ArtUnc_8: -2.7295071469890558e-08 -- ArtUnc_1: 5.266154755490933e-06 - ArtUnc_2: 2.8192511022414486e-06 - ArtUnc_3: -3.48217824798994e-06 - ArtUnc_4: -1.1249888173745915e-07 - ArtUnc_5: 2.33494889456147e-06 - ArtUnc_6: -1.5616032356045077e-06 - ArtUnc_7: -4.593481712721891e-06 - ArtUnc_8: 2.346729190762568e-08 -- ArtUnc_1: 8.745845012891614e-07 - ArtUnc_2: 6.602560897159979e-07 - ArtUnc_3: -2.3390106121505754e-07 - ArtUnc_4: 4.25224503617616e-07 - ArtUnc_5: 5.193544703319158e-07 - ArtUnc_6: -3.321914811663435e-08 - ArtUnc_7: 9.163973676815969e-08 - ArtUnc_8: 1.6035609879805243e-06 +- ArtUnc_1: 3.00061338e-04 + ArtUnc_2: -6.16052595e-05 + ArtUnc_3: -2.65057282e-05 + ArtUnc_4: -1.77597662e-05 + ArtUnc_5: -3.51670261e-08 + ArtUnc_6: 5.71158600e-08 + ArtUnc_7: 1.33484708e-07 + ArtUnc_8: 3.96029541e-09 +- ArtUnc_1: 2.90599196e-04 + ArtUnc_2: -2.54171708e-05 + ArtUnc_3: 3.52470154e-05 + ArtUnc_4: 1.85313920e-05 + ArtUnc_5: 3.81153126e-07 + ArtUnc_6: -3.79929165e-07 + ArtUnc_7: -1.42593053e-07 + ArtUnc_8: -3.05965922e-09 +- ArtUnc_1: 1.22421455e-04 + ArtUnc_2: 8.17116546e-05 + ArtUnc_3: 1.96803616e-05 + ArtUnc_4: -2.82462175e-05 + ArtUnc_5: 3.28827967e-06 + ArtUnc_6: 4.59830767e-07 + ArtUnc_7: 5.72551693e-08 + ArtUnc_8: -1.27062187e-09 +- ArtUnc_1: 1.63297361e-04 + ArtUnc_2: 8.10075543e-05 + ArtUnc_3: -2.07519359e-05 + ArtUnc_4: 1.45925670e-05 + ArtUnc_5: -9.26254027e-06 + ArtUnc_6: 1.52144067e-06 + ArtUnc_7: -2.29248408e-07 + ArtUnc_8: 1.24734032e-08 +- ArtUnc_1: 6.57075379e-05 + ArtUnc_2: 3.60443949e-05 + ArtUnc_3: -1.58999745e-05 + ArtUnc_4: 1.16315279e-05 + ArtUnc_5: 1.07038569e-05 + ArtUnc_6: -6.62081629e-06 + ArtUnc_7: 8.99812000e-07 + ArtUnc_8: -4.48061582e-08 +- ArtUnc_1: 2.79335820e-05 + ArtUnc_2: 9.17082632e-06 + ArtUnc_3: -8.83101076e-06 + ArtUnc_4: 9.12050627e-06 + ArtUnc_5: 1.05144902e-05 + ArtUnc_6: 8.29892439e-06 + ArtUnc_7: -1.14713776e-07 + ArtUnc_8: -2.72950715e-08 +- ArtUnc_1: 5.26615476e-06 + ArtUnc_2: 2.81925110e-06 + ArtUnc_3: -3.48217825e-06 + ArtUnc_4: -1.12498882e-07 + ArtUnc_5: 2.33494889e-06 + ArtUnc_6: -1.56160324e-06 + ArtUnc_7: -4.59348171e-06 + ArtUnc_8: 2.34672919e-08 +- ArtUnc_1: 8.74584501e-07 + ArtUnc_2: 6.60256090e-07 + ArtUnc_3: -2.33901061e-07 + ArtUnc_4: 4.25224504e-07 + ArtUnc_5: 5.19354470e-07 + ArtUnc_6: -3.32191481e-08 + ArtUnc_7: 9.16397368e-08 + ArtUnc_8: 1.60356099e-06 diff --git a/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_13TEV_LJ_DIF/uncertainties_dSig_dyt.yaml b/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_13TEV_LJ_DIF/uncertainties_dSig_dyt.yaml index 22013e7ce1..71fd4dfd8f 100644 --- a/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_13TEV_LJ_DIF/uncertainties_dSig_dyt.yaml +++ b/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_13TEV_LJ_DIF/uncertainties_dSig_dyt.yaml @@ -20,28 +20,28 @@ definitions: treatment: ADD type: CORR bins: -- ArtUnc_1: 53.66352050138133 - ArtUnc_2: -3.7750194250080833 - ArtUnc_3: -0.5786578680721132 - ArtUnc_4: -2.763746098338734 - ArtUnc_5: -0.05155884283587516 -- ArtUnc_1: 49.598256488327515 - ArtUnc_2: -1.6935103469057828 - ArtUnc_3: -0.9864695637887682 - ArtUnc_4: 3.472859593499212 - ArtUnc_5: -0.3333167660943936 -- ArtUnc_1: 38.781832352337176 - ArtUnc_2: 5.408813994610983 - ArtUnc_3: -1.7285592957614304 - ArtUnc_4: -0.47459013086683255 - ArtUnc_5: 1.225176532436882 -- ArtUnc_1: 27.371249351519378 - ArtUnc_2: 3.285927093503573 - ArtUnc_3: 3.068270376558606 - ArtUnc_4: -0.45232333574040257 - ArtUnc_5: -1.7884385841862362 -- ArtUnc_1: 13.430265289689991 - ArtUnc_2: -0.977467998547453 - ArtUnc_3: 4.693451001471641 - ArtUnc_4: 0.5100937394857312 - ArtUnc_5: 1.5439730030302 +- ArtUnc_1: 5.36635205e+01 + ArtUnc_2: -3.77501943e+00 + ArtUnc_3: -5.78657868e-01 + ArtUnc_4: -2.76374610e+00 + ArtUnc_5: -5.15588428e-02 +- ArtUnc_1: 4.95982565e+01 + ArtUnc_2: -1.69351035e+00 + ArtUnc_3: -9.86469564e-01 + ArtUnc_4: 3.47285959e+00 + ArtUnc_5: -3.33316766e-01 +- ArtUnc_1: 3.87818324e+01 + ArtUnc_2: 5.40881399e+00 + ArtUnc_3: -1.72855930e+00 + ArtUnc_4: -4.74590131e-01 + ArtUnc_5: 1.22517653e+00 +- ArtUnc_1: 2.73712494e+01 + ArtUnc_2: 3.28592709e+00 + ArtUnc_3: 3.06827038e+00 + ArtUnc_4: -4.52323336e-01 + ArtUnc_5: -1.78843858e+00 +- ArtUnc_1: 1.34302653e+01 + ArtUnc_2: -9.77467999e-01 + ArtUnc_3: 4.69345100e+00 + ArtUnc_4: 5.10093739e-01 + ArtUnc_5: 1.54397300e+00 diff --git a/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_13TEV_LJ_DIF/uncertainties_dSig_dyt_norm.yaml b/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_13TEV_LJ_DIF/uncertainties_dSig_dyt_norm.yaml index ec7f150c43..028db540ab 100644 --- a/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_13TEV_LJ_DIF/uncertainties_dSig_dyt_norm.yaml +++ b/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_13TEV_LJ_DIF/uncertainties_dSig_dyt_norm.yaml @@ -20,28 +20,28 @@ definitions: treatment: ADD type: CORR bins: -- ArtUnc_1: -0.012706709615042108 - ArtUnc_2: -0.00389649417215383 - ArtUnc_3: -0.0023844594647624475 - ArtUnc_4: 0.0021373309146633383 - ArtUnc_5: 5.50776497030282e-05 -- ArtUnc_1: -0.009259977412065674 - ArtUnc_2: -0.0007197191460585708 - ArtUnc_3: 0.0021115201998666306 - ArtUnc_4: -0.004128053897641541 - ArtUnc_5: -0.0001883511150798717 -- ArtUnc_1: -0.0032618898692745434 - ArtUnc_2: 0.0009353043422856123 - ArtUnc_3: 0.004873624569797542 - ArtUnc_4: 0.00204176952875589 - ArtUnc_5: 0.0018799577155179442 -- ArtUnc_1: -0.005102498201595817 - ArtUnc_2: 0.005802299988967877 - ArtUnc_3: 0.0011849593459457304 - ArtUnc_4: 0.001394152146793754 - ArtUnc_5: -0.0023895685972118524 -- ArtUnc_1: -0.0037030689160268975 - ArtUnc_2: 0.0063512504124315205 - ArtUnc_3: -0.003023836483941714 - ArtUnc_4: -0.0007308650366251342 - ArtUnc_5: 0.0019186318089632946 +- ArtUnc_1: -1.27067096e-02 + ArtUnc_2: -3.89649417e-03 + ArtUnc_3: -2.38445946e-03 + ArtUnc_4: 2.13733091e-03 + ArtUnc_5: 5.50776497e-05 +- ArtUnc_1: -9.25997741e-03 + ArtUnc_2: -7.19719146e-04 + ArtUnc_3: 2.11152020e-03 + ArtUnc_4: -4.12805390e-03 + ArtUnc_5: -1.88351115e-04 +- ArtUnc_1: -3.26188987e-03 + ArtUnc_2: 9.35304342e-04 + ArtUnc_3: 4.87362457e-03 + ArtUnc_4: 2.04176953e-03 + ArtUnc_5: 1.87995772e-03 +- ArtUnc_1: -5.10249820e-03 + ArtUnc_2: 5.80229999e-03 + ArtUnc_3: 1.18495935e-03 + ArtUnc_4: 1.39415215e-03 + ArtUnc_5: -2.38956860e-03 +- ArtUnc_1: -3.70306892e-03 + ArtUnc_2: 6.35125041e-03 + ArtUnc_3: -3.02383648e-03 + ArtUnc_4: -7.30865037e-04 + ArtUnc_5: 1.91863181e-03 diff --git a/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_13TEV_LJ_DIF/uncertainties_dSig_dyttBar.yaml b/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_13TEV_LJ_DIF/uncertainties_dSig_dyttBar.yaml index 8188ad3d26..c5a5caff38 100644 --- a/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_13TEV_LJ_DIF/uncertainties_dSig_dyttBar.yaml +++ b/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_13TEV_LJ_DIF/uncertainties_dSig_dyttBar.yaml @@ -28,52 +28,52 @@ definitions: treatment: ADD type: CORR bins: -- ArtUnc_1: 60.69782592887326 - ArtUnc_2: -1.5814559005174211 - ArtUnc_3: 2.7315268493135396 - ArtUnc_4: 3.626036819211651 - ArtUnc_5: 1.5606901050973552 - ArtUnc_6: 1.1062819909407031 - ArtUnc_7: -0.06268454748129305 -- ArtUnc_1: 60.376632953038566 - ArtUnc_2: -1.8291649256616767 - ArtUnc_3: -3.7006864661978955 - ArtUnc_4: 0.8581492770379222 - ArtUnc_5: -2.409042727772081 - ArtUnc_6: -0.7121507323960499 - ArtUnc_7: 1.2546724258236945 -- ArtUnc_1: 52.37278380594989 - ArtUnc_2: -2.0729275327464154 - ArtUnc_3: -1.9986444159713452 - ArtUnc_4: -2.271205653341989 - ArtUnc_5: 0.44636902320212757 - ArtUnc_6: 0.6006785553763023 - ArtUnc_7: -2.2542123250009842 -- ArtUnc_1: 43.29173489509105 - ArtUnc_2: 0.5434783234173366 - ArtUnc_3: 1.839123760364604 - ArtUnc_4: -2.260530896403842 - ArtUnc_5: 2.0957710859369896 - ArtUnc_6: -2.6184068534002853 - ArtUnc_7: 0.888613555498092 -- ArtUnc_1: 32.54058948382702 - ArtUnc_2: 2.511050453330738 - ArtUnc_3: 4.363476916691242 - ArtUnc_4: -2.0147895805844533 - ArtUnc_5: -2.66402873740255 - ArtUnc_6: 1.2520978287718478 - ArtUnc_7: 0.2013845148531979 -- ArtUnc_1: 22.82011748943599 - ArtUnc_2: 9.020097126580488 - ArtUnc_3: -1.9425770423760542 - ArtUnc_4: 1.095361922894252 - ArtUnc_5: 0.39426209909455184 - ArtUnc_6: -0.1603061757154848 - ArtUnc_7: -0.4748911611551116 -- ArtUnc_1: 7.555815007349886 - ArtUnc_2: 0.5182607219535085 - ArtUnc_3: -1.980899990331013 - ArtUnc_4: -1.9226113601112684 - ArtUnc_5: 1.8931373639771543 - ArtUnc_6: 2.734148889882438 - ArtUnc_7: 1.5783304324929497 +- ArtUnc_1: 6.06978259e+01 + ArtUnc_2: -1.58145590e+00 + ArtUnc_3: 2.73152685e+00 + ArtUnc_4: 3.62603682e+00 + ArtUnc_5: 1.56069011e+00 + ArtUnc_6: 1.10628199e+00 + ArtUnc_7: -6.26845475e-02 +- ArtUnc_1: 6.03766330e+01 + ArtUnc_2: -1.82916493e+00 + ArtUnc_3: -3.70068647e+00 + ArtUnc_4: 8.58149277e-01 + ArtUnc_5: -2.40904273e+00 + ArtUnc_6: -7.12150732e-01 + ArtUnc_7: 1.25467243e+00 +- ArtUnc_1: 5.23727838e+01 + ArtUnc_2: -2.07292753e+00 + ArtUnc_3: -1.99864442e+00 + ArtUnc_4: -2.27120565e+00 + ArtUnc_5: 4.46369023e-01 + ArtUnc_6: 6.00678555e-01 + ArtUnc_7: -2.25421233e+00 +- ArtUnc_1: 4.32917349e+01 + ArtUnc_2: 5.43478323e-01 + ArtUnc_3: 1.83912376e+00 + ArtUnc_4: -2.26053090e+00 + ArtUnc_5: 2.09577109e+00 + ArtUnc_6: -2.61840685e+00 + ArtUnc_7: 8.88613555e-01 +- ArtUnc_1: 3.25405895e+01 + ArtUnc_2: 2.51105045e+00 + ArtUnc_3: 4.36347692e+00 + ArtUnc_4: -2.01478958e+00 + ArtUnc_5: -2.66402874e+00 + ArtUnc_6: 1.25209783e+00 + ArtUnc_7: 2.01384515e-01 +- ArtUnc_1: 2.28201175e+01 + ArtUnc_2: 9.02009713e+00 + ArtUnc_3: -1.94257704e+00 + ArtUnc_4: 1.09536192e+00 + ArtUnc_5: 3.94262099e-01 + ArtUnc_6: -1.60306176e-01 + ArtUnc_7: -4.74891161e-01 +- ArtUnc_1: 7.55581501e+00 + ArtUnc_2: 5.18260722e-01 + ArtUnc_3: -1.98089999e+00 + ArtUnc_4: -1.92261136e+00 + ArtUnc_5: 1.89313736e+00 + ArtUnc_6: 2.73414889e+00 + ArtUnc_7: 1.57833043e+00 diff --git a/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_13TEV_LJ_DIF/uncertainties_dSig_dyttBar_norm.yaml b/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_13TEV_LJ_DIF/uncertainties_dSig_dyttBar_norm.yaml index 601d9f663b..5de9d39804 100644 --- a/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_13TEV_LJ_DIF/uncertainties_dSig_dyttBar_norm.yaml +++ b/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_13TEV_LJ_DIF/uncertainties_dSig_dyttBar_norm.yaml @@ -28,52 +28,52 @@ definitions: treatment: ADD type: CORR bins: -- ArtUnc_1: 0.008191398265176557 - ArtUnc_2: 0.0012316011479867684 - ArtUnc_3: 0.0066345343119298605 - ArtUnc_4: 0.00023438183477199041 - ArtUnc_5: 0.000854718708011135 - ArtUnc_6: -0.001484844378964388 - ArtUnc_7: 0.00027724680941012896 -- ArtUnc_1: 0.009457878558111357 - ArtUnc_2: 0.000969275156271732 - ArtUnc_3: -0.0022864875740969924 - ArtUnc_4: 0.0008056018846272151 - ArtUnc_5: -0.0026836901315786914 - ArtUnc_6: -0.0005219711707472282 - ArtUnc_7: -0.0022265157540455405 -- ArtUnc_1: 0.007941308842321073 - ArtUnc_2: 0.0009585772873667468 - ArtUnc_3: -0.002941834032292969 - ArtUnc_4: -0.0026980516528493097 - ArtUnc_5: 0.0016122206610113471 - ArtUnc_6: 0.0007580111996051157 - ArtUnc_7: 0.0005648334458043323 -- ArtUnc_1: 0.003863215593950219 - ArtUnc_2: -0.0019436518808428427 - ArtUnc_3: 3.309703727375033e-05 - ArtUnc_4: 0.0009102258023710316 - ArtUnc_5: -0.001049729410275544 - ArtUnc_6: 0.0033666177391626284 - ArtUnc_7: 0.004262878062897858 -- ArtUnc_1: 4.1461834118154906e-05 - ArtUnc_2: -0.0037499975100612954 - ArtUnc_3: 0.002308480254603088 - ArtUnc_4: -0.00039471843403126016 - ArtUnc_5: 0.00021649415651619504 - ArtUnc_6: 0.004754510671431161 - ArtUnc_7: -0.003107840796796195 -- ArtUnc_1: 0.0008938381956488971 - ArtUnc_2: -0.011245745225704002 - ArtUnc_3: 0.0001061764851613694 - ArtUnc_4: -0.0007233766214538483 - ArtUnc_5: -0.0005195676976105343 - ArtUnc_6: -0.0023064700666561746 - ArtUnc_7: 0.0003316106984196933 -- ArtUnc_1: 0.0036142026930795876 - ArtUnc_2: -0.002532253068954824 - ArtUnc_3: -0.0026775636772129884 - ArtUnc_4: 0.0024994200269876045 - ArtUnc_5: 0.0027912922742437283 - ArtUnc_6: -1.698832977125092e-05 - ArtUnc_7: -0.0006458981403185128 +- ArtUnc_1: 8.19139827e-03 + ArtUnc_2: 1.23160115e-03 + ArtUnc_3: 6.63453431e-03 + ArtUnc_4: 2.34381835e-04 + ArtUnc_5: 8.54718708e-04 + ArtUnc_6: -1.48484438e-03 + ArtUnc_7: 2.77246809e-04 +- ArtUnc_1: 9.45787856e-03 + ArtUnc_2: 9.69275156e-04 + ArtUnc_3: -2.28648757e-03 + ArtUnc_4: 8.05601885e-04 + ArtUnc_5: -2.68369013e-03 + ArtUnc_6: -5.21971171e-04 + ArtUnc_7: -2.22651575e-03 +- ArtUnc_1: 7.94130884e-03 + ArtUnc_2: 9.58577287e-04 + ArtUnc_3: -2.94183403e-03 + ArtUnc_4: -2.69805165e-03 + ArtUnc_5: 1.61222066e-03 + ArtUnc_6: 7.58011200e-04 + ArtUnc_7: 5.64833446e-04 +- ArtUnc_1: 3.86321559e-03 + ArtUnc_2: -1.94365188e-03 + ArtUnc_3: 3.30970373e-05 + ArtUnc_4: 9.10225802e-04 + ArtUnc_5: -1.04972941e-03 + ArtUnc_6: 3.36661774e-03 + ArtUnc_7: 4.26287806e-03 +- ArtUnc_1: 4.14618341e-05 + ArtUnc_2: -3.74999751e-03 + ArtUnc_3: 2.30848025e-03 + ArtUnc_4: -3.94718434e-04 + ArtUnc_5: 2.16494157e-04 + ArtUnc_6: 4.75451067e-03 + ArtUnc_7: -3.10784080e-03 +- ArtUnc_1: 8.93838196e-04 + ArtUnc_2: -1.12457452e-02 + ArtUnc_3: 1.06176485e-04 + ArtUnc_4: -7.23376621e-04 + ArtUnc_5: -5.19567698e-04 + ArtUnc_6: -2.30647007e-03 + ArtUnc_7: 3.31610698e-04 +- ArtUnc_1: 3.61420269e-03 + ArtUnc_2: -2.53225307e-03 + ArtUnc_3: -2.67756368e-03 + ArtUnc_4: 2.49942003e-03 + ArtUnc_5: 2.79129227e-03 + ArtUnc_6: -1.69883298e-05 + ArtUnc_7: -6.45898140e-04 diff --git a/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_8TEV_2L_DIF/data_dSig_dmttBar_norm.yaml b/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_8TEV_2L_DIF/data_dSig_dmttBar_norm.yaml index 0d4b708a0e..6d037a203d 100644 --- a/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_8TEV_2L_DIF/data_dSig_dmttBar_norm.yaml +++ b/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_8TEV_2L_DIF/data_dSig_dmttBar_norm.yaml @@ -1,7 +1,7 @@ data_central: -- 0.0024100000000000002 +- 2.41000000e-03 - 0.00256 -- 0.0009699999999999999 +- 9.70000000e-04 - 0.00035 -- 0.00012900000000000002 +- 1.29000000e-04 - 8.6e-06 diff --git a/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_8TEV_2L_DIF/filter.py b/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_8TEV_2L_DIF/filter.py index e2c2a8fb2a..e39d246bcb 100644 --- a/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_8TEV_2L_DIF/filter.py +++ b/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_8TEV_2L_DIF/filter.py @@ -1,6 +1,9 @@ import yaml from nnpdf_data.filter_utils.utils import covmat_to_artunc as cta +from nnpdf_data.filter_utils.utils import prettify_float + +yaml.add_representer(float, prettify_float) def processData(): diff --git a/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_8TEV_2L_DIF/uncertainties_dSig_dmttBar.yaml b/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_8TEV_2L_DIF/uncertainties_dSig_dmttBar.yaml index 3771a63836..8c29a2d31f 100644 --- a/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_8TEV_2L_DIF/uncertainties_dSig_dmttBar.yaml +++ b/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_8TEV_2L_DIF/uncertainties_dSig_dmttBar.yaml @@ -24,39 +24,39 @@ definitions: treatment: ADD type: CORR bins: -- ArtUnc_1: 0.008028796091704397 - ArtUnc_2: 0.0030482018309025195 - ArtUnc_3: -0.016908427612446555 - ArtUnc_4: -0.0015527845944805095 - ArtUnc_5: 0.00013241780154293726 - ArtUnc_6: -3.457573055663902e-07 -- ArtUnc_1: 0.03773597053583781 - ArtUnc_2: 0.01187826690532076 - ArtUnc_3: 0.0037780589357627316 - ArtUnc_4: 0.0005173825396137085 - ArtUnc_5: -2.9815508642680314e-05 - ArtUnc_6: -2.5572325688052354e-07 -- ArtUnc_1: 0.023755978410603593 - ArtUnc_2: -0.017914694987384943 - ArtUnc_3: 0.0004948892754477617 - ArtUnc_4: -0.003694590575061053 - ArtUnc_5: 0.0001434509849716143 - ArtUnc_6: -4.080781638358374e-07 -- ArtUnc_1: 0.007106711009776893 - ArtUnc_2: -0.005964419686518591 - ArtUnc_3: -0.002272008458301185 - ArtUnc_4: 0.010521820212500147 - ArtUnc_5: 0.001277626111406382 - ArtUnc_6: -2.219745304929369e-06 -- ArtUnc_1: 0.002405074880764964 - ArtUnc_2: -0.001963938906907945 - ArtUnc_3: -0.0010037636512744115 - ArtUnc_4: 0.0024579652525617366 - ArtUnc_5: -0.005151689228093824 - ArtUnc_6: -2.1029373934506448e-05 -- ArtUnc_1: 0.00017232277567955106 - ArtUnc_2: -0.0001125003021954152 - ArtUnc_3: -6.00490865976298e-05 - ArtUnc_4: 0.0001424449906872934 - ArtUnc_5: -0.00020530118545896884 - ArtUnc_6: 0.0005134120158937312 +- ArtUnc_1: 8.02879609e-03 + ArtUnc_2: 3.04820183e-03 + ArtUnc_3: -1.69084276e-02 + ArtUnc_4: -1.55278459e-03 + ArtUnc_5: 1.32417802e-04 + ArtUnc_6: -3.45757306e-07 +- ArtUnc_1: 3.77359705e-02 + ArtUnc_2: 1.18782669e-02 + ArtUnc_3: 3.77805894e-03 + ArtUnc_4: 5.17382540e-04 + ArtUnc_5: -2.98155086e-05 + ArtUnc_6: -2.55723257e-07 +- ArtUnc_1: 2.37559784e-02 + ArtUnc_2: -1.79146950e-02 + ArtUnc_3: 4.94889275e-04 + ArtUnc_4: -3.69459058e-03 + ArtUnc_5: 1.43450985e-04 + ArtUnc_6: -4.08078164e-07 +- ArtUnc_1: 7.10671101e-03 + ArtUnc_2: -5.96441969e-03 + ArtUnc_3: -2.27200846e-03 + ArtUnc_4: 1.05218202e-02 + ArtUnc_5: 1.27762611e-03 + ArtUnc_6: -2.21974530e-06 +- ArtUnc_1: 2.40507488e-03 + ArtUnc_2: -1.96393891e-03 + ArtUnc_3: -1.00376365e-03 + ArtUnc_4: 2.45796525e-03 + ArtUnc_5: -5.15168923e-03 + ArtUnc_6: -2.10293739e-05 +- ArtUnc_1: 1.72322776e-04 + ArtUnc_2: -1.12500302e-04 + ArtUnc_3: -6.00490866e-05 + ArtUnc_4: 1.42444991e-04 + ArtUnc_5: -2.05301185e-04 + ArtUnc_6: 5.13412016e-04 diff --git a/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_8TEV_2L_DIF/uncertainties_dSig_dmttBar_norm.yaml b/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_8TEV_2L_DIF/uncertainties_dSig_dmttBar_norm.yaml index 26cbdba1e6..56aef6faad 100644 --- a/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_8TEV_2L_DIF/uncertainties_dSig_dmttBar_norm.yaml +++ b/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_8TEV_2L_DIF/uncertainties_dSig_dmttBar_norm.yaml @@ -24,39 +24,39 @@ definitions: treatment: ADD type: CORR bins: -- ArtUnc_1: 7.027710327414979e-06 - ArtUnc_2: -5.649175295674623e-05 - ArtUnc_3: -4.117162805450604e-05 - ArtUnc_4: -5.262863881142355e-06 - ArtUnc_5: 8.44042010495655e-07 - ArtUnc_6: -5.968450158295182e-09 -- ArtUnc_1: 6.138200390140812e-05 - ArtUnc_2: 4.4603073876485915e-05 - ArtUnc_3: -3.5895532232586204e-05 - ArtUnc_4: 3.3674494249021793e-06 - ArtUnc_5: 5.8641449159608016e-08 - ArtUnc_6: -3.0177457851092586e-09 -- ArtUnc_1: 8.462331313716459e-05 - ArtUnc_2: -2.140567205419562e-05 - ArtUnc_3: 2.7264129802928468e-05 - ArtUnc_4: -1.3130733901835889e-05 - ArtUnc_5: 2.347990561132696e-07 - ArtUnc_6: 5.376883558119015e-10 -- ArtUnc_1: 2.4756196676930802e-05 - ArtUnc_2: -1.879280024289124e-05 - ArtUnc_3: 7.412071127530142e-06 - ArtUnc_4: 3.507912377468439e-05 - ArtUnc_5: 4.702194591152476e-06 - ArtUnc_6: -5.286932260052732e-09 -- ArtUnc_1: 8.202442539043442e-06 - ArtUnc_2: -7.789128809937439e-06 - ArtUnc_3: 2.554879170785711e-07 - ArtUnc_4: 8.870867295612574e-06 - ArtUnc_5: -1.7725427125554523e-05 - ArtUnc_6: -8.295384504656885e-08 -- ArtUnc_1: 5.363772037365872e-07 - ArtUnc_2: -5.058929831646545e-07 - ArtUnc_3: -1.6655085604561564e-07 - ArtUnc_4: 4.900080054219941e-07 - ArtUnc_5: -7.780776220843394e-07 - ArtUnc_6: 1.8512854901070542e-06 +- ArtUnc_1: 7.02771033e-06 + ArtUnc_2: -5.64917530e-05 + ArtUnc_3: -4.11716281e-05 + ArtUnc_4: -5.26286388e-06 + ArtUnc_5: 8.44042010e-07 + ArtUnc_6: -5.96845016e-09 +- ArtUnc_1: 6.13820039e-05 + ArtUnc_2: 4.46030739e-05 + ArtUnc_3: -3.58955322e-05 + ArtUnc_4: 3.36744942e-06 + ArtUnc_5: 5.86414492e-08 + ArtUnc_6: -3.01774579e-09 +- ArtUnc_1: 8.46233131e-05 + ArtUnc_2: -2.14056721e-05 + ArtUnc_3: 2.72641298e-05 + ArtUnc_4: -1.31307339e-05 + ArtUnc_5: 2.34799056e-07 + ArtUnc_6: 5.37688356e-10 +- ArtUnc_1: 2.47561967e-05 + ArtUnc_2: -1.87928002e-05 + ArtUnc_3: 7.41207113e-06 + ArtUnc_4: 3.50791238e-05 + ArtUnc_5: 4.70219459e-06 + ArtUnc_6: -5.28693226e-09 +- ArtUnc_1: 8.20244254e-06 + ArtUnc_2: -7.78912881e-06 + ArtUnc_3: 2.55487917e-07 + ArtUnc_4: 8.87086730e-06 + ArtUnc_5: -1.77254271e-05 + ArtUnc_6: -8.29538450e-08 +- ArtUnc_1: 5.36377204e-07 + ArtUnc_2: -5.05892983e-07 + ArtUnc_3: -1.66550856e-07 + ArtUnc_4: 4.90008005e-07 + ArtUnc_5: -7.78077622e-07 + ArtUnc_6: 1.85128549e-06 diff --git a/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_8TEV_2L_DIF/uncertainties_dSig_dyttBar.yaml b/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_8TEV_2L_DIF/uncertainties_dSig_dyttBar.yaml index bcb6ca533a..68ffd289e7 100644 --- a/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_8TEV_2L_DIF/uncertainties_dSig_dyttBar.yaml +++ b/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_8TEV_2L_DIF/uncertainties_dSig_dyttBar.yaml @@ -20,28 +20,28 @@ definitions: treatment: ADD type: CORR bins: -- ArtUnc_1: 8.44737401684527 - ArtUnc_2: 7.612669656028263 - ArtUnc_3: -0.4996972309669984 - ArtUnc_4: 0.2961781599268309 - ArtUnc_5: -0.0037553509091051928 -- ArtUnc_1: 9.909869274867452 - ArtUnc_2: -5.709884111196971 - ArtUnc_3: -2.418654265056855 - ArtUnc_4: -0.00332838887828119 - ArtUnc_5: -0.010717261224926146 -- ArtUnc_1: 4.504511959993923 - ArtUnc_2: -1.8460661593288543 - ArtUnc_3: 5.646173067071699 - ArtUnc_4: 0.7539856914001656 - ArtUnc_5: 0.016643662172252303 -- ArtUnc_1: 1.9651872593633142 - ArtUnc_2: 0.29716423703905687 - ArtUnc_3: 1.4045249413316152 - ArtUnc_4: -2.9343433892732618 - ArtUnc_5: -0.08006881332221576 -- ArtUnc_1: 0.2971240746858552 - ArtUnc_2: 0.02955326499143661 - ArtUnc_3: -0.012559184282508911 - ArtUnc_4: -0.33234302985116515 - ArtUnc_5: 0.7414685200127682 +- ArtUnc_1: 8.44737402e+00 + ArtUnc_2: 7.61266966e+00 + ArtUnc_3: -4.99697231e-01 + ArtUnc_4: 2.96178160e-01 + ArtUnc_5: -3.75535091e-03 +- ArtUnc_1: 9.90986927e+00 + ArtUnc_2: -5.70988411e+00 + ArtUnc_3: -2.41865427e+00 + ArtUnc_4: -3.32838888e-03 + ArtUnc_5: -1.07172612e-02 +- ArtUnc_1: 4.50451196e+00 + ArtUnc_2: -1.84606616e+00 + ArtUnc_3: 5.64617307e+00 + ArtUnc_4: 7.53985691e-01 + ArtUnc_5: 1.66436622e-02 +- ArtUnc_1: 1.96518726e+00 + ArtUnc_2: 2.97164237e-01 + ArtUnc_3: 1.40452494e+00 + ArtUnc_4: -2.93434339e+00 + ArtUnc_5: -8.00688133e-02 +- ArtUnc_1: 2.97124075e-01 + ArtUnc_2: 2.95532650e-02 + ArtUnc_3: -1.25591843e-02 + ArtUnc_4: -3.32343030e-01 + ArtUnc_5: 7.41468520e-01 diff --git a/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_8TEV_2L_DIF/uncertainties_dSig_dyttBar_norm.yaml b/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_8TEV_2L_DIF/uncertainties_dSig_dyttBar_norm.yaml index 294115e10a..f0c3b49e1b 100644 --- a/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_8TEV_2L_DIF/uncertainties_dSig_dyttBar_norm.yaml +++ b/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_8TEV_2L_DIF/uncertainties_dSig_dyttBar_norm.yaml @@ -20,28 +20,28 @@ definitions: treatment: ADD type: CORR bins: -- ArtUnc_1: 0.028808227768687824 - ArtUnc_2: -0.008379445396709023 - ArtUnc_3: 0.00830884856549596 - ArtUnc_4: -0.001007667443918579 - ArtUnc_5: -8.276176108275384e-05 -- ArtUnc_1: -0.020658372869329797 - ArtUnc_2: -0.017987478365702025 - ArtUnc_3: 0.005635869564862032 - ArtUnc_4: -0.0017531331779188232 - ArtUnc_5: -0.00010700814680646781 -- ArtUnc_1: -0.009477603208718308 - ArtUnc_2: 0.01411259972037269 - ArtUnc_3: 0.01278787511604181 - ArtUnc_4: -6.230360112140493e-05 - ArtUnc_5: 5.901562153625454e-06 -- ArtUnc_1: 0.0008295367941452407 - ArtUnc_2: 0.004398008172997285 - ArtUnc_3: -0.002136815949653794 - ArtUnc_4: -0.009026705106575375 - ArtUnc_5: -0.00036415015260115213 -- ArtUnc_1: 0.00020826424660251846 - ArtUnc_2: -0.00043095587819164447 - ArtUnc_3: 0.0001712566084068682 - ArtUnc_4: -0.0013937602751189595 - ArtUnc_5: 0.0025525940735292105 +- ArtUnc_1: 2.88082278e-02 + ArtUnc_2: -8.37944540e-03 + ArtUnc_3: 8.30884857e-03 + ArtUnc_4: -1.00766744e-03 + ArtUnc_5: -8.27617611e-05 +- ArtUnc_1: -2.06583729e-02 + ArtUnc_2: -1.79874784e-02 + ArtUnc_3: 5.63586956e-03 + ArtUnc_4: -1.75313318e-03 + ArtUnc_5: -1.07008147e-04 +- ArtUnc_1: -9.47760321e-03 + ArtUnc_2: 1.41125997e-02 + ArtUnc_3: 1.27878751e-02 + ArtUnc_4: -6.23036011e-05 + ArtUnc_5: 5.90156215e-06 +- ArtUnc_1: 8.29536794e-04 + ArtUnc_2: 4.39800817e-03 + ArtUnc_3: -2.13681595e-03 + ArtUnc_4: -9.02670511e-03 + ArtUnc_5: -3.64150153e-04 +- ArtUnc_1: 2.08264247e-04 + ArtUnc_2: -4.30955878e-04 + ArtUnc_3: 1.71256608e-04 + ArtUnc_4: -1.39376028e-03 + ArtUnc_5: 2.55259407e-03 diff --git a/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_8TEV_LJ_DIF/data_dSig_dmttBar.yaml b/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_8TEV_LJ_DIF/data_dSig_dmttBar.yaml index 4146b4f292..b664a3db22 100644 --- a/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_8TEV_LJ_DIF/data_dSig_dmttBar.yaml +++ b/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_8TEV_LJ_DIF/data_dSig_dmttBar.yaml @@ -1,8 +1,8 @@ data_central: -- 1.11862345245 -- 1.1060527776 -- 0.68106757308 -- 0.35283462637499996 -- 0.14891540499 -- 0.0375031717325 -- 0.0046128835273499995 +- 1.11862345e+00 +- 1.10605278e+00 +- 6.81067573e-01 +- 3.52834626e-01 +- 1.48915405e-01 +- 3.75031717e-02 +- 4.61288353e-03 diff --git a/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_8TEV_LJ_DIF/data_dSig_dmttBar_norm.yaml b/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_8TEV_LJ_DIF/data_dSig_dmttBar_norm.yaml index bfea596471..e2aa89e796 100644 --- a/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_8TEV_LJ_DIF/data_dSig_dmttBar_norm.yaml +++ b/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_8TEV_LJ_DIF/data_dSig_dmttBar_norm.yaml @@ -1,8 +1,8 @@ data_central: -- 0.0042458307675 -- 0.0041786877875499995 -- 0.0025698352499999998 -- 0.0013318528774 -- 0.00056395201136 -- 0.00014252352996 -- 1.760749326e-05 +- 4.24583077e-03 +- 4.17868779e-03 +- 2.56983525e-03 +- 1.33185288e-03 +- 5.63952011e-04 +- 1.42523530e-04 +- 1.76074933e-05 diff --git a/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_8TEV_LJ_DIF/data_dSig_dpTt.yaml b/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_8TEV_LJ_DIF/data_dSig_dpTt.yaml index 3cfbea5c05..8035084971 100644 --- a/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_8TEV_LJ_DIF/data_dSig_dpTt.yaml +++ b/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_8TEV_LJ_DIF/data_dSig_dpTt.yaml @@ -1,9 +1,9 @@ data_central: -- 1.043653792 -- 1.7915184956 -- 1.38219487385 -- 0.7357259751549999 -- 0.313161530025 -- 0.11509014757000001 -- 0.040681003363499994 -- 0.0108038367355 +- 1.04365379e+00 +- 1.79151850e+00 +- 1.38219487e+00 +- 7.35725975e-01 +- 3.13161530e-01 +- 1.15090148e-01 +- 4.06810034e-02 +- 1.08038367e-02 diff --git a/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_8TEV_LJ_DIF/data_dSig_dpTt_norm.yaml b/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_8TEV_LJ_DIF/data_dSig_dpTt_norm.yaml index 3b8f373941..c01b0b517b 100644 --- a/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_8TEV_LJ_DIF/data_dSig_dpTt_norm.yaml +++ b/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_8TEV_LJ_DIF/data_dSig_dpTt_norm.yaml @@ -1,9 +1,9 @@ data_central: -- 0.0038668702864 -- 0.0066323009392 -- 0.0051105462877 -- 0.0027202148398000003 -- 0.0011587871149500001 -- 0.00042599039334 -- 0.0001504731042 -- 4.0171290768e-05 +- 3.86687029e-03 +- 6.63230094e-03 +- 5.11054629e-03 +- 2.72021484e-03 +- 1.15878711e-03 +- 4.25990393e-04 +- 1.50473104e-04 +- 4.01712908e-05 diff --git a/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_8TEV_LJ_DIF/data_dSig_dyt.yaml b/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_8TEV_LJ_DIF/data_dSig_dyt.yaml index 61b3a90e47..e8aa807854 100644 --- a/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_8TEV_LJ_DIF/data_dSig_dyt.yaml +++ b/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_8TEV_LJ_DIF/data_dSig_dyt.yaml @@ -1,6 +1,6 @@ data_central: -- 182.6095761 -- 166.4576898 -- 130.97703794 -- 93.70494288799999 -- 38.874614837500005 +- 1.82609576e+02 +- 1.66457690e+02 +- 1.30977038e+02 +- 9.37049429e+01 +- 3.88746148e+01 diff --git a/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_8TEV_LJ_DIF/data_dSig_dyt_norm.yaml b/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_8TEV_LJ_DIF/data_dSig_dyt_norm.yaml index 1f67cbedd9..9aa1dd3e4c 100644 --- a/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_8TEV_LJ_DIF/data_dSig_dyt_norm.yaml +++ b/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_8TEV_LJ_DIF/data_dSig_dyt_norm.yaml @@ -1,6 +1,6 @@ data_central: -- 0.690655492065 -- 0.62928633822 -- 0.49534107488 -- 0.35436242773 -- 0.14699544741 +- 6.90655492e-01 +- 6.29286338e-01 +- 4.95341075e-01 +- 3.54362428e-01 +- 1.46995447e-01 diff --git a/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_8TEV_LJ_DIF/data_dSig_dyttBar.yaml b/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_8TEV_LJ_DIF/data_dSig_dyttBar.yaml index e6e25404eb..df85579b7e 100644 --- a/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_8TEV_LJ_DIF/data_dSig_dyttBar.yaml +++ b/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_8TEV_LJ_DIF/data_dSig_dyttBar.yaml @@ -1,6 +1,6 @@ data_central: -- 221.54698908 -- 204.0867455 -- 169.197572775 -- 117.0261836 -- 33.0418369 +- 2.21546989e+02 +- 2.04086746e+02 +- 1.69197573e+02 +- 1.17026184e+02 +- 3.30418369e+01 diff --git a/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_8TEV_LJ_DIF/data_dSig_dyttBar_norm.yaml b/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_8TEV_LJ_DIF/data_dSig_dyttBar_norm.yaml index b8c9d948c2..19b399c4f7 100644 --- a/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_8TEV_LJ_DIF/data_dSig_dyttBar_norm.yaml +++ b/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_8TEV_LJ_DIF/data_dSig_dyttBar_norm.yaml @@ -1,6 +1,6 @@ data_central: -- 0.836617150875 -- 0.77065103208 -- 0.63883074816 -- 0.44195825092499996 -- 0.12456949869 +- 8.36617151e-01 +- 7.70651032e-01 +- 6.38830748e-01 +- 4.41958251e-01 +- 1.24569499e-01 diff --git a/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_8TEV_LJ_DIF/filter.py b/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_8TEV_LJ_DIF/filter.py index 94b2dbb9c0..d807566675 100644 --- a/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_8TEV_LJ_DIF/filter.py +++ b/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_8TEV_LJ_DIF/filter.py @@ -5,8 +5,11 @@ import yaml from nnpdf_data.filter_utils.utils import percentage_to_absolute as pta +from nnpdf_data.filter_utils.utils import prettify_float from nnpdf_data.filter_utils.utils import symmetrize_errors as se +yaml.add_representer(float, prettify_float) + def processData(): with open('metadata.yaml', 'r') as file: diff --git a/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_8TEV_LJ_DIF/uncertainties_dSig_dmttBar.yaml b/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_8TEV_LJ_DIF/uncertainties_dSig_dmttBar.yaml index 8a3b1d8f23..b0500807b7 100644 --- a/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_8TEV_LJ_DIF/uncertainties_dSig_dmttBar.yaml +++ b/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_8TEV_LJ_DIF/uncertainties_dSig_dmttBar.yaml @@ -324,570 +324,570 @@ definitions: treatment: MULT type: ATLASLUMI8 bins: -- ArtUnc_1: -0.001236491533576612 - ArtUnc_2: 0.0018832414832259557 - ArtUnc_3: 0.00130063745340175 - ArtUnc_4: -0.0002474105540704642 - ArtUnc_5: 0.0005028151802989373 - ArtUnc_6: 0.0004743144464501583 - ArtUnc_7: 0.000187225958481064 - ArtUnc_8: 0.0005709597469084141 - ArtUnc_9: 0.0010329705055788642 - ArtUnc_10: -0.005377816526886441 - ArtUnc_11: 0.005296939068414174 - ArtUnc_12: 0.0022413177387035355 - ArtUnc_13: -0.0007100150448962318 - ArtUnc_14: -0.00042631910427535233 - ArtUnc_15: 0.00044911606045185495 - ArtUnc_16: 0.0007082026173830916 - ArtUnc_17: -0.0002311297219351151 - ArtUnc_18: -1.818357962308083e-05 - ArtUnc_19: -8.05645107886023e-06 - ArtUnc_20: -6.835181651487818e-05 - ArtUnc_21: -4.2445227543211965e-06 - ArtUnc_22: 5.801799740017506e-07 - ArtUnc_23: -2.818960235063438e-07 - ArtUnc_24: -1.3402002488404512e-05 - ArtUnc_25: 3.066060133088487e-08 - syst_singletop-xsec: 0.001985853202469115 - syst_wjet-scale: 0.0028016694 - syst_laltrealcr-mujet-fake: 0.0013780568999999998 - syst_eta-jes: 0.0031121719164628947 - syst_statNP3-jes: 0.006144570143307182 - syst_laltrealcr-ejet-fake: 0.0005125005 - syst_pileoffmu-jes: 0.0012212703590408595 - syst_lstat-ejet-fake: 0.0031001456063758314 - syst_lstat-mujet-fake: 9.322216418357815e-05 - syst_etmsoft-scale: 0.0010458427552118565 - syst_hardscat-model: 0.0281419719 - syst_statNP2-jes: 0.0020540473951530134 - syst_elen-scale: 0.0014325022526560324 - syst_punch-jes: 0.00016266602845966334 - syst_pileoffnpv-jes: 0.00540447406685704 - syst_lrec-eff: 0.0025169469000000002 - syst_pileoffpt-jes: 0.00047435144482603557 +- ArtUnc_1: -1.23649153e-03 + ArtUnc_2: 1.88324148e-03 + ArtUnc_3: 1.30063745e-03 + ArtUnc_4: -2.47410554e-04 + ArtUnc_5: 5.02815180e-04 + ArtUnc_6: 4.74314446e-04 + ArtUnc_7: 1.87225958e-04 + ArtUnc_8: 5.70959747e-04 + ArtUnc_9: 1.03297051e-03 + ArtUnc_10: -5.37781653e-03 + ArtUnc_11: 5.29693907e-03 + ArtUnc_12: 2.24131774e-03 + ArtUnc_13: -7.10015045e-04 + ArtUnc_14: -4.26319104e-04 + ArtUnc_15: 4.49116060e-04 + ArtUnc_16: 7.08202617e-04 + ArtUnc_17: -2.31129722e-04 + ArtUnc_18: -1.81835796e-05 + ArtUnc_19: -8.05645108e-06 + ArtUnc_20: -6.83518165e-05 + ArtUnc_21: -4.24452275e-06 + ArtUnc_22: 5.80179974e-07 + ArtUnc_23: -2.81896024e-07 + ArtUnc_24: -1.34020025e-05 + ArtUnc_25: 3.06606013e-08 + syst_singletop-xsec: 1.98585320e-03 + syst_wjet-scale: 2.80166940e-03 + syst_laltrealcr-mujet-fake: 1.37805690e-03 + syst_eta-jes: 3.11217192e-03 + syst_statNP3-jes: 6.14457014e-03 + syst_laltrealcr-ejet-fake: 5.12500500e-04 + syst_pileoffmu-jes: 1.22127036e-03 + syst_lstat-ejet-fake: 3.10014561e-03 + syst_lstat-mujet-fake: 9.32221642e-05 + syst_etmsoft-scale: 1.04584276e-03 + syst_hardscat-model: 2.81419719e-02 + syst_statNP2-jes: 2.05404740e-03 + syst_elen-scale: 1.43250225e-03 + syst_punch-jes: 1.62666028e-04 + syst_pileoffnpv-jes: 5.40447407e-03 + syst_lrec-eff: 2.51694690e-03 + syst_pileoffpt-jes: 4.74351445e-04 syst_jeten-res: 0.0 - syst_lighttag-eff: 0.004612532620655021 - syst_laltfakecr-ejet-fake: 0.0028016694 - syst_laltpar-mujet-fake: 0.0015375015 - syst_jetrec-eff: 0.0011161122 - syst_c/tautag-eff: 0.010301263197843632 - syst_dibos-xsec: 0.0008427786 - syst_elen-res: 0.000532606142942672 - syst_flavcomp-jes: 0.017935955525707002 - syst_detNP2-jes: 0.0022949905178165047 - syst_detNP3-jes: 0.0008976302982968657 - syst_jetvxfrac: 0.012011154239860187 - syst_ltrig-eff: 0.0145322364 - syst_btag-jes: 0.006439675226820709 - syst_mup-scale: 5.917846032696356e-05 + syst_lighttag-eff: 4.61253262e-03 + syst_laltfakecr-ejet-fake: 2.80166940e-03 + syst_laltpar-mujet-fake: 1.53750150e-03 + syst_jetrec-eff: 1.11611220e-03 + syst_c/tautag-eff: 1.03012632e-02 + syst_dibos-xsec: 8.42778600e-04 + syst_elen-res: 5.32606143e-04 + syst_flavcomp-jes: 1.79359555e-02 + syst_detNP2-jes: 2.29499052e-03 + syst_detNP3-jes: 8.97630298e-04 + syst_jetvxfrac: 1.20111542e-02 + syst_ltrig-eff: 1.45322364e-02 + syst_btag-jes: 6.43967523e-03 + syst_mup-scale: 5.91784603e-05 syst_singlephpt-jes: 0.0 - syst_etmsoft-res: 0.0009271292117890958 - syst_detNP1-jes: 0.009385130828112494 - syst_laltpar-ejet-fake: 0.0029269473 - syst_statNP1-jes: 0.010802374651818243 - syst_muid-res: 3.41667e-05 - syst_pdf: 0.0007744452000000001 - syst_isr-fsr: 0.08135707328286182 - syst_zjet-xsec: 0.0101588988 - syst_ps-model: 0.0482319915 - syst_flavres-jes: 0.0069108854953368 - syst_laltfakecr-mujet-fake: 0.0030977808000000003 - syst_mums-res: 1.13889e-05 - syst_mod-NP2-jes: 0.001687047486704576 - syst_lid-eff: 0.0145322364 - syst_mixNP2-jes: 0.0043571548476910105 - syst_mixNP1-jes: 0.0058425279005426154 - syst_btag-eff: 0.04697782613980783 - syst_pileoffrho-jes: 0.009585806155941368 - syst_modNP4-jes: 0.0014083147367417944 - syst_mcstat: 0.0020841686999999998 - syst_modNP3-jes: 0.007626097499542145 - syst_mod-NP1-jes: 0.009206055482993553 - lumi: 0.031888919999999994 -- ArtUnc_1: -0.0012905946416980907 - ArtUnc_2: 0.00195850666049491 - ArtUnc_3: 0.0013745144261108175 - ArtUnc_4: -0.00020006731721638695 - ArtUnc_5: 0.0004900906739838678 - ArtUnc_6: 0.00046523260508785725 - ArtUnc_7: 0.00015293542090714392 - ArtUnc_8: 0.0005830327201703333 - ArtUnc_9: 0.0007598963280520667 - ArtUnc_10: -0.0021387169915852077 - ArtUnc_11: 0.0016315975282521968 - ArtUnc_12: -0.0004823820145109551 - ArtUnc_13: 0.0017922226764512798 - ArtUnc_14: 0.002554075427916986 - ArtUnc_15: -0.001842702997354689 - ArtUnc_16: -0.0004816653943973967 - ArtUnc_17: 0.000205424653705499 - ArtUnc_18: 0.0005126584038079924 - ArtUnc_19: 7.52285493770325e-05 - ArtUnc_20: -5.099124191932924e-05 - ArtUnc_21: -6.36444606719031e-06 - ArtUnc_22: 1.070515565516268e-06 - ArtUnc_23: -5.200845697995414e-07 - ArtUnc_24: -2.6503562639675078e-05 - ArtUnc_25: 1.4456399499308546e-07 - syst_singletop-xsec: 0.0021121989370325132 - syst_wjet-scale: 0.0024530880000000004 - syst_laltrealcr-mujet-fake: 3.34512e-05 - syst_eta-jes: 0.001331656097829706 - syst_statNP3-jes: 0.0012773293012785076 - syst_laltrealcr-ejet-fake: 0.0006913247999999999 - syst_pileoffmu-jes: 0.001717234003668364 - syst_lstat-ejet-fake: 0.0029721202431139426 - syst_lstat-mujet-fake: 0.0001708414495447753 - syst_etmsoft-scale: 0.00038432502800374584 - syst_hardscat-model: 0.08273596800000001 - syst_statNP2-jes: 0.0014607875150774257 - syst_elen-scale: 0.0006276744280532703 - syst_punch-jes: 0.00015690003566500553 - syst_pileoffnpv-jes: 0.007784001519103983 - syst_lrec-eff: 0.0025534416000000007 - syst_pileoffpt-jes: 0.00018490846531189425 + syst_etmsoft-res: 9.27129212e-04 + syst_detNP1-jes: 9.38513083e-03 + syst_laltpar-ejet-fake: 2.92694730e-03 + syst_statNP1-jes: 1.08023747e-02 + syst_muid-res: 3.41667000e-05 + syst_pdf: 7.74445200e-04 + syst_isr-fsr: 8.13570733e-02 + syst_zjet-xsec: 1.01588988e-02 + syst_ps-model: 4.82319915e-02 + syst_flavres-jes: 6.91088550e-03 + syst_laltfakecr-mujet-fake: 3.09778080e-03 + syst_mums-res: 1.13889000e-05 + syst_mod-NP2-jes: 1.68704749e-03 + syst_lid-eff: 1.45322364e-02 + syst_mixNP2-jes: 4.35715485e-03 + syst_mixNP1-jes: 5.84252790e-03 + syst_btag-eff: 4.69778261e-02 + syst_pileoffrho-jes: 9.58580616e-03 + syst_modNP4-jes: 1.40831474e-03 + syst_mcstat: 2.08416870e-03 + syst_modNP3-jes: 7.62609750e-03 + syst_mod-NP1-jes: 9.20605548e-03 + lumi: 3.18889200e-02 +- ArtUnc_1: -1.29059464e-03 + ArtUnc_2: 1.95850666e-03 + ArtUnc_3: 1.37451443e-03 + ArtUnc_4: -2.00067317e-04 + ArtUnc_5: 4.90090674e-04 + ArtUnc_6: 4.65232605e-04 + ArtUnc_7: 1.52935421e-04 + ArtUnc_8: 5.83032720e-04 + ArtUnc_9: 7.59896328e-04 + ArtUnc_10: -2.13871699e-03 + ArtUnc_11: 1.63159753e-03 + ArtUnc_12: -4.82382015e-04 + ArtUnc_13: 1.79222268e-03 + ArtUnc_14: 2.55407543e-03 + ArtUnc_15: -1.84270300e-03 + ArtUnc_16: -4.81665394e-04 + ArtUnc_17: 2.05424654e-04 + ArtUnc_18: 5.12658404e-04 + ArtUnc_19: 7.52285494e-05 + ArtUnc_20: -5.09912419e-05 + ArtUnc_21: -6.36444607e-06 + ArtUnc_22: 1.07051557e-06 + ArtUnc_23: -5.20084570e-07 + ArtUnc_24: -2.65035626e-05 + ArtUnc_25: 1.44563995e-07 + syst_singletop-xsec: 2.11219894e-03 + syst_wjet-scale: 2.45308800e-03 + syst_laltrealcr-mujet-fake: 3.34512000e-05 + syst_eta-jes: 1.33165610e-03 + syst_statNP3-jes: 1.27732930e-03 + syst_laltrealcr-ejet-fake: 6.91324800e-04 + syst_pileoffmu-jes: 1.71723400e-03 + syst_lstat-ejet-fake: 2.97212024e-03 + syst_lstat-mujet-fake: 1.70841450e-04 + syst_etmsoft-scale: 3.84325028e-04 + syst_hardscat-model: 8.27359680e-02 + syst_statNP2-jes: 1.46078752e-03 + syst_elen-scale: 6.27674428e-04 + syst_punch-jes: 1.56900036e-04 + syst_pileoffnpv-jes: 7.78400152e-03 + syst_lrec-eff: 2.55344160e-03 + syst_pileoffpt-jes: 1.84908465e-04 syst_jeten-res: 0.0 - syst_lighttag-eff: 0.004493611200000001 - syst_laltfakecr-ejet-fake: 0.0029994576000000003 - syst_laltpar-mujet-fake: 0.0017283119999999999 - syst_jetrec-eff: 0.0008139792 - syst_c/tautag-eff: 0.009806779969527628 - syst_dibos-xsec: 0.0007582272000000002 - syst_elen-res: 0.0004927354063972266 - syst_flavcomp-jes: 0.023728976015436023 - syst_detNP2-jes: 0.0029102971215255124 - syst_detNP3-jes: 0.00011094507918713656 - syst_jetvxfrac: 0.010249763736563 - syst_ltrig-eff: 0.0140829552 - syst_btag-jes: 0.0032870567873569574 - syst_mup-scale: 0.00016340187416110012 + syst_lighttag-eff: 4.49361120e-03 + syst_laltfakecr-ejet-fake: 2.99945760e-03 + syst_laltpar-mujet-fake: 1.72831200e-03 + syst_jetrec-eff: 8.13979200e-04 + syst_c/tautag-eff: 9.80677997e-03 + syst_dibos-xsec: 7.58227200e-04 + syst_elen-res: 4.92735406e-04 + syst_flavcomp-jes: 2.37289760e-02 + syst_detNP2-jes: 2.91029712e-03 + syst_detNP3-jes: 1.10945079e-04 + syst_jetvxfrac: 1.02497637e-02 + syst_ltrig-eff: 1.40829552e-02 + syst_btag-jes: 3.28705679e-03 + syst_mup-scale: 1.63401874e-04 syst_singlephpt-jes: 0.0 - syst_etmsoft-res: 0.00042488730514375216 - syst_detNP1-jes: 0.003017017818720785 - syst_laltpar-ejet-fake: 0.0026537951999999997 - syst_statNP1-jes: 0.012450742300569027 - syst_muid-res: 5.5752000000000004e-05 - syst_pdf: 0.0027876000000000003 - syst_isr-fsr: 0.09087099513130321 - syst_zjet-xsec: 0.009031824 - syst_ps-model: 0.08736338400000002 - syst_flavres-jes: 0.012809989888524198 - syst_laltfakecr-mujet-fake: 0.0022746816 - syst_mums-res: 6.69024e-05 - syst_mod-NP2-jes: 0.0016617089126358564 - syst_lid-eff: 0.014462068799999998 - syst_mixNP2-jes: 0.005190996237702541 - syst_mixNP1-jes: 0.00011587835594829607 - syst_btag-eff: 0.04515762602817681 - syst_pileoffrho-jes: 0.01951030307033234 - syst_modNP4-jes: 0.0005911815474706226 - syst_mcstat: 0.0013157472 - syst_modNP3-jes: 0.0035737814780818595 - syst_mod-NP1-jes: 0.025799139055823234 - lumi: 0.03122112 -- ArtUnc_1: -0.0008405524694533638 - ArtUnc_2: 0.001262207909758043 - ArtUnc_3: 0.0008846138608516891 - ArtUnc_4: -0.00013199344777228454 - ArtUnc_5: 0.00031946761301327527 - ArtUnc_6: 0.0002997605588322623 - ArtUnc_7: 2.1869823742825633e-05 - ArtUnc_8: 0.00040506967836602853 - ArtUnc_9: 0.00025250365682469197 - ArtUnc_10: 0.000987099679912199 - ArtUnc_11: -0.0011060046480122025 - ArtUnc_12: -0.001162821317890267 - ArtUnc_13: 0.0010449879639072336 - ArtUnc_14: 0.0012377435030937736 - ArtUnc_15: -9.460230203161046e-05 - ArtUnc_16: 0.0019159570799637793 - ArtUnc_17: -0.000745582227448826 - ArtUnc_18: -0.0003291723093371302 - ArtUnc_19: -9.037024116894413e-05 - ArtUnc_20: -0.00025188586632614036 - ArtUnc_21: -1.4593012960938227e-05 - ArtUnc_22: 1.6380307203758047e-06 - ArtUnc_23: -7.906891664589237e-07 - ArtUnc_24: -3.496476250249044e-05 - ArtUnc_25: 1.0521007822504992e-07 - syst_singletop-xsec: 0.0015164392735770606 - syst_wjet-scale: 0.0019121207399999999 - syst_laltrealcr-mujet-fake: 0.00152562825 - syst_eta-jes: 0.003974461051988882 - syst_statNP3-jes: 0.002105634478417693 - syst_laltrealcr-ejet-fake: 0.00049498161 - syst_pileoffmu-jes: 0.0015112611323920603 - syst_lstat-ejet-fake: 0.0021824694717015323 - syst_lstat-mujet-fake: 0.0001702922302920209 - syst_etmsoft-scale: 0.0002136417622700311 - syst_hardscat-model: 0.04342277028 - syst_statNP2-jes: 0.00042814346709458997 - syst_elen-scale: 0.0010610400509141233 - syst_punch-jes: 2.2488606554740115e-05 - syst_pileoffnpv-jes: 0.005851022962700957 - syst_lrec-eff: 0.0016544590800000002 - syst_pileoffpt-jes: 0.00016442008441988225 + syst_etmsoft-res: 4.24887305e-04 + syst_detNP1-jes: 3.01701782e-03 + syst_laltpar-ejet-fake: 2.65379520e-03 + syst_statNP1-jes: 1.24507423e-02 + syst_muid-res: 5.57520000e-05 + syst_pdf: 2.78760000e-03 + syst_isr-fsr: 9.08709951e-02 + syst_zjet-xsec: 9.03182400e-03 + syst_ps-model: 8.73633840e-02 + syst_flavres-jes: 1.28099899e-02 + syst_laltfakecr-mujet-fake: 2.27468160e-03 + syst_mums-res: 6.69024000e-05 + syst_mod-NP2-jes: 1.66170891e-03 + syst_lid-eff: 1.44620688e-02 + syst_mixNP2-jes: 5.19099624e-03 + syst_mixNP1-jes: 1.15878356e-04 + syst_btag-eff: 4.51576260e-02 + syst_pileoffrho-jes: 1.95103031e-02 + syst_modNP4-jes: 5.91181547e-04 + syst_mcstat: 1.31574720e-03 + syst_modNP3-jes: 3.57378148e-03 + syst_mod-NP1-jes: 2.57991391e-02 + lumi: 3.12211200e-02 +- ArtUnc_1: -8.40552469e-04 + ArtUnc_2: 1.26220791e-03 + ArtUnc_3: 8.84613861e-04 + ArtUnc_4: -1.31993448e-04 + ArtUnc_5: 3.19467613e-04 + ArtUnc_6: 2.99760559e-04 + ArtUnc_7: 2.18698237e-05 + ArtUnc_8: 4.05069678e-04 + ArtUnc_9: 2.52503657e-04 + ArtUnc_10: 9.87099680e-04 + ArtUnc_11: -1.10600465e-03 + ArtUnc_12: -1.16282132e-03 + ArtUnc_13: 1.04498796e-03 + ArtUnc_14: 1.23774350e-03 + ArtUnc_15: -9.46023020e-05 + ArtUnc_16: 1.91595708e-03 + ArtUnc_17: -7.45582227e-04 + ArtUnc_18: -3.29172309e-04 + ArtUnc_19: -9.03702412e-05 + ArtUnc_20: -2.51885866e-04 + ArtUnc_21: -1.45930130e-05 + ArtUnc_22: 1.63803072e-06 + ArtUnc_23: -7.90689166e-07 + ArtUnc_24: -3.49647625e-05 + ArtUnc_25: 1.05210078e-07 + syst_singletop-xsec: 1.51643927e-03 + syst_wjet-scale: 1.91212074e-03 + syst_laltrealcr-mujet-fake: 1.52562825e-03 + syst_eta-jes: 3.97446105e-03 + syst_statNP3-jes: 2.10563448e-03 + syst_laltrealcr-ejet-fake: 4.94981610e-04 + syst_pileoffmu-jes: 1.51126113e-03 + syst_lstat-ejet-fake: 2.18246947e-03 + syst_lstat-mujet-fake: 1.70292230e-04 + syst_etmsoft-scale: 2.13641762e-04 + syst_hardscat-model: 4.34227703e-02 + syst_statNP2-jes: 4.28143467e-04 + syst_elen-scale: 1.06104005e-03 + syst_punch-jes: 2.24886066e-05 + syst_pileoffnpv-jes: 5.85102296e-03 + syst_lrec-eff: 1.65445908e-03 + syst_pileoffpt-jes: 1.64420084e-04 syst_jeten-res: 0.0 - syst_lighttag-eff: 0.0030376953600000003 - syst_laltfakecr-ejet-fake: 0.0023121743700000004 - syst_laltpar-mujet-fake: 0.0014849448300000001 - syst_jetrec-eff: 0.00028478394 - syst_c/tautag-eff: 0.005936390971198999 - syst_dibos-xsec: 0.00036615078 - syst_elen-res: 0.00019581647536345506 - syst_flavcomp-jes: 0.016461370928122557 - syst_detNP2-jes: 0.0017571098502898474 - syst_detNP3-jes: 0.00045113726444880514 - syst_jetvxfrac: 0.0045105763896864486 - syst_ltrig-eff: 0.00848249307 - syst_btag-jes: 0.007514248354648857 - syst_mup-scale: 0.00016283959194092224 + syst_lighttag-eff: 3.03769536e-03 + syst_laltfakecr-ejet-fake: 2.31217437e-03 + syst_laltpar-mujet-fake: 1.48494483e-03 + syst_jetrec-eff: 2.84783940e-04 + syst_c/tautag-eff: 5.93639097e-03 + syst_dibos-xsec: 3.66150780e-04 + syst_elen-res: 1.95816475e-04 + syst_flavcomp-jes: 1.64613709e-02 + syst_detNP2-jes: 1.75710985e-03 + syst_detNP3-jes: 4.51137264e-04 + syst_jetvxfrac: 4.51057639e-03 + syst_ltrig-eff: 8.48249307e-03 + syst_btag-jes: 7.51424835e-03 + syst_mup-scale: 1.62839592e-04 syst_singlephpt-jes: 0.0 - syst_etmsoft-res: 0.0002055251055248528 - syst_detNP1-jes: 0.002671819918907742 - syst_laltpar-ejet-fake: 0.0018578761800000002 - syst_statNP1-jes: 0.007732995582282289 - syst_muid-res: 2.034171e-05 - syst_pdf: 0.0029088645299999998 - syst_isr-fsr: 0.059051258400565056 - syst_zjet-xsec: 0.005505822840000001 - syst_ps-model: 0.03490637436 - syst_flavres-jes: 0.010745277659748358 - syst_laltfakecr-mujet-fake: 0.00107133006 - syst_mums-res: 6.78057e-06 - syst_mod-NP2-jes: 0.000749636403298607 - syst_lid-eff: 0.00899781639 - syst_mixNP2-jes: 0.0033080617938022025 - syst_mixNP1-jes: 0.003844882145307815 - syst_btag-eff: 0.027365352957069534 - syst_pileoffrho-jes: 0.01675433157793271 - syst_modNP4-jes: 0.0002746549371811468 - syst_mcstat: 0.0009153769500000001 - syst_modNP3-jes: 0.0005156800686200909 - syst_mod-NP1-jes: 0.024129805879404644 - lumi: 0.018985596 -- ArtUnc_1: -0.0004937730060837897 - ArtUnc_2: 0.0006904068593025251 - ArtUnc_3: 0.0004969714735058682 - ArtUnc_4: -6.0578681795574494e-05 - ArtUnc_5: 0.0001902941026457066 - ArtUnc_6: 0.00015915080235480685 - ArtUnc_7: -5.6301277073397403e-05 - ArtUnc_8: 0.000265966829065129 - ArtUnc_9: 3.782846049725194e-05 - ArtUnc_10: 0.0009883065565442855 - ArtUnc_11: -0.0007424560554463419 - ArtUnc_12: -0.00016706023598243817 - ArtUnc_13: -0.00038141509757433893 - ArtUnc_14: -0.0005622502210270025 - ArtUnc_15: 0.0007638116806616964 - ArtUnc_16: 0.0008529309986786298 - ArtUnc_17: 0.00013281911539449797 - ArtUnc_18: 0.0013145589580882955 - ArtUnc_19: 0.00026800152255003907 - ArtUnc_20: 4.057102074535311e-05 - ArtUnc_21: -7.127916502792052e-06 - ArtUnc_22: 2.2474022471291218e-06 - ArtUnc_23: -1.1101161772269996e-06 - ArtUnc_24: -6.467036350749013e-05 - ArtUnc_25: 3.1546531786239094e-07 - syst_singletop-xsec: 0.001001256442078433 - syst_wjet-scale: 0.001553667 - syst_laltrealcr-mujet-fake: 0.00153617075 - syst_eta-jes: 0.003163788403254801 - syst_statNP3-jes: 0.0017531312345170247 - syst_laltrealcr-ejet-fake: 0.000223952 - syst_pileoffmu-jes: 0.0009285812241590325 - syst_lstat-ejet-fake: 0.001414692722974984 - syst_lstat-mujet-fake: 0.00011515669697932248 - syst_etmsoft-scale: 0.00018898379878490082 - syst_hardscat-model: 0.018143611249999997 - syst_statNP2-jes: 3.636527273031236e-05 - syst_elen-scale: 0.0008564570749657696 - syst_punch-jes: 1.4427777360442599e-05 - syst_pileoffnpv-jes: 0.00281596531740639 - syst_lrec-eff: 0.0009098050000000001 - syst_pileoffpt-jes: 6.0279596294450046e-05 + syst_etmsoft-res: 2.05525106e-04 + syst_detNP1-jes: 2.67181992e-03 + syst_laltpar-ejet-fake: 1.85787618e-03 + syst_statNP1-jes: 7.73299558e-03 + syst_muid-res: 2.03417100e-05 + syst_pdf: 2.90886453e-03 + syst_isr-fsr: 5.90512584e-02 + syst_zjet-xsec: 5.50582284e-03 + syst_ps-model: 3.49063744e-02 + syst_flavres-jes: 1.07452777e-02 + syst_laltfakecr-mujet-fake: 1.07133006e-03 + syst_mums-res: 6.78057000e-06 + syst_mod-NP2-jes: 7.49636403e-04 + syst_lid-eff: 8.99781639e-03 + syst_mixNP2-jes: 3.30806179e-03 + syst_mixNP1-jes: 3.84488215e-03 + syst_btag-eff: 2.73653530e-02 + syst_pileoffrho-jes: 1.67543316e-02 + syst_modNP4-jes: 2.74654937e-04 + syst_mcstat: 9.15376950e-04 + syst_modNP3-jes: 5.15680069e-04 + syst_mod-NP1-jes: 2.41298059e-02 + lumi: 1.89855960e-02 +- ArtUnc_1: -4.93773006e-04 + ArtUnc_2: 6.90406859e-04 + ArtUnc_3: 4.96971474e-04 + ArtUnc_4: -6.05786818e-05 + ArtUnc_5: 1.90294103e-04 + ArtUnc_6: 1.59150802e-04 + ArtUnc_7: -5.63012771e-05 + ArtUnc_8: 2.65966829e-04 + ArtUnc_9: 3.78284605e-05 + ArtUnc_10: 9.88306557e-04 + ArtUnc_11: -7.42456055e-04 + ArtUnc_12: -1.67060236e-04 + ArtUnc_13: -3.81415098e-04 + ArtUnc_14: -5.62250221e-04 + ArtUnc_15: 7.63811681e-04 + ArtUnc_16: 8.52930999e-04 + ArtUnc_17: 1.32819115e-04 + ArtUnc_18: 1.31455896e-03 + ArtUnc_19: 2.68001523e-04 + ArtUnc_20: 4.05710207e-05 + ArtUnc_21: -7.12791650e-06 + ArtUnc_22: 2.24740225e-06 + ArtUnc_23: -1.11011618e-06 + ArtUnc_24: -6.46703635e-05 + ArtUnc_25: 3.15465318e-07 + syst_singletop-xsec: 1.00125644e-03 + syst_wjet-scale: 1.55366700e-03 + syst_laltrealcr-mujet-fake: 1.53617075e-03 + syst_eta-jes: 3.16378840e-03 + syst_statNP3-jes: 1.75313123e-03 + syst_laltrealcr-ejet-fake: 2.23952000e-04 + syst_pileoffmu-jes: 9.28581224e-04 + syst_lstat-ejet-fake: 1.41469272e-03 + syst_lstat-mujet-fake: 1.15156697e-04 + syst_etmsoft-scale: 1.88983799e-04 + syst_hardscat-model: 1.81436112e-02 + syst_statNP2-jes: 3.63652727e-05 + syst_elen-scale: 8.56457075e-04 + syst_punch-jes: 1.44277774e-05 + syst_pileoffnpv-jes: 2.81596532e-03 + syst_lrec-eff: 9.09805000e-04 + syst_pileoffpt-jes: 6.02795963e-05 syst_jeten-res: 0.0 - syst_lighttag-eff: 0.0019175890000000001 - syst_laltfakecr-ejet-fake: 0.00143819175 - syst_laltpar-mujet-fake: 0.001091766 - syst_jetrec-eff: 3.849175e-05 - syst_c/tautag-eff: 0.0032210605753665083 - syst_dibos-xsec: 0.0002589445 - syst_elen-res: 6.863794707683116e-05 - syst_flavcomp-jes: 0.00781704313738006 - syst_detNP2-jes: 0.0006632071207063163 - syst_detNP3-jes: 0.00037559522258751173 - syst_jetvxfrac: 0.0013333749670189365 - syst_ltrig-eff: 0.00438456025 - syst_btag-jes: 0.004841673313166965 - syst_mup-scale: 9.111498713919133e-05 + syst_lighttag-eff: 1.91758900e-03 + syst_laltfakecr-ejet-fake: 1.43819175e-03 + syst_laltpar-mujet-fake: 1.09176600e-03 + syst_jetrec-eff: 3.84917500e-05 + syst_c/tautag-eff: 3.22106058e-03 + syst_dibos-xsec: 2.58944500e-04 + syst_elen-res: 6.86379471e-05 + syst_flavcomp-jes: 7.81704314e-03 + syst_detNP2-jes: 6.63207121e-04 + syst_detNP3-jes: 3.75595223e-04 + syst_jetvxfrac: 1.33337497e-03 + syst_ltrig-eff: 4.38456025e-03 + syst_btag-jes: 4.84167331e-03 + syst_mup-scale: 9.11149871e-05 syst_singlephpt-jes: 0.0 - syst_etmsoft-res: 0.0002606177879005719 - syst_detNP1-jes: 0.003074171783944669 - syst_laltpar-ejet-fake: 0.001133757 - syst_statNP1-jes: 0.0032474637813263096 - syst_muid-res: 3.49925e-05 - syst_pdf: 0.002281511 - syst_isr-fsr: 0.026680677012998696 - syst_zjet-xsec: 0.0032822965 - syst_ps-model: 0.010595729 - syst_flavres-jes: 0.00579647435403974 - syst_laltfakecr-mujet-fake: 0.000545883 - syst_mums-res: 1.049775e-05 - syst_mod-NP2-jes: 0.00013789886737592338 - syst_lid-eff: 0.0047239875 - syst_mixNP2-jes: 0.001479941795030229 - syst_mixNP1-jes: 0.003149328888053155 - syst_btag-eff: 0.014607210789635037 - syst_pileoffrho-jes: 0.008662940756033978 - syst_modNP4-jes: 0.0004314307050970787 - syst_mcstat: 0.000615868 - syst_modNP3-jes: 0.001050719372723338 - syst_mod-NP1-jes: 0.012614838837887544 - lumi: 0.0097979 -- ArtUnc_1: -0.0002493212268697025 - ArtUnc_2: 0.00031738270738695436 - ArtUnc_3: 0.00022985296438660278 - ArtUnc_4: -1.936734421469531e-05 - ArtUnc_5: 0.00010794117962195696 - ArtUnc_6: 5.781171667069765e-05 - ArtUnc_7: -7.460341775941074e-05 - ArtUnc_8: 0.0001317479176675247 - ArtUnc_9: -6.359166913948447e-05 - ArtUnc_10: 0.0004106065198856528 - ArtUnc_11: -0.00018110042457560263 - ArtUnc_12: 0.00018584149706650095 - ArtUnc_13: -0.0004194900455786481 - ArtUnc_14: -0.0005141058562515631 - ArtUnc_15: 0.0001297289607563345 - ArtUnc_16: -0.0005705051969871667 - ArtUnc_17: 0.00026666706092129926 - ArtUnc_18: 0.0001487549881873298 - ArtUnc_19: -0.00026913916211900377 - ArtUnc_20: -0.0008345895072675912 - ArtUnc_21: -4.860676726160359e-05 - ArtUnc_22: 4.545645273959157e-06 - ArtUnc_23: -2.085216144560725e-06 - ArtUnc_24: -6.962425298289801e-05 - ArtUnc_25: 2.688649367078048e-07 - syst_singletop-xsec: 0.0006087905802584397 - syst_wjet-scale: 0.0009594790200000002 - syst_laltrealcr-mujet-fake: 0.0010050285600000002 - syst_eta-jes: 0.0016544768399999999 - syst_statNP3-jes: 0.0007846523237665167 - syst_laltrealcr-ejet-fake: 3.085614000000001e-05 - syst_pileoffmu-jes: 0.0003798371790109972 - syst_lstat-ejet-fake: 0.0006515127125998731 - syst_lstat-mujet-fake: 0.00011834117631208635 - syst_etmsoft-scale: 7.888043371203787e-05 - syst_hardscat-model: 0.00423022986 - syst_statNP2-jes: 5.9358426344531744e-05 - syst_elen-scale: 0.00042349631412488494 - syst_punch-jes: 2.7360909932681333e-05 - syst_pileoffnpv-jes: 0.0008660709262689549 - syst_lrec-eff: 0.0004099458600000001 - syst_pileoffpt-jes: 4.816993147453191e-05 + syst_etmsoft-res: 2.60617788e-04 + syst_detNP1-jes: 3.07417178e-03 + syst_laltpar-ejet-fake: 1.13375700e-03 + syst_statNP1-jes: 3.24746378e-03 + syst_muid-res: 3.49925000e-05 + syst_pdf: 2.28151100e-03 + syst_isr-fsr: 2.66806770e-02 + syst_zjet-xsec: 3.28229650e-03 + syst_ps-model: 1.05957290e-02 + syst_flavres-jes: 5.79647435e-03 + syst_laltfakecr-mujet-fake: 5.45883000e-04 + syst_mums-res: 1.04977500e-05 + syst_mod-NP2-jes: 1.37898867e-04 + syst_lid-eff: 4.72398750e-03 + syst_mixNP2-jes: 1.47994180e-03 + syst_mixNP1-jes: 3.14932889e-03 + syst_btag-eff: 1.46072108e-02 + syst_pileoffrho-jes: 8.66294076e-03 + syst_modNP4-jes: 4.31430705e-04 + syst_mcstat: 6.15868000e-04 + syst_modNP3-jes: 1.05071937e-03 + syst_mod-NP1-jes: 1.26148388e-02 + lumi: 9.79790000e-03 +- ArtUnc_1: -2.49321227e-04 + ArtUnc_2: 3.17382707e-04 + ArtUnc_3: 2.29852964e-04 + ArtUnc_4: -1.93673442e-05 + ArtUnc_5: 1.07941180e-04 + ArtUnc_6: 5.78117167e-05 + ArtUnc_7: -7.46034178e-05 + ArtUnc_8: 1.31747918e-04 + ArtUnc_9: -6.35916691e-05 + ArtUnc_10: 4.10606520e-04 + ArtUnc_11: -1.81100425e-04 + ArtUnc_12: 1.85841497e-04 + ArtUnc_13: -4.19490046e-04 + ArtUnc_14: -5.14105856e-04 + ArtUnc_15: 1.29728961e-04 + ArtUnc_16: -5.70505197e-04 + ArtUnc_17: 2.66667061e-04 + ArtUnc_18: 1.48754988e-04 + ArtUnc_19: -2.69139162e-04 + ArtUnc_20: -8.34589507e-04 + ArtUnc_21: -4.86067673e-05 + ArtUnc_22: 4.54564527e-06 + ArtUnc_23: -2.08521614e-06 + ArtUnc_24: -6.96242530e-05 + ArtUnc_25: 2.68864937e-07 + syst_singletop-xsec: 6.08790580e-04 + syst_wjet-scale: 9.59479020e-04 + syst_laltrealcr-mujet-fake: 1.00502856e-03 + syst_eta-jes: 1.65447684e-03 + syst_statNP3-jes: 7.84652324e-04 + syst_laltrealcr-ejet-fake: 3.08561400e-05 + syst_pileoffmu-jes: 3.79837179e-04 + syst_lstat-ejet-fake: 6.51512713e-04 + syst_lstat-mujet-fake: 1.18341176e-04 + syst_etmsoft-scale: 7.88804337e-05 + syst_hardscat-model: 4.23022986e-03 + syst_statNP2-jes: 5.93584263e-05 + syst_elen-scale: 4.23496314e-04 + syst_punch-jes: 2.73609099e-05 + syst_pileoffnpv-jes: 8.66070926e-04 + syst_lrec-eff: 4.09945860e-04 + syst_pileoffpt-jes: 4.81699315e-05 syst_jeten-res: 0.0 - syst_lighttag-eff: 0.0010373561212160428 - syst_laltfakecr-ejet-fake: 0.00063622422 - syst_laltpar-mujet-fake: 0.0005789199600000001 - syst_jetrec-eff: 1.616274e-05 - syst_c/tautag-eff: 0.0014759523956893524 - syst_dibos-xsec: 0.00015721938000000003 - syst_elen-res: 1.9087286501949408e-05 - syst_flavcomp-jes: 0.0025264633700673865 - syst_detNP2-jes: 0.00011387858970781251 - syst_detNP3-jes: 0.00020248523476063804 - syst_jetvxfrac: 0.0001702533331185196 - syst_ltrig-eff: 0.00186753114 - syst_btag-jes: 0.0020583899836826764 - syst_mup-scale: 3.776946972784633e-05 + syst_lighttag-eff: 1.03735612e-03 + syst_laltfakecr-ejet-fake: 6.36224220e-04 + syst_laltpar-mujet-fake: 5.78919960e-04 + syst_jetrec-eff: 1.61627400e-05 + syst_c/tautag-eff: 1.47595240e-03 + syst_dibos-xsec: 1.57219380e-04 + syst_elen-res: 1.90872865e-05 + syst_flavcomp-jes: 2.52646337e-03 + syst_detNP2-jes: 1.13878590e-04 + syst_detNP3-jes: 2.02485235e-04 + syst_jetvxfrac: 1.70253333e-04 + syst_ltrig-eff: 1.86753114e-03 + syst_btag-jes: 2.05838998e-03 + syst_mup-scale: 3.77694697e-05 syst_singlephpt-jes: 0.0 - syst_etmsoft-res: 0.00011325123324489981 - syst_detNP1-jes: 0.0018765398987247457 - syst_laltpar-ejet-fake: 0.0005010449400000001 - syst_statNP1-jes: 0.0008822062237104856 - syst_muid-res: 7.346700000000001e-06 - syst_pdf: 0.0012944885400000001 - syst_isr-fsr: 0.007856073715313033 - syst_zjet-xsec: 0.0016427221200000003 - syst_ps-model: 0.00046137276000000004 - syst_flavres-jes: 0.0021838815545408203 - syst_laltfakecr-mujet-fake: 0.00028064394000000006 - syst_mums-res: 8.816040000000001e-06 - syst_mod-NP2-jes: 7.493634e-05 - syst_lid-eff: 0.0020085877800000004 - syst_mixNP2-jes: 0.00045945723775007877 - syst_mixNP1-jes: 0.001637587669885057 - syst_btag-eff: 0.006673737548801164 - syst_pileoffrho-jes: 0.0030279838262722474 - syst_modNP4-jes: 0.0003130797735023386 - syst_mcstat: 0.00035704962 - syst_modNP3-jes: 0.000593032522867949 - syst_mod-NP1-jes: 0.004485907954312339 - lumi: 0.004114152 -- ArtUnc_1: -7.781313940744525e-05 - ArtUnc_2: 9.68337718024727e-05 - ArtUnc_3: 6.688295267969592e-05 - ArtUnc_4: 6.295181553757704e-07 - ArtUnc_5: 3.462217350004733e-05 - ArtUnc_6: 3.0822600588724743e-06 - ArtUnc_7: -3.146724858677879e-05 - ArtUnc_8: 4.566153098841385e-05 - ArtUnc_9: -3.996757119507411e-05 - ArtUnc_10: 9.466436102705069e-05 - ArtUnc_11: -1.4567261075315475e-05 - ArtUnc_12: 8.645999718256714e-05 - ArtUnc_13: -0.00010084609150163804 - ArtUnc_14: -0.00010421199300905372 - ArtUnc_15: -7.526516810480734e-05 - ArtUnc_16: -0.00023798533825371014 - ArtUnc_17: -3.840262811419338e-05 - ArtUnc_18: -0.0002845842802510916 - ArtUnc_19: 3.284640723236181e-05 - ArtUnc_20: 0.00018909106500817797 - ArtUnc_21: 3.138536517035268e-05 - ArtUnc_22: 7.1849319648413866e-06 - ArtUnc_23: -3.8473253346644865e-06 - ArtUnc_24: -0.0003458705296630889 - ArtUnc_25: 1.625391026367454e-06 - syst_singletop-xsec: 0.00023573251096217223 - syst_wjet-scale: 0.00040489353400000006 - syst_laltrealcr-mujet-fake: 0.00036484508100000004 - syst_eta-jes: 0.0005208714608431341 - syst_statNP3-jes: 0.00019334584340657056 - syst_laltrealcr-ejet-fake: 1.2124761000000001e-05 - syst_pileoffmu-jes: 0.00010272311745247793 - syst_lstat-ejet-fake: 0.0004244687360135444 - syst_lstat-mujet-fake: 7.477522710883277e-05 - syst_etmsoft-scale: 1.957336263550497e-05 - syst_hardscat-model: 0.000886577221 - syst_statNP2-jes: 3.6273939959178454e-05 - syst_elen-scale: 0.00016293721942341302 - syst_punch-jes: 2.2803546002243338e-05 - syst_pileoffnpv-jes: 0.0001406092666117504 - syst_lrec-eff: 0.000112062185 - syst_pileoffpt-jes: 2.5726406107320838e-05 + syst_etmsoft-res: 1.13251233e-04 + syst_detNP1-jes: 1.87653990e-03 + syst_laltpar-ejet-fake: 5.01044940e-04 + syst_statNP1-jes: 8.82206224e-04 + syst_muid-res: 7.34670000e-06 + syst_pdf: 1.29448854e-03 + syst_isr-fsr: 7.85607372e-03 + syst_zjet-xsec: 1.64272212e-03 + syst_ps-model: 4.61372760e-04 + syst_flavres-jes: 2.18388155e-03 + syst_laltfakecr-mujet-fake: 2.80643940e-04 + syst_mums-res: 8.81604000e-06 + syst_mod-NP2-jes: 7.49363400e-05 + syst_lid-eff: 2.00858778e-03 + syst_mixNP2-jes: 4.59457238e-04 + syst_mixNP1-jes: 1.63758767e-03 + syst_btag-eff: 6.67373755e-03 + syst_pileoffrho-jes: 3.02798383e-03 + syst_modNP4-jes: 3.13079774e-04 + syst_mcstat: 3.57049620e-04 + syst_modNP3-jes: 5.93032523e-04 + syst_mod-NP1-jes: 4.48590795e-03 + lumi: 4.11415200e-03 +- ArtUnc_1: -7.78131394e-05 + ArtUnc_2: 9.68337718e-05 + ArtUnc_3: 6.68829527e-05 + ArtUnc_4: 6.29518155e-07 + ArtUnc_5: 3.46221735e-05 + ArtUnc_6: 3.08226006e-06 + ArtUnc_7: -3.14672486e-05 + ArtUnc_8: 4.56615310e-05 + ArtUnc_9: -3.99675712e-05 + ArtUnc_10: 9.46643610e-05 + ArtUnc_11: -1.45672611e-05 + ArtUnc_12: 8.64599972e-05 + ArtUnc_13: -1.00846092e-04 + ArtUnc_14: -1.04211993e-04 + ArtUnc_15: -7.52651681e-05 + ArtUnc_16: -2.37985338e-04 + ArtUnc_17: -3.84026281e-05 + ArtUnc_18: -2.84584280e-04 + ArtUnc_19: 3.28464072e-05 + ArtUnc_20: 1.89091065e-04 + ArtUnc_21: 3.13853652e-05 + ArtUnc_22: 7.18493196e-06 + ArtUnc_23: -3.84732533e-06 + ArtUnc_24: -3.45870530e-04 + ArtUnc_25: 1.62539103e-06 + syst_singletop-xsec: 2.35732511e-04 + syst_wjet-scale: 4.04893534e-04 + syst_laltrealcr-mujet-fake: 3.64845081e-04 + syst_eta-jes: 5.20871461e-04 + syst_statNP3-jes: 1.93345843e-04 + syst_laltrealcr-ejet-fake: 1.21247610e-05 + syst_pileoffmu-jes: 1.02723117e-04 + syst_lstat-ejet-fake: 4.24468736e-04 + syst_lstat-mujet-fake: 7.47752271e-05 + syst_etmsoft-scale: 1.95733626e-05 + syst_hardscat-model: 8.86577221e-04 + syst_statNP2-jes: 3.62739400e-05 + syst_elen-scale: 1.62937219e-04 + syst_punch-jes: 2.28035460e-05 + syst_pileoffnpv-jes: 1.40609267e-04 + syst_lrec-eff: 1.12062185e-04 + syst_pileoffpt-jes: 2.57264061e-05 syst_jeten-res: 0.0 - syst_lighttag-eff: 0.0003613554600564703 - syst_laltfakecr-ejet-fake: 0.000185913002 - syst_laltpar-mujet-fake: 0.00019289392500000002 - syst_jetrec-eff: 8.083174000000001e-06 - syst_c/tautag-eff: 0.0004366751817858577 - syst_dibos-xsec: 6.613506000000001e-05 - syst_elen-res: 4.45469438095174e-06 - syst_flavcomp-jes: 0.00035734486129548496 - syst_detNP2-jes: 1.9535392934113285e-05 - syst_detNP3-jes: 6.470817357831323e-05 - syst_jetvxfrac: 8.754302768454748e-05 - syst_ltrig-eff: 0.00048021401900000005 - syst_btag-jes: 0.00047492566439833687 - syst_mup-scale: 1.418605553892719e-05 + syst_lighttag-eff: 3.61355460e-04 + syst_laltfakecr-ejet-fake: 1.85913002e-04 + syst_laltpar-mujet-fake: 1.92893925e-04 + syst_jetrec-eff: 8.08317400e-06 + syst_c/tautag-eff: 4.36675182e-04 + syst_dibos-xsec: 6.61350600e-05 + syst_elen-res: 4.45469438e-06 + syst_flavcomp-jes: 3.57344861e-04 + syst_detNP2-jes: 1.95353929e-05 + syst_detNP3-jes: 6.47081736e-05 + syst_jetvxfrac: 8.75430277e-05 + syst_ltrig-eff: 4.80214019e-04 + syst_btag-jes: 4.74925664e-04 + syst_mup-scale: 1.41860555e-05 syst_singlephpt-jes: 0.0 - syst_etmsoft-res: 1.1437237388479834e-05 - syst_detNP1-jes: 0.0006722039112522525 - syst_laltpar-ejet-fake: 0.00020354901800000004 - syst_statNP1-jes: 6.584969617186225e-05 - syst_muid-res: 2.571919e-06 - syst_pdf: 0.0005897042850000001 - syst_isr-fsr: 0.001122627882991657 - syst_zjet-xsec: 0.000571700852 - syst_ps-model: 0.001213945768 - syst_flavres-jes: 0.0004602221328600295 - syst_laltfakecr-mujet-fake: 0.00010140709200000003 - syst_mums-res: 3.306753e-06 - syst_mod-NP2-jes: 6.802177782516035e-05 - syst_lid-eff: 0.000509239962 - syst_mixNP2-jes: 4.1369914230618635e-05 - syst_mixNP1-jes: 0.0004917877231247617 - syst_btag-eff: 0.0018955987988868365 - syst_pileoffrho-jes: 0.0005397684619472364 - syst_modNP4-jes: 0.00011708718570695269 - syst_mcstat: 0.00014733421700000002 - syst_modNP3-jes: 0.00017391005569015916 - syst_mod-NP1-jes: 0.0008500735819737558 - lumi: 0.0010287676 -- ArtUnc_1: -7.970745554019968e-06 - ArtUnc_2: 8.013227272200023e-06 - ArtUnc_3: 4.735309290148457e-06 - ArtUnc_4: 9.905467762867917e-07 - ArtUnc_5: 3.1454343415170255e-06 - ArtUnc_6: -5.742304774111326e-07 - ArtUnc_7: -3.286183517074476e-06 - ArtUnc_8: 3.822916220256627e-06 - ArtUnc_9: -4.4437613660587845e-06 - ArtUnc_10: 6.461249923998458e-06 - ArtUnc_11: -9.816200187055929e-07 - ArtUnc_12: 7.80392629233687e-06 - ArtUnc_13: -6.378005954168094e-06 - ArtUnc_14: -5.900167877773338e-06 - ArtUnc_15: -9.10592132190637e-06 - ArtUnc_16: -1.2820585528823687e-05 - ArtUnc_17: -1.185663228039336e-05 - ArtUnc_18: -2.1927199761811522e-05 - ArtUnc_19: 1.6654884178175706e-05 - ArtUnc_20: 3.5180994851449896e-05 - ArtUnc_21: -9.429079952232229e-06 - ArtUnc_22: 8.138417806717254e-05 - ArtUnc_23: -1.8360824163312212e-05 - ArtUnc_24: 3.8846761148986064e-05 - ArtUnc_25: -3.938635222660408e-07 - syst_singletop-xsec: 5.005728244933783e-05 - syst_wjet-scale: 9.629627677231602e-05 - syst_laltrealcr-mujet-fake: 7.512676290000001e-05 - syst_eta-jes: 8.012668278616041e-05 - syst_statNP3-jes: 1.9722125706267354e-05 - syst_laltrealcr-ejet-fake: 7.5431979e-06 - syst_pileoffmu-jes: 1.632246728096107e-05 - syst_lstat-ejet-fake: 0.00015021206246552545 - syst_lstat-mujet-fake: 2.0730624005423196e-05 - syst_etmsoft-scale: 2.5214045550703997e-06 - syst_hardscat-model: 0.0010011960126 - syst_statNP2-jes: 9.154899684358554e-06 - syst_elen-scale: 2.5607684986569582e-05 - syst_punch-jes: 6.63482460952425e-06 - syst_pileoffnpv-jes: 7.279201249110801e-06 - syst_lrec-eff: 1.5217202699999999e-05 - syst_pileoffpt-jes: 5.425421065893756e-06 + syst_etmsoft-res: 1.14372374e-05 + syst_detNP1-jes: 6.72203911e-04 + syst_laltpar-ejet-fake: 2.03549018e-04 + syst_statNP1-jes: 6.58496962e-05 + syst_muid-res: 2.57191900e-06 + syst_pdf: 5.89704285e-04 + syst_isr-fsr: 1.12262788e-03 + syst_zjet-xsec: 5.71700852e-04 + syst_ps-model: 1.21394577e-03 + syst_flavres-jes: 4.60222133e-04 + syst_laltfakecr-mujet-fake: 1.01407092e-04 + syst_mums-res: 3.30675300e-06 + syst_mod-NP2-jes: 6.80217778e-05 + syst_lid-eff: 5.09239962e-04 + syst_mixNP2-jes: 4.13699142e-05 + syst_mixNP1-jes: 4.91787723e-04 + syst_btag-eff: 1.89559880e-03 + syst_pileoffrho-jes: 5.39768462e-04 + syst_modNP4-jes: 1.17087186e-04 + syst_mcstat: 1.47334217e-04 + syst_modNP3-jes: 1.73910056e-04 + syst_mod-NP1-jes: 8.50073582e-04 + lumi: 1.02876760e-03 +- ArtUnc_1: -7.97074555e-06 + ArtUnc_2: 8.01322727e-06 + ArtUnc_3: 4.73530929e-06 + ArtUnc_4: 9.90546776e-07 + ArtUnc_5: 3.14543434e-06 + ArtUnc_6: -5.74230477e-07 + ArtUnc_7: -3.28618352e-06 + ArtUnc_8: 3.82291622e-06 + ArtUnc_9: -4.44376137e-06 + ArtUnc_10: 6.46124992e-06 + ArtUnc_11: -9.81620019e-07 + ArtUnc_12: 7.80392629e-06 + ArtUnc_13: -6.37800595e-06 + ArtUnc_14: -5.90016788e-06 + ArtUnc_15: -9.10592132e-06 + ArtUnc_16: -1.28205855e-05 + ArtUnc_17: -1.18566323e-05 + ArtUnc_18: -2.19271998e-05 + ArtUnc_19: 1.66548842e-05 + ArtUnc_20: 3.51809949e-05 + ArtUnc_21: -9.42907995e-06 + ArtUnc_22: 8.13841781e-05 + ArtUnc_23: -1.83608242e-05 + ArtUnc_24: 3.88467611e-05 + ArtUnc_25: -3.93863522e-07 + syst_singletop-xsec: 5.00572824e-05 + syst_wjet-scale: 9.62962768e-05 + syst_laltrealcr-mujet-fake: 7.51267629e-05 + syst_eta-jes: 8.01266828e-05 + syst_statNP3-jes: 1.97221257e-05 + syst_laltrealcr-ejet-fake: 7.54319790e-06 + syst_pileoffmu-jes: 1.63224673e-05 + syst_lstat-ejet-fake: 1.50212062e-04 + syst_lstat-mujet-fake: 2.07306240e-05 + syst_etmsoft-scale: 2.52140456e-06 + syst_hardscat-model: 1.00119601e-03 + syst_statNP2-jes: 9.15489968e-06 + syst_elen-scale: 2.56076850e-05 + syst_punch-jes: 6.63482461e-06 + syst_pileoffnpv-jes: 7.27920125e-06 + syst_lrec-eff: 1.52172027e-05 + syst_pileoffpt-jes: 5.42542107e-06 syst_jeten-res: 0.0 - syst_lighttag-eff: 6.344137646720941e-05 - syst_laltfakecr-ejet-fake: 4.0506536699999996e-05 - syst_laltpar-mujet-fake: 2.5289333999999998e-05 - syst_jetrec-eff: 2.3981265e-06 - syst_c/tautag-eff: 6.161008075795404e-05 + syst_lighttag-eff: 6.34413765e-05 + syst_laltfakecr-ejet-fake: 4.05065367e-05 + syst_laltpar-mujet-fake: 2.52893340e-05 + syst_jetrec-eff: 2.39812650e-06 + syst_c/tautag-eff: 6.16100808e-05 syst_dibos-xsec: 1.13802003e-05 - syst_elen-res: 1.0518913674894285e-06 - syst_flavcomp-jes: 1.0864237319548224e-05 - syst_detNP2-jes: 1.1275473847366157e-05 - syst_detNP3-jes: 1.0780156148421065e-05 - syst_jetvxfrac: 2.4707648324075146e-05 - syst_ltrig-eff: 6.0781606199999994e-05 - syst_btag-jes: 5.517975289189525e-05 - syst_mup-scale: 1.4307601611297427e-06 + syst_elen-res: 1.05189137e-06 + syst_flavcomp-jes: 1.08642373e-05 + syst_detNP2-jes: 1.12754738e-05 + syst_detNP3-jes: 1.07801561e-05 + syst_jetvxfrac: 2.47076483e-05 + syst_ltrig-eff: 6.07816062e-05 + syst_btag-jes: 5.51797529e-05 + syst_mup-scale: 1.43076016e-06 syst_singlephpt-jes: 0.0 - syst_etmsoft-res: 4.8333695313190696e-06 - syst_detNP1-jes: 0.0001237150452802432 - syst_laltpar-ejet-fake: 3.5623079099999995e-05 - syst_statNP1-jes: 1.7497674157327238e-05 - syst_muid-res: 1.6568874e-06 - syst_pdf: 0.00014148946349999998 - syst_isr-fsr: 0.00030218619234146775 - syst_zjet-xsec: 0.0001249205895 - syst_ps-model: 0.00037615704210000004 - syst_flavres-jes: 4.344423858555926e-05 + syst_etmsoft-res: 4.83336953e-06 + syst_detNP1-jes: 1.23715045e-04 + syst_laltpar-ejet-fake: 3.56230791e-05 + syst_statNP1-jes: 1.74976742e-05 + syst_muid-res: 1.65688740e-06 + syst_pdf: 1.41489463e-04 + syst_isr-fsr: 3.02186192e-04 + syst_zjet-xsec: 1.24920589e-04 + syst_ps-model: 3.76157042e-04 + syst_flavres-jes: 4.34442386e-05 syst_laltfakecr-mujet-fake: 2.50277202e-05 - syst_mums-res: 2.6161379999999996e-06 - syst_mod-NP2-jes: 2.50525095800525e-05 + syst_mums-res: 2.61613800e-06 + syst_mod-NP2-jes: 2.50525096e-05 syst_lid-eff: 6.11304246e-05 - syst_mixNP2-jes: 7.74069778806172e-06 - syst_mixNP1-jes: 8.24850968712858e-05 - syst_btag-eff: 0.0002621483231953316 - syst_pileoffrho-jes: 3.268372683134086e-05 - syst_modNP4-jes: 2.1043655322030776e-05 + syst_mixNP2-jes: 7.74069779e-06 + syst_mixNP1-jes: 8.24850969e-05 + syst_btag-eff: 2.62148323e-04 + syst_pileoffrho-jes: 3.26837268e-05 + syst_modNP4-jes: 2.10436553e-05 syst_mcstat: 1.35603153e-05 - syst_modNP3-jes: 2.2982507207295513e-05 - syst_mod-NP1-jes: 5.873302641898084e-05 - lumi: 0.00012208643999999999 + syst_modNP3-jes: 2.29825072e-05 + syst_mod-NP1-jes: 5.87330264e-05 + lumi: 1.22086440e-04 diff --git a/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_8TEV_LJ_DIF/uncertainties_dSig_dmttBar_norm.yaml b/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_8TEV_LJ_DIF/uncertainties_dSig_dmttBar_norm.yaml index 5b32f9361b..aaedcc2a5a 100644 --- a/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_8TEV_LJ_DIF/uncertainties_dSig_dmttBar_norm.yaml +++ b/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_8TEV_LJ_DIF/uncertainties_dSig_dmttBar_norm.yaml @@ -320,563 +320,563 @@ definitions: treatment: MULT type: CORR bins: -- ArtUnc_1: -2.495759195278085e-07 - ArtUnc_2: 5.73304409401947e-08 - ArtUnc_3: 2.93672911981883e-07 - ArtUnc_4: -6.485863251938107e-08 - ArtUnc_5: 3.616076967509104e-07 - ArtUnc_6: 8.099793630727451e-07 - ArtUnc_7: -2.3235690386341577e-07 - ArtUnc_8: 2.1709489855386994e-06 - ArtUnc_9: 1.6291637604688764e-05 - ArtUnc_10: -1.2236688078185498e-05 - ArtUnc_11: -1.059818177828628e-05 - ArtUnc_12: 1.0173701763401644e-06 - ArtUnc_13: 1.9777869690470204e-07 - ArtUnc_14: 1.3429945700612308e-06 - ArtUnc_15: -2.893926470394613e-06 - ArtUnc_16: -1.1498479397870341e-06 - ArtUnc_17: -6.369764852193753e-08 - ArtUnc_18: -6.022618644305731e-08 - ArtUnc_19: -3.4211802232973036e-07 - ArtUnc_20: -2.0107754313708623e-08 +- ArtUnc_1: -2.49575920e-07 + ArtUnc_2: 5.73304409e-08 + ArtUnc_3: 2.93672912e-07 + ArtUnc_4: -6.48586325e-08 + ArtUnc_5: 3.61607697e-07 + ArtUnc_6: 8.09979363e-07 + ArtUnc_7: -2.32356904e-07 + ArtUnc_8: 2.17094899e-06 + ArtUnc_9: 1.62916376e-05 + ArtUnc_10: -1.22366881e-05 + ArtUnc_11: -1.05981818e-05 + ArtUnc_12: 1.01737018e-06 + ArtUnc_13: 1.97778697e-07 + ArtUnc_14: 1.34299457e-06 + ArtUnc_15: -2.89392647e-06 + ArtUnc_16: -1.14984794e-06 + ArtUnc_17: -6.36976485e-08 + ArtUnc_18: -6.02261864e-08 + ArtUnc_19: -3.42118022e-07 + ArtUnc_20: -2.01077543e-08 ArtUnc_21: 0.0 - ArtUnc_22: 5.7113445686716685e-08 + ArtUnc_22: 5.71134457e-08 ArtUnc_23: 0.0 ArtUnc_24: 0.0 - ArtUnc_25: -1.391867233734582e-10 - syst_singletop-xsec: 3.1743785749517576e-06 - syst_wjet-scale: 4.531221273738544e-06 - syst_laltrealcr-mujet-fake: 1.2884699999999999e-05 - syst_eta-jes: 2.7345151384532924e-05 - syst_statNP3-jes: 2.4502875014763734e-05 - syst_laltrealcr-ejet-fake: 3.00643e-07 - syst_pileoffmu-jes: 3.37163327748033e-06 - syst_lstat-ejet-fake: 7.81093426409895e-06 - syst_lstat-mujet-fake: 1.078652826946998e-06 - syst_etmsoft-scale: 3.4210570265920374e-06 - syst_hardscat-model: 0.00010324939599999999 - syst_statNP2-jes: 3.9821737486763124e-06 - syst_elen-scale: 8.370841634389981e-06 - syst_punch-jes: 4.878068690875519e-07 - syst_pileoffnpv-jes: 8.515823920896557e-06 - syst_lrec-eff: 9.019290000000001e-07 - syst_pileoffpt-jes: 1.6131623817399012e-06 + ArtUnc_25: -1.39186723e-10 + syst_singletop-xsec: 3.17437857e-06 + syst_wjet-scale: 4.53122127e-06 + syst_laltrealcr-mujet-fake: 1.28847000e-05 + syst_eta-jes: 2.73451514e-05 + syst_statNP3-jes: 2.45028750e-05 + syst_laltrealcr-ejet-fake: 3.00643000e-07 + syst_pileoffmu-jes: 3.37163328e-06 + syst_lstat-ejet-fake: 7.81093426e-06 + syst_lstat-mujet-fake: 1.07865283e-06 + syst_etmsoft-scale: 3.42105703e-06 + syst_hardscat-model: 1.03249396e-04 + syst_statNP2-jes: 3.98217375e-06 + syst_elen-scale: 8.37084163e-06 + syst_punch-jes: 4.87806869e-07 + syst_pileoffnpv-jes: 8.51582392e-06 + syst_lrec-eff: 9.01929000e-07 + syst_pileoffpt-jes: 1.61316238e-06 syst_jeten-res: 0.0 - syst_lighttag-eff: 3.50047524291956e-06 - syst_laltfakecr-ejet-fake: 3.3070730000000004e-06 - syst_laltpar-mujet-fake: 3.650665e-06 - syst_jetrec-eff: 1.9327049999999997e-06 - syst_c/tautag-eff: 5.153880000000001e-07 - syst_dibos-xsec: 8.5898e-08 - syst_elen-res: 6.681296411939826e-07 - syst_flavcomp-jes: 1.7990799870309177e-05 - syst_detNP2-jes: 2.873092286974959e-07 - syst_detNP3-jes: 4.4577565532925586e-06 - syst_jetvxfrac: 1.4840355604223035e-05 - syst_ltrig-eff: 4.5198593845467135e-07 - syst_btag-jes: 4.697189403007193e-05 - syst_mup-scale: 7.448277940240616e-07 + syst_lighttag-eff: 3.50047524e-06 + syst_laltfakecr-ejet-fake: 3.30707300e-06 + syst_laltpar-mujet-fake: 3.65066500e-06 + syst_jetrec-eff: 1.93270500e-06 + syst_c/tautag-eff: 5.15388000e-07 + syst_dibos-xsec: 8.58980000e-08 + syst_elen-res: 6.68129641e-07 + syst_flavcomp-jes: 1.79907999e-05 + syst_detNP2-jes: 2.87309229e-07 + syst_detNP3-jes: 4.45775655e-06 + syst_jetvxfrac: 1.48403556e-05 + syst_ltrig-eff: 4.51985938e-07 + syst_btag-jes: 4.69718940e-05 + syst_mup-scale: 7.44827794e-07 syst_singlephpt-jes: 0.0 - syst_etmsoft-res: 3.087178780572442e-06 - syst_detNP1-jes: 4.011602138768535e-05 - syst_laltpar-ejet-fake: 1.2455210000000001e-06 - syst_statNP1-jes: 9.201516287324606e-07 - syst_muid-res: 8.5898e-08 - syst_pdf: 1.9670642000000003e-05 - syst_isr-fsr: 4.63820715587209e-05 - syst_zjet-xsec: 1.0307760000000001e-06 - syst_ps-model: 1.8425121e-05 - syst_flavres-jes: 2.581891378811732e-05 - syst_laltfakecr-mujet-fake: 2.7057870000000003e-06 - syst_mums-res: 8.5898e-08 - syst_mod-NP2-jes: 2.442718475404964e-06 - syst_lid-eff: 1.653815366095245e-06 - syst_mixNP2-jes: 1.3976583919037582e-06 - syst_mixNP1-jes: 3.3457491533291156e-05 - syst_btag-eff: 2.277107214298659e-06 - syst_pileoffrho-jes: 4.03717116090021e-05 - syst_modNP4-jes: 5.7945746033555165e-06 - syst_mcstat: 5.712217000000001e-06 - syst_modNP3-jes: 2.237939648845145e-05 - syst_mod-NP1-jes: 7.102940107926915e-05 -- ArtUnc_1: -2.249418640781195e-07 - ArtUnc_2: 6.58062560816945e-08 - ArtUnc_3: 1.1291627037546456e-07 - ArtUnc_4: 7.862244513498878e-08 - ArtUnc_5: 2.412933549023423e-07 - ArtUnc_6: 6.920983134539285e-07 - ArtUnc_7: -2.516874279185899e-08 - ArtUnc_8: 1.3015359133612224e-06 - ArtUnc_9: 5.772801784957629e-06 - ArtUnc_10: -3.7827062563717077e-06 - ArtUnc_11: 1.1648723547176075e-06 - ArtUnc_12: -6.392952126751393e-06 - ArtUnc_13: 2.704529084501076e-06 - ArtUnc_14: -7.799828604752548e-06 - ArtUnc_15: 1.6310251774483325e-06 - ArtUnc_16: 1.0360451497322306e-06 - ArtUnc_17: -2.1431044848970774e-06 - ArtUnc_18: 2.510887107274236e-07 - ArtUnc_19: -3.3448259708578274e-07 - ArtUnc_20: -2.6281099062123604e-08 + syst_etmsoft-res: 3.08717878e-06 + syst_detNP1-jes: 4.01160214e-05 + syst_laltpar-ejet-fake: 1.24552100e-06 + syst_statNP1-jes: 9.20151629e-07 + syst_muid-res: 8.58980000e-08 + syst_pdf: 1.96706420e-05 + syst_isr-fsr: 4.63820716e-05 + syst_zjet-xsec: 1.03077600e-06 + syst_ps-model: 1.84251210e-05 + syst_flavres-jes: 2.58189138e-05 + syst_laltfakecr-mujet-fake: 2.70578700e-06 + syst_mums-res: 8.58980000e-08 + syst_mod-NP2-jes: 2.44271848e-06 + syst_lid-eff: 1.65381537e-06 + syst_mixNP2-jes: 1.39765839e-06 + syst_mixNP1-jes: 3.34574915e-05 + syst_btag-eff: 2.27710721e-06 + syst_pileoffrho-jes: 4.03717116e-05 + syst_modNP4-jes: 5.79457460e-06 + syst_mcstat: 5.71221700e-06 + syst_modNP3-jes: 2.23793965e-05 + syst_mod-NP1-jes: 7.10294011e-05 +- ArtUnc_1: -2.24941864e-07 + ArtUnc_2: 6.58062561e-08 + ArtUnc_3: 1.12916270e-07 + ArtUnc_4: 7.86224451e-08 + ArtUnc_5: 2.41293355e-07 + ArtUnc_6: 6.92098313e-07 + ArtUnc_7: -2.51687428e-08 + ArtUnc_8: 1.30153591e-06 + ArtUnc_9: 5.77280178e-06 + ArtUnc_10: -3.78270626e-06 + ArtUnc_11: 1.16487235e-06 + ArtUnc_12: -6.39295213e-06 + ArtUnc_13: 2.70452908e-06 + ArtUnc_14: -7.79982860e-06 + ArtUnc_15: 1.63102518e-06 + ArtUnc_16: 1.03604515e-06 + ArtUnc_17: -2.14310448e-06 + ArtUnc_18: 2.51088711e-07 + ArtUnc_19: -3.34482597e-07 + ArtUnc_20: -2.62810991e-08 ArtUnc_21: 0.0 - ArtUnc_22: 9.16924804724306e-08 + ArtUnc_22: 9.16924805e-08 ArtUnc_23: 0.0 ArtUnc_24: 0.0 - ArtUnc_25: -2.166339986260926e-10 - syst_singletop-xsec: 2.456952303829714e-06 - syst_wjet-scale: 5.5296417921977936e-06 - syst_laltrealcr-mujet-fake: 7.6530818e-06 - syst_eta-jes: 1.0412488413852888e-05 - syst_statNP3-jes: 6.139573406258221e-06 - syst_laltrealcr-ejet-fake: 4.20499e-07 - syst_pileoffmu-jes: 1.3798199108645546e-06 - syst_lstat-ejet-fake: 5.353193399109504e-06 - syst_lstat-mujet-fake: 8.011581957850958e-07 - syst_etmsoft-scale: 9.97522543180417e-07 - syst_hardscat-model: 0.0001174033208 - syst_statNP2-jes: 1.8352023574926411e-06 - syst_elen-scale: 2.841636915679617e-06 - syst_punch-jes: 4.917321850447328e-07 - syst_pileoffnpv-jes: 1.350842811318297e-06 - syst_lrec-eff: 5.466486999999999e-07 - syst_pileoffpt-jes: 4.663559510408653e-07 + ArtUnc_25: -2.16633999e-10 + syst_singletop-xsec: 2.45695230e-06 + syst_wjet-scale: 5.52964179e-06 + syst_laltrealcr-mujet-fake: 7.65308180e-06 + syst_eta-jes: 1.04124884e-05 + syst_statNP3-jes: 6.13957341e-06 + syst_laltrealcr-ejet-fake: 4.20499000e-07 + syst_pileoffmu-jes: 1.37981991e-06 + syst_lstat-ejet-fake: 5.35319340e-06 + syst_lstat-mujet-fake: 8.01158196e-07 + syst_etmsoft-scale: 9.97522543e-07 + syst_hardscat-model: 1.17403321e-04 + syst_statNP2-jes: 1.83520236e-06 + syst_elen-scale: 2.84163692e-06 + syst_punch-jes: 4.91732185e-07 + syst_pileoffnpv-jes: 1.35084281e-06 + syst_lrec-eff: 5.46648700e-07 + syst_pileoffpt-jes: 4.66355951e-07 syst_jeten-res: 0.0 - syst_lighttag-eff: 3.4901417e-06 - syst_laltfakecr-ejet-fake: 2.3127445e-06 - syst_laltpar-mujet-fake: 2.7332434999999998e-06 - syst_jetrec-eff: 8.40998e-07 - syst_c/tautag-eff: 1.535109335995592e-06 - syst_dibos-xsec: 3.363992e-07 - syst_elen-res: 4.881230927018793e-07 - syst_flavcomp-jes: 6.623626783064406e-06 - syst_detNP2-jes: 2.293454898021159e-06 - syst_detNP3-jes: 1.4717465000000001e-06 - syst_jetvxfrac: 8.820561668880842e-06 - syst_ltrig-eff: 1.2614969999999997e-07 - syst_btag-jes: 9.99680547598845e-06 - syst_mup-scale: 1.0924884487978577e-07 + syst_lighttag-eff: 3.49014170e-06 + syst_laltfakecr-ejet-fake: 2.31274450e-06 + syst_laltpar-mujet-fake: 2.73324350e-06 + syst_jetrec-eff: 8.40998000e-07 + syst_c/tautag-eff: 1.53510934e-06 + syst_dibos-xsec: 3.36399200e-07 + syst_elen-res: 4.88123093e-07 + syst_flavcomp-jes: 6.62362678e-06 + syst_detNP2-jes: 2.29345490e-06 + syst_detNP3-jes: 1.47174650e-06 + syst_jetvxfrac: 8.82056167e-06 + syst_ltrig-eff: 1.26149700e-07 + syst_btag-jes: 9.99680548e-06 + syst_mup-scale: 1.09248845e-07 syst_singlephpt-jes: 0.0 - syst_etmsoft-res: 1.2017372936776439e-06 - syst_detNP1-jes: 1.6002224665989904e-05 - syst_laltpar-ejet-fake: 1.9763452999999996e-06 - syst_statNP1-jes: 6.269948899567869e-06 - syst_muid-res: 2.5229939999999994e-07 - syst_pdf: 5.8028862e-06 - syst_isr-fsr: 3.873379582151344e-05 - syst_zjet-xsec: 4.499339299999999e-06 - syst_ps-model: 0.0001406989654 - syst_flavres-jes: 2.595793833975573e-06 - syst_laltfakecr-mujet-fake: 2.102495e-07 - syst_mums-res: 2.102495e-07 - syst_mod-NP2-jes: 2.399793355929333e-06 - syst_lid-eff: 7.568981999999999e-07 - syst_mixNP2-jes: 2.1898270187636097e-06 - syst_mixNP1-jes: 1.1042943437199937e-05 - syst_btag-eff: 5.385343021975853e-06 - syst_pileoffrho-jes: 1.995488183553719e-06 - syst_modNP4-jes: 2.7390596057611506e-06 - syst_mcstat: 3.0696426999999997e-06 - syst_modNP3-jes: 7.2785206691188025e-06 - syst_mod-NP1-jes: 5.460135392381411e-06 -- ArtUnc_1: -1.3543726250249885e-07 - ArtUnc_2: 2.2551055394730445e-08 - ArtUnc_3: 7.979443498213276e-08 - ArtUnc_4: 7.866229533563083e-08 - ArtUnc_5: 1.489208402672547e-07 - ArtUnc_6: 2.4375155366026903e-07 - ArtUnc_7: 6.748062660163918e-08 - ArtUnc_8: 1.681911390026745e-07 - ArtUnc_9: -4.1185096266729715e-06 - ArtUnc_10: 3.361520032294532e-06 - ArtUnc_11: 6.0348302335515736e-06 - ArtUnc_12: -4.512100312468949e-06 - ArtUnc_13: 2.027421425016032e-06 - ArtUnc_14: -1.6106797326991516e-06 - ArtUnc_15: -5.7375545630788956e-06 - ArtUnc_16: -2.8461615719518855e-06 - ArtUnc_17: 1.0252835894039653e-06 - ArtUnc_18: -3.7805803478262424e-07 - ArtUnc_19: -8.075841212510294e-07 - ArtUnc_20: -4.6542803575086503e-08 + syst_etmsoft-res: 1.20173729e-06 + syst_detNP1-jes: 1.60022247e-05 + syst_laltpar-ejet-fake: 1.97634530e-06 + syst_statNP1-jes: 6.26994890e-06 + syst_muid-res: 2.52299400e-07 + syst_pdf: 5.80288620e-06 + syst_isr-fsr: 3.87337958e-05 + syst_zjet-xsec: 4.49933930e-06 + syst_ps-model: 1.40698965e-04 + syst_flavres-jes: 2.59579383e-06 + syst_laltfakecr-mujet-fake: 2.10249500e-07 + syst_mums-res: 2.10249500e-07 + syst_mod-NP2-jes: 2.39979336e-06 + syst_lid-eff: 7.56898200e-07 + syst_mixNP2-jes: 2.18982702e-06 + syst_mixNP1-jes: 1.10429434e-05 + syst_btag-eff: 5.38534302e-06 + syst_pileoffrho-jes: 1.99548818e-06 + syst_modNP4-jes: 2.73905961e-06 + syst_mcstat: 3.06964270e-06 + syst_modNP3-jes: 7.27852067e-06 + syst_mod-NP1-jes: 5.46013539e-06 +- ArtUnc_1: -1.35437263e-07 + ArtUnc_2: 2.25510554e-08 + ArtUnc_3: 7.97944350e-08 + ArtUnc_4: 7.86622953e-08 + ArtUnc_5: 1.48920840e-07 + ArtUnc_6: 2.43751554e-07 + ArtUnc_7: 6.74806266e-08 + ArtUnc_8: 1.68191139e-07 + ArtUnc_9: -4.11850963e-06 + ArtUnc_10: 3.36152003e-06 + ArtUnc_11: 6.03483023e-06 + ArtUnc_12: -4.51210031e-06 + ArtUnc_13: 2.02742143e-06 + ArtUnc_14: -1.61067973e-06 + ArtUnc_15: -5.73755456e-06 + ArtUnc_16: -2.84616157e-06 + ArtUnc_17: 1.02528359e-06 + ArtUnc_18: -3.78058035e-07 + ArtUnc_19: -8.07584121e-07 + ArtUnc_20: -4.65428036e-08 ArtUnc_21: 0.0 - ArtUnc_22: 9.824191946502335e-08 + ArtUnc_22: 9.82419195e-08 ArtUnc_23: 0.0 ArtUnc_24: 0.0 - ArtUnc_25: -2.4880349196648454e-10 - syst_singletop-xsec: 6.179390541356e-07 - syst_wjet-scale: 1.7899350000000003e-06 - syst_laltrealcr-mujet-fake: 1.176243e-06 - syst_eta-jes: 5.6880857374659165e-06 - syst_statNP3-jes: 7.148807113259714e-06 - syst_laltrealcr-ejet-fake: 5.625509999999999e-07 - syst_pileoffmu-jes: 9.82636088255305e-07 - syst_lstat-ejet-fake: 1.5610052017863963e-06 - syst_lstat-mujet-fake: 2.2144702587469984e-07 - syst_etmsoft-scale: 1.115984624987588e-06 + ArtUnc_25: -2.48803492e-10 + syst_singletop-xsec: 6.17939054e-07 + syst_wjet-scale: 1.78993500e-06 + syst_laltrealcr-mujet-fake: 1.17624300e-06 + syst_eta-jes: 5.68808574e-06 + syst_statNP3-jes: 7.14880711e-06 + syst_laltrealcr-ejet-fake: 5.62551000e-07 + syst_pileoffmu-jes: 9.82636088e-07 + syst_lstat-ejet-fake: 1.56100520e-06 + syst_lstat-mujet-fake: 2.21447026e-07 + syst_etmsoft-scale: 1.11598462e-06 syst_hardscat-model: 4.41091125e-05 - syst_statNP2-jes: 6.011787150512628e-07 - syst_elen-scale: 1.693068357029922e-06 - syst_punch-jes: 4.428940517493998e-08 - syst_pileoffnpv-jes: 5.3022113506273665e-06 - syst_lrec-eff: 5.1141e-08 - syst_pileoffpt-jes: 5.654492726604659e-07 + syst_statNP2-jes: 6.01178715e-07 + syst_elen-scale: 1.69306836e-06 + syst_punch-jes: 4.42894052e-08 + syst_pileoffnpv-jes: 5.30221135e-06 + syst_lrec-eff: 5.11410000e-08 + syst_pileoffpt-jes: 5.65449273e-07 syst_jeten-res: 0.0 - syst_lighttag-eff: 9.71679e-07 - syst_laltfakecr-ejet-fake: 4.3469850000000006e-07 - syst_laltpar-mujet-fake: 2.55705e-08 - syst_jetrec-eff: 2.8127549999999997e-07 - syst_c/tautag-eff: 1.035763080565574e-06 - syst_dibos-xsec: 5.625509999999999e-07 - syst_elen-res: 2.6573643104963986e-07 - syst_flavcomp-jes: 1.1622657226474515e-05 - syst_detNP2-jes: 1.3522781898232653e-06 - syst_detNP3-jes: 1.037024860330594e-06 - syst_jetvxfrac: 1.2104870523183014e-06 - syst_ltrig-eff: 3.835575e-07 - syst_btag-jes: 1.4789362460733128e-05 - syst_mup-scale: 2.3013449999999998e-07 + syst_lighttag-eff: 9.71679000e-07 + syst_laltfakecr-ejet-fake: 4.34698500e-07 + syst_laltpar-mujet-fake: 2.55705000e-08 + syst_jetrec-eff: 2.81275500e-07 + syst_c/tautag-eff: 1.03576308e-06 + syst_dibos-xsec: 5.62551000e-07 + syst_elen-res: 2.65736431e-07 + syst_flavcomp-jes: 1.16226572e-05 + syst_detNP2-jes: 1.35227819e-06 + syst_detNP3-jes: 1.03702486e-06 + syst_jetvxfrac: 1.21048705e-06 + syst_ltrig-eff: 3.83557500e-07 + syst_btag-jes: 1.47893625e-05 + syst_mup-scale: 2.30134500e-07 syst_singlephpt-jes: 0.0 - syst_etmsoft-res: 1.0186563190236194e-06 - syst_detNP1-jes: 7.2510629842524255e-06 - syst_laltpar-ejet-fake: 3.06846e-07 - syst_statNP1-jes: 4.431449539765571e-06 - syst_muid-res: 2.55705e-08 - syst_pdf: 1.0483905e-06 - syst_isr-fsr: 3.567883624105047e-05 - syst_zjet-xsec: 2.6849025e-06 - syst_ps-model: 1.3501224e-05 - syst_flavres-jes: 9.792091015106742e-06 - syst_laltfakecr-mujet-fake: 1.329666e-06 + syst_etmsoft-res: 1.01865632e-06 + syst_detNP1-jes: 7.25106298e-06 + syst_laltpar-ejet-fake: 3.06846000e-07 + syst_statNP1-jes: 4.43144954e-06 + syst_muid-res: 2.55705000e-08 + syst_pdf: 1.04839050e-06 + syst_isr-fsr: 3.56788362e-05 + syst_zjet-xsec: 2.68490250e-06 + syst_ps-model: 1.35012240e-05 + syst_flavres-jes: 9.79209102e-06 + syst_laltfakecr-mujet-fake: 1.32966600e-06 syst_mums-res: 0.0 - syst_mod-NP2-jes: 5.32087637159754e-07 - syst_lid-eff: 3.06846e-07 - syst_mixNP2-jes: 1.9174039041365767e-06 - syst_mixNP1-jes: 7.696805451358424e-06 - syst_btag-eff: 3.632631303970374e-06 - syst_pileoffrho-jes: 1.766310398168001e-05 - syst_modNP4-jes: 7.307751853865096e-07 - syst_mcstat: 2.8383255e-06 - syst_modNP3-jes: 5.727906152880344e-06 - syst_mod-NP1-jes: 2.92807654818672e-05 -- ArtUnc_1: 2.4369672756894332e-08 - ArtUnc_2: 2.861213571368313e-08 - ArtUnc_3: -9.591817581806466e-09 - ArtUnc_4: 2.06171848978103e-08 - ArtUnc_5: 3.766210620149275e-08 - ArtUnc_6: -1.1574866965666763e-07 - ArtUnc_7: -9.016018766921882e-09 - ArtUnc_8: -2.9010437450993614e-07 - ArtUnc_9: -3.802616075016891e-06 - ArtUnc_10: 2.7292540434075216e-06 - ArtUnc_11: 1.4780966704227483e-06 - ArtUnc_12: 1.711833010364242e-06 - ArtUnc_13: -6.06996872044359e-07 - ArtUnc_14: 4.037559316338005e-06 - ArtUnc_15: -2.6913507762255504e-06 - ArtUnc_16: 5.994399004903177e-07 - ArtUnc_17: -4.156857226176578e-06 - ArtUnc_18: 7.924057840266641e-07 - ArtUnc_19: -7.778338317672719e-08 - ArtUnc_20: -1.752825476144155e-08 + syst_mod-NP2-jes: 5.32087637e-07 + syst_lid-eff: 3.06846000e-07 + syst_mixNP2-jes: 1.91740390e-06 + syst_mixNP1-jes: 7.69680545e-06 + syst_btag-eff: 3.63263130e-06 + syst_pileoffrho-jes: 1.76631040e-05 + syst_modNP4-jes: 7.30775185e-07 + syst_mcstat: 2.83832550e-06 + syst_modNP3-jes: 5.72790615e-06 + syst_mod-NP1-jes: 2.92807655e-05 +- ArtUnc_1: 2.43696728e-08 + ArtUnc_2: 2.86121357e-08 + ArtUnc_3: -9.59181758e-09 + ArtUnc_4: 2.06171849e-08 + ArtUnc_5: 3.76621062e-08 + ArtUnc_6: -1.15748670e-07 + ArtUnc_7: -9.01601877e-09 + ArtUnc_8: -2.90104375e-07 + ArtUnc_9: -3.80261608e-06 + ArtUnc_10: 2.72925404e-06 + ArtUnc_11: 1.47809667e-06 + ArtUnc_12: 1.71183301e-06 + ArtUnc_13: -6.06996872e-07 + ArtUnc_14: 4.03755932e-06 + ArtUnc_15: -2.69135078e-06 + ArtUnc_16: 5.99439900e-07 + ArtUnc_17: -4.15685723e-06 + ArtUnc_18: 7.92405784e-07 + ArtUnc_19: -7.77833832e-08 + ArtUnc_20: -1.75282548e-08 ArtUnc_21: 0.0 - ArtUnc_22: 1.5503068333941933e-07 + ArtUnc_22: 1.55030683e-07 ArtUnc_23: 0.0 ArtUnc_24: 0.0 - ArtUnc_25: -3.3825933354841384e-10 - syst_singletop-xsec: 5.069814483720681e-07 - syst_wjet-scale: 1.2206841648843775e-06 - syst_laltrealcr-mujet-fake: 3.4178158000000007e-06 - syst_eta-jes: 7.114710150070321e-06 - syst_statNP3-jes: 6.195679140252326e-06 - syst_laltrealcr-ejet-fake: 1.583544e-07 - syst_pileoffmu-jes: 1.0855228129117647e-06 - syst_lstat-ejet-fake: 9.640228287248546e-07 - syst_lstat-mujet-fake: 1.337641715995356e-07 - syst_etmsoft-scale: 8.750135436260802e-07 - syst_hardscat-model: 5.885505200000001e-06 - syst_statNP2-jes: 1.1124013073934425e-06 - syst_elen-scale: 2.0514043618548345e-06 - syst_punch-jes: 8.753368811697586e-08 - syst_pileoffnpv-jes: 1.8583112617417003e-06 - syst_lrec-eff: 2.375316e-07 - syst_pileoffpt-jes: 3.045864773966665e-07 + ArtUnc_25: -3.38259334e-10 + syst_singletop-xsec: 5.06981448e-07 + syst_wjet-scale: 1.22068416e-06 + syst_laltrealcr-mujet-fake: 3.41781580e-06 + syst_eta-jes: 7.11471015e-06 + syst_statNP3-jes: 6.19567914e-06 + syst_laltrealcr-ejet-fake: 1.58354400e-07 + syst_pileoffmu-jes: 1.08552281e-06 + syst_lstat-ejet-fake: 9.64022829e-07 + syst_lstat-mujet-fake: 1.33764172e-07 + syst_etmsoft-scale: 8.75013544e-07 + syst_hardscat-model: 5.88550520e-06 + syst_statNP2-jes: 1.11240131e-06 + syst_elen-scale: 2.05140436e-06 + syst_punch-jes: 8.75336881e-08 + syst_pileoffnpv-jes: 1.85831126e-06 + syst_lrec-eff: 2.37531600e-07 + syst_pileoffpt-jes: 3.04586477e-07 syst_jeten-res: 0.0 - syst_lighttag-eff: 8.116199413166917e-07 - syst_laltfakecr-ejet-fake: 1.1348732000000001e-06 - syst_laltpar-mujet-fake: 1.2008542e-06 - syst_jetrec-eff: 5.542404e-07 - syst_c/tautag-eff: 6.0111551798552e-08 - syst_dibos-xsec: 2.6392400000000004e-08 - syst_elen-res: 2.8078772526182484e-07 - syst_flavcomp-jes: 3.696326052456406e-06 - syst_detNP2-jes: 2.8016685612118726e-07 - syst_detNP3-jes: 1.0703574401669567e-06 - syst_jetvxfrac: 4.345874515555583e-06 - syst_ltrig-eff: 1.652162131979486e-07 - syst_btag-jes: 1.1255645007949649e-05 - syst_mup-scale: 1.257106887676223e-07 + syst_lighttag-eff: 8.11619941e-07 + syst_laltfakecr-ejet-fake: 1.13487320e-06 + syst_laltpar-mujet-fake: 1.20085420e-06 + syst_jetrec-eff: 5.54240400e-07 + syst_c/tautag-eff: 6.01115518e-08 + syst_dibos-xsec: 2.63924000e-08 + syst_elen-res: 2.80787725e-07 + syst_flavcomp-jes: 3.69632605e-06 + syst_detNP2-jes: 2.80166856e-07 + syst_detNP3-jes: 1.07035744e-06 + syst_jetvxfrac: 4.34587452e-06 + syst_ltrig-eff: 1.65216213e-07 + syst_btag-jes: 1.12556450e-05 + syst_mup-scale: 1.25710689e-07 syst_singlephpt-jes: 0.0 - syst_etmsoft-res: 1.1085397100417605e-06 - syst_detNP1-jes: 1.014830679613377e-05 - syst_laltpar-ejet-fake: 5.014556e-07 - syst_statNP1-jes: 6.158540853889987e-07 - syst_muid-res: 1.0556960000000002e-07 - syst_pdf: 3.496993e-06 - syst_isr-fsr: 7.1883657486213126e-06 - syst_zjet-xsec: 3.0351260000000006e-07 - syst_ps-model: 2.2367559000000004e-05 - syst_flavres-jes: 6.0287536912292135e-06 - syst_laltfakecr-mujet-fake: 6.993986e-07 - syst_mums-res: 3.95886e-08 - syst_mod-NP2-jes: 6.928633361980342e-07 - syst_lid-eff: 4.6855802177022863e-07 - syst_mixNP2-jes: 2.285648886684042e-07 - syst_mixNP1-jes: 8.366578125663118e-06 - syst_btag-eff: 4.711985891436859e-08 - syst_pileoffrho-jes: 9.181426257542008e-06 - syst_modNP4-jes: 1.4666791214909007e-06 - syst_mcstat: 2.045411e-06 - syst_modNP3-jes: 5.906958007327018e-06 - syst_mod-NP1-jes: 1.5805096783102236e-05 -- ArtUnc_1: 8.110562962572771e-08 - ArtUnc_2: -4.910414281981282e-09 - ArtUnc_3: -4.0798754361998537e-08 - ArtUnc_4: -3.366981621278727e-08 - ArtUnc_5: -6.401410514393319e-08 - ArtUnc_6: -2.3095899706319447e-07 - ArtUnc_7: 3.690902168353629e-08 - ArtUnc_8: -4.1401847840178974e-07 - ArtUnc_9: -1.4302940850469586e-06 - ArtUnc_10: 9.126111179912581e-07 - ArtUnc_11: -5.906249842618173e-07 - ArtUnc_12: 2.0148021709330837e-06 - ArtUnc_13: -9.505893634213031e-07 - ArtUnc_14: 1.3707024807989771e-06 - ArtUnc_15: 2.1619048967971067e-06 - ArtUnc_16: 1.2525137969741522e-06 - ArtUnc_17: 2.2678060580581055e-07 - ArtUnc_18: -1.1925962032917272e-06 - ArtUnc_19: -2.497966255967949e-06 - ArtUnc_20: -1.4994047606562047e-07 + syst_etmsoft-res: 1.10853971e-06 + syst_detNP1-jes: 1.01483068e-05 + syst_laltpar-ejet-fake: 5.01455600e-07 + syst_statNP1-jes: 6.15854085e-07 + syst_muid-res: 1.05569600e-07 + syst_pdf: 3.49699300e-06 + syst_isr-fsr: 7.18836575e-06 + syst_zjet-xsec: 3.03512600e-07 + syst_ps-model: 2.23675590e-05 + syst_flavres-jes: 6.02875369e-06 + syst_laltfakecr-mujet-fake: 6.99398600e-07 + syst_mums-res: 3.95886000e-08 + syst_mod-NP2-jes: 6.92863336e-07 + syst_lid-eff: 4.68558022e-07 + syst_mixNP2-jes: 2.28564889e-07 + syst_mixNP1-jes: 8.36657813e-06 + syst_btag-eff: 4.71198589e-08 + syst_pileoffrho-jes: 9.18142626e-06 + syst_modNP4-jes: 1.46667912e-06 + syst_mcstat: 2.04541100e-06 + syst_modNP3-jes: 5.90695801e-06 + syst_mod-NP1-jes: 1.58050968e-05 +- ArtUnc_1: 8.11056296e-08 + ArtUnc_2: -4.91041428e-09 + ArtUnc_3: -4.07987544e-08 + ArtUnc_4: -3.36698162e-08 + ArtUnc_5: -6.40141051e-08 + ArtUnc_6: -2.30958997e-07 + ArtUnc_7: 3.69090217e-08 + ArtUnc_8: -4.14018478e-07 + ArtUnc_9: -1.43029409e-06 + ArtUnc_10: 9.12611118e-07 + ArtUnc_11: -5.90624984e-07 + ArtUnc_12: 2.01480217e-06 + ArtUnc_13: -9.50589363e-07 + ArtUnc_14: 1.37070248e-06 + ArtUnc_15: 2.16190490e-06 + ArtUnc_16: 1.25251380e-06 + ArtUnc_17: 2.26780606e-07 + ArtUnc_18: -1.19259620e-06 + ArtUnc_19: -2.49796626e-06 + ArtUnc_20: -1.49940476e-07 ArtUnc_21: 0.0 - ArtUnc_22: 1.8159759211118513e-07 + ArtUnc_22: 1.81597592e-07 ArtUnc_23: 0.0 ArtUnc_24: 0.0 - ArtUnc_25: -5.55223147075849e-10 - syst_singletop-xsec: 9.199410832139046e-07 - syst_wjet-scale: 1.670686016055413e-06 + ArtUnc_25: -5.55223147e-10 + syst_singletop-xsec: 9.19941083e-07 + syst_wjet-scale: 1.67068602e-06 syst_laltrealcr-mujet-fake: 2.79271944e-06 - syst_eta-jes: 4.211250890927899e-06 - syst_statNP3-jes: 2.7845428535095734e-06 - syst_laltrealcr-ejet-fake: 1.662333e-07 - syst_pileoffmu-jes: 4.087953667786761e-07 - syst_lstat-ejet-fake: 1.6027798364047732e-06 - syst_lstat-mujet-fake: 2.543333273336915e-07 - syst_etmsoft-scale: 3.6016149386159326e-07 - syst_hardscat-model: 1.0943692250000002e-05 - syst_statNP2-jes: 7.009613657247369e-07 - syst_elen-scale: 1.119948668560893e-06 - syst_punch-jes: 1.1894041340011426e-07 - syst_pileoffnpv-jes: 5.203040328337132e-07 - syst_lrec-eff: 2.0502107e-07 - syst_pileoffpt-jes: 2.1417662488693163e-07 + syst_eta-jes: 4.21125089e-06 + syst_statNP3-jes: 2.78454285e-06 + syst_laltrealcr-ejet-fake: 1.66233300e-07 + syst_pileoffmu-jes: 4.08795367e-07 + syst_lstat-ejet-fake: 1.60277984e-06 + syst_lstat-mujet-fake: 2.54333327e-07 + syst_etmsoft-scale: 3.60161494e-07 + syst_hardscat-model: 1.09436923e-05 + syst_statNP2-jes: 7.00961366e-07 + syst_elen-scale: 1.11994867e-06 + syst_punch-jes: 1.18940413e-07 + syst_pileoffnpv-jes: 5.20304033e-07 + syst_lrec-eff: 2.05021070e-07 + syst_pileoffpt-jes: 2.14176625e-07 syst_jeten-res: 0.0 - syst_lighttag-eff: 1.2218210374214902e-06 - syst_laltfakecr-ejet-fake: 5.984398800000001e-07 - syst_laltpar-mujet-fake: 9.5861203e-07 - syst_jetrec-eff: 3.5463104e-07 - syst_c/tautag-eff: 4.932210457333793e-07 - syst_dibos-xsec: 1.7177441000000002e-07 - syst_elen-res: 1.151698086039358e-07 - syst_flavcomp-jes: 1.5483883098343e-06 - syst_detNP2-jes: 7.148461430505451e-07 - syst_detNP3-jes: 6.255321750390482e-07 - syst_jetvxfrac: 3.303183668997555e-06 - syst_ltrig-eff: 2.7705550000000002e-08 - syst_btag-jes: 4.8235378463581526e-06 - syst_mup-scale: 6.384311027245834e-08 + syst_lighttag-eff: 1.22182104e-06 + syst_laltfakecr-ejet-fake: 5.98439880e-07 + syst_laltpar-mujet-fake: 9.58612030e-07 + syst_jetrec-eff: 3.54631040e-07 + syst_c/tautag-eff: 4.93221046e-07 + syst_dibos-xsec: 1.71774410e-07 + syst_elen-res: 1.15169809e-07 + syst_flavcomp-jes: 1.54838831e-06 + syst_detNP2-jes: 7.14846143e-07 + syst_detNP3-jes: 6.25532175e-07 + syst_jetvxfrac: 3.30318367e-06 + syst_ltrig-eff: 2.77055500e-08 + syst_btag-jes: 4.82353785e-06 + syst_mup-scale: 6.38431103e-08 syst_singlephpt-jes: 0.0 - syst_etmsoft-res: 4.606792344157432e-07 - syst_detNP1-jes: 6.467436802190622e-06 - syst_laltpar-ejet-fake: 3.0476105000000003e-07 - syst_statNP1-jes: 2.0664161761826284e-06 - syst_muid-res: 3.3246660000000004e-08 - syst_pdf: 2.7428494500000003e-06 - syst_isr-fsr: 1.538797349333178e-05 + syst_etmsoft-res: 4.60679234e-07 + syst_detNP1-jes: 6.46743680e-06 + syst_laltpar-ejet-fake: 3.04761050e-07 + syst_statNP1-jes: 2.06641618e-06 + syst_muid-res: 3.32466600e-08 + syst_pdf: 2.74284945e-06 + syst_isr-fsr: 1.53879735e-05 syst_zjet-xsec: 1.13592755e-06 - syst_ps-model: 2.5167721620000003e-05 - syst_flavres-jes: 1.5972123421737275e-06 - syst_laltfakecr-mujet-fake: 9.973998e-08 - syst_mums-res: 3.878777e-08 - syst_mod-NP2-jes: 7.929984719767374e-07 - syst_lid-eff: 2.9093466004154897e-07 - syst_mixNP2-jes: 5.995355549930186e-07 - syst_mixNP1-jes: 4.698920088582462e-06 - syst_btag-eff: 2.017938065912141e-06 - syst_pileoffrho-jes: 1.6038809658105564e-06 - syst_modNP4-jes: 1.114755105841271e-06 + syst_ps-model: 2.51677216e-05 + syst_flavres-jes: 1.59721234e-06 + syst_laltfakecr-mujet-fake: 9.97399800e-08 + syst_mums-res: 3.87877700e-08 + syst_mod-NP2-jes: 7.92998472e-07 + syst_lid-eff: 2.90934660e-07 + syst_mixNP2-jes: 5.99535555e-07 + syst_mixNP1-jes: 4.69892009e-06 + syst_btag-eff: 2.01793807e-06 + syst_pileoffrho-jes: 1.60388097e-06 + syst_modNP4-jes: 1.11475511e-06 syst_mcstat: 1.20242087e-06 - syst_modNP3-jes: 3.0562260820316015e-06 - syst_mod-NP1-jes: 3.6027954627442204e-06 -- ArtUnc_1: 3.16576191151217e-08 - ArtUnc_2: -1.4652075299943979e-08 - ArtUnc_3: -3.267382665125685e-08 - ArtUnc_4: -9.74612803343056e-09 - ArtUnc_5: -7.120885733239983e-08 - ArtUnc_6: -9.957767066597194e-08 - ArtUnc_7: 1.6693442867684759e-09 - ArtUnc_8: -1.9258831690171711e-07 - ArtUnc_9: -2.919210592780943e-07 - ArtUnc_10: 1.7096410336743071e-07 - ArtUnc_11: -3.060474386071958e-07 - ArtUnc_12: 4.739485542845707e-07 - ArtUnc_13: -2.663307499610659e-07 - ArtUnc_14: -1.223223318033336e-07 - ArtUnc_15: 8.557260779331113e-07 - ArtUnc_16: -9.717608108865147e-08 - ArtUnc_17: 1.0507654765350272e-06 - ArtUnc_18: 1.778450242941536e-07 - ArtUnc_19: 1.0340946728291075e-06 - ArtUnc_20: 1.794413818505148e-07 + syst_modNP3-jes: 3.05622608e-06 + syst_mod-NP1-jes: 3.60279546e-06 +- ArtUnc_1: 3.16576191e-08 + ArtUnc_2: -1.46520753e-08 + ArtUnc_3: -3.26738267e-08 + ArtUnc_4: -9.74612803e-09 + ArtUnc_5: -7.12088573e-08 + ArtUnc_6: -9.95776707e-08 + ArtUnc_7: 1.66934429e-09 + ArtUnc_8: -1.92588317e-07 + ArtUnc_9: -2.91921059e-07 + ArtUnc_10: 1.70964103e-07 + ArtUnc_11: -3.06047439e-07 + ArtUnc_12: 4.73948554e-07 + ArtUnc_13: -2.66330750e-07 + ArtUnc_14: -1.22322332e-07 + ArtUnc_15: 8.55726078e-07 + ArtUnc_16: -9.71760811e-08 + ArtUnc_17: 1.05076548e-06 + ArtUnc_18: 1.77845024e-07 + ArtUnc_19: 1.03409467e-06 + ArtUnc_20: 1.79441382e-07 ArtUnc_21: 0.0 - ArtUnc_22: 7.349983853849243e-07 + ArtUnc_22: 7.34998385e-07 ArtUnc_23: 0.0 ArtUnc_24: 0.0 - ArtUnc_25: -1.1901120822901483e-09 - syst_singletop-xsec: 5.447338649155137e-07 - syst_wjet-scale: 1.0398893287434434e-06 + ArtUnc_25: -1.19011208e-09 + syst_singletop-xsec: 5.44733865e-07 + syst_wjet-scale: 1.03988933e-06 syst_laltrealcr-mujet-fake: 1.12509096e-06 - syst_eta-jes: 1.4577136282684484e-06 - syst_statNP3-jes: 6.854781588846228e-07 - syst_laltrealcr-ejet-fake: 1.1777430000000001e-07 - syst_pileoffmu-jes: 1.392973129001231e-07 - syst_lstat-ejet-fake: 1.6139293592222392e-06 - syst_lstat-mujet-fake: 2.3518970587922594e-07 - syst_etmsoft-scale: 8.982523960839235e-08 - syst_hardscat-model: 1.043618856e-05 - syst_statNP2-jes: 2.5767597397198266e-07 - syst_elen-scale: 4.884650989883968e-07 - syst_punch-jes: 9.014792613688459e-08 - syst_pileoffnpv-jes: 4.1478801656554005e-07 - syst_lrec-eff: 8.729154e-08 - syst_pileoffpt-jes: 9.894050254422402e-08 + syst_eta-jes: 1.45771363e-06 + syst_statNP3-jes: 6.85478159e-07 + syst_laltrealcr-ejet-fake: 1.17774300e-07 + syst_pileoffmu-jes: 1.39297313e-07 + syst_lstat-ejet-fake: 1.61392936e-06 + syst_lstat-mujet-fake: 2.35189706e-07 + syst_etmsoft-scale: 8.98252396e-08 + syst_hardscat-model: 1.04361886e-05 + syst_statNP2-jes: 2.57675974e-07 + syst_elen-scale: 4.88465099e-07 + syst_punch-jes: 9.01479261e-08 + syst_pileoffnpv-jes: 4.14788017e-07 + syst_lrec-eff: 8.72915400e-08 + syst_pileoffpt-jes: 9.89405025e-08 syst_jeten-res: 0.0 - syst_lighttag-eff: 6.893323164137282e-07 - syst_laltfakecr-ejet-fake: 2.5217556e-07 - syst_laltpar-mujet-fake: 4.2121632e-07 - syst_jetrec-eff: 1.0391849999999999e-07 - syst_c/tautag-eff: 3.776023280205082e-07 - syst_dibos-xsec: 1.4410032e-07 - syst_elen-res: 4.6178494165101356e-08 - syst_flavcomp-jes: 1.393915516883457e-06 - syst_detNP2-jes: 3.5966611704271554e-07 - syst_detNP3-jes: 2.0912161934925715e-07 - syst_jetvxfrac: 1.3172375741229407e-06 - syst_ltrig-eff: 5.7509916261746544e-08 - syst_btag-jes: 1.055229019032271e-06 - syst_mup-scale: 3.138269879046734e-08 + syst_lighttag-eff: 6.89332316e-07 + syst_laltfakecr-ejet-fake: 2.52175560e-07 + syst_laltpar-mujet-fake: 4.21216320e-07 + syst_jetrec-eff: 1.03918500e-07 + syst_c/tautag-eff: 3.77602328e-07 + syst_dibos-xsec: 1.44100320e-07 + syst_elen-res: 4.61784942e-08 + syst_flavcomp-jes: 1.39391552e-06 + syst_detNP2-jes: 3.59666117e-07 + syst_detNP3-jes: 2.09121619e-07 + syst_jetvxfrac: 1.31723757e-06 + syst_ltrig-eff: 5.75099163e-08 + syst_btag-jes: 1.05522902e-06 + syst_mup-scale: 3.13826988e-08 syst_singlephpt-jes: 0.0 - syst_etmsoft-res: 4.1492279871883397e-08 - syst_detNP1-jes: 2.3825936482361216e-06 - syst_laltpar-ejet-fake: 3.6994986e-07 - syst_statNP1-jes: 1.1111977988139539e-06 - syst_muid-res: 8.31348e-09 + syst_etmsoft-res: 4.14922799e-08 + syst_detNP1-jes: 2.38259365e-06 + syst_laltpar-ejet-fake: 3.69949860e-07 + syst_statNP1-jes: 1.11119780e-06 + syst_muid-res: 8.31348000e-09 syst_pdf: 1.69317876e-06 - syst_isr-fsr: 8.883929672886813e-06 - syst_zjet-xsec: 8.964702599999999e-07 + syst_isr-fsr: 8.88392967e-06 + syst_zjet-xsec: 8.96470260e-07 syst_ps-model: 1.15488093e-05 - syst_flavres-jes: 6.930670605989582e-08 - syst_laltfakecr-mujet-fake: 9.283386e-08 - syst_mums-res: 1.1084639999999999e-08 - syst_mod-NP2-jes: 3.8347475389449915e-07 - syst_lid-eff: 9.839569327600268e-08 - syst_mixNP2-jes: 4.213097451326456e-07 - syst_mixNP1-jes: 1.4860736299476734e-06 - syst_btag-eff: 1.3597637665432627e-06 - syst_pileoffrho-jes: 4.3834066625254057e-07 - syst_modNP4-jes: 4.2582414980957053e-07 - syst_mcstat: 4.9465206e-07 - syst_modNP3-jes: 8.59239483086014e-07 - syst_mod-NP1-jes: 1.4707231714172012e-07 -- ArtUnc_1: 1.4686244725180736e-08 - ArtUnc_2: -9.726225897816575e-09 - ArtUnc_3: -1.1433168508008663e-08 - ArtUnc_4: -2.38499373260201e-09 - ArtUnc_5: -1.79874614731946e-08 - ArtUnc_6: -2.0965219616032547e-08 - ArtUnc_7: 8.820126172879004e-10 - ArtUnc_8: -3.8525816456839376e-08 - ArtUnc_9: -3.677644034614691e-08 - ArtUnc_10: 2.965000668355147e-08 - ArtUnc_11: -4.848185828940001e-08 - ArtUnc_12: 5.8375416369990554e-08 - ArtUnc_13: -3.797177665268485e-08 - ArtUnc_14: -4.352301089009654e-08 - ArtUnc_15: 9.446057461777611e-08 - ArtUnc_16: -7.776891003103695e-08 - ArtUnc_17: 1.3877224486766533e-07 - ArtUnc_18: 1.2914439438171038e-07 - ArtUnc_19: 2.8211276856917317e-07 - ArtUnc_20: -5.843908588579704e-08 + syst_flavres-jes: 6.93067061e-08 + syst_laltfakecr-mujet-fake: 9.28338600e-08 + syst_mums-res: 1.10846400e-08 + syst_mod-NP2-jes: 3.83474754e-07 + syst_lid-eff: 9.83956933e-08 + syst_mixNP2-jes: 4.21309745e-07 + syst_mixNP1-jes: 1.48607363e-06 + syst_btag-eff: 1.35976377e-06 + syst_pileoffrho-jes: 4.38340666e-07 + syst_modNP4-jes: 4.25824150e-07 + syst_mcstat: 4.94652060e-07 + syst_modNP3-jes: 8.59239483e-07 + syst_mod-NP1-jes: 1.47072317e-07 +- ArtUnc_1: 1.46862447e-08 + ArtUnc_2: -9.72622590e-09 + ArtUnc_3: -1.14331685e-08 + ArtUnc_4: -2.38499373e-09 + ArtUnc_5: -1.79874615e-08 + ArtUnc_6: -2.09652196e-08 + ArtUnc_7: 8.82012617e-10 + ArtUnc_8: -3.85258165e-08 + ArtUnc_9: -3.67764403e-08 + ArtUnc_10: 2.96500067e-08 + ArtUnc_11: -4.84818583e-08 + ArtUnc_12: 5.83754164e-08 + ArtUnc_13: -3.79717767e-08 + ArtUnc_14: -4.35230109e-08 + ArtUnc_15: 9.44605746e-08 + ArtUnc_16: -7.77689100e-08 + ArtUnc_17: 1.38772245e-07 + ArtUnc_18: 1.29144394e-07 + ArtUnc_19: 2.82112769e-07 + ArtUnc_20: -5.84390859e-08 ArtUnc_21: 0.0 - ArtUnc_22: -6.052038991002851e-07 + ArtUnc_22: -6.05203899e-07 ArtUnc_23: 0.0 ArtUnc_24: 0.0 - ArtUnc_25: -1.7849675711024787e-09 - syst_singletop-xsec: 1.478956903429531e-07 - syst_wjet-scale: 3.053465985460292e-07 - syst_laltrealcr-mujet-fake: 2.5355106e-07 - syst_eta-jes: 2.422688429612099e-07 - syst_statNP3-jes: 6.927227285809743e-08 - syst_laltrealcr-ejet-fake: 3.6996750000000003e-08 - syst_pileoffmu-jes: 3.4788119002741444e-08 - syst_lstat-ejet-fake: 5.681782230056583e-07 - syst_lstat-mujet-fake: 7.26242841435804e-08 - syst_etmsoft-scale: 1.0550141970944043e-08 - syst_hardscat-model: 4.786228440000001e-06 - syst_statNP2-jes: 4.8822351695741535e-08 - syst_elen-scale: 8.155728e-08 - syst_punch-jes: 2.549288166557628e-08 - syst_pileoffnpv-jes: 8.232685962582733e-08 - syst_lrec-eff: 1.7594010000000002e-08 - syst_pileoffpt-jes: 2.150201259859179e-08 + ArtUnc_25: -1.78496757e-09 + syst_singletop-xsec: 1.47895690e-07 + syst_wjet-scale: 3.05346599e-07 + syst_laltrealcr-mujet-fake: 2.53551060e-07 + syst_eta-jes: 2.42268843e-07 + syst_statNP3-jes: 6.92722729e-08 + syst_laltrealcr-ejet-fake: 3.69967500e-08 + syst_pileoffmu-jes: 3.47881190e-08 + syst_lstat-ejet-fake: 5.68178223e-07 + syst_lstat-mujet-fake: 7.26242841e-08 + syst_etmsoft-scale: 1.05501420e-08 + syst_hardscat-model: 4.78622844e-06 + syst_statNP2-jes: 4.88223517e-08 + syst_elen-scale: 8.15572800e-08 + syst_punch-jes: 2.54928817e-08 + syst_pileoffnpv-jes: 8.23268596e-08 + syst_lrec-eff: 1.75940100e-08 + syst_pileoffpt-jes: 2.15020126e-08 syst_jeten-res: 0.0 - syst_lighttag-eff: 1.5933538502330768e-07 - syst_laltfakecr-ejet-fake: 9.915129e-08 - syst_laltpar-mujet-fake: 5.9030370000000005e-08 - syst_jetrec-eff: 1.7922870000000003e-08 - syst_c/tautag-eff: 8.164355183273862e-08 - syst_dibos-xsec: 3.041955e-08 - syst_elen-res: 2.766140749618501e-09 - syst_flavcomp-jes: 2.848429769756696e-07 - syst_detNP2-jes: 7.586961278394072e-08 - syst_detNP3-jes: 3.6413356702189656e-08 - syst_jetvxfrac: 2.1004469955249314e-07 - syst_ltrig-eff: 2.1132133928382034e-08 - syst_btag-jes: 1.2077433869874546e-07 - syst_mup-scale: 2.833735307910744e-09 + syst_lighttag-eff: 1.59335385e-07 + syst_laltfakecr-ejet-fake: 9.91512900e-08 + syst_laltpar-mujet-fake: 5.90303700e-08 + syst_jetrec-eff: 1.79228700e-08 + syst_c/tautag-eff: 8.16435518e-08 + syst_dibos-xsec: 3.04195500e-08 + syst_elen-res: 2.76614075e-09 + syst_flavcomp-jes: 2.84842977e-07 + syst_detNP2-jes: 7.58696128e-08 + syst_detNP3-jes: 3.64133567e-08 + syst_jetvxfrac: 2.10044700e-07 + syst_ltrig-eff: 2.11321339e-08 + syst_btag-jes: 1.20774339e-07 + syst_mup-scale: 2.83373531e-09 syst_singlephpt-jes: 0.0 - syst_etmsoft-res: 1.9793677443054263e-08 - syst_detNP1-jes: 4.4852226536568096e-07 - syst_laltpar-ejet-fake: 8.698347000000002e-08 - syst_statNP1-jes: 2.2494216314967367e-07 - syst_muid-res: 5.919480000000001e-09 - syst_pdf: 4.717496700000001e-07 - syst_isr-fsr: 2.293724338808399e-06 - syst_zjet-xsec: 3.2359824000000003e-07 + syst_etmsoft-res: 1.97936774e-08 + syst_detNP1-jes: 4.48522265e-07 + syst_laltpar-ejet-fake: 8.69834700e-08 + syst_statNP1-jes: 2.24942163e-07 + syst_muid-res: 5.91948000e-09 + syst_pdf: 4.71749670e-07 + syst_isr-fsr: 2.29372434e-06 + syst_zjet-xsec: 3.23598240e-07 syst_ps-model: 2.28853674e-06 - syst_flavres-jes: 3.4591613190093856e-08 - syst_laltfakecr-mujet-fake: 5.985252e-08 - syst_mums-res: 1.0030230000000002e-08 - syst_mod-NP2-jes: 1.0954108287504865e-07 - syst_lid-eff: 1.4391852578895987e-08 - syst_mixNP2-jes: 9.723264648490087e-08 - syst_mixNP1-jes: 2.676181474028489e-07 - syst_btag-eff: 3.016453000471986e-07 - syst_pileoffrho-jes: 1.7133817059280657e-07 - syst_modNP4-jes: 7.752499597510262e-08 - syst_mcstat: 1.6870518000000005e-07 - syst_modNP3-jes: 1.108900547248872e-07 - syst_mod-NP1-jes: 1.761144899389363e-07 + syst_flavres-jes: 3.45916132e-08 + syst_laltfakecr-mujet-fake: 5.98525200e-08 + syst_mums-res: 1.00302300e-08 + syst_mod-NP2-jes: 1.09541083e-07 + syst_lid-eff: 1.43918526e-08 + syst_mixNP2-jes: 9.72326465e-08 + syst_mixNP1-jes: 2.67618147e-07 + syst_btag-eff: 3.01645300e-07 + syst_pileoffrho-jes: 1.71338171e-07 + syst_modNP4-jes: 7.75249960e-08 + syst_mcstat: 1.68705180e-07 + syst_modNP3-jes: 1.10890055e-07 + syst_mod-NP1-jes: 1.76114490e-07 diff --git a/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_8TEV_LJ_DIF/uncertainties_dSig_dpTt.yaml b/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_8TEV_LJ_DIF/uncertainties_dSig_dpTt.yaml index a78f526daa..4459ab0cb1 100644 --- a/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_8TEV_LJ_DIF/uncertainties_dSig_dpTt.yaml +++ b/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_8TEV_LJ_DIF/uncertainties_dSig_dpTt.yaml @@ -324,651 +324,651 @@ definitions: treatment: MULT type: ATLASLUMI8 bins: -- ArtUnc_1: -0.0013989646571769205 - ArtUnc_2: 0.0020398763958410526 - ArtUnc_3: 0.0014045484831293144 - ArtUnc_4: -0.00016922155708307655 - ArtUnc_5: 0.0005810319677123412 - ArtUnc_6: 0.0004032291932710058 - ArtUnc_7: -4.9692482100723354e-05 - ArtUnc_8: 0.0007418590510772554 - ArtUnc_9: 0.00027887663368588226 - ArtUnc_10: -0.004463155449484143 - ArtUnc_11: -0.0030712740096292997 - ArtUnc_12: 0.0020644582350437383 - ArtUnc_13: 0.0030436467916958357 - ArtUnc_14: -0.0007274154046221086 - ArtUnc_15: 0.0009041664854508609 - ArtUnc_16: 4.416212828259238e-05 - ArtUnc_17: 0.0003541516366876692 - ArtUnc_18: -2.5838218978417604e-06 - ArtUnc_19: -0.00015664977371275199 - ArtUnc_20: 1.68320590418798e-05 - ArtUnc_21: 4.941090406532072e-05 - ArtUnc_22: 2.6496427244070777e-06 - ArtUnc_23: 1.495347132432585e-05 - ArtUnc_24: -6.1240207398808746e-06 - ArtUnc_25: -5.608533743091472e-07 - syst_singletop-xsec: 0.0027208277951652872 - syst_wjet-scale: 0.005862784 - syst_laltrealcr-mujet-fake: 0.0005216 - syst_eta-jes: 0.001812918330047992 - syst_statNP3-jes: 0.004038447368216651 - syst_laltrealcr-ejet-fake: 0.000166912 - syst_pileoffmu-jes: 0.0017669541635073613 - syst_lstat-ejet-fake: 0.002610961007102174 - syst_lstat-mujet-fake: 0.0003704094575034498 +- ArtUnc_1: -1.39896466e-03 + ArtUnc_2: 2.03987640e-03 + ArtUnc_3: 1.40454848e-03 + ArtUnc_4: -1.69221557e-04 + ArtUnc_5: 5.81031968e-04 + ArtUnc_6: 4.03229193e-04 + ArtUnc_7: -4.96924821e-05 + ArtUnc_8: 7.41859051e-04 + ArtUnc_9: 2.78876634e-04 + ArtUnc_10: -4.46315545e-03 + ArtUnc_11: -3.07127401e-03 + ArtUnc_12: 2.06445824e-03 + ArtUnc_13: 3.04364679e-03 + ArtUnc_14: -7.27415405e-04 + ArtUnc_15: 9.04166485e-04 + ArtUnc_16: 4.41621283e-05 + ArtUnc_17: 3.54151637e-04 + ArtUnc_18: -2.58382190e-06 + ArtUnc_19: -1.56649774e-04 + ArtUnc_20: 1.68320590e-05 + ArtUnc_21: 4.94109041e-05 + ArtUnc_22: 2.64964272e-06 + ArtUnc_23: 1.49534713e-05 + ArtUnc_24: -6.12402074e-06 + ArtUnc_25: -5.60853374e-07 + syst_singletop-xsec: 2.72082780e-03 + syst_wjet-scale: 5.86278400e-03 + syst_laltrealcr-mujet-fake: 5.21600000e-04 + syst_eta-jes: 1.81291833e-03 + syst_statNP3-jes: 4.03844737e-03 + syst_laltrealcr-ejet-fake: 1.66912000e-04 + syst_pileoffmu-jes: 1.76695416e-03 + syst_lstat-ejet-fake: 2.61096101e-03 + syst_lstat-mujet-fake: 3.70409458e-04 syst_etmsoft-scale: 0.0 - syst_hardscat-model: 0.032985983999999996 - syst_statNP2-jes: 0.0016410766173850628 - syst_elen-scale: 0.0018553935944526701 - syst_punch-jes: 0.000165849115813139 - syst_pileoffnpv-jes: 0.0057075244325616335 - syst_lrec-eff: 0.0023159039999999997 - syst_pileoffpt-jes: 0.00040224120031642703 + syst_hardscat-model: 3.29859840e-02 + syst_statNP2-jes: 1.64107662e-03 + syst_elen-scale: 1.85539359e-03 + syst_punch-jes: 1.65849116e-04 + syst_pileoffnpv-jes: 5.70752443e-03 + syst_lrec-eff: 2.31590400e-03 + syst_pileoffpt-jes: 4.02241200e-04 syst_jeten-res: 0.0 - syst_lighttag-eff: 0.0059931885395979306 - syst_laltfakecr-ejet-fake: 0.003672063999999999 - syst_laltpar-mujet-fake: 0.00135616 - syst_jetrec-eff: 0.0009180159999999998 - syst_c/tautag-eff: 0.011626466340062572 - syst_dibos-xsec: 0.0014709119999999998 - syst_elen-res: 0.000500736 - syst_flavcomp-jes: 0.02019186496023307 - syst_detNP2-jes: 0.0023488685269567556 - syst_detNP3-jes: 0.0004317638323342982 - syst_jetvxfrac: 0.010764373328619181 - syst_ltrig-eff: 0.013624192 - syst_btag-jes: 0.0006261807456892938 - syst_mup-scale: 0.0002685606915689636 + syst_lighttag-eff: 5.99318854e-03 + syst_laltfakecr-ejet-fake: 3.67206400e-03 + syst_laltpar-mujet-fake: 1.35616000e-03 + syst_jetrec-eff: 9.18016000e-04 + syst_c/tautag-eff: 1.16264663e-02 + syst_dibos-xsec: 1.47091200e-03 + syst_elen-res: 5.00736000e-04 + syst_flavcomp-jes: 2.01918650e-02 + syst_detNP2-jes: 2.34886853e-03 + syst_detNP3-jes: 4.31763832e-04 + syst_jetvxfrac: 1.07643733e-02 + syst_ltrig-eff: 1.36241920e-02 + syst_btag-jes: 6.26180746e-04 + syst_mup-scale: 2.68560692e-04 syst_singlephpt-jes: 0.0 syst_etmsoft-res: 0.0 - syst_detNP1-jes: 0.004928421724084903 - syst_laltpar-ejet-fake: 0.0014187520000000001 - syst_statNP1-jes: 0.011472386571472913 + syst_detNP1-jes: 4.92842172e-03 + syst_laltpar-ejet-fake: 1.41875200e-03 + syst_statNP1-jes: 1.14723866e-02 syst_muid-res: 0.0 - syst_pdf: 0.002336768 - syst_isr-fsr: 0.05530095076995678 - syst_zjet-xsec: 0.015564543999999998 - syst_ps-model: 0.020467584 - syst_flavres-jes: 0.009243640914365291 - syst_laltfakecr-mujet-fake: 0.003640767999999999 - syst_mums-res: 4.1728e-05 - syst_mod-NP2-jes: 0.001218033726271978 - syst_lid-eff: 0.013259071999999998 - syst_mixNP2-jes: 0.00462488045906832 - syst_mixNP1-jes: 0.002237238411742476 - syst_btag-eff: 0.041809707861658725 - syst_pileoffrho-jes: 0.015206638589744413 - syst_modNP4-jes: 0.0007684886998466536 - syst_mcstat: 0.00177344 - syst_modNP3-jes: 0.005773230819844291 - syst_mod-NP1-jes: 0.017619654176434678 - lumi: 0.029209599999999995 -- ArtUnc_1: -0.002319650049081386 - ArtUnc_2: 0.003251116347488226 - ArtUnc_3: 0.0023634692687352432 - ArtUnc_4: -0.00032564011544111417 - ArtUnc_5: 0.0009152975912450971 - ArtUnc_6: 0.0006629742439672646 - ArtUnc_7: -6.638852869484348e-05 - ArtUnc_8: 0.0011838464469284078 - ArtUnc_9: 0.0005897712601949277 - ArtUnc_10: -0.005981292055030654 - ArtUnc_11: -0.002166945769909233 - ArtUnc_12: -0.0034295243987029055 - ArtUnc_13: -0.0021052721894466984 - ArtUnc_14: 0.0010622780826648104 - ArtUnc_15: 0.0006704128065458505 - ArtUnc_16: -2.793524358762075e-05 - ArtUnc_17: 0.0002160093933553578 - ArtUnc_18: -6.758796880620212e-06 - ArtUnc_19: -0.00012009314335515188 - ArtUnc_20: 1.7068430562577325e-05 - ArtUnc_21: 3.837249054904414e-05 - ArtUnc_22: 2.023919370292909e-06 - ArtUnc_23: 1.1670911909300759e-05 - ArtUnc_24: -3.7760024053737695e-06 - ArtUnc_25: -3.937165408554248e-07 - syst_singletop-xsec: 0.004530407301516207 - syst_wjet-scale: 0.008193043200000001 - syst_laltrealcr-mujet-fake: 0.0012577040000000003 - syst_eta-jes: 0.004348136643994234 - syst_statNP3-jes: 0.004276495559086632 - syst_laltrealcr-ejet-fake: 0.00034137680000000006 - syst_pileoffmu-jes: 0.0029960945754788715 - syst_lstat-ejet-fake: 0.005310721074792416 - syst_lstat-mujet-fake: 0.0006535221686647824 + syst_pdf: 2.33676800e-03 + syst_isr-fsr: 5.53009508e-02 + syst_zjet-xsec: 1.55645440e-02 + syst_ps-model: 2.04675840e-02 + syst_flavres-jes: 9.24364091e-03 + syst_laltfakecr-mujet-fake: 3.64076800e-03 + syst_mums-res: 4.17280000e-05 + syst_mod-NP2-jes: 1.21803373e-03 + syst_lid-eff: 1.32590720e-02 + syst_mixNP2-jes: 4.62488046e-03 + syst_mixNP1-jes: 2.23723841e-03 + syst_btag-eff: 4.18097079e-02 + syst_pileoffrho-jes: 1.52066386e-02 + syst_modNP4-jes: 7.68488700e-04 + syst_mcstat: 1.77344000e-03 + syst_modNP3-jes: 5.77323082e-03 + syst_mod-NP1-jes: 1.76196542e-02 + lumi: 2.92096000e-02 +- ArtUnc_1: -2.31965005e-03 + ArtUnc_2: 3.25111635e-03 + ArtUnc_3: 2.36346927e-03 + ArtUnc_4: -3.25640115e-04 + ArtUnc_5: 9.15297591e-04 + ArtUnc_6: 6.62974244e-04 + ArtUnc_7: -6.63885287e-05 + ArtUnc_8: 1.18384645e-03 + ArtUnc_9: 5.89771260e-04 + ArtUnc_10: -5.98129206e-03 + ArtUnc_11: -2.16694577e-03 + ArtUnc_12: -3.42952440e-03 + ArtUnc_13: -2.10527219e-03 + ArtUnc_14: 1.06227808e-03 + ArtUnc_15: 6.70412807e-04 + ArtUnc_16: -2.79352436e-05 + ArtUnc_17: 2.16009393e-04 + ArtUnc_18: -6.75879688e-06 + ArtUnc_19: -1.20093143e-04 + ArtUnc_20: 1.70684306e-05 + ArtUnc_21: 3.83724905e-05 + ArtUnc_22: 2.02391937e-06 + ArtUnc_23: 1.16709119e-05 + ArtUnc_24: -3.77600241e-06 + ArtUnc_25: -3.93716541e-07 + syst_singletop-xsec: 4.53040730e-03 + syst_wjet-scale: 8.19304320e-03 + syst_laltrealcr-mujet-fake: 1.25770400e-03 + syst_eta-jes: 4.34813664e-03 + syst_statNP3-jes: 4.27649556e-03 + syst_laltrealcr-ejet-fake: 3.41376800e-04 + syst_pileoffmu-jes: 2.99609458e-03 + syst_lstat-ejet-fake: 5.31072107e-03 + syst_lstat-mujet-fake: 6.53522169e-04 syst_etmsoft-scale: 0.0 - syst_hardscat-model: 0.11499008000000002 - syst_statNP2-jes: 0.0023647865946795966 - syst_elen-scale: 0.002636835812302677 - syst_punch-jes: 0.0002335736 - syst_pileoffnpv-jes: 0.010179061031812561 - syst_lrec-eff: 0.004096521600000001 - syst_pileoffpt-jes: 0.00036766967580696675 + syst_hardscat-model: 1.14990080e-01 + syst_statNP2-jes: 2.36478659e-03 + syst_elen-scale: 2.63683581e-03 + syst_punch-jes: 2.33573600e-04 + syst_pileoffnpv-jes: 1.01790610e-02 + syst_lrec-eff: 4.09652160e-03 + syst_pileoffpt-jes: 3.67669676e-04 syst_jeten-res: 0.0 - syst_lighttag-eff: 0.009926886129951424 - syst_laltfakecr-ejet-fake: 0.0066658312 - syst_laltpar-mujet-fake: 0.0026771128 - syst_jetrec-eff: 0.0013475400000000002 - syst_c/tautag-eff: 0.019772907681598853 - syst_dibos-xsec: 0.0023177688000000003 - syst_elen-res: 0.0006738897706879962 - syst_flavcomp-jes: 0.03422811961714467 - syst_detNP2-jes: 0.004045493730592161 - syst_detNP3-jes: 0.0004490901550146029 - syst_jetvxfrac: 0.016752937541700666 - syst_ltrig-eff: 0.0231237864 - syst_btag-jes: 0.0032700304000000003 - syst_mup-scale: 0.00042394597364985086 + syst_lighttag-eff: 9.92688613e-03 + syst_laltfakecr-ejet-fake: 6.66583120e-03 + syst_laltpar-mujet-fake: 2.67711280e-03 + syst_jetrec-eff: 1.34754000e-03 + syst_c/tautag-eff: 1.97729077e-02 + syst_dibos-xsec: 2.31776880e-03 + syst_elen-res: 6.73889771e-04 + syst_flavcomp-jes: 3.42281196e-02 + syst_detNP2-jes: 4.04549373e-03 + syst_detNP3-jes: 4.49090155e-04 + syst_jetvxfrac: 1.67529375e-02 + syst_ltrig-eff: 2.31237864e-02 + syst_btag-jes: 3.27003040e-03 + syst_mup-scale: 4.23945974e-04 syst_singlephpt-jes: 0.0 syst_etmsoft-res: 0.0 - syst_detNP1-jes: 0.006007550349215587 - syst_laltpar-ejet-fake: 0.004222292 - syst_statNP1-jes: 0.019253066269302198 + syst_detNP1-jes: 6.00755035e-03 + syst_laltpar-ejet-fake: 4.22229200e-03 + syst_statNP1-jes: 1.92530663e-02 syst_muid-res: 0.0 - syst_pdf: 0.0064502247999999995 - syst_isr-fsr: 0.10960684009897637 - syst_zjet-xsec: 0.0242736872 - syst_ps-model: 0.11001316560000002 - syst_flavres-jes: 0.01690868172140469 - syst_laltfakecr-mujet-fake: 0.005839340000000001 + syst_pdf: 6.45022480e-03 + syst_isr-fsr: 1.09606840e-01 + syst_zjet-xsec: 2.42736872e-02 + syst_ps-model: 1.10013166e-01 + syst_flavres-jes: 1.69086817e-02 + syst_laltfakecr-mujet-fake: 5.83934000e-03 syst_mums-res: 0.0 - syst_mod-NP2-jes: 0.0021614474390917954 - syst_lid-eff: 0.023105819200000002 - syst_mixNP2-jes: 0.007645307508488392 - syst_mixNP1-jes: 0.001555045330930414 - syst_btag-eff: 0.0715512378484355 - syst_pileoffrho-jes: 0.028121985708937054 - syst_modNP4-jes: 0.0010628020253858007 - syst_mcstat: 0.0022998016000000004 - syst_modNP3-jes: 0.007421541123213221 - syst_mod-NP1-jes: 0.03491360650346469 - lumi: 0.05030816 -- ArtUnc_1: -0.001795524926448868 - ArtUnc_2: 0.0025635166095283814 - ArtUnc_3: 0.0017571813540357925 - ArtUnc_4: -0.000244508189441859 - ArtUnc_5: 0.0006991721843704397 - ArtUnc_6: 0.0005325691342750747 - ArtUnc_7: -9.061099511655727e-05 - ArtUnc_8: 0.0009282382556703589 - ArtUnc_9: 0.0004967848228169149 - ArtUnc_10: 0.0009181239020074871 - ArtUnc_11: 0.003278873907726987 - ArtUnc_12: -0.004538468427302791 - ArtUnc_13: 0.0018437420163892 - ArtUnc_14: -0.0013989557619484877 - ArtUnc_15: 0.00045700836804941295 - ArtUnc_16: 7.718578385551435e-05 - ArtUnc_17: 0.00043089957048234815 - ArtUnc_18: -2.7618962538690112e-05 - ArtUnc_19: -0.00017449334564950946 - ArtUnc_20: 2.9975659906657758e-05 - ArtUnc_21: 5.697214621725163e-05 - ArtUnc_22: 2.8895212514066196e-06 - ArtUnc_23: 1.710239422538106e-05 - ArtUnc_24: -3.7389210067386742e-06 - ArtUnc_25: -6.177314405707341e-07 - syst_singletop-xsec: 0.0034814089640236817 - syst_wjet-scale: 0.004881766199999999 - syst_laltrealcr-mujet-fake: 0.0040267676 - syst_eta-jes: 0.006047243101822766 - syst_statNP3-jes: 0.0010758201841905273 - syst_laltrealcr-ejet-fake: 0.001103224 - syst_pileoffmu-jes: 0.0026813801304789117 - syst_lstat-ejet-fake: 0.0056728063097590585 - syst_lstat-mujet-fake: 0.00011942750125808546 + syst_mod-NP2-jes: 2.16144744e-03 + syst_lid-eff: 2.31058192e-02 + syst_mixNP2-jes: 7.64530751e-03 + syst_mixNP1-jes: 1.55504533e-03 + syst_btag-eff: 7.15512378e-02 + syst_pileoffrho-jes: 2.81219857e-02 + syst_modNP4-jes: 1.06280203e-03 + syst_mcstat: 2.29980160e-03 + syst_modNP3-jes: 7.42154112e-03 + syst_mod-NP1-jes: 3.49136065e-02 + lumi: 5.03081600e-02 +- ArtUnc_1: -1.79552493e-03 + ArtUnc_2: 2.56351661e-03 + ArtUnc_3: 1.75718135e-03 + ArtUnc_4: -2.44508189e-04 + ArtUnc_5: 6.99172184e-04 + ArtUnc_6: 5.32569134e-04 + ArtUnc_7: -9.06109951e-05 + ArtUnc_8: 9.28238256e-04 + ArtUnc_9: 4.96784823e-04 + ArtUnc_10: 9.18123902e-04 + ArtUnc_11: 3.27887391e-03 + ArtUnc_12: -4.53846843e-03 + ArtUnc_13: 1.84374202e-03 + ArtUnc_14: -1.39895576e-03 + ArtUnc_15: 4.57008368e-04 + ArtUnc_16: 7.71857839e-05 + ArtUnc_17: 4.30899570e-04 + ArtUnc_18: -2.76189625e-05 + ArtUnc_19: -1.74493346e-04 + ArtUnc_20: 2.99756599e-05 + ArtUnc_21: 5.69721462e-05 + ArtUnc_22: 2.88952125e-06 + ArtUnc_23: 1.71023942e-05 + ArtUnc_24: -3.73892101e-06 + ArtUnc_25: -6.17731441e-07 + syst_singletop-xsec: 3.48140896e-03 + syst_wjet-scale: 4.88176620e-03 + syst_laltrealcr-mujet-fake: 4.02676760e-03 + syst_eta-jes: 6.04724310e-03 + syst_statNP3-jes: 1.07582018e-03 + syst_laltrealcr-ejet-fake: 1.10322400e-03 + syst_pileoffmu-jes: 2.68138013e-03 + syst_lstat-ejet-fake: 5.67280631e-03 + syst_lstat-mujet-fake: 1.19427501e-04 syst_etmsoft-scale: 0.0 - syst_hardscat-model: 0.0872236475 - syst_statNP2-jes: 0.0011961843263699622 - syst_elen-scale: 0.0014600144318378536 - syst_punch-jes: 0.00010388590967791302 - syst_pileoffnpv-jes: 0.009016568069454193 - syst_lrec-eff: 0.0033234623 - syst_pileoffpt-jes: 0.00019636050734999518 + syst_hardscat-model: 8.72236475e-02 + syst_statNP2-jes: 1.19618433e-03 + syst_elen-scale: 1.46001443e-03 + syst_punch-jes: 1.03885910e-04 + syst_pileoffnpv-jes: 9.01656807e-03 + syst_lrec-eff: 3.32346230e-03 + syst_pileoffpt-jes: 1.96360507e-04 syst_jeten-res: 0.0 - syst_lighttag-eff: 0.0071157948 - syst_laltfakecr-ejet-fake: 0.0055299103 - syst_laltpar-mujet-fake: 0.0031303981000000004 - syst_jetrec-eff: 0.000689515 - syst_c/tautag-eff: 0.013673085927130168 - syst_dibos-xsec: 0.0009929015999999998 - syst_elen-res: 0.00038662059701306654 - syst_flavcomp-jes: 0.027815588894338272 - syst_detNP2-jes: 0.0030382193577743054 - syst_detNP3-jes: 0.0003055726356828929 - syst_jetvxfrac: 0.009654241754808397 - syst_ltrig-eff: 0.017403358600000002 - syst_btag-jes: 0.008957442100376226 - syst_mup-scale: 0.00024152717394137558 + syst_lighttag-eff: 7.11579480e-03 + syst_laltfakecr-ejet-fake: 5.52991030e-03 + syst_laltpar-mujet-fake: 3.13039810e-03 + syst_jetrec-eff: 6.89515000e-04 + syst_c/tautag-eff: 1.36730859e-02 + syst_dibos-xsec: 9.92901600e-04 + syst_elen-res: 3.86620597e-04 + syst_flavcomp-jes: 2.78155889e-02 + syst_detNP2-jes: 3.03821936e-03 + syst_detNP3-jes: 3.05572636e-04 + syst_jetvxfrac: 9.65424175e-03 + syst_ltrig-eff: 1.74033586e-02 + syst_btag-jes: 8.95744210e-03 + syst_mup-scale: 2.41527174e-04 syst_singlephpt-jes: 0.0 syst_etmsoft-res: 0.0 - syst_detNP1-jes: 0.0009450129463275305 - syst_laltpar-ejet-fake: 0.0057367647999999995 - syst_statNP1-jes: 0.01373563723553443 - syst_muid-res: 2.75806e-05 - syst_pdf: 0.006205635000000001 - syst_isr-fsr: 0.1008889344963606 - syst_zjet-xsec: 0.0134317522 - syst_ps-model: 0.0854860697 - syst_flavres-jes: 0.016638822747305927 - syst_laltfakecr-mujet-fake: 0.0031166078000000002 - syst_mums-res: 5.51612e-05 - syst_mod-NP2-jes: 0.0016253113256821498 - syst_lid-eff: 0.0181066639 - syst_mixNP2-jes: 0.005816217402845078 - syst_mixNP1-jes: 0.0035007471717318217 - syst_btag-eff: 0.055227844029878424 - syst_pileoffrho-jes: 0.02624075867364732 - syst_modNP4-jes: 0.0001625852391778233 - syst_mcstat: 0.0017513681000000001 - syst_modNP3-jes: 0.0015505351183529442 - syst_mod-NP1-jes: 0.03606165559414297 - lumi: 0.038612839999999995 -- ArtUnc_1: -0.0009373027791595771 - ArtUnc_2: 0.0013054203345935214 - ArtUnc_3: 0.0009902050959316971 - ArtUnc_4: -0.00012035475424719867 - ArtUnc_5: 0.0003756350623351166 - ArtUnc_6: 0.0003453022016641227 - ArtUnc_7: -7.751786125746547e-05 - ArtUnc_8: 0.0004928465250512686 - ArtUnc_9: 0.0002807386277152055 - ArtUnc_10: 0.0030838939072987456 - ArtUnc_11: 0.001458667561027346 - ArtUnc_12: 0.0011499317648156005 - ArtUnc_13: 5.0181841377502805e-05 - ArtUnc_14: 0.0023919206527122966 - ArtUnc_15: 0.0023338179675179483 - ArtUnc_16: -0.00024157077054849806 - ArtUnc_17: 0.00030124370946201694 - ArtUnc_18: 1.5333543757848152e-06 - ArtUnc_19: -0.00024474264770693523 - ArtUnc_20: 4.306897757559485e-05 - ArtUnc_21: 7.320301428764154e-05 - ArtUnc_22: 3.6930592912519848e-06 - ArtUnc_23: 2.224439077767299e-05 - ArtUnc_24: -3.87177503699263e-06 - ArtUnc_25: -8.096192773194858e-07 - syst_singletop-xsec: 0.001939862285678121 - syst_wjet-scale: 0.00223594736 - syst_laltrealcr-mujet-fake: 0.00312591325 - syst_eta-jes: 0.004729122688352804 - syst_statNP3-jes: 0.002622961116324107 - syst_laltrealcr-ejet-fake: 0.0006251826500000001 - syst_pileoffmu-jes: 0.0015675274034024358 - syst_lstat-ejet-fake: 0.003484223048555126 - syst_lstat-mujet-fake: 0.00021019992797498928 + syst_detNP1-jes: 9.45012946e-04 + syst_laltpar-ejet-fake: 5.73676480e-03 + syst_statNP1-jes: 1.37356372e-02 + syst_muid-res: 2.75806000e-05 + syst_pdf: 6.20563500e-03 + syst_isr-fsr: 1.00888934e-01 + syst_zjet-xsec: 1.34317522e-02 + syst_ps-model: 8.54860697e-02 + syst_flavres-jes: 1.66388227e-02 + syst_laltfakecr-mujet-fake: 3.11660780e-03 + syst_mums-res: 5.51612000e-05 + syst_mod-NP2-jes: 1.62531133e-03 + syst_lid-eff: 1.81066639e-02 + syst_mixNP2-jes: 5.81621740e-03 + syst_mixNP1-jes: 3.50074717e-03 + syst_btag-eff: 5.52278440e-02 + syst_pileoffrho-jes: 2.62407587e-02 + syst_modNP4-jes: 1.62585239e-04 + syst_mcstat: 1.75136810e-03 + syst_modNP3-jes: 1.55053512e-03 + syst_mod-NP1-jes: 3.60616556e-02 + lumi: 3.86128400e-02 +- ArtUnc_1: -9.37302779e-04 + ArtUnc_2: 1.30542033e-03 + ArtUnc_3: 9.90205096e-04 + ArtUnc_4: -1.20354754e-04 + ArtUnc_5: 3.75635062e-04 + ArtUnc_6: 3.45302202e-04 + ArtUnc_7: -7.75178613e-05 + ArtUnc_8: 4.92846525e-04 + ArtUnc_9: 2.80738628e-04 + ArtUnc_10: 3.08389391e-03 + ArtUnc_11: 1.45866756e-03 + ArtUnc_12: 1.14993176e-03 + ArtUnc_13: 5.01818414e-05 + ArtUnc_14: 2.39192065e-03 + ArtUnc_15: 2.33381797e-03 + ArtUnc_16: -2.41570771e-04 + ArtUnc_17: 3.01243709e-04 + ArtUnc_18: 1.53335438e-06 + ArtUnc_19: -2.44742648e-04 + ArtUnc_20: 4.30689776e-05 + ArtUnc_21: 7.32030143e-05 + ArtUnc_22: 3.69305929e-06 + ArtUnc_23: 2.22443908e-05 + ArtUnc_24: -3.87177504e-06 + ArtUnc_25: -8.09619277e-07 + syst_singletop-xsec: 1.93986229e-03 + syst_wjet-scale: 2.23594736e-03 + syst_laltrealcr-mujet-fake: 3.12591325e-03 + syst_eta-jes: 4.72912269e-03 + syst_statNP3-jes: 2.62296112e-03 + syst_laltrealcr-ejet-fake: 6.25182650e-04 + syst_pileoffmu-jes: 1.56752740e-03 + syst_lstat-ejet-fake: 3.48422305e-03 + syst_lstat-mujet-fake: 2.10199928e-04 syst_etmsoft-scale: 0.0 - syst_hardscat-model: 0.02597817788 - syst_statNP2-jes: 0.0002132659046694644 - syst_elen-scale: 0.0005484846007664609 - syst_punch-jes: 4.823055051570841e-05 - syst_pileoffnpv-jes: 0.005319194782471096 - syst_lrec-eff: 0.00190496831 - syst_pileoffpt-jes: 0.00030574534978180254 + syst_hardscat-model: 2.59781779e-02 + syst_statNP2-jes: 2.13265905e-04 + syst_elen-scale: 5.48484601e-04 + syst_punch-jes: 4.82305505e-05 + syst_pileoffnpv-jes: 5.31919478e-03 + syst_lrec-eff: 1.90496831e-03 + syst_pileoffpt-jes: 3.05745350e-04 syst_jeten-res: 0.0 - syst_lighttag-eff: 0.0035892839199999998 - syst_laltfakecr-ejet-fake: 0.00305971744 - syst_laltpar-mujet-fake: 0.0025963467699999998 - syst_jetrec-eff: 0.00023536288 - syst_c/tautag-eff: 0.006101049371723527 - syst_dibos-xsec: 0.00030155869 - syst_elen-res: 0.00015445689 - syst_flavcomp-jes: 0.014412378617811942 - syst_detNP2-jes: 0.0013372263622214522 - syst_detNP3-jes: 0.0005841048323941171 - syst_jetvxfrac: 0.0031385018809770284 - syst_ltrig-eff: 0.009149731959999999 - syst_btag-jes: 0.006973936388943911 - syst_mup-scale: 8.090598999999999e-05 + syst_lighttag-eff: 3.58928392e-03 + syst_laltfakecr-ejet-fake: 3.05971744e-03 + syst_laltpar-mujet-fake: 2.59634677e-03 + syst_jetrec-eff: 2.35362880e-04 + syst_c/tautag-eff: 6.10104937e-03 + syst_dibos-xsec: 3.01558690e-04 + syst_elen-res: 1.54456890e-04 + syst_flavcomp-jes: 1.44123786e-02 + syst_detNP2-jes: 1.33722636e-03 + syst_detNP3-jes: 5.84104832e-04 + syst_jetvxfrac: 3.13850188e-03 + syst_ltrig-eff: 9.14973196e-03 + syst_btag-jes: 6.97393639e-03 + syst_mup-scale: 8.09059900e-05 syst_singlephpt-jes: 0.0 syst_etmsoft-res: 0.0 - syst_detNP1-jes: 0.004153483860254841 - syst_laltpar-ejet-fake: 0.00297145636 - syst_statNP1-jes: 0.00605681278542609 - syst_muid-res: 1.471018e-05 - syst_pdf: 0.00336127613 - syst_isr-fsr: 0.054766142381684736 - syst_zjet-xsec: 0.00489113485 - syst_ps-model: 0.036164977529999996 - syst_flavres-jes: 0.010448631508692815 - syst_laltfakecr-mujet-fake: 0.00097822697 - syst_mums-res: 7.35509e-06 - syst_mod-NP2-jes: 0.0005186251235440424 - syst_lid-eff: 0.00991466132 - syst_mixNP2-jes: 0.002743941494216021 - syst_mixNP1-jes: 0.0047438491691863495 - syst_btag-eff: 0.03082799001821557 - syst_pileoffrho-jes: 0.014582045602159867 - syst_modNP4-jes: 0.0005423225623889464 - syst_mcstat: 0.00131656111 - syst_modNP3-jes: 0.0014067078323907172 - syst_mod-NP1-jes: 0.020899504412826748 - lumi: 0.020594251999999997 -- ArtUnc_1: -0.00043306809525466363 - ArtUnc_2: 0.0006091601014372206 - ArtUnc_3: 0.00043083599989186437 - ArtUnc_4: -4.7836356225012176e-05 - ArtUnc_5: 0.00017779553170641855 - ArtUnc_6: 0.00014401480060878037 - ArtUnc_7: -1.9290809745597794e-05 - ArtUnc_8: 0.000187495908487918 - ArtUnc_9: 0.00011142393422589099 - ArtUnc_10: 0.0011463131541808247 - ArtUnc_11: -0.00022096506321573733 - ArtUnc_12: 0.0012930878681751785 - ArtUnc_13: -0.001066145571708503 - ArtUnc_14: -0.00011654470097526491 - ArtUnc_15: -0.0014164034084934302 - ArtUnc_16: 0.0009622028517264862 - ArtUnc_17: 0.001352008078398718 - ArtUnc_18: -0.00011518769994395697 - ArtUnc_19: -0.0002821685089962316 - ArtUnc_20: 4.85374102108883e-05 - ArtUnc_21: 0.00011629736313768906 - ArtUnc_22: 5.364136302393225e-06 - ArtUnc_23: 3.308669833661444e-05 - ArtUnc_24: -3.04235464282074e-06 - ArtUnc_25: -1.2300154918761493e-06 - syst_singletop-xsec: 0.0009253184231595801 - syst_wjet-scale: 0.0008718331500000001 - syst_laltrealcr-mujet-fake: 0.00154055105 - syst_eta-jes: 0.001961079280759487 - syst_statNP3-jes: 0.0012952672872833843 - syst_laltrealcr-ejet-fake: 0.0001374934 - syst_pileoffmu-jes: 0.0005712816379795845 - syst_lstat-ejet-fake: 0.001220495966840127 - syst_lstat-mujet-fake: 0.00034639353382602284 + syst_detNP1-jes: 4.15348386e-03 + syst_laltpar-ejet-fake: 2.97145636e-03 + syst_statNP1-jes: 6.05681279e-03 + syst_muid-res: 1.47101800e-05 + syst_pdf: 3.36127613e-03 + syst_isr-fsr: 5.47661424e-02 + syst_zjet-xsec: 4.89113485e-03 + syst_ps-model: 3.61649775e-02 + syst_flavres-jes: 1.04486315e-02 + syst_laltfakecr-mujet-fake: 9.78226970e-04 + syst_mums-res: 7.35509000e-06 + syst_mod-NP2-jes: 5.18625124e-04 + syst_lid-eff: 9.91466132e-03 + syst_mixNP2-jes: 2.74394149e-03 + syst_mixNP1-jes: 4.74384917e-03 + syst_btag-eff: 3.08279900e-02 + syst_pileoffrho-jes: 1.45820456e-02 + syst_modNP4-jes: 5.42322562e-04 + syst_mcstat: 1.31656111e-03 + syst_modNP3-jes: 1.40670783e-03 + syst_mod-NP1-jes: 2.08995044e-02 + lumi: 2.05942520e-02 +- ArtUnc_1: -4.33068095e-04 + ArtUnc_2: 6.09160101e-04 + ArtUnc_3: 4.30836000e-04 + ArtUnc_4: -4.78363562e-05 + ArtUnc_5: 1.77795532e-04 + ArtUnc_6: 1.44014801e-04 + ArtUnc_7: -1.92908097e-05 + ArtUnc_8: 1.87495908e-04 + ArtUnc_9: 1.11423934e-04 + ArtUnc_10: 1.14631315e-03 + ArtUnc_11: -2.20965063e-04 + ArtUnc_12: 1.29308787e-03 + ArtUnc_13: -1.06614557e-03 + ArtUnc_14: -1.16544701e-04 + ArtUnc_15: -1.41640341e-03 + ArtUnc_16: 9.62202852e-04 + ArtUnc_17: 1.35200808e-03 + ArtUnc_18: -1.15187700e-04 + ArtUnc_19: -2.82168509e-04 + ArtUnc_20: 4.85374102e-05 + ArtUnc_21: 1.16297363e-04 + ArtUnc_22: 5.36413630e-06 + ArtUnc_23: 3.30866983e-05 + ArtUnc_24: -3.04235464e-06 + ArtUnc_25: -1.23001549e-06 + syst_singletop-xsec: 9.25318423e-04 + syst_wjet-scale: 8.71833150e-04 + syst_laltrealcr-mujet-fake: 1.54055105e-03 + syst_eta-jes: 1.96107928e-03 + syst_statNP3-jes: 1.29526729e-03 + syst_laltrealcr-ejet-fake: 1.37493400e-04 + syst_pileoffmu-jes: 5.71281638e-04 + syst_lstat-ejet-fake: 1.22049597e-03 + syst_lstat-mujet-fake: 3.46393534e-04 syst_etmsoft-scale: 0.0 - syst_hardscat-model: 0.008902697650000001 - syst_statNP2-jes: 7.306738604142669e-05 - syst_elen-scale: 0.00018356332822289665 - syst_punch-jes: 6.271146545638106e-05 - syst_pileoffnpv-jes: 0.0019462592086471528 - syst_lrec-eff: 0.0008624586000000001 - syst_pileoffpt-jes: 0.00020507683720841688 + syst_hardscat-model: 8.90269765e-03 + syst_statNP2-jes: 7.30673860e-05 + syst_elen-scale: 1.83563328e-04 + syst_punch-jes: 6.27114655e-05 + syst_pileoffnpv-jes: 1.94625921e-03 + syst_lrec-eff: 8.62458600e-04 + syst_pileoffpt-jes: 2.05076837e-04 syst_jeten-res: 0.0 - syst_lighttag-eff: 0.0014249316000000001 - syst_laltfakecr-ejet-fake: 0.0010187011000000001 - syst_laltpar-mujet-fake: 0.00116556905 - syst_jetrec-eff: 3.74982e-05 - syst_c/tautag-eff: 0.0021186529089182913 - syst_dibos-xsec: 0.00011874430000000001 - syst_elen-res: 4.967921870673768e-05 - syst_flavcomp-jes: 0.005376159577487889 - syst_detNP2-jes: 0.0003188993248267498 - syst_detNP3-jes: 0.00034547262469787225 - syst_jetvxfrac: 0.000724013314172113 - syst_ltrig-eff: 0.0038623146 - syst_btag-jes: 0.002839862493739574 - syst_mup-scale: 3.9772847253434096e-05 + syst_lighttag-eff: 1.42493160e-03 + syst_laltfakecr-ejet-fake: 1.01870110e-03 + syst_laltpar-mujet-fake: 1.16556905e-03 + syst_jetrec-eff: 3.74982000e-05 + syst_c/tautag-eff: 2.11865291e-03 + syst_dibos-xsec: 1.18744300e-04 + syst_elen-res: 4.96792187e-05 + syst_flavcomp-jes: 5.37615958e-03 + syst_detNP2-jes: 3.18899325e-04 + syst_detNP3-jes: 3.45472625e-04 + syst_jetvxfrac: 7.24013314e-04 + syst_ltrig-eff: 3.86231460e-03 + syst_btag-jes: 2.83986249e-03 + syst_mup-scale: 3.97728473e-05 syst_singlephpt-jes: 0.0 syst_etmsoft-res: 0.0 - syst_detNP1-jes: 0.0029850692885960927 - syst_laltpar-ejet-fake: 0.0008718331500000001 - syst_statNP1-jes: 0.001673475337424679 - syst_muid-res: 1.2499400000000003e-05 - syst_pdf: 0.0012374406000000002 - syst_isr-fsr: 0.02335981711552737 - syst_zjet-xsec: 0.0014468055500000002 - syst_ps-model: 0.016696073550000003 - syst_flavres-jes: 0.004592867015914119 - syst_laltfakecr-mujet-fake: 0.0004124802 - syst_mums-res: 6.249700000000001e-06 - syst_mod-NP2-jes: 5.659344049781741e-05 - syst_lid-eff: 0.00430916815 - syst_mixNP2-jes: 0.00084249775045763 - syst_mixNP1-jes: 0.002671094289367193 - syst_btag-eff: 0.014461897880825858 - syst_pileoffrho-jes: 0.005396644900472434 - syst_modNP4-jes: 0.0004916725819309553 - syst_mcstat: 0.0007562137000000001 - syst_modNP3-jes: 0.0009443666876827932 - syst_mod-NP1-jes: 0.007882459210475446 - lumi: 0.00874958 -- ArtUnc_1: -0.00016856818719132824 - ArtUnc_2: 0.0002281155245664124 - ArtUnc_3: 0.00015363613536879925 - ArtUnc_4: -2.648694511050096e-05 - ArtUnc_5: 6.020292661944054e-05 - ArtUnc_6: 3.764335293204118e-05 - ArtUnc_7: -2.2363682021827732e-05 - ArtUnc_8: 7.253773359292648e-05 - ArtUnc_9: 3.307054313371831e-05 - ArtUnc_10: 0.0002477199424243589 - ArtUnc_11: -0.00017406096310866064 - ArtUnc_12: 0.0003335993659467223 - ArtUnc_13: -0.00034440685486169495 - ArtUnc_14: -0.00046828336924728173 - ArtUnc_15: -0.0006958810697567452 - ArtUnc_16: -0.00032218413267101837 - ArtUnc_17: -0.0011215270573181428 - ArtUnc_18: 0.0004105718954897692 - ArtUnc_19: -0.0007500679533045958 - ArtUnc_20: 0.00012638377828620267 - ArtUnc_21: 0.00010832522094912383 - ArtUnc_22: 6.018678702053738e-06 - ArtUnc_23: 3.879599674603305e-05 - ArtUnc_24: -2.2654801821210144e-06 - ArtUnc_25: -1.4817764461118702e-06 - syst_singletop-xsec: 0.0003829948282197537 - syst_wjet-scale: 0.00042778884 - syst_laltrealcr-mujet-fake: 0.0003679904 - syst_eta-jes: 0.000662831774815453 - syst_statNP3-jes: 0.00041913843045413956 - syst_laltrealcr-ejet-fake: 2.184943e-05 - syst_pileoffmu-jes: 0.0001432024354924046 - syst_lstat-ejet-fake: 0.0003077340991793072 - syst_lstat-mujet-fake: 0.00012847151713310883 + syst_detNP1-jes: 2.98506929e-03 + syst_laltpar-ejet-fake: 8.71833150e-04 + syst_statNP1-jes: 1.67347534e-03 + syst_muid-res: 1.24994000e-05 + syst_pdf: 1.23744060e-03 + syst_isr-fsr: 2.33598171e-02 + syst_zjet-xsec: 1.44680555e-03 + syst_ps-model: 1.66960736e-02 + syst_flavres-jes: 4.59286702e-03 + syst_laltfakecr-mujet-fake: 4.12480200e-04 + syst_mums-res: 6.24970000e-06 + syst_mod-NP2-jes: 5.65934405e-05 + syst_lid-eff: 4.30916815e-03 + syst_mixNP2-jes: 8.42497750e-04 + syst_mixNP1-jes: 2.67109429e-03 + syst_btag-eff: 1.44618979e-02 + syst_pileoffrho-jes: 5.39664490e-03 + syst_modNP4-jes: 4.91672582e-04 + syst_mcstat: 7.56213700e-04 + syst_modNP3-jes: 9.44366688e-04 + syst_mod-NP1-jes: 7.88245921e-03 + lumi: 8.74958000e-03 +- ArtUnc_1: -1.68568187e-04 + ArtUnc_2: 2.28115525e-04 + ArtUnc_3: 1.53636135e-04 + ArtUnc_4: -2.64869451e-05 + ArtUnc_5: 6.02029266e-05 + ArtUnc_6: 3.76433529e-05 + ArtUnc_7: -2.23636820e-05 + ArtUnc_8: 7.25377336e-05 + ArtUnc_9: 3.30705431e-05 + ArtUnc_10: 2.47719942e-04 + ArtUnc_11: -1.74060963e-04 + ArtUnc_12: 3.33599366e-04 + ArtUnc_13: -3.44406855e-04 + ArtUnc_14: -4.68283369e-04 + ArtUnc_15: -6.95881070e-04 + ArtUnc_16: -3.22184133e-04 + ArtUnc_17: -1.12152706e-03 + ArtUnc_18: 4.10571895e-04 + ArtUnc_19: -7.50067953e-04 + ArtUnc_20: 1.26383778e-04 + ArtUnc_21: 1.08325221e-04 + ArtUnc_22: 6.01867870e-06 + ArtUnc_23: 3.87959967e-05 + ArtUnc_24: -2.26548018e-06 + ArtUnc_25: -1.48177645e-06 + syst_singletop-xsec: 3.82994828e-04 + syst_wjet-scale: 4.27788840e-04 + syst_laltrealcr-mujet-fake: 3.67990400e-04 + syst_eta-jes: 6.62831775e-04 + syst_statNP3-jes: 4.19138430e-04 + syst_laltrealcr-ejet-fake: 2.18494300e-05 + syst_pileoffmu-jes: 1.43202435e-04 + syst_lstat-ejet-fake: 3.07734099e-04 + syst_lstat-mujet-fake: 1.28471517e-04 syst_etmsoft-scale: 0.0 - syst_hardscat-model: 0.0018169526000000004 - syst_statNP2-jes: 7.532742407059779e-05 - syst_elen-scale: 5.739202919824037e-05 - syst_punch-jes: 3.954877073076324e-05 - syst_pileoffnpv-jes: 0.0006313188671885613 - syst_lrec-eff: 0.00033234133 - syst_pileoffpt-jes: 4.5811548745139584e-05 + syst_hardscat-model: 1.81695260e-03 + syst_statNP2-jes: 7.53274241e-05 + syst_elen-scale: 5.73920292e-05 + syst_punch-jes: 3.95487707e-05 + syst_pileoffnpv-jes: 6.31318867e-04 + syst_lrec-eff: 3.32341330e-04 + syst_pileoffpt-jes: 4.58115487e-05 syst_jeten-res: 0.0 - syst_lighttag-eff: 0.0004852900650397424 - syst_laltfakecr-ejet-fake: 0.00015869586000000002 - syst_laltpar-mujet-fake: 0.00040018956 - syst_jetrec-eff: 3.44991e-06 - syst_c/tautag-eff: 0.0006393853882880218 - syst_dibos-xsec: 2.4149370000000004e-05 - syst_elen-res: 1.520180309724064e-05 - syst_flavcomp-jes: 0.0015780182324636504 - syst_detNP2-jes: 9.395332315042135e-06 - syst_detNP3-jes: 0.00019084219027258275 - syst_jetvxfrac: 0.0001155977277300219 - syst_ltrig-eff: 0.0014202129500000002 - syst_btag-jes: 0.000983005091505954 - syst_mup-scale: 1.195083880307989e-05 + syst_lighttag-eff: 4.85290065e-04 + syst_laltfakecr-ejet-fake: 1.58695860e-04 + syst_laltpar-mujet-fake: 4.00189560e-04 + syst_jetrec-eff: 3.44991000e-06 + syst_c/tautag-eff: 6.39385388e-04 + syst_dibos-xsec: 2.41493700e-05 + syst_elen-res: 1.52018031e-05 + syst_flavcomp-jes: 1.57801823e-03 + syst_detNP2-jes: 9.39533232e-06 + syst_detNP3-jes: 1.90842190e-04 + syst_jetvxfrac: 1.15597728e-04 + syst_ltrig-eff: 1.42021295e-03 + syst_btag-jes: 9.83005092e-04 + syst_mup-scale: 1.19508388e-05 syst_singlephpt-jes: 0.0 syst_etmsoft-res: 0.0 - syst_detNP1-jes: 0.0015159888159031185 - syst_laltpar-ejet-fake: 0.00021504439 - syst_statNP1-jes: 0.000368960755441411 - syst_muid-res: 2.2999400000000005e-06 - syst_pdf: 0.0001724955 - syst_isr-fsr: 0.008440807452503068 - syst_zjet-xsec: 0.00042318896000000003 - syst_ps-model: 0.00498856986 - syst_flavres-jes: 0.0015892718536345382 - syst_laltfakecr-mujet-fake: 0.00013339652000000002 - syst_mums-res: 8.049790000000001e-06 - syst_mod-NP2-jes: 0.00015484400495197634 - syst_lid-eff: 0.00160420815 - syst_mixNP2-jes: 0.0002420700507562422 - syst_mixNP1-jes: 0.001155692244669068 - syst_btag-eff: 0.006130308544192053 - syst_pileoffrho-jes: 0.0016518181248990225 - syst_modNP4-jes: 0.00030599359822833336 - syst_mcstat: 0.00043008878 - syst_modNP3-jes: 0.0003193543505581361 - syst_mod-NP1-jes: 0.002415398244513266 - lumi: 0.0032199159999999998 -- ArtUnc_1: -5.704825393762075e-05 - ArtUnc_2: 8.447043453136964e-05 - ArtUnc_3: 5.3596939116383725e-05 - ArtUnc_4: -6.189998171440765e-07 - ArtUnc_5: 1.6610110490886753e-05 - ArtUnc_6: 1.1899788904906007e-05 - ArtUnc_7: 5.602463269647046e-07 - ArtUnc_8: 2.5019737784335956e-05 - ArtUnc_9: 1.8361565869346704e-05 - ArtUnc_10: 7.307324322568346e-05 - ArtUnc_11: -4.614733303634368e-05 - ArtUnc_12: 7.378944034884424e-05 - ArtUnc_13: -7.126916095767641e-05 - ArtUnc_14: -0.00012936884504119448 - ArtUnc_15: -0.00010913088281101485 - ArtUnc_16: -0.00022808962471791025 - ArtUnc_17: -0.00037817291163699666 - ArtUnc_18: -0.00012304161765952132 - ArtUnc_19: 0.0007096439682221342 - ArtUnc_20: -0.0001940731713300961 - ArtUnc_21: 0.00032762647554190335 - ArtUnc_22: 8.034467111955793e-06 - ArtUnc_23: 5.46528425444966e-05 - ArtUnc_24: 6.8187558192396355e-06 - ArtUnc_25: -2.2140935057804415e-06 - syst_singletop-xsec: 0.00014993674589952778 - syst_wjet-scale: 0.000198005512 - syst_laltrealcr-mujet-fake: 6.1268099e-05 - syst_eta-jes: 0.00022478155862948624 - syst_statNP3-jes: 0.00011839999850896705 - syst_laltrealcr-ejet-fake: 2.028745e-05 - syst_pileoffmu-jes: 3.781256328101726e-05 - syst_lstat-ejet-fake: 8.433334597443171e-05 - syst_lstat-mujet-fake: 5.551945276650089e-05 + syst_detNP1-jes: 1.51598882e-03 + syst_laltpar-ejet-fake: 2.15044390e-04 + syst_statNP1-jes: 3.68960755e-04 + syst_muid-res: 2.29994000e-06 + syst_pdf: 1.72495500e-04 + syst_isr-fsr: 8.44080745e-03 + syst_zjet-xsec: 4.23188960e-04 + syst_ps-model: 4.98856986e-03 + syst_flavres-jes: 1.58927185e-03 + syst_laltfakecr-mujet-fake: 1.33396520e-04 + syst_mums-res: 8.04979000e-06 + syst_mod-NP2-jes: 1.54844005e-04 + syst_lid-eff: 1.60420815e-03 + syst_mixNP2-jes: 2.42070051e-04 + syst_mixNP1-jes: 1.15569224e-03 + syst_btag-eff: 6.13030854e-03 + syst_pileoffrho-jes: 1.65181812e-03 + syst_modNP4-jes: 3.05993598e-04 + syst_mcstat: 4.30088780e-04 + syst_modNP3-jes: 3.19354351e-04 + syst_mod-NP1-jes: 2.41539824e-03 + lumi: 3.21991600e-03 +- ArtUnc_1: -5.70482539e-05 + ArtUnc_2: 8.44704345e-05 + ArtUnc_3: 5.35969391e-05 + ArtUnc_4: -6.18999817e-07 + ArtUnc_5: 1.66101105e-05 + ArtUnc_6: 1.18997889e-05 + ArtUnc_7: 5.60246327e-07 + ArtUnc_8: 2.50197378e-05 + ArtUnc_9: 1.83615659e-05 + ArtUnc_10: 7.30732432e-05 + ArtUnc_11: -4.61473330e-05 + ArtUnc_12: 7.37894403e-05 + ArtUnc_13: -7.12691610e-05 + ArtUnc_14: -1.29368845e-04 + ArtUnc_15: -1.09130883e-04 + ArtUnc_16: -2.28089625e-04 + ArtUnc_17: -3.78172912e-04 + ArtUnc_18: -1.23041618e-04 + ArtUnc_19: 7.09643968e-04 + ArtUnc_20: -1.94073171e-04 + ArtUnc_21: 3.27626476e-04 + ArtUnc_22: 8.03446711e-06 + ArtUnc_23: 5.46528425e-05 + ArtUnc_24: 6.81875582e-06 + ArtUnc_25: -2.21409351e-06 + syst_singletop-xsec: 1.49936746e-04 + syst_wjet-scale: 1.98005512e-04 + syst_laltrealcr-mujet-fake: 6.12680990e-05 + syst_eta-jes: 2.24781559e-04 + syst_statNP3-jes: 1.18399999e-04 + syst_laltrealcr-ejet-fake: 2.02874500e-05 + syst_pileoffmu-jes: 3.78125633e-05 + syst_lstat-ejet-fake: 8.43333460e-05 + syst_lstat-mujet-fake: 5.55194528e-05 syst_etmsoft-scale: 0.0 - syst_hardscat-model: 5.1530123e-05 - syst_statNP2-jes: 3.6721405336485164e-05 - syst_elen-scale: 1.8860783025908835e-05 - syst_punch-jes: 3.895348892478654e-05 - syst_pileoffnpv-jes: 0.0001907145473774875 - syst_lrec-eff: 0.00012010170399999999 - syst_pileoffpt-jes: 7.730556714322906e-06 + syst_hardscat-model: 5.15301230e-05 + syst_statNP2-jes: 3.67214053e-05 + syst_elen-scale: 1.88607830e-05 + syst_punch-jes: 3.89534889e-05 + syst_pileoffnpv-jes: 1.90714547e-04 + syst_lrec-eff: 1.20101704e-04 + syst_pileoffpt-jes: 7.73055671e-06 syst_jeten-res: 0.0 - syst_lighttag-eff: 0.00017995173996680593 - syst_laltfakecr-ejet-fake: 1.7447206999999997e-05 - syst_laltpar-mujet-fake: 9.0887776e-05 - syst_jetrec-eff: 8.11498e-06 - syst_c/tautag-eff: 0.00019090512009445844 - syst_dibos-xsec: 1.3795465999999999e-05 - syst_elen-res: 7.3484269288282365e-06 - syst_flavcomp-jes: 0.0005367438189682988 - syst_detNP2-jes: 3.348535655335121e-05 - syst_detNP3-jes: 8.734707350608027e-05 - syst_jetvxfrac: 6.504651297898834e-06 - syst_ltrig-eff: 0.000501911513 - syst_btag-jes: 0.000362132005395194 - syst_mup-scale: 2.8111115324810575e-06 + syst_lighttag-eff: 1.79951740e-04 + syst_laltfakecr-ejet-fake: 1.74472070e-05 + syst_laltpar-mujet-fake: 9.08877760e-05 + syst_jetrec-eff: 8.11498000e-06 + syst_c/tautag-eff: 1.90905120e-04 + syst_dibos-xsec: 1.37954660e-05 + syst_elen-res: 7.34842693e-06 + syst_flavcomp-jes: 5.36743819e-04 + syst_detNP2-jes: 3.34853566e-05 + syst_detNP3-jes: 8.73470735e-05 + syst_jetvxfrac: 6.50465130e-06 + syst_ltrig-eff: 5.01911513e-04 + syst_btag-jes: 3.62132005e-04 + syst_mup-scale: 2.81111153e-06 syst_singlephpt-jes: 0.0 syst_etmsoft-res: 0.0 - syst_detNP1-jes: 0.0007627419670950791 - syst_laltpar-ejet-fake: 4.5443888e-05 - syst_statNP1-jes: 0.00011572598824131657 - syst_muid-res: 1.6229959999999999e-06 - syst_pdf: 3.7734657e-05 - syst_isr-fsr: 0.002857035218600734 - syst_zjet-xsec: 0.000250752882 - syst_ps-model: 0.001699682561 - syst_flavres-jes: 0.0006201654128369569 - syst_laltfakecr-mujet-fake: 3.2865669e-05 - syst_mums-res: 4.0574899999999996e-07 - syst_mod-NP2-jes: 9.60560948055265e-05 - syst_lid-eff: 0.0005668313530000001 - syst_mixNP2-jes: 5.498572661673769e-05 - syst_mixNP1-jes: 0.0005481696019844535 - syst_btag-eff: 0.0024693139016654774 - syst_pileoffrho-jes: 0.0005905133766451836 - syst_modNP4-jes: 0.00014546879739196487 - syst_mcstat: 0.000225190695 - syst_modNP3-jes: 0.00010673647569344536 - syst_mod-NP1-jes: 0.0008546317250597773 - lumi: 0.0011360971999999998 -- ArtUnc_1: -1.9686456265600054e-05 - ArtUnc_2: 2.925753723137182e-05 - ArtUnc_3: 1.8206362594047315e-05 - ArtUnc_4: 6.69900387470396e-07 - ArtUnc_5: 3.039241839651275e-06 - ArtUnc_6: 3.0071384924917008e-06 - ArtUnc_7: -4.843160183041823e-07 - ArtUnc_8: 4.263182195032254e-06 - ArtUnc_9: 5.834757437214521e-06 - ArtUnc_10: 2.095457540621075e-05 - ArtUnc_11: -8.511144725813274e-06 - ArtUnc_12: 2.5177189800019485e-05 - ArtUnc_13: -2.0855944369375817e-05 - ArtUnc_14: -2.7577967519654e-05 - ArtUnc_15: -2.3868356550533238e-05 - ArtUnc_16: -4.92024478264077e-05 - ArtUnc_17: -4.231839928177752e-05 - ArtUnc_18: -7.284072247151178e-05 - ArtUnc_19: 0.00019084760151911412 - ArtUnc_20: 2.569221667380068e-05 - ArtUnc_21: -0.0004775691724259952 - ArtUnc_22: 7.829844704119966e-06 - ArtUnc_23: 6.265344865287837e-05 - ArtUnc_24: -1.2464455732653925e-05 - ArtUnc_25: -3.21890037025863e-06 - syst_singletop-xsec: 5.628830002789741e-05 - syst_wjet-scale: 3.1888122e-05 - syst_laltrealcr-mujet-fake: 1.518482e-05 - syst_eta-jes: 5.2705736416055764e-05 - syst_statNP3-jes: 3.486891459456297e-05 - syst_laltrealcr-ejet-fake: 6.0739279999999995e-06 - syst_pileoffmu-jes: 7.420605356283054e-06 - syst_lstat-ejet-fake: 6.387356509205667e-05 - syst_lstat-mujet-fake: 2.442224547637461e-05 + syst_detNP1-jes: 7.62741967e-04 + syst_laltpar-ejet-fake: 4.54438880e-05 + syst_statNP1-jes: 1.15725988e-04 + syst_muid-res: 1.62299600e-06 + syst_pdf: 3.77346570e-05 + syst_isr-fsr: 2.85703522e-03 + syst_zjet-xsec: 2.50752882e-04 + syst_ps-model: 1.69968256e-03 + syst_flavres-jes: 6.20165413e-04 + syst_laltfakecr-mujet-fake: 3.28656690e-05 + syst_mums-res: 4.05749000e-07 + syst_mod-NP2-jes: 9.60560948e-05 + syst_lid-eff: 5.66831353e-04 + syst_mixNP2-jes: 5.49857266e-05 + syst_mixNP1-jes: 5.48169602e-04 + syst_btag-eff: 2.46931390e-03 + syst_pileoffrho-jes: 5.90513377e-04 + syst_modNP4-jes: 1.45468797e-04 + syst_mcstat: 2.25190695e-04 + syst_modNP3-jes: 1.06736476e-04 + syst_mod-NP1-jes: 8.54631725e-04 + lumi: 1.13609720e-03 +- ArtUnc_1: -1.96864563e-05 + ArtUnc_2: 2.92575372e-05 + ArtUnc_3: 1.82063626e-05 + ArtUnc_4: 6.69900387e-07 + ArtUnc_5: 3.03924184e-06 + ArtUnc_6: 3.00713849e-06 + ArtUnc_7: -4.84316018e-07 + ArtUnc_8: 4.26318220e-06 + ArtUnc_9: 5.83475744e-06 + ArtUnc_10: 2.09545754e-05 + ArtUnc_11: -8.51114473e-06 + ArtUnc_12: 2.51771898e-05 + ArtUnc_13: -2.08559444e-05 + ArtUnc_14: -2.75779675e-05 + ArtUnc_15: -2.38683566e-05 + ArtUnc_16: -4.92024478e-05 + ArtUnc_17: -4.23183993e-05 + ArtUnc_18: -7.28407225e-05 + ArtUnc_19: 1.90847602e-04 + ArtUnc_20: 2.56922167e-05 + ArtUnc_21: -4.77569172e-04 + ArtUnc_22: 7.82984470e-06 + ArtUnc_23: 6.26534487e-05 + ArtUnc_24: -1.24644557e-05 + ArtUnc_25: -3.21890037e-06 + syst_singletop-xsec: 5.62883000e-05 + syst_wjet-scale: 3.18881220e-05 + syst_laltrealcr-mujet-fake: 1.51848200e-05 + syst_eta-jes: 5.27057364e-05 + syst_statNP3-jes: 3.48689146e-05 + syst_laltrealcr-ejet-fake: 6.07392800e-06 + syst_pileoffmu-jes: 7.42060536e-06 + syst_lstat-ejet-fake: 6.38735651e-05 + syst_lstat-mujet-fake: 2.44222455e-05 syst_etmsoft-scale: 0.0 - syst_hardscat-model: 0.000459015416 - syst_statNP2-jes: 1.3909824738196767e-05 - syst_elen-scale: 4.863933715014936e-06 - syst_punch-jes: 8.026811624762395e-06 - syst_pileoffnpv-jes: 5.496795263027798e-05 - syst_lrec-eff: 3.2647363e-05 - syst_pileoffpt-jes: 2.069001023593686e-05 + syst_hardscat-model: 4.59015416e-04 + syst_statNP2-jes: 1.39098247e-05 + syst_elen-scale: 4.86393372e-06 + syst_punch-jes: 8.02681162e-06 + syst_pileoffnpv-jes: 5.49679526e-05 + syst_lrec-eff: 3.26473630e-05 + syst_pileoffpt-jes: 2.06900102e-05 syst_jeten-res: 0.0 - syst_lighttag-eff: 5.6889308782654e-05 - syst_laltfakecr-ejet-fake: 2.0174118e-05 - syst_laltpar-mujet-fake: 2.0282581e-05 - syst_jetrec-eff: 3.25389e-06 - syst_c/tautag-eff: 5.135728776659954e-05 - syst_dibos-xsec: 9.110892e-06 - syst_elen-res: 1.301556e-06 - syst_flavcomp-jes: 9.56473172207676e-05 - syst_detNP2-jes: 1.782847674739541e-05 - syst_detNP3-jes: 2.7259192531935843e-05 - syst_jetvxfrac: 1.24250509112996e-05 - syst_ltrig-eff: 0.00013460258300000002 - syst_btag-jes: 0.00010216171079685841 - syst_mup-scale: 1.2211122738187302e-06 + syst_lighttag-eff: 5.68893088e-05 + syst_laltfakecr-ejet-fake: 2.01741180e-05 + syst_laltpar-mujet-fake: 2.02825810e-05 + syst_jetrec-eff: 3.25389000e-06 + syst_c/tautag-eff: 5.13572878e-05 + syst_dibos-xsec: 9.11089200e-06 + syst_elen-res: 1.30155600e-06 + syst_flavcomp-jes: 9.56473172e-05 + syst_detNP2-jes: 1.78284767e-05 + syst_detNP3-jes: 2.72591925e-05 + syst_jetvxfrac: 1.24250509e-05 + syst_ltrig-eff: 1.34602583e-04 + syst_btag-jes: 1.02161711e-04 + syst_mup-scale: 1.22111227e-06 syst_singlephpt-jes: 0.0 syst_etmsoft-res: 0.0 - syst_detNP1-jes: 0.0003187883627054941 - syst_laltpar-ejet-fake: 2.820038e-05 - syst_statNP1-jes: 1.258684959166999e-05 - syst_muid-res: 1.08463e-06 - syst_pdf: 6.50778e-06 - syst_isr-fsr: 0.0007523633136503267 - syst_zjet-xsec: 4.8699887e-05 - syst_ps-model: 0.000490144297 - syst_flavres-jes: 0.00015691657504507362 - syst_laltfakecr-mujet-fake: 2.1367210999999998e-05 - syst_mums-res: 1.843871e-06 - syst_mod-NP2-jes: 7.445358871766965e-05 - syst_lid-eff: 0.000151522811 - syst_mixNP2-jes: 7.890263923136411e-06 - syst_mixNP1-jes: 0.00020870316191370404 - syst_btag-eff: 0.0007394309627349159 - syst_pileoffrho-jes: 0.00010819643644933498 - syst_modNP4-jes: 4.905813983229777e-05 - syst_mcstat: 0.00011909237400000001 - syst_modNP3-jes: 1.6566458391774656e-05 - syst_mod-NP1-jes: 0.00020172079113294416 - lumi: 0.0003036964 + syst_detNP1-jes: 3.18788363e-04 + syst_laltpar-ejet-fake: 2.82003800e-05 + syst_statNP1-jes: 1.25868496e-05 + syst_muid-res: 1.08463000e-06 + syst_pdf: 6.50778000e-06 + syst_isr-fsr: 7.52363314e-04 + syst_zjet-xsec: 4.86998870e-05 + syst_ps-model: 4.90144297e-04 + syst_flavres-jes: 1.56916575e-04 + syst_laltfakecr-mujet-fake: 2.13672110e-05 + syst_mums-res: 1.84387100e-06 + syst_mod-NP2-jes: 7.44535887e-05 + syst_lid-eff: 1.51522811e-04 + syst_mixNP2-jes: 7.89026392e-06 + syst_mixNP1-jes: 2.08703162e-04 + syst_btag-eff: 7.39430963e-04 + syst_pileoffrho-jes: 1.08196436e-04 + syst_modNP4-jes: 4.90581398e-05 + syst_mcstat: 1.19092374e-04 + syst_modNP3-jes: 1.65664584e-05 + syst_mod-NP1-jes: 2.01720791e-04 + lumi: 3.03696400e-04 diff --git a/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_8TEV_LJ_DIF/uncertainties_dSig_dpTt_norm.yaml b/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_8TEV_LJ_DIF/uncertainties_dSig_dpTt_norm.yaml index 135f3b12e8..34f5613c23 100644 --- a/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_8TEV_LJ_DIF/uncertainties_dSig_dpTt_norm.yaml +++ b/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_8TEV_LJ_DIF/uncertainties_dSig_dpTt_norm.yaml @@ -320,643 +320,643 @@ definitions: treatment: MULT type: CORR bins: -- ArtUnc_1: -8.896524639002207e-08 - ArtUnc_2: -7.293677065588867e-08 - ArtUnc_3: -2.629782029979545e-08 - ArtUnc_4: -6.403316483216632e-08 - ArtUnc_5: -8.443906963613723e-08 - ArtUnc_6: 5.173084379563455e-08 - ArtUnc_7: -4.1273267359537134e-08 - ArtUnc_8: -2.648761869749933e-07 - ArtUnc_9: 1.327394089226868e-05 - ArtUnc_10: 9.450645674430266e-06 - ArtUnc_11: -8.199154663590711e-07 - ArtUnc_12: -8.214564737369652e-06 - ArtUnc_13: -5.0745939988412775e-06 - ArtUnc_14: 3.2478786953558675e-06 - ArtUnc_15: -1.7893533817475178e-07 - ArtUnc_16: 1.4807563237978995e-06 - ArtUnc_17: 1.7190417260902134e-07 - ArtUnc_18: -6.033542958120814e-07 - ArtUnc_19: 1.6291715458255954e-07 - ArtUnc_20: 1.8580993552632983e-07 +- ArtUnc_1: -8.89652464e-08 + ArtUnc_2: -7.29367707e-08 + ArtUnc_3: -2.62978203e-08 + ArtUnc_4: -6.40331648e-08 + ArtUnc_5: -8.44390696e-08 + ArtUnc_6: 5.17308438e-08 + ArtUnc_7: -4.12732674e-08 + ArtUnc_8: -2.64876187e-07 + ArtUnc_9: 1.32739409e-05 + ArtUnc_10: 9.45064567e-06 + ArtUnc_11: -8.19915466e-07 + ArtUnc_12: -8.21456474e-06 + ArtUnc_13: -5.07459400e-06 + ArtUnc_14: 3.24787870e-06 + ArtUnc_15: -1.78935338e-07 + ArtUnc_16: 1.48075632e-06 + ArtUnc_17: 1.71904173e-07 + ArtUnc_18: -6.03354296e-07 + ArtUnc_19: 1.62917155e-07 + ArtUnc_20: 1.85809936e-07 ArtUnc_21: 0.0 - ArtUnc_22: -9.994175684317754e-09 + ArtUnc_22: -9.99417568e-09 ArtUnc_23: 0.0 ArtUnc_24: 0.0 - ArtUnc_25: 2.545880388475473e-10 - syst_singletop-xsec: 1.9209774703870815e-07 - syst_wjet-scale: 5.599165790908809e-06 - syst_laltrealcr-mujet-fake: 9.1126916e-06 - syst_eta-jes: 8.110405678315356e-06 - syst_statNP3-jes: 1.3571776858687582e-05 - syst_laltrealcr-ejet-fake: 2.0078812000000003e-06 - syst_pileoffmu-jes: 7.35678361415116e-07 - syst_lstat-ejet-fake: 4.9156690512737296e-06 - syst_lstat-mujet-fake: 3.343992551886891e-07 + ArtUnc_25: 2.54588039e-10 + syst_singletop-xsec: 1.92097747e-07 + syst_wjet-scale: 5.59916579e-06 + syst_laltrealcr-mujet-fake: 9.11269160e-06 + syst_eta-jes: 8.11040568e-06 + syst_statNP3-jes: 1.35717769e-05 + syst_laltrealcr-ejet-fake: 2.00788120e-06 + syst_pileoffmu-jes: 7.35678361e-07 + syst_lstat-ejet-fake: 4.91566905e-06 + syst_lstat-mujet-fake: 3.34399255e-07 syst_etmsoft-scale: 0.0 syst_hardscat-model: 6.39432936e-05 - syst_statNP2-jes: 2.5508037143978843e-06 - syst_elen-scale: 2.154389531487268e-06 - syst_punch-jes: 4.385605116944411e-07 - syst_pileoffnpv-jes: 2.60917148357314e-06 - syst_lrec-eff: 6.950358000000001e-07 - syst_pileoffpt-jes: 1.3048714279263764e-06 + syst_statNP2-jes: 2.55080371e-06 + syst_elen-scale: 2.15438953e-06 + syst_punch-jes: 4.38560512e-07 + syst_pileoffnpv-jes: 2.60917148e-06 + syst_lrec-eff: 6.95035800e-07 + syst_pileoffpt-jes: 1.30487143e-06 syst_jeten-res: 0.0 - syst_lighttag-eff: 1.8343254655842479e-06 - syst_laltfakecr-ejet-fake: 5.405834000000001e-07 - syst_laltpar-mujet-fake: 3.2821135000000006e-06 - syst_jetrec-eff: 1.1970061e-06 - syst_c/tautag-eff: 5.116891402139615e-06 - syst_dibos-xsec: 1.8148157000000002e-06 - syst_elen-res: 5.991255182389643e-07 - syst_flavcomp-jes: 2.2070350842453486e-06 - syst_detNP2-jes: 1.0811668000000002e-06 - syst_detNP3-jes: 2.2217636836188966e-06 - syst_jetvxfrac: 1.1501568277857779e-05 - syst_ltrig-eff: 1.2938269753738822e-06 - syst_btag-jes: 1.906451183432876e-05 - syst_mup-scale: 2.64013100494592e-07 + syst_lighttag-eff: 1.83432547e-06 + syst_laltfakecr-ejet-fake: 5.40583400e-07 + syst_laltpar-mujet-fake: 3.28211350e-06 + syst_jetrec-eff: 1.19700610e-06 + syst_c/tautag-eff: 5.11689140e-06 + syst_dibos-xsec: 1.81481570e-06 + syst_elen-res: 5.99125518e-07 + syst_flavcomp-jes: 2.20703508e-06 + syst_detNP2-jes: 1.08116680e-06 + syst_detNP3-jes: 2.22176368e-06 + syst_jetvxfrac: 1.15015683e-05 + syst_ltrig-eff: 1.29382698e-06 + syst_btag-jes: 1.90645118e-05 + syst_mup-scale: 2.64013100e-07 syst_singlephpt-jes: 0.0 syst_etmsoft-res: 0.0 - syst_detNP1-jes: 1.9871458268681713e-05 - syst_laltpar-ejet-fake: 5.6761257e-06 - syst_statNP1-jes: 6.034123138761332e-06 + syst_detNP1-jes: 1.98714583e-05 + syst_laltpar-ejet-fake: 5.67612570e-06 + syst_statNP1-jes: 6.03412314e-06 syst_muid-res: 0.0 - syst_pdf: 5.1741554e-06 - syst_isr-fsr: 4.967394852131114e-05 - syst_zjet-xsec: 1.5831371e-05 - syst_ps-model: 0.00011939170520000001 - syst_flavres-jes: 9.34452975690223e-06 - syst_laltfakecr-mujet-fake: 3.6296314000000003e-06 - syst_mums-res: 1.5445240000000003e-07 - syst_mod-NP2-jes: 1.1635300229825961e-06 - syst_lid-eff: 1.4868550632744027e-06 - syst_mixNP2-jes: 1.957878368267373e-06 - syst_mixNP1-jes: 1.5813184143109177e-05 - syst_btag-eff: 5.31105610089902e-06 - syst_pileoffrho-jes: 9.295737935621312e-06 - syst_modNP4-jes: 2.841344379725071e-06 - syst_mcstat: 4.6721851000000005e-06 - syst_modNP3-jes: 1.3560333044910071e-05 - syst_mod-NP1-jes: 2.0969295372512035e-05 -- ArtUnc_1: 3.9350062337906806e-08 - ArtUnc_2: 1.429819670640598e-07 - ArtUnc_3: 9.194336221081832e-08 - ArtUnc_4: -1.5621219264922165e-08 - ArtUnc_5: -8.941780224772984e-08 - ArtUnc_6: 1.349284380999345e-07 - ArtUnc_7: -6.303175279840705e-08 - ArtUnc_8: -4.1799546477131765e-08 - ArtUnc_9: 1.5630274682446833e-05 - ArtUnc_10: 2.7098141810237906e-06 - ArtUnc_11: 9.951909876655678e-06 - ArtUnc_12: 4.1663097142426086e-06 - ArtUnc_13: 7.821927709494007e-06 - ArtUnc_14: 1.6806825617225547e-06 - ArtUnc_15: 9.465834381757065e-08 - ArtUnc_16: 9.33608150407633e-07 - ArtUnc_17: 1.2097510992121232e-07 - ArtUnc_18: -4.899827732582568e-07 - ArtUnc_19: 1.3550009500190608e-07 - ArtUnc_20: 1.5300783972735578e-07 + syst_pdf: 5.17415540e-06 + syst_isr-fsr: 4.96739485e-05 + syst_zjet-xsec: 1.58313710e-05 + syst_ps-model: 1.19391705e-04 + syst_flavres-jes: 9.34452976e-06 + syst_laltfakecr-mujet-fake: 3.62963140e-06 + syst_mums-res: 1.54452400e-07 + syst_mod-NP2-jes: 1.16353002e-06 + syst_lid-eff: 1.48685506e-06 + syst_mixNP2-jes: 1.95787837e-06 + syst_mixNP1-jes: 1.58131841e-05 + syst_btag-eff: 5.31105610e-06 + syst_pileoffrho-jes: 9.29573794e-06 + syst_modNP4-jes: 2.84134438e-06 + syst_mcstat: 4.67218510e-06 + syst_modNP3-jes: 1.35603330e-05 + syst_mod-NP1-jes: 2.09692954e-05 +- ArtUnc_1: 3.93500623e-08 + ArtUnc_2: 1.42981967e-07 + ArtUnc_3: 9.19433622e-08 + ArtUnc_4: -1.56212193e-08 + ArtUnc_5: -8.94178022e-08 + ArtUnc_6: 1.34928438e-07 + ArtUnc_7: -6.30317528e-08 + ArtUnc_8: -4.17995465e-08 + ArtUnc_9: 1.56302747e-05 + ArtUnc_10: 2.70981418e-06 + ArtUnc_11: 9.95190988e-06 + ArtUnc_12: 4.16630971e-06 + ArtUnc_13: 7.82192771e-06 + ArtUnc_14: 1.68068256e-06 + ArtUnc_15: 9.46583438e-08 + ArtUnc_16: 9.33608150e-07 + ArtUnc_17: 1.20975110e-07 + ArtUnc_18: -4.89982773e-07 + ArtUnc_19: 1.35500095e-07 + ArtUnc_20: 1.53007840e-07 ArtUnc_21: 0.0 - ArtUnc_22: -8.341941170718781e-09 + ArtUnc_22: -8.34194117e-09 ArtUnc_23: 0.0 ArtUnc_24: 0.0 - ArtUnc_25: 2.1177474910067453e-10 - syst_singletop-xsec: 8.035696811233361e-07 - syst_wjet-scale: 2.5608319570947308e-06 - syst_laltrealcr-mujet-fake: 7.7809563e-06 - syst_eta-jes: 8.730267651636686e-06 - syst_statNP3-jes: 1.3439054403279851e-05 - syst_laltrealcr-ejet-fake: 1.1305663000000002e-06 - syst_pileoffmu-jes: 8.001223478485321e-07 - syst_lstat-ejet-fake: 6.565723620984352e-06 - syst_lstat-mujet-fake: 5.183466016566593e-07 + ArtUnc_25: 2.11774749e-10 + syst_singletop-xsec: 8.03569681e-07 + syst_wjet-scale: 2.56083196e-06 + syst_laltrealcr-mujet-fake: 7.78095630e-06 + syst_eta-jes: 8.73026765e-06 + syst_statNP3-jes: 1.34390544e-05 + syst_laltrealcr-ejet-fake: 1.13056630e-06 + syst_pileoffmu-jes: 8.00122348e-07 + syst_lstat-ejet-fake: 6.56572362e-06 + syst_lstat-mujet-fake: 5.18346602e-07 syst_etmsoft-scale: 0.0 - syst_hardscat-model: 0.0001159162977 - syst_statNP2-jes: 2.686625865881351e-06 - syst_elen-scale: 1.6002446956970643e-06 - syst_punch-jes: 5.672357746400763e-07 - syst_pileoffnpv-jes: 2.8542494588624906e-06 - syst_lrec-eff: 8.645506999999999e-07 - syst_pileoffpt-jes: 1.0942872701640589e-06 + syst_hardscat-model: 1.15916298e-04 + syst_statNP2-jes: 2.68662587e-06 + syst_elen-scale: 1.60024470e-06 + syst_punch-jes: 5.67235775e-07 + syst_pileoffnpv-jes: 2.85424946e-06 + syst_lrec-eff: 8.64550700e-07 + syst_pileoffpt-jes: 1.09428727e-06 syst_jeten-res: 0.0 - syst_lighttag-eff: 1.6625975000000002e-06 - syst_laltfakecr-ejet-fake: 2.660156e-07 - syst_laltpar-mujet-fake: 4.3892574e-06 - syst_jetrec-eff: 1.1305663000000002e-06 - syst_c/tautag-eff: 7.848023772136171e-06 - syst_dibos-xsec: 2.3276365000000002e-06 - syst_elen-res: 3.687819653843007e-07 - syst_flavcomp-jes: 3.455644011044396e-07 - syst_detNP2-jes: 1.8621092e-06 - syst_detNP3-jes: 2.763515130949868e-06 - syst_jetvxfrac: 1.3204122834558706e-05 - syst_ltrig-eff: 9.310546e-07 - syst_btag-jes: 1.69918115221846e-05 - syst_mup-scale: 3.029396818520273e-07 + syst_lighttag-eff: 1.66259750e-06 + syst_laltfakecr-ejet-fake: 2.66015600e-07 + syst_laltpar-mujet-fake: 4.38925740e-06 + syst_jetrec-eff: 1.13056630e-06 + syst_c/tautag-eff: 7.84802377e-06 + syst_dibos-xsec: 2.32763650e-06 + syst_elen-res: 3.68781965e-07 + syst_flavcomp-jes: 3.45564401e-07 + syst_detNP2-jes: 1.86210920e-06 + syst_detNP3-jes: 2.76351513e-06 + syst_jetvxfrac: 1.32041228e-05 + syst_ltrig-eff: 9.31054600e-07 + syst_btag-jes: 1.69918115e-05 + syst_mup-scale: 3.02939682e-07 syst_singlephpt-jes: 0.0 syst_etmsoft-res: 0.0 - syst_detNP1-jes: 2.514005757632507e-05 - syst_laltpar-ejet-fake: 3.1921872000000003e-06 - syst_statNP1-jes: 8.12219294009151e-06 - syst_muid-res: 6.65039e-08 - syst_pdf: 6.65039e-08 - syst_isr-fsr: 3.452037700587666e-05 - syst_zjet-xsec: 1.7756541300000002e-05 + syst_detNP1-jes: 2.51400576e-05 + syst_laltpar-ejet-fake: 3.19218720e-06 + syst_statNP1-jes: 8.12219294e-06 + syst_muid-res: 6.65039000e-08 + syst_pdf: 6.65039000e-08 + syst_isr-fsr: 3.45203770e-05 + syst_zjet-xsec: 1.77565413e-05 syst_ps-model: 8.53245037e-05 - syst_flavres-jes: 1.2096902197999886e-05 - syst_laltfakecr-mujet-fake: 4.6552730000000004e-06 + syst_flavres-jes: 1.20969022e-05 + syst_laltfakecr-mujet-fake: 4.65527300e-06 syst_mums-res: 0.0 - syst_mod-NP2-jes: 2.202675028365594e-06 - syst_lid-eff: 1.5960936000000001e-06 - syst_mixNP2-jes: 1.960173543678898e-06 - syst_mixNP1-jes: 1.8987387554062416e-05 - syst_btag-eff: 1.0843807072762238e-05 - syst_pileoffrho-jes: 8.214443170159508e-06 - syst_modNP4-jes: 3.959496104713408e-06 - syst_mcstat: 5.2538081e-06 - syst_modNP3-jes: 1.4066282320505692e-05 - syst_mod-NP1-jes: 1.9207628490380945e-05 -- ArtUnc_1: -3.01501545172999e-08 - ArtUnc_2: -1.2919758631823057e-07 - ArtUnc_3: 6.682930169032262e-08 - ArtUnc_4: 4.998223199932223e-10 - ArtUnc_5: -4.073353143669229e-09 - ArtUnc_6: -9.883030765039171e-09 - ArtUnc_7: -1.361082758467838e-07 - ArtUnc_8: 8.588917784235802e-08 - ArtUnc_9: -3.1971364008966765e-06 - ArtUnc_10: -1.545181254235586e-05 - ArtUnc_11: 1.154134389067946e-05 - ArtUnc_12: -1.8621657897994856e-06 - ArtUnc_13: -4.366011685587787e-06 - ArtUnc_14: 1.748268638542272e-06 - ArtUnc_15: -4.5900001847580046e-07 - ArtUnc_16: 1.4777918445658107e-06 - ArtUnc_17: 1.7391642897658581e-07 - ArtUnc_18: -5.840720399195077e-07 - ArtUnc_19: 1.6098743560002213e-07 - ArtUnc_20: 1.8659427528860374e-07 + syst_mod-NP2-jes: 2.20267503e-06 + syst_lid-eff: 1.59609360e-06 + syst_mixNP2-jes: 1.96017354e-06 + syst_mixNP1-jes: 1.89873876e-05 + syst_btag-eff: 1.08438071e-05 + syst_pileoffrho-jes: 8.21444317e-06 + syst_modNP4-jes: 3.95949610e-06 + syst_mcstat: 5.25380810e-06 + syst_modNP3-jes: 1.40662823e-05 + syst_mod-NP1-jes: 1.92076285e-05 +- ArtUnc_1: -3.01501545e-08 + ArtUnc_2: -1.29197586e-07 + ArtUnc_3: 6.68293017e-08 + ArtUnc_4: 4.99822320e-10 + ArtUnc_5: -4.07335314e-09 + ArtUnc_6: -9.88303077e-09 + ArtUnc_7: -1.36108276e-07 + ArtUnc_8: 8.58891778e-08 + ArtUnc_9: -3.19713640e-06 + ArtUnc_10: -1.54518125e-05 + ArtUnc_11: 1.15413439e-05 + ArtUnc_12: -1.86216579e-06 + ArtUnc_13: -4.36601169e-06 + ArtUnc_14: 1.74826864e-06 + ArtUnc_15: -4.59000018e-07 + ArtUnc_16: 1.47779184e-06 + ArtUnc_17: 1.73916429e-07 + ArtUnc_18: -5.84072040e-07 + ArtUnc_19: 1.60987436e-07 + ArtUnc_20: 1.86594275e-07 ArtUnc_21: 0.0 - ArtUnc_22: -1.0376498619398598e-08 + ArtUnc_22: -1.03764986e-08 ArtUnc_23: 0.0 ArtUnc_24: 0.0 - ArtUnc_25: 2.56896928050277e-10 - syst_singletop-xsec: 5.661020182722103e-07 - syst_wjet-scale: 3.2157530999999995e-06 - syst_laltrealcr-mujet-fake: 5.3595885e-06 - syst_eta-jes: 3.3758375287599462e-06 - syst_statNP3-jes: 5.79357237996634e-06 - syst_laltrealcr-ejet-fake: 2.2969665e-06 - syst_pileoffmu-jes: 8.552676196346191e-07 - syst_lstat-ejet-fake: 3.1827701450269258e-06 - syst_lstat-mujet-fake: 1.4587696498040077e-06 + ArtUnc_25: 2.56896928e-10 + syst_singletop-xsec: 5.66102018e-07 + syst_wjet-scale: 3.21575310e-06 + syst_laltrealcr-mujet-fake: 5.35958850e-06 + syst_eta-jes: 3.37583753e-06 + syst_statNP3-jes: 5.79357238e-06 + syst_laltrealcr-ejet-fake: 2.29696650e-06 + syst_pileoffmu-jes: 8.55267620e-07 + syst_lstat-ejet-fake: 3.18277015e-06 + syst_lstat-mujet-fake: 1.45876965e-06 syst_etmsoft-scale: 0.0 - syst_hardscat-model: 8.493671679999999e-05 - syst_statNP2-jes: 3.34715924802914e-07 - syst_elen-scale: 8.44923576931701e-07 - syst_punch-jes: 1.822624651390063e-07 - syst_pileoffnpv-jes: 3.0166567593811113e-06 + syst_hardscat-model: 8.49367168e-05 + syst_statNP2-jes: 3.34715925e-07 + syst_elen-scale: 8.44923577e-07 + syst_punch-jes: 1.82262465e-07 + syst_pileoffnpv-jes: 3.01665676e-06 syst_lrec-eff: 0.0 - syst_pileoffpt-jes: 7.553777788776354e-07 + syst_pileoffpt-jes: 7.55377779e-07 syst_jeten-res: 0.0 - syst_lighttag-eff: 5.614806999999999e-07 - syst_laltfakecr-ejet-fake: 1.7865295e-06 - syst_laltpar-mujet-fake: 5.614806999999999e-07 - syst_jetrec-eff: 3.573059e-07 - syst_c/tautag-eff: 5.10437e-07 - syst_dibos-xsec: 1.1229613999999998e-06 - syst_elen-res: 2.3251511924188389e-07 - syst_flavcomp-jes: 5.590333894760144e-06 - syst_detNP2-jes: 1.3753412154207186e-06 - syst_detNP3-jes: 2.921109248082781e-07 - syst_jetvxfrac: 1.7790395432496513e-06 - syst_ltrig-eff: 5.614806999999999e-07 - syst_btag-jes: 1.080593441205106e-05 - syst_mup-scale: 1.250310195837017e-07 + syst_lighttag-eff: 5.61480700e-07 + syst_laltfakecr-ejet-fake: 1.78652950e-06 + syst_laltpar-mujet-fake: 5.61480700e-07 + syst_jetrec-eff: 3.57305900e-07 + syst_c/tautag-eff: 5.10437000e-07 + syst_dibos-xsec: 1.12296140e-06 + syst_elen-res: 2.32515119e-07 + syst_flavcomp-jes: 5.59033389e-06 + syst_detNP2-jes: 1.37534122e-06 + syst_detNP3-jes: 2.92110925e-07 + syst_jetvxfrac: 1.77903954e-06 + syst_ltrig-eff: 5.61480700e-07 + syst_btag-jes: 1.08059344e-05 + syst_mup-scale: 1.25031020e-07 syst_singlephpt-jes: 0.0 syst_etmsoft-res: 0.0 - syst_detNP1-jes: 1.2635249075552677e-06 - syst_laltpar-ejet-fake: 6.7888121e-06 - syst_statNP1-jes: 2.4065088158187675e-06 - syst_muid-res: 1.0208739999999999e-07 - syst_pdf: 4.7470641e-06 - syst_isr-fsr: 3.900228875825765e-05 - syst_zjet-xsec: 5.818981800000001e-06 + syst_detNP1-jes: 1.26352491e-06 + syst_laltpar-ejet-fake: 6.78881210e-06 + syst_statNP1-jes: 2.40650882e-06 + syst_muid-res: 1.02087400e-07 + syst_pdf: 4.74706410e-06 + syst_isr-fsr: 3.90022888e-05 + syst_zjet-xsec: 5.81898180e-06 syst_ps-model: 6.95725631e-05 - syst_flavres-jes: 4.302835559797415e-06 - syst_laltfakecr-mujet-fake: 1.4802673e-06 - syst_mums-res: 2.0417479999999998e-07 - syst_mod-NP2-jes: 1.5971050886483677e-06 - syst_lid-eff: 1.531311e-07 - syst_mixNP2-jes: 1.1762222976314427e-06 - syst_mixNP1-jes: 2.7601382250774253e-06 - syst_btag-eff: 7.200419071381978e-06 - syst_pileoffrho-jes: 1.0898367867988793e-05 - syst_modNP4-jes: 5.797449878610508e-07 - syst_mcstat: 4.7981078e-06 - syst_modNP3-jes: 4.594500117217146e-06 - syst_mod-NP1-jes: 1.9651824499999997e-05 -- ArtUnc_1: 1.5856113881826393e-08 - ArtUnc_2: 2.0866828886744868e-07 - ArtUnc_3: -1.3584951484187687e-08 - ArtUnc_4: -3.57276041002449e-08 - ArtUnc_5: 2.0762281599807692e-07 - ArtUnc_6: -1.0188221667621973e-07 - ArtUnc_7: -5.397370982260626e-08 - ArtUnc_8: 1.0187445356023677e-07 - ArtUnc_9: -1.110854427795403e-05 - ArtUnc_10: -3.6218073859764196e-06 - ArtUnc_11: -6.329260295007307e-06 - ArtUnc_12: -5.921221872486553e-06 - ArtUnc_13: 7.841324439579814e-06 - ArtUnc_14: 4.229195023124523e-06 - ArtUnc_15: 5.892238827178742e-07 - ArtUnc_16: 1.0328170690893983e-06 - ArtUnc_17: 4.91156678607581e-08 - ArtUnc_18: -7.768818112071004e-07 - ArtUnc_19: 1.9640796997097553e-07 - ArtUnc_20: 2.267201753789076e-07 + syst_flavres-jes: 4.30283556e-06 + syst_laltfakecr-mujet-fake: 1.48026730e-06 + syst_mums-res: 2.04174800e-07 + syst_mod-NP2-jes: 1.59710509e-06 + syst_lid-eff: 1.53131100e-07 + syst_mixNP2-jes: 1.17622230e-06 + syst_mixNP1-jes: 2.76013823e-06 + syst_btag-eff: 7.20041907e-06 + syst_pileoffrho-jes: 1.08983679e-05 + syst_modNP4-jes: 5.79744988e-07 + syst_mcstat: 4.79810780e-06 + syst_modNP3-jes: 4.59450012e-06 + syst_mod-NP1-jes: 1.96518245e-05 +- ArtUnc_1: 1.58561139e-08 + ArtUnc_2: 2.08668289e-07 + ArtUnc_3: -1.35849515e-08 + ArtUnc_4: -3.57276041e-08 + ArtUnc_5: 2.07622816e-07 + ArtUnc_6: -1.01882217e-07 + ArtUnc_7: -5.39737098e-08 + ArtUnc_8: 1.01874454e-07 + ArtUnc_9: -1.11085443e-05 + ArtUnc_10: -3.62180739e-06 + ArtUnc_11: -6.32926030e-06 + ArtUnc_12: -5.92122187e-06 + ArtUnc_13: 7.84132444e-06 + ArtUnc_14: 4.22919502e-06 + ArtUnc_15: 5.89223883e-07 + ArtUnc_16: 1.03281707e-06 + ArtUnc_17: 4.91156679e-08 + ArtUnc_18: -7.76881811e-07 + ArtUnc_19: 1.96407970e-07 + ArtUnc_20: 2.26720175e-07 ArtUnc_21: 0.0 - ArtUnc_22: -1.2203699526795473e-08 + ArtUnc_22: -1.22036995e-08 ArtUnc_23: 0.0 ArtUnc_24: 0.0 - ArtUnc_25: 3.168162899313319e-10 - syst_singletop-xsec: 4.7153697595416635e-08 - syst_wjet-scale: 3.0900066646163906e-06 - syst_laltrealcr-mujet-fake: 6.479359600000001e-06 - syst_eta-jes: 7.42622084893836e-06 - syst_statNP3-jes: 1.067633024212472e-05 - syst_laltrealcr-ejet-fake: 1.36121e-06 - syst_pileoffmu-jes: 1.2250890000000003e-06 - syst_lstat-ejet-fake: 4.243832783587497e-06 - syst_lstat-mujet-fake: 2.5934533677479144e-07 + ArtUnc_25: 3.16816290e-10 + syst_singletop-xsec: 4.71536976e-08 + syst_wjet-scale: 3.09000666e-06 + syst_laltrealcr-mujet-fake: 6.47935960e-06 + syst_eta-jes: 7.42622085e-06 + syst_statNP3-jes: 1.06763302e-05 + syst_laltrealcr-ejet-fake: 1.36121000e-06 + syst_pileoffmu-jes: 1.22508900e-06 + syst_lstat-ejet-fake: 4.24383278e-06 + syst_lstat-mujet-fake: 2.59345337e-07 syst_etmsoft-scale: 0.0 - syst_hardscat-model: 3.4520285600000004e-05 - syst_statNP2-jes: 1.7845354078271103e-06 - syst_elen-scale: 1.3182670555162147e-06 - syst_punch-jes: 2.9162951373650436e-07 - syst_pileoffnpv-jes: 3.336936282606451e-06 - syst_lrec-eff: 4.900355999999999e-07 - syst_pileoffpt-jes: 1.2495729862785406e-06 + syst_hardscat-model: 3.45202856e-05 + syst_statNP2-jes: 1.78453541e-06 + syst_elen-scale: 1.31826706e-06 + syst_punch-jes: 2.91629514e-07 + syst_pileoffnpv-jes: 3.33693628e-06 + syst_lrec-eff: 4.90035600e-07 + syst_pileoffpt-jes: 1.24957299e-06 syst_jeten-res: 0.0 - syst_lighttag-eff: 1.0755281912612192e-06 - syst_laltfakecr-ejet-fake: 1.36121e-06 - syst_laltpar-mujet-fake: 3.7297154000000004e-06 - syst_jetrec-eff: 6.80605e-07 - syst_c/tautag-eff: 4.152092149096119e-06 - syst_dibos-xsec: 1.4428826e-06 - syst_elen-res: 3.1366957210368685e-07 - syst_flavcomp-jes: 2.389534271294421e-06 - syst_detNP2-jes: 6.69488413227436e-07 - syst_detNP3-jes: 1.7224013598724628e-06 - syst_jetvxfrac: 8.524000925208288e-06 - syst_ltrig-eff: 7.895018000000001e-07 - syst_btag-jes: 1.3910760372307003e-05 - syst_mup-scale: 2.2117044633549029e-07 + syst_lighttag-eff: 1.07552819e-06 + syst_laltfakecr-ejet-fake: 1.36121000e-06 + syst_laltpar-mujet-fake: 3.72971540e-06 + syst_jetrec-eff: 6.80605000e-07 + syst_c/tautag-eff: 4.15209215e-06 + syst_dibos-xsec: 1.44288260e-06 + syst_elen-res: 3.13669572e-07 + syst_flavcomp-jes: 2.38953427e-06 + syst_detNP2-jes: 6.69488413e-07 + syst_detNP3-jes: 1.72240136e-06 + syst_jetvxfrac: 8.52400093e-06 + syst_ltrig-eff: 7.89501800e-07 + syst_btag-jes: 1.39107604e-05 + syst_mup-scale: 2.21170446e-07 syst_singlephpt-jes: 0.0 syst_etmsoft-res: 0.0 - syst_detNP1-jes: 1.421261647852314e-05 - syst_laltpar-ejet-fake: 3.2941281999999997e-06 - syst_statNP1-jes: 3.6452990316103788e-06 - syst_muid-res: 5.44484e-08 - syst_pdf: 2.72242e-06 - syst_isr-fsr: 2.5396293821011984e-05 + syst_detNP1-jes: 1.42126165e-05 + syst_laltpar-ejet-fake: 3.29412820e-06 + syst_statNP1-jes: 3.64529903e-06 + syst_muid-res: 5.44484000e-08 + syst_pdf: 2.72242000e-06 + syst_isr-fsr: 2.53962938e-05 syst_zjet-xsec: 1.15975092e-05 - syst_ps-model: 4.08363e-07 - syst_flavres-jes: 8.294707123892949e-06 - syst_laltfakecr-mujet-fake: 3.3213524e-06 + syst_ps-model: 4.08363000e-07 + syst_flavres-jes: 8.29470712e-06 + syst_laltfakecr-mujet-fake: 3.32135240e-06 syst_mums-res: 0.0 - syst_mod-NP2-jes: 5.792744267344364e-07 - syst_lid-eff: 1.0483084656138718e-06 - syst_mixNP2-jes: 8.926050893665127e-07 - syst_mixNP1-jes: 1.2154340055764608e-05 - syst_btag-eff: 1.2529048906543226e-06 - syst_pileoffrho-jes: 8.136529587682169e-06 - syst_modNP4-jes: 2.0053723440205913e-06 - syst_mcstat: 4.274199400000001e-06 - syst_modNP3-jes: 1.0723527368832879e-05 - syst_mod-NP1-jes: 1.6647609430086225e-05 -- ArtUnc_1: 1.1754955977231583e-08 - ArtUnc_2: -8.748454423277843e-09 - ArtUnc_3: -2.682955240840753e-08 - ArtUnc_4: -2.608550762416329e-08 - ArtUnc_5: 3.689416343931658e-08 - ArtUnc_6: 1.2151429276024362e-08 - ArtUnc_7: 9.854495682312948e-08 - ArtUnc_8: 2.4467159077175194e-08 - ArtUnc_9: -3.758374941141376e-06 - ArtUnc_10: 2.643846558734014e-06 - ArtUnc_11: -4.469647672504858e-06 - ArtUnc_12: 4.028319091301463e-06 - ArtUnc_13: -7.712507505457928e-07 - ArtUnc_14: -4.276119136883348e-06 - ArtUnc_15: -3.7994374073503907e-06 - ArtUnc_16: 4.130920585595796e-06 - ArtUnc_17: 3.9871627055247315e-07 - ArtUnc_18: -8.911745258926627e-07 - ArtUnc_19: 2.146116072604695e-07 - ArtUnc_20: 3.6015704741388534e-07 + syst_mod-NP2-jes: 5.79274427e-07 + syst_lid-eff: 1.04830847e-06 + syst_mixNP2-jes: 8.92605089e-07 + syst_mixNP1-jes: 1.21543401e-05 + syst_btag-eff: 1.25290489e-06 + syst_pileoffrho-jes: 8.13652959e-06 + syst_modNP4-jes: 2.00537234e-06 + syst_mcstat: 4.27419940e-06 + syst_modNP3-jes: 1.07235274e-05 + syst_mod-NP1-jes: 1.66476094e-05 +- ArtUnc_1: 1.17549560e-08 + ArtUnc_2: -8.74845442e-09 + ArtUnc_3: -2.68295524e-08 + ArtUnc_4: -2.60855076e-08 + ArtUnc_5: 3.68941634e-08 + ArtUnc_6: 1.21514293e-08 + ArtUnc_7: 9.85449568e-08 + ArtUnc_8: 2.44671591e-08 + ArtUnc_9: -3.75837494e-06 + ArtUnc_10: 2.64384656e-06 + ArtUnc_11: -4.46964767e-06 + ArtUnc_12: 4.02831909e-06 + ArtUnc_13: -7.71250751e-07 + ArtUnc_14: -4.27611914e-06 + ArtUnc_15: -3.79943741e-06 + ArtUnc_16: 4.13092059e-06 + ArtUnc_17: 3.98716271e-07 + ArtUnc_18: -8.91174526e-07 + ArtUnc_19: 2.14611607e-07 + ArtUnc_20: 3.60157047e-07 ArtUnc_21: 0.0 - ArtUnc_22: -1.8309855230423054e-08 + ArtUnc_22: -1.83098552e-08 ArtUnc_23: 0.0 ArtUnc_24: 0.0 - ArtUnc_25: 4.749915241736384e-10 - syst_singletop-xsec: 3.7812249638005876e-07 - syst_wjet-scale: 1.5903872794973269e-06 - syst_laltrealcr-mujet-fake: 3.5392878000000004e-06 - syst_eta-jes: 2.94439017079849e-06 - syst_statNP3-jes: 5.2048350000000005e-06 - syst_laltrealcr-ejet-fake: 9.25304e-08 - syst_pileoffmu-jes: 1.101838059057115e-07 - syst_lstat-ejet-fake: 1.8931581196526793e-06 - syst_lstat-mujet-fake: 8.514203183623161e-07 + ArtUnc_25: 4.74991524e-10 + syst_singletop-xsec: 3.78122496e-07 + syst_wjet-scale: 1.59038728e-06 + syst_laltrealcr-mujet-fake: 3.53928780e-06 + syst_eta-jes: 2.94439017e-06 + syst_statNP3-jes: 5.20483500e-06 + syst_laltrealcr-ejet-fake: 9.25304000e-08 + syst_pileoffmu-jes: 1.10183806e-07 + syst_lstat-ejet-fake: 1.89315812e-06 + syst_lstat-mujet-fake: 8.51420318e-07 syst_etmsoft-scale: 0.0 syst_hardscat-model: 2.29706718e-05 - syst_statNP2-jes: 1.315256656537951e-06 - syst_elen-scale: 7.346876977908556e-07 - syst_punch-jes: 2.783131549253646e-07 - syst_pileoffnpv-jes: 7.412365124566045e-07 - syst_lrec-eff: 4.0482050000000006e-07 - syst_pileoffpt-jes: 8.048973128311137e-07 + syst_statNP2-jes: 1.31525666e-06 + syst_elen-scale: 7.34687698e-07 + syst_punch-jes: 2.78313155e-07 + syst_pileoffnpv-jes: 7.41236512e-07 + syst_lrec-eff: 4.04820500e-07 + syst_pileoffpt-jes: 8.04897313e-07 syst_jeten-res: 0.0 - syst_lighttag-eff: 8.212073000000001e-07 - syst_laltfakecr-ejet-fake: 4.626520000000001e-07 - syst_laltpar-mujet-fake: 1.8159091000000002e-06 - syst_jetrec-eff: 5.320498000000001e-07 - syst_c/tautag-eff: 3.5221757455295797e-06 - syst_dibos-xsec: 6.477128e-07 - syst_elen-res: 1.9933000481595842e-07 - syst_flavcomp-jes: 2.26938351676792e-06 - syst_detNP2-jes: 1.1264382694119229e-06 - syst_detNP3-jes: 1.0839511562895019e-06 - syst_jetvxfrac: 5.855115938048637e-06 - syst_ltrig-eff: 4.3381335181378126e-07 - syst_btag-jes: 5.4525383280703105e-06 - syst_mup-scale: 8.732365002867207e-08 + syst_lighttag-eff: 8.21207300e-07 + syst_laltfakecr-ejet-fake: 4.62652000e-07 + syst_laltpar-mujet-fake: 1.81590910e-06 + syst_jetrec-eff: 5.32049800e-07 + syst_c/tautag-eff: 3.52217575e-06 + syst_dibos-xsec: 6.47712800e-07 + syst_elen-res: 1.99330005e-07 + syst_flavcomp-jes: 2.26938352e-06 + syst_detNP2-jes: 1.12643827e-06 + syst_detNP3-jes: 1.08395116e-06 + syst_jetvxfrac: 5.85511594e-06 + syst_ltrig-eff: 4.33813352e-07 + syst_btag-jes: 5.45253833e-06 + syst_mup-scale: 8.73236500e-08 syst_singlephpt-jes: 0.0 syst_etmsoft-res: 0.0 - syst_detNP1-jes: 1.0549277238950152e-05 - syst_laltpar-ejet-fake: 4.62652e-08 - syst_statNP1-jes: 4.797920264138707e-06 - syst_muid-res: 4.62652e-08 - syst_pdf: 4.510857e-07 - syst_isr-fsr: 1.1050411785861241e-05 - syst_zjet-xsec: 7.2867690000000005e-06 - syst_ps-model: 5.355196900000001e-06 - syst_flavres-jes: 4.08465648999693e-06 - syst_laltfakecr-mujet-fake: 1.4226549e-06 - syst_mums-res: 1.15663e-08 - syst_mod-NP2-jes: 1.1956863669939152e-06 - syst_lid-eff: 7.982423099356926e-07 - syst_mixNP2-jes: 1.4934865908468579e-06 - syst_mixNP1-jes: 7.567825759044306e-06 - syst_btag-eff: 5.588917066065878e-06 - syst_pileoffrho-jes: 6.10142880874101e-07 - syst_modNP4-jes: 1.8182558372140726e-06 - syst_mcstat: 2.5098871000000005e-06 - syst_modNP3-jes: 5.83329229303095e-06 - syst_mod-NP1-jes: 3.3831526357120526e-06 -- ArtUnc_1: 2.6468185837118432e-08 - ArtUnc_2: -2.9584803887430473e-08 - ArtUnc_3: 2.2012578683225462e-08 - ArtUnc_4: 1.7796279772693715e-08 - ArtUnc_5: -3.589143403989489e-08 - ArtUnc_6: -4.6797448279002054e-08 - ArtUnc_7: 2.5473023904466208e-08 - ArtUnc_8: -1.7407349877973364e-08 - ArtUnc_9: -6.370112341652758e-07 - ArtUnc_10: 1.07020613598477e-06 - ArtUnc_11: -8.873025736564173e-07 - ArtUnc_12: 2.0567976240046525e-06 - ArtUnc_13: -1.6363867917655102e-06 - ArtUnc_14: -1.386995048401819e-06 - ArtUnc_15: 1.455088343449072e-06 - ArtUnc_16: -3.656036076350521e-06 - ArtUnc_17: -1.5279575018554575e-06 - ArtUnc_18: -2.509661141780655e-06 - ArtUnc_19: 4.425442518987703e-07 - ArtUnc_20: 3.5004836154673025e-07 + syst_detNP1-jes: 1.05492772e-05 + syst_laltpar-ejet-fake: 4.62652000e-08 + syst_statNP1-jes: 4.79792026e-06 + syst_muid-res: 4.62652000e-08 + syst_pdf: 4.51085700e-07 + syst_isr-fsr: 1.10504118e-05 + syst_zjet-xsec: 7.28676900e-06 + syst_ps-model: 5.35519690e-06 + syst_flavres-jes: 4.08465649e-06 + syst_laltfakecr-mujet-fake: 1.42265490e-06 + syst_mums-res: 1.15663000e-08 + syst_mod-NP2-jes: 1.19568637e-06 + syst_lid-eff: 7.98242310e-07 + syst_mixNP2-jes: 1.49348659e-06 + syst_mixNP1-jes: 7.56782576e-06 + syst_btag-eff: 5.58891707e-06 + syst_pileoffrho-jes: 6.10142881e-07 + syst_modNP4-jes: 1.81825584e-06 + syst_mcstat: 2.50988710e-06 + syst_modNP3-jes: 5.83329229e-06 + syst_mod-NP1-jes: 3.38315264e-06 +- ArtUnc_1: 2.64681858e-08 + ArtUnc_2: -2.95848039e-08 + ArtUnc_3: 2.20125787e-08 + ArtUnc_4: 1.77962798e-08 + ArtUnc_5: -3.58914340e-08 + ArtUnc_6: -4.67974483e-08 + ArtUnc_7: 2.54730239e-08 + ArtUnc_8: -1.74073499e-08 + ArtUnc_9: -6.37011234e-07 + ArtUnc_10: 1.07020614e-06 + ArtUnc_11: -8.87302574e-07 + ArtUnc_12: 2.05679762e-06 + ArtUnc_13: -1.63638679e-06 + ArtUnc_14: -1.38699505e-06 + ArtUnc_15: 1.45508834e-06 + ArtUnc_16: -3.65603608e-06 + ArtUnc_17: -1.52795750e-06 + ArtUnc_18: -2.50966114e-06 + ArtUnc_19: 4.42544252e-07 + ArtUnc_20: 3.50048362e-07 ArtUnc_21: 0.0 - ArtUnc_22: -1.5974721936983343e-08 + ArtUnc_22: -1.59747219e-08 ArtUnc_23: 0.0 ArtUnc_24: 0.0 - ArtUnc_25: 5.798939284403355e-10 - syst_singletop-xsec: 2.96210673250036e-07 - syst_wjet-scale: 1.915434e-07 - syst_laltrealcr-mujet-fake: 5.661171600000001e-07 - syst_eta-jes: 8.758171323468029e-07 - syst_statNP3-jes: 1.7050112377103853e-06 - syst_laltrealcr-ejet-fake: 2.341086e-07 - syst_pileoffmu-jes: 3.878049475035134e-07 - syst_lstat-ejet-fake: 1.1379963639302067e-06 - syst_lstat-mujet-fake: 3.1333162839590584e-07 + ArtUnc_25: 5.79893928e-10 + syst_singletop-xsec: 2.96210673e-07 + syst_wjet-scale: 1.91543400e-07 + syst_laltrealcr-mujet-fake: 5.66117160e-07 + syst_eta-jes: 8.75817132e-07 + syst_statNP3-jes: 1.70501124e-06 + syst_laltrealcr-ejet-fake: 2.34108600e-07 + syst_pileoffmu-jes: 3.87804948e-07 + syst_lstat-ejet-fake: 1.13799636e-06 + syst_lstat-mujet-fake: 3.13331628e-07 syst_etmsoft-scale: 0.0 - syst_hardscat-model: 1.4123133360000001e-05 - syst_statNP2-jes: 6.646989046016357e-07 - syst_elen-scale: 3.112211875509095e-07 - syst_punch-jes: 1.645242717368401e-07 - syst_pileoffnpv-jes: 2.774258544984213e-07 - syst_lrec-eff: 2.0856948000000001e-07 - syst_pileoffpt-jes: 1.6588145032724426e-07 + syst_hardscat-model: 1.41231334e-05 + syst_statNP2-jes: 6.64698905e-07 + syst_elen-scale: 3.11221188e-07 + syst_punch-jes: 1.64524272e-07 + syst_pileoffnpv-jes: 2.77425854e-07 + syst_lrec-eff: 2.08569480e-07 + syst_pileoffpt-jes: 1.65881450e-07 syst_jeten-res: 0.0 - syst_lighttag-eff: 4.4489797812025665e-07 - syst_laltfakecr-ejet-fake: 9.7048656e-07 - syst_laltpar-mujet-fake: 5.6186064e-07 - syst_jetrec-eff: 2.2985208e-07 - syst_c/tautag-eff: 1.8134373822488834e-06 - syst_dibos-xsec: 3.1072596e-07 - syst_elen-res: 1.0434987047788033e-07 - syst_flavcomp-jes: 2.29176349482551e-06 - syst_detNP2-jes: 8.68087487068233e-07 - syst_detNP3-jes: 6.330741814368445e-07 - syst_jetvxfrac: 2.77387647035772e-06 - syst_ltrig-eff: 1.5964787427806611e-07 - syst_btag-jes: 1.7949535898864554e-06 - syst_mup-scale: 4.3146502151896396e-08 + syst_lighttag-eff: 4.44897978e-07 + syst_laltfakecr-ejet-fake: 9.70486560e-07 + syst_laltpar-mujet-fake: 5.61860640e-07 + syst_jetrec-eff: 2.29852080e-07 + syst_c/tautag-eff: 1.81343738e-06 + syst_dibos-xsec: 3.10725960e-07 + syst_elen-res: 1.04349870e-07 + syst_flavcomp-jes: 2.29176349e-06 + syst_detNP2-jes: 8.68087487e-07 + syst_detNP3-jes: 6.33074181e-07 + syst_jetvxfrac: 2.77387647e-06 + syst_ltrig-eff: 1.59647874e-07 + syst_btag-jes: 1.79495359e-06 + syst_mup-scale: 4.31465022e-08 syst_singlephpt-jes: 0.0 syst_etmsoft-res: 0.0 - syst_detNP1-jes: 5.429402747025549e-06 - syst_laltpar-ejet-fake: 4.0862592000000005e-07 - syst_statNP1-jes: 2.681103357663237e-06 - syst_muid-res: 8.513040000000001e-09 - syst_pdf: 8.8535616e-07 - syst_isr-fsr: 4.025227824850474e-06 + syst_detNP1-jes: 5.42940275e-06 + syst_laltpar-ejet-fake: 4.08625920e-07 + syst_statNP1-jes: 2.68110336e-06 + syst_muid-res: 8.51304000e-09 + syst_pdf: 8.85356160e-07 + syst_isr-fsr: 4.02522782e-06 syst_zjet-xsec: 3.09023352e-06 - syst_ps-model: 2.5241163599999997e-06 - syst_flavres-jes: 1.108331113975025e-06 - syst_laltfakecr-mujet-fake: 5.873997600000001e-07 - syst_mums-res: 2.9795640000000002e-08 - syst_mod-NP2-jes: 9.42862416796411e-07 - syst_lid-eff: 3.6404445645133567e-07 - syst_mixNP2-jes: 7.997359971196763e-07 - syst_mixNP1-jes: 3.43598464709926e-06 - syst_btag-eff: 5.047763888849473e-06 - syst_pileoffrho-jes: 1.1020750080276103e-06 - syst_modNP4-jes: 1.1331700476978638e-06 + syst_ps-model: 2.52411636e-06 + syst_flavres-jes: 1.10833111e-06 + syst_laltfakecr-mujet-fake: 5.87399760e-07 + syst_mums-res: 2.97956400e-08 + syst_mod-NP2-jes: 9.42862417e-07 + syst_lid-eff: 3.64044456e-07 + syst_mixNP2-jes: 7.99735997e-07 + syst_mixNP1-jes: 3.43598465e-06 + syst_btag-eff: 5.04776389e-06 + syst_pileoffrho-jes: 1.10207501e-06 + syst_modNP4-jes: 1.13317005e-06 syst_mcstat: 1.41742116e-06 - syst_modNP3-jes: 2.0443740314264796e-06 - syst_mod-NP1-jes: 5.850315378621385e-07 -- ArtUnc_1: -3.955905941633644e-09 - ArtUnc_2: -1.823865290553321e-08 - ArtUnc_3: -2.000019068663233e-08 - ArtUnc_4: 2.032052348871107e-08 - ArtUnc_5: -1.5487348910145677e-08 - ArtUnc_6: 1.3427980845897794e-08 - ArtUnc_7: 2.583712337312119e-09 - ArtUnc_8: 1.5871366483191812e-08 - ArtUnc_9: -1.7606583259738302e-07 - ArtUnc_10: 2.4708968388650605e-07 - ArtUnc_11: -1.8256466478604741e-07 - ArtUnc_12: 4.319283274364236e-07 - ArtUnc_13: -4.027334582125613e-07 - ArtUnc_14: -1.238168675475498e-07 - ArtUnc_15: 8.96289990758834e-07 - ArtUnc_16: -1.1884673630804518e-06 - ArtUnc_17: 4.12137086232924e-07 - ArtUnc_18: 2.312709145239587e-06 - ArtUnc_19: -7.481579789269448e-07 - ArtUnc_20: 1.0686407765882872e-06 + syst_modNP3-jes: 2.04437403e-06 + syst_mod-NP1-jes: 5.85031538e-07 +- ArtUnc_1: -3.95590594e-09 + ArtUnc_2: -1.82386529e-08 + ArtUnc_3: -2.00001907e-08 + ArtUnc_4: 2.03205235e-08 + ArtUnc_5: -1.54873489e-08 + ArtUnc_6: 1.34279808e-08 + ArtUnc_7: 2.58371234e-09 + ArtUnc_8: 1.58713665e-08 + ArtUnc_9: -1.76065833e-07 + ArtUnc_10: 2.47089684e-07 + ArtUnc_11: -1.82564665e-07 + ArtUnc_12: 4.31928327e-07 + ArtUnc_13: -4.02733458e-07 + ArtUnc_14: -1.23816868e-07 + ArtUnc_15: 8.96289991e-07 + ArtUnc_16: -1.18846736e-06 + ArtUnc_17: 4.12137086e-07 + ArtUnc_18: 2.31270915e-06 + ArtUnc_19: -7.48157979e-07 + ArtUnc_20: 1.06864078e-06 ArtUnc_21: 0.0 - ArtUnc_22: -2.4676650598015744e-08 + ArtUnc_22: -2.46766506e-08 ArtUnc_23: 0.0 ArtUnc_24: 0.0 - ArtUnc_25: 8.364047609253432e-10 - syst_singletop-xsec: 1.6003407188046426e-07 - syst_wjet-scale: 1.0738681106042026e-07 - syst_laltrealcr-mujet-fake: 5.406624e-08 - syst_eta-jes: 2.726615233449003e-07 - syst_statNP3-jes: 4.909770849593222e-07 - syst_laltrealcr-ejet-fake: 1.2915824e-07 - syst_pileoffmu-jes: 1.2943735051458987e-07 - syst_lstat-ejet-fake: 4.0301674223342333e-07 - syst_lstat-mujet-fake: 1.4827200153583685e-07 + ArtUnc_25: 8.36404761e-10 + syst_singletop-xsec: 1.60034072e-07 + syst_wjet-scale: 1.07386811e-07 + syst_laltrealcr-mujet-fake: 5.40662400e-08 + syst_eta-jes: 2.72661523e-07 + syst_statNP3-jes: 4.90977085e-07 + syst_laltrealcr-ejet-fake: 1.29158240e-07 + syst_pileoffmu-jes: 1.29437351e-07 + syst_lstat-ejet-fake: 4.03016742e-07 + syst_lstat-mujet-fake: 1.48272002e-07 syst_etmsoft-scale: 0.0 syst_hardscat-model: 7.27341112e-06 - syst_statNP2-jes: 2.7204039737678964e-07 - syst_elen-scale: 1.1548553926380915e-07 - syst_punch-jes: 1.494368534196943e-07 - syst_pileoffnpv-jes: 2.2057500100857126e-07 - syst_lrec-eff: 8.335888477053421e-08 - syst_pileoffpt-jes: 2.991452662565129e-08 + syst_statNP2-jes: 2.72040397e-07 + syst_elen-scale: 1.15485539e-07 + syst_punch-jes: 1.49436853e-07 + syst_pileoffnpv-jes: 2.20575001e-07 + syst_lrec-eff: 8.33588848e-08 + syst_pileoffpt-jes: 2.99145266e-08 syst_jeten-res: 0.0 - syst_lighttag-eff: 1.2544410221483034e-07 - syst_laltfakecr-ejet-fake: 4.835924800000001e-07 - syst_laltpar-mujet-fake: 1.2014720000000002e-08 - syst_jetrec-eff: 1.1564168000000001e-07 - syst_c/tautag-eff: 7.682799733606066e-07 - syst_dibos-xsec: 9.161224000000001e-08 - syst_elen-res: 2.83664937525384e-08 - syst_flavcomp-jes: 9.272667139382308e-07 - syst_detNP2-jes: 4.200664199204673e-07 - syst_detNP3-jes: 2.9862361630591246e-07 - syst_jetvxfrac: 1.085257891215649e-06 - syst_ltrig-eff: 5.3325895289204484e-08 - syst_btag-jes: 6.825871060941096e-07 - syst_mup-scale: 2.604512734119763e-08 + syst_lighttag-eff: 1.25444102e-07 + syst_laltfakecr-ejet-fake: 4.83592480e-07 + syst_laltpar-mujet-fake: 1.20147200e-08 + syst_jetrec-eff: 1.15641680e-07 + syst_c/tautag-eff: 7.68279973e-07 + syst_dibos-xsec: 9.16122400e-08 + syst_elen-res: 2.83664938e-08 + syst_flavcomp-jes: 9.27266714e-07 + syst_detNP2-jes: 4.20066420e-07 + syst_detNP3-jes: 2.98623616e-07 + syst_jetvxfrac: 1.08525789e-06 + syst_ltrig-eff: 5.33258953e-08 + syst_btag-jes: 6.82587106e-07 + syst_mup-scale: 2.60451273e-08 syst_singlephpt-jes: 0.0 syst_etmsoft-res: 0.0 - syst_detNP1-jes: 2.7569245218376988e-06 - syst_laltpar-ejet-fake: 2.553128e-07 - syst_statNP1-jes: 1.0211084600099304e-06 - syst_muid-res: 6.007360000000001e-09 - syst_pdf: 3.9948944000000007e-07 - syst_isr-fsr: 7.309237113423851e-07 - syst_zjet-xsec: 7.1187216e-07 - syst_ps-model: 1.12638e-06 - syst_flavres-jes: 6.117721782346093e-07 - syst_laltfakecr-mujet-fake: 2.6132016e-07 - syst_mums-res: 1.5018400000000003e-09 - syst_mod-NP2-jes: 4.856566029156586e-07 - syst_lid-eff: 1.314496130699334e-07 - syst_mixNP2-jes: 3.9555454963340573e-07 - syst_mixNP1-jes: 1.729723804700449e-06 - syst_btag-eff: 2.9143134577445993e-06 - syst_pileoffrho-jes: 3.679806823376054e-07 - syst_modNP4-jes: 5.386939091399911e-07 - syst_mcstat: 7.3740344e-07 - syst_modNP3-jes: 6.980503206298823e-07 - syst_mod-NP1-jes: 2.919244357659674e-07 -- ArtUnc_1: -6.254459426165127e-10 - ArtUnc_2: -8.61534643616709e-09 - ArtUnc_3: -9.54429365441051e-09 - ArtUnc_4: 1.6960672792480386e-08 - ArtUnc_5: -8.606559670488466e-09 - ArtUnc_6: 3.4260985753828605e-09 - ArtUnc_7: 1.3014192256047073e-08 - ArtUnc_8: 7.632332174025943e-09 - ArtUnc_9: -5.0133825409767506e-08 - ArtUnc_10: 5.76935491443712e-08 - ArtUnc_11: -7.293566383208616e-08 - ArtUnc_12: 1.0249116095985153e-07 - ArtUnc_13: -8.022038641462903e-08 - ArtUnc_14: -3.505228550406349e-08 - ArtUnc_15: 1.7947705720223632e-07 - ArtUnc_16: -1.384195539161828e-07 - ArtUnc_17: 2.3754154890454272e-07 - ArtUnc_18: 6.387061102595041e-07 - ArtUnc_19: 9.983261268237533e-08 - ArtUnc_20: -1.5676891667057984e-06 + syst_detNP1-jes: 2.75692452e-06 + syst_laltpar-ejet-fake: 2.55312800e-07 + syst_statNP1-jes: 1.02110846e-06 + syst_muid-res: 6.00736000e-09 + syst_pdf: 3.99489440e-07 + syst_isr-fsr: 7.30923711e-07 + syst_zjet-xsec: 7.11872160e-07 + syst_ps-model: 1.12638000e-06 + syst_flavres-jes: 6.11772178e-07 + syst_laltfakecr-mujet-fake: 2.61320160e-07 + syst_mums-res: 1.50184000e-09 + syst_mod-NP2-jes: 4.85656603e-07 + syst_lid-eff: 1.31449613e-07 + syst_mixNP2-jes: 3.95554550e-07 + syst_mixNP1-jes: 1.72972380e-06 + syst_btag-eff: 2.91431346e-06 + syst_pileoffrho-jes: 3.67980682e-07 + syst_modNP4-jes: 5.38693909e-07 + syst_mcstat: 7.37403440e-07 + syst_modNP3-jes: 6.98050321e-07 + syst_mod-NP1-jes: 2.91924436e-07 +- ArtUnc_1: -6.25445943e-10 + ArtUnc_2: -8.61534644e-09 + ArtUnc_3: -9.54429365e-09 + ArtUnc_4: 1.69606728e-08 + ArtUnc_5: -8.60655967e-09 + ArtUnc_6: 3.42609858e-09 + ArtUnc_7: 1.30141923e-08 + ArtUnc_8: 7.63233217e-09 + ArtUnc_9: -5.01338254e-08 + ArtUnc_10: 5.76935491e-08 + ArtUnc_11: -7.29356638e-08 + ArtUnc_12: 1.02491161e-07 + ArtUnc_13: -8.02203864e-08 + ArtUnc_14: -3.50522855e-08 + ArtUnc_15: 1.79477057e-07 + ArtUnc_16: -1.38419554e-07 + ArtUnc_17: 2.37541549e-07 + ArtUnc_18: 6.38706110e-07 + ArtUnc_19: 9.98326127e-08 + ArtUnc_20: -1.56768917e-06 ArtUnc_21: 0.0 - ArtUnc_22: 5.2808005104722916e-08 + ArtUnc_22: 5.28080051e-08 ArtUnc_23: 0.0 ArtUnc_24: 0.0 - ArtUnc_25: 9.3600136100836e-10 - syst_singletop-xsec: 1.0257758733633549e-07 - syst_wjet-scale: 4.918015930746105e-08 - syst_laltrealcr-mujet-fake: 1.3087726400000002e-07 - syst_eta-jes: 4.6764955844985296e-08 - syst_statNP3-jes: 1.4158352403830106e-07 - syst_laltrealcr-ejet-fake: 3.6533224e-08 - syst_pileoffmu-jes: 8.201959629156767e-08 - syst_lstat-ejet-fake: 2.3414499417137887e-07 - syst_lstat-mujet-fake: 7.509845290426183e-08 + ArtUnc_25: 9.36001361e-10 + syst_singletop-xsec: 1.02577587e-07 + syst_wjet-scale: 4.91801593e-08 + syst_laltrealcr-mujet-fake: 1.30877264e-07 + syst_eta-jes: 4.67649558e-08 + syst_statNP3-jes: 1.41583524e-07 + syst_laltrealcr-ejet-fake: 3.65332240e-08 + syst_pileoffmu-jes: 8.20195963e-08 + syst_lstat-ejet-fake: 2.34144994e-07 + syst_lstat-mujet-fake: 7.50984529e-08 syst_etmsoft-scale: 0.0 - syst_hardscat-model: 3.781389416e-06 - syst_statNP2-jes: 8.261066869264953e-08 - syst_elen-scale: 3.148358399659098e-08 - syst_punch-jes: 3.142978557135228e-08 - syst_pileoffnpv-jes: 4.485046492893415e-08 - syst_lrec-eff: 2.408784e-08 - syst_pileoffpt-jes: 7.509416046032107e-08 + syst_hardscat-model: 3.78138942e-06 + syst_statNP2-jes: 8.26106687e-08 + syst_elen-scale: 3.14835840e-08 + syst_punch-jes: 3.14297856e-08 + syst_pileoffnpv-jes: 4.48504649e-08 + syst_lrec-eff: 2.40878400e-08 + syst_pileoffpt-jes: 7.50941605e-08 syst_jeten-res: 0.0 - syst_lighttag-eff: 1.3907120908196635e-09 - syst_laltfakecr-ejet-fake: 7.1862056e-08 - syst_laltpar-mujet-fake: 1.1642456e-08 - syst_jetrec-eff: 3.5328832e-08 - syst_c/tautag-eff: 2.041683251715078e-07 - syst_dibos-xsec: 4.01464e-09 - syst_elen-res: 8.234906447057672e-09 - syst_flavcomp-jes: 4.2710953835772873e-07 - syst_detNP2-jes: 1.3481541297938946e-07 - syst_detNP3-jes: 9.449596149375004e-08 - syst_jetvxfrac: 3.3622915590611264e-07 - syst_ltrig-eff: 1.3050667819236225e-08 - syst_btag-jes: 2.0272302229146857e-07 - syst_mup-scale: 8.276392384414842e-09 + syst_lighttag-eff: 1.39071209e-09 + syst_laltfakecr-ejet-fake: 7.18620560e-08 + syst_laltpar-mujet-fake: 1.16424560e-08 + syst_jetrec-eff: 3.53288320e-08 + syst_c/tautag-eff: 2.04168325e-07 + syst_dibos-xsec: 4.01464000e-09 + syst_elen-res: 8.23490645e-09 + syst_flavcomp-jes: 4.27109538e-07 + syst_detNP2-jes: 1.34815413e-07 + syst_detNP3-jes: 9.44959615e-08 + syst_jetvxfrac: 3.36229156e-07 + syst_ltrig-eff: 1.30506678e-08 + syst_btag-jes: 2.02723022e-07 + syst_mup-scale: 8.27639238e-09 syst_singlephpt-jes: 0.0 syst_etmsoft-res: 0.0 - syst_detNP1-jes: 1.162627752696449e-06 - syst_laltpar-ejet-fake: 9.233672e-09 - syst_statNP1-jes: 3.644675728388987e-07 - syst_muid-res: 4.01464e-09 + syst_detNP1-jes: 1.16262775e-06 + syst_laltpar-ejet-fake: 9.23367200e-09 + syst_statNP1-jes: 3.64467573e-07 + syst_muid-res: 4.01464000e-09 syst_pdf: 1.68213416e-07 - syst_isr-fsr: 4.0156811622417787e-07 - syst_zjet-xsec: 2.5894428000000003e-07 + syst_isr-fsr: 4.01568116e-07 + syst_zjet-xsec: 2.58944280e-07 syst_ps-model: 1.61789992e-07 - syst_flavres-jes: 1.478281815853055e-07 - syst_laltfakecr-mujet-fake: 2.3284912e-08 - syst_mums-res: 6.824888000000001e-09 - syst_mod-NP2-jes: 3.099085609499903e-07 - syst_lid-eff: 3.4931982223945094e-08 - syst_mixNP2-jes: 1.562065160877596e-07 - syst_mixNP1-jes: 6.925858787835182e-07 - syst_btag-eff: 1.0727223816862859e-06 - syst_pileoffrho-jes: 2.7775180286602007e-07 - syst_modNP4-jes: 1.8122564771610002e-07 + syst_flavres-jes: 1.47828182e-07 + syst_laltfakecr-mujet-fake: 2.32849120e-08 + syst_mums-res: 6.82488800e-09 + syst_mod-NP2-jes: 3.09908561e-07 + syst_lid-eff: 3.49319822e-08 + syst_mixNP2-jes: 1.56206516e-07 + syst_mixNP1-jes: 6.92585879e-07 + syst_btag-eff: 1.07272238e-06 + syst_pileoffrho-jes: 2.77751803e-07 + syst_modNP4-jes: 1.81225648e-07 syst_mcstat: 3.88617152e-07 - syst_modNP3-jes: 1.358531575666625e-07 - syst_mod-NP1-jes: 1.605919982050383e-07 + syst_modNP3-jes: 1.35853158e-07 + syst_mod-NP1-jes: 1.60591998e-07 diff --git a/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_8TEV_LJ_DIF/uncertainties_dSig_dyt.yaml b/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_8TEV_LJ_DIF/uncertainties_dSig_dyt.yaml index e2bdea856d..d4da0e5c3d 100644 --- a/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_8TEV_LJ_DIF/uncertainties_dSig_dyt.yaml +++ b/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_8TEV_LJ_DIF/uncertainties_dSig_dyt.yaml @@ -324,408 +324,408 @@ definitions: treatment: MULT type: ATLASLUMI8 bins: -- ArtUnc_1: -0.8141493533459113 - ArtUnc_2: 0.2505660636113921 - ArtUnc_3: -0.1429318609112955 - ArtUnc_4: -0.6554940495346454 - ArtUnc_5: 0.054625576780213 - ArtUnc_6: -0.0034402663556912143 - ArtUnc_7: 0.22537167616786455 - ArtUnc_8: -0.0447174768237914 - ArtUnc_9: 0.12802649464370958 - ArtUnc_10: 1.8161883427093422e-05 - ArtUnc_11: -7.735796750855379e-06 - ArtUnc_12: 4.921352279785885e-06 - ArtUnc_13: -2.8677699694406525e-06 - ArtUnc_14: -3.52836285731683e-06 - ArtUnc_15: -1.499384601838056e-06 - ArtUnc_16: -1.8695575821489225e-06 - ArtUnc_17: -7.690951402397031e-07 - ArtUnc_18: -5.314700761958101e-07 - ArtUnc_19: 3.981375586483519e-07 - ArtUnc_20: 2.871040493179287e-07 - ArtUnc_21: 2.4522929974801546e-07 - ArtUnc_22: -1.1025013021164948e-07 - ArtUnc_23: -5.948989742695756e-07 - ArtUnc_24: -5.610902314048098e-07 - ArtUnc_25: -0.00010061224703916684 - syst_singletop-xsec: 0.5394515474022182 - syst_wjet-scale: 0.8396472000000001 - syst_laltrealcr-mujet-fake: 0.45815532000000003 - syst_eta-jes: 0.0581458257371963 - syst_statNP3-jes: 0.07362061144359779 - syst_laltrealcr-ejet-fake: 0.05293428000000001 - syst_pileoffmu-jes: 0.1570623956590807 - syst_lstat-ejet-fake: 0.7635135956872972 - syst_lstat-mujet-fake: 0.042680884230966915 +- ArtUnc_1: -8.14149353e-01 + ArtUnc_2: 2.50566064e-01 + ArtUnc_3: -1.42931861e-01 + ArtUnc_4: -6.55494050e-01 + ArtUnc_5: 5.46255768e-02 + ArtUnc_6: -3.44026636e-03 + ArtUnc_7: 2.25371676e-01 + ArtUnc_8: -4.47174768e-02 + ArtUnc_9: 1.28026495e-01 + ArtUnc_10: 1.81618834e-05 + ArtUnc_11: -7.73579675e-06 + ArtUnc_12: 4.92135228e-06 + ArtUnc_13: -2.86776997e-06 + ArtUnc_14: -3.52836286e-06 + ArtUnc_15: -1.49938460e-06 + ArtUnc_16: -1.86955758e-06 + ArtUnc_17: -7.69095140e-07 + ArtUnc_18: -5.31470076e-07 + ArtUnc_19: 3.98137559e-07 + ArtUnc_20: 2.87104049e-07 + ArtUnc_21: 2.45229300e-07 + ArtUnc_22: -1.10250130e-07 + ArtUnc_23: -5.94898974e-07 + ArtUnc_24: -5.61090231e-07 + ArtUnc_25: -1.00612247e-04 + syst_singletop-xsec: 5.39451547e-01 + syst_wjet-scale: 8.39647200e-01 + syst_laltrealcr-mujet-fake: 4.58155320e-01 + syst_eta-jes: 5.81458257e-02 + syst_statNP3-jes: 7.36206114e-02 + syst_laltrealcr-ejet-fake: 5.29342800e-02 + syst_pileoffmu-jes: 1.57062396e-01 + syst_lstat-ejet-fake: 7.63513596e-01 + syst_lstat-mujet-fake: 4.26808842e-02 syst_etmsoft-scale: 0.0 - syst_hardscat-model: 5.828246760000001 - syst_statNP2-jes: 0.14064442985397183 - syst_elen-scale: 0.21172728507331412 - syst_punch-jes: 0.0060539015623315194 - syst_pileoffnpv-jes: 1.086666515529627 - syst_lrec-eff: 0.44355276000000005 - syst_pileoffpt-jes: 0.022130828860501363 + syst_hardscat-model: 5.82824676e+00 + syst_statNP2-jes: 1.40644430e-01 + syst_elen-scale: 2.11727285e-01 + syst_punch-jes: 6.05390156e-03 + syst_pileoffnpv-jes: 1.08666652e+00 + syst_lrec-eff: 4.43552760e-01 + syst_pileoffpt-jes: 2.21308289e-02 syst_jeten-res: 0.0 - syst_lighttag-eff: 0.9427786635039423 - syst_laltfakecr-ejet-fake: 0.7155254400000002 - syst_laltpar-mujet-fake: 0.41252232000000005 - syst_jetrec-eff: 0.09126600000000001 - syst_c/tautag-eff: 1.8344484162379069 - syst_dibos-xsec: 0.16792944 - syst_elen-res: 0.06116184027414154 - syst_flavcomp-jes: 3.056162444132086 - syst_detNP2-jes: 0.3508035205499603 - syst_detNP3-jes: 0.05664377068673307 - syst_jetvxfrac: 1.187367503216403 - syst_ltrig-eff: 2.30172852 - syst_btag-jes: 0.9656805389070645 - syst_mup-scale: 0.032176928171763076 + syst_lighttag-eff: 9.42778664e-01 + syst_laltfakecr-ejet-fake: 7.15525440e-01 + syst_laltpar-mujet-fake: 4.12522320e-01 + syst_jetrec-eff: 9.12660000e-02 + syst_c/tautag-eff: 1.83444842e+00 + syst_dibos-xsec: 1.67929440e-01 + syst_elen-res: 6.11618403e-02 + syst_flavcomp-jes: 3.05616244e+00 + syst_detNP2-jes: 3.50803521e-01 + syst_detNP3-jes: 5.66437707e-02 + syst_jetvxfrac: 1.18736750e+00 + syst_ltrig-eff: 2.30172852e+00 + syst_btag-jes: 9.65680539e-01 + syst_mup-scale: 3.21769282e-02 syst_singlephpt-jes: 0.0 syst_etmsoft-res: 0.0 - syst_detNP1-jes: 0.335029517843956 - syst_laltpar-ejet-fake: 0.6479886 - syst_statNP1-jes: 1.595363095119158 - syst_muid-res: 0.005475960000000001 - syst_pdf: 0.38879316 - syst_isr-fsr: 11.78468718365993 - syst_zjet-xsec: 2.00237604 - syst_ps-model: 6.403222560000001 - syst_flavres-jes: 1.9411460779263754 - syst_laltfakecr-mujet-fake: 0.43077551999999997 - syst_mums-res: 0.0182532 - syst_mod-NP2-jes: 0.13507368 - syst_lid-eff: 2.4094224000000004 - syst_mixNP2-jes: 0.6842266253482544 - syst_mixNP1-jes: 0.5330582911745285 - syst_btag-eff: 7.6195853392974575 - syst_pileoffrho-jes: 3.007221624574729 - syst_modNP4-jes: 0.044440076073827786 + syst_detNP1-jes: 3.35029518e-01 + syst_laltpar-ejet-fake: 6.47988600e-01 + syst_statNP1-jes: 1.59536310e+00 + syst_muid-res: 5.47596000e-03 + syst_pdf: 3.88793160e-01 + syst_isr-fsr: 1.17846872e+01 + syst_zjet-xsec: 2.00237604e+00 + syst_ps-model: 6.40322256e+00 + syst_flavres-jes: 1.94114608e+00 + syst_laltfakecr-mujet-fake: 4.30775520e-01 + syst_mums-res: 1.82532000e-02 + syst_mod-NP2-jes: 1.35073680e-01 + syst_lid-eff: 2.40942240e+00 + syst_mixNP2-jes: 6.84226625e-01 + syst_mixNP1-jes: 5.33058291e-01 + syst_btag-eff: 7.61958534e+00 + syst_pileoffrho-jes: 3.00722162e+00 + syst_modNP4-jes: 4.44400761e-02 syst_mcstat: 0.273798 - syst_modNP3-jes: 0.22546027236531319 - syst_mod-NP1-jes: 4.05039567079057 + syst_modNP3-jes: 2.25460272e-01 + syst_mod-NP1-jes: 4.05039567e+00 lumi: 5.110896 -- ArtUnc_1: -0.2616642012488623 - ArtUnc_2: 0.49696569066969876 - ArtUnc_3: 0.1582036247740925 - ArtUnc_4: 0.5088424721443542 - ArtUnc_5: -0.4299836697284441 - ArtUnc_6: 0.4015498423029636 - ArtUnc_7: 0.027279937380359505 - ArtUnc_8: -0.03917778100600946 - ArtUnc_9: 0.11003030772608892 - ArtUnc_10: 1.6040468849617322e-05 - ArtUnc_11: -6.680917011986957e-06 - ArtUnc_12: 4.688085936684869e-06 - ArtUnc_13: -2.8150369151429956e-06 - ArtUnc_14: -3.3849825245553926e-06 - ArtUnc_15: -1.5283966392409229e-06 - ArtUnc_16: -1.7300367598390918e-06 - ArtUnc_17: -7.775915781037425e-07 - ArtUnc_18: -5.177654009822807e-07 - ArtUnc_19: 3.717946590599619e-07 - ArtUnc_20: 2.7890222828348094e-07 - ArtUnc_21: 2.3906771547634714e-07 - ArtUnc_22: -1.0677574802831495e-07 - ArtUnc_23: -5.756599746459576e-07 - ArtUnc_24: -5.416079551925264e-07 - ArtUnc_25: -9.738078881718213e-05 - syst_singletop-xsec: 0.4633094724383548 - syst_wjet-scale: 0.68134758 - syst_laltrealcr-mujet-fake: 0.35310714 - syst_eta-jes: 0.32095922336419247 - syst_statNP3-jes: 0.06115276064512786 - syst_laltrealcr-ejet-fake: 0.07294231999999999 - syst_pileoffmu-jes: 0.1976498589996307 - syst_lstat-ejet-fake: 0.6776504002768013 - syst_lstat-mujet-fake: 0.024406553096058034 +- ArtUnc_1: -2.61664201e-01 + ArtUnc_2: 4.96965691e-01 + ArtUnc_3: 1.58203625e-01 + ArtUnc_4: 5.08842472e-01 + ArtUnc_5: -4.29983670e-01 + ArtUnc_6: 4.01549842e-01 + ArtUnc_7: 2.72799374e-02 + ArtUnc_8: -3.91777810e-02 + ArtUnc_9: 1.10030308e-01 + ArtUnc_10: 1.60404688e-05 + ArtUnc_11: -6.68091701e-06 + ArtUnc_12: 4.68808594e-06 + ArtUnc_13: -2.81503692e-06 + ArtUnc_14: -3.38498252e-06 + ArtUnc_15: -1.52839664e-06 + ArtUnc_16: -1.73003676e-06 + ArtUnc_17: -7.77591578e-07 + ArtUnc_18: -5.17765401e-07 + ArtUnc_19: 3.71794659e-07 + ArtUnc_20: 2.78902228e-07 + ArtUnc_21: 2.39067715e-07 + ArtUnc_22: -1.06775748e-07 + ArtUnc_23: -5.75659975e-07 + ArtUnc_24: -5.41607955e-07 + ArtUnc_25: -9.73807888e-05 + syst_singletop-xsec: 4.63309472e-01 + syst_wjet-scale: 6.81347580e-01 + syst_laltrealcr-mujet-fake: 3.53107140e-01 + syst_eta-jes: 3.20959223e-01 + syst_statNP3-jes: 6.11527606e-02 + syst_laltrealcr-ejet-fake: 7.29423200e-02 + syst_pileoffmu-jes: 1.97649859e-01 + syst_lstat-ejet-fake: 6.77650400e-01 + syst_lstat-mujet-fake: 2.44065531e-02 syst_etmsoft-scale: 0.0 - syst_hardscat-model: 5.96303466 - syst_statNP2-jes: 0.10964870725693895 - syst_elen-scale: 0.18620345541985628 - syst_punch-jes: 0.005498234244955376 - syst_pileoffnpv-jes: 1.0867715211409281 - syst_lrec-eff: 0.40449831999999997 - syst_pileoffpt-jes: 0.024406553096058034 + syst_hardscat-model: 5.96303466e+00 + syst_statNP2-jes: 1.09648707e-01 + syst_elen-scale: 1.86203455e-01 + syst_punch-jes: 5.49823424e-03 + syst_pileoffnpv-jes: 1.08677152e+00 + syst_lrec-eff: 4.04498320e-01 + syst_pileoffpt-jes: 2.44065531e-02 syst_jeten-res: 0.0 syst_lighttag-eff: 0.82889 - syst_laltfakecr-ejet-fake: 0.68632092 - syst_laltpar-mujet-fake: 0.35973826 - syst_jetrec-eff: 0.09117789999999999 - syst_c/tautag-eff: 1.617164814853865 - syst_dibos-xsec: 0.1492002 - syst_elen-res: 0.04903078781457524 - syst_flavcomp-jes: 3.0365682333196817 - syst_detNP2-jes: 0.2846510119441299 - syst_detNP3-jes: 0.05701293176521534 - syst_jetvxfrac: 1.1148305498560496 - syst_ltrig-eff: 2.09543392 - syst_btag-jes: 0.9002508618105465 - syst_mup-scale: 0.029597293050674413 + syst_laltfakecr-ejet-fake: 6.86320920e-01 + syst_laltpar-mujet-fake: 3.59738260e-01 + syst_jetrec-eff: 9.11779000e-02 + syst_c/tautag-eff: 1.61716481e+00 + syst_dibos-xsec: 1.49200200e-01 + syst_elen-res: 4.90307878e-02 + syst_flavcomp-jes: 3.03656823e+00 + syst_detNP2-jes: 2.84651012e-01 + syst_detNP3-jes: 5.70129318e-02 + syst_jetvxfrac: 1.11483055e+00 + syst_ltrig-eff: 2.09543392e+00 + syst_btag-jes: 9.00250862e-01 + syst_mup-scale: 2.95972931e-02 syst_singlephpt-jes: 0.0 syst_etmsoft-res: 0.0 - syst_detNP1-jes: 0.3081286391308585 - syst_laltpar-ejet-fake: 0.54872518 - syst_statNP1-jes: 1.4540467195686515 - syst_muid-res: 0.0016577800000000002 - syst_pdf: 0.24203587999999998 - syst_isr-fsr: 10.53934101107919 - syst_zjet-xsec: 1.7821135 - syst_ps-model: 5.91661682 - syst_flavres-jes: 1.8646250405561642 - syst_laltfakecr-mujet-fake: 0.3812894 - syst_mums-res: 0.0082889 - syst_mod-NP2-jes: 0.10472591343221742 - syst_lid-eff: 2.1882696 - syst_mixNP2-jes: 0.6292820205851145 - syst_mixNP1-jes: 0.49811530585551894 - syst_btag-eff: 6.979915699297444 - syst_pileoffrho-jes: 2.774135709265587 - syst_modNP4-jes: 0.046499177575723846 - syst_mcstat: 0.24037809999999998 - syst_modNP3-jes: 0.21676226302892923 - syst_mod-NP1-jes: 3.7358603801011654 - lumi: 4.6417839999999995 -- ArtUnc_1: 0.12870895065416935 - ArtUnc_2: 0.35648034359873954 - ArtUnc_3: 0.5023260055782038 - ArtUnc_4: 0.3043363523846846 - ArtUnc_5: 0.307379689710172 - ArtUnc_6: -0.5583626836027064 - ArtUnc_7: 0.14590952153166384 - ArtUnc_8: -0.005834706150456213 - ArtUnc_9: 0.07639839410953086 - ArtUnc_10: 1.5004527176833748e-05 - ArtUnc_11: -4.825743882395786e-06 - ArtUnc_12: 4.852172993733167e-06 - ArtUnc_13: -2.519383077628906e-06 - ArtUnc_14: -2.7605187916243698e-06 - ArtUnc_15: -1.5705959681392116e-06 - ArtUnc_16: -1.4537834265554124e-06 - ArtUnc_17: -7.808633296405236e-07 - ArtUnc_18: -4.410000241252706e-07 - ArtUnc_19: 3.678206915386997e-07 - ArtUnc_20: 2.5652634854454406e-07 - ArtUnc_21: 2.2270165815715342e-07 - ArtUnc_22: -1.0091108745622348e-07 - ArtUnc_23: -5.421633338037342e-07 - ArtUnc_24: -5.045881491190621e-07 - ArtUnc_25: -9.17201470386624e-05 - syst_singletop-xsec: 0.349206905811841 - syst_wjet-scale: 0.48995788 - syst_laltrealcr-mujet-fake: 0.2758476 - syst_eta-jes: 0.6995271253015907 - syst_statNP3-jes: 0.039690384283813634 - syst_laltrealcr-ejet-fake: 0.05516952 - syst_pileoffmu-jes: 0.24432216 - syst_lstat-ejet-fake: 0.47550690568714643 - syst_lstat-mujet-fake: 0.05232851115217401 + syst_detNP1-jes: 3.08128639e-01 + syst_laltpar-ejet-fake: 5.48725180e-01 + syst_statNP1-jes: 1.45404672e+00 + syst_muid-res: 1.65778000e-03 + syst_pdf: 2.42035880e-01 + syst_isr-fsr: 1.05393410e+01 + syst_zjet-xsec: 1.78211350e+00 + syst_ps-model: 5.91661682e+00 + syst_flavres-jes: 1.86462504e+00 + syst_laltfakecr-mujet-fake: 3.81289400e-01 + syst_mums-res: 8.28890000e-03 + syst_mod-NP2-jes: 1.04725913e-01 + syst_lid-eff: 2.18826960e+00 + syst_mixNP2-jes: 6.29282021e-01 + syst_mixNP1-jes: 4.98115306e-01 + syst_btag-eff: 6.97991570e+00 + syst_pileoffrho-jes: 2.77413571e+00 + syst_modNP4-jes: 4.64991776e-02 + syst_mcstat: 2.40378100e-01 + syst_modNP3-jes: 2.16762263e-01 + syst_mod-NP1-jes: 3.73586038e+00 + lumi: 4.64178400e+00 +- ArtUnc_1: 1.28708951e-01 + ArtUnc_2: 3.56480344e-01 + ArtUnc_3: 5.02326006e-01 + ArtUnc_4: 3.04336352e-01 + ArtUnc_5: 3.07379690e-01 + ArtUnc_6: -5.58362684e-01 + ArtUnc_7: 1.45909522e-01 + ArtUnc_8: -5.83470615e-03 + ArtUnc_9: 7.63983941e-02 + ArtUnc_10: 1.50045272e-05 + ArtUnc_11: -4.82574388e-06 + ArtUnc_12: 4.85217299e-06 + ArtUnc_13: -2.51938308e-06 + ArtUnc_14: -2.76051879e-06 + ArtUnc_15: -1.57059597e-06 + ArtUnc_16: -1.45378343e-06 + ArtUnc_17: -7.80863330e-07 + ArtUnc_18: -4.41000024e-07 + ArtUnc_19: 3.67820692e-07 + ArtUnc_20: 2.56526349e-07 + ArtUnc_21: 2.22701658e-07 + ArtUnc_22: -1.00911087e-07 + ArtUnc_23: -5.42163334e-07 + ArtUnc_24: -5.04588149e-07 + ArtUnc_25: -9.17201470e-05 + syst_singletop-xsec: 3.49206906e-01 + syst_wjet-scale: 4.89957880e-01 + syst_laltrealcr-mujet-fake: 2.75847600e-01 + syst_eta-jes: 6.99527125e-01 + syst_statNP3-jes: 3.96903843e-02 + syst_laltrealcr-ejet-fake: 5.51695200e-02 + syst_pileoffmu-jes: 2.44322160e-01 + syst_lstat-ejet-fake: 4.75506906e-01 + syst_lstat-mujet-fake: 5.23285112e-02 syst_etmsoft-scale: 0.0 - syst_hardscat-model: 4.96394324 - syst_statNP2-jes: 0.0965511277877809 - syst_elen-scale: 0.14589832199389682 - syst_punch-jes: 0.0034127289881852618 - syst_pileoffnpv-jes: 0.8281375976489035 - syst_lrec-eff: 0.32313576 - syst_pileoffpt-jes: 0.011375763293950873 + syst_hardscat-model: 4.96394324e+00 + syst_statNP2-jes: 9.65511278e-02 + syst_elen-scale: 1.45898322e-01 + syst_punch-jes: 3.41272899e-03 + syst_pileoffnpv-jes: 8.28137598e-01 + syst_lrec-eff: 3.23135760e-01 + syst_pileoffpt-jes: 1.13757633e-02 syst_jeten-res: 0.0 - syst_lighttag-eff: 0.6502122 - syst_laltfakecr-ejet-fake: 0.49915279999999995 + syst_lighttag-eff: 6.50212200e-01 + syst_laltfakecr-ejet-fake: 4.99152800e-01 syst_laltpar-mujet-fake: 0.361229 - syst_jetrec-eff: 0.08012715999999999 - syst_c/tautag-eff: 1.2012509790923467 - syst_dibos-xsec: 0.09983056 - syst_elen-res: 0.03682656297633 - syst_flavcomp-jes: 2.6258228676624693 - syst_detNP2-jes: 0.22461876 - syst_detNP3-jes: 0.03415256 - syst_jetvxfrac: 0.8950200620974569 - syst_ltrig-eff: 1.6708483200000002 - syst_btag-jes: 0.680730846291879 - syst_mup-scale: 0.023644079999999998 + syst_jetrec-eff: 8.01271600e-02 + syst_c/tautag-eff: 1.20125098e+00 + syst_dibos-xsec: 9.98305600e-02 + syst_elen-res: 3.68265630e-02 + syst_flavcomp-jes: 2.62582287e+00 + syst_detNP2-jes: 2.24618760e-01 + syst_detNP3-jes: 3.41525600e-02 + syst_jetvxfrac: 8.95020062e-01 + syst_ltrig-eff: 1.67084832e+00 + syst_btag-jes: 6.80730846e-01 + syst_mup-scale: 2.36440800e-02 syst_singlephpt-jes: 0.0 syst_etmsoft-res: 0.0 - syst_detNP1-jes: 0.23428549519542008 - syst_laltpar-ejet-fake: 0.32707644 - syst_statNP1-jes: 1.1690698759091809 - syst_muid-res: 0.0065678 - syst_pdf: 0.06173731999999999 - syst_isr-fsr: 8.341458068021787 - syst_zjet-xsec: 1.2557633599999998 - syst_ps-model: 5.2397908399999995 - syst_flavres-jes: 1.5871327533470925 - syst_laltfakecr-mujet-fake: 0.3218222 - syst_mums-res: 0.0065678 - syst_mod-NP2-jes: 0.08540160622439838 - syst_lid-eff: 1.7299585199999998 - syst_mixNP2-jes: 0.47880072832640475 - syst_mixNP1-jes: 0.37528009198848317 - syst_btag-eff: 5.579234883114004 - syst_pileoffrho-jes: 2.2481627368105412 - syst_modNP4-jes: 0.023644079999999998 - syst_mcstat: 0.23381368 - syst_modNP3-jes: 0.17617381316846384 - syst_mod-NP1-jes: 3.065917137255724 + syst_detNP1-jes: 2.34285495e-01 + syst_laltpar-ejet-fake: 3.27076440e-01 + syst_statNP1-jes: 1.16906988e+00 + syst_muid-res: 6.56780000e-03 + syst_pdf: 6.17373200e-02 + syst_isr-fsr: 8.34145807e+00 + syst_zjet-xsec: 1.25576336e+00 + syst_ps-model: 5.23979084e+00 + syst_flavres-jes: 1.58713275e+00 + syst_laltfakecr-mujet-fake: 3.21822200e-01 + syst_mums-res: 6.56780000e-03 + syst_mod-NP2-jes: 8.54016062e-02 + syst_lid-eff: 1.72995852e+00 + syst_mixNP2-jes: 4.78800728e-01 + syst_mixNP1-jes: 3.75280092e-01 + syst_btag-eff: 5.57923488e+00 + syst_pileoffrho-jes: 2.24816274e+00 + syst_modNP4-jes: 2.36440800e-02 + syst_mcstat: 2.33813680e-01 + syst_modNP3-jes: 1.76173813e-01 + syst_mod-NP1-jes: 3.06591714e+00 lumi: 3.677968 -- ArtUnc_1: 0.16411375613270995 - ArtUnc_2: 0.07862385023610152 - ArtUnc_3: 0.3261235772634586 - ArtUnc_4: -0.18175116388063015 - ArtUnc_5: 0.43196943672193827 - ArtUnc_6: 0.29857449983900447 - ArtUnc_7: -0.5466475787878204 - ArtUnc_8: -0.08826423898658156 - ArtUnc_9: 0.027545924816736136 - ArtUnc_10: 1.0429618702074842e-05 - ArtUnc_11: -2.6900415803904866e-06 - ArtUnc_12: 4.472762171128009e-06 - ArtUnc_13: -1.9534350269913458e-06 - ArtUnc_14: -2.028893083121572e-06 - ArtUnc_15: -1.841426299358919e-06 - ArtUnc_16: -1.1637536154069281e-06 - ArtUnc_17: -7.71483950255487e-07 - ArtUnc_18: -3.7430731622107303e-07 - ArtUnc_19: 3.725083137674906e-07 - ArtUnc_20: 2.4490145993538036e-07 - ArtUnc_21: 1.9946512731551525e-07 - ArtUnc_22: -9.094625452547662e-08 - ArtUnc_23: -4.870951971964978e-07 - ArtUnc_24: -4.490747432486816e-07 - ArtUnc_25: -8.241473296330671e-05 - syst_singletop-xsec: 0.21391223179042176 - syst_wjet-scale: 0.31405718400000004 - syst_laltrealcr-mujet-fake: 0.19254696399999996 - syst_eta-jes: 0.9585860028298857 - syst_statNP3-jes: 0.03739652172960511 - syst_laltrealcr-ejet-fake: 0.017759186 - syst_pileoffmu-jes: 0.27671994338762085 - syst_lstat-ejet-fake: 0.23555540589058357 - syst_lstat-mujet-fake: 0.10765934358573065 +- ArtUnc_1: 1.64113756e-01 + ArtUnc_2: 7.86238502e-02 + ArtUnc_3: 3.26123577e-01 + ArtUnc_4: -1.81751164e-01 + ArtUnc_5: 4.31969437e-01 + ArtUnc_6: 2.98574500e-01 + ArtUnc_7: -5.46647579e-01 + ArtUnc_8: -8.82642390e-02 + ArtUnc_9: 2.75459248e-02 + ArtUnc_10: 1.04296187e-05 + ArtUnc_11: -2.69004158e-06 + ArtUnc_12: 4.47276217e-06 + ArtUnc_13: -1.95343503e-06 + ArtUnc_14: -2.02889308e-06 + ArtUnc_15: -1.84142630e-06 + ArtUnc_16: -1.16375362e-06 + ArtUnc_17: -7.71483950e-07 + ArtUnc_18: -3.74307316e-07 + ArtUnc_19: 3.72508314e-07 + ArtUnc_20: 2.44901460e-07 + ArtUnc_21: 1.99465127e-07 + ArtUnc_22: -9.09462545e-08 + ArtUnc_23: -4.87095197e-07 + ArtUnc_24: -4.49074743e-07 + ArtUnc_25: -8.24147330e-05 + syst_singletop-xsec: 2.13912232e-01 + syst_wjet-scale: 3.14057184e-01 + syst_laltrealcr-mujet-fake: 1.92546964e-01 + syst_eta-jes: 9.58586003e-01 + syst_statNP3-jes: 3.73965217e-02 + syst_laltrealcr-ejet-fake: 1.77591860e-02 + syst_pileoffmu-jes: 2.76719943e-01 + syst_lstat-ejet-fake: 2.35555406e-01 + syst_lstat-mujet-fake: 1.07659344e-01 syst_etmsoft-scale: 0.0 - syst_hardscat-model: 4.26687811 - syst_statNP2-jes: 0.07709384216230053 - syst_elen-scale: 0.09913926986015682 - syst_punch-jes: 0.008604770830222673 - syst_pileoffnpv-jes: 0.5547839997903166 - syst_lrec-eff: 0.232738806 - syst_pileoffpt-jes: 0.01295149998023827 + syst_hardscat-model: 4.26687811e+00 + syst_statNP2-jes: 7.70938422e-02 + syst_elen-scale: 9.91392699e-02 + syst_punch-jes: 8.60477083e-03 + syst_pileoffnpv-jes: 5.54784000e-01 + syst_lrec-eff: 2.32738806e-01 + syst_pileoffpt-jes: 1.29515000e-02 syst_jeten-res: 0.0 - syst_lighttag-eff: 0.49024744851648017 - syst_laltfakecr-ejet-fake: 0.260779626 - syst_laltpar-mujet-fake: 0.20095920999999997 - syst_jetrec-eff: 0.03364898399999999 - syst_c/tautag-eff: 0.79963099014256 - syst_dibos-xsec: 0.06636327399999999 - syst_elen-res: 0.025236737999999998 - syst_flavcomp-jes: 1.9815096151360259 - syst_detNP2-jes: 0.18343354866331543 - syst_detNP3-jes: 0.03999299936750315 - syst_jetvxfrac: 0.6229121933459856 - syst_ltrig-eff: 1.192669544 - syst_btag-jes: 0.4752500794837133 - syst_mup-scale: 0.01760478221740817 + syst_lighttag-eff: 4.90247449e-01 + syst_laltfakecr-ejet-fake: 2.60779626e-01 + syst_laltpar-mujet-fake: 2.00959210e-01 + syst_jetrec-eff: 3.36489840e-02 + syst_c/tautag-eff: 7.99630990e-01 + syst_dibos-xsec: 6.63632740e-02 + syst_elen-res: 2.52367380e-02 + syst_flavcomp-jes: 1.98150962e+00 + syst_detNP2-jes: 1.83433549e-01 + syst_detNP3-jes: 3.99929994e-02 + syst_jetvxfrac: 6.22912193e-01 + syst_ltrig-eff: 1.19266954e+00 + syst_btag-jes: 4.75250079e-01 + syst_mup-scale: 1.76047822e-02 syst_singlephpt-jes: 0.0 syst_etmsoft-res: 0.0 - syst_detNP1-jes: 0.19491171539146393 - syst_laltpar-ejet-fake: 0.250497992 - syst_statNP1-jes: 0.8979781648504658 - syst_muid-res: 0.002804082 - syst_pdf: 0.014955103999999999 - syst_isr-fsr: 6.667310267198808 - syst_zjet-xsec: 0.7608409159999999 - syst_ps-model: 3.297600432 - syst_flavres-jes: 1.2463143868143987 - syst_laltfakecr-mujet-fake: 0.20750206799999998 - syst_mums-res: 0.00934694 - syst_mod-NP2-jes: 0.07330498218072648 - syst_lid-eff: 1.230991998 - syst_mixNP2-jes: 0.3832815292991476 - syst_mixNP1-jes: 0.32154560435120055 - syst_btag-eff: 4.01071681625937 - syst_pileoffrho-jes: 1.7101300866330107 - syst_modNP4-jes: 0.030631734953885065 - syst_mcstat: 0.20843676199999997 - syst_modNP3-jes: 0.1346024267740495 - syst_mod-NP1-jes: 2.2692007958142004 - lumi: 2.6171432 -- ArtUnc_1: 0.035804518664529494 - ArtUnc_2: -0.02044939747415 - ArtUnc_3: 0.03444553428585042 - ArtUnc_4: -0.05454766298784176 - ArtUnc_5: 0.027081399611169392 - ArtUnc_6: 0.09745197128044582 - ArtUnc_7: 0.020770507844212607 - ArtUnc_8: 0.473129099492639 - ArtUnc_9: -0.1102852555037964 - ArtUnc_10: 1.2795013209325564e-05 - ArtUnc_11: 2.3312374831732324e-07 - ArtUnc_12: 7.737089052642426e-06 - ArtUnc_13: -2.9299259269528595e-06 - ArtUnc_14: -1.987156166874761e-06 - ArtUnc_15: -3.1811532807475854e-06 - ArtUnc_16: -1.3631669653749398e-06 - ArtUnc_17: -1.2050812720954243e-06 - ArtUnc_18: -4.853620192807271e-07 - ArtUnc_19: 5.368934522902929e-07 - ArtUnc_20: 3.3345342647891846e-07 - ArtUnc_21: 2.753362562221532e-07 - ArtUnc_22: -1.2902580919137524e-07 - ArtUnc_23: -6.877283115465248e-07 - ArtUnc_24: -6.239551004495684e-07 - ArtUnc_25: -0.00011640007192427719 - syst_singletop-xsec: 0.0823934793165242 - syst_wjet-scale: 0.12045110000000002 - syst_laltrealcr-mujet-fake: 0.08525435 - syst_eta-jes: 0.5775054988205571 - syst_statNP3-jes: 0.017767032650670735 - syst_laltrealcr-ejet-fake: 0.032850300000000006 - syst_pileoffmu-jes: 0.1972975312932646 - syst_lstat-ejet-fake: 0.029546227412437953 - syst_lstat-mujet-fake: 0.03725489732634993 + syst_detNP1-jes: 1.94911715e-01 + syst_laltpar-ejet-fake: 2.50497992e-01 + syst_statNP1-jes: 8.97978165e-01 + syst_muid-res: 2.80408200e-03 + syst_pdf: 1.49551040e-02 + syst_isr-fsr: 6.66731027e+00 + syst_zjet-xsec: 7.60840916e-01 + syst_ps-model: 3.29760043e+00 + syst_flavres-jes: 1.24631439e+00 + syst_laltfakecr-mujet-fake: 2.07502068e-01 + syst_mums-res: 9.34694000e-03 + syst_mod-NP2-jes: 7.33049822e-02 + syst_lid-eff: 1.23099200e+00 + syst_mixNP2-jes: 3.83281529e-01 + syst_mixNP1-jes: 3.21545604e-01 + syst_btag-eff: 4.01071682e+00 + syst_pileoffrho-jes: 1.71013009e+00 + syst_modNP4-jes: 3.06317350e-02 + syst_mcstat: 2.08436762e-01 + syst_modNP3-jes: 1.34602427e-01 + syst_mod-NP1-jes: 2.26920080e+00 + lumi: 2.61714320e+00 +- ArtUnc_1: 3.58045187e-02 + ArtUnc_2: -2.04493975e-02 + ArtUnc_3: 3.44455343e-02 + ArtUnc_4: -5.45476630e-02 + ArtUnc_5: 2.70813996e-02 + ArtUnc_6: 9.74519713e-02 + ArtUnc_7: 2.07705078e-02 + ArtUnc_8: 4.73129099e-01 + ArtUnc_9: -1.10285256e-01 + ArtUnc_10: 1.27950132e-05 + ArtUnc_11: 2.33123748e-07 + ArtUnc_12: 7.73708905e-06 + ArtUnc_13: -2.92992593e-06 + ArtUnc_14: -1.98715617e-06 + ArtUnc_15: -3.18115328e-06 + ArtUnc_16: -1.36316697e-06 + ArtUnc_17: -1.20508127e-06 + ArtUnc_18: -4.85362019e-07 + ArtUnc_19: 5.36893452e-07 + ArtUnc_20: 3.33453426e-07 + ArtUnc_21: 2.75336256e-07 + ArtUnc_22: -1.29025809e-07 + ArtUnc_23: -6.87728312e-07 + ArtUnc_24: -6.23955100e-07 + ArtUnc_25: -1.16400072e-04 + syst_singletop-xsec: 8.23934793e-02 + syst_wjet-scale: 1.20451100e-01 + syst_laltrealcr-mujet-fake: 8.52543500e-02 + syst_eta-jes: 5.77505499e-01 + syst_statNP3-jes: 1.77670327e-02 + syst_laltrealcr-ejet-fake: 3.28503000e-02 + syst_pileoffmu-jes: 1.97297531e-01 + syst_lstat-ejet-fake: 2.95462274e-02 + syst_lstat-mujet-fake: 3.72548973e-02 syst_etmsoft-scale: 0.0 - syst_hardscat-model: 1.7469320249999998 - syst_statNP2-jes: 0.02937751651674925 - syst_elen-scale: 0.04520596950029111 - syst_punch-jes: 0.0010160426543549981 - syst_pileoffnpv-jes: 0.2154045928081009 - syst_lrec-eff: 0.09776875 - syst_pileoffpt-jes: 0.013215789296283064 + syst_hardscat-model: 1.74693202e+00 + syst_statNP2-jes: 2.93775165e-02 + syst_elen-scale: 4.52059695e-02 + syst_punch-jes: 1.01604265e-03 + syst_pileoffnpv-jes: 2.15404593e-01 + syst_lrec-eff: 9.77687500e-02 + syst_pileoffpt-jes: 1.32157893e-02 syst_jeten-res: 0.0 - syst_lighttag-eff: 0.24305326981089037 - syst_laltfakecr-ejet-fake: 0.05279512500000001 - syst_laltpar-mujet-fake: 0.10676347500000002 - syst_jetrec-eff: 0.014860850000000002 - syst_c/tautag-eff: 0.306016312444064 - syst_dibos-xsec: 0.031677075 - syst_elen-res: 0.01015289751210215 - syst_flavcomp-jes: 0.8362586350157776 - syst_detNP2-jes: 0.07560704668412613 - syst_detNP3-jes: 0.012712945413306814 - syst_jetvxfrac: 0.23588825788446025 - syst_ltrig-eff: 0.4990117 - syst_btag-jes: 0.18831256170496954 - syst_mup-scale: 0.007061042963596101 + syst_lighttag-eff: 2.43053270e-01 + syst_laltfakecr-ejet-fake: 5.27951250e-02 + syst_laltpar-mujet-fake: 1.06763475e-01 + syst_jetrec-eff: 1.48608500e-02 + syst_c/tautag-eff: 3.06016312e-01 + syst_dibos-xsec: 3.16770750e-02 + syst_elen-res: 1.01528975e-02 + syst_flavcomp-jes: 8.36258635e-01 + syst_detNP2-jes: 7.56070467e-02 + syst_detNP3-jes: 1.27129454e-02 + syst_jetvxfrac: 2.35888258e-01 + syst_ltrig-eff: 4.99011700e-01 + syst_btag-jes: 1.88312562e-01 + syst_mup-scale: 7.06104296e-03 syst_singlephpt-jes: 0.0 syst_etmsoft-res: 0.0 - syst_detNP1-jes: 0.0937167400663455 - syst_laltpar-ejet-fake: 0.0391075 - syst_statNP1-jes: 0.37661984434241597 - syst_muid-res: 0.0023464500000000004 - syst_pdf: 0.57331595 - syst_isr-fsr: 2.8794391685527114 - syst_zjet-xsec: 0.30973140000000005 - syst_ps-model: 1.1830018750000002 - syst_flavres-jes: 0.5552946553919699 - syst_laltfakecr-mujet-fake: 0.09151155000000001 - syst_mums-res: 0.0015643000000000002 - syst_mod-NP2-jes: 0.026616094470357593 - syst_lid-eff: 0.51700115 - syst_mixNP2-jes: 0.16217781702949927 - syst_mixNP1-jes: 0.14000921948488784 - syst_btag-eff: 1.6999937474017894 - syst_pileoffrho-jes: 0.7254991474820986 - syst_modNP4-jes: 0.011171336490769582 - syst_mcstat: 0.12084217500000001 - syst_modNP3-jes: 0.04576914313263495 - syst_mod-NP1-jes: 0.9537044242645872 + syst_detNP1-jes: 9.37167401e-02 + syst_laltpar-ejet-fake: 3.91075000e-02 + syst_statNP1-jes: 3.76619844e-01 + syst_muid-res: 2.34645000e-03 + syst_pdf: 5.73315950e-01 + syst_isr-fsr: 2.87943917e+00 + syst_zjet-xsec: 3.09731400e-01 + syst_ps-model: 1.18300188e+00 + syst_flavres-jes: 5.55294655e-01 + syst_laltfakecr-mujet-fake: 9.15115500e-02 + syst_mums-res: 1.56430000e-03 + syst_mod-NP2-jes: 2.66160945e-02 + syst_lid-eff: 5.17001150e-01 + syst_mixNP2-jes: 1.62177817e-01 + syst_mixNP1-jes: 1.40009219e-01 + syst_btag-eff: 1.69999375e+00 + syst_pileoffrho-jes: 7.25499147e-01 + syst_modNP4-jes: 1.11713365e-02 + syst_mcstat: 1.20842175e-01 + syst_modNP3-jes: 4.57691431e-02 + syst_mod-NP1-jes: 9.53704424e-01 lumi: 1.09501 diff --git a/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_8TEV_LJ_DIF/uncertainties_dSig_dyt_norm.yaml b/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_8TEV_LJ_DIF/uncertainties_dSig_dyt_norm.yaml index ea89c1dc9f..a161413106 100644 --- a/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_8TEV_LJ_DIF/uncertainties_dSig_dyt_norm.yaml +++ b/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_8TEV_LJ_DIF/uncertainties_dSig_dyt_norm.yaml @@ -320,403 +320,403 @@ definitions: treatment: MULT type: CORR bins: -- ArtUnc_1: 0.0020360743228495046 - ArtUnc_2: -0.0014328952693752053 - ArtUnc_3: 0.0023142412290001 - ArtUnc_4: 6.880755710990353e-05 - ArtUnc_5: -8.619455948966239e-05 - ArtUnc_6: 0.0007894622787020585 - ArtUnc_7: 0.0003522267552840648 - ArtUnc_8: 0.00035541345670927316 - ArtUnc_9: -9.374728017591647e-09 - ArtUnc_10: 7.88147767343016e-09 - ArtUnc_11: 3.999815858941855e-09 - ArtUnc_12: 1.542605662664935e-09 - ArtUnc_13: -1.323434194410428e-09 - ArtUnc_14: 2.499057288315134e-09 - ArtUnc_15: 1.3589642148199055e-09 - ArtUnc_16: 5.878246211786783e-10 - ArtUnc_17: 4.714487957385766e-10 - ArtUnc_18: -1.0310218605044856e-10 - ArtUnc_19: 1.481337295557373e-10 - ArtUnc_20: 2.2322721723774862e-11 +- ArtUnc_1: 2.03607432e-03 + ArtUnc_2: -1.43289527e-03 + ArtUnc_3: 2.31424123e-03 + ArtUnc_4: 6.88075571e-05 + ArtUnc_5: -8.61945595e-05 + ArtUnc_6: 7.89462279e-04 + ArtUnc_7: 3.52226755e-04 + ArtUnc_8: 3.55413457e-04 + ArtUnc_9: -9.37472802e-09 + ArtUnc_10: 7.88147767e-09 + ArtUnc_11: 3.99981586e-09 + ArtUnc_12: 1.54260566e-09 + ArtUnc_13: -1.32343419e-09 + ArtUnc_14: 2.49905729e-09 + ArtUnc_15: 1.35896421e-09 + ArtUnc_16: 5.87824621e-10 + ArtUnc_17: 4.71448796e-10 + ArtUnc_18: -1.03102186e-10 + ArtUnc_19: 1.48133730e-10 + ArtUnc_20: 2.23227217e-11 ArtUnc_21: 0.0 - ArtUnc_22: -1.758125299411868e-11 + ArtUnc_22: -1.75812530e-11 ArtUnc_23: 0.0 ArtUnc_24: 0.0 - ArtUnc_25: 3.795466826868431e-14 - syst_singletop-xsec: 0.0002179152294247873 - syst_wjet-scale: 0.00047283342524136694 - syst_laltrealcr-mujet-fake: 0.00020016699000000002 - syst_eta-jes: 0.0036242895400030208 - syst_statNP3-jes: 8.368606126713518e-05 - syst_laltrealcr-ejet-fake: 8.973003e-05 - syst_pileoffmu-jes: 0.0008021541474912204 - syst_lstat-ejet-fake: 0.0005738472772603555 - syst_lstat-mujet-fake: 0.00016737212253427035 + ArtUnc_25: 3.79546683e-14 + syst_singletop-xsec: 2.17915229e-04 + syst_wjet-scale: 4.72833425e-04 + syst_laltrealcr-mujet-fake: 2.00166990e-04 + syst_eta-jes: 3.62428954e-03 + syst_statNP3-jes: 8.36860613e-05 + syst_laltrealcr-ejet-fake: 8.97300300e-05 + syst_pileoffmu-jes: 8.02154147e-04 + syst_lstat-ejet-fake: 5.73847277e-04 + syst_lstat-mujet-fake: 1.67372123e-04 syst_etmsoft-scale: 0.0 - syst_hardscat-model: 0.00425182296 - syst_statNP2-jes: 2.8458953190757042e-05 - syst_elen-scale: 2.289237245671798e-05 - syst_punch-jes: 2.2630736750337474e-05 - syst_pileoffnpv-jes: 0.00010301567605523092 - syst_lrec-eff: 2.0706930000000002e-05 - syst_pileoffpt-jes: 6.575333385274905e-05 + syst_hardscat-model: 4.25182296e-03 + syst_statNP2-jes: 2.84589532e-05 + syst_elen-scale: 2.28923725e-05 + syst_punch-jes: 2.26307368e-05 + syst_pileoffnpv-jes: 1.03015676e-04 + syst_lrec-eff: 2.07069300e-05 + syst_pileoffpt-jes: 6.57533339e-05 syst_jeten-res: 0.0 - syst_lighttag-eff: 4.831617000000001e-05 - syst_laltfakecr-ejet-fake: 0.00033821319 - syst_laltpar-mujet-fake: 8.973003e-05 + syst_lighttag-eff: 4.83161700e-05 + syst_laltfakecr-ejet-fake: 3.38213190e-04 + syst_laltpar-mujet-fake: 8.97300300e-05 syst_jetrec-eff: 0.0 - syst_c/tautag-eff: 0.0005384686638825927 - syst_dibos-xsec: 5.5218480000000005e-05 - syst_elen-res: 3.144151839883175e-05 - syst_flavcomp-jes: 0.0016116080923609592 - syst_detNP2-jes: 6.511626230760563e-05 - syst_detNP3-jes: 2.988787902397685e-05 - syst_jetvxfrac: 4.719383483001435e-05 - syst_ltrig-eff: 4.831617000000001e-05 - syst_btag-jes: 6.867711737015395e-05 - syst_mup-scale: 1.7932727414386108e-05 + syst_c/tautag-eff: 5.38468664e-04 + syst_dibos-xsec: 5.52184800e-05 + syst_elen-res: 3.14415184e-05 + syst_flavcomp-jes: 1.61160809e-03 + syst_detNP2-jes: 6.51162623e-05 + syst_detNP3-jes: 2.98878790e-05 + syst_jetvxfrac: 4.71938348e-05 + syst_ltrig-eff: 4.83161700e-05 + syst_btag-jes: 6.86771174e-05 + syst_mup-scale: 1.79327274e-05 syst_singlephpt-jes: 0.0 syst_etmsoft-res: 0.0 - syst_detNP1-jes: 9.05229470013499e-05 - syst_laltpar-ejet-fake: 0.00051767325 - syst_statNP1-jes: 0.0002218155878547702 - syst_muid-res: 2.0706930000000002e-05 - syst_pdf: 0.00216042303 - syst_isr-fsr: 0.001899712713575944 - syst_zjet-xsec: 0.00081447258 - syst_ps-model: 0.00033131088000000003 - syst_flavres-jes: 0.0009386316839227532 - syst_laltfakecr-mujet-fake: 1.3804620000000001e-05 - syst_mums-res: 7.592541e-05 - syst_mod-NP2-jes: 4.526147350067495e-05 - syst_lid-eff: 6.902310000000001e-06 - syst_mixNP2-jes: 6.996573098870815e-05 - syst_mixNP1-jes: 0.00012708500482329889 - syst_btag-eff: 0.0004452257473357511 - syst_pileoffrho-jes: 0.0005266941960903654 - syst_modNP4-jes: 3.5865454828772216e-05 - syst_mcstat: 0.0008627887500000001 - syst_modNP3-jes: 5.97757580479537e-05 - syst_mod-NP1-jes: 0.0006838513923559398 -- ArtUnc_1: -0.00016143691145700182 - ArtUnc_2: -0.0006422143077395175 - ArtUnc_3: -0.001957942043872373 - ArtUnc_4: 0.0017550380532153173 - ArtUnc_5: 0.001265696990805507 - ArtUnc_6: 0.0002631964951102651 - ArtUnc_7: 0.0003582944665313898 - ArtUnc_8: 0.0003031295111891612 - ArtUnc_9: -5.3254419509707535e-09 - ArtUnc_10: 5.725761437252038e-09 - ArtUnc_11: 3.583992047469182e-09 - ArtUnc_12: 1.5609217631426455e-09 - ArtUnc_13: -1.179279257348074e-09 - ArtUnc_14: 2.1228988271988535e-09 - ArtUnc_15: 1.0298339273290312e-09 - ArtUnc_16: 4.2352465588781844e-10 - ArtUnc_17: 4.341376257453069e-10 - ArtUnc_18: -1.3916911432035944e-10 - ArtUnc_19: 1.3022954606098124e-10 - ArtUnc_20: 2.4607827875438173e-11 + syst_detNP1-jes: 9.05229470e-05 + syst_laltpar-ejet-fake: 5.17673250e-04 + syst_statNP1-jes: 2.21815588e-04 + syst_muid-res: 2.07069300e-05 + syst_pdf: 2.16042303e-03 + syst_isr-fsr: 1.89971271e-03 + syst_zjet-xsec: 8.14472580e-04 + syst_ps-model: 3.31310880e-04 + syst_flavres-jes: 9.38631684e-04 + syst_laltfakecr-mujet-fake: 1.38046200e-05 + syst_mums-res: 7.59254100e-05 + syst_mod-NP2-jes: 4.52614735e-05 + syst_lid-eff: 6.90231000e-06 + syst_mixNP2-jes: 6.99657310e-05 + syst_mixNP1-jes: 1.27085005e-04 + syst_btag-eff: 4.45225747e-04 + syst_pileoffrho-jes: 5.26694196e-04 + syst_modNP4-jes: 3.58654548e-05 + syst_mcstat: 8.62788750e-04 + syst_modNP3-jes: 5.97757580e-05 + syst_mod-NP1-jes: 6.83851392e-04 +- ArtUnc_1: -1.61436911e-04 + ArtUnc_2: -6.42214308e-04 + ArtUnc_3: -1.95794204e-03 + ArtUnc_4: 1.75503805e-03 + ArtUnc_5: 1.26569699e-03 + ArtUnc_6: 2.63196495e-04 + ArtUnc_7: 3.58294467e-04 + ArtUnc_8: 3.03129511e-04 + ArtUnc_9: -5.32544195e-09 + ArtUnc_10: 5.72576144e-09 + ArtUnc_11: 3.58399205e-09 + ArtUnc_12: 1.56092176e-09 + ArtUnc_13: -1.17927926e-09 + ArtUnc_14: 2.12289883e-09 + ArtUnc_15: 1.02983393e-09 + ArtUnc_16: 4.23524656e-10 + ArtUnc_17: 4.34137626e-10 + ArtUnc_18: -1.39169114e-10 + ArtUnc_19: 1.30229546e-10 + ArtUnc_20: 2.46078279e-11 ArtUnc_21: 0.0 - ArtUnc_22: -1.6570049427894954e-11 + ArtUnc_22: -1.65700494e-11 ArtUnc_23: 0.0 ArtUnc_24: 0.0 - ArtUnc_25: 3.702459160576196e-14 - syst_singletop-xsec: 9.726683648077179e-05 - syst_wjet-scale: 0.0001253752 - syst_laltrealcr-mujet-fake: 5.641884e-05 - syst_eta-jes: 0.001986264791873774 - syst_statNP3-jes: 0.0001574382568966044 - syst_laltrealcr-ejet-fake: 1.253752e-05 - syst_pileoffmu-jes: 0.0005658228753202076 - syst_lstat-ejet-fake: 0.0004772807610246643 - syst_lstat-mujet-fake: 0.00020629840558865402 + ArtUnc_25: 3.70245916e-14 + syst_singletop-xsec: 9.72668365e-05 + syst_wjet-scale: 1.25375200e-04 + syst_laltrealcr-mujet-fake: 5.64188400e-05 + syst_eta-jes: 1.98626479e-03 + syst_statNP3-jes: 1.57438257e-04 + syst_laltrealcr-ejet-fake: 1.25375200e-05 + syst_pileoffmu-jes: 5.65822875e-04 + syst_lstat-ejet-fake: 4.77280761e-04 + syst_lstat-mujet-fake: 2.06298406e-04 syst_etmsoft-scale: 0.0 - syst_hardscat-model: 0.00122867696 - syst_statNP2-jes: 5.319219246757178e-05 - syst_elen-scale: 5.428905410227737e-06 - syst_punch-jes: 2.0791124820788316e-05 - syst_pileoffnpv-jes: 0.00043458379331505866 - syst_lrec-eff: 1.253752e-05 - syst_pileoffpt-jes: 0.00011400701361478251 + syst_hardscat-model: 1.22867696e-03 + syst_statNP2-jes: 5.31921925e-05 + syst_elen-scale: 5.42890541e-06 + syst_punch-jes: 2.07911248e-05 + syst_pileoffnpv-jes: 4.34583793e-04 + syst_lrec-eff: 1.25375200e-05 + syst_pileoffpt-jes: 1.14007014e-04 syst_jeten-res: 0.0 - syst_lighttag-eff: 0.00015045024000000001 - syst_laltfakecr-ejet-fake: 0.00044508195999999996 - syst_laltpar-mujet-fake: 0.00013164396 - syst_jetrec-eff: 3.13438e-05 - syst_c/tautag-eff: 0.00030406717147891585 - syst_dibos-xsec: 3.7612560000000004e-05 - syst_elen-res: 1.6286716230683214e-05 - syst_flavcomp-jes: 0.0005009029524604458 - syst_detNP2-jes: 0.00010243238241561699 - syst_detNP3-jes: 2.714452705113869e-05 - syst_jetvxfrac: 0.00019544059476819854 - syst_ltrig-eff: 2.855556080179831e-05 - syst_btag-jes: 0.0001523644008853026 - syst_mup-scale: 1.0857810820455475e-05 + syst_lighttag-eff: 1.50450240e-04 + syst_laltfakecr-ejet-fake: 4.45081960e-04 + syst_laltpar-mujet-fake: 1.31643960e-04 + syst_jetrec-eff: 3.13438000e-05 + syst_c/tautag-eff: 3.04067171e-04 + syst_dibos-xsec: 3.76125600e-05 + syst_elen-res: 1.62867162e-05 + syst_flavcomp-jes: 5.00902952e-04 + syst_detNP2-jes: 1.02432382e-04 + syst_detNP3-jes: 2.71445271e-05 + syst_jetvxfrac: 1.95440595e-04 + syst_ltrig-eff: 2.85555608e-05 + syst_btag-jes: 1.52364401e-04 + syst_mup-scale: 1.08578108e-05 syst_singlephpt-jes: 0.0 syst_etmsoft-res: 0.0 - syst_detNP1-jes: 0.0001574382568966044 - syst_laltpar-ejet-fake: 0.00031970675999999995 - syst_statNP1-jes: 0.0003148765137932088 - syst_muid-res: 6.26876e-06 - syst_pdf: 0.00154211496 - syst_isr-fsr: 0.0018561537953755937 - syst_zjet-xsec: 0.0006018009600000001 - syst_ps-model: 9.40314e-05 - syst_flavres-jes: 0.00046206332150148084 - syst_laltfakecr-mujet-fake: 2.507504e-05 - syst_mums-res: 3.13438e-05 - syst_mod-NP2-jes: 5.1216191207808496e-05 + syst_detNP1-jes: 1.57438257e-04 + syst_laltpar-ejet-fake: 3.19706760e-04 + syst_statNP1-jes: 3.14876514e-04 + syst_muid-res: 6.26876000e-06 + syst_pdf: 1.54211496e-03 + syst_isr-fsr: 1.85615380e-03 + syst_zjet-xsec: 6.01800960e-04 + syst_ps-model: 9.40314000e-05 + syst_flavres-jes: 4.62063322e-04 + syst_laltfakecr-mujet-fake: 2.50750400e-05 + syst_mums-res: 3.13438000e-05 + syst_mod-NP2-jes: 5.12161912e-05 syst_lid-eff: 0.0 - syst_mixNP2-jes: 5.9717959512505106e-05 - syst_mixNP1-jes: 0.00013029372984546571 - syst_btag-eff: 0.00017871464066294176 - syst_pileoffrho-jes: 0.00031323419904314857 - syst_modNP4-jes: 4.34312432818219e-05 - syst_mcstat: 0.0007522512 - syst_modNP3-jes: 9.772029738409927e-05 - syst_mod-NP1-jes: 0.0003857580167018007 -- ArtUnc_1: -0.0011331839724454012 - ArtUnc_2: 0.0008926633691618374 - ArtUnc_3: -0.001054727537670549 - ArtUnc_4: -0.0004652250403701878 - ArtUnc_5: -0.002322587502467516 - ArtUnc_6: 0.0006020412726460504 - ArtUnc_7: 0.00025288013716967073 - ArtUnc_8: 0.0002010623116943097 - ArtUnc_9: -4.706309206662973e-09 - ArtUnc_10: 2.4844866865650993e-09 - ArtUnc_11: 1.406433492072378e-09 - ArtUnc_12: 4.682259179481986e-10 - ArtUnc_13: -3.737226786250869e-10 - ArtUnc_14: 1.21920204532018e-09 - ArtUnc_15: 2.756798932149103e-10 - ArtUnc_16: 1.7615165290432707e-10 - ArtUnc_17: 1.5576547387720675e-10 - ArtUnc_18: -8.135259600625515e-11 - ArtUnc_19: 3.561565710906256e-11 - ArtUnc_20: 1.2124576260020317e-11 + syst_mixNP2-jes: 5.97179595e-05 + syst_mixNP1-jes: 1.30293730e-04 + syst_btag-eff: 1.78714641e-04 + syst_pileoffrho-jes: 3.13234199e-04 + syst_modNP4-jes: 4.34312433e-05 + syst_mcstat: 7.52251200e-04 + syst_modNP3-jes: 9.77202974e-05 + syst_mod-NP1-jes: 3.85758017e-04 +- ArtUnc_1: -1.13318397e-03 + ArtUnc_2: 8.92663369e-04 + ArtUnc_3: -1.05472754e-03 + ArtUnc_4: -4.65225040e-04 + ArtUnc_5: -2.32258750e-03 + ArtUnc_6: 6.02041273e-04 + ArtUnc_7: 2.52880137e-04 + ArtUnc_8: 2.01062312e-04 + ArtUnc_9: -4.70630921e-09 + ArtUnc_10: 2.48448669e-09 + ArtUnc_11: 1.40643349e-09 + ArtUnc_12: 4.68225918e-10 + ArtUnc_13: -3.73722679e-10 + ArtUnc_14: 1.21920205e-09 + ArtUnc_15: 2.75679893e-10 + ArtUnc_16: 1.76151653e-10 + ArtUnc_17: 1.55765474e-10 + ArtUnc_18: -8.13525960e-11 + ArtUnc_19: 3.56156571e-11 + ArtUnc_20: 1.21245763e-11 ArtUnc_21: 0.0 - ArtUnc_22: -1.3174320890661547e-11 + ArtUnc_22: -1.31743209e-11 ArtUnc_23: 0.0 ArtUnc_24: 0.0 - ArtUnc_25: 3.592655218274785e-14 - syst_singletop-xsec: 8.237036664335057e-06 - syst_wjet-scale: 9.195881874570595e-05 - syst_laltrealcr-mujet-fake: 6.457256e-05 - syst_eta-jes: 0.00023513949462510632 - syst_statNP3-jes: 4.7318173140103366e-05 - syst_laltrealcr-ejet-fake: 4.96712e-06 - syst_pileoffmu-jes: 9.345580510282708e-05 - syst_lstat-ejet-fake: 0.00013335121521301858 - syst_lstat-mujet-fake: 3.871486893281185e-05 + ArtUnc_25: 3.59265522e-14 + syst_singletop-xsec: 8.23703666e-06 + syst_wjet-scale: 9.19588187e-05 + syst_laltrealcr-mujet-fake: 6.45725600e-05 + syst_eta-jes: 2.35139495e-04 + syst_statNP3-jes: 4.73181731e-05 + syst_laltrealcr-ejet-fake: 4.96712000e-06 + syst_pileoffmu-jes: 9.34558051e-05 + syst_lstat-ejet-fake: 1.33351215e-04 + syst_lstat-mujet-fake: 3.87148689e-05 syst_etmsoft-scale: 0.0 - syst_hardscat-model: 3.4769839999999996e-05 - syst_statNP2-jes: 2.1508260518228807e-05 - syst_elen-scale: 8.603304207291522e-06 - syst_punch-jes: 1.7206608414583045e-05 - syst_pileoffnpv-jes: 0.0002451941699078084 - syst_lrec-eff: 4.96712e-06 - syst_pileoffpt-jes: 5.463832e-05 + syst_hardscat-model: 3.47698400e-05 + syst_statNP2-jes: 2.15082605e-05 + syst_elen-scale: 8.60330421e-06 + syst_punch-jes: 1.72066084e-05 + syst_pileoffnpv-jes: 2.45194170e-04 + syst_lrec-eff: 4.96712000e-06 + syst_pileoffpt-jes: 5.46383200e-05 syst_jeten-res: 0.0 - syst_lighttag-eff: 0.00014404648 - syst_laltfakecr-ejet-fake: 0.00018378343999999998 - syst_laltpar-mujet-fake: 0.00017881631999999999 - syst_jetrec-eff: 5.4638319999999996e-05 - syst_c/tautag-eff: 6.218826305298453e-05 - syst_dibos-xsec: 3.4769839999999996e-05 - syst_elen-res: 4.96712e-06 - syst_flavcomp-jes: 0.00045697504 - syst_detNP2-jes: 6.967260082215392e-05 - syst_detNP3-jes: 3.3962172209138806e-05 - syst_jetvxfrac: 0.00011804097063334578 - syst_ltrig-eff: 1.986848e-05 - syst_btag-jes: 6.452478155468641e-05 - syst_mup-scale: 4.301652103645761e-06 + syst_lighttag-eff: 1.44046480e-04 + syst_laltfakecr-ejet-fake: 1.83783440e-04 + syst_laltpar-mujet-fake: 1.78816320e-04 + syst_jetrec-eff: 5.46383200e-05 + syst_c/tautag-eff: 6.21882631e-05 + syst_dibos-xsec: 3.47698400e-05 + syst_elen-res: 4.96712000e-06 + syst_flavcomp-jes: 4.56975040e-04 + syst_detNP2-jes: 6.96726008e-05 + syst_detNP3-jes: 3.39621722e-05 + syst_jetvxfrac: 1.18040971e-04 + syst_ltrig-eff: 1.98684800e-05 + syst_btag-jes: 6.45247816e-05 + syst_mup-scale: 4.30165210e-06 syst_singlephpt-jes: 0.0 syst_etmsoft-res: 0.0 - syst_detNP1-jes: 0.00011678014974699081 - syst_laltpar-ejet-fake: 0.0001490136 - syst_statNP1-jes: 8.14289601070774e-05 - syst_muid-res: 2.4835600000000003e-05 - syst_pdf: 0.00073016664 - syst_isr-fsr: 0.0016359931923457403 - syst_zjet-xsec: 0.00011921088 - syst_ps-model: 0.002235204 - syst_flavres-jes: 0.0001548594757312474 - syst_laltfakecr-mujet-fake: 5.4638319999999996e-05 - syst_mums-res: 2.4835600000000003e-05 - syst_mod-NP2-jes: 3.441321682916609e-05 - syst_lid-eff: 9.93424e-06 - syst_mixNP2-jes: 0.0001108458207827936 - syst_mixNP1-jes: 0.00015541609695079076 - syst_btag-eff: 4.4704079999999996e-05 - syst_pileoffrho-jes: 0.00010754130259114401 - syst_modNP4-jes: 3.547233197598376e-05 - syst_mcstat: 0.0007351337599999999 - syst_modNP3-jes: 5.59214773473949e-05 - syst_mod-NP1-jes: 0.00012533983798800443 -- ArtUnc_1: -0.0007279330405026796 - ArtUnc_2: 0.0009953017792790255 - ArtUnc_3: 0.0004323649802874068 - ArtUnc_4: -0.0011842495014222692 - ArtUnc_5: 0.000638635156776095 - ArtUnc_6: -0.0018143649401601847 - ArtUnc_7: 0.0008055236769494579 - ArtUnc_8: 7.795356085944797e-05 - ArtUnc_9: 3.97767741832524e-09 - ArtUnc_10: -1.5697302047855945e-09 - ArtUnc_11: 2.2420997059840183e-10 - ArtUnc_12: -7.605188796320369e-10 - ArtUnc_13: 1.3036709397450909e-10 - ArtUnc_14: -6.515049850366328e-10 - ArtUnc_15: -3.797745669779219e-10 - ArtUnc_16: -1.5938913945927252e-10 - ArtUnc_17: -7.368741045666766e-11 - ArtUnc_18: 7.553615516448703e-11 - ArtUnc_19: 1.1005769546613742e-11 - ArtUnc_20: 5.4685238628837945e-12 + syst_detNP1-jes: 1.16780150e-04 + syst_laltpar-ejet-fake: 1.49013600e-04 + syst_statNP1-jes: 8.14289601e-05 + syst_muid-res: 2.48356000e-05 + syst_pdf: 7.30166640e-04 + syst_isr-fsr: 1.63599319e-03 + syst_zjet-xsec: 1.19210880e-04 + syst_ps-model: 2.23520400e-03 + syst_flavres-jes: 1.54859476e-04 + syst_laltfakecr-mujet-fake: 5.46383200e-05 + syst_mums-res: 2.48356000e-05 + syst_mod-NP2-jes: 3.44132168e-05 + syst_lid-eff: 9.93424000e-06 + syst_mixNP2-jes: 1.10845821e-04 + syst_mixNP1-jes: 1.55416097e-04 + syst_btag-eff: 4.47040800e-05 + syst_pileoffrho-jes: 1.07541303e-04 + syst_modNP4-jes: 3.54723320e-05 + syst_mcstat: 7.35133760e-04 + syst_modNP3-jes: 5.59214773e-05 + syst_mod-NP1-jes: 1.25339838e-04 +- ArtUnc_1: -7.27933041e-04 + ArtUnc_2: 9.95301779e-04 + ArtUnc_3: 4.32364980e-04 + ArtUnc_4: -1.18424950e-03 + ArtUnc_5: 6.38635157e-04 + ArtUnc_6: -1.81436494e-03 + ArtUnc_7: 8.05523677e-04 + ArtUnc_8: 7.79535609e-05 + ArtUnc_9: 3.97767742e-09 + ArtUnc_10: -1.56973020e-09 + ArtUnc_11: 2.24209971e-10 + ArtUnc_12: -7.60518880e-10 + ArtUnc_13: 1.30367094e-10 + ArtUnc_14: -6.51504985e-10 + ArtUnc_15: -3.79774567e-10 + ArtUnc_16: -1.59389139e-10 + ArtUnc_17: -7.36874105e-11 + ArtUnc_18: 7.55361552e-11 + ArtUnc_19: 1.10057695e-11 + ArtUnc_20: 5.46852386e-12 ArtUnc_21: 0.0 - ArtUnc_22: -9.765501012633133e-12 + ArtUnc_22: -9.76550101e-12 ArtUnc_23: 0.0 ArtUnc_24: 0.0 - ArtUnc_25: 3.372873363856128e-14 - syst_singletop-xsec: 0.00012569750108611257 - syst_wjet-scale: 0.00019439585000000003 - syst_laltrealcr-mujet-fake: 5.6551520000000004e-05 - syst_eta-jes: 0.0018737716942308046 - syst_statNP3-jes: 2.9145986281153705e-05 - syst_laltrealcr-ejet-fake: 7.775833999999999e-05 - syst_pileoffmu-jes: 0.0003325784145336083 - syst_lstat-ejet-fake: 0.00032551681973500815 - syst_lstat-mujet-fake: 0.00023569244228637687 + ArtUnc_25: 3.37287336e-14 + syst_singletop-xsec: 1.25697501e-04 + syst_wjet-scale: 1.94395850e-04 + syst_laltrealcr-mujet-fake: 5.65515200e-05 + syst_eta-jes: 1.87377169e-03 + syst_statNP3-jes: 2.91459863e-05 + syst_laltrealcr-ejet-fake: 7.77583400e-05 + syst_pileoffmu-jes: 3.32578415e-04 + syst_lstat-ejet-fake: 3.25516820e-04 + syst_lstat-mujet-fake: 2.35692442e-04 syst_etmsoft-scale: 0.0 - syst_hardscat-model: 0.0028629207 - syst_statNP2-jes: 4.285317132479579e-05 - syst_elen-scale: 2.754846728022586e-05 - syst_punch-jes: 3.3344123291820104e-05 - syst_pileoffnpv-jes: 0.0001377423364011293 - syst_lrec-eff: 1.060341e-05 - syst_pileoffpt-jes: 6.12188161782797e-05 + syst_hardscat-model: 2.86292070e-03 + syst_statNP2-jes: 4.28531713e-05 + syst_elen-scale: 2.75484673e-05 + syst_punch-jes: 3.33441233e-05 + syst_pileoffnpv-jes: 1.37742336e-04 + syst_lrec-eff: 1.06034100e-05 + syst_pileoffpt-jes: 6.12188162e-05 syst_jeten-res: 0.0 syst_lighttag-eff: 0.0 - syst_laltfakecr-ejet-fake: 0.00022620608000000001 - syst_laltpar-mujet-fake: 8.129281000000001e-05 - syst_jetrec-eff: 4.9482580000000005e-05 - syst_c/tautag-eff: 0.0002527269629845547 - syst_dibos-xsec: 4.241364e-05 - syst_elen-res: 8.65764801117486e-06 - syst_flavcomp-jes: 0.0007964487206289928 - syst_detNP2-jes: 4.591411213370977e-05 - syst_detNP3-jes: 3.673128970696782e-05 - syst_jetvxfrac: 7.040163860502165e-05 - syst_ltrig-eff: 2.8275760000000002e-05 - syst_btag-jes: 0.00013162045478330134 - syst_mup-scale: 6.12188161782797e-06 + syst_laltfakecr-ejet-fake: 2.26206080e-04 + syst_laltpar-mujet-fake: 8.12928100e-05 + syst_jetrec-eff: 4.94825800e-05 + syst_c/tautag-eff: 2.52726963e-04 + syst_dibos-xsec: 4.24136400e-05 + syst_elen-res: 8.65764801e-06 + syst_flavcomp-jes: 7.96448721e-04 + syst_detNP2-jes: 4.59141121e-05 + syst_detNP3-jes: 3.67312897e-05 + syst_jetvxfrac: 7.04016386e-05 + syst_ltrig-eff: 2.82757600e-05 + syst_btag-jes: 1.31620455e-04 + syst_mup-scale: 6.12188162e-06 syst_singlephpt-jes: 0.0 syst_etmsoft-res: 0.0 - syst_detNP1-jes: 6.352220440468592e-05 - syst_laltpar-ejet-fake: 3.8879169999999997e-05 - syst_statNP1-jes: 0.0002330272077093726 - syst_muid-res: 1.060341e-05 - syst_pdf: 0.00040999852000000005 - syst_isr-fsr: 0.0029024046705965812 - syst_zjet-xsec: 0.00059379096 - syst_ps-model: 9.896516000000001e-05 - syst_flavres-jes: 0.000527145790703046 - syst_laltfakecr-mujet-fake: 3.8879169999999997e-05 - syst_mums-res: 3.181023e-05 - syst_mod-NP2-jes: 4.072316881720374e-05 - syst_lid-eff: 7.0689400000000005e-06 - syst_mixNP2-jes: 0.00011259103975924672 - syst_mixNP1-jes: 0.00012499986833897336 - syst_btag-eff: 0.0001838603980130452 - syst_pileoffrho-jes: 0.00038094881008866546 - syst_modNP4-jes: 3.2152022789701346e-05 - syst_mcstat: 0.00066448036 - syst_modNP3-jes: 5.922215167728774e-05 - syst_mod-NP1-jes: 0.0004279044901580858 -- ArtUnc_1: -0.00012223409172037826 - ArtUnc_2: 0.0002535024566737831 - ArtUnc_3: 0.00016124329449965463 - ArtUnc_4: -0.00022135008744905707 - ArtUnc_5: 0.0003706865561477382 - ArtUnc_6: -2.883314485249005e-06 - ArtUnc_7: -0.0012730583014838046 - ArtUnc_8: -0.0006997125548289317 - ArtUnc_9: 1.191733497389337e-08 - ArtUnc_10: -1.1073657976250985e-08 - ArtUnc_11: -6.973782187084126e-09 - ArtUnc_12: -2.1189196897476756e-09 - ArtUnc_13: 2.0362069917533805e-09 - ArtUnc_14: -3.834060628458067e-09 - ArtUnc_15: -1.8926447334702708e-09 - ArtUnc_16: -8.435704365040078e-10 - ArtUnc_17: -5.102789771866581e-10 - ArtUnc_18: 1.511657051042555e-10 - ArtUnc_19: -1.6513927135258089e-10 - ArtUnc_20: -2.395674969922826e-11 + syst_detNP1-jes: 6.35222044e-05 + syst_laltpar-ejet-fake: 3.88791700e-05 + syst_statNP1-jes: 2.33027208e-04 + syst_muid-res: 1.06034100e-05 + syst_pdf: 4.09998520e-04 + syst_isr-fsr: 2.90240467e-03 + syst_zjet-xsec: 5.93790960e-04 + syst_ps-model: 9.89651600e-05 + syst_flavres-jes: 5.27145791e-04 + syst_laltfakecr-mujet-fake: 3.88791700e-05 + syst_mums-res: 3.18102300e-05 + syst_mod-NP2-jes: 4.07231688e-05 + syst_lid-eff: 7.06894000e-06 + syst_mixNP2-jes: 1.12591040e-04 + syst_mixNP1-jes: 1.24999868e-04 + syst_btag-eff: 1.83860398e-04 + syst_pileoffrho-jes: 3.80948810e-04 + syst_modNP4-jes: 3.21520228e-05 + syst_mcstat: 6.64480360e-04 + syst_modNP3-jes: 5.92221517e-05 + syst_mod-NP1-jes: 4.27904490e-04 +- ArtUnc_1: -1.22234092e-04 + ArtUnc_2: 2.53502457e-04 + ArtUnc_3: 1.61243294e-04 + ArtUnc_4: -2.21350087e-04 + ArtUnc_5: 3.70686556e-04 + ArtUnc_6: -2.88331449e-06 + ArtUnc_7: -1.27305830e-03 + ArtUnc_8: -6.99712555e-04 + ArtUnc_9: 1.19173350e-08 + ArtUnc_10: -1.10736580e-08 + ArtUnc_11: -6.97378219e-09 + ArtUnc_12: -2.11891969e-09 + ArtUnc_13: 2.03620699e-09 + ArtUnc_14: -3.83406063e-09 + ArtUnc_15: -1.89264473e-09 + ArtUnc_16: -8.43570437e-10 + ArtUnc_17: -5.10278977e-10 + ArtUnc_18: 1.51165705e-10 + ArtUnc_19: -1.65139271e-10 + ArtUnc_20: -2.39567497e-11 ArtUnc_21: 0.0 - ArtUnc_22: -9.489211615018241e-12 + ArtUnc_22: -9.48921162e-12 ArtUnc_23: 0.0 ArtUnc_24: 0.0 - ArtUnc_25: 4.9400587559166885e-14 - syst_singletop-xsec: 7.862817936792636e-05 - syst_wjet-scale: 0.00012348589752541423 - syst_laltrealcr-mujet-fake: 7.394100000000002e-06 - syst_eta-jes: 0.001445552979637875 - syst_statNP3-jes: 2.232969231913418e-05 - syst_laltrealcr-ejet-fake: 6.358926e-05 - syst_pileoffmu-jes: 0.0004476179527230197 - syst_lstat-ejet-fake: 0.00037524383647397964 - syst_lstat-mujet-fake: 6.915756713172319e-05 + ArtUnc_25: 4.94005876e-14 + syst_singletop-xsec: 7.86281794e-05 + syst_wjet-scale: 1.23485898e-04 + syst_laltrealcr-mujet-fake: 7.39410000e-06 + syst_eta-jes: 1.44555298e-03 + syst_statNP3-jes: 2.23296923e-05 + syst_laltrealcr-ejet-fake: 6.35892600e-05 + syst_pileoffmu-jes: 4.47617953e-04 + syst_lstat-ejet-fake: 3.75243836e-04 + syst_lstat-mujet-fake: 6.91575671e-05 syst_etmsoft-scale: 0.0 - syst_hardscat-model: 0.00104700456 - syst_statNP2-jes: 2.5613913752490073e-06 - syst_elen-scale: 1.6649043939118544e-05 - syst_punch-jes: 2.5613913752490073e-06 - syst_pileoffnpv-jes: 9.020498958024607e-05 - syst_lrec-eff: 5.91528e-06 - syst_pileoffpt-jes: 4.5073696124675644e-05 + syst_hardscat-model: 1.04700456e-03 + syst_statNP2-jes: 2.56139138e-06 + syst_elen-scale: 1.66490439e-05 + syst_punch-jes: 2.56139138e-06 + syst_pileoffnpv-jes: 9.02049896e-05 + syst_lrec-eff: 5.91528000e-06 + syst_pileoffpt-jes: 4.50736961e-05 syst_jeten-res: 0.0 - syst_lighttag-eff: 0.00014418874179629527 - syst_laltfakecr-ejet-fake: 0.00030611574000000006 - syst_laltpar-mujet-fake: 5.0279880000000005e-05 - syst_jetrec-eff: 1.774584e-05 - syst_c/tautag-eff: 0.00021371251536848724 - syst_dibos-xsec: 4.43646e-06 - syst_elen-res: 1.408765256386954e-05 - syst_flavcomp-jes: 0.0003630698865190374 - syst_detNP2-jes: 2.689460944011458e-05 - syst_detNP3-jes: 2.5613913752490073e-06 - syst_jetvxfrac: 9.0277691578411e-05 - syst_ltrig-eff: 1.114033494194407e-05 - syst_btag-jes: 5.9023261411863714e-05 - syst_mup-scale: 1.2806956876245036e-06 + syst_lighttag-eff: 1.44188742e-04 + syst_laltfakecr-ejet-fake: 3.06115740e-04 + syst_laltpar-mujet-fake: 5.02798800e-05 + syst_jetrec-eff: 1.77458400e-05 + syst_c/tautag-eff: 2.13712515e-04 + syst_dibos-xsec: 4.43646000e-06 + syst_elen-res: 1.40876526e-05 + syst_flavcomp-jes: 3.63069887e-04 + syst_detNP2-jes: 2.68946094e-05 + syst_detNP3-jes: 2.56139138e-06 + syst_jetvxfrac: 9.02776916e-05 + syst_ltrig-eff: 1.11403349e-05 + syst_btag-jes: 5.90232614e-05 + syst_mup-scale: 1.28069569e-06 syst_singlephpt-jes: 0.0 syst_etmsoft-res: 0.0 - syst_detNP1-jes: 7.854121473476395e-05 - syst_laltpar-ejet-fake: 0.00026470878000000003 - syst_statNP1-jes: 8.875384357775612e-05 - syst_muid-res: 8.87292e-06 - syst_pdf: 0.00202154694 - syst_isr-fsr: 0.0018467631815545344 - syst_zjet-xsec: 0.00027949698000000005 - syst_ps-model: 0.0008118721800000002 - syst_flavres-jes: 0.0003772817335389182 + syst_detNP1-jes: 7.85412147e-05 + syst_laltpar-ejet-fake: 2.64708780e-04 + syst_statNP1-jes: 8.87538436e-05 + syst_muid-res: 8.87292000e-06 + syst_pdf: 2.02154694e-03 + syst_isr-fsr: 1.84676318e-03 + syst_zjet-xsec: 2.79496980e-04 + syst_ps-model: 8.11872180e-04 + syst_flavres-jes: 3.77281734e-04 syst_laltfakecr-mujet-fake: 0.0 - syst_mums-res: 5.91528e-06 - syst_mod-NP2-jes: 2.5613913752490073e-06 - syst_lid-eff: 4.43646e-06 - syst_mixNP2-jes: 4.7414576165850094e-05 - syst_mixNP1-jes: 7.354063467910241e-05 - syst_btag-eff: 0.00015972625219086062 - syst_pileoffrho-jes: 0.00021247072114944474 - syst_modNP4-jes: 1.0245565500996029e-05 - syst_mcstat: 0.00036970500000000007 - syst_modNP3-jes: 1.729334409565426e-05 - syst_mod-NP1-jes: 0.00021883038511089542 + syst_mums-res: 5.91528000e-06 + syst_mod-NP2-jes: 2.56139138e-06 + syst_lid-eff: 4.43646000e-06 + syst_mixNP2-jes: 4.74145762e-05 + syst_mixNP1-jes: 7.35406347e-05 + syst_btag-eff: 1.59726252e-04 + syst_pileoffrho-jes: 2.12470721e-04 + syst_modNP4-jes: 1.02455655e-05 + syst_mcstat: 3.69705000e-04 + syst_modNP3-jes: 1.72933441e-05 + syst_mod-NP1-jes: 2.18830385e-04 diff --git a/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_8TEV_LJ_DIF/uncertainties_dSig_dyttBar.yaml b/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_8TEV_LJ_DIF/uncertainties_dSig_dyttBar.yaml index b27e1b8b32..3c45d51e76 100644 --- a/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_8TEV_LJ_DIF/uncertainties_dSig_dyttBar.yaml +++ b/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_8TEV_LJ_DIF/uncertainties_dSig_dyttBar.yaml @@ -324,408 +324,408 @@ definitions: treatment: MULT type: ATLASLUMI8 bins: -- ArtUnc_1: -1.2518797823940464 - ArtUnc_2: -0.18956581427490413 - ArtUnc_3: 0.4523509682193717 - ArtUnc_4: 0.14413971236470416 - ArtUnc_5: -0.03391808736351604 - ArtUnc_6: -0.10244724334985268 - ArtUnc_7: -0.1964671489824742 - ArtUnc_8: 0.044272188246075976 - ArtUnc_9: -0.09740882941712653 - ArtUnc_10: 9.468212182289982e-06 - ArtUnc_11: 7.049054083540741e-07 - ArtUnc_12: 6.677598452202381e-06 - ArtUnc_13: -2.0113057755335134e-06 - ArtUnc_14: -1.8340012373589017e-06 - ArtUnc_15: -2.48063887578599e-06 - ArtUnc_16: -9.827481014517219e-07 - ArtUnc_17: -1.317523193435249e-06 - ArtUnc_18: -5.718779078247724e-07 - ArtUnc_19: 8.727221739104878e-07 - ArtUnc_20: 1.262439928881671e-07 - ArtUnc_21: -5.658592844314681e-07 - ArtUnc_22: 5.829438537190231e-08 - ArtUnc_23: 3.436337624116301e-07 - ArtUnc_24: 6.280876920921697e-07 - ArtUnc_25: 7.897498186072514e-05 - syst_singletop-xsec: 0.6465201649775901 - syst_wjet-scale: 0.92026665 - syst_laltrealcr-mujet-fake: 0.08204787 - syst_eta-jes: 0.3021677778034197 - syst_statNP3-jes: 0.059749447994710374 - syst_laltrealcr-ejet-fake: 0.13748562 - syst_pileoffmu-jes: 0.30360254883848464 - syst_lstat-ejet-fake: 0.929329842035627 - syst_lstat-mujet-fake: 0.011522519958876183 - syst_etmsoft-scale: 0.041957258190160614 - syst_hardscat-model: 7.821157770000001 - syst_statNP2-jes: 0.16737427033080593 - syst_elen-scale: 0.13895757075072473 - syst_punch-jes: 0.008870040000000001 - syst_pileoffnpv-jes: 1.3483167430433844 - syst_lrec-eff: 0.5166798300000001 - syst_pileoffpt-jes: 0.018652146122017033 +- ArtUnc_1: -1.25187978e+00 + ArtUnc_2: -1.89565814e-01 + ArtUnc_3: 4.52350968e-01 + ArtUnc_4: 1.44139712e-01 + ArtUnc_5: -3.39180874e-02 + ArtUnc_6: -1.02447243e-01 + ArtUnc_7: -1.96467149e-01 + ArtUnc_8: 4.42721882e-02 + ArtUnc_9: -9.74088294e-02 + ArtUnc_10: 9.46821218e-06 + ArtUnc_11: 7.04905408e-07 + ArtUnc_12: 6.67759845e-06 + ArtUnc_13: -2.01130578e-06 + ArtUnc_14: -1.83400124e-06 + ArtUnc_15: -2.48063888e-06 + ArtUnc_16: -9.82748101e-07 + ArtUnc_17: -1.31752319e-06 + ArtUnc_18: -5.71877908e-07 + ArtUnc_19: 8.72722174e-07 + ArtUnc_20: 1.26243993e-07 + ArtUnc_21: -5.65859284e-07 + ArtUnc_22: 5.82943854e-08 + ArtUnc_23: 3.43633762e-07 + ArtUnc_24: 6.28087692e-07 + ArtUnc_25: 7.89749819e-05 + syst_singletop-xsec: 6.46520165e-01 + syst_wjet-scale: 9.20266650e-01 + syst_laltrealcr-mujet-fake: 8.20478700e-02 + syst_eta-jes: 3.02167778e-01 + syst_statNP3-jes: 5.97494480e-02 + syst_laltrealcr-ejet-fake: 1.37485620e-01 + syst_pileoffmu-jes: 3.03602549e-01 + syst_lstat-ejet-fake: 9.29329842e-01 + syst_lstat-mujet-fake: 1.15225200e-02 + syst_etmsoft-scale: 4.19572582e-02 + syst_hardscat-model: 7.82115777e+00 + syst_statNP2-jes: 1.67374270e-01 + syst_elen-scale: 1.38957571e-01 + syst_punch-jes: 8.87004000e-03 + syst_pileoffnpv-jes: 1.34831674e+00 + syst_lrec-eff: 5.16679830e-01 + syst_pileoffpt-jes: 1.86521461e-02 syst_jeten-res: 0.0 - syst_lighttag-eff: 1.1231699095256267 - syst_laltfakecr-ejet-fake: 0.9091790999999999 - syst_laltpar-mujet-fake: 0.30823389 - syst_jetrec-eff: 0.10644048 - syst_c/tautag-eff: 2.135464432709039 - syst_dibos-xsec: 0.1995759 - syst_elen-res: 0.06060743269826482 - syst_flavcomp-jes: 3.990461309010172 - syst_detNP2-jes: 0.42569694892944127 - syst_detNP3-jes: 0.06881430540153916 - syst_jetvxfrac: 1.5079899543322046 - syst_ltrig-eff: 2.6743170600000004 - syst_btag-jes: 1.1608929592683197 - syst_mup-scale: 0.025931596452275645 + syst_lighttag-eff: 1.12316991e+00 + syst_laltfakecr-ejet-fake: 9.09179100e-01 + syst_laltpar-mujet-fake: 3.08233890e-01 + syst_jetrec-eff: 1.06440480e-01 + syst_c/tautag-eff: 2.13546443e+00 + syst_dibos-xsec: 1.99575900e-01 + syst_elen-res: 6.06074327e-02 + syst_flavcomp-jes: 3.99046131e+00 + syst_detNP2-jes: 4.25696949e-01 + syst_detNP3-jes: 6.88143054e-02 + syst_jetvxfrac: 1.50798995e+00 + syst_ltrig-eff: 2.67431706e+00 + syst_btag-jes: 1.16089296e+00 + syst_mup-scale: 2.59315965e-02 syst_singlephpt-jes: 0.0 - syst_etmsoft-res: 0.051851339814942825 - syst_detNP1-jes: 0.4023604525883382 - syst_laltpar-ejet-fake: 0.7805635200000001 - syst_statNP1-jes: 1.9688950861068713 - syst_muid-res: 0.017740080000000002 - syst_pdf: 0.30379887000000005 - syst_isr-fsr: 13.329490561425136 - syst_zjet-xsec: 2.21085747 - syst_ps-model: 7.21356003 - syst_flavres-jes: 2.515847676101649 - syst_laltfakecr-mujet-fake: 0.60316272 - syst_mums-res: 0.015522570000000001 - syst_mod-NP2-jes: 0.1601527418751287 - syst_lid-eff: 2.9781159300000004 - syst_mixNP2-jes: 0.854066714793191 - syst_mixNP1-jes: 0.658659264989245 - syst_btag-eff: 9.368774988924878 - syst_pileoffrho-jes: 3.7496925332059003 - syst_modNP4-jes: 0.06279900621252059 - syst_mcstat: 0.34149654 - syst_modNP3-jes: 0.3073212059693745 - syst_mod-NP1-jes: 5.02721352710252 + syst_etmsoft-res: 5.18513398e-02 + syst_detNP1-jes: 4.02360453e-01 + syst_laltpar-ejet-fake: 7.80563520e-01 + syst_statNP1-jes: 1.96889509e+00 + syst_muid-res: 1.77400800e-02 + syst_pdf: 3.03798870e-01 + syst_isr-fsr: 1.33294906e+01 + syst_zjet-xsec: 2.21085747e+00 + syst_ps-model: 7.21356003e+00 + syst_flavres-jes: 2.51584768e+00 + syst_laltfakecr-mujet-fake: 6.03162720e-01 + syst_mums-res: 1.55225700e-02 + syst_mod-NP2-jes: 1.60152742e-01 + syst_lid-eff: 2.97811593e+00 + syst_mixNP2-jes: 8.54066715e-01 + syst_mixNP1-jes: 6.58659265e-01 + syst_btag-eff: 9.36877499e+00 + syst_pileoffrho-jes: 3.74969253e+00 + syst_modNP4-jes: 6.27990062e-02 + syst_mcstat: 3.41496540e-01 + syst_modNP3-jes: 3.07321206e-01 + syst_mod-NP1-jes: 5.02721353e+00 lumi: 6.209028 -- ArtUnc_1: -0.2705759243522331 - ArtUnc_2: 0.9235362730417213 - ArtUnc_3: -0.4795479589149001 - ArtUnc_4: 0.21384166030107324 - ArtUnc_5: 0.44479896946339154 - ArtUnc_6: 0.10488270068601448 - ArtUnc_7: 0.03373445796263218 - ArtUnc_8: 0.030732791188315327 - ArtUnc_9: -0.08746051356433263 - ArtUnc_10: 1.0167514806966095e-05 - ArtUnc_11: -3.6967451265076065e-07 - ArtUnc_12: 6.022992792758083e-06 - ArtUnc_13: -2.322530001460722e-06 - ArtUnc_14: -1.8370249799858568e-06 - ArtUnc_15: -2.1385187678822313e-06 - ArtUnc_16: -1.0993487230604388e-06 - ArtUnc_17: -1.2289499604253962e-06 - ArtUnc_18: -5.548714280519271e-07 - ArtUnc_19: 8.188090521672963e-07 - ArtUnc_20: 1.2676802835972056e-07 - ArtUnc_21: -5.385060995535403e-07 - ArtUnc_22: 5.55800285284846e-08 - ArtUnc_23: 3.269639826816714e-07 - ArtUnc_24: 5.961267146031061e-07 - ArtUnc_25: 7.513941463893221e-05 - syst_singletop-xsec: 0.5643446861334569 +- ArtUnc_1: -2.70575924e-01 + ArtUnc_2: 9.23536273e-01 + ArtUnc_3: -4.79547959e-01 + ArtUnc_4: 2.13841660e-01 + ArtUnc_5: 4.44798969e-01 + ArtUnc_6: 1.04882701e-01 + ArtUnc_7: 3.37344580e-02 + ArtUnc_8: 3.07327912e-02 + ArtUnc_9: -8.74605136e-02 + ArtUnc_10: 1.01675148e-05 + ArtUnc_11: -3.69674513e-07 + ArtUnc_12: 6.02299279e-06 + ArtUnc_13: -2.32253000e-06 + ArtUnc_14: -1.83702498e-06 + ArtUnc_15: -2.13851877e-06 + ArtUnc_16: -1.09934872e-06 + ArtUnc_17: -1.22894996e-06 + ArtUnc_18: -5.54871428e-07 + ArtUnc_19: 8.18809052e-07 + ArtUnc_20: 1.26768028e-07 + ArtUnc_21: -5.38506100e-07 + ArtUnc_22: 5.55800285e-08 + ArtUnc_23: 3.26963983e-07 + ArtUnc_24: 5.96126715e-07 + ArtUnc_25: 7.51394146e-05 + syst_singletop-xsec: 5.64344686e-01 syst_wjet-scale: 0.874534 - syst_laltrealcr-mujet-fake: 0.1057576 - syst_eta-jes: 0.4800974339928928 - syst_statNP3-jes: 0.06379781313618829 - syst_laltrealcr-ejet-fake: 0.1362646 - syst_pileoffmu-jes: 0.25999251557396796 - syst_lstat-ejet-fake: 0.7898551051378158 - syst_lstat-mujet-fake: 0.01761322466216791 - syst_etmsoft-scale: 0.05550262184969284 - syst_hardscat-model: 7.9033468000000004 - syst_statNP2-jes: 0.15726153836447104 - syst_elen-scale: 0.13294193153595293 - syst_punch-jes: 0.0020338 - syst_pileoffnpv-jes: 1.2356347673725718 - syst_lrec-eff: 0.47794299999999995 - syst_pileoffpt-jes: 0.021786355706955668 + syst_laltrealcr-mujet-fake: 1.05757600e-01 + syst_eta-jes: 4.80097434e-01 + syst_statNP3-jes: 6.37978131e-02 + syst_laltrealcr-ejet-fake: 1.36264600e-01 + syst_pileoffmu-jes: 2.59992516e-01 + syst_lstat-ejet-fake: 7.89855105e-01 + syst_lstat-mujet-fake: 1.76132247e-02 + syst_etmsoft-scale: 5.55026218e-02 + syst_hardscat-model: 7.90334680e+00 + syst_statNP2-jes: 1.57261538e-01 + syst_elen-scale: 1.32941932e-01 + syst_punch-jes: 2.03380000e-03 + syst_pileoffnpv-jes: 1.23563477e+00 + syst_lrec-eff: 4.77943000e-01 + syst_pileoffpt-jes: 2.17863557e-02 syst_jeten-res: 0.0 - syst_lighttag-eff: 1.0291028 - syst_laltfakecr-ejet-fake: 0.8155538 - syst_laltpar-mujet-fake: 0.3437122 - syst_jetrec-eff: 0.1077914 - syst_c/tautag-eff: 1.947364031018204 - syst_dibos-xsec: 0.1850758 - syst_elen-res: 0.08515285254951828 - syst_flavcomp-jes: 3.779962021496337 - syst_detNP2-jes: 0.37937866511210144 - syst_detNP3-jes: 0.059050289388960654 - syst_jetvxfrac: 1.3399933271705347 - syst_ltrig-eff: 2.4751346 - syst_btag-jes: 1.0220097957068461 - syst_mup-scale: 0.0223718 + syst_lighttag-eff: 1.02910280e+00 + syst_laltfakecr-ejet-fake: 8.15553800e-01 + syst_laltpar-mujet-fake: 3.43712200e-01 + syst_jetrec-eff: 1.07791400e-01 + syst_c/tautag-eff: 1.94736403e+00 + syst_dibos-xsec: 1.85075800e-01 + syst_elen-res: 8.51528525e-02 + syst_flavcomp-jes: 3.77996202e+00 + syst_detNP2-jes: 3.79378665e-01 + syst_detNP3-jes: 5.90502894e-02 + syst_jetvxfrac: 1.33999333e+00 + syst_ltrig-eff: 2.47513460e+00 + syst_btag-jes: 1.02200980e+00 + syst_mup-scale: 2.23718000e-02 syst_singlephpt-jes: 0.0 - syst_etmsoft-res: 0.0792595109797556 - syst_detNP1-jes: 0.3413937915836783 - syst_laltpar-ejet-fake: 0.5816667999999999 - syst_statNP1-jes: 1.8233022671499397 - syst_muid-res: 0.0020338 - syst_pdf: 0.16677160000000002 - syst_isr-fsr: 12.498723608736798 - syst_zjet-xsec: 2.0622732 - syst_ps-model: 7.7833526 - syst_flavres-jes: 2.311575199373386 - syst_laltfakecr-mujet-fake: 0.42913179999999995 - syst_mums-res: 0.018304199999999996 - syst_mod-NP2-jes: 0.15409642391188055 - syst_lid-eff: 2.7171568 - syst_mixNP2-jes: 0.7822195480499001 - syst_mixNP1-jes: 0.5777021340498839 - syst_btag-eff: 8.602785222343691 - syst_pileoffrho-jes: 3.3945596442512715 - syst_modNP4-jes: 0.031556686176308184 - syst_mcstat: 0.29083339999999996 - syst_modNP3-jes: 0.2688368973346293 - syst_mod-NP1-jes: 4.57809193157874 + syst_etmsoft-res: 7.92595110e-02 + syst_detNP1-jes: 3.41393792e-01 + syst_laltpar-ejet-fake: 5.81666800e-01 + syst_statNP1-jes: 1.82330227e+00 + syst_muid-res: 2.03380000e-03 + syst_pdf: 1.66771600e-01 + syst_isr-fsr: 1.24987236e+01 + syst_zjet-xsec: 2.06227320e+00 + syst_ps-model: 7.78335260e+00 + syst_flavres-jes: 2.31157520e+00 + syst_laltfakecr-mujet-fake: 4.29131800e-01 + syst_mums-res: 1.83042000e-02 + syst_mod-NP2-jes: 1.54096424e-01 + syst_lid-eff: 2.71715680e+00 + syst_mixNP2-jes: 7.82219548e-01 + syst_mixNP1-jes: 5.77702134e-01 + syst_btag-eff: 8.60278522e+00 + syst_pileoffrho-jes: 3.39455964e+00 + syst_modNP4-jes: 3.15566862e-02 + syst_mcstat: 2.90833400e-01 + syst_modNP3-jes: 2.68836897e-01 + syst_mod-NP1-jes: 4.57809193e+00 lumi: 5.69464 -- ArtUnc_1: 0.3343208362749091 - ArtUnc_2: 0.8386185770033565 - ArtUnc_3: 0.3040995467155782 - ArtUnc_4: -0.41252807514694384 - ArtUnc_5: -0.4324577290133972 - ArtUnc_6: -0.18076199661631898 - ArtUnc_7: -0.203119553752858 - ArtUnc_8: 0.050861048050421936 - ArtUnc_9: -0.044136858264708596 - ArtUnc_10: 1.0290148436291212e-05 - ArtUnc_11: -1.149228524294735e-06 - ArtUnc_12: 5.782443834979153e-06 - ArtUnc_13: -2.098736011155302e-06 - ArtUnc_14: -2.0265737401744564e-06 - ArtUnc_15: -1.995697860405986e-06 - ArtUnc_16: -1.094141166255888e-06 - ArtUnc_17: -1.1011430037547656e-06 - ArtUnc_18: -5.492252725336606e-07 - ArtUnc_19: 7.70524141812808e-07 - ArtUnc_20: 1.1400179503847727e-07 - ArtUnc_21: -5.094746446806153e-07 - ArtUnc_22: 5.3015943247739e-08 - ArtUnc_23: 3.1023831837540187e-07 - ArtUnc_24: 5.631215939812193e-07 - ArtUnc_25: 7.132485580736777e-05 - syst_singletop-xsec: 0.4483914562400547 - syst_wjet-scale: 0.6521277000000001 - syst_laltrealcr-mujet-fake: 0.22131795 - syst_eta-jes: 0.7322961901819527 - syst_statNP3-jes: 0.038820605452774694 - syst_laltrealcr-ejet-fake: 0.06926745000000001 - syst_pileoffmu-jes: 0.2766613009598865 - syst_lstat-ejet-fake: 0.5486649819088574 - syst_lstat-mujet-fake: 0.019020386039507054 - syst_etmsoft-scale: 0.03365145222374325 - syst_hardscat-model: 6.1411507499999995 - syst_statNP2-jes: 0.11747145669166563 - syst_elen-scale: 0.20775427065744043 - syst_punch-jes: 0.005852426473694479 - syst_pileoffnpv-jes: 1.056986944967185 - syst_lrec-eff: 0.40377854999999996 - syst_pileoffpt-jes: 0.024872812513201538 +- ArtUnc_1: 3.34320836e-01 + ArtUnc_2: 8.38618577e-01 + ArtUnc_3: 3.04099547e-01 + ArtUnc_4: -4.12528075e-01 + ArtUnc_5: -4.32457729e-01 + ArtUnc_6: -1.80761997e-01 + ArtUnc_7: -2.03119554e-01 + ArtUnc_8: 5.08610481e-02 + ArtUnc_9: -4.41368583e-02 + ArtUnc_10: 1.02901484e-05 + ArtUnc_11: -1.14922852e-06 + ArtUnc_12: 5.78244383e-06 + ArtUnc_13: -2.09873601e-06 + ArtUnc_14: -2.02657374e-06 + ArtUnc_15: -1.99569786e-06 + ArtUnc_16: -1.09414117e-06 + ArtUnc_17: -1.10114300e-06 + ArtUnc_18: -5.49225273e-07 + ArtUnc_19: 7.70524142e-07 + ArtUnc_20: 1.14001795e-07 + ArtUnc_21: -5.09474645e-07 + ArtUnc_22: 5.30159432e-08 + ArtUnc_23: 3.10238318e-07 + ArtUnc_24: 5.63121594e-07 + ArtUnc_25: 7.13248558e-05 + syst_singletop-xsec: 4.48391456e-01 + syst_wjet-scale: 6.52127700e-01 + syst_laltrealcr-mujet-fake: 2.21317950e-01 + syst_eta-jes: 7.32296190e-01 + syst_statNP3-jes: 3.88206055e-02 + syst_laltrealcr-ejet-fake: 6.92674500e-02 + syst_pileoffmu-jes: 2.76661301e-01 + syst_lstat-ejet-fake: 5.48664982e-01 + syst_lstat-mujet-fake: 1.90203860e-02 + syst_etmsoft-scale: 3.36514522e-02 + syst_hardscat-model: 6.14115075e+00 + syst_statNP2-jes: 1.17471457e-01 + syst_elen-scale: 2.07754271e-01 + syst_punch-jes: 5.85242647e-03 + syst_pileoffnpv-jes: 1.05698694e+00 + syst_lrec-eff: 4.03778550e-01 + syst_pileoffpt-jes: 2.48728125e-02 syst_jeten-res: 0.0 - syst_lighttag-eff: 0.8649984 - syst_laltfakecr-ejet-fake: 0.5710341000000001 - syst_laltpar-mujet-fake: 0.3142377 - syst_jetrec-eff: 0.0810936 - syst_c/tautag-eff: 1.5703442293974599 - syst_dibos-xsec: 0.11319314999999999 - syst_elen-res: 0.04985309031696907 - syst_flavcomp-jes: 3.170263953897682 - syst_detNP2-jes: 0.2729742920570395 - syst_detNP3-jes: 0.04922652603853434 - syst_jetvxfrac: 1.1046212730247185 - syst_ltrig-eff: 2.1151914 - syst_btag-jes: 0.870096273868017 - syst_mup-scale: 0.03634281445804487 + syst_lighttag-eff: 8.64998400e-01 + syst_laltfakecr-ejet-fake: 5.71034100e-01 + syst_laltpar-mujet-fake: 3.14237700e-01 + syst_jetrec-eff: 8.10936000e-02 + syst_c/tautag-eff: 1.57034423e+00 + syst_dibos-xsec: 1.13193150e-01 + syst_elen-res: 4.98530903e-02 + syst_flavcomp-jes: 3.17026395e+00 + syst_detNP2-jes: 2.72974292e-01 + syst_detNP3-jes: 4.92265260e-02 + syst_jetvxfrac: 1.10462127e+00 + syst_ltrig-eff: 2.11519140e+00 + syst_btag-jes: 8.70096274e-01 + syst_mup-scale: 3.63428145e-02 syst_singlephpt-jes: 0.0 - syst_etmsoft-res: 0.06291358459221566 - syst_detNP1-jes: 0.28407889500433675 - syst_laltpar-ejet-fake: 0.45108315 - syst_statNP1-jes: 1.5130727310397962 + syst_etmsoft-res: 6.29135846e-02 + syst_detNP1-jes: 2.84078895e-01 + syst_laltpar-ejet-fake: 4.51083150e-01 + syst_statNP1-jes: 1.51307273e+00 syst_muid-res: 0.0 - syst_pdf: 0.04899405 - syst_isr-fsr: 11.165689443251958 - syst_zjet-xsec: 1.7215495499999998 - syst_ps-model: 7.21901985 - syst_flavres-jes: 1.959223595907605 - syst_laltfakecr-mujet-fake: 0.3750579 - syst_mums-res: 0.04223625 - syst_mod-NP2-jes: 0.10221870595995076 - syst_lid-eff: 2.2199373000000002 - syst_mixNP2-jes: 0.5997595089952035 - syst_mixNP1-jes: 0.46121985000000004 - syst_btag-eff: 7.1411488232046825 - syst_pileoffrho-jes: 2.8639057892304884 - syst_modNP4-jes: 0.035114558842166875 - syst_mcstat: 0.28720650000000003 - syst_modNP3-jes: 0.2326707571315997 - syst_mod-NP1-jes: 3.8291922797999702 + syst_pdf: 4.89940500e-02 + syst_isr-fsr: 1.11656894e+01 + syst_zjet-xsec: 1.72154955e+00 + syst_ps-model: 7.21901985e+00 + syst_flavres-jes: 1.95922360e+00 + syst_laltfakecr-mujet-fake: 3.75057900e-01 + syst_mums-res: 4.22362500e-02 + syst_mod-NP2-jes: 1.02218706e-01 + syst_lid-eff: 2.21993730e+00 + syst_mixNP2-jes: 5.99759509e-01 + syst_mixNP1-jes: 4.61219850e-01 + syst_btag-eff: 7.14114882e+00 + syst_pileoffrho-jes: 2.86390579e+00 + syst_modNP4-jes: 3.51145588e-02 + syst_mcstat: 2.87206500e-01 + syst_modNP3-jes: 2.32670757e-01 + syst_mod-NP1-jes: 3.82919228e+00 lumi: 4.73046 -- ArtUnc_1: 0.20774308609350942 - ArtUnc_2: 0.04129425277120698 - ArtUnc_3: 0.6756532740570217 - ArtUnc_4: -0.15365535919893705 - ArtUnc_5: 0.20346720382971956 - ArtUnc_6: 0.39445830599217385 - ArtUnc_7: 0.44531368185818504 - ArtUnc_8: -0.015424104675705042 - ArtUnc_9: -0.04989375787194003 - ArtUnc_10: 1.363403696970694e-05 - ArtUnc_11: -2.9714398876003854e-06 - ArtUnc_12: 5.892159274791877e-06 - ArtUnc_13: -2.4899003311269805e-06 - ArtUnc_14: -3.0733419564166763e-06 - ArtUnc_15: -1.9697044020622582e-06 - ArtUnc_16: -1.4852269417357167e-06 - ArtUnc_17: -1.2167705127868232e-06 - ArtUnc_18: -6.614930984730461e-07 - ArtUnc_19: 8.44282387382093e-07 - ArtUnc_20: 1.3755920697224755e-07 - ArtUnc_21: -5.702361881367925e-07 - ArtUnc_22: 5.9585780417362214e-08 - ArtUnc_23: 3.4661933070274466e-07 - ArtUnc_24: 6.241136601870737e-07 - ArtUnc_25: 7.971300588685219e-05 - syst_singletop-xsec: 0.2968835668462463 - syst_wjet-scale: 0.42046742 - syst_laltrealcr-mujet-fake: 0.60956031 - syst_eta-jes: 0.8826390028268558 - syst_statNP3-jes: 0.055599418786387494 - syst_laltrealcr-ejet-fake: 0.0117449 - syst_pileoffmu-jes: 0.2995133728059289 - syst_lstat-ejet-fake: 0.33056990735950526 - syst_lstat-mujet-fake: 0.042719803412612986 - syst_etmsoft-scale: 0.03158046148415662 - syst_hardscat-model: 4.30802932 - syst_statNP2-jes: 0.08730814553243357 - syst_elen-scale: 0.196649052356332 - syst_punch-jes: 0.0030514145294723563 - syst_pileoffnpv-jes: 0.7670570721744071 - syst_lrec-eff: 0.29949495 - syst_pileoffpt-jes: 0.020770549324013437 +- ArtUnc_1: 2.07743086e-01 + ArtUnc_2: 4.12942528e-02 + ArtUnc_3: 6.75653274e-01 + ArtUnc_4: -1.53655359e-01 + ArtUnc_5: 2.03467204e-01 + ArtUnc_6: 3.94458306e-01 + ArtUnc_7: 4.45313682e-01 + ArtUnc_8: -1.54241047e-02 + ArtUnc_9: -4.98937579e-02 + ArtUnc_10: 1.36340370e-05 + ArtUnc_11: -2.97143989e-06 + ArtUnc_12: 5.89215927e-06 + ArtUnc_13: -2.48990033e-06 + ArtUnc_14: -3.07334196e-06 + ArtUnc_15: -1.96970440e-06 + ArtUnc_16: -1.48522694e-06 + ArtUnc_17: -1.21677051e-06 + ArtUnc_18: -6.61493098e-07 + ArtUnc_19: 8.44282387e-07 + ArtUnc_20: 1.37559207e-07 + ArtUnc_21: -5.70236188e-07 + ArtUnc_22: 5.95857804e-08 + ArtUnc_23: 3.46619331e-07 + ArtUnc_24: 6.24113660e-07 + ArtUnc_25: 7.97130059e-05 + syst_singletop-xsec: 2.96883567e-01 + syst_wjet-scale: 4.20467420e-01 + syst_laltrealcr-mujet-fake: 6.09560310e-01 + syst_eta-jes: 8.82639003e-01 + syst_statNP3-jes: 5.55994188e-02 + syst_laltrealcr-ejet-fake: 1.17449000e-02 + syst_pileoffmu-jes: 2.99513373e-01 + syst_lstat-ejet-fake: 3.30569907e-01 + syst_lstat-mujet-fake: 4.27198034e-02 + syst_etmsoft-scale: 3.15804615e-02 + syst_hardscat-model: 4.30802932e+00 + syst_statNP2-jes: 8.73081455e-02 + syst_elen-scale: 1.96649052e-01 + syst_punch-jes: 3.05141453e-03 + syst_pileoffnpv-jes: 7.67057072e-01 + syst_lrec-eff: 2.99494950e-01 + syst_pileoffpt-jes: 2.07705493e-02 syst_jeten-res: 0.0 - syst_lighttag-eff: 0.6324634102597463 - syst_laltfakecr-ejet-fake: 0.34530006 - syst_laltpar-mujet-fake: 0.32650822000000007 - syst_jetrec-eff: 0.06342246 - syst_c/tautag-eff: 1.070547957131054 - syst_dibos-xsec: 0.10452961000000001 - syst_elen-res: 0.022377039882797278 - syst_flavcomp-jes: 2.301596708569426 - syst_detNP2-jes: 0.22139292267356533 - syst_detNP3-jes: 0.04280045253747675 - syst_jetvxfrac: 0.7693931507380046 - syst_ltrig-eff: 1.56676966 - syst_btag-jes: 0.6456178580782034 - syst_mup-scale: 0.027469008678412475 + syst_lighttag-eff: 6.32463410e-01 + syst_laltfakecr-ejet-fake: 3.45300060e-01 + syst_laltpar-mujet-fake: 3.26508220e-01 + syst_jetrec-eff: 6.34224600e-02 + syst_c/tautag-eff: 1.07054796e+00 + syst_dibos-xsec: 1.04529610e-01 + syst_elen-res: 2.23770399e-02 + syst_flavcomp-jes: 2.30159671e+00 + syst_detNP2-jes: 2.21392923e-01 + syst_detNP3-jes: 4.28004525e-02 + syst_jetvxfrac: 7.69393151e-01 + syst_ltrig-eff: 1.56676966e+00 + syst_btag-jes: 6.45617858e-01 + syst_mup-scale: 2.74690087e-02 syst_singlephpt-jes: 0.0 - syst_etmsoft-res: 0.03559983617717749 - syst_detNP1-jes: 0.2671977656452345 - syst_laltpar-ejet-fake: 0.34060209999999996 - syst_statNP1-jes: 1.0682144740170072 - syst_muid-res: 0.01644286 - syst_pdf: 0.09748267000000001 - syst_isr-fsr: 8.778926986372753 - syst_zjet-xsec: 1.14982571 - syst_ps-model: 4.743765109999999 - syst_flavres-jes: 1.4636558278449832 - syst_laltfakecr-mujet-fake: 0.19966330000000004 - syst_mums-res: 0.00822143 - syst_mod-NP2-jes: 0.07261682757579178 - syst_lid-eff: 1.50569618 - syst_mixNP2-jes: 0.47159356801588453 - syst_mixNP1-jes: 0.4160381124414298 - syst_btag-eff: 4.970931211744019 - syst_pileoffrho-jes: 2.075454103240018 - syst_modNP4-jes: 0.03722873939862153 - syst_mcstat: 0.22550208000000002 - syst_modNP3-jes: 0.1386296275033342 - syst_mod-NP1-jes: 2.7988219915213457 + syst_etmsoft-res: 3.55998362e-02 + syst_detNP1-jes: 2.67197766e-01 + syst_laltpar-ejet-fake: 3.40602100e-01 + syst_statNP1-jes: 1.06821447e+00 + syst_muid-res: 1.64428600e-02 + syst_pdf: 9.74826700e-02 + syst_isr-fsr: 8.77892699e+00 + syst_zjet-xsec: 1.14982571e+00 + syst_ps-model: 4.74376511e+00 + syst_flavres-jes: 1.46365583e+00 + syst_laltfakecr-mujet-fake: 1.99663300e-01 + syst_mums-res: 8.22143000e-03 + syst_mod-NP2-jes: 7.26168276e-02 + syst_lid-eff: 1.50569618e+00 + syst_mixNP2-jes: 4.71593568e-01 + syst_mixNP1-jes: 4.16038112e-01 + syst_btag-eff: 4.97093121e+00 + syst_pileoffrho-jes: 2.07545410e+00 + syst_modNP4-jes: 3.72287394e-02 + syst_mcstat: 2.25502080e-01 + syst_modNP3-jes: 1.38629628e-01 + syst_mod-NP1-jes: 2.79882199e+00 lumi: 3.288572 -- ArtUnc_1: 0.00678491890284974 - ArtUnc_2: -0.05413053897544706 - ArtUnc_3: 0.020897427927125702 - ArtUnc_4: 0.033485479781840084 - ArtUnc_5: 0.1098452604503441 - ArtUnc_6: 0.03917513106868663 - ArtUnc_7: -0.09080376669989394 - ArtUnc_8: 0.23366459975026724 - ArtUnc_9: 0.314831753852429 - ArtUnc_10: 2.8808849285939605e-05 - ArtUnc_11: -1.3522963095433985e-05 - ArtUnc_12: 8.031628215233506e-06 - ArtUnc_13: -4.224799362816632e-06 - ArtUnc_14: -6.060570221073843e-06 - ArtUnc_15: -2.684854680050845e-06 - ArtUnc_16: -2.7877211846048037e-06 - ArtUnc_17: -1.7882870201954745e-06 - ArtUnc_18: -1.1608207348641945e-06 - ArtUnc_19: 1.3399032977124545e-06 - ArtUnc_20: 1.7917515987419413e-07 - ArtUnc_21: -9.425243828648174e-07 - ArtUnc_22: 9.952160549450894e-08 - ArtUnc_23: 5.716637545573051e-07 - ArtUnc_24: 1.0077391641701514e-06 - ArtUnc_25: 0.0001315846277340393 - syst_singletop-xsec: 0.06792676511515891 - syst_wjet-scale: 0.12224527199999999 - syst_laltrealcr-mujet-fake: 0.423717352 - syst_eta-jes: 0.3949289236353195 - syst_statNP3-jes: 0.025092195766552434 - syst_laltrealcr-ejet-fake: 0.01159508 - syst_pileoffmu-jes: 0.12167293172442757 - syst_lstat-ejet-fake: 0.0608236106814151 - syst_lstat-mujet-fake: 0.1380007393290597 - syst_etmsoft-scale: 0.02941568815843845 - syst_hardscat-model: 1.9979979279999998 - syst_statNP2-jes: 0.022309116929549316 - syst_elen-scale: 0.1082580805538335 - syst_punch-jes: 0.003049829483020977 - syst_pileoffnpv-jes: 0.18157544405082834 - syst_lrec-eff: 0.105680872 - syst_pileoffpt-jes: 0.01004163383891287 +- ArtUnc_1: 6.78491890e-03 + ArtUnc_2: -5.41305390e-02 + ArtUnc_3: 2.08974279e-02 + ArtUnc_4: 3.34854798e-02 + ArtUnc_5: 1.09845260e-01 + ArtUnc_6: 3.91751311e-02 + ArtUnc_7: -9.08037667e-02 + ArtUnc_8: 2.33664600e-01 + ArtUnc_9: 3.14831754e-01 + ArtUnc_10: 2.88088493e-05 + ArtUnc_11: -1.35229631e-05 + ArtUnc_12: 8.03162822e-06 + ArtUnc_13: -4.22479936e-06 + ArtUnc_14: -6.06057022e-06 + ArtUnc_15: -2.68485468e-06 + ArtUnc_16: -2.78772118e-06 + ArtUnc_17: -1.78828702e-06 + ArtUnc_18: -1.16082073e-06 + ArtUnc_19: 1.33990330e-06 + ArtUnc_20: 1.79175160e-07 + ArtUnc_21: -9.42524383e-07 + ArtUnc_22: 9.95216055e-08 + ArtUnc_23: 5.71663755e-07 + ArtUnc_24: 1.00773916e-06 + ArtUnc_25: 1.31584628e-04 + syst_singletop-xsec: 6.79267651e-02 + syst_wjet-scale: 1.22245272e-01 + syst_laltrealcr-mujet-fake: 4.23717352e-01 + syst_eta-jes: 3.94928924e-01 + syst_statNP3-jes: 2.50921958e-02 + syst_laltrealcr-ejet-fake: 1.15950800e-02 + syst_pileoffmu-jes: 1.21672932e-01 + syst_lstat-ejet-fake: 6.08236107e-02 + syst_lstat-mujet-fake: 1.38000739e-01 + syst_etmsoft-scale: 2.94156882e-02 + syst_hardscat-model: 1.99799793e+00 + syst_statNP2-jes: 2.23091169e-02 + syst_elen-scale: 1.08258081e-01 + syst_punch-jes: 3.04982948e-03 + syst_pileoffnpv-jes: 1.81575444e-01 + syst_lrec-eff: 1.05680872e-01 + syst_pileoffpt-jes: 1.00416338e-02 syst_jeten-res: 0.0 - syst_lighttag-eff: 0.18535578402853783 - syst_laltfakecr-ejet-fake: 0.07785268 - syst_laltpar-mujet-fake: 0.270331008 - syst_jetrec-eff: 0.016895688 - syst_c/tautag-eff: 0.2936869054258171 - syst_dibos-xsec: 0.025840464 - syst_elen-res: 0.01441007599154314 - syst_flavcomp-jes: 0.697912309892471 - syst_detNP2-jes: 0.06000886856533444 - syst_detNP3-jes: 0.01573792352446383 - syst_jetvxfrac: 0.20941647107540798 - syst_ltrig-eff: 0.5088583680000001 - syst_btag-jes: 0.18490678793994703 - syst_mup-scale: 0.013678423774864704 + syst_lighttag-eff: 1.85355784e-01 + syst_laltfakecr-ejet-fake: 7.78526800e-02 + syst_laltpar-mujet-fake: 2.70331008e-01 + syst_jetrec-eff: 1.68956880e-02 + syst_c/tautag-eff: 2.93686905e-01 + syst_dibos-xsec: 2.58404640e-02 + syst_elen-res: 1.44100760e-02 + syst_flavcomp-jes: 6.97912310e-01 + syst_detNP2-jes: 6.00088686e-02 + syst_detNP3-jes: 1.57379235e-02 + syst_jetvxfrac: 2.09416471e-01 + syst_ltrig-eff: 5.08858368e-01 + syst_btag-jes: 1.84906788e-01 + syst_mup-scale: 1.36784238e-02 syst_singlephpt-jes: 0.0 - syst_etmsoft-res: 0.01922255620591892 - syst_detNP1-jes: 0.08998540741447679 - syst_laltpar-ejet-fake: 0.061288279999999994 - syst_statNP1-jes: 0.30031485610604075 - syst_muid-res: 0.001325152 - syst_pdf: 0.7818396799999999 - syst_isr-fsr: 3.1070164144188883 - syst_zjet-xsec: 0.310416856 - syst_ps-model: 1.1048454799999998 - syst_flavres-jes: 0.4409644885669146 - syst_laltfakecr-mujet-fake: 0.109656328 - syst_mums-res: 0.024184024 - syst_mod-NP2-jes: 0.025182246675355083 - syst_lid-eff: 0.4223922 - syst_mixNP2-jes: 0.12919159516769682 - syst_mixNP1-jes: 0.123901712 - syst_btag-eff: 1.405136836207867 - syst_pileoffrho-jes: 0.6014818754420922 - syst_modNP4-jes: 0.012928723773509588 - syst_mcstat: 0.09706738399999999 - syst_modNP3-jes: 0.030768791008600648 - syst_mod-NP1-jes: 0.8140959578713352 - lumi: 0.9276063999999999 + syst_etmsoft-res: 1.92225562e-02 + syst_detNP1-jes: 8.99854074e-02 + syst_laltpar-ejet-fake: 6.12882800e-02 + syst_statNP1-jes: 3.00314856e-01 + syst_muid-res: 1.32515200e-03 + syst_pdf: 7.81839680e-01 + syst_isr-fsr: 3.10701641e+00 + syst_zjet-xsec: 3.10416856e-01 + syst_ps-model: 1.10484548e+00 + syst_flavres-jes: 4.40964489e-01 + syst_laltfakecr-mujet-fake: 1.09656328e-01 + syst_mums-res: 2.41840240e-02 + syst_mod-NP2-jes: 2.51822467e-02 + syst_lid-eff: 4.22392200e-01 + syst_mixNP2-jes: 1.29191595e-01 + syst_mixNP1-jes: 1.23901712e-01 + syst_btag-eff: 1.40513684e+00 + syst_pileoffrho-jes: 6.01481875e-01 + syst_modNP4-jes: 1.29287238e-02 + syst_mcstat: 9.70673840e-02 + syst_modNP3-jes: 3.07687910e-02 + syst_mod-NP1-jes: 8.14095958e-01 + lumi: 9.27606400e-01 diff --git a/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_8TEV_LJ_DIF/uncertainties_dSig_dyttBar_norm.yaml b/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_8TEV_LJ_DIF/uncertainties_dSig_dyttBar_norm.yaml index 34043646a9..0c713bc9cb 100644 --- a/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_8TEV_LJ_DIF/uncertainties_dSig_dyttBar_norm.yaml +++ b/nnpdf_data/nnpdf_data/commondata/ATLAS_TTBAR_8TEV_LJ_DIF/uncertainties_dSig_dyttBar_norm.yaml @@ -320,403 +320,403 @@ definitions: treatment: MULT type: CORR bins: -- ArtUnc_1: 0.004049152272621097 - ArtUnc_2: 0.0007241841469276418 - ArtUnc_3: -0.000661342645937355 - ArtUnc_4: 0.000670770795832267 - ArtUnc_5: -0.0006781990431378904 - ArtUnc_6: -0.0005779081838037121 - ArtUnc_7: 0.000352762415586408 - ArtUnc_8: -0.0004631471941041022 - ArtUnc_9: 1.2385124212648628e-08 - ArtUnc_10: -1.1044351963640018e-08 - ArtUnc_11: -5.84048641367431e-09 - ArtUnc_12: -2.6282279408324502e-09 - ArtUnc_13: 1.8097950574814656e-09 - ArtUnc_14: -2.783994512803824e-09 - ArtUnc_15: -1.7777845707966278e-09 - ArtUnc_16: -6.49673832321236e-10 - ArtUnc_17: -5.439844762497975e-10 - ArtUnc_18: 1.194508140692785e-10 - ArtUnc_19: -9.358762367203476e-11 - ArtUnc_20: -8.975562687470149e-13 +- ArtUnc_1: 4.04915227e-03 + ArtUnc_2: 7.24184147e-04 + ArtUnc_3: -6.61342646e-04 + ArtUnc_4: 6.70770796e-04 + ArtUnc_5: -6.78199043e-04 + ArtUnc_6: -5.77908184e-04 + ArtUnc_7: 3.52762416e-04 + ArtUnc_8: -4.63147194e-04 + ArtUnc_9: 1.23851242e-08 + ArtUnc_10: -1.10443520e-08 + ArtUnc_11: -5.84048641e-09 + ArtUnc_12: -2.62822794e-09 + ArtUnc_13: 1.80979506e-09 + ArtUnc_14: -2.78399451e-09 + ArtUnc_15: -1.77778457e-09 + ArtUnc_16: -6.49673832e-10 + ArtUnc_17: -5.43984476e-10 + ArtUnc_18: 1.19450814e-10 + ArtUnc_19: -9.35876237e-11 + ArtUnc_20: -8.97556269e-13 ArtUnc_21: 0.0 - ArtUnc_22: -2.636112522571368e-11 + ArtUnc_22: -2.63611252e-11 ArtUnc_23: 0.0 ArtUnc_24: 0.0 - ArtUnc_25: 1.1460699348648485e-13 - syst_singletop-xsec: 0.000252192739164907 - syst_wjet-scale: 0.0001673862 - syst_laltrealcr-mujet-fake: 0.0031301219399999997 - syst_eta-jes: 0.00308505016065823 - syst_statNP3-jes: 0.00010275863221073971 - syst_laltrealcr-ejet-fake: 0.00026781792 - syst_pileoffmu-jes: 0.000523918137524334 - syst_lstat-ejet-fake: 0.000902052835577376 - syst_lstat-mujet-fake: 0.0006813152967818311 - syst_etmsoft-scale: 0.00020341900215885947 - syst_hardscat-model: 0.0047705067 - syst_statNP2-jes: 2.744061790791299e-05 - syst_elen-scale: 0.0007452446438369059 - syst_punch-jes: 3.8124021429134085e-05 - syst_pileoffnpv-jes: 0.00016670480665938422 - syst_lrec-eff: 0.0001673862 - syst_pileoffpt-jes: 4.348821043288284e-05 + ArtUnc_25: 1.14606993e-13 + syst_singletop-xsec: 2.52192739e-04 + syst_wjet-scale: 1.67386200e-04 + syst_laltrealcr-mujet-fake: 3.13012194e-03 + syst_eta-jes: 3.08505016e-03 + syst_statNP3-jes: 1.02758632e-04 + syst_laltrealcr-ejet-fake: 2.67817920e-04 + syst_pileoffmu-jes: 5.23918138e-04 + syst_lstat-ejet-fake: 9.02052836e-04 + syst_lstat-mujet-fake: 6.81315297e-04 + syst_etmsoft-scale: 2.03419002e-04 + syst_hardscat-model: 4.77050670e-03 + syst_statNP2-jes: 2.74406179e-05 + syst_elen-scale: 7.45244644e-04 + syst_punch-jes: 3.81240214e-05 + syst_pileoffnpv-jes: 1.66704807e-04 + syst_lrec-eff: 1.67386200e-04 + syst_pileoffpt-jes: 4.34882104e-05 syst_jeten-res: 0.0 - syst_lighttag-eff: 0.00012985922371041292 - syst_laltfakecr-ejet-fake: 0.00055237446 - syst_laltpar-mujet-fake: 0.0012972430499999998 - syst_jetrec-eff: 2.510793e-05 - syst_c/tautag-eff: 0.00024696556117121695 - syst_dibos-xsec: 5.021586e-05 - syst_elen-res: 4.348821043288284e-05 - syst_flavcomp-jes: 0.0009080894189196659 - syst_detNP2-jes: 9.569968388819304e-05 - syst_detNP3-jes: 2.1744105216441422e-05 - syst_jetvxfrac: 0.00024400522001523866 - syst_ltrig-eff: 0.0007576306031947036 - syst_btag-jes: 7.24803507214714e-05 - syst_mup-scale: 8.327358307250806e-05 + syst_lighttag-eff: 1.29859224e-04 + syst_laltfakecr-ejet-fake: 5.52374460e-04 + syst_laltpar-mujet-fake: 1.29724305e-03 + syst_jetrec-eff: 2.51079300e-05 + syst_c/tautag-eff: 2.46965561e-04 + syst_dibos-xsec: 5.02158600e-05 + syst_elen-res: 4.34882104e-05 + syst_flavcomp-jes: 9.08089419e-04 + syst_detNP2-jes: 9.56996839e-05 + syst_detNP3-jes: 2.17441052e-05 + syst_jetvxfrac: 2.44005220e-04 + syst_ltrig-eff: 7.57630603e-04 + syst_btag-jes: 7.24803507e-05 + syst_mup-scale: 8.32735831e-05 syst_singlephpt-jes: 0.0 - syst_etmsoft-res: 0.0001449607014429428 - syst_detNP1-jes: 0.00016796060449581404 - syst_laltpar-ejet-fake: 0.0005858517000000001 - syst_statNP1-jes: 0.00016670480665938422 - syst_muid-res: 8.36931e-05 - syst_pdf: 0.00423487086 - syst_isr-fsr: 0.008293782464204051 - syst_zjet-xsec: 5.021586e-05 - syst_ps-model: 0.00414280845 - syst_flavres-jes: 0.000505131367330483 - syst_laltfakecr-mujet-fake: 0.00026781792 - syst_mums-res: 0.00010880102999999999 - syst_mod-NP2-jes: 2.744061790791299e-05 - syst_lid-eff: 0.00024696556117121695 - syst_mixNP2-jes: 0.00010147249101005997 - syst_mixNP1-jes: 0.00014800906449859844 - syst_btag-eff: 4.64100690442287e-05 - syst_pileoffrho-jes: 0.0003211841979768405 - syst_modNP4-jes: 2.899214028858856e-05 - syst_mcstat: 0.0010880103 - syst_modNP3-jes: 0.00010944292955149318 - syst_mod-NP1-jes: 0.0004186328527361442 -- ArtUnc_1: -0.0008173194033852813 - ArtUnc_2: -0.003309945472255771 - ArtUnc_3: -0.0008202592626190879 - ArtUnc_4: -0.0012584585917214998 - ArtUnc_5: -8.723709345842796e-05 - ArtUnc_6: 3.497538801358054e-05 - ArtUnc_7: 0.0003778744566296124 - ArtUnc_8: -0.00041552850994574386 - ArtUnc_9: 8.669113945558272e-09 - ArtUnc_10: -8.3709478461584e-09 - ArtUnc_11: -4.518810394238896e-09 - ArtUnc_12: -1.564771693037206e-09 - ArtUnc_13: 2.1164196474144707e-09 - ArtUnc_14: -1.876576506290187e-09 - ArtUnc_15: -1.135039635967673e-09 - ArtUnc_16: -4.941905997355405e-10 - ArtUnc_17: -4.411869399339365e-10 - ArtUnc_18: 7.896390787791664e-11 - ArtUnc_19: -4.7559313425357687e-11 - ArtUnc_20: -3.7733600889407026e-13 + syst_etmsoft-res: 1.44960701e-04 + syst_detNP1-jes: 1.67960604e-04 + syst_laltpar-ejet-fake: 5.85851700e-04 + syst_statNP1-jes: 1.66704807e-04 + syst_muid-res: 8.36931000e-05 + syst_pdf: 4.23487086e-03 + syst_isr-fsr: 8.29378246e-03 + syst_zjet-xsec: 5.02158600e-05 + syst_ps-model: 4.14280845e-03 + syst_flavres-jes: 5.05131367e-04 + syst_laltfakecr-mujet-fake: 2.67817920e-04 + syst_mums-res: 1.08801030e-04 + syst_mod-NP2-jes: 2.74406179e-05 + syst_lid-eff: 2.46965561e-04 + syst_mixNP2-jes: 1.01472491e-04 + syst_mixNP1-jes: 1.48009064e-04 + syst_btag-eff: 4.64100690e-05 + syst_pileoffrho-jes: 3.21184198e-04 + syst_modNP4-jes: 2.89921403e-05 + syst_mcstat: 1.08801030e-03 + syst_modNP3-jes: 1.09442930e-04 + syst_mod-NP1-jes: 4.18632853e-04 +- ArtUnc_1: -8.17319403e-04 + ArtUnc_2: -3.30994547e-03 + ArtUnc_3: -8.20259263e-04 + ArtUnc_4: -1.25845859e-03 + ArtUnc_5: -8.72370935e-05 + ArtUnc_6: 3.49753880e-05 + ArtUnc_7: 3.77874457e-04 + ArtUnc_8: -4.15528510e-04 + ArtUnc_9: 8.66911395e-09 + ArtUnc_10: -8.37094785e-09 + ArtUnc_11: -4.51881039e-09 + ArtUnc_12: -1.56477169e-09 + ArtUnc_13: 2.11641965e-09 + ArtUnc_14: -1.87657651e-09 + ArtUnc_15: -1.13503964e-09 + ArtUnc_16: -4.94190600e-10 + ArtUnc_17: -4.41186940e-10 + ArtUnc_18: 7.89639079e-11 + ArtUnc_19: -4.75593134e-11 + ArtUnc_20: -3.77336009e-13 ArtUnc_21: 0.0 - ArtUnc_22: -2.6012574770378355e-11 + ArtUnc_22: -2.60125748e-11 ArtUnc_23: 0.0 ArtUnc_24: 0.0 - ArtUnc_25: 1.0717999421711153e-13 - syst_singletop-xsec: 0.00012008646293530175 - syst_wjet-scale: 0.0002686586 - syst_laltrealcr-mujet-fake: 0.0021876485999999997 - syst_eta-jes: 0.0020862236923265796 - syst_statNP3-jes: 0.000132951527168664 - syst_laltrealcr-ejet-fake: 0.00028401051999999994 - syst_pileoffmu-jes: 0.0006390323140406354 - syst_lstat-ejet-fake: 0.0005654609394627031 - syst_lstat-mujet-fake: 0.0005916342959005547 - syst_etmsoft-scale: 0.0002768404969825065 - syst_hardscat-model: 0.0015044881599999998 - syst_statNP2-jes: 3.2566340208700146e-05 - syst_elen-scale: 0.0005409646084302621 - syst_punch-jes: 1.2729139612888217e-05 - syst_pileoffnpv-jes: 3.98854581505992e-05 - syst_lrec-eff: 0.00013816727999999999 - syst_pileoffpt-jes: 0.00010496717429434404 + ArtUnc_25: 1.07179994e-13 + syst_singletop-xsec: 1.20086463e-04 + syst_wjet-scale: 2.68658600e-04 + syst_laltrealcr-mujet-fake: 2.18764860e-03 + syst_eta-jes: 2.08622369e-03 + syst_statNP3-jes: 1.32951527e-04 + syst_laltrealcr-ejet-fake: 2.84010520e-04 + syst_pileoffmu-jes: 6.39032314e-04 + syst_lstat-ejet-fake: 5.65460939e-04 + syst_lstat-mujet-fake: 5.91634296e-04 + syst_etmsoft-scale: 2.76840497e-04 + syst_hardscat-model: 1.50448816e-03 + syst_statNP2-jes: 3.25663402e-05 + syst_elen-scale: 5.40964608e-04 + syst_punch-jes: 1.27291396e-05 + syst_pileoffnpv-jes: 3.98854582e-05 + syst_lrec-eff: 1.38167280e-04 + syst_pileoffpt-jes: 1.04967174e-04 syst_jeten-res: 0.0 - syst_lighttag-eff: 0.00012281536 - syst_laltfakecr-ejet-fake: 0.00043752972000000003 - syst_laltpar-mujet-fake: 0.000959495 - syst_jetrec-eff: 1.535192e-05 - syst_c/tautag-eff: 0.00018422304000000002 - syst_dibos-xsec: 5.373172e-05 - syst_elen-res: 0.0001066378443652571 - syst_flavcomp-jes: 0.0004258601577920676 - syst_detNP2-jes: 5.982818722589879e-05 - syst_detNP3-jes: 3.496566186808423e-05 - syst_jetvxfrac: 0.00014624667988553038 - syst_ltrig-eff: 0.0006064979962675464 - syst_btag-jes: 0.00020464028742106768 - syst_mup-scale: 7.471749655918351e-05 + syst_lighttag-eff: 1.22815360e-04 + syst_laltfakecr-ejet-fake: 4.37529720e-04 + syst_laltpar-mujet-fake: 9.59495000e-04 + syst_jetrec-eff: 1.53519200e-05 + syst_c/tautag-eff: 1.84223040e-04 + syst_dibos-xsec: 5.37317200e-05 + syst_elen-res: 1.06637844e-04 + syst_flavcomp-jes: 4.25860158e-04 + syst_detNP2-jes: 5.98281872e-05 + syst_detNP3-jes: 3.49656619e-05 + syst_jetvxfrac: 1.46246680e-04 + syst_ltrig-eff: 6.06497996e-04 + syst_btag-jes: 2.04640287e-04 + syst_mup-scale: 7.47174966e-05 syst_singlephpt-jes: 0.0 - syst_etmsoft-res: 0.0003456739706385263 - syst_detNP1-jes: 0.0002659861360623166 - syst_laltpar-ejet-fake: 3.070384e-05 - syst_statNP1-jes: 4.65330345090324e-05 - syst_muid-res: 1.535192e-05 - syst_pdf: 0.003454182 - syst_isr-fsr: 0.007055517418901417 - syst_zjet-xsec: 0.00017654708 - syst_ps-model: 0.0007829479199999999 - syst_flavres-jes: 0.00046317279470684105 - syst_laltfakecr-mujet-fake: 0.00022260284 - syst_mums-res: 1.535192e-05 - syst_mod-NP2-jes: 5.091655845155287e-05 - syst_lid-eff: 0.00017654708 - syst_mixNP2-jes: 2.6590305433732798e-05 - syst_mixNP1-jes: 0.00022912451303198792 - syst_btag-eff: 7.67596e-06 - syst_pileoffrho-jes: 0.00040697068366359946 - syst_modNP4-jes: 8.078013420895758e-05 - syst_mcstat: 0.0009287911599999999 - syst_modNP3-jes: 8.641849265963158e-05 - syst_mod-NP1-jes: 0.0005159478608946729 -- ArtUnc_1: -0.002611086587337312 - ArtUnc_2: -0.00025714944685773064 - ArtUnc_3: 0.0013733410798208627 - ArtUnc_4: 0.002109632370429006 - ArtUnc_5: -0.0006960260995449625 - ArtUnc_6: -0.0005745812396277156 - ArtUnc_7: 0.00018755285754557685 - ArtUnc_8: -0.00028735934880677074 - ArtUnc_9: 6.748369643411864e-09 - ArtUnc_10: -6.134264367661417e-09 - ArtUnc_11: -3.834090580778146e-09 - ArtUnc_12: -1.2388832235631149e-09 - ArtUnc_13: 1.2259797404948222e-09 - ArtUnc_14: -1.4163282896367044e-09 - ArtUnc_15: -8.336817581277914e-10 - ArtUnc_16: -2.2053399766995169e-10 - ArtUnc_17: -2.707131306360695e-10 - ArtUnc_18: 5.160031921507754e-11 - ArtUnc_19: -1.8493134362443453e-11 - ArtUnc_20: 7.99011813685294e-12 + syst_etmsoft-res: 3.45673971e-04 + syst_detNP1-jes: 2.65986136e-04 + syst_laltpar-ejet-fake: 3.07038400e-05 + syst_statNP1-jes: 4.65330345e-05 + syst_muid-res: 1.53519200e-05 + syst_pdf: 3.45418200e-03 + syst_isr-fsr: 7.05551742e-03 + syst_zjet-xsec: 1.76547080e-04 + syst_ps-model: 7.82947920e-04 + syst_flavres-jes: 4.63172795e-04 + syst_laltfakecr-mujet-fake: 2.22602840e-04 + syst_mums-res: 1.53519200e-05 + syst_mod-NP2-jes: 5.09165585e-05 + syst_lid-eff: 1.76547080e-04 + syst_mixNP2-jes: 2.65903054e-05 + syst_mixNP1-jes: 2.29124513e-04 + syst_btag-eff: 7.67596000e-06 + syst_pileoffrho-jes: 4.06970684e-04 + syst_modNP4-jes: 8.07801342e-05 + syst_mcstat: 9.28791160e-04 + syst_modNP3-jes: 8.64184927e-05 + syst_mod-NP1-jes: 5.15947861e-04 +- ArtUnc_1: -2.61108659e-03 + ArtUnc_2: -2.57149447e-04 + ArtUnc_3: 1.37334108e-03 + ArtUnc_4: 2.10963237e-03 + ArtUnc_5: -6.96026100e-04 + ArtUnc_6: -5.74581240e-04 + ArtUnc_7: 1.87552858e-04 + ArtUnc_8: -2.87359349e-04 + ArtUnc_9: 6.74836964e-09 + ArtUnc_10: -6.13426437e-09 + ArtUnc_11: -3.83409058e-09 + ArtUnc_12: -1.23888322e-09 + ArtUnc_13: 1.22597974e-09 + ArtUnc_14: -1.41632829e-09 + ArtUnc_15: -8.33681758e-10 + ArtUnc_16: -2.20533998e-10 + ArtUnc_17: -2.70713131e-10 + ArtUnc_18: 5.16003192e-11 + ArtUnc_19: -1.84931344e-11 + ArtUnc_20: 7.99011814e-12 ArtUnc_21: 0.0 - ArtUnc_22: -2.976549872147693e-11 + ArtUnc_22: -2.97654987e-11 ArtUnc_23: 0.0 ArtUnc_24: 0.0 - ArtUnc_25: 1.0408067927972082e-13 - syst_singletop-xsec: 2.276801645874317e-05 - syst_wjet-scale: 5.101056e-05 - syst_laltrealcr-mujet-fake: 0.0013135219199999998 - syst_eta-jes: 0.00047685112057754207 - syst_statNP3-jes: 0.00013541238123163774 - syst_laltrealcr-ejet-fake: 7.651584e-05 - syst_pileoffmu-jes: 0.00024898284512788106 - syst_lstat-ejet-fake: 0.00019327192859305774 - syst_lstat-mujet-fake: 0.0004307202980073858 - syst_etmsoft-scale: 0.00018774987349039893 - syst_hardscat-model: 0.0029203545600000004 - syst_statNP2-jes: 4.9698495923929124e-05 - syst_elen-scale: 0.00011596315715583464 - syst_punch-jes: 2.2088220410635167e-05 - syst_pileoffnpv-jes: 0.0001415413784368995 - syst_lrec-eff: 8.926847999999999e-05 - syst_pileoffpt-jes: 0.00011975774657984176 + ArtUnc_25: 1.04080679e-13 + syst_singletop-xsec: 2.27680165e-05 + syst_wjet-scale: 5.10105600e-05 + syst_laltrealcr-mujet-fake: 1.31352192e-03 + syst_eta-jes: 4.76851121e-04 + syst_statNP3-jes: 1.35412381e-04 + syst_laltrealcr-ejet-fake: 7.65158400e-05 + syst_pileoffmu-jes: 2.48982845e-04 + syst_lstat-ejet-fake: 1.93271929e-04 + syst_lstat-mujet-fake: 4.30720298e-04 + syst_etmsoft-scale: 1.87749873e-04 + syst_hardscat-model: 2.92035456e-03 + syst_statNP2-jes: 4.96984959e-05 + syst_elen-scale: 1.15963157e-04 + syst_punch-jes: 2.20882204e-05 + syst_pileoffnpv-jes: 1.41541378e-04 + syst_lrec-eff: 8.92684800e-05 + syst_pileoffpt-jes: 1.19757747e-04 syst_jeten-res: 0.0 - syst_lighttag-eff: 6.376319999999999e-05 - syst_laltfakecr-ejet-fake: 3.825792e-05 - syst_laltpar-mujet-fake: 0.00068864256 - syst_jetrec-eff: 1.275264e-05 - syst_c/tautag-eff: 2.550528e-05 - syst_dibos-xsec: 0.00010839744 - syst_elen-res: 5.522055102658792e-06 - syst_flavcomp-jes: 0.000204837729332652 - syst_detNP2-jes: 0.00015152986073797603 - syst_detNP3-jes: 3.535840486827425e-05 - syst_jetvxfrac: 3.865438571861154e-05 - syst_ltrig-eff: 0.00027740656309679766 - syst_btag-jes: 8.289215999999999e-05 - syst_mup-scale: 2.2088220410635167e-05 + syst_lighttag-eff: 6.37632000e-05 + syst_laltfakecr-ejet-fake: 3.82579200e-05 + syst_laltpar-mujet-fake: 6.88642560e-04 + syst_jetrec-eff: 1.27526400e-05 + syst_c/tautag-eff: 2.55052800e-05 + syst_dibos-xsec: 1.08397440e-04 + syst_elen-res: 5.52205510e-06 + syst_flavcomp-jes: 2.04837729e-04 + syst_detNP2-jes: 1.51529861e-04 + syst_detNP3-jes: 3.53584049e-05 + syst_jetvxfrac: 3.86543857e-05 + syst_ltrig-eff: 2.77406563e-04 + syst_btag-jes: 8.28921600e-05 + syst_mup-scale: 2.20882204e-05 syst_singlephpt-jes: 0.0 - syst_etmsoft-res: 0.0002705807000302808 - syst_detNP1-jes: 0.00020130901621136398 - syst_laltpar-ejet-fake: 9.564479999999998e-05 - syst_statNP1-jes: 3.865438571861154e-05 - syst_muid-res: 6.37632e-06 - syst_pdf: 0.00216157248 - syst_isr-fsr: 0.0030792872696603513 - syst_zjet-xsec: 0.00017853695999999999 - syst_ps-model: 0.0036026207999999994 - syst_flavres-jes: 0.00023840957305837197 - syst_laltfakecr-mujet-fake: 0.00012115008000000001 - syst_mums-res: 0.00020404224 - syst_mod-NP2-jes: 5.870025092721835e-05 - syst_lid-eff: 6.37632e-06 - syst_mixNP2-jes: 0.00018793926025437047 - syst_mixNP1-jes: 0.0002627477146400996 - syst_btag-eff: 1.912896e-05 - syst_pileoffrho-jes: 0.00017796673510049455 - syst_modNP4-jes: 5.800348735579267e-05 - syst_mcstat: 0.0009245664 - syst_modNP3-jes: 8.115730399827731e-05 - syst_mod-NP1-jes: 0.0003235471940034319 -- ArtUnc_1: -0.0008721521638405283 - ArtUnc_2: 0.0019857021980425565 - ArtUnc_3: 0.00033708349493200425 - ArtUnc_4: -0.0005698882890816931 - ArtUnc_5: 0.001016761683535144 - ArtUnc_6: 0.0015259283078257076 - ArtUnc_7: 0.0006414300021245546 - ArtUnc_8: -0.00034173590970419063 - ArtUnc_9: 2.5571055419931612e-09 - ArtUnc_10: -4.010870336205182e-09 - ArtUnc_11: -1.9192765762790906e-09 - ArtUnc_12: 6.770046514646211e-11 - ArtUnc_13: -1.5470339411725497e-10 - ArtUnc_14: -1.5384471624436835e-10 - ArtUnc_15: 4.594422560251293e-11 - ArtUnc_16: -1.1795760773376048e-10 - ArtUnc_17: -3.9955637994142695e-11 - ArtUnc_18: 6.278813638045418e-12 - ArtUnc_19: 8.468238835764435e-11 - ArtUnc_20: 1.1764289347461453e-11 + syst_etmsoft-res: 2.70580700e-04 + syst_detNP1-jes: 2.01309016e-04 + syst_laltpar-ejet-fake: 9.56448000e-05 + syst_statNP1-jes: 3.86543857e-05 + syst_muid-res: 6.37632000e-06 + syst_pdf: 2.16157248e-03 + syst_isr-fsr: 3.07928727e-03 + syst_zjet-xsec: 1.78536960e-04 + syst_ps-model: 3.60262080e-03 + syst_flavres-jes: 2.38409573e-04 + syst_laltfakecr-mujet-fake: 1.21150080e-04 + syst_mums-res: 2.04042240e-04 + syst_mod-NP2-jes: 5.87002509e-05 + syst_lid-eff: 6.37632000e-06 + syst_mixNP2-jes: 1.87939260e-04 + syst_mixNP1-jes: 2.62747715e-04 + syst_btag-eff: 1.91289600e-05 + syst_pileoffrho-jes: 1.77966735e-04 + syst_modNP4-jes: 5.80034874e-05 + syst_mcstat: 9.24566400e-04 + syst_modNP3-jes: 8.11573040e-05 + syst_mod-NP1-jes: 3.23547194e-04 +- ArtUnc_1: -8.72152164e-04 + ArtUnc_2: 1.98570220e-03 + ArtUnc_3: 3.37083495e-04 + ArtUnc_4: -5.69888289e-04 + ArtUnc_5: 1.01676168e-03 + ArtUnc_6: 1.52592831e-03 + ArtUnc_7: 6.41430002e-04 + ArtUnc_8: -3.41735910e-04 + ArtUnc_9: 2.55710554e-09 + ArtUnc_10: -4.01087034e-09 + ArtUnc_11: -1.91927658e-09 + ArtUnc_12: 6.77004651e-11 + ArtUnc_13: -1.54703394e-10 + ArtUnc_14: -1.53844716e-10 + ArtUnc_15: 4.59442256e-11 + ArtUnc_16: -1.17957608e-10 + ArtUnc_17: -3.99556380e-11 + ArtUnc_18: 6.27881364e-12 + ArtUnc_19: 8.46823884e-11 + ArtUnc_20: 1.17642893e-11 ArtUnc_21: 0.0 - ArtUnc_22: -3.899651905793177e-11 + ArtUnc_22: -3.89965191e-11 ArtUnc_23: 0.0 ArtUnc_24: 0.0 - ArtUnc_25: 1.2378988365098798e-13 - syst_singletop-xsec: 4.038445665662347e-05 - syst_wjet-scale: 0.00016401249 - syst_laltrealcr-mujet-fake: 0.0007978985999999999 - syst_eta-jes: 0.0010953427590436708 - syst_statNP3-jes: 4.815220747797757e-05 - syst_laltrealcr-ejet-fake: 0.0001773108 - syst_pileoffmu-jes: 0.00024894651011638343 - syst_lstat-ejet-fake: 0.0005621409546154574 - syst_lstat-mujet-fake: 0.00018185165420223895 - syst_etmsoft-scale: 7.636081619379847e-05 - syst_hardscat-model: 0.0018750617099999997 - syst_statNP2-jes: 7.350917435971852e-06 - syst_elen-scale: 0.0001403866027173487 - syst_punch-jes: 1.1516674287400637e-05 - syst_pileoffnpv-jes: 0.00022533126385740083 - syst_lrec-eff: 8.86554e-06 - syst_pileoffpt-jes: 7.23981405396304e-05 + ArtUnc_25: 1.23789884e-13 + syst_singletop-xsec: 4.03844567e-05 + syst_wjet-scale: 1.64012490e-04 + syst_laltrealcr-mujet-fake: 7.97898600e-04 + syst_eta-jes: 1.09534276e-03 + syst_statNP3-jes: 4.81522075e-05 + syst_laltrealcr-ejet-fake: 1.77310800e-04 + syst_pileoffmu-jes: 2.48946510e-04 + syst_lstat-ejet-fake: 5.62140955e-04 + syst_lstat-mujet-fake: 1.81851654e-04 + syst_etmsoft-scale: 7.63608162e-05 + syst_hardscat-model: 1.87506171e-03 + syst_statNP2-jes: 7.35091744e-06 + syst_elen-scale: 1.40386603e-04 + syst_punch-jes: 1.15166743e-05 + syst_pileoffnpv-jes: 2.25331264e-04 + syst_lrec-eff: 8.86554000e-06 + syst_pileoffpt-jes: 7.23981405e-05 syst_jeten-res: 0.0 - syst_lighttag-eff: 7.092432e-05 - syst_laltfakecr-ejet-fake: 0.00021720573 - syst_laltpar-mujet-fake: 7.092432e-05 - syst_jetrec-eff: 1.3298309999999998e-05 - syst_c/tautag-eff: 9.535608490644147e-05 - syst_dibos-xsec: 2.6596619999999997e-05 - syst_elen-res: 0.0001088513586197191 - syst_flavcomp-jes: 0.00026510595963292685 - syst_detNP2-jes: 3.655355784813839e-05 - syst_detNP3-jes: 1.9194457145667732e-05 - syst_jetvxfrac: 4.9905588578736094e-05 - syst_ltrig-eff: 0.00016625842417364024 - syst_btag-jes: 0.00010966067354441518 - syst_mup-scale: 1.8276778924069195e-05 + syst_lighttag-eff: 7.09243200e-05 + syst_laltfakecr-ejet-fake: 2.17205730e-04 + syst_laltpar-mujet-fake: 7.09243200e-05 + syst_jetrec-eff: 1.32983100e-05 + syst_c/tautag-eff: 9.53560849e-05 + syst_dibos-xsec: 2.65966200e-05 + syst_elen-res: 1.08851359e-04 + syst_flavcomp-jes: 2.65105960e-04 + syst_detNP2-jes: 3.65535578e-05 + syst_detNP3-jes: 1.91944571e-05 + syst_jetvxfrac: 4.99055886e-05 + syst_ltrig-eff: 1.66258424e-04 + syst_btag-jes: 1.09660674e-04 + syst_mup-scale: 1.82767789e-05 syst_singlephpt-jes: 0.0 - syst_etmsoft-res: 0.00010748896001573928 - syst_detNP1-jes: 0.0001255342933148779 - syst_laltpar-ejet-fake: 3.546216e-05 - syst_statNP1-jes: 7.839238131189457e-05 - syst_muid-res: 5.7626009999999994e-05 - syst_pdf: 0.0012633394499999998 - syst_isr-fsr: 0.002620723203769138 - syst_zjet-xsec: 5.7626009999999994e-05 - syst_ps-model: 0.00142735194 - syst_flavres-jes: 0.00024867010023325344 - syst_laltfakecr-mujet-fake: 0.0003102939 - syst_mums-res: 5.7626009999999994e-05 - syst_mod-NP2-jes: 3.7613300717283506e-05 - syst_lid-eff: 0.00013966743128346522 - syst_mixNP2-jes: 0.00010918930217920652 - syst_mixNP1-jes: 0.00018420012912055754 - syst_btag-eff: 8.86554e-06 - syst_pileoffrho-jes: 0.0002017153894087104 - syst_modNP4-jes: 2.5464324962694373e-05 - syst_mcstat: 0.00071367597 - syst_modNP3-jes: 3.1656309695191885e-05 - syst_mod-NP1-jes: 0.0002961259570187734 -- ArtUnc_1: 1.5013172367939154e-05 - ArtUnc_2: 0.00024219763161619434 - ArtUnc_3: -9.628002367410729e-05 - ArtUnc_4: -0.00041816807277002564 - ArtUnc_5: 0.00015461472652444005 - ArtUnc_6: -0.0003060197346672656 - ArtUnc_7: -0.0008262988786211707 - ArtUnc_8: 0.0007802442273436964 - ArtUnc_9: -1.5648838538824463e-08 - ArtUnc_10: 1.537949213204166e-08 - ArtUnc_11: 8.358777091631125e-09 - ArtUnc_12: 2.8798912241122433e-09 - ArtUnc_13: -2.591245505331669e-09 - ArtUnc_14: 3.4801508666361445e-09 - ArtUnc_15: 2.2838286732797865e-09 - ArtUnc_16: 1.0138945657298532e-09 - ArtUnc_17: 8.052492433134844e-10 - ArtUnc_18: -2.1965601994331618e-10 - ArtUnc_19: 3.082539286429697e-10 - ArtUnc_20: 3.8870999548047e-11 + syst_etmsoft-res: 1.07488960e-04 + syst_detNP1-jes: 1.25534293e-04 + syst_laltpar-ejet-fake: 3.54621600e-05 + syst_statNP1-jes: 7.83923813e-05 + syst_muid-res: 5.76260100e-05 + syst_pdf: 1.26333945e-03 + syst_isr-fsr: 2.62072320e-03 + syst_zjet-xsec: 5.76260100e-05 + syst_ps-model: 1.42735194e-03 + syst_flavres-jes: 2.48670100e-04 + syst_laltfakecr-mujet-fake: 3.10293900e-04 + syst_mums-res: 5.76260100e-05 + syst_mod-NP2-jes: 3.76133007e-05 + syst_lid-eff: 1.39667431e-04 + syst_mixNP2-jes: 1.09189302e-04 + syst_mixNP1-jes: 1.84200129e-04 + syst_btag-eff: 8.86554000e-06 + syst_pileoffrho-jes: 2.01715389e-04 + syst_modNP4-jes: 2.54643250e-05 + syst_mcstat: 7.13675970e-04 + syst_modNP3-jes: 3.16563097e-05 + syst_mod-NP1-jes: 2.96125957e-04 +- ArtUnc_1: 1.50131724e-05 + ArtUnc_2: 2.42197632e-04 + ArtUnc_3: -9.62800237e-05 + ArtUnc_4: -4.18168073e-04 + ArtUnc_5: 1.54614727e-04 + ArtUnc_6: -3.06019735e-04 + ArtUnc_7: -8.26298879e-04 + ArtUnc_8: 7.80244227e-04 + ArtUnc_9: -1.56488385e-08 + ArtUnc_10: 1.53794921e-08 + ArtUnc_11: 8.35877709e-09 + ArtUnc_12: 2.87989122e-09 + ArtUnc_13: -2.59124551e-09 + ArtUnc_14: 3.48015087e-09 + ArtUnc_15: 2.28382867e-09 + ArtUnc_16: 1.01389457e-09 + ArtUnc_17: 8.05249243e-10 + ArtUnc_18: -2.19656020e-10 + ArtUnc_19: 3.08253929e-10 + ArtUnc_20: 3.88709995e-11 ArtUnc_21: 0.0 - ArtUnc_22: -7.56402637574012e-11 + ArtUnc_22: -7.56402638e-11 ArtUnc_23: 0.0 ArtUnc_24: 0.0 - ArtUnc_25: 2.176596120038148e-13 - syst_singletop-xsec: 7.109092829753948e-05 - syst_wjet-scale: 3.250884e-05 - syst_laltrealcr-mujet-fake: 0.00117281892 - syst_eta-jes: 0.0008600455760057767 - syst_statNP3-jes: 5.1260127846062784e-05 - syst_laltrealcr-ejet-fake: 8.002176e-05 - syst_pileoffmu-jes: 0.0002112177346042427 - syst_lstat-ejet-fake: 0.0001880535884461094 - syst_lstat-mujet-fake: 0.0004223022193134557 - syst_etmsoft-scale: 9.86026083271452e-05 - syst_hardscat-model: 0.0025506936000000003 - syst_statNP2-jes: 9.188085014974557e-06 - syst_elen-scale: 0.0002413253374727387 - syst_punch-jes: 1.0609486713465456e-05 - syst_pileoffnpv-jes: 8.134900761124748e-05 - syst_lrec-eff: 8.190204215103981e-05 - syst_pileoffpt-jes: 3.248478610103505e-05 + ArtUnc_25: 2.17659612e-13 + syst_singletop-xsec: 7.10909283e-05 + syst_wjet-scale: 3.25088400e-05 + syst_laltrealcr-mujet-fake: 1.17281892e-03 + syst_eta-jes: 8.60045576e-04 + syst_statNP3-jes: 5.12601278e-05 + syst_laltrealcr-ejet-fake: 8.00217600e-05 + syst_pileoffmu-jes: 2.11217735e-04 + syst_lstat-ejet-fake: 1.88053588e-04 + syst_lstat-mujet-fake: 4.22302219e-04 + syst_etmsoft-scale: 9.86026083e-05 + syst_hardscat-model: 2.55069360e-03 + syst_statNP2-jes: 9.18808501e-06 + syst_elen-scale: 2.41325337e-04 + syst_punch-jes: 1.06094867e-05 + syst_pileoffnpv-jes: 8.13490076e-05 + syst_lrec-eff: 8.19020422e-05 + syst_pileoffpt-jes: 3.24847861e-05 syst_jeten-res: 0.0 - syst_lighttag-eff: 4.6262580000000005e-05 - syst_laltfakecr-ejet-fake: 0.00013628706000000002 - syst_laltpar-mujet-fake: 0.0006514271400000001 + syst_lighttag-eff: 4.62625800e-05 + syst_laltfakecr-ejet-fake: 1.36287060e-04 + syst_laltpar-mujet-fake: 6.51427140e-04 syst_jetrec-eff: 0.0 - syst_c/tautag-eff: 5.814753186949468e-05 - syst_dibos-xsec: 7.502040000000001e-06 - syst_elen-res: 2.080041212313593e-05 - syst_flavcomp-jes: 0.0002625914939811271 - syst_detNP2-jes: 2.0734543201864853e-06 - syst_detNP3-jes: 1.7448851968341642e-05 - syst_jetvxfrac: 3.1705427363951426e-05 - syst_ltrig-eff: 0.0002995203758447447 - syst_btag-jes: 3.9829756838387806e-05 - syst_mup-scale: 2.7902479416152256e-05 + syst_c/tautag-eff: 5.81475319e-05 + syst_dibos-xsec: 7.50204000e-06 + syst_elen-res: 2.08004121e-05 + syst_flavcomp-jes: 2.62591494e-04 + syst_detNP2-jes: 2.07345432e-06 + syst_detNP3-jes: 1.74488520e-05 + syst_jetvxfrac: 3.17054274e-05 + syst_ltrig-eff: 2.99520376e-04 + syst_btag-jes: 3.98297568e-05 + syst_mup-scale: 2.79024794e-05 syst_singlephpt-jes: 0.0 - syst_etmsoft-res: 6.49695722020701e-05 - syst_detNP1-jes: 9.491060723695324e-05 - syst_laltpar-ejet-fake: 0.00012128298000000001 - syst_statNP1-jes: 1.2298541526713647e-05 - syst_muid-res: 3.7510200000000003e-06 - syst_pdf: 0.0025006800000000004 - syst_isr-fsr: 0.003045396736912885 - syst_zjet-xsec: 6.87687e-05 - syst_ps-model: 0.0005126394 - syst_flavres-jes: 0.00017299031161546359 - syst_laltfakecr-mujet-fake: 0.00011378094 - syst_mums-res: 8.377278e-05 - syst_mod-NP2-jes: 1.125306e-05 - syst_lid-eff: 4.8146208406331434e-05 - syst_mixNP2-jes: 1.2674155765884369e-05 - syst_mixNP1-jes: 7.803113393212418e-05 - syst_btag-eff: 1.3158306323486316e-05 - syst_pileoffrho-jes: 0.0001271095299621437 - syst_modNP4-jes: 1.625442e-05 - syst_mcstat: 0.00029132922000000004 - syst_modNP3-jes: 4.639755499141308e-05 - syst_mod-NP1-jes: 0.00018012166474779735 + syst_etmsoft-res: 6.49695722e-05 + syst_detNP1-jes: 9.49106072e-05 + syst_laltpar-ejet-fake: 1.21282980e-04 + syst_statNP1-jes: 1.22985415e-05 + syst_muid-res: 3.75102000e-06 + syst_pdf: 2.50068000e-03 + syst_isr-fsr: 3.04539674e-03 + syst_zjet-xsec: 6.87687000e-05 + syst_ps-model: 5.12639400e-04 + syst_flavres-jes: 1.72990312e-04 + syst_laltfakecr-mujet-fake: 1.13780940e-04 + syst_mums-res: 8.37727800e-05 + syst_mod-NP2-jes: 1.12530600e-05 + syst_lid-eff: 4.81462084e-05 + syst_mixNP2-jes: 1.26741558e-05 + syst_mixNP1-jes: 7.80311339e-05 + syst_btag-eff: 1.31583063e-05 + syst_pileoffrho-jes: 1.27109530e-04 + syst_modNP4-jes: 1.62544200e-05 + syst_mcstat: 2.91329220e-04 + syst_modNP3-jes: 4.63975550e-05 + syst_mod-NP1-jes: 1.80121665e-04 diff --git a/nnpdf_data/nnpdf_data/commondata/ATLAS_Z0_8TEV_ZMASS/filter.py b/nnpdf_data/nnpdf_data/commondata/ATLAS_Z0_8TEV_ZMASS/filter.py index 52cc9810cd..a03a87bdc7 100644 --- a/nnpdf_data/nnpdf_data/commondata/ATLAS_Z0_8TEV_ZMASS/filter.py +++ b/nnpdf_data/nnpdf_data/commondata/ATLAS_Z0_8TEV_ZMASS/filter.py @@ -2,6 +2,10 @@ import numpy as np import yaml +from nnpdf_data.filter_utils.utils import prettify_float + +yaml.add_representer(float, prettify_float) + def filter_ATLAS_Z0_8TEV_data_kinetic(): """ diff --git a/nnpdf_data/nnpdf_data/commondata/ATLAS_Z0_8TEV_ZMASS/kinematics.yaml b/nnpdf_data/nnpdf_data/commondata/ATLAS_Z0_8TEV_ZMASS/kinematics.yaml index 2fc461bc35..1bf1a44a38 100644 --- a/nnpdf_data/nnpdf_data/commondata/ATLAS_Z0_8TEV_ZMASS/kinematics.yaml +++ b/nnpdf_data/nnpdf_data/commondata/ATLAS_Z0_8TEV_ZMASS/kinematics.yaml @@ -1,7 +1,7 @@ bins: - y: min: 0.4 - mid: 0.6000000000000001 + mid: 6.00000000e-01 max: 0.8 m_Z2: min: null @@ -61,7 +61,7 @@ bins: max: null - y: min: 2.4 - mid: 2.5999999999999996 + mid: 2.60000000e+00 max: 2.8 m_Z2: min: null diff --git a/nnpdf_data/nnpdf_data/commondata/ATLAS_Z0_8TEV_ZMASS/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/ATLAS_Z0_8TEV_ZMASS/uncertainties.yaml index cdf650fe9a..bae30a347b 100644 --- a/nnpdf_data/nnpdf_data/commondata/ATLAS_Z0_8TEV_ZMASS/uncertainties.yaml +++ b/nnpdf_data/nnpdf_data/commondata/ATLAS_Z0_8TEV_ZMASS/uncertainties.yaml @@ -28,52 +28,52 @@ definitions: treatment: ADD type: CORR bins: -- artificial_uncertainty_1: 6.360849092233548 - artificial_uncertainty_2: -0.43736014852425487 - artificial_uncertainty_3: -0.17081282174067366 - artificial_uncertainty_4: 0.13433033998455113 - artificial_uncertainty_5: 0.15063967708716575 - artificial_uncertainty_6: 0.1783955135747032 - artificial_uncertainty_7: -0.17417703394995054 -- artificial_uncertainty_1: 6.233875520247694 - artificial_uncertainty_2: -0.4293937057237233 - artificial_uncertainty_3: -0.15811860151511387 - artificial_uncertainty_4: 0.12091345356933868 - artificial_uncertainty_5: 0.14004777714705885 - artificial_uncertainty_6: -0.22584792937772988 - artificial_uncertainty_7: -0.0805351673443991 -- artificial_uncertainty_1: 6.0601130003628585 - artificial_uncertainty_2: -0.4123698461117014 - artificial_uncertainty_3: -0.14680060602839237 - artificial_uncertainty_4: 0.10112405423267211 - artificial_uncertainty_5: 0.08949319996590628 - artificial_uncertainty_6: 0.04486740555687132 - artificial_uncertainty_7: 0.28681853399599216 -- artificial_uncertainty_1: 5.836824335315859 - artificial_uncertainty_2: -0.2750210647358121 - artificial_uncertainty_3: 0.03159277272608385 - artificial_uncertainty_4: -0.12119507917842652 - artificial_uncertainty_5: -0.5349848732266409 - artificial_uncertainty_6: -0.0007764604112219011 - artificial_uncertainty_7: -0.02250579775756145 -- artificial_uncertainty_1: 5.539243636415268 - artificial_uncertainty_2: 0.31344828703761296 - artificial_uncertainty_3: 0.4545302042514117 - artificial_uncertainty_4: -0.64633835041904 - artificial_uncertainty_5: 0.16156289938315352 - artificial_uncertainty_6: 0.001875428120402786 - artificial_uncertainty_7: -0.000990151087185439 -- artificial_uncertainty_1: 5.0009955194024895 - artificial_uncertainty_2: 0.9002405764173016 - artificial_uncertainty_3: 0.5616642244049274 - artificial_uncertainty_4: 0.4801650034201536 - artificial_uncertainty_5: -0.017766174135644675 - artificial_uncertainty_6: -0.00035256711006798443 - artificial_uncertainty_7: 0.0016258067952645726 -- artificial_uncertainty_1: 3.171588462502718 - artificial_uncertainty_2: 1.0482636206034437 - artificial_uncertainty_3: -0.8037615168161868 - artificial_uncertainty_4: -0.10553723718128212 - artificial_uncertainty_5: -0.017988003826124085 - artificial_uncertainty_6: -0.0008934998330043566 - artificial_uncertainty_7: 0.00016513288376506982 +- artificial_uncertainty_1: 6.36084909e+00 + artificial_uncertainty_2: -4.37360149e-01 + artificial_uncertainty_3: -1.70812822e-01 + artificial_uncertainty_4: 1.34330340e-01 + artificial_uncertainty_5: 1.50639677e-01 + artificial_uncertainty_6: 1.78395514e-01 + artificial_uncertainty_7: -1.74177034e-01 +- artificial_uncertainty_1: 6.23387552e+00 + artificial_uncertainty_2: -4.29393706e-01 + artificial_uncertainty_3: -1.58118602e-01 + artificial_uncertainty_4: 1.20913454e-01 + artificial_uncertainty_5: 1.40047777e-01 + artificial_uncertainty_6: -2.25847929e-01 + artificial_uncertainty_7: -8.05351673e-02 +- artificial_uncertainty_1: 6.06011300e+00 + artificial_uncertainty_2: -4.12369846e-01 + artificial_uncertainty_3: -1.46800606e-01 + artificial_uncertainty_4: 1.01124054e-01 + artificial_uncertainty_5: 8.94932000e-02 + artificial_uncertainty_6: 4.48674056e-02 + artificial_uncertainty_7: 2.86818534e-01 +- artificial_uncertainty_1: 5.83682434e+00 + artificial_uncertainty_2: -2.75021065e-01 + artificial_uncertainty_3: 3.15927727e-02 + artificial_uncertainty_4: -1.21195079e-01 + artificial_uncertainty_5: -5.34984873e-01 + artificial_uncertainty_6: -7.76460411e-04 + artificial_uncertainty_7: -2.25057978e-02 +- artificial_uncertainty_1: 5.53924364e+00 + artificial_uncertainty_2: 3.13448287e-01 + artificial_uncertainty_3: 4.54530204e-01 + artificial_uncertainty_4: -6.46338350e-01 + artificial_uncertainty_5: 1.61562899e-01 + artificial_uncertainty_6: 1.87542812e-03 + artificial_uncertainty_7: -9.90151087e-04 +- artificial_uncertainty_1: 5.00099552e+00 + artificial_uncertainty_2: 9.00240576e-01 + artificial_uncertainty_3: 5.61664224e-01 + artificial_uncertainty_4: 4.80165003e-01 + artificial_uncertainty_5: -1.77661741e-02 + artificial_uncertainty_6: -3.52567110e-04 + artificial_uncertainty_7: 1.62580680e-03 +- artificial_uncertainty_1: 3.17158846e+00 + artificial_uncertainty_2: 1.04826362e+00 + artificial_uncertainty_3: -8.03761517e-01 + artificial_uncertainty_4: -1.05537237e-01 + artificial_uncertainty_5: -1.79880038e-02 + artificial_uncertainty_6: -8.93499833e-04 + artificial_uncertainty_7: 1.65132884e-04 diff --git a/nnpdf_data/nnpdf_data/commondata/CMS_1JET_13TEV_DIF/data_r04.yaml b/nnpdf_data/nnpdf_data/commondata/CMS_1JET_13TEV_DIF/data_r04.yaml index 113a04aa40..f1735fa993 100644 --- a/nnpdf_data/nnpdf_data/commondata/CMS_1JET_13TEV_DIF/data_r04.yaml +++ b/nnpdf_data/nnpdf_data/commondata/CMS_1JET_13TEV_DIF/data_r04.yaml @@ -14,13 +14,13 @@ data_central: - 0.03788 - 0.015827 - 0.006544 -- 0.0026946 -- 0.0010254 -- 0.00040474 -- 0.0001539 -- 5.2173e-05 -- 1.5438e-05 -- 4.728e-06 +- 2.69460000e-03 +- 1.02540000e-03 +- 4.04740000e-04 +- 1.53900000e-04 +- 5.21730000e-05 +- 1.54380000e-05 +- 4.72800000e-06 - 9000.7 - 2078.9 - 568.22 @@ -37,11 +37,11 @@ data_central: - 0.012592 - 0.004953 - 0.001881 -- 0.00071964 +- 7.19640000e-04 - 0.00024 -- 8.4814e-05 -- 2.5943e-05 -- 5.5024e-06 +- 8.48140000e-05 +- 2.59430000e-05 +- 5.50240000e-06 - 7983.1 - 1798.2 - 498.15 @@ -55,12 +55,12 @@ data_central: - 0.1268 - 0.046872 - 0.017771 -- 0.0061798 -- 0.0021499 -- 0.00065549 -- 0.00018439 -- 4.5586e-05 -- 1.2683e-05 +- 6.17980000e-03 +- 2.14990000e-03 +- 6.55490000e-04 +- 1.84390000e-04 +- 4.55860000e-05 +- 1.26830000e-05 - 6398.1 - 1433.8 - 384.15 @@ -73,7 +73,7 @@ data_central: - 0.15914 - 0.05135 - 0.01568 -- 0.0042987 -- 0.0010837 -- 0.00019352 -- 4.5045e-05 +- 4.29870000e-03 +- 1.08370000e-03 +- 1.93520000e-04 +- 4.50450000e-05 diff --git a/nnpdf_data/nnpdf_data/commondata/CMS_1JET_13TEV_DIF/data_r07.yaml b/nnpdf_data/nnpdf_data/commondata/CMS_1JET_13TEV_DIF/data_r07.yaml index 818cf86502..67be2cd619 100644 --- a/nnpdf_data/nnpdf_data/commondata/CMS_1JET_13TEV_DIF/data_r07.yaml +++ b/nnpdf_data/nnpdf_data/commondata/CMS_1JET_13TEV_DIF/data_r07.yaml @@ -13,14 +13,14 @@ data_central: - 0.11371 - 0.046858 - 0.019377 -- 0.0079559 -- 0.0032744 -- 0.0012515 -- 0.00047427 -- 0.00018159 -- 6.1275e-05 -- 1.9348e-05 -- 4.6008e-06 +- 7.95590000e-03 +- 3.27440000e-03 +- 1.25150000e-03 +- 4.74270000e-04 +- 1.81590000e-04 +- 6.12750000e-05 +- 1.93480000e-05 +- 4.60080000e-06 - 14044.0 - 3098.1 - 809.56 @@ -35,13 +35,13 @@ data_central: - 0.094427 - 0.037948 - 0.015385 -- 0.0059762 -- 0.0022924 -- 0.0008588 -- 0.00028585 -- 9.9176e-05 -- 3.2347e-05 -- 5.4008e-06 +- 5.97620000e-03 +- 2.29240000e-03 +- 8.58800000e-04 +- 2.85850000e-04 +- 9.91760000e-05 +- 3.23470000e-05 +- 5.40080000e-06 - 12330.0 - 2636.1 - 694.21 @@ -55,12 +55,12 @@ data_central: - 0.15573 - 0.05818 - 0.021407 -- 0.0076113 -- 0.0025653 -- 0.0008125 -- 0.00022023 -- 5.5051e-05 -- 1.4647e-05 +- 7.61130000e-03 +- 2.56530000e-03 +- 8.12500000e-04 +- 2.20230000e-04 +- 5.50510000e-05 +- 1.46470000e-05 - 9859.2 - 2086.1 - 539.35 @@ -73,7 +73,7 @@ data_central: - 0.20023 - 0.064457 - 0.019509 -- 0.0053995 -- 0.0013422 -- 0.00026293 -- 5.0274e-05 +- 5.39950000e-03 +- 1.34220000e-03 +- 2.62930000e-04 +- 5.02740000e-05 diff --git a/nnpdf_data/nnpdf_data/commondata/CMS_1JET_13TEV_DIF/filter.py b/nnpdf_data/nnpdf_data/commondata/CMS_1JET_13TEV_DIF/filter.py index 86bf9333aa..82d755a01e 100644 --- a/nnpdf_data/nnpdf_data/commondata/CMS_1JET_13TEV_DIF/filter.py +++ b/nnpdf_data/nnpdf_data/commondata/CMS_1JET_13TEV_DIF/filter.py @@ -1,5 +1,9 @@ import yaml +from nnpdf_data.filter_utils.utils import prettify_float + +yaml.add_representer(float, prettify_float) + def processData(): with open('metadata.yaml', 'r') as file: diff --git a/nnpdf_data/nnpdf_data/commondata/CMS_1JET_13TEV_DIF/uncertainties_r04.yaml b/nnpdf_data/nnpdf_data/commondata/CMS_1JET_13TEV_DIF/uncertainties_r04.yaml index 9b1feb9ecd..7c79db22d6 100644 --- a/nnpdf_data/nnpdf_data/commondata/CMS_1JET_13TEV_DIF/uncertainties_r04.yaml +++ b/nnpdf_data/nnpdf_data/commondata/CMS_1JET_13TEV_DIF/uncertainties_r04.yaml @@ -141,7 +141,7 @@ bins: RelativeJEREC2: 0.39501 RelativePtBB: -16.309 RelativePtEC1: -0.02444 - RelativePtEC2: 0.0055975 + RelativePtEC2: 5.59750000e-03 RelativeSample: 116.63 RelativeStatEC: 1.4105 RelativeStatFSR: 7.1255 @@ -153,7 +153,7 @@ bins: - all uncorr. unc.: 10.571 AbsoluteMPFBias: 24.818 AbsoluteScale: 15.188 - fake: -0.023028 + fake: -2.30280000e-02 FlavorQCD: 59.392 Fragmentation: 3.4193 JER: -18.245 @@ -161,7 +161,7 @@ bins: PileUpDataMC: 11.521 PileUpPtBB: 2.3232 PileUpPtEC1: 0.019871 - PileUpPtEC2: 0.0014395 + PileUpPtEC2: 1.43950000e-03 PileUpPtRef: 3.1511 Pref: -8.2202 PU: -0.71517 @@ -170,8 +170,8 @@ bins: RelativeJEREC1: 0.090023 RelativeJEREC2: 0.017663 RelativePtBB: -1.2873 - RelativePtEC1: -0.0048877 - RelativePtEC2: 0.00077542 + RelativePtEC1: -4.88770000e-03 + RelativePtEC2: 7.75420000e-04 RelativeSample: 24.302 RelativeStatEC: 0.046716 RelativeStatFSR: 1.7656 @@ -183,27 +183,27 @@ bins: - all uncorr. unc.: 2.5752 AbsoluteMPFBias: 7.2451 AbsoluteScale: 4.3721 - fake: 0.0032492 + fake: 3.24920000e-03 FlavorQCD: 14.636 Fragmentation: 0.51356 JER: -4.7143 miss: 0.4163 PileUpDataMC: 2.495 PileUpPtBB: 0.78249 - PileUpPtEC1: -0.0049526 - PileUpPtEC2: 0.00019111 + PileUpPtEC1: -4.95260000e-03 + PileUpPtEC2: 1.91110000e-04 PileUpPtRef: 0.67874 Pref: -3.1655 PU: -0.16825 RelativeBal: 4.7426 RelativeFSR: -4.9712 - RelativeJEREC1: -0.018951 - RelativeJEREC2: -0.0019854 + RelativeJEREC1: -1.89510000e-02 + RelativeJEREC2: -1.98540000e-03 RelativePtBB: 0.17577 - RelativePtEC1: -0.0011578 - RelativePtEC2: 0.00011708 + RelativePtEC1: -1.15780000e-03 + RelativePtEC2: 1.17080000e-04 RelativeSample: 5.8785 - RelativeStatEC: -0.013513 + RelativeStatEC: -1.35130000e-02 RelativeStatFSR: 0.51315 SinglePionECAL: -0.62363 SinglePionHCAL: -0.24352 @@ -213,57 +213,57 @@ bins: - all uncorr. unc.: 0.91095 AbsoluteMPFBias: 2.3473 AbsoluteScale: 1.4036 - fake: 0.0014884 + fake: 1.48840000e-03 FlavorQCD: 4.0758 Fragmentation: 0.039954 JER: -1.3763 miss: 0.12509 PileUpDataMC: 0.64867 PileUpPtBB: 0.23893 - PileUpPtEC1: -0.0015957 - PileUpPtEC2: 1.9917e-05 + PileUpPtEC1: -1.59570000e-03 + PileUpPtEC2: 1.99170000e-05 PileUpPtRef: 0.14203 Pref: -1.2218 - PU: -0.044105 + PU: -4.41050000e-02 RelativeBal: 1.5444 RelativeFSR: -1.1856 - RelativeJEREC1: -0.0082619 - RelativeJEREC2: -0.00097347 + RelativeJEREC1: -8.26190000e-03 + RelativeJEREC2: -9.73470000e-04 RelativePtBB: 0.19201 - RelativePtEC1: -0.00030605 - RelativePtEC2: 1.6343e-05 + RelativePtEC1: -3.06050000e-04 + RelativePtEC2: 1.63430000e-05 RelativeSample: 1.5724 - RelativeStatEC: -0.0055743 + RelativeStatEC: -5.57430000e-03 RelativeStatFSR: 0.16631 SinglePionECAL: -0.05999 - SinglePionHCAL: -0.0093293 + SinglePionHCAL: -9.32930000e-03 TimePtEta: 3.6053 Lumi: 2.255 model: 0.56228 - all uncorr. unc.: 0.29045 AbsoluteMPFBias: 0.80657 AbsoluteScale: 0.48416 - fake: 0.00034346 + fake: 3.43460000e-04 FlavorQCD: 1.2065 - Fragmentation: -0.025597 + Fragmentation: -2.55970000e-02 JER: -0.43648 miss: 0.043447 PileUpDataMC: 0.18235 PileUpPtBB: 0.07008 - PileUpPtEC1: -0.00039364 - PileUpPtEC2: -8.4312e-06 + PileUpPtEC1: -3.93640000e-04 + PileUpPtEC2: -8.43120000e-06 PileUpPtRef: 0.024728 Pref: -0.44355 - PU: -0.012243 + PU: -1.22430000e-02 RelativeBal: 0.54827 RelativeFSR: -0.2764 - RelativeJEREC1: -0.0020897 - RelativeJEREC2: -0.00022181 + RelativeJEREC1: -2.08970000e-03 + RelativeJEREC2: -2.21810000e-04 RelativePtBB: 0.10482 - RelativePtEC1: -8.5873e-05 - RelativePtEC2: 1.1521e-06 + RelativePtEC1: -8.58730000e-05 + RelativePtEC2: 1.15210000e-06 RelativeSample: 0.4513 - RelativeStatEC: -0.0014293 + RelativeStatEC: -1.42930000e-03 RelativeStatFSR: 0.057592 SinglePionECAL: 0.032215 SinglePionHCAL: 0.020055 @@ -273,27 +273,27 @@ bins: - all uncorr. unc.: 0.092298 AbsoluteMPFBias: 0.29376 AbsoluteScale: 0.17683 - fake: 4.3377e-05 + fake: 4.33770000e-05 FlavorQCD: 0.37558 Fragmentation: -0.02088 JER: -0.14952 miss: 0.01673 PileUpDataMC: 0.054931 PileUpPtBB: 0.020152 - PileUpPtEC1: -7.889e-05 - PileUpPtEC2: -3.5743e-06 - PileUpPtRef: 0.0014862 + PileUpPtEC1: -7.88900000e-05 + PileUpPtEC2: -3.57430000e-06 + PileUpPtRef: 1.48620000e-03 Pref: -0.16253 - PU: -0.003543 + PU: -3.54300000e-03 RelativeBal: 0.20639 - RelativeFSR: -0.057204 - RelativeJEREC1: -0.00037395 - RelativeJEREC2: -2.4908e-05 + RelativeFSR: -5.72040000e-02 + RelativeJEREC1: -3.73950000e-04 + RelativeJEREC2: -2.49080000e-05 RelativePtBB: 0.050834 - RelativePtEC1: -2.5213e-05 - RelativePtEC2: 5.1355e-07 + RelativePtEC1: -2.52130000e-05 + RelativePtEC2: 5.13550000e-07 RelativeSample: 0.13559 - RelativeStatEC: -0.00027402 + RelativeStatEC: -2.74020000e-04 RelativeStatFSR: 0.021169 SinglePionECAL: 0.024238 SinglePionHCAL: 0.012807 @@ -303,483 +303,483 @@ bins: - all uncorr. unc.: 0.032499 AbsoluteMPFBias: 0.11304 AbsoluteScale: 0.068181 - fake: -7.7737e-06 + fake: -7.77370000e-06 FlavorQCD: 0.12139 - Fragmentation: -0.012008 - JER: -0.053536 - miss: 0.0069344 + Fragmentation: -1.20080000e-02 + JER: -5.35360000e-02 + miss: 6.93440000e-03 PileUpDataMC: 0.01758 - PileUpPtBB: 0.0058068 - PileUpPtEC1: 9.958e-06 - PileUpPtEC2: -1.3192e-06 - PileUpPtRef: -0.0019726 - Pref: -0.053542 - PU: -0.0010468 + PileUpPtBB: 5.80680000e-03 + PileUpPtEC1: 9.95800000e-06 + PileUpPtEC2: -1.31920000e-06 + PileUpPtRef: -1.97260000e-03 + Pref: -5.35420000e-02 + PU: -1.04680000e-03 RelativeBal: 0.081357 - RelativeFSR: -0.006934 - RelativeJEREC1: -2.897e-05 - RelativeJEREC2: 7.0614e-06 + RelativeFSR: -6.93400000e-03 + RelativeJEREC1: -2.89700000e-05 + RelativeJEREC2: 7.06140000e-06 RelativePtBB: 0.024113 - RelativePtEC1: -7.6062e-06 - RelativePtEC2: 3.7691e-07 + RelativePtEC1: -7.60620000e-06 + RelativePtEC2: 3.76910000e-07 RelativeSample: 0.041467 - RelativeStatEC: -2.5496e-05 + RelativeStatEC: -2.54960000e-05 RelativeStatFSR: 0.008207 SinglePionECAL: 0.013355 - SinglePionHCAL: 0.0071642 + SinglePionHCAL: 7.16420000e-03 TimePtEta: 0.19402 Lumi: 0.10075 model: 0.018433 - all uncorr. unc.: 0.013168 AbsoluteMPFBias: 0.044723 AbsoluteScale: 0.027011 - fake: -7.9122e-06 + fake: -7.91220000e-06 FlavorQCD: 0.039344 - Fragmentation: -0.0061435 - JER: -0.019452 - miss: 0.0029624 - PileUpDataMC: 0.0058159 - PileUpPtBB: 0.0014975 - PileUpPtEC1: 6.2074e-06 - PileUpPtEC2: -4.3911e-07 - PileUpPtRef: -0.0013969 - Pref: -0.016771 - PU: -0.00030092 + Fragmentation: -6.14350000e-03 + JER: -1.94520000e-02 + miss: 2.96240000e-03 + PileUpDataMC: 5.81590000e-03 + PileUpPtBB: 1.49750000e-03 + PileUpPtEC1: 6.20740000e-06 + PileUpPtEC2: -4.39110000e-07 + PileUpPtRef: -1.39690000e-03 + Pref: -1.67710000e-02 + PU: -3.00920000e-04 RelativeBal: 0.032674 - RelativeFSR: 0.0031955 - RelativeJEREC1: 2.1468e-05 - RelativeJEREC2: 5.9873e-06 + RelativeFSR: 3.19550000e-03 + RelativeJEREC1: 2.14680000e-05 + RelativeJEREC2: 5.98730000e-06 RelativePtBB: 0.011255 - RelativePtEC1: -2.2587e-06 - RelativePtEC2: 1.7073e-07 + RelativePtEC1: -2.25870000e-06 + RelativePtEC2: 1.70730000e-07 RelativeSample: 0.012312 - RelativeStatEC: 9.1351e-06 - RelativeStatFSR: 0.0032594 - SinglePionECAL: 0.0066452 - SinglePionHCAL: 0.0036183 + RelativeStatEC: 9.13510000e-06 + RelativeStatFSR: 3.25940000e-03 + SinglePionECAL: 6.64520000e-03 + SinglePionHCAL: 3.61830000e-03 TimePtEta: 0.079026 Lumi: 0.038944 - model: 0.0056801 -- all uncorr. unc.: 0.0043455 + model: 5.68010000e-03 +- all uncorr. unc.: 4.34550000e-03 AbsoluteMPFBias: 0.018399 AbsoluteScale: 0.01112 - fake: -3.2996e-06 + fake: -3.29960000e-06 FlavorQCD: 0.012768 - Fragmentation: -0.003033 - JER: -0.0072629 - miss: 0.0013088 - PileUpDataMC: 0.0020305 - PileUpPtBB: 0.00027429 - PileUpPtEC1: 3.1153e-06 - PileUpPtEC2: -1.3275e-07 - PileUpPtRef: -0.0007517 - Pref: -0.0057525 - PU: -8.1214e-05 + Fragmentation: -3.03300000e-03 + JER: -7.26290000e-03 + miss: 1.30880000e-03 + PileUpDataMC: 2.03050000e-03 + PileUpPtBB: 2.74290000e-04 + PileUpPtEC1: 3.11530000e-06 + PileUpPtEC2: -1.32750000e-07 + PileUpPtRef: -7.51700000e-04 + Pref: -5.75250000e-03 + PU: -8.12140000e-05 RelativeBal: 0.013544 RelativeFSR: 0.003565 - RelativeJEREC1: 1.2214e-05 - RelativeJEREC2: 2.4142e-06 - RelativePtBB: 0.0053603 - RelativePtEC1: -6.4652e-07 - RelativePtEC2: 6.5756e-08 - RelativeSample: 0.0034319 - RelativeStatEC: 6.3306e-06 - RelativeStatFSR: 0.0013422 - SinglePionECAL: 0.0032468 + RelativeJEREC1: 1.22140000e-05 + RelativeJEREC2: 2.41420000e-06 + RelativePtBB: 5.36030000e-03 + RelativePtEC1: -6.46520000e-07 + RelativePtEC2: 6.57560000e-08 + RelativeSample: 3.43190000e-03 + RelativeStatEC: 6.33060000e-06 + RelativeStatFSR: 1.34220000e-03 + SinglePionECAL: 3.24680000e-03 SinglePionHCAL: 0.001773 TimePtEta: 0.033209 Lumi: 0.01561 - model: 0.0020528 + model: 2.05280000e-03 - all uncorr. unc.: 0.001762 - AbsoluteMPFBias: 0.0076832 - AbsoluteScale: 0.0046496 - fake: -7.7984e-07 - FlavorQCD: 0.0039668 - Fragmentation: -0.0014505 - JER: -0.0027355 - miss: 0.00058171 - PileUpDataMC: 0.00074015 - PileUpPtBB: -3.9174e-05 - PileUpPtEC1: 9.1869e-07 - PileUpPtEC2: -3.3041e-08 - PileUpPtRef: -0.0003458 - Pref: -0.0019357 - PU: -1.7657e-05 + AbsoluteMPFBias: 7.68320000e-03 + AbsoluteScale: 4.64960000e-03 + fake: -7.79840000e-07 + FlavorQCD: 3.96680000e-03 + Fragmentation: -1.45050000e-03 + JER: -2.73550000e-03 + miss: 5.81710000e-04 + PileUpDataMC: 7.40150000e-04 + PileUpPtBB: -3.91740000e-05 + PileUpPtEC1: 9.18690000e-07 + PileUpPtEC2: -3.30410000e-08 + PileUpPtRef: -3.45800000e-04 + Pref: -1.93570000e-03 + PU: -1.76570000e-05 RelativeBal: 0.005685 - RelativeFSR: 0.0023957 - RelativeJEREC1: 3.5854e-06 - RelativeJEREC2: 5.5722e-07 - RelativePtBB: 0.0025173 - RelativePtEC1: -1.618e-07 - RelativePtEC2: 2.217e-08 - RelativeSample: 0.00077528 - RelativeStatEC: 1.8736e-06 - RelativeStatFSR: 0.00055829 - SinglePionECAL: 0.0015653 - SinglePionHCAL: 0.00084385 + RelativeFSR: 2.39570000e-03 + RelativeJEREC1: 3.58540000e-06 + RelativeJEREC2: 5.57220000e-07 + RelativePtBB: 2.51730000e-03 + RelativePtEC1: -1.61800000e-07 + RelativePtEC2: 2.21700000e-08 + RelativeSample: 7.75280000e-04 + RelativeStatEC: 1.87360000e-06 + RelativeStatFSR: 5.58290000e-04 + SinglePionECAL: 1.56530000e-03 + SinglePionHCAL: 8.43850000e-04 TimePtEta: 0.014058 - Lumi: 0.0063283 - model: 0.00074753 -- all uncorr. unc.: 0.00079794 - AbsoluteMPFBias: 0.0032879 - AbsoluteScale: 0.0019898 - fake: 5.9082e-08 - FlavorQCD: 0.0011638 - Fragmentation: -0.00068729 - JER: -0.0010602 - miss: 0.00026203 - PileUpDataMC: 0.00027573 - PileUpPtBB: -7.165e-05 - PileUpPtEC1: 7.3397e-08 - PileUpPtEC2: -6.2314e-09 - PileUpPtRef: -0.00014377 - Pref: -0.00068084 - PU: 1.6798e-06 - RelativeBal: 0.0024519 - RelativeFSR: 0.0014116 - RelativeJEREC1: 1.2633e-07 - RelativeJEREC2: -6.6692e-08 - RelativePtBB: 0.0011831 - RelativePtEC1: 2.7415e-08 - RelativePtEC2: 6.5253e-09 - RelativeSample: 8.4821e-05 - RelativeStatEC: -1.5774e-07 - RelativeStatFSR: 0.00023661 - SinglePionECAL: 0.0007459 - SinglePionHCAL: 0.00039851 - TimePtEta: 0.0060519 - Lumi: 0.0026187 - model: 0.00016347 -- all uncorr. unc.: 0.00038102 - AbsoluteMPFBias: 0.0014358 - AbsoluteScale: 0.00086722 - fake: 1.9792e-07 - FlavorQCD: 0.00028673 - Fragmentation: -0.00032422 - JER: -0.00043429 - miss: 0.00011913 - PileUpDataMC: 0.00010362 - PileUpPtBB: -5.5825e-05 - PileUpPtEC1: -1.5268e-07 - PileUpPtEC2: 1.6614e-09 - PileUpPtRef: -5.3722e-05 - Pref: -0.00026251 - PU: 3.2163e-06 - RelativeBal: 0.0010734 - RelativeFSR: 0.00078127 - RelativeJEREC1: -6.6716e-07 - RelativeJEREC2: -1.4573e-07 - RelativePtBB: 0.00055696 - RelativePtEC1: 2.0235e-08 - RelativePtEC2: 1.4996e-09 - RelativeSample: -8.077e-05 - RelativeStatEC: -4.5451e-07 - RelativeStatFSR: 0.00010174 - SinglePionECAL: 0.00035335 - SinglePionHCAL: 0.00019133 - TimePtEta: 0.0026397 - Lumi: 0.0011011 - model: -1.1481e-06 -- all uncorr. unc.: 0.00019401 - AbsoluteMPFBias: 0.00061827 - AbsoluteScale: 0.0003731 - fake: 1.3474e-07 - FlavorQCD: 3.342e-05 - Fragmentation: -0.00014819 - JER: -0.00018015 - miss: 5.2862e-05 - PileUpDataMC: 3.7578e-05 - PileUpPtBB: -3.3835e-05 - PileUpPtEC1: -1.3561e-07 - PileUpPtEC2: 2.0435e-09 - PileUpPtRef: -1.6407e-05 - Pref: -9.4255e-05 - PU: 2.3329e-06 - RelativeBal: 0.00046094 - RelativeFSR: 0.0004047 - RelativeJEREC1: -5.3777e-07 - RelativeJEREC2: -9.8444e-08 - RelativePtBB: 0.00025578 - RelativePtEC1: 1.3926e-08 - RelativePtEC2: 1.2309e-10 - RelativeSample: -7.8577e-05 - RelativeStatEC: -3.5812e-07 - RelativeStatFSR: 4.2907e-05 - SinglePionECAL: 0.00016177 - SinglePionHCAL: 9.0516e-05 - TimePtEta: 0.0011279 - Lumi: 0.00045456 - model: 2.6833e-05 -- all uncorr. unc.: 0.00010665 - AbsoluteMPFBias: 0.00027054 - AbsoluteScale: 0.00016307 - fake: 5.9947e-08 - FlavorQCD: -2.3419e-05 - Fragmentation: -6.772e-05 - JER: -7.7104e-05 - miss: 2.3601e-05 - PileUpDataMC: 1.4212e-05 - PileUpPtBB: -1.8662e-05 - PileUpPtEC1: -7.8858e-08 - PileUpPtEC2: 1.3215e-09 - PileUpPtRef: -3.2023e-06 - Pref: -3.6876e-05 - PU: 1.3813e-06 - RelativeBal: 0.00020205 - RelativeFSR: 0.0002058 - RelativeJEREC1: -2.7761e-07 - RelativeJEREC2: -4.3832e-08 - RelativePtBB: 0.00011897 - RelativePtEC1: 8.0723e-09 - RelativePtEC2: 1.2037e-10 - RelativeSample: -5.1859e-05 - RelativeStatEC: -1.905e-07 - RelativeStatFSR: 1.8293e-05 - SinglePionECAL: 7.402e-05 - SinglePionHCAL: 4.2969e-05 - TimePtEta: 0.00048839 - Lumi: 0.00018992 - model: -7.0556e-06 -- all uncorr. unc.: 6.219e-05 - AbsoluteMPFBias: 0.00011758 - AbsoluteScale: 7.0774e-05 + Lumi: 6.32830000e-03 + model: 7.47530000e-04 +- all uncorr. unc.: 7.97940000e-04 + AbsoluteMPFBias: 3.28790000e-03 + AbsoluteScale: 1.98980000e-03 + fake: 5.90820000e-08 + FlavorQCD: 1.16380000e-03 + Fragmentation: -6.87290000e-04 + JER: -1.06020000e-03 + miss: 2.62030000e-04 + PileUpDataMC: 2.75730000e-04 + PileUpPtBB: -7.16500000e-05 + PileUpPtEC1: 7.33970000e-08 + PileUpPtEC2: -6.23140000e-09 + PileUpPtRef: -1.43770000e-04 + Pref: -6.80840000e-04 + PU: 1.67980000e-06 + RelativeBal: 2.45190000e-03 + RelativeFSR: 1.41160000e-03 + RelativeJEREC1: 1.26330000e-07 + RelativeJEREC2: -6.66920000e-08 + RelativePtBB: 1.18310000e-03 + RelativePtEC1: 2.74150000e-08 + RelativePtEC2: 6.52530000e-09 + RelativeSample: 8.48210000e-05 + RelativeStatEC: -1.57740000e-07 + RelativeStatFSR: 2.36610000e-04 + SinglePionECAL: 7.45900000e-04 + SinglePionHCAL: 3.98510000e-04 + TimePtEta: 6.05190000e-03 + Lumi: 2.61870000e-03 + model: 1.63470000e-04 +- all uncorr. unc.: 3.81020000e-04 + AbsoluteMPFBias: 1.43580000e-03 + AbsoluteScale: 8.67220000e-04 + fake: 1.97920000e-07 + FlavorQCD: 2.86730000e-04 + Fragmentation: -3.24220000e-04 + JER: -4.34290000e-04 + miss: 1.19130000e-04 + PileUpDataMC: 1.03620000e-04 + PileUpPtBB: -5.58250000e-05 + PileUpPtEC1: -1.52680000e-07 + PileUpPtEC2: 1.66140000e-09 + PileUpPtRef: -5.37220000e-05 + Pref: -2.62510000e-04 + PU: 3.21630000e-06 + RelativeBal: 1.07340000e-03 + RelativeFSR: 7.81270000e-04 + RelativeJEREC1: -6.67160000e-07 + RelativeJEREC2: -1.45730000e-07 + RelativePtBB: 5.56960000e-04 + RelativePtEC1: 2.02350000e-08 + RelativePtEC2: 1.49960000e-09 + RelativeSample: -8.07700000e-05 + RelativeStatEC: -4.54510000e-07 + RelativeStatFSR: 1.01740000e-04 + SinglePionECAL: 3.53350000e-04 + SinglePionHCAL: 1.91330000e-04 + TimePtEta: 2.63970000e-03 + Lumi: 1.10110000e-03 + model: -1.14810000e-06 +- all uncorr. unc.: 1.94010000e-04 + AbsoluteMPFBias: 6.18270000e-04 + AbsoluteScale: 3.73100000e-04 + fake: 1.34740000e-07 + FlavorQCD: 3.34200000e-05 + Fragmentation: -1.48190000e-04 + JER: -1.80150000e-04 + miss: 5.28620000e-05 + PileUpDataMC: 3.75780000e-05 + PileUpPtBB: -3.38350000e-05 + PileUpPtEC1: -1.35610000e-07 + PileUpPtEC2: 2.04350000e-09 + PileUpPtRef: -1.64070000e-05 + Pref: -9.42550000e-05 + PU: 2.33290000e-06 + RelativeBal: 4.60940000e-04 + RelativeFSR: 4.04700000e-04 + RelativeJEREC1: -5.37770000e-07 + RelativeJEREC2: -9.84440000e-08 + RelativePtBB: 2.55780000e-04 + RelativePtEC1: 1.39260000e-08 + RelativePtEC2: 1.23090000e-10 + RelativeSample: -7.85770000e-05 + RelativeStatEC: -3.58120000e-07 + RelativeStatFSR: 4.29070000e-05 + SinglePionECAL: 1.61770000e-04 + SinglePionHCAL: 9.05160000e-05 + TimePtEta: 1.12790000e-03 + Lumi: 4.54560000e-04 + model: 2.68330000e-05 +- all uncorr. unc.: 1.06650000e-04 + AbsoluteMPFBias: 2.70540000e-04 + AbsoluteScale: 1.63070000e-04 + fake: 5.99470000e-08 + FlavorQCD: -2.34190000e-05 + Fragmentation: -6.77200000e-05 + JER: -7.71040000e-05 + miss: 2.36010000e-05 + PileUpDataMC: 1.42120000e-05 + PileUpPtBB: -1.86620000e-05 + PileUpPtEC1: -7.88580000e-08 + PileUpPtEC2: 1.32150000e-09 + PileUpPtRef: -3.20230000e-06 + Pref: -3.68760000e-05 + PU: 1.38130000e-06 + RelativeBal: 2.02050000e-04 + RelativeFSR: 2.05800000e-04 + RelativeJEREC1: -2.77610000e-07 + RelativeJEREC2: -4.38320000e-08 + RelativePtBB: 1.18970000e-04 + RelativePtEC1: 8.07230000e-09 + RelativePtEC2: 1.20370000e-10 + RelativeSample: -5.18590000e-05 + RelativeStatEC: -1.90500000e-07 + RelativeStatFSR: 1.82930000e-05 + SinglePionECAL: 7.40200000e-05 + SinglePionHCAL: 4.29690000e-05 + TimePtEta: 4.88390000e-04 + Lumi: 1.89920000e-04 + model: -7.05560000e-06 +- all uncorr. unc.: 6.21900000e-05 + AbsoluteMPFBias: 1.17580000e-04 + AbsoluteScale: 7.07740000e-05 fake: 1.41e-08 - FlavorQCD: -2.428e-05 - Fragmentation: -3.033e-05 - JER: -3.4433e-05 - miss: 1.0373e-05 - PileUpDataMC: 5.6204e-06 - PileUpPtBB: -9.6164e-06 - PileUpPtEC1: -3.5017e-08 - PileUpPtEC2: 6.8636e-10 - PileUpPtRef: 7.3778e-07 - Pref: -1.4347e-05 - PU: 7.3424e-07 - RelativeBal: 8.9051e-05 - RelativeFSR: 0.00010244 - RelativeJEREC1: -9.51e-08 - RelativeJEREC2: -1.0521e-08 - RelativePtBB: 5.4474e-05 - RelativePtEC1: 4.2418e-09 - RelativePtEC2: 9.6223e-11 - RelativeSample: -2.9358e-05 - RelativeStatEC: -7.2326e-08 - RelativeStatFSR: 7.7106e-06 - SinglePionECAL: 3.3278e-05 - SinglePionHCAL: 2.0041e-05 - TimePtEta: 0.00021139 - Lumi: 7.8528e-05 - model: 2.3826e-07 -- all uncorr. unc.: 3.6925e-05 - AbsoluteMPFBias: 5.1062e-05 - AbsoluteScale: 3.0687e-05 - fake: -5.544e-09 - FlavorQCD: -1.6002e-05 - Fragmentation: -1.3423e-05 - JER: -1.6351e-05 - miss: 4.5191e-06 - PileUpDataMC: 2.2733e-06 - PileUpPtBB: -4.9416e-06 - PileUpPtEC1: -1.1186e-08 - PileUpPtEC2: 3.1398e-10 - PileUpPtRef: 1.3707e-06 - Pref: -4.6891e-06 - PU: 3.6774e-07 - RelativeBal: 3.9491e-05 - RelativeFSR: 5.0139e-05 - RelativeJEREC1: -6.5853e-09 - RelativeJEREC2: 3.7502e-09 - RelativePtBB: 2.473e-05 - RelativePtEC1: 2.1091e-09 - RelativePtEC2: 4.4983e-11 - RelativeSample: -1.5628e-05 - RelativeStatEC: -1.3441e-08 - RelativeStatFSR: 3.2338e-06 - SinglePionECAL: 1.5041e-05 - SinglePionHCAL: 9.2536e-06 - TimePtEta: 9.1158e-05 - Lumi: 3.2335e-05 - model: -7.9572e-08 -- all uncorr. unc.: 2.1603e-05 - AbsoluteMPFBias: 2.0554e-05 - AbsoluteScale: 1.2332e-05 - fake: -9.8205e-09 - FlavorQCD: -8.4337e-06 - Fragmentation: -5.4556e-06 - JER: -7.4515e-06 - miss: 1.8124e-06 - PileUpDataMC: 8.7223e-07 - PileUpPtBB: -2.3042e-06 - PileUpPtEC1: -8.5389e-10 - PileUpPtEC2: 1.1994e-10 - PileUpPtRef: 1.0138e-06 - Pref: -1.8244e-06 - PU: 1.6425e-07 - RelativeBal: 1.6351e-05 - RelativeFSR: 2.2464e-05 - RelativeJEREC1: 2.2575e-08 - RelativeJEREC2: 6.9197e-09 - RelativePtBB: 1.0337e-05 - RelativePtEC1: 9.3737e-10 - RelativePtEC2: 1.2618e-11 - RelativeSample: -7.4937e-06 - RelativeStatEC: 8.6614e-09 - RelativeStatFSR: 1.2525e-06 - SinglePionECAL: 6.2626e-06 - SinglePionHCAL: 3.9285e-06 - TimePtEta: 3.6348e-05 - Lumi: 1.2305e-05 - model: 5.136e-08 -- all uncorr. unc.: 1.276e-05 - AbsoluteMPFBias: 8.6044e-06 - AbsoluteScale: 5.1538e-06 - fake: -8.5724e-09 - FlavorQCD: -4.2534e-06 - Fragmentation: -2.2879e-06 - JER: -3.6092e-06 - miss: 7.5144e-07 - PileUpDataMC: 3.5551e-07 - PileUpPtBB: -1.1007e-06 - PileUpPtEC1: 2.0985e-09 - PileUpPtEC2: 4.2443e-11 - PileUpPtRef: 6.2953e-07 - Pref: -7.9368e-07 - PU: 7.4241e-08 - RelativeBal: 7.0901e-06 - RelativeFSR: 1.0366e-05 - RelativeJEREC1: 2.4927e-08 - RelativeJEREC2: 6.0754e-09 - RelativePtBB: 4.4672e-06 - RelativePtEC1: 4.2215e-10 - RelativePtEC2: 1.7476e-12 - RelativeSample: -3.6218e-06 - RelativeStatEC: 1.2365e-08 - RelativeStatFSR: 5.0284e-07 - SinglePionECAL: 2.6981e-06 - SinglePionHCAL: 1.7224e-06 - TimePtEta: 1.5041e-05 - Lumi: 4.8569e-06 - model: -1.1592e-08 -- all uncorr. unc.: 7.3807e-06 - AbsoluteMPFBias: 3.478e-06 - AbsoluteScale: 2.0796e-06 - fake: -5.7973e-09 - FlavorQCD: -1.9673e-06 - Fragmentation: -9.2025e-07 - JER: -1.705e-06 - miss: 2.9927e-07 - PileUpDataMC: 1.4249e-07 - PileUpPtBB: -5.02e-07 - PileUpPtEC1: 2.2324e-09 - PileUpPtEC2: 1.2137e-11 - PileUpPtRef: 3.4032e-07 - Pref: -2.093e-07 - PU: 3.1746e-08 - RelativeBal: 2.9875e-06 - RelativeFSR: 4.5812e-06 - RelativeJEREC1: 1.8408e-08 - RelativeJEREC2: 4.1167e-09 - RelativePtBB: 1.8546e-06 - RelativePtEC1: 1.8001e-10 - RelativePtEC2: 3.1576e-12 - RelativeSample: -1.6528e-06 - RelativeStatEC: 9.7604e-09 - RelativeStatFSR: 1.9436e-07 - SinglePionECAL: 1.1176e-06 - SinglePionHCAL: 7.2473e-07 - TimePtEta: 5.9988e-06 - Lumi: 1.8468e-06 - model: 1.5342e-07 -- all uncorr. unc.: 4.1378e-06 - AbsoluteMPFBias: 1.2558e-06 - AbsoluteScale: 7.4959e-07 - fake: -3.1234e-09 - FlavorQCD: -7.8444e-07 - Fragmentation: -3.2876e-07 - JER: -7.205e-07 - miss: 1.0601e-07 - PileUpDataMC: 5.1762e-08 - PileUpPtBB: -2.0266e-07 - PileUpPtEC1: 1.4479e-09 - PileUpPtEC2: -2.391e-12 - PileUpPtRef: 1.5436e-07 - Pref: -6.9037e-08 - PU: 1.1936e-08 - RelativeBal: 1.1306e-06 - RelativeFSR: 1.7964e-06 - RelativeJEREC1: 1.0403e-08 - RelativeJEREC2: 2.2197e-09 - RelativePtBB: 6.847e-07 - RelativePtEC1: 6.7529e-11 - RelativePtEC2: 2.6792e-12 - RelativeSample: -6.6252e-07 - RelativeStatEC: 5.6883e-09 - RelativeStatFSR: 6.6947e-08 - SinglePionECAL: 4.1197e-07 - SinglePionHCAL: 2.7092e-07 - TimePtEta: 2.134e-06 - Lumi: 6.2607e-07 - model: 3.7337e-08 -- all uncorr. unc.: 2.2147e-06 - AbsoluteMPFBias: 3.9635e-07 - AbsoluteScale: 2.3616e-07 - fake: -1.3669e-09 - FlavorQCD: -2.663e-07 - Fragmentation: -1.0217e-07 - JER: -2.6492e-07 - miss: 3.2706e-08 - PileUpDataMC: 1.6615e-08 - PileUpPtBB: -7.0957e-08 - PileUpPtEC1: 7.0265e-10 - PileUpPtEC2: -1.8836e-12 - PileUpPtRef: 5.8623e-08 - Pref: -7.6615e-09 - PU: 3.8732e-09 - RelativeBal: 3.7555e-07 - RelativeFSR: 6.1205e-07 - RelativeJEREC1: 4.6941e-09 - RelativeJEREC2: 9.7174e-10 - RelativePtBB: 2.2008e-07 - RelativePtEC1: 2.2007e-11 - RelativePtEC2: 1.4396e-12 - RelativeSample: -2.2908e-07 - RelativeStatEC: 2.6126e-09 - RelativeStatFSR: 2.0117e-08 - SinglePionECAL: 1.3232e-07 - SinglePionHCAL: 8.8095e-08 - TimePtEta: 6.6275e-07 - Lumi: 1.8526e-07 - model: 6.4901e-08 -- all uncorr. unc.: 1.1423e-06 - AbsoluteMPFBias: 1.296e-07 - AbsoluteScale: 7.7093e-08 - fake: -5.8876e-10 - FlavorQCD: -9.1788e-08 - Fragmentation: -3.2763e-08 - JER: -1.0017e-07 - miss: 1.0425e-08 - PileUpDataMC: 5.7662e-09 - PileUpPtBB: -2.557e-08 - PileUpPtEC1: 3.2354e-10 - PileUpPtEC2: -1.0362e-12 - PileUpPtRef: 2.2362e-08 - Pref: -7.8619e-09 - PU: 1.2892e-09 - RelativeBal: 1.2966e-07 - RelativeFSR: 2.1495e-07 - RelativeJEREC1: 2.0661e-09 - RelativeJEREC2: 4.1862e-10 - RelativePtBB: 7.3042e-08 - RelativePtEC1: 7.3963e-12 - RelativePtEC2: 6.965e-13 - RelativeSample: -8.1215e-08 - RelativeStatEC: 1.1633e-09 - RelativeStatFSR: 6.2535e-09 - SinglePionECAL: 4.3916e-08 - SinglePionHCAL: 2.9554e-08 - TimePtEta: 2.1306e-07 - Lumi: 5.6736e-08 - model: 1.2944e-08 + FlavorQCD: -2.42800000e-05 + Fragmentation: -3.03300000e-05 + JER: -3.44330000e-05 + miss: 1.03730000e-05 + PileUpDataMC: 5.62040000e-06 + PileUpPtBB: -9.61640000e-06 + PileUpPtEC1: -3.50170000e-08 + PileUpPtEC2: 6.86360000e-10 + PileUpPtRef: 7.37780000e-07 + Pref: -1.43470000e-05 + PU: 7.34240000e-07 + RelativeBal: 8.90510000e-05 + RelativeFSR: 1.02440000e-04 + RelativeJEREC1: -9.51000000e-08 + RelativeJEREC2: -1.05210000e-08 + RelativePtBB: 5.44740000e-05 + RelativePtEC1: 4.24180000e-09 + RelativePtEC2: 9.62230000e-11 + RelativeSample: -2.93580000e-05 + RelativeStatEC: -7.23260000e-08 + RelativeStatFSR: 7.71060000e-06 + SinglePionECAL: 3.32780000e-05 + SinglePionHCAL: 2.00410000e-05 + TimePtEta: 2.11390000e-04 + Lumi: 7.85280000e-05 + model: 2.38260000e-07 +- all uncorr. unc.: 3.69250000e-05 + AbsoluteMPFBias: 5.10620000e-05 + AbsoluteScale: 3.06870000e-05 + fake: -5.54400000e-09 + FlavorQCD: -1.60020000e-05 + Fragmentation: -1.34230000e-05 + JER: -1.63510000e-05 + miss: 4.51910000e-06 + PileUpDataMC: 2.27330000e-06 + PileUpPtBB: -4.94160000e-06 + PileUpPtEC1: -1.11860000e-08 + PileUpPtEC2: 3.13980000e-10 + PileUpPtRef: 1.37070000e-06 + Pref: -4.68910000e-06 + PU: 3.67740000e-07 + RelativeBal: 3.94910000e-05 + RelativeFSR: 5.01390000e-05 + RelativeJEREC1: -6.58530000e-09 + RelativeJEREC2: 3.75020000e-09 + RelativePtBB: 2.47300000e-05 + RelativePtEC1: 2.10910000e-09 + RelativePtEC2: 4.49830000e-11 + RelativeSample: -1.56280000e-05 + RelativeStatEC: -1.34410000e-08 + RelativeStatFSR: 3.23380000e-06 + SinglePionECAL: 1.50410000e-05 + SinglePionHCAL: 9.25360000e-06 + TimePtEta: 9.11580000e-05 + Lumi: 3.23350000e-05 + model: -7.95720000e-08 +- all uncorr. unc.: 2.16030000e-05 + AbsoluteMPFBias: 2.05540000e-05 + AbsoluteScale: 1.23320000e-05 + fake: -9.82050000e-09 + FlavorQCD: -8.43370000e-06 + Fragmentation: -5.45560000e-06 + JER: -7.45150000e-06 + miss: 1.81240000e-06 + PileUpDataMC: 8.72230000e-07 + PileUpPtBB: -2.30420000e-06 + PileUpPtEC1: -8.53890000e-10 + PileUpPtEC2: 1.19940000e-10 + PileUpPtRef: 1.01380000e-06 + Pref: -1.82440000e-06 + PU: 1.64250000e-07 + RelativeBal: 1.63510000e-05 + RelativeFSR: 2.24640000e-05 + RelativeJEREC1: 2.25750000e-08 + RelativeJEREC2: 6.91970000e-09 + RelativePtBB: 1.03370000e-05 + RelativePtEC1: 9.37370000e-10 + RelativePtEC2: 1.26180000e-11 + RelativeSample: -7.49370000e-06 + RelativeStatEC: 8.66140000e-09 + RelativeStatFSR: 1.25250000e-06 + SinglePionECAL: 6.26260000e-06 + SinglePionHCAL: 3.92850000e-06 + TimePtEta: 3.63480000e-05 + Lumi: 1.23050000e-05 + model: 5.13600000e-08 +- all uncorr. unc.: 1.27600000e-05 + AbsoluteMPFBias: 8.60440000e-06 + AbsoluteScale: 5.15380000e-06 + fake: -8.57240000e-09 + FlavorQCD: -4.25340000e-06 + Fragmentation: -2.28790000e-06 + JER: -3.60920000e-06 + miss: 7.51440000e-07 + PileUpDataMC: 3.55510000e-07 + PileUpPtBB: -1.10070000e-06 + PileUpPtEC1: 2.09850000e-09 + PileUpPtEC2: 4.24430000e-11 + PileUpPtRef: 6.29530000e-07 + Pref: -7.93680000e-07 + PU: 7.42410000e-08 + RelativeBal: 7.09010000e-06 + RelativeFSR: 1.03660000e-05 + RelativeJEREC1: 2.49270000e-08 + RelativeJEREC2: 6.07540000e-09 + RelativePtBB: 4.46720000e-06 + RelativePtEC1: 4.22150000e-10 + RelativePtEC2: 1.74760000e-12 + RelativeSample: -3.62180000e-06 + RelativeStatEC: 1.23650000e-08 + RelativeStatFSR: 5.02840000e-07 + SinglePionECAL: 2.69810000e-06 + SinglePionHCAL: 1.72240000e-06 + TimePtEta: 1.50410000e-05 + Lumi: 4.85690000e-06 + model: -1.15920000e-08 +- all uncorr. unc.: 7.38070000e-06 + AbsoluteMPFBias: 3.47800000e-06 + AbsoluteScale: 2.07960000e-06 + fake: -5.79730000e-09 + FlavorQCD: -1.96730000e-06 + Fragmentation: -9.20250000e-07 + JER: -1.70500000e-06 + miss: 2.99270000e-07 + PileUpDataMC: 1.42490000e-07 + PileUpPtBB: -5.02000000e-07 + PileUpPtEC1: 2.23240000e-09 + PileUpPtEC2: 1.21370000e-11 + PileUpPtRef: 3.40320000e-07 + Pref: -2.09300000e-07 + PU: 3.17460000e-08 + RelativeBal: 2.98750000e-06 + RelativeFSR: 4.58120000e-06 + RelativeJEREC1: 1.84080000e-08 + RelativeJEREC2: 4.11670000e-09 + RelativePtBB: 1.85460000e-06 + RelativePtEC1: 1.80010000e-10 + RelativePtEC2: 3.15760000e-12 + RelativeSample: -1.65280000e-06 + RelativeStatEC: 9.76040000e-09 + RelativeStatFSR: 1.94360000e-07 + SinglePionECAL: 1.11760000e-06 + SinglePionHCAL: 7.24730000e-07 + TimePtEta: 5.99880000e-06 + Lumi: 1.84680000e-06 + model: 1.53420000e-07 +- all uncorr. unc.: 4.13780000e-06 + AbsoluteMPFBias: 1.25580000e-06 + AbsoluteScale: 7.49590000e-07 + fake: -3.12340000e-09 + FlavorQCD: -7.84440000e-07 + Fragmentation: -3.28760000e-07 + JER: -7.20500000e-07 + miss: 1.06010000e-07 + PileUpDataMC: 5.17620000e-08 + PileUpPtBB: -2.02660000e-07 + PileUpPtEC1: 1.44790000e-09 + PileUpPtEC2: -2.39100000e-12 + PileUpPtRef: 1.54360000e-07 + Pref: -6.90370000e-08 + PU: 1.19360000e-08 + RelativeBal: 1.13060000e-06 + RelativeFSR: 1.79640000e-06 + RelativeJEREC1: 1.04030000e-08 + RelativeJEREC2: 2.21970000e-09 + RelativePtBB: 6.84700000e-07 + RelativePtEC1: 6.75290000e-11 + RelativePtEC2: 2.67920000e-12 + RelativeSample: -6.62520000e-07 + RelativeStatEC: 5.68830000e-09 + RelativeStatFSR: 6.69470000e-08 + SinglePionECAL: 4.11970000e-07 + SinglePionHCAL: 2.70920000e-07 + TimePtEta: 2.13400000e-06 + Lumi: 6.26070000e-07 + model: 3.73370000e-08 +- all uncorr. unc.: 2.21470000e-06 + AbsoluteMPFBias: 3.96350000e-07 + AbsoluteScale: 2.36160000e-07 + fake: -1.36690000e-09 + FlavorQCD: -2.66300000e-07 + Fragmentation: -1.02170000e-07 + JER: -2.64920000e-07 + miss: 3.27060000e-08 + PileUpDataMC: 1.66150000e-08 + PileUpPtBB: -7.09570000e-08 + PileUpPtEC1: 7.02650000e-10 + PileUpPtEC2: -1.88360000e-12 + PileUpPtRef: 5.86230000e-08 + Pref: -7.66150000e-09 + PU: 3.87320000e-09 + RelativeBal: 3.75550000e-07 + RelativeFSR: 6.12050000e-07 + RelativeJEREC1: 4.69410000e-09 + RelativeJEREC2: 9.71740000e-10 + RelativePtBB: 2.20080000e-07 + RelativePtEC1: 2.20070000e-11 + RelativePtEC2: 1.43960000e-12 + RelativeSample: -2.29080000e-07 + RelativeStatEC: 2.61260000e-09 + RelativeStatFSR: 2.01170000e-08 + SinglePionECAL: 1.32320000e-07 + SinglePionHCAL: 8.80950000e-08 + TimePtEta: 6.62750000e-07 + Lumi: 1.85260000e-07 + model: 6.49010000e-08 +- all uncorr. unc.: 1.14230000e-06 + AbsoluteMPFBias: 1.29600000e-07 + AbsoluteScale: 7.70930000e-08 + fake: -5.88760000e-10 + FlavorQCD: -9.17880000e-08 + Fragmentation: -3.27630000e-08 + JER: -1.00170000e-07 + miss: 1.04250000e-08 + PileUpDataMC: 5.76620000e-09 + PileUpPtBB: -2.55700000e-08 + PileUpPtEC1: 3.23540000e-10 + PileUpPtEC2: -1.03620000e-12 + PileUpPtRef: 2.23620000e-08 + Pref: -7.86190000e-09 + PU: 1.28920000e-09 + RelativeBal: 1.29660000e-07 + RelativeFSR: 2.14950000e-07 + RelativeJEREC1: 2.06610000e-09 + RelativeJEREC2: 4.18620000e-10 + RelativePtBB: 7.30420000e-08 + RelativePtEC1: 7.39630000e-12 + RelativePtEC2: 6.96500000e-13 + RelativeSample: -8.12150000e-08 + RelativeStatEC: 1.16330000e-09 + RelativeStatFSR: 6.25350000e-09 + SinglePionECAL: 4.39160000e-08 + SinglePionHCAL: 2.95540000e-08 + TimePtEta: 2.13060000e-07 + Lumi: 5.67360000e-08 + model: 1.29440000e-08 - all uncorr. unc.: 44.315 AbsoluteMPFBias: 106.77 AbsoluteScale: 65.704 @@ -800,8 +800,8 @@ bins: RelativeJEREC1: 2.4306 RelativeJEREC2: 0.44452 RelativePtBB: -13.492 - RelativePtEC1: -0.060703 - RelativePtEC2: 0.0055596 + RelativePtEC1: -6.07030000e-02 + RelativePtEC2: 5.55960000e-03 RelativeSample: 79.978 RelativeStatEC: 1.6273 RelativeStatFSR: 8.4083 @@ -813,7 +813,7 @@ bins: - all uncorr. unc.: 10.655 AbsoluteMPFBias: 24.247 AbsoluteScale: 14.992 - fake: -0.023323 + fake: -2.33230000e-02 FlavorQCD: 58.749 Fragmentation: 3.617 JER: -20.304 @@ -821,7 +821,7 @@ bins: PileUpDataMC: 10.778 PileUpPtBB: 3.0597 PileUpPtEC1: 0.01885 - PileUpPtEC2: 0.0014945 + PileUpPtEC2: 1.49450000e-03 PileUpPtRef: 3.2803 Pref: -7.8173 PU: -0.91938 @@ -830,8 +830,8 @@ bins: RelativeJEREC1: 0.036213 RelativeJEREC2: 0.017248 RelativePtBB: -1.5042 - RelativePtEC1: -0.0083795 - RelativePtEC2: 0.0007557 + RelativePtEC1: -8.37950000e-03 + RelativePtEC2: 7.55700000e-04 RelativeSample: 11.016 RelativeStatEC: 0.041378 RelativeStatFSR: 1.9122 @@ -843,27 +843,27 @@ bins: - all uncorr. unc.: 2.5365 AbsoluteMPFBias: 7.0201 AbsoluteScale: 4.1947 - fake: 0.0038352 + fake: 3.83520000e-03 FlavorQCD: 14.001 Fragmentation: 0.56166 JER: -4.9504 miss: 0.24961 PileUpDataMC: 2.2683 PileUpPtBB: 0.66171 - PileUpPtEC1: 0.0042241 - PileUpPtEC2: 0.00019594 + PileUpPtEC1: 4.22410000e-03 + PileUpPtEC2: 1.95940000e-04 PileUpPtRef: 0.68166 Pref: -3.1104 PU: -0.18129 RelativeBal: 0.96339 RelativeFSR: -1.5638 - RelativeJEREC1: -0.035209 - RelativeJEREC2: -0.0027598 + RelativeJEREC1: -3.52090000e-02 + RelativeJEREC2: -2.75980000e-03 RelativePtBB: 0.14162 - RelativePtEC1: -0.0012017 - RelativePtEC2: 0.00011082 + RelativePtEC1: -1.20170000e-03 + RelativePtEC2: 1.10820000e-04 RelativeSample: 1.4028 - RelativeStatEC: -0.019102 + RelativeStatEC: -1.91020000e-02 RelativeStatFSR: 0.52243 SinglePionECAL: -0.66008 SinglePionHCAL: -0.20613 @@ -873,57 +873,57 @@ bins: - all uncorr. unc.: 0.89597 AbsoluteMPFBias: 2.2403 AbsoluteScale: 1.3443 - fake: 0.0016003 + fake: 1.60030000e-03 FlavorQCD: 3.8443 Fragmentation: 0.055363 JER: -1.3724 miss: 0.07175 PileUpDataMC: 0.55615 PileUpPtBB: 0.14976 - PileUpPtEC1: 0.0016226 - PileUpPtEC2: 2.0327e-05 + PileUpPtEC1: 1.62260000e-03 + PileUpPtEC2: 2.03270000e-05 PileUpPtRef: 0.13855 Pref: -1.0936 - PU: -0.038642 + PU: -3.86420000e-02 RelativeBal: 0.31497 RelativeFSR: -0.43794 - RelativeJEREC1: -0.012134 - RelativeJEREC2: -0.0011419 + RelativeJEREC1: -1.21340000e-02 + RelativeJEREC2: -1.14190000e-03 RelativePtBB: 0.15422 - RelativePtEC1: -0.0003319 - RelativePtEC2: -1.4656e-05 + RelativePtEC1: -3.31900000e-04 + RelativePtEC2: -1.46560000e-05 RelativeSample: 0.05715 - RelativeStatEC: -0.0072823 + RelativeStatEC: -7.28230000e-03 RelativeStatFSR: 0.16112 - SinglePionECAL: -0.054886 - SinglePionHCAL: -0.0044999 + SinglePionECAL: -5.48860000e-02 + SinglePionHCAL: -4.49990000e-03 TimePtEta: 4.0024 Lumi: 2.0828 model: 0.78536 - all uncorr. unc.: 0.28731 AbsoluteMPFBias: 0.76258 AbsoluteScale: 0.45839 - fake: 0.00034918 + fake: 3.49180000e-04 FlavorQCD: 1.1361 - Fragmentation: -0.026692 + Fragmentation: -2.66920000e-02 JER: -0.42875 miss: 0.025141 PileUpDataMC: 0.1524 PileUpPtBB: 0.033397 - PileUpPtEC1: 0.00059622 - PileUpPtEC2: -5.3784e-06 + PileUpPtEC1: 5.96220000e-04 + PileUpPtEC2: -5.37840000e-06 PileUpPtRef: 0.023987 Pref: -0.41017 - PU: -0.0083997 + PU: -8.39970000e-03 RelativeBal: 0.1133 RelativeFSR: -0.13119 - RelativeJEREC1: -0.0029823 - RelativeJEREC2: -0.00024144 + RelativeJEREC1: -2.98230000e-03 + RelativeJEREC2: -2.41440000e-04 RelativePtBB: 0.092749 - RelativePtEC1: -0.00011118 - RelativePtEC2: -8.2665e-07 + RelativePtEC1: -1.11180000e-04 + RelativePtEC2: -8.26650000e-07 RelativeSample: -0.1242 - RelativeStatEC: -0.0019062 + RelativeStatEC: -1.90620000e-03 RelativeStatFSR: 0.054344 SinglePionECAL: 0.021728 SinglePionHCAL: 0.014849 @@ -933,27 +933,27 @@ bins: - all uncorr. unc.: 0.089972 AbsoluteMPFBias: 0.27417 AbsoluteScale: 0.16489 - fake: 3.7551e-05 + fake: 3.75510000e-05 FlavorQCD: 0.35207 - Fragmentation: -0.020281 + Fragmentation: -2.02810000e-02 JER: -0.14625 - miss: 0.0099511 + miss: 9.95110000e-03 PileUpDataMC: 0.045265 - PileUpPtBB: 0.0065674 - PileUpPtEC1: 0.00018305 - PileUpPtEC2: -2.5804e-06 - PileUpPtRef: 0.0017017 + PileUpPtBB: 6.56740000e-03 + PileUpPtEC1: 1.83050000e-04 + PileUpPtEC2: -2.58040000e-06 + PileUpPtRef: 1.70170000e-03 Pref: -0.14369 - PU: -0.0017139 + PU: -1.71390000e-03 RelativeBal: 0.043624 RelativeFSR: -0.0411 - RelativeJEREC1: -0.00058387 - RelativeJEREC2: -2.1868e-05 + RelativeJEREC1: -5.83870000e-04 + RelativeJEREC2: -2.18680000e-05 RelativePtBB: 0.046229 - RelativePtEC1: -3.9594e-05 - RelativePtEC2: -5.4924e-07 - RelativeSample: -0.086423 - RelativeStatEC: -0.00041201 + RelativePtEC1: -3.95940000e-05 + RelativePtEC2: -5.49240000e-07 + RelativeSample: -8.64230000e-02 + RelativeStatEC: -4.12010000e-04 RelativeStatFSR: 0.019602 SinglePionECAL: 0.019905 SinglePionHCAL: 0.010387 @@ -963,453 +963,453 @@ bins: - all uncorr. unc.: 0.031899 AbsoluteMPFBias: 0.10418 AbsoluteScale: 0.062751 - fake: -1.0845e-05 + fake: -1.08450000e-05 FlavorQCD: 0.1132 - Fragmentation: -0.011373 - JER: -0.052596 - miss: 0.0042609 + Fragmentation: -1.13730000e-02 + JER: -5.25960000e-02 + miss: 4.26090000e-03 PileUpDataMC: 0.014362 - PileUpPtBB: 0.00083603 - PileUpPtEC1: 4.9666e-05 - PileUpPtEC2: -9.9548e-07 - PileUpPtRef: -0.0015646 - Pref: -0.046307 - PU: -0.00033992 + PileUpPtBB: 8.36030000e-04 + PileUpPtEC1: 4.96660000e-05 + PileUpPtEC2: -9.95480000e-07 + PileUpPtRef: -1.56460000e-03 + Pref: -4.63070000e-02 + PU: -3.39920000e-04 RelativeBal: 0.018077 - RelativeFSR: -0.013365 - RelativeJEREC1: -7.61e-05 - RelativeJEREC2: 9.8814e-06 + RelativeFSR: -1.33650000e-02 + RelativeJEREC1: -7.61000000e-05 + RelativeJEREC2: 9.88140000e-06 RelativePtBB: 0.022007 - RelativePtEC1: -1.4911e-05 - RelativePtEC2: -3.6675e-07 + RelativePtEC1: -1.49110000e-05 + RelativePtEC2: -3.66750000e-07 RelativeSample: -0.04801 - RelativeStatEC: -7.1864e-05 - RelativeStatFSR: 0.0075107 + RelativeStatEC: -7.18640000e-05 + RelativeStatFSR: 7.51070000e-03 SinglePionECAL: 0.01174 - SinglePionHCAL: 0.0059567 + SinglePionHCAL: 5.95670000e-03 TimePtEta: 0.19716 Lumi: 0.091035 model: 0.021127 - all uncorr. unc.: 0.012955 AbsoluteMPFBias: 0.040113 AbsoluteScale: 0.024272 - fake: -8.6317e-06 + fake: -8.63170000e-06 FlavorQCD: 0.035875 - Fragmentation: -0.005636 - JER: -0.018999 - miss: 0.0018451 - PileUpDataMC: 0.0046281 - PileUpPtBB: -0.00029289 - PileUpPtEC1: 1.0942e-05 - PileUpPtEC2: -3.3558e-07 - PileUpPtRef: -0.0012184 - Pref: -0.014309 - PU: 0.00012831 - RelativeBal: 0.0075319 - RelativeFSR: -0.0043601 - RelativeJEREC1: 2.273e-05 - RelativeJEREC2: 6.872e-06 + Fragmentation: -5.63600000e-03 + JER: -1.89990000e-02 + miss: 1.84510000e-03 + PileUpDataMC: 4.62810000e-03 + PileUpPtBB: -2.92890000e-04 + PileUpPtEC1: 1.09420000e-05 + PileUpPtEC2: -3.35580000e-07 + PileUpPtRef: -1.21840000e-03 + Pref: -1.43090000e-02 + PU: 1.28310000e-04 + RelativeBal: 7.53190000e-03 + RelativeFSR: -4.36010000e-03 + RelativeJEREC1: 2.27300000e-05 + RelativeJEREC2: 6.87200000e-06 RelativePtBB: 0.010054 - RelativePtEC1: -5.6731e-06 - RelativePtEC2: -1.5956e-07 - RelativeSample: -0.024083 - RelativeStatEC: -1.8189e-05 - RelativeStatFSR: 0.0029166 - SinglePionECAL: 0.0059535 - SinglePionHCAL: 0.0030378 + RelativePtEC1: -5.67310000e-06 + RelativePtEC2: -1.59560000e-07 + RelativeSample: -2.40830000e-02 + RelativeStatEC: -1.81890000e-05 + RelativeStatFSR: 2.91660000e-03 + SinglePionECAL: 5.95350000e-03 + SinglePionHCAL: 3.03780000e-03 TimePtEta: 0.07704 Lumi: 0.034364 - model: 0.0085919 -- all uncorr. unc.: 0.0042037 + model: 8.59190000e-03 +- all uncorr. unc.: 4.20370000e-03 AbsoluteMPFBias: 0.016431 - AbsoluteScale: 0.0099557 - fake: -3.324e-06 + AbsoluteScale: 9.95570000e-03 + fake: -3.32400000e-06 FlavorQCD: 0.011605 - Fragmentation: -0.0027613 - JER: -0.0072319 - miss: 0.00083964 - PileUpDataMC: 0.0015787 - PileUpPtBB: -0.0003056 - PileUpPtEC1: 1.6007e-06 - PileUpPtEC2: -1.0663e-07 - PileUpPtRef: -0.00066542 - Pref: -0.0047412 - PU: 5.1287e-05 + Fragmentation: -2.76130000e-03 + JER: -7.23190000e-03 + miss: 8.39640000e-04 + PileUpDataMC: 1.57870000e-03 + PileUpPtBB: -3.05600000e-04 + PileUpPtEC1: 1.60070000e-06 + PileUpPtEC2: -1.06630000e-07 + PileUpPtRef: -6.65420000e-04 + Pref: -4.74120000e-03 + PU: 5.12870000e-05 RelativeBal: 0.003279 - RelativeFSR: -0.0014284 - RelativeJEREC1: 7.8978e-06 - RelativeJEREC2: 2.5505e-06 - RelativePtBB: 0.0047862 - RelativePtEC1: -2.2844e-06 - RelativePtEC2: -6.2075e-08 - RelativeSample: -0.012067 - RelativeStatEC: -8.6133e-06 - RelativeStatFSR: 0.0012016 + RelativeFSR: -1.42840000e-03 + RelativeJEREC1: 7.89780000e-06 + RelativeJEREC2: 2.55050000e-06 + RelativePtBB: 4.78620000e-03 + RelativePtEC1: -2.28440000e-06 + RelativePtEC2: -6.20750000e-08 + RelativeSample: -1.20670000e-02 + RelativeStatEC: -8.61330000e-06 + RelativeStatFSR: 1.20160000e-03 SinglePionECAL: 0.002956 - SinglePionHCAL: 0.0015323 + SinglePionHCAL: 1.53230000e-03 TimePtEta: 0.031786 Lumi: 0.013736 - model: 0.0012752 -- all uncorr. unc.: 0.0017077 - AbsoluteMPFBias: 0.0067327 - AbsoluteScale: 0.0040748 - fake: -6.6569e-07 - FlavorQCD: 0.0035232 - Fragmentation: -0.0012904 - JER: -0.0027376 - miss: 0.00037601 - PileUpDataMC: 0.00053391 - PileUpPtBB: -0.00018168 - PileUpPtEC1: -1.407e-07 - PileUpPtEC2: -2.9686e-08 - PileUpPtRef: -0.00030326 - Pref: -0.0015429 - PU: 2.7469e-05 + model: 1.27520000e-03 +- all uncorr. unc.: 1.70770000e-03 + AbsoluteMPFBias: 6.73270000e-03 + AbsoluteScale: 4.07480000e-03 + fake: -6.65690000e-07 + FlavorQCD: 3.52320000e-03 + Fragmentation: -1.29040000e-03 + JER: -2.73760000e-03 + miss: 3.76010000e-04 + PileUpDataMC: 5.33910000e-04 + PileUpPtBB: -1.81680000e-04 + PileUpPtEC1: -1.40700000e-07 + PileUpPtEC2: -2.96860000e-08 + PileUpPtRef: -3.03260000e-04 + Pref: -1.54290000e-03 + PU: 2.74690000e-05 RelativeBal: 0.001405 - RelativeFSR: -0.00042837 - RelativeJEREC1: -2.6874e-06 - RelativeJEREC2: 4.8783e-07 + RelativeFSR: -4.28370000e-04 + RelativeJEREC1: -2.68740000e-06 + RelativeJEREC2: 4.87830000e-07 RelativePtBB: 0.00221 - RelativePtEC1: -9.1418e-07 - RelativePtEC2: -2.1764e-08 - RelativeSample: -0.0058024 - RelativeStatEC: -3.933e-06 - RelativeStatFSR: 0.00049295 - SinglePionECAL: 0.0013935 - SinglePionHCAL: 0.00073658 + RelativePtEC1: -9.14180000e-07 + RelativePtEC2: -2.17640000e-08 + RelativeSample: -5.80240000e-03 + RelativeStatEC: -3.93300000e-06 + RelativeStatFSR: 4.92950000e-04 + SinglePionECAL: 1.39350000e-03 + SinglePionHCAL: 7.36580000e-04 TimePtEta: 0.013009 - Lumi: 0.0054584 - model: 0.00015943 -- all uncorr. unc.: 0.00076617 - AbsoluteMPFBias: 0.0028494 - AbsoluteScale: 0.0017204 - fake: 1.2982e-07 + Lumi: 5.45840000e-03 + model: 1.59430000e-04 +- all uncorr. unc.: 7.66170000e-04 + AbsoluteMPFBias: 2.84940000e-03 + AbsoluteScale: 1.72040000e-03 + fake: 1.29820000e-07 FlavorQCD: 0.001019 - Fragmentation: -0.00060117 - JER: -0.0010725 - miss: 0.00017082 - PileUpDataMC: 0.00018512 - PileUpPtBB: -9.2441e-05 - PileUpPtEC1: -1.8278e-07 - PileUpPtEC2: -7.547e-09 - PileUpPtRef: -0.00012516 - Pref: -0.00054658 - PU: 1.452e-05 - RelativeBal: 0.00061256 - RelativeFSR: -0.00011637 - RelativeJEREC1: -1.5996e-06 - RelativeJEREC2: -1.1179e-07 - RelativePtBB: 0.0010269 - RelativePtEC1: -3.7526e-07 - RelativePtEC2: -7.405e-09 - RelativeSample: -0.0027922 - RelativeStatEC: -1.8603e-06 - RelativeStatFSR: 0.00020768 - SinglePionECAL: 0.00065318 - SinglePionHCAL: 0.0003525 - TimePtEta: 0.0054513 - Lumi: 0.0022258 - model: -4.6361e-05 -- all uncorr. unc.: 0.00036261 - AbsoluteMPFBias: 0.0012284 - AbsoluteScale: 0.00074118 - fake: 2.2023e-07 - FlavorQCD: 0.00024719 - Fragmentation: -0.0002778 - JER: -0.00043678 - miss: 7.774e-05 - PileUpDataMC: 6.5153e-05 - PileUpPtBB: -4.3709e-05 - PileUpPtEC1: -1.2945e-07 - PileUpPtEC2: -1.6593e-09 - PileUpPtRef: -4.6139e-05 - Pref: -0.00020036 - PU: 6.9447e-06 - RelativeBal: 0.00027266 - RelativeFSR: -2.539e-05 - RelativeJEREC1: -1.3246e-06 - RelativeJEREC2: -1.7297e-07 - RelativePtBB: 0.0004759 - RelativePtEC1: -1.5581e-07 - RelativePtEC2: -2.5406e-09 - RelativeSample: -0.0013364 - RelativeStatEC: -1.2673e-06 - RelativeStatFSR: 8.8585e-05 - SinglePionECAL: 0.00030322 - SinglePionHCAL: 0.00016711 - TimePtEta: 0.0023074 - Lumi: 0.00091831 - model: -9.2836e-05 -- all uncorr. unc.: 0.00018284 - AbsoluteMPFBias: 0.00051895 - AbsoluteScale: 0.00031372 - fake: 1.3157e-07 - FlavorQCD: 2.7259e-05 - Fragmentation: -0.0001235 - JER: -0.00017591 - miss: 3.4139e-05 - PileUpDataMC: 2.3362e-05 - PileUpPtBB: -2.126e-05 - PileUpPtEC1: -7.6151e-08 - PileUpPtEC2: -3.9271e-10 - PileUpPtRef: -1.3756e-05 - Pref: -7.1386e-05 - PU: 3.0228e-06 - RelativeBal: 0.00011795 - RelativeFSR: -3.8112e-06 - RelativeJEREC1: -7.1459e-07 - RelativeJEREC2: -1.0149e-07 - RelativePtBB: 0.0002123 - RelativePtEC1: -6.2943e-08 - RelativePtEC2: -9.2477e-10 - RelativeSample: -0.00061479 - RelativeStatEC: -6.8126e-07 - RelativeStatFSR: 3.6795e-05 - SinglePionECAL: 0.00013489 - SinglePionHCAL: 7.6222e-05 - TimePtEta: 0.00094918 - Lumi: 0.00036872 - model: -5.7866e-05 -- all uncorr. unc.: 0.00010041 - AbsoluteMPFBias: 0.00022512 - AbsoluteScale: 0.00013641 - fake: 5.1067e-08 - FlavorQCD: -2.2651e-05 - Fragmentation: -5.5471e-05 - JER: -7.502e-05 - miss: 1.5181e-05 - PileUpDataMC: 8.7743e-06 - PileUpPtBB: -1.0184e-05 - PileUpPtEC1: -6.6145e-08 - PileUpPtEC2: -2.2853e-10 - PileUpPtRef: -2.7809e-06 - Pref: -2.8291e-05 - PU: 1.279e-06 - RelativeBal: 5.1914e-05 - RelativeFSR: 6.5859e-06 - RelativeJEREC1: -2.8516e-07 - RelativeJEREC2: -3.8825e-08 - RelativePtBB: 9.6784e-05 - RelativePtEC1: -2.5946e-08 - RelativePtEC2: -4.1327e-10 - RelativeSample: -0.00028568 - RelativeStatEC: -3.1103e-07 - RelativeStatFSR: 1.5602e-05 - SinglePionECAL: 6.1332e-05 - SinglePionHCAL: 3.5948e-05 - TimePtEta: 0.00040361 - Lumi: 0.0001511 - model: -4.0302e-05 -- all uncorr. unc.: 5.7317e-05 - AbsoluteMPFBias: 9.4233e-05 - AbsoluteScale: 5.7252e-05 - fake: 6.5975e-09 - FlavorQCD: -2.0773e-05 - Fragmentation: -2.3674e-05 - JER: -3.2171e-05 - miss: 6.4361e-06 - PileUpDataMC: 3.2613e-06 - PileUpPtBB: -4.5675e-06 - PileUpPtEC1: -5.2519e-08 - PileUpPtEC2: -2.0456e-10 - PileUpPtRef: 5.9368e-07 - Pref: -1.0458e-05 - PU: 4.9891e-07 - RelativeBal: 2.1866e-05 - RelativeFSR: 4.6563e-06 - RelativeJEREC1: -5.7456e-08 - RelativeJEREC2: -4.6934e-09 - RelativePtBB: 4.2861e-05 - RelativePtEC1: -1.0264e-08 - RelativePtEC2: -2.145e-10 - RelativeSample: -0.00012634 - RelativeStatEC: -1.0868e-07 - RelativeStatFSR: 6.3505e-06 - SinglePionECAL: 2.674e-05 - SinglePionHCAL: 1.6147e-05 - TimePtEta: 0.00016858 - Lumi: 5.9435e-05 - model: -2.0924e-05 -- all uncorr. unc.: 3.3057e-05 - AbsoluteMPFBias: 3.8606e-05 - AbsoluteScale: 2.3402e-05 - fake: -8.9938e-09 - FlavorQCD: -1.2558e-05 - Fragmentation: -9.6769e-06 - JER: -1.3855e-05 - miss: 2.6196e-06 - PileUpDataMC: 1.2096e-06 - PileUpPtBB: -1.9423e-06 - PileUpPtEC1: -3.3458e-08 - PileUpPtEC2: -1.6069e-10 - PileUpPtRef: 1.0075e-06 - Pref: -3.4728e-06 - PU: 1.8092e-07 - RelativeBal: 8.8677e-06 - RelativeFSR: 2.586e-06 - RelativeJEREC1: 2.6073e-08 - RelativeJEREC2: 7.0997e-09 - RelativePtBB: 1.8329e-05 - RelativePtEC1: -3.9195e-09 - RelativePtEC2: -1.1918e-10 - RelativeSample: -5.3577e-05 - RelativeStatEC: -2.7385e-08 - RelativeStatFSR: 2.4956e-06 - SinglePionECAL: 1.1198e-05 - SinglePionHCAL: 6.9572e-06 - TimePtEta: 6.8587e-05 - Lumi: 2.2572e-05 - model: -1.0587e-05 -- all uncorr. unc.: 1.8787e-05 - AbsoluteMPFBias: 1.6093e-05 - AbsoluteScale: 9.7351e-06 - fake: -1.0932e-08 - FlavorQCD: -6.7759e-06 - Fragmentation: -3.9587e-06 - JER: -6.2084e-06 - miss: 1.069e-06 - PileUpDataMC: 4.7697e-07 - PileUpPtBB: -8.2067e-07 - PileUpPtEC1: -1.9362e-08 - PileUpPtEC2: -1.1046e-10 - PileUpPtRef: 7.499e-07 - Pref: -1.1271e-06 - PU: 6.3462e-08 - RelativeBal: 3.6138e-06 - RelativeFSR: 1.3143e-06 - RelativeJEREC1: 4.1609e-08 - RelativeJEREC2: 8.4698e-09 - RelativePtBB: 7.8984e-06 - RelativePtEC1: -1.5075e-09 - RelativePtEC2: -6.8142e-11 - RelativeSample: -2.2757e-05 - RelativeStatEC: 1.1119e-08 - RelativeStatFSR: 9.8787e-07 - SinglePionECAL: 4.7045e-06 - SinglePionHCAL: 3.0027e-06 - TimePtEta: 2.8349e-05 - Lumi: 8.6357e-06 - model: -4.673e-06 -- all uncorr. unc.: 1.0467e-05 - AbsoluteMPFBias: 5.8907e-06 - AbsoluteScale: 3.5554e-06 - fake: -7.4069e-09 - FlavorQCD: -2.9489e-06 - Fragmentation: -1.4042e-06 - JER: -2.4817e-06 - miss: 3.7883e-07 - PileUpDataMC: 1.8577e-07 - PileUpPtBB: -2.9907e-07 - PileUpPtEC1: -9.1373e-09 - PileUpPtEC2: -5.9638e-11 - PileUpPtRef: 3.9415e-07 - Pref: -3.2189e-07 - PU: 1.8465e-08 - RelativeBal: 1.2809e-06 - RelativeFSR: 5.5083e-07 - RelativeJEREC1: 2.9903e-08 - RelativeJEREC2: 5.7036e-09 - RelativePtBB: 2.9682e-06 - RelativePtEC1: -6.8753e-10 - RelativePtEC2: -3.3365e-11 - RelativeSample: -8.3859e-06 - RelativeStatEC: 9.8591e-09 - RelativeStatFSR: 3.4086e-07 - SinglePionECAL: 1.7173e-06 - SinglePionHCAL: 1.1242e-06 - TimePtEta: 1.0293e-05 - Lumi: 2.8801e-06 - model: -2.5709e-06 -- all uncorr. unc.: 5.6676e-06 - AbsoluteMPFBias: 2.2991e-06 - AbsoluteScale: 1.3843e-06 - fake: -4.4778e-09 - FlavorQCD: -1.2978e-06 - Fragmentation: -5.2537e-07 - JER: -1.0659e-06 - miss: 1.418e-07 - PileUpDataMC: 8.0683e-08 - PileUpPtBB: -1.145e-07 - PileUpPtEC1: -4.3589e-09 - PileUpPtEC2: -3.1662e-11 - PileUpPtRef: 1.984e-07 - Pref: -1.5497e-07 - PU: 5.3086e-09 - RelativeBal: 4.8008e-07 - RelativeFSR: 2.3585e-07 - RelativeJEREC1: 1.8545e-08 - RelativeJEREC2: 3.4361e-09 - RelativePtBB: 1.1823e-06 - RelativePtEC1: -3.1896e-10 - RelativePtEC2: -1.6798e-11 - RelativeSample: -3.2611e-06 - RelativeStatEC: 7.5059e-09 - RelativeStatFSR: 1.2461e-07 - SinglePionECAL: 6.6245e-07 - SinglePionHCAL: 4.4405e-07 - TimePtEta: 3.9869e-06 - Lumi: 1.0178e-06 - model: -7.3344e-07 -- all uncorr. unc.: 2.9592e-06 - AbsoluteMPFBias: 7.8061e-07 - AbsoluteScale: 4.6881e-07 - fake: -2.1276e-09 - FlavorQCD: -4.7911e-07 - Fragmentation: -1.6948e-07 - JER: -3.9875e-07 - miss: 4.5825e-08 - PileUpDataMC: 3.1206e-08 - PileUpPtBB: -3.7675e-08 - PileUpPtEC1: -1.7373e-09 - PileUpPtEC2: -1.3769e-11 - PileUpPtRef: 8.1348e-08 - Pref: -3.7949e-08 - PU: 1.1749e-09 - RelativeBal: 1.5544e-07 - RelativeFSR: 8.517e-08 - RelativeJEREC1: 8.9395e-09 - RelativeJEREC2: 1.6288e-09 - RelativePtBB: 4.0757e-07 - RelativePtEC1: -1.2252e-10 - RelativePtEC2: -7.0943e-12 - RelativeSample: -1.0937e-06 - RelativeStatEC: 3.9804e-09 - RelativeStatFSR: 3.9424e-08 - SinglePionECAL: 2.2066e-07 - SinglePionHCAL: 1.5121e-07 - TimePtEta: 1.344e-06 - Lumi: 3.1132e-07 - model: -5.6281e-07 -- all uncorr. unc.: 1.3635e-06 - AbsoluteMPFBias: 1.8442e-07 - AbsoluteScale: 1.1048e-07 - fake: -6.5729e-10 - FlavorQCD: -1.1988e-07 - Fragmentation: -3.7779e-08 - JER: -1.0345e-07 - miss: 1.0246e-08 - PileUpDataMC: 8.4544e-09 - PileUpPtBB: -8.5439e-09 - PileUpPtEC1: -4.6678e-10 - PileUpPtEC2: -3.9782e-12 - PileUpPtRef: 2.2184e-08 - Pref: -4.2878e-10 - PU: 2.4655e-10 - RelativeBal: 3.4831e-08 - RelativeFSR: 2.0909e-08 - RelativeJEREC1: 2.7877e-09 - RelativeJEREC2: 5.023e-10 - RelativePtBB: 9.7358e-08 - RelativePtEC1: -3.1615e-11 - RelativePtEC2: -2.0173e-12 - RelativeSample: -2.5347e-07 - RelativeStatEC: 1.3114e-09 - RelativeStatFSR: 8.6465e-09 - SinglePionECAL: 5.0847e-08 - SinglePionHCAL: 3.5562e-08 - TimePtEta: 3.1544e-07 - Lumi: 6.6029e-08 - model: -8.4759e-08 + Fragmentation: -6.01170000e-04 + JER: -1.07250000e-03 + miss: 1.70820000e-04 + PileUpDataMC: 1.85120000e-04 + PileUpPtBB: -9.24410000e-05 + PileUpPtEC1: -1.82780000e-07 + PileUpPtEC2: -7.54700000e-09 + PileUpPtRef: -1.25160000e-04 + Pref: -5.46580000e-04 + PU: 1.45200000e-05 + RelativeBal: 6.12560000e-04 + RelativeFSR: -1.16370000e-04 + RelativeJEREC1: -1.59960000e-06 + RelativeJEREC2: -1.11790000e-07 + RelativePtBB: 1.02690000e-03 + RelativePtEC1: -3.75260000e-07 + RelativePtEC2: -7.40500000e-09 + RelativeSample: -2.79220000e-03 + RelativeStatEC: -1.86030000e-06 + RelativeStatFSR: 2.07680000e-04 + SinglePionECAL: 6.53180000e-04 + SinglePionHCAL: 3.52500000e-04 + TimePtEta: 5.45130000e-03 + Lumi: 2.22580000e-03 + model: -4.63610000e-05 +- all uncorr. unc.: 3.62610000e-04 + AbsoluteMPFBias: 1.22840000e-03 + AbsoluteScale: 7.41180000e-04 + fake: 2.20230000e-07 + FlavorQCD: 2.47190000e-04 + Fragmentation: -2.77800000e-04 + JER: -4.36780000e-04 + miss: 7.77400000e-05 + PileUpDataMC: 6.51530000e-05 + PileUpPtBB: -4.37090000e-05 + PileUpPtEC1: -1.29450000e-07 + PileUpPtEC2: -1.65930000e-09 + PileUpPtRef: -4.61390000e-05 + Pref: -2.00360000e-04 + PU: 6.94470000e-06 + RelativeBal: 2.72660000e-04 + RelativeFSR: -2.53900000e-05 + RelativeJEREC1: -1.32460000e-06 + RelativeJEREC2: -1.72970000e-07 + RelativePtBB: 4.75900000e-04 + RelativePtEC1: -1.55810000e-07 + RelativePtEC2: -2.54060000e-09 + RelativeSample: -1.33640000e-03 + RelativeStatEC: -1.26730000e-06 + RelativeStatFSR: 8.85850000e-05 + SinglePionECAL: 3.03220000e-04 + SinglePionHCAL: 1.67110000e-04 + TimePtEta: 2.30740000e-03 + Lumi: 9.18310000e-04 + model: -9.28360000e-05 +- all uncorr. unc.: 1.82840000e-04 + AbsoluteMPFBias: 5.18950000e-04 + AbsoluteScale: 3.13720000e-04 + fake: 1.31570000e-07 + FlavorQCD: 2.72590000e-05 + Fragmentation: -1.23500000e-04 + JER: -1.75910000e-04 + miss: 3.41390000e-05 + PileUpDataMC: 2.33620000e-05 + PileUpPtBB: -2.12600000e-05 + PileUpPtEC1: -7.61510000e-08 + PileUpPtEC2: -3.92710000e-10 + PileUpPtRef: -1.37560000e-05 + Pref: -7.13860000e-05 + PU: 3.02280000e-06 + RelativeBal: 1.17950000e-04 + RelativeFSR: -3.81120000e-06 + RelativeJEREC1: -7.14590000e-07 + RelativeJEREC2: -1.01490000e-07 + RelativePtBB: 2.12300000e-04 + RelativePtEC1: -6.29430000e-08 + RelativePtEC2: -9.24770000e-10 + RelativeSample: -6.14790000e-04 + RelativeStatEC: -6.81260000e-07 + RelativeStatFSR: 3.67950000e-05 + SinglePionECAL: 1.34890000e-04 + SinglePionHCAL: 7.62220000e-05 + TimePtEta: 9.49180000e-04 + Lumi: 3.68720000e-04 + model: -5.78660000e-05 +- all uncorr. unc.: 1.00410000e-04 + AbsoluteMPFBias: 2.25120000e-04 + AbsoluteScale: 1.36410000e-04 + fake: 5.10670000e-08 + FlavorQCD: -2.26510000e-05 + Fragmentation: -5.54710000e-05 + JER: -7.50200000e-05 + miss: 1.51810000e-05 + PileUpDataMC: 8.77430000e-06 + PileUpPtBB: -1.01840000e-05 + PileUpPtEC1: -6.61450000e-08 + PileUpPtEC2: -2.28530000e-10 + PileUpPtRef: -2.78090000e-06 + Pref: -2.82910000e-05 + PU: 1.27900000e-06 + RelativeBal: 5.19140000e-05 + RelativeFSR: 6.58590000e-06 + RelativeJEREC1: -2.85160000e-07 + RelativeJEREC2: -3.88250000e-08 + RelativePtBB: 9.67840000e-05 + RelativePtEC1: -2.59460000e-08 + RelativePtEC2: -4.13270000e-10 + RelativeSample: -2.85680000e-04 + RelativeStatEC: -3.11030000e-07 + RelativeStatFSR: 1.56020000e-05 + SinglePionECAL: 6.13320000e-05 + SinglePionHCAL: 3.59480000e-05 + TimePtEta: 4.03610000e-04 + Lumi: 1.51100000e-04 + model: -4.03020000e-05 +- all uncorr. unc.: 5.73170000e-05 + AbsoluteMPFBias: 9.42330000e-05 + AbsoluteScale: 5.72520000e-05 + fake: 6.59750000e-09 + FlavorQCD: -2.07730000e-05 + Fragmentation: -2.36740000e-05 + JER: -3.21710000e-05 + miss: 6.43610000e-06 + PileUpDataMC: 3.26130000e-06 + PileUpPtBB: -4.56750000e-06 + PileUpPtEC1: -5.25190000e-08 + PileUpPtEC2: -2.04560000e-10 + PileUpPtRef: 5.93680000e-07 + Pref: -1.04580000e-05 + PU: 4.98910000e-07 + RelativeBal: 2.18660000e-05 + RelativeFSR: 4.65630000e-06 + RelativeJEREC1: -5.74560000e-08 + RelativeJEREC2: -4.69340000e-09 + RelativePtBB: 4.28610000e-05 + RelativePtEC1: -1.02640000e-08 + RelativePtEC2: -2.14500000e-10 + RelativeSample: -1.26340000e-04 + RelativeStatEC: -1.08680000e-07 + RelativeStatFSR: 6.35050000e-06 + SinglePionECAL: 2.67400000e-05 + SinglePionHCAL: 1.61470000e-05 + TimePtEta: 1.68580000e-04 + Lumi: 5.94350000e-05 + model: -2.09240000e-05 +- all uncorr. unc.: 3.30570000e-05 + AbsoluteMPFBias: 3.86060000e-05 + AbsoluteScale: 2.34020000e-05 + fake: -8.99380000e-09 + FlavorQCD: -1.25580000e-05 + Fragmentation: -9.67690000e-06 + JER: -1.38550000e-05 + miss: 2.61960000e-06 + PileUpDataMC: 1.20960000e-06 + PileUpPtBB: -1.94230000e-06 + PileUpPtEC1: -3.34580000e-08 + PileUpPtEC2: -1.60690000e-10 + PileUpPtRef: 1.00750000e-06 + Pref: -3.47280000e-06 + PU: 1.80920000e-07 + RelativeBal: 8.86770000e-06 + RelativeFSR: 2.58600000e-06 + RelativeJEREC1: 2.60730000e-08 + RelativeJEREC2: 7.09970000e-09 + RelativePtBB: 1.83290000e-05 + RelativePtEC1: -3.91950000e-09 + RelativePtEC2: -1.19180000e-10 + RelativeSample: -5.35770000e-05 + RelativeStatEC: -2.73850000e-08 + RelativeStatFSR: 2.49560000e-06 + SinglePionECAL: 1.11980000e-05 + SinglePionHCAL: 6.95720000e-06 + TimePtEta: 6.85870000e-05 + Lumi: 2.25720000e-05 + model: -1.05870000e-05 +- all uncorr. unc.: 1.87870000e-05 + AbsoluteMPFBias: 1.60930000e-05 + AbsoluteScale: 9.73510000e-06 + fake: -1.09320000e-08 + FlavorQCD: -6.77590000e-06 + Fragmentation: -3.95870000e-06 + JER: -6.20840000e-06 + miss: 1.06900000e-06 + PileUpDataMC: 4.76970000e-07 + PileUpPtBB: -8.20670000e-07 + PileUpPtEC1: -1.93620000e-08 + PileUpPtEC2: -1.10460000e-10 + PileUpPtRef: 7.49900000e-07 + Pref: -1.12710000e-06 + PU: 6.34620000e-08 + RelativeBal: 3.61380000e-06 + RelativeFSR: 1.31430000e-06 + RelativeJEREC1: 4.16090000e-08 + RelativeJEREC2: 8.46980000e-09 + RelativePtBB: 7.89840000e-06 + RelativePtEC1: -1.50750000e-09 + RelativePtEC2: -6.81420000e-11 + RelativeSample: -2.27570000e-05 + RelativeStatEC: 1.11190000e-08 + RelativeStatFSR: 9.87870000e-07 + SinglePionECAL: 4.70450000e-06 + SinglePionHCAL: 3.00270000e-06 + TimePtEta: 2.83490000e-05 + Lumi: 8.63570000e-06 + model: -4.67300000e-06 +- all uncorr. unc.: 1.04670000e-05 + AbsoluteMPFBias: 5.89070000e-06 + AbsoluteScale: 3.55540000e-06 + fake: -7.40690000e-09 + FlavorQCD: -2.94890000e-06 + Fragmentation: -1.40420000e-06 + JER: -2.48170000e-06 + miss: 3.78830000e-07 + PileUpDataMC: 1.85770000e-07 + PileUpPtBB: -2.99070000e-07 + PileUpPtEC1: -9.13730000e-09 + PileUpPtEC2: -5.96380000e-11 + PileUpPtRef: 3.94150000e-07 + Pref: -3.21890000e-07 + PU: 1.84650000e-08 + RelativeBal: 1.28090000e-06 + RelativeFSR: 5.50830000e-07 + RelativeJEREC1: 2.99030000e-08 + RelativeJEREC2: 5.70360000e-09 + RelativePtBB: 2.96820000e-06 + RelativePtEC1: -6.87530000e-10 + RelativePtEC2: -3.33650000e-11 + RelativeSample: -8.38590000e-06 + RelativeStatEC: 9.85910000e-09 + RelativeStatFSR: 3.40860000e-07 + SinglePionECAL: 1.71730000e-06 + SinglePionHCAL: 1.12420000e-06 + TimePtEta: 1.02930000e-05 + Lumi: 2.88010000e-06 + model: -2.57090000e-06 +- all uncorr. unc.: 5.66760000e-06 + AbsoluteMPFBias: 2.29910000e-06 + AbsoluteScale: 1.38430000e-06 + fake: -4.47780000e-09 + FlavorQCD: -1.29780000e-06 + Fragmentation: -5.25370000e-07 + JER: -1.06590000e-06 + miss: 1.41800000e-07 + PileUpDataMC: 8.06830000e-08 + PileUpPtBB: -1.14500000e-07 + PileUpPtEC1: -4.35890000e-09 + PileUpPtEC2: -3.16620000e-11 + PileUpPtRef: 1.98400000e-07 + Pref: -1.54970000e-07 + PU: 5.30860000e-09 + RelativeBal: 4.80080000e-07 + RelativeFSR: 2.35850000e-07 + RelativeJEREC1: 1.85450000e-08 + RelativeJEREC2: 3.43610000e-09 + RelativePtBB: 1.18230000e-06 + RelativePtEC1: -3.18960000e-10 + RelativePtEC2: -1.67980000e-11 + RelativeSample: -3.26110000e-06 + RelativeStatEC: 7.50590000e-09 + RelativeStatFSR: 1.24610000e-07 + SinglePionECAL: 6.62450000e-07 + SinglePionHCAL: 4.44050000e-07 + TimePtEta: 3.98690000e-06 + Lumi: 1.01780000e-06 + model: -7.33440000e-07 +- all uncorr. unc.: 2.95920000e-06 + AbsoluteMPFBias: 7.80610000e-07 + AbsoluteScale: 4.68810000e-07 + fake: -2.12760000e-09 + FlavorQCD: -4.79110000e-07 + Fragmentation: -1.69480000e-07 + JER: -3.98750000e-07 + miss: 4.58250000e-08 + PileUpDataMC: 3.12060000e-08 + PileUpPtBB: -3.76750000e-08 + PileUpPtEC1: -1.73730000e-09 + PileUpPtEC2: -1.37690000e-11 + PileUpPtRef: 8.13480000e-08 + Pref: -3.79490000e-08 + PU: 1.17490000e-09 + RelativeBal: 1.55440000e-07 + RelativeFSR: 8.51700000e-08 + RelativeJEREC1: 8.93950000e-09 + RelativeJEREC2: 1.62880000e-09 + RelativePtBB: 4.07570000e-07 + RelativePtEC1: -1.22520000e-10 + RelativePtEC2: -7.09430000e-12 + RelativeSample: -1.09370000e-06 + RelativeStatEC: 3.98040000e-09 + RelativeStatFSR: 3.94240000e-08 + SinglePionECAL: 2.20660000e-07 + SinglePionHCAL: 1.51210000e-07 + TimePtEta: 1.34400000e-06 + Lumi: 3.11320000e-07 + model: -5.62810000e-07 +- all uncorr. unc.: 1.36350000e-06 + AbsoluteMPFBias: 1.84420000e-07 + AbsoluteScale: 1.10480000e-07 + fake: -6.57290000e-10 + FlavorQCD: -1.19880000e-07 + Fragmentation: -3.77790000e-08 + JER: -1.03450000e-07 + miss: 1.02460000e-08 + PileUpDataMC: 8.45440000e-09 + PileUpPtBB: -8.54390000e-09 + PileUpPtEC1: -4.66780000e-10 + PileUpPtEC2: -3.97820000e-12 + PileUpPtRef: 2.21840000e-08 + Pref: -4.28780000e-10 + PU: 2.46550000e-10 + RelativeBal: 3.48310000e-08 + RelativeFSR: 2.09090000e-08 + RelativeJEREC1: 2.78770000e-09 + RelativeJEREC2: 5.02300000e-10 + RelativePtBB: 9.73580000e-08 + RelativePtEC1: -3.16150000e-11 + RelativePtEC2: -2.01730000e-12 + RelativeSample: -2.53470000e-07 + RelativeStatEC: 1.31140000e-09 + RelativeStatFSR: 8.64650000e-09 + SinglePionECAL: 5.08470000e-08 + SinglePionHCAL: 3.55620000e-08 + TimePtEta: 3.15440000e-07 + Lumi: 6.60290000e-08 + model: -8.47590000e-08 - all uncorr. unc.: 45.355 AbsoluteMPFBias: 95.815 AbsoluteScale: 53.627 @@ -1443,7 +1443,7 @@ bins: - all uncorr. unc.: 10.997 AbsoluteMPFBias: 20.552 AbsoluteScale: 12.995 - fake: -0.027672 + fake: -2.76720000e-02 FlavorQCD: 53.004 Fragmentation: 3.3754 JER: -34.101 @@ -1451,17 +1451,17 @@ bins: PileUpDataMC: 8.0215 PileUpPtBB: 3.0931 PileUpPtEC1: 1.2521 - PileUpPtEC2: -0.0032061 + PileUpPtEC2: -3.20610000e-03 PileUpPtRef: 2.7301 Pref: -6.607 PU: -0.50701 RelativeBal: -9.5099 RelativeFSR: -1.2768 RelativeJEREC1: 5.0553 - RelativeJEREC2: -0.041673 + RelativeJEREC2: -4.16730000e-02 RelativePtBB: -1.5457 - RelativePtEC1: -0.087339 - RelativePtEC2: -0.0014983 + RelativePtEC1: -8.73390000e-02 + RelativePtEC2: -1.49830000e-03 RelativeSample: 27.664 RelativeStatEC: 0.9645 RelativeStatFSR: 1.7675 @@ -1481,17 +1481,17 @@ bins: PileUpDataMC: 1.9065 PileUpPtBB: 0.263 PileUpPtEC1: 0.081494 - PileUpPtEC2: -0.00072056 + PileUpPtEC2: -7.20560000e-04 PileUpPtRef: 0.6253 Pref: -2.6749 - PU: -0.095144 + PU: -9.51440000e-02 RelativeBal: -1.5125 RelativeFSR: 0.19711 RelativeJEREC1: 1.3689 RelativeJEREC2: 0.010624 RelativePtBB: 0.17932 RelativePtEC1: 0.010148 - RelativePtEC2: -0.00017262 + RelativePtEC2: -1.72620000e-04 RelativeSample: 4.2378 RelativeStatEC: 0.4163 RelativeStatFSR: 0.47852 @@ -1503,59 +1503,59 @@ bins: - all uncorr. unc.: 0.91682 AbsoluteMPFBias: 1.9206 AbsoluteScale: 1.1842 - fake: 0.0023591 + fake: 2.35910000e-03 FlavorQCD: 3.714 Fragmentation: 0.049641 JER: -2.1984 miss: 0.048391 PileUpDataMC: 0.45792 - PileUpPtBB: -0.039459 + PileUpPtBB: -3.94590000e-02 PileUpPtEC1: -0.02814 - PileUpPtEC2: -0.00016969 + PileUpPtEC2: -1.69690000e-04 PileUpPtRef: 0.13388 Pref: -0.93372 - PU: -0.016278 - RelativeBal: -0.094342 + PU: -1.62780000e-02 + RelativeBal: -9.43420000e-02 RelativeFSR: 0.12482 RelativeJEREC1: 0.38009 - RelativeJEREC2: 0.0035707 + RelativeJEREC2: 3.57070000e-03 RelativePtBB: 0.14796 RelativePtEC1: 0.010913 - RelativePtEC2: -9.6884e-06 + RelativePtEC2: -9.68840000e-06 RelativeSample: 0.24292 RelativeStatEC: 0.15894 RelativeStatFSR: 0.1462 - SinglePionECAL: -0.090229 - SinglePionHCAL: -0.028994 + SinglePionECAL: -9.02290000e-02 + SinglePionHCAL: -2.89940000e-02 TimePtEta: 3.6506 Lumi: 1.7755 model: 0.60454 - all uncorr. unc.: 0.29716 AbsoluteMPFBias: 0.64836 AbsoluteScale: 0.3915 - fake: 0.00041866 + fake: 4.18660000e-04 FlavorQCD: 1.0431 - Fragmentation: -0.015788 + Fragmentation: -1.57880000e-02 JER: -0.70196 miss: 0.017662 PileUpDataMC: 0.11713 PileUpPtBB: -0.0389 - PileUpPtEC1: -0.020082 - PileUpPtEC2: -4.2526e-05 + PileUpPtEC1: -2.00820000e-02 + PileUpPtEC2: -4.25260000e-05 PileUpPtRef: 0.025385 Pref: -0.32764 - PU: -0.0017727 + PU: -1.77270000e-03 RelativeBal: 0.083593 RelativeFSR: 0.060804 RelativeJEREC1: 0.11074 - RelativeJEREC2: 0.00064975 + RelativeJEREC2: 6.49750000e-04 RelativePtBB: 0.076581 - RelativePtEC1: 0.0059431 - RelativePtEC2: 4.3413e-06 + RelativePtEC1: 5.94310000e-03 + RelativePtEC2: 4.34130000e-06 RelativeSample: -0.23601 RelativeStatEC: 0.058044 RelativeStatFSR: 0.051031 - SinglePionECAL: 0.0075685 + SinglePionECAL: 7.56850000e-03 SinglePionHCAL: 0.010468 TimePtEta: 1.2433 Lumi: 0.58335 @@ -1563,423 +1563,423 @@ bins: - all uncorr. unc.: 0.091159 AbsoluteMPFBias: 0.22753 AbsoluteScale: 0.13577 - fake: 1.0837e-05 + fake: 1.08370000e-05 FlavorQCD: 0.3012 - Fragmentation: -0.015573 + Fragmentation: -1.55730000e-02 JER: -0.23691 - miss: 0.0072562 + miss: 7.25620000e-03 PileUpDataMC: 0.030852 - PileUpPtBB: -0.019342 - PileUpPtEC1: -0.0089329 - PileUpPtEC2: -1.0411e-05 - PileUpPtRef: 0.0025955 + PileUpPtBB: -1.93420000e-02 + PileUpPtEC1: -8.93290000e-03 + PileUpPtEC2: -1.04110000e-05 + PileUpPtRef: 2.59550000e-03 Pref: -0.10983 - PU: 0.00096086 + PU: 9.60860000e-04 RelativeBal: 0.062952 RelativeFSR: 0.027126 RelativeJEREC1: 0.033268 - RelativeJEREC2: 2.5399e-05 + RelativeJEREC2: 2.53990000e-05 RelativePtBB: 0.037953 - RelativePtEC1: 0.0027849 - RelativePtEC2: 2.6251e-06 + RelativePtEC1: 2.78490000e-03 + RelativePtEC2: 2.62510000e-06 RelativeSample: -0.17746 RelativeStatEC: 0.021409 RelativeStatFSR: 0.01846 SinglePionECAL: 0.014373 - SinglePionHCAL: 0.0094942 + SinglePionHCAL: 9.49420000e-03 TimePtEta: 0.44051 Lumi: 0.20019 model: 0.058844 - all uncorr. unc.: 0.032317 AbsoluteMPFBias: 0.084484 AbsoluteScale: 0.050351 - fake: -2.7569e-05 + fake: -2.75690000e-05 FlavorQCD: 0.091939 - Fragmentation: -0.0090862 - JER: -0.084194 - miss: 0.0031615 - PileUpDataMC: 0.0088148 - PileUpPtBB: -0.0083632 + Fragmentation: -9.08620000e-03 + JER: -8.41940000e-02 + miss: 3.16150000e-03 + PileUpDataMC: 8.81480000e-03 + PileUpPtBB: -8.36320000e-03 PileUpPtEC1: -0.00349 - PileUpPtEC2: -2.35e-06 - PileUpPtRef: -0.0010142 - Pref: -0.032667 - PU: 0.00076345 + PileUpPtEC2: -2.35000000e-06 + PileUpPtRef: -1.01420000e-03 + Pref: -3.26670000e-02 + PU: 7.63450000e-04 RelativeBal: 0.035064 RelativeFSR: 0.01218 RelativeJEREC1: 0.011003 - RelativeJEREC2: -3.8268e-05 + RelativeJEREC2: -3.82680000e-05 RelativePtBB: 0.017914 - RelativePtEC1: 0.0012613 - RelativePtEC2: 1.0346e-06 - RelativeSample: -0.098092 - RelativeStatEC: 0.0083335 - RelativeStatFSR: 0.0070048 - SinglePionECAL: 0.0092019 - SinglePionHCAL: 0.0052311 + RelativePtEC1: 1.26130000e-03 + RelativePtEC2: 1.03460000e-06 + RelativeSample: -9.80920000e-02 + RelativeStatEC: 8.33350000e-03 + RelativeStatFSR: 7.00480000e-03 + SinglePionECAL: 9.20190000e-03 + SinglePionHCAL: 5.23110000e-03 TimePtEta: 0.1642 Lumi: 0.072478 model: 0.011521 - all uncorr. unc.: 0.012936 AbsoluteMPFBias: 0.032344 AbsoluteScale: 0.01938 - fake: -1.3552e-05 + fake: -1.35520000e-05 FlavorQCD: 0.029044 - Fragmentation: -0.0045464 - JER: -0.030403 - miss: 0.0013771 - PileUpDataMC: 0.0026929 - PileUpPtBB: -0.0033068 - PileUpPtEC1: -0.0012384 - PileUpPtEC2: -4.8716e-07 - PileUpPtRef: -0.00095182 - Pref: -0.0097246 - PU: 0.00042547 + Fragmentation: -4.54640000e-03 + JER: -3.04030000e-02 + miss: 1.37710000e-03 + PileUpDataMC: 2.69290000e-03 + PileUpPtBB: -3.30680000e-03 + PileUpPtEC1: -1.23840000e-03 + PileUpPtEC2: -4.87160000e-07 + PileUpPtRef: -9.51820000e-04 + Pref: -9.72460000e-03 + PU: 4.25470000e-04 RelativeBal: 0.017413 - RelativeFSR: 0.0052976 - RelativeJEREC1: 0.0037127 - RelativeJEREC2: -1.9526e-05 - RelativePtBB: 0.0081098 - RelativePtEC1: 0.00055298 - RelativePtEC2: 3.3974e-07 - RelativeSample: -0.048458 - RelativeStatEC: 0.0033528 - RelativeStatFSR: 0.0026966 - SinglePionECAL: 0.0047796 + RelativeFSR: 5.29760000e-03 + RelativeJEREC1: 3.71270000e-03 + RelativeJEREC2: -1.95260000e-05 + RelativePtBB: 8.10980000e-03 + RelativePtEC1: 5.52980000e-04 + RelativePtEC2: 3.39740000e-07 + RelativeSample: -4.84580000e-02 + RelativeStatEC: 3.35280000e-03 + RelativeStatFSR: 2.69660000e-03 + SinglePionECAL: 4.77960000e-03 SinglePionHCAL: 0.002543 TimePtEta: 0.062233 Lumi: 0.026751 - model: 0.0016197 -- all uncorr. unc.: 0.0042342 + model: 1.61970000e-03 +- all uncorr. unc.: 4.23420000e-03 AbsoluteMPFBias: 0.012975 - AbsoluteScale: 0.0078505 - fake: -3.7496e-06 - FlavorQCD: 0.0092846 - Fragmentation: -0.002189 - JER: -0.011479 - miss: 0.0006129 - PileUpDataMC: 0.00087112 - PileUpPtBB: -0.001223 - PileUpPtEC1: -0.0004081 - PileUpPtEC2: 1.5393e-07 - PileUpPtRef: -0.00052716 - Pref: -0.0031179 - PU: 0.00021656 - RelativeBal: 0.0085111 - RelativeFSR: 0.0022707 + AbsoluteScale: 7.85050000e-03 + fake: -3.74960000e-06 + FlavorQCD: 9.28460000e-03 + Fragmentation: -2.18900000e-03 + JER: -1.14790000e-02 + miss: 6.12900000e-04 + PileUpDataMC: 8.71120000e-04 + PileUpPtBB: -1.22300000e-03 + PileUpPtEC1: -4.08100000e-04 + PileUpPtEC2: 1.53930000e-07 + PileUpPtRef: -5.27160000e-04 + Pref: -3.11790000e-03 + PU: 2.16560000e-04 + RelativeBal: 8.51110000e-03 + RelativeFSR: 2.27070000e-03 RelativeJEREC1: 0.001304 RelativeJEREC2: -5.5e-06 - RelativePtBB: 0.0037271 - RelativePtEC1: 0.00024517 - RelativePtEC2: 1.0013e-07 + RelativePtBB: 3.72710000e-03 + RelativePtEC1: 2.45170000e-04 + RelativePtEC2: 1.00130000e-07 RelativeSample: -0.02356 - RelativeStatEC: 0.0014002 - RelativeStatFSR: 0.0010803 - SinglePionECAL: 0.0023487 - SinglePionHCAL: 0.0012591 + RelativeStatEC: 1.40020000e-03 + RelativeStatFSR: 1.08030000e-03 + SinglePionECAL: 2.34870000e-03 + SinglePionHCAL: 1.25910000e-03 TimePtEta: 0.024591 Lumi: 0.010314 - model: -0.00091574 -- all uncorr. unc.: 0.0017149 - AbsoluteMPFBias: 0.0051333 - AbsoluteScale: 0.0031303 - fake: -1.8191e-07 - FlavorQCD: 0.0027516 - Fragmentation: -0.000982 - JER: -0.0042739 - miss: 0.00026157 - PileUpDataMC: 0.00028413 - PileUpPtBB: -0.0003858 - PileUpPtEC1: -0.00011255 - PileUpPtEC2: 7.7437e-08 - PileUpPtRef: -0.00023971 - Pref: -0.00096932 - PU: 0.00010052 - RelativeBal: 0.0039701 - RelativeFSR: 0.00094537 - RelativeJEREC1: 0.00044969 - RelativeJEREC2: -2.988e-07 - RelativePtBB: 0.0016546 - RelativePtEC1: 0.0001039 - RelativePtEC2: 2.4431e-08 - RelativeSample: -0.010957 - RelativeStatEC: 0.00056813 - RelativeStatFSR: 0.00042171 - SinglePionECAL: 0.0010673 - SinglePionHCAL: 0.00057938 - TimePtEta: 0.0094807 - Lumi: 0.0038865 - model: -0.00079794 -- all uncorr. unc.: 0.00075599 - AbsoluteMPFBias: 0.0021363 - AbsoluteScale: 0.0013084 - fake: 4.7282e-07 - FlavorQCD: 0.00081573 - Fragmentation: -0.00045357 - JER: -0.0016956 - miss: 0.00011417 - PileUpDataMC: 0.0001046 - PileUpPtBB: -9.8708e-05 - PileUpPtEC1: -2.2752e-05 - PileUpPtEC2: 5.4407e-08 - PileUpPtRef: -9.8434e-05 - Pref: -0.00034614 - PU: 4.6409e-05 - RelativeBal: 0.0019134 - RelativeFSR: 0.00040624 - RelativeJEREC1: 0.0001658 - RelativeJEREC2: 6.7668e-07 - RelativePtBB: 0.00076746 - RelativePtEC1: 4.4971e-05 - RelativePtEC2: 4.9341e-09 - RelativeSample: -0.0052018 - RelativeStatEC: 0.00023775 - RelativeStatFSR: 0.00017056 - SinglePionECAL: 0.00048938 - SinglePionHCAL: 0.00026762 + model: -9.15740000e-04 +- all uncorr. unc.: 1.71490000e-03 + AbsoluteMPFBias: 5.13330000e-03 + AbsoluteScale: 3.13030000e-03 + fake: -1.81910000e-07 + FlavorQCD: 2.75160000e-03 + Fragmentation: -9.82000000e-04 + JER: -4.27390000e-03 + miss: 2.61570000e-04 + PileUpDataMC: 2.84130000e-04 + PileUpPtBB: -3.85800000e-04 + PileUpPtEC1: -1.12550000e-04 + PileUpPtEC2: 7.74370000e-08 + PileUpPtRef: -2.39710000e-04 + Pref: -9.69320000e-04 + PU: 1.00520000e-04 + RelativeBal: 3.97010000e-03 + RelativeFSR: 9.45370000e-04 + RelativeJEREC1: 4.49690000e-04 + RelativeJEREC2: -2.98800000e-07 + RelativePtBB: 1.65460000e-03 + RelativePtEC1: 1.03900000e-04 + RelativePtEC2: 2.44310000e-08 + RelativeSample: -1.09570000e-02 + RelativeStatEC: 5.68130000e-04 + RelativeStatFSR: 4.21710000e-04 + SinglePionECAL: 1.06730000e-03 + SinglePionHCAL: 5.79380000e-04 + TimePtEta: 9.48070000e-03 + Lumi: 3.88650000e-03 + model: -7.97940000e-04 +- all uncorr. unc.: 7.55990000e-04 + AbsoluteMPFBias: 2.13630000e-03 + AbsoluteScale: 1.30840000e-03 + fake: 4.72820000e-07 + FlavorQCD: 8.15730000e-04 + Fragmentation: -4.53570000e-04 + JER: -1.69560000e-03 + miss: 1.14170000e-04 + PileUpDataMC: 1.04600000e-04 + PileUpPtBB: -9.87080000e-05 + PileUpPtEC1: -2.27520000e-05 + PileUpPtEC2: 5.44070000e-08 + PileUpPtRef: -9.84340000e-05 + Pref: -3.46140000e-04 + PU: 4.64090000e-05 + RelativeBal: 1.91340000e-03 + RelativeFSR: 4.06240000e-04 + RelativeJEREC1: 1.65800000e-04 + RelativeJEREC2: 6.76680000e-07 + RelativePtBB: 7.67460000e-04 + RelativePtEC1: 4.49710000e-05 + RelativePtEC2: 4.93410000e-09 + RelativeSample: -5.20180000e-03 + RelativeStatEC: 2.37750000e-04 + RelativeStatFSR: 1.70560000e-04 + SinglePionECAL: 4.89380000e-04 + SinglePionHCAL: 2.67620000e-04 TimePtEta: 0.003792 - Lumi: 0.0015216 - model: -0.00042656 -- all uncorr. unc.: 0.00034751 - AbsoluteMPFBias: 0.00084701 - AbsoluteScale: 0.00051838 - fake: 3.167e-07 - FlavorQCD: 0.00019573 - Fragmentation: -0.00019337 - JER: -0.00065615 - miss: 4.6532e-05 - PileUpDataMC: 3.6587e-05 - PileUpPtBB: -8.1538e-06 - PileUpPtEC1: 1.7744e-06 - PileUpPtEC2: 2.8687e-08 - PileUpPtRef: -3.3067e-05 - Pref: -0.00010743 - PU: 1.9667e-05 - RelativeBal: 0.00085529 - RelativeFSR: 0.00016302 - RelativeJEREC1: 5.6385e-05 - RelativeJEREC2: 4.599e-07 - RelativePtBB: 0.00033438 - RelativePtEC1: 1.8152e-05 - RelativePtEC2: 6.6654e-10 - RelativeSample: -0.0023081 - RelativeStatEC: 9.2427e-05 - RelativeStatFSR: 6.5795e-05 - SinglePionECAL: 0.00020791 + Lumi: 1.52160000e-03 + model: -4.26560000e-04 +- all uncorr. unc.: 3.47510000e-04 + AbsoluteMPFBias: 8.47010000e-04 + AbsoluteScale: 5.18380000e-04 + fake: 3.16700000e-07 + FlavorQCD: 1.95730000e-04 + Fragmentation: -1.93370000e-04 + JER: -6.56150000e-04 + miss: 4.65320000e-05 + PileUpDataMC: 3.65870000e-05 + PileUpPtBB: -8.15380000e-06 + PileUpPtEC1: 1.77440000e-06 + PileUpPtEC2: 2.86870000e-08 + PileUpPtRef: -3.30670000e-05 + Pref: -1.07430000e-04 + PU: 1.96670000e-05 + RelativeBal: 8.55290000e-04 + RelativeFSR: 1.63020000e-04 + RelativeJEREC1: 5.63850000e-05 + RelativeJEREC2: 4.59900000e-07 + RelativePtBB: 3.34380000e-04 + RelativePtEC1: 1.81520000e-05 + RelativePtEC2: 6.66540000e-10 + RelativeSample: -2.30810000e-03 + RelativeStatEC: 9.24270000e-05 + RelativeStatFSR: 6.57950000e-05 + SinglePionECAL: 2.07910000e-04 SinglePionHCAL: 0.000114 - TimePtEta: 0.0014303 - Lumi: 0.00056246 - model: -0.00021984 -- all uncorr. unc.: 0.00017021 - AbsoluteMPFBias: 0.00034724 - AbsoluteScale: 0.0002107 - fake: 1.1752e-07 - FlavorQCD: 2.5718e-05 - Fragmentation: -8.3101e-05 - JER: -0.00026267 - miss: 1.9314e-05 - PileUpDataMC: 1.2582e-05 - PileUpPtBB: 1.1585e-05 - PileUpPtEC1: 4.7098e-06 - PileUpPtEC2: 1.403e-08 - PileUpPtRef: -9.0551e-06 - Pref: -3.922e-05 - PU: 8.3801e-06 - RelativeBal: 0.00038681 - RelativeFSR: 6.6942e-05 - RelativeJEREC1: 1.854e-05 - RelativeJEREC2: 1.7232e-07 - RelativePtBB: 0.00014821 - RelativePtEC1: 7.4444e-06 - RelativePtEC2: 3.026e-10 - RelativeSample: -0.0010442 - RelativeStatEC: 3.6931e-05 - RelativeStatFSR: 2.6453e-05 - SinglePionECAL: 8.8985e-05 - SinglePionHCAL: 5.1078e-05 - TimePtEta: 0.00055506 - Lumi: 0.00021325 - model: -8.3483e-05 + TimePtEta: 1.43030000e-03 + Lumi: 5.62460000e-04 + model: -2.19840000e-04 +- all uncorr. unc.: 1.70210000e-04 + AbsoluteMPFBias: 3.47240000e-04 + AbsoluteScale: 2.10700000e-04 + fake: 1.17520000e-07 + FlavorQCD: 2.57180000e-05 + Fragmentation: -8.31010000e-05 + JER: -2.62670000e-04 + miss: 1.93140000e-05 + PileUpDataMC: 1.25820000e-05 + PileUpPtBB: 1.15850000e-05 + PileUpPtEC1: 4.70980000e-06 + PileUpPtEC2: 1.40300000e-08 + PileUpPtRef: -9.05510000e-06 + Pref: -3.92200000e-05 + PU: 8.38010000e-06 + RelativeBal: 3.86810000e-04 + RelativeFSR: 6.69420000e-05 + RelativeJEREC1: 1.85400000e-05 + RelativeJEREC2: 1.72320000e-07 + RelativePtBB: 1.48210000e-04 + RelativePtEC1: 7.44440000e-06 + RelativePtEC2: 3.02600000e-10 + RelativeSample: -1.04420000e-03 + RelativeStatEC: 3.69310000e-05 + RelativeStatFSR: 2.64530000e-05 + SinglePionECAL: 8.89850000e-05 + SinglePionHCAL: 5.10780000e-05 + TimePtEta: 5.55060000e-04 + Lumi: 2.13250000e-04 + model: -8.34830000e-05 - all uncorr. unc.: 8.82e-05 - AbsoluteMPFBias: 0.00013139 - AbsoluteScale: 7.8856e-05 - fake: 7.9727e-09 - FlavorQCD: -1.2318e-05 - Fragmentation: -3.2302e-05 - JER: -0.00010185 - miss: 7.3186e-06 - PileUpDataMC: 3.5304e-06 - PileUpPtBB: 1.0495e-05 - PileUpPtEC1: 3.3045e-06 - PileUpPtEC2: 5.9408e-09 - PileUpPtRef: -1.1478e-06 - Pref: -1.301e-05 - PU: 3.2252e-06 - RelativeBal: 0.00015851 - RelativeFSR: 2.7056e-05 - RelativeJEREC1: 5.3279e-06 - RelativeJEREC2: 1.2606e-08 - RelativePtBB: 6.0694e-05 - RelativePtEC1: 2.7781e-06 - RelativePtEC2: 1.8184e-10 - RelativeSample: -0.00043118 - RelativeStatEC: 1.3479e-05 - RelativeStatFSR: 9.7504e-06 - SinglePionECAL: 3.4439e-05 - SinglePionHCAL: 2.1964e-05 - TimePtEta: 0.00020363 - Lumi: 7.4157e-05 - model: -3.0795e-05 -- all uncorr. unc.: 4.6635e-05 - AbsoluteMPFBias: 5.0498e-05 - AbsoluteScale: 2.9649e-05 - fake: -2.4145e-08 - FlavorQCD: -1.3455e-05 - Fragmentation: -1.2422e-05 - JER: -4.0871e-05 - miss: 2.7683e-06 - PileUpDataMC: 1.1435e-06 - PileUpPtBB: 6.4202e-06 - PileUpPtEC1: 1.7887e-06 - PileUpPtEC2: 2.4251e-09 - PileUpPtRef: 6.9439e-07 - Pref: -3.8814e-06 - PU: 1.227e-06 - RelativeBal: 6.4802e-05 - RelativeFSR: 1.1297e-05 - RelativeJEREC1: 1.5988e-06 - RelativeJEREC2: -3.464e-08 - RelativePtBB: 2.5003e-05 - RelativePtEC1: 1.0304e-06 - RelativePtEC2: 1.5148e-10 - RelativeSample: -0.0001774 - RelativeStatEC: 4.9037e-06 - RelativeStatFSR: 3.5924e-06 - SinglePionECAL: 1.3185e-05 - SinglePionHCAL: 9.5037e-06 - TimePtEta: 7.5517e-05 - Lumi: 2.5799e-05 - model: -7.2003e-06 -- all uncorr. unc.: 2.4573e-05 - AbsoluteMPFBias: 1.7231e-05 - AbsoluteScale: 9.7848e-06 - fake: -2.1628e-08 - FlavorQCD: -7.6437e-06 - Fragmentation: -4.1491e-06 - JER: -1.476e-05 - miss: 9.1751e-07 - PileUpDataMC: -3.3721e-07 - PileUpPtBB: 3.0011e-06 - PileUpPtEC1: 7.5721e-07 - PileUpPtEC2: 8.458e-10 - PileUpPtRef: 6.5027e-07 - Pref: -1.212e-06 - PU: 4.0528e-07 - RelativeBal: 2.3412e-05 - RelativeFSR: 4.2383e-06 - RelativeJEREC1: -4.118e-07 - RelativeJEREC2: -3.1324e-08 - RelativePtBB: 9.0291e-06 - RelativePtEC1: 3.3312e-07 - RelativePtEC2: 9.7424e-11 - RelativeSample: -6.3755e-05 - RelativeStatEC: 1.5588e-06 - RelativeStatFSR: 1.1589e-06 - SinglePionECAL: 4.3842e-06 - SinglePionHCAL: 3.6096e-06 - TimePtEta: 2.4795e-05 - Lumi: 7.8659e-06 - model: -1.3823e-06 -- all uncorr. unc.: 1.2507e-05 - AbsoluteMPFBias: 5.4669e-06 - AbsoluteScale: 2.9821e-06 - fake: -1.2189e-08 - FlavorQCD: -3.3884e-06 - Fragmentation: -1.2693e-06 - JER: -5.0055e-06 - miss: 2.8096e-07 - PileUpDataMC: -1.0684e-07 - PileUpPtBB: 1.1955e-06 - PileUpPtEC1: 2.7712e-07 - PileUpPtEC2: 2.6716e-10 - PileUpPtRef: 3.4145e-07 - Pref: -3.6891e-07 - PU: 1.2257e-07 - RelativeBal: 7.7741e-06 - RelativeFSR: 1.4901e-06 - RelativeJEREC1: -1.4349e-07 - RelativeJEREC2: -1.7715e-08 - RelativePtBB: 3.0054e-06 - RelativePtEC1: 9.8921e-08 - RelativePtEC2: 4.8554e-11 - RelativeSample: -2.1076e-05 + AbsoluteMPFBias: 1.31390000e-04 + AbsoluteScale: 7.88560000e-05 + fake: 7.97270000e-09 + FlavorQCD: -1.23180000e-05 + Fragmentation: -3.23020000e-05 + JER: -1.01850000e-04 + miss: 7.31860000e-06 + PileUpDataMC: 3.53040000e-06 + PileUpPtBB: 1.04950000e-05 + PileUpPtEC1: 3.30450000e-06 + PileUpPtEC2: 5.94080000e-09 + PileUpPtRef: -1.14780000e-06 + Pref: -1.30100000e-05 + PU: 3.22520000e-06 + RelativeBal: 1.58510000e-04 + RelativeFSR: 2.70560000e-05 + RelativeJEREC1: 5.32790000e-06 + RelativeJEREC2: 1.26060000e-08 + RelativePtBB: 6.06940000e-05 + RelativePtEC1: 2.77810000e-06 + RelativePtEC2: 1.81840000e-10 + RelativeSample: -4.31180000e-04 + RelativeStatEC: 1.34790000e-05 + RelativeStatFSR: 9.75040000e-06 + SinglePionECAL: 3.44390000e-05 + SinglePionHCAL: 2.19640000e-05 + TimePtEta: 2.03630000e-04 + Lumi: 7.41570000e-05 + model: -3.07950000e-05 +- all uncorr. unc.: 4.66350000e-05 + AbsoluteMPFBias: 5.04980000e-05 + AbsoluteScale: 2.96490000e-05 + fake: -2.41450000e-08 + FlavorQCD: -1.34550000e-05 + Fragmentation: -1.24220000e-05 + JER: -4.08710000e-05 + miss: 2.76830000e-06 + PileUpDataMC: 1.14350000e-06 + PileUpPtBB: 6.42020000e-06 + PileUpPtEC1: 1.78870000e-06 + PileUpPtEC2: 2.42510000e-09 + PileUpPtRef: 6.94390000e-07 + Pref: -3.88140000e-06 + PU: 1.22700000e-06 + RelativeBal: 6.48020000e-05 + RelativeFSR: 1.12970000e-05 + RelativeJEREC1: 1.59880000e-06 + RelativeJEREC2: -3.46400000e-08 + RelativePtBB: 2.50030000e-05 + RelativePtEC1: 1.03040000e-06 + RelativePtEC2: 1.51480000e-10 + RelativeSample: -1.77400000e-04 + RelativeStatEC: 4.90370000e-06 + RelativeStatFSR: 3.59240000e-06 + SinglePionECAL: 1.31850000e-05 + SinglePionHCAL: 9.50370000e-06 + TimePtEta: 7.55170000e-05 + Lumi: 2.57990000e-05 + model: -7.20030000e-06 +- all uncorr. unc.: 2.45730000e-05 + AbsoluteMPFBias: 1.72310000e-05 + AbsoluteScale: 9.78480000e-06 + fake: -2.16280000e-08 + FlavorQCD: -7.64370000e-06 + Fragmentation: -4.14910000e-06 + JER: -1.47600000e-05 + miss: 9.17510000e-07 + PileUpDataMC: -3.37210000e-07 + PileUpPtBB: 3.00110000e-06 + PileUpPtEC1: 7.57210000e-07 + PileUpPtEC2: 8.45800000e-10 + PileUpPtRef: 6.50270000e-07 + Pref: -1.21200000e-06 + PU: 4.05280000e-07 + RelativeBal: 2.34120000e-05 + RelativeFSR: 4.23830000e-06 + RelativeJEREC1: -4.11800000e-07 + RelativeJEREC2: -3.13240000e-08 + RelativePtBB: 9.02910000e-06 + RelativePtEC1: 3.33120000e-07 + RelativePtEC2: 9.74240000e-11 + RelativeSample: -6.37550000e-05 + RelativeStatEC: 1.55880000e-06 + RelativeStatFSR: 1.15890000e-06 + SinglePionECAL: 4.38420000e-06 + SinglePionHCAL: 3.60960000e-06 + TimePtEta: 2.47950000e-05 + Lumi: 7.86590000e-06 + model: -1.38230000e-06 +- all uncorr. unc.: 1.25070000e-05 + AbsoluteMPFBias: 5.46690000e-06 + AbsoluteScale: 2.98210000e-06 + fake: -1.21890000e-08 + FlavorQCD: -3.38840000e-06 + Fragmentation: -1.26930000e-06 + JER: -5.00550000e-06 + miss: 2.80960000e-07 + PileUpDataMC: -1.06840000e-07 + PileUpPtBB: 1.19550000e-06 + PileUpPtEC1: 2.77120000e-07 + PileUpPtEC2: 2.67160000e-10 + PileUpPtRef: 3.41450000e-07 + Pref: -3.68910000e-07 + PU: 1.22570000e-07 + RelativeBal: 7.77410000e-06 + RelativeFSR: 1.49010000e-06 + RelativeJEREC1: -1.43490000e-07 + RelativeJEREC2: -1.77150000e-08 + RelativePtBB: 3.00540000e-06 + RelativePtEC1: 9.89210000e-08 + RelativePtEC2: 4.85540000e-11 + RelativeSample: -2.10760000e-05 RelativeStatEC: 4.56e-07 - RelativeStatFSR: 3.4457e-07 - SinglePionECAL: 1.3352e-06 - SinglePionHCAL: 1.2623e-06 - TimePtEta: 7.5821e-06 - Lumi: 2.2127e-06 - model: 3.8786e-07 -- all uncorr. unc.: 6.2512e-06 - AbsoluteMPFBias: 1.5334e-06 - AbsoluteScale: 7.9916e-07 - fake: -5.1418e-09 - FlavorQCD: -1.2134e-06 - Fragmentation: -3.3921e-07 - JER: -1.5067e-06 - miss: 7.5808e-08 - PileUpDataMC: -6.0635e-08 - PileUpPtBB: 3.981e-07 - PileUpPtEC1: 8.5457e-08 - PileUpPtEC2: 7.3136e-11 - PileUpPtRef: 1.3316e-07 - Pref: -1.0239e-07 - PU: 3.2379e-08 - RelativeBal: 2.2598e-06 - RelativeFSR: 4.6386e-07 - RelativeJEREC1: -7.7224e-08 - RelativeJEREC2: -7.4871e-09 - RelativePtBB: 8.7752e-07 - RelativePtEC1: 2.5719e-08 - RelativePtEC2: 1.908e-11 - RelativeSample: -6.108e-06 - RelativeStatEC: 1.1698e-07 - RelativeStatFSR: 8.995e-08 - SinglePionECAL: 3.5527e-07 - SinglePionHCAL: 3.8628e-07 - TimePtEta: 2.0549e-06 - Lumi: 5.4704e-07 + RelativeStatFSR: 3.44570000e-07 + SinglePionECAL: 1.33520000e-06 + SinglePionHCAL: 1.26230000e-06 + TimePtEta: 7.58210000e-06 + Lumi: 2.21270000e-06 + model: 3.87860000e-07 +- all uncorr. unc.: 6.25120000e-06 + AbsoluteMPFBias: 1.53340000e-06 + AbsoluteScale: 7.99160000e-07 + fake: -5.14180000e-09 + FlavorQCD: -1.21340000e-06 + Fragmentation: -3.39210000e-07 + JER: -1.50670000e-06 + miss: 7.58080000e-08 + PileUpDataMC: -6.06350000e-08 + PileUpPtBB: 3.98100000e-07 + PileUpPtEC1: 8.54570000e-08 + PileUpPtEC2: 7.31360000e-11 + PileUpPtRef: 1.33160000e-07 + Pref: -1.02390000e-07 + PU: 3.23790000e-08 + RelativeBal: 2.25980000e-06 + RelativeFSR: 4.63860000e-07 + RelativeJEREC1: -7.72240000e-08 + RelativeJEREC2: -7.48710000e-09 + RelativePtBB: 8.77520000e-07 + RelativePtEC1: 2.57190000e-08 + RelativePtEC2: 1.90800000e-11 + RelativeSample: -6.10800000e-06 + RelativeStatEC: 1.16980000e-07 + RelativeStatFSR: 8.99500000e-08 + SinglePionECAL: 3.55270000e-07 + SinglePionHCAL: 3.86280000e-07 + TimePtEta: 2.05490000e-06 + Lumi: 5.47040000e-07 model: 2.66e-07 -- all uncorr. unc.: 2.6561e-06 - AbsoluteMPFBias: 4.8605e-07 - AbsoluteScale: 2.4106e-07 - fake: -2.2242e-09 - FlavorQCD: -4.6409e-07 - Fragmentation: -1.015e-07 - JER: -5.1218e-07 - miss: 2.3097e-08 - PileUpDataMC: -2.9508e-08 - PileUpPtBB: 1.4408e-07 - PileUpPtEC1: 2.8787e-08 - PileUpPtEC2: 2.2287e-11 - PileUpPtRef: 5.3505e-08 - Pref: 6.6832e-09 - PU: 9.5766e-09 - RelativeBal: 7.3614e-07 - RelativeFSR: 1.6263e-07 - RelativeJEREC1: -3.6322e-08 - RelativeJEREC2: -3.2429e-09 - RelativePtBB: 2.8756e-07 - RelativePtEC1: 7.5015e-09 - RelativePtEC2: 7.8407e-12 - RelativeSample: -1.9874e-06 - RelativeStatEC: 3.3707e-08 - RelativeStatFSR: 2.6399e-08 - SinglePionECAL: 1.0584e-07 - SinglePionHCAL: 1.3224e-07 - TimePtEta: 6.3123e-07 - Lumi: 1.522e-07 - model: 2.1914e-07 +- all uncorr. unc.: 2.65610000e-06 + AbsoluteMPFBias: 4.86050000e-07 + AbsoluteScale: 2.41060000e-07 + fake: -2.22420000e-09 + FlavorQCD: -4.64090000e-07 + Fragmentation: -1.01500000e-07 + JER: -5.12180000e-07 + miss: 2.30970000e-08 + PileUpDataMC: -2.95080000e-08 + PileUpPtBB: 1.44080000e-07 + PileUpPtEC1: 2.87870000e-08 + PileUpPtEC2: 2.22870000e-11 + PileUpPtRef: 5.35050000e-08 + Pref: 6.68320000e-09 + PU: 9.57660000e-09 + RelativeBal: 7.36140000e-07 + RelativeFSR: 1.62630000e-07 + RelativeJEREC1: -3.63220000e-08 + RelativeJEREC2: -3.24290000e-09 + RelativePtBB: 2.87560000e-07 + RelativePtEC1: 7.50150000e-09 + RelativePtEC2: 7.84070000e-12 + RelativeSample: -1.98740000e-06 + RelativeStatEC: 3.37070000e-08 + RelativeStatFSR: 2.63990000e-08 + SinglePionECAL: 1.05840000e-07 + SinglePionHCAL: 1.32240000e-07 + TimePtEta: 6.31230000e-07 + Lumi: 1.52200000e-07 + model: 2.19140000e-07 - all uncorr. unc.: 37.907 AbsoluteMPFBias: 81.279 AbsoluteScale: 48.536 @@ -2001,7 +2001,7 @@ bins: RelativeJEREC2: -3.9539 RelativePtBB: -0.64558 RelativePtEC1: -1.0138 - RelativePtEC2: -0.070203 + RelativePtEC2: -7.02030000e-02 RelativeSample: -137.57 RelativeStatEC: 39.833 RelativeStatFSR: 10.567 @@ -2013,15 +2013,15 @@ bins: - all uncorr. unc.: 8.5995 AbsoluteMPFBias: 17.371 AbsoluteScale: 10.887 - fake: -0.020923 + fake: -2.09230000e-02 FlavorQCD: 43.873 Fragmentation: 2.9117 JER: -28.763 miss: 1.0145 PileUpDataMC: 5.5323 - PileUpPtBB: -0.078782 + PileUpPtBB: -7.87820000e-02 PileUpPtEC1: 3.2929 - PileUpPtEC2: -0.003946 + PileUpPtEC2: -3.94600000e-03 PileUpPtRef: 2.2744 Pref: -5.172 PU: 3.4179 @@ -2031,7 +2031,7 @@ bins: RelativeJEREC2: -0.13101 RelativePtBB: 0.022809 RelativePtEC1: -0.46808 - RelativePtEC2: -0.0041136 + RelativePtEC2: -4.11360000e-03 RelativeSample: -24.975 RelativeStatEC: 10.054 RelativeStatFSR: 2.1636 @@ -2043,7 +2043,7 @@ bins: - all uncorr. unc.: 1.9333 AbsoluteMPFBias: 4.9173 AbsoluteScale: 3.1348 - fake: 0.0086221 + fake: 8.62210000e-03 FlavorQCD: 10.487 Fragmentation: 0.42602 JER: -6.6389 @@ -2051,7 +2051,7 @@ bins: PileUpDataMC: 1.1532 PileUpPtBB: 0.02367 PileUpPtEC1: 0.43628 - PileUpPtEC2: 0.0020891 + PileUpPtEC2: 2.08910000e-03 PileUpPtRef: 0.48869 Pref: -1.9775 PU: 0.77956 @@ -2060,8 +2060,8 @@ bins: RelativeJEREC1: 4.2968 RelativeJEREC2: 0.022558 RelativePtBB: 0.00936 - RelativePtEC1: -0.047147 - RelativePtEC2: -0.00038828 + RelativePtEC1: -4.71470000e-02 + RelativePtEC2: -3.88280000e-04 RelativeSample: -6.6507 RelativeStatEC: 3.0664 RelativeStatFSR: 0.59845 @@ -2069,59 +2069,59 @@ bins: SinglePionHCAL: -0.26639 TimePtEta: 10.178 Lumi: 4.6098 - model: -0.022408 + model: -2.24080000e-02 - all uncorr. unc.: 0.6698 AbsoluteMPFBias: 1.4913 AbsoluteScale: 0.91782 - fake: 0.0021128 + fake: 2.11280000e-03 FlavorQCD: 2.7735 Fragmentation: 0.044118 JER: -1.7634 miss: 0.058674 PileUpDataMC: 0.26281 - PileUpPtBB: 0.0063519 - PileUpPtEC1: 0.0098572 - PileUpPtEC2: 0.00051798 + PileUpPtBB: 6.35190000e-03 + PileUpPtEC1: 9.85720000e-03 + PileUpPtEC2: 5.17980000e-04 PileUpPtRef: 0.10119 Pref: -0.69752 PU: 0.20321 RelativeBal: -0.56553 RelativeFSR: 0.077179 RelativeJEREC1: 1.1904 - RelativeJEREC2: 0.0053665 - RelativePtBB: 0.0027159 + RelativeJEREC2: 5.36650000e-03 + RelativePtBB: 2.71590000e-03 RelativePtEC1: 0.023066 - RelativePtEC2: -0.00018474 + RelativePtEC2: -1.84740000e-04 RelativeSample: -2.0984 RelativeStatEC: 1.0028 RelativeStatFSR: 0.18583 - SinglePionECAL: -0.083183 - SinglePionHCAL: -0.033507 + SinglePionECAL: -8.31830000e-02 + SinglePionHCAL: -3.35070000e-02 TimePtEta: 3.0537 Lumi: 1.3512 model: 0.1836 - all uncorr. unc.: 0.20481 AbsoluteMPFBias: 0.48668 AbsoluteScale: 0.29821 - fake: 0.00019174 + fake: 1.91740000e-04 FlavorQCD: 0.78331 Fragmentation: -0.01075 JER: -0.56591 miss: 0.019507 PileUpDataMC: 0.061771 - PileUpPtBB: 0.00080562 - PileUpPtEC1: -0.029682 - PileUpPtEC2: 5.2803e-05 + PileUpPtBB: 8.05620000e-04 + PileUpPtEC1: -2.96820000e-02 + PileUpPtEC2: 5.28030000e-05 PileUpPtRef: 0.018493 Pref: -0.22054 PU: 0.059755 RelativeBal: -0.11567 RelativeFSR: 0.15306 RelativeJEREC1: 0.35882 - RelativeJEREC2: -0.0010587 - RelativePtBB: -0.00079042 + RelativeJEREC2: -1.05870000e-03 + RelativePtBB: -7.90420000e-04 RelativePtEC1: 0.017128 - RelativePtEC2: -6.159e-05 + RelativePtEC2: -6.15900000e-05 RelativeSample: -0.72199 RelativeStatEC: 0.35083 RelativeStatFSR: 0.062006 @@ -2133,330 +2133,330 @@ bins: - all uncorr. unc.: 0.059596 AbsoluteMPFBias: 0.16974 AbsoluteScale: 0.10366 - fake: -6.8998e-05 + fake: -6.89980000e-05 FlavorQCD: 0.22846 - Fragmentation: -0.011107 + Fragmentation: -1.11070000e-02 JER: -0.18974 - miss: 0.0070132 + miss: 7.01320000e-03 PileUpDataMC: 0.015711 - PileUpPtBB: -0.0002099 - PileUpPtEC1: -0.018183 - PileUpPtEC2: -1.3647e-05 - PileUpPtRef: 0.0020493 - Pref: -0.067621 + PileUpPtBB: -2.09900000e-04 + PileUpPtEC1: -1.81830000e-02 + PileUpPtEC2: -1.36470000e-05 + PileUpPtRef: 2.04930000e-03 + Pref: -6.76210000e-02 PU: 0.019172 - RelativeBal: -0.023192 + RelativeBal: -2.31920000e-02 RelativeFSR: 0.092569 RelativeJEREC1: 0.11399 - RelativeJEREC2: -0.00043232 - RelativePtBB: -0.0003916 - RelativePtEC1: 0.0078202 - RelativePtEC2: -1.6243e-05 + RelativeJEREC2: -4.32320000e-04 + RelativePtBB: -3.91600000e-04 + RelativePtEC1: 7.82020000e-03 + RelativePtEC2: -1.62430000e-05 RelativeSample: -0.25732 RelativeStatEC: 0.12792 RelativeStatFSR: 0.021464 SinglePionECAL: 0.014003 - SinglePionHCAL: 0.0081834 + SinglePionHCAL: 8.18340000e-03 TimePtEta: 0.33204 Lumi: 0.1422 - model: -0.024917 + model: -2.49170000e-02 - all uncorr. unc.: 0.019736 AbsoluteMPFBias: 0.061285 AbsoluteScale: 0.037366 - fake: -4.1932e-05 + fake: -4.19320000e-05 FlavorQCD: 0.067341 - Fragmentation: -0.006494 - JER: -0.064939 + Fragmentation: -6.49400000e-03 + JER: -6.49390000e-02 miss: 0.002607 - PileUpDataMC: 0.0043861 - PileUpPtBB: -6.416e-05 - PileUpPtEC1: -0.0080085 - PileUpPtEC2: -9.6368e-06 - PileUpPtRef: -0.00084953 + PileUpDataMC: 4.38610000e-03 + PileUpPtBB: -6.41600000e-05 + PileUpPtEC1: -8.00850000e-03 + PileUpPtEC2: -9.63680000e-06 + PileUpPtRef: -8.49530000e-04 Pref: -0.01852 - PU: 0.0065714 - RelativeBal: -0.0027786 + PU: 6.57140000e-03 + RelativeBal: -2.77860000e-03 RelativeFSR: 0.04645 RelativeJEREC1: 0.037509 - RelativeJEREC2: -0.00019306 - RelativePtBB: -0.00017166 - RelativePtEC1: 0.0030808 - RelativePtEC2: -3.6203e-06 - RelativeSample: -0.093779 + RelativeJEREC2: -1.93060000e-04 + RelativePtBB: -1.71660000e-04 + RelativePtEC1: 3.08080000e-03 + RelativePtEC2: -3.62030000e-06 + RelativeSample: -9.37790000e-02 RelativeStatEC: 0.048161 - RelativeStatFSR: 0.0076212 - SinglePionECAL: 0.0077935 + RelativeStatFSR: 7.62120000e-03 + SinglePionECAL: 7.79350000e-03 SinglePionHCAL: 0.004042 TimePtEta: 0.1181 Lumi: 0.048711 - model: -0.013735 -- all uncorr. unc.: 0.0075419 + model: -1.37350000e-02 +- all uncorr. unc.: 7.54190000e-03 AbsoluteMPFBias: 0.022307 AbsoluteScale: 0.0136 - fake: -1.1652e-05 + fake: -1.16520000e-05 FlavorQCD: 0.019359 - Fragmentation: -0.0032075 - JER: -0.022176 - miss: 0.00096514 - PileUpDataMC: 0.0012627 - PileUpPtBB: 1.9509e-05 - PileUpPtEC1: -0.0029417 - PileUpPtEC2: -2.9998e-06 - PileUpPtRef: -0.00065894 - Pref: -0.0048923 - PU: 0.0023206 - RelativeBal: 0.00099305 + Fragmentation: -3.20750000e-03 + JER: -2.21760000e-02 + miss: 9.65140000e-04 + PileUpDataMC: 1.26270000e-03 + PileUpPtBB: 1.95090000e-05 + PileUpPtEC1: -2.94170000e-03 + PileUpPtEC2: -2.99980000e-06 + PileUpPtRef: -6.58940000e-04 + Pref: -4.89230000e-03 + PU: 2.32060000e-03 + RelativeBal: 9.93050000e-04 RelativeFSR: 0.021401 RelativeJEREC1: 0.012495 - RelativeJEREC2: -5.1757e-05 - RelativePtBB: -7.0804e-05 - RelativePtEC1: 0.0011352 - RelativePtEC2: -1.0928e-06 - RelativeSample: -0.033961 + RelativeJEREC2: -5.17570000e-05 + RelativePtBB: -7.08040000e-05 + RelativePtEC1: 1.13520000e-03 + RelativePtEC2: -1.09280000e-06 + RelativeSample: -3.39610000e-02 RelativeStatEC: 0.018236 - RelativeStatFSR: 0.0027526 - SinglePionECAL: 0.0037483 - SinglePionHCAL: 0.0018466 + RelativeStatFSR: 2.75260000e-03 + SinglePionECAL: 3.74830000e-03 + SinglePionHCAL: 1.84660000e-03 TimePtEta: 0.042732 Lumi: 0.0167 - model: -0.0069165 -- all uncorr. unc.: 0.0021294 - AbsoluteMPFBias: 0.0082827 - AbsoluteScale: 0.0050601 - fake: -1.0569e-06 - FlavorQCD: 0.0055052 - Fragmentation: -0.0014561 - JER: -0.007723 - miss: 0.00035972 - PileUpDataMC: 0.00037746 - PileUpPtBB: 9.9859e-06 - PileUpPtEC1: -0.00095091 - PileUpPtEC2: -4.5834e-07 - PileUpPtRef: -0.00033828 - Pref: -0.0014755 - PU: 0.00084526 - RelativeBal: 0.00087047 - RelativeFSR: 0.0095666 - RelativeJEREC1: 0.0042059 - RelativeJEREC2: -6.2609e-06 - RelativePtBB: -3.259e-05 - RelativePtEC1: 0.00048635 - RelativePtEC2: -3.6018e-07 - RelativeSample: -0.012339 - RelativeStatEC: 0.0070211 - RelativeStatFSR: 0.0010328 - SinglePionECAL: 0.0016494 - SinglePionHCAL: 0.00084881 + model: -6.91650000e-03 +- all uncorr. unc.: 2.12940000e-03 + AbsoluteMPFBias: 8.28270000e-03 + AbsoluteScale: 5.06010000e-03 + fake: -1.05690000e-06 + FlavorQCD: 5.50520000e-03 + Fragmentation: -1.45610000e-03 + JER: -7.72300000e-03 + miss: 3.59720000e-04 + PileUpDataMC: 3.77460000e-04 + PileUpPtBB: 9.98590000e-06 + PileUpPtEC1: -9.50910000e-04 + PileUpPtEC2: -4.58340000e-07 + PileUpPtRef: -3.38280000e-04 + Pref: -1.47550000e-03 + PU: 8.45260000e-04 + RelativeBal: 8.70470000e-04 + RelativeFSR: 9.56660000e-03 + RelativeJEREC1: 4.20590000e-03 + RelativeJEREC2: -6.26090000e-06 + RelativePtBB: -3.25900000e-05 + RelativePtEC1: 4.86350000e-04 + RelativePtEC2: -3.60180000e-07 + RelativeSample: -1.23390000e-02 + RelativeStatEC: 7.02110000e-03 + RelativeStatFSR: 1.03280000e-03 + SinglePionECAL: 1.64940000e-03 + SinglePionHCAL: 8.48810000e-04 TimePtEta: 0.015797 - Lumi: 0.0057751 - model: -0.0022275 -- all uncorr. unc.: 0.00075475 - AbsoluteMPFBias: 0.0030108 - AbsoluteScale: 0.0018706 - fake: 7.8159e-07 - FlavorQCD: 0.0014208 - Fragmentation: -0.00059867 - JER: -0.002649 - miss: 0.0001287 - PileUpDataMC: 0.00012197 - PileUpPtBB: 6.0933e-06 - PileUpPtEC1: -0.00025718 - PileUpPtEC2: 2.251e-07 - PileUpPtRef: -0.00013545 - Pref: -0.00041171 - PU: 0.00029919 - RelativeBal: 0.00048443 - RelativeFSR: 0.0040408 - RelativeJEREC1: 0.0013544 - RelativeJEREC2: 2.1872e-06 - RelativePtBB: -1.7149e-05 - RelativePtEC1: 0.0001954 - RelativePtEC2: -1.135e-07 - RelativeSample: -0.0042682 - RelativeStatEC: 0.0026289 - RelativeStatFSR: 0.00036986 - SinglePionECAL: 0.00065712 - SinglePionHCAL: 0.00035185 - TimePtEta: 0.0056289 - Lumi: 0.0019097 - model: -0.00050102 -- all uncorr. unc.: 0.00030413 - AbsoluteMPFBias: 0.0010849 - AbsoluteScale: 0.00067503 - fake: 4.6336e-07 - FlavorQCD: 0.00031311 - Fragmentation: -0.00023538 - JER: -0.00092225 - miss: 4.5338e-05 - PileUpDataMC: 3.9338e-05 - PileUpPtBB: 2.0723e-06 - PileUpPtEC1: -4.3823e-05 - PileUpPtEC2: 9.7483e-08 - PileUpPtRef: -4.518e-05 - Pref: -0.00012594 - PU: 0.0001044 - RelativeBal: 0.00021904 - RelativeFSR: 0.0016447 - RelativeJEREC1: 0.00042582 - RelativeJEREC2: 1.5207e-06 - RelativePtBB: -8.3191e-06 - RelativePtEC1: 7.4563e-05 - RelativePtEC2: -3.49e-08 - RelativeSample: -0.001512 - RelativeStatEC: 0.00097226 - RelativeStatFSR: 0.00012887 - SinglePionECAL: 0.00024638 - SinglePionHCAL: 0.00013679 - TimePtEta: 0.0019621 - Lumi: 0.0006162 - model: -3.0773e-05 -- all uncorr. unc.: 0.00012809 - AbsoluteMPFBias: 0.00037308 - AbsoluteScale: 0.00022944 - fake: 9.4794e-08 - FlavorQCD: 4.9969e-05 - Fragmentation: -8.6102e-05 - JER: -0.00031855 - miss: 1.5328e-05 - PileUpDataMC: 1.1276e-05 - PileUpPtBB: 2.0727e-07 - PileUpPtEC1: 8.5561e-06 - PileUpPtEC2: 1.8256e-08 - PileUpPtRef: -1.1957e-05 - Pref: -3.2421e-05 - PU: 3.4704e-05 - RelativeBal: 8.599e-05 - RelativeFSR: 0.0006254 - RelativeJEREC1: 0.00012674 - RelativeJEREC2: 3.2293e-07 - RelativePtBB: -3.6313e-06 - RelativePtEC1: 2.6453e-05 - RelativePtEC2: -1.0151e-08 - RelativeSample: -0.00055085 - RelativeStatEC: 0.00034117 - RelativeStatFSR: 4.2382e-05 - SinglePionECAL: 9.225e-05 - SinglePionHCAL: 5.0648e-05 - TimePtEta: 0.00064665 - Lumi: 0.00018817 - model: 9.131e-05 -- all uncorr. unc.: 5.6196e-05 - AbsoluteMPFBias: 0.00011584 - AbsoluteScale: 6.944e-05 - fake: -3.7315e-08 - FlavorQCD: 4.3992e-06 - Fragmentation: -2.7852e-05 - JER: -0.00010354 - miss: 4.7319e-06 - PileUpDataMC: 2.469e-06 - PileUpPtBB: -2.4852e-07 - PileUpPtEC1: 9.4242e-06 - PileUpPtEC2: -7.3072e-09 - PileUpPtRef: -2.2188e-06 - Pref: -8.2971e-06 - PU: 1.0396e-05 - RelativeBal: 3.143e-05 - RelativeFSR: 0.0002114 - RelativeJEREC1: 3.387e-05 - RelativeJEREC2: -1.2184e-07 - RelativePtBB: -1.4924e-06 - RelativePtEC1: 1.0092e-05 - RelativePtEC2: -2.6481e-09 - RelativeSample: -0.00018455 - RelativeStatEC: 0.00010756 - RelativeStatFSR: 1.3076e-05 - SinglePionECAL: 3.1605e-05 - SinglePionHCAL: 1.8321e-05 - TimePtEta: 0.00019057 - Lumi: 5.1584e-05 - model: 5.6352e-05 -- all uncorr. unc.: 2.5579e-05 - AbsoluteMPFBias: 3.3157e-05 - AbsoluteScale: 1.9835e-05 - fake: -4.223e-08 - FlavorQCD: -5.9881e-06 - Fragmentation: -8.1803e-06 - JER: -3.2014e-05 - miss: 1.3658e-06 - PileUpDataMC: 5.3961e-07 - PileUpPtBB: -2.0287e-07 - PileUpPtEC1: 5.0125e-06 - PileUpPtEC2: -8.4019e-09 - PileUpPtRef: -2.5644e-07 - Pref: -2.0396e-06 - PU: 2.8674e-06 - RelativeBal: 1.0999e-05 - RelativeFSR: 6.5091e-05 - RelativeJEREC1: 8.3256e-06 - RelativeJEREC2: -1.4333e-07 - RelativePtBB: -5.5655e-07 - RelativePtEC1: 3.5723e-06 - RelativePtEC2: -7.8803e-10 - RelativeSample: -5.7583e-05 - RelativeStatEC: 3.1133e-05 - RelativeStatFSR: 3.8312e-06 - SinglePionECAL: 9.9865e-06 - SinglePionHCAL: 6.1072e-06 - TimePtEta: 5.1294e-05 - Lumi: 1.3005e-05 - model: 3.6672e-05 -- all uncorr. unc.: 1.1168e-05 - AbsoluteMPFBias: 6.7244e-06 - AbsoluteScale: 4.0677e-06 - fake: -1.7294e-08 - FlavorQCD: -2.0865e-06 - Fragmentation: -1.6838e-06 - JER: -7.1509e-06 - miss: 2.8331e-07 - PileUpDataMC: -8.7778e-08 - PileUpPtBB: -7.5318e-08 - PileUpPtEC1: 1.5005e-06 - PileUpPtEC2: -3.4857e-09 - PileUpPtRef: 1.4406e-07 - Pref: -3.8489e-07 - PU: 5.5992e-07 - RelativeBal: 2.6901e-06 - RelativeFSR: 1.4072e-05 - RelativeJEREC1: 1.455e-06 - RelativeJEREC2: -5.9217e-08 - RelativePtBB: -1.4203e-07 - RelativePtEC1: 8.8711e-07 - RelativePtEC2: -2.0287e-10 - RelativeSample: -1.2772e-05 - RelativeStatEC: 6.3638e-06 - RelativeStatFSR: 8.0525e-07 - SinglePionECAL: 2.2329e-06 - SinglePionHCAL: 1.4335e-06 - TimePtEta: 9.8683e-06 - Lumi: 2.3222e-06 - model: 1.1439e-05 -- all uncorr. unc.: 5.0369e-06 - AbsoluteMPFBias: 1.7954e-06 - AbsoluteScale: 1.0912e-06 - fake: -7.4096e-09 - FlavorQCD: -7.6145e-07 - Fragmentation: -4.4787e-07 - JER: -2.0989e-06 - miss: 7.7507e-08 - PileUpDataMC: -4.2598e-08 - PileUpPtBB: -3.0568e-08 - PileUpPtEC1: 5.2476e-07 - PileUpPtEC2: -1.5061e-09 - PileUpPtRef: 7.7394e-08 - Pref: -1.0468e-07 - PU: 1.4234e-07 - RelativeBal: 8.4428e-07 - RelativeFSR: 3.9357e-06 - RelativeJEREC1: 3.3376e-07 - RelativeJEREC2: -2.5446e-08 - RelativePtBB: -4.5787e-08 - RelativePtEC1: 2.8221e-07 - RelativePtEC2: -5.9978e-11 - RelativeSample: -3.6834e-06 - RelativeStatEC: 1.6899e-06 - RelativeStatFSR: 2.2242e-07 - SinglePionECAL: 6.4835e-07 - SinglePionHCAL: 4.3425e-07 - TimePtEta: 2.499e-06 - Lumi: 5.4054e-07 - model: 4.6561e-06 + Lumi: 5.77510000e-03 + model: -2.22750000e-03 +- all uncorr. unc.: 7.54750000e-04 + AbsoluteMPFBias: 3.01080000e-03 + AbsoluteScale: 1.87060000e-03 + fake: 7.81590000e-07 + FlavorQCD: 1.42080000e-03 + Fragmentation: -5.98670000e-04 + JER: -2.64900000e-03 + miss: 1.28700000e-04 + PileUpDataMC: 1.21970000e-04 + PileUpPtBB: 6.09330000e-06 + PileUpPtEC1: -2.57180000e-04 + PileUpPtEC2: 2.25100000e-07 + PileUpPtRef: -1.35450000e-04 + Pref: -4.11710000e-04 + PU: 2.99190000e-04 + RelativeBal: 4.84430000e-04 + RelativeFSR: 4.04080000e-03 + RelativeJEREC1: 1.35440000e-03 + RelativeJEREC2: 2.18720000e-06 + RelativePtBB: -1.71490000e-05 + RelativePtEC1: 1.95400000e-04 + RelativePtEC2: -1.13500000e-07 + RelativeSample: -4.26820000e-03 + RelativeStatEC: 2.62890000e-03 + RelativeStatFSR: 3.69860000e-04 + SinglePionECAL: 6.57120000e-04 + SinglePionHCAL: 3.51850000e-04 + TimePtEta: 5.62890000e-03 + Lumi: 1.90970000e-03 + model: -5.01020000e-04 +- all uncorr. unc.: 3.04130000e-04 + AbsoluteMPFBias: 1.08490000e-03 + AbsoluteScale: 6.75030000e-04 + fake: 4.63360000e-07 + FlavorQCD: 3.13110000e-04 + Fragmentation: -2.35380000e-04 + JER: -9.22250000e-04 + miss: 4.53380000e-05 + PileUpDataMC: 3.93380000e-05 + PileUpPtBB: 2.07230000e-06 + PileUpPtEC1: -4.38230000e-05 + PileUpPtEC2: 9.74830000e-08 + PileUpPtRef: -4.51800000e-05 + Pref: -1.25940000e-04 + PU: 1.04400000e-04 + RelativeBal: 2.19040000e-04 + RelativeFSR: 1.64470000e-03 + RelativeJEREC1: 4.25820000e-04 + RelativeJEREC2: 1.52070000e-06 + RelativePtBB: -8.31910000e-06 + RelativePtEC1: 7.45630000e-05 + RelativePtEC2: -3.49000000e-08 + RelativeSample: -1.51200000e-03 + RelativeStatEC: 9.72260000e-04 + RelativeStatFSR: 1.28870000e-04 + SinglePionECAL: 2.46380000e-04 + SinglePionHCAL: 1.36790000e-04 + TimePtEta: 1.96210000e-03 + Lumi: 6.16200000e-04 + model: -3.07730000e-05 +- all uncorr. unc.: 1.28090000e-04 + AbsoluteMPFBias: 3.73080000e-04 + AbsoluteScale: 2.29440000e-04 + fake: 9.47940000e-08 + FlavorQCD: 4.99690000e-05 + Fragmentation: -8.61020000e-05 + JER: -3.18550000e-04 + miss: 1.53280000e-05 + PileUpDataMC: 1.12760000e-05 + PileUpPtBB: 2.07270000e-07 + PileUpPtEC1: 8.55610000e-06 + PileUpPtEC2: 1.82560000e-08 + PileUpPtRef: -1.19570000e-05 + Pref: -3.24210000e-05 + PU: 3.47040000e-05 + RelativeBal: 8.59900000e-05 + RelativeFSR: 6.25400000e-04 + RelativeJEREC1: 1.26740000e-04 + RelativeJEREC2: 3.22930000e-07 + RelativePtBB: -3.63130000e-06 + RelativePtEC1: 2.64530000e-05 + RelativePtEC2: -1.01510000e-08 + RelativeSample: -5.50850000e-04 + RelativeStatEC: 3.41170000e-04 + RelativeStatFSR: 4.23820000e-05 + SinglePionECAL: 9.22500000e-05 + SinglePionHCAL: 5.06480000e-05 + TimePtEta: 6.46650000e-04 + Lumi: 1.88170000e-04 + model: 9.13100000e-05 +- all uncorr. unc.: 5.61960000e-05 + AbsoluteMPFBias: 1.15840000e-04 + AbsoluteScale: 6.94400000e-05 + fake: -3.73150000e-08 + FlavorQCD: 4.39920000e-06 + Fragmentation: -2.78520000e-05 + JER: -1.03540000e-04 + miss: 4.73190000e-06 + PileUpDataMC: 2.46900000e-06 + PileUpPtBB: -2.48520000e-07 + PileUpPtEC1: 9.42420000e-06 + PileUpPtEC2: -7.30720000e-09 + PileUpPtRef: -2.21880000e-06 + Pref: -8.29710000e-06 + PU: 1.03960000e-05 + RelativeBal: 3.14300000e-05 + RelativeFSR: 2.11400000e-04 + RelativeJEREC1: 3.38700000e-05 + RelativeJEREC2: -1.21840000e-07 + RelativePtBB: -1.49240000e-06 + RelativePtEC1: 1.00920000e-05 + RelativePtEC2: -2.64810000e-09 + RelativeSample: -1.84550000e-04 + RelativeStatEC: 1.07560000e-04 + RelativeStatFSR: 1.30760000e-05 + SinglePionECAL: 3.16050000e-05 + SinglePionHCAL: 1.83210000e-05 + TimePtEta: 1.90570000e-04 + Lumi: 5.15840000e-05 + model: 5.63520000e-05 +- all uncorr. unc.: 2.55790000e-05 + AbsoluteMPFBias: 3.31570000e-05 + AbsoluteScale: 1.98350000e-05 + fake: -4.22300000e-08 + FlavorQCD: -5.98810000e-06 + Fragmentation: -8.18030000e-06 + JER: -3.20140000e-05 + miss: 1.36580000e-06 + PileUpDataMC: 5.39610000e-07 + PileUpPtBB: -2.02870000e-07 + PileUpPtEC1: 5.01250000e-06 + PileUpPtEC2: -8.40190000e-09 + PileUpPtRef: -2.56440000e-07 + Pref: -2.03960000e-06 + PU: 2.86740000e-06 + RelativeBal: 1.09990000e-05 + RelativeFSR: 6.50910000e-05 + RelativeJEREC1: 8.32560000e-06 + RelativeJEREC2: -1.43330000e-07 + RelativePtBB: -5.56550000e-07 + RelativePtEC1: 3.57230000e-06 + RelativePtEC2: -7.88030000e-10 + RelativeSample: -5.75830000e-05 + RelativeStatEC: 3.11330000e-05 + RelativeStatFSR: 3.83120000e-06 + SinglePionECAL: 9.98650000e-06 + SinglePionHCAL: 6.10720000e-06 + TimePtEta: 5.12940000e-05 + Lumi: 1.30050000e-05 + model: 3.66720000e-05 +- all uncorr. unc.: 1.11680000e-05 + AbsoluteMPFBias: 6.72440000e-06 + AbsoluteScale: 4.06770000e-06 + fake: -1.72940000e-08 + FlavorQCD: -2.08650000e-06 + Fragmentation: -1.68380000e-06 + JER: -7.15090000e-06 + miss: 2.83310000e-07 + PileUpDataMC: -8.77780000e-08 + PileUpPtBB: -7.53180000e-08 + PileUpPtEC1: 1.50050000e-06 + PileUpPtEC2: -3.48570000e-09 + PileUpPtRef: 1.44060000e-07 + Pref: -3.84890000e-07 + PU: 5.59920000e-07 + RelativeBal: 2.69010000e-06 + RelativeFSR: 1.40720000e-05 + RelativeJEREC1: 1.45500000e-06 + RelativeJEREC2: -5.92170000e-08 + RelativePtBB: -1.42030000e-07 + RelativePtEC1: 8.87110000e-07 + RelativePtEC2: -2.02870000e-10 + RelativeSample: -1.27720000e-05 + RelativeStatEC: 6.36380000e-06 + RelativeStatFSR: 8.05250000e-07 + SinglePionECAL: 2.23290000e-06 + SinglePionHCAL: 1.43350000e-06 + TimePtEta: 9.86830000e-06 + Lumi: 2.32220000e-06 + model: 1.14390000e-05 +- all uncorr. unc.: 5.03690000e-06 + AbsoluteMPFBias: 1.79540000e-06 + AbsoluteScale: 1.09120000e-06 + fake: -7.40960000e-09 + FlavorQCD: -7.61450000e-07 + Fragmentation: -4.47870000e-07 + JER: -2.09890000e-06 + miss: 7.75070000e-08 + PileUpDataMC: -4.25980000e-08 + PileUpPtBB: -3.05680000e-08 + PileUpPtEC1: 5.24760000e-07 + PileUpPtEC2: -1.50610000e-09 + PileUpPtRef: 7.73940000e-08 + Pref: -1.04680000e-07 + PU: 1.42340000e-07 + RelativeBal: 8.44280000e-07 + RelativeFSR: 3.93570000e-06 + RelativeJEREC1: 3.33760000e-07 + RelativeJEREC2: -2.54460000e-08 + RelativePtBB: -4.57870000e-08 + RelativePtEC1: 2.82210000e-07 + RelativePtEC2: -5.99780000e-11 + RelativeSample: -3.68340000e-06 + RelativeStatEC: 1.68990000e-06 + RelativeStatFSR: 2.22420000e-07 + SinglePionECAL: 6.48350000e-07 + SinglePionHCAL: 4.34250000e-07 + TimePtEta: 2.49900000e-06 + Lumi: 5.40540000e-07 + model: 4.65610000e-06 diff --git a/nnpdf_data/nnpdf_data/commondata/CMS_1JET_13TEV_DIF/uncertainties_r07.yaml b/nnpdf_data/nnpdf_data/commondata/CMS_1JET_13TEV_DIF/uncertainties_r07.yaml index 178281d22f..75afa57524 100644 --- a/nnpdf_data/nnpdf_data/commondata/CMS_1JET_13TEV_DIF/uncertainties_r07.yaml +++ b/nnpdf_data/nnpdf_data/commondata/CMS_1JET_13TEV_DIF/uncertainties_r07.yaml @@ -153,7 +153,7 @@ bins: - all uncorr. unc.: 18.521 AbsoluteMPFBias: 39.042 AbsoluteScale: 24.091 - fake: -0.032275 + fake: -3.22750000e-02 FlavorQCD: 89.665 Fragmentation: 4.5415 JER: -34.662 @@ -161,7 +161,7 @@ bins: PileUpDataMC: 16.5 PileUpPtBB: 3.4296 PileUpPtEC1: 0.038083 - PileUpPtEC2: 0.0023834 + PileUpPtEC2: 2.38340000e-03 PileUpPtRef: 4.2372 Pref: -14.677 PU: -3.776 @@ -170,8 +170,8 @@ bins: RelativeJEREC1: 0.071735 RelativeJEREC2: 0.05292 RelativePtBB: -1.0917 - RelativePtEC1: -0.0096859 - RelativePtEC2: 0.0024459 + RelativePtEC1: -9.68590000e-03 + RelativePtEC2: 2.44590000e-03 RelativeSample: 36.553 RelativeStatEC: 0.056974 RelativeStatFSR: 2.6728 @@ -183,27 +183,27 @@ bins: - all uncorr. unc.: 4.0039 AbsoluteMPFBias: 10.737 AbsoluteScale: 6.4907 - fake: 0.0054826 + fake: 5.48260000e-03 FlavorQCD: 21.119 Fragmentation: 0.60414 JER: -7.7553 miss: 0.70561 PileUpDataMC: 3.5544 PileUpPtBB: 0.98269 - PileUpPtEC1: 0.0036332 - PileUpPtEC2: 0.00033054 + PileUpPtEC1: 3.63320000e-03 + PileUpPtEC2: 3.30540000e-04 PileUpPtRef: 0.83479 Pref: -5.5191 PU: -0.47245 RelativeBal: 7.2454 RelativeFSR: -6.8872 RelativeJEREC1: -0.02171 - RelativeJEREC2: -0.0027377 + RelativeJEREC2: -2.73770000e-03 RelativePtBB: 0.32033 - RelativePtEC1: -0.0017252 - RelativePtEC2: 0.00042404 + RelativePtEC1: -1.72520000e-03 + RelativePtEC2: 4.24040000e-04 RelativeSample: 8.3959 - RelativeStatEC: -0.017468 + RelativeStatEC: -1.74680000e-02 RelativeStatFSR: 0.71277 SinglePionECAL: -0.78396 SinglePionHCAL: -0.18237 @@ -213,29 +213,29 @@ bins: - all uncorr. unc.: 1.3577 AbsoluteMPFBias: 3.3032 AbsoluteScale: 2.0024 - fake: 0.0023581 + fake: 2.35810000e-03 FlavorQCD: 5.5896 Fragmentation: 0.019894 JER: -1.9806 miss: 0.19904 PileUpDataMC: 0.86994 PileUpPtBB: 0.28936 - PileUpPtEC1: -0.00088765 - PileUpPtEC2: 4.3615e-05 + PileUpPtEC1: -8.87650000e-04 + PileUpPtEC2: 4.36150000e-05 PileUpPtRef: 0.16021 Pref: -1.9782 - PU: -0.053505 + PU: -5.35050000e-02 RelativeBal: 2.2543 RelativeFSR: -1.5507 - RelativeJEREC1: -0.008084 - RelativeJEREC2: -0.0014271 + RelativeJEREC1: -8.08400000e-03 + RelativeJEREC2: -1.42710000e-03 RelativePtBB: 0.25997 - RelativePtEC1: -0.00043103 - RelativePtEC2: 7.8914e-05 + RelativePtEC1: -4.31030000e-04 + RelativePtEC2: 7.89140000e-05 RelativeSample: 2.1839 - RelativeStatEC: -0.0065147 + RelativeStatEC: -6.51470000e-03 RelativeStatFSR: 0.21669 - SinglePionECAL: -0.049259 + SinglePionECAL: -4.92590000e-02 SinglePionHCAL: 0.025499 TimePtEta: 5.1837 Lumi: 3.0891 @@ -243,27 +243,27 @@ bins: - all uncorr. unc.: 0.35447 AbsoluteMPFBias: 1.1213 AbsoluteScale: 0.68013 - fake: 0.00058151 + fake: 5.81510000e-04 FlavorQCD: 1.6313 - Fragmentation: -0.043874 + Fragmentation: -4.38740000e-02 JER: -0.56824 miss: 0.066055 PileUpDataMC: 0.23771 PileUpPtBB: 0.086708 - PileUpPtEC1: -0.0002344 - PileUpPtEC2: 5.4869e-06 + PileUpPtEC1: -2.34400000e-04 + PileUpPtEC2: 5.48690000e-06 PileUpPtRef: 0.025362 Pref: -0.72715 - PU: -0.0040381 + PU: -4.03810000e-03 RelativeBal: 0.77432 RelativeFSR: -0.34925 - RelativeJEREC1: -0.0018951 - RelativeJEREC2: -0.00039396 + RelativeJEREC1: -1.89510000e-03 + RelativeJEREC2: -3.93960000e-04 RelativePtBB: 0.14108 - RelativePtEC1: -0.00011615 - RelativePtEC2: 1.7242e-05 + RelativePtEC1: -1.16150000e-04 + RelativePtEC2: 1.72420000e-05 RelativeSample: 0.61845 - RelativeStatEC: -0.0015359 + RelativeStatEC: -1.53590000e-03 RelativeStatFSR: 0.074323 SinglePionECAL: 0.044091 SinglePionHCAL: 0.030899 @@ -273,27 +273,27 @@ bins: - all uncorr. unc.: 0.10418 AbsoluteMPFBias: 0.39797 AbsoluteScale: 0.24127 - fake: 9.6936e-05 + fake: 9.69360000e-05 FlavorQCD: 0.49361 - Fragmentation: -0.030599 + Fragmentation: -3.05990000e-02 JER: -0.17295 miss: 0.023903 PileUpDataMC: 0.068874 PileUpPtBB: 0.025124 - PileUpPtEC1: -6.2197e-05 - PileUpPtEC2: -2.0063e-06 - PileUpPtRef: 0.00035651 + PileUpPtEC1: -6.21970000e-05 + PileUpPtEC2: -2.00630000e-06 + PileUpPtRef: 3.56510000e-04 Pref: -0.25878 - PU: 0.0047477 + PU: 4.74770000e-03 RelativeBal: 0.2815 - RelativeFSR: -0.069373 - RelativeJEREC1: -0.00028783 - RelativeJEREC2: -6.4798e-05 + RelativeFSR: -6.93730000e-02 + RelativeJEREC1: -2.87830000e-04 + RelativeJEREC2: -6.47980000e-05 RelativePtBB: 0.068132 - RelativePtEC1: -3.1415e-05 - RelativePtEC2: 3.4143e-06 + RelativePtEC1: -3.14150000e-05 + RelativePtEC2: 3.41430000e-06 RelativeSample: 0.1788 - RelativeStatEC: -0.00023679 + RelativeStatEC: -2.36790000e-04 RelativeStatFSR: 0.027036 SinglePionECAL: 0.032497 SinglePionHCAL: 0.01786 @@ -303,483 +303,483 @@ bins: - all uncorr. unc.: 0.037193 AbsoluteMPFBias: 0.15089 AbsoluteScale: 0.091388 - fake: 3.4854e-06 + fake: 3.48540000e-06 FlavorQCD: 0.15694 - Fragmentation: -0.016681 - JER: -0.056937 - miss: 0.0094675 + Fragmentation: -1.66810000e-02 + JER: -5.69370000e-02 + miss: 9.46750000e-03 PileUpDataMC: 0.021658 - PileUpPtBB: 0.0070128 - PileUpPtEC1: 1.6386e-05 - PileUpPtEC2: -1.1834e-06 - PileUpPtRef: -0.0028157 - Pref: -0.084253 - PU: 0.0025921 + PileUpPtBB: 7.01280000e-03 + PileUpPtEC1: 1.63860000e-05 + PileUpPtEC2: -1.18340000e-06 + PileUpPtRef: -2.81570000e-03 + Pref: -8.42530000e-02 + PU: 2.59210000e-03 RelativeBal: 0.10888 - RelativeFSR: -0.006512 - RelativeJEREC1: 1.4978e-05 - RelativeJEREC2: -2.756e-06 + RelativeFSR: -6.51200000e-03 + RelativeJEREC1: 1.49780000e-05 + RelativeJEREC2: -2.75600000e-06 RelativePtBB: 0.032423 - RelativePtEC1: -8.435e-06 - RelativePtEC2: 5.0969e-07 + RelativePtEC1: -8.43500000e-06 + RelativePtEC2: 5.09690000e-07 RelativeSample: 0.053116 - RelativeStatEC: 1.6574e-05 + RelativeStatEC: 1.65740000e-05 RelativeStatFSR: 0.01045 SinglePionECAL: 0.017844 - SinglePionHCAL: 0.0091878 + SinglePionHCAL: 9.18780000e-03 TimePtEta: 0.2619 Lumi: 0.13194 model: 0.045037 - all uncorr. unc.: 0.014241 AbsoluteMPFBias: 0.058875 AbsoluteScale: 0.035626 - fake: -5.5437e-06 + fake: -5.54370000e-06 FlavorQCD: 0.050175 - Fragmentation: -0.0082589 - JER: -0.019559 - miss: 0.0039022 - PileUpDataMC: 0.0071488 - PileUpPtBB: 0.0017065 - PileUpPtEC1: 3.8608e-06 - PileUpPtEC2: -4.9375e-07 - PileUpPtRef: -0.0018502 - Pref: -0.026989 - PU: 0.0012289 + Fragmentation: -8.25890000e-03 + JER: -1.95590000e-02 + miss: 3.90220000e-03 + PileUpDataMC: 7.14880000e-03 + PileUpPtBB: 1.70650000e-03 + PileUpPtEC1: 3.86080000e-06 + PileUpPtEC2: -4.93750000e-07 + PileUpPtRef: -1.85020000e-03 + Pref: -2.69890000e-02 + PU: 1.22890000e-03 RelativeBal: 0.043014 - RelativeFSR: 0.0055004 - RelativeJEREC1: 2.7495e-05 - RelativeJEREC2: 5.0392e-06 + RelativeFSR: 5.50040000e-03 + RelativeJEREC1: 2.74950000e-05 + RelativeJEREC2: 5.03920000e-06 RelativePtBB: 0.01508 - RelativePtEC1: -2.0298e-06 - RelativePtEC2: -1.6946e-07 + RelativePtEC1: -2.02980000e-06 + RelativePtEC2: -1.69460000e-07 RelativeSample: 0.01531 - RelativeStatEC: 2.2073e-05 - RelativeStatFSR: 0.0041333 - SinglePionECAL: 0.0088319 - SinglePionHCAL: 0.0044784 + RelativeStatEC: 2.20730000e-05 + RelativeStatFSR: 4.13330000e-03 + SinglePionECAL: 8.83190000e-03 + SinglePionHCAL: 4.47840000e-03 TimePtEta: 0.10459 Lumi: 0.050271 model: 0.016787 -- all uncorr. unc.: 0.0051275 +- all uncorr. unc.: 5.12750000e-03 AbsoluteMPFBias: 0.023917 AbsoluteScale: 0.014463 - fake: -2.6101e-06 + fake: -2.61010000e-06 FlavorQCD: 0.016119 - Fragmentation: -0.0039823 - JER: -0.0070934 - miss: 0.0016793 - PileUpDataMC: 0.0025169 - PileUpPtBB: 0.00029263 - PileUpPtEC1: 1.3663e-06 - PileUpPtEC2: -1.7948e-07 - PileUpPtRef: -0.00094206 - Pref: -0.0088179 - PU: 0.00056887 + Fragmentation: -3.98230000e-03 + JER: -7.09340000e-03 + miss: 1.67930000e-03 + PileUpDataMC: 2.51690000e-03 + PileUpPtBB: 2.92630000e-04 + PileUpPtEC1: 1.36630000e-06 + PileUpPtEC2: -1.79480000e-07 + PileUpPtRef: -9.42060000e-04 + Pref: -8.81790000e-03 + PU: 5.68870000e-04 RelativeBal: 0.017592 - RelativeFSR: 0.0050742 - RelativeJEREC1: 1.3128e-05 - RelativeJEREC2: 2.1419e-06 - RelativePtBB: 0.0070519 - RelativePtEC1: -3.4598e-07 - RelativePtEC2: -1.096e-07 - RelativeSample: 0.0041315 - RelativeStatEC: 1.0891e-05 - RelativeStatFSR: 0.0016928 - SinglePionECAL: 0.0042537 + RelativeFSR: 5.07420000e-03 + RelativeJEREC1: 1.31280000e-05 + RelativeJEREC2: 2.14190000e-06 + RelativePtBB: 7.05190000e-03 + RelativePtEC1: -3.45980000e-07 + RelativePtEC2: -1.09600000e-07 + RelativeSample: 4.13150000e-03 + RelativeStatEC: 1.08910000e-05 + RelativeStatFSR: 1.69280000e-03 + SinglePionECAL: 4.25370000e-03 SinglePionHCAL: 0.002172 TimePtEta: 0.043199 Lumi: 0.019896 - model: 0.0062635 -- all uncorr. unc.: 0.0020376 - AbsoluteMPFBias: 0.0098946 - AbsoluteScale: 0.0059822 - fake: -4.5016e-07 - FlavorQCD: 0.0049878 - Fragmentation: -0.0018782 - JER: -0.0026583 - miss: 0.00073435 - PileUpDataMC: 0.00091218 - PileUpPtBB: -7.6326e-05 - PileUpPtEC1: 2.849e-07 - PileUpPtEC2: -5.7488e-08 - PileUpPtRef: -0.00042198 - Pref: -0.0030625 - PU: 0.00025927 - RelativeBal: 0.0073017 - RelativeFSR: 0.0032426 - RelativeJEREC1: 3.6189e-06 - RelativeJEREC2: 2.9179e-07 - RelativePtBB: 0.0032729 - RelativePtEC1: 1.6918e-07 - RelativePtEC2: -5.3085e-08 - RelativeSample: 0.00089135 - RelativeStatEC: 3.2293e-06 - RelativeStatFSR: 0.00070225 - SinglePionECAL: 0.0020127 - SinglePionHCAL: 0.0010423 + model: 6.26350000e-03 +- all uncorr. unc.: 2.03760000e-03 + AbsoluteMPFBias: 9.89460000e-03 + AbsoluteScale: 5.98220000e-03 + fake: -4.50160000e-07 + FlavorQCD: 4.98780000e-03 + Fragmentation: -1.87820000e-03 + JER: -2.65830000e-03 + miss: 7.34350000e-04 + PileUpDataMC: 9.12180000e-04 + PileUpPtBB: -7.63260000e-05 + PileUpPtEC1: 2.84900000e-07 + PileUpPtEC2: -5.74880000e-08 + PileUpPtRef: -4.21980000e-04 + Pref: -3.06250000e-03 + PU: 2.59270000e-04 + RelativeBal: 7.30170000e-03 + RelativeFSR: 3.24260000e-03 + RelativeJEREC1: 3.61890000e-06 + RelativeJEREC2: 2.91790000e-07 + RelativePtBB: 3.27290000e-03 + RelativePtEC1: 1.69180000e-07 + RelativePtEC2: -5.30850000e-08 + RelativeSample: 8.91350000e-04 + RelativeStatEC: 3.22930000e-06 + RelativeStatFSR: 7.02250000e-04 + SinglePionECAL: 2.01270000e-03 + SinglePionHCAL: 1.04230000e-03 TimePtEta: 0.018058 - Lumi: 0.0079967 - model: 0.0020195 -- all uncorr. unc.: 0.00090705 - AbsoluteMPFBias: 0.0041948 - AbsoluteScale: 0.0025374 - fake: 2.5336e-07 - FlavorQCD: 0.0014427 - Fragmentation: -0.00088046 - JER: -0.0010376 - miss: 0.0003273 - PileUpDataMC: 0.00034058 - PileUpPtBB: -0.00010479 - PileUpPtEC1: -1.7069e-07 - PileUpPtEC2: -1.6157e-08 - PileUpPtRef: -0.00017244 - Pref: -0.0010761 - PU: 0.00011803 - RelativeBal: 0.0031018 - RelativeFSR: 0.0018661 - RelativeJEREC1: 1.3346e-07 - RelativeJEREC2: -2.7034e-07 - RelativePtBB: 0.0015245 - RelativePtEC1: 1.5248e-07 - RelativePtEC2: -2.3319e-08 - RelativeSample: 7.0329e-05 - RelativeStatEC: 3.2671e-07 - RelativeStatFSR: 0.00029801 - SinglePionECAL: 0.00094717 - SinglePionHCAL: 0.00050305 - TimePtEta: 0.0076905 - Lumi: 0.0032852 - model: 0.00079342 -- all uncorr. unc.: 0.00043122 - AbsoluteMPFBias: 0.0018032 - AbsoluteScale: 0.0010916 - fake: 3.055e-07 - FlavorQCD: 0.00034706 - Fragmentation: -0.00040927 - JER: -0.00041719 - miss: 0.00014693 - PileUpDataMC: 0.00012974 - PileUpPtBB: -7.4245e-05 - PileUpPtEC1: -1.2465e-07 - PileUpPtEC2: -6.3476e-09 - PileUpPtRef: -6.3303e-05 - Pref: -0.00041518 - PU: 5.3165e-05 - RelativeBal: 0.0013374 - RelativeFSR: 0.0010071 - RelativeJEREC1: -5.9535e-07 - RelativeJEREC2: -2.8657e-07 - RelativePtBB: 0.00070842 - RelativePtEC1: 1.0687e-07 - RelativePtEC2: -9.873e-09 - RelativeSample: -0.00010619 - RelativeStatEC: -3.4804e-07 - RelativeStatFSR: 0.00012922 - SinglePionECAL: 0.00044152 - SinglePionHCAL: 0.00024226 - TimePtEta: 0.0033033 - Lumi: 0.0013646 - model: 0.00027507 -- all uncorr. unc.: 0.00021842 - AbsoluteMPFBias: 0.00077116 - AbsoluteScale: 0.00046755 - fake: 1.873e-07 - FlavorQCD: 3.8138e-05 - Fragmentation: -0.00018606 - JER: -0.0001695 - miss: 6.5153e-05 - PileUpDataMC: 4.8592e-05 - PileUpPtBB: -4.3608e-05 - PileUpPtEC1: -7.2849e-08 - PileUpPtEC2: -2.6378e-09 - PileUpPtRef: -1.9274e-05 - Pref: -0.00015101 - PU: 2.3186e-05 - RelativeBal: 0.00057592 - RelativeFSR: 0.00051556 - RelativeJEREC1: -4.6191e-07 - RelativeJEREC2: -1.6995e-07 - RelativePtBB: 0.0003232 - RelativePtEC1: 6.5439e-08 - RelativePtEC2: -4.2013e-09 - RelativeSample: -9.6812e-05 - RelativeStatEC: -3.0105e-07 - RelativeStatFSR: 5.5601e-05 - SinglePionECAL: 0.00020115 - SinglePionHCAL: 0.00011449 - TimePtEta: 0.0014048 - Lumi: 0.00056229 - model: 0.00010815 -- all uncorr. unc.: 0.00012016 - AbsoluteMPFBias: 0.00033183 - AbsoluteScale: 0.00020161 - fake: 8.1123e-08 - FlavorQCD: -3.0633e-05 - Fragmentation: -8.392e-05 - JER: -7.0333e-05 - miss: 2.8851e-05 - PileUpDataMC: 1.7801e-05 - PileUpPtBB: -2.4137e-05 - PileUpPtEC1: -3.8728e-08 - PileUpPtEC2: 1.2232e-09 - PileUpPtRef: -3.95e-06 - Pref: -5.8963e-05 - PU: 9.8476e-06 - RelativeBal: 0.00025001 - RelativeFSR: 0.00025677 - RelativeJEREC1: -2.1914e-07 - RelativeJEREC2: -7.2035e-08 - RelativePtBB: 0.00014666 - RelativePtEC1: 3.718e-08 - RelativePtEC2: -1.7591e-09 - RelativeSample: -6.2033e-05 - RelativeStatEC: -1.4066e-07 - RelativeStatFSR: 2.4004e-05 - SinglePionECAL: 9.0876e-05 - SinglePionHCAL: 5.379e-05 - TimePtEta: 0.00060159 - Lumi: 0.00023253 - model: 4.3958e-05 -- all uncorr. unc.: 6.9591e-05 - AbsoluteMPFBias: 0.00014209 - AbsoluteScale: 8.6555e-05 - fake: 2.0452e-08 - FlavorQCD: -3.0665e-05 - Fragmentation: -3.7234e-05 - JER: -2.9436e-05 - miss: 1.262e-05 - PileUpDataMC: 6.1473e-06 - PileUpPtBB: -1.2515e-05 - PileUpPtEC1: 1.9326e-08 - PileUpPtEC2: 6.2575e-10 - PileUpPtRef: 7.9679e-07 - Pref: -2.2808e-05 - PU: 3.997e-06 - RelativeBal: 0.00010875 - RelativeFSR: 0.00012512 - RelativeJEREC1: -5.953e-08 - RelativeJEREC2: -1.7393e-08 - RelativePtBB: 6.5581e-05 - RelativePtEC1: 1.9894e-08 - RelativePtEC2: -7.3832e-10 - RelativeSample: -3.5556e-05 - RelativeStatEC: -3.0971e-08 - RelativeStatFSR: 1.0285e-05 - SinglePionECAL: 4.0442e-05 - SinglePionHCAL: 2.4896e-05 - TimePtEta: 0.0002585 - Lumi: 9.547e-05 - model: 1.4688e-05 -- all uncorr. unc.: 4.1337e-05 - AbsoluteMPFBias: 6.1122e-05 - AbsoluteScale: 3.7348e-05 - fake: -5.0921e-09 - FlavorQCD: -2.0141e-05 - Fragmentation: -1.6439e-05 - JER: -1.252e-05 - miss: 5.5074e-06 - PileUpDataMC: 1.9197e-06 - PileUpPtBB: -6.2625e-06 - PileUpPtEC1: 1.0102e-08 - PileUpPtEC2: 3.4396e-10 - PileUpPtRef: 1.5332e-06 - Pref: -7.7398e-06 - PU: 1.5442e-06 - RelativeBal: 4.7821e-05 - RelativeFSR: 6.0834e-05 - RelativeJEREC1: 1.6018e-08 - RelativeJEREC2: 5.212e-09 - RelativePtBB: 2.9215e-05 - RelativePtEC1: 1.0276e-08 - RelativePtEC2: -3.4067e-10 - RelativeSample: -1.9042e-05 - RelativeStatEC: 1.7645e-08 - RelativeStatFSR: 4.4156e-06 - SinglePionECAL: 1.8015e-05 - SinglePionHCAL: 1.1476e-05 - TimePtEta: 0.00011145 - Lumi: 3.9292e-05 - model: 7.3682e-06 -- all uncorr. unc.: 2.4274e-05 - AbsoluteMPFBias: 2.4465e-05 - AbsoluteScale: 1.5001e-05 - fake: -1.1151e-08 - FlavorQCD: -1.0599e-05 - Fragmentation: -6.6991e-06 - JER: -5.2552e-06 - miss: 2.2216e-06 - PileUpDataMC: 4.344e-07 - PileUpPtBB: -2.8333e-06 - PileUpPtEC1: 8.8224e-09 - PileUpPtEC2: 1.8062e-10 - PileUpPtRef: 1.1427e-06 - Pref: -3.04e-06 - PU: 5.1263e-07 - RelativeBal: 1.9695e-05 - RelativeFSR: 2.7223e-05 - RelativeJEREC1: 3.0922e-08 - RelativeJEREC2: 1.0338e-08 - RelativePtBB: 1.2022e-05 - RelativePtEC1: 4.7922e-09 - RelativePtEC2: -1.5522e-10 - RelativeSample: -9.0765e-06 - RelativeStatEC: 2.7969e-08 - RelativeStatFSR: 1.7596e-06 - SinglePionECAL: 7.4182e-06 - SinglePionHCAL: 4.8855e-06 - TimePtEta: 4.4665e-05 - Lumi: 1.5018e-05 - model: 3.9183e-06 -- all uncorr. unc.: 1.4318e-05 - AbsoluteMPFBias: 9.727e-06 - AbsoluteScale: 5.987e-06 - fake: -9.6079e-09 - FlavorQCD: -5.126e-06 - Fragmentation: -2.6934e-06 - JER: -2.241e-06 - miss: 8.8477e-07 - PileUpDataMC: 2.4778e-08 - PileUpPtBB: -1.2461e-06 - PileUpPtEC1: 6.1072e-09 - PileUpPtEC2: -9.4148e-11 - PileUpPtRef: 6.8161e-07 - Pref: -1.2175e-06 - PU: 1.4681e-07 - RelativeBal: 8.1094e-06 - RelativeFSR: 1.1998e-05 - RelativeJEREC1: 2.7336e-08 - RelativeJEREC2: 8.7755e-09 - RelativePtBB: 4.8839e-06 - RelativePtEC1: 2.1682e-09 - RelativePtEC2: -7.3345e-11 - RelativeSample: -4.1714e-06 - RelativeStatEC: 2.3167e-08 - RelativeStatFSR: 6.9496e-07 - SinglePionECAL: 3.0177e-06 - SinglePionHCAL: 2.0574e-06 - TimePtEta: 1.7763e-05 - Lumi: 5.6912e-06 - model: 1.0327e-06 -- all uncorr. unc.: 8.226e-06 - AbsoluteMPFBias: 3.9138e-06 - AbsoluteScale: 2.4188e-06 - fake: -6.6088e-09 - FlavorQCD: -2.3924e-06 - Fragmentation: -1.0895e-06 - JER: -9.7467e-07 - miss: 3.5455e-07 - PileUpDataMC: -6.1798e-08 - PileUpPtBB: -5.4535e-07 - PileUpPtEC1: 3.7994e-09 - PileUpPtEC2: -4.8955e-11 - PileUpPtRef: 3.7094e-07 - Pref: -3.8507e-07 - PU: 2.9801e-08 - RelativeBal: 3.3997e-06 - RelativeFSR: 5.3141e-06 - RelativeJEREC1: 1.9068e-08 - RelativeJEREC2: 5.998e-09 - RelativePtBB: 1.9969e-06 - RelativePtEC1: 9.7411e-10 - RelativePtEC2: -3.5958e-11 - RelativeSample: -1.8989e-06 - RelativeStatEC: 1.5765e-08 - RelativeStatFSR: 2.7718e-07 - SinglePionECAL: 1.2366e-06 - SinglePionHCAL: 8.724e-07 - TimePtEta: 7.1432e-06 - Lumi: 2.179e-06 - model: 7.7019e-07 -- all uncorr. unc.: 4.6041e-06 - AbsoluteMPFBias: 1.3898e-06 - AbsoluteScale: 8.6263e-07 - fake: -3.5618e-09 - FlavorQCD: -9.5962e-07 - Fragmentation: -3.8698e-07 - JER: -3.7552e-07 - miss: 1.2472e-07 - PileUpDataMC: -4.9848e-08 - PileUpPtBB: -2.0777e-07 - PileUpPtEC1: 1.9333e-09 - PileUpPtEC2: -2.2027e-11 - PileUpPtRef: 1.6739e-07 - Pref: -1.1211e-07 - PU: -6.6579e-09 - RelativeBal: 1.2646e-06 - RelativeFSR: 2.0649e-06 - RelativeJEREC1: 1.0375e-08 - RelativeJEREC2: 3.2212e-09 - RelativePtBB: 7.1719e-07 - RelativePtEC1: 3.8023e-10 - RelativePtEC2: -1.5699e-11 - RelativeSample: -7.5068e-07 - RelativeStatEC: 8.4706e-09 - RelativeStatFSR: 9.7384e-08 - SinglePionECAL: 4.4546e-07 - SinglePionHCAL: 3.2489e-07 - TimePtEta: 2.5333e-06 - Lumi: 7.353e-07 - model: 1.8874e-07 -- all uncorr. unc.: 2.4809e-06 - AbsoluteMPFBias: 4.6234e-07 - AbsoluteScale: 2.8823e-07 - fake: -1.6681e-09 - FlavorQCD: -3.5207e-07 - Fragmentation: -1.282e-07 - JER: -1.3559e-07 - miss: 4.0897e-08 - PileUpDataMC: -2.6855e-08 - PileUpPtBB: -7.3309e-08 - PileUpPtEC1: 8.7251e-10 - PileUpPtEC2: -9.0886e-12 + Lumi: 7.99670000e-03 + model: 2.01950000e-03 +- all uncorr. unc.: 9.07050000e-04 + AbsoluteMPFBias: 4.19480000e-03 + AbsoluteScale: 2.53740000e-03 + fake: 2.53360000e-07 + FlavorQCD: 1.44270000e-03 + Fragmentation: -8.80460000e-04 + JER: -1.03760000e-03 + miss: 3.27300000e-04 + PileUpDataMC: 3.40580000e-04 + PileUpPtBB: -1.04790000e-04 + PileUpPtEC1: -1.70690000e-07 + PileUpPtEC2: -1.61570000e-08 + PileUpPtRef: -1.72440000e-04 + Pref: -1.07610000e-03 + PU: 1.18030000e-04 + RelativeBal: 3.10180000e-03 + RelativeFSR: 1.86610000e-03 + RelativeJEREC1: 1.33460000e-07 + RelativeJEREC2: -2.70340000e-07 + RelativePtBB: 1.52450000e-03 + RelativePtEC1: 1.52480000e-07 + RelativePtEC2: -2.33190000e-08 + RelativeSample: 7.03290000e-05 + RelativeStatEC: 3.26710000e-07 + RelativeStatFSR: 2.98010000e-04 + SinglePionECAL: 9.47170000e-04 + SinglePionHCAL: 5.03050000e-04 + TimePtEta: 7.69050000e-03 + Lumi: 3.28520000e-03 + model: 7.93420000e-04 +- all uncorr. unc.: 4.31220000e-04 + AbsoluteMPFBias: 1.80320000e-03 + AbsoluteScale: 1.09160000e-03 + fake: 3.05500000e-07 + FlavorQCD: 3.47060000e-04 + Fragmentation: -4.09270000e-04 + JER: -4.17190000e-04 + miss: 1.46930000e-04 + PileUpDataMC: 1.29740000e-04 + PileUpPtBB: -7.42450000e-05 + PileUpPtEC1: -1.24650000e-07 + PileUpPtEC2: -6.34760000e-09 + PileUpPtRef: -6.33030000e-05 + Pref: -4.15180000e-04 + PU: 5.31650000e-05 + RelativeBal: 1.33740000e-03 + RelativeFSR: 1.00710000e-03 + RelativeJEREC1: -5.95350000e-07 + RelativeJEREC2: -2.86570000e-07 + RelativePtBB: 7.08420000e-04 + RelativePtEC1: 1.06870000e-07 + RelativePtEC2: -9.87300000e-09 + RelativeSample: -1.06190000e-04 + RelativeStatEC: -3.48040000e-07 + RelativeStatFSR: 1.29220000e-04 + SinglePionECAL: 4.41520000e-04 + SinglePionHCAL: 2.42260000e-04 + TimePtEta: 3.30330000e-03 + Lumi: 1.36460000e-03 + model: 2.75070000e-04 +- all uncorr. unc.: 2.18420000e-04 + AbsoluteMPFBias: 7.71160000e-04 + AbsoluteScale: 4.67550000e-04 + fake: 1.87300000e-07 + FlavorQCD: 3.81380000e-05 + Fragmentation: -1.86060000e-04 + JER: -1.69500000e-04 + miss: 6.51530000e-05 + PileUpDataMC: 4.85920000e-05 + PileUpPtBB: -4.36080000e-05 + PileUpPtEC1: -7.28490000e-08 + PileUpPtEC2: -2.63780000e-09 + PileUpPtRef: -1.92740000e-05 + Pref: -1.51010000e-04 + PU: 2.31860000e-05 + RelativeBal: 5.75920000e-04 + RelativeFSR: 5.15560000e-04 + RelativeJEREC1: -4.61910000e-07 + RelativeJEREC2: -1.69950000e-07 + RelativePtBB: 3.23200000e-04 + RelativePtEC1: 6.54390000e-08 + RelativePtEC2: -4.20130000e-09 + RelativeSample: -9.68120000e-05 + RelativeStatEC: -3.01050000e-07 + RelativeStatFSR: 5.56010000e-05 + SinglePionECAL: 2.01150000e-04 + SinglePionHCAL: 1.14490000e-04 + TimePtEta: 1.40480000e-03 + Lumi: 5.62290000e-04 + model: 1.08150000e-04 +- all uncorr. unc.: 1.20160000e-04 + AbsoluteMPFBias: 3.31830000e-04 + AbsoluteScale: 2.01610000e-04 + fake: 8.11230000e-08 + FlavorQCD: -3.06330000e-05 + Fragmentation: -8.39200000e-05 + JER: -7.03330000e-05 + miss: 2.88510000e-05 + PileUpDataMC: 1.78010000e-05 + PileUpPtBB: -2.41370000e-05 + PileUpPtEC1: -3.87280000e-08 + PileUpPtEC2: 1.22320000e-09 + PileUpPtRef: -3.95000000e-06 + Pref: -5.89630000e-05 + PU: 9.84760000e-06 + RelativeBal: 2.50010000e-04 + RelativeFSR: 2.56770000e-04 + RelativeJEREC1: -2.19140000e-07 + RelativeJEREC2: -7.20350000e-08 + RelativePtBB: 1.46660000e-04 + RelativePtEC1: 3.71800000e-08 + RelativePtEC2: -1.75910000e-09 + RelativeSample: -6.20330000e-05 + RelativeStatEC: -1.40660000e-07 + RelativeStatFSR: 2.40040000e-05 + SinglePionECAL: 9.08760000e-05 + SinglePionHCAL: 5.37900000e-05 + TimePtEta: 6.01590000e-04 + Lumi: 2.32530000e-04 + model: 4.39580000e-05 +- all uncorr. unc.: 6.95910000e-05 + AbsoluteMPFBias: 1.42090000e-04 + AbsoluteScale: 8.65550000e-05 + fake: 2.04520000e-08 + FlavorQCD: -3.06650000e-05 + Fragmentation: -3.72340000e-05 + JER: -2.94360000e-05 + miss: 1.26200000e-05 + PileUpDataMC: 6.14730000e-06 + PileUpPtBB: -1.25150000e-05 + PileUpPtEC1: 1.93260000e-08 + PileUpPtEC2: 6.25750000e-10 + PileUpPtRef: 7.96790000e-07 + Pref: -2.28080000e-05 + PU: 3.99700000e-06 + RelativeBal: 1.08750000e-04 + RelativeFSR: 1.25120000e-04 + RelativeJEREC1: -5.95300000e-08 + RelativeJEREC2: -1.73930000e-08 + RelativePtBB: 6.55810000e-05 + RelativePtEC1: 1.98940000e-08 + RelativePtEC2: -7.38320000e-10 + RelativeSample: -3.55560000e-05 + RelativeStatEC: -3.09710000e-08 + RelativeStatFSR: 1.02850000e-05 + SinglePionECAL: 4.04420000e-05 + SinglePionHCAL: 2.48960000e-05 + TimePtEta: 2.58500000e-04 + Lumi: 9.54700000e-05 + model: 1.46880000e-05 +- all uncorr. unc.: 4.13370000e-05 + AbsoluteMPFBias: 6.11220000e-05 + AbsoluteScale: 3.73480000e-05 + fake: -5.09210000e-09 + FlavorQCD: -2.01410000e-05 + Fragmentation: -1.64390000e-05 + JER: -1.25200000e-05 + miss: 5.50740000e-06 + PileUpDataMC: 1.91970000e-06 + PileUpPtBB: -6.26250000e-06 + PileUpPtEC1: 1.01020000e-08 + PileUpPtEC2: 3.43960000e-10 + PileUpPtRef: 1.53320000e-06 + Pref: -7.73980000e-06 + PU: 1.54420000e-06 + RelativeBal: 4.78210000e-05 + RelativeFSR: 6.08340000e-05 + RelativeJEREC1: 1.60180000e-08 + RelativeJEREC2: 5.21200000e-09 + RelativePtBB: 2.92150000e-05 + RelativePtEC1: 1.02760000e-08 + RelativePtEC2: -3.40670000e-10 + RelativeSample: -1.90420000e-05 + RelativeStatEC: 1.76450000e-08 + RelativeStatFSR: 4.41560000e-06 + SinglePionECAL: 1.80150000e-05 + SinglePionHCAL: 1.14760000e-05 + TimePtEta: 1.11450000e-04 + Lumi: 3.92920000e-05 + model: 7.36820000e-06 +- all uncorr. unc.: 2.42740000e-05 + AbsoluteMPFBias: 2.44650000e-05 + AbsoluteScale: 1.50010000e-05 + fake: -1.11510000e-08 + FlavorQCD: -1.05990000e-05 + Fragmentation: -6.69910000e-06 + JER: -5.25520000e-06 + miss: 2.22160000e-06 + PileUpDataMC: 4.34400000e-07 + PileUpPtBB: -2.83330000e-06 + PileUpPtEC1: 8.82240000e-09 + PileUpPtEC2: 1.80620000e-10 + PileUpPtRef: 1.14270000e-06 + Pref: -3.04000000e-06 + PU: 5.12630000e-07 + RelativeBal: 1.96950000e-05 + RelativeFSR: 2.72230000e-05 + RelativeJEREC1: 3.09220000e-08 + RelativeJEREC2: 1.03380000e-08 + RelativePtBB: 1.20220000e-05 + RelativePtEC1: 4.79220000e-09 + RelativePtEC2: -1.55220000e-10 + RelativeSample: -9.07650000e-06 + RelativeStatEC: 2.79690000e-08 + RelativeStatFSR: 1.75960000e-06 + SinglePionECAL: 7.41820000e-06 + SinglePionHCAL: 4.88550000e-06 + TimePtEta: 4.46650000e-05 + Lumi: 1.50180000e-05 + model: 3.91830000e-06 +- all uncorr. unc.: 1.43180000e-05 + AbsoluteMPFBias: 9.72700000e-06 + AbsoluteScale: 5.98700000e-06 + fake: -9.60790000e-09 + FlavorQCD: -5.12600000e-06 + Fragmentation: -2.69340000e-06 + JER: -2.24100000e-06 + miss: 8.84770000e-07 + PileUpDataMC: 2.47780000e-08 + PileUpPtBB: -1.24610000e-06 + PileUpPtEC1: 6.10720000e-09 + PileUpPtEC2: -9.41480000e-11 + PileUpPtRef: 6.81610000e-07 + Pref: -1.21750000e-06 + PU: 1.46810000e-07 + RelativeBal: 8.10940000e-06 + RelativeFSR: 1.19980000e-05 + RelativeJEREC1: 2.73360000e-08 + RelativeJEREC2: 8.77550000e-09 + RelativePtBB: 4.88390000e-06 + RelativePtEC1: 2.16820000e-09 + RelativePtEC2: -7.33450000e-11 + RelativeSample: -4.17140000e-06 + RelativeStatEC: 2.31670000e-08 + RelativeStatFSR: 6.94960000e-07 + SinglePionECAL: 3.01770000e-06 + SinglePionHCAL: 2.05740000e-06 + TimePtEta: 1.77630000e-05 + Lumi: 5.69120000e-06 + model: 1.03270000e-06 +- all uncorr. unc.: 8.22600000e-06 + AbsoluteMPFBias: 3.91380000e-06 + AbsoluteScale: 2.41880000e-06 + fake: -6.60880000e-09 + FlavorQCD: -2.39240000e-06 + Fragmentation: -1.08950000e-06 + JER: -9.74670000e-07 + miss: 3.54550000e-07 + PileUpDataMC: -6.17980000e-08 + PileUpPtBB: -5.45350000e-07 + PileUpPtEC1: 3.79940000e-09 + PileUpPtEC2: -4.89550000e-11 + PileUpPtRef: 3.70940000e-07 + Pref: -3.85070000e-07 + PU: 2.98010000e-08 + RelativeBal: 3.39970000e-06 + RelativeFSR: 5.31410000e-06 + RelativeJEREC1: 1.90680000e-08 + RelativeJEREC2: 5.99800000e-09 + RelativePtBB: 1.99690000e-06 + RelativePtEC1: 9.74110000e-10 + RelativePtEC2: -3.59580000e-11 + RelativeSample: -1.89890000e-06 + RelativeStatEC: 1.57650000e-08 + RelativeStatFSR: 2.77180000e-07 + SinglePionECAL: 1.23660000e-06 + SinglePionHCAL: 8.72400000e-07 + TimePtEta: 7.14320000e-06 + Lumi: 2.17900000e-06 + model: 7.70190000e-07 +- all uncorr. unc.: 4.60410000e-06 + AbsoluteMPFBias: 1.38980000e-06 + AbsoluteScale: 8.62630000e-07 + fake: -3.56180000e-09 + FlavorQCD: -9.59620000e-07 + Fragmentation: -3.86980000e-07 + JER: -3.75520000e-07 + miss: 1.24720000e-07 + PileUpDataMC: -4.98480000e-08 + PileUpPtBB: -2.07770000e-07 + PileUpPtEC1: 1.93330000e-09 + PileUpPtEC2: -2.20270000e-11 + PileUpPtRef: 1.67390000e-07 + Pref: -1.12110000e-07 + PU: -6.65790000e-09 + RelativeBal: 1.26460000e-06 + RelativeFSR: 2.06490000e-06 + RelativeJEREC1: 1.03750000e-08 + RelativeJEREC2: 3.22120000e-09 + RelativePtBB: 7.17190000e-07 + RelativePtEC1: 3.80230000e-10 + RelativePtEC2: -1.56990000e-11 + RelativeSample: -7.50680000e-07 + RelativeStatEC: 8.47060000e-09 + RelativeStatFSR: 9.73840000e-08 + SinglePionECAL: 4.45460000e-07 + SinglePionHCAL: 3.24890000e-07 + TimePtEta: 2.53330000e-06 + Lumi: 7.35300000e-07 + model: 1.88740000e-07 +- all uncorr. unc.: 2.48090000e-06 + AbsoluteMPFBias: 4.62340000e-07 + AbsoluteScale: 2.88230000e-07 + fake: -1.66810000e-09 + FlavorQCD: -3.52070000e-07 + Fragmentation: -1.28200000e-07 + JER: -1.35590000e-07 + miss: 4.08970000e-08 + PileUpDataMC: -2.68550000e-08 + PileUpPtBB: -7.33090000e-08 + PileUpPtEC1: 8.72510000e-10 + PileUpPtEC2: -9.08860000e-12 PileUpPtRef: 6.78e-08 - Pref: -1.9309e-08 - PU: -7.5127e-09 - RelativeBal: 4.4261e-07 - RelativeFSR: 7.4755e-07 - RelativeJEREC1: 4.8927e-09 - RelativeJEREC2: 1.5052e-09 - RelativePtBB: 2.4027e-07 - RelativePtEC1: 1.372e-10 - RelativePtEC2: -6.4051e-12 - RelativeSample: -2.7442e-07 - RelativeStatEC: 3.9656e-09 - RelativeStatFSR: 3.1997e-08 - SinglePionECAL: 1.4982e-07 - SinglePionHCAL: 1.1282e-07 - TimePtEta: 8.4108e-07 - Lumi: 2.3218e-07 - model: 1.3312e-07 -- all uncorr. unc.: 1.2423e-06 - AbsoluteMPFBias: 1.1593e-07 - AbsoluteScale: 7.2599e-08 - fake: -5.5898e-10 - FlavorQCD: -9.5637e-08 - Fragmentation: -3.1892e-08 - JER: -3.6849e-08 - miss: 1.0062e-08 - PileUpDataMC: -9.5514e-09 - PileUpPtBB: -1.9313e-08 - PileUpPtEC1: 2.8494e-10 - PileUpPtEC2: -2.7706e-12 - PileUpPtRef: 2.007e-08 - Pref: 1.7347e-09 - PU: -3.4009e-09 - RelativeBal: 1.1718e-07 - RelativeFSR: 2.0305e-07 - RelativeJEREC1: 1.6483e-09 - RelativeJEREC2: 5.0364e-10 - RelativePtBB: 6.0451e-08 + Pref: -1.93090000e-08 + PU: -7.51270000e-09 + RelativeBal: 4.42610000e-07 + RelativeFSR: 7.47550000e-07 + RelativeJEREC1: 4.89270000e-09 + RelativeJEREC2: 1.50520000e-09 + RelativePtBB: 2.40270000e-07 + RelativePtEC1: 1.37200000e-10 + RelativePtEC2: -6.40510000e-12 + RelativeSample: -2.74420000e-07 + RelativeStatEC: 3.96560000e-09 + RelativeStatFSR: 3.19970000e-08 + SinglePionECAL: 1.49820000e-07 + SinglePionHCAL: 1.12820000e-07 + TimePtEta: 8.41080000e-07 + Lumi: 2.32180000e-07 + model: 1.33120000e-07 +- all uncorr. unc.: 1.24230000e-06 + AbsoluteMPFBias: 1.15930000e-07 + AbsoluteScale: 7.25990000e-08 + fake: -5.58980000e-10 + FlavorQCD: -9.56370000e-08 + Fragmentation: -3.18920000e-08 + JER: -3.68490000e-08 + miss: 1.00620000e-08 + PileUpDataMC: -9.55140000e-09 + PileUpPtBB: -1.93130000e-08 + PileUpPtEC1: 2.84940000e-10 + PileUpPtEC2: -2.77060000e-12 + PileUpPtRef: 2.00700000e-08 + Pref: 1.73470000e-09 + PU: -3.40090000e-09 + RelativeBal: 1.17180000e-07 + RelativeFSR: 2.03050000e-07 + RelativeJEREC1: 1.64830000e-09 + RelativeJEREC2: 5.03640000e-10 + RelativePtBB: 6.04510000e-08 RelativePtEC1: 3.69e-11 - RelativePtEC2: -1.9532e-12 - RelativeSample: -7.4847e-08 - RelativeStatEC: 1.3297e-09 - RelativeStatFSR: 7.9122e-09 - SinglePionECAL: 3.7874e-08 - SinglePionHCAL: 2.9412e-08 - TimePtEta: 2.1036e-07 - Lumi: 5.5209e-08 - model: 1.2165e-08 + RelativePtEC2: -1.95320000e-12 + RelativeSample: -7.48470000e-08 + RelativeStatEC: 1.32970000e-09 + RelativeStatFSR: 7.91220000e-09 + SinglePionECAL: 3.78740000e-08 + SinglePionHCAL: 2.94120000e-08 + TimePtEta: 2.10360000e-07 + Lumi: 5.52090000e-08 + model: 1.21650000e-08 - all uncorr. unc.: 68.223 AbsoluteMPFBias: 159.87 AbsoluteScale: 102.4 @@ -800,7 +800,7 @@ bins: RelativeJEREC1: 1.3355 RelativeJEREC2: 0.96182 RelativePtBB: -14.943 - RelativePtEC1: -0.013167 + RelativePtEC1: -1.31670000e-02 RelativePtEC2: 0.01713 RelativeSample: 104.33 RelativeStatEC: 1.9083 @@ -813,7 +813,7 @@ bins: - all uncorr. unc.: 18.658 AbsoluteMPFBias: 38.193 AbsoluteScale: 23.472 - fake: -0.028624 + fake: -2.86240000e-02 FlavorQCD: 88.436 Fragmentation: 4.5782 JER: -31.54 @@ -821,7 +821,7 @@ bins: PileUpDataMC: 15.441 PileUpPtBB: 4.2714 PileUpPtEC1: 0.017487 - PileUpPtEC2: 0.0026237 + PileUpPtEC2: 2.62370000e-03 PileUpPtRef: 4.4757 Pref: -13.476 PU: -3.4823 @@ -830,8 +830,8 @@ bins: RelativeJEREC1: -0.18903 RelativeJEREC2: 0.044404 RelativePtBB: -2.0232 - RelativePtEC1: -0.0039199 - RelativePtEC2: 0.0025417 + RelativePtEC1: -3.91990000e-03 + RelativePtEC2: 2.54170000e-03 RelativeSample: 15.35 RelativeStatEC: 0.044857 RelativeStatFSR: 2.7901 @@ -843,27 +843,27 @@ bins: - all uncorr. unc.: 4.0051 AbsoluteMPFBias: 10.438 AbsoluteScale: 6.2713 - fake: 0.0059867 + fake: 5.98670000e-03 FlavorQCD: 20.649 Fragmentation: 0.60413 JER: -7.1573 miss: 0.42996 PileUpDataMC: 3.2035 PileUpPtBB: 0.88058 - PileUpPtEC1: 0.0038264 - PileUpPtEC2: 0.00037396 + PileUpPtEC1: 3.82640000e-03 + PileUpPtEC2: 3.73960000e-04 PileUpPtRef: 0.8599 Pref: -5.2387 PU: -0.45859 RelativeBal: 1.278 RelativeFSR: -2.0172 - RelativeJEREC1: -0.061692 - RelativeJEREC2: -0.0034363 + RelativeJEREC1: -6.16920000e-02 + RelativeJEREC2: -3.43630000e-03 RelativePtBB: 0.25072 - RelativePtEC1: -0.0012535 - RelativePtEC2: 0.00042728 + RelativePtEC1: -1.25350000e-03 + RelativePtEC2: 4.27280000e-04 RelativeSample: 2.0877 - RelativeStatEC: -0.031176 + RelativeStatEC: -3.11760000e-02 RelativeStatFSR: 0.73354 SinglePionECAL: -0.79737 SinglePionHCAL: -0.16725 @@ -873,29 +873,29 @@ bins: - all uncorr. unc.: 1.3451 AbsoluteMPFBias: 3.1605 AbsoluteScale: 1.8831 - fake: 0.0023507 + fake: 2.35070000e-03 FlavorQCD: 5.4134 Fragmentation: 0.022604 JER: -1.8366 miss: 0.11493 PileUpDataMC: 0.765 PileUpPtBB: 0.19047 - PileUpPtEC1: 0.0012682 - PileUpPtEC2: 5.1168e-05 + PileUpPtEC1: 1.26820000e-03 + PileUpPtEC2: 5.11680000e-05 PileUpPtRef: 0.16091 Pref: -1.8536 PU: -0.04626 RelativeBal: 0.43274 RelativeFSR: -0.56451 - RelativeJEREC1: -0.016872 - RelativeJEREC2: -0.0018668 + RelativeJEREC1: -1.68720000e-02 + RelativeJEREC2: -1.86680000e-03 RelativePtBB: 0.25143 - RelativePtEC1: -0.00043037 - RelativePtEC2: 8.2616e-05 + RelativePtEC1: -4.30370000e-04 + RelativePtEC2: 8.26160000e-05 RelativeSample: 0.063013 - RelativeStatEC: -0.010311 + RelativeStatEC: -1.03110000e-02 RelativeStatFSR: 0.21965 - SinglePionECAL: -0.060339 + SinglePionECAL: -6.03390000e-02 SinglePionHCAL: 0.040338 TimePtEta: 5.9942 Lumi: 2.8683 @@ -903,27 +903,27 @@ bins: - all uncorr. unc.: 0.34801 AbsoluteMPFBias: 1.0507 AbsoluteScale: 0.62551 - fake: 0.00055025 + fake: 5.50250000e-04 FlavorQCD: 1.5562 Fragmentation: -0.03888 JER: -0.53743 miss: 0.037545 PileUpDataMC: 0.20526 PileUpPtBB: 0.040796 - PileUpPtEC1: 0.00042691 - PileUpPtEC2: 5.3899e-06 + PileUpPtEC1: 4.26910000e-04 + PileUpPtEC2: 5.38990000e-06 PileUpPtRef: 0.024402 Pref: -0.66386 - PU: 0.0083465 + PU: 8.34650000e-03 RelativeBal: 0.15965 RelativeFSR: -0.17102 - RelativeJEREC1: -0.0040411 - RelativeJEREC2: -0.00045208 + RelativeJEREC1: -4.04110000e-03 + RelativeJEREC2: -4.52080000e-04 RelativePtBB: 0.13701 - RelativePtEC1: -0.00015852 - RelativePtEC2: 2.1601e-05 + RelativePtEC1: -1.58520000e-04 + RelativePtEC2: 2.16010000e-05 RelativeSample: -0.20898 - RelativeStatEC: -0.0026682 + RelativeStatEC: -2.66820000e-03 RelativeStatFSR: 0.073188 SinglePionECAL: 0.032637 SinglePionHCAL: 0.033337 @@ -933,27 +933,27 @@ bins: - all uncorr. unc.: 0.10156 AbsoluteMPFBias: 0.3664 AbsoluteScale: 0.21881 - fake: 8.5484e-05 + fake: 8.54840000e-05 FlavorQCD: 0.46419 - Fragmentation: -0.027993 + Fragmentation: -2.79930000e-02 JER: -0.17211 miss: 0.013785 PileUpDataMC: 0.05864 - PileUpPtBB: 0.0073098 - PileUpPtEC1: 0.00017454 - PileUpPtEC2: -9.7956e-07 - PileUpPtRef: -4.476e-05 + PileUpPtBB: 7.30980000e-03 + PileUpPtEC1: 1.74540000e-04 + PileUpPtEC2: -9.79560000e-07 + PileUpPtRef: -4.47600000e-05 Pref: -0.23202 - PU: 0.0070816 + PU: 7.08160000e-03 RelativeBal: 0.061987 - RelativeFSR: -0.053246 - RelativeJEREC1: -0.00085847 - RelativeJEREC2: -6.5662e-05 + RelativeFSR: -5.32460000e-02 + RelativeJEREC1: -8.58470000e-04 + RelativeJEREC2: -6.56620000e-05 RelativePtBB: 0.064644 - RelativePtEC1: -6.0081e-05 - RelativePtEC2: 5.7097e-06 + RelativePtEC1: -6.00810000e-05 + RelativePtEC2: 5.70970000e-06 RelativeSample: -0.13276 - RelativeStatEC: -0.00060567 + RelativeStatEC: -6.05670000e-04 RelativeStatFSR: 0.025721 SinglePionECAL: 0.02755 SinglePionHCAL: 0.017533 @@ -963,453 +963,453 @@ bins: - all uncorr. unc.: 0.035971 AbsoluteMPFBias: 0.13814 AbsoluteScale: 0.082901 - fake: 1.0311e-06 + fake: 1.03110000e-06 FlavorQCD: 0.14672 - Fragmentation: -0.015457 - JER: -0.058879 - miss: 0.0056681 + Fragmentation: -1.54570000e-02 + JER: -5.88790000e-02 + miss: 5.66810000e-03 PileUpDataMC: 0.018277 - PileUpPtBB: 0.00050628 - PileUpPtEC1: 6.6469e-05 - PileUpPtEC2: -8.8741e-07 - PileUpPtRef: -0.0025865 - Pref: -0.073026 - PU: 0.0036145 + PileUpPtBB: 5.06280000e-04 + PileUpPtEC1: 6.64690000e-05 + PileUpPtEC2: -8.87410000e-07 + PileUpPtRef: -2.58650000e-03 + Pref: -7.30260000e-02 + PU: 3.61450000e-03 RelativeBal: 0.025598 - RelativeFSR: -0.017432 - RelativeJEREC1: -0.00017739 - RelativeJEREC2: 4.301e-06 + RelativeFSR: -1.74320000e-02 + RelativeJEREC1: -1.77390000e-04 + RelativeJEREC2: 4.30100000e-06 RelativePtBB: 0.03014 - RelativePtEC1: -2.4222e-05 - RelativePtEC2: 1.5227e-06 - RelativeSample: -0.070877 - RelativeStatEC: -0.00016655 - RelativeStatFSR: 0.0098677 + RelativePtEC1: -2.42220000e-05 + RelativePtEC2: 1.52270000e-06 + RelativeSample: -7.08770000e-02 + RelativeStatEC: -1.66550000e-04 + RelativeStatFSR: 9.86770000e-03 SinglePionECAL: 0.015926 - SinglePionHCAL: 0.0086675 + SinglePionHCAL: 8.66750000e-03 TimePtEta: 0.26432 Lumi: 0.11921 model: 0.044687 - all uncorr. unc.: 0.013709 AbsoluteMPFBias: 0.052391 AbsoluteScale: 0.031605 - fake: -5.5233e-06 + fake: -5.52330000e-06 FlavorQCD: 0.045395 - Fragmentation: -0.0075072 + Fragmentation: -7.50720000e-03 JER: -0.0199 - miss: 0.0023689 - PileUpDataMC: 0.0057754 - PileUpPtBB: -0.00050845 - PileUpPtEC1: 2.2728e-05 - PileUpPtEC2: -4.2356e-07 - PileUpPtRef: -0.0016786 - Pref: -0.022631 - PU: 0.0015626 + miss: 2.36890000e-03 + PileUpDataMC: 5.77540000e-03 + PileUpPtBB: -5.08450000e-04 + PileUpPtEC1: 2.27280000e-05 + PileUpPtEC2: -4.23560000e-07 + PileUpPtRef: -1.67860000e-03 + Pref: -2.26310000e-02 + PU: 1.56260000e-03 RelativeBal: 0.010417 - RelativeFSR: -0.0056137 - RelativeJEREC1: -5.2236e-05 - RelativeJEREC2: 6.0054e-06 + RelativeFSR: -5.61370000e-03 + RelativeJEREC1: -5.22360000e-05 + RelativeJEREC2: 6.00540000e-06 RelativePtBB: 0.013409 - RelativePtEC1: -9.674e-06 - RelativePtEC2: 3.5917e-07 - RelativeSample: -0.034107 - RelativeStatEC: -5.4861e-05 - RelativeStatFSR: 0.0037971 - SinglePionECAL: 0.0079011 - SinglePionHCAL: 0.0040378 + RelativePtEC1: -9.67400000e-06 + RelativePtEC2: 3.59170000e-07 + RelativeSample: -3.41070000e-02 + RelativeStatEC: -5.48610000e-05 + RelativeStatFSR: 3.79710000e-03 + SinglePionECAL: 7.90110000e-03 + SinglePionHCAL: 4.03780000e-03 TimePtEta: 0.099852 Lumi: 0.04425 model: 0.016471 -- all uncorr. unc.: 0.0048849 +- all uncorr. unc.: 4.88490000e-03 AbsoluteMPFBias: 0.02122 AbsoluteScale: 0.012859 - fake: -2.3149e-06 + fake: -2.31490000e-06 FlavorQCD: 0.014409 - Fragmentation: -0.003622 - JER: -0.0070582 - miss: 0.0010539 - PileUpDataMC: 0.0019589 - PileUpPtBB: -0.00042684 - PileUpPtEC1: 7.3288e-06 - PileUpPtEC2: -1.8109e-07 - PileUpPtRef: -0.00084906 - Pref: -0.0073535 - PU: 0.00066526 - RelativeBal: 0.0044503 - RelativeFSR: -0.0018499 - RelativeJEREC1: -1.6655e-05 - RelativeJEREC2: 2.2611e-06 - RelativePtBB: 0.0061597 - RelativePtEC1: -4.0699e-06 - RelativePtEC2: 1.1566e-07 - RelativeSample: -0.016505 - RelativeStatEC: -1.9295e-05 - RelativeStatFSR: 0.0015475 - SinglePionECAL: 0.0038596 - SinglePionHCAL: 0.0019371 + Fragmentation: -3.62200000e-03 + JER: -7.05820000e-03 + miss: 1.05390000e-03 + PileUpDataMC: 1.95890000e-03 + PileUpPtBB: -4.26840000e-04 + PileUpPtEC1: 7.32880000e-06 + PileUpPtEC2: -1.81090000e-07 + PileUpPtRef: -8.49060000e-04 + Pref: -7.35350000e-03 + PU: 6.65260000e-04 + RelativeBal: 4.45030000e-03 + RelativeFSR: -1.84990000e-03 + RelativeJEREC1: -1.66550000e-05 + RelativeJEREC2: 2.26110000e-06 + RelativePtBB: 6.15970000e-03 + RelativePtEC1: -4.06990000e-06 + RelativePtEC2: 1.15660000e-07 + RelativeSample: -1.65050000e-02 + RelativeStatEC: -1.92950000e-05 + RelativeStatFSR: 1.54750000e-03 + SinglePionECAL: 3.85960000e-03 + SinglePionHCAL: 1.93710000e-03 TimePtEta: 0.040209 Lumi: 0.017449 - model: 0.0053062 + model: 5.30620000e-03 - all uncorr. unc.: 0.001932 - AbsoluteMPFBias: 0.0086588 - AbsoluteScale: 0.0052646 - fake: -2.8051e-07 - FlavorQCD: 0.0043367 - Fragmentation: -0.0016803 - JER: -0.0024974 - miss: 0.0004675 - PileUpDataMC: 0.00067152 - PileUpPtBB: -0.00023854 - PileUpPtEC1: 1.9523e-06 - PileUpPtEC2: -7.2941e-08 - PileUpPtRef: -0.00037001 - Pref: -0.0024716 - PU: 0.00027503 - RelativeBal: 0.0018868 - RelativeFSR: -0.00057444 - RelativeJEREC1: -5.4999e-06 - RelativeJEREC2: 2.0107e-07 - RelativePtBB: 0.0027824 - RelativePtEC1: -1.7036e-06 - RelativePtEC2: -5.5348e-08 - RelativeSample: -0.0077464 - RelativeStatEC: -6.9669e-06 - RelativeStatFSR: 0.00063008 - SinglePionECAL: 0.0018052 - SinglePionHCAL: 0.00091483 + AbsoluteMPFBias: 8.65880000e-03 + AbsoluteScale: 5.26460000e-03 + fake: -2.80510000e-07 + FlavorQCD: 4.33670000e-03 + Fragmentation: -1.68030000e-03 + JER: -2.49740000e-03 + miss: 4.67500000e-04 + PileUpDataMC: 6.71520000e-04 + PileUpPtBB: -2.38540000e-04 + PileUpPtEC1: 1.95230000e-06 + PileUpPtEC2: -7.29410000e-08 + PileUpPtRef: -3.70010000e-04 + Pref: -2.47160000e-03 + PU: 2.75030000e-04 + RelativeBal: 1.88680000e-03 + RelativeFSR: -5.74440000e-04 + RelativeJEREC1: -5.49990000e-06 + RelativeJEREC2: 2.01070000e-07 + RelativePtBB: 2.78240000e-03 + RelativePtEC1: -1.70360000e-06 + RelativePtEC2: -5.53480000e-08 + RelativeSample: -7.74640000e-03 + RelativeStatEC: -6.96690000e-06 + RelativeStatFSR: 6.30080000e-04 + SinglePionECAL: 1.80520000e-03 + SinglePionHCAL: 9.14830000e-04 TimePtEta: 0.016293 - Lumi: 0.0068907 - model: 0.0013733 -- all uncorr. unc.: 0.00085537 + Lumi: 6.89070000e-03 + model: 1.37330000e-03 +- all uncorr. unc.: 8.55370000e-04 AbsoluteMPFBias: 0.003632 - AbsoluteScale: 0.0022118 - fake: 2.9748e-07 - FlavorQCD: 0.0012166 - Fragmentation: -0.00077427 - JER: -0.00091523 - miss: 0.00021019 - PileUpDataMC: 0.00023745 - PileUpPtBB: -0.00011637 - PileUpPtEC1: 3.1057e-07 - PileUpPtEC2: -2.9969e-08 - PileUpPtRef: -0.00015325 - Pref: -0.00087095 - PU: 0.00011383 - RelativeBal: 0.00081121 - RelativeFSR: -0.00016489 - RelativeJEREC1: -2.3897e-06 - RelativeJEREC2: -3.3873e-07 + AbsoluteScale: 2.21180000e-03 + fake: 2.97480000e-07 + FlavorQCD: 1.21660000e-03 + Fragmentation: -7.74270000e-04 + JER: -9.15230000e-04 + miss: 2.10190000e-04 + PileUpDataMC: 2.37450000e-04 + PileUpPtBB: -1.16370000e-04 + PileUpPtEC1: 3.10570000e-07 + PileUpPtEC2: -2.99690000e-08 + PileUpPtRef: -1.53250000e-04 + Pref: -8.70950000e-04 + PU: 1.13830000e-04 + RelativeBal: 8.11210000e-04 + RelativeFSR: -1.64890000e-04 + RelativeJEREC1: -2.38970000e-06 + RelativeJEREC2: -3.38730000e-07 RelativePtBB: 0.001271 - RelativePtEC1: -7.2463e-07 - RelativePtEC2: -2.5119e-08 - RelativeSample: -0.0036374 - RelativeStatEC: -3.1738e-06 - RelativeStatFSR: 0.00026159 - SinglePionECAL: 0.00083667 - SinglePionHCAL: 0.00043507 - TimePtEta: 0.0067824 - Lumi: 0.0027811 - model: 0.00039323 -- all uncorr. unc.: 0.00040291 + RelativePtEC1: -7.24630000e-07 + RelativePtEC2: -2.51190000e-08 + RelativeSample: -3.63740000e-03 + RelativeStatEC: -3.17380000e-06 + RelativeStatFSR: 2.61590000e-04 + SinglePionECAL: 8.36670000e-04 + SinglePionHCAL: 4.35070000e-04 + TimePtEta: 6.78240000e-03 + Lumi: 2.78110000e-03 + model: 3.93230000e-04 +- all uncorr. unc.: 4.02910000e-04 AbsoluteMPFBias: 0.001547 - AbsoluteScale: 0.00094184 - fake: 2.9264e-07 - FlavorQCD: 0.0002822 - Fragmentation: -0.0003532 - JER: -0.00035572 - miss: 9.4576e-05 - PileUpDataMC: 8.5349e-05 - PileUpPtBB: -5.233e-05 - PileUpPtEC1: 1.0908e-07 - PileUpPtEC2: -1.2955e-08 - PileUpPtRef: -5.7273e-05 - Pref: -0.0003153 - PU: 4.6876e-05 - RelativeBal: 0.00035018 - RelativeFSR: -3.8316e-05 - RelativeJEREC1: -1.4638e-06 - RelativeJEREC2: -3.0749e-07 - RelativePtBB: 0.00058381 - RelativePtEC1: -3.0978e-07 - RelativePtEC2: -1.1393e-08 - RelativeSample: -0.0017018 - RelativeStatEC: -1.7259e-06 - RelativeStatFSR: 0.00010944 - SinglePionECAL: 0.00038333 - SinglePionHCAL: 0.00020716 - TimePtEta: 0.0028663 - Lumi: 0.0011331 - model: 0.0001101 -- all uncorr. unc.: 0.00020283 - AbsoluteMPFBias: 0.00065358 - AbsoluteScale: 0.00039709 - fake: 1.6167e-07 - FlavorQCD: 2.7662e-05 - Fragmentation: -0.00015666 - JER: -0.00014577 - miss: 4.1621e-05 - PileUpDataMC: 3.0395e-05 - PileUpPtBB: -2.1679e-05 - PileUpPtEC1: -1.5193e-07 - PileUpPtEC2: -5.9091e-09 - PileUpPtRef: -1.7508e-05 - Pref: -0.00011859 - PU: 1.8934e-05 - RelativeBal: 0.00014993 - RelativeFSR: -3.1664e-06 - RelativeJEREC1: -7.2463e-07 - RelativeJEREC2: -1.6439e-07 - RelativePtBB: 0.00026447 - RelativePtEC1: -1.3016e-07 - RelativePtEC2: -5.5362e-09 - RelativeSample: -0.00077888 - RelativeStatEC: -8.0822e-07 - RelativeStatFSR: 4.5097e-05 - SinglePionECAL: 0.0001706 - SinglePionHCAL: 9.6636e-05 - TimePtEta: 0.0012018 - Lumi: 0.00045538 - model: 2.8431e-06 -- all uncorr. unc.: 0.00011119 - AbsoluteMPFBias: 0.00027992 - AbsoluteScale: 0.00016941 - fake: 6.1657e-08 - FlavorQCD: -2.5998e-05 - Fragmentation: -6.929e-05 - JER: -6.2805e-05 - miss: 1.8318e-05 - PileUpDataMC: 1.0947e-05 - PileUpPtBB: -8.5718e-06 - PileUpPtEC1: -1.1045e-07 - PileUpPtEC2: -2.9101e-09 - PileUpPtRef: -3.2827e-06 - Pref: -4.4518e-05 - PU: 7.7278e-06 - RelativeBal: 6.4531e-05 - RelativeFSR: 4.8773e-06 - RelativeJEREC1: -2.8583e-07 - RelativeJEREC2: -6.0337e-08 - RelativePtBB: 0.00012102 - RelativePtEC1: -5.4994e-08 - RelativePtEC2: -2.9154e-09 - RelativeSample: -0.00035744 - RelativeStatEC: -3.1917e-07 - RelativeStatFSR: 1.8769e-05 - SinglePionECAL: 7.5662e-05 - SinglePionHCAL: 4.5175e-05 - TimePtEta: 0.00051102 - Lumi: 0.00018462 - model: -9.5374e-06 -- all uncorr. unc.: 6.3022e-05 - AbsoluteMPFBias: 0.00011535 - AbsoluteScale: 6.9435e-05 - fake: 9.3897e-09 - FlavorQCD: -2.4677e-05 - Fragmentation: -2.9093e-05 - JER: -2.884e-05 - miss: 7.6617e-06 - PileUpDataMC: 3.7746e-06 - PileUpPtBB: -3.0675e-06 - PileUpPtEC1: -6.3663e-08 - PileUpPtEC2: -1.4421e-09 - PileUpPtRef: 8.9305e-07 - Pref: -1.6944e-05 - PU: 3.1053e-06 - RelativeBal: 2.6529e-05 - RelativeFSR: 3.9499e-06 - RelativeJEREC1: -6.8233e-08 - RelativeJEREC2: -7.4615e-09 - RelativePtBB: 5.3175e-05 - RelativePtEC1: -2.2201e-08 - RelativePtEC2: -1.3853e-09 - RelativeSample: -0.0001565 - RelativeStatEC: -1.0491e-07 - RelativeStatFSR: 7.5271e-06 - SinglePionECAL: 3.1841e-05 - SinglePionHCAL: 2.0111e-05 - TimePtEta: 0.00020923 - Lumi: 7.1715e-05 - model: -1.2729e-05 -- all uncorr. unc.: 3.6451e-05 - AbsoluteMPFBias: 4.7111e-05 - AbsoluteScale: 2.8165e-05 - fake: -8.809e-09 - FlavorQCD: -1.5247e-05 - Fragmentation: -1.1974e-05 - JER: -1.3864e-05 - miss: 3.1408e-06 - PileUpDataMC: 1.2782e-06 - PileUpPtBB: -1.0001e-06 - PileUpPtEC1: -3.3029e-08 - PileUpPtEC2: -7.2372e-10 - PileUpPtRef: 1.4674e-06 - Pref: -5.6497e-06 - PU: 1.2538e-06 - RelativeBal: 1.074e-05 - RelativeFSR: 2.3259e-06 - RelativeJEREC1: 2.5791e-08 - RelativeJEREC2: 1.029e-08 - RelativePtBB: 2.3132e-05 - RelativePtEC1: -8.8436e-09 - RelativePtEC2: -6.2586e-10 - RelativeSample: -6.7466e-05 - RelativeStatEC: -4.8998e-08 - RelativeStatFSR: 2.9807e-06 - SinglePionECAL: 1.3129e-05 - SinglePionHCAL: 8.7929e-06 - TimePtEta: 8.4968e-05 - Lumi: 2.7509e-05 - model: -8.0407e-06 -- all uncorr. unc.: 2.0746e-05 - AbsoluteMPFBias: 1.8848e-05 - AbsoluteScale: 1.1179e-05 - fake: -1.12e-08 - FlavorQCD: -7.9569e-06 - Fragmentation: -4.7837e-06 - JER: -6.7208e-06 - miss: 1.2488e-06 - PileUpDataMC: 4.1788e-07 - PileUpPtBB: -2.7981e-07 - PileUpPtEC1: -1.5828e-08 - PileUpPtEC2: -3.5696e-10 - PileUpPtRef: 1.0924e-06 - Pref: -2.0421e-06 - PU: 5.037e-07 - RelativeBal: 4.2364e-06 - RelativeFSR: 1.1833e-06 - RelativeJEREC1: 2.8551e-08 - RelativeJEREC2: 1.212e-08 - RelativePtBB: 9.8515e-06 - RelativePtEC1: -3.435e-09 - RelativePtEC2: -2.8491e-10 - RelativeSample: -2.8347e-05 - RelativeStatEC: 2.2526e-08 - RelativeStatFSR: 1.1526e-06 - SinglePionECAL: 5.2537e-06 - SinglePionHCAL: 3.7358e-06 - TimePtEta: 3.3832e-05 - Lumi: 1.0306e-05 - model: -4.5072e-06 -- all uncorr. unc.: 1.151e-05 - AbsoluteMPFBias: 6.7168e-06 - AbsoluteScale: 3.9482e-06 - fake: -7.685e-09 - FlavorQCD: -3.4258e-06 - Fragmentation: -1.6895e-06 - JER: -2.9281e-06 - miss: 4.3834e-07 - PileUpDataMC: 1.1889e-07 - PileUpPtBB: -5.1834e-08 - PileUpPtEC1: -6.4929e-09 - PileUpPtEC2: -1.5565e-10 - PileUpPtRef: 5.8887e-07 - Pref: -4.2312e-07 - PU: 1.8305e-07 - RelativeBal: 1.4816e-06 - RelativeFSR: 5.0056e-07 - RelativeJEREC1: 2.1774e-08 - RelativeJEREC2: 8.1453e-09 - RelativePtBB: 3.7356e-06 - RelativePtEC1: -1.1831e-09 - RelativePtEC2: -1.2277e-10 - RelativeSample: -1.0568e-05 - RelativeStatEC: 1.683e-08 - RelativeStatFSR: 3.9596e-07 - SinglePionECAL: 1.8581e-06 - SinglePionHCAL: 1.4038e-06 - TimePtEta: 1.201e-05 - Lumi: 3.4302e-06 - model: -2.7986e-06 -- all uncorr. unc.: 6.3252e-06 - AbsoluteMPFBias: 2.5002e-06 - AbsoluteScale: 1.4555e-06 - fake: -4.5883e-09 - FlavorQCD: -1.4698e-06 - Fragmentation: -6.1936e-07 - JER: -1.3275e-06 - miss: 1.5944e-07 - PileUpDataMC: 3.4052e-08 - PileUpPtBB: -7.6455e-09 - PileUpPtEC1: -2.7029e-09 - PileUpPtEC2: -6.9982e-11 - PileUpPtRef: 2.995e-07 - Pref: -2.6477e-07 - PU: 7.0453e-08 - RelativeBal: 5.3912e-07 - RelativeFSR: 2.117e-07 - RelativeJEREC1: 1.3552e-08 - RelativeJEREC2: 4.8141e-09 - RelativePtBB: 1.4789e-06 - RelativePtEC1: -4.2406e-10 - RelativePtEC2: -5.4937e-11 - RelativeSample: -4.1025e-06 - RelativeStatEC: 1.0831e-08 - RelativeStatFSR: 1.4177e-07 + AbsoluteScale: 9.41840000e-04 + fake: 2.92640000e-07 + FlavorQCD: 2.82200000e-04 + Fragmentation: -3.53200000e-04 + JER: -3.55720000e-04 + miss: 9.45760000e-05 + PileUpDataMC: 8.53490000e-05 + PileUpPtBB: -5.23300000e-05 + PileUpPtEC1: 1.09080000e-07 + PileUpPtEC2: -1.29550000e-08 + PileUpPtRef: -5.72730000e-05 + Pref: -3.15300000e-04 + PU: 4.68760000e-05 + RelativeBal: 3.50180000e-04 + RelativeFSR: -3.83160000e-05 + RelativeJEREC1: -1.46380000e-06 + RelativeJEREC2: -3.07490000e-07 + RelativePtBB: 5.83810000e-04 + RelativePtEC1: -3.09780000e-07 + RelativePtEC2: -1.13930000e-08 + RelativeSample: -1.70180000e-03 + RelativeStatEC: -1.72590000e-06 + RelativeStatFSR: 1.09440000e-04 + SinglePionECAL: 3.83330000e-04 + SinglePionHCAL: 2.07160000e-04 + TimePtEta: 2.86630000e-03 + Lumi: 1.13310000e-03 + model: 1.10100000e-04 +- all uncorr. unc.: 2.02830000e-04 + AbsoluteMPFBias: 6.53580000e-04 + AbsoluteScale: 3.97090000e-04 + fake: 1.61670000e-07 + FlavorQCD: 2.76620000e-05 + Fragmentation: -1.56660000e-04 + JER: -1.45770000e-04 + miss: 4.16210000e-05 + PileUpDataMC: 3.03950000e-05 + PileUpPtBB: -2.16790000e-05 + PileUpPtEC1: -1.51930000e-07 + PileUpPtEC2: -5.90910000e-09 + PileUpPtRef: -1.75080000e-05 + Pref: -1.18590000e-04 + PU: 1.89340000e-05 + RelativeBal: 1.49930000e-04 + RelativeFSR: -3.16640000e-06 + RelativeJEREC1: -7.24630000e-07 + RelativeJEREC2: -1.64390000e-07 + RelativePtBB: 2.64470000e-04 + RelativePtEC1: -1.30160000e-07 + RelativePtEC2: -5.53620000e-09 + RelativeSample: -7.78880000e-04 + RelativeStatEC: -8.08220000e-07 + RelativeStatFSR: 4.50970000e-05 + SinglePionECAL: 1.70600000e-04 + SinglePionHCAL: 9.66360000e-05 + TimePtEta: 1.20180000e-03 + Lumi: 4.55380000e-04 + model: 2.84310000e-06 +- all uncorr. unc.: 1.11190000e-04 + AbsoluteMPFBias: 2.79920000e-04 + AbsoluteScale: 1.69410000e-04 + fake: 6.16570000e-08 + FlavorQCD: -2.59980000e-05 + Fragmentation: -6.92900000e-05 + JER: -6.28050000e-05 + miss: 1.83180000e-05 + PileUpDataMC: 1.09470000e-05 + PileUpPtBB: -8.57180000e-06 + PileUpPtEC1: -1.10450000e-07 + PileUpPtEC2: -2.91010000e-09 + PileUpPtRef: -3.28270000e-06 + Pref: -4.45180000e-05 + PU: 7.72780000e-06 + RelativeBal: 6.45310000e-05 + RelativeFSR: 4.87730000e-06 + RelativeJEREC1: -2.85830000e-07 + RelativeJEREC2: -6.03370000e-08 + RelativePtBB: 1.21020000e-04 + RelativePtEC1: -5.49940000e-08 + RelativePtEC2: -2.91540000e-09 + RelativeSample: -3.57440000e-04 + RelativeStatEC: -3.19170000e-07 + RelativeStatFSR: 1.87690000e-05 + SinglePionECAL: 7.56620000e-05 + SinglePionHCAL: 4.51750000e-05 + TimePtEta: 5.11020000e-04 + Lumi: 1.84620000e-04 + model: -9.53740000e-06 +- all uncorr. unc.: 6.30220000e-05 + AbsoluteMPFBias: 1.15350000e-04 + AbsoluteScale: 6.94350000e-05 + fake: 9.38970000e-09 + FlavorQCD: -2.46770000e-05 + Fragmentation: -2.90930000e-05 + JER: -2.88400000e-05 + miss: 7.66170000e-06 + PileUpDataMC: 3.77460000e-06 + PileUpPtBB: -3.06750000e-06 + PileUpPtEC1: -6.36630000e-08 + PileUpPtEC2: -1.44210000e-09 + PileUpPtRef: 8.93050000e-07 + Pref: -1.69440000e-05 + PU: 3.10530000e-06 + RelativeBal: 2.65290000e-05 + RelativeFSR: 3.94990000e-06 + RelativeJEREC1: -6.82330000e-08 + RelativeJEREC2: -7.46150000e-09 + RelativePtBB: 5.31750000e-05 + RelativePtEC1: -2.22010000e-08 + RelativePtEC2: -1.38530000e-09 + RelativeSample: -1.56500000e-04 + RelativeStatEC: -1.04910000e-07 + RelativeStatFSR: 7.52710000e-06 + SinglePionECAL: 3.18410000e-05 + SinglePionHCAL: 2.01110000e-05 + TimePtEta: 2.09230000e-04 + Lumi: 7.17150000e-05 + model: -1.27290000e-05 +- all uncorr. unc.: 3.64510000e-05 + AbsoluteMPFBias: 4.71110000e-05 + AbsoluteScale: 2.81650000e-05 + fake: -8.80900000e-09 + FlavorQCD: -1.52470000e-05 + Fragmentation: -1.19740000e-05 + JER: -1.38640000e-05 + miss: 3.14080000e-06 + PileUpDataMC: 1.27820000e-06 + PileUpPtBB: -1.00010000e-06 + PileUpPtEC1: -3.30290000e-08 + PileUpPtEC2: -7.23720000e-10 + PileUpPtRef: 1.46740000e-06 + Pref: -5.64970000e-06 + PU: 1.25380000e-06 + RelativeBal: 1.07400000e-05 + RelativeFSR: 2.32590000e-06 + RelativeJEREC1: 2.57910000e-08 + RelativeJEREC2: 1.02900000e-08 + RelativePtBB: 2.31320000e-05 + RelativePtEC1: -8.84360000e-09 + RelativePtEC2: -6.25860000e-10 + RelativeSample: -6.74660000e-05 + RelativeStatEC: -4.89980000e-08 + RelativeStatFSR: 2.98070000e-06 + SinglePionECAL: 1.31290000e-05 + SinglePionHCAL: 8.79290000e-06 + TimePtEta: 8.49680000e-05 + Lumi: 2.75090000e-05 + model: -8.04070000e-06 +- all uncorr. unc.: 2.07460000e-05 + AbsoluteMPFBias: 1.88480000e-05 + AbsoluteScale: 1.11790000e-05 + fake: -1.12000000e-08 + FlavorQCD: -7.95690000e-06 + Fragmentation: -4.78370000e-06 + JER: -6.72080000e-06 + miss: 1.24880000e-06 + PileUpDataMC: 4.17880000e-07 + PileUpPtBB: -2.79810000e-07 + PileUpPtEC1: -1.58280000e-08 + PileUpPtEC2: -3.56960000e-10 + PileUpPtRef: 1.09240000e-06 + Pref: -2.04210000e-06 + PU: 5.03700000e-07 + RelativeBal: 4.23640000e-06 + RelativeFSR: 1.18330000e-06 + RelativeJEREC1: 2.85510000e-08 + RelativeJEREC2: 1.21200000e-08 + RelativePtBB: 9.85150000e-06 + RelativePtEC1: -3.43500000e-09 + RelativePtEC2: -2.84910000e-10 + RelativeSample: -2.83470000e-05 + RelativeStatEC: 2.25260000e-08 + RelativeStatFSR: 1.15260000e-06 + SinglePionECAL: 5.25370000e-06 + SinglePionHCAL: 3.73580000e-06 + TimePtEta: 3.38320000e-05 + Lumi: 1.03060000e-05 + model: -4.50720000e-06 +- all uncorr. unc.: 1.15100000e-05 + AbsoluteMPFBias: 6.71680000e-06 + AbsoluteScale: 3.94820000e-06 + fake: -7.68500000e-09 + FlavorQCD: -3.42580000e-06 + Fragmentation: -1.68950000e-06 + JER: -2.92810000e-06 + miss: 4.38340000e-07 + PileUpDataMC: 1.18890000e-07 + PileUpPtBB: -5.18340000e-08 + PileUpPtEC1: -6.49290000e-09 + PileUpPtEC2: -1.55650000e-10 + PileUpPtRef: 5.88870000e-07 + Pref: -4.23120000e-07 + PU: 1.83050000e-07 + RelativeBal: 1.48160000e-06 + RelativeFSR: 5.00560000e-07 + RelativeJEREC1: 2.17740000e-08 + RelativeJEREC2: 8.14530000e-09 + RelativePtBB: 3.73560000e-06 + RelativePtEC1: -1.18310000e-09 + RelativePtEC2: -1.22770000e-10 + RelativeSample: -1.05680000e-05 + RelativeStatEC: 1.68300000e-08 + RelativeStatFSR: 3.95960000e-07 + SinglePionECAL: 1.85810000e-06 + SinglePionHCAL: 1.40380000e-06 + TimePtEta: 1.20100000e-05 + Lumi: 3.43020000e-06 + model: -2.79860000e-06 +- all uncorr. unc.: 6.32520000e-06 + AbsoluteMPFBias: 2.50020000e-06 + AbsoluteScale: 1.45550000e-06 + fake: -4.58830000e-09 + FlavorQCD: -1.46980000e-06 + Fragmentation: -6.19360000e-07 + JER: -1.32750000e-06 + miss: 1.59440000e-07 + PileUpDataMC: 3.40520000e-08 + PileUpPtBB: -7.64550000e-09 + PileUpPtEC1: -2.70290000e-09 + PileUpPtEC2: -6.99820000e-11 + PileUpPtRef: 2.99500000e-07 + Pref: -2.64770000e-07 + PU: 7.04530000e-08 + RelativeBal: 5.39120000e-07 + RelativeFSR: 2.11700000e-07 + RelativeJEREC1: 1.35520000e-08 + RelativeJEREC2: 4.81410000e-09 + RelativePtBB: 1.47890000e-06 + RelativePtEC1: -4.24060000e-10 + RelativePtEC2: -5.49370000e-11 + RelativeSample: -4.10250000e-06 + RelativeStatEC: 1.08310000e-08 + RelativeStatFSR: 1.41770000e-07 SinglePionECAL: 6.82e-07 - SinglePionHCAL: 5.4758e-07 - TimePtEta: 4.4572e-06 - Lumi: 1.1901e-06 - model: -7.9754e-07 -- all uncorr. unc.: 3.437e-06 - AbsoluteMPFBias: 8.7627e-07 - AbsoluteScale: 5.0491e-07 - fake: -2.3318e-09 - FlavorQCD: -5.7505e-07 - Fragmentation: -2.1266e-07 - JER: -5.6062e-07 - miss: 5.4212e-08 - PileUpDataMC: 8.6327e-09 - PileUpPtBB: 1.0172e-08 - PileUpPtEC1: -1.0364e-09 - PileUpPtEC2: -2.918e-11 - PileUpPtRef: 1.3479e-07 - Pref: -6.1781e-08 - PU: 2.5822e-08 - RelativeBal: 1.8411e-07 - RelativeFSR: 8.1805e-08 - RelativeJEREC1: 7.0388e-09 - RelativeJEREC2: 2.4316e-09 - RelativePtBB: 5.5085e-07 - RelativePtEC1: -1.4267e-10 - RelativePtEC2: -2.2916e-11 - RelativeSample: -1.4959e-06 - RelativeStatEC: 5.7071e-09 - RelativeStatFSR: 4.7713e-08 - SinglePionECAL: 2.3443e-07 - SinglePionHCAL: 1.9999e-07 - TimePtEta: 1.5588e-06 - Lumi: 3.8816e-07 - model: -8.9954e-07 -- all uncorr. unc.: 1.7006e-06 - AbsoluteMPFBias: 1.5736e-07 - AbsoluteScale: 8.9716e-08 - fake: -5.6817e-10 - FlavorQCD: -1.1265e-07 - Fragmentation: -3.7257e-08 - JER: -1.1964e-07 - miss: 9.3851e-09 - PileUpDataMC: 9.9868e-10 - PileUpPtBB: 3.1854e-09 - PileUpPtEC1: -2.0011e-10 - PileUpPtEC2: -6.1374e-12 - PileUpPtRef: 2.9777e-08 - Pref: -5.1243e-09 - PU: 4.8895e-09 - RelativeBal: 3.2132e-08 - RelativeFSR: 1.5929e-08 - RelativeJEREC1: 1.7378e-09 - RelativeJEREC2: 5.9002e-10 - RelativePtBB: 1.0502e-07 - RelativePtEC1: -2.4536e-11 - RelativePtEC2: -4.839e-12 - RelativeSample: -2.7891e-07 - RelativeStatEC: 1.4192e-09 - RelativeStatFSR: 8.218e-09 - SinglePionECAL: 4.111e-08 - SinglePionHCAL: 3.724e-08 - TimePtEta: 2.7957e-07 - Lumi: 6.481e-08 - model: -1.1559e-07 + SinglePionHCAL: 5.47580000e-07 + TimePtEta: 4.45720000e-06 + Lumi: 1.19010000e-06 + model: -7.97540000e-07 +- all uncorr. unc.: 3.43700000e-06 + AbsoluteMPFBias: 8.76270000e-07 + AbsoluteScale: 5.04910000e-07 + fake: -2.33180000e-09 + FlavorQCD: -5.75050000e-07 + Fragmentation: -2.12660000e-07 + JER: -5.60620000e-07 + miss: 5.42120000e-08 + PileUpDataMC: 8.63270000e-09 + PileUpPtBB: 1.01720000e-08 + PileUpPtEC1: -1.03640000e-09 + PileUpPtEC2: -2.91800000e-11 + PileUpPtRef: 1.34790000e-07 + Pref: -6.17810000e-08 + PU: 2.58220000e-08 + RelativeBal: 1.84110000e-07 + RelativeFSR: 8.18050000e-08 + RelativeJEREC1: 7.03880000e-09 + RelativeJEREC2: 2.43160000e-09 + RelativePtBB: 5.50850000e-07 + RelativePtEC1: -1.42670000e-10 + RelativePtEC2: -2.29160000e-11 + RelativeSample: -1.49590000e-06 + RelativeStatEC: 5.70710000e-09 + RelativeStatFSR: 4.77130000e-08 + SinglePionECAL: 2.34430000e-07 + SinglePionHCAL: 1.99990000e-07 + TimePtEta: 1.55880000e-06 + Lumi: 3.88160000e-07 + model: -8.99540000e-07 +- all uncorr. unc.: 1.70060000e-06 + AbsoluteMPFBias: 1.57360000e-07 + AbsoluteScale: 8.97160000e-08 + fake: -5.68170000e-10 + FlavorQCD: -1.12650000e-07 + Fragmentation: -3.72570000e-08 + JER: -1.19640000e-07 + miss: 9.38510000e-09 + PileUpDataMC: 9.98680000e-10 + PileUpPtBB: 3.18540000e-09 + PileUpPtEC1: -2.00110000e-10 + PileUpPtEC2: -6.13740000e-12 + PileUpPtRef: 2.97770000e-08 + Pref: -5.12430000e-09 + PU: 4.88950000e-09 + RelativeBal: 3.21320000e-08 + RelativeFSR: 1.59290000e-08 + RelativeJEREC1: 1.73780000e-09 + RelativeJEREC2: 5.90020000e-10 + RelativePtBB: 1.05020000e-07 + RelativePtEC1: -2.45360000e-11 + RelativePtEC2: -4.83900000e-12 + RelativeSample: -2.78910000e-07 + RelativeStatEC: 1.41920000e-09 + RelativeStatFSR: 8.21800000e-09 + SinglePionECAL: 4.11100000e-08 + SinglePionHCAL: 3.72400000e-08 + TimePtEta: 2.79570000e-07 + Lumi: 6.48100000e-08 + model: -1.15590000e-07 - all uncorr. unc.: 68.891 AbsoluteMPFBias: 141.23 AbsoluteScale: 86.471 @@ -1421,7 +1421,7 @@ bins: PileUpDataMC: 69.646 PileUpPtBB: 35.505 PileUpPtEC1: 16.582 - PileUpPtEC2: -0.086065 + PileUpPtEC2: -8.60650000e-02 PileUpPtRef: 22.867 Pref: -35.262 PU: -23.348 @@ -1443,7 +1443,7 @@ bins: - all uncorr. unc.: 18.635 AbsoluteMPFBias: 32.8 AbsoluteScale: 19.864 - fake: -0.044488 + fake: -4.44880000e-02 FlavorQCD: 76.267 Fragmentation: 5.0221 JER: -46.421 @@ -1451,17 +1451,17 @@ bins: PileUpDataMC: 10.938 PileUpPtBB: 3.4813 PileUpPtEC1: 1.5197 - PileUpPtEC2: -0.0067861 + PileUpPtEC2: -6.78610000e-03 PileUpPtRef: 4.0145 Pref: -11.672 PU: -2.7754 RelativeBal: -15.453 RelativeFSR: 2.0381 RelativeJEREC1: 8.5944 - RelativeJEREC2: -0.068837 + RelativeJEREC2: -6.88370000e-02 RelativePtBB: -1.5113 RelativePtEC1: -0.13528 - RelativePtEC2: 0.0026493 + RelativePtEC2: 2.64930000e-03 RelativeSample: 35.852 RelativeStatEC: 1.6609 RelativeStatFSR: 2.5191 @@ -1481,7 +1481,7 @@ bins: PileUpDataMC: 2.3168 PileUpPtBB: 0.29094 PileUpPtEC1: 0.045396 - PileUpPtEC2: -0.00031339 + PileUpPtEC2: -3.13390000e-04 PileUpPtRef: 0.78998 Pref: -4.5735 PU: -0.34619 @@ -1491,7 +1491,7 @@ bins: RelativeJEREC2: 0.026162 RelativePtBB: 0.13924 RelativePtEC1: 0.014901 - RelativePtEC2: 0.00023876 + RelativePtEC2: 2.38760000e-04 RelativeSample: 4.4773 RelativeStatEC: 0.63548 RelativeStatFSR: 0.67056 @@ -1503,55 +1503,55 @@ bins: - all uncorr. unc.: 1.315 AbsoluteMPFBias: 2.7441 AbsoluteScale: 1.6238 - fake: 0.0039577 + fake: 3.95770000e-03 FlavorQCD: 4.7454 Fragmentation: 0.046443 JER: -2.5076 miss: 0.085642 PileUpDataMC: 0.54901 - PileUpPtBB: -0.074703 + PileUpPtBB: -7.47030000e-02 PileUpPtEC1: -0.06041 - PileUpPtEC2: 9.4131e-05 + PileUpPtEC2: 9.41310000e-05 PileUpPtRef: 0.14967 Pref: -1.5086 - PU: -0.023425 + PU: -2.34250000e-02 RelativeBal: -0.13288 RelativeFSR: 0.19219 RelativeJEREC1: 0.55147 - RelativeJEREC2: 0.0084642 + RelativeJEREC2: 8.46420000e-03 RelativePtBB: 0.19811 RelativePtEC1: 0.016246 - RelativePtEC2: 3.794e-05 + RelativePtEC2: 3.79400000e-05 RelativeSample: -0.08001 RelativeStatEC: 0.23285 RelativeStatFSR: 0.20094 - SinglePionECAL: -0.083479 - SinglePionHCAL: -0.017123 + SinglePionECAL: -8.34790000e-02 + SinglePionHCAL: -1.71230000e-02 TimePtEta: 5.1873 Lumi: 2.4377 model: 1.0072 - all uncorr. unc.: 0.34078 AbsoluteMPFBias: 0.88523 AbsoluteScale: 0.52541 - fake: 0.0007851 + fake: 7.85100000e-04 FlavorQCD: 1.3379 - Fragmentation: -0.034785 + Fragmentation: -3.47850000e-02 JER: -0.73119 miss: 0.027787 PileUpDataMC: 0.14154 - PileUpPtBB: -0.055424 - PileUpPtEC1: -0.031787 - PileUpPtEC2: 4.6531e-05 + PileUpPtBB: -5.54240000e-02 + PileUpPtEC1: -3.17870000e-02 + PileUpPtEC2: 4.65310000e-05 PileUpPtRef: 0.023308 Pref: -0.54006 PU: 0.010261 RelativeBal: 0.10528 RelativeFSR: 0.085751 RelativeJEREC1: 0.1598 - RelativeJEREC2: 0.0016655 + RelativeJEREC2: 1.66550000e-03 RelativePtBB: 0.10947 - RelativePtEC1: 0.0085732 - RelativePtEC2: 1.427e-05 + RelativePtEC1: 8.57320000e-03 + RelativePtEC2: 1.42700000e-05 RelativeSample: -0.42177 RelativeStatEC: 0.086106 RelativeStatFSR: 0.065804 @@ -1563,25 +1563,25 @@ bins: - all uncorr. unc.: 0.098705 AbsoluteMPFBias: 0.30698 AbsoluteScale: 0.18327 - fake: 8.2206e-05 + fake: 8.22060000e-05 FlavorQCD: 0.39998 - Fragmentation: -0.025752 + Fragmentation: -2.57520000e-02 JER: -0.23364 miss: 0.010544 PileUpDataMC: 0.039362 - PileUpPtBB: -0.027102 - PileUpPtEC1: -0.013049 - PileUpPtEC2: 1.3978e-05 - PileUpPtRef: 0.0017427 + PileUpPtBB: -2.71020000e-02 + PileUpPtEC1: -1.30490000e-02 + PileUpPtEC2: 1.39780000e-05 + PileUpPtRef: 1.74270000e-03 Pref: -0.1785 - PU: 0.0078277 + PU: 7.82770000e-03 RelativeBal: 0.08156 RelativeFSR: 0.037916 RelativeJEREC1: 0.04975 - RelativeJEREC2: 0.00017922 + RelativeJEREC2: 1.79220000e-04 RelativePtBB: 0.051884 - RelativePtEC1: 0.0039977 - RelativePtEC2: 6.7053e-06 + RelativePtEC1: 3.99770000e-03 + RelativePtEC2: 6.70530000e-06 RelativeSample: -0.26873 RelativeStatEC: 0.032863 RelativeStatFSR: 0.023666 @@ -1593,393 +1593,393 @@ bins: - all uncorr. unc.: 0.034199 AbsoluteMPFBias: 0.11169 AbsoluteScale: 0.067117 - fake: -1.6564e-05 + fake: -1.65640000e-05 FlavorQCD: 0.12243 - Fragmentation: -0.013258 - JER: -0.078316 - miss: 0.0042924 + Fragmentation: -1.32580000e-02 + JER: -7.83160000e-02 + miss: 4.29240000e-03 PileUpDataMC: 0.011453 - PileUpPtBB: -0.011227 - PileUpPtEC1: -0.0048377 - PileUpPtEC2: 3.0445e-06 - PileUpPtRef: -0.001957 - Pref: -0.052324 - PU: 0.0039182 + PileUpPtBB: -1.12270000e-02 + PileUpPtEC1: -4.83770000e-03 + PileUpPtEC2: 3.04450000e-06 + PileUpPtRef: -1.95700000e-03 + Pref: -5.23240000e-02 + PU: 3.91820000e-03 RelativeBal: 0.044431 RelativeFSR: 0.01666 RelativeJEREC1: 0.016127 - RelativeJEREC2: -3.2068e-05 + RelativeJEREC2: -3.20680000e-05 RelativePtBB: 0.023396 - RelativePtEC1: 0.0017811 - RelativePtEC2: 2.5249e-06 + RelativePtEC1: 1.78110000e-03 + RelativePtEC2: 2.52490000e-06 RelativeSample: -0.13793 RelativeStatEC: 0.012756 - RelativeStatFSR: 0.0088619 + RelativeStatFSR: 8.86190000e-03 SinglePionECAL: 0.013048 - SinglePionHCAL: 0.0073731 + SinglePionHCAL: 7.37310000e-03 TimePtEta: 0.2153 Lumi: 0.093757 model: 0.037833 - all uncorr. unc.: 0.012786 AbsoluteMPFBias: 0.042089 AbsoluteScale: 0.025432 - fake: -1.2165e-05 + fake: -1.21650000e-05 FlavorQCD: 0.037572 - Fragmentation: -0.006115 - JER: -0.027046 + Fragmentation: -6.11500000e-03 + JER: -2.70460000e-02 miss: 0.001794 - PileUpDataMC: 0.0034439 - PileUpPtBB: -0.0042018 - PileUpPtEC1: -0.0016641 - PileUpPtEC2: 5.8982e-07 - PileUpPtRef: -0.0013207 - Pref: -0.015734 - PU: 0.0017385 + PileUpDataMC: 3.44390000e-03 + PileUpPtBB: -4.20180000e-03 + PileUpPtEC1: -1.66410000e-03 + PileUpPtEC2: 5.89820000e-07 + PileUpPtRef: -1.32070000e-03 + Pref: -1.57340000e-02 + PU: 1.73850000e-03 RelativeBal: 0.021979 - RelativeFSR: 0.0071284 - RelativeJEREC1: 0.0053563 - RelativeJEREC2: -2.4943e-05 + RelativeFSR: 7.12840000e-03 + RelativeJEREC1: 5.35630000e-03 + RelativeJEREC2: -2.49430000e-05 RelativePtBB: 0.010354 - RelativePtEC1: 0.00077616 - RelativePtEC2: 8.7037e-07 - RelativeSample: -0.066046 - RelativeStatEC: 0.0049924 - RelativeStatFSR: 0.0033907 - SinglePionECAL: 0.0064992 - SinglePionHCAL: 0.0033737 + RelativePtEC1: 7.76160000e-04 + RelativePtEC2: 8.70370000e-07 + RelativeSample: -6.60460000e-02 + RelativeStatEC: 4.99240000e-03 + RelativeStatFSR: 3.39070000e-03 + SinglePionECAL: 6.49920000e-03 + SinglePionHCAL: 3.37370000e-03 TimePtEta: 0.08062 Lumi: 0.034278 model: 0.0127 -- all uncorr. unc.: 0.0044396 +- all uncorr. unc.: 4.43960000e-03 AbsoluteMPFBias: 0.016497 AbsoluteScale: 0.010005 - fake: -3.2804e-06 + fake: -3.28040000e-06 FlavorQCD: 0.01146 - Fragmentation: -0.0027446 - JER: -0.0096946 - miss: 0.0007655 - PileUpDataMC: 0.0010761 - PileUpPtBB: -0.0014447 - PileUpPtEC1: -0.00053137 - PileUpPtEC2: -2.0655e-07 - PileUpPtRef: -0.00065201 - Pref: -0.0048656 - PU: 0.00074233 + Fragmentation: -2.74460000e-03 + JER: -9.69460000e-03 + miss: 7.65500000e-04 + PileUpDataMC: 1.07610000e-03 + PileUpPtBB: -1.44470000e-03 + PileUpPtEC1: -5.31370000e-04 + PileUpPtEC2: -2.06550000e-07 + PileUpPtRef: -6.52010000e-04 + Pref: -4.86560000e-03 + PU: 7.42330000e-04 RelativeBal: 0.010574 - RelativeFSR: 0.0030395 - RelativeJEREC1: 0.0018249 - RelativeJEREC2: -7.0214e-06 - RelativePtBB: 0.0046254 - RelativePtEC1: 0.00033732 - RelativePtEC2: 2.9219e-07 - RelativeSample: -0.031046 + RelativeFSR: 3.03950000e-03 + RelativeJEREC1: 1.82490000e-03 + RelativeJEREC2: -7.02140000e-06 + RelativePtBB: 4.62540000e-03 + RelativePtEC1: 3.37320000e-04 + RelativePtEC2: 2.92190000e-07 + RelativeSample: -3.10460000e-02 RelativeStatEC: 0.002004 - RelativeStatFSR: 0.0013311 - SinglePionECAL: 0.0030659 + RelativeStatFSR: 1.33110000e-03 + SinglePionECAL: 3.06590000e-03 SinglePionHCAL: 0.001534 TimePtEta: 0.031051 Lumi: 0.012912 - model: 0.0028838 -- all uncorr. unc.: 0.0017648 + model: 2.88380000e-03 +- all uncorr. unc.: 1.76480000e-03 AbsoluteMPFBias: 0.006543 - AbsoluteScale: 0.0039737 - fake: 1.6099e-07 - FlavorQCD: 0.0033109 - Fragmentation: -0.0012462 - JER: -0.0035433 - miss: 0.00032388 - PileUpDataMC: 0.00034145 - PileUpPtBB: -0.00044435 - PileUpPtEC1: -0.00014534 - PileUpPtEC2: -1.3972e-07 - PileUpPtRef: -0.00028123 - Pref: -0.0015622 - PU: 0.00030603 - RelativeBal: 0.0049411 - RelativeFSR: 0.0012958 - RelativeJEREC1: 0.00062266 - RelativeJEREC2: 1.0725e-07 - RelativePtBB: 0.0020546 - RelativePtEC1: 0.00014351 - RelativePtEC2: 9.7229e-08 - RelativeSample: -0.014258 - RelativeStatEC: 0.00079783 - RelativeStatFSR: 0.00052174 - SinglePionECAL: 0.0013799 - SinglePionHCAL: 0.00069028 + AbsoluteScale: 3.97370000e-03 + fake: 1.60990000e-07 + FlavorQCD: 3.31090000e-03 + Fragmentation: -1.24620000e-03 + JER: -3.54330000e-03 + miss: 3.23880000e-04 + PileUpDataMC: 3.41450000e-04 + PileUpPtBB: -4.44350000e-04 + PileUpPtEC1: -1.45340000e-04 + PileUpPtEC2: -1.39720000e-07 + PileUpPtRef: -2.81230000e-04 + Pref: -1.56220000e-03 + PU: 3.06030000e-04 + RelativeBal: 4.94110000e-03 + RelativeFSR: 1.29580000e-03 + RelativeJEREC1: 6.22660000e-04 + RelativeJEREC2: 1.07250000e-07 + RelativePtBB: 2.05460000e-03 + RelativePtEC1: 1.43510000e-04 + RelativePtEC2: 9.72290000e-08 + RelativeSample: -1.42580000e-02 + RelativeStatEC: 7.97830000e-04 + RelativeStatFSR: 5.21740000e-04 + SinglePionECAL: 1.37990000e-03 + SinglePionHCAL: 6.90280000e-04 TimePtEta: 0.011963 - Lumi: 0.0048728 - model: 0.00056097 -- all uncorr. unc.: 0.00076747 - AbsoluteMPFBias: 0.0026613 - AbsoluteScale: 0.0016145 - fake: 6.9812e-07 - FlavorQCD: 0.00089157 - Fragmentation: -0.00055693 - JER: -0.0013581 - miss: 0.00013793 - PileUpDataMC: 0.00011262 - PileUpPtBB: -0.00010645 - PileUpPtEC1: -2.8356e-05 - PileUpPtEC2: -6.4826e-08 - PileUpPtRef: -0.00011248 - Pref: -0.00053249 - PU: 0.00012547 - RelativeBal: 0.0023025 - RelativeFSR: 0.00055339 - RelativeJEREC1: 0.00021515 - RelativeJEREC2: 1.3139e-06 - RelativePtBB: 0.00092643 - RelativePtEC1: 6.0958e-05 - RelativePtEC2: 3.4368e-08 - RelativeSample: -0.0065564 - RelativeStatEC: 0.00031967 - RelativeStatFSR: 0.00020719 - SinglePionECAL: 0.00061068 - SinglePionHCAL: 0.00031239 - TimePtEta: 0.0046779 - Lumi: 0.0018687 - model: -5.1984e-05 -- all uncorr. unc.: 0.00035409 - AbsoluteMPFBias: 0.0010634 - AbsoluteScale: 0.00064291 - fake: 4.3268e-07 - FlavorQCD: 0.00018757 - Fragmentation: -0.00023723 - JER: -0.00053176 - miss: 5.6851e-05 - PileUpDataMC: 3.7299e-05 - PileUpPtBB: -4.7946e-06 - PileUpPtEC1: 1.7472e-06 - PileUpPtEC2: -2.084e-08 - PileUpPtRef: -3.8221e-05 - Pref: -0.00018403 - PU: 4.9533e-05 - RelativeBal: 0.0010343 - RelativeFSR: 0.00022779 - RelativeJEREC1: 7.1873e-05 - RelativeJEREC2: 8.4023e-07 - RelativePtBB: 0.00040795 - RelativePtEC1: 2.4905e-05 - RelativePtEC2: 1.3063e-08 - RelativeSample: -0.0029151 - RelativeStatEC: 0.00012385 - RelativeStatFSR: 8.1005e-05 - SinglePionECAL: 0.00025748 - SinglePionHCAL: 0.00013801 + Lumi: 4.87280000e-03 + model: 5.60970000e-04 +- all uncorr. unc.: 7.67470000e-04 + AbsoluteMPFBias: 2.66130000e-03 + AbsoluteScale: 1.61450000e-03 + fake: 6.98120000e-07 + FlavorQCD: 8.91570000e-04 + Fragmentation: -5.56930000e-04 + JER: -1.35810000e-03 + miss: 1.37930000e-04 + PileUpDataMC: 1.12620000e-04 + PileUpPtBB: -1.06450000e-04 + PileUpPtEC1: -2.83560000e-05 + PileUpPtEC2: -6.48260000e-08 + PileUpPtRef: -1.12480000e-04 + Pref: -5.32490000e-04 + PU: 1.25470000e-04 + RelativeBal: 2.30250000e-03 + RelativeFSR: 5.53390000e-04 + RelativeJEREC1: 2.15150000e-04 + RelativeJEREC2: 1.31390000e-06 + RelativePtBB: 9.26430000e-04 + RelativePtEC1: 6.09580000e-05 + RelativePtEC2: 3.43680000e-08 + RelativeSample: -6.55640000e-03 + RelativeStatEC: 3.19670000e-04 + RelativeStatFSR: 2.07190000e-04 + SinglePionECAL: 6.10680000e-04 + SinglePionHCAL: 3.12390000e-04 + TimePtEta: 4.67790000e-03 + Lumi: 1.86870000e-03 + model: -5.19840000e-05 +- all uncorr. unc.: 3.54090000e-04 + AbsoluteMPFBias: 1.06340000e-03 + AbsoluteScale: 6.42910000e-04 + fake: 4.32680000e-07 + FlavorQCD: 1.87570000e-04 + Fragmentation: -2.37230000e-04 + JER: -5.31760000e-04 + miss: 5.68510000e-05 + PileUpDataMC: 3.72990000e-05 + PileUpPtBB: -4.79460000e-06 + PileUpPtEC1: 1.74720000e-06 + PileUpPtEC2: -2.08400000e-08 + PileUpPtRef: -3.82210000e-05 + Pref: -1.84030000e-04 + PU: 4.95330000e-05 + RelativeBal: 1.03430000e-03 + RelativeFSR: 2.27790000e-04 + RelativeJEREC1: 7.18730000e-05 + RelativeJEREC2: 8.40230000e-07 + RelativePtBB: 4.07950000e-04 + RelativePtEC1: 2.49050000e-05 + RelativePtEC2: 1.30630000e-08 + RelativeSample: -2.91510000e-03 + RelativeStatEC: 1.23850000e-04 + RelativeStatFSR: 8.10050000e-05 + SinglePionECAL: 2.57480000e-04 + SinglePionHCAL: 1.38010000e-04 TimePtEta: 0.00178 - Lumi: 0.00069816 - model: -5.1296e-05 -- all uncorr. unc.: 0.00017402 - AbsoluteMPFBias: 0.00042165 - AbsoluteScale: 0.00025351 - fake: 1.5652e-07 - FlavorQCD: 1.5737e-05 - Fragmentation: -0.00010101 - JER: -0.00022145 - miss: 2.2992e-05 - PileUpDataMC: 1.2647e-05 - PileUpPtBB: 1.568e-05 - PileUpPtEC1: 5.9056e-06 - PileUpPtEC2: -4.4861e-09 - PileUpPtRef: -1.0285e-05 - Pref: -5.8612e-05 - PU: 1.9151e-05 - RelativeBal: 0.00045468 - RelativeFSR: 9.1577e-05 - RelativeJEREC1: 2.3409e-05 - RelativeJEREC2: 3.0805e-07 - RelativePtBB: 0.0001775 - RelativePtEC1: 9.9245e-06 - RelativePtEC2: -5.5418e-09 - RelativeSample: -0.0012719 - RelativeStatEC: 4.6969e-05 - RelativeStatFSR: 3.1218e-05 - SinglePionECAL: 0.00010751 - SinglePionHCAL: 6.222e-05 - TimePtEta: 0.00066938 - Lumi: 0.00025689 - model: -5.3964e-05 -- all uncorr. unc.: 9.1166e-05 - AbsoluteMPFBias: 0.00016249 - AbsoluteScale: 9.7041e-05 - fake: 1.563e-08 - FlavorQCD: -1.6597e-05 - Fragmentation: -4.2778e-05 - JER: -9.1841e-05 - miss: 8.9672e-06 - PileUpDataMC: 4.3354e-06 - PileUpPtBB: 1.3537e-05 - PileUpPtEC1: 4.1972e-06 - PileUpPtEC2: 2.0324e-09 - PileUpPtRef: -1.7403e-06 - Pref: -2.2699e-05 - PU: 7.1414e-06 - RelativeBal: 0.0001921 - RelativeFSR: 3.5316e-05 - RelativeJEREC1: 7.2782e-06 - RelativeJEREC2: 3.1829e-08 - RelativePtBB: 7.4757e-05 - RelativePtEC1: 3.7905e-06 - RelativePtEC2: -2.513e-09 - RelativeSample: -0.00053466 - RelativeStatEC: 1.7123e-05 - RelativeStatFSR: 1.1619e-05 - SinglePionECAL: 4.3125e-05 - SinglePionHCAL: 2.7443e-05 - TimePtEta: 0.00024871 - Lumi: 9.1336e-05 - model: -1.68e-05 -- all uncorr. unc.: 4.8449e-05 - AbsoluteMPFBias: 5.9617e-05 - AbsoluteScale: 3.5365e-05 - fake: -2.6673e-08 - FlavorQCD: -1.3077e-05 - Fragmentation: -1.732e-05 - JER: -3.6864e-05 - miss: 3.3142e-06 - PileUpDataMC: 1.4748e-06 - PileUpPtBB: 7.8889e-06 - PileUpPtEC1: 2.1908e-06 - PileUpPtEC2: 1.8382e-09 - PileUpPtRef: 6.7757e-07 - Pref: -5.9663e-06 - PU: 2.5456e-06 - RelativeBal: 7.6694e-05 - RelativeFSR: 1.283e-05 - RelativeJEREC1: 2.1115e-06 - RelativeJEREC2: -5.2051e-08 - RelativePtBB: 2.9857e-05 - RelativePtEC1: 1.3631e-06 - RelativePtEC2: -1.1382e-09 - RelativeSample: -0.00021255 - RelativeStatEC: 5.8906e-06 - RelativeStatFSR: 4.0967e-06 - SinglePionECAL: 1.6261e-05 - SinglePionHCAL: 1.1551e-05 - TimePtEta: 8.798e-05 - Lumi: 3.0783e-05 - model: -7.468e-06 -- all uncorr. unc.: 2.5526e-05 - AbsoluteMPFBias: 2.0623e-05 - AbsoluteScale: 1.2138e-05 - fake: -2.6126e-08 - FlavorQCD: -6.6446e-06 - Fragmentation: -6.6277e-06 - JER: -1.4081e-05 - miss: 1.1525e-06 - PileUpDataMC: 5.3117e-07 - PileUpPtBB: 3.7749e-06 - PileUpPtEC1: 9.6049e-07 - PileUpPtEC2: 1.1308e-09 - PileUpPtRef: 7.0008e-07 - Pref: -2.3868e-06 - PU: 8.6607e-07 - RelativeBal: 2.8794e-05 - RelativeFSR: 4.3663e-06 - RelativeJEREC1: 5.634e-07 - RelativeJEREC2: -5.1384e-08 - RelativePtBB: 1.1198e-05 - RelativePtEC1: 4.5815e-07 - RelativePtEC2: -4.9101e-10 - RelativeSample: -7.9252e-05 - RelativeStatEC: 1.897e-06 - RelativeStatFSR: 1.3564e-06 - SinglePionECAL: 5.7244e-06 - SinglePionHCAL: 4.5773e-06 - TimePtEta: 2.9364e-05 + Lumi: 6.98160000e-04 + model: -5.12960000e-05 +- all uncorr. unc.: 1.74020000e-04 + AbsoluteMPFBias: 4.21650000e-04 + AbsoluteScale: 2.53510000e-04 + fake: 1.56520000e-07 + FlavorQCD: 1.57370000e-05 + Fragmentation: -1.01010000e-04 + JER: -2.21450000e-04 + miss: 2.29920000e-05 + PileUpDataMC: 1.26470000e-05 + PileUpPtBB: 1.56800000e-05 + PileUpPtEC1: 5.90560000e-06 + PileUpPtEC2: -4.48610000e-09 + PileUpPtRef: -1.02850000e-05 + Pref: -5.86120000e-05 + PU: 1.91510000e-05 + RelativeBal: 4.54680000e-04 + RelativeFSR: 9.15770000e-05 + RelativeJEREC1: 2.34090000e-05 + RelativeJEREC2: 3.08050000e-07 + RelativePtBB: 1.77500000e-04 + RelativePtEC1: 9.92450000e-06 + RelativePtEC2: -5.54180000e-09 + RelativeSample: -1.27190000e-03 + RelativeStatEC: 4.69690000e-05 + RelativeStatFSR: 3.12180000e-05 + SinglePionECAL: 1.07510000e-04 + SinglePionHCAL: 6.22200000e-05 + TimePtEta: 6.69380000e-04 + Lumi: 2.56890000e-04 + model: -5.39640000e-05 +- all uncorr. unc.: 9.11660000e-05 + AbsoluteMPFBias: 1.62490000e-04 + AbsoluteScale: 9.70410000e-05 + fake: 1.56300000e-08 + FlavorQCD: -1.65970000e-05 + Fragmentation: -4.27780000e-05 + JER: -9.18410000e-05 + miss: 8.96720000e-06 + PileUpDataMC: 4.33540000e-06 + PileUpPtBB: 1.35370000e-05 + PileUpPtEC1: 4.19720000e-06 + PileUpPtEC2: 2.03240000e-09 + PileUpPtRef: -1.74030000e-06 + Pref: -2.26990000e-05 + PU: 7.14140000e-06 + RelativeBal: 1.92100000e-04 + RelativeFSR: 3.53160000e-05 + RelativeJEREC1: 7.27820000e-06 + RelativeJEREC2: 3.18290000e-08 + RelativePtBB: 7.47570000e-05 + RelativePtEC1: 3.79050000e-06 + RelativePtEC2: -2.51300000e-09 + RelativeSample: -5.34660000e-04 + RelativeStatEC: 1.71230000e-05 + RelativeStatFSR: 1.16190000e-05 + SinglePionECAL: 4.31250000e-05 + SinglePionHCAL: 2.74430000e-05 + TimePtEta: 2.48710000e-04 + Lumi: 9.13360000e-05 + model: -1.68000000e-05 +- all uncorr. unc.: 4.84490000e-05 + AbsoluteMPFBias: 5.96170000e-05 + AbsoluteScale: 3.53650000e-05 + fake: -2.66730000e-08 + FlavorQCD: -1.30770000e-05 + Fragmentation: -1.73200000e-05 + JER: -3.68640000e-05 + miss: 3.31420000e-06 + PileUpDataMC: 1.47480000e-06 + PileUpPtBB: 7.88890000e-06 + PileUpPtEC1: 2.19080000e-06 + PileUpPtEC2: 1.83820000e-09 + PileUpPtRef: 6.77570000e-07 + Pref: -5.96630000e-06 + PU: 2.54560000e-06 + RelativeBal: 7.66940000e-05 + RelativeFSR: 1.28300000e-05 + RelativeJEREC1: 2.11150000e-06 + RelativeJEREC2: -5.20510000e-08 + RelativePtBB: 2.98570000e-05 + RelativePtEC1: 1.36310000e-06 + RelativePtEC2: -1.13820000e-09 + RelativeSample: -2.12550000e-04 + RelativeStatEC: 5.89060000e-06 + RelativeStatFSR: 4.09670000e-06 + SinglePionECAL: 1.62610000e-05 + SinglePionHCAL: 1.15510000e-05 + TimePtEta: 8.79800000e-05 + Lumi: 3.07830000e-05 + model: -7.46800000e-06 +- all uncorr. unc.: 2.55260000e-05 + AbsoluteMPFBias: 2.06230000e-05 + AbsoluteScale: 1.21380000e-05 + fake: -2.61260000e-08 + FlavorQCD: -6.64460000e-06 + Fragmentation: -6.62770000e-06 + JER: -1.40810000e-05 + miss: 1.15250000e-06 + PileUpDataMC: 5.31170000e-07 + PileUpPtBB: 3.77490000e-06 + PileUpPtEC1: 9.60490000e-07 + PileUpPtEC2: 1.13080000e-09 + PileUpPtRef: 7.00080000e-07 + Pref: -2.38680000e-06 + PU: 8.66070000e-07 + RelativeBal: 2.87940000e-05 + RelativeFSR: 4.36630000e-06 + RelativeJEREC1: 5.63400000e-07 + RelativeJEREC2: -5.13840000e-08 + RelativePtBB: 1.11980000e-05 + RelativePtEC1: 4.58150000e-07 + RelativePtEC2: -4.91010000e-10 + RelativeSample: -7.92520000e-05 + RelativeStatEC: 1.89700000e-06 + RelativeStatFSR: 1.35640000e-06 + SinglePionECAL: 5.72440000e-06 + SinglePionHCAL: 4.57730000e-06 + TimePtEta: 2.93640000e-05 Lumi: 9.75e-06 - model: -6.0917e-07 -- all uncorr. unc.: 1.2879e-05 - AbsoluteMPFBias: 6.1185e-06 + model: -6.09170000e-07 +- all uncorr. unc.: 1.28790000e-05 + AbsoluteMPFBias: 6.11850000e-06 AbsoluteScale: 3.57e-06 - fake: -1.4398e-08 - FlavorQCD: -2.5183e-06 - Fragmentation: -2.176e-06 - JER: -4.6766e-06 - miss: 3.4376e-07 - PileUpDataMC: 1.8005e-07 - PileUpPtBB: 1.4347e-06 - PileUpPtEC1: 3.3791e-07 - PileUpPtEC2: 4.908e-10 - PileUpPtRef: 3.5892e-07 - Pref: -3.1903e-07 - PU: 2.5348e-07 - RelativeBal: 9.2107e-06 - RelativeFSR: 1.3304e-06 - RelativeJEREC1: 1.2483e-07 - RelativeJEREC2: -2.8403e-08 - RelativePtBB: 3.5872e-06 - RelativePtEC1: 1.3118e-07 - RelativePtEC2: -1.7981e-10 - RelativeSample: -2.5242e-05 - RelativeStatEC: 5.2103e-07 - RelativeStatFSR: 3.8409e-07 - SinglePionECAL: 1.715e-06 - SinglePionHCAL: 1.5491e-06 - TimePtEta: 8.4163e-06 - Lumi: 2.6428e-06 - model: 9.4733e-09 -- all uncorr. unc.: 6.8016e-06 - AbsoluteMPFBias: 1.6766e-06 - AbsoluteScale: 9.6919e-07 - fake: -6.1854e-09 - FlavorQCD: -8.1948e-07 - Fragmentation: -6.59e-07 - JER: -1.4634e-06 - miss: 9.484e-08 - PileUpDataMC: 5.8099e-08 - PileUpPtBB: 4.7946e-07 - PileUpPtEC1: 1.0516e-07 - PileUpPtEC2: 1.7773e-10 - PileUpPtRef: 1.4236e-07 - Pref: -1.3501e-07 - PU: 6.878e-08 - RelativeBal: 2.7051e-06 - RelativeFSR: 3.7746e-07 - RelativeJEREC1: 2.4369e-08 - RelativeJEREC2: -1.2223e-08 - RelativePtBB: 1.057e-06 - RelativePtEC1: 3.4504e-08 - RelativePtEC2: -5.9716e-11 - RelativeSample: -7.402e-06 - RelativeStatEC: 1.3157e-07 - RelativeStatFSR: 1.0023e-07 - SinglePionECAL: 4.7174e-07 - SinglePionHCAL: 4.8132e-07 - TimePtEta: 2.2314e-06 - Lumi: 6.6061e-07 - model: 3.3434e-07 -- all uncorr. unc.: 2.7737e-06 - AbsoluteMPFBias: 4.8943e-07 - AbsoluteScale: 2.8017e-07 - fake: -2.5702e-09 - FlavorQCD: -2.7164e-07 - Fragmentation: -2.1205e-07 - JER: -4.864e-07 - miss: 2.7943e-08 - PileUpDataMC: 2.0153e-08 - PileUpPtBB: 1.6493e-07 - PileUpPtEC1: 3.3818e-08 - PileUpPtEC2: 6.4327e-11 - PileUpPtRef: 5.4904e-08 - Pref: 8.0898e-10 - PU: 1.9964e-08 - RelativeBal: 8.4165e-07 - RelativeFSR: 1.1494e-07 - RelativeJEREC1: 4.6964e-09 - RelativeJEREC2: -5.0847e-09 - RelativePtBB: 3.3058e-07 - RelativePtEC1: 9.6285e-09 - RelativePtEC2: -2.0703e-11 - RelativeSample: -2.3065e-06 - RelativeStatEC: 3.5265e-08 - RelativeStatFSR: 2.7823e-08 - SinglePionECAL: 1.3758e-07 - SinglePionHCAL: 1.5821e-07 - TimePtEta: 6.3132e-07 - Lumi: 1.7577e-07 - model: 2.3929e-07 + fake: -1.43980000e-08 + FlavorQCD: -2.51830000e-06 + Fragmentation: -2.17600000e-06 + JER: -4.67660000e-06 + miss: 3.43760000e-07 + PileUpDataMC: 1.80050000e-07 + PileUpPtBB: 1.43470000e-06 + PileUpPtEC1: 3.37910000e-07 + PileUpPtEC2: 4.90800000e-10 + PileUpPtRef: 3.58920000e-07 + Pref: -3.19030000e-07 + PU: 2.53480000e-07 + RelativeBal: 9.21070000e-06 + RelativeFSR: 1.33040000e-06 + RelativeJEREC1: 1.24830000e-07 + RelativeJEREC2: -2.84030000e-08 + RelativePtBB: 3.58720000e-06 + RelativePtEC1: 1.31180000e-07 + RelativePtEC2: -1.79810000e-10 + RelativeSample: -2.52420000e-05 + RelativeStatEC: 5.21030000e-07 + RelativeStatFSR: 3.84090000e-07 + SinglePionECAL: 1.71500000e-06 + SinglePionHCAL: 1.54910000e-06 + TimePtEta: 8.41630000e-06 + Lumi: 2.64280000e-06 + model: 9.47330000e-09 +- all uncorr. unc.: 6.80160000e-06 + AbsoluteMPFBias: 1.67660000e-06 + AbsoluteScale: 9.69190000e-07 + fake: -6.18540000e-09 + FlavorQCD: -8.19480000e-07 + Fragmentation: -6.59000000e-07 + JER: -1.46340000e-06 + miss: 9.48400000e-08 + PileUpDataMC: 5.80990000e-08 + PileUpPtBB: 4.79460000e-07 + PileUpPtEC1: 1.05160000e-07 + PileUpPtEC2: 1.77730000e-10 + PileUpPtRef: 1.42360000e-07 + Pref: -1.35010000e-07 + PU: 6.87800000e-08 + RelativeBal: 2.70510000e-06 + RelativeFSR: 3.77460000e-07 + RelativeJEREC1: 2.43690000e-08 + RelativeJEREC2: -1.22230000e-08 + RelativePtBB: 1.05700000e-06 + RelativePtEC1: 3.45040000e-08 + RelativePtEC2: -5.97160000e-11 + RelativeSample: -7.40200000e-06 + RelativeStatEC: 1.31570000e-07 + RelativeStatFSR: 1.00230000e-07 + SinglePionECAL: 4.71740000e-07 + SinglePionHCAL: 4.81320000e-07 + TimePtEta: 2.23140000e-06 + Lumi: 6.60610000e-07 + model: 3.34340000e-07 +- all uncorr. unc.: 2.77370000e-06 + AbsoluteMPFBias: 4.89430000e-07 + AbsoluteScale: 2.80170000e-07 + fake: -2.57020000e-09 + FlavorQCD: -2.71640000e-07 + Fragmentation: -2.12050000e-07 + JER: -4.86400000e-07 + miss: 2.79430000e-08 + PileUpDataMC: 2.01530000e-08 + PileUpPtBB: 1.64930000e-07 + PileUpPtEC1: 3.38180000e-08 + PileUpPtEC2: 6.43270000e-11 + PileUpPtRef: 5.49040000e-08 + Pref: 8.08980000e-10 + PU: 1.99640000e-08 + RelativeBal: 8.41650000e-07 + RelativeFSR: 1.14940000e-07 + RelativeJEREC1: 4.69640000e-09 + RelativeJEREC2: -5.08470000e-09 + RelativePtBB: 3.30580000e-07 + RelativePtEC1: 9.62850000e-09 + RelativePtEC2: -2.07030000e-11 + RelativeSample: -2.30650000e-06 + RelativeStatEC: 3.52650000e-08 + RelativeStatFSR: 2.78230000e-08 + SinglePionECAL: 1.37580000e-07 + SinglePionHCAL: 1.58210000e-07 + TimePtEta: 6.31320000e-07 + Lumi: 1.75770000e-07 + model: 2.39290000e-07 - all uncorr. unc.: 56.896 AbsoluteMPFBias: 125.27 AbsoluteScale: 77.644 @@ -2013,13 +2013,13 @@ bins: - all uncorr. unc.: 14.83 AbsoluteMPFBias: 27.909 AbsoluteScale: 17.965 - fake: -0.036352 + fake: -3.63520000e-02 FlavorQCD: 66.535 Fragmentation: 4.4441 JER: -35.629 miss: 1.839 PileUpDataMC: 8.3353 - PileUpPtBB: -0.054197 + PileUpPtBB: -5.41970000e-02 PileUpPtEC1: 4.0384 PileUpPtEC2: 0.012368 PileUpPtRef: 3.5012 @@ -2031,7 +2031,7 @@ bins: RelativeJEREC2: -0.53988 RelativePtBB: 0.034747 RelativePtEC1: -0.35527 - RelativePtEC2: -0.0072931 + RelativePtEC2: -7.29310000e-03 RelativeSample: -40.978 RelativeStatEC: 17.573 RelativeStatFSR: 3.5753 @@ -2058,10 +2058,10 @@ bins: RelativeBal: -2.4718 RelativeFSR: -1.3569 RelativeJEREC1: 6.1101 - RelativeJEREC2: -0.056887 - RelativePtBB: 0.0027775 + RelativeJEREC2: -5.68870000e-02 + RelativePtBB: 2.77750000e-03 RelativePtEC1: 0.052423 - RelativePtEC2: -0.0015203 + RelativePtEC2: -1.52030000e-03 RelativeSample: -10.618 RelativeStatEC: 4.9935 RelativeStatFSR: 1.0018 @@ -2073,15 +2073,15 @@ bins: - all uncorr. unc.: 1.0081 AbsoluteMPFBias: 2.1081 AbsoluteScale: 1.2928 - fake: 0.0035969 + fake: 3.59690000e-03 FlavorQCD: 3.7258 Fragmentation: 0.063617 JER: -1.9404 miss: 0.095643 PileUpDataMC: 0.38209 PileUpPtBB: 0.004041 - PileUpPtEC1: -0.046396 - PileUpPtEC2: 0.0009912 + PileUpPtEC1: -4.63960000e-02 + PileUpPtEC2: 9.91200000e-04 PileUpPtRef: 0.13804 Pref: -1.1121 PU: 0.26564 @@ -2089,13 +2089,13 @@ bins: RelativeFSR: 0.17795 RelativeJEREC1: 1.6327 RelativeJEREC2: 0.013447 - RelativePtBB: -0.002977 + RelativePtBB: -2.97700000e-03 RelativePtEC1: 0.043708 - RelativePtEC2: -0.00071872 + RelativePtEC2: -7.18720000e-04 RelativeSample: -3.0372 RelativeStatEC: 1.491 RelativeStatFSR: 0.27204 - SinglePionECAL: -0.064941 + SinglePionECAL: -6.49410000e-02 SinglePionHCAL: -0.01097 TimePtEta: 4.2024 Lumi: 1.8156 @@ -2103,25 +2103,25 @@ bins: - all uncorr. unc.: 0.24102 AbsoluteMPFBias: 0.67605 AbsoluteScale: 0.40313 - fake: 0.0004804 + fake: 4.80400000e-04 FlavorQCD: 1.0174 - Fragmentation: -0.022467 + Fragmentation: -2.24670000e-02 JER: -0.59685 miss: 0.029874 PileUpDataMC: 0.086328 - PileUpPtBB: 0.00075445 - PileUpPtEC1: -0.043804 - PileUpPtEC2: 0.00012633 + PileUpPtBB: 7.54450000e-04 + PileUpPtEC1: -4.38040000e-02 + PileUpPtEC2: 1.26330000e-04 PileUpPtRef: 0.022697 Pref: -0.36261 PU: 0.083344 RelativeBal: -0.11718 RelativeFSR: 0.21877 RelativeJEREC1: 0.49256 - RelativeJEREC2: -0.0035282 - RelativePtBB: -0.0013178 + RelativeJEREC2: -3.52820000e-03 + RelativePtBB: -1.31780000e-03 RelativePtEC1: 0.023795 - RelativePtEC2: -0.00022784 + RelativePtEC2: -2.27840000e-04 RelativeSample: -0.97407 RelativeStatEC: 0.50001 RelativeStatFSR: 0.082108 @@ -2133,25 +2133,25 @@ bins: - all uncorr. unc.: 0.063884 AbsoluteMPFBias: 0.22461 AbsoluteScale: 0.13473 - fake: -3.0588e-05 + fake: -3.05880000e-05 FlavorQCD: 0.28452 - Fragmentation: -0.018125 + Fragmentation: -1.81250000e-02 JER: -0.18815 - miss: 0.0099599 + miss: 9.95990000e-03 PileUpDataMC: 0.019739 - PileUpPtBB: 0.0001562 - PileUpPtEC1: -0.022177 - PileUpPtEC2: -2.0141e-05 - PileUpPtRef: 0.0011153 + PileUpPtBB: 1.56200000e-04 + PileUpPtEC1: -2.21770000e-02 + PileUpPtEC2: -2.01410000e-05 + PileUpPtRef: 1.11530000e-03 Pref: -0.10798 PU: 0.027341 - RelativeBal: -0.020086 + RelativeBal: -2.00860000e-02 RelativeFSR: 0.12381 RelativeJEREC1: 0.15232 - RelativeJEREC2: -0.00093105 - RelativePtBB: -0.00054498 + RelativeJEREC2: -9.31050000e-04 + RelativePtBB: -5.44980000e-04 RelativePtEC1: 0.009937 - RelativePtEC2: -6.2819e-05 + RelativePtEC2: -6.28190000e-05 RelativeSample: -0.31875 RelativeStatEC: 0.17326 RelativeStatFSR: 0.026124 @@ -2163,300 +2163,300 @@ bins: - all uncorr. unc.: 0.020927 AbsoluteMPFBias: 0.079148 AbsoluteScale: 0.04802 - fake: -4.0027e-05 + fake: -4.00270000e-05 FlavorQCD: 0.082837 - Fragmentation: -0.0093835 - JER: -0.061897 - miss: 0.0035329 - PileUpDataMC: 0.0054682 - PileUpPtBB: 5.5445e-05 - PileUpPtEC1: -0.0094226 - PileUpPtEC2: -1.3712e-05 - PileUpPtRef: -0.0015026 - Pref: -0.028953 + Fragmentation: -9.38350000e-03 + JER: -6.18970000e-02 + miss: 3.53290000e-03 + PileUpDataMC: 5.46820000e-03 + PileUpPtBB: 5.54450000e-05 + PileUpPtEC1: -9.42260000e-03 + PileUpPtEC2: -1.37120000e-05 + PileUpPtRef: -1.50260000e-03 + Pref: -2.89530000e-02 PU: 0.009663 - RelativeBal: 0.0010892 + RelativeBal: 1.08920000e-03 RelativeFSR: 0.060862 RelativeJEREC1: 0.049155 - RelativeJEREC2: -0.00036479 - RelativePtBB: -0.00020417 - RelativePtEC1: 0.0038531 - RelativePtEC2: -1.9041e-05 + RelativeJEREC2: -3.64790000e-04 + RelativePtBB: -2.04170000e-04 + RelativePtEC1: 3.85310000e-03 + RelativePtEC2: -1.90410000e-05 RelativeSample: -0.10955 RelativeStatEC: 0.063527 - RelativeStatFSR: 0.0093766 - SinglePionECAL: 0.0094218 - SinglePionHCAL: 0.0052265 + RelativeStatFSR: 9.37660000e-03 + SinglePionECAL: 9.42180000e-03 + SinglePionHCAL: 5.22650000e-03 TimePtEta: 0.15622 Lumi: 0.062533 - model: -0.0022334 -- all uncorr. unc.: 0.0074861 + model: -2.23340000e-03 +- all uncorr. unc.: 7.48610000e-03 AbsoluteMPFBias: 0.028645 AbsoluteScale: 0.017354 - fake: -1.1991e-05 + fake: -1.19910000e-05 FlavorQCD: 0.024137 - Fragmentation: -0.0042529 - JER: -0.020565 - miss: 0.0012792 - PileUpDataMC: 0.0015904 - PileUpPtBB: 2.1748e-05 - PileUpPtEC1: -0.0034695 - PileUpPtEC2: -5.1178e-06 - PileUpPtRef: -0.00094974 - Pref: -0.007884 - PU: 0.0035448 - RelativeBal: 0.0023667 + Fragmentation: -4.25290000e-03 + JER: -2.05650000e-02 + miss: 1.27920000e-03 + PileUpDataMC: 1.59040000e-03 + PileUpPtBB: 2.17480000e-05 + PileUpPtEC1: -3.46950000e-03 + PileUpPtEC2: -5.11780000e-06 + PileUpPtRef: -9.49740000e-04 + Pref: -7.88400000e-03 + PU: 3.54480000e-03 + RelativeBal: 2.36670000e-03 RelativeFSR: 0.02797 RelativeJEREC1: 0.016019 - RelativeJEREC2: -9.4884e-05 - RelativePtBB: -7.8357e-05 - RelativePtEC1: 0.0015124 - RelativePtEC2: -5.7169e-06 - RelativeSample: -0.038747 + RelativeJEREC2: -9.48840000e-05 + RelativePtBB: -7.83570000e-05 + RelativePtEC1: 1.51240000e-03 + RelativePtEC2: -5.71690000e-06 + RelativeSample: -3.87470000e-02 RelativeStatEC: 0.023837 - RelativeStatFSR: 0.0034428 - SinglePionECAL: 0.0044566 - SinglePionHCAL: 0.0022995 + RelativeStatFSR: 3.44280000e-03 + SinglePionECAL: 4.45660000e-03 + SinglePionHCAL: 2.29950000e-03 TimePtEta: 0.055443 Lumi: 0.021268 - model: -0.0037878 -- all uncorr. unc.: 0.0023912 + model: -3.78780000e-03 +- all uncorr. unc.: 2.39120000e-03 AbsoluteMPFBias: 0.010571 AbsoluteScale: 0.006436 - fake: -7.9664e-07 - FlavorQCD: 0.0068729 - Fragmentation: -0.0018212 - JER: -0.0071909 - miss: 0.0004695 - PileUpDataMC: 0.00047622 - PileUpPtBB: 1.2025e-05 - PileUpPtEC1: -0.0011388 - PileUpPtEC2: -1.1731e-06 - PileUpPtRef: -0.00043086 - Pref: -0.0022801 - PU: 0.0013272 - RelativeBal: 0.0015065 + fake: -7.96640000e-07 + FlavorQCD: 6.87290000e-03 + Fragmentation: -1.82120000e-03 + JER: -7.19090000e-03 + miss: 4.69500000e-04 + PileUpDataMC: 4.76220000e-04 + PileUpPtBB: 1.20250000e-05 + PileUpPtEC1: -1.13880000e-03 + PileUpPtEC2: -1.17310000e-06 + PileUpPtRef: -4.30860000e-04 + Pref: -2.28010000e-03 + PU: 1.32720000e-03 + RelativeBal: 1.50650000e-03 RelativeFSR: 0.012414 - RelativeJEREC1: 0.0052375 - RelativeJEREC2: -1.3987e-05 - RelativePtBB: -3.3938e-05 - RelativePtEC1: 0.00062267 - RelativePtEC2: -1.6067e-06 - RelativeSample: -0.014175 - RelativeStatEC: 0.0090803 - RelativeStatFSR: 0.0012725 - SinglePionECAL: 0.0019735 - SinglePionHCAL: 0.00099359 + RelativeJEREC1: 5.23750000e-03 + RelativeJEREC2: -1.39870000e-05 + RelativePtBB: -3.39380000e-05 + RelativePtEC1: 6.22670000e-04 + RelativePtEC2: -1.60670000e-06 + RelativeSample: -1.41750000e-02 + RelativeStatEC: 9.08030000e-03 + RelativeStatFSR: 1.27250000e-03 + SinglePionECAL: 1.97350000e-03 + SinglePionHCAL: 9.93590000e-04 TimePtEta: 0.019949 - Lumi: 0.0072531 - model: -0.0011278 -- all uncorr. unc.: 0.00083025 - AbsoluteMPFBias: 0.0038444 - AbsoluteScale: 0.0023606 - fake: 1.0886e-06 - FlavorQCD: 0.0017914 - Fragmentation: -0.00073882 - JER: -0.0025643 - miss: 0.00016955 - PileUpDataMC: 0.00014589 - PileUpPtBB: 4.9703e-06 - PileUpPtEC1: -0.00029938 - PileUpPtEC2: -2.8766e-07 - PileUpPtRef: -0.00015919 - Pref: -0.00065935 - PU: 0.00048574 - RelativeBal: 0.00074059 - RelativeFSR: 0.0052404 - RelativeJEREC1: 0.0016636 - RelativeJEREC2: 3.5923e-06 - RelativePtBB: -1.6636e-05 - RelativePtEC1: 0.00024291 - RelativePtEC2: -4.0621e-07 - RelativeSample: -0.0052286 - RelativeStatEC: 0.0033921 - RelativeStatFSR: 0.00045936 - SinglePionECAL: 0.00081632 - SinglePionHCAL: 0.0004127 - TimePtEta: 0.0070474 - Lumi: 0.0024028 - model: -0.00042973 -- all uncorr. unc.: 0.00033466 - AbsoluteMPFBias: 0.0013725 - AbsoluteScale: 0.0008415 - fake: 6.1714e-07 - FlavorQCD: 0.00039766 - Fragmentation: -0.00028818 - JER: -0.00090411 - miss: 6.034e-05 - PileUpDataMC: 4.7091e-05 - PileUpPtBB: 1.3735e-06 - PileUpPtEC1: -4.6082e-05 - PileUpPtEC2: 5.5691e-08 - PileUpPtRef: -5.0103e-05 - Pref: -0.00019736 - PU: 0.00017204 - RelativeBal: 0.00032019 - RelativeFSR: 0.0021166 - RelativeJEREC1: 0.00051579 - RelativeJEREC2: 2.6674e-06 - RelativePtBB: -8.42e-06 - RelativePtEC1: 9.0248e-05 - RelativePtEC2: -1.0958e-07 - RelativeSample: -0.0019426 - RelativeStatEC: 0.0012379 - RelativeStatFSR: 0.00016448 - SinglePionECAL: 0.00031937 - SinglePionHCAL: 0.00016632 - TimePtEta: 0.0024411 - Lumi: 0.00077348 - model: 3.6112e-05 -- all uncorr. unc.: 0.00014156 - AbsoluteMPFBias: 0.00046428 - AbsoluteScale: 0.00028074 - fake: 1.3581e-07 - FlavorQCD: 5.5199e-05 - Fragmentation: -0.00010563 - JER: -0.00030544 - miss: 2.0507e-05 - PileUpDataMC: 1.3026e-05 - PileUpPtBB: 2.5206e-07 - PileUpPtEC1: 1.0406e-05 - PileUpPtEC2: 1.7597e-08 - PileUpPtRef: -1.2838e-05 - Pref: -5.3092e-05 - PU: 5.6699e-05 - RelativeBal: 0.0001227 - RelativeFSR: 0.00079547 - RelativeJEREC1: 0.00015234 - RelativeJEREC2: 6.3192e-07 - RelativePtBB: -3.9082e-06 - RelativePtEC1: 3.1963e-05 - RelativePtEC2: -3.1696e-08 - RelativeSample: -0.00069965 - RelativeStatEC: 0.0004261 - RelativeStatFSR: 5.4783e-05 - SinglePionECAL: 0.00011577 - SinglePionHCAL: 6.3793e-05 - TimePtEta: 0.00080123 - Lumi: 0.00023411 - model: 0.00010257 -- all uncorr. unc.: 6.2373e-05 - AbsoluteMPFBias: 0.00014437 - AbsoluteScale: 8.6264e-05 - fake: -3.6984e-08 - FlavorQCD: -6.9018e-06 - Fragmentation: -3.6481e-05 - JER: -9.6161e-05 - miss: 6.4733e-06 - PileUpDataMC: 3.0989e-06 - PileUpPtBB: -1.9138e-07 - PileUpPtEC1: 1.2594e-05 - PileUpPtEC2: -5.4411e-09 - PileUpPtRef: -2.8315e-06 - Pref: -1.3803e-05 - PU: 1.6829e-05 - RelativeBal: 4.1485e-05 - RelativeFSR: 0.00027122 - RelativeJEREC1: 4.1256e-05 - RelativeJEREC2: -1.5637e-07 - RelativePtBB: -1.6015e-06 - RelativePtEC1: 1.1665e-05 - RelativePtEC2: -7.8363e-09 - RelativeSample: -0.00023568 - RelativeStatEC: 0.00013432 - RelativeStatFSR: 1.6409e-05 - SinglePionECAL: 3.8999e-05 - SinglePionHCAL: 2.272e-05 - TimePtEta: 0.00024207 - Lumi: 6.4794e-05 - model: 6.3429e-05 -- all uncorr. unc.: 2.8549e-05 - AbsoluteMPFBias: 4.0413e-05 - AbsoluteScale: 2.458e-05 - fake: -4.876e-08 - FlavorQCD: -8.4786e-06 - Fragmentation: -1.1373e-05 - JER: -2.7632e-05 - miss: 1.8596e-06 - PileUpDataMC: 7.2956e-07 - PileUpPtBB: -1.36e-07 - PileUpPtEC1: 6.3734e-06 - PileUpPtEC2: -7.8828e-09 - PileUpPtRef: -4.3157e-07 - Pref: -3.3945e-06 - PU: 4.3988e-06 - RelativeBal: 1.2304e-05 - RelativeFSR: 8.2383e-05 - RelativeJEREC1: 1.0062e-05 - RelativeJEREC2: -2.1848e-07 - RelativePtBB: -5.7992e-07 - RelativePtEC1: 3.8681e-06 - RelativePtEC2: -1.387e-09 - RelativeSample: -7.2228e-05 - RelativeStatEC: 3.7993e-05 - RelativeStatFSR: 4.3184e-06 - SinglePionECAL: 1.1752e-05 - SinglePionHCAL: 7.2706e-06 - TimePtEta: 6.5984e-05 - Lumi: 1.6106e-05 - model: 3.7944e-05 -- all uncorr. unc.: 1.2501e-05 - AbsoluteMPFBias: 9.0955e-06 - AbsoluteScale: 5.5622e-06 - fake: -2.259e-08 - FlavorQCD: -3.2736e-06 - Fragmentation: -2.7957e-06 - JER: -6.3366e-06 - miss: 4.2538e-07 - PileUpDataMC: -1.3885e-07 - PileUpPtBB: -5.2713e-08 - PileUpPtEC1: 2.0636e-06 - PileUpPtEC2: -3.8426e-09 - PileUpPtRef: 9.3791e-08 - Pref: -5.9228e-07 - PU: 8.8508e-07 - RelativeBal: 2.8225e-06 - RelativeFSR: 1.9572e-05 - RelativeJEREC1: 1.9391e-06 - RelativeJEREC2: -1.0228e-07 - RelativePtBB: -1.6096e-07 - RelativePtEC1: 1.009e-06 - RelativePtEC2: -1.8568e-10 - RelativeSample: -1.7539e-05 - RelativeStatEC: 8.4515e-06 - RelativeStatFSR: 8.8896e-07 - SinglePionECAL: 2.7788e-06 - SinglePionHCAL: 1.8251e-06 - TimePtEta: 1.4219e-05 - Lumi: 3.1552e-06 - model: 1.3107e-05 -- all uncorr. unc.: 5.1362e-06 - AbsoluteMPFBias: 2.0089e-06 - AbsoluteScale: 1.2346e-06 - fake: -8.0529e-09 - FlavorQCD: -9.977e-07 - Fragmentation: -6.6886e-07 - JER: -1.4309e-06 - miss: 9.5684e-08 - PileUpDataMC: -7.3533e-08 - PileUpPtBB: -1.7058e-08 - PileUpPtEC1: 5.8837e-07 - PileUpPtEC2: -1.4165e-09 - PileUpPtRef: 4.6146e-08 - Pref: -1.6219e-07 - PU: 1.6899e-07 - RelativeBal: 6.2305e-07 - RelativeFSR: 4.5076e-06 - RelativeJEREC1: 3.6561e-07 - RelativeJEREC2: -3.6607e-08 - RelativePtBB: -4.2266e-08 - RelativePtEC1: 2.5458e-07 - RelativePtEC2: -6.6792e-11 - RelativeSample: -4.1593e-06 + Lumi: 7.25310000e-03 + model: -1.12780000e-03 +- all uncorr. unc.: 8.30250000e-04 + AbsoluteMPFBias: 3.84440000e-03 + AbsoluteScale: 2.36060000e-03 + fake: 1.08860000e-06 + FlavorQCD: 1.79140000e-03 + Fragmentation: -7.38820000e-04 + JER: -2.56430000e-03 + miss: 1.69550000e-04 + PileUpDataMC: 1.45890000e-04 + PileUpPtBB: 4.97030000e-06 + PileUpPtEC1: -2.99380000e-04 + PileUpPtEC2: -2.87660000e-07 + PileUpPtRef: -1.59190000e-04 + Pref: -6.59350000e-04 + PU: 4.85740000e-04 + RelativeBal: 7.40590000e-04 + RelativeFSR: 5.24040000e-03 + RelativeJEREC1: 1.66360000e-03 + RelativeJEREC2: 3.59230000e-06 + RelativePtBB: -1.66360000e-05 + RelativePtEC1: 2.42910000e-04 + RelativePtEC2: -4.06210000e-07 + RelativeSample: -5.22860000e-03 + RelativeStatEC: 3.39210000e-03 + RelativeStatFSR: 4.59360000e-04 + SinglePionECAL: 8.16320000e-04 + SinglePionHCAL: 4.12700000e-04 + TimePtEta: 7.04740000e-03 + Lumi: 2.40280000e-03 + model: -4.29730000e-04 +- all uncorr. unc.: 3.34660000e-04 + AbsoluteMPFBias: 1.37250000e-03 + AbsoluteScale: 8.41500000e-04 + fake: 6.17140000e-07 + FlavorQCD: 3.97660000e-04 + Fragmentation: -2.88180000e-04 + JER: -9.04110000e-04 + miss: 6.03400000e-05 + PileUpDataMC: 4.70910000e-05 + PileUpPtBB: 1.37350000e-06 + PileUpPtEC1: -4.60820000e-05 + PileUpPtEC2: 5.56910000e-08 + PileUpPtRef: -5.01030000e-05 + Pref: -1.97360000e-04 + PU: 1.72040000e-04 + RelativeBal: 3.20190000e-04 + RelativeFSR: 2.11660000e-03 + RelativeJEREC1: 5.15790000e-04 + RelativeJEREC2: 2.66740000e-06 + RelativePtBB: -8.42000000e-06 + RelativePtEC1: 9.02480000e-05 + RelativePtEC2: -1.09580000e-07 + RelativeSample: -1.94260000e-03 + RelativeStatEC: 1.23790000e-03 + RelativeStatFSR: 1.64480000e-04 + SinglePionECAL: 3.19370000e-04 + SinglePionHCAL: 1.66320000e-04 + TimePtEta: 2.44110000e-03 + Lumi: 7.73480000e-04 + model: 3.61120000e-05 +- all uncorr. unc.: 1.41560000e-04 + AbsoluteMPFBias: 4.64280000e-04 + AbsoluteScale: 2.80740000e-04 + fake: 1.35810000e-07 + FlavorQCD: 5.51990000e-05 + Fragmentation: -1.05630000e-04 + JER: -3.05440000e-04 + miss: 2.05070000e-05 + PileUpDataMC: 1.30260000e-05 + PileUpPtBB: 2.52060000e-07 + PileUpPtEC1: 1.04060000e-05 + PileUpPtEC2: 1.75970000e-08 + PileUpPtRef: -1.28380000e-05 + Pref: -5.30920000e-05 + PU: 5.66990000e-05 + RelativeBal: 1.22700000e-04 + RelativeFSR: 7.95470000e-04 + RelativeJEREC1: 1.52340000e-04 + RelativeJEREC2: 6.31920000e-07 + RelativePtBB: -3.90820000e-06 + RelativePtEC1: 3.19630000e-05 + RelativePtEC2: -3.16960000e-08 + RelativeSample: -6.99650000e-04 + RelativeStatEC: 4.26100000e-04 + RelativeStatFSR: 5.47830000e-05 + SinglePionECAL: 1.15770000e-04 + SinglePionHCAL: 6.37930000e-05 + TimePtEta: 8.01230000e-04 + Lumi: 2.34110000e-04 + model: 1.02570000e-04 +- all uncorr. unc.: 6.23730000e-05 + AbsoluteMPFBias: 1.44370000e-04 + AbsoluteScale: 8.62640000e-05 + fake: -3.69840000e-08 + FlavorQCD: -6.90180000e-06 + Fragmentation: -3.64810000e-05 + JER: -9.61610000e-05 + miss: 6.47330000e-06 + PileUpDataMC: 3.09890000e-06 + PileUpPtBB: -1.91380000e-07 + PileUpPtEC1: 1.25940000e-05 + PileUpPtEC2: -5.44110000e-09 + PileUpPtRef: -2.83150000e-06 + Pref: -1.38030000e-05 + PU: 1.68290000e-05 + RelativeBal: 4.14850000e-05 + RelativeFSR: 2.71220000e-04 + RelativeJEREC1: 4.12560000e-05 + RelativeJEREC2: -1.56370000e-07 + RelativePtBB: -1.60150000e-06 + RelativePtEC1: 1.16650000e-05 + RelativePtEC2: -7.83630000e-09 + RelativeSample: -2.35680000e-04 + RelativeStatEC: 1.34320000e-04 + RelativeStatFSR: 1.64090000e-05 + SinglePionECAL: 3.89990000e-05 + SinglePionHCAL: 2.27200000e-05 + TimePtEta: 2.42070000e-04 + Lumi: 6.47940000e-05 + model: 6.34290000e-05 +- all uncorr. unc.: 2.85490000e-05 + AbsoluteMPFBias: 4.04130000e-05 + AbsoluteScale: 2.45800000e-05 + fake: -4.87600000e-08 + FlavorQCD: -8.47860000e-06 + Fragmentation: -1.13730000e-05 + JER: -2.76320000e-05 + miss: 1.85960000e-06 + PileUpDataMC: 7.29560000e-07 + PileUpPtBB: -1.36000000e-07 + PileUpPtEC1: 6.37340000e-06 + PileUpPtEC2: -7.88280000e-09 + PileUpPtRef: -4.31570000e-07 + Pref: -3.39450000e-06 + PU: 4.39880000e-06 + RelativeBal: 1.23040000e-05 + RelativeFSR: 8.23830000e-05 + RelativeJEREC1: 1.00620000e-05 + RelativeJEREC2: -2.18480000e-07 + RelativePtBB: -5.79920000e-07 + RelativePtEC1: 3.86810000e-06 + RelativePtEC2: -1.38700000e-09 + RelativeSample: -7.22280000e-05 + RelativeStatEC: 3.79930000e-05 + RelativeStatFSR: 4.31840000e-06 + SinglePionECAL: 1.17520000e-05 + SinglePionHCAL: 7.27060000e-06 + TimePtEta: 6.59840000e-05 + Lumi: 1.61060000e-05 + model: 3.79440000e-05 +- all uncorr. unc.: 1.25010000e-05 + AbsoluteMPFBias: 9.09550000e-06 + AbsoluteScale: 5.56220000e-06 + fake: -2.25900000e-08 + FlavorQCD: -3.27360000e-06 + Fragmentation: -2.79570000e-06 + JER: -6.33660000e-06 + miss: 4.25380000e-07 + PileUpDataMC: -1.38850000e-07 + PileUpPtBB: -5.27130000e-08 + PileUpPtEC1: 2.06360000e-06 + PileUpPtEC2: -3.84260000e-09 + PileUpPtRef: 9.37910000e-08 + Pref: -5.92280000e-07 + PU: 8.85080000e-07 + RelativeBal: 2.82250000e-06 + RelativeFSR: 1.95720000e-05 + RelativeJEREC1: 1.93910000e-06 + RelativeJEREC2: -1.02280000e-07 + RelativePtBB: -1.60960000e-07 + RelativePtEC1: 1.00900000e-06 + RelativePtEC2: -1.85680000e-10 + RelativeSample: -1.75390000e-05 + RelativeStatEC: 8.45150000e-06 + RelativeStatFSR: 8.88960000e-07 + SinglePionECAL: 2.77880000e-06 + SinglePionHCAL: 1.82510000e-06 + TimePtEta: 1.42190000e-05 + Lumi: 3.15520000e-06 + model: 1.31070000e-05 +- all uncorr. unc.: 5.13620000e-06 + AbsoluteMPFBias: 2.00890000e-06 + AbsoluteScale: 1.23460000e-06 + fake: -8.05290000e-09 + FlavorQCD: -9.97700000e-07 + Fragmentation: -6.68860000e-07 + JER: -1.43090000e-06 + miss: 9.56840000e-08 + PileUpDataMC: -7.35330000e-08 + PileUpPtBB: -1.70580000e-08 + PileUpPtEC1: 5.88370000e-07 + PileUpPtEC2: -1.41650000e-09 + PileUpPtRef: 4.61460000e-08 + Pref: -1.62190000e-07 + PU: 1.68990000e-07 + RelativeBal: 6.23050000e-07 + RelativeFSR: 4.50760000e-06 + RelativeJEREC1: 3.65610000e-07 + RelativeJEREC2: -3.66070000e-08 + RelativePtBB: -4.22660000e-08 + RelativePtEC1: 2.54580000e-07 + RelativePtEC2: -6.67920000e-11 + RelativeSample: -4.15930000e-06 RelativeStatEC: 1.83e-06 - RelativeStatFSR: 1.8262e-07 - SinglePionECAL: 6.3839e-07 - SinglePionHCAL: 4.4376e-07 - TimePtEta: 3.0068e-06 - Lumi: 6.0328e-07 - model: 4.2533e-06 + RelativeStatFSR: 1.82620000e-07 + SinglePionECAL: 6.38390000e-07 + SinglePionHCAL: 4.43760000e-07 + TimePtEta: 3.00680000e-06 + Lumi: 6.03280000e-07 + model: 4.25330000e-06 diff --git a/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_2L_DIF/data_dSig_dmttBar.yaml b/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_2L_DIF/data_dSig_dmttBar.yaml index 8ffc020a44..6b295d2ca7 100644 --- a/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_2L_DIF/data_dSig_dmttBar.yaml +++ b/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_2L_DIF/data_dSig_dmttBar.yaml @@ -4,5 +4,5 @@ data_central: - 1.68821 - 0.534562 - 0.120815 -- 0.0228472 -- 0.00205865 +- 2.28472000e-02 +- 2.05865000e-03 diff --git a/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_2L_DIF/data_dSig_dmttBar_norm.yaml b/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_2L_DIF/data_dSig_dmttBar_norm.yaml index 927c38f9bc..b2511614a0 100644 --- a/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_2L_DIF/data_dSig_dmttBar_norm.yaml +++ b/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_2L_DIF/data_dSig_dmttBar_norm.yaml @@ -1,7 +1,7 @@ data_central: -- 0.00198085 -- 0.00399172 -- 0.00200949 -- 0.000636295 -- 0.000143808 -- 2.71952e-05 +- 1.98085000e-03 +- 3.99172000e-03 +- 2.00949000e-03 +- 6.36295000e-04 +- 1.43808000e-04 +- 2.71952000e-05 diff --git a/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_2L_DIF/data_dSig_dpTt.yaml b/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_2L_DIF/data_dSig_dpTt.yaml index b309b7281b..c0a201592d 100644 --- a/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_2L_DIF/data_dSig_dpTt.yaml +++ b/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_2L_DIF/data_dSig_dpTt.yaml @@ -4,4 +4,4 @@ data_central: - 2.83826 - 0.842426 - 0.187431 -- 0.0345005 +- 3.45005000e-02 diff --git a/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_2L_DIF/data_dSig_dpTt_norm.yaml b/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_2L_DIF/data_dSig_dpTt_norm.yaml index 6c964e66c2..dd9071d83c 100644 --- a/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_2L_DIF/data_dSig_dpTt_norm.yaml +++ b/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_2L_DIF/data_dSig_dpTt_norm.yaml @@ -1,6 +1,6 @@ data_central: -- 0.0041182 -- 0.00601568 -- 0.00335176 -- 0.000994837 -- 0.000221341 +- 4.11820000e-03 +- 6.01568000e-03 +- 3.35176000e-03 +- 9.94837000e-04 +- 2.21341000e-04 diff --git a/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_2L_DIF/data_dSig_dyt_norm.yaml b/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_2L_DIF/data_dSig_dyt_norm.yaml index 9b3602fe90..506ae07766 100644 --- a/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_2L_DIF/data_dSig_dyt_norm.yaml +++ b/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_2L_DIF/data_dSig_dyt_norm.yaml @@ -1,5 +1,5 @@ data_central: -- 0.0737053 +- 7.37053000e-02 - 0.162103 - 0.231407 - 0.279366 diff --git a/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_2L_DIF/filter.py b/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_2L_DIF/filter.py index 0b1c8e4dc1..e8151dc74d 100644 --- a/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_2L_DIF/filter.py +++ b/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_2L_DIF/filter.py @@ -1,6 +1,9 @@ import yaml from nnpdf_data.filter_utils.utils import covmat_to_artunc as cta +from nnpdf_data.filter_utils.utils import prettify_float + +yaml.add_representer(float, prettify_float) def processData(): diff --git a/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_2L_DIF/uncertainties_dSig_dmttBar.yaml b/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_2L_DIF/uncertainties_dSig_dmttBar.yaml index 32d3faa8a3..1d8675af11 100644 --- a/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_2L_DIF/uncertainties_dSig_dmttBar.yaml +++ b/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_2L_DIF/uncertainties_dSig_dmttBar.yaml @@ -28,52 +28,52 @@ definitions: treatment: ADD type: CORR bins: -- ArtUnc_1: -0.01805637219103818 - ArtUnc_2: -0.16339995453120304 - ArtUnc_3: 0.0184213139429751 - ArtUnc_4: -0.00042111329903718166 - ArtUnc_5: -1.1688241231526205e-05 - ArtUnc_6: 1.4448065116751614e-06 - ArtUnc_7: -2.7503278596963232e-08 -- ArtUnc_1: -0.3254682880663894 - ArtUnc_2: 0.019008725103208456 - ArtUnc_3: 0.020737818503580214 - ArtUnc_4: -0.001000160411459846 - ArtUnc_5: 6.629971439429923e-05 - ArtUnc_6: 5.411680612117731e-07 - ArtUnc_7: -5.598474338848227e-08 -- ArtUnc_1: -0.09190639030665138 - ArtUnc_2: -0.0341869356490412 - ArtUnc_3: -0.07552539231312778 - ArtUnc_4: -0.0029295724655810694 - ArtUnc_5: 0.0005488926028938287 - ArtUnc_6: -1.7021923935487917e-05 - ArtUnc_7: 1.0660660574348663e-07 -- ArtUnc_1: -0.018636012554380264 - ArtUnc_2: -0.004609782962538219 - ArtUnc_3: -0.0061777577897243995 - ArtUnc_4: 0.033564663757649625 - ArtUnc_5: -0.0009309395980318112 - ArtUnc_6: -3.0720417881500674e-05 - ArtUnc_7: -5.995283339447526e-07 -- ArtUnc_1: -0.0062862304320424845 - ArtUnc_2: -0.0013058241903779592 - ArtUnc_3: -0.003990354885609988 - ArtUnc_4: -0.0037704101203634302 - ArtUnc_5: -0.008693678871092729 - ArtUnc_6: 4.6260907879237853e-05 - ArtUnc_7: 3.628354215390363e-06 -- ArtUnc_1: -0.0008927285066479192 - ArtUnc_2: -0.0002376489476033727 - ArtUnc_3: -0.0007233809736429777 - ArtUnc_4: 0.0006245398363779228 - ArtUnc_5: 0.00020470727022090356 - ArtUnc_6: 0.0018388938455571131 - ArtUnc_7: -1.6526014656518035e-05 -- ArtUnc_1: -3.0070603610370645e-05 - ArtUnc_2: -4.342620982691192e-06 - ArtUnc_3: 2.1331775778431877e-05 - ArtUnc_4: 0.00011083842233300124 - ArtUnc_5: 8.571824115353588e-05 - ArtUnc_6: 7.545535898329192e-05 - ArtUnc_7: 0.0004003055980780502 +- ArtUnc_1: -1.80563722e-02 + ArtUnc_2: -1.63399955e-01 + ArtUnc_3: 1.84213139e-02 + ArtUnc_4: -4.21113299e-04 + ArtUnc_5: -1.16882412e-05 + ArtUnc_6: 1.44480651e-06 + ArtUnc_7: -2.75032786e-08 +- ArtUnc_1: -3.25468288e-01 + ArtUnc_2: 1.90087251e-02 + ArtUnc_3: 2.07378185e-02 + ArtUnc_4: -1.00016041e-03 + ArtUnc_5: 6.62997144e-05 + ArtUnc_6: 5.41168061e-07 + ArtUnc_7: -5.59847434e-08 +- ArtUnc_1: -9.19063903e-02 + ArtUnc_2: -3.41869356e-02 + ArtUnc_3: -7.55253923e-02 + ArtUnc_4: -2.92957247e-03 + ArtUnc_5: 5.48892603e-04 + ArtUnc_6: -1.70219239e-05 + ArtUnc_7: 1.06606606e-07 +- ArtUnc_1: -1.86360126e-02 + ArtUnc_2: -4.60978296e-03 + ArtUnc_3: -6.17775779e-03 + ArtUnc_4: 3.35646638e-02 + ArtUnc_5: -9.30939598e-04 + ArtUnc_6: -3.07204179e-05 + ArtUnc_7: -5.99528334e-07 +- ArtUnc_1: -6.28623043e-03 + ArtUnc_2: -1.30582419e-03 + ArtUnc_3: -3.99035489e-03 + ArtUnc_4: -3.77041012e-03 + ArtUnc_5: -8.69367887e-03 + ArtUnc_6: 4.62609079e-05 + ArtUnc_7: 3.62835422e-06 +- ArtUnc_1: -8.92728507e-04 + ArtUnc_2: -2.37648948e-04 + ArtUnc_3: -7.23380974e-04 + ArtUnc_4: 6.24539836e-04 + ArtUnc_5: 2.04707270e-04 + ArtUnc_6: 1.83889385e-03 + ArtUnc_7: -1.65260147e-05 +- ArtUnc_1: -3.00706036e-05 + ArtUnc_2: -4.34262098e-06 + ArtUnc_3: 2.13317758e-05 + ArtUnc_4: 1.10838422e-04 + ArtUnc_5: 8.57182412e-05 + ArtUnc_6: 7.54553590e-05 + ArtUnc_7: 4.00305598e-04 diff --git a/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_2L_DIF/uncertainties_dSig_dmttBar_norm.yaml b/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_2L_DIF/uncertainties_dSig_dmttBar_norm.yaml index e0e3cfe1cc..d28569541b 100644 --- a/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_2L_DIF/uncertainties_dSig_dmttBar_norm.yaml +++ b/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_2L_DIF/uncertainties_dSig_dmttBar_norm.yaml @@ -24,39 +24,39 @@ definitions: treatment: ADD type: CORR bins: -- ArtUnc_1: 0.00016842496607187142 - ArtUnc_2: -7.351436800867417e-05 - ArtUnc_3: 8.454605773311268e-06 - ArtUnc_4: -2.657709554463591e-06 - ArtUnc_5: 4.6480540065545483e-07 - ArtUnc_6: 9.315071526960966e-08 -- ArtUnc_1: -0.000177220584645082 - ArtUnc_2: -6.651440336351316e-05 - ArtUnc_3: 9.030077845404308e-06 - ArtUnc_4: -3.1250475085984615e-06 - ArtUnc_5: 5.282854523866984e-07 - ArtUnc_6: 1.058768479907116e-07 -- ArtUnc_1: 1.0561342330795624e-05 - ArtUnc_2: 5.1316337206771574e-05 - ArtUnc_3: 3.14463313995191e-05 - ArtUnc_4: -6.886745802352153e-06 - ArtUnc_5: 9.636654408785697e-07 - ArtUnc_6: 1.8413727521357035e-07 -- ArtUnc_1: 4.499335532111704e-06 - ArtUnc_2: 1.1741964511343579e-05 - ArtUnc_3: -3.426759625946021e-05 - ArtUnc_4: -6.615758841673389e-06 - ArtUnc_5: 1.3864754316935505e-06 - ArtUnc_6: 2.5202501579011443e-07 -- ArtUnc_1: -3.675155391069653e-07 - ArtUnc_2: 2.779306733988987e-06 - ArtUnc_3: 4.038211806950868e-06 - ArtUnc_4: 1.0033692601483093e-05 - ArtUnc_5: 1.852339031060237e-06 - ArtUnc_6: 3.536731571313086e-07 -- ArtUnc_1: 1.975098066164064e-07 - ArtUnc_2: 7.821491235584208e-07 - ArtUnc_3: -5.11201383029743e-07 - ArtUnc_4: -5.4520028855201505e-08 - ArtUnc_5: -2.009178788834923e-06 - ArtUnc_6: 6.376863898070012e-07 +- ArtUnc_1: 1.68424966e-04 + ArtUnc_2: -7.35143680e-05 + ArtUnc_3: 8.45460577e-06 + ArtUnc_4: -2.65770955e-06 + ArtUnc_5: 4.64805401e-07 + ArtUnc_6: 9.31507153e-08 +- ArtUnc_1: -1.77220585e-04 + ArtUnc_2: -6.65144034e-05 + ArtUnc_3: 9.03007785e-06 + ArtUnc_4: -3.12504751e-06 + ArtUnc_5: 5.28285452e-07 + ArtUnc_6: 1.05876848e-07 +- ArtUnc_1: 1.05613423e-05 + ArtUnc_2: 5.13163372e-05 + ArtUnc_3: 3.14463314e-05 + ArtUnc_4: -6.88674580e-06 + ArtUnc_5: 9.63665441e-07 + ArtUnc_6: 1.84137275e-07 +- ArtUnc_1: 4.49933553e-06 + ArtUnc_2: 1.17419645e-05 + ArtUnc_3: -3.42675963e-05 + ArtUnc_4: -6.61575884e-06 + ArtUnc_5: 1.38647543e-06 + ArtUnc_6: 2.52025016e-07 +- ArtUnc_1: -3.67515539e-07 + ArtUnc_2: 2.77930673e-06 + ArtUnc_3: 4.03821181e-06 + ArtUnc_4: 1.00336926e-05 + ArtUnc_5: 1.85233903e-06 + ArtUnc_6: 3.53673157e-07 +- ArtUnc_1: 1.97509807e-07 + ArtUnc_2: 7.82149124e-07 + ArtUnc_3: -5.11201383e-07 + ArtUnc_4: -5.45200289e-08 + ArtUnc_5: -2.00917879e-06 + ArtUnc_6: 6.37686390e-07 diff --git a/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_2L_DIF/uncertainties_dSig_dpTt.yaml b/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_2L_DIF/uncertainties_dSig_dpTt.yaml index da87eb7d6b..66eae6f382 100644 --- a/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_2L_DIF/uncertainties_dSig_dpTt.yaml +++ b/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_2L_DIF/uncertainties_dSig_dpTt.yaml @@ -24,39 +24,39 @@ definitions: treatment: ADD type: CORR bins: -- ArtUnc_1: 0.15462811058417314 - ArtUnc_2: 0.22692596801815484 - ArtUnc_3: -0.05698548792753196 - ArtUnc_4: 0.002525628577248171 - ArtUnc_5: -0.00016660972254139162 - ArtUnc_6: -7.958850206497204e-06 -- ArtUnc_1: 0.4565417787106362 - ArtUnc_2: -0.10990629882210451 - ArtUnc_3: -0.01910580676227913 - ArtUnc_4: 0.0010820378905281717 - ArtUnc_5: -8.4327853001794e-05 - ArtUnc_6: -1.316693570220325e-06 -- ArtUnc_1: 0.1524934237169432 - ArtUnc_2: 0.09424739978578653 - ArtUnc_3: 0.11453207581353272 - ArtUnc_4: 0.0020206607102257503 - ArtUnc_5: -6.236731279734291e-05 - ArtUnc_6: 2.6755627711440236e-06 -- ArtUnc_1: 0.03563388764046859 - ArtUnc_2: 0.01927234469452058 - ArtUnc_3: 0.0020068910105840356 - ArtUnc_4: -0.033344478876408616 - ArtUnc_5: -0.00020068739163096947 - ArtUnc_6: 2.4962076563713414e-05 -- ArtUnc_1: 0.0076888473342981 - ArtUnc_2: 0.0035997920112281266 - ArtUnc_3: -0.000292710398835191 - ArtUnc_4: -0.0006249966519105539 - ArtUnc_5: 0.01027984522191839 - ArtUnc_6: -0.0003472839856244323 -- ArtUnc_1: 0.0012995538723609566 - ArtUnc_2: 0.0008833741042680573 - ArtUnc_3: -0.0003799438626682635 - ArtUnc_4: 0.0002560644664587906 - ArtUnc_5: 0.001449305900323977 - ArtUnc_6: 0.0024658458958873052 +- ArtUnc_1: 1.54628111e-01 + ArtUnc_2: 2.26925968e-01 + ArtUnc_3: -5.69854879e-02 + ArtUnc_4: 2.52562858e-03 + ArtUnc_5: -1.66609723e-04 + ArtUnc_6: -7.95885021e-06 +- ArtUnc_1: 4.56541779e-01 + ArtUnc_2: -1.09906299e-01 + ArtUnc_3: -1.91058068e-02 + ArtUnc_4: 1.08203789e-03 + ArtUnc_5: -8.43278530e-05 + ArtUnc_6: -1.31669357e-06 +- ArtUnc_1: 1.52493424e-01 + ArtUnc_2: 9.42473998e-02 + ArtUnc_3: 1.14532076e-01 + ArtUnc_4: 2.02066071e-03 + ArtUnc_5: -6.23673128e-05 + ArtUnc_6: 2.67556277e-06 +- ArtUnc_1: 3.56338876e-02 + ArtUnc_2: 1.92723447e-02 + ArtUnc_3: 2.00689101e-03 + ArtUnc_4: -3.33444789e-02 + ArtUnc_5: -2.00687392e-04 + ArtUnc_6: 2.49620766e-05 +- ArtUnc_1: 7.68884733e-03 + ArtUnc_2: 3.59979201e-03 + ArtUnc_3: -2.92710399e-04 + ArtUnc_4: -6.24996652e-04 + ArtUnc_5: 1.02798452e-02 + ArtUnc_6: -3.47283986e-04 +- ArtUnc_1: 1.29955387e-03 + ArtUnc_2: 8.83374104e-04 + ArtUnc_3: -3.79943863e-04 + ArtUnc_4: 2.56064466e-04 + ArtUnc_5: 1.44930590e-03 + ArtUnc_6: 2.46584590e-03 diff --git a/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_2L_DIF/uncertainties_dSig_dpTt_norm.yaml b/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_2L_DIF/uncertainties_dSig_dpTt_norm.yaml index 76c5f38053..c6ed4c6ff1 100644 --- a/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_2L_DIF/uncertainties_dSig_dpTt_norm.yaml +++ b/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_2L_DIF/uncertainties_dSig_dpTt_norm.yaml @@ -20,28 +20,28 @@ definitions: treatment: ADD type: CORR bins: -- ArtUnc_1: -0.00017654056806956658 - ArtUnc_2: 8.954263861254927e-05 - ArtUnc_3: -1.8703398817905472e-05 - ArtUnc_4: 5.0019858388230765e-06 - ArtUnc_5: 9.522112705529593e-07 -- ArtUnc_1: 0.00028520610942779656 - ArtUnc_2: 3.613175329016841e-05 - ArtUnc_3: -1.3711131772777478e-05 - ArtUnc_4: 4.408924337080326e-06 - ArtUnc_5: 8.589533966441566e-07 -- ArtUnc_1: -5.198981861490588e-05 - ArtUnc_2: -0.00010554001245829793 - ArtUnc_3: -2.1021599362528278e-05 - ArtUnc_4: 5.599012425480973e-06 - ArtUnc_5: 1.0990681471944071e-06 -- ArtUnc_1: -1.2705524563179423e-05 - ArtUnc_2: -1.331799251517809e-06 - ArtUnc_3: 3.7658977630747885e-05 - ArtUnc_4: 8.060678246076375e-06 - ArtUnc_5: 1.2011770677814817e-06 -- ArtUnc_1: -1.8721145544744334e-06 - ArtUnc_2: 5.425992813023619e-07 - ArtUnc_3: 3.120629507627909e-06 - ArtUnc_4: -1.0206667295356484e-05 - ArtUnc_5: 2.3892231609620584e-06 +- ArtUnc_1: -1.76540568e-04 + ArtUnc_2: 8.95426386e-05 + ArtUnc_3: -1.87033988e-05 + ArtUnc_4: 5.00198584e-06 + ArtUnc_5: 9.52211271e-07 +- ArtUnc_1: 2.85206109e-04 + ArtUnc_2: 3.61317533e-05 + ArtUnc_3: -1.37111318e-05 + ArtUnc_4: 4.40892434e-06 + ArtUnc_5: 8.58953397e-07 +- ArtUnc_1: -5.19898186e-05 + ArtUnc_2: -1.05540012e-04 + ArtUnc_3: -2.10215994e-05 + ArtUnc_4: 5.59901243e-06 + ArtUnc_5: 1.09906815e-06 +- ArtUnc_1: -1.27055246e-05 + ArtUnc_2: -1.33179925e-06 + ArtUnc_3: 3.76589776e-05 + ArtUnc_4: 8.06067825e-06 + ArtUnc_5: 1.20117707e-06 +- ArtUnc_1: -1.87211455e-06 + ArtUnc_2: 5.42599281e-07 + ArtUnc_3: 3.12062951e-06 + ArtUnc_4: -1.02066673e-05 + ArtUnc_5: 2.38922316e-06 diff --git a/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_2L_DIF/uncertainties_dSig_dyt.yaml b/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_2L_DIF/uncertainties_dSig_dyt.yaml index b5572d205b..2427b92864 100644 --- a/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_2L_DIF/uncertainties_dSig_dyt.yaml +++ b/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_2L_DIF/uncertainties_dSig_dyt.yaml @@ -40,103 +40,103 @@ definitions: treatment: ADD type: CORR bins: -- ArtUnc_1: -4.8100026399476326 - ArtUnc_2: 0.2561657753334328 - ArtUnc_3: 1.5216384034859112 - ArtUnc_4: 1.212245295754131 - ArtUnc_5: -2.571834768612734 - ArtUnc_6: -0.8823966233828309 - ArtUnc_7: 1.6892921406458263 - ArtUnc_8: 1.3536012429898172 - ArtUnc_9: -0.14133959663604548 - ArtUnc_10: -0.127092840679407 -- ArtUnc_1: -8.92402837467971 - ArtUnc_2: -0.06948100566910778 - ArtUnc_3: -0.8327571220419571 - ArtUnc_4: -1.2335017604545868 - ArtUnc_5: 1.737130717477004 - ArtUnc_6: 2.0722405298549003 - ArtUnc_7: 1.576463965489381 - ArtUnc_8: 0.3376486866854206 - ArtUnc_9: -0.4733140923254674 - ArtUnc_10: -2.272070310780522 -- ArtUnc_1: -12.16696845015439 - ArtUnc_2: -0.62615886866013 - ArtUnc_3: -3.9734778470995633 - ArtUnc_4: -1.095817606390465 - ArtUnc_5: 1.8745480702570805 - ArtUnc_6: -1.8744842291733446 - ArtUnc_7: 0.9606951778704509 - ArtUnc_8: 0.39269961744119153 - ArtUnc_9: -0.5035921491454028 - ArtUnc_10: 1.5382088662313398 -- ArtUnc_1: -15.005148707884016 - ArtUnc_2: -1.577653708381794 - ArtUnc_3: 0.18350440312585903 - ArtUnc_4: 4.4599740013258256 - ArtUnc_5: 0.9234421245500464 - ArtUnc_6: 0.8397582382609142 - ArtUnc_7: -1.43805718232838 - ArtUnc_8: 0.0826734901487008 - ArtUnc_9: -0.853929592866549 - ArtUnc_10: 0.14663117312984678 -- ArtUnc_1: -15.355609276000681 - ArtUnc_2: 6.188459550031235 - ArtUnc_3: 4.351224964556036 - ArtUnc_4: -2.110193597849449 - ArtUnc_5: 0.5914575568100641 - ArtUnc_6: 0.880426112671774 - ArtUnc_7: -0.5007016964973329 - ArtUnc_8: 0.11631966180244746 - ArtUnc_9: -0.2827680106134918 - ArtUnc_10: 1.1958235931955676 -- ArtUnc_1: -16.730896625298808 - ArtUnc_2: -9.035597505399576 - ArtUnc_3: 0.10836040164511158 - ArtUnc_4: -2.302285891856376 - ArtUnc_5: -1.5541807476371403 - ArtUnc_6: 0.14393411900746947 - ArtUnc_7: -1.5107521820056091 - ArtUnc_8: 0.045572648376288494 - ArtUnc_9: 0.19733286751298978 - ArtUnc_10: -0.21732330809290548 -- ArtUnc_1: -14.150440659484323 - ArtUnc_2: 7.063994270619659 - ArtUnc_3: -3.932191882773112 - ArtUnc_4: 0.29314825064816885 - ArtUnc_5: -1.803166619319278 - ArtUnc_6: 0.6366402617457213 - ArtUnc_7: -0.800050218728371 - ArtUnc_8: -0.09747616093131327 - ArtUnc_9: 0.966262922288319 - ArtUnc_10: -0.41349548719565865 -- ArtUnc_1: -12.415190391231459 - ArtUnc_2: 1.013174863647644 - ArtUnc_3: 2.193094399236548 - ArtUnc_4: 0.630009636184939 - ArtUnc_5: 0.9621562747558366 - ArtUnc_6: -3.247089127304176 - ArtUnc_7: 0.22780207079140452 - ArtUnc_8: -0.4990674763529822 - ArtUnc_9: 0.6020624187096827 - ArtUnc_10: -1.5369369786547304 -- ArtUnc_1: -9.177384093843285 - ArtUnc_2: -3.2777955200438034 - ArtUnc_3: 0.8061195169955969 - ArtUnc_4: 1.2900290061140265 - ArtUnc_5: 0.1143933493529111 - ArtUnc_6: 1.3865362722938102 - ArtUnc_7: 2.5423553829854657 - ArtUnc_8: -0.6029335151650956 - ArtUnc_9: 1.2219967277643693 - ArtUnc_10: 1.1439972980835627 -- ArtUnc_1: -4.581711632127054 - ArtUnc_2: 0.9536948844267125 - ArtUnc_3: -0.416449159526931 - ArtUnc_4: -0.2835699603149154 - ArtUnc_5: -2.2599767871452405 - ArtUnc_6: -0.3034286682119507 - ArtUnc_7: 1.2705095854802957 - ArtUnc_8: -1.0874611956375033 - ArtUnc_9: -1.6320837738121907 - ArtUnc_10: -0.07010580505424831 +- ArtUnc_1: -4.81000264e+00 + ArtUnc_2: 2.56165775e-01 + ArtUnc_3: 1.52163840e+00 + ArtUnc_4: 1.21224530e+00 + ArtUnc_5: -2.57183477e+00 + ArtUnc_6: -8.82396623e-01 + ArtUnc_7: 1.68929214e+00 + ArtUnc_8: 1.35360124e+00 + ArtUnc_9: -1.41339597e-01 + ArtUnc_10: -1.27092841e-01 +- ArtUnc_1: -8.92402837e+00 + ArtUnc_2: -6.94810057e-02 + ArtUnc_3: -8.32757122e-01 + ArtUnc_4: -1.23350176e+00 + ArtUnc_5: 1.73713072e+00 + ArtUnc_6: 2.07224053e+00 + ArtUnc_7: 1.57646397e+00 + ArtUnc_8: 3.37648687e-01 + ArtUnc_9: -4.73314092e-01 + ArtUnc_10: -2.27207031e+00 +- ArtUnc_1: -1.21669685e+01 + ArtUnc_2: -6.26158869e-01 + ArtUnc_3: -3.97347785e+00 + ArtUnc_4: -1.09581761e+00 + ArtUnc_5: 1.87454807e+00 + ArtUnc_6: -1.87448423e+00 + ArtUnc_7: 9.60695178e-01 + ArtUnc_8: 3.92699617e-01 + ArtUnc_9: -5.03592149e-01 + ArtUnc_10: 1.53820887e+00 +- ArtUnc_1: -1.50051487e+01 + ArtUnc_2: -1.57765371e+00 + ArtUnc_3: 1.83504403e-01 + ArtUnc_4: 4.45997400e+00 + ArtUnc_5: 9.23442125e-01 + ArtUnc_6: 8.39758238e-01 + ArtUnc_7: -1.43805718e+00 + ArtUnc_8: 8.26734901e-02 + ArtUnc_9: -8.53929593e-01 + ArtUnc_10: 1.46631173e-01 +- ArtUnc_1: -1.53556093e+01 + ArtUnc_2: 6.18845955e+00 + ArtUnc_3: 4.35122496e+00 + ArtUnc_4: -2.11019360e+00 + ArtUnc_5: 5.91457557e-01 + ArtUnc_6: 8.80426113e-01 + ArtUnc_7: -5.00701696e-01 + ArtUnc_8: 1.16319662e-01 + ArtUnc_9: -2.82768011e-01 + ArtUnc_10: 1.19582359e+00 +- ArtUnc_1: -1.67308966e+01 + ArtUnc_2: -9.03559751e+00 + ArtUnc_3: 1.08360402e-01 + ArtUnc_4: -2.30228589e+00 + ArtUnc_5: -1.55418075e+00 + ArtUnc_6: 1.43934119e-01 + ArtUnc_7: -1.51075218e+00 + ArtUnc_8: 4.55726484e-02 + ArtUnc_9: 1.97332868e-01 + ArtUnc_10: -2.17323308e-01 +- ArtUnc_1: -1.41504407e+01 + ArtUnc_2: 7.06399427e+00 + ArtUnc_3: -3.93219188e+00 + ArtUnc_4: 2.93148251e-01 + ArtUnc_5: -1.80316662e+00 + ArtUnc_6: 6.36640262e-01 + ArtUnc_7: -8.00050219e-01 + ArtUnc_8: -9.74761609e-02 + ArtUnc_9: 9.66262922e-01 + ArtUnc_10: -4.13495487e-01 +- ArtUnc_1: -1.24151904e+01 + ArtUnc_2: 1.01317486e+00 + ArtUnc_3: 2.19309440e+00 + ArtUnc_4: 6.30009636e-01 + ArtUnc_5: 9.62156275e-01 + ArtUnc_6: -3.24708913e+00 + ArtUnc_7: 2.27802071e-01 + ArtUnc_8: -4.99067476e-01 + ArtUnc_9: 6.02062419e-01 + ArtUnc_10: -1.53693698e+00 +- ArtUnc_1: -9.17738409e+00 + ArtUnc_2: -3.27779552e+00 + ArtUnc_3: 8.06119517e-01 + ArtUnc_4: 1.29002901e+00 + ArtUnc_5: 1.14393349e-01 + ArtUnc_6: 1.38653627e+00 + ArtUnc_7: 2.54235538e+00 + ArtUnc_8: -6.02933515e-01 + ArtUnc_9: 1.22199673e+00 + ArtUnc_10: 1.14399730e+00 +- ArtUnc_1: -4.58171163e+00 + ArtUnc_2: 9.53694884e-01 + ArtUnc_3: -4.16449160e-01 + ArtUnc_4: -2.83569960e-01 + ArtUnc_5: -2.25997679e+00 + ArtUnc_6: -3.03428668e-01 + ArtUnc_7: 1.27050959e+00 + ArtUnc_8: -1.08746120e+00 + ArtUnc_9: -1.63208377e+00 + ArtUnc_10: -7.01058051e-02 diff --git a/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_2L_DIF/uncertainties_dSig_dyt_norm.yaml b/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_2L_DIF/uncertainties_dSig_dyt_norm.yaml index 55813b55b6..a45c52a049 100644 --- a/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_2L_DIF/uncertainties_dSig_dyt_norm.yaml +++ b/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_2L_DIF/uncertainties_dSig_dyt_norm.yaml @@ -36,84 +36,84 @@ definitions: treatment: ADD type: CORR bins: -- ArtUnc_1: -8.14603340714429e-05 - ArtUnc_2: -0.001989269966354753 - ArtUnc_3: -0.002823771640497846 - ArtUnc_4: -0.0011849086457970497 - ArtUnc_5: -0.0019466537307916874 - ArtUnc_6: 0.0003196488696974336 - ArtUnc_7: -0.00022645761288001576 - ArtUnc_8: -0.00041220484982233457 - ArtUnc_9: 0.0001834186528546099 -- ArtUnc_1: 0.00026618707185800417 - ArtUnc_2: 0.0010469323107324354 - ArtUnc_3: 0.001756869479548874 - ArtUnc_4: -0.00037788121050124447 - ArtUnc_5: 0.000330669891716203 - ArtUnc_6: 0.00045451452888652994 - ArtUnc_7: 0.0028450300873972523 - ArtUnc_8: 0.0029047363874583143 - ArtUnc_9: -0.000298289941203809 -- ArtUnc_1: 0.0009006245952502302 - ArtUnc_2: 0.004685929958723503 - ArtUnc_3: 0.002032409440153057 - ArtUnc_4: -0.0003986384802150436 - ArtUnc_5: 0.0007187221365475602 - ArtUnc_6: 0.0005201092952932614 - ArtUnc_7: -0.0017349094379855527 - ArtUnc_8: 0.0009048060498172964 - ArtUnc_9: 0.0029527402621336695 -- ArtUnc_1: 0.001977230212207351 - ArtUnc_2: 0.00037872723972887784 - ArtUnc_3: -0.0019417489411161937 - ArtUnc_4: -0.00024848622180789385 - ArtUnc_5: 0.005514551793109189 - ArtUnc_6: 0.0006697929148547594 - ArtUnc_7: -7.102128536308354e-05 - ArtUnc_8: -0.0005872992869645125 - ArtUnc_9: -0.0012970826920249141 -- ArtUnc_1: -0.006682395614408073 - ArtUnc_2: -0.004359517981149595 - ArtUnc_3: 0.00424331529804023 - ArtUnc_4: -0.0003037574199147601 - ArtUnc_5: 0.0011351635182646049 - ArtUnc_6: 0.00011248897198295408 - ArtUnc_7: -0.0011404384035129502 - ArtUnc_8: 0.00038430394346928334 - ArtUnc_9: -0.0010676419252950385 -- ArtUnc_1: 0.010685401763991815 - ArtUnc_2: 0.00046298607769133885 - ArtUnc_3: 0.003355004972283398 - ArtUnc_4: -0.00031510503973062996 - ArtUnc_5: -0.0005077036601662889 - ArtUnc_6: -0.00042329804887856137 - ArtUnc_7: 0.00018654253973992023 - ArtUnc_8: -0.0019897339861144614 - ArtUnc_9: -0.001492883044472113 -- ArtUnc_1: -0.007856380025652428 - ArtUnc_2: 0.004898280644850008 - ArtUnc_3: 0.0002031169772821441 - ArtUnc_4: -0.00032078657461666587 - ArtUnc_5: 3.0581059038240236e-05 - ArtUnc_6: -0.0012950373046165602 - ArtUnc_7: 0.00040402906597901455 - ArtUnc_8: -0.0013569348172808799 - ArtUnc_9: -0.0018179138257567269 -- ArtUnc_1: -0.0009009657350831303 - ArtUnc_2: -0.002257495692484381 - ArtUnc_3: 0.0005029308482205425 - ArtUnc_4: -0.00013385596885607777 - ArtUnc_5: 0.0017802764259912491 - ArtUnc_6: -0.0012775370976750922 - ArtUnc_7: 0.0014057647567079746 - ArtUnc_8: -0.0016183779248381276 - ArtUnc_9: 0.003621078601252458 -- ArtUnc_1: 0.0038657410909065833 - ArtUnc_2: -0.0007864492786754855 - ArtUnc_3: -0.001069396881786262 - ArtUnc_4: -0.00011620593507329404 - ArtUnc_5: 0.0007909017576186374 - ArtUnc_6: -0.0020534800038195934 - ArtUnc_7: -0.0010984234867150475 - ArtUnc_8: 0.0029101879326167298 - ArtUnc_9: -0.0005697334152217767 +- ArtUnc_1: -8.14603341e-05 + ArtUnc_2: -1.98926997e-03 + ArtUnc_3: -2.82377164e-03 + ArtUnc_4: -1.18490865e-03 + ArtUnc_5: -1.94665373e-03 + ArtUnc_6: 3.19648870e-04 + ArtUnc_7: -2.26457613e-04 + ArtUnc_8: -4.12204850e-04 + ArtUnc_9: 1.83418653e-04 +- ArtUnc_1: 2.66187072e-04 + ArtUnc_2: 1.04693231e-03 + ArtUnc_3: 1.75686948e-03 + ArtUnc_4: -3.77881211e-04 + ArtUnc_5: 3.30669892e-04 + ArtUnc_6: 4.54514529e-04 + ArtUnc_7: 2.84503009e-03 + ArtUnc_8: 2.90473639e-03 + ArtUnc_9: -2.98289941e-04 +- ArtUnc_1: 9.00624595e-04 + ArtUnc_2: 4.68592996e-03 + ArtUnc_3: 2.03240944e-03 + ArtUnc_4: -3.98638480e-04 + ArtUnc_5: 7.18722137e-04 + ArtUnc_6: 5.20109295e-04 + ArtUnc_7: -1.73490944e-03 + ArtUnc_8: 9.04806050e-04 + ArtUnc_9: 2.95274026e-03 +- ArtUnc_1: 1.97723021e-03 + ArtUnc_2: 3.78727240e-04 + ArtUnc_3: -1.94174894e-03 + ArtUnc_4: -2.48486222e-04 + ArtUnc_5: 5.51455179e-03 + ArtUnc_6: 6.69792915e-04 + ArtUnc_7: -7.10212854e-05 + ArtUnc_8: -5.87299287e-04 + ArtUnc_9: -1.29708269e-03 +- ArtUnc_1: -6.68239561e-03 + ArtUnc_2: -4.35951798e-03 + ArtUnc_3: 4.24331530e-03 + ArtUnc_4: -3.03757420e-04 + ArtUnc_5: 1.13516352e-03 + ArtUnc_6: 1.12488972e-04 + ArtUnc_7: -1.14043840e-03 + ArtUnc_8: 3.84303943e-04 + ArtUnc_9: -1.06764193e-03 +- ArtUnc_1: 1.06854018e-02 + ArtUnc_2: 4.62986078e-04 + ArtUnc_3: 3.35500497e-03 + ArtUnc_4: -3.15105040e-04 + ArtUnc_5: -5.07703660e-04 + ArtUnc_6: -4.23298049e-04 + ArtUnc_7: 1.86542540e-04 + ArtUnc_8: -1.98973399e-03 + ArtUnc_9: -1.49288304e-03 +- ArtUnc_1: -7.85638003e-03 + ArtUnc_2: 4.89828064e-03 + ArtUnc_3: 2.03116977e-04 + ArtUnc_4: -3.20786575e-04 + ArtUnc_5: 3.05810590e-05 + ArtUnc_6: -1.29503730e-03 + ArtUnc_7: 4.04029066e-04 + ArtUnc_8: -1.35693482e-03 + ArtUnc_9: -1.81791383e-03 +- ArtUnc_1: -9.00965735e-04 + ArtUnc_2: -2.25749569e-03 + ArtUnc_3: 5.02930848e-04 + ArtUnc_4: -1.33855969e-04 + ArtUnc_5: 1.78027643e-03 + ArtUnc_6: -1.27753710e-03 + ArtUnc_7: 1.40576476e-03 + ArtUnc_8: -1.61837792e-03 + ArtUnc_9: 3.62107860e-03 +- ArtUnc_1: 3.86574109e-03 + ArtUnc_2: -7.86449279e-04 + ArtUnc_3: -1.06939688e-03 + ArtUnc_4: -1.16205935e-04 + ArtUnc_5: 7.90901758e-04 + ArtUnc_6: -2.05348000e-03 + ArtUnc_7: -1.09842349e-03 + ArtUnc_8: 2.91018793e-03 + ArtUnc_9: -5.69733415e-04 diff --git a/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_2L_DIF/uncertainties_dSig_dyttBar.yaml b/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_2L_DIF/uncertainties_dSig_dyttBar.yaml index 9dcbf606f9..76a657c6e2 100644 --- a/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_2L_DIF/uncertainties_dSig_dyttBar.yaml +++ b/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_2L_DIF/uncertainties_dSig_dyttBar.yaml @@ -40,103 +40,103 @@ definitions: treatment: ADD type: CORR bins: -- ArtUnc_1: 4.116808080007036 - ArtUnc_2: -2.8707949189204927 - ArtUnc_3: 2.4583660827379337 - ArtUnc_4: -0.5622313947383722 - ArtUnc_5: 0.7609103078491258 - ArtUnc_6: -2.386381310471513 - ArtUnc_7: -1.0666995584642156 - ArtUnc_8: -0.3256459936345022 - ArtUnc_9: 1.9705381730730251 - ArtUnc_10: -0.25601878760874247 -- ArtUnc_1: 9.598091585721463 - ArtUnc_2: 0.08571891817968603 - ArtUnc_3: 0.4442433596660501 - ArtUnc_4: 0.531396066098604 - ArtUnc_5: 1.157669885719562 - ArtUnc_6: 1.5657230568759066 - ArtUnc_7: 0.2533883085889072 - ArtUnc_8: -2.4018426016184544 - ArtUnc_9: 2.585151635808029 - ArtUnc_10: -0.4814618202537875 -- ArtUnc_1: 13.991540685042407 - ArtUnc_2: 4.738648632836868 - ArtUnc_3: -4.080725757974477 - ArtUnc_4: 3.3058839159985123 - ArtUnc_5: 0.6594624278174959 - ArtUnc_6: -0.1296786437680675 - ArtUnc_7: -1.2103209905273795 - ArtUnc_8: 1.3621219908675481 - ArtUnc_9: -0.31576015377698824 - ArtUnc_10: 0.1454038454805745 -- ArtUnc_1: 17.383196508665186 - ArtUnc_2: -6.4108812861145825 - ArtUnc_3: 2.688885921873594 - ArtUnc_4: -0.6587639573409597 - ArtUnc_5: 0.3638647371481061 - ArtUnc_6: 1.0436306491030125 - ArtUnc_7: -0.47018428573774 - ArtUnc_8: 1.7806025938451633 - ArtUnc_9: -0.9341314941835676 - ArtUnc_10: 2.4591095618657444 -- ArtUnc_1: 17.650807707887257 - ArtUnc_2: 5.831607343158911 - ArtUnc_3: 1.1494197032681985 - ArtUnc_4: -4.200933973421185 - ArtUnc_5: 0.08585258176302041 - ArtUnc_6: 0.26557162404809165 - ArtUnc_7: -0.39918723641823445 - ArtUnc_8: 0.653672407174739 - ArtUnc_9: -0.7910162348366989 - ArtUnc_10: -2.3255294985028536 -- ArtUnc_1: 18.953640204447566 - ArtUnc_2: -7.648201390840272 - ArtUnc_3: -4.5241158377175035 - ArtUnc_4: -0.3570786865100461 - ArtUnc_5: -0.33472678999716377 - ArtUnc_6: -0.46249432762437265 - ArtUnc_7: 0.4949607832788151 - ArtUnc_8: -0.9129333842700668 - ArtUnc_9: -0.9416506480079143 - ArtUnc_10: -1.7928543368138954 -- ArtUnc_1: 17.863544742856078 - ArtUnc_2: 2.4890130369521524 - ArtUnc_3: 4.600452969250628 - ArtUnc_4: 3.1573114410056338 - ArtUnc_5: -0.3603080700931637 - ArtUnc_6: -0.5787036652533412 - ArtUnc_7: 0.8020818569883826 - ArtUnc_8: -1.1468280919470055 - ArtUnc_9: -2.0572015817685063 - ArtUnc_10: -0.36939423479277106 -- ArtUnc_1: 13.436654925732146 - ArtUnc_2: 4.033517499921226 - ArtUnc_3: -2.217165162613358 - ArtUnc_4: -1.879789521488168 - ArtUnc_5: -0.3559561587402539 - ArtUnc_6: -0.7498444948998512 - ArtUnc_7: 0.6471930380212666 - ArtUnc_8: -1.1592513105031943 - ArtUnc_9: 0.8427653907001501 - ArtUnc_10: 3.794688853465985 -- ArtUnc_1: 10.124911928689716 - ArtUnc_2: 0.14335463671234358 - ArtUnc_3: 0.6297541763241965 - ArtUnc_4: 1.0282513543008203 - ArtUnc_5: -0.7790028763671865 - ArtUnc_6: 0.031056202347139142 - ArtUnc_7: 1.0218497743245818 - ArtUnc_8: 2.1637688246508486 - ArtUnc_9: 4.013150230937525 - ArtUnc_10: -0.8628206541373756 -- ArtUnc_1: 4.106002878357988 - ArtUnc_2: -0.4739320428034686 - ArtUnc_3: 0.6489659706635083 - ArtUnc_4: 0.4323908061389236 - ArtUnc_5: -1.427293752804691 - ArtUnc_6: 0.6444575537491525 - ArtUnc_7: -2.103917351150138 - ArtUnc_8: -1.3873716064597528 - ArtUnc_9: 1.0553494510758714 - ArtUnc_10: 0.06547127049551248 +- ArtUnc_1: 4.11680808e+00 + ArtUnc_2: -2.87079492e+00 + ArtUnc_3: 2.45836608e+00 + ArtUnc_4: -5.62231395e-01 + ArtUnc_5: 7.60910308e-01 + ArtUnc_6: -2.38638131e+00 + ArtUnc_7: -1.06669956e+00 + ArtUnc_8: -3.25645994e-01 + ArtUnc_9: 1.97053817e+00 + ArtUnc_10: -2.56018788e-01 +- ArtUnc_1: 9.59809159e+00 + ArtUnc_2: 8.57189182e-02 + ArtUnc_3: 4.44243360e-01 + ArtUnc_4: 5.31396066e-01 + ArtUnc_5: 1.15766989e+00 + ArtUnc_6: 1.56572306e+00 + ArtUnc_7: 2.53388309e-01 + ArtUnc_8: -2.40184260e+00 + ArtUnc_9: 2.58515164e+00 + ArtUnc_10: -4.81461820e-01 +- ArtUnc_1: 1.39915407e+01 + ArtUnc_2: 4.73864863e+00 + ArtUnc_3: -4.08072576e+00 + ArtUnc_4: 3.30588392e+00 + ArtUnc_5: 6.59462428e-01 + ArtUnc_6: -1.29678644e-01 + ArtUnc_7: -1.21032099e+00 + ArtUnc_8: 1.36212199e+00 + ArtUnc_9: -3.15760154e-01 + ArtUnc_10: 1.45403845e-01 +- ArtUnc_1: 1.73831965e+01 + ArtUnc_2: -6.41088129e+00 + ArtUnc_3: 2.68888592e+00 + ArtUnc_4: -6.58763957e-01 + ArtUnc_5: 3.63864737e-01 + ArtUnc_6: 1.04363065e+00 + ArtUnc_7: -4.70184286e-01 + ArtUnc_8: 1.78060259e+00 + ArtUnc_9: -9.34131494e-01 + ArtUnc_10: 2.45910956e+00 +- ArtUnc_1: 1.76508077e+01 + ArtUnc_2: 5.83160734e+00 + ArtUnc_3: 1.14941970e+00 + ArtUnc_4: -4.20093397e+00 + ArtUnc_5: 8.58525818e-02 + ArtUnc_6: 2.65571624e-01 + ArtUnc_7: -3.99187236e-01 + ArtUnc_8: 6.53672407e-01 + ArtUnc_9: -7.91016235e-01 + ArtUnc_10: -2.32552950e+00 +- ArtUnc_1: 1.89536402e+01 + ArtUnc_2: -7.64820139e+00 + ArtUnc_3: -4.52411584e+00 + ArtUnc_4: -3.57078687e-01 + ArtUnc_5: -3.34726790e-01 + ArtUnc_6: -4.62494328e-01 + ArtUnc_7: 4.94960783e-01 + ArtUnc_8: -9.12933384e-01 + ArtUnc_9: -9.41650648e-01 + ArtUnc_10: -1.79285434e+00 +- ArtUnc_1: 1.78635447e+01 + ArtUnc_2: 2.48901304e+00 + ArtUnc_3: 4.60045297e+00 + ArtUnc_4: 3.15731144e+00 + ArtUnc_5: -3.60308070e-01 + ArtUnc_6: -5.78703665e-01 + ArtUnc_7: 8.02081857e-01 + ArtUnc_8: -1.14682809e+00 + ArtUnc_9: -2.05720158e+00 + ArtUnc_10: -3.69394235e-01 +- ArtUnc_1: 1.34366549e+01 + ArtUnc_2: 4.03351750e+00 + ArtUnc_3: -2.21716516e+00 + ArtUnc_4: -1.87978952e+00 + ArtUnc_5: -3.55956159e-01 + ArtUnc_6: -7.49844495e-01 + ArtUnc_7: 6.47193038e-01 + ArtUnc_8: -1.15925131e+00 + ArtUnc_9: 8.42765391e-01 + ArtUnc_10: 3.79468885e+00 +- ArtUnc_1: 1.01249119e+01 + ArtUnc_2: 1.43354637e-01 + ArtUnc_3: 6.29754176e-01 + ArtUnc_4: 1.02825135e+00 + ArtUnc_5: -7.79002876e-01 + ArtUnc_6: 3.10562023e-02 + ArtUnc_7: 1.02184977e+00 + ArtUnc_8: 2.16376882e+00 + ArtUnc_9: 4.01315023e+00 + ArtUnc_10: -8.62820654e-01 +- ArtUnc_1: 4.10600288e+00 + ArtUnc_2: -4.73932043e-01 + ArtUnc_3: 6.48965971e-01 + ArtUnc_4: 4.32390806e-01 + ArtUnc_5: -1.42729375e+00 + ArtUnc_6: 6.44457554e-01 + ArtUnc_7: -2.10391735e+00 + ArtUnc_8: -1.38737161e+00 + ArtUnc_9: 1.05534945e+00 + ArtUnc_10: 6.54712705e-02 diff --git a/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_2L_DIF/uncertainties_dSig_dyttBar_norm.yaml b/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_2L_DIF/uncertainties_dSig_dyttBar_norm.yaml index 91ea08d2de..5c18ad5641 100644 --- a/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_2L_DIF/uncertainties_dSig_dyttBar_norm.yaml +++ b/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_2L_DIF/uncertainties_dSig_dyttBar_norm.yaml @@ -36,84 +36,84 @@ definitions: treatment: ADD type: CORR bins: -- ArtUnc_1: 0.004371526522624542 - ArtUnc_2: -0.002655059200412735 - ArtUnc_3: 0.0008364927187270791 - ArtUnc_4: -0.0017071710832650185 - ArtUnc_5: 0.0013669482830074174 - ArtUnc_6: -0.0002984963205192709 - ArtUnc_7: -0.0001299631738643221 - ArtUnc_8: 0.0020432932526599622 - ArtUnc_9: -0.0001448375765024322 -- ArtUnc_1: -0.00041686668793268326 - ArtUnc_2: -0.0003654458806763164 - ArtUnc_3: 0.001265371621673488 - ArtUnc_4: -0.0013283730647071436 - ArtUnc_5: 0.000748316061861727 - ArtUnc_6: 0.001236172904010331 - ArtUnc_7: -0.0005189102120004612 - ArtUnc_8: -0.003168422025562433 - ArtUnc_9: -0.0016203594710975672 -- ArtUnc_1: -0.007296834753697259 - ArtUnc_2: 0.004577568265403754 - ArtUnc_3: 0.003279417404422052 - ArtUnc_4: 0.00221459828145498 - ArtUnc_5: 0.0005617105920753589 - ArtUnc_6: 0.000976242605916055 - ArtUnc_7: -0.0002655900805264405 - ArtUnc_8: 0.0009913745520871158 - ArtUnc_9: 0.0012400069692947084 -- ArtUnc_1: 0.005740784441062237 - ArtUnc_2: 0.0004679854778345775 - ArtUnc_3: -0.0033950882218129006 - ArtUnc_4: 0.0027571146117451118 - ArtUnc_5: 0.00043507256821189973 - ArtUnc_6: 0.0008340895329611612 - ArtUnc_7: 0.0023938713970631104 - ArtUnc_8: -0.0008343078576532563 - ArtUnc_9: 0.0024456891098375267 -- ArtUnc_1: -0.008233760430502354 - ArtUnc_2: -0.0016529114103439105 - ArtUnc_3: -0.005522660723784263 - ArtUnc_4: -0.0008595142042453788 - ArtUnc_5: 0.0003388555760950266 - ArtUnc_6: 0.00018190176290303468 - ArtUnc_7: -0.002367601313083278 - ArtUnc_8: 0.00010727780020943628 - ArtUnc_9: 0.0008109075461421681 -- ArtUnc_1: 0.004575699512051713 - ArtUnc_2: 0.006735539305520683 - ArtUnc_3: -0.0021166073924506878 - ArtUnc_4: 0.0005405893789035567 - ArtUnc_5: 0.00034403830070284643 - ArtUnc_6: -0.0012096652818174855 - ArtUnc_7: -0.0021483831021228764 - ArtUnc_8: -0.0003213094370029387 - ArtUnc_9: -0.0011384543709153242 -- ArtUnc_1: -0.0027334225009986416 - ArtUnc_2: -0.0034859681164841434 - ArtUnc_3: 0.0005563339406419931 - ArtUnc_4: 0.005230731206058622 - ArtUnc_5: 0.00034801151731057845 - ArtUnc_6: -0.0013876034654680357 - ArtUnc_7: -0.00013242630449687674 - ArtUnc_8: -0.0006483244529862048 - ArtUnc_9: -0.0013136036701845764 -- ArtUnc_1: -0.005821335208503919 - ArtUnc_2: 0.0020482471572765308 - ArtUnc_3: -0.0011360600538897966 - ArtUnc_4: -0.0019977210949468573 - ArtUnc_5: 0.000320204395285761 - ArtUnc_6: -0.001204284242890298 - ArtUnc_7: 0.004403422561426976 - ArtUnc_8: -0.00033691398278503244 - ArtUnc_9: -0.0007050143792768712 -- ArtUnc_1: -0.0002431235962068545 - ArtUnc_2: -0.0005548786061647925 - ArtUnc_3: 0.002424359111518525 - ArtUnc_4: -0.0014746896725771888 - ArtUnc_5: 0.00012969417759959822 - ArtUnc_6: -0.001582356596014486 - ArtUnc_7: -0.001147851315140203 - ArtUnc_8: -0.0016059275170139035 - ArtUnc_9: 0.0034676844016077913 +- ArtUnc_1: 4.37152652e-03 + ArtUnc_2: -2.65505920e-03 + ArtUnc_3: 8.36492719e-04 + ArtUnc_4: -1.70717108e-03 + ArtUnc_5: 1.36694828e-03 + ArtUnc_6: -2.98496321e-04 + ArtUnc_7: -1.29963174e-04 + ArtUnc_8: 2.04329325e-03 + ArtUnc_9: -1.44837577e-04 +- ArtUnc_1: -4.16866688e-04 + ArtUnc_2: -3.65445881e-04 + ArtUnc_3: 1.26537162e-03 + ArtUnc_4: -1.32837306e-03 + ArtUnc_5: 7.48316062e-04 + ArtUnc_6: 1.23617290e-03 + ArtUnc_7: -5.18910212e-04 + ArtUnc_8: -3.16842203e-03 + ArtUnc_9: -1.62035947e-03 +- ArtUnc_1: -7.29683475e-03 + ArtUnc_2: 4.57756827e-03 + ArtUnc_3: 3.27941740e-03 + ArtUnc_4: 2.21459828e-03 + ArtUnc_5: 5.61710592e-04 + ArtUnc_6: 9.76242606e-04 + ArtUnc_7: -2.65590081e-04 + ArtUnc_8: 9.91374552e-04 + ArtUnc_9: 1.24000697e-03 +- ArtUnc_1: 5.74078444e-03 + ArtUnc_2: 4.67985478e-04 + ArtUnc_3: -3.39508822e-03 + ArtUnc_4: 2.75711461e-03 + ArtUnc_5: 4.35072568e-04 + ArtUnc_6: 8.34089533e-04 + ArtUnc_7: 2.39387140e-03 + ArtUnc_8: -8.34307858e-04 + ArtUnc_9: 2.44568911e-03 +- ArtUnc_1: -8.23376043e-03 + ArtUnc_2: -1.65291141e-03 + ArtUnc_3: -5.52266072e-03 + ArtUnc_4: -8.59514204e-04 + ArtUnc_5: 3.38855576e-04 + ArtUnc_6: 1.81901763e-04 + ArtUnc_7: -2.36760131e-03 + ArtUnc_8: 1.07277800e-04 + ArtUnc_9: 8.10907546e-04 +- ArtUnc_1: 4.57569951e-03 + ArtUnc_2: 6.73553931e-03 + ArtUnc_3: -2.11660739e-03 + ArtUnc_4: 5.40589379e-04 + ArtUnc_5: 3.44038301e-04 + ArtUnc_6: -1.20966528e-03 + ArtUnc_7: -2.14838310e-03 + ArtUnc_8: -3.21309437e-04 + ArtUnc_9: -1.13845437e-03 +- ArtUnc_1: -2.73342250e-03 + ArtUnc_2: -3.48596812e-03 + ArtUnc_3: 5.56333941e-04 + ArtUnc_4: 5.23073121e-03 + ArtUnc_5: 3.48011517e-04 + ArtUnc_6: -1.38760347e-03 + ArtUnc_7: -1.32426304e-04 + ArtUnc_8: -6.48324453e-04 + ArtUnc_9: -1.31360367e-03 +- ArtUnc_1: -5.82133521e-03 + ArtUnc_2: 2.04824716e-03 + ArtUnc_3: -1.13606005e-03 + ArtUnc_4: -1.99772109e-03 + ArtUnc_5: 3.20204395e-04 + ArtUnc_6: -1.20428424e-03 + ArtUnc_7: 4.40342256e-03 + ArtUnc_8: -3.36913983e-04 + ArtUnc_9: -7.05014379e-04 +- ArtUnc_1: -2.43123596e-04 + ArtUnc_2: -5.54878606e-04 + ArtUnc_3: 2.42435911e-03 + ArtUnc_4: -1.47468967e-03 + ArtUnc_5: 1.29694178e-04 + ArtUnc_6: -1.58235660e-03 + ArtUnc_7: -1.14785132e-03 + ArtUnc_8: -1.60592752e-03 + ArtUnc_9: 3.46768440e-03 diff --git a/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_LJ_DIF/data_d2Sig_dyttBar_dmttBar.yaml b/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_LJ_DIF/data_d2Sig_dyttBar_dmttBar.yaml index df302ebdb1..eebc900fba 100644 --- a/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_LJ_DIF/data_d2Sig_dyttBar_dmttBar.yaml +++ b/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_LJ_DIF/data_d2Sig_dyttBar_dmttBar.yaml @@ -32,5 +32,5 @@ data_central: - 0.002217 - 0.001968 - 0.001436 -- 0.0009277 -- 0.0001897 +- 9.27700000e-04 +- 1.89700000e-04 diff --git a/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_LJ_DIF/data_d2Sig_dyttBar_dmttBar_norm.yaml b/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_LJ_DIF/data_d2Sig_dyttBar_dmttBar_norm.yaml index 246abff03a..0f4d5a3a1a 100644 --- a/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_LJ_DIF/data_d2Sig_dyttBar_dmttBar_norm.yaml +++ b/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_LJ_DIF/data_d2Sig_dyttBar_dmttBar_norm.yaml @@ -3,34 +3,34 @@ data_central: - 0.001172 - 0.001075 - 0.000902 -- 0.0007132 -- 0.0003258 +- 7.13200000e-04 +- 3.25800000e-04 - 0.00232 - 0.00221 - 0.001914 - 0.001572 - 0.001176 -- 0.0004634 +- 4.63400000e-04 - 0.001306 - 0.001222 - 0.001081 -- 0.0008359 -- 0.0006101 -- 0.0002041 -- 0.0005731 -- 0.0005199 -- 0.0004371 -- 0.0003392 -- 0.0002156 +- 8.35900000e-04 +- 6.10100000e-04 +- 2.04100000e-04 +- 5.73100000e-04 +- 5.19900000e-04 +- 4.37100000e-04 +- 3.39200000e-04 +- 2.15600000e-04 - 6.24e-05 -- 0.0001989 -- 0.0001811 -- 0.0001456 -- 0.0001023 -- 6.228e-05 -- 1.034e-05 -- 9.907e-06 -- 8.797e-06 -- 6.418e-06 -- 4.146e-06 -- 8.479e-07 +- 1.98900000e-04 +- 1.81100000e-04 +- 1.45600000e-04 +- 1.02300000e-04 +- 6.22800000e-05 +- 1.03400000e-05 +- 9.90700000e-06 +- 8.79700000e-06 +- 6.41800000e-06 +- 4.14600000e-06 +- 8.47900000e-07 diff --git a/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_LJ_DIF/data_dSig_dmttBar.yaml b/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_LJ_DIF/data_dSig_dmttBar.yaml index 3e58c7df11..1d0088ad66 100644 --- a/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_LJ_DIF/data_dSig_dmttBar.yaml +++ b/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_LJ_DIF/data_dSig_dmttBar.yaml @@ -11,6 +11,6 @@ data_central: - 0.009005 - 0.003815 - 0.001769 -- 0.0006941 -- 0.0001905 -- 3.147e-05 +- 6.94100000e-04 +- 1.90500000e-04 +- 3.14700000e-05 diff --git a/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_LJ_DIF/data_dSig_dmttBar_norm.yaml b/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_LJ_DIF/data_dSig_dmttBar_norm.yaml index 3ed86ca4b6..13424f19d4 100644 --- a/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_LJ_DIF/data_dSig_dmttBar_norm.yaml +++ b/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_LJ_DIF/data_dSig_dmttBar_norm.yaml @@ -3,14 +3,14 @@ data_central: - 0.003812 - 0.002374 - 0.001379 -- 0.0007913 -- 0.0004795 -- 0.0002734 -- 0.0001617 -- 7.802e-05 -- 3.938e-05 -- 1.668e-05 -- 7.737e-06 -- 3.035e-06 -- 8.332e-07 -- 1.376e-07 +- 7.91300000e-04 +- 4.79500000e-04 +- 2.73400000e-04 +- 1.61700000e-04 +- 7.80200000e-05 +- 3.93800000e-05 +- 1.66800000e-05 +- 7.73700000e-06 +- 3.03500000e-06 +- 8.33200000e-07 +- 1.37600000e-07 diff --git a/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_LJ_DIF/data_dSig_dpTt.yaml b/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_LJ_DIF/data_dSig_dpTt.yaml index ae39c5eef0..f431e2ab9c 100644 --- a/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_LJ_DIF/data_dSig_dpTt.yaml +++ b/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_LJ_DIF/data_dSig_dpTt.yaml @@ -12,6 +12,6 @@ data_central: - 0.01072 - 0.004175 - 0.001501 -- 0.0004873 -- 0.0001469 -- 1.777e-05 +- 4.87300000e-04 +- 1.46900000e-04 +- 1.77700000e-05 diff --git a/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_LJ_DIF/data_dSig_dpTt_norm.yaml b/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_LJ_DIF/data_dSig_dpTt_norm.yaml index ae56be577c..f48f8df857 100644 --- a/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_LJ_DIF/data_dSig_dpTt_norm.yaml +++ b/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_LJ_DIF/data_dSig_dpTt_norm.yaml @@ -5,13 +5,13 @@ data_central: - 0.004422 - 0.002644 - 0.001431 -- 0.0006645 -- 0.0003167 -- 0.0001661 -- 7.394e-05 +- 6.64500000e-04 +- 3.16700000e-04 +- 1.66100000e-04 +- 7.39400000e-05 - 4.75e-05 - 1.85e-05 -- 6.651e-06 -- 2.159e-06 -- 6.506e-07 -- 7.872e-08 +- 6.65100000e-06 +- 2.15900000e-06 +- 6.50600000e-07 +- 7.87200000e-08 diff --git a/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_LJ_DIF/filter.py b/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_LJ_DIF/filter.py index 87a9789fdc..835895a5a7 100644 --- a/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_LJ_DIF/filter.py +++ b/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_LJ_DIF/filter.py @@ -1,6 +1,9 @@ import yaml from nnpdf_data.filter_utils.utils import covmat_to_artunc as cta +from nnpdf_data.filter_utils.utils import prettify_float + +yaml.add_representer(float, prettify_float) def processData(): diff --git a/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_LJ_DIF/uncertainties_d2Sig_dyttBar_dmttBar.yaml b/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_LJ_DIF/uncertainties_d2Sig_dyttBar_dmttBar.yaml index 5e4611b2af..f559631cba 100644 --- a/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_LJ_DIF/uncertainties_d2Sig_dyttBar_dmttBar.yaml +++ b/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_LJ_DIF/uncertainties_d2Sig_dyttBar_dmttBar.yaml @@ -150,1296 +150,1296 @@ definitions: bins: - stat: 0.002068 sys: 0 - ArtUnc_1: -0.005461174962226479 - ArtUnc_2: 0.005748565496185742 - ArtUnc_3: -0.0003729208131545292 - ArtUnc_4: -0.0006257973416696964 - ArtUnc_5: 0.0008038983297755047 - ArtUnc_6: 0.0007683704301494825 - ArtUnc_7: 0.0008068281788827388 - ArtUnc_8: -0.00028212143948071634 - ArtUnc_9: -0.00039235104087289885 - ArtUnc_10: -0.0004795994457088284 - ArtUnc_11: -0.00035035048758463535 - ArtUnc_12: -0.0005188410981127812 - ArtUnc_13: -4.9156307969301375e-05 - ArtUnc_14: -0.0008507653632184144 - ArtUnc_15: 0.0011112032183755874 - ArtUnc_16: 0.00015288261517429032 - ArtUnc_17: -0.0007579008022995617 - ArtUnc_18: -0.00019754665540676686 - ArtUnc_19: 6.948334425485455e-05 - ArtUnc_20: -0.00010261475977256306 - ArtUnc_21: 4.131772189780342e-06 - ArtUnc_22: 1.439208968409544e-05 - ArtUnc_23: -4.485510604183754e-05 - ArtUnc_24: 8.20570232489912e-06 - ArtUnc_25: -3.0158693576923058e-06 - ArtUnc_26: -7.998679375814098e-06 - ArtUnc_27: -2.9225598998617655e-06 - ArtUnc_28: 1.4581396386961808e-05 - ArtUnc_29: -2.5672523318345235e-06 - ArtUnc_30: -1.9998616781534984e-07 - ArtUnc_31: -3.7744593303082315e-10 - ArtUnc_32: -2.6699010684138605e-08 - ArtUnc_33: -1.3161612157049804e-08 - ArtUnc_34: -6.047510779555058e-09 - ArtUnc_35: 8.24595093584843e-11 + ArtUnc_1: -5.46117496e-03 + ArtUnc_2: 5.74856550e-03 + ArtUnc_3: -3.72920813e-04 + ArtUnc_4: -6.25797342e-04 + ArtUnc_5: 8.03898330e-04 + ArtUnc_6: 7.68370430e-04 + ArtUnc_7: 8.06828179e-04 + ArtUnc_8: -2.82121439e-04 + ArtUnc_9: -3.92351041e-04 + ArtUnc_10: -4.79599446e-04 + ArtUnc_11: -3.50350488e-04 + ArtUnc_12: -5.18841098e-04 + ArtUnc_13: -4.91563080e-05 + ArtUnc_14: -8.50765363e-04 + ArtUnc_15: 1.11120322e-03 + ArtUnc_16: 1.52882615e-04 + ArtUnc_17: -7.57900802e-04 + ArtUnc_18: -1.97546655e-04 + ArtUnc_19: 6.94833443e-05 + ArtUnc_20: -1.02614760e-04 + ArtUnc_21: 4.13177219e-06 + ArtUnc_22: 1.43920897e-05 + ArtUnc_23: -4.48551060e-05 + ArtUnc_24: 8.20570232e-06 + ArtUnc_25: -3.01586936e-06 + ArtUnc_26: -7.99867938e-06 + ArtUnc_27: -2.92255990e-06 + ArtUnc_28: 1.45813964e-05 + ArtUnc_29: -2.56725233e-06 + ArtUnc_30: -1.99986168e-07 + ArtUnc_31: -3.77445933e-10 + ArtUnc_32: -2.66990107e-08 + ArtUnc_33: -1.31616122e-08 + ArtUnc_34: -6.04751078e-09 + ArtUnc_35: 8.24595094e-11 - stat: 0.002831 sys: 0 - ArtUnc_1: -0.005584180660462284 - ArtUnc_2: 0.005402440155278472 - ArtUnc_3: -0.001258974418725048 - ArtUnc_4: 0.0009543269631010207 - ArtUnc_5: -0.0009347829806484367 - ArtUnc_6: 0.0010808578129639429 - ArtUnc_7: -0.00026953233568645905 - ArtUnc_8: -4.3114528809165864e-05 - ArtUnc_9: 0.0012745994213796575 - ArtUnc_10: 0.0010771008460107397 - ArtUnc_11: 0.0005410578044235526 - ArtUnc_12: 0.0005230113465621484 - ArtUnc_13: 0.0004236453426681162 - ArtUnc_14: 0.001023688224516619 - ArtUnc_15: 0.0006831570039725692 - ArtUnc_16: -3.864626095474324e-06 - ArtUnc_17: 0.0005058824716695936 - ArtUnc_18: -5.193335072750715e-05 - ArtUnc_19: 1.0415598074030173e-05 - ArtUnc_20: -5.694860967128944e-05 - ArtUnc_21: -2.25654213334138e-05 - ArtUnc_22: -8.731931011172603e-06 - ArtUnc_23: 2.122774038175537e-05 - ArtUnc_24: 2.0323594816090283e-07 - ArtUnc_25: 3.3926085361205654e-06 - ArtUnc_26: -6.673984327745456e-06 - ArtUnc_27: -2.2395161634752645e-06 - ArtUnc_28: 1.1967166955140999e-06 - ArtUnc_29: -8.169547487123018e-07 - ArtUnc_30: 1.9741483769623725e-07 - ArtUnc_31: -5.710292613105985e-10 - ArtUnc_32: -1.877176630517564e-08 - ArtUnc_33: -1.2406707852007199e-08 - ArtUnc_34: -1.3267141766188385e-08 - ArtUnc_35: 1.7030135011226528e-09 + ArtUnc_1: -5.58418066e-03 + ArtUnc_2: 5.40244016e-03 + ArtUnc_3: -1.25897442e-03 + ArtUnc_4: 9.54326963e-04 + ArtUnc_5: -9.34782981e-04 + ArtUnc_6: 1.08085781e-03 + ArtUnc_7: -2.69532336e-04 + ArtUnc_8: -4.31145288e-05 + ArtUnc_9: 1.27459942e-03 + ArtUnc_10: 1.07710085e-03 + ArtUnc_11: 5.41057804e-04 + ArtUnc_12: 5.23011347e-04 + ArtUnc_13: 4.23645343e-04 + ArtUnc_14: 1.02368822e-03 + ArtUnc_15: 6.83157004e-04 + ArtUnc_16: -3.86462610e-06 + ArtUnc_17: 5.05882472e-04 + ArtUnc_18: -5.19333507e-05 + ArtUnc_19: 1.04155981e-05 + ArtUnc_20: -5.69486097e-05 + ArtUnc_21: -2.25654213e-05 + ArtUnc_22: -8.73193101e-06 + ArtUnc_23: 2.12277404e-05 + ArtUnc_24: 2.03235948e-07 + ArtUnc_25: 3.39260854e-06 + ArtUnc_26: -6.67398433e-06 + ArtUnc_27: -2.23951616e-06 + ArtUnc_28: 1.19671670e-06 + ArtUnc_29: -8.16954749e-07 + ArtUnc_30: 1.97414838e-07 + ArtUnc_31: -5.71029261e-10 + ArtUnc_32: -1.87717663e-08 + ArtUnc_33: -1.24067079e-08 + ArtUnc_34: -1.32671418e-08 + ArtUnc_35: 1.70301350e-09 - stat: 0.002843 sys: 0 - ArtUnc_1: -0.004985313942739812 - ArtUnc_2: 0.0049597047504770534 - ArtUnc_3: 0.00023128417902484386 - ArtUnc_4: -0.0013216744438782615 - ArtUnc_5: 0.0003098978840836202 - ArtUnc_6: 0.0007189913565140543 - ArtUnc_7: -0.00087686151792383 - ArtUnc_8: 8.865564359477296e-05 - ArtUnc_9: -0.0015045032391615878 - ArtUnc_10: -0.0012516274456003053 - ArtUnc_11: 2.0410240743613774e-05 - ArtUnc_12: -0.000336062354907094 - ArtUnc_13: 0.0005154235478606279 - ArtUnc_14: -0.00021263172679370092 - ArtUnc_15: -0.00055091745321196 - ArtUnc_16: -0.00021240040087754875 - ArtUnc_17: 0.000870736112869638 - ArtUnc_18: 0.00013462836129840108 - ArtUnc_19: -9.07518468111445e-05 - ArtUnc_20: 0.00018343777462476304 - ArtUnc_21: -3.0137496762994295e-05 - ArtUnc_22: -3.880497219144206e-05 - ArtUnc_23: 6.381375210424444e-05 - ArtUnc_24: -8.73989211829277e-06 - ArtUnc_25: 7.99083959621378e-06 - ArtUnc_26: 3.212220816805794e-06 - ArtUnc_27: -4.227718755137716e-07 - ArtUnc_28: -1.1987713927197136e-05 - ArtUnc_29: -1.0075691550727596e-06 - ArtUnc_30: 3.536641633011308e-07 - ArtUnc_31: -6.489649844505661e-10 - ArtUnc_32: -9.117374699950133e-10 - ArtUnc_33: -1.1217290155513231e-10 - ArtUnc_34: -6.750416178244788e-09 - ArtUnc_35: 5.048268591181173e-09 + ArtUnc_1: -4.98531394e-03 + ArtUnc_2: 4.95970475e-03 + ArtUnc_3: 2.31284179e-04 + ArtUnc_4: -1.32167444e-03 + ArtUnc_5: 3.09897884e-04 + ArtUnc_6: 7.18991357e-04 + ArtUnc_7: -8.76861518e-04 + ArtUnc_8: 8.86556436e-05 + ArtUnc_9: -1.50450324e-03 + ArtUnc_10: -1.25162745e-03 + ArtUnc_11: 2.04102407e-05 + ArtUnc_12: -3.36062355e-04 + ArtUnc_13: 5.15423548e-04 + ArtUnc_14: -2.12631727e-04 + ArtUnc_15: -5.50917453e-04 + ArtUnc_16: -2.12400401e-04 + ArtUnc_17: 8.70736113e-04 + ArtUnc_18: 1.34628361e-04 + ArtUnc_19: -9.07518468e-05 + ArtUnc_20: 1.83437775e-04 + ArtUnc_21: -3.01374968e-05 + ArtUnc_22: -3.88049722e-05 + ArtUnc_23: 6.38137521e-05 + ArtUnc_24: -8.73989212e-06 + ArtUnc_25: 7.99083960e-06 + ArtUnc_26: 3.21222082e-06 + ArtUnc_27: -4.22771876e-07 + ArtUnc_28: -1.19877139e-05 + ArtUnc_29: -1.00756916e-06 + ArtUnc_30: 3.53664163e-07 + ArtUnc_31: -6.48964984e-10 + ArtUnc_32: -9.11737470e-10 + ArtUnc_33: -1.12172902e-10 + ArtUnc_34: -6.75041618e-09 + ArtUnc_35: 5.04826859e-09 - stat: 0.002742 sys: 0 - ArtUnc_1: -0.004332839151588974 - ArtUnc_2: 0.003992192724908909 - ArtUnc_3: -0.0012675197157264756 - ArtUnc_4: 0.0008946433210035379 - ArtUnc_5: 0.0008561141527584299 - ArtUnc_6: -1.988821919635808e-05 - ArtUnc_7: 0.00010140423432533783 - ArtUnc_8: 0.0008671395200652842 - ArtUnc_9: 0.0012107281106401066 - ArtUnc_10: 0.0011380896085567817 - ArtUnc_11: -0.0007003606408359427 - ArtUnc_12: -0.0002282696029554078 - ArtUnc_13: -0.0004449962983768568 - ArtUnc_14: -0.000688687656951619 - ArtUnc_15: -0.0011497534269066083 - ArtUnc_16: -7.124869218595653e-05 - ArtUnc_17: -0.00023784204113435855 - ArtUnc_18: 0.00014956468435920297 - ArtUnc_19: -0.00013922413679857978 - ArtUnc_20: 0.00034765217317597936 - ArtUnc_21: -1.374100708131603e-05 - ArtUnc_22: -5.3162822314439764e-05 - ArtUnc_23: 2.8684399871733878e-05 - ArtUnc_24: 6.546936780151014e-06 - ArtUnc_25: 5.6458746018926475e-06 - ArtUnc_26: 7.136447860258025e-06 - ArtUnc_27: 2.7006581379592063e-06 - ArtUnc_28: -1.2805916649351169e-05 - ArtUnc_29: -2.35239782834333e-06 - ArtUnc_30: -8.948057905245436e-08 - ArtUnc_31: 9.599883562681391e-10 - ArtUnc_32: 1.4085469848921204e-08 - ArtUnc_33: 1.9680928167866433e-09 - ArtUnc_34: -8.809048476288597e-09 - ArtUnc_35: 2.756175127929613e-09 + ArtUnc_1: -4.33283915e-03 + ArtUnc_2: 3.99219272e-03 + ArtUnc_3: -1.26751972e-03 + ArtUnc_4: 8.94643321e-04 + ArtUnc_5: 8.56114153e-04 + ArtUnc_6: -1.98882192e-05 + ArtUnc_7: 1.01404234e-04 + ArtUnc_8: 8.67139520e-04 + ArtUnc_9: 1.21072811e-03 + ArtUnc_10: 1.13808961e-03 + ArtUnc_11: -7.00360641e-04 + ArtUnc_12: -2.28269603e-04 + ArtUnc_13: -4.44996298e-04 + ArtUnc_14: -6.88687657e-04 + ArtUnc_15: -1.14975343e-03 + ArtUnc_16: -7.12486922e-05 + ArtUnc_17: -2.37842041e-04 + ArtUnc_18: 1.49564684e-04 + ArtUnc_19: -1.39224137e-04 + ArtUnc_20: 3.47652173e-04 + ArtUnc_21: -1.37410071e-05 + ArtUnc_22: -5.31628223e-05 + ArtUnc_23: 2.86843999e-05 + ArtUnc_24: 6.54693678e-06 + ArtUnc_25: 5.64587460e-06 + ArtUnc_26: 7.13644786e-06 + ArtUnc_27: 2.70065814e-06 + ArtUnc_28: -1.28059166e-05 + ArtUnc_29: -2.35239783e-06 + ArtUnc_30: -8.94805791e-08 + ArtUnc_31: 9.59988356e-10 + ArtUnc_32: 1.40854698e-08 + ArtUnc_33: 1.96809282e-09 + ArtUnc_34: -8.80904848e-09 + ArtUnc_35: 2.75617513e-09 - stat: 0.002655 sys: 0 - ArtUnc_1: -0.0035068504800465135 - ArtUnc_2: 0.0027825634576785795 - ArtUnc_3: 7.382424199379394e-05 - ArtUnc_4: -0.0007468937244756893 - ArtUnc_5: -0.001141328394483 - ArtUnc_6: 0.00021972735549396157 - ArtUnc_7: 0.0007243879919114877 - ArtUnc_8: 0.0007392997939456392 - ArtUnc_9: -0.0011131062391104905 - ArtUnc_10: -0.0005374697808283416 - ArtUnc_11: 0.0007492509106060543 - ArtUnc_12: 0.0007825967752191787 - ArtUnc_13: -0.0009741451699998323 - ArtUnc_14: 0.001153878369651241 - ArtUnc_15: -0.0005957606105950838 - ArtUnc_16: 9.157563531657248e-05 - ArtUnc_17: -0.0006967166298109112 - ArtUnc_18: 4.089998055343888e-05 - ArtUnc_19: 3.5696675822640437e-06 - ArtUnc_20: 4.7113429173770843e-07 - ArtUnc_21: 2.310636698429762e-06 - ArtUnc_22: -4.7369901714044995e-06 - ArtUnc_23: -2.9471224703874675e-05 - ArtUnc_24: 1.878697942352059e-05 - ArtUnc_25: -2.446341116867008e-06 - ArtUnc_26: 4.059436920832113e-06 - ArtUnc_27: 3.713755272759486e-06 - ArtUnc_28: -2.391677119664719e-06 - ArtUnc_29: 3.366209425680019e-06 - ArtUnc_30: -2.485688705822956e-07 - ArtUnc_31: 2.3393661255664917e-09 - ArtUnc_32: 2.4462093664879866e-08 - ArtUnc_33: 3.7843580337649445e-09 - ArtUnc_34: 1.5507783666780862e-10 - ArtUnc_35: -6.571474982618497e-09 + ArtUnc_1: -3.50685048e-03 + ArtUnc_2: 2.78256346e-03 + ArtUnc_3: 7.38242420e-05 + ArtUnc_4: -7.46893724e-04 + ArtUnc_5: -1.14132839e-03 + ArtUnc_6: 2.19727355e-04 + ArtUnc_7: 7.24387992e-04 + ArtUnc_8: 7.39299794e-04 + ArtUnc_9: -1.11310624e-03 + ArtUnc_10: -5.37469781e-04 + ArtUnc_11: 7.49250911e-04 + ArtUnc_12: 7.82596775e-04 + ArtUnc_13: -9.74145170e-04 + ArtUnc_14: 1.15387837e-03 + ArtUnc_15: -5.95760611e-04 + ArtUnc_16: 9.15756353e-05 + ArtUnc_17: -6.96716630e-04 + ArtUnc_18: 4.08999806e-05 + ArtUnc_19: 3.56966758e-06 + ArtUnc_20: 4.71134292e-07 + ArtUnc_21: 2.31063670e-06 + ArtUnc_22: -4.73699017e-06 + ArtUnc_23: -2.94712247e-05 + ArtUnc_24: 1.87869794e-05 + ArtUnc_25: -2.44634112e-06 + ArtUnc_26: 4.05943692e-06 + ArtUnc_27: 3.71375527e-06 + ArtUnc_28: -2.39167712e-06 + ArtUnc_29: 3.36620943e-06 + ArtUnc_30: -2.48568871e-07 + ArtUnc_31: 2.33936613e-09 + ArtUnc_32: 2.44620937e-08 + ArtUnc_33: 3.78435803e-09 + ArtUnc_34: 1.55077837e-10 + ArtUnc_35: -6.57147498e-09 - stat: 0.001243 sys: 0 - ArtUnc_1: -0.0015082924410271632 - ArtUnc_2: 0.0010540439672786586 - ArtUnc_3: -0.0008410617995951913 - ArtUnc_4: -0.0003219418246101638 - ArtUnc_5: 0.00015370291282924435 - ArtUnc_6: 0.00022609322276470465 - ArtUnc_7: -0.00014918357569275413 - ArtUnc_8: 0.00017134525397302197 - ArtUnc_9: 0.00017554131325225286 - ArtUnc_10: -3.4167486727564726e-05 - ArtUnc_11: -0.0005781515485916376 - ArtUnc_12: 0.0006793473579443988 - ArtUnc_13: -7.046222813095876e-05 - ArtUnc_14: -0.0003611479246399664 - ArtUnc_15: -0.0005703530587892188 - ArtUnc_16: -0.00015310104659223503 - ArtUnc_17: 0.00017273098921442205 - ArtUnc_18: 2.8685090245973796e-06 - ArtUnc_19: 0.00038159542672217 - ArtUnc_20: -0.00105712764575295 - ArtUnc_21: 7.642454742318617e-05 - ArtUnc_22: 0.00014496674560832544 - ArtUnc_23: -6.0867543365224524e-05 - ArtUnc_24: 1.555632457213227e-05 - ArtUnc_25: -2.099692769714365e-05 - ArtUnc_26: 3.2149097067067107e-06 - ArtUnc_27: 3.0677190065543445e-06 - ArtUnc_28: 9.45230350113232e-06 - ArtUnc_29: 2.0851305255794502e-05 - ArtUnc_30: -8.631307430609188e-07 - ArtUnc_31: 4.279381464375642e-09 - ArtUnc_32: 3.598241612160805e-08 - ArtUnc_33: 1.3046576260193356e-08 - ArtUnc_34: -1.2643133481194104e-08 - ArtUnc_35: -1.1902383989639533e-08 + ArtUnc_1: -1.50829244e-03 + ArtUnc_2: 1.05404397e-03 + ArtUnc_3: -8.41061800e-04 + ArtUnc_4: -3.21941825e-04 + ArtUnc_5: 1.53702913e-04 + ArtUnc_6: 2.26093223e-04 + ArtUnc_7: -1.49183576e-04 + ArtUnc_8: 1.71345254e-04 + ArtUnc_9: 1.75541313e-04 + ArtUnc_10: -3.41674867e-05 + ArtUnc_11: -5.78151549e-04 + ArtUnc_12: 6.79347358e-04 + ArtUnc_13: -7.04622281e-05 + ArtUnc_14: -3.61147925e-04 + ArtUnc_15: -5.70353059e-04 + ArtUnc_16: -1.53101047e-04 + ArtUnc_17: 1.72730989e-04 + ArtUnc_18: 2.86850902e-06 + ArtUnc_19: 3.81595427e-04 + ArtUnc_20: -1.05712765e-03 + ArtUnc_21: 7.64245474e-05 + ArtUnc_22: 1.44966746e-04 + ArtUnc_23: -6.08675434e-05 + ArtUnc_24: 1.55563246e-05 + ArtUnc_25: -2.09969277e-05 + ArtUnc_26: 3.21490971e-06 + ArtUnc_27: 3.06771901e-06 + ArtUnc_28: 9.45230350e-06 + ArtUnc_29: 2.08513053e-05 + ArtUnc_30: -8.63130743e-07 + ArtUnc_31: 4.27938146e-09 + ArtUnc_32: 3.59824161e-08 + ArtUnc_33: 1.30465763e-08 + ArtUnc_34: -1.26431335e-08 + ArtUnc_35: -1.19023840e-08 - stat: 0.004143 sys: 0 - ArtUnc_1: -0.005461174962226479 - ArtUnc_2: 0.005748565496185742 - ArtUnc_3: -0.0003729208131545292 - ArtUnc_4: -0.0006257973416696964 - ArtUnc_5: 0.0008038983297755047 - ArtUnc_6: 0.0007683704301494825 - ArtUnc_7: 0.0008068281788827388 - ArtUnc_8: -0.00028212143948071634 - ArtUnc_9: -0.00039235104087289885 - ArtUnc_10: -0.0004795994457088284 - ArtUnc_11: -0.00035035048758463535 - ArtUnc_12: -0.0005188410981127812 - ArtUnc_13: -4.9156307969301375e-05 - ArtUnc_14: -0.0008507653632184144 - ArtUnc_15: 0.0011112032183755874 - ArtUnc_16: 0.00015288261517429032 - ArtUnc_17: -0.0007579008022995617 - ArtUnc_18: -0.00019754665540676686 - ArtUnc_19: 6.948334425485455e-05 - ArtUnc_20: -0.00010261475977256306 - ArtUnc_21: 4.131772189780342e-06 - ArtUnc_22: 1.439208968409544e-05 - ArtUnc_23: -4.485510604183754e-05 - ArtUnc_24: 8.20570232489912e-06 - ArtUnc_25: -3.0158693576923058e-06 - ArtUnc_26: -7.998679375814098e-06 - ArtUnc_27: -2.9225598998617655e-06 - ArtUnc_28: 1.4581396386961808e-05 - ArtUnc_29: -2.5672523318345235e-06 - ArtUnc_30: -1.9998616781534984e-07 - ArtUnc_31: -3.7744593303082315e-10 - ArtUnc_32: -2.6699010684138605e-08 - ArtUnc_33: -1.3161612157049804e-08 - ArtUnc_34: -6.047510779555058e-09 - ArtUnc_35: 8.24595093584843e-11 + ArtUnc_1: -5.46117496e-03 + ArtUnc_2: 5.74856550e-03 + ArtUnc_3: -3.72920813e-04 + ArtUnc_4: -6.25797342e-04 + ArtUnc_5: 8.03898330e-04 + ArtUnc_6: 7.68370430e-04 + ArtUnc_7: 8.06828179e-04 + ArtUnc_8: -2.82121439e-04 + ArtUnc_9: -3.92351041e-04 + ArtUnc_10: -4.79599446e-04 + ArtUnc_11: -3.50350488e-04 + ArtUnc_12: -5.18841098e-04 + ArtUnc_13: -4.91563080e-05 + ArtUnc_14: -8.50765363e-04 + ArtUnc_15: 1.11120322e-03 + ArtUnc_16: 1.52882615e-04 + ArtUnc_17: -7.57900802e-04 + ArtUnc_18: -1.97546655e-04 + ArtUnc_19: 6.94833443e-05 + ArtUnc_20: -1.02614760e-04 + ArtUnc_21: 4.13177219e-06 + ArtUnc_22: 1.43920897e-05 + ArtUnc_23: -4.48551060e-05 + ArtUnc_24: 8.20570232e-06 + ArtUnc_25: -3.01586936e-06 + ArtUnc_26: -7.99867938e-06 + ArtUnc_27: -2.92255990e-06 + ArtUnc_28: 1.45813964e-05 + ArtUnc_29: -2.56725233e-06 + ArtUnc_30: -1.99986168e-07 + ArtUnc_31: -3.77445933e-10 + ArtUnc_32: -2.66990107e-08 + ArtUnc_33: -1.31616122e-08 + ArtUnc_34: -6.04751078e-09 + ArtUnc_35: 8.24595094e-11 - stat: 0.004985 sys: 0 - ArtUnc_1: -0.005584180660462284 - ArtUnc_2: 0.005402440155278472 - ArtUnc_3: -0.001258974418725048 - ArtUnc_4: 0.0009543269631010207 - ArtUnc_5: -0.0009347829806484367 - ArtUnc_6: 0.0010808578129639429 - ArtUnc_7: -0.00026953233568645905 - ArtUnc_8: -4.3114528809165864e-05 - ArtUnc_9: 0.0012745994213796575 - ArtUnc_10: 0.0010771008460107397 - ArtUnc_11: 0.0005410578044235526 - ArtUnc_12: 0.0005230113465621484 - ArtUnc_13: 0.0004236453426681162 - ArtUnc_14: 0.001023688224516619 - ArtUnc_15: 0.0006831570039725692 - ArtUnc_16: -3.864626095474324e-06 - ArtUnc_17: 0.0005058824716695936 - ArtUnc_18: -5.193335072750715e-05 - ArtUnc_19: 1.0415598074030173e-05 - ArtUnc_20: -5.694860967128944e-05 - ArtUnc_21: -2.25654213334138e-05 - ArtUnc_22: -8.731931011172603e-06 - ArtUnc_23: 2.122774038175537e-05 - ArtUnc_24: 2.0323594816090283e-07 - ArtUnc_25: 3.3926085361205654e-06 - ArtUnc_26: -6.673984327745456e-06 - ArtUnc_27: -2.2395161634752645e-06 - ArtUnc_28: 1.1967166955140999e-06 - ArtUnc_29: -8.169547487123018e-07 - ArtUnc_30: 1.9741483769623725e-07 - ArtUnc_31: -5.710292613105985e-10 - ArtUnc_32: -1.877176630517564e-08 - ArtUnc_33: -1.2406707852007199e-08 - ArtUnc_34: -1.3267141766188385e-08 - ArtUnc_35: 1.7030135011226528e-09 + ArtUnc_1: -5.58418066e-03 + ArtUnc_2: 5.40244016e-03 + ArtUnc_3: -1.25897442e-03 + ArtUnc_4: 9.54326963e-04 + ArtUnc_5: -9.34782981e-04 + ArtUnc_6: 1.08085781e-03 + ArtUnc_7: -2.69532336e-04 + ArtUnc_8: -4.31145288e-05 + ArtUnc_9: 1.27459942e-03 + ArtUnc_10: 1.07710085e-03 + ArtUnc_11: 5.41057804e-04 + ArtUnc_12: 5.23011347e-04 + ArtUnc_13: 4.23645343e-04 + ArtUnc_14: 1.02368822e-03 + ArtUnc_15: 6.83157004e-04 + ArtUnc_16: -3.86462610e-06 + ArtUnc_17: 5.05882472e-04 + ArtUnc_18: -5.19333507e-05 + ArtUnc_19: 1.04155981e-05 + ArtUnc_20: -5.69486097e-05 + ArtUnc_21: -2.25654213e-05 + ArtUnc_22: -8.73193101e-06 + ArtUnc_23: 2.12277404e-05 + ArtUnc_24: 2.03235948e-07 + ArtUnc_25: 3.39260854e-06 + ArtUnc_26: -6.67398433e-06 + ArtUnc_27: -2.23951616e-06 + ArtUnc_28: 1.19671670e-06 + ArtUnc_29: -8.16954749e-07 + ArtUnc_30: 1.97414838e-07 + ArtUnc_31: -5.71029261e-10 + ArtUnc_32: -1.87717663e-08 + ArtUnc_33: -1.24067079e-08 + ArtUnc_34: -1.32671418e-08 + ArtUnc_35: 1.70301350e-09 - stat: 0.004952 sys: 0 - ArtUnc_1: -0.004985313942739812 - ArtUnc_2: 0.0049597047504770534 - ArtUnc_3: 0.00023128417902484386 - ArtUnc_4: -0.0013216744438782615 - ArtUnc_5: 0.0003098978840836202 - ArtUnc_6: 0.0007189913565140543 - ArtUnc_7: -0.00087686151792383 - ArtUnc_8: 8.865564359477296e-05 - ArtUnc_9: -0.0015045032391615878 - ArtUnc_10: -0.0012516274456003053 - ArtUnc_11: 2.0410240743613774e-05 - ArtUnc_12: -0.000336062354907094 - ArtUnc_13: 0.0005154235478606279 - ArtUnc_14: -0.00021263172679370092 - ArtUnc_15: -0.00055091745321196 - ArtUnc_16: -0.00021240040087754875 - ArtUnc_17: 0.000870736112869638 - ArtUnc_18: 0.00013462836129840108 - ArtUnc_19: -9.07518468111445e-05 - ArtUnc_20: 0.00018343777462476304 - ArtUnc_21: -3.0137496762994295e-05 - ArtUnc_22: -3.880497219144206e-05 - ArtUnc_23: 6.381375210424444e-05 - ArtUnc_24: -8.73989211829277e-06 - ArtUnc_25: 7.99083959621378e-06 - ArtUnc_26: 3.212220816805794e-06 - ArtUnc_27: -4.227718755137716e-07 - ArtUnc_28: -1.1987713927197136e-05 - ArtUnc_29: -1.0075691550727596e-06 - ArtUnc_30: 3.536641633011308e-07 - ArtUnc_31: -6.489649844505661e-10 - ArtUnc_32: -9.117374699950133e-10 - ArtUnc_33: -1.1217290155513231e-10 - ArtUnc_34: -6.750416178244788e-09 - ArtUnc_35: 5.048268591181173e-09 + ArtUnc_1: -4.98531394e-03 + ArtUnc_2: 4.95970475e-03 + ArtUnc_3: 2.31284179e-04 + ArtUnc_4: -1.32167444e-03 + ArtUnc_5: 3.09897884e-04 + ArtUnc_6: 7.18991357e-04 + ArtUnc_7: -8.76861518e-04 + ArtUnc_8: 8.86556436e-05 + ArtUnc_9: -1.50450324e-03 + ArtUnc_10: -1.25162745e-03 + ArtUnc_11: 2.04102407e-05 + ArtUnc_12: -3.36062355e-04 + ArtUnc_13: 5.15423548e-04 + ArtUnc_14: -2.12631727e-04 + ArtUnc_15: -5.50917453e-04 + ArtUnc_16: -2.12400401e-04 + ArtUnc_17: 8.70736113e-04 + ArtUnc_18: 1.34628361e-04 + ArtUnc_19: -9.07518468e-05 + ArtUnc_20: 1.83437775e-04 + ArtUnc_21: -3.01374968e-05 + ArtUnc_22: -3.88049722e-05 + ArtUnc_23: 6.38137521e-05 + ArtUnc_24: -8.73989212e-06 + ArtUnc_25: 7.99083960e-06 + ArtUnc_26: 3.21222082e-06 + ArtUnc_27: -4.22771876e-07 + ArtUnc_28: -1.19877139e-05 + ArtUnc_29: -1.00756916e-06 + ArtUnc_30: 3.53664163e-07 + ArtUnc_31: -6.48964984e-10 + ArtUnc_32: -9.11737470e-10 + ArtUnc_33: -1.12172902e-10 + ArtUnc_34: -6.75041618e-09 + ArtUnc_35: 5.04826859e-09 - stat: 0.004814 sys: 0 - ArtUnc_1: -0.004332839151588974 - ArtUnc_2: 0.003992192724908909 - ArtUnc_3: -0.0012675197157264756 - ArtUnc_4: 0.0008946433210035379 - ArtUnc_5: 0.0008561141527584299 - ArtUnc_6: -1.988821919635808e-05 - ArtUnc_7: 0.00010140423432533783 - ArtUnc_8: 0.0008671395200652842 - ArtUnc_9: 0.0012107281106401066 - ArtUnc_10: 0.0011380896085567817 - ArtUnc_11: -0.0007003606408359427 - ArtUnc_12: -0.0002282696029554078 - ArtUnc_13: -0.0004449962983768568 - ArtUnc_14: -0.000688687656951619 - ArtUnc_15: -0.0011497534269066083 - ArtUnc_16: -7.124869218595653e-05 - ArtUnc_17: -0.00023784204113435855 - ArtUnc_18: 0.00014956468435920297 - ArtUnc_19: -0.00013922413679857978 - ArtUnc_20: 0.00034765217317597936 - ArtUnc_21: -1.374100708131603e-05 - ArtUnc_22: -5.3162822314439764e-05 - ArtUnc_23: 2.8684399871733878e-05 - ArtUnc_24: 6.546936780151014e-06 - ArtUnc_25: 5.6458746018926475e-06 - ArtUnc_26: 7.136447860258025e-06 - ArtUnc_27: 2.7006581379592063e-06 - ArtUnc_28: -1.2805916649351169e-05 - ArtUnc_29: -2.35239782834333e-06 - ArtUnc_30: -8.948057905245436e-08 - ArtUnc_31: 9.599883562681391e-10 - ArtUnc_32: 1.4085469848921204e-08 - ArtUnc_33: 1.9680928167866433e-09 - ArtUnc_34: -8.809048476288597e-09 - ArtUnc_35: 2.756175127929613e-09 + ArtUnc_1: -4.33283915e-03 + ArtUnc_2: 3.99219272e-03 + ArtUnc_3: -1.26751972e-03 + ArtUnc_4: 8.94643321e-04 + ArtUnc_5: 8.56114153e-04 + ArtUnc_6: -1.98882192e-05 + ArtUnc_7: 1.01404234e-04 + ArtUnc_8: 8.67139520e-04 + ArtUnc_9: 1.21072811e-03 + ArtUnc_10: 1.13808961e-03 + ArtUnc_11: -7.00360641e-04 + ArtUnc_12: -2.28269603e-04 + ArtUnc_13: -4.44996298e-04 + ArtUnc_14: -6.88687657e-04 + ArtUnc_15: -1.14975343e-03 + ArtUnc_16: -7.12486922e-05 + ArtUnc_17: -2.37842041e-04 + ArtUnc_18: 1.49564684e-04 + ArtUnc_19: -1.39224137e-04 + ArtUnc_20: 3.47652173e-04 + ArtUnc_21: -1.37410071e-05 + ArtUnc_22: -5.31628223e-05 + ArtUnc_23: 2.86843999e-05 + ArtUnc_24: 6.54693678e-06 + ArtUnc_25: 5.64587460e-06 + ArtUnc_26: 7.13644786e-06 + ArtUnc_27: 2.70065814e-06 + ArtUnc_28: -1.28059166e-05 + ArtUnc_29: -2.35239783e-06 + ArtUnc_30: -8.94805791e-08 + ArtUnc_31: 9.59988356e-10 + ArtUnc_32: 1.40854698e-08 + ArtUnc_33: 1.96809282e-09 + ArtUnc_34: -8.80904848e-09 + ArtUnc_35: 2.75617513e-09 - stat: 0.004894 sys: 0 - ArtUnc_1: -0.0035068504800465135 - ArtUnc_2: 0.0027825634576785795 - ArtUnc_3: 7.382424199379394e-05 - ArtUnc_4: -0.0007468937244756893 - ArtUnc_5: -0.001141328394483 - ArtUnc_6: 0.00021972735549396157 - ArtUnc_7: 0.0007243879919114877 - ArtUnc_8: 0.0007392997939456392 - ArtUnc_9: -0.0011131062391104905 - ArtUnc_10: -0.0005374697808283416 - ArtUnc_11: 0.0007492509106060543 - ArtUnc_12: 0.0007825967752191787 - ArtUnc_13: -0.0009741451699998323 - ArtUnc_14: 0.001153878369651241 - ArtUnc_15: -0.0005957606105950838 - ArtUnc_16: 9.157563531657248e-05 - ArtUnc_17: -0.0006967166298109112 - ArtUnc_18: 4.089998055343888e-05 - ArtUnc_19: 3.5696675822640437e-06 - ArtUnc_20: 4.7113429173770843e-07 - ArtUnc_21: 2.310636698429762e-06 - ArtUnc_22: -4.7369901714044995e-06 - ArtUnc_23: -2.9471224703874675e-05 - ArtUnc_24: 1.878697942352059e-05 - ArtUnc_25: -2.446341116867008e-06 - ArtUnc_26: 4.059436920832113e-06 - ArtUnc_27: 3.713755272759486e-06 - ArtUnc_28: -2.391677119664719e-06 - ArtUnc_29: 3.366209425680019e-06 - ArtUnc_30: -2.485688705822956e-07 - ArtUnc_31: 2.3393661255664917e-09 - ArtUnc_32: 2.4462093664879866e-08 - ArtUnc_33: 3.7843580337649445e-09 - ArtUnc_34: 1.5507783666780862e-10 - ArtUnc_35: -6.571474982618497e-09 + ArtUnc_1: -3.50685048e-03 + ArtUnc_2: 2.78256346e-03 + ArtUnc_3: 7.38242420e-05 + ArtUnc_4: -7.46893724e-04 + ArtUnc_5: -1.14132839e-03 + ArtUnc_6: 2.19727355e-04 + ArtUnc_7: 7.24387992e-04 + ArtUnc_8: 7.39299794e-04 + ArtUnc_9: -1.11310624e-03 + ArtUnc_10: -5.37469781e-04 + ArtUnc_11: 7.49250911e-04 + ArtUnc_12: 7.82596775e-04 + ArtUnc_13: -9.74145170e-04 + ArtUnc_14: 1.15387837e-03 + ArtUnc_15: -5.95760611e-04 + ArtUnc_16: 9.15756353e-05 + ArtUnc_17: -6.96716630e-04 + ArtUnc_18: 4.08999806e-05 + ArtUnc_19: 3.56966758e-06 + ArtUnc_20: 4.71134292e-07 + ArtUnc_21: 2.31063670e-06 + ArtUnc_22: -4.73699017e-06 + ArtUnc_23: -2.94712247e-05 + ArtUnc_24: 1.87869794e-05 + ArtUnc_25: -2.44634112e-06 + ArtUnc_26: 4.05943692e-06 + ArtUnc_27: 3.71375527e-06 + ArtUnc_28: -2.39167712e-06 + ArtUnc_29: 3.36620943e-06 + ArtUnc_30: -2.48568871e-07 + ArtUnc_31: 2.33936613e-09 + ArtUnc_32: 2.44620937e-08 + ArtUnc_33: 3.78435803e-09 + ArtUnc_34: 1.55077837e-10 + ArtUnc_35: -6.57147498e-09 - stat: 0.002599 sys: 0 - ArtUnc_1: -0.0015082924410271632 - ArtUnc_2: 0.0010540439672786586 - ArtUnc_3: -0.0008410617995951913 - ArtUnc_4: -0.0003219418246101638 - ArtUnc_5: 0.00015370291282924435 - ArtUnc_6: 0.00022609322276470465 - ArtUnc_7: -0.00014918357569275413 - ArtUnc_8: 0.00017134525397302197 - ArtUnc_9: 0.00017554131325225286 - ArtUnc_10: -3.4167486727564726e-05 - ArtUnc_11: -0.0005781515485916376 - ArtUnc_12: 0.0006793473579443988 - ArtUnc_13: -7.046222813095876e-05 - ArtUnc_14: -0.0003611479246399664 - ArtUnc_15: -0.0005703530587892188 - ArtUnc_16: -0.00015310104659223503 - ArtUnc_17: 0.00017273098921442205 - ArtUnc_18: 2.8685090245973796e-06 - ArtUnc_19: 0.00038159542672217 - ArtUnc_20: -0.00105712764575295 - ArtUnc_21: 7.642454742318617e-05 - ArtUnc_22: 0.00014496674560832544 - ArtUnc_23: -6.0867543365224524e-05 - ArtUnc_24: 1.555632457213227e-05 - ArtUnc_25: -2.099692769714365e-05 - ArtUnc_26: 3.2149097067067107e-06 - ArtUnc_27: 3.0677190065543445e-06 - ArtUnc_28: 9.45230350113232e-06 - ArtUnc_29: 2.0851305255794502e-05 - ArtUnc_30: -8.631307430609188e-07 - ArtUnc_31: 4.279381464375642e-09 - ArtUnc_32: 3.598241612160805e-08 - ArtUnc_33: 1.3046576260193356e-08 - ArtUnc_34: -1.2643133481194104e-08 - ArtUnc_35: -1.1902383989639533e-08 + ArtUnc_1: -1.50829244e-03 + ArtUnc_2: 1.05404397e-03 + ArtUnc_3: -8.41061800e-04 + ArtUnc_4: -3.21941825e-04 + ArtUnc_5: 1.53702913e-04 + ArtUnc_6: 2.26093223e-04 + ArtUnc_7: -1.49183576e-04 + ArtUnc_8: 1.71345254e-04 + ArtUnc_9: 1.75541313e-04 + ArtUnc_10: -3.41674867e-05 + ArtUnc_11: -5.78151549e-04 + ArtUnc_12: 6.79347358e-04 + ArtUnc_13: -7.04622281e-05 + ArtUnc_14: -3.61147925e-04 + ArtUnc_15: -5.70353059e-04 + ArtUnc_16: -1.53101047e-04 + ArtUnc_17: 1.72730989e-04 + ArtUnc_18: 2.86850902e-06 + ArtUnc_19: 3.81595427e-04 + ArtUnc_20: -1.05712765e-03 + ArtUnc_21: 7.64245474e-05 + ArtUnc_22: 1.44966746e-04 + ArtUnc_23: -6.08675434e-05 + ArtUnc_24: 1.55563246e-05 + ArtUnc_25: -2.09969277e-05 + ArtUnc_26: 3.21490971e-06 + ArtUnc_27: 3.06771901e-06 + ArtUnc_28: 9.45230350e-06 + ArtUnc_29: 2.08513053e-05 + ArtUnc_30: -8.63130743e-07 + ArtUnc_31: 4.27938146e-09 + ArtUnc_32: 3.59824161e-08 + ArtUnc_33: 1.30465763e-08 + ArtUnc_34: -1.26431335e-08 + ArtUnc_35: -1.19023840e-08 - stat: 0.003097 sys: 0 - ArtUnc_1: -0.005461174962226479 - ArtUnc_2: 0.005748565496185742 - ArtUnc_3: -0.0003729208131545292 - ArtUnc_4: -0.0006257973416696964 - ArtUnc_5: 0.0008038983297755047 - ArtUnc_6: 0.0007683704301494825 - ArtUnc_7: 0.0008068281788827388 - ArtUnc_8: -0.00028212143948071634 - ArtUnc_9: -0.00039235104087289885 - ArtUnc_10: -0.0004795994457088284 - ArtUnc_11: -0.00035035048758463535 - ArtUnc_12: -0.0005188410981127812 - ArtUnc_13: -4.9156307969301375e-05 - ArtUnc_14: -0.0008507653632184144 - ArtUnc_15: 0.0011112032183755874 - ArtUnc_16: 0.00015288261517429032 - ArtUnc_17: -0.0007579008022995617 - ArtUnc_18: -0.00019754665540676686 - ArtUnc_19: 6.948334425485455e-05 - ArtUnc_20: -0.00010261475977256306 - ArtUnc_21: 4.131772189780342e-06 - ArtUnc_22: 1.439208968409544e-05 - ArtUnc_23: -4.485510604183754e-05 - ArtUnc_24: 8.20570232489912e-06 - ArtUnc_25: -3.0158693576923058e-06 - ArtUnc_26: -7.998679375814098e-06 - ArtUnc_27: -2.9225598998617655e-06 - ArtUnc_28: 1.4581396386961808e-05 - ArtUnc_29: -2.5672523318345235e-06 - ArtUnc_30: -1.9998616781534984e-07 - ArtUnc_31: -3.7744593303082315e-10 - ArtUnc_32: -2.6699010684138605e-08 - ArtUnc_33: -1.3161612157049804e-08 - ArtUnc_34: -6.047510779555058e-09 - ArtUnc_35: 8.24595093584843e-11 + ArtUnc_1: -5.46117496e-03 + ArtUnc_2: 5.74856550e-03 + ArtUnc_3: -3.72920813e-04 + ArtUnc_4: -6.25797342e-04 + ArtUnc_5: 8.03898330e-04 + ArtUnc_6: 7.68370430e-04 + ArtUnc_7: 8.06828179e-04 + ArtUnc_8: -2.82121439e-04 + ArtUnc_9: -3.92351041e-04 + ArtUnc_10: -4.79599446e-04 + ArtUnc_11: -3.50350488e-04 + ArtUnc_12: -5.18841098e-04 + ArtUnc_13: -4.91563080e-05 + ArtUnc_14: -8.50765363e-04 + ArtUnc_15: 1.11120322e-03 + ArtUnc_16: 1.52882615e-04 + ArtUnc_17: -7.57900802e-04 + ArtUnc_18: -1.97546655e-04 + ArtUnc_19: 6.94833443e-05 + ArtUnc_20: -1.02614760e-04 + ArtUnc_21: 4.13177219e-06 + ArtUnc_22: 1.43920897e-05 + ArtUnc_23: -4.48551060e-05 + ArtUnc_24: 8.20570232e-06 + ArtUnc_25: -3.01586936e-06 + ArtUnc_26: -7.99867938e-06 + ArtUnc_27: -2.92255990e-06 + ArtUnc_28: 1.45813964e-05 + ArtUnc_29: -2.56725233e-06 + ArtUnc_30: -1.99986168e-07 + ArtUnc_31: -3.77445933e-10 + ArtUnc_32: -2.66990107e-08 + ArtUnc_33: -1.31616122e-08 + ArtUnc_34: -6.04751078e-09 + ArtUnc_35: 8.24595094e-11 - stat: 0.003472 sys: 0 - ArtUnc_1: -0.005584180660462284 - ArtUnc_2: 0.005402440155278472 - ArtUnc_3: -0.001258974418725048 - ArtUnc_4: 0.0009543269631010207 - ArtUnc_5: -0.0009347829806484367 - ArtUnc_6: 0.0010808578129639429 - ArtUnc_7: -0.00026953233568645905 - ArtUnc_8: -4.3114528809165864e-05 - ArtUnc_9: 0.0012745994213796575 - ArtUnc_10: 0.0010771008460107397 - ArtUnc_11: 0.0005410578044235526 - ArtUnc_12: 0.0005230113465621484 - ArtUnc_13: 0.0004236453426681162 - ArtUnc_14: 0.001023688224516619 - ArtUnc_15: 0.0006831570039725692 - ArtUnc_16: -3.864626095474324e-06 - ArtUnc_17: 0.0005058824716695936 - ArtUnc_18: -5.193335072750715e-05 - ArtUnc_19: 1.0415598074030173e-05 - ArtUnc_20: -5.694860967128944e-05 - ArtUnc_21: -2.25654213334138e-05 - ArtUnc_22: -8.731931011172603e-06 - ArtUnc_23: 2.122774038175537e-05 - ArtUnc_24: 2.0323594816090283e-07 - ArtUnc_25: 3.3926085361205654e-06 - ArtUnc_26: -6.673984327745456e-06 - ArtUnc_27: -2.2395161634752645e-06 - ArtUnc_28: 1.1967166955140999e-06 - ArtUnc_29: -8.169547487123018e-07 - ArtUnc_30: 1.9741483769623725e-07 - ArtUnc_31: -5.710292613105985e-10 - ArtUnc_32: -1.877176630517564e-08 - ArtUnc_33: -1.2406707852007199e-08 - ArtUnc_34: -1.3267141766188385e-08 - ArtUnc_35: 1.7030135011226528e-09 + ArtUnc_1: -5.58418066e-03 + ArtUnc_2: 5.40244016e-03 + ArtUnc_3: -1.25897442e-03 + ArtUnc_4: 9.54326963e-04 + ArtUnc_5: -9.34782981e-04 + ArtUnc_6: 1.08085781e-03 + ArtUnc_7: -2.69532336e-04 + ArtUnc_8: -4.31145288e-05 + ArtUnc_9: 1.27459942e-03 + ArtUnc_10: 1.07710085e-03 + ArtUnc_11: 5.41057804e-04 + ArtUnc_12: 5.23011347e-04 + ArtUnc_13: 4.23645343e-04 + ArtUnc_14: 1.02368822e-03 + ArtUnc_15: 6.83157004e-04 + ArtUnc_16: -3.86462610e-06 + ArtUnc_17: 5.05882472e-04 + ArtUnc_18: -5.19333507e-05 + ArtUnc_19: 1.04155981e-05 + ArtUnc_20: -5.69486097e-05 + ArtUnc_21: -2.25654213e-05 + ArtUnc_22: -8.73193101e-06 + ArtUnc_23: 2.12277404e-05 + ArtUnc_24: 2.03235948e-07 + ArtUnc_25: 3.39260854e-06 + ArtUnc_26: -6.67398433e-06 + ArtUnc_27: -2.23951616e-06 + ArtUnc_28: 1.19671670e-06 + ArtUnc_29: -8.16954749e-07 + ArtUnc_30: 1.97414838e-07 + ArtUnc_31: -5.71029261e-10 + ArtUnc_32: -1.87717663e-08 + ArtUnc_33: -1.24067079e-08 + ArtUnc_34: -1.32671418e-08 + ArtUnc_35: 1.70301350e-09 - stat: 0.003415 sys: 0 - ArtUnc_1: -0.004985313942739812 - ArtUnc_2: 0.0049597047504770534 - ArtUnc_3: 0.00023128417902484386 - ArtUnc_4: -0.0013216744438782615 - ArtUnc_5: 0.0003098978840836202 - ArtUnc_6: 0.0007189913565140543 - ArtUnc_7: -0.00087686151792383 - ArtUnc_8: 8.865564359477296e-05 - ArtUnc_9: -0.0015045032391615878 - ArtUnc_10: -0.0012516274456003053 - ArtUnc_11: 2.0410240743613774e-05 - ArtUnc_12: -0.000336062354907094 - ArtUnc_13: 0.0005154235478606279 - ArtUnc_14: -0.00021263172679370092 - ArtUnc_15: -0.00055091745321196 - ArtUnc_16: -0.00021240040087754875 - ArtUnc_17: 0.000870736112869638 - ArtUnc_18: 0.00013462836129840108 - ArtUnc_19: -9.07518468111445e-05 - ArtUnc_20: 0.00018343777462476304 - ArtUnc_21: -3.0137496762994295e-05 - ArtUnc_22: -3.880497219144206e-05 - ArtUnc_23: 6.381375210424444e-05 - ArtUnc_24: -8.73989211829277e-06 - ArtUnc_25: 7.99083959621378e-06 - ArtUnc_26: 3.212220816805794e-06 - ArtUnc_27: -4.227718755137716e-07 - ArtUnc_28: -1.1987713927197136e-05 - ArtUnc_29: -1.0075691550727596e-06 - ArtUnc_30: 3.536641633011308e-07 - ArtUnc_31: -6.489649844505661e-10 - ArtUnc_32: -9.117374699950133e-10 - ArtUnc_33: -1.1217290155513231e-10 - ArtUnc_34: -6.750416178244788e-09 - ArtUnc_35: 5.048268591181173e-09 + ArtUnc_1: -4.98531394e-03 + ArtUnc_2: 4.95970475e-03 + ArtUnc_3: 2.31284179e-04 + ArtUnc_4: -1.32167444e-03 + ArtUnc_5: 3.09897884e-04 + ArtUnc_6: 7.18991357e-04 + ArtUnc_7: -8.76861518e-04 + ArtUnc_8: 8.86556436e-05 + ArtUnc_9: -1.50450324e-03 + ArtUnc_10: -1.25162745e-03 + ArtUnc_11: 2.04102407e-05 + ArtUnc_12: -3.36062355e-04 + ArtUnc_13: 5.15423548e-04 + ArtUnc_14: -2.12631727e-04 + ArtUnc_15: -5.50917453e-04 + ArtUnc_16: -2.12400401e-04 + ArtUnc_17: 8.70736113e-04 + ArtUnc_18: 1.34628361e-04 + ArtUnc_19: -9.07518468e-05 + ArtUnc_20: 1.83437775e-04 + ArtUnc_21: -3.01374968e-05 + ArtUnc_22: -3.88049722e-05 + ArtUnc_23: 6.38137521e-05 + ArtUnc_24: -8.73989212e-06 + ArtUnc_25: 7.99083960e-06 + ArtUnc_26: 3.21222082e-06 + ArtUnc_27: -4.22771876e-07 + ArtUnc_28: -1.19877139e-05 + ArtUnc_29: -1.00756916e-06 + ArtUnc_30: 3.53664163e-07 + ArtUnc_31: -6.48964984e-10 + ArtUnc_32: -9.11737470e-10 + ArtUnc_33: -1.12172902e-10 + ArtUnc_34: -6.75041618e-09 + ArtUnc_35: 5.04826859e-09 - stat: 0.003329 sys: 0 - ArtUnc_1: -0.004332839151588974 - ArtUnc_2: 0.003992192724908909 - ArtUnc_3: -0.0012675197157264756 - ArtUnc_4: 0.0008946433210035379 - ArtUnc_5: 0.0008561141527584299 - ArtUnc_6: -1.988821919635808e-05 - ArtUnc_7: 0.00010140423432533783 - ArtUnc_8: 0.0008671395200652842 - ArtUnc_9: 0.0012107281106401066 - ArtUnc_10: 0.0011380896085567817 - ArtUnc_11: -0.0007003606408359427 - ArtUnc_12: -0.0002282696029554078 - ArtUnc_13: -0.0004449962983768568 - ArtUnc_14: -0.000688687656951619 - ArtUnc_15: -0.0011497534269066083 - ArtUnc_16: -7.124869218595653e-05 - ArtUnc_17: -0.00023784204113435855 - ArtUnc_18: 0.00014956468435920297 - ArtUnc_19: -0.00013922413679857978 - ArtUnc_20: 0.00034765217317597936 - ArtUnc_21: -1.374100708131603e-05 - ArtUnc_22: -5.3162822314439764e-05 - ArtUnc_23: 2.8684399871733878e-05 - ArtUnc_24: 6.546936780151014e-06 - ArtUnc_25: 5.6458746018926475e-06 - ArtUnc_26: 7.136447860258025e-06 - ArtUnc_27: 2.7006581379592063e-06 - ArtUnc_28: -1.2805916649351169e-05 - ArtUnc_29: -2.35239782834333e-06 - ArtUnc_30: -8.948057905245436e-08 - ArtUnc_31: 9.599883562681391e-10 - ArtUnc_32: 1.4085469848921204e-08 - ArtUnc_33: 1.9680928167866433e-09 - ArtUnc_34: -8.809048476288597e-09 - ArtUnc_35: 2.756175127929613e-09 + ArtUnc_1: -4.33283915e-03 + ArtUnc_2: 3.99219272e-03 + ArtUnc_3: -1.26751972e-03 + ArtUnc_4: 8.94643321e-04 + ArtUnc_5: 8.56114153e-04 + ArtUnc_6: -1.98882192e-05 + ArtUnc_7: 1.01404234e-04 + ArtUnc_8: 8.67139520e-04 + ArtUnc_9: 1.21072811e-03 + ArtUnc_10: 1.13808961e-03 + ArtUnc_11: -7.00360641e-04 + ArtUnc_12: -2.28269603e-04 + ArtUnc_13: -4.44996298e-04 + ArtUnc_14: -6.88687657e-04 + ArtUnc_15: -1.14975343e-03 + ArtUnc_16: -7.12486922e-05 + ArtUnc_17: -2.37842041e-04 + ArtUnc_18: 1.49564684e-04 + ArtUnc_19: -1.39224137e-04 + ArtUnc_20: 3.47652173e-04 + ArtUnc_21: -1.37410071e-05 + ArtUnc_22: -5.31628223e-05 + ArtUnc_23: 2.86843999e-05 + ArtUnc_24: 6.54693678e-06 + ArtUnc_25: 5.64587460e-06 + ArtUnc_26: 7.13644786e-06 + ArtUnc_27: 2.70065814e-06 + ArtUnc_28: -1.28059166e-05 + ArtUnc_29: -2.35239783e-06 + ArtUnc_30: -8.94805791e-08 + ArtUnc_31: 9.59988356e-10 + ArtUnc_32: 1.40854698e-08 + ArtUnc_33: 1.96809282e-09 + ArtUnc_34: -8.80904848e-09 + ArtUnc_35: 2.75617513e-09 - stat: 0.003386 sys: 0 - ArtUnc_1: -0.0035068504800465135 - ArtUnc_2: 0.0027825634576785795 - ArtUnc_3: 7.382424199379394e-05 - ArtUnc_4: -0.0007468937244756893 - ArtUnc_5: -0.001141328394483 - ArtUnc_6: 0.00021972735549396157 - ArtUnc_7: 0.0007243879919114877 - ArtUnc_8: 0.0007392997939456392 - ArtUnc_9: -0.0011131062391104905 - ArtUnc_10: -0.0005374697808283416 - ArtUnc_11: 0.0007492509106060543 - ArtUnc_12: 0.0007825967752191787 - ArtUnc_13: -0.0009741451699998323 - ArtUnc_14: 0.001153878369651241 - ArtUnc_15: -0.0005957606105950838 - ArtUnc_16: 9.157563531657248e-05 - ArtUnc_17: -0.0006967166298109112 - ArtUnc_18: 4.089998055343888e-05 - ArtUnc_19: 3.5696675822640437e-06 - ArtUnc_20: 4.7113429173770843e-07 - ArtUnc_21: 2.310636698429762e-06 - ArtUnc_22: -4.7369901714044995e-06 - ArtUnc_23: -2.9471224703874675e-05 - ArtUnc_24: 1.878697942352059e-05 - ArtUnc_25: -2.446341116867008e-06 - ArtUnc_26: 4.059436920832113e-06 - ArtUnc_27: 3.713755272759486e-06 - ArtUnc_28: -2.391677119664719e-06 - ArtUnc_29: 3.366209425680019e-06 - ArtUnc_30: -2.485688705822956e-07 - ArtUnc_31: 2.3393661255664917e-09 - ArtUnc_32: 2.4462093664879866e-08 - ArtUnc_33: 3.7843580337649445e-09 - ArtUnc_34: 1.5507783666780862e-10 - ArtUnc_35: -6.571474982618497e-09 + ArtUnc_1: -3.50685048e-03 + ArtUnc_2: 2.78256346e-03 + ArtUnc_3: 7.38242420e-05 + ArtUnc_4: -7.46893724e-04 + ArtUnc_5: -1.14132839e-03 + ArtUnc_6: 2.19727355e-04 + ArtUnc_7: 7.24387992e-04 + ArtUnc_8: 7.39299794e-04 + ArtUnc_9: -1.11310624e-03 + ArtUnc_10: -5.37469781e-04 + ArtUnc_11: 7.49250911e-04 + ArtUnc_12: 7.82596775e-04 + ArtUnc_13: -9.74145170e-04 + ArtUnc_14: 1.15387837e-03 + ArtUnc_15: -5.95760611e-04 + ArtUnc_16: 9.15756353e-05 + ArtUnc_17: -6.96716630e-04 + ArtUnc_18: 4.08999806e-05 + ArtUnc_19: 3.56966758e-06 + ArtUnc_20: 4.71134292e-07 + ArtUnc_21: 2.31063670e-06 + ArtUnc_22: -4.73699017e-06 + ArtUnc_23: -2.94712247e-05 + ArtUnc_24: 1.87869794e-05 + ArtUnc_25: -2.44634112e-06 + ArtUnc_26: 4.05943692e-06 + ArtUnc_27: 3.71375527e-06 + ArtUnc_28: -2.39167712e-06 + ArtUnc_29: 3.36620943e-06 + ArtUnc_30: -2.48568871e-07 + ArtUnc_31: 2.33936613e-09 + ArtUnc_32: 2.44620937e-08 + ArtUnc_33: 3.78435803e-09 + ArtUnc_34: 1.55077837e-10 + ArtUnc_35: -6.57147498e-09 - stat: 0.001673 sys: 0 - ArtUnc_1: -0.0015082924410271632 - ArtUnc_2: 0.0010540439672786586 - ArtUnc_3: -0.0008410617995951913 - ArtUnc_4: -0.0003219418246101638 - ArtUnc_5: 0.00015370291282924435 - ArtUnc_6: 0.00022609322276470465 - ArtUnc_7: -0.00014918357569275413 - ArtUnc_8: 0.00017134525397302197 - ArtUnc_9: 0.00017554131325225286 - ArtUnc_10: -3.4167486727564726e-05 - ArtUnc_11: -0.0005781515485916376 - ArtUnc_12: 0.0006793473579443988 - ArtUnc_13: -7.046222813095876e-05 - ArtUnc_14: -0.0003611479246399664 - ArtUnc_15: -0.0005703530587892188 - ArtUnc_16: -0.00015310104659223503 - ArtUnc_17: 0.00017273098921442205 - ArtUnc_18: 2.8685090245973796e-06 - ArtUnc_19: 0.00038159542672217 - ArtUnc_20: -0.00105712764575295 - ArtUnc_21: 7.642454742318617e-05 - ArtUnc_22: 0.00014496674560832544 - ArtUnc_23: -6.0867543365224524e-05 - ArtUnc_24: 1.555632457213227e-05 - ArtUnc_25: -2.099692769714365e-05 - ArtUnc_26: 3.2149097067067107e-06 - ArtUnc_27: 3.0677190065543445e-06 - ArtUnc_28: 9.45230350113232e-06 - ArtUnc_29: 2.0851305255794502e-05 - ArtUnc_30: -8.631307430609188e-07 - ArtUnc_31: 4.279381464375642e-09 - ArtUnc_32: 3.598241612160805e-08 - ArtUnc_33: 1.3046576260193356e-08 - ArtUnc_34: -1.2643133481194104e-08 - ArtUnc_35: -1.1902383989639533e-08 + ArtUnc_1: -1.50829244e-03 + ArtUnc_2: 1.05404397e-03 + ArtUnc_3: -8.41061800e-04 + ArtUnc_4: -3.21941825e-04 + ArtUnc_5: 1.53702913e-04 + ArtUnc_6: 2.26093223e-04 + ArtUnc_7: -1.49183576e-04 + ArtUnc_8: 1.71345254e-04 + ArtUnc_9: 1.75541313e-04 + ArtUnc_10: -3.41674867e-05 + ArtUnc_11: -5.78151549e-04 + ArtUnc_12: 6.79347358e-04 + ArtUnc_13: -7.04622281e-05 + ArtUnc_14: -3.61147925e-04 + ArtUnc_15: -5.70353059e-04 + ArtUnc_16: -1.53101047e-04 + ArtUnc_17: 1.72730989e-04 + ArtUnc_18: 2.86850902e-06 + ArtUnc_19: 3.81595427e-04 + ArtUnc_20: -1.05712765e-03 + ArtUnc_21: 7.64245474e-05 + ArtUnc_22: 1.44966746e-04 + ArtUnc_23: -6.08675434e-05 + ArtUnc_24: 1.55563246e-05 + ArtUnc_25: -2.09969277e-05 + ArtUnc_26: 3.21490971e-06 + ArtUnc_27: 3.06771901e-06 + ArtUnc_28: 9.45230350e-06 + ArtUnc_29: 2.08513053e-05 + ArtUnc_30: -8.63130743e-07 + ArtUnc_31: 4.27938146e-09 + ArtUnc_32: 3.59824161e-08 + ArtUnc_33: 1.30465763e-08 + ArtUnc_34: -1.26431335e-08 + ArtUnc_35: -1.19023840e-08 - stat: 0.001105 sys: 0 - ArtUnc_1: -0.005461174962226479 - ArtUnc_2: 0.005748565496185742 - ArtUnc_3: -0.0003729208131545292 - ArtUnc_4: -0.0006257973416696964 - ArtUnc_5: 0.0008038983297755047 - ArtUnc_6: 0.0007683704301494825 - ArtUnc_7: 0.0008068281788827388 - ArtUnc_8: -0.00028212143948071634 - ArtUnc_9: -0.00039235104087289885 - ArtUnc_10: -0.0004795994457088284 - ArtUnc_11: -0.00035035048758463535 - ArtUnc_12: -0.0005188410981127812 - ArtUnc_13: -4.9156307969301375e-05 - ArtUnc_14: -0.0008507653632184144 - ArtUnc_15: 0.0011112032183755874 - ArtUnc_16: 0.00015288261517429032 - ArtUnc_17: -0.0007579008022995617 - ArtUnc_18: -0.00019754665540676686 - ArtUnc_19: 6.948334425485455e-05 - ArtUnc_20: -0.00010261475977256306 - ArtUnc_21: 4.131772189780342e-06 - ArtUnc_22: 1.439208968409544e-05 - ArtUnc_23: -4.485510604183754e-05 - ArtUnc_24: 8.20570232489912e-06 - ArtUnc_25: -3.0158693576923058e-06 - ArtUnc_26: -7.998679375814098e-06 - ArtUnc_27: -2.9225598998617655e-06 - ArtUnc_28: 1.4581396386961808e-05 - ArtUnc_29: -2.5672523318345235e-06 - ArtUnc_30: -1.9998616781534984e-07 - ArtUnc_31: -3.7744593303082315e-10 - ArtUnc_32: -2.6699010684138605e-08 - ArtUnc_33: -1.3161612157049804e-08 - ArtUnc_34: -6.047510779555058e-09 - ArtUnc_35: 8.24595093584843e-11 + ArtUnc_1: -5.46117496e-03 + ArtUnc_2: 5.74856550e-03 + ArtUnc_3: -3.72920813e-04 + ArtUnc_4: -6.25797342e-04 + ArtUnc_5: 8.03898330e-04 + ArtUnc_6: 7.68370430e-04 + ArtUnc_7: 8.06828179e-04 + ArtUnc_8: -2.82121439e-04 + ArtUnc_9: -3.92351041e-04 + ArtUnc_10: -4.79599446e-04 + ArtUnc_11: -3.50350488e-04 + ArtUnc_12: -5.18841098e-04 + ArtUnc_13: -4.91563080e-05 + ArtUnc_14: -8.50765363e-04 + ArtUnc_15: 1.11120322e-03 + ArtUnc_16: 1.52882615e-04 + ArtUnc_17: -7.57900802e-04 + ArtUnc_18: -1.97546655e-04 + ArtUnc_19: 6.94833443e-05 + ArtUnc_20: -1.02614760e-04 + ArtUnc_21: 4.13177219e-06 + ArtUnc_22: 1.43920897e-05 + ArtUnc_23: -4.48551060e-05 + ArtUnc_24: 8.20570232e-06 + ArtUnc_25: -3.01586936e-06 + ArtUnc_26: -7.99867938e-06 + ArtUnc_27: -2.92255990e-06 + ArtUnc_28: 1.45813964e-05 + ArtUnc_29: -2.56725233e-06 + ArtUnc_30: -1.99986168e-07 + ArtUnc_31: -3.77445933e-10 + ArtUnc_32: -2.66990107e-08 + ArtUnc_33: -1.31616122e-08 + ArtUnc_34: -6.04751078e-09 + ArtUnc_35: 8.24595094e-11 - stat: 0.001218 sys: 0 - ArtUnc_1: -0.005584180660462284 - ArtUnc_2: 0.005402440155278472 - ArtUnc_3: -0.001258974418725048 - ArtUnc_4: 0.0009543269631010207 - ArtUnc_5: -0.0009347829806484367 - ArtUnc_6: 0.0010808578129639429 - ArtUnc_7: -0.00026953233568645905 - ArtUnc_8: -4.3114528809165864e-05 - ArtUnc_9: 0.0012745994213796575 - ArtUnc_10: 0.0010771008460107397 - ArtUnc_11: 0.0005410578044235526 - ArtUnc_12: 0.0005230113465621484 - ArtUnc_13: 0.0004236453426681162 - ArtUnc_14: 0.001023688224516619 - ArtUnc_15: 0.0006831570039725692 - ArtUnc_16: -3.864626095474324e-06 - ArtUnc_17: 0.0005058824716695936 - ArtUnc_18: -5.193335072750715e-05 - ArtUnc_19: 1.0415598074030173e-05 - ArtUnc_20: -5.694860967128944e-05 - ArtUnc_21: -2.25654213334138e-05 - ArtUnc_22: -8.731931011172603e-06 - ArtUnc_23: 2.122774038175537e-05 - ArtUnc_24: 2.0323594816090283e-07 - ArtUnc_25: 3.3926085361205654e-06 - ArtUnc_26: -6.673984327745456e-06 - ArtUnc_27: -2.2395161634752645e-06 - ArtUnc_28: 1.1967166955140999e-06 - ArtUnc_29: -8.169547487123018e-07 - ArtUnc_30: 1.9741483769623725e-07 - ArtUnc_31: -5.710292613105985e-10 - ArtUnc_32: -1.877176630517564e-08 - ArtUnc_33: -1.2406707852007199e-08 - ArtUnc_34: -1.3267141766188385e-08 - ArtUnc_35: 1.7030135011226528e-09 + ArtUnc_1: -5.58418066e-03 + ArtUnc_2: 5.40244016e-03 + ArtUnc_3: -1.25897442e-03 + ArtUnc_4: 9.54326963e-04 + ArtUnc_5: -9.34782981e-04 + ArtUnc_6: 1.08085781e-03 + ArtUnc_7: -2.69532336e-04 + ArtUnc_8: -4.31145288e-05 + ArtUnc_9: 1.27459942e-03 + ArtUnc_10: 1.07710085e-03 + ArtUnc_11: 5.41057804e-04 + ArtUnc_12: 5.23011347e-04 + ArtUnc_13: 4.23645343e-04 + ArtUnc_14: 1.02368822e-03 + ArtUnc_15: 6.83157004e-04 + ArtUnc_16: -3.86462610e-06 + ArtUnc_17: 5.05882472e-04 + ArtUnc_18: -5.19333507e-05 + ArtUnc_19: 1.04155981e-05 + ArtUnc_20: -5.69486097e-05 + ArtUnc_21: -2.25654213e-05 + ArtUnc_22: -8.73193101e-06 + ArtUnc_23: 2.12277404e-05 + ArtUnc_24: 2.03235948e-07 + ArtUnc_25: 3.39260854e-06 + ArtUnc_26: -6.67398433e-06 + ArtUnc_27: -2.23951616e-06 + ArtUnc_28: 1.19671670e-06 + ArtUnc_29: -8.16954749e-07 + ArtUnc_30: 1.97414838e-07 + ArtUnc_31: -5.71029261e-10 + ArtUnc_32: -1.87717663e-08 + ArtUnc_33: -1.24067079e-08 + ArtUnc_34: -1.32671418e-08 + ArtUnc_35: 1.70301350e-09 - stat: 0.00118 sys: 0 - ArtUnc_1: -0.004985313942739812 - ArtUnc_2: 0.0049597047504770534 - ArtUnc_3: 0.00023128417902484386 - ArtUnc_4: -0.0013216744438782615 - ArtUnc_5: 0.0003098978840836202 - ArtUnc_6: 0.0007189913565140543 - ArtUnc_7: -0.00087686151792383 - ArtUnc_8: 8.865564359477296e-05 - ArtUnc_9: -0.0015045032391615878 - ArtUnc_10: -0.0012516274456003053 - ArtUnc_11: 2.0410240743613774e-05 - ArtUnc_12: -0.000336062354907094 - ArtUnc_13: 0.0005154235478606279 - ArtUnc_14: -0.00021263172679370092 - ArtUnc_15: -0.00055091745321196 - ArtUnc_16: -0.00021240040087754875 - ArtUnc_17: 0.000870736112869638 - ArtUnc_18: 0.00013462836129840108 - ArtUnc_19: -9.07518468111445e-05 - ArtUnc_20: 0.00018343777462476304 - ArtUnc_21: -3.0137496762994295e-05 - ArtUnc_22: -3.880497219144206e-05 - ArtUnc_23: 6.381375210424444e-05 - ArtUnc_24: -8.73989211829277e-06 - ArtUnc_25: 7.99083959621378e-06 - ArtUnc_26: 3.212220816805794e-06 - ArtUnc_27: -4.227718755137716e-07 - ArtUnc_28: -1.1987713927197136e-05 - ArtUnc_29: -1.0075691550727596e-06 - ArtUnc_30: 3.536641633011308e-07 - ArtUnc_31: -6.489649844505661e-10 - ArtUnc_32: -9.117374699950133e-10 - ArtUnc_33: -1.1217290155513231e-10 - ArtUnc_34: -6.750416178244788e-09 - ArtUnc_35: 5.048268591181173e-09 + ArtUnc_1: -4.98531394e-03 + ArtUnc_2: 4.95970475e-03 + ArtUnc_3: 2.31284179e-04 + ArtUnc_4: -1.32167444e-03 + ArtUnc_5: 3.09897884e-04 + ArtUnc_6: 7.18991357e-04 + ArtUnc_7: -8.76861518e-04 + ArtUnc_8: 8.86556436e-05 + ArtUnc_9: -1.50450324e-03 + ArtUnc_10: -1.25162745e-03 + ArtUnc_11: 2.04102407e-05 + ArtUnc_12: -3.36062355e-04 + ArtUnc_13: 5.15423548e-04 + ArtUnc_14: -2.12631727e-04 + ArtUnc_15: -5.50917453e-04 + ArtUnc_16: -2.12400401e-04 + ArtUnc_17: 8.70736113e-04 + ArtUnc_18: 1.34628361e-04 + ArtUnc_19: -9.07518468e-05 + ArtUnc_20: 1.83437775e-04 + ArtUnc_21: -3.01374968e-05 + ArtUnc_22: -3.88049722e-05 + ArtUnc_23: 6.38137521e-05 + ArtUnc_24: -8.73989212e-06 + ArtUnc_25: 7.99083960e-06 + ArtUnc_26: 3.21222082e-06 + ArtUnc_27: -4.22771876e-07 + ArtUnc_28: -1.19877139e-05 + ArtUnc_29: -1.00756916e-06 + ArtUnc_30: 3.53664163e-07 + ArtUnc_31: -6.48964984e-10 + ArtUnc_32: -9.11737470e-10 + ArtUnc_33: -1.12172902e-10 + ArtUnc_34: -6.75041618e-09 + ArtUnc_35: 5.04826859e-09 - stat: 0.001155 sys: 0 - ArtUnc_1: -0.004332839151588974 - ArtUnc_2: 0.003992192724908909 - ArtUnc_3: -0.0012675197157264756 - ArtUnc_4: 0.0008946433210035379 - ArtUnc_5: 0.0008561141527584299 - ArtUnc_6: -1.988821919635808e-05 - ArtUnc_7: 0.00010140423432533783 - ArtUnc_8: 0.0008671395200652842 - ArtUnc_9: 0.0012107281106401066 - ArtUnc_10: 0.0011380896085567817 - ArtUnc_11: -0.0007003606408359427 - ArtUnc_12: -0.0002282696029554078 - ArtUnc_13: -0.0004449962983768568 - ArtUnc_14: -0.000688687656951619 - ArtUnc_15: -0.0011497534269066083 - ArtUnc_16: -7.124869218595653e-05 - ArtUnc_17: -0.00023784204113435855 - ArtUnc_18: 0.00014956468435920297 - ArtUnc_19: -0.00013922413679857978 - ArtUnc_20: 0.00034765217317597936 - ArtUnc_21: -1.374100708131603e-05 - ArtUnc_22: -5.3162822314439764e-05 - ArtUnc_23: 2.8684399871733878e-05 - ArtUnc_24: 6.546936780151014e-06 - ArtUnc_25: 5.6458746018926475e-06 - ArtUnc_26: 7.136447860258025e-06 - ArtUnc_27: 2.7006581379592063e-06 - ArtUnc_28: -1.2805916649351169e-05 - ArtUnc_29: -2.35239782834333e-06 - ArtUnc_30: -8.948057905245436e-08 - ArtUnc_31: 9.599883562681391e-10 - ArtUnc_32: 1.4085469848921204e-08 - ArtUnc_33: 1.9680928167866433e-09 - ArtUnc_34: -8.809048476288597e-09 - ArtUnc_35: 2.756175127929613e-09 + ArtUnc_1: -4.33283915e-03 + ArtUnc_2: 3.99219272e-03 + ArtUnc_3: -1.26751972e-03 + ArtUnc_4: 8.94643321e-04 + ArtUnc_5: 8.56114153e-04 + ArtUnc_6: -1.98882192e-05 + ArtUnc_7: 1.01404234e-04 + ArtUnc_8: 8.67139520e-04 + ArtUnc_9: 1.21072811e-03 + ArtUnc_10: 1.13808961e-03 + ArtUnc_11: -7.00360641e-04 + ArtUnc_12: -2.28269603e-04 + ArtUnc_13: -4.44996298e-04 + ArtUnc_14: -6.88687657e-04 + ArtUnc_15: -1.14975343e-03 + ArtUnc_16: -7.12486922e-05 + ArtUnc_17: -2.37842041e-04 + ArtUnc_18: 1.49564684e-04 + ArtUnc_19: -1.39224137e-04 + ArtUnc_20: 3.47652173e-04 + ArtUnc_21: -1.37410071e-05 + ArtUnc_22: -5.31628223e-05 + ArtUnc_23: 2.86843999e-05 + ArtUnc_24: 6.54693678e-06 + ArtUnc_25: 5.64587460e-06 + ArtUnc_26: 7.13644786e-06 + ArtUnc_27: 2.70065814e-06 + ArtUnc_28: -1.28059166e-05 + ArtUnc_29: -2.35239783e-06 + ArtUnc_30: -8.94805791e-08 + ArtUnc_31: 9.59988356e-10 + ArtUnc_32: 1.40854698e-08 + ArtUnc_33: 1.96809282e-09 + ArtUnc_34: -8.80904848e-09 + ArtUnc_35: 2.75617513e-09 - stat: 0.001135 sys: 0 - ArtUnc_1: -0.0035068504800465135 - ArtUnc_2: 0.0027825634576785795 - ArtUnc_3: 7.382424199379394e-05 - ArtUnc_4: -0.0007468937244756893 - ArtUnc_5: -0.001141328394483 - ArtUnc_6: 0.00021972735549396157 - ArtUnc_7: 0.0007243879919114877 - ArtUnc_8: 0.0007392997939456392 - ArtUnc_9: -0.0011131062391104905 - ArtUnc_10: -0.0005374697808283416 - ArtUnc_11: 0.0007492509106060543 - ArtUnc_12: 0.0007825967752191787 - ArtUnc_13: -0.0009741451699998323 - ArtUnc_14: 0.001153878369651241 - ArtUnc_15: -0.0005957606105950838 - ArtUnc_16: 9.157563531657248e-05 - ArtUnc_17: -0.0006967166298109112 - ArtUnc_18: 4.089998055343888e-05 - ArtUnc_19: 3.5696675822640437e-06 - ArtUnc_20: 4.7113429173770843e-07 - ArtUnc_21: 2.310636698429762e-06 - ArtUnc_22: -4.7369901714044995e-06 - ArtUnc_23: -2.9471224703874675e-05 - ArtUnc_24: 1.878697942352059e-05 - ArtUnc_25: -2.446341116867008e-06 - ArtUnc_26: 4.059436920832113e-06 - ArtUnc_27: 3.713755272759486e-06 - ArtUnc_28: -2.391677119664719e-06 - ArtUnc_29: 3.366209425680019e-06 - ArtUnc_30: -2.485688705822956e-07 - ArtUnc_31: 2.3393661255664917e-09 - ArtUnc_32: 2.4462093664879866e-08 - ArtUnc_33: 3.7843580337649445e-09 - ArtUnc_34: 1.5507783666780862e-10 - ArtUnc_35: -6.571474982618497e-09 -- stat: 0.0004767 + ArtUnc_1: -3.50685048e-03 + ArtUnc_2: 2.78256346e-03 + ArtUnc_3: 7.38242420e-05 + ArtUnc_4: -7.46893724e-04 + ArtUnc_5: -1.14132839e-03 + ArtUnc_6: 2.19727355e-04 + ArtUnc_7: 7.24387992e-04 + ArtUnc_8: 7.39299794e-04 + ArtUnc_9: -1.11310624e-03 + ArtUnc_10: -5.37469781e-04 + ArtUnc_11: 7.49250911e-04 + ArtUnc_12: 7.82596775e-04 + ArtUnc_13: -9.74145170e-04 + ArtUnc_14: 1.15387837e-03 + ArtUnc_15: -5.95760611e-04 + ArtUnc_16: 9.15756353e-05 + ArtUnc_17: -6.96716630e-04 + ArtUnc_18: 4.08999806e-05 + ArtUnc_19: 3.56966758e-06 + ArtUnc_20: 4.71134292e-07 + ArtUnc_21: 2.31063670e-06 + ArtUnc_22: -4.73699017e-06 + ArtUnc_23: -2.94712247e-05 + ArtUnc_24: 1.87869794e-05 + ArtUnc_25: -2.44634112e-06 + ArtUnc_26: 4.05943692e-06 + ArtUnc_27: 3.71375527e-06 + ArtUnc_28: -2.39167712e-06 + ArtUnc_29: 3.36620943e-06 + ArtUnc_30: -2.48568871e-07 + ArtUnc_31: 2.33936613e-09 + ArtUnc_32: 2.44620937e-08 + ArtUnc_33: 3.78435803e-09 + ArtUnc_34: 1.55077837e-10 + ArtUnc_35: -6.57147498e-09 +- stat: 4.76700000e-04 sys: 0 - ArtUnc_1: -0.0015082924410271632 - ArtUnc_2: 0.0010540439672786586 - ArtUnc_3: -0.0008410617995951913 - ArtUnc_4: -0.0003219418246101638 - ArtUnc_5: 0.00015370291282924435 - ArtUnc_6: 0.00022609322276470465 - ArtUnc_7: -0.00014918357569275413 - ArtUnc_8: 0.00017134525397302197 - ArtUnc_9: 0.00017554131325225286 - ArtUnc_10: -3.4167486727564726e-05 - ArtUnc_11: -0.0005781515485916376 - ArtUnc_12: 0.0006793473579443988 - ArtUnc_13: -7.046222813095876e-05 - ArtUnc_14: -0.0003611479246399664 - ArtUnc_15: -0.0005703530587892188 - ArtUnc_16: -0.00015310104659223503 - ArtUnc_17: 0.00017273098921442205 - ArtUnc_18: 2.8685090245973796e-06 - ArtUnc_19: 0.00038159542672217 - ArtUnc_20: -0.00105712764575295 - ArtUnc_21: 7.642454742318617e-05 - ArtUnc_22: 0.00014496674560832544 - ArtUnc_23: -6.0867543365224524e-05 - ArtUnc_24: 1.555632457213227e-05 - ArtUnc_25: -2.099692769714365e-05 - ArtUnc_26: 3.2149097067067107e-06 - ArtUnc_27: 3.0677190065543445e-06 - ArtUnc_28: 9.45230350113232e-06 - ArtUnc_29: 2.0851305255794502e-05 - ArtUnc_30: -8.631307430609188e-07 - ArtUnc_31: 4.279381464375642e-09 - ArtUnc_32: 3.598241612160805e-08 - ArtUnc_33: 1.3046576260193356e-08 - ArtUnc_34: -1.2643133481194104e-08 - ArtUnc_35: -1.1902383989639533e-08 -- stat: 0.0005544 + ArtUnc_1: -1.50829244e-03 + ArtUnc_2: 1.05404397e-03 + ArtUnc_3: -8.41061800e-04 + ArtUnc_4: -3.21941825e-04 + ArtUnc_5: 1.53702913e-04 + ArtUnc_6: 2.26093223e-04 + ArtUnc_7: -1.49183576e-04 + ArtUnc_8: 1.71345254e-04 + ArtUnc_9: 1.75541313e-04 + ArtUnc_10: -3.41674867e-05 + ArtUnc_11: -5.78151549e-04 + ArtUnc_12: 6.79347358e-04 + ArtUnc_13: -7.04622281e-05 + ArtUnc_14: -3.61147925e-04 + ArtUnc_15: -5.70353059e-04 + ArtUnc_16: -1.53101047e-04 + ArtUnc_17: 1.72730989e-04 + ArtUnc_18: 2.86850902e-06 + ArtUnc_19: 3.81595427e-04 + ArtUnc_20: -1.05712765e-03 + ArtUnc_21: 7.64245474e-05 + ArtUnc_22: 1.44966746e-04 + ArtUnc_23: -6.08675434e-05 + ArtUnc_24: 1.55563246e-05 + ArtUnc_25: -2.09969277e-05 + ArtUnc_26: 3.21490971e-06 + ArtUnc_27: 3.06771901e-06 + ArtUnc_28: 9.45230350e-06 + ArtUnc_29: 2.08513053e-05 + ArtUnc_30: -8.63130743e-07 + ArtUnc_31: 4.27938146e-09 + ArtUnc_32: 3.59824161e-08 + ArtUnc_33: 1.30465763e-08 + ArtUnc_34: -1.26431335e-08 + ArtUnc_35: -1.19023840e-08 +- stat: 5.54400000e-04 sys: 0 - ArtUnc_1: -0.005461174962226479 - ArtUnc_2: 0.005748565496185742 - ArtUnc_3: -0.0003729208131545292 - ArtUnc_4: -0.0006257973416696964 - ArtUnc_5: 0.0008038983297755047 - ArtUnc_6: 0.0007683704301494825 - ArtUnc_7: 0.0008068281788827388 - ArtUnc_8: -0.00028212143948071634 - ArtUnc_9: -0.00039235104087289885 - ArtUnc_10: -0.0004795994457088284 - ArtUnc_11: -0.00035035048758463535 - ArtUnc_12: -0.0005188410981127812 - ArtUnc_13: -4.9156307969301375e-05 - ArtUnc_14: -0.0008507653632184144 - ArtUnc_15: 0.0011112032183755874 - ArtUnc_16: 0.00015288261517429032 - ArtUnc_17: -0.0007579008022995617 - ArtUnc_18: -0.00019754665540676686 - ArtUnc_19: 6.948334425485455e-05 - ArtUnc_20: -0.00010261475977256306 - ArtUnc_21: 4.131772189780342e-06 - ArtUnc_22: 1.439208968409544e-05 - ArtUnc_23: -4.485510604183754e-05 - ArtUnc_24: 8.20570232489912e-06 - ArtUnc_25: -3.0158693576923058e-06 - ArtUnc_26: -7.998679375814098e-06 - ArtUnc_27: -2.9225598998617655e-06 - ArtUnc_28: 1.4581396386961808e-05 - ArtUnc_29: -2.5672523318345235e-06 - ArtUnc_30: -1.9998616781534984e-07 - ArtUnc_31: -3.7744593303082315e-10 - ArtUnc_32: -2.6699010684138605e-08 - ArtUnc_33: -1.3161612157049804e-08 - ArtUnc_34: -6.047510779555058e-09 - ArtUnc_35: 8.24595093584843e-11 -- stat: 0.0006169 + ArtUnc_1: -5.46117496e-03 + ArtUnc_2: 5.74856550e-03 + ArtUnc_3: -3.72920813e-04 + ArtUnc_4: -6.25797342e-04 + ArtUnc_5: 8.03898330e-04 + ArtUnc_6: 7.68370430e-04 + ArtUnc_7: 8.06828179e-04 + ArtUnc_8: -2.82121439e-04 + ArtUnc_9: -3.92351041e-04 + ArtUnc_10: -4.79599446e-04 + ArtUnc_11: -3.50350488e-04 + ArtUnc_12: -5.18841098e-04 + ArtUnc_13: -4.91563080e-05 + ArtUnc_14: -8.50765363e-04 + ArtUnc_15: 1.11120322e-03 + ArtUnc_16: 1.52882615e-04 + ArtUnc_17: -7.57900802e-04 + ArtUnc_18: -1.97546655e-04 + ArtUnc_19: 6.94833443e-05 + ArtUnc_20: -1.02614760e-04 + ArtUnc_21: 4.13177219e-06 + ArtUnc_22: 1.43920897e-05 + ArtUnc_23: -4.48551060e-05 + ArtUnc_24: 8.20570232e-06 + ArtUnc_25: -3.01586936e-06 + ArtUnc_26: -7.99867938e-06 + ArtUnc_27: -2.92255990e-06 + ArtUnc_28: 1.45813964e-05 + ArtUnc_29: -2.56725233e-06 + ArtUnc_30: -1.99986168e-07 + ArtUnc_31: -3.77445933e-10 + ArtUnc_32: -2.66990107e-08 + ArtUnc_33: -1.31616122e-08 + ArtUnc_34: -6.04751078e-09 + ArtUnc_35: 8.24595094e-11 +- stat: 6.16900000e-04 sys: 0 - ArtUnc_1: -0.005584180660462284 - ArtUnc_2: 0.005402440155278472 - ArtUnc_3: -0.001258974418725048 - ArtUnc_4: 0.0009543269631010207 - ArtUnc_5: -0.0009347829806484367 - ArtUnc_6: 0.0010808578129639429 - ArtUnc_7: -0.00026953233568645905 - ArtUnc_8: -4.3114528809165864e-05 - ArtUnc_9: 0.0012745994213796575 - ArtUnc_10: 0.0010771008460107397 - ArtUnc_11: 0.0005410578044235526 - ArtUnc_12: 0.0005230113465621484 - ArtUnc_13: 0.0004236453426681162 - ArtUnc_14: 0.001023688224516619 - ArtUnc_15: 0.0006831570039725692 - ArtUnc_16: -3.864626095474324e-06 - ArtUnc_17: 0.0005058824716695936 - ArtUnc_18: -5.193335072750715e-05 - ArtUnc_19: 1.0415598074030173e-05 - ArtUnc_20: -5.694860967128944e-05 - ArtUnc_21: -2.25654213334138e-05 - ArtUnc_22: -8.731931011172603e-06 - ArtUnc_23: 2.122774038175537e-05 - ArtUnc_24: 2.0323594816090283e-07 - ArtUnc_25: 3.3926085361205654e-06 - ArtUnc_26: -6.673984327745456e-06 - ArtUnc_27: -2.2395161634752645e-06 - ArtUnc_28: 1.1967166955140999e-06 - ArtUnc_29: -8.169547487123018e-07 - ArtUnc_30: 1.9741483769623725e-07 - ArtUnc_31: -5.710292613105985e-10 - ArtUnc_32: -1.877176630517564e-08 - ArtUnc_33: -1.2406707852007199e-08 - ArtUnc_34: -1.3267141766188385e-08 - ArtUnc_35: 1.7030135011226528e-09 -- stat: 0.0005943 + ArtUnc_1: -5.58418066e-03 + ArtUnc_2: 5.40244016e-03 + ArtUnc_3: -1.25897442e-03 + ArtUnc_4: 9.54326963e-04 + ArtUnc_5: -9.34782981e-04 + ArtUnc_6: 1.08085781e-03 + ArtUnc_7: -2.69532336e-04 + ArtUnc_8: -4.31145288e-05 + ArtUnc_9: 1.27459942e-03 + ArtUnc_10: 1.07710085e-03 + ArtUnc_11: 5.41057804e-04 + ArtUnc_12: 5.23011347e-04 + ArtUnc_13: 4.23645343e-04 + ArtUnc_14: 1.02368822e-03 + ArtUnc_15: 6.83157004e-04 + ArtUnc_16: -3.86462610e-06 + ArtUnc_17: 5.05882472e-04 + ArtUnc_18: -5.19333507e-05 + ArtUnc_19: 1.04155981e-05 + ArtUnc_20: -5.69486097e-05 + ArtUnc_21: -2.25654213e-05 + ArtUnc_22: -8.73193101e-06 + ArtUnc_23: 2.12277404e-05 + ArtUnc_24: 2.03235948e-07 + ArtUnc_25: 3.39260854e-06 + ArtUnc_26: -6.67398433e-06 + ArtUnc_27: -2.23951616e-06 + ArtUnc_28: 1.19671670e-06 + ArtUnc_29: -8.16954749e-07 + ArtUnc_30: 1.97414838e-07 + ArtUnc_31: -5.71029261e-10 + ArtUnc_32: -1.87717663e-08 + ArtUnc_33: -1.24067079e-08 + ArtUnc_34: -1.32671418e-08 + ArtUnc_35: 1.70301350e-09 +- stat: 5.94300000e-04 sys: 0 - ArtUnc_1: -0.004985313942739812 - ArtUnc_2: 0.0049597047504770534 - ArtUnc_3: 0.00023128417902484386 - ArtUnc_4: -0.0013216744438782615 - ArtUnc_5: 0.0003098978840836202 - ArtUnc_6: 0.0007189913565140543 - ArtUnc_7: -0.00087686151792383 - ArtUnc_8: 8.865564359477296e-05 - ArtUnc_9: -0.0015045032391615878 - ArtUnc_10: -0.0012516274456003053 - ArtUnc_11: 2.0410240743613774e-05 - ArtUnc_12: -0.000336062354907094 - ArtUnc_13: 0.0005154235478606279 - ArtUnc_14: -0.00021263172679370092 - ArtUnc_15: -0.00055091745321196 - ArtUnc_16: -0.00021240040087754875 - ArtUnc_17: 0.000870736112869638 - ArtUnc_18: 0.00013462836129840108 - ArtUnc_19: -9.07518468111445e-05 - ArtUnc_20: 0.00018343777462476304 - ArtUnc_21: -3.0137496762994295e-05 - ArtUnc_22: -3.880497219144206e-05 - ArtUnc_23: 6.381375210424444e-05 - ArtUnc_24: -8.73989211829277e-06 - ArtUnc_25: 7.99083959621378e-06 - ArtUnc_26: 3.212220816805794e-06 - ArtUnc_27: -4.227718755137716e-07 - ArtUnc_28: -1.1987713927197136e-05 - ArtUnc_29: -1.0075691550727596e-06 - ArtUnc_30: 3.536641633011308e-07 - ArtUnc_31: -6.489649844505661e-10 - ArtUnc_32: -9.117374699950133e-10 - ArtUnc_33: -1.1217290155513231e-10 - ArtUnc_34: -6.750416178244788e-09 - ArtUnc_35: 5.048268591181173e-09 -- stat: 0.0005632 + ArtUnc_1: -4.98531394e-03 + ArtUnc_2: 4.95970475e-03 + ArtUnc_3: 2.31284179e-04 + ArtUnc_4: -1.32167444e-03 + ArtUnc_5: 3.09897884e-04 + ArtUnc_6: 7.18991357e-04 + ArtUnc_7: -8.76861518e-04 + ArtUnc_8: 8.86556436e-05 + ArtUnc_9: -1.50450324e-03 + ArtUnc_10: -1.25162745e-03 + ArtUnc_11: 2.04102407e-05 + ArtUnc_12: -3.36062355e-04 + ArtUnc_13: 5.15423548e-04 + ArtUnc_14: -2.12631727e-04 + ArtUnc_15: -5.50917453e-04 + ArtUnc_16: -2.12400401e-04 + ArtUnc_17: 8.70736113e-04 + ArtUnc_18: 1.34628361e-04 + ArtUnc_19: -9.07518468e-05 + ArtUnc_20: 1.83437775e-04 + ArtUnc_21: -3.01374968e-05 + ArtUnc_22: -3.88049722e-05 + ArtUnc_23: 6.38137521e-05 + ArtUnc_24: -8.73989212e-06 + ArtUnc_25: 7.99083960e-06 + ArtUnc_26: 3.21222082e-06 + ArtUnc_27: -4.22771876e-07 + ArtUnc_28: -1.19877139e-05 + ArtUnc_29: -1.00756916e-06 + ArtUnc_30: 3.53664163e-07 + ArtUnc_31: -6.48964984e-10 + ArtUnc_32: -9.11737470e-10 + ArtUnc_33: -1.12172902e-10 + ArtUnc_34: -6.75041618e-09 + ArtUnc_35: 5.04826859e-09 +- stat: 5.63200000e-04 sys: 0 - ArtUnc_1: -0.004332839151588974 - ArtUnc_2: 0.003992192724908909 - ArtUnc_3: -0.0012675197157264756 - ArtUnc_4: 0.0008946433210035379 - ArtUnc_5: 0.0008561141527584299 - ArtUnc_6: -1.988821919635808e-05 - ArtUnc_7: 0.00010140423432533783 - ArtUnc_8: 0.0008671395200652842 - ArtUnc_9: 0.0012107281106401066 - ArtUnc_10: 0.0011380896085567817 - ArtUnc_11: -0.0007003606408359427 - ArtUnc_12: -0.0002282696029554078 - ArtUnc_13: -0.0004449962983768568 - ArtUnc_14: -0.000688687656951619 - ArtUnc_15: -0.0011497534269066083 - ArtUnc_16: -7.124869218595653e-05 - ArtUnc_17: -0.00023784204113435855 - ArtUnc_18: 0.00014956468435920297 - ArtUnc_19: -0.00013922413679857978 - ArtUnc_20: 0.00034765217317597936 - ArtUnc_21: -1.374100708131603e-05 - ArtUnc_22: -5.3162822314439764e-05 - ArtUnc_23: 2.8684399871733878e-05 - ArtUnc_24: 6.546936780151014e-06 - ArtUnc_25: 5.6458746018926475e-06 - ArtUnc_26: 7.136447860258025e-06 - ArtUnc_27: 2.7006581379592063e-06 - ArtUnc_28: -1.2805916649351169e-05 - ArtUnc_29: -2.35239782834333e-06 - ArtUnc_30: -8.948057905245436e-08 - ArtUnc_31: 9.599883562681391e-10 - ArtUnc_32: 1.4085469848921204e-08 - ArtUnc_33: 1.9680928167866433e-09 - ArtUnc_34: -8.809048476288597e-09 - ArtUnc_35: 2.756175127929613e-09 + ArtUnc_1: -4.33283915e-03 + ArtUnc_2: 3.99219272e-03 + ArtUnc_3: -1.26751972e-03 + ArtUnc_4: 8.94643321e-04 + ArtUnc_5: 8.56114153e-04 + ArtUnc_6: -1.98882192e-05 + ArtUnc_7: 1.01404234e-04 + ArtUnc_8: 8.67139520e-04 + ArtUnc_9: 1.21072811e-03 + ArtUnc_10: 1.13808961e-03 + ArtUnc_11: -7.00360641e-04 + ArtUnc_12: -2.28269603e-04 + ArtUnc_13: -4.44996298e-04 + ArtUnc_14: -6.88687657e-04 + ArtUnc_15: -1.14975343e-03 + ArtUnc_16: -7.12486922e-05 + ArtUnc_17: -2.37842041e-04 + ArtUnc_18: 1.49564684e-04 + ArtUnc_19: -1.39224137e-04 + ArtUnc_20: 3.47652173e-04 + ArtUnc_21: -1.37410071e-05 + ArtUnc_22: -5.31628223e-05 + ArtUnc_23: 2.86843999e-05 + ArtUnc_24: 6.54693678e-06 + ArtUnc_25: 5.64587460e-06 + ArtUnc_26: 7.13644786e-06 + ArtUnc_27: 2.70065814e-06 + ArtUnc_28: -1.28059166e-05 + ArtUnc_29: -2.35239783e-06 + ArtUnc_30: -8.94805791e-08 + ArtUnc_31: 9.59988356e-10 + ArtUnc_32: 1.40854698e-08 + ArtUnc_33: 1.96809282e-09 + ArtUnc_34: -8.80904848e-09 + ArtUnc_35: 2.75617513e-09 - stat: 0.00052 sys: 0 - ArtUnc_1: -0.0035068504800465135 - ArtUnc_2: 0.0027825634576785795 - ArtUnc_3: 7.382424199379394e-05 - ArtUnc_4: -0.0007468937244756893 - ArtUnc_5: -0.001141328394483 - ArtUnc_6: 0.00021972735549396157 - ArtUnc_7: 0.0007243879919114877 - ArtUnc_8: 0.0007392997939456392 - ArtUnc_9: -0.0011131062391104905 - ArtUnc_10: -0.0005374697808283416 - ArtUnc_11: 0.0007492509106060543 - ArtUnc_12: 0.0007825967752191787 - ArtUnc_13: -0.0009741451699998323 - ArtUnc_14: 0.001153878369651241 - ArtUnc_15: -0.0005957606105950838 - ArtUnc_16: 9.157563531657248e-05 - ArtUnc_17: -0.0006967166298109112 - ArtUnc_18: 4.089998055343888e-05 - ArtUnc_19: 3.5696675822640437e-06 - ArtUnc_20: 4.7113429173770843e-07 - ArtUnc_21: 2.310636698429762e-06 - ArtUnc_22: -4.7369901714044995e-06 - ArtUnc_23: -2.9471224703874675e-05 - ArtUnc_24: 1.878697942352059e-05 - ArtUnc_25: -2.446341116867008e-06 - ArtUnc_26: 4.059436920832113e-06 - ArtUnc_27: 3.713755272759486e-06 - ArtUnc_28: -2.391677119664719e-06 - ArtUnc_29: 3.366209425680019e-06 - ArtUnc_30: -2.485688705822956e-07 - ArtUnc_31: 2.3393661255664917e-09 - ArtUnc_32: 2.4462093664879866e-08 - ArtUnc_33: 3.7843580337649445e-09 - ArtUnc_34: 1.5507783666780862e-10 - ArtUnc_35: -6.571474982618497e-09 -- stat: 0.0001638 + ArtUnc_1: -3.50685048e-03 + ArtUnc_2: 2.78256346e-03 + ArtUnc_3: 7.38242420e-05 + ArtUnc_4: -7.46893724e-04 + ArtUnc_5: -1.14132839e-03 + ArtUnc_6: 2.19727355e-04 + ArtUnc_7: 7.24387992e-04 + ArtUnc_8: 7.39299794e-04 + ArtUnc_9: -1.11310624e-03 + ArtUnc_10: -5.37469781e-04 + ArtUnc_11: 7.49250911e-04 + ArtUnc_12: 7.82596775e-04 + ArtUnc_13: -9.74145170e-04 + ArtUnc_14: 1.15387837e-03 + ArtUnc_15: -5.95760611e-04 + ArtUnc_16: 9.15756353e-05 + ArtUnc_17: -6.96716630e-04 + ArtUnc_18: 4.08999806e-05 + ArtUnc_19: 3.56966758e-06 + ArtUnc_20: 4.71134292e-07 + ArtUnc_21: 2.31063670e-06 + ArtUnc_22: -4.73699017e-06 + ArtUnc_23: -2.94712247e-05 + ArtUnc_24: 1.87869794e-05 + ArtUnc_25: -2.44634112e-06 + ArtUnc_26: 4.05943692e-06 + ArtUnc_27: 3.71375527e-06 + ArtUnc_28: -2.39167712e-06 + ArtUnc_29: 3.36620943e-06 + ArtUnc_30: -2.48568871e-07 + ArtUnc_31: 2.33936613e-09 + ArtUnc_32: 2.44620937e-08 + ArtUnc_33: 3.78435803e-09 + ArtUnc_34: 1.55077837e-10 + ArtUnc_35: -6.57147498e-09 +- stat: 1.63800000e-04 sys: 0 - ArtUnc_1: -0.0015082924410271632 - ArtUnc_2: 0.0010540439672786586 - ArtUnc_3: -0.0008410617995951913 - ArtUnc_4: -0.0003219418246101638 - ArtUnc_5: 0.00015370291282924435 - ArtUnc_6: 0.00022609322276470465 - ArtUnc_7: -0.00014918357569275413 - ArtUnc_8: 0.00017134525397302197 - ArtUnc_9: 0.00017554131325225286 - ArtUnc_10: -3.4167486727564726e-05 - ArtUnc_11: -0.0005781515485916376 - ArtUnc_12: 0.0006793473579443988 - ArtUnc_13: -7.046222813095876e-05 - ArtUnc_14: -0.0003611479246399664 - ArtUnc_15: -0.0005703530587892188 - ArtUnc_16: -0.00015310104659223503 - ArtUnc_17: 0.00017273098921442205 - ArtUnc_18: 2.8685090245973796e-06 - ArtUnc_19: 0.00038159542672217 - ArtUnc_20: -0.00105712764575295 - ArtUnc_21: 7.642454742318617e-05 - ArtUnc_22: 0.00014496674560832544 - ArtUnc_23: -6.0867543365224524e-05 - ArtUnc_24: 1.555632457213227e-05 - ArtUnc_25: -2.099692769714365e-05 - ArtUnc_26: 3.2149097067067107e-06 - ArtUnc_27: 3.0677190065543445e-06 - ArtUnc_28: 9.45230350113232e-06 - ArtUnc_29: 2.0851305255794502e-05 - ArtUnc_30: -8.631307430609188e-07 - ArtUnc_31: 4.279381464375642e-09 - ArtUnc_32: 3.598241612160805e-08 - ArtUnc_33: 1.3046576260193356e-08 - ArtUnc_34: -1.2643133481194104e-08 - ArtUnc_35: -1.1902383989639533e-08 + ArtUnc_1: -1.50829244e-03 + ArtUnc_2: 1.05404397e-03 + ArtUnc_3: -8.41061800e-04 + ArtUnc_4: -3.21941825e-04 + ArtUnc_5: 1.53702913e-04 + ArtUnc_6: 2.26093223e-04 + ArtUnc_7: -1.49183576e-04 + ArtUnc_8: 1.71345254e-04 + ArtUnc_9: 1.75541313e-04 + ArtUnc_10: -3.41674867e-05 + ArtUnc_11: -5.78151549e-04 + ArtUnc_12: 6.79347358e-04 + ArtUnc_13: -7.04622281e-05 + ArtUnc_14: -3.61147925e-04 + ArtUnc_15: -5.70353059e-04 + ArtUnc_16: -1.53101047e-04 + ArtUnc_17: 1.72730989e-04 + ArtUnc_18: 2.86850902e-06 + ArtUnc_19: 3.81595427e-04 + ArtUnc_20: -1.05712765e-03 + ArtUnc_21: 7.64245474e-05 + ArtUnc_22: 1.44966746e-04 + ArtUnc_23: -6.08675434e-05 + ArtUnc_24: 1.55563246e-05 + ArtUnc_25: -2.09969277e-05 + ArtUnc_26: 3.21490971e-06 + ArtUnc_27: 3.06771901e-06 + ArtUnc_28: 9.45230350e-06 + ArtUnc_29: 2.08513053e-05 + ArtUnc_30: -8.63130743e-07 + ArtUnc_31: 4.27938146e-09 + ArtUnc_32: 3.59824161e-08 + ArtUnc_33: 1.30465763e-08 + ArtUnc_34: -1.26431335e-08 + ArtUnc_35: -1.19023840e-08 - stat: 2.5e-05 sys: 0 - ArtUnc_1: -0.005461174962226479 - ArtUnc_2: 0.005748565496185742 - ArtUnc_3: -0.0003729208131545292 - ArtUnc_4: -0.0006257973416696964 - ArtUnc_5: 0.0008038983297755047 - ArtUnc_6: 0.0007683704301494825 - ArtUnc_7: 0.0008068281788827388 - ArtUnc_8: -0.00028212143948071634 - ArtUnc_9: -0.00039235104087289885 - ArtUnc_10: -0.0004795994457088284 - ArtUnc_11: -0.00035035048758463535 - ArtUnc_12: -0.0005188410981127812 - ArtUnc_13: -4.9156307969301375e-05 - ArtUnc_14: -0.0008507653632184144 - ArtUnc_15: 0.0011112032183755874 - ArtUnc_16: 0.00015288261517429032 - ArtUnc_17: -0.0007579008022995617 - ArtUnc_18: -0.00019754665540676686 - ArtUnc_19: 6.948334425485455e-05 - ArtUnc_20: -0.00010261475977256306 - ArtUnc_21: 4.131772189780342e-06 - ArtUnc_22: 1.439208968409544e-05 - ArtUnc_23: -4.485510604183754e-05 - ArtUnc_24: 8.20570232489912e-06 - ArtUnc_25: -3.0158693576923058e-06 - ArtUnc_26: -7.998679375814098e-06 - ArtUnc_27: -2.9225598998617655e-06 - ArtUnc_28: 1.4581396386961808e-05 - ArtUnc_29: -2.5672523318345235e-06 - ArtUnc_30: -1.9998616781534984e-07 - ArtUnc_31: -3.7744593303082315e-10 - ArtUnc_32: -2.6699010684138605e-08 - ArtUnc_33: -1.3161612157049804e-08 - ArtUnc_34: -6.047510779555058e-09 - ArtUnc_35: 8.24595093584843e-11 -- stat: 2.905e-05 + ArtUnc_1: -5.46117496e-03 + ArtUnc_2: 5.74856550e-03 + ArtUnc_3: -3.72920813e-04 + ArtUnc_4: -6.25797342e-04 + ArtUnc_5: 8.03898330e-04 + ArtUnc_6: 7.68370430e-04 + ArtUnc_7: 8.06828179e-04 + ArtUnc_8: -2.82121439e-04 + ArtUnc_9: -3.92351041e-04 + ArtUnc_10: -4.79599446e-04 + ArtUnc_11: -3.50350488e-04 + ArtUnc_12: -5.18841098e-04 + ArtUnc_13: -4.91563080e-05 + ArtUnc_14: -8.50765363e-04 + ArtUnc_15: 1.11120322e-03 + ArtUnc_16: 1.52882615e-04 + ArtUnc_17: -7.57900802e-04 + ArtUnc_18: -1.97546655e-04 + ArtUnc_19: 6.94833443e-05 + ArtUnc_20: -1.02614760e-04 + ArtUnc_21: 4.13177219e-06 + ArtUnc_22: 1.43920897e-05 + ArtUnc_23: -4.48551060e-05 + ArtUnc_24: 8.20570232e-06 + ArtUnc_25: -3.01586936e-06 + ArtUnc_26: -7.99867938e-06 + ArtUnc_27: -2.92255990e-06 + ArtUnc_28: 1.45813964e-05 + ArtUnc_29: -2.56725233e-06 + ArtUnc_30: -1.99986168e-07 + ArtUnc_31: -3.77445933e-10 + ArtUnc_32: -2.66990107e-08 + ArtUnc_33: -1.31616122e-08 + ArtUnc_34: -6.04751078e-09 + ArtUnc_35: 8.24595094e-11 +- stat: 2.90500000e-05 sys: 0 - ArtUnc_1: -0.005584180660462284 - ArtUnc_2: 0.005402440155278472 - ArtUnc_3: -0.001258974418725048 - ArtUnc_4: 0.0009543269631010207 - ArtUnc_5: -0.0009347829806484367 - ArtUnc_6: 0.0010808578129639429 - ArtUnc_7: -0.00026953233568645905 - ArtUnc_8: -4.3114528809165864e-05 - ArtUnc_9: 0.0012745994213796575 - ArtUnc_10: 0.0010771008460107397 - ArtUnc_11: 0.0005410578044235526 - ArtUnc_12: 0.0005230113465621484 - ArtUnc_13: 0.0004236453426681162 - ArtUnc_14: 0.001023688224516619 - ArtUnc_15: 0.0006831570039725692 - ArtUnc_16: -3.864626095474324e-06 - ArtUnc_17: 0.0005058824716695936 - ArtUnc_18: -5.193335072750715e-05 - ArtUnc_19: 1.0415598074030173e-05 - ArtUnc_20: -5.694860967128944e-05 - ArtUnc_21: -2.25654213334138e-05 - ArtUnc_22: -8.731931011172603e-06 - ArtUnc_23: 2.122774038175537e-05 - ArtUnc_24: 2.0323594816090283e-07 - ArtUnc_25: 3.3926085361205654e-06 - ArtUnc_26: -6.673984327745456e-06 - ArtUnc_27: -2.2395161634752645e-06 - ArtUnc_28: 1.1967166955140999e-06 - ArtUnc_29: -8.169547487123018e-07 - ArtUnc_30: 1.9741483769623725e-07 - ArtUnc_31: -5.710292613105985e-10 - ArtUnc_32: -1.877176630517564e-08 - ArtUnc_33: -1.2406707852007199e-08 - ArtUnc_34: -1.3267141766188385e-08 - ArtUnc_35: 1.7030135011226528e-09 -- stat: 2.839e-05 + ArtUnc_1: -5.58418066e-03 + ArtUnc_2: 5.40244016e-03 + ArtUnc_3: -1.25897442e-03 + ArtUnc_4: 9.54326963e-04 + ArtUnc_5: -9.34782981e-04 + ArtUnc_6: 1.08085781e-03 + ArtUnc_7: -2.69532336e-04 + ArtUnc_8: -4.31145288e-05 + ArtUnc_9: 1.27459942e-03 + ArtUnc_10: 1.07710085e-03 + ArtUnc_11: 5.41057804e-04 + ArtUnc_12: 5.23011347e-04 + ArtUnc_13: 4.23645343e-04 + ArtUnc_14: 1.02368822e-03 + ArtUnc_15: 6.83157004e-04 + ArtUnc_16: -3.86462610e-06 + ArtUnc_17: 5.05882472e-04 + ArtUnc_18: -5.19333507e-05 + ArtUnc_19: 1.04155981e-05 + ArtUnc_20: -5.69486097e-05 + ArtUnc_21: -2.25654213e-05 + ArtUnc_22: -8.73193101e-06 + ArtUnc_23: 2.12277404e-05 + ArtUnc_24: 2.03235948e-07 + ArtUnc_25: 3.39260854e-06 + ArtUnc_26: -6.67398433e-06 + ArtUnc_27: -2.23951616e-06 + ArtUnc_28: 1.19671670e-06 + ArtUnc_29: -8.16954749e-07 + ArtUnc_30: 1.97414838e-07 + ArtUnc_31: -5.71029261e-10 + ArtUnc_32: -1.87717663e-08 + ArtUnc_33: -1.24067079e-08 + ArtUnc_34: -1.32671418e-08 + ArtUnc_35: 1.70301350e-09 +- stat: 2.83900000e-05 sys: 0 - ArtUnc_1: -0.004985313942739812 - ArtUnc_2: 0.0049597047504770534 - ArtUnc_3: 0.00023128417902484386 - ArtUnc_4: -0.0013216744438782615 - ArtUnc_5: 0.0003098978840836202 - ArtUnc_6: 0.0007189913565140543 - ArtUnc_7: -0.00087686151792383 - ArtUnc_8: 8.865564359477296e-05 - ArtUnc_9: -0.0015045032391615878 - ArtUnc_10: -0.0012516274456003053 - ArtUnc_11: 2.0410240743613774e-05 - ArtUnc_12: -0.000336062354907094 - ArtUnc_13: 0.0005154235478606279 - ArtUnc_14: -0.00021263172679370092 - ArtUnc_15: -0.00055091745321196 - ArtUnc_16: -0.00021240040087754875 - ArtUnc_17: 0.000870736112869638 - ArtUnc_18: 0.00013462836129840108 - ArtUnc_19: -9.07518468111445e-05 - ArtUnc_20: 0.00018343777462476304 - ArtUnc_21: -3.0137496762994295e-05 - ArtUnc_22: -3.880497219144206e-05 - ArtUnc_23: 6.381375210424444e-05 - ArtUnc_24: -8.73989211829277e-06 - ArtUnc_25: 7.99083959621378e-06 - ArtUnc_26: 3.212220816805794e-06 - ArtUnc_27: -4.227718755137716e-07 - ArtUnc_28: -1.1987713927197136e-05 - ArtUnc_29: -1.0075691550727596e-06 - ArtUnc_30: 3.536641633011308e-07 - ArtUnc_31: -6.489649844505661e-10 - ArtUnc_32: -9.117374699950133e-10 - ArtUnc_33: -1.1217290155513231e-10 - ArtUnc_34: -6.750416178244788e-09 - ArtUnc_35: 5.048268591181173e-09 -- stat: 2.608e-05 + ArtUnc_1: -4.98531394e-03 + ArtUnc_2: 4.95970475e-03 + ArtUnc_3: 2.31284179e-04 + ArtUnc_4: -1.32167444e-03 + ArtUnc_5: 3.09897884e-04 + ArtUnc_6: 7.18991357e-04 + ArtUnc_7: -8.76861518e-04 + ArtUnc_8: 8.86556436e-05 + ArtUnc_9: -1.50450324e-03 + ArtUnc_10: -1.25162745e-03 + ArtUnc_11: 2.04102407e-05 + ArtUnc_12: -3.36062355e-04 + ArtUnc_13: 5.15423548e-04 + ArtUnc_14: -2.12631727e-04 + ArtUnc_15: -5.50917453e-04 + ArtUnc_16: -2.12400401e-04 + ArtUnc_17: 8.70736113e-04 + ArtUnc_18: 1.34628361e-04 + ArtUnc_19: -9.07518468e-05 + ArtUnc_20: 1.83437775e-04 + ArtUnc_21: -3.01374968e-05 + ArtUnc_22: -3.88049722e-05 + ArtUnc_23: 6.38137521e-05 + ArtUnc_24: -8.73989212e-06 + ArtUnc_25: 7.99083960e-06 + ArtUnc_26: 3.21222082e-06 + ArtUnc_27: -4.22771876e-07 + ArtUnc_28: -1.19877139e-05 + ArtUnc_29: -1.00756916e-06 + ArtUnc_30: 3.53664163e-07 + ArtUnc_31: -6.48964984e-10 + ArtUnc_32: -9.11737470e-10 + ArtUnc_33: -1.12172902e-10 + ArtUnc_34: -6.75041618e-09 + ArtUnc_35: 5.04826859e-09 +- stat: 2.60800000e-05 sys: 0 - ArtUnc_1: -0.004332839151588974 - ArtUnc_2: 0.003992192724908909 - ArtUnc_3: -0.0012675197157264756 - ArtUnc_4: 0.0008946433210035379 - ArtUnc_5: 0.0008561141527584299 - ArtUnc_6: -1.988821919635808e-05 - ArtUnc_7: 0.00010140423432533783 - ArtUnc_8: 0.0008671395200652842 - ArtUnc_9: 0.0012107281106401066 - ArtUnc_10: 0.0011380896085567817 - ArtUnc_11: -0.0007003606408359427 - ArtUnc_12: -0.0002282696029554078 - ArtUnc_13: -0.0004449962983768568 - ArtUnc_14: -0.000688687656951619 - ArtUnc_15: -0.0011497534269066083 - ArtUnc_16: -7.124869218595653e-05 - ArtUnc_17: -0.00023784204113435855 - ArtUnc_18: 0.00014956468435920297 - ArtUnc_19: -0.00013922413679857978 - ArtUnc_20: 0.00034765217317597936 - ArtUnc_21: -1.374100708131603e-05 - ArtUnc_22: -5.3162822314439764e-05 - ArtUnc_23: 2.8684399871733878e-05 - ArtUnc_24: 6.546936780151014e-06 - ArtUnc_25: 5.6458746018926475e-06 - ArtUnc_26: 7.136447860258025e-06 - ArtUnc_27: 2.7006581379592063e-06 - ArtUnc_28: -1.2805916649351169e-05 - ArtUnc_29: -2.35239782834333e-06 - ArtUnc_30: -8.948057905245436e-08 - ArtUnc_31: 9.599883562681391e-10 - ArtUnc_32: 1.4085469848921204e-08 - ArtUnc_33: 1.9680928167866433e-09 - ArtUnc_34: -8.809048476288597e-09 - ArtUnc_35: 2.756175127929613e-09 -- stat: 7.777e-06 + ArtUnc_1: -4.33283915e-03 + ArtUnc_2: 3.99219272e-03 + ArtUnc_3: -1.26751972e-03 + ArtUnc_4: 8.94643321e-04 + ArtUnc_5: 8.56114153e-04 + ArtUnc_6: -1.98882192e-05 + ArtUnc_7: 1.01404234e-04 + ArtUnc_8: 8.67139520e-04 + ArtUnc_9: 1.21072811e-03 + ArtUnc_10: 1.13808961e-03 + ArtUnc_11: -7.00360641e-04 + ArtUnc_12: -2.28269603e-04 + ArtUnc_13: -4.44996298e-04 + ArtUnc_14: -6.88687657e-04 + ArtUnc_15: -1.14975343e-03 + ArtUnc_16: -7.12486922e-05 + ArtUnc_17: -2.37842041e-04 + ArtUnc_18: 1.49564684e-04 + ArtUnc_19: -1.39224137e-04 + ArtUnc_20: 3.47652173e-04 + ArtUnc_21: -1.37410071e-05 + ArtUnc_22: -5.31628223e-05 + ArtUnc_23: 2.86843999e-05 + ArtUnc_24: 6.54693678e-06 + ArtUnc_25: 5.64587460e-06 + ArtUnc_26: 7.13644786e-06 + ArtUnc_27: 2.70065814e-06 + ArtUnc_28: -1.28059166e-05 + ArtUnc_29: -2.35239783e-06 + ArtUnc_30: -8.94805791e-08 + ArtUnc_31: 9.59988356e-10 + ArtUnc_32: 1.40854698e-08 + ArtUnc_33: 1.96809282e-09 + ArtUnc_34: -8.80904848e-09 + ArtUnc_35: 2.75617513e-09 +- stat: 7.77700000e-06 sys: 0 - ArtUnc_1: -0.0035068504800465135 - ArtUnc_2: 0.0027825634576785795 - ArtUnc_3: 7.382424199379394e-05 - ArtUnc_4: -0.0007468937244756893 - ArtUnc_5: -0.001141328394483 - ArtUnc_6: 0.00021972735549396157 - ArtUnc_7: 0.0007243879919114877 - ArtUnc_8: 0.0007392997939456392 - ArtUnc_9: -0.0011131062391104905 - ArtUnc_10: -0.0005374697808283416 - ArtUnc_11: 0.0007492509106060543 - ArtUnc_12: 0.0007825967752191787 - ArtUnc_13: -0.0009741451699998323 - ArtUnc_14: 0.001153878369651241 - ArtUnc_15: -0.0005957606105950838 - ArtUnc_16: 9.157563531657248e-05 - ArtUnc_17: -0.0006967166298109112 - ArtUnc_18: 4.089998055343888e-05 - ArtUnc_19: 3.5696675822640437e-06 - ArtUnc_20: 4.7113429173770843e-07 - ArtUnc_21: 2.310636698429762e-06 - ArtUnc_22: -4.7369901714044995e-06 - ArtUnc_23: -2.9471224703874675e-05 - ArtUnc_24: 1.878697942352059e-05 - ArtUnc_25: -2.446341116867008e-06 - ArtUnc_26: 4.059436920832113e-06 - ArtUnc_27: 3.713755272759486e-06 - ArtUnc_28: -2.391677119664719e-06 - ArtUnc_29: 3.366209425680019e-06 - ArtUnc_30: -2.485688705822956e-07 - ArtUnc_31: 2.3393661255664917e-09 - ArtUnc_32: 2.4462093664879866e-08 - ArtUnc_33: 3.7843580337649445e-09 - ArtUnc_34: 1.5507783666780862e-10 - ArtUnc_35: -6.571474982618497e-09 + ArtUnc_1: -3.50685048e-03 + ArtUnc_2: 2.78256346e-03 + ArtUnc_3: 7.38242420e-05 + ArtUnc_4: -7.46893724e-04 + ArtUnc_5: -1.14132839e-03 + ArtUnc_6: 2.19727355e-04 + ArtUnc_7: 7.24387992e-04 + ArtUnc_8: 7.39299794e-04 + ArtUnc_9: -1.11310624e-03 + ArtUnc_10: -5.37469781e-04 + ArtUnc_11: 7.49250911e-04 + ArtUnc_12: 7.82596775e-04 + ArtUnc_13: -9.74145170e-04 + ArtUnc_14: 1.15387837e-03 + ArtUnc_15: -5.95760611e-04 + ArtUnc_16: 9.15756353e-05 + ArtUnc_17: -6.96716630e-04 + ArtUnc_18: 4.08999806e-05 + ArtUnc_19: 3.56966758e-06 + ArtUnc_20: 4.71134292e-07 + ArtUnc_21: 2.31063670e-06 + ArtUnc_22: -4.73699017e-06 + ArtUnc_23: -2.94712247e-05 + ArtUnc_24: 1.87869794e-05 + ArtUnc_25: -2.44634112e-06 + ArtUnc_26: 4.05943692e-06 + ArtUnc_27: 3.71375527e-06 + ArtUnc_28: -2.39167712e-06 + ArtUnc_29: 3.36620943e-06 + ArtUnc_30: -2.48568871e-07 + ArtUnc_31: 2.33936613e-09 + ArtUnc_32: 2.44620937e-08 + ArtUnc_33: 3.78435803e-09 + ArtUnc_34: 1.55077837e-10 + ArtUnc_35: -6.57147498e-09 diff --git a/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_LJ_DIF/uncertainties_d2Sig_dyttBar_dmttBar_norm.yaml b/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_LJ_DIF/uncertainties_d2Sig_dyttBar_dmttBar_norm.yaml index 9671a7896c..98708a2afc 100644 --- a/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_LJ_DIF/uncertainties_d2Sig_dyttBar_dmttBar_norm.yaml +++ b/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_LJ_DIF/uncertainties_d2Sig_dyttBar_dmttBar_norm.yaml @@ -148,1298 +148,1298 @@ definitions: treatment: ADD type: CORR bins: -- stat: 9.207e-06 +- stat: 9.20700000e-06 sys: 0 - ArtUnc_1: -2.3865909464509523e-05 - ArtUnc_2: 1.0276550218167456e-05 - ArtUnc_3: 1.2965404174561456e-07 - ArtUnc_4: 5.294198085820107e-06 - ArtUnc_5: -4.212013778387726e-06 - ArtUnc_6: 3.530577078658824e-06 - ArtUnc_7: -2.7198176455510675e-06 - ArtUnc_8: 1.603317384865069e-06 - ArtUnc_9: 2.406956719830953e-06 - ArtUnc_10: -1.3052566990771772e-06 - ArtUnc_11: 2.862201827024496e-06 - ArtUnc_12: 6.484024195075214e-07 - ArtUnc_13: 5.365058397500084e-08 - ArtUnc_14: 5.125745112974652e-06 - ArtUnc_15: 3.731908006361614e-06 - ArtUnc_16: 3.3131294703683616e-06 - ArtUnc_17: 1.2339105330195842e-06 - ArtUnc_18: -3.9289236997279006e-07 - ArtUnc_19: -1.4851785516249325e-07 - ArtUnc_20: 7.445952504437471e-09 - ArtUnc_21: -4.482909840949499e-08 - ArtUnc_22: -2.1131805386801755e-07 - ArtUnc_23: -1.9120789200044242e-07 - ArtUnc_24: 1.5676510241775918e-08 - ArtUnc_25: 6.435308086240898e-08 - ArtUnc_26: 2.631757605571115e-08 - ArtUnc_27: -5.876226473020582e-08 - ArtUnc_28: -3.5657511521591655e-09 - ArtUnc_29: 9.622949254291427e-08 - ArtUnc_30: 3.945590614545117e-08 + ArtUnc_1: -2.38659095e-05 + ArtUnc_2: 1.02765502e-05 + ArtUnc_3: 1.29654042e-07 + ArtUnc_4: 5.29419809e-06 + ArtUnc_5: -4.21201378e-06 + ArtUnc_6: 3.53057708e-06 + ArtUnc_7: -2.71981765e-06 + ArtUnc_8: 1.60331738e-06 + ArtUnc_9: 2.40695672e-06 + ArtUnc_10: -1.30525670e-06 + ArtUnc_11: 2.86220183e-06 + ArtUnc_12: 6.48402420e-07 + ArtUnc_13: 5.36505840e-08 + ArtUnc_14: 5.12574511e-06 + ArtUnc_15: 3.73190801e-06 + ArtUnc_16: 3.31312947e-06 + ArtUnc_17: 1.23391053e-06 + ArtUnc_18: -3.92892370e-07 + ArtUnc_19: -1.48517855e-07 + ArtUnc_20: 7.44595250e-09 + ArtUnc_21: -4.48290984e-08 + ArtUnc_22: -2.11318054e-07 + ArtUnc_23: -1.91207892e-07 + ArtUnc_24: 1.56765102e-08 + ArtUnc_25: 6.43530809e-08 + ArtUnc_26: 2.63175761e-08 + ArtUnc_27: -5.87622647e-08 + ArtUnc_28: -3.56575115e-09 + ArtUnc_29: 9.62294925e-08 + ArtUnc_30: 3.94559061e-08 ArtUnc_31: 0.0 - ArtUnc_32: -1.2761230945770884e-09 - ArtUnc_33: -2.3429419028239327e-11 - ArtUnc_34: -1.6278479224313607e-10 - ArtUnc_35: 9.055622950571007e-11 -- stat: 1.262e-05 + ArtUnc_32: -1.27612309e-09 + ArtUnc_33: -2.34294190e-11 + ArtUnc_34: -1.62784792e-10 + ArtUnc_35: 9.05562295e-11 +- stat: 1.26200000e-05 sys: 0 - ArtUnc_1: -2.1881212164648737e-05 - ArtUnc_2: 8.180861627380455e-06 - ArtUnc_3: 7.647291109076548e-06 - ArtUnc_4: -2.7254388256827677e-06 - ArtUnc_5: -6.0583239657239215e-06 - ArtUnc_6: -1.3139491687182842e-06 - ArtUnc_7: -1.8917476140444878e-06 - ArtUnc_8: -5.957948289272803e-06 - ArtUnc_9: -4.670105239786517e-06 - ArtUnc_10: -1.5259695929475443e-06 - ArtUnc_11: -2.6447208352909187e-06 - ArtUnc_12: -5.226739475550977e-06 - ArtUnc_13: -2.3170548385340544e-06 - ArtUnc_14: -1.4350043588046347e-06 - ArtUnc_15: 2.8279532949496756e-06 - ArtUnc_16: -2.2532822740354093e-06 - ArtUnc_17: -2.4328026253519922e-08 - ArtUnc_18: 8.636743051998877e-08 - ArtUnc_19: 2.1399693402405588e-08 - ArtUnc_20: -1.141636103869918e-07 - ArtUnc_21: -1.9475512933579374e-08 - ArtUnc_22: 9.619721798135583e-08 - ArtUnc_23: -2.5185407541708303e-07 - ArtUnc_24: -1.5880131520329867e-08 - ArtUnc_25: 7.097665584755015e-08 - ArtUnc_26: 3.407121311876624e-08 - ArtUnc_27: -3.80861546139954e-08 - ArtUnc_28: -6.011095496295243e-08 - ArtUnc_29: 9.66858020871205e-08 - ArtUnc_30: 3.8711843000506296e-08 + ArtUnc_1: -2.18812122e-05 + ArtUnc_2: 8.18086163e-06 + ArtUnc_3: 7.64729111e-06 + ArtUnc_4: -2.72543883e-06 + ArtUnc_5: -6.05832397e-06 + ArtUnc_6: -1.31394917e-06 + ArtUnc_7: -1.89174761e-06 + ArtUnc_8: -5.95794829e-06 + ArtUnc_9: -4.67010524e-06 + ArtUnc_10: -1.52596959e-06 + ArtUnc_11: -2.64472084e-06 + ArtUnc_12: -5.22673948e-06 + ArtUnc_13: -2.31705484e-06 + ArtUnc_14: -1.43500436e-06 + ArtUnc_15: 2.82795329e-06 + ArtUnc_16: -2.25328227e-06 + ArtUnc_17: -2.43280263e-08 + ArtUnc_18: 8.63674305e-08 + ArtUnc_19: 2.13996934e-08 + ArtUnc_20: -1.14163610e-07 + ArtUnc_21: -1.94755129e-08 + ArtUnc_22: 9.61972180e-08 + ArtUnc_23: -2.51854075e-07 + ArtUnc_24: -1.58801315e-08 + ArtUnc_25: 7.09766558e-08 + ArtUnc_26: 3.40712131e-08 + ArtUnc_27: -3.80861546e-08 + ArtUnc_28: -6.01109550e-08 + ArtUnc_29: 9.66858021e-08 + ArtUnc_30: 3.87118430e-08 ArtUnc_31: 0.0 - ArtUnc_32: -1.28053868263535e-09 - ArtUnc_33: -2.3952634433197567e-11 - ArtUnc_34: -1.6650617910024465e-10 - ArtUnc_35: 5.6620457573113696e-11 + ArtUnc_32: -1.28053868e-09 + ArtUnc_33: -2.39526344e-11 + ArtUnc_34: -1.66506179e-10 + ArtUnc_35: 5.66204576e-11 - stat: 1.27e-05 sys: 0 - ArtUnc_1: -2.0296156978342916e-05 - ArtUnc_2: 9.230360535720729e-06 - ArtUnc_3: -4.2792902076713875e-06 - ArtUnc_4: 2.963921772708777e-06 - ArtUnc_5: -3.912460083215847e-06 - ArtUnc_6: -3.978263732140879e-06 - ArtUnc_7: -7.91802110109477e-07 - ArtUnc_8: 6.489437083738625e-06 - ArtUnc_9: 5.847646207124603e-06 - ArtUnc_10: -1.4778699008737953e-06 - ArtUnc_11: 9.198465829673233e-07 - ArtUnc_12: 5.167299106844218e-07 - ArtUnc_13: -2.416254992293404e-06 - ArtUnc_14: 2.8316814520687335e-07 - ArtUnc_15: -2.7026250918310014e-06 - ArtUnc_16: -3.672400999488578e-06 - ArtUnc_17: -1.2290056127042804e-06 - ArtUnc_18: 1.4722601488573203e-06 - ArtUnc_19: 4.4097537691540505e-08 - ArtUnc_20: -1.4085635869628755e-07 - ArtUnc_21: 1.108560021567111e-07 - ArtUnc_22: 3.082403036140451e-07 - ArtUnc_23: -2.464725304453288e-07 - ArtUnc_24: -3.425162248839886e-08 - ArtUnc_25: 2.320218945419013e-08 - ArtUnc_26: 3.549187147885346e-08 - ArtUnc_27: -1.0028241696766357e-08 - ArtUnc_28: -1.120253216210327e-07 - ArtUnc_29: 9.638659864978073e-08 - ArtUnc_30: 3.871298708259092e-08 + ArtUnc_1: -2.02961570e-05 + ArtUnc_2: 9.23036054e-06 + ArtUnc_3: -4.27929021e-06 + ArtUnc_4: 2.96392177e-06 + ArtUnc_5: -3.91246008e-06 + ArtUnc_6: -3.97826373e-06 + ArtUnc_7: -7.91802110e-07 + ArtUnc_8: 6.48943708e-06 + ArtUnc_9: 5.84764621e-06 + ArtUnc_10: -1.47786990e-06 + ArtUnc_11: 9.19846583e-07 + ArtUnc_12: 5.16729911e-07 + ArtUnc_13: -2.41625499e-06 + ArtUnc_14: 2.83168145e-07 + ArtUnc_15: -2.70262509e-06 + ArtUnc_16: -3.67240100e-06 + ArtUnc_17: -1.22900561e-06 + ArtUnc_18: 1.47226015e-06 + ArtUnc_19: 4.40975377e-08 + ArtUnc_20: -1.40856359e-07 + ArtUnc_21: 1.10856002e-07 + ArtUnc_22: 3.08240304e-07 + ArtUnc_23: -2.46472530e-07 + ArtUnc_24: -3.42516225e-08 + ArtUnc_25: 2.32021895e-08 + ArtUnc_26: 3.54918715e-08 + ArtUnc_27: -1.00282417e-08 + ArtUnc_28: -1.12025322e-07 + ArtUnc_29: 9.63865986e-08 + ArtUnc_30: 3.87129871e-08 ArtUnc_31: 0.0 - ArtUnc_32: -1.2776407479453137e-09 - ArtUnc_33: -6.924496729667963e-12 - ArtUnc_34: -2.2279382065005766e-10 - ArtUnc_35: -2.138677312153233e-11 -- stat: 1.218e-05 + ArtUnc_32: -1.27764075e-09 + ArtUnc_33: -6.92449673e-12 + ArtUnc_34: -2.22793821e-10 + ArtUnc_35: -2.13867731e-11 +- stat: 1.21800000e-05 sys: 0 - ArtUnc_1: -1.6511334934406973e-05 - ArtUnc_2: 4.814500367940451e-06 - ArtUnc_3: 7.073372812912983e-06 - ArtUnc_4: 4.052766173722967e-06 - ArtUnc_5: 5.54786623517091e-07 - ArtUnc_6: 3.973970126708408e-07 - ArtUnc_7: 2.550855645199572e-06 - ArtUnc_8: -5.751627541324216e-06 - ArtUnc_9: -4.824517785844141e-06 - ArtUnc_10: -4.5264633532037204e-08 - ArtUnc_11: 3.4750090385169363e-06 - ArtUnc_12: 1.4516425570545232e-06 - ArtUnc_13: 2.09352850749892e-06 - ArtUnc_14: 1.2322195832032121e-06 - ArtUnc_15: -5.376720402182231e-06 - ArtUnc_16: 1.484066262651487e-06 - ArtUnc_17: -9.590649545366544e-07 - ArtUnc_18: 2.1155593973827425e-06 - ArtUnc_19: -7.803785808171963e-09 - ArtUnc_20: -5.5876805319808074e-08 - ArtUnc_21: 2.3377559153739303e-07 - ArtUnc_22: 1.5859784674305007e-07 - ArtUnc_23: -9.502309607243636e-08 - ArtUnc_24: -2.238097369054535e-08 - ArtUnc_25: 1.291519559191787e-09 - ArtUnc_26: 2.3934609660955628e-08 - ArtUnc_27: -2.223551319389952e-09 - ArtUnc_28: -1.1334422307790643e-07 - ArtUnc_29: 9.207418946664908e-08 - ArtUnc_30: 3.866416969014576e-08 + ArtUnc_1: -1.65113349e-05 + ArtUnc_2: 4.81450037e-06 + ArtUnc_3: 7.07337281e-06 + ArtUnc_4: 4.05276617e-06 + ArtUnc_5: 5.54786624e-07 + ArtUnc_6: 3.97397013e-07 + ArtUnc_7: 2.55085565e-06 + ArtUnc_8: -5.75162754e-06 + ArtUnc_9: -4.82451779e-06 + ArtUnc_10: -4.52646335e-08 + ArtUnc_11: 3.47500904e-06 + ArtUnc_12: 1.45164256e-06 + ArtUnc_13: 2.09352851e-06 + ArtUnc_14: 1.23221958e-06 + ArtUnc_15: -5.37672040e-06 + ArtUnc_16: 1.48406626e-06 + ArtUnc_17: -9.59064955e-07 + ArtUnc_18: 2.11555940e-06 + ArtUnc_19: -7.80378581e-09 + ArtUnc_20: -5.58768053e-08 + ArtUnc_21: 2.33775592e-07 + ArtUnc_22: 1.58597847e-07 + ArtUnc_23: -9.50230961e-08 + ArtUnc_24: -2.23809737e-08 + ArtUnc_25: 1.29151956e-09 + ArtUnc_26: 2.39346097e-08 + ArtUnc_27: -2.22355132e-09 + ArtUnc_28: -1.13344223e-07 + ArtUnc_29: 9.20741895e-08 + ArtUnc_30: 3.86641697e-08 ArtUnc_31: 0.0 - ArtUnc_32: -1.2581545400299088e-09 - ArtUnc_33: -1.5041852907270653e-11 - ArtUnc_34: -2.345003513569587e-10 - ArtUnc_35: -8.744497017389647e-11 -- stat: 1.196e-05 + ArtUnc_32: -1.25815454e-09 + ArtUnc_33: -1.50418529e-11 + ArtUnc_34: -2.34500351e-10 + ArtUnc_35: -8.74449702e-11 +- stat: 1.19600000e-05 sys: 0 - ArtUnc_1: -1.1503799356607126e-05 - ArtUnc_2: 4.335404119860076e-06 - ArtUnc_3: -2.709242290480066e-06 - ArtUnc_4: -4.150646957455469e-06 - ArtUnc_5: -2.496886740725809e-06 - ArtUnc_6: 3.2348136035486104e-06 - ArtUnc_7: 2.13723955728113e-06 - ArtUnc_8: 4.701869541692644e-06 - ArtUnc_9: 2.555967822081611e-06 - ArtUnc_10: -9.667577688704626e-07 - ArtUnc_11: -4.194285885341986e-06 - ArtUnc_12: -5.063650612590486e-06 - ArtUnc_13: 4.144678741121209e-06 - ArtUnc_14: -3.791538327345872e-06 - ArtUnc_15: -2.0838747306109404e-06 - ArtUnc_16: 3.2779681757692402e-06 - ArtUnc_17: 4.1581786721640194e-08 - ArtUnc_18: 1.4985621481380543e-07 - ArtUnc_19: -4.5348623086197474e-08 - ArtUnc_20: -3.0555176020673777e-09 - ArtUnc_21: 5.066704833075858e-08 - ArtUnc_22: -1.3664060527021715e-07 - ArtUnc_23: -1.1545656891342063e-07 - ArtUnc_24: 1.4784412672788786e-08 - ArtUnc_25: 1.4684894599143165e-08 - ArtUnc_26: 1.747543338576927e-08 - ArtUnc_27: -5.176974306141968e-08 - ArtUnc_28: -9.318195987409981e-08 - ArtUnc_29: 9.378313805869042e-08 - ArtUnc_30: 3.921730196069124e-08 + ArtUnc_1: -1.15037994e-05 + ArtUnc_2: 4.33540412e-06 + ArtUnc_3: -2.70924229e-06 + ArtUnc_4: -4.15064696e-06 + ArtUnc_5: -2.49688674e-06 + ArtUnc_6: 3.23481360e-06 + ArtUnc_7: 2.13723956e-06 + ArtUnc_8: 4.70186954e-06 + ArtUnc_9: 2.55596782e-06 + ArtUnc_10: -9.66757769e-07 + ArtUnc_11: -4.19428589e-06 + ArtUnc_12: -5.06365061e-06 + ArtUnc_13: 4.14467874e-06 + ArtUnc_14: -3.79153833e-06 + ArtUnc_15: -2.08387473e-06 + ArtUnc_16: 3.27796818e-06 + ArtUnc_17: 4.15817867e-08 + ArtUnc_18: 1.49856215e-07 + ArtUnc_19: -4.53486231e-08 + ArtUnc_20: -3.05551760e-09 + ArtUnc_21: 5.06670483e-08 + ArtUnc_22: -1.36640605e-07 + ArtUnc_23: -1.15456569e-07 + ArtUnc_24: 1.47844127e-08 + ArtUnc_25: 1.46848946e-08 + ArtUnc_26: 1.74754334e-08 + ArtUnc_27: -5.17697431e-08 + ArtUnc_28: -9.31819599e-08 + ArtUnc_29: 9.37831381e-08 + ArtUnc_30: 3.92173020e-08 ArtUnc_31: 0.0 - ArtUnc_32: -1.2415878058460392e-09 - ArtUnc_33: -5.413362611178661e-11 - ArtUnc_34: -2.4380036443715906e-10 - ArtUnc_35: -1.3553550226823322e-10 -- stat: 5.469e-06 + ArtUnc_32: -1.24158781e-09 + ArtUnc_33: -5.41336261e-11 + ArtUnc_34: -2.43800364e-10 + ArtUnc_35: -1.35535502e-10 +- stat: 5.46900000e-06 sys: 0 - ArtUnc_1: -5.540925489250257e-06 - ArtUnc_2: -1.6245003632125127e-06 - ArtUnc_3: 5.88237927086619e-07 - ArtUnc_4: 1.3902437908342886e-06 - ArtUnc_5: -1.3216068174273398e-06 - ArtUnc_6: -6.931463347200529e-07 - ArtUnc_7: 7.572703475686012e-07 - ArtUnc_8: -7.856822369171429e-07 - ArtUnc_9: -1.3838424209719159e-07 - ArtUnc_10: 3.895579145957966e-06 - ArtUnc_11: 1.4886347377690608e-07 - ArtUnc_12: 5.995679725866652e-07 - ArtUnc_13: 4.683453586937138e-07 - ArtUnc_14: 5.674957035874519e-07 - ArtUnc_15: -2.6130571905471104e-06 - ArtUnc_16: -9.698477496333364e-07 - ArtUnc_17: 2.0663007166487736e-07 - ArtUnc_18: -4.392294583129725e-06 - ArtUnc_19: 1.1703897313625624e-08 - ArtUnc_20: 2.478171961443664e-07 - ArtUnc_21: -7.570789567637052e-07 - ArtUnc_22: -3.5636623533531515e-07 - ArtUnc_23: -1.0373358772387735e-06 - ArtUnc_24: 1.0247830090500893e-07 - ArtUnc_25: 1.240612626110879e-07 - ArtUnc_26: 1.00340331271873e-07 - ArtUnc_27: -2.54390763456331e-07 - ArtUnc_28: -2.7147115069261595e-07 - ArtUnc_29: 3.188393851161131e-07 - ArtUnc_30: 1.315739260937137e-07 + ArtUnc_1: -5.54092549e-06 + ArtUnc_2: -1.62450036e-06 + ArtUnc_3: 5.88237927e-07 + ArtUnc_4: 1.39024379e-06 + ArtUnc_5: -1.32160682e-06 + ArtUnc_6: -6.93146335e-07 + ArtUnc_7: 7.57270348e-07 + ArtUnc_8: -7.85682237e-07 + ArtUnc_9: -1.38384242e-07 + ArtUnc_10: 3.89557915e-06 + ArtUnc_11: 1.48863474e-07 + ArtUnc_12: 5.99567973e-07 + ArtUnc_13: 4.68345359e-07 + ArtUnc_14: 5.67495704e-07 + ArtUnc_15: -2.61305719e-06 + ArtUnc_16: -9.69847750e-07 + ArtUnc_17: 2.06630072e-07 + ArtUnc_18: -4.39229458e-06 + ArtUnc_19: 1.17038973e-08 + ArtUnc_20: 2.47817196e-07 + ArtUnc_21: -7.57078957e-07 + ArtUnc_22: -3.56366235e-07 + ArtUnc_23: -1.03733588e-06 + ArtUnc_24: 1.02478301e-07 + ArtUnc_25: 1.24061263e-07 + ArtUnc_26: 1.00340331e-07 + ArtUnc_27: -2.54390763e-07 + ArtUnc_28: -2.71471151e-07 + ArtUnc_29: 3.18839385e-07 + ArtUnc_30: 1.31573926e-07 ArtUnc_31: 0.0 - ArtUnc_32: -4.1870473655925935e-09 - ArtUnc_33: -1.4044786303843782e-10 - ArtUnc_34: -8.045944125899843e-10 - ArtUnc_35: -2.457477617336984e-10 -- stat: 1.859e-05 + ArtUnc_32: -4.18704737e-09 + ArtUnc_33: -1.40447863e-10 + ArtUnc_34: -8.04594413e-10 + ArtUnc_35: -2.45747762e-10 +- stat: 1.85900000e-05 sys: 0 - ArtUnc_1: -2.3865909464509523e-05 - ArtUnc_2: 1.0276550218167456e-05 - ArtUnc_3: 1.2965404174561456e-07 - ArtUnc_4: 5.294198085820107e-06 - ArtUnc_5: -4.212013778387726e-06 - ArtUnc_6: 3.530577078658824e-06 - ArtUnc_7: -2.7198176455510675e-06 - ArtUnc_8: 1.603317384865069e-06 - ArtUnc_9: 2.406956719830953e-06 - ArtUnc_10: -1.3052566990771772e-06 - ArtUnc_11: 2.862201827024496e-06 - ArtUnc_12: 6.484024195075214e-07 - ArtUnc_13: 5.365058397500084e-08 - ArtUnc_14: 5.125745112974652e-06 - ArtUnc_15: 3.731908006361614e-06 - ArtUnc_16: 3.3131294703683616e-06 - ArtUnc_17: 1.2339105330195842e-06 - ArtUnc_18: -3.9289236997279006e-07 - ArtUnc_19: -1.4851785516249325e-07 - ArtUnc_20: 7.445952504437471e-09 - ArtUnc_21: -4.482909840949499e-08 - ArtUnc_22: -2.1131805386801755e-07 - ArtUnc_23: -1.9120789200044242e-07 - ArtUnc_24: 1.5676510241775918e-08 - ArtUnc_25: 6.435308086240898e-08 - ArtUnc_26: 2.631757605571115e-08 - ArtUnc_27: -5.876226473020582e-08 - ArtUnc_28: -3.5657511521591655e-09 - ArtUnc_29: 9.622949254291427e-08 - ArtUnc_30: 3.945590614545117e-08 + ArtUnc_1: -2.38659095e-05 + ArtUnc_2: 1.02765502e-05 + ArtUnc_3: 1.29654042e-07 + ArtUnc_4: 5.29419809e-06 + ArtUnc_5: -4.21201378e-06 + ArtUnc_6: 3.53057708e-06 + ArtUnc_7: -2.71981765e-06 + ArtUnc_8: 1.60331738e-06 + ArtUnc_9: 2.40695672e-06 + ArtUnc_10: -1.30525670e-06 + ArtUnc_11: 2.86220183e-06 + ArtUnc_12: 6.48402420e-07 + ArtUnc_13: 5.36505840e-08 + ArtUnc_14: 5.12574511e-06 + ArtUnc_15: 3.73190801e-06 + ArtUnc_16: 3.31312947e-06 + ArtUnc_17: 1.23391053e-06 + ArtUnc_18: -3.92892370e-07 + ArtUnc_19: -1.48517855e-07 + ArtUnc_20: 7.44595250e-09 + ArtUnc_21: -4.48290984e-08 + ArtUnc_22: -2.11318054e-07 + ArtUnc_23: -1.91207892e-07 + ArtUnc_24: 1.56765102e-08 + ArtUnc_25: 6.43530809e-08 + ArtUnc_26: 2.63175761e-08 + ArtUnc_27: -5.87622647e-08 + ArtUnc_28: -3.56575115e-09 + ArtUnc_29: 9.62294925e-08 + ArtUnc_30: 3.94559061e-08 ArtUnc_31: 0.0 - ArtUnc_32: -1.2761230945770884e-09 - ArtUnc_33: -2.3429419028239327e-11 - ArtUnc_34: -1.6278479224313607e-10 - ArtUnc_35: 9.055622950571007e-11 -- stat: 2.233e-05 + ArtUnc_32: -1.27612309e-09 + ArtUnc_33: -2.34294190e-11 + ArtUnc_34: -1.62784792e-10 + ArtUnc_35: 9.05562295e-11 +- stat: 2.23300000e-05 sys: 0 - ArtUnc_1: -2.1881212164648737e-05 - ArtUnc_2: 8.180861627380455e-06 - ArtUnc_3: 7.647291109076548e-06 - ArtUnc_4: -2.7254388256827677e-06 - ArtUnc_5: -6.0583239657239215e-06 - ArtUnc_6: -1.3139491687182842e-06 - ArtUnc_7: -1.8917476140444878e-06 - ArtUnc_8: -5.957948289272803e-06 - ArtUnc_9: -4.670105239786517e-06 - ArtUnc_10: -1.5259695929475443e-06 - ArtUnc_11: -2.6447208352909187e-06 - ArtUnc_12: -5.226739475550977e-06 - ArtUnc_13: -2.3170548385340544e-06 - ArtUnc_14: -1.4350043588046347e-06 - ArtUnc_15: 2.8279532949496756e-06 - ArtUnc_16: -2.2532822740354093e-06 - ArtUnc_17: -2.4328026253519922e-08 - ArtUnc_18: 8.636743051998877e-08 - ArtUnc_19: 2.1399693402405588e-08 - ArtUnc_20: -1.141636103869918e-07 - ArtUnc_21: -1.9475512933579374e-08 - ArtUnc_22: 9.619721798135583e-08 - ArtUnc_23: -2.5185407541708303e-07 - ArtUnc_24: -1.5880131520329867e-08 - ArtUnc_25: 7.097665584755015e-08 - ArtUnc_26: 3.407121311876624e-08 - ArtUnc_27: -3.80861546139954e-08 - ArtUnc_28: -6.011095496295243e-08 - ArtUnc_29: 9.66858020871205e-08 - ArtUnc_30: 3.8711843000506296e-08 + ArtUnc_1: -2.18812122e-05 + ArtUnc_2: 8.18086163e-06 + ArtUnc_3: 7.64729111e-06 + ArtUnc_4: -2.72543883e-06 + ArtUnc_5: -6.05832397e-06 + ArtUnc_6: -1.31394917e-06 + ArtUnc_7: -1.89174761e-06 + ArtUnc_8: -5.95794829e-06 + ArtUnc_9: -4.67010524e-06 + ArtUnc_10: -1.52596959e-06 + ArtUnc_11: -2.64472084e-06 + ArtUnc_12: -5.22673948e-06 + ArtUnc_13: -2.31705484e-06 + ArtUnc_14: -1.43500436e-06 + ArtUnc_15: 2.82795329e-06 + ArtUnc_16: -2.25328227e-06 + ArtUnc_17: -2.43280263e-08 + ArtUnc_18: 8.63674305e-08 + ArtUnc_19: 2.13996934e-08 + ArtUnc_20: -1.14163610e-07 + ArtUnc_21: -1.94755129e-08 + ArtUnc_22: 9.61972180e-08 + ArtUnc_23: -2.51854075e-07 + ArtUnc_24: -1.58801315e-08 + ArtUnc_25: 7.09766558e-08 + ArtUnc_26: 3.40712131e-08 + ArtUnc_27: -3.80861546e-08 + ArtUnc_28: -6.01109550e-08 + ArtUnc_29: 9.66858021e-08 + ArtUnc_30: 3.87118430e-08 ArtUnc_31: 0.0 - ArtUnc_32: -1.28053868263535e-09 - ArtUnc_33: -2.3952634433197567e-11 - ArtUnc_34: -1.6650617910024465e-10 - ArtUnc_35: 5.6620457573113696e-11 -- stat: 2.218e-05 + ArtUnc_32: -1.28053868e-09 + ArtUnc_33: -2.39526344e-11 + ArtUnc_34: -1.66506179e-10 + ArtUnc_35: 5.66204576e-11 +- stat: 2.21800000e-05 sys: 0 - ArtUnc_1: -2.0296156978342916e-05 - ArtUnc_2: 9.230360535720729e-06 - ArtUnc_3: -4.2792902076713875e-06 - ArtUnc_4: 2.963921772708777e-06 - ArtUnc_5: -3.912460083215847e-06 - ArtUnc_6: -3.978263732140879e-06 - ArtUnc_7: -7.91802110109477e-07 - ArtUnc_8: 6.489437083738625e-06 - ArtUnc_9: 5.847646207124603e-06 - ArtUnc_10: -1.4778699008737953e-06 - ArtUnc_11: 9.198465829673233e-07 - ArtUnc_12: 5.167299106844218e-07 - ArtUnc_13: -2.416254992293404e-06 - ArtUnc_14: 2.8316814520687335e-07 - ArtUnc_15: -2.7026250918310014e-06 - ArtUnc_16: -3.672400999488578e-06 - ArtUnc_17: -1.2290056127042804e-06 - ArtUnc_18: 1.4722601488573203e-06 - ArtUnc_19: 4.4097537691540505e-08 - ArtUnc_20: -1.4085635869628755e-07 - ArtUnc_21: 1.108560021567111e-07 - ArtUnc_22: 3.082403036140451e-07 - ArtUnc_23: -2.464725304453288e-07 - ArtUnc_24: -3.425162248839886e-08 - ArtUnc_25: 2.320218945419013e-08 - ArtUnc_26: 3.549187147885346e-08 - ArtUnc_27: -1.0028241696766357e-08 - ArtUnc_28: -1.120253216210327e-07 - ArtUnc_29: 9.638659864978073e-08 - ArtUnc_30: 3.871298708259092e-08 + ArtUnc_1: -2.02961570e-05 + ArtUnc_2: 9.23036054e-06 + ArtUnc_3: -4.27929021e-06 + ArtUnc_4: 2.96392177e-06 + ArtUnc_5: -3.91246008e-06 + ArtUnc_6: -3.97826373e-06 + ArtUnc_7: -7.91802110e-07 + ArtUnc_8: 6.48943708e-06 + ArtUnc_9: 5.84764621e-06 + ArtUnc_10: -1.47786990e-06 + ArtUnc_11: 9.19846583e-07 + ArtUnc_12: 5.16729911e-07 + ArtUnc_13: -2.41625499e-06 + ArtUnc_14: 2.83168145e-07 + ArtUnc_15: -2.70262509e-06 + ArtUnc_16: -3.67240100e-06 + ArtUnc_17: -1.22900561e-06 + ArtUnc_18: 1.47226015e-06 + ArtUnc_19: 4.40975377e-08 + ArtUnc_20: -1.40856359e-07 + ArtUnc_21: 1.10856002e-07 + ArtUnc_22: 3.08240304e-07 + ArtUnc_23: -2.46472530e-07 + ArtUnc_24: -3.42516225e-08 + ArtUnc_25: 2.32021895e-08 + ArtUnc_26: 3.54918715e-08 + ArtUnc_27: -1.00282417e-08 + ArtUnc_28: -1.12025322e-07 + ArtUnc_29: 9.63865986e-08 + ArtUnc_30: 3.87129871e-08 ArtUnc_31: 0.0 - ArtUnc_32: -1.2776407479453137e-09 - ArtUnc_33: -6.924496729667963e-12 - ArtUnc_34: -2.2279382065005766e-10 - ArtUnc_35: -2.138677312153233e-11 -- stat: 2.152e-05 + ArtUnc_32: -1.27764075e-09 + ArtUnc_33: -6.92449673e-12 + ArtUnc_34: -2.22793821e-10 + ArtUnc_35: -2.13867731e-11 +- stat: 2.15200000e-05 sys: 0 - ArtUnc_1: -1.6511334934406973e-05 - ArtUnc_2: 4.814500367940451e-06 - ArtUnc_3: 7.073372812912983e-06 - ArtUnc_4: 4.052766173722967e-06 - ArtUnc_5: 5.54786623517091e-07 - ArtUnc_6: 3.973970126708408e-07 - ArtUnc_7: 2.550855645199572e-06 - ArtUnc_8: -5.751627541324216e-06 - ArtUnc_9: -4.824517785844141e-06 - ArtUnc_10: -4.5264633532037204e-08 - ArtUnc_11: 3.4750090385169363e-06 - ArtUnc_12: 1.4516425570545232e-06 - ArtUnc_13: 2.09352850749892e-06 - ArtUnc_14: 1.2322195832032121e-06 - ArtUnc_15: -5.376720402182231e-06 - ArtUnc_16: 1.484066262651487e-06 - ArtUnc_17: -9.590649545366544e-07 - ArtUnc_18: 2.1155593973827425e-06 - ArtUnc_19: -7.803785808171963e-09 - ArtUnc_20: -5.5876805319808074e-08 - ArtUnc_21: 2.3377559153739303e-07 - ArtUnc_22: 1.5859784674305007e-07 - ArtUnc_23: -9.502309607243636e-08 - ArtUnc_24: -2.238097369054535e-08 - ArtUnc_25: 1.291519559191787e-09 - ArtUnc_26: 2.3934609660955628e-08 - ArtUnc_27: -2.223551319389952e-09 - ArtUnc_28: -1.1334422307790643e-07 - ArtUnc_29: 9.207418946664908e-08 - ArtUnc_30: 3.866416969014576e-08 + ArtUnc_1: -1.65113349e-05 + ArtUnc_2: 4.81450037e-06 + ArtUnc_3: 7.07337281e-06 + ArtUnc_4: 4.05276617e-06 + ArtUnc_5: 5.54786624e-07 + ArtUnc_6: 3.97397013e-07 + ArtUnc_7: 2.55085565e-06 + ArtUnc_8: -5.75162754e-06 + ArtUnc_9: -4.82451779e-06 + ArtUnc_10: -4.52646335e-08 + ArtUnc_11: 3.47500904e-06 + ArtUnc_12: 1.45164256e-06 + ArtUnc_13: 2.09352851e-06 + ArtUnc_14: 1.23221958e-06 + ArtUnc_15: -5.37672040e-06 + ArtUnc_16: 1.48406626e-06 + ArtUnc_17: -9.59064955e-07 + ArtUnc_18: 2.11555940e-06 + ArtUnc_19: -7.80378581e-09 + ArtUnc_20: -5.58768053e-08 + ArtUnc_21: 2.33775592e-07 + ArtUnc_22: 1.58597847e-07 + ArtUnc_23: -9.50230961e-08 + ArtUnc_24: -2.23809737e-08 + ArtUnc_25: 1.29151956e-09 + ArtUnc_26: 2.39346097e-08 + ArtUnc_27: -2.22355132e-09 + ArtUnc_28: -1.13344223e-07 + ArtUnc_29: 9.20741895e-08 + ArtUnc_30: 3.86641697e-08 ArtUnc_31: 0.0 - ArtUnc_32: -1.2581545400299088e-09 - ArtUnc_33: -1.5041852907270653e-11 - ArtUnc_34: -2.345003513569587e-10 - ArtUnc_35: -8.744497017389647e-11 -- stat: 2.193e-05 + ArtUnc_32: -1.25815454e-09 + ArtUnc_33: -1.50418529e-11 + ArtUnc_34: -2.34500351e-10 + ArtUnc_35: -8.74449702e-11 +- stat: 2.19300000e-05 sys: 0 - ArtUnc_1: -1.1503799356607126e-05 - ArtUnc_2: 4.335404119860076e-06 - ArtUnc_3: -2.709242290480066e-06 - ArtUnc_4: -4.150646957455469e-06 - ArtUnc_5: -2.496886740725809e-06 - ArtUnc_6: 3.2348136035486104e-06 - ArtUnc_7: 2.13723955728113e-06 - ArtUnc_8: 4.701869541692644e-06 - ArtUnc_9: 2.555967822081611e-06 - ArtUnc_10: -9.667577688704626e-07 - ArtUnc_11: -4.194285885341986e-06 - ArtUnc_12: -5.063650612590486e-06 - ArtUnc_13: 4.144678741121209e-06 - ArtUnc_14: -3.791538327345872e-06 - ArtUnc_15: -2.0838747306109404e-06 - ArtUnc_16: 3.2779681757692402e-06 - ArtUnc_17: 4.1581786721640194e-08 - ArtUnc_18: 1.4985621481380543e-07 - ArtUnc_19: -4.5348623086197474e-08 - ArtUnc_20: -3.0555176020673777e-09 - ArtUnc_21: 5.066704833075858e-08 - ArtUnc_22: -1.3664060527021715e-07 - ArtUnc_23: -1.1545656891342063e-07 - ArtUnc_24: 1.4784412672788786e-08 - ArtUnc_25: 1.4684894599143165e-08 - ArtUnc_26: 1.747543338576927e-08 - ArtUnc_27: -5.176974306141968e-08 - ArtUnc_28: -9.318195987409981e-08 - ArtUnc_29: 9.378313805869042e-08 - ArtUnc_30: 3.921730196069124e-08 + ArtUnc_1: -1.15037994e-05 + ArtUnc_2: 4.33540412e-06 + ArtUnc_3: -2.70924229e-06 + ArtUnc_4: -4.15064696e-06 + ArtUnc_5: -2.49688674e-06 + ArtUnc_6: 3.23481360e-06 + ArtUnc_7: 2.13723956e-06 + ArtUnc_8: 4.70186954e-06 + ArtUnc_9: 2.55596782e-06 + ArtUnc_10: -9.66757769e-07 + ArtUnc_11: -4.19428589e-06 + ArtUnc_12: -5.06365061e-06 + ArtUnc_13: 4.14467874e-06 + ArtUnc_14: -3.79153833e-06 + ArtUnc_15: -2.08387473e-06 + ArtUnc_16: 3.27796818e-06 + ArtUnc_17: 4.15817867e-08 + ArtUnc_18: 1.49856215e-07 + ArtUnc_19: -4.53486231e-08 + ArtUnc_20: -3.05551760e-09 + ArtUnc_21: 5.06670483e-08 + ArtUnc_22: -1.36640605e-07 + ArtUnc_23: -1.15456569e-07 + ArtUnc_24: 1.47844127e-08 + ArtUnc_25: 1.46848946e-08 + ArtUnc_26: 1.74754334e-08 + ArtUnc_27: -5.17697431e-08 + ArtUnc_28: -9.31819599e-08 + ArtUnc_29: 9.37831381e-08 + ArtUnc_30: 3.92173020e-08 ArtUnc_31: 0.0 - ArtUnc_32: -1.2415878058460392e-09 - ArtUnc_33: -5.413362611178661e-11 - ArtUnc_34: -2.4380036443715906e-10 - ArtUnc_35: -1.3553550226823322e-10 -- stat: 1.156e-05 + ArtUnc_32: -1.24158781e-09 + ArtUnc_33: -5.41336261e-11 + ArtUnc_34: -2.43800364e-10 + ArtUnc_35: -1.35535502e-10 +- stat: 1.15600000e-05 sys: 0 - ArtUnc_1: -5.540925489250257e-06 - ArtUnc_2: -1.6245003632125127e-06 - ArtUnc_3: 5.88237927086619e-07 - ArtUnc_4: 1.3902437908342886e-06 - ArtUnc_5: -1.3216068174273398e-06 - ArtUnc_6: -6.931463347200529e-07 - ArtUnc_7: 7.572703475686012e-07 - ArtUnc_8: -7.856822369171429e-07 - ArtUnc_9: -1.3838424209719159e-07 - ArtUnc_10: 3.895579145957966e-06 - ArtUnc_11: 1.4886347377690608e-07 - ArtUnc_12: 5.995679725866652e-07 - ArtUnc_13: 4.683453586937138e-07 - ArtUnc_14: 5.674957035874519e-07 - ArtUnc_15: -2.6130571905471104e-06 - ArtUnc_16: -9.698477496333364e-07 - ArtUnc_17: 2.0663007166487736e-07 - ArtUnc_18: -4.392294583129725e-06 - ArtUnc_19: 1.1703897313625624e-08 - ArtUnc_20: 2.478171961443664e-07 - ArtUnc_21: -7.570789567637052e-07 - ArtUnc_22: -3.5636623533531515e-07 - ArtUnc_23: -1.0373358772387735e-06 - ArtUnc_24: 1.0247830090500893e-07 - ArtUnc_25: 1.240612626110879e-07 - ArtUnc_26: 1.00340331271873e-07 - ArtUnc_27: -2.54390763456331e-07 - ArtUnc_28: -2.7147115069261595e-07 - ArtUnc_29: 3.188393851161131e-07 - ArtUnc_30: 1.315739260937137e-07 + ArtUnc_1: -5.54092549e-06 + ArtUnc_2: -1.62450036e-06 + ArtUnc_3: 5.88237927e-07 + ArtUnc_4: 1.39024379e-06 + ArtUnc_5: -1.32160682e-06 + ArtUnc_6: -6.93146335e-07 + ArtUnc_7: 7.57270348e-07 + ArtUnc_8: -7.85682237e-07 + ArtUnc_9: -1.38384242e-07 + ArtUnc_10: 3.89557915e-06 + ArtUnc_11: 1.48863474e-07 + ArtUnc_12: 5.99567973e-07 + ArtUnc_13: 4.68345359e-07 + ArtUnc_14: 5.67495704e-07 + ArtUnc_15: -2.61305719e-06 + ArtUnc_16: -9.69847750e-07 + ArtUnc_17: 2.06630072e-07 + ArtUnc_18: -4.39229458e-06 + ArtUnc_19: 1.17038973e-08 + ArtUnc_20: 2.47817196e-07 + ArtUnc_21: -7.57078957e-07 + ArtUnc_22: -3.56366235e-07 + ArtUnc_23: -1.03733588e-06 + ArtUnc_24: 1.02478301e-07 + ArtUnc_25: 1.24061263e-07 + ArtUnc_26: 1.00340331e-07 + ArtUnc_27: -2.54390763e-07 + ArtUnc_28: -2.71471151e-07 + ArtUnc_29: 3.18839385e-07 + ArtUnc_30: 1.31573926e-07 ArtUnc_31: 0.0 - ArtUnc_32: -4.1870473655925935e-09 - ArtUnc_33: -1.4044786303843782e-10 - ArtUnc_34: -8.045944125899843e-10 - ArtUnc_35: -2.457477617336984e-10 -- stat: 1.384e-05 + ArtUnc_32: -4.18704737e-09 + ArtUnc_33: -1.40447863e-10 + ArtUnc_34: -8.04594413e-10 + ArtUnc_35: -2.45747762e-10 +- stat: 1.38400000e-05 sys: 0 - ArtUnc_1: -2.3865909464509523e-05 - ArtUnc_2: 1.0276550218167456e-05 - ArtUnc_3: 1.2965404174561456e-07 - ArtUnc_4: 5.294198085820107e-06 - ArtUnc_5: -4.212013778387726e-06 - ArtUnc_6: 3.530577078658824e-06 - ArtUnc_7: -2.7198176455510675e-06 - ArtUnc_8: 1.603317384865069e-06 - ArtUnc_9: 2.406956719830953e-06 - ArtUnc_10: -1.3052566990771772e-06 - ArtUnc_11: 2.862201827024496e-06 - ArtUnc_12: 6.484024195075214e-07 - ArtUnc_13: 5.365058397500084e-08 - ArtUnc_14: 5.125745112974652e-06 - ArtUnc_15: 3.731908006361614e-06 - ArtUnc_16: 3.3131294703683616e-06 - ArtUnc_17: 1.2339105330195842e-06 - ArtUnc_18: -3.9289236997279006e-07 - ArtUnc_19: -1.4851785516249325e-07 - ArtUnc_20: 7.445952504437471e-09 - ArtUnc_21: -4.482909840949499e-08 - ArtUnc_22: -2.1131805386801755e-07 - ArtUnc_23: -1.9120789200044242e-07 - ArtUnc_24: 1.5676510241775918e-08 - ArtUnc_25: 6.435308086240898e-08 - ArtUnc_26: 2.631757605571115e-08 - ArtUnc_27: -5.876226473020582e-08 - ArtUnc_28: -3.5657511521591655e-09 - ArtUnc_29: 9.622949254291427e-08 - ArtUnc_30: 3.945590614545117e-08 + ArtUnc_1: -2.38659095e-05 + ArtUnc_2: 1.02765502e-05 + ArtUnc_3: 1.29654042e-07 + ArtUnc_4: 5.29419809e-06 + ArtUnc_5: -4.21201378e-06 + ArtUnc_6: 3.53057708e-06 + ArtUnc_7: -2.71981765e-06 + ArtUnc_8: 1.60331738e-06 + ArtUnc_9: 2.40695672e-06 + ArtUnc_10: -1.30525670e-06 + ArtUnc_11: 2.86220183e-06 + ArtUnc_12: 6.48402420e-07 + ArtUnc_13: 5.36505840e-08 + ArtUnc_14: 5.12574511e-06 + ArtUnc_15: 3.73190801e-06 + ArtUnc_16: 3.31312947e-06 + ArtUnc_17: 1.23391053e-06 + ArtUnc_18: -3.92892370e-07 + ArtUnc_19: -1.48517855e-07 + ArtUnc_20: 7.44595250e-09 + ArtUnc_21: -4.48290984e-08 + ArtUnc_22: -2.11318054e-07 + ArtUnc_23: -1.91207892e-07 + ArtUnc_24: 1.56765102e-08 + ArtUnc_25: 6.43530809e-08 + ArtUnc_26: 2.63175761e-08 + ArtUnc_27: -5.87622647e-08 + ArtUnc_28: -3.56575115e-09 + ArtUnc_29: 9.62294925e-08 + ArtUnc_30: 3.94559061e-08 ArtUnc_31: 0.0 - ArtUnc_32: -1.2761230945770884e-09 - ArtUnc_33: -2.3429419028239327e-11 - ArtUnc_34: -1.6278479224313607e-10 - ArtUnc_35: 9.055622950571007e-11 -- stat: 1.552e-05 + ArtUnc_32: -1.27612309e-09 + ArtUnc_33: -2.34294190e-11 + ArtUnc_34: -1.62784792e-10 + ArtUnc_35: 9.05562295e-11 +- stat: 1.55200000e-05 sys: 0 - ArtUnc_1: -2.1881212164648737e-05 - ArtUnc_2: 8.180861627380455e-06 - ArtUnc_3: 7.647291109076548e-06 - ArtUnc_4: -2.7254388256827677e-06 - ArtUnc_5: -6.0583239657239215e-06 - ArtUnc_6: -1.3139491687182842e-06 - ArtUnc_7: -1.8917476140444878e-06 - ArtUnc_8: -5.957948289272803e-06 - ArtUnc_9: -4.670105239786517e-06 - ArtUnc_10: -1.5259695929475443e-06 - ArtUnc_11: -2.6447208352909187e-06 - ArtUnc_12: -5.226739475550977e-06 - ArtUnc_13: -2.3170548385340544e-06 - ArtUnc_14: -1.4350043588046347e-06 - ArtUnc_15: 2.8279532949496756e-06 - ArtUnc_16: -2.2532822740354093e-06 - ArtUnc_17: -2.4328026253519922e-08 - ArtUnc_18: 8.636743051998877e-08 - ArtUnc_19: 2.1399693402405588e-08 - ArtUnc_20: -1.141636103869918e-07 - ArtUnc_21: -1.9475512933579374e-08 - ArtUnc_22: 9.619721798135583e-08 - ArtUnc_23: -2.5185407541708303e-07 - ArtUnc_24: -1.5880131520329867e-08 - ArtUnc_25: 7.097665584755015e-08 - ArtUnc_26: 3.407121311876624e-08 - ArtUnc_27: -3.80861546139954e-08 - ArtUnc_28: -6.011095496295243e-08 - ArtUnc_29: 9.66858020871205e-08 - ArtUnc_30: 3.8711843000506296e-08 + ArtUnc_1: -2.18812122e-05 + ArtUnc_2: 8.18086163e-06 + ArtUnc_3: 7.64729111e-06 + ArtUnc_4: -2.72543883e-06 + ArtUnc_5: -6.05832397e-06 + ArtUnc_6: -1.31394917e-06 + ArtUnc_7: -1.89174761e-06 + ArtUnc_8: -5.95794829e-06 + ArtUnc_9: -4.67010524e-06 + ArtUnc_10: -1.52596959e-06 + ArtUnc_11: -2.64472084e-06 + ArtUnc_12: -5.22673948e-06 + ArtUnc_13: -2.31705484e-06 + ArtUnc_14: -1.43500436e-06 + ArtUnc_15: 2.82795329e-06 + ArtUnc_16: -2.25328227e-06 + ArtUnc_17: -2.43280263e-08 + ArtUnc_18: 8.63674305e-08 + ArtUnc_19: 2.13996934e-08 + ArtUnc_20: -1.14163610e-07 + ArtUnc_21: -1.94755129e-08 + ArtUnc_22: 9.61972180e-08 + ArtUnc_23: -2.51854075e-07 + ArtUnc_24: -1.58801315e-08 + ArtUnc_25: 7.09766558e-08 + ArtUnc_26: 3.40712131e-08 + ArtUnc_27: -3.80861546e-08 + ArtUnc_28: -6.01109550e-08 + ArtUnc_29: 9.66858021e-08 + ArtUnc_30: 3.87118430e-08 ArtUnc_31: 0.0 - ArtUnc_32: -1.28053868263535e-09 - ArtUnc_33: -2.3952634433197567e-11 - ArtUnc_34: -1.6650617910024465e-10 - ArtUnc_35: 5.6620457573113696e-11 -- stat: 1.526e-05 + ArtUnc_32: -1.28053868e-09 + ArtUnc_33: -2.39526344e-11 + ArtUnc_34: -1.66506179e-10 + ArtUnc_35: 5.66204576e-11 +- stat: 1.52600000e-05 sys: 0 - ArtUnc_1: -2.0296156978342916e-05 - ArtUnc_2: 9.230360535720729e-06 - ArtUnc_3: -4.2792902076713875e-06 - ArtUnc_4: 2.963921772708777e-06 - ArtUnc_5: -3.912460083215847e-06 - ArtUnc_6: -3.978263732140879e-06 - ArtUnc_7: -7.91802110109477e-07 - ArtUnc_8: 6.489437083738625e-06 - ArtUnc_9: 5.847646207124603e-06 - ArtUnc_10: -1.4778699008737953e-06 - ArtUnc_11: 9.198465829673233e-07 - ArtUnc_12: 5.167299106844218e-07 - ArtUnc_13: -2.416254992293404e-06 - ArtUnc_14: 2.8316814520687335e-07 - ArtUnc_15: -2.7026250918310014e-06 - ArtUnc_16: -3.672400999488578e-06 - ArtUnc_17: -1.2290056127042804e-06 - ArtUnc_18: 1.4722601488573203e-06 - ArtUnc_19: 4.4097537691540505e-08 - ArtUnc_20: -1.4085635869628755e-07 - ArtUnc_21: 1.108560021567111e-07 - ArtUnc_22: 3.082403036140451e-07 - ArtUnc_23: -2.464725304453288e-07 - ArtUnc_24: -3.425162248839886e-08 - ArtUnc_25: 2.320218945419013e-08 - ArtUnc_26: 3.549187147885346e-08 - ArtUnc_27: -1.0028241696766357e-08 - ArtUnc_28: -1.120253216210327e-07 - ArtUnc_29: 9.638659864978073e-08 - ArtUnc_30: 3.871298708259092e-08 + ArtUnc_1: -2.02961570e-05 + ArtUnc_2: 9.23036054e-06 + ArtUnc_3: -4.27929021e-06 + ArtUnc_4: 2.96392177e-06 + ArtUnc_5: -3.91246008e-06 + ArtUnc_6: -3.97826373e-06 + ArtUnc_7: -7.91802110e-07 + ArtUnc_8: 6.48943708e-06 + ArtUnc_9: 5.84764621e-06 + ArtUnc_10: -1.47786990e-06 + ArtUnc_11: 9.19846583e-07 + ArtUnc_12: 5.16729911e-07 + ArtUnc_13: -2.41625499e-06 + ArtUnc_14: 2.83168145e-07 + ArtUnc_15: -2.70262509e-06 + ArtUnc_16: -3.67240100e-06 + ArtUnc_17: -1.22900561e-06 + ArtUnc_18: 1.47226015e-06 + ArtUnc_19: 4.40975377e-08 + ArtUnc_20: -1.40856359e-07 + ArtUnc_21: 1.10856002e-07 + ArtUnc_22: 3.08240304e-07 + ArtUnc_23: -2.46472530e-07 + ArtUnc_24: -3.42516225e-08 + ArtUnc_25: 2.32021895e-08 + ArtUnc_26: 3.54918715e-08 + ArtUnc_27: -1.00282417e-08 + ArtUnc_28: -1.12025322e-07 + ArtUnc_29: 9.63865986e-08 + ArtUnc_30: 3.87129871e-08 ArtUnc_31: 0.0 - ArtUnc_32: -1.2776407479453137e-09 - ArtUnc_33: -6.924496729667963e-12 - ArtUnc_34: -2.2279382065005766e-10 - ArtUnc_35: -2.138677312153233e-11 -- stat: 1.487e-05 + ArtUnc_32: -1.27764075e-09 + ArtUnc_33: -6.92449673e-12 + ArtUnc_34: -2.22793821e-10 + ArtUnc_35: -2.13867731e-11 +- stat: 1.48700000e-05 sys: 0 - ArtUnc_1: -1.6511334934406973e-05 - ArtUnc_2: 4.814500367940451e-06 - ArtUnc_3: 7.073372812912983e-06 - ArtUnc_4: 4.052766173722967e-06 - ArtUnc_5: 5.54786623517091e-07 - ArtUnc_6: 3.973970126708408e-07 - ArtUnc_7: 2.550855645199572e-06 - ArtUnc_8: -5.751627541324216e-06 - ArtUnc_9: -4.824517785844141e-06 - ArtUnc_10: -4.5264633532037204e-08 - ArtUnc_11: 3.4750090385169363e-06 - ArtUnc_12: 1.4516425570545232e-06 - ArtUnc_13: 2.09352850749892e-06 - ArtUnc_14: 1.2322195832032121e-06 - ArtUnc_15: -5.376720402182231e-06 - ArtUnc_16: 1.484066262651487e-06 - ArtUnc_17: -9.590649545366544e-07 - ArtUnc_18: 2.1155593973827425e-06 - ArtUnc_19: -7.803785808171963e-09 - ArtUnc_20: -5.5876805319808074e-08 - ArtUnc_21: 2.3377559153739303e-07 - ArtUnc_22: 1.5859784674305007e-07 - ArtUnc_23: -9.502309607243636e-08 - ArtUnc_24: -2.238097369054535e-08 - ArtUnc_25: 1.291519559191787e-09 - ArtUnc_26: 2.3934609660955628e-08 - ArtUnc_27: -2.223551319389952e-09 - ArtUnc_28: -1.1334422307790643e-07 - ArtUnc_29: 9.207418946664908e-08 - ArtUnc_30: 3.866416969014576e-08 + ArtUnc_1: -1.65113349e-05 + ArtUnc_2: 4.81450037e-06 + ArtUnc_3: 7.07337281e-06 + ArtUnc_4: 4.05276617e-06 + ArtUnc_5: 5.54786624e-07 + ArtUnc_6: 3.97397013e-07 + ArtUnc_7: 2.55085565e-06 + ArtUnc_8: -5.75162754e-06 + ArtUnc_9: -4.82451779e-06 + ArtUnc_10: -4.52646335e-08 + ArtUnc_11: 3.47500904e-06 + ArtUnc_12: 1.45164256e-06 + ArtUnc_13: 2.09352851e-06 + ArtUnc_14: 1.23221958e-06 + ArtUnc_15: -5.37672040e-06 + ArtUnc_16: 1.48406626e-06 + ArtUnc_17: -9.59064955e-07 + ArtUnc_18: 2.11555940e-06 + ArtUnc_19: -7.80378581e-09 + ArtUnc_20: -5.58768053e-08 + ArtUnc_21: 2.33775592e-07 + ArtUnc_22: 1.58597847e-07 + ArtUnc_23: -9.50230961e-08 + ArtUnc_24: -2.23809737e-08 + ArtUnc_25: 1.29151956e-09 + ArtUnc_26: 2.39346097e-08 + ArtUnc_27: -2.22355132e-09 + ArtUnc_28: -1.13344223e-07 + ArtUnc_29: 9.20741895e-08 + ArtUnc_30: 3.86641697e-08 ArtUnc_31: 0.0 - ArtUnc_32: -1.2581545400299088e-09 - ArtUnc_33: -1.5041852907270653e-11 - ArtUnc_34: -2.345003513569587e-10 - ArtUnc_35: -8.744497017389647e-11 -- stat: 1.514e-05 + ArtUnc_32: -1.25815454e-09 + ArtUnc_33: -1.50418529e-11 + ArtUnc_34: -2.34500351e-10 + ArtUnc_35: -8.74449702e-11 +- stat: 1.51400000e-05 sys: 0 - ArtUnc_1: -1.1503799356607126e-05 - ArtUnc_2: 4.335404119860076e-06 - ArtUnc_3: -2.709242290480066e-06 - ArtUnc_4: -4.150646957455469e-06 - ArtUnc_5: -2.496886740725809e-06 - ArtUnc_6: 3.2348136035486104e-06 - ArtUnc_7: 2.13723955728113e-06 - ArtUnc_8: 4.701869541692644e-06 - ArtUnc_9: 2.555967822081611e-06 - ArtUnc_10: -9.667577688704626e-07 - ArtUnc_11: -4.194285885341986e-06 - ArtUnc_12: -5.063650612590486e-06 - ArtUnc_13: 4.144678741121209e-06 - ArtUnc_14: -3.791538327345872e-06 - ArtUnc_15: -2.0838747306109404e-06 - ArtUnc_16: 3.2779681757692402e-06 - ArtUnc_17: 4.1581786721640194e-08 - ArtUnc_18: 1.4985621481380543e-07 - ArtUnc_19: -4.5348623086197474e-08 - ArtUnc_20: -3.0555176020673777e-09 - ArtUnc_21: 5.066704833075858e-08 - ArtUnc_22: -1.3664060527021715e-07 - ArtUnc_23: -1.1545656891342063e-07 - ArtUnc_24: 1.4784412672788786e-08 - ArtUnc_25: 1.4684894599143165e-08 - ArtUnc_26: 1.747543338576927e-08 - ArtUnc_27: -5.176974306141968e-08 - ArtUnc_28: -9.318195987409981e-08 - ArtUnc_29: 9.378313805869042e-08 - ArtUnc_30: 3.921730196069124e-08 + ArtUnc_1: -1.15037994e-05 + ArtUnc_2: 4.33540412e-06 + ArtUnc_3: -2.70924229e-06 + ArtUnc_4: -4.15064696e-06 + ArtUnc_5: -2.49688674e-06 + ArtUnc_6: 3.23481360e-06 + ArtUnc_7: 2.13723956e-06 + ArtUnc_8: 4.70186954e-06 + ArtUnc_9: 2.55596782e-06 + ArtUnc_10: -9.66757769e-07 + ArtUnc_11: -4.19428589e-06 + ArtUnc_12: -5.06365061e-06 + ArtUnc_13: 4.14467874e-06 + ArtUnc_14: -3.79153833e-06 + ArtUnc_15: -2.08387473e-06 + ArtUnc_16: 3.27796818e-06 + ArtUnc_17: 4.15817867e-08 + ArtUnc_18: 1.49856215e-07 + ArtUnc_19: -4.53486231e-08 + ArtUnc_20: -3.05551760e-09 + ArtUnc_21: 5.06670483e-08 + ArtUnc_22: -1.36640605e-07 + ArtUnc_23: -1.15456569e-07 + ArtUnc_24: 1.47844127e-08 + ArtUnc_25: 1.46848946e-08 + ArtUnc_26: 1.74754334e-08 + ArtUnc_27: -5.17697431e-08 + ArtUnc_28: -9.31819599e-08 + ArtUnc_29: 9.37831381e-08 + ArtUnc_30: 3.92173020e-08 ArtUnc_31: 0.0 - ArtUnc_32: -1.2415878058460392e-09 - ArtUnc_33: -5.413362611178661e-11 - ArtUnc_34: -2.4380036443715906e-10 - ArtUnc_35: -1.3553550226823322e-10 -- stat: 7.456e-06 + ArtUnc_32: -1.24158781e-09 + ArtUnc_33: -5.41336261e-11 + ArtUnc_34: -2.43800364e-10 + ArtUnc_35: -1.35535502e-10 +- stat: 7.45600000e-06 sys: 0 - ArtUnc_1: -5.540925489250257e-06 - ArtUnc_2: -1.6245003632125127e-06 - ArtUnc_3: 5.88237927086619e-07 - ArtUnc_4: 1.3902437908342886e-06 - ArtUnc_5: -1.3216068174273398e-06 - ArtUnc_6: -6.931463347200529e-07 - ArtUnc_7: 7.572703475686012e-07 - ArtUnc_8: -7.856822369171429e-07 - ArtUnc_9: -1.3838424209719159e-07 - ArtUnc_10: 3.895579145957966e-06 - ArtUnc_11: 1.4886347377690608e-07 - ArtUnc_12: 5.995679725866652e-07 - ArtUnc_13: 4.683453586937138e-07 - ArtUnc_14: 5.674957035874519e-07 - ArtUnc_15: -2.6130571905471104e-06 - ArtUnc_16: -9.698477496333364e-07 - ArtUnc_17: 2.0663007166487736e-07 - ArtUnc_18: -4.392294583129725e-06 - ArtUnc_19: 1.1703897313625624e-08 - ArtUnc_20: 2.478171961443664e-07 - ArtUnc_21: -7.570789567637052e-07 - ArtUnc_22: -3.5636623533531515e-07 - ArtUnc_23: -1.0373358772387735e-06 - ArtUnc_24: 1.0247830090500893e-07 - ArtUnc_25: 1.240612626110879e-07 - ArtUnc_26: 1.00340331271873e-07 - ArtUnc_27: -2.54390763456331e-07 - ArtUnc_28: -2.7147115069261595e-07 - ArtUnc_29: 3.188393851161131e-07 - ArtUnc_30: 1.315739260937137e-07 + ArtUnc_1: -5.54092549e-06 + ArtUnc_2: -1.62450036e-06 + ArtUnc_3: 5.88237927e-07 + ArtUnc_4: 1.39024379e-06 + ArtUnc_5: -1.32160682e-06 + ArtUnc_6: -6.93146335e-07 + ArtUnc_7: 7.57270348e-07 + ArtUnc_8: -7.85682237e-07 + ArtUnc_9: -1.38384242e-07 + ArtUnc_10: 3.89557915e-06 + ArtUnc_11: 1.48863474e-07 + ArtUnc_12: 5.99567973e-07 + ArtUnc_13: 4.68345359e-07 + ArtUnc_14: 5.67495704e-07 + ArtUnc_15: -2.61305719e-06 + ArtUnc_16: -9.69847750e-07 + ArtUnc_17: 2.06630072e-07 + ArtUnc_18: -4.39229458e-06 + ArtUnc_19: 1.17038973e-08 + ArtUnc_20: 2.47817196e-07 + ArtUnc_21: -7.57078957e-07 + ArtUnc_22: -3.56366235e-07 + ArtUnc_23: -1.03733588e-06 + ArtUnc_24: 1.02478301e-07 + ArtUnc_25: 1.24061263e-07 + ArtUnc_26: 1.00340331e-07 + ArtUnc_27: -2.54390763e-07 + ArtUnc_28: -2.71471151e-07 + ArtUnc_29: 3.18839385e-07 + ArtUnc_30: 1.31573926e-07 ArtUnc_31: 0.0 - ArtUnc_32: -4.1870473655925935e-09 - ArtUnc_33: -1.4044786303843782e-10 - ArtUnc_34: -8.045944125899843e-10 - ArtUnc_35: -2.457477617336984e-10 -- stat: 4.947e-06 + ArtUnc_32: -4.18704737e-09 + ArtUnc_33: -1.40447863e-10 + ArtUnc_34: -8.04594413e-10 + ArtUnc_35: -2.45747762e-10 +- stat: 4.94700000e-06 sys: 0 - ArtUnc_1: -2.3865909464509523e-05 - ArtUnc_2: 1.0276550218167456e-05 - ArtUnc_3: 1.2965404174561456e-07 - ArtUnc_4: 5.294198085820107e-06 - ArtUnc_5: -4.212013778387726e-06 - ArtUnc_6: 3.530577078658824e-06 - ArtUnc_7: -2.7198176455510675e-06 - ArtUnc_8: 1.603317384865069e-06 - ArtUnc_9: 2.406956719830953e-06 - ArtUnc_10: -1.3052566990771772e-06 - ArtUnc_11: 2.862201827024496e-06 - ArtUnc_12: 6.484024195075214e-07 - ArtUnc_13: 5.365058397500084e-08 - ArtUnc_14: 5.125745112974652e-06 - ArtUnc_15: 3.731908006361614e-06 - ArtUnc_16: 3.3131294703683616e-06 - ArtUnc_17: 1.2339105330195842e-06 - ArtUnc_18: -3.9289236997279006e-07 - ArtUnc_19: -1.4851785516249325e-07 - ArtUnc_20: 7.445952504437471e-09 - ArtUnc_21: -4.482909840949499e-08 - ArtUnc_22: -2.1131805386801755e-07 - ArtUnc_23: -1.9120789200044242e-07 - ArtUnc_24: 1.5676510241775918e-08 - ArtUnc_25: 6.435308086240898e-08 - ArtUnc_26: 2.631757605571115e-08 - ArtUnc_27: -5.876226473020582e-08 - ArtUnc_28: -3.5657511521591655e-09 - ArtUnc_29: 9.622949254291427e-08 - ArtUnc_30: 3.945590614545117e-08 + ArtUnc_1: -2.38659095e-05 + ArtUnc_2: 1.02765502e-05 + ArtUnc_3: 1.29654042e-07 + ArtUnc_4: 5.29419809e-06 + ArtUnc_5: -4.21201378e-06 + ArtUnc_6: 3.53057708e-06 + ArtUnc_7: -2.71981765e-06 + ArtUnc_8: 1.60331738e-06 + ArtUnc_9: 2.40695672e-06 + ArtUnc_10: -1.30525670e-06 + ArtUnc_11: 2.86220183e-06 + ArtUnc_12: 6.48402420e-07 + ArtUnc_13: 5.36505840e-08 + ArtUnc_14: 5.12574511e-06 + ArtUnc_15: 3.73190801e-06 + ArtUnc_16: 3.31312947e-06 + ArtUnc_17: 1.23391053e-06 + ArtUnc_18: -3.92892370e-07 + ArtUnc_19: -1.48517855e-07 + ArtUnc_20: 7.44595250e-09 + ArtUnc_21: -4.48290984e-08 + ArtUnc_22: -2.11318054e-07 + ArtUnc_23: -1.91207892e-07 + ArtUnc_24: 1.56765102e-08 + ArtUnc_25: 6.43530809e-08 + ArtUnc_26: 2.63175761e-08 + ArtUnc_27: -5.87622647e-08 + ArtUnc_28: -3.56575115e-09 + ArtUnc_29: 9.62294925e-08 + ArtUnc_30: 3.94559061e-08 ArtUnc_31: 0.0 - ArtUnc_32: -1.2761230945770884e-09 - ArtUnc_33: -2.3429419028239327e-11 - ArtUnc_34: -1.6278479224313607e-10 - ArtUnc_35: 9.055622950571007e-11 -- stat: 5.448e-06 + ArtUnc_32: -1.27612309e-09 + ArtUnc_33: -2.34294190e-11 + ArtUnc_34: -1.62784792e-10 + ArtUnc_35: 9.05562295e-11 +- stat: 5.44800000e-06 sys: 0 - ArtUnc_1: -2.1881212164648737e-05 - ArtUnc_2: 8.180861627380455e-06 - ArtUnc_3: 7.647291109076548e-06 - ArtUnc_4: -2.7254388256827677e-06 - ArtUnc_5: -6.0583239657239215e-06 - ArtUnc_6: -1.3139491687182842e-06 - ArtUnc_7: -1.8917476140444878e-06 - ArtUnc_8: -5.957948289272803e-06 - ArtUnc_9: -4.670105239786517e-06 - ArtUnc_10: -1.5259695929475443e-06 - ArtUnc_11: -2.6447208352909187e-06 - ArtUnc_12: -5.226739475550977e-06 - ArtUnc_13: -2.3170548385340544e-06 - ArtUnc_14: -1.4350043588046347e-06 - ArtUnc_15: 2.8279532949496756e-06 - ArtUnc_16: -2.2532822740354093e-06 - ArtUnc_17: -2.4328026253519922e-08 - ArtUnc_18: 8.636743051998877e-08 - ArtUnc_19: 2.1399693402405588e-08 - ArtUnc_20: -1.141636103869918e-07 - ArtUnc_21: -1.9475512933579374e-08 - ArtUnc_22: 9.619721798135583e-08 - ArtUnc_23: -2.5185407541708303e-07 - ArtUnc_24: -1.5880131520329867e-08 - ArtUnc_25: 7.097665584755015e-08 - ArtUnc_26: 3.407121311876624e-08 - ArtUnc_27: -3.80861546139954e-08 - ArtUnc_28: -6.011095496295243e-08 - ArtUnc_29: 9.66858020871205e-08 - ArtUnc_30: 3.8711843000506296e-08 + ArtUnc_1: -2.18812122e-05 + ArtUnc_2: 8.18086163e-06 + ArtUnc_3: 7.64729111e-06 + ArtUnc_4: -2.72543883e-06 + ArtUnc_5: -6.05832397e-06 + ArtUnc_6: -1.31394917e-06 + ArtUnc_7: -1.89174761e-06 + ArtUnc_8: -5.95794829e-06 + ArtUnc_9: -4.67010524e-06 + ArtUnc_10: -1.52596959e-06 + ArtUnc_11: -2.64472084e-06 + ArtUnc_12: -5.22673948e-06 + ArtUnc_13: -2.31705484e-06 + ArtUnc_14: -1.43500436e-06 + ArtUnc_15: 2.82795329e-06 + ArtUnc_16: -2.25328227e-06 + ArtUnc_17: -2.43280263e-08 + ArtUnc_18: 8.63674305e-08 + ArtUnc_19: 2.13996934e-08 + ArtUnc_20: -1.14163610e-07 + ArtUnc_21: -1.94755129e-08 + ArtUnc_22: 9.61972180e-08 + ArtUnc_23: -2.51854075e-07 + ArtUnc_24: -1.58801315e-08 + ArtUnc_25: 7.09766558e-08 + ArtUnc_26: 3.40712131e-08 + ArtUnc_27: -3.80861546e-08 + ArtUnc_28: -6.01109550e-08 + ArtUnc_29: 9.66858021e-08 + ArtUnc_30: 3.87118430e-08 ArtUnc_31: 0.0 - ArtUnc_32: -1.28053868263535e-09 - ArtUnc_33: -2.3952634433197567e-11 - ArtUnc_34: -1.6650617910024465e-10 - ArtUnc_35: 5.6620457573113696e-11 -- stat: 5.276e-06 + ArtUnc_32: -1.28053868e-09 + ArtUnc_33: -2.39526344e-11 + ArtUnc_34: -1.66506179e-10 + ArtUnc_35: 5.66204576e-11 +- stat: 5.27600000e-06 sys: 0 - ArtUnc_1: -2.0296156978342916e-05 - ArtUnc_2: 9.230360535720729e-06 - ArtUnc_3: -4.2792902076713875e-06 - ArtUnc_4: 2.963921772708777e-06 - ArtUnc_5: -3.912460083215847e-06 - ArtUnc_6: -3.978263732140879e-06 - ArtUnc_7: -7.91802110109477e-07 - ArtUnc_8: 6.489437083738625e-06 - ArtUnc_9: 5.847646207124603e-06 - ArtUnc_10: -1.4778699008737953e-06 - ArtUnc_11: 9.198465829673233e-07 - ArtUnc_12: 5.167299106844218e-07 - ArtUnc_13: -2.416254992293404e-06 - ArtUnc_14: 2.8316814520687335e-07 - ArtUnc_15: -2.7026250918310014e-06 - ArtUnc_16: -3.672400999488578e-06 - ArtUnc_17: -1.2290056127042804e-06 - ArtUnc_18: 1.4722601488573203e-06 - ArtUnc_19: 4.4097537691540505e-08 - ArtUnc_20: -1.4085635869628755e-07 - ArtUnc_21: 1.108560021567111e-07 - ArtUnc_22: 3.082403036140451e-07 - ArtUnc_23: -2.464725304453288e-07 - ArtUnc_24: -3.425162248839886e-08 - ArtUnc_25: 2.320218945419013e-08 - ArtUnc_26: 3.549187147885346e-08 - ArtUnc_27: -1.0028241696766357e-08 - ArtUnc_28: -1.120253216210327e-07 - ArtUnc_29: 9.638659864978073e-08 - ArtUnc_30: 3.871298708259092e-08 + ArtUnc_1: -2.02961570e-05 + ArtUnc_2: 9.23036054e-06 + ArtUnc_3: -4.27929021e-06 + ArtUnc_4: 2.96392177e-06 + ArtUnc_5: -3.91246008e-06 + ArtUnc_6: -3.97826373e-06 + ArtUnc_7: -7.91802110e-07 + ArtUnc_8: 6.48943708e-06 + ArtUnc_9: 5.84764621e-06 + ArtUnc_10: -1.47786990e-06 + ArtUnc_11: 9.19846583e-07 + ArtUnc_12: 5.16729911e-07 + ArtUnc_13: -2.41625499e-06 + ArtUnc_14: 2.83168145e-07 + ArtUnc_15: -2.70262509e-06 + ArtUnc_16: -3.67240100e-06 + ArtUnc_17: -1.22900561e-06 + ArtUnc_18: 1.47226015e-06 + ArtUnc_19: 4.40975377e-08 + ArtUnc_20: -1.40856359e-07 + ArtUnc_21: 1.10856002e-07 + ArtUnc_22: 3.08240304e-07 + ArtUnc_23: -2.46472530e-07 + ArtUnc_24: -3.42516225e-08 + ArtUnc_25: 2.32021895e-08 + ArtUnc_26: 3.54918715e-08 + ArtUnc_27: -1.00282417e-08 + ArtUnc_28: -1.12025322e-07 + ArtUnc_29: 9.63865986e-08 + ArtUnc_30: 3.87129871e-08 ArtUnc_31: 0.0 - ArtUnc_32: -1.2776407479453137e-09 - ArtUnc_33: -6.924496729667963e-12 - ArtUnc_34: -2.2279382065005766e-10 - ArtUnc_35: -2.138677312153233e-11 -- stat: 5.158e-06 + ArtUnc_32: -1.27764075e-09 + ArtUnc_33: -6.92449673e-12 + ArtUnc_34: -2.22793821e-10 + ArtUnc_35: -2.13867731e-11 +- stat: 5.15800000e-06 sys: 0 - ArtUnc_1: -1.6511334934406973e-05 - ArtUnc_2: 4.814500367940451e-06 - ArtUnc_3: 7.073372812912983e-06 - ArtUnc_4: 4.052766173722967e-06 - ArtUnc_5: 5.54786623517091e-07 - ArtUnc_6: 3.973970126708408e-07 - ArtUnc_7: 2.550855645199572e-06 - ArtUnc_8: -5.751627541324216e-06 - ArtUnc_9: -4.824517785844141e-06 - ArtUnc_10: -4.5264633532037204e-08 - ArtUnc_11: 3.4750090385169363e-06 - ArtUnc_12: 1.4516425570545232e-06 - ArtUnc_13: 2.09352850749892e-06 - ArtUnc_14: 1.2322195832032121e-06 - ArtUnc_15: -5.376720402182231e-06 - ArtUnc_16: 1.484066262651487e-06 - ArtUnc_17: -9.590649545366544e-07 - ArtUnc_18: 2.1155593973827425e-06 - ArtUnc_19: -7.803785808171963e-09 - ArtUnc_20: -5.5876805319808074e-08 - ArtUnc_21: 2.3377559153739303e-07 - ArtUnc_22: 1.5859784674305007e-07 - ArtUnc_23: -9.502309607243636e-08 - ArtUnc_24: -2.238097369054535e-08 - ArtUnc_25: 1.291519559191787e-09 - ArtUnc_26: 2.3934609660955628e-08 - ArtUnc_27: -2.223551319389952e-09 - ArtUnc_28: -1.1334422307790643e-07 - ArtUnc_29: 9.207418946664908e-08 - ArtUnc_30: 3.866416969014576e-08 + ArtUnc_1: -1.65113349e-05 + ArtUnc_2: 4.81450037e-06 + ArtUnc_3: 7.07337281e-06 + ArtUnc_4: 4.05276617e-06 + ArtUnc_5: 5.54786624e-07 + ArtUnc_6: 3.97397013e-07 + ArtUnc_7: 2.55085565e-06 + ArtUnc_8: -5.75162754e-06 + ArtUnc_9: -4.82451779e-06 + ArtUnc_10: -4.52646335e-08 + ArtUnc_11: 3.47500904e-06 + ArtUnc_12: 1.45164256e-06 + ArtUnc_13: 2.09352851e-06 + ArtUnc_14: 1.23221958e-06 + ArtUnc_15: -5.37672040e-06 + ArtUnc_16: 1.48406626e-06 + ArtUnc_17: -9.59064955e-07 + ArtUnc_18: 2.11555940e-06 + ArtUnc_19: -7.80378581e-09 + ArtUnc_20: -5.58768053e-08 + ArtUnc_21: 2.33775592e-07 + ArtUnc_22: 1.58597847e-07 + ArtUnc_23: -9.50230961e-08 + ArtUnc_24: -2.23809737e-08 + ArtUnc_25: 1.29151956e-09 + ArtUnc_26: 2.39346097e-08 + ArtUnc_27: -2.22355132e-09 + ArtUnc_28: -1.13344223e-07 + ArtUnc_29: 9.20741895e-08 + ArtUnc_30: 3.86641697e-08 ArtUnc_31: 0.0 - ArtUnc_32: -1.2581545400299088e-09 - ArtUnc_33: -1.5041852907270653e-11 - ArtUnc_34: -2.345003513569587e-10 - ArtUnc_35: -8.744497017389647e-11 + ArtUnc_32: -1.25815454e-09 + ArtUnc_33: -1.50418529e-11 + ArtUnc_34: -2.34500351e-10 + ArtUnc_35: -8.74449702e-11 - stat: 5.07e-06 sys: 0 - ArtUnc_1: -1.1503799356607126e-05 - ArtUnc_2: 4.335404119860076e-06 - ArtUnc_3: -2.709242290480066e-06 - ArtUnc_4: -4.150646957455469e-06 - ArtUnc_5: -2.496886740725809e-06 - ArtUnc_6: 3.2348136035486104e-06 - ArtUnc_7: 2.13723955728113e-06 - ArtUnc_8: 4.701869541692644e-06 - ArtUnc_9: 2.555967822081611e-06 - ArtUnc_10: -9.667577688704626e-07 - ArtUnc_11: -4.194285885341986e-06 - ArtUnc_12: -5.063650612590486e-06 - ArtUnc_13: 4.144678741121209e-06 - ArtUnc_14: -3.791538327345872e-06 - ArtUnc_15: -2.0838747306109404e-06 - ArtUnc_16: 3.2779681757692402e-06 - ArtUnc_17: 4.1581786721640194e-08 - ArtUnc_18: 1.4985621481380543e-07 - ArtUnc_19: -4.5348623086197474e-08 - ArtUnc_20: -3.0555176020673777e-09 - ArtUnc_21: 5.066704833075858e-08 - ArtUnc_22: -1.3664060527021715e-07 - ArtUnc_23: -1.1545656891342063e-07 - ArtUnc_24: 1.4784412672788786e-08 - ArtUnc_25: 1.4684894599143165e-08 - ArtUnc_26: 1.747543338576927e-08 - ArtUnc_27: -5.176974306141968e-08 - ArtUnc_28: -9.318195987409981e-08 - ArtUnc_29: 9.378313805869042e-08 - ArtUnc_30: 3.921730196069124e-08 + ArtUnc_1: -1.15037994e-05 + ArtUnc_2: 4.33540412e-06 + ArtUnc_3: -2.70924229e-06 + ArtUnc_4: -4.15064696e-06 + ArtUnc_5: -2.49688674e-06 + ArtUnc_6: 3.23481360e-06 + ArtUnc_7: 2.13723956e-06 + ArtUnc_8: 4.70186954e-06 + ArtUnc_9: 2.55596782e-06 + ArtUnc_10: -9.66757769e-07 + ArtUnc_11: -4.19428589e-06 + ArtUnc_12: -5.06365061e-06 + ArtUnc_13: 4.14467874e-06 + ArtUnc_14: -3.79153833e-06 + ArtUnc_15: -2.08387473e-06 + ArtUnc_16: 3.27796818e-06 + ArtUnc_17: 4.15817867e-08 + ArtUnc_18: 1.49856215e-07 + ArtUnc_19: -4.53486231e-08 + ArtUnc_20: -3.05551760e-09 + ArtUnc_21: 5.06670483e-08 + ArtUnc_22: -1.36640605e-07 + ArtUnc_23: -1.15456569e-07 + ArtUnc_24: 1.47844127e-08 + ArtUnc_25: 1.46848946e-08 + ArtUnc_26: 1.74754334e-08 + ArtUnc_27: -5.17697431e-08 + ArtUnc_28: -9.31819599e-08 + ArtUnc_29: 9.37831381e-08 + ArtUnc_30: 3.92173020e-08 ArtUnc_31: 0.0 - ArtUnc_32: -1.2415878058460392e-09 - ArtUnc_33: -5.413362611178661e-11 - ArtUnc_34: -2.4380036443715906e-10 - ArtUnc_35: -1.3553550226823322e-10 -- stat: 2.126e-06 + ArtUnc_32: -1.24158781e-09 + ArtUnc_33: -5.41336261e-11 + ArtUnc_34: -2.43800364e-10 + ArtUnc_35: -1.35535502e-10 +- stat: 2.12600000e-06 sys: 0 - ArtUnc_1: -5.540925489250257e-06 - ArtUnc_2: -1.6245003632125127e-06 - ArtUnc_3: 5.88237927086619e-07 - ArtUnc_4: 1.3902437908342886e-06 - ArtUnc_5: -1.3216068174273398e-06 - ArtUnc_6: -6.931463347200529e-07 - ArtUnc_7: 7.572703475686012e-07 - ArtUnc_8: -7.856822369171429e-07 - ArtUnc_9: -1.3838424209719159e-07 - ArtUnc_10: 3.895579145957966e-06 - ArtUnc_11: 1.4886347377690608e-07 - ArtUnc_12: 5.995679725866652e-07 - ArtUnc_13: 4.683453586937138e-07 - ArtUnc_14: 5.674957035874519e-07 - ArtUnc_15: -2.6130571905471104e-06 - ArtUnc_16: -9.698477496333364e-07 - ArtUnc_17: 2.0663007166487736e-07 - ArtUnc_18: -4.392294583129725e-06 - ArtUnc_19: 1.1703897313625624e-08 - ArtUnc_20: 2.478171961443664e-07 - ArtUnc_21: -7.570789567637052e-07 - ArtUnc_22: -3.5636623533531515e-07 - ArtUnc_23: -1.0373358772387735e-06 - ArtUnc_24: 1.0247830090500893e-07 - ArtUnc_25: 1.240612626110879e-07 - ArtUnc_26: 1.00340331271873e-07 - ArtUnc_27: -2.54390763456331e-07 - ArtUnc_28: -2.7147115069261595e-07 - ArtUnc_29: 3.188393851161131e-07 - ArtUnc_30: 1.315739260937137e-07 + ArtUnc_1: -5.54092549e-06 + ArtUnc_2: -1.62450036e-06 + ArtUnc_3: 5.88237927e-07 + ArtUnc_4: 1.39024379e-06 + ArtUnc_5: -1.32160682e-06 + ArtUnc_6: -6.93146335e-07 + ArtUnc_7: 7.57270348e-07 + ArtUnc_8: -7.85682237e-07 + ArtUnc_9: -1.38384242e-07 + ArtUnc_10: 3.89557915e-06 + ArtUnc_11: 1.48863474e-07 + ArtUnc_12: 5.99567973e-07 + ArtUnc_13: 4.68345359e-07 + ArtUnc_14: 5.67495704e-07 + ArtUnc_15: -2.61305719e-06 + ArtUnc_16: -9.69847750e-07 + ArtUnc_17: 2.06630072e-07 + ArtUnc_18: -4.39229458e-06 + ArtUnc_19: 1.17038973e-08 + ArtUnc_20: 2.47817196e-07 + ArtUnc_21: -7.57078957e-07 + ArtUnc_22: -3.56366235e-07 + ArtUnc_23: -1.03733588e-06 + ArtUnc_24: 1.02478301e-07 + ArtUnc_25: 1.24061263e-07 + ArtUnc_26: 1.00340331e-07 + ArtUnc_27: -2.54390763e-07 + ArtUnc_28: -2.71471151e-07 + ArtUnc_29: 3.18839385e-07 + ArtUnc_30: 1.31573926e-07 ArtUnc_31: 0.0 - ArtUnc_32: -4.1870473655925935e-09 - ArtUnc_33: -1.4044786303843782e-10 - ArtUnc_34: -8.045944125899843e-10 - ArtUnc_35: -2.457477617336984e-10 + ArtUnc_32: -4.18704737e-09 + ArtUnc_33: -1.40447863e-10 + ArtUnc_34: -8.04594413e-10 + ArtUnc_35: -2.45747762e-10 - stat: 2.48e-06 sys: 0 - ArtUnc_1: -2.3865909464509523e-05 - ArtUnc_2: 1.0276550218167456e-05 - ArtUnc_3: 1.2965404174561456e-07 - ArtUnc_4: 5.294198085820107e-06 - ArtUnc_5: -4.212013778387726e-06 - ArtUnc_6: 3.530577078658824e-06 - ArtUnc_7: -2.7198176455510675e-06 - ArtUnc_8: 1.603317384865069e-06 - ArtUnc_9: 2.406956719830953e-06 - ArtUnc_10: -1.3052566990771772e-06 - ArtUnc_11: 2.862201827024496e-06 - ArtUnc_12: 6.484024195075214e-07 - ArtUnc_13: 5.365058397500084e-08 - ArtUnc_14: 5.125745112974652e-06 - ArtUnc_15: 3.731908006361614e-06 - ArtUnc_16: 3.3131294703683616e-06 - ArtUnc_17: 1.2339105330195842e-06 - ArtUnc_18: -3.9289236997279006e-07 - ArtUnc_19: -1.4851785516249325e-07 - ArtUnc_20: 7.445952504437471e-09 - ArtUnc_21: -4.482909840949499e-08 - ArtUnc_22: -2.1131805386801755e-07 - ArtUnc_23: -1.9120789200044242e-07 - ArtUnc_24: 1.5676510241775918e-08 - ArtUnc_25: 6.435308086240898e-08 - ArtUnc_26: 2.631757605571115e-08 - ArtUnc_27: -5.876226473020582e-08 - ArtUnc_28: -3.5657511521591655e-09 - ArtUnc_29: 9.622949254291427e-08 - ArtUnc_30: 3.945590614545117e-08 + ArtUnc_1: -2.38659095e-05 + ArtUnc_2: 1.02765502e-05 + ArtUnc_3: 1.29654042e-07 + ArtUnc_4: 5.29419809e-06 + ArtUnc_5: -4.21201378e-06 + ArtUnc_6: 3.53057708e-06 + ArtUnc_7: -2.71981765e-06 + ArtUnc_8: 1.60331738e-06 + ArtUnc_9: 2.40695672e-06 + ArtUnc_10: -1.30525670e-06 + ArtUnc_11: 2.86220183e-06 + ArtUnc_12: 6.48402420e-07 + ArtUnc_13: 5.36505840e-08 + ArtUnc_14: 5.12574511e-06 + ArtUnc_15: 3.73190801e-06 + ArtUnc_16: 3.31312947e-06 + ArtUnc_17: 1.23391053e-06 + ArtUnc_18: -3.92892370e-07 + ArtUnc_19: -1.48517855e-07 + ArtUnc_20: 7.44595250e-09 + ArtUnc_21: -4.48290984e-08 + ArtUnc_22: -2.11318054e-07 + ArtUnc_23: -1.91207892e-07 + ArtUnc_24: 1.56765102e-08 + ArtUnc_25: 6.43530809e-08 + ArtUnc_26: 2.63175761e-08 + ArtUnc_27: -5.87622647e-08 + ArtUnc_28: -3.56575115e-09 + ArtUnc_29: 9.62294925e-08 + ArtUnc_30: 3.94559061e-08 ArtUnc_31: 0.0 - ArtUnc_32: -1.2761230945770884e-09 - ArtUnc_33: -2.3429419028239327e-11 - ArtUnc_34: -1.6278479224313607e-10 - ArtUnc_35: 9.055622950571007e-11 -- stat: 2.758e-06 + ArtUnc_32: -1.27612309e-09 + ArtUnc_33: -2.34294190e-11 + ArtUnc_34: -1.62784792e-10 + ArtUnc_35: 9.05562295e-11 +- stat: 2.75800000e-06 sys: 0 - ArtUnc_1: -2.1881212164648737e-05 - ArtUnc_2: 8.180861627380455e-06 - ArtUnc_3: 7.647291109076548e-06 - ArtUnc_4: -2.7254388256827677e-06 - ArtUnc_5: -6.0583239657239215e-06 - ArtUnc_6: -1.3139491687182842e-06 - ArtUnc_7: -1.8917476140444878e-06 - ArtUnc_8: -5.957948289272803e-06 - ArtUnc_9: -4.670105239786517e-06 - ArtUnc_10: -1.5259695929475443e-06 - ArtUnc_11: -2.6447208352909187e-06 - ArtUnc_12: -5.226739475550977e-06 - ArtUnc_13: -2.3170548385340544e-06 - ArtUnc_14: -1.4350043588046347e-06 - ArtUnc_15: 2.8279532949496756e-06 - ArtUnc_16: -2.2532822740354093e-06 - ArtUnc_17: -2.4328026253519922e-08 - ArtUnc_18: 8.636743051998877e-08 - ArtUnc_19: 2.1399693402405588e-08 - ArtUnc_20: -1.141636103869918e-07 - ArtUnc_21: -1.9475512933579374e-08 - ArtUnc_22: 9.619721798135583e-08 - ArtUnc_23: -2.5185407541708303e-07 - ArtUnc_24: -1.5880131520329867e-08 - ArtUnc_25: 7.097665584755015e-08 - ArtUnc_26: 3.407121311876624e-08 - ArtUnc_27: -3.80861546139954e-08 - ArtUnc_28: -6.011095496295243e-08 - ArtUnc_29: 9.66858020871205e-08 - ArtUnc_30: 3.8711843000506296e-08 + ArtUnc_1: -2.18812122e-05 + ArtUnc_2: 8.18086163e-06 + ArtUnc_3: 7.64729111e-06 + ArtUnc_4: -2.72543883e-06 + ArtUnc_5: -6.05832397e-06 + ArtUnc_6: -1.31394917e-06 + ArtUnc_7: -1.89174761e-06 + ArtUnc_8: -5.95794829e-06 + ArtUnc_9: -4.67010524e-06 + ArtUnc_10: -1.52596959e-06 + ArtUnc_11: -2.64472084e-06 + ArtUnc_12: -5.22673948e-06 + ArtUnc_13: -2.31705484e-06 + ArtUnc_14: -1.43500436e-06 + ArtUnc_15: 2.82795329e-06 + ArtUnc_16: -2.25328227e-06 + ArtUnc_17: -2.43280263e-08 + ArtUnc_18: 8.63674305e-08 + ArtUnc_19: 2.13996934e-08 + ArtUnc_20: -1.14163610e-07 + ArtUnc_21: -1.94755129e-08 + ArtUnc_22: 9.61972180e-08 + ArtUnc_23: -2.51854075e-07 + ArtUnc_24: -1.58801315e-08 + ArtUnc_25: 7.09766558e-08 + ArtUnc_26: 3.40712131e-08 + ArtUnc_27: -3.80861546e-08 + ArtUnc_28: -6.01109550e-08 + ArtUnc_29: 9.66858021e-08 + ArtUnc_30: 3.87118430e-08 ArtUnc_31: 0.0 - ArtUnc_32: -1.28053868263535e-09 - ArtUnc_33: -2.3952634433197567e-11 - ArtUnc_34: -1.6650617910024465e-10 - ArtUnc_35: 5.6620457573113696e-11 -- stat: 2.656e-06 + ArtUnc_32: -1.28053868e-09 + ArtUnc_33: -2.39526344e-11 + ArtUnc_34: -1.66506179e-10 + ArtUnc_35: 5.66204576e-11 +- stat: 2.65600000e-06 sys: 0 - ArtUnc_1: -2.0296156978342916e-05 - ArtUnc_2: 9.230360535720729e-06 - ArtUnc_3: -4.2792902076713875e-06 - ArtUnc_4: 2.963921772708777e-06 - ArtUnc_5: -3.912460083215847e-06 - ArtUnc_6: -3.978263732140879e-06 - ArtUnc_7: -7.91802110109477e-07 - ArtUnc_8: 6.489437083738625e-06 - ArtUnc_9: 5.847646207124603e-06 - ArtUnc_10: -1.4778699008737953e-06 - ArtUnc_11: 9.198465829673233e-07 - ArtUnc_12: 5.167299106844218e-07 - ArtUnc_13: -2.416254992293404e-06 - ArtUnc_14: 2.8316814520687335e-07 - ArtUnc_15: -2.7026250918310014e-06 - ArtUnc_16: -3.672400999488578e-06 - ArtUnc_17: -1.2290056127042804e-06 - ArtUnc_18: 1.4722601488573203e-06 - ArtUnc_19: 4.4097537691540505e-08 - ArtUnc_20: -1.4085635869628755e-07 - ArtUnc_21: 1.108560021567111e-07 - ArtUnc_22: 3.082403036140451e-07 - ArtUnc_23: -2.464725304453288e-07 - ArtUnc_24: -3.425162248839886e-08 - ArtUnc_25: 2.320218945419013e-08 - ArtUnc_26: 3.549187147885346e-08 - ArtUnc_27: -1.0028241696766357e-08 - ArtUnc_28: -1.120253216210327e-07 - ArtUnc_29: 9.638659864978073e-08 - ArtUnc_30: 3.871298708259092e-08 + ArtUnc_1: -2.02961570e-05 + ArtUnc_2: 9.23036054e-06 + ArtUnc_3: -4.27929021e-06 + ArtUnc_4: 2.96392177e-06 + ArtUnc_5: -3.91246008e-06 + ArtUnc_6: -3.97826373e-06 + ArtUnc_7: -7.91802110e-07 + ArtUnc_8: 6.48943708e-06 + ArtUnc_9: 5.84764621e-06 + ArtUnc_10: -1.47786990e-06 + ArtUnc_11: 9.19846583e-07 + ArtUnc_12: 5.16729911e-07 + ArtUnc_13: -2.41625499e-06 + ArtUnc_14: 2.83168145e-07 + ArtUnc_15: -2.70262509e-06 + ArtUnc_16: -3.67240100e-06 + ArtUnc_17: -1.22900561e-06 + ArtUnc_18: 1.47226015e-06 + ArtUnc_19: 4.40975377e-08 + ArtUnc_20: -1.40856359e-07 + ArtUnc_21: 1.10856002e-07 + ArtUnc_22: 3.08240304e-07 + ArtUnc_23: -2.46472530e-07 + ArtUnc_24: -3.42516225e-08 + ArtUnc_25: 2.32021895e-08 + ArtUnc_26: 3.54918715e-08 + ArtUnc_27: -1.00282417e-08 + ArtUnc_28: -1.12025322e-07 + ArtUnc_29: 9.63865986e-08 + ArtUnc_30: 3.87129871e-08 ArtUnc_31: 0.0 - ArtUnc_32: -1.2776407479453137e-09 - ArtUnc_33: -6.924496729667963e-12 - ArtUnc_34: -2.2279382065005766e-10 - ArtUnc_35: -2.138677312153233e-11 -- stat: 2.516e-06 + ArtUnc_32: -1.27764075e-09 + ArtUnc_33: -6.92449673e-12 + ArtUnc_34: -2.22793821e-10 + ArtUnc_35: -2.13867731e-11 +- stat: 2.51600000e-06 sys: 0 - ArtUnc_1: -1.6511334934406973e-05 - ArtUnc_2: 4.814500367940451e-06 - ArtUnc_3: 7.073372812912983e-06 - ArtUnc_4: 4.052766173722967e-06 - ArtUnc_5: 5.54786623517091e-07 - ArtUnc_6: 3.973970126708408e-07 - ArtUnc_7: 2.550855645199572e-06 - ArtUnc_8: -5.751627541324216e-06 - ArtUnc_9: -4.824517785844141e-06 - ArtUnc_10: -4.5264633532037204e-08 - ArtUnc_11: 3.4750090385169363e-06 - ArtUnc_12: 1.4516425570545232e-06 - ArtUnc_13: 2.09352850749892e-06 - ArtUnc_14: 1.2322195832032121e-06 - ArtUnc_15: -5.376720402182231e-06 - ArtUnc_16: 1.484066262651487e-06 - ArtUnc_17: -9.590649545366544e-07 - ArtUnc_18: 2.1155593973827425e-06 - ArtUnc_19: -7.803785808171963e-09 - ArtUnc_20: -5.5876805319808074e-08 - ArtUnc_21: 2.3377559153739303e-07 - ArtUnc_22: 1.5859784674305007e-07 - ArtUnc_23: -9.502309607243636e-08 - ArtUnc_24: -2.238097369054535e-08 - ArtUnc_25: 1.291519559191787e-09 - ArtUnc_26: 2.3934609660955628e-08 - ArtUnc_27: -2.223551319389952e-09 - ArtUnc_28: -1.1334422307790643e-07 - ArtUnc_29: 9.207418946664908e-08 - ArtUnc_30: 3.866416969014576e-08 + ArtUnc_1: -1.65113349e-05 + ArtUnc_2: 4.81450037e-06 + ArtUnc_3: 7.07337281e-06 + ArtUnc_4: 4.05276617e-06 + ArtUnc_5: 5.54786624e-07 + ArtUnc_6: 3.97397013e-07 + ArtUnc_7: 2.55085565e-06 + ArtUnc_8: -5.75162754e-06 + ArtUnc_9: -4.82451779e-06 + ArtUnc_10: -4.52646335e-08 + ArtUnc_11: 3.47500904e-06 + ArtUnc_12: 1.45164256e-06 + ArtUnc_13: 2.09352851e-06 + ArtUnc_14: 1.23221958e-06 + ArtUnc_15: -5.37672040e-06 + ArtUnc_16: 1.48406626e-06 + ArtUnc_17: -9.59064955e-07 + ArtUnc_18: 2.11555940e-06 + ArtUnc_19: -7.80378581e-09 + ArtUnc_20: -5.58768053e-08 + ArtUnc_21: 2.33775592e-07 + ArtUnc_22: 1.58597847e-07 + ArtUnc_23: -9.50230961e-08 + ArtUnc_24: -2.23809737e-08 + ArtUnc_25: 1.29151956e-09 + ArtUnc_26: 2.39346097e-08 + ArtUnc_27: -2.22355132e-09 + ArtUnc_28: -1.13344223e-07 + ArtUnc_29: 9.20741895e-08 + ArtUnc_30: 3.86641697e-08 ArtUnc_31: 0.0 - ArtUnc_32: -1.2581545400299088e-09 - ArtUnc_33: -1.5041852907270653e-11 - ArtUnc_34: -2.345003513569587e-10 - ArtUnc_35: -8.744497017389647e-11 -- stat: 2.323e-06 + ArtUnc_32: -1.25815454e-09 + ArtUnc_33: -1.50418529e-11 + ArtUnc_34: -2.34500351e-10 + ArtUnc_35: -8.74449702e-11 +- stat: 2.32300000e-06 sys: 0 - ArtUnc_1: -1.1503799356607126e-05 - ArtUnc_2: 4.335404119860076e-06 - ArtUnc_3: -2.709242290480066e-06 - ArtUnc_4: -4.150646957455469e-06 - ArtUnc_5: -2.496886740725809e-06 - ArtUnc_6: 3.2348136035486104e-06 - ArtUnc_7: 2.13723955728113e-06 - ArtUnc_8: 4.701869541692644e-06 - ArtUnc_9: 2.555967822081611e-06 - ArtUnc_10: -9.667577688704626e-07 - ArtUnc_11: -4.194285885341986e-06 - ArtUnc_12: -5.063650612590486e-06 - ArtUnc_13: 4.144678741121209e-06 - ArtUnc_14: -3.791538327345872e-06 - ArtUnc_15: -2.0838747306109404e-06 - ArtUnc_16: 3.2779681757692402e-06 - ArtUnc_17: 4.1581786721640194e-08 - ArtUnc_18: 1.4985621481380543e-07 - ArtUnc_19: -4.5348623086197474e-08 - ArtUnc_20: -3.0555176020673777e-09 - ArtUnc_21: 5.066704833075858e-08 - ArtUnc_22: -1.3664060527021715e-07 - ArtUnc_23: -1.1545656891342063e-07 - ArtUnc_24: 1.4784412672788786e-08 - ArtUnc_25: 1.4684894599143165e-08 - ArtUnc_26: 1.747543338576927e-08 - ArtUnc_27: -5.176974306141968e-08 - ArtUnc_28: -9.318195987409981e-08 - ArtUnc_29: 9.378313805869042e-08 - ArtUnc_30: 3.921730196069124e-08 + ArtUnc_1: -1.15037994e-05 + ArtUnc_2: 4.33540412e-06 + ArtUnc_3: -2.70924229e-06 + ArtUnc_4: -4.15064696e-06 + ArtUnc_5: -2.49688674e-06 + ArtUnc_6: 3.23481360e-06 + ArtUnc_7: 2.13723956e-06 + ArtUnc_8: 4.70186954e-06 + ArtUnc_9: 2.55596782e-06 + ArtUnc_10: -9.66757769e-07 + ArtUnc_11: -4.19428589e-06 + ArtUnc_12: -5.06365061e-06 + ArtUnc_13: 4.14467874e-06 + ArtUnc_14: -3.79153833e-06 + ArtUnc_15: -2.08387473e-06 + ArtUnc_16: 3.27796818e-06 + ArtUnc_17: 4.15817867e-08 + ArtUnc_18: 1.49856215e-07 + ArtUnc_19: -4.53486231e-08 + ArtUnc_20: -3.05551760e-09 + ArtUnc_21: 5.06670483e-08 + ArtUnc_22: -1.36640605e-07 + ArtUnc_23: -1.15456569e-07 + ArtUnc_24: 1.47844127e-08 + ArtUnc_25: 1.46848946e-08 + ArtUnc_26: 1.74754334e-08 + ArtUnc_27: -5.17697431e-08 + ArtUnc_28: -9.31819599e-08 + ArtUnc_29: 9.37831381e-08 + ArtUnc_30: 3.92173020e-08 ArtUnc_31: 0.0 - ArtUnc_32: -1.2415878058460392e-09 - ArtUnc_33: -5.413362611178661e-11 - ArtUnc_34: -2.4380036443715906e-10 - ArtUnc_35: -1.3553550226823322e-10 -- stat: 7.315e-07 + ArtUnc_32: -1.24158781e-09 + ArtUnc_33: -5.41336261e-11 + ArtUnc_34: -2.43800364e-10 + ArtUnc_35: -1.35535502e-10 +- stat: 7.31500000e-07 sys: 0 - ArtUnc_1: -5.540925489250257e-06 - ArtUnc_2: -1.6245003632125127e-06 - ArtUnc_3: 5.88237927086619e-07 - ArtUnc_4: 1.3902437908342886e-06 - ArtUnc_5: -1.3216068174273398e-06 - ArtUnc_6: -6.931463347200529e-07 - ArtUnc_7: 7.572703475686012e-07 - ArtUnc_8: -7.856822369171429e-07 - ArtUnc_9: -1.3838424209719159e-07 - ArtUnc_10: 3.895579145957966e-06 - ArtUnc_11: 1.4886347377690608e-07 - ArtUnc_12: 5.995679725866652e-07 - ArtUnc_13: 4.683453586937138e-07 - ArtUnc_14: 5.674957035874519e-07 - ArtUnc_15: -2.6130571905471104e-06 - ArtUnc_16: -9.698477496333364e-07 - ArtUnc_17: 2.0663007166487736e-07 - ArtUnc_18: -4.392294583129725e-06 - ArtUnc_19: 1.1703897313625624e-08 - ArtUnc_20: 2.478171961443664e-07 - ArtUnc_21: -7.570789567637052e-07 - ArtUnc_22: -3.5636623533531515e-07 - ArtUnc_23: -1.0373358772387735e-06 - ArtUnc_24: 1.0247830090500893e-07 - ArtUnc_25: 1.240612626110879e-07 - ArtUnc_26: 1.00340331271873e-07 - ArtUnc_27: -2.54390763456331e-07 - ArtUnc_28: -2.7147115069261595e-07 - ArtUnc_29: 3.188393851161131e-07 - ArtUnc_30: 1.315739260937137e-07 + ArtUnc_1: -5.54092549e-06 + ArtUnc_2: -1.62450036e-06 + ArtUnc_3: 5.88237927e-07 + ArtUnc_4: 1.39024379e-06 + ArtUnc_5: -1.32160682e-06 + ArtUnc_6: -6.93146335e-07 + ArtUnc_7: 7.57270348e-07 + ArtUnc_8: -7.85682237e-07 + ArtUnc_9: -1.38384242e-07 + ArtUnc_10: 3.89557915e-06 + ArtUnc_11: 1.48863474e-07 + ArtUnc_12: 5.99567973e-07 + ArtUnc_13: 4.68345359e-07 + ArtUnc_14: 5.67495704e-07 + ArtUnc_15: -2.61305719e-06 + ArtUnc_16: -9.69847750e-07 + ArtUnc_17: 2.06630072e-07 + ArtUnc_18: -4.39229458e-06 + ArtUnc_19: 1.17038973e-08 + ArtUnc_20: 2.47817196e-07 + ArtUnc_21: -7.57078957e-07 + ArtUnc_22: -3.56366235e-07 + ArtUnc_23: -1.03733588e-06 + ArtUnc_24: 1.02478301e-07 + ArtUnc_25: 1.24061263e-07 + ArtUnc_26: 1.00340331e-07 + ArtUnc_27: -2.54390763e-07 + ArtUnc_28: -2.71471151e-07 + ArtUnc_29: 3.18839385e-07 + ArtUnc_30: 1.31573926e-07 ArtUnc_31: 0.0 - ArtUnc_32: -4.1870473655925935e-09 - ArtUnc_33: -1.4044786303843782e-10 - ArtUnc_34: -8.045944125899843e-10 - ArtUnc_35: -2.457477617336984e-10 -- stat: 1.118e-07 + ArtUnc_32: -4.18704737e-09 + ArtUnc_33: -1.40447863e-10 + ArtUnc_34: -8.04594413e-10 + ArtUnc_35: -2.45747762e-10 +- stat: 1.11800000e-07 sys: 0 - ArtUnc_1: -2.3865909464509523e-05 - ArtUnc_2: 1.0276550218167456e-05 - ArtUnc_3: 1.2965404174561456e-07 - ArtUnc_4: 5.294198085820107e-06 - ArtUnc_5: -4.212013778387726e-06 - ArtUnc_6: 3.530577078658824e-06 - ArtUnc_7: -2.7198176455510675e-06 - ArtUnc_8: 1.603317384865069e-06 - ArtUnc_9: 2.406956719830953e-06 - ArtUnc_10: -1.3052566990771772e-06 - ArtUnc_11: 2.862201827024496e-06 - ArtUnc_12: 6.484024195075214e-07 - ArtUnc_13: 5.365058397500084e-08 - ArtUnc_14: 5.125745112974652e-06 - ArtUnc_15: 3.731908006361614e-06 - ArtUnc_16: 3.3131294703683616e-06 - ArtUnc_17: 1.2339105330195842e-06 - ArtUnc_18: -3.9289236997279006e-07 - ArtUnc_19: -1.4851785516249325e-07 - ArtUnc_20: 7.445952504437471e-09 - ArtUnc_21: -4.482909840949499e-08 - ArtUnc_22: -2.1131805386801755e-07 - ArtUnc_23: -1.9120789200044242e-07 - ArtUnc_24: 1.5676510241775918e-08 - ArtUnc_25: 6.435308086240898e-08 - ArtUnc_26: 2.631757605571115e-08 - ArtUnc_27: -5.876226473020582e-08 - ArtUnc_28: -3.5657511521591655e-09 - ArtUnc_29: 9.622949254291427e-08 - ArtUnc_30: 3.945590614545117e-08 + ArtUnc_1: -2.38659095e-05 + ArtUnc_2: 1.02765502e-05 + ArtUnc_3: 1.29654042e-07 + ArtUnc_4: 5.29419809e-06 + ArtUnc_5: -4.21201378e-06 + ArtUnc_6: 3.53057708e-06 + ArtUnc_7: -2.71981765e-06 + ArtUnc_8: 1.60331738e-06 + ArtUnc_9: 2.40695672e-06 + ArtUnc_10: -1.30525670e-06 + ArtUnc_11: 2.86220183e-06 + ArtUnc_12: 6.48402420e-07 + ArtUnc_13: 5.36505840e-08 + ArtUnc_14: 5.12574511e-06 + ArtUnc_15: 3.73190801e-06 + ArtUnc_16: 3.31312947e-06 + ArtUnc_17: 1.23391053e-06 + ArtUnc_18: -3.92892370e-07 + ArtUnc_19: -1.48517855e-07 + ArtUnc_20: 7.44595250e-09 + ArtUnc_21: -4.48290984e-08 + ArtUnc_22: -2.11318054e-07 + ArtUnc_23: -1.91207892e-07 + ArtUnc_24: 1.56765102e-08 + ArtUnc_25: 6.43530809e-08 + ArtUnc_26: 2.63175761e-08 + ArtUnc_27: -5.87622647e-08 + ArtUnc_28: -3.56575115e-09 + ArtUnc_29: 9.62294925e-08 + ArtUnc_30: 3.94559061e-08 ArtUnc_31: 0.0 - ArtUnc_32: -1.2761230945770884e-09 - ArtUnc_33: -2.3429419028239327e-11 - ArtUnc_34: -1.6278479224313607e-10 - ArtUnc_35: 9.055622950571007e-11 -- stat: 1.298e-07 + ArtUnc_32: -1.27612309e-09 + ArtUnc_33: -2.34294190e-11 + ArtUnc_34: -1.62784792e-10 + ArtUnc_35: 9.05562295e-11 +- stat: 1.29800000e-07 sys: 0 - ArtUnc_1: -2.1881212164648737e-05 - ArtUnc_2: 8.180861627380455e-06 - ArtUnc_3: 7.647291109076548e-06 - ArtUnc_4: -2.7254388256827677e-06 - ArtUnc_5: -6.0583239657239215e-06 - ArtUnc_6: -1.3139491687182842e-06 - ArtUnc_7: -1.8917476140444878e-06 - ArtUnc_8: -5.957948289272803e-06 - ArtUnc_9: -4.670105239786517e-06 - ArtUnc_10: -1.5259695929475443e-06 - ArtUnc_11: -2.6447208352909187e-06 - ArtUnc_12: -5.226739475550977e-06 - ArtUnc_13: -2.3170548385340544e-06 - ArtUnc_14: -1.4350043588046347e-06 - ArtUnc_15: 2.8279532949496756e-06 - ArtUnc_16: -2.2532822740354093e-06 - ArtUnc_17: -2.4328026253519922e-08 - ArtUnc_18: 8.636743051998877e-08 - ArtUnc_19: 2.1399693402405588e-08 - ArtUnc_20: -1.141636103869918e-07 - ArtUnc_21: -1.9475512933579374e-08 - ArtUnc_22: 9.619721798135583e-08 - ArtUnc_23: -2.5185407541708303e-07 - ArtUnc_24: -1.5880131520329867e-08 - ArtUnc_25: 7.097665584755015e-08 - ArtUnc_26: 3.407121311876624e-08 - ArtUnc_27: -3.80861546139954e-08 - ArtUnc_28: -6.011095496295243e-08 - ArtUnc_29: 9.66858020871205e-08 - ArtUnc_30: 3.8711843000506296e-08 + ArtUnc_1: -2.18812122e-05 + ArtUnc_2: 8.18086163e-06 + ArtUnc_3: 7.64729111e-06 + ArtUnc_4: -2.72543883e-06 + ArtUnc_5: -6.05832397e-06 + ArtUnc_6: -1.31394917e-06 + ArtUnc_7: -1.89174761e-06 + ArtUnc_8: -5.95794829e-06 + ArtUnc_9: -4.67010524e-06 + ArtUnc_10: -1.52596959e-06 + ArtUnc_11: -2.64472084e-06 + ArtUnc_12: -5.22673948e-06 + ArtUnc_13: -2.31705484e-06 + ArtUnc_14: -1.43500436e-06 + ArtUnc_15: 2.82795329e-06 + ArtUnc_16: -2.25328227e-06 + ArtUnc_17: -2.43280263e-08 + ArtUnc_18: 8.63674305e-08 + ArtUnc_19: 2.13996934e-08 + ArtUnc_20: -1.14163610e-07 + ArtUnc_21: -1.94755129e-08 + ArtUnc_22: 9.61972180e-08 + ArtUnc_23: -2.51854075e-07 + ArtUnc_24: -1.58801315e-08 + ArtUnc_25: 7.09766558e-08 + ArtUnc_26: 3.40712131e-08 + ArtUnc_27: -3.80861546e-08 + ArtUnc_28: -6.01109550e-08 + ArtUnc_29: 9.66858021e-08 + ArtUnc_30: 3.87118430e-08 ArtUnc_31: 0.0 - ArtUnc_32: -1.28053868263535e-09 - ArtUnc_33: -2.3952634433197567e-11 - ArtUnc_34: -1.6650617910024465e-10 - ArtUnc_35: 5.6620457573113696e-11 -- stat: 1.268e-07 + ArtUnc_32: -1.28053868e-09 + ArtUnc_33: -2.39526344e-11 + ArtUnc_34: -1.66506179e-10 + ArtUnc_35: 5.66204576e-11 +- stat: 1.26800000e-07 sys: 0 - ArtUnc_1: -2.0296156978342916e-05 - ArtUnc_2: 9.230360535720729e-06 - ArtUnc_3: -4.2792902076713875e-06 - ArtUnc_4: 2.963921772708777e-06 - ArtUnc_5: -3.912460083215847e-06 - ArtUnc_6: -3.978263732140879e-06 - ArtUnc_7: -7.91802110109477e-07 - ArtUnc_8: 6.489437083738625e-06 - ArtUnc_9: 5.847646207124603e-06 - ArtUnc_10: -1.4778699008737953e-06 - ArtUnc_11: 9.198465829673233e-07 - ArtUnc_12: 5.167299106844218e-07 - ArtUnc_13: -2.416254992293404e-06 - ArtUnc_14: 2.8316814520687335e-07 - ArtUnc_15: -2.7026250918310014e-06 - ArtUnc_16: -3.672400999488578e-06 - ArtUnc_17: -1.2290056127042804e-06 - ArtUnc_18: 1.4722601488573203e-06 - ArtUnc_19: 4.4097537691540505e-08 - ArtUnc_20: -1.4085635869628755e-07 - ArtUnc_21: 1.108560021567111e-07 - ArtUnc_22: 3.082403036140451e-07 - ArtUnc_23: -2.464725304453288e-07 - ArtUnc_24: -3.425162248839886e-08 - ArtUnc_25: 2.320218945419013e-08 - ArtUnc_26: 3.549187147885346e-08 - ArtUnc_27: -1.0028241696766357e-08 - ArtUnc_28: -1.120253216210327e-07 - ArtUnc_29: 9.638659864978073e-08 - ArtUnc_30: 3.871298708259092e-08 + ArtUnc_1: -2.02961570e-05 + ArtUnc_2: 9.23036054e-06 + ArtUnc_3: -4.27929021e-06 + ArtUnc_4: 2.96392177e-06 + ArtUnc_5: -3.91246008e-06 + ArtUnc_6: -3.97826373e-06 + ArtUnc_7: -7.91802110e-07 + ArtUnc_8: 6.48943708e-06 + ArtUnc_9: 5.84764621e-06 + ArtUnc_10: -1.47786990e-06 + ArtUnc_11: 9.19846583e-07 + ArtUnc_12: 5.16729911e-07 + ArtUnc_13: -2.41625499e-06 + ArtUnc_14: 2.83168145e-07 + ArtUnc_15: -2.70262509e-06 + ArtUnc_16: -3.67240100e-06 + ArtUnc_17: -1.22900561e-06 + ArtUnc_18: 1.47226015e-06 + ArtUnc_19: 4.40975377e-08 + ArtUnc_20: -1.40856359e-07 + ArtUnc_21: 1.10856002e-07 + ArtUnc_22: 3.08240304e-07 + ArtUnc_23: -2.46472530e-07 + ArtUnc_24: -3.42516225e-08 + ArtUnc_25: 2.32021895e-08 + ArtUnc_26: 3.54918715e-08 + ArtUnc_27: -1.00282417e-08 + ArtUnc_28: -1.12025322e-07 + ArtUnc_29: 9.63865986e-08 + ArtUnc_30: 3.87129871e-08 ArtUnc_31: 0.0 - ArtUnc_32: -1.2776407479453137e-09 - ArtUnc_33: -6.924496729667963e-12 - ArtUnc_34: -2.2279382065005766e-10 - ArtUnc_35: -2.138677312153233e-11 -- stat: 1.165e-07 + ArtUnc_32: -1.27764075e-09 + ArtUnc_33: -6.92449673e-12 + ArtUnc_34: -2.22793821e-10 + ArtUnc_35: -2.13867731e-11 +- stat: 1.16500000e-07 sys: 0 - ArtUnc_1: -1.6511334934406973e-05 - ArtUnc_2: 4.814500367940451e-06 - ArtUnc_3: 7.073372812912983e-06 - ArtUnc_4: 4.052766173722967e-06 - ArtUnc_5: 5.54786623517091e-07 - ArtUnc_6: 3.973970126708408e-07 - ArtUnc_7: 2.550855645199572e-06 - ArtUnc_8: -5.751627541324216e-06 - ArtUnc_9: -4.824517785844141e-06 - ArtUnc_10: -4.5264633532037204e-08 - ArtUnc_11: 3.4750090385169363e-06 - ArtUnc_12: 1.4516425570545232e-06 - ArtUnc_13: 2.09352850749892e-06 - ArtUnc_14: 1.2322195832032121e-06 - ArtUnc_15: -5.376720402182231e-06 - ArtUnc_16: 1.484066262651487e-06 - ArtUnc_17: -9.590649545366544e-07 - ArtUnc_18: 2.1155593973827425e-06 - ArtUnc_19: -7.803785808171963e-09 - ArtUnc_20: -5.5876805319808074e-08 - ArtUnc_21: 2.3377559153739303e-07 - ArtUnc_22: 1.5859784674305007e-07 - ArtUnc_23: -9.502309607243636e-08 - ArtUnc_24: -2.238097369054535e-08 - ArtUnc_25: 1.291519559191787e-09 - ArtUnc_26: 2.3934609660955628e-08 - ArtUnc_27: -2.223551319389952e-09 - ArtUnc_28: -1.1334422307790643e-07 - ArtUnc_29: 9.207418946664908e-08 - ArtUnc_30: 3.866416969014576e-08 + ArtUnc_1: -1.65113349e-05 + ArtUnc_2: 4.81450037e-06 + ArtUnc_3: 7.07337281e-06 + ArtUnc_4: 4.05276617e-06 + ArtUnc_5: 5.54786624e-07 + ArtUnc_6: 3.97397013e-07 + ArtUnc_7: 2.55085565e-06 + ArtUnc_8: -5.75162754e-06 + ArtUnc_9: -4.82451779e-06 + ArtUnc_10: -4.52646335e-08 + ArtUnc_11: 3.47500904e-06 + ArtUnc_12: 1.45164256e-06 + ArtUnc_13: 2.09352851e-06 + ArtUnc_14: 1.23221958e-06 + ArtUnc_15: -5.37672040e-06 + ArtUnc_16: 1.48406626e-06 + ArtUnc_17: -9.59064955e-07 + ArtUnc_18: 2.11555940e-06 + ArtUnc_19: -7.80378581e-09 + ArtUnc_20: -5.58768053e-08 + ArtUnc_21: 2.33775592e-07 + ArtUnc_22: 1.58597847e-07 + ArtUnc_23: -9.50230961e-08 + ArtUnc_24: -2.23809737e-08 + ArtUnc_25: 1.29151956e-09 + ArtUnc_26: 2.39346097e-08 + ArtUnc_27: -2.22355132e-09 + ArtUnc_28: -1.13344223e-07 + ArtUnc_29: 9.20741895e-08 + ArtUnc_30: 3.86641697e-08 ArtUnc_31: 0.0 - ArtUnc_32: -1.2581545400299088e-09 - ArtUnc_33: -1.5041852907270653e-11 - ArtUnc_34: -2.345003513569587e-10 - ArtUnc_35: -8.744497017389647e-11 -- stat: 3.473e-08 + ArtUnc_32: -1.25815454e-09 + ArtUnc_33: -1.50418529e-11 + ArtUnc_34: -2.34500351e-10 + ArtUnc_35: -8.74449702e-11 +- stat: 3.47300000e-08 sys: 0 - ArtUnc_1: -1.1503799356607126e-05 - ArtUnc_2: 4.335404119860076e-06 - ArtUnc_3: -2.709242290480066e-06 - ArtUnc_4: -4.150646957455469e-06 - ArtUnc_5: -2.496886740725809e-06 - ArtUnc_6: 3.2348136035486104e-06 - ArtUnc_7: 2.13723955728113e-06 - ArtUnc_8: 4.701869541692644e-06 - ArtUnc_9: 2.555967822081611e-06 - ArtUnc_10: -9.667577688704626e-07 - ArtUnc_11: -4.194285885341986e-06 - ArtUnc_12: -5.063650612590486e-06 - ArtUnc_13: 4.144678741121209e-06 - ArtUnc_14: -3.791538327345872e-06 - ArtUnc_15: -2.0838747306109404e-06 - ArtUnc_16: 3.2779681757692402e-06 - ArtUnc_17: 4.1581786721640194e-08 - ArtUnc_18: 1.4985621481380543e-07 - ArtUnc_19: -4.5348623086197474e-08 - ArtUnc_20: -3.0555176020673777e-09 - ArtUnc_21: 5.066704833075858e-08 - ArtUnc_22: -1.3664060527021715e-07 - ArtUnc_23: -1.1545656891342063e-07 - ArtUnc_24: 1.4784412672788786e-08 - ArtUnc_25: 1.4684894599143165e-08 - ArtUnc_26: 1.747543338576927e-08 - ArtUnc_27: -5.176974306141968e-08 - ArtUnc_28: -9.318195987409981e-08 - ArtUnc_29: 9.378313805869042e-08 - ArtUnc_30: 3.921730196069124e-08 + ArtUnc_1: -1.15037994e-05 + ArtUnc_2: 4.33540412e-06 + ArtUnc_3: -2.70924229e-06 + ArtUnc_4: -4.15064696e-06 + ArtUnc_5: -2.49688674e-06 + ArtUnc_6: 3.23481360e-06 + ArtUnc_7: 2.13723956e-06 + ArtUnc_8: 4.70186954e-06 + ArtUnc_9: 2.55596782e-06 + ArtUnc_10: -9.66757769e-07 + ArtUnc_11: -4.19428589e-06 + ArtUnc_12: -5.06365061e-06 + ArtUnc_13: 4.14467874e-06 + ArtUnc_14: -3.79153833e-06 + ArtUnc_15: -2.08387473e-06 + ArtUnc_16: 3.27796818e-06 + ArtUnc_17: 4.15817867e-08 + ArtUnc_18: 1.49856215e-07 + ArtUnc_19: -4.53486231e-08 + ArtUnc_20: -3.05551760e-09 + ArtUnc_21: 5.06670483e-08 + ArtUnc_22: -1.36640605e-07 + ArtUnc_23: -1.15456569e-07 + ArtUnc_24: 1.47844127e-08 + ArtUnc_25: 1.46848946e-08 + ArtUnc_26: 1.74754334e-08 + ArtUnc_27: -5.17697431e-08 + ArtUnc_28: -9.31819599e-08 + ArtUnc_29: 9.37831381e-08 + ArtUnc_30: 3.92173020e-08 ArtUnc_31: 0.0 - ArtUnc_32: -1.2415878058460392e-09 - ArtUnc_33: -5.413362611178661e-11 - ArtUnc_34: -2.4380036443715906e-10 - ArtUnc_35: -1.3553550226823322e-10 + ArtUnc_32: -1.24158781e-09 + ArtUnc_33: -5.41336261e-11 + ArtUnc_34: -2.43800364e-10 + ArtUnc_35: -1.35535502e-10 diff --git a/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_LJ_DIF/uncertainties_dSig_dmttBar.yaml b/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_LJ_DIF/uncertainties_dSig_dmttBar.yaml index b627d38a59..dc67f0e488 100644 --- a/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_LJ_DIF/uncertainties_dSig_dmttBar.yaml +++ b/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_LJ_DIF/uncertainties_dSig_dmttBar.yaml @@ -70,256 +70,256 @@ definitions: bins: - stat: 0.001604 sys: 0 - ArtUnc_1: -0.0031148271486696323 - ArtUnc_2: -0.012461689962535655 - ArtUnc_3: 0.0032136752217436573 - ArtUnc_4: 0.001077949463240883 - ArtUnc_5: 1.722259036428965e-05 - ArtUnc_6: -0.00011185786638859639 - ArtUnc_7: 4.0133159437560204e-05 - ArtUnc_8: 5.029800029574805e-06 - ArtUnc_9: 2.520464758924462e-06 - ArtUnc_10: -7.05354018325762e-07 - ArtUnc_11: 1.2421200641749542e-07 - ArtUnc_12: 2.038528495647053e-08 - ArtUnc_13: -4.0545513933599895e-09 - ArtUnc_14: 2.0056836786758703e-09 - ArtUnc_15: 1.0431644990086479e-11 + ArtUnc_1: -3.11482715e-03 + ArtUnc_2: -1.24616900e-02 + ArtUnc_3: 3.21367522e-03 + ArtUnc_4: 1.07794946e-03 + ArtUnc_5: 1.72225904e-05 + ArtUnc_6: -1.11857866e-04 + ArtUnc_7: 4.01331594e-05 + ArtUnc_8: 5.02980003e-06 + ArtUnc_9: 2.52046476e-06 + ArtUnc_10: -7.05354018e-07 + ArtUnc_11: 1.24212006e-07 + ArtUnc_12: 2.03852850e-08 + ArtUnc_13: -4.05455139e-09 + ArtUnc_14: 2.00568368e-09 + ArtUnc_15: 1.04316450e-11 - stat: 0.004784 sys: 0 - ArtUnc_1: -0.041314667853492346 - ArtUnc_2: 0.0032187586129589635 - ArtUnc_3: 0.0019572614080899005 - ArtUnc_4: 0.0025451438257721353 - ArtUnc_5: 0.0006493031685319626 - ArtUnc_6: -5.1141509406121794e-05 - ArtUnc_7: 6.22846230017762e-05 - ArtUnc_8: 3.233104099565661e-05 - ArtUnc_9: 6.726288534499698e-06 - ArtUnc_10: -1.9290678986157435e-06 - ArtUnc_11: 3.7394528064335166e-07 - ArtUnc_12: -1.9699172128435227e-08 - ArtUnc_13: -3.00768969995784e-09 - ArtUnc_14: -5.139935942457004e-09 - ArtUnc_15: -1.8989937216803276e-11 + ArtUnc_1: -4.13146679e-02 + ArtUnc_2: 3.21875861e-03 + ArtUnc_3: 1.95726141e-03 + ArtUnc_4: 2.54514383e-03 + ArtUnc_5: 6.49303169e-04 + ArtUnc_6: -5.11415094e-05 + ArtUnc_7: 6.22846230e-05 + ArtUnc_8: 3.23310410e-05 + ArtUnc_9: 6.72628853e-06 + ArtUnc_10: -1.92906790e-06 + ArtUnc_11: 3.73945281e-07 + ArtUnc_12: -1.96991721e-08 + ArtUnc_13: -3.00768970e-09 + ArtUnc_14: -5.13993594e-09 + ArtUnc_15: -1.89899372e-11 - stat: 0.004737 sys: 0 - ArtUnc_1: -0.022424680419192666 - ArtUnc_2: -0.004245171757926392 - ArtUnc_3: -0.004991516343265054 - ArtUnc_4: -0.002719588656946813 - ArtUnc_5: 0.0008291427686124342 - ArtUnc_6: 0.0007607874751333735 - ArtUnc_7: -0.0001851053443051218 - ArtUnc_8: -1.66927985807444e-05 - ArtUnc_9: 2.0813713882398442e-06 - ArtUnc_10: -2.0618689620100974e-06 - ArtUnc_11: 6.089057014760484e-07 - ArtUnc_12: -2.624336572463221e-07 - ArtUnc_13: 2.405021091742791e-08 - ArtUnc_14: 1.198341636763721e-09 - ArtUnc_15: -2.0184915373792793e-10 + ArtUnc_1: -2.24246804e-02 + ArtUnc_2: -4.24517176e-03 + ArtUnc_3: -4.99151634e-03 + ArtUnc_4: -2.71958866e-03 + ArtUnc_5: 8.29142769e-04 + ArtUnc_6: 7.60787475e-04 + ArtUnc_7: -1.85105344e-04 + ArtUnc_8: -1.66927986e-05 + ArtUnc_9: 2.08137139e-06 + ArtUnc_10: -2.06186896e-06 + ArtUnc_11: 6.08905701e-07 + ArtUnc_12: -2.62433657e-07 + ArtUnc_13: 2.40502109e-08 + ArtUnc_14: 1.19834164e-09 + ArtUnc_15: -2.01849154e-10 - stat: 0.004561 sys: 0 - ArtUnc_1: -0.014029619935508412 - ArtUnc_2: 0.0009367821597764141 - ArtUnc_3: 0.003402330001393445 - ArtUnc_4: -0.002732836598940195 - ArtUnc_5: -0.002484725357891555 - ArtUnc_6: 0.00014243760984875296 - ArtUnc_7: -0.00036231529592811035 - ArtUnc_8: -0.00014807937149153877 - ArtUnc_9: -2.436608977444096e-05 - ArtUnc_10: 4.005901298212042e-06 - ArtUnc_11: -9.536022446523137e-08 - ArtUnc_12: -3.4411848190937387e-07 - ArtUnc_13: 5.519712688223622e-08 - ArtUnc_14: 2.2655596698687185e-08 - ArtUnc_15: 3.2922602808786666e-11 + ArtUnc_1: -1.40296199e-02 + ArtUnc_2: 9.36782160e-04 + ArtUnc_3: 3.40233000e-03 + ArtUnc_4: -2.73283660e-03 + ArtUnc_5: -2.48472536e-03 + ArtUnc_6: 1.42437610e-04 + ArtUnc_7: -3.62315296e-04 + ArtUnc_8: -1.48079371e-04 + ArtUnc_9: -2.43660898e-05 + ArtUnc_10: 4.00590130e-06 + ArtUnc_11: -9.53602245e-08 + ArtUnc_12: -3.44118482e-07 + ArtUnc_13: 5.51971269e-08 + ArtUnc_14: 2.26555967e-08 + ArtUnc_15: 3.29226028e-11 - stat: 0.004331 sys: 0 - ArtUnc_1: -0.007853142850393763 - ArtUnc_2: -0.0016879538276019998 - ArtUnc_3: -0.004371570172568101 - ArtUnc_4: 0.0009783545034613673 - ArtUnc_5: -0.0014422101035331196 - ArtUnc_6: -0.0015831405862700076 - ArtUnc_7: 0.00017533226529600583 - ArtUnc_8: -0.00017512235698003087 - ArtUnc_9: -5.646229361034728e-05 - ArtUnc_10: 1.5782651777191916e-05 - ArtUnc_11: -2.345744243853447e-06 - ArtUnc_12: 8.971640773297863e-08 - ArtUnc_13: 5.389586069791777e-08 - ArtUnc_14: 3.3155184817267694e-08 - ArtUnc_15: 5.479368701081305e-10 + ArtUnc_1: -7.85314285e-03 + ArtUnc_2: -1.68795383e-03 + ArtUnc_3: -4.37157017e-03 + ArtUnc_4: 9.78354503e-04 + ArtUnc_5: -1.44221010e-03 + ArtUnc_6: -1.58314059e-03 + ArtUnc_7: 1.75332265e-04 + ArtUnc_8: -1.75122357e-04 + ArtUnc_9: -5.64622936e-05 + ArtUnc_10: 1.57826518e-05 + ArtUnc_11: -2.34574424e-06 + ArtUnc_12: 8.97164077e-08 + ArtUnc_13: 5.38958607e-08 + ArtUnc_14: 3.31551848e-08 + ArtUnc_15: 5.47936870e-10 - stat: 0.003748 sys: 0 - ArtUnc_1: -0.005069965219612493 - ArtUnc_2: 0.0005332166607829701 - ArtUnc_3: 0.0021991964200178344 - ArtUnc_4: -0.0032721772063734962 - ArtUnc_5: 0.000994187789728027 - ArtUnc_6: -0.0008019379598253869 - ArtUnc_7: 0.0008816998784822329 - ArtUnc_8: 7.560096454145847e-05 - ArtUnc_9: -4.6982293575176435e-05 - ArtUnc_10: 2.5586700430904187e-05 - ArtUnc_11: -6.0711434123309075e-06 - ArtUnc_12: 1.0914629107028112e-06 - ArtUnc_13: -3.3381958300356e-08 - ArtUnc_14: 1.7548479555932423e-08 - ArtUnc_15: 8.732976965256722e-10 + ArtUnc_1: -5.06996522e-03 + ArtUnc_2: 5.33216661e-04 + ArtUnc_3: 2.19919642e-03 + ArtUnc_4: -3.27217721e-03 + ArtUnc_5: 9.94187790e-04 + ArtUnc_6: -8.01937960e-04 + ArtUnc_7: 8.81699878e-04 + ArtUnc_8: 7.56009645e-05 + ArtUnc_9: -4.69822936e-05 + ArtUnc_10: 2.55867004e-05 + ArtUnc_11: -6.07114341e-06 + ArtUnc_12: 1.09146291e-06 + ArtUnc_13: -3.33819583e-08 + ArtUnc_14: 1.75484796e-08 + ArtUnc_15: 8.73297697e-10 - stat: 0.002253 sys: 0 - ArtUnc_1: -0.0027051144024054607 - ArtUnc_2: -0.0005631289131542341 - ArtUnc_3: -0.0014364920701420473 - ArtUnc_4: 0.0006240209437862008 - ArtUnc_5: -0.0017604790190916219 - ArtUnc_6: 0.0006633912623563634 - ArtUnc_7: 0.0005456399118606517 - ArtUnc_8: 0.0005489186548458591 - ArtUnc_9: 5.567156440532481e-05 - ArtUnc_10: 2.6104526254753773e-05 - ArtUnc_11: -1.137865066589082e-05 - ArtUnc_12: 3.3222341596599247e-06 - ArtUnc_13: -2.529331636428411e-07 - ArtUnc_14: -1.5362386865687183e-08 - ArtUnc_15: 1.2333059288722518e-09 + ArtUnc_1: -2.70511440e-03 + ArtUnc_2: -5.63128913e-04 + ArtUnc_3: -1.43649207e-03 + ArtUnc_4: 6.24020944e-04 + ArtUnc_5: -1.76047902e-03 + ArtUnc_6: 6.63391262e-04 + ArtUnc_7: 5.45639912e-04 + ArtUnc_8: 5.48918655e-04 + ArtUnc_9: 5.56715644e-05 + ArtUnc_10: 2.61045263e-05 + ArtUnc_11: -1.13786507e-05 + ArtUnc_12: 3.32223416e-06 + ArtUnc_13: -2.52933164e-07 + ArtUnc_14: -1.53623869e-08 + ArtUnc_15: 1.23330593e-09 - stat: 0.00155 sys: 0 - ArtUnc_1: -0.0017448335278649478 - ArtUnc_2: 5.579623315739027e-06 - ArtUnc_3: 0.000342929725703941 - ArtUnc_4: -0.0010581958510100734 - ArtUnc_5: 0.0004381697477515802 - ArtUnc_6: -0.001123514481858225 - ArtUnc_7: -0.0006365692858598583 - ArtUnc_8: 0.00040041723366507977 - ArtUnc_9: 0.00023333179251398462 - ArtUnc_10: -2.773340938143535e-05 - ArtUnc_11: -8.328160263864764e-06 - ArtUnc_12: 5.570874922461773e-06 - ArtUnc_13: -6.072423147157987e-07 - ArtUnc_14: -8.620298685682163e-08 - ArtUnc_15: 1.033155355186172e-09 -- stat: 0.0006554 + ArtUnc_1: -1.74483353e-03 + ArtUnc_2: 5.57962332e-06 + ArtUnc_3: 3.42929726e-04 + ArtUnc_4: -1.05819585e-03 + ArtUnc_5: 4.38169748e-04 + ArtUnc_6: -1.12351448e-03 + ArtUnc_7: -6.36569286e-04 + ArtUnc_8: 4.00417234e-04 + ArtUnc_9: 2.33331793e-04 + ArtUnc_10: -2.77334094e-05 + ArtUnc_11: -8.32816026e-06 + ArtUnc_12: 5.57087492e-06 + ArtUnc_13: -6.07242315e-07 + ArtUnc_14: -8.62029869e-08 + ArtUnc_15: 1.03315536e-09 +- stat: 6.55400000e-04 sys: 0 - ArtUnc_1: -0.0008106274014748223 - ArtUnc_2: -3.312116752376963e-05 - ArtUnc_3: -0.00024592188912555976 - ArtUnc_4: -3.453652307996134e-05 - ArtUnc_5: -0.0003812495970838418 - ArtUnc_6: 0.0001888879982064158 - ArtUnc_7: 0.0004464952175644766 - ArtUnc_8: -0.00023919655198015273 - ArtUnc_9: 0.000269089215525299 - ArtUnc_10: -0.0001832422704676208 - ArtUnc_11: 2.1417353882200208e-05 - ArtUnc_12: 8.03894885296169e-06 - ArtUnc_13: -1.6671081912748023e-06 - ArtUnc_14: -3.372492488517355e-07 - ArtUnc_15: -1.1991911518164105e-09 -- stat: 0.0004129 + ArtUnc_1: -8.10627401e-04 + ArtUnc_2: -3.31211675e-05 + ArtUnc_3: -2.45921889e-04 + ArtUnc_4: -3.45365231e-05 + ArtUnc_5: -3.81249597e-04 + ArtUnc_6: 1.88887998e-04 + ArtUnc_7: 4.46495218e-04 + ArtUnc_8: -2.39196552e-04 + ArtUnc_9: 2.69089216e-04 + ArtUnc_10: -1.83242270e-04 + ArtUnc_11: 2.14173539e-05 + ArtUnc_12: 8.03894885e-06 + ArtUnc_13: -1.66710819e-06 + ArtUnc_14: -3.37249249e-07 + ArtUnc_15: -1.19919115e-09 +- stat: 4.12900000e-04 sys: 0 - ArtUnc_1: -0.0004319228189519829 - ArtUnc_2: -4.155037910907824e-05 - ArtUnc_3: 9.113253320580323e-07 - ArtUnc_4: -0.00018790230455208214 - ArtUnc_5: -2.1405257682893763e-05 - ArtUnc_6: -0.00019489330283099007 - ArtUnc_7: -0.00011731116379594689 - ArtUnc_8: 0.00024795868030677635 - ArtUnc_9: -0.00024633235148743186 - ArtUnc_10: -0.00015105587657946324 - ArtUnc_11: 9.121036281568009e-05 - ArtUnc_12: -9.940302874831318e-06 - ArtUnc_13: -2.1876923638484464e-06 - ArtUnc_14: -8.40140205093684e-07 - ArtUnc_15: -8.998181111920336e-09 -- stat: 0.0002151 + ArtUnc_1: -4.31922819e-04 + ArtUnc_2: -4.15503791e-05 + ArtUnc_3: 9.11325332e-07 + ArtUnc_4: -1.87902305e-04 + ArtUnc_5: -2.14052577e-05 + ArtUnc_6: -1.94893303e-04 + ArtUnc_7: -1.17311164e-04 + ArtUnc_8: 2.47958680e-04 + ArtUnc_9: -2.46332351e-04 + ArtUnc_10: -1.51055877e-04 + ArtUnc_11: 9.12103628e-05 + ArtUnc_12: -9.94030287e-06 + ArtUnc_13: -2.18769236e-06 + ArtUnc_14: -8.40140205e-07 + ArtUnc_15: -8.99818111e-09 +- stat: 2.15100000e-04 sys: 0 - ArtUnc_1: -0.00016589268518706077 - ArtUnc_2: -3.279447575549284e-06 - ArtUnc_3: -3.5854081305330896e-05 - ArtUnc_4: -3.509458197041767e-05 - ArtUnc_5: -5.9366701400378445e-05 - ArtUnc_6: 3.404354799826358e-06 - ArtUnc_7: 7.422856579734319e-05 - ArtUnc_8: -4.640223364861541e-05 - ArtUnc_9: 0.0001498258463253865 - ArtUnc_10: 0.00010151030995246336 - ArtUnc_11: 9.615396899474942e-05 - ArtUnc_12: -6.309337844063733e-05 - ArtUnc_13: 1.1515478347430264e-06 - ArtUnc_14: -1.6913866685210959e-06 - ArtUnc_15: -3.1605123155684345e-08 -- stat: 0.0001441 + ArtUnc_1: -1.65892685e-04 + ArtUnc_2: -3.27944758e-06 + ArtUnc_3: -3.58540813e-05 + ArtUnc_4: -3.50945820e-05 + ArtUnc_5: -5.93667014e-05 + ArtUnc_6: 3.40435480e-06 + ArtUnc_7: 7.42285658e-05 + ArtUnc_8: -4.64022336e-05 + ArtUnc_9: 1.49825846e-04 + ArtUnc_10: 1.01510310e-04 + ArtUnc_11: 9.61539690e-05 + ArtUnc_12: -6.30933784e-05 + ArtUnc_13: 1.15154783e-06 + ArtUnc_14: -1.69138667e-06 + ArtUnc_15: -3.16051232e-08 +- stat: 1.44100000e-04 sys: 0 - ArtUnc_1: -8.438652932566884e-05 - ArtUnc_2: -8.667940355453639e-06 - ArtUnc_3: -7.111536046189183e-06 - ArtUnc_4: -3.0077935100804826e-05 - ArtUnc_5: -1.6004253291380733e-05 - ArtUnc_6: -3.091045699755288e-05 - ArtUnc_7: -5.128327631698488e-06 - ArtUnc_8: 3.901523040476161e-05 - ArtUnc_9: -4.432851920746203e-05 - ArtUnc_10: -8.741768171469735e-05 - ArtUnc_11: -8.706563213283274e-05 - ArtUnc_12: -6.823142789393138e-05 - ArtUnc_13: 1.7189946728018874e-05 - ArtUnc_14: 3.5453101438564787e-07 - ArtUnc_15: -5.680726789091498e-08 -- stat: 6.014e-05 + ArtUnc_1: -8.43865293e-05 + ArtUnc_2: -8.66794036e-06 + ArtUnc_3: -7.11153605e-06 + ArtUnc_4: -3.00779351e-05 + ArtUnc_5: -1.60042533e-05 + ArtUnc_6: -3.09104570e-05 + ArtUnc_7: -5.12832763e-06 + ArtUnc_8: 3.90152304e-05 + ArtUnc_9: -4.43285192e-05 + ArtUnc_10: -8.74176817e-05 + ArtUnc_11: -8.70656321e-05 + ArtUnc_12: -6.82314279e-05 + ArtUnc_13: 1.71899467e-05 + ArtUnc_14: 3.54531014e-07 + ArtUnc_15: -5.68072679e-08 +- stat: 6.01400000e-05 sys: 0 - ArtUnc_1: -2.9272268401050853e-05 - ArtUnc_2: -8.79433127840557e-09 - ArtUnc_3: -4.3683407300193914e-06 - ArtUnc_4: -9.926274300861848e-06 - ArtUnc_5: -8.117880099405357e-06 - ArtUnc_6: -3.1761386584419587e-06 - ArtUnc_7: 7.724700988321317e-06 - ArtUnc_8: 9.729756538100662e-08 - ArtUnc_9: 1.601490942965062e-05 - ArtUnc_10: 1.4749122186504227e-05 - ArtUnc_11: 3.6540629023473695e-05 - ArtUnc_12: 2.292329227951548e-05 - ArtUnc_13: 3.9920120070789856e-05 - ArtUnc_14: 1.2350069677537691e-05 - ArtUnc_15: -5.967951099102127e-08 -- stat: 3.459e-05 + ArtUnc_1: -2.92722684e-05 + ArtUnc_2: -8.79433128e-09 + ArtUnc_3: -4.36834073e-06 + ArtUnc_4: -9.92627430e-06 + ArtUnc_5: -8.11788010e-06 + ArtUnc_6: -3.17613866e-06 + ArtUnc_7: 7.72470099e-06 + ArtUnc_8: 9.72975654e-08 + ArtUnc_9: 1.60149094e-05 + ArtUnc_10: 1.47491222e-05 + ArtUnc_11: 3.65406290e-05 + ArtUnc_12: 2.29232923e-05 + ArtUnc_13: 3.99201201e-05 + ArtUnc_14: 1.23500697e-05 + ArtUnc_15: -5.96795110e-08 +- stat: 3.45900000e-05 sys: 0 - ArtUnc_1: -9.727976793325329e-06 - ArtUnc_2: 6.379456876789792e-07 - ArtUnc_3: -1.6953599007505408e-06 - ArtUnc_4: -3.2353870235793087e-06 - ArtUnc_5: -1.762031878639387e-06 - ArtUnc_6: -2.8855566092513947e-06 - ArtUnc_7: 1.0587233303464486e-06 - ArtUnc_8: 3.5917539245134923e-06 - ArtUnc_9: -8.500897947866019e-07 - ArtUnc_10: -7.216327246943998e-06 - ArtUnc_11: -7.30817724090599e-06 - ArtUnc_12: -1.5613626196909434e-05 - ArtUnc_13: -2.0907591113227243e-05 - ArtUnc_14: 2.3747890929509812e-05 - ArtUnc_15: 2.867661736817369e-07 -- stat: 4.692e-06 + ArtUnc_1: -9.72797679e-06 + ArtUnc_2: 6.37945688e-07 + ArtUnc_3: -1.69535990e-06 + ArtUnc_4: -3.23538702e-06 + ArtUnc_5: -1.76203188e-06 + ArtUnc_6: -2.88555661e-06 + ArtUnc_7: 1.05872333e-06 + ArtUnc_8: 3.59175392e-06 + ArtUnc_9: -8.50089795e-07 + ArtUnc_10: -7.21632725e-06 + ArtUnc_11: -7.30817724e-06 + ArtUnc_12: -1.56136262e-05 + ArtUnc_13: -2.09075911e-05 + ArtUnc_14: 2.37478909e-05 + ArtUnc_15: 2.86766174e-07 +- stat: 4.69200000e-06 sys: 0 - ArtUnc_1: -1.1184133480152448e-06 - ArtUnc_2: -1.72834204428237e-07 - ArtUnc_3: -1.915766593066949e-07 - ArtUnc_4: -4.640011878340375e-07 - ArtUnc_5: -3.5245140721961005e-07 - ArtUnc_6: -1.1140892729093139e-07 - ArtUnc_7: 1.8313151079579889e-07 - ArtUnc_8: 1.4243411646209675e-07 - ArtUnc_9: 2.997315741892998e-07 - ArtUnc_10: -9.83727952647248e-08 - ArtUnc_11: 7.561803421532967e-07 - ArtUnc_12: -2.6867820999111445e-08 - ArtUnc_13: 2.1833701366460924e-06 - ArtUnc_14: -1.4246995723621092e-06 - ArtUnc_15: 4.29160829906264e-06 + ArtUnc_1: -1.11841335e-06 + ArtUnc_2: -1.72834204e-07 + ArtUnc_3: -1.91576659e-07 + ArtUnc_4: -4.64001188e-07 + ArtUnc_5: -3.52451407e-07 + ArtUnc_6: -1.11408927e-07 + ArtUnc_7: 1.83131511e-07 + ArtUnc_8: 1.42434116e-07 + ArtUnc_9: 2.99731574e-07 + ArtUnc_10: -9.83727953e-08 + ArtUnc_11: 7.56180342e-07 + ArtUnc_12: -2.68678210e-08 + ArtUnc_13: 2.18337014e-06 + ArtUnc_14: -1.42469957e-06 + ArtUnc_15: 4.29160830e-06 diff --git a/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_LJ_DIF/uncertainties_dSig_dmttBar_norm.yaml b/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_LJ_DIF/uncertainties_dSig_dmttBar_norm.yaml index db0fa76f69..7594c914a4 100644 --- a/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_LJ_DIF/uncertainties_dSig_dmttBar_norm.yaml +++ b/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_LJ_DIF/uncertainties_dSig_dmttBar_norm.yaml @@ -68,258 +68,258 @@ definitions: treatment: ADD type: CORR bins: -- stat: 6.737e-06 +- stat: 6.73700000e-06 sys: 0 - ArtUnc_1: -5.862723600271167e-05 - ArtUnc_2: 1.0148973261407419e-05 - ArtUnc_3: -9.849206552901516e-06 - ArtUnc_4: -3.8141317206163176e-06 - ArtUnc_5: -1.3422282983976479e-06 - ArtUnc_6: -8.618867210640725e-07 - ArtUnc_7: -6.703046189894556e-07 - ArtUnc_8: 4.044758921909831e-07 - ArtUnc_9: 3.0802236648522974e-07 - ArtUnc_10: -1.5790187918429874e-07 - ArtUnc_11: -1.0321214551968663e-07 - ArtUnc_12: 4.782838759503721e-08 - ArtUnc_13: -2.813486410653016e-08 - ArtUnc_14: 1.3879701612373275e-08 - ArtUnc_15: 2.5108306115970226e-10 -- stat: 2.107e-05 + ArtUnc_1: -5.86272360e-05 + ArtUnc_2: 1.01489733e-05 + ArtUnc_3: -9.84920655e-06 + ArtUnc_4: -3.81413172e-06 + ArtUnc_5: -1.34222830e-06 + ArtUnc_6: -8.61886721e-07 + ArtUnc_7: -6.70304619e-07 + ArtUnc_8: 4.04475892e-07 + ArtUnc_9: 3.08022366e-07 + ArtUnc_10: -1.57901879e-07 + ArtUnc_11: -1.03212146e-07 + ArtUnc_12: 4.78283876e-08 + ArtUnc_13: -2.81348641e-08 + ArtUnc_14: 1.38797016e-08 + ArtUnc_15: 2.51083061e-10 +- stat: 2.10700000e-05 sys: 0 - ArtUnc_1: 6.325644681835832e-05 - ArtUnc_2: 9.609237590886566e-06 - ArtUnc_3: -1.4859965627912882e-05 - ArtUnc_4: -4.377436219319762e-06 - ArtUnc_5: -3.961652171005055e-07 - ArtUnc_6: -1.8140414578948746e-07 - ArtUnc_7: -2.050987690465645e-07 - ArtUnc_8: 1.90175449330111e-07 - ArtUnc_9: 1.579007892545916e-07 - ArtUnc_10: -8.342671511783906e-08 - ArtUnc_11: -5.523282761376523e-08 - ArtUnc_12: 2.5540503172506396e-08 - ArtUnc_13: -1.5024810231087177e-08 - ArtUnc_14: 7.385783400508737e-09 - ArtUnc_15: 1.3370076003056276e-10 -- stat: 2.059e-05 + ArtUnc_1: 6.32564468e-05 + ArtUnc_2: 9.60923759e-06 + ArtUnc_3: -1.48599656e-05 + ArtUnc_4: -4.37743622e-06 + ArtUnc_5: -3.96165217e-07 + ArtUnc_6: -1.81404146e-07 + ArtUnc_7: -2.05098769e-07 + ArtUnc_8: 1.90175449e-07 + ArtUnc_9: 1.57900789e-07 + ArtUnc_10: -8.34267151e-08 + ArtUnc_11: -5.52328276e-08 + ArtUnc_12: 2.55405032e-08 + ArtUnc_13: -1.50248102e-08 + ArtUnc_14: 7.38578340e-09 + ArtUnc_15: 1.33700760e-10 +- stat: 2.05900000e-05 sys: 0 - ArtUnc_1: 1.053924417559726e-05 - ArtUnc_2: -2.4044971674655652e-05 - ArtUnc_3: 7.361769414018437e-06 - ArtUnc_4: -8.177368946450132e-06 - ArtUnc_5: -4.771731057835659e-06 - ArtUnc_6: -1.3065636494201835e-06 - ArtUnc_7: -3.898047297087043e-07 - ArtUnc_8: 1.9281548624445687e-07 - ArtUnc_9: 1.5052073491662125e-07 - ArtUnc_10: -8.07714529266435e-08 - ArtUnc_11: -5.377961726724844e-08 - ArtUnc_12: 2.5516707284529675e-08 - ArtUnc_13: -1.5072995557753938e-08 - ArtUnc_14: 7.4230348297035e-09 - ArtUnc_15: 1.333701903014649e-10 -- stat: 1.996e-05 + ArtUnc_1: 1.05392442e-05 + ArtUnc_2: -2.40449717e-05 + ArtUnc_3: 7.36176941e-06 + ArtUnc_4: -8.17736895e-06 + ArtUnc_5: -4.77173106e-06 + ArtUnc_6: -1.30656365e-06 + ArtUnc_7: -3.89804730e-07 + ArtUnc_8: 1.92815486e-07 + ArtUnc_9: 1.50520735e-07 + ArtUnc_10: -8.07714529e-08 + ArtUnc_11: -5.37796173e-08 + ArtUnc_12: 2.55167073e-08 + ArtUnc_13: -1.50729956e-08 + ArtUnc_14: 7.42303483e-09 + ArtUnc_15: 1.33370190e-10 +- stat: 1.99600000e-05 sys: 0 - ArtUnc_1: 1.773718037737451e-05 - ArtUnc_2: 1.5054119224263344e-05 - ArtUnc_3: 1.1541094337526054e-05 - ArtUnc_4: 8.042018638462437e-06 - ArtUnc_5: -3.1951266459699973e-06 - ArtUnc_6: -2.580632267110856e-06 - ArtUnc_7: -1.0915258556880645e-06 - ArtUnc_8: 3.1026036751917104e-07 - ArtUnc_9: 1.6981383574551846e-07 - ArtUnc_10: -7.97470222722435e-08 - ArtUnc_11: -5.193778111461818e-08 - ArtUnc_12: 2.530803287890221e-08 - ArtUnc_13: -1.5049086685354328e-08 - ArtUnc_14: 7.492179145569252e-09 - ArtUnc_15: 1.348924630625506e-10 -- stat: 1.893e-05 + ArtUnc_1: 1.77371804e-05 + ArtUnc_2: 1.50541192e-05 + ArtUnc_3: 1.15410943e-05 + ArtUnc_4: 8.04201864e-06 + ArtUnc_5: -3.19512665e-06 + ArtUnc_6: -2.58063227e-06 + ArtUnc_7: -1.09152586e-06 + ArtUnc_8: 3.10260368e-07 + ArtUnc_9: 1.69813836e-07 + ArtUnc_10: -7.97470223e-08 + ArtUnc_11: -5.19377811e-08 + ArtUnc_12: 2.53080329e-08 + ArtUnc_13: -1.50490867e-08 + ArtUnc_14: 7.49217915e-09 + ArtUnc_15: 1.34892463e-10 +- stat: 1.89300000e-05 sys: 0 - ArtUnc_1: 4.257997114386966e-06 - ArtUnc_2: -1.9879288958385276e-05 - ArtUnc_3: -4.745396074823091e-06 - ArtUnc_4: 6.574905101811839e-06 - ArtUnc_5: 5.751976205363962e-06 - ArtUnc_6: -4.2810782935202716e-07 - ArtUnc_7: -1.4628680478215763e-06 - ArtUnc_8: 5.118664777978856e-07 - ArtUnc_9: 2.316624029997322e-07 - ArtUnc_10: -8.628342542457309e-08 - ArtUnc_11: -5.161842406092997e-08 - ArtUnc_12: 2.486054101278725e-08 - ArtUnc_13: -1.4909977943433014e-08 - ArtUnc_14: 7.493210907618849e-09 - ArtUnc_15: 1.3688916292682506e-10 -- stat: 1.639e-05 + ArtUnc_1: 4.25799711e-06 + ArtUnc_2: -1.98792890e-05 + ArtUnc_3: -4.74539607e-06 + ArtUnc_4: 6.57490510e-06 + ArtUnc_5: 5.75197621e-06 + ArtUnc_6: -4.28107829e-07 + ArtUnc_7: -1.46286805e-06 + ArtUnc_8: 5.11866478e-07 + ArtUnc_9: 2.31662403e-07 + ArtUnc_10: -8.62834254e-08 + ArtUnc_11: -5.16184241e-08 + ArtUnc_12: 2.48605410e-08 + ArtUnc_13: -1.49099779e-08 + ArtUnc_14: 7.49321091e-09 + ArtUnc_15: 1.36889163e-10 +- stat: 1.63900000e-05 sys: 0 - ArtUnc_1: 6.921709679592999e-06 - ArtUnc_2: 9.493785010359043e-06 - ArtUnc_3: 1.3682037341224915e-05 - ArtUnc_4: -5.629866838898647e-06 - ArtUnc_5: 3.634683110078275e-06 - ArtUnc_6: 3.3573491143039714e-06 - ArtUnc_7: -3.7795457112632626e-07 - ArtUnc_8: 5.693587722236078e-07 - ArtUnc_9: 3.155427473995835e-07 - ArtUnc_10: -1.0626596664861974e-07 - ArtUnc_11: -5.449050037594033e-08 - ArtUnc_12: 2.4557936619531488e-08 - ArtUnc_13: -1.4660661954943642e-08 - ArtUnc_14: 7.379767318463586e-09 - ArtUnc_15: 1.3710140736169223e-10 -- stat: 9.852e-06 + ArtUnc_1: 6.92170968e-06 + ArtUnc_2: 9.49378501e-06 + ArtUnc_3: 1.36820373e-05 + ArtUnc_4: -5.62986684e-06 + ArtUnc_5: 3.63468311e-06 + ArtUnc_6: 3.35734911e-06 + ArtUnc_7: -3.77954571e-07 + ArtUnc_8: 5.69358772e-07 + ArtUnc_9: 3.15542747e-07 + ArtUnc_10: -1.06265967e-07 + ArtUnc_11: -5.44905004e-08 + ArtUnc_12: 2.45579366e-08 + ArtUnc_13: -1.46606620e-08 + ArtUnc_14: 7.37976732e-09 + ArtUnc_15: 1.37101407e-10 +- stat: 9.85200000e-06 sys: 0 - ArtUnc_1: 1.3987751564452333e-06 - ArtUnc_2: -6.5208359245941426e-06 - ArtUnc_3: -2.476080690218906e-06 - ArtUnc_4: 7.407990561280833e-06 - ArtUnc_5: -3.5856051669241726e-06 - ArtUnc_6: 2.5057220206765267e-06 - ArtUnc_7: 2.0461796546425525e-06 - ArtUnc_8: 2.465292339270817e-07 - ArtUnc_9: 4.404991445518052e-07 - ArtUnc_10: -1.6844530787412045e-07 - ArtUnc_11: -7.893108866236082e-08 - ArtUnc_12: 3.076739382809876e-08 - ArtUnc_13: -1.7915768231367425e-08 - ArtUnc_14: 8.999696438688204e-09 - ArtUnc_15: 1.6982204052334735e-10 + ArtUnc_1: 1.39877516e-06 + ArtUnc_2: -6.52083592e-06 + ArtUnc_3: -2.47608069e-06 + ArtUnc_4: 7.40799056e-06 + ArtUnc_5: -3.58560517e-06 + ArtUnc_6: 2.50572202e-06 + ArtUnc_7: 2.04617965e-06 + ArtUnc_8: 2.46529234e-07 + ArtUnc_9: 4.40499145e-07 + ArtUnc_10: -1.68445308e-07 + ArtUnc_11: -7.89310887e-08 + ArtUnc_12: 3.07673938e-08 + ArtUnc_13: -1.79157682e-08 + ArtUnc_14: 8.99969644e-09 + ArtUnc_15: 1.69822041e-10 - stat: 6.78e-06 sys: 0 - ArtUnc_1: 1.9452600095957195e-06 - ArtUnc_2: 1.3348566380951012e-06 - ArtUnc_3: 4.472776931026168e-06 - ArtUnc_4: -2.032923374645577e-06 - ArtUnc_5: 4.7219510127810165e-06 - ArtUnc_6: -3.0315370234028013e-06 - ArtUnc_7: 1.9007564559892438e-06 - ArtUnc_8: -7.745218425162191e-07 - ArtUnc_9: 2.1596059573649057e-07 - ArtUnc_10: -1.935701022177297e-07 - ArtUnc_11: -1.012409557601794e-07 - ArtUnc_12: 3.2574661204335045e-08 - ArtUnc_13: -1.779417570525945e-08 - ArtUnc_14: 8.785442785229747e-09 - ArtUnc_15: 1.6811534222328706e-10 -- stat: 2.866e-06 + ArtUnc_1: 1.94526001e-06 + ArtUnc_2: 1.33485664e-06 + ArtUnc_3: 4.47277693e-06 + ArtUnc_4: -2.03292337e-06 + ArtUnc_5: 4.72195101e-06 + ArtUnc_6: -3.03153702e-06 + ArtUnc_7: 1.90075646e-06 + ArtUnc_8: -7.74521843e-07 + ArtUnc_9: 2.15960596e-07 + ArtUnc_10: -1.93570102e-07 + ArtUnc_11: -1.01240956e-07 + ArtUnc_12: 3.25746612e-08 + ArtUnc_13: -1.77941757e-08 + ArtUnc_14: 8.78544279e-09 + ArtUnc_15: 1.68115342e-10 +- stat: 2.86600000e-06 sys: 0 - ArtUnc_1: 8.527919784497888e-07 - ArtUnc_2: -1.0918800392181878e-06 - ArtUnc_3: 2.1468561430620622e-07 - ArtUnc_4: 1.5550779498377464e-06 - ArtUnc_5: -9.146034446039028e-07 - ArtUnc_6: 1.8880384730894252e-06 - ArtUnc_7: -1.0906776984136741e-06 - ArtUnc_8: -1.302796026214993e-06 - ArtUnc_9: -5.606160667398233e-07 - ArtUnc_10: -1.8384600022172357e-07 - ArtUnc_11: -1.8932166792655887e-07 - ArtUnc_12: 5.712229512413689e-08 - ArtUnc_13: -2.78900625524953e-08 - ArtUnc_14: 1.3004691227363516e-08 - ArtUnc_15: 2.443094347565226e-10 -- stat: 1.806e-06 + ArtUnc_1: 8.52791978e-07 + ArtUnc_2: -1.09188004e-06 + ArtUnc_3: 2.14685614e-07 + ArtUnc_4: 1.55507795e-06 + ArtUnc_5: -9.14603445e-07 + ArtUnc_6: 1.88803847e-06 + ArtUnc_7: -1.09067770e-06 + ArtUnc_8: -1.30279603e-06 + ArtUnc_9: -5.60616067e-07 + ArtUnc_10: -1.83846000e-07 + ArtUnc_11: -1.89321668e-07 + ArtUnc_12: 5.71222951e-08 + ArtUnc_13: -2.78900626e-08 + ArtUnc_14: 1.30046912e-08 + ArtUnc_15: 2.44309435e-10 +- stat: 1.80600000e-06 sys: 0 - ArtUnc_1: 3.695930834037308e-07 - ArtUnc_2: -6.532052926631035e-08 - ArtUnc_3: 8.320766774146932e-07 - ArtUnc_4: 6.142799136964131e-08 - ArtUnc_5: 7.777890443845592e-07 - ArtUnc_6: -5.289308470360292e-07 - ArtUnc_7: 1.025245110133191e-06 - ArtUnc_8: 1.0638062358774704e-06 - ArtUnc_9: -8.206643748260156e-07 - ArtUnc_10: 2.54299702352863e-07 - ArtUnc_11: -1.3665548506919072e-07 - ArtUnc_12: 7.358966266752964e-08 - ArtUnc_13: -3.25930198244972e-08 - ArtUnc_14: 1.2784202778612571e-08 - ArtUnc_15: 2.2027779415761706e-10 -- stat: 9.405e-07 + ArtUnc_1: 3.69593083e-07 + ArtUnc_2: -6.53205293e-08 + ArtUnc_3: 8.32076677e-07 + ArtUnc_4: 6.14279914e-08 + ArtUnc_5: 7.77789044e-07 + ArtUnc_6: -5.28930847e-07 + ArtUnc_7: 1.02524511e-06 + ArtUnc_8: 1.06380624e-06 + ArtUnc_9: -8.20664375e-07 + ArtUnc_10: 2.54299702e-07 + ArtUnc_11: -1.36655485e-07 + ArtUnc_12: 7.35896627e-08 + ArtUnc_13: -3.25930198e-08 + ArtUnc_14: 1.27842028e-08 + ArtUnc_15: 2.20277794e-10 +- stat: 9.40500000e-07 sys: 0 - ArtUnc_1: 1.6351968920681898e-07 - ArtUnc_2: -1.5618073359542882e-07 - ArtUnc_3: 1.6319441221575783e-07 - ArtUnc_4: 2.436377391715426e-07 - ArtUnc_5: -2.9796079785868843e-08 - ArtUnc_6: 3.103881134712576e-07 - ArtUnc_7: -1.874559319865675e-07 - ArtUnc_8: -6.251177531383198e-07 - ArtUnc_9: 4.3297644986123884e-07 - ArtUnc_10: 5.186390552217671e-07 - ArtUnc_11: 1.447735014710712e-07 - ArtUnc_12: 9.979792669703838e-08 - ArtUnc_13: -5.5240656393513654e-08 - ArtUnc_14: 1.763397276870326e-08 - ArtUnc_15: 2.252472979484752e-10 -- stat: 6.302e-07 + ArtUnc_1: 1.63519689e-07 + ArtUnc_2: -1.56180734e-07 + ArtUnc_3: 1.63194412e-07 + ArtUnc_4: 2.43637739e-07 + ArtUnc_5: -2.97960798e-08 + ArtUnc_6: 3.10388113e-07 + ArtUnc_7: -1.87455932e-07 + ArtUnc_8: -6.25117753e-07 + ArtUnc_9: 4.32976450e-07 + ArtUnc_10: 5.18639055e-07 + ArtUnc_11: 1.44773501e-07 + ArtUnc_12: 9.97979267e-08 + ArtUnc_13: -5.52406564e-08 + ArtUnc_14: 1.76339728e-08 + ArtUnc_15: 2.25247298e-10 +- stat: 6.30200000e-07 sys: 0 - ArtUnc_1: 6.991741633783401e-08 - ArtUnc_2: -4.3642361161343e-08 - ArtUnc_3: 1.3883522789956145e-07 - ArtUnc_4: 6.722394698265871e-08 - ArtUnc_5: 1.2360275062831508e-07 - ArtUnc_6: -2.3015944847768332e-08 - ArtUnc_7: 1.642947802152173e-07 - ArtUnc_8: 1.6433168869206636e-07 - ArtUnc_9: -3.606827153197239e-07 - ArtUnc_10: -3.60094364430885e-07 - ArtUnc_11: 3.623070562974918e-07 - ArtUnc_12: 2.1021160218901464e-09 - ArtUnc_13: -6.187317234795895e-08 - ArtUnc_14: 2.341934077058835e-08 - ArtUnc_15: 1.3385827365965717e-10 + ArtUnc_1: 6.99174163e-08 + ArtUnc_2: -4.36423612e-08 + ArtUnc_3: 1.38835228e-07 + ArtUnc_4: 6.72239470e-08 + ArtUnc_5: 1.23602751e-07 + ArtUnc_6: -2.30159448e-08 + ArtUnc_7: 1.64294780e-07 + ArtUnc_8: 1.64331689e-07 + ArtUnc_9: -3.60682715e-07 + ArtUnc_10: -3.60094364e-07 + ArtUnc_11: 3.62307056e-07 + ArtUnc_12: 2.10211602e-09 + ArtUnc_13: -6.18731723e-08 + ArtUnc_14: 2.34193408e-08 + ArtUnc_15: 1.33858274e-10 - stat: 2.63e-07 sys: 0 - ArtUnc_1: 2.7895828616227e-08 - ArtUnc_2: -1.847298373675737e-08 - ArtUnc_3: 4.4545981737452094e-08 - ArtUnc_4: 3.295650757502642e-08 - ArtUnc_5: 1.1024211678014125e-08 - ArtUnc_6: 3.266397872207852e-08 - ArtUnc_7: 1.607045621252448e-09 - ArtUnc_8: -6.737827648471438e-08 - ArtUnc_9: 4.9024905919170115e-08 - ArtUnc_10: 1.5325536745107092e-07 - ArtUnc_11: -1.0267958118271208e-07 - ArtUnc_12: -1.7990348125109843e-07 - ArtUnc_13: -3.549060446254294e-08 - ArtUnc_14: 5.523165991894845e-08 - ArtUnc_15: 2.915078645849823e-10 -- stat: 1.513e-07 + ArtUnc_1: 2.78958286e-08 + ArtUnc_2: -1.84729837e-08 + ArtUnc_3: 4.45459817e-08 + ArtUnc_4: 3.29565076e-08 + ArtUnc_5: 1.10242117e-08 + ArtUnc_6: 3.26639787e-08 + ArtUnc_7: 1.60704562e-09 + ArtUnc_8: -6.73782765e-08 + ArtUnc_9: 4.90249059e-08 + ArtUnc_10: 1.53255367e-07 + ArtUnc_11: -1.02679581e-07 + ArtUnc_12: -1.79903481e-07 + ArtUnc_13: -3.54906045e-08 + ArtUnc_14: 5.52316599e-08 + ArtUnc_15: 2.91507865e-10 +- stat: 1.51300000e-07 sys: 0 - ArtUnc_1: 1.4500174571316277e-08 - ArtUnc_2: -7.659973504092213e-09 - ArtUnc_3: 1.5329319759335795e-08 - ArtUnc_4: 8.374409968866913e-09 - ArtUnc_5: 1.2586660076075205e-08 - ArtUnc_6: 5.475873608552523e-09 - ArtUnc_7: 1.6407116746022978e-08 - ArtUnc_8: -1.2864996172012635e-11 - ArtUnc_9: -3.152339075649333e-08 - ArtUnc_10: -2.269940770985863e-08 - ArtUnc_11: 6.479554580214142e-08 - ArtUnc_12: 7.066323782822806e-08 - ArtUnc_13: 1.0697292243264162e-07 - ArtUnc_14: 5.968237648180385e-08 - ArtUnc_15: 1.5532868399354908e-09 -- stat: 2.052e-08 + ArtUnc_1: 1.45001746e-08 + ArtUnc_2: -7.65997350e-09 + ArtUnc_3: 1.53293198e-08 + ArtUnc_4: 8.37440997e-09 + ArtUnc_5: 1.25866601e-08 + ArtUnc_6: 5.47587361e-09 + ArtUnc_7: 1.64071167e-08 + ArtUnc_8: -1.28649962e-11 + ArtUnc_9: -3.15233908e-08 + ArtUnc_10: -2.26994077e-08 + ArtUnc_11: 6.47955458e-08 + ArtUnc_12: 7.06632378e-08 + ArtUnc_13: 1.06972922e-07 + ArtUnc_14: 5.96823765e-08 + ArtUnc_15: 1.55328684e-09 +- stat: 2.05200000e-08 sys: 0 - ArtUnc_1: 9.136463685643876e-11 - ArtUnc_2: -8.346457353549768e-10 - ArtUnc_3: 2.013965057654829e-09 - ArtUnc_4: 1.3795273466259111e-09 - ArtUnc_5: 3.5582830395097e-10 - ArtUnc_6: 8.971313978628211e-10 - ArtUnc_7: 8.435069974639072e-10 - ArtUnc_8: -1.8079925885731e-09 - ArtUnc_9: -1.3796329090483548e-09 - ArtUnc_10: 4.006398092912479e-09 - ArtUnc_11: 9.615194138150679e-10 - ArtUnc_12: -8.495127511384796e-09 - ArtUnc_13: -5.545978121231137e-09 - ArtUnc_14: -7.558403301386924e-09 - ArtUnc_15: 1.7651923714314217e-08 + ArtUnc_1: 9.13646369e-11 + ArtUnc_2: -8.34645735e-10 + ArtUnc_3: 2.01396506e-09 + ArtUnc_4: 1.37952735e-09 + ArtUnc_5: 3.55828304e-10 + ArtUnc_6: 8.97131398e-10 + ArtUnc_7: 8.43506997e-10 + ArtUnc_8: -1.80799259e-09 + ArtUnc_9: -1.37963291e-09 + ArtUnc_10: 4.00639809e-09 + ArtUnc_11: 9.61519414e-10 + ArtUnc_12: -8.49512751e-09 + ArtUnc_13: -5.54597812e-09 + ArtUnc_14: -7.55840330e-09 + ArtUnc_15: 1.76519237e-08 diff --git a/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_LJ_DIF/uncertainties_dSig_dpTt.yaml b/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_LJ_DIF/uncertainties_dSig_dpTt.yaml index ffdc673cd3..4ffbce7040 100644 --- a/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_LJ_DIF/uncertainties_dSig_dpTt.yaml +++ b/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_LJ_DIF/uncertainties_dSig_dpTt.yaml @@ -74,289 +74,289 @@ definitions: bins: - stat: 0.005212 sys: 0 - ArtUnc_1: 0.019974131016383477 - ArtUnc_2: 0.0015039735664010502 - ArtUnc_3: -0.009366066563912766 - ArtUnc_4: 0.004699914842889897 - ArtUnc_5: 0.002667901478488664 - ArtUnc_6: -0.00019907320457194497 - ArtUnc_7: -4.488221035982017e-05 - ArtUnc_8: 1.952284490645833e-05 - ArtUnc_9: -5.101531152972371e-06 - ArtUnc_10: 1.0885268295493473e-06 - ArtUnc_11: 1.9151508329805108e-07 - ArtUnc_12: -2.6029413126497267e-08 - ArtUnc_13: -2.9448170806981694e-09 - ArtUnc_14: 5.50697057745605e-10 - ArtUnc_15: -3.6855474410482155e-10 - ArtUnc_16: -1.1147557918980424e-11 + ArtUnc_1: 1.99741310e-02 + ArtUnc_2: 1.50397357e-03 + ArtUnc_3: -9.36606656e-03 + ArtUnc_4: 4.69991484e-03 + ArtUnc_5: 2.66790148e-03 + ArtUnc_6: -1.99073205e-04 + ArtUnc_7: -4.48822104e-05 + ArtUnc_8: 1.95228449e-05 + ArtUnc_9: -5.10153115e-06 + ArtUnc_10: 1.08852683e-06 + ArtUnc_11: 1.91515083e-07 + ArtUnc_12: -2.60294131e-08 + ArtUnc_13: -2.94481708e-09 + ArtUnc_14: 5.50697058e-10 + ArtUnc_15: -3.68554744e-10 + ArtUnc_16: -1.11475579e-11 - stat: 0.009267 sys: 0 - ArtUnc_1: 0.04984003914693702 - ArtUnc_2: 0.010620922026583126 - ArtUnc_3: -0.0019814004509674577 - ArtUnc_4: -0.0035048425891503142 - ArtUnc_5: -0.0009440892833284012 - ArtUnc_6: 0.0002374995004152553 - ArtUnc_7: 9.307826734903795e-05 - ArtUnc_8: -1.5333335257547395e-05 - ArtUnc_9: 5.728905185586782e-06 - ArtUnc_10: -1.2814311990331852e-06 - ArtUnc_11: -2.9979371601274027e-07 - ArtUnc_12: -1.728119513609909e-08 - ArtUnc_13: -1.057690864414201e-09 - ArtUnc_14: 8.889813590883197e-12 - ArtUnc_15: 2.1990489826737717e-10 - ArtUnc_16: 9.289240373228426e-12 + ArtUnc_1: 4.98400391e-02 + ArtUnc_2: 1.06209220e-02 + ArtUnc_3: -1.98140045e-03 + ArtUnc_4: -3.50484259e-03 + ArtUnc_5: -9.44089283e-04 + ArtUnc_6: 2.37499500e-04 + ArtUnc_7: 9.30782673e-05 + ArtUnc_8: -1.53333353e-05 + ArtUnc_9: 5.72890519e-06 + ArtUnc_10: -1.28143120e-06 + ArtUnc_11: -2.99793716e-07 + ArtUnc_12: -1.72811951e-08 + ArtUnc_13: -1.05769086e-09 + ArtUnc_14: 8.88981359e-12 + ArtUnc_15: 2.19904898e-10 + ArtUnc_16: 9.28924037e-12 - stat: 0.009179 sys: 0 - ArtUnc_1: 0.0508788805553837 - ArtUnc_2: -0.01046698743874912 - ArtUnc_3: -0.0024591447621432057 - ArtUnc_4: -0.0002451996252662964 - ArtUnc_5: -0.0027685698327078482 - ArtUnc_6: 4.603049469517545e-05 - ArtUnc_7: 6.619819457690724e-05 - ArtUnc_8: -4.8717174651888005e-05 - ArtUnc_9: 1.7684699924562917e-05 - ArtUnc_10: -2.3395091443406728e-06 - ArtUnc_11: 2.434066792085435e-07 - ArtUnc_12: 1.7807271948534995e-08 - ArtUnc_13: -8.9865231317946e-09 - ArtUnc_14: -2.9375517540678507e-09 - ArtUnc_15: 8.281732714380353e-10 - ArtUnc_16: 2.33421706213765e-12 + ArtUnc_1: 5.08788806e-02 + ArtUnc_2: -1.04669874e-02 + ArtUnc_3: -2.45914476e-03 + ArtUnc_4: -2.45199625e-04 + ArtUnc_5: -2.76856983e-03 + ArtUnc_6: 4.60304947e-05 + ArtUnc_7: 6.61981946e-05 + ArtUnc_8: -4.87171747e-05 + ArtUnc_9: 1.76846999e-05 + ArtUnc_10: -2.33950914e-06 + ArtUnc_11: 2.43406679e-07 + ArtUnc_12: 1.78072719e-08 + ArtUnc_13: -8.98652313e-09 + ArtUnc_14: -2.93755175e-09 + ArtUnc_15: 8.28173271e-10 + ArtUnc_16: 2.33421706e-12 - stat: 0.007567 sys: 0 - ArtUnc_1: 0.03716096710649549 - ArtUnc_2: 0.002129269330527744 - ArtUnc_3: 0.00901470504386584 - ArtUnc_4: 0.0043317683942547215 - ArtUnc_5: 0.0004037604959490319 - ArtUnc_6: -0.001111246728103905 - ArtUnc_7: -0.00031833403724534757 - ArtUnc_8: 1.7418164878036037e-05 - ArtUnc_9: 8.235561386182535e-06 - ArtUnc_10: -3.3636984088113083e-06 - ArtUnc_11: -6.77541619776745e-07 - ArtUnc_12: 7.936952949207554e-09 - ArtUnc_13: 7.531713669156968e-09 - ArtUnc_14: 1.0406625964145873e-09 - ArtUnc_15: -5.761011609605953e-10 - ArtUnc_16: -2.3524331903482517e-11 + ArtUnc_1: 3.71609671e-02 + ArtUnc_2: 2.12926933e-03 + ArtUnc_3: 9.01470504e-03 + ArtUnc_4: 4.33176839e-03 + ArtUnc_5: 4.03760496e-04 + ArtUnc_6: -1.11124673e-03 + ArtUnc_7: -3.18334037e-04 + ArtUnc_8: 1.74181649e-05 + ArtUnc_9: 8.23556139e-06 + ArtUnc_10: -3.36369841e-06 + ArtUnc_11: -6.77541620e-07 + ArtUnc_12: 7.93695295e-09 + ArtUnc_13: 7.53171367e-09 + ArtUnc_14: 1.04066260e-09 + ArtUnc_15: -5.76101161e-10 + ArtUnc_16: -2.35243319e-11 - stat: 0.005392 sys: 0 - ArtUnc_1: 0.021110150435753785 - ArtUnc_2: -0.004619599753836109 - ArtUnc_3: 0.00168545268699232 - ArtUnc_4: -0.0039566362530164 - ArtUnc_5: 0.004762461941358399 - ArtUnc_6: -0.00020020582757477193 - ArtUnc_7: -0.0005011693828125595 - ArtUnc_8: 0.00021883407156999057 - ArtUnc_9: -7.023568647107066e-05 - ArtUnc_10: 1.984559247922874e-06 - ArtUnc_11: -1.8120236336781935e-06 - ArtUnc_12: -6.474037751096801e-08 - ArtUnc_13: 1.4145223109954446e-08 - ArtUnc_14: 6.534924361220416e-09 - ArtUnc_15: -2.1853092639283004e-09 - ArtUnc_16: -2.015401204598666e-11 + ArtUnc_1: 2.11101504e-02 + ArtUnc_2: -4.61959975e-03 + ArtUnc_3: 1.68545269e-03 + ArtUnc_4: -3.95663625e-03 + ArtUnc_5: 4.76246194e-03 + ArtUnc_6: -2.00205828e-04 + ArtUnc_7: -5.01169383e-04 + ArtUnc_8: 2.18834072e-04 + ArtUnc_9: -7.02356865e-05 + ArtUnc_10: 1.98455925e-06 + ArtUnc_11: -1.81202363e-06 + ArtUnc_12: -6.47403775e-08 + ArtUnc_13: 1.41452231e-08 + ArtUnc_14: 6.53492436e-09 + ArtUnc_15: -2.18530926e-09 + ArtUnc_16: -2.01540120e-11 - stat: 0.002751 sys: 0 - ArtUnc_1: 0.011177084651516372 - ArtUnc_2: -0.00023651725709663212 - ArtUnc_3: 0.0028292415290484037 - ArtUnc_4: 0.0016317417603025867 - ArtUnc_5: 0.0007832756777055062 - ArtUnc_6: 0.0031866912908119814 - ArtUnc_7: 0.0006225704644493391 - ArtUnc_8: 0.00023471327503307124 - ArtUnc_9: -0.00018983265726065052 - ArtUnc_10: 4.899791386881313e-05 - ArtUnc_11: 2.395725501394225e-06 - ArtUnc_12: -1.5482925450455488e-07 - ArtUnc_13: -7.826712365334326e-08 - ArtUnc_14: -9.667878694191664e-09 - ArtUnc_15: 1.8365356757332876e-09 - ArtUnc_16: 9.991251051695634e-11 + ArtUnc_1: 1.11770847e-02 + ArtUnc_2: -2.36517257e-04 + ArtUnc_3: 2.82924153e-03 + ArtUnc_4: 1.63174176e-03 + ArtUnc_5: 7.83275678e-04 + ArtUnc_6: 3.18669129e-03 + ArtUnc_7: 6.22570464e-04 + ArtUnc_8: 2.34713275e-04 + ArtUnc_9: -1.89832657e-04 + ArtUnc_10: 4.89979139e-05 + ArtUnc_11: 2.39572550e-06 + ArtUnc_12: -1.54829255e-07 + ArtUnc_13: -7.82671237e-08 + ArtUnc_14: -9.66787869e-09 + ArtUnc_15: 1.83653568e-09 + ArtUnc_16: 9.99125105e-11 - stat: 0.001817 sys: 0 - ArtUnc_1: 0.0053882785185893605 - ArtUnc_2: -0.0009352730171053428 - ArtUnc_3: 0.0012162058227061436 - ArtUnc_4: -0.0005234924236356344 - ArtUnc_5: 0.0015521845883392684 - ArtUnc_6: -0.0006044090192404997 - ArtUnc_7: 0.0016433710411743558 - ArtUnc_8: -0.0007925314117322173 - ArtUnc_9: 7.705807289979143e-05 - ArtUnc_10: 9.313450951802451e-05 - ArtUnc_11: 2.3317613107767925e-05 - ArtUnc_12: 8.281923813576831e-07 - ArtUnc_13: 1.0938339008561652e-07 - ArtUnc_14: 3.7616196788601525e-09 - ArtUnc_15: 4.71917590918771e-10 - ArtUnc_16: 6.313448134454433e-11 + ArtUnc_1: 5.38827852e-03 + ArtUnc_2: -9.35273017e-04 + ArtUnc_3: 1.21620582e-03 + ArtUnc_4: -5.23492424e-04 + ArtUnc_5: 1.55218459e-03 + ArtUnc_6: -6.04409019e-04 + ArtUnc_7: 1.64337104e-03 + ArtUnc_8: -7.92531412e-04 + ArtUnc_9: 7.70580729e-05 + ArtUnc_10: 9.31345095e-05 + ArtUnc_11: 2.33176131e-05 + ArtUnc_12: 8.28192381e-07 + ArtUnc_13: 1.09383390e-07 + ArtUnc_14: 3.76161968e-09 + ArtUnc_15: 4.71917591e-10 + ArtUnc_16: 6.31344813e-11 - stat: 0.001368 sys: 0 - ArtUnc_1: 0.002331380409561649 - ArtUnc_2: -0.00013308162256290475 - ArtUnc_3: 0.0006308049750996396 - ArtUnc_4: 0.00018807329380412022 - ArtUnc_5: 0.0005638998767587976 - ArtUnc_6: 0.001352065975757989 - ArtUnc_7: -0.0008007750978097744 - ArtUnc_8: -0.0005562993156838486 - ArtUnc_9: 0.0006241548043404994 - ArtUnc_10: -7.989522967878839e-05 - ArtUnc_11: 4.3890426435369047e-05 - ArtUnc_12: 3.7085363762908664e-06 - ArtUnc_13: 6.591926965583368e-07 - ArtUnc_14: 5.1326536544389655e-08 - ArtUnc_15: -5.561586869020539e-09 - ArtUnc_16: -2.133878899338664e-11 + ArtUnc_1: 2.33138041e-03 + ArtUnc_2: -1.33081623e-04 + ArtUnc_3: 6.30804975e-04 + ArtUnc_4: 1.88073294e-04 + ArtUnc_5: 5.63899877e-04 + ArtUnc_6: 1.35206598e-03 + ArtUnc_7: -8.00775098e-04 + ArtUnc_8: -5.56299316e-04 + ArtUnc_9: 6.24154804e-04 + ArtUnc_10: -7.98952297e-05 + ArtUnc_11: 4.38904264e-05 + ArtUnc_12: 3.70853638e-06 + ArtUnc_13: 6.59192697e-07 + ArtUnc_14: 5.13265365e-08 + ArtUnc_15: -5.56158687e-09 + ArtUnc_16: -2.13387890e-11 - stat: 0.00108 sys: 0 - ArtUnc_1: 0.00145779483079621 - ArtUnc_2: -0.0002743613391114338 - ArtUnc_3: 0.0004122578014805914 - ArtUnc_4: -3.3116369316438345e-05 - ArtUnc_5: 0.00035373376858493626 - ArtUnc_6: -0.0002668061094940715 - ArtUnc_7: 0.0009860118212058904 - ArtUnc_8: 0.0005365361798598775 - ArtUnc_9: 0.0002584951972000772 - ArtUnc_10: -0.0003809133268586568 - ArtUnc_11: -1.1358164393758508e-05 - ArtUnc_12: 7.5241327616633134e-06 - ArtUnc_13: 1.7524642705278582e-06 - ArtUnc_14: 1.1729613634259862e-07 - ArtUnc_15: -1.5286181291841437e-08 - ArtUnc_16: -3.87237642773468e-10 -- stat: 0.0008393 + ArtUnc_1: 1.45779483e-03 + ArtUnc_2: -2.74361339e-04 + ArtUnc_3: 4.12257801e-04 + ArtUnc_4: -3.31163693e-05 + ArtUnc_5: 3.53733769e-04 + ArtUnc_6: -2.66806109e-04 + ArtUnc_7: 9.86011821e-04 + ArtUnc_8: 5.36536180e-04 + ArtUnc_9: 2.58495197e-04 + ArtUnc_10: -3.80913327e-04 + ArtUnc_11: -1.13581644e-05 + ArtUnc_12: 7.52413276e-06 + ArtUnc_13: 1.75246427e-06 + ArtUnc_14: 1.17296136e-07 + ArtUnc_15: -1.52861813e-08 + ArtUnc_16: -3.87237643e-10 +- stat: 8.39300000e-04 sys: 0 - ArtUnc_1: 0.0005408861363059575 - ArtUnc_2: -1.9074870405580487e-05 - ArtUnc_3: 0.0001404643171398704 - ArtUnc_4: 5.6380995400158606e-05 - ArtUnc_5: 0.0001632460758251272 - ArtUnc_6: 0.0003692647220127983 - ArtUnc_7: -0.000339511189877445 - ArtUnc_8: -0.0006673831961576777 - ArtUnc_9: -0.0003210064564880313 - ArtUnc_10: -0.0002357305491094258 - ArtUnc_11: -0.00017568147642556617 - ArtUnc_12: 3.282844683062407e-06 - ArtUnc_13: 2.5621833170057617e-06 - ArtUnc_14: 2.009220743130307e-07 - ArtUnc_15: -2.839013440840518e-08 - ArtUnc_16: -5.198771851335337e-10 -- stat: 0.0005579 + ArtUnc_1: 5.40886136e-04 + ArtUnc_2: -1.90748704e-05 + ArtUnc_3: 1.40464317e-04 + ArtUnc_4: 5.63809954e-05 + ArtUnc_5: 1.63246076e-04 + ArtUnc_6: 3.69264722e-04 + ArtUnc_7: -3.39511190e-04 + ArtUnc_8: -6.67383196e-04 + ArtUnc_9: -3.21006456e-04 + ArtUnc_10: -2.35730549e-04 + ArtUnc_11: -1.75681476e-04 + ArtUnc_12: 3.28284468e-06 + ArtUnc_13: 2.56218332e-06 + ArtUnc_14: 2.00922074e-07 + ArtUnc_15: -2.83901344e-08 + ArtUnc_16: -5.19877185e-10 +- stat: 5.57900000e-04 sys: 0 - ArtUnc_1: 0.00039602688487442813 - ArtUnc_2: -9.566848656798845e-05 - ArtUnc_3: 0.00011064102208044602 - ArtUnc_4: -1.4986818524810641e-05 - ArtUnc_5: 0.0001042865856775099 - ArtUnc_6: -3.0367955212530228e-05 - ArtUnc_7: 0.0002488349698229859 - ArtUnc_8: 0.0003033457453230382 - ArtUnc_9: 0.0003716519820054299 - ArtUnc_10: 0.00019201416795871856 - ArtUnc_11: -0.00021590665618803493 - ArtUnc_12: -2.2313758471051785e-05 - ArtUnc_13: 6.876016458462643e-07 - ArtUnc_14: 3.4413417397413315e-07 - ArtUnc_15: -5.4001396634030865e-08 - ArtUnc_16: -3.696888832471656e-10 -- stat: 0.0001408 + ArtUnc_1: 3.96026885e-04 + ArtUnc_2: -9.56684866e-05 + ArtUnc_3: 1.10641022e-04 + ArtUnc_4: -1.49868185e-05 + ArtUnc_5: 1.04286586e-04 + ArtUnc_6: -3.03679552e-05 + ArtUnc_7: 2.48834970e-04 + ArtUnc_8: 3.03345745e-04 + ArtUnc_9: 3.71651982e-04 + ArtUnc_10: 1.92014168e-04 + ArtUnc_11: -2.15906656e-04 + ArtUnc_12: -2.23137585e-05 + ArtUnc_13: 6.87601646e-07 + ArtUnc_14: 3.44134174e-07 + ArtUnc_15: -5.40013966e-08 + ArtUnc_16: -3.69688883e-10 +- stat: 1.40800000e-04 sys: 0 - ArtUnc_1: 0.00015324070625549922 - ArtUnc_2: -1.5750903525458475e-05 - ArtUnc_3: 4.6616757544585576e-05 - ArtUnc_4: 4.577176179206887e-06 - ArtUnc_5: 4.2423780872371095e-05 - ArtUnc_6: 4.093787067826407e-05 - ArtUnc_7: -5.3431495410903544e-06 - ArtUnc_8: -7.567858311562105e-05 - ArtUnc_9: -4.4147918638843186e-05 - ArtUnc_10: -8.063102679186374e-05 - ArtUnc_11: 3.678765718035375e-05 - ArtUnc_12: -9.898930959310313e-05 - ArtUnc_13: -1.8183176202141343e-05 - ArtUnc_14: 5.869474424436643e-07 - ArtUnc_15: -2.2356892129829593e-07 - ArtUnc_16: -2.6011903165377503e-09 -- stat: 6.632e-05 + ArtUnc_1: 1.53240706e-04 + ArtUnc_2: -1.57509035e-05 + ArtUnc_3: 4.66167575e-05 + ArtUnc_4: 4.57717618e-06 + ArtUnc_5: 4.24237809e-05 + ArtUnc_6: 4.09378707e-05 + ArtUnc_7: -5.34314954e-06 + ArtUnc_8: -7.56785831e-05 + ArtUnc_9: -4.41479186e-05 + ArtUnc_10: -8.06310268e-05 + ArtUnc_11: 3.67876572e-05 + ArtUnc_12: -9.89893096e-05 + ArtUnc_13: -1.81831762e-05 + ArtUnc_14: 5.86947442e-07 + ArtUnc_15: -2.23568921e-07 + ArtUnc_16: -2.60119032e-09 +- stat: 6.63200000e-05 sys: 0 - ArtUnc_1: 5.097027154972263e-05 - ArtUnc_2: -8.449322622164821e-06 - ArtUnc_3: 1.4875742613882985e-05 - ArtUnc_4: -1.88376602379195e-06 - ArtUnc_5: 1.7271736844401922e-05 - ArtUnc_6: 5.5099180786257245e-06 - ArtUnc_7: 1.3100420840364401e-05 - ArtUnc_8: 5.6497766468699315e-06 - ArtUnc_9: 2.01918094113781e-05 - ArtUnc_10: 4.232835961980329e-06 - ArtUnc_11: -2.238521066211887e-05 - ArtUnc_12: 3.0737089967521105e-05 - ArtUnc_13: -5.5621935715055395e-05 - ArtUnc_14: -4.929350739540529e-06 - ArtUnc_15: -1.4748249808012418e-08 - ArtUnc_16: -1.0337223706157847e-08 -- stat: 2.618e-05 + ArtUnc_1: 5.09702715e-05 + ArtUnc_2: -8.44932262e-06 + ArtUnc_3: 1.48757426e-05 + ArtUnc_4: -1.88376602e-06 + ArtUnc_5: 1.72717368e-05 + ArtUnc_6: 5.50991808e-06 + ArtUnc_7: 1.31004208e-05 + ArtUnc_8: 5.64977665e-06 + ArtUnc_9: 2.01918094e-05 + ArtUnc_10: 4.23283596e-06 + ArtUnc_11: -2.23852107e-05 + ArtUnc_12: 3.07370900e-05 + ArtUnc_13: -5.56219357e-05 + ArtUnc_14: -4.92935074e-06 + ArtUnc_15: -1.47482498e-08 + ArtUnc_16: -1.03372237e-08 +- stat: 2.61800000e-05 sys: 0 - ArtUnc_1: 1.5201733357728377e-05 - ArtUnc_2: -1.953288149693471e-06 - ArtUnc_3: 4.705659384296861e-06 - ArtUnc_4: -5.56620868157138e-07 - ArtUnc_5: 5.570835992885212e-06 - ArtUnc_6: 2.8289980767647417e-06 - ArtUnc_7: 1.0305567839576423e-06 - ArtUnc_8: -3.145996669303326e-06 - ArtUnc_9: 2.5464108541890213e-07 - ArtUnc_10: -4.375345151886508e-06 - ArtUnc_11: 7.686389248438181e-07 - ArtUnc_12: -9.141928001766638e-06 - ArtUnc_13: 1.0574777103383435e-05 - ArtUnc_14: -2.306609972931573e-05 - ArtUnc_15: 3.5209034038300484e-06 - ArtUnc_16: -1.887410503380444e-08 -- stat: 1.431e-05 + ArtUnc_1: 1.52017334e-05 + ArtUnc_2: -1.95328815e-06 + ArtUnc_3: 4.70565938e-06 + ArtUnc_4: -5.56620868e-07 + ArtUnc_5: 5.57083599e-06 + ArtUnc_6: 2.82899808e-06 + ArtUnc_7: 1.03055678e-06 + ArtUnc_8: -3.14599667e-06 + ArtUnc_9: 2.54641085e-07 + ArtUnc_10: -4.37534515e-06 + ArtUnc_11: 7.68638925e-07 + ArtUnc_12: -9.14192800e-06 + ArtUnc_13: 1.05747771e-05 + ArtUnc_14: -2.30660997e-05 + ArtUnc_15: 3.52090340e-06 + ArtUnc_16: -1.88741050e-08 +- stat: 1.43100000e-05 sys: 0 - ArtUnc_1: 4.088037705663511e-06 - ArtUnc_2: -6.679198809366872e-07 - ArtUnc_3: 1.2489319674220416e-06 - ArtUnc_4: -1.4856647465501329e-07 - ArtUnc_5: 1.6341167853427097e-06 - ArtUnc_6: 3.6855277388880983e-07 - ArtUnc_7: 5.091905591537246e-07 - ArtUnc_8: -2.166471191373468e-07 - ArtUnc_9: 6.291207920855741e-07 - ArtUnc_10: -4.194482954105728e-07 - ArtUnc_11: -8.9136751872899e-07 - ArtUnc_12: 7.369793756571903e-07 - ArtUnc_13: -3.265225713454165e-06 - ArtUnc_14: 6.29546382487596e-06 - ArtUnc_15: 1.2845870371933195e-05 - ArtUnc_16: 1.6490614985283183e-07 -- stat: 2.759e-06 + ArtUnc_1: 4.08803771e-06 + ArtUnc_2: -6.67919881e-07 + ArtUnc_3: 1.24893197e-06 + ArtUnc_4: -1.48566475e-07 + ArtUnc_5: 1.63411679e-06 + ArtUnc_6: 3.68552774e-07 + ArtUnc_7: 5.09190559e-07 + ArtUnc_8: -2.16647119e-07 + ArtUnc_9: 6.29120792e-07 + ArtUnc_10: -4.19448295e-07 + ArtUnc_11: -8.91367519e-07 + ArtUnc_12: 7.36979376e-07 + ArtUnc_13: -3.26522571e-06 + ArtUnc_14: 6.29546382e-06 + ArtUnc_15: 1.28458704e-05 + ArtUnc_16: 1.64906150e-07 +- stat: 2.75900000e-06 sys: 0 - ArtUnc_1: 3.9352479555037186e-07 - ArtUnc_2: -8.404777697628293e-08 - ArtUnc_3: 9.293711863043308e-08 - ArtUnc_4: -3.3729973195489507e-10 - ArtUnc_5: 1.3731528821842155e-07 - ArtUnc_6: -1.9457491698937235e-08 - ArtUnc_7: 5.628888466868151e-08 - ArtUnc_8: -6.25700378623412e-08 - ArtUnc_9: 3.388846393338796e-08 - ArtUnc_10: -1.446238662755511e-07 - ArtUnc_11: -5.5704611324185105e-08 - ArtUnc_12: -8.782823383246e-08 - ArtUnc_13: 4.367045734248508e-08 - ArtUnc_14: -5.63275519824021e-07 - ArtUnc_15: -7.593453150482926e-07 - ArtUnc_16: 2.7032288533375077e-06 + ArtUnc_1: 3.93524796e-07 + ArtUnc_2: -8.40477770e-08 + ArtUnc_3: 9.29371186e-08 + ArtUnc_4: -3.37299732e-10 + ArtUnc_5: 1.37315288e-07 + ArtUnc_6: -1.94574917e-08 + ArtUnc_7: 5.62888847e-08 + ArtUnc_8: -6.25700379e-08 + ArtUnc_9: 3.38884639e-08 + ArtUnc_10: -1.44623866e-07 + ArtUnc_11: -5.57046113e-08 + ArtUnc_12: -8.78282338e-08 + ArtUnc_13: 4.36704573e-08 + ArtUnc_14: -5.63275520e-07 + ArtUnc_15: -7.59345315e-07 + ArtUnc_16: 2.70322885e-06 diff --git a/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_LJ_DIF/uncertainties_dSig_dpTt_norm.yaml b/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_LJ_DIF/uncertainties_dSig_dpTt_norm.yaml index 1d0f74889c..14055bbea3 100644 --- a/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_LJ_DIF/uncertainties_dSig_dpTt_norm.yaml +++ b/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_LJ_DIF/uncertainties_dSig_dpTt_norm.yaml @@ -72,291 +72,291 @@ definitions: treatment: ADD type: CORR bins: -- stat: 2.289e-05 +- stat: 2.28900000e-05 sys: 0 - ArtUnc_1: -9.693663718157105e-06 - ArtUnc_2: -4.2742683885249644e-05 - ArtUnc_3: 2.2493027573589858e-05 - ArtUnc_4: 5.765557754316128e-07 - ArtUnc_5: 4.0349440617074425e-06 - ArtUnc_6: 1.3748068291613605e-06 - ArtUnc_7: 6.336097542805463e-07 - ArtUnc_8: 4.1355630121961916e-07 - ArtUnc_9: -2.473316917718022e-07 - ArtUnc_10: 1.2345839789638122e-07 - ArtUnc_11: 7.360066573012308e-08 - ArtUnc_12: 3.7006432263815306e-08 - ArtUnc_13: 2.299556725928137e-08 - ArtUnc_14: -7.678370812170942e-09 - ArtUnc_15: 2.2913050322378094e-09 - ArtUnc_16: 5.892351624130675e-11 + ArtUnc_1: -9.69366372e-06 + ArtUnc_2: -4.27426839e-05 + ArtUnc_3: 2.24930276e-05 + ArtUnc_4: 5.76555775e-07 + ArtUnc_5: 4.03494406e-06 + ArtUnc_6: 1.37480683e-06 + ArtUnc_7: 6.33609754e-07 + ArtUnc_8: 4.13556301e-07 + ArtUnc_9: -2.47331692e-07 + ArtUnc_10: 1.23458398e-07 + ArtUnc_11: 7.36006657e-08 + ArtUnc_12: 3.70064323e-08 + ArtUnc_13: 2.29955673e-08 + ArtUnc_14: -7.67837081e-09 + ArtUnc_15: 2.29130503e-09 + ArtUnc_16: 5.89235162e-11 - stat: 4.07e-05 sys: 0 - ArtUnc_1: -5.1246084668493466e-05 - ArtUnc_2: -1.0765034818132336e-05 - ArtUnc_3: -2.2207003334274133e-05 - ArtUnc_4: -4.339069145390812e-06 - ArtUnc_5: 2.609056013023963e-07 - ArtUnc_6: 6.648036433734166e-07 - ArtUnc_7: 4.867115843429188e-07 - ArtUnc_8: 3.8059345734870953e-07 - ArtUnc_9: -2.4534167349134193e-07 - ArtUnc_10: 1.2229614550736018e-07 - ArtUnc_11: 7.372214404635565e-08 - ArtUnc_12: 3.6932473518928413e-08 - ArtUnc_13: 2.294125610382833e-08 - ArtUnc_14: -7.668471271587581e-09 - ArtUnc_15: 2.292957933183856e-09 - ArtUnc_16: 5.906479071108571e-11 -- stat: 4.049e-05 + ArtUnc_1: -5.12460847e-05 + ArtUnc_2: -1.07650348e-05 + ArtUnc_3: -2.22070033e-05 + ArtUnc_4: -4.33906915e-06 + ArtUnc_5: 2.60905601e-07 + ArtUnc_6: 6.64803643e-07 + ArtUnc_7: 4.86711584e-07 + ArtUnc_8: 3.80593457e-07 + ArtUnc_9: -2.45341673e-07 + ArtUnc_10: 1.22296146e-07 + ArtUnc_11: 7.37221440e-08 + ArtUnc_12: 3.69324735e-08 + ArtUnc_13: 2.29412561e-08 + ArtUnc_14: -7.66847127e-09 + ArtUnc_15: 2.29295793e-09 + ArtUnc_16: 5.90647907e-11 +- stat: 4.04900000e-05 sys: 0 - ArtUnc_1: 4.1886820594176104e-05 - ArtUnc_2: -1.722191279316666e-05 - ArtUnc_3: -1.444516768815699e-05 - ArtUnc_4: -1.967133917340091e-05 - ArtUnc_5: 7.212268880299376e-07 - ArtUnc_6: 6.821829214063942e-07 - ArtUnc_7: 3.0910317603624286e-07 - ArtUnc_8: 3.3229476367586123e-07 - ArtUnc_9: -2.4672413560553453e-07 - ArtUnc_10: 1.2548433749365058e-07 - ArtUnc_11: 7.385505333517978e-08 - ArtUnc_12: 3.683306744200466e-08 - ArtUnc_13: 2.291282980850899e-08 - ArtUnc_14: -7.672136621987822e-09 - ArtUnc_15: 2.2959728914939454e-09 - ArtUnc_16: 5.907569913180283e-11 -- stat: 3.348e-05 + ArtUnc_1: 4.18868206e-05 + ArtUnc_2: -1.72219128e-05 + ArtUnc_3: -1.44451677e-05 + ArtUnc_4: -1.96713392e-05 + ArtUnc_5: 7.21226888e-07 + ArtUnc_6: 6.82182921e-07 + ArtUnc_7: 3.09103176e-07 + ArtUnc_8: 3.32294764e-07 + ArtUnc_9: -2.46724136e-07 + ArtUnc_10: 1.25484337e-07 + ArtUnc_11: 7.38550533e-08 + ArtUnc_12: 3.68330674e-08 + ArtUnc_13: 2.29128298e-08 + ArtUnc_14: -7.67213662e-09 + ArtUnc_15: 2.29597289e-09 + ArtUnc_16: 5.90756991e-11 +- stat: 3.34800000e-05 sys: 0 - ArtUnc_1: -1.0077908819824645e-05 - ArtUnc_2: 3.741390578599488e-05 - ArtUnc_3: 1.1498860789540955e-05 - ArtUnc_4: -1.3839712783982642e-05 - ArtUnc_5: 8.134061182440633e-06 - ArtUnc_6: 2.4954682615160184e-06 - ArtUnc_7: 5.442499712297516e-07 - ArtUnc_8: 3.358999595423393e-07 - ArtUnc_9: -2.2953848077853336e-07 - ArtUnc_10: 1.2031906376874614e-07 - ArtUnc_11: 7.402007405910845e-08 - ArtUnc_12: 3.704408211195431e-08 - ArtUnc_13: 2.298282811938266e-08 - ArtUnc_14: -7.679711114830851e-09 - ArtUnc_15: 2.293299778647188e-09 - ArtUnc_16: 5.899490756492136e-11 -- stat: 2.387e-05 + ArtUnc_1: -1.00779088e-05 + ArtUnc_2: 3.74139058e-05 + ArtUnc_3: 1.14988608e-05 + ArtUnc_4: -1.38397128e-05 + ArtUnc_5: 8.13406118e-06 + ArtUnc_6: 2.49546826e-06 + ArtUnc_7: 5.44249971e-07 + ArtUnc_8: 3.35899960e-07 + ArtUnc_9: -2.29538481e-07 + ArtUnc_10: 1.20319064e-07 + ArtUnc_11: 7.40200741e-08 + ArtUnc_12: 3.70440821e-08 + ArtUnc_13: 2.29828281e-08 + ArtUnc_14: -7.67971111e-09 + ArtUnc_15: 2.29329978e-09 + ArtUnc_16: 5.89949076e-11 +- stat: 2.38700000e-05 sys: 0 - ArtUnc_1: 1.9399459715560617e-05 - ArtUnc_2: 4.964421756916651e-06 - ArtUnc_3: -1.0697038816356023e-05 - ArtUnc_4: 2.261245095493673e-05 - ArtUnc_5: 5.427186330393147e-06 - ArtUnc_6: 3.975823912063493e-06 - ArtUnc_7: 1.5784495786395474e-06 - ArtUnc_8: 6.663357769034425e-07 - ArtUnc_9: -2.2183095379131998e-07 - ArtUnc_10: 1.1087752112554866e-07 - ArtUnc_11: 7.34110849599161e-08 - ArtUnc_12: 3.7165207337621965e-08 - ArtUnc_13: 2.303838286569863e-08 - ArtUnc_14: -7.670094697462167e-09 - ArtUnc_15: 2.2833387429648683e-09 - ArtUnc_16: 5.882388754310819e-11 -- stat: 1.219e-05 + ArtUnc_1: 1.93994597e-05 + ArtUnc_2: 4.96442176e-06 + ArtUnc_3: -1.06970388e-05 + ArtUnc_4: 2.26124510e-05 + ArtUnc_5: 5.42718633e-06 + ArtUnc_6: 3.97582391e-06 + ArtUnc_7: 1.57844958e-06 + ArtUnc_8: 6.66335777e-07 + ArtUnc_9: -2.21830954e-07 + ArtUnc_10: 1.10877521e-07 + ArtUnc_11: 7.34110850e-08 + ArtUnc_12: 3.71652073e-08 + ArtUnc_13: 2.30383829e-08 + ArtUnc_14: -7.67009470e-09 + ArtUnc_15: 2.28333874e-09 + ArtUnc_16: 5.88238875e-11 +- stat: 1.21900000e-05 sys: 0 - ArtUnc_1: 9.994911724077518e-07 - ArtUnc_2: 1.1710971819538238e-05 - ArtUnc_3: 7.822542110483119e-06 - ArtUnc_4: 4.705441685633023e-07 - ArtUnc_5: -1.2586958593413244e-05 - ArtUnc_6: -2.8469752227165375e-07 - ArtUnc_7: 2.2658183095092445e-06 - ArtUnc_8: 1.4853443027524011e-06 - ArtUnc_9: -5.04004377403696e-07 - ArtUnc_10: 1.510030364397202e-07 - ArtUnc_11: 8.943951387394814e-08 - ArtUnc_12: 4.558486013991956e-08 - ArtUnc_13: 2.863765590324098e-08 - ArtUnc_14: -9.585964402428716e-09 - ArtUnc_15: 2.861020130134436e-09 - ArtUnc_16: 7.374635386335526e-11 + ArtUnc_1: 9.99491172e-07 + ArtUnc_2: 1.17109718e-05 + ArtUnc_3: 7.82254211e-06 + ArtUnc_4: 4.70544169e-07 + ArtUnc_5: -1.25869586e-05 + ArtUnc_6: -2.84697522e-07 + ArtUnc_7: 2.26581831e-06 + ArtUnc_8: 1.48534430e-06 + ArtUnc_9: -5.04004377e-07 + ArtUnc_10: 1.51003036e-07 + ArtUnc_11: 8.94395139e-08 + ArtUnc_12: 4.55848601e-08 + ArtUnc_13: 2.86376559e-08 + ArtUnc_14: -9.58596440e-09 + ArtUnc_15: 2.86102013e-09 + ArtUnc_16: 7.37463539e-11 - stat: 8.05e-06 sys: 0 - ArtUnc_1: 4.116169990224957e-06 - ArtUnc_2: 4.931536997750794e-06 - ArtUnc_3: -2.2282047280545302e-07 - ArtUnc_4: 6.185235016558969e-06 - ArtUnc_5: 3.2697228228502587e-06 - ArtUnc_6: -7.258038461874823e-06 - ArtUnc_7: -2.6562085126011597e-06 - ArtUnc_8: 5.831056818440349e-07 - ArtUnc_9: -8.853641476654695e-07 - ArtUnc_10: 2.621244961417503e-07 - ArtUnc_11: 9.496923174140798e-08 - ArtUnc_12: 4.609745071271199e-08 - ArtUnc_13: 2.8599238494551072e-08 - ArtUnc_14: -9.56823852500225e-09 - ArtUnc_15: 2.8633535167323314e-09 - ArtUnc_16: 7.39544154641747e-11 -- stat: 6.062e-06 + ArtUnc_1: 4.11616999e-06 + ArtUnc_2: 4.93153700e-06 + ArtUnc_3: -2.22820473e-07 + ArtUnc_4: 6.18523502e-06 + ArtUnc_5: 3.26972282e-06 + ArtUnc_6: -7.25803846e-06 + ArtUnc_7: -2.65620851e-06 + ArtUnc_8: 5.83105682e-07 + ArtUnc_9: -8.85364148e-07 + ArtUnc_10: 2.62124496e-07 + ArtUnc_11: 9.49692317e-08 + ArtUnc_12: 4.60974507e-08 + ArtUnc_13: 2.85992385e-08 + ArtUnc_14: -9.56823853e-09 + ArtUnc_15: 2.86335352e-09 + ArtUnc_16: 7.39544155e-11 +- stat: 6.06200000e-06 sys: 0 - ArtUnc_1: 6.386605250186502e-07 - ArtUnc_2: 2.6382085984190578e-06 - ArtUnc_3: 1.991772558634887e-06 - ArtUnc_4: 2.3135698399816842e-06 - ArtUnc_5: -5.1242312787375406e-06 - ArtUnc_6: 4.044136921136959e-06 - ArtUnc_7: -2.7361354361224574e-06 - ArtUnc_8: -2.436961207355502e-06 - ArtUnc_9: -1.8252575829943562e-07 - ArtUnc_10: 4.17418364790257e-07 - ArtUnc_11: 1.1570401451002014e-07 - ArtUnc_12: 4.836412140053528e-08 - ArtUnc_13: 2.8625740165280405e-08 - ArtUnc_14: -9.500781972568774e-09 - ArtUnc_15: 2.8557052264532633e-09 - ArtUnc_16: 7.430263738587524e-11 -- stat: 4.787e-06 + ArtUnc_1: 6.38660525e-07 + ArtUnc_2: 2.63820860e-06 + ArtUnc_3: 1.99177256e-06 + ArtUnc_4: 2.31356984e-06 + ArtUnc_5: -5.12423128e-06 + ArtUnc_6: 4.04413692e-06 + ArtUnc_7: -2.73613544e-06 + ArtUnc_8: -2.43696121e-06 + ArtUnc_9: -1.82525758e-07 + ArtUnc_10: 4.17418365e-07 + ArtUnc_11: 1.15704015e-07 + ArtUnc_12: 4.83641214e-08 + ArtUnc_13: 2.86257402e-08 + ArtUnc_14: -9.50078197e-09 + ArtUnc_15: 2.85570523e-09 + ArtUnc_16: 7.43026374e-11 +- stat: 4.78700000e-06 sys: 0 - ArtUnc_1: 1.2407889332238194e-06 - ArtUnc_2: 1.7381336505976766e-06 - ArtUnc_3: 1.7344065221871956e-07 - ArtUnc_4: 1.1281054484789003e-06 - ArtUnc_5: 1.1641817004415618e-06 - ArtUnc_6: -4.260344144226776e-06 - ArtUnc_7: 2.5552583723742565e-06 - ArtUnc_8: -1.3921888436527175e-06 - ArtUnc_9: 1.511677836403412e-06 - ArtUnc_10: 2.0478274951801658e-07 - ArtUnc_11: 1.4944640958413489e-07 - ArtUnc_12: 5.385058547442867e-08 - ArtUnc_13: 2.844004884168851e-08 - ArtUnc_14: -9.35415793372299e-09 - ArtUnc_15: 2.8241401169602637e-09 - ArtUnc_16: 7.325349442891391e-11 -- stat: 3.718e-06 + ArtUnc_1: 1.24078893e-06 + ArtUnc_2: 1.73813365e-06 + ArtUnc_3: 1.73440652e-07 + ArtUnc_4: 1.12810545e-06 + ArtUnc_5: 1.16418170e-06 + ArtUnc_6: -4.26034414e-06 + ArtUnc_7: 2.55525837e-06 + ArtUnc_8: -1.39218884e-06 + ArtUnc_9: 1.51167784e-06 + ArtUnc_10: 2.04782750e-07 + ArtUnc_11: 1.49446410e-07 + ArtUnc_12: 5.38505855e-08 + ArtUnc_13: 2.84400488e-08 + ArtUnc_14: -9.35415793e-09 + ArtUnc_15: 2.82414012e-09 + ArtUnc_16: 7.32534944e-11 +- stat: 3.71800000e-06 sys: 0 - ArtUnc_1: 9.853169127135885e-08 - ArtUnc_2: 5.98184602676448e-07 - ArtUnc_3: 5.900974517900074e-07 - ArtUnc_4: 6.773316492278507e-07 - ArtUnc_5: -1.3991138814112996e-06 - ArtUnc_6: 1.5034231988008315e-06 - ArtUnc_7: -2.9109219550231584e-06 - ArtUnc_8: 1.5476102333633826e-06 - ArtUnc_9: 1.1750759057712048e-06 - ArtUnc_10: -6.510562095321714e-07 - ArtUnc_11: 1.4008105630830844e-07 - ArtUnc_12: 6.22947629049382e-08 - ArtUnc_13: 2.890527670197972e-08 - ArtUnc_14: -9.189170335893099e-09 - ArtUnc_15: 2.7599950164616983e-09 - ArtUnc_16: 7.226771943694365e-11 -- stat: 2.472e-06 + ArtUnc_1: 9.85316913e-08 + ArtUnc_2: 5.98184603e-07 + ArtUnc_3: 5.90097452e-07 + ArtUnc_4: 6.77331649e-07 + ArtUnc_5: -1.39911388e-06 + ArtUnc_6: 1.50342320e-06 + ArtUnc_7: -2.91092196e-06 + ArtUnc_8: 1.54761023e-06 + ArtUnc_9: 1.17507591e-06 + ArtUnc_10: -6.51056210e-07 + ArtUnc_11: 1.40081056e-07 + ArtUnc_12: 6.22947629e-08 + ArtUnc_13: 2.89052767e-08 + ArtUnc_14: -9.18917034e-09 + ArtUnc_15: 2.75999502e-09 + ArtUnc_16: 7.22677194e-11 +- stat: 2.47200000e-06 sys: 0 - ArtUnc_1: 4.296755416538177e-07 - ArtUnc_2: 4.5785032789057257e-07 - ArtUnc_3: 6.372239549966621e-08 - ArtUnc_4: 3.84676428844969e-07 - ArtUnc_5: 1.4671440509557574e-07 - ArtUnc_6: -1.0317262936780825e-06 - ArtUnc_7: 1.2953383320700787e-06 - ArtUnc_8: -1.655370613985071e-06 - ArtUnc_9: -9.294013854122299e-07 - ArtUnc_10: -9.905976598844013e-07 - ArtUnc_11: -9.983175292038126e-09 - ArtUnc_12: 6.552153214994828e-08 - ArtUnc_13: 3.199579956513274e-08 - ArtUnc_14: -9.14944082187898e-09 - ArtUnc_15: 2.6718874602573357e-09 - ArtUnc_16: 7.262662668630996e-11 -- stat: 6.236e-07 + ArtUnc_1: 4.29675542e-07 + ArtUnc_2: 4.57850328e-07 + ArtUnc_3: 6.37223955e-08 + ArtUnc_4: 3.84676429e-07 + ArtUnc_5: 1.46714405e-07 + ArtUnc_6: -1.03172629e-06 + ArtUnc_7: 1.29533833e-06 + ArtUnc_8: -1.65537061e-06 + ArtUnc_9: -9.29401385e-07 + ArtUnc_10: -9.90597660e-07 + ArtUnc_11: -9.98317529e-09 + ArtUnc_12: 6.55215321e-08 + ArtUnc_13: 3.19957996e-08 + ArtUnc_14: -9.14944082e-09 + ArtUnc_15: 2.67188746e-09 + ArtUnc_16: 7.26266267e-11 +- stat: 6.23600000e-07 sys: 0 - ArtUnc_1: 7.483656557271204e-08 - ArtUnc_2: 2.0068271337551397e-07 - ArtUnc_3: 8.246272587015293e-08 - ArtUnc_4: 1.554658038845552e-07 - ArtUnc_5: -1.444191879871617e-07 - ArtUnc_6: 2.3312328694169185e-08 - ArtUnc_7: -3.249723178510877e-07 - ArtUnc_8: 1.8596035886492803e-07 - ArtUnc_9: 3.668760299344914e-07 - ArtUnc_10: 1.6558567835888144e-07 - ArtUnc_11: -4.3384229234436646e-07 - ArtUnc_12: 4.544955675432699e-08 - ArtUnc_13: 7.577170011714703e-08 - ArtUnc_14: -1.9971641589943204e-08 - ArtUnc_15: 5.091130308249764e-09 - ArtUnc_16: 1.3796854043512683e-10 -- stat: 2.938e-07 + ArtUnc_1: 7.48365656e-08 + ArtUnc_2: 2.00682713e-07 + ArtUnc_3: 8.24627259e-08 + ArtUnc_4: 1.55465804e-07 + ArtUnc_5: -1.44419188e-07 + ArtUnc_6: 2.33123287e-08 + ArtUnc_7: -3.24972318e-07 + ArtUnc_8: 1.85960359e-07 + ArtUnc_9: 3.66876030e-07 + ArtUnc_10: 1.65585678e-07 + ArtUnc_11: -4.33842292e-07 + ArtUnc_12: 4.54495568e-08 + ArtUnc_13: 7.57717001e-08 + ArtUnc_14: -1.99716416e-08 + ArtUnc_15: 5.09113031e-09 + ArtUnc_16: 1.37968540e-10 +- stat: 2.93800000e-07 sys: 0 - ArtUnc_1: 3.871437400109332e-08 - ArtUnc_2: 6.20893114242777e-08 - ArtUnc_3: 2.1153567206321863e-08 - ArtUnc_4: 7.178817678136952e-08 - ArtUnc_5: -1.5639064664067742e-08 - ArtUnc_6: -5.2147383319901974e-08 - ArtUnc_7: 2.3152965910289117e-08 - ArtUnc_8: -8.834432266622681e-08 - ArtUnc_9: -2.1605461655690843e-08 - ArtUnc_10: -9.700830347274631e-08 - ArtUnc_11: 8.709278297858394e-08 - ArtUnc_12: -2.6075317820096925e-07 - ArtUnc_13: 5.326838681553705e-08 - ArtUnc_14: -3.1745238092719694e-08 - ArtUnc_15: 6.349694680673605e-09 - ArtUnc_16: 1.0153832690312584e-10 + ArtUnc_1: 3.87143740e-08 + ArtUnc_2: 6.20893114e-08 + ArtUnc_3: 2.11535672e-08 + ArtUnc_4: 7.17881768e-08 + ArtUnc_5: -1.56390647e-08 + ArtUnc_6: -5.21473833e-08 + ArtUnc_7: 2.31529659e-08 + ArtUnc_8: -8.83443227e-08 + ArtUnc_9: -2.16054617e-08 + ArtUnc_10: -9.70083035e-08 + ArtUnc_11: 8.70927830e-08 + ArtUnc_12: -2.60753178e-07 + ArtUnc_13: 5.32683868e-08 + ArtUnc_14: -3.17452381e-08 + ArtUnc_15: 6.34969468e-09 + ArtUnc_16: 1.01538327e-10 - stat: 1.16e-07 sys: 0 - ArtUnc_1: 8.981680917137768e-09 - ArtUnc_2: 1.9429674235863393e-08 - ArtUnc_3: 8.556407933758187e-09 - ArtUnc_4: 2.4682942324566073e-08 - ArtUnc_5: -9.203637255961279e-09 - ArtUnc_6: -3.0286910648982517e-09 - ArtUnc_7: -1.3297385511932192e-08 - ArtUnc_8: -9.458269420207034e-10 - ArtUnc_9: 1.8181721295374253e-08 - ArtUnc_10: 3.1447675219446584e-09 - ArtUnc_11: -3.759131503046266e-08 - ArtUnc_12: 3.671238431786811e-08 - ArtUnc_13: -8.495332415930055e-08 - ArtUnc_14: -6.345984189200193e-08 - ArtUnc_15: 2.218459059159098e-08 - ArtUnc_16: 1.2996791832119355e-10 + ArtUnc_1: 8.98168092e-09 + ArtUnc_2: 1.94296742e-08 + ArtUnc_3: 8.55640793e-09 + ArtUnc_4: 2.46829423e-08 + ArtUnc_5: -9.20363726e-09 + ArtUnc_6: -3.02869106e-09 + ArtUnc_7: -1.32973855e-08 + ArtUnc_8: -9.45826942e-10 + ArtUnc_9: 1.81817213e-08 + ArtUnc_10: 3.14476752e-09 + ArtUnc_11: -3.75913150e-08 + ArtUnc_12: 3.67123843e-08 + ArtUnc_13: -8.49533242e-08 + ArtUnc_14: -6.34598419e-08 + ArtUnc_15: 2.21845906e-08 + ArtUnc_16: 1.29967918e-10 - stat: 6.34e-08 sys: 0 - ArtUnc_1: 2.986851367333668e-09 - ArtUnc_2: 4.919729157039549e-09 - ArtUnc_3: 2.9285143374879445e-09 - ArtUnc_4: 7.535756193232184e-09 - ArtUnc_5: -8.790380829610205e-10 - ArtUnc_6: -1.5832036683244428e-09 - ArtUnc_7: -7.265154865159519e-10 - ArtUnc_8: -2.4391064865619393e-09 - ArtUnc_9: 1.3787283787298847e-09 - ArtUnc_10: -3.915447982160009e-09 - ArtUnc_11: 3.832251915604994e-11 - ArtUnc_12: -1.4933361308440064e-08 - ArtUnc_13: 8.243878188535131e-09 - ArtUnc_14: 4.0725928367610354e-08 - ArtUnc_15: 4.792909029273403e-08 - ArtUnc_16: 8.694944410985524e-10 -- stat: 1.222e-08 + ArtUnc_1: 2.98685137e-09 + ArtUnc_2: 4.91972916e-09 + ArtUnc_3: 2.92851434e-09 + ArtUnc_4: 7.53575619e-09 + ArtUnc_5: -8.79038083e-10 + ArtUnc_6: -1.58320367e-09 + ArtUnc_7: -7.26515487e-10 + ArtUnc_8: -2.43910649e-09 + ArtUnc_9: 1.37872838e-09 + ArtUnc_10: -3.91544798e-09 + ArtUnc_11: 3.83225192e-11 + ArtUnc_12: -1.49333613e-08 + ArtUnc_13: 8.24387819e-09 + ArtUnc_14: 4.07259284e-08 + ArtUnc_15: 4.79290903e-08 + ArtUnc_16: 8.69494441e-10 +- stat: 1.22200000e-08 sys: 0 - ArtUnc_1: 3.5350480185924683e-10 - ArtUnc_2: 3.0477270242703653e-10 - ArtUnc_3: 4.2525762137117556e-10 - ArtUnc_4: 7.45758688001335e-10 - ArtUnc_5: 8.05901772787943e-11 - ArtUnc_6: -1.8765963273285144e-10 - ArtUnc_7: -2.323331362468512e-10 - ArtUnc_8: -9.958611477693736e-11 - ArtUnc_9: 5.410801647600284e-10 - ArtUnc_10: -2.64244207724795e-10 - ArtUnc_11: -7.249717939512556e-10 - ArtUnc_12: -5.208213325081006e-10 - ArtUnc_13: -2.7169289539845697e-09 - ArtUnc_14: -1.2708168844779078e-09 - ArtUnc_15: -4.109261392249794e-09 - ArtUnc_16: 1.1636038909423877e-08 + ArtUnc_1: 3.53504802e-10 + ArtUnc_2: 3.04772702e-10 + ArtUnc_3: 4.25257621e-10 + ArtUnc_4: 7.45758688e-10 + ArtUnc_5: 8.05901773e-11 + ArtUnc_6: -1.87659633e-10 + ArtUnc_7: -2.32333136e-10 + ArtUnc_8: -9.95861148e-11 + ArtUnc_9: 5.41080165e-10 + ArtUnc_10: -2.64244208e-10 + ArtUnc_11: -7.24971794e-10 + ArtUnc_12: -5.20821333e-10 + ArtUnc_13: -2.71692895e-09 + ArtUnc_14: -1.27081688e-09 + ArtUnc_15: -4.10926139e-09 + ArtUnc_16: 1.16360389e-08 diff --git a/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_LJ_DIF/uncertainties_dSig_dyt.yaml b/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_LJ_DIF/uncertainties_dSig_dyt.yaml index 475a947244..38c8fec1fe 100644 --- a/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_LJ_DIF/uncertainties_dSig_dyt.yaml +++ b/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_LJ_DIF/uncertainties_dSig_dyt.yaml @@ -54,144 +54,144 @@ definitions: bins: - stat: 0.7295 sys: 0 - ArtUnc_1: -7.212751606805121 - ArtUnc_2: -0.22852153407659342 - ArtUnc_3: -0.162903499094914 - ArtUnc_4: 0.3910321152873993 - ArtUnc_5: 0.3407216972816695 - ArtUnc_6: 0.31862408921065105 - ArtUnc_7: -0.20740402506503647 - ArtUnc_8: 0.2432339953084349 - ArtUnc_9: -0.4041847334540251 - ArtUnc_10: 0.40479323339447054 - ArtUnc_11: -0.23986214774326348 + ArtUnc_1: -7.21275161e+00 + ArtUnc_2: -2.28521534e-01 + ArtUnc_3: -1.62903499e-01 + ArtUnc_4: 3.91032115e-01 + ArtUnc_5: 3.40721697e-01 + ArtUnc_6: 3.18624089e-01 + ArtUnc_7: -2.07404025e-01 + ArtUnc_8: 2.43233995e-01 + ArtUnc_9: -4.04184733e-01 + ArtUnc_10: 4.04793233e-01 + ArtUnc_11: -2.39862148e-01 - stat: 1.26 sys: 0 - ArtUnc_1: -7.119051508389283 - ArtUnc_2: 0.5941514588915584 - ArtUnc_3: 0.6360807024454851 - ArtUnc_4: -0.8154815116073048 - ArtUnc_5: -0.5209805118084637 - ArtUnc_6: 0.27209829512317246 - ArtUnc_7: 0.4539432278231844 - ArtUnc_8: 0.01808654771761423 - ArtUnc_9: 0.13899537103959833 - ArtUnc_10: 0.2925509856931753 - ArtUnc_11: 0.17241045041405897 + ArtUnc_1: -7.11905151e+00 + ArtUnc_2: 5.94151459e-01 + ArtUnc_3: 6.36080702e-01 + ArtUnc_4: -8.15481512e-01 + ArtUnc_5: -5.20980512e-01 + ArtUnc_6: 2.72098295e-01 + ArtUnc_7: 4.53943228e-01 + ArtUnc_8: 1.80865477e-02 + ArtUnc_9: 1.38995371e-01 + ArtUnc_10: 2.92550986e-01 + ArtUnc_11: 1.72410450e-01 - stat: 1.335 sys: 0 - ArtUnc_1: -6.926956630386346 - ArtUnc_2: -0.8899013757963894 - ArtUnc_3: -0.7803110399645066 - ArtUnc_4: 0.7704799668089485 - ArtUnc_5: 0.12108551656193492 - ArtUnc_6: 0.22050007928258236 - ArtUnc_7: 0.1748308709912876 - ArtUnc_8: -0.2310519390239954 - ArtUnc_9: 0.2491443653722748 - ArtUnc_10: 0.036273317838182745 - ArtUnc_11: 0.36359482409846056 + ArtUnc_1: -6.92695663e+00 + ArtUnc_2: -8.89901376e-01 + ArtUnc_3: -7.80311040e-01 + ArtUnc_4: 7.70479967e-01 + ArtUnc_5: 1.21085517e-01 + ArtUnc_6: 2.20500079e-01 + ArtUnc_7: 1.74830871e-01 + ArtUnc_8: -2.31051939e-01 + ArtUnc_9: 2.49144365e-01 + ArtUnc_10: 3.62733178e-02 + ArtUnc_11: 3.63594824e-01 - stat: 1.341 sys: 0 - ArtUnc_1: -6.28260980341803 - ArtUnc_2: 1.022383283732734 - ArtUnc_3: 0.7484622995171475 - ArtUnc_4: -0.011614935078832395 - ArtUnc_5: 0.3871146593228669 - ArtUnc_6: 0.2651623774101002 - ArtUnc_7: -0.4659806980057185 - ArtUnc_8: -0.3124356428002936 - ArtUnc_9: -0.11397700411428897 - ArtUnc_10: -0.23486784522676174 - ArtUnc_11: 0.011798676766269053 + ArtUnc_1: -6.28260980e+00 + ArtUnc_2: 1.02238328e+00 + ArtUnc_3: 7.48462300e-01 + ArtUnc_4: -1.16149351e-02 + ArtUnc_5: 3.87114659e-01 + ArtUnc_6: 2.65162377e-01 + ArtUnc_7: -4.65980698e-01 + ArtUnc_8: -3.12435643e-01 + ArtUnc_9: -1.13977004e-01 + ArtUnc_10: -2.34867845e-01 + ArtUnc_11: 1.17986768e-02 - stat: 1.326 sys: 0 - ArtUnc_1: -5.9492385423415035 - ArtUnc_2: -1.0655419690009067 - ArtUnc_3: -0.3590038254716086 - ArtUnc_4: -0.511219525216798 - ArtUnc_5: -0.6150439320066646 - ArtUnc_6: 0.09658032438924007 - ArtUnc_7: -0.07136064748130314 - ArtUnc_8: -0.1010274015426206 - ArtUnc_9: -0.06352582951306027 - ArtUnc_10: -0.30179778362661897 - ArtUnc_11: -0.42770178922226937 + ArtUnc_1: -5.94923854e+00 + ArtUnc_2: -1.06554197e+00 + ArtUnc_3: -3.59003825e-01 + ArtUnc_4: -5.11219525e-01 + ArtUnc_5: -6.15043932e-01 + ArtUnc_6: 9.65803244e-02 + ArtUnc_7: -7.13606475e-02 + ArtUnc_8: -1.01027402e-01 + ArtUnc_9: -6.35258295e-02 + ArtUnc_10: -3.01797784e-01 + ArtUnc_11: -4.27701789e-01 - stat: 1.307 sys: 0 - ArtUnc_1: -5.3597775312928055 - ArtUnc_2: 1.0088117148962168 - ArtUnc_3: -0.008377012028820859 - ArtUnc_4: 0.8572132393970329 - ArtUnc_5: -0.025544434409996916 - ArtUnc_6: -0.18256532123520966 - ArtUnc_7: 0.3446274348675922 - ArtUnc_8: 0.22157507777009142 - ArtUnc_9: 0.34224866423921485 - ArtUnc_10: -0.26285498589088413 - ArtUnc_11: -0.26856272345279314 + ArtUnc_1: -5.35977753e+00 + ArtUnc_2: 1.00881171e+00 + ArtUnc_3: -8.37701203e-03 + ArtUnc_4: 8.57213239e-01 + ArtUnc_5: -2.55444344e-02 + ArtUnc_6: -1.82565321e-01 + ArtUnc_7: 3.44627435e-01 + ArtUnc_8: 2.21575078e-01 + ArtUnc_9: 3.42248664e-01 + ArtUnc_10: -2.62854986e-01 + ArtUnc_11: -2.68562723e-01 - stat: 1.292 sys: 0 - ArtUnc_1: -4.614755408921304 - ArtUnc_2: -0.8770262011127817 - ArtUnc_3: 0.49261427989822076 - ArtUnc_4: -0.6113080609067909 - ArtUnc_5: 0.5043200379799003 - ArtUnc_6: -0.17155638422343575 - ArtUnc_7: -0.24446260264537548 - ArtUnc_8: 0.328842728868206 - ArtUnc_9: 0.25563519329216877 - ArtUnc_10: -0.22774418821223885 - ArtUnc_11: 0.24414057199179215 + ArtUnc_1: -4.61475541e+00 + ArtUnc_2: -8.77026201e-01 + ArtUnc_3: 4.92614280e-01 + ArtUnc_4: -6.11308061e-01 + ArtUnc_5: 5.04320038e-01 + ArtUnc_6: -1.71556384e-01 + ArtUnc_7: -2.44462603e-01 + ArtUnc_8: 3.28842729e-01 + ArtUnc_9: 2.55635193e-01 + ArtUnc_10: -2.27744188e-01 + ArtUnc_11: 2.44140572e-01 - stat: 1.292 sys: 0 - ArtUnc_1: -4.05962058565761 - ArtUnc_2: 0.7597667866174096 - ArtUnc_3: -0.9230614536063187 - ArtUnc_4: -0.09248622265269535 - ArtUnc_5: -0.45976734924124557 - ArtUnc_6: -0.46185699561789156 - ArtUnc_7: -0.21810678906633252 - ArtUnc_8: 0.11825087057795373 - ArtUnc_9: -0.4158564850086767 - ArtUnc_10: -0.13723955163200172 - ArtUnc_11: 0.3515905738624979 + ArtUnc_1: -4.05962059e+00 + ArtUnc_2: 7.59766787e-01 + ArtUnc_3: -9.23061454e-01 + ArtUnc_4: -9.24862227e-02 + ArtUnc_5: -4.59767349e-01 + ArtUnc_6: -4.61856996e-01 + ArtUnc_7: -2.18106789e-01 + ArtUnc_8: 1.18250871e-01 + ArtUnc_9: -4.15856485e-01 + ArtUnc_10: -1.37239552e-01 + ArtUnc_11: 3.51590574e-01 - stat: 1.332 sys: 0 - ArtUnc_1: -3.0701624683390754 - ArtUnc_2: -0.6536815569864639 - ArtUnc_3: 0.9948971781266881 - ArtUnc_4: 0.3228115527175584 - ArtUnc_5: 0.10945039214919812 - ArtUnc_6: -0.7862183373103108 - ArtUnc_7: 0.3911341595718725 - ArtUnc_8: -0.14190984859022623 - ArtUnc_9: -0.35816854865788744 - ArtUnc_10: 0.03353644719959504 - ArtUnc_11: -0.011079067268577972 + ArtUnc_1: -3.07016247e+00 + ArtUnc_2: -6.53681557e-01 + ArtUnc_3: 9.94897178e-01 + ArtUnc_4: 3.22811553e-01 + ArtUnc_5: 1.09450392e-01 + ArtUnc_6: -7.86218337e-01 + ArtUnc_7: 3.91134160e-01 + ArtUnc_8: -1.41909849e-01 + ArtUnc_9: -3.58168549e-01 + ArtUnc_10: 3.35364472e-02 + ArtUnc_11: -1.10790673e-02 - stat: 1.324 sys: 0 - ArtUnc_1: -2.644898143877191 - ArtUnc_2: 0.44683294708522253 - ArtUnc_3: -0.9566877251660362 - ArtUnc_4: -0.7955376076209835 - ArtUnc_5: 0.6262666330436618 - ArtUnc_6: -0.5237064454013861 - ArtUnc_7: 0.07457402472372496 - ArtUnc_8: -0.1581143047092355 - ArtUnc_9: 0.21418294513171604 - ArtUnc_10: 0.20512878468491444 - ArtUnc_11: -0.21384744530594424 + ArtUnc_1: -2.64489814e+00 + ArtUnc_2: 4.46832947e-01 + ArtUnc_3: -9.56687725e-01 + ArtUnc_4: -7.95537608e-01 + ArtUnc_5: 6.26266633e-01 + ArtUnc_6: -5.23706445e-01 + ArtUnc_7: 7.45740247e-02 + ArtUnc_8: -1.58114305e-01 + ArtUnc_9: 2.14182945e-01 + ArtUnc_10: 2.05128785e-01 + ArtUnc_11: -2.13847445e-01 - stat: 0.5364 sys: 0 - ArtUnc_1: -1.2381530750764729 - ArtUnc_2: -0.09717564801076138 - ArtUnc_3: 0.3877583044899792 - ArtUnc_4: 0.3855347069464775 - ArtUnc_5: -0.5466346431962779 - ArtUnc_6: -0.4514717646476275 - ArtUnc_7: -0.6673387461548416 - ArtUnc_8: -0.04038626829594139 - ArtUnc_9: 0.404838908859875 - ArtUnc_10: 0.31408810298626416 - ArtUnc_11: -0.04884899573176652 + ArtUnc_1: -1.23815308e+00 + ArtUnc_2: -9.71756480e-02 + ArtUnc_3: 3.87758304e-01 + ArtUnc_4: 3.85534707e-01 + ArtUnc_5: -5.46634643e-01 + ArtUnc_6: -4.51471765e-01 + ArtUnc_7: -6.67338746e-01 + ArtUnc_8: -4.03862683e-02 + ArtUnc_9: 4.04838909e-01 + ArtUnc_10: 3.14088103e-01 + ArtUnc_11: -4.88489957e-02 diff --git a/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_LJ_DIF/uncertainties_dSig_dyt_norm.yaml b/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_LJ_DIF/uncertainties_dSig_dyt_norm.yaml index 6dc9d9c0b4..6439e1e1fb 100644 --- a/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_LJ_DIF/uncertainties_dSig_dyt_norm.yaml +++ b/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_LJ_DIF/uncertainties_dSig_dyt_norm.yaml @@ -54,144 +54,144 @@ definitions: bins: - stat: 0.003316 sys: 0 - ArtUnc_1: -0.0009285425868275285 - ArtUnc_2: 0.0013589167940071549 - ArtUnc_3: 0.0012435638219901253 - ArtUnc_4: -0.0033437310420681584 - ArtUnc_5: -1.4580311050251534e-05 - ArtUnc_6: 0.00019311605955449885 - ArtUnc_7: 0.0010921730357069824 - ArtUnc_8: -0.0011039852670134387 - ArtUnc_9: -0.0018623883483603243 - ArtUnc_10: -0.0017837908049941561 - ArtUnc_11: -0.0012225521447503961 + ArtUnc_1: -9.28542587e-04 + ArtUnc_2: 1.35891679e-03 + ArtUnc_3: 1.24356382e-03 + ArtUnc_4: -3.34373104e-03 + ArtUnc_5: -1.45803111e-05 + ArtUnc_6: 1.93116060e-04 + ArtUnc_7: 1.09217304e-03 + ArtUnc_8: -1.10398527e-03 + ArtUnc_9: -1.86238835e-03 + ArtUnc_10: -1.78379080e-03 + ArtUnc_11: -1.22255214e-03 - stat: 0.005715 sys: 0 - ArtUnc_1: 0.0027672946522189833 - ArtUnc_2: -0.0021964298873743096 - ArtUnc_3: -0.004261868286818871 - ArtUnc_4: -0.001018120213764127 - ArtUnc_5: -1.4585434565851306e-05 - ArtUnc_6: 0.0033812047121060795 - ArtUnc_7: -0.0016993769447036554 - ArtUnc_8: -0.0001288674973045792 - ArtUnc_9: 0.0009206354761162998 - ArtUnc_10: -0.0013039146371005184 - ArtUnc_11: 0.0007229633883752124 + ArtUnc_1: 2.76729465e-03 + ArtUnc_2: -2.19642989e-03 + ArtUnc_3: -4.26186829e-03 + ArtUnc_4: -1.01812021e-03 + ArtUnc_5: -1.45854346e-05 + ArtUnc_6: 3.38120471e-03 + ArtUnc_7: -1.69937694e-03 + ArtUnc_8: -1.28867497e-04 + ArtUnc_9: 9.20635476e-04 + ArtUnc_10: -1.30391464e-03 + ArtUnc_11: 7.22963388e-04 - stat: 0.006057 sys: 0 - ArtUnc_1: -0.003918746897596856 - ArtUnc_2: 0.004028718735832647 - ArtUnc_3: 0.003131002926199948 - ArtUnc_4: -0.002602841521723404 - ArtUnc_5: -1.4583671329797932e-05 - ArtUnc_6: 0.0008753679543622582 - ArtUnc_7: -0.00041090631231677097 - ArtUnc_8: 0.0009915887214401152 - ArtUnc_9: 0.0011747833760878384 - ArtUnc_10: -0.00012556777472460035 - ArtUnc_11: 0.0017030641835472718 + ArtUnc_1: -3.91874690e-03 + ArtUnc_2: 4.02871874e-03 + ArtUnc_3: 3.13100293e-03 + ArtUnc_4: -2.60284152e-03 + ArtUnc_5: -1.45836713e-05 + ArtUnc_6: 8.75367954e-04 + ArtUnc_7: -4.10906312e-04 + ArtUnc_8: 9.91588721e-04 + ArtUnc_9: 1.17478338e-03 + ArtUnc_10: -1.25567775e-04 + ArtUnc_11: 1.70306418e-03 - stat: 0.006082 sys: 0 - ArtUnc_1: 0.004690433551874294 - ArtUnc_2: -0.0029213144604863894 - ArtUnc_3: -0.0006296922244977923 - ArtUnc_4: -0.002861456126291359 - ArtUnc_5: -1.4586810092347133e-05 - ArtUnc_6: -0.00036799163448146235 - ArtUnc_7: 0.002121168415422036 - ArtUnc_8: 0.0013942224288509514 - ArtUnc_9: -0.0009815680523184158 - ArtUnc_10: 0.0011785053575960557 - ArtUnc_11: 0.00017354680387382271 + ArtUnc_1: 4.69043355e-03 + ArtUnc_2: -2.92131446e-03 + ArtUnc_3: -6.29692224e-04 + ArtUnc_4: -2.86145613e-03 + ArtUnc_5: -1.45868101e-05 + ArtUnc_6: -3.67991634e-04 + ArtUnc_7: 2.12116842e-03 + ArtUnc_8: 1.39422243e-03 + ArtUnc_9: -9.81568052e-04 + ArtUnc_10: 1.17850536e-03 + ArtUnc_11: 1.73546804e-04 - stat: 0.006012 sys: 0 - ArtUnc_1: -0.004741928155017026 - ArtUnc_2: 0.0021184198387978253 - ArtUnc_3: -0.002508753852690086 - ArtUnc_4: 0.0006196657490936974 - ArtUnc_5: -1.4589977778438474e-05 - ArtUnc_6: 0.002729932089093265 - ArtUnc_7: -2.4560175814744377e-05 - ArtUnc_8: 0.0004543079048424521 - ArtUnc_9: -0.0005634540645469276 - ArtUnc_10: 0.0016064721847701604 - ArtUnc_11: -0.001841360613462678 + ArtUnc_1: -4.74192816e-03 + ArtUnc_2: 2.11841984e-03 + ArtUnc_3: -2.50875385e-03 + ArtUnc_4: 6.19665749e-04 + ArtUnc_5: -1.45899778e-05 + ArtUnc_6: 2.72993209e-03 + ArtUnc_7: -2.45601758e-05 + ArtUnc_8: 4.54307905e-04 + ArtUnc_9: -5.63454065e-04 + ArtUnc_10: 1.60647218e-03 + ArtUnc_11: -1.84136061e-03 - stat: 0.005931 sys: 0 - ArtUnc_1: 0.004632132705605549 - ArtUnc_2: 0.00022029995346092165 - ArtUnc_3: 0.0035840886093644313 - ArtUnc_4: -0.0011616691322650782 - ArtUnc_5: -1.4590896791920332e-05 - ArtUnc_6: 0.00028839928883907516 - ArtUnc_7: -0.0018379634885336456 - ArtUnc_8: -0.0010217307868890502 - ArtUnc_9: 0.0015036098605255687 - ArtUnc_10: 0.001466367248191197 - ArtUnc_11: -0.0011149628003488908 + ArtUnc_1: 4.63213271e-03 + ArtUnc_2: 2.20299953e-04 + ArtUnc_3: 3.58408861e-03 + ArtUnc_4: -1.16166913e-03 + ArtUnc_5: -1.45908968e-05 + ArtUnc_6: 2.88399289e-04 + ArtUnc_7: -1.83796349e-03 + ArtUnc_8: -1.02173079e-03 + ArtUnc_9: 1.50360986e-03 + ArtUnc_10: 1.46636725e-03 + ArtUnc_11: -1.11496280e-03 - stat: 0.005851 sys: 0 - ArtUnc_1: -0.003926588765319985 - ArtUnc_2: -0.0017721331181376546 - ArtUnc_3: -0.003123159948143196 - ArtUnc_4: -0.0014380157238514369 - ArtUnc_5: -1.4585405211398962e-05 - ArtUnc_6: -0.002120397030403259 - ArtUnc_7: 0.0007716982892833687 - ArtUnc_8: -0.0015254467881144166 - ArtUnc_9: 0.0006706310113707582 - ArtUnc_10: 0.0012339829930945255 - ArtUnc_11: 0.0012239955725551143 + ArtUnc_1: -3.92658877e-03 + ArtUnc_2: -1.77213312e-03 + ArtUnc_3: -3.12315995e-03 + ArtUnc_4: -1.43801572e-03 + ArtUnc_5: -1.45854052e-05 + ArtUnc_6: -2.12039703e-03 + ArtUnc_7: 7.71698289e-04 + ArtUnc_8: -1.52544679e-03 + ArtUnc_9: 6.70631011e-04 + ArtUnc_10: 1.23398299e-03 + ArtUnc_11: 1.22399557e-03 - stat: 0.005882 sys: 0 - ArtUnc_1: 0.003517037895714184 - ArtUnc_2: 0.004348223558129867 - ArtUnc_3: -0.00024462194546396167 - ArtUnc_4: 0.002203688939544901 - ArtUnc_5: -1.4581238815897254e-05 - ArtUnc_6: 0.0004723516148559913 - ArtUnc_7: -0.0005588916219145225 - ArtUnc_8: -0.0005693674187919959 - ArtUnc_9: -0.002479257575024316 - ArtUnc_10: 0.000666374763340213 - ArtUnc_11: 0.0016299295317334886 + ArtUnc_1: 3.51703790e-03 + ArtUnc_2: 4.34822356e-03 + ArtUnc_3: -2.44621945e-04 + ArtUnc_4: 2.20368894e-03 + ArtUnc_5: -1.45812388e-05 + ArtUnc_6: 4.72351615e-04 + ArtUnc_7: -5.58891622e-04 + ArtUnc_8: -5.69367419e-04 + ArtUnc_9: -2.47925758e-03 + ArtUnc_10: 6.66374763e-04 + ArtUnc_11: 1.62992953e-03 - stat: 0.005998 sys: 0 - ArtUnc_1: -0.002965958154937286 - ArtUnc_2: -0.004333570425789609 - ArtUnc_3: 0.001168979357369141 - ArtUnc_4: 7.988214845045522e-05 - ArtUnc_5: -1.4589373246090816e-05 - ArtUnc_6: -0.0017706760844147817 - ArtUnc_7: -0.0034626929356594022 - ArtUnc_8: 0.0006189078418003976 - ArtUnc_9: -0.0017222796529749779 - ArtUnc_10: -0.00011145618805991035 - ArtUnc_11: -5.385237543739339e-05 + ArtUnc_1: -2.96595815e-03 + ArtUnc_2: -4.33357043e-03 + ArtUnc_3: 1.16897936e-03 + ArtUnc_4: 7.98821485e-05 + ArtUnc_5: -1.45893732e-05 + ArtUnc_6: -1.77067608e-03 + ArtUnc_7: -3.46269294e-03 + ArtUnc_8: 6.18907842e-04 + ArtUnc_9: -1.72227965e-03 + ArtUnc_10: -1.11456188e-04 + ArtUnc_11: -5.38523754e-05 - stat: 0.006076 sys: 0 - ArtUnc_1: 0.002100505568269749 - ArtUnc_2: 0.0046080285051716624 - ArtUnc_3: -0.003457251198394186 - ArtUnc_4: -1.6572399760354536e-05 - ArtUnc_5: -1.4592689116412148e-05 - ArtUnc_6: -0.003645548106289414 - ArtUnc_7: -0.0008415369913294733 - ArtUnc_8: 0.0006913161773394095 - ArtUnc_9: 0.0009550678156506841 - ArtUnc_10: -0.00070806251509048 - ArtUnc_11: -0.0009440580466901045 + ArtUnc_1: 2.10050557e-03 + ArtUnc_2: 4.60802851e-03 + ArtUnc_3: -3.45725120e-03 + ArtUnc_4: -1.65723998e-05 + ArtUnc_5: -1.45926891e-05 + ArtUnc_6: -3.64554811e-03 + ArtUnc_7: -8.41536991e-04 + ArtUnc_8: 6.91316177e-04 + ArtUnc_9: 9.55067816e-04 + ArtUnc_10: -7.08062515e-04 + ArtUnc_11: -9.44058047e-04 - stat: 0.002353 sys: 0 - ArtUnc_1: -0.0004905326588784353 - ArtUnc_2: -0.002183328959292557 - ArtUnc_3: 0.002039661602936465 - ArtUnc_4: 0.0038153742808288396 - ArtUnc_5: -3.6465016061558175e-05 - ArtUnc_6: -1.3633803449333116e-05 - ArtUnc_7: 0.0019410891141215562 - ArtUnc_8: 7.928431260179216e-05 - ArtUnc_9: 0.0009530390908033295 - ArtUnc_10: -0.0008480214116398876 - ArtUnc_11: -0.00010999843820181052 + ArtUnc_1: -4.90532659e-04 + ArtUnc_2: -2.18332896e-03 + ArtUnc_3: 2.03966160e-03 + ArtUnc_4: 3.81537428e-03 + ArtUnc_5: -3.64650161e-05 + ArtUnc_6: -1.36338034e-05 + ArtUnc_7: 1.94108911e-03 + ArtUnc_8: 7.92843126e-05 + ArtUnc_9: 9.53039091e-04 + ArtUnc_10: -8.48021412e-04 + ArtUnc_11: -1.09998438e-04 diff --git a/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_LJ_DIF/uncertainties_dSig_dyttBar.yaml b/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_LJ_DIF/uncertainties_dSig_dyttBar.yaml index 81bdeb92a2..cdb226f395 100644 --- a/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_LJ_DIF/uncertainties_dSig_dyttBar.yaml +++ b/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_LJ_DIF/uncertainties_dSig_dyttBar.yaml @@ -50,121 +50,121 @@ definitions: bins: - stat: 0.5148 sys: 0 - ArtUnc_1: 9.184714560812749 - ArtUnc_2: 0.5951919425207503 - ArtUnc_3: 0.24606901922649138 - ArtUnc_4: 0.17657309356372902 - ArtUnc_5: 0.2362052593947812 - ArtUnc_6: 0.17492111628042292 - ArtUnc_7: 0.30327985062024493 - ArtUnc_8: -0.3428512279149004 - ArtUnc_9: 0.11619144225528907 - ArtUnc_10: -0.16006424755116266 + ArtUnc_1: 9.18471456e+00 + ArtUnc_2: 5.95191943e-01 + ArtUnc_3: 2.46069019e-01 + ArtUnc_4: 1.76573094e-01 + ArtUnc_5: 2.36205259e-01 + ArtUnc_6: 1.74921116e-01 + ArtUnc_7: 3.03279851e-01 + ArtUnc_8: -3.42851228e-01 + ArtUnc_9: 1.16191442e-01 + ArtUnc_10: -1.60064248e-01 - stat: 0.8134 sys: 0 - ArtUnc_1: 8.792796718119659 - ArtUnc_2: 0.577430345696063 - ArtUnc_3: -0.06844295538958636 - ArtUnc_4: -0.466053325026424 - ArtUnc_5: -0.5261495005936819 - ArtUnc_6: -0.4175210715994824 - ArtUnc_7: -0.23661887337588575 - ArtUnc_8: 0.027804616696187757 - ArtUnc_9: 0.1451845564769278 - ArtUnc_10: -0.0491186745707673 + ArtUnc_1: 8.79279672e+00 + ArtUnc_2: 5.77430346e-01 + ArtUnc_3: -6.84429554e-02 + ArtUnc_4: -4.66053325e-01 + ArtUnc_5: -5.26149501e-01 + ArtUnc_6: -4.17521072e-01 + ArtUnc_7: -2.36618873e-01 + ArtUnc_8: 2.78046167e-02 + ArtUnc_9: 1.45184556e-01 + ArtUnc_10: -4.91186746e-02 - stat: 0.8347 sys: 0 - ArtUnc_1: 8.591928399684228 - ArtUnc_2: 0.22663909273373317 - ArtUnc_3: 0.4231482907481311 - ArtUnc_4: 0.5786809959225523 - ArtUnc_5: 0.43763671688537165 - ArtUnc_6: 0.0693708820811399 - ArtUnc_7: -0.23961118397706385 - ArtUnc_8: 0.3085012496775306 - ArtUnc_9: 0.0780681109434576 - ArtUnc_10: 0.13585116711631742 + ArtUnc_1: 8.59192840e+00 + ArtUnc_2: 2.26639093e-01 + ArtUnc_3: 4.23148291e-01 + ArtUnc_4: 5.78680996e-01 + ArtUnc_5: 4.37636717e-01 + ArtUnc_6: 6.93708821e-02 + ArtUnc_7: -2.39611184e-01 + ArtUnc_8: 3.08501250e-01 + ArtUnc_9: 7.80681109e-02 + ArtUnc_10: 1.35851167e-01 - stat: 0.8298 sys: 0 - ArtUnc_1: 7.529094870088411 - ArtUnc_2: 0.2297608099468343 - ArtUnc_3: -0.32462491438595337 - ArtUnc_4: -0.6489035863075567 - ArtUnc_5: -0.07231224331611188 - ArtUnc_6: 0.3501502090571948 - ArtUnc_7: 0.2781377259051956 - ArtUnc_8: 0.1849808934325086 - ArtUnc_9: -0.13657204069635656 - ArtUnc_10: 0.21311623780254801 + ArtUnc_1: 7.52909487e+00 + ArtUnc_2: 2.29760810e-01 + ArtUnc_3: -3.24624914e-01 + ArtUnc_4: -6.48903586e-01 + ArtUnc_5: -7.23122433e-02 + ArtUnc_6: 3.50150209e-01 + ArtUnc_7: 2.78137726e-01 + ArtUnc_8: 1.84980893e-01 + ArtUnc_9: -1.36572041e-01 + ArtUnc_10: 2.13116238e-01 - stat: 0.8262 sys: 0 - ArtUnc_1: 6.90252830076363 - ArtUnc_2: -0.4832593434601259 - ArtUnc_3: 0.3266641684086335 - ArtUnc_4: 0.5091820102469734 - ArtUnc_5: -0.3440043924148047 - ArtUnc_6: -0.32993222195344596 - ArtUnc_7: 0.1331179143848325 - ArtUnc_8: -0.11394466442555881 - ArtUnc_9: -0.2947822055233874 - ArtUnc_10: 0.10388964422000788 + ArtUnc_1: 6.90252830e+00 + ArtUnc_2: -4.83259343e-01 + ArtUnc_3: 3.26664168e-01 + ArtUnc_4: 5.09182010e-01 + ArtUnc_5: -3.44004392e-01 + ArtUnc_6: -3.29932222e-01 + ArtUnc_7: 1.33117914e-01 + ArtUnc_8: -1.13944664e-01 + ArtUnc_9: -2.94782206e-01 + ArtUnc_10: 1.03889644e-01 - stat: 0.83 sys: 0 - ArtUnc_1: 5.734430891179043 - ArtUnc_2: -0.22801389890536314 - ArtUnc_3: -0.6731864982321365 - ArtUnc_4: -0.22606151543499328 - ArtUnc_5: 0.5251391602774712 - ArtUnc_6: -0.037731081830166886 - ArtUnc_7: -0.3268081921357422 - ArtUnc_8: -0.13438650431022206 - ArtUnc_9: -0.21741765607748054 - ArtUnc_10: -0.1438735892362136 + ArtUnc_1: 5.73443089e+00 + ArtUnc_2: -2.28013899e-01 + ArtUnc_3: -6.73186498e-01 + ArtUnc_4: -2.26061515e-01 + ArtUnc_5: 5.25139160e-01 + ArtUnc_6: -3.77310818e-02 + ArtUnc_7: -3.26808192e-01 + ArtUnc_8: -1.34386504e-01 + ArtUnc_9: -2.17417656e-01 + ArtUnc_10: -1.43873589e-01 - stat: 0.858 sys: 0 - ArtUnc_1: 4.708557370680023 - ArtUnc_2: -0.9217170085983324 - ArtUnc_3: 0.3672221368557825 - ArtUnc_4: -0.06777907917189584 - ArtUnc_5: -0.421454424917966 - ArtUnc_6: 0.4796427667708348 - ArtUnc_7: -0.15474552489713062 - ArtUnc_8: 0.0684560104813287 - ArtUnc_9: 0.02060651055436298 - ArtUnc_10: -0.23182125567472195 + ArtUnc_1: 4.70855737e+00 + ArtUnc_2: -9.21717009e-01 + ArtUnc_3: 3.67222137e-01 + ArtUnc_4: -6.77790792e-02 + ArtUnc_5: -4.21454425e-01 + ArtUnc_6: 4.79642767e-01 + ArtUnc_7: -1.54745525e-01 + ArtUnc_8: 6.84560105e-02 + ArtUnc_9: 2.06065106e-02 + ArtUnc_10: -2.31821256e-01 - stat: 0.9259 sys: 0 - ArtUnc_1: 3.6155954066394966 - ArtUnc_2: -0.5547591888108508 - ArtUnc_3: -1.008030351807471 - ArtUnc_4: 0.5115197216484693 - ArtUnc_5: -0.07862154439817104 - ArtUnc_6: -0.12418806536856236 - ArtUnc_7: 0.24300370011689967 - ArtUnc_8: 0.16349605912620221 - ArtUnc_9: 0.16753637200399008 - ArtUnc_10: -0.08050008527176598 + ArtUnc_1: 3.61559541e+00 + ArtUnc_2: -5.54759189e-01 + ArtUnc_3: -1.00803035e+00 + ArtUnc_4: 5.11519722e-01 + ArtUnc_5: -7.86215444e-02 + ArtUnc_6: -1.24188065e-01 + ArtUnc_7: 2.43003700e-01 + ArtUnc_8: 1.63496059e-01 + ArtUnc_9: 1.67536372e-01 + ArtUnc_10: -8.05000853e-02 - stat: 1.029 sys: 0 - ArtUnc_1: 2.6771309841529174 - ArtUnc_2: -1.105035209173566 - ArtUnc_3: 0.3979690422740564 - ArtUnc_4: -0.5880058760432971 - ArtUnc_5: 0.40801726801176147 - ArtUnc_6: -0.28174095993205694 - ArtUnc_7: 0.12171029128441227 - ArtUnc_8: -0.05262266789671236 - ArtUnc_9: 0.16647275221495245 - ArtUnc_10: 0.10288262435824648 + ArtUnc_1: 2.67713098e+00 + ArtUnc_2: -1.10503521e+00 + ArtUnc_3: 3.97969042e-01 + ArtUnc_4: -5.88005876e-01 + ArtUnc_5: 4.08017268e-01 + ArtUnc_6: -2.81740960e-01 + ArtUnc_7: 1.21710291e-01 + ArtUnc_8: -5.26226679e-02 + ArtUnc_9: 1.66472752e-01 + ArtUnc_10: 1.02882624e-01 - stat: 0.5054 sys: 0 - ArtUnc_1: 1.06488742978309 - ArtUnc_2: -0.25706577799059793 - ArtUnc_3: -0.3701196931986831 - ArtUnc_4: 0.2022398187293167 - ArtUnc_5: -0.20596889278565972 - ArtUnc_6: 0.25431057785555594 - ArtUnc_7: -0.24509712400006364 - ArtUnc_8: -0.3327107611233027 - ArtUnc_9: 0.1378678219250397 - ArtUnc_10: 0.32429735462318077 + ArtUnc_1: 1.06488743e+00 + ArtUnc_2: -2.57065778e-01 + ArtUnc_3: -3.70119693e-01 + ArtUnc_4: 2.02239819e-01 + ArtUnc_5: -2.05968893e-01 + ArtUnc_6: 2.54310578e-01 + ArtUnc_7: -2.45097124e-01 + ArtUnc_8: -3.32710761e-01 + ArtUnc_9: 1.37867822e-01 + ArtUnc_10: 3.24297355e-01 diff --git a/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_LJ_DIF/uncertainties_dSig_dyttBar_norm.yaml b/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_LJ_DIF/uncertainties_dSig_dyttBar_norm.yaml index 3b558380ab..ef4b2427ee 100644 --- a/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_LJ_DIF/uncertainties_dSig_dyttBar_norm.yaml +++ b/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_13TEV_LJ_DIF/uncertainties_dSig_dyttBar_norm.yaml @@ -50,121 +50,121 @@ definitions: bins: - stat: 0.002394 sys: 0 - ArtUnc_1: -0.0047580665442825704 - ArtUnc_2: -0.0009864094254747676 - ArtUnc_3: 0.000787488251096399 - ArtUnc_4: -0.0010584118296003144 - ArtUnc_5: 0.0006688430725210845 - ArtUnc_6: 1.372219345548804e-05 - ArtUnc_7: -0.001031528348047767 - ArtUnc_8: 0.0015645734146190562 - ArtUnc_9: 0.0006539484557272521 - ArtUnc_10: -0.0011226296002248611 + ArtUnc_1: -4.75806654e-03 + ArtUnc_2: -9.86409425e-04 + ArtUnc_3: 7.87488251e-04 + ArtUnc_4: -1.05841183e-03 + ArtUnc_5: 6.68843073e-04 + ArtUnc_6: 1.37221935e-05 + ArtUnc_7: -1.03152835e-03 + ArtUnc_8: 1.56457341e-03 + ArtUnc_9: 6.53948456e-04 + ArtUnc_10: -1.12262960e-03 - stat: 0.003703 sys: 0 - ArtUnc_1: -0.004359064045064635 - ArtUnc_2: 0.00029950670229165035 - ArtUnc_3: -0.0021443871807086227 - ArtUnc_4: 0.0021661412284353213 - ArtUnc_5: -0.00211714190155177 - ArtUnc_6: 1.3730942136621463e-05 - ArtUnc_7: 0.0009364439501640125 - ArtUnc_8: -0.0006628142593208321 - ArtUnc_9: 0.000642617900518891 - ArtUnc_10: -0.00012886440039481254 + ArtUnc_1: -4.35906405e-03 + ArtUnc_2: 2.99506702e-04 + ArtUnc_3: -2.14438718e-03 + ArtUnc_4: 2.16614123e-03 + ArtUnc_5: -2.11714190e-03 + ArtUnc_6: 1.37309421e-05 + ArtUnc_7: 9.36443950e-04 + ArtUnc_8: -6.62814259e-04 + ArtUnc_9: 6.42617901e-04 + ArtUnc_10: -1.28864400e-04 - stat: 0.003793 sys: 0 - ArtUnc_1: -0.003219070274172701 - ArtUnc_2: -0.0021330448131410126 - ArtUnc_3: 0.0026606439188522116 - ArtUnc_4: -0.0020721553787512144 - ArtUnc_5: 0.0001923965664278538 - ArtUnc_6: 1.3742013350784208e-05 - ArtUnc_7: 0.0003048106769390904 - ArtUnc_8: -0.0015754940304233904 - ArtUnc_9: 0.00016406479047132688 - ArtUnc_10: 0.0010028154828305648 + ArtUnc_1: -3.21907027e-03 + ArtUnc_2: -2.13304481e-03 + ArtUnc_3: 2.66064392e-03 + ArtUnc_4: -2.07215538e-03 + ArtUnc_5: 1.92396566e-04 + ArtUnc_6: 1.37420134e-05 + ArtUnc_7: 3.04810677e-04 + ArtUnc_8: -1.57549403e-03 + ArtUnc_9: 1.64064790e-04 + ArtUnc_10: 1.00281548e-03 - stat: 0.00376 sys: 0 - ArtUnc_1: -0.0023901890770592197 - ArtUnc_2: 0.0010721517761397418 - ArtUnc_3: -0.0030795486116349862 - ArtUnc_4: 0.00011058943448983386 - ArtUnc_5: 0.0008836017724691995 - ArtUnc_6: 1.3748269235088398e-05 - ArtUnc_7: -0.0019905174117884777 - ArtUnc_8: -0.00030503416713619516 - ArtUnc_9: -0.0008818107635498738 - ArtUnc_10: 0.0008876374996020541 + ArtUnc_1: -2.39018908e-03 + ArtUnc_2: 1.07215178e-03 + ArtUnc_3: -3.07954861e-03 + ArtUnc_4: 1.10589434e-04 + ArtUnc_5: 8.83601772e-04 + ArtUnc_6: 1.37482692e-05 + ArtUnc_7: -1.99051741e-03 + ArtUnc_8: -3.05034167e-04 + ArtUnc_9: -8.81810764e-04 + ArtUnc_10: 8.87637500e-04 - stat: 0.003737 sys: 0 - ArtUnc_1: 0.0003309782140188476 - ArtUnc_2: -0.002386497342520654 - ArtUnc_3: 0.002198548247722019 - ArtUnc_4: 0.0011823846384096948 - ArtUnc_5: -0.0019654438037467205 - ArtUnc_6: 1.3755499096817292e-05 - ArtUnc_7: -0.0005128781842701553 - ArtUnc_8: 0.0004944979391003667 - ArtUnc_9: -0.001460858290868412 - ArtUnc_10: -0.0002976546256359255 + ArtUnc_1: 3.30978214e-04 + ArtUnc_2: -2.38649734e-03 + ArtUnc_3: 2.19854825e-03 + ArtUnc_4: 1.18238464e-03 + ArtUnc_5: -1.96544380e-03 + ArtUnc_6: 1.37554991e-05 + ArtUnc_7: -5.12878184e-04 + ArtUnc_8: 4.94497939e-04 + ArtUnc_9: -1.46085829e-03 + ArtUnc_10: -2.97654626e-04 - stat: 0.003739 sys: 0 - ArtUnc_1: 0.0003157266890138906 - ArtUnc_2: 0.0021360854281121185 - ArtUnc_3: -0.0012913294084139371 - ArtUnc_4: -0.0027084402348909174 - ArtUnc_5: -0.00035628692906086116 - ArtUnc_6: 1.374530201185162e-05 - ArtUnc_7: 0.000820935899553356 - ArtUnc_8: -0.0008855861222315179 - ArtUnc_9: -0.000781285518150457 - ArtUnc_10: -0.0014207535513091508 + ArtUnc_1: 3.15726689e-04 + ArtUnc_2: 2.13608543e-03 + ArtUnc_3: -1.29132941e-03 + ArtUnc_4: -2.70844023e-03 + ArtUnc_5: -3.56286929e-04 + ArtUnc_6: 1.37453020e-05 + ArtUnc_7: 8.20935900e-04 + ArtUnc_8: -8.85586122e-04 + ArtUnc_9: -7.81285518e-04 + ArtUnc_10: -1.42075355e-03 - stat: 0.003875 sys: 0 - ArtUnc_1: 0.0027173760641700123 - ArtUnc_2: -0.0028513052346770687 - ArtUnc_3: -0.0003948243392485413 - ArtUnc_4: 0.0017327481403006748 - ArtUnc_5: 0.0014142005829440199 - ArtUnc_6: 1.3727241333420115e-05 - ArtUnc_7: -0.0008231281285079724 - ArtUnc_8: -0.0015056016243300712 - ArtUnc_9: 0.00039982922033096987 - ArtUnc_10: -0.0010785323868525536 + ArtUnc_1: 2.71737606e-03 + ArtUnc_2: -2.85130523e-03 + ArtUnc_3: -3.94824339e-04 + ArtUnc_4: 1.73274814e-03 + ArtUnc_5: 1.41420058e-03 + ArtUnc_6: 1.37272413e-05 + ArtUnc_7: -8.23128129e-04 + ArtUnc_8: -1.50560162e-03 + ArtUnc_9: 3.99829220e-04 + ArtUnc_10: -1.07853239e-03 - stat: 0.004122 sys: 0 - ArtUnc_1: 0.002648590918085411 - ArtUnc_2: 0.003474623334157749 - ArtUnc_3: 0.0019128070121416504 - ArtUnc_4: -0.00030541753676438613 - ArtUnc_5: -0.0016208120934288026 - ArtUnc_6: 1.3724125414429133e-05 - ArtUnc_7: -0.001764287979557985 - ArtUnc_8: -0.00040649683712427653 - ArtUnc_9: 0.0008236729176670444 - ArtUnc_10: 7.898907756203018e-05 + ArtUnc_1: 2.64859092e-03 + ArtUnc_2: 3.47462333e-03 + ArtUnc_3: 1.91280701e-03 + ArtUnc_4: -3.05417537e-04 + ArtUnc_5: -1.62081209e-03 + ArtUnc_6: 1.37241254e-05 + ArtUnc_7: -1.76428798e-03 + ArtUnc_8: -4.06496837e-04 + ArtUnc_9: 8.23672918e-04 + ArtUnc_10: 7.89890776e-05 - stat: 0.004713 sys: 0 - ArtUnc_1: 0.0035159576307092124 - ArtUnc_2: -0.0033434021954372463 - ArtUnc_3: -0.002836300424386844 - ArtUnc_4: -0.0020369264371788965 - ArtUnc_5: -0.001285232390557204 - ArtUnc_6: 1.3734952049783194e-05 - ArtUnc_7: -4.2596943828640294e-05 - ArtUnc_8: 0.0007293809901884608 - ArtUnc_9: 0.0005234965334984272 - ArtUnc_10: 0.0005159104525456397 + ArtUnc_1: 3.51595763e-03 + ArtUnc_2: -3.34340220e-03 + ArtUnc_3: -2.83630042e-03 + ArtUnc_4: -2.03692644e-03 + ArtUnc_5: -1.28523239e-03 + ArtUnc_6: 1.37349520e-05 + ArtUnc_7: -4.25969438e-05 + ArtUnc_8: 7.29380990e-04 + ArtUnc_9: 5.23496533e-04 + ArtUnc_10: 5.15910453e-04 - stat: 0.002182 sys: 0 - ArtUnc_1: 0.0017321541180764393 - ArtUnc_2: 0.0015727955123162024 - ArtUnc_3: 0.0007288539516166468 - ArtUnc_4: 0.0009965617033144915 - ArtUnc_5: 0.0013952225340488392 - ArtUnc_6: 4.1224348929877915e-05 - ArtUnc_7: 0.0013667303594733539 - ArtUnc_8: 0.0008508315640333953 - ArtUnc_9: -2.614152333864742e-05 - ArtUnc_10: 0.000520286560274313 + ArtUnc_1: 1.73215412e-03 + ArtUnc_2: 1.57279551e-03 + ArtUnc_3: 7.28853952e-04 + ArtUnc_4: 9.96561703e-04 + ArtUnc_5: 1.39522253e-03 + ArtUnc_6: 4.12243489e-05 + ArtUnc_7: 1.36673036e-03 + ArtUnc_8: 8.50831564e-04 + ArtUnc_9: -2.61415233e-05 + ArtUnc_10: 5.20286560e-04 diff --git a/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_8TEV_2L_DIF/data_d2Sig_dmttBar_dyttBar_norm.yaml b/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_8TEV_2L_DIF/data_d2Sig_dmttBar_dyttBar_norm.yaml index cfa822261e..c19b6723d3 100644 --- a/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_8TEV_2L_DIF/data_d2Sig_dmttBar_dyttBar_norm.yaml +++ b/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_8TEV_2L_DIF/data_d2Sig_dmttBar_dyttBar_norm.yaml @@ -1,17 +1,17 @@ data_central: -- 0.003181095 -- 0.00304851 -- 0.0024522 -- 0.000917656 -- 0.00307377 -- 0.00275034 -- 0.0020428250000000003 -- 0.000644929 -- 0.0013219100000000001 -- 0.001161225 -- 0.000764851 -- 0.0001867575 -- 0.000146616 -- 0.00011906199999999999 -- 6.729165e-05 -- 9.41925e-06 +- 3.18109500e-03 +- 3.04851000e-03 +- 2.45220000e-03 +- 9.17656000e-04 +- 3.07377000e-03 +- 2.75034000e-03 +- 2.04282500e-03 +- 6.44929000e-04 +- 1.32191000e-03 +- 1.16122500e-03 +- 7.64851000e-04 +- 1.86757500e-04 +- 1.46616000e-04 +- 1.19062000e-04 +- 6.72916500e-05 +- 9.41925000e-06 diff --git a/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_8TEV_2L_DIF/data_d2Sig_dyt_dmttBar_norm.yaml b/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_8TEV_2L_DIF/data_d2Sig_dyt_dmttBar_norm.yaml index 78a9dbff8a..94fd8fe5fd 100644 --- a/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_8TEV_2L_DIF/data_d2Sig_dyt_dmttBar_norm.yaml +++ b/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_8TEV_2L_DIF/data_d2Sig_dyt_dmttBar_norm.yaml @@ -1,17 +1,17 @@ data_central: -- 0.00321642 -- 0.00289372 -- 0.0020569100000000003 -- 0.000663264 -- 0.00290686 -- 0.0023995600000000002 -- 0.00166332 -- 0.000609183 -- 0.000980205 -- 0.000875619 -- 0.000652925 -- 0.000290709 -- 6.26428e-05 -- 6.665065e-05 -- 7.07616e-05 -- 4.30729e-05 +- 3.21642000e-03 +- 2.89372000e-03 +- 2.05691000e-03 +- 6.63264000e-04 +- 2.90686000e-03 +- 2.39956000e-03 +- 1.66332000e-03 +- 6.09183000e-04 +- 9.80205000e-04 +- 8.75619000e-04 +- 6.52925000e-04 +- 2.90709000e-04 +- 6.26428000e-05 +- 6.66506500e-05 +- 7.07616000e-05 +- 4.30729000e-05 diff --git a/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_8TEV_2L_DIF/data_d2Sig_dyt_dpTt_norm.yaml b/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_8TEV_2L_DIF/data_d2Sig_dyt_dpTt_norm.yaml index 894b7ed4e4..4c80439f73 100644 --- a/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_8TEV_2L_DIF/data_d2Sig_dyt_dpTt_norm.yaml +++ b/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_8TEV_2L_DIF/data_d2Sig_dyt_dpTt_norm.yaml @@ -1,17 +1,17 @@ data_central: -- 0.0031184999999999997 -- 0.003659915 -- 0.0013695200000000002 -- 0.0001095015 -- 0.00290145 -- 0.0031398850000000002 -- 0.001190475 -- 8.709760000000001e-05 -- 0.002224125 -- 0.0023432 -- 0.0008801325 -- 5.67486e-05 -- 0.0009161719999999999 -- 0.00103515 -- 0.000313215 -- 1.519775e-05 +- 3.11850000e-03 +- 3.65991500e-03 +- 1.36952000e-03 +- 1.09501500e-04 +- 2.90145000e-03 +- 3.13988500e-03 +- 1.19047500e-03 +- 8.70976000e-05 +- 2.22412500e-03 +- 2.34320000e-03 +- 8.80132500e-04 +- 5.67486000e-05 +- 9.16172000e-04 +- 1.03515000e-03 +- 3.13215000e-04 +- 1.51977500e-05 diff --git a/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_8TEV_2L_DIF/filter.py b/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_8TEV_2L_DIF/filter.py index c22c00ee8d..e493e5a5a4 100644 --- a/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_8TEV_2L_DIF/filter.py +++ b/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_8TEV_2L_DIF/filter.py @@ -3,9 +3,12 @@ from nnpdf_data.filter_utils.utils import cormat_to_covmat as ctc from nnpdf_data.filter_utils.utils import covmat_to_artunc as cta from nnpdf_data.filter_utils.utils import percentage_to_absolute as pta +from nnpdf_data.filter_utils.utils import prettify_float from nnpdf_data.filter_utils.utils import symmetrize_errors as se from nnpdf_data.filter_utils.utils import trimat_to_fullmat as ttf +yaml.add_representer(float, prettify_float) + def processData(): with open('metadata.yaml', 'r') as file: diff --git a/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_8TEV_2L_DIF/uncertainties_d2Sig_dmttBar_dyttBar_norm.yaml b/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_8TEV_2L_DIF/uncertainties_d2Sig_dmttBar_dyttBar_norm.yaml index ce6b9d4347..d4373db3c8 100644 --- a/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_8TEV_2L_DIF/uncertainties_d2Sig_dmttBar_dyttBar_norm.yaml +++ b/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_8TEV_2L_DIF/uncertainties_d2Sig_dmttBar_dyttBar_norm.yaml @@ -68,275 +68,275 @@ definitions: treatment: ADD type: CORR bins: -- sys: 0.00019874534881350055 - ArtUnc_1: -0.0012167095397786136 - ArtUnc_2: 0.0005090319069995791 - ArtUnc_3: 0.0004990920629323891 - ArtUnc_4: -9.972667508649498e-05 - ArtUnc_5: 7.522805643941832e-05 - ArtUnc_6: 0.00015907855327268477 - ArtUnc_7: -5.4272560910913594e-05 - ArtUnc_8: 8.680649783767794e-06 - ArtUnc_9: 3.084689651056885e-05 - ArtUnc_10: -3.6426723738310845e-05 - ArtUnc_11: 8.967245449269608e-06 - ArtUnc_12: 4.787441081244658e-06 +- sys: 1.98745349e-04 + ArtUnc_1: -1.21670954e-03 + ArtUnc_2: 5.09031907e-04 + ArtUnc_3: 4.99092063e-04 + ArtUnc_4: -9.97266751e-05 + ArtUnc_5: 7.52280564e-05 + ArtUnc_6: 1.59078553e-04 + ArtUnc_7: -5.42725609e-05 + ArtUnc_8: 8.68064978e-06 + ArtUnc_9: 3.08468965e-05 + ArtUnc_10: -3.64267237e-05 + ArtUnc_11: 8.96724545e-06 + ArtUnc_12: 4.78744108e-06 ArtUnc_13: 0.0 - ArtUnc_14: 6.438885829145383e-07 - ArtUnc_15: -2.604954858964107e-07 - ArtUnc_16: 6.993644676523837e-08 -- sys: 0.0001354632064436687 - ArtUnc_1: 0.0008164067061306829 - ArtUnc_2: 0.001063768143853415 - ArtUnc_3: -4.646265591200655e-05 - ArtUnc_4: -4.7928624082454754e-05 - ArtUnc_5: 1.3549382456415748e-05 - ArtUnc_6: 0.00013093985741271816 - ArtUnc_7: 1.3128635701175286e-05 - ArtUnc_8: -8.422647173368757e-06 - ArtUnc_9: -1.1157178251773698e-05 - ArtUnc_10: -6.550125904693516e-05 - ArtUnc_11: 7.544015388719409e-06 - ArtUnc_12: 6.1290926461482444e-06 + ArtUnc_14: 6.43888583e-07 + ArtUnc_15: -2.60495486e-07 + ArtUnc_16: 6.99364468e-08 +- sys: 1.35463206e-04 + ArtUnc_1: 8.16406706e-04 + ArtUnc_2: 1.06376814e-03 + ArtUnc_3: -4.64626559e-05 + ArtUnc_4: -4.79286241e-05 + ArtUnc_5: 1.35493825e-05 + ArtUnc_6: 1.30939857e-04 + ArtUnc_7: 1.31286357e-05 + ArtUnc_8: -8.42264717e-06 + ArtUnc_9: -1.11571783e-05 + ArtUnc_10: -6.55012590e-05 + ArtUnc_11: 7.54401539e-06 + ArtUnc_12: 6.12909265e-06 ArtUnc_13: 0.0 - ArtUnc_14: 7.3802511213138e-07 - ArtUnc_15: -2.247811767535147e-07 - ArtUnc_16: -1.7471715430528578e-07 -- sys: 0.0001377249781267 - ArtUnc_1: 0.0006187143232456448 - ArtUnc_2: -0.0003164996513859679 - ArtUnc_3: 0.0010060402143721192 - ArtUnc_4: 0.00019586871059768836 - ArtUnc_5: 4.8517868492847954e-05 - ArtUnc_6: 0.00010344515866602628 - ArtUnc_7: 9.020440514299182e-06 - ArtUnc_8: -1.7780594892377976e-05 - ArtUnc_9: 3.219639537394994e-05 - ArtUnc_10: -1.8032752158829015e-05 - ArtUnc_11: 1.4809673188817758e-05 - ArtUnc_12: 6.024230647822341e-06 + ArtUnc_14: 7.38025112e-07 + ArtUnc_15: -2.24781177e-07 + ArtUnc_16: -1.74717154e-07 +- sys: 1.37724978e-04 + ArtUnc_1: 6.18714323e-04 + ArtUnc_2: -3.16499651e-04 + ArtUnc_3: 1.00604021e-03 + ArtUnc_4: 1.95868711e-04 + ArtUnc_5: 4.85178685e-05 + ArtUnc_6: 1.03445159e-04 + ArtUnc_7: 9.02044051e-06 + ArtUnc_8: -1.77805949e-05 + ArtUnc_9: 3.21963954e-05 + ArtUnc_10: -1.80327522e-05 + ArtUnc_11: 1.48096732e-05 + ArtUnc_12: 6.02423065e-06 ArtUnc_13: 0.0 - ArtUnc_14: 7.279513171400972e-07 - ArtUnc_15: -3.0525606805271213e-07 - ArtUnc_16: 1.4622450161281912e-07 -- sys: 3.240513496345911e-05 - ArtUnc_1: -9.239087226223205e-05 - ArtUnc_2: -9.586302312593343e-05 - ArtUnc_3: -2.8985196583452968e-05 - ArtUnc_4: -4.1668495718178516e-05 - ArtUnc_5: 0.00011074403065163547 - ArtUnc_6: -0.0001692139025565252 - ArtUnc_7: 8.43541115098379e-06 - ArtUnc_8: -0.0003235252939546406 - ArtUnc_9: -9.585935696506325e-05 - ArtUnc_10: -0.0001556032229868457 - ArtUnc_11: 2.3390334967346203e-05 - ArtUnc_12: 2.6139741978553967e-05 + ArtUnc_14: 7.27951317e-07 + ArtUnc_15: -3.05256068e-07 + ArtUnc_16: 1.46224502e-07 +- sys: 3.24051350e-05 + ArtUnc_1: -9.23908723e-05 + ArtUnc_2: -9.58630231e-05 + ArtUnc_3: -2.89851966e-05 + ArtUnc_4: -4.16684957e-05 + ArtUnc_5: 1.10744031e-04 + ArtUnc_6: -1.69213903e-04 + ArtUnc_7: 8.43541115e-06 + ArtUnc_8: -3.23525294e-04 + ArtUnc_9: -9.58593570e-05 + ArtUnc_10: -1.55603223e-04 + ArtUnc_11: 2.33903350e-05 + ArtUnc_12: 2.61397420e-05 ArtUnc_13: 0.0 - ArtUnc_14: 2.552770246243386e-06 - ArtUnc_15: -8.050203580728947e-07 - ArtUnc_16: -3.030581505292029e-07 -- sys: 0.0001831084670352521 - ArtUnc_1: 0.0002017655898065093 - ArtUnc_2: -0.0004251375085921521 - ArtUnc_3: -9.162592031261234e-05 - ArtUnc_4: -0.0006125595890728625 - ArtUnc_5: -1.1471559326669478e-05 - ArtUnc_6: 0.0003437690699213735 - ArtUnc_7: -2.655667441249548e-05 - ArtUnc_8: 4.046205469496675e-05 - ArtUnc_9: 1.4887305698532134e-06 - ArtUnc_10: -9.055619049136959e-05 - ArtUnc_11: 1.0791951974246126e-05 - ArtUnc_12: 7.616332062575716e-06 + ArtUnc_14: 2.55277025e-06 + ArtUnc_15: -8.05020358e-07 + ArtUnc_16: -3.03058151e-07 +- sys: 1.83108467e-04 + ArtUnc_1: 2.01765590e-04 + ArtUnc_2: -4.25137509e-04 + ArtUnc_3: -9.16259203e-05 + ArtUnc_4: -6.12559589e-04 + ArtUnc_5: -1.14715593e-05 + ArtUnc_6: 3.43769070e-04 + ArtUnc_7: -2.65566744e-05 + ArtUnc_8: 4.04620547e-05 + ArtUnc_9: 1.48873057e-06 + ArtUnc_10: -9.05561905e-05 + ArtUnc_11: 1.07919520e-05 + ArtUnc_12: 7.61633206e-06 ArtUnc_13: 0.0 - ArtUnc_14: 1.1487321535677492e-06 - ArtUnc_15: -6.345870716416317e-07 - ArtUnc_16: -6.206000886783411e-07 -- sys: 0.00014004790466122654 - ArtUnc_1: -6.346581952574119e-06 - ArtUnc_2: -0.00014702678201976177 - ArtUnc_3: -0.0003959174724930086 - ArtUnc_4: 0.000367973402531811 - ArtUnc_5: 0.00043240076819635125 - ArtUnc_6: 0.0002736153542374376 - ArtUnc_7: -9.32243473038595e-05 - ArtUnc_8: -7.207069785546642e-06 - ArtUnc_9: 0.00010846709484021221 - ArtUnc_10: -1.8659801311763456e-05 - ArtUnc_11: 2.5487507727936868e-05 - ArtUnc_12: 7.940438907646556e-06 + ArtUnc_14: 1.14873215e-06 + ArtUnc_15: -6.34587072e-07 + ArtUnc_16: -6.20600089e-07 +- sys: 1.40047905e-04 + ArtUnc_1: -6.34658195e-06 + ArtUnc_2: -1.47026782e-04 + ArtUnc_3: -3.95917472e-04 + ArtUnc_4: 3.67973403e-04 + ArtUnc_5: 4.32400768e-04 + ArtUnc_6: 2.73615354e-04 + ArtUnc_7: -9.32243473e-05 + ArtUnc_8: -7.20706979e-06 + ArtUnc_9: 1.08467095e-04 + ArtUnc_10: -1.86598013e-05 + ArtUnc_11: 2.54875077e-05 + ArtUnc_12: 7.94043891e-06 ArtUnc_13: 0.0 - ArtUnc_14: 1.243476210592752e-06 - ArtUnc_15: -6.411260455792388e-07 - ArtUnc_16: 1.0911024507298195e-06 -- sys: 7.347898934389341e-05 - ArtUnc_1: -0.00020822973989579192 - ArtUnc_2: -9.750564272761138e-05 - ArtUnc_3: -0.00017013972895983065 - ArtUnc_4: 0.0003960794970869623 - ArtUnc_5: -0.00045292140036832623 - ArtUnc_6: 0.00028644355452577 - ArtUnc_7: 7.957857127153403e-05 - ArtUnc_8: -1.0971421185301687e-05 - ArtUnc_9: -5.199532792404376e-05 - ArtUnc_10: -9.71262083119191e-05 - ArtUnc_11: 6.058870276719503e-06 - ArtUnc_12: 1.1574902994829965e-05 + ArtUnc_14: 1.24347621e-06 + ArtUnc_15: -6.41126046e-07 + ArtUnc_16: 1.09110245e-06 +- sys: 7.34789893e-05 + ArtUnc_1: -2.08229740e-04 + ArtUnc_2: -9.75056427e-05 + ArtUnc_3: -1.70139729e-04 + ArtUnc_4: 3.96079497e-04 + ArtUnc_5: -4.52921400e-04 + ArtUnc_6: 2.86443555e-04 + ArtUnc_7: 7.95785713e-05 + ArtUnc_8: -1.09714212e-05 + ArtUnc_9: -5.19953279e-05 + ArtUnc_10: -9.71262083e-05 + ArtUnc_11: 6.05887028e-06 + ArtUnc_12: 1.15749030e-05 ArtUnc_13: 0.0 - ArtUnc_14: 1.2711791740624757e-06 - ArtUnc_15: 1.2947657712738422e-07 - ArtUnc_16: -6.078874302544627e-07 -- sys: 3.675238608580401e-05 - ArtUnc_1: -1.1701271058140653e-05 - ArtUnc_2: 2.7537154137096964e-05 - ArtUnc_3: -3.116635983860894e-05 - ArtUnc_4: -3.5713676317595326e-05 - ArtUnc_5: -5.088557500707708e-05 - ArtUnc_6: -3.7936061200205274e-05 - ArtUnc_7: -1.0751007865290051e-05 - ArtUnc_8: 6.328735213626342e-05 - ArtUnc_9: -8.46989648516861e-05 - ArtUnc_10: 0.00011953320014255296 - ArtUnc_11: 0.00014070660960595989 - ArtUnc_12: 3.183505201692846e-05 + ArtUnc_14: 1.27117917e-06 + ArtUnc_15: 1.29476577e-07 + ArtUnc_16: -6.07887430e-07 +- sys: 3.67523861e-05 + ArtUnc_1: -1.17012711e-05 + ArtUnc_2: 2.75371541e-05 + ArtUnc_3: -3.11663598e-05 + ArtUnc_4: -3.57136763e-05 + ArtUnc_5: -5.08855750e-05 + ArtUnc_6: -3.79360612e-05 + ArtUnc_7: -1.07510079e-05 + ArtUnc_8: 6.32873521e-05 + ArtUnc_9: -8.46989649e-05 + ArtUnc_10: 1.19533200e-04 + ArtUnc_11: 1.40706610e-04 + ArtUnc_12: 3.18350520e-05 ArtUnc_13: 0.0 - ArtUnc_14: 3.604588827259801e-06 - ArtUnc_15: -1.9760481042415274e-06 - ArtUnc_16: 8.957418861673152e-07 -- sys: 5.2836626500941566e-05 - ArtUnc_1: 0.00010010437640975337 - ArtUnc_2: -8.567152165452792e-06 - ArtUnc_3: -1.503764066144078e-05 - ArtUnc_4: 1.9777152812173496e-05 - ArtUnc_5: -0.00020438082252411782 - ArtUnc_6: -0.00019210822614086173 - ArtUnc_7: -0.00036001378980419704 - ArtUnc_8: 5.9647845962760394e-05 - ArtUnc_9: 0.00015715666456432887 - ArtUnc_10: -0.00010792479974679406 - ArtUnc_11: 1.783854343469918e-05 - ArtUnc_12: 7.508183279982563e-06 + ArtUnc_14: 3.60458883e-06 + ArtUnc_15: -1.97604810e-06 + ArtUnc_16: 8.95741886e-07 +- sys: 5.28366265e-05 + ArtUnc_1: 1.00104376e-04 + ArtUnc_2: -8.56715217e-06 + ArtUnc_3: -1.50376407e-05 + ArtUnc_4: 1.97771528e-05 + ArtUnc_5: -2.04380823e-04 + ArtUnc_6: -1.92108226e-04 + ArtUnc_7: -3.60013790e-04 + ArtUnc_8: 5.96478460e-05 + ArtUnc_9: 1.57156665e-04 + ArtUnc_10: -1.07924800e-04 + ArtUnc_11: 1.78385434e-05 + ArtUnc_12: 7.50818328e-06 ArtUnc_13: 0.0 - ArtUnc_14: 1.8580340833334401e-06 - ArtUnc_15: -1.930508842979399e-06 - ArtUnc_16: -6.801471188944422e-07 -- sys: 3.123593243365724e-05 - ArtUnc_1: -7.354975080350225e-05 - ArtUnc_2: -6.294430374796654e-05 - ArtUnc_3: 1.086668609939368e-05 - ArtUnc_4: 7.036960013370954e-05 - ArtUnc_5: 0.0001684188370057246 - ArtUnc_6: -0.00019036323466984173 - ArtUnc_7: 0.00015043519779393372 - ArtUnc_8: 0.000274029803273542 - ArtUnc_9: -7.104456508919993e-05 - ArtUnc_10: -0.00019241515245731677 - ArtUnc_11: 6.022760334221491e-06 - ArtUnc_12: 1.2009334596147814e-05 + ArtUnc_14: 1.85803408e-06 + ArtUnc_15: -1.93050884e-06 + ArtUnc_16: -6.80147119e-07 +- sys: 3.12359324e-05 + ArtUnc_1: -7.35497508e-05 + ArtUnc_2: -6.29443037e-05 + ArtUnc_3: 1.08666861e-05 + ArtUnc_4: 7.03696001e-05 + ArtUnc_5: 1.68418837e-04 + ArtUnc_6: -1.90363235e-04 + ArtUnc_7: 1.50435198e-04 + ArtUnc_8: 2.74029803e-04 + ArtUnc_9: -7.10445651e-05 + ArtUnc_10: -1.92415152e-04 + ArtUnc_11: 6.02276033e-06 + ArtUnc_12: 1.20093346e-05 ArtUnc_13: 0.0 - ArtUnc_14: 2.1530336410160254e-06 - ArtUnc_15: -4.278855198250109e-07 - ArtUnc_16: 3.1757309836479604e-07 -- sys: 3.7186519103029794e-05 - ArtUnc_1: -4.757040849207168e-05 - ArtUnc_2: 2.5441919995510257e-05 - ArtUnc_3: -5.294625284409374e-05 - ArtUnc_4: -8.834851765472064e-05 - ArtUnc_5: -7.736185567383414e-05 - ArtUnc_6: -8.051746360177337e-05 - ArtUnc_7: 0.00026984975218088015 - ArtUnc_8: -5.076470700906825e-05 - ArtUnc_9: 0.00030795358645538157 - ArtUnc_10: -1.2876554726192132e-05 - ArtUnc_11: 2.9947510256078553e-05 - ArtUnc_12: 9.971098089975051e-06 + ArtUnc_14: 2.15303364e-06 + ArtUnc_15: -4.27885520e-07 + ArtUnc_16: 3.17573098e-07 +- sys: 3.71865191e-05 + ArtUnc_1: -4.75704085e-05 + ArtUnc_2: 2.54419200e-05 + ArtUnc_3: -5.29462528e-05 + ArtUnc_4: -8.83485177e-05 + ArtUnc_5: -7.73618557e-05 + ArtUnc_6: -8.05174636e-05 + ArtUnc_7: 2.69849752e-04 + ArtUnc_8: -5.07647070e-05 + ArtUnc_9: 3.07953586e-04 + ArtUnc_10: -1.28765547e-05 + ArtUnc_11: 2.99475103e-05 + ArtUnc_12: 9.97109809e-06 ArtUnc_13: 0.0 - ArtUnc_14: 1.7417240211540425e-06 - ArtUnc_15: 8.54582078681363e-07 - ArtUnc_16: 7.743825627742147e-07 -- sys: 1.6194369970764532e-05 - ArtUnc_1: 1.638972729252964e-05 - ArtUnc_2: 9.631790017535765e-06 - ArtUnc_3: 6.577853838084236e-08 - ArtUnc_4: -1.3137191858325234e-05 - ArtUnc_5: 2.453204858318672e-06 - ArtUnc_6: 8.238886406479438e-09 - ArtUnc_7: -1.6466997869984398e-05 - ArtUnc_8: 3.387018464873713e-05 - ArtUnc_9: 1.003794340507651e-05 - ArtUnc_10: 7.980718454757345e-05 - ArtUnc_11: -7.766686332180278e-05 - ArtUnc_12: 8.612347858369636e-05 + ArtUnc_14: 1.74172402e-06 + ArtUnc_15: 8.54582079e-07 + ArtUnc_16: 7.74382563e-07 +- sys: 1.61943700e-05 + ArtUnc_1: 1.63897273e-05 + ArtUnc_2: 9.63179002e-06 + ArtUnc_3: 6.57785384e-08 + ArtUnc_4: -1.31371919e-05 + ArtUnc_5: 2.45320486e-06 + ArtUnc_6: 8.23888641e-09 + ArtUnc_7: -1.64669979e-05 + ArtUnc_8: 3.38701846e-05 + ArtUnc_9: 1.00379434e-05 + ArtUnc_10: 7.98071845e-05 + ArtUnc_11: -7.76668633e-05 + ArtUnc_12: 8.61234786e-05 ArtUnc_13: 0.0 - ArtUnc_14: 4.586496346818028e-06 - ArtUnc_15: -5.854843928444323e-07 - ArtUnc_16: -2.2259898472492425e-06 -- sys: 8.449758339739664e-06 - ArtUnc_1: -5.314085512616279e-06 - ArtUnc_2: 4.3373593510241224e-06 - ArtUnc_3: 3.0453483381028116e-08 - ArtUnc_4: 5.541812572355613e-06 - ArtUnc_5: 6.27800466927375e-06 - ArtUnc_6: 3.2154290793538305e-06 - ArtUnc_7: 1.4351248975911364e-05 - ArtUnc_8: -6.091660080716677e-06 - ArtUnc_9: -3.9684433289624704e-06 - ArtUnc_10: 1.580786126163894e-05 - ArtUnc_11: -9.924924725503736e-06 - ArtUnc_12: -2.201189954669948e-05 + ArtUnc_14: 4.58649635e-06 + ArtUnc_15: -5.85484393e-07 + ArtUnc_16: -2.22598985e-06 +- sys: 8.44975834e-06 + ArtUnc_1: -5.31408551e-06 + ArtUnc_2: 4.33735935e-06 + ArtUnc_3: 3.04534834e-08 + ArtUnc_4: 5.54181257e-06 + ArtUnc_5: 6.27800467e-06 + ArtUnc_6: 3.21542908e-06 + ArtUnc_7: 1.43512490e-05 + ArtUnc_8: -6.09166008e-06 + ArtUnc_9: -3.96844333e-06 + ArtUnc_10: 1.58078613e-05 + ArtUnc_11: -9.92492473e-06 + ArtUnc_12: -2.20118995e-05 ArtUnc_13: 0.0 - ArtUnc_14: 1.3930811272979936e-05 - ArtUnc_15: -2.9899887553809344e-05 - ArtUnc_16: -4.011239320738854e-05 -- sys: 5.0657607523451005e-06 - ArtUnc_1: 2.8493563195667e-06 - ArtUnc_2: 3.2726558821514964e-06 - ArtUnc_3: 3.243674206864826e-06 - ArtUnc_4: -6.025926671180632e-06 - ArtUnc_5: -9.300003821828239e-06 - ArtUnc_6: 3.591639781073981e-06 - ArtUnc_7: -4.3885930686493517e-07 - ArtUnc_8: -6.309916213878803e-06 - ArtUnc_9: -9.358369581865887e-06 - ArtUnc_10: 1.3467727414662638e-05 - ArtUnc_11: -1.4911332770096704e-05 - ArtUnc_12: -1.8701164511981934e-05 + ArtUnc_14: 1.39308113e-05 + ArtUnc_15: -2.98998876e-05 + ArtUnc_16: -4.01123932e-05 +- sys: 5.06576075e-06 + ArtUnc_1: 2.84935632e-06 + ArtUnc_2: 3.27265588e-06 + ArtUnc_3: 3.24367421e-06 + ArtUnc_4: -6.02592667e-06 + ArtUnc_5: -9.30000382e-06 + ArtUnc_6: 3.59163978e-06 + ArtUnc_7: -4.38859307e-07 + ArtUnc_8: -6.30991621e-06 + ArtUnc_9: -9.35836958e-06 + ArtUnc_10: 1.34677274e-05 + ArtUnc_11: -1.49113328e-05 + ArtUnc_12: -1.87011645e-05 ArtUnc_13: 0.0 - ArtUnc_14: 1.4970081622322481e-05 - ArtUnc_15: -9.220178629247692e-06 - ArtUnc_16: 5.201065059146357e-05 -- sys: 7.442696229693914e-06 - ArtUnc_1: 4.299132578924932e-06 - ArtUnc_2: -1.0372602520988712e-08 - ArtUnc_3: 2.381217010480478e-06 - ArtUnc_4: -8.424066546128037e-07 - ArtUnc_5: 4.653345803821827e-06 - ArtUnc_6: -1.6730429674362885e-07 - ArtUnc_7: -1.2747365097233575e-05 - ArtUnc_8: -1.4967172132604773e-06 - ArtUnc_9: -7.887018272937285e-06 - ArtUnc_10: 8.777942536093548e-06 - ArtUnc_11: -3.287774424723466e-06 - ArtUnc_12: -1.5767792027648578e-05 + ArtUnc_14: 1.49700816e-05 + ArtUnc_15: -9.22017863e-06 + ArtUnc_16: 5.20106506e-05 +- sys: 7.44269623e-06 + ArtUnc_1: 4.29913258e-06 + ArtUnc_2: -1.03726025e-08 + ArtUnc_3: 2.38121701e-06 + ArtUnc_4: -8.42406655e-07 + ArtUnc_5: 4.65334580e-06 + ArtUnc_6: -1.67304297e-07 + ArtUnc_7: -1.27473651e-05 + ArtUnc_8: -1.49671721e-06 + ArtUnc_9: -7.88701827e-06 + ArtUnc_10: 8.77794254e-06 + ArtUnc_11: -3.28777442e-06 + ArtUnc_12: -1.57677920e-05 ArtUnc_13: 0.0 - ArtUnc_14: 1.2507855387250276e-05 - ArtUnc_15: 4.35651642840588e-05 - ArtUnc_16: -1.6531143625548437e-05 -- sys: 3.3032245893217736e-06 - ArtUnc_1: -5.093484225013049e-07 - ArtUnc_2: -8.605552877669034e-07 - ArtUnc_3: 1.1244649024733753e-07 - ArtUnc_4: 1.1556243136879756e-06 - ArtUnc_5: 5.544948848532399e-07 - ArtUnc_6: -4.0954825634626144e-07 - ArtUnc_7: 1.5923829609018098e-07 - ArtUnc_8: -1.3152552564459095e-06 - ArtUnc_9: -1.2411528740991008e-06 - ArtUnc_10: -3.0267432674243217e-06 - ArtUnc_11: -1.438420318040754e-06 - ArtUnc_12: -7.63845400938223e-06 + ArtUnc_14: 1.25078554e-05 + ArtUnc_15: 4.35651643e-05 + ArtUnc_16: -1.65311436e-05 +- sys: 3.30322459e-06 + ArtUnc_1: -5.09348423e-07 + ArtUnc_2: -8.60555288e-07 + ArtUnc_3: 1.12446490e-07 + ArtUnc_4: 1.15562431e-06 + ArtUnc_5: 5.54494885e-07 + ArtUnc_6: -4.09548256e-07 + ArtUnc_7: 1.59238296e-07 + ArtUnc_8: -1.31525526e-06 + ArtUnc_9: -1.24115287e-06 + ArtUnc_10: -3.02674327e-06 + ArtUnc_11: -1.43842032e-06 + ArtUnc_12: -7.63845401e-06 ArtUnc_13: 0.0 - ArtUnc_14: -1.3724626875786551e-05 - ArtUnc_15: -1.927202691056466e-06 - ArtUnc_16: 4.331209065024529e-07 + ArtUnc_14: -1.37246269e-05 + ArtUnc_15: -1.92720269e-06 + ArtUnc_16: 4.33120907e-07 diff --git a/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_8TEV_2L_DIF/uncertainties_d2Sig_dyt_dmttBar_norm.yaml b/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_8TEV_2L_DIF/uncertainties_d2Sig_dyt_dmttBar_norm.yaml index 9006506424..06f2b7a026 100644 --- a/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_8TEV_2L_DIF/uncertainties_d2Sig_dyt_dmttBar_norm.yaml +++ b/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_8TEV_2L_DIF/uncertainties_d2Sig_dyt_dmttBar_norm.yaml @@ -68,275 +68,275 @@ definitions: treatment: ADD type: CORR bins: -- sys: 0.0003082937209869835 - ArtUnc_1: -0.0015099686759455452 - ArtUnc_2: 0.0003603233417970507 - ArtUnc_3: -0.00021298188754772027 - ArtUnc_4: 1.7754355748874054e-05 - ArtUnc_5: -0.00010731393175499291 - ArtUnc_6: -4.660297221897573e-05 - ArtUnc_7: -5.9232286736124595e-05 - ArtUnc_8: 2.8317543174999557e-05 - ArtUnc_9: -1.0540999596857995e-05 - ArtUnc_10: -1.1472887705399512e-05 - ArtUnc_11: -1.3664482411084373e-05 - ArtUnc_12: -8.462927850261366e-06 - ArtUnc_13: 3.883345737192736e-08 - ArtUnc_14: -5.006964779636542e-08 - ArtUnc_15: -1.8400351276274095e-07 - ArtUnc_16: 1.2046468216083377e-07 -- sys: 0.0001450038013294824 - ArtUnc_1: 0.0006041405449901239 - ArtUnc_2: 0.000934203912770722 - ArtUnc_3: -6.885214952650294e-05 - ArtUnc_4: 0.0003219605265152802 - ArtUnc_5: -1.775360389554936e-05 - ArtUnc_6: -9.556088405391484e-05 - ArtUnc_7: -5.9743328884983606e-05 - ArtUnc_8: -4.725487978889393e-05 - ArtUnc_9: -2.4721132206559718e-05 - ArtUnc_10: -4.37203189618363e-05 - ArtUnc_11: -1.2646223857090637e-05 - ArtUnc_12: -1.30403134621494e-05 - ArtUnc_13: 5.588366952011399e-08 - ArtUnc_14: -1.6522297306780915e-07 - ArtUnc_15: -2.5962733538576e-07 - ArtUnc_16: 1.2191481950770853e-07 -- sys: 7.531687925027167e-05 - ArtUnc_1: 0.00040691695190899586 - ArtUnc_2: 0.0001335623647693115 - ArtUnc_3: -0.0005044509546443749 - ArtUnc_4: -0.0006328977802946871 - ArtUnc_5: -0.00010416747260782119 - ArtUnc_6: -8.046213693869269e-05 - ArtUnc_7: -4.6873291575295195e-05 - ArtUnc_8: -2.431509680002904e-06 - ArtUnc_9: 9.384067758093373e-06 - ArtUnc_10: 4.77722406818875e-07 - ArtUnc_11: -3.192289510665547e-05 - ArtUnc_12: -1.5581857264482524e-05 - ArtUnc_13: 6.646218563025354e-08 - ArtUnc_14: -4.35399937538399e-08 - ArtUnc_15: -2.9237249443504804e-07 - ArtUnc_16: 2.0307947179549325e-07 -- sys: 4.4061440920605396e-05 - ArtUnc_1: -0.00014585849571880415 - ArtUnc_2: -0.0002040317912515877 - ArtUnc_3: 8.956024167251444e-05 - ArtUnc_4: -3.963645728505672e-05 - ArtUnc_5: 0.0003822349639219548 - ArtUnc_6: -0.00034181738377108144 - ArtUnc_7: -0.00016202599667443872 - ArtUnc_8: -9.394326422946965e-05 - ArtUnc_9: 1.3510954336899397e-05 - ArtUnc_10: -5.056150240905094e-05 - ArtUnc_11: -1.7714514417159064e-05 - ArtUnc_12: -3.0017045198585418e-05 - ArtUnc_13: 1.179958523443257e-07 - ArtUnc_14: -2.9153818744545083e-07 - ArtUnc_15: -5.959376586994941e-07 - ArtUnc_16: 2.4671873822871875e-07 -- sys: 0.0002299720148191949 - ArtUnc_1: 0.00017713687466414238 - ArtUnc_2: -0.0005358449078643352 - ArtUnc_3: -0.000568948494144066 - ArtUnc_4: 0.0004491796400047216 - ArtUnc_5: -0.00013609261612321317 - ArtUnc_6: -2.7872836759275388e-05 - ArtUnc_7: -7.208905796921937e-05 - ArtUnc_8: -7.675886706063331e-06 - ArtUnc_9: -3.8573300281958056e-05 - ArtUnc_10: -5.141882862177161e-05 - ArtUnc_11: -1.5879853622915512e-05 - ArtUnc_12: -1.3899115495321935e-05 - ArtUnc_13: 6.595771401834734e-08 - ArtUnc_14: -4.148311348033311e-07 - ArtUnc_15: -3.8187237554774614e-07 - ArtUnc_16: 2.5456376393350036e-07 -- sys: 6.126050685392672e-05 - ArtUnc_1: 0.00013637974624920745 - ArtUnc_2: -0.00014283837779009774 - ArtUnc_3: 0.0004050253682841652 - ArtUnc_4: 2.4180377981081518e-06 - ArtUnc_5: -0.00037471243370087526 - ArtUnc_6: -0.0002556750472576703 - ArtUnc_7: -0.00011185324347713452 - ArtUnc_8: 0.00015151563523427232 - ArtUnc_9: 1.9795646749222897e-06 - ArtUnc_10: 2.2419069146903633e-05 - ArtUnc_11: -5.1650397367548576e-05 - ArtUnc_12: -1.878534915497602e-05 - ArtUnc_13: 9.173063592608493e-08 - ArtUnc_14: 3.604386092967477e-07 - ArtUnc_15: -5.107729212933627e-07 - ArtUnc_16: 3.844183120579381e-07 -- sys: 6.415930485907714e-05 - ArtUnc_1: -5.1161836611170776e-05 - ArtUnc_2: -7.553633074018668e-05 - ArtUnc_3: 0.0002407916634032926 - ArtUnc_4: -0.00011519034228317854 - ArtUnc_5: -0.00017114301888654387 - ArtUnc_6: 0.0002538261587759519 - ArtUnc_7: -0.00017043294880211032 - ArtUnc_8: -0.0002672360375765248 - ArtUnc_9: -3.797685904948892e-05 - ArtUnc_10: -9.793567380389097e-05 - ArtUnc_11: -2.3793754006569564e-06 - ArtUnc_12: -2.811752021984193e-05 - ArtUnc_13: 1.1321040217015735e-07 - ArtUnc_14: -5.280393282530969e-07 - ArtUnc_15: -5.492470809703846e-07 - ArtUnc_16: -1.4061194963975429e-07 -- sys: 5.6379234288876253e-05 - ArtUnc_1: -3.357532376042291e-05 - ArtUnc_2: 3.823554968385142e-06 - ArtUnc_3: 1.1503059997489515e-05 - ArtUnc_4: 8.176048424438336e-05 - ArtUnc_5: 4.0943380092149396e-05 - ArtUnc_6: 0.00012048089171184484 - ArtUnc_7: 0.00014239421345753112 - ArtUnc_8: 5.434299680909e-06 - ArtUnc_9: 0.00020506489893434214 - ArtUnc_10: -3.52820212513265e-05 - ArtUnc_11: -0.0001225828473917922 - ArtUnc_12: -4.2963294603315364e-05 - ArtUnc_13: 1.9513574086080336e-07 - ArtUnc_14: -7.961838530349627e-08 - ArtUnc_15: -4.389423606804261e-07 - ArtUnc_16: 7.957163563377571e-07 -- sys: 6.385205302102667e-05 - ArtUnc_1: 8.901198090983757e-05 - ArtUnc_2: 4.5108684721250974e-05 - ArtUnc_3: 1.583481724255842e-05 - ArtUnc_4: -3.0866254194825344e-05 - ArtUnc_5: 0.0001942514856157633 - ArtUnc_6: 0.00027401848172442175 - ArtUnc_7: -0.00021340612593538495 - ArtUnc_8: 0.00028010396897894203 - ArtUnc_9: -6.865939991049528e-05 - ArtUnc_10: -2.930751501226802e-05 - ArtUnc_11: -3.49033998620706e-05 - ArtUnc_12: -1.5787167905360808e-05 - ArtUnc_13: 9.790986148351857e-08 - ArtUnc_14: -1.0132703670877993e-06 - ArtUnc_15: -9.66680149676328e-07 - ArtUnc_16: 9.66601650263551e-07 -- sys: 5.338164788576688e-05 - ArtUnc_1: -5.112168406807447e-05 - ArtUnc_2: -3.02577042446478e-05 - ArtUnc_3: 8.224290363031907e-05 - ArtUnc_4: -9.434982409311272e-05 - ArtUnc_5: 4.7017640031816915e-06 - ArtUnc_6: -6.422253627289307e-05 - ArtUnc_7: 0.00026096387719334597 - ArtUnc_8: 6.980355664336916e-05 - ArtUnc_9: -0.0001632656428690627 - ArtUnc_10: -0.00017495392480035946 - ArtUnc_11: -7.943358229971818e-06 - ArtUnc_12: -2.618321523998377e-05 - ArtUnc_13: 1.389146137684998e-07 - ArtUnc_14: 2.0966718489106476e-07 - ArtUnc_15: -1.3163696340188378e-06 - ArtUnc_16: 2.4606227738666575e-07 -- sys: 3.9541963469205716e-05 - ArtUnc_1: -3.358416843961809e-05 - ArtUnc_2: -1.1273104450114414e-05 - ArtUnc_3: 6.576414012876517e-06 - ArtUnc_4: 4.388312047206097e-05 - ArtUnc_5: 6.049890408121772e-05 - ArtUnc_6: 3.356053220539534e-05 - ArtUnc_7: 6.501580253586623e-05 - ArtUnc_8: -0.00010223741295314087 - ArtUnc_9: -0.0001706514358289992 - ArtUnc_10: 0.00018915818340116723 - ArtUnc_11: -9.437391156309771e-05 - ArtUnc_12: -2.9055327378267855e-05 - ArtUnc_13: 1.667937833295846e-07 - ArtUnc_14: 1.4580711785675954e-07 - ArtUnc_15: -6.167798919275325e-07 - ArtUnc_16: -5.154907826406526e-07 -- sys: 2.5029383492207716e-05 - ArtUnc_1: 1.942907653324865e-05 - ArtUnc_2: 1.5429517450401213e-05 - ArtUnc_3: -1.9490974164736435e-05 - ArtUnc_4: 2.0581419515142255e-05 - ArtUnc_5: -1.9749958758023467e-05 - ArtUnc_6: 2.644611136340418e-05 - ArtUnc_7: 3.76418208732935e-05 - ArtUnc_8: 4.958589545129386e-05 - ArtUnc_9: 3.575004620747575e-05 - ArtUnc_10: 7.261324517969587e-05 - ArtUnc_11: 0.00013177751935132084 - ArtUnc_12: -8.781749913510177e-05 - ArtUnc_13: 2.937045694938809e-07 - ArtUnc_14: -8.555215863286439e-07 - ArtUnc_15: -1.6541802577343385e-07 - ArtUnc_16: 5.487320244075989e-07 -- sys: 1.1437940891611567e-05 - ArtUnc_1: -3.0414217302567387e-06 - ArtUnc_2: 1.8346932823728488e-06 - ArtUnc_3: 3.927365631034356e-06 - ArtUnc_4: -1.4655851641378273e-06 - ArtUnc_5: -6.248520848131919e-06 - ArtUnc_6: -7.728708739116553e-06 - ArtUnc_7: 7.912599083974216e-06 - ArtUnc_8: -9.755767019161968e-06 - ArtUnc_9: 4.184671942784602e-06 - ArtUnc_10: 6.672581263891238e-06 - ArtUnc_11: 4.095165738675078e-06 - ArtUnc_12: 1.204065391301598e-05 - ArtUnc_13: 5.582833394287318e-07 - ArtUnc_14: -3.675327019751604e-05 - ArtUnc_15: -1.3108588064821531e-05 - ArtUnc_16: 1.7253106710432254e-05 -- sys: 4.80467334035312e-06 - ArtUnc_1: 6.747155277389564e-07 - ArtUnc_2: 1.726432697691152e-06 - ArtUnc_3: -5.199784020650768e-06 - ArtUnc_4: 3.1397900142045207e-06 - ArtUnc_5: 8.313899520730343e-07 - ArtUnc_6: 3.867138406086894e-06 - ArtUnc_7: -3.0053067124979614e-06 - ArtUnc_8: -6.717577356903884e-06 - ArtUnc_9: 6.962043784392797e-06 - ArtUnc_10: 5.607685917291646e-06 - ArtUnc_11: 8.05517423044128e-06 - ArtUnc_12: 1.2022101360036376e-05 - ArtUnc_13: 7.931279253373497e-07 - ArtUnc_14: 3.27131706138686e-05 - ArtUnc_15: -1.7843609327678664e-05 - ArtUnc_16: 1.215716129951533e-05 -- sys: 3.941840955695701e-06 - ArtUnc_1: 2.393353952683793e-06 - ArtUnc_2: 1.7063563940059342e-06 - ArtUnc_3: -2.9834240449353747e-06 - ArtUnc_4: 9.93064904870961e-07 - ArtUnc_5: -3.6191229847345866e-07 - ArtUnc_6: -5.367647373676286e-07 - ArtUnc_7: -1.7568968779987197e-06 - ArtUnc_8: 5.959074681973417e-06 - ArtUnc_9: 9.745987803679462e-06 - ArtUnc_10: -1.463315702438048e-07 - ArtUnc_11: 4.296731883912058e-06 - ArtUnc_12: 1.1250919736331058e-05 - ArtUnc_13: 9.646611402263087e-07 - ArtUnc_14: -7.364057886061353e-06 - ArtUnc_15: -1.0380083605874899e-05 - ArtUnc_16: -3.1249263524971706e-05 -- sys: 5.3903617049322395e-06 - ArtUnc_1: 1.9621932595874588e-07 - ArtUnc_2: -9.91127460935029e-07 - ArtUnc_3: 1.4426567368039462e-06 - ArtUnc_4: -2.7370122200471222e-06 - ArtUnc_5: 5.576345203103533e-07 - ArtUnc_6: -2.174906201873504e-06 - ArtUnc_7: -1.916709003190114e-06 - ArtUnc_8: -6.09855751006457e-07 - ArtUnc_9: -2.2009181393120844e-06 - ArtUnc_10: -3.3579456889986495e-06 - ArtUnc_11: 2.4934666240419467e-06 - ArtUnc_12: 1.7104141560012496e-05 - ArtUnc_13: 1.6693504264590777e-06 - ArtUnc_14: 1.2531518964652059e-06 - ArtUnc_15: 1.9315347221430706e-05 - ArtUnc_16: 6.242626231922316e-06 +- sys: 3.08293721e-04 + ArtUnc_1: -1.50996868e-03 + ArtUnc_2: 3.60323342e-04 + ArtUnc_3: -2.12981888e-04 + ArtUnc_4: 1.77543557e-05 + ArtUnc_5: -1.07313932e-04 + ArtUnc_6: -4.66029722e-05 + ArtUnc_7: -5.92322867e-05 + ArtUnc_8: 2.83175432e-05 + ArtUnc_9: -1.05409996e-05 + ArtUnc_10: -1.14728877e-05 + ArtUnc_11: -1.36644824e-05 + ArtUnc_12: -8.46292785e-06 + ArtUnc_13: 3.88334574e-08 + ArtUnc_14: -5.00696478e-08 + ArtUnc_15: -1.84003513e-07 + ArtUnc_16: 1.20464682e-07 +- sys: 1.45003801e-04 + ArtUnc_1: 6.04140545e-04 + ArtUnc_2: 9.34203913e-04 + ArtUnc_3: -6.88521495e-05 + ArtUnc_4: 3.21960527e-04 + ArtUnc_5: -1.77536039e-05 + ArtUnc_6: -9.55608841e-05 + ArtUnc_7: -5.97433289e-05 + ArtUnc_8: -4.72548798e-05 + ArtUnc_9: -2.47211322e-05 + ArtUnc_10: -4.37203190e-05 + ArtUnc_11: -1.26462239e-05 + ArtUnc_12: -1.30403135e-05 + ArtUnc_13: 5.58836695e-08 + ArtUnc_14: -1.65222973e-07 + ArtUnc_15: -2.59627335e-07 + ArtUnc_16: 1.21914820e-07 +- sys: 7.53168793e-05 + ArtUnc_1: 4.06916952e-04 + ArtUnc_2: 1.33562365e-04 + ArtUnc_3: -5.04450955e-04 + ArtUnc_4: -6.32897780e-04 + ArtUnc_5: -1.04167473e-04 + ArtUnc_6: -8.04621369e-05 + ArtUnc_7: -4.68732916e-05 + ArtUnc_8: -2.43150968e-06 + ArtUnc_9: 9.38406776e-06 + ArtUnc_10: 4.77722407e-07 + ArtUnc_11: -3.19228951e-05 + ArtUnc_12: -1.55818573e-05 + ArtUnc_13: 6.64621856e-08 + ArtUnc_14: -4.35399938e-08 + ArtUnc_15: -2.92372494e-07 + ArtUnc_16: 2.03079472e-07 +- sys: 4.40614409e-05 + ArtUnc_1: -1.45858496e-04 + ArtUnc_2: -2.04031791e-04 + ArtUnc_3: 8.95602417e-05 + ArtUnc_4: -3.96364573e-05 + ArtUnc_5: 3.82234964e-04 + ArtUnc_6: -3.41817384e-04 + ArtUnc_7: -1.62025997e-04 + ArtUnc_8: -9.39432642e-05 + ArtUnc_9: 1.35109543e-05 + ArtUnc_10: -5.05615024e-05 + ArtUnc_11: -1.77145144e-05 + ArtUnc_12: -3.00170452e-05 + ArtUnc_13: 1.17995852e-07 + ArtUnc_14: -2.91538187e-07 + ArtUnc_15: -5.95937659e-07 + ArtUnc_16: 2.46718738e-07 +- sys: 2.29972015e-04 + ArtUnc_1: 1.77136875e-04 + ArtUnc_2: -5.35844908e-04 + ArtUnc_3: -5.68948494e-04 + ArtUnc_4: 4.49179640e-04 + ArtUnc_5: -1.36092616e-04 + ArtUnc_6: -2.78728368e-05 + ArtUnc_7: -7.20890580e-05 + ArtUnc_8: -7.67588671e-06 + ArtUnc_9: -3.85733003e-05 + ArtUnc_10: -5.14188286e-05 + ArtUnc_11: -1.58798536e-05 + ArtUnc_12: -1.38991155e-05 + ArtUnc_13: 6.59577140e-08 + ArtUnc_14: -4.14831135e-07 + ArtUnc_15: -3.81872376e-07 + ArtUnc_16: 2.54563764e-07 +- sys: 6.12605069e-05 + ArtUnc_1: 1.36379746e-04 + ArtUnc_2: -1.42838378e-04 + ArtUnc_3: 4.05025368e-04 + ArtUnc_4: 2.41803780e-06 + ArtUnc_5: -3.74712434e-04 + ArtUnc_6: -2.55675047e-04 + ArtUnc_7: -1.11853243e-04 + ArtUnc_8: 1.51515635e-04 + ArtUnc_9: 1.97956467e-06 + ArtUnc_10: 2.24190691e-05 + ArtUnc_11: -5.16503974e-05 + ArtUnc_12: -1.87853492e-05 + ArtUnc_13: 9.17306359e-08 + ArtUnc_14: 3.60438609e-07 + ArtUnc_15: -5.10772921e-07 + ArtUnc_16: 3.84418312e-07 +- sys: 6.41593049e-05 + ArtUnc_1: -5.11618366e-05 + ArtUnc_2: -7.55363307e-05 + ArtUnc_3: 2.40791663e-04 + ArtUnc_4: -1.15190342e-04 + ArtUnc_5: -1.71143019e-04 + ArtUnc_6: 2.53826159e-04 + ArtUnc_7: -1.70432949e-04 + ArtUnc_8: -2.67236038e-04 + ArtUnc_9: -3.79768590e-05 + ArtUnc_10: -9.79356738e-05 + ArtUnc_11: -2.37937540e-06 + ArtUnc_12: -2.81175202e-05 + ArtUnc_13: 1.13210402e-07 + ArtUnc_14: -5.28039328e-07 + ArtUnc_15: -5.49247081e-07 + ArtUnc_16: -1.40611950e-07 +- sys: 5.63792343e-05 + ArtUnc_1: -3.35753238e-05 + ArtUnc_2: 3.82355497e-06 + ArtUnc_3: 1.15030600e-05 + ArtUnc_4: 8.17604842e-05 + ArtUnc_5: 4.09433801e-05 + ArtUnc_6: 1.20480892e-04 + ArtUnc_7: 1.42394213e-04 + ArtUnc_8: 5.43429968e-06 + ArtUnc_9: 2.05064899e-04 + ArtUnc_10: -3.52820213e-05 + ArtUnc_11: -1.22582847e-04 + ArtUnc_12: -4.29632946e-05 + ArtUnc_13: 1.95135741e-07 + ArtUnc_14: -7.96183853e-08 + ArtUnc_15: -4.38942361e-07 + ArtUnc_16: 7.95716356e-07 +- sys: 6.38520530e-05 + ArtUnc_1: 8.90119809e-05 + ArtUnc_2: 4.51086847e-05 + ArtUnc_3: 1.58348172e-05 + ArtUnc_4: -3.08662542e-05 + ArtUnc_5: 1.94251486e-04 + ArtUnc_6: 2.74018482e-04 + ArtUnc_7: -2.13406126e-04 + ArtUnc_8: 2.80103969e-04 + ArtUnc_9: -6.86593999e-05 + ArtUnc_10: -2.93075150e-05 + ArtUnc_11: -3.49033999e-05 + ArtUnc_12: -1.57871679e-05 + ArtUnc_13: 9.79098615e-08 + ArtUnc_14: -1.01327037e-06 + ArtUnc_15: -9.66680150e-07 + ArtUnc_16: 9.66601650e-07 +- sys: 5.33816479e-05 + ArtUnc_1: -5.11216841e-05 + ArtUnc_2: -3.02577042e-05 + ArtUnc_3: 8.22429036e-05 + ArtUnc_4: -9.43498241e-05 + ArtUnc_5: 4.70176400e-06 + ArtUnc_6: -6.42225363e-05 + ArtUnc_7: 2.60963877e-04 + ArtUnc_8: 6.98035566e-05 + ArtUnc_9: -1.63265643e-04 + ArtUnc_10: -1.74953925e-04 + ArtUnc_11: -7.94335823e-06 + ArtUnc_12: -2.61832152e-05 + ArtUnc_13: 1.38914614e-07 + ArtUnc_14: 2.09667185e-07 + ArtUnc_15: -1.31636963e-06 + ArtUnc_16: 2.46062277e-07 +- sys: 3.95419635e-05 + ArtUnc_1: -3.35841684e-05 + ArtUnc_2: -1.12731045e-05 + ArtUnc_3: 6.57641401e-06 + ArtUnc_4: 4.38831205e-05 + ArtUnc_5: 6.04989041e-05 + ArtUnc_6: 3.35605322e-05 + ArtUnc_7: 6.50158025e-05 + ArtUnc_8: -1.02237413e-04 + ArtUnc_9: -1.70651436e-04 + ArtUnc_10: 1.89158183e-04 + ArtUnc_11: -9.43739116e-05 + ArtUnc_12: -2.90553274e-05 + ArtUnc_13: 1.66793783e-07 + ArtUnc_14: 1.45807118e-07 + ArtUnc_15: -6.16779892e-07 + ArtUnc_16: -5.15490783e-07 +- sys: 2.50293835e-05 + ArtUnc_1: 1.94290765e-05 + ArtUnc_2: 1.54295175e-05 + ArtUnc_3: -1.94909742e-05 + ArtUnc_4: 2.05814195e-05 + ArtUnc_5: -1.97499588e-05 + ArtUnc_6: 2.64461114e-05 + ArtUnc_7: 3.76418209e-05 + ArtUnc_8: 4.95858955e-05 + ArtUnc_9: 3.57500462e-05 + ArtUnc_10: 7.26132452e-05 + ArtUnc_11: 1.31777519e-04 + ArtUnc_12: -8.78174991e-05 + ArtUnc_13: 2.93704569e-07 + ArtUnc_14: -8.55521586e-07 + ArtUnc_15: -1.65418026e-07 + ArtUnc_16: 5.48732024e-07 +- sys: 1.14379409e-05 + ArtUnc_1: -3.04142173e-06 + ArtUnc_2: 1.83469328e-06 + ArtUnc_3: 3.92736563e-06 + ArtUnc_4: -1.46558516e-06 + ArtUnc_5: -6.24852085e-06 + ArtUnc_6: -7.72870874e-06 + ArtUnc_7: 7.91259908e-06 + ArtUnc_8: -9.75576702e-06 + ArtUnc_9: 4.18467194e-06 + ArtUnc_10: 6.67258126e-06 + ArtUnc_11: 4.09516574e-06 + ArtUnc_12: 1.20406539e-05 + ArtUnc_13: 5.58283339e-07 + ArtUnc_14: -3.67532702e-05 + ArtUnc_15: -1.31085881e-05 + ArtUnc_16: 1.72531067e-05 +- sys: 4.80467334e-06 + ArtUnc_1: 6.74715528e-07 + ArtUnc_2: 1.72643270e-06 + ArtUnc_3: -5.19978402e-06 + ArtUnc_4: 3.13979001e-06 + ArtUnc_5: 8.31389952e-07 + ArtUnc_6: 3.86713841e-06 + ArtUnc_7: -3.00530671e-06 + ArtUnc_8: -6.71757736e-06 + ArtUnc_9: 6.96204378e-06 + ArtUnc_10: 5.60768592e-06 + ArtUnc_11: 8.05517423e-06 + ArtUnc_12: 1.20221014e-05 + ArtUnc_13: 7.93127925e-07 + ArtUnc_14: 3.27131706e-05 + ArtUnc_15: -1.78436093e-05 + ArtUnc_16: 1.21571613e-05 +- sys: 3.94184096e-06 + ArtUnc_1: 2.39335395e-06 + ArtUnc_2: 1.70635639e-06 + ArtUnc_3: -2.98342404e-06 + ArtUnc_4: 9.93064905e-07 + ArtUnc_5: -3.61912298e-07 + ArtUnc_6: -5.36764737e-07 + ArtUnc_7: -1.75689688e-06 + ArtUnc_8: 5.95907468e-06 + ArtUnc_9: 9.74598780e-06 + ArtUnc_10: -1.46331570e-07 + ArtUnc_11: 4.29673188e-06 + ArtUnc_12: 1.12509197e-05 + ArtUnc_13: 9.64661140e-07 + ArtUnc_14: -7.36405789e-06 + ArtUnc_15: -1.03800836e-05 + ArtUnc_16: -3.12492635e-05 +- sys: 5.39036170e-06 + ArtUnc_1: 1.96219326e-07 + ArtUnc_2: -9.91127461e-07 + ArtUnc_3: 1.44265674e-06 + ArtUnc_4: -2.73701222e-06 + ArtUnc_5: 5.57634520e-07 + ArtUnc_6: -2.17490620e-06 + ArtUnc_7: -1.91670900e-06 + ArtUnc_8: -6.09855751e-07 + ArtUnc_9: -2.20091814e-06 + ArtUnc_10: -3.35794569e-06 + ArtUnc_11: 2.49346662e-06 + ArtUnc_12: 1.71041416e-05 + ArtUnc_13: 1.66935043e-06 + ArtUnc_14: 1.25315190e-06 + ArtUnc_15: 1.93153472e-05 + ArtUnc_16: 6.24262623e-06 diff --git a/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_8TEV_2L_DIF/uncertainties_d2Sig_dyt_dpTt_norm.yaml b/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_8TEV_2L_DIF/uncertainties_d2Sig_dyt_dpTt_norm.yaml index a102ded0cd..728f480249 100644 --- a/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_8TEV_2L_DIF/uncertainties_d2Sig_dyt_dpTt_norm.yaml +++ b/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_8TEV_2L_DIF/uncertainties_d2Sig_dyt_dpTt_norm.yaml @@ -68,275 +68,275 @@ definitions: treatment: ADD type: CORR bins: -- sys: 0.00019708991957987095 - ArtUnc_1: -0.001265764169667939 - ArtUnc_2: 0.00035181057769212643 - ArtUnc_3: 0.00014548413409189368 - ArtUnc_4: -0.00019051111345418879 - ArtUnc_5: -0.00011355370302881415 - ArtUnc_6: 8.638806519151522e-05 - ArtUnc_7: 0.000171922753465699 - ArtUnc_8: 4.5482558260971e-05 - ArtUnc_9: 5.996303473256368e-06 - ArtUnc_10: 2.014778244248772e-06 - ArtUnc_11: -3.151643876320137e-05 - ArtUnc_12: 1.2214890427704735e-05 - ArtUnc_13: -2.555329359955808e-06 - ArtUnc_14: 1.679742604916427e-06 - ArtUnc_15: 4.4132147879862976e-08 - ArtUnc_16: -1.4182398490586844e-06 -- sys: 0.00019337429683130073 - ArtUnc_1: 0.0006291076592251175 - ArtUnc_2: 0.0011563355059614248 - ArtUnc_3: 9.706766893996923e-06 - ArtUnc_4: -0.00010002181174614092 - ArtUnc_5: -0.00018095238079264005 - ArtUnc_6: 2.657868116547063e-05 - ArtUnc_7: 5.120549138915215e-05 - ArtUnc_8: 3.947171985873972e-05 - ArtUnc_9: -3.184769442995387e-05 - ArtUnc_10: 3.97478883904174e-05 - ArtUnc_11: -2.2296160844537438e-05 - ArtUnc_12: 1.0387672224263112e-05 - ArtUnc_13: -2.6488830106822725e-06 - ArtUnc_14: 1.5675394494373528e-06 - ArtUnc_15: 3.937378830306699e-08 - ArtUnc_16: -1.284164557855918e-06 -- sys: 5.7362343048379746e-05 - ArtUnc_1: 7.024341004740766e-05 - ArtUnc_2: -0.00017378279928673162 - ArtUnc_3: 0.00016521554118092803 - ArtUnc_4: 0.0003213662765915074 - ArtUnc_5: -0.00015690083306229682 - ArtUnc_6: -0.0004115934806268513 - ArtUnc_7: 0.00027265637294518745 - ArtUnc_8: 0.00013635622269978368 - ArtUnc_9: -9.020381016423236e-05 - ArtUnc_10: 1.2022443451763175e-05 - ArtUnc_11: -3.6189031884489246e-05 - ArtUnc_12: 1.0151151201712815e-05 - ArtUnc_13: -4.937831931465314e-06 - ArtUnc_14: 3.0559081820003736e-06 - ArtUnc_15: 5.4971388992520743e-08 - ArtUnc_16: -1.918112934568755e-06 -- sys: 1.1682321547962972e-05 - ArtUnc_1: -5.320602878568893e-06 - ArtUnc_2: -2.0016312876203116e-08 - ArtUnc_3: -7.847504407826142e-06 - ArtUnc_4: -1.3683968142807728e-05 - ArtUnc_5: 6.158266835469206e-06 - ArtUnc_6: 1.8223768487813697e-05 - ArtUnc_7: -1.2649124624963813e-05 - ArtUnc_8: -1.0729253969616889e-05 - ArtUnc_9: 6.021197491694779e-06 - ArtUnc_10: -5.867294529254836e-06 - ArtUnc_11: 7.800590215238614e-06 - ArtUnc_12: -4.837523342600861e-05 - ArtUnc_13: -5.7009936576293695e-05 - ArtUnc_14: 2.417385512213445e-05 - ArtUnc_15: 1.9394424866414507e-07 - ArtUnc_16: -8.751685930733769e-06 -- sys: 8.55745727421411e-05 - ArtUnc_1: 0.0003084569676649005 - ArtUnc_2: -0.0005210056127094477 - ArtUnc_3: 0.000412651970556621 - ArtUnc_4: -0.00046044995899570374 - ArtUnc_5: -0.0003043741911145857 - ArtUnc_6: -1.345131338169289e-05 - ArtUnc_7: -3.679481605476618e-05 - ArtUnc_8: -5.211438338933922e-05 - ArtUnc_9: -2.7456025827910333e-05 - ArtUnc_10: 0.00011490478698254246 - ArtUnc_11: -3.285183749311711e-05 - ArtUnc_12: 1.8422912504107876e-05 - ArtUnc_13: -3.975342744056133e-06 - ArtUnc_14: 2.3568978608855726e-06 - ArtUnc_15: 6.44206537574608e-08 - ArtUnc_16: -2.081048500126637e-06 -- sys: 0.00011148083725466006 - ArtUnc_1: 0.0001542422413657509 - ArtUnc_2: -0.00022993136634629282 - ArtUnc_3: -0.0008229965786361163 - ArtUnc_4: -0.00032514233048686075 - ArtUnc_5: -1.5874842143617214e-06 - ArtUnc_6: -4.581795259802662e-05 - ArtUnc_7: 0.00018389578241990952 - ArtUnc_8: 6.039915707255931e-05 - ArtUnc_9: 1.904702389320949e-05 - ArtUnc_10: -4.642203234647225e-05 - ArtUnc_11: -4.872837634722626e-05 - ArtUnc_12: 1.5038619830344317e-05 - ArtUnc_13: -2.620078328687738e-06 - ArtUnc_14: 2.2174898320730514e-06 - ArtUnc_15: 5.5627847578903603e-08 - ArtUnc_16: -1.8105948856309507e-06 -- sys: 7.109856169431278e-05 - ArtUnc_1: -9.064300302917017e-05 - ArtUnc_2: -2.0368956275968756e-05 - ArtUnc_3: -4.200328440329599e-05 - ArtUnc_4: -3.7205553995363093e-05 - ArtUnc_5: 0.0002955256985793105 - ArtUnc_6: 6.73450091549235e-05 - ArtUnc_7: -0.00017519227884224708 - ArtUnc_8: 0.00023866382389819453 - ArtUnc_9: -0.00026860553604628 - ArtUnc_10: 0.00011158645206713725 - ArtUnc_11: -3.100494766469365e-05 - ArtUnc_12: 1.7653859713415202e-05 - ArtUnc_13: -2.3875228730753646e-06 - ArtUnc_14: 3.414883040979073e-06 - ArtUnc_15: 8.037940579667812e-08 - ArtUnc_16: -2.8851891076215997e-06 -- sys: 6.659501221563068e-06 - ArtUnc_1: 3.1890210413620133e-06 - ArtUnc_2: 2.0129296535051397e-06 - ArtUnc_3: 5.9738773620480415e-06 - ArtUnc_4: 2.733083510416883e-06 - ArtUnc_5: -1.144926227090193e-05 - ArtUnc_6: 6.960360735898373e-07 - ArtUnc_7: 3.0460325620735156e-06 - ArtUnc_8: -1.009038040757609e-05 - ArtUnc_9: 1.191218893392111e-05 - ArtUnc_10: -3.220988939209196e-06 - ArtUnc_11: 8.635112916489248e-06 - ArtUnc_12: -2.2334321099848354e-05 - ArtUnc_13: 5.7045908266456376e-05 - ArtUnc_14: 2.4061279313096332e-05 - ArtUnc_15: 2.787626345061973e-07 - ArtUnc_16: -1.4099874224400753e-05 -- sys: 9.1968319953123e-05 - ArtUnc_1: 0.00039347292372140564 - ArtUnc_2: -0.00020391081127771674 - ArtUnc_3: 0.00031117939253959336 - ArtUnc_4: 0.00011123485222594117 - ArtUnc_5: 0.00019715136828427003 - ArtUnc_6: 0.00038482497122921676 - ArtUnc_7: 0.00027669128710844793 - ArtUnc_8: 5.922889721968832e-05 - ArtUnc_9: 5.624761704875644e-05 - ArtUnc_10: -6.937294565708423e-05 - ArtUnc_11: -6.422986378274655e-05 - ArtUnc_12: 2.1433463882485497e-05 - ArtUnc_13: -4.30771049250129e-06 - ArtUnc_14: 2.817194709086185e-06 - ArtUnc_15: 7.584827244069097e-08 - ArtUnc_16: -2.411229687076082e-06 -- sys: 9.406734608778967e-05 - ArtUnc_1: -0.00011384305355524642 - ArtUnc_2: -0.00017168209061030085 - ArtUnc_3: -0.0003412028933237705 - ArtUnc_4: 0.0003959939399588906 - ArtUnc_5: -0.00042066054923124566 - ArtUnc_6: 0.0002720950451129107 - ArtUnc_7: -8.243415995921658e-05 - ArtUnc_8: -4.2651704535472635e-05 - ArtUnc_9: -3.922924838178096e-05 - ArtUnc_10: 9.294344839628819e-05 - ArtUnc_11: -1.7168158000864e-05 - ArtUnc_12: 1.9316178150399786e-05 - ArtUnc_13: -4.214358422764405e-06 - ArtUnc_14: 2.082567030690962e-06 - ArtUnc_15: 6.769035757678558e-08 - ArtUnc_16: -2.1937961416465355e-06 -- sys: 6.277108545142422e-05 - ArtUnc_1: -3.435467396332601e-05 - ArtUnc_2: 5.2579809769980704e-05 - ArtUnc_3: 4.54941329045213e-05 - ArtUnc_4: -1.9371156061379246e-06 - ArtUnc_5: -1.9031147307966617e-05 - ArtUnc_6: -4.174384220080004e-05 - ArtUnc_7: -7.82215034218461e-05 - ArtUnc_8: -0.0002455307493919998 - ArtUnc_9: -0.00022839684501185578 - ArtUnc_10: -0.00022357309667453385 - ArtUnc_11: -5.675587196594075e-05 - ArtUnc_12: 2.2987903796225996e-05 - ArtUnc_13: -4.194744795035783e-06 - ArtUnc_14: 1.0629783562490176e-06 - ArtUnc_15: 9.56660120897326e-08 - ArtUnc_16: -3.090301161796345e-06 -- sys: 6.610357309555967e-06 - ArtUnc_1: 2.517636256471772e-06 - ArtUnc_2: -1.5937052913648517e-06 - ArtUnc_3: 1.4355960854512164e-07 - ArtUnc_4: -1.7052511456241126e-06 - ArtUnc_5: 1.810299579304954e-06 - ArtUnc_6: -1.3865755828481001e-06 - ArtUnc_7: 4.857411362006139e-06 - ArtUnc_8: 9.908775929977633e-06 - ArtUnc_9: 1.1318509644095137e-05 - ArtUnc_10: 7.06947142945973e-06 - ArtUnc_11: 4.266482355736872e-06 - ArtUnc_12: -1.814181555374876e-05 - ArtUnc_13: -4.309499397433696e-06 - ArtUnc_14: -4.451481693861792e-05 - ArtUnc_15: 3.3653741390482527e-07 - ArtUnc_16: -1.4320519634772508e-05 -- sys: 5.2144820183791984e-05 - ArtUnc_1: -8.685908873281473e-05 - ArtUnc_2: 0.00013071093897364976 - ArtUnc_3: -6.313441190338908e-05 - ArtUnc_4: 9.203678804265439e-05 - ArtUnc_5: 0.0003016625951413821 - ArtUnc_6: -0.0001393545311846205 - ArtUnc_7: 2.202281480752644e-05 - ArtUnc_8: -0.0002551266612888564 - ArtUnc_9: 0.00010527161197811777 - ArtUnc_10: 0.00017638731982236896 - ArtUnc_11: -4.015362159917137e-05 - ArtUnc_12: 3.940761520897173e-05 - ArtUnc_13: -8.239376618786845e-06 - ArtUnc_14: 4.927266898732047e-06 - ArtUnc_15: 1.3485874446743558e-07 - ArtUnc_16: -4.319149957570533e-06 -- sys: 7.041765829676531e-05 - ArtUnc_1: -4.597819844740568e-05 - ArtUnc_2: 2.9885791840861336e-05 - ArtUnc_3: 7.232831354187485e-05 - ArtUnc_4: 4.397921889605876e-05 - ArtUnc_5: -5.2730672554474465e-05 - ArtUnc_6: -0.00010817277180545431 - ArtUnc_7: -0.00029329634708538915 - ArtUnc_8: 0.00018155538698900916 - ArtUnc_9: 0.00022319450600729546 - ArtUnc_10: -0.00011462570221385455 - ArtUnc_11: -8.40465293526529e-05 - ArtUnc_12: 3.314932341633525e-05 - ArtUnc_13: -6.648545304845102e-06 - ArtUnc_14: 4.302206548607596e-06 - ArtUnc_15: 1.1762383916649405e-07 - ArtUnc_16: -3.5068650245105394e-06 -- sys: 2.028340353589604e-05 - ArtUnc_1: 2.4404280256559274e-05 - ArtUnc_2: -1.6245741792755437e-05 - ArtUnc_3: 1.4060421760322168e-05 - ArtUnc_4: -3.267714017421392e-05 - ArtUnc_5: -9.326455470945997e-06 - ArtUnc_6: 1.2943183962746445e-07 - ArtUnc_7: 3.0685271646049766e-05 - ArtUnc_8: 4.47662846489361e-05 - ArtUnc_9: 2.9381327552834424e-06 - ArtUnc_10: -5.1504042349542e-05 - ArtUnc_11: 0.00022651807150019288 - ArtUnc_12: 4.7749274621271456e-05 - ArtUnc_13: -9.380992395852847e-06 - ArtUnc_14: 4.961475952981071e-06 - ArtUnc_15: 1.6805964022011454e-07 - ArtUnc_16: -3.4347511910071386e-06 -- sys: 2.310631015004343e-06 - ArtUnc_1: -8.016200516794867e-07 - ArtUnc_2: 1.9192960432946587e-07 - ArtUnc_3: -1.2183882157530504e-06 - ArtUnc_4: 1.250910205964668e-06 - ArtUnc_5: 8.854952323481252e-07 - ArtUnc_6: 6.616431413063933e-07 - ArtUnc_7: 8.225935458490953e-08 - ArtUnc_8: -2.1640741227884336e-06 - ArtUnc_9: -1.2825919617480444e-06 - ArtUnc_10: 3.845489570163164e-06 - ArtUnc_11: -8.638571682748928e-06 - ArtUnc_12: -9.527451669518442e-06 - ArtUnc_13: 3.688277786938038e-06 - ArtUnc_14: 4.6047658977031846e-07 - ArtUnc_15: 5.883756257115832e-07 - ArtUnc_16: 2.2658596259718156e-05 +- sys: 1.97089920e-04 + ArtUnc_1: -1.26576417e-03 + ArtUnc_2: 3.51810578e-04 + ArtUnc_3: 1.45484134e-04 + ArtUnc_4: -1.90511113e-04 + ArtUnc_5: -1.13553703e-04 + ArtUnc_6: 8.63880652e-05 + ArtUnc_7: 1.71922753e-04 + ArtUnc_8: 4.54825583e-05 + ArtUnc_9: 5.99630347e-06 + ArtUnc_10: 2.01477824e-06 + ArtUnc_11: -3.15164388e-05 + ArtUnc_12: 1.22148904e-05 + ArtUnc_13: -2.55532936e-06 + ArtUnc_14: 1.67974260e-06 + ArtUnc_15: 4.41321479e-08 + ArtUnc_16: -1.41823985e-06 +- sys: 1.93374297e-04 + ArtUnc_1: 6.29107659e-04 + ArtUnc_2: 1.15633551e-03 + ArtUnc_3: 9.70676689e-06 + ArtUnc_4: -1.00021812e-04 + ArtUnc_5: -1.80952381e-04 + ArtUnc_6: 2.65786812e-05 + ArtUnc_7: 5.12054914e-05 + ArtUnc_8: 3.94717199e-05 + ArtUnc_9: -3.18476944e-05 + ArtUnc_10: 3.97478884e-05 + ArtUnc_11: -2.22961608e-05 + ArtUnc_12: 1.03876722e-05 + ArtUnc_13: -2.64888301e-06 + ArtUnc_14: 1.56753945e-06 + ArtUnc_15: 3.93737883e-08 + ArtUnc_16: -1.28416456e-06 +- sys: 5.73623430e-05 + ArtUnc_1: 7.02434100e-05 + ArtUnc_2: -1.73782799e-04 + ArtUnc_3: 1.65215541e-04 + ArtUnc_4: 3.21366277e-04 + ArtUnc_5: -1.56900833e-04 + ArtUnc_6: -4.11593481e-04 + ArtUnc_7: 2.72656373e-04 + ArtUnc_8: 1.36356223e-04 + ArtUnc_9: -9.02038102e-05 + ArtUnc_10: 1.20224435e-05 + ArtUnc_11: -3.61890319e-05 + ArtUnc_12: 1.01511512e-05 + ArtUnc_13: -4.93783193e-06 + ArtUnc_14: 3.05590818e-06 + ArtUnc_15: 5.49713890e-08 + ArtUnc_16: -1.91811293e-06 +- sys: 1.16823215e-05 + ArtUnc_1: -5.32060288e-06 + ArtUnc_2: -2.00163129e-08 + ArtUnc_3: -7.84750441e-06 + ArtUnc_4: -1.36839681e-05 + ArtUnc_5: 6.15826684e-06 + ArtUnc_6: 1.82237685e-05 + ArtUnc_7: -1.26491246e-05 + ArtUnc_8: -1.07292540e-05 + ArtUnc_9: 6.02119749e-06 + ArtUnc_10: -5.86729453e-06 + ArtUnc_11: 7.80059022e-06 + ArtUnc_12: -4.83752334e-05 + ArtUnc_13: -5.70099366e-05 + ArtUnc_14: 2.41738551e-05 + ArtUnc_15: 1.93944249e-07 + ArtUnc_16: -8.75168593e-06 +- sys: 8.55745727e-05 + ArtUnc_1: 3.08456968e-04 + ArtUnc_2: -5.21005613e-04 + ArtUnc_3: 4.12651971e-04 + ArtUnc_4: -4.60449959e-04 + ArtUnc_5: -3.04374191e-04 + ArtUnc_6: -1.34513134e-05 + ArtUnc_7: -3.67948161e-05 + ArtUnc_8: -5.21143834e-05 + ArtUnc_9: -2.74560258e-05 + ArtUnc_10: 1.14904787e-04 + ArtUnc_11: -3.28518375e-05 + ArtUnc_12: 1.84229125e-05 + ArtUnc_13: -3.97534274e-06 + ArtUnc_14: 2.35689786e-06 + ArtUnc_15: 6.44206538e-08 + ArtUnc_16: -2.08104850e-06 +- sys: 1.11480837e-04 + ArtUnc_1: 1.54242241e-04 + ArtUnc_2: -2.29931366e-04 + ArtUnc_3: -8.22996579e-04 + ArtUnc_4: -3.25142330e-04 + ArtUnc_5: -1.58748421e-06 + ArtUnc_6: -4.58179526e-05 + ArtUnc_7: 1.83895782e-04 + ArtUnc_8: 6.03991571e-05 + ArtUnc_9: 1.90470239e-05 + ArtUnc_10: -4.64220323e-05 + ArtUnc_11: -4.87283763e-05 + ArtUnc_12: 1.50386198e-05 + ArtUnc_13: -2.62007833e-06 + ArtUnc_14: 2.21748983e-06 + ArtUnc_15: 5.56278476e-08 + ArtUnc_16: -1.81059489e-06 +- sys: 7.10985617e-05 + ArtUnc_1: -9.06430030e-05 + ArtUnc_2: -2.03689563e-05 + ArtUnc_3: -4.20032844e-05 + ArtUnc_4: -3.72055540e-05 + ArtUnc_5: 2.95525699e-04 + ArtUnc_6: 6.73450092e-05 + ArtUnc_7: -1.75192279e-04 + ArtUnc_8: 2.38663824e-04 + ArtUnc_9: -2.68605536e-04 + ArtUnc_10: 1.11586452e-04 + ArtUnc_11: -3.10049477e-05 + ArtUnc_12: 1.76538597e-05 + ArtUnc_13: -2.38752287e-06 + ArtUnc_14: 3.41488304e-06 + ArtUnc_15: 8.03794058e-08 + ArtUnc_16: -2.88518911e-06 +- sys: 6.65950122e-06 + ArtUnc_1: 3.18902104e-06 + ArtUnc_2: 2.01292965e-06 + ArtUnc_3: 5.97387736e-06 + ArtUnc_4: 2.73308351e-06 + ArtUnc_5: -1.14492623e-05 + ArtUnc_6: 6.96036074e-07 + ArtUnc_7: 3.04603256e-06 + ArtUnc_8: -1.00903804e-05 + ArtUnc_9: 1.19121889e-05 + ArtUnc_10: -3.22098894e-06 + ArtUnc_11: 8.63511292e-06 + ArtUnc_12: -2.23343211e-05 + ArtUnc_13: 5.70459083e-05 + ArtUnc_14: 2.40612793e-05 + ArtUnc_15: 2.78762635e-07 + ArtUnc_16: -1.40998742e-05 +- sys: 9.19683200e-05 + ArtUnc_1: 3.93472924e-04 + ArtUnc_2: -2.03910811e-04 + ArtUnc_3: 3.11179393e-04 + ArtUnc_4: 1.11234852e-04 + ArtUnc_5: 1.97151368e-04 + ArtUnc_6: 3.84824971e-04 + ArtUnc_7: 2.76691287e-04 + ArtUnc_8: 5.92288972e-05 + ArtUnc_9: 5.62476170e-05 + ArtUnc_10: -6.93729457e-05 + ArtUnc_11: -6.42298638e-05 + ArtUnc_12: 2.14334639e-05 + ArtUnc_13: -4.30771049e-06 + ArtUnc_14: 2.81719471e-06 + ArtUnc_15: 7.58482724e-08 + ArtUnc_16: -2.41122969e-06 +- sys: 9.40673461e-05 + ArtUnc_1: -1.13843054e-04 + ArtUnc_2: -1.71682091e-04 + ArtUnc_3: -3.41202893e-04 + ArtUnc_4: 3.95993940e-04 + ArtUnc_5: -4.20660549e-04 + ArtUnc_6: 2.72095045e-04 + ArtUnc_7: -8.24341600e-05 + ArtUnc_8: -4.26517045e-05 + ArtUnc_9: -3.92292484e-05 + ArtUnc_10: 9.29434484e-05 + ArtUnc_11: -1.71681580e-05 + ArtUnc_12: 1.93161782e-05 + ArtUnc_13: -4.21435842e-06 + ArtUnc_14: 2.08256703e-06 + ArtUnc_15: 6.76903576e-08 + ArtUnc_16: -2.19379614e-06 +- sys: 6.27710855e-05 + ArtUnc_1: -3.43546740e-05 + ArtUnc_2: 5.25798098e-05 + ArtUnc_3: 4.54941329e-05 + ArtUnc_4: -1.93711561e-06 + ArtUnc_5: -1.90311473e-05 + ArtUnc_6: -4.17438422e-05 + ArtUnc_7: -7.82215034e-05 + ArtUnc_8: -2.45530749e-04 + ArtUnc_9: -2.28396845e-04 + ArtUnc_10: -2.23573097e-04 + ArtUnc_11: -5.67558720e-05 + ArtUnc_12: 2.29879038e-05 + ArtUnc_13: -4.19474480e-06 + ArtUnc_14: 1.06297836e-06 + ArtUnc_15: 9.56660121e-08 + ArtUnc_16: -3.09030116e-06 +- sys: 6.61035731e-06 + ArtUnc_1: 2.51763626e-06 + ArtUnc_2: -1.59370529e-06 + ArtUnc_3: 1.43559609e-07 + ArtUnc_4: -1.70525115e-06 + ArtUnc_5: 1.81029958e-06 + ArtUnc_6: -1.38657558e-06 + ArtUnc_7: 4.85741136e-06 + ArtUnc_8: 9.90877593e-06 + ArtUnc_9: 1.13185096e-05 + ArtUnc_10: 7.06947143e-06 + ArtUnc_11: 4.26648236e-06 + ArtUnc_12: -1.81418156e-05 + ArtUnc_13: -4.30949940e-06 + ArtUnc_14: -4.45148169e-05 + ArtUnc_15: 3.36537414e-07 + ArtUnc_16: -1.43205196e-05 +- sys: 5.21448202e-05 + ArtUnc_1: -8.68590887e-05 + ArtUnc_2: 1.30710939e-04 + ArtUnc_3: -6.31344119e-05 + ArtUnc_4: 9.20367880e-05 + ArtUnc_5: 3.01662595e-04 + ArtUnc_6: -1.39354531e-04 + ArtUnc_7: 2.20228148e-05 + ArtUnc_8: -2.55126661e-04 + ArtUnc_9: 1.05271612e-04 + ArtUnc_10: 1.76387320e-04 + ArtUnc_11: -4.01536216e-05 + ArtUnc_12: 3.94076152e-05 + ArtUnc_13: -8.23937662e-06 + ArtUnc_14: 4.92726690e-06 + ArtUnc_15: 1.34858744e-07 + ArtUnc_16: -4.31914996e-06 +- sys: 7.04176583e-05 + ArtUnc_1: -4.59781984e-05 + ArtUnc_2: 2.98857918e-05 + ArtUnc_3: 7.23283135e-05 + ArtUnc_4: 4.39792189e-05 + ArtUnc_5: -5.27306726e-05 + ArtUnc_6: -1.08172772e-04 + ArtUnc_7: -2.93296347e-04 + ArtUnc_8: 1.81555387e-04 + ArtUnc_9: 2.23194506e-04 + ArtUnc_10: -1.14625702e-04 + ArtUnc_11: -8.40465294e-05 + ArtUnc_12: 3.31493234e-05 + ArtUnc_13: -6.64854530e-06 + ArtUnc_14: 4.30220655e-06 + ArtUnc_15: 1.17623839e-07 + ArtUnc_16: -3.50686502e-06 +- sys: 2.02834035e-05 + ArtUnc_1: 2.44042803e-05 + ArtUnc_2: -1.62457418e-05 + ArtUnc_3: 1.40604218e-05 + ArtUnc_4: -3.26771402e-05 + ArtUnc_5: -9.32645547e-06 + ArtUnc_6: 1.29431840e-07 + ArtUnc_7: 3.06852716e-05 + ArtUnc_8: 4.47662846e-05 + ArtUnc_9: 2.93813276e-06 + ArtUnc_10: -5.15040423e-05 + ArtUnc_11: 2.26518072e-04 + ArtUnc_12: 4.77492746e-05 + ArtUnc_13: -9.38099240e-06 + ArtUnc_14: 4.96147595e-06 + ArtUnc_15: 1.68059640e-07 + ArtUnc_16: -3.43475119e-06 +- sys: 2.31063102e-06 + ArtUnc_1: -8.01620052e-07 + ArtUnc_2: 1.91929604e-07 + ArtUnc_3: -1.21838822e-06 + ArtUnc_4: 1.25091021e-06 + ArtUnc_5: 8.85495232e-07 + ArtUnc_6: 6.61643141e-07 + ArtUnc_7: 8.22593546e-08 + ArtUnc_8: -2.16407412e-06 + ArtUnc_9: -1.28259196e-06 + ArtUnc_10: 3.84548957e-06 + ArtUnc_11: -8.63857168e-06 + ArtUnc_12: -9.52745167e-06 + ArtUnc_13: 3.68827779e-06 + ArtUnc_14: 4.60476590e-07 + ArtUnc_15: 5.88375626e-07 + ArtUnc_16: 2.26585963e-05 diff --git a/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_8TEV_LJ_DIF/filter.py b/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_8TEV_LJ_DIF/filter.py index 0399a3049e..f3101b266c 100644 --- a/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_8TEV_LJ_DIF/filter.py +++ b/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_8TEV_LJ_DIF/filter.py @@ -2,6 +2,9 @@ from nnpdf_data.filter_utils.utils import covmat_to_artunc as cta from nnpdf_data.filter_utils.utils import percentage_to_absolute as pta +from nnpdf_data.filter_utils.utils import prettify_float + +yaml.add_representer(float, prettify_float) def processData(): diff --git a/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_8TEV_LJ_DIF/uncertainties_dSig_dmttBar_norm.yaml b/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_8TEV_LJ_DIF/uncertainties_dSig_dmttBar_norm.yaml index 8ee8e122e9..ca0fc73e8a 100644 --- a/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_8TEV_LJ_DIF/uncertainties_dSig_dmttBar_norm.yaml +++ b/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_8TEV_LJ_DIF/uncertainties_dSig_dmttBar_norm.yaml @@ -77,135 +77,135 @@ definitions: type: CORR bins: - stat: 0 - ArtUnc_1: -9.438874519539647e-05 - ArtUnc_2: 3.0364060435848206e-05 - ArtUnc_3: -1.1367508363449357e-05 - ArtUnc_4: 4.1267860231979514e-06 - ArtUnc_5: -1.2331275598624894e-06 - ArtUnc_6: 1.3266580907116983e-07 + ArtUnc_1: -9.43887452e-05 + ArtUnc_2: 3.03640604e-05 + ArtUnc_3: -1.13675084e-05 + ArtUnc_4: 4.12678602e-06 + ArtUnc_5: -1.23312756e-06 + ArtUnc_6: 1.32665809e-07 ArtUnc_7: 0.0 LEP: 4.69e-06 - JES: 0.00024388 + JES: 2.43880000e-04 JER: 9.38e-06 - BG: 2.345e-05 + BG: 2.34500000e-05 Btag: 4.69e-05 - PU: 1.4069999999999999e-05 - TopScale: 7.504e-05 + PU: 1.40700000e-05 + TopScale: 7.50400000e-05 TopMatch: 4.69e-05 - Hadronization: 0.00020636000000000002 - TopMass: 2.345e-05 + Hadronization: 2.06360000e-04 + TopMass: 2.34500000e-05 PDF: 0.0 - stat: 0 - ArtUnc_1: 8.684406238635851e-05 - ArtUnc_2: 2.5118495917924933e-05 - ArtUnc_3: -1.3704847762305007e-05 - ArtUnc_4: 5.730982054538363e-06 - ArtUnc_5: -1.573150271507936e-06 - ArtUnc_6: 1.6882525176755308e-07 + ArtUnc_1: 8.68440624e-05 + ArtUnc_2: 2.51184959e-05 + ArtUnc_3: -1.37048478e-05 + ArtUnc_4: 5.73098205e-06 + ArtUnc_5: -1.57315027e-06 + ArtUnc_6: 1.68825252e-07 ArtUnc_7: 0.0 LEP: 0.0 - JES: 5.5900000000000004e-05 + JES: 5.59000000e-05 JER: 1.29e-05 BG: 4.3e-06 Btag: 4.3e-06 PU: 4.3e-06 TopScale: 9.03e-05 TopMatch: 4.3e-05 - Hadronization: 3.0099999999999996e-05 + Hadronization: 3.01000000e-05 TopMass: 3.44e-05 PDF: 0.0 - stat: 0 - ArtUnc_1: -1.3604238144555771e-05 - ArtUnc_2: -5.068862273253288e-05 - ArtUnc_3: -9.848049249303884e-06 - ArtUnc_4: 6.413641378010805e-06 - ArtUnc_5: -1.852988590227014e-06 - ArtUnc_6: 1.902945845297342e-07 + ArtUnc_1: -1.36042381e-05 + ArtUnc_2: -5.06886227e-05 + ArtUnc_3: -9.84804925e-06 + ArtUnc_4: 6.41364138e-06 + ArtUnc_5: -1.85298859e-06 + ArtUnc_6: 1.90294585e-07 ArtUnc_7: 0.0 LEP: 0.0 - JES: 4.539e-05 + JES: 4.53900000e-05 JER: 8.01e-06 - BG: 1.3350000000000001e-05 - Btag: 1.0680000000000001e-05 + BG: 1.33500000e-05 + Btag: 1.06800000e-05 PU: 0.0 - TopScale: 4.2720000000000004e-05 - TopMatch: 2.9370000000000005e-05 - Hadronization: 0.00014685 - TopMass: 2.6700000000000003e-06 + TopScale: 4.27200000e-05 + TopMatch: 2.93700000e-05 + Hadronization: 1.46850000e-04 + TopMass: 2.67000000e-06 PDF: 0.0 - stat: 0 - ArtUnc_1: -5.683862002505464e-07 - ArtUnc_2: 7.4940730357691776e-06 - ArtUnc_3: 2.530146962938858e-05 - ArtUnc_4: 6.818845413103451e-06 - ArtUnc_5: -2.38659930099386e-06 - ArtUnc_6: 2.441016286903003e-07 + ArtUnc_1: -5.68386200e-07 + ArtUnc_2: 7.49407304e-06 + ArtUnc_3: 2.53014696e-05 + ArtUnc_4: 6.81884541e-06 + ArtUnc_5: -2.38659930e-06 + ArtUnc_6: 2.44101629e-07 ArtUnc_7: 0.0 - LEP: 1.1700000000000002e-06 - JES: 2.6909999999999998e-05 + LEP: 1.17000000e-06 + JES: 2.69100000e-05 JER: 5.85e-06 - BG: 1.9889999999999998e-05 + BG: 1.98900000e-05 Btag: 8.19e-06 - PU: 1.1700000000000002e-06 + PU: 1.17000000e-06 TopScale: 3.51e-05 - TopMatch: 2.457e-05 - Hadronization: 5.6160000000000004e-05 - TopMass: 3.276e-05 + TopMatch: 2.45700000e-05 + Hadronization: 5.61600000e-05 + TopMass: 3.27600000e-05 PDF: 0.0 - stat: 0 - ArtUnc_1: 1.5836986765994103e-06 - ArtUnc_2: -4.2340989321177215e-07 - ArtUnc_3: -1.504590990602275e-06 - ArtUnc_4: -1.0737819143128676e-05 - ArtUnc_5: -4.138952641675538e-06 - ArtUnc_6: 3.443904678513308e-07 + ArtUnc_1: 1.58369868e-06 + ArtUnc_2: -4.23409893e-07 + ArtUnc_3: -1.50459099e-06 + ArtUnc_4: -1.07378191e-05 + ArtUnc_5: -4.13895264e-06 + ArtUnc_6: 3.44390468e-07 ArtUnc_7: 0.0 LEP: 9.32e-07 - JES: 8.854e-06 + JES: 8.85400000e-06 JER: 4.66e-07 BG: 9.32e-07 - Btag: 4.194e-06 + Btag: 4.19400000e-06 PU: 9.32e-07 TopScale: 6.99e-06 - TopMatch: 1.165e-05 + TopMatch: 1.16500000e-05 Hadronization: 2.33e-06 - TopMass: 1.0252e-05 + TopMass: 1.02520000e-05 PDF: 4.66e-07 - stat: 0 - ArtUnc_1: 6.469783136848223e-08 - ArtUnc_2: -2.743279913058013e-07 - ArtUnc_3: 9.491133250688172e-08 - ArtUnc_4: -7.001538101783062e-07 - ArtUnc_5: 3.1052169598059207e-06 - ArtUnc_6: 1.0172415600359493e-06 + ArtUnc_1: 6.46978314e-08 + ArtUnc_2: -2.74327991e-07 + ArtUnc_3: 9.49113325e-08 + ArtUnc_4: -7.00153810e-07 + ArtUnc_5: 3.10521696e-06 + ArtUnc_6: 1.01724156e-06 ArtUnc_7: 0.0 - LEP: 2.2800000000000003e-07 - JES: 4.218000000000001e-06 + LEP: 2.28000000e-07 + JES: 4.21800000e-06 JER: 1.14e-06 - BG: 9.120000000000001e-07 - Btag: 1.3679999999999999e-06 - PU: 4.5600000000000006e-07 - TopScale: 5.358e-06 - TopMatch: 2.6219999999999996e-06 + BG: 9.12000000e-07 + Btag: 1.36800000e-06 + PU: 4.56000000e-07 + TopScale: 5.35800000e-06 + TopMatch: 2.62200000e-06 Hadronization: 7.41e-06 TopMass: 2.28e-06 - PDF: 1.1400000000000001e-07 + PDF: 1.14000000e-07 - stat: 0 - ArtUnc_1: 2.9886316316346485e-08 - ArtUnc_2: 3.586815646695955e-08 - ArtUnc_3: 7.631522039403438e-08 - ArtUnc_4: -1.3315308123463623e-08 - ArtUnc_5: 4.79889512455555e-07 - ArtUnc_6: -7.688688162447231e-07 + ArtUnc_1: 2.98863163e-08 + ArtUnc_2: 3.58681565e-08 + ArtUnc_3: 7.63152204e-08 + ArtUnc_4: -1.33153081e-08 + ArtUnc_5: 4.79889512e-07 + ArtUnc_6: -7.68868816e-07 ArtUnc_7: 0.0 - LEP: 4.4000000000000004e-08 + LEP: 4.40000000e-08 JES: 7.15e-07 JER: 2.42e-07 - BG: 8.800000000000001e-08 + BG: 8.80000000e-08 Btag: 1.98e-07 PU: 6.6e-08 - TopScale: 5.170000000000001e-07 - TopMatch: 4.0700000000000003e-07 + TopScale: 5.17000000e-07 + TopMatch: 4.07000000e-07 Hadronization: 2.31e-07 TopMass: 2.2e-07 PDF: 6.6e-08 diff --git a/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_8TEV_LJ_DIF/uncertainties_dSig_dpTt_norm.yaml b/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_8TEV_LJ_DIF/uncertainties_dSig_dpTt_norm.yaml index 040de7fd14..7addc21069 100644 --- a/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_8TEV_LJ_DIF/uncertainties_dSig_dpTt_norm.yaml +++ b/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_8TEV_LJ_DIF/uncertainties_dSig_dpTt_norm.yaml @@ -81,162 +81,162 @@ definitions: type: CORR bins: - stat: 0 - ArtUnc_1: -3.727486332856683e-05 - ArtUnc_2: 2.9251079153239327e-05 - ArtUnc_3: -1.8247090568402194e-05 - ArtUnc_4: 6.361152568520358e-06 - ArtUnc_5: -2.3074645056963037e-06 - ArtUnc_6: 1.4149993872655876e-06 + ArtUnc_1: -3.72748633e-05 + ArtUnc_2: 2.92510792e-05 + ArtUnc_3: -1.82470906e-05 + ArtUnc_4: 6.36115257e-06 + ArtUnc_5: -2.30746451e-06 + ArtUnc_6: 1.41499939e-06 ArtUnc_7: 0.0 - ArtUnc_8: -4.671513397077992e-07 + ArtUnc_8: -4.67151340e-07 LEP: 4.14e-06 - JES: 9.935999999999998e-05 + JES: 9.93600000e-05 JER: 4.14e-06 BG: 2.07e-05 - Btag: 3.726e-05 + Btag: 3.72600000e-05 PU: 4.14e-06 - TopScale: 6.209999999999999e-05 - TopMatch: 2.8979999999999997e-05 - Hadronization: 7.452e-05 - TopMass: 1.656e-05 + TopScale: 6.21000000e-05 + TopMatch: 2.89800000e-05 + Hadronization: 7.45200000e-05 + TopMass: 1.65600000e-05 PDF: 0.0 - stat: 0 - ArtUnc_1: 8.40550251877203e-05 - ArtUnc_2: -2.882433162009405e-07 - ArtUnc_3: -8.221614461659393e-06 - ArtUnc_4: 4.296599926928324e-06 - ArtUnc_5: -1.6090884671799458e-06 - ArtUnc_6: 9.649630337955898e-07 + ArtUnc_1: 8.40550252e-05 + ArtUnc_2: -2.88243316e-07 + ArtUnc_3: -8.22161446e-06 + ArtUnc_4: 4.29659993e-06 + ArtUnc_5: -1.60908847e-06 + ArtUnc_6: 9.64963034e-07 ArtUnc_7: 0.0 - ArtUnc_8: -3.1065512988805885e-07 + ArtUnc_8: -3.10655130e-07 LEP: 6.69e-06 - JES: 1.338e-05 - JER: 1.338e-05 - BG: 3.345e-05 - Btag: 1.338e-05 + JES: 1.33800000e-05 + JER: 1.33800000e-05 + BG: 3.34500000e-05 + Btag: 1.33800000e-05 PU: 6.69e-06 - TopScale: 8.027999999999998e-05 - TopMatch: 5.352e-05 + TopScale: 8.02800000e-05 + TopMatch: 5.35200000e-05 Hadronization: 0.0 - TopMass: 2.676e-05 + TopMass: 2.67600000e-05 PDF: 0.0 - stat: 0 - ArtUnc_1: -2.3223064974424977e-05 - ArtUnc_2: -4.842901292942469e-05 - ArtUnc_3: -1.4952116885850452e-06 - ArtUnc_4: 4.9619524127647656e-06 - ArtUnc_5: -1.9742398662039686e-06 - ArtUnc_6: 1.1905616671761293e-06 + ArtUnc_1: -2.32230650e-05 + ArtUnc_2: -4.84290129e-05 + ArtUnc_3: -1.49521169e-06 + ArtUnc_4: 4.96195241e-06 + ArtUnc_5: -1.97423987e-06 + ArtUnc_6: 1.19056167e-06 ArtUnc_7: 0.0 - ArtUnc_8: -3.908649392831986e-07 + ArtUnc_8: -3.90864939e-07 LEP: 0.0 - JES: 4.464e-05 + JES: 4.46400000e-05 JER: 4.96e-06 - BG: 1.984e-05 - Btag: 1.488e-05 + BG: 1.98400000e-05 + Btag: 1.48800000e-05 PU: 0.0 - TopScale: 6.944e-05 - TopMatch: 7.936e-05 + TopScale: 6.94400000e-05 + TopMatch: 7.93600000e-05 Hadronization: 7.44e-05 - TopMass: 5.4560000000000006e-05 + TopMass: 5.45600000e-05 PDF: 0.0 - stat: 0 - ArtUnc_1: -7.066863722586342e-07 - ArtUnc_2: 1.4110707535602481e-05 - ArtUnc_3: 3.247755301007909e-05 - ArtUnc_4: 3.6032351660527235e-06 - ArtUnc_5: -1.998115541669428e-06 - ArtUnc_6: 1.2152690043355693e-06 + ArtUnc_1: -7.06686372e-07 + ArtUnc_2: 1.41107075e-05 + ArtUnc_3: 3.24775530e-05 + ArtUnc_4: 3.60323517e-06 + ArtUnc_5: -1.99811554e-06 + ArtUnc_6: 1.21526900e-06 ArtUnc_7: 0.0 - ArtUnc_8: -3.859179449364433e-07 - LEP: 2.6600000000000004e-06 - JES: 3.990000000000001e-05 - JER: 5.320000000000001e-06 + ArtUnc_8: -3.85917945e-07 + LEP: 2.66000000e-06 + JES: 3.99000000e-05 + JER: 5.32000000e-06 BG: 7.98e-06 - Btag: 1.596e-05 - PU: 2.6600000000000004e-06 - TopScale: 4.788000000000001e-05 - TopMatch: 3.724e-05 - Hadronization: 4.788000000000001e-05 - TopMass: 2.1280000000000003e-05 + Btag: 1.59600000e-05 + PU: 2.66000000e-06 + TopScale: 4.78800000e-05 + TopMatch: 3.72400000e-05 + Hadronization: 4.78800000e-05 + TopMass: 2.12800000e-05 PDF: 0.0 - stat: 0 - ArtUnc_1: 3.943412638895566e-07 - ArtUnc_2: -2.823409233982968e-07 - ArtUnc_3: -2.491174966096364e-06 - ArtUnc_4: -1.667233896128916e-05 - ArtUnc_5: -1.8278327753099945e-06 - ArtUnc_6: 1.475844011418074e-06 + ArtUnc_1: 3.94341264e-07 + ArtUnc_2: -2.82340923e-07 + ArtUnc_3: -2.49117497e-06 + ArtUnc_4: -1.66723390e-05 + ArtUnc_5: -1.82783278e-06 + ArtUnc_6: 1.47584401e-06 ArtUnc_7: 0.0 - ArtUnc_8: -5.285252988288685e-07 + ArtUnc_8: -5.28525299e-07 LEP: 2.12e-06 - JES: 1.272e-05 + JES: 1.27200000e-05 JER: 5.3e-06 BG: 5.3e-06 Btag: 1.06e-05 PU: 2.12e-06 - TopScale: 2.3320000000000004e-05 + TopScale: 2.33200000e-05 TopMatch: 8.48e-06 Hadronization: 3.18e-06 - TopMass: 1.3780000000000002e-05 + TopMass: 1.37800000e-05 PDF: 0.0 - stat: 0 - ArtUnc_1: 2.9979343411875754e-07 - ArtUnc_2: -1.0660537143690202e-07 - ArtUnc_3: 2.2581193509773277e-07 - ArtUnc_4: 9.183487704084401e-07 - ArtUnc_5: 8.626782860561277e-06 - ArtUnc_6: 1.568063868649318e-06 + ArtUnc_1: 2.99793434e-07 + ArtUnc_2: -1.06605371e-07 + ArtUnc_3: 2.25811935e-07 + ArtUnc_4: 9.18348770e-07 + ArtUnc_5: 8.62678286e-06 + ArtUnc_6: 1.56806387e-06 ArtUnc_7: 0.0 - ArtUnc_8: -3.326363317411657e-07 + ArtUnc_8: -3.32636332e-07 LEP: 7.98e-07 - JES: 4.389000000000001e-06 - JER: 3.192e-06 - BG: 1.596e-06 - Btag: 4.788e-06 - PU: 1.197e-06 - TopScale: 1.6758e-05 - TopMatch: 5.5859999999999995e-06 - Hadronization: 1.0374e-05 - TopMass: 4.788e-06 + JES: 4.38900000e-06 + JER: 3.19200000e-06 + BG: 1.59600000e-06 + Btag: 4.78800000e-06 + PU: 1.19700000e-06 + TopScale: 1.67580000e-05 + TopMatch: 5.58600000e-06 + Hadronization: 1.03740000e-05 + TopMass: 4.78800000e-06 PDF: 0.0 - stat: 0 - ArtUnc_1: 2.6629520562952613e-07 - ArtUnc_2: 2.0681175105003188e-08 - ArtUnc_3: 2.0392290653549256e-07 - ArtUnc_4: 2.1384898088772396e-07 - ArtUnc_5: 4.933162977164165e-07 - ArtUnc_6: -3.148839363292506e-06 + ArtUnc_1: 2.66295206e-07 + ArtUnc_2: 2.06811751e-08 + ArtUnc_3: 2.03922907e-07 + ArtUnc_4: 2.13848981e-07 + ArtUnc_5: 4.93316298e-07 + ArtUnc_6: -3.14883936e-06 ArtUnc_7: 0.0 - ArtUnc_8: -1.6347685569150892e-06 - LEP: 3.899999999999999e-07 + ArtUnc_8: -1.63476856e-06 + LEP: 3.90000000e-07 JES: 3.51e-06 - JER: 3.899999999999999e-07 - BG: 6.499999999999999e-07 - Btag: 1.9499999999999995e-06 + JER: 3.90000000e-07 + BG: 6.50000000e-07 + Btag: 1.95000000e-06 PU: 5.2e-07 - TopScale: 6.629999999999998e-06 + TopScale: 6.63000000e-06 TopMatch: 2.08e-06 Hadronization: 5.33e-06 - TopMass: 1.9499999999999995e-06 + TopMass: 1.95000000e-06 PDF: 0.0 - stat: 0 - ArtUnc_1: 5.8657334369507166e-08 - ArtUnc_2: -3.752925755472416e-08 - ArtUnc_3: -2.3493119791544966e-08 - ArtUnc_4: -3.2890478884738366e-07 - ArtUnc_5: -2.5955656173664936e-07 - ArtUnc_6: -1.2332466791256998e-06 + ArtUnc_1: 5.86573344e-08 + ArtUnc_2: -3.75292576e-08 + ArtUnc_3: -2.34931198e-08 + ArtUnc_4: -3.28904789e-07 + ArtUnc_5: -2.59556562e-07 + ArtUnc_6: -1.23324668e-06 ArtUnc_7: 0.0 - ArtUnc_8: 1.5819018190323897e-06 - LEP: 1.1099999999999999e-07 - JES: 1.554e-06 + ArtUnc_8: 1.58190182e-06 + LEP: 1.11000000e-07 + JES: 1.55400000e-06 JER: 2.59e-07 BG: 3.33e-07 Btag: 6.29e-07 PU: 2.59e-07 - TopScale: 2.5530000000000004e-06 + TopScale: 2.55300000e-06 TopMatch: 9.99e-07 - Hadronization: 1.147e-06 - TopMass: 4.4399999999999995e-07 - PDF: 1.1099999999999999e-07 + Hadronization: 1.14700000e-06 + TopMass: 4.44000000e-07 + PDF: 1.11000000e-07 diff --git a/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_8TEV_LJ_DIF/uncertainties_dSig_dyt_norm.yaml b/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_8TEV_LJ_DIF/uncertainties_dSig_dyt_norm.yaml index 86904d6aef..b0164da625 100644 --- a/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_8TEV_LJ_DIF/uncertainties_dSig_dyt_norm.yaml +++ b/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_8TEV_LJ_DIF/uncertainties_dSig_dyt_norm.yaml @@ -89,38 +89,38 @@ definitions: type: CORR bins: - stat: 0 - ArtUnc_1: 1.4188477011049096e-05 - ArtUnc_2: 2.6171080392768394e-05 - ArtUnc_3: 0.00014188916268979162 - ArtUnc_4: 0.0012730024885672197 - ArtUnc_5: 6.694707610505093e-05 - ArtUnc_6: -0.0003331232781247686 - ArtUnc_7: 0.0008219555492416648 - ArtUnc_8: 0.0002399217410825539 - ArtUnc_9: 0.0009477193045895226 - ArtUnc_10: 5.145497829685526e-05 - LEP: 0.0001472 - JES: 0.0008832 - JER: 0.0005152 + ArtUnc_1: 1.41884770e-05 + ArtUnc_2: 2.61710804e-05 + ArtUnc_3: 1.41889163e-04 + ArtUnc_4: 1.27300249e-03 + ArtUnc_5: 6.69470761e-05 + ArtUnc_6: -3.33123278e-04 + ArtUnc_7: 8.21955549e-04 + ArtUnc_8: 2.39921741e-04 + ArtUnc_9: 9.47719305e-04 + ArtUnc_10: 5.14549783e-05 + LEP: 1.47200000e-04 + JES: 8.83200000e-04 + JER: 5.15200000e-04 BG: 0.000368 - Btag: 0.0006624000000000001 - PU: 0.0001472 + Btag: 6.62400000e-04 + PU: 1.47200000e-04 TopScale: 0.000368 - TopMatch: 0.0019136000000000001 - Hadronization: 0.0013984 - TopMass: 0.0002208 - PDF: 0.0005152 + TopMatch: 1.91360000e-03 + Hadronization: 1.39840000e-03 + TopMass: 2.20800000e-04 + PDF: 5.15200000e-04 - stat: 0 - ArtUnc_1: 5.517051812745032e-06 - ArtUnc_2: 4.3582683310370936e-05 - ArtUnc_3: -0.0006460814274410478 - ArtUnc_4: -4.115298081371092e-05 - ArtUnc_5: -0.0006231483037237607 - ArtUnc_6: -3.2517813856284972e-06 - ArtUnc_7: -0.001847245399893195 - ArtUnc_8: 0.001265344204248914 - ArtUnc_9: 0.0010815923111381848 - ArtUnc_10: 1.9429371027878434e-05 + ArtUnc_1: 5.51705181e-06 + ArtUnc_2: 4.35826833e-05 + ArtUnc_3: -6.46081427e-04 + ArtUnc_4: -4.11529808e-05 + ArtUnc_5: -6.23148304e-04 + ArtUnc_6: -3.25178139e-06 + ArtUnc_7: -1.84724540e-03 + ArtUnc_8: 1.26534420e-03 + ArtUnc_9: 1.08159231e-03 + ArtUnc_10: 1.94293710e-05 LEP: 0.00035 JES: 0.001225 JER: 0.000525 @@ -133,16 +133,16 @@ bins: TopMass: 0.0007 PDF: 0.000175 - stat: 0 - ArtUnc_1: 5.699128410224744e-06 - ArtUnc_2: -0.0007539798030334915 - ArtUnc_3: -0.0008653725807127809 - ArtUnc_4: 0.0002244066402778135 - ArtUnc_5: -0.0012721039786674603 - ArtUnc_6: 0.002680072923986913 - ArtUnc_7: -2.325771670481938e-05 - ArtUnc_8: 0.0001405091272878291 - ArtUnc_9: -0.0013646031474794915 - ArtUnc_10: 0.0008238865432357172 + ArtUnc_1: 5.69912841e-06 + ArtUnc_2: -7.53979803e-04 + ArtUnc_3: -8.65372581e-04 + ArtUnc_4: 2.24406640e-04 + ArtUnc_5: -1.27210398e-03 + ArtUnc_6: 2.68007292e-03 + ArtUnc_7: -2.32577167e-05 + ArtUnc_8: 1.40509127e-04 + ArtUnc_9: -1.36460315e-03 + ArtUnc_10: 8.23886543e-04 LEP: 0.000261 JES: 0.000783 JER: 0.000783 @@ -151,20 +151,20 @@ bins: PU: 0.0 TopScale: 0.006264 TopMatch: 0.003132 - Hadronization: 0.0028710000000000003 + Hadronization: 2.87100000e-03 TopMass: 0.001044 PDF: 0.0 - stat: 0 - ArtUnc_1: 5.69745218123564e-06 - ArtUnc_2: -0.0006812940785951013 - ArtUnc_3: 0.0026757447124280205 - ArtUnc_4: 5.739373744491763e-05 - ArtUnc_5: 0.0022984617235035803 - ArtUnc_6: 0.00013490714208295348 - ArtUnc_7: -0.0005974039669968189 - ArtUnc_8: 0.00041045676964193554 - ArtUnc_9: -0.0010568956328334761 - ArtUnc_10: 0.0004993808573609149 + ArtUnc_1: 5.69745218e-06 + ArtUnc_2: -6.81294079e-04 + ArtUnc_3: 2.67574471e-03 + ArtUnc_4: 5.73937374e-05 + ArtUnc_5: 2.29846172e-03 + ArtUnc_6: 1.34907142e-04 + ArtUnc_7: -5.97403967e-04 + ArtUnc_8: 4.10456770e-04 + ArtUnc_9: -1.05689563e-03 + ArtUnc_10: 4.99380857e-04 LEP: 0.0003 JES: 0.0009 JER: 0.0012 @@ -177,16 +177,16 @@ bins: TopMass: 0.0018 PDF: 0.0 - stat: 0 - ArtUnc_1: 5.7004778610052354e-06 - ArtUnc_2: 0.003689131539127573 - ArtUnc_3: -0.0004885440463598347 - ArtUnc_4: 7.163234028197233e-05 - ArtUnc_5: -0.000307186158933849 - ArtUnc_6: -0.0009917015874898586 - ArtUnc_7: -0.0002520429983250953 - ArtUnc_8: -1.674950346082894e-06 - ArtUnc_9: -0.001394866992556426 - ArtUnc_10: 0.00019862460547790257 + ArtUnc_1: 5.70047786e-06 + ArtUnc_2: 3.68913154e-03 + ArtUnc_3: -4.88544046e-04 + ArtUnc_4: 7.16323403e-05 + ArtUnc_5: -3.07186159e-04 + ArtUnc_6: -9.91701587e-04 + ArtUnc_7: -2.52042998e-04 + ArtUnc_8: -1.67495035e-06 + ArtUnc_9: -1.39486699e-03 + ArtUnc_10: 1.98624605e-04 LEP: 0.000666 JES: 0.001998 JER: 0.000666 @@ -199,38 +199,38 @@ bins: TopMass: 0.001665 PDF: 0.000333 - stat: 0 - ArtUnc_1: 5.698757181256402e-06 - ArtUnc_2: -0.0020503424721307 - ArtUnc_3: -0.002628556648424143 - ArtUnc_4: 1.0085193228503743e-05 - ArtUnc_5: 0.0010297871833434226 - ArtUnc_6: -0.0014223387383270796 - ArtUnc_7: -0.00017026774103008895 - ArtUnc_8: -5.292221922624902e-05 - ArtUnc_9: -0.0011461316177639918 - ArtUnc_10: -0.0006839099548628593 - LEP: 0.0006620000000000002 + ArtUnc_1: 5.69875718e-06 + ArtUnc_2: -2.05034247e-03 + ArtUnc_3: -2.62855665e-03 + ArtUnc_4: 1.00851932e-05 + ArtUnc_5: 1.02978718e-03 + ArtUnc_6: -1.42233874e-03 + ArtUnc_7: -1.70267741e-04 + ArtUnc_8: -5.29222192e-05 + ArtUnc_9: -1.14613162e-03 + ArtUnc_10: -6.83909955e-04 + LEP: 6.62000000e-04 JES: 0.002317 - JER: 0.0006620000000000002 + JER: 6.62000000e-04 BG: 0.000993 - Btag: 0.0026480000000000006 + Btag: 2.64800000e-03 PU: 0.0 - TopScale: 0.0016550000000000002 + TopScale: 1.65500000e-03 TopMatch: 0.002317 - Hadronization: 0.0016550000000000002 + Hadronization: 1.65500000e-03 TopMass: 0.002317 - PDF: 0.0003310000000000001 + PDF: 3.31000000e-04 - stat: 0 - ArtUnc_1: 5.6988073963659e-06 - ArtUnc_2: -0.0011861595719749342 - ArtUnc_3: 0.0019739692983289803 - ArtUnc_4: -6.817487653116864e-05 - ArtUnc_5: -0.002504305783659338 - ArtUnc_6: -0.001060431264930936 - ArtUnc_7: -0.00028400834960132443 - ArtUnc_8: -0.0005042099731818688 - ArtUnc_9: -0.0006412214733969265 - ArtUnc_10: -0.0010907222586496264 + ArtUnc_1: 5.69880740e-06 + ArtUnc_2: -1.18615957e-03 + ArtUnc_3: 1.97396930e-03 + ArtUnc_4: -6.81748765e-05 + ArtUnc_5: -2.50430578e-03 + ArtUnc_6: -1.06043126e-03 + ArtUnc_7: -2.84008350e-04 + ArtUnc_8: -5.04209973e-04 + ArtUnc_9: -6.41221473e-04 + ArtUnc_10: -1.09072226e-03 LEP: 0.0003 JES: 0.0015 JER: 0.0012 @@ -243,16 +243,16 @@ bins: TopMass: 0.0027 PDF: 0.0 - stat: 0 - ArtUnc_1: 5.6971350978950205e-06 - ArtUnc_2: 0.0009492885012596237 - ArtUnc_3: -1.4180189829562322e-05 - ArtUnc_4: -0.0002770999950406006 - ArtUnc_5: 0.0008769243987595158 - ArtUnc_6: 0.0016229797495193083 - ArtUnc_7: 7.305712861612185e-05 - ArtUnc_8: -6.963020934595439e-05 - ArtUnc_9: 0.00018303608684744948 - ArtUnc_10: -0.0026067385391173588 + ArtUnc_1: 5.69713510e-06 + ArtUnc_2: 9.49288501e-04 + ArtUnc_3: -1.41801898e-05 + ArtUnc_4: -2.77099995e-04 + ArtUnc_5: 8.76924399e-04 + ArtUnc_6: 1.62297975e-03 + ArtUnc_7: 7.30571286e-05 + ArtUnc_8: -6.96302093e-05 + ArtUnc_9: 1.83036087e-04 + ArtUnc_10: -2.60673854e-03 LEP: 0.000247 JES: 0.000494 JER: 0.000494 @@ -265,46 +265,46 @@ bins: TopMass: 0.001482 PDF: 0.0 - stat: 0 - ArtUnc_1: 5.520196849414722e-06 - ArtUnc_2: 0.0001337977506831524 - ArtUnc_3: -0.0003006714631212865 - ArtUnc_4: 6.837170971018259e-05 - ArtUnc_5: 0.0005086701499294546 - ArtUnc_6: 0.00036731083231537464 - ArtUnc_7: -0.0009538278485184886 - ArtUnc_8: -0.0022182505556967453 - ArtUnc_9: 0.0006467072083052955 - ArtUnc_10: 0.0005706783640693383 - LEP: 0.00037600000000000003 - JES: 0.0007520000000000001 + ArtUnc_1: 5.52019685e-06 + ArtUnc_2: 1.33797751e-04 + ArtUnc_3: -3.00671463e-04 + ArtUnc_4: 6.83717097e-05 + ArtUnc_5: 5.08670150e-04 + ArtUnc_6: 3.67310832e-04 + ArtUnc_7: -9.53827849e-04 + ArtUnc_8: -2.21825056e-03 + ArtUnc_9: 6.46707208e-04 + ArtUnc_10: 5.70678364e-04 + LEP: 3.76000000e-04 + JES: 7.52000000e-04 JER: 0.00094 - BG: 0.00018800000000000002 + BG: 1.88000000e-04 Btag: 0.001128 - PU: 0.00018800000000000002 + PU: 1.88000000e-04 TopScale: 0.001316 - TopMatch: 0.0016920000000000001 + TopMatch: 1.69200000e-03 Hadronization: 0.000564 TopMass: 0.001128 - PDF: 0.00018800000000000002 + PDF: 1.88000000e-04 - stat: 0 - ArtUnc_1: 1.4177091844784163e-05 - ArtUnc_2: -8.221969309422323e-05 - ArtUnc_3: -3.569579897528726e-05 - ArtUnc_4: -0.0012920060959336762 - ArtUnc_5: -7.104323170582284e-05 - ArtUnc_6: -0.0001954059378342299 - ArtUnc_7: 0.0007716653468936514 - ArtUnc_8: 0.0001623729225930966 - ArtUnc_9: 0.000557883525003807 - ArtUnc_10: 0.000867864026083218 - LEP: 0.0001554 - JES: 0.0011655 - JER: 0.0003885 - BG: 0.0004662 - Btag: 0.0006993 + ArtUnc_1: 1.41770918e-05 + ArtUnc_2: -8.22196931e-05 + ArtUnc_3: -3.56957990e-05 + ArtUnc_4: -1.29200610e-03 + ArtUnc_5: -7.10432317e-05 + ArtUnc_6: -1.95405938e-04 + ArtUnc_7: 7.71665347e-04 + ArtUnc_8: 1.62372923e-04 + ArtUnc_9: 5.57883525e-04 + ArtUnc_10: 8.67864026e-04 + LEP: 1.55400000e-04 + JES: 1.16550000e-03 + JER: 3.88500000e-04 + BG: 4.66200000e-04 + Btag: 6.99300000e-04 PU: 7.77e-05 - TopScale: 0.0010101 - TopMatch: 0.0010101 - Hadronization: 0.0013986 - TopMass: 0.0005439 - PDF: 0.0005439 + TopScale: 1.01010000e-03 + TopMatch: 1.01010000e-03 + Hadronization: 1.39860000e-03 + TopMass: 5.43900000e-04 + PDF: 5.43900000e-04 diff --git a/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_8TEV_LJ_DIF/uncertainties_dSig_dyttBar_norm.yaml b/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_8TEV_LJ_DIF/uncertainties_dSig_dyttBar_norm.yaml index 4ff0d8529d..47df1ba025 100644 --- a/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_8TEV_LJ_DIF/uncertainties_dSig_dyttBar_norm.yaml +++ b/nnpdf_data/nnpdf_data/commondata/CMS_TTBAR_8TEV_LJ_DIF/uncertainties_dSig_dyttBar_norm.yaml @@ -89,170 +89,170 @@ definitions: type: CORR bins: - stat: 0 - ArtUnc_1: 1.2733064761574074e-05 - ArtUnc_2: 0.001542260069558157 - ArtUnc_3: 1.9119788477594598e-05 - ArtUnc_4: 0.00017545686733472644 - ArtUnc_5: 0.0010294512705265695 - ArtUnc_6: -0.00018013151671195685 - ArtUnc_7: -0.0009721104459771376 - ArtUnc_8: -0.00010478340624733983 - ArtUnc_9: 0.00019599222122196677 - ArtUnc_10: -0.00015333803969663662 - LEP: 0.0002428 - JES: 0.0004248999999999999 - JER: 0.0003035 - BG: 0.0003035 - Btag: 0.0007890999999999999 - PU: 0.0002428 - TopScale: 0.0007283999999999999 - TopMatch: 0.0007890999999999999 + ArtUnc_1: 1.27330648e-05 + ArtUnc_2: 1.54226007e-03 + ArtUnc_3: 1.91197885e-05 + ArtUnc_4: 1.75456867e-04 + ArtUnc_5: 1.02945127e-03 + ArtUnc_6: -1.80131517e-04 + ArtUnc_7: -9.72110446e-04 + ArtUnc_8: -1.04783406e-04 + ArtUnc_9: 1.95992221e-04 + ArtUnc_10: -1.53338040e-04 + LEP: 2.42800000e-04 + JES: 4.24900000e-04 + JER: 3.03500000e-04 + BG: 3.03500000e-04 + Btag: 7.89100000e-04 + PU: 2.42800000e-04 + TopScale: 7.28400000e-04 + TopMatch: 7.89100000e-04 Hadronization: 6.07e-05 - TopMass: 0.0006677 - PDF: 0.0005463 + TopMass: 6.67700000e-04 + PDF: 5.46300000e-04 - stat: 0 - ArtUnc_1: 4.191259919877449e-06 - ArtUnc_2: -4.618995488358831e-06 - ArtUnc_3: 0.00010413544609612212 - ArtUnc_4: -0.0010336743850029844 - ArtUnc_5: -0.0026182256861051576 - ArtUnc_6: -0.0023633046100344146 - ArtUnc_7: -0.001405322749341066 - ArtUnc_8: -0.00015062100192500888 - ArtUnc_9: -0.0008421134423775114 - ArtUnc_10: -0.0005035334982063892 - LEP: 0.00044000000000000007 + ArtUnc_1: 4.19125992e-06 + ArtUnc_2: -4.61899549e-06 + ArtUnc_3: 1.04135446e-04 + ArtUnc_4: -1.03367439e-03 + ArtUnc_5: -2.61822569e-03 + ArtUnc_6: -2.36330461e-03 + ArtUnc_7: -1.40532275e-03 + ArtUnc_8: -1.50621002e-04 + ArtUnc_9: -8.42113442e-04 + ArtUnc_10: -5.03533498e-04 + LEP: 4.40000000e-04 JES: 0.00132 - JER: 0.00022000000000000003 + JER: 2.20000000e-04 BG: 0.00066 Btag: 0.00132 - PU: 0.00022000000000000003 - TopScale: 0.0008800000000000001 - TopMatch: 0.0024200000000000003 - Hadronization: 0.0037400000000000003 - TopMass: 0.0017600000000000003 - PDF: 0.00022000000000000003 + PU: 2.20000000e-04 + TopScale: 8.80000000e-04 + TopMatch: 2.42000000e-03 + Hadronization: 3.74000000e-03 + TopMass: 1.76000000e-03 + PDF: 2.20000000e-04 - stat: 0 - ArtUnc_1: 3.153314945012184e-06 - ArtUnc_2: 0.00012070884300045583 - ArtUnc_3: -0.0018944252545218373 - ArtUnc_4: -0.0012620706358322214 - ArtUnc_5: -0.00015567576846951827 - ArtUnc_6: 2.3244440783897364e-05 - ArtUnc_7: 0.0025012136213238053 - ArtUnc_8: -0.0015206433212051533 - ArtUnc_9: -0.003872528880777916 - ArtUnc_10: 0.0026803114046374276 + ArtUnc_1: 3.15331495e-06 + ArtUnc_2: 1.20708843e-04 + ArtUnc_3: -1.89442525e-03 + ArtUnc_4: -1.26207064e-03 + ArtUnc_5: -1.55675768e-04 + ArtUnc_6: 2.32444408e-05 + ArtUnc_7: 2.50121362e-03 + ArtUnc_8: -1.52064332e-03 + ArtUnc_9: -3.87252888e-03 + ArtUnc_10: 2.68031140e-03 LEP: 0.0 JES: 0.001308 JER: 0.000654 BG: 0.000654 Btag: 0.000327 PU: 0.000327 - TopScale: 0.006540000000000001 + TopScale: 6.54000000e-03 TopMatch: 0.000654 - Hadronization: 0.0049050000000000005 - TopMass: 0.0042510000000000004 + Hadronization: 4.90500000e-03 + TopMass: 4.25100000e-03 PDF: 0.000327 - stat: 0 - ArtUnc_1: 3.152253866690535e-06 - ArtUnc_2: 4.793118809785956e-06 - ArtUnc_3: -0.0006430766521554771 - ArtUnc_4: 0.004534166760172301 - ArtUnc_5: -0.0008257489050681757 - ArtUnc_6: -0.0005955755625793483 - ArtUnc_7: 0.0017810193734395803 - ArtUnc_8: -0.0009278553099829891 - ArtUnc_9: 0.0031387454047782106 - ArtUnc_10: 0.002080026825283469 + ArtUnc_1: 3.15225387e-06 + ArtUnc_2: 4.79311881e-06 + ArtUnc_3: -6.43076652e-04 + ArtUnc_4: 4.53416676e-03 + ArtUnc_5: -8.25748905e-04 + ArtUnc_6: -5.95575563e-04 + ArtUnc_7: 1.78101937e-03 + ArtUnc_8: -9.27855310e-04 + ArtUnc_9: 3.13874540e-03 + ArtUnc_10: 2.08002683e-03 LEP: 0.000746 JES: 0.001492 JER: 0.000373 BG: 0.000373 - Btag: 0.0018650000000000001 + Btag: 1.86500000e-03 PU: 0.000373 - TopScale: 0.0037300000000000002 + TopScale: 3.73000000e-03 TopMatch: 0.003357 - Hadronization: 0.0018650000000000001 + Hadronization: 1.86500000e-03 TopMass: 0.001119 PDF: 0.000373 - stat: 0 - ArtUnc_1: 3.1523338288264684e-06 - ArtUnc_2: 3.950132280960023e-05 - ArtUnc_3: 0.006005117191817795 - ArtUnc_4: -0.0009119800060213611 - ArtUnc_5: -0.00032629954389699824 - ArtUnc_6: 0.00011028355813961226 - ArtUnc_7: 0.002449023802152561 - ArtUnc_8: -0.0007632222846588109 - ArtUnc_9: 8.867431145395418e-05 - ArtUnc_10: -0.0017828535725276443 + ArtUnc_1: 3.15233383e-06 + ArtUnc_2: 3.95013228e-05 + ArtUnc_3: 6.00511719e-03 + ArtUnc_4: -9.11980006e-04 + ArtUnc_5: -3.26299544e-04 + ArtUnc_6: 1.10283558e-04 + ArtUnc_7: 2.44902380e-03 + ArtUnc_8: -7.63222285e-04 + ArtUnc_9: 8.86743115e-05 + ArtUnc_10: -1.78285357e-03 LEP: 0.000854 JES: 0.002989 JER: 0.000854 BG: 0.001708 Btag: 0.003416 PU: 0.0 - TopScale: 0.0038429999999999996 + TopScale: 3.84300000e-03 TopMatch: 0.001281 Hadronization: 0.0 TopMass: 0.002562 PDF: 0.000427 - stat: 0 - ArtUnc_1: 3.1526830698109407e-06 - ArtUnc_2: 2.9663904405671416e-06 - ArtUnc_3: -0.0029475195176351826 - ArtUnc_4: -0.00434638954966833 - ArtUnc_5: -0.00026965264381615387 - ArtUnc_6: -4.918738430744944e-05 - ArtUnc_7: 0.0020110933767959233 - ArtUnc_8: 0.001268552507634009 - ArtUnc_9: 0.0030701356878229885 - ArtUnc_10: -0.0008040029311248681 - LEP: 0.0008260000000000001 - JES: 0.0033040000000000005 - JER: 0.0016520000000000003 - BG: 0.0008260000000000001 - Btag: 0.0033040000000000005 - PU: 0.00041300000000000006 - TopScale: 0.0033040000000000005 - TopMatch: 0.0033040000000000005 - Hadronization: 0.0033040000000000005 - TopMass: 0.0012389999999999999 + ArtUnc_1: 3.15268307e-06 + ArtUnc_2: 2.96639044e-06 + ArtUnc_3: -2.94751952e-03 + ArtUnc_4: -4.34638955e-03 + ArtUnc_5: -2.69652644e-04 + ArtUnc_6: -4.91873843e-05 + ArtUnc_7: 2.01109338e-03 + ArtUnc_8: 1.26855251e-03 + ArtUnc_9: 3.07013569e-03 + ArtUnc_10: -8.04002931e-04 + LEP: 8.26000000e-04 + JES: 3.30400000e-03 + JER: 1.65200000e-03 + BG: 8.26000000e-04 + Btag: 3.30400000e-03 + PU: 4.13000000e-04 + TopScale: 3.30400000e-03 + TopMatch: 3.30400000e-03 + Hadronization: 3.30400000e-03 + TopMass: 1.23900000e-03 PDF: 0.0 - stat: 0 - ArtUnc_1: 3.152667763583191e-06 - ArtUnc_2: -2.088179770028689e-05 - ArtUnc_3: -0.0023866785933756487 - ArtUnc_4: 0.0030802203082412527 - ArtUnc_5: -0.0005646036748073596 - ArtUnc_6: 0.0006393924309916323 - ArtUnc_7: 0.0013113219606989252 - ArtUnc_8: 0.0015772349783507048 - ArtUnc_9: -0.001965504113594864 - ArtUnc_10: -0.003984660623354727 - LEP: 0.0007480000000000001 - JES: 0.0018700000000000001 + ArtUnc_1: 3.15266776e-06 + ArtUnc_2: -2.08817977e-05 + ArtUnc_3: -2.38667859e-03 + ArtUnc_4: 3.08022031e-03 + ArtUnc_5: -5.64603675e-04 + ArtUnc_6: 6.39392431e-04 + ArtUnc_7: 1.31132196e-03 + ArtUnc_8: 1.57723498e-03 + ArtUnc_9: -1.96550411e-03 + ArtUnc_10: -3.98466062e-03 + LEP: 7.48000000e-04 + JES: 1.87000000e-03 JER: 0.001122 BG: 0.001122 - Btag: 0.0018700000000000001 - PU: 0.00037400000000000004 + Btag: 1.87000000e-03 + PU: 3.74000000e-04 TopScale: 0.001122 - TopMatch: 0.0018700000000000001 - Hadronization: 0.0037400000000000003 - TopMass: 0.0037400000000000003 - PDF: 0.00037400000000000004 + TopMatch: 1.87000000e-03 + Hadronization: 3.74000000e-03 + TopMass: 3.74000000e-03 + PDF: 3.74000000e-04 - stat: 0 - ArtUnc_1: 3.1526033649317752e-06 - ArtUnc_2: -0.0001522249436840137 - ArtUnc_3: 0.0019004122242591947 - ArtUnc_4: 0.00040127513984510873 - ArtUnc_5: -0.00010994862793098158 - ArtUnc_6: -5.546519599504701e-05 - ArtUnc_7: 0.0002859255241820049 - ArtUnc_8: 0.004546160512398277 - ArtUnc_9: -0.0007885128674446689 - ArtUnc_10: 0.002673571174832699 + ArtUnc_1: 3.15260336e-06 + ArtUnc_2: -1.52224944e-04 + ArtUnc_3: 1.90041222e-03 + ArtUnc_4: 4.01275140e-04 + ArtUnc_5: -1.09948628e-04 + ArtUnc_6: -5.54651960e-05 + ArtUnc_7: 2.85925524e-04 + ArtUnc_8: 4.54616051e-03 + ArtUnc_9: -7.88512867e-04 + ArtUnc_10: 2.67357117e-03 LEP: 0.000317 JES: 0.001902 JER: 0.001268 @@ -260,51 +260,51 @@ bins: Btag: 0.000634 PU: 0.0 TopScale: 0.001902 - TopMatch: 0.0041210000000000005 + TopMatch: 4.12100000e-03 Hadronization: 0.000317 TopMass: 0.000951 PDF: 0.000317 - stat: 0 - ArtUnc_1: 4.193174434389627e-06 - ArtUnc_2: 2.3527356578624555e-05 - ArtUnc_3: 0.0002222798223911547 - ArtUnc_4: -0.0005402577755692252 - ArtUnc_5: -0.001853840673493125 - ArtUnc_6: 0.0032305204196668292 - ArtUnc_7: -0.0011086889020951373 - ArtUnc_8: -0.000492438814921078 - ArtUnc_9: 0.00042151862454088717 - ArtUnc_10: 0.0008635911380907639 - LEP: 0.00046000000000000007 - JES: 0.0009200000000000001 - JER: 0.0009200000000000001 - BG: 0.0006900000000000001 - Btag: 0.0013800000000000002 + ArtUnc_1: 4.19317443e-06 + ArtUnc_2: 2.35273566e-05 + ArtUnc_3: 2.22279822e-04 + ArtUnc_4: -5.40257776e-04 + ArtUnc_5: -1.85384067e-03 + ArtUnc_6: 3.23052042e-03 + ArtUnc_7: -1.10868890e-03 + ArtUnc_8: -4.92438815e-04 + ArtUnc_9: 4.21518625e-04 + ArtUnc_10: 8.63591138e-04 + LEP: 4.60000000e-04 + JES: 9.20000000e-04 + JER: 9.20000000e-04 + BG: 6.90000000e-04 + Btag: 1.38000000e-03 PU: 0.0 - TopScale: 0.0018400000000000003 + TopScale: 1.84000000e-03 TopMatch: 0.00161 Hadronization: 0.00391 - TopMass: 0.00046000000000000007 - PDF: 0.00023000000000000003 + TopMass: 4.60000000e-04 + PDF: 2.30000000e-04 - stat: 0 - ArtUnc_1: 1.2731462503432041e-05 - ArtUnc_2: -0.0015474160623654412 - ArtUnc_3: -0.00013474417900154968 - ArtUnc_4: -2.7315597147523722e-05 - ArtUnc_5: 0.0010005373332215638 - ArtUnc_6: -0.00012384183250245475 - ArtUnc_7: -0.000760356339403535 - ArtUnc_8: -0.0007185239771657239 - ArtUnc_9: 2.4142422745833406e-05 - ArtUnc_10: -0.00017895872238232857 - LEP: 0.00025640000000000005 - JES: 0.0007692 - JER: 0.0005128000000000001 - BG: 0.00025640000000000005 - Btag: 0.0008974 - PU: 6.410000000000001e-05 - TopScale: 0.0013461 - TopMatch: 0.0007051000000000002 - Hadronization: 0.0009615000000000001 - TopMass: 0.0008333000000000001 - PDF: 0.0005128000000000001 + ArtUnc_1: 1.27314625e-05 + ArtUnc_2: -1.54741606e-03 + ArtUnc_3: -1.34744179e-04 + ArtUnc_4: -2.73155971e-05 + ArtUnc_5: 1.00053733e-03 + ArtUnc_6: -1.23841833e-04 + ArtUnc_7: -7.60356339e-04 + ArtUnc_8: -7.18523977e-04 + ArtUnc_9: 2.41424227e-05 + ArtUnc_10: -1.78958722e-04 + LEP: 2.56400000e-04 + JES: 7.69200000e-04 + JER: 5.12800000e-04 + BG: 2.56400000e-04 + Btag: 8.97400000e-04 + PU: 6.41000000e-05 + TopScale: 1.34610000e-03 + TopMatch: 7.05100000e-04 + Hadronization: 9.61500000e-04 + TopMass: 8.33300000e-04 + PDF: 5.12800000e-04 diff --git a/nnpdf_data/nnpdf_data/commondata/CMS_WPWM_13TEV_ETA/filter.py b/nnpdf_data/nnpdf_data/commondata/CMS_WPWM_13TEV_ETA/filter.py index 9c3338e1db..1a123d1793 100644 --- a/nnpdf_data/nnpdf_data/commondata/CMS_WPWM_13TEV_ETA/filter.py +++ b/nnpdf_data/nnpdf_data/commondata/CMS_WPWM_13TEV_ETA/filter.py @@ -1,6 +1,10 @@ from filter_utils import get_data_values, get_kinematics, get_systematics import yaml +from nnpdf_data.filter_utils.utils import prettify_float + +yaml.add_representer(float, prettify_float) + def filter_CMS_W_13TEV_data_kinetic(figure): """ diff --git a/nnpdf_data/nnpdf_data/commondata/CMS_WPWM_13TEV_ETA/filter_utils.py b/nnpdf_data/nnpdf_data/commondata/CMS_WPWM_13TEV_ETA/filter_utils.py index 494784a178..6996f84e9e 100644 --- a/nnpdf_data/nnpdf_data/commondata/CMS_WPWM_13TEV_ETA/filter_utils.py +++ b/nnpdf_data/nnpdf_data/commondata/CMS_WPWM_13TEV_ETA/filter_utils.py @@ -2,6 +2,10 @@ import uproot import yaml +from nnpdf_data.filter_utils.utils import prettify_float + +yaml.add_representer(float, prettify_float) + def get_kinematics(version, figure): """ diff --git a/nnpdf_data/nnpdf_data/commondata/CMS_WPWM_13TEV_ETA/kinematics_WM.yaml b/nnpdf_data/nnpdf_data/commondata/CMS_WPWM_13TEV_ETA/kinematics_WM.yaml index f04f6bd6b2..c0af9fe1c3 100644 --- a/nnpdf_data/nnpdf_data/commondata/CMS_WPWM_13TEV_ETA/kinematics_WM.yaml +++ b/nnpdf_data/nnpdf_data/commondata/CMS_WPWM_13TEV_ETA/kinematics_WM.yaml @@ -13,7 +13,7 @@ bins: max: null - eta: min: 0.1 - mid: 0.15000000000000002 + mid: 1.50000000e-01 max: 0.2 m_W2: min: null @@ -73,7 +73,7 @@ bins: max: null - eta: min: 0.6 - mid: 0.6499999999999999 + mid: 6.50000000e-01 max: 0.7 m_W2: min: null @@ -97,7 +97,7 @@ bins: max: null - eta: min: 0.8 - mid: 0.8500000000000001 + mid: 8.50000000e-01 max: 0.9 m_W2: min: null @@ -181,7 +181,7 @@ bins: max: null - eta: min: 1.7 - mid: 1.7999999999999998 + mid: 1.80000000e+00 max: 1.9 m_W2: min: null diff --git a/nnpdf_data/nnpdf_data/commondata/CMS_WPWM_13TEV_ETA/kinematics_WP.yaml b/nnpdf_data/nnpdf_data/commondata/CMS_WPWM_13TEV_ETA/kinematics_WP.yaml index f04f6bd6b2..c0af9fe1c3 100644 --- a/nnpdf_data/nnpdf_data/commondata/CMS_WPWM_13TEV_ETA/kinematics_WP.yaml +++ b/nnpdf_data/nnpdf_data/commondata/CMS_WPWM_13TEV_ETA/kinematics_WP.yaml @@ -13,7 +13,7 @@ bins: max: null - eta: min: 0.1 - mid: 0.15000000000000002 + mid: 1.50000000e-01 max: 0.2 m_W2: min: null @@ -73,7 +73,7 @@ bins: max: null - eta: min: 0.6 - mid: 0.6499999999999999 + mid: 6.50000000e-01 max: 0.7 m_W2: min: null @@ -97,7 +97,7 @@ bins: max: null - eta: min: 0.8 - mid: 0.8500000000000001 + mid: 8.50000000e-01 max: 0.9 m_W2: min: null @@ -181,7 +181,7 @@ bins: max: null - eta: min: 1.7 - mid: 1.7999999999999998 + mid: 1.80000000e+00 max: 1.9 m_W2: min: null diff --git a/nnpdf_data/nnpdf_data/commondata/CMS_WPWM_13TEV_ETA/uncertainties_WM.yaml b/nnpdf_data/nnpdf_data/commondata/CMS_WPWM_13TEV_ETA/uncertainties_WM.yaml index 01b38cf483..2935a5ba88 100644 --- a/nnpdf_data/nnpdf_data/commondata/CMS_WPWM_13TEV_ETA/uncertainties_WM.yaml +++ b/nnpdf_data/nnpdf_data/commondata/CMS_WPWM_13TEV_ETA/uncertainties_WM.yaml @@ -72,327 +72,327 @@ definitions: treatment: ADD type: CORR bins: -- artificial_uncertainty_0: 51.7184748170021 - artificial_uncertainty_1: 2.630647346347256 - artificial_uncertainty_2: -0.8403641026433771 - artificial_uncertainty_3: -1.7650207910248759 - artificial_uncertainty_4: -0.259912605189649 - artificial_uncertainty_5: 0.6368883188667323 - artificial_uncertainty_6: -0.3891669304874289 - artificial_uncertainty_7: 0.06644156969348641 - artificial_uncertainty_8: -0.292058515940583 - artificial_uncertainty_9: 0.01865836167533489 - artificial_uncertainty_10: -0.03941102535277325 - artificial_uncertainty_11: 1.6244619879919788 - artificial_uncertainty_12: 0.2243092309693005 - artificial_uncertainty_13: 0.23284845180058378 - artificial_uncertainty_14: -0.4468804556588947 - artificial_uncertainty_15: 0.17803482957031228 - artificial_uncertainty_16: -0.40049694800825175 - artificial_uncertainty_17: -0.11905469674913374 -- artificial_uncertainty_0: 51.99106565252987 - artificial_uncertainty_1: 2.750743744553912 - artificial_uncertainty_2: -0.7662143207065207 - artificial_uncertainty_3: -1.5180828819976333 - artificial_uncertainty_4: -0.11863177965964161 - artificial_uncertainty_5: 0.6660334655411994 - artificial_uncertainty_6: -0.3287069661492375 - artificial_uncertainty_7: -0.03189754633043673 - artificial_uncertainty_8: 0.26404509123673636 - artificial_uncertainty_9: 0.03787239500366528 - artificial_uncertainty_10: -0.1389439341553086 - artificial_uncertainty_11: -0.25785702866666577 - artificial_uncertainty_12: -0.13242749050610655 - artificial_uncertainty_13: -1.6258524044497522 - artificial_uncertainty_14: 0.4862155827947212 - artificial_uncertainty_15: -0.5079113064547442 - artificial_uncertainty_16: 0.22659596585560998 - artificial_uncertainty_17: 0.45168307455846773 -- artificial_uncertainty_0: 52.281889649642125 - artificial_uncertainty_1: 2.7763760733141 - artificial_uncertainty_2: -0.8358591017724545 - artificial_uncertainty_3: -1.861722782366366 - artificial_uncertainty_4: -0.25075129986454936 - artificial_uncertainty_5: -2.2684983389315003 - artificial_uncertainty_6: 0.7893826967973138 - artificial_uncertainty_7: 0.0966299259372553 - artificial_uncertainty_8: -0.10328995720579309 - artificial_uncertainty_9: 0.025768792210336715 - artificial_uncertainty_10: 0.017115186436748798 - artificial_uncertainty_11: -0.023458701503702998 - artificial_uncertainty_12: -0.01398341458234018 - artificial_uncertainty_13: -0.06600927284227415 - artificial_uncertainty_14: -0.0029871922226949866 - artificial_uncertainty_15: -0.015074543805203957 - artificial_uncertainty_16: -0.033987539180723066 - artificial_uncertainty_17: -0.019655138200037316 -- artificial_uncertainty_0: 52.03798882376835 - artificial_uncertainty_1: 2.6321003284149005 - artificial_uncertainty_2: -0.7992541514860563 - artificial_uncertainty_3: -1.4502768681929639 - artificial_uncertainty_4: -0.253458244746243 - artificial_uncertainty_5: 0.5697994279289057 - artificial_uncertainty_6: -0.36424185302695217 - artificial_uncertainty_7: -0.10369776066453204 - artificial_uncertainty_8: 0.04651805510837259 - artificial_uncertainty_9: -0.07732621859613824 - artificial_uncertainty_10: 1.438551041097729 - artificial_uncertainty_11: -0.8235906090926208 - artificial_uncertainty_12: 0.1717995783476429 - artificial_uncertainty_13: 0.7246251391761638 - artificial_uncertainty_14: -0.017961196593004512 - artificial_uncertainty_15: 0.09355254670929704 - artificial_uncertainty_16: 0.011757031972574841 - artificial_uncertainty_17: 0.054255301367280684 -- artificial_uncertainty_0: 51.774958490872756 - artificial_uncertainty_1: 2.6214138091299475 - artificial_uncertainty_2: -0.7606436328944934 - artificial_uncertainty_3: -1.2117490076321076 - artificial_uncertainty_4: -0.2439489167091792 - artificial_uncertainty_5: 0.5900845113555326 - artificial_uncertainty_6: -0.007018154426159113 - artificial_uncertainty_7: -0.16023839351450042 - artificial_uncertainty_8: 0.13226173512411737 - artificial_uncertainty_9: -0.15657265749343963 - artificial_uncertainty_10: -1.4048557158872048 - artificial_uncertainty_11: -0.752994979075083 - artificial_uncertainty_12: -0.24707531221293477 - artificial_uncertainty_13: 0.7929195427878752 - artificial_uncertainty_14: -0.005616310818954766 - artificial_uncertainty_15: 0.28580583709143614 - artificial_uncertainty_16: 0.20321053376931172 - artificial_uncertainty_17: -0.4008589877685284 -- artificial_uncertainty_0: 51.84380226099936 - artificial_uncertainty_1: 2.629774359601825 - artificial_uncertainty_2: -0.7807531126974535 - artificial_uncertainty_3: 1.5026752029863317 - artificial_uncertainty_4: 0.27780156066277434 - artificial_uncertainty_5: 0.3267692617524154 - artificial_uncertainty_6: 0.8476400468811951 - artificial_uncertainty_7: 0.11510725359499212 - artificial_uncertainty_8: -0.09684020655712765 - artificial_uncertainty_9: 0.2655136702832111 - artificial_uncertainty_10: 0.05541453961951513 - artificial_uncertainty_11: -0.13330938920861532 - artificial_uncertainty_12: -0.7159418317641022 - artificial_uncertainty_13: 0.045800897098442435 - artificial_uncertainty_14: -1.1927946363595443 - artificial_uncertainty_15: -1.169269378218041 - artificial_uncertainty_16: -0.35091293898858356 - artificial_uncertainty_17: 0.059257645998052846 -- artificial_uncertainty_0: 51.752606939125855 - artificial_uncertainty_1: 2.5854543148877682 - artificial_uncertainty_2: -0.771638420267533 - artificial_uncertainty_3: 1.5382919940687176 - artificial_uncertainty_4: 0.23319296782425206 - artificial_uncertainty_5: 0.28501053235151935 - artificial_uncertainty_6: 0.829495211322914 - artificial_uncertainty_7: -0.0017962625945941375 - artificial_uncertainty_8: -0.08735476034333992 - artificial_uncertainty_9: 0.09185895625090157 - artificial_uncertainty_10: 0.08529573608173673 - artificial_uncertainty_11: 0.03060991390961602 - artificial_uncertainty_12: -0.5747246035809032 - artificial_uncertainty_13: -0.12746853009891315 - artificial_uncertainty_14: 0.6860699304585661 - artificial_uncertainty_15: 1.2231004132674708 - artificial_uncertainty_16: -0.953486272241458 - artificial_uncertainty_17: 0.5826570206798298 -- artificial_uncertainty_0: 51.642611874106485 - artificial_uncertainty_1: 2.539564835559986 - artificial_uncertainty_2: -0.7645708143539156 - artificial_uncertainty_3: 1.5170333972089494 - artificial_uncertainty_4: 0.16786019309749128 - artificial_uncertainty_5: 0.1977837203260947 - artificial_uncertainty_6: 0.6726842092738932 - artificial_uncertainty_7: -0.08370139577579717 - artificial_uncertainty_8: 0.1398297878998483 - artificial_uncertainty_9: -0.07377136335234177 - artificial_uncertainty_10: 0.32103779925306714 - artificial_uncertainty_11: 0.3763768145884513 - artificial_uncertainty_12: 0.13063730347485997 - artificial_uncertainty_13: -0.19649048333619587 - artificial_uncertainty_14: 0.4798126944604816 - artificial_uncertainty_15: 0.13574462767652856 - artificial_uncertainty_16: 1.161900220673676 - artificial_uncertainty_17: -1.3685916481328255 -- artificial_uncertainty_0: 51.94395797655955 - artificial_uncertainty_1: 2.483024644330231 - artificial_uncertainty_2: -0.8035692258388369 - artificial_uncertainty_3: 1.861521646139863 - artificial_uncertainty_4: 0.13182334539317578 - artificial_uncertainty_5: -0.8550608645198368 - artificial_uncertainty_6: -2.115458258190469 - artificial_uncertainty_7: 0.1575703505168898 - artificial_uncertainty_8: -0.11017129957760828 - artificial_uncertainty_9: 0.039302491188455864 - artificial_uncertainty_10: -0.05435982119111132 - artificial_uncertainty_11: -0.03538429278798993 - artificial_uncertainty_12: -0.5251976168017504 - artificial_uncertainty_13: -0.014627661752638264 - artificial_uncertainty_14: -0.018450192520800865 - artificial_uncertainty_15: 0.05069194080870239 - artificial_uncertainty_16: -0.08781571904990058 - artificial_uncertainty_17: -0.19754167629279695 -- artificial_uncertainty_0: 51.42000401490351 - artificial_uncertainty_1: 2.3514301269535283 - artificial_uncertainty_2: -0.7755656399610649 - artificial_uncertainty_3: 1.6608941136822324 - artificial_uncertainty_4: 0.04082330743322876 - artificial_uncertainty_5: -0.10686758253235261 - artificial_uncertainty_6: 0.041404481605382334 - artificial_uncertainty_7: -0.12755860518648723 - artificial_uncertainty_8: 0.04938801053717809 - artificial_uncertainty_9: -0.28409616075774086 - artificial_uncertainty_10: -0.29447818727532254 - artificial_uncertainty_11: -0.028140945405773755 - artificial_uncertainty_12: 1.7681113061236906 - artificial_uncertainty_13: 0.21654355676316775 - artificial_uncertainty_14: 0.00971073918870957 - artificial_uncertainty_15: -0.2564846104128544 - artificial_uncertainty_16: 0.17648488457246483 - artificial_uncertainty_17: 0.9086121005597568 -- artificial_uncertainty_0: 51.55980848657396 - artificial_uncertainty_1: -1.2720939980429304 - artificial_uncertainty_2: 3.5915943932158436 - artificial_uncertainty_3: -0.07977200077453535 - artificial_uncertainty_4: 0.2302366539785019 - artificial_uncertainty_5: -0.0545876616163395 - artificial_uncertainty_6: 0.011425553841772499 - artificial_uncertainty_7: 0.15509729896990726 - artificial_uncertainty_8: 0.537622482269758 - artificial_uncertainty_9: 0.5488752628280631 - artificial_uncertainty_10: 0.03567569415857174 - artificial_uncertainty_11: 0.3426944060970365 - artificial_uncertainty_12: -0.6228017227077675 - artificial_uncertainty_13: 0.3541440672663386 - artificial_uncertainty_14: -0.19534492771197806 - artificial_uncertainty_15: 0.30440505533704576 - artificial_uncertainty_16: 1.2437856210067788 - artificial_uncertainty_17: 1.0474997953375644 -- artificial_uncertainty_0: 50.88245806231314 - artificial_uncertainty_1: -1.405302555466966 - artificial_uncertainty_2: 3.717467779741494 - artificial_uncertainty_3: -0.054846394588569485 - artificial_uncertainty_4: 0.12480487057711812 - artificial_uncertainty_5: -0.04351469762152577 - artificial_uncertainty_6: -0.05982755366820403 - artificial_uncertainty_7: 0.18277625425666627 - artificial_uncertainty_8: 1.1845252314771457 - artificial_uncertainty_9: 0.9519091520307862 - artificial_uncertainty_10: -0.04036981580840095 - artificial_uncertainty_11: 0.001133611703657958 - artificial_uncertainty_12: 0.44270306225554296 - artificial_uncertainty_13: 0.1444110660513483 - artificial_uncertainty_14: 0.4975717890069793 - artificial_uncertainty_15: -0.4448607147630138 - artificial_uncertainty_16: -0.9295658550744887 - artificial_uncertainty_17: -0.6141131242759909 -- artificial_uncertainty_0: 50.60827321753995 - artificial_uncertainty_1: -1.5774533249926055 - artificial_uncertainty_2: 3.8224121068026764 - artificial_uncertainty_3: -0.01655818514536703 - artificial_uncertainty_4: 0.006809570630059408 - artificial_uncertainty_5: 0.0609812219237614 - artificial_uncertainty_6: 0.06956506158771412 - artificial_uncertainty_7: -0.16250370546285656 - artificial_uncertainty_8: -1.3181313727904158 - artificial_uncertainty_9: -0.9695089244411776 - artificial_uncertainty_10: -0.011378908374815875 - artificial_uncertainty_11: 0.09982550271928098 - artificial_uncertainty_12: -0.28355177610799376 - artificial_uncertainty_13: 0.29113336560817027 - artificial_uncertainty_14: 0.8600184557032385 - artificial_uncertainty_15: -0.7498120246524361 - artificial_uncertainty_16: -0.13151861752959068 - artificial_uncertainty_17: 0.043936985582430074 -- artificial_uncertainty_0: 49.96021855312663 - artificial_uncertainty_1: -1.7120839021487495 - artificial_uncertainty_2: 3.812731426950155 - artificial_uncertainty_3: 0.04447686289231519 - artificial_uncertainty_4: -0.1508749302776078 - artificial_uncertainty_5: 0.006708266909254365 - artificial_uncertainty_6: -0.027093588466675325 - artificial_uncertainty_7: -0.19579168130279379 - artificial_uncertainty_8: -0.35348497807203144 - artificial_uncertainty_9: -0.48430423837966424 - artificial_uncertainty_10: 0.026145323774775877 - artificial_uncertainty_11: -0.40847341514749475 - artificial_uncertainty_12: 0.438924368223565 - artificial_uncertainty_13: -0.7679645749522854 - artificial_uncertainty_14: -1.172971448264604 - artificial_uncertainty_15: 0.8954098549070756 - artificial_uncertainty_16: -0.15680990509845483 - artificial_uncertainty_17: -0.4441118177358385 -- artificial_uncertainty_0: 48.18178878151001 - artificial_uncertainty_1: -5.680195600241562 - artificial_uncertainty_2: -2.000321464178431 - artificial_uncertainty_3: -0.3559741139522648 - artificial_uncertainty_4: 1.384312981695711 - artificial_uncertainty_5: 0.12565124626508956 - artificial_uncertainty_6: -0.027202680159823613 - artificial_uncertainty_7: 0.44578940344165263 - artificial_uncertainty_8: -1.2213190203965445 - artificial_uncertainty_9: 1.3949986238334826 - artificial_uncertainty_10: -0.0823783597906693 - artificial_uncertainty_11: -0.23920806860329907 - artificial_uncertainty_12: 0.3258162531902002 - artificial_uncertainty_13: -0.05894893965907426 - artificial_uncertainty_14: 0.07266776698926376 - artificial_uncertainty_15: 0.10622148505176912 - artificial_uncertainty_16: 0.15479032136947873 - artificial_uncertainty_17: -0.09252508552259857 -- artificial_uncertainty_0: 46.74983718751716 - artificial_uncertainty_1: -5.6061663014900684 - artificial_uncertainty_2: -1.9406322141773933 - artificial_uncertainty_3: -0.24331869011305454 - artificial_uncertainty_4: 1.3151687080683916 - artificial_uncertainty_5: 0.02412087757501054 - artificial_uncertainty_6: 0.05494288809262248 - artificial_uncertainty_7: 1.429022362630007 - artificial_uncertainty_8: 0.7595117831002782 - artificial_uncertainty_9: -1.2631941792258696 - artificial_uncertainty_10: 0.030159137722800163 - artificial_uncertainty_11: 0.049472284168621324 - artificial_uncertainty_12: -0.09055036457848825 - artificial_uncertainty_13: 0.034839809809398804 - artificial_uncertainty_14: -0.04756606225136189 - artificial_uncertainty_15: 0.0008598078267390868 - artificial_uncertainty_16: -0.08345851675473841 - artificial_uncertainty_17: 0.002264694892606487 -- artificial_uncertainty_0: 45.922573101771555 - artificial_uncertainty_1: -5.8037638915714505 - artificial_uncertainty_2: -2.013563225596308 - artificial_uncertainty_3: -0.07948437557570594 - artificial_uncertainty_4: 0.817171730481399 - artificial_uncertainty_5: -0.1835775668252919 - artificial_uncertainty_6: -0.06213076784363571 - artificial_uncertainty_7: -2.067390688782224 - artificial_uncertainty_8: 0.4909973906706664 - artificial_uncertainty_9: -0.25325797585013626 - artificial_uncertainty_10: 0.04408875138752645 - artificial_uncertainty_11: 0.17202427546134735 - artificial_uncertainty_12: -0.20443818656416068 - artificial_uncertainty_13: 0.026123440887260214 - artificial_uncertainty_14: -0.04785884201686669 - artificial_uncertainty_15: -0.08966006644560325 - artificial_uncertainty_16: -0.10172074341255216 - artificial_uncertainty_17: 0.05317536095754742 -- artificial_uncertainty_0: 43.33407029996831 - artificial_uncertainty_1: -5.615408978596229 - artificial_uncertainty_2: -1.5970382334901523 - artificial_uncertainty_3: 0.588286642004657 - artificial_uncertainty_4: -3.744943440570509 - artificial_uncertainty_5: 0.03907224047061849 - artificial_uncertainty_6: 0.07595371845692017 - artificial_uncertainty_7: 0.2549540030430864 - artificial_uncertainty_8: 0.004144451696998113 - artificial_uncertainty_9: 0.13160657704253736 - artificial_uncertainty_10: 0.008366027216896154 - artificial_uncertainty_11: 0.013354432356859954 - artificial_uncertainty_12: -0.08592992771946545 - artificial_uncertainty_13: -0.018233653917298642 - artificial_uncertainty_14: 0.045702634078057205 - artificial_uncertainty_15: -0.039255805715833675 - artificial_uncertainty_16: 0.031649024754885305 - artificial_uncertainty_17: 0.04009689097775641 +- artificial_uncertainty_0: 5.17184748e+01 + artificial_uncertainty_1: 2.63064735e+00 + artificial_uncertainty_2: -8.40364103e-01 + artificial_uncertainty_3: -1.76502079e+00 + artificial_uncertainty_4: -2.59912605e-01 + artificial_uncertainty_5: 6.36888319e-01 + artificial_uncertainty_6: -3.89166930e-01 + artificial_uncertainty_7: 6.64415697e-02 + artificial_uncertainty_8: -2.92058516e-01 + artificial_uncertainty_9: 1.86583617e-02 + artificial_uncertainty_10: -3.94110254e-02 + artificial_uncertainty_11: 1.62446199e+00 + artificial_uncertainty_12: 2.24309231e-01 + artificial_uncertainty_13: 2.32848452e-01 + artificial_uncertainty_14: -4.46880456e-01 + artificial_uncertainty_15: 1.78034830e-01 + artificial_uncertainty_16: -4.00496948e-01 + artificial_uncertainty_17: -1.19054697e-01 +- artificial_uncertainty_0: 5.19910657e+01 + artificial_uncertainty_1: 2.75074374e+00 + artificial_uncertainty_2: -7.66214321e-01 + artificial_uncertainty_3: -1.51808288e+00 + artificial_uncertainty_4: -1.18631780e-01 + artificial_uncertainty_5: 6.66033466e-01 + artificial_uncertainty_6: -3.28706966e-01 + artificial_uncertainty_7: -3.18975463e-02 + artificial_uncertainty_8: 2.64045091e-01 + artificial_uncertainty_9: 3.78723950e-02 + artificial_uncertainty_10: -1.38943934e-01 + artificial_uncertainty_11: -2.57857029e-01 + artificial_uncertainty_12: -1.32427491e-01 + artificial_uncertainty_13: -1.62585240e+00 + artificial_uncertainty_14: 4.86215583e-01 + artificial_uncertainty_15: -5.07911306e-01 + artificial_uncertainty_16: 2.26595966e-01 + artificial_uncertainty_17: 4.51683075e-01 +- artificial_uncertainty_0: 5.22818896e+01 + artificial_uncertainty_1: 2.77637607e+00 + artificial_uncertainty_2: -8.35859102e-01 + artificial_uncertainty_3: -1.86172278e+00 + artificial_uncertainty_4: -2.50751300e-01 + artificial_uncertainty_5: -2.26849834e+00 + artificial_uncertainty_6: 7.89382697e-01 + artificial_uncertainty_7: 9.66299259e-02 + artificial_uncertainty_8: -1.03289957e-01 + artificial_uncertainty_9: 2.57687922e-02 + artificial_uncertainty_10: 1.71151864e-02 + artificial_uncertainty_11: -2.34587015e-02 + artificial_uncertainty_12: -1.39834146e-02 + artificial_uncertainty_13: -6.60092728e-02 + artificial_uncertainty_14: -2.98719222e-03 + artificial_uncertainty_15: -1.50745438e-02 + artificial_uncertainty_16: -3.39875392e-02 + artificial_uncertainty_17: -1.96551382e-02 +- artificial_uncertainty_0: 5.20379888e+01 + artificial_uncertainty_1: 2.63210033e+00 + artificial_uncertainty_2: -7.99254151e-01 + artificial_uncertainty_3: -1.45027687e+00 + artificial_uncertainty_4: -2.53458245e-01 + artificial_uncertainty_5: 5.69799428e-01 + artificial_uncertainty_6: -3.64241853e-01 + artificial_uncertainty_7: -1.03697761e-01 + artificial_uncertainty_8: 4.65180551e-02 + artificial_uncertainty_9: -7.73262186e-02 + artificial_uncertainty_10: 1.43855104e+00 + artificial_uncertainty_11: -8.23590609e-01 + artificial_uncertainty_12: 1.71799578e-01 + artificial_uncertainty_13: 7.24625139e-01 + artificial_uncertainty_14: -1.79611966e-02 + artificial_uncertainty_15: 9.35525467e-02 + artificial_uncertainty_16: 1.17570320e-02 + artificial_uncertainty_17: 5.42553014e-02 +- artificial_uncertainty_0: 5.17749585e+01 + artificial_uncertainty_1: 2.62141381e+00 + artificial_uncertainty_2: -7.60643633e-01 + artificial_uncertainty_3: -1.21174901e+00 + artificial_uncertainty_4: -2.43948917e-01 + artificial_uncertainty_5: 5.90084511e-01 + artificial_uncertainty_6: -7.01815443e-03 + artificial_uncertainty_7: -1.60238394e-01 + artificial_uncertainty_8: 1.32261735e-01 + artificial_uncertainty_9: -1.56572657e-01 + artificial_uncertainty_10: -1.40485572e+00 + artificial_uncertainty_11: -7.52994979e-01 + artificial_uncertainty_12: -2.47075312e-01 + artificial_uncertainty_13: 7.92919543e-01 + artificial_uncertainty_14: -5.61631082e-03 + artificial_uncertainty_15: 2.85805837e-01 + artificial_uncertainty_16: 2.03210534e-01 + artificial_uncertainty_17: -4.00858988e-01 +- artificial_uncertainty_0: 5.18438023e+01 + artificial_uncertainty_1: 2.62977436e+00 + artificial_uncertainty_2: -7.80753113e-01 + artificial_uncertainty_3: 1.50267520e+00 + artificial_uncertainty_4: 2.77801561e-01 + artificial_uncertainty_5: 3.26769262e-01 + artificial_uncertainty_6: 8.47640047e-01 + artificial_uncertainty_7: 1.15107254e-01 + artificial_uncertainty_8: -9.68402066e-02 + artificial_uncertainty_9: 2.65513670e-01 + artificial_uncertainty_10: 5.54145396e-02 + artificial_uncertainty_11: -1.33309389e-01 + artificial_uncertainty_12: -7.15941832e-01 + artificial_uncertainty_13: 4.58008971e-02 + artificial_uncertainty_14: -1.19279464e+00 + artificial_uncertainty_15: -1.16926938e+00 + artificial_uncertainty_16: -3.50912939e-01 + artificial_uncertainty_17: 5.92576460e-02 +- artificial_uncertainty_0: 5.17526069e+01 + artificial_uncertainty_1: 2.58545431e+00 + artificial_uncertainty_2: -7.71638420e-01 + artificial_uncertainty_3: 1.53829199e+00 + artificial_uncertainty_4: 2.33192968e-01 + artificial_uncertainty_5: 2.85010532e-01 + artificial_uncertainty_6: 8.29495211e-01 + artificial_uncertainty_7: -1.79626259e-03 + artificial_uncertainty_8: -8.73547603e-02 + artificial_uncertainty_9: 9.18589563e-02 + artificial_uncertainty_10: 8.52957361e-02 + artificial_uncertainty_11: 3.06099139e-02 + artificial_uncertainty_12: -5.74724604e-01 + artificial_uncertainty_13: -1.27468530e-01 + artificial_uncertainty_14: 6.86069930e-01 + artificial_uncertainty_15: 1.22310041e+00 + artificial_uncertainty_16: -9.53486272e-01 + artificial_uncertainty_17: 5.82657021e-01 +- artificial_uncertainty_0: 5.16426119e+01 + artificial_uncertainty_1: 2.53956484e+00 + artificial_uncertainty_2: -7.64570814e-01 + artificial_uncertainty_3: 1.51703340e+00 + artificial_uncertainty_4: 1.67860193e-01 + artificial_uncertainty_5: 1.97783720e-01 + artificial_uncertainty_6: 6.72684209e-01 + artificial_uncertainty_7: -8.37013958e-02 + artificial_uncertainty_8: 1.39829788e-01 + artificial_uncertainty_9: -7.37713634e-02 + artificial_uncertainty_10: 3.21037799e-01 + artificial_uncertainty_11: 3.76376815e-01 + artificial_uncertainty_12: 1.30637303e-01 + artificial_uncertainty_13: -1.96490483e-01 + artificial_uncertainty_14: 4.79812694e-01 + artificial_uncertainty_15: 1.35744628e-01 + artificial_uncertainty_16: 1.16190022e+00 + artificial_uncertainty_17: -1.36859165e+00 +- artificial_uncertainty_0: 5.19439580e+01 + artificial_uncertainty_1: 2.48302464e+00 + artificial_uncertainty_2: -8.03569226e-01 + artificial_uncertainty_3: 1.86152165e+00 + artificial_uncertainty_4: 1.31823345e-01 + artificial_uncertainty_5: -8.55060865e-01 + artificial_uncertainty_6: -2.11545826e+00 + artificial_uncertainty_7: 1.57570351e-01 + artificial_uncertainty_8: -1.10171300e-01 + artificial_uncertainty_9: 3.93024912e-02 + artificial_uncertainty_10: -5.43598212e-02 + artificial_uncertainty_11: -3.53842928e-02 + artificial_uncertainty_12: -5.25197617e-01 + artificial_uncertainty_13: -1.46276618e-02 + artificial_uncertainty_14: -1.84501925e-02 + artificial_uncertainty_15: 5.06919408e-02 + artificial_uncertainty_16: -8.78157190e-02 + artificial_uncertainty_17: -1.97541676e-01 +- artificial_uncertainty_0: 5.14200040e+01 + artificial_uncertainty_1: 2.35143013e+00 + artificial_uncertainty_2: -7.75565640e-01 + artificial_uncertainty_3: 1.66089411e+00 + artificial_uncertainty_4: 4.08233074e-02 + artificial_uncertainty_5: -1.06867583e-01 + artificial_uncertainty_6: 4.14044816e-02 + artificial_uncertainty_7: -1.27558605e-01 + artificial_uncertainty_8: 4.93880105e-02 + artificial_uncertainty_9: -2.84096161e-01 + artificial_uncertainty_10: -2.94478187e-01 + artificial_uncertainty_11: -2.81409454e-02 + artificial_uncertainty_12: 1.76811131e+00 + artificial_uncertainty_13: 2.16543557e-01 + artificial_uncertainty_14: 9.71073919e-03 + artificial_uncertainty_15: -2.56484610e-01 + artificial_uncertainty_16: 1.76484885e-01 + artificial_uncertainty_17: 9.08612101e-01 +- artificial_uncertainty_0: 5.15598085e+01 + artificial_uncertainty_1: -1.27209400e+00 + artificial_uncertainty_2: 3.59159439e+00 + artificial_uncertainty_3: -7.97720008e-02 + artificial_uncertainty_4: 2.30236654e-01 + artificial_uncertainty_5: -5.45876616e-02 + artificial_uncertainty_6: 1.14255538e-02 + artificial_uncertainty_7: 1.55097299e-01 + artificial_uncertainty_8: 5.37622482e-01 + artificial_uncertainty_9: 5.48875263e-01 + artificial_uncertainty_10: 3.56756942e-02 + artificial_uncertainty_11: 3.42694406e-01 + artificial_uncertainty_12: -6.22801723e-01 + artificial_uncertainty_13: 3.54144067e-01 + artificial_uncertainty_14: -1.95344928e-01 + artificial_uncertainty_15: 3.04405055e-01 + artificial_uncertainty_16: 1.24378562e+00 + artificial_uncertainty_17: 1.04749980e+00 +- artificial_uncertainty_0: 5.08824581e+01 + artificial_uncertainty_1: -1.40530256e+00 + artificial_uncertainty_2: 3.71746778e+00 + artificial_uncertainty_3: -5.48463946e-02 + artificial_uncertainty_4: 1.24804871e-01 + artificial_uncertainty_5: -4.35146976e-02 + artificial_uncertainty_6: -5.98275537e-02 + artificial_uncertainty_7: 1.82776254e-01 + artificial_uncertainty_8: 1.18452523e+00 + artificial_uncertainty_9: 9.51909152e-01 + artificial_uncertainty_10: -4.03698158e-02 + artificial_uncertainty_11: 1.13361170e-03 + artificial_uncertainty_12: 4.42703062e-01 + artificial_uncertainty_13: 1.44411066e-01 + artificial_uncertainty_14: 4.97571789e-01 + artificial_uncertainty_15: -4.44860715e-01 + artificial_uncertainty_16: -9.29565855e-01 + artificial_uncertainty_17: -6.14113124e-01 +- artificial_uncertainty_0: 5.06082732e+01 + artificial_uncertainty_1: -1.57745332e+00 + artificial_uncertainty_2: 3.82241211e+00 + artificial_uncertainty_3: -1.65581851e-02 + artificial_uncertainty_4: 6.80957063e-03 + artificial_uncertainty_5: 6.09812219e-02 + artificial_uncertainty_6: 6.95650616e-02 + artificial_uncertainty_7: -1.62503705e-01 + artificial_uncertainty_8: -1.31813137e+00 + artificial_uncertainty_9: -9.69508924e-01 + artificial_uncertainty_10: -1.13789084e-02 + artificial_uncertainty_11: 9.98255027e-02 + artificial_uncertainty_12: -2.83551776e-01 + artificial_uncertainty_13: 2.91133366e-01 + artificial_uncertainty_14: 8.60018456e-01 + artificial_uncertainty_15: -7.49812025e-01 + artificial_uncertainty_16: -1.31518618e-01 + artificial_uncertainty_17: 4.39369856e-02 +- artificial_uncertainty_0: 4.99602186e+01 + artificial_uncertainty_1: -1.71208390e+00 + artificial_uncertainty_2: 3.81273143e+00 + artificial_uncertainty_3: 4.44768629e-02 + artificial_uncertainty_4: -1.50874930e-01 + artificial_uncertainty_5: 6.70826691e-03 + artificial_uncertainty_6: -2.70935885e-02 + artificial_uncertainty_7: -1.95791681e-01 + artificial_uncertainty_8: -3.53484978e-01 + artificial_uncertainty_9: -4.84304238e-01 + artificial_uncertainty_10: 2.61453238e-02 + artificial_uncertainty_11: -4.08473415e-01 + artificial_uncertainty_12: 4.38924368e-01 + artificial_uncertainty_13: -7.67964575e-01 + artificial_uncertainty_14: -1.17297145e+00 + artificial_uncertainty_15: 8.95409855e-01 + artificial_uncertainty_16: -1.56809905e-01 + artificial_uncertainty_17: -4.44111818e-01 +- artificial_uncertainty_0: 4.81817888e+01 + artificial_uncertainty_1: -5.68019560e+00 + artificial_uncertainty_2: -2.00032146e+00 + artificial_uncertainty_3: -3.55974114e-01 + artificial_uncertainty_4: 1.38431298e+00 + artificial_uncertainty_5: 1.25651246e-01 + artificial_uncertainty_6: -2.72026802e-02 + artificial_uncertainty_7: 4.45789403e-01 + artificial_uncertainty_8: -1.22131902e+00 + artificial_uncertainty_9: 1.39499862e+00 + artificial_uncertainty_10: -8.23783598e-02 + artificial_uncertainty_11: -2.39208069e-01 + artificial_uncertainty_12: 3.25816253e-01 + artificial_uncertainty_13: -5.89489397e-02 + artificial_uncertainty_14: 7.26677670e-02 + artificial_uncertainty_15: 1.06221485e-01 + artificial_uncertainty_16: 1.54790321e-01 + artificial_uncertainty_17: -9.25250855e-02 +- artificial_uncertainty_0: 4.67498372e+01 + artificial_uncertainty_1: -5.60616630e+00 + artificial_uncertainty_2: -1.94063221e+00 + artificial_uncertainty_3: -2.43318690e-01 + artificial_uncertainty_4: 1.31516871e+00 + artificial_uncertainty_5: 2.41208776e-02 + artificial_uncertainty_6: 5.49428881e-02 + artificial_uncertainty_7: 1.42902236e+00 + artificial_uncertainty_8: 7.59511783e-01 + artificial_uncertainty_9: -1.26319418e+00 + artificial_uncertainty_10: 3.01591377e-02 + artificial_uncertainty_11: 4.94722842e-02 + artificial_uncertainty_12: -9.05503646e-02 + artificial_uncertainty_13: 3.48398098e-02 + artificial_uncertainty_14: -4.75660623e-02 + artificial_uncertainty_15: 8.59807827e-04 + artificial_uncertainty_16: -8.34585168e-02 + artificial_uncertainty_17: 2.26469489e-03 +- artificial_uncertainty_0: 4.59225731e+01 + artificial_uncertainty_1: -5.80376389e+00 + artificial_uncertainty_2: -2.01356323e+00 + artificial_uncertainty_3: -7.94843756e-02 + artificial_uncertainty_4: 8.17171730e-01 + artificial_uncertainty_5: -1.83577567e-01 + artificial_uncertainty_6: -6.21307678e-02 + artificial_uncertainty_7: -2.06739069e+00 + artificial_uncertainty_8: 4.90997391e-01 + artificial_uncertainty_9: -2.53257976e-01 + artificial_uncertainty_10: 4.40887514e-02 + artificial_uncertainty_11: 1.72024275e-01 + artificial_uncertainty_12: -2.04438187e-01 + artificial_uncertainty_13: 2.61234409e-02 + artificial_uncertainty_14: -4.78588420e-02 + artificial_uncertainty_15: -8.96600664e-02 + artificial_uncertainty_16: -1.01720743e-01 + artificial_uncertainty_17: 5.31753610e-02 +- artificial_uncertainty_0: 4.33340703e+01 + artificial_uncertainty_1: -5.61540898e+00 + artificial_uncertainty_2: -1.59703823e+00 + artificial_uncertainty_3: 5.88286642e-01 + artificial_uncertainty_4: -3.74494344e+00 + artificial_uncertainty_5: 3.90722405e-02 + artificial_uncertainty_6: 7.59537185e-02 + artificial_uncertainty_7: 2.54954003e-01 + artificial_uncertainty_8: 4.14445170e-03 + artificial_uncertainty_9: 1.31606577e-01 + artificial_uncertainty_10: 8.36602722e-03 + artificial_uncertainty_11: 1.33544324e-02 + artificial_uncertainty_12: -8.59299277e-02 + artificial_uncertainty_13: -1.82336539e-02 + artificial_uncertainty_14: 4.57026341e-02 + artificial_uncertainty_15: -3.92558057e-02 + artificial_uncertainty_16: 3.16490248e-02 + artificial_uncertainty_17: 4.00968910e-02 diff --git a/nnpdf_data/nnpdf_data/commondata/CMS_WPWM_13TEV_ETA/uncertainties_WP.yaml b/nnpdf_data/nnpdf_data/commondata/CMS_WPWM_13TEV_ETA/uncertainties_WP.yaml index 262d569313..9e8affae06 100644 --- a/nnpdf_data/nnpdf_data/commondata/CMS_WPWM_13TEV_ETA/uncertainties_WP.yaml +++ b/nnpdf_data/nnpdf_data/commondata/CMS_WPWM_13TEV_ETA/uncertainties_WP.yaml @@ -72,327 +72,327 @@ definitions: treatment: ADD type: CORR bins: -- artificial_uncertainty_0: 61.20954821947225 - artificial_uncertainty_1: 3.4631780217640147 - artificial_uncertainty_2: 1.1485602217711357 - artificial_uncertainty_3: -1.6016987893632835 - artificial_uncertainty_4: -0.8469975567107535 - artificial_uncertainty_5: 0.0028652007470494952 - artificial_uncertainty_6: -0.42361580092045953 - artificial_uncertainty_7: -0.4938582761132074 - artificial_uncertainty_8: 0.6162766818861626 - artificial_uncertainty_9: 0.7543679017540647 - artificial_uncertainty_10: 0.06022817244933738 - artificial_uncertainty_11: 1.7298022793129553 - artificial_uncertainty_12: 0.8116903270485135 - artificial_uncertainty_13: -0.13345117615100233 - artificial_uncertainty_14: -0.029364892651785594 - artificial_uncertainty_15: -0.11282688281984654 - artificial_uncertainty_16: 0.42717077519795504 - artificial_uncertainty_17: -0.015149828296028577 -- artificial_uncertainty_0: 61.56810043506737 - artificial_uncertainty_1: 3.566018375336605 - artificial_uncertainty_2: 1.0701346745701725 - artificial_uncertainty_3: -1.3692221299442242 - artificial_uncertainty_4: -0.6108327571853303 - artificial_uncertainty_5: -0.00988078812679135 - artificial_uncertainty_6: -0.1590085736295207 - artificial_uncertainty_7: -0.6670100364952197 - artificial_uncertainty_8: 0.5697900995901225 - artificial_uncertainty_9: 0.3661549159312993 - artificial_uncertainty_10: -0.033882134674304315 - artificial_uncertainty_11: -0.08045426119795716 - artificial_uncertainty_12: -2.105694985787924 - artificial_uncertainty_13: 0.3748384630910391 - artificial_uncertainty_14: 0.04909709520839034 - artificial_uncertainty_15: 0.05652419480972125 - artificial_uncertainty_16: -0.5084540839089613 - artificial_uncertainty_17: -0.05593831146414021 -- artificial_uncertainty_0: 61.90816921024328 - artificial_uncertainty_1: 3.596490934769212 - artificial_uncertainty_2: 1.1359907896014407 - artificial_uncertainty_3: -1.7931635819325256 - artificial_uncertainty_4: -0.9171112447148297 - artificial_uncertainty_5: 0.062234921132436886 - artificial_uncertainty_6: 1.1148842138531023 - artificial_uncertainty_7: 2.086600634178469 - artificial_uncertainty_8: -1.5631217738948489 - artificial_uncertainty_9: 0.06447676640928067 - artificial_uncertainty_10: -0.03968725455426186 - artificial_uncertainty_11: -0.021282127230847145 - artificial_uncertainty_12: -0.062410745171388116 - artificial_uncertainty_13: -0.04077623538250044 - artificial_uncertainty_14: 0.006608797331360714 - artificial_uncertainty_15: -0.007602227138802526 - artificial_uncertainty_16: 0.025473609933420963 - artificial_uncertainty_17: -0.003702953601900143 -- artificial_uncertainty_0: 62.053640199318615 - artificial_uncertainty_1: 3.5076274729480765 - artificial_uncertainty_2: 1.0827292214607493 - artificial_uncertainty_3: -1.3437455047635625 - artificial_uncertainty_4: -0.7014294671068527 - artificial_uncertainty_5: 0.031175760717123427 - artificial_uncertainty_6: -0.19122914662088233 - artificial_uncertainty_7: -0.5658877529196953 - artificial_uncertainty_8: 0.5948891307437845 - artificial_uncertainty_9: 0.7422462054726496 - artificial_uncertainty_10: 0.05134447916875898 - artificial_uncertainty_11: -1.7688681800350143 - artificial_uncertainty_12: 0.9821784070663242 - artificial_uncertainty_13: -0.22591731781388988 - artificial_uncertainty_14: -0.0590692467640036 - artificial_uncertainty_15: 0.027282805325410543 - artificial_uncertainty_16: 0.021729155557873813 - artificial_uncertainty_17: 0.043880595247599546 -- artificial_uncertainty_0: 61.93864029399741 - artificial_uncertainty_1: 3.4794097157504265 - artificial_uncertainty_2: 1.0295160654244473 - artificial_uncertainty_3: -1.1999201610717203 - artificial_uncertainty_4: -0.6466599057950735 - artificial_uncertainty_5: 0.04258350690976451 - artificial_uncertainty_6: -0.08070160665158724 - artificial_uncertainty_7: -0.5101988525505226 - artificial_uncertainty_8: 0.44917237872108456 - artificial_uncertainty_9: -2.096339393657105 - artificial_uncertainty_10: 0.047065088934631544 - artificial_uncertainty_11: 0.0020320076678195706 - artificial_uncertainty_12: 0.2638664078992045 - artificial_uncertainty_13: -0.22569115813638582 - artificial_uncertainty_14: -0.03465132994161944 - artificial_uncertainty_15: 0.08534284757376336 - artificial_uncertainty_16: 0.024354917726357013 - artificial_uncertainty_17: 0.010350202206779804 -- artificial_uncertainty_0: 62.188119192763615 - artificial_uncertainty_1: 3.4917936974354564 - artificial_uncertainty_2: 1.0418285167971173 - artificial_uncertainty_3: 1.243909416372976 - artificial_uncertainty_4: 0.6696347064340293 - artificial_uncertainty_5: -0.08141495367314723 - artificial_uncertainty_6: -0.3619427491773665 - artificial_uncertainty_7: -0.4192056824231903 - artificial_uncertainty_8: -0.7785813880591748 - artificial_uncertainty_9: -0.06185620744905632 - artificial_uncertainty_10: -0.06822076840527606 - artificial_uncertainty_11: -0.16331456156288063 - artificial_uncertainty_12: -0.04789735015514205 - artificial_uncertainty_13: 0.8985049014844868 - artificial_uncertainty_14: 0.2721770066193274 - artificial_uncertainty_15: -1.2492603657226489 - artificial_uncertainty_16: 1.007298096005158 - artificial_uncertainty_17: -1.399948692572052 -- artificial_uncertainty_0: 62.66206975625856 - artificial_uncertainty_1: 3.4808813549356987 - artificial_uncertainty_2: 1.0122727163934153 - artificial_uncertainty_3: 1.284021999839309 - artificial_uncertainty_4: 0.6598323086210922 - artificial_uncertainty_5: -0.043848621832674635 - artificial_uncertainty_6: -0.17977412681953786 - artificial_uncertainty_7: -0.39072273630627924 - artificial_uncertainty_8: -0.6732056543729478 - artificial_uncertainty_9: -0.001365881603931226 - artificial_uncertainty_10: -0.036684180950230606 - artificial_uncertainty_11: 0.02365425858924621 - artificial_uncertainty_12: 0.04620150827444925 - artificial_uncertainty_13: 0.5957412133808985 - artificial_uncertainty_14: 0.10465649081080017 - artificial_uncertainty_15: -0.6632442017712681 - artificial_uncertainty_16: 0.05073779371092439 - artificial_uncertainty_17: 2.150837866878486 -- artificial_uncertainty_0: 62.790707337678896 - artificial_uncertainty_1: 3.4453722681051606 - artificial_uncertainty_2: 0.9896640088310111 - artificial_uncertainty_3: 1.3684803201775448 - artificial_uncertainty_4: 0.6898494035774295 - artificial_uncertainty_5: -0.01907469180273139 - artificial_uncertainty_6: -0.038520480185664285 - artificial_uncertainty_7: -0.47788868281313096 - artificial_uncertainty_8: -0.7350464845835089 - artificial_uncertainty_9: 0.09255297133478417 - artificial_uncertainty_10: -0.0520177619169812 - artificial_uncertainty_11: 0.07670658198882808 - artificial_uncertainty_12: 0.09192900590431029 - artificial_uncertainty_13: 0.36674637715524183 - artificial_uncertainty_14: 0.12628730368977328 - artificial_uncertainty_15: 2.299893941032722 - artificial_uncertainty_16: 0.28651194692832027 - artificial_uncertainty_17: -0.2388859829900618 -- artificial_uncertainty_0: 63.81615432570503 - artificial_uncertainty_1: 3.420412499337462 - artificial_uncertainty_2: 1.0656301278737648 - artificial_uncertainty_3: 1.920745726057772 - artificial_uncertainty_4: 0.8399992800175984 - artificial_uncertainty_5: -0.006072415874315574 - artificial_uncertainty_6: 0.2659330391099528 - artificial_uncertainty_7: 1.7667579832011073 - artificial_uncertainty_8: 2.142114942358327 - artificial_uncertainty_9: -0.003854124957375697 - artificial_uncertainty_10: -0.08262269698162021 - artificial_uncertainty_11: 0.01279318547112822 - artificial_uncertainty_12: -0.013486375257664779 - artificial_uncertainty_13: 0.1497994812917444 - artificial_uncertainty_14: 0.0466015074048091 - artificial_uncertainty_15: 0.014350286914845497 - artificial_uncertainty_16: 0.044027099105862645 - artificial_uncertainty_17: -0.04243585829166003 -- artificial_uncertainty_0: 64.05552295798915 - artificial_uncertainty_1: 3.342550812383657 - artificial_uncertainty_2: 1.0148364500651876 - artificial_uncertainty_3: 1.6674274969817802 - artificial_uncertainty_4: 0.6348795481633847 - artificial_uncertainty_5: 0.06421994196199136 - artificial_uncertainty_6: 0.09066845594536736 - artificial_uncertainty_7: -0.40166749243950184 - artificial_uncertainty_8: -0.6120327381674929 - artificial_uncertainty_9: 0.13292947180505607 - artificial_uncertainty_10: 0.2081841650035929 - artificial_uncertainty_11: 0.19302412764567967 - artificial_uncertainty_12: 0.011321588152981326 - artificial_uncertainty_13: -1.8173621107295928 - artificial_uncertainty_14: -0.525590865983373 - artificial_uncertainty_15: -0.4387636497248621 - artificial_uncertainty_16: -1.2822135850591911 - artificial_uncertainty_17: -0.4331981390581493 -- artificial_uncertainty_0: 64.81568676388981 - artificial_uncertainty_1: -0.9125627985488501 - artificial_uncertainty_2: -4.303970421071895 - artificial_uncertainty_3: -0.23622875692428122 - artificial_uncertainty_4: 0.12663670927265933 - artificial_uncertainty_5: -0.04983096865324015 - artificial_uncertainty_6: -0.006385001377960304 - artificial_uncertainty_7: -0.024446664934776426 - artificial_uncertainty_8: -0.04077274768501214 - artificial_uncertainty_9: -0.016035960415045267 - artificial_uncertainty_10: -0.41701743755760945 - artificial_uncertainty_11: 0.14295241873131528 - artificial_uncertainty_12: 0.5123909604169314 - artificial_uncertainty_13: 0.7916604417219525 - artificial_uncertainty_14: 1.574965518856696 - artificial_uncertainty_15: -0.08264101749600551 - artificial_uncertainty_16: -1.4825074919742136 - artificial_uncertainty_17: -0.2727276144367778 -- artificial_uncertainty_0: 64.88752883362298 - artificial_uncertainty_1: -1.058230216387635 - artificial_uncertainty_2: -4.5399149351748935 - artificial_uncertainty_3: -0.11707813955802451 - artificial_uncertainty_4: 0.045123474696285575 - artificial_uncertainty_5: -0.010035472205219472 - artificial_uncertainty_6: -0.13042412084287605 - artificial_uncertainty_7: 0.005975171793278631 - artificial_uncertainty_8: -0.024302341045182363 - artificial_uncertainty_9: -0.008931790994197457 - artificial_uncertainty_10: -1.9309844122076452 - artificial_uncertainty_11: 0.0010014829326475561 - artificial_uncertainty_12: 0.013017033712164195 - artificial_uncertainty_13: 0.22844029990655154 - artificial_uncertainty_14: -1.6566666400670123 - artificial_uncertainty_15: 0.0010408141796567536 - artificial_uncertainty_16: 0.08833666336040528 - artificial_uncertainty_17: -0.015343973605410344 -- artificial_uncertainty_0: 65.36953299431927 - artificial_uncertainty_1: -1.1656426838403924 - artificial_uncertainty_2: -4.6642778267512295 - artificial_uncertainty_3: 0.013778996332459341 - artificial_uncertainty_4: -0.03953293866441648 - artificial_uncertainty_5: 0.035258998354460246 - artificial_uncertainty_6: 0.12031914360591074 - artificial_uncertainty_7: 0.0543743231923964 - artificial_uncertainty_8: 0.02472169132250695 - artificial_uncertainty_9: -0.0022782198374254985 - artificial_uncertainty_10: 2.3304205032780616 - artificial_uncertainty_11: 0.004159726206407823 - artificial_uncertainty_12: 0.017464200715647707 - artificial_uncertainty_13: 0.5450735497455167 - artificial_uncertainty_14: -0.9980657991618325 - artificial_uncertainty_15: 0.021790541229271577 - artificial_uncertainty_16: -0.017875240786894352 - artificial_uncertainty_17: -0.03399291101645208 -- artificial_uncertainty_0: 65.8667055760126 - artificial_uncertainty_1: -1.2920347918336914 - artificial_uncertainty_2: -4.687022450665622 - artificial_uncertainty_3: 0.1495306935341632 - artificial_uncertainty_4: -0.1149081125444478 - artificial_uncertainty_5: 0.07538790183027466 - artificial_uncertainty_6: 0.011414496746952583 - artificial_uncertainty_7: -0.0073550251952846915 - artificial_uncertainty_8: 0.04392539754095723 - artificial_uncertainty_9: 0.050286454760158035 - artificial_uncertainty_10: -0.053567165743881866 - artificial_uncertainty_11: -0.12049538346840033 - artificial_uncertainty_12: -0.5020357167029854 - artificial_uncertainty_13: -1.4872647067689286 - artificial_uncertainty_14: 1.1374439892886308 - artificial_uncertainty_15: 0.03682617659005451 - artificial_uncertainty_16: 1.3286220069381813 - artificial_uncertainty_17: 0.29601436528605846 -- artificial_uncertainty_0: 65.22467994686862 - artificial_uncertainty_1: -6.834720655619154 - artificial_uncertainty_2: 2.0137357674507577 - artificial_uncertainty_3: -0.9523430976859638 - artificial_uncertainty_4: 1.2745916719394574 - artificial_uncertainty_5: 0.4101444884204508 - artificial_uncertainty_6: -2.5254921869189153 - artificial_uncertainty_7: 0.9092689295618648 - artificial_uncertainty_8: -0.33123162367803616 - artificial_uncertainty_9: -0.06622784886656415 - artificial_uncertainty_10: 0.14530118283243246 - artificial_uncertainty_11: -0.08793775821108163 - artificial_uncertainty_12: -0.07966494434824818 - artificial_uncertainty_13: -0.169374840337866 - artificial_uncertainty_14: -0.017792287685468897 - artificial_uncertainty_15: 0.12072767621748805 - artificial_uncertainty_16: -0.12465065115186161 - artificial_uncertainty_17: 0.025570149341718303 -- artificial_uncertainty_0: 65.58219520551053 - artificial_uncertainty_1: -6.870602884702714 - artificial_uncertainty_2: 1.9319378882674099 - artificial_uncertainty_3: -0.835531235506241 - artificial_uncertainty_4: 1.6388151174452052 - artificial_uncertainty_5: -2.6624645912034732 - artificial_uncertainty_6: 1.0387730901946577 - artificial_uncertainty_7: -0.3275833639288583 - artificial_uncertainty_8: 0.14141309382661144 - artificial_uncertainty_9: 0.013005095777181104 - artificial_uncertainty_10: 0.003797080888832187 - artificial_uncertainty_11: 0.02449148294883119 - artificial_uncertainty_12: 0.027301004719129458 - artificial_uncertainty_13: -0.0651536945303103 - artificial_uncertainty_14: -0.025057512103618593 - artificial_uncertainty_15: -0.03448152431349454 - artificial_uncertainty_16: 0.08357681048394278 - artificial_uncertainty_17: 0.0032347645808898364 -- artificial_uncertainty_0: 66.94635540981346 - artificial_uncertainty_1: -7.384048775630785 - artificial_uncertainty_2: 2.113603624438047 - artificial_uncertainty_3: -0.3662617860832457 - artificial_uncertainty_4: 1.1027709363677425 - artificial_uncertainty_5: 2.449444796091467 - artificial_uncertainty_6: 1.494296294202947 - artificial_uncertainty_7: -0.5580646526157593 - artificial_uncertainty_8: 0.20362973118643957 - artificial_uncertainty_9: 0.04421612689698226 - artificial_uncertainty_10: -0.08641397361146312 - artificial_uncertainty_11: 0.057686108170431474 - artificial_uncertainty_12: 0.04217230025984787 - artificial_uncertainty_13: 0.13213781896925528 - artificial_uncertainty_14: 0.010322317460083925 - artificial_uncertainty_15: -0.08506567727883106 - artificial_uncertainty_16: 0.09978018927222727 - artificial_uncertainty_17: -0.015473842399528677 -- artificial_uncertainty_0: 65.67348137747052 - artificial_uncertainty_1: -7.484238442749145 - artificial_uncertainty_2: 1.9304945484891447 - artificial_uncertainty_3: 2.002652532530273 - artificial_uncertainty_4: -3.9009994093380764 - artificial_uncertainty_5: -0.3383683302495119 - artificial_uncertainty_6: -0.09442439832176158 - artificial_uncertainty_7: 0.0006040497938228115 - artificial_uncertainty_8: -0.04721957137823536 - artificial_uncertainty_9: -0.0016750917085821485 - artificial_uncertainty_10: -0.0597694800716094 - artificial_uncertainty_11: -0.01053609513720173 - artificial_uncertainty_12: -0.008645864361918444 - artificial_uncertainty_13: 0.1355117958969333 - artificial_uncertainty_14: 0.019903444663502735 - artificial_uncertainty_15: 0.007082637625087356 - artificial_uncertainty_16: -0.05757420705716509 - artificial_uncertainty_17: -0.007146655167910259 +- artificial_uncertainty_0: 6.12095482e+01 + artificial_uncertainty_1: 3.46317802e+00 + artificial_uncertainty_2: 1.14856022e+00 + artificial_uncertainty_3: -1.60169879e+00 + artificial_uncertainty_4: -8.46997557e-01 + artificial_uncertainty_5: 2.86520075e-03 + artificial_uncertainty_6: -4.23615801e-01 + artificial_uncertainty_7: -4.93858276e-01 + artificial_uncertainty_8: 6.16276682e-01 + artificial_uncertainty_9: 7.54367902e-01 + artificial_uncertainty_10: 6.02281724e-02 + artificial_uncertainty_11: 1.72980228e+00 + artificial_uncertainty_12: 8.11690327e-01 + artificial_uncertainty_13: -1.33451176e-01 + artificial_uncertainty_14: -2.93648927e-02 + artificial_uncertainty_15: -1.12826883e-01 + artificial_uncertainty_16: 4.27170775e-01 + artificial_uncertainty_17: -1.51498283e-02 +- artificial_uncertainty_0: 6.15681004e+01 + artificial_uncertainty_1: 3.56601838e+00 + artificial_uncertainty_2: 1.07013467e+00 + artificial_uncertainty_3: -1.36922213e+00 + artificial_uncertainty_4: -6.10832757e-01 + artificial_uncertainty_5: -9.88078813e-03 + artificial_uncertainty_6: -1.59008574e-01 + artificial_uncertainty_7: -6.67010036e-01 + artificial_uncertainty_8: 5.69790100e-01 + artificial_uncertainty_9: 3.66154916e-01 + artificial_uncertainty_10: -3.38821347e-02 + artificial_uncertainty_11: -8.04542612e-02 + artificial_uncertainty_12: -2.10569499e+00 + artificial_uncertainty_13: 3.74838463e-01 + artificial_uncertainty_14: 4.90970952e-02 + artificial_uncertainty_15: 5.65241948e-02 + artificial_uncertainty_16: -5.08454084e-01 + artificial_uncertainty_17: -5.59383115e-02 +- artificial_uncertainty_0: 6.19081692e+01 + artificial_uncertainty_1: 3.59649093e+00 + artificial_uncertainty_2: 1.13599079e+00 + artificial_uncertainty_3: -1.79316358e+00 + artificial_uncertainty_4: -9.17111245e-01 + artificial_uncertainty_5: 6.22349211e-02 + artificial_uncertainty_6: 1.11488421e+00 + artificial_uncertainty_7: 2.08660063e+00 + artificial_uncertainty_8: -1.56312177e+00 + artificial_uncertainty_9: 6.44767664e-02 + artificial_uncertainty_10: -3.96872546e-02 + artificial_uncertainty_11: -2.12821272e-02 + artificial_uncertainty_12: -6.24107452e-02 + artificial_uncertainty_13: -4.07762354e-02 + artificial_uncertainty_14: 6.60879733e-03 + artificial_uncertainty_15: -7.60222714e-03 + artificial_uncertainty_16: 2.54736099e-02 + artificial_uncertainty_17: -3.70295360e-03 +- artificial_uncertainty_0: 6.20536402e+01 + artificial_uncertainty_1: 3.50762747e+00 + artificial_uncertainty_2: 1.08272922e+00 + artificial_uncertainty_3: -1.34374550e+00 + artificial_uncertainty_4: -7.01429467e-01 + artificial_uncertainty_5: 3.11757607e-02 + artificial_uncertainty_6: -1.91229147e-01 + artificial_uncertainty_7: -5.65887753e-01 + artificial_uncertainty_8: 5.94889131e-01 + artificial_uncertainty_9: 7.42246205e-01 + artificial_uncertainty_10: 5.13444792e-02 + artificial_uncertainty_11: -1.76886818e+00 + artificial_uncertainty_12: 9.82178407e-01 + artificial_uncertainty_13: -2.25917318e-01 + artificial_uncertainty_14: -5.90692468e-02 + artificial_uncertainty_15: 2.72828053e-02 + artificial_uncertainty_16: 2.17291556e-02 + artificial_uncertainty_17: 4.38805952e-02 +- artificial_uncertainty_0: 6.19386403e+01 + artificial_uncertainty_1: 3.47940972e+00 + artificial_uncertainty_2: 1.02951607e+00 + artificial_uncertainty_3: -1.19992016e+00 + artificial_uncertainty_4: -6.46659906e-01 + artificial_uncertainty_5: 4.25835069e-02 + artificial_uncertainty_6: -8.07016067e-02 + artificial_uncertainty_7: -5.10198853e-01 + artificial_uncertainty_8: 4.49172379e-01 + artificial_uncertainty_9: -2.09633939e+00 + artificial_uncertainty_10: 4.70650889e-02 + artificial_uncertainty_11: 2.03200767e-03 + artificial_uncertainty_12: 2.63866408e-01 + artificial_uncertainty_13: -2.25691158e-01 + artificial_uncertainty_14: -3.46513299e-02 + artificial_uncertainty_15: 8.53428476e-02 + artificial_uncertainty_16: 2.43549177e-02 + artificial_uncertainty_17: 1.03502022e-02 +- artificial_uncertainty_0: 6.21881192e+01 + artificial_uncertainty_1: 3.49179370e+00 + artificial_uncertainty_2: 1.04182852e+00 + artificial_uncertainty_3: 1.24390942e+00 + artificial_uncertainty_4: 6.69634706e-01 + artificial_uncertainty_5: -8.14149537e-02 + artificial_uncertainty_6: -3.61942749e-01 + artificial_uncertainty_7: -4.19205682e-01 + artificial_uncertainty_8: -7.78581388e-01 + artificial_uncertainty_9: -6.18562074e-02 + artificial_uncertainty_10: -6.82207684e-02 + artificial_uncertainty_11: -1.63314562e-01 + artificial_uncertainty_12: -4.78973502e-02 + artificial_uncertainty_13: 8.98504901e-01 + artificial_uncertainty_14: 2.72177007e-01 + artificial_uncertainty_15: -1.24926037e+00 + artificial_uncertainty_16: 1.00729810e+00 + artificial_uncertainty_17: -1.39994869e+00 +- artificial_uncertainty_0: 6.26620698e+01 + artificial_uncertainty_1: 3.48088135e+00 + artificial_uncertainty_2: 1.01227272e+00 + artificial_uncertainty_3: 1.28402200e+00 + artificial_uncertainty_4: 6.59832309e-01 + artificial_uncertainty_5: -4.38486218e-02 + artificial_uncertainty_6: -1.79774127e-01 + artificial_uncertainty_7: -3.90722736e-01 + artificial_uncertainty_8: -6.73205654e-01 + artificial_uncertainty_9: -1.36588160e-03 + artificial_uncertainty_10: -3.66841810e-02 + artificial_uncertainty_11: 2.36542586e-02 + artificial_uncertainty_12: 4.62015083e-02 + artificial_uncertainty_13: 5.95741213e-01 + artificial_uncertainty_14: 1.04656491e-01 + artificial_uncertainty_15: -6.63244202e-01 + artificial_uncertainty_16: 5.07377937e-02 + artificial_uncertainty_17: 2.15083787e+00 +- artificial_uncertainty_0: 6.27907073e+01 + artificial_uncertainty_1: 3.44537227e+00 + artificial_uncertainty_2: 9.89664009e-01 + artificial_uncertainty_3: 1.36848032e+00 + artificial_uncertainty_4: 6.89849404e-01 + artificial_uncertainty_5: -1.90746918e-02 + artificial_uncertainty_6: -3.85204802e-02 + artificial_uncertainty_7: -4.77888683e-01 + artificial_uncertainty_8: -7.35046485e-01 + artificial_uncertainty_9: 9.25529713e-02 + artificial_uncertainty_10: -5.20177619e-02 + artificial_uncertainty_11: 7.67065820e-02 + artificial_uncertainty_12: 9.19290059e-02 + artificial_uncertainty_13: 3.66746377e-01 + artificial_uncertainty_14: 1.26287304e-01 + artificial_uncertainty_15: 2.29989394e+00 + artificial_uncertainty_16: 2.86511947e-01 + artificial_uncertainty_17: -2.38885983e-01 +- artificial_uncertainty_0: 6.38161543e+01 + artificial_uncertainty_1: 3.42041250e+00 + artificial_uncertainty_2: 1.06563013e+00 + artificial_uncertainty_3: 1.92074573e+00 + artificial_uncertainty_4: 8.39999280e-01 + artificial_uncertainty_5: -6.07241587e-03 + artificial_uncertainty_6: 2.65933039e-01 + artificial_uncertainty_7: 1.76675798e+00 + artificial_uncertainty_8: 2.14211494e+00 + artificial_uncertainty_9: -3.85412496e-03 + artificial_uncertainty_10: -8.26226970e-02 + artificial_uncertainty_11: 1.27931855e-02 + artificial_uncertainty_12: -1.34863753e-02 + artificial_uncertainty_13: 1.49799481e-01 + artificial_uncertainty_14: 4.66015074e-02 + artificial_uncertainty_15: 1.43502869e-02 + artificial_uncertainty_16: 4.40270991e-02 + artificial_uncertainty_17: -4.24358583e-02 +- artificial_uncertainty_0: 6.40555230e+01 + artificial_uncertainty_1: 3.34255081e+00 + artificial_uncertainty_2: 1.01483645e+00 + artificial_uncertainty_3: 1.66742750e+00 + artificial_uncertainty_4: 6.34879548e-01 + artificial_uncertainty_5: 6.42199420e-02 + artificial_uncertainty_6: 9.06684559e-02 + artificial_uncertainty_7: -4.01667492e-01 + artificial_uncertainty_8: -6.12032738e-01 + artificial_uncertainty_9: 1.32929472e-01 + artificial_uncertainty_10: 2.08184165e-01 + artificial_uncertainty_11: 1.93024128e-01 + artificial_uncertainty_12: 1.13215882e-02 + artificial_uncertainty_13: -1.81736211e+00 + artificial_uncertainty_14: -5.25590866e-01 + artificial_uncertainty_15: -4.38763650e-01 + artificial_uncertainty_16: -1.28221359e+00 + artificial_uncertainty_17: -4.33198139e-01 +- artificial_uncertainty_0: 6.48156868e+01 + artificial_uncertainty_1: -9.12562799e-01 + artificial_uncertainty_2: -4.30397042e+00 + artificial_uncertainty_3: -2.36228757e-01 + artificial_uncertainty_4: 1.26636709e-01 + artificial_uncertainty_5: -4.98309687e-02 + artificial_uncertainty_6: -6.38500138e-03 + artificial_uncertainty_7: -2.44466649e-02 + artificial_uncertainty_8: -4.07727477e-02 + artificial_uncertainty_9: -1.60359604e-02 + artificial_uncertainty_10: -4.17017438e-01 + artificial_uncertainty_11: 1.42952419e-01 + artificial_uncertainty_12: 5.12390960e-01 + artificial_uncertainty_13: 7.91660442e-01 + artificial_uncertainty_14: 1.57496552e+00 + artificial_uncertainty_15: -8.26410175e-02 + artificial_uncertainty_16: -1.48250749e+00 + artificial_uncertainty_17: -2.72727614e-01 +- artificial_uncertainty_0: 6.48875288e+01 + artificial_uncertainty_1: -1.05823022e+00 + artificial_uncertainty_2: -4.53991494e+00 + artificial_uncertainty_3: -1.17078140e-01 + artificial_uncertainty_4: 4.51234747e-02 + artificial_uncertainty_5: -1.00354722e-02 + artificial_uncertainty_6: -1.30424121e-01 + artificial_uncertainty_7: 5.97517179e-03 + artificial_uncertainty_8: -2.43023410e-02 + artificial_uncertainty_9: -8.93179099e-03 + artificial_uncertainty_10: -1.93098441e+00 + artificial_uncertainty_11: 1.00148293e-03 + artificial_uncertainty_12: 1.30170337e-02 + artificial_uncertainty_13: 2.28440300e-01 + artificial_uncertainty_14: -1.65666664e+00 + artificial_uncertainty_15: 1.04081418e-03 + artificial_uncertainty_16: 8.83366634e-02 + artificial_uncertainty_17: -1.53439736e-02 +- artificial_uncertainty_0: 6.53695330e+01 + artificial_uncertainty_1: -1.16564268e+00 + artificial_uncertainty_2: -4.66427783e+00 + artificial_uncertainty_3: 1.37789963e-02 + artificial_uncertainty_4: -3.95329387e-02 + artificial_uncertainty_5: 3.52589984e-02 + artificial_uncertainty_6: 1.20319144e-01 + artificial_uncertainty_7: 5.43743232e-02 + artificial_uncertainty_8: 2.47216913e-02 + artificial_uncertainty_9: -2.27821984e-03 + artificial_uncertainty_10: 2.33042050e+00 + artificial_uncertainty_11: 4.15972621e-03 + artificial_uncertainty_12: 1.74642007e-02 + artificial_uncertainty_13: 5.45073550e-01 + artificial_uncertainty_14: -9.98065799e-01 + artificial_uncertainty_15: 2.17905412e-02 + artificial_uncertainty_16: -1.78752408e-02 + artificial_uncertainty_17: -3.39929110e-02 +- artificial_uncertainty_0: 6.58667056e+01 + artificial_uncertainty_1: -1.29203479e+00 + artificial_uncertainty_2: -4.68702245e+00 + artificial_uncertainty_3: 1.49530694e-01 + artificial_uncertainty_4: -1.14908113e-01 + artificial_uncertainty_5: 7.53879018e-02 + artificial_uncertainty_6: 1.14144967e-02 + artificial_uncertainty_7: -7.35502520e-03 + artificial_uncertainty_8: 4.39253975e-02 + artificial_uncertainty_9: 5.02864548e-02 + artificial_uncertainty_10: -5.35671657e-02 + artificial_uncertainty_11: -1.20495383e-01 + artificial_uncertainty_12: -5.02035717e-01 + artificial_uncertainty_13: -1.48726471e+00 + artificial_uncertainty_14: 1.13744399e+00 + artificial_uncertainty_15: 3.68261766e-02 + artificial_uncertainty_16: 1.32862201e+00 + artificial_uncertainty_17: 2.96014365e-01 +- artificial_uncertainty_0: 6.52246799e+01 + artificial_uncertainty_1: -6.83472066e+00 + artificial_uncertainty_2: 2.01373577e+00 + artificial_uncertainty_3: -9.52343098e-01 + artificial_uncertainty_4: 1.27459167e+00 + artificial_uncertainty_5: 4.10144488e-01 + artificial_uncertainty_6: -2.52549219e+00 + artificial_uncertainty_7: 9.09268930e-01 + artificial_uncertainty_8: -3.31231624e-01 + artificial_uncertainty_9: -6.62278489e-02 + artificial_uncertainty_10: 1.45301183e-01 + artificial_uncertainty_11: -8.79377582e-02 + artificial_uncertainty_12: -7.96649443e-02 + artificial_uncertainty_13: -1.69374840e-01 + artificial_uncertainty_14: -1.77922877e-02 + artificial_uncertainty_15: 1.20727676e-01 + artificial_uncertainty_16: -1.24650651e-01 + artificial_uncertainty_17: 2.55701493e-02 +- artificial_uncertainty_0: 6.55821952e+01 + artificial_uncertainty_1: -6.87060288e+00 + artificial_uncertainty_2: 1.93193789e+00 + artificial_uncertainty_3: -8.35531236e-01 + artificial_uncertainty_4: 1.63881512e+00 + artificial_uncertainty_5: -2.66246459e+00 + artificial_uncertainty_6: 1.03877309e+00 + artificial_uncertainty_7: -3.27583364e-01 + artificial_uncertainty_8: 1.41413094e-01 + artificial_uncertainty_9: 1.30050958e-02 + artificial_uncertainty_10: 3.79708089e-03 + artificial_uncertainty_11: 2.44914829e-02 + artificial_uncertainty_12: 2.73010047e-02 + artificial_uncertainty_13: -6.51536945e-02 + artificial_uncertainty_14: -2.50575121e-02 + artificial_uncertainty_15: -3.44815243e-02 + artificial_uncertainty_16: 8.35768105e-02 + artificial_uncertainty_17: 3.23476458e-03 +- artificial_uncertainty_0: 6.69463554e+01 + artificial_uncertainty_1: -7.38404878e+00 + artificial_uncertainty_2: 2.11360362e+00 + artificial_uncertainty_3: -3.66261786e-01 + artificial_uncertainty_4: 1.10277094e+00 + artificial_uncertainty_5: 2.44944480e+00 + artificial_uncertainty_6: 1.49429629e+00 + artificial_uncertainty_7: -5.58064653e-01 + artificial_uncertainty_8: 2.03629731e-01 + artificial_uncertainty_9: 4.42161269e-02 + artificial_uncertainty_10: -8.64139736e-02 + artificial_uncertainty_11: 5.76861082e-02 + artificial_uncertainty_12: 4.21723003e-02 + artificial_uncertainty_13: 1.32137819e-01 + artificial_uncertainty_14: 1.03223175e-02 + artificial_uncertainty_15: -8.50656773e-02 + artificial_uncertainty_16: 9.97801893e-02 + artificial_uncertainty_17: -1.54738424e-02 +- artificial_uncertainty_0: 6.56734814e+01 + artificial_uncertainty_1: -7.48423844e+00 + artificial_uncertainty_2: 1.93049455e+00 + artificial_uncertainty_3: 2.00265253e+00 + artificial_uncertainty_4: -3.90099941e+00 + artificial_uncertainty_5: -3.38368330e-01 + artificial_uncertainty_6: -9.44243983e-02 + artificial_uncertainty_7: 6.04049794e-04 + artificial_uncertainty_8: -4.72195714e-02 + artificial_uncertainty_9: -1.67509171e-03 + artificial_uncertainty_10: -5.97694801e-02 + artificial_uncertainty_11: -1.05360951e-02 + artificial_uncertainty_12: -8.64586436e-03 + artificial_uncertainty_13: 1.35511796e-01 + artificial_uncertainty_14: 1.99034447e-02 + artificial_uncertainty_15: 7.08263763e-03 + artificial_uncertainty_16: -5.75742071e-02 + artificial_uncertainty_17: -7.14665517e-03 diff --git a/nnpdf_data/nnpdf_data/commondata/CMS_WPWM_7TEV_ELECTRON/data.yaml b/nnpdf_data/nnpdf_data/commondata/CMS_WPWM_7TEV_ELECTRON/data.yaml index d7b1cfb390..1b5b6f0c56 100644 --- a/nnpdf_data/nnpdf_data/commondata/CMS_WPWM_7TEV_ELECTRON/data.yaml +++ b/nnpdf_data/nnpdf_data/commondata/CMS_WPWM_7TEV_ELECTRON/data.yaml @@ -1,5 +1,5 @@ data_central: -- 0.10200000000000001 +- 1.02000000e-01 - 0.111 - 0.116 - 0.123 diff --git a/nnpdf_data/nnpdf_data/commondata/CMS_WPWM_7TEV_ELECTRON/filter.py b/nnpdf_data/nnpdf_data/commondata/CMS_WPWM_7TEV_ELECTRON/filter.py index 13509f0a65..27f332e58b 100644 --- a/nnpdf_data/nnpdf_data/commondata/CMS_WPWM_7TEV_ELECTRON/filter.py +++ b/nnpdf_data/nnpdf_data/commondata/CMS_WPWM_7TEV_ELECTRON/filter.py @@ -4,7 +4,9 @@ import pandas as pd import yaml -from nnpdf_data.filter_utils.utils import covmat_to_artunc +from nnpdf_data.filter_utils.utils import covmat_to_artunc, prettify_float + +yaml.add_representer(float, prettify_float) MZ_VALUE = 91.1876 # GeV MW_VALUE = 80.398 # GeV diff --git a/nnpdf_data/nnpdf_data/commondata/CMS_WPWM_7TEV_ELECTRON/kinematics.yaml b/nnpdf_data/nnpdf_data/commondata/CMS_WPWM_7TEV_ELECTRON/kinematics.yaml index e518350cca..7a166af12a 100644 --- a/nnpdf_data/nnpdf_data/commondata/CMS_WPWM_7TEV_ELECTRON/kinematics.yaml +++ b/nnpdf_data/nnpdf_data/commondata/CMS_WPWM_7TEV_ELECTRON/kinematics.yaml @@ -5,7 +5,7 @@ bins: max: 0.2 M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null @@ -13,11 +13,11 @@ bins: max: null - eta: min: 0.2 - mid: 0.30000000000000004 + mid: 3.00000000e-01 max: 0.4 M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null @@ -29,7 +29,7 @@ bins: max: 0.6 M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null @@ -41,7 +41,7 @@ bins: max: 0.8 M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null @@ -53,7 +53,7 @@ bins: max: 1.0 M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null @@ -65,7 +65,7 @@ bins: max: 1.2 M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null @@ -73,11 +73,11 @@ bins: max: null - eta: min: 1.2 - mid: 1.2999999999999998 + mid: 1.30000000e+00 max: 1.4 M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null @@ -85,11 +85,11 @@ bins: max: null - eta: min: 1.6 - mid: 1.7000000000000002 + mid: 1.70000000e+00 max: 1.8 M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null @@ -101,7 +101,7 @@ bins: max: 2.0 M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null @@ -113,7 +113,7 @@ bins: max: 2.2 M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null @@ -125,7 +125,7 @@ bins: max: 2.4 M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null diff --git a/nnpdf_data/nnpdf_data/commondata/CMS_WPWM_7TEV_ELECTRON/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/CMS_WPWM_7TEV_ELECTRON/uncertainties.yaml index 04470b9d0e..bb6ced41a3 100644 --- a/nnpdf_data/nnpdf_data/commondata/CMS_WPWM_7TEV_ELECTRON/uncertainties.yaml +++ b/nnpdf_data/nnpdf_data/commondata/CMS_WPWM_7TEV_ELECTRON/uncertainties.yaml @@ -48,135 +48,135 @@ definitions: treatment: ADD type: UNCORR bins: -- sys_corr_1: -0.0005273878529736784 - sys_corr_2: 0.0004920757500873148 - sys_corr_3: -0.0003137334495290517 - sys_corr_4: 0.00028280270500595056 - sys_corr_5: -0.0014602701195220505 - sys_corr_6: 0.0009238102753355426 - sys_corr_7: 0.0011666468861369695 - sys_corr_8: -0.000813957570296357 - sys_corr_9: -0.004160626781657518 - sys_corr_10: 0.0007263524698049898 - sys_corr_11: -0.00039180123124070106 +- sys_corr_1: -5.27387853e-04 + sys_corr_2: 4.92075750e-04 + sys_corr_3: -3.13733450e-04 + sys_corr_4: 2.82802705e-04 + sys_corr_5: -1.46027012e-03 + sys_corr_6: 9.23810275e-04 + sys_corr_7: 1.16664689e-03 + sys_corr_8: -8.13957570e-04 + sys_corr_9: -4.16062678e-03 + sys_corr_10: 7.26352470e-04 + sys_corr_11: -3.91801231e-04 stat: 0.003 -- sys_corr_1: -0.000605612942447761 - sys_corr_2: 0.0006069129267739193 - sys_corr_3: -0.0003334843380478523 - sys_corr_4: 0.0002998867793259011 - sys_corr_5: -0.0018540480473812244 - sys_corr_6: 0.0013242803339956726 - sys_corr_7: 0.0005090197451955851 - sys_corr_8: -0.001692936651853292 - sys_corr_9: 0.0011786830295639102 - sys_corr_10: 0.0026627475292565076 - sys_corr_11: 0.0029099621161073727 +- sys_corr_1: -6.05612942e-04 + sys_corr_2: 6.06912927e-04 + sys_corr_3: -3.33484338e-04 + sys_corr_4: 2.99886779e-04 + sys_corr_5: -1.85404805e-03 + sys_corr_6: 1.32428033e-03 + sys_corr_7: 5.09019745e-04 + sys_corr_8: -1.69293665e-03 + sys_corr_9: 1.17868303e-03 + sys_corr_10: 2.66274753e-03 + sys_corr_11: 2.90996212e-03 stat: 0.003 -- sys_corr_1: -0.0005323980721454376 - sys_corr_2: 0.0005296740177105887 - sys_corr_3: -0.0003144543061539523 - sys_corr_4: 0.0002501905541965663 - sys_corr_5: -0.0017867252932159126 - sys_corr_6: 0.0012504273673549543 - sys_corr_7: 0.00040503634455172467 - sys_corr_8: -0.0024987012989540615 - sys_corr_9: 0.00043304844734939717 - sys_corr_10: -0.0037567404488432032 - sys_corr_11: 0.0006406033481754738 +- sys_corr_1: -5.32398072e-04 + sys_corr_2: 5.29674018e-04 + sys_corr_3: -3.14454306e-04 + sys_corr_4: 2.50190554e-04 + sys_corr_5: -1.78672529e-03 + sys_corr_6: 1.25042737e-03 + sys_corr_7: 4.05036345e-04 + sys_corr_8: -2.49870130e-03 + sys_corr_9: 4.33048447e-04 + sys_corr_10: -3.75674045e-03 + sys_corr_11: 6.40603348e-04 stat: 0.003 -- sys_corr_1: -0.0006019743290661977 - sys_corr_2: 0.0005857345211502029 - sys_corr_3: -0.0003523008205602395 - sys_corr_4: 0.0002724991355419206 - sys_corr_5: -0.0018986940872220742 - sys_corr_6: 0.0010865145620197552 - sys_corr_7: 0.0009742935858834207 - sys_corr_8: -0.0012038153800011228 - sys_corr_9: 0.0015699535896636985 - sys_corr_10: 0.001248551929660072 - sys_corr_11: -0.0036726777077672056 +- sys_corr_1: -6.01974329e-04 + sys_corr_2: 5.85734521e-04 + sys_corr_3: -3.52300821e-04 + sys_corr_4: 2.72499136e-04 + sys_corr_5: -1.89869409e-03 + sys_corr_6: 1.08651456e-03 + sys_corr_7: 9.74293586e-04 + sys_corr_8: -1.20381538e-03 + sys_corr_9: 1.56995359e-03 + sys_corr_10: 1.24855193e-03 + sys_corr_11: -3.67267771e-03 stat: 0.003 -- sys_corr_1: -0.0006976970931417799 - sys_corr_2: 0.0006762321579659522 - sys_corr_3: -0.00035876609691431414 - sys_corr_4: 0.00031164489448902736 - sys_corr_5: -0.0018072210766176913 - sys_corr_6: 0.0007909641675287473 - sys_corr_7: -0.0041529835549908795 - sys_corr_8: -0.0005267234021665906 - sys_corr_9: -0.0005716977971515297 - sys_corr_10: 0.0003744647764288975 - sys_corr_11: -0.0004966373502303731 +- sys_corr_1: -6.97697093e-04 + sys_corr_2: 6.76232158e-04 + sys_corr_3: -3.58766097e-04 + sys_corr_4: 3.11644894e-04 + sys_corr_5: -1.80722108e-03 + sys_corr_6: 7.90964168e-04 + sys_corr_7: -4.15298355e-03 + sys_corr_8: -5.26723402e-04 + sys_corr_9: -5.71697797e-04 + sys_corr_10: 3.74464776e-04 + sys_corr_11: -4.96637350e-04 stat: 0.003 -- sys_corr_1: -0.0008670249068697411 - sys_corr_2: 0.0008537619094542121 - sys_corr_3: -0.00040070653643431154 - sys_corr_4: 0.0003972370938854017 - sys_corr_5: -0.0026403129289845665 - sys_corr_6: 0.0026647567495270935 - sys_corr_7: 0.000440948802075366 - sys_corr_8: 0.003746818188682471 - sys_corr_9: 0.00032797266627980357 - sys_corr_10: -0.0006687235607489003 - sys_corr_11: 0.00037546614094845145 +- sys_corr_1: -8.67024907e-04 + sys_corr_2: 8.53761909e-04 + sys_corr_3: -4.00706536e-04 + sys_corr_4: 3.97237094e-04 + sys_corr_5: -2.64031293e-03 + sys_corr_6: 2.66475675e-03 + sys_corr_7: 4.40948802e-04 + sys_corr_8: 3.74681819e-03 + sys_corr_9: 3.27972666e-04 + sys_corr_10: -6.68723561e-04 + sys_corr_11: 3.75466141e-04 stat: 0.003 -- sys_corr_1: -0.0008975426501703232 - sys_corr_2: 0.000935690092194723 - sys_corr_3: -0.0004600290621739182 - sys_corr_4: 0.0003860530853620195 - sys_corr_5: -0.004193370705167084 - sys_corr_6: -0.004053372820356177 - sys_corr_7: 0.00029354841563855155 - sys_corr_8: 0.0005255775721301168 - sys_corr_9: 9.194878363876685e-05 - sys_corr_10: -0.00015244975381778223 - sys_corr_11: 0.00022349600684170827 +- sys_corr_1: -8.97542650e-04 + sys_corr_2: 9.35690092e-04 + sys_corr_3: -4.60029062e-04 + sys_corr_4: 3.86053085e-04 + sys_corr_5: -4.19337071e-03 + sys_corr_6: -4.05337282e-03 + sys_corr_7: 2.93548416e-04 + sys_corr_8: 5.25577572e-04 + sys_corr_9: 9.19487836e-05 + sys_corr_10: -1.52449754e-04 + sys_corr_11: 2.23496007e-04 stat: 0.003 -- sys_corr_1: -0.001399977492573946 - sys_corr_2: 0.0030893150994662616 - sys_corr_3: -0.008847637987495544 - sys_corr_4: -0.002076625106990114 - sys_corr_5: 0.0008833716306296023 - sys_corr_6: -0.00013441048331305018 - sys_corr_7: 3.2049495811974455e-05 - sys_corr_8: 4.654275603138454e-05 - sys_corr_9: 2.6238289808281287e-05 - sys_corr_10: -2.18226167278089e-05 - sys_corr_11: 1.886147239120436e-05 +- sys_corr_1: -1.39997749e-03 + sys_corr_2: 3.08931510e-03 + sys_corr_3: -8.84763799e-03 + sys_corr_4: -2.07662511e-03 + sys_corr_5: 8.83371631e-04 + sys_corr_6: -1.34410483e-04 + sys_corr_7: 3.20494958e-05 + sys_corr_8: 4.65427560e-05 + sys_corr_9: 2.62382898e-05 + sys_corr_10: -2.18226167e-05 + sys_corr_11: 1.88614724e-05 stat: 0.003 -- sys_corr_1: -0.0013386957747181579 - sys_corr_2: 0.0021623894718952536 - sys_corr_3: -0.001365239137568912 - sys_corr_4: 0.008545719838293638 - sys_corr_5: 0.0010014322158275917 - sys_corr_6: -0.00017556072673563533 - sys_corr_7: 3.508267138853123e-05 - sys_corr_8: 2.941945017434497e-05 - sys_corr_9: 4.383827444833276e-05 - sys_corr_10: -3.2112373453723295e-05 - sys_corr_11: 4.752772650753369e-06 +- sys_corr_1: -1.33869577e-03 + sys_corr_2: 2.16238947e-03 + sys_corr_3: -1.36523914e-03 + sys_corr_4: 8.54571984e-03 + sys_corr_5: 1.00143222e-03 + sys_corr_6: -1.75560727e-04 + sys_corr_7: 3.50826714e-05 + sys_corr_8: 2.94194502e-05 + sys_corr_9: 4.38382744e-05 + sys_corr_10: -3.21123735e-05 + sys_corr_11: 4.75277265e-06 stat: 0.003 -- sys_corr_1: -0.002556489001393757 - sys_corr_2: 0.009394159793651862 - sys_corr_3: 0.003564456774618782 - sys_corr_4: -0.0015824646728441602 - sys_corr_5: 0.0008311050271506746 - sys_corr_6: -0.00010853839532078258 - sys_corr_7: 4.0885039709417875e-05 - sys_corr_8: -7.469006977797742e-06 - sys_corr_9: 7.943923687240344e-06 - sys_corr_10: -1.6508817889550298e-05 - sys_corr_11: -2.218538452511679e-07 +- sys_corr_1: -2.55648900e-03 + sys_corr_2: 9.39415979e-03 + sys_corr_3: 3.56445677e-03 + sys_corr_4: -1.58246467e-03 + sys_corr_5: 8.31105027e-04 + sys_corr_6: -1.08538395e-04 + sys_corr_7: 4.08850397e-05 + sys_corr_8: -7.46900698e-06 + sys_corr_9: 7.94392369e-06 + sys_corr_10: -1.65088179e-05 + sys_corr_11: -2.21853845e-07 stat: 0.003 -- sys_corr_1: -0.012762587168995332 - sys_corr_2: -0.002707079879055426 - sys_corr_3: 0.0005374443403068927 - sys_corr_4: -0.00047197992053383576 - sys_corr_5: 0.0005170576319380558 - sys_corr_6: -8.873625919098776e-05 - sys_corr_7: 2.583319063654038e-05 - sys_corr_8: 5.581762528389379e-06 - sys_corr_9: 1.732158157047091e-05 - sys_corr_10: -1.3795560081041583e-05 - sys_corr_11: 8.014672536249166e-06 +- sys_corr_1: -1.27625872e-02 + sys_corr_2: -2.70707988e-03 + sys_corr_3: 5.37444340e-04 + sys_corr_4: -4.71979921e-04 + sys_corr_5: 5.17057632e-04 + sys_corr_6: -8.87362592e-05 + sys_corr_7: 2.58331906e-05 + sys_corr_8: 5.58176253e-06 + sys_corr_9: 1.73215816e-05 + sys_corr_10: -1.37955601e-05 + sys_corr_11: 8.01467254e-06 stat: 0.004 diff --git a/nnpdf_data/nnpdf_data/commondata/CMS_WPWM_7TEV_MUON/data.yaml b/nnpdf_data/nnpdf_data/commondata/CMS_WPWM_7TEV_MUON/data.yaml index 3eeea81814..d5dcf566b7 100644 --- a/nnpdf_data/nnpdf_data/commondata/CMS_WPWM_7TEV_MUON/data.yaml +++ b/nnpdf_data/nnpdf_data/commondata/CMS_WPWM_7TEV_MUON/data.yaml @@ -1,12 +1,12 @@ data_central: - 0.1521 -- 0.15380000000000002 -- 0.16030000000000003 +- 1.53800000e-01 +- 1.60300000e-01 - 0.1706 - 0.1788 -- 0.20070000000000002 +- 2.00700000e-01 - 0.2113 - 0.2217 - 0.2461 - 0.2616 -- 0.26489999999999997 +- 2.64900000e-01 diff --git a/nnpdf_data/nnpdf_data/commondata/CMS_WPWM_7TEV_MUON/filter.py b/nnpdf_data/nnpdf_data/commondata/CMS_WPWM_7TEV_MUON/filter.py index 86a9664109..b3b46618ea 100644 --- a/nnpdf_data/nnpdf_data/commondata/CMS_WPWM_7TEV_MUON/filter.py +++ b/nnpdf_data/nnpdf_data/commondata/CMS_WPWM_7TEV_MUON/filter.py @@ -4,7 +4,9 @@ import pandas as pd import yaml -from nnpdf_data.filter_utils.utils import covmat_to_artunc +from nnpdf_data.filter_utils.utils import covmat_to_artunc, prettify_float + +yaml.add_representer(float, prettify_float) MZ_VALUE = 91.1876 # GeV MW_VALUE = 80.398 # GeV diff --git a/nnpdf_data/nnpdf_data/commondata/CMS_WPWM_7TEV_MUON/kinematics.yaml b/nnpdf_data/nnpdf_data/commondata/CMS_WPWM_7TEV_MUON/kinematics.yaml index 1ba42ddd15..4010f47569 100644 --- a/nnpdf_data/nnpdf_data/commondata/CMS_WPWM_7TEV_MUON/kinematics.yaml +++ b/nnpdf_data/nnpdf_data/commondata/CMS_WPWM_7TEV_MUON/kinematics.yaml @@ -5,7 +5,7 @@ bins: max: 0.2 M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null @@ -13,11 +13,11 @@ bins: max: null - eta: min: 0.2 - mid: 0.30000000000000004 + mid: 3.00000000e-01 max: 0.4 M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null @@ -29,7 +29,7 @@ bins: max: 0.6 M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null @@ -41,7 +41,7 @@ bins: max: 0.8 M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null @@ -53,7 +53,7 @@ bins: max: 1.0 M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null @@ -65,7 +65,7 @@ bins: max: 1.2 M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null @@ -73,11 +73,11 @@ bins: max: null - eta: min: 1.2 - mid: 1.2999999999999998 + mid: 1.30000000e+00 max: 1.4 M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null @@ -89,7 +89,7 @@ bins: max: 1.6 M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null @@ -101,7 +101,7 @@ bins: max: 1.85 M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null @@ -113,7 +113,7 @@ bins: max: 2.1 M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null @@ -125,7 +125,7 @@ bins: max: 2.4 M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null diff --git a/nnpdf_data/nnpdf_data/commondata/CMS_WPWM_7TEV_MUON/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/CMS_WPWM_7TEV_MUON/uncertainties.yaml index d11d76f5a8..d8983cea96 100644 --- a/nnpdf_data/nnpdf_data/commondata/CMS_WPWM_7TEV_MUON/uncertainties.yaml +++ b/nnpdf_data/nnpdf_data/commondata/CMS_WPWM_7TEV_MUON/uncertainties.yaml @@ -48,135 +48,135 @@ definitions: treatment: ADD type: UNCORR bins: -- sys_corr_1: -0.000984585778500621 - sys_corr_2: 0.0003233922005557246 - sys_corr_3: -0.0015503601966453868 - sys_corr_4: -0.00010020206458041171 - sys_corr_5: -0.00015060877756354078 - sys_corr_6: -0.00032710007254608094 - sys_corr_7: 0.0005252391308311724 - sys_corr_8: -7.345461655164298e-05 - sys_corr_9: 6.0080094252186345e-05 - sys_corr_10: -4.101782829453246e-05 - sys_corr_11: 0.0005877482414627797 +- sys_corr_1: -9.84585779e-04 + sys_corr_2: 3.23392201e-04 + sys_corr_3: -1.55036020e-03 + sys_corr_4: -1.00202065e-04 + sys_corr_5: -1.50608778e-04 + sys_corr_6: -3.27100073e-04 + sys_corr_7: 5.25239131e-04 + sys_corr_8: -7.34546166e-05 + sys_corr_9: 6.00800943e-05 + sys_corr_10: -4.10178283e-05 + sys_corr_11: 5.87748241e-04 stat: 0.001 -- sys_corr_1: -0.0009943260707242186 - sys_corr_2: 0.0003338553631053611 - sys_corr_3: 0.0003096571581610299 - sys_corr_4: 0.0001687633585026611 - sys_corr_5: 0.0014099571636790227 - sys_corr_6: -0.00028990015520749686 - sys_corr_7: 0.0012799419186664061 - sys_corr_8: 2.0079806167118995e-06 - sys_corr_9: -0.0010566470562937131 - sys_corr_10: -0.00012393317744167982 - sys_corr_11: 0.00017159925123309139 +- sys_corr_1: -9.94326071e-04 + sys_corr_2: 3.33855363e-04 + sys_corr_3: 3.09657158e-04 + sys_corr_4: 1.68763359e-04 + sys_corr_5: 1.40995716e-03 + sys_corr_6: -2.89900155e-04 + sys_corr_7: 1.27994192e-03 + sys_corr_8: 2.00798062e-06 + sys_corr_9: -1.05664706e-03 + sys_corr_10: -1.23933177e-04 + sys_corr_11: 1.71599251e-04 stat: 0.001 -- sys_corr_1: -0.001304210352205811 - sys_corr_2: 0.00045621794289222727 - sys_corr_3: 0.00034507147328384475 - sys_corr_4: 0.001182442972370382 - sys_corr_5: -0.0008936824680379646 - sys_corr_6: -0.00028894083181984527 - sys_corr_7: 0.00046455277846459473 - sys_corr_8: -0.0001990484483319525 - sys_corr_9: -1.8186606104070672e-05 - sys_corr_10: -6.0014825592158214e-05 - sys_corr_11: 2.9993873257778737e-05 +- sys_corr_1: -1.30421035e-03 + sys_corr_2: 4.56217943e-04 + sys_corr_3: 3.45071473e-04 + sys_corr_4: 1.18244297e-03 + sys_corr_5: -8.93682468e-04 + sys_corr_6: -2.88940832e-04 + sys_corr_7: 4.64552778e-04 + sys_corr_8: -1.99048448e-04 + sys_corr_9: -1.81866061e-05 + sys_corr_10: -6.00148256e-05 + sys_corr_11: 2.99938733e-05 stat: 0.0009 -- sys_corr_1: -0.0013142661880973267 - sys_corr_2: 0.00043862553403275215 - sys_corr_3: 0.0005198746057750694 - sys_corr_4: -0.0012613528011420632 - sys_corr_5: -0.000572507809838086 - sys_corr_6: -0.00030445815350715254 - sys_corr_7: 0.0005158887794618767 - sys_corr_8: -0.00019370348664108107 - sys_corr_9: -5.816840532938425e-05 - sys_corr_10: -5.890529892089978e-05 - sys_corr_11: 6.161287503623492e-05 +- sys_corr_1: -1.31426619e-03 + sys_corr_2: 4.38625534e-04 + sys_corr_3: 5.19874606e-04 + sys_corr_4: -1.26135280e-03 + sys_corr_5: -5.72507810e-04 + sys_corr_6: -3.04458154e-04 + sys_corr_7: 5.15888779e-04 + sys_corr_8: -1.93703487e-04 + sys_corr_9: -5.81684053e-05 + sys_corr_10: -5.89052989e-05 + sys_corr_11: 6.16128750e-05 stat: 0.0009 -- sys_corr_1: -0.0012931822112788771 - sys_corr_2: 0.0004710127318390161 - sys_corr_3: 3.8814237279850876e-05 - sys_corr_4: 1.0729838964448091e-05 - sys_corr_5: 7.241020833953251e-05 - sys_corr_6: -0.0004958595501225034 - sys_corr_7: -0.0008424512984216793 - sys_corr_8: -0.0009910793248556079 - sys_corr_9: 8.177294402258874e-05 - sys_corr_10: -0.0009766348572017448 - sys_corr_11: -0.00027480889622020794 +- sys_corr_1: -1.29318221e-03 + sys_corr_2: 4.71012732e-04 + sys_corr_3: 3.88142373e-05 + sys_corr_4: 1.07298390e-05 + sys_corr_5: 7.24102083e-05 + sys_corr_6: -4.95859550e-04 + sys_corr_7: -8.42451298e-04 + sys_corr_8: -9.91079325e-04 + sys_corr_9: 8.17729440e-05 + sys_corr_10: -9.76634857e-04 + sys_corr_11: -2.74808896e-04 stat: 0.001 -- sys_corr_1: -0.00157560780437526 - sys_corr_2: 0.0005863583617473 - sys_corr_3: 1.0742046413493826e-05 - sys_corr_4: 9.336593853968242e-06 - sys_corr_5: 7.97093504606795e-05 - sys_corr_6: -0.0010881116835327667 - sys_corr_7: -0.0003735745562307513 - sys_corr_8: 0.0013970501986830936 - sys_corr_9: -3.173495823849339e-05 - sys_corr_10: 0.00015376418136922403 - sys_corr_11: 5.92601517245879e-05 +- sys_corr_1: -1.57560780e-03 + sys_corr_2: 5.86358362e-04 + sys_corr_3: 1.07420464e-05 + sys_corr_4: 9.33659385e-06 + sys_corr_5: 7.97093505e-05 + sys_corr_6: -1.08811168e-03 + sys_corr_7: -3.73574556e-04 + sys_corr_8: 1.39705020e-03 + sys_corr_9: -3.17349582e-05 + sys_corr_10: 1.53764181e-04 + sys_corr_11: 5.92601517e-05 stat: 0.001 -- sys_corr_1: -0.0015442347488312054 - sys_corr_2: 0.0005051581476905876 - sys_corr_3: 1.490649850591566e-05 - sys_corr_4: -6.309507711923313e-06 - sys_corr_5: 0.00010012394421793309 - sys_corr_6: -7.99442271031103e-05 - sys_corr_7: -0.0007495542736450542 - sys_corr_8: -0.000499741378710325 - sys_corr_9: 0.0016463036551448247 - sys_corr_10: -1.8641322651717034e-06 - sys_corr_11: -0.00026162393527611973 +- sys_corr_1: -1.54423475e-03 + sys_corr_2: 5.05158148e-04 + sys_corr_3: 1.49064985e-05 + sys_corr_4: -6.30950771e-06 + sys_corr_5: 1.00123944e-04 + sys_corr_6: -7.99442271e-05 + sys_corr_7: -7.49554274e-04 + sys_corr_8: -4.99741379e-04 + sys_corr_9: 1.64630366e-03 + sys_corr_10: -1.86413227e-06 + sys_corr_11: -2.61623935e-04 stat: 0.001 -- sys_corr_1: -0.0015083263062554855 - sys_corr_2: 0.00043667948152675725 - sys_corr_3: 3.582960469988251e-05 - sys_corr_4: -7.741717172816087e-06 - sys_corr_5: 3.492667468569511e-05 - sys_corr_6: 0.00035908802709619137 - sys_corr_7: -0.00023790364442215607 - sys_corr_8: -0.00026893828664788043 - sys_corr_9: -0.00035138229820474694 - sys_corr_10: -0.00018257587295564089 - sys_corr_11: -0.0016665570991072185 +- sys_corr_1: -1.50832631e-03 + sys_corr_2: 4.36679482e-04 + sys_corr_3: 3.58296047e-05 + sys_corr_4: -7.74171717e-06 + sys_corr_5: 3.49266747e-05 + sys_corr_6: 3.59088027e-04 + sys_corr_7: -2.37903644e-04 + sys_corr_8: -2.68938287e-04 + sys_corr_9: -3.51382298e-04 + sys_corr_10: -1.82575873e-04 + sys_corr_11: -1.66655710e-03 stat: 0.001 -- sys_corr_1: -0.0018460928189447108 - sys_corr_2: 0.00048878927855639 - sys_corr_3: -1.4323517828633502e-05 - sys_corr_4: 9.644126898992583e-06 - sys_corr_5: 8.91757228440501e-05 - sys_corr_6: 0.0006449900756385242 - sys_corr_7: -0.00012858351515746295 - sys_corr_8: -0.0003825061253126287 - sys_corr_9: -0.00041030451702828266 - sys_corr_10: 0.0016111319030687942 - sys_corr_11: 0.000914772495760113 +- sys_corr_1: -1.84609282e-03 + sys_corr_2: 4.88789279e-04 + sys_corr_3: -1.43235178e-05 + sys_corr_4: 9.64412690e-06 + sys_corr_5: 8.91757228e-05 + sys_corr_6: 6.44990076e-04 + sys_corr_7: -1.28583515e-04 + sys_corr_8: -3.82506125e-04 + sys_corr_9: -4.10304517e-04 + sys_corr_10: 1.61113190e-03 + sys_corr_11: 9.14772496e-04 stat: 0.0009 -- sys_corr_1: -0.0015992003706300187 - sys_corr_2: 0.00030161159980762747 - sys_corr_3: 8.873512003106145e-06 - sys_corr_4: 1.0504762643270958e-06 - sys_corr_5: 1.6573548353951322e-05 - sys_corr_6: 0.001571204261275605 - sys_corr_7: 0.00015737042233621924 - sys_corr_8: 0.0009968580208186658 - sys_corr_9: -0.00010111555473223193 - sys_corr_10: -0.0008356762734893395 - sys_corr_11: 0.00035637402226160837 +- sys_corr_1: -1.59920037e-03 + sys_corr_2: 3.01611600e-04 + sys_corr_3: 8.87351200e-06 + sys_corr_4: 1.05047626e-06 + sys_corr_5: 1.65735484e-05 + sys_corr_6: 1.57120426e-03 + sys_corr_7: 1.57370422e-04 + sys_corr_8: 9.96858021e-04 + sys_corr_9: -1.01115555e-04 + sys_corr_10: -8.35676273e-04 + sys_corr_11: 3.56374022e-04 stat: 0.0009 -- sys_corr_1: -0.002135541196820096 - sys_corr_2: -0.0028942979290311455 - sys_corr_3: -1.6171252875175035e-06 - sys_corr_4: 7.798505342375547e-06 - sys_corr_5: 9.734295406989774e-07 - sys_corr_6: -0.00016236237906349813 - sys_corr_7: 6.342743759272846e-06 - sys_corr_8: -2.890995573450154e-05 - sys_corr_9: 6.878963885477746e-06 - sys_corr_10: -8.449888029722424e-06 - sys_corr_11: -1.0903573097037771e-05 +- sys_corr_1: -2.13554120e-03 + sys_corr_2: -2.89429793e-03 + sys_corr_3: -1.61712529e-06 + sys_corr_4: 7.79850534e-06 + sys_corr_5: 9.73429541e-07 + sys_corr_6: -1.62362379e-04 + sys_corr_7: 6.34274376e-06 + sys_corr_8: -2.89099557e-05 + sys_corr_9: 6.87896389e-06 + sys_corr_10: -8.44988803e-06 + sys_corr_11: -1.09035731e-05 stat: 0.0011 diff --git a/nnpdf_data/nnpdf_data/commondata/CMS_WPWM_8TEV_MUON/filter.py b/nnpdf_data/nnpdf_data/commondata/CMS_WPWM_8TEV_MUON/filter.py index d61b7d3375..e03cdeac2c 100644 --- a/nnpdf_data/nnpdf_data/commondata/CMS_WPWM_8TEV_MUON/filter.py +++ b/nnpdf_data/nnpdf_data/commondata/CMS_WPWM_8TEV_MUON/filter.py @@ -4,7 +4,9 @@ import pandas as pd import yaml -from nnpdf_data.filter_utils.utils import covmat_to_artunc +from nnpdf_data.filter_utils.utils import covmat_to_artunc, prettify_float + +yaml.add_representer(float, prettify_float) MW_VALUE = 80.398 # GeV SQRT_S = 8_000.0 # GeV diff --git a/nnpdf_data/nnpdf_data/commondata/CMS_WPWM_8TEV_MUON/kinematics.yaml b/nnpdf_data/nnpdf_data/commondata/CMS_WPWM_8TEV_MUON/kinematics.yaml index c6fcbbc379..de6290415b 100644 --- a/nnpdf_data/nnpdf_data/commondata/CMS_WPWM_8TEV_MUON/kinematics.yaml +++ b/nnpdf_data/nnpdf_data/commondata/CMS_WPWM_8TEV_MUON/kinematics.yaml @@ -5,7 +5,7 @@ bins: max: 0.2 M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null @@ -13,11 +13,11 @@ bins: max: null - y: min: 0.2 - mid: 0.30000000000000004 + mid: 3.00000000e-01 max: 0.4 M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null @@ -29,7 +29,7 @@ bins: max: 0.6 M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null @@ -41,7 +41,7 @@ bins: max: 0.8 M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null @@ -53,7 +53,7 @@ bins: max: 1.0 M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null @@ -65,7 +65,7 @@ bins: max: 1.2 M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null @@ -73,11 +73,11 @@ bins: max: null - y: min: 1.2 - mid: 1.2999999999999998 + mid: 1.30000000e+00 max: 1.4 M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null @@ -89,7 +89,7 @@ bins: max: 1.6 M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null @@ -101,7 +101,7 @@ bins: max: 1.85 M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null @@ -113,7 +113,7 @@ bins: max: 2.1 M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null @@ -125,7 +125,7 @@ bins: max: 2.4 M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null @@ -137,7 +137,7 @@ bins: max: 0.2 M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null @@ -145,11 +145,11 @@ bins: max: null - y: min: 0.2 - mid: 0.30000000000000004 + mid: 3.00000000e-01 max: 0.4 M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null @@ -161,7 +161,7 @@ bins: max: 0.6 M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null @@ -173,7 +173,7 @@ bins: max: 0.8 M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null @@ -185,7 +185,7 @@ bins: max: 1.0 M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null @@ -197,7 +197,7 @@ bins: max: 1.2 M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null @@ -205,11 +205,11 @@ bins: max: null - y: min: 1.2 - mid: 1.2999999999999998 + mid: 1.30000000e+00 max: 1.4 M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null @@ -221,7 +221,7 @@ bins: max: 1.6 M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null @@ -233,7 +233,7 @@ bins: max: 1.85 M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null @@ -245,7 +245,7 @@ bins: max: 2.1 M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null @@ -257,7 +257,7 @@ bins: max: 2.4 M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null diff --git a/nnpdf_data/nnpdf_data/commondata/CMS_WPWM_8TEV_MUON/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/CMS_WPWM_8TEV_MUON/uncertainties.yaml index 163050f2d3..6cce9fc9be 100644 --- a/nnpdf_data/nnpdf_data/commondata/CMS_WPWM_8TEV_MUON/uncertainties.yaml +++ b/nnpdf_data/nnpdf_data/commondata/CMS_WPWM_8TEV_MUON/uncertainties.yaml @@ -184,1015 +184,1015 @@ definitions: treatment: MULT type: CMSLUMI12 bins: -- sys_corr_1: 645.7611420830939 - sys_corr_2: -165.03161680004393 - sys_corr_3: -73.58942105341785 - sys_corr_4: 85.66927789249533 - sys_corr_5: -67.75166049175483 - sys_corr_6: 23.025878377947326 - sys_corr_7: 90.53224184796163 - sys_corr_8: 1.0331022144084616 - sys_corr_9: -78.67158774726853 - sys_corr_10: -71.94887885278742 - sys_corr_11: 15.644042556536121 - sys_corr_12: -14.576046663630926 - sys_corr_13: -26.743354584038062 - sys_corr_14: 13.364690151482732 - sys_corr_15: 5.564065738828934 - sys_corr_16: -58.722869676359984 - sys_corr_17: -5.542706698397728 - sys_corr_18: 5.3152750548431 - sys_corr_19: -5.35126421591939 - sys_corr_20: 27.605257919077722 - sys_corr_21: -14.75529944409344 - sys_corr_22: -49.206299164666035 - corr_stat_1: -4361.0592712579855 - corr_stat_2: 4366.596770612959 - corr_stat_3: -948.3950967934098 - corr_stat_4: 497.9154977539705 - corr_stat_5: 41.0036539179969 - corr_stat_6: 361.2673332394453 - corr_stat_7: 311.6423213073529 - corr_stat_8: 24.2581575125903 - corr_stat_9: -278.54969582084203 - corr_stat_10: 459.72465604870735 - corr_stat_11: -1190.2089122467041 - corr_stat_12: -778.0860199348597 - corr_stat_13: -325.11548188760065 - corr_stat_14: -17.41209723011345 - corr_stat_15: 185.44175112229138 - corr_stat_16: 246.17458174890984 - corr_stat_17: -395.5531394818259 - corr_stat_18: -309.033979498897 - corr_stat_19: -89.04607452994848 - corr_stat_20: 70.31329842129271 - corr_stat_21: -86.47768856377934 - corr_stat_22: -49.551235310495834 +- sys_corr_1: 6.45761142e+02 + sys_corr_2: -1.65031617e+02 + sys_corr_3: -7.35894211e+01 + sys_corr_4: 8.56692779e+01 + sys_corr_5: -6.77516605e+01 + sys_corr_6: 2.30258784e+01 + sys_corr_7: 9.05322418e+01 + sys_corr_8: 1.03310221e+00 + sys_corr_9: -7.86715877e+01 + sys_corr_10: -7.19488789e+01 + sys_corr_11: 1.56440426e+01 + sys_corr_12: -1.45760467e+01 + sys_corr_13: -2.67433546e+01 + sys_corr_14: 1.33646902e+01 + sys_corr_15: 5.56406574e+00 + sys_corr_16: -5.87228697e+01 + sys_corr_17: -5.54270670e+00 + sys_corr_18: 5.31527505e+00 + sys_corr_19: -5.35126422e+00 + sys_corr_20: 2.76052579e+01 + sys_corr_21: -1.47552994e+01 + sys_corr_22: -4.92062992e+01 + corr_stat_1: -4.36105927e+03 + corr_stat_2: 4.36659677e+03 + corr_stat_3: -9.48395097e+02 + corr_stat_4: 4.97915498e+02 + corr_stat_5: 4.10036539e+01 + corr_stat_6: 3.61267333e+02 + corr_stat_7: 3.11642321e+02 + corr_stat_8: 2.42581575e+01 + corr_stat_9: -2.78549696e+02 + corr_stat_10: 4.59724656e+02 + corr_stat_11: -1.19020891e+03 + corr_stat_12: -7.78086020e+02 + corr_stat_13: -3.25115482e+02 + corr_stat_14: -1.74120972e+01 + corr_stat_15: 1.85441751e+02 + corr_stat_16: 2.46174582e+02 + corr_stat_17: -3.95553139e+02 + corr_stat_18: -3.09033979e+02 + corr_stat_19: -8.90460745e+01 + corr_stat_20: 7.03132984e+01 + corr_stat_21: -8.64776886e+01 + corr_stat_22: -4.95512353e+01 stat: 700.0 sys_luminosity: 19336.2 -- sys_corr_1: 609.8444548094716 - sys_corr_2: -292.45057411796626 - sys_corr_3: -52.316101267793854 - sys_corr_4: 24.549433550833182 - sys_corr_5: -31.148457396836164 - sys_corr_6: -4.979327687552382 - sys_corr_7: -14.398819542053246 - sys_corr_8: 0.24390997353267663 - sys_corr_9: 25.2967673070347 - sys_corr_10: 30.354719579162605 - sys_corr_11: -3.879058748587995 - sys_corr_12: 143.92887428488132 - sys_corr_13: 11.797725792511683 - sys_corr_14: -2.2390141036057227 - sys_corr_15: 14.766056221872404 - sys_corr_16: -13.648571312801668 - sys_corr_17: 61.905966932925544 - sys_corr_18: -34.32503901463579 - sys_corr_19: 3.031606964890894 - sys_corr_20: -8.88467529355694 - sys_corr_21: 4.243046908739121 - sys_corr_22: -7.952137443948808 - corr_stat_1: -6193.9157582863645 - corr_stat_2: 4101.832166535932 - corr_stat_3: -940.8801966348842 - corr_stat_4: 243.93723057091077 - corr_stat_5: -464.6956700461302 - corr_stat_6: 261.1575460553102 - corr_stat_7: -107.94751634252039 - corr_stat_8: -267.45279122220194 - corr_stat_9: -467.6032639213164 - corr_stat_10: -1340.1845096498062 - corr_stat_11: -37.9455357185254 - corr_stat_12: 543.1057073450987 - corr_stat_13: -230.86450675742196 - corr_stat_14: 22.810593932466976 - corr_stat_15: 273.91631773319887 - corr_stat_16: 82.41977758860432 - corr_stat_17: 27.629449588737224 - corr_stat_18: 366.6283245743195 - corr_stat_19: -157.3747815141471 - corr_stat_20: 298.6817879268159 - corr_stat_21: -284.95771122795566 - corr_stat_22: -105.54329091202582 +- sys_corr_1: 6.09844455e+02 + sys_corr_2: -2.92450574e+02 + sys_corr_3: -5.23161013e+01 + sys_corr_4: 2.45494336e+01 + sys_corr_5: -3.11484574e+01 + sys_corr_6: -4.97932769e+00 + sys_corr_7: -1.43988195e+01 + sys_corr_8: 2.43909974e-01 + sys_corr_9: 2.52967673e+01 + sys_corr_10: 3.03547196e+01 + sys_corr_11: -3.87905875e+00 + sys_corr_12: 1.43928874e+02 + sys_corr_13: 1.17977258e+01 + sys_corr_14: -2.23901410e+00 + sys_corr_15: 1.47660562e+01 + sys_corr_16: -1.36485713e+01 + sys_corr_17: 6.19059669e+01 + sys_corr_18: -3.43250390e+01 + sys_corr_19: 3.03160696e+00 + sys_corr_20: -8.88467529e+00 + sys_corr_21: 4.24304691e+00 + sys_corr_22: -7.95213744e+00 + corr_stat_1: -6.19391576e+03 + corr_stat_2: 4.10183217e+03 + corr_stat_3: -9.40880197e+02 + corr_stat_4: 2.43937231e+02 + corr_stat_5: -4.64695670e+02 + corr_stat_6: 2.61157546e+02 + corr_stat_7: -1.07947516e+02 + corr_stat_8: -2.67452791e+02 + corr_stat_9: -4.67603264e+02 + corr_stat_10: -1.34018451e+03 + corr_stat_11: -3.79455357e+01 + corr_stat_12: 5.43105707e+02 + corr_stat_13: -2.30864507e+02 + corr_stat_14: 2.28105939e+01 + corr_stat_15: 2.73916318e+02 + corr_stat_16: 8.24197776e+01 + corr_stat_17: 2.76294496e+01 + corr_stat_18: 3.66628325e+02 + corr_stat_19: -1.57374782e+02 + corr_stat_20: 2.98681788e+02 + corr_stat_21: -2.84957711e+02 + corr_stat_22: -1.05543291e+02 stat: 700.0 sys_luminosity: 19487.0 -- sys_corr_1: 633.9417310309018 - sys_corr_2: -229.50410933748157 - sys_corr_3: -52.29204202991863 - sys_corr_4: 26.835438573033013 - sys_corr_5: -28.448247773216256 - sys_corr_6: -1.0782094100964597 - sys_corr_7: -12.412722315432445 - sys_corr_8: 0.5197868450812836 - sys_corr_9: 9.26625050037578 - sys_corr_10: 87.55022584346158 - sys_corr_11: -117.01991188446965 - sys_corr_12: -61.20537367994188 - sys_corr_13: -10.64679021270587 - sys_corr_14: 18.445670534109087 - sys_corr_15: 3.9043933266103807 - sys_corr_16: -25.768490753387255 - sys_corr_17: -11.476954600484861 - sys_corr_18: -15.315316490201063 - sys_corr_19: 60.71928719555559 - sys_corr_20: -23.079162771688406 - sys_corr_21: 9.861817848528862 - sys_corr_22: -4.449954766251273 - corr_stat_1: -5364.898301282127 - corr_stat_2: 4378.143828510223 - corr_stat_3: -783.377683537916 - corr_stat_4: 179.38972077337485 - corr_stat_5: -81.65636707297956 - corr_stat_6: 185.23479893119327 - corr_stat_7: 185.73840248291276 - corr_stat_8: 20.747439376345206 - corr_stat_9: -216.48248570792822 - corr_stat_10: 1120.3185598216717 - corr_stat_11: 443.03116629553426 - corr_stat_12: 1126.6163046721892 - corr_stat_13: -274.9449541078521 - corr_stat_14: 55.299076265277996 - corr_stat_15: 127.89443993108013 - corr_stat_16: 124.55000236148875 - corr_stat_17: 422.1497555312466 - corr_stat_18: -305.600312565125 - corr_stat_19: -108.83296618611234 - corr_stat_20: 68.19597018134564 - corr_stat_21: -22.860674613248143 - corr_stat_22: -35.932159418620344 +- sys_corr_1: 6.33941731e+02 + sys_corr_2: -2.29504109e+02 + sys_corr_3: -5.22920420e+01 + sys_corr_4: 2.68354386e+01 + sys_corr_5: -2.84482478e+01 + sys_corr_6: -1.07820941e+00 + sys_corr_7: -1.24127223e+01 + sys_corr_8: 5.19786845e-01 + sys_corr_9: 9.26625050e+00 + sys_corr_10: 8.75502258e+01 + sys_corr_11: -1.17019912e+02 + sys_corr_12: -6.12053737e+01 + sys_corr_13: -1.06467902e+01 + sys_corr_14: 1.84456705e+01 + sys_corr_15: 3.90439333e+00 + sys_corr_16: -2.57684908e+01 + sys_corr_17: -1.14769546e+01 + sys_corr_18: -1.53153165e+01 + sys_corr_19: 6.07192872e+01 + sys_corr_20: -2.30791628e+01 + sys_corr_21: 9.86181785e+00 + sys_corr_22: -4.44995477e+00 + corr_stat_1: -5.36489830e+03 + corr_stat_2: 4.37814383e+03 + corr_stat_3: -7.83377684e+02 + corr_stat_4: 1.79389721e+02 + corr_stat_5: -8.16563671e+01 + corr_stat_6: 1.85234799e+02 + corr_stat_7: 1.85738402e+02 + corr_stat_8: 2.07474394e+01 + corr_stat_9: -2.16482486e+02 + corr_stat_10: 1.12031856e+03 + corr_stat_11: 4.43031166e+02 + corr_stat_12: 1.12661630e+03 + corr_stat_13: -2.74944954e+02 + corr_stat_14: 5.52990763e+01 + corr_stat_15: 1.27894440e+02 + corr_stat_16: 1.24550002e+02 + corr_stat_17: 4.22149756e+02 + corr_stat_18: -3.05600313e+02 + corr_stat_19: -1.08832966e+02 + corr_stat_20: 6.81959702e+01 + corr_stat_21: -2.28606746e+01 + corr_stat_22: -3.59321594e+01 stat: 700.0 sys_luminosity: 19549.4 -- sys_corr_1: 635.2952657068281 - sys_corr_2: -223.8403302355496 - sys_corr_3: -58.285417824649244 - sys_corr_4: 15.744302735738781 - sys_corr_5: -26.068567799994845 - sys_corr_6: -8.539415379672754 - sys_corr_7: -36.81084384157706 - sys_corr_8: 1.2355182641001339 - sys_corr_9: 35.15261160102704 - sys_corr_10: 62.9508120956877 - sys_corr_11: 129.47487765551185 - sys_corr_12: -54.41960269999956 - sys_corr_13: -10.184033429349688 - sys_corr_14: 6.643893026278591 - sys_corr_15: 10.446319140688383 - sys_corr_16: -19.611055309051043 - sys_corr_17: -14.74867364757852 - sys_corr_18: -22.148005826145766 - sys_corr_19: -36.32042003964425 - sys_corr_20: -52.43159406757368 - sys_corr_21: 13.488895850836103 - sys_corr_22: -4.210305192556013 - corr_stat_1: -5253.141431411864 - corr_stat_2: 4355.089190809774 - corr_stat_3: -762.2688594459618 - corr_stat_4: -51.49315043095966 - corr_stat_5: -174.7675140890287 - corr_stat_6: 109.50585709458592 - corr_stat_7: 38.42144241600377 - corr_stat_8: -75.38876152212536 - corr_stat_9: 35.49098897081449 - corr_stat_10: 64.60132886271468 - corr_stat_11: 1273.0262325975327 - corr_stat_12: -1117.3063301498983 - corr_stat_13: -194.87078857703628 - corr_stat_14: -75.73301574706821 - corr_stat_15: 136.53030991004135 - corr_stat_16: -491.3468295852987 - corr_stat_17: -51.230326677057036 - corr_stat_18: -134.95433195979726 - corr_stat_19: -66.16390165702035 - corr_stat_20: 49.1250392776329 - corr_stat_21: -91.62773131575953 - corr_stat_22: -10.231837063867435 +- sys_corr_1: 6.35295266e+02 + sys_corr_2: -2.23840330e+02 + sys_corr_3: -5.82854178e+01 + sys_corr_4: 1.57443027e+01 + sys_corr_5: -2.60685678e+01 + sys_corr_6: -8.53941538e+00 + sys_corr_7: -3.68108438e+01 + sys_corr_8: 1.23551826e+00 + sys_corr_9: 3.51526116e+01 + sys_corr_10: 6.29508121e+01 + sys_corr_11: 1.29474878e+02 + sys_corr_12: -5.44196027e+01 + sys_corr_13: -1.01840334e+01 + sys_corr_14: 6.64389303e+00 + sys_corr_15: 1.04463191e+01 + sys_corr_16: -1.96110553e+01 + sys_corr_17: -1.47486736e+01 + sys_corr_18: -2.21480058e+01 + sys_corr_19: -3.63204200e+01 + sys_corr_20: -5.24315941e+01 + sys_corr_21: 1.34888959e+01 + sys_corr_22: -4.21030519e+00 + corr_stat_1: -5.25314143e+03 + corr_stat_2: 4.35508919e+03 + corr_stat_3: -7.62268859e+02 + corr_stat_4: -5.14931504e+01 + corr_stat_5: -1.74767514e+02 + corr_stat_6: 1.09505857e+02 + corr_stat_7: 3.84214424e+01 + corr_stat_8: -7.53887615e+01 + corr_stat_9: 3.54909890e+01 + corr_stat_10: 6.46013289e+01 + corr_stat_11: 1.27302623e+03 + corr_stat_12: -1.11730633e+03 + corr_stat_13: -1.94870789e+02 + corr_stat_14: -7.57330157e+01 + corr_stat_15: 1.36530310e+02 + corr_stat_16: -4.91346830e+02 + corr_stat_17: -5.12303267e+01 + corr_stat_18: -1.34954332e+02 + corr_stat_19: -6.61639017e+01 + corr_stat_20: 4.91250393e+01 + corr_stat_21: -9.16277313e+01 + corr_stat_22: -1.02318371e+01 stat: 700.0 sys_luminosity: 19630.0 -- sys_corr_1: 627.6130179855477 - sys_corr_2: -241.01098871307278 - sys_corr_3: -48.72736550496542 - sys_corr_4: -14.052850416723926 - sys_corr_5: -4.883093621398035 - sys_corr_6: -19.905953121621675 - sys_corr_7: -75.04388611862204 - sys_corr_8: -0.16512666731556092 - sys_corr_9: 82.46823183862578 - sys_corr_10: -121.38689492970933 - sys_corr_11: -26.149797625135346 - sys_corr_12: -28.989056164559493 - sys_corr_13: 8.078179174378302 - sys_corr_14: 5.832229553457518 - sys_corr_15: 13.493260508371165 - sys_corr_16: -17.085138020052078 - sys_corr_17: -4.227717128575303 - sys_corr_18: -33.29416701119682 - sys_corr_19: -4.576517480697127 - sys_corr_20: 12.004916444113725 - sys_corr_21: -41.89013653998333 - sys_corr_22: 52.08293963058415 - corr_stat_1: -5607.6500763048325 - corr_stat_2: 4366.597463566918 - corr_stat_3: -603.9724612260487 - corr_stat_4: -389.703907999235 - corr_stat_5: -232.2039435130195 - corr_stat_6: -434.09107428010213 - corr_stat_7: -547.3912223866816 - corr_stat_8: -118.8433028376464 - corr_stat_9: 1661.2059511393156 - corr_stat_10: -14.928256614156552 - corr_stat_11: -323.5456190510915 - corr_stat_12: 131.47574303087828 - corr_stat_13: -160.87324415418402 - corr_stat_14: 10.217845028336981 - corr_stat_15: 101.0326667032544 - corr_stat_16: 14.65630563297164 - corr_stat_17: 7.321929705571492 - corr_stat_18: 133.0476381450571 - corr_stat_19: -98.99957176565913 - corr_stat_20: -474.557677285454 - corr_stat_21: -44.54875906469037 - corr_stat_22: -37.04366896620114 +- sys_corr_1: 6.27613018e+02 + sys_corr_2: -2.41010989e+02 + sys_corr_3: -4.87273655e+01 + sys_corr_4: -1.40528504e+01 + sys_corr_5: -4.88309362e+00 + sys_corr_6: -1.99059531e+01 + sys_corr_7: -7.50438861e+01 + sys_corr_8: -1.65126667e-01 + sys_corr_9: 8.24682318e+01 + sys_corr_10: -1.21386895e+02 + sys_corr_11: -2.61497976e+01 + sys_corr_12: -2.89890562e+01 + sys_corr_13: 8.07817917e+00 + sys_corr_14: 5.83222955e+00 + sys_corr_15: 1.34932605e+01 + sys_corr_16: -1.70851380e+01 + sys_corr_17: -4.22771713e+00 + sys_corr_18: -3.32941670e+01 + sys_corr_19: -4.57651748e+00 + sys_corr_20: 1.20049164e+01 + sys_corr_21: -4.18901365e+01 + sys_corr_22: 5.20829396e+01 + corr_stat_1: -5.60765008e+03 + corr_stat_2: 4.36659746e+03 + corr_stat_3: -6.03972461e+02 + corr_stat_4: -3.89703908e+02 + corr_stat_5: -2.32203944e+02 + corr_stat_6: -4.34091074e+02 + corr_stat_7: -5.47391222e+02 + corr_stat_8: -1.18843303e+02 + corr_stat_9: 1.66120595e+03 + corr_stat_10: -1.49282566e+01 + corr_stat_11: -3.23545619e+02 + corr_stat_12: 1.31475743e+02 + corr_stat_13: -1.60873244e+02 + corr_stat_14: 1.02178450e+01 + corr_stat_15: 1.01032667e+02 + corr_stat_16: 1.46563056e+01 + corr_stat_17: 7.32192971e+00 + corr_stat_18: 1.33047638e+02 + corr_stat_19: -9.89995718e+01 + corr_stat_20: -4.74557677e+02 + corr_stat_21: -4.45487591e+01 + corr_stat_22: -3.70436690e+01 stat: 700.0 sys_luminosity: 19809.4 -- sys_corr_1: 645.0512856962722 - sys_corr_2: 87.20585333731431 - sys_corr_3: -107.99992800885796 - sys_corr_4: 27.914798403528824 - sys_corr_5: 215.6923814115761 - sys_corr_6: 41.064522717762394 - sys_corr_7: 14.412076059609575 - sys_corr_8: 0.8101146197967499 - sys_corr_9: -11.177294553525412 - sys_corr_10: -0.049364536339626876 - sys_corr_11: 2.4366313061680995 - sys_corr_12: 12.345468510114635 - sys_corr_13: -27.20600435021591 - sys_corr_14: 54.75317899613624 - sys_corr_15: -26.592719063170836 - sys_corr_16: 24.345942792910513 - sys_corr_17: -0.8248578344215814 - sys_corr_18: 9.229001935937482 - sys_corr_19: -2.3249487484623494 - sys_corr_20: -1.686346752453443 - sys_corr_21: -5.203921379775703 - sys_corr_22: 0.6730866533707216 - corr_stat_1: -2155.2882439196296 - corr_stat_2: 4934.516543040824 - corr_stat_3: -471.38292876492096 - corr_stat_4: -581.2003879494953 - corr_stat_5: 615.5501828083671 - corr_stat_6: -950.9679796206973 - corr_stat_7: -106.06269758638642 - corr_stat_8: 1511.2190627848224 - corr_stat_9: -430.7887385097331 - corr_stat_10: -225.36521698447413 - corr_stat_11: -54.84589541681017 - corr_stat_12: 31.288126990141667 - corr_stat_13: -204.7095163680079 - corr_stat_14: 3.0691386645534613 - corr_stat_15: -21.068150787421757 - corr_stat_16: -35.20219444728588 - corr_stat_17: -13.332194714042275 - corr_stat_18: 104.60291831225472 - corr_stat_19: 7.824680459901309 - corr_stat_20: 43.342484752036555 - corr_stat_21: 456.1833454175994 - corr_stat_22: -43.501430874379245 +- sys_corr_1: 6.45051286e+02 + sys_corr_2: 8.72058533e+01 + sys_corr_3: -1.07999928e+02 + sys_corr_4: 2.79147984e+01 + sys_corr_5: 2.15692381e+02 + sys_corr_6: 4.10645227e+01 + sys_corr_7: 1.44120761e+01 + sys_corr_8: 8.10114620e-01 + sys_corr_9: -1.11772946e+01 + sys_corr_10: -4.93645363e-02 + sys_corr_11: 2.43663131e+00 + sys_corr_12: 1.23454685e+01 + sys_corr_13: -2.72060044e+01 + sys_corr_14: 5.47531790e+01 + sys_corr_15: -2.65927191e+01 + sys_corr_16: 2.43459428e+01 + sys_corr_17: -8.24857834e-01 + sys_corr_18: 9.22900194e+00 + sys_corr_19: -2.32494875e+00 + sys_corr_20: -1.68634675e+00 + sys_corr_21: -5.20392138e+00 + sys_corr_22: 6.73086653e-01 + corr_stat_1: -2.15528824e+03 + corr_stat_2: 4.93451654e+03 + corr_stat_3: -4.71382929e+02 + corr_stat_4: -5.81200388e+02 + corr_stat_5: 6.15550183e+02 + corr_stat_6: -9.50967980e+02 + corr_stat_7: -1.06062698e+02 + corr_stat_8: 1.51121906e+03 + corr_stat_9: -4.30788739e+02 + corr_stat_10: -2.25365217e+02 + corr_stat_11: -5.48458954e+01 + corr_stat_12: 3.12881270e+01 + corr_stat_13: -2.04709516e+02 + corr_stat_14: 3.06913866e+00 + corr_stat_15: -2.10681508e+01 + corr_stat_16: -3.52021944e+01 + corr_stat_17: -1.33321947e+01 + corr_stat_18: 1.04602918e+02 + corr_stat_19: 7.82468046e+00 + corr_stat_20: 4.33424848e+01 + corr_stat_21: 4.56183345e+02 + corr_stat_22: -4.35014309e+01 stat: 700.0 sys_luminosity: 19916.0 -- sys_corr_1: 594.9318802042797 - sys_corr_2: 261.74325706179764 - sys_corr_3: -102.75927705148241 - sys_corr_4: -192.50472612373449 - sys_corr_5: -51.01981494082307 - sys_corr_6: 112.43954307413426 - sys_corr_7: 24.06513335533359 - sys_corr_8: 0.7584636374282803 - sys_corr_9: -6.740760162375726 - sys_corr_10: 2.6144281105794653 - sys_corr_11: -3.2842132582007664 - sys_corr_12: 5.0453362174353495 - sys_corr_13: -35.98824639619867 - sys_corr_14: -46.46336088589302 - sys_corr_15: -17.67867131832924 - sys_corr_16: 13.400935152820072 - sys_corr_17: -1.1090395112445919 - sys_corr_18: 7.6563833709955285 - sys_corr_19: -0.2846160339748438 - sys_corr_20: 0.1432743923508858 - sys_corr_21: -3.001018064239508 - sys_corr_22: -0.133360062030012 - corr_stat_1: -745.0520217817559 - corr_stat_2: 5313.211422009568 - corr_stat_3: -186.42467920743232 - corr_stat_4: -889.3816901545781 - corr_stat_5: 910.5616931332996 - corr_stat_6: -828.8117322584321 - corr_stat_7: 722.1822107065503 - corr_stat_8: -1309.6729787010752 - corr_stat_9: -244.54927972120834 - corr_stat_10: -77.14758617834087 - corr_stat_11: -76.96592519361597 - corr_stat_12: 38.52675003899398 - corr_stat_13: -100.32812925526198 - corr_stat_14: -13.926056438880575 - corr_stat_15: -153.92428512515252 - corr_stat_16: 12.837688921744073 - corr_stat_17: 8.785713924894596 - corr_stat_18: 40.12171384028465 - corr_stat_19: 276.38146625545755 - corr_stat_20: 0.22815372119146796 - corr_stat_21: -27.00351060594259 - corr_stat_22: 300.00292492616995 +- sys_corr_1: 5.94931880e+02 + sys_corr_2: 2.61743257e+02 + sys_corr_3: -1.02759277e+02 + sys_corr_4: -1.92504726e+02 + sys_corr_5: -5.10198149e+01 + sys_corr_6: 1.12439543e+02 + sys_corr_7: 2.40651334e+01 + sys_corr_8: 7.58463637e-01 + sys_corr_9: -6.74076016e+00 + sys_corr_10: 2.61442811e+00 + sys_corr_11: -3.28421326e+00 + sys_corr_12: 5.04533622e+00 + sys_corr_13: -3.59882464e+01 + sys_corr_14: -4.64633609e+01 + sys_corr_15: -1.76786713e+01 + sys_corr_16: 1.34009352e+01 + sys_corr_17: -1.10903951e+00 + sys_corr_18: 7.65638337e+00 + sys_corr_19: -2.84616034e-01 + sys_corr_20: 1.43274392e-01 + sys_corr_21: -3.00101806e+00 + sys_corr_22: -1.33360062e-01 + corr_stat_1: -7.45052022e+02 + corr_stat_2: 5.31321142e+03 + corr_stat_3: -1.86424679e+02 + corr_stat_4: -8.89381690e+02 + corr_stat_5: 9.10561693e+02 + corr_stat_6: -8.28811732e+02 + corr_stat_7: 7.22182211e+02 + corr_stat_8: -1.30967298e+03 + corr_stat_9: -2.44549280e+02 + corr_stat_10: -7.71475862e+01 + corr_stat_11: -7.69659252e+01 + corr_stat_12: 3.85267500e+01 + corr_stat_13: -1.00328129e+02 + corr_stat_14: -1.39260564e+01 + corr_stat_15: -1.53924285e+02 + corr_stat_16: 1.28376889e+01 + corr_stat_17: 8.78571392e+00 + corr_stat_18: 4.01217138e+01 + corr_stat_19: 2.76381466e+02 + corr_stat_20: 2.28153721e-01 + corr_stat_21: -2.70035106e+01 + corr_stat_22: 3.00002925e+02 stat: 700.0 sys_luminosity: 20134.4 -- sys_corr_1: 565.3008372479043 - sys_corr_2: 328.39672630225147 - sys_corr_3: -74.83796905948869 - sys_corr_4: -64.09783959033906 - sys_corr_5: 2.298910876972473 - sys_corr_6: -213.44152365424736 - sys_corr_7: 64.60970751509825 - sys_corr_8: 0.5467537122696421 - sys_corr_9: -8.330216644361139 - sys_corr_10: 4.691249995683057 - sys_corr_11: -0.15070654924093982 - sys_corr_12: -0.5565858922972166 - sys_corr_13: 44.25878958871936 - sys_corr_14: -11.73111447004031 - sys_corr_15: -25.16287616247645 - sys_corr_16: 7.7742650923046375 - sys_corr_17: -1.7639009476733551 - sys_corr_18: 15.306555416082686 - sys_corr_19: -0.28561811278253196 - sys_corr_20: -1.4170688875140423 - sys_corr_21: -4.76198231641166 - sys_corr_22: -0.21599950417874011 - corr_stat_1: -170.83640176198156 - corr_stat_2: 5668.932849882173 - corr_stat_3: 66.88822551556422 - corr_stat_4: -1070.510159845039 - corr_stat_5: 907.7265683476448 - corr_stat_6: 1366.021009913165 - corr_stat_7: -997.2406223705216 - corr_stat_8: -50.971658478378195 - corr_stat_9: -130.08636868392873 - corr_stat_10: -2.8512682336066235 - corr_stat_11: -55.793027321609706 - corr_stat_12: 18.898136834634933 - corr_stat_13: 121.17669291201248 - corr_stat_14: 13.497900557052164 - corr_stat_15: -397.09646652007376 - corr_stat_16: -7.177740190931448 - corr_stat_17: -0.44474323452716513 - corr_stat_18: 11.162762573056154 - corr_stat_19: -114.80653078080503 - corr_stat_20: -1.0057574169916026 - corr_stat_21: 8.521497448275863 - corr_stat_22: 9.933004013162662 +- sys_corr_1: 5.65300837e+02 + sys_corr_2: 3.28396726e+02 + sys_corr_3: -7.48379691e+01 + sys_corr_4: -6.40978396e+01 + sys_corr_5: 2.29891088e+00 + sys_corr_6: -2.13441524e+02 + sys_corr_7: 6.46097075e+01 + sys_corr_8: 5.46753712e-01 + sys_corr_9: -8.33021664e+00 + sys_corr_10: 4.69125000e+00 + sys_corr_11: -1.50706549e-01 + sys_corr_12: -5.56585892e-01 + sys_corr_13: 4.42587896e+01 + sys_corr_14: -1.17311145e+01 + sys_corr_15: -2.51628762e+01 + sys_corr_16: 7.77426509e+00 + sys_corr_17: -1.76390095e+00 + sys_corr_18: 1.53065554e+01 + sys_corr_19: -2.85618113e-01 + sys_corr_20: -1.41706889e+00 + sys_corr_21: -4.76198232e+00 + sys_corr_22: -2.15999504e-01 + corr_stat_1: -1.70836402e+02 + corr_stat_2: 5.66893285e+03 + corr_stat_3: 6.68882255e+01 + corr_stat_4: -1.07051016e+03 + corr_stat_5: 9.07726568e+02 + corr_stat_6: 1.36602101e+03 + corr_stat_7: -9.97240622e+02 + corr_stat_8: -5.09716585e+01 + corr_stat_9: -1.30086369e+02 + corr_stat_10: -2.85126823e+00 + corr_stat_11: -5.57930273e+01 + corr_stat_12: 1.88981368e+01 + corr_stat_13: 1.21176693e+02 + corr_stat_14: 1.34979006e+01 + corr_stat_15: -3.97096467e+02 + corr_stat_16: -7.17774019e+00 + corr_stat_17: -4.44743235e-01 + corr_stat_18: 1.11627626e+01 + corr_stat_19: -1.14806531e+02 + corr_stat_20: -1.00575742e+00 + corr_stat_21: 8.52149745e+00 + corr_stat_22: 9.93300401e+00 stat: 700.0 - sys_luminosity: 20139.600000000002 -- sys_corr_1: 383.194739307371 - sys_corr_2: 545.0921814128542 - sys_corr_3: -65.63812979555546 - sys_corr_4: 46.938365317298 - sys_corr_5: -31.84343992957202 - sys_corr_6: -7.306221467815944 - sys_corr_7: -151.74460677124446 - sys_corr_8: 0.6156508139252915 - sys_corr_9: -106.65161420832403 - sys_corr_10: -1.3278392596512905 - sys_corr_11: -4.081191717703084 - sys_corr_12: 7.89972979680149 - sys_corr_13: 15.921893473387382 - sys_corr_14: -14.977686760154073 - sys_corr_15: 32.78686417098852 - sys_corr_16: 26.98972472714692 - sys_corr_17: -1.148861429986049 - sys_corr_18: 39.62997427173518 - sys_corr_19: -0.9890222046383202 - sys_corr_20: -2.901229124358533 - sys_corr_21: -10.589702208680936 - sys_corr_22: -0.7042053265158305 - corr_stat_1: 2517.487443884093 - corr_stat_2: 5921.765705014687 - corr_stat_3: 184.57364281766507 - corr_stat_4: -1027.1692672619902 - corr_stat_5: -751.2247453150617 - corr_stat_6: 694.7318609800939 - corr_stat_7: 1421.9140838300316 - corr_stat_8: 523.8976311126207 - corr_stat_9: 389.2074019250538 - corr_stat_10: -171.84397367071605 - corr_stat_11: -48.673637596261806 - corr_stat_12: 87.60170224407173 - corr_stat_13: 218.1625358880839 - corr_stat_14: 15.28756395040359 - corr_stat_15: -202.3277910636218 - corr_stat_16: -6.3156446399430015 - corr_stat_17: -3.4646455022345335 - corr_stat_18: 15.84697040634834 - corr_stat_19: 284.39526378034833 - corr_stat_20: -19.735402037700524 - corr_stat_21: -15.706748672278014 - corr_stat_22: -202.1471310507775 + sys_luminosity: 2.01396000e+04 +- sys_corr_1: 3.83194739e+02 + sys_corr_2: 5.45092181e+02 + sys_corr_3: -6.56381298e+01 + sys_corr_4: 4.69383653e+01 + sys_corr_5: -3.18434399e+01 + sys_corr_6: -7.30622147e+00 + sys_corr_7: -1.51744607e+02 + sys_corr_8: 6.15650814e-01 + sys_corr_9: -1.06651614e+02 + sys_corr_10: -1.32783926e+00 + sys_corr_11: -4.08119172e+00 + sys_corr_12: 7.89972980e+00 + sys_corr_13: 1.59218935e+01 + sys_corr_14: -1.49776868e+01 + sys_corr_15: 3.27868642e+01 + sys_corr_16: 2.69897247e+01 + sys_corr_17: -1.14886143e+00 + sys_corr_18: 3.96299743e+01 + sys_corr_19: -9.89022205e-01 + sys_corr_20: -2.90122912e+00 + sys_corr_21: -1.05897022e+01 + sys_corr_22: -7.04205327e-01 + corr_stat_1: 2.51748744e+03 + corr_stat_2: 5.92176571e+03 + corr_stat_3: 1.84573643e+02 + corr_stat_4: -1.02716927e+03 + corr_stat_5: -7.51224745e+02 + corr_stat_6: 6.94731861e+02 + corr_stat_7: 1.42191408e+03 + corr_stat_8: 5.23897631e+02 + corr_stat_9: 3.89207402e+02 + corr_stat_10: -1.71843974e+02 + corr_stat_11: -4.86736376e+01 + corr_stat_12: 8.76017022e+01 + corr_stat_13: 2.18162536e+02 + corr_stat_14: 1.52875640e+01 + corr_stat_15: -2.02327791e+02 + corr_stat_16: -6.31564464e+00 + corr_stat_17: -3.46464550e+00 + corr_stat_18: 1.58469704e+01 + corr_stat_19: 2.84395264e+02 + corr_stat_20: -1.97354020e+01 + corr_stat_21: -1.57067487e+01 + corr_stat_22: -2.02147131e+02 stat: 700.0 sys_luminosity: 20186.4 -- sys_corr_1: 172.0632770799663 - sys_corr_2: 550.1536845491618 - sys_corr_3: -63.482985562635804 - sys_corr_4: 45.59970054977342 - sys_corr_5: -19.410161911642316 - sys_corr_6: 13.848498341098262 - sys_corr_7: 4.888829895201943 - sys_corr_8: 3.8222468064779624 - sys_corr_9: 75.82068126831898 - sys_corr_10: 3.581579742598612 - sys_corr_11: -2.1243729263326405 - sys_corr_12: 5.1425067283457615 - sys_corr_13: -2.003389527095391 - sys_corr_14: 6.957519623762916 - sys_corr_15: 20.6570160338358 - sys_corr_16: -29.19825416758101 - sys_corr_17: -8.015363844156944 - sys_corr_18: 31.783728192746917 - sys_corr_19: -10.695442654095572 - sys_corr_20: 55.510459931146876 - sys_corr_21: 93.6867222702106 - sys_corr_22: 28.93085907342108 - corr_stat_1: 4994.34812885637 - corr_stat_2: 5745.990588222477 - corr_stat_3: -173.9534444439994 - corr_stat_4: -857.7958228378604 - corr_stat_5: -1289.7513273743357 - corr_stat_6: -533.815234437326 - corr_stat_7: -774.7986147531709 - corr_stat_8: -277.80463252166464 - corr_stat_9: -666.8581893940104 - corr_stat_10: 400.2163175806937 - corr_stat_11: -201.2077490688185 - corr_stat_12: -146.83033511150782 - corr_stat_13: 549.8068039900013 - corr_stat_14: -219.94869211733018 - corr_stat_15: 162.00960956843198 - corr_stat_16: 55.51344691591267 - corr_stat_17: 15.802155117873054 - corr_stat_18: 13.285748918941575 - corr_stat_19: -38.587359558735706 - corr_stat_20: 3.8650212885592063 - corr_stat_21: 27.77592381028046 - corr_stat_22: 92.12955403263155 +- sys_corr_1: 1.72063277e+02 + sys_corr_2: 5.50153685e+02 + sys_corr_3: -6.34829856e+01 + sys_corr_4: 4.55997005e+01 + sys_corr_5: -1.94101619e+01 + sys_corr_6: 1.38484983e+01 + sys_corr_7: 4.88882990e+00 + sys_corr_8: 3.82224681e+00 + sys_corr_9: 7.58206813e+01 + sys_corr_10: 3.58157974e+00 + sys_corr_11: -2.12437293e+00 + sys_corr_12: 5.14250673e+00 + sys_corr_13: -2.00338953e+00 + sys_corr_14: 6.95751962e+00 + sys_corr_15: 2.06570160e+01 + sys_corr_16: -2.91982542e+01 + sys_corr_17: -8.01536384e+00 + sys_corr_18: 3.17837282e+01 + sys_corr_19: -1.06954427e+01 + sys_corr_20: 5.55104599e+01 + sys_corr_21: 9.36867223e+01 + sys_corr_22: 2.89308591e+01 + corr_stat_1: 4.99434813e+03 + corr_stat_2: 5.74599059e+03 + corr_stat_3: -1.73953444e+02 + corr_stat_4: -8.57795823e+02 + corr_stat_5: -1.28975133e+03 + corr_stat_6: -5.33815234e+02 + corr_stat_7: -7.74798615e+02 + corr_stat_8: -2.77804633e+02 + corr_stat_9: -6.66858189e+02 + corr_stat_10: 4.00216318e+02 + corr_stat_11: -2.01207749e+02 + corr_stat_12: -1.46830335e+02 + corr_stat_13: 5.49806804e+02 + corr_stat_14: -2.19948692e+02 + corr_stat_15: 1.62009610e+02 + corr_stat_16: 5.55134469e+01 + corr_stat_17: 1.58021551e+01 + corr_stat_18: 1.32857489e+01 + corr_stat_19: -3.85873596e+01 + corr_stat_20: 3.86502129e+00 + corr_stat_21: 2.77759238e+01 + corr_stat_22: 9.21295540e+01 stat: 600.0 - sys_luminosity: 20048.600000000002 -- sys_corr_1: -126.04532642304865 - sys_corr_2: 672.8451015002148 - sys_corr_3: -58.81852041513919 - sys_corr_4: 56.48886575998057 - sys_corr_5: -22.383683712177866 - sys_corr_6: 26.446028721492407 - sys_corr_7: 40.6215254521626 - sys_corr_8: -42.37548963903701 - sys_corr_9: 23.547143599407406 - sys_corr_10: 3.72140043158024 - sys_corr_11: -2.3680689469707876 - sys_corr_12: -13.095751992875053 - sys_corr_13: 20.081698483545424 - sys_corr_14: -5.222952303379985 - sys_corr_15: 17.4316033798826 - sys_corr_16: 47.02212027242443 - sys_corr_17: -3.5686670005875563 - sys_corr_18: -77.29211588909409 - sys_corr_19: -0.17168897068171587 - sys_corr_20: -0.9768683502219107 - sys_corr_21: -15.464757394738998 - sys_corr_22: -13.317501975973514 - corr_stat_1: 16712.64947645144 - corr_stat_2: 6437.057829828434 - corr_stat_3: -1325.885495107272 - corr_stat_4: 890.8766348551665 - corr_stat_5: 439.3331890052853 - corr_stat_6: 56.234412775765755 - corr_stat_7: 32.233875575382214 - corr_stat_8: 35.25144570602988 - corr_stat_9: 311.0083119256851 - corr_stat_10: -128.3377561699964 - corr_stat_11: 184.03084763662068 - corr_stat_12: 94.3715719560189 - corr_stat_13: 373.0365430799836 - corr_stat_14: 345.572601588803 - corr_stat_15: 256.8403487348713 - corr_stat_16: -14.008479854945604 - corr_stat_17: -56.297485347532756 - corr_stat_18: -22.35974188122898 - corr_stat_19: -34.5850609252996 - corr_stat_20: -3.8504694525916676 - corr_stat_21: 24.14674605712766 - corr_stat_22: 123.9735214593311 + sys_luminosity: 2.00486000e+04 +- sys_corr_1: -1.26045326e+02 + sys_corr_2: 6.72845102e+02 + sys_corr_3: -5.88185204e+01 + sys_corr_4: 5.64888658e+01 + sys_corr_5: -2.23836837e+01 + sys_corr_6: 2.64460287e+01 + sys_corr_7: 4.06215255e+01 + sys_corr_8: -4.23754896e+01 + sys_corr_9: 2.35471436e+01 + sys_corr_10: 3.72140043e+00 + sys_corr_11: -2.36806895e+00 + sys_corr_12: -1.30957520e+01 + sys_corr_13: 2.00816985e+01 + sys_corr_14: -5.22295230e+00 + sys_corr_15: 1.74316034e+01 + sys_corr_16: 4.70221203e+01 + sys_corr_17: -3.56866700e+00 + sys_corr_18: -7.72921159e+01 + sys_corr_19: -1.71688971e-01 + sys_corr_20: -9.76868350e-01 + sys_corr_21: -1.54647574e+01 + sys_corr_22: -1.33175020e+01 + corr_stat_1: 1.67126495e+04 + corr_stat_2: 6.43705783e+03 + corr_stat_3: -1.32588550e+03 + corr_stat_4: 8.90876635e+02 + corr_stat_5: 4.39333189e+02 + corr_stat_6: 5.62344128e+01 + corr_stat_7: 3.22338756e+01 + corr_stat_8: 3.52514457e+01 + corr_stat_9: 3.11008312e+02 + corr_stat_10: -1.28337756e+02 + corr_stat_11: 1.84030848e+02 + corr_stat_12: 9.43715720e+01 + corr_stat_13: 3.73036543e+02 + corr_stat_14: 3.45572602e+02 + corr_stat_15: 2.56840349e+02 + corr_stat_16: -1.40084799e+01 + corr_stat_17: -5.62974853e+01 + corr_stat_18: -2.23597419e+01 + corr_stat_19: -3.45850609e+01 + corr_stat_20: -3.85046945e+00 + corr_stat_21: 2.41467461e+01 + corr_stat_22: 1.23973521e+02 stat: 700.0 - sys_luminosity: 19455.800000000003 -- sys_corr_1: 555.9177640256048 - sys_corr_2: -132.40294231130835 - sys_corr_3: 48.11288237520048 - sys_corr_4: 64.62930714372166 - sys_corr_5: -46.528746842205365 - sys_corr_6: 30.08803149662597 - sys_corr_7: 72.05991348220348 - sys_corr_8: 0.4563046067568299 - sys_corr_9: -44.15596260395643 - sys_corr_10: -34.774410146365774 - sys_corr_11: 6.995551360939558 - sys_corr_12: -4.82527828615189 - sys_corr_13: 7.3868646621163885 - sys_corr_14: -10.041402059716956 - sys_corr_15: -20.334449786798327 - sys_corr_16: 59.63473308032045 - sys_corr_17: 13.896354071196184 - sys_corr_18: 16.68273614734021 - sys_corr_19: 13.488462389560302 - sys_corr_20: -48.08849958747949 - sys_corr_21: 30.8139398559944 - sys_corr_22: 86.0131987593152 - corr_stat_1: -3522.5489050538445 - corr_stat_2: 3592.987812920348 - corr_stat_3: 66.75937521525933 - corr_stat_4: 910.7502541754591 - corr_stat_5: 35.26706681327127 - corr_stat_6: 136.0655599318002 - corr_stat_7: 152.28341654015688 - corr_stat_8: -10.102419329960536 - corr_stat_9: -149.41399319106907 - corr_stat_10: 221.46622334455466 - corr_stat_11: -595.6129789835468 - corr_stat_12: -391.53498662252935 - corr_stat_13: 284.70181258663774 - corr_stat_14: 9.094016376152078 - corr_stat_15: -227.65699503769667 - corr_stat_16: -451.103344240016 - corr_stat_17: 791.0590009998517 - corr_stat_18: 561.48083048846 - corr_stat_19: 73.27402883433928 - corr_stat_20: -106.3795374010238 - corr_stat_21: 121.11378675262905 - corr_stat_22: 82.7024135349722 + sys_luminosity: 1.94558000e+04 +- sys_corr_1: 5.55917764e+02 + sys_corr_2: -1.32402942e+02 + sys_corr_3: 4.81128824e+01 + sys_corr_4: 6.46293071e+01 + sys_corr_5: -4.65287468e+01 + sys_corr_6: 3.00880315e+01 + sys_corr_7: 7.20599135e+01 + sys_corr_8: 4.56304607e-01 + sys_corr_9: -4.41559626e+01 + sys_corr_10: -3.47744101e+01 + sys_corr_11: 6.99555136e+00 + sys_corr_12: -4.82527829e+00 + sys_corr_13: 7.38686466e+00 + sys_corr_14: -1.00414021e+01 + sys_corr_15: -2.03344498e+01 + sys_corr_16: 5.96347331e+01 + sys_corr_17: 1.38963541e+01 + sys_corr_18: 1.66827361e+01 + sys_corr_19: 1.34884624e+01 + sys_corr_20: -4.80884996e+01 + sys_corr_21: 3.08139399e+01 + sys_corr_22: 8.60131988e+01 + corr_stat_1: -3.52254891e+03 + corr_stat_2: 3.59298781e+03 + corr_stat_3: 6.67593752e+01 + corr_stat_4: 9.10750254e+02 + corr_stat_5: 3.52670668e+01 + corr_stat_6: 1.36065560e+02 + corr_stat_7: 1.52283417e+02 + corr_stat_8: -1.01024193e+01 + corr_stat_9: -1.49413993e+02 + corr_stat_10: 2.21466223e+02 + corr_stat_11: -5.95612979e+02 + corr_stat_12: -3.91534987e+02 + corr_stat_13: 2.84701813e+02 + corr_stat_14: 9.09401638e+00 + corr_stat_15: -2.27656995e+02 + corr_stat_16: -4.51103344e+02 + corr_stat_17: 7.91059001e+02 + corr_stat_18: 5.61480830e+02 + corr_stat_19: 7.32740288e+01 + corr_stat_20: -1.06379537e+02 + corr_stat_21: 1.21113787e+02 + corr_stat_22: 8.27024135e+01 stat: 600.0 - sys_luminosity: 14794.000000000002 -- sys_corr_1: 528.5410413494166 - sys_corr_2: -238.95930537364103 - sys_corr_3: 48.67398233043306 - sys_corr_4: 21.30838335154781 - sys_corr_5: -19.655423028608062 - sys_corr_6: 7.659469916463421 - sys_corr_7: 1.3951869404389083 - sys_corr_8: -0.13539446799896507 - sys_corr_9: 14.393875553378988 - sys_corr_10: 19.5368296857518 - sys_corr_11: -2.702540702430029 - sys_corr_12: 82.12108921593685 - sys_corr_13: 14.47925133662323 - sys_corr_14: -9.981950651623116 - sys_corr_15: -8.730188843091387 - sys_corr_16: 28.93055732824761 - sys_corr_17: -106.37443046741068 - sys_corr_18: -1.2718745326846694 - sys_corr_19: -1.8163854714906535 - sys_corr_20: 16.259132305832452 - sys_corr_21: -10.935984694972475 - sys_corr_22: -2.3926767833429894 - corr_stat_1: -5099.360937065273 - corr_stat_2: 3494.6588462043646 - corr_stat_3: 145.29038085493704 - corr_stat_4: 789.2217232415122 - corr_stat_5: -222.51706131954916 - corr_stat_6: 66.02746004042582 - corr_stat_7: -68.93826433783013 - corr_stat_8: -138.2521665565624 - corr_stat_9: -219.3094548471554 - corr_stat_10: -696.085154670172 - corr_stat_11: -1.1492337588945354 - corr_stat_12: 274.33272163931724 - corr_stat_13: 328.5295360695479 - corr_stat_14: -93.38007916743109 - corr_stat_15: -315.98001339142786 - corr_stat_16: -125.91101564605758 - corr_stat_17: -63.23050466310938 - corr_stat_18: -761.8612858780325 - corr_stat_19: 186.36285952382067 - corr_stat_20: -541.2705341059532 - corr_stat_21: 476.0034771485141 - corr_stat_22: 207.8543294051984 + sys_luminosity: 1.47940000e+04 +- sys_corr_1: 5.28541041e+02 + sys_corr_2: -2.38959305e+02 + sys_corr_3: 4.86739823e+01 + sys_corr_4: 2.13083834e+01 + sys_corr_5: -1.96554230e+01 + sys_corr_6: 7.65946992e+00 + sys_corr_7: 1.39518694e+00 + sys_corr_8: -1.35394468e-01 + sys_corr_9: 1.43938756e+01 + sys_corr_10: 1.95368297e+01 + sys_corr_11: -2.70254070e+00 + sys_corr_12: 8.21210892e+01 + sys_corr_13: 1.44792513e+01 + sys_corr_14: -9.98195065e+00 + sys_corr_15: -8.73018884e+00 + sys_corr_16: 2.89305573e+01 + sys_corr_17: -1.06374430e+02 + sys_corr_18: -1.27187453e+00 + sys_corr_19: -1.81638547e+00 + sys_corr_20: 1.62591323e+01 + sys_corr_21: -1.09359847e+01 + sys_corr_22: -2.39267678e+00 + corr_stat_1: -5.09936094e+03 + corr_stat_2: 3.49465885e+03 + corr_stat_3: 1.45290381e+02 + corr_stat_4: 7.89221723e+02 + corr_stat_5: -2.22517061e+02 + corr_stat_6: 6.60274600e+01 + corr_stat_7: -6.89382643e+01 + corr_stat_8: -1.38252167e+02 + corr_stat_9: -2.19309455e+02 + corr_stat_10: -6.96085155e+02 + corr_stat_11: -1.14923376e+00 + corr_stat_12: 2.74332722e+02 + corr_stat_13: 3.28529536e+02 + corr_stat_14: -9.33800792e+01 + corr_stat_15: -3.15980013e+02 + corr_stat_16: -1.25911016e+02 + corr_stat_17: -6.32305047e+01 + corr_stat_18: -7.61861286e+02 + corr_stat_19: 1.86362860e+02 + corr_stat_20: -5.41270534e+02 + corr_stat_21: 4.76003477e+02 + corr_stat_22: 2.07854329e+02 stat: 600.0 - sys_luminosity: 14791.400000000001 -- sys_corr_1: 550.0072497654938 - sys_corr_2: -173.81027310066457 - sys_corr_3: 59.30297034237928 - sys_corr_4: 21.160075397736527 - sys_corr_5: -18.318525559594484 - sys_corr_6: 9.713730285387102 - sys_corr_7: 9.403290662099927 - sys_corr_8: 0.5279492665827921 - sys_corr_9: 2.54506629281804 - sys_corr_10: 54.85407874431502 - sys_corr_11: -70.35911458544811 - sys_corr_12: -34.877291293346005 - sys_corr_13: 5.518613207989995 - sys_corr_14: -2.118431647606133 - sys_corr_15: -12.390162705336413 - sys_corr_16: 32.86138812077157 - sys_corr_17: 23.36430650634034 - sys_corr_18: 8.32497204288024 - sys_corr_19: -100.7202393206207 - sys_corr_20: 34.751607869594636 - sys_corr_21: -19.511835162198384 - sys_corr_22: -0.20352788516534992 - corr_stat_1: -4119.263736476762 - corr_stat_2: 3600.532847070835 - corr_stat_3: 268.5934509469639 - corr_stat_4: 700.2823514146909 - corr_stat_5: 34.23293655768934 - corr_stat_6: 47.83489021604584 - corr_stat_7: 74.74475856375668 - corr_stat_8: -2.0441245026205035 - corr_stat_9: -107.40533243729726 - corr_stat_10: 536.523581463567 - corr_stat_11: 212.79782684586806 - corr_stat_12: 540.242280751777 - corr_stat_13: 268.4743832759423 - corr_stat_14: -158.5424108748457 - corr_stat_15: -177.13490651169624 - corr_stat_16: -254.77130544722985 - corr_stat_17: -874.5927825714178 - corr_stat_18: 605.8649406495368 - corr_stat_19: 106.57659611474985 - corr_stat_20: -97.55939984991572 - corr_stat_21: 38.63992875919733 - corr_stat_22: 42.99828106312595 + sys_luminosity: 1.47914000e+04 +- sys_corr_1: 5.50007250e+02 + sys_corr_2: -1.73810273e+02 + sys_corr_3: 5.93029703e+01 + sys_corr_4: 2.11600754e+01 + sys_corr_5: -1.83185256e+01 + sys_corr_6: 9.71373029e+00 + sys_corr_7: 9.40329066e+00 + sys_corr_8: 5.27949267e-01 + sys_corr_9: 2.54506629e+00 + sys_corr_10: 5.48540787e+01 + sys_corr_11: -7.03591146e+01 + sys_corr_12: -3.48772913e+01 + sys_corr_13: 5.51861321e+00 + sys_corr_14: -2.11843165e+00 + sys_corr_15: -1.23901627e+01 + sys_corr_16: 3.28613881e+01 + sys_corr_17: 2.33643065e+01 + sys_corr_18: 8.32497204e+00 + sys_corr_19: -1.00720239e+02 + sys_corr_20: 3.47516079e+01 + sys_corr_21: -1.95118352e+01 + sys_corr_22: -2.03527885e-01 + corr_stat_1: -4.11926374e+03 + corr_stat_2: 3.60053285e+03 + corr_stat_3: 2.68593451e+02 + corr_stat_4: 7.00282351e+02 + corr_stat_5: 3.42329366e+01 + corr_stat_6: 4.78348902e+01 + corr_stat_7: 7.47447586e+01 + corr_stat_8: -2.04412450e+00 + corr_stat_9: -1.07405332e+02 + corr_stat_10: 5.36523581e+02 + corr_stat_11: 2.12797827e+02 + corr_stat_12: 5.40242281e+02 + corr_stat_13: 2.68474383e+02 + corr_stat_14: -1.58542411e+02 + corr_stat_15: -1.77134907e+02 + corr_stat_16: -2.54771305e+02 + corr_stat_17: -8.74592783e+02 + corr_stat_18: 6.05864941e+02 + corr_stat_19: 1.06576596e+02 + corr_stat_20: -9.75593998e+01 + corr_stat_21: 3.86399288e+01 + corr_stat_22: 4.29982811e+01 stat: 600.0 - sys_luminosity: 14666.600000000002 -- sys_corr_1: 555.2263226079192 - sys_corr_2: -155.33493298538983 - sys_corr_3: 59.12212694431934 - sys_corr_4: 12.870960752439954 - sys_corr_5: -13.206420337106902 - sys_corr_6: 4.74235748778277 - sys_corr_7: -9.978377206319424 - sys_corr_8: -1.4129655946007746 - sys_corr_9: 20.806904747602218 - sys_corr_10: 41.49053762568739 - sys_corr_11: 77.75846377541 - sys_corr_12: -32.65919407133974 - sys_corr_13: 4.034504550607704 - sys_corr_14: -4.024555597675617 - sys_corr_15: -14.851744069821605 - sys_corr_16: 43.228685693730434 - sys_corr_17: 27.864407942031175 - sys_corr_18: 12.831304926170914 - sys_corr_19: 60.53398674368713 - sys_corr_20: 82.12952974858662 - sys_corr_21: -29.91416972824148 - sys_corr_22: 0.7265775196160755 - corr_stat_1: -3862.4544151605087 - corr_stat_2: 3597.2754605267064 - corr_stat_3: 327.308330079026 - corr_stat_4: 516.6696158720143 - corr_stat_5: -32.32161476304228 - corr_stat_6: -16.16248225941662 - corr_stat_7: -8.72096878290688 - corr_stat_8: -26.322072815861475 - corr_stat_9: 26.283646991940063 - corr_stat_10: 23.83943873540167 - corr_stat_11: 620.6495220070045 - corr_stat_12: -522.5124214033768 - corr_stat_13: 202.06708150690616 - corr_stat_14: 121.98979832214539 - corr_stat_15: -225.25268964406698 - corr_stat_16: 1043.8977577135563 - corr_stat_17: 108.60902891856847 - corr_stat_18: 299.00180389007943 - corr_stat_19: 108.457704694365 - corr_stat_20: -96.38367661737131 - corr_stat_21: 192.28190360867995 - corr_stat_22: -4.555512354672692 + sys_luminosity: 1.46666000e+04 +- sys_corr_1: 5.55226323e+02 + sys_corr_2: -1.55334933e+02 + sys_corr_3: 5.91221269e+01 + sys_corr_4: 1.28709608e+01 + sys_corr_5: -1.32064203e+01 + sys_corr_6: 4.74235749e+00 + sys_corr_7: -9.97837721e+00 + sys_corr_8: -1.41296559e+00 + sys_corr_9: 2.08069047e+01 + sys_corr_10: 4.14905376e+01 + sys_corr_11: 7.77584638e+01 + sys_corr_12: -3.26591941e+01 + sys_corr_13: 4.03450455e+00 + sys_corr_14: -4.02455560e+00 + sys_corr_15: -1.48517441e+01 + sys_corr_16: 4.32286857e+01 + sys_corr_17: 2.78644079e+01 + sys_corr_18: 1.28313049e+01 + sys_corr_19: 6.05339867e+01 + sys_corr_20: 8.21295297e+01 + sys_corr_21: -2.99141697e+01 + sys_corr_22: 7.26577520e-01 + corr_stat_1: -3.86245442e+03 + corr_stat_2: 3.59727546e+03 + corr_stat_3: 3.27308330e+02 + corr_stat_4: 5.16669616e+02 + corr_stat_5: -3.23216148e+01 + corr_stat_6: -1.61624823e+01 + corr_stat_7: -8.72096878e+00 + corr_stat_8: -2.63220728e+01 + corr_stat_9: 2.62836470e+01 + corr_stat_10: 2.38394387e+01 + corr_stat_11: 6.20649522e+02 + corr_stat_12: -5.22512421e+02 + corr_stat_13: 2.02067082e+02 + corr_stat_14: 1.21989798e+02 + corr_stat_15: -2.25252690e+02 + corr_stat_16: 1.04389776e+03 + corr_stat_17: 1.08609029e+02 + corr_stat_18: 2.99001804e+02 + corr_stat_19: 1.08457705e+02 + corr_stat_20: -9.63836766e+01 + corr_stat_21: 1.92281904e+02 + corr_stat_22: -4.55551235e+00 stat: 600.0 sys_luminosity: 14458.6 -- sys_corr_1: 557.1043626791165 - sys_corr_2: -136.99973546979615 - sys_corr_3: 73.23640873656862 - sys_corr_4: -7.7656115431880615 - sys_corr_5: 4.1767600176149005 - sys_corr_6: -2.5605010875010548 - sys_corr_7: -32.86393191585379 - sys_corr_8: -0.5733773791683571 - sys_corr_9: 43.82086630671995 - sys_corr_10: -74.30893572646492 - sys_corr_11: -15.209796392155514 - sys_corr_12: -19.591057235698017 - sys_corr_13: 15.59207322717714 - sys_corr_14: -10.300910143707151 - sys_corr_15: -13.080622675841095 - sys_corr_16: 58.310900620580526 - sys_corr_17: 9.736153887719759 - sys_corr_18: 8.817514405792867 - sys_corr_19: 7.630972202376171 - sys_corr_20: -24.125332939563794 - sys_corr_21: 57.34052246731807 - sys_corr_22: -90.87957861190868 - corr_stat_1: -3742.3832257679496 - corr_stat_2: 3689.3787938492305 - corr_stat_3: 528.0503792742101 - corr_stat_4: 361.0175383510363 - corr_stat_5: 4.714853412665139 - corr_stat_6: -258.66076598592565 - corr_stat_7: -239.9481691236739 - corr_stat_8: -6.97647326562804 - corr_stat_9: 720.37315938866 - corr_stat_10: -23.25022038855242 - corr_stat_11: -116.00455790100182 - corr_stat_12: 37.97251510708129 - corr_stat_13: 356.93981100650376 - corr_stat_14: -39.71814045145907 - corr_stat_15: -192.4126470707119 - corr_stat_16: -50.826538311784965 - corr_stat_17: -10.823543913946256 - corr_stat_18: -284.5995714351222 - corr_stat_19: 183.17258356279183 - corr_stat_20: 1124.8302918658846 - corr_stat_21: 102.22171960998566 - corr_stat_22: 77.48770362129729 +- sys_corr_1: 5.57104363e+02 + sys_corr_2: -1.36999735e+02 + sys_corr_3: 7.32364087e+01 + sys_corr_4: -7.76561154e+00 + sys_corr_5: 4.17676002e+00 + sys_corr_6: -2.56050109e+00 + sys_corr_7: -3.28639319e+01 + sys_corr_8: -5.73377379e-01 + sys_corr_9: 4.38208663e+01 + sys_corr_10: -7.43089357e+01 + sys_corr_11: -1.52097964e+01 + sys_corr_12: -1.95910572e+01 + sys_corr_13: 1.55920732e+01 + sys_corr_14: -1.03009101e+01 + sys_corr_15: -1.30806227e+01 + sys_corr_16: 5.83109006e+01 + sys_corr_17: 9.73615389e+00 + sys_corr_18: 8.81751441e+00 + sys_corr_19: 7.63097220e+00 + sys_corr_20: -2.41253329e+01 + sys_corr_21: 5.73405225e+01 + sys_corr_22: -9.08795786e+01 + corr_stat_1: -3.74238323e+03 + corr_stat_2: 3.68937879e+03 + corr_stat_3: 5.28050379e+02 + corr_stat_4: 3.61017538e+02 + corr_stat_5: 4.71485341e+00 + corr_stat_6: -2.58660766e+02 + corr_stat_7: -2.39948169e+02 + corr_stat_8: -6.97647327e+00 + corr_stat_9: 7.20373159e+02 + corr_stat_10: -2.32502204e+01 + corr_stat_11: -1.16004558e+02 + corr_stat_12: 3.79725151e+01 + corr_stat_13: 3.56939811e+02 + corr_stat_14: -3.97181405e+01 + corr_stat_15: -1.92412647e+02 + corr_stat_16: -5.08265383e+01 + corr_stat_17: -1.08235439e+01 + corr_stat_18: -2.84599571e+02 + corr_stat_19: 1.83172584e+02 + corr_stat_20: 1.12483029e+03 + corr_stat_21: 1.02221720e+02 + corr_stat_22: 7.74877036e+01 stat: 600.0 sys_luminosity: 14289.6 -- sys_corr_1: 552.23453356214 - sys_corr_2: 103.40338462081426 - sys_corr_3: 87.82893359614611 - sys_corr_4: 12.950967070605516 - sys_corr_5: 104.2431489398548 - sys_corr_6: 30.34093553173911 - sys_corr_7: 23.188459321956174 - sys_corr_8: -0.17886801278331788 - sys_corr_9: -13.36994380593261 - sys_corr_10: 6.3122523102155235 - sys_corr_11: 0.465229461881931 - sys_corr_12: -15.120617481825013 - sys_corr_13: 58.0268131734802 - sys_corr_14: -123.68886884212857 - sys_corr_15: 46.89167346693589 - sys_corr_16: -51.787008788741275 - sys_corr_17: 1.6643128340412996 - sys_corr_18: -10.306847935108625 - sys_corr_19: 4.304026597154603 - sys_corr_20: -2.937063304435862 - sys_corr_21: 0.4796067329309654 - sys_corr_22: 2.75056647466226 - corr_stat_1: -1554.4932355091837 - corr_stat_2: 3988.490231084662 - corr_stat_3: 693.1819069758163 - corr_stat_4: 266.49128552767263 - corr_stat_5: 315.9391284834407 - corr_stat_6: -413.65891221107347 - corr_stat_7: -45.31957439446909 - corr_stat_8: 582.817704276496 - corr_stat_9: -134.29459935001626 - corr_stat_10: -66.00044110068809 - corr_stat_11: 17.317267941245497 - corr_stat_12: -0.06589493123291612 - corr_stat_13: 313.4171691968983 - corr_stat_14: -28.73469962347398 - corr_stat_15: -150.45432929656005 - corr_stat_16: 40.306939023758225 - corr_stat_17: 57.78131688822478 - corr_stat_18: -227.0272213508498 - corr_stat_19: 5.063056870193055 - corr_stat_20: -206.09123834021105 - corr_stat_21: -1190.180366420169 - corr_stat_22: 106.76797453332219 +- sys_corr_1: 5.52234534e+02 + sys_corr_2: 1.03403385e+02 + sys_corr_3: 8.78289336e+01 + sys_corr_4: 1.29509671e+01 + sys_corr_5: 1.04243149e+02 + sys_corr_6: 3.03409355e+01 + sys_corr_7: 2.31884593e+01 + sys_corr_8: -1.78868013e-01 + sys_corr_9: -1.33699438e+01 + sys_corr_10: 6.31225231e+00 + sys_corr_11: 4.65229462e-01 + sys_corr_12: -1.51206175e+01 + sys_corr_13: 5.80268132e+01 + sys_corr_14: -1.23688869e+02 + sys_corr_15: 4.68916735e+01 + sys_corr_16: -5.17870088e+01 + sys_corr_17: 1.66431283e+00 + sys_corr_18: -1.03068479e+01 + sys_corr_19: 4.30402660e+00 + sys_corr_20: -2.93706330e+00 + sys_corr_21: 4.79606733e-01 + sys_corr_22: 2.75056647e+00 + corr_stat_1: -1.55449324e+03 + corr_stat_2: 3.98849023e+03 + corr_stat_3: 6.93181907e+02 + corr_stat_4: 2.66491286e+02 + corr_stat_5: 3.15939128e+02 + corr_stat_6: -4.13658912e+02 + corr_stat_7: -4.53195744e+01 + corr_stat_8: 5.82817704e+02 + corr_stat_9: -1.34294599e+02 + corr_stat_10: -6.60004411e+01 + corr_stat_11: 1.73172679e+01 + corr_stat_12: -6.58949312e-02 + corr_stat_13: 3.13417169e+02 + corr_stat_14: -2.87346996e+01 + corr_stat_15: -1.50454329e+02 + corr_stat_16: 4.03069390e+01 + corr_stat_17: 5.77813169e+01 + corr_stat_18: -2.27027221e+02 + corr_stat_19: 5.06305687e+00 + corr_stat_20: -2.06091238e+02 + corr_stat_21: -1.19018037e+03 + corr_stat_22: 1.06767975e+02 stat: 600.0 sys_luminosity: 13928.2 -- sys_corr_1: 483.6329938815683 - sys_corr_2: 283.65015279893674 - sys_corr_3: 107.57915859674418 - sys_corr_4: -76.2534864116297 - sys_corr_5: -11.108831680513818 - sys_corr_6: 50.11622639217412 - sys_corr_7: 16.90070860443196 - sys_corr_8: -0.8367743919894418 - sys_corr_9: -19.813032267904703 - sys_corr_10: 0.7030745179888767 - sys_corr_11: 8.799547378608311 - sys_corr_12: 0.5429351298492877 - sys_corr_13: 97.410759256836 - sys_corr_14: 114.47094549700164 - sys_corr_15: 38.83755271712906 - sys_corr_16: -26.576866420807377 - sys_corr_17: 0.9891085356496501 - sys_corr_18: 0.9882714921559045 - sys_corr_19: 1.4825946434837587 - sys_corr_20: -6.398425433784854 - sys_corr_21: -2.800415192079245 - sys_corr_22: 1.273066355078631 - corr_stat_1: -135.09709550802918 - corr_stat_2: 4242.1943667974465 - corr_stat_3: 994.968680530433 - corr_stat_4: 108.23171289901195 - corr_stat_5: 340.44916564767743 - corr_stat_6: -295.566890808373 - corr_stat_7: 232.18468392781574 - corr_stat_8: -381.2747770113846 - corr_stat_9: -64.4935628257594 - corr_stat_10: -44.55443210340934 - corr_stat_11: -9.48428667915245 - corr_stat_12: -12.891798376779082 - corr_stat_13: 290.29390809858455 - corr_stat_14: 42.68346549356155 - corr_stat_15: 174.8333974344331 - corr_stat_16: -68.34582979230746 - corr_stat_17: -4.730378376331919 - corr_stat_18: -109.3466200747226 - corr_stat_19: -744.9093059404961 - corr_stat_20: -51.58981301599331 - corr_stat_21: 144.97073786697442 - corr_stat_22: -1011.4521345340693 +- sys_corr_1: 4.83632994e+02 + sys_corr_2: 2.83650153e+02 + sys_corr_3: 1.07579159e+02 + sys_corr_4: -7.62534864e+01 + sys_corr_5: -1.11088317e+01 + sys_corr_6: 5.01162264e+01 + sys_corr_7: 1.69007086e+01 + sys_corr_8: -8.36774392e-01 + sys_corr_9: -1.98130323e+01 + sys_corr_10: 7.03074518e-01 + sys_corr_11: 8.79954738e+00 + sys_corr_12: 5.42935130e-01 + sys_corr_13: 9.74107593e+01 + sys_corr_14: 1.14470945e+02 + sys_corr_15: 3.88375527e+01 + sys_corr_16: -2.65768664e+01 + sys_corr_17: 9.89108536e-01 + sys_corr_18: 9.88271492e-01 + sys_corr_19: 1.48259464e+00 + sys_corr_20: -6.39842543e+00 + sys_corr_21: -2.80041519e+00 + sys_corr_22: 1.27306636e+00 + corr_stat_1: -1.35097096e+02 + corr_stat_2: 4.24219437e+03 + corr_stat_3: 9.94968681e+02 + corr_stat_4: 1.08231713e+02 + corr_stat_5: 3.40449166e+02 + corr_stat_6: -2.95566891e+02 + corr_stat_7: 2.32184684e+02 + corr_stat_8: -3.81274777e+02 + corr_stat_9: -6.44935628e+01 + corr_stat_10: -4.45544321e+01 + corr_stat_11: -9.48428668e+00 + corr_stat_12: -1.28917984e+01 + corr_stat_13: 2.90293908e+02 + corr_stat_14: 4.26834655e+01 + corr_stat_15: 1.74833397e+02 + corr_stat_16: -6.83458298e+01 + corr_stat_17: -4.73037838e+00 + corr_stat_18: -1.09346620e+02 + corr_stat_19: -7.44909306e+02 + corr_stat_20: -5.15898130e+01 + corr_stat_21: 1.44970738e+02 + corr_stat_22: -1.01145213e+03 stat: 600.0 - sys_luminosity: 13556.400000000001 -- sys_corr_1: 486.9513411790148 - sys_corr_2: 271.6662898213543 - sys_corr_3: 139.33014083726923 - sys_corr_4: -35.27183358466969 - sys_corr_5: 15.254080823882452 - sys_corr_6: -65.04715907914199 - sys_corr_7: 10.264473528898524 - sys_corr_8: -1.2015566102292563 - sys_corr_9: -17.586902810156214 - sys_corr_10: -2.9672123505932717 - sys_corr_11: -1.7659862369543204 - sys_corr_12: 10.685097134159989 - sys_corr_13: -125.59843382093808 - sys_corr_14: 18.229245783295816 - sys_corr_15: 80.6536558945349 - sys_corr_16: 8.780867058080457 - sys_corr_17: -0.5417470433881312 - sys_corr_18: -25.263822074563656 - sys_corr_19: 0.9091034018915534 - sys_corr_20: 0.5726727709729101 - sys_corr_21: 5.883734173400911 - sys_corr_22: 7.006896421007432 - corr_stat_1: -258.94609399380363 - corr_stat_2: 4483.1720688411415 - corr_stat_3: 1352.952647820414 - corr_stat_4: 88.66218529787213 - corr_stat_5: 286.6021132440774 - corr_stat_6: 297.12515039359346 - corr_stat_7: -238.77936178864394 - corr_stat_8: 20.717252016734008 - corr_stat_9: -11.007248741940849 - corr_stat_10: -11.197334208108327 - corr_stat_11: -1.682930825380587 - corr_stat_12: 8.87169475163091 - corr_stat_13: -151.59035170899577 - corr_stat_14: -78.13077714961759 - corr_stat_15: 1082.51599184805 - corr_stat_16: -14.771894229811283 - corr_stat_17: 63.527263988723305 - corr_stat_18: 0.44571073601664574 - corr_stat_19: 742.8791575342144 - corr_stat_20: -94.50920252549453 - corr_stat_21: 77.06297859147843 - corr_stat_22: -75.21367247262941 + sys_luminosity: 1.35564000e+04 +- sys_corr_1: 4.86951341e+02 + sys_corr_2: 2.71666290e+02 + sys_corr_3: 1.39330141e+02 + sys_corr_4: -3.52718336e+01 + sys_corr_5: 1.52540808e+01 + sys_corr_6: -6.50471591e+01 + sys_corr_7: 1.02644735e+01 + sys_corr_8: -1.20155661e+00 + sys_corr_9: -1.75869028e+01 + sys_corr_10: -2.96721235e+00 + sys_corr_11: -1.76598624e+00 + sys_corr_12: 1.06850971e+01 + sys_corr_13: -1.25598434e+02 + sys_corr_14: 1.82292458e+01 + sys_corr_15: 8.06536559e+01 + sys_corr_16: 8.78086706e+00 + sys_corr_17: -5.41747043e-01 + sys_corr_18: -2.52638221e+01 + sys_corr_19: 9.09103402e-01 + sys_corr_20: 5.72672771e-01 + sys_corr_21: 5.88373417e+00 + sys_corr_22: 7.00689642e+00 + corr_stat_1: -2.58946094e+02 + corr_stat_2: 4.48317207e+03 + corr_stat_3: 1.35295265e+03 + corr_stat_4: 8.86621853e+01 + corr_stat_5: 2.86602113e+02 + corr_stat_6: 2.97125150e+02 + corr_stat_7: -2.38779362e+02 + corr_stat_8: 2.07172520e+01 + corr_stat_9: -1.10072487e+01 + corr_stat_10: -1.11973342e+01 + corr_stat_11: -1.68293083e+00 + corr_stat_12: 8.87169475e+00 + corr_stat_13: -1.51590352e+02 + corr_stat_14: -7.81307771e+01 + corr_stat_15: 1.08251599e+03 + corr_stat_16: -1.47718942e+01 + corr_stat_17: 6.35272640e+01 + corr_stat_18: 4.45710736e-01 + corr_stat_19: 7.42879158e+02 + corr_stat_20: -9.45092025e+01 + corr_stat_21: 7.70629786e+01 + corr_stat_22: -7.52136725e+01 stat: 600.0 - sys_luminosity: 13215.800000000001 -- sys_corr_1: 350.36380509692015 - sys_corr_2: 446.2699909100363 - sys_corr_3: 112.57823431068553 - sys_corr_4: 5.8341569290319555 - sys_corr_5: -3.6074585720654646 - sys_corr_6: -4.201875680104967 - sys_corr_7: -52.84086976129153 - sys_corr_8: -2.644381894087352 - sys_corr_9: -34.977677522223836 - sys_corr_10: -3.7344092869606635 - sys_corr_11: 3.580359498132741 - sys_corr_12: 7.315742685566192 - sys_corr_13: -20.796885965381783 - sys_corr_14: 1.2841790016606225 - sys_corr_15: -120.97503125044832 - sys_corr_16: -52.137232649843384 - sys_corr_17: 1.4363745616497852 - sys_corr_18: -55.185838343749026 - sys_corr_19: -1.208355212637487 - sys_corr_20: 5.776288437675593 - sys_corr_21: 17.68757502542747 - sys_corr_22: 8.014724525745441 - corr_stat_1: 1628.8047310866236 - corr_stat_2: 4545.303944750983 - corr_stat_3: 1368.85370113845 - corr_stat_4: 18.507080793916153 - corr_stat_5: -162.78688070257286 - corr_stat_6: 148.16871646725346 - corr_stat_7: 319.04508239490355 - corr_stat_8: 115.29894867309049 - corr_stat_9: 113.96043142824124 - corr_stat_10: -70.62227426447517 - corr_stat_11: 9.618011237603639 - corr_stat_12: 0.8858624562005214 - corr_stat_13: -322.58829970336876 - corr_stat_14: -14.745458472112592 - corr_stat_15: 240.89206723441143 - corr_stat_16: 12.547868862975246 - corr_stat_17: -12.583513156669422 - corr_stat_18: 42.1120933355489 - corr_stat_19: -852.2603272035795 - corr_stat_20: 28.067939036700793 - corr_stat_21: 146.8400426226806 - corr_stat_22: 870.8633546129416 + sys_luminosity: 1.32158000e+04 +- sys_corr_1: 3.50363805e+02 + sys_corr_2: 4.46269991e+02 + sys_corr_3: 1.12578234e+02 + sys_corr_4: 5.83415693e+00 + sys_corr_5: -3.60745857e+00 + sys_corr_6: -4.20187568e+00 + sys_corr_7: -5.28408698e+01 + sys_corr_8: -2.64438189e+00 + sys_corr_9: -3.49776775e+01 + sys_corr_10: -3.73440929e+00 + sys_corr_11: 3.58035950e+00 + sys_corr_12: 7.31574269e+00 + sys_corr_13: -2.07968860e+01 + sys_corr_14: 1.28417900e+00 + sys_corr_15: -1.20975031e+02 + sys_corr_16: -5.21372326e+01 + sys_corr_17: 1.43637456e+00 + sys_corr_18: -5.51858383e+01 + sys_corr_19: -1.20835521e+00 + sys_corr_20: 5.77628844e+00 + sys_corr_21: 1.76875750e+01 + sys_corr_22: 8.01472453e+00 + corr_stat_1: 1.62880473e+03 + corr_stat_2: 4.54530394e+03 + corr_stat_3: 1.36885370e+03 + corr_stat_4: 1.85070808e+01 + corr_stat_5: -1.62786881e+02 + corr_stat_6: 1.48168716e+02 + corr_stat_7: 3.19045082e+02 + corr_stat_8: 1.15298949e+02 + corr_stat_9: 1.13960431e+02 + corr_stat_10: -7.06222743e+01 + corr_stat_11: 9.61801124e+00 + corr_stat_12: 8.85862456e-01 + corr_stat_13: -3.22588300e+02 + corr_stat_14: -1.47454585e+01 + corr_stat_15: 2.40892067e+02 + corr_stat_16: 1.25478689e+01 + corr_stat_17: -1.25835132e+01 + corr_stat_18: 4.21120933e+01 + corr_stat_19: -8.52260327e+02 + corr_stat_20: 2.80679390e+01 + corr_stat_21: 1.46840043e+02 + corr_stat_22: 8.70863355e+02 stat: 600.0 sys_luminosity: 12680.2 -- sys_corr_1: 239.97076053304463 - sys_corr_2: 520.9620249249799 - sys_corr_3: 61.52238590993829 - sys_corr_4: 50.51164551882331 - sys_corr_5: -22.24431219312913 - sys_corr_6: 17.20464946759938 - sys_corr_7: 14.490659361831085 - sys_corr_8: -10.708779057510505 - sys_corr_9: 90.4331449891912 - sys_corr_10: 4.521166986306394 - sys_corr_11: -3.2736109098794075 - sys_corr_12: 18.417607297912706 - sys_corr_13: -28.523731888232877 - sys_corr_14: -2.7169875312538765 - sys_corr_15: -21.678644069862933 - sys_corr_16: -29.44427839325138 - sys_corr_17: 7.459047690703971 - sys_corr_18: 87.08907412172464 - sys_corr_19: 5.363939865479382 - sys_corr_20: -42.325921739745496 - sys_corr_21: -57.11491926540617 - sys_corr_22: -11.47859783955312 - corr_stat_1: 2768.579832555696 - corr_stat_2: 4181.244035289273 - corr_stat_3: 888.6786586176437 - corr_stat_4: 152.4531784289508 - corr_stat_5: -582.8335114254843 - corr_stat_6: -214.46271218827627 - corr_stat_7: -382.42958393889757 - corr_stat_8: -149.68989151178096 - corr_stat_9: -209.8237757450157 - corr_stat_10: 78.1250253308019 - corr_stat_11: -52.425846561777384 - corr_stat_12: -32.90768639626238 - corr_stat_13: -728.757365820229 - corr_stat_14: 817.5099970260683 - corr_stat_15: -442.3975471222339 - corr_stat_16: -168.56636698925536 - corr_stat_17: -105.5973754512255 - corr_stat_18: -18.669077637994963 - corr_stat_19: 240.95219984894118 - corr_stat_20: 0.1599881283155339 - corr_stat_21: -41.8838193737312 - corr_stat_22: -161.279519355125 +- sys_corr_1: 2.39970761e+02 + sys_corr_2: 5.20962025e+02 + sys_corr_3: 6.15223859e+01 + sys_corr_4: 5.05116455e+01 + sys_corr_5: -2.22443122e+01 + sys_corr_6: 1.72046495e+01 + sys_corr_7: 1.44906594e+01 + sys_corr_8: -1.07087791e+01 + sys_corr_9: 9.04331450e+01 + sys_corr_10: 4.52116699e+00 + sys_corr_11: -3.27361091e+00 + sys_corr_12: 1.84176073e+01 + sys_corr_13: -2.85237319e+01 + sys_corr_14: -2.71698753e+00 + sys_corr_15: -2.16786441e+01 + sys_corr_16: -2.94442784e+01 + sys_corr_17: 7.45904769e+00 + sys_corr_18: 8.70890741e+01 + sys_corr_19: 5.36393987e+00 + sys_corr_20: -4.23259217e+01 + sys_corr_21: -5.71149193e+01 + sys_corr_22: -1.14785978e+01 + corr_stat_1: 2.76857983e+03 + corr_stat_2: 4.18124404e+03 + corr_stat_3: 8.88678659e+02 + corr_stat_4: 1.52453178e+02 + corr_stat_5: -5.82833511e+02 + corr_stat_6: -2.14462712e+02 + corr_stat_7: -3.82429584e+02 + corr_stat_8: -1.49689892e+02 + corr_stat_9: -2.09823776e+02 + corr_stat_10: 7.81250253e+01 + corr_stat_11: -5.24258466e+01 + corr_stat_12: -3.29076864e+01 + corr_stat_13: -7.28757366e+02 + corr_stat_14: 8.17509997e+02 + corr_stat_15: -4.42397547e+02 + corr_stat_16: -1.68566367e+02 + corr_stat_17: -1.05597375e+02 + corr_stat_18: -1.86690776e+01 + corr_stat_19: 2.40952200e+02 + corr_stat_20: 1.59988128e-01 + corr_stat_21: -4.18838194e+01 + corr_stat_22: -1.61279519e+02 stat: 600.0 sys_luminosity: 12131.6 -- sys_corr_1: -72.35430518179632 - sys_corr_2: 585.1703960917055 - sys_corr_3: -9.019538562804382 - sys_corr_4: 46.39882707641838 - sys_corr_5: -18.865398476177223 - sys_corr_6: 20.776660899511114 - sys_corr_7: 29.022526944486707 - sys_corr_8: 57.05333862564022 - sys_corr_9: 30.567623682258066 - sys_corr_10: 1.8610248175305897 - sys_corr_11: -1.6356635279431768 - sys_corr_12: -5.560533891173997 - sys_corr_13: 8.921645451724535 - sys_corr_14: -3.660983819359387 - sys_corr_15: 4.172861442112091 - sys_corr_16: 30.35702607373111 - sys_corr_17: -0.12732755104282578 - sys_corr_18: -46.33909710903161 - sys_corr_19: 4.344132871350661 - sys_corr_20: -9.333541475756133 - sys_corr_21: -27.815753981248942 - sys_corr_22: -13.81543685748182 - corr_stat_1: 9561.666974536009 - corr_stat_2: 4355.211165922523 - corr_stat_3: 215.15747814322617 - corr_stat_4: 578.9279688632575 - corr_stat_5: -72.56728442654163 - corr_stat_6: -41.793215827341676 - corr_stat_7: -135.0313132692055 - corr_stat_8: -56.4982829406733 - corr_stat_9: 118.67893789926927 - corr_stat_10: -79.7131050831993 - corr_stat_11: 60.80458401186932 - corr_stat_12: 39.41529651483454 - corr_stat_13: -767.9522444258226 - corr_stat_14: -812.4658047277343 - corr_stat_15: -436.68579315600675 - corr_stat_16: 74.84701480860129 - corr_stat_17: 103.554500412267 - corr_stat_18: 14.574617197622592 - corr_stat_19: 102.57404374940045 - corr_stat_20: 21.976542263487982 - corr_stat_21: -34.46920177393518 - corr_stat_22: -248.60778991796158 +- sys_corr_1: -7.23543052e+01 + sys_corr_2: 5.85170396e+02 + sys_corr_3: -9.01953856e+00 + sys_corr_4: 4.63988271e+01 + sys_corr_5: -1.88653985e+01 + sys_corr_6: 2.07766609e+01 + sys_corr_7: 2.90225269e+01 + sys_corr_8: 5.70533386e+01 + sys_corr_9: 3.05676237e+01 + sys_corr_10: 1.86102482e+00 + sys_corr_11: -1.63566353e+00 + sys_corr_12: -5.56053389e+00 + sys_corr_13: 8.92164545e+00 + sys_corr_14: -3.66098382e+00 + sys_corr_15: 4.17286144e+00 + sys_corr_16: 3.03570261e+01 + sys_corr_17: -1.27327551e-01 + sys_corr_18: -4.63390971e+01 + sys_corr_19: 4.34413287e+00 + sys_corr_20: -9.33354148e+00 + sys_corr_21: -2.78157540e+01 + sys_corr_22: -1.38154369e+01 + corr_stat_1: 9.56166697e+03 + corr_stat_2: 4.35521117e+03 + corr_stat_3: 2.15157478e+02 + corr_stat_4: 5.78927969e+02 + corr_stat_5: -7.25672844e+01 + corr_stat_6: -4.17932158e+01 + corr_stat_7: -1.35031313e+02 + corr_stat_8: -5.64982829e+01 + corr_stat_9: 1.18678938e+02 + corr_stat_10: -7.97131051e+01 + corr_stat_11: 6.08045840e+01 + corr_stat_12: 3.94152965e+01 + corr_stat_13: -7.67952244e+02 + corr_stat_14: -8.12465805e+02 + corr_stat_15: -4.36685793e+02 + corr_stat_16: 7.48470148e+01 + corr_stat_17: 1.03554500e+02 + corr_stat_18: 1.45746172e+01 + corr_stat_19: 1.02574044e+02 + corr_stat_20: 2.19765423e+01 + corr_stat_21: -3.44692018e+01 + corr_stat_22: -2.48607790e+02 stat: 600.0 - sys_luminosity: 11434.800000000001 + sys_luminosity: 1.14348000e+04 diff --git a/nnpdf_data/nnpdf_data/commondata/CMS_Z0_7TEV_DIMUON/data.yaml b/nnpdf_data/nnpdf_data/commondata/CMS_Z0_7TEV_DIMUON/data.yaml index 0f4a8378be..6d76f4052a 100644 --- a/nnpdf_data/nnpdf_data/commondata/CMS_Z0_7TEV_DIMUON/data.yaml +++ b/nnpdf_data/nnpdf_data/commondata/CMS_Z0_7TEV_DIMUON/data.yaml @@ -1,64 +1,64 @@ data_central: -- 17838.253 -- 17693.326 -- 17196.007 +- 1.78382530e+04 +- 1.76933260e+04 +- 1.71960070e+04 - 17623.49 -- 17842.359 -- 18085.273 -- 18417.858 -- 18142.323 -- 18050.122 -- 17833.044 -- 17529.545 -- 17462.876 -- 16907.526 -- 16939.288 -- 16296.776 -- 16448.996 -- 15458.903 -- 15204.935 -- 14064.159 -- 12615.568 -- 11017.898 +- 1.78423590e+04 +- 1.80852730e+04 +- 1.84178580e+04 +- 1.81423230e+04 +- 1.80501220e+04 +- 1.78330440e+04 +- 1.75295450e+04 +- 1.74628760e+04 +- 1.69075260e+04 +- 1.69392880e+04 +- 1.62967760e+04 +- 1.64489960e+04 +- 1.54589030e+04 +- 1.52049350e+04 +- 1.40641590e+04 +- 1.26155680e+04 +- 1.10178980e+04 - 8403.737 - 5460.781 - 2067.908 -- 26874.944 -- 25629.601 -- 25882.424 -- 25673.259 -- 26112.636 -- 27090.751 -- 26169.076 -- 25647.977 -- 26293.559 +- 2.68749440e+04 +- 2.56296010e+04 +- 2.58824240e+04 +- 2.56732590e+04 +- 2.61126360e+04 +- 2.70907510e+04 +- 2.61690760e+04 +- 2.56479770e+04 +- 2.62935590e+04 - 25589.58 -- 25724.886 -- 25546.165 -- 24513.091 -- 25760.171 -- 24092.893 -- 23348.585 -- 21691.351 -- 19279.913 -- 16553.852 -- 13773.255 -- 11012.978 +- 2.57248860e+04 +- 2.55461650e+04 +- 2.45130910e+04 +- 2.57601710e+04 +- 2.40928930e+04 +- 2.33485850e+04 +- 2.16913510e+04 +- 1.92799130e+04 +- 1.65538520e+04 +- 1.37732550e+04 +- 1.10129780e+04 - 7891.062 - 4674.3 - 1627.155 -- 11216.691 -- 11199.422 -- 11051.234 -- 11345.679 -- 10671.856 -- 11694.945 -- 11487.428 -- 11256.563 +- 1.12166910e+04 +- 1.11994220e+04 +- 1.10512340e+04 +- 1.13456790e+04 +- 1.06718560e+04 +- 1.16949450e+04 +- 1.14874280e+04 +- 1.12565630e+04 - 11296.15 -- 11169.739 -- 10772.712 -- 10304.361 +- 1.11697390e+04 +- 1.07727120e+04 +- 1.03043610e+04 - 9736.368 - 9801.697 - 8932.778 @@ -71,30 +71,30 @@ data_central: - 2569.66 - 1798.185 - 611.918 -- 317227.357 -- 315237.627 -- 315846.71 -- 312756.99 -- 312604.984 -- 309597.656 -- 306842.798 -- 299530.229 -- 292458.556 -- 285898.396 -- 276025.34 -- 264329.371 -- 249702.904 -- 233914.988 -- 219117.678 -- 196752.813 -- 178022.938 -- 153676.597 -- 131424.463 -- 106314.793 -- 82105.324 -- 57070.635 -- 33452.394 -- 10624.411 +- 3.17227357e+05 +- 3.15237627e+05 +- 3.15846710e+05 +- 3.12756990e+05 +- 3.12604984e+05 +- 3.09597656e+05 +- 3.06842798e+05 +- 2.99530229e+05 +- 2.92458556e+05 +- 2.85898396e+05 +- 2.76025340e+05 +- 2.64329371e+05 +- 2.49702904e+05 +- 2.33914988e+05 +- 2.19117678e+05 +- 1.96752813e+05 +- 1.78022938e+05 +- 1.53676597e+05 +- 1.31424463e+05 +- 1.06314793e+05 +- 8.21053240e+04 +- 5.70706350e+04 +- 3.34523940e+04 +- 1.06244110e+04 - 3474.077 - 3604.428 - 3536.56 diff --git a/nnpdf_data/nnpdf_data/commondata/CMS_Z0_7TEV_DIMUON/filter.py b/nnpdf_data/nnpdf_data/commondata/CMS_Z0_7TEV_DIMUON/filter.py index d5cd43745e..57dc822fee 100644 --- a/nnpdf_data/nnpdf_data/commondata/CMS_Z0_7TEV_DIMUON/filter.py +++ b/nnpdf_data/nnpdf_data/commondata/CMS_Z0_7TEV_DIMUON/filter.py @@ -4,7 +4,9 @@ import pandas as pd import yaml -from nnpdf_data.filter_utils.utils import covmat_to_artunc +from nnpdf_data.filter_utils.utils import covmat_to_artunc, prettify_float + +yaml.add_representer(float, prettify_float) # MZ_VALUE = 91.1876 # GeV # MW_VALUE = 80.398 # GeV diff --git a/nnpdf_data/nnpdf_data/commondata/CMS_Z0_7TEV_DIMUON/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/CMS_Z0_7TEV_DIMUON/uncertainties.yaml index 4a81b31c7b..b5520d5da4 100644 --- a/nnpdf_data/nnpdf_data/commondata/CMS_Z0_7TEV_DIMUON/uncertainties.yaml +++ b/nnpdf_data/nnpdf_data/commondata/CMS_Z0_7TEV_DIMUON/uncertainties.yaml @@ -536,17691 +536,17691 @@ definitions: treatment: MULT type: CMSLUMI11 bins: -- sys_corr_1: 219.38809570668244 - sys_corr_2: 83.24704740257387 - sys_corr_3: -113.83155834198604 - sys_corr_4: 63.94044265423962 - sys_corr_5: 424.4574958463709 - sys_corr_6: -970.144273846535 - sys_corr_7: -27.11121616690821 - sys_corr_8: -41.15655664563541 - sys_corr_9: -32.88810449224184 - sys_corr_10: -29.696659141201607 - sys_corr_11: -107.31606333148744 - sys_corr_12: -131.4440462384528 - sys_corr_13: 87.69554177258385 - sys_corr_14: -16.294913876939606 - sys_corr_15: -28.538602282607837 - sys_corr_16: 0.5145751967941183 - sys_corr_17: -0.33276591533020417 - sys_corr_18: 21.939618951968573 - sys_corr_19: -10.03592216499646 - sys_corr_20: -13.321127904407971 - sys_corr_21: -20.309220094156608 - sys_corr_22: -186.87993362689306 - sys_corr_23: -17.79061933029427 - sys_corr_24: -64.38682235762325 - sys_corr_25: -8.028149321739503 - sys_corr_26: -11.993805828185856 - sys_corr_27: -2.690131906477343 - sys_corr_28: 59.528537529650414 - sys_corr_29: -57.583410199868595 - sys_corr_30: -26.52552555004995 - sys_corr_31: -0.6302067639247529 - sys_corr_32: 152.35420382729083 - sys_corr_33: 163.09262630939256 - sys_corr_34: 70.19628912218754 - sys_corr_35: -12.952117135100037 - sys_corr_36: 76.66516696506943 - sys_corr_37: 102.13478931623814 - sys_corr_38: 43.1805258952571 - sys_corr_39: -52.35853582423619 - sys_corr_40: 59.41932456647601 - sys_corr_41: -27.811021171703434 - sys_corr_42: -69.8823856141038 - sys_corr_43: 19.589615763760957 - sys_corr_44: 92.82395437504826 - sys_corr_45: 7.89688581769174 - sys_corr_46: -3.143867120355903 - sys_corr_47: -27.91951196544453 - sys_corr_48: 30.687945783784667 - sys_corr_49: 23.175642116830087 - sys_corr_50: 64.53239163918111 - sys_corr_51: -1.524515762613634 - sys_corr_52: 80.418248706572 - sys_corr_53: 11.48402985908633 - sys_corr_54: 1.9103600883399807 - sys_corr_55: 0.5122465301355984 - sys_corr_56: 24.036945448906515 - sys_corr_57: -8.768543680792801 - sys_corr_58: -20.587793117245884 - sys_corr_59: -28.05738520452002 - sys_corr_60: 14.394991535240687 - sys_corr_61: -14.734026883277714 - sys_corr_62: 14.586316557733072 - sys_corr_63: 9.838983677547562 - sys_corr_64: -22.917956484905098 - sys_corr_65: -3.6203290102116346 - sys_corr_66: -11.940272682636879 - sys_corr_67: -5.510122781974408 - sys_corr_68: -8.369409066788366 - sys_corr_69: 14.634992933856624 - sys_corr_70: 17.926837002692057 - sys_corr_71: -21.930167699919192 - sys_corr_72: -7.857048717776663 - sys_corr_73: 16.96263958300809 - sys_corr_74: -3.3725261421141073 - sys_corr_75: -37.592224498429324 - sys_corr_76: 5.715032273894998 - sys_corr_77: 40.95572712808521 - sys_corr_78: 3.9303320085337843 - sys_corr_79: -4.228918382485843 - sys_corr_80: -2.946476878106624 - sys_corr_81: -5.010587188384071 - sys_corr_82: 1.1508757733994734 - sys_corr_83: -5.8404323794012845 - sys_corr_84: -10.324053599591288 - sys_corr_85: -3.055900984949437 - sys_corr_86: 8.012354520895824 - sys_corr_87: 0.3519756583507314 - sys_corr_88: 11.25918040736981 - sys_corr_89: 1.243469868971073 - sys_corr_90: -0.8413463376074243 - sys_corr_91: -0.13405965852616056 - sys_corr_92: -0.8555884997831626 - sys_corr_93: 0.0054672200240544755 - sys_corr_94: 0.8609419600702665 - sys_corr_95: -0.3348869904211594 - sys_corr_96: 0.3726434009628754 - sys_corr_97: -2.5523455748818136 - sys_corr_98: -1.1898635305337701 - sys_corr_99: -1.6769937998489977 - sys_corr_100: -2.829550344111233 - sys_corr_101: -7.008281339444455 - sys_corr_102: -25.344382608212147 - sys_corr_103: 4.25186310395798 - sys_corr_104: 9.981214413265226 - sys_corr_105: -2.926030438128824 - sys_corr_106: -2.740813606949084 - sys_corr_107: -0.9709880390331171 - sys_corr_108: -0.735849712228109 - sys_corr_109: 0.43191488978163556 - sys_corr_110: -1.625053553398975 - sys_corr_111: 0.8200429357198458 - sys_corr_112: 0.17570756894276254 - sys_corr_113: 0.12357305815420973 - sys_corr_114: 0.002958364166165896 - sys_corr_115: -0.1261625734077925 - sys_corr_116: 0.1193696803455053 - sys_corr_117: 0.10062237218855706 - sys_corr_118: -0.17330658930728407 - sys_corr_119: 0.0017259192460435406 - sys_corr_120: -0.06823024206345543 - sys_corr_121: 0.006098020984953318 - sys_corr_122: -0.12670972575299405 - sys_corr_123: -0.062121850107794585 - sys_corr_124: 0.047116355581776875 - sys_corr_125: 0.08506058385163708 - sys_corr_126: -0.02194983436316336 - sys_corr_127: 0.6670235712248823 - sys_corr_128: 0.1295677999639982 - sys_corr_129: 0.052820267317265426 - sys_corr_130: -0.023818443464052395 - sys_corr_131: 0.07583616223835037 - sys_corr_132: 0.032337529132746255 +- sys_corr_1: 2.19388096e+02 + sys_corr_2: 8.32470474e+01 + sys_corr_3: -1.13831558e+02 + sys_corr_4: 6.39404427e+01 + sys_corr_5: 4.24457496e+02 + sys_corr_6: -9.70144274e+02 + sys_corr_7: -2.71112162e+01 + sys_corr_8: -4.11565566e+01 + sys_corr_9: -3.28881045e+01 + sys_corr_10: -2.96966591e+01 + sys_corr_11: -1.07316063e+02 + sys_corr_12: -1.31444046e+02 + sys_corr_13: 8.76955418e+01 + sys_corr_14: -1.62949139e+01 + sys_corr_15: -2.85386023e+01 + sys_corr_16: 5.14575197e-01 + sys_corr_17: -3.32765915e-01 + sys_corr_18: 2.19396190e+01 + sys_corr_19: -1.00359222e+01 + sys_corr_20: -1.33211279e+01 + sys_corr_21: -2.03092201e+01 + sys_corr_22: -1.86879934e+02 + sys_corr_23: -1.77906193e+01 + sys_corr_24: -6.43868224e+01 + sys_corr_25: -8.02814932e+00 + sys_corr_26: -1.19938058e+01 + sys_corr_27: -2.69013191e+00 + sys_corr_28: 5.95285375e+01 + sys_corr_29: -5.75834102e+01 + sys_corr_30: -2.65255256e+01 + sys_corr_31: -6.30206764e-01 + sys_corr_32: 1.52354204e+02 + sys_corr_33: 1.63092626e+02 + sys_corr_34: 7.01962891e+01 + sys_corr_35: -1.29521171e+01 + sys_corr_36: 7.66651670e+01 + sys_corr_37: 1.02134789e+02 + sys_corr_38: 4.31805259e+01 + sys_corr_39: -5.23585358e+01 + sys_corr_40: 5.94193246e+01 + sys_corr_41: -2.78110212e+01 + sys_corr_42: -6.98823856e+01 + sys_corr_43: 1.95896158e+01 + sys_corr_44: 9.28239544e+01 + sys_corr_45: 7.89688582e+00 + sys_corr_46: -3.14386712e+00 + sys_corr_47: -2.79195120e+01 + sys_corr_48: 3.06879458e+01 + sys_corr_49: 2.31756421e+01 + sys_corr_50: 6.45323916e+01 + sys_corr_51: -1.52451576e+00 + sys_corr_52: 8.04182487e+01 + sys_corr_53: 1.14840299e+01 + sys_corr_54: 1.91036009e+00 + sys_corr_55: 5.12246530e-01 + sys_corr_56: 2.40369454e+01 + sys_corr_57: -8.76854368e+00 + sys_corr_58: -2.05877931e+01 + sys_corr_59: -2.80573852e+01 + sys_corr_60: 1.43949915e+01 + sys_corr_61: -1.47340269e+01 + sys_corr_62: 1.45863166e+01 + sys_corr_63: 9.83898368e+00 + sys_corr_64: -2.29179565e+01 + sys_corr_65: -3.62032901e+00 + sys_corr_66: -1.19402727e+01 + sys_corr_67: -5.51012278e+00 + sys_corr_68: -8.36940907e+00 + sys_corr_69: 1.46349929e+01 + sys_corr_70: 1.79268370e+01 + sys_corr_71: -2.19301677e+01 + sys_corr_72: -7.85704872e+00 + sys_corr_73: 1.69626396e+01 + sys_corr_74: -3.37252614e+00 + sys_corr_75: -3.75922245e+01 + sys_corr_76: 5.71503227e+00 + sys_corr_77: 4.09557271e+01 + sys_corr_78: 3.93033201e+00 + sys_corr_79: -4.22891838e+00 + sys_corr_80: -2.94647688e+00 + sys_corr_81: -5.01058719e+00 + sys_corr_82: 1.15087577e+00 + sys_corr_83: -5.84043238e+00 + sys_corr_84: -1.03240536e+01 + sys_corr_85: -3.05590098e+00 + sys_corr_86: 8.01235452e+00 + sys_corr_87: 3.51975658e-01 + sys_corr_88: 1.12591804e+01 + sys_corr_89: 1.24346987e+00 + sys_corr_90: -8.41346338e-01 + sys_corr_91: -1.34059659e-01 + sys_corr_92: -8.55588500e-01 + sys_corr_93: 5.46722002e-03 + sys_corr_94: 8.60941960e-01 + sys_corr_95: -3.34886990e-01 + sys_corr_96: 3.72643401e-01 + sys_corr_97: -2.55234557e+00 + sys_corr_98: -1.18986353e+00 + sys_corr_99: -1.67699380e+00 + sys_corr_100: -2.82955034e+00 + sys_corr_101: -7.00828134e+00 + sys_corr_102: -2.53443826e+01 + sys_corr_103: 4.25186310e+00 + sys_corr_104: 9.98121441e+00 + sys_corr_105: -2.92603044e+00 + sys_corr_106: -2.74081361e+00 + sys_corr_107: -9.70988039e-01 + sys_corr_108: -7.35849712e-01 + sys_corr_109: 4.31914890e-01 + sys_corr_110: -1.62505355e+00 + sys_corr_111: 8.20042936e-01 + sys_corr_112: 1.75707569e-01 + sys_corr_113: 1.23573058e-01 + sys_corr_114: 2.95836417e-03 + sys_corr_115: -1.26162573e-01 + sys_corr_116: 1.19369680e-01 + sys_corr_117: 1.00622372e-01 + sys_corr_118: -1.73306589e-01 + sys_corr_119: 1.72591925e-03 + sys_corr_120: -6.82302421e-02 + sys_corr_121: 6.09802098e-03 + sys_corr_122: -1.26709726e-01 + sys_corr_123: -6.21218501e-02 + sys_corr_124: 4.71163556e-02 + sys_corr_125: 8.50605839e-02 + sys_corr_126: -2.19498344e-02 + sys_corr_127: 6.67023571e-01 + sys_corr_128: 1.29567800e-01 + sys_corr_129: 5.28202673e-02 + sys_corr_130: -2.38184435e-02 + sys_corr_131: 7.58361622e-02 + sys_corr_132: 3.23375291e-02 stat: 0.0 - luminosity: 392.4415660000001 -- sys_corr_1: 211.15925523213878 - sys_corr_2: 86.50832498955536 - sys_corr_3: -117.37724296320842 - sys_corr_4: 65.3363078073988 - sys_corr_5: 405.0295718254212 - sys_corr_6: -932.8127024634864 - sys_corr_7: -23.144579309117713 - sys_corr_8: -38.05838623018911 - sys_corr_9: -29.269418567944715 - sys_corr_10: -29.042623773535198 - sys_corr_11: -106.75268360575356 - sys_corr_12: -127.86953948524658 - sys_corr_13: 88.4596960270543 - sys_corr_14: -22.7421091933072 - sys_corr_15: -32.456100784560014 - sys_corr_16: 3.6110541895257273 - sys_corr_17: 2.684891860146602 - sys_corr_18: 20.81805009172277 - sys_corr_19: -20.118367649490338 - sys_corr_20: -15.105467408402928 - sys_corr_21: -11.994518374541508 - sys_corr_22: -199.25978071405285 - sys_corr_23: -18.362271103958598 - sys_corr_24: -82.58349966356487 - sys_corr_25: 1.5870523662804077 - sys_corr_26: -4.2794828137062995 - sys_corr_27: -18.5517639633812 - sys_corr_28: 67.24018390388652 - sys_corr_29: -88.04513462760819 - sys_corr_30: -1.2423981465405396 - sys_corr_31: -38.744265417329814 - sys_corr_32: -167.45307360910977 - sys_corr_33: -140.88245191134507 - sys_corr_34: -71.43195075869878 - sys_corr_35: -0.15251855642727422 - sys_corr_36: -21.814014680473385 - sys_corr_37: -14.801935852130422 - sys_corr_38: 2.4192901298124703 - sys_corr_39: 13.962826731336698 - sys_corr_40: 3.691751596501652 - sys_corr_41: -24.0414210579992 - sys_corr_42: -42.13536330046398 - sys_corr_43: 13.394073248898756 - sys_corr_44: 20.609926861521934 - sys_corr_45: 50.569123506728715 - sys_corr_46: 6.460200885110832 - sys_corr_47: -26.763484914518934 - sys_corr_48: 21.480849387110577 - sys_corr_49: -14.63553968273262 - sys_corr_50: 31.432773729466547 - sys_corr_51: 45.773835092075906 - sys_corr_52: 94.15304389662626 - sys_corr_53: -27.02344725165976 - sys_corr_54: 52.7627791117047 - sys_corr_55: 1.4686616201364375 - sys_corr_56: 28.882579054727856 - sys_corr_57: -14.286781208570748 - sys_corr_58: -10.475938550949945 - sys_corr_59: -21.89610634425588 - sys_corr_60: 2.4512409158184343 - sys_corr_61: -23.167245413956227 - sys_corr_62: 23.761090817906172 - sys_corr_63: 24.518630568636627 - sys_corr_64: -4.720216382273906 - sys_corr_65: -5.558574191184303 - sys_corr_66: 6.519434964649724 - sys_corr_67: -5.203120119061083 - sys_corr_68: 13.445021798521209 - sys_corr_69: 15.157153710534677 - sys_corr_70: 2.2325677924671212 - sys_corr_71: 16.1982917494358 - sys_corr_72: -4.063407400123225 - sys_corr_73: -38.608247127264185 - sys_corr_74: 2.7647774687959306 - sys_corr_75: 40.57029290712412 - sys_corr_76: -4.128405025129983 - sys_corr_77: -69.56140855449283 - sys_corr_78: 2.0346116890860366 - sys_corr_79: 3.328853031046438 - sys_corr_80: 16.534917143664046 - sys_corr_81: -25.403166321231936 - sys_corr_82: -0.06993993526259253 - sys_corr_83: -1.3944882329772672 - sys_corr_84: 21.313042315154426 - sys_corr_85: 13.809360870512918 - sys_corr_86: -19.942763471239473 - sys_corr_87: -12.579932347055658 - sys_corr_88: -17.44005502695215 - sys_corr_89: -2.980032811566832 - sys_corr_90: 1.4314326626565648 - sys_corr_91: 4.322041178155942 - sys_corr_92: -12.886149381451586 - sys_corr_93: -0.20485345226500182 - sys_corr_94: 0.07516644290410161 - sys_corr_95: 3.0136982904036063 - sys_corr_96: 0.5349368709701255 - sys_corr_97: -7.300753528408784 - sys_corr_98: -2.583081907941041 - sys_corr_99: -3.5605380963383344 - sys_corr_100: -3.701326437344934 - sys_corr_101: -8.363633125716706 - sys_corr_102: -32.86226105159465 - sys_corr_103: 6.200622311253461 - sys_corr_104: 14.738702010518846 - sys_corr_105: -2.9594600434421174 - sys_corr_106: -3.2012543801536077 - sys_corr_107: -0.9401794892523788 - sys_corr_108: -0.8843089023997436 - sys_corr_109: 0.024684886452673832 - sys_corr_110: -2.6386341672955322 - sys_corr_111: 0.7037023767013262 - sys_corr_112: 0.024280869667550282 - sys_corr_113: -0.02392611860191352 - sys_corr_114: 0.000346419129789549 - sys_corr_115: -0.28683945760816926 - sys_corr_116: 0.18703869790836816 - sys_corr_117: 0.14140340954004163 - sys_corr_118: -0.07742989477575875 - sys_corr_119: 0.0049689825492033384 - sys_corr_120: -0.10226029143768077 - sys_corr_121: 0.010502616777995315 - sys_corr_122: -0.09571739662096197 - sys_corr_123: -0.03888496777259684 - sys_corr_124: 0.11937313382092048 - sys_corr_125: 0.07411101379633056 - sys_corr_126: -0.007150084419889702 - sys_corr_127: 1.0003451253718234 - sys_corr_128: 0.20933897768456866 - sys_corr_129: 0.048297078662022104 - sys_corr_130: -0.002339839143371939 - sys_corr_131: 0.09612494238417149 - sys_corr_132: -0.040229810667785894 + luminosity: 3.92441566e+02 +- sys_corr_1: 2.11159255e+02 + sys_corr_2: 8.65083250e+01 + sys_corr_3: -1.17377243e+02 + sys_corr_4: 6.53363078e+01 + sys_corr_5: 4.05029572e+02 + sys_corr_6: -9.32812702e+02 + sys_corr_7: -2.31445793e+01 + sys_corr_8: -3.80583862e+01 + sys_corr_9: -2.92694186e+01 + sys_corr_10: -2.90426238e+01 + sys_corr_11: -1.06752684e+02 + sys_corr_12: -1.27869539e+02 + sys_corr_13: 8.84596960e+01 + sys_corr_14: -2.27421092e+01 + sys_corr_15: -3.24561008e+01 + sys_corr_16: 3.61105419e+00 + sys_corr_17: 2.68489186e+00 + sys_corr_18: 2.08180501e+01 + sys_corr_19: -2.01183676e+01 + sys_corr_20: -1.51054674e+01 + sys_corr_21: -1.19945184e+01 + sys_corr_22: -1.99259781e+02 + sys_corr_23: -1.83622711e+01 + sys_corr_24: -8.25834997e+01 + sys_corr_25: 1.58705237e+00 + sys_corr_26: -4.27948281e+00 + sys_corr_27: -1.85517640e+01 + sys_corr_28: 6.72401839e+01 + sys_corr_29: -8.80451346e+01 + sys_corr_30: -1.24239815e+00 + sys_corr_31: -3.87442654e+01 + sys_corr_32: -1.67453074e+02 + sys_corr_33: -1.40882452e+02 + sys_corr_34: -7.14319508e+01 + sys_corr_35: -1.52518556e-01 + sys_corr_36: -2.18140147e+01 + sys_corr_37: -1.48019359e+01 + sys_corr_38: 2.41929013e+00 + sys_corr_39: 1.39628267e+01 + sys_corr_40: 3.69175160e+00 + sys_corr_41: -2.40414211e+01 + sys_corr_42: -4.21353633e+01 + sys_corr_43: 1.33940732e+01 + sys_corr_44: 2.06099269e+01 + sys_corr_45: 5.05691235e+01 + sys_corr_46: 6.46020089e+00 + sys_corr_47: -2.67634849e+01 + sys_corr_48: 2.14808494e+01 + sys_corr_49: -1.46355397e+01 + sys_corr_50: 3.14327737e+01 + sys_corr_51: 4.57738351e+01 + sys_corr_52: 9.41530439e+01 + sys_corr_53: -2.70234473e+01 + sys_corr_54: 5.27627791e+01 + sys_corr_55: 1.46866162e+00 + sys_corr_56: 2.88825791e+01 + sys_corr_57: -1.42867812e+01 + sys_corr_58: -1.04759386e+01 + sys_corr_59: -2.18961063e+01 + sys_corr_60: 2.45124092e+00 + sys_corr_61: -2.31672454e+01 + sys_corr_62: 2.37610908e+01 + sys_corr_63: 2.45186306e+01 + sys_corr_64: -4.72021638e+00 + sys_corr_65: -5.55857419e+00 + sys_corr_66: 6.51943496e+00 + sys_corr_67: -5.20312012e+00 + sys_corr_68: 1.34450218e+01 + sys_corr_69: 1.51571537e+01 + sys_corr_70: 2.23256779e+00 + sys_corr_71: 1.61982917e+01 + sys_corr_72: -4.06340740e+00 + sys_corr_73: -3.86082471e+01 + sys_corr_74: 2.76477747e+00 + sys_corr_75: 4.05702929e+01 + sys_corr_76: -4.12840503e+00 + sys_corr_77: -6.95614086e+01 + sys_corr_78: 2.03461169e+00 + sys_corr_79: 3.32885303e+00 + sys_corr_80: 1.65349171e+01 + sys_corr_81: -2.54031663e+01 + sys_corr_82: -6.99399353e-02 + sys_corr_83: -1.39448823e+00 + sys_corr_84: 2.13130423e+01 + sys_corr_85: 1.38093609e+01 + sys_corr_86: -1.99427635e+01 + sys_corr_87: -1.25799323e+01 + sys_corr_88: -1.74400550e+01 + sys_corr_89: -2.98003281e+00 + sys_corr_90: 1.43143266e+00 + sys_corr_91: 4.32204118e+00 + sys_corr_92: -1.28861494e+01 + sys_corr_93: -2.04853452e-01 + sys_corr_94: 7.51664429e-02 + sys_corr_95: 3.01369829e+00 + sys_corr_96: 5.34936871e-01 + sys_corr_97: -7.30075353e+00 + sys_corr_98: -2.58308191e+00 + sys_corr_99: -3.56053810e+00 + sys_corr_100: -3.70132644e+00 + sys_corr_101: -8.36363313e+00 + sys_corr_102: -3.28622611e+01 + sys_corr_103: 6.20062231e+00 + sys_corr_104: 1.47387020e+01 + sys_corr_105: -2.95946004e+00 + sys_corr_106: -3.20125438e+00 + sys_corr_107: -9.40179489e-01 + sys_corr_108: -8.84308902e-01 + sys_corr_109: 2.46848865e-02 + sys_corr_110: -2.63863417e+00 + sys_corr_111: 7.03702377e-01 + sys_corr_112: 2.42808697e-02 + sys_corr_113: -2.39261186e-02 + sys_corr_114: 3.46419130e-04 + sys_corr_115: -2.86839458e-01 + sys_corr_116: 1.87038698e-01 + sys_corr_117: 1.41403410e-01 + sys_corr_118: -7.74298948e-02 + sys_corr_119: 4.96898255e-03 + sys_corr_120: -1.02260291e-01 + sys_corr_121: 1.05026168e-02 + sys_corr_122: -9.57173966e-02 + sys_corr_123: -3.88849678e-02 + sys_corr_124: 1.19373134e-01 + sys_corr_125: 7.41110138e-02 + sys_corr_126: -7.15008442e-03 + sys_corr_127: 1.00034513e+00 + sys_corr_128: 2.09338978e-01 + sys_corr_129: 4.82970787e-02 + sys_corr_130: -2.33983914e-03 + sys_corr_131: 9.61249424e-02 + sys_corr_132: -4.02298107e-02 stat: 0.0 - luminosity: 389.25317200000006 -- sys_corr_1: 201.1319120486359 - sys_corr_2: 85.13573634298976 - sys_corr_3: -120.38807097707915 - sys_corr_4: 62.892554814113176 - sys_corr_5: 397.1696073903688 - sys_corr_6: -907.7779825856169 - sys_corr_7: -23.121021593837508 - sys_corr_8: -39.786351633426726 - sys_corr_9: -31.78001871805114 - sys_corr_10: -29.07788888319448 - sys_corr_11: -104.04580016892825 - sys_corr_12: -129.36959904382041 - sys_corr_13: 83.87905942245989 - sys_corr_14: -19.823732630995305 - sys_corr_15: -27.59227034882897 - sys_corr_16: 2.032404151580707 - sys_corr_17: 9.995516495547827 - sys_corr_18: 26.09707696134397 - sys_corr_19: -26.04762656442837 - sys_corr_20: -15.2301010969334 - sys_corr_21: -3.438122093160203 - sys_corr_22: -199.2629780144258 - sys_corr_23: -21.174835492780787 - sys_corr_24: -94.56728712362036 - sys_corr_25: -6.146205596220557 - sys_corr_26: -6.241397145089903 - sys_corr_27: -16.11785551696838 - sys_corr_28: 84.80720624824775 - sys_corr_29: -82.27968532439749 - sys_corr_30: -7.380196183791892 - sys_corr_31: -45.29558626265676 - sys_corr_32: -91.14201869632387 - sys_corr_33: -80.60837386552193 - sys_corr_34: -39.3103377706147 - sys_corr_35: 6.130639007066744 - sys_corr_36: 19.8530865614102 - sys_corr_37: 16.091462689563826 - sys_corr_38: 7.158849308808193 - sys_corr_39: -5.31009427127978 - sys_corr_40: 25.893894975774607 - sys_corr_41: -48.071966417036066 - sys_corr_42: -43.84760314383502 - sys_corr_43: 25.032200495006936 - sys_corr_44: 42.61666782484891 - sys_corr_45: -5.205084125961993 - sys_corr_46: -8.141468700094984 - sys_corr_47: -4.676481353360305 - sys_corr_48: 8.093853321671725 - sys_corr_49: 22.50596895597875 - sys_corr_50: 25.528326017743183 - sys_corr_51: -11.026359352898742 - sys_corr_52: -8.411403029906664 - sys_corr_53: 30.458459786155164 - sys_corr_54: -49.58562622725871 - sys_corr_55: 10.475252040215501 - sys_corr_56: 3.679743225997978 - sys_corr_57: 1.8301675469316157 - sys_corr_58: -9.376913758535807 - sys_corr_59: 5.412765631045264 - sys_corr_60: 16.404347271860185 - sys_corr_61: 26.20154169912798 - sys_corr_62: -10.862735171074487 - sys_corr_63: -12.88635199606407 - sys_corr_64: -15.720401240466098 - sys_corr_65: 14.589882826685756 - sys_corr_66: -16.81259146508148 - sys_corr_67: 4.9841009684224185 - sys_corr_68: -11.732815274527956 - sys_corr_69: 5.165042652979175 - sys_corr_70: 13.59936651799376 - sys_corr_71: -24.852614967465502 - sys_corr_72: -7.978913784512154 - sys_corr_73: 12.502385805242216 - sys_corr_74: -4.521809454444927 - sys_corr_75: -9.590622058379548 - sys_corr_76: 2.243380881886316 - sys_corr_77: 13.091447064396279 - sys_corr_78: -29.37760548353478 - sys_corr_79: 30.708267514996948 - sys_corr_80: -14.800001820525955 - sys_corr_81: 30.968743222245877 - sys_corr_82: 1.921431716593186 - sys_corr_83: 5.331253100712738 - sys_corr_84: -14.39730066855355 - sys_corr_85: -14.312375048506196 - sys_corr_86: 7.516695389163332 - sys_corr_87: 11.709080957499445 - sys_corr_88: 4.727073320307057 - sys_corr_89: 2.1894821765150616 - sys_corr_90: 3.1954465137706345 - sys_corr_91: 0.7352087057616521 - sys_corr_92: 12.480589196195528 - sys_corr_93: 0.15995220738056884 - sys_corr_94: -1.3560915034052459 - sys_corr_95: -3.476780346201494 - sys_corr_96: -1.443253555575072 - sys_corr_97: 12.326614963466824 - sys_corr_98: 4.471708801148378 - sys_corr_99: 7.295826073257259 - sys_corr_100: 8.004377767569794 - sys_corr_101: 19.787896368074367 - sys_corr_102: 77.55322622901318 - sys_corr_103: -14.496140120752974 - sys_corr_104: -32.96111737265856 - sys_corr_105: 7.322589254531905 - sys_corr_106: 7.441591548623115 - sys_corr_107: 2.893537198250906 - sys_corr_108: 1.3445003021572062 - sys_corr_109: -0.8924868720400866 - sys_corr_110: 6.439481891946967 - sys_corr_111: -2.1905764834344774 - sys_corr_112: -0.15269409389509828 - sys_corr_113: -0.2761611377312872 - sys_corr_114: -0.009229419122922033 - sys_corr_115: 0.2676542897995973 - sys_corr_116: -0.097957906859725 - sys_corr_117: -0.06927503680823592 - sys_corr_118: 0.04176395695469214 - sys_corr_119: 0.0028578392201522628 - sys_corr_120: 0.08055227884788446 - sys_corr_121: -0.0029374048570138854 - sys_corr_122: 0.15162739493572194 - sys_corr_123: 0.0797835922389269 - sys_corr_124: 0.1156783240810683 - sys_corr_125: -0.058106830939839677 - sys_corr_126: 0.02799299679220982 - sys_corr_127: -2.9374368523559142 - sys_corr_128: -0.2988375222656556 - sys_corr_129: -0.2403894874386623 - sys_corr_130: 0.013280599022528363 - sys_corr_131: -0.10861432168862958 - sys_corr_132: -0.01006457076890881 + luminosity: 3.89253172e+02 +- sys_corr_1: 2.01131912e+02 + sys_corr_2: 8.51357363e+01 + sys_corr_3: -1.20388071e+02 + sys_corr_4: 6.28925548e+01 + sys_corr_5: 3.97169607e+02 + sys_corr_6: -9.07777983e+02 + sys_corr_7: -2.31210216e+01 + sys_corr_8: -3.97863516e+01 + sys_corr_9: -3.17800187e+01 + sys_corr_10: -2.90778889e+01 + sys_corr_11: -1.04045800e+02 + sys_corr_12: -1.29369599e+02 + sys_corr_13: 8.38790594e+01 + sys_corr_14: -1.98237326e+01 + sys_corr_15: -2.75922703e+01 + sys_corr_16: 2.03240415e+00 + sys_corr_17: 9.99551650e+00 + sys_corr_18: 2.60970770e+01 + sys_corr_19: -2.60476266e+01 + sys_corr_20: -1.52301011e+01 + sys_corr_21: -3.43812209e+00 + sys_corr_22: -1.99262978e+02 + sys_corr_23: -2.11748355e+01 + sys_corr_24: -9.45672871e+01 + sys_corr_25: -6.14620560e+00 + sys_corr_26: -6.24139715e+00 + sys_corr_27: -1.61178555e+01 + sys_corr_28: 8.48072062e+01 + sys_corr_29: -8.22796853e+01 + sys_corr_30: -7.38019618e+00 + sys_corr_31: -4.52955863e+01 + sys_corr_32: -9.11420187e+01 + sys_corr_33: -8.06083739e+01 + sys_corr_34: -3.93103378e+01 + sys_corr_35: 6.13063901e+00 + sys_corr_36: 1.98530866e+01 + sys_corr_37: 1.60914627e+01 + sys_corr_38: 7.15884931e+00 + sys_corr_39: -5.31009427e+00 + sys_corr_40: 2.58938950e+01 + sys_corr_41: -4.80719664e+01 + sys_corr_42: -4.38476031e+01 + sys_corr_43: 2.50322005e+01 + sys_corr_44: 4.26166678e+01 + sys_corr_45: -5.20508413e+00 + sys_corr_46: -8.14146870e+00 + sys_corr_47: -4.67648135e+00 + sys_corr_48: 8.09385332e+00 + sys_corr_49: 2.25059690e+01 + sys_corr_50: 2.55283260e+01 + sys_corr_51: -1.10263594e+01 + sys_corr_52: -8.41140303e+00 + sys_corr_53: 3.04584598e+01 + sys_corr_54: -4.95856262e+01 + sys_corr_55: 1.04752520e+01 + sys_corr_56: 3.67974323e+00 + sys_corr_57: 1.83016755e+00 + sys_corr_58: -9.37691376e+00 + sys_corr_59: 5.41276563e+00 + sys_corr_60: 1.64043473e+01 + sys_corr_61: 2.62015417e+01 + sys_corr_62: -1.08627352e+01 + sys_corr_63: -1.28863520e+01 + sys_corr_64: -1.57204012e+01 + sys_corr_65: 1.45898828e+01 + sys_corr_66: -1.68125915e+01 + sys_corr_67: 4.98410097e+00 + sys_corr_68: -1.17328153e+01 + sys_corr_69: 5.16504265e+00 + sys_corr_70: 1.35993665e+01 + sys_corr_71: -2.48526150e+01 + sys_corr_72: -7.97891378e+00 + sys_corr_73: 1.25023858e+01 + sys_corr_74: -4.52180945e+00 + sys_corr_75: -9.59062206e+00 + sys_corr_76: 2.24338088e+00 + sys_corr_77: 1.30914471e+01 + sys_corr_78: -2.93776055e+01 + sys_corr_79: 3.07082675e+01 + sys_corr_80: -1.48000018e+01 + sys_corr_81: 3.09687432e+01 + sys_corr_82: 1.92143172e+00 + sys_corr_83: 5.33125310e+00 + sys_corr_84: -1.43973007e+01 + sys_corr_85: -1.43123750e+01 + sys_corr_86: 7.51669539e+00 + sys_corr_87: 1.17090810e+01 + sys_corr_88: 4.72707332e+00 + sys_corr_89: 2.18948218e+00 + sys_corr_90: 3.19544651e+00 + sys_corr_91: 7.35208706e-01 + sys_corr_92: 1.24805892e+01 + sys_corr_93: 1.59952207e-01 + sys_corr_94: -1.35609150e+00 + sys_corr_95: -3.47678035e+00 + sys_corr_96: -1.44325356e+00 + sys_corr_97: 1.23266150e+01 + sys_corr_98: 4.47170880e+00 + sys_corr_99: 7.29582607e+00 + sys_corr_100: 8.00437777e+00 + sys_corr_101: 1.97878964e+01 + sys_corr_102: 7.75532262e+01 + sys_corr_103: -1.44961401e+01 + sys_corr_104: -3.29611174e+01 + sys_corr_105: 7.32258925e+00 + sys_corr_106: 7.44159155e+00 + sys_corr_107: 2.89353720e+00 + sys_corr_108: 1.34450030e+00 + sys_corr_109: -8.92486872e-01 + sys_corr_110: 6.43948189e+00 + sys_corr_111: -2.19057648e+00 + sys_corr_112: -1.52694094e-01 + sys_corr_113: -2.76161138e-01 + sys_corr_114: -9.22941912e-03 + sys_corr_115: 2.67654290e-01 + sys_corr_116: -9.79579069e-02 + sys_corr_117: -6.92750368e-02 + sys_corr_118: 4.17639570e-02 + sys_corr_119: 2.85783922e-03 + sys_corr_120: 8.05522788e-02 + sys_corr_121: -2.93740486e-03 + sys_corr_122: 1.51627395e-01 + sys_corr_123: 7.97835922e-02 + sys_corr_124: 1.15678324e-01 + sys_corr_125: -5.81068309e-02 + sys_corr_126: 2.79929968e-02 + sys_corr_127: -2.93743685e+00 + sys_corr_128: -2.98837522e-01 + sys_corr_129: -2.40389487e-01 + sys_corr_130: 1.32805990e-02 + sys_corr_131: -1.08614322e-01 + sys_corr_132: -1.00645708e-02 stat: 0.0 - luminosity: 378.3121540000001 -- sys_corr_1: 223.77081357226106 - sys_corr_2: 88.84138911921607 - sys_corr_3: -89.53513085815736 - sys_corr_4: 55.34839232881469 - sys_corr_5: 378.0150845401239 - sys_corr_6: -874.0176819283355 - sys_corr_7: -12.582633039937296 - sys_corr_8: -30.17334091512038 - sys_corr_9: -23.91848697053865 - sys_corr_10: -25.897597193569666 - sys_corr_11: -84.97365449203365 - sys_corr_12: -103.96184191838681 - sys_corr_13: 68.2874237849266 - sys_corr_14: -13.515987064317525 - sys_corr_15: -24.78333833322089 - sys_corr_16: 3.576983158211165 - sys_corr_17: -4.886000369209156 - sys_corr_18: 16.973969335829693 - sys_corr_19: -10.048990668153618 - sys_corr_20: -3.2977093980965857 - sys_corr_21: -10.732070464815239 - sys_corr_22: -109.62549210276462 - sys_corr_23: -13.01623129347365 - sys_corr_24: -25.311155316266486 - sys_corr_25: -8.676950684285234 - sys_corr_26: -29.639985610089454 - sys_corr_27: 9.942990468504272 - sys_corr_28: 70.00170257327635 - sys_corr_29: -71.04666083022164 - sys_corr_30: -20.95927557007672 - sys_corr_31: 9.336043278561236 - sys_corr_32: -71.64468703128337 - sys_corr_33: -97.98947582579706 - sys_corr_34: -52.128679526054796 - sys_corr_35: -4.4659054781910985 - sys_corr_36: 11.725253481229052 - sys_corr_37: -16.317149467636465 - sys_corr_38: -46.06347287089039 - sys_corr_39: 18.20119301316033 - sys_corr_40: 5.891333757846196 - sys_corr_41: -18.82590725658382 - sys_corr_42: 20.020373896542768 - sys_corr_43: -2.465090442739305 - sys_corr_44: 6.087836276791727 - sys_corr_45: -44.92523703323201 - sys_corr_46: -6.67971432783455 - sys_corr_47: 32.89044304894017 - sys_corr_48: -21.78007550767351 - sys_corr_49: 23.973211891371516 - sys_corr_50: -39.0674115280045 - sys_corr_51: -55.311040944182324 - sys_corr_52: -129.99626170812755 - sys_corr_53: 50.922356774450044 - sys_corr_54: -91.96027544492316 - sys_corr_55: -2.5680340616954576 - sys_corr_56: -52.99211104811376 - sys_corr_57: 9.477763627310125 - sys_corr_58: -14.016303195542559 - sys_corr_59: 29.719961477147223 - sys_corr_60: 7.193220133706075 - sys_corr_61: 16.891113743565718 - sys_corr_62: -10.127225455332056 - sys_corr_63: -15.864963732567714 - sys_corr_64: 2.1282313827000356 - sys_corr_65: 5.1105670922687025 - sys_corr_66: -3.864987803186931 - sys_corr_67: -4.588198337927331 - sys_corr_68: -28.750768284464087 - sys_corr_69: -0.33962533001569434 - sys_corr_70: 2.891677108884663 - sys_corr_71: -9.1324187731713 - sys_corr_72: -3.33051892166918 - sys_corr_73: 17.336015569358715 - sys_corr_74: -1.6590968582540278 - sys_corr_75: -28.64261990096984 - sys_corr_76: 3.1701798964426517 - sys_corr_77: 67.36443413698792 - sys_corr_78: 14.443167684961187 - sys_corr_79: -13.286675338839007 - sys_corr_80: -8.980504571256901 - sys_corr_81: 2.283664525940461 - sys_corr_82: -2.962690322698273 - sys_corr_83: -3.0287965843932443 - sys_corr_84: 0.4656418433209788 - sys_corr_85: 5.096024682797941 - sys_corr_86: 6.459067690964374 - sys_corr_87: 4.145052900295744 - sys_corr_88: 9.951826394254324 - sys_corr_89: -0.568665232373977 - sys_corr_90: -2.6829149035555804 - sys_corr_91: -3.687022159913243 - sys_corr_92: -0.5259434577188258 - sys_corr_93: 0.07256580239056282 - sys_corr_94: 1.6102402987161644 - sys_corr_95: 0.48442440247664503 - sys_corr_96: 0.9253243535080126 - sys_corr_97: -6.128862984795414 - sys_corr_98: -2.604410080590696 - sys_corr_99: -3.9646282380933147 - sys_corr_100: -5.568034492536511 - sys_corr_101: -13.873548399561727 - sys_corr_102: -51.347777927811606 - sys_corr_103: 9.055217264199973 - sys_corr_104: 20.676741878540444 - sys_corr_105: -5.392439630159198 - sys_corr_106: -5.221450742956486 - sys_corr_107: -2.1647143369114237 - sys_corr_108: -0.9778165697581327 - sys_corr_109: 0.7758336861045504 - sys_corr_110: -3.97229244551248 - sys_corr_111: 1.2301522261707383 - sys_corr_112: 0.1882229405217036 - sys_corr_113: 0.27265865347955837 - sys_corr_114: 0.007468442986518194 - sys_corr_115: -0.19410046231302014 - sys_corr_116: 0.07647248795552586 - sys_corr_117: 0.05323101722015749 - sys_corr_118: -0.12978069064180162 - sys_corr_119: -0.002148483124298442 - sys_corr_120: -0.05783172854801647 - sys_corr_121: -0.002244738348784565 - sys_corr_122: -0.13539158315719668 - sys_corr_123: -0.06370792182044151 - sys_corr_124: -0.07857017445653273 - sys_corr_125: 0.06555086722835696 - sys_corr_126: -0.01513025233508793 - sys_corr_127: 1.6669963490384068 - sys_corr_128: 0.32987315374091764 - sys_corr_129: 0.150349656255751 - sys_corr_130: 0.01623949476273163 - sys_corr_131: 0.08077274784388917 - sys_corr_132: 0.04262323341016985 + luminosity: 3.78312154e+02 +- sys_corr_1: 2.23770814e+02 + sys_corr_2: 8.88413891e+01 + sys_corr_3: -8.95351309e+01 + sys_corr_4: 5.53483923e+01 + sys_corr_5: 3.78015085e+02 + sys_corr_6: -8.74017682e+02 + sys_corr_7: -1.25826330e+01 + sys_corr_8: -3.01733409e+01 + sys_corr_9: -2.39184870e+01 + sys_corr_10: -2.58975972e+01 + sys_corr_11: -8.49736545e+01 + sys_corr_12: -1.03961842e+02 + sys_corr_13: 6.82874238e+01 + sys_corr_14: -1.35159871e+01 + sys_corr_15: -2.47833383e+01 + sys_corr_16: 3.57698316e+00 + sys_corr_17: -4.88600037e+00 + sys_corr_18: 1.69739693e+01 + sys_corr_19: -1.00489907e+01 + sys_corr_20: -3.29770940e+00 + sys_corr_21: -1.07320705e+01 + sys_corr_22: -1.09625492e+02 + sys_corr_23: -1.30162313e+01 + sys_corr_24: -2.53111553e+01 + sys_corr_25: -8.67695068e+00 + sys_corr_26: -2.96399856e+01 + sys_corr_27: 9.94299047e+00 + sys_corr_28: 7.00017026e+01 + sys_corr_29: -7.10466608e+01 + sys_corr_30: -2.09592756e+01 + sys_corr_31: 9.33604328e+00 + sys_corr_32: -7.16446870e+01 + sys_corr_33: -9.79894758e+01 + sys_corr_34: -5.21286795e+01 + sys_corr_35: -4.46590548e+00 + sys_corr_36: 1.17252535e+01 + sys_corr_37: -1.63171495e+01 + sys_corr_38: -4.60634729e+01 + sys_corr_39: 1.82011930e+01 + sys_corr_40: 5.89133376e+00 + sys_corr_41: -1.88259073e+01 + sys_corr_42: 2.00203739e+01 + sys_corr_43: -2.46509044e+00 + sys_corr_44: 6.08783628e+00 + sys_corr_45: -4.49252370e+01 + sys_corr_46: -6.67971433e+00 + sys_corr_47: 3.28904430e+01 + sys_corr_48: -2.17800755e+01 + sys_corr_49: 2.39732119e+01 + sys_corr_50: -3.90674115e+01 + sys_corr_51: -5.53110409e+01 + sys_corr_52: -1.29996262e+02 + sys_corr_53: 5.09223568e+01 + sys_corr_54: -9.19602754e+01 + sys_corr_55: -2.56803406e+00 + sys_corr_56: -5.29921110e+01 + sys_corr_57: 9.47776363e+00 + sys_corr_58: -1.40163032e+01 + sys_corr_59: 2.97199615e+01 + sys_corr_60: 7.19322013e+00 + sys_corr_61: 1.68911137e+01 + sys_corr_62: -1.01272255e+01 + sys_corr_63: -1.58649637e+01 + sys_corr_64: 2.12823138e+00 + sys_corr_65: 5.11056709e+00 + sys_corr_66: -3.86498780e+00 + sys_corr_67: -4.58819834e+00 + sys_corr_68: -2.87507683e+01 + sys_corr_69: -3.39625330e-01 + sys_corr_70: 2.89167711e+00 + sys_corr_71: -9.13241877e+00 + sys_corr_72: -3.33051892e+00 + sys_corr_73: 1.73360156e+01 + sys_corr_74: -1.65909686e+00 + sys_corr_75: -2.86426199e+01 + sys_corr_76: 3.17017990e+00 + sys_corr_77: 6.73644341e+01 + sys_corr_78: 1.44431677e+01 + sys_corr_79: -1.32866753e+01 + sys_corr_80: -8.98050457e+00 + sys_corr_81: 2.28366453e+00 + sys_corr_82: -2.96269032e+00 + sys_corr_83: -3.02879658e+00 + sys_corr_84: 4.65641843e-01 + sys_corr_85: 5.09602468e+00 + sys_corr_86: 6.45906769e+00 + sys_corr_87: 4.14505290e+00 + sys_corr_88: 9.95182639e+00 + sys_corr_89: -5.68665232e-01 + sys_corr_90: -2.68291490e+00 + sys_corr_91: -3.68702216e+00 + sys_corr_92: -5.25943458e-01 + sys_corr_93: 7.25658024e-02 + sys_corr_94: 1.61024030e+00 + sys_corr_95: 4.84424402e-01 + sys_corr_96: 9.25324354e-01 + sys_corr_97: -6.12886298e+00 + sys_corr_98: -2.60441008e+00 + sys_corr_99: -3.96462824e+00 + sys_corr_100: -5.56803449e+00 + sys_corr_101: -1.38735484e+01 + sys_corr_102: -5.13477779e+01 + sys_corr_103: 9.05521726e+00 + sys_corr_104: 2.06767419e+01 + sys_corr_105: -5.39243963e+00 + sys_corr_106: -5.22145074e+00 + sys_corr_107: -2.16471434e+00 + sys_corr_108: -9.77816570e-01 + sys_corr_109: 7.75833686e-01 + sys_corr_110: -3.97229245e+00 + sys_corr_111: 1.23015223e+00 + sys_corr_112: 1.88222941e-01 + sys_corr_113: 2.72658653e-01 + sys_corr_114: 7.46844299e-03 + sys_corr_115: -1.94100462e-01 + sys_corr_116: 7.64724880e-02 + sys_corr_117: 5.32310172e-02 + sys_corr_118: -1.29780691e-01 + sys_corr_119: -2.14848312e-03 + sys_corr_120: -5.78317285e-02 + sys_corr_121: -2.24473835e-03 + sys_corr_122: -1.35391583e-01 + sys_corr_123: -6.37079218e-02 + sys_corr_124: -7.85701745e-02 + sys_corr_125: 6.55508672e-02 + sys_corr_126: -1.51302523e-02 + sys_corr_127: 1.66699635e+00 + sys_corr_128: 3.29873154e-01 + sys_corr_129: 1.50349656e-01 + sys_corr_130: 1.62394948e-02 + sys_corr_131: 8.07727478e-02 + sys_corr_132: 4.26232334e-02 stat: 0.0 - luminosity: 387.7167800000001 -- sys_corr_1: 210.99266852288224 - sys_corr_2: 81.2924603498715 - sys_corr_3: -105.9518489781703 - sys_corr_4: 53.897719908079935 - sys_corr_5: 356.7537938535453 - sys_corr_6: -823.0618585328413 - sys_corr_7: -7.218901974603443 - sys_corr_8: -27.321752880150942 - sys_corr_9: -23.00919399361246 - sys_corr_10: -25.628052640652065 - sys_corr_11: -78.59510158209861 - sys_corr_12: -102.72129491803064 - sys_corr_13: 66.93197801871517 - sys_corr_14: -13.483972073482086 - sys_corr_15: -26.396479651762817 - sys_corr_16: 8.023379410231284 - sys_corr_17: 3.8777994568558074 - sys_corr_18: 14.137647823206393 - sys_corr_19: -18.334104670363107 - sys_corr_20: -7.121526871218708 - sys_corr_21: -0.9742100212867095 - sys_corr_22: -125.80488693679192 - sys_corr_23: -14.999322548661947 - sys_corr_24: -51.169890553150104 - sys_corr_25: -9.523991651386611 - sys_corr_26: -7.804800741714099 - sys_corr_27: -4.501735542835287 - sys_corr_28: 34.99280985903535 - sys_corr_29: -32.979117127743315 - sys_corr_30: -4.334360593051873 - sys_corr_31: 1.015782050682708 - sys_corr_32: 141.3200917487039 - sys_corr_33: 95.40583033679344 - sys_corr_34: 34.42527302166844 - sys_corr_35: 15.717869503790878 - sys_corr_36: 33.84137088443496 - sys_corr_37: 18.860120771309216 - sys_corr_38: -5.490338773705626 - sys_corr_39: -32.188111010213525 - sys_corr_40: -7.884075337487389 - sys_corr_41: -4.659866799759963 - sys_corr_42: 43.57994397445107 - sys_corr_43: 6.573667962049449 - sys_corr_44: -6.737223342548853 - sys_corr_45: -34.696819117219974 - sys_corr_46: -18.72438697750658 - sys_corr_47: 41.71746996358099 - sys_corr_48: -19.469003173469865 - sys_corr_49: 24.015376381484053 - sys_corr_50: -28.846839913251372 - sys_corr_51: -36.320556206296054 - sys_corr_52: -87.81648589312856 - sys_corr_53: 15.265844858287315 - sys_corr_54: -47.88926096226575 - sys_corr_55: 11.874449274418877 - sys_corr_56: -22.971694434892047 - sys_corr_57: 19.422841321882505 - sys_corr_58: -12.559901193720332 - sys_corr_59: 41.11487204642737 - sys_corr_60: 8.725539455052566 - sys_corr_61: 6.439798287329281 - sys_corr_62: -14.813903023104581 - sys_corr_63: -3.358152544176113 - sys_corr_64: 13.489164543419797 - sys_corr_65: -8.89581289000839 - sys_corr_66: 7.035548354402306 - sys_corr_67: 8.4508047580691 - sys_corr_68: 36.22103300927061 - sys_corr_69: -6.610305085607525 - sys_corr_70: 0.6183515649990325 - sys_corr_71: 24.019045291510672 - sys_corr_72: 0.2095760851093645 - sys_corr_73: -53.097974535822274 - sys_corr_74: 4.287772498949123 - sys_corr_75: 92.93219534820709 - sys_corr_76: -8.87647960810707 - sys_corr_77: -102.73723010963019 - sys_corr_78: 2.655423828661844 - sys_corr_79: 27.74247394797028 - sys_corr_80: 15.937790501335051 - sys_corr_81: 9.812793651616845 - sys_corr_82: -4.974994727726725 - sys_corr_83: 12.408451836640417 - sys_corr_84: 30.155283348564684 - sys_corr_85: 12.105776250003608 - sys_corr_86: -31.868148945281018 - sys_corr_87: -5.188042156499447 - sys_corr_88: -34.15525055371663 - sys_corr_89: -4.208468190399686 - sys_corr_90: 2.9412252044542617 - sys_corr_91: 2.798490873683833 - sys_corr_92: -3.3964420284331096 - sys_corr_93: -0.08817311599796339 - sys_corr_94: -1.5606905465914591 - sys_corr_95: 3.2862753596544128 - sys_corr_96: 0.13031510124612164 - sys_corr_97: -3.4841460877370327 - sys_corr_98: -0.9705526869279422 - sys_corr_99: -0.7280885755418534 - sys_corr_100: 0.4776924575267672 - sys_corr_101: 1.7106256906861748 - sys_corr_102: 4.98159911140096 - sys_corr_103: -0.5230310436812969 - sys_corr_104: -0.6968844474227845 - sys_corr_105: 1.1346313782579018 - sys_corr_106: 0.7225604008203445 - sys_corr_107: 0.7240267058099167 - sys_corr_108: -0.0155278318073834 - sys_corr_109: -0.41101213627573124 - sys_corr_110: 0.11383918668509115 - sys_corr_111: -0.6486343316023704 - sys_corr_112: -0.14509210636664702 - sys_corr_113: -0.16900620863517504 - sys_corr_114: -0.004520524771706278 - sys_corr_115: -0.17151266442283758 - sys_corr_116: 0.09482587492671578 - sys_corr_117: 0.06490910197735539 - sys_corr_118: -0.09522877988454535 - sys_corr_119: 0.005475453609741227 - sys_corr_120: -0.02978133497659764 - sys_corr_121: 0.01005209687464338 - sys_corr_122: 0.030631018012065244 - sys_corr_123: 0.030828269810078204 - sys_corr_124: 0.1145720706265942 - sys_corr_125: 0.005593632935757881 - sys_corr_126: 0.01680506863448888 - sys_corr_127: -0.5436581819882709 - sys_corr_128: 0.16313075388376827 - sys_corr_129: -0.09221430392160718 - sys_corr_130: 0.019417765666421727 - sys_corr_131: 0.015850145058268685 - sys_corr_132: -0.06320025825620075 + luminosity: 3.87716780e+02 +- sys_corr_1: 2.10992669e+02 + sys_corr_2: 8.12924603e+01 + sys_corr_3: -1.05951849e+02 + sys_corr_4: 5.38977199e+01 + sys_corr_5: 3.56753794e+02 + sys_corr_6: -8.23061859e+02 + sys_corr_7: -7.21890197e+00 + sys_corr_8: -2.73217529e+01 + sys_corr_9: -2.30091940e+01 + sys_corr_10: -2.56280526e+01 + sys_corr_11: -7.85951016e+01 + sys_corr_12: -1.02721295e+02 + sys_corr_13: 6.69319780e+01 + sys_corr_14: -1.34839721e+01 + sys_corr_15: -2.63964797e+01 + sys_corr_16: 8.02337941e+00 + sys_corr_17: 3.87779946e+00 + sys_corr_18: 1.41376478e+01 + sys_corr_19: -1.83341047e+01 + sys_corr_20: -7.12152687e+00 + sys_corr_21: -9.74210021e-01 + sys_corr_22: -1.25804887e+02 + sys_corr_23: -1.49993225e+01 + sys_corr_24: -5.11698906e+01 + sys_corr_25: -9.52399165e+00 + sys_corr_26: -7.80480074e+00 + sys_corr_27: -4.50173554e+00 + sys_corr_28: 3.49928099e+01 + sys_corr_29: -3.29791171e+01 + sys_corr_30: -4.33436059e+00 + sys_corr_31: 1.01578205e+00 + sys_corr_32: 1.41320092e+02 + sys_corr_33: 9.54058303e+01 + sys_corr_34: 3.44252730e+01 + sys_corr_35: 1.57178695e+01 + sys_corr_36: 3.38413709e+01 + sys_corr_37: 1.88601208e+01 + sys_corr_38: -5.49033877e+00 + sys_corr_39: -3.21881110e+01 + sys_corr_40: -7.88407534e+00 + sys_corr_41: -4.65986680e+00 + sys_corr_42: 4.35799440e+01 + sys_corr_43: 6.57366796e+00 + sys_corr_44: -6.73722334e+00 + sys_corr_45: -3.46968191e+01 + sys_corr_46: -1.87243870e+01 + sys_corr_47: 4.17174700e+01 + sys_corr_48: -1.94690032e+01 + sys_corr_49: 2.40153764e+01 + sys_corr_50: -2.88468399e+01 + sys_corr_51: -3.63205562e+01 + sys_corr_52: -8.78164859e+01 + sys_corr_53: 1.52658449e+01 + sys_corr_54: -4.78892610e+01 + sys_corr_55: 1.18744493e+01 + sys_corr_56: -2.29716944e+01 + sys_corr_57: 1.94228413e+01 + sys_corr_58: -1.25599012e+01 + sys_corr_59: 4.11148720e+01 + sys_corr_60: 8.72553946e+00 + sys_corr_61: 6.43979829e+00 + sys_corr_62: -1.48139030e+01 + sys_corr_63: -3.35815254e+00 + sys_corr_64: 1.34891645e+01 + sys_corr_65: -8.89581289e+00 + sys_corr_66: 7.03554835e+00 + sys_corr_67: 8.45080476e+00 + sys_corr_68: 3.62210330e+01 + sys_corr_69: -6.61030509e+00 + sys_corr_70: 6.18351565e-01 + sys_corr_71: 2.40190453e+01 + sys_corr_72: 2.09576085e-01 + sys_corr_73: -5.30979745e+01 + sys_corr_74: 4.28777250e+00 + sys_corr_75: 9.29321953e+01 + sys_corr_76: -8.87647961e+00 + sys_corr_77: -1.02737230e+02 + sys_corr_78: 2.65542383e+00 + sys_corr_79: 2.77424739e+01 + sys_corr_80: 1.59377905e+01 + sys_corr_81: 9.81279365e+00 + sys_corr_82: -4.97499473e+00 + sys_corr_83: 1.24084518e+01 + sys_corr_84: 3.01552833e+01 + sys_corr_85: 1.21057763e+01 + sys_corr_86: -3.18681489e+01 + sys_corr_87: -5.18804216e+00 + sys_corr_88: -3.41552506e+01 + sys_corr_89: -4.20846819e+00 + sys_corr_90: 2.94122520e+00 + sys_corr_91: 2.79849087e+00 + sys_corr_92: -3.39644203e+00 + sys_corr_93: -8.81731160e-02 + sys_corr_94: -1.56069055e+00 + sys_corr_95: 3.28627536e+00 + sys_corr_96: 1.30315101e-01 + sys_corr_97: -3.48414609e+00 + sys_corr_98: -9.70552687e-01 + sys_corr_99: -7.28088576e-01 + sys_corr_100: 4.77692458e-01 + sys_corr_101: 1.71062569e+00 + sys_corr_102: 4.98159911e+00 + sys_corr_103: -5.23031044e-01 + sys_corr_104: -6.96884447e-01 + sys_corr_105: 1.13463138e+00 + sys_corr_106: 7.22560401e-01 + sys_corr_107: 7.24026706e-01 + sys_corr_108: -1.55278318e-02 + sys_corr_109: -4.11012136e-01 + sys_corr_110: 1.13839187e-01 + sys_corr_111: -6.48634332e-01 + sys_corr_112: -1.45092106e-01 + sys_corr_113: -1.69006209e-01 + sys_corr_114: -4.52052477e-03 + sys_corr_115: -1.71512664e-01 + sys_corr_116: 9.48258749e-02 + sys_corr_117: 6.49091020e-02 + sys_corr_118: -9.52287799e-02 + sys_corr_119: 5.47545361e-03 + sys_corr_120: -2.97813350e-02 + sys_corr_121: 1.00520969e-02 + sys_corr_122: 3.06310180e-02 + sys_corr_123: 3.08282698e-02 + sys_corr_124: 1.14572071e-01 + sys_corr_125: 5.59363294e-03 + sys_corr_126: 1.68050686e-02 + sys_corr_127: -5.43658182e-01 + sys_corr_128: 1.63130754e-01 + sys_corr_129: -9.22143039e-02 + sys_corr_130: 1.94177657e-02 + sys_corr_131: 1.58501451e-02 + sys_corr_132: -6.32002583e-02 stat: 0.0 - luminosity: 392.53189800000007 -- sys_corr_1: 234.88806000187773 - sys_corr_2: 83.58302205900118 - sys_corr_3: -67.44180666184374 - sys_corr_4: 69.4059501617762 - sys_corr_5: 319.7742766634767 - sys_corr_6: -801.3511718993364 - sys_corr_7: 15.975978722878809 - sys_corr_8: -7.807161453173631 - sys_corr_9: -6.904566893187981 - sys_corr_10: -14.770800893108643 - sys_corr_11: -46.81129924906614 - sys_corr_12: -64.59367822842006 - sys_corr_13: 45.6365705184485 - sys_corr_14: -8.246760383708736 - sys_corr_15: -17.659428372995027 - sys_corr_16: 8.467911177569452 - sys_corr_17: -9.76702146248292 - sys_corr_18: 1.032543416268882 - sys_corr_19: -0.8756066729567935 - sys_corr_20: 2.6312487231265815 - sys_corr_21: -3.9110511930967253 - sys_corr_22: -18.443559297593357 - sys_corr_23: -8.442646639196765 - sys_corr_24: 1.2262988204664307 - sys_corr_25: -15.370743103459645 - sys_corr_26: -47.07498044299164 - sys_corr_27: 12.34961224577122 - sys_corr_28: 55.87888119866764 - sys_corr_29: -64.52916574619897 - sys_corr_30: -0.8926053708206922 - sys_corr_31: 27.401416256236928 - sys_corr_32: -9.587281010237877 - sys_corr_33: 17.075958765075413 - sys_corr_34: -16.642281322205715 - sys_corr_35: -4.260102760359184 - sys_corr_36: -0.6329743086122991 - sys_corr_37: -6.234103885509351 - sys_corr_38: 6.6157092707811405 - sys_corr_39: -6.390037083480005 - sys_corr_40: -33.091524289904875 - sys_corr_41: 0.12739846244465738 - sys_corr_42: 47.10051805379098 - sys_corr_43: -2.5769882956233983 - sys_corr_44: -38.38663249444546 - sys_corr_45: -24.554671439844476 - sys_corr_46: -6.686957457376534 - sys_corr_47: -3.77798989123508 - sys_corr_48: -21.955528630629484 - sys_corr_49: 19.870730180618306 - sys_corr_50: -43.21535914053552 - sys_corr_51: -2.9386255868611535 - sys_corr_52: -21.574910727406976 - sys_corr_53: -42.993573847082665 - sys_corr_54: 109.58500553919794 - sys_corr_55: -15.175161280870007 - sys_corr_56: 44.06548463673751 - sys_corr_57: 54.149231831960606 - sys_corr_58: 57.38719962967532 - sys_corr_59: -21.25063911165203 - sys_corr_60: -16.833736460614965 - sys_corr_61: 39.86341623479435 - sys_corr_62: -49.03150249317871 - sys_corr_63: -7.590958417515117 - sys_corr_64: -13.884099622287392 - sys_corr_65: -25.675443033316423 - sys_corr_66: -22.123016795728766 - sys_corr_67: 33.60452834180206 - sys_corr_68: 143.12554782738 - sys_corr_69: -64.74847647752713 - sys_corr_70: 31.80149878673111 - sys_corr_71: -23.113109882801506 - sys_corr_72: 29.936438908869498 - sys_corr_73: 45.929886309381345 - sys_corr_74: -4.549044827706737 - sys_corr_75: -14.654971394255613 - sys_corr_76: -0.8950689957055594 - sys_corr_77: 14.576664583390658 - sys_corr_78: 12.169055441438863 - sys_corr_79: -62.247719693741914 - sys_corr_80: 5.333297599370013 - sys_corr_81: -6.127622914912589 - sys_corr_82: -0.8616036962407514 - sys_corr_83: -4.510285379473043 - sys_corr_84: -15.89756517731147 - sys_corr_85: -8.150634138327968 - sys_corr_86: 5.86652482353704 - sys_corr_87: 10.896811973386862 - sys_corr_88: 9.016093229782419 - sys_corr_89: 1.1540237338500843 - sys_corr_90: 2.2864384009062357 - sys_corr_91: 3.7991606183592803 - sys_corr_92: 4.978391759024857 - sys_corr_93: -0.14152687455423651 - sys_corr_94: -0.5105258637391729 - sys_corr_95: 0.15263877848061227 - sys_corr_96: 0.14376073972501316 - sys_corr_97: -0.43725550804343943 - sys_corr_98: -0.16980103481067813 - sys_corr_99: 0.07696439062329065 - sys_corr_100: 0.3506685550373761 - sys_corr_101: 1.2143120245914134 - sys_corr_102: 4.392393756346811 - sys_corr_103: -0.6065076868854357 - sys_corr_104: -1.6204887903895961 - sys_corr_105: 0.7356660875613756 - sys_corr_106: 0.5599423719904142 - sys_corr_107: 0.9113394728626725 - sys_corr_108: -0.2015096621459215 - sys_corr_109: 0.012963369642886392 - sys_corr_110: 0.3866808175822676 - sys_corr_111: -0.45963757647854486 - sys_corr_112: -0.14468986662339803 - sys_corr_113: -0.06638012296946978 - sys_corr_114: -0.002873743969475217 - sys_corr_115: 0.03504869024904058 - sys_corr_116: 0.11831733153210161 - sys_corr_117: 0.0796644639213688 - sys_corr_118: 0.10159031109821695 - sys_corr_119: 0.0009861440784724085 - sys_corr_120: -0.03904583385586749 - sys_corr_121: 0.004098229999930932 - sys_corr_122: 0.041687062242798244 - sys_corr_123: 0.03907060707264992 - sys_corr_124: 0.1601426286670923 - sys_corr_125: -0.010178200394593497 - sys_corr_126: 0.016428982097519706 - sys_corr_127: -0.3712975364221878 - sys_corr_128: 0.06659039942724887 - sys_corr_129: -0.06175368880345954 - sys_corr_130: -0.004923082023230926 - sys_corr_131: 0.010208970442666374 - sys_corr_132: 0.044951228994994326 + luminosity: 3.92531898e+02 +- sys_corr_1: 2.34888060e+02 + sys_corr_2: 8.35830221e+01 + sys_corr_3: -6.74418067e+01 + sys_corr_4: 6.94059502e+01 + sys_corr_5: 3.19774277e+02 + sys_corr_6: -8.01351172e+02 + sys_corr_7: 1.59759787e+01 + sys_corr_8: -7.80716145e+00 + sys_corr_9: -6.90456689e+00 + sys_corr_10: -1.47708009e+01 + sys_corr_11: -4.68112992e+01 + sys_corr_12: -6.45936782e+01 + sys_corr_13: 4.56365705e+01 + sys_corr_14: -8.24676038e+00 + sys_corr_15: -1.76594284e+01 + sys_corr_16: 8.46791118e+00 + sys_corr_17: -9.76702146e+00 + sys_corr_18: 1.03254342e+00 + sys_corr_19: -8.75606673e-01 + sys_corr_20: 2.63124872e+00 + sys_corr_21: -3.91105119e+00 + sys_corr_22: -1.84435593e+01 + sys_corr_23: -8.44264664e+00 + sys_corr_24: 1.22629882e+00 + sys_corr_25: -1.53707431e+01 + sys_corr_26: -4.70749804e+01 + sys_corr_27: 1.23496122e+01 + sys_corr_28: 5.58788812e+01 + sys_corr_29: -6.45291657e+01 + sys_corr_30: -8.92605371e-01 + sys_corr_31: 2.74014163e+01 + sys_corr_32: -9.58728101e+00 + sys_corr_33: 1.70759588e+01 + sys_corr_34: -1.66422813e+01 + sys_corr_35: -4.26010276e+00 + sys_corr_36: -6.32974309e-01 + sys_corr_37: -6.23410389e+00 + sys_corr_38: 6.61570927e+00 + sys_corr_39: -6.39003708e+00 + sys_corr_40: -3.30915243e+01 + sys_corr_41: 1.27398462e-01 + sys_corr_42: 4.71005181e+01 + sys_corr_43: -2.57698830e+00 + sys_corr_44: -3.83866325e+01 + sys_corr_45: -2.45546714e+01 + sys_corr_46: -6.68695746e+00 + sys_corr_47: -3.77798989e+00 + sys_corr_48: -2.19555286e+01 + sys_corr_49: 1.98707302e+01 + sys_corr_50: -4.32153591e+01 + sys_corr_51: -2.93862559e+00 + sys_corr_52: -2.15749107e+01 + sys_corr_53: -4.29935738e+01 + sys_corr_54: 1.09585006e+02 + sys_corr_55: -1.51751613e+01 + sys_corr_56: 4.40654846e+01 + sys_corr_57: 5.41492318e+01 + sys_corr_58: 5.73871996e+01 + sys_corr_59: -2.12506391e+01 + sys_corr_60: -1.68337365e+01 + sys_corr_61: 3.98634162e+01 + sys_corr_62: -4.90315025e+01 + sys_corr_63: -7.59095842e+00 + sys_corr_64: -1.38840996e+01 + sys_corr_65: -2.56754430e+01 + sys_corr_66: -2.21230168e+01 + sys_corr_67: 3.36045283e+01 + sys_corr_68: 1.43125548e+02 + sys_corr_69: -6.47484765e+01 + sys_corr_70: 3.18014988e+01 + sys_corr_71: -2.31131099e+01 + sys_corr_72: 2.99364389e+01 + sys_corr_73: 4.59298863e+01 + sys_corr_74: -4.54904483e+00 + sys_corr_75: -1.46549714e+01 + sys_corr_76: -8.95068996e-01 + sys_corr_77: 1.45766646e+01 + sys_corr_78: 1.21690554e+01 + sys_corr_79: -6.22477197e+01 + sys_corr_80: 5.33329760e+00 + sys_corr_81: -6.12762291e+00 + sys_corr_82: -8.61603696e-01 + sys_corr_83: -4.51028538e+00 + sys_corr_84: -1.58975652e+01 + sys_corr_85: -8.15063414e+00 + sys_corr_86: 5.86652482e+00 + sys_corr_87: 1.08968120e+01 + sys_corr_88: 9.01609323e+00 + sys_corr_89: 1.15402373e+00 + sys_corr_90: 2.28643840e+00 + sys_corr_91: 3.79916062e+00 + sys_corr_92: 4.97839176e+00 + sys_corr_93: -1.41526875e-01 + sys_corr_94: -5.10525864e-01 + sys_corr_95: 1.52638778e-01 + sys_corr_96: 1.43760740e-01 + sys_corr_97: -4.37255508e-01 + sys_corr_98: -1.69801035e-01 + sys_corr_99: 7.69643906e-02 + sys_corr_100: 3.50668555e-01 + sys_corr_101: 1.21431202e+00 + sys_corr_102: 4.39239376e+00 + sys_corr_103: -6.06507687e-01 + sys_corr_104: -1.62048879e+00 + sys_corr_105: 7.35666088e-01 + sys_corr_106: 5.59942372e-01 + sys_corr_107: 9.11339473e-01 + sys_corr_108: -2.01509662e-01 + sys_corr_109: 1.29633696e-02 + sys_corr_110: 3.86680818e-01 + sys_corr_111: -4.59637576e-01 + sys_corr_112: -1.44689867e-01 + sys_corr_113: -6.63801230e-02 + sys_corr_114: -2.87374397e-03 + sys_corr_115: 3.50486902e-02 + sys_corr_116: 1.18317332e-01 + sys_corr_117: 7.96644639e-02 + sys_corr_118: 1.01590311e-01 + sys_corr_119: 9.86144078e-04 + sys_corr_120: -3.90458339e-02 + sys_corr_121: 4.09823000e-03 + sys_corr_122: 4.16870622e-02 + sys_corr_123: 3.90706071e-02 + sys_corr_124: 1.60142629e-01 + sys_corr_125: -1.01782004e-02 + sys_corr_126: 1.64289821e-02 + sys_corr_127: -3.71297536e-01 + sys_corr_128: 6.65903994e-02 + sys_corr_129: -6.17536888e-02 + sys_corr_130: -4.92308202e-03 + sys_corr_131: 1.02089704e-02 + sys_corr_132: 4.49512290e-02 stat: 0.0 - luminosity: 397.8760060000001 -- sys_corr_1: 255.1658283236207 - sys_corr_2: 75.98164086954611 - sys_corr_3: -34.06400522358199 - sys_corr_4: 80.74459843493062 - sys_corr_5: 284.102054476303 - sys_corr_6: -747.7559788892427 - sys_corr_7: 43.393601909645895 - sys_corr_8: 19.269174715604574 - sys_corr_9: 14.458050711864812 - sys_corr_10: -8.748623581319096 - sys_corr_11: -19.714530778693724 - sys_corr_12: -36.47538297278688 - sys_corr_13: 18.067484078488107 - sys_corr_14: 0.49948832397154025 - sys_corr_15: -15.036502195782912 - sys_corr_16: 9.19204731689545 - sys_corr_17: -13.95245444389699 - sys_corr_18: -14.907787544384481 - sys_corr_19: 18.679002427642384 - sys_corr_20: 12.338269003846504 - sys_corr_21: -0.19948541804398956 - sys_corr_22: 82.83137380304787 - sys_corr_23: -1.9664542787978732 - sys_corr_24: 51.111977782436554 - sys_corr_25: -22.11986880346755 - sys_corr_26: -75.7396754705859 - sys_corr_27: 43.06576460297547 - sys_corr_28: 66.5549716064703 - sys_corr_29: -77.2186889981654 - sys_corr_30: -2.721849269602242 - sys_corr_31: 45.66137273893241 - sys_corr_32: 7.171533502846938 - sys_corr_33: 23.884439848770523 - sys_corr_34: -9.032836558220716 - sys_corr_35: 2.16281021051218 - sys_corr_36: 17.671792371158762 - sys_corr_37: 23.587661747792783 - sys_corr_38: 2.698526038144786 - sys_corr_39: 18.486162859547402 - sys_corr_40: -37.84995084402476 - sys_corr_41: 56.87681353210797 - sys_corr_42: 27.048251940437325 - sys_corr_43: -26.427601140064294 - sys_corr_44: 19.60496949472854 - sys_corr_45: -20.76365473510634 - sys_corr_46: 14.323563631142767 - sys_corr_47: 24.78405393831516 - sys_corr_48: -15.511169510188623 - sys_corr_49: 21.29445005536094 - sys_corr_50: -23.907808738009923 - sys_corr_51: 29.228019363300255 - sys_corr_52: 68.82451808851347 - sys_corr_53: -38.43453339486183 - sys_corr_54: 66.18109476929816 - sys_corr_55: 12.47483980487278 - sys_corr_56: -14.831893708003722 - sys_corr_57: 18.89577073845841 - sys_corr_58: 81.67342028262436 - sys_corr_59: 87.23911687969503 - sys_corr_60: -38.22944729321589 - sys_corr_61: 28.326053938707336 - sys_corr_62: -38.54265472156507 - sys_corr_63: -78.7533486094192 - sys_corr_64: 67.84022116381195 - sys_corr_65: -9.344201956580607 - sys_corr_66: 58.061642666897924 - sys_corr_67: -19.65387637742263 - sys_corr_68: -105.79736062345115 - sys_corr_69: -0.6385581807169903 - sys_corr_70: -44.8465504637211 - sys_corr_71: 67.05407274048876 - sys_corr_72: -2.87860242877302 - sys_corr_73: -0.1988650850303656 - sys_corr_74: 10.527271414865512 - sys_corr_75: -1.7296485794108156 - sys_corr_76: -1.0748406586331223 - sys_corr_77: 13.945813278470037 - sys_corr_78: 11.000897214432568 - sys_corr_79: 20.233900924207475 - sys_corr_80: -1.388118383630435 - sys_corr_81: -9.406901228647351 - sys_corr_82: 14.448555143013673 - sys_corr_83: -15.748993557082505 - sys_corr_84: -3.3416035395133328 - sys_corr_85: -0.47594944270311335 - sys_corr_86: 13.484236377888704 - sys_corr_87: 22.818549287628045 - sys_corr_88: 7.798058506504721 - sys_corr_89: 0.7946162495480019 - sys_corr_90: -0.16268535090163397 - sys_corr_91: -0.9363097563145639 - sys_corr_92: 4.3256719590911565 - sys_corr_93: -0.1404928915432583 - sys_corr_94: -0.3938776272506559 - sys_corr_95: 0.28137275341303114 - sys_corr_96: 0.020503598123700107 - sys_corr_97: -0.42293648285920094 - sys_corr_98: -0.2805032810294292 - sys_corr_99: 0.5927545663517183 - sys_corr_100: 1.0335826107368067 - sys_corr_101: 2.626408953906973 - sys_corr_102: 5.804795526980865 - sys_corr_103: -0.8423410936366459 - sys_corr_104: -2.0829315545172866 - sys_corr_105: 1.0821439510202455 - sys_corr_106: 1.0104475532233048 - sys_corr_107: 0.8930818874035735 - sys_corr_108: 0.1438334490603549 - sys_corr_109: 0.07887243747233776 - sys_corr_110: 0.34096610215916623 - sys_corr_111: -0.3513712431947343 - sys_corr_112: 0.002705945481534577 - sys_corr_113: -0.01747352377360458 - sys_corr_114: -0.0003611930404466556 - sys_corr_115: -0.01119895965464823 - sys_corr_116: -0.00771543298102316 - sys_corr_117: -0.01056365974795421 - sys_corr_118: 0.016915014172733195 - sys_corr_119: -0.00802690076586629 - sys_corr_120: 0.019949251716573118 - sys_corr_121: 0.008612277516441587 - sys_corr_122: 0.05391029539527024 - sys_corr_123: 0.02470005963322094 - sys_corr_124: 0.016292962367576574 - sys_corr_125: -0.035845609641695406 - sys_corr_126: 0.01714276263924835 - sys_corr_127: -0.7078765447959624 - sys_corr_128: -0.13898490126061183 - sys_corr_129: 0.16622568721938707 - sys_corr_130: 0.0003338919713764542 - sys_corr_131: -0.029022550643145913 - sys_corr_132: 0.06732070220522401 + luminosity: 3.97876006e+02 +- sys_corr_1: 2.55165828e+02 + sys_corr_2: 7.59816409e+01 + sys_corr_3: -3.40640052e+01 + sys_corr_4: 8.07445984e+01 + sys_corr_5: 2.84102054e+02 + sys_corr_6: -7.47755979e+02 + sys_corr_7: 4.33936019e+01 + sys_corr_8: 1.92691747e+01 + sys_corr_9: 1.44580507e+01 + sys_corr_10: -8.74862358e+00 + sys_corr_11: -1.97145308e+01 + sys_corr_12: -3.64753830e+01 + sys_corr_13: 1.80674841e+01 + sys_corr_14: 4.99488324e-01 + sys_corr_15: -1.50365022e+01 + sys_corr_16: 9.19204732e+00 + sys_corr_17: -1.39524544e+01 + sys_corr_18: -1.49077875e+01 + sys_corr_19: 1.86790024e+01 + sys_corr_20: 1.23382690e+01 + sys_corr_21: -1.99485418e-01 + sys_corr_22: 8.28313738e+01 + sys_corr_23: -1.96645428e+00 + sys_corr_24: 5.11119778e+01 + sys_corr_25: -2.21198688e+01 + sys_corr_26: -7.57396755e+01 + sys_corr_27: 4.30657646e+01 + sys_corr_28: 6.65549716e+01 + sys_corr_29: -7.72186890e+01 + sys_corr_30: -2.72184927e+00 + sys_corr_31: 4.56613727e+01 + sys_corr_32: 7.17153350e+00 + sys_corr_33: 2.38844398e+01 + sys_corr_34: -9.03283656e+00 + sys_corr_35: 2.16281021e+00 + sys_corr_36: 1.76717924e+01 + sys_corr_37: 2.35876617e+01 + sys_corr_38: 2.69852604e+00 + sys_corr_39: 1.84861629e+01 + sys_corr_40: -3.78499508e+01 + sys_corr_41: 5.68768135e+01 + sys_corr_42: 2.70482519e+01 + sys_corr_43: -2.64276011e+01 + sys_corr_44: 1.96049695e+01 + sys_corr_45: -2.07636547e+01 + sys_corr_46: 1.43235636e+01 + sys_corr_47: 2.47840539e+01 + sys_corr_48: -1.55111695e+01 + sys_corr_49: 2.12944501e+01 + sys_corr_50: -2.39078087e+01 + sys_corr_51: 2.92280194e+01 + sys_corr_52: 6.88245181e+01 + sys_corr_53: -3.84345334e+01 + sys_corr_54: 6.61810948e+01 + sys_corr_55: 1.24748398e+01 + sys_corr_56: -1.48318937e+01 + sys_corr_57: 1.88957707e+01 + sys_corr_58: 8.16734203e+01 + sys_corr_59: 8.72391169e+01 + sys_corr_60: -3.82294473e+01 + sys_corr_61: 2.83260539e+01 + sys_corr_62: -3.85426547e+01 + sys_corr_63: -7.87533486e+01 + sys_corr_64: 6.78402212e+01 + sys_corr_65: -9.34420196e+00 + sys_corr_66: 5.80616427e+01 + sys_corr_67: -1.96538764e+01 + sys_corr_68: -1.05797361e+02 + sys_corr_69: -6.38558181e-01 + sys_corr_70: -4.48465505e+01 + sys_corr_71: 6.70540727e+01 + sys_corr_72: -2.87860243e+00 + sys_corr_73: -1.98865085e-01 + sys_corr_74: 1.05272714e+01 + sys_corr_75: -1.72964858e+00 + sys_corr_76: -1.07484066e+00 + sys_corr_77: 1.39458133e+01 + sys_corr_78: 1.10008972e+01 + sys_corr_79: 2.02339009e+01 + sys_corr_80: -1.38811838e+00 + sys_corr_81: -9.40690123e+00 + sys_corr_82: 1.44485551e+01 + sys_corr_83: -1.57489936e+01 + sys_corr_84: -3.34160354e+00 + sys_corr_85: -4.75949443e-01 + sys_corr_86: 1.34842364e+01 + sys_corr_87: 2.28185493e+01 + sys_corr_88: 7.79805851e+00 + sys_corr_89: 7.94616250e-01 + sys_corr_90: -1.62685351e-01 + sys_corr_91: -9.36309756e-01 + sys_corr_92: 4.32567196e+00 + sys_corr_93: -1.40492892e-01 + sys_corr_94: -3.93877627e-01 + sys_corr_95: 2.81372753e-01 + sys_corr_96: 2.05035981e-02 + sys_corr_97: -4.22936483e-01 + sys_corr_98: -2.80503281e-01 + sys_corr_99: 5.92754566e-01 + sys_corr_100: 1.03358261e+00 + sys_corr_101: 2.62640895e+00 + sys_corr_102: 5.80479553e+00 + sys_corr_103: -8.42341094e-01 + sys_corr_104: -2.08293155e+00 + sys_corr_105: 1.08214395e+00 + sys_corr_106: 1.01044755e+00 + sys_corr_107: 8.93081887e-01 + sys_corr_108: 1.43833449e-01 + sys_corr_109: 7.88724375e-02 + sys_corr_110: 3.40966102e-01 + sys_corr_111: -3.51371243e-01 + sys_corr_112: 2.70594548e-03 + sys_corr_113: -1.74735238e-02 + sys_corr_114: -3.61193040e-04 + sys_corr_115: -1.11989597e-02 + sys_corr_116: -7.71543298e-03 + sys_corr_117: -1.05636597e-02 + sys_corr_118: 1.69150142e-02 + sys_corr_119: -8.02690077e-03 + sys_corr_120: 1.99492517e-02 + sys_corr_121: 8.61227752e-03 + sys_corr_122: 5.39102954e-02 + sys_corr_123: 2.47000596e-02 + sys_corr_124: 1.62929624e-02 + sys_corr_125: -3.58456096e-02 + sys_corr_126: 1.71427626e-02 + sys_corr_127: -7.07876545e-01 + sys_corr_128: -1.38984901e-01 + sys_corr_129: 1.66225687e-01 + sys_corr_130: 3.33891971e-04 + sys_corr_131: -2.90225506e-02 + sys_corr_132: 6.73207022e-02 stat: 0.0 - luminosity: 405.19287600000007 -- sys_corr_1: 259.3598901453959 - sys_corr_2: 49.11015622321162 - sys_corr_3: 0.6489454821630534 - sys_corr_4: 72.98434435063496 - sys_corr_5: 194.90099612517778 - sys_corr_6: -606.4450675633483 - sys_corr_7: 70.56779901095145 - sys_corr_8: 53.83579382647099 - sys_corr_9: 36.149301615517864 - sys_corr_10: 21.62227071608712 - sys_corr_11: 26.82315985534185 - sys_corr_12: 23.09511507130692 - sys_corr_13: 2.7560873250934397 - sys_corr_14: 1.2105652880398632 - sys_corr_15: -5.774674378960877 - sys_corr_16: 12.405973928509198 - sys_corr_17: -22.308831179965118 - sys_corr_18: -16.67717326302523 - sys_corr_19: 28.194781778650135 - sys_corr_20: 17.11075016653642 - sys_corr_21: 6.186419985648986 - sys_corr_22: 183.89860861328413 - sys_corr_23: 15.324720520307674 - sys_corr_24: 89.98676229547178 - sys_corr_25: -23.35522683723831 - sys_corr_26: -82.26346162311235 - sys_corr_27: 49.08695777267997 - sys_corr_28: 67.82780666937131 - sys_corr_29: -77.82892354027607 - sys_corr_30: 18.046252510087346 - sys_corr_31: 51.146814804241735 - sys_corr_32: 1.8358112560535962 - sys_corr_33: 13.17103231651907 - sys_corr_34: -18.393849720788502 - sys_corr_35: -5.554180624562761 - sys_corr_36: 0.46904244770153136 - sys_corr_37: 3.1455912079427812 - sys_corr_38: -18.2216077656136 - sys_corr_39: -25.240928116698125 - sys_corr_40: -0.5242156995159462 - sys_corr_41: 39.891776362976586 - sys_corr_42: -13.706703749791156 - sys_corr_43: -11.512278859992373 - sys_corr_44: -22.777049328532325 - sys_corr_45: 18.06858556241774 - sys_corr_46: 5.318083913731969 - sys_corr_47: -12.402986043431198 - sys_corr_48: -32.79063480835335 - sys_corr_49: 16.994173491796303 - sys_corr_50: -39.95491865072271 - sys_corr_51: 3.1710465845299796 - sys_corr_52: -22.172658004996816 - sys_corr_53: -33.71087095093149 - sys_corr_54: -32.68859566691143 - sys_corr_55: 5.43418810363473 - sys_corr_56: 8.744585590300717 - sys_corr_57: -46.8806623339355 - sys_corr_58: -62.714647354454904 - sys_corr_59: -42.860516238856036 - sys_corr_60: -1.9535347125765663 - sys_corr_61: -141.0325654951304 - sys_corr_62: 67.68033139269343 - sys_corr_63: 72.42577426453586 - sys_corr_64: 65.36645413184841 - sys_corr_65: 5.943013053603821 - sys_corr_66: 46.40919102761276 - sys_corr_67: -21.437357620276295 - sys_corr_68: 38.9538147469523 - sys_corr_69: -37.61502115998922 - sys_corr_70: -66.52191245471562 - sys_corr_71: 58.43493820565218 - sys_corr_72: 25.155991424465437 - sys_corr_73: 44.406074251065334 - sys_corr_74: 31.385096714623238 - sys_corr_75: -5.962337140355153 - sys_corr_76: 9.767432444055093 - sys_corr_77: 12.657455805389542 - sys_corr_78: -7.178199604718964 - sys_corr_79: -2.596161836973703 - sys_corr_80: -5.357999137539792 - sys_corr_81: 16.5312527444517 - sys_corr_82: -3.7977499613441275 - sys_corr_83: 10.270833189068462 - sys_corr_84: -9.567505562846032 - sys_corr_85: -2.445906821939861 - sys_corr_86: 17.20691783844932 - sys_corr_87: -4.692201884561566 - sys_corr_88: 10.646861548775496 - sys_corr_89: 0.6635956544101338 - sys_corr_90: -0.6099968722323552 - sys_corr_91: 2.4866832051562815 - sys_corr_92: 4.164527670843862 - sys_corr_93: -0.338781768869891 - sys_corr_94: -0.43225832615798676 - sys_corr_95: -0.1324055119240033 - sys_corr_96: -0.11254621976196741 - sys_corr_97: 1.6503812931983357 - sys_corr_98: 0.697554380507949 - sys_corr_99: 0.8501051241678256 - sys_corr_100: 2.013282698742197 - sys_corr_101: 3.8961589955842806 - sys_corr_102: 12.819844163154167 - sys_corr_103: -1.917781602458886 - sys_corr_104: -4.561400349986759 - sys_corr_105: 2.06425133556817 - sys_corr_106: 1.7447662002722257 - sys_corr_107: 0.8281885215568965 - sys_corr_108: 0.639530489600571 - sys_corr_109: 0.04790279804758945 - sys_corr_110: 0.14538349931151548 - sys_corr_111: -0.29957839561668825 - sys_corr_112: 0.009474142607417581 - sys_corr_113: 0.04834722965938289 - sys_corr_114: 0.0005286842883052004 - sys_corr_115: 0.11523528868465005 - sys_corr_116: -0.05977064410285359 - sys_corr_117: -0.04865410282286159 - sys_corr_118: 0.03150011826697363 - sys_corr_119: -0.005548801916103903 - sys_corr_120: 0.03423261428332387 - sys_corr_121: -0.0010153208634859985 - sys_corr_122: 0.050577179982212686 - sys_corr_123: 0.02080577194404403 - sys_corr_124: -0.03829254238988899 - sys_corr_125: -0.041757617765107044 - sys_corr_126: -0.002488764156857007 - sys_corr_127: -0.5579003958973329 - sys_corr_128: -0.18554988146456117 - sys_corr_129: -0.048280147995428555 - sys_corr_130: -0.009960461622581355 - sys_corr_131: -0.04560899406745155 - sys_corr_132: 0.17812185500702954 + luminosity: 4.05192876e+02 +- sys_corr_1: 2.59359890e+02 + sys_corr_2: 4.91101562e+01 + sys_corr_3: 6.48945482e-01 + sys_corr_4: 7.29843444e+01 + sys_corr_5: 1.94900996e+02 + sys_corr_6: -6.06445068e+02 + sys_corr_7: 7.05677990e+01 + sys_corr_8: 5.38357938e+01 + sys_corr_9: 3.61493016e+01 + sys_corr_10: 2.16222707e+01 + sys_corr_11: 2.68231599e+01 + sys_corr_12: 2.30951151e+01 + sys_corr_13: 2.75608733e+00 + sys_corr_14: 1.21056529e+00 + sys_corr_15: -5.77467438e+00 + sys_corr_16: 1.24059739e+01 + sys_corr_17: -2.23088312e+01 + sys_corr_18: -1.66771733e+01 + sys_corr_19: 2.81947818e+01 + sys_corr_20: 1.71107502e+01 + sys_corr_21: 6.18641999e+00 + sys_corr_22: 1.83898609e+02 + sys_corr_23: 1.53247205e+01 + sys_corr_24: 8.99867623e+01 + sys_corr_25: -2.33552268e+01 + sys_corr_26: -8.22634616e+01 + sys_corr_27: 4.90869578e+01 + sys_corr_28: 6.78278067e+01 + sys_corr_29: -7.78289235e+01 + sys_corr_30: 1.80462525e+01 + sys_corr_31: 5.11468148e+01 + sys_corr_32: 1.83581126e+00 + sys_corr_33: 1.31710323e+01 + sys_corr_34: -1.83938497e+01 + sys_corr_35: -5.55418062e+00 + sys_corr_36: 4.69042448e-01 + sys_corr_37: 3.14559121e+00 + sys_corr_38: -1.82216078e+01 + sys_corr_39: -2.52409281e+01 + sys_corr_40: -5.24215700e-01 + sys_corr_41: 3.98917764e+01 + sys_corr_42: -1.37067037e+01 + sys_corr_43: -1.15122789e+01 + sys_corr_44: -2.27770493e+01 + sys_corr_45: 1.80685856e+01 + sys_corr_46: 5.31808391e+00 + sys_corr_47: -1.24029860e+01 + sys_corr_48: -3.27906348e+01 + sys_corr_49: 1.69941735e+01 + sys_corr_50: -3.99549187e+01 + sys_corr_51: 3.17104658e+00 + sys_corr_52: -2.21726580e+01 + sys_corr_53: -3.37108710e+01 + sys_corr_54: -3.26885957e+01 + sys_corr_55: 5.43418810e+00 + sys_corr_56: 8.74458559e+00 + sys_corr_57: -4.68806623e+01 + sys_corr_58: -6.27146474e+01 + sys_corr_59: -4.28605162e+01 + sys_corr_60: -1.95353471e+00 + sys_corr_61: -1.41032565e+02 + sys_corr_62: 6.76803314e+01 + sys_corr_63: 7.24257743e+01 + sys_corr_64: 6.53664541e+01 + sys_corr_65: 5.94301305e+00 + sys_corr_66: 4.64091910e+01 + sys_corr_67: -2.14373576e+01 + sys_corr_68: 3.89538147e+01 + sys_corr_69: -3.76150212e+01 + sys_corr_70: -6.65219125e+01 + sys_corr_71: 5.84349382e+01 + sys_corr_72: 2.51559914e+01 + sys_corr_73: 4.44060743e+01 + sys_corr_74: 3.13850967e+01 + sys_corr_75: -5.96233714e+00 + sys_corr_76: 9.76743244e+00 + sys_corr_77: 1.26574558e+01 + sys_corr_78: -7.17819960e+00 + sys_corr_79: -2.59616184e+00 + sys_corr_80: -5.35799914e+00 + sys_corr_81: 1.65312527e+01 + sys_corr_82: -3.79774996e+00 + sys_corr_83: 1.02708332e+01 + sys_corr_84: -9.56750556e+00 + sys_corr_85: -2.44590682e+00 + sys_corr_86: 1.72069178e+01 + sys_corr_87: -4.69220188e+00 + sys_corr_88: 1.06468615e+01 + sys_corr_89: 6.63595654e-01 + sys_corr_90: -6.09996872e-01 + sys_corr_91: 2.48668321e+00 + sys_corr_92: 4.16452767e+00 + sys_corr_93: -3.38781769e-01 + sys_corr_94: -4.32258326e-01 + sys_corr_95: -1.32405512e-01 + sys_corr_96: -1.12546220e-01 + sys_corr_97: 1.65038129e+00 + sys_corr_98: 6.97554381e-01 + sys_corr_99: 8.50105124e-01 + sys_corr_100: 2.01328270e+00 + sys_corr_101: 3.89615900e+00 + sys_corr_102: 1.28198442e+01 + sys_corr_103: -1.91778160e+00 + sys_corr_104: -4.56140035e+00 + sys_corr_105: 2.06425134e+00 + sys_corr_106: 1.74476620e+00 + sys_corr_107: 8.28188522e-01 + sys_corr_108: 6.39530490e-01 + sys_corr_109: 4.79027980e-02 + sys_corr_110: 1.45383499e-01 + sys_corr_111: -2.99578396e-01 + sys_corr_112: 9.47414261e-03 + sys_corr_113: 4.83472297e-02 + sys_corr_114: 5.28684288e-04 + sys_corr_115: 1.15235289e-01 + sys_corr_116: -5.97706441e-02 + sys_corr_117: -4.86541028e-02 + sys_corr_118: 3.15001183e-02 + sys_corr_119: -5.54880192e-03 + sys_corr_120: 3.42326143e-02 + sys_corr_121: -1.01532086e-03 + sys_corr_122: 5.05771800e-02 + sys_corr_123: 2.08057719e-02 + sys_corr_124: -3.82925424e-02 + sys_corr_125: -4.17576178e-02 + sys_corr_126: -2.48876416e-03 + sys_corr_127: -5.57900396e-01 + sys_corr_128: -1.85549881e-01 + sys_corr_129: -4.82801480e-02 + sys_corr_130: -9.96046162e-03 + sys_corr_131: -4.56089941e-02 + sys_corr_132: 1.78121855e-01 stat: 0.0 - luminosity: 399.13110600000005 -- sys_corr_1: 249.72830395394232 - sys_corr_2: 38.48188080341231 - sys_corr_3: 4.065036762653504 - sys_corr_4: 75.71985723370622 - sys_corr_5: 126.67865908849919 - sys_corr_6: -498.7022751513256 - sys_corr_7: 93.01963325644844 - sys_corr_8: 55.00408289275043 - sys_corr_9: 46.96162070150074 - sys_corr_10: 7.794325019776928 - sys_corr_11: 67.21346361589488 - sys_corr_12: 60.69108800392233 - sys_corr_13: -37.19997480250678 - sys_corr_14: 10.413012298091948 - sys_corr_15: 7.590426144737453 - sys_corr_16: 8.262682825253917 - sys_corr_17: -21.79448196135656 - sys_corr_18: -36.6601218026942 - sys_corr_19: 34.60749212309431 - sys_corr_20: 22.145699623170117 - sys_corr_21: 11.56298504656114 - sys_corr_22: 233.44951925541915 - sys_corr_23: 21.357465648407427 - sys_corr_24: 69.40092029859507 - sys_corr_25: -22.002411985545933 - sys_corr_26: -70.03449174630336 - sys_corr_27: 48.152188776578896 - sys_corr_28: 50.15016184996242 - sys_corr_29: -87.17405203399535 - sys_corr_30: 45.85390092609823 - sys_corr_31: 44.87777232765769 - sys_corr_32: 22.698251896948708 - sys_corr_33: 25.991074270580913 - sys_corr_34: -27.22980984556136 - sys_corr_35: 10.689301297347926 - sys_corr_36: 15.440850554069526 - sys_corr_37: -10.078472132793996 - sys_corr_38: -22.77440417173793 - sys_corr_39: 15.21038508279341 - sys_corr_40: -5.97142147480684 - sys_corr_41: 15.089005937339873 - sys_corr_42: 24.76417279959264 - sys_corr_43: -18.513072836420136 - sys_corr_44: -21.85653700989908 - sys_corr_45: 26.952463286540006 - sys_corr_46: -36.516688063518 - sys_corr_47: 37.2431253026998 - sys_corr_48: -8.991919301828105 - sys_corr_49: 7.950314865633173 - sys_corr_50: -23.764292130790153 - sys_corr_51: -65.32669627440596 - sys_corr_52: -67.70675500241045 - sys_corr_53: -25.21454623187235 - sys_corr_54: 123.75538467844044 - sys_corr_55: -38.507545298652005 - sys_corr_56: -29.813121553220796 - sys_corr_57: 8.433802248230629 - sys_corr_58: 15.578948337166034 - sys_corr_59: -99.33644686149033 - sys_corr_60: -8.050716823856508 - sys_corr_61: 7.821601879778288 - sys_corr_62: 47.51354720763465 - sys_corr_63: 45.68353894247428 - sys_corr_64: -73.75148903413124 - sys_corr_65: 37.51535859809417 - sys_corr_66: -31.610400399097017 - sys_corr_67: -21.308753575945026 - sys_corr_68: -78.0195242026966 - sys_corr_69: 86.4506804663964 - sys_corr_70: 11.094934412359992 - sys_corr_71: -35.902558518977884 - sys_corr_72: -1.796315561529671 - sys_corr_73: -32.79807416582629 - sys_corr_74: -11.353866662115179 - sys_corr_75: -12.491956197339857 - sys_corr_76: -12.36522436739662 - sys_corr_77: -6.088233013107455 - sys_corr_78: -11.021618605596556 - sys_corr_79: 19.84273320566781 - sys_corr_80: -4.2002075487269375 - sys_corr_81: -0.836265232528373 - sys_corr_82: 1.1434156601869392 - sys_corr_83: 5.450765667537213 - sys_corr_84: 3.836291907036491 - sys_corr_85: 3.738052238068239 - sys_corr_86: -10.166598930726755 - sys_corr_87: -5.33432811234809 - sys_corr_88: -9.890131654884154 - sys_corr_89: 0.6313417733115756 - sys_corr_90: 0.24415450549188578 - sys_corr_91: -1.6097645269927388 - sys_corr_92: -1.439913707393916 - sys_corr_93: 0.17456124826622144 - sys_corr_94: 0.9857844850306118 - sys_corr_95: -1.5456134361504927 - sys_corr_96: -0.21012787209735512 - sys_corr_97: -0.43486488923367045 - sys_corr_98: -0.2483303568050783 - sys_corr_99: 0.32806335524379693 - sys_corr_100: 1.146216644316776 - sys_corr_101: 2.8773746168615473 - sys_corr_102: 6.588377532209634 - sys_corr_103: -1.6602526556736066 - sys_corr_104: -2.014482060297163 - sys_corr_105: 1.3796903936089384 - sys_corr_106: 1.3112331116108957 - sys_corr_107: 0.8746378430420287 - sys_corr_108: 0.015713824969522453 - sys_corr_109: -0.19299883970269233 - sys_corr_110: 0.7053209984370152 - sys_corr_111: -0.3122390890111324 - sys_corr_112: 0.029352936510042314 - sys_corr_113: 0.06024970581246989 - sys_corr_114: -0.0017699047495767382 - sys_corr_115: -0.003024679207740455 - sys_corr_116: -0.049134357241710905 - sys_corr_117: -0.03255768739814213 - sys_corr_118: 0.06574497760855401 - sys_corr_119: -0.0004046350262146827 - sys_corr_120: 0.0346504641083138 - sys_corr_121: 0.014752391970308186 - sys_corr_122: 0.06385212311692591 - sys_corr_123: 0.0333182772624343 - sys_corr_124: -0.033768228196894574 - sys_corr_125: -0.04795895050797625 - sys_corr_126: 0.01846948665861041 - sys_corr_127: -0.12030093820669396 - sys_corr_128: -0.19751259421676065 - sys_corr_129: 0.0796321741173005 - sys_corr_130: 0.0043760172551264315 - sys_corr_131: -0.03573203458648833 - sys_corr_132: -0.07870909464824838 + luminosity: 3.99131106e+02 +- sys_corr_1: 2.49728304e+02 + sys_corr_2: 3.84818808e+01 + sys_corr_3: 4.06503676e+00 + sys_corr_4: 7.57198572e+01 + sys_corr_5: 1.26678659e+02 + sys_corr_6: -4.98702275e+02 + sys_corr_7: 9.30196333e+01 + sys_corr_8: 5.50040829e+01 + sys_corr_9: 4.69616207e+01 + sys_corr_10: 7.79432502e+00 + sys_corr_11: 6.72134636e+01 + sys_corr_12: 6.06910880e+01 + sys_corr_13: -3.71999748e+01 + sys_corr_14: 1.04130123e+01 + sys_corr_15: 7.59042614e+00 + sys_corr_16: 8.26268283e+00 + sys_corr_17: -2.17944820e+01 + sys_corr_18: -3.66601218e+01 + sys_corr_19: 3.46074921e+01 + sys_corr_20: 2.21456996e+01 + sys_corr_21: 1.15629850e+01 + sys_corr_22: 2.33449519e+02 + sys_corr_23: 2.13574656e+01 + sys_corr_24: 6.94009203e+01 + sys_corr_25: -2.20024120e+01 + sys_corr_26: -7.00344917e+01 + sys_corr_27: 4.81521888e+01 + sys_corr_28: 5.01501618e+01 + sys_corr_29: -8.71740520e+01 + sys_corr_30: 4.58539009e+01 + sys_corr_31: 4.48777723e+01 + sys_corr_32: 2.26982519e+01 + sys_corr_33: 2.59910743e+01 + sys_corr_34: -2.72298098e+01 + sys_corr_35: 1.06893013e+01 + sys_corr_36: 1.54408506e+01 + sys_corr_37: -1.00784721e+01 + sys_corr_38: -2.27744042e+01 + sys_corr_39: 1.52103851e+01 + sys_corr_40: -5.97142147e+00 + sys_corr_41: 1.50890059e+01 + sys_corr_42: 2.47641728e+01 + sys_corr_43: -1.85130728e+01 + sys_corr_44: -2.18565370e+01 + sys_corr_45: 2.69524633e+01 + sys_corr_46: -3.65166881e+01 + sys_corr_47: 3.72431253e+01 + sys_corr_48: -8.99191930e+00 + sys_corr_49: 7.95031487e+00 + sys_corr_50: -2.37642921e+01 + sys_corr_51: -6.53266963e+01 + sys_corr_52: -6.77067550e+01 + sys_corr_53: -2.52145462e+01 + sys_corr_54: 1.23755385e+02 + sys_corr_55: -3.85075453e+01 + sys_corr_56: -2.98131216e+01 + sys_corr_57: 8.43380225e+00 + sys_corr_58: 1.55789483e+01 + sys_corr_59: -9.93364469e+01 + sys_corr_60: -8.05071682e+00 + sys_corr_61: 7.82160188e+00 + sys_corr_62: 4.75135472e+01 + sys_corr_63: 4.56835389e+01 + sys_corr_64: -7.37514890e+01 + sys_corr_65: 3.75153586e+01 + sys_corr_66: -3.16104004e+01 + sys_corr_67: -2.13087536e+01 + sys_corr_68: -7.80195242e+01 + sys_corr_69: 8.64506805e+01 + sys_corr_70: 1.10949344e+01 + sys_corr_71: -3.59025585e+01 + sys_corr_72: -1.79631556e+00 + sys_corr_73: -3.27980742e+01 + sys_corr_74: -1.13538667e+01 + sys_corr_75: -1.24919562e+01 + sys_corr_76: -1.23652244e+01 + sys_corr_77: -6.08823301e+00 + sys_corr_78: -1.10216186e+01 + sys_corr_79: 1.98427332e+01 + sys_corr_80: -4.20020755e+00 + sys_corr_81: -8.36265233e-01 + sys_corr_82: 1.14341566e+00 + sys_corr_83: 5.45076567e+00 + sys_corr_84: 3.83629191e+00 + sys_corr_85: 3.73805224e+00 + sys_corr_86: -1.01665989e+01 + sys_corr_87: -5.33432811e+00 + sys_corr_88: -9.89013165e+00 + sys_corr_89: 6.31341773e-01 + sys_corr_90: 2.44154505e-01 + sys_corr_91: -1.60976453e+00 + sys_corr_92: -1.43991371e+00 + sys_corr_93: 1.74561248e-01 + sys_corr_94: 9.85784485e-01 + sys_corr_95: -1.54561344e+00 + sys_corr_96: -2.10127872e-01 + sys_corr_97: -4.34864889e-01 + sys_corr_98: -2.48330357e-01 + sys_corr_99: 3.28063355e-01 + sys_corr_100: 1.14621664e+00 + sys_corr_101: 2.87737462e+00 + sys_corr_102: 6.58837753e+00 + sys_corr_103: -1.66025266e+00 + sys_corr_104: -2.01448206e+00 + sys_corr_105: 1.37969039e+00 + sys_corr_106: 1.31123311e+00 + sys_corr_107: 8.74637843e-01 + sys_corr_108: 1.57138250e-02 + sys_corr_109: -1.92998840e-01 + sys_corr_110: 7.05320998e-01 + sys_corr_111: -3.12239089e-01 + sys_corr_112: 2.93529365e-02 + sys_corr_113: 6.02497058e-02 + sys_corr_114: -1.76990475e-03 + sys_corr_115: -3.02467921e-03 + sys_corr_116: -4.91343572e-02 + sys_corr_117: -3.25576874e-02 + sys_corr_118: 6.57449776e-02 + sys_corr_119: -4.04635026e-04 + sys_corr_120: 3.46504641e-02 + sys_corr_121: 1.47523920e-02 + sys_corr_122: 6.38521231e-02 + sys_corr_123: 3.33182773e-02 + sys_corr_124: -3.37682282e-02 + sys_corr_125: -4.79589505e-02 + sys_corr_126: 1.84694867e-02 + sys_corr_127: -1.20300938e-01 + sys_corr_128: -1.97512594e-01 + sys_corr_129: 7.96321741e-02 + sys_corr_130: 4.37601726e-03 + sys_corr_131: -3.57320346e-02 + sys_corr_132: -7.87090946e-02 stat: 0.0 - luminosity: 397.102684 -- sys_corr_1: 245.01893124658972 - sys_corr_2: 6.092170473760655 - sys_corr_3: 26.13823954658654 - sys_corr_4: 61.77949294018179 - sys_corr_5: 30.889685363657183 - sys_corr_6: -324.8958704776597 - sys_corr_7: 119.8613205110322 - sys_corr_8: 83.15455984630026 - sys_corr_9: 74.34897282113448 - sys_corr_10: 17.60390754572119 - sys_corr_11: 114.99407225625772 - sys_corr_12: 120.07615398900282 - sys_corr_13: -75.79238353354405 - sys_corr_14: 18.37545753687983 - sys_corr_15: 20.2308167830299 - sys_corr_16: 6.9981100717198546 - sys_corr_17: -24.353390956588996 - sys_corr_18: -41.451644021013756 - sys_corr_19: 38.875454473429116 - sys_corr_20: 26.714872074898516 - sys_corr_21: 8.86476024699685 - sys_corr_22: 303.7319572559187 - sys_corr_23: 29.361386714216813 - sys_corr_24: 87.68107491708334 - sys_corr_25: -34.49210027574547 - sys_corr_26: -105.33780316406008 - sys_corr_27: 60.51793738902621 - sys_corr_28: 65.84220129972057 - sys_corr_29: -69.45795888861174 - sys_corr_30: 54.12173180911064 - sys_corr_31: 45.85971229473034 - sys_corr_32: 10.52564057226758 - sys_corr_33: 14.200734764641748 - sys_corr_34: -11.379105810451586 - sys_corr_35: 1.7972561606081 - sys_corr_36: 23.595998468009515 - sys_corr_37: -4.9321160925085525 - sys_corr_38: -12.783156449915559 - sys_corr_39: 39.119145449453136 - sys_corr_40: -32.78660645430229 - sys_corr_41: 78.94451611943674 - sys_corr_42: 2.5184152151689627 - sys_corr_43: 1.1168817906426638 - sys_corr_44: 0.9827913944029021 - sys_corr_45: -14.111826754481651 - sys_corr_46: 31.507099502669544 - sys_corr_47: 23.149244634934128 - sys_corr_48: -74.41989023705945 - sys_corr_49: -28.81628050851433 - sys_corr_50: -40.09316682672836 - sys_corr_51: 129.6426893524004 - sys_corr_52: 17.542961323643564 - sys_corr_53: -6.07447032641299 - sys_corr_54: -114.45191497704938 - sys_corr_55: 16.130499960380355 - sys_corr_56: 136.3463405424942 - sys_corr_57: -27.012876746672344 - sys_corr_58: -13.436422286411405 - sys_corr_59: -9.394792767687298 - sys_corr_60: 23.220615362534303 - sys_corr_61: 21.521705495825927 - sys_corr_62: -2.7168208945675882 - sys_corr_63: -39.88218608992713 - sys_corr_64: -28.266634425091475 - sys_corr_65: -10.68462068300181 - sys_corr_66: -23.5786679162943 - sys_corr_67: 23.61200047344805 - sys_corr_68: -5.735940877323124 - sys_corr_69: 34.25085945460896 - sys_corr_70: 36.52423516391484 - sys_corr_71: -56.38287256109232 - sys_corr_72: -14.447587871395344 - sys_corr_73: -16.83090345796011 - sys_corr_74: -30.3268048126865 - sys_corr_75: -4.436170718456038 - sys_corr_76: -2.7420296534447846 - sys_corr_77: -8.971229390761007 - sys_corr_78: -1.582313840940328 - sys_corr_79: -1.876112540322679 - sys_corr_80: -0.5648943508975776 - sys_corr_81: -1.9727685320840622 - sys_corr_82: -2.9771241667977555 - sys_corr_83: 0.5618943046581577 - sys_corr_84: 0.5407263553771829 - sys_corr_85: 2.6435722758390146 - sys_corr_86: -10.971539070185468 - sys_corr_87: -7.5264407311760735 - sys_corr_88: -10.306520545629581 - sys_corr_89: -0.13505996088742864 - sys_corr_90: -1.2678979055126325 - sys_corr_91: -2.6373105381829838 - sys_corr_92: -3.9147390233174795 - sys_corr_93: 0.46689941266457313 - sys_corr_94: 1.3375994812007417 - sys_corr_95: -1.0038219859649493 - sys_corr_96: 0.0925330746808643 - sys_corr_97: -1.137344654521 - sys_corr_98: -0.438711159057556 - sys_corr_99: -0.6278162093945219 - sys_corr_100: -0.015337529037118823 - sys_corr_101: -0.18822566835210422 - sys_corr_102: -3.3453973318049024 - sys_corr_103: 0.2514413858654535 - sys_corr_104: 1.5144479200272436 - sys_corr_105: 0.09262971428103432 - sys_corr_106: -0.04139542930666691 - sys_corr_107: 0.058880816870334064 - sys_corr_108: -0.0805788933145646 - sys_corr_109: 0.1002665238663025 - sys_corr_110: -0.16761351774652458 - sys_corr_111: 0.12766522383817655 - sys_corr_112: 0.0388421321284328 - sys_corr_113: -0.014568961393422697 - sys_corr_114: 0.00020625470306847625 - sys_corr_115: 0.0038246566504664165 - sys_corr_116: -0.06777021965460663 - sys_corr_117: -0.03209895134703404 - sys_corr_118: 0.01445242002942977 - sys_corr_119: 0.005538903442607778 - sys_corr_120: 0.03867005922879386 - sys_corr_121: 0.00453463149175552 - sys_corr_122: 0.01848585636851792 - sys_corr_123: 0.011866353569568205 - sys_corr_124: -0.10767958532926354 - sys_corr_125: -0.033875437860809175 - sys_corr_126: 0.0033667974161007076 - sys_corr_127: 0.08971275779281403 - sys_corr_128: -0.010718943887006909 - sys_corr_129: -0.04464169152704624 - sys_corr_130: -0.009248928155005906 - sys_corr_131: -0.0324452979403943 - sys_corr_132: 0.03951838235690981 + luminosity: 3.97102684e+02 +- sys_corr_1: 2.45018931e+02 + sys_corr_2: 6.09217047e+00 + sys_corr_3: 2.61382395e+01 + sys_corr_4: 6.17794929e+01 + sys_corr_5: 3.08896854e+01 + sys_corr_6: -3.24895870e+02 + sys_corr_7: 1.19861321e+02 + sys_corr_8: 8.31545598e+01 + sys_corr_9: 7.43489728e+01 + sys_corr_10: 1.76039075e+01 + sys_corr_11: 1.14994072e+02 + sys_corr_12: 1.20076154e+02 + sys_corr_13: -7.57923835e+01 + sys_corr_14: 1.83754575e+01 + sys_corr_15: 2.02308168e+01 + sys_corr_16: 6.99811007e+00 + sys_corr_17: -2.43533910e+01 + sys_corr_18: -4.14516440e+01 + sys_corr_19: 3.88754545e+01 + sys_corr_20: 2.67148721e+01 + sys_corr_21: 8.86476025e+00 + sys_corr_22: 3.03731957e+02 + sys_corr_23: 2.93613867e+01 + sys_corr_24: 8.76810749e+01 + sys_corr_25: -3.44921003e+01 + sys_corr_26: -1.05337803e+02 + sys_corr_27: 6.05179374e+01 + sys_corr_28: 6.58422013e+01 + sys_corr_29: -6.94579589e+01 + sys_corr_30: 5.41217318e+01 + sys_corr_31: 4.58597123e+01 + sys_corr_32: 1.05256406e+01 + sys_corr_33: 1.42007348e+01 + sys_corr_34: -1.13791058e+01 + sys_corr_35: 1.79725616e+00 + sys_corr_36: 2.35959985e+01 + sys_corr_37: -4.93211609e+00 + sys_corr_38: -1.27831564e+01 + sys_corr_39: 3.91191454e+01 + sys_corr_40: -3.27866065e+01 + sys_corr_41: 7.89445161e+01 + sys_corr_42: 2.51841522e+00 + sys_corr_43: 1.11688179e+00 + sys_corr_44: 9.82791394e-01 + sys_corr_45: -1.41118268e+01 + sys_corr_46: 3.15070995e+01 + sys_corr_47: 2.31492446e+01 + sys_corr_48: -7.44198902e+01 + sys_corr_49: -2.88162805e+01 + sys_corr_50: -4.00931668e+01 + sys_corr_51: 1.29642689e+02 + sys_corr_52: 1.75429613e+01 + sys_corr_53: -6.07447033e+00 + sys_corr_54: -1.14451915e+02 + sys_corr_55: 1.61305000e+01 + sys_corr_56: 1.36346341e+02 + sys_corr_57: -2.70128767e+01 + sys_corr_58: -1.34364223e+01 + sys_corr_59: -9.39479277e+00 + sys_corr_60: 2.32206154e+01 + sys_corr_61: 2.15217055e+01 + sys_corr_62: -2.71682089e+00 + sys_corr_63: -3.98821861e+01 + sys_corr_64: -2.82666344e+01 + sys_corr_65: -1.06846207e+01 + sys_corr_66: -2.35786679e+01 + sys_corr_67: 2.36120005e+01 + sys_corr_68: -5.73594088e+00 + sys_corr_69: 3.42508595e+01 + sys_corr_70: 3.65242352e+01 + sys_corr_71: -5.63828726e+01 + sys_corr_72: -1.44475879e+01 + sys_corr_73: -1.68309035e+01 + sys_corr_74: -3.03268048e+01 + sys_corr_75: -4.43617072e+00 + sys_corr_76: -2.74202965e+00 + sys_corr_77: -8.97122939e+00 + sys_corr_78: -1.58231384e+00 + sys_corr_79: -1.87611254e+00 + sys_corr_80: -5.64894351e-01 + sys_corr_81: -1.97276853e+00 + sys_corr_82: -2.97712417e+00 + sys_corr_83: 5.61894305e-01 + sys_corr_84: 5.40726355e-01 + sys_corr_85: 2.64357228e+00 + sys_corr_86: -1.09715391e+01 + sys_corr_87: -7.52644073e+00 + sys_corr_88: -1.03065205e+01 + sys_corr_89: -1.35059961e-01 + sys_corr_90: -1.26789791e+00 + sys_corr_91: -2.63731054e+00 + sys_corr_92: -3.91473902e+00 + sys_corr_93: 4.66899413e-01 + sys_corr_94: 1.33759948e+00 + sys_corr_95: -1.00382199e+00 + sys_corr_96: 9.25330747e-02 + sys_corr_97: -1.13734465e+00 + sys_corr_98: -4.38711159e-01 + sys_corr_99: -6.27816209e-01 + sys_corr_100: -1.53375290e-02 + sys_corr_101: -1.88225668e-01 + sys_corr_102: -3.34539733e+00 + sys_corr_103: 2.51441386e-01 + sys_corr_104: 1.51444792e+00 + sys_corr_105: 9.26297143e-02 + sys_corr_106: -4.13954293e-02 + sys_corr_107: 5.88808169e-02 + sys_corr_108: -8.05788933e-02 + sys_corr_109: 1.00266524e-01 + sys_corr_110: -1.67613518e-01 + sys_corr_111: 1.27665224e-01 + sys_corr_112: 3.88421321e-02 + sys_corr_113: -1.45689614e-02 + sys_corr_114: 2.06254703e-04 + sys_corr_115: 3.82465665e-03 + sys_corr_116: -6.77702197e-02 + sys_corr_117: -3.20989513e-02 + sys_corr_118: 1.44524200e-02 + sys_corr_119: 5.53890344e-03 + sys_corr_120: 3.86700592e-02 + sys_corr_121: 4.53463149e-03 + sys_corr_122: 1.84858564e-02 + sys_corr_123: 1.18663536e-02 + sys_corr_124: -1.07679585e-01 + sys_corr_125: -3.38754379e-02 + sys_corr_126: 3.36679742e-03 + sys_corr_127: 8.97127578e-02 + sys_corr_128: -1.07189439e-02 + sys_corr_129: -4.46416915e-02 + sys_corr_130: -9.24892816e-03 + sys_corr_131: -3.24452979e-02 + sys_corr_132: 3.95183824e-02 stat: 0.0 - luminosity: 392.3269680000001 -- sys_corr_1: 227.12746934158278 - sys_corr_2: -0.7061747151454786 - sys_corr_3: 20.160489243677986 - sys_corr_4: 48.20968690893144 - sys_corr_5: -28.750798129667757 - sys_corr_6: -210.23573923688127 - sys_corr_7: 142.61889069669846 - sys_corr_8: 96.65137829795003 - sys_corr_9: 81.97785759459478 - sys_corr_10: 23.613625113230885 - sys_corr_11: 141.69699676653343 - sys_corr_12: 170.06537262136766 - sys_corr_13: -107.74066735916048 - sys_corr_14: 26.511669429616177 - sys_corr_15: 29.849422985147342 - sys_corr_16: 4.422413502920714 - sys_corr_17: -18.153278501281857 - sys_corr_18: -42.728692948755395 - sys_corr_19: 32.70953644884423 - sys_corr_20: 30.456492903405362 - sys_corr_21: 17.600940911534625 - sys_corr_22: 298.246880669145 - sys_corr_23: 27.33957100494519 - sys_corr_24: 35.43321264860386 - sys_corr_25: -23.016733441893628 - sys_corr_26: -70.89255690686109 - sys_corr_27: 43.91954748078081 - sys_corr_28: 34.72965580786226 - sys_corr_29: -46.45437043061863 - sys_corr_30: 73.39961862331255 - sys_corr_31: 6.962947015742101 - sys_corr_32: 1.186730845656581 - sys_corr_33: -0.6649207970379469 - sys_corr_34: -6.191600965911373 - sys_corr_35: -7.205039266071787 - sys_corr_36: -1.7979740614671604 - sys_corr_37: 14.25869979599144 - sys_corr_38: 4.702919703975259 - sys_corr_39: -12.076039976963905 - sys_corr_40: -54.082563155384285 - sys_corr_41: -18.497458609832044 - sys_corr_42: -2.08955089915787 - sys_corr_43: -27.74676442766164 - sys_corr_44: 34.15311973188999 - sys_corr_45: 42.340285291682385 - sys_corr_46: 44.40103242207374 - sys_corr_47: 12.401392376095986 - sys_corr_48: 9.271198306748765 - sys_corr_49: 26.20796204002079 - sys_corr_50: -1.216810255240874 - sys_corr_51: 42.90220535369381 - sys_corr_52: 70.30496033887997 - sys_corr_53: 20.17545454050628 - sys_corr_54: -5.911229702631117 - sys_corr_55: 53.42598590719876 - sys_corr_56: -183.7255820831533 - sys_corr_57: -29.367210813747413 - sys_corr_58: -1.047432433867077 - sys_corr_59: 101.03703673247406 - sys_corr_60: -5.888318892642601 - sys_corr_61: -2.8869892033042848 - sys_corr_62: 2.7023256221807825 - sys_corr_63: 60.34360971852127 - sys_corr_64: -2.0175773043887015 - sys_corr_65: 1.9022589649460695 - sys_corr_66: -57.985387201209754 - sys_corr_67: 18.293579970425952 - sys_corr_68: 50.92573048186625 - sys_corr_69: 6.700989369236322 - sys_corr_70: 23.665792344474994 - sys_corr_71: -60.456861918169785 - sys_corr_72: 1.3091581136420172 - sys_corr_73: -0.7680746744008193 - sys_corr_74: -1.0648112464545694 - sys_corr_75: -4.181825131534435 - sys_corr_76: -4.095769800554393 - sys_corr_77: -1.547034948145887 - sys_corr_78: -1.9492858810488773 - sys_corr_79: -7.712097093995901 - sys_corr_80: -2.776787742210206 - sys_corr_81: -2.7528150548659696 - sys_corr_82: 1.0104080518614433 - sys_corr_83: 2.3868243606681983 - sys_corr_84: 2.1634022589452053 - sys_corr_85: 1.1481815483170217 - sys_corr_86: -9.488500080394367 - sys_corr_87: 1.3552429251531641 - sys_corr_88: -4.373368800369625 - sys_corr_89: 0.875781605699105 - sys_corr_90: -0.38059777943608625 - sys_corr_91: -1.6557950888018476 - sys_corr_92: -0.01659138463384557 - sys_corr_93: 0.1776672313689026 - sys_corr_94: 0.33977581996409006 - sys_corr_95: -0.445793553435662 - sys_corr_96: 0.04277995461876467 - sys_corr_97: -1.1064010008762704 - sys_corr_98: -0.05153267997999638 - sys_corr_99: -0.27604621283993147 - sys_corr_100: 0.31527096510447605 - sys_corr_101: 0.758748035972313 - sys_corr_102: 0.6875615103851104 - sys_corr_103: -0.6373256922239686 - sys_corr_104: -0.041114242983714626 - sys_corr_105: 0.6799355495896494 - sys_corr_106: 0.4453289574257682 - sys_corr_107: 0.617801746500073 - sys_corr_108: -0.1928615574552408 - sys_corr_109: -0.1109947075891977 - sys_corr_110: -0.24498802441471781 - sys_corr_111: -0.1734864597104115 - sys_corr_112: -0.03301378924442009 - sys_corr_113: -0.0645203775078792 - sys_corr_114: -0.0008235612460442504 - sys_corr_115: -0.09343274108788001 - sys_corr_116: -0.008830842686418011 - sys_corr_117: -0.01621096423564528 - sys_corr_118: -0.10406095236969481 - sys_corr_119: -0.00912952566484034 - sys_corr_120: 0.01968099563092255 - sys_corr_121: 0.0055694156459513925 - sys_corr_122: 0.0159931435208052 - sys_corr_123: 0.007089962636894603 - sys_corr_124: -0.030177127835800642 - sys_corr_125: -0.006916589673350117 - sys_corr_126: -0.0074031429846025685 - sys_corr_127: 0.027846229337444572 - sys_corr_128: -0.13523476913784074 - sys_corr_129: 0.10925689373199741 - sys_corr_130: 0.0001962307552136757 - sys_corr_131: -0.004749610678710995 - sys_corr_132: -0.008657354637688125 + luminosity: 3.92326968e+02 +- sys_corr_1: 2.27127469e+02 + sys_corr_2: -7.06174715e-01 + sys_corr_3: 2.01604892e+01 + sys_corr_4: 4.82096869e+01 + sys_corr_5: -2.87507981e+01 + sys_corr_6: -2.10235739e+02 + sys_corr_7: 1.42618891e+02 + sys_corr_8: 9.66513783e+01 + sys_corr_9: 8.19778576e+01 + sys_corr_10: 2.36136251e+01 + sys_corr_11: 1.41696997e+02 + sys_corr_12: 1.70065373e+02 + sys_corr_13: -1.07740667e+02 + sys_corr_14: 2.65116694e+01 + sys_corr_15: 2.98494230e+01 + sys_corr_16: 4.42241350e+00 + sys_corr_17: -1.81532785e+01 + sys_corr_18: -4.27286929e+01 + sys_corr_19: 3.27095364e+01 + sys_corr_20: 3.04564929e+01 + sys_corr_21: 1.76009409e+01 + sys_corr_22: 2.98246881e+02 + sys_corr_23: 2.73395710e+01 + sys_corr_24: 3.54332126e+01 + sys_corr_25: -2.30167334e+01 + sys_corr_26: -7.08925569e+01 + sys_corr_27: 4.39195475e+01 + sys_corr_28: 3.47296558e+01 + sys_corr_29: -4.64543704e+01 + sys_corr_30: 7.33996186e+01 + sys_corr_31: 6.96294702e+00 + sys_corr_32: 1.18673085e+00 + sys_corr_33: -6.64920797e-01 + sys_corr_34: -6.19160097e+00 + sys_corr_35: -7.20503927e+00 + sys_corr_36: -1.79797406e+00 + sys_corr_37: 1.42586998e+01 + sys_corr_38: 4.70291970e+00 + sys_corr_39: -1.20760400e+01 + sys_corr_40: -5.40825632e+01 + sys_corr_41: -1.84974586e+01 + sys_corr_42: -2.08955090e+00 + sys_corr_43: -2.77467644e+01 + sys_corr_44: 3.41531197e+01 + sys_corr_45: 4.23402853e+01 + sys_corr_46: 4.44010324e+01 + sys_corr_47: 1.24013924e+01 + sys_corr_48: 9.27119831e+00 + sys_corr_49: 2.62079620e+01 + sys_corr_50: -1.21681026e+00 + sys_corr_51: 4.29022054e+01 + sys_corr_52: 7.03049603e+01 + sys_corr_53: 2.01754545e+01 + sys_corr_54: -5.91122970e+00 + sys_corr_55: 5.34259859e+01 + sys_corr_56: -1.83725582e+02 + sys_corr_57: -2.93672108e+01 + sys_corr_58: -1.04743243e+00 + sys_corr_59: 1.01037037e+02 + sys_corr_60: -5.88831889e+00 + sys_corr_61: -2.88698920e+00 + sys_corr_62: 2.70232562e+00 + sys_corr_63: 6.03436097e+01 + sys_corr_64: -2.01757730e+00 + sys_corr_65: 1.90225896e+00 + sys_corr_66: -5.79853872e+01 + sys_corr_67: 1.82935800e+01 + sys_corr_68: 5.09257305e+01 + sys_corr_69: 6.70098937e+00 + sys_corr_70: 2.36657923e+01 + sys_corr_71: -6.04568619e+01 + sys_corr_72: 1.30915811e+00 + sys_corr_73: -7.68074674e-01 + sys_corr_74: -1.06481125e+00 + sys_corr_75: -4.18182513e+00 + sys_corr_76: -4.09576980e+00 + sys_corr_77: -1.54703495e+00 + sys_corr_78: -1.94928588e+00 + sys_corr_79: -7.71209709e+00 + sys_corr_80: -2.77678774e+00 + sys_corr_81: -2.75281505e+00 + sys_corr_82: 1.01040805e+00 + sys_corr_83: 2.38682436e+00 + sys_corr_84: 2.16340226e+00 + sys_corr_85: 1.14818155e+00 + sys_corr_86: -9.48850008e+00 + sys_corr_87: 1.35524293e+00 + sys_corr_88: -4.37336880e+00 + sys_corr_89: 8.75781606e-01 + sys_corr_90: -3.80597779e-01 + sys_corr_91: -1.65579509e+00 + sys_corr_92: -1.65913846e-02 + sys_corr_93: 1.77667231e-01 + sys_corr_94: 3.39775820e-01 + sys_corr_95: -4.45793553e-01 + sys_corr_96: 4.27799546e-02 + sys_corr_97: -1.10640100e+00 + sys_corr_98: -5.15326800e-02 + sys_corr_99: -2.76046213e-01 + sys_corr_100: 3.15270965e-01 + sys_corr_101: 7.58748036e-01 + sys_corr_102: 6.87561510e-01 + sys_corr_103: -6.37325692e-01 + sys_corr_104: -4.11142430e-02 + sys_corr_105: 6.79935550e-01 + sys_corr_106: 4.45328957e-01 + sys_corr_107: 6.17801747e-01 + sys_corr_108: -1.92861557e-01 + sys_corr_109: -1.10994708e-01 + sys_corr_110: -2.44988024e-01 + sys_corr_111: -1.73486460e-01 + sys_corr_112: -3.30137892e-02 + sys_corr_113: -6.45203775e-02 + sys_corr_114: -8.23561246e-04 + sys_corr_115: -9.34327411e-02 + sys_corr_116: -8.83084269e-03 + sys_corr_117: -1.62109642e-02 + sys_corr_118: -1.04060952e-01 + sys_corr_119: -9.12952566e-03 + sys_corr_120: 1.96809956e-02 + sys_corr_121: 5.56941565e-03 + sys_corr_122: 1.59931435e-02 + sys_corr_123: 7.08996264e-03 + sys_corr_124: -3.01771278e-02 + sys_corr_125: -6.91658967e-03 + sys_corr_126: -7.40314298e-03 + sys_corr_127: 2.78462293e-02 + sys_corr_128: -1.35234769e-01 + sys_corr_129: 1.09256894e-01 + sys_corr_130: 1.96230755e-04 + sys_corr_131: -4.74961068e-03 + sys_corr_132: -8.65735464e-03 stat: 0.0 - luminosity: 385.64999 -- sys_corr_1: 209.84053783200343 - sys_corr_2: -20.731043471424634 - sys_corr_3: 5.296855573062888 - sys_corr_4: 38.85563823070131 - sys_corr_5: -69.2177155825561 - sys_corr_6: -152.80090918565818 - sys_corr_7: 157.6051012615839 - sys_corr_8: 103.58003258443328 - sys_corr_9: 98.42047138163457 - sys_corr_10: 27.349530114381114 - sys_corr_11: 165.71381319173864 - sys_corr_12: 209.6774496136938 - sys_corr_13: -131.3855768614043 - sys_corr_14: 37.91399798559328 - sys_corr_15: 35.358583397153104 - sys_corr_16: 0.7216372639479215 - sys_corr_17: -11.742752026795086 - sys_corr_18: -42.06415743931516 - sys_corr_19: 22.447224071454084 - sys_corr_20: 24.430320936832914 - sys_corr_21: 20.5861017193258 - sys_corr_22: 275.96438577674996 - sys_corr_23: 33.49351905872025 - sys_corr_24: -5.569329307555422 - sys_corr_25: -12.754266836918115 - sys_corr_26: -40.8177179959519 - sys_corr_27: 21.461652021500836 - sys_corr_28: 23.60960891329268 - sys_corr_29: -36.74357857798639 - sys_corr_30: 93.76724833811014 - sys_corr_31: -0.6906667985860914 - sys_corr_32: 17.400400062519562 - sys_corr_33: -20.170785251973914 - sys_corr_34: -25.18647933935737 - sys_corr_35: -10.228051773424513 - sys_corr_36: -10.721222595175847 - sys_corr_37: -4.514878939099469 - sys_corr_38: 10.490176132777481 - sys_corr_39: -25.091271798755795 - sys_corr_40: 28.020133956349877 - sys_corr_41: -48.695777387264165 - sys_corr_42: -27.012135067503515 - sys_corr_43: -6.984134232540114 - sys_corr_44: 6.644725375226414 - sys_corr_45: -12.38559673456883 - sys_corr_46: -24.01710531038556 - sys_corr_47: -31.374271619203494 - sys_corr_48: 45.57518392477475 - sys_corr_49: -16.22846821695083 - sys_corr_50: 2.9059703683216442 - sys_corr_51: -63.229864313675144 - sys_corr_52: 12.044425613621126 - sys_corr_53: 60.90346446143447 - sys_corr_54: -0.1779104724129863 - sys_corr_55: -18.38991485225385 - sys_corr_56: 6.565403853248625 - sys_corr_57: -62.82767549291464 - sys_corr_58: -15.444341604226487 - sys_corr_59: -8.05439404127 - sys_corr_60: 12.967307671682894 - sys_corr_61: 111.01156335971466 - sys_corr_62: 71.50147183832352 - sys_corr_63: -22.245937746938914 - sys_corr_64: -43.29855902891194 - sys_corr_65: -138.974931915023 - sys_corr_66: 34.592204412179335 - sys_corr_67: 60.2701299810238 - sys_corr_68: 14.693663842379106 - sys_corr_69: -13.755312185751743 - sys_corr_70: -43.883268128916015 - sys_corr_71: 68.57464273199236 - sys_corr_72: -1.8065126569672387 - sys_corr_73: -8.38626218982531 - sys_corr_74: -1.4050436577474505 - sys_corr_75: 4.096965697883375 - sys_corr_76: 11.103786246031438 - sys_corr_77: -1.3323806108738734 - sys_corr_78: -0.10283070402353353 - sys_corr_79: -3.3475686064128642 - sys_corr_80: 4.598654661751306 - sys_corr_81: 6.057485961735344 - sys_corr_82: -0.5042210855126789 - sys_corr_83: 2.484544172826312 - sys_corr_84: -3.1135108747182443 - sys_corr_85: -0.1536953199260789 - sys_corr_86: 15.46231848257863 - sys_corr_87: -4.279690818058744 - sys_corr_88: 10.325746076913475 - sys_corr_89: 0.5285228592147724 - sys_corr_90: 0.5696196681045412 - sys_corr_91: 0.49834230462411033 - sys_corr_92: -8.919784244285667 - sys_corr_93: 0.3402532875381477 - sys_corr_94: 1.2009056964515057 - sys_corr_95: -0.27227037299470397 - sys_corr_96: 0.15802431418675608 - sys_corr_97: -0.8687492068358449 - sys_corr_98: -0.16669342573113635 - sys_corr_99: -0.468345724684099 - sys_corr_100: -0.07620383627367219 - sys_corr_101: -0.021514956052444998 - sys_corr_102: -0.1622909555747517 - sys_corr_103: -0.05580819027790407 - sys_corr_104: 0.34984328456580477 - sys_corr_105: 0.09010435608695792 - sys_corr_106: -0.06579856404579852 - sys_corr_107: 0.1098381639919531 - sys_corr_108: -0.00314052557474588 - sys_corr_109: 0.050906318045015456 - sys_corr_110: -0.20003921708980163 - sys_corr_111: -0.016738590260648074 - sys_corr_112: 0.055055479945966684 - sys_corr_113: -0.04245994051677413 - sys_corr_114: 3.4883003808706796e-07 - sys_corr_115: -0.04571959668048201 - sys_corr_116: 0.04468909155645333 - sys_corr_117: 0.037050724041509484 - sys_corr_118: -0.04418025944247301 - sys_corr_119: 0.0020189195685137913 - sys_corr_120: -0.023739832428749993 - sys_corr_121: -0.0024875801441921726 - sys_corr_122: -0.021271745023596078 - sys_corr_123: -0.007525980796814738 - sys_corr_124: 0.041639806708527675 - sys_corr_125: 0.027237190277835017 - sys_corr_126: 0.006403279280814268 - sys_corr_127: -0.16954448691395585 - sys_corr_128: -0.01635803468192775 - sys_corr_129: -0.06556943807637897 - sys_corr_130: 0.003823913253256226 - sys_corr_131: 0.014505923793786388 - sys_corr_132: -0.015336296092699854 + luminosity: 3.85649990e+02 +- sys_corr_1: 2.09840538e+02 + sys_corr_2: -2.07310435e+01 + sys_corr_3: 5.29685557e+00 + sys_corr_4: 3.88556382e+01 + sys_corr_5: -6.92177156e+01 + sys_corr_6: -1.52800909e+02 + sys_corr_7: 1.57605101e+02 + sys_corr_8: 1.03580033e+02 + sys_corr_9: 9.84204714e+01 + sys_corr_10: 2.73495301e+01 + sys_corr_11: 1.65713813e+02 + sys_corr_12: 2.09677450e+02 + sys_corr_13: -1.31385577e+02 + sys_corr_14: 3.79139980e+01 + sys_corr_15: 3.53585834e+01 + sys_corr_16: 7.21637264e-01 + sys_corr_17: -1.17427520e+01 + sys_corr_18: -4.20641574e+01 + sys_corr_19: 2.24472241e+01 + sys_corr_20: 2.44303209e+01 + sys_corr_21: 2.05861017e+01 + sys_corr_22: 2.75964386e+02 + sys_corr_23: 3.34935191e+01 + sys_corr_24: -5.56932931e+00 + sys_corr_25: -1.27542668e+01 + sys_corr_26: -4.08177180e+01 + sys_corr_27: 2.14616520e+01 + sys_corr_28: 2.36096089e+01 + sys_corr_29: -3.67435786e+01 + sys_corr_30: 9.37672483e+01 + sys_corr_31: -6.90666799e-01 + sys_corr_32: 1.74004001e+01 + sys_corr_33: -2.01707853e+01 + sys_corr_34: -2.51864793e+01 + sys_corr_35: -1.02280518e+01 + sys_corr_36: -1.07212226e+01 + sys_corr_37: -4.51487894e+00 + sys_corr_38: 1.04901761e+01 + sys_corr_39: -2.50912718e+01 + sys_corr_40: 2.80201340e+01 + sys_corr_41: -4.86957774e+01 + sys_corr_42: -2.70121351e+01 + sys_corr_43: -6.98413423e+00 + sys_corr_44: 6.64472538e+00 + sys_corr_45: -1.23855967e+01 + sys_corr_46: -2.40171053e+01 + sys_corr_47: -3.13742716e+01 + sys_corr_48: 4.55751839e+01 + sys_corr_49: -1.62284682e+01 + sys_corr_50: 2.90597037e+00 + sys_corr_51: -6.32298643e+01 + sys_corr_52: 1.20444256e+01 + sys_corr_53: 6.09034645e+01 + sys_corr_54: -1.77910472e-01 + sys_corr_55: -1.83899149e+01 + sys_corr_56: 6.56540385e+00 + sys_corr_57: -6.28276755e+01 + sys_corr_58: -1.54443416e+01 + sys_corr_59: -8.05439404e+00 + sys_corr_60: 1.29673077e+01 + sys_corr_61: 1.11011563e+02 + sys_corr_62: 7.15014718e+01 + sys_corr_63: -2.22459377e+01 + sys_corr_64: -4.32985590e+01 + sys_corr_65: -1.38974932e+02 + sys_corr_66: 3.45922044e+01 + sys_corr_67: 6.02701300e+01 + sys_corr_68: 1.46936638e+01 + sys_corr_69: -1.37553122e+01 + sys_corr_70: -4.38832681e+01 + sys_corr_71: 6.85746427e+01 + sys_corr_72: -1.80651266e+00 + sys_corr_73: -8.38626219e+00 + sys_corr_74: -1.40504366e+00 + sys_corr_75: 4.09696570e+00 + sys_corr_76: 1.11037862e+01 + sys_corr_77: -1.33238061e+00 + sys_corr_78: -1.02830704e-01 + sys_corr_79: -3.34756861e+00 + sys_corr_80: 4.59865466e+00 + sys_corr_81: 6.05748596e+00 + sys_corr_82: -5.04221086e-01 + sys_corr_83: 2.48454417e+00 + sys_corr_84: -3.11351087e+00 + sys_corr_85: -1.53695320e-01 + sys_corr_86: 1.54623185e+01 + sys_corr_87: -4.27969082e+00 + sys_corr_88: 1.03257461e+01 + sys_corr_89: 5.28522859e-01 + sys_corr_90: 5.69619668e-01 + sys_corr_91: 4.98342305e-01 + sys_corr_92: -8.91978424e+00 + sys_corr_93: 3.40253288e-01 + sys_corr_94: 1.20090570e+00 + sys_corr_95: -2.72270373e-01 + sys_corr_96: 1.58024314e-01 + sys_corr_97: -8.68749207e-01 + sys_corr_98: -1.66693426e-01 + sys_corr_99: -4.68345725e-01 + sys_corr_100: -7.62038363e-02 + sys_corr_101: -2.15149561e-02 + sys_corr_102: -1.62290956e-01 + sys_corr_103: -5.58081903e-02 + sys_corr_104: 3.49843285e-01 + sys_corr_105: 9.01043561e-02 + sys_corr_106: -6.57985640e-02 + sys_corr_107: 1.09838164e-01 + sys_corr_108: -3.14052557e-03 + sys_corr_109: 5.09063180e-02 + sys_corr_110: -2.00039217e-01 + sys_corr_111: -1.67385903e-02 + sys_corr_112: 5.50554799e-02 + sys_corr_113: -4.24599405e-02 + sys_corr_114: 3.48830038e-07 + sys_corr_115: -4.57195967e-02 + sys_corr_116: 4.46890916e-02 + sys_corr_117: 3.70507240e-02 + sys_corr_118: -4.41802594e-02 + sys_corr_119: 2.01891957e-03 + sys_corr_120: -2.37398324e-02 + sys_corr_121: -2.48758014e-03 + sys_corr_122: -2.12717450e-02 + sys_corr_123: -7.52598080e-03 + sys_corr_124: 4.16398067e-02 + sys_corr_125: 2.72371903e-02 + sys_corr_126: 6.40327928e-03 + sys_corr_127: -1.69544487e-01 + sys_corr_128: -1.63580347e-02 + sys_corr_129: -6.55694381e-02 + sys_corr_130: 3.82391325e-03 + sys_corr_131: 1.45059238e-02 + sys_corr_132: -1.53362961e-02 stat: 0.0 - luminosity: 384.18327200000004 -- sys_corr_1: 188.53455415718554 - sys_corr_2: -25.357550219987964 - sys_corr_3: -6.051314036518847 - sys_corr_4: 18.81816921595449 - sys_corr_5: -98.56974956375605 - sys_corr_6: -96.09657422215764 - sys_corr_7: 182.50401872921285 - sys_corr_8: 120.69607368198865 - sys_corr_9: 116.52384878368919 - sys_corr_10: 27.308009473521388 - sys_corr_11: 186.54724155248 - sys_corr_12: 244.45593983057788 - sys_corr_13: -150.4352502119485 - sys_corr_14: 42.86541115446822 - sys_corr_15: 42.54030660452174 - sys_corr_16: 1.4701218173942179 - sys_corr_17: -2.013273351331133 - sys_corr_18: -46.92466370111598 - sys_corr_19: 24.70200537344492 - sys_corr_20: 27.09635968941455 - sys_corr_21: 21.10343899081182 - sys_corr_22: 253.2801624753206 - sys_corr_23: 36.50304522363836 - sys_corr_24: -25.46464165948119 - sys_corr_25: -1.1883694384783876 - sys_corr_26: -14.178502907308665 - sys_corr_27: 8.6224414728992 - sys_corr_28: 24.230807832312284 - sys_corr_29: -39.791575879386926 - sys_corr_30: 85.06689269097927 - sys_corr_31: -1.3460157709732927 - sys_corr_32: -0.055974541934828016 - sys_corr_33: -11.758973817806462 - sys_corr_34: -15.264480277184347 - sys_corr_35: 11.45445657384381 - sys_corr_36: -2.641997675865427 - sys_corr_37: 15.391379608404174 - sys_corr_38: -0.6077307964941906 - sys_corr_39: -7.635303551022884 - sys_corr_40: 24.192712306906103 - sys_corr_41: -11.02003478836292 - sys_corr_42: -12.263077083424038 - sys_corr_43: -2.39009286893686 - sys_corr_44: 19.762148998915936 - sys_corr_45: -21.072894473025244 - sys_corr_46: 5.106256039296538 - sys_corr_47: -1.672140850388574 - sys_corr_48: 50.17378830234404 - sys_corr_49: -23.521052187821716 - sys_corr_50: 15.65896731464397 - sys_corr_51: -44.853232814470324 - sys_corr_52: 2.9193178343922925 - sys_corr_53: 31.310325413976535 - sys_corr_54: 8.696532371072992 - sys_corr_55: -11.19463754721966 - sys_corr_56: 60.41681628140022 - sys_corr_57: -36.04660803763189 - sys_corr_58: -24.931126664912714 - sys_corr_59: 19.88991924807273 - sys_corr_60: 41.40989987988637 - sys_corr_61: 34.01062253568499 - sys_corr_62: -156.65732698751086 - sys_corr_63: 75.04702094409126 - sys_corr_64: -13.320906488494877 - sys_corr_65: 58.3244706435553 - sys_corr_66: -4.246687738811994 - sys_corr_67: -115.60371518879154 - sys_corr_68: 6.277309460482466 - sys_corr_69: -39.6477257543892 - sys_corr_70: 22.199804609790505 - sys_corr_71: 48.45846051902604 - sys_corr_72: -1.4006705842389293 - sys_corr_73: -19.58080694733217 - sys_corr_74: 27.54221231367439 - sys_corr_75: 8.356428416049814 - sys_corr_76: 16.64577555054221 - sys_corr_77: 5.755252056627729 - sys_corr_78: -0.48244488266945906 - sys_corr_79: 7.429030165773367 - sys_corr_80: 5.13044961680409 - sys_corr_81: -5.2157070910468715 - sys_corr_82: -5.340112110892298 - sys_corr_83: 0.4920898393043678 - sys_corr_84: 1.7872124298672034 - sys_corr_85: -6.959199905868466 - sys_corr_86: 3.340921811237986 - sys_corr_87: -17.517823857751758 - sys_corr_88: 6.223631840301879 - sys_corr_89: -0.024254499264395636 - sys_corr_90: 2.500352867360306 - sys_corr_91: -2.2322606635377644 - sys_corr_92: -6.958176118937084 - sys_corr_93: 0.11368166360001204 - sys_corr_94: -0.0305249621859948 - sys_corr_95: 1.2973089874565247 - sys_corr_96: 0.3254101900163522 - sys_corr_97: -0.9495982146308662 - sys_corr_98: -0.2029282895443114 - sys_corr_99: -0.49459697878725656 - sys_corr_100: -0.6280515686132562 - sys_corr_101: -0.8924994124513048 - sys_corr_102: -2.9517337440982803 - sys_corr_103: 0.745645505607985 - sys_corr_104: 0.9037336348624703 - sys_corr_105: -0.7746342086118179 - sys_corr_106: -0.564645068168302 - sys_corr_107: -0.4111149738495512 - sys_corr_108: 0.04945812493387726 - sys_corr_109: -0.14047840002273093 - sys_corr_110: -0.3821715030150686 - sys_corr_111: 0.4456126503294184 - sys_corr_112: -0.05496131184229582 - sys_corr_113: 0.06975772856292417 - sys_corr_114: -0.0007921595791641888 - sys_corr_115: -0.1372474980614623 - sys_corr_116: 0.08586984064250104 - sys_corr_117: 0.0462799285471845 - sys_corr_118: -0.1324205537306957 - sys_corr_119: -0.004563922131821052 - sys_corr_120: -0.05022449243315219 - sys_corr_121: -0.012555743971542237 - sys_corr_122: -0.08987566343095045 - sys_corr_123: -0.04902288837985231 - sys_corr_124: 0.06441903224555587 - sys_corr_125: 0.06688664353559479 - sys_corr_126: -0.012553062034030399 - sys_corr_127: 0.21367754721896146 - sys_corr_128: -0.06695802316705385 - sys_corr_129: -0.04409633923873167 - sys_corr_130: 0.01220657654827731 - sys_corr_131: 0.051344814924236315 - sys_corr_132: -0.08326282257270537 + luminosity: 3.84183272e+02 +- sys_corr_1: 1.88534554e+02 + sys_corr_2: -2.53575502e+01 + sys_corr_3: -6.05131404e+00 + sys_corr_4: 1.88181692e+01 + sys_corr_5: -9.85697496e+01 + sys_corr_6: -9.60965742e+01 + sys_corr_7: 1.82504019e+02 + sys_corr_8: 1.20696074e+02 + sys_corr_9: 1.16523849e+02 + sys_corr_10: 2.73080095e+01 + sys_corr_11: 1.86547242e+02 + sys_corr_12: 2.44455940e+02 + sys_corr_13: -1.50435250e+02 + sys_corr_14: 4.28654112e+01 + sys_corr_15: 4.25403066e+01 + sys_corr_16: 1.47012182e+00 + sys_corr_17: -2.01327335e+00 + sys_corr_18: -4.69246637e+01 + sys_corr_19: 2.47020054e+01 + sys_corr_20: 2.70963597e+01 + sys_corr_21: 2.11034390e+01 + sys_corr_22: 2.53280162e+02 + sys_corr_23: 3.65030452e+01 + sys_corr_24: -2.54646417e+01 + sys_corr_25: -1.18836944e+00 + sys_corr_26: -1.41785029e+01 + sys_corr_27: 8.62244147e+00 + sys_corr_28: 2.42308078e+01 + sys_corr_29: -3.97915759e+01 + sys_corr_30: 8.50668927e+01 + sys_corr_31: -1.34601577e+00 + sys_corr_32: -5.59745419e-02 + sys_corr_33: -1.17589738e+01 + sys_corr_34: -1.52644803e+01 + sys_corr_35: 1.14544566e+01 + sys_corr_36: -2.64199768e+00 + sys_corr_37: 1.53913796e+01 + sys_corr_38: -6.07730796e-01 + sys_corr_39: -7.63530355e+00 + sys_corr_40: 2.41927123e+01 + sys_corr_41: -1.10200348e+01 + sys_corr_42: -1.22630771e+01 + sys_corr_43: -2.39009287e+00 + sys_corr_44: 1.97621490e+01 + sys_corr_45: -2.10728945e+01 + sys_corr_46: 5.10625604e+00 + sys_corr_47: -1.67214085e+00 + sys_corr_48: 5.01737883e+01 + sys_corr_49: -2.35210522e+01 + sys_corr_50: 1.56589673e+01 + sys_corr_51: -4.48532328e+01 + sys_corr_52: 2.91931783e+00 + sys_corr_53: 3.13103254e+01 + sys_corr_54: 8.69653237e+00 + sys_corr_55: -1.11946375e+01 + sys_corr_56: 6.04168163e+01 + sys_corr_57: -3.60466080e+01 + sys_corr_58: -2.49311267e+01 + sys_corr_59: 1.98899192e+01 + sys_corr_60: 4.14098999e+01 + sys_corr_61: 3.40106225e+01 + sys_corr_62: -1.56657327e+02 + sys_corr_63: 7.50470209e+01 + sys_corr_64: -1.33209065e+01 + sys_corr_65: 5.83244706e+01 + sys_corr_66: -4.24668774e+00 + sys_corr_67: -1.15603715e+02 + sys_corr_68: 6.27730946e+00 + sys_corr_69: -3.96477258e+01 + sys_corr_70: 2.21998046e+01 + sys_corr_71: 4.84584605e+01 + sys_corr_72: -1.40067058e+00 + sys_corr_73: -1.95808069e+01 + sys_corr_74: 2.75422123e+01 + sys_corr_75: 8.35642842e+00 + sys_corr_76: 1.66457756e+01 + sys_corr_77: 5.75525206e+00 + sys_corr_78: -4.82444883e-01 + sys_corr_79: 7.42903017e+00 + sys_corr_80: 5.13044962e+00 + sys_corr_81: -5.21570709e+00 + sys_corr_82: -5.34011211e+00 + sys_corr_83: 4.92089839e-01 + sys_corr_84: 1.78721243e+00 + sys_corr_85: -6.95919991e+00 + sys_corr_86: 3.34092181e+00 + sys_corr_87: -1.75178239e+01 + sys_corr_88: 6.22363184e+00 + sys_corr_89: -2.42544993e-02 + sys_corr_90: 2.50035287e+00 + sys_corr_91: -2.23226066e+00 + sys_corr_92: -6.95817612e+00 + sys_corr_93: 1.13681664e-01 + sys_corr_94: -3.05249622e-02 + sys_corr_95: 1.29730899e+00 + sys_corr_96: 3.25410190e-01 + sys_corr_97: -9.49598215e-01 + sys_corr_98: -2.02928290e-01 + sys_corr_99: -4.94596979e-01 + sys_corr_100: -6.28051569e-01 + sys_corr_101: -8.92499412e-01 + sys_corr_102: -2.95173374e+00 + sys_corr_103: 7.45645506e-01 + sys_corr_104: 9.03733635e-01 + sys_corr_105: -7.74634209e-01 + sys_corr_106: -5.64645068e-01 + sys_corr_107: -4.11114974e-01 + sys_corr_108: 4.94581249e-02 + sys_corr_109: -1.40478400e-01 + sys_corr_110: -3.82171503e-01 + sys_corr_111: 4.45612650e-01 + sys_corr_112: -5.49613118e-02 + sys_corr_113: 6.97577286e-02 + sys_corr_114: -7.92159579e-04 + sys_corr_115: -1.37247498e-01 + sys_corr_116: 8.58698406e-02 + sys_corr_117: 4.62799285e-02 + sys_corr_118: -1.32420554e-01 + sys_corr_119: -4.56392213e-03 + sys_corr_120: -5.02244924e-02 + sys_corr_121: -1.25557440e-02 + sys_corr_122: -8.98756634e-02 + sys_corr_123: -4.90228884e-02 + sys_corr_124: 6.44190322e-02 + sys_corr_125: 6.68866435e-02 + sys_corr_126: -1.25530620e-02 + sys_corr_127: 2.13677547e-01 + sys_corr_128: -6.69580232e-02 + sys_corr_129: -4.40963392e-02 + sys_corr_130: 1.22065765e-02 + sys_corr_131: 5.13448149e-02 + sys_corr_132: -8.32628226e-02 stat: 0.0 - luminosity: 371.96557200000007 -- sys_corr_1: 179.8295009785796 - sys_corr_2: -38.08290094596982 - sys_corr_3: -14.92395478298033 - sys_corr_4: 0.23299049853344844 - sys_corr_5: -121.69088205369052 - sys_corr_6: -86.52737870411583 - sys_corr_7: 218.79510692885947 - sys_corr_8: 142.88103319829426 - sys_corr_9: 150.28455467450337 - sys_corr_10: 32.10633751105968 - sys_corr_11: 230.34097520477252 - sys_corr_12: 320.45842669301726 - sys_corr_13: -197.32003342863246 - sys_corr_14: 59.74793306830882 - sys_corr_15: 54.70859493961034 - sys_corr_16: -11.195778267966315 - sys_corr_17: 8.991685192465726 - sys_corr_18: -42.79478329800057 - sys_corr_19: 11.078799280675412 - sys_corr_20: 28.91255171853244 - sys_corr_21: 24.970122960747457 - sys_corr_22: 230.4461599350809 - sys_corr_23: 34.712106571071054 - sys_corr_24: -97.08399153588104 - sys_corr_25: -6.498328196456575 - sys_corr_26: -16.103456005946516 - sys_corr_27: -15.547410785758542 - sys_corr_28: 25.476252037961288 - sys_corr_29: -25.216116260694363 - sys_corr_30: 68.47279151097817 - sys_corr_31: -41.406806822783 - sys_corr_32: 1.9721120368181178 - sys_corr_33: -7.25299162976591 - sys_corr_34: -8.931099298299632 - sys_corr_35: -18.004427071964304 - sys_corr_36: -0.8448119804566792 - sys_corr_37: -6.200035299301756 - sys_corr_38: 4.793452213456689 - sys_corr_39: -21.652545929412884 - sys_corr_40: 15.0151758950232 - sys_corr_41: -30.173062080986174 - sys_corr_42: 8.021167794841118 - sys_corr_43: 35.116217116345226 - sys_corr_44: 37.91031573259928 - sys_corr_45: 29.97624945743327 - sys_corr_46: -20.583003880738712 - sys_corr_47: -13.39670405100449 - sys_corr_48: 20.125689740829667 - sys_corr_49: 6.567568513591804 - sys_corr_50: 40.98866788176014 - sys_corr_51: 10.37543717168588 - sys_corr_52: -19.124215857783458 - sys_corr_53: 143.3768118210859 - sys_corr_54: 12.126816644263974 - sys_corr_55: 25.36274795605 - sys_corr_56: 4.59166838984295 - sys_corr_57: 67.22376079699247 - sys_corr_58: 64.73782304998922 - sys_corr_59: -62.750249724158714 - sys_corr_60: -57.42393218285194 - sys_corr_61: -51.517062759535314 - sys_corr_62: 36.82325035998869 - sys_corr_63: -78.0018259096387 - sys_corr_64: 69.76282165210843 - sys_corr_65: 71.19915311586728 - sys_corr_66: 23.903689589685648 - sys_corr_67: -7.080780534891814 - sys_corr_68: 29.645205221722954 - sys_corr_69: -27.640810210489988 - sys_corr_70: 17.894124624757207 - sys_corr_71: -0.6241488297939057 - sys_corr_72: -31.27016489856128 - sys_corr_73: -5.143588792728407 - sys_corr_74: -58.512737276595 - sys_corr_75: 15.231065050747072 - sys_corr_76: 17.295062801417156 - sys_corr_77: 0.5862310357846341 - sys_corr_78: 4.358359145409916 - sys_corr_79: 6.72041147860272 - sys_corr_80: -0.33128391348284447 - sys_corr_81: -3.862396166229601 - sys_corr_82: -3.7318811692895513 - sys_corr_83: -11.906297684605665 - sys_corr_84: -0.43972967444812383 - sys_corr_85: -6.583107756233981 - sys_corr_86: -8.477822413098165 - sys_corr_87: -14.052154160489275 - sys_corr_88: -20.19157513379611 - sys_corr_89: 1.3676547189390695 - sys_corr_90: 1.3844961010371413 - sys_corr_91: -2.252100377232022 - sys_corr_92: -10.732552641795655 - sys_corr_93: 0.5267278856434583 - sys_corr_94: 1.9133772385856183 - sys_corr_95: -0.9086367290904502 - sys_corr_96: -0.19603378207694666 - sys_corr_97: -0.24481284148194885 - sys_corr_98: 0.3088334861150526 - sys_corr_99: -0.20360027801803637 - sys_corr_100: -0.6922587142677297 - sys_corr_101: -1.6154925347430225 - sys_corr_102: -3.190397473215342 - sys_corr_103: -0.16608435634087002 - sys_corr_104: 0.8368508715939528 - sys_corr_105: -1.0969511520477462 - sys_corr_106: -0.8873814825976778 - sys_corr_107: -0.6075962197932474 - sys_corr_108: -0.015692645474522395 - sys_corr_109: -0.008442567165961578 - sys_corr_110: -0.5089889216381034 - sys_corr_111: 0.1629746575825356 - sys_corr_112: 0.12538020915714732 - sys_corr_113: 0.06220488741304507 - sys_corr_114: -0.0014662643825871491 - sys_corr_115: -0.18464373952356233 - sys_corr_116: 0.08042883981858868 - sys_corr_117: 0.06554036876059922 - sys_corr_118: -0.11706127007058742 - sys_corr_119: 0.00019047426928851992 - sys_corr_120: -0.04619409800568163 - sys_corr_121: -0.011316235222398982 - sys_corr_122: -0.08414638441717194 - sys_corr_123: -0.04778275418969615 - sys_corr_124: 0.01440792457494201 - sys_corr_125: 0.06449003649308928 - sys_corr_126: -0.013328243813513236 - sys_corr_127: 0.033693900023691964 - sys_corr_128: -0.012932314389579046 - sys_corr_129: -0.02938794221143519 - sys_corr_130: 0.021368802490205573 - sys_corr_131: 0.04867609895644806 - sys_corr_132: -0.07042018829638481 + luminosity: 3.71965572e+02 +- sys_corr_1: 1.79829501e+02 + sys_corr_2: -3.80829009e+01 + sys_corr_3: -1.49239548e+01 + sys_corr_4: 2.32990499e-01 + sys_corr_5: -1.21690882e+02 + sys_corr_6: -8.65273787e+01 + sys_corr_7: 2.18795107e+02 + sys_corr_8: 1.42881033e+02 + sys_corr_9: 1.50284555e+02 + sys_corr_10: 3.21063375e+01 + sys_corr_11: 2.30340975e+02 + sys_corr_12: 3.20458427e+02 + sys_corr_13: -1.97320033e+02 + sys_corr_14: 5.97479331e+01 + sys_corr_15: 5.47085949e+01 + sys_corr_16: -1.11957783e+01 + sys_corr_17: 8.99168519e+00 + sys_corr_18: -4.27947833e+01 + sys_corr_19: 1.10787993e+01 + sys_corr_20: 2.89125517e+01 + sys_corr_21: 2.49701230e+01 + sys_corr_22: 2.30446160e+02 + sys_corr_23: 3.47121066e+01 + sys_corr_24: -9.70839915e+01 + sys_corr_25: -6.49832820e+00 + sys_corr_26: -1.61034560e+01 + sys_corr_27: -1.55474108e+01 + sys_corr_28: 2.54762520e+01 + sys_corr_29: -2.52161163e+01 + sys_corr_30: 6.84727915e+01 + sys_corr_31: -4.14068068e+01 + sys_corr_32: 1.97211204e+00 + sys_corr_33: -7.25299163e+00 + sys_corr_34: -8.93109930e+00 + sys_corr_35: -1.80044271e+01 + sys_corr_36: -8.44811980e-01 + sys_corr_37: -6.20003530e+00 + sys_corr_38: 4.79345221e+00 + sys_corr_39: -2.16525459e+01 + sys_corr_40: 1.50151759e+01 + sys_corr_41: -3.01730621e+01 + sys_corr_42: 8.02116779e+00 + sys_corr_43: 3.51162171e+01 + sys_corr_44: 3.79103157e+01 + sys_corr_45: 2.99762495e+01 + sys_corr_46: -2.05830039e+01 + sys_corr_47: -1.33967041e+01 + sys_corr_48: 2.01256897e+01 + sys_corr_49: 6.56756851e+00 + sys_corr_50: 4.09886679e+01 + sys_corr_51: 1.03754372e+01 + sys_corr_52: -1.91242159e+01 + sys_corr_53: 1.43376812e+02 + sys_corr_54: 1.21268166e+01 + sys_corr_55: 2.53627480e+01 + sys_corr_56: 4.59166839e+00 + sys_corr_57: 6.72237608e+01 + sys_corr_58: 6.47378230e+01 + sys_corr_59: -6.27502497e+01 + sys_corr_60: -5.74239322e+01 + sys_corr_61: -5.15170628e+01 + sys_corr_62: 3.68232504e+01 + sys_corr_63: -7.80018259e+01 + sys_corr_64: 6.97628217e+01 + sys_corr_65: 7.11991531e+01 + sys_corr_66: 2.39036896e+01 + sys_corr_67: -7.08078053e+00 + sys_corr_68: 2.96452052e+01 + sys_corr_69: -2.76408102e+01 + sys_corr_70: 1.78941246e+01 + sys_corr_71: -6.24148830e-01 + sys_corr_72: -3.12701649e+01 + sys_corr_73: -5.14358879e+00 + sys_corr_74: -5.85127373e+01 + sys_corr_75: 1.52310651e+01 + sys_corr_76: 1.72950628e+01 + sys_corr_77: 5.86231036e-01 + sys_corr_78: 4.35835915e+00 + sys_corr_79: 6.72041148e+00 + sys_corr_80: -3.31283913e-01 + sys_corr_81: -3.86239617e+00 + sys_corr_82: -3.73188117e+00 + sys_corr_83: -1.19062977e+01 + sys_corr_84: -4.39729674e-01 + sys_corr_85: -6.58310776e+00 + sys_corr_86: -8.47782241e+00 + sys_corr_87: -1.40521542e+01 + sys_corr_88: -2.01915751e+01 + sys_corr_89: 1.36765472e+00 + sys_corr_90: 1.38449610e+00 + sys_corr_91: -2.25210038e+00 + sys_corr_92: -1.07325526e+01 + sys_corr_93: 5.26727886e-01 + sys_corr_94: 1.91337724e+00 + sys_corr_95: -9.08636729e-01 + sys_corr_96: -1.96033782e-01 + sys_corr_97: -2.44812841e-01 + sys_corr_98: 3.08833486e-01 + sys_corr_99: -2.03600278e-01 + sys_corr_100: -6.92258714e-01 + sys_corr_101: -1.61549253e+00 + sys_corr_102: -3.19039747e+00 + sys_corr_103: -1.66084356e-01 + sys_corr_104: 8.36850872e-01 + sys_corr_105: -1.09695115e+00 + sys_corr_106: -8.87381483e-01 + sys_corr_107: -6.07596220e-01 + sys_corr_108: -1.56926455e-02 + sys_corr_109: -8.44256717e-03 + sys_corr_110: -5.08988922e-01 + sys_corr_111: 1.62974658e-01 + sys_corr_112: 1.25380209e-01 + sys_corr_113: 6.22048874e-02 + sys_corr_114: -1.46626438e-03 + sys_corr_115: -1.84643740e-01 + sys_corr_116: 8.04288398e-02 + sys_corr_117: 6.55403688e-02 + sys_corr_118: -1.17061270e-01 + sys_corr_119: 1.90474269e-04 + sys_corr_120: -4.61940980e-02 + sys_corr_121: -1.13162352e-02 + sys_corr_122: -8.41463844e-02 + sys_corr_123: -4.77827542e-02 + sys_corr_124: 1.44079246e-02 + sys_corr_125: 6.44900365e-02 + sys_corr_126: -1.33282438e-02 + sys_corr_127: 3.36939000e-02 + sys_corr_128: -1.29323144e-02 + sys_corr_129: -2.93879422e-02 + sys_corr_130: 2.13688025e-02 + sys_corr_131: 4.86760990e-02 + sys_corr_132: -7.04201883e-02 stat: 0.0 - luminosity: 372.66433600000005 -- sys_corr_1: 156.18322728438343 - sys_corr_2: -31.44652372422049 - sys_corr_3: -31.781536396485166 - sys_corr_4: -36.38086670240396 - sys_corr_5: -130.59614348255158 - sys_corr_6: -62.04158565167159 - sys_corr_7: 215.6955896598668 - sys_corr_8: 148.39632650189566 - sys_corr_9: 177.7177727206872 - sys_corr_10: 38.76506709197526 - sys_corr_11: 246.10767103125312 - sys_corr_12: 350.63374654296547 - sys_corr_13: -219.6755968770888 - sys_corr_14: 62.76401249063844 - sys_corr_15: 63.72528786335912 - sys_corr_16: -15.330404075919647 - sys_corr_17: 22.138040124531308 - sys_corr_18: -46.488284727509786 - sys_corr_19: -4.5420142469766605 - sys_corr_20: 27.31434906053062 - sys_corr_21: 26.188885420480542 - sys_corr_22: 149.27562728475223 - sys_corr_23: 22.430010551673053 - sys_corr_24: -151.42783284035517 - sys_corr_25: -11.953888336585624 - sys_corr_26: -30.614514186674583 - sys_corr_27: -37.94544017682955 - sys_corr_28: 48.87717855349669 - sys_corr_29: -12.259389127537727 - sys_corr_30: 17.546586571967463 - sys_corr_31: -58.89295243195834 - sys_corr_32: 6.910357009885879 - sys_corr_33: -10.672112285787348 - sys_corr_34: -7.482918516342887 - sys_corr_35: 4.369820134901852 - sys_corr_36: -13.228755867852414 - sys_corr_37: 13.15009533493561 - sys_corr_38: 15.055417434107069 - sys_corr_39: -19.870063680858436 - sys_corr_40: 37.600012712794914 - sys_corr_41: -67.39170222437258 - sys_corr_42: 18.06253947991794 - sys_corr_43: 16.865391810491644 - sys_corr_44: 6.19466233410574 - sys_corr_45: -19.352678572969616 - sys_corr_46: -21.395396196166885 - sys_corr_47: -30.84059581451657 - sys_corr_48: 9.758938633063458 - sys_corr_49: -4.720592325068238 - sys_corr_50: 16.949321079460184 - sys_corr_51: -50.42324892504761 - sys_corr_52: -6.444311002420606 - sys_corr_53: -203.7124244563045 - sys_corr_54: -24.824363374275435 - sys_corr_55: -50.11147027789849 - sys_corr_56: -40.054069428224885 - sys_corr_57: -33.68181730843532 - sys_corr_58: -50.15978407655134 - sys_corr_59: -3.9645963363964563 - sys_corr_60: 32.53345453615012 - sys_corr_61: -18.559532420389 - sys_corr_62: -21.312890698386997 - sys_corr_63: -92.89749584528602 - sys_corr_64: 21.941549356104858 - sys_corr_65: 46.9025344617761 - sys_corr_66: 18.03329740704447 - sys_corr_67: 44.34131422493294 - sys_corr_68: 3.6624580536631592 - sys_corr_69: -6.518139014235563 - sys_corr_70: 22.289430029343567 - sys_corr_71: -10.42674329505453 - sys_corr_72: -34.746027639213 - sys_corr_73: 7.104363969910045 - sys_corr_74: -30.285224955986763 - sys_corr_75: 0.5650608077983247 - sys_corr_76: -0.12709265532059763 - sys_corr_77: -0.3943529298178412 - sys_corr_78: 2.8381186940350114 - sys_corr_79: 1.1240002922266967 - sys_corr_80: -4.91314408954643 - sys_corr_81: -6.039565541216105 - sys_corr_82: 1.3001887246967834 - sys_corr_83: -7.305410573980877 - sys_corr_84: 2.1105021319540977 - sys_corr_85: -0.8531768046509054 - sys_corr_86: -8.769098927884412 - sys_corr_87: 1.0368459813355806 - sys_corr_88: -8.93839545735238 - sys_corr_89: -0.6886002130478215 - sys_corr_90: -1.1817093025838883 - sys_corr_91: -0.32416749255575583 - sys_corr_92: 1.6393419693149371 - sys_corr_93: 0.1742456881026991 - sys_corr_94: 0.9169188777260567 - sys_corr_95: 0.14997872662062758 - sys_corr_96: -0.07881257707392021 - sys_corr_97: 0.23149466528933008 - sys_corr_98: 0.0062768400562125005 - sys_corr_99: -0.04029562687543971 - sys_corr_100: -0.8689725094473323 - sys_corr_101: -1.5739553675809967 - sys_corr_102: -3.0504784533100953 - sys_corr_103: 0.7293383765764317 - sys_corr_104: 0.8712041368770798 - sys_corr_105: -1.0074014670322031 - sys_corr_106: -0.7577006034625907 - sys_corr_107: -0.558737507162462 - sys_corr_108: 0.09728313606500874 - sys_corr_109: -0.016053976492723797 - sys_corr_110: -0.03762091267215287 - sys_corr_111: 0.26445605515197645 - sys_corr_112: -0.04357514565872682 - sys_corr_113: -0.025511863013989885 - sys_corr_114: -0.0024284938538562473 - sys_corr_115: -0.12701598976118966 - sys_corr_116: 0.021869630906617168 - sys_corr_117: 0.010975809791078244 - sys_corr_118: 0.008220973607382233 - sys_corr_119: 0.009787782932375337 - sys_corr_120: -0.013358132329784847 - sys_corr_121: -0.00800362162605765 - sys_corr_122: -0.032809803776352016 - sys_corr_123: -0.014166922981557131 - sys_corr_124: -0.008749424415409476 - sys_corr_125: 0.03950236007770986 - sys_corr_126: 0.010996913943196202 - sys_corr_127: 0.17594699818687326 - sys_corr_128: 0.09027078315405099 - sys_corr_129: -0.07458611634992403 - sys_corr_130: 0.028662278165075262 - sys_corr_131: 0.03277053222047818 - sys_corr_132: -0.10286822388614393 + luminosity: 3.72664336e+02 +- sys_corr_1: 1.56183227e+02 + sys_corr_2: -3.14465237e+01 + sys_corr_3: -3.17815364e+01 + sys_corr_4: -3.63808667e+01 + sys_corr_5: -1.30596143e+02 + sys_corr_6: -6.20415857e+01 + sys_corr_7: 2.15695590e+02 + sys_corr_8: 1.48396327e+02 + sys_corr_9: 1.77717773e+02 + sys_corr_10: 3.87650671e+01 + sys_corr_11: 2.46107671e+02 + sys_corr_12: 3.50633747e+02 + sys_corr_13: -2.19675597e+02 + sys_corr_14: 6.27640125e+01 + sys_corr_15: 6.37252879e+01 + sys_corr_16: -1.53304041e+01 + sys_corr_17: 2.21380401e+01 + sys_corr_18: -4.64882847e+01 + sys_corr_19: -4.54201425e+00 + sys_corr_20: 2.73143491e+01 + sys_corr_21: 2.61888854e+01 + sys_corr_22: 1.49275627e+02 + sys_corr_23: 2.24300106e+01 + sys_corr_24: -1.51427833e+02 + sys_corr_25: -1.19538883e+01 + sys_corr_26: -3.06145142e+01 + sys_corr_27: -3.79454402e+01 + sys_corr_28: 4.88771786e+01 + sys_corr_29: -1.22593891e+01 + sys_corr_30: 1.75465866e+01 + sys_corr_31: -5.88929524e+01 + sys_corr_32: 6.91035701e+00 + sys_corr_33: -1.06721123e+01 + sys_corr_34: -7.48291852e+00 + sys_corr_35: 4.36982013e+00 + sys_corr_36: -1.32287559e+01 + sys_corr_37: 1.31500953e+01 + sys_corr_38: 1.50554174e+01 + sys_corr_39: -1.98700637e+01 + sys_corr_40: 3.76000127e+01 + sys_corr_41: -6.73917022e+01 + sys_corr_42: 1.80625395e+01 + sys_corr_43: 1.68653918e+01 + sys_corr_44: 6.19466233e+00 + sys_corr_45: -1.93526786e+01 + sys_corr_46: -2.13953962e+01 + sys_corr_47: -3.08405958e+01 + sys_corr_48: 9.75893863e+00 + sys_corr_49: -4.72059233e+00 + sys_corr_50: 1.69493211e+01 + sys_corr_51: -5.04232489e+01 + sys_corr_52: -6.44431100e+00 + sys_corr_53: -2.03712424e+02 + sys_corr_54: -2.48243634e+01 + sys_corr_55: -5.01114703e+01 + sys_corr_56: -4.00540694e+01 + sys_corr_57: -3.36818173e+01 + sys_corr_58: -5.01597841e+01 + sys_corr_59: -3.96459634e+00 + sys_corr_60: 3.25334545e+01 + sys_corr_61: -1.85595324e+01 + sys_corr_62: -2.13128907e+01 + sys_corr_63: -9.28974958e+01 + sys_corr_64: 2.19415494e+01 + sys_corr_65: 4.69025345e+01 + sys_corr_66: 1.80332974e+01 + sys_corr_67: 4.43413142e+01 + sys_corr_68: 3.66245805e+00 + sys_corr_69: -6.51813901e+00 + sys_corr_70: 2.22894300e+01 + sys_corr_71: -1.04267433e+01 + sys_corr_72: -3.47460276e+01 + sys_corr_73: 7.10436397e+00 + sys_corr_74: -3.02852250e+01 + sys_corr_75: 5.65060808e-01 + sys_corr_76: -1.27092655e-01 + sys_corr_77: -3.94352930e-01 + sys_corr_78: 2.83811869e+00 + sys_corr_79: 1.12400029e+00 + sys_corr_80: -4.91314409e+00 + sys_corr_81: -6.03956554e+00 + sys_corr_82: 1.30018872e+00 + sys_corr_83: -7.30541057e+00 + sys_corr_84: 2.11050213e+00 + sys_corr_85: -8.53176805e-01 + sys_corr_86: -8.76909893e+00 + sys_corr_87: 1.03684598e+00 + sys_corr_88: -8.93839546e+00 + sys_corr_89: -6.88600213e-01 + sys_corr_90: -1.18170930e+00 + sys_corr_91: -3.24167493e-01 + sys_corr_92: 1.63934197e+00 + sys_corr_93: 1.74245688e-01 + sys_corr_94: 9.16918878e-01 + sys_corr_95: 1.49978727e-01 + sys_corr_96: -7.88125771e-02 + sys_corr_97: 2.31494665e-01 + sys_corr_98: 6.27684006e-03 + sys_corr_99: -4.02956269e-02 + sys_corr_100: -8.68972509e-01 + sys_corr_101: -1.57395537e+00 + sys_corr_102: -3.05047845e+00 + sys_corr_103: 7.29338377e-01 + sys_corr_104: 8.71204137e-01 + sys_corr_105: -1.00740147e+00 + sys_corr_106: -7.57700603e-01 + sys_corr_107: -5.58737507e-01 + sys_corr_108: 9.72831361e-02 + sys_corr_109: -1.60539765e-02 + sys_corr_110: -3.76209127e-02 + sys_corr_111: 2.64456055e-01 + sys_corr_112: -4.35751457e-02 + sys_corr_113: -2.55118630e-02 + sys_corr_114: -2.42849385e-03 + sys_corr_115: -1.27015990e-01 + sys_corr_116: 2.18696309e-02 + sys_corr_117: 1.09758098e-02 + sys_corr_118: 8.22097361e-03 + sys_corr_119: 9.78778293e-03 + sys_corr_120: -1.33581323e-02 + sys_corr_121: -8.00362163e-03 + sys_corr_122: -3.28098038e-02 + sys_corr_123: -1.41669230e-02 + sys_corr_124: -8.74942442e-03 + sys_corr_125: 3.95023601e-02 + sys_corr_126: 1.09969139e-02 + sys_corr_127: 1.75946998e-01 + sys_corr_128: 9.02707832e-02 + sys_corr_129: -7.45861163e-02 + sys_corr_130: 2.86622782e-02 + sys_corr_131: 3.27705322e-02 + sys_corr_132: -1.02868224e-01 stat: 0.0 - luminosity: 358.52907200000004 -- sys_corr_1: 149.2743027911061 - sys_corr_2: -29.690060565750297 - sys_corr_3: -41.45747903861742 - sys_corr_4: -95.29545760799898 - sys_corr_5: -116.31235808510593 - sys_corr_6: -46.4845610605919 - sys_corr_7: 217.73718569202555 - sys_corr_8: 157.20753292267298 - sys_corr_9: 204.58188119629895 - sys_corr_10: 39.3162419642109 - sys_corr_11: 251.40627604224056 - sys_corr_12: 378.36826576214395 - sys_corr_13: -240.21303877407823 - sys_corr_14: 70.03000554082993 - sys_corr_15: 69.54947397671128 - sys_corr_16: -21.54261689796651 - sys_corr_17: 31.866398747865244 - sys_corr_18: -41.11592331560679 - sys_corr_19: -19.20231526956697 - sys_corr_20: 22.024310053717397 - sys_corr_21: 20.245922648782667 - sys_corr_22: 56.53222936263173 - sys_corr_23: 9.919775210983046 - sys_corr_24: -193.4747004680479 - sys_corr_25: -19.77009262928378 - sys_corr_26: -26.879213950693458 - sys_corr_27: -50.29729672979555 - sys_corr_28: 46.60640799659719 - sys_corr_29: 11.080195149036625 - sys_corr_30: -67.2677874887048 - sys_corr_31: -60.764122462904155 - sys_corr_32: 1.6759403244323035 - sys_corr_33: -5.849700047051789 - sys_corr_34: 7.282495558068207 - sys_corr_35: 5.965679261457946 - sys_corr_36: 11.098041858550385 - sys_corr_37: -1.4910460487749686 - sys_corr_38: -5.192744666567617 - sys_corr_39: -0.45958840935908163 - sys_corr_40: 11.832931114704015 - sys_corr_41: 1.5277879559398517 - sys_corr_42: -15.647782620325577 - sys_corr_43: -16.754862340487048 - sys_corr_44: 2.697888348220697 - sys_corr_45: -14.32899232953354 - sys_corr_46: 48.472252024048444 - sys_corr_47: -25.599773344418534 - sys_corr_48: 7.37740331291717 - sys_corr_49: 26.781966073493056 - sys_corr_50: 25.509888413091268 - sys_corr_51: 20.281665080879733 - sys_corr_52: -8.36874370692863 - sys_corr_53: -55.427128375666314 - sys_corr_54: -75.65608731620935 - sys_corr_55: -25.709237263547873 - sys_corr_56: 20.211919567052018 - sys_corr_57: 155.18178311050653 - sys_corr_58: 73.91166519981259 - sys_corr_59: 2.3384298714093066 - sys_corr_60: -30.173369203432895 - sys_corr_61: 13.334235071170948 - sys_corr_62: 7.377459677471103 - sys_corr_63: 137.30403737309882 - sys_corr_64: -13.403097506941755 - sys_corr_65: -38.08411112013359 - sys_corr_66: 6.195581472738919 - sys_corr_67: 35.21898152228943 - sys_corr_68: -30.261166002743835 - sys_corr_69: 6.319974861350495 - sys_corr_70: -16.037507699121498 - sys_corr_71: 31.751460776350395 - sys_corr_72: -13.682897060044569 - sys_corr_73: 5.746179975504593 - sys_corr_74: 5.769953981715694 - sys_corr_75: -14.219046794092534 - sys_corr_76: -15.914823705974205 - sys_corr_77: -0.03776253180642413 - sys_corr_78: 1.2737342441967678 - sys_corr_79: 2.8055527663147783 - sys_corr_80: -2.665210966936331 - sys_corr_81: -2.5328673041877585 - sys_corr_82: 3.2012806265622182 - sys_corr_83: 1.169379162685201 - sys_corr_84: -0.6446889112684963 - sys_corr_85: -0.049565900366472376 - sys_corr_86: -10.955427240041614 - sys_corr_87: -2.9683740934748113 - sys_corr_88: -12.832275302433102 - sys_corr_89: -0.7058244713741358 - sys_corr_90: -0.8892533824499794 - sys_corr_91: -0.1916395834633394 - sys_corr_92: 6.672108696360849 - sys_corr_93: -0.06472531834562475 - sys_corr_94: -0.5094472051224024 - sys_corr_95: 1.6057166474209608 - sys_corr_96: 0.14143319443589897 - sys_corr_97: -0.23190367742550655 - sys_corr_98: -0.37651687378234533 - sys_corr_99: -0.12224757257977985 - sys_corr_100: -0.262071887831147 - sys_corr_101: -0.26621930035386315 - sys_corr_102: -0.5163938116579576 - sys_corr_103: 1.0516365916082795 - sys_corr_104: 0.15978110481205485 - sys_corr_105: -0.3022353643227283 - sys_corr_106: -0.27931334392485513 - sys_corr_107: -0.010116194851922486 - sys_corr_108: -0.10422229974743571 - sys_corr_109: -0.07161864439871518 - sys_corr_110: -0.20784874961390343 - sys_corr_111: 0.0800038054010174 - sys_corr_112: 0.019187245363996883 - sys_corr_113: -0.07051990352336657 - sys_corr_114: -0.0011682492778611934 - sys_corr_115: -0.11853552490142934 - sys_corr_116: 0.024509257582250886 - sys_corr_117: 0.020782184377888025 - sys_corr_118: -0.05505674481290997 - sys_corr_119: 0.0017426298090617662 - sys_corr_120: -0.009245208598093588 - sys_corr_121: 0.0026779311439199156 - sys_corr_122: 0.011804314408199908 - sys_corr_123: 0.00832390293020934 - sys_corr_124: 0.0052006150254052365 - sys_corr_125: -0.0010883689206158552 - sys_corr_126: 0.0069389288033094325 - sys_corr_127: -0.16171380070705776 - sys_corr_128: 0.2062719537669319 - sys_corr_129: -0.014040259568337038 - sys_corr_130: 0.001424893347248381 - sys_corr_131: 0.00551557396613731 - sys_corr_132: -0.08564777287108624 + luminosity: 3.58529072e+02 +- sys_corr_1: 1.49274303e+02 + sys_corr_2: -2.96900606e+01 + sys_corr_3: -4.14574790e+01 + sys_corr_4: -9.52954576e+01 + sys_corr_5: -1.16312358e+02 + sys_corr_6: -4.64845611e+01 + sys_corr_7: 2.17737186e+02 + sys_corr_8: 1.57207533e+02 + sys_corr_9: 2.04581881e+02 + sys_corr_10: 3.93162420e+01 + sys_corr_11: 2.51406276e+02 + sys_corr_12: 3.78368266e+02 + sys_corr_13: -2.40213039e+02 + sys_corr_14: 7.00300055e+01 + sys_corr_15: 6.95494740e+01 + sys_corr_16: -2.15426169e+01 + sys_corr_17: 3.18663987e+01 + sys_corr_18: -4.11159233e+01 + sys_corr_19: -1.92023153e+01 + sys_corr_20: 2.20243101e+01 + sys_corr_21: 2.02459226e+01 + sys_corr_22: 5.65322294e+01 + sys_corr_23: 9.91977521e+00 + sys_corr_24: -1.93474700e+02 + sys_corr_25: -1.97700926e+01 + sys_corr_26: -2.68792140e+01 + sys_corr_27: -5.02972967e+01 + sys_corr_28: 4.66064080e+01 + sys_corr_29: 1.10801951e+01 + sys_corr_30: -6.72677875e+01 + sys_corr_31: -6.07641225e+01 + sys_corr_32: 1.67594032e+00 + sys_corr_33: -5.84970005e+00 + sys_corr_34: 7.28249556e+00 + sys_corr_35: 5.96567926e+00 + sys_corr_36: 1.10980419e+01 + sys_corr_37: -1.49104605e+00 + sys_corr_38: -5.19274467e+00 + sys_corr_39: -4.59588409e-01 + sys_corr_40: 1.18329311e+01 + sys_corr_41: 1.52778796e+00 + sys_corr_42: -1.56477826e+01 + sys_corr_43: -1.67548623e+01 + sys_corr_44: 2.69788835e+00 + sys_corr_45: -1.43289923e+01 + sys_corr_46: 4.84722520e+01 + sys_corr_47: -2.55997733e+01 + sys_corr_48: 7.37740331e+00 + sys_corr_49: 2.67819661e+01 + sys_corr_50: 2.55098884e+01 + sys_corr_51: 2.02816651e+01 + sys_corr_52: -8.36874371e+00 + sys_corr_53: -5.54271284e+01 + sys_corr_54: -7.56560873e+01 + sys_corr_55: -2.57092373e+01 + sys_corr_56: 2.02119196e+01 + sys_corr_57: 1.55181783e+02 + sys_corr_58: 7.39116652e+01 + sys_corr_59: 2.33842987e+00 + sys_corr_60: -3.01733692e+01 + sys_corr_61: 1.33342351e+01 + sys_corr_62: 7.37745968e+00 + sys_corr_63: 1.37304037e+02 + sys_corr_64: -1.34030975e+01 + sys_corr_65: -3.80841111e+01 + sys_corr_66: 6.19558147e+00 + sys_corr_67: 3.52189815e+01 + sys_corr_68: -3.02611660e+01 + sys_corr_69: 6.31997486e+00 + sys_corr_70: -1.60375077e+01 + sys_corr_71: 3.17514608e+01 + sys_corr_72: -1.36828971e+01 + sys_corr_73: 5.74617998e+00 + sys_corr_74: 5.76995398e+00 + sys_corr_75: -1.42190468e+01 + sys_corr_76: -1.59148237e+01 + sys_corr_77: -3.77625318e-02 + sys_corr_78: 1.27373424e+00 + sys_corr_79: 2.80555277e+00 + sys_corr_80: -2.66521097e+00 + sys_corr_81: -2.53286730e+00 + sys_corr_82: 3.20128063e+00 + sys_corr_83: 1.16937916e+00 + sys_corr_84: -6.44688911e-01 + sys_corr_85: -4.95659004e-02 + sys_corr_86: -1.09554272e+01 + sys_corr_87: -2.96837409e+00 + sys_corr_88: -1.28322753e+01 + sys_corr_89: -7.05824471e-01 + sys_corr_90: -8.89253382e-01 + sys_corr_91: -1.91639583e-01 + sys_corr_92: 6.67210870e+00 + sys_corr_93: -6.47253183e-02 + sys_corr_94: -5.09447205e-01 + sys_corr_95: 1.60571665e+00 + sys_corr_96: 1.41433194e-01 + sys_corr_97: -2.31903677e-01 + sys_corr_98: -3.76516874e-01 + sys_corr_99: -1.22247573e-01 + sys_corr_100: -2.62071888e-01 + sys_corr_101: -2.66219300e-01 + sys_corr_102: -5.16393812e-01 + sys_corr_103: 1.05163659e+00 + sys_corr_104: 1.59781105e-01 + sys_corr_105: -3.02235364e-01 + sys_corr_106: -2.79313344e-01 + sys_corr_107: -1.01161949e-02 + sys_corr_108: -1.04222300e-01 + sys_corr_109: -7.16186444e-02 + sys_corr_110: -2.07848750e-01 + sys_corr_111: 8.00038054e-02 + sys_corr_112: 1.91872454e-02 + sys_corr_113: -7.05199035e-02 + sys_corr_114: -1.16824928e-03 + sys_corr_115: -1.18535525e-01 + sys_corr_116: 2.45092576e-02 + sys_corr_117: 2.07821844e-02 + sys_corr_118: -5.50567448e-02 + sys_corr_119: 1.74262981e-03 + sys_corr_120: -9.24520860e-03 + sys_corr_121: 2.67793114e-03 + sys_corr_122: 1.18043144e-02 + sys_corr_123: 8.32390293e-03 + sys_corr_124: 5.20061503e-03 + sys_corr_125: -1.08836892e-03 + sys_corr_126: 6.93892880e-03 + sys_corr_127: -1.61713801e-01 + sys_corr_128: 2.06271954e-01 + sys_corr_129: -1.40402596e-02 + sys_corr_130: 1.42489335e-03 + sys_corr_131: 5.51557397e-03 + sys_corr_132: -8.56477729e-02 stat: 0.0 - luminosity: 361.87791200000004 -- sys_corr_1: 132.1139757212318 - sys_corr_2: 2.935849229099954 - sys_corr_3: -49.549694308879076 - sys_corr_4: -129.8009056269805 - sys_corr_5: -96.11519244274378 - sys_corr_6: -30.648629060892684 - sys_corr_7: 193.06982662771273 - sys_corr_8: 154.39464669213288 - sys_corr_9: 219.58022455577563 - sys_corr_10: 40.88179845068817 - sys_corr_11: 253.7024752127646 - sys_corr_12: 377.2247482917672 - sys_corr_13: -252.9235753106159 - sys_corr_14: 64.70519942176219 - sys_corr_15: 74.16734302539359 - sys_corr_16: -37.187400643110564 - sys_corr_17: 44.5999131544678 - sys_corr_18: -34.7849644802104 - sys_corr_19: -27.543189189937674 - sys_corr_20: 20.783290631589352 - sys_corr_21: 24.865814667988413 - sys_corr_22: -72.79290577828004 - sys_corr_23: -22.06168549609323 - sys_corr_24: -181.37976662097915 - sys_corr_25: -36.80502195756534 - sys_corr_26: -60.84949339091047 - sys_corr_27: -29.661677936937018 - sys_corr_28: 37.34697630508121 - sys_corr_29: 26.471397319543613 - sys_corr_30: -98.30771361931133 - sys_corr_31: -49.33070731611963 - sys_corr_32: 6.276737057346522 - sys_corr_33: 0.3066663456866029 - sys_corr_34: -4.877906288019247 - sys_corr_35: 1.152826379014536 - sys_corr_36: 22.259592685355067 - sys_corr_37: -21.73652106164411 - sys_corr_38: -8.56996548168184 - sys_corr_39: 3.0446032068491733 - sys_corr_40: -35.22609086086933 - sys_corr_41: 13.645663869406713 - sys_corr_42: -31.294517084502107 - sys_corr_43: 11.190255850863304 - sys_corr_44: 6.05448422338111 - sys_corr_45: 4.811250024359837 - sys_corr_46: -11.404638456537217 - sys_corr_47: 23.103793226558626 - sys_corr_48: 32.25276680603457 - sys_corr_49: -31.596857057735555 - sys_corr_50: -12.705872315981422 - sys_corr_51: -72.73377239962949 - sys_corr_52: -18.17198670575002 - sys_corr_53: 35.94939511019728 - sys_corr_54: 42.96033697547794 - sys_corr_55: -31.41317379853472 - sys_corr_56: 84.06506705494064 - sys_corr_57: -76.16110490466762 - sys_corr_58: 22.807573861753507 - sys_corr_59: 90.57266730420504 - sys_corr_60: -9.69458997538221 - sys_corr_61: -18.46251337860029 - sys_corr_62: 41.845358907563714 - sys_corr_63: 0.05802412495347566 - sys_corr_64: 65.80000901772833 - sys_corr_65: -19.702514982004438 - sys_corr_66: 6.897670728988342 - sys_corr_67: -18.216395774970547 - sys_corr_68: 5.933659533800527 - sys_corr_69: 38.31351449694379 - sys_corr_70: -2.2790382391265265 - sys_corr_71: -91.44558856140534 - sys_corr_72: 62.042824643244 - sys_corr_73: 16.357084861174368 - sys_corr_74: 50.67423195764506 - sys_corr_75: -13.87523060970355 - sys_corr_76: -37.894502939247175 - sys_corr_77: -5.270407714586556 - sys_corr_78: 5.4229130516163115 - sys_corr_79: 2.129528748344864 - sys_corr_80: -11.247809648154542 - sys_corr_81: -7.572067537795649 - sys_corr_82: -4.184554600812563 - sys_corr_83: 2.898285517993667 - sys_corr_84: -1.6119008223508846 - sys_corr_85: 4.43740944679087 - sys_corr_86: -34.718583077605665 - sys_corr_87: 7.752640869834679 - sys_corr_88: -17.495533735208717 - sys_corr_89: 0.04096752824026377 - sys_corr_90: 0.05019567155695284 - sys_corr_91: 3.421044050023774 - sys_corr_92: 35.606596617007284 - sys_corr_93: -0.705259855376566 - sys_corr_94: -2.653240492039944 - sys_corr_95: 0.9768803527959958 - sys_corr_96: 0.10562415907851887 - sys_corr_97: -0.08281474283875223 - sys_corr_98: -0.2826718542112758 - sys_corr_99: 0.18686592435441957 - sys_corr_100: 0.2829411280619479 - sys_corr_101: 0.1469224512180638 - sys_corr_102: -0.7571030361199025 - sys_corr_103: -0.03643495205074423 - sys_corr_104: 0.7662167711735635 - sys_corr_105: 0.15098494362582865 - sys_corr_106: 0.18734784051888193 - sys_corr_107: 0.0001800236557865875 - sys_corr_108: -0.15378967307387414 - sys_corr_109: -0.14459139975836896 - sys_corr_110: 0.2175123946342723 - sys_corr_111: -0.15188392627660677 - sys_corr_112: -0.08874550804333387 - sys_corr_113: -0.18147969916861212 - sys_corr_114: -0.004728992734935319 - sys_corr_115: -0.20644990998414123 - sys_corr_116: 0.016930806090489782 - sys_corr_117: 0.004424643953934883 - sys_corr_118: -0.16914764803549232 - sys_corr_119: 0.00245451899821677 - sys_corr_120: -0.006623973735484945 - sys_corr_121: -0.008411093689096306 - sys_corr_122: -0.010481423031629487 - sys_corr_123: -0.005951893851170576 - sys_corr_124: 0.007815247112259987 - sys_corr_125: 0.020938473755956824 - sys_corr_126: 0.00021825841894272468 - sys_corr_127: -0.04027182552538181 - sys_corr_128: 0.002765732924134143 - sys_corr_129: 0.09736963527528944 - sys_corr_130: -0.0003385685188623833 - sys_corr_131: 0.014782328910097698 - sys_corr_132: -0.08149178499879128 + luminosity: 3.61877912e+02 +- sys_corr_1: 1.32113976e+02 + sys_corr_2: 2.93584923e+00 + sys_corr_3: -4.95496943e+01 + sys_corr_4: -1.29800906e+02 + sys_corr_5: -9.61151924e+01 + sys_corr_6: -3.06486291e+01 + sys_corr_7: 1.93069827e+02 + sys_corr_8: 1.54394647e+02 + sys_corr_9: 2.19580225e+02 + sys_corr_10: 4.08817985e+01 + sys_corr_11: 2.53702475e+02 + sys_corr_12: 3.77224748e+02 + sys_corr_13: -2.52923575e+02 + sys_corr_14: 6.47051994e+01 + sys_corr_15: 7.41673430e+01 + sys_corr_16: -3.71874006e+01 + sys_corr_17: 4.45999132e+01 + sys_corr_18: -3.47849645e+01 + sys_corr_19: -2.75431892e+01 + sys_corr_20: 2.07832906e+01 + sys_corr_21: 2.48658147e+01 + sys_corr_22: -7.27929058e+01 + sys_corr_23: -2.20616855e+01 + sys_corr_24: -1.81379767e+02 + sys_corr_25: -3.68050220e+01 + sys_corr_26: -6.08494934e+01 + sys_corr_27: -2.96616779e+01 + sys_corr_28: 3.73469763e+01 + sys_corr_29: 2.64713973e+01 + sys_corr_30: -9.83077136e+01 + sys_corr_31: -4.93307073e+01 + sys_corr_32: 6.27673706e+00 + sys_corr_33: 3.06666346e-01 + sys_corr_34: -4.87790629e+00 + sys_corr_35: 1.15282638e+00 + sys_corr_36: 2.22595927e+01 + sys_corr_37: -2.17365211e+01 + sys_corr_38: -8.56996548e+00 + sys_corr_39: 3.04460321e+00 + sys_corr_40: -3.52260909e+01 + sys_corr_41: 1.36456639e+01 + sys_corr_42: -3.12945171e+01 + sys_corr_43: 1.11902559e+01 + sys_corr_44: 6.05448422e+00 + sys_corr_45: 4.81125002e+00 + sys_corr_46: -1.14046385e+01 + sys_corr_47: 2.31037932e+01 + sys_corr_48: 3.22527668e+01 + sys_corr_49: -3.15968571e+01 + sys_corr_50: -1.27058723e+01 + sys_corr_51: -7.27337724e+01 + sys_corr_52: -1.81719867e+01 + sys_corr_53: 3.59493951e+01 + sys_corr_54: 4.29603370e+01 + sys_corr_55: -3.14131738e+01 + sys_corr_56: 8.40650671e+01 + sys_corr_57: -7.61611049e+01 + sys_corr_58: 2.28075739e+01 + sys_corr_59: 9.05726673e+01 + sys_corr_60: -9.69458998e+00 + sys_corr_61: -1.84625134e+01 + sys_corr_62: 4.18453589e+01 + sys_corr_63: 5.80241250e-02 + sys_corr_64: 6.58000090e+01 + sys_corr_65: -1.97025150e+01 + sys_corr_66: 6.89767073e+00 + sys_corr_67: -1.82163958e+01 + sys_corr_68: 5.93365953e+00 + sys_corr_69: 3.83135145e+01 + sys_corr_70: -2.27903824e+00 + sys_corr_71: -9.14455886e+01 + sys_corr_72: 6.20428246e+01 + sys_corr_73: 1.63570849e+01 + sys_corr_74: 5.06742320e+01 + sys_corr_75: -1.38752306e+01 + sys_corr_76: -3.78945029e+01 + sys_corr_77: -5.27040771e+00 + sys_corr_78: 5.42291305e+00 + sys_corr_79: 2.12952875e+00 + sys_corr_80: -1.12478096e+01 + sys_corr_81: -7.57206754e+00 + sys_corr_82: -4.18455460e+00 + sys_corr_83: 2.89828552e+00 + sys_corr_84: -1.61190082e+00 + sys_corr_85: 4.43740945e+00 + sys_corr_86: -3.47185831e+01 + sys_corr_87: 7.75264087e+00 + sys_corr_88: -1.74955337e+01 + sys_corr_89: 4.09675282e-02 + sys_corr_90: 5.01956716e-02 + sys_corr_91: 3.42104405e+00 + sys_corr_92: 3.56065966e+01 + sys_corr_93: -7.05259855e-01 + sys_corr_94: -2.65324049e+00 + sys_corr_95: 9.76880353e-01 + sys_corr_96: 1.05624159e-01 + sys_corr_97: -8.28147428e-02 + sys_corr_98: -2.82671854e-01 + sys_corr_99: 1.86865924e-01 + sys_corr_100: 2.82941128e-01 + sys_corr_101: 1.46922451e-01 + sys_corr_102: -7.57103036e-01 + sys_corr_103: -3.64349521e-02 + sys_corr_104: 7.66216771e-01 + sys_corr_105: 1.50984944e-01 + sys_corr_106: 1.87347841e-01 + sys_corr_107: 1.80023656e-04 + sys_corr_108: -1.53789673e-01 + sys_corr_109: -1.44591400e-01 + sys_corr_110: 2.17512395e-01 + sys_corr_111: -1.51883926e-01 + sys_corr_112: -8.87455080e-02 + sys_corr_113: -1.81479699e-01 + sys_corr_114: -4.72899273e-03 + sys_corr_115: -2.06449910e-01 + sys_corr_116: 1.69308061e-02 + sys_corr_117: 4.42464395e-03 + sys_corr_118: -1.69147648e-01 + sys_corr_119: 2.45451900e-03 + sys_corr_120: -6.62397374e-03 + sys_corr_121: -8.41109369e-03 + sys_corr_122: -1.04814230e-02 + sys_corr_123: -5.95189385e-03 + sys_corr_124: 7.81524711e-03 + sys_corr_125: 2.09384738e-02 + sys_corr_126: 2.18258419e-04 + sys_corr_127: -4.02718255e-02 + sys_corr_128: 2.76573292e-03 + sys_corr_129: 9.73696353e-02 + sys_corr_130: -3.38568519e-04 + sys_corr_131: 1.47823289e-02 + sys_corr_132: -8.14917850e-02 stat: 0.0 - luminosity: 340.09586600000006 -- sys_corr_1: 134.8477409593635 - sys_corr_2: 27.50504779799537 - sys_corr_3: -43.62625368099684 - sys_corr_4: -150.44477633279257 - sys_corr_5: -80.68000675012435 - sys_corr_6: 2.49201113167109 - sys_corr_7: 172.73163386551366 - sys_corr_8: 149.5411823178339 - sys_corr_9: 237.13944843610219 - sys_corr_10: 50.297772114750515 - sys_corr_11: 261.15134424649096 - sys_corr_12: 395.21180418651244 - sys_corr_13: -273.35937011550425 - sys_corr_14: 60.32830601629174 - sys_corr_15: 77.3101490992533 - sys_corr_16: -41.564563639391054 - sys_corr_17: 50.03829173753738 - sys_corr_18: -27.574022986902225 - sys_corr_19: -45.03675653348669 - sys_corr_20: 11.581985163816293 - sys_corr_21: 15.301199240076752 - sys_corr_22: -178.48848440502692 - sys_corr_23: -41.09919492053341 - sys_corr_24: -160.5164950055557 - sys_corr_25: -78.84693406494286 - sys_corr_26: -138.0984833195839 - sys_corr_27: 18.8557070772884 - sys_corr_28: 23.411016344158277 - sys_corr_29: 15.164516090367059 - sys_corr_30: -63.570715278743045 - sys_corr_31: -14.902546876390314 - sys_corr_32: 0.2739723562076539 - sys_corr_33: 5.446563336102655 - sys_corr_34: 15.21778750383719 - sys_corr_35: -4.122556464565497 - sys_corr_36: -2.537467495763371 - sys_corr_37: -0.08896279365153756 - sys_corr_38: 2.2401713423782463 - sys_corr_39: 3.837887655588417 - sys_corr_40: 12.336140681727006 - sys_corr_41: -1.034887501861466 - sys_corr_42: 11.942864023345752 - sys_corr_43: 13.936152138461603 - sys_corr_44: -35.1822950627468 - sys_corr_45: -3.881672536526599 - sys_corr_46: -34.182673063581355 - sys_corr_47: 27.7174674023908 - sys_corr_48: -35.33554483056779 - sys_corr_49: -7.6236164196450735 - sys_corr_50: -32.84686392085652 - sys_corr_51: 63.69690277587465 - sys_corr_52: 47.83933619219879 - sys_corr_53: 16.315441042495873 - sys_corr_54: -29.719772085500356 - sys_corr_55: 20.896711928406035 - sys_corr_56: -72.2018143434102 - sys_corr_57: 37.331267439836815 - sys_corr_58: -27.544957764243843 - sys_corr_59: -69.852300373636 - sys_corr_60: -7.479336818838614 - sys_corr_61: 5.840529288371495 - sys_corr_62: -0.891846931411015 - sys_corr_63: -81.34089759916516 - sys_corr_64: -79.61430885305832 - sys_corr_65: 0.646937583336327 - sys_corr_66: 3.920344684300319 - sys_corr_67: -69.94738670326682 - sys_corr_68: 16.089208069144544 - sys_corr_69: 2.984209559986475 - sys_corr_70: -5.799723304782642 - sys_corr_71: 24.69766016261867 - sys_corr_72: 85.95314944290914 - sys_corr_73: -24.339505125650746 - sys_corr_74: 84.32469396412283 - sys_corr_75: -8.021869194177414 - sys_corr_76: -3.4627707131560963 - sys_corr_77: 0.45442739819804795 - sys_corr_78: 1.4381765605630144 - sys_corr_79: -2.788788895200711 - sys_corr_80: 25.7884695682304 - sys_corr_81: 14.577276493800557 - sys_corr_82: 1.5756656730442424 - sys_corr_83: 16.74806269100861 - sys_corr_84: -2.1096843665474156 - sys_corr_85: 2.880620791520713 - sys_corr_86: 10.237107159402177 - sys_corr_87: 9.457802152052755 - sys_corr_88: 28.55466802282869 - sys_corr_89: -2.7800457331798363 - sys_corr_90: -1.4875741749324944 - sys_corr_91: 0.33646078777103566 - sys_corr_92: 10.314755735010648 - sys_corr_93: -0.46581861181363254 - sys_corr_94: -2.5181640716170635 - sys_corr_95: 2.606805214645073 - sys_corr_96: 0.4411120473265671 - sys_corr_97: -2.0675536069416696 - sys_corr_98: -1.099662277965951 - sys_corr_99: -1.347792492128597 - sys_corr_100: 0.692383455132964 - sys_corr_101: 1.1715836186547879 - sys_corr_102: 0.2804866537483202 - sys_corr_103: 3.101812300362567 - sys_corr_104: 0.7731427409081012 - sys_corr_105: 0.8842947490343611 - sys_corr_106: 0.4890894218571564 - sys_corr_107: 0.2937076362718829 - sys_corr_108: -0.16770187349765683 - sys_corr_109: 0.08800456098700009 - sys_corr_110: -0.16653903426985103 - sys_corr_111: -0.0781318838801483 - sys_corr_112: -0.12207237781106639 - sys_corr_113: -0.1033027308452877 - sys_corr_114: -0.00012779851325521354 - sys_corr_115: 0.022689101781492044 - sys_corr_116: -0.018823392152730118 - sys_corr_117: -0.022477708419346012 - sys_corr_118: -0.03350788571198348 - sys_corr_119: -0.0017990369724579687 - sys_corr_120: 0.01680174521779374 - sys_corr_121: 0.007466656271514235 - sys_corr_122: 0.06786627780927622 - sys_corr_123: 0.033914477517679766 - sys_corr_124: -0.0026837054450359454 - sys_corr_125: -0.051250154217600076 - sys_corr_126: 0.014089173621528728 - sys_corr_127: -0.09547672087163396 - sys_corr_128: 0.42507734953170734 - sys_corr_129: 0.08269009107967418 - sys_corr_130: -0.006131814371201645 - sys_corr_131: -0.034899693115305705 - sys_corr_132: -0.05760782134074944 + luminosity: 3.40095866e+02 +- sys_corr_1: 1.34847741e+02 + sys_corr_2: 2.75050478e+01 + sys_corr_3: -4.36262537e+01 + sys_corr_4: -1.50444776e+02 + sys_corr_5: -8.06800068e+01 + sys_corr_6: 2.49201113e+00 + sys_corr_7: 1.72731634e+02 + sys_corr_8: 1.49541182e+02 + sys_corr_9: 2.37139448e+02 + sys_corr_10: 5.02977721e+01 + sys_corr_11: 2.61151344e+02 + sys_corr_12: 3.95211804e+02 + sys_corr_13: -2.73359370e+02 + sys_corr_14: 6.03283060e+01 + sys_corr_15: 7.73101491e+01 + sys_corr_16: -4.15645636e+01 + sys_corr_17: 5.00382917e+01 + sys_corr_18: -2.75740230e+01 + sys_corr_19: -4.50367565e+01 + sys_corr_20: 1.15819852e+01 + sys_corr_21: 1.53011992e+01 + sys_corr_22: -1.78488484e+02 + sys_corr_23: -4.10991949e+01 + sys_corr_24: -1.60516495e+02 + sys_corr_25: -7.88469341e+01 + sys_corr_26: -1.38098483e+02 + sys_corr_27: 1.88557071e+01 + sys_corr_28: 2.34110163e+01 + sys_corr_29: 1.51645161e+01 + sys_corr_30: -6.35707153e+01 + sys_corr_31: -1.49025469e+01 + sys_corr_32: 2.73972356e-01 + sys_corr_33: 5.44656334e+00 + sys_corr_34: 1.52177875e+01 + sys_corr_35: -4.12255646e+00 + sys_corr_36: -2.53746750e+00 + sys_corr_37: -8.89627937e-02 + sys_corr_38: 2.24017134e+00 + sys_corr_39: 3.83788766e+00 + sys_corr_40: 1.23361407e+01 + sys_corr_41: -1.03488750e+00 + sys_corr_42: 1.19428640e+01 + sys_corr_43: 1.39361521e+01 + sys_corr_44: -3.51822951e+01 + sys_corr_45: -3.88167254e+00 + sys_corr_46: -3.41826731e+01 + sys_corr_47: 2.77174674e+01 + sys_corr_48: -3.53355448e+01 + sys_corr_49: -7.62361642e+00 + sys_corr_50: -3.28468639e+01 + sys_corr_51: 6.36969028e+01 + sys_corr_52: 4.78393362e+01 + sys_corr_53: 1.63154410e+01 + sys_corr_54: -2.97197721e+01 + sys_corr_55: 2.08967119e+01 + sys_corr_56: -7.22018143e+01 + sys_corr_57: 3.73312674e+01 + sys_corr_58: -2.75449578e+01 + sys_corr_59: -6.98523004e+01 + sys_corr_60: -7.47933682e+00 + sys_corr_61: 5.84052929e+00 + sys_corr_62: -8.91846931e-01 + sys_corr_63: -8.13408976e+01 + sys_corr_64: -7.96143089e+01 + sys_corr_65: 6.46937583e-01 + sys_corr_66: 3.92034468e+00 + sys_corr_67: -6.99473867e+01 + sys_corr_68: 1.60892081e+01 + sys_corr_69: 2.98420956e+00 + sys_corr_70: -5.79972330e+00 + sys_corr_71: 2.46976602e+01 + sys_corr_72: 8.59531494e+01 + sys_corr_73: -2.43395051e+01 + sys_corr_74: 8.43246940e+01 + sys_corr_75: -8.02186919e+00 + sys_corr_76: -3.46277071e+00 + sys_corr_77: 4.54427398e-01 + sys_corr_78: 1.43817656e+00 + sys_corr_79: -2.78878890e+00 + sys_corr_80: 2.57884696e+01 + sys_corr_81: 1.45772765e+01 + sys_corr_82: 1.57566567e+00 + sys_corr_83: 1.67480627e+01 + sys_corr_84: -2.10968437e+00 + sys_corr_85: 2.88062079e+00 + sys_corr_86: 1.02371072e+01 + sys_corr_87: 9.45780215e+00 + sys_corr_88: 2.85546680e+01 + sys_corr_89: -2.78004573e+00 + sys_corr_90: -1.48757417e+00 + sys_corr_91: 3.36460788e-01 + sys_corr_92: 1.03147557e+01 + sys_corr_93: -4.65818612e-01 + sys_corr_94: -2.51816407e+00 + sys_corr_95: 2.60680521e+00 + sys_corr_96: 4.41112047e-01 + sys_corr_97: -2.06755361e+00 + sys_corr_98: -1.09966228e+00 + sys_corr_99: -1.34779249e+00 + sys_corr_100: 6.92383455e-01 + sys_corr_101: 1.17158362e+00 + sys_corr_102: 2.80486654e-01 + sys_corr_103: 3.10181230e+00 + sys_corr_104: 7.73142741e-01 + sys_corr_105: 8.84294749e-01 + sys_corr_106: 4.89089422e-01 + sys_corr_107: 2.93707636e-01 + sys_corr_108: -1.67701873e-01 + sys_corr_109: 8.80045610e-02 + sys_corr_110: -1.66539034e-01 + sys_corr_111: -7.81318839e-02 + sys_corr_112: -1.22072378e-01 + sys_corr_113: -1.03302731e-01 + sys_corr_114: -1.27798513e-04 + sys_corr_115: 2.26891018e-02 + sys_corr_116: -1.88233922e-02 + sys_corr_117: -2.24777084e-02 + sys_corr_118: -3.35078857e-02 + sys_corr_119: -1.79903697e-03 + sys_corr_120: 1.68017452e-02 + sys_corr_121: 7.46665627e-03 + sys_corr_122: 6.78662778e-02 + sys_corr_123: 3.39144775e-02 + sys_corr_124: -2.68370545e-03 + sys_corr_125: -5.12501542e-02 + sys_corr_126: 1.40891736e-02 + sys_corr_127: -9.54767209e-02 + sys_corr_128: 4.25077350e-01 + sys_corr_129: 8.26900911e-02 + sys_corr_130: -6.13181437e-03 + sys_corr_131: -3.48996931e-02 + sys_corr_132: -5.76078213e-02 stat: 0.0 - luminosity: 334.50857 -- sys_corr_1: 119.3287002666203 - sys_corr_2: 49.27420729710467 - sys_corr_3: -48.5323063208692 - sys_corr_4: -169.84999572249794 - sys_corr_5: -52.06577401377491 - sys_corr_6: 22.884383864921638 - sys_corr_7: 110.76877537972845 - sys_corr_8: 122.87232404117219 - sys_corr_9: 216.81758616331138 - sys_corr_10: 47.89641350188202 - sys_corr_11: 220.59178654546704 - sys_corr_12: 329.94300854898125 - sys_corr_13: -238.77501379818315 - sys_corr_14: 44.1611061161673 - sys_corr_15: 63.28531724512091 - sys_corr_16: -45.34540610823734 - sys_corr_17: 48.29007266016267 - sys_corr_18: -22.946929366483896 - sys_corr_19: -45.631164817533914 - sys_corr_20: -5.860257653607621 - sys_corr_21: 13.916176853933232 - sys_corr_22: -286.382593654129 - sys_corr_23: -56.26366501805546 - sys_corr_24: -113.59243036802918 - sys_corr_25: -92.93994665407492 - sys_corr_26: -162.14851319515802 - sys_corr_27: 37.98073867453795 - sys_corr_28: 12.12584318586726 - sys_corr_29: 16.585661007953295 - sys_corr_30: -84.4946976483948 - sys_corr_31: 24.906992310206018 - sys_corr_32: -8.315494323557335 - sys_corr_33: 11.251497245875646 - sys_corr_34: 18.565510695544457 - sys_corr_35: -5.6437259714129695 - sys_corr_36: 0.2934005095700108 - sys_corr_37: -0.09553595778757279 - sys_corr_38: 4.137420424503938 - sys_corr_39: 12.539688016173935 - sys_corr_40: -12.135747572080014 - sys_corr_41: 31.318025845805323 - sys_corr_42: 24.87366519289336 - sys_corr_43: -23.536906458339885 - sys_corr_44: -33.300141656593105 - sys_corr_45: 11.167272050305492 - sys_corr_46: 20.911540053572153 - sys_corr_47: 9.983242778157553 - sys_corr_48: -20.535925283465158 - sys_corr_49: 16.685132151761906 - sys_corr_50: 8.035837571076755 - sys_corr_51: 20.639266947761705 - sys_corr_52: -34.233661876152404 - sys_corr_53: 52.006322019251684 - sys_corr_54: 74.32533379402128 - sys_corr_55: 78.65290974692772 - sys_corr_56: 11.816483051870017 - sys_corr_57: -56.309081472994094 - sys_corr_58: -47.70857627050797 - sys_corr_59: -19.445778167563866 - sys_corr_60: 30.68671871942097 - sys_corr_61: -10.648441072459248 - sys_corr_62: -36.944890235540726 - sys_corr_63: 26.255490695554446 - sys_corr_64: 21.014670658612896 - sys_corr_65: 13.11911141969918 - sys_corr_66: -31.96200884464724 - sys_corr_67: 99.19228391127672 - sys_corr_68: -29.69411693126087 - sys_corr_69: -22.53121750292153 - sys_corr_70: 12.803798585752121 - sys_corr_71: 33.628224462361324 - sys_corr_72: -117.79097080442203 - sys_corr_73: -14.255245787438314 - sys_corr_74: 20.928003471312046 - sys_corr_75: -11.619968423521984 - sys_corr_76: -11.868825047618355 - sys_corr_77: 0.1625317059807851 - sys_corr_78: -3.5892427921410066 - sys_corr_79: -8.902460831584476 - sys_corr_80: 12.306704999881287 - sys_corr_81: 4.816370812466818 - sys_corr_82: 17.059704969197725 - sys_corr_83: 4.1531827298586155 - sys_corr_84: -0.5826558875820561 - sys_corr_85: 3.9593730942458594 - sys_corr_86: 16.045833139734185 - sys_corr_87: 15.673180741708947 - sys_corr_88: 30.0606340885721 - sys_corr_89: -2.7064375684485715 - sys_corr_90: -4.515912900036289 - sys_corr_91: 2.7609564417427572 - sys_corr_92: -14.218327984687631 - sys_corr_93: -0.004917119989268491 - sys_corr_94: 0.43893655784925595 - sys_corr_95: 0.811524923315231 - sys_corr_96: -0.029959042064363003 - sys_corr_97: -1.0542224944835277 - sys_corr_98: -0.6130275184906612 - sys_corr_99: -0.7813317804719698 - sys_corr_100: 0.6884611833511316 - sys_corr_101: 1.2016077314702096 - sys_corr_102: 1.1197420008897558 - sys_corr_103: 1.9440996622142706 - sys_corr_104: 0.388022425988348 - sys_corr_105: 0.8300121047056181 - sys_corr_106: 0.5703123517341133 - sys_corr_107: 0.723955525004582 - sys_corr_108: -0.3090880410798912 - sys_corr_109: -0.21999653923574808 - sys_corr_110: 0.10534686850700208 - sys_corr_111: -0.06036419720247946 - sys_corr_112: -0.13343029260918865 - sys_corr_113: -0.07911968228671287 - sys_corr_114: 0.0007944869627804748 - sys_corr_115: 0.03476642751884149 - sys_corr_116: -0.023824023801633763 - sys_corr_117: -0.030918546663457776 - sys_corr_118: 0.11242392458191207 - sys_corr_119: 0.0025295946619505985 - sys_corr_120: 0.03716516330227149 - sys_corr_121: 0.007485177496743878 - sys_corr_122: 0.12350892120429495 - sys_corr_123: 0.0695507416213043 - sys_corr_124: -0.028272319966378464 - sys_corr_125: -0.09565682235915925 - sys_corr_126: 0.033491632998306056 - sys_corr_127: -0.318186772943935 - sys_corr_128: 0.21816136854468016 - sys_corr_129: -0.07962267585235595 - sys_corr_130: -0.005390221955106489 - sys_corr_131: -0.04239945449367669 - sys_corr_132: -0.007026652174442591 + luminosity: 3.34508570e+02 +- sys_corr_1: 1.19328700e+02 + sys_corr_2: 4.92742073e+01 + sys_corr_3: -4.85323063e+01 + sys_corr_4: -1.69849996e+02 + sys_corr_5: -5.20657740e+01 + sys_corr_6: 2.28843839e+01 + sys_corr_7: 1.10768775e+02 + sys_corr_8: 1.22872324e+02 + sys_corr_9: 2.16817586e+02 + sys_corr_10: 4.78964135e+01 + sys_corr_11: 2.20591787e+02 + sys_corr_12: 3.29943009e+02 + sys_corr_13: -2.38775014e+02 + sys_corr_14: 4.41611061e+01 + sys_corr_15: 6.32853172e+01 + sys_corr_16: -4.53454061e+01 + sys_corr_17: 4.82900727e+01 + sys_corr_18: -2.29469294e+01 + sys_corr_19: -4.56311648e+01 + sys_corr_20: -5.86025765e+00 + sys_corr_21: 1.39161769e+01 + sys_corr_22: -2.86382594e+02 + sys_corr_23: -5.62636650e+01 + sys_corr_24: -1.13592430e+02 + sys_corr_25: -9.29399467e+01 + sys_corr_26: -1.62148513e+02 + sys_corr_27: 3.79807387e+01 + sys_corr_28: 1.21258432e+01 + sys_corr_29: 1.65856610e+01 + sys_corr_30: -8.44946976e+01 + sys_corr_31: 2.49069923e+01 + sys_corr_32: -8.31549432e+00 + sys_corr_33: 1.12514972e+01 + sys_corr_34: 1.85655107e+01 + sys_corr_35: -5.64372597e+00 + sys_corr_36: 2.93400510e-01 + sys_corr_37: -9.55359578e-02 + sys_corr_38: 4.13742042e+00 + sys_corr_39: 1.25396880e+01 + sys_corr_40: -1.21357476e+01 + sys_corr_41: 3.13180258e+01 + sys_corr_42: 2.48736652e+01 + sys_corr_43: -2.35369065e+01 + sys_corr_44: -3.33001417e+01 + sys_corr_45: 1.11672721e+01 + sys_corr_46: 2.09115401e+01 + sys_corr_47: 9.98324278e+00 + sys_corr_48: -2.05359253e+01 + sys_corr_49: 1.66851322e+01 + sys_corr_50: 8.03583757e+00 + sys_corr_51: 2.06392669e+01 + sys_corr_52: -3.42336619e+01 + sys_corr_53: 5.20063220e+01 + sys_corr_54: 7.43253338e+01 + sys_corr_55: 7.86529097e+01 + sys_corr_56: 1.18164831e+01 + sys_corr_57: -5.63090815e+01 + sys_corr_58: -4.77085763e+01 + sys_corr_59: -1.94457782e+01 + sys_corr_60: 3.06867187e+01 + sys_corr_61: -1.06484411e+01 + sys_corr_62: -3.69448902e+01 + sys_corr_63: 2.62554907e+01 + sys_corr_64: 2.10146707e+01 + sys_corr_65: 1.31191114e+01 + sys_corr_66: -3.19620088e+01 + sys_corr_67: 9.91922839e+01 + sys_corr_68: -2.96941169e+01 + sys_corr_69: -2.25312175e+01 + sys_corr_70: 1.28037986e+01 + sys_corr_71: 3.36282245e+01 + sys_corr_72: -1.17790971e+02 + sys_corr_73: -1.42552458e+01 + sys_corr_74: 2.09280035e+01 + sys_corr_75: -1.16199684e+01 + sys_corr_76: -1.18688250e+01 + sys_corr_77: 1.62531706e-01 + sys_corr_78: -3.58924279e+00 + sys_corr_79: -8.90246083e+00 + sys_corr_80: 1.23067050e+01 + sys_corr_81: 4.81637081e+00 + sys_corr_82: 1.70597050e+01 + sys_corr_83: 4.15318273e+00 + sys_corr_84: -5.82655888e-01 + sys_corr_85: 3.95937309e+00 + sys_corr_86: 1.60458331e+01 + sys_corr_87: 1.56731807e+01 + sys_corr_88: 3.00606341e+01 + sys_corr_89: -2.70643757e+00 + sys_corr_90: -4.51591290e+00 + sys_corr_91: 2.76095644e+00 + sys_corr_92: -1.42183280e+01 + sys_corr_93: -4.91711999e-03 + sys_corr_94: 4.38936558e-01 + sys_corr_95: 8.11524923e-01 + sys_corr_96: -2.99590421e-02 + sys_corr_97: -1.05422249e+00 + sys_corr_98: -6.13027518e-01 + sys_corr_99: -7.81331780e-01 + sys_corr_100: 6.88461183e-01 + sys_corr_101: 1.20160773e+00 + sys_corr_102: 1.11974200e+00 + sys_corr_103: 1.94409966e+00 + sys_corr_104: 3.88022426e-01 + sys_corr_105: 8.30012105e-01 + sys_corr_106: 5.70312352e-01 + sys_corr_107: 7.23955525e-01 + sys_corr_108: -3.09088041e-01 + sys_corr_109: -2.19996539e-01 + sys_corr_110: 1.05346869e-01 + sys_corr_111: -6.03641972e-02 + sys_corr_112: -1.33430293e-01 + sys_corr_113: -7.91196823e-02 + sys_corr_114: 7.94486963e-04 + sys_corr_115: 3.47664275e-02 + sys_corr_116: -2.38240238e-02 + sys_corr_117: -3.09185467e-02 + sys_corr_118: 1.12423925e-01 + sys_corr_119: 2.52959466e-03 + sys_corr_120: 3.71651633e-02 + sys_corr_121: 7.48517750e-03 + sys_corr_122: 1.23508921e-01 + sys_corr_123: 6.95507416e-02 + sys_corr_124: -2.82723200e-02 + sys_corr_125: -9.56568224e-02 + sys_corr_126: 3.34916330e-02 + sys_corr_127: -3.18186773e-01 + sys_corr_128: 2.18161369e-01 + sys_corr_129: -7.96226759e-02 + sys_corr_130: -5.39022196e-03 + sys_corr_131: -4.23994545e-02 + sys_corr_132: -7.02665217e-03 stat: 0.0 - luminosity: 309.41149800000005 -- sys_corr_1: 115.36396447973611 - sys_corr_2: 75.15621705833482 - sys_corr_3: -34.647831588836155 - sys_corr_4: -165.63207924578055 - sys_corr_5: -22.922016479172285 - sys_corr_6: 51.7259784538925 - sys_corr_7: 50.331783787026815 - sys_corr_8: 86.34299183944864 - sys_corr_9: 162.9242468851792 - sys_corr_10: 41.704293496864835 - sys_corr_11: 165.2939661096646 - sys_corr_12: 251.15763793291052 - sys_corr_13: -192.535731991479 - sys_corr_14: 22.705638919062697 - sys_corr_15: 53.764954959049604 - sys_corr_16: -46.67229185379929 - sys_corr_17: 45.67582147824776 - sys_corr_18: -17.08085081838458 - sys_corr_19: -43.656692755986455 - sys_corr_20: -13.142141482602918 - sys_corr_21: 11.15145367832714 - sys_corr_22: -355.41103391221617 - sys_corr_23: -69.63071994538016 - sys_corr_24: -5.287981676129448 - sys_corr_25: -85.0352220963798 - sys_corr_26: -166.0663494410016 - sys_corr_27: 94.22560272401425 - sys_corr_28: -26.75379930094499 - sys_corr_29: 19.837856474085324 - sys_corr_30: 0.6694994891071467 - sys_corr_31: 63.21783400008478 - sys_corr_32: -2.106628607224707 - sys_corr_33: 4.35455887111525 - sys_corr_34: -2.3439571604359566 - sys_corr_35: -4.56244197209312 - sys_corr_36: -4.989641903826293 - sys_corr_37: -8.994246400828137 - sys_corr_38: -7.0580882866998715 - sys_corr_39: -1.634126308012793 - sys_corr_40: -8.2143248186742 - sys_corr_41: 12.590477091296652 - sys_corr_42: -10.945258641389922 - sys_corr_43: 5.5741387985754445 - sys_corr_44: -11.383426948795686 - sys_corr_45: -11.618931175690305 - sys_corr_46: -2.6701595725671394 - sys_corr_47: -23.36768919742924 - sys_corr_48: 15.734629546202225 - sys_corr_49: -11.234027843759792 - sys_corr_50: -8.520518354814067 - sys_corr_51: -28.083408824031846 - sys_corr_52: -1.6054818592770284 - sys_corr_53: -38.41979956994128 - sys_corr_54: -6.580577617896104 - sys_corr_55: 1.4661511510678709 - sys_corr_56: 16.86742294326546 - sys_corr_57: -18.69560987281626 - sys_corr_58: 28.035296256065294 - sys_corr_59: 56.31316495140689 - sys_corr_60: -26.322387391774498 - sys_corr_61: -12.280262644163214 - sys_corr_62: 43.67165702712451 - sys_corr_63: 15.496498718914323 - sys_corr_64: -18.703054783431625 - sys_corr_65: -11.464575345317721 - sys_corr_66: -61.086700954320065 - sys_corr_67: -62.87917535110543 - sys_corr_68: -9.393137165316729 - sys_corr_69: -3.5752492162162746 - sys_corr_70: 1.2751019450259267 - sys_corr_71: 8.324996173545768 - sys_corr_72: 29.698610604425653 - sys_corr_73: 9.828863756721045 - sys_corr_74: -129.3372233903245 - sys_corr_75: 51.060247819280875 - sys_corr_76: 66.06418943945499 - sys_corr_77: 5.500402686624968 - sys_corr_78: -9.948322744198157 - sys_corr_79: -6.10173492766465 - sys_corr_80: 19.1812311707607 - sys_corr_81: 18.74729281587632 - sys_corr_82: -11.432470887026305 - sys_corr_83: 1.2203268977829917 - sys_corr_84: -0.3769650809991792 - sys_corr_85: -3.281977306585966 - sys_corr_86: 63.725514412632435 - sys_corr_87: -8.802538456789902 - sys_corr_88: 15.913632175600316 - sys_corr_89: 4.047759780100242 - sys_corr_90: 2.786264134127494 - sys_corr_91: -3.1118643594165336 - sys_corr_92: -55.57675413485891 - sys_corr_93: 0.1662497037560402 - sys_corr_94: 0.16442745223644584 - sys_corr_95: -1.9813559680401343 - sys_corr_96: -0.046377471663482446 - sys_corr_97: -0.13066330732891054 - sys_corr_98: -0.23038322664642907 - sys_corr_99: -0.1230091841732553 - sys_corr_100: 0.17444411052386616 - sys_corr_101: 0.5810532701438623 - sys_corr_102: 1.1076479096485987 - sys_corr_103: 0.4621864124625004 - sys_corr_104: -0.3304931937988663 - sys_corr_105: 0.13528653412774588 - sys_corr_106: 0.36093602706180716 - sys_corr_107: 0.0032679615108743214 - sys_corr_108: 0.08643297878682682 - sys_corr_109: -0.16941130006060462 - sys_corr_110: -0.08220358260101544 - sys_corr_111: 0.005162631259373692 - sys_corr_112: 0.019580958654971267 - sys_corr_113: 0.12615727365936702 - sys_corr_114: -0.001289381994927622 - sys_corr_115: 0.04717755897870177 - sys_corr_116: -0.0382372924712472 - sys_corr_117: -0.02339737612251772 - sys_corr_118: -0.07726202172113542 - sys_corr_119: 0.0011223872724769554 - sys_corr_120: 0.015021713278831703 - sys_corr_121: -0.004377894112913495 - sys_corr_122: 0.014323236736953519 - sys_corr_123: 0.010204451235887355 - sys_corr_124: -0.0373631077863167 - sys_corr_125: -0.02687212906065294 - sys_corr_126: -0.005821240988157949 - sys_corr_127: -0.028168684695312463 - sys_corr_128: 0.021623397594965406 - sys_corr_129: 0.0785012156270794 - sys_corr_130: -0.0018039425959020814 - sys_corr_131: -0.02191488618591768 - sys_corr_132: 0.055052077480588754 + luminosity: 3.09411498e+02 +- sys_corr_1: 1.15363964e+02 + sys_corr_2: 7.51562171e+01 + sys_corr_3: -3.46478316e+01 + sys_corr_4: -1.65632079e+02 + sys_corr_5: -2.29220165e+01 + sys_corr_6: 5.17259785e+01 + sys_corr_7: 5.03317838e+01 + sys_corr_8: 8.63429918e+01 + sys_corr_9: 1.62924247e+02 + sys_corr_10: 4.17042935e+01 + sys_corr_11: 1.65293966e+02 + sys_corr_12: 2.51157638e+02 + sys_corr_13: -1.92535732e+02 + sys_corr_14: 2.27056389e+01 + sys_corr_15: 5.37649550e+01 + sys_corr_16: -4.66722919e+01 + sys_corr_17: 4.56758215e+01 + sys_corr_18: -1.70808508e+01 + sys_corr_19: -4.36566928e+01 + sys_corr_20: -1.31421415e+01 + sys_corr_21: 1.11514537e+01 + sys_corr_22: -3.55411034e+02 + sys_corr_23: -6.96307199e+01 + sys_corr_24: -5.28798168e+00 + sys_corr_25: -8.50352221e+01 + sys_corr_26: -1.66066349e+02 + sys_corr_27: 9.42256027e+01 + sys_corr_28: -2.67537993e+01 + sys_corr_29: 1.98378565e+01 + sys_corr_30: 6.69499489e-01 + sys_corr_31: 6.32178340e+01 + sys_corr_32: -2.10662861e+00 + sys_corr_33: 4.35455887e+00 + sys_corr_34: -2.34395716e+00 + sys_corr_35: -4.56244197e+00 + sys_corr_36: -4.98964190e+00 + sys_corr_37: -8.99424640e+00 + sys_corr_38: -7.05808829e+00 + sys_corr_39: -1.63412631e+00 + sys_corr_40: -8.21432482e+00 + sys_corr_41: 1.25904771e+01 + sys_corr_42: -1.09452586e+01 + sys_corr_43: 5.57413880e+00 + sys_corr_44: -1.13834269e+01 + sys_corr_45: -1.16189312e+01 + sys_corr_46: -2.67015957e+00 + sys_corr_47: -2.33676892e+01 + sys_corr_48: 1.57346295e+01 + sys_corr_49: -1.12340278e+01 + sys_corr_50: -8.52051835e+00 + sys_corr_51: -2.80834088e+01 + sys_corr_52: -1.60548186e+00 + sys_corr_53: -3.84197996e+01 + sys_corr_54: -6.58057762e+00 + sys_corr_55: 1.46615115e+00 + sys_corr_56: 1.68674229e+01 + sys_corr_57: -1.86956099e+01 + sys_corr_58: 2.80352963e+01 + sys_corr_59: 5.63131650e+01 + sys_corr_60: -2.63223874e+01 + sys_corr_61: -1.22802626e+01 + sys_corr_62: 4.36716570e+01 + sys_corr_63: 1.54964987e+01 + sys_corr_64: -1.87030548e+01 + sys_corr_65: -1.14645753e+01 + sys_corr_66: -6.10867010e+01 + sys_corr_67: -6.28791754e+01 + sys_corr_68: -9.39313717e+00 + sys_corr_69: -3.57524922e+00 + sys_corr_70: 1.27510195e+00 + sys_corr_71: 8.32499617e+00 + sys_corr_72: 2.96986106e+01 + sys_corr_73: 9.82886376e+00 + sys_corr_74: -1.29337223e+02 + sys_corr_75: 5.10602478e+01 + sys_corr_76: 6.60641894e+01 + sys_corr_77: 5.50040269e+00 + sys_corr_78: -9.94832274e+00 + sys_corr_79: -6.10173493e+00 + sys_corr_80: 1.91812312e+01 + sys_corr_81: 1.87472928e+01 + sys_corr_82: -1.14324709e+01 + sys_corr_83: 1.22032690e+00 + sys_corr_84: -3.76965081e-01 + sys_corr_85: -3.28197731e+00 + sys_corr_86: 6.37255144e+01 + sys_corr_87: -8.80253846e+00 + sys_corr_88: 1.59136322e+01 + sys_corr_89: 4.04775978e+00 + sys_corr_90: 2.78626413e+00 + sys_corr_91: -3.11186436e+00 + sys_corr_92: -5.55767541e+01 + sys_corr_93: 1.66249704e-01 + sys_corr_94: 1.64427452e-01 + sys_corr_95: -1.98135597e+00 + sys_corr_96: -4.63774717e-02 + sys_corr_97: -1.30663307e-01 + sys_corr_98: -2.30383227e-01 + sys_corr_99: -1.23009184e-01 + sys_corr_100: 1.74444111e-01 + sys_corr_101: 5.81053270e-01 + sys_corr_102: 1.10764791e+00 + sys_corr_103: 4.62186412e-01 + sys_corr_104: -3.30493194e-01 + sys_corr_105: 1.35286534e-01 + sys_corr_106: 3.60936027e-01 + sys_corr_107: 3.26796151e-03 + sys_corr_108: 8.64329788e-02 + sys_corr_109: -1.69411300e-01 + sys_corr_110: -8.22035826e-02 + sys_corr_111: 5.16263126e-03 + sys_corr_112: 1.95809587e-02 + sys_corr_113: 1.26157274e-01 + sys_corr_114: -1.28938199e-03 + sys_corr_115: 4.71775590e-02 + sys_corr_116: -3.82372925e-02 + sys_corr_117: -2.33973761e-02 + sys_corr_118: -7.72620217e-02 + sys_corr_119: 1.12238727e-03 + sys_corr_120: 1.50217133e-02 + sys_corr_121: -4.37789411e-03 + sys_corr_122: 1.43232367e-02 + sys_corr_123: 1.02044512e-02 + sys_corr_124: -3.73631078e-02 + sys_corr_125: -2.68721291e-02 + sys_corr_126: -5.82124099e-03 + sys_corr_127: -2.81686847e-02 + sys_corr_128: 2.16233976e-02 + sys_corr_129: 7.85012156e-02 + sys_corr_130: -1.80394260e-03 + sys_corr_131: -2.19148862e-02 + sys_corr_132: 5.50520775e-02 stat: 0.0 - luminosity: 277.542496 -- sys_corr_1: 101.19215420243312 - sys_corr_2: 86.53382533790875 - sys_corr_3: -28.824891390295438 - sys_corr_4: -142.25289014792364 - sys_corr_5: -5.775607142778228 - sys_corr_6: 68.5990626199649 - sys_corr_7: 0.4203882303992738 - sys_corr_8: 53.54817806870284 - sys_corr_9: 102.42271204590865 - sys_corr_10: 34.09614929755778 - sys_corr_11: 103.92719114903927 - sys_corr_12: 149.06374292188698 - sys_corr_13: -128.6739957341581 - sys_corr_14: 5.811520537916893 - sys_corr_15: 32.478138415951406 - sys_corr_16: -40.68628895663989 - sys_corr_17: 29.190198732693172 - sys_corr_18: -13.16913201845689 - sys_corr_19: -35.90789216959256 - sys_corr_20: -31.834850537421104 - sys_corr_21: 0.3023110727794033 - sys_corr_22: -336.9676211205067 - sys_corr_23: -57.353118779619784 - sys_corr_24: 113.0424520901392 - sys_corr_25: -66.00555485870221 - sys_corr_26: -133.10872355920458 - sys_corr_27: 133.94162902519616 - sys_corr_28: -63.47241010795913 - sys_corr_29: 4.536107618081151 - sys_corr_30: 103.80309535023534 - sys_corr_31: 84.841500611526 - sys_corr_32: 0.6599337191129246 - sys_corr_33: -1.0621782929478698 - sys_corr_34: -18.570353690060948 - sys_corr_35: -1.892519276148702 - sys_corr_36: -10.717886423233542 - sys_corr_37: -1.488410476641955 - sys_corr_38: 1.6034961869079503 - sys_corr_39: -4.329204951202073 - sys_corr_40: 0.38145748538729823 - sys_corr_41: -8.1158934332335 - sys_corr_42: -1.3661448378073515 - sys_corr_43: 5.935948273508002 - sys_corr_44: 16.19695598523555 - sys_corr_45: 1.0594813131965948 - sys_corr_46: -7.528301813332508 - sys_corr_47: -14.779686666366217 - sys_corr_48: 6.996856451425543 - sys_corr_49: -20.143287117182773 - sys_corr_50: -3.72448225921429 - sys_corr_51: -5.686932535074044 - sys_corr_52: 11.199420594791528 - sys_corr_53: 12.45328101639301 - sys_corr_54: -0.8238925868893014 - sys_corr_55: 41.04321628208659 - sys_corr_56: -26.781237920910236 - sys_corr_57: 24.614034636268926 - sys_corr_58: -25.443997128202408 - sys_corr_59: -36.108996569632346 - sys_corr_60: 33.744481848372445 - sys_corr_61: 16.490510563827712 - sys_corr_62: -72.04516983135741 - sys_corr_63: 38.87004738280022 - sys_corr_64: 7.19829506486573 - sys_corr_65: -0.44861954254602165 - sys_corr_66: 150.62612790741753 - sys_corr_67: 48.7830723694091 - sys_corr_68: -4.421277939806196 - sys_corr_69: 26.677378169063495 - sys_corr_70: -20.70559999161095 - sys_corr_71: -53.882457141015514 - sys_corr_72: 55.702173858508736 - sys_corr_73: 12.099453917669178 - sys_corr_74: -47.75510992243875 - sys_corr_75: -7.276365495352729 - sys_corr_76: -5.816420173103998 - sys_corr_77: 2.8581041866857615 - sys_corr_78: 1.912185977028187 - sys_corr_79: 5.536806943710226 - sys_corr_80: -15.127805960622883 - sys_corr_81: -17.88538442598944 - sys_corr_82: -10.35746114783771 - sys_corr_83: -16.987710875778873 - sys_corr_84: -4.345205537508421 - sys_corr_85: -1.6745167846209401 - sys_corr_86: -26.55267695001459 - sys_corr_87: -20.769852577096852 - sys_corr_88: -45.98453338894022 - sys_corr_89: 4.535126295765949 - sys_corr_90: 6.891221610372436 - sys_corr_91: 3.498078098113546 - sys_corr_92: 20.485960557551753 - sys_corr_93: 1.4826887655260674 - sys_corr_94: 7.19079944154353 - sys_corr_95: -6.208934343236558 - sys_corr_96: -0.9570388185252292 - sys_corr_97: 1.469490151724618 - sys_corr_98: 0.2564647433220349 - sys_corr_99: 0.2291304470993635 - sys_corr_100: 0.014155149884020819 - sys_corr_101: 0.6568619630081227 - sys_corr_102: 0.9023779584670333 - sys_corr_103: -1.6286779089517023 - sys_corr_104: -0.2758677570328053 - sys_corr_105: 0.06187338516681529 - sys_corr_106: -0.2031315469990393 - sys_corr_107: -0.20689726715592566 - sys_corr_108: 0.11536036455969173 - sys_corr_109: -0.03107292553541241 - sys_corr_110: 0.42310727566047346 - sys_corr_111: 0.25461202075984707 - sys_corr_112: 0.07151054313382971 - sys_corr_113: 0.08165918619459506 - sys_corr_114: 0.00024061233063194705 - sys_corr_115: -0.041363470460062335 - sys_corr_116: 0.028806290332849142 - sys_corr_117: 0.017147638923113225 - sys_corr_118: -0.10679651198038037 - sys_corr_119: -0.018747108220493098 - sys_corr_120: -0.021552616908677196 - sys_corr_121: -0.01840539364213575 - sys_corr_122: -0.05114686965831041 - sys_corr_123: -0.036599707738881944 - sys_corr_124: 0.02210180095451419 - sys_corr_125: 0.040348701558606745 - sys_corr_126: -0.022637524812511564 - sys_corr_127: -0.026581559754774466 - sys_corr_128: -0.08406386079423346 - sys_corr_129: -0.041292952233527365 - sys_corr_130: 0.0022622395290187885 - sys_corr_131: 0.01440114752338817 - sys_corr_132: 0.07845963965593121 + luminosity: 2.77542496e+02 +- sys_corr_1: 1.01192154e+02 + sys_corr_2: 8.65338253e+01 + sys_corr_3: -2.88248914e+01 + sys_corr_4: -1.42252890e+02 + sys_corr_5: -5.77560714e+00 + sys_corr_6: 6.85990626e+01 + sys_corr_7: 4.20388230e-01 + sys_corr_8: 5.35481781e+01 + sys_corr_9: 1.02422712e+02 + sys_corr_10: 3.40961493e+01 + sys_corr_11: 1.03927191e+02 + sys_corr_12: 1.49063743e+02 + sys_corr_13: -1.28673996e+02 + sys_corr_14: 5.81152054e+00 + sys_corr_15: 3.24781384e+01 + sys_corr_16: -4.06862890e+01 + sys_corr_17: 2.91901987e+01 + sys_corr_18: -1.31691320e+01 + sys_corr_19: -3.59078922e+01 + sys_corr_20: -3.18348505e+01 + sys_corr_21: 3.02311073e-01 + sys_corr_22: -3.36967621e+02 + sys_corr_23: -5.73531188e+01 + sys_corr_24: 1.13042452e+02 + sys_corr_25: -6.60055549e+01 + sys_corr_26: -1.33108724e+02 + sys_corr_27: 1.33941629e+02 + sys_corr_28: -6.34724101e+01 + sys_corr_29: 4.53610762e+00 + sys_corr_30: 1.03803095e+02 + sys_corr_31: 8.48415006e+01 + sys_corr_32: 6.59933719e-01 + sys_corr_33: -1.06217829e+00 + sys_corr_34: -1.85703537e+01 + sys_corr_35: -1.89251928e+00 + sys_corr_36: -1.07178864e+01 + sys_corr_37: -1.48841048e+00 + sys_corr_38: 1.60349619e+00 + sys_corr_39: -4.32920495e+00 + sys_corr_40: 3.81457485e-01 + sys_corr_41: -8.11589343e+00 + sys_corr_42: -1.36614484e+00 + sys_corr_43: 5.93594827e+00 + sys_corr_44: 1.61969560e+01 + sys_corr_45: 1.05948131e+00 + sys_corr_46: -7.52830181e+00 + sys_corr_47: -1.47796867e+01 + sys_corr_48: 6.99685645e+00 + sys_corr_49: -2.01432871e+01 + sys_corr_50: -3.72448226e+00 + sys_corr_51: -5.68693254e+00 + sys_corr_52: 1.11994206e+01 + sys_corr_53: 1.24532810e+01 + sys_corr_54: -8.23892587e-01 + sys_corr_55: 4.10432163e+01 + sys_corr_56: -2.67812379e+01 + sys_corr_57: 2.46140346e+01 + sys_corr_58: -2.54439971e+01 + sys_corr_59: -3.61089966e+01 + sys_corr_60: 3.37444818e+01 + sys_corr_61: 1.64905106e+01 + sys_corr_62: -7.20451698e+01 + sys_corr_63: 3.88700474e+01 + sys_corr_64: 7.19829506e+00 + sys_corr_65: -4.48619543e-01 + sys_corr_66: 1.50626128e+02 + sys_corr_67: 4.87830724e+01 + sys_corr_68: -4.42127794e+00 + sys_corr_69: 2.66773782e+01 + sys_corr_70: -2.07056000e+01 + sys_corr_71: -5.38824571e+01 + sys_corr_72: 5.57021739e+01 + sys_corr_73: 1.20994539e+01 + sys_corr_74: -4.77551099e+01 + sys_corr_75: -7.27636550e+00 + sys_corr_76: -5.81642017e+00 + sys_corr_77: 2.85810419e+00 + sys_corr_78: 1.91218598e+00 + sys_corr_79: 5.53680694e+00 + sys_corr_80: -1.51278060e+01 + sys_corr_81: -1.78853844e+01 + sys_corr_82: -1.03574611e+01 + sys_corr_83: -1.69877109e+01 + sys_corr_84: -4.34520554e+00 + sys_corr_85: -1.67451678e+00 + sys_corr_86: -2.65526770e+01 + sys_corr_87: -2.07698526e+01 + sys_corr_88: -4.59845334e+01 + sys_corr_89: 4.53512630e+00 + sys_corr_90: 6.89122161e+00 + sys_corr_91: 3.49807810e+00 + sys_corr_92: 2.04859606e+01 + sys_corr_93: 1.48268877e+00 + sys_corr_94: 7.19079944e+00 + sys_corr_95: -6.20893434e+00 + sys_corr_96: -9.57038819e-01 + sys_corr_97: 1.46949015e+00 + sys_corr_98: 2.56464743e-01 + sys_corr_99: 2.29130447e-01 + sys_corr_100: 1.41551499e-02 + sys_corr_101: 6.56861963e-01 + sys_corr_102: 9.02377958e-01 + sys_corr_103: -1.62867791e+00 + sys_corr_104: -2.75867757e-01 + sys_corr_105: 6.18733852e-02 + sys_corr_106: -2.03131547e-01 + sys_corr_107: -2.06897267e-01 + sys_corr_108: 1.15360365e-01 + sys_corr_109: -3.10729255e-02 + sys_corr_110: 4.23107276e-01 + sys_corr_111: 2.54612021e-01 + sys_corr_112: 7.15105431e-02 + sys_corr_113: 8.16591862e-02 + sys_corr_114: 2.40612331e-04 + sys_corr_115: -4.13634705e-02 + sys_corr_116: 2.88062903e-02 + sys_corr_117: 1.71476389e-02 + sys_corr_118: -1.06796512e-01 + sys_corr_119: -1.87471082e-02 + sys_corr_120: -2.15526169e-02 + sys_corr_121: -1.84053936e-02 + sys_corr_122: -5.11468697e-02 + sys_corr_123: -3.65997077e-02 + sys_corr_124: 2.21018010e-02 + sys_corr_125: 4.03487016e-02 + sys_corr_126: -2.26375248e-02 + sys_corr_127: -2.65815598e-02 + sys_corr_128: -8.40638608e-02 + sys_corr_129: -4.12929522e-02 + sys_corr_130: 2.26223953e-03 + sys_corr_131: 1.44011475e-02 + sys_corr_132: 7.84596397e-02 stat: 0.0 - luminosity: 242.393756 -- sys_corr_1: 80.32620162615477 - sys_corr_2: 77.64802370767914 - sys_corr_3: -16.033811544866605 - sys_corr_4: -87.18615554429358 - sys_corr_5: -14.153491373188848 - sys_corr_6: 60.985758157902076 - sys_corr_7: -31.550716450451475 - sys_corr_8: 25.839464560334335 - sys_corr_9: 56.32905093113105 - sys_corr_10: 27.36586721762095 - sys_corr_11: 64.56224590925058 - sys_corr_12: 85.65108281449606 - sys_corr_13: -83.3703904857231 - sys_corr_14: -6.357977191627821 - sys_corr_15: 22.500405448275114 - sys_corr_16: -34.89593971495473 - sys_corr_17: 19.694905679913163 - sys_corr_18: -6.570118618239255 - sys_corr_19: -26.31412245223809 - sys_corr_20: -29.88262100552864 - sys_corr_21: -4.832366685697646 - sys_corr_22: -271.1338229673573 - sys_corr_23: -41.61802214680771 - sys_corr_24: 130.77388796219654 - sys_corr_25: -49.66617128162822 - sys_corr_26: -116.42781369533782 - sys_corr_27: 127.66288281962971 - sys_corr_28: -56.851720918481554 - sys_corr_29: -1.3197116581910986 - sys_corr_30: 114.8768745608177 - sys_corr_31: 73.1033221568717 - sys_corr_32: 0.5095413133308075 - sys_corr_33: -2.4654120565157913 - sys_corr_34: -9.134412748457684 - sys_corr_35: -5.8981398611412335 - sys_corr_36: -19.234527658677724 - sys_corr_37: 5.031492993967589 - sys_corr_38: 5.545246099719336 - sys_corr_39: -6.066291735974413 - sys_corr_40: 11.37548399650772 - sys_corr_41: -10.66227958929333 - sys_corr_42: -1.7589596163604382 - sys_corr_43: 5.14404073045953 - sys_corr_44: 4.774246848143452 - sys_corr_45: 7.534136057539067 - sys_corr_46: -7.201229321897702 - sys_corr_47: 1.9339948058563767 - sys_corr_48: 14.325686654059664 - sys_corr_49: 0.08345383861052363 - sys_corr_50: 21.236009962008406 - sys_corr_51: 14.700160208361584 - sys_corr_52: -5.708955907997766 - sys_corr_53: -3.7763914521420143 - sys_corr_54: -16.6316649079859 - sys_corr_55: -52.4499029430447 - sys_corr_56: 3.2167506661509324 - sys_corr_57: 2.508202533331969 - sys_corr_58: 7.403122645994104 - sys_corr_59: 16.040847315933753 - sys_corr_60: -11.060284718515748 - sys_corr_61: -1.1142583993671373 - sys_corr_62: 34.07219026197243 - sys_corr_63: -28.341422840635776 - sys_corr_64: -14.91124186532569 - sys_corr_65: 4.418474208417983 - sys_corr_66: -97.0440886521962 - sys_corr_67: -28.55126888821165 - sys_corr_68: -2.3481854281317758 - sys_corr_69: -38.7422341947783 - sys_corr_70: 5.077284024632813 - sys_corr_71: 75.96804667271218 - sys_corr_72: -27.591800721612266 - sys_corr_73: 41.12367769664299 - sys_corr_74: 21.598127274647364 - sys_corr_75: -42.37695202741949 - sys_corr_76: -47.30971155443627 - sys_corr_77: -15.365496342905768 - sys_corr_78: 18.955533523295784 - sys_corr_79: 4.142154955926952 - sys_corr_80: -60.57158670147893 - sys_corr_81: -16.26505219216109 - sys_corr_82: -0.14218035726221487 - sys_corr_83: -10.798365883182827 - sys_corr_84: -5.570245557533737 - sys_corr_85: -3.6464384892937054 - sys_corr_86: -88.65475149002648 - sys_corr_87: -8.64906338454656 - sys_corr_88: -66.98546353846314 - sys_corr_89: 2.9556287336414466 - sys_corr_90: 3.733282296378965 - sys_corr_91: 6.18794532275782 - sys_corr_92: 39.705054157481214 - sys_corr_93: 3.3019654604956985 - sys_corr_94: 15.820998497219662 - sys_corr_95: -16.89439800941338 - sys_corr_96: -2.3377506773189567 - sys_corr_97: 4.1330450662000295 - sys_corr_98: 1.0875577835443857 - sys_corr_99: 0.7968398607972126 - sys_corr_100: -0.10142861281188774 - sys_corr_101: 0.3782712993055723 - sys_corr_102: 0.37777130074482845 - sys_corr_103: -4.8881735967008915 - sys_corr_104: 0.6645074689446651 - sys_corr_105: -0.28904276263799644 - sys_corr_106: -0.7169086658722932 - sys_corr_107: -0.9481003412551686 - sys_corr_108: 0.05899577394959217 - sys_corr_109: 0.15980631881331636 - sys_corr_110: 1.065738497014861 - sys_corr_111: 0.3012617157882547 - sys_corr_112: 0.17895929520793336 - sys_corr_113: 0.17263608628925592 - sys_corr_114: -0.0009171437939794116 - sys_corr_115: -0.13289489588997233 - sys_corr_116: 0.028059289379470904 - sys_corr_117: 0.015927680104553317 - sys_corr_118: -0.061778509646382734 - sys_corr_119: -0.0024208261322333333 - sys_corr_120: -0.021868633723019074 - sys_corr_121: -0.012872442299906186 - sys_corr_122: -0.05572046459149726 - sys_corr_123: -0.036590038904452026 - sys_corr_124: 0.0022336007515020443 - sys_corr_125: 0.040855877686795196 - sys_corr_126: -0.01928170752364148 - sys_corr_127: 0.36767368690747027 - sys_corr_128: -0.42326805293466524 - sys_corr_129: -0.03412660119079015 - sys_corr_130: -0.0006560577609431913 - sys_corr_131: 0.020592181602729066 - sys_corr_132: -0.017489686765399554 + luminosity: 2.42393756e+02 +- sys_corr_1: 8.03262016e+01 + sys_corr_2: 7.76480237e+01 + sys_corr_3: -1.60338115e+01 + sys_corr_4: -8.71861555e+01 + sys_corr_5: -1.41534914e+01 + sys_corr_6: 6.09857582e+01 + sys_corr_7: -3.15507165e+01 + sys_corr_8: 2.58394646e+01 + sys_corr_9: 5.63290509e+01 + sys_corr_10: 2.73658672e+01 + sys_corr_11: 6.45622459e+01 + sys_corr_12: 8.56510828e+01 + sys_corr_13: -8.33703905e+01 + sys_corr_14: -6.35797719e+00 + sys_corr_15: 2.25004054e+01 + sys_corr_16: -3.48959397e+01 + sys_corr_17: 1.96949057e+01 + sys_corr_18: -6.57011862e+00 + sys_corr_19: -2.63141225e+01 + sys_corr_20: -2.98826210e+01 + sys_corr_21: -4.83236669e+00 + sys_corr_22: -2.71133823e+02 + sys_corr_23: -4.16180221e+01 + sys_corr_24: 1.30773888e+02 + sys_corr_25: -4.96661713e+01 + sys_corr_26: -1.16427814e+02 + sys_corr_27: 1.27662883e+02 + sys_corr_28: -5.68517209e+01 + sys_corr_29: -1.31971166e+00 + sys_corr_30: 1.14876875e+02 + sys_corr_31: 7.31033222e+01 + sys_corr_32: 5.09541313e-01 + sys_corr_33: -2.46541206e+00 + sys_corr_34: -9.13441275e+00 + sys_corr_35: -5.89813986e+00 + sys_corr_36: -1.92345277e+01 + sys_corr_37: 5.03149299e+00 + sys_corr_38: 5.54524610e+00 + sys_corr_39: -6.06629174e+00 + sys_corr_40: 1.13754840e+01 + sys_corr_41: -1.06622796e+01 + sys_corr_42: -1.75895962e+00 + sys_corr_43: 5.14404073e+00 + sys_corr_44: 4.77424685e+00 + sys_corr_45: 7.53413606e+00 + sys_corr_46: -7.20122932e+00 + sys_corr_47: 1.93399481e+00 + sys_corr_48: 1.43256867e+01 + sys_corr_49: 8.34538386e-02 + sys_corr_50: 2.12360100e+01 + sys_corr_51: 1.47001602e+01 + sys_corr_52: -5.70895591e+00 + sys_corr_53: -3.77639145e+00 + sys_corr_54: -1.66316649e+01 + sys_corr_55: -5.24499029e+01 + sys_corr_56: 3.21675067e+00 + sys_corr_57: 2.50820253e+00 + sys_corr_58: 7.40312265e+00 + sys_corr_59: 1.60408473e+01 + sys_corr_60: -1.10602847e+01 + sys_corr_61: -1.11425840e+00 + sys_corr_62: 3.40721903e+01 + sys_corr_63: -2.83414228e+01 + sys_corr_64: -1.49112419e+01 + sys_corr_65: 4.41847421e+00 + sys_corr_66: -9.70440887e+01 + sys_corr_67: -2.85512689e+01 + sys_corr_68: -2.34818543e+00 + sys_corr_69: -3.87422342e+01 + sys_corr_70: 5.07728402e+00 + sys_corr_71: 7.59680467e+01 + sys_corr_72: -2.75918007e+01 + sys_corr_73: 4.11236777e+01 + sys_corr_74: 2.15981273e+01 + sys_corr_75: -4.23769520e+01 + sys_corr_76: -4.73097116e+01 + sys_corr_77: -1.53654963e+01 + sys_corr_78: 1.89555335e+01 + sys_corr_79: 4.14215496e+00 + sys_corr_80: -6.05715867e+01 + sys_corr_81: -1.62650522e+01 + sys_corr_82: -1.42180357e-01 + sys_corr_83: -1.07983659e+01 + sys_corr_84: -5.57024556e+00 + sys_corr_85: -3.64643849e+00 + sys_corr_86: -8.86547515e+01 + sys_corr_87: -8.64906338e+00 + sys_corr_88: -6.69854635e+01 + sys_corr_89: 2.95562873e+00 + sys_corr_90: 3.73328230e+00 + sys_corr_91: 6.18794532e+00 + sys_corr_92: 3.97050542e+01 + sys_corr_93: 3.30196546e+00 + sys_corr_94: 1.58209985e+01 + sys_corr_95: -1.68943980e+01 + sys_corr_96: -2.33775068e+00 + sys_corr_97: 4.13304507e+00 + sys_corr_98: 1.08755778e+00 + sys_corr_99: 7.96839861e-01 + sys_corr_100: -1.01428613e-01 + sys_corr_101: 3.78271299e-01 + sys_corr_102: 3.77771301e-01 + sys_corr_103: -4.88817360e+00 + sys_corr_104: 6.64507469e-01 + sys_corr_105: -2.89042763e-01 + sys_corr_106: -7.16908666e-01 + sys_corr_107: -9.48100341e-01 + sys_corr_108: 5.89957739e-02 + sys_corr_109: 1.59806319e-01 + sys_corr_110: 1.06573850e+00 + sys_corr_111: 3.01261716e-01 + sys_corr_112: 1.78959295e-01 + sys_corr_113: 1.72636086e-01 + sys_corr_114: -9.17143794e-04 + sys_corr_115: -1.32894896e-01 + sys_corr_116: 2.80592894e-02 + sys_corr_117: 1.59276801e-02 + sys_corr_118: -6.17785096e-02 + sys_corr_119: -2.42082613e-03 + sys_corr_120: -2.18686337e-02 + sys_corr_121: -1.28724423e-02 + sys_corr_122: -5.57204646e-02 + sys_corr_123: -3.65900389e-02 + sys_corr_124: 2.23360075e-03 + sys_corr_125: 4.08558777e-02 + sys_corr_126: -1.92817075e-02 + sys_corr_127: 3.67673687e-01 + sys_corr_128: -4.23268053e-01 + sys_corr_129: -3.41266012e-02 + sys_corr_130: -6.56057761e-04 + sys_corr_131: 2.05921816e-02 + sys_corr_132: -1.74896868e-02 stat: 0.0 - luminosity: 184.882214 -- sys_corr_1: 72.94614808216468 - sys_corr_2: 64.40502537971771 - sys_corr_3: 25.865716241017665 - sys_corr_4: -61.774658064468305 - sys_corr_5: -16.62886707107869 - sys_corr_6: 53.399723115461086 - sys_corr_7: -39.779060617947486 - sys_corr_8: 13.508230117422327 - sys_corr_9: 28.39545054845234 - sys_corr_10: 22.680478665505373 - sys_corr_11: 36.360853452490026 - sys_corr_12: 31.142779595495192 - sys_corr_13: -45.129675562886355 - sys_corr_14: -9.582054410999172 - sys_corr_15: 12.473980875383674 - sys_corr_16: -22.360700276670197 - sys_corr_17: 13.976480569723673 - sys_corr_18: -6.491246215251101 - sys_corr_19: -17.386337411335017 - sys_corr_20: -30.83885400514026 - sys_corr_21: -6.0650274471174015 - sys_corr_22: -192.09448269112647 - sys_corr_23: -32.476802724335855 - sys_corr_24: 163.85427338004826 - sys_corr_25: -34.33562817640518 - sys_corr_26: -83.17680391487129 - sys_corr_27: 124.31005235865128 - sys_corr_28: -60.123844043241334 - sys_corr_29: -15.566199486870655 - sys_corr_30: 144.94147228870273 - sys_corr_31: 41.84250808174348 - sys_corr_32: 6.463361930165717 - sys_corr_33: -6.668155542028086 - sys_corr_34: -15.163348951113516 - sys_corr_35: -3.9261031054534405 - sys_corr_36: -21.281979318714594 - sys_corr_37: 4.045097158673272 - sys_corr_38: 3.672825886391847 - sys_corr_39: -10.467513687961809 - sys_corr_40: 16.269517886940314 - sys_corr_41: -24.297993453465175 - sys_corr_42: 3.5761642289502182 - sys_corr_43: 12.084201128006097 - sys_corr_44: 20.33091042803316 - sys_corr_45: 2.789110489547423 - sys_corr_46: -12.402120389157286 - sys_corr_47: -1.6492424265829106 - sys_corr_48: 1.0807243918186489 - sys_corr_49: 2.2147926101381152 - sys_corr_50: 41.98242543893633 - sys_corr_51: 12.287914054165977 - sys_corr_52: -15.808141868078378 - sys_corr_53: -27.366052525811366 - sys_corr_54: -28.70717025009456 - sys_corr_55: -92.77219344293981 - sys_corr_56: 6.112401968988835 - sys_corr_57: 22.46050225811483 - sys_corr_58: 46.04540006254316 - sys_corr_59: 2.355843215915466 - sys_corr_60: -12.764166890529921 - sys_corr_61: 23.84416759584653 - sys_corr_62: 34.39098590851109 - sys_corr_63: 14.148518522604926 - sys_corr_64: 64.65394772931646 - sys_corr_65: 3.2703322142567632 - sys_corr_66: 28.499488795114765 - sys_corr_67: -15.484633185945496 - sys_corr_68: 30.354443571478313 - sys_corr_69: 10.223975871618789 - sys_corr_70: 17.999787952640435 - sys_corr_71: -63.47443070881137 - sys_corr_72: -63.378053842322686 - sys_corr_73: -62.18598017117489 - sys_corr_74: 99.23926912495241 - sys_corr_75: 9.484864596793013 - sys_corr_76: 21.576121515809014 - sys_corr_77: -0.49010686405294135 - sys_corr_78: -6.0158789492650415 - sys_corr_79: -0.08376758912333482 - sys_corr_80: 24.227412222850248 - sys_corr_81: 17.44514917746819 - sys_corr_82: 14.368775910250196 - sys_corr_83: 10.939980714928627 - sys_corr_84: 10.511410661357527 - sys_corr_85: -9.712730688173943 - sys_corr_86: 46.78833336458388 - sys_corr_87: 28.02905542035884 - sys_corr_88: 68.37719019942163 - sys_corr_89: -4.471903173479442 - sys_corr_90: -1.5742121141770744 - sys_corr_91: -7.779223232213001 - sys_corr_92: -7.870523253661023 - sys_corr_93: 3.553918493799514 - sys_corr_94: 15.714431589312357 - sys_corr_95: -12.66849424038079 - sys_corr_96: -1.481279985286397 - sys_corr_97: 1.9041343363522714 - sys_corr_98: 0.23650990113069967 - sys_corr_99: -0.011401529922752136 - sys_corr_100: 0.08390544906238923 - sys_corr_101: 0.13282687612316657 - sys_corr_102: -2.421675889109404 - sys_corr_103: -3.4631074640525057 - sys_corr_104: 2.1120122081985744 - sys_corr_105: 0.05043516285902946 - sys_corr_106: 0.09836269468732649 - sys_corr_107: -0.15370213240021505 - sys_corr_108: 0.32185253031940964 - sys_corr_109: 0.12719569020549093 - sys_corr_110: -0.10014793654723277 - sys_corr_111: 0.14414664234015995 - sys_corr_112: 0.13237900916420056 - sys_corr_113: 0.24241515359938567 - sys_corr_114: 0.006359652830269845 - sys_corr_115: 0.23541741964680887 - sys_corr_116: -0.058627421556268586 - sys_corr_117: -0.030619448074374712 - sys_corr_118: 0.1711207401919604 - sys_corr_119: -0.0021588268806647447 - sys_corr_120: 0.03783119154025375 - sys_corr_121: 0.011408006295621588 - sys_corr_122: 0.0571152746232117 - sys_corr_123: 0.026359100703745256 - sys_corr_124: -0.015915242033667922 - sys_corr_125: -0.05967931669008497 - sys_corr_126: 0.005962939183362924 - sys_corr_127: 0.35961687661256975 - sys_corr_128: -0.12738678821655772 - sys_corr_129: 0.24161819197075787 - sys_corr_130: -0.01897683540491338 - sys_corr_131: -0.03209241790571962 - sys_corr_132: -0.03265621574067351 + luminosity: 1.84882214e+02 +- sys_corr_1: 7.29461481e+01 + sys_corr_2: 6.44050254e+01 + sys_corr_3: 2.58657162e+01 + sys_corr_4: -6.17746581e+01 + sys_corr_5: -1.66288671e+01 + sys_corr_6: 5.33997231e+01 + sys_corr_7: -3.97790606e+01 + sys_corr_8: 1.35082301e+01 + sys_corr_9: 2.83954505e+01 + sys_corr_10: 2.26804787e+01 + sys_corr_11: 3.63608535e+01 + sys_corr_12: 3.11427796e+01 + sys_corr_13: -4.51296756e+01 + sys_corr_14: -9.58205441e+00 + sys_corr_15: 1.24739809e+01 + sys_corr_16: -2.23607003e+01 + sys_corr_17: 1.39764806e+01 + sys_corr_18: -6.49124622e+00 + sys_corr_19: -1.73863374e+01 + sys_corr_20: -3.08388540e+01 + sys_corr_21: -6.06502745e+00 + sys_corr_22: -1.92094483e+02 + sys_corr_23: -3.24768027e+01 + sys_corr_24: 1.63854273e+02 + sys_corr_25: -3.43356282e+01 + sys_corr_26: -8.31768039e+01 + sys_corr_27: 1.24310052e+02 + sys_corr_28: -6.01238440e+01 + sys_corr_29: -1.55661995e+01 + sys_corr_30: 1.44941472e+02 + sys_corr_31: 4.18425081e+01 + sys_corr_32: 6.46336193e+00 + sys_corr_33: -6.66815554e+00 + sys_corr_34: -1.51633490e+01 + sys_corr_35: -3.92610311e+00 + sys_corr_36: -2.12819793e+01 + sys_corr_37: 4.04509716e+00 + sys_corr_38: 3.67282589e+00 + sys_corr_39: -1.04675137e+01 + sys_corr_40: 1.62695179e+01 + sys_corr_41: -2.42979935e+01 + sys_corr_42: 3.57616423e+00 + sys_corr_43: 1.20842011e+01 + sys_corr_44: 2.03309104e+01 + sys_corr_45: 2.78911049e+00 + sys_corr_46: -1.24021204e+01 + sys_corr_47: -1.64924243e+00 + sys_corr_48: 1.08072439e+00 + sys_corr_49: 2.21479261e+00 + sys_corr_50: 4.19824254e+01 + sys_corr_51: 1.22879141e+01 + sys_corr_52: -1.58081419e+01 + sys_corr_53: -2.73660525e+01 + sys_corr_54: -2.87071703e+01 + sys_corr_55: -9.27721934e+01 + sys_corr_56: 6.11240197e+00 + sys_corr_57: 2.24605023e+01 + sys_corr_58: 4.60454001e+01 + sys_corr_59: 2.35584322e+00 + sys_corr_60: -1.27641669e+01 + sys_corr_61: 2.38441676e+01 + sys_corr_62: 3.43909859e+01 + sys_corr_63: 1.41485185e+01 + sys_corr_64: 6.46539477e+01 + sys_corr_65: 3.27033221e+00 + sys_corr_66: 2.84994888e+01 + sys_corr_67: -1.54846332e+01 + sys_corr_68: 3.03544436e+01 + sys_corr_69: 1.02239759e+01 + sys_corr_70: 1.79997880e+01 + sys_corr_71: -6.34744307e+01 + sys_corr_72: -6.33780538e+01 + sys_corr_73: -6.21859802e+01 + sys_corr_74: 9.92392691e+01 + sys_corr_75: 9.48486460e+00 + sys_corr_76: 2.15761215e+01 + sys_corr_77: -4.90106864e-01 + sys_corr_78: -6.01587895e+00 + sys_corr_79: -8.37675891e-02 + sys_corr_80: 2.42274122e+01 + sys_corr_81: 1.74451492e+01 + sys_corr_82: 1.43687759e+01 + sys_corr_83: 1.09399807e+01 + sys_corr_84: 1.05114107e+01 + sys_corr_85: -9.71273069e+00 + sys_corr_86: 4.67883334e+01 + sys_corr_87: 2.80290554e+01 + sys_corr_88: 6.83771902e+01 + sys_corr_89: -4.47190317e+00 + sys_corr_90: -1.57421211e+00 + sys_corr_91: -7.77922323e+00 + sys_corr_92: -7.87052325e+00 + sys_corr_93: 3.55391849e+00 + sys_corr_94: 1.57144316e+01 + sys_corr_95: -1.26684942e+01 + sys_corr_96: -1.48127999e+00 + sys_corr_97: 1.90413434e+00 + sys_corr_98: 2.36509901e-01 + sys_corr_99: -1.14015299e-02 + sys_corr_100: 8.39054491e-02 + sys_corr_101: 1.32826876e-01 + sys_corr_102: -2.42167589e+00 + sys_corr_103: -3.46310746e+00 + sys_corr_104: 2.11201221e+00 + sys_corr_105: 5.04351629e-02 + sys_corr_106: 9.83626947e-02 + sys_corr_107: -1.53702132e-01 + sys_corr_108: 3.21852530e-01 + sys_corr_109: 1.27195690e-01 + sys_corr_110: -1.00147937e-01 + sys_corr_111: 1.44146642e-01 + sys_corr_112: 1.32379009e-01 + sys_corr_113: 2.42415154e-01 + sys_corr_114: 6.35965283e-03 + sys_corr_115: 2.35417420e-01 + sys_corr_116: -5.86274216e-02 + sys_corr_117: -3.06194481e-02 + sys_corr_118: 1.71120740e-01 + sys_corr_119: -2.15882688e-03 + sys_corr_120: 3.78311915e-02 + sys_corr_121: 1.14080063e-02 + sys_corr_122: 5.71152746e-02 + sys_corr_123: 2.63591007e-02 + sys_corr_124: -1.59152420e-02 + sys_corr_125: -5.96793167e-02 + sys_corr_126: 5.96293918e-03 + sys_corr_127: 3.59616877e-01 + sys_corr_128: -1.27386788e-01 + sys_corr_129: 2.41618192e-01 + sys_corr_130: -1.89768354e-02 + sys_corr_131: -3.20924179e-02 + sys_corr_132: -3.26562157e-02 stat: 0.0 - luminosity: 120.13718200000001 -- sys_corr_1: 25.001142010250252 - sys_corr_2: 16.657361185737837 - sys_corr_3: 5.631631494282014 - sys_corr_4: -24.599119759505786 - sys_corr_5: -6.3728216527198205 - sys_corr_6: 28.33002179259296 - sys_corr_7: -12.328416019178682 - sys_corr_8: 6.841441243460826 - sys_corr_9: 5.253344649917271 - sys_corr_10: 11.309540869642671 - sys_corr_11: 15.56706019830453 - sys_corr_12: 13.662207082005782 - sys_corr_13: -13.636832315672446 - sys_corr_14: -3.7694599735376393 - sys_corr_15: 3.8102988618312827 - sys_corr_16: -5.417937996957908 - sys_corr_17: 6.071276505339942 - sys_corr_18: -1.9929721643110792 - sys_corr_19: -8.990098685649892 - sys_corr_20: -14.644962905106594 - sys_corr_21: -2.9566362215383295 - sys_corr_22: -76.48938265366075 - sys_corr_23: -11.660673107907705 - sys_corr_24: 61.82222790438527 - sys_corr_25: -13.776666776643744 - sys_corr_26: -35.72986926654183 - sys_corr_27: 48.53501844488684 - sys_corr_28: -23.891723738127546 - sys_corr_29: -3.401898970281446 - sys_corr_30: 57.64388939664704 - sys_corr_31: 14.775619453228106 - sys_corr_32: 0.5870554257886088 - sys_corr_33: -3.49930329647819 - sys_corr_34: 0.36426848816109614 - sys_corr_35: -3.365041804611655 - sys_corr_36: -9.228337649908623 - sys_corr_37: 4.287896783342346 - sys_corr_38: 3.8364587377095303 - sys_corr_39: -1.1660055009646004 - sys_corr_40: 8.305849536116225 - sys_corr_41: -8.075957915551914 - sys_corr_42: -1.2542468168612575 - sys_corr_43: 7.4947860536673865 - sys_corr_44: 0.2838072382884885 - sys_corr_45: 1.525191600253333 - sys_corr_46: -4.301134173115083 - sys_corr_47: -1.9475811192291217 - sys_corr_48: 1.1632862990212272 - sys_corr_49: 2.578887671704982 - sys_corr_50: 16.190791637661572 - sys_corr_51: 7.001167023098362 - sys_corr_52: -7.468343092684204 - sys_corr_53: -3.229201221288729 - sys_corr_54: -6.966394861630362 - sys_corr_55: -19.70377538862316 - sys_corr_56: 0.3416180330904133 - sys_corr_57: 1.5696964185852005 - sys_corr_58: 6.529923228780123 - sys_corr_59: 1.0593193812402866 - sys_corr_60: -3.423765018922534 - sys_corr_61: 5.2165072718164 - sys_corr_62: 7.915821506877833 - sys_corr_63: -0.7943267322554435 - sys_corr_64: 8.42770221228293 - sys_corr_65: 2.3450975423153286 - sys_corr_66: -4.299898478249817 - sys_corr_67: -1.2864750610163376 - sys_corr_68: 0.15897529570088387 - sys_corr_69: -2.5252692587835393 - sys_corr_70: 3.619827749486203 - sys_corr_71: -2.519824791978611 - sys_corr_72: -11.255439468989948 - sys_corr_73: -1.191914413996276 - sys_corr_74: 7.849776717425175 - sys_corr_75: -6.266083159094142 - sys_corr_76: -4.354537416341394 - sys_corr_77: 7.65634365197818 - sys_corr_78: -0.30621627873152674 - sys_corr_79: 1.882744521536981 - sys_corr_80: -5.197752482368026 - sys_corr_81: -5.602405949347194 - sys_corr_82: 0.2704658527944565 - sys_corr_83: -2.851905013431656 - sys_corr_84: -9.840111651051517 - sys_corr_85: 8.247379408366848 - sys_corr_86: -7.6006486566385645 - sys_corr_87: -6.642000600104812 - sys_corr_88: -4.706355881254598 - sys_corr_89: 1.6274403817750351 - sys_corr_90: 4.2048192759963054 - sys_corr_91: 10.827457650116935 - sys_corr_92: 4.128580866851791 - sys_corr_93: -20.55671591152569 - sys_corr_94: -95.84962578874905 - sys_corr_95: 104.86615872925951 - sys_corr_96: 13.312075366555177 - sys_corr_97: -33.251136802224316 - sys_corr_98: -6.081361134005277 - sys_corr_99: -7.101776225087296 - sys_corr_100: 4.292000518529998 - sys_corr_101: 6.404244619648989 - sys_corr_102: 5.095241801088976 - sys_corr_103: 6.72703259044087 - sys_corr_104: 3.193287570015785 - sys_corr_105: 5.307751841935654 - sys_corr_106: 4.451264621348955 - sys_corr_107: 4.138770867787583 - sys_corr_108: -0.0866925391909794 - sys_corr_109: 0.05807666007135797 - sys_corr_110: -5.261517187496838 - sys_corr_111: -1.8371328593170457 - sys_corr_112: 0.042533209043503356 - sys_corr_113: -0.2850985043245771 - sys_corr_114: 0.004147089700209965 - sys_corr_115: -0.30033414807491926 - sys_corr_116: -0.11115956234244101 - sys_corr_117: -0.07926411075930712 - sys_corr_118: -0.1281808355662205 - sys_corr_119: 0.01883487590445838 - sys_corr_120: 0.07299098499355033 - sys_corr_121: 0.0233915429238664 - sys_corr_122: 0.02500377789422187 - sys_corr_123: 0.01782340118777694 - sys_corr_124: -0.1889134748147998 - sys_corr_125: -0.03347688378815426 - sys_corr_126: 0.0033754424916970427 - sys_corr_127: 0.96239540815578 - sys_corr_128: -1.429526923540158 - sys_corr_129: 0.1386427256633039 - sys_corr_130: -0.015889309333596505 - sys_corr_131: -0.043956235665582814 - sys_corr_132: 0.1167190095071564 + luminosity: 1.20137182e+02 +- sys_corr_1: 2.50011420e+01 + sys_corr_2: 1.66573612e+01 + sys_corr_3: 5.63163149e+00 + sys_corr_4: -2.45991198e+01 + sys_corr_5: -6.37282165e+00 + sys_corr_6: 2.83300218e+01 + sys_corr_7: -1.23284160e+01 + sys_corr_8: 6.84144124e+00 + sys_corr_9: 5.25334465e+00 + sys_corr_10: 1.13095409e+01 + sys_corr_11: 1.55670602e+01 + sys_corr_12: 1.36622071e+01 + sys_corr_13: -1.36368323e+01 + sys_corr_14: -3.76945997e+00 + sys_corr_15: 3.81029886e+00 + sys_corr_16: -5.41793800e+00 + sys_corr_17: 6.07127651e+00 + sys_corr_18: -1.99297216e+00 + sys_corr_19: -8.99009869e+00 + sys_corr_20: -1.46449629e+01 + sys_corr_21: -2.95663622e+00 + sys_corr_22: -7.64893827e+01 + sys_corr_23: -1.16606731e+01 + sys_corr_24: 6.18222279e+01 + sys_corr_25: -1.37766668e+01 + sys_corr_26: -3.57298693e+01 + sys_corr_27: 4.85350184e+01 + sys_corr_28: -2.38917237e+01 + sys_corr_29: -3.40189897e+00 + sys_corr_30: 5.76438894e+01 + sys_corr_31: 1.47756195e+01 + sys_corr_32: 5.87055426e-01 + sys_corr_33: -3.49930330e+00 + sys_corr_34: 3.64268488e-01 + sys_corr_35: -3.36504180e+00 + sys_corr_36: -9.22833765e+00 + sys_corr_37: 4.28789678e+00 + sys_corr_38: 3.83645874e+00 + sys_corr_39: -1.16600550e+00 + sys_corr_40: 8.30584954e+00 + sys_corr_41: -8.07595792e+00 + sys_corr_42: -1.25424682e+00 + sys_corr_43: 7.49478605e+00 + sys_corr_44: 2.83807238e-01 + sys_corr_45: 1.52519160e+00 + sys_corr_46: -4.30113417e+00 + sys_corr_47: -1.94758112e+00 + sys_corr_48: 1.16328630e+00 + sys_corr_49: 2.57888767e+00 + sys_corr_50: 1.61907916e+01 + sys_corr_51: 7.00116702e+00 + sys_corr_52: -7.46834309e+00 + sys_corr_53: -3.22920122e+00 + sys_corr_54: -6.96639486e+00 + sys_corr_55: -1.97037754e+01 + sys_corr_56: 3.41618033e-01 + sys_corr_57: 1.56969642e+00 + sys_corr_58: 6.52992323e+00 + sys_corr_59: 1.05931938e+00 + sys_corr_60: -3.42376502e+00 + sys_corr_61: 5.21650727e+00 + sys_corr_62: 7.91582151e+00 + sys_corr_63: -7.94326732e-01 + sys_corr_64: 8.42770221e+00 + sys_corr_65: 2.34509754e+00 + sys_corr_66: -4.29989848e+00 + sys_corr_67: -1.28647506e+00 + sys_corr_68: 1.58975296e-01 + sys_corr_69: -2.52526926e+00 + sys_corr_70: 3.61982775e+00 + sys_corr_71: -2.51982479e+00 + sys_corr_72: -1.12554395e+01 + sys_corr_73: -1.19191441e+00 + sys_corr_74: 7.84977672e+00 + sys_corr_75: -6.26608316e+00 + sys_corr_76: -4.35453742e+00 + sys_corr_77: 7.65634365e+00 + sys_corr_78: -3.06216279e-01 + sys_corr_79: 1.88274452e+00 + sys_corr_80: -5.19775248e+00 + sys_corr_81: -5.60240595e+00 + sys_corr_82: 2.70465853e-01 + sys_corr_83: -2.85190501e+00 + sys_corr_84: -9.84011165e+00 + sys_corr_85: 8.24737941e+00 + sys_corr_86: -7.60064866e+00 + sys_corr_87: -6.64200060e+00 + sys_corr_88: -4.70635588e+00 + sys_corr_89: 1.62744038e+00 + sys_corr_90: 4.20481928e+00 + sys_corr_91: 1.08274577e+01 + sys_corr_92: 4.12858087e+00 + sys_corr_93: -2.05567159e+01 + sys_corr_94: -9.58496258e+01 + sys_corr_95: 1.04866159e+02 + sys_corr_96: 1.33120754e+01 + sys_corr_97: -3.32511368e+01 + sys_corr_98: -6.08136113e+00 + sys_corr_99: -7.10177623e+00 + sys_corr_100: 4.29200052e+00 + sys_corr_101: 6.40424462e+00 + sys_corr_102: 5.09524180e+00 + sys_corr_103: 6.72703259e+00 + sys_corr_104: 3.19328757e+00 + sys_corr_105: 5.30775184e+00 + sys_corr_106: 4.45126462e+00 + sys_corr_107: 4.13877087e+00 + sys_corr_108: -8.66925392e-02 + sys_corr_109: 5.80766601e-02 + sys_corr_110: -5.26151719e+00 + sys_corr_111: -1.83713286e+00 + sys_corr_112: 4.25332090e-02 + sys_corr_113: -2.85098504e-01 + sys_corr_114: 4.14708970e-03 + sys_corr_115: -3.00334148e-01 + sys_corr_116: -1.11159562e-01 + sys_corr_117: -7.92641108e-02 + sys_corr_118: -1.28180836e-01 + sys_corr_119: 1.88348759e-02 + sys_corr_120: 7.29909850e-02 + sys_corr_121: 2.33915429e-02 + sys_corr_122: 2.50037779e-02 + sys_corr_123: 1.78234012e-02 + sys_corr_124: -1.88913475e-01 + sys_corr_125: -3.34768838e-02 + sys_corr_126: 3.37544249e-03 + sys_corr_127: 9.62395408e-01 + sys_corr_128: -1.42952692e+00 + sys_corr_129: 1.38642726e-01 + sys_corr_130: -1.58893093e-02 + sys_corr_131: -4.39562357e-02 + sys_corr_132: 1.16719010e-01 stat: 0.0 - luminosity: 45.493976 -- sys_corr_1: 350.44662101574124 - sys_corr_2: 170.72640747923887 - sys_corr_3: -3.0919647839716173 - sys_corr_4: 140.17262126040114 - sys_corr_5: 143.41489129496892 - sys_corr_6: -724.5030341783627 - sys_corr_7: 16.352477889425415 - sys_corr_8: 4.3854574961818 - sys_corr_9: 3.208693914402424 - sys_corr_10: 2.1316597823571306 - sys_corr_11: 5.805612192579969 - sys_corr_12: -51.26864095969309 - sys_corr_13: 49.015862948635 - sys_corr_14: -12.417170621830245 - sys_corr_15: -2.776941798061209 - sys_corr_16: 11.455495119932941 - sys_corr_17: -7.4253909490631385 - sys_corr_18: -3.1039003879675047 - sys_corr_19: 52.98906143620824 - sys_corr_20: 25.498899685532216 - sys_corr_21: 19.599874216489848 - sys_corr_22: 123.18180322371249 - sys_corr_23: -27.845767229653532 - sys_corr_24: 173.89805673329963 - sys_corr_25: -35.2171437899228 - sys_corr_26: -93.55522182947574 - sys_corr_27: 37.1481781584783 - sys_corr_28: -57.21294205594248 - sys_corr_29: 115.13522122480259 - sys_corr_30: -171.61592282640365 - sys_corr_31: -50.770784950658964 - sys_corr_32: 52.04872933872312 - sys_corr_33: 48.0551850057061 - sys_corr_34: -161.3278603944194 - sys_corr_35: -135.41587792080045 - sys_corr_36: -216.6785459946821 - sys_corr_37: 3.4936241494863194 - sys_corr_38: -57.834864511718145 - sys_corr_39: -97.66423875958722 - sys_corr_40: -1.1538198613198114 - sys_corr_41: 0.670650526260348 - sys_corr_42: 16.521983234617313 - sys_corr_43: -15.39440856660083 - sys_corr_44: 2.8883586255358047 - sys_corr_45: -19.86773684648953 - sys_corr_46: -10.722026921196935 - sys_corr_47: -19.136893698737975 - sys_corr_48: 28.33893599980031 - sys_corr_49: -39.54753750705111 - sys_corr_50: 45.23960984878636 - sys_corr_51: 22.131053959001772 - sys_corr_52: -0.12958728724265595 - sys_corr_53: 11.330635094497575 - sys_corr_54: -6.830460174659876 - sys_corr_55: -10.390560244222863 - sys_corr_56: 1.1402305301604119 - sys_corr_57: 12.127812046089764 - sys_corr_58: -11.153357176444851 - sys_corr_59: 0.7720776964859061 - sys_corr_60: 10.909668188388112 - sys_corr_61: 0.943783961244185 - sys_corr_62: -9.885995301116818 - sys_corr_63: -1.8724113342966833 - sys_corr_64: -5.7687875389050225 - sys_corr_65: 0.731307851638896 - sys_corr_66: -7.190575648662602 - sys_corr_67: -2.2046325780631393 - sys_corr_68: -13.48813971390848 - sys_corr_69: -5.232881961793876 - sys_corr_70: 3.435001517974676 - sys_corr_71: -13.525262487083024 - sys_corr_72: 0.6383529713695809 - sys_corr_73: -8.845906222695698 - sys_corr_74: -5.2151346134023315 - sys_corr_75: 0.5382760149879304 - sys_corr_76: -4.68947704348537 - sys_corr_77: 1.342682321825161 - sys_corr_78: 3.0634808788622934 - sys_corr_79: 7.26909085090421 - sys_corr_80: -0.5783795444275301 - sys_corr_81: -5.140781074684017 - sys_corr_82: -4.7954211416455585 - sys_corr_83: -5.536120159078597 - sys_corr_84: 0.54156144460693 - sys_corr_85: -1.9692945624203333 - sys_corr_86: -2.1153682409417573 - sys_corr_87: 11.021103641964789 - sys_corr_88: -1.105399639703145 - sys_corr_89: 0.6540721505957909 - sys_corr_90: -0.47024823760184437 - sys_corr_91: -0.7822802561775243 - sys_corr_92: -0.35189172230360544 - sys_corr_93: -0.015580690393448665 - sys_corr_94: -0.4948333620708121 - sys_corr_95: 0.5719363582371658 - sys_corr_96: -0.008721413671006255 - sys_corr_97: 0.12732807249766062 - sys_corr_98: -0.3220789040194106 - sys_corr_99: 0.554325208988827 - sys_corr_100: 0.6000595378580352 - sys_corr_101: 1.1859902581729358 - sys_corr_102: 3.247401402133022 - sys_corr_103: -1.353093147241383 - sys_corr_104: -1.0533345553136537 - sys_corr_105: -0.1609479774723569 - sys_corr_106: 0.33155440937544967 - sys_corr_107: -0.32878236218763973 - sys_corr_108: 0.028446122100354913 - sys_corr_109: -0.5453737232216423 - sys_corr_110: 0.35117633037122675 - sys_corr_111: 0.04697015435894773 - sys_corr_112: -0.22400820372423927 - sys_corr_113: -0.20086342378024657 - sys_corr_114: 0.000741632839513675 - sys_corr_115: 0.035651589934201845 - sys_corr_116: -0.0009382932484438305 - sys_corr_117: -0.022548101291690745 - sys_corr_118: 0.06922829865382052 - sys_corr_119: 0.004842655955645603 - sys_corr_120: 0.016472603732919644 - sys_corr_121: 0.0012154567643330265 - sys_corr_122: 0.07107713152913941 - sys_corr_123: 0.03332712222886006 - sys_corr_124: 0.05248234235435475 - sys_corr_125: -0.04541260543123243 - sys_corr_126: 0.017232521969404616 - sys_corr_127: 0.22439641224576282 - sys_corr_128: -0.08140988531412528 - sys_corr_129: 0.004570402477718689 - sys_corr_130: -0.003963284411704285 - sys_corr_131: -0.023716462730228715 - sys_corr_132: -0.039602476618905764 + luminosity: 4.54939760e+01 +- sys_corr_1: 3.50446621e+02 + sys_corr_2: 1.70726407e+02 + sys_corr_3: -3.09196478e+00 + sys_corr_4: 1.40172621e+02 + sys_corr_5: 1.43414891e+02 + sys_corr_6: -7.24503034e+02 + sys_corr_7: 1.63524779e+01 + sys_corr_8: 4.38545750e+00 + sys_corr_9: 3.20869391e+00 + sys_corr_10: 2.13165978e+00 + sys_corr_11: 5.80561219e+00 + sys_corr_12: -5.12686410e+01 + sys_corr_13: 4.90158629e+01 + sys_corr_14: -1.24171706e+01 + sys_corr_15: -2.77694180e+00 + sys_corr_16: 1.14554951e+01 + sys_corr_17: -7.42539095e+00 + sys_corr_18: -3.10390039e+00 + sys_corr_19: 5.29890614e+01 + sys_corr_20: 2.54988997e+01 + sys_corr_21: 1.95998742e+01 + sys_corr_22: 1.23181803e+02 + sys_corr_23: -2.78457672e+01 + sys_corr_24: 1.73898057e+02 + sys_corr_25: -3.52171438e+01 + sys_corr_26: -9.35552218e+01 + sys_corr_27: 3.71481782e+01 + sys_corr_28: -5.72129421e+01 + sys_corr_29: 1.15135221e+02 + sys_corr_30: -1.71615923e+02 + sys_corr_31: -5.07707850e+01 + sys_corr_32: 5.20487293e+01 + sys_corr_33: 4.80551850e+01 + sys_corr_34: -1.61327860e+02 + sys_corr_35: -1.35415878e+02 + sys_corr_36: -2.16678546e+02 + sys_corr_37: 3.49362415e+00 + sys_corr_38: -5.78348645e+01 + sys_corr_39: -9.76642388e+01 + sys_corr_40: -1.15381986e+00 + sys_corr_41: 6.70650526e-01 + sys_corr_42: 1.65219832e+01 + sys_corr_43: -1.53944086e+01 + sys_corr_44: 2.88835863e+00 + sys_corr_45: -1.98677368e+01 + sys_corr_46: -1.07220269e+01 + sys_corr_47: -1.91368937e+01 + sys_corr_48: 2.83389360e+01 + sys_corr_49: -3.95475375e+01 + sys_corr_50: 4.52396098e+01 + sys_corr_51: 2.21310540e+01 + sys_corr_52: -1.29587287e-01 + sys_corr_53: 1.13306351e+01 + sys_corr_54: -6.83046017e+00 + sys_corr_55: -1.03905602e+01 + sys_corr_56: 1.14023053e+00 + sys_corr_57: 1.21278120e+01 + sys_corr_58: -1.11533572e+01 + sys_corr_59: 7.72077696e-01 + sys_corr_60: 1.09096682e+01 + sys_corr_61: 9.43783961e-01 + sys_corr_62: -9.88599530e+00 + sys_corr_63: -1.87241133e+00 + sys_corr_64: -5.76878754e+00 + sys_corr_65: 7.31307852e-01 + sys_corr_66: -7.19057565e+00 + sys_corr_67: -2.20463258e+00 + sys_corr_68: -1.34881397e+01 + sys_corr_69: -5.23288196e+00 + sys_corr_70: 3.43500152e+00 + sys_corr_71: -1.35252625e+01 + sys_corr_72: 6.38352971e-01 + sys_corr_73: -8.84590622e+00 + sys_corr_74: -5.21513461e+00 + sys_corr_75: 5.38276015e-01 + sys_corr_76: -4.68947704e+00 + sys_corr_77: 1.34268232e+00 + sys_corr_78: 3.06348088e+00 + sys_corr_79: 7.26909085e+00 + sys_corr_80: -5.78379544e-01 + sys_corr_81: -5.14078107e+00 + sys_corr_82: -4.79542114e+00 + sys_corr_83: -5.53612016e+00 + sys_corr_84: 5.41561445e-01 + sys_corr_85: -1.96929456e+00 + sys_corr_86: -2.11536824e+00 + sys_corr_87: 1.10211036e+01 + sys_corr_88: -1.10539964e+00 + sys_corr_89: 6.54072151e-01 + sys_corr_90: -4.70248238e-01 + sys_corr_91: -7.82280256e-01 + sys_corr_92: -3.51891722e-01 + sys_corr_93: -1.55806904e-02 + sys_corr_94: -4.94833362e-01 + sys_corr_95: 5.71936358e-01 + sys_corr_96: -8.72141367e-03 + sys_corr_97: 1.27328072e-01 + sys_corr_98: -3.22078904e-01 + sys_corr_99: 5.54325209e-01 + sys_corr_100: 6.00059538e-01 + sys_corr_101: 1.18599026e+00 + sys_corr_102: 3.24740140e+00 + sys_corr_103: -1.35309315e+00 + sys_corr_104: -1.05333456e+00 + sys_corr_105: -1.60947977e-01 + sys_corr_106: 3.31554409e-01 + sys_corr_107: -3.28782362e-01 + sys_corr_108: 2.84461221e-02 + sys_corr_109: -5.45373723e-01 + sys_corr_110: 3.51176330e-01 + sys_corr_111: 4.69701544e-02 + sys_corr_112: -2.24008204e-01 + sys_corr_113: -2.00863424e-01 + sys_corr_114: 7.41632840e-04 + sys_corr_115: 3.56515899e-02 + sys_corr_116: -9.38293248e-04 + sys_corr_117: -2.25481013e-02 + sys_corr_118: 6.92282987e-02 + sys_corr_119: 4.84265596e-03 + sys_corr_120: 1.64726037e-02 + sys_corr_121: 1.21545676e-03 + sys_corr_122: 7.10771315e-02 + sys_corr_123: 3.33271222e-02 + sys_corr_124: 5.24823424e-02 + sys_corr_125: -4.54126054e-02 + sys_corr_126: 1.72325220e-02 + sys_corr_127: 2.24396412e-01 + sys_corr_128: -8.14098853e-02 + sys_corr_129: 4.57040248e-03 + sys_corr_130: -3.96328441e-03 + sys_corr_131: -2.37164627e-02 + sys_corr_132: -3.96024766e-02 stat: 0.0 - luminosity: 591.248768 -- sys_corr_1: 335.0698939924626 - sys_corr_2: 142.9444006495227 - sys_corr_3: 13.19808173649328 - sys_corr_4: 111.80442369818857 - sys_corr_5: 99.05715782443976 - sys_corr_6: -593.7074081063281 - sys_corr_7: 21.140983622432937 - sys_corr_8: 15.267784909318912 - sys_corr_9: 0.050546378644614774 - sys_corr_10: 17.45541497480811 - sys_corr_11: 6.036608648054132 - sys_corr_12: -9.31653345912728 - sys_corr_13: 30.45473284148712 - sys_corr_14: -8.246607163433346 - sys_corr_15: -1.5245475757260691 - sys_corr_16: 0.12956883263982197 - sys_corr_17: -66.09249680690041 - sys_corr_18: 0.15249408339369025 - sys_corr_19: 58.116820388429495 - sys_corr_20: 23.855317396102844 - sys_corr_21: 2.210099017561214 - sys_corr_22: 183.95373214566942 - sys_corr_23: -16.222000420559215 - sys_corr_24: 198.49545747370587 - sys_corr_25: -32.277491119144315 - sys_corr_26: -92.10088650257812 - sys_corr_27: 61.42062648402118 - sys_corr_28: -50.35388334721592 - sys_corr_29: 97.60974929400398 - sys_corr_30: -97.25541092487306 - sys_corr_31: 37.297514389786826 - sys_corr_32: -42.316813809221905 - sys_corr_33: 57.18793777022428 - sys_corr_34: -1.3930468669137885 - sys_corr_35: -98.02039527672902 - sys_corr_36: 168.3146436448089 - sys_corr_37: -171.4336127234072 - sys_corr_38: 94.06621682319526 - sys_corr_39: 125.2310073844137 - sys_corr_40: 37.322634301659164 - sys_corr_41: -74.70937419577929 - sys_corr_42: -21.9982451657287 - sys_corr_43: 64.26420264725421 - sys_corr_44: -69.49890974500526 - sys_corr_45: -34.07809221701067 - sys_corr_46: -6.557426106979985 - sys_corr_47: -41.28516075075467 - sys_corr_48: 36.14564187903006 - sys_corr_49: -5.443212929830677 - sys_corr_50: 51.34361248836935 - sys_corr_51: -3.9638842243858132 - sys_corr_52: 10.032848554984687 - sys_corr_53: 3.6954392584509734 - sys_corr_54: -11.189755381903451 - sys_corr_55: 0.3486033396649537 - sys_corr_56: -14.166232822940827 - sys_corr_57: 8.03927085911621 - sys_corr_58: -6.822769777754059 - sys_corr_59: 6.552160479987066 - sys_corr_60: -3.8174969871954896 - sys_corr_61: -1.7077650954788826 - sys_corr_62: -13.285350687409416 - sys_corr_63: 0.9240715134415647 - sys_corr_64: 7.0844550637171935 - sys_corr_65: 12.252095899956167 - sys_corr_66: -1.9568889561207286 - sys_corr_67: 3.096186293515995 - sys_corr_68: -7.556625541007168 - sys_corr_69: -0.9238909498867957 - sys_corr_70: -2.5882440357014738 - sys_corr_71: -2.061954740406422 - sys_corr_72: -0.13081170511373238 - sys_corr_73: 8.030535710953252 - sys_corr_74: 9.611627201374572 - sys_corr_75: 13.95753911207075 - sys_corr_76: -2.428757031859134 - sys_corr_77: -10.764496068390855 - sys_corr_78: 2.810431710491934 - sys_corr_79: -7.142011311749472 - sys_corr_80: 0.4861633449303517 - sys_corr_81: 10.689793109702686 - sys_corr_82: 11.63420725272908 - sys_corr_83: 8.009025663809988 - sys_corr_84: -1.1234691814327575 - sys_corr_85: -1.0004384965172302 - sys_corr_86: -3.048824141433221 - sys_corr_87: -0.2450136078769606 - sys_corr_88: -2.840041135080805 - sys_corr_89: 1.00011244938384 - sys_corr_90: -0.6033214310028018 - sys_corr_91: -1.3430543656315757 - sys_corr_92: -0.9353125948042703 - sys_corr_93: -0.08731063926000894 - sys_corr_94: -0.6127768533884578 - sys_corr_95: -0.32945308536245405 - sys_corr_96: -0.09477347052140686 - sys_corr_97: 0.31617911442033314 - sys_corr_98: 0.04260133510633903 - sys_corr_99: -0.5079671024537756 - sys_corr_100: 0.171549695817948 - sys_corr_101: -0.2577468516725268 - sys_corr_102: -0.37751508111986426 - sys_corr_103: -0.23748085370596536 - sys_corr_104: 0.9004816485591453 - sys_corr_105: 0.02398373394321444 - sys_corr_106: -0.5648722450750934 - sys_corr_107: -0.43672249444783434 - sys_corr_108: -0.06771598653607819 - sys_corr_109: -0.15382867947066345 - sys_corr_110: 0.10531917537824387 - sys_corr_111: 0.5070387137902604 - sys_corr_112: 0.004429164116006488 - sys_corr_113: -0.03925414651760174 - sys_corr_114: 0.0029121637670748908 - sys_corr_115: 0.06726850251098918 - sys_corr_116: -0.03395717642920051 - sys_corr_117: -0.028768977385755408 - sys_corr_118: -0.03463846117101332 - sys_corr_119: -0.002055491488564057 - sys_corr_120: 0.006021695892416861 - sys_corr_121: -0.0027980058560685846 - sys_corr_122: 0.0057164592150039115 - sys_corr_123: -0.002223520935024491 - sys_corr_124: -0.021557237346593313 - sys_corr_125: -0.008739286995875551 - sys_corr_126: -0.011531303849183898 - sys_corr_127: 0.34937600542954006 - sys_corr_128: -0.29979809234301275 - sys_corr_129: 0.09187960092159371 - sys_corr_130: -0.018339787456972144 - sys_corr_131: -0.012584655735360576 - sys_corr_132: 0.04757305030278339 + luminosity: 5.91248768e+02 +- sys_corr_1: 3.35069894e+02 + sys_corr_2: 1.42944401e+02 + sys_corr_3: 1.31980817e+01 + sys_corr_4: 1.11804424e+02 + sys_corr_5: 9.90571578e+01 + sys_corr_6: -5.93707408e+02 + sys_corr_7: 2.11409836e+01 + sys_corr_8: 1.52677849e+01 + sys_corr_9: 5.05463786e-02 + sys_corr_10: 1.74554150e+01 + sys_corr_11: 6.03660865e+00 + sys_corr_12: -9.31653346e+00 + sys_corr_13: 3.04547328e+01 + sys_corr_14: -8.24660716e+00 + sys_corr_15: -1.52454758e+00 + sys_corr_16: 1.29568833e-01 + sys_corr_17: -6.60924968e+01 + sys_corr_18: 1.52494083e-01 + sys_corr_19: 5.81168204e+01 + sys_corr_20: 2.38553174e+01 + sys_corr_21: 2.21009902e+00 + sys_corr_22: 1.83953732e+02 + sys_corr_23: -1.62220004e+01 + sys_corr_24: 1.98495457e+02 + sys_corr_25: -3.22774911e+01 + sys_corr_26: -9.21008865e+01 + sys_corr_27: 6.14206265e+01 + sys_corr_28: -5.03538833e+01 + sys_corr_29: 9.76097493e+01 + sys_corr_30: -9.72554109e+01 + sys_corr_31: 3.72975144e+01 + sys_corr_32: -4.23168138e+01 + sys_corr_33: 5.71879378e+01 + sys_corr_34: -1.39304687e+00 + sys_corr_35: -9.80203953e+01 + sys_corr_36: 1.68314644e+02 + sys_corr_37: -1.71433613e+02 + sys_corr_38: 9.40662168e+01 + sys_corr_39: 1.25231007e+02 + sys_corr_40: 3.73226343e+01 + sys_corr_41: -7.47093742e+01 + sys_corr_42: -2.19982452e+01 + sys_corr_43: 6.42642026e+01 + sys_corr_44: -6.94989097e+01 + sys_corr_45: -3.40780922e+01 + sys_corr_46: -6.55742611e+00 + sys_corr_47: -4.12851608e+01 + sys_corr_48: 3.61456419e+01 + sys_corr_49: -5.44321293e+00 + sys_corr_50: 5.13436125e+01 + sys_corr_51: -3.96388422e+00 + sys_corr_52: 1.00328486e+01 + sys_corr_53: 3.69543926e+00 + sys_corr_54: -1.11897554e+01 + sys_corr_55: 3.48603340e-01 + sys_corr_56: -1.41662328e+01 + sys_corr_57: 8.03927086e+00 + sys_corr_58: -6.82276978e+00 + sys_corr_59: 6.55216048e+00 + sys_corr_60: -3.81749699e+00 + sys_corr_61: -1.70776510e+00 + sys_corr_62: -1.32853507e+01 + sys_corr_63: 9.24071513e-01 + sys_corr_64: 7.08445506e+00 + sys_corr_65: 1.22520959e+01 + sys_corr_66: -1.95688896e+00 + sys_corr_67: 3.09618629e+00 + sys_corr_68: -7.55662554e+00 + sys_corr_69: -9.23890950e-01 + sys_corr_70: -2.58824404e+00 + sys_corr_71: -2.06195474e+00 + sys_corr_72: -1.30811705e-01 + sys_corr_73: 8.03053571e+00 + sys_corr_74: 9.61162720e+00 + sys_corr_75: 1.39575391e+01 + sys_corr_76: -2.42875703e+00 + sys_corr_77: -1.07644961e+01 + sys_corr_78: 2.81043171e+00 + sys_corr_79: -7.14201131e+00 + sys_corr_80: 4.86163345e-01 + sys_corr_81: 1.06897931e+01 + sys_corr_82: 1.16342073e+01 + sys_corr_83: 8.00902566e+00 + sys_corr_84: -1.12346918e+00 + sys_corr_85: -1.00043850e+00 + sys_corr_86: -3.04882414e+00 + sys_corr_87: -2.45013608e-01 + sys_corr_88: -2.84004114e+00 + sys_corr_89: 1.00011245e+00 + sys_corr_90: -6.03321431e-01 + sys_corr_91: -1.34305437e+00 + sys_corr_92: -9.35312595e-01 + sys_corr_93: -8.73106393e-02 + sys_corr_94: -6.12776853e-01 + sys_corr_95: -3.29453085e-01 + sys_corr_96: -9.47734705e-02 + sys_corr_97: 3.16179114e-01 + sys_corr_98: 4.26013351e-02 + sys_corr_99: -5.07967102e-01 + sys_corr_100: 1.71549696e-01 + sys_corr_101: -2.57746852e-01 + sys_corr_102: -3.77515081e-01 + sys_corr_103: -2.37480854e-01 + sys_corr_104: 9.00481649e-01 + sys_corr_105: 2.39837339e-02 + sys_corr_106: -5.64872245e-01 + sys_corr_107: -4.36722494e-01 + sys_corr_108: -6.77159865e-02 + sys_corr_109: -1.53828679e-01 + sys_corr_110: 1.05319175e-01 + sys_corr_111: 5.07038714e-01 + sys_corr_112: 4.42916412e-03 + sys_corr_113: -3.92541465e-02 + sys_corr_114: 2.91216377e-03 + sys_corr_115: 6.72685025e-02 + sys_corr_116: -3.39571764e-02 + sys_corr_117: -2.87689774e-02 + sys_corr_118: -3.46384612e-02 + sys_corr_119: -2.05549149e-03 + sys_corr_120: 6.02169589e-03 + sys_corr_121: -2.79800586e-03 + sys_corr_122: 5.71645922e-03 + sys_corr_123: -2.22352094e-03 + sys_corr_124: -2.15572373e-02 + sys_corr_125: -8.73928700e-03 + sys_corr_126: -1.15313038e-02 + sys_corr_127: 3.49376005e-01 + sys_corr_128: -2.99798092e-01 + sys_corr_129: 9.18796009e-02 + sys_corr_130: -1.83397875e-02 + sys_corr_131: -1.25846557e-02 + sys_corr_132: 4.75730503e-02 stat: 0.0 - luminosity: 563.851222 -- sys_corr_1: 330.50791892465634 - sys_corr_2: 121.91077423685216 - sys_corr_3: -5.974602503540623 - sys_corr_4: 115.14640103426954 - sys_corr_5: 103.5441444877835 - sys_corr_6: -570.7826348085099 - sys_corr_7: 29.748730937525615 - sys_corr_8: 21.465953431971755 - sys_corr_9: 15.608660078659234 - sys_corr_10: 10.270097047607502 - sys_corr_11: 24.14075467170795 - sys_corr_12: -13.868590989890677 - sys_corr_13: 21.749806355388763 - sys_corr_14: -4.337640768966524 - sys_corr_15: -2.2859863822875637 - sys_corr_16: 4.4635039960161755 - sys_corr_17: -3.77181033766639 - sys_corr_18: 2.5898535254576327 - sys_corr_19: 63.80943135125586 - sys_corr_20: 27.187056192596156 - sys_corr_21: 0.03751488959040876 - sys_corr_22: 148.89249680658628 - sys_corr_23: -6.429197435802901 - sys_corr_24: 166.1181593997375 - sys_corr_25: -45.225273196981696 - sys_corr_26: -110.90756213315439 - sys_corr_27: 49.049191931026776 - sys_corr_28: -27.51902204517998 - sys_corr_29: 103.95026628928913 - sys_corr_30: -115.30912555006131 - sys_corr_31: 21.703947535848403 - sys_corr_32: -54.475463347751564 - sys_corr_33: 17.08857765945142 - sys_corr_34: 62.27518415874447 - sys_corr_35: 340.36466181719135 - sys_corr_36: -70.29578135637256 - sys_corr_37: -4.3711657762795335 - sys_corr_38: 41.326437799105236 - sys_corr_39: -18.903536567767727 - sys_corr_40: 16.48408396324762 - sys_corr_41: -14.519261051115963 - sys_corr_42: 10.306052519012724 - sys_corr_43: 12.36638506403309 - sys_corr_44: -1.6534597264410063 - sys_corr_45: 40.21680093466474 - sys_corr_46: -32.485465002633504 - sys_corr_47: -24.328978127459095 - sys_corr_48: 6.956817674328044 - sys_corr_49: -9.348446874081347 - sys_corr_50: 29.07432009412523 - sys_corr_51: -12.860051749833817 - sys_corr_52: 0.5923930829502868 - sys_corr_53: 13.35166918588359 - sys_corr_54: -13.719184395387115 - sys_corr_55: 0.6095012071304872 - sys_corr_56: 1.4835105515936418 - sys_corr_57: 15.702635067347869 - sys_corr_58: -4.290502677072413 - sys_corr_59: 7.859383046609648 - sys_corr_60: 2.3453335940418922 - sys_corr_61: 5.878679131960305 - sys_corr_62: 2.016274066746196 - sys_corr_63: -8.526681339257724 - sys_corr_64: 4.04830913381336 - sys_corr_65: -1.124969431625517 - sys_corr_66: -1.84456394773217 - sys_corr_67: 2.206358485898236 - sys_corr_68: 1.211015779628092 - sys_corr_69: -6.708435860543044 - sys_corr_70: 1.9410540973082375 - sys_corr_71: -5.987753785204752 - sys_corr_72: -1.0413581301019061 - sys_corr_73: -4.275167951211757 - sys_corr_74: -0.33588371982465737 - sys_corr_75: -2.4959418731186482 - sys_corr_76: 0.09858202247923656 - sys_corr_77: 2.9987648362721044 - sys_corr_78: -2.2390142647664772 - sys_corr_79: -1.0740379162276794 - sys_corr_80: -1.2480038458570557 - sys_corr_81: -7.2550864969389375 - sys_corr_82: -4.291945770178747 - sys_corr_83: -0.28768856385637015 - sys_corr_84: 0.47166775383128196 - sys_corr_85: 1.237763673595976 - sys_corr_86: 2.644022138433325 - sys_corr_87: -12.292194340650882 - sys_corr_88: 1.481979895502834 - sys_corr_89: -0.223254379285413 - sys_corr_90: 0.4179750446839187 - sys_corr_91: 1.0186504802018557 - sys_corr_92: 3.7329899045637127 - sys_corr_93: 0.01625343796580947 - sys_corr_94: 0.23260648088124136 - sys_corr_95: -0.055416305278513565 - sys_corr_96: -0.053628208341154414 - sys_corr_97: 0.12060538534926264 - sys_corr_98: 0.07046445217445814 - sys_corr_99: -0.11766177847042471 - sys_corr_100: 0.1402202436715982 - sys_corr_101: -0.2020442947476319 - sys_corr_102: -1.6176613112032536 - sys_corr_103: 0.2578537521843737 - sys_corr_104: 1.0289825964082633 - sys_corr_105: -0.351842461248791 - sys_corr_106: 0.16922143235064546 - sys_corr_107: -0.5433302200631098 - sys_corr_108: 0.002065478881387669 - sys_corr_109: 0.030156150240218855 - sys_corr_110: -0.07733106183503578 - sys_corr_111: 0.3957964251958247 - sys_corr_112: -0.025406787400906815 - sys_corr_113: 0.0028484842883728404 - sys_corr_114: 0.0009966059650464527 - sys_corr_115: 0.048113470771443935 - sys_corr_116: -0.03712260705310016 - sys_corr_117: -0.02793841288177421 - sys_corr_118: 0.014786342649600197 - sys_corr_119: 0.0031620158021093527 - sys_corr_120: 0.01593822413499716 - sys_corr_121: 0.0012322135659643602 - sys_corr_122: 0.017390585625742253 - sys_corr_123: 0.007662400535869187 - sys_corr_124: -0.03917308250997489 - sys_corr_125: -0.022123704144205912 - sys_corr_126: -0.01386595598121855 - sys_corr_127: 0.09936638277101484 - sys_corr_128: -0.024501002878465218 - sys_corr_129: -0.07497132732200504 - sys_corr_130: -0.02558166289806321 - sys_corr_131: -0.013622495510415084 - sys_corr_132: 0.05664033988666384 + luminosity: 5.63851222e+02 +- sys_corr_1: 3.30507919e+02 + sys_corr_2: 1.21910774e+02 + sys_corr_3: -5.97460250e+00 + sys_corr_4: 1.15146401e+02 + sys_corr_5: 1.03544144e+02 + sys_corr_6: -5.70782635e+02 + sys_corr_7: 2.97487309e+01 + sys_corr_8: 2.14659534e+01 + sys_corr_9: 1.56086601e+01 + sys_corr_10: 1.02700970e+01 + sys_corr_11: 2.41407547e+01 + sys_corr_12: -1.38685910e+01 + sys_corr_13: 2.17498064e+01 + sys_corr_14: -4.33764077e+00 + sys_corr_15: -2.28598638e+00 + sys_corr_16: 4.46350400e+00 + sys_corr_17: -3.77181034e+00 + sys_corr_18: 2.58985353e+00 + sys_corr_19: 6.38094314e+01 + sys_corr_20: 2.71870562e+01 + sys_corr_21: 3.75148896e-02 + sys_corr_22: 1.48892497e+02 + sys_corr_23: -6.42919744e+00 + sys_corr_24: 1.66118159e+02 + sys_corr_25: -4.52252732e+01 + sys_corr_26: -1.10907562e+02 + sys_corr_27: 4.90491919e+01 + sys_corr_28: -2.75190220e+01 + sys_corr_29: 1.03950266e+02 + sys_corr_30: -1.15309126e+02 + sys_corr_31: 2.17039475e+01 + sys_corr_32: -5.44754633e+01 + sys_corr_33: 1.70885777e+01 + sys_corr_34: 6.22751842e+01 + sys_corr_35: 3.40364662e+02 + sys_corr_36: -7.02957814e+01 + sys_corr_37: -4.37116578e+00 + sys_corr_38: 4.13264378e+01 + sys_corr_39: -1.89035366e+01 + sys_corr_40: 1.64840840e+01 + sys_corr_41: -1.45192611e+01 + sys_corr_42: 1.03060525e+01 + sys_corr_43: 1.23663851e+01 + sys_corr_44: -1.65345973e+00 + sys_corr_45: 4.02168009e+01 + sys_corr_46: -3.24854650e+01 + sys_corr_47: -2.43289781e+01 + sys_corr_48: 6.95681767e+00 + sys_corr_49: -9.34844687e+00 + sys_corr_50: 2.90743201e+01 + sys_corr_51: -1.28600517e+01 + sys_corr_52: 5.92393083e-01 + sys_corr_53: 1.33516692e+01 + sys_corr_54: -1.37191844e+01 + sys_corr_55: 6.09501207e-01 + sys_corr_56: 1.48351055e+00 + sys_corr_57: 1.57026351e+01 + sys_corr_58: -4.29050268e+00 + sys_corr_59: 7.85938305e+00 + sys_corr_60: 2.34533359e+00 + sys_corr_61: 5.87867913e+00 + sys_corr_62: 2.01627407e+00 + sys_corr_63: -8.52668134e+00 + sys_corr_64: 4.04830913e+00 + sys_corr_65: -1.12496943e+00 + sys_corr_66: -1.84456395e+00 + sys_corr_67: 2.20635849e+00 + sys_corr_68: 1.21101578e+00 + sys_corr_69: -6.70843586e+00 + sys_corr_70: 1.94105410e+00 + sys_corr_71: -5.98775379e+00 + sys_corr_72: -1.04135813e+00 + sys_corr_73: -4.27516795e+00 + sys_corr_74: -3.35883720e-01 + sys_corr_75: -2.49594187e+00 + sys_corr_76: 9.85820225e-02 + sys_corr_77: 2.99876484e+00 + sys_corr_78: -2.23901426e+00 + sys_corr_79: -1.07403792e+00 + sys_corr_80: -1.24800385e+00 + sys_corr_81: -7.25508650e+00 + sys_corr_82: -4.29194577e+00 + sys_corr_83: -2.87688564e-01 + sys_corr_84: 4.71667754e-01 + sys_corr_85: 1.23776367e+00 + sys_corr_86: 2.64402214e+00 + sys_corr_87: -1.22921943e+01 + sys_corr_88: 1.48197990e+00 + sys_corr_89: -2.23254379e-01 + sys_corr_90: 4.17975045e-01 + sys_corr_91: 1.01865048e+00 + sys_corr_92: 3.73298990e+00 + sys_corr_93: 1.62534380e-02 + sys_corr_94: 2.32606481e-01 + sys_corr_95: -5.54163053e-02 + sys_corr_96: -5.36282083e-02 + sys_corr_97: 1.20605385e-01 + sys_corr_98: 7.04644522e-02 + sys_corr_99: -1.17661778e-01 + sys_corr_100: 1.40220244e-01 + sys_corr_101: -2.02044295e-01 + sys_corr_102: -1.61766131e+00 + sys_corr_103: 2.57853752e-01 + sys_corr_104: 1.02898260e+00 + sys_corr_105: -3.51842461e-01 + sys_corr_106: 1.69221432e-01 + sys_corr_107: -5.43330220e-01 + sys_corr_108: 2.06547888e-03 + sys_corr_109: 3.01561502e-02 + sys_corr_110: -7.73310618e-02 + sys_corr_111: 3.95796425e-01 + sys_corr_112: -2.54067874e-02 + sys_corr_113: 2.84848429e-03 + sys_corr_114: 9.96605965e-04 + sys_corr_115: 4.81134708e-02 + sys_corr_116: -3.71226071e-02 + sys_corr_117: -2.79384129e-02 + sys_corr_118: 1.47863426e-02 + sys_corr_119: 3.16201580e-03 + sys_corr_120: 1.59382241e-02 + sys_corr_121: 1.23221357e-03 + sys_corr_122: 1.73905856e-02 + sys_corr_123: 7.66240054e-03 + sys_corr_124: -3.91730825e-02 + sys_corr_125: -2.21237041e-02 + sys_corr_126: -1.38659560e-02 + sys_corr_127: 9.93663828e-02 + sys_corr_128: -2.45010029e-02 + sys_corr_129: -7.49713273e-02 + sys_corr_130: -2.55816629e-02 + sys_corr_131: -1.36224955e-02 + sys_corr_132: 5.66403399e-02 stat: 0.0 - luminosity: 569.4133280000001 -- sys_corr_1: 308.1465857329438 - sys_corr_2: 108.44170850806806 - sys_corr_3: -34.7597899458625 - sys_corr_4: 86.83570429407487 - sys_corr_5: 106.91036157076302 - sys_corr_6: -558.8619958432067 - sys_corr_7: 31.280619035491107 - sys_corr_8: 2.321786764627513 - sys_corr_9: -5.605752059195334 - sys_corr_10: -2.804785884234477 - sys_corr_11: -3.99293495041196 - sys_corr_12: 4.128841215151998 - sys_corr_13: 13.597641386531187 - sys_corr_14: -36.81077976688213 - sys_corr_15: 5.085305262322664 - sys_corr_16: 11.214698757215007 - sys_corr_17: -24.439240828400433 - sys_corr_18: -3.6925152461132353 - sys_corr_19: 9.512474604683035 - sys_corr_20: 8.824793539619158 - sys_corr_21: 0.17776537110482332 - sys_corr_22: 103.6860127634186 - sys_corr_23: -8.929257588887662 - sys_corr_24: 86.27984585184193 - sys_corr_25: -29.587986896991115 - sys_corr_26: -54.41176922098238 - sys_corr_27: 34.29228553951577 - sys_corr_28: -54.75054385852275 - sys_corr_29: 89.91370507008537 - sys_corr_30: -58.4938681578828 - sys_corr_31: 33.76563670193613 - sys_corr_32: 172.19839457591112 - sys_corr_33: -305.77437317008776 - sys_corr_34: 184.0724921520463 - sys_corr_35: -57.50252655434451 - sys_corr_36: 22.042580857219107 - sys_corr_37: 58.89199557238984 - sys_corr_38: -12.237608137577045 - sys_corr_39: 0.3626094260606844 - sys_corr_40: -21.412439183954792 - sys_corr_41: -5.792069816585581 - sys_corr_42: 34.093091212772435 - sys_corr_43: -1.8754462526192905 - sys_corr_44: 6.486149170595593 - sys_corr_45: -4.983879648744443 - sys_corr_46: -0.18980893313763156 - sys_corr_47: 4.686996575097182 - sys_corr_48: 15.420037646757926 - sys_corr_49: -25.804893614126428 - sys_corr_50: 21.041031827726215 - sys_corr_51: 0.8285247637275481 - sys_corr_52: 9.95103746165316 - sys_corr_53: -5.942900424160386 - sys_corr_54: 10.424678799418698 - sys_corr_55: -3.0934356538428283 - sys_corr_56: 8.210631466354398 - sys_corr_57: 0.8606218931859154 - sys_corr_58: 4.503692915503462 - sys_corr_59: -11.285652185254918 - sys_corr_60: -0.691446372505274 - sys_corr_61: -5.716677327456046 - sys_corr_62: 1.1333748142850688 - sys_corr_63: 2.9669167945704213 - sys_corr_64: -3.8802897923271193 - sys_corr_65: 6.716980945498825 - sys_corr_66: 0.9018362087771484 - sys_corr_67: 0.5084430445096523 - sys_corr_68: 0.9040494055060695 - sys_corr_69: -1.8918170188598498 - sys_corr_70: -1.443600106923189 - sys_corr_71: -3.963738947881664 - sys_corr_72: 2.9459866007362563 - sys_corr_73: 2.6561787480365937 - sys_corr_74: -2.871068349091085 - sys_corr_75: -4.652711406234471 - sys_corr_76: -1.0932159301556756 - sys_corr_77: -5.580782923702415 - sys_corr_78: -1.5911808218989076 - sys_corr_79: -2.5670358886172067 - sys_corr_80: -1.479643282576395 - sys_corr_81: 4.881365519428468 - sys_corr_82: -0.32222594540537414 - sys_corr_83: 2.171662096120489 - sys_corr_84: -1.5114118638707497 - sys_corr_85: -0.2826455633622803 - sys_corr_86: 4.21807336571229 - sys_corr_87: -2.317272692195708 - sys_corr_88: 1.6088729777945314 - sys_corr_89: 0.4804777089890226 - sys_corr_90: 0.3742142935456243 - sys_corr_91: 1.6034711868797913 - sys_corr_92: 5.724659117671673 - sys_corr_93: 0.03215175379678868 - sys_corr_94: 0.17106348558274947 - sys_corr_95: -0.714676387047389 - sys_corr_96: -0.13734479198990796 - sys_corr_97: 0.9549765989762868 - sys_corr_98: 0.43305289241554573 - sys_corr_99: -0.1317694782158668 - sys_corr_100: -0.2883832842970804 - sys_corr_101: 0.35501171301841244 - sys_corr_102: 2.4346591846140964 - sys_corr_103: -0.539075111212102 - sys_corr_104: -0.8169400542250014 - sys_corr_105: 0.16845066906449835 - sys_corr_106: 0.009703013829044 - sys_corr_107: -0.3213240439230717 - sys_corr_108: 0.12251987483569651 - sys_corr_109: -0.005309184303329891 - sys_corr_110: 0.2391776254333026 - sys_corr_111: -0.0027685914841232536 - sys_corr_112: 0.019863401516788882 - sys_corr_113: -0.07986585513128597 - sys_corr_114: 0.0016984623182623034 - sys_corr_115: 0.10483431712729273 - sys_corr_116: -0.006142302709159418 - sys_corr_117: 1.43403390336188e-05 - sys_corr_118: 0.033960877469228275 - sys_corr_119: 0.0010322165175360631 - sys_corr_120: -0.001150221673064574 - sys_corr_121: -0.0013335209928563082 - sys_corr_122: 0.0082654232266711 - sys_corr_123: 0.0010599329919234151 - sys_corr_124: 0.03388112413394809 - sys_corr_125: -0.006888504938579439 - sys_corr_126: -0.0007198150262401101 - sys_corr_127: 0.2561729643003013 - sys_corr_128: -0.05331635390011392 - sys_corr_129: -0.04205044482817094 - sys_corr_130: -0.00721981798977158 - sys_corr_131: -0.005417060745099954 - sys_corr_132: 0.023860680538701853 + luminosity: 5.69413328e+02 +- sys_corr_1: 3.08146586e+02 + sys_corr_2: 1.08441709e+02 + sys_corr_3: -3.47597899e+01 + sys_corr_4: 8.68357043e+01 + sys_corr_5: 1.06910362e+02 + sys_corr_6: -5.58861996e+02 + sys_corr_7: 3.12806190e+01 + sys_corr_8: 2.32178676e+00 + sys_corr_9: -5.60575206e+00 + sys_corr_10: -2.80478588e+00 + sys_corr_11: -3.99293495e+00 + sys_corr_12: 4.12884122e+00 + sys_corr_13: 1.35976414e+01 + sys_corr_14: -3.68107798e+01 + sys_corr_15: 5.08530526e+00 + sys_corr_16: 1.12146988e+01 + sys_corr_17: -2.44392408e+01 + sys_corr_18: -3.69251525e+00 + sys_corr_19: 9.51247460e+00 + sys_corr_20: 8.82479354e+00 + sys_corr_21: 1.77765371e-01 + sys_corr_22: 1.03686013e+02 + sys_corr_23: -8.92925759e+00 + sys_corr_24: 8.62798459e+01 + sys_corr_25: -2.95879869e+01 + sys_corr_26: -5.44117692e+01 + sys_corr_27: 3.42922855e+01 + sys_corr_28: -5.47505439e+01 + sys_corr_29: 8.99137051e+01 + sys_corr_30: -5.84938682e+01 + sys_corr_31: 3.37656367e+01 + sys_corr_32: 1.72198395e+02 + sys_corr_33: -3.05774373e+02 + sys_corr_34: 1.84072492e+02 + sys_corr_35: -5.75025266e+01 + sys_corr_36: 2.20425809e+01 + sys_corr_37: 5.88919956e+01 + sys_corr_38: -1.22376081e+01 + sys_corr_39: 3.62609426e-01 + sys_corr_40: -2.14124392e+01 + sys_corr_41: -5.79206982e+00 + sys_corr_42: 3.40930912e+01 + sys_corr_43: -1.87544625e+00 + sys_corr_44: 6.48614917e+00 + sys_corr_45: -4.98387965e+00 + sys_corr_46: -1.89808933e-01 + sys_corr_47: 4.68699658e+00 + sys_corr_48: 1.54200376e+01 + sys_corr_49: -2.58048936e+01 + sys_corr_50: 2.10410318e+01 + sys_corr_51: 8.28524764e-01 + sys_corr_52: 9.95103746e+00 + sys_corr_53: -5.94290042e+00 + sys_corr_54: 1.04246788e+01 + sys_corr_55: -3.09343565e+00 + sys_corr_56: 8.21063147e+00 + sys_corr_57: 8.60621893e-01 + sys_corr_58: 4.50369292e+00 + sys_corr_59: -1.12856522e+01 + sys_corr_60: -6.91446373e-01 + sys_corr_61: -5.71667733e+00 + sys_corr_62: 1.13337481e+00 + sys_corr_63: 2.96691679e+00 + sys_corr_64: -3.88028979e+00 + sys_corr_65: 6.71698095e+00 + sys_corr_66: 9.01836209e-01 + sys_corr_67: 5.08443045e-01 + sys_corr_68: 9.04049406e-01 + sys_corr_69: -1.89181702e+00 + sys_corr_70: -1.44360011e+00 + sys_corr_71: -3.96373895e+00 + sys_corr_72: 2.94598660e+00 + sys_corr_73: 2.65617875e+00 + sys_corr_74: -2.87106835e+00 + sys_corr_75: -4.65271141e+00 + sys_corr_76: -1.09321593e+00 + sys_corr_77: -5.58078292e+00 + sys_corr_78: -1.59118082e+00 + sys_corr_79: -2.56703589e+00 + sys_corr_80: -1.47964328e+00 + sys_corr_81: 4.88136552e+00 + sys_corr_82: -3.22225945e-01 + sys_corr_83: 2.17166210e+00 + sys_corr_84: -1.51141186e+00 + sys_corr_85: -2.82645563e-01 + sys_corr_86: 4.21807337e+00 + sys_corr_87: -2.31727269e+00 + sys_corr_88: 1.60887298e+00 + sys_corr_89: 4.80477709e-01 + sys_corr_90: 3.74214294e-01 + sys_corr_91: 1.60347119e+00 + sys_corr_92: 5.72465912e+00 + sys_corr_93: 3.21517538e-02 + sys_corr_94: 1.71063486e-01 + sys_corr_95: -7.14676387e-01 + sys_corr_96: -1.37344792e-01 + sys_corr_97: 9.54976599e-01 + sys_corr_98: 4.33052892e-01 + sys_corr_99: -1.31769478e-01 + sys_corr_100: -2.88383284e-01 + sys_corr_101: 3.55011713e-01 + sys_corr_102: 2.43465918e+00 + sys_corr_103: -5.39075111e-01 + sys_corr_104: -8.16940054e-01 + sys_corr_105: 1.68450669e-01 + sys_corr_106: 9.70301383e-03 + sys_corr_107: -3.21324044e-01 + sys_corr_108: 1.22519875e-01 + sys_corr_109: -5.30918430e-03 + sys_corr_110: 2.39177625e-01 + sys_corr_111: -2.76859148e-03 + sys_corr_112: 1.98634015e-02 + sys_corr_113: -7.98658551e-02 + sys_corr_114: 1.69846232e-03 + sys_corr_115: 1.04834317e-01 + sys_corr_116: -6.14230271e-03 + sys_corr_117: 1.43403390e-05 + sys_corr_118: 3.39608775e-02 + sys_corr_119: 1.03221652e-03 + sys_corr_120: -1.15022167e-03 + sys_corr_121: -1.33352099e-03 + sys_corr_122: 8.26542323e-03 + sys_corr_123: 1.05993299e-03 + sys_corr_124: 3.38811241e-02 + sys_corr_125: -6.88850494e-03 + sys_corr_126: -7.19815026e-04 + sys_corr_127: 2.56172964e-01 + sys_corr_128: -5.33163539e-02 + sys_corr_129: -4.20504448e-02 + sys_corr_130: -7.21981799e-03 + sys_corr_131: -5.41706075e-03 + sys_corr_132: 2.38606805e-02 stat: 0.0 - luminosity: 564.811698 -- sys_corr_1: 303.47112678912885 - sys_corr_2: 85.22586392920086 - sys_corr_3: -55.875535001035686 - sys_corr_4: 78.21183975253612 - sys_corr_5: 123.1693581775984 - sys_corr_6: -553.8453310598037 - sys_corr_7: 54.550059905356775 - sys_corr_8: 4.551928276622088 - sys_corr_9: -7.38151283934803 - sys_corr_10: -19.24707420390755 - sys_corr_11: 3.726363411841204 - sys_corr_12: 21.091844542898592 - sys_corr_13: -12.975190357868293 - sys_corr_14: -24.907733140335353 - sys_corr_15: 4.472738298577664 - sys_corr_16: 7.495605734571559 - sys_corr_17: -11.808457615520247 - sys_corr_18: 10.1507603525731 - sys_corr_19: 1.4190587396308356 - sys_corr_20: 10.050814464218423 - sys_corr_21: -1.5044078917425487 - sys_corr_22: 80.57768925681573 - sys_corr_23: -0.56567195133488 - sys_corr_24: 32.31619373101698 - sys_corr_25: -18.289607880462857 - sys_corr_26: -42.58724081439027 - sys_corr_27: 13.707542377680872 - sys_corr_28: -72.59517510293404 - sys_corr_29: 95.52402071551495 - sys_corr_30: 66.15918985985331 - sys_corr_31: -77.45043694770233 - sys_corr_32: -252.23384809598232 - sys_corr_33: 95.3121968779528 - sys_corr_34: 225.9281129676342 - sys_corr_35: -99.67975323829808 - sys_corr_36: 20.482935219874747 - sys_corr_37: 60.49441698568718 - sys_corr_38: -43.49884056055039 - sys_corr_39: -106.30195038446259 - sys_corr_40: -26.253069957032274 - sys_corr_41: 51.01768138984949 - sys_corr_42: 32.838532456830286 - sys_corr_43: -26.05996003111077 - sys_corr_44: 2.394739817390169 - sys_corr_45: -17.10895380555876 - sys_corr_46: -16.874747549506996 - sys_corr_47: 15.53540502957553 - sys_corr_48: 11.854406184755165 - sys_corr_49: -38.614965983613935 - sys_corr_50: 12.248555084764266 - sys_corr_51: -15.113278838351508 - sys_corr_52: -20.27881651853549 - sys_corr_53: -3.188251000898995 - sys_corr_54: -4.9263938656208985 - sys_corr_55: -5.689398518006105 - sys_corr_56: 1.6485218757802962 - sys_corr_57: 4.045247165408835 - sys_corr_58: -4.300305223653117 - sys_corr_59: 1.3594187619309595 - sys_corr_60: 1.894370284880219 - sys_corr_61: 3.3441307957788458 - sys_corr_62: 1.2824825634048287 - sys_corr_63: -2.027325616898979 - sys_corr_64: -7.920172652742701 - sys_corr_65: -3.130234394887524 - sys_corr_66: 2.135357567352313 - sys_corr_67: 4.784846163177628 - sys_corr_68: -6.855392523128873 - sys_corr_69: 3.8638143974299095 - sys_corr_70: -4.499722297047415 - sys_corr_71: -2.751823944533525 - sys_corr_72: 4.957935037764638 - sys_corr_73: 0.6152341328533314 - sys_corr_74: -1.8560377948825928 - sys_corr_75: -2.105299669349961 - sys_corr_76: -0.9191687264411394 - sys_corr_77: -8.35427843287725 - sys_corr_78: 0.1250321384517952 - sys_corr_79: 1.3610536579054902 - sys_corr_80: -0.7009330299280249 - sys_corr_81: 5.858239511783431 - sys_corr_82: -0.1366772964155597 - sys_corr_83: 3.772730543653823 - sys_corr_84: 1.8179832576395565 - sys_corr_85: 1.880879365176519 - sys_corr_86: 2.932116946277382 - sys_corr_87: -0.5908777093777098 - sys_corr_88: -0.07524693436817523 - sys_corr_89: 0.12893628257079645 - sys_corr_90: 0.8413452674552889 - sys_corr_91: 1.6690055995263966 - sys_corr_92: 1.9608774626989478 - sys_corr_93: 0.22173240673755026 - sys_corr_94: 0.61905526762655 - sys_corr_95: -0.9265414775502343 - sys_corr_96: -0.07159333345389823 - sys_corr_97: 0.15456207688205068 - sys_corr_98: 0.24085969853276715 - sys_corr_99: -0.40241551624603467 - sys_corr_100: -0.5119256119243891 - sys_corr_101: -0.4190169732221318 - sys_corr_102: -1.0583129313834507 - sys_corr_103: 0.08960190317184749 - sys_corr_104: 0.561730292354869 - sys_corr_105: -0.0863681497588371 - sys_corr_106: -0.2293816132996184 - sys_corr_107: -0.44339231714262956 - sys_corr_108: 0.05012780447197837 - sys_corr_109: 0.1326363950027008 - sys_corr_110: -0.1176630077153398 - sys_corr_111: -0.05887667236132153 - sys_corr_112: 0.06858859361541567 - sys_corr_113: 0.024423369803182056 - sys_corr_114: 0.001192247744239865 - sys_corr_115: 0.04642381549936991 - sys_corr_116: -0.013484081815094967 - sys_corr_117: -0.004787890249050075 - sys_corr_118: 0.06788551318894154 - sys_corr_119: -0.0015072155330067057 - sys_corr_120: 0.0018970039238349592 - sys_corr_121: 0.0013530755767032668 - sys_corr_122: 0.004836738109698682 - sys_corr_123: 0.0013331119857258487 - sys_corr_124: -0.005280503380239292 - sys_corr_125: -0.008438320637856664 - sys_corr_126: -0.0006853074730578592 - sys_corr_127: 0.23673618394261037 - sys_corr_128: 0.03384922966175574 - sys_corr_129: -0.0015049659231713525 - sys_corr_130: -0.0038593147794600147 - sys_corr_131: -0.009994248710728057 - sys_corr_132: -0.009140079135641141 + luminosity: 5.64811698e+02 +- sys_corr_1: 3.03471127e+02 + sys_corr_2: 8.52258639e+01 + sys_corr_3: -5.58755350e+01 + sys_corr_4: 7.82118398e+01 + sys_corr_5: 1.23169358e+02 + sys_corr_6: -5.53845331e+02 + sys_corr_7: 5.45500599e+01 + sys_corr_8: 4.55192828e+00 + sys_corr_9: -7.38151284e+00 + sys_corr_10: -1.92470742e+01 + sys_corr_11: 3.72636341e+00 + sys_corr_12: 2.10918445e+01 + sys_corr_13: -1.29751904e+01 + sys_corr_14: -2.49077331e+01 + sys_corr_15: 4.47273830e+00 + sys_corr_16: 7.49560573e+00 + sys_corr_17: -1.18084576e+01 + sys_corr_18: 1.01507604e+01 + sys_corr_19: 1.41905874e+00 + sys_corr_20: 1.00508145e+01 + sys_corr_21: -1.50440789e+00 + sys_corr_22: 8.05776893e+01 + sys_corr_23: -5.65671951e-01 + sys_corr_24: 3.23161937e+01 + sys_corr_25: -1.82896079e+01 + sys_corr_26: -4.25872408e+01 + sys_corr_27: 1.37075424e+01 + sys_corr_28: -7.25951751e+01 + sys_corr_29: 9.55240207e+01 + sys_corr_30: 6.61591899e+01 + sys_corr_31: -7.74504369e+01 + sys_corr_32: -2.52233848e+02 + sys_corr_33: 9.53121969e+01 + sys_corr_34: 2.25928113e+02 + sys_corr_35: -9.96797532e+01 + sys_corr_36: 2.04829352e+01 + sys_corr_37: 6.04944170e+01 + sys_corr_38: -4.34988406e+01 + sys_corr_39: -1.06301950e+02 + sys_corr_40: -2.62530700e+01 + sys_corr_41: 5.10176814e+01 + sys_corr_42: 3.28385325e+01 + sys_corr_43: -2.60599600e+01 + sys_corr_44: 2.39473982e+00 + sys_corr_45: -1.71089538e+01 + sys_corr_46: -1.68747475e+01 + sys_corr_47: 1.55354050e+01 + sys_corr_48: 1.18544062e+01 + sys_corr_49: -3.86149660e+01 + sys_corr_50: 1.22485551e+01 + sys_corr_51: -1.51132788e+01 + sys_corr_52: -2.02788165e+01 + sys_corr_53: -3.18825100e+00 + sys_corr_54: -4.92639387e+00 + sys_corr_55: -5.68939852e+00 + sys_corr_56: 1.64852188e+00 + sys_corr_57: 4.04524717e+00 + sys_corr_58: -4.30030522e+00 + sys_corr_59: 1.35941876e+00 + sys_corr_60: 1.89437028e+00 + sys_corr_61: 3.34413080e+00 + sys_corr_62: 1.28248256e+00 + sys_corr_63: -2.02732562e+00 + sys_corr_64: -7.92017265e+00 + sys_corr_65: -3.13023439e+00 + sys_corr_66: 2.13535757e+00 + sys_corr_67: 4.78484616e+00 + sys_corr_68: -6.85539252e+00 + sys_corr_69: 3.86381440e+00 + sys_corr_70: -4.49972230e+00 + sys_corr_71: -2.75182394e+00 + sys_corr_72: 4.95793504e+00 + sys_corr_73: 6.15234133e-01 + sys_corr_74: -1.85603779e+00 + sys_corr_75: -2.10529967e+00 + sys_corr_76: -9.19168726e-01 + sys_corr_77: -8.35427843e+00 + sys_corr_78: 1.25032138e-01 + sys_corr_79: 1.36105366e+00 + sys_corr_80: -7.00933030e-01 + sys_corr_81: 5.85823951e+00 + sys_corr_82: -1.36677296e-01 + sys_corr_83: 3.77273054e+00 + sys_corr_84: 1.81798326e+00 + sys_corr_85: 1.88087937e+00 + sys_corr_86: 2.93211695e+00 + sys_corr_87: -5.90877709e-01 + sys_corr_88: -7.52469344e-02 + sys_corr_89: 1.28936283e-01 + sys_corr_90: 8.41345267e-01 + sys_corr_91: 1.66900560e+00 + sys_corr_92: 1.96087746e+00 + sys_corr_93: 2.21732407e-01 + sys_corr_94: 6.19055268e-01 + sys_corr_95: -9.26541478e-01 + sys_corr_96: -7.15933335e-02 + sys_corr_97: 1.54562077e-01 + sys_corr_98: 2.40859699e-01 + sys_corr_99: -4.02415516e-01 + sys_corr_100: -5.11925612e-01 + sys_corr_101: -4.19016973e-01 + sys_corr_102: -1.05831293e+00 + sys_corr_103: 8.96019032e-02 + sys_corr_104: 5.61730292e-01 + sys_corr_105: -8.63681498e-02 + sys_corr_106: -2.29381613e-01 + sys_corr_107: -4.43392317e-01 + sys_corr_108: 5.01278045e-02 + sys_corr_109: 1.32636395e-01 + sys_corr_110: -1.17663008e-01 + sys_corr_111: -5.88766724e-02 + sys_corr_112: 6.85885936e-02 + sys_corr_113: 2.44233698e-02 + sys_corr_114: 1.19224774e-03 + sys_corr_115: 4.64238155e-02 + sys_corr_116: -1.34840818e-02 + sys_corr_117: -4.78789025e-03 + sys_corr_118: 6.78855132e-02 + sys_corr_119: -1.50721553e-03 + sys_corr_120: 1.89700392e-03 + sys_corr_121: 1.35307558e-03 + sys_corr_122: 4.83673811e-03 + sys_corr_123: 1.33311199e-03 + sys_corr_124: -5.28050338e-03 + sys_corr_125: -8.43832064e-03 + sys_corr_126: -6.85307473e-04 + sys_corr_127: 2.36736184e-01 + sys_corr_128: 3.38492297e-02 + sys_corr_129: -1.50496592e-03 + sys_corr_130: -3.85931478e-03 + sys_corr_131: -9.99424871e-03 + sys_corr_132: -9.14007914e-03 stat: 0.0 - luminosity: 574.477992 -- sys_corr_1: 300.2128906005667 - sys_corr_2: 84.79909138800292 - sys_corr_3: -88.96914309088726 - sys_corr_4: 62.92101813189833 - sys_corr_5: 158.62314037641178 - sys_corr_6: -582.6766946579253 - sys_corr_7: 48.54051329530006 - sys_corr_8: 10.820780210095515 - sys_corr_9: -10.37410886349292 - sys_corr_10: 2.1859331432575635 - sys_corr_11: 6.675258314786273 - sys_corr_12: 13.21270414881718 - sys_corr_13: 22.500230038356182 - sys_corr_14: 4.581178544463957 - sys_corr_15: -5.2684716946070305 - sys_corr_16: -4.674852567524101 - sys_corr_17: 5.640851743198853 - sys_corr_18: 34.435624530603974 - sys_corr_19: 11.80070378214397 - sys_corr_20: 15.918851537080064 - sys_corr_21: 7.061372347445265 - sys_corr_22: 7.628232222162737 - sys_corr_23: -1.308081254648717 - sys_corr_24: -45.48240909643822 - sys_corr_25: -8.65270822208615 - sys_corr_26: -4.113904439115083 - sys_corr_27: -4.556129620851872 - sys_corr_28: -63.4339612456539 - sys_corr_29: 84.57462166237555 - sys_corr_30: 85.44445833535697 - sys_corr_31: -98.3349608286198 - sys_corr_32: 20.982166974439057 - sys_corr_33: 37.0177435407329 - sys_corr_34: -1.844126206661256 - sys_corr_35: -5.159612178004834 - sys_corr_36: -64.90151439557597 - sys_corr_37: 141.52047616251087 - sys_corr_38: -86.55465847613179 - sys_corr_39: 264.8368349367211 - sys_corr_40: 79.92565313763359 - sys_corr_41: 76.20201905379984 - sys_corr_42: -52.77184120113892 - sys_corr_43: -9.340957806236966 - sys_corr_44: -62.60517795330119 - sys_corr_45: 54.17055425040259 - sys_corr_46: -30.804853608379382 - sys_corr_47: -44.94462929641423 - sys_corr_48: 4.912503341388312 - sys_corr_49: -9.41368491725003 - sys_corr_50: 4.277286524045517 - sys_corr_51: -21.19113474678528 - sys_corr_52: -10.210408969787972 - sys_corr_53: 3.670338062830047 - sys_corr_54: -5.781023673885154 - sys_corr_55: 9.393509059840722 - sys_corr_56: -14.748016279472775 - sys_corr_57: 1.354648025370996 - sys_corr_58: 1.8181045252861776 - sys_corr_59: 12.74088093675732 - sys_corr_60: -5.90173327436232 - sys_corr_61: 5.094097577950329 - sys_corr_62: -0.043436600596442075 - sys_corr_63: -2.544864366608267 - sys_corr_64: 6.103126832162132 - sys_corr_65: 5.931832196239548 - sys_corr_66: -1.279752975190209 - sys_corr_67: 9.238677932555925 - sys_corr_68: 10.468064273967297 - sys_corr_69: -10.835074020449841 - sys_corr_70: -4.729455947452569 - sys_corr_71: -4.523992714894768 - sys_corr_72: 8.850614456725989 - sys_corr_73: 3.606078642770165 - sys_corr_74: -1.7835168587781696 - sys_corr_75: -2.2649978493153724 - sys_corr_76: -0.3193780114447947 - sys_corr_77: -5.407086646231784 - sys_corr_78: -0.6743012976346894 - sys_corr_79: -8.380854531915096 - sys_corr_80: -0.5030900594776337 - sys_corr_81: -3.274044791933335 - sys_corr_82: 7.074357118331061 - sys_corr_83: -3.1151148561431965 - sys_corr_84: 1.30998446671926 - sys_corr_85: 0.1787374819525118 - sys_corr_86: 0.7517065693089746 - sys_corr_87: 10.356437985476996 - sys_corr_88: 1.424051392968351 - sys_corr_89: 0.28625650497002253 - sys_corr_90: 0.5764210102342784 - sys_corr_91: 0.8250107988272274 - sys_corr_92: -2.851238027253747 - sys_corr_93: 0.10903085109414003 - sys_corr_94: 0.9579325400592669 - sys_corr_95: -1.4220382134528713 - sys_corr_96: -0.27275637433955524 - sys_corr_97: 1.1669544783164507 - sys_corr_98: 0.8458464814370318 - sys_corr_99: -0.0475106056776639 - sys_corr_100: 0.7123384565938095 - sys_corr_101: -0.03988025057274547 - sys_corr_102: 1.868512423634778 - sys_corr_103: -0.41631812239332133 - sys_corr_104: -0.3846305841269686 - sys_corr_105: -0.05212258660965807 - sys_corr_106: 0.11330630245490389 - sys_corr_107: -0.638432077651713 - sys_corr_108: 0.09093179048495202 - sys_corr_109: 0.1003861770779491 - sys_corr_110: -0.4221788558530608 - sys_corr_111: 0.034803180705708446 - sys_corr_112: 0.05588810941307842 - sys_corr_113: 0.07531253973718754 - sys_corr_114: 0.0002324228096052634 - sys_corr_115: 0.01044776874923743 - sys_corr_116: -0.0446382002364954 - sys_corr_117: -0.0212385549100103 - sys_corr_118: -0.028729595921129468 - sys_corr_119: -0.0002951130114577957 - sys_corr_120: 0.0181063348789048 - sys_corr_121: -0.009272142846679614 - sys_corr_122: -0.013230427610730696 - sys_corr_123: -0.010941605792229438 - sys_corr_124: -0.04586058191129056 - sys_corr_125: 0.0074339317463137395 - sys_corr_126: -0.009687210296516131 - sys_corr_127: 0.12231710778910801 - sys_corr_128: -0.01518931789823919 - sys_corr_129: 0.01998398967480159 - sys_corr_130: -5.607053275867137e-05 - sys_corr_131: 3.813514950390326e-05 - sys_corr_132: -0.00792449140282383 + luminosity: 5.74477992e+02 +- sys_corr_1: 3.00212891e+02 + sys_corr_2: 8.47990914e+01 + sys_corr_3: -8.89691431e+01 + sys_corr_4: 6.29210181e+01 + sys_corr_5: 1.58623140e+02 + sys_corr_6: -5.82676695e+02 + sys_corr_7: 4.85405133e+01 + sys_corr_8: 1.08207802e+01 + sys_corr_9: -1.03741089e+01 + sys_corr_10: 2.18593314e+00 + sys_corr_11: 6.67525831e+00 + sys_corr_12: 1.32127041e+01 + sys_corr_13: 2.25002300e+01 + sys_corr_14: 4.58117854e+00 + sys_corr_15: -5.26847169e+00 + sys_corr_16: -4.67485257e+00 + sys_corr_17: 5.64085174e+00 + sys_corr_18: 3.44356245e+01 + sys_corr_19: 1.18007038e+01 + sys_corr_20: 1.59188515e+01 + sys_corr_21: 7.06137235e+00 + sys_corr_22: 7.62823222e+00 + sys_corr_23: -1.30808125e+00 + sys_corr_24: -4.54824091e+01 + sys_corr_25: -8.65270822e+00 + sys_corr_26: -4.11390444e+00 + sys_corr_27: -4.55612962e+00 + sys_corr_28: -6.34339612e+01 + sys_corr_29: 8.45746217e+01 + sys_corr_30: 8.54444583e+01 + sys_corr_31: -9.83349608e+01 + sys_corr_32: 2.09821670e+01 + sys_corr_33: 3.70177435e+01 + sys_corr_34: -1.84412621e+00 + sys_corr_35: -5.15961218e+00 + sys_corr_36: -6.49015144e+01 + sys_corr_37: 1.41520476e+02 + sys_corr_38: -8.65546585e+01 + sys_corr_39: 2.64836835e+02 + sys_corr_40: 7.99256531e+01 + sys_corr_41: 7.62020191e+01 + sys_corr_42: -5.27718412e+01 + sys_corr_43: -9.34095781e+00 + sys_corr_44: -6.26051780e+01 + sys_corr_45: 5.41705543e+01 + sys_corr_46: -3.08048536e+01 + sys_corr_47: -4.49446293e+01 + sys_corr_48: 4.91250334e+00 + sys_corr_49: -9.41368492e+00 + sys_corr_50: 4.27728652e+00 + sys_corr_51: -2.11911347e+01 + sys_corr_52: -1.02104090e+01 + sys_corr_53: 3.67033806e+00 + sys_corr_54: -5.78102367e+00 + sys_corr_55: 9.39350906e+00 + sys_corr_56: -1.47480163e+01 + sys_corr_57: 1.35464803e+00 + sys_corr_58: 1.81810453e+00 + sys_corr_59: 1.27408809e+01 + sys_corr_60: -5.90173327e+00 + sys_corr_61: 5.09409758e+00 + sys_corr_62: -4.34366006e-02 + sys_corr_63: -2.54486437e+00 + sys_corr_64: 6.10312683e+00 + sys_corr_65: 5.93183220e+00 + sys_corr_66: -1.27975298e+00 + sys_corr_67: 9.23867793e+00 + sys_corr_68: 1.04680643e+01 + sys_corr_69: -1.08350740e+01 + sys_corr_70: -4.72945595e+00 + sys_corr_71: -4.52399271e+00 + sys_corr_72: 8.85061446e+00 + sys_corr_73: 3.60607864e+00 + sys_corr_74: -1.78351686e+00 + sys_corr_75: -2.26499785e+00 + sys_corr_76: -3.19378011e-01 + sys_corr_77: -5.40708665e+00 + sys_corr_78: -6.74301298e-01 + sys_corr_79: -8.38085453e+00 + sys_corr_80: -5.03090059e-01 + sys_corr_81: -3.27404479e+00 + sys_corr_82: 7.07435712e+00 + sys_corr_83: -3.11511486e+00 + sys_corr_84: 1.30998447e+00 + sys_corr_85: 1.78737482e-01 + sys_corr_86: 7.51706569e-01 + sys_corr_87: 1.03564380e+01 + sys_corr_88: 1.42405139e+00 + sys_corr_89: 2.86256505e-01 + sys_corr_90: 5.76421010e-01 + sys_corr_91: 8.25010799e-01 + sys_corr_92: -2.85123803e+00 + sys_corr_93: 1.09030851e-01 + sys_corr_94: 9.57932540e-01 + sys_corr_95: -1.42203821e+00 + sys_corr_96: -2.72756374e-01 + sys_corr_97: 1.16695448e+00 + sys_corr_98: 8.45846481e-01 + sys_corr_99: -4.75106057e-02 + sys_corr_100: 7.12338457e-01 + sys_corr_101: -3.98802506e-02 + sys_corr_102: 1.86851242e+00 + sys_corr_103: -4.16318122e-01 + sys_corr_104: -3.84630584e-01 + sys_corr_105: -5.21225866e-02 + sys_corr_106: 1.13306302e-01 + sys_corr_107: -6.38432078e-01 + sys_corr_108: 9.09317905e-02 + sys_corr_109: 1.00386177e-01 + sys_corr_110: -4.22178856e-01 + sys_corr_111: 3.48031807e-02 + sys_corr_112: 5.58881094e-02 + sys_corr_113: 7.53125397e-02 + sys_corr_114: 2.32422810e-04 + sys_corr_115: 1.04477687e-02 + sys_corr_116: -4.46382002e-02 + sys_corr_117: -2.12385549e-02 + sys_corr_118: -2.87295959e-02 + sys_corr_119: -2.95113011e-04 + sys_corr_120: 1.81063349e-02 + sys_corr_121: -9.27214285e-03 + sys_corr_122: -1.32304276e-02 + sys_corr_123: -1.09416058e-02 + sys_corr_124: -4.58605819e-02 + sys_corr_125: 7.43393175e-03 + sys_corr_126: -9.68721030e-03 + sys_corr_127: 1.22317108e-01 + sys_corr_128: -1.51893179e-02 + sys_corr_129: 1.99839897e-02 + sys_corr_130: -5.60705328e-05 + sys_corr_131: 3.81351495e-05 + sys_corr_132: -7.92449140e-03 stat: 0.0 - luminosity: 595.996522 -- sys_corr_1: 280.866908390239 - sys_corr_2: 66.69899334297278 - sys_corr_3: -111.14202319991604 - sys_corr_4: 50.328229047121965 - sys_corr_5: 189.02921306754996 - sys_corr_6: -598.0833623943468 - sys_corr_7: 61.461283425883465 - sys_corr_8: -7.768760948494428 - sys_corr_9: -22.210977363429155 - sys_corr_10: -36.62849988386182 - sys_corr_11: -10.477613079875164 - sys_corr_12: 15.924002295966705 - sys_corr_13: -10.298542685703172 - sys_corr_14: 7.142011509652132 - sys_corr_15: 0.8518891656316896 - sys_corr_16: 2.6699215355145998 - sys_corr_17: 6.3572302422526485 - sys_corr_18: -6.079063821010743 - sys_corr_19: -6.136421898602794 - sys_corr_20: -0.7435689160875922 - sys_corr_21: 4.609163109878772 - sys_corr_22: -27.12646102988786 - sys_corr_23: 0.7964910365795699 - sys_corr_24: -54.95346781569551 - sys_corr_25: 10.125503095640052 - sys_corr_26: 42.97677561546222 - sys_corr_27: -20.241757382781834 - sys_corr_28: -69.44875317356166 - sys_corr_29: 70.54440913104605 - sys_corr_30: 87.5480878595105 - sys_corr_31: -28.43784563224528 - sys_corr_32: 37.71006332891916 - sys_corr_33: 12.324271517381346 - sys_corr_34: 20.17875011322803 - sys_corr_35: 6.64948982246347 - sys_corr_36: -27.89505581362118 - sys_corr_37: -27.15431620767225 - sys_corr_38: -19.815011822817524 - sys_corr_39: -83.2690635077941 - sys_corr_40: 62.4457498929155 - sys_corr_41: -105.84365964842301 - sys_corr_42: -50.19909071903407 - sys_corr_43: 101.25042301770551 - sys_corr_44: -114.95046665505505 - sys_corr_45: 113.23267227763809 - sys_corr_46: 200.23896426970197 - sys_corr_47: 23.42817702870589 - sys_corr_48: -40.994367203325304 - sys_corr_49: -32.85931390877781 - sys_corr_50: -77.15784985769018 - sys_corr_51: 9.96783964587834 - sys_corr_52: -19.20546712397293 - sys_corr_53: -0.807491698904993 - sys_corr_54: 15.386730655922596 - sys_corr_55: 6.508827783633306 - sys_corr_56: 9.072840822850747 - sys_corr_57: -9.703890364891446 - sys_corr_58: 14.212482581391194 - sys_corr_59: 8.449442243863718 - sys_corr_60: -12.353138134764096 - sys_corr_61: -1.525460823729412 - sys_corr_62: -16.937205338372088 - sys_corr_63: -12.649680686588086 - sys_corr_64: 2.946732102440431 - sys_corr_65: -12.944357206647013 - sys_corr_66: 2.656944759697186 - sys_corr_67: -10.95990768589198 - sys_corr_68: -28.593771128901313 - sys_corr_69: 8.659507025912779 - sys_corr_70: -1.6197957159654757 - sys_corr_71: -0.467246269139907 - sys_corr_72: -0.38193522713741995 - sys_corr_73: -4.863103173965194 - sys_corr_74: -4.331773055174495 - sys_corr_75: -14.948485389983938 - sys_corr_76: 0.36341125539578994 - sys_corr_77: 4.971616241606476 - sys_corr_78: -3.0512699337827227 - sys_corr_79: -5.581521144709973 - sys_corr_80: -3.1719048321271672 - sys_corr_81: 0.2464304516935759 - sys_corr_82: 3.020281755741592 - sys_corr_83: -2.1679638950123343 - sys_corr_84: 1.8757927101923202 - sys_corr_85: -0.6056587294180072 - sys_corr_86: 5.512708673743554 - sys_corr_87: 7.6557086170556525 - sys_corr_88: 4.708160505132007 - sys_corr_89: 0.09533786457707855 - sys_corr_90: 2.350895599598927 - sys_corr_91: 1.3446288640629054 - sys_corr_92: 1.494081930453967 - sys_corr_93: 0.08876499488268345 - sys_corr_94: 0.8781239217772494 - sys_corr_95: -0.9931947862346303 - sys_corr_96: 0.053710220102836076 - sys_corr_97: 0.4936210141987122 - sys_corr_98: 0.11506973865699835 - sys_corr_99: 0.5206502344884507 - sys_corr_100: -0.4807980342973957 - sys_corr_101: -0.010829269796735827 - sys_corr_102: -0.04512923870579278 - sys_corr_103: -0.33453256524919184 - sys_corr_104: -0.7156600629531953 - sys_corr_105: -0.6103941216137219 - sys_corr_106: -0.3234935983790235 - sys_corr_107: -0.3967232633198854 - sys_corr_108: 0.4275965445372135 - sys_corr_109: 0.21718914045863644 - sys_corr_110: 0.39092542932548024 - sys_corr_111: 0.14425292881681498 - sys_corr_112: 0.20243290518238105 - sys_corr_113: 0.1515619778740265 - sys_corr_114: 0.0011027634889889883 - sys_corr_115: 0.1313520682570579 - sys_corr_116: -0.03693624028095741 - sys_corr_117: -0.019906514348537265 - sys_corr_118: 0.012747528410773208 - sys_corr_119: 0.0001882165496010753 - sys_corr_120: 0.006371609139518456 - sys_corr_121: -0.010666269741417819 - sys_corr_122: -0.04615033487955395 - sys_corr_123: -0.02412080451208272 - sys_corr_124: -0.02935281231678253 - sys_corr_125: 0.02735577367249511 - sys_corr_126: -0.006051896298005035 - sys_corr_127: 0.12515048130459175 - sys_corr_128: -0.0699578358941554 - sys_corr_129: -0.033135416997193134 - sys_corr_130: 0.015364586960461992 - sys_corr_131: 0.00719739454602982 - sys_corr_132: -0.005814274827688101 + luminosity: 5.95996522e+02 +- sys_corr_1: 2.80866908e+02 + sys_corr_2: 6.66989933e+01 + sys_corr_3: -1.11142023e+02 + sys_corr_4: 5.03282290e+01 + sys_corr_5: 1.89029213e+02 + sys_corr_6: -5.98083362e+02 + sys_corr_7: 6.14612834e+01 + sys_corr_8: -7.76876095e+00 + sys_corr_9: -2.22109774e+01 + sys_corr_10: -3.66284999e+01 + sys_corr_11: -1.04776131e+01 + sys_corr_12: 1.59240023e+01 + sys_corr_13: -1.02985427e+01 + sys_corr_14: 7.14201151e+00 + sys_corr_15: 8.51889166e-01 + sys_corr_16: 2.66992154e+00 + sys_corr_17: 6.35723024e+00 + sys_corr_18: -6.07906382e+00 + sys_corr_19: -6.13642190e+00 + sys_corr_20: -7.43568916e-01 + sys_corr_21: 4.60916311e+00 + sys_corr_22: -2.71264610e+01 + sys_corr_23: 7.96491037e-01 + sys_corr_24: -5.49534678e+01 + sys_corr_25: 1.01255031e+01 + sys_corr_26: 4.29767756e+01 + sys_corr_27: -2.02417574e+01 + sys_corr_28: -6.94487532e+01 + sys_corr_29: 7.05444091e+01 + sys_corr_30: 8.75480879e+01 + sys_corr_31: -2.84378456e+01 + sys_corr_32: 3.77100633e+01 + sys_corr_33: 1.23242715e+01 + sys_corr_34: 2.01787501e+01 + sys_corr_35: 6.64948982e+00 + sys_corr_36: -2.78950558e+01 + sys_corr_37: -2.71543162e+01 + sys_corr_38: -1.98150118e+01 + sys_corr_39: -8.32690635e+01 + sys_corr_40: 6.24457499e+01 + sys_corr_41: -1.05843660e+02 + sys_corr_42: -5.01990907e+01 + sys_corr_43: 1.01250423e+02 + sys_corr_44: -1.14950467e+02 + sys_corr_45: 1.13232672e+02 + sys_corr_46: 2.00238964e+02 + sys_corr_47: 2.34281770e+01 + sys_corr_48: -4.09943672e+01 + sys_corr_49: -3.28593139e+01 + sys_corr_50: -7.71578499e+01 + sys_corr_51: 9.96783965e+00 + sys_corr_52: -1.92054671e+01 + sys_corr_53: -8.07491699e-01 + sys_corr_54: 1.53867307e+01 + sys_corr_55: 6.50882778e+00 + sys_corr_56: 9.07284082e+00 + sys_corr_57: -9.70389036e+00 + sys_corr_58: 1.42124826e+01 + sys_corr_59: 8.44944224e+00 + sys_corr_60: -1.23531381e+01 + sys_corr_61: -1.52546082e+00 + sys_corr_62: -1.69372053e+01 + sys_corr_63: -1.26496807e+01 + sys_corr_64: 2.94673210e+00 + sys_corr_65: -1.29443572e+01 + sys_corr_66: 2.65694476e+00 + sys_corr_67: -1.09599077e+01 + sys_corr_68: -2.85937711e+01 + sys_corr_69: 8.65950703e+00 + sys_corr_70: -1.61979572e+00 + sys_corr_71: -4.67246269e-01 + sys_corr_72: -3.81935227e-01 + sys_corr_73: -4.86310317e+00 + sys_corr_74: -4.33177306e+00 + sys_corr_75: -1.49484854e+01 + sys_corr_76: 3.63411255e-01 + sys_corr_77: 4.97161624e+00 + sys_corr_78: -3.05126993e+00 + sys_corr_79: -5.58152114e+00 + sys_corr_80: -3.17190483e+00 + sys_corr_81: 2.46430452e-01 + sys_corr_82: 3.02028176e+00 + sys_corr_83: -2.16796390e+00 + sys_corr_84: 1.87579271e+00 + sys_corr_85: -6.05658729e-01 + sys_corr_86: 5.51270867e+00 + sys_corr_87: 7.65570862e+00 + sys_corr_88: 4.70816051e+00 + sys_corr_89: 9.53378646e-02 + sys_corr_90: 2.35089560e+00 + sys_corr_91: 1.34462886e+00 + sys_corr_92: 1.49408193e+00 + sys_corr_93: 8.87649949e-02 + sys_corr_94: 8.78123922e-01 + sys_corr_95: -9.93194786e-01 + sys_corr_96: 5.37102201e-02 + sys_corr_97: 4.93621014e-01 + sys_corr_98: 1.15069739e-01 + sys_corr_99: 5.20650234e-01 + sys_corr_100: -4.80798034e-01 + sys_corr_101: -1.08292698e-02 + sys_corr_102: -4.51292387e-02 + sys_corr_103: -3.34532565e-01 + sys_corr_104: -7.15660063e-01 + sys_corr_105: -6.10394122e-01 + sys_corr_106: -3.23493598e-01 + sys_corr_107: -3.96723263e-01 + sys_corr_108: 4.27596545e-01 + sys_corr_109: 2.17189140e-01 + sys_corr_110: 3.90925429e-01 + sys_corr_111: 1.44252929e-01 + sys_corr_112: 2.02432905e-01 + sys_corr_113: 1.51561978e-01 + sys_corr_114: 1.10276349e-03 + sys_corr_115: 1.31352068e-01 + sys_corr_116: -3.69362403e-02 + sys_corr_117: -1.99065143e-02 + sys_corr_118: 1.27475284e-02 + sys_corr_119: 1.88216550e-04 + sys_corr_120: 6.37160914e-03 + sys_corr_121: -1.06662697e-02 + sys_corr_122: -4.61503349e-02 + sys_corr_123: -2.41208045e-02 + sys_corr_124: -2.93528123e-02 + sys_corr_125: 2.73557737e-02 + sys_corr_126: -6.05189630e-03 + sys_corr_127: 1.25150481e-01 + sys_corr_128: -6.99578359e-02 + sys_corr_129: -3.31354170e-02 + sys_corr_130: 1.53645870e-02 + sys_corr_131: 7.19739455e-03 + sys_corr_132: -5.81427483e-03 stat: 0.0 - luminosity: 575.7196720000001 -- sys_corr_1: 267.03477235232265 - sys_corr_2: 62.841050544442474 - sys_corr_3: -121.69630625134175 - sys_corr_4: 29.022372452694576 - sys_corr_5: 198.83497276838807 - sys_corr_6: -599.8928324320742 - sys_corr_7: 68.93007889265276 - sys_corr_8: 6.194853372057848 - sys_corr_9: -9.35967187696665 - sys_corr_10: -21.6414658730567 - sys_corr_11: -1.3514882017530419 - sys_corr_12: 24.50404383188406 - sys_corr_13: -5.578144752918838 - sys_corr_14: 7.573518513258733 - sys_corr_15: -1.929846474323108 - sys_corr_16: 0.2672770340906983 - sys_corr_17: 3.8607707789629093 - sys_corr_18: 11.43518708634285 - sys_corr_19: -10.34921281617915 - sys_corr_20: 7.365773018976952 - sys_corr_21: 4.931270902350292 - sys_corr_22: -50.46373496851724 - sys_corr_23: 2.930685988697628 - sys_corr_24: -98.8611886906005 - sys_corr_25: 14.12815738355403 - sys_corr_26: 61.48306136597496 - sys_corr_27: -31.777690972021233 - sys_corr_28: -79.04111736509938 - sys_corr_29: 49.2159357996761 - sys_corr_30: 119.88866114457677 - sys_corr_31: -84.61515797622343 - sys_corr_32: 42.15547866563413 - sys_corr_33: -44.121527355929395 - sys_corr_34: -11.854893813819805 - sys_corr_35: -7.149341628724527 - sys_corr_36: -58.86683088388035 - sys_corr_37: -68.83822974571248 - sys_corr_38: 265.80929278878045 - sys_corr_39: -57.16326893500435 - sys_corr_40: 6.128716436238496 - sys_corr_41: 128.0058719646964 - sys_corr_42: -61.312678000819055 - sys_corr_43: -91.81555592705655 - sys_corr_44: -51.996775939468186 - sys_corr_45: -26.453562339419594 - sys_corr_46: -42.94290653203943 - sys_corr_47: -52.112061827455015 - sys_corr_48: -25.290286456290346 - sys_corr_49: 11.484043059609558 - sys_corr_50: -27.291523493449382 - sys_corr_51: -1.0977333059157026 - sys_corr_52: -18.256548277422997 - sys_corr_53: 6.278944110746265 - sys_corr_54: -3.9350813280594936 - sys_corr_55: 7.716782269522807 - sys_corr_56: -10.696442543667898 - sys_corr_57: -0.40983666646320205 - sys_corr_58: -1.4995700918253536 - sys_corr_59: 4.58412253491001 - sys_corr_60: -7.737328144750865 - sys_corr_61: -9.434275736400213 - sys_corr_62: -8.142638819444363 - sys_corr_63: -2.0620661315547535 - sys_corr_64: 0.2282202251722094 - sys_corr_65: 1.8533413944178008 - sys_corr_66: -8.846646984653981 - sys_corr_67: -6.963000999825219 - sys_corr_68: -15.67512300821032 - sys_corr_69: 9.97946388231389 - sys_corr_70: 1.8927566137721414 - sys_corr_71: -14.176574343372307 - sys_corr_72: -1.554772768510188 - sys_corr_73: -1.3749375951692233 - sys_corr_74: -1.6666243031744363 - sys_corr_75: -9.023379114682221 - sys_corr_76: -2.160757065157148 - sys_corr_77: 4.667756719095674 - sys_corr_78: -1.5271568517775433 - sys_corr_79: -3.639976228022566 - sys_corr_80: -2.364023025527418 - sys_corr_81: 1.934650642288078 - sys_corr_82: -0.8753490711886281 - sys_corr_83: 2.5982505376158196 - sys_corr_84: 2.988829171184534 - sys_corr_85: 2.0750453031521268 - sys_corr_86: 0.27267636315868676 - sys_corr_87: 0.8698067269143592 - sys_corr_88: 1.089753368382058 - sys_corr_89: -0.25902616882015395 - sys_corr_90: 0.13224818655332443 - sys_corr_91: -0.19317491797131864 - sys_corr_92: 0.6159577856038512 - sys_corr_93: 0.20266369493651662 - sys_corr_94: 0.9194117534287147 - sys_corr_95: -0.8139656178467694 - sys_corr_96: 0.0328689106304636 - sys_corr_97: 0.09429194170780884 - sys_corr_98: 0.2160648791943181 - sys_corr_99: 0.013709228214463827 - sys_corr_100: -0.2824176508686849 - sys_corr_101: -0.8340900845341648 - sys_corr_102: -2.2325677366044347 - sys_corr_103: 0.22930665340736178 - sys_corr_104: 0.5823086555948829 - sys_corr_105: -0.5169283914501025 - sys_corr_106: -0.4175194250108292 - sys_corr_107: -0.4770008242400551 - sys_corr_108: 0.23107149136666572 - sys_corr_109: 0.18628730509085878 - sys_corr_110: -0.25537845871279574 - sys_corr_111: 0.226730564225994 - sys_corr_112: 0.09357215702489469 - sys_corr_113: 0.20429819621907527 - sys_corr_114: 0.0009537905520894882 - sys_corr_115: 0.0700922355156566 - sys_corr_116: -0.029536675314462673 - sys_corr_117: -0.01093010713190567 - sys_corr_118: 0.056218361055030704 - sys_corr_119: -2.814727827620822e-05 - sys_corr_120: 0.006180495301119437 - sys_corr_121: -0.005966413045568652 - sys_corr_122: -0.010699988201618015 - sys_corr_123: -0.009835058537976846 - sys_corr_124: -0.03692180658983935 - sys_corr_125: 0.004573804864557696 - sys_corr_126: -0.005754603665101501 - sys_corr_127: 0.01575498067641864 - sys_corr_128: -0.009739823309829466 - sys_corr_129: 0.02908244693341341 - sys_corr_130: 0.00540071169840083 - sys_corr_131: 0.003116646458682531 - sys_corr_132: -0.07221528231839637 + luminosity: 5.75719672e+02 +- sys_corr_1: 2.67034772e+02 + sys_corr_2: 6.28410505e+01 + sys_corr_3: -1.21696306e+02 + sys_corr_4: 2.90223725e+01 + sys_corr_5: 1.98834973e+02 + sys_corr_6: -5.99892832e+02 + sys_corr_7: 6.89300789e+01 + sys_corr_8: 6.19485337e+00 + sys_corr_9: -9.35967188e+00 + sys_corr_10: -2.16414659e+01 + sys_corr_11: -1.35148820e+00 + sys_corr_12: 2.45040438e+01 + sys_corr_13: -5.57814475e+00 + sys_corr_14: 7.57351851e+00 + sys_corr_15: -1.92984647e+00 + sys_corr_16: 2.67277034e-01 + sys_corr_17: 3.86077078e+00 + sys_corr_18: 1.14351871e+01 + sys_corr_19: -1.03492128e+01 + sys_corr_20: 7.36577302e+00 + sys_corr_21: 4.93127090e+00 + sys_corr_22: -5.04637350e+01 + sys_corr_23: 2.93068599e+00 + sys_corr_24: -9.88611887e+01 + sys_corr_25: 1.41281574e+01 + sys_corr_26: 6.14830614e+01 + sys_corr_27: -3.17776910e+01 + sys_corr_28: -7.90411174e+01 + sys_corr_29: 4.92159358e+01 + sys_corr_30: 1.19888661e+02 + sys_corr_31: -8.46151580e+01 + sys_corr_32: 4.21554787e+01 + sys_corr_33: -4.41215274e+01 + sys_corr_34: -1.18548938e+01 + sys_corr_35: -7.14934163e+00 + sys_corr_36: -5.88668309e+01 + sys_corr_37: -6.88382297e+01 + sys_corr_38: 2.65809293e+02 + sys_corr_39: -5.71632689e+01 + sys_corr_40: 6.12871644e+00 + sys_corr_41: 1.28005872e+02 + sys_corr_42: -6.13126780e+01 + sys_corr_43: -9.18155559e+01 + sys_corr_44: -5.19967759e+01 + sys_corr_45: -2.64535623e+01 + sys_corr_46: -4.29429065e+01 + sys_corr_47: -5.21120618e+01 + sys_corr_48: -2.52902865e+01 + sys_corr_49: 1.14840431e+01 + sys_corr_50: -2.72915235e+01 + sys_corr_51: -1.09773331e+00 + sys_corr_52: -1.82565483e+01 + sys_corr_53: 6.27894411e+00 + sys_corr_54: -3.93508133e+00 + sys_corr_55: 7.71678227e+00 + sys_corr_56: -1.06964425e+01 + sys_corr_57: -4.09836666e-01 + sys_corr_58: -1.49957009e+00 + sys_corr_59: 4.58412253e+00 + sys_corr_60: -7.73732814e+00 + sys_corr_61: -9.43427574e+00 + sys_corr_62: -8.14263882e+00 + sys_corr_63: -2.06206613e+00 + sys_corr_64: 2.28220225e-01 + sys_corr_65: 1.85334139e+00 + sys_corr_66: -8.84664698e+00 + sys_corr_67: -6.96300100e+00 + sys_corr_68: -1.56751230e+01 + sys_corr_69: 9.97946388e+00 + sys_corr_70: 1.89275661e+00 + sys_corr_71: -1.41765743e+01 + sys_corr_72: -1.55477277e+00 + sys_corr_73: -1.37493760e+00 + sys_corr_74: -1.66662430e+00 + sys_corr_75: -9.02337911e+00 + sys_corr_76: -2.16075707e+00 + sys_corr_77: 4.66775672e+00 + sys_corr_78: -1.52715685e+00 + sys_corr_79: -3.63997623e+00 + sys_corr_80: -2.36402303e+00 + sys_corr_81: 1.93465064e+00 + sys_corr_82: -8.75349071e-01 + sys_corr_83: 2.59825054e+00 + sys_corr_84: 2.98882917e+00 + sys_corr_85: 2.07504530e+00 + sys_corr_86: 2.72676363e-01 + sys_corr_87: 8.69806727e-01 + sys_corr_88: 1.08975337e+00 + sys_corr_89: -2.59026169e-01 + sys_corr_90: 1.32248187e-01 + sys_corr_91: -1.93174918e-01 + sys_corr_92: 6.15957786e-01 + sys_corr_93: 2.02663695e-01 + sys_corr_94: 9.19411753e-01 + sys_corr_95: -8.13965618e-01 + sys_corr_96: 3.28689106e-02 + sys_corr_97: 9.42919417e-02 + sys_corr_98: 2.16064879e-01 + sys_corr_99: 1.37092282e-02 + sys_corr_100: -2.82417651e-01 + sys_corr_101: -8.34090085e-01 + sys_corr_102: -2.23256774e+00 + sys_corr_103: 2.29306653e-01 + sys_corr_104: 5.82308656e-01 + sys_corr_105: -5.16928391e-01 + sys_corr_106: -4.17519425e-01 + sys_corr_107: -4.77000824e-01 + sys_corr_108: 2.31071491e-01 + sys_corr_109: 1.86287305e-01 + sys_corr_110: -2.55378459e-01 + sys_corr_111: 2.26730564e-01 + sys_corr_112: 9.35721570e-02 + sys_corr_113: 2.04298196e-01 + sys_corr_114: 9.53790552e-04 + sys_corr_115: 7.00922355e-02 + sys_corr_116: -2.95366753e-02 + sys_corr_117: -1.09301071e-02 + sys_corr_118: 5.62183611e-02 + sys_corr_119: -2.81472783e-05 + sys_corr_120: 6.18049530e-03 + sys_corr_121: -5.96641305e-03 + sys_corr_122: -1.06999882e-02 + sys_corr_123: -9.83505854e-03 + sys_corr_124: -3.69218066e-02 + sys_corr_125: 4.57380486e-03 + sys_corr_126: -5.75460367e-03 + sys_corr_127: 1.57549807e-02 + sys_corr_128: -9.73982331e-03 + sys_corr_129: 2.90824469e-02 + sys_corr_130: 5.40071170e-03 + sys_corr_131: 3.11664646e-03 + sys_corr_132: -7.22152823e-02 stat: 0.0 - luminosity: 564.255494 -- sys_corr_1: 267.43413382456595 - sys_corr_2: 65.62301015624693 - sys_corr_3: -132.7775653829022 - sys_corr_4: 26.606936915506246 - sys_corr_5: 196.91080020274907 - sys_corr_6: -604.0780382772439 - sys_corr_7: 85.29290511424588 - sys_corr_8: 13.986964164254225 - sys_corr_9: -3.922109553790512 - sys_corr_10: -25.780617071812436 - sys_corr_11: 9.846110685106115 - sys_corr_12: 48.970845000245106 - sys_corr_13: -16.888636927056698 - sys_corr_14: 12.544325398732756 - sys_corr_15: 3.2769683972564785 - sys_corr_16: -3.3461370994923003 - sys_corr_17: 9.897471152338165 - sys_corr_18: 9.791703247368849 - sys_corr_19: -14.80651797728333 - sys_corr_20: 4.04270719131322 - sys_corr_21: 6.910386606211374 - sys_corr_22: -74.72403636356313 - sys_corr_23: 1.194571590304851 - sys_corr_24: -114.32009574774735 - sys_corr_25: 30.04868011225454 - sys_corr_26: 96.58975451462373 - sys_corr_27: -48.019685663658834 - sys_corr_28: -81.47538153464566 - sys_corr_29: 51.34069359148581 - sys_corr_30: 111.99643332011938 - sys_corr_31: -38.66288527639168 - sys_corr_32: 26.16997062404394 - sys_corr_33: 12.794767667246505 - sys_corr_34: -25.215610122860962 - sys_corr_35: 85.96808231673668 - sys_corr_36: -22.078760904763854 - sys_corr_37: -44.24867647655581 - sys_corr_38: -32.1618867713517 - sys_corr_39: 37.451234616039656 - sys_corr_40: -20.471371323524632 - sys_corr_41: 4.381490697908522 - sys_corr_42: 85.06879401577153 - sys_corr_43: 35.52367810606871 - sys_corr_44: -19.80043615325817 - sys_corr_45: -204.16449578171017 - sys_corr_46: 60.30014379124462 - sys_corr_47: 114.00433756000889 - sys_corr_48: 108.05997612835473 - sys_corr_49: -27.346434816978626 - sys_corr_50: 45.54799765415011 - sys_corr_51: 46.4156996572967 - sys_corr_52: 31.729916607571308 - sys_corr_53: -4.009442121689489 - sys_corr_54: 4.083870426594591 - sys_corr_55: 17.568471569528494 - sys_corr_56: -7.33917637897771 - sys_corr_57: -38.74640612386434 - sys_corr_58: -3.9556762727242156 - sys_corr_59: -35.021734802153354 - sys_corr_60: -16.24224917913468 - sys_corr_61: -24.017332255676298 - sys_corr_62: 34.68003595227042 - sys_corr_63: 23.173446825252462 - sys_corr_64: -3.0620215917999993 - sys_corr_65: 5.924075048020359 - sys_corr_66: -0.9806816185423392 - sys_corr_67: 5.002643704906746 - sys_corr_68: -5.331931113713989 - sys_corr_69: 3.1756499620222196 - sys_corr_70: -11.701684326518226 - sys_corr_71: -4.078842903511576 - sys_corr_72: 3.77417195964925 - sys_corr_73: 6.083283548446433 - sys_corr_74: -5.394692475522363 - sys_corr_75: -4.8108842779862115 - sys_corr_76: -0.27677320631530733 - sys_corr_77: 10.372062225883731 - sys_corr_78: 3.5229514275192204 - sys_corr_79: -12.41294757491408 - sys_corr_80: -0.38221783786125824 - sys_corr_81: -12.193548151566572 - sys_corr_82: 9.394308261567227 - sys_corr_83: -10.46276491401625 - sys_corr_84: -2.5072141308954388 - sys_corr_85: -3.0921299376889317 - sys_corr_86: 2.2114531821429018 - sys_corr_87: 14.758552392308506 - sys_corr_88: 4.29275472358608 - sys_corr_89: 0.7992450776084802 - sys_corr_90: 0.25826754412211594 - sys_corr_91: 0.518088203420778 - sys_corr_92: -2.7172763632225814 - sys_corr_93: 0.08878372088614968 - sys_corr_94: 0.2979337373513327 - sys_corr_95: -0.491346062971032 - sys_corr_96: -0.017218490804197448 - sys_corr_97: 1.2756529554493532 - sys_corr_98: 0.6652334852838159 - sys_corr_99: 0.6542608869074242 - sys_corr_100: 0.24041621681106679 - sys_corr_101: 0.6847849792665895 - sys_corr_102: 3.9364007530793232 - sys_corr_103: -0.9962061256095193 - sys_corr_104: -2.067322035487517 - sys_corr_105: 0.009839401620546775 - sys_corr_106: 0.05821247930337707 - sys_corr_107: -0.23486633613007277 - sys_corr_108: 0.27454827971067913 - sys_corr_109: 0.05580194781990817 - sys_corr_110: 0.11297166942642833 - sys_corr_111: 0.03640949369035963 - sys_corr_112: 0.1474736228645139 - sys_corr_113: 0.1308755576470577 - sys_corr_114: -0.0009040159616460518 - sys_corr_115: 0.055212265462855806 - sys_corr_116: -0.03404933712661937 - sys_corr_117: -0.03251684254282721 - sys_corr_118: 0.05271619449329792 - sys_corr_119: 0.004451282526707105 - sys_corr_120: 0.016177423008504003 - sys_corr_121: -0.008842173986637997 - sys_corr_122: -0.006969064687181709 - sys_corr_123: -0.006130669756381941 - sys_corr_124: -0.034504471626273986 - sys_corr_125: 0.00213566625407917 - sys_corr_126: -0.0019208097145947995 - sys_corr_127: 0.1116603379851223 - sys_corr_128: -0.07201815998872632 - sys_corr_129: 0.017204185444124026 - sys_corr_130: 0.0077429694333643155 - sys_corr_131: 0.002577841415767575 - sys_corr_132: -0.09257107809911341 + luminosity: 5.64255494e+02 +- sys_corr_1: 2.67434134e+02 + sys_corr_2: 6.56230102e+01 + sys_corr_3: -1.32777565e+02 + sys_corr_4: 2.66069369e+01 + sys_corr_5: 1.96910800e+02 + sys_corr_6: -6.04078038e+02 + sys_corr_7: 8.52929051e+01 + sys_corr_8: 1.39869642e+01 + sys_corr_9: -3.92210955e+00 + sys_corr_10: -2.57806171e+01 + sys_corr_11: 9.84611069e+00 + sys_corr_12: 4.89708450e+01 + sys_corr_13: -1.68886369e+01 + sys_corr_14: 1.25443254e+01 + sys_corr_15: 3.27696840e+00 + sys_corr_16: -3.34613710e+00 + sys_corr_17: 9.89747115e+00 + sys_corr_18: 9.79170325e+00 + sys_corr_19: -1.48065180e+01 + sys_corr_20: 4.04270719e+00 + sys_corr_21: 6.91038661e+00 + sys_corr_22: -7.47240364e+01 + sys_corr_23: 1.19457159e+00 + sys_corr_24: -1.14320096e+02 + sys_corr_25: 3.00486801e+01 + sys_corr_26: 9.65897545e+01 + sys_corr_27: -4.80196857e+01 + sys_corr_28: -8.14753815e+01 + sys_corr_29: 5.13406936e+01 + sys_corr_30: 1.11996433e+02 + sys_corr_31: -3.86628853e+01 + sys_corr_32: 2.61699706e+01 + sys_corr_33: 1.27947677e+01 + sys_corr_34: -2.52156101e+01 + sys_corr_35: 8.59680823e+01 + sys_corr_36: -2.20787609e+01 + sys_corr_37: -4.42486765e+01 + sys_corr_38: -3.21618868e+01 + sys_corr_39: 3.74512346e+01 + sys_corr_40: -2.04713713e+01 + sys_corr_41: 4.38149070e+00 + sys_corr_42: 8.50687940e+01 + sys_corr_43: 3.55236781e+01 + sys_corr_44: -1.98004362e+01 + sys_corr_45: -2.04164496e+02 + sys_corr_46: 6.03001438e+01 + sys_corr_47: 1.14004338e+02 + sys_corr_48: 1.08059976e+02 + sys_corr_49: -2.73464348e+01 + sys_corr_50: 4.55479977e+01 + sys_corr_51: 4.64156997e+01 + sys_corr_52: 3.17299166e+01 + sys_corr_53: -4.00944212e+00 + sys_corr_54: 4.08387043e+00 + sys_corr_55: 1.75684716e+01 + sys_corr_56: -7.33917638e+00 + sys_corr_57: -3.87464061e+01 + sys_corr_58: -3.95567627e+00 + sys_corr_59: -3.50217348e+01 + sys_corr_60: -1.62422492e+01 + sys_corr_61: -2.40173323e+01 + sys_corr_62: 3.46800360e+01 + sys_corr_63: 2.31734468e+01 + sys_corr_64: -3.06202159e+00 + sys_corr_65: 5.92407505e+00 + sys_corr_66: -9.80681619e-01 + sys_corr_67: 5.00264370e+00 + sys_corr_68: -5.33193111e+00 + sys_corr_69: 3.17564996e+00 + sys_corr_70: -1.17016843e+01 + sys_corr_71: -4.07884290e+00 + sys_corr_72: 3.77417196e+00 + sys_corr_73: 6.08328355e+00 + sys_corr_74: -5.39469248e+00 + sys_corr_75: -4.81088428e+00 + sys_corr_76: -2.76773206e-01 + sys_corr_77: 1.03720622e+01 + sys_corr_78: 3.52295143e+00 + sys_corr_79: -1.24129476e+01 + sys_corr_80: -3.82217838e-01 + sys_corr_81: -1.21935482e+01 + sys_corr_82: 9.39430826e+00 + sys_corr_83: -1.04627649e+01 + sys_corr_84: -2.50721413e+00 + sys_corr_85: -3.09212994e+00 + sys_corr_86: 2.21145318e+00 + sys_corr_87: 1.47585524e+01 + sys_corr_88: 4.29275472e+00 + sys_corr_89: 7.99245078e-01 + sys_corr_90: 2.58267544e-01 + sys_corr_91: 5.18088203e-01 + sys_corr_92: -2.71727636e+00 + sys_corr_93: 8.87837209e-02 + sys_corr_94: 2.97933737e-01 + sys_corr_95: -4.91346063e-01 + sys_corr_96: -1.72184908e-02 + sys_corr_97: 1.27565296e+00 + sys_corr_98: 6.65233485e-01 + sys_corr_99: 6.54260887e-01 + sys_corr_100: 2.40416217e-01 + sys_corr_101: 6.84784979e-01 + sys_corr_102: 3.93640075e+00 + sys_corr_103: -9.96206126e-01 + sys_corr_104: -2.06732204e+00 + sys_corr_105: 9.83940162e-03 + sys_corr_106: 5.82124793e-02 + sys_corr_107: -2.34866336e-01 + sys_corr_108: 2.74548280e-01 + sys_corr_109: 5.58019478e-02 + sys_corr_110: 1.12971669e-01 + sys_corr_111: 3.64094937e-02 + sys_corr_112: 1.47473623e-01 + sys_corr_113: 1.30875558e-01 + sys_corr_114: -9.04015962e-04 + sys_corr_115: 5.52122655e-02 + sys_corr_116: -3.40493371e-02 + sys_corr_117: -3.25168425e-02 + sys_corr_118: 5.27161945e-02 + sys_corr_119: 4.45128253e-03 + sys_corr_120: 1.61774230e-02 + sys_corr_121: -8.84217399e-03 + sys_corr_122: -6.96906469e-03 + sys_corr_123: -6.13066976e-03 + sys_corr_124: -3.45044716e-02 + sys_corr_125: 2.13566625e-03 + sys_corr_126: -1.92080971e-03 + sys_corr_127: 1.11660338e-01 + sys_corr_128: -7.20181600e-02 + sys_corr_129: 1.72041854e-02 + sys_corr_130: 7.74296943e-03 + sys_corr_131: 2.57784142e-03 + sys_corr_132: -9.25710781e-02 stat: 0.0 - luminosity: 578.4582980000001 -- sys_corr_1: 257.49795746777517 - sys_corr_2: 63.76470172480073 - sys_corr_3: -127.88990672645232 - sys_corr_4: -6.811426368089565 - sys_corr_5: 181.83136348874763 - sys_corr_6: -555.7275096290168 - sys_corr_7: 101.38468396686757 - sys_corr_8: 24.68725393715134 - sys_corr_9: 18.70046136175101 - sys_corr_10: -20.63635444674312 - sys_corr_11: 31.632048062692114 - sys_corr_12: 83.08777631621764 - sys_corr_13: -41.86655618579547 - sys_corr_14: 18.572528044864832 - sys_corr_15: 6.391136952574391 - sys_corr_16: -5.416287841873643 - sys_corr_17: 13.869767166480631 - sys_corr_18: 3.5283866943376965 - sys_corr_19: -13.188595521686386 - sys_corr_20: 7.90827321300257 - sys_corr_21: 7.6605120483227465 - sys_corr_22: -59.8836293409182 - sys_corr_23: -1.5961622442481642 - sys_corr_24: -104.39468865974044 - sys_corr_25: 40.51274975945336 - sys_corr_26: 123.82761436158984 - sys_corr_27: -61.835740055718524 - sys_corr_28: -88.41315005979996 - sys_corr_29: 54.04510138034107 - sys_corr_30: 65.86229401902956 - sys_corr_31: 2.59050141923953 - sys_corr_32: 26.12170671333319 - sys_corr_33: 39.79376619645478 - sys_corr_34: 2.7654889857345326 - sys_corr_35: -13.08437147841517 - sys_corr_36: -35.4477494450158 - sys_corr_37: -23.74240712384157 - sys_corr_38: 1.2655845297753678 - sys_corr_39: 42.338265103033685 - sys_corr_40: -228.22863331367506 - sys_corr_41: -118.52703796379907 - sys_corr_42: 86.13897806636865 - sys_corr_43: 54.16545091815438 - sys_corr_44: 3.549049396412474 - sys_corr_45: 93.55071979900146 - sys_corr_46: -127.62516120491304 - sys_corr_47: -51.32812691639809 - sys_corr_48: -9.178146276106034 - sys_corr_49: 41.20313400697579 - sys_corr_50: -23.05659606563465 - sys_corr_51: 20.856075804746023 - sys_corr_52: 10.45310120205578 - sys_corr_53: -7.496108650453805 - sys_corr_54: -32.89362546344704 - sys_corr_55: 10.954863070941878 - sys_corr_56: 31.357134985405366 - sys_corr_57: -18.831800988737584 - sys_corr_58: -3.3381528033990584 - sys_corr_59: -4.776589146140447 - sys_corr_60: -6.522582433234021 - sys_corr_61: -4.422016207245641 - sys_corr_62: -12.064188842546036 - sys_corr_63: 23.528963255876516 - sys_corr_64: -4.882453808914893 - sys_corr_65: -14.5756837824639 - sys_corr_66: -0.9575025365458315 - sys_corr_67: -10.387068885713349 - sys_corr_68: -30.715603118674057 - sys_corr_69: 2.7012950919661907 - sys_corr_70: -4.757339138006173 - sys_corr_71: 11.383918088595696 - sys_corr_72: -8.497777543859394 - sys_corr_73: 6.1129650415625 - sys_corr_74: 4.6112864821142825 - sys_corr_75: -17.34141687328836 - sys_corr_76: 3.4443331754478534 - sys_corr_77: 13.184537870583817 - sys_corr_78: -5.265059924732408 - sys_corr_79: 0.6117803976704083 - sys_corr_80: -4.35813152331331 - sys_corr_81: -1.2559849584762888 - sys_corr_82: -0.06454123855423982 - sys_corr_83: -0.8429616772003746 - sys_corr_84: 2.5424233630714106 - sys_corr_85: 1.5058287061803646 - sys_corr_86: 7.136687681305154 - sys_corr_87: -2.0329796075994855 - sys_corr_88: 7.144307936184595 - sys_corr_89: -0.4671780531128163 - sys_corr_90: 0.34040761818993004 - sys_corr_91: 0.5531287867572531 - sys_corr_92: -2.9347734483689325 - sys_corr_93: -0.043365490882643 - sys_corr_94: 0.3513904155552447 - sys_corr_95: 0.13261769010747643 - sys_corr_96: -0.003447697443078384 - sys_corr_97: 0.9280809594068649 - sys_corr_98: 0.28805742629520265 - sys_corr_99: 0.4805138098838593 - sys_corr_100: -0.21916879405803233 - sys_corr_101: -0.3418886850036631 - sys_corr_102: -0.4016468060883468 - sys_corr_103: 0.666321402148441 - sys_corr_104: -0.4772165336238328 - sys_corr_105: -0.392243022881274 - sys_corr_106: -0.10381464648308728 - sys_corr_107: -0.1301624333477705 - sys_corr_108: 0.22799700941580175 - sys_corr_109: 0.17007521164151437 - sys_corr_110: -0.13305784352668903 - sys_corr_111: 0.09474883344447942 - sys_corr_112: 0.1380026640530244 - sys_corr_113: 0.16347985459285705 - sys_corr_114: 0.000588746250687996 - sys_corr_115: 0.13127645998748955 - sys_corr_116: -0.04390184399638801 - sys_corr_117: -0.022859209676011533 - sys_corr_118: 0.05301676902569228 - sys_corr_119: -0.0038360395106538494 - sys_corr_120: 0.008873282009695137 - sys_corr_121: -0.0059773479111936935 - sys_corr_122: 0.0015029864965266438 - sys_corr_123: -0.006230817567296826 - sys_corr_124: -0.03523614393046474 - sys_corr_125: -0.007296810714421645 - sys_corr_126: 0.00037658716191963835 - sys_corr_127: -0.04780637971570294 - sys_corr_128: 0.13001805321104518 - sys_corr_129: 0.054242930360133196 - sys_corr_130: 0.0019679679276569176 - sys_corr_131: -0.014262199467406018 - sys_corr_132: -0.058549600416938144 + luminosity: 5.78458298e+02 +- sys_corr_1: 2.57497957e+02 + sys_corr_2: 6.37647017e+01 + sys_corr_3: -1.27889907e+02 + sys_corr_4: -6.81142637e+00 + sys_corr_5: 1.81831363e+02 + sys_corr_6: -5.55727510e+02 + sys_corr_7: 1.01384684e+02 + sys_corr_8: 2.46872539e+01 + sys_corr_9: 1.87004614e+01 + sys_corr_10: -2.06363544e+01 + sys_corr_11: 3.16320481e+01 + sys_corr_12: 8.30877763e+01 + sys_corr_13: -4.18665562e+01 + sys_corr_14: 1.85725280e+01 + sys_corr_15: 6.39113695e+00 + sys_corr_16: -5.41628784e+00 + sys_corr_17: 1.38697672e+01 + sys_corr_18: 3.52838669e+00 + sys_corr_19: -1.31885955e+01 + sys_corr_20: 7.90827321e+00 + sys_corr_21: 7.66051205e+00 + sys_corr_22: -5.98836293e+01 + sys_corr_23: -1.59616224e+00 + sys_corr_24: -1.04394689e+02 + sys_corr_25: 4.05127498e+01 + sys_corr_26: 1.23827614e+02 + sys_corr_27: -6.18357401e+01 + sys_corr_28: -8.84131501e+01 + sys_corr_29: 5.40451014e+01 + sys_corr_30: 6.58622940e+01 + sys_corr_31: 2.59050142e+00 + sys_corr_32: 2.61217067e+01 + sys_corr_33: 3.97937662e+01 + sys_corr_34: 2.76548899e+00 + sys_corr_35: -1.30843715e+01 + sys_corr_36: -3.54477494e+01 + sys_corr_37: -2.37424071e+01 + sys_corr_38: 1.26558453e+00 + sys_corr_39: 4.23382651e+01 + sys_corr_40: -2.28228633e+02 + sys_corr_41: -1.18527038e+02 + sys_corr_42: 8.61389781e+01 + sys_corr_43: 5.41654509e+01 + sys_corr_44: 3.54904940e+00 + sys_corr_45: 9.35507198e+01 + sys_corr_46: -1.27625161e+02 + sys_corr_47: -5.13281269e+01 + sys_corr_48: -9.17814628e+00 + sys_corr_49: 4.12031340e+01 + sys_corr_50: -2.30565961e+01 + sys_corr_51: 2.08560758e+01 + sys_corr_52: 1.04531012e+01 + sys_corr_53: -7.49610865e+00 + sys_corr_54: -3.28936255e+01 + sys_corr_55: 1.09548631e+01 + sys_corr_56: 3.13571350e+01 + sys_corr_57: -1.88318010e+01 + sys_corr_58: -3.33815280e+00 + sys_corr_59: -4.77658915e+00 + sys_corr_60: -6.52258243e+00 + sys_corr_61: -4.42201621e+00 + sys_corr_62: -1.20641888e+01 + sys_corr_63: 2.35289633e+01 + sys_corr_64: -4.88245381e+00 + sys_corr_65: -1.45756838e+01 + sys_corr_66: -9.57502537e-01 + sys_corr_67: -1.03870689e+01 + sys_corr_68: -3.07156031e+01 + sys_corr_69: 2.70129509e+00 + sys_corr_70: -4.75733914e+00 + sys_corr_71: 1.13839181e+01 + sys_corr_72: -8.49777754e+00 + sys_corr_73: 6.11296504e+00 + sys_corr_74: 4.61128648e+00 + sys_corr_75: -1.73414169e+01 + sys_corr_76: 3.44433318e+00 + sys_corr_77: 1.31845379e+01 + sys_corr_78: -5.26505992e+00 + sys_corr_79: 6.11780398e-01 + sys_corr_80: -4.35813152e+00 + sys_corr_81: -1.25598496e+00 + sys_corr_82: -6.45412386e-02 + sys_corr_83: -8.42961677e-01 + sys_corr_84: 2.54242336e+00 + sys_corr_85: 1.50582871e+00 + sys_corr_86: 7.13668768e+00 + sys_corr_87: -2.03297961e+00 + sys_corr_88: 7.14430794e+00 + sys_corr_89: -4.67178053e-01 + sys_corr_90: 3.40407618e-01 + sys_corr_91: 5.53128787e-01 + sys_corr_92: -2.93477345e+00 + sys_corr_93: -4.33654909e-02 + sys_corr_94: 3.51390416e-01 + sys_corr_95: 1.32617690e-01 + sys_corr_96: -3.44769744e-03 + sys_corr_97: 9.28080959e-01 + sys_corr_98: 2.88057426e-01 + sys_corr_99: 4.80513810e-01 + sys_corr_100: -2.19168794e-01 + sys_corr_101: -3.41888685e-01 + sys_corr_102: -4.01646806e-01 + sys_corr_103: 6.66321402e-01 + sys_corr_104: -4.77216534e-01 + sys_corr_105: -3.92243023e-01 + sys_corr_106: -1.03814646e-01 + sys_corr_107: -1.30162433e-01 + sys_corr_108: 2.27997009e-01 + sys_corr_109: 1.70075212e-01 + sys_corr_110: -1.33057844e-01 + sys_corr_111: 9.47488334e-02 + sys_corr_112: 1.38002664e-01 + sys_corr_113: 1.63479855e-01 + sys_corr_114: 5.88746251e-04 + sys_corr_115: 1.31276460e-01 + sys_corr_116: -4.39018440e-02 + sys_corr_117: -2.28592097e-02 + sys_corr_118: 5.30167690e-02 + sys_corr_119: -3.83603951e-03 + sys_corr_120: 8.87328201e-03 + sys_corr_121: -5.97734791e-03 + sys_corr_122: 1.50298650e-03 + sys_corr_123: -6.23081757e-03 + sys_corr_124: -3.52361439e-02 + sys_corr_125: -7.29681071e-03 + sys_corr_126: 3.76587162e-04 + sys_corr_127: -4.78063797e-02 + sys_corr_128: 1.30018053e-01 + sys_corr_129: 5.42429304e-02 + sys_corr_130: 1.96796793e-03 + sys_corr_131: -1.42621995e-02 + sys_corr_132: -5.85496004e-02 stat: 0.0 - luminosity: 562.97076 -- sys_corr_1: 264.69721117478 - sys_corr_2: 63.68820261953134 - sys_corr_3: -105.70791505382884 - sys_corr_4: -19.027825029374714 - sys_corr_5: 150.00091763986995 - sys_corr_6: -511.0612984972623 - sys_corr_7: 149.5005783481677 - sys_corr_8: 56.692664275391365 - sys_corr_9: 51.20716942560643 - sys_corr_10: -20.473892901979987 - sys_corr_11: 74.08784086222214 - sys_corr_12: 129.9197277217852 - sys_corr_13: -76.4005103965608 - sys_corr_14: 31.09667003615423 - sys_corr_15: 11.053035069034166 - sys_corr_16: -7.703301059954343 - sys_corr_17: 8.910838458764037 - sys_corr_18: -7.2981336226905595 - sys_corr_19: -3.63397237913826 - sys_corr_20: 11.428197276510973 - sys_corr_21: 6.792975235650509 - sys_corr_22: -37.48569318775204 - sys_corr_23: 9.781846324801423 - sys_corr_24: -71.44107902072554 - sys_corr_25: 61.29585584304142 - sys_corr_26: 156.69355802540673 - sys_corr_27: -61.704507362972336 - sys_corr_28: -88.08446589395061 - sys_corr_29: 38.353895683185854 - sys_corr_30: 48.62346037635384 - sys_corr_31: 79.94406125145028 - sys_corr_32: 42.22811667498887 - sys_corr_33: -15.700247826576602 - sys_corr_34: -4.021657320040481 - sys_corr_35: 35.52289980122713 - sys_corr_36: 76.56999300127931 - sys_corr_37: -158.21759980647775 - sys_corr_38: -208.63503155187905 - sys_corr_39: -85.03393401290262 - sys_corr_40: 101.91675598606203 - sys_corr_41: 52.979355436409996 - sys_corr_42: -38.335821626800985 - sys_corr_43: -74.31386566838776 - sys_corr_44: -14.860241178199026 - sys_corr_45: 17.960636344120825 - sys_corr_46: -110.67283636047542 - sys_corr_47: -51.13991817626443 - sys_corr_48: -23.395775724626596 - sys_corr_49: -3.2181970062783214 - sys_corr_50: 5.073009705200823 - sys_corr_51: 33.217950957838866 - sys_corr_52: 29.32148998499233 - sys_corr_53: -1.1279161700055393 - sys_corr_54: 12.46661759568096 - sys_corr_55: 3.9176576460904813 - sys_corr_56: -8.616695995203784 - sys_corr_57: 13.280929208646118 - sys_corr_58: -10.839056112908269 - sys_corr_59: 26.652438879261442 - sys_corr_60: 4.249332412637628 - sys_corr_61: -3.6297724271565133 - sys_corr_62: -15.290320969269253 - sys_corr_63: -6.345511073182706 - sys_corr_64: 6.394396980255795 - sys_corr_65: -7.986226482428224 - sys_corr_66: -15.291774794088655 - sys_corr_67: 6.914448325797178 - sys_corr_68: -0.5048129694601579 - sys_corr_69: 0.8165614774344038 - sys_corr_70: 6.1859110447762955 - sys_corr_71: -10.315698587317245 - sys_corr_72: -10.090675639440583 - sys_corr_73: 5.756310077463038 - sys_corr_74: 2.119368889355353 - sys_corr_75: -3.9369369746027743 - sys_corr_76: -0.07154962088925207 - sys_corr_77: 3.123373878698484 - sys_corr_78: -4.593631220359724 - sys_corr_79: 2.9533858993700934 - sys_corr_80: 0.6735912424870352 - sys_corr_81: -11.11723218921501 - sys_corr_82: 4.2835218728146005 - sys_corr_83: -7.856186193784464 - sys_corr_84: 0.2849668897239935 - sys_corr_85: 0.7670242894972784 - sys_corr_86: 3.031816882628367 - sys_corr_87: 4.719457297267383 - sys_corr_88: 4.925828705034618 - sys_corr_89: -0.384690942029459 - sys_corr_90: -1.2014267798275733 - sys_corr_91: -0.565799013834907 - sys_corr_92: 1.962901541796401 - sys_corr_93: -0.2674737171501566 - sys_corr_94: -1.0517965642395073 - sys_corr_95: 1.1152530524679365 - sys_corr_96: -0.1594631584874378 - sys_corr_97: 1.7063481313068092 - sys_corr_98: 0.7676766448871344 - sys_corr_99: 0.8784016831353698 - sys_corr_100: 0.23444140073558867 - sys_corr_101: 0.44941000928450764 - sys_corr_102: 2.6673871547267547 - sys_corr_103: 0.0019144675355335218 - sys_corr_104: -1.9776202362238307 - sys_corr_105: 0.0739925982718104 - sys_corr_106: 0.25264935526125576 - sys_corr_107: 0.05487175509631685 - sys_corr_108: 0.244679028685647 - sys_corr_109: 0.07705592216249497 - sys_corr_110: 0.27037562526991826 - sys_corr_111: 0.1360215677321802 - sys_corr_112: 0.01833682912038076 - sys_corr_113: 0.16107257989846388 - sys_corr_114: -0.00028805175281089375 - sys_corr_115: 0.021151486223570645 - sys_corr_116: -0.05955515422137684 - sys_corr_117: -0.04200942667520008 - sys_corr_118: 0.030455462963211607 - sys_corr_119: -0.004704364738822296 - sys_corr_120: 0.022168012875439142 - sys_corr_121: -0.007998376279429401 - sys_corr_122: 0.01152655323648823 - sys_corr_123: -0.0065031823378353774 - sys_corr_124: -0.06519670299825833 - sys_corr_125: -0.009777778760049729 - sys_corr_126: -0.00745974897154016 - sys_corr_127: -0.0995486454154835 - sys_corr_128: -0.0034795756835765716 - sys_corr_129: 0.0033290013538629904 - sys_corr_130: 0.0017432623040350194 - sys_corr_131: -0.01018869639703721 - sys_corr_132: -0.022063672538306295 + luminosity: 5.62970760e+02 +- sys_corr_1: 2.64697211e+02 + sys_corr_2: 6.36882026e+01 + sys_corr_3: -1.05707915e+02 + sys_corr_4: -1.90278250e+01 + sys_corr_5: 1.50000918e+02 + sys_corr_6: -5.11061298e+02 + sys_corr_7: 1.49500578e+02 + sys_corr_8: 5.66926643e+01 + sys_corr_9: 5.12071694e+01 + sys_corr_10: -2.04738929e+01 + sys_corr_11: 7.40878409e+01 + sys_corr_12: 1.29919728e+02 + sys_corr_13: -7.64005104e+01 + sys_corr_14: 3.10966700e+01 + sys_corr_15: 1.10530351e+01 + sys_corr_16: -7.70330106e+00 + sys_corr_17: 8.91083846e+00 + sys_corr_18: -7.29813362e+00 + sys_corr_19: -3.63397238e+00 + sys_corr_20: 1.14281973e+01 + sys_corr_21: 6.79297524e+00 + sys_corr_22: -3.74856932e+01 + sys_corr_23: 9.78184632e+00 + sys_corr_24: -7.14410790e+01 + sys_corr_25: 6.12958558e+01 + sys_corr_26: 1.56693558e+02 + sys_corr_27: -6.17045074e+01 + sys_corr_28: -8.80844659e+01 + sys_corr_29: 3.83538957e+01 + sys_corr_30: 4.86234604e+01 + sys_corr_31: 7.99440613e+01 + sys_corr_32: 4.22281167e+01 + sys_corr_33: -1.57002478e+01 + sys_corr_34: -4.02165732e+00 + sys_corr_35: 3.55228998e+01 + sys_corr_36: 7.65699930e+01 + sys_corr_37: -1.58217600e+02 + sys_corr_38: -2.08635032e+02 + sys_corr_39: -8.50339340e+01 + sys_corr_40: 1.01916756e+02 + sys_corr_41: 5.29793554e+01 + sys_corr_42: -3.83358216e+01 + sys_corr_43: -7.43138657e+01 + sys_corr_44: -1.48602412e+01 + sys_corr_45: 1.79606363e+01 + sys_corr_46: -1.10672836e+02 + sys_corr_47: -5.11399182e+01 + sys_corr_48: -2.33957757e+01 + sys_corr_49: -3.21819701e+00 + sys_corr_50: 5.07300971e+00 + sys_corr_51: 3.32179510e+01 + sys_corr_52: 2.93214900e+01 + sys_corr_53: -1.12791617e+00 + sys_corr_54: 1.24666176e+01 + sys_corr_55: 3.91765765e+00 + sys_corr_56: -8.61669600e+00 + sys_corr_57: 1.32809292e+01 + sys_corr_58: -1.08390561e+01 + sys_corr_59: 2.66524389e+01 + sys_corr_60: 4.24933241e+00 + sys_corr_61: -3.62977243e+00 + sys_corr_62: -1.52903210e+01 + sys_corr_63: -6.34551107e+00 + sys_corr_64: 6.39439698e+00 + sys_corr_65: -7.98622648e+00 + sys_corr_66: -1.52917748e+01 + sys_corr_67: 6.91444833e+00 + sys_corr_68: -5.04812969e-01 + sys_corr_69: 8.16561477e-01 + sys_corr_70: 6.18591104e+00 + sys_corr_71: -1.03156986e+01 + sys_corr_72: -1.00906756e+01 + sys_corr_73: 5.75631008e+00 + sys_corr_74: 2.11936889e+00 + sys_corr_75: -3.93693697e+00 + sys_corr_76: -7.15496209e-02 + sys_corr_77: 3.12337388e+00 + sys_corr_78: -4.59363122e+00 + sys_corr_79: 2.95338590e+00 + sys_corr_80: 6.73591242e-01 + sys_corr_81: -1.11172322e+01 + sys_corr_82: 4.28352187e+00 + sys_corr_83: -7.85618619e+00 + sys_corr_84: 2.84966890e-01 + sys_corr_85: 7.67024289e-01 + sys_corr_86: 3.03181688e+00 + sys_corr_87: 4.71945730e+00 + sys_corr_88: 4.92582871e+00 + sys_corr_89: -3.84690942e-01 + sys_corr_90: -1.20142678e+00 + sys_corr_91: -5.65799014e-01 + sys_corr_92: 1.96290154e+00 + sys_corr_93: -2.67473717e-01 + sys_corr_94: -1.05179656e+00 + sys_corr_95: 1.11525305e+00 + sys_corr_96: -1.59463158e-01 + sys_corr_97: 1.70634813e+00 + sys_corr_98: 7.67676645e-01 + sys_corr_99: 8.78401683e-01 + sys_corr_100: 2.34441401e-01 + sys_corr_101: 4.49410009e-01 + sys_corr_102: 2.66738715e+00 + sys_corr_103: 1.91446754e-03 + sys_corr_104: -1.97762024e+00 + sys_corr_105: 7.39925983e-02 + sys_corr_106: 2.52649355e-01 + sys_corr_107: 5.48717551e-02 + sys_corr_108: 2.44679029e-01 + sys_corr_109: 7.70559222e-02 + sys_corr_110: 2.70375625e-01 + sys_corr_111: 1.36021568e-01 + sys_corr_112: 1.83368291e-02 + sys_corr_113: 1.61072580e-01 + sys_corr_114: -2.88051753e-04 + sys_corr_115: 2.11514862e-02 + sys_corr_116: -5.95551542e-02 + sys_corr_117: -4.20094267e-02 + sys_corr_118: 3.04554630e-02 + sys_corr_119: -4.70436474e-03 + sys_corr_120: 2.21680129e-02 + sys_corr_121: -7.99837628e-03 + sys_corr_122: 1.15265532e-02 + sys_corr_123: -6.50318234e-03 + sys_corr_124: -6.51967030e-02 + sys_corr_125: -9.77777876e-03 + sys_corr_126: -7.45974897e-03 + sys_corr_127: -9.95486454e-02 + sys_corr_128: -3.47957568e-03 + sys_corr_129: 3.32900135e-03 + sys_corr_130: 1.74326230e-03 + sys_corr_131: -1.01886964e-02 + sys_corr_132: -2.20636725e-02 stat: 0.0 - luminosity: 565.947492 -- sys_corr_1: 265.8395967598751 - sys_corr_2: 72.69973435238192 - sys_corr_3: -94.74661944213186 - sys_corr_4: -45.73150758823081 - sys_corr_5: 131.29230384199124 - sys_corr_6: -456.887972912809 - sys_corr_7: 135.37376463014147 - sys_corr_8: 52.04820696366737 - sys_corr_9: 67.65710541259206 - sys_corr_10: -14.572614722014949 - sys_corr_11: 115.05230109312889 - sys_corr_12: 160.91075908452592 - sys_corr_13: -78.27906550883306 - sys_corr_14: 17.54178245292807 - sys_corr_15: 20.094468399065153 - sys_corr_16: -4.069721221224223 - sys_corr_17: 1.0794858168777044 - sys_corr_18: -2.8286112736250035 - sys_corr_19: -23.19029652532305 - sys_corr_20: 9.122390792800191 - sys_corr_21: 4.781013010622269 - sys_corr_22: -57.723551415425014 - sys_corr_23: -4.893202012792076 - sys_corr_24: -40.22865371664444 - sys_corr_25: 66.53788884517284 - sys_corr_26: 148.3549582238692 - sys_corr_27: -58.78402849526379 - sys_corr_28: -46.93059629952632 - sys_corr_29: 9.252014338537634 - sys_corr_30: -39.81125852863056 - sys_corr_31: 109.9572186600318 - sys_corr_32: -4.167581955269016 - sys_corr_33: 32.83119464586242 - sys_corr_34: -19.532625868996394 - sys_corr_35: 6.717582606661691 - sys_corr_36: 22.84289500871806 - sys_corr_37: 5.1273365009248035 - sys_corr_38: 34.61371421800702 - sys_corr_39: 60.19398697322556 - sys_corr_40: -93.3092788119253 - sys_corr_41: -30.441883754307607 - sys_corr_42: -66.5490460004732 - sys_corr_43: -135.51361977884744 - sys_corr_44: 51.81227951544702 - sys_corr_45: 39.70358373432769 - sys_corr_46: 66.5809143566581 - sys_corr_47: 70.10546882474257 - sys_corr_48: -66.51934827198208 - sys_corr_49: -180.2204354680171 - sys_corr_50: 67.2630105032358 - sys_corr_51: 0.7425144600323292 - sys_corr_52: -27.92858137904685 - sys_corr_53: 4.682320014694069 - sys_corr_54: 8.747640732263058 - sys_corr_55: -57.69407086430963 - sys_corr_56: -22.933986715684956 - sys_corr_57: 26.191071800030986 - sys_corr_58: -21.818314625861362 - sys_corr_59: -6.116681342825914 - sys_corr_60: 17.104763555048105 - sys_corr_61: 14.447273947452603 - sys_corr_62: 13.595397054457866 - sys_corr_63: -14.04438970631624 - sys_corr_64: -0.3715688544036586 - sys_corr_65: 20.24115797011743 - sys_corr_66: 8.69887331785417 - sys_corr_67: 5.378543163914497 - sys_corr_68: 21.47376649430752 - sys_corr_69: -19.340076881745357 - sys_corr_70: -13.042333382922543 - sys_corr_71: 19.027989345137115 - sys_corr_72: -1.106045760806402 - sys_corr_73: 6.500341595935849 - sys_corr_74: -8.646728960785017 - sys_corr_75: 11.5505891076795 - sys_corr_76: 7.282789785924269 - sys_corr_77: 9.757572409037854 - sys_corr_78: -5.678065718484984 - sys_corr_79: 3.967793163385267 - sys_corr_80: -2.4599861343974703 - sys_corr_81: 6.84865236908959 - sys_corr_82: -5.186521373084189 - sys_corr_83: 0.701963428480101 - sys_corr_84: 2.9062483800102497 - sys_corr_85: 3.2116891553906948 - sys_corr_86: 8.092393382795231 - sys_corr_87: -1.3846281843918042 - sys_corr_88: 1.9218233350057004 - sys_corr_89: -1.005959535609807 - sys_corr_90: -0.614124209679902 - sys_corr_91: -0.7565387134286469 - sys_corr_92: -0.6406055210911584 - sys_corr_93: -0.32188295251494325 - sys_corr_94: -1.7636888213472717 - sys_corr_95: 2.068287104362573 - sys_corr_96: -0.08280510807840248 - sys_corr_97: 2.044496081807045 - sys_corr_98: 0.9472327613363183 - sys_corr_99: 0.017853910988835417 - sys_corr_100: 0.11509907875568605 - sys_corr_101: 0.03858292663544527 - sys_corr_102: 2.734598781343265 - sys_corr_103: 0.38505677198588556 - sys_corr_104: -1.9551380211982041 - sys_corr_105: 0.44246043631020626 - sys_corr_106: 0.4408116972006292 - sys_corr_107: 0.18709648512804478 - sys_corr_108: 0.3859970898873381 - sys_corr_109: 0.06316044602973953 - sys_corr_110: 0.42985263855362815 - sys_corr_111: -0.026264274923079516 - sys_corr_112: -0.00563146464106837 - sys_corr_113: 0.061099907040838626 - sys_corr_114: -0.0006762918572667525 - sys_corr_115: -0.029097561948144366 - sys_corr_116: -0.08796996691248521 - sys_corr_117: -0.08212854662759526 - sys_corr_118: 0.01756139451819308 - sys_corr_119: -0.002230245097128094 - sys_corr_120: 0.03199253132405703 - sys_corr_121: -0.006781005511884915 - sys_corr_122: 0.014467381307041453 - sys_corr_123: 0.00011454473099580456 - sys_corr_124: -0.09494370217112824 - sys_corr_125: -0.028164736098119352 - sys_corr_126: -0.0011453364959527795 - sys_corr_127: 0.6435409672903294 - sys_corr_128: 0.15150459526194324 - sys_corr_129: 0.12844634671568614 - sys_corr_130: 0.005050296248345179 - sys_corr_131: -0.029980656024778406 - sys_corr_132: -0.031142601585930425 + luminosity: 5.65947492e+02 +- sys_corr_1: 2.65839597e+02 + sys_corr_2: 7.26997344e+01 + sys_corr_3: -9.47466194e+01 + sys_corr_4: -4.57315076e+01 + sys_corr_5: 1.31292304e+02 + sys_corr_6: -4.56887973e+02 + sys_corr_7: 1.35373765e+02 + sys_corr_8: 5.20482070e+01 + sys_corr_9: 6.76571054e+01 + sys_corr_10: -1.45726147e+01 + sys_corr_11: 1.15052301e+02 + sys_corr_12: 1.60910759e+02 + sys_corr_13: -7.82790655e+01 + sys_corr_14: 1.75417825e+01 + sys_corr_15: 2.00944684e+01 + sys_corr_16: -4.06972122e+00 + sys_corr_17: 1.07948582e+00 + sys_corr_18: -2.82861127e+00 + sys_corr_19: -2.31902965e+01 + sys_corr_20: 9.12239079e+00 + sys_corr_21: 4.78101301e+00 + sys_corr_22: -5.77235514e+01 + sys_corr_23: -4.89320201e+00 + sys_corr_24: -4.02286537e+01 + sys_corr_25: 6.65378888e+01 + sys_corr_26: 1.48354958e+02 + sys_corr_27: -5.87840285e+01 + sys_corr_28: -4.69305963e+01 + sys_corr_29: 9.25201434e+00 + sys_corr_30: -3.98112585e+01 + sys_corr_31: 1.09957219e+02 + sys_corr_32: -4.16758196e+00 + sys_corr_33: 3.28311946e+01 + sys_corr_34: -1.95326259e+01 + sys_corr_35: 6.71758261e+00 + sys_corr_36: 2.28428950e+01 + sys_corr_37: 5.12733650e+00 + sys_corr_38: 3.46137142e+01 + sys_corr_39: 6.01939870e+01 + sys_corr_40: -9.33092788e+01 + sys_corr_41: -3.04418838e+01 + sys_corr_42: -6.65490460e+01 + sys_corr_43: -1.35513620e+02 + sys_corr_44: 5.18122795e+01 + sys_corr_45: 3.97035837e+01 + sys_corr_46: 6.65809144e+01 + sys_corr_47: 7.01054688e+01 + sys_corr_48: -6.65193483e+01 + sys_corr_49: -1.80220435e+02 + sys_corr_50: 6.72630105e+01 + sys_corr_51: 7.42514460e-01 + sys_corr_52: -2.79285814e+01 + sys_corr_53: 4.68232001e+00 + sys_corr_54: 8.74764073e+00 + sys_corr_55: -5.76940709e+01 + sys_corr_56: -2.29339867e+01 + sys_corr_57: 2.61910718e+01 + sys_corr_58: -2.18183146e+01 + sys_corr_59: -6.11668134e+00 + sys_corr_60: 1.71047636e+01 + sys_corr_61: 1.44472739e+01 + sys_corr_62: 1.35953971e+01 + sys_corr_63: -1.40443897e+01 + sys_corr_64: -3.71568854e-01 + sys_corr_65: 2.02411580e+01 + sys_corr_66: 8.69887332e+00 + sys_corr_67: 5.37854316e+00 + sys_corr_68: 2.14737665e+01 + sys_corr_69: -1.93400769e+01 + sys_corr_70: -1.30423334e+01 + sys_corr_71: 1.90279893e+01 + sys_corr_72: -1.10604576e+00 + sys_corr_73: 6.50034160e+00 + sys_corr_74: -8.64672896e+00 + sys_corr_75: 1.15505891e+01 + sys_corr_76: 7.28278979e+00 + sys_corr_77: 9.75757241e+00 + sys_corr_78: -5.67806572e+00 + sys_corr_79: 3.96779316e+00 + sys_corr_80: -2.45998613e+00 + sys_corr_81: 6.84865237e+00 + sys_corr_82: -5.18652137e+00 + sys_corr_83: 7.01963428e-01 + sys_corr_84: 2.90624838e+00 + sys_corr_85: 3.21168916e+00 + sys_corr_86: 8.09239338e+00 + sys_corr_87: -1.38462818e+00 + sys_corr_88: 1.92182334e+00 + sys_corr_89: -1.00595954e+00 + sys_corr_90: -6.14124210e-01 + sys_corr_91: -7.56538713e-01 + sys_corr_92: -6.40605521e-01 + sys_corr_93: -3.21882953e-01 + sys_corr_94: -1.76368882e+00 + sys_corr_95: 2.06828710e+00 + sys_corr_96: -8.28051081e-02 + sys_corr_97: 2.04449608e+00 + sys_corr_98: 9.47232761e-01 + sys_corr_99: 1.78539110e-02 + sys_corr_100: 1.15099079e-01 + sys_corr_101: 3.85829266e-02 + sys_corr_102: 2.73459878e+00 + sys_corr_103: 3.85056772e-01 + sys_corr_104: -1.95513802e+00 + sys_corr_105: 4.42460436e-01 + sys_corr_106: 4.40811697e-01 + sys_corr_107: 1.87096485e-01 + sys_corr_108: 3.85997090e-01 + sys_corr_109: 6.31604460e-02 + sys_corr_110: 4.29852639e-01 + sys_corr_111: -2.62642749e-02 + sys_corr_112: -5.63146464e-03 + sys_corr_113: 6.10999070e-02 + sys_corr_114: -6.76291857e-04 + sys_corr_115: -2.90975619e-02 + sys_corr_116: -8.79699669e-02 + sys_corr_117: -8.21285466e-02 + sys_corr_118: 1.75613945e-02 + sys_corr_119: -2.23024510e-03 + sys_corr_120: 3.19925313e-02 + sys_corr_121: -6.78100551e-03 + sys_corr_122: 1.44673813e-02 + sys_corr_123: 1.14544731e-04 + sys_corr_124: -9.49437022e-02 + sys_corr_125: -2.81647361e-02 + sys_corr_126: -1.14533650e-03 + sys_corr_127: 6.43540967e-01 + sys_corr_128: 1.51504595e-01 + sys_corr_129: 1.28446347e-01 + sys_corr_130: 5.05029625e-03 + sys_corr_131: -2.99806560e-02 + sys_corr_132: -3.11426016e-02 stat: 0.0 - luminosity: 562.0156300000001 -- sys_corr_1: 259.58446041700273 - sys_corr_2: 74.11434805089068 - sys_corr_3: -70.86415550572647 - sys_corr_4: -69.94812095108091 - sys_corr_5: 96.06229966071572 - sys_corr_6: -378.39897280891483 - sys_corr_7: 146.64927657560946 - sys_corr_8: 81.21415990190407 - sys_corr_9: 93.787603180349 - sys_corr_10: -10.070260518402248 - sys_corr_11: 133.57521971955535 - sys_corr_12: 163.1700052336079 - sys_corr_13: -112.15931878258687 - sys_corr_14: 36.68082908738014 - sys_corr_15: 33.763292813998945 - sys_corr_16: -28.51557227491267 - sys_corr_17: 17.2967210890853 - sys_corr_18: -27.115485652490893 - sys_corr_19: -17.055124356623427 - sys_corr_20: -2.747058974936782 - sys_corr_21: -1.6463168845265481 - sys_corr_22: -70.27043108533847 - sys_corr_23: 1.8927435101989896 - sys_corr_24: 10.411219983598647 - sys_corr_25: 69.41255594498645 - sys_corr_26: 159.60340618474953 - sys_corr_27: -55.672584518002054 - sys_corr_28: -40.417334464991356 - sys_corr_29: -2.198113927688378 - sys_corr_30: -43.69483271211204 - sys_corr_31: 94.941874708773 - sys_corr_32: -22.120458514510126 - sys_corr_33: 4.149558853326194 - sys_corr_34: -17.28942640389217 - sys_corr_35: -33.76654116081637 - sys_corr_36: -11.392320079694072 - sys_corr_37: -38.14686705548809 - sys_corr_38: 54.56557627833546 - sys_corr_39: 27.261327755193786 - sys_corr_40: 82.44369240350947 - sys_corr_41: 150.2788982604357 - sys_corr_42: 187.9731130297006 - sys_corr_43: 75.96369750662818 - sys_corr_44: 87.40491526375928 - sys_corr_45: 122.12388461081673 - sys_corr_46: 69.57880011702805 - sys_corr_47: 8.6998529940722 - sys_corr_48: 50.12074999424336 - sys_corr_49: 21.456756519850586 - sys_corr_50: -7.506904486371979 - sys_corr_51: -43.721514436876525 - sys_corr_52: 23.74705937117037 - sys_corr_53: 7.668823348842618 - sys_corr_54: -27.82888700120493 - sys_corr_55: -45.34440494656727 - sys_corr_56: -8.047336256004044 - sys_corr_57: -6.236202297550789 - sys_corr_58: -10.598012159114568 - sys_corr_59: -0.9896588014619507 - sys_corr_60: 8.327434074556942 - sys_corr_61: 8.168313713859067 - sys_corr_62: -0.9089218406827797 - sys_corr_63: -6.170270189327211 - sys_corr_64: -16.726961001624225 - sys_corr_65: -5.091327785222537 - sys_corr_66: -0.5821057589004668 - sys_corr_67: 12.114925853119226 - sys_corr_68: 9.646443660004271 - sys_corr_69: -3.010429477615268 - sys_corr_70: -2.6049992792908765 - sys_corr_71: -1.175266906336016 - sys_corr_72: 3.7067350070950402 - sys_corr_73: 8.874882751816436 - sys_corr_74: 3.7482694962949363 - sys_corr_75: -1.832591154676428 - sys_corr_76: 7.327486673698922 - sys_corr_77: -1.2586596726684829 - sys_corr_78: -6.07684522365265 - sys_corr_79: -0.22112891234121856 - sys_corr_80: 3.665926361880826 - sys_corr_81: 6.818079819422269 - sys_corr_82: -9.196804052159628 - sys_corr_83: 3.610905294407028 - sys_corr_84: 2.6267433219340512 - sys_corr_85: 4.140680485079229 - sys_corr_86: 4.785139257796215 - sys_corr_87: -10.252222743863864 - sys_corr_88: 4.100025621463174 - sys_corr_89: -1.4856623041729515 - sys_corr_90: -0.2012213579737886 - sys_corr_91: 0.004314089787913985 - sys_corr_92: 1.6821645680576092 - sys_corr_93: -0.20375279769298213 - sys_corr_94: -0.7578345150194364 - sys_corr_95: 1.832749139377249 - sys_corr_96: -0.08650213294041881 - sys_corr_97: 1.2942643372398879 - sys_corr_98: 0.06789525517789388 - sys_corr_99: 1.1501261798600653 - sys_corr_100: 0.42133619261500793 - sys_corr_101: 0.7880283364808013 - sys_corr_102: 2.9898151820300423 - sys_corr_103: 0.7585149534719959 - sys_corr_104: -1.7048316263728247 - sys_corr_105: 0.7682613988931558 - sys_corr_106: 0.8286458893765611 - sys_corr_107: 0.7220517970809248 - sys_corr_108: 0.05850147798066639 - sys_corr_109: -0.023963424635161948 - sys_corr_110: 0.953053417638252 - sys_corr_111: -0.17744932790689677 - sys_corr_112: -0.07812809843128952 - sys_corr_113: -0.0361472518775009 - sys_corr_114: -0.0014131413757635847 - sys_corr_115: -0.08683427802038285 - sys_corr_116: -0.043055640211416196 - sys_corr_117: -0.052702085202251406 - sys_corr_118: 0.0036376776607137994 - sys_corr_119: -0.0017196237645309147 - sys_corr_120: 0.027154629274828774 - sys_corr_121: -0.0002649151849582698 - sys_corr_122: 0.026020064092518242 - sys_corr_123: 0.009351283794156623 - sys_corr_124: -0.07131906241732774 - sys_corr_125: -0.02176422401720897 - sys_corr_126: 0.00028507507108953387 - sys_corr_127: 0.35868202047459624 - sys_corr_128: 0.2020904734333933 - sys_corr_129: -0.07102981756361032 - sys_corr_130: -0.001316272884249128 - sys_corr_131: -0.026060570296930142 - sys_corr_132: 0.0227790396470046 + luminosity: 5.62015630e+02 +- sys_corr_1: 2.59584460e+02 + sys_corr_2: 7.41143481e+01 + sys_corr_3: -7.08641555e+01 + sys_corr_4: -6.99481210e+01 + sys_corr_5: 9.60622997e+01 + sys_corr_6: -3.78398973e+02 + sys_corr_7: 1.46649277e+02 + sys_corr_8: 8.12141599e+01 + sys_corr_9: 9.37876032e+01 + sys_corr_10: -1.00702605e+01 + sys_corr_11: 1.33575220e+02 + sys_corr_12: 1.63170005e+02 + sys_corr_13: -1.12159319e+02 + sys_corr_14: 3.66808291e+01 + sys_corr_15: 3.37632928e+01 + sys_corr_16: -2.85155723e+01 + sys_corr_17: 1.72967211e+01 + sys_corr_18: -2.71154857e+01 + sys_corr_19: -1.70551244e+01 + sys_corr_20: -2.74705897e+00 + sys_corr_21: -1.64631688e+00 + sys_corr_22: -7.02704311e+01 + sys_corr_23: 1.89274351e+00 + sys_corr_24: 1.04112200e+01 + sys_corr_25: 6.94125559e+01 + sys_corr_26: 1.59603406e+02 + sys_corr_27: -5.56725845e+01 + sys_corr_28: -4.04173345e+01 + sys_corr_29: -2.19811393e+00 + sys_corr_30: -4.36948327e+01 + sys_corr_31: 9.49418747e+01 + sys_corr_32: -2.21204585e+01 + sys_corr_33: 4.14955885e+00 + sys_corr_34: -1.72894264e+01 + sys_corr_35: -3.37665412e+01 + sys_corr_36: -1.13923201e+01 + sys_corr_37: -3.81468671e+01 + sys_corr_38: 5.45655763e+01 + sys_corr_39: 2.72613278e+01 + sys_corr_40: 8.24436924e+01 + sys_corr_41: 1.50278898e+02 + sys_corr_42: 1.87973113e+02 + sys_corr_43: 7.59636975e+01 + sys_corr_44: 8.74049153e+01 + sys_corr_45: 1.22123885e+02 + sys_corr_46: 6.95788001e+01 + sys_corr_47: 8.69985299e+00 + sys_corr_48: 5.01207500e+01 + sys_corr_49: 2.14567565e+01 + sys_corr_50: -7.50690449e+00 + sys_corr_51: -4.37215144e+01 + sys_corr_52: 2.37470594e+01 + sys_corr_53: 7.66882335e+00 + sys_corr_54: -2.78288870e+01 + sys_corr_55: -4.53444049e+01 + sys_corr_56: -8.04733626e+00 + sys_corr_57: -6.23620230e+00 + sys_corr_58: -1.05980122e+01 + sys_corr_59: -9.89658801e-01 + sys_corr_60: 8.32743407e+00 + sys_corr_61: 8.16831371e+00 + sys_corr_62: -9.08921841e-01 + sys_corr_63: -6.17027019e+00 + sys_corr_64: -1.67269610e+01 + sys_corr_65: -5.09132779e+00 + sys_corr_66: -5.82105759e-01 + sys_corr_67: 1.21149259e+01 + sys_corr_68: 9.64644366e+00 + sys_corr_69: -3.01042948e+00 + sys_corr_70: -2.60499928e+00 + sys_corr_71: -1.17526691e+00 + sys_corr_72: 3.70673501e+00 + sys_corr_73: 8.87488275e+00 + sys_corr_74: 3.74826950e+00 + sys_corr_75: -1.83259115e+00 + sys_corr_76: 7.32748667e+00 + sys_corr_77: -1.25865967e+00 + sys_corr_78: -6.07684522e+00 + sys_corr_79: -2.21128912e-01 + sys_corr_80: 3.66592636e+00 + sys_corr_81: 6.81807982e+00 + sys_corr_82: -9.19680405e+00 + sys_corr_83: 3.61090529e+00 + sys_corr_84: 2.62674332e+00 + sys_corr_85: 4.14068049e+00 + sys_corr_86: 4.78513926e+00 + sys_corr_87: -1.02522227e+01 + sys_corr_88: 4.10002562e+00 + sys_corr_89: -1.48566230e+00 + sys_corr_90: -2.01221358e-01 + sys_corr_91: 4.31408979e-03 + sys_corr_92: 1.68216457e+00 + sys_corr_93: -2.03752798e-01 + sys_corr_94: -7.57834515e-01 + sys_corr_95: 1.83274914e+00 + sys_corr_96: -8.65021329e-02 + sys_corr_97: 1.29426434e+00 + sys_corr_98: 6.78952552e-02 + sys_corr_99: 1.15012618e+00 + sys_corr_100: 4.21336193e-01 + sys_corr_101: 7.88028336e-01 + sys_corr_102: 2.98981518e+00 + sys_corr_103: 7.58514953e-01 + sys_corr_104: -1.70483163e+00 + sys_corr_105: 7.68261399e-01 + sys_corr_106: 8.28645889e-01 + sys_corr_107: 7.22051797e-01 + sys_corr_108: 5.85014780e-02 + sys_corr_109: -2.39634246e-02 + sys_corr_110: 9.53053418e-01 + sys_corr_111: -1.77449328e-01 + sys_corr_112: -7.81280984e-02 + sys_corr_113: -3.61472519e-02 + sys_corr_114: -1.41314138e-03 + sys_corr_115: -8.68342780e-02 + sys_corr_116: -4.30556402e-02 + sys_corr_117: -5.27020852e-02 + sys_corr_118: 3.63767766e-03 + sys_corr_119: -1.71962376e-03 + sys_corr_120: 2.71546293e-02 + sys_corr_121: -2.64915185e-04 + sys_corr_122: 2.60200641e-02 + sys_corr_123: 9.35128379e-03 + sys_corr_124: -7.13190624e-02 + sys_corr_125: -2.17642240e-02 + sys_corr_126: 2.85075071e-04 + sys_corr_127: 3.58682020e-01 + sys_corr_128: 2.02090473e-01 + sys_corr_129: -7.10298176e-02 + sys_corr_130: -1.31627288e-03 + sys_corr_131: -2.60605703e-02 + sys_corr_132: 2.27790396e-02 stat: 0.0 - luminosity: 539.288002 -- sys_corr_1: 276.7529924087729 - sys_corr_2: 72.45977875275105 - sys_corr_3: -41.63275731967147 - sys_corr_4: -110.69165642866733 - sys_corr_5: 14.830275668545257 - sys_corr_6: -228.9226016563415 - sys_corr_7: 174.84408958634685 - sys_corr_8: 111.75822788536026 - sys_corr_9: 133.81232406742834 - sys_corr_10: 18.132393767198234 - sys_corr_11: 187.37059805311992 - sys_corr_12: 239.35804339539396 - sys_corr_13: -143.6712152598925 - sys_corr_14: 47.763052602533676 - sys_corr_15: 19.427681928279753 - sys_corr_16: -7.483369109663411 - sys_corr_17: 11.52719990948484 - sys_corr_18: -9.829546187181341 - sys_corr_19: -7.019196581781111 - sys_corr_20: -5.969085767815419 - sys_corr_21: -5.994513255197813 - sys_corr_22: -38.596945982623545 - sys_corr_23: 6.821048383768846 - sys_corr_24: 104.58468775167556 - sys_corr_25: 90.11192444562674 - sys_corr_26: 177.95070526930152 - sys_corr_27: -34.58641623000866 - sys_corr_28: -40.38073834436352 - sys_corr_29: -15.206192694132499 - sys_corr_30: -40.05441897190401 - sys_corr_31: 143.2040823449387 - sys_corr_32: -52.274290783287206 - sys_corr_33: 7.573494133061588 - sys_corr_34: 24.3478225360286 - sys_corr_35: -3.904164995568236 - sys_corr_36: -44.92668407146402 - sys_corr_37: 83.23666278057709 - sys_corr_38: -2.10446709471907 - sys_corr_39: 22.91901128363197 - sys_corr_40: 6.462659166127411 - sys_corr_41: -77.25185864376897 - sys_corr_42: 20.58520105535158 - sys_corr_43: -79.73562534620442 - sys_corr_44: -23.497103577929607 - sys_corr_45: -130.41061119699813 - sys_corr_46: 85.04245775970385 - sys_corr_47: -155.39623890259065 - sys_corr_48: -25.700111287386022 - sys_corr_49: 65.17114151240578 - sys_corr_50: -81.67025918582772 - sys_corr_51: -42.821429643166844 - sys_corr_52: 50.268508885812054 - sys_corr_53: 42.03849273737276 - sys_corr_54: -0.7632403111643642 - sys_corr_55: -11.202764862206676 - sys_corr_56: 11.044221294149091 - sys_corr_57: 6.452262524957281 - sys_corr_58: -6.7642769167233885 - sys_corr_59: -15.047183455063417 - sys_corr_60: 0.20484622199753952 - sys_corr_61: -17.543478294247294 - sys_corr_62: 10.017330004487661 - sys_corr_63: -17.27867319774044 - sys_corr_64: 3.5400620411810966 - sys_corr_65: 12.59865047215075 - sys_corr_66: -17.601050020686305 - sys_corr_67: -8.230157580879489 - sys_corr_68: -6.885497690868814 - sys_corr_69: 23.081117512306946 - sys_corr_70: 1.181999373228932 - sys_corr_71: -27.75136466192391 - sys_corr_72: -8.80037166464933 - sys_corr_73: -5.382354368237731 - sys_corr_74: 13.390457547247719 - sys_corr_75: 17.51054630095833 - sys_corr_76: -10.40754257277558 - sys_corr_77: -11.031817880557137 - sys_corr_78: 5.778218520855803 - sys_corr_79: 11.500944650951526 - sys_corr_80: 5.813481758740409 - sys_corr_81: 0.26259117138877053 - sys_corr_82: 0.7449538010587755 - sys_corr_83: 3.3513244815576 - sys_corr_84: 0.07980181005904737 - sys_corr_85: 5.726623249271009 - sys_corr_86: -8.218214887168315 - sys_corr_87: 2.658400605126629 - sys_corr_88: -5.015427362468403 - sys_corr_89: 0.41659631154034493 - sys_corr_90: -5.202513123319112 - sys_corr_91: -1.3571026197468774 - sys_corr_92: 5.627257856910796 - sys_corr_93: -0.3600540033857546 - sys_corr_94: -1.4166713809000895 - sys_corr_95: 1.0374167599637567 - sys_corr_96: -0.021755826344365778 - sys_corr_97: 0.536749934893007 - sys_corr_98: 0.5630810217150771 - sys_corr_99: -0.34284018916982584 - sys_corr_100: 0.6459869587044118 - sys_corr_101: 0.17127396460462324 - sys_corr_102: 1.1223974293480563 - sys_corr_103: 0.14388945447157797 - sys_corr_104: -0.5137616748847997 - sys_corr_105: 0.4133493580852121 - sys_corr_106: 0.5842161052292801 - sys_corr_107: 0.8493807106876805 - sys_corr_108: -0.1777390146186216 - sys_corr_109: -0.10014780831997935 - sys_corr_110: 0.03202561144228524 - sys_corr_111: -0.3226420508701094 - sys_corr_112: -0.09560862145577011 - sys_corr_113: -0.005165477309419779 - sys_corr_114: -0.001423114405945156 - sys_corr_115: -0.13624868917320765 - sys_corr_116: 0.019075377271815 - sys_corr_117: 0.016372377381687883 - sys_corr_118: -0.01496641717078549 - sys_corr_119: 0.002411869221464241 - sys_corr_120: -0.0004248586760937865 - sys_corr_121: 0.010704530062088245 - sys_corr_122: 0.027843328714923052 - sys_corr_123: 0.019626959765992328 - sys_corr_124: 0.02003687961291682 - sys_corr_125: -0.009972794610187817 - sys_corr_126: 0.0070344894413504125 - sys_corr_127: -0.1850754907381825 - sys_corr_128: 0.04854633482592882 - sys_corr_129: 0.07497324121414008 - sys_corr_130: -0.011324797191465065 - sys_corr_131: -0.0018264139594503794 - sys_corr_132: -0.004821687584683132 + luminosity: 5.39288002e+02 +- sys_corr_1: 2.76752992e+02 + sys_corr_2: 7.24597788e+01 + sys_corr_3: -4.16327573e+01 + sys_corr_4: -1.10691656e+02 + sys_corr_5: 1.48302757e+01 + sys_corr_6: -2.28922602e+02 + sys_corr_7: 1.74844090e+02 + sys_corr_8: 1.11758228e+02 + sys_corr_9: 1.33812324e+02 + sys_corr_10: 1.81323938e+01 + sys_corr_11: 1.87370598e+02 + sys_corr_12: 2.39358043e+02 + sys_corr_13: -1.43671215e+02 + sys_corr_14: 4.77630526e+01 + sys_corr_15: 1.94276819e+01 + sys_corr_16: -7.48336911e+00 + sys_corr_17: 1.15271999e+01 + sys_corr_18: -9.82954619e+00 + sys_corr_19: -7.01919658e+00 + sys_corr_20: -5.96908577e+00 + sys_corr_21: -5.99451326e+00 + sys_corr_22: -3.85969460e+01 + sys_corr_23: 6.82104838e+00 + sys_corr_24: 1.04584688e+02 + sys_corr_25: 9.01119244e+01 + sys_corr_26: 1.77950705e+02 + sys_corr_27: -3.45864162e+01 + sys_corr_28: -4.03807383e+01 + sys_corr_29: -1.52061927e+01 + sys_corr_30: -4.00544190e+01 + sys_corr_31: 1.43204082e+02 + sys_corr_32: -5.22742908e+01 + sys_corr_33: 7.57349413e+00 + sys_corr_34: 2.43478225e+01 + sys_corr_35: -3.90416500e+00 + sys_corr_36: -4.49266841e+01 + sys_corr_37: 8.32366628e+01 + sys_corr_38: -2.10446709e+00 + sys_corr_39: 2.29190113e+01 + sys_corr_40: 6.46265917e+00 + sys_corr_41: -7.72518586e+01 + sys_corr_42: 2.05852011e+01 + sys_corr_43: -7.97356253e+01 + sys_corr_44: -2.34971036e+01 + sys_corr_45: -1.30410611e+02 + sys_corr_46: 8.50424578e+01 + sys_corr_47: -1.55396239e+02 + sys_corr_48: -2.57001113e+01 + sys_corr_49: 6.51711415e+01 + sys_corr_50: -8.16702592e+01 + sys_corr_51: -4.28214296e+01 + sys_corr_52: 5.02685089e+01 + sys_corr_53: 4.20384927e+01 + sys_corr_54: -7.63240311e-01 + sys_corr_55: -1.12027649e+01 + sys_corr_56: 1.10442213e+01 + sys_corr_57: 6.45226252e+00 + sys_corr_58: -6.76427692e+00 + sys_corr_59: -1.50471835e+01 + sys_corr_60: 2.04846222e-01 + sys_corr_61: -1.75434783e+01 + sys_corr_62: 1.00173300e+01 + sys_corr_63: -1.72786732e+01 + sys_corr_64: 3.54006204e+00 + sys_corr_65: 1.25986505e+01 + sys_corr_66: -1.76010500e+01 + sys_corr_67: -8.23015758e+00 + sys_corr_68: -6.88549769e+00 + sys_corr_69: 2.30811175e+01 + sys_corr_70: 1.18199937e+00 + sys_corr_71: -2.77513647e+01 + sys_corr_72: -8.80037166e+00 + sys_corr_73: -5.38235437e+00 + sys_corr_74: 1.33904575e+01 + sys_corr_75: 1.75105463e+01 + sys_corr_76: -1.04075426e+01 + sys_corr_77: -1.10318179e+01 + sys_corr_78: 5.77821852e+00 + sys_corr_79: 1.15009447e+01 + sys_corr_80: 5.81348176e+00 + sys_corr_81: 2.62591171e-01 + sys_corr_82: 7.44953801e-01 + sys_corr_83: 3.35132448e+00 + sys_corr_84: 7.98018101e-02 + sys_corr_85: 5.72662325e+00 + sys_corr_86: -8.21821489e+00 + sys_corr_87: 2.65840061e+00 + sys_corr_88: -5.01542736e+00 + sys_corr_89: 4.16596312e-01 + sys_corr_90: -5.20251312e+00 + sys_corr_91: -1.35710262e+00 + sys_corr_92: 5.62725786e+00 + sys_corr_93: -3.60054003e-01 + sys_corr_94: -1.41667138e+00 + sys_corr_95: 1.03741676e+00 + sys_corr_96: -2.17558263e-02 + sys_corr_97: 5.36749935e-01 + sys_corr_98: 5.63081022e-01 + sys_corr_99: -3.42840189e-01 + sys_corr_100: 6.45986959e-01 + sys_corr_101: 1.71273965e-01 + sys_corr_102: 1.12239743e+00 + sys_corr_103: 1.43889454e-01 + sys_corr_104: -5.13761675e-01 + sys_corr_105: 4.13349358e-01 + sys_corr_106: 5.84216105e-01 + sys_corr_107: 8.49380711e-01 + sys_corr_108: -1.77739015e-01 + sys_corr_109: -1.00147808e-01 + sys_corr_110: 3.20256114e-02 + sys_corr_111: -3.22642051e-01 + sys_corr_112: -9.56086215e-02 + sys_corr_113: -5.16547731e-03 + sys_corr_114: -1.42311441e-03 + sys_corr_115: -1.36248689e-01 + sys_corr_116: 1.90753773e-02 + sys_corr_117: 1.63723774e-02 + sys_corr_118: -1.49664172e-02 + sys_corr_119: 2.41186922e-03 + sys_corr_120: -4.24858676e-04 + sys_corr_121: 1.07045301e-02 + sys_corr_122: 2.78433287e-02 + sys_corr_123: 1.96269598e-02 + sys_corr_124: 2.00368796e-02 + sys_corr_125: -9.97279461e-03 + sys_corr_126: 7.03448944e-03 + sys_corr_127: -1.85075491e-01 + sys_corr_128: 4.85463348e-02 + sys_corr_129: 7.49732412e-02 + sys_corr_130: -1.13247972e-02 + sys_corr_131: -1.82641396e-03 + sys_corr_132: -4.82168758e-03 stat: 0.0 - luminosity: 566.7237620000001 -- sys_corr_1: 250.91711023905634 - sys_corr_2: 60.03301933447158 - sys_corr_3: -30.206350254954536 - sys_corr_4: -126.06243931011754 - sys_corr_5: -38.903530776627655 - sys_corr_6: -102.7418667272941 - sys_corr_7: 162.73257332381638 - sys_corr_8: 127.05183494495888 - sys_corr_9: 135.36987892399878 - sys_corr_10: 24.10392494999166 - sys_corr_11: 179.09320276857835 - sys_corr_12: 208.64658728493148 - sys_corr_13: -152.22938278384058 - sys_corr_14: 46.03361437603816 - sys_corr_15: 44.300297858672295 - sys_corr_16: -27.377348649618604 - sys_corr_17: 11.711630356273776 - sys_corr_18: -37.925225218763416 - sys_corr_19: -7.2532288414858925 - sys_corr_20: -18.756639628937904 - sys_corr_21: -17.102369557180232 - sys_corr_22: -4.751850123593239 - sys_corr_23: 18.584316497767325 - sys_corr_24: 167.8130942863394 - sys_corr_25: 89.15891664353771 - sys_corr_26: 173.47263792459935 - sys_corr_27: -19.523110445600317 - sys_corr_28: -14.011631429668949 - sys_corr_29: -44.976944490009174 - sys_corr_30: -30.810417881198795 - sys_corr_31: 94.71797942838944 - sys_corr_32: -13.678691573667896 - sys_corr_33: -14.268420065929183 - sys_corr_34: 6.257346785476818 - sys_corr_35: 1.0288499438874201 - sys_corr_36: -22.843384768698794 - sys_corr_37: 30.72091289215054 - sys_corr_38: -23.254847275171002 - sys_corr_39: -31.82835821957776 - sys_corr_40: -118.42029841421741 - sys_corr_41: 109.8590941045401 - sys_corr_42: -194.1360054154475 - sys_corr_43: 133.50057123549095 - sys_corr_44: -46.663172505749955 - sys_corr_45: -4.468904916093571 - sys_corr_46: 0.9496585788809829 - sys_corr_47: 41.234519929216795 - sys_corr_48: 84.76970559248207 - sys_corr_49: 71.78273530173063 - sys_corr_50: 35.50208523742127 - sys_corr_51: -19.615015538523572 - sys_corr_52: -25.630778800094937 - sys_corr_53: -22.11545252860665 - sys_corr_54: -4.916991996762727 - sys_corr_55: 16.155976467322116 - sys_corr_56: -14.808146482784911 - sys_corr_57: 27.643807988160937 - sys_corr_58: -10.184943685611689 - sys_corr_59: -13.621997449978602 - sys_corr_60: 9.210205296768974 - sys_corr_61: 9.166398202372596 - sys_corr_62: -13.749881542047394 - sys_corr_63: -31.6409635103708 - sys_corr_64: -9.08827294645788 - sys_corr_65: 3.1842260674508536 - sys_corr_66: -4.574922776517 - sys_corr_67: 17.155468944165722 - sys_corr_68: 2.934757002151482 - sys_corr_69: -4.27319716684302 - sys_corr_70: 1.314440907034336 - sys_corr_71: 1.162757378179913 - sys_corr_72: -3.053387811396422 - sys_corr_73: 3.3656358505264796 - sys_corr_74: 7.283163263468906 - sys_corr_75: 11.675519915127474 - sys_corr_76: -3.15576568169759 - sys_corr_77: -8.713093464040828 - sys_corr_78: 2.9198635986009975 - sys_corr_79: -2.2671570922078037 - sys_corr_80: 5.072666301805864 - sys_corr_81: 8.299458086163868 - sys_corr_82: -1.7290367527430723 - sys_corr_83: 7.765591442571015 - sys_corr_84: -4.110737140169442 - sys_corr_85: 1.2207744393140736 - sys_corr_86: 4.7435563317121785 - sys_corr_87: 5.1963120268175365 - sys_corr_88: 6.771282714034963 - sys_corr_89: -0.15524318601092196 - sys_corr_90: -3.474010837454781 - sys_corr_91: -1.6838979074343752 - sys_corr_92: 1.4488691841158192 - sys_corr_93: -0.2299507078112578 - sys_corr_94: -0.8306305870855972 - sys_corr_95: -0.33135304599358656 - sys_corr_96: 0.027308278503028395 - sys_corr_97: -0.47633463342806953 - sys_corr_98: -0.32187401024016465 - sys_corr_99: 0.37016725547402324 - sys_corr_100: -0.42464990993063584 - sys_corr_101: -1.1094053521790812 - sys_corr_102: -3.7435904543227556 - sys_corr_103: 0.7490515296674454 - sys_corr_104: 1.5625684072514678 - sys_corr_105: -0.2532546323591119 - sys_corr_106: -0.31498806512544836 - sys_corr_107: 0.0482614836357211 - sys_corr_108: -0.050209818670440644 - sys_corr_109: 0.14001937726234584 - sys_corr_110: -0.036752634575584246 - sys_corr_111: 0.04828330694582468 - sys_corr_112: -0.018306555370486616 - sys_corr_113: 0.056177597344269165 - sys_corr_114: -0.0007642245964550756 - sys_corr_115: -0.03331966329366985 - sys_corr_116: 0.0585818419930145 - sys_corr_117: 0.05594422346179652 - sys_corr_118: 0.006141811015820923 - sys_corr_119: 0.00037203193145519503 - sys_corr_120: -0.03320363121415385 - sys_corr_121: 0.004097007941730695 - sys_corr_122: -0.02503632226896083 - sys_corr_123: -0.00819609259930347 - sys_corr_124: 0.06478587200684137 - sys_corr_125: 0.027890287158428964 - sys_corr_126: -0.003371162323888349 - sys_corr_127: 0.10358600611242276 - sys_corr_128: -0.1118604231512017 - sys_corr_129: -0.02582697143294757 - sys_corr_130: -0.0038537481710442705 - sys_corr_131: 0.02471688729351356 - sys_corr_132: 0.011476731161551682 + luminosity: 5.66723762e+02 +- sys_corr_1: 2.50917110e+02 + sys_corr_2: 6.00330193e+01 + sys_corr_3: -3.02063503e+01 + sys_corr_4: -1.26062439e+02 + sys_corr_5: -3.89035308e+01 + sys_corr_6: -1.02741867e+02 + sys_corr_7: 1.62732573e+02 + sys_corr_8: 1.27051835e+02 + sys_corr_9: 1.35369879e+02 + sys_corr_10: 2.41039249e+01 + sys_corr_11: 1.79093203e+02 + sys_corr_12: 2.08646587e+02 + sys_corr_13: -1.52229383e+02 + sys_corr_14: 4.60336144e+01 + sys_corr_15: 4.43002979e+01 + sys_corr_16: -2.73773486e+01 + sys_corr_17: 1.17116304e+01 + sys_corr_18: -3.79252252e+01 + sys_corr_19: -7.25322884e+00 + sys_corr_20: -1.87566396e+01 + sys_corr_21: -1.71023696e+01 + sys_corr_22: -4.75185012e+00 + sys_corr_23: 1.85843165e+01 + sys_corr_24: 1.67813094e+02 + sys_corr_25: 8.91589166e+01 + sys_corr_26: 1.73472638e+02 + sys_corr_27: -1.95231104e+01 + sys_corr_28: -1.40116314e+01 + sys_corr_29: -4.49769445e+01 + sys_corr_30: -3.08104179e+01 + sys_corr_31: 9.47179794e+01 + sys_corr_32: -1.36786916e+01 + sys_corr_33: -1.42684201e+01 + sys_corr_34: 6.25734679e+00 + sys_corr_35: 1.02884994e+00 + sys_corr_36: -2.28433848e+01 + sys_corr_37: 3.07209129e+01 + sys_corr_38: -2.32548473e+01 + sys_corr_39: -3.18283582e+01 + sys_corr_40: -1.18420298e+02 + sys_corr_41: 1.09859094e+02 + sys_corr_42: -1.94136005e+02 + sys_corr_43: 1.33500571e+02 + sys_corr_44: -4.66631725e+01 + sys_corr_45: -4.46890492e+00 + sys_corr_46: 9.49658579e-01 + sys_corr_47: 4.12345199e+01 + sys_corr_48: 8.47697056e+01 + sys_corr_49: 7.17827353e+01 + sys_corr_50: 3.55020852e+01 + sys_corr_51: -1.96150155e+01 + sys_corr_52: -2.56307788e+01 + sys_corr_53: -2.21154525e+01 + sys_corr_54: -4.91699200e+00 + sys_corr_55: 1.61559765e+01 + sys_corr_56: -1.48081465e+01 + sys_corr_57: 2.76438080e+01 + sys_corr_58: -1.01849437e+01 + sys_corr_59: -1.36219974e+01 + sys_corr_60: 9.21020530e+00 + sys_corr_61: 9.16639820e+00 + sys_corr_62: -1.37498815e+01 + sys_corr_63: -3.16409635e+01 + sys_corr_64: -9.08827295e+00 + sys_corr_65: 3.18422607e+00 + sys_corr_66: -4.57492278e+00 + sys_corr_67: 1.71554689e+01 + sys_corr_68: 2.93475700e+00 + sys_corr_69: -4.27319717e+00 + sys_corr_70: 1.31444091e+00 + sys_corr_71: 1.16275738e+00 + sys_corr_72: -3.05338781e+00 + sys_corr_73: 3.36563585e+00 + sys_corr_74: 7.28316326e+00 + sys_corr_75: 1.16755199e+01 + sys_corr_76: -3.15576568e+00 + sys_corr_77: -8.71309346e+00 + sys_corr_78: 2.91986360e+00 + sys_corr_79: -2.26715709e+00 + sys_corr_80: 5.07266630e+00 + sys_corr_81: 8.29945809e+00 + sys_corr_82: -1.72903675e+00 + sys_corr_83: 7.76559144e+00 + sys_corr_84: -4.11073714e+00 + sys_corr_85: 1.22077444e+00 + sys_corr_86: 4.74355633e+00 + sys_corr_87: 5.19631203e+00 + sys_corr_88: 6.77128271e+00 + sys_corr_89: -1.55243186e-01 + sys_corr_90: -3.47401084e+00 + sys_corr_91: -1.68389791e+00 + sys_corr_92: 1.44886918e+00 + sys_corr_93: -2.29950708e-01 + sys_corr_94: -8.30630587e-01 + sys_corr_95: -3.31353046e-01 + sys_corr_96: 2.73082785e-02 + sys_corr_97: -4.76334633e-01 + sys_corr_98: -3.21874010e-01 + sys_corr_99: 3.70167255e-01 + sys_corr_100: -4.24649910e-01 + sys_corr_101: -1.10940535e+00 + sys_corr_102: -3.74359045e+00 + sys_corr_103: 7.49051530e-01 + sys_corr_104: 1.56256841e+00 + sys_corr_105: -2.53254632e-01 + sys_corr_106: -3.14988065e-01 + sys_corr_107: 4.82614836e-02 + sys_corr_108: -5.02098187e-02 + sys_corr_109: 1.40019377e-01 + sys_corr_110: -3.67526346e-02 + sys_corr_111: 4.82833069e-02 + sys_corr_112: -1.83065554e-02 + sys_corr_113: 5.61775973e-02 + sys_corr_114: -7.64224596e-04 + sys_corr_115: -3.33196633e-02 + sys_corr_116: 5.85818420e-02 + sys_corr_117: 5.59442235e-02 + sys_corr_118: 6.14181102e-03 + sys_corr_119: 3.72031931e-04 + sys_corr_120: -3.32036312e-02 + sys_corr_121: 4.09700794e-03 + sys_corr_122: -2.50363223e-02 + sys_corr_123: -8.19609260e-03 + sys_corr_124: 6.47858720e-02 + sys_corr_125: 2.78902872e-02 + sys_corr_126: -3.37116232e-03 + sys_corr_127: 1.03586006e-01 + sys_corr_128: -1.11860423e-01 + sys_corr_129: -2.58269714e-02 + sys_corr_130: -3.85374817e-03 + sys_corr_131: 2.47168873e-02 + sys_corr_132: 1.14767312e-02 stat: 0.0 - luminosity: 530.0436460000001 -- sys_corr_1: 233.72171816365628 - sys_corr_2: 50.78339512652912 - sys_corr_3: -31.154688657829375 - sys_corr_4: -157.68036034054236 - sys_corr_5: -59.6704122735087 - sys_corr_6: -50.72466621718343 - sys_corr_7: 142.33607914397092 - sys_corr_8: 130.61219765292375 - sys_corr_9: 146.620608792775 - sys_corr_10: 38.794306628992516 - sys_corr_11: 155.33058420574847 - sys_corr_12: 200.52737041918348 - sys_corr_13: -143.67509449646178 - sys_corr_14: 39.40693575894756 - sys_corr_15: 38.72820139015386 - sys_corr_16: -24.568316210182658 - sys_corr_17: 23.102818409451636 - sys_corr_18: -25.643781530808283 - sys_corr_19: -5.834616361501716 - sys_corr_20: -28.312985168813 - sys_corr_21: -31.47997113369813 - sys_corr_22: -25.21755977972477 - sys_corr_23: 13.696934279896054 - sys_corr_24: 194.91670038315226 - sys_corr_25: 82.9304827026474 - sys_corr_26: 168.79155112466435 - sys_corr_27: -14.88730256558526 - sys_corr_28: 4.9573746500258995 - sys_corr_29: -57.998843144040165 - sys_corr_30: -23.942168789498194 - sys_corr_31: 40.2683781216013 - sys_corr_32: -30.172204529833905 - sys_corr_33: -3.7086297761707843 - sys_corr_34: 5.444814974555936 - sys_corr_35: -31.76454645091487 - sys_corr_36: -32.14145220843146 - sys_corr_37: 71.85228727623713 - sys_corr_38: 75.91688736122894 - sys_corr_39: -1.673644633944521 - sys_corr_40: 129.58636716541972 - sys_corr_41: -110.5890323640196 - sys_corr_42: 17.45601954859846 - sys_corr_43: -68.37663664834089 - sys_corr_44: -59.17710359738278 - sys_corr_45: 44.91023101232835 - sys_corr_46: -117.41943781614779 - sys_corr_47: 165.80717405619788 - sys_corr_48: 53.093194720151146 - sys_corr_49: 5.954765581496744 - sys_corr_50: -36.4395274912432 - sys_corr_51: 33.27550981076699 - sys_corr_52: 8.364799858877406 - sys_corr_53: -17.04710606939791 - sys_corr_54: -11.592938466683343 - sys_corr_55: 62.20447676143836 - sys_corr_56: 39.14320035561263 - sys_corr_57: 16.62833339729751 - sys_corr_58: 10.03821925355783 - sys_corr_59: 26.663698045417608 - sys_corr_60: -5.28429605960734 - sys_corr_61: -13.79192398450473 - sys_corr_62: 4.676381657059348 - sys_corr_63: 15.421749488929134 - sys_corr_64: 8.498333545769608 - sys_corr_65: -11.96434620574222 - sys_corr_66: -5.744606431899014 - sys_corr_67: 8.375819311423205 - sys_corr_68: -12.999004827963814 - sys_corr_69: 0.5187530123643453 - sys_corr_70: 2.1878777323743677 - sys_corr_71: -12.877669403285326 - sys_corr_72: 0.19190290600381335 - sys_corr_73: 20.755920215189978 - sys_corr_74: -4.3460165900245995 - sys_corr_75: 8.452100394799784 - sys_corr_76: -0.8092182836527381 - sys_corr_77: -2.6140914829967463 - sys_corr_78: 2.2010636422391485 - sys_corr_79: -5.20466469309493 - sys_corr_80: -0.8138341971669791 - sys_corr_81: -1.7806143140957718 - sys_corr_82: -2.4585156632327716 - sys_corr_83: 3.845440074052265 - sys_corr_84: -0.824064893655219 - sys_corr_85: 2.925339486497939 - sys_corr_86: 6.1172804214671554 - sys_corr_87: 6.189447476961776 - sys_corr_88: 6.185176489644816 - sys_corr_89: -0.296432669504135 - sys_corr_90: -2.947136710928228 - sys_corr_91: 0.45475383180067785 - sys_corr_92: -1.4176029775805958 - sys_corr_93: -0.09649561904441907 - sys_corr_94: -0.30963040207058334 - sys_corr_95: -0.9495186307946585 - sys_corr_96: -0.1787610760351015 - sys_corr_97: 0.26358512186652777 - sys_corr_98: -0.03862608535151278 - sys_corr_99: 0.6329316227209548 - sys_corr_100: -0.3287388889222276 - sys_corr_101: -0.7063254531521116 - sys_corr_102: -1.5690165873022135 - sys_corr_103: -0.18779682763018782 - sys_corr_104: 0.6720144458165836 - sys_corr_105: -0.5287375801504185 - sys_corr_106: -0.39543267856905384 - sys_corr_107: -0.5153980450727239 - sys_corr_108: 0.0018006115365803365 - sys_corr_109: 0.17476583997292472 - sys_corr_110: -0.2745627502947355 - sys_corr_111: 0.18592068639074666 - sys_corr_112: 0.07106667362872217 - sys_corr_113: -0.014380127318266324 - sys_corr_114: 0.0009010833837555526 - sys_corr_115: 0.14117123121057473 - sys_corr_116: 0.05690469802193526 - sys_corr_117: 0.04919042536345248 - sys_corr_118: 0.04744490613209111 - sys_corr_119: 0.002153022987196102 - sys_corr_120: -0.03453960403520504 - sys_corr_121: 0.0005490319057320655 - sys_corr_122: -0.03109960010035644 - sys_corr_123: -0.011799081438244829 - sys_corr_124: 0.08920522307082043 - sys_corr_125: 0.030286981425760175 - sys_corr_126: -0.007560201484747448 - sys_corr_127: -0.2710269271140328 - sys_corr_128: -0.14019056094018575 - sys_corr_129: -0.0763061064401219 - sys_corr_130: -0.004735743754293877 - sys_corr_131: 0.02626129422562674 - sys_corr_132: 0.03257417772977654 + luminosity: 5.30043646e+02 +- sys_corr_1: 2.33721718e+02 + sys_corr_2: 5.07833951e+01 + sys_corr_3: -3.11546887e+01 + sys_corr_4: -1.57680360e+02 + sys_corr_5: -5.96704123e+01 + sys_corr_6: -5.07246662e+01 + sys_corr_7: 1.42336079e+02 + sys_corr_8: 1.30612198e+02 + sys_corr_9: 1.46620609e+02 + sys_corr_10: 3.87943066e+01 + sys_corr_11: 1.55330584e+02 + sys_corr_12: 2.00527370e+02 + sys_corr_13: -1.43675094e+02 + sys_corr_14: 3.94069358e+01 + sys_corr_15: 3.87282014e+01 + sys_corr_16: -2.45683162e+01 + sys_corr_17: 2.31028184e+01 + sys_corr_18: -2.56437815e+01 + sys_corr_19: -5.83461636e+00 + sys_corr_20: -2.83129852e+01 + sys_corr_21: -3.14799711e+01 + sys_corr_22: -2.52175598e+01 + sys_corr_23: 1.36969343e+01 + sys_corr_24: 1.94916700e+02 + sys_corr_25: 8.29304827e+01 + sys_corr_26: 1.68791551e+02 + sys_corr_27: -1.48873026e+01 + sys_corr_28: 4.95737465e+00 + sys_corr_29: -5.79988431e+01 + sys_corr_30: -2.39421688e+01 + sys_corr_31: 4.02683781e+01 + sys_corr_32: -3.01722045e+01 + sys_corr_33: -3.70862978e+00 + sys_corr_34: 5.44481497e+00 + sys_corr_35: -3.17645465e+01 + sys_corr_36: -3.21414522e+01 + sys_corr_37: 7.18522873e+01 + sys_corr_38: 7.59168874e+01 + sys_corr_39: -1.67364463e+00 + sys_corr_40: 1.29586367e+02 + sys_corr_41: -1.10589032e+02 + sys_corr_42: 1.74560195e+01 + sys_corr_43: -6.83766366e+01 + sys_corr_44: -5.91771036e+01 + sys_corr_45: 4.49102310e+01 + sys_corr_46: -1.17419438e+02 + sys_corr_47: 1.65807174e+02 + sys_corr_48: 5.30931947e+01 + sys_corr_49: 5.95476558e+00 + sys_corr_50: -3.64395275e+01 + sys_corr_51: 3.32755098e+01 + sys_corr_52: 8.36479986e+00 + sys_corr_53: -1.70471061e+01 + sys_corr_54: -1.15929385e+01 + sys_corr_55: 6.22044768e+01 + sys_corr_56: 3.91432004e+01 + sys_corr_57: 1.66283334e+01 + sys_corr_58: 1.00382193e+01 + sys_corr_59: 2.66636980e+01 + sys_corr_60: -5.28429606e+00 + sys_corr_61: -1.37919240e+01 + sys_corr_62: 4.67638166e+00 + sys_corr_63: 1.54217495e+01 + sys_corr_64: 8.49833355e+00 + sys_corr_65: -1.19643462e+01 + sys_corr_66: -5.74460643e+00 + sys_corr_67: 8.37581931e+00 + sys_corr_68: -1.29990048e+01 + sys_corr_69: 5.18753012e-01 + sys_corr_70: 2.18787773e+00 + sys_corr_71: -1.28776694e+01 + sys_corr_72: 1.91902906e-01 + sys_corr_73: 2.07559202e+01 + sys_corr_74: -4.34601659e+00 + sys_corr_75: 8.45210039e+00 + sys_corr_76: -8.09218284e-01 + sys_corr_77: -2.61409148e+00 + sys_corr_78: 2.20106364e+00 + sys_corr_79: -5.20466469e+00 + sys_corr_80: -8.13834197e-01 + sys_corr_81: -1.78061431e+00 + sys_corr_82: -2.45851566e+00 + sys_corr_83: 3.84544007e+00 + sys_corr_84: -8.24064894e-01 + sys_corr_85: 2.92533949e+00 + sys_corr_86: 6.11728042e+00 + sys_corr_87: 6.18944748e+00 + sys_corr_88: 6.18517649e+00 + sys_corr_89: -2.96432670e-01 + sys_corr_90: -2.94713671e+00 + sys_corr_91: 4.54753832e-01 + sys_corr_92: -1.41760298e+00 + sys_corr_93: -9.64956190e-02 + sys_corr_94: -3.09630402e-01 + sys_corr_95: -9.49518631e-01 + sys_corr_96: -1.78761076e-01 + sys_corr_97: 2.63585122e-01 + sys_corr_98: -3.86260854e-02 + sys_corr_99: 6.32931623e-01 + sys_corr_100: -3.28738889e-01 + sys_corr_101: -7.06325453e-01 + sys_corr_102: -1.56901659e+00 + sys_corr_103: -1.87796828e-01 + sys_corr_104: 6.72014446e-01 + sys_corr_105: -5.28737580e-01 + sys_corr_106: -3.95432679e-01 + sys_corr_107: -5.15398045e-01 + sys_corr_108: 1.80061154e-03 + sys_corr_109: 1.74765840e-01 + sys_corr_110: -2.74562750e-01 + sys_corr_111: 1.85920686e-01 + sys_corr_112: 7.10666736e-02 + sys_corr_113: -1.43801273e-02 + sys_corr_114: 9.01083384e-04 + sys_corr_115: 1.41171231e-01 + sys_corr_116: 5.69046980e-02 + sys_corr_117: 4.91904254e-02 + sys_corr_118: 4.74449061e-02 + sys_corr_119: 2.15302299e-03 + sys_corr_120: -3.45396040e-02 + sys_corr_121: 5.49031906e-04 + sys_corr_122: -3.10996001e-02 + sys_corr_123: -1.17990814e-02 + sys_corr_124: 8.92052231e-02 + sys_corr_125: 3.02869814e-02 + sys_corr_126: -7.56020148e-03 + sys_corr_127: -2.71026927e-01 + sys_corr_128: -1.40190561e-01 + sys_corr_129: -7.63061064e-02 + sys_corr_130: -4.73574375e-03 + sys_corr_131: 2.62612942e-02 + sys_corr_132: 3.25741777e-02 stat: 0.0 - luminosity: 513.6688700000001 -- sys_corr_1: 205.14432021406802 - sys_corr_2: 57.97593427969365 - sys_corr_3: -42.59457734233395 - sys_corr_4: -180.6631134958895 - sys_corr_5: -50.54795624786071 - sys_corr_6: -17.153687020655752 - sys_corr_7: 111.42634218995877 - sys_corr_8: 105.44996514221363 - sys_corr_9: 128.7950994726116 - sys_corr_10: 29.633680729715284 - sys_corr_11: 143.38575626313258 - sys_corr_12: 170.4806045637416 - sys_corr_13: -128.2811073453845 - sys_corr_14: 27.06204063852804 - sys_corr_15: 36.37896906942892 - sys_corr_16: -20.51432494787706 - sys_corr_17: 18.540681949518753 - sys_corr_18: -22.062347129968003 - sys_corr_19: -17.752780322148354 - sys_corr_20: -40.56705959300537 - sys_corr_21: -24.889168053880297 - sys_corr_22: -56.45921989184215 - sys_corr_23: 9.924338297485473 - sys_corr_24: 212.58254424737066 - sys_corr_25: 67.80944925152458 - sys_corr_26: 144.41809934091805 - sys_corr_27: 9.648072009257428 - sys_corr_28: 20.80376387660106 - sys_corr_29: -52.30586708304206 - sys_corr_30: 20.176582696148763 - sys_corr_31: -80.45252666492064 - sys_corr_32: 7.4115332024245975 - sys_corr_33: -10.655513291339316 - sys_corr_34: -4.085819535990014 - sys_corr_35: 5.622509733558459 - sys_corr_36: -6.8000941510824635 - sys_corr_37: 15.913268070686636 - sys_corr_38: 19.306458737824865 - sys_corr_39: -3.7432495151556897 - sys_corr_40: 40.077161292996024 - sys_corr_41: 8.73479755064029 - sys_corr_42: 12.09552002266379 - sys_corr_43: 169.57254825053516 - sys_corr_44: 79.13190768418741 - sys_corr_45: -77.59031315862087 - sys_corr_46: -58.24563048996642 - sys_corr_47: -58.21294474864921 - sys_corr_48: -129.531329044263 - sys_corr_49: -143.90022297779953 - sys_corr_50: -16.490812803887145 - sys_corr_51: -8.495875013498454 - sys_corr_52: -17.624940783711132 - sys_corr_53: -10.148024053215275 - sys_corr_54: 39.11072201939227 - sys_corr_55: 69.98446368777094 - sys_corr_56: -13.327343613177808 - sys_corr_57: 10.532998454642899 - sys_corr_58: 16.64865715241785 - sys_corr_59: 36.15924327919674 - sys_corr_60: -9.55582047382269 - sys_corr_61: -16.330379745900427 - sys_corr_62: 10.833487399240097 - sys_corr_63: 29.815183813975576 - sys_corr_64: -18.833290519956567 - sys_corr_65: -1.865331851106681 - sys_corr_66: -17.066282842849276 - sys_corr_67: 13.604892659205206 - sys_corr_68: -9.291123731095103 - sys_corr_69: 1.2023902983008359 - sys_corr_70: -3.3735118361383534 - sys_corr_71: 13.853442795245765 - sys_corr_72: -1.738695623620101 - sys_corr_73: 5.559503395294799 - sys_corr_74: 17.24159549565995 - sys_corr_75: -0.9831281382222198 - sys_corr_76: -7.585581378572979 - sys_corr_77: 0.3197601263627516 - sys_corr_78: 0.20681807857223436 - sys_corr_79: -1.4148450587967956 - sys_corr_80: -3.9380572199790063 - sys_corr_81: -0.1198604999787231 - sys_corr_82: 2.740827518039446 - sys_corr_83: 4.378275984154108 - sys_corr_84: 3.7405748820178575 - sys_corr_85: -0.6456541620736953 - sys_corr_86: 2.103292072033249 - sys_corr_87: 4.228532994384358 - sys_corr_88: 10.603908686612014 - sys_corr_89: -0.18001392512951417 - sys_corr_90: -3.843737665358855 - sys_corr_91: 4.890364249310896 - sys_corr_92: -0.494152786898738 - sys_corr_93: 0.1426637398608055 - sys_corr_94: 0.6811103257587734 - sys_corr_95: -0.39652336598128507 - sys_corr_96: -0.12254243228488396 - sys_corr_97: -0.6241935329630965 - sys_corr_98: -0.15203762939734347 - sys_corr_99: -0.1871761258407416 - sys_corr_100: -0.13327473944210402 - sys_corr_101: -0.08216556128807746 - sys_corr_102: -0.9826943309526148 - sys_corr_103: -0.5963677207056689 - sys_corr_104: 0.8142120352616767 - sys_corr_105: -0.15781479897717962 - sys_corr_106: -0.24965229981210443 - sys_corr_107: -0.2342273810904923 - sys_corr_108: 0.027422285623459327 - sys_corr_109: 0.03520341717467083 - sys_corr_110: -0.2976057551179638 - sys_corr_111: 0.026598188044787054 - sys_corr_112: 0.11578371893695176 - sys_corr_113: 0.03449702132866038 - sys_corr_114: 0.0011390747756165375 - sys_corr_115: 0.1652001483605478 - sys_corr_116: 0.07464920216416385 - sys_corr_117: 0.06473474065928646 - sys_corr_118: -0.06176186300209005 - sys_corr_119: -0.0005488114188861892 - sys_corr_120: -0.040431454587933124 - sys_corr_121: 0.004002923854616278 - sys_corr_122: -0.03380135224205531 - sys_corr_123: -0.011824317338936114 - sys_corr_124: 0.1348987756925221 - sys_corr_125: 0.03763455815686334 - sys_corr_126: -0.009138050520810848 - sys_corr_127: 0.022908873593897292 - sys_corr_128: -0.15625211290513386 - sys_corr_129: 0.010865702737409043 - sys_corr_130: -0.0019213934685630419 - sys_corr_131: 0.03112075852749931 - sys_corr_132: 0.006851476993126133 + luminosity: 5.13668870e+02 +- sys_corr_1: 2.05144320e+02 + sys_corr_2: 5.79759343e+01 + sys_corr_3: -4.25945773e+01 + sys_corr_4: -1.80663113e+02 + sys_corr_5: -5.05479562e+01 + sys_corr_6: -1.71536870e+01 + sys_corr_7: 1.11426342e+02 + sys_corr_8: 1.05449965e+02 + sys_corr_9: 1.28795099e+02 + sys_corr_10: 2.96336807e+01 + sys_corr_11: 1.43385756e+02 + sys_corr_12: 1.70480605e+02 + sys_corr_13: -1.28281107e+02 + sys_corr_14: 2.70620406e+01 + sys_corr_15: 3.63789691e+01 + sys_corr_16: -2.05143249e+01 + sys_corr_17: 1.85406819e+01 + sys_corr_18: -2.20623471e+01 + sys_corr_19: -1.77527803e+01 + sys_corr_20: -4.05670596e+01 + sys_corr_21: -2.48891681e+01 + sys_corr_22: -5.64592199e+01 + sys_corr_23: 9.92433830e+00 + sys_corr_24: 2.12582544e+02 + sys_corr_25: 6.78094493e+01 + sys_corr_26: 1.44418099e+02 + sys_corr_27: 9.64807201e+00 + sys_corr_28: 2.08037639e+01 + sys_corr_29: -5.23058671e+01 + sys_corr_30: 2.01765827e+01 + sys_corr_31: -8.04525267e+01 + sys_corr_32: 7.41153320e+00 + sys_corr_33: -1.06555133e+01 + sys_corr_34: -4.08581954e+00 + sys_corr_35: 5.62250973e+00 + sys_corr_36: -6.80009415e+00 + sys_corr_37: 1.59132681e+01 + sys_corr_38: 1.93064587e+01 + sys_corr_39: -3.74324952e+00 + sys_corr_40: 4.00771613e+01 + sys_corr_41: 8.73479755e+00 + sys_corr_42: 1.20955200e+01 + sys_corr_43: 1.69572548e+02 + sys_corr_44: 7.91319077e+01 + sys_corr_45: -7.75903132e+01 + sys_corr_46: -5.82456305e+01 + sys_corr_47: -5.82129447e+01 + sys_corr_48: -1.29531329e+02 + sys_corr_49: -1.43900223e+02 + sys_corr_50: -1.64908128e+01 + sys_corr_51: -8.49587501e+00 + sys_corr_52: -1.76249408e+01 + sys_corr_53: -1.01480241e+01 + sys_corr_54: 3.91107220e+01 + sys_corr_55: 6.99844637e+01 + sys_corr_56: -1.33273436e+01 + sys_corr_57: 1.05329985e+01 + sys_corr_58: 1.66486572e+01 + sys_corr_59: 3.61592433e+01 + sys_corr_60: -9.55582047e+00 + sys_corr_61: -1.63303797e+01 + sys_corr_62: 1.08334874e+01 + sys_corr_63: 2.98151838e+01 + sys_corr_64: -1.88332905e+01 + sys_corr_65: -1.86533185e+00 + sys_corr_66: -1.70662828e+01 + sys_corr_67: 1.36048927e+01 + sys_corr_68: -9.29112373e+00 + sys_corr_69: 1.20239030e+00 + sys_corr_70: -3.37351184e+00 + sys_corr_71: 1.38534428e+01 + sys_corr_72: -1.73869562e+00 + sys_corr_73: 5.55950340e+00 + sys_corr_74: 1.72415955e+01 + sys_corr_75: -9.83128138e-01 + sys_corr_76: -7.58558138e+00 + sys_corr_77: 3.19760126e-01 + sys_corr_78: 2.06818079e-01 + sys_corr_79: -1.41484506e+00 + sys_corr_80: -3.93805722e+00 + sys_corr_81: -1.19860500e-01 + sys_corr_82: 2.74082752e+00 + sys_corr_83: 4.37827598e+00 + sys_corr_84: 3.74057488e+00 + sys_corr_85: -6.45654162e-01 + sys_corr_86: 2.10329207e+00 + sys_corr_87: 4.22853299e+00 + sys_corr_88: 1.06039087e+01 + sys_corr_89: -1.80013925e-01 + sys_corr_90: -3.84373767e+00 + sys_corr_91: 4.89036425e+00 + sys_corr_92: -4.94152787e-01 + sys_corr_93: 1.42663740e-01 + sys_corr_94: 6.81110326e-01 + sys_corr_95: -3.96523366e-01 + sys_corr_96: -1.22542432e-01 + sys_corr_97: -6.24193533e-01 + sys_corr_98: -1.52037629e-01 + sys_corr_99: -1.87176126e-01 + sys_corr_100: -1.33274739e-01 + sys_corr_101: -8.21655613e-02 + sys_corr_102: -9.82694331e-01 + sys_corr_103: -5.96367721e-01 + sys_corr_104: 8.14212035e-01 + sys_corr_105: -1.57814799e-01 + sys_corr_106: -2.49652300e-01 + sys_corr_107: -2.34227381e-01 + sys_corr_108: 2.74222856e-02 + sys_corr_109: 3.52034172e-02 + sys_corr_110: -2.97605755e-01 + sys_corr_111: 2.65981880e-02 + sys_corr_112: 1.15783719e-01 + sys_corr_113: 3.44970213e-02 + sys_corr_114: 1.13907478e-03 + sys_corr_115: 1.65200148e-01 + sys_corr_116: 7.46492022e-02 + sys_corr_117: 6.47347407e-02 + sys_corr_118: -6.17618630e-02 + sys_corr_119: -5.48811419e-04 + sys_corr_120: -4.04314546e-02 + sys_corr_121: 4.00292385e-03 + sys_corr_122: -3.38013522e-02 + sys_corr_123: -1.18243173e-02 + sys_corr_124: 1.34898776e-01 + sys_corr_125: 3.76345582e-02 + sys_corr_126: -9.13805052e-03 + sys_corr_127: 2.29088736e-02 + sys_corr_128: -1.56252113e-01 + sys_corr_129: 1.08657027e-02 + sys_corr_130: -1.92139347e-03 + sys_corr_131: 3.11207585e-02 + sys_corr_132: 6.85147699e-03 stat: 0.0 - luminosity: 477.209722 -- sys_corr_1: 175.16830985780254 - sys_corr_2: 47.96828818419096 - sys_corr_3: -42.37720677112887 - sys_corr_4: -186.865036231338 - sys_corr_5: -46.14945458352419 - sys_corr_6: -7.188282425338567 - sys_corr_7: 92.30422418956098 - sys_corr_8: 94.51640719938074 - sys_corr_9: 123.88097076093798 - sys_corr_10: 34.8204748875462 - sys_corr_11: 130.36681660476592 - sys_corr_12: 153.57502017309298 - sys_corr_13: -119.10960304011711 - sys_corr_14: 21.65318514724588 - sys_corr_15: 28.972242043235045 - sys_corr_16: -15.38414737623134 - sys_corr_17: 19.561099838598366 - sys_corr_18: -20.86054142013569 - sys_corr_19: -24.766772260303977 - sys_corr_20: -43.62520473701615 - sys_corr_21: -29.89241723524797 - sys_corr_22: -55.92644286033238 - sys_corr_23: 14.89822921083702 - sys_corr_24: 178.40219427143313 - sys_corr_25: 51.56858511208312 - sys_corr_26: 105.58983266050882 - sys_corr_27: 17.474216090688447 - sys_corr_28: 16.906812391183003 - sys_corr_29: -45.856682803687086 - sys_corr_30: 32.86081944868886 - sys_corr_31: -88.19177192976356 - sys_corr_32: 9.55946199319394 - sys_corr_33: -5.315749473612533 - sys_corr_34: 11.550533084414132 - sys_corr_35: 11.712124915651888 - sys_corr_36: 10.004608677735078 - sys_corr_37: -9.80387692403117 - sys_corr_38: -7.281201655899739 - sys_corr_39: 4.726599156369056 - sys_corr_40: 9.475899765982563 - sys_corr_41: -27.90274704997805 - sys_corr_42: 45.703968696991545 - sys_corr_43: -67.3843688203253 - sys_corr_44: 19.092450781790355 - sys_corr_45: 28.564500384226786 - sys_corr_46: 73.6869975923187 - sys_corr_47: -61.266099478011476 - sys_corr_48: -17.991353128606146 - sys_corr_49: 96.62238430952851 - sys_corr_50: 166.6326559991657 - sys_corr_51: 83.85376844223032 - sys_corr_52: -124.71655514950173 - sys_corr_53: -22.401853125507184 - sys_corr_54: 38.38710843748847 - sys_corr_55: 44.323211902242676 - sys_corr_56: 21.835772734431288 - sys_corr_57: -38.14699577368121 - sys_corr_58: 1.0397087811358643 - sys_corr_59: 21.90162634964033 - sys_corr_60: 5.889205702380167 - sys_corr_61: -4.570158746630841 - sys_corr_62: -2.090448997691792 - sys_corr_63: -25.48876729813382 - sys_corr_64: -19.600767915662978 - sys_corr_65: -18.253533229810575 - sys_corr_66: 5.979754943691017 - sys_corr_67: -10.403435806482983 - sys_corr_68: -5.687803227980188 - sys_corr_69: 18.989231657600254 - sys_corr_70: -2.026038010096724 - sys_corr_71: 13.990503545986309 - sys_corr_72: 75.47166215248478 - sys_corr_73: -1.5618776773270384 - sys_corr_74: 7.639175547340021 - sys_corr_75: 2.0713971515828886 - sys_corr_76: -4.250999709845047 - sys_corr_77: -0.1474493864565717 - sys_corr_78: -0.8182341326979023 - sys_corr_79: -4.121039482451198 - sys_corr_80: 0.8228118445281881 - sys_corr_81: 0.3512864442706657 - sys_corr_82: -1.0503945942971762 - sys_corr_83: 6.606379797403253 - sys_corr_84: -1.20086080209438 - sys_corr_85: 2.5687090232727154 - sys_corr_86: 7.225228145154779 - sys_corr_87: 2.028603583263653 - sys_corr_88: 5.243212016720235 - sys_corr_89: 0.2633580423779213 - sys_corr_90: 3.4441869551490516 - sys_corr_91: -2.3799667386945775 - sys_corr_92: -1.271813165217675 - sys_corr_93: 0.4354072601650355 - sys_corr_94: 2.4756079959982347 - sys_corr_95: -2.9790919745848035 - sys_corr_96: -0.1603406463603095 - sys_corr_97: -1.4165308044517306 - sys_corr_98: -0.6704785367800188 - sys_corr_99: -0.4273855412788754 - sys_corr_100: -0.23137784211372744 - sys_corr_101: 0.09874226130150308 - sys_corr_102: -1.4651704469415454 - sys_corr_103: -0.647200715925194 - sys_corr_104: 1.3661221013394627 - sys_corr_105: -0.2616227012703169 - sys_corr_106: -0.3958327185837324 - sys_corr_107: -0.8054379392098456 - sys_corr_108: 0.39282664910112725 - sys_corr_109: 0.30323823882934703 - sys_corr_110: -0.3101784734337031 - sys_corr_111: 0.22149415483066384 - sys_corr_112: 0.30618723872491777 - sys_corr_113: 0.11074287613870853 - sys_corr_114: 0.003251447919685757 - sys_corr_115: 0.25797903098187663 - sys_corr_116: 0.06998109055461614 - sys_corr_117: 0.06363979122352462 - sys_corr_118: 0.062103304320470974 - sys_corr_119: -0.00867509820542017 - sys_corr_120: -0.04267201070443964 - sys_corr_121: -0.0011816635542716866 - sys_corr_122: -0.041188187115295746 - sys_corr_123: -0.017174797268234853 - sys_corr_124: 0.1422875174825961 - sys_corr_125: 0.03907981154678511 - sys_corr_126: -0.012154274521345976 - sys_corr_127: -0.20210872312930322 - sys_corr_128: -0.25784975909542995 - sys_corr_129: 0.006322992912900827 - sys_corr_130: -0.00280574303886586 - sys_corr_131: 0.029254194337492913 - sys_corr_132: 0.02715420388937516 + luminosity: 4.77209722e+02 +- sys_corr_1: 1.75168310e+02 + sys_corr_2: 4.79682882e+01 + sys_corr_3: -4.23772068e+01 + sys_corr_4: -1.86865036e+02 + sys_corr_5: -4.61494546e+01 + sys_corr_6: -7.18828243e+00 + sys_corr_7: 9.23042242e+01 + sys_corr_8: 9.45164072e+01 + sys_corr_9: 1.23880971e+02 + sys_corr_10: 3.48204749e+01 + sys_corr_11: 1.30366817e+02 + sys_corr_12: 1.53575020e+02 + sys_corr_13: -1.19109603e+02 + sys_corr_14: 2.16531851e+01 + sys_corr_15: 2.89722420e+01 + sys_corr_16: -1.53841474e+01 + sys_corr_17: 1.95610998e+01 + sys_corr_18: -2.08605414e+01 + sys_corr_19: -2.47667723e+01 + sys_corr_20: -4.36252047e+01 + sys_corr_21: -2.98924172e+01 + sys_corr_22: -5.59264429e+01 + sys_corr_23: 1.48982292e+01 + sys_corr_24: 1.78402194e+02 + sys_corr_25: 5.15685851e+01 + sys_corr_26: 1.05589833e+02 + sys_corr_27: 1.74742161e+01 + sys_corr_28: 1.69068124e+01 + sys_corr_29: -4.58566828e+01 + sys_corr_30: 3.28608194e+01 + sys_corr_31: -8.81917719e+01 + sys_corr_32: 9.55946199e+00 + sys_corr_33: -5.31574947e+00 + sys_corr_34: 1.15505331e+01 + sys_corr_35: 1.17121249e+01 + sys_corr_36: 1.00046087e+01 + sys_corr_37: -9.80387692e+00 + sys_corr_38: -7.28120166e+00 + sys_corr_39: 4.72659916e+00 + sys_corr_40: 9.47589977e+00 + sys_corr_41: -2.79027470e+01 + sys_corr_42: 4.57039687e+01 + sys_corr_43: -6.73843688e+01 + sys_corr_44: 1.90924508e+01 + sys_corr_45: 2.85645004e+01 + sys_corr_46: 7.36869976e+01 + sys_corr_47: -6.12660995e+01 + sys_corr_48: -1.79913531e+01 + sys_corr_49: 9.66223843e+01 + sys_corr_50: 1.66632656e+02 + sys_corr_51: 8.38537684e+01 + sys_corr_52: -1.24716555e+02 + sys_corr_53: -2.24018531e+01 + sys_corr_54: 3.83871084e+01 + sys_corr_55: 4.43232119e+01 + sys_corr_56: 2.18357727e+01 + sys_corr_57: -3.81469958e+01 + sys_corr_58: 1.03970878e+00 + sys_corr_59: 2.19016263e+01 + sys_corr_60: 5.88920570e+00 + sys_corr_61: -4.57015875e+00 + sys_corr_62: -2.09044900e+00 + sys_corr_63: -2.54887673e+01 + sys_corr_64: -1.96007679e+01 + sys_corr_65: -1.82535332e+01 + sys_corr_66: 5.97975494e+00 + sys_corr_67: -1.04034358e+01 + sys_corr_68: -5.68780323e+00 + sys_corr_69: 1.89892317e+01 + sys_corr_70: -2.02603801e+00 + sys_corr_71: 1.39905035e+01 + sys_corr_72: 7.54716622e+01 + sys_corr_73: -1.56187768e+00 + sys_corr_74: 7.63917555e+00 + sys_corr_75: 2.07139715e+00 + sys_corr_76: -4.25099971e+00 + sys_corr_77: -1.47449386e-01 + sys_corr_78: -8.18234133e-01 + sys_corr_79: -4.12103948e+00 + sys_corr_80: 8.22811845e-01 + sys_corr_81: 3.51286444e-01 + sys_corr_82: -1.05039459e+00 + sys_corr_83: 6.60637980e+00 + sys_corr_84: -1.20086080e+00 + sys_corr_85: 2.56870902e+00 + sys_corr_86: 7.22522815e+00 + sys_corr_87: 2.02860358e+00 + sys_corr_88: 5.24321202e+00 + sys_corr_89: 2.63358042e-01 + sys_corr_90: 3.44418696e+00 + sys_corr_91: -2.37996674e+00 + sys_corr_92: -1.27181317e+00 + sys_corr_93: 4.35407260e-01 + sys_corr_94: 2.47560800e+00 + sys_corr_95: -2.97909197e+00 + sys_corr_96: -1.60340646e-01 + sys_corr_97: -1.41653080e+00 + sys_corr_98: -6.70478537e-01 + sys_corr_99: -4.27385541e-01 + sys_corr_100: -2.31377842e-01 + sys_corr_101: 9.87422613e-02 + sys_corr_102: -1.46517045e+00 + sys_corr_103: -6.47200716e-01 + sys_corr_104: 1.36612210e+00 + sys_corr_105: -2.61622701e-01 + sys_corr_106: -3.95832719e-01 + sys_corr_107: -8.05437939e-01 + sys_corr_108: 3.92826649e-01 + sys_corr_109: 3.03238239e-01 + sys_corr_110: -3.10178473e-01 + sys_corr_111: 2.21494155e-01 + sys_corr_112: 3.06187239e-01 + sys_corr_113: 1.10742876e-01 + sys_corr_114: 3.25144792e-03 + sys_corr_115: 2.57979031e-01 + sys_corr_116: 6.99810906e-02 + sys_corr_117: 6.36397912e-02 + sys_corr_118: 6.21033043e-02 + sys_corr_119: -8.67509821e-03 + sys_corr_120: -4.26720107e-02 + sys_corr_121: -1.18166355e-03 + sys_corr_122: -4.11881871e-02 + sys_corr_123: -1.71747973e-02 + sys_corr_124: 1.42287517e-01 + sys_corr_125: 3.90798115e-02 + sys_corr_126: -1.21542745e-02 + sys_corr_127: -2.02108723e-01 + sys_corr_128: -2.57849759e-01 + sys_corr_129: 6.32299291e-03 + sys_corr_130: -2.80574304e-03 + sys_corr_131: 2.92541943e-02 + sys_corr_132: 2.71542039e-02 stat: 0.0 - luminosity: 424.158086 -- sys_corr_1: 146.16300864490364 - sys_corr_2: 45.660213283288975 - sys_corr_3: -38.79945391933611 - sys_corr_4: -215.18471240026074 - sys_corr_5: -25.715422462991114 - sys_corr_6: -11.52061966462487 - sys_corr_7: 70.68982263956546 - sys_corr_8: 89.22923036153881 - sys_corr_9: 136.6686394864555 - sys_corr_10: 35.81428256669957 - sys_corr_11: 118.51400921459532 - sys_corr_12: 137.93616175873308 - sys_corr_13: -111.99866249770795 - sys_corr_14: 23.549445910299795 - sys_corr_15: 28.93182532651579 - sys_corr_16: -13.371509428731413 - sys_corr_17: 22.962847283066363 - sys_corr_18: -16.604413536001747 - sys_corr_19: -30.250455323342543 - sys_corr_20: -42.09988517168446 - sys_corr_21: -30.697132668930028 - sys_corr_22: -94.14100337317404 - sys_corr_23: 2.8325706027421984 - sys_corr_24: 147.77015467482502 - sys_corr_25: 33.743758468168075 - sys_corr_26: 56.35010776571643 - sys_corr_27: 0.48714244948146695 - sys_corr_28: 46.0380743282337 - sys_corr_29: -44.597881973812584 - sys_corr_30: -43.871545428243195 - sys_corr_31: -142.72640591817776 - sys_corr_32: 12.583972473113656 - sys_corr_33: -2.27511250126066 - sys_corr_34: 32.42767213693043 - sys_corr_35: 13.487075458493486 - sys_corr_36: 11.407042470772069 - sys_corr_37: 3.903291649709207 - sys_corr_38: -2.6293701037438244 - sys_corr_39: 5.935617481627228 - sys_corr_40: -3.4801236575492824 - sys_corr_41: 1.0098807403089594 - sys_corr_42: 2.0377248127699232 - sys_corr_43: 32.11995301345434 - sys_corr_44: -51.76166294857395 - sys_corr_45: -20.43746258422204 - sys_corr_46: -30.42548919580634 - sys_corr_47: 41.36288401099507 - sys_corr_48: -65.74410293094398 - sys_corr_49: 52.22403130550321 - sys_corr_50: -12.606323820730918 - sys_corr_51: 67.49297428891298 - sys_corr_52: 40.50965420895072 - sys_corr_53: 78.45035293208771 - sys_corr_54: 25.232107083150144 - sys_corr_55: -207.38622450934358 - sys_corr_56: -31.46001842061186 - sys_corr_57: -18.014272145489272 - sys_corr_58: -38.92685821344535 - sys_corr_59: 15.549373347994507 - sys_corr_60: 16.41245176874338 - sys_corr_61: -16.981602313857056 - sys_corr_62: -37.46320215246059 - sys_corr_63: 19.744982075026243 - sys_corr_64: -0.5347060837925662 - sys_corr_65: -3.365949146962862 - sys_corr_66: 14.025647069812699 - sys_corr_67: 18.738833958660084 - sys_corr_68: -2.7863976964322497 - sys_corr_69: 0.6434639109971685 - sys_corr_70: -19.741218000278803 - sys_corr_71: 6.140215159494131 - sys_corr_72: -1.50347465410764 - sys_corr_73: 8.228491296948942 - sys_corr_74: -53.24143197384954 - sys_corr_75: 7.686147364203033 - sys_corr_76: -4.551029251977507 - sys_corr_77: 1.5546782345069636 - sys_corr_78: -7.353012169538352 - sys_corr_79: -4.0399330380967395 - sys_corr_80: -14.913907816775788 - sys_corr_81: -2.990719068177347 - sys_corr_82: 6.021048517683155 - sys_corr_83: -10.597302958120075 - sys_corr_84: 2.4644106214578647 - sys_corr_85: 8.831042176547657 - sys_corr_86: 10.799878258786656 - sys_corr_87: 6.77757359312454 - sys_corr_88: -1.8525501275458596 - sys_corr_89: 2.736256958384397 - sys_corr_90: -4.20489690543441 - sys_corr_91: 0.1622456172046683 - sys_corr_92: -16.264124217593906 - sys_corr_93: 0.1561348548884359 - sys_corr_94: 0.7866461167669958 - sys_corr_95: -2.7424556660626327 - sys_corr_96: -0.07540335262166208 - sys_corr_97: -0.9487304866844971 - sys_corr_98: -0.32812249400501226 - sys_corr_99: 0.04617160460854896 - sys_corr_100: -0.02559979990029423 - sys_corr_101: 0.22960739978021752 - sys_corr_102: 1.2760669438085888 - sys_corr_103: -2.416633848360434 - sys_corr_104: -0.19841073182231111 - sys_corr_105: -0.04382201934930996 - sys_corr_106: 0.027876575219716485 - sys_corr_107: -0.19972995727732443 - sys_corr_108: 0.4204435378442275 - sys_corr_109: 0.13140010639690097 - sys_corr_110: -0.22748185576027685 - sys_corr_111: -0.032861504393729 - sys_corr_112: 0.15856193132075433 - sys_corr_113: 0.06417361442283422 - sys_corr_114: 0.003202722333779688 - sys_corr_115: 0.27829094302141816 - sys_corr_116: 0.03071582761867601 - sys_corr_117: 0.03664313445170949 - sys_corr_118: 0.27602758178729025 - sys_corr_119: -0.0076088832294319685 - sys_corr_120: -0.016294353443643314 - sys_corr_121: 0.005525739184985106 - sys_corr_122: 0.018492325724486343 - sys_corr_123: 0.015105039323911527 - sys_corr_124: 0.09532677088382688 - sys_corr_125: -0.006957334697213489 - sys_corr_126: 0.004617880299001034 - sys_corr_127: -0.4589404676160277 - sys_corr_128: -0.3876602373731096 - sys_corr_129: -0.02031277867545216 - sys_corr_130: -0.0027248316948778363 - sys_corr_131: 0.005638785350058258 - sys_corr_132: 0.04310477201521813 + luminosity: 4.24158086e+02 +- sys_corr_1: 1.46163009e+02 + sys_corr_2: 4.56602133e+01 + sys_corr_3: -3.87994539e+01 + sys_corr_4: -2.15184712e+02 + sys_corr_5: -2.57154225e+01 + sys_corr_6: -1.15206197e+01 + sys_corr_7: 7.06898226e+01 + sys_corr_8: 8.92292304e+01 + sys_corr_9: 1.36668639e+02 + sys_corr_10: 3.58142826e+01 + sys_corr_11: 1.18514009e+02 + sys_corr_12: 1.37936162e+02 + sys_corr_13: -1.11998662e+02 + sys_corr_14: 2.35494459e+01 + sys_corr_15: 2.89318253e+01 + sys_corr_16: -1.33715094e+01 + sys_corr_17: 2.29628473e+01 + sys_corr_18: -1.66044135e+01 + sys_corr_19: -3.02504553e+01 + sys_corr_20: -4.20998852e+01 + sys_corr_21: -3.06971327e+01 + sys_corr_22: -9.41410034e+01 + sys_corr_23: 2.83257060e+00 + sys_corr_24: 1.47770155e+02 + sys_corr_25: 3.37437585e+01 + sys_corr_26: 5.63501078e+01 + sys_corr_27: 4.87142449e-01 + sys_corr_28: 4.60380743e+01 + sys_corr_29: -4.45978820e+01 + sys_corr_30: -4.38715454e+01 + sys_corr_31: -1.42726406e+02 + sys_corr_32: 1.25839725e+01 + sys_corr_33: -2.27511250e+00 + sys_corr_34: 3.24276721e+01 + sys_corr_35: 1.34870755e+01 + sys_corr_36: 1.14070425e+01 + sys_corr_37: 3.90329165e+00 + sys_corr_38: -2.62937010e+00 + sys_corr_39: 5.93561748e+00 + sys_corr_40: -3.48012366e+00 + sys_corr_41: 1.00988074e+00 + sys_corr_42: 2.03772481e+00 + sys_corr_43: 3.21199530e+01 + sys_corr_44: -5.17616629e+01 + sys_corr_45: -2.04374626e+01 + sys_corr_46: -3.04254892e+01 + sys_corr_47: 4.13628840e+01 + sys_corr_48: -6.57441029e+01 + sys_corr_49: 5.22240313e+01 + sys_corr_50: -1.26063238e+01 + sys_corr_51: 6.74929743e+01 + sys_corr_52: 4.05096542e+01 + sys_corr_53: 7.84503529e+01 + sys_corr_54: 2.52321071e+01 + sys_corr_55: -2.07386225e+02 + sys_corr_56: -3.14600184e+01 + sys_corr_57: -1.80142721e+01 + sys_corr_58: -3.89268582e+01 + sys_corr_59: 1.55493733e+01 + sys_corr_60: 1.64124518e+01 + sys_corr_61: -1.69816023e+01 + sys_corr_62: -3.74632022e+01 + sys_corr_63: 1.97449821e+01 + sys_corr_64: -5.34706084e-01 + sys_corr_65: -3.36594915e+00 + sys_corr_66: 1.40256471e+01 + sys_corr_67: 1.87388340e+01 + sys_corr_68: -2.78639770e+00 + sys_corr_69: 6.43463911e-01 + sys_corr_70: -1.97412180e+01 + sys_corr_71: 6.14021516e+00 + sys_corr_72: -1.50347465e+00 + sys_corr_73: 8.22849130e+00 + sys_corr_74: -5.32414320e+01 + sys_corr_75: 7.68614736e+00 + sys_corr_76: -4.55102925e+00 + sys_corr_77: 1.55467823e+00 + sys_corr_78: -7.35301217e+00 + sys_corr_79: -4.03993304e+00 + sys_corr_80: -1.49139078e+01 + sys_corr_81: -2.99071907e+00 + sys_corr_82: 6.02104852e+00 + sys_corr_83: -1.05973030e+01 + sys_corr_84: 2.46441062e+00 + sys_corr_85: 8.83104218e+00 + sys_corr_86: 1.07998783e+01 + sys_corr_87: 6.77757359e+00 + sys_corr_88: -1.85255013e+00 + sys_corr_89: 2.73625696e+00 + sys_corr_90: -4.20489691e+00 + sys_corr_91: 1.62245617e-01 + sys_corr_92: -1.62641242e+01 + sys_corr_93: 1.56134855e-01 + sys_corr_94: 7.86646117e-01 + sys_corr_95: -2.74245567e+00 + sys_corr_96: -7.54033526e-02 + sys_corr_97: -9.48730487e-01 + sys_corr_98: -3.28122494e-01 + sys_corr_99: 4.61716046e-02 + sys_corr_100: -2.55997999e-02 + sys_corr_101: 2.29607400e-01 + sys_corr_102: 1.27606694e+00 + sys_corr_103: -2.41663385e+00 + sys_corr_104: -1.98410732e-01 + sys_corr_105: -4.38220193e-02 + sys_corr_106: 2.78765752e-02 + sys_corr_107: -1.99729957e-01 + sys_corr_108: 4.20443538e-01 + sys_corr_109: 1.31400106e-01 + sys_corr_110: -2.27481856e-01 + sys_corr_111: -3.28615044e-02 + sys_corr_112: 1.58561931e-01 + sys_corr_113: 6.41736144e-02 + sys_corr_114: 3.20272233e-03 + sys_corr_115: 2.78290943e-01 + sys_corr_116: 3.07158276e-02 + sys_corr_117: 3.66431345e-02 + sys_corr_118: 2.76027582e-01 + sys_corr_119: -7.60888323e-03 + sys_corr_120: -1.62943534e-02 + sys_corr_121: 5.52573918e-03 + sys_corr_122: 1.84923257e-02 + sys_corr_123: 1.51050393e-02 + sys_corr_124: 9.53267709e-02 + sys_corr_125: -6.95733470e-03 + sys_corr_126: 4.61788030e-03 + sys_corr_127: -4.58940468e-01 + sys_corr_128: -3.87660237e-01 + sys_corr_129: -2.03127787e-02 + sys_corr_130: -2.72483169e-03 + sys_corr_131: 5.63878535e-03 + sys_corr_132: 4.31047720e-02 stat: 0.0 - luminosity: 364.184744 -- sys_corr_1: 120.3819596733025 - sys_corr_2: 40.888602604871586 - sys_corr_3: -32.0389396607436 - sys_corr_4: -216.62827698900375 - sys_corr_5: -1.9323275348478568 - sys_corr_6: -17.014773877514802 - sys_corr_7: 33.33081953861136 - sys_corr_8: 65.18009680361888 - sys_corr_9: 103.30449200770386 - sys_corr_10: 29.147573719256282 - sys_corr_11: 80.97417062840574 - sys_corr_12: 78.87717155851242 - sys_corr_13: -73.40245012172483 - sys_corr_14: 10.862301538429465 - sys_corr_15: 22.578740375431284 - sys_corr_16: -16.068868497944003 - sys_corr_17: 18.9672198373924 - sys_corr_18: -9.417367243866236 - sys_corr_19: -23.74760508532053 - sys_corr_20: -41.3427586253501 - sys_corr_21: -35.28317841606401 - sys_corr_22: -107.75570406660863 - sys_corr_23: -5.809809488890927 - sys_corr_24: 167.5677475709627 - sys_corr_25: 29.50462310161928 - sys_corr_26: 38.39894753567375 - sys_corr_27: 14.7410650998828 - sys_corr_28: 46.592179762973075 - sys_corr_29: -25.293181214345108 - sys_corr_30: -32.03225030248658 - sys_corr_31: -135.92138345588728 - sys_corr_32: 21.97051477788004 - sys_corr_33: 1.609367509295602 - sys_corr_34: 10.345240985395785 - sys_corr_35: 10.371541845974127 - sys_corr_36: 35.6919292792198 - sys_corr_37: -32.07183218595258 - sys_corr_38: -20.39048608400961 - sys_corr_39: 5.630233930136144 - sys_corr_40: -28.717063799115277 - sys_corr_41: 20.920044417541305 - sys_corr_42: 18.768700484523762 - sys_corr_43: -35.142243182839564 - sys_corr_44: 8.330764625414421 - sys_corr_45: 24.815155343981985 - sys_corr_46: 27.854561609973892 - sys_corr_47: -1.4229470585311976 - sys_corr_48: 6.873220849410676 - sys_corr_49: -15.60956758227753 - sys_corr_50: -21.818281459064604 - sys_corr_51: -29.06247588447348 - sys_corr_52: 25.158199880055214 - sys_corr_53: -24.264794173691207 - sys_corr_54: -22.26811647386153 - sys_corr_55: 54.952480394830715 - sys_corr_56: -27.090710486916397 - sys_corr_57: 14.968800284711051 - sys_corr_58: -27.915492774447593 - sys_corr_59: -108.33483680307882 - sys_corr_60: 27.736188170577446 - sys_corr_61: 84.36746195519027 - sys_corr_62: -10.234480266947733 - sys_corr_63: -0.7485344835893506 - sys_corr_64: 116.30033656863345 - sys_corr_65: -59.71428185352949 - sys_corr_66: -51.323831247674576 - sys_corr_67: -86.92642934405329 - sys_corr_68: 6.895848439404933 - sys_corr_69: 4.868782012645976 - sys_corr_70: -45.09195717552027 - sys_corr_71: -33.84226220412457 - sys_corr_72: -33.31168255080692 - sys_corr_73: 21.68507974695324 - sys_corr_74: -26.00785875784813 - sys_corr_75: 10.609447999496021 - sys_corr_76: -23.7015583139114 - sys_corr_77: -8.13001411607168 - sys_corr_78: -3.5278648842104574 - sys_corr_79: -9.375305031478185 - sys_corr_80: -22.839645600758736 - sys_corr_81: -18.484452612684052 - sys_corr_82: 9.520945660983378 - sys_corr_83: 3.3747459607428003 - sys_corr_84: 0.8335046836999023 - sys_corr_85: 8.767785576183492 - sys_corr_86: 5.732514663454687 - sys_corr_87: 25.156385116107753 - sys_corr_88: -9.438539092508787 - sys_corr_89: 0.9478442241792325 - sys_corr_90: -5.528789198637877 - sys_corr_91: 0.401541582105545 - sys_corr_92: -1.6728753770786875 - sys_corr_93: -0.7499662657724003 - sys_corr_94: -3.859788252034069 - sys_corr_95: -2.1228889503132446 - sys_corr_96: 0.2785157340636551 - sys_corr_97: -1.8733576754957 - sys_corr_98: -0.17360739506163536 - sys_corr_99: 0.2838213955363282 - sys_corr_100: -0.19247197497942647 - sys_corr_101: -0.6814904588957874 - sys_corr_102: -0.289040911957292 - sys_corr_103: -5.188017047941342 - sys_corr_104: 0.43598295941381815 - sys_corr_105: -0.47171427986900955 - sys_corr_106: -0.2229649588860528 - sys_corr_107: -0.4604233113522428 - sys_corr_108: 0.141928133562174 - sys_corr_109: 0.15671589685635626 - sys_corr_110: -0.6373889251948852 - sys_corr_111: -0.03982733606491682 - sys_corr_112: 0.21496826523685816 - sys_corr_113: -0.036908265063451316 - sys_corr_114: 0.0018561610255071132 - sys_corr_115: 0.20587632625281999 - sys_corr_116: 0.05958266591201148 - sys_corr_117: 0.06497613357425927 - sys_corr_118: 0.13180707736305833 - sys_corr_119: -0.008405175979222414 - sys_corr_120: -0.039632023886212134 - sys_corr_121: -0.003947766120781796 - sys_corr_122: -0.03872698071594093 - sys_corr_123: -0.013823475355245191 - sys_corr_124: 0.13295276316428098 - sys_corr_125: 0.03044755493065745 - sys_corr_126: -0.006417449680988377 - sys_corr_127: -0.36010417393180005 - sys_corr_128: -0.61656473686521 - sys_corr_129: 0.1493519537863143 - sys_corr_130: -0.016324150756484922 - sys_corr_131: 0.028308905759390487 - sys_corr_132: 0.12234916226271336 + luminosity: 3.64184744e+02 +- sys_corr_1: 1.20381960e+02 + sys_corr_2: 4.08886026e+01 + sys_corr_3: -3.20389397e+01 + sys_corr_4: -2.16628277e+02 + sys_corr_5: -1.93232753e+00 + sys_corr_6: -1.70147739e+01 + sys_corr_7: 3.33308195e+01 + sys_corr_8: 6.51800968e+01 + sys_corr_9: 1.03304492e+02 + sys_corr_10: 2.91475737e+01 + sys_corr_11: 8.09741706e+01 + sys_corr_12: 7.88771716e+01 + sys_corr_13: -7.34024501e+01 + sys_corr_14: 1.08623015e+01 + sys_corr_15: 2.25787404e+01 + sys_corr_16: -1.60688685e+01 + sys_corr_17: 1.89672198e+01 + sys_corr_18: -9.41736724e+00 + sys_corr_19: -2.37476051e+01 + sys_corr_20: -4.13427586e+01 + sys_corr_21: -3.52831784e+01 + sys_corr_22: -1.07755704e+02 + sys_corr_23: -5.80980949e+00 + sys_corr_24: 1.67567748e+02 + sys_corr_25: 2.95046231e+01 + sys_corr_26: 3.83989475e+01 + sys_corr_27: 1.47410651e+01 + sys_corr_28: 4.65921798e+01 + sys_corr_29: -2.52931812e+01 + sys_corr_30: -3.20322503e+01 + sys_corr_31: -1.35921383e+02 + sys_corr_32: 2.19705148e+01 + sys_corr_33: 1.60936751e+00 + sys_corr_34: 1.03452410e+01 + sys_corr_35: 1.03715418e+01 + sys_corr_36: 3.56919293e+01 + sys_corr_37: -3.20718322e+01 + sys_corr_38: -2.03904861e+01 + sys_corr_39: 5.63023393e+00 + sys_corr_40: -2.87170638e+01 + sys_corr_41: 2.09200444e+01 + sys_corr_42: 1.87687005e+01 + sys_corr_43: -3.51422432e+01 + sys_corr_44: 8.33076463e+00 + sys_corr_45: 2.48151553e+01 + sys_corr_46: 2.78545616e+01 + sys_corr_47: -1.42294706e+00 + sys_corr_48: 6.87322085e+00 + sys_corr_49: -1.56095676e+01 + sys_corr_50: -2.18182815e+01 + sys_corr_51: -2.90624759e+01 + sys_corr_52: 2.51581999e+01 + sys_corr_53: -2.42647942e+01 + sys_corr_54: -2.22681165e+01 + sys_corr_55: 5.49524804e+01 + sys_corr_56: -2.70907105e+01 + sys_corr_57: 1.49688003e+01 + sys_corr_58: -2.79154928e+01 + sys_corr_59: -1.08334837e+02 + sys_corr_60: 2.77361882e+01 + sys_corr_61: 8.43674620e+01 + sys_corr_62: -1.02344803e+01 + sys_corr_63: -7.48534484e-01 + sys_corr_64: 1.16300337e+02 + sys_corr_65: -5.97142819e+01 + sys_corr_66: -5.13238312e+01 + sys_corr_67: -8.69264293e+01 + sys_corr_68: 6.89584844e+00 + sys_corr_69: 4.86878201e+00 + sys_corr_70: -4.50919572e+01 + sys_corr_71: -3.38422622e+01 + sys_corr_72: -3.33116826e+01 + sys_corr_73: 2.16850797e+01 + sys_corr_74: -2.60078588e+01 + sys_corr_75: 1.06094480e+01 + sys_corr_76: -2.37015583e+01 + sys_corr_77: -8.13001412e+00 + sys_corr_78: -3.52786488e+00 + sys_corr_79: -9.37530503e+00 + sys_corr_80: -2.28396456e+01 + sys_corr_81: -1.84844526e+01 + sys_corr_82: 9.52094566e+00 + sys_corr_83: 3.37474596e+00 + sys_corr_84: 8.33504684e-01 + sys_corr_85: 8.76778558e+00 + sys_corr_86: 5.73251466e+00 + sys_corr_87: 2.51563851e+01 + sys_corr_88: -9.43853909e+00 + sys_corr_89: 9.47844224e-01 + sys_corr_90: -5.52878920e+00 + sys_corr_91: 4.01541582e-01 + sys_corr_92: -1.67287538e+00 + sys_corr_93: -7.49966266e-01 + sys_corr_94: -3.85978825e+00 + sys_corr_95: -2.12288895e+00 + sys_corr_96: 2.78515734e-01 + sys_corr_97: -1.87335768e+00 + sys_corr_98: -1.73607395e-01 + sys_corr_99: 2.83821396e-01 + sys_corr_100: -1.92471975e-01 + sys_corr_101: -6.81490459e-01 + sys_corr_102: -2.89040912e-01 + sys_corr_103: -5.18801705e+00 + sys_corr_104: 4.35982959e-01 + sys_corr_105: -4.71714280e-01 + sys_corr_106: -2.22964959e-01 + sys_corr_107: -4.60423311e-01 + sys_corr_108: 1.41928134e-01 + sys_corr_109: 1.56715897e-01 + sys_corr_110: -6.37388925e-01 + sys_corr_111: -3.98273361e-02 + sys_corr_112: 2.14968265e-01 + sys_corr_113: -3.69082651e-02 + sys_corr_114: 1.85616103e-03 + sys_corr_115: 2.05876326e-01 + sys_corr_116: 5.95826659e-02 + sys_corr_117: 6.49761336e-02 + sys_corr_118: 1.31807077e-01 + sys_corr_119: -8.40517598e-03 + sys_corr_120: -3.96320239e-02 + sys_corr_121: -3.94776612e-03 + sys_corr_122: -3.87269807e-02 + sys_corr_123: -1.38234754e-02 + sys_corr_124: 1.32952763e-01 + sys_corr_125: 3.04475549e-02 + sys_corr_126: -6.41744968e-03 + sys_corr_127: -3.60104174e-01 + sys_corr_128: -6.16564737e-01 + sys_corr_129: 1.49351954e-01 + sys_corr_130: -1.63241508e-02 + sys_corr_131: 2.83089058e-02 + sys_corr_132: 1.22349162e-01 stat: 0.0 - luminosity: 303.01161 -- sys_corr_1: 100.52961269415165 - sys_corr_2: 49.499091852651446 - sys_corr_3: -17.877455110455234 - sys_corr_4: -192.8431737230306 - sys_corr_5: 10.101651685537185 - sys_corr_6: -22.526586794633776 - sys_corr_7: -1.2060004602230439 - sys_corr_8: 45.389858120847876 - sys_corr_9: 79.57918262376258 - sys_corr_10: 28.053554555829965 - sys_corr_11: 53.03625993657659 - sys_corr_12: 41.725180383355166 - sys_corr_13: -56.1357678575536 - sys_corr_14: -0.09149989935916678 - sys_corr_15: 16.033201971751474 - sys_corr_16: -14.903975325599646 - sys_corr_17: 11.3767855879098 - sys_corr_18: -11.470402388778284 - sys_corr_19: -20.73644740019673 - sys_corr_20: -40.70522327573389 - sys_corr_21: -28.30212441511769 - sys_corr_22: -105.71745352826615 - sys_corr_23: -7.9097698589141645 - sys_corr_24: 183.95884883228373 - sys_corr_25: 5.132896013664944 - sys_corr_26: 2.9224184782108344 - sys_corr_27: 31.951142962527936 - sys_corr_28: 42.2980167556938 - sys_corr_29: -11.710803420888938 - sys_corr_30: -8.47663291249431 - sys_corr_31: -127.64268441909843 - sys_corr_32: 27.35305959194509 - sys_corr_33: 3.553973718711284 - sys_corr_34: -7.618444551176095 - sys_corr_35: 15.17824212561035 - sys_corr_36: 36.357158476201135 - sys_corr_37: -46.91849888018307 - sys_corr_38: -31.810016770379764 - sys_corr_39: 4.318306848162375 - sys_corr_40: -47.19507476436933 - sys_corr_41: 11.091057701168824 - sys_corr_42: 2.777539321350181 - sys_corr_43: -68.25685822075322 - sys_corr_44: -0.2850583881269116 - sys_corr_45: 27.339613132992834 - sys_corr_46: 35.673726056559325 - sys_corr_47: -1.889279140030935 - sys_corr_48: 45.70163448238526 - sys_corr_49: -6.176107571205371 - sys_corr_50: -34.33198504019625 - sys_corr_51: -60.431626821066644 - sys_corr_52: 22.53226103871947 - sys_corr_53: -1.0862825060807937 - sys_corr_54: -20.349180312790192 - sys_corr_55: 31.179045763013868 - sys_corr_56: 24.090755469891885 - sys_corr_57: 4.081643039271074 - sys_corr_58: 27.2007217450419 - sys_corr_59: 39.301396653475315 - sys_corr_60: -30.31362415359149 - sys_corr_61: -53.73475560906758 - sys_corr_62: 9.099642101736306 - sys_corr_63: -31.6814936898001 - sys_corr_64: -143.95584876077183 - sys_corr_65: 26.883706945271427 - sys_corr_66: 72.87605851100349 - sys_corr_67: -26.31082411899388 - sys_corr_68: 35.78468669322591 - sys_corr_69: -20.571452047035965 - sys_corr_70: -39.68989413873467 - sys_corr_71: -24.996508346286195 - sys_corr_72: -89.88416820810188 - sys_corr_73: 11.71359975654127 - sys_corr_74: 7.924915880449 - sys_corr_75: 6.88019367540799 - sys_corr_76: -8.075094033128558 - sys_corr_77: -6.424770468446473 - sys_corr_78: 1.8321259801529353 - sys_corr_79: 1.7100421918711073 - sys_corr_80: -42.22005297501269 - sys_corr_81: -20.498155500445474 - sys_corr_82: 10.171612347914888 - sys_corr_83: 2.4574828556376977 - sys_corr_84: 2.548922123710722 - sys_corr_85: 9.165632256209848 - sys_corr_86: 2.6278706388796342 - sys_corr_87: 12.406792760024384 - sys_corr_88: 25.54811583132154 - sys_corr_89: 4.211625528871486 - sys_corr_90: -5.374334229714109 - sys_corr_91: 0.29752204356833084 - sys_corr_92: -2.9230882776215883 - sys_corr_93: -0.7534371416730603 - sys_corr_94: -3.499290258544013 - sys_corr_95: 0.4222775562533463 - sys_corr_96: 0.3471724507198536 - sys_corr_97: -0.9924169514099443 - sys_corr_98: 0.3113636897959209 - sys_corr_99: 0.6188126503429181 - sys_corr_100: -0.5384334818873912 - sys_corr_101: -0.979162359151293 - sys_corr_102: 0.043148832633499355 - sys_corr_103: -5.689995085735877 - sys_corr_104: -0.14428485880921244 - sys_corr_105: -0.6081039180979523 - sys_corr_106: -0.5183290273907636 - sys_corr_107: -0.5392083475681593 - sys_corr_108: 0.1909255231237175 - sys_corr_109: 0.02487179781524566 - sys_corr_110: -0.400863528000359 - sys_corr_111: -0.13105704193545142 - sys_corr_112: 0.02947947963686167 - sys_corr_113: -0.1333398447050753 - sys_corr_114: -0.002220360836151704 - sys_corr_115: 0.17335054083895424 - sys_corr_116: 0.046497214521341666 - sys_corr_117: 0.055365148489088134 - sys_corr_118: 0.05326280512430644 - sys_corr_119: -0.0052694244176062196 - sys_corr_120: -0.034846199287727926 - sys_corr_121: -0.008791667189382455 - sys_corr_122: -0.06941298065532957 - sys_corr_123: -0.03829478711210889 - sys_corr_124: 0.07320560366464164 - sys_corr_125: 0.0569748361484698 - sys_corr_126: -0.014433009047226998 - sys_corr_127: -0.36314028774600166 - sys_corr_128: -1.0284810836068894 - sys_corr_129: -0.1672469657021765 - sys_corr_130: -0.003871471985243923 - sys_corr_131: 0.03661227487313309 - sys_corr_132: 0.06332084052910662 + luminosity: 3.03011610e+02 +- sys_corr_1: 1.00529613e+02 + sys_corr_2: 4.94990919e+01 + sys_corr_3: -1.78774551e+01 + sys_corr_4: -1.92843174e+02 + sys_corr_5: 1.01016517e+01 + sys_corr_6: -2.25265868e+01 + sys_corr_7: -1.20600046e+00 + sys_corr_8: 4.53898581e+01 + sys_corr_9: 7.95791826e+01 + sys_corr_10: 2.80535546e+01 + sys_corr_11: 5.30362599e+01 + sys_corr_12: 4.17251804e+01 + sys_corr_13: -5.61357679e+01 + sys_corr_14: -9.14998994e-02 + sys_corr_15: 1.60332020e+01 + sys_corr_16: -1.49039753e+01 + sys_corr_17: 1.13767856e+01 + sys_corr_18: -1.14704024e+01 + sys_corr_19: -2.07364474e+01 + sys_corr_20: -4.07052233e+01 + sys_corr_21: -2.83021244e+01 + sys_corr_22: -1.05717454e+02 + sys_corr_23: -7.90976986e+00 + sys_corr_24: 1.83958849e+02 + sys_corr_25: 5.13289601e+00 + sys_corr_26: 2.92241848e+00 + sys_corr_27: 3.19511430e+01 + sys_corr_28: 4.22980168e+01 + sys_corr_29: -1.17108034e+01 + sys_corr_30: -8.47663291e+00 + sys_corr_31: -1.27642684e+02 + sys_corr_32: 2.73530596e+01 + sys_corr_33: 3.55397372e+00 + sys_corr_34: -7.61844455e+00 + sys_corr_35: 1.51782421e+01 + sys_corr_36: 3.63571585e+01 + sys_corr_37: -4.69184989e+01 + sys_corr_38: -3.18100168e+01 + sys_corr_39: 4.31830685e+00 + sys_corr_40: -4.71950748e+01 + sys_corr_41: 1.10910577e+01 + sys_corr_42: 2.77753932e+00 + sys_corr_43: -6.82568582e+01 + sys_corr_44: -2.85058388e-01 + sys_corr_45: 2.73396131e+01 + sys_corr_46: 3.56737261e+01 + sys_corr_47: -1.88927914e+00 + sys_corr_48: 4.57016345e+01 + sys_corr_49: -6.17610757e+00 + sys_corr_50: -3.43319850e+01 + sys_corr_51: -6.04316268e+01 + sys_corr_52: 2.25322610e+01 + sys_corr_53: -1.08628251e+00 + sys_corr_54: -2.03491803e+01 + sys_corr_55: 3.11790458e+01 + sys_corr_56: 2.40907555e+01 + sys_corr_57: 4.08164304e+00 + sys_corr_58: 2.72007217e+01 + sys_corr_59: 3.93013967e+01 + sys_corr_60: -3.03136242e+01 + sys_corr_61: -5.37347556e+01 + sys_corr_62: 9.09964210e+00 + sys_corr_63: -3.16814937e+01 + sys_corr_64: -1.43955849e+02 + sys_corr_65: 2.68837069e+01 + sys_corr_66: 7.28760585e+01 + sys_corr_67: -2.63108241e+01 + sys_corr_68: 3.57846867e+01 + sys_corr_69: -2.05714520e+01 + sys_corr_70: -3.96898941e+01 + sys_corr_71: -2.49965083e+01 + sys_corr_72: -8.98841682e+01 + sys_corr_73: 1.17135998e+01 + sys_corr_74: 7.92491588e+00 + sys_corr_75: 6.88019368e+00 + sys_corr_76: -8.07509403e+00 + sys_corr_77: -6.42477047e+00 + sys_corr_78: 1.83212598e+00 + sys_corr_79: 1.71004219e+00 + sys_corr_80: -4.22200530e+01 + sys_corr_81: -2.04981555e+01 + sys_corr_82: 1.01716123e+01 + sys_corr_83: 2.45748286e+00 + sys_corr_84: 2.54892212e+00 + sys_corr_85: 9.16563226e+00 + sys_corr_86: 2.62787064e+00 + sys_corr_87: 1.24067928e+01 + sys_corr_88: 2.55481158e+01 + sys_corr_89: 4.21162553e+00 + sys_corr_90: -5.37433423e+00 + sys_corr_91: 2.97522044e-01 + sys_corr_92: -2.92308828e+00 + sys_corr_93: -7.53437142e-01 + sys_corr_94: -3.49929026e+00 + sys_corr_95: 4.22277556e-01 + sys_corr_96: 3.47172451e-01 + sys_corr_97: -9.92416951e-01 + sys_corr_98: 3.11363690e-01 + sys_corr_99: 6.18812650e-01 + sys_corr_100: -5.38433482e-01 + sys_corr_101: -9.79162359e-01 + sys_corr_102: 4.31488326e-02 + sys_corr_103: -5.68999509e+00 + sys_corr_104: -1.44284859e-01 + sys_corr_105: -6.08103918e-01 + sys_corr_106: -5.18329027e-01 + sys_corr_107: -5.39208348e-01 + sys_corr_108: 1.90925523e-01 + sys_corr_109: 2.48717978e-02 + sys_corr_110: -4.00863528e-01 + sys_corr_111: -1.31057042e-01 + sys_corr_112: 2.94794796e-02 + sys_corr_113: -1.33339845e-01 + sys_corr_114: -2.22036084e-03 + sys_corr_115: 1.73350541e-01 + sys_corr_116: 4.64972145e-02 + sys_corr_117: 5.53651485e-02 + sys_corr_118: 5.32628051e-02 + sys_corr_119: -5.26942442e-03 + sys_corr_120: -3.48461993e-02 + sys_corr_121: -8.79166719e-03 + sys_corr_122: -6.94129807e-02 + sys_corr_123: -3.82947871e-02 + sys_corr_124: 7.32056037e-02 + sys_corr_125: 5.69748361e-02 + sys_corr_126: -1.44330090e-02 + sys_corr_127: -3.63140288e-01 + sys_corr_128: -1.02848108e+00 + sys_corr_129: -1.67246966e-01 + sys_corr_130: -3.87147199e-03 + sys_corr_131: 3.66122749e-02 + sys_corr_132: 6.33208405e-02 stat: 0.0 - luminosity: 242.285516 -- sys_corr_1: 78.19255199692739 - sys_corr_2: 44.779687677349465 - sys_corr_3: -4.12658370642883 - sys_corr_4: -141.62017108808342 - sys_corr_5: 15.696920414001713 - sys_corr_6: -19.3974237740337 - sys_corr_7: -29.76783108382735 - sys_corr_8: 20.615238455858456 - sys_corr_9: 39.97344201187885 - sys_corr_10: 20.72730577825643 - sys_corr_11: 22.212892639236472 - sys_corr_12: 0.8793862127613489 - sys_corr_13: -30.159260678332757 - sys_corr_14: -4.631178720248801 - sys_corr_15: 8.067330488985183 - sys_corr_16: -15.872468530921092 - sys_corr_17: 8.63564148425657 - sys_corr_18: -5.853876222337071 - sys_corr_19: -13.946602260813025 - sys_corr_20: -33.55696939616694 - sys_corr_21: -20.88899437842728 - sys_corr_22: -86.94789645223935 - sys_corr_23: -7.476112291354251 - sys_corr_24: 197.3464444601935 - sys_corr_25: 0.9939754389659393 - sys_corr_26: -3.536835300833012 - sys_corr_27: 42.33448451780433 - sys_corr_28: 23.460953458438823 - sys_corr_29: -12.050730217635882 - sys_corr_30: 37.766725356046926 - sys_corr_31: -105.07706974597399 - sys_corr_32: 26.969854627245553 - sys_corr_33: -2.4893054953227485 - sys_corr_34: -14.853355531423547 - sys_corr_35: 11.578052614866099 - sys_corr_36: 27.838712650638705 - sys_corr_37: -36.823322483892646 - sys_corr_38: -25.657607050416157 - sys_corr_39: -1.2227056069145956 - sys_corr_40: -40.95812238835446 - sys_corr_41: -2.866221364549234 - sys_corr_42: -5.156976763417907 - sys_corr_43: -57.17756188767285 - sys_corr_44: 18.324722545763315 - sys_corr_45: 17.912387621472874 - sys_corr_46: 24.951909335107988 - sys_corr_47: 4.958749596279092 - sys_corr_48: 51.401294163669554 - sys_corr_49: -25.551399685585725 - sys_corr_50: -52.511219782267986 - sys_corr_51: -72.936847902241 - sys_corr_52: 46.934759417028985 - sys_corr_53: 8.018318158360673 - sys_corr_54: -29.028808031804097 - sys_corr_55: -1.0793667007343146 - sys_corr_56: 21.51521143816571 - sys_corr_57: 24.757286384267328 - sys_corr_58: -1.3034717359295827 - sys_corr_59: -23.685468242331186 - sys_corr_60: -15.827250503759284 - sys_corr_61: -34.04323891249458 - sys_corr_62: -24.501792816653182 - sys_corr_63: -11.743123215744253 - sys_corr_64: 36.98112992486345 - sys_corr_65: 27.989465695244192 - sys_corr_66: -58.07618181003475 - sys_corr_67: 107.65426617743681 - sys_corr_68: -19.58106233134323 - sys_corr_69: 19.749098611387073 - sys_corr_70: 73.86328523241434 - sys_corr_71: 54.32726067148749 - sys_corr_72: 95.1814312971106 - sys_corr_73: -41.82553186722039 - sys_corr_74: 38.020568435571 - sys_corr_75: -3.5706959104378337 - sys_corr_76: 41.721322443614945 - sys_corr_77: 2.1262886488200747 - sys_corr_78: 3.386693056667332 - sys_corr_79: 5.769949777281187 - sys_corr_80: -41.33615536486737 - sys_corr_81: -7.596068024115773 - sys_corr_82: -2.025754622844526 - sys_corr_83: -5.634477725392982 - sys_corr_84: 2.2969187283017405 - sys_corr_85: -0.9026180295433917 - sys_corr_86: 24.678326943439004 - sys_corr_87: -18.029307050824805 - sys_corr_88: 21.270552481158116 - sys_corr_89: 5.997993871800029 - sys_corr_90: 3.57291199613729 - sys_corr_91: -1.8483770089099978 - sys_corr_92: -24.959710824822192 - sys_corr_93: -0.5351000067805031 - sys_corr_94: -1.0636238051462266 - sys_corr_95: 1.399012463607612 - sys_corr_96: 0.2516530030291641 - sys_corr_97: 0.7426205448496167 - sys_corr_98: 0.804759475141932 - sys_corr_99: 1.0303065288367523 - sys_corr_100: -0.576770965211959 - sys_corr_101: -0.9750812346350163 - sys_corr_102: -0.19702765463158242 - sys_corr_103: -6.53375966355248 - sys_corr_104: -0.2895714768504823 - sys_corr_105: -0.8453469649984781 - sys_corr_106: -0.6302660931227476 - sys_corr_107: -0.7942570866362533 - sys_corr_108: -0.2051441454098573 - sys_corr_109: -0.08184095661768552 - sys_corr_110: -0.072292202755018 - sys_corr_111: -0.44421529923621533 - sys_corr_112: -0.17724997789357444 - sys_corr_113: -0.16077093981058949 - sys_corr_114: -0.005438091338185529 - sys_corr_115: -0.054604652916463534 - sys_corr_116: 0.013230131591630247 - sys_corr_117: 0.018613620763381303 - sys_corr_118: -0.09662419306985606 - sys_corr_119: 0.0144286847679891 - sys_corr_120: -0.015896032886942416 - sys_corr_121: -0.0035229236318142397 - sys_corr_122: -0.053171717009998246 - sys_corr_123: -0.03394860327179762 - sys_corr_124: -0.034227165097531785 - sys_corr_125: 0.056721373597556905 - sys_corr_126: -0.01644770753147904 - sys_corr_127: -0.10586561023851201 - sys_corr_128: -0.9373233132754462 - sys_corr_129: -0.27785596353429964 - sys_corr_130: 0.013679909601114 - sys_corr_131: 0.03293748836188593 - sys_corr_132: -0.11539713559789477 + luminosity: 2.42285516e+02 +- sys_corr_1: 7.81925520e+01 + sys_corr_2: 4.47796877e+01 + sys_corr_3: -4.12658371e+00 + sys_corr_4: -1.41620171e+02 + sys_corr_5: 1.56969204e+01 + sys_corr_6: -1.93974238e+01 + sys_corr_7: -2.97678311e+01 + sys_corr_8: 2.06152385e+01 + sys_corr_9: 3.99734420e+01 + sys_corr_10: 2.07273058e+01 + sys_corr_11: 2.22128926e+01 + sys_corr_12: 8.79386213e-01 + sys_corr_13: -3.01592607e+01 + sys_corr_14: -4.63117872e+00 + sys_corr_15: 8.06733049e+00 + sys_corr_16: -1.58724685e+01 + sys_corr_17: 8.63564148e+00 + sys_corr_18: -5.85387622e+00 + sys_corr_19: -1.39466023e+01 + sys_corr_20: -3.35569694e+01 + sys_corr_21: -2.08889944e+01 + sys_corr_22: -8.69478965e+01 + sys_corr_23: -7.47611229e+00 + sys_corr_24: 1.97346444e+02 + sys_corr_25: 9.93975439e-01 + sys_corr_26: -3.53683530e+00 + sys_corr_27: 4.23344845e+01 + sys_corr_28: 2.34609535e+01 + sys_corr_29: -1.20507302e+01 + sys_corr_30: 3.77667254e+01 + sys_corr_31: -1.05077070e+02 + sys_corr_32: 2.69698546e+01 + sys_corr_33: -2.48930550e+00 + sys_corr_34: -1.48533555e+01 + sys_corr_35: 1.15780526e+01 + sys_corr_36: 2.78387127e+01 + sys_corr_37: -3.68233225e+01 + sys_corr_38: -2.56576071e+01 + sys_corr_39: -1.22270561e+00 + sys_corr_40: -4.09581224e+01 + sys_corr_41: -2.86622136e+00 + sys_corr_42: -5.15697676e+00 + sys_corr_43: -5.71775619e+01 + sys_corr_44: 1.83247225e+01 + sys_corr_45: 1.79123876e+01 + sys_corr_46: 2.49519093e+01 + sys_corr_47: 4.95874960e+00 + sys_corr_48: 5.14012942e+01 + sys_corr_49: -2.55513997e+01 + sys_corr_50: -5.25112198e+01 + sys_corr_51: -7.29368479e+01 + sys_corr_52: 4.69347594e+01 + sys_corr_53: 8.01831816e+00 + sys_corr_54: -2.90288080e+01 + sys_corr_55: -1.07936670e+00 + sys_corr_56: 2.15152114e+01 + sys_corr_57: 2.47572864e+01 + sys_corr_58: -1.30347174e+00 + sys_corr_59: -2.36854682e+01 + sys_corr_60: -1.58272505e+01 + sys_corr_61: -3.40432389e+01 + sys_corr_62: -2.45017928e+01 + sys_corr_63: -1.17431232e+01 + sys_corr_64: 3.69811299e+01 + sys_corr_65: 2.79894657e+01 + sys_corr_66: -5.80761818e+01 + sys_corr_67: 1.07654266e+02 + sys_corr_68: -1.95810623e+01 + sys_corr_69: 1.97490986e+01 + sys_corr_70: 7.38632852e+01 + sys_corr_71: 5.43272607e+01 + sys_corr_72: 9.51814313e+01 + sys_corr_73: -4.18255319e+01 + sys_corr_74: 3.80205684e+01 + sys_corr_75: -3.57069591e+00 + sys_corr_76: 4.17213224e+01 + sys_corr_77: 2.12628865e+00 + sys_corr_78: 3.38669306e+00 + sys_corr_79: 5.76994978e+00 + sys_corr_80: -4.13361554e+01 + sys_corr_81: -7.59606802e+00 + sys_corr_82: -2.02575462e+00 + sys_corr_83: -5.63447773e+00 + sys_corr_84: 2.29691873e+00 + sys_corr_85: -9.02618030e-01 + sys_corr_86: 2.46783269e+01 + sys_corr_87: -1.80293071e+01 + sys_corr_88: 2.12705525e+01 + sys_corr_89: 5.99799387e+00 + sys_corr_90: 3.57291200e+00 + sys_corr_91: -1.84837701e+00 + sys_corr_92: -2.49597108e+01 + sys_corr_93: -5.35100007e-01 + sys_corr_94: -1.06362381e+00 + sys_corr_95: 1.39901246e+00 + sys_corr_96: 2.51653003e-01 + sys_corr_97: 7.42620545e-01 + sys_corr_98: 8.04759475e-01 + sys_corr_99: 1.03030653e+00 + sys_corr_100: -5.76770965e-01 + sys_corr_101: -9.75081235e-01 + sys_corr_102: -1.97027655e-01 + sys_corr_103: -6.53375966e+00 + sys_corr_104: -2.89571477e-01 + sys_corr_105: -8.45346965e-01 + sys_corr_106: -6.30266093e-01 + sys_corr_107: -7.94257087e-01 + sys_corr_108: -2.05144145e-01 + sys_corr_109: -8.18409566e-02 + sys_corr_110: -7.22922028e-02 + sys_corr_111: -4.44215299e-01 + sys_corr_112: -1.77249978e-01 + sys_corr_113: -1.60770940e-01 + sys_corr_114: -5.43809134e-03 + sys_corr_115: -5.46046529e-02 + sys_corr_116: 1.32301316e-02 + sys_corr_117: 1.86136208e-02 + sys_corr_118: -9.66241931e-02 + sys_corr_119: 1.44286848e-02 + sys_corr_120: -1.58960329e-02 + sys_corr_121: -3.52292363e-03 + sys_corr_122: -5.31717170e-02 + sys_corr_123: -3.39486033e-02 + sys_corr_124: -3.42271651e-02 + sys_corr_125: 5.67213736e-02 + sys_corr_126: -1.64477075e-02 + sys_corr_127: -1.05865610e-01 + sys_corr_128: -9.37323313e-01 + sys_corr_129: -2.77855964e-01 + sys_corr_130: 1.36799096e-02 + sys_corr_131: 3.29374884e-02 + sys_corr_132: -1.15397136e-01 stat: 0.0 - luminosity: 173.60336400000003 -- sys_corr_1: 46.05658654657153 - sys_corr_2: 34.6261508472797 - sys_corr_3: 1.2881307696322741 - sys_corr_4: -112.46749251949755 - sys_corr_5: 15.202049293789628 - sys_corr_6: -13.941892605382046 - sys_corr_7: -31.30555201800096 - sys_corr_8: 11.608015967801363 - sys_corr_9: 25.249911453682405 - sys_corr_10: 16.090065258520035 - sys_corr_11: 15.293082342457764 - sys_corr_12: -5.304962151401128 - sys_corr_13: -17.549803935639996 - sys_corr_14: -8.984317221809818 - sys_corr_15: 8.099546113011595 - sys_corr_16: -12.785560269619662 - sys_corr_17: 3.737389800796298 - sys_corr_18: -5.663036859273913 - sys_corr_19: -8.932503959304535 - sys_corr_20: -25.834238972629944 - sys_corr_21: -15.923166056574871 - sys_corr_22: -66.34953728024485 - sys_corr_23: -3.0004227447877017 - sys_corr_24: 162.49697890595354 - sys_corr_25: 6.712677121306253 - sys_corr_26: 1.2644453197982843 - sys_corr_27: 34.834995674812 - sys_corr_28: 13.091522330557225 - sys_corr_29: -6.354416515785032 - sys_corr_30: 35.35649114990297 - sys_corr_31: -71.34032935563425 - sys_corr_32: 16.286015945887396 - sys_corr_33: -2.0351847174970827 - sys_corr_34: -7.30970166070127 - sys_corr_35: 9.43893364261296 - sys_corr_36: 15.742262477577832 - sys_corr_37: -19.534934527862696 - sys_corr_38: -14.729176040596435 - sys_corr_39: 1.07846614742008 - sys_corr_40: -21.93144781194955 - sys_corr_41: -5.384673523780049 - sys_corr_42: -2.9270379981482995 - sys_corr_43: -28.58922681036305 - sys_corr_44: 10.653225042258644 - sys_corr_45: 11.719427835680222 - sys_corr_46: 10.59524627579492 - sys_corr_47: 2.651122630619389 - sys_corr_48: 26.593480474303885 - sys_corr_49: -12.73866905527067 - sys_corr_50: -20.28602122935071 - sys_corr_51: -28.882139717644243 - sys_corr_52: 14.434448389756554 - sys_corr_53: 0.3306034738289491 - sys_corr_54: -12.730036142899143 - sys_corr_55: -8.57968391889252 - sys_corr_56: 9.565060342393759 - sys_corr_57: 3.390226420094232 - sys_corr_58: 3.1107952463511426 - sys_corr_59: 5.994805623087941 - sys_corr_60: -8.29037011477549 - sys_corr_61: -15.065718158360783 - sys_corr_62: -2.852523367423661 - sys_corr_63: -9.128672499035346 - sys_corr_64: -4.038075134673369 - sys_corr_65: 10.770642818955649 - sys_corr_66: -14.365027862173596 - sys_corr_67: 14.749530955307092 - sys_corr_68: -6.286063089495261 - sys_corr_69: -5.924115657808297 - sys_corr_70: -0.6316057315559171 - sys_corr_71: 18.430809356774734 - sys_corr_72: -5.905656131390744 - sys_corr_73: 18.798617777821722 - sys_corr_74: -9.30543431105336 - sys_corr_75: -26.478770562637205 - sys_corr_76: -22.017844911188313 - sys_corr_77: 26.88182714555826 - sys_corr_78: -48.68972261113151 - sys_corr_79: -0.8158952298597447 - sys_corr_80: 183.70845857730998 - sys_corr_81: 19.700420307674598 - sys_corr_82: -3.1385068883640033 - sys_corr_83: -7.100057989178643 - sys_corr_84: 6.45341045627479 - sys_corr_85: 10.183629757090417 - sys_corr_86: -41.62536783204836 - sys_corr_87: 2.654006071601127 - sys_corr_88: -38.03730612856744 - sys_corr_89: -3.37707187466051 - sys_corr_90: -0.7855991349748069 - sys_corr_91: -0.446384924599169 - sys_corr_92: 37.907003059775214 - sys_corr_93: -0.9437238178101133 - sys_corr_94: -4.913232429917022 - sys_corr_95: -4.703451911359633 - sys_corr_96: 0.27107090656784477 - sys_corr_97: 1.9215051541773174 - sys_corr_98: 1.8630148354807052 - sys_corr_99: 2.182877710291224 - sys_corr_100: -1.1643778462110506 - sys_corr_101: -1.7851911203752555 - sys_corr_102: -0.7202940687742141 - sys_corr_103: -14.191404614568388 - sys_corr_104: -0.030410094512070635 - sys_corr_105: -1.348640326801711 - sys_corr_106: -0.9853745667115522 - sys_corr_107: -1.1057987285953528 - sys_corr_108: -0.29350227541116913 - sys_corr_109: -0.2067816241389575 - sys_corr_110: 0.3049940450801331 - sys_corr_111: -0.6009628900312532 - sys_corr_112: -0.22988745182013165 - sys_corr_113: -0.06530926374611785 - sys_corr_114: -0.004614824224981813 - sys_corr_115: -0.09642666700780682 - sys_corr_116: 0.02401174229353196 - sys_corr_117: 0.032191857554872035 - sys_corr_118: -0.26504034383921915 - sys_corr_119: 0.01357069054149926 - sys_corr_120: -0.030674356247845477 - sys_corr_121: -0.0065143061377912655 - sys_corr_122: -0.12107126201015017 - sys_corr_123: -0.058874316469790806 - sys_corr_124: -0.031021928240851 - sys_corr_125: 0.07943748432742255 - sys_corr_126: -0.021303306656286818 - sys_corr_127: 0.3014032893501744 - sys_corr_128: -1.6978625550169646 - sys_corr_129: -0.3817906695187203 - sys_corr_130: 0.012502292010819989 - sys_corr_131: 0.05689390738204886 - sys_corr_132: -0.10171985561182086 + luminosity: 1.73603364e+02 +- sys_corr_1: 4.60565865e+01 + sys_corr_2: 3.46261508e+01 + sys_corr_3: 1.28813077e+00 + sys_corr_4: -1.12467493e+02 + sys_corr_5: 1.52020493e+01 + sys_corr_6: -1.39418926e+01 + sys_corr_7: -3.13055520e+01 + sys_corr_8: 1.16080160e+01 + sys_corr_9: 2.52499115e+01 + sys_corr_10: 1.60900653e+01 + sys_corr_11: 1.52930823e+01 + sys_corr_12: -5.30496215e+00 + sys_corr_13: -1.75498039e+01 + sys_corr_14: -8.98431722e+00 + sys_corr_15: 8.09954611e+00 + sys_corr_16: -1.27855603e+01 + sys_corr_17: 3.73738980e+00 + sys_corr_18: -5.66303686e+00 + sys_corr_19: -8.93250396e+00 + sys_corr_20: -2.58342390e+01 + sys_corr_21: -1.59231661e+01 + sys_corr_22: -6.63495373e+01 + sys_corr_23: -3.00042274e+00 + sys_corr_24: 1.62496979e+02 + sys_corr_25: 6.71267712e+00 + sys_corr_26: 1.26444532e+00 + sys_corr_27: 3.48349957e+01 + sys_corr_28: 1.30915223e+01 + sys_corr_29: -6.35441652e+00 + sys_corr_30: 3.53564911e+01 + sys_corr_31: -7.13403294e+01 + sys_corr_32: 1.62860159e+01 + sys_corr_33: -2.03518472e+00 + sys_corr_34: -7.30970166e+00 + sys_corr_35: 9.43893364e+00 + sys_corr_36: 1.57422625e+01 + sys_corr_37: -1.95349345e+01 + sys_corr_38: -1.47291760e+01 + sys_corr_39: 1.07846615e+00 + sys_corr_40: -2.19314478e+01 + sys_corr_41: -5.38467352e+00 + sys_corr_42: -2.92703800e+00 + sys_corr_43: -2.85892268e+01 + sys_corr_44: 1.06532250e+01 + sys_corr_45: 1.17194278e+01 + sys_corr_46: 1.05952463e+01 + sys_corr_47: 2.65112263e+00 + sys_corr_48: 2.65934805e+01 + sys_corr_49: -1.27386691e+01 + sys_corr_50: -2.02860212e+01 + sys_corr_51: -2.88821397e+01 + sys_corr_52: 1.44344484e+01 + sys_corr_53: 3.30603474e-01 + sys_corr_54: -1.27300361e+01 + sys_corr_55: -8.57968392e+00 + sys_corr_56: 9.56506034e+00 + sys_corr_57: 3.39022642e+00 + sys_corr_58: 3.11079525e+00 + sys_corr_59: 5.99480562e+00 + sys_corr_60: -8.29037011e+00 + sys_corr_61: -1.50657182e+01 + sys_corr_62: -2.85252337e+00 + sys_corr_63: -9.12867250e+00 + sys_corr_64: -4.03807513e+00 + sys_corr_65: 1.07706428e+01 + sys_corr_66: -1.43650279e+01 + sys_corr_67: 1.47495310e+01 + sys_corr_68: -6.28606309e+00 + sys_corr_69: -5.92411566e+00 + sys_corr_70: -6.31605732e-01 + sys_corr_71: 1.84308094e+01 + sys_corr_72: -5.90565613e+00 + sys_corr_73: 1.87986178e+01 + sys_corr_74: -9.30543431e+00 + sys_corr_75: -2.64787706e+01 + sys_corr_76: -2.20178449e+01 + sys_corr_77: 2.68818271e+01 + sys_corr_78: -4.86897226e+01 + sys_corr_79: -8.15895230e-01 + sys_corr_80: 1.83708459e+02 + sys_corr_81: 1.97004203e+01 + sys_corr_82: -3.13850689e+00 + sys_corr_83: -7.10005799e+00 + sys_corr_84: 6.45341046e+00 + sys_corr_85: 1.01836298e+01 + sys_corr_86: -4.16253678e+01 + sys_corr_87: 2.65400607e+00 + sys_corr_88: -3.80373061e+01 + sys_corr_89: -3.37707187e+00 + sys_corr_90: -7.85599135e-01 + sys_corr_91: -4.46384925e-01 + sys_corr_92: 3.79070031e+01 + sys_corr_93: -9.43723818e-01 + sys_corr_94: -4.91323243e+00 + sys_corr_95: -4.70345191e+00 + sys_corr_96: 2.71070907e-01 + sys_corr_97: 1.92150515e+00 + sys_corr_98: 1.86301484e+00 + sys_corr_99: 2.18287771e+00 + sys_corr_100: -1.16437785e+00 + sys_corr_101: -1.78519112e+00 + sys_corr_102: -7.20294069e-01 + sys_corr_103: -1.41914046e+01 + sys_corr_104: -3.04100945e-02 + sys_corr_105: -1.34864033e+00 + sys_corr_106: -9.85374567e-01 + sys_corr_107: -1.10579873e+00 + sys_corr_108: -2.93502275e-01 + sys_corr_109: -2.06781624e-01 + sys_corr_110: 3.04994045e-01 + sys_corr_111: -6.00962890e-01 + sys_corr_112: -2.29887452e-01 + sys_corr_113: -6.53092637e-02 + sys_corr_114: -4.61482422e-03 + sys_corr_115: -9.64266670e-02 + sys_corr_116: 2.40117423e-02 + sys_corr_117: 3.21918576e-02 + sys_corr_118: -2.65040344e-01 + sys_corr_119: 1.35706905e-02 + sys_corr_120: -3.06743562e-02 + sys_corr_121: -6.51430614e-03 + sys_corr_122: -1.21071262e-01 + sys_corr_123: -5.88743165e-02 + sys_corr_124: -3.10219282e-02 + sys_corr_125: 7.94374843e-02 + sys_corr_126: -2.13033067e-02 + sys_corr_127: 3.01403289e-01 + sys_corr_128: -1.69786256e+00 + sys_corr_129: -3.81790670e-01 + sys_corr_130: 1.25022920e-02 + sys_corr_131: 5.68939074e-02 + sys_corr_132: -1.01719856e-01 stat: 0.0 - luminosity: 102.83460000000001 -- sys_corr_1: 16.78289353293156 - sys_corr_2: 11.35589887748273 - sys_corr_3: 2.1021592745259396 - sys_corr_4: -43.114242962146115 - sys_corr_5: 6.003495383001756 - sys_corr_6: -7.283156713741961 - sys_corr_7: -12.256496855251733 - sys_corr_8: 4.27352093318457 - sys_corr_9: 7.876175102583516 - sys_corr_10: 6.673705158125583 - sys_corr_11: 4.094117763379061 - sys_corr_12: -4.820788569128576 - sys_corr_13: -4.489097056969431 - sys_corr_14: -4.046112537939724 - sys_corr_15: 1.375642779719535 - sys_corr_16: -3.889042827480373 - sys_corr_17: 1.2013974441499184 - sys_corr_18: -0.31382456605755304 - sys_corr_19: -2.9236365036881495 - sys_corr_20: -10.978228733653019 - sys_corr_21: -6.586834286778621 - sys_corr_22: -24.5016898807591 - sys_corr_23: -2.876392436300381 - sys_corr_24: 65.17667341297972 - sys_corr_25: 3.946290710015918 - sys_corr_26: -0.5048604829038368 - sys_corr_27: 13.929492501624233 - sys_corr_28: 6.179533323318608 - sys_corr_29: -3.27378032009548 - sys_corr_30: 13.748407586608332 - sys_corr_31: -26.876808881011705 - sys_corr_32: 6.092072216530821 - sys_corr_33: -0.7649771599645537 - sys_corr_34: -2.9216470259815632 - sys_corr_35: 2.369972942167905 - sys_corr_36: 4.631816966948313 - sys_corr_37: -6.459326525287557 - sys_corr_38: -4.99789391498456 - sys_corr_39: -0.453137290072458 - sys_corr_40: -6.033087163477533 - sys_corr_41: -1.9980175624163574 - sys_corr_42: -1.4714475198062746 - sys_corr_43: -8.578869478550503 - sys_corr_44: 3.3914819226246053 - sys_corr_45: 3.0684179932274893 - sys_corr_46: 3.920135265709639 - sys_corr_47: 0.4434710719882635 - sys_corr_48: 8.63115655097393 - sys_corr_49: -3.193910794427924 - sys_corr_50: -5.331914986352208 - sys_corr_51: -8.105253567045873 - sys_corr_52: 4.351059412596506 - sys_corr_53: 0.3956198480909584 - sys_corr_54: -3.4641099387212684 - sys_corr_55: -3.8204855021890074 - sys_corr_56: 2.1812890008559647 - sys_corr_57: 1.9652339173845013 - sys_corr_58: 1.213256437326051 - sys_corr_59: -0.5334293929409261 - sys_corr_60: -1.92353774999927 - sys_corr_61: -1.92923752989769 - sys_corr_62: 1.0563078977734845 - sys_corr_63: -2.0132353087043207 - sys_corr_64: 2.1990761456827315 - sys_corr_65: 1.3836234643548067 - sys_corr_66: -3.4765469842102186 - sys_corr_67: 1.46629545415312 - sys_corr_68: -0.8625213461252988 - sys_corr_69: -0.6066992203119461 - sys_corr_70: 1.261531030680064 - sys_corr_71: -0.39503528519026376 - sys_corr_72: -3.1137243114417332 - sys_corr_73: 1.662645356897005 - sys_corr_74: 0.11705086608706396 - sys_corr_75: -2.367312387840983 - sys_corr_76: -2.548206120555637 - sys_corr_77: 1.6261261163193736 - sys_corr_78: -0.8560358947599489 - sys_corr_79: -0.42693585794069466 - sys_corr_80: 12.900603475909854 - sys_corr_81: 1.3041908202119896 - sys_corr_82: -0.6440523380429558 - sys_corr_83: -0.6296708698565789 - sys_corr_84: -1.6658296302515432 - sys_corr_85: -0.8881380869267708 - sys_corr_86: -5.455179420098088 - sys_corr_87: -0.43956584822794614 - sys_corr_88: -4.447557110178939 - sys_corr_89: -3.9178052268620984 - sys_corr_90: -0.5123516685703605 - sys_corr_91: -1.1681485653362162 - sys_corr_92: 4.52011297624813 - sys_corr_93: 2.131397548639737 - sys_corr_94: 11.20481725715163 - sys_corr_95: -2.2455855202794828 - sys_corr_96: -1.6169517054774187 - sys_corr_97: -0.9429681835704246 - sys_corr_98: -7.007204402825501 - sys_corr_99: -7.872838508649177 - sys_corr_100: -1.9917539742707755 - sys_corr_101: -4.062122935166236 - sys_corr_102: 15.42402418083918 - sys_corr_103: 131.21293414244172 - sys_corr_104: -21.16000011934973 - sys_corr_105: -2.6023344462265947 - sys_corr_106: -1.6963105032411288 - sys_corr_107: -2.0277209648685 - sys_corr_108: 0.1715182525859547 - sys_corr_109: -0.27549086649033744 - sys_corr_110: 3.3279099315977683 - sys_corr_111: 0.3972229603363296 - sys_corr_112: -0.09317903426525363 - sys_corr_113: -0.30629142125632935 - sys_corr_114: -0.006888067765772804 - sys_corr_115: -0.10842149599001046 - sys_corr_116: 0.009918358768594185 - sys_corr_117: 0.022547742257603764 - sys_corr_118: -0.2609019697708898 - sys_corr_119: 0.013677805155231702 - sys_corr_120: -0.03952496247067843 - sys_corr_121: -0.017986796017781248 - sys_corr_122: -0.15197973297359738 - sys_corr_123: -0.08857480128220196 - sys_corr_124: -0.04161791091812028 - sys_corr_125: 0.11106109714258436 - sys_corr_126: -0.03669198491819626 - sys_corr_127: -4.117571607482476 - sys_corr_128: 0.8871918195066743 - sys_corr_129: -0.05229940311461383 - sys_corr_130: 0.0019371452525509315 - sys_corr_131: 0.0610208562876771 - sys_corr_132: -0.051881117280274995 + luminosity: 1.02834600e+02 +- sys_corr_1: 1.67828935e+01 + sys_corr_2: 1.13558989e+01 + sys_corr_3: 2.10215927e+00 + sys_corr_4: -4.31142430e+01 + sys_corr_5: 6.00349538e+00 + sys_corr_6: -7.28315671e+00 + sys_corr_7: -1.22564969e+01 + sys_corr_8: 4.27352093e+00 + sys_corr_9: 7.87617510e+00 + sys_corr_10: 6.67370516e+00 + sys_corr_11: 4.09411776e+00 + sys_corr_12: -4.82078857e+00 + sys_corr_13: -4.48909706e+00 + sys_corr_14: -4.04611254e+00 + sys_corr_15: 1.37564278e+00 + sys_corr_16: -3.88904283e+00 + sys_corr_17: 1.20139744e+00 + sys_corr_18: -3.13824566e-01 + sys_corr_19: -2.92363650e+00 + sys_corr_20: -1.09782287e+01 + sys_corr_21: -6.58683429e+00 + sys_corr_22: -2.45016899e+01 + sys_corr_23: -2.87639244e+00 + sys_corr_24: 6.51766734e+01 + sys_corr_25: 3.94629071e+00 + sys_corr_26: -5.04860483e-01 + sys_corr_27: 1.39294925e+01 + sys_corr_28: 6.17953332e+00 + sys_corr_29: -3.27378032e+00 + sys_corr_30: 1.37484076e+01 + sys_corr_31: -2.68768089e+01 + sys_corr_32: 6.09207222e+00 + sys_corr_33: -7.64977160e-01 + sys_corr_34: -2.92164703e+00 + sys_corr_35: 2.36997294e+00 + sys_corr_36: 4.63181697e+00 + sys_corr_37: -6.45932653e+00 + sys_corr_38: -4.99789391e+00 + sys_corr_39: -4.53137290e-01 + sys_corr_40: -6.03308716e+00 + sys_corr_41: -1.99801756e+00 + sys_corr_42: -1.47144752e+00 + sys_corr_43: -8.57886948e+00 + sys_corr_44: 3.39148192e+00 + sys_corr_45: 3.06841799e+00 + sys_corr_46: 3.92013527e+00 + sys_corr_47: 4.43471072e-01 + sys_corr_48: 8.63115655e+00 + sys_corr_49: -3.19391079e+00 + sys_corr_50: -5.33191499e+00 + sys_corr_51: -8.10525357e+00 + sys_corr_52: 4.35105941e+00 + sys_corr_53: 3.95619848e-01 + sys_corr_54: -3.46410994e+00 + sys_corr_55: -3.82048550e+00 + sys_corr_56: 2.18128900e+00 + sys_corr_57: 1.96523392e+00 + sys_corr_58: 1.21325644e+00 + sys_corr_59: -5.33429393e-01 + sys_corr_60: -1.92353775e+00 + sys_corr_61: -1.92923753e+00 + sys_corr_62: 1.05630790e+00 + sys_corr_63: -2.01323531e+00 + sys_corr_64: 2.19907615e+00 + sys_corr_65: 1.38362346e+00 + sys_corr_66: -3.47654698e+00 + sys_corr_67: 1.46629545e+00 + sys_corr_68: -8.62521346e-01 + sys_corr_69: -6.06699220e-01 + sys_corr_70: 1.26153103e+00 + sys_corr_71: -3.95035285e-01 + sys_corr_72: -3.11372431e+00 + sys_corr_73: 1.66264536e+00 + sys_corr_74: 1.17050866e-01 + sys_corr_75: -2.36731239e+00 + sys_corr_76: -2.54820612e+00 + sys_corr_77: 1.62612612e+00 + sys_corr_78: -8.56035895e-01 + sys_corr_79: -4.26935858e-01 + sys_corr_80: 1.29006035e+01 + sys_corr_81: 1.30419082e+00 + sys_corr_82: -6.44052338e-01 + sys_corr_83: -6.29670870e-01 + sys_corr_84: -1.66582963e+00 + sys_corr_85: -8.88138087e-01 + sys_corr_86: -5.45517942e+00 + sys_corr_87: -4.39565848e-01 + sys_corr_88: -4.44755711e+00 + sys_corr_89: -3.91780523e+00 + sys_corr_90: -5.12351669e-01 + sys_corr_91: -1.16814857e+00 + sys_corr_92: 4.52011298e+00 + sys_corr_93: 2.13139755e+00 + sys_corr_94: 1.12048173e+01 + sys_corr_95: -2.24558552e+00 + sys_corr_96: -1.61695171e+00 + sys_corr_97: -9.42968184e-01 + sys_corr_98: -7.00720440e+00 + sys_corr_99: -7.87283851e+00 + sys_corr_100: -1.99175397e+00 + sys_corr_101: -4.06212294e+00 + sys_corr_102: 1.54240242e+01 + sys_corr_103: 1.31212934e+02 + sys_corr_104: -2.11600001e+01 + sys_corr_105: -2.60233445e+00 + sys_corr_106: -1.69631050e+00 + sys_corr_107: -2.02772096e+00 + sys_corr_108: 1.71518253e-01 + sys_corr_109: -2.75490866e-01 + sys_corr_110: 3.32790993e+00 + sys_corr_111: 3.97222960e-01 + sys_corr_112: -9.31790343e-02 + sys_corr_113: -3.06291421e-01 + sys_corr_114: -6.88806777e-03 + sys_corr_115: -1.08421496e-01 + sys_corr_116: 9.91835877e-03 + sys_corr_117: 2.25477423e-02 + sys_corr_118: -2.60901970e-01 + sys_corr_119: 1.36778052e-02 + sys_corr_120: -3.95249625e-02 + sys_corr_121: -1.79867960e-02 + sys_corr_122: -1.51979733e-01 + sys_corr_123: -8.85748013e-02 + sys_corr_124: -4.16179109e-02 + sys_corr_125: 1.11061097e-01 + sys_corr_126: -3.66919849e-02 + sys_corr_127: -4.11757161e+00 + sys_corr_128: 8.87191820e-01 + sys_corr_129: -5.22994031e-02 + sys_corr_130: 1.93714525e-03 + sys_corr_131: 6.10208563e-02 + sys_corr_132: -5.18811173e-02 stat: 0.0 - luminosity: 35.797410000000006 -- sys_corr_1: 132.7836793233347 - sys_corr_2: 13.925521424414837 - sys_corr_3: 13.214456824197065 - sys_corr_4: 27.792295877317564 - sys_corr_5: -70.47692695223326 - sys_corr_6: -85.78969483333042 - sys_corr_7: 12.766980519265037 - sys_corr_8: 4.6154376188182065 - sys_corr_9: -7.813212564858955 - sys_corr_10: 10.032212301587416 - sys_corr_11: 27.387563505530412 - sys_corr_12: 45.31603396011806 - sys_corr_13: -31.798774113379853 - sys_corr_14: 4.957742522812082 - sys_corr_15: 19.787017103243112 - sys_corr_16: -6.352600507449342 - sys_corr_17: -12.057198640426616 - sys_corr_18: -4.162735424676812 - sys_corr_19: 6.403273526458643 - sys_corr_20: 4.240243486919062 - sys_corr_21: 10.32604620484561 - sys_corr_22: 53.23443350432402 - sys_corr_23: -6.264655027307457 - sys_corr_24: 10.795703208368973 - sys_corr_25: -25.55563849059241 - sys_corr_26: -42.75031419488164 - sys_corr_27: 4.621469011141766 - sys_corr_28: -67.4557088165027 - sys_corr_29: 103.51029299211541 - sys_corr_30: 20.65551865832792 - sys_corr_31: -33.1895850420271 - sys_corr_32: -10.296471403749823 - sys_corr_33: -9.893815307190234 - sys_corr_34: -23.295564407017398 - sys_corr_35: 2.7178905580913773 - sys_corr_36: 26.821737593559046 - sys_corr_37: -0.6448277011426292 - sys_corr_38: 2.1336310882071503 - sys_corr_39: 18.54207338405579 - sys_corr_40: 5.010127343506069 - sys_corr_41: -9.815306135699078 - sys_corr_42: -25.374108026111916 - sys_corr_43: 3.6089144809661846 - sys_corr_44: 60.93298928153769 - sys_corr_45: -7.769310893320473 - sys_corr_46: 9.74323592394127 - sys_corr_47: 32.01001501770545 - sys_corr_48: -28.424228049194163 - sys_corr_49: 49.65232241002492 - sys_corr_50: -26.100092266019544 - sys_corr_51: 7.891756125572173 - sys_corr_52: 0.26422600570480115 - sys_corr_53: -1.8413274114131253 - sys_corr_54: 21.498419495210243 - sys_corr_55: 2.6057281229793006 - sys_corr_56: 4.583740373983652 - sys_corr_57: 8.825224267052215 - sys_corr_58: 1.8849256319626515 - sys_corr_59: -8.990083009899003 - sys_corr_60: 23.976565266467066 - sys_corr_61: -3.5466272610340743 - sys_corr_62: -1.3477731721074708 - sys_corr_63: -2.4072974884107015 - sys_corr_64: -5.425555263736253 - sys_corr_65: -5.62153432882807 - sys_corr_66: -3.9700750000349725 - sys_corr_67: 2.8327064318911575 - sys_corr_68: 14.093995688313761 - sys_corr_69: 55.158512403805325 - sys_corr_70: 15.323438898300202 - sys_corr_71: 27.027786729609442 - sys_corr_72: -25.958718641825712 - sys_corr_73: 58.81607629392159 - sys_corr_74: 26.291999302665666 - sys_corr_75: 57.21446141814752 - sys_corr_76: 9.937516131536379 - sys_corr_77: 7.4346395534833505 - sys_corr_78: -0.7767625892890477 - sys_corr_79: 16.743187029609512 - sys_corr_80: -0.2752877642632397 - sys_corr_81: -15.251575892004388 - sys_corr_82: -175.27662275323607 - sys_corr_83: -38.2986407397491 - sys_corr_84: -2.7829070112317305 - sys_corr_85: -1.9570258471453104 - sys_corr_86: 11.8891173817421 - sys_corr_87: 54.838414744049985 - sys_corr_88: 10.372346946463733 - sys_corr_89: -1.0009708662507055 - sys_corr_90: 5.411290918071244 - sys_corr_91: 7.003102448037259 - sys_corr_92: 16.17015338755081 - sys_corr_93: 0.1590099550178378 - sys_corr_94: 2.568248803836319 - sys_corr_95: 0.35932585702856895 - sys_corr_96: 0.22887311834434096 - sys_corr_97: -4.345323292086341 - sys_corr_98: -2.346648331937596 - sys_corr_99: -1.7600709516306878 - sys_corr_100: 0.8772509024611674 - sys_corr_101: 2.0250378502729625 - sys_corr_102: -1.4588072568515122 - sys_corr_103: 0.25438409449281557 - sys_corr_104: 3.3553867721455104 - sys_corr_105: 1.1882114473230727 - sys_corr_106: 0.2599577583408015 - sys_corr_107: 0.7601195813471917 - sys_corr_108: -0.6541336552536287 - sys_corr_109: -0.16133614996384582 - sys_corr_110: -0.19384943005231592 - sys_corr_111: -0.46504107445159304 - sys_corr_112: -0.07033262751759545 - sys_corr_113: -0.20746863333242727 - sys_corr_114: 0.0021795406672002696 - sys_corr_115: 0.14742688520149794 - sys_corr_116: 0.001199380485377344 - sys_corr_117: -0.017284033127999664 - sys_corr_118: 0.07498375957901013 - sys_corr_119: -0.006162872040068715 - sys_corr_120: 0.029427146153165003 - sys_corr_121: 0.011501371088820113 - sys_corr_122: 0.02372241349641405 - sys_corr_123: 0.019626450818535035 - sys_corr_124: 0.03597392444251421 - sys_corr_125: -0.056532917014117154 - sys_corr_126: 0.009453350908500672 - sys_corr_127: 0.41860323226380786 - sys_corr_128: 0.1846843606069952 - sys_corr_129: -0.036488927332374244 - sys_corr_130: -0.013653281315286214 - sys_corr_131: -0.03276279311781086 - sys_corr_132: -0.018823745454633382 + luminosity: 3.57974100e+01 +- sys_corr_1: 1.32783679e+02 + sys_corr_2: 1.39255214e+01 + sys_corr_3: 1.32144568e+01 + sys_corr_4: 2.77922959e+01 + sys_corr_5: -7.04769270e+01 + sys_corr_6: -8.57896948e+01 + sys_corr_7: 1.27669805e+01 + sys_corr_8: 4.61543762e+00 + sys_corr_9: -7.81321256e+00 + sys_corr_10: 1.00322123e+01 + sys_corr_11: 2.73875635e+01 + sys_corr_12: 4.53160340e+01 + sys_corr_13: -3.17987741e+01 + sys_corr_14: 4.95774252e+00 + sys_corr_15: 1.97870171e+01 + sys_corr_16: -6.35260051e+00 + sys_corr_17: -1.20571986e+01 + sys_corr_18: -4.16273542e+00 + sys_corr_19: 6.40327353e+00 + sys_corr_20: 4.24024349e+00 + sys_corr_21: 1.03260462e+01 + sys_corr_22: 5.32344335e+01 + sys_corr_23: -6.26465503e+00 + sys_corr_24: 1.07957032e+01 + sys_corr_25: -2.55556385e+01 + sys_corr_26: -4.27503142e+01 + sys_corr_27: 4.62146901e+00 + sys_corr_28: -6.74557088e+01 + sys_corr_29: 1.03510293e+02 + sys_corr_30: 2.06555187e+01 + sys_corr_31: -3.31895850e+01 + sys_corr_32: -1.02964714e+01 + sys_corr_33: -9.89381531e+00 + sys_corr_34: -2.32955644e+01 + sys_corr_35: 2.71789056e+00 + sys_corr_36: 2.68217376e+01 + sys_corr_37: -6.44827701e-01 + sys_corr_38: 2.13363109e+00 + sys_corr_39: 1.85420734e+01 + sys_corr_40: 5.01012734e+00 + sys_corr_41: -9.81530614e+00 + sys_corr_42: -2.53741080e+01 + sys_corr_43: 3.60891448e+00 + sys_corr_44: 6.09329893e+01 + sys_corr_45: -7.76931089e+00 + sys_corr_46: 9.74323592e+00 + sys_corr_47: 3.20100150e+01 + sys_corr_48: -2.84242280e+01 + sys_corr_49: 4.96523224e+01 + sys_corr_50: -2.61000923e+01 + sys_corr_51: 7.89175613e+00 + sys_corr_52: 2.64226006e-01 + sys_corr_53: -1.84132741e+00 + sys_corr_54: 2.14984195e+01 + sys_corr_55: 2.60572812e+00 + sys_corr_56: 4.58374037e+00 + sys_corr_57: 8.82522427e+00 + sys_corr_58: 1.88492563e+00 + sys_corr_59: -8.99008301e+00 + sys_corr_60: 2.39765653e+01 + sys_corr_61: -3.54662726e+00 + sys_corr_62: -1.34777317e+00 + sys_corr_63: -2.40729749e+00 + sys_corr_64: -5.42555526e+00 + sys_corr_65: -5.62153433e+00 + sys_corr_66: -3.97007500e+00 + sys_corr_67: 2.83270643e+00 + sys_corr_68: 1.40939957e+01 + sys_corr_69: 5.51585124e+01 + sys_corr_70: 1.53234389e+01 + sys_corr_71: 2.70277867e+01 + sys_corr_72: -2.59587186e+01 + sys_corr_73: 5.88160763e+01 + sys_corr_74: 2.62919993e+01 + sys_corr_75: 5.72144614e+01 + sys_corr_76: 9.93751613e+00 + sys_corr_77: 7.43463955e+00 + sys_corr_78: -7.76762589e-01 + sys_corr_79: 1.67431870e+01 + sys_corr_80: -2.75287764e-01 + sys_corr_81: -1.52515759e+01 + sys_corr_82: -1.75276623e+02 + sys_corr_83: -3.82986407e+01 + sys_corr_84: -2.78290701e+00 + sys_corr_85: -1.95702585e+00 + sys_corr_86: 1.18891174e+01 + sys_corr_87: 5.48384147e+01 + sys_corr_88: 1.03723469e+01 + sys_corr_89: -1.00097087e+00 + sys_corr_90: 5.41129092e+00 + sys_corr_91: 7.00310245e+00 + sys_corr_92: 1.61701534e+01 + sys_corr_93: 1.59009955e-01 + sys_corr_94: 2.56824880e+00 + sys_corr_95: 3.59325857e-01 + sys_corr_96: 2.28873118e-01 + sys_corr_97: -4.34532329e+00 + sys_corr_98: -2.34664833e+00 + sys_corr_99: -1.76007095e+00 + sys_corr_100: 8.77250902e-01 + sys_corr_101: 2.02503785e+00 + sys_corr_102: -1.45880726e+00 + sys_corr_103: 2.54384094e-01 + sys_corr_104: 3.35538677e+00 + sys_corr_105: 1.18821145e+00 + sys_corr_106: 2.59957758e-01 + sys_corr_107: 7.60119581e-01 + sys_corr_108: -6.54133655e-01 + sys_corr_109: -1.61336150e-01 + sys_corr_110: -1.93849430e-01 + sys_corr_111: -4.65041074e-01 + sys_corr_112: -7.03326275e-02 + sys_corr_113: -2.07468633e-01 + sys_corr_114: 2.17954067e-03 + sys_corr_115: 1.47426885e-01 + sys_corr_116: 1.19938049e-03 + sys_corr_117: -1.72840331e-02 + sys_corr_118: 7.49837596e-02 + sys_corr_119: -6.16287204e-03 + sys_corr_120: 2.94271462e-02 + sys_corr_121: 1.15013711e-02 + sys_corr_122: 2.37224135e-02 + sys_corr_123: 1.96264508e-02 + sys_corr_124: 3.59739244e-02 + sys_corr_125: -5.65329170e-02 + sys_corr_126: 9.45335091e-03 + sys_corr_127: 4.18603232e-01 + sys_corr_128: 1.84684361e-01 + sys_corr_129: -3.64889273e-02 + sys_corr_130: -1.36532813e-02 + sys_corr_131: -3.27627931e-02 + sys_corr_132: -1.88237455e-02 stat: 0.0 - luminosity: 246.76720200000005 -- sys_corr_1: 128.84531561964317 - sys_corr_2: 20.497993068675118 - sys_corr_3: 5.664266670483364 - sys_corr_4: 25.94151779398484 - sys_corr_5: -61.13083294852417 - sys_corr_6: -91.77783476365235 - sys_corr_7: 12.652578298984796 - sys_corr_8: -0.11506339194633976 - sys_corr_9: -3.899472689377906 - sys_corr_10: 8.808065562968219 - sys_corr_11: 23.055103237033443 - sys_corr_12: 44.33335286663986 - sys_corr_13: -23.766691973322008 - sys_corr_14: 1.5298766796666843 - sys_corr_15: 8.376468356087083 - sys_corr_16: -14.655242159853561 - sys_corr_17: -6.70170744248855 - sys_corr_18: -1.136268260422153 - sys_corr_19: 4.652424910052652 - sys_corr_20: 5.8121529981368125 - sys_corr_21: 8.225197245686266 - sys_corr_22: 40.40778374520337 - sys_corr_23: -5.256373801271269 - sys_corr_24: 1.8406197847014574 - sys_corr_25: -21.406216230861396 - sys_corr_26: -33.379020252514536 - sys_corr_27: 1.7471806878805003 - sys_corr_28: -69.64099643029827 - sys_corr_29: 102.36841806622338 - sys_corr_30: 18.855903038607046 - sys_corr_31: -38.43466708385531 - sys_corr_32: -1.622712349370133 - sys_corr_33: -9.491558747665522 - sys_corr_34: -40.012486457884776 - sys_corr_35: 5.40326543553326 - sys_corr_36: -5.109942361579883 - sys_corr_37: 8.247743924734081 - sys_corr_38: -8.95860078421134 - sys_corr_39: 1.1004755452575468 - sys_corr_40: 0.005107539612005041 - sys_corr_41: -5.768543204302746 - sys_corr_42: -23.519093598367498 - sys_corr_43: -4.630516269566579 - sys_corr_44: 72.78729955166605 - sys_corr_45: -5.409934630309228 - sys_corr_46: 10.784213621305064 - sys_corr_47: 39.78536517006481 - sys_corr_48: -27.07290064821288 - sys_corr_49: 43.85663767147496 - sys_corr_50: -30.843540833000525 - sys_corr_51: 6.5310311299007155 - sys_corr_52: -2.2715422678519 - sys_corr_53: 3.6160395069786784 - sys_corr_54: 20.496860162372556 - sys_corr_55: -1.582131772430093 - sys_corr_56: 3.313765397127826 - sys_corr_57: 10.14010849045405 - sys_corr_58: 9.844345131566488 - sys_corr_59: -5.235558092757987 - sys_corr_60: 41.2707546492021 - sys_corr_61: 0.26330004491379705 - sys_corr_62: 0.13213283613552215 - sys_corr_63: -10.254599076141565 - sys_corr_64: -3.8451948807777487 - sys_corr_65: -8.435732660742383 - sys_corr_66: 6.33414532683028 - sys_corr_67: -6.931830476023354 - sys_corr_68: 7.524660226959797 - sys_corr_69: 73.97335838449685 - sys_corr_70: 39.095547212735305 - sys_corr_71: 23.780584421668852 - sys_corr_72: -20.846451918240383 - sys_corr_73: 114.53595122320046 - sys_corr_74: 26.666457124373846 - sys_corr_75: 73.87071313646746 - sys_corr_76: 29.25929347569541 - sys_corr_77: -2.2799544291811755 - sys_corr_78: 1.611804468163976 - sys_corr_79: -9.039135109389006 - sys_corr_80: 1.841443702374602 - sys_corr_81: 20.9455558757063 - sys_corr_82: 115.03910565147945 - sys_corr_83: 15.689354245155945 - sys_corr_84: 0.9237716162835314 - sys_corr_85: -1.616515808140337 - sys_corr_86: 22.342270431620303 - sys_corr_87: -75.76767458662876 - sys_corr_88: -3.539458752676244 - sys_corr_89: 0.09943633692496168 - sys_corr_90: 3.275112668568987 - sys_corr_91: 3.164870973198466 - sys_corr_92: 39.577159299442165 - sys_corr_93: 0.6373012220797208 - sys_corr_94: 1.3679699766770435 - sys_corr_95: -0.06386348080330696 - sys_corr_96: 0.6798358877934086 - sys_corr_97: -2.942573773828737 - sys_corr_98: -1.149153306079056 - sys_corr_99: -1.7524498138631595 - sys_corr_100: 0.4057842711620837 - sys_corr_101: 0.7605583563850851 - sys_corr_102: -3.296234157674767 - sys_corr_103: 0.48867453095993146 - sys_corr_104: 3.5802804786832487 - sys_corr_105: 0.780958258738444 - sys_corr_106: -0.22323383970075159 - sys_corr_107: 0.24897219269898105 - sys_corr_108: -0.5229431087252527 - sys_corr_109: -0.06875369830378911 - sys_corr_110: -0.3193793322790082 - sys_corr_111: -0.18856717025078568 - sys_corr_112: -0.06640173467122594 - sys_corr_113: -0.13440138114401842 - sys_corr_114: 0.0020475452004144173 - sys_corr_115: 0.0460829978530514 - sys_corr_116: -0.053276672811426014 - sys_corr_117: -0.015198052598807278 - sys_corr_118: 0.042010413222191956 - sys_corr_119: -0.009403202817444672 - sys_corr_120: 0.03223212074584699 - sys_corr_121: 0.006138756303586087 - sys_corr_122: 0.013587124299306414 - sys_corr_123: 0.01265555423783251 - sys_corr_124: -0.07088407529446106 - sys_corr_125: -0.024865222589205795 - sys_corr_126: 0.0036666932533208664 - sys_corr_127: 0.2533321414982516 - sys_corr_128: 0.03495219229117218 - sys_corr_129: -0.0657973042265885 - sys_corr_130: -0.013413045576232215 - sys_corr_131: -0.004543895581043775 - sys_corr_132: -0.026349226831535587 + luminosity: 2.46767202e+02 +- sys_corr_1: 1.28845316e+02 + sys_corr_2: 2.04979931e+01 + sys_corr_3: 5.66426667e+00 + sys_corr_4: 2.59415178e+01 + sys_corr_5: -6.11308329e+01 + sys_corr_6: -9.17778348e+01 + sys_corr_7: 1.26525783e+01 + sys_corr_8: -1.15063392e-01 + sys_corr_9: -3.89947269e+00 + sys_corr_10: 8.80806556e+00 + sys_corr_11: 2.30551032e+01 + sys_corr_12: 4.43333529e+01 + sys_corr_13: -2.37666920e+01 + sys_corr_14: 1.52987668e+00 + sys_corr_15: 8.37646836e+00 + sys_corr_16: -1.46552422e+01 + sys_corr_17: -6.70170744e+00 + sys_corr_18: -1.13626826e+00 + sys_corr_19: 4.65242491e+00 + sys_corr_20: 5.81215300e+00 + sys_corr_21: 8.22519725e+00 + sys_corr_22: 4.04077837e+01 + sys_corr_23: -5.25637380e+00 + sys_corr_24: 1.84061978e+00 + sys_corr_25: -2.14062162e+01 + sys_corr_26: -3.33790203e+01 + sys_corr_27: 1.74718069e+00 + sys_corr_28: -6.96409964e+01 + sys_corr_29: 1.02368418e+02 + sys_corr_30: 1.88559030e+01 + sys_corr_31: -3.84346671e+01 + sys_corr_32: -1.62271235e+00 + sys_corr_33: -9.49155875e+00 + sys_corr_34: -4.00124865e+01 + sys_corr_35: 5.40326544e+00 + sys_corr_36: -5.10994236e+00 + sys_corr_37: 8.24774392e+00 + sys_corr_38: -8.95860078e+00 + sys_corr_39: 1.10047555e+00 + sys_corr_40: 5.10753961e-03 + sys_corr_41: -5.76854320e+00 + sys_corr_42: -2.35190936e+01 + sys_corr_43: -4.63051627e+00 + sys_corr_44: 7.27872996e+01 + sys_corr_45: -5.40993463e+00 + sys_corr_46: 1.07842136e+01 + sys_corr_47: 3.97853652e+01 + sys_corr_48: -2.70729006e+01 + sys_corr_49: 4.38566377e+01 + sys_corr_50: -3.08435408e+01 + sys_corr_51: 6.53103113e+00 + sys_corr_52: -2.27154227e+00 + sys_corr_53: 3.61603951e+00 + sys_corr_54: 2.04968602e+01 + sys_corr_55: -1.58213177e+00 + sys_corr_56: 3.31376540e+00 + sys_corr_57: 1.01401085e+01 + sys_corr_58: 9.84434513e+00 + sys_corr_59: -5.23555809e+00 + sys_corr_60: 4.12707546e+01 + sys_corr_61: 2.63300045e-01 + sys_corr_62: 1.32132836e-01 + sys_corr_63: -1.02545991e+01 + sys_corr_64: -3.84519488e+00 + sys_corr_65: -8.43573266e+00 + sys_corr_66: 6.33414533e+00 + sys_corr_67: -6.93183048e+00 + sys_corr_68: 7.52466023e+00 + sys_corr_69: 7.39733584e+01 + sys_corr_70: 3.90955472e+01 + sys_corr_71: 2.37805844e+01 + sys_corr_72: -2.08464519e+01 + sys_corr_73: 1.14535951e+02 + sys_corr_74: 2.66664571e+01 + sys_corr_75: 7.38707131e+01 + sys_corr_76: 2.92592935e+01 + sys_corr_77: -2.27995443e+00 + sys_corr_78: 1.61180447e+00 + sys_corr_79: -9.03913511e+00 + sys_corr_80: 1.84144370e+00 + sys_corr_81: 2.09455559e+01 + sys_corr_82: 1.15039106e+02 + sys_corr_83: 1.56893542e+01 + sys_corr_84: 9.23771616e-01 + sys_corr_85: -1.61651581e+00 + sys_corr_86: 2.23422704e+01 + sys_corr_87: -7.57676746e+01 + sys_corr_88: -3.53945875e+00 + sys_corr_89: 9.94363369e-02 + sys_corr_90: 3.27511267e+00 + sys_corr_91: 3.16487097e+00 + sys_corr_92: 3.95771593e+01 + sys_corr_93: 6.37301222e-01 + sys_corr_94: 1.36796998e+00 + sys_corr_95: -6.38634808e-02 + sys_corr_96: 6.79835888e-01 + sys_corr_97: -2.94257377e+00 + sys_corr_98: -1.14915331e+00 + sys_corr_99: -1.75244981e+00 + sys_corr_100: 4.05784271e-01 + sys_corr_101: 7.60558356e-01 + sys_corr_102: -3.29623416e+00 + sys_corr_103: 4.88674531e-01 + sys_corr_104: 3.58028048e+00 + sys_corr_105: 7.80958259e-01 + sys_corr_106: -2.23233840e-01 + sys_corr_107: 2.48972193e-01 + sys_corr_108: -5.22943109e-01 + sys_corr_109: -6.87536983e-02 + sys_corr_110: -3.19379332e-01 + sys_corr_111: -1.88567170e-01 + sys_corr_112: -6.64017347e-02 + sys_corr_113: -1.34401381e-01 + sys_corr_114: 2.04754520e-03 + sys_corr_115: 4.60829979e-02 + sys_corr_116: -5.32766728e-02 + sys_corr_117: -1.51980526e-02 + sys_corr_118: 4.20104132e-02 + sys_corr_119: -9.40320282e-03 + sys_corr_120: 3.22321207e-02 + sys_corr_121: 6.13875630e-03 + sys_corr_122: 1.35871243e-02 + sys_corr_123: 1.26555542e-02 + sys_corr_124: -7.08840753e-02 + sys_corr_125: -2.48652226e-02 + sys_corr_126: 3.66669325e-03 + sys_corr_127: 2.53332141e-01 + sys_corr_128: 3.49521923e-02 + sys_corr_129: -6.57973042e-02 + sys_corr_130: -1.34130456e-02 + sys_corr_131: -4.54389558e-03 + sys_corr_132: -2.63492268e-02 stat: 0.0 - luminosity: 246.38728400000002 -- sys_corr_1: 122.69278957381955 - sys_corr_2: 20.706947542583492 - sys_corr_3: 3.162259617752172 - sys_corr_4: 19.502068265161746 - sys_corr_5: -72.39795561614464 - sys_corr_6: -61.11220312622276 - sys_corr_7: 15.358572308168803 - sys_corr_8: 9.384379908889827 - sys_corr_9: -3.426147628458841 - sys_corr_10: 1.6330241644989028 - sys_corr_11: 31.103817409256187 - sys_corr_12: 52.32140324851579 - sys_corr_13: -25.092908793436965 - sys_corr_14: 5.003932534363069 - sys_corr_15: 15.417216221472133 - sys_corr_16: -7.71572377963002 - sys_corr_17: -5.415935064328141 - sys_corr_18: -6.9819786775171115 - sys_corr_19: 5.620934950973885 - sys_corr_20: 4.503701689515003 - sys_corr_21: 10.573378138396661 - sys_corr_22: 58.1564842701281 - sys_corr_23: -2.9106417147812644 - sys_corr_24: 22.804416478981558 - sys_corr_25: -14.839526506308843 - sys_corr_26: -23.029012049297553 - sys_corr_27: 5.056300018972368 - sys_corr_28: -73.59226213029737 - sys_corr_29: 101.58111379818612 - sys_corr_30: 25.712257762419018 - sys_corr_31: -19.751848049657525 - sys_corr_32: -10.517767874829964 - sys_corr_33: -13.734238144231327 - sys_corr_34: -33.33832538208153 - sys_corr_35: -2.7359270973279055 - sys_corr_36: 20.765249643204854 - sys_corr_37: 2.8629463387309655 - sys_corr_38: 1.3089208190028898 - sys_corr_39: 10.559440111904651 - sys_corr_40: 10.302447678679219 - sys_corr_41: -17.58112342900486 - sys_corr_42: -34.479275647912694 - sys_corr_43: 0.07074680769342155 - sys_corr_44: 112.77975816340768 - sys_corr_45: -11.507692429578917 - sys_corr_46: 17.13542797215798 - sys_corr_47: 47.838953408071994 - sys_corr_48: -38.48570951231685 - sys_corr_49: 75.53070885457964 - sys_corr_50: -36.124176420086776 - sys_corr_51: -3.083030719669922 - sys_corr_52: -5.788633827329006 - sys_corr_53: -20.351566962473118 - sys_corr_54: 43.19013944629373 - sys_corr_55: 5.020836870764339 - sys_corr_56: 41.5139945044861 - sys_corr_57: 44.503287847717715 - sys_corr_58: -150.677996837602 - sys_corr_59: 18.41338106463248 - sys_corr_60: -146.88614179068352 - sys_corr_61: 40.951971882097325 - sys_corr_62: 6.4191180038812785 - sys_corr_63: 4.068937718105121 - sys_corr_64: -3.059640235677393 - sys_corr_65: 10.455286994943911 - sys_corr_66: -9.490635608636515 - sys_corr_67: 4.838832814358338 - sys_corr_68: -19.38251468325005 - sys_corr_69: -63.848737013541694 - sys_corr_70: -33.99439190433227 - sys_corr_71: -35.80408502264906 - sys_corr_72: 11.243981519672971 - sys_corr_73: -30.530732060423002 - sys_corr_74: -4.529794564627517 - sys_corr_75: -4.757928692753979 - sys_corr_76: -0.843399110526586 - sys_corr_77: -5.22007389758692 - sys_corr_78: 1.3313221753558597 - sys_corr_79: 1.3323783120092922 - sys_corr_80: -0.24566691409046387 - sys_corr_81: 4.890667315614832 - sys_corr_82: 11.875617945406242 - sys_corr_83: 4.326677666872948 - sys_corr_84: 0.35573934276609687 - sys_corr_85: -1.2187096281909233 - sys_corr_86: 1.3702185963899585 - sys_corr_87: -9.175287212582695 - sys_corr_88: -0.7763820441409802 - sys_corr_89: -0.045354601293941886 - sys_corr_90: 1.3232391915948245 - sys_corr_91: 0.8156949520582626 - sys_corr_92: -0.7559000972633066 - sys_corr_93: -0.32745729333431595 - sys_corr_94: 0.8421501579313107 - sys_corr_95: -0.13759216700985352 - sys_corr_96: 0.3536030436489751 - sys_corr_97: -1.2226625101593978 - sys_corr_98: -0.30987242009695315 - sys_corr_99: -0.5041115904359864 - sys_corr_100: 0.14353997011460412 - sys_corr_101: 0.36800426894951316 - sys_corr_102: -1.186671292460611 - sys_corr_103: -0.09031366878712967 - sys_corr_104: 1.3856123501921165 - sys_corr_105: 0.15275131471355868 - sys_corr_106: -0.0902910546614953 - sys_corr_107: -0.09637821135608846 - sys_corr_108: 0.023717567697119885 - sys_corr_109: 0.051482464064484305 - sys_corr_110: -0.05883973888614161 - sys_corr_111: -0.16944262569685883 - sys_corr_112: -0.036074353211109855 - sys_corr_113: -0.03320862933382766 - sys_corr_114: 0.0017811075764188316 - sys_corr_115: 0.1254770353006879 - sys_corr_116: -0.061907419581252086 - sys_corr_117: -0.021306310151125073 - sys_corr_118: 0.049653290999916465 - sys_corr_119: -0.0034515535841676864 - sys_corr_120: 0.008913077420958504 - sys_corr_121: -0.0002425084125438593 - sys_corr_122: -0.018249953664264018 - sys_corr_123: -0.006745426310839248 - sys_corr_124: -0.03672202584052932 - sys_corr_125: 2.890041652733674e-05 - sys_corr_126: -0.0032930088824233436 - sys_corr_127: 0.4076118702628002 - sys_corr_128: 0.009863477484253319 - sys_corr_129: 0.0018380596372354109 - sys_corr_130: -0.002644108881983335 - sys_corr_131: -0.013835922638197638 - sys_corr_132: -0.017388104051051515 + luminosity: 2.46387284e+02 +- sys_corr_1: 1.22692790e+02 + sys_corr_2: 2.07069475e+01 + sys_corr_3: 3.16225962e+00 + sys_corr_4: 1.95020683e+01 + sys_corr_5: -7.23979556e+01 + sys_corr_6: -6.11122031e+01 + sys_corr_7: 1.53585723e+01 + sys_corr_8: 9.38437991e+00 + sys_corr_9: -3.42614763e+00 + sys_corr_10: 1.63302416e+00 + sys_corr_11: 3.11038174e+01 + sys_corr_12: 5.23214032e+01 + sys_corr_13: -2.50929088e+01 + sys_corr_14: 5.00393253e+00 + sys_corr_15: 1.54172162e+01 + sys_corr_16: -7.71572378e+00 + sys_corr_17: -5.41593506e+00 + sys_corr_18: -6.98197868e+00 + sys_corr_19: 5.62093495e+00 + sys_corr_20: 4.50370169e+00 + sys_corr_21: 1.05733781e+01 + sys_corr_22: 5.81564843e+01 + sys_corr_23: -2.91064171e+00 + sys_corr_24: 2.28044165e+01 + sys_corr_25: -1.48395265e+01 + sys_corr_26: -2.30290120e+01 + sys_corr_27: 5.05630002e+00 + sys_corr_28: -7.35922621e+01 + sys_corr_29: 1.01581114e+02 + sys_corr_30: 2.57122578e+01 + sys_corr_31: -1.97518480e+01 + sys_corr_32: -1.05177679e+01 + sys_corr_33: -1.37342381e+01 + sys_corr_34: -3.33383254e+01 + sys_corr_35: -2.73592710e+00 + sys_corr_36: 2.07652496e+01 + sys_corr_37: 2.86294634e+00 + sys_corr_38: 1.30892082e+00 + sys_corr_39: 1.05594401e+01 + sys_corr_40: 1.03024477e+01 + sys_corr_41: -1.75811234e+01 + sys_corr_42: -3.44792756e+01 + sys_corr_43: 7.07468077e-02 + sys_corr_44: 1.12779758e+02 + sys_corr_45: -1.15076924e+01 + sys_corr_46: 1.71354280e+01 + sys_corr_47: 4.78389534e+01 + sys_corr_48: -3.84857095e+01 + sys_corr_49: 7.55307089e+01 + sys_corr_50: -3.61241764e+01 + sys_corr_51: -3.08303072e+00 + sys_corr_52: -5.78863383e+00 + sys_corr_53: -2.03515670e+01 + sys_corr_54: 4.31901394e+01 + sys_corr_55: 5.02083687e+00 + sys_corr_56: 4.15139945e+01 + sys_corr_57: 4.45032878e+01 + sys_corr_58: -1.50677997e+02 + sys_corr_59: 1.84133811e+01 + sys_corr_60: -1.46886142e+02 + sys_corr_61: 4.09519719e+01 + sys_corr_62: 6.41911800e+00 + sys_corr_63: 4.06893772e+00 + sys_corr_64: -3.05964024e+00 + sys_corr_65: 1.04552870e+01 + sys_corr_66: -9.49063561e+00 + sys_corr_67: 4.83883281e+00 + sys_corr_68: -1.93825147e+01 + sys_corr_69: -6.38487370e+01 + sys_corr_70: -3.39943919e+01 + sys_corr_71: -3.58040850e+01 + sys_corr_72: 1.12439815e+01 + sys_corr_73: -3.05307321e+01 + sys_corr_74: -4.52979456e+00 + sys_corr_75: -4.75792869e+00 + sys_corr_76: -8.43399111e-01 + sys_corr_77: -5.22007390e+00 + sys_corr_78: 1.33132218e+00 + sys_corr_79: 1.33237831e+00 + sys_corr_80: -2.45666914e-01 + sys_corr_81: 4.89066732e+00 + sys_corr_82: 1.18756179e+01 + sys_corr_83: 4.32667767e+00 + sys_corr_84: 3.55739343e-01 + sys_corr_85: -1.21870963e+00 + sys_corr_86: 1.37021860e+00 + sys_corr_87: -9.17528721e+00 + sys_corr_88: -7.76382044e-01 + sys_corr_89: -4.53546013e-02 + sys_corr_90: 1.32323919e+00 + sys_corr_91: 8.15694952e-01 + sys_corr_92: -7.55900097e-01 + sys_corr_93: -3.27457293e-01 + sys_corr_94: 8.42150158e-01 + sys_corr_95: -1.37592167e-01 + sys_corr_96: 3.53603044e-01 + sys_corr_97: -1.22266251e+00 + sys_corr_98: -3.09872420e-01 + sys_corr_99: -5.04111590e-01 + sys_corr_100: 1.43539970e-01 + sys_corr_101: 3.68004269e-01 + sys_corr_102: -1.18667129e+00 + sys_corr_103: -9.03136688e-02 + sys_corr_104: 1.38561235e+00 + sys_corr_105: 1.52751315e-01 + sys_corr_106: -9.02910547e-02 + sys_corr_107: -9.63782114e-02 + sys_corr_108: 2.37175677e-02 + sys_corr_109: 5.14824641e-02 + sys_corr_110: -5.88397389e-02 + sys_corr_111: -1.69442626e-01 + sys_corr_112: -3.60743532e-02 + sys_corr_113: -3.32086293e-02 + sys_corr_114: 1.78110758e-03 + sys_corr_115: 1.25477035e-01 + sys_corr_116: -6.19074196e-02 + sys_corr_117: -2.13063102e-02 + sys_corr_118: 4.96532910e-02 + sys_corr_119: -3.45155358e-03 + sys_corr_120: 8.91307742e-03 + sys_corr_121: -2.42508413e-04 + sys_corr_122: -1.82499537e-02 + sys_corr_123: -6.74542631e-03 + sys_corr_124: -3.67220258e-02 + sys_corr_125: 2.89004165e-05 + sys_corr_126: -3.29300888e-03 + sys_corr_127: 4.07611870e-01 + sys_corr_128: 9.86347748e-03 + sys_corr_129: 1.83805964e-03 + sys_corr_130: -2.64410888e-03 + sys_corr_131: -1.38359226e-02 + sys_corr_132: -1.73881041e-02 stat: 0.0 - luminosity: 243.12714800000003 -- sys_corr_1: 123.4467907628497 - sys_corr_2: 29.56373887535152 - sys_corr_3: -5.563875799572598 - sys_corr_4: 25.532797980138213 - sys_corr_5: -57.733894936266566 - sys_corr_6: -79.21498736571303 - sys_corr_7: 19.453252611475982 - sys_corr_8: 2.430760733378797 - sys_corr_9: 2.9813799957097737 - sys_corr_10: 4.551357189846316 - sys_corr_11: 30.139946045700658 - sys_corr_12: 47.755915180438734 - sys_corr_13: -30.69985443138459 - sys_corr_14: 6.749898877528208 - sys_corr_15: 18.72829375554514 - sys_corr_16: -7.298402504471517 - sys_corr_17: -7.8099830492634785 - sys_corr_18: -3.9391744036493677 - sys_corr_19: 4.834678737278194 - sys_corr_20: 5.616527322903544 - sys_corr_21: 11.763849872046025 - sys_corr_22: 48.718905984479875 - sys_corr_23: -3.30846786790539 - sys_corr_24: 12.049243778454853 - sys_corr_25: -10.7160935591894 - sys_corr_26: -12.891033170567567 - sys_corr_27: -0.9937443416148907 - sys_corr_28: -63.959802129852804 - sys_corr_29: 89.7138446624155 - sys_corr_30: 30.380500878890363 - sys_corr_31: -22.08094906525357 - sys_corr_32: -12.547944134509198 - sys_corr_33: -7.915856738627245 - sys_corr_34: -25.425067513699485 - sys_corr_35: 1.1824120043208521 - sys_corr_36: 26.543506838322468 - sys_corr_37: -10.523696996168546 - sys_corr_38: 3.697534477920033 - sys_corr_39: 19.63517489687782 - sys_corr_40: 5.025337686784274 - sys_corr_41: -18.459002646435597 - sys_corr_42: -30.85907242973927 - sys_corr_43: -1.7668810091022797 - sys_corr_44: 84.49044392613253 - sys_corr_45: -10.743556127105172 - sys_corr_46: 7.574459877298673 - sys_corr_47: 40.269794749697276 - sys_corr_48: -25.12579988601064 - sys_corr_49: 57.76619593246896 - sys_corr_50: -39.150498664330144 - sys_corr_51: -7.162467673278849 - sys_corr_52: -0.30621607888976543 - sys_corr_53: -5.325614064107705 - sys_corr_54: 23.989781515199883 - sys_corr_55: 0.9134345565986126 - sys_corr_56: 3.9484977181665153 - sys_corr_57: 17.503388024746343 - sys_corr_58: 72.25412402743488 - sys_corr_59: -14.727872399666314 - sys_corr_60: 166.0531341784706 - sys_corr_61: -58.01271995214767 - sys_corr_62: 15.154354023458092 - sys_corr_63: -12.178094086204712 - sys_corr_64: -15.463015849979039 - sys_corr_65: -27.669110082710823 - sys_corr_66: -30.135128015821724 - sys_corr_67: 6.562442411411551 - sys_corr_68: -41.7887379027002 - sys_corr_69: -119.13593324765029 - sys_corr_70: -47.74752749753578 - sys_corr_71: -45.552096026562715 - sys_corr_72: 27.670179717759154 - sys_corr_73: -54.93622449216422 - sys_corr_74: -5.57430938369761 - sys_corr_75: -8.658611428725328 - sys_corr_76: -2.2287708938764457 - sys_corr_77: -5.082228905421097 - sys_corr_78: 3.9183238945982857 - sys_corr_79: 6.426776415082986 - sys_corr_80: 1.935109008438431 - sys_corr_81: 2.74920325269946 - sys_corr_82: 6.234342728758016 - sys_corr_83: 2.297718151376731 - sys_corr_84: 3.7601644253159328 - sys_corr_85: 0.8303499401191734 - sys_corr_86: 1.7966811036192694 - sys_corr_87: -8.67695690157299 - sys_corr_88: 0.6088190153290131 - sys_corr_89: 0.4591449898785588 - sys_corr_90: 1.3889710820763699 - sys_corr_91: -0.0010575655823706525 - sys_corr_92: -3.17554764315388 - sys_corr_93: 0.3699368643576233 - sys_corr_94: 0.23330397829302832 - sys_corr_95: 0.4831775766482298 - sys_corr_96: 0.16770632667282176 - sys_corr_97: -2.009187262102733 - sys_corr_98: -0.3441358290981982 - sys_corr_99: -0.5825298776129987 - sys_corr_100: 0.33767598726237896 - sys_corr_101: 0.6860710762027278 - sys_corr_102: -1.2495329899971537 - sys_corr_103: 0.05587918439431619 - sys_corr_104: 1.4737447286574141 - sys_corr_105: 0.4108430399868132 - sys_corr_106: -0.050148041899839804 - sys_corr_107: 0.12599356540342435 - sys_corr_108: -0.1517140685524195 - sys_corr_109: -0.13381144686012428 - sys_corr_110: -0.2736667240349111 - sys_corr_111: -0.2141773217630151 - sys_corr_112: -0.06502712373202942 - sys_corr_113: -0.1397862552523171 - sys_corr_114: 0.0015988440685088235 - sys_corr_115: 0.07772781360030237 - sys_corr_116: -0.02391314812034015 - sys_corr_117: -0.026237402680558627 - sys_corr_118: 0.017143130169418073 - sys_corr_119: -0.003236042507058288 - sys_corr_120: 0.023043703020977656 - sys_corr_121: 0.002319903428198275 - sys_corr_122: 0.008633489609631438 - sys_corr_123: -0.0011239071533171588 - sys_corr_124: -0.0058183679888647475 - sys_corr_125: -0.003935975246659694 - sys_corr_126: -0.011722574419180454 - sys_corr_127: 0.3105525983796548 - sys_corr_128: -0.003991788406450845 - sys_corr_129: -0.004915739155266339 - sys_corr_130: -0.001301772974502113 - sys_corr_131: -0.0036157523236058117 - sys_corr_132: -0.0023532077291439305 + luminosity: 2.43127148e+02 +- sys_corr_1: 1.23446791e+02 + sys_corr_2: 2.95637389e+01 + sys_corr_3: -5.56387580e+00 + sys_corr_4: 2.55327980e+01 + sys_corr_5: -5.77338949e+01 + sys_corr_6: -7.92149874e+01 + sys_corr_7: 1.94532526e+01 + sys_corr_8: 2.43076073e+00 + sys_corr_9: 2.98138000e+00 + sys_corr_10: 4.55135719e+00 + sys_corr_11: 3.01399460e+01 + sys_corr_12: 4.77559152e+01 + sys_corr_13: -3.06998544e+01 + sys_corr_14: 6.74989888e+00 + sys_corr_15: 1.87282938e+01 + sys_corr_16: -7.29840250e+00 + sys_corr_17: -7.80998305e+00 + sys_corr_18: -3.93917440e+00 + sys_corr_19: 4.83467874e+00 + sys_corr_20: 5.61652732e+00 + sys_corr_21: 1.17638499e+01 + sys_corr_22: 4.87189060e+01 + sys_corr_23: -3.30846787e+00 + sys_corr_24: 1.20492438e+01 + sys_corr_25: -1.07160936e+01 + sys_corr_26: -1.28910332e+01 + sys_corr_27: -9.93744342e-01 + sys_corr_28: -6.39598021e+01 + sys_corr_29: 8.97138447e+01 + sys_corr_30: 3.03805009e+01 + sys_corr_31: -2.20809491e+01 + sys_corr_32: -1.25479441e+01 + sys_corr_33: -7.91585674e+00 + sys_corr_34: -2.54250675e+01 + sys_corr_35: 1.18241200e+00 + sys_corr_36: 2.65435068e+01 + sys_corr_37: -1.05236970e+01 + sys_corr_38: 3.69753448e+00 + sys_corr_39: 1.96351749e+01 + sys_corr_40: 5.02533769e+00 + sys_corr_41: -1.84590026e+01 + sys_corr_42: -3.08590724e+01 + sys_corr_43: -1.76688101e+00 + sys_corr_44: 8.44904439e+01 + sys_corr_45: -1.07435561e+01 + sys_corr_46: 7.57445988e+00 + sys_corr_47: 4.02697947e+01 + sys_corr_48: -2.51257999e+01 + sys_corr_49: 5.77661959e+01 + sys_corr_50: -3.91504987e+01 + sys_corr_51: -7.16246767e+00 + sys_corr_52: -3.06216079e-01 + sys_corr_53: -5.32561406e+00 + sys_corr_54: 2.39897815e+01 + sys_corr_55: 9.13434557e-01 + sys_corr_56: 3.94849772e+00 + sys_corr_57: 1.75033880e+01 + sys_corr_58: 7.22541240e+01 + sys_corr_59: -1.47278724e+01 + sys_corr_60: 1.66053134e+02 + sys_corr_61: -5.80127200e+01 + sys_corr_62: 1.51543540e+01 + sys_corr_63: -1.21780941e+01 + sys_corr_64: -1.54630158e+01 + sys_corr_65: -2.76691101e+01 + sys_corr_66: -3.01351280e+01 + sys_corr_67: 6.56244241e+00 + sys_corr_68: -4.17887379e+01 + sys_corr_69: -1.19135933e+02 + sys_corr_70: -4.77475275e+01 + sys_corr_71: -4.55520960e+01 + sys_corr_72: 2.76701797e+01 + sys_corr_73: -5.49362245e+01 + sys_corr_74: -5.57430938e+00 + sys_corr_75: -8.65861143e+00 + sys_corr_76: -2.22877089e+00 + sys_corr_77: -5.08222891e+00 + sys_corr_78: 3.91832389e+00 + sys_corr_79: 6.42677642e+00 + sys_corr_80: 1.93510901e+00 + sys_corr_81: 2.74920325e+00 + sys_corr_82: 6.23434273e+00 + sys_corr_83: 2.29771815e+00 + sys_corr_84: 3.76016443e+00 + sys_corr_85: 8.30349940e-01 + sys_corr_86: 1.79668110e+00 + sys_corr_87: -8.67695690e+00 + sys_corr_88: 6.08819015e-01 + sys_corr_89: 4.59144990e-01 + sys_corr_90: 1.38897108e+00 + sys_corr_91: -1.05756558e-03 + sys_corr_92: -3.17554764e+00 + sys_corr_93: 3.69936864e-01 + sys_corr_94: 2.33303978e-01 + sys_corr_95: 4.83177577e-01 + sys_corr_96: 1.67706327e-01 + sys_corr_97: -2.00918726e+00 + sys_corr_98: -3.44135829e-01 + sys_corr_99: -5.82529878e-01 + sys_corr_100: 3.37675987e-01 + sys_corr_101: 6.86071076e-01 + sys_corr_102: -1.24953299e+00 + sys_corr_103: 5.58791844e-02 + sys_corr_104: 1.47374473e+00 + sys_corr_105: 4.10843040e-01 + sys_corr_106: -5.01480419e-02 + sys_corr_107: 1.25993565e-01 + sys_corr_108: -1.51714069e-01 + sys_corr_109: -1.33811447e-01 + sys_corr_110: -2.73666724e-01 + sys_corr_111: -2.14177322e-01 + sys_corr_112: -6.50271237e-02 + sys_corr_113: -1.39786255e-01 + sys_corr_114: 1.59884407e-03 + sys_corr_115: 7.77278136e-02 + sys_corr_116: -2.39131481e-02 + sys_corr_117: -2.62374027e-02 + sys_corr_118: 1.71431302e-02 + sys_corr_119: -3.23604251e-03 + sys_corr_120: 2.30437030e-02 + sys_corr_121: 2.31990343e-03 + sys_corr_122: 8.63348961e-03 + sys_corr_123: -1.12390715e-03 + sys_corr_124: -5.81836799e-03 + sys_corr_125: -3.93597525e-03 + sys_corr_126: -1.17225744e-02 + sys_corr_127: 3.10552598e-01 + sys_corr_128: -3.99178841e-03 + sys_corr_129: -4.91573916e-03 + sys_corr_130: -1.30177297e-03 + sys_corr_131: -3.61575232e-03 + sys_corr_132: -2.35320773e-03 stat: 0.0 - luminosity: 249.60493800000003 -- sys_corr_1: 109.46582923677903 - sys_corr_2: 37.83123054961732 - sys_corr_3: -12.567754072807446 - sys_corr_4: 11.302234252904126 - sys_corr_5: -55.578845090725444 - sys_corr_6: -52.14623257284312 - sys_corr_7: 18.167975377727767 - sys_corr_8: 10.15222974267654 - sys_corr_9: 2.9629996296421983 - sys_corr_10: 6.4438425527987295 - sys_corr_11: 26.241564078364313 - sys_corr_12: 40.15110043378917 - sys_corr_13: -29.030460990967057 - sys_corr_14: 2.603901675115728 - sys_corr_15: 4.504055922893425 - sys_corr_16: -6.526456215079508 - sys_corr_17: -2.0229655096090884 - sys_corr_18: -8.258097488274897 - sys_corr_19: 7.57243819404783 - sys_corr_20: 2.872473750462054 - sys_corr_21: 10.643800417930718 - sys_corr_22: 25.329111217245938 - sys_corr_23: -2.5396133300069113 - sys_corr_24: 26.495342357041704 - sys_corr_25: 2.371947839823719 - sys_corr_26: 14.776423565045942 - sys_corr_27: -2.540892026444544 - sys_corr_28: -82.51012468264578 - sys_corr_29: 113.56844059879477 - sys_corr_30: 1.862282747035845 - sys_corr_31: -19.21630530733835 - sys_corr_32: -18.717721748456 - sys_corr_33: -38.17125264072804 - sys_corr_34: -195.36061470117363 - sys_corr_35: 39.79721486262271 - sys_corr_36: 222.2733410824055 - sys_corr_37: 195.66792322402802 - sys_corr_38: 14.361146673005043 - sys_corr_39: -97.31764614370628 - sys_corr_40: -28.85048090348427 - sys_corr_41: 34.579337399873026 - sys_corr_42: 63.16713094150328 - sys_corr_43: 3.9830211766373806 - sys_corr_44: -83.99286759711102 - sys_corr_45: 14.688593578827394 - sys_corr_46: -12.044664525945782 - sys_corr_47: -31.78483102426459 - sys_corr_48: 10.809710058343052 - sys_corr_49: -27.14358998496444 - sys_corr_50: 16.314906342115876 - sys_corr_51: 10.043773061222044 - sys_corr_52: -1.3487918927214495 - sys_corr_53: 4.878804428595263 - sys_corr_54: -3.8882253978108716 - sys_corr_55: -3.718843391626542 - sys_corr_56: -3.1992730419103963 - sys_corr_57: 2.0547304525018686 - sys_corr_58: -2.324250660113176 - sys_corr_59: 0.995283286895197 - sys_corr_60: -2.265607921831891 - sys_corr_61: 0.21166867280807097 - sys_corr_62: 3.137080396444909 - sys_corr_63: -1.0966035994023273 - sys_corr_64: -1.0726397944604729 - sys_corr_65: -1.0115859403168537 - sys_corr_66: -4.564255956696072 - sys_corr_67: 2.486630026956677 - sys_corr_68: -5.537032285464933 - sys_corr_69: -6.880357524182232 - sys_corr_70: -4.121507743350747 - sys_corr_71: -5.812351619697671 - sys_corr_72: 1.4444188295296918 - sys_corr_73: -3.2652985443529703 - sys_corr_74: 0.44169982116498513 - sys_corr_75: -0.6054935656241899 - sys_corr_76: 0.7376829866786244 - sys_corr_77: -1.292782945036437 - sys_corr_78: 0.6803269007870382 - sys_corr_79: -0.08876993639504155 - sys_corr_80: 0.006194530247309749 - sys_corr_81: 0.5396435287934167 - sys_corr_82: 2.413089013406371 - sys_corr_83: 0.19012706618962405 - sys_corr_84: 1.2096853304236292 - sys_corr_85: -1.606307100114306 - sys_corr_86: 0.4795313113910896 - sys_corr_87: -0.9461084025052421 - sys_corr_88: 0.3206508225004924 - sys_corr_89: 0.06909230987009377 - sys_corr_90: 0.07343869584270876 - sys_corr_91: -0.6503761842324765 - sys_corr_92: -0.17458366234479739 - sys_corr_93: -0.12348667672623378 - sys_corr_94: -0.11785700710052187 - sys_corr_95: 0.44248916438327296 - sys_corr_96: 0.07326017415682336 - sys_corr_97: -0.43363195552738515 - sys_corr_98: -0.21243787658859029 - sys_corr_99: -0.17317126221133747 - sys_corr_100: -0.04857004817831258 - sys_corr_101: -0.004608415902247363 - sys_corr_102: -1.0318535617919398 - sys_corr_103: 0.17717724800929785 - sys_corr_104: 0.5446480568472527 - sys_corr_105: 0.04076836576737518 - sys_corr_106: -0.03221945776717314 - sys_corr_107: 0.10227738060646059 - sys_corr_108: -0.07054969252686415 - sys_corr_109: -0.12101534329383958 - sys_corr_110: -0.26993116178296767 - sys_corr_111: -0.020975185078755305 - sys_corr_112: -0.015763770411233644 - sys_corr_113: -0.015113047767906318 - sys_corr_114: 0.0009592168928469347 - sys_corr_115: -0.0019602741957668395 - sys_corr_116: -0.0196048943555699 - sys_corr_117: -0.007928894669839376 - sys_corr_118: -0.010738529660504805 - sys_corr_119: -0.0014563359850725372 - sys_corr_120: 0.008650211790628175 - sys_corr_121: -0.0008611397366099444 - sys_corr_122: -0.013385202155070665 - sys_corr_123: -0.006929761162733832 - sys_corr_124: -0.004405125729211557 - sys_corr_125: 0.0008900458439484012 - sys_corr_126: -0.003987369584212022 - sys_corr_127: 0.13536647404514374 - sys_corr_128: -0.022402930016281384 - sys_corr_129: 0.010714997022143843 - sys_corr_130: -0.001200546817837725 - sys_corr_131: 0.005815582724064342 - sys_corr_132: -0.0022091258594246752 + luminosity: 2.49604938e+02 +- sys_corr_1: 1.09465829e+02 + sys_corr_2: 3.78312305e+01 + sys_corr_3: -1.25677541e+01 + sys_corr_4: 1.13022343e+01 + sys_corr_5: -5.55788451e+01 + sys_corr_6: -5.21462326e+01 + sys_corr_7: 1.81679754e+01 + sys_corr_8: 1.01522297e+01 + sys_corr_9: 2.96299963e+00 + sys_corr_10: 6.44384255e+00 + sys_corr_11: 2.62415641e+01 + sys_corr_12: 4.01511004e+01 + sys_corr_13: -2.90304610e+01 + sys_corr_14: 2.60390168e+00 + sys_corr_15: 4.50405592e+00 + sys_corr_16: -6.52645622e+00 + sys_corr_17: -2.02296551e+00 + sys_corr_18: -8.25809749e+00 + sys_corr_19: 7.57243819e+00 + sys_corr_20: 2.87247375e+00 + sys_corr_21: 1.06438004e+01 + sys_corr_22: 2.53291112e+01 + sys_corr_23: -2.53961333e+00 + sys_corr_24: 2.64953424e+01 + sys_corr_25: 2.37194784e+00 + sys_corr_26: 1.47764236e+01 + sys_corr_27: -2.54089203e+00 + sys_corr_28: -8.25101247e+01 + sys_corr_29: 1.13568441e+02 + sys_corr_30: 1.86228275e+00 + sys_corr_31: -1.92163053e+01 + sys_corr_32: -1.87177217e+01 + sys_corr_33: -3.81712526e+01 + sys_corr_34: -1.95360615e+02 + sys_corr_35: 3.97972149e+01 + sys_corr_36: 2.22273341e+02 + sys_corr_37: 1.95667923e+02 + sys_corr_38: 1.43611467e+01 + sys_corr_39: -9.73176461e+01 + sys_corr_40: -2.88504809e+01 + sys_corr_41: 3.45793374e+01 + sys_corr_42: 6.31671309e+01 + sys_corr_43: 3.98302118e+00 + sys_corr_44: -8.39928676e+01 + sys_corr_45: 1.46885936e+01 + sys_corr_46: -1.20446645e+01 + sys_corr_47: -3.17848310e+01 + sys_corr_48: 1.08097101e+01 + sys_corr_49: -2.71435900e+01 + sys_corr_50: 1.63149063e+01 + sys_corr_51: 1.00437731e+01 + sys_corr_52: -1.34879189e+00 + sys_corr_53: 4.87880443e+00 + sys_corr_54: -3.88822540e+00 + sys_corr_55: -3.71884339e+00 + sys_corr_56: -3.19927304e+00 + sys_corr_57: 2.05473045e+00 + sys_corr_58: -2.32425066e+00 + sys_corr_59: 9.95283287e-01 + sys_corr_60: -2.26560792e+00 + sys_corr_61: 2.11668673e-01 + sys_corr_62: 3.13708040e+00 + sys_corr_63: -1.09660360e+00 + sys_corr_64: -1.07263979e+00 + sys_corr_65: -1.01158594e+00 + sys_corr_66: -4.56425596e+00 + sys_corr_67: 2.48663003e+00 + sys_corr_68: -5.53703229e+00 + sys_corr_69: -6.88035752e+00 + sys_corr_70: -4.12150774e+00 + sys_corr_71: -5.81235162e+00 + sys_corr_72: 1.44441883e+00 + sys_corr_73: -3.26529854e+00 + sys_corr_74: 4.41699821e-01 + sys_corr_75: -6.05493566e-01 + sys_corr_76: 7.37682987e-01 + sys_corr_77: -1.29278295e+00 + sys_corr_78: 6.80326901e-01 + sys_corr_79: -8.87699364e-02 + sys_corr_80: 6.19453025e-03 + sys_corr_81: 5.39643529e-01 + sys_corr_82: 2.41308901e+00 + sys_corr_83: 1.90127066e-01 + sys_corr_84: 1.20968533e+00 + sys_corr_85: -1.60630710e+00 + sys_corr_86: 4.79531311e-01 + sys_corr_87: -9.46108403e-01 + sys_corr_88: 3.20650823e-01 + sys_corr_89: 6.90923099e-02 + sys_corr_90: 7.34386958e-02 + sys_corr_91: -6.50376184e-01 + sys_corr_92: -1.74583662e-01 + sys_corr_93: -1.23486677e-01 + sys_corr_94: -1.17857007e-01 + sys_corr_95: 4.42489164e-01 + sys_corr_96: 7.32601742e-02 + sys_corr_97: -4.33631956e-01 + sys_corr_98: -2.12437877e-01 + sys_corr_99: -1.73171262e-01 + sys_corr_100: -4.85700482e-02 + sys_corr_101: -4.60841590e-03 + sys_corr_102: -1.03185356e+00 + sys_corr_103: 1.77177248e-01 + sys_corr_104: 5.44648057e-01 + sys_corr_105: 4.07683658e-02 + sys_corr_106: -3.22194578e-02 + sys_corr_107: 1.02277381e-01 + sys_corr_108: -7.05496925e-02 + sys_corr_109: -1.21015343e-01 + sys_corr_110: -2.69931162e-01 + sys_corr_111: -2.09751851e-02 + sys_corr_112: -1.57637704e-02 + sys_corr_113: -1.51130478e-02 + sys_corr_114: 9.59216893e-04 + sys_corr_115: -1.96027420e-03 + sys_corr_116: -1.96048944e-02 + sys_corr_117: -7.92889467e-03 + sys_corr_118: -1.07385297e-02 + sys_corr_119: -1.45633599e-03 + sys_corr_120: 8.65021179e-03 + sys_corr_121: -8.61139737e-04 + sys_corr_122: -1.33852022e-02 + sys_corr_123: -6.92976116e-03 + sys_corr_124: -4.40512573e-03 + sys_corr_125: 8.90045844e-04 + sys_corr_126: -3.98736958e-03 + sys_corr_127: 1.35366474e-01 + sys_corr_128: -2.24029300e-02 + sys_corr_129: 1.07149970e-02 + sys_corr_130: -1.20054682e-03 + sys_corr_131: 5.81558272e-03 + sys_corr_132: -2.20912586e-03 stat: 0.0 - luminosity: 234.78083200000003 -- sys_corr_1: 126.80308877539103 - sys_corr_2: 57.29654296585701 - sys_corr_3: -2.4710364234401148 - sys_corr_4: 9.615614754566549 - sys_corr_5: -56.327503309520665 - sys_corr_6: -83.35784991769576 - sys_corr_7: 19.78645128817049 - sys_corr_8: 11.049764829167653 - sys_corr_9: 7.084330932492724 - sys_corr_10: 3.5928801232055827 - sys_corr_11: 28.80841153496755 - sys_corr_12: 49.64125076672141 - sys_corr_13: -29.813271504141515 - sys_corr_14: 6.620635596213588 - sys_corr_15: 21.600584996774252 - sys_corr_16: -17.87934472903987 - sys_corr_17: -3.4452650641087432 - sys_corr_18: -8.004726526326019 - sys_corr_19: 6.953532756465618 - sys_corr_20: 4.292975016750246 - sys_corr_21: 4.808041080848625 - sys_corr_22: 18.978463423474377 - sys_corr_23: -6.437152422385746 - sys_corr_24: 32.80521131135845 - sys_corr_25: 1.898074895076479 - sys_corr_26: 11.584997657274354 - sys_corr_27: -8.087628135296459 - sys_corr_28: -56.234573078492105 - sys_corr_29: 80.36663326546093 - sys_corr_30: -20.619237888513467 - sys_corr_31: 1.0888374271377081 - sys_corr_32: -12.636609152847608 - sys_corr_33: -10.81579534823856 - sys_corr_34: -18.04878395534113 - sys_corr_35: 16.146296344414722 - sys_corr_36: 10.885401444489611 - sys_corr_37: 0.9853451585857415 - sys_corr_38: -0.034706764345336726 - sys_corr_39: -0.6571065867859185 - sys_corr_40: 4.607760349679665 - sys_corr_41: -3.1067398859788176 - sys_corr_42: -20.46016124215135 - sys_corr_43: -8.219248463607826 - sys_corr_44: 57.69983558187832 - sys_corr_45: -4.264377405011216 - sys_corr_46: 0.31359666458178714 - sys_corr_47: 24.84485843820749 - sys_corr_48: -18.34524030152886 - sys_corr_49: 29.453520928965737 - sys_corr_50: -26.582061860065366 - sys_corr_51: -8.378672680898593 - sys_corr_52: -1.388010281715014 - sys_corr_53: -5.676974659910692 - sys_corr_54: 3.6946371787548427 - sys_corr_55: 6.07151892242008 - sys_corr_56: 4.064288805571956 - sys_corr_57: -10.800885956175042 - sys_corr_58: 15.533583467887588 - sys_corr_59: -0.7560537512870225 - sys_corr_60: 16.281831716719964 - sys_corr_61: 0.37775867938138313 - sys_corr_62: -2.3566089280605333 - sys_corr_63: 3.072118532211994 - sys_corr_64: 6.945503855322612 - sys_corr_65: -1.0685778636012575 - sys_corr_66: 37.878242102253914 - sys_corr_67: -17.585027574572283 - sys_corr_68: 39.15501445271453 - sys_corr_69: 50.38277186539245 - sys_corr_70: 27.27288680365433 - sys_corr_71: 34.29702653799385 - sys_corr_72: 1.353765501627376 - sys_corr_73: 12.020233707371954 - sys_corr_74: -7.327881549203512 - sys_corr_75: -75.69274086402395 - sys_corr_76: 21.55711275524521 - sys_corr_77: -20.11867768908212 - sys_corr_78: 7.378960605844887 - sys_corr_79: 3.34763413853433 - sys_corr_80: 0.8574828278535679 - sys_corr_81: 55.415583642686855 - sys_corr_82: 34.11055719869352 - sys_corr_83: 30.518313946802184 - sys_corr_84: 1.5078929602499829 - sys_corr_85: -8.152251774951527 - sys_corr_86: -71.17327957567625 - sys_corr_87: 96.07460066692222 - sys_corr_88: -25.421307882397002 - sys_corr_89: -0.3670484271862077 - sys_corr_90: 0.5557961477408064 - sys_corr_91: -5.903127698379325 - sys_corr_92: -140.93203250015154 - sys_corr_93: -0.9102443833047587 - sys_corr_94: -2.5557821813812085 - sys_corr_95: 3.719448180144842 - sys_corr_96: 0.0168911061091171 - sys_corr_97: -0.5245111165704655 - sys_corr_98: -0.6417316253458895 - sys_corr_99: -0.45579789538594334 - sys_corr_100: 0.05272891227664643 - sys_corr_101: 0.05879263479872161 - sys_corr_102: -0.7571537053723572 - sys_corr_103: 0.7054263738744406 - sys_corr_104: 0.5340853463682479 - sys_corr_105: 0.30752763954607065 - sys_corr_106: -0.0723492661538915 - sys_corr_107: 0.25206531504906793 - sys_corr_108: -0.585657608206783 - sys_corr_109: -0.28277982665950374 - sys_corr_110: -0.12128595654039709 - sys_corr_111: -0.06806440418045334 - sys_corr_112: -0.285804399318226 - sys_corr_113: -0.24294149856276867 - sys_corr_114: 0.004295502224546507 - sys_corr_115: 0.016514798946963363 - sys_corr_116: -0.03946958148152209 - sys_corr_117: -0.052951750690589175 - sys_corr_118: -0.03539939304107335 - sys_corr_119: -0.006232775210257768 - sys_corr_120: 0.026076332254178203 - sys_corr_121: -0.003870721331840801 - sys_corr_122: -0.012954888456561514 - sys_corr_123: -0.014667592207829521 - sys_corr_124: -0.07491168423905789 - sys_corr_125: -0.009156345900232784 - sys_corr_126: -0.015760259989275098 - sys_corr_127: -0.09008326908453312 - sys_corr_128: 0.0571480187250734 - sys_corr_129: -0.046762509872546966 - sys_corr_130: 0.002021005546697443 - sys_corr_131: -0.003159861163662729 - sys_corr_132: 0.05262848031465891 + luminosity: 2.34780832e+02 +- sys_corr_1: 1.26803089e+02 + sys_corr_2: 5.72965430e+01 + sys_corr_3: -2.47103642e+00 + sys_corr_4: 9.61561475e+00 + sys_corr_5: -5.63275033e+01 + sys_corr_6: -8.33578499e+01 + sys_corr_7: 1.97864513e+01 + sys_corr_8: 1.10497648e+01 + sys_corr_9: 7.08433093e+00 + sys_corr_10: 3.59288012e+00 + sys_corr_11: 2.88084115e+01 + sys_corr_12: 4.96412508e+01 + sys_corr_13: -2.98132715e+01 + sys_corr_14: 6.62063560e+00 + sys_corr_15: 2.16005850e+01 + sys_corr_16: -1.78793447e+01 + sys_corr_17: -3.44526506e+00 + sys_corr_18: -8.00472653e+00 + sys_corr_19: 6.95353276e+00 + sys_corr_20: 4.29297502e+00 + sys_corr_21: 4.80804108e+00 + sys_corr_22: 1.89784634e+01 + sys_corr_23: -6.43715242e+00 + sys_corr_24: 3.28052113e+01 + sys_corr_25: 1.89807490e+00 + sys_corr_26: 1.15849977e+01 + sys_corr_27: -8.08762814e+00 + sys_corr_28: -5.62345731e+01 + sys_corr_29: 8.03666333e+01 + sys_corr_30: -2.06192379e+01 + sys_corr_31: 1.08883743e+00 + sys_corr_32: -1.26366092e+01 + sys_corr_33: -1.08157953e+01 + sys_corr_34: -1.80487840e+01 + sys_corr_35: 1.61462963e+01 + sys_corr_36: 1.08854014e+01 + sys_corr_37: 9.85345159e-01 + sys_corr_38: -3.47067643e-02 + sys_corr_39: -6.57106587e-01 + sys_corr_40: 4.60776035e+00 + sys_corr_41: -3.10673989e+00 + sys_corr_42: -2.04601612e+01 + sys_corr_43: -8.21924846e+00 + sys_corr_44: 5.76998356e+01 + sys_corr_45: -4.26437741e+00 + sys_corr_46: 3.13596665e-01 + sys_corr_47: 2.48448584e+01 + sys_corr_48: -1.83452403e+01 + sys_corr_49: 2.94535209e+01 + sys_corr_50: -2.65820619e+01 + sys_corr_51: -8.37867268e+00 + sys_corr_52: -1.38801028e+00 + sys_corr_53: -5.67697466e+00 + sys_corr_54: 3.69463718e+00 + sys_corr_55: 6.07151892e+00 + sys_corr_56: 4.06428881e+00 + sys_corr_57: -1.08008860e+01 + sys_corr_58: 1.55335835e+01 + sys_corr_59: -7.56053751e-01 + sys_corr_60: 1.62818317e+01 + sys_corr_61: 3.77758679e-01 + sys_corr_62: -2.35660893e+00 + sys_corr_63: 3.07211853e+00 + sys_corr_64: 6.94550386e+00 + sys_corr_65: -1.06857786e+00 + sys_corr_66: 3.78782421e+01 + sys_corr_67: -1.75850276e+01 + sys_corr_68: 3.91550145e+01 + sys_corr_69: 5.03827719e+01 + sys_corr_70: 2.72728868e+01 + sys_corr_71: 3.42970265e+01 + sys_corr_72: 1.35376550e+00 + sys_corr_73: 1.20202337e+01 + sys_corr_74: -7.32788155e+00 + sys_corr_75: -7.56927409e+01 + sys_corr_76: 2.15571128e+01 + sys_corr_77: -2.01186777e+01 + sys_corr_78: 7.37896061e+00 + sys_corr_79: 3.34763414e+00 + sys_corr_80: 8.57482828e-01 + sys_corr_81: 5.54155836e+01 + sys_corr_82: 3.41105572e+01 + sys_corr_83: 3.05183139e+01 + sys_corr_84: 1.50789296e+00 + sys_corr_85: -8.15225177e+00 + sys_corr_86: -7.11732796e+01 + sys_corr_87: 9.60746007e+01 + sys_corr_88: -2.54213079e+01 + sys_corr_89: -3.67048427e-01 + sys_corr_90: 5.55796148e-01 + sys_corr_91: -5.90312770e+00 + sys_corr_92: -1.40932033e+02 + sys_corr_93: -9.10244383e-01 + sys_corr_94: -2.55578218e+00 + sys_corr_95: 3.71944818e+00 + sys_corr_96: 1.68911061e-02 + sys_corr_97: -5.24511117e-01 + sys_corr_98: -6.41731625e-01 + sys_corr_99: -4.55797895e-01 + sys_corr_100: 5.27289123e-02 + sys_corr_101: 5.87926348e-02 + sys_corr_102: -7.57153705e-01 + sys_corr_103: 7.05426374e-01 + sys_corr_104: 5.34085346e-01 + sys_corr_105: 3.07527640e-01 + sys_corr_106: -7.23492662e-02 + sys_corr_107: 2.52065315e-01 + sys_corr_108: -5.85657608e-01 + sys_corr_109: -2.82779827e-01 + sys_corr_110: -1.21285957e-01 + sys_corr_111: -6.80644042e-02 + sys_corr_112: -2.85804399e-01 + sys_corr_113: -2.42941499e-01 + sys_corr_114: 4.29550222e-03 + sys_corr_115: 1.65147989e-02 + sys_corr_116: -3.94695815e-02 + sys_corr_117: -5.29517507e-02 + sys_corr_118: -3.53993930e-02 + sys_corr_119: -6.23277521e-03 + sys_corr_120: 2.60763323e-02 + sys_corr_121: -3.87072133e-03 + sys_corr_122: -1.29548885e-02 + sys_corr_123: -1.46675922e-02 + sys_corr_124: -7.49116842e-02 + sys_corr_125: -9.15634590e-03 + sys_corr_126: -1.57602600e-02 + sys_corr_127: -9.00832691e-02 + sys_corr_128: 5.71480187e-02 + sys_corr_129: -4.67625099e-02 + sys_corr_130: 2.02100555e-03 + sys_corr_131: -3.15986116e-03 + sys_corr_132: 5.26284803e-02 stat: 0.0 - luminosity: 257.28879 -- sys_corr_1: 127.1160077918955 - sys_corr_2: 56.59612914580558 - sys_corr_3: -3.946833999778853 - sys_corr_4: 13.4886288538622 - sys_corr_5: -39.6975050053339 - sys_corr_6: -97.87457925369124 - sys_corr_7: 25.80776124708193 - sys_corr_8: 6.823628493120954 - sys_corr_9: 10.928244645715976 - sys_corr_10: 3.8929905075619637 - sys_corr_11: 26.280189849651755 - sys_corr_12: 43.05482018626281 - sys_corr_13: -20.740033251449432 - sys_corr_14: 3.6150650482990225 - sys_corr_15: 9.418958466040289 - sys_corr_16: -5.377238237964275 - sys_corr_17: -1.4876284517902987 - sys_corr_18: 2.928178910378293 - sys_corr_19: 6.109173382091196 - sys_corr_20: -0.5829011801997825 - sys_corr_21: 4.960008434136541 - sys_corr_22: -9.96666009932233 - sys_corr_23: -6.746461059143992 - sys_corr_24: 35.6058168872248 - sys_corr_25: 7.3251310605912225 - sys_corr_26: 18.953714326382674 - sys_corr_27: -9.740552917303225 - sys_corr_28: -44.406501157104714 - sys_corr_29: 65.18123194712778 - sys_corr_30: -28.34398883780176 - sys_corr_31: 2.9239613938126037 - sys_corr_32: -16.793819537768197 - sys_corr_33: 2.6318937522488883 - sys_corr_34: -22.472495967083965 - sys_corr_35: -5.841434996639286 - sys_corr_36: 18.935424930493326 - sys_corr_37: -1.2640996004703495 - sys_corr_38: 4.7604842412661235 - sys_corr_39: 14.823345130547763 - sys_corr_40: 5.728580192398781 - sys_corr_41: -2.36355103155216 - sys_corr_42: -18.213611275139836 - sys_corr_43: -2.93263223378349 - sys_corr_44: 40.368797821136255 - sys_corr_45: -10.223953468230953 - sys_corr_46: -5.592132171377403 - sys_corr_47: 21.78195616406523 - sys_corr_48: -8.1927312406374 - sys_corr_49: 28.761779070041985 - sys_corr_50: -28.438137388640577 - sys_corr_51: -6.693360843575672 - sys_corr_52: -3.530552277507232 - sys_corr_53: -8.006709160203824 - sys_corr_54: -2.295492101484729 - sys_corr_55: 12.692082778454697 - sys_corr_56: 1.8046558775564354 - sys_corr_57: -14.138994677707855 - sys_corr_58: 9.689021745060243 - sys_corr_59: 11.400298229455284 - sys_corr_60: 10.439915785684773 - sys_corr_61: -12.877792849439599 - sys_corr_62: 8.270342602512025 - sys_corr_63: 9.822154531077397 - sys_corr_64: 13.530851057343682 - sys_corr_65: -1.358580663948169 - sys_corr_66: 20.198558297458803 - sys_corr_67: -27.011116071288367 - sys_corr_68: 68.58179183509407 - sys_corr_69: 59.67531291892441 - sys_corr_70: 37.08183723104488 - sys_corr_71: 71.40291641333796 - sys_corr_72: -6.979939225043054 - sys_corr_73: -98.59426065572507 - sys_corr_74: -81.24984829688123 - sys_corr_75: -66.77845749086178 - sys_corr_76: -52.958593193421365 - sys_corr_77: -10.365180986519563 - sys_corr_78: 5.366881489377697 - sys_corr_79: -8.215660158099414 - sys_corr_80: -14.092938672115134 - sys_corr_81: 15.067881686511797 - sys_corr_82: 17.10164717472356 - sys_corr_83: -4.141524780352442 - sys_corr_84: 2.573429912391606 - sys_corr_85: -2.5963478581180017 - sys_corr_86: 50.29687212496867 - sys_corr_87: 25.943918135977974 - sys_corr_88: 27.97585766091729 - sys_corr_89: -0.8772655474952908 - sys_corr_90: -1.4483137204017875 - sys_corr_91: -3.015777233303822 - sys_corr_92: 121.41650733516097 - sys_corr_93: -0.5372468372993737 - sys_corr_94: -1.6870496061379296 - sys_corr_95: 2.3907007674154386 - sys_corr_96: 0.15946063469468716 - sys_corr_97: 1.2845514288154987 - sys_corr_98: 0.19543938660118065 - sys_corr_99: 0.5778903294715502 - sys_corr_100: -0.10323131969151858 - sys_corr_101: -0.5313883189452538 - sys_corr_102: -0.9984751041826929 - sys_corr_103: 0.42402342146402067 - sys_corr_104: 0.04770556165614289 - sys_corr_105: -0.20013720530600687 - sys_corr_106: -0.196406346229189 - sys_corr_107: -0.15243955973548665 - sys_corr_108: -0.3874422204585658 - sys_corr_109: -0.4253157182597556 - sys_corr_110: 0.21159155618134268 - sys_corr_111: 0.07237826252552997 - sys_corr_112: -0.2171512919356819 - sys_corr_113: -0.22276691336991453 - sys_corr_114: 0.002095684841900901 - sys_corr_115: -0.04646360750682934 - sys_corr_116: -0.0444755548394945 - sys_corr_117: -0.06002844787901681 - sys_corr_118: 0.02445355701392611 - sys_corr_119: 0.006165948444870556 - sys_corr_120: 0.018875987458704623 - sys_corr_121: 0.0008693498757224504 - sys_corr_122: 8.937470985873133e-05 - sys_corr_123: -0.016634836626179525 - sys_corr_124: -0.06960377925267643 - sys_corr_125: -0.00545244864447644 - sys_corr_126: -0.006021038965612055 - sys_corr_127: 0.10682921894675487 - sys_corr_128: 0.13340014408951445 - sys_corr_129: -0.09888349172502182 - sys_corr_130: -0.008523635486807804 - sys_corr_131: -0.02261683053492555 - sys_corr_132: 0.03676754412141848 + luminosity: 2.57288790e+02 +- sys_corr_1: 1.27116008e+02 + sys_corr_2: 5.65961291e+01 + sys_corr_3: -3.94683400e+00 + sys_corr_4: 1.34886289e+01 + sys_corr_5: -3.96975050e+01 + sys_corr_6: -9.78745793e+01 + sys_corr_7: 2.58077612e+01 + sys_corr_8: 6.82362849e+00 + sys_corr_9: 1.09282446e+01 + sys_corr_10: 3.89299051e+00 + sys_corr_11: 2.62801898e+01 + sys_corr_12: 4.30548202e+01 + sys_corr_13: -2.07400333e+01 + sys_corr_14: 3.61506505e+00 + sys_corr_15: 9.41895847e+00 + sys_corr_16: -5.37723824e+00 + sys_corr_17: -1.48762845e+00 + sys_corr_18: 2.92817891e+00 + sys_corr_19: 6.10917338e+00 + sys_corr_20: -5.82901180e-01 + sys_corr_21: 4.96000843e+00 + sys_corr_22: -9.96666010e+00 + sys_corr_23: -6.74646106e+00 + sys_corr_24: 3.56058169e+01 + sys_corr_25: 7.32513106e+00 + sys_corr_26: 1.89537143e+01 + sys_corr_27: -9.74055292e+00 + sys_corr_28: -4.44065012e+01 + sys_corr_29: 6.51812319e+01 + sys_corr_30: -2.83439888e+01 + sys_corr_31: 2.92396139e+00 + sys_corr_32: -1.67938195e+01 + sys_corr_33: 2.63189375e+00 + sys_corr_34: -2.24724960e+01 + sys_corr_35: -5.84143500e+00 + sys_corr_36: 1.89354249e+01 + sys_corr_37: -1.26409960e+00 + sys_corr_38: 4.76048424e+00 + sys_corr_39: 1.48233451e+01 + sys_corr_40: 5.72858019e+00 + sys_corr_41: -2.36355103e+00 + sys_corr_42: -1.82136113e+01 + sys_corr_43: -2.93263223e+00 + sys_corr_44: 4.03687978e+01 + sys_corr_45: -1.02239535e+01 + sys_corr_46: -5.59213217e+00 + sys_corr_47: 2.17819562e+01 + sys_corr_48: -8.19273124e+00 + sys_corr_49: 2.87617791e+01 + sys_corr_50: -2.84381374e+01 + sys_corr_51: -6.69336084e+00 + sys_corr_52: -3.53055228e+00 + sys_corr_53: -8.00670916e+00 + sys_corr_54: -2.29549210e+00 + sys_corr_55: 1.26920828e+01 + sys_corr_56: 1.80465588e+00 + sys_corr_57: -1.41389947e+01 + sys_corr_58: 9.68902175e+00 + sys_corr_59: 1.14002982e+01 + sys_corr_60: 1.04399158e+01 + sys_corr_61: -1.28777928e+01 + sys_corr_62: 8.27034260e+00 + sys_corr_63: 9.82215453e+00 + sys_corr_64: 1.35308511e+01 + sys_corr_65: -1.35858066e+00 + sys_corr_66: 2.01985583e+01 + sys_corr_67: -2.70111161e+01 + sys_corr_68: 6.85817918e+01 + sys_corr_69: 5.96753129e+01 + sys_corr_70: 3.70818372e+01 + sys_corr_71: 7.14029164e+01 + sys_corr_72: -6.97993923e+00 + sys_corr_73: -9.85942607e+01 + sys_corr_74: -8.12498483e+01 + sys_corr_75: -6.67784575e+01 + sys_corr_76: -5.29585932e+01 + sys_corr_77: -1.03651810e+01 + sys_corr_78: 5.36688149e+00 + sys_corr_79: -8.21566016e+00 + sys_corr_80: -1.40929387e+01 + sys_corr_81: 1.50678817e+01 + sys_corr_82: 1.71016472e+01 + sys_corr_83: -4.14152478e+00 + sys_corr_84: 2.57342991e+00 + sys_corr_85: -2.59634786e+00 + sys_corr_86: 5.02968721e+01 + sys_corr_87: 2.59439181e+01 + sys_corr_88: 2.79758577e+01 + sys_corr_89: -8.77265547e-01 + sys_corr_90: -1.44831372e+00 + sys_corr_91: -3.01577723e+00 + sys_corr_92: 1.21416507e+02 + sys_corr_93: -5.37246837e-01 + sys_corr_94: -1.68704961e+00 + sys_corr_95: 2.39070077e+00 + sys_corr_96: 1.59460635e-01 + sys_corr_97: 1.28455143e+00 + sys_corr_98: 1.95439387e-01 + sys_corr_99: 5.77890329e-01 + sys_corr_100: -1.03231320e-01 + sys_corr_101: -5.31388319e-01 + sys_corr_102: -9.98475104e-01 + sys_corr_103: 4.24023421e-01 + sys_corr_104: 4.77055617e-02 + sys_corr_105: -2.00137205e-01 + sys_corr_106: -1.96406346e-01 + sys_corr_107: -1.52439560e-01 + sys_corr_108: -3.87442220e-01 + sys_corr_109: -4.25315718e-01 + sys_corr_110: 2.11591556e-01 + sys_corr_111: 7.23782625e-02 + sys_corr_112: -2.17151292e-01 + sys_corr_113: -2.22766913e-01 + sys_corr_114: 2.09568484e-03 + sys_corr_115: -4.64636075e-02 + sys_corr_116: -4.44755548e-02 + sys_corr_117: -6.00284479e-02 + sys_corr_118: 2.44535570e-02 + sys_corr_119: 6.16594844e-03 + sys_corr_120: 1.88759875e-02 + sys_corr_121: 8.69349876e-04 + sys_corr_122: 8.93747099e-05 + sys_corr_123: -1.66348366e-02 + sys_corr_124: -6.96037793e-02 + sys_corr_125: -5.45244864e-03 + sys_corr_126: -6.02103897e-03 + sys_corr_127: 1.06829219e-01 + sys_corr_128: 1.33400144e-01 + sys_corr_129: -9.88834917e-02 + sys_corr_130: -8.52363549e-03 + sys_corr_131: -2.26168305e-02 + sys_corr_132: 3.67675441e-02 stat: 0.0 - luminosity: 252.72341600000001 -- sys_corr_1: 122.66423460639811 - sys_corr_2: 52.25392214654779 - sys_corr_3: -11.38507846045054 - sys_corr_4: 0.9483900247346211 - sys_corr_5: -17.498120666090706 - sys_corr_6: -104.37338875547678 - sys_corr_7: 28.854019900152565 - sys_corr_8: 10.518133778890673 - sys_corr_9: 14.671253034343476 - sys_corr_10: -2.6870115822467957 - sys_corr_11: 25.33876703779946 - sys_corr_12: 32.462348931056376 - sys_corr_13: -26.382461248507514 - sys_corr_14: 8.715113736758287 - sys_corr_15: 9.356875762570711 - sys_corr_16: -5.2504753756166584 - sys_corr_17: 2.5319301618535714 - sys_corr_18: -3.339439011054929 - sys_corr_19: -1.126693065973811 - sys_corr_20: -3.2921365407307728 - sys_corr_21: 3.164962586984595 - sys_corr_22: -32.392690498089 - sys_corr_23: -8.26479555662024 - sys_corr_24: 22.9124280914912 - sys_corr_25: 8.979292530990262 - sys_corr_26: 22.06538927732768 - sys_corr_27: -13.908465164479374 - sys_corr_28: -30.892681322145393 - sys_corr_29: 49.989305260715895 - sys_corr_30: -55.312834678353376 - sys_corr_31: 19.232092438663226 - sys_corr_32: -15.814981023457205 - sys_corr_33: 4.969156341575906 - sys_corr_34: -11.237405961706315 - sys_corr_35: 3.4881619388477505 - sys_corr_36: 11.178034839270122 - sys_corr_37: 13.598512383923463 - sys_corr_38: -5.0809010244491315 - sys_corr_39: -10.374205995543633 - sys_corr_40: 25.346320590102675 - sys_corr_41: -3.6441238224851165 - sys_corr_42: -51.941221985310236 - sys_corr_43: -18.42482042705013 - sys_corr_44: 56.53921812611778 - sys_corr_45: 1.101384216419297 - sys_corr_46: -13.165704471698376 - sys_corr_47: 16.13356707596573 - sys_corr_48: -41.133828345410805 - sys_corr_49: 13.977656569566319 - sys_corr_50: -2.675082917890874 - sys_corr_51: -0.8426174001822193 - sys_corr_52: -11.911295561556022 - sys_corr_53: -16.884396153340184 - sys_corr_54: -60.99587276370022 - sys_corr_55: -17.42355373941419 - sys_corr_56: -35.51712961261277 - sys_corr_57: -154.6567981494166 - sys_corr_58: 127.97940624533399 - sys_corr_59: -93.7207483127768 - sys_corr_60: -116.80134655855238 - sys_corr_61: 1.0698251120992794 - sys_corr_62: -70.81243239489679 - sys_corr_63: 20.855946449279468 - sys_corr_64: -14.60576022340967 - sys_corr_65: -4.311227698276402 - sys_corr_66: -6.61654920456647 - sys_corr_67: 26.022014562244156 - sys_corr_68: -14.472151750190006 - sys_corr_69: -33.03673041683601 - sys_corr_70: -13.853754482289382 - sys_corr_71: -10.246738881223665 - sys_corr_72: 8.558500332941666 - sys_corr_73: 6.504096945895516 - sys_corr_74: 1.402560631274943 - sys_corr_75: 18.24545675628856 - sys_corr_76: -6.623895515329334 - sys_corr_77: -20.08389863358573 - sys_corr_78: 3.4656719597050176 - sys_corr_79: -12.507153160430809 - sys_corr_80: 1.4648100136384454 - sys_corr_81: -1.5161247529304922 - sys_corr_82: 0.9950026350877842 - sys_corr_83: -0.7820216067082691 - sys_corr_84: 4.467624495398418 - sys_corr_85: 0.868495272715542 - sys_corr_86: -2.370391224902065 - sys_corr_87: -0.7029492574548364 - sys_corr_88: -5.0863469025930375 - sys_corr_89: -1.5435475685515863 - sys_corr_90: -0.31845951427456853 - sys_corr_91: 0.8433315790317413 - sys_corr_92: 13.166230132825332 - sys_corr_93: -0.018085484092684817 - sys_corr_94: 0.15066945641772156 - sys_corr_95: 0.8907271785640871 - sys_corr_96: 0.12807543909123142 - sys_corr_97: 0.5420378196544018 - sys_corr_98: 0.20506298428640105 - sys_corr_99: 0.03900126364101785 - sys_corr_100: -0.2861298880820012 - sys_corr_101: -0.6676588393284897 - sys_corr_102: -0.5074915517212151 - sys_corr_103: 0.5180009376525203 - sys_corr_104: 0.55541979866877 - sys_corr_105: -0.24838619127199793 - sys_corr_106: -0.3154932103650909 - sys_corr_107: -0.15344759514885226 - sys_corr_108: 0.07439312900259824 - sys_corr_109: -0.1913244894702964 - sys_corr_110: -0.0008019324647451087 - sys_corr_111: 0.10230436039610641 - sys_corr_112: -0.08419500114021183 - sys_corr_113: -0.10145185292834166 - sys_corr_114: 0.0011402987649643834 - sys_corr_115: 0.012927761456972506 - sys_corr_116: -0.02972554410828958 - sys_corr_117: -0.03212944482758861 - sys_corr_118: 0.06986830560975099 - sys_corr_119: 0.007488513284251535 - sys_corr_120: 0.017442596706003056 - sys_corr_121: 0.00043685707118939425 - sys_corr_122: 0.005399456198861275 - sys_corr_123: -0.0015327092454244147 - sys_corr_124: -0.03162877368421379 - sys_corr_125: -0.003889162666284968 - sys_corr_126: -0.0013555172299344758 - sys_corr_127: 0.4147324161997176 - sys_corr_128: 0.12716289552917634 - sys_corr_129: -0.06431185566230777 - sys_corr_130: -0.00475118617590603 - sys_corr_131: -0.011295334061627546 - sys_corr_132: 0.01603253695697078 + luminosity: 2.52723416e+02 +- sys_corr_1: 1.22664235e+02 + sys_corr_2: 5.22539221e+01 + sys_corr_3: -1.13850785e+01 + sys_corr_4: 9.48390025e-01 + sys_corr_5: -1.74981207e+01 + sys_corr_6: -1.04373389e+02 + sys_corr_7: 2.88540199e+01 + sys_corr_8: 1.05181338e+01 + sys_corr_9: 1.46712530e+01 + sys_corr_10: -2.68701158e+00 + sys_corr_11: 2.53387670e+01 + sys_corr_12: 3.24623489e+01 + sys_corr_13: -2.63824612e+01 + sys_corr_14: 8.71511374e+00 + sys_corr_15: 9.35687576e+00 + sys_corr_16: -5.25047538e+00 + sys_corr_17: 2.53193016e+00 + sys_corr_18: -3.33943901e+00 + sys_corr_19: -1.12669307e+00 + sys_corr_20: -3.29213654e+00 + sys_corr_21: 3.16496259e+00 + sys_corr_22: -3.23926905e+01 + sys_corr_23: -8.26479556e+00 + sys_corr_24: 2.29124281e+01 + sys_corr_25: 8.97929253e+00 + sys_corr_26: 2.20653893e+01 + sys_corr_27: -1.39084652e+01 + sys_corr_28: -3.08926813e+01 + sys_corr_29: 4.99893053e+01 + sys_corr_30: -5.53128347e+01 + sys_corr_31: 1.92320924e+01 + sys_corr_32: -1.58149810e+01 + sys_corr_33: 4.96915634e+00 + sys_corr_34: -1.12374060e+01 + sys_corr_35: 3.48816194e+00 + sys_corr_36: 1.11780348e+01 + sys_corr_37: 1.35985124e+01 + sys_corr_38: -5.08090102e+00 + sys_corr_39: -1.03742060e+01 + sys_corr_40: 2.53463206e+01 + sys_corr_41: -3.64412382e+00 + sys_corr_42: -5.19412220e+01 + sys_corr_43: -1.84248204e+01 + sys_corr_44: 5.65392181e+01 + sys_corr_45: 1.10138422e+00 + sys_corr_46: -1.31657045e+01 + sys_corr_47: 1.61335671e+01 + sys_corr_48: -4.11338283e+01 + sys_corr_49: 1.39776566e+01 + sys_corr_50: -2.67508292e+00 + sys_corr_51: -8.42617400e-01 + sys_corr_52: -1.19112956e+01 + sys_corr_53: -1.68843962e+01 + sys_corr_54: -6.09958728e+01 + sys_corr_55: -1.74235537e+01 + sys_corr_56: -3.55171296e+01 + sys_corr_57: -1.54656798e+02 + sys_corr_58: 1.27979406e+02 + sys_corr_59: -9.37207483e+01 + sys_corr_60: -1.16801347e+02 + sys_corr_61: 1.06982511e+00 + sys_corr_62: -7.08124324e+01 + sys_corr_63: 2.08559464e+01 + sys_corr_64: -1.46057602e+01 + sys_corr_65: -4.31122770e+00 + sys_corr_66: -6.61654920e+00 + sys_corr_67: 2.60220146e+01 + sys_corr_68: -1.44721518e+01 + sys_corr_69: -3.30367304e+01 + sys_corr_70: -1.38537545e+01 + sys_corr_71: -1.02467389e+01 + sys_corr_72: 8.55850033e+00 + sys_corr_73: 6.50409695e+00 + sys_corr_74: 1.40256063e+00 + sys_corr_75: 1.82454568e+01 + sys_corr_76: -6.62389552e+00 + sys_corr_77: -2.00838986e+01 + sys_corr_78: 3.46567196e+00 + sys_corr_79: -1.25071532e+01 + sys_corr_80: 1.46481001e+00 + sys_corr_81: -1.51612475e+00 + sys_corr_82: 9.95002635e-01 + sys_corr_83: -7.82021607e-01 + sys_corr_84: 4.46762450e+00 + sys_corr_85: 8.68495273e-01 + sys_corr_86: -2.37039122e+00 + sys_corr_87: -7.02949257e-01 + sys_corr_88: -5.08634690e+00 + sys_corr_89: -1.54354757e+00 + sys_corr_90: -3.18459514e-01 + sys_corr_91: 8.43331579e-01 + sys_corr_92: 1.31662301e+01 + sys_corr_93: -1.80854841e-02 + sys_corr_94: 1.50669456e-01 + sys_corr_95: 8.90727179e-01 + sys_corr_96: 1.28075439e-01 + sys_corr_97: 5.42037820e-01 + sys_corr_98: 2.05062984e-01 + sys_corr_99: 3.90012636e-02 + sys_corr_100: -2.86129888e-01 + sys_corr_101: -6.67658839e-01 + sys_corr_102: -5.07491552e-01 + sys_corr_103: 5.18000938e-01 + sys_corr_104: 5.55419799e-01 + sys_corr_105: -2.48386191e-01 + sys_corr_106: -3.15493210e-01 + sys_corr_107: -1.53447595e-01 + sys_corr_108: 7.43931290e-02 + sys_corr_109: -1.91324489e-01 + sys_corr_110: -8.01932465e-04 + sys_corr_111: 1.02304360e-01 + sys_corr_112: -8.41950011e-02 + sys_corr_113: -1.01451853e-01 + sys_corr_114: 1.14029876e-03 + sys_corr_115: 1.29277615e-02 + sys_corr_116: -2.97255441e-02 + sys_corr_117: -3.21294448e-02 + sys_corr_118: 6.98683056e-02 + sys_corr_119: 7.48851328e-03 + sys_corr_120: 1.74425967e-02 + sys_corr_121: 4.36857071e-04 + sys_corr_122: 5.39945620e-03 + sys_corr_123: -1.53270925e-03 + sys_corr_124: -3.16287737e-02 + sys_corr_125: -3.88916267e-03 + sys_corr_126: -1.35551723e-03 + sys_corr_127: 4.14732416e-01 + sys_corr_128: 1.27162896e-01 + sys_corr_129: -6.43118557e-02 + sys_corr_130: -4.75118618e-03 + sys_corr_131: -1.12953341e-02 + sys_corr_132: 1.60325370e-02 stat: 0.0 - luminosity: 247.64438600000003 -- sys_corr_1: 124.38750867721583 - sys_corr_2: 58.757269688112395 - sys_corr_3: -13.012661314207152 - sys_corr_4: -10.359921854816399 - sys_corr_5: 6.188574401617202 - sys_corr_6: -131.18198375565746 - sys_corr_7: 29.107844120199836 - sys_corr_8: 13.569160406757339 - sys_corr_9: 13.426163653236289 - sys_corr_10: 3.3051485039606114 - sys_corr_11: 11.550228933636802 - sys_corr_12: 29.34569007449275 - sys_corr_13: -17.49874243370084 - sys_corr_14: 7.864260472424305 - sys_corr_15: 5.511320733337603 - sys_corr_16: -3.8603669924810644 - sys_corr_17: 2.298206794305162 - sys_corr_18: 2.6986578887167667 - sys_corr_19: 3.6365062061971165 - sys_corr_20: 0.8993485320252746 - sys_corr_21: -7.119974331874765 - sys_corr_22: -26.862951911457852 - sys_corr_23: -6.470371900464989 - sys_corr_24: 14.623502608845126 - sys_corr_25: 8.202001987466463 - sys_corr_26: 17.57643679444875 - sys_corr_27: -13.606771825913535 - sys_corr_28: -18.42097750322011 - sys_corr_29: 33.748252560450986 - sys_corr_30: -42.365931386951715 - sys_corr_31: 7.421627685644443 - sys_corr_32: -5.2300633698543555 - sys_corr_33: 3.159007047111833 - sys_corr_34: 2.9599547020965953 - sys_corr_35: -23.025557927667375 - sys_corr_36: 17.027976858117523 - sys_corr_37: 15.463391033738647 - sys_corr_38: 4.108553970651426 - sys_corr_39: -0.5360218924660902 - sys_corr_40: 2.697747003291486 - sys_corr_41: 1.7547958210600023 - sys_corr_42: -21.08808521545701 - sys_corr_43: 0.8565374396750293 - sys_corr_44: 25.504334608309122 - sys_corr_45: -9.113488333389629 - sys_corr_46: -2.0440401822135517 - sys_corr_47: 17.14506617480014 - sys_corr_48: -21.26719852397088 - sys_corr_49: 23.743092990008314 - sys_corr_50: -13.87616714801992 - sys_corr_51: -8.989326990902967 - sys_corr_52: -20.763411372943004 - sys_corr_53: -2.3618375470711537 - sys_corr_54: -17.660641990294362 - sys_corr_55: 0.2543633052872076 - sys_corr_56: -15.411630591841098 - sys_corr_57: -6.403186001999494 - sys_corr_58: -1.368979827254324 - sys_corr_59: 15.749619957764134 - sys_corr_60: 9.379174975822156 - sys_corr_61: -4.050720763285716 - sys_corr_62: 26.186427737701194 - sys_corr_63: -6.639486143850436 - sys_corr_64: 10.50747447277383 - sys_corr_65: -7.361354793796187 - sys_corr_66: 25.92536784250275 - sys_corr_67: -30.25934081044857 - sys_corr_68: -8.408936711156835 - sys_corr_69: 32.74285354845761 - sys_corr_70: 18.917710760497837 - sys_corr_71: 26.40801107760689 - sys_corr_72: -19.731381239786753 - sys_corr_73: -58.74027300641412 - sys_corr_74: 16.57710357399375 - sys_corr_75: 0.40200434971130966 - sys_corr_76: 8.380600990656514 - sys_corr_77: 14.034882016180397 - sys_corr_78: -32.87554569593086 - sys_corr_79: -131.73626724692517 - sys_corr_80: 11.852607201475472 - sys_corr_81: -115.99807178312713 - sys_corr_82: -10.203826808021008 - sys_corr_83: -20.4518575214489 - sys_corr_84: -19.982429806104605 - sys_corr_85: -11.895268919557886 - sys_corr_86: -34.89867233073909 - sys_corr_87: -62.28576184392267 - sys_corr_88: -7.350288924354254 - sys_corr_89: 1.071883624051537 - sys_corr_90: 2.017760113860247 - sys_corr_91: 3.7707741362358993 - sys_corr_92: -51.978440691910095 - sys_corr_93: -0.07741054946548998 - sys_corr_94: 0.5661544891405966 - sys_corr_95: -3.0904902064962685 - sys_corr_96: -0.7815303151111976 - sys_corr_97: 6.54284813818634 - sys_corr_98: 1.9042847907670086 - sys_corr_99: 2.0142104579450204 - sys_corr_100: 1.9874419436328832 - sys_corr_101: 4.959975323046244 - sys_corr_102: 21.123933941823726 - sys_corr_103: -3.8694158747797727 - sys_corr_104: -10.045598132991593 - sys_corr_105: 1.3047474509335701 - sys_corr_106: 1.7513588517497198 - sys_corr_107: 0.5091604959711631 - sys_corr_108: 0.054208524270984715 - sys_corr_109: -0.06866261756738164 - sys_corr_110: 3.16182427187802 - sys_corr_111: -0.06317697496572437 - sys_corr_112: -0.16422274376924648 - sys_corr_113: -0.18640263189395972 - sys_corr_114: -0.00013471677212182611 - sys_corr_115: 0.14037125547719592 - sys_corr_116: -0.0829813773881146 - sys_corr_117: -0.08148695772955968 - sys_corr_118: 0.1543997581848161 - sys_corr_119: 0.006790839616039307 - sys_corr_120: 0.023517614717054568 - sys_corr_121: -0.0018952804936550817 - sys_corr_122: 0.03210014968139367 - sys_corr_123: 0.016665650694801328 - sys_corr_124: -0.07336226930734052 - sys_corr_125: -0.031015749980852242 - sys_corr_126: -0.0038753441304735146 - sys_corr_127: 0.02584949666855333 - sys_corr_128: -0.21600080938900532 - sys_corr_129: -0.1305013583560417 - sys_corr_130: -0.005282558203739974 - sys_corr_131: -0.034252985145028766 - sys_corr_132: 0.03935177171812303 + luminosity: 2.47644386e+02 +- sys_corr_1: 1.24387509e+02 + sys_corr_2: 5.87572697e+01 + sys_corr_3: -1.30126613e+01 + sys_corr_4: -1.03599219e+01 + sys_corr_5: 6.18857440e+00 + sys_corr_6: -1.31181984e+02 + sys_corr_7: 2.91078441e+01 + sys_corr_8: 1.35691604e+01 + sys_corr_9: 1.34261637e+01 + sys_corr_10: 3.30514850e+00 + sys_corr_11: 1.15502289e+01 + sys_corr_12: 2.93456901e+01 + sys_corr_13: -1.74987424e+01 + sys_corr_14: 7.86426047e+00 + sys_corr_15: 5.51132073e+00 + sys_corr_16: -3.86036699e+00 + sys_corr_17: 2.29820679e+00 + sys_corr_18: 2.69865789e+00 + sys_corr_19: 3.63650621e+00 + sys_corr_20: 8.99348532e-01 + sys_corr_21: -7.11997433e+00 + sys_corr_22: -2.68629519e+01 + sys_corr_23: -6.47037190e+00 + sys_corr_24: 1.46235026e+01 + sys_corr_25: 8.20200199e+00 + sys_corr_26: 1.75764368e+01 + sys_corr_27: -1.36067718e+01 + sys_corr_28: -1.84209775e+01 + sys_corr_29: 3.37482526e+01 + sys_corr_30: -4.23659314e+01 + sys_corr_31: 7.42162769e+00 + sys_corr_32: -5.23006337e+00 + sys_corr_33: 3.15900705e+00 + sys_corr_34: 2.95995470e+00 + sys_corr_35: -2.30255579e+01 + sys_corr_36: 1.70279769e+01 + sys_corr_37: 1.54633910e+01 + sys_corr_38: 4.10855397e+00 + sys_corr_39: -5.36021892e-01 + sys_corr_40: 2.69774700e+00 + sys_corr_41: 1.75479582e+00 + sys_corr_42: -2.10880852e+01 + sys_corr_43: 8.56537440e-01 + sys_corr_44: 2.55043346e+01 + sys_corr_45: -9.11348833e+00 + sys_corr_46: -2.04404018e+00 + sys_corr_47: 1.71450662e+01 + sys_corr_48: -2.12671985e+01 + sys_corr_49: 2.37430930e+01 + sys_corr_50: -1.38761671e+01 + sys_corr_51: -8.98932699e+00 + sys_corr_52: -2.07634114e+01 + sys_corr_53: -2.36183755e+00 + sys_corr_54: -1.76606420e+01 + sys_corr_55: 2.54363305e-01 + sys_corr_56: -1.54116306e+01 + sys_corr_57: -6.40318600e+00 + sys_corr_58: -1.36897983e+00 + sys_corr_59: 1.57496200e+01 + sys_corr_60: 9.37917498e+00 + sys_corr_61: -4.05072076e+00 + sys_corr_62: 2.61864277e+01 + sys_corr_63: -6.63948614e+00 + sys_corr_64: 1.05074745e+01 + sys_corr_65: -7.36135479e+00 + sys_corr_66: 2.59253678e+01 + sys_corr_67: -3.02593408e+01 + sys_corr_68: -8.40893671e+00 + sys_corr_69: 3.27428535e+01 + sys_corr_70: 1.89177108e+01 + sys_corr_71: 2.64080111e+01 + sys_corr_72: -1.97313812e+01 + sys_corr_73: -5.87402730e+01 + sys_corr_74: 1.65771036e+01 + sys_corr_75: 4.02004350e-01 + sys_corr_76: 8.38060099e+00 + sys_corr_77: 1.40348820e+01 + sys_corr_78: -3.28755457e+01 + sys_corr_79: -1.31736267e+02 + sys_corr_80: 1.18526072e+01 + sys_corr_81: -1.15998072e+02 + sys_corr_82: -1.02038268e+01 + sys_corr_83: -2.04518575e+01 + sys_corr_84: -1.99824298e+01 + sys_corr_85: -1.18952689e+01 + sys_corr_86: -3.48986723e+01 + sys_corr_87: -6.22857618e+01 + sys_corr_88: -7.35028892e+00 + sys_corr_89: 1.07188362e+00 + sys_corr_90: 2.01776011e+00 + sys_corr_91: 3.77077414e+00 + sys_corr_92: -5.19784407e+01 + sys_corr_93: -7.74105495e-02 + sys_corr_94: 5.66154489e-01 + sys_corr_95: -3.09049021e+00 + sys_corr_96: -7.81530315e-01 + sys_corr_97: 6.54284814e+00 + sys_corr_98: 1.90428479e+00 + sys_corr_99: 2.01421046e+00 + sys_corr_100: 1.98744194e+00 + sys_corr_101: 4.95997532e+00 + sys_corr_102: 2.11239339e+01 + sys_corr_103: -3.86941587e+00 + sys_corr_104: -1.00455981e+01 + sys_corr_105: 1.30474745e+00 + sys_corr_106: 1.75135885e+00 + sys_corr_107: 5.09160496e-01 + sys_corr_108: 5.42085243e-02 + sys_corr_109: -6.86626176e-02 + sys_corr_110: 3.16182427e+00 + sys_corr_111: -6.31769750e-02 + sys_corr_112: -1.64222744e-01 + sys_corr_113: -1.86402632e-01 + sys_corr_114: -1.34716772e-04 + sys_corr_115: 1.40371255e-01 + sys_corr_116: -8.29813774e-02 + sys_corr_117: -8.14869577e-02 + sys_corr_118: 1.54399758e-01 + sys_corr_119: 6.79083962e-03 + sys_corr_120: 2.35176147e-02 + sys_corr_121: -1.89528049e-03 + sys_corr_122: 3.21001497e-02 + sys_corr_123: 1.66656507e-02 + sys_corr_124: -7.33622693e-02 + sys_corr_125: -3.10157500e-02 + sys_corr_126: -3.87534413e-03 + sys_corr_127: 2.58494967e-02 + sys_corr_128: -2.16000809e-01 + sys_corr_129: -1.30501358e-01 + sys_corr_130: -5.28255820e-03 + sys_corr_131: -3.42529851e-02 + sys_corr_132: 3.93517717e-02 stat: 0.0 - luminosity: 248.51530000000002 -- sys_corr_1: 127.88713199164391 - sys_corr_2: 57.70404365773364 - sys_corr_3: -4.942615468333367 - sys_corr_4: -31.96195345763319 - sys_corr_5: 14.802127242045227 - sys_corr_6: -107.79042360883011 - sys_corr_7: 28.2517623848789 - sys_corr_8: 17.532562271956643 - sys_corr_9: 21.21604007477831 - sys_corr_10: 1.5944383751521372 - sys_corr_11: 30.00533688703749 - sys_corr_12: 32.683528029123 - sys_corr_13: -22.300664273189195 - sys_corr_14: 6.032436216086021 - sys_corr_15: 3.606283828780346 - sys_corr_16: -7.7382780856740006 - sys_corr_17: -3.1359463043876907 - sys_corr_18: 1.9790985297109844 - sys_corr_19: -3.8601535885406792 - sys_corr_20: -5.806561530105062 - sys_corr_21: -8.298378441464271 - sys_corr_22: -37.82289557456311 - sys_corr_23: -7.622928872826321 - sys_corr_24: 24.173751953053397 - sys_corr_25: 5.293285784557262 - sys_corr_26: 10.2168350361296 - sys_corr_27: -9.997093858534802 - sys_corr_28: -23.758982823670475 - sys_corr_29: 42.422811868121926 - sys_corr_30: -39.77363958198093 - sys_corr_31: -3.098923834025032 - sys_corr_32: -12.455597926199108 - sys_corr_33: -3.5517573547291827 - sys_corr_34: 20.800727764987872 - sys_corr_35: -16.516281830389527 - sys_corr_36: 10.958817440559798 - sys_corr_37: 0.22458637035763673 - sys_corr_38: 16.467132752847437 - sys_corr_39: 11.539132812593039 - sys_corr_40: 3.4312209637932822 - sys_corr_41: 15.62843389582329 - sys_corr_42: -3.4796872625578117 - sys_corr_43: 16.10732828325901 - sys_corr_44: -19.983111848532666 - sys_corr_45: 4.372116634511096 - sys_corr_46: -0.05981463434284104 - sys_corr_47: 14.33036272577879 - sys_corr_48: -16.595329325189578 - sys_corr_49: 19.03081334255435 - sys_corr_50: -17.757875286934016 - sys_corr_51: 16.96857463365384 - sys_corr_52: -9.554143541677623 - sys_corr_53: -29.127572186529914 - sys_corr_54: 12.419646887604943 - sys_corr_55: 12.861833682894583 - sys_corr_56: 2.974488571809029 - sys_corr_57: -25.433558690565864 - sys_corr_58: 12.075011271136034 - sys_corr_59: -9.0437915196989 - sys_corr_60: -8.287106112656343 - sys_corr_61: 11.22951733399205 - sys_corr_62: 18.228100634192486 - sys_corr_63: 15.198396952857575 - sys_corr_64: -0.639763984754186 - sys_corr_65: -21.81277962825803 - sys_corr_66: 1.5407435387394526 - sys_corr_67: -3.1194368700831605 - sys_corr_68: 71.30271485913826 - sys_corr_69: -4.464546365213795 - sys_corr_70: 21.183379090475093 - sys_corr_71: 15.503161735097958 - sys_corr_72: -1.8655674089286889 - sys_corr_73: -57.212146419016605 - sys_corr_74: 7.2108971712096945 - sys_corr_75: 53.48793389967483 - sys_corr_76: 0.5074918757430474 - sys_corr_77: 104.17074042022999 - sys_corr_78: -8.619159939876594 - sys_corr_79: 128.84266297377889 - sys_corr_80: -0.9175321933611041 - sys_corr_81: -63.65528353197404 - sys_corr_82: 39.60829475495711 - sys_corr_83: -38.547945893221616 - sys_corr_84: -11.284577289877369 - sys_corr_85: 11.02400436113295 - sys_corr_86: -35.58887484003262 - sys_corr_87: -8.432420228582702 - sys_corr_88: -26.242957021198563 - sys_corr_89: -1.926077028770931 - sys_corr_90: -8.458935231425418 - sys_corr_91: -6.965894027050503 - sys_corr_92: -25.92858219973675 - sys_corr_93: 0.77719710362927 - sys_corr_94: 2.255254174674093 - sys_corr_95: -2.980980577962477 - sys_corr_96: -0.29840081997103224 - sys_corr_97: 3.978791339186963 - sys_corr_98: 1.4387117190641445 - sys_corr_99: 1.23388893796162 - sys_corr_100: -0.010539294762305352 - sys_corr_101: 0.2746749843512227 - sys_corr_102: 0.7148003248532474 - sys_corr_103: 0.45720116570348274 - sys_corr_104: -1.7018548144689833 - sys_corr_105: -0.3981753229790705 - sys_corr_106: -0.24745450740170166 - sys_corr_107: 0.2993951233739169 - sys_corr_108: -0.14870729943808428 - sys_corr_109: 0.16599383479831925 - sys_corr_110: 0.3217153538774268 - sys_corr_111: 0.14357762921812336 - sys_corr_112: -0.027335426461552886 - sys_corr_113: -0.14280768137790256 - sys_corr_114: 0.0021904816684043503 - sys_corr_115: -0.0025442635774047934 - sys_corr_116: -0.10535369856801857 - sys_corr_117: -0.05722925513751 - sys_corr_118: 0.15038116221604036 - sys_corr_119: 0.009665417754714313 - sys_corr_120: 0.04339771556941757 - sys_corr_121: 0.009596981566371163 - sys_corr_122: 0.03913541018960426 - sys_corr_123: 0.011821773131325103 - sys_corr_124: -0.13545539540098334 - sys_corr_125: -0.04243131409428072 - sys_corr_126: -0.0006381843068716897 - sys_corr_127: -0.22871738684142712 - sys_corr_128: 0.11524741373111727 - sys_corr_129: -0.03128158886096884 - sys_corr_130: -0.016161418109741654 - sys_corr_131: -0.03166011216321294 - sys_corr_132: 0.08094349586214002 + luminosity: 2.48515300e+02 +- sys_corr_1: 1.27887132e+02 + sys_corr_2: 5.77040437e+01 + sys_corr_3: -4.94261547e+00 + sys_corr_4: -3.19619535e+01 + sys_corr_5: 1.48021272e+01 + sys_corr_6: -1.07790424e+02 + sys_corr_7: 2.82517624e+01 + sys_corr_8: 1.75325623e+01 + sys_corr_9: 2.12160401e+01 + sys_corr_10: 1.59443838e+00 + sys_corr_11: 3.00053369e+01 + sys_corr_12: 3.26835280e+01 + sys_corr_13: -2.23006643e+01 + sys_corr_14: 6.03243622e+00 + sys_corr_15: 3.60628383e+00 + sys_corr_16: -7.73827809e+00 + sys_corr_17: -3.13594630e+00 + sys_corr_18: 1.97909853e+00 + sys_corr_19: -3.86015359e+00 + sys_corr_20: -5.80656153e+00 + sys_corr_21: -8.29837844e+00 + sys_corr_22: -3.78228956e+01 + sys_corr_23: -7.62292887e+00 + sys_corr_24: 2.41737520e+01 + sys_corr_25: 5.29328578e+00 + sys_corr_26: 1.02168350e+01 + sys_corr_27: -9.99709386e+00 + sys_corr_28: -2.37589828e+01 + sys_corr_29: 4.24228119e+01 + sys_corr_30: -3.97736396e+01 + sys_corr_31: -3.09892383e+00 + sys_corr_32: -1.24555979e+01 + sys_corr_33: -3.55175735e+00 + sys_corr_34: 2.08007278e+01 + sys_corr_35: -1.65162818e+01 + sys_corr_36: 1.09588174e+01 + sys_corr_37: 2.24586370e-01 + sys_corr_38: 1.64671328e+01 + sys_corr_39: 1.15391328e+01 + sys_corr_40: 3.43122096e+00 + sys_corr_41: 1.56284339e+01 + sys_corr_42: -3.47968726e+00 + sys_corr_43: 1.61073283e+01 + sys_corr_44: -1.99831118e+01 + sys_corr_45: 4.37211663e+00 + sys_corr_46: -5.98146343e-02 + sys_corr_47: 1.43303627e+01 + sys_corr_48: -1.65953293e+01 + sys_corr_49: 1.90308133e+01 + sys_corr_50: -1.77578753e+01 + sys_corr_51: 1.69685746e+01 + sys_corr_52: -9.55414354e+00 + sys_corr_53: -2.91275722e+01 + sys_corr_54: 1.24196469e+01 + sys_corr_55: 1.28618337e+01 + sys_corr_56: 2.97448857e+00 + sys_corr_57: -2.54335587e+01 + sys_corr_58: 1.20750113e+01 + sys_corr_59: -9.04379152e+00 + sys_corr_60: -8.28710611e+00 + sys_corr_61: 1.12295173e+01 + sys_corr_62: 1.82281006e+01 + sys_corr_63: 1.51983970e+01 + sys_corr_64: -6.39763985e-01 + sys_corr_65: -2.18127796e+01 + sys_corr_66: 1.54074354e+00 + sys_corr_67: -3.11943687e+00 + sys_corr_68: 7.13027149e+01 + sys_corr_69: -4.46454637e+00 + sys_corr_70: 2.11833791e+01 + sys_corr_71: 1.55031617e+01 + sys_corr_72: -1.86556741e+00 + sys_corr_73: -5.72121464e+01 + sys_corr_74: 7.21089717e+00 + sys_corr_75: 5.34879339e+01 + sys_corr_76: 5.07491876e-01 + sys_corr_77: 1.04170740e+02 + sys_corr_78: -8.61915994e+00 + sys_corr_79: 1.28842663e+02 + sys_corr_80: -9.17532193e-01 + sys_corr_81: -6.36552835e+01 + sys_corr_82: 3.96082948e+01 + sys_corr_83: -3.85479459e+01 + sys_corr_84: -1.12845773e+01 + sys_corr_85: 1.10240044e+01 + sys_corr_86: -3.55888748e+01 + sys_corr_87: -8.43242023e+00 + sys_corr_88: -2.62429570e+01 + sys_corr_89: -1.92607703e+00 + sys_corr_90: -8.45893523e+00 + sys_corr_91: -6.96589403e+00 + sys_corr_92: -2.59285822e+01 + sys_corr_93: 7.77197104e-01 + sys_corr_94: 2.25525417e+00 + sys_corr_95: -2.98098058e+00 + sys_corr_96: -2.98400820e-01 + sys_corr_97: 3.97879134e+00 + sys_corr_98: 1.43871172e+00 + sys_corr_99: 1.23388894e+00 + sys_corr_100: -1.05392948e-02 + sys_corr_101: 2.74674984e-01 + sys_corr_102: 7.14800325e-01 + sys_corr_103: 4.57201166e-01 + sys_corr_104: -1.70185481e+00 + sys_corr_105: -3.98175323e-01 + sys_corr_106: -2.47454507e-01 + sys_corr_107: 2.99395123e-01 + sys_corr_108: -1.48707299e-01 + sys_corr_109: 1.65993835e-01 + sys_corr_110: 3.21715354e-01 + sys_corr_111: 1.43577629e-01 + sys_corr_112: -2.73354265e-02 + sys_corr_113: -1.42807681e-01 + sys_corr_114: 2.19048167e-03 + sys_corr_115: -2.54426358e-03 + sys_corr_116: -1.05353699e-01 + sys_corr_117: -5.72292551e-02 + sys_corr_118: 1.50381162e-01 + sys_corr_119: 9.66541775e-03 + sys_corr_120: 4.33977156e-02 + sys_corr_121: 9.59698157e-03 + sys_corr_122: 3.91354102e-02 + sys_corr_123: 1.18217731e-02 + sys_corr_124: -1.35455395e-01 + sys_corr_125: -4.24313141e-02 + sys_corr_126: -6.38184307e-04 + sys_corr_127: -2.28717387e-01 + sys_corr_128: 1.15247414e-01 + sys_corr_129: -3.12815889e-02 + sys_corr_130: -1.61614181e-02 + sys_corr_131: -3.16601122e-02 + sys_corr_132: 8.09434959e-02 stat: 0.0 - luminosity: 245.734258 -- sys_corr_1: 115.69869511808409 - sys_corr_2: 49.814558182430545 - sys_corr_3: -19.833988589757222 - sys_corr_4: -50.7595218493474 - sys_corr_5: 35.25593223701889 - sys_corr_6: -112.37233604219686 - sys_corr_7: 21.460408859763653 - sys_corr_8: 12.008441655292506 - sys_corr_9: 18.034778647316173 - sys_corr_10: 0.013939061888826178 - sys_corr_11: 12.178168603637161 - sys_corr_12: 22.850485197211295 - sys_corr_13: -18.003155535322907 - sys_corr_14: -5.9780993329316345 - sys_corr_15: 8.638153925270776 - sys_corr_16: -0.7756782074710332 - sys_corr_17: 6.174246438374596 - sys_corr_18: -4.202839265197259 - sys_corr_19: -10.870227659120646 - sys_corr_20: -13.428841525691404 - sys_corr_21: -9.262658653959553 - sys_corr_22: -44.813078071202284 - sys_corr_23: -3.2187405740524877 - sys_corr_24: 24.53930730146463 - sys_corr_25: 8.237096425350005 - sys_corr_26: 16.60603675787656 - sys_corr_27: -7.209486773314783 - sys_corr_28: -6.097738165448511 - sys_corr_29: 17.988496450008395 - sys_corr_30: -35.94420484365448 - sys_corr_31: -18.102636015266203 - sys_corr_32: 3.9114561986160816 - sys_corr_33: 10.81559165391029 - sys_corr_34: -9.445848341321188 - sys_corr_35: -11.554694531573508 - sys_corr_36: 5.450816755284369 - sys_corr_37: -1.0690395720242156 - sys_corr_38: -7.096135688296749 - sys_corr_39: 17.548262066346673 - sys_corr_40: -1.257478135188138 - sys_corr_41: -0.35198173770921787 - sys_corr_42: -5.557364339926406 - sys_corr_43: -1.8324405474653653 - sys_corr_44: -18.60948397260281 - sys_corr_45: -40.860039119326174 - sys_corr_46: 7.673368616995036 - sys_corr_47: 20.375422010091295 - sys_corr_48: -14.50353636548224 - sys_corr_49: 16.024181315731884 - sys_corr_50: -6.363580060200263 - sys_corr_51: 10.488630530808178 - sys_corr_52: -10.85106879567778 - sys_corr_53: -9.834541204352217 - sys_corr_54: 12.457303869153227 - sys_corr_55: 6.031294500818735 - sys_corr_56: -16.337465978034018 - sys_corr_57: -8.678463214278327 - sys_corr_58: 19.713277732118524 - sys_corr_59: 5.084425674242338 - sys_corr_60: -6.705238939041382 - sys_corr_61: 22.36663970459987 - sys_corr_62: 3.450300868346582 - sys_corr_63: -11.466831569946484 - sys_corr_64: 20.29945628950493 - sys_corr_65: -14.535338206933563 - sys_corr_66: 13.926252171069157 - sys_corr_67: -15.939577289098379 - sys_corr_68: 27.494094241465604 - sys_corr_69: -6.0710321008405215 - sys_corr_70: 13.775812936697017 - sys_corr_71: -5.183265057055248 - sys_corr_72: -21.772666061031824 - sys_corr_73: 35.03275560125142 - sys_corr_74: 5.387466366858017 - sys_corr_75: -128.77693523636978 - sys_corr_76: 43.20279543272594 - sys_corr_77: -52.790531345203476 - sys_corr_78: -30.216734583777445 - sys_corr_79: 77.18547622274146 - sys_corr_80: 5.16347114231237 - sys_corr_81: -23.052022272806585 - sys_corr_82: -50.29824861323049 - sys_corr_83: 15.277038701685994 - sys_corr_84: 25.44356875223145 - sys_corr_85: 24.214241460691163 - sys_corr_86: 24.62363925539432 - sys_corr_87: -125.86649862943794 - sys_corr_88: 23.109359497294516 - sys_corr_89: -5.001599384133884 - sys_corr_90: -1.0571760213336112 - sys_corr_91: 2.8811982715689295 - sys_corr_92: -24.11182789998742 - sys_corr_93: 0.17707554962015273 - sys_corr_94: 0.8432575709285339 - sys_corr_95: -1.5268956693585696 - sys_corr_96: -0.29700712153632436 - sys_corr_97: 0.9427915744699621 - sys_corr_98: 0.1223382915523004 - sys_corr_99: 0.5618555053635745 - sys_corr_100: -0.16508894977339988 - sys_corr_101: -0.7138990357715469 - sys_corr_102: -1.5696518083223674 - sys_corr_103: 0.6470704665260903 - sys_corr_104: -0.024210557113658923 - sys_corr_105: 0.054632945024598194 - sys_corr_106: -0.2448694430983064 - sys_corr_107: 0.23828369305452643 - sys_corr_108: -0.0011550119151617826 - sys_corr_109: 0.06913413423160045 - sys_corr_110: 0.05721125409925753 - sys_corr_111: -0.1570356064978542 - sys_corr_112: 0.09202085965899416 - sys_corr_113: -0.10071249810505124 - sys_corr_114: 0.0017896730385036953 - sys_corr_115: 0.045489134551241685 - sys_corr_116: -0.06025044205147537 - sys_corr_117: -0.03946011286948547 - sys_corr_118: 0.15247015336330216 - sys_corr_119: 0.0028770369417649693 - sys_corr_120: 0.022138641285390642 - sys_corr_121: 0.0067997028806290214 - sys_corr_122: 0.011755620499647708 - sys_corr_123: 0.010639529830352322 - sys_corr_124: -0.08935202580892578 - sys_corr_125: -0.019325774815466705 - sys_corr_126: 0.0033869609724860067 - sys_corr_127: 0.4802565730616907 - sys_corr_128: 0.12112191498986037 - sys_corr_129: -0.11283711321426426 - sys_corr_130: 0.0012252741496167512 - sys_corr_131: -0.017993249278618072 - sys_corr_132: 0.025619607180733382 + luminosity: 2.45734258e+02 +- sys_corr_1: 1.15698695e+02 + sys_corr_2: 4.98145582e+01 + sys_corr_3: -1.98339886e+01 + sys_corr_4: -5.07595218e+01 + sys_corr_5: 3.52559322e+01 + sys_corr_6: -1.12372336e+02 + sys_corr_7: 2.14604089e+01 + sys_corr_8: 1.20084417e+01 + sys_corr_9: 1.80347786e+01 + sys_corr_10: 1.39390619e-02 + sys_corr_11: 1.21781686e+01 + sys_corr_12: 2.28504852e+01 + sys_corr_13: -1.80031555e+01 + sys_corr_14: -5.97809933e+00 + sys_corr_15: 8.63815393e+00 + sys_corr_16: -7.75678207e-01 + sys_corr_17: 6.17424644e+00 + sys_corr_18: -4.20283927e+00 + sys_corr_19: -1.08702277e+01 + sys_corr_20: -1.34288415e+01 + sys_corr_21: -9.26265865e+00 + sys_corr_22: -4.48130781e+01 + sys_corr_23: -3.21874057e+00 + sys_corr_24: 2.45393073e+01 + sys_corr_25: 8.23709643e+00 + sys_corr_26: 1.66060368e+01 + sys_corr_27: -7.20948677e+00 + sys_corr_28: -6.09773817e+00 + sys_corr_29: 1.79884965e+01 + sys_corr_30: -3.59442048e+01 + sys_corr_31: -1.81026360e+01 + sys_corr_32: 3.91145620e+00 + sys_corr_33: 1.08155917e+01 + sys_corr_34: -9.44584834e+00 + sys_corr_35: -1.15546945e+01 + sys_corr_36: 5.45081676e+00 + sys_corr_37: -1.06903957e+00 + sys_corr_38: -7.09613569e+00 + sys_corr_39: 1.75482621e+01 + sys_corr_40: -1.25747814e+00 + sys_corr_41: -3.51981738e-01 + sys_corr_42: -5.55736434e+00 + sys_corr_43: -1.83244055e+00 + sys_corr_44: -1.86094840e+01 + sys_corr_45: -4.08600391e+01 + sys_corr_46: 7.67336862e+00 + sys_corr_47: 2.03754220e+01 + sys_corr_48: -1.45035364e+01 + sys_corr_49: 1.60241813e+01 + sys_corr_50: -6.36358006e+00 + sys_corr_51: 1.04886305e+01 + sys_corr_52: -1.08510688e+01 + sys_corr_53: -9.83454120e+00 + sys_corr_54: 1.24573039e+01 + sys_corr_55: 6.03129450e+00 + sys_corr_56: -1.63374660e+01 + sys_corr_57: -8.67846321e+00 + sys_corr_58: 1.97132777e+01 + sys_corr_59: 5.08442567e+00 + sys_corr_60: -6.70523894e+00 + sys_corr_61: 2.23666397e+01 + sys_corr_62: 3.45030087e+00 + sys_corr_63: -1.14668316e+01 + sys_corr_64: 2.02994563e+01 + sys_corr_65: -1.45353382e+01 + sys_corr_66: 1.39262522e+01 + sys_corr_67: -1.59395773e+01 + sys_corr_68: 2.74940942e+01 + sys_corr_69: -6.07103210e+00 + sys_corr_70: 1.37758129e+01 + sys_corr_71: -5.18326506e+00 + sys_corr_72: -2.17726661e+01 + sys_corr_73: 3.50327556e+01 + sys_corr_74: 5.38746637e+00 + sys_corr_75: -1.28776935e+02 + sys_corr_76: 4.32027954e+01 + sys_corr_77: -5.27905313e+01 + sys_corr_78: -3.02167346e+01 + sys_corr_79: 7.71854762e+01 + sys_corr_80: 5.16347114e+00 + sys_corr_81: -2.30520223e+01 + sys_corr_82: -5.02982486e+01 + sys_corr_83: 1.52770387e+01 + sys_corr_84: 2.54435688e+01 + sys_corr_85: 2.42142415e+01 + sys_corr_86: 2.46236393e+01 + sys_corr_87: -1.25866499e+02 + sys_corr_88: 2.31093595e+01 + sys_corr_89: -5.00159938e+00 + sys_corr_90: -1.05717602e+00 + sys_corr_91: 2.88119827e+00 + sys_corr_92: -2.41118279e+01 + sys_corr_93: 1.77075550e-01 + sys_corr_94: 8.43257571e-01 + sys_corr_95: -1.52689567e+00 + sys_corr_96: -2.97007122e-01 + sys_corr_97: 9.42791574e-01 + sys_corr_98: 1.22338292e-01 + sys_corr_99: 5.61855505e-01 + sys_corr_100: -1.65088950e-01 + sys_corr_101: -7.13899036e-01 + sys_corr_102: -1.56965181e+00 + sys_corr_103: 6.47070467e-01 + sys_corr_104: -2.42105571e-02 + sys_corr_105: 5.46329450e-02 + sys_corr_106: -2.44869443e-01 + sys_corr_107: 2.38283693e-01 + sys_corr_108: -1.15501192e-03 + sys_corr_109: 6.91341342e-02 + sys_corr_110: 5.72112541e-02 + sys_corr_111: -1.57035606e-01 + sys_corr_112: 9.20208597e-02 + sys_corr_113: -1.00712498e-01 + sys_corr_114: 1.78967304e-03 + sys_corr_115: 4.54891346e-02 + sys_corr_116: -6.02504421e-02 + sys_corr_117: -3.94601129e-02 + sys_corr_118: 1.52470153e-01 + sys_corr_119: 2.87703694e-03 + sys_corr_120: 2.21386413e-02 + sys_corr_121: 6.79970288e-03 + sys_corr_122: 1.17556205e-02 + sys_corr_123: 1.06395298e-02 + sys_corr_124: -8.93520258e-02 + sys_corr_125: -1.93257748e-02 + sys_corr_126: 3.38696097e-03 + sys_corr_127: 4.80256573e-01 + sys_corr_128: 1.21121915e-01 + sys_corr_129: -1.12837113e-01 + sys_corr_130: 1.22527415e-03 + sys_corr_131: -1.79932493e-02 + sys_corr_132: 2.56196072e-02 stat: 0.0 - luminosity: 236.99966400000002 -- sys_corr_1: 107.35974326226015 - sys_corr_2: 50.27415223786964 - sys_corr_3: -24.369965400301982 - sys_corr_4: -58.906769304711666 - sys_corr_5: 42.05979441370369 - sys_corr_6: -105.56755706825196 - sys_corr_7: 13.361164796785586 - sys_corr_8: 10.633987619021374 - sys_corr_9: 15.682586694335061 - sys_corr_10: -1.316502410831635 - sys_corr_11: 10.576219516932031 - sys_corr_12: 20.920065050592253 - sys_corr_13: -11.556456603482392 - sys_corr_14: 7.633943991093997 - sys_corr_15: 2.474064453435621 - sys_corr_16: 0.32135632837604183 - sys_corr_17: 10.002989953300188 - sys_corr_18: -0.8711095917398185 - sys_corr_19: -8.06767338193187 - sys_corr_20: -15.988218004923754 - sys_corr_21: -8.989409696338145 - sys_corr_22: -55.572572036820766 - sys_corr_23: -6.015302746034905 - sys_corr_24: 25.332674680759872 - sys_corr_25: 9.978337647235156 - sys_corr_26: 22.856453290371984 - sys_corr_27: -9.176701465542225 - sys_corr_28: -8.160825347851633 - sys_corr_29: 17.47128534197504 - sys_corr_30: -26.24941818758045 - sys_corr_31: -33.89669444816673 - sys_corr_32: 14.826613335793692 - sys_corr_33: 11.233338362704709 - sys_corr_34: 7.0668526677439205 - sys_corr_35: -3.365264858516411 - sys_corr_36: 1.3558357365448994 - sys_corr_37: -13.578144667951435 - sys_corr_38: -5.4510523895650955 - sys_corr_39: -29.39245159712291 - sys_corr_40: 3.504967415583384 - sys_corr_41: 1.5265458248784813 - sys_corr_42: -4.598369609122836 - sys_corr_43: 1.3558974127119836 - sys_corr_44: -16.305474933493702 - sys_corr_45: 7.408559438167331 - sys_corr_46: -1.8888346057911503 - sys_corr_47: -6.700174986211964 - sys_corr_48: -18.963644230300073 - sys_corr_49: 35.03065783904029 - sys_corr_50: -28.971646046487532 - sys_corr_51: 22.46057919046031 - sys_corr_52: 24.099576625318726 - sys_corr_53: -8.468528733989295 - sys_corr_54: -13.521762580624864 - sys_corr_55: 17.91027208895391 - sys_corr_56: 17.265215437236918 - sys_corr_57: -38.58854827449498 - sys_corr_58: 31.61755522222156 - sys_corr_59: 11.721844629890153 - sys_corr_60: 44.23833362653731 - sys_corr_61: 141.9620465093156 - sys_corr_62: 93.64802181007526 - sys_corr_63: 36.08395186629278 - sys_corr_64: 5.375847332699608 - sys_corr_65: 183.13110466939835 - sys_corr_66: 17.642988006590937 - sys_corr_67: 26.51803357829327 - sys_corr_68: 14.549672626083382 - sys_corr_69: -21.148036354273998 - sys_corr_70: -43.38086681573714 - sys_corr_71: 24.757627988228965 - sys_corr_72: 30.48564663380485 - sys_corr_73: 13.264793606382295 - sys_corr_74: 2.460621835774207 - sys_corr_75: 6.588956894322245 - sys_corr_76: -6.263859702042408 - sys_corr_77: 3.284118644262093 - sys_corr_78: -2.5409392703214797 - sys_corr_79: -13.461925287071056 - sys_corr_80: -4.381270827632359 - sys_corr_81: 2.531980839251569 - sys_corr_82: -3.834591516327417 - sys_corr_83: 4.400148187162167 - sys_corr_84: 5.842657287085938 - sys_corr_85: 10.892283240707174 - sys_corr_86: 4.0501938944145195 - sys_corr_87: -2.634116044740632 - sys_corr_88: 0.7007471260723069 - sys_corr_89: -1.3585326256834886 - sys_corr_90: -3.0240764420676505 - sys_corr_91: -1.0630330619208288 - sys_corr_92: 2.3619334091907604 - sys_corr_93: 0.16999595476416077 - sys_corr_94: 0.3112560879052604 - sys_corr_95: -0.4841782386847621 - sys_corr_96: 0.005524930146913294 - sys_corr_97: -0.5292557200242496 - sys_corr_98: -0.13740276131966309 - sys_corr_99: -0.46016862346956683 - sys_corr_100: -0.6763554181263471 - sys_corr_101: -1.084697593711666 - sys_corr_102: -4.6653013106046535 - sys_corr_103: 0.8871398671647316 - sys_corr_104: 1.8778494739455558 - sys_corr_105: 0.1384718503677159 - sys_corr_106: -0.3372622442587936 - sys_corr_107: -0.3248213670057401 - sys_corr_108: -0.015411125956040142 - sys_corr_109: 0.07071986572250326 - sys_corr_110: -0.8387084868399718 - sys_corr_111: 0.001288850012988062 - sys_corr_112: 0.11376294245656797 - sys_corr_113: -0.08829417714455148 - sys_corr_114: 0.0010654594452934889 - sys_corr_115: -0.004557580341178633 - sys_corr_116: -0.02752240957548885 - sys_corr_117: -0.01965652574101344 - sys_corr_118: 0.10260743237262585 - sys_corr_119: 0.0028457202915139024 - sys_corr_120: 0.014077014354797088 - sys_corr_121: 0.005184071474713329 - sys_corr_122: 0.011441062162144407 - sys_corr_123: 0.007603533276435295 - sys_corr_124: -0.0456553975752673 - sys_corr_125: -0.017370637425394388 - sys_corr_126: 0.0005012897567385164 - sys_corr_127: 0.3461341740877903 - sys_corr_128: 0.10915890857439245 - sys_corr_129: 0.05885385422241147 - sys_corr_130: -0.004824192209897022 - sys_corr_131: -0.007411622758898786 - sys_corr_132: 0.004689063182669488 + luminosity: 2.36999664e+02 +- sys_corr_1: 1.07359743e+02 + sys_corr_2: 5.02741522e+01 + sys_corr_3: -2.43699654e+01 + sys_corr_4: -5.89067693e+01 + sys_corr_5: 4.20597944e+01 + sys_corr_6: -1.05567557e+02 + sys_corr_7: 1.33611648e+01 + sys_corr_8: 1.06339876e+01 + sys_corr_9: 1.56825867e+01 + sys_corr_10: -1.31650241e+00 + sys_corr_11: 1.05762195e+01 + sys_corr_12: 2.09200651e+01 + sys_corr_13: -1.15564566e+01 + sys_corr_14: 7.63394399e+00 + sys_corr_15: 2.47406445e+00 + sys_corr_16: 3.21356328e-01 + sys_corr_17: 1.00029900e+01 + sys_corr_18: -8.71109592e-01 + sys_corr_19: -8.06767338e+00 + sys_corr_20: -1.59882180e+01 + sys_corr_21: -8.98940970e+00 + sys_corr_22: -5.55725720e+01 + sys_corr_23: -6.01530275e+00 + sys_corr_24: 2.53326747e+01 + sys_corr_25: 9.97833765e+00 + sys_corr_26: 2.28564533e+01 + sys_corr_27: -9.17670147e+00 + sys_corr_28: -8.16082535e+00 + sys_corr_29: 1.74712853e+01 + sys_corr_30: -2.62494182e+01 + sys_corr_31: -3.38966944e+01 + sys_corr_32: 1.48266133e+01 + sys_corr_33: 1.12333384e+01 + sys_corr_34: 7.06685267e+00 + sys_corr_35: -3.36526486e+00 + sys_corr_36: 1.35583574e+00 + sys_corr_37: -1.35781447e+01 + sys_corr_38: -5.45105239e+00 + sys_corr_39: -2.93924516e+01 + sys_corr_40: 3.50496742e+00 + sys_corr_41: 1.52654582e+00 + sys_corr_42: -4.59836961e+00 + sys_corr_43: 1.35589741e+00 + sys_corr_44: -1.63054749e+01 + sys_corr_45: 7.40855944e+00 + sys_corr_46: -1.88883461e+00 + sys_corr_47: -6.70017499e+00 + sys_corr_48: -1.89636442e+01 + sys_corr_49: 3.50306578e+01 + sys_corr_50: -2.89716460e+01 + sys_corr_51: 2.24605792e+01 + sys_corr_52: 2.40995766e+01 + sys_corr_53: -8.46852873e+00 + sys_corr_54: -1.35217626e+01 + sys_corr_55: 1.79102721e+01 + sys_corr_56: 1.72652154e+01 + sys_corr_57: -3.85885483e+01 + sys_corr_58: 3.16175552e+01 + sys_corr_59: 1.17218446e+01 + sys_corr_60: 4.42383336e+01 + sys_corr_61: 1.41962047e+02 + sys_corr_62: 9.36480218e+01 + sys_corr_63: 3.60839519e+01 + sys_corr_64: 5.37584733e+00 + sys_corr_65: 1.83131105e+02 + sys_corr_66: 1.76429880e+01 + sys_corr_67: 2.65180336e+01 + sys_corr_68: 1.45496726e+01 + sys_corr_69: -2.11480364e+01 + sys_corr_70: -4.33808668e+01 + sys_corr_71: 2.47576280e+01 + sys_corr_72: 3.04856466e+01 + sys_corr_73: 1.32647936e+01 + sys_corr_74: 2.46062184e+00 + sys_corr_75: 6.58895689e+00 + sys_corr_76: -6.26385970e+00 + sys_corr_77: 3.28411864e+00 + sys_corr_78: -2.54093927e+00 + sys_corr_79: -1.34619253e+01 + sys_corr_80: -4.38127083e+00 + sys_corr_81: 2.53198084e+00 + sys_corr_82: -3.83459152e+00 + sys_corr_83: 4.40014819e+00 + sys_corr_84: 5.84265729e+00 + sys_corr_85: 1.08922832e+01 + sys_corr_86: 4.05019389e+00 + sys_corr_87: -2.63411604e+00 + sys_corr_88: 7.00747126e-01 + sys_corr_89: -1.35853263e+00 + sys_corr_90: -3.02407644e+00 + sys_corr_91: -1.06303306e+00 + sys_corr_92: 2.36193341e+00 + sys_corr_93: 1.69995955e-01 + sys_corr_94: 3.11256088e-01 + sys_corr_95: -4.84178239e-01 + sys_corr_96: 5.52493015e-03 + sys_corr_97: -5.29255720e-01 + sys_corr_98: -1.37402761e-01 + sys_corr_99: -4.60168623e-01 + sys_corr_100: -6.76355418e-01 + sys_corr_101: -1.08469759e+00 + sys_corr_102: -4.66530131e+00 + sys_corr_103: 8.87139867e-01 + sys_corr_104: 1.87784947e+00 + sys_corr_105: 1.38471850e-01 + sys_corr_106: -3.37262244e-01 + sys_corr_107: -3.24821367e-01 + sys_corr_108: -1.54111260e-02 + sys_corr_109: 7.07198657e-02 + sys_corr_110: -8.38708487e-01 + sys_corr_111: 1.28885001e-03 + sys_corr_112: 1.13762942e-01 + sys_corr_113: -8.82941771e-02 + sys_corr_114: 1.06545945e-03 + sys_corr_115: -4.55758034e-03 + sys_corr_116: -2.75224096e-02 + sys_corr_117: -1.96565257e-02 + sys_corr_118: 1.02607432e-01 + sys_corr_119: 2.84572029e-03 + sys_corr_120: 1.40770144e-02 + sys_corr_121: 5.18407147e-03 + sys_corr_122: 1.14410622e-02 + sys_corr_123: 7.60353328e-03 + sys_corr_124: -4.56553976e-02 + sys_corr_125: -1.73706374e-02 + sys_corr_126: 5.01289757e-04 + sys_corr_127: 3.46134174e-01 + sys_corr_128: 1.09158909e-01 + sys_corr_129: 5.88538542e-02 + sys_corr_130: -4.82419221e-03 + sys_corr_131: -7.41162276e-03 + sys_corr_132: 4.68906318e-03 stat: 0.0 - luminosity: 226.69594200000003 -- sys_corr_1: 98.44182134039143 - sys_corr_2: 43.46561491484906 - sys_corr_3: -30.215169362653167 - sys_corr_4: -62.931596204070004 - sys_corr_5: 54.62871022886743 - sys_corr_6: -111.95023790883734 - sys_corr_7: 12.855257717929689 - sys_corr_8: 6.8046337584987135 - sys_corr_9: 12.45686207422974 - sys_corr_10: -2.42720600558663 - sys_corr_11: -1.4177714449602121 - sys_corr_12: 5.870065517037397 - sys_corr_13: -10.657942291648911 - sys_corr_14: 0.43680740034108245 - sys_corr_15: 0.06311964962323861 - sys_corr_16: -2.731375578345651 - sys_corr_17: 0.28038276421207364 - sys_corr_18: 3.862930122156821 - sys_corr_19: -17.70476454618324 - sys_corr_20: -14.107166288003285 - sys_corr_21: -4.087938581782442 - sys_corr_22: -54.434324987409674 - sys_corr_23: -3.3914451973091726 - sys_corr_24: 24.13570816501134 - sys_corr_25: 11.803443808243447 - sys_corr_26: 26.384515022688486 - sys_corr_27: -4.647357652611676 - sys_corr_28: -2.2643387829560493 - sys_corr_29: 8.230339202611844 - sys_corr_30: -11.663972608070587 - sys_corr_31: -37.83942217362102 - sys_corr_32: 5.03016965145841 - sys_corr_33: 5.2529895657869075 - sys_corr_34: -2.8367773501542173 - sys_corr_35: 4.005287691467568 - sys_corr_36: -4.509230659615583 - sys_corr_37: -2.0511690021595874 - sys_corr_38: -26.47049674173434 - sys_corr_39: 8.094827069274135 - sys_corr_40: 1.8474525369508432 - sys_corr_41: 8.78347860395635 - sys_corr_42: 4.117715742726461 - sys_corr_43: -9.50278185805215 - sys_corr_44: -15.843047936417937 - sys_corr_45: -8.846133052065587 - sys_corr_46: -0.3166485496728149 - sys_corr_47: 4.491375522990772 - sys_corr_48: 4.862911989652032 - sys_corr_49: 1.37548974370854 - sys_corr_50: -0.8288611074031802 - sys_corr_51: 15.813961908752763 - sys_corr_52: 34.61188368173891 - sys_corr_53: -22.053017777879116 - sys_corr_54: 29.062308004132685 - sys_corr_55: 9.09385170127165 - sys_corr_56: -0.6255182011651346 - sys_corr_57: -8.883971572695101 - sys_corr_58: 16.367598979141228 - sys_corr_59: 1.2824891627932284 - sys_corr_60: -10.989345825233107 - sys_corr_61: 1.096941743076854 - sys_corr_62: -2.8212554104818603 - sys_corr_63: -5.187656971554271 - sys_corr_64: 14.877587415833888 - sys_corr_65: -19.781062525783184 - sys_corr_66: 19.80810048023735 - sys_corr_67: -6.905119282217574 - sys_corr_68: 5.401818232771432 - sys_corr_69: 2.24214177081968 - sys_corr_70: 10.416022468958804 - sys_corr_71: 4.712750182046701 - sys_corr_72: -30.25176097110543 - sys_corr_73: -58.31933713946626 - sys_corr_74: 3.311755858007077 - sys_corr_75: 36.15838217379997 - sys_corr_76: -11.665822466918835 - sys_corr_77: 73.0784400721491 - sys_corr_78: -7.6102207538657485 - sys_corr_79: -36.16726615110795 - sys_corr_80: -35.58641117075059 - sys_corr_81: 121.8669350905715 - sys_corr_82: -62.35047504127372 - sys_corr_83: 87.18302216776745 - sys_corr_84: 13.603565655480965 - sys_corr_85: 15.268501225462332 - sys_corr_86: -46.45976780512441 - sys_corr_87: -82.70899725628699 - sys_corr_88: -36.6212898328667 - sys_corr_89: -2.616360320647271 - sys_corr_90: -2.5246898797831117 - sys_corr_91: -4.4902833283153925 - sys_corr_92: -1.108279700119503 - sys_corr_93: 0.3375081837989809 - sys_corr_94: 0.5341173621811378 - sys_corr_95: -1.4200713124737865 - sys_corr_96: 0.41133183299389187 - sys_corr_97: 0.14092387573185614 - sys_corr_98: 0.24207941447112788 - sys_corr_99: 0.027233174929766187 - sys_corr_100: -0.20647906970411803 - sys_corr_101: -0.583883142802381 - sys_corr_102: -1.2255791563014466 - sys_corr_103: -1.132947553162248 - sys_corr_104: -0.1715008343908972 - sys_corr_105: 0.027493024248829216 - sys_corr_106: 0.512411484419622 - sys_corr_107: -0.08477256756844924 - sys_corr_108: 0.22200108314319428 - sys_corr_109: -0.003190254438655198 - sys_corr_110: -0.6353261790324444 - sys_corr_111: -0.03286396250297811 - sys_corr_112: 0.07782865253902123 - sys_corr_113: 0.08073783208496826 - sys_corr_114: -4.172853210193364e-05 - sys_corr_115: -0.010478806571771236 - sys_corr_116: -0.03112856240283865 - sys_corr_117: -0.018638321129582372 - sys_corr_118: -0.00022742779498457471 - sys_corr_119: 0.0057187911296429994 - sys_corr_120: 0.018497566126183956 - sys_corr_121: 0.0035781892358365693 - sys_corr_122: 0.01748056301451009 - sys_corr_123: 0.011231427070652751 - sys_corr_124: -0.04321559576053299 - sys_corr_125: -0.014478038757844612 - sys_corr_126: 0.00781975515539638 - sys_corr_127: -0.45934185252927817 - sys_corr_128: -0.08030257436173523 - sys_corr_129: 0.09269063776151698 - sys_corr_130: 0.0044126101340512735 - sys_corr_131: -0.01127809466207028 - sys_corr_132: -0.06393699502111541 + luminosity: 2.26695942e+02 +- sys_corr_1: 9.84418213e+01 + sys_corr_2: 4.34656149e+01 + sys_corr_3: -3.02151694e+01 + sys_corr_4: -6.29315962e+01 + sys_corr_5: 5.46287102e+01 + sys_corr_6: -1.11950238e+02 + sys_corr_7: 1.28552577e+01 + sys_corr_8: 6.80463376e+00 + sys_corr_9: 1.24568621e+01 + sys_corr_10: -2.42720601e+00 + sys_corr_11: -1.41777144e+00 + sys_corr_12: 5.87006552e+00 + sys_corr_13: -1.06579423e+01 + sys_corr_14: 4.36807400e-01 + sys_corr_15: 6.31196496e-02 + sys_corr_16: -2.73137558e+00 + sys_corr_17: 2.80382764e-01 + sys_corr_18: 3.86293012e+00 + sys_corr_19: -1.77047645e+01 + sys_corr_20: -1.41071663e+01 + sys_corr_21: -4.08793858e+00 + sys_corr_22: -5.44343250e+01 + sys_corr_23: -3.39144520e+00 + sys_corr_24: 2.41357082e+01 + sys_corr_25: 1.18034438e+01 + sys_corr_26: 2.63845150e+01 + sys_corr_27: -4.64735765e+00 + sys_corr_28: -2.26433878e+00 + sys_corr_29: 8.23033920e+00 + sys_corr_30: -1.16639726e+01 + sys_corr_31: -3.78394222e+01 + sys_corr_32: 5.03016965e+00 + sys_corr_33: 5.25298957e+00 + sys_corr_34: -2.83677735e+00 + sys_corr_35: 4.00528769e+00 + sys_corr_36: -4.50923066e+00 + sys_corr_37: -2.05116900e+00 + sys_corr_38: -2.64704967e+01 + sys_corr_39: 8.09482707e+00 + sys_corr_40: 1.84745254e+00 + sys_corr_41: 8.78347860e+00 + sys_corr_42: 4.11771574e+00 + sys_corr_43: -9.50278186e+00 + sys_corr_44: -1.58430479e+01 + sys_corr_45: -8.84613305e+00 + sys_corr_46: -3.16648550e-01 + sys_corr_47: 4.49137552e+00 + sys_corr_48: 4.86291199e+00 + sys_corr_49: 1.37548974e+00 + sys_corr_50: -8.28861107e-01 + sys_corr_51: 1.58139619e+01 + sys_corr_52: 3.46118837e+01 + sys_corr_53: -2.20530178e+01 + sys_corr_54: 2.90623080e+01 + sys_corr_55: 9.09385170e+00 + sys_corr_56: -6.25518201e-01 + sys_corr_57: -8.88397157e+00 + sys_corr_58: 1.63675990e+01 + sys_corr_59: 1.28248916e+00 + sys_corr_60: -1.09893458e+01 + sys_corr_61: 1.09694174e+00 + sys_corr_62: -2.82125541e+00 + sys_corr_63: -5.18765697e+00 + sys_corr_64: 1.48775874e+01 + sys_corr_65: -1.97810625e+01 + sys_corr_66: 1.98081005e+01 + sys_corr_67: -6.90511928e+00 + sys_corr_68: 5.40181823e+00 + sys_corr_69: 2.24214177e+00 + sys_corr_70: 1.04160225e+01 + sys_corr_71: 4.71275018e+00 + sys_corr_72: -3.02517610e+01 + sys_corr_73: -5.83193371e+01 + sys_corr_74: 3.31175586e+00 + sys_corr_75: 3.61583822e+01 + sys_corr_76: -1.16658225e+01 + sys_corr_77: 7.30784401e+01 + sys_corr_78: -7.61022075e+00 + sys_corr_79: -3.61672662e+01 + sys_corr_80: -3.55864112e+01 + sys_corr_81: 1.21866935e+02 + sys_corr_82: -6.23504750e+01 + sys_corr_83: 8.71830222e+01 + sys_corr_84: 1.36035657e+01 + sys_corr_85: 1.52685012e+01 + sys_corr_86: -4.64597678e+01 + sys_corr_87: -8.27089973e+01 + sys_corr_88: -3.66212898e+01 + sys_corr_89: -2.61636032e+00 + sys_corr_90: -2.52468988e+00 + sys_corr_91: -4.49028333e+00 + sys_corr_92: -1.10827970e+00 + sys_corr_93: 3.37508184e-01 + sys_corr_94: 5.34117362e-01 + sys_corr_95: -1.42007131e+00 + sys_corr_96: 4.11331833e-01 + sys_corr_97: 1.40923876e-01 + sys_corr_98: 2.42079414e-01 + sys_corr_99: 2.72331749e-02 + sys_corr_100: -2.06479070e-01 + sys_corr_101: -5.83883143e-01 + sys_corr_102: -1.22557916e+00 + sys_corr_103: -1.13294755e+00 + sys_corr_104: -1.71500834e-01 + sys_corr_105: 2.74930242e-02 + sys_corr_106: 5.12411484e-01 + sys_corr_107: -8.47725676e-02 + sys_corr_108: 2.22001083e-01 + sys_corr_109: -3.19025444e-03 + sys_corr_110: -6.35326179e-01 + sys_corr_111: -3.28639625e-02 + sys_corr_112: 7.78286525e-02 + sys_corr_113: 8.07378321e-02 + sys_corr_114: -4.17285321e-05 + sys_corr_115: -1.04788066e-02 + sys_corr_116: -3.11285624e-02 + sys_corr_117: -1.86383211e-02 + sys_corr_118: -2.27427795e-04 + sys_corr_119: 5.71879113e-03 + sys_corr_120: 1.84975661e-02 + sys_corr_121: 3.57818924e-03 + sys_corr_122: 1.74805630e-02 + sys_corr_123: 1.12314271e-02 + sys_corr_124: -4.32155958e-02 + sys_corr_125: -1.44780388e-02 + sys_corr_126: 7.81975516e-03 + sys_corr_127: -4.59341853e-01 + sys_corr_128: -8.03025744e-02 + sys_corr_129: 9.26906378e-02 + sys_corr_130: 4.41261013e-03 + sys_corr_131: -1.12780947e-02 + sys_corr_132: -6.39369950e-02 stat: 0.0 - luminosity: 214.20009600000003 -- sys_corr_1: 98.12193810563761 - sys_corr_2: 36.62729736638478 - sys_corr_3: -29.628852362499053 - sys_corr_4: -72.0077689974656 - sys_corr_5: 49.829648792795 - sys_corr_6: -94.76522388941643 - sys_corr_7: 13.163912522623484 - sys_corr_8: 7.600771659990058 - sys_corr_9: 14.580470730774692 - sys_corr_10: -3.8108524839487012 - sys_corr_11: 7.443656128042112 - sys_corr_12: 6.088797974990488 - sys_corr_13: -6.5696467771846825 - sys_corr_14: -1.5342637551203304 - sys_corr_15: 3.070934667061028 - sys_corr_16: -4.274832071134701 - sys_corr_17: 13.978036384671302 - sys_corr_18: 14.9854848789734 - sys_corr_19: -7.894711630390213 - sys_corr_20: -9.958760384501423 - sys_corr_21: -14.215555406409495 - sys_corr_22: -49.43013185097305 - sys_corr_23: 3.435270971429641 - sys_corr_24: 32.81039575962834 - sys_corr_25: 12.227015303469265 - sys_corr_26: 26.669296069596705 - sys_corr_27: -3.088290677358452 - sys_corr_28: 3.9685183430192486 - sys_corr_29: -3.7215975591537425 - sys_corr_30: -7.803960725130166 - sys_corr_31: -37.837714587219295 - sys_corr_32: -0.509079326571352 - sys_corr_33: -7.389474471698798 - sys_corr_34: 4.017802125604005 - sys_corr_35: 4.90204992441068 - sys_corr_36: 8.66442625761386 - sys_corr_37: -11.199018099261759 - sys_corr_38: -5.888593294821986 - sys_corr_39: 3.75921272174654 - sys_corr_40: -5.720199619281027 - sys_corr_41: 3.533308193201405 - sys_corr_42: -2.986478133196955 - sys_corr_43: -5.907014383634945 - sys_corr_44: -4.216606261420566 - sys_corr_45: 19.547044985489194 - sys_corr_46: 1.0651623841020457 - sys_corr_47: 5.438296729126636 - sys_corr_48: -11.850384698477761 - sys_corr_49: -2.7053251769103173 - sys_corr_50: -0.7637331895935116 - sys_corr_51: -4.17666126744068 - sys_corr_52: 1.4671902081789037 - sys_corr_53: -2.2212645526509696 - sys_corr_54: -6.083054089469398 - sys_corr_55: -4.0161871588815234 - sys_corr_56: -6.653854589635717 - sys_corr_57: -12.730921658931708 - sys_corr_58: -10.41824296591698 - sys_corr_59: -2.5450574243529767 - sys_corr_60: 4.621741803624437 - sys_corr_61: 4.197286837150427 - sys_corr_62: 14.01920449245187 - sys_corr_63: 13.906264110676341 - sys_corr_64: -1.1809475658750983 - sys_corr_65: 1.5796976713803987 - sys_corr_66: 4.7406729479550105 - sys_corr_67: -7.572332743006993 - sys_corr_68: -4.417437765165689 - sys_corr_69: 9.519158471510643 - sys_corr_70: 5.507564813304943 - sys_corr_71: -4.696740999927536 - sys_corr_72: -16.670926482564603 - sys_corr_73: -10.962337033166364 - sys_corr_74: -1.6124527532780617 - sys_corr_75: -13.024607358054272 - sys_corr_76: 16.64992201259588 - sys_corr_77: 0.06974217001473047 - sys_corr_78: 190.26657109416576 - sys_corr_79: 4.087695523376385 - sys_corr_80: 52.272806591697766 - sys_corr_81: 0.15166570260320397 - sys_corr_82: -17.097979014415913 - sys_corr_83: -7.852853827857127 - sys_corr_84: -28.636202027770207 - sys_corr_85: -15.115296634957406 - sys_corr_86: 2.46073719361706 - sys_corr_87: -40.54409167538296 - sys_corr_88: -7.8886845922886275 - sys_corr_89: 0.23994524156544988 - sys_corr_90: -11.918339773850755 - sys_corr_91: -24.051112512610256 - sys_corr_92: -6.736289014355158 - sys_corr_93: 0.35074740733995535 - sys_corr_94: -0.6648185858052637 - sys_corr_95: -0.4212203992944203 - sys_corr_96: -0.04028988054649623 - sys_corr_97: 1.0922102371429994 - sys_corr_98: 0.992077187583593 - sys_corr_99: 0.9157375250278675 - sys_corr_100: 2.453553766010315 - sys_corr_101: 4.2767238424903935 - sys_corr_102: 16.76930560971391 - sys_corr_103: -6.0478486730450305 - sys_corr_104: -6.926723795496596 - sys_corr_105: 2.610301622073082 - sys_corr_106: 1.8493669422635346 - sys_corr_107: 1.4613841346407779 - sys_corr_108: 0.4041585633363778 - sys_corr_109: -0.04006582401962404 - sys_corr_110: 0.15735609982464863 - sys_corr_111: -0.05322568534690033 - sys_corr_112: -0.039119413053601476 - sys_corr_113: 0.10386232341887551 - sys_corr_114: -0.0016177351370906517 - sys_corr_115: -0.047612500553682165 - sys_corr_116: -0.019378572426684282 - sys_corr_117: -0.021455595607256916 - sys_corr_118: 0.1308507058175956 - sys_corr_119: 0.008239555453006973 - sys_corr_120: 0.02959062912676639 - sys_corr_121: 0.00755062933488131 - sys_corr_122: 0.09448871461863352 - sys_corr_123: 0.05311793662757863 - sys_corr_124: -0.009464168538093159 - sys_corr_125: -0.05218826794818711 - sys_corr_126: 0.024733192713400114 - sys_corr_127: -0.7580954647284082 - sys_corr_128: -0.650931719706697 - sys_corr_129: -0.11078148739785218 - sys_corr_130: 0.01051290141570789 - sys_corr_131: -0.03558129306248996 - sys_corr_132: -0.05770748660083498 + luminosity: 2.14200096e+02 +- sys_corr_1: 9.81219381e+01 + sys_corr_2: 3.66272974e+01 + sys_corr_3: -2.96288524e+01 + sys_corr_4: -7.20077690e+01 + sys_corr_5: 4.98296488e+01 + sys_corr_6: -9.47652239e+01 + sys_corr_7: 1.31639125e+01 + sys_corr_8: 7.60077166e+00 + sys_corr_9: 1.45804707e+01 + sys_corr_10: -3.81085248e+00 + sys_corr_11: 7.44365613e+00 + sys_corr_12: 6.08879797e+00 + sys_corr_13: -6.56964678e+00 + sys_corr_14: -1.53426376e+00 + sys_corr_15: 3.07093467e+00 + sys_corr_16: -4.27483207e+00 + sys_corr_17: 1.39780364e+01 + sys_corr_18: 1.49854849e+01 + sys_corr_19: -7.89471163e+00 + sys_corr_20: -9.95876038e+00 + sys_corr_21: -1.42155554e+01 + sys_corr_22: -4.94301319e+01 + sys_corr_23: 3.43527097e+00 + sys_corr_24: 3.28103958e+01 + sys_corr_25: 1.22270153e+01 + sys_corr_26: 2.66692961e+01 + sys_corr_27: -3.08829068e+00 + sys_corr_28: 3.96851834e+00 + sys_corr_29: -3.72159756e+00 + sys_corr_30: -7.80396073e+00 + sys_corr_31: -3.78377146e+01 + sys_corr_32: -5.09079327e-01 + sys_corr_33: -7.38947447e+00 + sys_corr_34: 4.01780213e+00 + sys_corr_35: 4.90204992e+00 + sys_corr_36: 8.66442626e+00 + sys_corr_37: -1.11990181e+01 + sys_corr_38: -5.88859329e+00 + sys_corr_39: 3.75921272e+00 + sys_corr_40: -5.72019962e+00 + sys_corr_41: 3.53330819e+00 + sys_corr_42: -2.98647813e+00 + sys_corr_43: -5.90701438e+00 + sys_corr_44: -4.21660626e+00 + sys_corr_45: 1.95470450e+01 + sys_corr_46: 1.06516238e+00 + sys_corr_47: 5.43829673e+00 + sys_corr_48: -1.18503847e+01 + sys_corr_49: -2.70532518e+00 + sys_corr_50: -7.63733190e-01 + sys_corr_51: -4.17666127e+00 + sys_corr_52: 1.46719021e+00 + sys_corr_53: -2.22126455e+00 + sys_corr_54: -6.08305409e+00 + sys_corr_55: -4.01618716e+00 + sys_corr_56: -6.65385459e+00 + sys_corr_57: -1.27309217e+01 + sys_corr_58: -1.04182430e+01 + sys_corr_59: -2.54505742e+00 + sys_corr_60: 4.62174180e+00 + sys_corr_61: 4.19728684e+00 + sys_corr_62: 1.40192045e+01 + sys_corr_63: 1.39062641e+01 + sys_corr_64: -1.18094757e+00 + sys_corr_65: 1.57969767e+00 + sys_corr_66: 4.74067295e+00 + sys_corr_67: -7.57233274e+00 + sys_corr_68: -4.41743777e+00 + sys_corr_69: 9.51915847e+00 + sys_corr_70: 5.50756481e+00 + sys_corr_71: -4.69674100e+00 + sys_corr_72: -1.66709265e+01 + sys_corr_73: -1.09623370e+01 + sys_corr_74: -1.61245275e+00 + sys_corr_75: -1.30246074e+01 + sys_corr_76: 1.66499220e+01 + sys_corr_77: 6.97421700e-02 + sys_corr_78: 1.90266571e+02 + sys_corr_79: 4.08769552e+00 + sys_corr_80: 5.22728066e+01 + sys_corr_81: 1.51665703e-01 + sys_corr_82: -1.70979790e+01 + sys_corr_83: -7.85285383e+00 + sys_corr_84: -2.86362020e+01 + sys_corr_85: -1.51152966e+01 + sys_corr_86: 2.46073719e+00 + sys_corr_87: -4.05440917e+01 + sys_corr_88: -7.88868459e+00 + sys_corr_89: 2.39945242e-01 + sys_corr_90: -1.19183398e+01 + sys_corr_91: -2.40511125e+01 + sys_corr_92: -6.73628901e+00 + sys_corr_93: 3.50747407e-01 + sys_corr_94: -6.64818586e-01 + sys_corr_95: -4.21220399e-01 + sys_corr_96: -4.02898805e-02 + sys_corr_97: 1.09221024e+00 + sys_corr_98: 9.92077188e-01 + sys_corr_99: 9.15737525e-01 + sys_corr_100: 2.45355377e+00 + sys_corr_101: 4.27672384e+00 + sys_corr_102: 1.67693056e+01 + sys_corr_103: -6.04784867e+00 + sys_corr_104: -6.92672380e+00 + sys_corr_105: 2.61030162e+00 + sys_corr_106: 1.84936694e+00 + sys_corr_107: 1.46138413e+00 + sys_corr_108: 4.04158563e-01 + sys_corr_109: -4.00658240e-02 + sys_corr_110: 1.57356100e-01 + sys_corr_111: -5.32256853e-02 + sys_corr_112: -3.91194131e-02 + sys_corr_113: 1.03862323e-01 + sys_corr_114: -1.61773514e-03 + sys_corr_115: -4.76125006e-02 + sys_corr_116: -1.93785724e-02 + sys_corr_117: -2.14555956e-02 + sys_corr_118: 1.30850706e-01 + sys_corr_119: 8.23955545e-03 + sys_corr_120: 2.95906291e-02 + sys_corr_121: 7.55062933e-03 + sys_corr_122: 9.44887146e-02 + sys_corr_123: 5.31179366e-02 + sys_corr_124: -9.46416854e-03 + sys_corr_125: -5.21882679e-02 + sys_corr_126: 2.47331927e-02 + sys_corr_127: -7.58095465e-01 + sys_corr_128: -6.50931720e-01 + sys_corr_129: -1.10781487e-01 + sys_corr_130: 1.05129014e-02 + sys_corr_131: -3.55812931e-02 + sys_corr_132: -5.77074866e-02 stat: 0.0 - luminosity: 215.63733400000004 -- sys_corr_1: 85.71132527631026 - sys_corr_2: 34.921423457799364 - sys_corr_3: -33.98004235323233 - sys_corr_4: -52.842825439647655 - sys_corr_5: 41.48670750787437 - sys_corr_6: -83.45958698549023 - sys_corr_7: 15.55487874016392 - sys_corr_8: 7.283160454569175 - sys_corr_9: 13.717935380738934 - sys_corr_10: -2.3864357720632237 - sys_corr_11: 3.8471251577547774 - sys_corr_12: 7.235308775003311 - sys_corr_13: -4.028616806591348 - sys_corr_14: -1.4739925498711792 - sys_corr_15: 2.448375627828632 - sys_corr_16: 0.03176681803254013 - sys_corr_17: -5.901964889891491 - sys_corr_18: 6.76938271218691 - sys_corr_19: 1.33191874476346 - sys_corr_20: -7.581345117025282 - sys_corr_21: -14.198521938864225 - sys_corr_22: -42.58315138765223 - sys_corr_23: 2.7175898858465573 - sys_corr_24: 9.064106060708655 - sys_corr_25: 11.144980519433208 - sys_corr_26: 28.869771805810192 - sys_corr_27: -10.369150211878154 - sys_corr_28: 1.3212423639011153 - sys_corr_29: 0.42583240617198825 - sys_corr_30: -11.492295906993778 - sys_corr_31: -28.054500259084715 - sys_corr_32: 2.7097150919172623 - sys_corr_33: 2.0253551927452893 - sys_corr_34: 0.8661000382173362 - sys_corr_35: 5.733665883189887 - sys_corr_36: -4.465676063257562 - sys_corr_37: -8.60906784991304 - sys_corr_38: -4.923137502641071 - sys_corr_39: 5.527997475124549 - sys_corr_40: -7.342953909029286 - sys_corr_41: 3.88872015967346 - sys_corr_42: 14.608906236017212 - sys_corr_43: -10.162862407719109 - sys_corr_44: -11.219313295186424 - sys_corr_45: 1.718097843822207 - sys_corr_46: 1.7234826068075073 - sys_corr_47: 6.584018642166178 - sys_corr_48: -8.80557251228733 - sys_corr_49: -4.218360624757862 - sys_corr_50: -11.000323120922548 - sys_corr_51: 2.6662252332154477 - sys_corr_52: 1.2184269019004184 - sys_corr_53: -4.23876729471951 - sys_corr_54: 3.1304345880719473 - sys_corr_55: 0.12411303304117413 - sys_corr_56: -8.047122062698083 - sys_corr_57: -7.635172242964096 - sys_corr_58: 4.704937555278515 - sys_corr_59: 6.178497929300649 - sys_corr_60: 1.2693768534271839 - sys_corr_61: 8.1426299905097 - sys_corr_62: 1.3240047440025609 - sys_corr_63: 0.2750266604385503 - sys_corr_64: 1.1135717785474717 - sys_corr_65: 3.8420947896402025 - sys_corr_66: 1.1976473730700115 - sys_corr_67: 3.703286877795251 - sys_corr_68: 0.2788919717887537 - sys_corr_69: -0.5278590579866379 - sys_corr_70: -9.975928695282084 - sys_corr_71: -2.386193906273651 - sys_corr_72: -8.631110211646936 - sys_corr_73: -13.490553732599482 - sys_corr_74: 4.576317218111625 - sys_corr_75: 5.1291816083488495 - sys_corr_76: 6.487476657029009 - sys_corr_77: -36.81215485290331 - sys_corr_78: -43.18218492010808 - sys_corr_79: 26.270440738877483 - sys_corr_80: 0.03390987788073277 - sys_corr_81: 21.275606798591625 - sys_corr_82: -10.796682984562853 - sys_corr_83: 9.320549799275335 - sys_corr_84: -134.59725302110385 - sys_corr_85: -117.261173255999 - sys_corr_86: -5.868543133492147 - sys_corr_87: -21.370318882854317 - sys_corr_88: -10.167403289417308 - sys_corr_89: 23.026639936610465 - sys_corr_90: -19.48112086332004 - sys_corr_91: -41.72942945192943 - sys_corr_92: 8.620006948662521 - sys_corr_93: -0.0913498180900494 - sys_corr_94: -2.332206255121851 - sys_corr_95: 0.24342596508210126 - sys_corr_96: 0.8403689949705131 - sys_corr_97: -3.578795067971371 - sys_corr_98: -1.2596501385985026 - sys_corr_99: -3.3824438177227076 - sys_corr_100: -0.9177387696291945 - sys_corr_101: -4.0439287847052725 - sys_corr_102: -19.083422491125805 - sys_corr_103: 1.9567734329797966 - sys_corr_104: 8.057661220029551 - sys_corr_105: -0.5481432429132118 - sys_corr_106: -0.8980330734285831 - sys_corr_107: 0.2215719340326753 - sys_corr_108: -0.06772366456871107 - sys_corr_109: 0.6865032688070382 - sys_corr_110: -3.0150842706747873 - sys_corr_111: -0.305212356104499 - sys_corr_112: 0.18906679562653247 - sys_corr_113: 0.0741839995523123 - sys_corr_114: -0.0004393921220967154 - sys_corr_115: -0.11520811215299286 - sys_corr_116: 0.021928843553157638 - sys_corr_117: 0.00953898468504462 - sys_corr_118: 0.012677272773426227 - sys_corr_119: 0.009066206689891984 - sys_corr_120: -0.011273514124103537 - sys_corr_121: 0.011080979222458896 - sys_corr_122: 0.016535096075640944 - sys_corr_123: 0.01507080696000574 - sys_corr_124: -0.04828987162969172 - sys_corr_125: -0.016247751335933792 - sys_corr_126: 0.00563929204622928 - sys_corr_127: 0.7436767791404736 - sys_corr_128: -0.025630147262317413 - sys_corr_129: -0.06932751656553653 - sys_corr_130: -0.013262768885452064 - sys_corr_131: 0.011077300738342665 - sys_corr_132: -0.04102412219728707 + luminosity: 2.15637334e+02 +- sys_corr_1: 8.57113253e+01 + sys_corr_2: 3.49214235e+01 + sys_corr_3: -3.39800424e+01 + sys_corr_4: -5.28428254e+01 + sys_corr_5: 4.14867075e+01 + sys_corr_6: -8.34595870e+01 + sys_corr_7: 1.55548787e+01 + sys_corr_8: 7.28316045e+00 + sys_corr_9: 1.37179354e+01 + sys_corr_10: -2.38643577e+00 + sys_corr_11: 3.84712516e+00 + sys_corr_12: 7.23530878e+00 + sys_corr_13: -4.02861681e+00 + sys_corr_14: -1.47399255e+00 + sys_corr_15: 2.44837563e+00 + sys_corr_16: 3.17668180e-02 + sys_corr_17: -5.90196489e+00 + sys_corr_18: 6.76938271e+00 + sys_corr_19: 1.33191874e+00 + sys_corr_20: -7.58134512e+00 + sys_corr_21: -1.41985219e+01 + sys_corr_22: -4.25831514e+01 + sys_corr_23: 2.71758989e+00 + sys_corr_24: 9.06410606e+00 + sys_corr_25: 1.11449805e+01 + sys_corr_26: 2.88697718e+01 + sys_corr_27: -1.03691502e+01 + sys_corr_28: 1.32124236e+00 + sys_corr_29: 4.25832406e-01 + sys_corr_30: -1.14922959e+01 + sys_corr_31: -2.80545003e+01 + sys_corr_32: 2.70971509e+00 + sys_corr_33: 2.02535519e+00 + sys_corr_34: 8.66100038e-01 + sys_corr_35: 5.73366588e+00 + sys_corr_36: -4.46567606e+00 + sys_corr_37: -8.60906785e+00 + sys_corr_38: -4.92313750e+00 + sys_corr_39: 5.52799748e+00 + sys_corr_40: -7.34295391e+00 + sys_corr_41: 3.88872016e+00 + sys_corr_42: 1.46089062e+01 + sys_corr_43: -1.01628624e+01 + sys_corr_44: -1.12193133e+01 + sys_corr_45: 1.71809784e+00 + sys_corr_46: 1.72348261e+00 + sys_corr_47: 6.58401864e+00 + sys_corr_48: -8.80557251e+00 + sys_corr_49: -4.21836062e+00 + sys_corr_50: -1.10003231e+01 + sys_corr_51: 2.66622523e+00 + sys_corr_52: 1.21842690e+00 + sys_corr_53: -4.23876729e+00 + sys_corr_54: 3.13043459e+00 + sys_corr_55: 1.24113033e-01 + sys_corr_56: -8.04712206e+00 + sys_corr_57: -7.63517224e+00 + sys_corr_58: 4.70493756e+00 + sys_corr_59: 6.17849793e+00 + sys_corr_60: 1.26937685e+00 + sys_corr_61: 8.14262999e+00 + sys_corr_62: 1.32400474e+00 + sys_corr_63: 2.75026660e-01 + sys_corr_64: 1.11357178e+00 + sys_corr_65: 3.84209479e+00 + sys_corr_66: 1.19764737e+00 + sys_corr_67: 3.70328688e+00 + sys_corr_68: 2.78891972e-01 + sys_corr_69: -5.27859058e-01 + sys_corr_70: -9.97592870e+00 + sys_corr_71: -2.38619391e+00 + sys_corr_72: -8.63111021e+00 + sys_corr_73: -1.34905537e+01 + sys_corr_74: 4.57631722e+00 + sys_corr_75: 5.12918161e+00 + sys_corr_76: 6.48747666e+00 + sys_corr_77: -3.68121549e+01 + sys_corr_78: -4.31821849e+01 + sys_corr_79: 2.62704407e+01 + sys_corr_80: 3.39098779e-02 + sys_corr_81: 2.12756068e+01 + sys_corr_82: -1.07966830e+01 + sys_corr_83: 9.32054980e+00 + sys_corr_84: -1.34597253e+02 + sys_corr_85: -1.17261173e+02 + sys_corr_86: -5.86854313e+00 + sys_corr_87: -2.13703189e+01 + sys_corr_88: -1.01674033e+01 + sys_corr_89: 2.30266399e+01 + sys_corr_90: -1.94811209e+01 + sys_corr_91: -4.17294295e+01 + sys_corr_92: 8.62000695e+00 + sys_corr_93: -9.13498181e-02 + sys_corr_94: -2.33220626e+00 + sys_corr_95: 2.43425965e-01 + sys_corr_96: 8.40368995e-01 + sys_corr_97: -3.57879507e+00 + sys_corr_98: -1.25965014e+00 + sys_corr_99: -3.38244382e+00 + sys_corr_100: -9.17738770e-01 + sys_corr_101: -4.04392878e+00 + sys_corr_102: -1.90834225e+01 + sys_corr_103: 1.95677343e+00 + sys_corr_104: 8.05766122e+00 + sys_corr_105: -5.48143243e-01 + sys_corr_106: -8.98033073e-01 + sys_corr_107: 2.21571934e-01 + sys_corr_108: -6.77236646e-02 + sys_corr_109: 6.86503269e-01 + sys_corr_110: -3.01508427e+00 + sys_corr_111: -3.05212356e-01 + sys_corr_112: 1.89066796e-01 + sys_corr_113: 7.41839996e-02 + sys_corr_114: -4.39392122e-04 + sys_corr_115: -1.15208112e-01 + sys_corr_116: 2.19288436e-02 + sys_corr_117: 9.53898469e-03 + sys_corr_118: 1.26772728e-02 + sys_corr_119: 9.06620669e-03 + sys_corr_120: -1.12735141e-02 + sys_corr_121: 1.10809792e-02 + sys_corr_122: 1.65350961e-02 + sys_corr_123: 1.50708070e-02 + sys_corr_124: -4.82898716e-02 + sys_corr_125: -1.62477513e-02 + sys_corr_126: 5.63929205e-03 + sys_corr_127: 7.43676779e-01 + sys_corr_128: -2.56301473e-02 + sys_corr_129: -6.93275166e-02 + sys_corr_130: -1.32627689e-02 + sys_corr_131: 1.10773007e-02 + sys_corr_132: -4.10241222e-02 stat: 0.0 - luminosity: 196.52111600000003 -- sys_corr_1: 83.33484344268913 - sys_corr_2: 37.34031551103229 - sys_corr_3: -18.91782784260337 - sys_corr_4: -54.04731471279837 - sys_corr_5: 13.693101675960085 - sys_corr_6: -31.272165172429705 - sys_corr_7: 20.62616205877929 - sys_corr_8: 16.552616582743557 - sys_corr_9: 21.07049801186016 - sys_corr_10: 1.6362383787077428 - sys_corr_11: 17.70928046180288 - sys_corr_12: 17.65831670835674 - sys_corr_13: -12.13651220563386 - sys_corr_14: -2.6104510426420155e-05 - sys_corr_15: 4.4176365189809035 - sys_corr_16: 1.4701834702558116 - sys_corr_17: 2.804470765316328 - sys_corr_18: -3.143889230260681 - sys_corr_19: -0.45794869381876224 - sys_corr_20: -11.550715472237655 - sys_corr_21: 2.808876367785248 - sys_corr_22: -9.269795014921035 - sys_corr_23: 0.5092564752144645 - sys_corr_24: 42.1651730556113 - sys_corr_25: 13.852027880734276 - sys_corr_26: 24.53740544481046 - sys_corr_27: -7.978082136430875 - sys_corr_28: 8.538270682980837 - sys_corr_29: -8.37172592083874 - sys_corr_30: -18.161564748043876 - sys_corr_31: -16.94285962553123 - sys_corr_32: 1.1911530266679768 - sys_corr_33: 3.0287611323194517 - sys_corr_34: 9.3843010454533 - sys_corr_35: 3.2587179178625845 - sys_corr_36: 10.138105225593081 - sys_corr_37: -9.461597884938687 - sys_corr_38: -6.3027591494076605 - sys_corr_39: 5.995843859913053 - sys_corr_40: -12.373031388665332 - sys_corr_41: 18.936614998242685 - sys_corr_42: 4.013923744073476 - sys_corr_43: -11.835501091066433 - sys_corr_44: -14.355006967878305 - sys_corr_45: 0.8272275976952395 - sys_corr_46: 12.464313419460757 - sys_corr_47: -5.5313895587263735 - sys_corr_48: -11.913916106687546 - sys_corr_49: 2.806436493548839 - sys_corr_50: -12.731028665551307 - sys_corr_51: 0.33566651499194944 - sys_corr_52: 7.368868912021637 - sys_corr_53: -1.9528108161062252 - sys_corr_54: 1.3765575259476188 - sys_corr_55: 0.4723878804083956 - sys_corr_56: -22.06162153845458 - sys_corr_57: -17.50064078475781 - sys_corr_58: -14.365984039055775 - sys_corr_59: -11.400733939153444 - sys_corr_60: -1.725058666587226 - sys_corr_61: 21.575424797641105 - sys_corr_62: 66.85852924062178 - sys_corr_63: 28.706588007282814 - sys_corr_64: 0.9155870360946736 - sys_corr_65: -26.128352148337246 - sys_corr_66: 79.73029056155393 - sys_corr_67: -37.84671205926369 - sys_corr_68: -63.718701107604794 - sys_corr_69: -106.89471990058408 - sys_corr_70: 189.5416566115475 - sys_corr_71: 0.5811005509482009 - sys_corr_72: 6.59773084827845 - sys_corr_73: 32.56219858389082 - sys_corr_74: -10.119811586412553 - sys_corr_75: 17.501890042804465 - sys_corr_76: -39.086252674612055 - sys_corr_77: -12.694173502612749 - sys_corr_78: -3.2168384803752375 - sys_corr_79: 4.140773907480918 - sys_corr_80: -0.4545570568591472 - sys_corr_81: -0.8321864037639318 - sys_corr_82: -5.732359059639721 - sys_corr_83: 6.04548405415153 - sys_corr_84: -0.7887208555936728 - sys_corr_85: -3.8454375320307976 - sys_corr_86: -1.5892336931507802 - sys_corr_87: 21.358910908095712 - sys_corr_88: 12.084002211245476 - sys_corr_89: 3.2606580387672874 - sys_corr_90: -5.681828267882 - sys_corr_91: 4.670360310519293 - sys_corr_92: 7.6573243190152 - sys_corr_93: -0.17748305736537928 - sys_corr_94: -1.295303053880485 - sys_corr_95: -0.6105914652272588 - sys_corr_96: 0.05336756396051349 - sys_corr_97: 0.639688601878471 - sys_corr_98: 0.2516386483756604 - sys_corr_99: 0.2788762182787211 - sys_corr_100: 0.22497822370565224 - sys_corr_101: 0.31435692958504324 - sys_corr_102: 0.38423613767508497 - sys_corr_103: -0.6778269834950738 - sys_corr_104: -0.20950529039519653 - sys_corr_105: 0.661539851288484 - sys_corr_106: 0.5508563872853002 - sys_corr_107: 0.44426311586524503 - sys_corr_108: -0.08905786480494451 - sys_corr_109: 0.26549159784179377 - sys_corr_110: -0.182595942356434 - sys_corr_111: -0.11113818065216005 - sys_corr_112: 0.19697192461010257 - sys_corr_113: -0.04948056718488292 - sys_corr_114: 0.0009352492596277272 - sys_corr_115: 0.05662706440464604 - sys_corr_116: -0.046062048059526475 - sys_corr_117: -0.03140927031589132 - sys_corr_118: 0.06937811115714933 - sys_corr_119: -0.0027720435186334913 - sys_corr_120: 0.019489022324410275 - sys_corr_121: 0.003483214128504429 - sys_corr_122: 0.010808502934785344 - sys_corr_123: 0.004720448817895384 - sys_corr_124: -0.045941692244430926 - sys_corr_125: -0.013371293509437842 - sys_corr_126: -0.0016957052813212875 - sys_corr_127: 0.16371184406984224 - sys_corr_128: -0.3041098421127898 - sys_corr_129: -0.07247502956744514 - sys_corr_130: -0.0033278141114911025 - sys_corr_131: -0.013329121986320292 - sys_corr_132: 0.04963922509030099 + luminosity: 1.96521116e+02 +- sys_corr_1: 8.33348434e+01 + sys_corr_2: 3.73403155e+01 + sys_corr_3: -1.89178278e+01 + sys_corr_4: -5.40473147e+01 + sys_corr_5: 1.36931017e+01 + sys_corr_6: -3.12721652e+01 + sys_corr_7: 2.06261621e+01 + sys_corr_8: 1.65526166e+01 + sys_corr_9: 2.10704980e+01 + sys_corr_10: 1.63623838e+00 + sys_corr_11: 1.77092805e+01 + sys_corr_12: 1.76583167e+01 + sys_corr_13: -1.21365122e+01 + sys_corr_14: -2.61045104e-05 + sys_corr_15: 4.41763652e+00 + sys_corr_16: 1.47018347e+00 + sys_corr_17: 2.80447077e+00 + sys_corr_18: -3.14388923e+00 + sys_corr_19: -4.57948694e-01 + sys_corr_20: -1.15507155e+01 + sys_corr_21: 2.80887637e+00 + sys_corr_22: -9.26979501e+00 + sys_corr_23: 5.09256475e-01 + sys_corr_24: 4.21651731e+01 + sys_corr_25: 1.38520279e+01 + sys_corr_26: 2.45374054e+01 + sys_corr_27: -7.97808214e+00 + sys_corr_28: 8.53827068e+00 + sys_corr_29: -8.37172592e+00 + sys_corr_30: -1.81615647e+01 + sys_corr_31: -1.69428596e+01 + sys_corr_32: 1.19115303e+00 + sys_corr_33: 3.02876113e+00 + sys_corr_34: 9.38430105e+00 + sys_corr_35: 3.25871792e+00 + sys_corr_36: 1.01381052e+01 + sys_corr_37: -9.46159788e+00 + sys_corr_38: -6.30275915e+00 + sys_corr_39: 5.99584386e+00 + sys_corr_40: -1.23730314e+01 + sys_corr_41: 1.89366150e+01 + sys_corr_42: 4.01392374e+00 + sys_corr_43: -1.18355011e+01 + sys_corr_44: -1.43550070e+01 + sys_corr_45: 8.27227598e-01 + sys_corr_46: 1.24643134e+01 + sys_corr_47: -5.53138956e+00 + sys_corr_48: -1.19139161e+01 + sys_corr_49: 2.80643649e+00 + sys_corr_50: -1.27310287e+01 + sys_corr_51: 3.35666515e-01 + sys_corr_52: 7.36886891e+00 + sys_corr_53: -1.95281082e+00 + sys_corr_54: 1.37655753e+00 + sys_corr_55: 4.72387880e-01 + sys_corr_56: -2.20616215e+01 + sys_corr_57: -1.75006408e+01 + sys_corr_58: -1.43659840e+01 + sys_corr_59: -1.14007339e+01 + sys_corr_60: -1.72505867e+00 + sys_corr_61: 2.15754248e+01 + sys_corr_62: 6.68585292e+01 + sys_corr_63: 2.87065880e+01 + sys_corr_64: 9.15587036e-01 + sys_corr_65: -2.61283521e+01 + sys_corr_66: 7.97302906e+01 + sys_corr_67: -3.78467121e+01 + sys_corr_68: -6.37187011e+01 + sys_corr_69: -1.06894720e+02 + sys_corr_70: 1.89541657e+02 + sys_corr_71: 5.81100551e-01 + sys_corr_72: 6.59773085e+00 + sys_corr_73: 3.25621986e+01 + sys_corr_74: -1.01198116e+01 + sys_corr_75: 1.75018900e+01 + sys_corr_76: -3.90862527e+01 + sys_corr_77: -1.26941735e+01 + sys_corr_78: -3.21683848e+00 + sys_corr_79: 4.14077391e+00 + sys_corr_80: -4.54557057e-01 + sys_corr_81: -8.32186404e-01 + sys_corr_82: -5.73235906e+00 + sys_corr_83: 6.04548405e+00 + sys_corr_84: -7.88720856e-01 + sys_corr_85: -3.84543753e+00 + sys_corr_86: -1.58923369e+00 + sys_corr_87: 2.13589109e+01 + sys_corr_88: 1.20840022e+01 + sys_corr_89: 3.26065804e+00 + sys_corr_90: -5.68182827e+00 + sys_corr_91: 4.67036031e+00 + sys_corr_92: 7.65732432e+00 + sys_corr_93: -1.77483057e-01 + sys_corr_94: -1.29530305e+00 + sys_corr_95: -6.10591465e-01 + sys_corr_96: 5.33675640e-02 + sys_corr_97: 6.39688602e-01 + sys_corr_98: 2.51638648e-01 + sys_corr_99: 2.78876218e-01 + sys_corr_100: 2.24978224e-01 + sys_corr_101: 3.14356930e-01 + sys_corr_102: 3.84236138e-01 + sys_corr_103: -6.77826983e-01 + sys_corr_104: -2.09505290e-01 + sys_corr_105: 6.61539851e-01 + sys_corr_106: 5.50856387e-01 + sys_corr_107: 4.44263116e-01 + sys_corr_108: -8.90578648e-02 + sys_corr_109: 2.65491598e-01 + sys_corr_110: -1.82595942e-01 + sys_corr_111: -1.11138181e-01 + sys_corr_112: 1.96971925e-01 + sys_corr_113: -4.94805672e-02 + sys_corr_114: 9.35249260e-04 + sys_corr_115: 5.66270644e-02 + sys_corr_116: -4.60620481e-02 + sys_corr_117: -3.14092703e-02 + sys_corr_118: 6.93781112e-02 + sys_corr_119: -2.77204352e-03 + sys_corr_120: 1.94890223e-02 + sys_corr_121: 3.48321413e-03 + sys_corr_122: 1.08085029e-02 + sys_corr_123: 4.72044882e-03 + sys_corr_124: -4.59416922e-02 + sys_corr_125: -1.33712935e-02 + sys_corr_126: -1.69570528e-03 + sys_corr_127: 1.63711844e-01 + sys_corr_128: -3.04109842e-01 + sys_corr_129: -7.24750296e-02 + sys_corr_130: -3.32781411e-03 + sys_corr_131: -1.33291220e-02 + sys_corr_132: 4.96392251e-02 stat: 0.0 - luminosity: 184.345018 -- sys_corr_1: 69.2507611463783 - sys_corr_2: 29.06838698873724 - sys_corr_3: -18.499316744816568 - sys_corr_4: -47.13798047775376 - sys_corr_5: -3.2804550130516676 - sys_corr_6: -10.966252916024574 - sys_corr_7: 26.3222680424709 - sys_corr_8: 21.80213921683532 - sys_corr_9: 26.883684120614646 - sys_corr_10: 3.0207704413396677 - sys_corr_11: 22.955205783245486 - sys_corr_12: 23.491608005528867 - sys_corr_13: -16.57583388733862 - sys_corr_14: 5.706022514624456 - sys_corr_15: 0.8214525159009124 - sys_corr_16: 1.7903012619178817 - sys_corr_17: 6.408432495222007 - sys_corr_18: -3.077672801374983 - sys_corr_19: -6.2205705595316845 - sys_corr_20: 2.2823862300371838 - sys_corr_21: -13.251290346471155 - sys_corr_22: -9.613904017804723 - sys_corr_23: -2.2850776820289234 - sys_corr_24: 25.96159820967922 - sys_corr_25: 12.028436212940312 - sys_corr_26: 22.504687770698734 - sys_corr_27: -13.035886485439674 - sys_corr_28: 13.822833620238985 - sys_corr_29: -9.75668261269786 - sys_corr_30: -26.09609582584339 - sys_corr_31: -8.960677776114338 - sys_corr_32: -0.7164136371645518 - sys_corr_33: 2.219238698340328 - sys_corr_34: 7.74594965973978 - sys_corr_35: -0.9440514433276507 - sys_corr_36: 4.463300615092284 - sys_corr_37: -5.138164033173372 - sys_corr_38: -1.9199168045753126 - sys_corr_39: 5.391266405108976 - sys_corr_40: -5.982968332660522 - sys_corr_41: 8.513152254397296 - sys_corr_42: 0.5457658208376451 - sys_corr_43: -11.382260714433658 - sys_corr_44: -13.890580184671245 - sys_corr_45: 2.766840899855981 - sys_corr_46: 3.6790468759968427 - sys_corr_47: 0.2097851031726458 - sys_corr_48: 0.042229542547518144 - sys_corr_49: 7.00789657667546 - sys_corr_50: -4.8434300117183575 - sys_corr_51: 5.621325886938823 - sys_corr_52: 1.6550981538280534 - sys_corr_53: -2.7463244853731057 - sys_corr_54: -0.7505582878965594 - sys_corr_55: 1.9738868039202537 - sys_corr_56: -2.6116808838218413 - sys_corr_57: -7.057561578885068 - sys_corr_58: -2.0354874041430966 - sys_corr_59: -2.0436153428543014 - sys_corr_60: 1.0234256080238444 - sys_corr_61: 7.299023629289866 - sys_corr_62: 7.643415753938119 - sys_corr_63: -0.1192457119480729 - sys_corr_64: -2.8201789295590625 - sys_corr_65: -0.6690398253781908 - sys_corr_66: 0.6232383269234895 - sys_corr_67: -2.4612945209884076 - sys_corr_68: 3.3364392589935052 - sys_corr_69: 2.1103683732745915 - sys_corr_70: -7.146416332053598 - sys_corr_71: -4.7649958725745165 - sys_corr_72: -4.933252120965964 - sys_corr_73: -10.782733398477308 - sys_corr_74: 1.1033801428600885 - sys_corr_75: -5.185981785259045 - sys_corr_76: 14.702295842545455 - sys_corr_77: 14.109529816553245 - sys_corr_78: 13.407081460841635 - sys_corr_79: 8.67243053523858 - sys_corr_80: 5.162360233863486 - sys_corr_81: 8.649223881241918 - sys_corr_82: 1.9424440230185092 - sys_corr_83: -14.941349296708147 - sys_corr_84: 70.66929203549786 - sys_corr_85: -126.5203252545389 - sys_corr_86: -4.730181968250876 - sys_corr_87: -8.896970597529757 - sys_corr_88: -7.540595232739411 - sys_corr_89: 25.386385890514923 - sys_corr_90: 11.623726114667997 - sys_corr_91: 131.56489854034584 - sys_corr_92: 2.1232935792158822 - sys_corr_93: -1.0688413564623123 - sys_corr_94: -4.30685672573314 - sys_corr_95: -2.2719539620361666 - sys_corr_96: -0.22801701089202162 - sys_corr_97: 0.6657676619634831 - sys_corr_98: 0.39057125791625025 - sys_corr_99: -0.3728867839002929 - sys_corr_100: 0.6472386315148259 - sys_corr_101: 0.44029503014265553 - sys_corr_102: -3.1003266231832995 - sys_corr_103: 1.3632847117009113 - sys_corr_104: 1.3943642622097805 - sys_corr_105: 0.9581811654768759 - sys_corr_106: 1.0545445557701312 - sys_corr_107: 1.0791010560257668 - sys_corr_108: -0.732753975764538 - sys_corr_109: -0.23993212610107711 - sys_corr_110: 0.23188347036405796 - sys_corr_111: -0.6332968480486264 - sys_corr_112: 0.5179968440265943 - sys_corr_113: 0.10444556853586767 - sys_corr_114: 0.002405515702015025 - sys_corr_115: 0.24176789004466134 - sys_corr_116: 0.003933974454510034 - sys_corr_117: 0.008906266053167538 - sys_corr_118: 0.20236679234556096 - sys_corr_119: 0.004760045667574425 - sys_corr_120: -0.0037778300572579144 - sys_corr_121: 0.018178905041463952 - sys_corr_122: 0.05516678030078281 - sys_corr_123: 0.04178476291211641 - sys_corr_124: 0.07905839694549503 - sys_corr_125: -0.03097495872790656 - sys_corr_126: 0.00733797416732062 - sys_corr_127: 0.3942122050627528 - sys_corr_128: -0.030332334344529352 - sys_corr_129: 0.06766790217376889 - sys_corr_130: -0.022170154794463118 - sys_corr_131: -0.00889630391092331 - sys_corr_132: 0.08464446232071654 + luminosity: 1.84345018e+02 +- sys_corr_1: 6.92507611e+01 + sys_corr_2: 2.90683870e+01 + sys_corr_3: -1.84993167e+01 + sys_corr_4: -4.71379805e+01 + sys_corr_5: -3.28045501e+00 + sys_corr_6: -1.09662529e+01 + sys_corr_7: 2.63222680e+01 + sys_corr_8: 2.18021392e+01 + sys_corr_9: 2.68836841e+01 + sys_corr_10: 3.02077044e+00 + sys_corr_11: 2.29552058e+01 + sys_corr_12: 2.34916080e+01 + sys_corr_13: -1.65758339e+01 + sys_corr_14: 5.70602251e+00 + sys_corr_15: 8.21452516e-01 + sys_corr_16: 1.79030126e+00 + sys_corr_17: 6.40843250e+00 + sys_corr_18: -3.07767280e+00 + sys_corr_19: -6.22057056e+00 + sys_corr_20: 2.28238623e+00 + sys_corr_21: -1.32512903e+01 + sys_corr_22: -9.61390402e+00 + sys_corr_23: -2.28507768e+00 + sys_corr_24: 2.59615982e+01 + sys_corr_25: 1.20284362e+01 + sys_corr_26: 2.25046878e+01 + sys_corr_27: -1.30358865e+01 + sys_corr_28: 1.38228336e+01 + sys_corr_29: -9.75668261e+00 + sys_corr_30: -2.60960958e+01 + sys_corr_31: -8.96067778e+00 + sys_corr_32: -7.16413637e-01 + sys_corr_33: 2.21923870e+00 + sys_corr_34: 7.74594966e+00 + sys_corr_35: -9.44051443e-01 + sys_corr_36: 4.46330062e+00 + sys_corr_37: -5.13816403e+00 + sys_corr_38: -1.91991680e+00 + sys_corr_39: 5.39126641e+00 + sys_corr_40: -5.98296833e+00 + sys_corr_41: 8.51315225e+00 + sys_corr_42: 5.45765821e-01 + sys_corr_43: -1.13822607e+01 + sys_corr_44: -1.38905802e+01 + sys_corr_45: 2.76684090e+00 + sys_corr_46: 3.67904688e+00 + sys_corr_47: 2.09785103e-01 + sys_corr_48: 4.22295425e-02 + sys_corr_49: 7.00789658e+00 + sys_corr_50: -4.84343001e+00 + sys_corr_51: 5.62132589e+00 + sys_corr_52: 1.65509815e+00 + sys_corr_53: -2.74632449e+00 + sys_corr_54: -7.50558288e-01 + sys_corr_55: 1.97388680e+00 + sys_corr_56: -2.61168088e+00 + sys_corr_57: -7.05756158e+00 + sys_corr_58: -2.03548740e+00 + sys_corr_59: -2.04361534e+00 + sys_corr_60: 1.02342561e+00 + sys_corr_61: 7.29902363e+00 + sys_corr_62: 7.64341575e+00 + sys_corr_63: -1.19245712e-01 + sys_corr_64: -2.82017893e+00 + sys_corr_65: -6.69039825e-01 + sys_corr_66: 6.23238327e-01 + sys_corr_67: -2.46129452e+00 + sys_corr_68: 3.33643926e+00 + sys_corr_69: 2.11036837e+00 + sys_corr_70: -7.14641633e+00 + sys_corr_71: -4.76499587e+00 + sys_corr_72: -4.93325212e+00 + sys_corr_73: -1.07827334e+01 + sys_corr_74: 1.10338014e+00 + sys_corr_75: -5.18598179e+00 + sys_corr_76: 1.47022958e+01 + sys_corr_77: 1.41095298e+01 + sys_corr_78: 1.34070815e+01 + sys_corr_79: 8.67243054e+00 + sys_corr_80: 5.16236023e+00 + sys_corr_81: 8.64922388e+00 + sys_corr_82: 1.94244402e+00 + sys_corr_83: -1.49413493e+01 + sys_corr_84: 7.06692920e+01 + sys_corr_85: -1.26520325e+02 + sys_corr_86: -4.73018197e+00 + sys_corr_87: -8.89697060e+00 + sys_corr_88: -7.54059523e+00 + sys_corr_89: 2.53863859e+01 + sys_corr_90: 1.16237261e+01 + sys_corr_91: 1.31564899e+02 + sys_corr_92: 2.12329358e+00 + sys_corr_93: -1.06884136e+00 + sys_corr_94: -4.30685673e+00 + sys_corr_95: -2.27195396e+00 + sys_corr_96: -2.28017011e-01 + sys_corr_97: 6.65767662e-01 + sys_corr_98: 3.90571258e-01 + sys_corr_99: -3.72886784e-01 + sys_corr_100: 6.47238632e-01 + sys_corr_101: 4.40295030e-01 + sys_corr_102: -3.10032662e+00 + sys_corr_103: 1.36328471e+00 + sys_corr_104: 1.39436426e+00 + sys_corr_105: 9.58181165e-01 + sys_corr_106: 1.05454456e+00 + sys_corr_107: 1.07910106e+00 + sys_corr_108: -7.32753976e-01 + sys_corr_109: -2.39932126e-01 + sys_corr_110: 2.31883470e-01 + sys_corr_111: -6.33296848e-01 + sys_corr_112: 5.17996844e-01 + sys_corr_113: 1.04445569e-01 + sys_corr_114: 2.40551570e-03 + sys_corr_115: 2.41767890e-01 + sys_corr_116: 3.93397445e-03 + sys_corr_117: 8.90626605e-03 + sys_corr_118: 2.02366792e-01 + sys_corr_119: 4.76004567e-03 + sys_corr_120: -3.77783006e-03 + sys_corr_121: 1.81789050e-02 + sys_corr_122: 5.51667803e-02 + sys_corr_123: 4.17847629e-02 + sys_corr_124: 7.90583969e-02 + sys_corr_125: -3.09749587e-02 + sys_corr_126: 7.33797417e-03 + sys_corr_127: 3.94212205e-01 + sys_corr_128: -3.03323343e-02 + sys_corr_129: 6.76679022e-02 + sys_corr_130: -2.21701548e-02 + sys_corr_131: -8.89630391e-03 + sys_corr_132: 8.46444623e-02 stat: 0.0 - luminosity: 161.920308 -- sys_corr_1: 56.01754423876009 - sys_corr_2: 29.207471666024087 - sys_corr_3: -22.073490091128612 - sys_corr_4: -37.77888723337346 - sys_corr_5: -6.134678979862409 - sys_corr_6: -1.3594691652117081 - sys_corr_7: 22.859919118780226 - sys_corr_8: 22.51862494483161 - sys_corr_9: 25.94988143243338 - sys_corr_10: 6.118408536878962 - sys_corr_11: 26.338119179162554 - sys_corr_12: 26.356552849477556 - sys_corr_13: -18.941936796419657 - sys_corr_14: 3.2883457576655406 - sys_corr_15: 4.046992755134094 - sys_corr_16: -1.8175551415653115 - sys_corr_17: 4.876846108949376 - sys_corr_18: -2.546571439192512 - sys_corr_19: -3.974763679863324 - sys_corr_20: -16.649207764527556 - sys_corr_21: -14.927072109510304 - sys_corr_22: -8.811585834673652 - sys_corr_23: -1.3455002361838773 - sys_corr_24: 23.190207348661428 - sys_corr_25: 12.545736104584119 - sys_corr_26: 25.340497218030418 - sys_corr_27: -17.877524027299586 - sys_corr_28: 14.040230210519399 - sys_corr_29: -6.482245330492353 - sys_corr_30: -24.830178620340337 - sys_corr_31: -10.151352387889814 - sys_corr_32: 0.16215079298465798 - sys_corr_33: 1.5347568684998298 - sys_corr_34: 6.391527960929793 - sys_corr_35: -0.8782415108590538 - sys_corr_36: 1.3565461831008105 - sys_corr_37: -1.0430881599417032 - sys_corr_38: -1.55262873599861 - sys_corr_39: 3.145913436383545 - sys_corr_40: -2.962549422370324 - sys_corr_41: 6.576612650323089 - sys_corr_42: 0.9384538710166168 - sys_corr_43: -1.6534252166393995 - sys_corr_44: -10.686844075863057 - sys_corr_45: -4.216093755391757 - sys_corr_46: -2.4143981860482344 - sys_corr_47: -1.4388758444675205 - sys_corr_48: -4.503605708085701 - sys_corr_49: -2.2344145679872485 - sys_corr_50: -8.923212487880157 - sys_corr_51: 3.117946495345817 - sys_corr_52: 4.836047875038931 - sys_corr_53: -1.3606940975247466 - sys_corr_54: -0.05921849907043477 - sys_corr_55: 0.9889363956329279 - sys_corr_56: -4.651784638790428 - sys_corr_57: -5.808937772352247 - sys_corr_58: -2.582383618847722 - sys_corr_59: -1.8535048456861136 - sys_corr_60: -0.5511115887142769 - sys_corr_61: 3.1178114951192266 - sys_corr_62: 8.85065777209799 - sys_corr_63: 2.5412947754327613 - sys_corr_64: -1.0987800016459612 - sys_corr_65: -0.4305299478712356 - sys_corr_66: 2.0243722533696227 - sys_corr_67: -1.579378315854701 - sys_corr_68: -0.646011943894941 - sys_corr_69: -6.841688737658845 - sys_corr_70: 1.7592847111875323 - sys_corr_71: -3.4012417247563325 - sys_corr_72: -13.175613612311704 - sys_corr_73: -4.350948794777596 - sys_corr_74: 2.7480060887711395 - sys_corr_75: -1.9727397519200793 - sys_corr_76: 6.324615165940768 - sys_corr_77: 3.5848870738485923 - sys_corr_78: 5.042277169947767 - sys_corr_79: 6.4764303484713786 - sys_corr_80: 0.9574873195053248 - sys_corr_81: -1.944530734628301 - sys_corr_82: 2.9584472660399013 - sys_corr_83: 4.070515921243699 - sys_corr_84: -4.2884746056637955 - sys_corr_85: -17.784681761880798 - sys_corr_86: 0.5406994913860519 - sys_corr_87: 1.878901547167473 - sys_corr_88: -4.309797644028184 - sys_corr_89: -19.555143451717303 - sys_corr_90: 176.61247421055327 - sys_corr_91: -35.068327983329915 - sys_corr_92: 5.403050946574192 - sys_corr_93: -1.970272679277627 - sys_corr_94: -6.903999867761325 - sys_corr_95: -6.7985145544072445 - sys_corr_96: 0.15745396825373698 - sys_corr_97: 1.9228711236567075 - sys_corr_98: 0.32318870750600265 - sys_corr_99: 0.30130457866540383 - sys_corr_100: 0.48557492170600447 - sys_corr_101: 0.40432933559371936 - sys_corr_102: -3.4428567330516797 - sys_corr_103: 0.883074552300071 - sys_corr_104: 2.076950483379485 - sys_corr_105: 1.275553633025615 - sys_corr_106: 0.2683037398124504 - sys_corr_107: 0.3917351979267091 - sys_corr_108: -0.6203487594713188 - sys_corr_109: 0.3459841512123778 - sys_corr_110: 1.0723983290418182 - sys_corr_111: 0.15087981106558238 - sys_corr_112: -0.6711333792576355 - sys_corr_113: 0.2953093922479452 - sys_corr_114: 0.003220012671418986 - sys_corr_115: 0.39359674850648346 - sys_corr_116: 0.014239214011574007 - sys_corr_117: 0.01344325507551547 - sys_corr_118: 0.3098601924866683 - sys_corr_119: 0.0002496892491053981 - sys_corr_120: -0.015086594317186466 - sys_corr_121: 0.01143506750576972 - sys_corr_122: 0.01703318038783844 - sys_corr_123: 0.017457961022171363 - sys_corr_124: 0.11967972800551628 - sys_corr_125: -0.014234142656642794 - sys_corr_126: -0.0062114174123771545 - sys_corr_127: 1.2712456653340747 - sys_corr_128: -0.4137626487812151 - sys_corr_129: -0.1448119441575262 - sys_corr_130: -0.01986502497427968 - sys_corr_131: 0.006413353033285513 - sys_corr_132: 0.19440269843556668 + luminosity: 1.61920308e+02 +- sys_corr_1: 5.60175442e+01 + sys_corr_2: 2.92074717e+01 + sys_corr_3: -2.20734901e+01 + sys_corr_4: -3.77788872e+01 + sys_corr_5: -6.13467898e+00 + sys_corr_6: -1.35946917e+00 + sys_corr_7: 2.28599191e+01 + sys_corr_8: 2.25186249e+01 + sys_corr_9: 2.59498814e+01 + sys_corr_10: 6.11840854e+00 + sys_corr_11: 2.63381192e+01 + sys_corr_12: 2.63565528e+01 + sys_corr_13: -1.89419368e+01 + sys_corr_14: 3.28834576e+00 + sys_corr_15: 4.04699276e+00 + sys_corr_16: -1.81755514e+00 + sys_corr_17: 4.87684611e+00 + sys_corr_18: -2.54657144e+00 + sys_corr_19: -3.97476368e+00 + sys_corr_20: -1.66492078e+01 + sys_corr_21: -1.49270721e+01 + sys_corr_22: -8.81158583e+00 + sys_corr_23: -1.34550024e+00 + sys_corr_24: 2.31902073e+01 + sys_corr_25: 1.25457361e+01 + sys_corr_26: 2.53404972e+01 + sys_corr_27: -1.78775240e+01 + sys_corr_28: 1.40402302e+01 + sys_corr_29: -6.48224533e+00 + sys_corr_30: -2.48301786e+01 + sys_corr_31: -1.01513524e+01 + sys_corr_32: 1.62150793e-01 + sys_corr_33: 1.53475687e+00 + sys_corr_34: 6.39152796e+00 + sys_corr_35: -8.78241511e-01 + sys_corr_36: 1.35654618e+00 + sys_corr_37: -1.04308816e+00 + sys_corr_38: -1.55262874e+00 + sys_corr_39: 3.14591344e+00 + sys_corr_40: -2.96254942e+00 + sys_corr_41: 6.57661265e+00 + sys_corr_42: 9.38453871e-01 + sys_corr_43: -1.65342522e+00 + sys_corr_44: -1.06868441e+01 + sys_corr_45: -4.21609376e+00 + sys_corr_46: -2.41439819e+00 + sys_corr_47: -1.43887584e+00 + sys_corr_48: -4.50360571e+00 + sys_corr_49: -2.23441457e+00 + sys_corr_50: -8.92321249e+00 + sys_corr_51: 3.11794650e+00 + sys_corr_52: 4.83604788e+00 + sys_corr_53: -1.36069410e+00 + sys_corr_54: -5.92184991e-02 + sys_corr_55: 9.88936396e-01 + sys_corr_56: -4.65178464e+00 + sys_corr_57: -5.80893777e+00 + sys_corr_58: -2.58238362e+00 + sys_corr_59: -1.85350485e+00 + sys_corr_60: -5.51111589e-01 + sys_corr_61: 3.11781150e+00 + sys_corr_62: 8.85065777e+00 + sys_corr_63: 2.54129478e+00 + sys_corr_64: -1.09878000e+00 + sys_corr_65: -4.30529948e-01 + sys_corr_66: 2.02437225e+00 + sys_corr_67: -1.57937832e+00 + sys_corr_68: -6.46011944e-01 + sys_corr_69: -6.84168874e+00 + sys_corr_70: 1.75928471e+00 + sys_corr_71: -3.40124172e+00 + sys_corr_72: -1.31756136e+01 + sys_corr_73: -4.35094879e+00 + sys_corr_74: 2.74800609e+00 + sys_corr_75: -1.97273975e+00 + sys_corr_76: 6.32461517e+00 + sys_corr_77: 3.58488707e+00 + sys_corr_78: 5.04227717e+00 + sys_corr_79: 6.47643035e+00 + sys_corr_80: 9.57487320e-01 + sys_corr_81: -1.94453073e+00 + sys_corr_82: 2.95844727e+00 + sys_corr_83: 4.07051592e+00 + sys_corr_84: -4.28847461e+00 + sys_corr_85: -1.77846818e+01 + sys_corr_86: 5.40699491e-01 + sys_corr_87: 1.87890155e+00 + sys_corr_88: -4.30979764e+00 + sys_corr_89: -1.95551435e+01 + sys_corr_90: 1.76612474e+02 + sys_corr_91: -3.50683280e+01 + sys_corr_92: 5.40305095e+00 + sys_corr_93: -1.97027268e+00 + sys_corr_94: -6.90399987e+00 + sys_corr_95: -6.79851455e+00 + sys_corr_96: 1.57453968e-01 + sys_corr_97: 1.92287112e+00 + sys_corr_98: 3.23188708e-01 + sys_corr_99: 3.01304579e-01 + sys_corr_100: 4.85574922e-01 + sys_corr_101: 4.04329336e-01 + sys_corr_102: -3.44285673e+00 + sys_corr_103: 8.83074552e-01 + sys_corr_104: 2.07695048e+00 + sys_corr_105: 1.27555363e+00 + sys_corr_106: 2.68303740e-01 + sys_corr_107: 3.91735198e-01 + sys_corr_108: -6.20348759e-01 + sys_corr_109: 3.45984151e-01 + sys_corr_110: 1.07239833e+00 + sys_corr_111: 1.50879811e-01 + sys_corr_112: -6.71133379e-01 + sys_corr_113: 2.95309392e-01 + sys_corr_114: 3.22001267e-03 + sys_corr_115: 3.93596749e-01 + sys_corr_116: 1.42392140e-02 + sys_corr_117: 1.34432551e-02 + sys_corr_118: 3.09860192e-01 + sys_corr_119: 2.49689249e-04 + sys_corr_120: -1.50865943e-02 + sys_corr_121: 1.14350675e-02 + sys_corr_122: 1.70331804e-02 + sys_corr_123: 1.74579610e-02 + sys_corr_124: 1.19679728e-01 + sys_corr_125: -1.42341427e-02 + sys_corr_126: -6.21141741e-03 + sys_corr_127: 1.27124567e+00 + sys_corr_128: -4.13762649e-01 + sys_corr_129: -1.44811944e-01 + sys_corr_130: -1.98650250e-02 + sys_corr_131: 6.41335303e-03 + sys_corr_132: 1.94402698e-01 stat: 0.0 - luminosity: 141.34076000000002 -- sys_corr_1: 46.695438774907565 - sys_corr_2: 25.15451554278743 - sys_corr_3: -26.59809778456981 - sys_corr_4: -34.21341578871788 - sys_corr_5: -10.088804422119951 - sys_corr_6: -2.042220255303127 - sys_corr_7: 26.25787604793668 - sys_corr_8: 19.787359683149248 - sys_corr_9: 25.968205475457555 - sys_corr_10: 3.4546597165439747 - sys_corr_11: 21.296419771981693 - sys_corr_12: 23.898785822613892 - sys_corr_13: -17.88099699408656 - sys_corr_14: 2.0168816471198157 - sys_corr_15: 6.781395067177255 - sys_corr_16: -1.3398174115275543 - sys_corr_17: 0.30188032896624634 - sys_corr_18: -3.5677467089497865 - sys_corr_19: -3.631412780608297 - sys_corr_20: -7.00658074212734 - sys_corr_21: -2.992616767500345 - sys_corr_22: -6.446240068355189 - sys_corr_23: 14.117164155592922 - sys_corr_24: 17.37193925311344 - sys_corr_25: 8.706414523922623 - sys_corr_26: 22.225370640308547 - sys_corr_27: -14.295169119762345 - sys_corr_28: 13.639205887279562 - sys_corr_29: -7.727232310363924 - sys_corr_30: -29.01196663699412 - sys_corr_31: -10.094943543928755 - sys_corr_32: -1.8784135736636858 - sys_corr_33: 2.8427696040428962 - sys_corr_34: 6.513386376665414 - sys_corr_35: 0.34949966913291064 - sys_corr_36: 0.8957450733009562 - sys_corr_37: -1.0323321223766615 - sys_corr_38: 1.1028244154379097 - sys_corr_39: 0.836479657353327 - sys_corr_40: -2.953260870008206 - sys_corr_41: 5.502912746965392 - sys_corr_42: 0.9937929493598131 - sys_corr_43: -5.093548654147326 - sys_corr_44: -12.081872296682615 - sys_corr_45: -0.7599485132402813 - sys_corr_46: 0.17941422496716763 - sys_corr_47: -1.0692114703564717 - sys_corr_48: -4.100603259690171 - sys_corr_49: 0.979465692649478 - sys_corr_50: -0.08155283922506888 - sys_corr_51: 0.046168637300488626 - sys_corr_52: -3.297458648464985 - sys_corr_53: -9.309939609087568 - sys_corr_54: 2.555727991773676 - sys_corr_55: 15.621041870664557 - sys_corr_56: -3.6462380603760645 - sys_corr_57: -5.459288593437129 - sys_corr_58: -2.188197686728681 - sys_corr_59: -2.458017583129367 - sys_corr_60: -0.1560883783884428 - sys_corr_61: 7.37030544597546 - sys_corr_62: 11.650672052935594 - sys_corr_63: 7.462714708325143 - sys_corr_64: -2.5555230749562967 - sys_corr_65: -8.957618800292131 - sys_corr_66: 6.803040815379485 - sys_corr_67: -18.882788476635533 - sys_corr_68: 0.01119364707908986 - sys_corr_69: -5.251625364703837 - sys_corr_70: 5.206027003382032 - sys_corr_71: -9.841856323634985 - sys_corr_72: -7.9160995949019926 - sys_corr_73: -18.948014827128045 - sys_corr_74: 20.278116017582747 - sys_corr_75: -8.344634405674814 - sys_corr_76: 30.128112180371595 - sys_corr_77: -14.821615965957944 - sys_corr_78: -11.723191837395161 - sys_corr_79: -23.632189320588708 - sys_corr_80: -15.157559892735868 - sys_corr_81: 99.88874177791844 - sys_corr_82: 11.527811179696034 - sys_corr_83: -194.08843982907544 - sys_corr_84: -6.087768201735972 - sys_corr_85: 24.420375583350207 - sys_corr_86: -24.1370925569773 - sys_corr_87: -29.16013119678624 - sys_corr_88: 2.5078444937011883 - sys_corr_89: 4.141119189990326 - sys_corr_90: 2.3996242464158963 - sys_corr_91: -2.3532773591375373 - sys_corr_92: -4.077345780086167 - sys_corr_93: -0.7419448703994186 - sys_corr_94: -2.30276151387422 - sys_corr_95: -2.4355010745277914 - sys_corr_96: -0.047273571077290445 - sys_corr_97: 0.6842531763237236 - sys_corr_98: 0.015296940302148425 - sys_corr_99: 0.11123223120697012 - sys_corr_100: 0.011440707839486213 - sys_corr_101: 0.025781670954513 - sys_corr_102: -1.5529830939828184 - sys_corr_103: 0.56899771663738 - sys_corr_104: 0.7616361874234278 - sys_corr_105: 0.5245539213157497 - sys_corr_106: 0.1961828944565322 - sys_corr_107: 0.08098917779780919 - sys_corr_108: -0.061484126720643156 - sys_corr_109: 0.01797171405490368 - sys_corr_110: 0.4650916991104723 - sys_corr_111: 0.006820658027128025 - sys_corr_112: -0.1362405512988402 - sys_corr_113: -0.18270475277572462 - sys_corr_114: 0.0034632558119173608 - sys_corr_115: 0.3775164225084818 - sys_corr_116: -0.010294185529096788 - sys_corr_117: 0.010125273799940491 - sys_corr_118: 0.2243867656227923 - sys_corr_119: -0.003928131167479159 - sys_corr_120: -0.013103259964649394 - sys_corr_121: 0.004001848202295059 - sys_corr_122: 0.0012337078838198093 - sys_corr_123: 0.006297797054342316 - sys_corr_124: 0.10427356017483597 - sys_corr_125: -0.0010586014184693934 - sys_corr_126: -0.004702320451127238 - sys_corr_127: 0.2224116097875276 - sys_corr_128: -0.2223026566622877 - sys_corr_129: 0.1565875971387372 - sys_corr_130: -0.010299712366495852 - sys_corr_131: 0.003092275028713884 - sys_corr_132: 0.13191546635965223 + luminosity: 1.41340760e+02 +- sys_corr_1: 4.66954388e+01 + sys_corr_2: 2.51545155e+01 + sys_corr_3: -2.65980978e+01 + sys_corr_4: -3.42134158e+01 + sys_corr_5: -1.00888044e+01 + sys_corr_6: -2.04222026e+00 + sys_corr_7: 2.62578760e+01 + sys_corr_8: 1.97873597e+01 + sys_corr_9: 2.59682055e+01 + sys_corr_10: 3.45465972e+00 + sys_corr_11: 2.12964198e+01 + sys_corr_12: 2.38987858e+01 + sys_corr_13: -1.78809970e+01 + sys_corr_14: 2.01688165e+00 + sys_corr_15: 6.78139507e+00 + sys_corr_16: -1.33981741e+00 + sys_corr_17: 3.01880329e-01 + sys_corr_18: -3.56774671e+00 + sys_corr_19: -3.63141278e+00 + sys_corr_20: -7.00658074e+00 + sys_corr_21: -2.99261677e+00 + sys_corr_22: -6.44624007e+00 + sys_corr_23: 1.41171642e+01 + sys_corr_24: 1.73719393e+01 + sys_corr_25: 8.70641452e+00 + sys_corr_26: 2.22253706e+01 + sys_corr_27: -1.42951691e+01 + sys_corr_28: 1.36392059e+01 + sys_corr_29: -7.72723231e+00 + sys_corr_30: -2.90119666e+01 + sys_corr_31: -1.00949435e+01 + sys_corr_32: -1.87841357e+00 + sys_corr_33: 2.84276960e+00 + sys_corr_34: 6.51338638e+00 + sys_corr_35: 3.49499669e-01 + sys_corr_36: 8.95745073e-01 + sys_corr_37: -1.03233212e+00 + sys_corr_38: 1.10282442e+00 + sys_corr_39: 8.36479657e-01 + sys_corr_40: -2.95326087e+00 + sys_corr_41: 5.50291275e+00 + sys_corr_42: 9.93792949e-01 + sys_corr_43: -5.09354865e+00 + sys_corr_44: -1.20818723e+01 + sys_corr_45: -7.59948513e-01 + sys_corr_46: 1.79414225e-01 + sys_corr_47: -1.06921147e+00 + sys_corr_48: -4.10060326e+00 + sys_corr_49: 9.79465693e-01 + sys_corr_50: -8.15528392e-02 + sys_corr_51: 4.61686373e-02 + sys_corr_52: -3.29745865e+00 + sys_corr_53: -9.30993961e+00 + sys_corr_54: 2.55572799e+00 + sys_corr_55: 1.56210419e+01 + sys_corr_56: -3.64623806e+00 + sys_corr_57: -5.45928859e+00 + sys_corr_58: -2.18819769e+00 + sys_corr_59: -2.45801758e+00 + sys_corr_60: -1.56088378e-01 + sys_corr_61: 7.37030545e+00 + sys_corr_62: 1.16506721e+01 + sys_corr_63: 7.46271471e+00 + sys_corr_64: -2.55552307e+00 + sys_corr_65: -8.95761880e+00 + sys_corr_66: 6.80304082e+00 + sys_corr_67: -1.88827885e+01 + sys_corr_68: 1.11936471e-02 + sys_corr_69: -5.25162536e+00 + sys_corr_70: 5.20602700e+00 + sys_corr_71: -9.84185632e+00 + sys_corr_72: -7.91609959e+00 + sys_corr_73: -1.89480148e+01 + sys_corr_74: 2.02781160e+01 + sys_corr_75: -8.34463441e+00 + sys_corr_76: 3.01281122e+01 + sys_corr_77: -1.48216160e+01 + sys_corr_78: -1.17231918e+01 + sys_corr_79: -2.36321893e+01 + sys_corr_80: -1.51575599e+01 + sys_corr_81: 9.98887418e+01 + sys_corr_82: 1.15278112e+01 + sys_corr_83: -1.94088440e+02 + sys_corr_84: -6.08776820e+00 + sys_corr_85: 2.44203756e+01 + sys_corr_86: -2.41370926e+01 + sys_corr_87: -2.91601312e+01 + sys_corr_88: 2.50784449e+00 + sys_corr_89: 4.14111919e+00 + sys_corr_90: 2.39962425e+00 + sys_corr_91: -2.35327736e+00 + sys_corr_92: -4.07734578e+00 + sys_corr_93: -7.41944870e-01 + sys_corr_94: -2.30276151e+00 + sys_corr_95: -2.43550107e+00 + sys_corr_96: -4.72735711e-02 + sys_corr_97: 6.84253176e-01 + sys_corr_98: 1.52969403e-02 + sys_corr_99: 1.11232231e-01 + sys_corr_100: 1.14407078e-02 + sys_corr_101: 2.57816710e-02 + sys_corr_102: -1.55298309e+00 + sys_corr_103: 5.68997717e-01 + sys_corr_104: 7.61636187e-01 + sys_corr_105: 5.24553921e-01 + sys_corr_106: 1.96182894e-01 + sys_corr_107: 8.09891778e-02 + sys_corr_108: -6.14841267e-02 + sys_corr_109: 1.79717141e-02 + sys_corr_110: 4.65091699e-01 + sys_corr_111: 6.82065803e-03 + sys_corr_112: -1.36240551e-01 + sys_corr_113: -1.82704753e-01 + sys_corr_114: 3.46325581e-03 + sys_corr_115: 3.77516423e-01 + sys_corr_116: -1.02941855e-02 + sys_corr_117: 1.01252738e-02 + sys_corr_118: 2.24386766e-01 + sys_corr_119: -3.92813117e-03 + sys_corr_120: -1.31032600e-02 + sys_corr_121: 4.00184820e-03 + sys_corr_122: 1.23370788e-03 + sys_corr_123: 6.29779705e-03 + sys_corr_124: 1.04273560e-01 + sys_corr_125: -1.05860142e-03 + sys_corr_126: -4.70232045e-03 + sys_corr_127: 2.22411610e-01 + sys_corr_128: -2.22302657e-01 + sys_corr_129: 1.56587597e-01 + sys_corr_130: -1.02997124e-02 + sys_corr_131: 3.09227503e-03 + sys_corr_132: 1.31915466e-01 stat: 0.0 - luminosity: 129.83007400000002 -- sys_corr_1: 34.07995563895708 - sys_corr_2: 21.333152216076677 - sys_corr_3: -27.795071050499253 - sys_corr_4: -31.51263565009255 - sys_corr_5: -11.221387256216953 - sys_corr_6: -0.4315787504726699 - sys_corr_7: 22.984419953366913 - sys_corr_8: 16.788879619656058 - sys_corr_9: 22.47700907297209 - sys_corr_10: 2.7770040005205407 - sys_corr_11: 17.239735289844358 - sys_corr_12: 22.535468767555276 - sys_corr_13: -16.986037682949913 - sys_corr_14: 2.8914048455172128 - sys_corr_15: 4.334755744179448 - sys_corr_16: -1.5224168563669842 - sys_corr_17: 3.5255107085779627 - sys_corr_18: 0.7811239311943801 - sys_corr_19: -8.556219125294236 - sys_corr_20: -6.346549987383414 - sys_corr_21: -8.809309263906629 - sys_corr_22: -8.076100975940566 - sys_corr_23: 1.5516676833013967 - sys_corr_24: 6.634852796329652 - sys_corr_25: 21.345173085449076 - sys_corr_26: 21.14600268413466 - sys_corr_27: -6.2982075542833105 - sys_corr_28: 14.470814896986564 - sys_corr_29: -3.8509761962837925 - sys_corr_30: -28.93349876219484 - sys_corr_31: -13.013451872843735 - sys_corr_32: -0.5835976864206196 - sys_corr_33: 1.974371577426382 - sys_corr_34: 6.417408822080839 - sys_corr_35: 0.6146887145889499 - sys_corr_36: 1.5677781492438696 - sys_corr_37: -1.0974617330775975 - sys_corr_38: 0.09664482960166285 - sys_corr_39: 2.842238936141793 - sys_corr_40: -1.0893425604429958 - sys_corr_41: 5.685843407417435 - sys_corr_42: 1.7737178026859597 - sys_corr_43: 1.0930385421686064 - sys_corr_44: -10.234621303082967 - sys_corr_45: -4.473022757189796 - sys_corr_46: -2.0708214751318144 - sys_corr_47: -1.1155041011807345 - sys_corr_48: -4.034435551528905 - sys_corr_49: 1.6382627408291128 - sys_corr_50: -2.4065373731507647 - sys_corr_51: 9.342655536069994 - sys_corr_52: -4.788155077335554 - sys_corr_53: -1.4449392625562543 - sys_corr_54: 8.587668235471527 - sys_corr_55: 3.45701188389285 - sys_corr_56: -2.5615544646535624 - sys_corr_57: -9.654835493352888 - sys_corr_58: -1.999302168446981 - sys_corr_59: 3.8293221889285842 - sys_corr_60: -0.48437271524694386 - sys_corr_61: 3.3536778444696655 - sys_corr_62: 12.203493866398713 - sys_corr_63: 2.4283935881064407 - sys_corr_64: -12.520757376041248 - sys_corr_65: -4.063465935076852 - sys_corr_66: 9.66853678371513 - sys_corr_67: -5.920314942703236 - sys_corr_68: -2.8070805503749194 - sys_corr_69: -15.77951205798624 - sys_corr_70: 18.415321841843518 - sys_corr_71: -8.06212642055767 - sys_corr_72: -23.01568733014172 - sys_corr_73: -23.651627858050922 - sys_corr_74: 43.46434825828391 - sys_corr_75: -26.812415341416166 - sys_corr_76: 109.68193546116353 - sys_corr_77: -0.05916967107348809 - sys_corr_78: -6.892279452423514 - sys_corr_79: -15.203667883323645 - sys_corr_80: -8.855395502102146 - sys_corr_81: -8.424105352189173 - sys_corr_82: 2.1495007692252437 - sys_corr_83: 9.995554466220476 - sys_corr_84: -1.1093920833597741 - sys_corr_85: 15.46552024180564 - sys_corr_86: 90.92769989464944 - sys_corr_87: 45.12169436301903 - sys_corr_88: -174.73735745756994 - sys_corr_89: 4.3281630744701225 - sys_corr_90: -8.05417604281916 - sys_corr_91: 1.1214745071869385 - sys_corr_92: 37.7725670487136 - sys_corr_93: -0.372772879654481 - sys_corr_94: -2.42404668684248 - sys_corr_95: -1.7836975169693625 - sys_corr_96: -0.26232298848903407 - sys_corr_97: 0.5623326322789334 - sys_corr_98: 0.022914746525555713 - sys_corr_99: -0.07571115940525294 - sys_corr_100: 0.10707760906102363 - sys_corr_101: 0.11234315660124339 - sys_corr_102: -0.802166036584018 - sys_corr_103: 0.43271621228735463 - sys_corr_104: 0.2894125740963741 - sys_corr_105: 0.6550499516733985 - sys_corr_106: 0.20635779747356756 - sys_corr_107: 0.34112658737149976 - sys_corr_108: -0.2701559075786855 - sys_corr_109: -0.11120974809359042 - sys_corr_110: 0.18927745196319884 - sys_corr_111: -0.4627141642475998 - sys_corr_112: -0.03278643139250703 - sys_corr_113: -0.2850753211621165 - sys_corr_114: 0.0026881318308418518 - sys_corr_115: 0.20669507696982747 - sys_corr_116: -0.003615572255957611 - sys_corr_117: -0.002772818562909348 - sys_corr_118: 0.20507009579709048 - sys_corr_119: -0.0040946726454862935 - sys_corr_120: -0.00329411596313975 - sys_corr_121: 0.00559702026619447 - sys_corr_122: 0.011252005162461845 - sys_corr_123: 0.007982708762695351 - sys_corr_124: 0.0150360221329933 - sys_corr_125: -0.012955331347595741 - sys_corr_126: -0.0028379639103317932 - sys_corr_127: 0.10087453417541518 - sys_corr_128: -0.15876304155687307 - sys_corr_129: -0.33736857698733935 - sys_corr_130: -0.02216546481068482 - sys_corr_131: -0.003591892546817753 - sys_corr_132: 0.14040526309912268 + luminosity: 1.29830074e+02 +- sys_corr_1: 3.40799556e+01 + sys_corr_2: 2.13331522e+01 + sys_corr_3: -2.77950711e+01 + sys_corr_4: -3.15126357e+01 + sys_corr_5: -1.12213873e+01 + sys_corr_6: -4.31578750e-01 + sys_corr_7: 2.29844200e+01 + sys_corr_8: 1.67888796e+01 + sys_corr_9: 2.24770091e+01 + sys_corr_10: 2.77700400e+00 + sys_corr_11: 1.72397353e+01 + sys_corr_12: 2.25354688e+01 + sys_corr_13: -1.69860377e+01 + sys_corr_14: 2.89140485e+00 + sys_corr_15: 4.33475574e+00 + sys_corr_16: -1.52241686e+00 + sys_corr_17: 3.52551071e+00 + sys_corr_18: 7.81123931e-01 + sys_corr_19: -8.55621913e+00 + sys_corr_20: -6.34654999e+00 + sys_corr_21: -8.80930926e+00 + sys_corr_22: -8.07610098e+00 + sys_corr_23: 1.55166768e+00 + sys_corr_24: 6.63485280e+00 + sys_corr_25: 2.13451731e+01 + sys_corr_26: 2.11460027e+01 + sys_corr_27: -6.29820755e+00 + sys_corr_28: 1.44708149e+01 + sys_corr_29: -3.85097620e+00 + sys_corr_30: -2.89334988e+01 + sys_corr_31: -1.30134519e+01 + sys_corr_32: -5.83597686e-01 + sys_corr_33: 1.97437158e+00 + sys_corr_34: 6.41740882e+00 + sys_corr_35: 6.14688715e-01 + sys_corr_36: 1.56777815e+00 + sys_corr_37: -1.09746173e+00 + sys_corr_38: 9.66448296e-02 + sys_corr_39: 2.84223894e+00 + sys_corr_40: -1.08934256e+00 + sys_corr_41: 5.68584341e+00 + sys_corr_42: 1.77371780e+00 + sys_corr_43: 1.09303854e+00 + sys_corr_44: -1.02346213e+01 + sys_corr_45: -4.47302276e+00 + sys_corr_46: -2.07082148e+00 + sys_corr_47: -1.11550410e+00 + sys_corr_48: -4.03443555e+00 + sys_corr_49: 1.63826274e+00 + sys_corr_50: -2.40653737e+00 + sys_corr_51: 9.34265554e+00 + sys_corr_52: -4.78815508e+00 + sys_corr_53: -1.44493926e+00 + sys_corr_54: 8.58766824e+00 + sys_corr_55: 3.45701188e+00 + sys_corr_56: -2.56155446e+00 + sys_corr_57: -9.65483549e+00 + sys_corr_58: -1.99930217e+00 + sys_corr_59: 3.82932219e+00 + sys_corr_60: -4.84372715e-01 + sys_corr_61: 3.35367784e+00 + sys_corr_62: 1.22034939e+01 + sys_corr_63: 2.42839359e+00 + sys_corr_64: -1.25207574e+01 + sys_corr_65: -4.06346594e+00 + sys_corr_66: 9.66853678e+00 + sys_corr_67: -5.92031494e+00 + sys_corr_68: -2.80708055e+00 + sys_corr_69: -1.57795121e+01 + sys_corr_70: 1.84153218e+01 + sys_corr_71: -8.06212642e+00 + sys_corr_72: -2.30156873e+01 + sys_corr_73: -2.36516279e+01 + sys_corr_74: 4.34643483e+01 + sys_corr_75: -2.68124153e+01 + sys_corr_76: 1.09681935e+02 + sys_corr_77: -5.91696711e-02 + sys_corr_78: -6.89227945e+00 + sys_corr_79: -1.52036679e+01 + sys_corr_80: -8.85539550e+00 + sys_corr_81: -8.42410535e+00 + sys_corr_82: 2.14950077e+00 + sys_corr_83: 9.99555447e+00 + sys_corr_84: -1.10939208e+00 + sys_corr_85: 1.54655202e+01 + sys_corr_86: 9.09276999e+01 + sys_corr_87: 4.51216944e+01 + sys_corr_88: -1.74737357e+02 + sys_corr_89: 4.32816307e+00 + sys_corr_90: -8.05417604e+00 + sys_corr_91: 1.12147451e+00 + sys_corr_92: 3.77725670e+01 + sys_corr_93: -3.72772880e-01 + sys_corr_94: -2.42404669e+00 + sys_corr_95: -1.78369752e+00 + sys_corr_96: -2.62322988e-01 + sys_corr_97: 5.62332632e-01 + sys_corr_98: 2.29147465e-02 + sys_corr_99: -7.57111594e-02 + sys_corr_100: 1.07077609e-01 + sys_corr_101: 1.12343157e-01 + sys_corr_102: -8.02166037e-01 + sys_corr_103: 4.32716212e-01 + sys_corr_104: 2.89412574e-01 + sys_corr_105: 6.55049952e-01 + sys_corr_106: 2.06357797e-01 + sys_corr_107: 3.41126587e-01 + sys_corr_108: -2.70155908e-01 + sys_corr_109: -1.11209748e-01 + sys_corr_110: 1.89277452e-01 + sys_corr_111: -4.62714164e-01 + sys_corr_112: -3.27864314e-02 + sys_corr_113: -2.85075321e-01 + sys_corr_114: 2.68813183e-03 + sys_corr_115: 2.06695077e-01 + sys_corr_116: -3.61557226e-03 + sys_corr_117: -2.77281856e-03 + sys_corr_118: 2.05070096e-01 + sys_corr_119: -4.09467265e-03 + sys_corr_120: -3.29411596e-03 + sys_corr_121: 5.59702027e-03 + sys_corr_122: 1.12520052e-02 + sys_corr_123: 7.98270876e-03 + sys_corr_124: 1.50360221e-02 + sys_corr_125: -1.29553313e-02 + sys_corr_126: -2.83796391e-03 + sys_corr_127: 1.00874534e-01 + sys_corr_128: -1.58763042e-01 + sys_corr_129: -3.37368577e-01 + sys_corr_130: -2.21654648e-02 + sys_corr_131: -3.59189255e-03 + sys_corr_132: 1.40405263e-01 stat: 0.0 - luminosity: 108.345072 -- sys_corr_1: 25.46621290716638 - sys_corr_2: 21.421357474300944 - sys_corr_3: -24.64988831288702 - sys_corr_4: -28.310555351026377 - sys_corr_5: -12.484964989950221 - sys_corr_6: -1.015612741169382 - sys_corr_7: 16.952386859429392 - sys_corr_8: 14.950647683137474 - sys_corr_9: 20.48586821722873 - sys_corr_10: 4.665909908376084 - sys_corr_11: 15.540906459490415 - sys_corr_12: 17.050209862110634 - sys_corr_13: -10.206592270286516 - sys_corr_14: 4.367892336607499 - sys_corr_15: 1.7906941060484618 - sys_corr_16: -0.09356012191687216 - sys_corr_17: 3.177764716671808 - sys_corr_18: 1.690951130243059 - sys_corr_19: -6.712937582563718 - sys_corr_20: -2.779993499293669 - sys_corr_21: -6.755590545016563 - sys_corr_22: -6.883576782589998 - sys_corr_23: 0.5768962222599883 - sys_corr_24: 8.646224182676493 - sys_corr_25: -2.209718548349764 - sys_corr_26: 16.971899131056716 - sys_corr_27: -6.259576791184792 - sys_corr_28: 14.67564909672478 - sys_corr_29: -6.281260917438963 - sys_corr_30: -24.232277236823446 - sys_corr_31: -11.641937023362525 - sys_corr_32: -1.0088251559910588 - sys_corr_33: 2.3271801419752554 - sys_corr_34: 8.817645073618625 - sys_corr_35: -0.3646102587311153 - sys_corr_36: 1.2067693204616525 - sys_corr_37: -1.489768951904912 - sys_corr_38: -0.19602116105824735 - sys_corr_39: 2.399100263844608 - sys_corr_40: -4.361465555412134 - sys_corr_41: 6.200144229258374 - sys_corr_42: 3.498463933214801 - sys_corr_43: -1.0100087059657024 - sys_corr_44: -13.639235368865293 - sys_corr_45: -1.9361727123322388 - sys_corr_46: 0.7397377892299204 - sys_corr_47: -3.381441164274285 - sys_corr_48: -9.314039872572538 - sys_corr_49: 3.6552916575564884 - sys_corr_50: 1.604032296080084 - sys_corr_51: 7.944369874901721 - sys_corr_52: -2.1915456336340124 - sys_corr_53: -0.5846202835658698 - sys_corr_54: 8.862335095463294 - sys_corr_55: 1.0122225185072615 - sys_corr_56: -3.77920529787474 - sys_corr_57: -3.5421323092169206 - sys_corr_58: -5.171172186959497 - sys_corr_59: -5.776973636147201 - sys_corr_60: 2.7297477216505475 - sys_corr_61: 10.188952871813228 - sys_corr_62: 6.906101127391064 - sys_corr_63: 12.743574869726961 - sys_corr_64: 5.956394391640304 - sys_corr_65: -7.99824884009497 - sys_corr_66: 2.489559339865307 - sys_corr_67: -2.4524340443809134 - sys_corr_68: -13.73785201542099 - sys_corr_69: -11.357212767791692 - sys_corr_70: -0.583316965824469 - sys_corr_71: -3.5354265643842053 - sys_corr_72: -3.8793830280801505 - sys_corr_73: -9.994884167775925 - sys_corr_74: -22.342264739316416 - sys_corr_75: -0.37532851919648186 - sys_corr_76: 165.37288352381944 - sys_corr_77: -3.654798064666414 - sys_corr_78: 1.3250401743332885 - sys_corr_79: -3.611695742061543 - sys_corr_80: -5.656547429231583 - sys_corr_81: -15.66256928570196 - sys_corr_82: 4.234094416515561 - sys_corr_83: 29.49229561647296 - sys_corr_84: -3.9413921212132745 - sys_corr_85: 13.881171536512367 - sys_corr_86: -124.8425895920853 - sys_corr_87: 34.66060251518361 - sys_corr_88: 71.92123750852068 - sys_corr_89: 4.032619097581423 - sys_corr_90: -4.691627377781062 - sys_corr_91: 3.153755655076838 - sys_corr_92: 91.25074578638906 - sys_corr_93: -0.4435090039649278 - sys_corr_94: -1.771803493844846 - sys_corr_95: -0.38523408597389247 - sys_corr_96: 0.05929250017743297 - sys_corr_97: 1.1795393511651397 - sys_corr_98: 0.4959656088169903 - sys_corr_99: 0.23682036823424915 - sys_corr_100: 0.12760256176200135 - sys_corr_101: -0.35059874058108803 - sys_corr_102: -0.31115203906508004 - sys_corr_103: 0.06181510368695819 - sys_corr_104: -0.10651799275911428 - sys_corr_105: 0.29454963919361005 - sys_corr_106: 0.12161754658727054 - sys_corr_107: 0.2299051248102439 - sys_corr_108: -0.2746353350399105 - sys_corr_109: 0.2778039133213058 - sys_corr_110: 0.2217725872000541 - sys_corr_111: -0.3448742602519912 - sys_corr_112: -0.2554529860097172 - sys_corr_113: -0.18797998759678702 - sys_corr_114: 0.0026480069128453957 - sys_corr_115: -0.14566745281732452 - sys_corr_116: 0.054819747265494684 - sys_corr_117: 0.015432130554218023 - sys_corr_118: 0.3376645602207856 - sys_corr_119: -0.007192340227259099 - sys_corr_120: -0.0112949798749559 - sys_corr_121: 0.0026560575707817867 - sys_corr_122: 0.011266285125555702 - sys_corr_123: 0.007888508034127825 - sys_corr_124: 0.028223998210013777 - sys_corr_125: -0.0036208400970997963 - sys_corr_126: -0.005702562346501657 - sys_corr_127: 0.009487360283288478 - sys_corr_128: -0.15038102383890128 - sys_corr_129: -0.17789706697791985 - sys_corr_130: -0.011127824620698522 - sys_corr_131: -0.0004732769261699498 - sys_corr_132: 0.1448439299787965 + luminosity: 1.08345072e+02 +- sys_corr_1: 2.54662129e+01 + sys_corr_2: 2.14213575e+01 + sys_corr_3: -2.46498883e+01 + sys_corr_4: -2.83105554e+01 + sys_corr_5: -1.24849650e+01 + sys_corr_6: -1.01561274e+00 + sys_corr_7: 1.69523869e+01 + sys_corr_8: 1.49506477e+01 + sys_corr_9: 2.04858682e+01 + sys_corr_10: 4.66590991e+00 + sys_corr_11: 1.55409065e+01 + sys_corr_12: 1.70502099e+01 + sys_corr_13: -1.02065923e+01 + sys_corr_14: 4.36789234e+00 + sys_corr_15: 1.79069411e+00 + sys_corr_16: -9.35601219e-02 + sys_corr_17: 3.17776472e+00 + sys_corr_18: 1.69095113e+00 + sys_corr_19: -6.71293758e+00 + sys_corr_20: -2.77999350e+00 + sys_corr_21: -6.75559055e+00 + sys_corr_22: -6.88357678e+00 + sys_corr_23: 5.76896222e-01 + sys_corr_24: 8.64622418e+00 + sys_corr_25: -2.20971855e+00 + sys_corr_26: 1.69718991e+01 + sys_corr_27: -6.25957679e+00 + sys_corr_28: 1.46756491e+01 + sys_corr_29: -6.28126092e+00 + sys_corr_30: -2.42322772e+01 + sys_corr_31: -1.16419370e+01 + sys_corr_32: -1.00882516e+00 + sys_corr_33: 2.32718014e+00 + sys_corr_34: 8.81764507e+00 + sys_corr_35: -3.64610259e-01 + sys_corr_36: 1.20676932e+00 + sys_corr_37: -1.48976895e+00 + sys_corr_38: -1.96021161e-01 + sys_corr_39: 2.39910026e+00 + sys_corr_40: -4.36146556e+00 + sys_corr_41: 6.20014423e+00 + sys_corr_42: 3.49846393e+00 + sys_corr_43: -1.01000871e+00 + sys_corr_44: -1.36392354e+01 + sys_corr_45: -1.93617271e+00 + sys_corr_46: 7.39737789e-01 + sys_corr_47: -3.38144116e+00 + sys_corr_48: -9.31403987e+00 + sys_corr_49: 3.65529166e+00 + sys_corr_50: 1.60403230e+00 + sys_corr_51: 7.94436987e+00 + sys_corr_52: -2.19154563e+00 + sys_corr_53: -5.84620284e-01 + sys_corr_54: 8.86233510e+00 + sys_corr_55: 1.01222252e+00 + sys_corr_56: -3.77920530e+00 + sys_corr_57: -3.54213231e+00 + sys_corr_58: -5.17117219e+00 + sys_corr_59: -5.77697364e+00 + sys_corr_60: 2.72974772e+00 + sys_corr_61: 1.01889529e+01 + sys_corr_62: 6.90610113e+00 + sys_corr_63: 1.27435749e+01 + sys_corr_64: 5.95639439e+00 + sys_corr_65: -7.99824884e+00 + sys_corr_66: 2.48955934e+00 + sys_corr_67: -2.45243404e+00 + sys_corr_68: -1.37378520e+01 + sys_corr_69: -1.13572128e+01 + sys_corr_70: -5.83316966e-01 + sys_corr_71: -3.53542656e+00 + sys_corr_72: -3.87938303e+00 + sys_corr_73: -9.99488417e+00 + sys_corr_74: -2.23422647e+01 + sys_corr_75: -3.75328519e-01 + sys_corr_76: 1.65372884e+02 + sys_corr_77: -3.65479806e+00 + sys_corr_78: 1.32504017e+00 + sys_corr_79: -3.61169574e+00 + sys_corr_80: -5.65654743e+00 + sys_corr_81: -1.56625693e+01 + sys_corr_82: 4.23409442e+00 + sys_corr_83: 2.94922956e+01 + sys_corr_84: -3.94139212e+00 + sys_corr_85: 1.38811715e+01 + sys_corr_86: -1.24842590e+02 + sys_corr_87: 3.46606025e+01 + sys_corr_88: 7.19212375e+01 + sys_corr_89: 4.03261910e+00 + sys_corr_90: -4.69162738e+00 + sys_corr_91: 3.15375566e+00 + sys_corr_92: 9.12507458e+01 + sys_corr_93: -4.43509004e-01 + sys_corr_94: -1.77180349e+00 + sys_corr_95: -3.85234086e-01 + sys_corr_96: 5.92925002e-02 + sys_corr_97: 1.17953935e+00 + sys_corr_98: 4.95965609e-01 + sys_corr_99: 2.36820368e-01 + sys_corr_100: 1.27602562e-01 + sys_corr_101: -3.50598741e-01 + sys_corr_102: -3.11152039e-01 + sys_corr_103: 6.18151037e-02 + sys_corr_104: -1.06517993e-01 + sys_corr_105: 2.94549639e-01 + sys_corr_106: 1.21617547e-01 + sys_corr_107: 2.29905125e-01 + sys_corr_108: -2.74635335e-01 + sys_corr_109: 2.77803913e-01 + sys_corr_110: 2.21772587e-01 + sys_corr_111: -3.44874260e-01 + sys_corr_112: -2.55452986e-01 + sys_corr_113: -1.87979988e-01 + sys_corr_114: 2.64800691e-03 + sys_corr_115: -1.45667453e-01 + sys_corr_116: 5.48197473e-02 + sys_corr_117: 1.54321306e-02 + sys_corr_118: 3.37664560e-01 + sys_corr_119: -7.19234023e-03 + sys_corr_120: -1.12949799e-02 + sys_corr_121: 2.65605757e-03 + sys_corr_122: 1.12662851e-02 + sys_corr_123: 7.88850803e-03 + sys_corr_124: 2.82239982e-02 + sys_corr_125: -3.62084010e-03 + sys_corr_126: -5.70256235e-03 + sys_corr_127: 9.48736028e-03 + sys_corr_128: -1.50381024e-01 + sys_corr_129: -1.77897067e-01 + sys_corr_130: -1.11278246e-02 + sys_corr_131: -4.73276926e-04 + sys_corr_132: 1.44843930e-01 stat: 0.0 - luminosity: 89.08160800000002 -- sys_corr_1: 11.69753140675175 - sys_corr_2: 20.169296145787044 - sys_corr_3: -17.464580761828962 - sys_corr_4: -25.26522470342904 - sys_corr_5: -14.968498639205006 - sys_corr_6: -2.911918164611016 - sys_corr_7: 7.872884565015058 - sys_corr_8: 8.453782618643567 - sys_corr_9: 10.205030988282829 - sys_corr_10: 1.9882356495575868 - sys_corr_11: 7.127064896085933 - sys_corr_12: 2.9657039046503977 - sys_corr_13: -3.7661906689364715 - sys_corr_14: -0.0754886174290007 - sys_corr_15: 0.9831937371762796 - sys_corr_16: -0.8919262420833218 - sys_corr_17: 0.9697921732831817 - sys_corr_18: -0.7168506724168505 - sys_corr_19: -1.2483956970857224 - sys_corr_20: -4.923419425327521 - sys_corr_21: -4.091090815219561 - sys_corr_22: -7.999280144879172 - sys_corr_23: -0.5035909230916309 - sys_corr_24: 18.211128366490545 - sys_corr_25: 3.329881462550224 - sys_corr_26: 2.5716498095125004 - sys_corr_27: -2.288740146890373 - sys_corr_28: 0.6588243235330021 - sys_corr_29: -10.497526590454699 - sys_corr_30: -9.613374752033582 - sys_corr_31: -12.804658982840689 - sys_corr_32: 1.1785019537899541 - sys_corr_33: 0.5821977499031292 - sys_corr_34: 3.2818764431228664 - sys_corr_35: 0.0008774395304203918 - sys_corr_36: 2.9526191425759873 - sys_corr_37: -2.0927259283246333 - sys_corr_38: -1.9642086806450485 - sys_corr_39: 1.3287561953818718 - sys_corr_40: -3.860953737149641 - sys_corr_41: 2.2325439005857826 - sys_corr_42: -0.42899582293300637 - sys_corr_43: -3.0066548292102353 - sys_corr_44: -6.977697169464184 - sys_corr_45: -0.15663937450934787 - sys_corr_46: 1.2770744115180892 - sys_corr_47: 2.2459543632537144 - sys_corr_48: -1.8118019559466587 - sys_corr_49: 1.7285084292069557 - sys_corr_50: -0.6663290981395595 - sys_corr_51: -3.7911634186864256 - sys_corr_52: 3.806871954026605 - sys_corr_53: 0.02269966425896944 - sys_corr_54: 0.5095237007811594 - sys_corr_55: 3.17866630838912 - sys_corr_56: -0.37880664910020445 - sys_corr_57: -1.2247323940011252 - sys_corr_58: -1.5906156098649955 - sys_corr_59: -0.20963524300934044 - sys_corr_60: 0.2268087985180534 - sys_corr_61: 1.3691487592865592 - sys_corr_62: 2.913034537619144 - sys_corr_63: -0.8485767842055825 - sys_corr_64: -0.9552221639094685 - sys_corr_65: -1.9484277609471077 - sys_corr_66: -1.7869507481577158 - sys_corr_67: -4.759680310381415 - sys_corr_68: -1.3826848204121835 - sys_corr_69: -2.0505658635308825 - sys_corr_70: -1.1344798982235793 - sys_corr_71: -2.513288394210581 - sys_corr_72: -1.1705752311688307 - sys_corr_73: 1.9261700879170112 - sys_corr_74: -1.8763107790426106 - sys_corr_75: -1.5346102338383336 - sys_corr_76: 3.2345604380850475 - sys_corr_77: 1.0232742990608417 - sys_corr_78: -2.272584415715361 - sys_corr_79: -1.1123498645971854 - sys_corr_80: 4.490851184806366 - sys_corr_81: 2.4088186292831986 - sys_corr_82: 0.7453151838197535 - sys_corr_83: -3.690735499426548 - sys_corr_84: 0.3432840879105148 - sys_corr_85: -6.864165961193337 - sys_corr_86: -1.6708884657874712 - sys_corr_87: -0.036956697926809584 - sys_corr_88: -5.455979502703024 - sys_corr_89: -8.262679545381589 - sys_corr_90: 9.00374334124233 - sys_corr_91: 0.3896519926655036 - sys_corr_92: 3.1064245005028543 - sys_corr_93: 13.391836007160238 - sys_corr_94: 104.94066011113647 - sys_corr_95: 107.75362871412393 - sys_corr_96: -0.6575599403692438 - sys_corr_97: 25.431253175850994 - sys_corr_98: 8.37454929712986 - sys_corr_99: 4.526648420589953 - sys_corr_100: -0.4074095264211582 - sys_corr_101: -1.7592123241110917 - sys_corr_102: -1.5990379796380862 - sys_corr_103: -5.926086570202486 - sys_corr_104: -2.312992178518867 - sys_corr_105: 0.08012694417100083 - sys_corr_106: 0.15569981593997007 - sys_corr_107: -0.012554161990876849 - sys_corr_108: -1.068019810121073 - sys_corr_109: -1.0284874004450137 - sys_corr_110: 2.5821504134589395 - sys_corr_111: -1.2615501523398782 - sys_corr_112: -0.6017187542113638 - sys_corr_113: -0.7864778446082913 - sys_corr_114: 0.0028077548314764432 - sys_corr_115: -0.5179576714285026 - sys_corr_116: -0.00474127894194273 - sys_corr_117: -0.03747148758431407 - sys_corr_118: -0.0378478817307537 - sys_corr_119: -0.020296468911010862 - sys_corr_120: 0.010829230087359915 - sys_corr_121: -0.012001278108397788 - sys_corr_122: -0.049207916259478825 - sys_corr_123: -0.036648299610576175 - sys_corr_124: -0.16048272919013892 - sys_corr_125: 0.0252048457471709 - sys_corr_126: -0.021910053818331655 - sys_corr_127: 1.2991960462361802 - sys_corr_128: -1.96199742567062 - sys_corr_129: -0.4162043259209021 - sys_corr_130: 0.0004742278357617143 - sys_corr_131: 0.0008687729321035454 - sys_corr_132: 0.17859156238199775 + luminosity: 8.90816080e+01 +- sys_corr_1: 1.16975314e+01 + sys_corr_2: 2.01692961e+01 + sys_corr_3: -1.74645808e+01 + sys_corr_4: -2.52652247e+01 + sys_corr_5: -1.49684986e+01 + sys_corr_6: -2.91191816e+00 + sys_corr_7: 7.87288457e+00 + sys_corr_8: 8.45378262e+00 + sys_corr_9: 1.02050310e+01 + sys_corr_10: 1.98823565e+00 + sys_corr_11: 7.12706490e+00 + sys_corr_12: 2.96570390e+00 + sys_corr_13: -3.76619067e+00 + sys_corr_14: -7.54886174e-02 + sys_corr_15: 9.83193737e-01 + sys_corr_16: -8.91926242e-01 + sys_corr_17: 9.69792173e-01 + sys_corr_18: -7.16850672e-01 + sys_corr_19: -1.24839570e+00 + sys_corr_20: -4.92341943e+00 + sys_corr_21: -4.09109082e+00 + sys_corr_22: -7.99928014e+00 + sys_corr_23: -5.03590923e-01 + sys_corr_24: 1.82111284e+01 + sys_corr_25: 3.32988146e+00 + sys_corr_26: 2.57164981e+00 + sys_corr_27: -2.28874015e+00 + sys_corr_28: 6.58824324e-01 + sys_corr_29: -1.04975266e+01 + sys_corr_30: -9.61337475e+00 + sys_corr_31: -1.28046590e+01 + sys_corr_32: 1.17850195e+00 + sys_corr_33: 5.82197750e-01 + sys_corr_34: 3.28187644e+00 + sys_corr_35: 8.77439530e-04 + sys_corr_36: 2.95261914e+00 + sys_corr_37: -2.09272593e+00 + sys_corr_38: -1.96420868e+00 + sys_corr_39: 1.32875620e+00 + sys_corr_40: -3.86095374e+00 + sys_corr_41: 2.23254390e+00 + sys_corr_42: -4.28995823e-01 + sys_corr_43: -3.00665483e+00 + sys_corr_44: -6.97769717e+00 + sys_corr_45: -1.56639375e-01 + sys_corr_46: 1.27707441e+00 + sys_corr_47: 2.24595436e+00 + sys_corr_48: -1.81180196e+00 + sys_corr_49: 1.72850843e+00 + sys_corr_50: -6.66329098e-01 + sys_corr_51: -3.79116342e+00 + sys_corr_52: 3.80687195e+00 + sys_corr_53: 2.26996643e-02 + sys_corr_54: 5.09523701e-01 + sys_corr_55: 3.17866631e+00 + sys_corr_56: -3.78806649e-01 + sys_corr_57: -1.22473239e+00 + sys_corr_58: -1.59061561e+00 + sys_corr_59: -2.09635243e-01 + sys_corr_60: 2.26808799e-01 + sys_corr_61: 1.36914876e+00 + sys_corr_62: 2.91303454e+00 + sys_corr_63: -8.48576784e-01 + sys_corr_64: -9.55222164e-01 + sys_corr_65: -1.94842776e+00 + sys_corr_66: -1.78695075e+00 + sys_corr_67: -4.75968031e+00 + sys_corr_68: -1.38268482e+00 + sys_corr_69: -2.05056586e+00 + sys_corr_70: -1.13447990e+00 + sys_corr_71: -2.51328839e+00 + sys_corr_72: -1.17057523e+00 + sys_corr_73: 1.92617009e+00 + sys_corr_74: -1.87631078e+00 + sys_corr_75: -1.53461023e+00 + sys_corr_76: 3.23456044e+00 + sys_corr_77: 1.02327430e+00 + sys_corr_78: -2.27258442e+00 + sys_corr_79: -1.11234986e+00 + sys_corr_80: 4.49085118e+00 + sys_corr_81: 2.40881863e+00 + sys_corr_82: 7.45315184e-01 + sys_corr_83: -3.69073550e+00 + sys_corr_84: 3.43284088e-01 + sys_corr_85: -6.86416596e+00 + sys_corr_86: -1.67088847e+00 + sys_corr_87: -3.69566979e-02 + sys_corr_88: -5.45597950e+00 + sys_corr_89: -8.26267955e+00 + sys_corr_90: 9.00374334e+00 + sys_corr_91: 3.89651993e-01 + sys_corr_92: 3.10642450e+00 + sys_corr_93: 1.33918360e+01 + sys_corr_94: 1.04940660e+02 + sys_corr_95: 1.07753629e+02 + sys_corr_96: -6.57559940e-01 + sys_corr_97: 2.54312532e+01 + sys_corr_98: 8.37454930e+00 + sys_corr_99: 4.52664842e+00 + sys_corr_100: -4.07409526e-01 + sys_corr_101: -1.75921232e+00 + sys_corr_102: -1.59903798e+00 + sys_corr_103: -5.92608657e+00 + sys_corr_104: -2.31299218e+00 + sys_corr_105: 8.01269442e-02 + sys_corr_106: 1.55699816e-01 + sys_corr_107: -1.25541620e-02 + sys_corr_108: -1.06801981e+00 + sys_corr_109: -1.02848740e+00 + sys_corr_110: 2.58215041e+00 + sys_corr_111: -1.26155015e+00 + sys_corr_112: -6.01718754e-01 + sys_corr_113: -7.86477845e-01 + sys_corr_114: 2.80775483e-03 + sys_corr_115: -5.17957671e-01 + sys_corr_116: -4.74127894e-03 + sys_corr_117: -3.74714876e-02 + sys_corr_118: -3.78478817e-02 + sys_corr_119: -2.02964689e-02 + sys_corr_120: 1.08292301e-02 + sys_corr_121: -1.20012781e-02 + sys_corr_122: -4.92079163e-02 + sys_corr_123: -3.66482996e-02 + sys_corr_124: -1.60482729e-01 + sys_corr_125: 2.52048457e-02 + sys_corr_126: -2.19100538e-02 + sys_corr_127: 1.29919605e+00 + sys_corr_128: -1.96199743e+00 + sys_corr_129: -4.16204326e-01 + sys_corr_130: 4.74227836e-04 + sys_corr_131: 8.68772932e-04 + sys_corr_132: 1.78591562e-01 stat: 0.0 - luminosity: 56.532520000000005 -- sys_corr_1: 5.994773035706258 - sys_corr_2: 17.561059734443607 - sys_corr_3: -13.368784460056155 - sys_corr_4: -20.22054053675592 - sys_corr_5: -15.967455575808147 - sys_corr_6: -3.8226760731706038 - sys_corr_7: 1.461392969202286 - sys_corr_8: 3.1490119909074368 - sys_corr_9: 4.390538042261327 - sys_corr_10: 1.412620222362736 - sys_corr_11: 5.055239877688317 - sys_corr_12: 2.978284543030346 - sys_corr_13: -3.8622423628401275 - sys_corr_14: -0.19005637419585675 - sys_corr_15: 1.473619193020645 - sys_corr_16: -2.344698371719021 - sys_corr_17: 0.09768848691287545 - sys_corr_18: -0.9254157534833864 - sys_corr_19: -0.10474671072609423 - sys_corr_20: -2.144141628914226 - sys_corr_21: -2.0674471596542077 - sys_corr_22: -7.296675669833781 - sys_corr_23: -1.4382293467821452 - sys_corr_24: 19.6774634663715 - sys_corr_25: -0.11375615234495587 - sys_corr_26: -2.096145078938176 - sys_corr_27: 4.376457027875685 - sys_corr_28: 4.137170225858654 - sys_corr_29: -1.771729799138029 - sys_corr_30: 3.8476344963035443 - sys_corr_31: -6.538065236730829 - sys_corr_32: 1.6271869452806806 - sys_corr_33: 0.33205038111537993 - sys_corr_34: -0.005119593542597108 - sys_corr_35: -0.04530308033452912 - sys_corr_36: 0.8823555697503658 - sys_corr_37: -3.1427945447753167 - sys_corr_38: -2.1573198030459855 - sys_corr_39: 0.5922181098183937 - sys_corr_40: -3.9203236079274455 - sys_corr_41: 0.3100932495262737 - sys_corr_42: 1.0301639792121842 - sys_corr_43: -4.330849122703849 - sys_corr_44: -3.9301797856123177 - sys_corr_45: 0.15975371030134458 - sys_corr_46: 2.5688444385104727 - sys_corr_47: -0.5456055076298499 - sys_corr_48: 0.269244466147433 - sys_corr_49: 0.908881566832961 - sys_corr_50: 0.8430047362073948 - sys_corr_51: -5.9041207801072195 - sys_corr_52: 5.163513475042668 - sys_corr_53: 2.528258281639593 - sys_corr_54: 0.08743280308537554 - sys_corr_55: 0.19517216477616453 - sys_corr_56: 0.0782227427752106 - sys_corr_57: 0.537394016766651 - sys_corr_58: -0.2950474852157031 - sys_corr_59: 1.5455783829560736 - sys_corr_60: 0.1938561048608968 - sys_corr_61: -1.6500191082159839 - sys_corr_62: 0.5152678429934189 - sys_corr_63: 0.5078466044449838 - sys_corr_64: -3.1178212655344506 - sys_corr_65: 0.4458078063238488 - sys_corr_66: 1.0503734056815555 - sys_corr_67: 0.6030729114851071 - sys_corr_68: -3.789929985728735 - sys_corr_69: -1.2858915669617699 - sys_corr_70: 1.182960230582791 - sys_corr_71: -1.5788084690713817 - sys_corr_72: 4.329469755324816 - sys_corr_73: 0.1374608308200969 - sys_corr_74: -5.8117005583004415 - sys_corr_75: 0.2997355742128409 - sys_corr_76: 8.714219063441492 - sys_corr_77: -1.5182905782732574 - sys_corr_78: -1.8903885214603378 - sys_corr_79: -0.40646184516212586 - sys_corr_80: -8.147792201396024 - sys_corr_81: 2.895429763816444 - sys_corr_82: 1.16792637130064 - sys_corr_83: -6.230964805553608 - sys_corr_84: -14.11995888285712 - sys_corr_85: -25.675792812202463 - sys_corr_86: -1.151598819111438 - sys_corr_87: -0.2581808608028445 - sys_corr_88: -4.722965812364319 - sys_corr_89: -192.2750634635438 - sys_corr_90: -17.89454918389461 - sys_corr_91: 21.845728986781168 - sys_corr_92: 1.7584824442815181 - sys_corr_93: -0.862645704023521 - sys_corr_94: -6.2368134724046955 - sys_corr_95: -4.0208462540704435 - sys_corr_96: 0.13308745021663299 - sys_corr_97: 0.8860096675620474 - sys_corr_98: 0.4207430042444763 - sys_corr_99: 0.09872481872731535 - sys_corr_100: 0.2781398724996121 - sys_corr_101: 0.16274766735962312 - sys_corr_102: -1.4787213076132724 - sys_corr_103: -2.347269565011464 - sys_corr_104: 0.9075673239694794 - sys_corr_105: 0.44091035000038337 - sys_corr_106: 0.2997404148741797 - sys_corr_107: 0.4405954773550122 - sys_corr_108: -0.9526375851696256 - sys_corr_109: -0.3369195954639822 - sys_corr_110: 0.262829571332066 - sys_corr_111: -0.7725898139887222 - sys_corr_112: -0.34953912213071225 - sys_corr_113: -0.3309236323148358 - sys_corr_114: -0.0002722673882456741 - sys_corr_115: -0.12615128613511367 - sys_corr_116: -0.036104647873537864 - sys_corr_117: -0.03477101949973536 - sys_corr_118: -0.03176191773483985 - sys_corr_119: -0.010518781957155693 - sys_corr_120: 0.01866810730732641 - sys_corr_121: -0.006659586285511393 - sys_corr_122: -0.02983131270717632 - sys_corr_123: -0.02119502491537936 - sys_corr_124: -0.10207631191669414 - sys_corr_125: 0.018000544263287583 - sys_corr_126: -0.010975154309676344 - sys_corr_127: 0.4866736883399564 - sys_corr_128: -1.0717942320900522 - sys_corr_129: -0.22816500585825103 - sys_corr_130: 0.004944242358971498 - sys_corr_131: 0.009809554388655531 - sys_corr_132: -0.3090822240889114 + luminosity: 5.65325200e+01 +- sys_corr_1: 5.99477304e+00 + sys_corr_2: 1.75610597e+01 + sys_corr_3: -1.33687845e+01 + sys_corr_4: -2.02205405e+01 + sys_corr_5: -1.59674556e+01 + sys_corr_6: -3.82267607e+00 + sys_corr_7: 1.46139297e+00 + sys_corr_8: 3.14901199e+00 + sys_corr_9: 4.39053804e+00 + sys_corr_10: 1.41262022e+00 + sys_corr_11: 5.05523988e+00 + sys_corr_12: 2.97828454e+00 + sys_corr_13: -3.86224236e+00 + sys_corr_14: -1.90056374e-01 + sys_corr_15: 1.47361919e+00 + sys_corr_16: -2.34469837e+00 + sys_corr_17: 9.76884869e-02 + sys_corr_18: -9.25415753e-01 + sys_corr_19: -1.04746711e-01 + sys_corr_20: -2.14414163e+00 + sys_corr_21: -2.06744716e+00 + sys_corr_22: -7.29667567e+00 + sys_corr_23: -1.43822935e+00 + sys_corr_24: 1.96774635e+01 + sys_corr_25: -1.13756152e-01 + sys_corr_26: -2.09614508e+00 + sys_corr_27: 4.37645703e+00 + sys_corr_28: 4.13717023e+00 + sys_corr_29: -1.77172980e+00 + sys_corr_30: 3.84763450e+00 + sys_corr_31: -6.53806524e+00 + sys_corr_32: 1.62718695e+00 + sys_corr_33: 3.32050381e-01 + sys_corr_34: -5.11959354e-03 + sys_corr_35: -4.53030803e-02 + sys_corr_36: 8.82355570e-01 + sys_corr_37: -3.14279454e+00 + sys_corr_38: -2.15731980e+00 + sys_corr_39: 5.92218110e-01 + sys_corr_40: -3.92032361e+00 + sys_corr_41: 3.10093250e-01 + sys_corr_42: 1.03016398e+00 + sys_corr_43: -4.33084912e+00 + sys_corr_44: -3.93017979e+00 + sys_corr_45: 1.59753710e-01 + sys_corr_46: 2.56884444e+00 + sys_corr_47: -5.45605508e-01 + sys_corr_48: 2.69244466e-01 + sys_corr_49: 9.08881567e-01 + sys_corr_50: 8.43004736e-01 + sys_corr_51: -5.90412078e+00 + sys_corr_52: 5.16351348e+00 + sys_corr_53: 2.52825828e+00 + sys_corr_54: 8.74328031e-02 + sys_corr_55: 1.95172165e-01 + sys_corr_56: 7.82227428e-02 + sys_corr_57: 5.37394017e-01 + sys_corr_58: -2.95047485e-01 + sys_corr_59: 1.54557838e+00 + sys_corr_60: 1.93856105e-01 + sys_corr_61: -1.65001911e+00 + sys_corr_62: 5.15267843e-01 + sys_corr_63: 5.07846604e-01 + sys_corr_64: -3.11782127e+00 + sys_corr_65: 4.45807806e-01 + sys_corr_66: 1.05037341e+00 + sys_corr_67: 6.03072911e-01 + sys_corr_68: -3.78992999e+00 + sys_corr_69: -1.28589157e+00 + sys_corr_70: 1.18296023e+00 + sys_corr_71: -1.57880847e+00 + sys_corr_72: 4.32946976e+00 + sys_corr_73: 1.37460831e-01 + sys_corr_74: -5.81170056e+00 + sys_corr_75: 2.99735574e-01 + sys_corr_76: 8.71421906e+00 + sys_corr_77: -1.51829058e+00 + sys_corr_78: -1.89038852e+00 + sys_corr_79: -4.06461845e-01 + sys_corr_80: -8.14779220e+00 + sys_corr_81: 2.89542976e+00 + sys_corr_82: 1.16792637e+00 + sys_corr_83: -6.23096481e+00 + sys_corr_84: -1.41199589e+01 + sys_corr_85: -2.56757928e+01 + sys_corr_86: -1.15159882e+00 + sys_corr_87: -2.58180861e-01 + sys_corr_88: -4.72296581e+00 + sys_corr_89: -1.92275063e+02 + sys_corr_90: -1.78945492e+01 + sys_corr_91: 2.18457290e+01 + sys_corr_92: 1.75848244e+00 + sys_corr_93: -8.62645704e-01 + sys_corr_94: -6.23681347e+00 + sys_corr_95: -4.02084625e+00 + sys_corr_96: 1.33087450e-01 + sys_corr_97: 8.86009668e-01 + sys_corr_98: 4.20743004e-01 + sys_corr_99: 9.87248187e-02 + sys_corr_100: 2.78139872e-01 + sys_corr_101: 1.62747667e-01 + sys_corr_102: -1.47872131e+00 + sys_corr_103: -2.34726957e+00 + sys_corr_104: 9.07567324e-01 + sys_corr_105: 4.40910350e-01 + sys_corr_106: 2.99740415e-01 + sys_corr_107: 4.40595477e-01 + sys_corr_108: -9.52637585e-01 + sys_corr_109: -3.36919595e-01 + sys_corr_110: 2.62829571e-01 + sys_corr_111: -7.72589814e-01 + sys_corr_112: -3.49539122e-01 + sys_corr_113: -3.30923632e-01 + sys_corr_114: -2.72267388e-04 + sys_corr_115: -1.26151286e-01 + sys_corr_116: -3.61046479e-02 + sys_corr_117: -3.47710195e-02 + sys_corr_118: -3.17619177e-02 + sys_corr_119: -1.05187820e-02 + sys_corr_120: 1.86681073e-02 + sys_corr_121: -6.65958629e-03 + sys_corr_122: -2.98313127e-02 + sys_corr_123: -2.11950249e-02 + sys_corr_124: -1.02076312e-01 + sys_corr_125: 1.80005443e-02 + sys_corr_126: -1.09751543e-02 + sys_corr_127: 4.86673688e-01 + sys_corr_128: -1.07179423e+00 + sys_corr_129: -2.28165006e-01 + sys_corr_130: 4.94424236e-03 + sys_corr_131: 9.80955439e-03 + sys_corr_132: -3.09082224e-01 stat: 0.0 luminosity: 39.56007 -- sys_corr_1: 1.0560199465907576 - sys_corr_2: 5.218610233972612 - sys_corr_3: -4.189938974596437 - sys_corr_4: -13.310385288850394 - sys_corr_5: -6.577145873403278 - sys_corr_6: -2.04628006519527 - sys_corr_7: -0.0832256622557603 - sys_corr_8: 2.0566974561883598 - sys_corr_9: 1.794501524612167 - sys_corr_10: 0.962800705657615 - sys_corr_11: 1.2484716098769242 - sys_corr_12: -1.0332429553546674 - sys_corr_13: -0.4351019559386005 - sys_corr_14: -0.31083656875297283 - sys_corr_15: 0.1158319950602664 - sys_corr_16: -0.6863050374509018 - sys_corr_17: 0.18157715763034593 - sys_corr_18: -0.4631596275643236 - sys_corr_19: -0.5396560117064731 - sys_corr_20: -2.797464929967132 - sys_corr_21: -2.0503218852459035 - sys_corr_22: -4.1253091995180435 - sys_corr_23: -0.23590427204512207 - sys_corr_24: 13.89537375019961 - sys_corr_25: 0.315907989687754 - sys_corr_26: 0.911530041773545 - sys_corr_27: 3.288379727912743 - sys_corr_28: 0.42579690952905885 - sys_corr_29: -2.3440804636140085 - sys_corr_30: 1.438172894205461 - sys_corr_31: -6.243873418470859 - sys_corr_32: 1.178249693886893 - sys_corr_33: -0.14629532462958156 - sys_corr_34: 0.08232197104256951 - sys_corr_35: 0.36538132360265174 - sys_corr_36: 1.577316944531593 - sys_corr_37: -1.1935007067678551 - sys_corr_38: -0.9858237551171807 - sys_corr_39: 0.2866720766264858 - sys_corr_40: -1.2550522293039017 - sys_corr_41: -0.32675458965716037 - sys_corr_42: -0.8190645781754109 - sys_corr_43: -1.7883105710071296 - sys_corr_44: 0.6565134133829024 - sys_corr_45: 0.5537988110312327 - sys_corr_46: 0.8335881961835138 - sys_corr_47: -0.8539117190160118 - sys_corr_48: 3.7640082372081327 - sys_corr_49: -1.148300040559182 - sys_corr_50: -2.591754343251726 - sys_corr_51: -0.10754927438289019 - sys_corr_52: -0.31415711116231065 - sys_corr_53: 0.061283728173692466 - sys_corr_54: 0.055907012923328205 - sys_corr_55: -0.7299853013880405 - sys_corr_56: 0.08296955752296753 - sys_corr_57: 0.09283057135779589 - sys_corr_58: 0.08902774751910716 - sys_corr_59: 0.3203867639573843 - sys_corr_60: -0.5201873271891826 - sys_corr_61: -0.684518921747485 - sys_corr_62: 0.4221120514221918 - sys_corr_63: -0.5523428355621233 - sys_corr_64: -0.06860492056246796 - sys_corr_65: 0.3585373119888615 - sys_corr_66: -0.5314679068539295 - sys_corr_67: 0.23802130212481237 - sys_corr_68: -0.6913524775397457 - sys_corr_69: -0.6074537499012942 - sys_corr_70: 0.47263240615337443 - sys_corr_71: 0.10484082896389456 - sys_corr_72: -0.4492554031998165 - sys_corr_73: 0.29389168363058654 - sys_corr_74: -0.05260180472700482 - sys_corr_75: -0.6291370598792696 - sys_corr_76: 0.5338144419592716 - sys_corr_77: 0.2824757692426511 - sys_corr_78: -0.4427441783851578 - sys_corr_79: -0.2267807645366837 - sys_corr_80: 1.959616250010952 - sys_corr_81: 0.2522312702621838 - sys_corr_82: 0.21101796375440965 - sys_corr_83: -0.586517386025109 - sys_corr_84: -0.4654105223070093 - sys_corr_85: -0.5150514231382528 - sys_corr_86: -1.0887393379914994 - sys_corr_87: -0.022260092514006607 - sys_corr_88: -1.1931922453234944 - sys_corr_89: -2.4152443335036073 - sys_corr_90: 0.44710956441972927 - sys_corr_91: 0.39534031640495554 - sys_corr_92: 0.9103899124051831 - sys_corr_93: 0.04461062562316063 - sys_corr_94: 1.1830410081166127 - sys_corr_95: 3.5819985900864877 - sys_corr_96: 0.15491952189847716 - sys_corr_97: -0.49633715179450794 - sys_corr_98: -0.31180316063353825 - sys_corr_99: 0.06050704386886714 - sys_corr_100: -0.12500982197883742 - sys_corr_101: 0.4313535550114107 - sys_corr_102: 0.9736511393609696 - sys_corr_103: -1.6173560750007998 - sys_corr_104: 0.4555393154938022 - sys_corr_105: 2.255872449131326 - sys_corr_106: 1.830158729688053 - sys_corr_107: 11.510430421732117 - sys_corr_108: 4.080270453748092 - sys_corr_109: 1.3795015973808342 - sys_corr_110: -0.26062994490065644 - sys_corr_111: 34.94839248100874 - sys_corr_112: 0.395364002721232 - sys_corr_113: 0.21798537515717997 - sys_corr_114: 0.00022656834925047033 - sys_corr_115: 0.5725216035287259 - sys_corr_116: -0.20827636040000605 - sys_corr_117: -0.07913785189616714 - sys_corr_118: 0.02695915870109727 - sys_corr_119: -0.0225342558832976 - sys_corr_120: 0.0011745230761173893 - sys_corr_121: -0.06232525086239922 - sys_corr_122: -0.1841493656239635 - sys_corr_123: -0.08819891098962095 - sys_corr_124: -0.25704726204550277 - sys_corr_125: 0.1103375654729962 - sys_corr_126: 0.06852465960822902 - sys_corr_127: -0.07146937968308899 - sys_corr_128: 94.76548385486609 - sys_corr_129: -0.003732339287849628 - sys_corr_130: 0.28543588720103563 - sys_corr_131: 0.049693804318073305 - sys_corr_132: -0.08088909265845812 +- sys_corr_1: 1.05601995e+00 + sys_corr_2: 5.21861023e+00 + sys_corr_3: -4.18993897e+00 + sys_corr_4: -1.33103853e+01 + sys_corr_5: -6.57714587e+00 + sys_corr_6: -2.04628007e+00 + sys_corr_7: -8.32256623e-02 + sys_corr_8: 2.05669746e+00 + sys_corr_9: 1.79450152e+00 + sys_corr_10: 9.62800706e-01 + sys_corr_11: 1.24847161e+00 + sys_corr_12: -1.03324296e+00 + sys_corr_13: -4.35101956e-01 + sys_corr_14: -3.10836569e-01 + sys_corr_15: 1.15831995e-01 + sys_corr_16: -6.86305037e-01 + sys_corr_17: 1.81577158e-01 + sys_corr_18: -4.63159628e-01 + sys_corr_19: -5.39656012e-01 + sys_corr_20: -2.79746493e+00 + sys_corr_21: -2.05032189e+00 + sys_corr_22: -4.12530920e+00 + sys_corr_23: -2.35904272e-01 + sys_corr_24: 1.38953738e+01 + sys_corr_25: 3.15907990e-01 + sys_corr_26: 9.11530042e-01 + sys_corr_27: 3.28837973e+00 + sys_corr_28: 4.25796910e-01 + sys_corr_29: -2.34408046e+00 + sys_corr_30: 1.43817289e+00 + sys_corr_31: -6.24387342e+00 + sys_corr_32: 1.17824969e+00 + sys_corr_33: -1.46295325e-01 + sys_corr_34: 8.23219710e-02 + sys_corr_35: 3.65381324e-01 + sys_corr_36: 1.57731694e+00 + sys_corr_37: -1.19350071e+00 + sys_corr_38: -9.85823755e-01 + sys_corr_39: 2.86672077e-01 + sys_corr_40: -1.25505223e+00 + sys_corr_41: -3.26754590e-01 + sys_corr_42: -8.19064578e-01 + sys_corr_43: -1.78831057e+00 + sys_corr_44: 6.56513413e-01 + sys_corr_45: 5.53798811e-01 + sys_corr_46: 8.33588196e-01 + sys_corr_47: -8.53911719e-01 + sys_corr_48: 3.76400824e+00 + sys_corr_49: -1.14830004e+00 + sys_corr_50: -2.59175434e+00 + sys_corr_51: -1.07549274e-01 + sys_corr_52: -3.14157111e-01 + sys_corr_53: 6.12837282e-02 + sys_corr_54: 5.59070129e-02 + sys_corr_55: -7.29985301e-01 + sys_corr_56: 8.29695575e-02 + sys_corr_57: 9.28305714e-02 + sys_corr_58: 8.90277475e-02 + sys_corr_59: 3.20386764e-01 + sys_corr_60: -5.20187327e-01 + sys_corr_61: -6.84518922e-01 + sys_corr_62: 4.22112051e-01 + sys_corr_63: -5.52342836e-01 + sys_corr_64: -6.86049206e-02 + sys_corr_65: 3.58537312e-01 + sys_corr_66: -5.31467907e-01 + sys_corr_67: 2.38021302e-01 + sys_corr_68: -6.91352478e-01 + sys_corr_69: -6.07453750e-01 + sys_corr_70: 4.72632406e-01 + sys_corr_71: 1.04840829e-01 + sys_corr_72: -4.49255403e-01 + sys_corr_73: 2.93891684e-01 + sys_corr_74: -5.26018047e-02 + sys_corr_75: -6.29137060e-01 + sys_corr_76: 5.33814442e-01 + sys_corr_77: 2.82475769e-01 + sys_corr_78: -4.42744178e-01 + sys_corr_79: -2.26780765e-01 + sys_corr_80: 1.95961625e+00 + sys_corr_81: 2.52231270e-01 + sys_corr_82: 2.11017964e-01 + sys_corr_83: -5.86517386e-01 + sys_corr_84: -4.65410522e-01 + sys_corr_85: -5.15051423e-01 + sys_corr_86: -1.08873934e+00 + sys_corr_87: -2.22600925e-02 + sys_corr_88: -1.19319225e+00 + sys_corr_89: -2.41524433e+00 + sys_corr_90: 4.47109564e-01 + sys_corr_91: 3.95340316e-01 + sys_corr_92: 9.10389912e-01 + sys_corr_93: 4.46106256e-02 + sys_corr_94: 1.18304101e+00 + sys_corr_95: 3.58199859e+00 + sys_corr_96: 1.54919522e-01 + sys_corr_97: -4.96337152e-01 + sys_corr_98: -3.11803161e-01 + sys_corr_99: 6.05070439e-02 + sys_corr_100: -1.25009822e-01 + sys_corr_101: 4.31353555e-01 + sys_corr_102: 9.73651139e-01 + sys_corr_103: -1.61735608e+00 + sys_corr_104: 4.55539315e-01 + sys_corr_105: 2.25587245e+00 + sys_corr_106: 1.83015873e+00 + sys_corr_107: 1.15104304e+01 + sys_corr_108: 4.08027045e+00 + sys_corr_109: 1.37950160e+00 + sys_corr_110: -2.60629945e-01 + sys_corr_111: 3.49483925e+01 + sys_corr_112: 3.95364003e-01 + sys_corr_113: 2.17985375e-01 + sys_corr_114: 2.26568349e-04 + sys_corr_115: 5.72521604e-01 + sys_corr_116: -2.08276360e-01 + sys_corr_117: -7.91378519e-02 + sys_corr_118: 2.69591587e-02 + sys_corr_119: -2.25342559e-02 + sys_corr_120: 1.17452308e-03 + sys_corr_121: -6.23252509e-02 + sys_corr_122: -1.84149366e-01 + sys_corr_123: -8.81989110e-02 + sys_corr_124: -2.57047262e-01 + sys_corr_125: 1.10337565e-01 + sys_corr_126: 6.85246596e-02 + sys_corr_127: -7.14693797e-02 + sys_corr_128: 9.47654839e+01 + sys_corr_129: -3.73233929e-03 + sys_corr_130: 2.85435887e-01 + sys_corr_131: 4.96938043e-02 + sys_corr_132: -8.08890927e-02 stat: 0.0 - luminosity: 13.462196000000002 -- sys_corr_1: 3178.5482345175155 - sys_corr_2: -3272.8185647420355 - sys_corr_3: -1653.0523429220618 - sys_corr_4: 1401.8518004442699 - sys_corr_5: -561.7530734299644 - sys_corr_6: -88.88024605342422 - sys_corr_7: -929.3743365408477 - sys_corr_8: -413.34545730454465 - sys_corr_9: 1141.6370602984855 - sys_corr_10: -247.58999680556863 - sys_corr_11: -217.7208445192102 - sys_corr_12: 316.7288812735632 - sys_corr_13: 273.96149548147633 - sys_corr_14: -164.177102446337 - sys_corr_15: -380.7452217531724 - sys_corr_16: -552.362563898212 - sys_corr_17: 121.03094960095407 - sys_corr_18: -214.86294574162994 - sys_corr_19: 19.41808565974071 - sys_corr_20: 42.059751581666525 - sys_corr_21: 14.341068740472515 - sys_corr_22: 27.127821529942022 - sys_corr_23: 14.809308354795487 - sys_corr_24: -4.147579140809433 - sys_corr_25: 14.573005244827819 - sys_corr_26: 27.13644264124916 - sys_corr_27: 7.810002628545454 - sys_corr_28: -4.01520557493314 - sys_corr_29: -5.427823255698194 - sys_corr_30: 2.6272469794973303 - sys_corr_31: -1.12316031702311 - sys_corr_32: 0.30868219420529674 - sys_corr_33: 1.0300597549204815 - sys_corr_34: 1.5614020097727517 - sys_corr_35: -0.29113157948521484 - sys_corr_36: 0.0772108487645255 - sys_corr_37: -1.2609772159428376 - sys_corr_38: -0.81377202481591 - sys_corr_39: 0.2965359707448465 - sys_corr_40: -1.1586562823002022 - sys_corr_41: 1.2377294120361295 - sys_corr_42: 0.06582607488842136 - sys_corr_43: -0.9239988173612939 - sys_corr_44: -1.5640326479042201 - sys_corr_45: -0.49799403686194305 - sys_corr_46: 0.9647771815231758 - sys_corr_47: -0.05048431130285863 - sys_corr_48: -1.1366035144450946 - sys_corr_49: 0.0002047336482833202 - sys_corr_50: -0.7223159690637999 - sys_corr_51: -0.14161319015284551 - sys_corr_52: 0.48178583697820004 - sys_corr_53: -0.01436068836488452 - sys_corr_54: -0.4838346901760451 - sys_corr_55: 0.3247742014403153 - sys_corr_56: -0.8093866607685775 - sys_corr_57: -0.49971882998730544 - sys_corr_58: 0.31363733741830135 - sys_corr_59: -0.05664712812676161 - sys_corr_60: -0.3947797312089841 - sys_corr_61: 0.5434564595188679 - sys_corr_62: 0.3631299984610445 - sys_corr_63: 0.21611530245975297 - sys_corr_64: 0.2337602587581519 - sys_corr_65: 0.291218225429256 - sys_corr_66: 0.4695095697140749 - sys_corr_67: -0.39727638356479184 - sys_corr_68: 0.39419751287000016 - sys_corr_69: -0.38027823452565984 - sys_corr_70: 0.048708357467874906 - sys_corr_71: -0.141997289338409 - sys_corr_72: -0.09557145517466206 - sys_corr_73: -0.22471558823572624 - sys_corr_74: 0.09889208740943989 - sys_corr_75: 0.009306109770279299 - sys_corr_76: 0.23159893002031012 - sys_corr_77: 0.7100827795704308 - sys_corr_78: 0.18293910218763004 - sys_corr_79: 0.25515087225224437 - sys_corr_80: 0.09986631844618754 - sys_corr_81: -0.2280496770150527 - sys_corr_82: -1.154469472705234 - sys_corr_83: -0.11843740485018889 - sys_corr_84: -0.5389904218810991 - sys_corr_85: -0.18791008773739865 - sys_corr_86: 0.06571625241193697 - sys_corr_87: -0.7851831962630343 - sys_corr_88: 0.015853431279344493 - sys_corr_89: 0.02348325004428102 - sys_corr_90: 0.08678918112797919 - sys_corr_91: 0.16889128624030866 - sys_corr_92: -0.07293503777707175 - sys_corr_93: 0.4228989208084651 - sys_corr_94: 0.04521537065397655 - sys_corr_95: 0.13585998884139938 - sys_corr_96: 1.2105286928937882 - sys_corr_97: -0.5550438115980588 - sys_corr_98: 0.17241002042372364 - sys_corr_99: -0.30885789549653037 - sys_corr_100: 0.2426049048431679 - sys_corr_101: 0.24572513788981196 - sys_corr_102: 0.22613913986116402 - sys_corr_103: 0.06132078996694181 - sys_corr_104: 0.05187178653386436 - sys_corr_105: 0.07401869931102245 - sys_corr_106: -0.030083816731271983 - sys_corr_107: -0.01761635963942848 - sys_corr_108: -0.02153158180705747 - sys_corr_109: -0.0061910478102175405 - sys_corr_110: -0.16174989011772448 - sys_corr_111: -0.00047771422078929225 - sys_corr_112: 0.007856896556982497 - sys_corr_113: -0.05816994484953442 - sys_corr_114: 1.9236937671170188e-05 - sys_corr_115: 0.03328315582550954 - sys_corr_116: 0.007483369694693868 - sys_corr_117: 0.005598616603204329 - sys_corr_118: 0.029717528632738664 - sys_corr_119: -0.00014265364039286525 - sys_corr_120: -0.0012014810548056493 - sys_corr_121: 0.0008864059207030668 - sys_corr_122: 0.008985063630810182 - sys_corr_123: 0.004348026046647428 - sys_corr_124: 0.02136337722613071 - sys_corr_125: -0.010526066008268966 - sys_corr_126: 0.00028856498586211986 - sys_corr_127: 0.223872744497932 - sys_corr_128: 0.03572018818489144 - sys_corr_129: -0.030217697695053242 - sys_corr_130: -0.0020783551341575146 - sys_corr_131: -0.001420511635961544 - sys_corr_132: 0.017438514700230844 + luminosity: 1.34621960e+01 +- sys_corr_1: 3.17854823e+03 + sys_corr_2: -3.27281856e+03 + sys_corr_3: -1.65305234e+03 + sys_corr_4: 1.40185180e+03 + sys_corr_5: -5.61753073e+02 + sys_corr_6: -8.88802461e+01 + sys_corr_7: -9.29374337e+02 + sys_corr_8: -4.13345457e+02 + sys_corr_9: 1.14163706e+03 + sys_corr_10: -2.47589997e+02 + sys_corr_11: -2.17720845e+02 + sys_corr_12: 3.16728881e+02 + sys_corr_13: 2.73961495e+02 + sys_corr_14: -1.64177102e+02 + sys_corr_15: -3.80745222e+02 + sys_corr_16: -5.52362564e+02 + sys_corr_17: 1.21030950e+02 + sys_corr_18: -2.14862946e+02 + sys_corr_19: 1.94180857e+01 + sys_corr_20: 4.20597516e+01 + sys_corr_21: 1.43410687e+01 + sys_corr_22: 2.71278215e+01 + sys_corr_23: 1.48093084e+01 + sys_corr_24: -4.14757914e+00 + sys_corr_25: 1.45730052e+01 + sys_corr_26: 2.71364426e+01 + sys_corr_27: 7.81000263e+00 + sys_corr_28: -4.01520557e+00 + sys_corr_29: -5.42782326e+00 + sys_corr_30: 2.62724698e+00 + sys_corr_31: -1.12316032e+00 + sys_corr_32: 3.08682194e-01 + sys_corr_33: 1.03005975e+00 + sys_corr_34: 1.56140201e+00 + sys_corr_35: -2.91131579e-01 + sys_corr_36: 7.72108488e-02 + sys_corr_37: -1.26097722e+00 + sys_corr_38: -8.13772025e-01 + sys_corr_39: 2.96535971e-01 + sys_corr_40: -1.15865628e+00 + sys_corr_41: 1.23772941e+00 + sys_corr_42: 6.58260749e-02 + sys_corr_43: -9.23998817e-01 + sys_corr_44: -1.56403265e+00 + sys_corr_45: -4.97994037e-01 + sys_corr_46: 9.64777182e-01 + sys_corr_47: -5.04843113e-02 + sys_corr_48: -1.13660351e+00 + sys_corr_49: 2.04733648e-04 + sys_corr_50: -7.22315969e-01 + sys_corr_51: -1.41613190e-01 + sys_corr_52: 4.81785837e-01 + sys_corr_53: -1.43606884e-02 + sys_corr_54: -4.83834690e-01 + sys_corr_55: 3.24774201e-01 + sys_corr_56: -8.09386661e-01 + sys_corr_57: -4.99718830e-01 + sys_corr_58: 3.13637337e-01 + sys_corr_59: -5.66471281e-02 + sys_corr_60: -3.94779731e-01 + sys_corr_61: 5.43456460e-01 + sys_corr_62: 3.63129998e-01 + sys_corr_63: 2.16115302e-01 + sys_corr_64: 2.33760259e-01 + sys_corr_65: 2.91218225e-01 + sys_corr_66: 4.69509570e-01 + sys_corr_67: -3.97276384e-01 + sys_corr_68: 3.94197513e-01 + sys_corr_69: -3.80278235e-01 + sys_corr_70: 4.87083575e-02 + sys_corr_71: -1.41997289e-01 + sys_corr_72: -9.55714552e-02 + sys_corr_73: -2.24715588e-01 + sys_corr_74: 9.88920874e-02 + sys_corr_75: 9.30610977e-03 + sys_corr_76: 2.31598930e-01 + sys_corr_77: 7.10082780e-01 + sys_corr_78: 1.82939102e-01 + sys_corr_79: 2.55150872e-01 + sys_corr_80: 9.98663184e-02 + sys_corr_81: -2.28049677e-01 + sys_corr_82: -1.15446947e+00 + sys_corr_83: -1.18437405e-01 + sys_corr_84: -5.38990422e-01 + sys_corr_85: -1.87910088e-01 + sys_corr_86: 6.57162524e-02 + sys_corr_87: -7.85183196e-01 + sys_corr_88: 1.58534313e-02 + sys_corr_89: 2.34832500e-02 + sys_corr_90: 8.67891811e-02 + sys_corr_91: 1.68891286e-01 + sys_corr_92: -7.29350378e-02 + sys_corr_93: 4.22898921e-01 + sys_corr_94: 4.52153707e-02 + sys_corr_95: 1.35859989e-01 + sys_corr_96: 1.21052869e+00 + sys_corr_97: -5.55043812e-01 + sys_corr_98: 1.72410020e-01 + sys_corr_99: -3.08857895e-01 + sys_corr_100: 2.42604905e-01 + sys_corr_101: 2.45725138e-01 + sys_corr_102: 2.26139140e-01 + sys_corr_103: 6.13207900e-02 + sys_corr_104: 5.18717865e-02 + sys_corr_105: 7.40186993e-02 + sys_corr_106: -3.00838167e-02 + sys_corr_107: -1.76163596e-02 + sys_corr_108: -2.15315818e-02 + sys_corr_109: -6.19104781e-03 + sys_corr_110: -1.61749890e-01 + sys_corr_111: -4.77714221e-04 + sys_corr_112: 7.85689656e-03 + sys_corr_113: -5.81699448e-02 + sys_corr_114: 1.92369377e-05 + sys_corr_115: 3.32831558e-02 + sys_corr_116: 7.48336969e-03 + sys_corr_117: 5.59861660e-03 + sys_corr_118: 2.97175286e-02 + sys_corr_119: -1.42653640e-04 + sys_corr_120: -1.20148105e-03 + sys_corr_121: 8.86405921e-04 + sys_corr_122: 8.98506363e-03 + sys_corr_123: 4.34802605e-03 + sys_corr_124: 2.13633772e-02 + sys_corr_125: -1.05260660e-02 + sys_corr_126: 2.88564986e-04 + sys_corr_127: 2.23872744e-01 + sys_corr_128: 3.57201882e-02 + sys_corr_129: -3.02176977e-02 + sys_corr_130: -2.07835513e-03 + sys_corr_131: -1.42051164e-03 + sys_corr_132: 1.74385147e-02 stat: 0.0 - luminosity: 6979.001854000001 -- sys_corr_1: 3226.398599302068 - sys_corr_2: -3279.35620997111 - sys_corr_3: -1506.6197411766254 - sys_corr_4: 1306.8090445926591 - sys_corr_5: -439.8002226864653 - sys_corr_6: -76.62798790059287 - sys_corr_7: -810.3928162750767 - sys_corr_8: 508.5374393422858 - sys_corr_9: -59.478411750348876 - sys_corr_10: -192.02736858934423 - sys_corr_11: 84.25586434748413 - sys_corr_12: -222.37887498634774 - sys_corr_13: -400.3226300147108 - sys_corr_14: 324.709473105513 - sys_corr_15: 720.565386825384 - sys_corr_16: 837.8377507554097 - sys_corr_17: -198.94292362103965 - sys_corr_18: 344.36605514710493 - sys_corr_19: 3.436100113159518 - sys_corr_20: 5.672242077926989 - sys_corr_21: 9.804983513741167 - sys_corr_22: -35.17461923892591 - sys_corr_23: -5.465549056697428 - sys_corr_24: 1.3067894397245567 - sys_corr_25: 10.831032394344904 - sys_corr_26: 13.621943510180456 - sys_corr_27: 8.320893774331667 - sys_corr_28: 2.8902790038822075 - sys_corr_29: -7.526817551454848 - sys_corr_30: -1.573252632527553 - sys_corr_31: -0.07587468728773293 - sys_corr_32: 0.8037081859344812 - sys_corr_33: 0.30124647924547093 - sys_corr_34: -0.22928317223733893 - sys_corr_35: 0.4410388436835366 - sys_corr_36: 0.742043417225605 - sys_corr_37: -0.9597860951369053 - sys_corr_38: -1.0400056980281427 - sys_corr_39: 0.2262908027538502 - sys_corr_40: -0.8838304635352396 - sys_corr_41: 1.4919508404346757 - sys_corr_42: 1.370186003212307 - sys_corr_43: -0.7408181727930534 - sys_corr_44: -0.9810600965082505 - sys_corr_45: 1.2291960870072216 - sys_corr_46: 0.026993135189995153 - sys_corr_47: -0.05445363154387673 - sys_corr_48: -0.36742488897568754 - sys_corr_49: 0.21665233849364748 - sys_corr_50: -0.461776160015588 - sys_corr_51: -0.4452971948680936 - sys_corr_52: 0.5771287242804036 - sys_corr_53: -0.3348867229500561 - sys_corr_54: 0.20194235404915822 - sys_corr_55: 0.3837174210558349 - sys_corr_56: 0.1775290851543141 - sys_corr_57: 0.04462472751793882 - sys_corr_58: -0.24621720841144465 - sys_corr_59: -0.02098629604024728 - sys_corr_60: -0.2930892211708013 - sys_corr_61: -0.18598644740436293 - sys_corr_62: 0.4579885050993666 - sys_corr_63: 0.041245429386649025 - sys_corr_64: 0.23927560135832118 - sys_corr_65: 0.09264452535145502 - sys_corr_66: 0.47920649718600655 - sys_corr_67: -0.05764380756164947 - sys_corr_68: 0.04057576540173795 - sys_corr_69: 0.3510845837050093 - sys_corr_70: 0.06446317606925565 - sys_corr_71: 0.02732863447919563 - sys_corr_72: 0.08758389571014011 - sys_corr_73: 0.5436710335272077 - sys_corr_74: -0.017855005585851652 - sys_corr_75: -0.13224659394269514 - sys_corr_76: 0.1622020867599952 - sys_corr_77: 0.4895574374973126 - sys_corr_78: 0.0030476811087690845 - sys_corr_79: 0.17937612748885332 - sys_corr_80: 0.16241427472453598 - sys_corr_81: -0.022728105118427495 - sys_corr_82: 0.840793040583497 - sys_corr_83: 0.11452603232705989 - sys_corr_84: 0.6290398518198708 - sys_corr_85: -0.34981867835005426 - sys_corr_86: -0.13362619957887029 - sys_corr_87: -0.7812747115895747 - sys_corr_88: -0.13798166440857884 - sys_corr_89: -0.1415622229401581 - sys_corr_90: -0.10020159307238173 - sys_corr_91: -0.5865913168802989 - sys_corr_92: -0.16238231381865784 - sys_corr_93: -0.9148182464280108 - sys_corr_94: 0.3576127191158711 - sys_corr_95: 0.010352417554215856 - sys_corr_96: -1.0288197862389328 - sys_corr_97: -0.9475592323966485 - sys_corr_98: 0.13237940945768278 - sys_corr_99: 0.35888962732537094 - sys_corr_100: -0.07727053857261858 - sys_corr_101: 0.11398173807515953 - sys_corr_102: 0.019427778903392385 - sys_corr_103: 0.02520301001279366 - sys_corr_104: -0.09157634252496646 - sys_corr_105: 0.07143940154063798 - sys_corr_106: 0.06999948760450292 - sys_corr_107: 0.001038755893070932 - sys_corr_108: 0.0021869007507835047 - sys_corr_109: -0.006627242642195032 - sys_corr_110: -0.0869073216735694 - sys_corr_111: 0.01657366870570735 - sys_corr_112: -0.022035515925718837 - sys_corr_113: -0.04175422513175281 - sys_corr_114: 7.159132269284716e-05 - sys_corr_115: 0.012820509264683793 - sys_corr_116: 0.002090448247133094 - sys_corr_117: -0.0009406094104833506 - sys_corr_118: 0.01759927354686369 - sys_corr_119: -0.0007926839855915975 - sys_corr_120: 0.004915676333377452 - sys_corr_121: 0.0017332089820313726 - sys_corr_122: 0.004802827488515751 - sys_corr_123: 0.003926898965772073 - sys_corr_124: 0.010914571323875468 - sys_corr_125: -0.002098807232690641 - sys_corr_126: 0.00036066029681239173 - sys_corr_127: -0.03176857768546179 - sys_corr_128: 0.01856766390127577 - sys_corr_129: -0.03514917647257957 - sys_corr_130: -0.0011601872235044856 - sys_corr_131: -0.0047428742871998475 - sys_corr_132: 0.010667682339509184 + luminosity: 6.97900185e+03 +- sys_corr_1: 3.22639860e+03 + sys_corr_2: -3.27935621e+03 + sys_corr_3: -1.50661974e+03 + sys_corr_4: 1.30680904e+03 + sys_corr_5: -4.39800223e+02 + sys_corr_6: -7.66279879e+01 + sys_corr_7: -8.10392816e+02 + sys_corr_8: 5.08537439e+02 + sys_corr_9: -5.94784118e+01 + sys_corr_10: -1.92027369e+02 + sys_corr_11: 8.42558643e+01 + sys_corr_12: -2.22378875e+02 + sys_corr_13: -4.00322630e+02 + sys_corr_14: 3.24709473e+02 + sys_corr_15: 7.20565387e+02 + sys_corr_16: 8.37837751e+02 + sys_corr_17: -1.98942924e+02 + sys_corr_18: 3.44366055e+02 + sys_corr_19: 3.43610011e+00 + sys_corr_20: 5.67224208e+00 + sys_corr_21: 9.80498351e+00 + sys_corr_22: -3.51746192e+01 + sys_corr_23: -5.46554906e+00 + sys_corr_24: 1.30678944e+00 + sys_corr_25: 1.08310324e+01 + sys_corr_26: 1.36219435e+01 + sys_corr_27: 8.32089377e+00 + sys_corr_28: 2.89027900e+00 + sys_corr_29: -7.52681755e+00 + sys_corr_30: -1.57325263e+00 + sys_corr_31: -7.58746873e-02 + sys_corr_32: 8.03708186e-01 + sys_corr_33: 3.01246479e-01 + sys_corr_34: -2.29283172e-01 + sys_corr_35: 4.41038844e-01 + sys_corr_36: 7.42043417e-01 + sys_corr_37: -9.59786095e-01 + sys_corr_38: -1.04000570e+00 + sys_corr_39: 2.26290803e-01 + sys_corr_40: -8.83830464e-01 + sys_corr_41: 1.49195084e+00 + sys_corr_42: 1.37018600e+00 + sys_corr_43: -7.40818173e-01 + sys_corr_44: -9.81060097e-01 + sys_corr_45: 1.22919609e+00 + sys_corr_46: 2.69931352e-02 + sys_corr_47: -5.44536315e-02 + sys_corr_48: -3.67424889e-01 + sys_corr_49: 2.16652338e-01 + sys_corr_50: -4.61776160e-01 + sys_corr_51: -4.45297195e-01 + sys_corr_52: 5.77128724e-01 + sys_corr_53: -3.34886723e-01 + sys_corr_54: 2.01942354e-01 + sys_corr_55: 3.83717421e-01 + sys_corr_56: 1.77529085e-01 + sys_corr_57: 4.46247275e-02 + sys_corr_58: -2.46217208e-01 + sys_corr_59: -2.09862960e-02 + sys_corr_60: -2.93089221e-01 + sys_corr_61: -1.85986447e-01 + sys_corr_62: 4.57988505e-01 + sys_corr_63: 4.12454294e-02 + sys_corr_64: 2.39275601e-01 + sys_corr_65: 9.26445254e-02 + sys_corr_66: 4.79206497e-01 + sys_corr_67: -5.76438076e-02 + sys_corr_68: 4.05757654e-02 + sys_corr_69: 3.51084584e-01 + sys_corr_70: 6.44631761e-02 + sys_corr_71: 2.73286345e-02 + sys_corr_72: 8.75838957e-02 + sys_corr_73: 5.43671034e-01 + sys_corr_74: -1.78550056e-02 + sys_corr_75: -1.32246594e-01 + sys_corr_76: 1.62202087e-01 + sys_corr_77: 4.89557437e-01 + sys_corr_78: 3.04768111e-03 + sys_corr_79: 1.79376127e-01 + sys_corr_80: 1.62414275e-01 + sys_corr_81: -2.27281051e-02 + sys_corr_82: 8.40793041e-01 + sys_corr_83: 1.14526032e-01 + sys_corr_84: 6.29039852e-01 + sys_corr_85: -3.49818678e-01 + sys_corr_86: -1.33626200e-01 + sys_corr_87: -7.81274712e-01 + sys_corr_88: -1.37981664e-01 + sys_corr_89: -1.41562223e-01 + sys_corr_90: -1.00201593e-01 + sys_corr_91: -5.86591317e-01 + sys_corr_92: -1.62382314e-01 + sys_corr_93: -9.14818246e-01 + sys_corr_94: 3.57612719e-01 + sys_corr_95: 1.03524176e-02 + sys_corr_96: -1.02881979e+00 + sys_corr_97: -9.47559232e-01 + sys_corr_98: 1.32379409e-01 + sys_corr_99: 3.58889627e-01 + sys_corr_100: -7.72705386e-02 + sys_corr_101: 1.13981738e-01 + sys_corr_102: 1.94277789e-02 + sys_corr_103: 2.52030100e-02 + sys_corr_104: -9.15763425e-02 + sys_corr_105: 7.14394015e-02 + sys_corr_106: 6.99994876e-02 + sys_corr_107: 1.03875589e-03 + sys_corr_108: 2.18690075e-03 + sys_corr_109: -6.62724264e-03 + sys_corr_110: -8.69073217e-02 + sys_corr_111: 1.65736687e-02 + sys_corr_112: -2.20355159e-02 + sys_corr_113: -4.17542251e-02 + sys_corr_114: 7.15913227e-05 + sys_corr_115: 1.28205093e-02 + sys_corr_116: 2.09044825e-03 + sys_corr_117: -9.40609410e-04 + sys_corr_118: 1.75992735e-02 + sys_corr_119: -7.92683986e-04 + sys_corr_120: 4.91567633e-03 + sys_corr_121: 1.73320898e-03 + sys_corr_122: 4.80282749e-03 + sys_corr_123: 3.92689897e-03 + sys_corr_124: 1.09145713e-02 + sys_corr_125: -2.09880723e-03 + sys_corr_126: 3.60660297e-04 + sys_corr_127: -3.17685777e-02 + sys_corr_128: 1.85676639e-02 + sys_corr_129: -3.51491765e-02 + sys_corr_130: -1.16018722e-03 + sys_corr_131: -4.74287429e-03 + sys_corr_132: 1.06676823e-02 stat: 0.0 - luminosity: 6935.227794 -- sys_corr_1: 3390.62509493841 - sys_corr_2: -3360.3057654654463 - sys_corr_3: -1255.8301792030722 - sys_corr_4: 977.539280655854 - sys_corr_5: -149.7417048465186 - sys_corr_6: 46.35165768420051 - sys_corr_7: 703.4095442691527 - sys_corr_8: -865.6382131911828 - sys_corr_9: -468.49757981149094 - sys_corr_10: 1305.8135195702328 - sys_corr_11: 211.24984747572097 - sys_corr_12: -395.2184616887098 - sys_corr_13: -484.97810260787793 - sys_corr_14: -20.343383260178136 - sys_corr_15: -118.75689902215811 - sys_corr_16: -152.0779480526029 - sys_corr_17: 51.435046885925644 - sys_corr_18: -85.27698603996875 - sys_corr_19: -16.7649314397426 - sys_corr_20: 14.587150996314593 - sys_corr_21: -7.292353705380508 - sys_corr_22: -35.688684309983415 - sys_corr_23: 8.155901901588354 - sys_corr_24: -0.5664940633767143 - sys_corr_25: -0.20703782364346712 - sys_corr_26: 11.448481636001455 - sys_corr_27: 14.987225754968298 - sys_corr_28: 7.4356176745084 - sys_corr_29: -5.362515580449192 - sys_corr_30: -6.834586013795675 - sys_corr_31: -2.5254464544356297 - sys_corr_32: 0.23552693628894503 - sys_corr_33: 0.6425547366754779 - sys_corr_34: 1.4581810295397617 - sys_corr_35: -0.35724361739635957 - sys_corr_36: 0.44285211652504997 - sys_corr_37: -1.7296090128715178 - sys_corr_38: -0.7934265673826358 - sys_corr_39: 0.19004943825993426 - sys_corr_40: -1.0389703908367505 - sys_corr_41: 0.5601384059291612 - sys_corr_42: 1.0496297274721549 - sys_corr_43: -1.2174305283444071 - sys_corr_44: -1.1163847650564906 - sys_corr_45: -0.06524869100941545 - sys_corr_46: 0.4200427897085827 - sys_corr_47: 0.05995200167982081 - sys_corr_48: -0.7430025769146364 - sys_corr_49: -0.6836328156120174 - sys_corr_50: -0.2501679523003918 - sys_corr_51: -0.36938088648517003 - sys_corr_52: 0.8159043252445538 - sys_corr_53: 0.0380517348712438 - sys_corr_54: -0.02358756507066044 - sys_corr_55: 0.06429236259942715 - sys_corr_56: 0.375038459210472 - sys_corr_57: 0.3855713099681182 - sys_corr_58: -0.7385894604201784 - sys_corr_59: 0.10934825579879993 - sys_corr_60: -0.4861249644680932 - sys_corr_61: 0.2780006904821169 - sys_corr_62: 0.3084589676280455 - sys_corr_63: 0.35088996657581883 - sys_corr_64: 0.16546043238306318 - sys_corr_65: 0.4117514351776173 - sys_corr_66: 0.287087132807567 - sys_corr_67: -0.07220952103643877 - sys_corr_68: -0.256782891851358 - sys_corr_69: -0.5188186474823668 - sys_corr_70: -0.32507601555124926 - sys_corr_71: -0.38840334335062454 - sys_corr_72: 0.1459742315384323 - sys_corr_73: -0.060168310667451194 - sys_corr_74: -0.19900011766293563 - sys_corr_75: -0.2666171761357731 - sys_corr_76: -0.14849305039074087 - sys_corr_77: 0.22525251857309392 - sys_corr_78: 0.15376681918735424 - sys_corr_79: 0.1039481200531542 - sys_corr_80: 0.23703132176050531 - sys_corr_81: 0.050291654526870955 - sys_corr_82: 0.08702155304947612 - sys_corr_83: 0.0922282791868949 - sys_corr_84: 0.21894248609560382 - sys_corr_85: -0.35134884979377423 - sys_corr_86: -0.11391474636740913 - sys_corr_87: -0.09329969688999447 - sys_corr_88: -0.014712957641262712 - sys_corr_89: -0.010579101517707136 - sys_corr_90: -0.1654480544199119 - sys_corr_91: -0.40373891314813054 - sys_corr_92: -0.25966447799999376 - sys_corr_93: 1.0950985665377118 - sys_corr_94: 0.0021853357468843574 - sys_corr_95: -0.003640424711879801 - sys_corr_96: -0.44641682779875735 - sys_corr_97: -0.24896477575981216 - sys_corr_98: -0.29275443078761976 - sys_corr_99: -0.4009040720749691 - sys_corr_100: 0.07836040247239563 - sys_corr_101: 0.054687525080126 - sys_corr_102: -0.11813949132395359 - sys_corr_103: -0.020147033632913685 - sys_corr_104: -0.06517496880984261 - sys_corr_105: 0.02956249022461105 - sys_corr_106: -0.04369324280991831 - sys_corr_107: -0.05962141883561141 - sys_corr_108: -0.00013180048703264593 - sys_corr_109: -0.030729867790216307 - sys_corr_110: -0.47659098512935744 - sys_corr_111: 0.027007644815476954 - sys_corr_112: -0.004668474687258622 - sys_corr_113: -0.03652801548604702 - sys_corr_114: -0.00010973433594903225 - sys_corr_115: 0.001954681902685139 - sys_corr_116: 0.004356320966606883 - sys_corr_117: 9.171616298075246e-05 - sys_corr_118: 0.017228701582999023 - sys_corr_119: 0.0012373053050178096 - sys_corr_120: 0.0015586014003230273 - sys_corr_121: 0.0005469153335508417 - sys_corr_122: -0.0002192185425428153 - sys_corr_123: 0.0004646965967667861 - sys_corr_124: 0.008174981687635943 - sys_corr_125: -0.0033177845759893286 - sys_corr_126: -0.0006484842265442511 - sys_corr_127: -0.037790545250303516 - sys_corr_128: 0.017369559132267145 - sys_corr_129: -0.01008558117573923 - sys_corr_130: -0.0005115311500659822 - sys_corr_131: -0.0021788571468385636 - sys_corr_132: 0.0012449174051038555 + luminosity: 6.93522779e+03 +- sys_corr_1: 3.39062509e+03 + sys_corr_2: -3.36030577e+03 + sys_corr_3: -1.25583018e+03 + sys_corr_4: 9.77539281e+02 + sys_corr_5: -1.49741705e+02 + sys_corr_6: 4.63516577e+01 + sys_corr_7: 7.03409544e+02 + sys_corr_8: -8.65638213e+02 + sys_corr_9: -4.68497580e+02 + sys_corr_10: 1.30581352e+03 + sys_corr_11: 2.11249847e+02 + sys_corr_12: -3.95218462e+02 + sys_corr_13: -4.84978103e+02 + sys_corr_14: -2.03433833e+01 + sys_corr_15: -1.18756899e+02 + sys_corr_16: -1.52077948e+02 + sys_corr_17: 5.14350469e+01 + sys_corr_18: -8.52769860e+01 + sys_corr_19: -1.67649314e+01 + sys_corr_20: 1.45871510e+01 + sys_corr_21: -7.29235371e+00 + sys_corr_22: -3.56886843e+01 + sys_corr_23: 8.15590190e+00 + sys_corr_24: -5.66494063e-01 + sys_corr_25: -2.07037824e-01 + sys_corr_26: 1.14484816e+01 + sys_corr_27: 1.49872258e+01 + sys_corr_28: 7.43561767e+00 + sys_corr_29: -5.36251558e+00 + sys_corr_30: -6.83458601e+00 + sys_corr_31: -2.52544645e+00 + sys_corr_32: 2.35526936e-01 + sys_corr_33: 6.42554737e-01 + sys_corr_34: 1.45818103e+00 + sys_corr_35: -3.57243617e-01 + sys_corr_36: 4.42852117e-01 + sys_corr_37: -1.72960901e+00 + sys_corr_38: -7.93426567e-01 + sys_corr_39: 1.90049438e-01 + sys_corr_40: -1.03897039e+00 + sys_corr_41: 5.60138406e-01 + sys_corr_42: 1.04962973e+00 + sys_corr_43: -1.21743053e+00 + sys_corr_44: -1.11638477e+00 + sys_corr_45: -6.52486910e-02 + sys_corr_46: 4.20042790e-01 + sys_corr_47: 5.99520017e-02 + sys_corr_48: -7.43002577e-01 + sys_corr_49: -6.83632816e-01 + sys_corr_50: -2.50167952e-01 + sys_corr_51: -3.69380886e-01 + sys_corr_52: 8.15904325e-01 + sys_corr_53: 3.80517349e-02 + sys_corr_54: -2.35875651e-02 + sys_corr_55: 6.42923626e-02 + sys_corr_56: 3.75038459e-01 + sys_corr_57: 3.85571310e-01 + sys_corr_58: -7.38589460e-01 + sys_corr_59: 1.09348256e-01 + sys_corr_60: -4.86124964e-01 + sys_corr_61: 2.78000690e-01 + sys_corr_62: 3.08458968e-01 + sys_corr_63: 3.50889967e-01 + sys_corr_64: 1.65460432e-01 + sys_corr_65: 4.11751435e-01 + sys_corr_66: 2.87087133e-01 + sys_corr_67: -7.22095210e-02 + sys_corr_68: -2.56782892e-01 + sys_corr_69: -5.18818647e-01 + sys_corr_70: -3.25076016e-01 + sys_corr_71: -3.88403343e-01 + sys_corr_72: 1.45974232e-01 + sys_corr_73: -6.01683107e-02 + sys_corr_74: -1.99000118e-01 + sys_corr_75: -2.66617176e-01 + sys_corr_76: -1.48493050e-01 + sys_corr_77: 2.25252519e-01 + sys_corr_78: 1.53766819e-01 + sys_corr_79: 1.03948120e-01 + sys_corr_80: 2.37031322e-01 + sys_corr_81: 5.02916545e-02 + sys_corr_82: 8.70215530e-02 + sys_corr_83: 9.22282792e-02 + sys_corr_84: 2.18942486e-01 + sys_corr_85: -3.51348850e-01 + sys_corr_86: -1.13914746e-01 + sys_corr_87: -9.32996969e-02 + sys_corr_88: -1.47129576e-02 + sys_corr_89: -1.05791015e-02 + sys_corr_90: -1.65448054e-01 + sys_corr_91: -4.03738913e-01 + sys_corr_92: -2.59664478e-01 + sys_corr_93: 1.09509857e+00 + sys_corr_94: 2.18533575e-03 + sys_corr_95: -3.64042471e-03 + sys_corr_96: -4.46416828e-01 + sys_corr_97: -2.48964776e-01 + sys_corr_98: -2.92754431e-01 + sys_corr_99: -4.00904072e-01 + sys_corr_100: 7.83604025e-02 + sys_corr_101: 5.46875251e-02 + sys_corr_102: -1.18139491e-01 + sys_corr_103: -2.01470336e-02 + sys_corr_104: -6.51749688e-02 + sys_corr_105: 2.95624902e-02 + sys_corr_106: -4.36932428e-02 + sys_corr_107: -5.96214188e-02 + sys_corr_108: -1.31800487e-04 + sys_corr_109: -3.07298678e-02 + sys_corr_110: -4.76590985e-01 + sys_corr_111: 2.70076448e-02 + sys_corr_112: -4.66847469e-03 + sys_corr_113: -3.65280155e-02 + sys_corr_114: -1.09734336e-04 + sys_corr_115: 1.95468190e-03 + sys_corr_116: 4.35632097e-03 + sys_corr_117: 9.17161630e-05 + sys_corr_118: 1.72287016e-02 + sys_corr_119: 1.23730531e-03 + sys_corr_120: 1.55860140e-03 + sys_corr_121: 5.46915334e-04 + sys_corr_122: -2.19218543e-04 + sys_corr_123: 4.64696597e-04 + sys_corr_124: 8.17498169e-03 + sys_corr_125: -3.31778458e-03 + sys_corr_126: -6.48484227e-04 + sys_corr_127: -3.77905453e-02 + sys_corr_128: 1.73695591e-02 + sys_corr_129: -1.00855812e-02 + sys_corr_130: -5.11531150e-04 + sys_corr_131: -2.17885715e-03 + sys_corr_132: 1.24491741e-03 stat: 0.0 - luminosity: 6948.627620000001 -- sys_corr_1: 3671.624799325753 - sys_corr_2: -3322.797589612506 - sys_corr_3: -752.8364787905523 - sys_corr_4: 414.3595814501299 - sys_corr_5: 149.60106164160592 - sys_corr_6: 174.79632761881953 - sys_corr_7: 125.47102724294946 - sys_corr_8: 1070.9017550083993 - sys_corr_9: -1239.4338784083823 - sys_corr_10: -517.6502428459938 - sys_corr_11: 229.9384112098963 - sys_corr_12: 309.651875033961 - sys_corr_13: 169.3976957653582 - sys_corr_14: -328.18682414087584 - sys_corr_15: -544.8964119896245 - sys_corr_16: -332.26672864211054 - sys_corr_17: 70.33209658512665 - sys_corr_18: -138.74554636375163 - sys_corr_19: -20.815178029149568 - sys_corr_20: -13.235918304482102 - sys_corr_21: 5.888825745500602 - sys_corr_22: -44.34175310462318 - sys_corr_23: -1.3180829380088661 - sys_corr_24: 14.416881652460582 - sys_corr_25: -8.452969685778442 - sys_corr_26: -14.486919763215921 - sys_corr_27: 1.4187926353823965 - sys_corr_28: 7.077884655750743 - sys_corr_29: -7.989702118730365 - sys_corr_30: -10.845568590494041 - sys_corr_31: -7.112401484825249 - sys_corr_32: 0.8285843527941393 - sys_corr_33: 0.5925116462549727 - sys_corr_34: -0.1525434417190414 - sys_corr_35: -0.08191314882939787 - sys_corr_36: 1.0083255457941156 - sys_corr_37: -1.014053789155875 - sys_corr_38: -0.2267047839919673 - sys_corr_39: 0.14527026494700357 - sys_corr_40: -0.32216540032853197 - sys_corr_41: -0.7255609743934178 - sys_corr_42: 0.3192760735674951 - sys_corr_43: -0.8937484809088668 - sys_corr_44: -0.4033049085756973 - sys_corr_45: -0.26759926885414204 - sys_corr_46: -0.7957928937795743 - sys_corr_47: 0.10169661515568477 - sys_corr_48: -0.4665871454913729 - sys_corr_49: 0.9180931036640944 - sys_corr_50: -0.0526899190923038 - sys_corr_51: -0.527411225987458 - sys_corr_52: 0.28660061068612624 - sys_corr_53: 0.08330765398728461 - sys_corr_54: 0.13087612919321356 - sys_corr_55: -0.1335777466476996 - sys_corr_56: 0.17946286272915962 - sys_corr_57: 0.40387265931270283 - sys_corr_58: 0.20213000347122378 - sys_corr_59: -0.2728599690687352 - sys_corr_60: 0.8584740079389873 - sys_corr_61: -0.463723478719855 - sys_corr_62: -0.4539102608346776 - sys_corr_63: -0.33050090477832905 - sys_corr_64: -0.3840475835438984 - sys_corr_65: -0.5498532965949358 - sys_corr_66: -0.06551822943336513 - sys_corr_67: 0.06797746124671523 - sys_corr_68: -0.21482731950754927 - sys_corr_69: -0.1367135706158986 - sys_corr_70: -0.4173890504902747 - sys_corr_71: 0.033171433915700925 - sys_corr_72: 0.2180816452089757 - sys_corr_73: -0.172728097078779 - sys_corr_74: 0.14116411276525082 - sys_corr_75: -0.03016261197897837 - sys_corr_76: -0.13711398155544485 - sys_corr_77: -0.060304909212476734 - sys_corr_78: -0.18112229972869412 - sys_corr_79: -0.3591144115542124 - sys_corr_80: 0.26202373473100743 - sys_corr_81: 0.0464949723859941 - sys_corr_82: -0.027177292290238835 - sys_corr_83: 0.053034706019106 - sys_corr_84: 0.25269531768161085 - sys_corr_85: -0.11869451922601333 - sys_corr_86: 0.18563799693457772 - sys_corr_87: 0.5577432327119772 - sys_corr_88: 0.3239225440448191 - sys_corr_89: -0.0230242385800332 - sys_corr_90: -0.3413607652912726 - sys_corr_91: -0.5017141302264891 - sys_corr_92: 0.021757139606812737 - sys_corr_93: -0.23302711158228426 - sys_corr_94: 0.15452258980420022 - sys_corr_95: -0.20378799847019027 - sys_corr_96: 0.5462832673955738 - sys_corr_97: 0.3756477706045254 - sys_corr_98: -0.8941523868952896 - sys_corr_99: -0.40208263903558344 - sys_corr_100: 0.05748332230298045 - sys_corr_101: -0.04363582585723446 - sys_corr_102: -0.08088402557989548 - sys_corr_103: -0.06568158873033772 - sys_corr_104: -0.025180870540192895 - sys_corr_105: -0.037958915851441684 - sys_corr_106: -0.05849416352722645 - sys_corr_107: -0.12651855181290214 - sys_corr_108: 0.016598818691165227 - sys_corr_109: 0.013432884803603573 - sys_corr_110: -0.17822257532551306 - sys_corr_111: 0.052388369277863826 - sys_corr_112: 0.012155084453371502 - sys_corr_113: -0.01827899061240666 - sys_corr_114: -5.136378752672762e-05 - sys_corr_115: -0.011288063447757566 - sys_corr_116: -0.0015563226830141328 - sys_corr_117: -0.005323342256839567 - sys_corr_118: -0.026607933954712157 - sys_corr_119: 0.0011443019808973893 - sys_corr_120: 0.0016130496781527502 - sys_corr_121: -0.0013578021851485375 - sys_corr_122: -0.0077089006074952645 - sys_corr_123: -0.00636999436988758 - sys_corr_124: -0.004252459614374237 - sys_corr_125: 0.0033266039271688946 - sys_corr_126: -0.002158711787105004 - sys_corr_127: -0.2702506706433275 - sys_corr_128: -0.017318132955490704 - sys_corr_129: -0.007520985592059023 - sys_corr_130: 0.0003397453848648999 - sys_corr_131: 0.00023591851609245583 - sys_corr_132: 0.005973812604942501 + luminosity: 6.94862762e+03 +- sys_corr_1: 3.67162480e+03 + sys_corr_2: -3.32279759e+03 + sys_corr_3: -7.52836479e+02 + sys_corr_4: 4.14359581e+02 + sys_corr_5: 1.49601062e+02 + sys_corr_6: 1.74796328e+02 + sys_corr_7: 1.25471027e+02 + sys_corr_8: 1.07090176e+03 + sys_corr_9: -1.23943388e+03 + sys_corr_10: -5.17650243e+02 + sys_corr_11: 2.29938411e+02 + sys_corr_12: 3.09651875e+02 + sys_corr_13: 1.69397696e+02 + sys_corr_14: -3.28186824e+02 + sys_corr_15: -5.44896412e+02 + sys_corr_16: -3.32266729e+02 + sys_corr_17: 7.03320966e+01 + sys_corr_18: -1.38745546e+02 + sys_corr_19: -2.08151780e+01 + sys_corr_20: -1.32359183e+01 + sys_corr_21: 5.88882575e+00 + sys_corr_22: -4.43417531e+01 + sys_corr_23: -1.31808294e+00 + sys_corr_24: 1.44168817e+01 + sys_corr_25: -8.45296969e+00 + sys_corr_26: -1.44869198e+01 + sys_corr_27: 1.41879264e+00 + sys_corr_28: 7.07788466e+00 + sys_corr_29: -7.98970212e+00 + sys_corr_30: -1.08455686e+01 + sys_corr_31: -7.11240148e+00 + sys_corr_32: 8.28584353e-01 + sys_corr_33: 5.92511646e-01 + sys_corr_34: -1.52543442e-01 + sys_corr_35: -8.19131488e-02 + sys_corr_36: 1.00832555e+00 + sys_corr_37: -1.01405379e+00 + sys_corr_38: -2.26704784e-01 + sys_corr_39: 1.45270265e-01 + sys_corr_40: -3.22165400e-01 + sys_corr_41: -7.25560974e-01 + sys_corr_42: 3.19276074e-01 + sys_corr_43: -8.93748481e-01 + sys_corr_44: -4.03304909e-01 + sys_corr_45: -2.67599269e-01 + sys_corr_46: -7.95792894e-01 + sys_corr_47: 1.01696615e-01 + sys_corr_48: -4.66587145e-01 + sys_corr_49: 9.18093104e-01 + sys_corr_50: -5.26899191e-02 + sys_corr_51: -5.27411226e-01 + sys_corr_52: 2.86600611e-01 + sys_corr_53: 8.33076540e-02 + sys_corr_54: 1.30876129e-01 + sys_corr_55: -1.33577747e-01 + sys_corr_56: 1.79462863e-01 + sys_corr_57: 4.03872659e-01 + sys_corr_58: 2.02130003e-01 + sys_corr_59: -2.72859969e-01 + sys_corr_60: 8.58474008e-01 + sys_corr_61: -4.63723479e-01 + sys_corr_62: -4.53910261e-01 + sys_corr_63: -3.30500905e-01 + sys_corr_64: -3.84047584e-01 + sys_corr_65: -5.49853297e-01 + sys_corr_66: -6.55182294e-02 + sys_corr_67: 6.79774612e-02 + sys_corr_68: -2.14827320e-01 + sys_corr_69: -1.36713571e-01 + sys_corr_70: -4.17389050e-01 + sys_corr_71: 3.31714339e-02 + sys_corr_72: 2.18081645e-01 + sys_corr_73: -1.72728097e-01 + sys_corr_74: 1.41164113e-01 + sys_corr_75: -3.01626120e-02 + sys_corr_76: -1.37113982e-01 + sys_corr_77: -6.03049092e-02 + sys_corr_78: -1.81122300e-01 + sys_corr_79: -3.59114412e-01 + sys_corr_80: 2.62023735e-01 + sys_corr_81: 4.64949724e-02 + sys_corr_82: -2.71772923e-02 + sys_corr_83: 5.30347060e-02 + sys_corr_84: 2.52695318e-01 + sys_corr_85: -1.18694519e-01 + sys_corr_86: 1.85637997e-01 + sys_corr_87: 5.57743233e-01 + sys_corr_88: 3.23922544e-01 + sys_corr_89: -2.30242386e-02 + sys_corr_90: -3.41360765e-01 + sys_corr_91: -5.01714130e-01 + sys_corr_92: 2.17571396e-02 + sys_corr_93: -2.33027112e-01 + sys_corr_94: 1.54522590e-01 + sys_corr_95: -2.03787998e-01 + sys_corr_96: 5.46283267e-01 + sys_corr_97: 3.75647771e-01 + sys_corr_98: -8.94152387e-01 + sys_corr_99: -4.02082639e-01 + sys_corr_100: 5.74833223e-02 + sys_corr_101: -4.36358259e-02 + sys_corr_102: -8.08840256e-02 + sys_corr_103: -6.56815887e-02 + sys_corr_104: -2.51808705e-02 + sys_corr_105: -3.79589159e-02 + sys_corr_106: -5.84941635e-02 + sys_corr_107: -1.26518552e-01 + sys_corr_108: 1.65988187e-02 + sys_corr_109: 1.34328848e-02 + sys_corr_110: -1.78222575e-01 + sys_corr_111: 5.23883693e-02 + sys_corr_112: 1.21550845e-02 + sys_corr_113: -1.82789906e-02 + sys_corr_114: -5.13637875e-05 + sys_corr_115: -1.12880634e-02 + sys_corr_116: -1.55632268e-03 + sys_corr_117: -5.32334226e-03 + sys_corr_118: -2.66079340e-02 + sys_corr_119: 1.14430198e-03 + sys_corr_120: 1.61304968e-03 + sys_corr_121: -1.35780219e-03 + sys_corr_122: -7.70890061e-03 + sys_corr_123: -6.36999437e-03 + sys_corr_124: -4.25245961e-03 + sys_corr_125: 3.32660393e-03 + sys_corr_126: -2.15871179e-03 + sys_corr_127: -2.70250671e-01 + sys_corr_128: -1.73181330e-02 + sys_corr_129: -7.52098559e-03 + sys_corr_130: 3.39745385e-04 + sys_corr_131: 2.35918516e-04 + sys_corr_132: 5.97381260e-03 stat: 0.0 - luminosity: 6880.653780000001 -- sys_corr_1: 3997.25136013494 - sys_corr_2: -2972.0856279519326 - sys_corr_3: -123.80313971411853 - sys_corr_4: -516.6473490896356 - sys_corr_5: 550.960216400951 - sys_corr_6: 354.17120205611934 - sys_corr_7: 1125.5394750310015 - sys_corr_8: -482.7350730977355 - sys_corr_9: 82.84021498882619 - sys_corr_10: -430.54288474162274 - sys_corr_11: -304.29877732110793 - sys_corr_12: 355.38912133892876 - sys_corr_13: 878.3972037814159 - sys_corr_14: 139.83923796244923 - sys_corr_15: 873.7548270563259 - sys_corr_16: -29.255675197530074 - sys_corr_17: -27.022762993124065 - sys_corr_18: -12.396233376528919 - sys_corr_19: -53.754875874474884 - sys_corr_20: -64.9302970983794 - sys_corr_21: -16.046239972505624 - sys_corr_22: -16.871960301156097 - sys_corr_23: -19.191514080889633 - sys_corr_24: 27.899932660453576 - sys_corr_25: -8.44880147000544 - sys_corr_26: -34.10279139822788 - sys_corr_27: -6.574428124475741 - sys_corr_28: 4.259720469143066 - sys_corr_29: 1.0154060317037479 - sys_corr_30: 0.857951025706637 - sys_corr_31: 1.0820774536590245 - sys_corr_32: -0.39504381136727656 - sys_corr_33: 0.04723255890026907 - sys_corr_34: -2.391212327142432 - sys_corr_35: 0.44931187553010044 - sys_corr_36: 0.41913021226510727 - sys_corr_37: 1.5537950343101952 - sys_corr_38: 0.25173552455508547 - sys_corr_39: -0.8368793705907385 - sys_corr_40: 0.2968405496845187 - sys_corr_41: -0.784557402362842 - sys_corr_42: 0.27184935777073094 - sys_corr_43: -0.37085268528014864 - sys_corr_44: 0.2902999555246392 - sys_corr_45: -0.24684549965932412 - sys_corr_46: -0.9262603525520672 - sys_corr_47: -1.1988576577925834 - sys_corr_48: 1.1005034669260454 - sys_corr_49: 0.9560138804238276 - sys_corr_50: 0.5486744401425317 - sys_corr_51: -0.6844732422209495 - sys_corr_52: 0.0928614202029987 - sys_corr_53: 0.41992335631012323 - sys_corr_54: 0.2118773390879934 - sys_corr_55: -0.4576272695322198 - sys_corr_56: 0.2910271126161073 - sys_corr_57: 0.3419125447793187 - sys_corr_58: 0.04804154350606184 - sys_corr_59: 0.3202756686571271 - sys_corr_60: 0.02705706243639259 - sys_corr_61: -0.8004758993144568 - sys_corr_62: -0.5177674123870819 - sys_corr_63: -0.5482779210520958 - sys_corr_64: -0.07104536940181214 - sys_corr_65: -0.20780676196846382 - sys_corr_66: -0.6136147961663703 - sys_corr_67: 0.7346057408149743 - sys_corr_68: -0.13707406816671808 - sys_corr_69: 0.5759708149962203 - sys_corr_70: -0.18940568855062767 - sys_corr_71: 0.22182804239889725 - sys_corr_72: -0.015850172310087063 - sys_corr_73: 0.16004708860817568 - sys_corr_74: 0.5892832379099417 - sys_corr_75: 0.653433487267024 - sys_corr_76: -0.3300193482812739 - sys_corr_77: -0.13142140406879393 - sys_corr_78: -0.4104400826073922 - sys_corr_79: -0.007616811942840316 - sys_corr_80: 0.10611675384946 - sys_corr_81: -0.34342848687007876 - sys_corr_82: 0.4857556867676143 - sys_corr_83: 0.007782932904830837 - sys_corr_84: 0.9576200560496309 - sys_corr_85: 0.017533168496437473 - sys_corr_86: -0.1720552347455884 - sys_corr_87: 0.7275277776978495 - sys_corr_88: 0.07094025537902589 - sys_corr_89: -0.15841712940312444 - sys_corr_90: -0.12283169525975698 - sys_corr_91: -0.553606759795382 - sys_corr_92: 0.3220724166668444 - sys_corr_93: -0.05368716817552818 - sys_corr_94: -0.07414844701688471 - sys_corr_95: -0.02702716036454265 - sys_corr_96: -0.1758119901674367 - sys_corr_97: 0.12431171224131535 - sys_corr_98: 0.6836277422162563 - sys_corr_99: -0.016102255312924613 - sys_corr_100: -0.10220145593372977 - sys_corr_101: -0.1855770905129593 - sys_corr_102: 0.08967124783702178 - sys_corr_103: 0.08224148243764592 - sys_corr_104: 0.26476239441830585 - sys_corr_105: -0.11354560414452126 - sys_corr_106: -0.03909654890887106 - sys_corr_107: -0.01742079144206719 - sys_corr_108: -0.0349921130869138 - sys_corr_109: 0.004510940376735026 - sys_corr_110: 0.716810185047432 - sys_corr_111: 0.029081169155549196 - sys_corr_112: -0.00877003129646995 - sys_corr_113: 0.0640855327354751 - sys_corr_114: 1.0822453039193312e-05 - sys_corr_115: -0.032721823858086654 - sys_corr_116: -0.001502189492181922 - sys_corr_117: -0.00041767239066094625 - sys_corr_118: -0.03366274207963068 - sys_corr_119: 0.0004962132338572918 - sys_corr_120: -0.0004961675712761032 - sys_corr_121: -0.000684599952502388 - sys_corr_122: -0.0024330661679963024 - sys_corr_123: -0.002491950503891924 - sys_corr_124: -0.0029180071452791826 - sys_corr_125: 0.0036490606937213373 - sys_corr_126: 0.0008456993114256087 - sys_corr_127: -0.8474175902622068 - sys_corr_128: 0.001546546001510866 - sys_corr_129: 0.026110492996168508 - sys_corr_130: 0.0017544659230885867 - sys_corr_131: 0.0013360973193374758 - sys_corr_132: -0.022467763157509618 + luminosity: 6.88065378e+03 +- sys_corr_1: 3.99725136e+03 + sys_corr_2: -2.97208563e+03 + sys_corr_3: -1.23803140e+02 + sys_corr_4: -5.16647349e+02 + sys_corr_5: 5.50960216e+02 + sys_corr_6: 3.54171202e+02 + sys_corr_7: 1.12553948e+03 + sys_corr_8: -4.82735073e+02 + sys_corr_9: 8.28402150e+01 + sys_corr_10: -4.30542885e+02 + sys_corr_11: -3.04298777e+02 + sys_corr_12: 3.55389121e+02 + sys_corr_13: 8.78397204e+02 + sys_corr_14: 1.39839238e+02 + sys_corr_15: 8.73754827e+02 + sys_corr_16: -2.92556752e+01 + sys_corr_17: -2.70227630e+01 + sys_corr_18: -1.23962334e+01 + sys_corr_19: -5.37548759e+01 + sys_corr_20: -6.49302971e+01 + sys_corr_21: -1.60462400e+01 + sys_corr_22: -1.68719603e+01 + sys_corr_23: -1.91915141e+01 + sys_corr_24: 2.78999327e+01 + sys_corr_25: -8.44880147e+00 + sys_corr_26: -3.41027914e+01 + sys_corr_27: -6.57442812e+00 + sys_corr_28: 4.25972047e+00 + sys_corr_29: 1.01540603e+00 + sys_corr_30: 8.57951026e-01 + sys_corr_31: 1.08207745e+00 + sys_corr_32: -3.95043811e-01 + sys_corr_33: 4.72325589e-02 + sys_corr_34: -2.39121233e+00 + sys_corr_35: 4.49311876e-01 + sys_corr_36: 4.19130212e-01 + sys_corr_37: 1.55379503e+00 + sys_corr_38: 2.51735525e-01 + sys_corr_39: -8.36879371e-01 + sys_corr_40: 2.96840550e-01 + sys_corr_41: -7.84557402e-01 + sys_corr_42: 2.71849358e-01 + sys_corr_43: -3.70852685e-01 + sys_corr_44: 2.90299956e-01 + sys_corr_45: -2.46845500e-01 + sys_corr_46: -9.26260353e-01 + sys_corr_47: -1.19885766e+00 + sys_corr_48: 1.10050347e+00 + sys_corr_49: 9.56013880e-01 + sys_corr_50: 5.48674440e-01 + sys_corr_51: -6.84473242e-01 + sys_corr_52: 9.28614202e-02 + sys_corr_53: 4.19923356e-01 + sys_corr_54: 2.11877339e-01 + sys_corr_55: -4.57627270e-01 + sys_corr_56: 2.91027113e-01 + sys_corr_57: 3.41912545e-01 + sys_corr_58: 4.80415435e-02 + sys_corr_59: 3.20275669e-01 + sys_corr_60: 2.70570624e-02 + sys_corr_61: -8.00475899e-01 + sys_corr_62: -5.17767412e-01 + sys_corr_63: -5.48277921e-01 + sys_corr_64: -7.10453694e-02 + sys_corr_65: -2.07806762e-01 + sys_corr_66: -6.13614796e-01 + sys_corr_67: 7.34605741e-01 + sys_corr_68: -1.37074068e-01 + sys_corr_69: 5.75970815e-01 + sys_corr_70: -1.89405689e-01 + sys_corr_71: 2.21828042e-01 + sys_corr_72: -1.58501723e-02 + sys_corr_73: 1.60047089e-01 + sys_corr_74: 5.89283238e-01 + sys_corr_75: 6.53433487e-01 + sys_corr_76: -3.30019348e-01 + sys_corr_77: -1.31421404e-01 + sys_corr_78: -4.10440083e-01 + sys_corr_79: -7.61681194e-03 + sys_corr_80: 1.06116754e-01 + sys_corr_81: -3.43428487e-01 + sys_corr_82: 4.85755687e-01 + sys_corr_83: 7.78293290e-03 + sys_corr_84: 9.57620056e-01 + sys_corr_85: 1.75331685e-02 + sys_corr_86: -1.72055235e-01 + sys_corr_87: 7.27527778e-01 + sys_corr_88: 7.09402554e-02 + sys_corr_89: -1.58417129e-01 + sys_corr_90: -1.22831695e-01 + sys_corr_91: -5.53606760e-01 + sys_corr_92: 3.22072417e-01 + sys_corr_93: -5.36871682e-02 + sys_corr_94: -7.41484470e-02 + sys_corr_95: -2.70271604e-02 + sys_corr_96: -1.75811990e-01 + sys_corr_97: 1.24311712e-01 + sys_corr_98: 6.83627742e-01 + sys_corr_99: -1.61022553e-02 + sys_corr_100: -1.02201456e-01 + sys_corr_101: -1.85577091e-01 + sys_corr_102: 8.96712478e-02 + sys_corr_103: 8.22414824e-02 + sys_corr_104: 2.64762394e-01 + sys_corr_105: -1.13545604e-01 + sys_corr_106: -3.90965489e-02 + sys_corr_107: -1.74207914e-02 + sys_corr_108: -3.49921131e-02 + sys_corr_109: 4.51094038e-03 + sys_corr_110: 7.16810185e-01 + sys_corr_111: 2.90811692e-02 + sys_corr_112: -8.77003130e-03 + sys_corr_113: 6.40855327e-02 + sys_corr_114: 1.08224530e-05 + sys_corr_115: -3.27218239e-02 + sys_corr_116: -1.50218949e-03 + sys_corr_117: -4.17672391e-04 + sys_corr_118: -3.36627421e-02 + sys_corr_119: 4.96213234e-04 + sys_corr_120: -4.96167571e-04 + sys_corr_121: -6.84599953e-04 + sys_corr_122: -2.43306617e-03 + sys_corr_123: -2.49195050e-03 + sys_corr_124: -2.91800715e-03 + sys_corr_125: 3.64906069e-03 + sys_corr_126: 8.45699311e-04 + sys_corr_127: -8.47417590e-01 + sys_corr_128: 1.54654600e-03 + sys_corr_129: 2.61104930e-02 + sys_corr_130: 1.75446592e-03 + sys_corr_131: 1.33609732e-03 + sys_corr_132: -2.24677632e-02 stat: 0.0 - luminosity: 6877.309648 -- sys_corr_1: 4238.271577745009 - sys_corr_2: -2083.472304927001 - sys_corr_3: 556.0012333704253 - sys_corr_4: -1575.4024348152157 - sys_corr_5: 575.1460970390335 - sys_corr_6: 280.77122249040235 - sys_corr_7: 491.633006263508 - sys_corr_8: -218.04222804291877 - sys_corr_9: 586.8303146289354 - sys_corr_10: -352.7126821385557 - sys_corr_11: -38.88600764980373 - sys_corr_12: -154.39159991947355 - sys_corr_13: -248.15653203835123 - sys_corr_14: -103.62886232928483 - sys_corr_15: -976.8546741791246 - sys_corr_16: 675.9524743824259 - sys_corr_17: -142.81423480989832 - sys_corr_18: 447.14924622491156 - sys_corr_19: 81.32482154849288 - sys_corr_20: -2.0290484505138404 - sys_corr_21: -15.109798041115047 - sys_corr_22: 14.01780480490844 - sys_corr_23: 11.678874464146004 - sys_corr_24: -6.71670565085888 - sys_corr_25: -6.376809677064823 - sys_corr_26: -25.338554421160705 - sys_corr_27: -1.2367081651701903 - sys_corr_28: -3.7032471781752356 - sys_corr_29: 16.359929361412163 - sys_corr_30: 4.084256561252817 - sys_corr_31: 4.999088635359073 - sys_corr_32: 0.34183191781899946 - sys_corr_33: -1.6949155293208815 - sys_corr_34: -4.314305415034123 - sys_corr_35: -1.277614431521229 - sys_corr_36: -0.5418110871547276 - sys_corr_37: 0.4937277038969485 - sys_corr_38: 1.84939356303076 - sys_corr_39: -0.8702260705292792 - sys_corr_40: 1.8903996690090425 - sys_corr_41: -0.5952431592738965 - sys_corr_42: -1.7009003504073619 - sys_corr_43: 4.516277614514986 - sys_corr_44: 5.321579798827601 - sys_corr_45: 1.4899924415352932 - sys_corr_46: -0.5754319915999871 - sys_corr_47: 2.321402982627504 - sys_corr_48: 3.6808041097962905 - sys_corr_49: 0.3418338339198847 - sys_corr_50: 0.2581676130607551 - sys_corr_51: 0.17810722889681047 - sys_corr_52: -1.6404746330057396 - sys_corr_53: -1.2446659081914166 - sys_corr_54: 0.294709976343479 - sys_corr_55: -0.8893043072483414 - sys_corr_56: 0.3850103666344536 - sys_corr_57: 0.7266041198940154 - sys_corr_58: 0.6332159586575472 - sys_corr_59: 0.023767303545815684 - sys_corr_60: 0.21379391003337261 - sys_corr_61: -0.4435106219221952 - sys_corr_62: -0.4249398357217248 - sys_corr_63: -0.4580318937759914 - sys_corr_64: -0.18817611281989124 - sys_corr_65: 0.03190515926932725 - sys_corr_66: -0.6003721498670631 - sys_corr_67: 0.4696695841511278 - sys_corr_68: 0.32951340165397386 - sys_corr_69: 0.5630746721657811 - sys_corr_70: 0.4190584446595798 - sys_corr_71: 0.2506048836252422 - sys_corr_72: 0.33214562317840857 - sys_corr_73: 0.749165875981663 - sys_corr_74: 0.2623626637807347 - sys_corr_75: -0.8885540347379228 - sys_corr_76: -0.27776035991435444 - sys_corr_77: -0.656821606548491 - sys_corr_78: -0.6167806649949097 - sys_corr_79: -0.33445075211546876 - sys_corr_80: 0.1134794667433541 - sys_corr_81: 0.36104713023695684 - sys_corr_82: 0.1301350901395203 - sys_corr_83: 0.0941133710614944 - sys_corr_84: 0.3412444291934218 - sys_corr_85: 0.7871776893752659 - sys_corr_86: -0.5231030114050393 - sys_corr_87: 1.6553501701417406 - sys_corr_88: 0.08138113090469631 - sys_corr_89: -0.3689006326739118 - sys_corr_90: 0.06451945198558015 - sys_corr_91: 0.02291736330965397 - sys_corr_92: -0.762592849146637 - sys_corr_93: -0.1879094201010488 - sys_corr_94: -0.05422256488532611 - sys_corr_95: 0.09772646240270122 - sys_corr_96: -0.0401333934624693 - sys_corr_97: 0.23083686606288753 - sys_corr_98: -0.6182395555268786 - sys_corr_99: 1.3638108749886657 - sys_corr_100: -0.2545402138083832 - sys_corr_101: -0.21362742625594636 - sys_corr_102: 0.19644722254747288 - sys_corr_103: 0.058413331754604364 - sys_corr_104: 0.28838539775932936 - sys_corr_105: -0.07131811785896679 - sys_corr_106: -0.003212909624081197 - sys_corr_107: 0.057422300564347765 - sys_corr_108: -0.009023625239436135 - sys_corr_109: -0.02469597776180727 - sys_corr_110: 0.32042022769107636 - sys_corr_111: -0.06051825486479208 - sys_corr_112: -0.02878773923353601 - sys_corr_113: 0.0219380679783408 - sys_corr_114: 0.00027249076465558165 - sys_corr_115: 0.009096383712721194 - sys_corr_116: 0.000961128795917089 - sys_corr_117: 0.003717350797180784 - sys_corr_118: -0.017785175118401476 - sys_corr_119: -0.00033059274836451656 - sys_corr_120: -0.004814986673308339 - sys_corr_121: -0.0007724055891451977 - sys_corr_122: -0.005695589362122685 - sys_corr_123: -0.0026507486051293287 - sys_corr_124: 0.008021394174947618 - sys_corr_125: 0.007161991449253944 - sys_corr_126: 0.002178578854595142 - sys_corr_127: 0.8584757752676947 - sys_corr_128: 0.01879789425410246 - sys_corr_129: 0.013824751415525225 - sys_corr_130: 0.005946056401711485 - sys_corr_131: 0.003569551209298986 - sys_corr_132: -0.01946282790102676 + luminosity: 6.87730965e+03 +- sys_corr_1: 4.23827158e+03 + sys_corr_2: -2.08347230e+03 + sys_corr_3: 5.56001233e+02 + sys_corr_4: -1.57540243e+03 + sys_corr_5: 5.75146097e+02 + sys_corr_6: 2.80771222e+02 + sys_corr_7: 4.91633006e+02 + sys_corr_8: -2.18042228e+02 + sys_corr_9: 5.86830315e+02 + sys_corr_10: -3.52712682e+02 + sys_corr_11: -3.88860076e+01 + sys_corr_12: -1.54391600e+02 + sys_corr_13: -2.48156532e+02 + sys_corr_14: -1.03628862e+02 + sys_corr_15: -9.76854674e+02 + sys_corr_16: 6.75952474e+02 + sys_corr_17: -1.42814235e+02 + sys_corr_18: 4.47149246e+02 + sys_corr_19: 8.13248215e+01 + sys_corr_20: -2.02904845e+00 + sys_corr_21: -1.51097980e+01 + sys_corr_22: 1.40178048e+01 + sys_corr_23: 1.16788745e+01 + sys_corr_24: -6.71670565e+00 + sys_corr_25: -6.37680968e+00 + sys_corr_26: -2.53385544e+01 + sys_corr_27: -1.23670817e+00 + sys_corr_28: -3.70324718e+00 + sys_corr_29: 1.63599294e+01 + sys_corr_30: 4.08425656e+00 + sys_corr_31: 4.99908864e+00 + sys_corr_32: 3.41831918e-01 + sys_corr_33: -1.69491553e+00 + sys_corr_34: -4.31430542e+00 + sys_corr_35: -1.27761443e+00 + sys_corr_36: -5.41811087e-01 + sys_corr_37: 4.93727704e-01 + sys_corr_38: 1.84939356e+00 + sys_corr_39: -8.70226071e-01 + sys_corr_40: 1.89039967e+00 + sys_corr_41: -5.95243159e-01 + sys_corr_42: -1.70090035e+00 + sys_corr_43: 4.51627761e+00 + sys_corr_44: 5.32157980e+00 + sys_corr_45: 1.48999244e+00 + sys_corr_46: -5.75431992e-01 + sys_corr_47: 2.32140298e+00 + sys_corr_48: 3.68080411e+00 + sys_corr_49: 3.41833834e-01 + sys_corr_50: 2.58167613e-01 + sys_corr_51: 1.78107229e-01 + sys_corr_52: -1.64047463e+00 + sys_corr_53: -1.24466591e+00 + sys_corr_54: 2.94709976e-01 + sys_corr_55: -8.89304307e-01 + sys_corr_56: 3.85010367e-01 + sys_corr_57: 7.26604120e-01 + sys_corr_58: 6.33215959e-01 + sys_corr_59: 2.37673035e-02 + sys_corr_60: 2.13793910e-01 + sys_corr_61: -4.43510622e-01 + sys_corr_62: -4.24939836e-01 + sys_corr_63: -4.58031894e-01 + sys_corr_64: -1.88176113e-01 + sys_corr_65: 3.19051593e-02 + sys_corr_66: -6.00372150e-01 + sys_corr_67: 4.69669584e-01 + sys_corr_68: 3.29513402e-01 + sys_corr_69: 5.63074672e-01 + sys_corr_70: 4.19058445e-01 + sys_corr_71: 2.50604884e-01 + sys_corr_72: 3.32145623e-01 + sys_corr_73: 7.49165876e-01 + sys_corr_74: 2.62362664e-01 + sys_corr_75: -8.88554035e-01 + sys_corr_76: -2.77760360e-01 + sys_corr_77: -6.56821607e-01 + sys_corr_78: -6.16780665e-01 + sys_corr_79: -3.34450752e-01 + sys_corr_80: 1.13479467e-01 + sys_corr_81: 3.61047130e-01 + sys_corr_82: 1.30135090e-01 + sys_corr_83: 9.41133711e-02 + sys_corr_84: 3.41244429e-01 + sys_corr_85: 7.87177689e-01 + sys_corr_86: -5.23103011e-01 + sys_corr_87: 1.65535017e+00 + sys_corr_88: 8.13811309e-02 + sys_corr_89: -3.68900633e-01 + sys_corr_90: 6.45194520e-02 + sys_corr_91: 2.29173633e-02 + sys_corr_92: -7.62592849e-01 + sys_corr_93: -1.87909420e-01 + sys_corr_94: -5.42225649e-02 + sys_corr_95: 9.77264624e-02 + sys_corr_96: -4.01333935e-02 + sys_corr_97: 2.30836866e-01 + sys_corr_98: -6.18239556e-01 + sys_corr_99: 1.36381087e+00 + sys_corr_100: -2.54540214e-01 + sys_corr_101: -2.13627426e-01 + sys_corr_102: 1.96447223e-01 + sys_corr_103: 5.84133318e-02 + sys_corr_104: 2.88385398e-01 + sys_corr_105: -7.13181179e-02 + sys_corr_106: -3.21290962e-03 + sys_corr_107: 5.74223006e-02 + sys_corr_108: -9.02362524e-03 + sys_corr_109: -2.46959778e-02 + sys_corr_110: 3.20420228e-01 + sys_corr_111: -6.05182549e-02 + sys_corr_112: -2.87877392e-02 + sys_corr_113: 2.19380680e-02 + sys_corr_114: 2.72490765e-04 + sys_corr_115: 9.09638371e-03 + sys_corr_116: 9.61128796e-04 + sys_corr_117: 3.71735080e-03 + sys_corr_118: -1.77851751e-02 + sys_corr_119: -3.30592748e-04 + sys_corr_120: -4.81498667e-03 + sys_corr_121: -7.72405589e-04 + sys_corr_122: -5.69558936e-03 + sys_corr_123: -2.65074861e-03 + sys_corr_124: 8.02139417e-03 + sys_corr_125: 7.16199145e-03 + sys_corr_126: 2.17857885e-03 + sys_corr_127: 8.58475775e-01 + sys_corr_128: 1.87978943e-02 + sys_corr_129: 1.38247514e-02 + sys_corr_130: 5.94605640e-03 + sys_corr_131: 3.56955121e-03 + sys_corr_132: -1.94628279e-02 stat: 0.0 - luminosity: 6811.148432000001 -- sys_corr_1: 4370.963231915929 - sys_corr_2: -1108.6309594112743 - sys_corr_3: 1034.298714551206 - sys_corr_4: -1980.8496045917825 - sys_corr_5: 435.0689674901873 - sys_corr_6: 53.114713508849945 - sys_corr_7: -290.4384045209892 - sys_corr_8: 639.733231333866 - sys_corr_9: 292.295450889672 - sys_corr_10: 44.440177862236666 - sys_corr_11: -252.84720027841456 - sys_corr_12: -875.1188547172669 - sys_corr_13: -443.1027751268704 - sys_corr_14: 461.95107162512454 - sys_corr_15: 298.31400779890424 - sys_corr_16: -516.8992519515685 - sys_corr_17: 219.47102057109726 - sys_corr_18: -482.6733634095943 - sys_corr_19: 106.03785194519644 - sys_corr_20: -8.195238979784849 - sys_corr_21: -44.368454552667835 - sys_corr_22: 69.40150496341674 - sys_corr_23: 19.30892675955349 - sys_corr_24: -49.41093663736985 - sys_corr_25: -17.77332453583935 - sys_corr_26: -0.762231659006779 - sys_corr_27: -10.52634815399566 - sys_corr_28: -12.99129681668629 - sys_corr_29: 18.829949514263493 - sys_corr_30: 3.597499177480543 - sys_corr_31: 11.531613870098624 - sys_corr_32: -3.2280273178076 - sys_corr_33: -1.8455336889272436 - sys_corr_34: 2.56211469005191 - sys_corr_35: -2.8204469329329993 - sys_corr_36: -2.260999890610288 - sys_corr_37: 2.4469967575725087 - sys_corr_38: 0.9621804697256785 - sys_corr_39: 2.47696764918112 - sys_corr_40: 0.7169260448902764 - sys_corr_41: -3.2266594931240804 - sys_corr_42: -1.0971054662090982 - sys_corr_43: -1.4527829022440162 - sys_corr_44: 0.5334918010693394 - sys_corr_45: -3.4001988603206654 - sys_corr_46: 0.23840524364971707 - sys_corr_47: -3.221092642879985 - sys_corr_48: -1.1548608089372272 - sys_corr_49: -3.5728973313432593 - sys_corr_50: 2.5212799028437747 - sys_corr_51: 0.7696399552102116 - sys_corr_52: -1.1430879744927234 - sys_corr_53: 0.8918139463201666 - sys_corr_54: 0.08520910085141352 - sys_corr_55: -1.2872846762653811 - sys_corr_56: -0.8112982444370566 - sys_corr_57: 0.3217316550660811 - sys_corr_58: -0.7384479001098446 - sys_corr_59: -0.5429596911492255 - sys_corr_60: 0.3508459291779363 - sys_corr_61: -0.6685187793434412 - sys_corr_62: 0.4733562978848031 - sys_corr_63: -0.2111397307542531 - sys_corr_64: 0.2531633327986254 - sys_corr_65: 0.9238456253782846 - sys_corr_66: -0.24401891864943118 - sys_corr_67: -0.5337077742919383 - sys_corr_68: 1.0828735575272508 - sys_corr_69: -0.28009597117835233 - sys_corr_70: 0.09096481704312527 - sys_corr_71: 0.41508083977335314 - sys_corr_72: 0.13461957861324794 - sys_corr_73: -0.6918402259160074 - sys_corr_74: -0.4963431769708991 - sys_corr_75: 0.26852916520892467 - sys_corr_76: -0.20189969605232222 - sys_corr_77: -0.571987986589441 - sys_corr_78: 0.15942999334175617 - sys_corr_79: -0.11068224983606613 - sys_corr_80: -0.3784441086095635 - sys_corr_81: 0.12984467794317497 - sys_corr_82: 0.3419047617489413 - sys_corr_83: 0.07981820969502326 - sys_corr_84: -0.3466510838394841 - sys_corr_85: 0.2383900239064459 - sys_corr_86: 0.3706871600450342 - sys_corr_87: 0.1511060901436701 - sys_corr_88: -0.05618856014003709 - sys_corr_89: -0.039620149379793024 - sys_corr_90: -0.05217615945647761 - sys_corr_91: 0.30519348817615327 - sys_corr_92: 1.276131594601943 - sys_corr_93: 0.02254321700205571 - sys_corr_94: -0.27795276715774364 - sys_corr_95: 0.23275314072626657 - sys_corr_96: -0.005217726513617664 - sys_corr_97: 0.6495048389842378 - sys_corr_98: 0.8153125545901619 - sys_corr_99: -1.3699299009272765 - sys_corr_100: 0.020135738462189336 - sys_corr_101: -0.11066097914461115 - sys_corr_102: 0.2180047696268824 - sys_corr_103: -0.032442770373667947 - sys_corr_104: -0.10654505778143455 - sys_corr_105: -0.001728151947364063 - sys_corr_106: -0.0649766869075548 - sys_corr_107: -0.08422330123777219 - sys_corr_108: 0.013083119928530828 - sys_corr_109: -0.03514043198737842 - sys_corr_110: -0.3358067665752019 - sys_corr_111: -0.07645342874315089 - sys_corr_112: -0.0022097757884055325 - sys_corr_113: 0.057939137844587374 - sys_corr_114: -0.00022626814571103906 - sys_corr_115: -0.01872859133177467 - sys_corr_116: 0.006674155382248987 - sys_corr_117: 0.004718628600486605 - sys_corr_118: -0.004256463019531693 - sys_corr_119: -0.00016786077821849454 - sys_corr_120: -0.006624748451634626 - sys_corr_121: -0.0008713246111949509 - sys_corr_122: 0.0021193815294758937 - sys_corr_123: 0.00040138283825441693 - sys_corr_124: 0.015163061899303268 - sys_corr_125: 0.000383580887064057 - sys_corr_126: 0.002225796900135918 - sys_corr_127: 0.5215741561144716 - sys_corr_128: 0.03810743881206795 - sys_corr_129: 0.0628738603687194 - sys_corr_130: 0.002444803583145119 - sys_corr_131: 0.002543858347437851 - sys_corr_132: -0.017254045390284026 + luminosity: 6.81114843e+03 +- sys_corr_1: 4.37096323e+03 + sys_corr_2: -1.10863096e+03 + sys_corr_3: 1.03429871e+03 + sys_corr_4: -1.98084960e+03 + sys_corr_5: 4.35068967e+02 + sys_corr_6: 5.31147135e+01 + sys_corr_7: -2.90438405e+02 + sys_corr_8: 6.39733231e+02 + sys_corr_9: 2.92295451e+02 + sys_corr_10: 4.44401779e+01 + sys_corr_11: -2.52847200e+02 + sys_corr_12: -8.75118855e+02 + sys_corr_13: -4.43102775e+02 + sys_corr_14: 4.61951072e+02 + sys_corr_15: 2.98314008e+02 + sys_corr_16: -5.16899252e+02 + sys_corr_17: 2.19471021e+02 + sys_corr_18: -4.82673363e+02 + sys_corr_19: 1.06037852e+02 + sys_corr_20: -8.19523898e+00 + sys_corr_21: -4.43684546e+01 + sys_corr_22: 6.94015050e+01 + sys_corr_23: 1.93089268e+01 + sys_corr_24: -4.94109366e+01 + sys_corr_25: -1.77733245e+01 + sys_corr_26: -7.62231659e-01 + sys_corr_27: -1.05263482e+01 + sys_corr_28: -1.29912968e+01 + sys_corr_29: 1.88299495e+01 + sys_corr_30: 3.59749918e+00 + sys_corr_31: 1.15316139e+01 + sys_corr_32: -3.22802732e+00 + sys_corr_33: -1.84553369e+00 + sys_corr_34: 2.56211469e+00 + sys_corr_35: -2.82044693e+00 + sys_corr_36: -2.26099989e+00 + sys_corr_37: 2.44699676e+00 + sys_corr_38: 9.62180470e-01 + sys_corr_39: 2.47696765e+00 + sys_corr_40: 7.16926045e-01 + sys_corr_41: -3.22665949e+00 + sys_corr_42: -1.09710547e+00 + sys_corr_43: -1.45278290e+00 + sys_corr_44: 5.33491801e-01 + sys_corr_45: -3.40019886e+00 + sys_corr_46: 2.38405244e-01 + sys_corr_47: -3.22109264e+00 + sys_corr_48: -1.15486081e+00 + sys_corr_49: -3.57289733e+00 + sys_corr_50: 2.52127990e+00 + sys_corr_51: 7.69639955e-01 + sys_corr_52: -1.14308797e+00 + sys_corr_53: 8.91813946e-01 + sys_corr_54: 8.52091009e-02 + sys_corr_55: -1.28728468e+00 + sys_corr_56: -8.11298244e-01 + sys_corr_57: 3.21731655e-01 + sys_corr_58: -7.38447900e-01 + sys_corr_59: -5.42959691e-01 + sys_corr_60: 3.50845929e-01 + sys_corr_61: -6.68518779e-01 + sys_corr_62: 4.73356298e-01 + sys_corr_63: -2.11139731e-01 + sys_corr_64: 2.53163333e-01 + sys_corr_65: 9.23845625e-01 + sys_corr_66: -2.44018919e-01 + sys_corr_67: -5.33707774e-01 + sys_corr_68: 1.08287356e+00 + sys_corr_69: -2.80095971e-01 + sys_corr_70: 9.09648170e-02 + sys_corr_71: 4.15080840e-01 + sys_corr_72: 1.34619579e-01 + sys_corr_73: -6.91840226e-01 + sys_corr_74: -4.96343177e-01 + sys_corr_75: 2.68529165e-01 + sys_corr_76: -2.01899696e-01 + sys_corr_77: -5.71987987e-01 + sys_corr_78: 1.59429993e-01 + sys_corr_79: -1.10682250e-01 + sys_corr_80: -3.78444109e-01 + sys_corr_81: 1.29844678e-01 + sys_corr_82: 3.41904762e-01 + sys_corr_83: 7.98182097e-02 + sys_corr_84: -3.46651084e-01 + sys_corr_85: 2.38390024e-01 + sys_corr_86: 3.70687160e-01 + sys_corr_87: 1.51106090e-01 + sys_corr_88: -5.61885601e-02 + sys_corr_89: -3.96201494e-02 + sys_corr_90: -5.21761595e-02 + sys_corr_91: 3.05193488e-01 + sys_corr_92: 1.27613159e+00 + sys_corr_93: 2.25432170e-02 + sys_corr_94: -2.77952767e-01 + sys_corr_95: 2.32753141e-01 + sys_corr_96: -5.21772651e-03 + sys_corr_97: 6.49504839e-01 + sys_corr_98: 8.15312555e-01 + sys_corr_99: -1.36992990e+00 + sys_corr_100: 2.01357385e-02 + sys_corr_101: -1.10660979e-01 + sys_corr_102: 2.18004770e-01 + sys_corr_103: -3.24427704e-02 + sys_corr_104: -1.06545058e-01 + sys_corr_105: -1.72815195e-03 + sys_corr_106: -6.49766869e-02 + sys_corr_107: -8.42233012e-02 + sys_corr_108: 1.30831199e-02 + sys_corr_109: -3.51404320e-02 + sys_corr_110: -3.35806767e-01 + sys_corr_111: -7.64534287e-02 + sys_corr_112: -2.20977579e-03 + sys_corr_113: 5.79391378e-02 + sys_corr_114: -2.26268146e-04 + sys_corr_115: -1.87285913e-02 + sys_corr_116: 6.67415538e-03 + sys_corr_117: 4.71862860e-03 + sys_corr_118: -4.25646302e-03 + sys_corr_119: -1.67860778e-04 + sys_corr_120: -6.62474845e-03 + sys_corr_121: -8.71324611e-04 + sys_corr_122: 2.11938153e-03 + sys_corr_123: 4.01382838e-04 + sys_corr_124: 1.51630619e-02 + sys_corr_125: 3.83580887e-04 + sys_corr_126: 2.22579690e-03 + sys_corr_127: 5.21574156e-01 + sys_corr_128: 3.81074388e-02 + sys_corr_129: 6.28738604e-02 + sys_corr_130: 2.44480358e-03 + sys_corr_131: 2.54385835e-03 + sys_corr_132: -1.72540454e-02 stat: 0.0 - luminosity: 6750.541556000001 -- sys_corr_1: 4343.509557944349 - sys_corr_2: 647.609252475578 - sys_corr_3: 1420.4601038140634 - sys_corr_4: -1530.0366913338985 - sys_corr_5: -222.31209880201104 - sys_corr_6: -183.8970761363417 - sys_corr_7: -897.7513603379497 - sys_corr_8: 291.43070020451376 - sys_corr_9: -98.86482182736017 - sys_corr_10: 1163.4660885032213 - sys_corr_11: -44.56209477863298 - sys_corr_12: 568.9698998951114 - sys_corr_13: 605.5512732709155 - sys_corr_14: -391.5940146934265 - sys_corr_15: 120.74524952458472 - sys_corr_16: 68.9688697635871 - sys_corr_17: -61.880453279949776 - sys_corr_18: 359.43523034172176 - sys_corr_19: -120.88128227222049 - sys_corr_20: 21.64011200354992 - sys_corr_21: 13.621244491042203 - sys_corr_22: 51.13606733003687 - sys_corr_23: 2.602817400754572 - sys_corr_24: -40.54905528959661 - sys_corr_25: 12.54822842089728 - sys_corr_26: 14.237870378649152 - sys_corr_27: -3.8818638971986594 - sys_corr_28: -1.7036860303099184 - sys_corr_29: -7.290102934522453 - sys_corr_30: 3.4250357286210784 - sys_corr_31: 8.598396832218523 - sys_corr_32: -0.5198731167260903 - sys_corr_33: 2.016794565795452 - sys_corr_34: -1.3040523295053086 - sys_corr_35: 1.115979731492689 - sys_corr_36: -2.290369981784561 - sys_corr_37: -1.57892899987639 - sys_corr_38: -0.71187196888321 - sys_corr_39: -6.016673505086195 - sys_corr_40: 0.545241638913102 - sys_corr_41: 1.7480806395374409 - sys_corr_42: 1.288234050289482 - sys_corr_43: 3.353899302586553 - sys_corr_44: -0.49390677065414473 - sys_corr_45: 1.383966059842494 - sys_corr_46: 1.219070916897301 - sys_corr_47: 1.1335867982391885 - sys_corr_48: -0.354139196414737 - sys_corr_49: -0.033534841553874366 - sys_corr_50: 0.47645147967946727 - sys_corr_51: -0.6527232337015358 - sys_corr_52: 0.74756466611494 - sys_corr_53: 0.3877951072931562 - sys_corr_54: 0.05747346963443701 - sys_corr_55: 0.4173506074039796 - sys_corr_56: 0.12211232534797364 - sys_corr_57: -0.4490952606049144 - sys_corr_58: 1.640919083632383 - sys_corr_59: 0.6132230780070078 - sys_corr_60: -0.6388536347052524 - sys_corr_61: 1.0684847313736354 - sys_corr_62: -1.7489595944939194 - sys_corr_63: -1.0805976735602763 - sys_corr_64: -0.6567155251392953 - sys_corr_65: -0.29059980714143036 - sys_corr_66: -0.36001244202412114 - sys_corr_67: 0.2501499629627369 - sys_corr_68: -1.4878664829534811 - sys_corr_69: 0.4075496987447992 - sys_corr_70: 0.41248368682426567 - sys_corr_71: -0.7843435379104657 - sys_corr_72: 0.2295273564850927 - sys_corr_73: -0.9529208188113448 - sys_corr_74: -0.3430488408464111 - sys_corr_75: -0.3009203242819251 - sys_corr_76: -0.2992313086836811 - sys_corr_77: -0.005292609501302996 - sys_corr_78: -0.2237781869234438 - sys_corr_79: 0.16494652962810108 - sys_corr_80: -0.29068233294599954 - sys_corr_81: -0.3267499215555139 - sys_corr_82: 0.0728669773892076 - sys_corr_83: -0.44496191648685113 - sys_corr_84: 0.42417017424269093 - sys_corr_85: 0.19278917371596704 - sys_corr_86: -0.03576538792564432 - sys_corr_87: 0.40456564366001885 - sys_corr_88: -0.07250254987758498 - sys_corr_89: -0.0643553747944038 - sys_corr_90: -0.023958828351705604 - sys_corr_91: 0.047718568692090374 - sys_corr_92: -0.1339908319043533 - sys_corr_93: 0.04785347301087738 - sys_corr_94: 0.1505561861571375 - sys_corr_95: -0.02828807157804346 - sys_corr_96: -0.07529729720169002 - sys_corr_97: -0.17652772108118578 - sys_corr_98: -0.19850376979168494 - sys_corr_99: 0.5124726619067704 - sys_corr_100: 0.010528486119655352 - sys_corr_101: 0.4816774922773579 - sys_corr_102: -0.49143114220627765 - sys_corr_103: -0.10763932490149819 - sys_corr_104: -0.4860060421805304 - sys_corr_105: -0.16702930995782841 - sys_corr_106: -0.05495969018657348 - sys_corr_107: 0.05606435132024114 - sys_corr_108: 0.07069936725363986 - sys_corr_109: -0.0023380181582572535 - sys_corr_110: 0.7028975755298421 - sys_corr_111: 0.1434619864846685 - sys_corr_112: -0.0029595826996738966 - sys_corr_113: 0.02635607429553094 - sys_corr_114: -0.0003969082755910552 - sys_corr_115: 0.022526784540191705 - sys_corr_116: -0.00011966686726689071 - sys_corr_117: 0.00210599659485183 - sys_corr_118: 0.005046809238984689 - sys_corr_119: -3.5075901140025233e-06 - sys_corr_120: 0.0022948708671848305 - sys_corr_121: 0.001189596263113583 - sys_corr_122: 0.0012739359804527528 - sys_corr_123: 0.0010847037629654883 - sys_corr_124: -0.003284949888060205 - sys_corr_125: -0.0014874912574965086 - sys_corr_126: -0.00247148653239274 - sys_corr_127: -0.14442684637265912 - sys_corr_128: -0.041249111788732334 - sys_corr_129: -0.008814989886285395 - sys_corr_130: -0.00402773076699977 - sys_corr_131: -0.0017911170644635396 - sys_corr_132: 0.0006738019649639532 + luminosity: 6.75054156e+03 +- sys_corr_1: 4.34350956e+03 + sys_corr_2: 6.47609252e+02 + sys_corr_3: 1.42046010e+03 + sys_corr_4: -1.53003669e+03 + sys_corr_5: -2.22312099e+02 + sys_corr_6: -1.83897076e+02 + sys_corr_7: -8.97751360e+02 + sys_corr_8: 2.91430700e+02 + sys_corr_9: -9.88648218e+01 + sys_corr_10: 1.16346609e+03 + sys_corr_11: -4.45620948e+01 + sys_corr_12: 5.68969900e+02 + sys_corr_13: 6.05551273e+02 + sys_corr_14: -3.91594015e+02 + sys_corr_15: 1.20745250e+02 + sys_corr_16: 6.89688698e+01 + sys_corr_17: -6.18804533e+01 + sys_corr_18: 3.59435230e+02 + sys_corr_19: -1.20881282e+02 + sys_corr_20: 2.16401120e+01 + sys_corr_21: 1.36212445e+01 + sys_corr_22: 5.11360673e+01 + sys_corr_23: 2.60281740e+00 + sys_corr_24: -4.05490553e+01 + sys_corr_25: 1.25482284e+01 + sys_corr_26: 1.42378704e+01 + sys_corr_27: -3.88186390e+00 + sys_corr_28: -1.70368603e+00 + sys_corr_29: -7.29010293e+00 + sys_corr_30: 3.42503573e+00 + sys_corr_31: 8.59839683e+00 + sys_corr_32: -5.19873117e-01 + sys_corr_33: 2.01679457e+00 + sys_corr_34: -1.30405233e+00 + sys_corr_35: 1.11597973e+00 + sys_corr_36: -2.29036998e+00 + sys_corr_37: -1.57892900e+00 + sys_corr_38: -7.11871969e-01 + sys_corr_39: -6.01667351e+00 + sys_corr_40: 5.45241639e-01 + sys_corr_41: 1.74808064e+00 + sys_corr_42: 1.28823405e+00 + sys_corr_43: 3.35389930e+00 + sys_corr_44: -4.93906771e-01 + sys_corr_45: 1.38396606e+00 + sys_corr_46: 1.21907092e+00 + sys_corr_47: 1.13358680e+00 + sys_corr_48: -3.54139196e-01 + sys_corr_49: -3.35348416e-02 + sys_corr_50: 4.76451480e-01 + sys_corr_51: -6.52723234e-01 + sys_corr_52: 7.47564666e-01 + sys_corr_53: 3.87795107e-01 + sys_corr_54: 5.74734696e-02 + sys_corr_55: 4.17350607e-01 + sys_corr_56: 1.22112325e-01 + sys_corr_57: -4.49095261e-01 + sys_corr_58: 1.64091908e+00 + sys_corr_59: 6.13223078e-01 + sys_corr_60: -6.38853635e-01 + sys_corr_61: 1.06848473e+00 + sys_corr_62: -1.74895959e+00 + sys_corr_63: -1.08059767e+00 + sys_corr_64: -6.56715525e-01 + sys_corr_65: -2.90599807e-01 + sys_corr_66: -3.60012442e-01 + sys_corr_67: 2.50149963e-01 + sys_corr_68: -1.48786648e+00 + sys_corr_69: 4.07549699e-01 + sys_corr_70: 4.12483687e-01 + sys_corr_71: -7.84343538e-01 + sys_corr_72: 2.29527356e-01 + sys_corr_73: -9.52920819e-01 + sys_corr_74: -3.43048841e-01 + sys_corr_75: -3.00920324e-01 + sys_corr_76: -2.99231309e-01 + sys_corr_77: -5.29260950e-03 + sys_corr_78: -2.23778187e-01 + sys_corr_79: 1.64946530e-01 + sys_corr_80: -2.90682333e-01 + sys_corr_81: -3.26749922e-01 + sys_corr_82: 7.28669774e-02 + sys_corr_83: -4.44961916e-01 + sys_corr_84: 4.24170174e-01 + sys_corr_85: 1.92789174e-01 + sys_corr_86: -3.57653879e-02 + sys_corr_87: 4.04565644e-01 + sys_corr_88: -7.25025499e-02 + sys_corr_89: -6.43553748e-02 + sys_corr_90: -2.39588284e-02 + sys_corr_91: 4.77185687e-02 + sys_corr_92: -1.33990832e-01 + sys_corr_93: 4.78534730e-02 + sys_corr_94: 1.50556186e-01 + sys_corr_95: -2.82880716e-02 + sys_corr_96: -7.52972972e-02 + sys_corr_97: -1.76527721e-01 + sys_corr_98: -1.98503770e-01 + sys_corr_99: 5.12472662e-01 + sys_corr_100: 1.05284861e-02 + sys_corr_101: 4.81677492e-01 + sys_corr_102: -4.91431142e-01 + sys_corr_103: -1.07639325e-01 + sys_corr_104: -4.86006042e-01 + sys_corr_105: -1.67029310e-01 + sys_corr_106: -5.49596902e-02 + sys_corr_107: 5.60643513e-02 + sys_corr_108: 7.06993673e-02 + sys_corr_109: -2.33801816e-03 + sys_corr_110: 7.02897576e-01 + sys_corr_111: 1.43461986e-01 + sys_corr_112: -2.95958270e-03 + sys_corr_113: 2.63560743e-02 + sys_corr_114: -3.96908276e-04 + sys_corr_115: 2.25267845e-02 + sys_corr_116: -1.19666867e-04 + sys_corr_117: 2.10599659e-03 + sys_corr_118: 5.04680924e-03 + sys_corr_119: -3.50759011e-06 + sys_corr_120: 2.29487087e-03 + sys_corr_121: 1.18959626e-03 + sys_corr_122: 1.27393598e-03 + sys_corr_123: 1.08470376e-03 + sys_corr_124: -3.28494989e-03 + sys_corr_125: -1.48749126e-03 + sys_corr_126: -2.47148653e-03 + sys_corr_127: -1.44426846e-01 + sys_corr_128: -4.12491118e-02 + sys_corr_129: -8.81498989e-03 + sys_corr_130: -4.02773077e-03 + sys_corr_131: -1.79111706e-03 + sys_corr_132: 6.73801965e-04 stat: 0.0 - luminosity: 6589.665038 -- sys_corr_1: 4022.269080764768 - sys_corr_2: 1951.3073819544877 - sys_corr_3: 1214.2089393914885 - sys_corr_4: -700.1412804704247 - sys_corr_5: -734.077974217446 - sys_corr_6: -254.72248572328456 - sys_corr_7: -561.1043312507315 - sys_corr_8: -1053.536178891757 - sys_corr_9: -421.241271766254 - sys_corr_10: -698.6472211168824 - sys_corr_11: 994.10538054944 - sys_corr_12: -159.76104664668338 - sys_corr_13: -106.33102389142557 - sys_corr_14: -254.6631932079696 - sys_corr_15: 144.70639378286592 - sys_corr_16: 66.15388442266381 - sys_corr_17: -164.375790649677 - sys_corr_18: -363.93027187329153 - sys_corr_19: -260.9615527775355 - sys_corr_20: -73.13392177251554 - sys_corr_21: 77.49401068122287 - sys_corr_22: 12.697227640361255 - sys_corr_23: 6.547802000502703 - sys_corr_24: -16.853390940638878 - sys_corr_25: -1.1178301769478045 - sys_corr_26: 6.276065180797596 - sys_corr_27: -4.4240951498575525 - sys_corr_28: 13.332109515828206 - sys_corr_29: -12.308081937899114 - sys_corr_30: -3.5469654555680434 - sys_corr_31: 0.01309473602799355 - sys_corr_32: -0.2572364222255373 - sys_corr_33: 2.500278660933757 - sys_corr_34: 0.4610115098979925 - sys_corr_35: 2.628159945911754 - sys_corr_36: -1.7141271599126835 - sys_corr_37: 0.37588155005378227 - sys_corr_38: -0.22617954258350764 - sys_corr_39: 1.961845960201534 - sys_corr_40: 2.4631450463212814 - sys_corr_41: -0.039120320139289566 - sys_corr_42: 0.05381562672498957 - sys_corr_43: 0.1232589785534609 - sys_corr_44: -5.328649486711337 - sys_corr_45: -0.8086435624832624 - sys_corr_46: -4.803048565149529 - sys_corr_47: -1.1059356269831262 - sys_corr_48: -0.13712854801169905 - sys_corr_49: 1.5346381906625668 - sys_corr_50: 1.665626684688696 - sys_corr_51: -0.1932564013795159 - sys_corr_52: 1.6885223973616394 - sys_corr_53: 0.4818402661793159 - sys_corr_54: -0.8692195501673448 - sys_corr_55: 2.613579066842581 - sys_corr_56: 0.5467826311022768 - sys_corr_57: 0.5018791448294126 - sys_corr_58: -0.5384596082705957 - sys_corr_59: 0.9922033803700072 - sys_corr_60: -0.48499639886130114 - sys_corr_61: -1.8657301505057846 - sys_corr_62: 0.06673143096540708 - sys_corr_63: 0.860339479686378 - sys_corr_64: 1.5675372537790129 - sys_corr_65: -0.166583192662872 - sys_corr_66: 0.5713187970139916 - sys_corr_67: -0.6886997741894276 - sys_corr_68: -0.5497910056013166 - sys_corr_69: 0.10698987120148096 - sys_corr_70: -1.023153951111291 - sys_corr_71: 0.02519300451385463 - sys_corr_72: 0.7007051913670873 - sys_corr_73: 0.42028800525513194 - sys_corr_74: 0.3746867838033625 - sys_corr_75: 0.1384946342977495 - sys_corr_76: 0.059859428379733216 - sys_corr_77: 0.18695179668354633 - sys_corr_78: 0.30072607232132315 - sys_corr_79: -1.007547671213359 - sys_corr_80: -0.28505681151228207 - sys_corr_81: -0.8890293814692152 - sys_corr_82: 0.6112890078145897 - sys_corr_83: -0.16673338249436637 - sys_corr_84: -0.11870272031218694 - sys_corr_85: -0.5325294503984755 - sys_corr_86: 0.14886346089376104 - sys_corr_87: 0.20156310731612706 - sys_corr_88: 0.06269272057455584 - sys_corr_89: 0.320260425169518 - sys_corr_90: -0.10044931280001435 - sys_corr_91: -0.3096855590632766 - sys_corr_92: 0.1926634252922656 - sys_corr_93: -0.03136625250120401 - sys_corr_94: -0.13138077836422035 - sys_corr_95: -0.013972577761390161 - sys_corr_96: -0.11871257042420987 - sys_corr_97: 0.3808171905341987 - sys_corr_98: 0.2372678778088924 - sys_corr_99: 0.1458584346316029 - sys_corr_100: 0.4648432875931722 - sys_corr_101: 0.2562988715483824 - sys_corr_102: -0.06121611326013575 - sys_corr_103: 0.0766202192410036 - sys_corr_104: 0.19625303276055872 - sys_corr_105: -0.05637979113416675 - sys_corr_106: -0.003451404804038815 - sys_corr_107: -0.21132091766032657 - sys_corr_108: -0.10775626415934443 - sys_corr_109: 0.07830379944063877 - sys_corr_110: -0.9847921266432745 - sys_corr_111: 0.11813428903667965 - sys_corr_112: 0.043068995773669294 - sys_corr_113: 0.03940327638593459 - sys_corr_114: -0.0005824271116345185 - sys_corr_115: -0.008032776780047468 - sys_corr_116: -0.015142752467733805 - sys_corr_117: -0.014800411049481913 - sys_corr_118: -0.022636475010717944 - sys_corr_119: -0.0005950224742864456 - sys_corr_120: 0.011517811623149889 - sys_corr_121: -0.0003343998628540387 - sys_corr_122: 0.006439867015684669 - sys_corr_123: 0.000298863884224149 - sys_corr_124: -0.02886381982652704 - sys_corr_125: -0.010513919930525114 - sys_corr_126: -0.004525745888194673 - sys_corr_127: -0.554962960270218 - sys_corr_128: -0.023839862595657985 - sys_corr_129: 0.03082411772294034 - sys_corr_130: -0.008312859200761802 - sys_corr_131: -0.006885867770246608 - sys_corr_132: -0.00033831621180228005 + luminosity: 6.58966504e+03 +- sys_corr_1: 4.02226908e+03 + sys_corr_2: 1.95130738e+03 + sys_corr_3: 1.21420894e+03 + sys_corr_4: -7.00141280e+02 + sys_corr_5: -7.34077974e+02 + sys_corr_6: -2.54722486e+02 + sys_corr_7: -5.61104331e+02 + sys_corr_8: -1.05353618e+03 + sys_corr_9: -4.21241272e+02 + sys_corr_10: -6.98647221e+02 + sys_corr_11: 9.94105381e+02 + sys_corr_12: -1.59761047e+02 + sys_corr_13: -1.06331024e+02 + sys_corr_14: -2.54663193e+02 + sys_corr_15: 1.44706394e+02 + sys_corr_16: 6.61538844e+01 + sys_corr_17: -1.64375791e+02 + sys_corr_18: -3.63930272e+02 + sys_corr_19: -2.60961553e+02 + sys_corr_20: -7.31339218e+01 + sys_corr_21: 7.74940107e+01 + sys_corr_22: 1.26972276e+01 + sys_corr_23: 6.54780200e+00 + sys_corr_24: -1.68533909e+01 + sys_corr_25: -1.11783018e+00 + sys_corr_26: 6.27606518e+00 + sys_corr_27: -4.42409515e+00 + sys_corr_28: 1.33321095e+01 + sys_corr_29: -1.23080819e+01 + sys_corr_30: -3.54696546e+00 + sys_corr_31: 1.30947360e-02 + sys_corr_32: -2.57236422e-01 + sys_corr_33: 2.50027866e+00 + sys_corr_34: 4.61011510e-01 + sys_corr_35: 2.62815995e+00 + sys_corr_36: -1.71412716e+00 + sys_corr_37: 3.75881550e-01 + sys_corr_38: -2.26179543e-01 + sys_corr_39: 1.96184596e+00 + sys_corr_40: 2.46314505e+00 + sys_corr_41: -3.91203201e-02 + sys_corr_42: 5.38156267e-02 + sys_corr_43: 1.23258979e-01 + sys_corr_44: -5.32864949e+00 + sys_corr_45: -8.08643562e-01 + sys_corr_46: -4.80304857e+00 + sys_corr_47: -1.10593563e+00 + sys_corr_48: -1.37128548e-01 + sys_corr_49: 1.53463819e+00 + sys_corr_50: 1.66562668e+00 + sys_corr_51: -1.93256401e-01 + sys_corr_52: 1.68852240e+00 + sys_corr_53: 4.81840266e-01 + sys_corr_54: -8.69219550e-01 + sys_corr_55: 2.61357907e+00 + sys_corr_56: 5.46782631e-01 + sys_corr_57: 5.01879145e-01 + sys_corr_58: -5.38459608e-01 + sys_corr_59: 9.92203380e-01 + sys_corr_60: -4.84996399e-01 + sys_corr_61: -1.86573015e+00 + sys_corr_62: 6.67314310e-02 + sys_corr_63: 8.60339480e-01 + sys_corr_64: 1.56753725e+00 + sys_corr_65: -1.66583193e-01 + sys_corr_66: 5.71318797e-01 + sys_corr_67: -6.88699774e-01 + sys_corr_68: -5.49791006e-01 + sys_corr_69: 1.06989871e-01 + sys_corr_70: -1.02315395e+00 + sys_corr_71: 2.51930045e-02 + sys_corr_72: 7.00705191e-01 + sys_corr_73: 4.20288005e-01 + sys_corr_74: 3.74686784e-01 + sys_corr_75: 1.38494634e-01 + sys_corr_76: 5.98594284e-02 + sys_corr_77: 1.86951797e-01 + sys_corr_78: 3.00726072e-01 + sys_corr_79: -1.00754767e+00 + sys_corr_80: -2.85056812e-01 + sys_corr_81: -8.89029381e-01 + sys_corr_82: 6.11289008e-01 + sys_corr_83: -1.66733382e-01 + sys_corr_84: -1.18702720e-01 + sys_corr_85: -5.32529450e-01 + sys_corr_86: 1.48863461e-01 + sys_corr_87: 2.01563107e-01 + sys_corr_88: 6.26927206e-02 + sys_corr_89: 3.20260425e-01 + sys_corr_90: -1.00449313e-01 + sys_corr_91: -3.09685559e-01 + sys_corr_92: 1.92663425e-01 + sys_corr_93: -3.13662525e-02 + sys_corr_94: -1.31380778e-01 + sys_corr_95: -1.39725778e-02 + sys_corr_96: -1.18712570e-01 + sys_corr_97: 3.80817191e-01 + sys_corr_98: 2.37267878e-01 + sys_corr_99: 1.45858435e-01 + sys_corr_100: 4.64843288e-01 + sys_corr_101: 2.56298872e-01 + sys_corr_102: -6.12161133e-02 + sys_corr_103: 7.66202192e-02 + sys_corr_104: 1.96253033e-01 + sys_corr_105: -5.63797911e-02 + sys_corr_106: -3.45140480e-03 + sys_corr_107: -2.11320918e-01 + sys_corr_108: -1.07756264e-01 + sys_corr_109: 7.83037994e-02 + sys_corr_110: -9.84792127e-01 + sys_corr_111: 1.18134289e-01 + sys_corr_112: 4.30689958e-02 + sys_corr_113: 3.94032764e-02 + sys_corr_114: -5.82427112e-04 + sys_corr_115: -8.03277678e-03 + sys_corr_116: -1.51427525e-02 + sys_corr_117: -1.48004110e-02 + sys_corr_118: -2.26364750e-02 + sys_corr_119: -5.95022474e-04 + sys_corr_120: 1.15178116e-02 + sys_corr_121: -3.34399863e-04 + sys_corr_122: 6.43986702e-03 + sys_corr_123: 2.98863884e-04 + sys_corr_124: -2.88638198e-02 + sys_corr_125: -1.05139199e-02 + sys_corr_126: -4.52574589e-03 + sys_corr_127: -5.54962960e-01 + sys_corr_128: -2.38398626e-02 + sys_corr_129: 3.08241177e-02 + sys_corr_130: -8.31285920e-03 + sys_corr_131: -6.88586777e-03 + sys_corr_132: -3.38316212e-04 stat: 0.0 - luminosity: 6434.088232 -- sys_corr_1: 3597.5836780808386 - sys_corr_2: 2898.15178414709 - sys_corr_3: 634.0668155789643 - sys_corr_4: 201.55264271526912 - sys_corr_5: -1104.8189262598582 - sys_corr_6: -191.74349368300454 - sys_corr_7: 35.35969307401692 - sys_corr_8: -346.48161100163924 - sys_corr_9: -480.6637482175094 - sys_corr_10: -169.83856762313852 - sys_corr_11: -1214.295527049844 - sys_corr_12: 644.2001552661741 - sys_corr_13: -539.8508039071265 - sys_corr_14: 106.66687533716764 - sys_corr_15: -71.57336373866512 - sys_corr_16: 307.4149009224916 - sys_corr_17: 381.89778318993757 - sys_corr_18: -302.92422997466105 - sys_corr_19: 185.0190069884994 - sys_corr_20: 24.00291215444022 - sys_corr_21: -103.18369675382833 - sys_corr_22: -27.95271228735859 - sys_corr_23: 11.785140336929619 - sys_corr_24: 19.342502732511647 - sys_corr_25: 0.21881615073422964 - sys_corr_26: 0.6382018943386127 - sys_corr_27: 2.1926840334413416 - sys_corr_28: 12.807249741035662 - sys_corr_29: -17.29882101015129 - sys_corr_30: -5.314085025843661 - sys_corr_31: -1.1270045311408345 - sys_corr_32: 1.0189265119902782 - sys_corr_33: 2.2780254431413938 - sys_corr_34: -0.6193337566848339 - sys_corr_35: 0.15412490893435793 - sys_corr_36: -0.7984481847694243 - sys_corr_37: -0.6981682746786639 - sys_corr_38: 0.10524833085575531 - sys_corr_39: 3.799350145553445 - sys_corr_40: -1.1070611332579767 - sys_corr_41: 2.52252479834713 - sys_corr_42: 0.5389386604863692 - sys_corr_43: -1.7453485965520723 - sys_corr_44: -0.7681577976569809 - sys_corr_45: 0.17238643847058488 - sys_corr_46: 0.073566827073308 - sys_corr_47: -2.524955147784547 - sys_corr_48: 1.523100861881639 - sys_corr_49: -1.9073747654185862 - sys_corr_50: 0.7591609473948183 - sys_corr_51: -0.3741315153869212 - sys_corr_52: -0.18263680487326833 - sys_corr_53: 1.0682307324780649 - sys_corr_54: -0.29285616499436246 - sys_corr_55: -0.8223062664516588 - sys_corr_56: -0.5350012832721852 - sys_corr_57: 0.5096308596271579 - sys_corr_58: -1.7503655470571593 - sys_corr_59: -0.6201462338217976 - sys_corr_60: 0.5123224295995273 - sys_corr_61: -0.4436391945529181 - sys_corr_62: 0.17064613284385025 - sys_corr_63: -0.35761977744744666 - sys_corr_64: -0.04774260106716009 - sys_corr_65: -0.3765891974546666 - sys_corr_66: -0.40585597054830563 - sys_corr_67: 0.5686536073321307 - sys_corr_68: 0.7195312064360443 - sys_corr_69: -0.7909913034280526 - sys_corr_70: -0.6970587977432441 - sys_corr_71: -0.835097805501992 - sys_corr_72: -0.03111715299831061 - sys_corr_73: 0.37490746204746567 - sys_corr_74: 0.23218157886510865 - sys_corr_75: 1.2949833276124876 - sys_corr_76: -0.15586345356809436 - sys_corr_77: 0.13703553608803043 - sys_corr_78: -0.005013647083121092 - sys_corr_79: 0.8648310216529788 - sys_corr_80: 0.22961175015764917 - sys_corr_81: 0.33877853580271566 - sys_corr_82: 0.34063780024634444 - sys_corr_83: -0.13199789713331717 - sys_corr_84: 0.6778130952674688 - sys_corr_85: -0.2786211908185978 - sys_corr_86: -0.184973410898565 - sys_corr_87: 0.34736803643153835 - sys_corr_88: -0.13795668211591927 - sys_corr_89: 0.10789477798168191 - sys_corr_90: -0.24581140027832535 - sys_corr_91: -1.1782657226126894 - sys_corr_92: 0.4638626398588156 - sys_corr_93: 0.0027698466295425477 - sys_corr_94: -0.23930687823221491 - sys_corr_95: 0.11842499221877112 - sys_corr_96: 0.07880001960985104 - sys_corr_97: 0.020635532463667373 - sys_corr_98: 0.10620171333660047 - sys_corr_99: -0.02358270226858902 - sys_corr_100: 0.5330114704917122 - sys_corr_101: -0.8142349577332945 - sys_corr_102: 0.18610141434433536 - sys_corr_103: 0.018393701041016938 - sys_corr_104: -0.21307516448173303 - sys_corr_105: 0.6858949069837921 - sys_corr_106: 0.0769253806337194 - sys_corr_107: -0.23252592123767862 - sys_corr_108: 0.15021122933997666 - sys_corr_109: -0.016892328983537413 - sys_corr_110: 0.1515493631582616 - sys_corr_111: -0.04428102064902798 - sys_corr_112: -0.004559096852069904 - sys_corr_113: -0.027860992458261753 - sys_corr_114: -0.00024786377642787465 - sys_corr_115: -0.03485882707333081 - sys_corr_116: -0.02132267674944707 - sys_corr_117: -0.01663650260000643 - sys_corr_118: -0.011052912347817842 - sys_corr_119: -0.0020261357259688385 - sys_corr_120: 0.011440141478576346 - sys_corr_121: -0.0019241242690677324 - sys_corr_122: 0.006376478766577732 - sys_corr_123: 0.0012130349843520413 - sys_corr_124: -0.029099631406016062 - sys_corr_125: -0.008490188302598763 - sys_corr_126: -5.175555627587269e-05 - sys_corr_127: 0.11543681824159943 - sys_corr_128: -0.011410556338934475 - sys_corr_129: -0.0018126458148901518 - sys_corr_130: 0.0026941735877565325 - sys_corr_131: -0.004737185923349674 - sys_corr_132: 0.00845173829574736 + luminosity: 6.43408823e+03 +- sys_corr_1: 3.59758368e+03 + sys_corr_2: 2.89815178e+03 + sys_corr_3: 6.34066816e+02 + sys_corr_4: 2.01552643e+02 + sys_corr_5: -1.10481893e+03 + sys_corr_6: -1.91743494e+02 + sys_corr_7: 3.53596931e+01 + sys_corr_8: -3.46481611e+02 + sys_corr_9: -4.80663748e+02 + sys_corr_10: -1.69838568e+02 + sys_corr_11: -1.21429553e+03 + sys_corr_12: 6.44200155e+02 + sys_corr_13: -5.39850804e+02 + sys_corr_14: 1.06666875e+02 + sys_corr_15: -7.15733637e+01 + sys_corr_16: 3.07414901e+02 + sys_corr_17: 3.81897783e+02 + sys_corr_18: -3.02924230e+02 + sys_corr_19: 1.85019007e+02 + sys_corr_20: 2.40029122e+01 + sys_corr_21: -1.03183697e+02 + sys_corr_22: -2.79527123e+01 + sys_corr_23: 1.17851403e+01 + sys_corr_24: 1.93425027e+01 + sys_corr_25: 2.18816151e-01 + sys_corr_26: 6.38201894e-01 + sys_corr_27: 2.19268403e+00 + sys_corr_28: 1.28072497e+01 + sys_corr_29: -1.72988210e+01 + sys_corr_30: -5.31408503e+00 + sys_corr_31: -1.12700453e+00 + sys_corr_32: 1.01892651e+00 + sys_corr_33: 2.27802544e+00 + sys_corr_34: -6.19333757e-01 + sys_corr_35: 1.54124909e-01 + sys_corr_36: -7.98448185e-01 + sys_corr_37: -6.98168275e-01 + sys_corr_38: 1.05248331e-01 + sys_corr_39: 3.79935015e+00 + sys_corr_40: -1.10706113e+00 + sys_corr_41: 2.52252480e+00 + sys_corr_42: 5.38938660e-01 + sys_corr_43: -1.74534860e+00 + sys_corr_44: -7.68157798e-01 + sys_corr_45: 1.72386438e-01 + sys_corr_46: 7.35668271e-02 + sys_corr_47: -2.52495515e+00 + sys_corr_48: 1.52310086e+00 + sys_corr_49: -1.90737477e+00 + sys_corr_50: 7.59160947e-01 + sys_corr_51: -3.74131515e-01 + sys_corr_52: -1.82636805e-01 + sys_corr_53: 1.06823073e+00 + sys_corr_54: -2.92856165e-01 + sys_corr_55: -8.22306266e-01 + sys_corr_56: -5.35001283e-01 + sys_corr_57: 5.09630860e-01 + sys_corr_58: -1.75036555e+00 + sys_corr_59: -6.20146234e-01 + sys_corr_60: 5.12322430e-01 + sys_corr_61: -4.43639195e-01 + sys_corr_62: 1.70646133e-01 + sys_corr_63: -3.57619777e-01 + sys_corr_64: -4.77426011e-02 + sys_corr_65: -3.76589197e-01 + sys_corr_66: -4.05855971e-01 + sys_corr_67: 5.68653607e-01 + sys_corr_68: 7.19531206e-01 + sys_corr_69: -7.90991303e-01 + sys_corr_70: -6.97058798e-01 + sys_corr_71: -8.35097806e-01 + sys_corr_72: -3.11171530e-02 + sys_corr_73: 3.74907462e-01 + sys_corr_74: 2.32181579e-01 + sys_corr_75: 1.29498333e+00 + sys_corr_76: -1.55863454e-01 + sys_corr_77: 1.37035536e-01 + sys_corr_78: -5.01364708e-03 + sys_corr_79: 8.64831022e-01 + sys_corr_80: 2.29611750e-01 + sys_corr_81: 3.38778536e-01 + sys_corr_82: 3.40637800e-01 + sys_corr_83: -1.31997897e-01 + sys_corr_84: 6.77813095e-01 + sys_corr_85: -2.78621191e-01 + sys_corr_86: -1.84973411e-01 + sys_corr_87: 3.47368036e-01 + sys_corr_88: -1.37956682e-01 + sys_corr_89: 1.07894778e-01 + sys_corr_90: -2.45811400e-01 + sys_corr_91: -1.17826572e+00 + sys_corr_92: 4.63862640e-01 + sys_corr_93: 2.76984663e-03 + sys_corr_94: -2.39306878e-01 + sys_corr_95: 1.18424992e-01 + sys_corr_96: 7.88000196e-02 + sys_corr_97: 2.06355325e-02 + sys_corr_98: 1.06201713e-01 + sys_corr_99: -2.35827023e-02 + sys_corr_100: 5.33011470e-01 + sys_corr_101: -8.14234958e-01 + sys_corr_102: 1.86101414e-01 + sys_corr_103: 1.83937010e-02 + sys_corr_104: -2.13075164e-01 + sys_corr_105: 6.85894907e-01 + sys_corr_106: 7.69253806e-02 + sys_corr_107: -2.32525921e-01 + sys_corr_108: 1.50211229e-01 + sys_corr_109: -1.68923290e-02 + sys_corr_110: 1.51549363e-01 + sys_corr_111: -4.42810206e-02 + sys_corr_112: -4.55909685e-03 + sys_corr_113: -2.78609925e-02 + sys_corr_114: -2.47863776e-04 + sys_corr_115: -3.48588271e-02 + sys_corr_116: -2.13226767e-02 + sys_corr_117: -1.66365026e-02 + sys_corr_118: -1.10529123e-02 + sys_corr_119: -2.02613573e-03 + sys_corr_120: 1.14401415e-02 + sys_corr_121: -1.92412427e-03 + sys_corr_122: 6.37647877e-03 + sys_corr_123: 1.21303498e-03 + sys_corr_124: -2.90996314e-02 + sys_corr_125: -8.49018830e-03 + sys_corr_126: -5.17555563e-05 + sys_corr_127: 1.15436818e-01 + sys_corr_128: -1.14105563e-02 + sys_corr_129: -1.81264581e-03 + sys_corr_130: 2.69417359e-03 + sys_corr_131: -4.73718592e-03 + sys_corr_132: 8.45173830e-03 stat: 0.0 - luminosity: 6289.764712000001 -- sys_corr_1: 3351.5001446206375 - sys_corr_2: 3151.8698789074765 - sys_corr_3: 366.9783791607492 - sys_corr_4: 621.605633197244 - sys_corr_5: -958.6256031719495 - sys_corr_6: -48.087522320020234 - sys_corr_7: 152.59910288886527 - sys_corr_8: -21.656477770580878 - sys_corr_9: -150.10404123502335 - sys_corr_10: -78.42745528439679 - sys_corr_11: 206.48712485606634 - sys_corr_12: -51.485615204113046 - sys_corr_13: 283.2972349351303 - sys_corr_14: 1166.2651604065222 - sys_corr_15: -290.41289746710015 - sys_corr_16: -501.241075384464 - sys_corr_17: -262.06622256914795 - sys_corr_18: 630.976002152959 - sys_corr_19: 162.98254441967 - sys_corr_20: 48.58515949583547 - sys_corr_21: 126.41590354834591 - sys_corr_22: -61.42557505616368 - sys_corr_23: -23.78656957030505 - sys_corr_24: 12.015499113670357 - sys_corr_25: 0.3109134489040843 - sys_corr_26: -3.8948213438575054 - sys_corr_27: -2.2928670886345355 - sys_corr_28: 22.698707471431113 - sys_corr_29: -11.87707911146425 - sys_corr_30: 5.470392594246702 - sys_corr_31: -4.359586903521322 - sys_corr_32: 2.8443580660900256 - sys_corr_33: -3.5443349147223446 - sys_corr_34: 5.397104520506221 - sys_corr_35: -1.7298561751207697 - sys_corr_36: 2.3703072029059267 - sys_corr_37: -0.17025925923373192 - sys_corr_38: -1.3070409904458475 - sys_corr_39: -5.367471301940658 - sys_corr_40: -3.857589399090668 - sys_corr_41: 0.6975820594865011 - sys_corr_42: 2.7410427929948713 - sys_corr_43: -1.5738432986954436 - sys_corr_44: 0.5038429865760667 - sys_corr_45: 1.6457170251758175 - sys_corr_46: 1.717464904302351 - sys_corr_47: 1.0132876801131554 - sys_corr_48: 1.7066978680768663 - sys_corr_49: -2.507070401937888 - sys_corr_50: -1.851852354613495 - sys_corr_51: 2.5668108067816746 - sys_corr_52: -1.5315298329745428 - sys_corr_53: -1.0755661062434425 - sys_corr_54: 1.342893568541716 - sys_corr_55: -0.987181850156258 - sys_corr_56: 0.02063628282501759 - sys_corr_57: 0.11245630272694762 - sys_corr_58: -0.44113967942863114 - sys_corr_59: 0.15224405430743662 - sys_corr_60: -0.13470697387904662 - sys_corr_61: 0.4445865802151983 - sys_corr_62: -0.32227366538616814 - sys_corr_63: 0.39709896172871817 - sys_corr_64: -0.9091883732789502 - sys_corr_65: -0.3779566761975432 - sys_corr_66: 0.34184397196564975 - sys_corr_67: -0.193471754851638 - sys_corr_68: -0.6577610893139253 - sys_corr_69: -0.4414063427436817 - sys_corr_70: -0.7290932418160464 - sys_corr_71: -0.14663396498952555 - sys_corr_72: 0.050213262817397034 - sys_corr_73: 0.8609946427804949 - sys_corr_74: -0.10373663125462856 - sys_corr_75: -0.9189986291359823 - sys_corr_76: 0.07778559448567461 - sys_corr_77: -0.5372284938179753 - sys_corr_78: -0.5613343768247491 - sys_corr_79: 0.5915562051189678 - sys_corr_80: 0.1806986685263068 - sys_corr_81: 0.42826792808988623 - sys_corr_82: -0.8935165087724859 - sys_corr_83: 0.18584432216393776 - sys_corr_84: 0.8864183549063829 - sys_corr_85: 0.2956730734115124 - sys_corr_86: 0.6295726105214354 - sys_corr_87: -0.9755698658258084 - sys_corr_88: 0.11934556976433976 - sys_corr_89: 0.16293184774573458 - sys_corr_90: 0.08667135249983376 - sys_corr_91: -0.40355777792878766 - sys_corr_92: -0.36573276473504684 - sys_corr_93: -0.027313620626311166 - sys_corr_94: -0.1672877149551742 - sys_corr_95: -0.029533258199341262 - sys_corr_96: 0.08219652045743811 - sys_corr_97: -0.10351530501747516 - sys_corr_98: -0.09568134504776042 - sys_corr_99: 0.04165660998084731 - sys_corr_100: -1.3621458841660632 - sys_corr_101: 0.14797809669725104 - sys_corr_102: -0.13553003027679314 - sys_corr_103: 0.012946732587385903 - sys_corr_104: -0.17094419471375238 - sys_corr_105: 0.07278909860609852 - sys_corr_106: 0.47372887221967874 - sys_corr_107: 0.16061609768054386 - sys_corr_108: 0.251085719636799 - sys_corr_109: 0.10080624799789069 - sys_corr_110: 0.07983819514259088 - sys_corr_111: 0.1787168876019845 - sys_corr_112: -0.032925903627344315 - sys_corr_113: -0.11439672489976421 - sys_corr_114: 0.0004536420256619843 - sys_corr_115: -0.04438120598081133 - sys_corr_116: -0.00503913730247193 - sys_corr_117: -0.00912268809101772 - sys_corr_118: 0.03859770716324683 - sys_corr_119: -0.0018739513883905008 - sys_corr_120: 0.0027605213951388805 - sys_corr_121: -0.002006934038844513 - sys_corr_122: 0.003397341620929565 - sys_corr_123: 0.0026779599944664386 - sys_corr_124: -0.01462773497601738 - sys_corr_125: -0.0018157717353387527 - sys_corr_126: 0.002007557370674848 - sys_corr_127: 0.16814970268713397 - sys_corr_128: -0.16277710589505895 - sys_corr_129: -0.08153867055950745 - sys_corr_130: 0.007328478595621301 - sys_corr_131: -0.005280613315168866 - sys_corr_132: 0.0025976931729771204 + luminosity: 6.28976471e+03 +- sys_corr_1: 3.35150014e+03 + sys_corr_2: 3.15186988e+03 + sys_corr_3: 3.66978379e+02 + sys_corr_4: 6.21605633e+02 + sys_corr_5: -9.58625603e+02 + sys_corr_6: -4.80875223e+01 + sys_corr_7: 1.52599103e+02 + sys_corr_8: -2.16564778e+01 + sys_corr_9: -1.50104041e+02 + sys_corr_10: -7.84274553e+01 + sys_corr_11: 2.06487125e+02 + sys_corr_12: -5.14856152e+01 + sys_corr_13: 2.83297235e+02 + sys_corr_14: 1.16626516e+03 + sys_corr_15: -2.90412897e+02 + sys_corr_16: -5.01241075e+02 + sys_corr_17: -2.62066223e+02 + sys_corr_18: 6.30976002e+02 + sys_corr_19: 1.62982544e+02 + sys_corr_20: 4.85851595e+01 + sys_corr_21: 1.26415904e+02 + sys_corr_22: -6.14255751e+01 + sys_corr_23: -2.37865696e+01 + sys_corr_24: 1.20154991e+01 + sys_corr_25: 3.10913449e-01 + sys_corr_26: -3.89482134e+00 + sys_corr_27: -2.29286709e+00 + sys_corr_28: 2.26987075e+01 + sys_corr_29: -1.18770791e+01 + sys_corr_30: 5.47039259e+00 + sys_corr_31: -4.35958690e+00 + sys_corr_32: 2.84435807e+00 + sys_corr_33: -3.54433491e+00 + sys_corr_34: 5.39710452e+00 + sys_corr_35: -1.72985618e+00 + sys_corr_36: 2.37030720e+00 + sys_corr_37: -1.70259259e-01 + sys_corr_38: -1.30704099e+00 + sys_corr_39: -5.36747130e+00 + sys_corr_40: -3.85758940e+00 + sys_corr_41: 6.97582059e-01 + sys_corr_42: 2.74104279e+00 + sys_corr_43: -1.57384330e+00 + sys_corr_44: 5.03842987e-01 + sys_corr_45: 1.64571703e+00 + sys_corr_46: 1.71746490e+00 + sys_corr_47: 1.01328768e+00 + sys_corr_48: 1.70669787e+00 + sys_corr_49: -2.50707040e+00 + sys_corr_50: -1.85185235e+00 + sys_corr_51: 2.56681081e+00 + sys_corr_52: -1.53152983e+00 + sys_corr_53: -1.07556611e+00 + sys_corr_54: 1.34289357e+00 + sys_corr_55: -9.87181850e-01 + sys_corr_56: 2.06362828e-02 + sys_corr_57: 1.12456303e-01 + sys_corr_58: -4.41139679e-01 + sys_corr_59: 1.52244054e-01 + sys_corr_60: -1.34706974e-01 + sys_corr_61: 4.44586580e-01 + sys_corr_62: -3.22273665e-01 + sys_corr_63: 3.97098962e-01 + sys_corr_64: -9.09188373e-01 + sys_corr_65: -3.77956676e-01 + sys_corr_66: 3.41843972e-01 + sys_corr_67: -1.93471755e-01 + sys_corr_68: -6.57761089e-01 + sys_corr_69: -4.41406343e-01 + sys_corr_70: -7.29093242e-01 + sys_corr_71: -1.46633965e-01 + sys_corr_72: 5.02132628e-02 + sys_corr_73: 8.60994643e-01 + sys_corr_74: -1.03736631e-01 + sys_corr_75: -9.18998629e-01 + sys_corr_76: 7.77855945e-02 + sys_corr_77: -5.37228494e-01 + sys_corr_78: -5.61334377e-01 + sys_corr_79: 5.91556205e-01 + sys_corr_80: 1.80698669e-01 + sys_corr_81: 4.28267928e-01 + sys_corr_82: -8.93516509e-01 + sys_corr_83: 1.85844322e-01 + sys_corr_84: 8.86418355e-01 + sys_corr_85: 2.95673073e-01 + sys_corr_86: 6.29572611e-01 + sys_corr_87: -9.75569866e-01 + sys_corr_88: 1.19345570e-01 + sys_corr_89: 1.62931848e-01 + sys_corr_90: 8.66713525e-02 + sys_corr_91: -4.03557778e-01 + sys_corr_92: -3.65732765e-01 + sys_corr_93: -2.73136206e-02 + sys_corr_94: -1.67287715e-01 + sys_corr_95: -2.95332582e-02 + sys_corr_96: 8.21965205e-02 + sys_corr_97: -1.03515305e-01 + sys_corr_98: -9.56813450e-02 + sys_corr_99: 4.16566100e-02 + sys_corr_100: -1.36214588e+00 + sys_corr_101: 1.47978097e-01 + sys_corr_102: -1.35530030e-01 + sys_corr_103: 1.29467326e-02 + sys_corr_104: -1.70944195e-01 + sys_corr_105: 7.27890986e-02 + sys_corr_106: 4.73728872e-01 + sys_corr_107: 1.60616098e-01 + sys_corr_108: 2.51085720e-01 + sys_corr_109: 1.00806248e-01 + sys_corr_110: 7.98381951e-02 + sys_corr_111: 1.78716888e-01 + sys_corr_112: -3.29259036e-02 + sys_corr_113: -1.14396725e-01 + sys_corr_114: 4.53642026e-04 + sys_corr_115: -4.43812060e-02 + sys_corr_116: -5.03913730e-03 + sys_corr_117: -9.12268809e-03 + sys_corr_118: 3.85977072e-02 + sys_corr_119: -1.87395139e-03 + sys_corr_120: 2.76052140e-03 + sys_corr_121: -2.00693404e-03 + sys_corr_122: 3.39734162e-03 + sys_corr_123: 2.67795999e-03 + sys_corr_124: -1.46277350e-02 + sys_corr_125: -1.81577174e-03 + sys_corr_126: 2.00755737e-03 + sys_corr_127: 1.68149703e-01 + sys_corr_128: -1.62777106e-01 + sys_corr_129: -8.15386706e-02 + sys_corr_130: 7.32847860e-03 + sys_corr_131: -5.28061332e-03 + sys_corr_132: 2.59769317e-03 stat: 0.0 - luminosity: 6072.557480000001 -- sys_corr_1: 3097.8366631897165 - sys_corr_2: 3199.2465016295873 - sys_corr_3: 172.26011446253187 - sys_corr_4: 878.9625904748956 - sys_corr_5: -735.4264031839824 - sys_corr_6: 73.32992399780926 - sys_corr_7: 632.9129186503649 - sys_corr_8: 428.7698176715155 - sys_corr_9: 364.7094140779951 - sys_corr_10: -182.98859403941734 - sys_corr_11: -357.68662268302455 - sys_corr_12: -445.6534995314229 - sys_corr_13: -391.4543487588665 - sys_corr_14: -937.2049983106899 - sys_corr_15: 291.85004365677514 - sys_corr_16: -409.4369544406466 - sys_corr_17: -414.7399852850546 - sys_corr_18: 411.4459442822875 - sys_corr_19: -338.3262958393355 - sys_corr_20: 20.254406644188627 - sys_corr_21: -27.60526179340134 - sys_corr_22: 12.399110964469864 - sys_corr_23: -18.546286676919298 - sys_corr_24: -12.183489649199954 - sys_corr_25: -4.256732386326563 - sys_corr_26: 0.9168061858405296 - sys_corr_27: -8.260819879882966 - sys_corr_28: 8.827957624862387 - sys_corr_29: -4.552022165804217 - sys_corr_30: 2.012922073953036 - sys_corr_31: 3.5600925401534154 - sys_corr_32: 2.8486646946949286 - sys_corr_33: 3.954782174366285 - sys_corr_34: -5.238341330756746 - sys_corr_35: 3.7353187093449853 - sys_corr_36: -3.0831129149799037 - sys_corr_37: -0.9169616558158717 - sys_corr_38: -0.41998831625142913 - sys_corr_39: -0.32095732949191874 - sys_corr_40: 0.10385240800603113 - sys_corr_41: -0.9344291408820774 - sys_corr_42: 0.42929326766451004 - sys_corr_43: -0.388174545893148 - sys_corr_44: -1.1997060362481504 - sys_corr_45: 0.616946727410581 - sys_corr_46: 0.784688900551724 - sys_corr_47: -2.1964769009867977 - sys_corr_48: -0.05771147514632449 - sys_corr_49: 0.6739446750953441 - sys_corr_50: -0.6840360909108066 - sys_corr_51: -0.956418527421973 - sys_corr_52: 0.8144479063391022 - sys_corr_53: 0.47728721875569285 - sys_corr_54: -0.2499209999302827 - sys_corr_55: -0.631245033469964 - sys_corr_56: 0.5758399727824509 - sys_corr_57: 0.6855680324845078 - sys_corr_58: -0.33793064914879983 - sys_corr_59: 0.13834770644706154 - sys_corr_60: -0.24105185408679675 - sys_corr_61: 0.38527991422251423 - sys_corr_62: -0.08249624594134147 - sys_corr_63: 0.2136979142516494 - sys_corr_64: 0.5123876861019688 - sys_corr_65: 1.176619616522655 - sys_corr_66: -0.22396682622744063 - sys_corr_67: 0.2692590057602379 - sys_corr_68: -0.7680467008815604 - sys_corr_69: -0.10921372928356647 - sys_corr_70: -0.6490254675453434 - sys_corr_71: -0.19015208494299596 - sys_corr_72: 0.3887791354653633 - sys_corr_73: 0.3721190220266285 - sys_corr_74: -0.3637692597885742 - sys_corr_75: 0.25801311730329024 - sys_corr_76: -1.1321259414843103 - sys_corr_77: 0.3871192416075785 - sys_corr_78: 0.008361047303635662 - sys_corr_79: -0.12567099492666595 - sys_corr_80: 0.3253901223927872 - sys_corr_81: -0.912490838741282 - sys_corr_82: 0.13052821071814882 - sys_corr_83: 0.10973074132248717 - sys_corr_84: 0.5338624900189157 - sys_corr_85: 0.12560032982287722 - sys_corr_86: 0.21234838948071233 - sys_corr_87: 0.4658742867733663 - sys_corr_88: 0.6024174140029821 - sys_corr_89: 0.10134468650054945 - sys_corr_90: -0.39284368876451686 - sys_corr_91: -0.38122920616846245 - sys_corr_92: -0.21932778598521105 - sys_corr_93: -0.025330653705129064 - sys_corr_94: -0.26101337642246747 - sys_corr_95: 0.03934164644771747 - sys_corr_96: 0.03186753875180765 - sys_corr_97: -0.27512638276434453 - sys_corr_98: -0.2084658661299321 - sys_corr_99: 0.11324203173721148 - sys_corr_100: 0.28889547426989715 - sys_corr_101: 0.14895353089865113 - sys_corr_102: -0.14306317851066558 - sys_corr_103: 0.10024390876575222 - sys_corr_104: 0.11682474248568432 - sys_corr_105: -0.9774854949156031 - sys_corr_106: 0.20636647269417574 - sys_corr_107: 0.5284540386352309 - sys_corr_108: 0.227935768555055 - sys_corr_109: -0.08589383440229077 - sys_corr_110: -0.014034024302801772 - sys_corr_111: 0.21132229060541494 - sys_corr_112: 0.025260228851996164 - sys_corr_113: 0.015698590372187814 - sys_corr_114: 0.0003655654650026884 - sys_corr_115: -0.0373156276005792 - sys_corr_116: -0.0010940711215497027 - sys_corr_117: 0.0005506412159558866 - sys_corr_118: 0.006543629325068172 - sys_corr_119: 0.0006404127221763097 - sys_corr_120: 0.004269307325635035 - sys_corr_121: 0.0025752664298608814 - sys_corr_122: 0.006881536286742119 - sys_corr_123: 0.002658024085417952 - sys_corr_124: -0.006400561159186882 - sys_corr_125: -0.0025942570333044343 - sys_corr_126: 0.0010877039659588212 - sys_corr_127: 0.020246350245705928 - sys_corr_128: -0.13971406294347744 - sys_corr_129: 0.017530262542999834 - sys_corr_130: -0.0009137898427005824 - sys_corr_131: -0.0019388609898634806 - sys_corr_132: -0.0033496534780305173 + luminosity: 6.07255748e+03 +- sys_corr_1: 3.09783666e+03 + sys_corr_2: 3.19924650e+03 + sys_corr_3: 1.72260114e+02 + sys_corr_4: 8.78962590e+02 + sys_corr_5: -7.35426403e+02 + sys_corr_6: 7.33299240e+01 + sys_corr_7: 6.32912919e+02 + sys_corr_8: 4.28769818e+02 + sys_corr_9: 3.64709414e+02 + sys_corr_10: -1.82988594e+02 + sys_corr_11: -3.57686623e+02 + sys_corr_12: -4.45653500e+02 + sys_corr_13: -3.91454349e+02 + sys_corr_14: -9.37204998e+02 + sys_corr_15: 2.91850044e+02 + sys_corr_16: -4.09436954e+02 + sys_corr_17: -4.14739985e+02 + sys_corr_18: 4.11445944e+02 + sys_corr_19: -3.38326296e+02 + sys_corr_20: 2.02544066e+01 + sys_corr_21: -2.76052618e+01 + sys_corr_22: 1.23991110e+01 + sys_corr_23: -1.85462867e+01 + sys_corr_24: -1.21834896e+01 + sys_corr_25: -4.25673239e+00 + sys_corr_26: 9.16806186e-01 + sys_corr_27: -8.26081988e+00 + sys_corr_28: 8.82795762e+00 + sys_corr_29: -4.55202217e+00 + sys_corr_30: 2.01292207e+00 + sys_corr_31: 3.56009254e+00 + sys_corr_32: 2.84866469e+00 + sys_corr_33: 3.95478217e+00 + sys_corr_34: -5.23834133e+00 + sys_corr_35: 3.73531871e+00 + sys_corr_36: -3.08311291e+00 + sys_corr_37: -9.16961656e-01 + sys_corr_38: -4.19988316e-01 + sys_corr_39: -3.20957329e-01 + sys_corr_40: 1.03852408e-01 + sys_corr_41: -9.34429141e-01 + sys_corr_42: 4.29293268e-01 + sys_corr_43: -3.88174546e-01 + sys_corr_44: -1.19970604e+00 + sys_corr_45: 6.16946727e-01 + sys_corr_46: 7.84688901e-01 + sys_corr_47: -2.19647690e+00 + sys_corr_48: -5.77114751e-02 + sys_corr_49: 6.73944675e-01 + sys_corr_50: -6.84036091e-01 + sys_corr_51: -9.56418527e-01 + sys_corr_52: 8.14447906e-01 + sys_corr_53: 4.77287219e-01 + sys_corr_54: -2.49921000e-01 + sys_corr_55: -6.31245033e-01 + sys_corr_56: 5.75839973e-01 + sys_corr_57: 6.85568032e-01 + sys_corr_58: -3.37930649e-01 + sys_corr_59: 1.38347706e-01 + sys_corr_60: -2.41051854e-01 + sys_corr_61: 3.85279914e-01 + sys_corr_62: -8.24962459e-02 + sys_corr_63: 2.13697914e-01 + sys_corr_64: 5.12387686e-01 + sys_corr_65: 1.17661962e+00 + sys_corr_66: -2.23966826e-01 + sys_corr_67: 2.69259006e-01 + sys_corr_68: -7.68046701e-01 + sys_corr_69: -1.09213729e-01 + sys_corr_70: -6.49025468e-01 + sys_corr_71: -1.90152085e-01 + sys_corr_72: 3.88779135e-01 + sys_corr_73: 3.72119022e-01 + sys_corr_74: -3.63769260e-01 + sys_corr_75: 2.58013117e-01 + sys_corr_76: -1.13212594e+00 + sys_corr_77: 3.87119242e-01 + sys_corr_78: 8.36104730e-03 + sys_corr_79: -1.25670995e-01 + sys_corr_80: 3.25390122e-01 + sys_corr_81: -9.12490839e-01 + sys_corr_82: 1.30528211e-01 + sys_corr_83: 1.09730741e-01 + sys_corr_84: 5.33862490e-01 + sys_corr_85: 1.25600330e-01 + sys_corr_86: 2.12348389e-01 + sys_corr_87: 4.65874287e-01 + sys_corr_88: 6.02417414e-01 + sys_corr_89: 1.01344687e-01 + sys_corr_90: -3.92843689e-01 + sys_corr_91: -3.81229206e-01 + sys_corr_92: -2.19327786e-01 + sys_corr_93: -2.53306537e-02 + sys_corr_94: -2.61013376e-01 + sys_corr_95: 3.93416464e-02 + sys_corr_96: 3.18675388e-02 + sys_corr_97: -2.75126383e-01 + sys_corr_98: -2.08465866e-01 + sys_corr_99: 1.13242032e-01 + sys_corr_100: 2.88895474e-01 + sys_corr_101: 1.48953531e-01 + sys_corr_102: -1.43063179e-01 + sys_corr_103: 1.00243909e-01 + sys_corr_104: 1.16824742e-01 + sys_corr_105: -9.77485495e-01 + sys_corr_106: 2.06366473e-01 + sys_corr_107: 5.28454039e-01 + sys_corr_108: 2.27935769e-01 + sys_corr_109: -8.58938344e-02 + sys_corr_110: -1.40340243e-02 + sys_corr_111: 2.11322291e-01 + sys_corr_112: 2.52602289e-02 + sys_corr_113: 1.56985904e-02 + sys_corr_114: 3.65565465e-04 + sys_corr_115: -3.73156276e-02 + sys_corr_116: -1.09407112e-03 + sys_corr_117: 5.50641216e-04 + sys_corr_118: 6.54362933e-03 + sys_corr_119: 6.40412722e-04 + sys_corr_120: 4.26930733e-03 + sys_corr_121: 2.57526643e-03 + sys_corr_122: 6.88153629e-03 + sys_corr_123: 2.65802409e-03 + sys_corr_124: -6.40056116e-03 + sys_corr_125: -2.59425703e-03 + sys_corr_126: 1.08770397e-03 + sys_corr_127: 2.02463502e-02 + sys_corr_128: -1.39714063e-01 + sys_corr_129: 1.75302625e-02 + sys_corr_130: -9.13789843e-04 + sys_corr_131: -1.93886099e-03 + sys_corr_132: -3.34965348e-03 stat: 0.0 - luminosity: 5815.246162 -- sys_corr_1: 2881.9147618003267 - sys_corr_2: 3222.4110663893694 - sys_corr_3: -76.01835972363423 - sys_corr_4: 923.4974089950483 - sys_corr_5: -127.39479956630417 - sys_corr_6: 198.23175968687698 - sys_corr_7: 288.36384178836687 - sys_corr_8: 263.8354694020939 - sys_corr_9: 286.5766715965207 - sys_corr_10: 62.09731566577789 - sys_corr_11: 607.5644390187483 - sys_corr_12: -384.8171687482914 - sys_corr_13: 446.80735181160964 - sys_corr_14: -377.6883067325081 - sys_corr_15: 100.82168465936537 - sys_corr_16: 284.6957627991515 - sys_corr_17: 841.7484334753259 - sys_corr_18: -19.664452370255677 - sys_corr_19: 670.6851464331746 - sys_corr_20: 166.74909063683526 - sys_corr_21: -107.58793521284699 - sys_corr_22: -87.64107167069933 - sys_corr_23: 3.9930468130484864 - sys_corr_24: -19.176141927651972 - sys_corr_25: 18.331404593991984 - sys_corr_26: -3.9419797506309715 - sys_corr_27: -11.568198990759162 - sys_corr_28: -0.997063810894027 - sys_corr_29: -5.319720890164772 - sys_corr_30: 9.273885843897288 - sys_corr_31: -3.673981550036718 - sys_corr_32: 0.6114221444807676 - sys_corr_33: -2.65402353631935 - sys_corr_34: 2.9848244015717267 - sys_corr_35: -5.447411375405474 - sys_corr_36: 9.547674846431294 - sys_corr_37: -2.721730318135486 - sys_corr_38: 0.8054002979052313 - sys_corr_39: 0.2723666526563199 - sys_corr_40: -2.8465544708046346 - sys_corr_41: -1.3041247310261392 - sys_corr_42: -0.5071709290437186 - sys_corr_43: -0.33250773226894165 - sys_corr_44: 2.7807299388708806 - sys_corr_45: -0.9215755308822198 - sys_corr_46: 2.983127162091458 - sys_corr_47: 1.3797621080293452 - sys_corr_48: 0.055270207493172525 - sys_corr_49: 0.6616348482121359 - sys_corr_50: -3.692748371285055 - sys_corr_51: 1.4950968270153262 - sys_corr_52: -1.5159476108243775 - sys_corr_53: -0.5422058357500377 - sys_corr_54: 1.2760694488523536 - sys_corr_55: -0.6228572361425221 - sys_corr_56: -0.4341602312305062 - sys_corr_57: 0.6688649019260037 - sys_corr_58: 0.23199482290570034 - sys_corr_59: -0.4520789348986622 - sys_corr_60: -0.07767640292291547 - sys_corr_61: -0.17439799460641833 - sys_corr_62: -0.03363318111625411 - sys_corr_63: -0.5631909783400157 - sys_corr_64: -0.7480834525506956 - sys_corr_65: -0.7907505095233213 - sys_corr_66: 0.4095824799804587 - sys_corr_67: 1.166213668931554 - sys_corr_68: 0.2774092182440741 - sys_corr_69: 0.136381636277338 - sys_corr_70: -0.7601262305852551 - sys_corr_71: 1.0789763147457754 - sys_corr_72: 0.12482467593429394 - sys_corr_73: 1.131353967998064 - sys_corr_74: 0.539310928126521 - sys_corr_75: 0.6394192310884659 - sys_corr_76: 0.1817157186609889 - sys_corr_77: 0.7744759464328671 - sys_corr_78: -0.6444149890597094 - sys_corr_79: -0.09003811882227539 - sys_corr_80: -0.2710108848331839 - sys_corr_81: 1.535342362925108 - sys_corr_82: -0.6959637186832129 - sys_corr_83: 0.895362788327154 - sys_corr_84: 0.28922369615562477 - sys_corr_85: 0.870670210856563 - sys_corr_86: -0.19231193998935786 - sys_corr_87: -0.3104287587996278 - sys_corr_88: -0.2832829964974578 - sys_corr_89: -0.09178828788725267 - sys_corr_90: -0.3885342406533182 - sys_corr_91: -0.38107309927533145 - sys_corr_92: -0.164386194242984 - sys_corr_93: 0.02028100018318561 - sys_corr_94: -0.0356473631702922 - sys_corr_95: -0.158603012849417 - sys_corr_96: 0.06466659469480701 - sys_corr_97: -0.20492055318187127 - sys_corr_98: -0.12805974434010298 - sys_corr_99: -0.0533648324293624 - sys_corr_100: -0.2592088134188161 - sys_corr_101: -0.2549632452806901 - sys_corr_102: -0.18922692672884864 - sys_corr_103: 0.09110484894499686 - sys_corr_104: 0.06431390335248643 - sys_corr_105: 0.6103725353954008 - sys_corr_106: -1.0151251971453992 - sys_corr_107: 0.2777863552239922 - sys_corr_108: 0.35345145460951 - sys_corr_109: 0.1250343195324055 - sys_corr_110: 0.017953566820413953 - sys_corr_111: -0.4853254938311016 - sys_corr_112: 0.053410633028401905 - sys_corr_113: -0.055462694599987296 - sys_corr_114: 0.00046199682848337874 - sys_corr_115: -0.009145772682357478 - sys_corr_116: 0.012493436034156799 - sys_corr_117: 0.0018702166821399553 - sys_corr_118: -0.006949409928568196 - sys_corr_119: 0.00045797031308334905 - sys_corr_120: -0.00539308713957678 - sys_corr_121: -0.001265668358046849 - sys_corr_122: 0.004455532133002441 - sys_corr_123: 0.0035603275580142974 - sys_corr_124: 0.006300031479696136 - sys_corr_125: 0.002386601575259862 - sys_corr_126: 0.00577785541468365 - sys_corr_127: -0.11552052007961192 - sys_corr_128: 0.13334183883981873 - sys_corr_129: -0.054239330320769705 - sys_corr_130: 0.007928766842957196 - sys_corr_131: -0.0021566963330787664 - sys_corr_132: 0.014020081952038872 + luminosity: 5.81524616e+03 +- sys_corr_1: 2.88191476e+03 + sys_corr_2: 3.22241107e+03 + sys_corr_3: -7.60183597e+01 + sys_corr_4: 9.23497409e+02 + sys_corr_5: -1.27394800e+02 + sys_corr_6: 1.98231760e+02 + sys_corr_7: 2.88363842e+02 + sys_corr_8: 2.63835469e+02 + sys_corr_9: 2.86576672e+02 + sys_corr_10: 6.20973157e+01 + sys_corr_11: 6.07564439e+02 + sys_corr_12: -3.84817169e+02 + sys_corr_13: 4.46807352e+02 + sys_corr_14: -3.77688307e+02 + sys_corr_15: 1.00821685e+02 + sys_corr_16: 2.84695763e+02 + sys_corr_17: 8.41748433e+02 + sys_corr_18: -1.96644524e+01 + sys_corr_19: 6.70685146e+02 + sys_corr_20: 1.66749091e+02 + sys_corr_21: -1.07587935e+02 + sys_corr_22: -8.76410717e+01 + sys_corr_23: 3.99304681e+00 + sys_corr_24: -1.91761419e+01 + sys_corr_25: 1.83314046e+01 + sys_corr_26: -3.94197975e+00 + sys_corr_27: -1.15681990e+01 + sys_corr_28: -9.97063811e-01 + sys_corr_29: -5.31972089e+00 + sys_corr_30: 9.27388584e+00 + sys_corr_31: -3.67398155e+00 + sys_corr_32: 6.11422144e-01 + sys_corr_33: -2.65402354e+00 + sys_corr_34: 2.98482440e+00 + sys_corr_35: -5.44741138e+00 + sys_corr_36: 9.54767485e+00 + sys_corr_37: -2.72173032e+00 + sys_corr_38: 8.05400298e-01 + sys_corr_39: 2.72366653e-01 + sys_corr_40: -2.84655447e+00 + sys_corr_41: -1.30412473e+00 + sys_corr_42: -5.07170929e-01 + sys_corr_43: -3.32507732e-01 + sys_corr_44: 2.78072994e+00 + sys_corr_45: -9.21575531e-01 + sys_corr_46: 2.98312716e+00 + sys_corr_47: 1.37976211e+00 + sys_corr_48: 5.52702075e-02 + sys_corr_49: 6.61634848e-01 + sys_corr_50: -3.69274837e+00 + sys_corr_51: 1.49509683e+00 + sys_corr_52: -1.51594761e+00 + sys_corr_53: -5.42205836e-01 + sys_corr_54: 1.27606945e+00 + sys_corr_55: -6.22857236e-01 + sys_corr_56: -4.34160231e-01 + sys_corr_57: 6.68864902e-01 + sys_corr_58: 2.31994823e-01 + sys_corr_59: -4.52078935e-01 + sys_corr_60: -7.76764029e-02 + sys_corr_61: -1.74397995e-01 + sys_corr_62: -3.36331811e-02 + sys_corr_63: -5.63190978e-01 + sys_corr_64: -7.48083453e-01 + sys_corr_65: -7.90750510e-01 + sys_corr_66: 4.09582480e-01 + sys_corr_67: 1.16621367e+00 + sys_corr_68: 2.77409218e-01 + sys_corr_69: 1.36381636e-01 + sys_corr_70: -7.60126231e-01 + sys_corr_71: 1.07897631e+00 + sys_corr_72: 1.24824676e-01 + sys_corr_73: 1.13135397e+00 + sys_corr_74: 5.39310928e-01 + sys_corr_75: 6.39419231e-01 + sys_corr_76: 1.81715719e-01 + sys_corr_77: 7.74475946e-01 + sys_corr_78: -6.44414989e-01 + sys_corr_79: -9.00381188e-02 + sys_corr_80: -2.71010885e-01 + sys_corr_81: 1.53534236e+00 + sys_corr_82: -6.95963719e-01 + sys_corr_83: 8.95362788e-01 + sys_corr_84: 2.89223696e-01 + sys_corr_85: 8.70670211e-01 + sys_corr_86: -1.92311940e-01 + sys_corr_87: -3.10428759e-01 + sys_corr_88: -2.83282996e-01 + sys_corr_89: -9.17882879e-02 + sys_corr_90: -3.88534241e-01 + sys_corr_91: -3.81073099e-01 + sys_corr_92: -1.64386194e-01 + sys_corr_93: 2.02810002e-02 + sys_corr_94: -3.56473632e-02 + sys_corr_95: -1.58603013e-01 + sys_corr_96: 6.46665947e-02 + sys_corr_97: -2.04920553e-01 + sys_corr_98: -1.28059744e-01 + sys_corr_99: -5.33648324e-02 + sys_corr_100: -2.59208813e-01 + sys_corr_101: -2.54963245e-01 + sys_corr_102: -1.89226927e-01 + sys_corr_103: 9.11048489e-02 + sys_corr_104: 6.43139034e-02 + sys_corr_105: 6.10372535e-01 + sys_corr_106: -1.01512520e+00 + sys_corr_107: 2.77786355e-01 + sys_corr_108: 3.53451455e-01 + sys_corr_109: 1.25034320e-01 + sys_corr_110: 1.79535668e-02 + sys_corr_111: -4.85325494e-01 + sys_corr_112: 5.34106330e-02 + sys_corr_113: -5.54626946e-02 + sys_corr_114: 4.61996828e-04 + sys_corr_115: -9.14577268e-03 + sys_corr_116: 1.24934360e-02 + sys_corr_117: 1.87021668e-03 + sys_corr_118: -6.94940993e-03 + sys_corr_119: 4.57970313e-04 + sys_corr_120: -5.39308714e-03 + sys_corr_121: -1.26566836e-03 + sys_corr_122: 4.45553213e-03 + sys_corr_123: 3.56032756e-03 + sys_corr_124: 6.30003148e-03 + sys_corr_125: 2.38660158e-03 + sys_corr_126: 5.77785541e-03 + sys_corr_127: -1.15520520e-01 + sys_corr_128: 1.33341839e-01 + sys_corr_129: -5.42393303e-02 + sys_corr_130: 7.92876684e-03 + sys_corr_131: -2.15669633e-03 + sys_corr_132: 1.40200820e-02 stat: 0.0 - luminosity: 5493.463888000001 -- sys_corr_1: 2536.4271023891106 - sys_corr_2: 3128.3840925282657 - sys_corr_3: -533.1932058039733 - sys_corr_4: 890.5561594696723 - sys_corr_5: 522.7288245577664 - sys_corr_6: 344.37751428906927 - sys_corr_7: 182.19141162834737 - sys_corr_8: 399.6626118574931 - sys_corr_9: 261.048990367747 - sys_corr_10: 372.5839094846829 - sys_corr_11: -37.43474546495648 - sys_corr_12: 0.3794588905964303 - sys_corr_13: 356.30713317423516 - sys_corr_14: 137.51065859236695 - sys_corr_15: -229.22260631766312 - sys_corr_16: 399.5510330678234 - sys_corr_17: -879.0417246923089 - sys_corr_18: -845.3773876430555 - sys_corr_19: 102.73157417582823 - sys_corr_20: -161.2915311688542 - sys_corr_21: 129.84789539546134 - sys_corr_22: -97.23780311959273 - sys_corr_23: -5.39905484365094 - sys_corr_24: -21.404314549741375 - sys_corr_25: 5.31479774571156 - sys_corr_26: 4.788968744730292 - sys_corr_27: -6.817486877645513 - sys_corr_28: 3.0846052770785484 - sys_corr_29: 14.699780118814532 - sys_corr_30: 1.984443924172853 - sys_corr_31: -7.143333187162194 - sys_corr_32: -1.6076023601771154 - sys_corr_33: 0.4642192331316409 - sys_corr_34: 2.892320586848454 - sys_corr_35: 2.425799079444286 - sys_corr_36: -3.0784501928967476 - sys_corr_37: 2.5176635155522096 - sys_corr_38: -1.3202898175600595 - sys_corr_39: 0.7876575571424533 - sys_corr_40: 0.22647966310521753 - sys_corr_41: 0.25160079860638473 - sys_corr_42: 0.30904046570903326 - sys_corr_43: -1.2320504236701961 - sys_corr_44: 1.3619865043690704 - sys_corr_45: 1.0921382697090531 - sys_corr_46: -0.9561676198622014 - sys_corr_47: 0.4377373191081659 - sys_corr_48: 0.4734672164739482 - sys_corr_49: -0.683871592032735 - sys_corr_50: -1.1490732661826024 - sys_corr_51: 0.05099802867045867 - sys_corr_52: -0.9445623499657847 - sys_corr_53: 0.7394896724094682 - sys_corr_54: -0.9079201454242269 - sys_corr_55: -0.03259114522914956 - sys_corr_56: 0.1778557961200713 - sys_corr_57: 0.9088432893687174 - sys_corr_58: -0.24847307141723235 - sys_corr_59: 0.04674362399731701 - sys_corr_60: -0.06494095328318325 - sys_corr_61: -0.18212750848879178 - sys_corr_62: 0.38631223218498983 - sys_corr_63: -1.2006482452080287 - sys_corr_64: 0.232900817323475 - sys_corr_65: -0.11643734283368952 - sys_corr_66: -0.9927371799880412 - sys_corr_67: -0.008678629779974304 - sys_corr_68: -0.1566783017587866 - sys_corr_69: 0.5559132149206844 - sys_corr_70: -0.05842393728215876 - sys_corr_71: -0.33116850611319365 - sys_corr_72: 0.4821625963054396 - sys_corr_73: 0.30376028446486164 - sys_corr_74: 0.24409922407355197 - sys_corr_75: -0.6679715167056792 - sys_corr_76: 0.3519565525338723 - sys_corr_77: 0.42137146390866853 - sys_corr_78: 1.8264039225501771 - sys_corr_79: -0.387976727549241 - sys_corr_80: 0.7901319976964787 - sys_corr_81: -0.23222752722325227 - sys_corr_82: 0.050568338158279096 - sys_corr_83: 0.3549109892097055 - sys_corr_84: 0.2555261549700576 - sys_corr_85: -0.06408633007088688 - sys_corr_86: 0.346956770655036 - sys_corr_87: 0.1200461020787588 - sys_corr_88: 0.20086065705221862 - sys_corr_89: -0.1959703892592576 - sys_corr_90: -0.35040527785890363 - sys_corr_91: -0.18330585739983743 - sys_corr_92: 0.0700279223821327 - sys_corr_93: 0.05901104685002841 - sys_corr_94: 0.12419863401020217 - sys_corr_95: -0.08481437741605607 - sys_corr_96: -0.04965614908866874 - sys_corr_97: -0.08255492871883495 - sys_corr_98: -0.04836191601387595 - sys_corr_99: -0.2838816862974251 - sys_corr_100: 0.383875962081656 - sys_corr_101: -0.09697609367654406 - sys_corr_102: 0.3765537072689991 - sys_corr_103: 0.01818936916820381 - sys_corr_104: 0.09994886850205993 - sys_corr_105: -0.23649624661910054 - sys_corr_106: 0.49190049186329193 - sys_corr_107: -0.8032391883008574 - sys_corr_108: -0.5013634301933264 - sys_corr_109: 0.4077398372788725 - sys_corr_110: -0.0816468100519604 - sys_corr_111: -0.8340726288053751 - sys_corr_112: 0.09492978021165616 - sys_corr_113: 0.07959405146043233 - sys_corr_114: 2.5082013241129813e-05 - sys_corr_115: 0.013712942983315211 - sys_corr_116: -0.004735117999065931 - sys_corr_117: -0.003326288091693601 - sys_corr_118: -0.010894079047010096 - sys_corr_119: 0.0007836222336922782 - sys_corr_120: 0.0052870454880295315 - sys_corr_121: -0.0005829027266196421 - sys_corr_122: 0.005442791599573028 - sys_corr_123: 0.00602232015507386 - sys_corr_124: 0.004508927487176354 - sys_corr_125: -0.004780498927473248 - sys_corr_126: 0.0031720569808247534 - sys_corr_127: -0.021907569982683006 - sys_corr_128: 0.442564331672599 - sys_corr_129: 0.008909936116652806 - sys_corr_130: 0.003551806508679741 - sys_corr_131: -0.003967905516657157 - sys_corr_132: -0.014620359880265386 + luminosity: 5.49346389e+03 +- sys_corr_1: 2.53642710e+03 + sys_corr_2: 3.12838409e+03 + sys_corr_3: -5.33193206e+02 + sys_corr_4: 8.90556159e+02 + sys_corr_5: 5.22728825e+02 + sys_corr_6: 3.44377514e+02 + sys_corr_7: 1.82191412e+02 + sys_corr_8: 3.99662612e+02 + sys_corr_9: 2.61048990e+02 + sys_corr_10: 3.72583909e+02 + sys_corr_11: -3.74347455e+01 + sys_corr_12: 3.79458891e-01 + sys_corr_13: 3.56307133e+02 + sys_corr_14: 1.37510659e+02 + sys_corr_15: -2.29222606e+02 + sys_corr_16: 3.99551033e+02 + sys_corr_17: -8.79041725e+02 + sys_corr_18: -8.45377388e+02 + sys_corr_19: 1.02731574e+02 + sys_corr_20: -1.61291531e+02 + sys_corr_21: 1.29847895e+02 + sys_corr_22: -9.72378031e+01 + sys_corr_23: -5.39905484e+00 + sys_corr_24: -2.14043145e+01 + sys_corr_25: 5.31479775e+00 + sys_corr_26: 4.78896874e+00 + sys_corr_27: -6.81748688e+00 + sys_corr_28: 3.08460528e+00 + sys_corr_29: 1.46997801e+01 + sys_corr_30: 1.98444392e+00 + sys_corr_31: -7.14333319e+00 + sys_corr_32: -1.60760236e+00 + sys_corr_33: 4.64219233e-01 + sys_corr_34: 2.89232059e+00 + sys_corr_35: 2.42579908e+00 + sys_corr_36: -3.07845019e+00 + sys_corr_37: 2.51766352e+00 + sys_corr_38: -1.32028982e+00 + sys_corr_39: 7.87657557e-01 + sys_corr_40: 2.26479663e-01 + sys_corr_41: 2.51600799e-01 + sys_corr_42: 3.09040466e-01 + sys_corr_43: -1.23205042e+00 + sys_corr_44: 1.36198650e+00 + sys_corr_45: 1.09213827e+00 + sys_corr_46: -9.56167620e-01 + sys_corr_47: 4.37737319e-01 + sys_corr_48: 4.73467216e-01 + sys_corr_49: -6.83871592e-01 + sys_corr_50: -1.14907327e+00 + sys_corr_51: 5.09980287e-02 + sys_corr_52: -9.44562350e-01 + sys_corr_53: 7.39489672e-01 + sys_corr_54: -9.07920145e-01 + sys_corr_55: -3.25911452e-02 + sys_corr_56: 1.77855796e-01 + sys_corr_57: 9.08843289e-01 + sys_corr_58: -2.48473071e-01 + sys_corr_59: 4.67436240e-02 + sys_corr_60: -6.49409533e-02 + sys_corr_61: -1.82127508e-01 + sys_corr_62: 3.86312232e-01 + sys_corr_63: -1.20064825e+00 + sys_corr_64: 2.32900817e-01 + sys_corr_65: -1.16437343e-01 + sys_corr_66: -9.92737180e-01 + sys_corr_67: -8.67862978e-03 + sys_corr_68: -1.56678302e-01 + sys_corr_69: 5.55913215e-01 + sys_corr_70: -5.84239373e-02 + sys_corr_71: -3.31168506e-01 + sys_corr_72: 4.82162596e-01 + sys_corr_73: 3.03760284e-01 + sys_corr_74: 2.44099224e-01 + sys_corr_75: -6.67971517e-01 + sys_corr_76: 3.51956553e-01 + sys_corr_77: 4.21371464e-01 + sys_corr_78: 1.82640392e+00 + sys_corr_79: -3.87976728e-01 + sys_corr_80: 7.90131998e-01 + sys_corr_81: -2.32227527e-01 + sys_corr_82: 5.05683382e-02 + sys_corr_83: 3.54910989e-01 + sys_corr_84: 2.55526155e-01 + sys_corr_85: -6.40863301e-02 + sys_corr_86: 3.46956771e-01 + sys_corr_87: 1.20046102e-01 + sys_corr_88: 2.00860657e-01 + sys_corr_89: -1.95970389e-01 + sys_corr_90: -3.50405278e-01 + sys_corr_91: -1.83305857e-01 + sys_corr_92: 7.00279224e-02 + sys_corr_93: 5.90110469e-02 + sys_corr_94: 1.24198634e-01 + sys_corr_95: -8.48143774e-02 + sys_corr_96: -4.96561491e-02 + sys_corr_97: -8.25549287e-02 + sys_corr_98: -4.83619160e-02 + sys_corr_99: -2.83881686e-01 + sys_corr_100: 3.83875962e-01 + sys_corr_101: -9.69760937e-02 + sys_corr_102: 3.76553707e-01 + sys_corr_103: 1.81893692e-02 + sys_corr_104: 9.99488685e-02 + sys_corr_105: -2.36496247e-01 + sys_corr_106: 4.91900492e-01 + sys_corr_107: -8.03239188e-01 + sys_corr_108: -5.01363430e-01 + sys_corr_109: 4.07739837e-01 + sys_corr_110: -8.16468101e-02 + sys_corr_111: -8.34072629e-01 + sys_corr_112: 9.49297802e-02 + sys_corr_113: 7.95940515e-02 + sys_corr_114: 2.50820132e-05 + sys_corr_115: 1.37129430e-02 + sys_corr_116: -4.73511800e-03 + sys_corr_117: -3.32628809e-03 + sys_corr_118: -1.08940790e-02 + sys_corr_119: 7.83622234e-04 + sys_corr_120: 5.28704549e-03 + sys_corr_121: -5.82902727e-04 + sys_corr_122: 5.44279160e-03 + sys_corr_123: 6.02232016e-03 + sys_corr_124: 4.50892749e-03 + sys_corr_125: -4.78049893e-03 + sys_corr_126: 3.17205698e-03 + sys_corr_127: -2.19075700e-02 + sys_corr_128: 4.42564332e-01 + sys_corr_129: 8.90993612e-03 + sys_corr_130: 3.55180651e-03 + sys_corr_131: -3.96790552e-03 + sys_corr_132: -1.46203599e-02 stat: 0.0 - luminosity: 5146.129736000001 -- sys_corr_1: 2049.465946663357 - sys_corr_2: 2965.176935739622 - sys_corr_3: -1225.106595121163 - sys_corr_4: 612.9887908816569 - sys_corr_5: 1165.447877724486 - sys_corr_6: 369.1855476233149 - sys_corr_7: -26.839823285543336 - sys_corr_8: 108.50504743440939 - sys_corr_9: 85.25202399321375 - sys_corr_10: 63.25519074776657 - sys_corr_11: -48.39709479255801 - sys_corr_12: -71.95222566027986 - sys_corr_13: 75.22239535658984 - sys_corr_14: 289.4667669982825 - sys_corr_15: -153.09334430750292 - sys_corr_16: 194.27368604058557 - sys_corr_17: 715.3383831411712 - sys_corr_18: 13.038947636567727 - sys_corr_19: -872.8157475467957 - sys_corr_20: -118.4613600820239 - sys_corr_21: 376.43280445816646 - sys_corr_22: 137.840708539262 - sys_corr_23: -64.94151699681092 - sys_corr_24: 35.154380023602215 - sys_corr_25: -8.31823427557726 - sys_corr_26: -5.557141361629863 - sys_corr_27: 2.4840335226741512 - sys_corr_28: -11.364286623484798 - sys_corr_29: 6.3227072003103135 - sys_corr_30: -5.438374775551902 - sys_corr_31: 3.9020256786783247 - sys_corr_32: -1.9704812888811034 - sys_corr_33: 0.8416709039488698 - sys_corr_34: -0.7363501566558978 - sys_corr_35: 0.7417174754789405 - sys_corr_36: 2.9328041196367054 - sys_corr_37: -2.2048944617911173 - sys_corr_38: 2.1089598107656564 - sys_corr_39: 2.5357845939790566 - sys_corr_40: 2.582934921051399 - sys_corr_41: -1.0365049712136334 - sys_corr_42: -2.1016467891231807 - sys_corr_43: 0.971110251799867 - sys_corr_44: -0.3117842926466032 - sys_corr_45: -0.2841991415215518 - sys_corr_46: -1.2686438084063676 - sys_corr_47: 0.8083623596927554 - sys_corr_48: -1.3763441834202093 - sys_corr_49: 1.753068516365039 - sys_corr_50: 3.429887257898559 - sys_corr_51: -2.7621736533710477 - sys_corr_52: 3.1022710373428684 - sys_corr_53: 0.1858681957289452 - sys_corr_54: -0.72190020555659 - sys_corr_55: 1.3349646733947422 - sys_corr_56: 0.9822254838126415 - sys_corr_57: 0.2916012450745704 - sys_corr_58: 0.0005705146809148059 - sys_corr_59: -0.28214209768984283 - sys_corr_60: 0.5389950648024544 - sys_corr_61: -0.7605272061123053 - sys_corr_62: -0.33501485963135197 - sys_corr_63: 0.17456853018452548 - sys_corr_64: -0.2199753043459375 - sys_corr_65: 0.04812295147331613 - sys_corr_66: -0.9167160033206199 - sys_corr_67: -0.49786416144793405 - sys_corr_68: 0.4731592143053571 - sys_corr_69: 1.4998260997640294 - sys_corr_70: 0.4173248026362131 - sys_corr_71: -0.06705183069496636 - sys_corr_72: -0.8884947193687838 - sys_corr_73: 0.37939872493358606 - sys_corr_74: -0.11610126501507262 - sys_corr_75: -0.4366322202884664 - sys_corr_76: -0.34663716679411677 - sys_corr_77: 0.15913130810270237 - sys_corr_78: -0.5617333332175235 - sys_corr_79: -0.2734230532014538 - sys_corr_80: 0.21738608452175254 - sys_corr_81: -1.0911986520845305 - sys_corr_82: 0.5591414507541418 - sys_corr_83: -0.7804068919238784 - sys_corr_84: -1.1069372391032855 - sys_corr_85: -1.4411545527204925 - sys_corr_86: -0.4266235238305627 - sys_corr_87: 0.2935785354886303 - sys_corr_88: -0.17931108992303194 - sys_corr_89: -0.13516338604747252 - sys_corr_90: -0.3071708969178711 - sys_corr_91: -0.9977022485478843 - sys_corr_92: -0.2334338143700397 - sys_corr_93: 0.14809756052069256 - sys_corr_94: 0.3317281721600472 - sys_corr_95: -0.09042695153102477 - sys_corr_96: -0.06476303490953893 - sys_corr_97: -0.375108014601824 - sys_corr_98: -0.17126924517731884 - sys_corr_99: -0.3875941561521585 - sys_corr_100: 0.0578477048723207 - sys_corr_101: 0.07003658081636732 - sys_corr_102: -0.6437384124475921 - sys_corr_103: 0.12325317807365224 - sys_corr_104: 0.4056063146614065 - sys_corr_105: -0.2471101058613129 - sys_corr_106: -0.4332818954232037 - sys_corr_107: 0.12969221818271806 - sys_corr_108: -1.0853456240968549 - sys_corr_109: 0.03438990689452586 - sys_corr_110: -0.1620408320737764 - sys_corr_111: 1.2943650011180339 - sys_corr_112: 0.14814019947565102 - sys_corr_113: 0.2508715395102092 - sys_corr_114: -0.0005136468319529108 - sys_corr_115: 0.006914419010080631 - sys_corr_116: 0.005447167087312541 - sys_corr_117: 0.005100465180080683 - sys_corr_118: -0.07359701733311644 - sys_corr_119: 0.0021802206417832885 - sys_corr_120: -0.005540855797518461 - sys_corr_121: 0.0008035226714256312 - sys_corr_122: -0.0038599543910851956 - sys_corr_123: 2.443253740212556e-05 - sys_corr_124: -0.01235314906798013 - sys_corr_125: -0.0018520227105920265 - sys_corr_126: -0.002238717526919774 - sys_corr_127: -0.030634064384059145 - sys_corr_128: -0.3541769087296998 - sys_corr_129: 0.06018492797818595 - sys_corr_130: -0.01030950316449691 - sys_corr_131: 0.004371569191648586 - sys_corr_132: -0.003463771620520431 + luminosity: 5.14612974e+03 +- sys_corr_1: 2.04946595e+03 + sys_corr_2: 2.96517694e+03 + sys_corr_3: -1.22510660e+03 + sys_corr_4: 6.12988791e+02 + sys_corr_5: 1.16544788e+03 + sys_corr_6: 3.69185548e+02 + sys_corr_7: -2.68398233e+01 + sys_corr_8: 1.08505047e+02 + sys_corr_9: 8.52520240e+01 + sys_corr_10: 6.32551907e+01 + sys_corr_11: -4.83970948e+01 + sys_corr_12: -7.19522257e+01 + sys_corr_13: 7.52223954e+01 + sys_corr_14: 2.89466767e+02 + sys_corr_15: -1.53093344e+02 + sys_corr_16: 1.94273686e+02 + sys_corr_17: 7.15338383e+02 + sys_corr_18: 1.30389476e+01 + sys_corr_19: -8.72815748e+02 + sys_corr_20: -1.18461360e+02 + sys_corr_21: 3.76432804e+02 + sys_corr_22: 1.37840709e+02 + sys_corr_23: -6.49415170e+01 + sys_corr_24: 3.51543800e+01 + sys_corr_25: -8.31823428e+00 + sys_corr_26: -5.55714136e+00 + sys_corr_27: 2.48403352e+00 + sys_corr_28: -1.13642866e+01 + sys_corr_29: 6.32270720e+00 + sys_corr_30: -5.43837478e+00 + sys_corr_31: 3.90202568e+00 + sys_corr_32: -1.97048129e+00 + sys_corr_33: 8.41670904e-01 + sys_corr_34: -7.36350157e-01 + sys_corr_35: 7.41717475e-01 + sys_corr_36: 2.93280412e+00 + sys_corr_37: -2.20489446e+00 + sys_corr_38: 2.10895981e+00 + sys_corr_39: 2.53578459e+00 + sys_corr_40: 2.58293492e+00 + sys_corr_41: -1.03650497e+00 + sys_corr_42: -2.10164679e+00 + sys_corr_43: 9.71110252e-01 + sys_corr_44: -3.11784293e-01 + sys_corr_45: -2.84199142e-01 + sys_corr_46: -1.26864381e+00 + sys_corr_47: 8.08362360e-01 + sys_corr_48: -1.37634418e+00 + sys_corr_49: 1.75306852e+00 + sys_corr_50: 3.42988726e+00 + sys_corr_51: -2.76217365e+00 + sys_corr_52: 3.10227104e+00 + sys_corr_53: 1.85868196e-01 + sys_corr_54: -7.21900206e-01 + sys_corr_55: 1.33496467e+00 + sys_corr_56: 9.82225484e-01 + sys_corr_57: 2.91601245e-01 + sys_corr_58: 5.70514681e-04 + sys_corr_59: -2.82142098e-01 + sys_corr_60: 5.38995065e-01 + sys_corr_61: -7.60527206e-01 + sys_corr_62: -3.35014860e-01 + sys_corr_63: 1.74568530e-01 + sys_corr_64: -2.19975304e-01 + sys_corr_65: 4.81229515e-02 + sys_corr_66: -9.16716003e-01 + sys_corr_67: -4.97864161e-01 + sys_corr_68: 4.73159214e-01 + sys_corr_69: 1.49982610e+00 + sys_corr_70: 4.17324803e-01 + sys_corr_71: -6.70518307e-02 + sys_corr_72: -8.88494719e-01 + sys_corr_73: 3.79398725e-01 + sys_corr_74: -1.16101265e-01 + sys_corr_75: -4.36632220e-01 + sys_corr_76: -3.46637167e-01 + sys_corr_77: 1.59131308e-01 + sys_corr_78: -5.61733333e-01 + sys_corr_79: -2.73423053e-01 + sys_corr_80: 2.17386085e-01 + sys_corr_81: -1.09119865e+00 + sys_corr_82: 5.59141451e-01 + sys_corr_83: -7.80406892e-01 + sys_corr_84: -1.10693724e+00 + sys_corr_85: -1.44115455e+00 + sys_corr_86: -4.26623524e-01 + sys_corr_87: 2.93578535e-01 + sys_corr_88: -1.79311090e-01 + sys_corr_89: -1.35163386e-01 + sys_corr_90: -3.07170897e-01 + sys_corr_91: -9.97702249e-01 + sys_corr_92: -2.33433814e-01 + sys_corr_93: 1.48097561e-01 + sys_corr_94: 3.31728172e-01 + sys_corr_95: -9.04269515e-02 + sys_corr_96: -6.47630349e-02 + sys_corr_97: -3.75108015e-01 + sys_corr_98: -1.71269245e-01 + sys_corr_99: -3.87594156e-01 + sys_corr_100: 5.78477049e-02 + sys_corr_101: 7.00365808e-02 + sys_corr_102: -6.43738412e-01 + sys_corr_103: 1.23253178e-01 + sys_corr_104: 4.05606315e-01 + sys_corr_105: -2.47110106e-01 + sys_corr_106: -4.33281895e-01 + sys_corr_107: 1.29692218e-01 + sys_corr_108: -1.08534562e+00 + sys_corr_109: 3.43899069e-02 + sys_corr_110: -1.62040832e-01 + sys_corr_111: 1.29436500e+00 + sys_corr_112: 1.48140199e-01 + sys_corr_113: 2.50871540e-01 + sys_corr_114: -5.13646832e-04 + sys_corr_115: 6.91441901e-03 + sys_corr_116: 5.44716709e-03 + sys_corr_117: 5.10046518e-03 + sys_corr_118: -7.35970173e-02 + sys_corr_119: 2.18022064e-03 + sys_corr_120: -5.54085580e-03 + sys_corr_121: 8.03522671e-04 + sys_corr_122: -3.85995439e-03 + sys_corr_123: 2.44325374e-05 + sys_corr_124: -1.23531491e-02 + sys_corr_125: -1.85202271e-03 + sys_corr_126: -2.23871753e-03 + sys_corr_127: -3.06340644e-02 + sys_corr_128: -3.54176909e-01 + sys_corr_129: 6.01849280e-02 + sys_corr_130: -1.03095032e-02 + sys_corr_131: 4.37156919e-03 + sys_corr_132: -3.46377162e-03 stat: 0.0 - luminosity: 4820.588916000001 -- sys_corr_1: 1412.996591865551 - sys_corr_2: 2553.2761498519803 - sys_corr_3: -1817.9290267104627 - sys_corr_4: 20.49441816918863 - sys_corr_5: 1323.5867718964469 - sys_corr_6: 362.19042447194903 - sys_corr_7: -277.1417559520591 - sys_corr_8: -179.92594524286815 - sys_corr_9: -113.11533534453487 - sys_corr_10: -43.414431272120716 - sys_corr_11: 127.91302651528643 - sys_corr_12: 171.07651981223304 - sys_corr_13: -87.47210638960648 - sys_corr_14: 154.1930369345535 - sys_corr_15: 0.5733782234397288 - sys_corr_16: -113.95162288646694 - sys_corr_17: -123.63841217135706 - sys_corr_18: 105.73522747724235 - sys_corr_19: -131.7845218453495 - sys_corr_20: 90.2774994081297 - sys_corr_21: -998.3348504207551 - sys_corr_22: 86.703864016341 - sys_corr_23: 127.54870223615708 - sys_corr_24: -50.37510391283475 - sys_corr_25: -42.005821764617 - sys_corr_26: 0.23485033596089577 - sys_corr_27: 61.15016736226701 - sys_corr_28: -34.03355725522398 - sys_corr_29: -1.4293039605483882 - sys_corr_30: -10.823512281722286 - sys_corr_31: 2.003381071633641 - sys_corr_32: -0.9826353936201521 - sys_corr_33: -0.8896934747958477 - sys_corr_34: -8.209148327051121 - sys_corr_35: -1.154657687833708 - sys_corr_36: -3.673431816300167 - sys_corr_37: 0.34233626649383697 - sys_corr_38: -1.6591213198103227 - sys_corr_39: -2.0591420341956113 - sys_corr_40: 0.30262187416380043 - sys_corr_41: -0.8044964791361947 - sys_corr_42: 0.16232438351405154 - sys_corr_43: 1.3017073393674408 - sys_corr_44: 0.8431431486994363 - sys_corr_45: -1.2316490601526628 - sys_corr_46: -0.22898708986608074 - sys_corr_47: 1.5476839338978792 - sys_corr_48: -3.763629120860727 - sys_corr_49: 1.3252400952124475 - sys_corr_50: 3.545402921814687 - sys_corr_51: -6.48173817638453 - sys_corr_52: 2.671140446745343 - sys_corr_53: -0.2962733233532484 - sys_corr_54: -0.7742022494843632 - sys_corr_55: 0.34556463553069605 - sys_corr_56: 1.4244738004479203 - sys_corr_57: -0.4124411859177722 - sys_corr_58: 0.6548378052544629 - sys_corr_59: 0.4067078374610101 - sys_corr_60: -0.15790089401856106 - sys_corr_61: -1.5084696445140502 - sys_corr_62: -0.3251251652773914 - sys_corr_63: 0.2870228435485119 - sys_corr_64: 0.533197627284521 - sys_corr_65: 0.197439093365936 - sys_corr_66: 0.26292120102681504 - sys_corr_67: 0.36967508222853823 - sys_corr_68: 0.030113374669961227 - sys_corr_69: -0.778789343095026 - sys_corr_70: 1.8399342014722058 - sys_corr_71: 0.07310268055532476 - sys_corr_72: 0.5090374706891461 - sys_corr_73: -0.29660070577380837 - sys_corr_74: -0.7414555723542964 - sys_corr_75: 0.7744963594723687 - sys_corr_76: -1.4538318115628137 - sys_corr_77: -0.8880278890299668 - sys_corr_78: -1.2023858155735239 - sys_corr_79: -0.05839652174562454 - sys_corr_80: 0.16266605338118356 - sys_corr_81: 0.5763044206584178 - sys_corr_82: -0.136836692796752 - sys_corr_83: -0.16107232032972837 - sys_corr_84: 1.7177740709776406 - sys_corr_85: 0.6093578961321967 - sys_corr_86: 0.04555092139858031 - sys_corr_87: 1.3632591131764629 - sys_corr_88: 0.3519040934857862 - sys_corr_89: -0.4031774438481611 - sys_corr_90: -0.6663138866672774 - sys_corr_91: -0.669016704407603 - sys_corr_92: 0.5421933249775381 - sys_corr_93: 0.10330545034454307 - sys_corr_94: 0.18509385369275985 - sys_corr_95: 0.09858212232819943 - sys_corr_96: 0.07535356176419325 - sys_corr_97: -0.607426958854226 - sys_corr_98: -0.19986281751970797 - sys_corr_99: 0.07531847784502538 - sys_corr_100: 0.05111382313222098 - sys_corr_101: 0.42574408337032366 - sys_corr_102: 0.9984104064540618 - sys_corr_103: 0.0407009722129825 - sys_corr_104: -0.06847252734244845 - sys_corr_105: -0.027436296311071428 - sys_corr_106: 0.01655980490558876 - sys_corr_107: -0.13336389495016013 - sys_corr_108: 0.7850283328351677 - sys_corr_109: -1.5164519628846458 - sys_corr_110: -0.37805734439548355 - sys_corr_111: -0.4205178605281974 - sys_corr_112: -0.15193458864171436 - sys_corr_113: 0.22026704641393297 - sys_corr_114: -0.0013060530456134704 - sys_corr_115: 0.06626308722728287 - sys_corr_116: -0.04749238547893269 - sys_corr_117: -0.015289910747447906 - sys_corr_118: -0.04722451932321857 - sys_corr_119: 0.0007341302288526538 - sys_corr_120: 0.016043999682561226 - sys_corr_121: -0.0015839860981967135 - sys_corr_122: -0.019367058322225336 - sys_corr_123: -0.01612064621380015 - sys_corr_124: -0.004241412924424132 - sys_corr_125: 0.004430499400920047 - sys_corr_126: -0.008579072006090344 - sys_corr_127: -0.18533525549304394 - sys_corr_128: 0.20903032646710198 - sys_corr_129: 0.2801098271404163 - sys_corr_130: -0.007742505436201925 - sys_corr_131: -0.004206933416079904 - sys_corr_132: -0.0003530125589281783 + luminosity: 4.82058892e+03 +- sys_corr_1: 1.41299659e+03 + sys_corr_2: 2.55327615e+03 + sys_corr_3: -1.81792903e+03 + sys_corr_4: 2.04944182e+01 + sys_corr_5: 1.32358677e+03 + sys_corr_6: 3.62190424e+02 + sys_corr_7: -2.77141756e+02 + sys_corr_8: -1.79925945e+02 + sys_corr_9: -1.13115335e+02 + sys_corr_10: -4.34144313e+01 + sys_corr_11: 1.27913027e+02 + sys_corr_12: 1.71076520e+02 + sys_corr_13: -8.74721064e+01 + sys_corr_14: 1.54193037e+02 + sys_corr_15: 5.73378223e-01 + sys_corr_16: -1.13951623e+02 + sys_corr_17: -1.23638412e+02 + sys_corr_18: 1.05735227e+02 + sys_corr_19: -1.31784522e+02 + sys_corr_20: 9.02774994e+01 + sys_corr_21: -9.98334850e+02 + sys_corr_22: 8.67038640e+01 + sys_corr_23: 1.27548702e+02 + sys_corr_24: -5.03751039e+01 + sys_corr_25: -4.20058218e+01 + sys_corr_26: 2.34850336e-01 + sys_corr_27: 6.11501674e+01 + sys_corr_28: -3.40335573e+01 + sys_corr_29: -1.42930396e+00 + sys_corr_30: -1.08235123e+01 + sys_corr_31: 2.00338107e+00 + sys_corr_32: -9.82635394e-01 + sys_corr_33: -8.89693475e-01 + sys_corr_34: -8.20914833e+00 + sys_corr_35: -1.15465769e+00 + sys_corr_36: -3.67343182e+00 + sys_corr_37: 3.42336266e-01 + sys_corr_38: -1.65912132e+00 + sys_corr_39: -2.05914203e+00 + sys_corr_40: 3.02621874e-01 + sys_corr_41: -8.04496479e-01 + sys_corr_42: 1.62324384e-01 + sys_corr_43: 1.30170734e+00 + sys_corr_44: 8.43143149e-01 + sys_corr_45: -1.23164906e+00 + sys_corr_46: -2.28987090e-01 + sys_corr_47: 1.54768393e+00 + sys_corr_48: -3.76362912e+00 + sys_corr_49: 1.32524010e+00 + sys_corr_50: 3.54540292e+00 + sys_corr_51: -6.48173818e+00 + sys_corr_52: 2.67114045e+00 + sys_corr_53: -2.96273323e-01 + sys_corr_54: -7.74202249e-01 + sys_corr_55: 3.45564636e-01 + sys_corr_56: 1.42447380e+00 + sys_corr_57: -4.12441186e-01 + sys_corr_58: 6.54837805e-01 + sys_corr_59: 4.06707837e-01 + sys_corr_60: -1.57900894e-01 + sys_corr_61: -1.50846964e+00 + sys_corr_62: -3.25125165e-01 + sys_corr_63: 2.87022844e-01 + sys_corr_64: 5.33197627e-01 + sys_corr_65: 1.97439093e-01 + sys_corr_66: 2.62921201e-01 + sys_corr_67: 3.69675082e-01 + sys_corr_68: 3.01133747e-02 + sys_corr_69: -7.78789343e-01 + sys_corr_70: 1.83993420e+00 + sys_corr_71: 7.31026806e-02 + sys_corr_72: 5.09037471e-01 + sys_corr_73: -2.96600706e-01 + sys_corr_74: -7.41455572e-01 + sys_corr_75: 7.74496359e-01 + sys_corr_76: -1.45383181e+00 + sys_corr_77: -8.88027889e-01 + sys_corr_78: -1.20238582e+00 + sys_corr_79: -5.83965217e-02 + sys_corr_80: 1.62666053e-01 + sys_corr_81: 5.76304421e-01 + sys_corr_82: -1.36836693e-01 + sys_corr_83: -1.61072320e-01 + sys_corr_84: 1.71777407e+00 + sys_corr_85: 6.09357896e-01 + sys_corr_86: 4.55509214e-02 + sys_corr_87: 1.36325911e+00 + sys_corr_88: 3.51904093e-01 + sys_corr_89: -4.03177444e-01 + sys_corr_90: -6.66313887e-01 + sys_corr_91: -6.69016704e-01 + sys_corr_92: 5.42193325e-01 + sys_corr_93: 1.03305450e-01 + sys_corr_94: 1.85093854e-01 + sys_corr_95: 9.85821223e-02 + sys_corr_96: 7.53535618e-02 + sys_corr_97: -6.07426959e-01 + sys_corr_98: -1.99862818e-01 + sys_corr_99: 7.53184778e-02 + sys_corr_100: 5.11138231e-02 + sys_corr_101: 4.25744083e-01 + sys_corr_102: 9.98410406e-01 + sys_corr_103: 4.07009722e-02 + sys_corr_104: -6.84725273e-02 + sys_corr_105: -2.74362963e-02 + sys_corr_106: 1.65598049e-02 + sys_corr_107: -1.33363895e-01 + sys_corr_108: 7.85028333e-01 + sys_corr_109: -1.51645196e+00 + sys_corr_110: -3.78057344e-01 + sys_corr_111: -4.20517861e-01 + sys_corr_112: -1.51934589e-01 + sys_corr_113: 2.20267046e-01 + sys_corr_114: -1.30605305e-03 + sys_corr_115: 6.62630872e-02 + sys_corr_116: -4.74923855e-02 + sys_corr_117: -1.52899107e-02 + sys_corr_118: -4.72245193e-02 + sys_corr_119: 7.34130229e-04 + sys_corr_120: 1.60439997e-02 + sys_corr_121: -1.58398610e-03 + sys_corr_122: -1.93670583e-02 + sys_corr_123: -1.61206462e-02 + sys_corr_124: -4.24141292e-03 + sys_corr_125: 4.43049940e-03 + sys_corr_126: -8.57907201e-03 + sys_corr_127: -1.85335255e-01 + sys_corr_128: 2.09030326e-01 + sys_corr_129: 2.80109827e-01 + sys_corr_130: -7.74250544e-03 + sys_corr_131: -4.20693342e-03 + sys_corr_132: -3.53012559e-04 stat: 0.0 - luminosity: 4328.561886 -- sys_corr_1: 738.5714365611204 - sys_corr_2: 1977.125575206497 - sys_corr_3: -2447.239521114386 - sys_corr_4: -613.368265933482 - sys_corr_5: 1227.0699103990548 - sys_corr_6: 272.60622083630113 - sys_corr_7: -322.2163392407157 - sys_corr_8: -288.845129261501 - sys_corr_9: -187.12931783575158 - sys_corr_10: -91.73860680332166 - sys_corr_11: -63.91304436685516 - sys_corr_12: 207.38895091521067 - sys_corr_13: -347.02558320388624 - sys_corr_14: -252.33048208415622 - sys_corr_15: 194.0026396098006 - sys_corr_16: -272.31753263096954 - sys_corr_17: -64.2880524177086 - sys_corr_18: 299.20217371987275 - sys_corr_19: 547.5995168019192 - sys_corr_20: -668.6570725499338 - sys_corr_21: 401.63268328426716 - sys_corr_22: 59.23683985605291 - sys_corr_23: 128.85354281192218 - sys_corr_24: -37.05396438989607 - sys_corr_25: 4.962288347834962 - sys_corr_26: 14.613406351853866 - sys_corr_27: 52.37571490621033 - sys_corr_28: -0.8302472646477691 - sys_corr_29: -0.7486648635976799 - sys_corr_30: -12.395303699261905 - sys_corr_31: 0.6956265248777381 - sys_corr_32: -1.471887113813499 - sys_corr_33: -0.4565502262085744 - sys_corr_34: 0.19879515174075812 - sys_corr_35: -1.0524319099051807 - sys_corr_36: -1.6611604716960344 - sys_corr_37: 0.7571231419915995 - sys_corr_38: 0.28930123541666525 - sys_corr_39: -0.4758462425672375 - sys_corr_40: 0.1387534172012497 - sys_corr_41: 0.5515458582581989 - sys_corr_42: 0.2940309905226599 - sys_corr_43: -0.6186884425848813 - sys_corr_44: -0.7478357779669141 - sys_corr_45: -0.6129288342924948 - sys_corr_46: -0.4148243013835964 - sys_corr_47: 2.028628578691532 - sys_corr_48: -2.1755918068262 - sys_corr_49: 1.3177098996004644 - sys_corr_50: 1.6790592366088453 - sys_corr_51: -1.795986254335606 - sys_corr_52: 1.6272617694828557 - sys_corr_53: -0.5909531301110218 - sys_corr_54: -0.6728925045853984 - sys_corr_55: -0.1413874099063642 - sys_corr_56: 0.49819696231801425 - sys_corr_57: 0.742490608214502 - sys_corr_58: -0.02922888265850996 - sys_corr_59: -0.3210770149881749 - sys_corr_60: -0.1885481791301872 - sys_corr_61: -0.5363207830364687 - sys_corr_62: -0.5107766623533411 - sys_corr_63: -0.753072739246393 - sys_corr_64: 0.20313636193126267 - sys_corr_65: -0.34855978107432806 - sys_corr_66: -0.49625477705731474 - sys_corr_67: -0.08832044624667729 - sys_corr_68: 1.115884200804148 - sys_corr_69: 0.6480168052410961 - sys_corr_70: -0.91832787810738 - sys_corr_71: -0.12607404180244777 - sys_corr_72: 0.2995607771540093 - sys_corr_73: -0.2729315428676457 - sys_corr_74: 0.44408568953171396 - sys_corr_75: 0.585139354533265 - sys_corr_76: 0.5937188365198669 - sys_corr_77: 0.18121039159933208 - sys_corr_78: -0.20745239425078016 - sys_corr_79: -0.28072980474792303 - sys_corr_80: 0.1389517725888779 - sys_corr_81: -0.9856567729964636 - sys_corr_82: 0.4467300744848274 - sys_corr_83: 0.15234897014187185 - sys_corr_84: 1.2287751041786161 - sys_corr_85: -0.7826100423839855 - sys_corr_86: 0.02091779300545284 - sys_corr_87: 0.6301877572481063 - sys_corr_88: 0.3028925195901791 - sys_corr_89: -0.009680117541601342 - sys_corr_90: -0.06125822493310416 - sys_corr_91: 1.0072146660332648 - sys_corr_92: 0.13412048946986113 - sys_corr_93: 0.011064553941619057 - sys_corr_94: 0.0270852276679752 - sys_corr_95: 0.20144888683755863 - sys_corr_96: 0.05538057602554755 - sys_corr_97: -0.39097119280620113 - sys_corr_98: -0.15867785296182055 - sys_corr_99: -0.17829592294838734 - sys_corr_100: -0.029235872019788712 - sys_corr_101: 0.12482215416726489 - sys_corr_102: 0.07577363600486851 - sys_corr_103: -0.018466170014231592 - sys_corr_104: 0.02121173549187856 - sys_corr_105: -0.07587049103688019 - sys_corr_106: -0.09280173813383538 - sys_corr_107: -0.3257872944523601 - sys_corr_108: 0.1871338239698378 - sys_corr_109: 0.8509281885452227 - sys_corr_110: 0.045805331216738854 - sys_corr_111: 0.20470744600201227 - sys_corr_112: -0.8376672649380066 - sys_corr_113: -0.3107838825121424 - sys_corr_114: -0.0007258524154138598 - sys_corr_115: 0.16801183011767515 - sys_corr_116: -0.020992941266876654 - sys_corr_117: -0.009505822210047001 - sys_corr_118: 0.013309779901618682 - sys_corr_119: -0.0002712715824287855 - sys_corr_120: -0.0046273016456108325 - sys_corr_121: -0.0017506771019471477 - sys_corr_122: -0.006331048141636502 - sys_corr_123: -0.007677557783145239 - sys_corr_124: 0.01938945034987995 - sys_corr_125: 0.00921280645308451 - sys_corr_126: -0.007144977584705452 - sys_corr_127: 0.11305813544421633 - sys_corr_128: -0.008667271605211212 - sys_corr_129: 0.02418176668647812 - sys_corr_130: -0.005017489764143473 - sys_corr_131: 0.007719829053231343 - sys_corr_132: -0.007270149823568277 + luminosity: 4.32856189e+03 +- sys_corr_1: 7.38571437e+02 + sys_corr_2: 1.97712558e+03 + sys_corr_3: -2.44723952e+03 + sys_corr_4: -6.13368266e+02 + sys_corr_5: 1.22706991e+03 + sys_corr_6: 2.72606221e+02 + sys_corr_7: -3.22216339e+02 + sys_corr_8: -2.88845129e+02 + sys_corr_9: -1.87129318e+02 + sys_corr_10: -9.17386068e+01 + sys_corr_11: -6.39130444e+01 + sys_corr_12: 2.07388951e+02 + sys_corr_13: -3.47025583e+02 + sys_corr_14: -2.52330482e+02 + sys_corr_15: 1.94002640e+02 + sys_corr_16: -2.72317533e+02 + sys_corr_17: -6.42880524e+01 + sys_corr_18: 2.99202174e+02 + sys_corr_19: 5.47599517e+02 + sys_corr_20: -6.68657073e+02 + sys_corr_21: 4.01632683e+02 + sys_corr_22: 5.92368399e+01 + sys_corr_23: 1.28853543e+02 + sys_corr_24: -3.70539644e+01 + sys_corr_25: 4.96228835e+00 + sys_corr_26: 1.46134064e+01 + sys_corr_27: 5.23757149e+01 + sys_corr_28: -8.30247265e-01 + sys_corr_29: -7.48664864e-01 + sys_corr_30: -1.23953037e+01 + sys_corr_31: 6.95626525e-01 + sys_corr_32: -1.47188711e+00 + sys_corr_33: -4.56550226e-01 + sys_corr_34: 1.98795152e-01 + sys_corr_35: -1.05243191e+00 + sys_corr_36: -1.66116047e+00 + sys_corr_37: 7.57123142e-01 + sys_corr_38: 2.89301235e-01 + sys_corr_39: -4.75846243e-01 + sys_corr_40: 1.38753417e-01 + sys_corr_41: 5.51545858e-01 + sys_corr_42: 2.94030991e-01 + sys_corr_43: -6.18688443e-01 + sys_corr_44: -7.47835778e-01 + sys_corr_45: -6.12928834e-01 + sys_corr_46: -4.14824301e-01 + sys_corr_47: 2.02862858e+00 + sys_corr_48: -2.17559181e+00 + sys_corr_49: 1.31770990e+00 + sys_corr_50: 1.67905924e+00 + sys_corr_51: -1.79598625e+00 + sys_corr_52: 1.62726177e+00 + sys_corr_53: -5.90953130e-01 + sys_corr_54: -6.72892505e-01 + sys_corr_55: -1.41387410e-01 + sys_corr_56: 4.98196962e-01 + sys_corr_57: 7.42490608e-01 + sys_corr_58: -2.92288827e-02 + sys_corr_59: -3.21077015e-01 + sys_corr_60: -1.88548179e-01 + sys_corr_61: -5.36320783e-01 + sys_corr_62: -5.10776662e-01 + sys_corr_63: -7.53072739e-01 + sys_corr_64: 2.03136362e-01 + sys_corr_65: -3.48559781e-01 + sys_corr_66: -4.96254777e-01 + sys_corr_67: -8.83204462e-02 + sys_corr_68: 1.11588420e+00 + sys_corr_69: 6.48016805e-01 + sys_corr_70: -9.18327878e-01 + sys_corr_71: -1.26074042e-01 + sys_corr_72: 2.99560777e-01 + sys_corr_73: -2.72931543e-01 + sys_corr_74: 4.44085690e-01 + sys_corr_75: 5.85139355e-01 + sys_corr_76: 5.93718837e-01 + sys_corr_77: 1.81210392e-01 + sys_corr_78: -2.07452394e-01 + sys_corr_79: -2.80729805e-01 + sys_corr_80: 1.38951773e-01 + sys_corr_81: -9.85656773e-01 + sys_corr_82: 4.46730074e-01 + sys_corr_83: 1.52348970e-01 + sys_corr_84: 1.22877510e+00 + sys_corr_85: -7.82610042e-01 + sys_corr_86: 2.09177930e-02 + sys_corr_87: 6.30187757e-01 + sys_corr_88: 3.02892520e-01 + sys_corr_89: -9.68011754e-03 + sys_corr_90: -6.12582249e-02 + sys_corr_91: 1.00721467e+00 + sys_corr_92: 1.34120489e-01 + sys_corr_93: 1.10645539e-02 + sys_corr_94: 2.70852277e-02 + sys_corr_95: 2.01448887e-01 + sys_corr_96: 5.53805760e-02 + sys_corr_97: -3.90971193e-01 + sys_corr_98: -1.58677853e-01 + sys_corr_99: -1.78295923e-01 + sys_corr_100: -2.92358720e-02 + sys_corr_101: 1.24822154e-01 + sys_corr_102: 7.57736360e-02 + sys_corr_103: -1.84661700e-02 + sys_corr_104: 2.12117355e-02 + sys_corr_105: -7.58704910e-02 + sys_corr_106: -9.28017381e-02 + sys_corr_107: -3.25787294e-01 + sys_corr_108: 1.87133824e-01 + sys_corr_109: 8.50928189e-01 + sys_corr_110: 4.58053312e-02 + sys_corr_111: 2.04707446e-01 + sys_corr_112: -8.37667265e-01 + sys_corr_113: -3.10783883e-01 + sys_corr_114: -7.25852415e-04 + sys_corr_115: 1.68011830e-01 + sys_corr_116: -2.09929413e-02 + sys_corr_117: -9.50582221e-03 + sys_corr_118: 1.33097799e-02 + sys_corr_119: -2.71271582e-04 + sys_corr_120: -4.62730165e-03 + sys_corr_121: -1.75067710e-03 + sys_corr_122: -6.33104814e-03 + sys_corr_123: -7.67755778e-03 + sys_corr_124: 1.93894503e-02 + sys_corr_125: 9.21280645e-03 + sys_corr_126: -7.14497758e-03 + sys_corr_127: 1.13058135e-01 + sys_corr_128: -8.66727161e-03 + sys_corr_129: 2.41817667e-02 + sys_corr_130: -5.01748976e-03 + sys_corr_131: 7.71982905e-03 + sys_corr_132: -7.27014982e-03 stat: 0.0 - luminosity: 3916.504636 -- sys_corr_1: 90.96090936370635 - sys_corr_2: 1271.6514770533051 - sys_corr_3: -2591.228447840672 - sys_corr_4: -1104.9589842316907 - sys_corr_5: 290.34007214564923 - sys_corr_6: 138.06176670653457 - sys_corr_7: -50.65529566241421 - sys_corr_8: -118.38135730787626 - sys_corr_9: -134.94736553239596 - sys_corr_10: -78.07204160179246 - sys_corr_11: -85.73884849367418 - sys_corr_12: 42.5447521700409 - sys_corr_13: -54.041366467021 - sys_corr_14: -78.05211010611691 - sys_corr_15: 92.9537875035129 - sys_corr_16: -34.775072049198954 - sys_corr_17: -167.33179693224767 - sys_corr_18: -35.70474750103967 - sys_corr_19: 46.16097564351018 - sys_corr_20: 997.632676447703 - sys_corr_21: 374.65131215006073 - sys_corr_22: -99.72889179892482 - sys_corr_23: 287.2769687331497 - sys_corr_24: 33.46986547988653 - sys_corr_25: 42.50189343785344 - sys_corr_26: 8.89887494150562 - sys_corr_27: 63.98094544851964 - sys_corr_28: 2.4701079295122987 - sys_corr_29: -7.906244432742265 - sys_corr_30: -8.505763293663467 - sys_corr_31: -12.045157682303463 - sys_corr_32: -0.39874283487015105 - sys_corr_33: -1.5185745055584436 - sys_corr_34: 2.6004431956752585 - sys_corr_35: -0.7966762084571705 - sys_corr_36: 1.9431129073234723 - sys_corr_37: 2.2618533679317885 - sys_corr_38: 0.4990150299051308 - sys_corr_39: -1.1184640242948445 - sys_corr_40: 1.38453386402282 - sys_corr_41: -1.8520659161300856 - sys_corr_42: -0.4297332181473648 - sys_corr_43: 1.0026415372882935 - sys_corr_44: 1.8450146915936174 - sys_corr_45: 0.06946727107631097 - sys_corr_46: 0.7339426629621447 - sys_corr_47: 1.4628928365441103 - sys_corr_48: 0.13173386815614033 - sys_corr_49: 2.4392925030682364 - sys_corr_50: -1.219233737152249 - sys_corr_51: 2.1713287899043663 - sys_corr_52: -0.43236967333275295 - sys_corr_53: -0.6227589564080441 - sys_corr_54: 0.7830188371540805 - sys_corr_55: 0.2652910124913734 - sys_corr_56: 0.7613894152968022 - sys_corr_57: -0.22695622912638264 - sys_corr_58: 0.24395605424677363 - sys_corr_59: -1.144950000334796 - sys_corr_60: 0.179536918954473 - sys_corr_61: 0.9268234075369637 - sys_corr_62: 0.3769282259593324 - sys_corr_63: -0.12148561781117062 - sys_corr_64: -0.1640627685274318 - sys_corr_65: -0.22344177179109456 - sys_corr_66: 0.49983930333237137 - sys_corr_67: 0.6063899730551177 - sys_corr_68: 0.9694816974082254 - sys_corr_69: -0.001691147687264042 - sys_corr_70: -0.22801652754116858 - sys_corr_71: 0.5108860968712227 - sys_corr_72: -0.934660348448781 - sys_corr_73: 0.20903596381751915 - sys_corr_74: 0.5001331043928251 - sys_corr_75: 0.3661379595122068 - sys_corr_76: 0.15370453555195954 - sys_corr_77: -0.12081293519408272 - sys_corr_78: -0.3845997698068791 - sys_corr_79: 0.4045552433676921 - sys_corr_80: -0.41518194930486624 - sys_corr_81: -0.8561075655258796 - sys_corr_82: -0.10944913615803871 - sys_corr_83: 0.42670768132477555 - sys_corr_84: 0.40393083781834016 - sys_corr_85: 0.2473752575546494 - sys_corr_86: 0.5173563798535287 - sys_corr_87: 0.1266360129411164 - sys_corr_88: 0.4722012777922943 - sys_corr_89: -0.17130181563307562 - sys_corr_90: 1.7922133881961415 - sys_corr_91: -0.6142130458991419 - sys_corr_92: 0.0970366587773626 - sys_corr_93: 0.003239352896238798 - sys_corr_94: -0.027804543494763034 - sys_corr_95: 0.15491731582453666 - sys_corr_96: 0.06358217604286927 - sys_corr_97: -0.30839283525947225 - sys_corr_98: -0.26743561178850056 - sys_corr_99: -0.21325584053740013 - sys_corr_100: 0.2590343162172858 - sys_corr_101: 0.5343623293212842 - sys_corr_102: -0.08283786900795266 - sys_corr_103: 0.12520103648167383 - sys_corr_104: 0.3695259405952802 - sys_corr_105: 0.3454496086549782 - sys_corr_106: 0.08127150608365734 - sys_corr_107: -0.023774115552351472 - sys_corr_108: 0.056588430019078644 - sys_corr_109: -0.06670938011615574 - sys_corr_110: 0.10783208773466348 - sys_corr_111: 0.12029765609018882 - sys_corr_112: 1.0093296752188914 - sys_corr_113: -1.1431933730281603 - sys_corr_114: 0.0008583864691608882 - sys_corr_115: 0.280939063679499 - sys_corr_116: -0.02617658634333602 - sys_corr_117: -0.010016901866452658 - sys_corr_118: 0.18468680555241757 - sys_corr_119: -0.0014287869750877718 - sys_corr_120: 0.004723070211590926 - sys_corr_121: -0.0009659011318389697 - sys_corr_122: -0.014373792224161302 - sys_corr_123: -0.008058197452569667 - sys_corr_124: 0.02455778935074206 - sys_corr_125: 0.0035603025307040597 - sys_corr_126: -0.008310486520418305 - sys_corr_127: 0.1868064348165564 - sys_corr_128: -0.06192046750381216 - sys_corr_129: -0.16529915291342265 - sys_corr_130: -0.006492809658358619 - sys_corr_131: -0.002951658348310236 - sys_corr_132: 0.06148117131634285 + luminosity: 3.91650464e+03 +- sys_corr_1: 9.09609094e+01 + sys_corr_2: 1.27165148e+03 + sys_corr_3: -2.59122845e+03 + sys_corr_4: -1.10495898e+03 + sys_corr_5: 2.90340072e+02 + sys_corr_6: 1.38061767e+02 + sys_corr_7: -5.06552957e+01 + sys_corr_8: -1.18381357e+02 + sys_corr_9: -1.34947366e+02 + sys_corr_10: -7.80720416e+01 + sys_corr_11: -8.57388485e+01 + sys_corr_12: 4.25447522e+01 + sys_corr_13: -5.40413665e+01 + sys_corr_14: -7.80521101e+01 + sys_corr_15: 9.29537875e+01 + sys_corr_16: -3.47750720e+01 + sys_corr_17: -1.67331797e+02 + sys_corr_18: -3.57047475e+01 + sys_corr_19: 4.61609756e+01 + sys_corr_20: 9.97632676e+02 + sys_corr_21: 3.74651312e+02 + sys_corr_22: -9.97288918e+01 + sys_corr_23: 2.87276969e+02 + sys_corr_24: 3.34698655e+01 + sys_corr_25: 4.25018934e+01 + sys_corr_26: 8.89887494e+00 + sys_corr_27: 6.39809454e+01 + sys_corr_28: 2.47010793e+00 + sys_corr_29: -7.90624443e+00 + sys_corr_30: -8.50576329e+00 + sys_corr_31: -1.20451577e+01 + sys_corr_32: -3.98742835e-01 + sys_corr_33: -1.51857451e+00 + sys_corr_34: 2.60044320e+00 + sys_corr_35: -7.96676208e-01 + sys_corr_36: 1.94311291e+00 + sys_corr_37: 2.26185337e+00 + sys_corr_38: 4.99015030e-01 + sys_corr_39: -1.11846402e+00 + sys_corr_40: 1.38453386e+00 + sys_corr_41: -1.85206592e+00 + sys_corr_42: -4.29733218e-01 + sys_corr_43: 1.00264154e+00 + sys_corr_44: 1.84501469e+00 + sys_corr_45: 6.94672711e-02 + sys_corr_46: 7.33942663e-01 + sys_corr_47: 1.46289284e+00 + sys_corr_48: 1.31733868e-01 + sys_corr_49: 2.43929250e+00 + sys_corr_50: -1.21923374e+00 + sys_corr_51: 2.17132879e+00 + sys_corr_52: -4.32369673e-01 + sys_corr_53: -6.22758956e-01 + sys_corr_54: 7.83018837e-01 + sys_corr_55: 2.65291012e-01 + sys_corr_56: 7.61389415e-01 + sys_corr_57: -2.26956229e-01 + sys_corr_58: 2.43956054e-01 + sys_corr_59: -1.14495000e+00 + sys_corr_60: 1.79536919e-01 + sys_corr_61: 9.26823408e-01 + sys_corr_62: 3.76928226e-01 + sys_corr_63: -1.21485618e-01 + sys_corr_64: -1.64062769e-01 + sys_corr_65: -2.23441772e-01 + sys_corr_66: 4.99839303e-01 + sys_corr_67: 6.06389973e-01 + sys_corr_68: 9.69481697e-01 + sys_corr_69: -1.69114769e-03 + sys_corr_70: -2.28016528e-01 + sys_corr_71: 5.10886097e-01 + sys_corr_72: -9.34660348e-01 + sys_corr_73: 2.09035964e-01 + sys_corr_74: 5.00133104e-01 + sys_corr_75: 3.66137960e-01 + sys_corr_76: 1.53704536e-01 + sys_corr_77: -1.20812935e-01 + sys_corr_78: -3.84599770e-01 + sys_corr_79: 4.04555243e-01 + sys_corr_80: -4.15181949e-01 + sys_corr_81: -8.56107566e-01 + sys_corr_82: -1.09449136e-01 + sys_corr_83: 4.26707681e-01 + sys_corr_84: 4.03930838e-01 + sys_corr_85: 2.47375258e-01 + sys_corr_86: 5.17356380e-01 + sys_corr_87: 1.26636013e-01 + sys_corr_88: 4.72201278e-01 + sys_corr_89: -1.71301816e-01 + sys_corr_90: 1.79221339e+00 + sys_corr_91: -6.14213046e-01 + sys_corr_92: 9.70366588e-02 + sys_corr_93: 3.23935290e-03 + sys_corr_94: -2.78045435e-02 + sys_corr_95: 1.54917316e-01 + sys_corr_96: 6.35821760e-02 + sys_corr_97: -3.08392835e-01 + sys_corr_98: -2.67435612e-01 + sys_corr_99: -2.13255841e-01 + sys_corr_100: 2.59034316e-01 + sys_corr_101: 5.34362329e-01 + sys_corr_102: -8.28378690e-02 + sys_corr_103: 1.25201036e-01 + sys_corr_104: 3.69525941e-01 + sys_corr_105: 3.45449609e-01 + sys_corr_106: 8.12715061e-02 + sys_corr_107: -2.37741156e-02 + sys_corr_108: 5.65884300e-02 + sys_corr_109: -6.67093801e-02 + sys_corr_110: 1.07832088e-01 + sys_corr_111: 1.20297656e-01 + sys_corr_112: 1.00932968e+00 + sys_corr_113: -1.14319337e+00 + sys_corr_114: 8.58386469e-04 + sys_corr_115: 2.80939064e-01 + sys_corr_116: -2.61765863e-02 + sys_corr_117: -1.00169019e-02 + sys_corr_118: 1.84686806e-01 + sys_corr_119: -1.42878698e-03 + sys_corr_120: 4.72307021e-03 + sys_corr_121: -9.65901132e-04 + sys_corr_122: -1.43737922e-02 + sys_corr_123: -8.05819745e-03 + sys_corr_124: 2.45577894e-02 + sys_corr_125: 3.56030253e-03 + sys_corr_126: -8.31048652e-03 + sys_corr_127: 1.86806435e-01 + sys_corr_128: -6.19204675e-02 + sys_corr_129: -1.65299153e-01 + sys_corr_130: -6.49280966e-03 + sys_corr_131: -2.95165835e-03 + sys_corr_132: 6.14811713e-02 stat: 0.0 - luminosity: 3380.8851340000006 -- sys_corr_1: -247.09793346124215 - sys_corr_2: 752.4180707580545 - sys_corr_3: -2465.702471547062 - sys_corr_4: -1054.0549305478523 - sys_corr_5: -435.3260891902798 - sys_corr_6: -20.25037323631202 - sys_corr_7: 4.892215800139832 - sys_corr_8: -31.49440824350797 - sys_corr_9: -66.06416644860477 - sys_corr_10: -14.147361058324886 - sys_corr_11: -11.444964710883571 - sys_corr_12: -39.916573088709725 - sys_corr_13: 25.113467450343737 - sys_corr_14: -42.268828259541266 - sys_corr_15: -11.753706963882264 - sys_corr_16: 0.5015814591643335 - sys_corr_17: -58.159927938377116 - sys_corr_18: -36.54479304518205 - sys_corr_19: 77.08941916031951 - sys_corr_20: 99.42284711408156 - sys_corr_21: -59.70980177482814 - sys_corr_22: 136.45423378392348 - sys_corr_23: -900.3013968564858 - sys_corr_24: -36.97954486632595 - sys_corr_25: 158.56393490339505 - sys_corr_26: 4.923410771709154 - sys_corr_27: 39.39196587912186 - sys_corr_28: 22.224162932574636 - sys_corr_29: -6.36579800969683 - sys_corr_30: 9.863634854868645 - sys_corr_31: -4.405400652030622 - sys_corr_32: 0.7460235968075443 - sys_corr_33: 0.12692713399714609 - sys_corr_34: 2.600343380283613 - sys_corr_35: 4.066429936402068 - sys_corr_36: 1.1002615129171633 - sys_corr_37: 2.3285299705578 - sys_corr_38: -0.006080513888589591 - sys_corr_39: -1.6389929438099835 - sys_corr_40: 2.5134650978405504 - sys_corr_41: 0.856087805535068 - sys_corr_42: -1.9174896111336843 - sys_corr_43: 0.3770859702553199 - sys_corr_44: 3.52292489299441 - sys_corr_45: 1.0008971001696523 - sys_corr_46: 0.0014420458937031042 - sys_corr_47: -4.0866759155693595 - sys_corr_48: 8.181856525906886 - sys_corr_49: -0.5685504421118993 - sys_corr_50: -6.309658135986445 - sys_corr_51: 7.633830474840943 - sys_corr_52: -5.952776392434917 - sys_corr_53: -0.25238030766696423 - sys_corr_54: 0.9361089105770811 - sys_corr_55: -1.758647725379794 - sys_corr_56: -0.34944762779836286 - sys_corr_57: 0.001477780958855468 - sys_corr_58: -0.4330613599051673 - sys_corr_59: -1.071912439608271 - sys_corr_60: -0.16924291822017415 - sys_corr_61: -0.41180323046192274 - sys_corr_62: -0.3480721598414174 - sys_corr_63: 0.08898346433724239 - sys_corr_64: -0.4252812144971449 - sys_corr_65: 0.2888635562781181 - sys_corr_66: 0.4015746164251428 - sys_corr_67: 0.8618750396767916 - sys_corr_68: -0.0913982280855247 - sys_corr_69: -0.027842457139231034 - sys_corr_70: -0.07834711927409584 - sys_corr_71: 1.1028227685319136 - sys_corr_72: -0.8781842559033615 - sys_corr_73: -0.1436782235038199 - sys_corr_74: 0.22752868096589698 - sys_corr_75: -0.22156978790878887 - sys_corr_76: -0.11283816732649621 - sys_corr_77: -0.46197659636474514 - sys_corr_78: 0.5231531592328514 - sys_corr_79: 0.29772258994371514 - sys_corr_80: 0.13859316371702443 - sys_corr_81: 0.9635074599229935 - sys_corr_82: -0.2034835485948169 - sys_corr_83: -2.0003212974061926 - sys_corr_84: -0.8388013725811256 - sys_corr_85: 0.9057084920722404 - sys_corr_86: -0.6848891967217624 - sys_corr_87: -1.4976217124068731 - sys_corr_88: 1.0041811448917477 - sys_corr_89: 0.2585541978283389 - sys_corr_90: -0.5447336103468209 - sys_corr_91: -0.4485884712506885 - sys_corr_92: -0.08193659732088078 - sys_corr_93: -0.08307564442608761 - sys_corr_94: -0.11687388181563797 - sys_corr_95: 0.005229745557037994 - sys_corr_96: -0.047860512899946195 - sys_corr_97: 0.18481152477874235 - sys_corr_98: -0.028657431602877953 - sys_corr_99: 0.007718621682538274 - sys_corr_100: 0.12541179610514158 - sys_corr_101: 0.313308744113766 - sys_corr_102: -0.2263889111129473 - sys_corr_103: -0.1019703191472529 - sys_corr_104: 0.35198407965870876 - sys_corr_105: 0.1316232098859349 - sys_corr_106: 0.05394055276495072 - sys_corr_107: -0.2391370167936561 - sys_corr_108: 0.14488570576755092 - sys_corr_109: 0.3554859028506907 - sys_corr_110: 0.23410415590459582 - sys_corr_111: 0.1021126834715316 - sys_corr_112: -0.32054989567809267 - sys_corr_113: 1.0386994260719584 - sys_corr_114: 0.002723639168264883 - sys_corr_115: -0.16140166907873962 - sys_corr_116: 0.028670206275304554 - sys_corr_117: -0.0224351435691832 - sys_corr_118: 0.2505657217394865 - sys_corr_119: -0.004162462594538487 - sys_corr_120: 0.015795334890678518 - sys_corr_121: 0.0033017092972028343 - sys_corr_122: 0.024312147425681024 - sys_corr_123: 0.016569280395393224 - sys_corr_124: -0.1521600428333676 - sys_corr_125: -0.02486067570292113 - sys_corr_126: 0.002188169488783483 - sys_corr_127: 0.16598305217565018 - sys_corr_128: -0.14415494858926114 - sys_corr_129: -1.343990313340998 - sys_corr_130: 0.013540202137692841 - sys_corr_131: -0.019560259920656926 - sys_corr_132: 0.07890580615944823 + luminosity: 3.38088513e+03 +- sys_corr_1: -2.47097933e+02 + sys_corr_2: 7.52418071e+02 + sys_corr_3: -2.46570247e+03 + sys_corr_4: -1.05405493e+03 + sys_corr_5: -4.35326089e+02 + sys_corr_6: -2.02503732e+01 + sys_corr_7: 4.89221580e+00 + sys_corr_8: -3.14944082e+01 + sys_corr_9: -6.60641664e+01 + sys_corr_10: -1.41473611e+01 + sys_corr_11: -1.14449647e+01 + sys_corr_12: -3.99165731e+01 + sys_corr_13: 2.51134675e+01 + sys_corr_14: -4.22688283e+01 + sys_corr_15: -1.17537070e+01 + sys_corr_16: 5.01581459e-01 + sys_corr_17: -5.81599279e+01 + sys_corr_18: -3.65447930e+01 + sys_corr_19: 7.70894192e+01 + sys_corr_20: 9.94228471e+01 + sys_corr_21: -5.97098018e+01 + sys_corr_22: 1.36454234e+02 + sys_corr_23: -9.00301397e+02 + sys_corr_24: -3.69795449e+01 + sys_corr_25: 1.58563935e+02 + sys_corr_26: 4.92341077e+00 + sys_corr_27: 3.93919659e+01 + sys_corr_28: 2.22241629e+01 + sys_corr_29: -6.36579801e+00 + sys_corr_30: 9.86363485e+00 + sys_corr_31: -4.40540065e+00 + sys_corr_32: 7.46023597e-01 + sys_corr_33: 1.26927134e-01 + sys_corr_34: 2.60034338e+00 + sys_corr_35: 4.06642994e+00 + sys_corr_36: 1.10026151e+00 + sys_corr_37: 2.32852997e+00 + sys_corr_38: -6.08051389e-03 + sys_corr_39: -1.63899294e+00 + sys_corr_40: 2.51346510e+00 + sys_corr_41: 8.56087806e-01 + sys_corr_42: -1.91748961e+00 + sys_corr_43: 3.77085970e-01 + sys_corr_44: 3.52292489e+00 + sys_corr_45: 1.00089710e+00 + sys_corr_46: 1.44204589e-03 + sys_corr_47: -4.08667592e+00 + sys_corr_48: 8.18185653e+00 + sys_corr_49: -5.68550442e-01 + sys_corr_50: -6.30965814e+00 + sys_corr_51: 7.63383047e+00 + sys_corr_52: -5.95277639e+00 + sys_corr_53: -2.52380308e-01 + sys_corr_54: 9.36108911e-01 + sys_corr_55: -1.75864773e+00 + sys_corr_56: -3.49447628e-01 + sys_corr_57: 1.47778096e-03 + sys_corr_58: -4.33061360e-01 + sys_corr_59: -1.07191244e+00 + sys_corr_60: -1.69242918e-01 + sys_corr_61: -4.11803230e-01 + sys_corr_62: -3.48072160e-01 + sys_corr_63: 8.89834643e-02 + sys_corr_64: -4.25281214e-01 + sys_corr_65: 2.88863556e-01 + sys_corr_66: 4.01574616e-01 + sys_corr_67: 8.61875040e-01 + sys_corr_68: -9.13982281e-02 + sys_corr_69: -2.78424571e-02 + sys_corr_70: -7.83471193e-02 + sys_corr_71: 1.10282277e+00 + sys_corr_72: -8.78184256e-01 + sys_corr_73: -1.43678224e-01 + sys_corr_74: 2.27528681e-01 + sys_corr_75: -2.21569788e-01 + sys_corr_76: -1.12838167e-01 + sys_corr_77: -4.61976596e-01 + sys_corr_78: 5.23153159e-01 + sys_corr_79: 2.97722590e-01 + sys_corr_80: 1.38593164e-01 + sys_corr_81: 9.63507460e-01 + sys_corr_82: -2.03483549e-01 + sys_corr_83: -2.00032130e+00 + sys_corr_84: -8.38801373e-01 + sys_corr_85: 9.05708492e-01 + sys_corr_86: -6.84889197e-01 + sys_corr_87: -1.49762171e+00 + sys_corr_88: 1.00418114e+00 + sys_corr_89: 2.58554198e-01 + sys_corr_90: -5.44733610e-01 + sys_corr_91: -4.48588471e-01 + sys_corr_92: -8.19365973e-02 + sys_corr_93: -8.30756444e-02 + sys_corr_94: -1.16873882e-01 + sys_corr_95: 5.22974556e-03 + sys_corr_96: -4.78605129e-02 + sys_corr_97: 1.84811525e-01 + sys_corr_98: -2.86574316e-02 + sys_corr_99: 7.71862168e-03 + sys_corr_100: 1.25411796e-01 + sys_corr_101: 3.13308744e-01 + sys_corr_102: -2.26388911e-01 + sys_corr_103: -1.01970319e-01 + sys_corr_104: 3.51984080e-01 + sys_corr_105: 1.31623210e-01 + sys_corr_106: 5.39405528e-02 + sys_corr_107: -2.39137017e-01 + sys_corr_108: 1.44885706e-01 + sys_corr_109: 3.55485903e-01 + sys_corr_110: 2.34104156e-01 + sys_corr_111: 1.02112683e-01 + sys_corr_112: -3.20549896e-01 + sys_corr_113: 1.03869943e+00 + sys_corr_114: 2.72363917e-03 + sys_corr_115: -1.61401669e-01 + sys_corr_116: 2.86702063e-02 + sys_corr_117: -2.24351436e-02 + sys_corr_118: 2.50565722e-01 + sys_corr_119: -4.16246259e-03 + sys_corr_120: 1.57953349e-02 + sys_corr_121: 3.30170930e-03 + sys_corr_122: 2.43121474e-02 + sys_corr_123: 1.65692804e-02 + sys_corr_124: -1.52160043e-01 + sys_corr_125: -2.48606757e-02 + sys_corr_126: 2.18816949e-03 + sys_corr_127: 1.65983052e-01 + sys_corr_128: -1.44154949e-01 + sys_corr_129: -1.34399031e+00 + sys_corr_130: 1.35402021e-02 + sys_corr_131: -1.95602599e-02 + sys_corr_132: 7.89058062e-02 stat: 0.0 - luminosity: 2891.338186 -- sys_corr_1: -472.82581493003534 - sys_corr_2: 465.11650967003834 - sys_corr_3: -2212.3609454421326 - sys_corr_4: -877.3582767349913 - sys_corr_5: -849.7495757471527 - sys_corr_6: -163.70805838109425 - sys_corr_7: 59.324199666513756 - sys_corr_8: 55.837131321336486 - sys_corr_9: 17.02037284637397 - sys_corr_10: 54.359518380299065 - sys_corr_11: 19.21541907898472 - sys_corr_12: -80.14374872435384 - sys_corr_13: 121.24691050786726 - sys_corr_14: -13.719011644317652 - sys_corr_15: -38.06481325329056 - sys_corr_16: 63.138279022990346 - sys_corr_17: 16.997852405858115 - sys_corr_18: -30.110722696465857 - sys_corr_19: -21.38122921036502 - sys_corr_20: -88.37293817605861 - sys_corr_21: -44.16110555012663 - sys_corr_22: -13.794937972298765 - sys_corr_23: 6.722200715512625 - sys_corr_24: 157.95370218985772 - sys_corr_25: -539.7945588518173 - sys_corr_26: 27.696457800434217 - sys_corr_27: -421.5655748886257 - sys_corr_28: -13.316251550969113 - sys_corr_29: -37.53017107351789 - sys_corr_30: 32.34103903579326 - sys_corr_31: 24.516154911098713 - sys_corr_32: -0.16899245136425506 - sys_corr_33: 0.14642933973583622 - sys_corr_34: -2.3829217949088592 - sys_corr_35: -2.9064191528818903 - sys_corr_36: -1.907455659404163 - sys_corr_37: 1.5651276457854408 - sys_corr_38: -0.2878902371861005 - sys_corr_39: -0.022004449946141664 - sys_corr_40: 0.955306655451652 - sys_corr_41: -0.02902884287709767 - sys_corr_42: -0.0994166099973316 - sys_corr_43: 1.5377655441771783 - sys_corr_44: -3.1900668559978356 - sys_corr_45: -1.6094858053498093 - sys_corr_46: 0.9024243388649877 - sys_corr_47: -0.688706541844652 - sys_corr_48: -4.6287415249644255 - sys_corr_49: -0.6271415158875712 - sys_corr_50: 9.00010417725632 - sys_corr_51: -4.807112176991246 - sys_corr_52: 2.915162404619165 - sys_corr_53: 0.8671172476727234 - sys_corr_54: -2.343898425547066 - sys_corr_55: -1.015050401238063 - sys_corr_56: -1.1129862114829507 - sys_corr_57: 0.858685115419107 - sys_corr_58: 1.3518093417278074 - sys_corr_59: 2.22013372887488 - sys_corr_60: -0.6308368005045303 - sys_corr_61: 1.0850695521479428 - sys_corr_62: 0.41325583954381234 - sys_corr_63: -0.11964354376730042 - sys_corr_64: 1.7171146905484664 - sys_corr_65: -0.17749819555113508 - sys_corr_66: -0.2571045299402765 - sys_corr_67: -2.5735680708408695 - sys_corr_68: -0.09095579312491547 - sys_corr_69: 0.7493446526482508 - sys_corr_70: -1.1797154351428023 - sys_corr_71: -1.6415673627663379 - sys_corr_72: 0.6761394087319644 - sys_corr_73: -0.19033204597304762 - sys_corr_74: 0.854241899884532 - sys_corr_75: -0.932282553999811 - sys_corr_76: -1.0996864382207598 - sys_corr_77: 0.641652917252663 - sys_corr_78: 0.3444620964673235 - sys_corr_79: 0.05232957305182364 - sys_corr_80: -0.7733912114791216 - sys_corr_81: -0.5803560615858957 - sys_corr_82: 0.31367649532155367 - sys_corr_83: 1.6109921628732695 - sys_corr_84: -0.03631291187436649 - sys_corr_85: 0.8842188219698398 - sys_corr_86: 1.5270355808764875 - sys_corr_87: 0.38148842460046006 - sys_corr_88: -3.5663721351367075 - sys_corr_89: 0.6795292587557227 - sys_corr_90: -1.6064644530976235 - sys_corr_91: -0.6555404677486795 - sys_corr_92: 0.3936669680896034 - sys_corr_93: -0.07436395903221958 - sys_corr_94: -0.40142234598090554 - sys_corr_95: -0.44270705613751854 - sys_corr_96: -0.00830977307502281 - sys_corr_97: -0.18795339275665204 - sys_corr_98: -0.1135272106344768 - sys_corr_99: -0.22717032680264504 - sys_corr_100: 0.20261216675675284 - sys_corr_101: 0.251985448908384 - sys_corr_102: -0.3403384766071158 - sys_corr_103: 0.09522865010183953 - sys_corr_104: 0.4070589702852885 - sys_corr_105: -0.01744563523804769 - sys_corr_106: -0.026042742095087047 - sys_corr_107: -0.2675460819432257 - sys_corr_108: 0.5514907918896181 - sys_corr_109: -0.1849463665019556 - sys_corr_110: 0.12770134430072622 - sys_corr_111: 0.015370075421835128 - sys_corr_112: 0.5294475786595804 - sys_corr_113: 0.044380959450581375 - sys_corr_114: 0.002679720888097822 - sys_corr_115: -1.2997854464608691 - sys_corr_116: 0.09896102558666163 - sys_corr_117: -0.001337940002192345 - sys_corr_118: -0.13977659469762926 - sys_corr_119: -0.0023128358100686594 - sys_corr_120: -0.00021276758891800843 - sys_corr_121: 0.004332918445741029 - sys_corr_122: 0.013464594276677185 - sys_corr_123: -0.00672700786487906 - sys_corr_124: 0.09189764054178634 - sys_corr_125: -0.008605992870531941 - sys_corr_126: 0.0021586829952937947 - sys_corr_127: 0.06421894367831522 - sys_corr_128: -0.04821879441151111 - sys_corr_129: 1.7270341262700128 - sys_corr_130: -0.028800562266877484 - sys_corr_131: 0.005225200164407747 - sys_corr_132: 0.07598790340946918 + luminosity: 2.89133819e+03 +- sys_corr_1: -4.72825815e+02 + sys_corr_2: 4.65116510e+02 + sys_corr_3: -2.21236095e+03 + sys_corr_4: -8.77358277e+02 + sys_corr_5: -8.49749576e+02 + sys_corr_6: -1.63708058e+02 + sys_corr_7: 5.93241997e+01 + sys_corr_8: 5.58371313e+01 + sys_corr_9: 1.70203728e+01 + sys_corr_10: 5.43595184e+01 + sys_corr_11: 1.92154191e+01 + sys_corr_12: -8.01437487e+01 + sys_corr_13: 1.21246911e+02 + sys_corr_14: -1.37190116e+01 + sys_corr_15: -3.80648133e+01 + sys_corr_16: 6.31382790e+01 + sys_corr_17: 1.69978524e+01 + sys_corr_18: -3.01107227e+01 + sys_corr_19: -2.13812292e+01 + sys_corr_20: -8.83729382e+01 + sys_corr_21: -4.41611056e+01 + sys_corr_22: -1.37949380e+01 + sys_corr_23: 6.72220072e+00 + sys_corr_24: 1.57953702e+02 + sys_corr_25: -5.39794559e+02 + sys_corr_26: 2.76964578e+01 + sys_corr_27: -4.21565575e+02 + sys_corr_28: -1.33162516e+01 + sys_corr_29: -3.75301711e+01 + sys_corr_30: 3.23410390e+01 + sys_corr_31: 2.45161549e+01 + sys_corr_32: -1.68992451e-01 + sys_corr_33: 1.46429340e-01 + sys_corr_34: -2.38292179e+00 + sys_corr_35: -2.90641915e+00 + sys_corr_36: -1.90745566e+00 + sys_corr_37: 1.56512765e+00 + sys_corr_38: -2.87890237e-01 + sys_corr_39: -2.20044499e-02 + sys_corr_40: 9.55306655e-01 + sys_corr_41: -2.90288429e-02 + sys_corr_42: -9.94166100e-02 + sys_corr_43: 1.53776554e+00 + sys_corr_44: -3.19006686e+00 + sys_corr_45: -1.60948581e+00 + sys_corr_46: 9.02424339e-01 + sys_corr_47: -6.88706542e-01 + sys_corr_48: -4.62874152e+00 + sys_corr_49: -6.27141516e-01 + sys_corr_50: 9.00010418e+00 + sys_corr_51: -4.80711218e+00 + sys_corr_52: 2.91516240e+00 + sys_corr_53: 8.67117248e-01 + sys_corr_54: -2.34389843e+00 + sys_corr_55: -1.01505040e+00 + sys_corr_56: -1.11298621e+00 + sys_corr_57: 8.58685115e-01 + sys_corr_58: 1.35180934e+00 + sys_corr_59: 2.22013373e+00 + sys_corr_60: -6.30836801e-01 + sys_corr_61: 1.08506955e+00 + sys_corr_62: 4.13255840e-01 + sys_corr_63: -1.19643544e-01 + sys_corr_64: 1.71711469e+00 + sys_corr_65: -1.77498196e-01 + sys_corr_66: -2.57104530e-01 + sys_corr_67: -2.57356807e+00 + sys_corr_68: -9.09557931e-02 + sys_corr_69: 7.49344653e-01 + sys_corr_70: -1.17971544e+00 + sys_corr_71: -1.64156736e+00 + sys_corr_72: 6.76139409e-01 + sys_corr_73: -1.90332046e-01 + sys_corr_74: 8.54241900e-01 + sys_corr_75: -9.32282554e-01 + sys_corr_76: -1.09968644e+00 + sys_corr_77: 6.41652917e-01 + sys_corr_78: 3.44462096e-01 + sys_corr_79: 5.23295731e-02 + sys_corr_80: -7.73391211e-01 + sys_corr_81: -5.80356062e-01 + sys_corr_82: 3.13676495e-01 + sys_corr_83: 1.61099216e+00 + sys_corr_84: -3.63129119e-02 + sys_corr_85: 8.84218822e-01 + sys_corr_86: 1.52703558e+00 + sys_corr_87: 3.81488425e-01 + sys_corr_88: -3.56637214e+00 + sys_corr_89: 6.79529259e-01 + sys_corr_90: -1.60646445e+00 + sys_corr_91: -6.55540468e-01 + sys_corr_92: 3.93666968e-01 + sys_corr_93: -7.43639590e-02 + sys_corr_94: -4.01422346e-01 + sys_corr_95: -4.42707056e-01 + sys_corr_96: -8.30977308e-03 + sys_corr_97: -1.87953393e-01 + sys_corr_98: -1.13527211e-01 + sys_corr_99: -2.27170327e-01 + sys_corr_100: 2.02612167e-01 + sys_corr_101: 2.51985449e-01 + sys_corr_102: -3.40338477e-01 + sys_corr_103: 9.52286501e-02 + sys_corr_104: 4.07058970e-01 + sys_corr_105: -1.74456352e-02 + sys_corr_106: -2.60427421e-02 + sys_corr_107: -2.67546082e-01 + sys_corr_108: 5.51490792e-01 + sys_corr_109: -1.84946367e-01 + sys_corr_110: 1.27701344e-01 + sys_corr_111: 1.53700754e-02 + sys_corr_112: 5.29447579e-01 + sys_corr_113: 4.43809595e-02 + sys_corr_114: 2.67972089e-03 + sys_corr_115: -1.29978545e+00 + sys_corr_116: 9.89610256e-02 + sys_corr_117: -1.33794000e-03 + sys_corr_118: -1.39776595e-01 + sys_corr_119: -2.31283581e-03 + sys_corr_120: -2.12767589e-04 + sys_corr_121: 4.33291845e-03 + sys_corr_122: 1.34645943e-02 + sys_corr_123: -6.72700786e-03 + sys_corr_124: 9.18976405e-02 + sys_corr_125: -8.60599287e-03 + sys_corr_126: 2.15868300e-03 + sys_corr_127: 6.42189437e-02 + sys_corr_128: -4.82187944e-02 + sys_corr_129: 1.72703413e+00 + sys_corr_130: -2.88005623e-02 + sys_corr_131: 5.22520016e-03 + sys_corr_132: 7.59879034e-02 stat: 0.0 - luminosity: 2338.925446 -- sys_corr_1: -653.7111320113015 - sys_corr_2: 266.2418446083594 - sys_corr_3: -1944.7864591746725 - sys_corr_4: -841.7290637093532 - sys_corr_5: -1120.161770602225 - sys_corr_6: -259.7327903526384 - sys_corr_7: 143.91884669536637 - sys_corr_8: 123.65741788812153 - sys_corr_9: 36.504706961138496 - sys_corr_10: 56.223072251904874 - sys_corr_11: 17.56827230477398 - sys_corr_12: -140.09390009642576 - sys_corr_13: 153.6744937820786 - sys_corr_14: 47.122829769812284 - sys_corr_15: -66.46975177367095 - sys_corr_16: 63.4173422792778 - sys_corr_17: 63.086050786189084 - sys_corr_18: -53.41160957150756 - sys_corr_19: -138.77432008469847 - sys_corr_20: -259.08109041077125 - sys_corr_21: -125.26253445947988 - sys_corr_22: -52.042069770208414 - sys_corr_23: 291.83093735699316 - sys_corr_24: 27.14286932313857 - sys_corr_25: 470.4578005195052 - sys_corr_26: -343.0468222118861 - sys_corr_27: -228.70207455878528 - sys_corr_28: -65.60752089775012 - sys_corr_29: -26.35420856373096 - sys_corr_30: 7.2614432862155045 - sys_corr_31: 12.637192897973655 - sys_corr_32: 4.760264682195682 - sys_corr_33: 0.18820931450247771 - sys_corr_34: -0.7597988763027268 - sys_corr_35: -0.00868214707650484 - sys_corr_36: -0.15443801307214441 - sys_corr_37: -0.9414118491904887 - sys_corr_38: 1.0432289627484095 - sys_corr_39: 1.2714701706383174 - sys_corr_40: 0.2594551233402625 - sys_corr_41: -0.53253578642949 - sys_corr_42: 1.3388625323117918 - sys_corr_43: 1.9070770555937948 - sys_corr_44: 0.2444207667729573 - sys_corr_45: 0.03454351009760453 - sys_corr_46: -1.418493728492215 - sys_corr_47: -1.4665138692825415 - sys_corr_48: 0.04814875557780659 - sys_corr_49: -3.4561098872280778 - sys_corr_50: 1.3371472507770952 - sys_corr_51: -0.34378532009720997 - sys_corr_52: -1.041436716970063 - sys_corr_53: 2.0666405085157837 - sys_corr_54: -0.3464003963935354 - sys_corr_55: 2.6736769031424013 - sys_corr_56: -0.6909492135500994 - sys_corr_57: 0.3931315120350559 - sys_corr_58: 0.546737603316126 - sys_corr_59: 2.1784765076072916 - sys_corr_60: -0.22820763582897405 - sys_corr_61: -0.8121418918629633 - sys_corr_62: -0.43025434665198453 - sys_corr_63: 0.6601552022168098 - sys_corr_64: -1.0569982162771199 - sys_corr_65: 0.03960655760333978 - sys_corr_66: -0.5595807082551112 - sys_corr_67: 0.4638389181046661 - sys_corr_68: -1.4283679828888243 - sys_corr_69: 1.0630340370772113 - sys_corr_70: -0.46516409489272376 - sys_corr_71: -0.7271606812066405 - sys_corr_72: 1.9324341946255055 - sys_corr_73: -0.23734799613471158 - sys_corr_74: 0.3990600276157226 - sys_corr_75: 0.0898686202478459 - sys_corr_76: 0.3368837358710272 - sys_corr_77: 0.23210585382818083 - sys_corr_78: -0.12913868849371263 - sys_corr_79: -0.030659748274760038 - sys_corr_80: -0.041445378334819274 - sys_corr_81: 0.5452519210636771 - sys_corr_82: 0.14010865844172032 - sys_corr_83: 1.6148632475942 - sys_corr_84: 0.4726535242870591 - sys_corr_85: -0.15753345367664473 - sys_corr_86: -0.8932151042711293 - sys_corr_87: 0.8365494908545479 - sys_corr_88: 2.7289636451605856 - sys_corr_89: 0.44757608327666254 - sys_corr_90: -1.1173237808582854 - sys_corr_91: -0.8669324793494568 - sys_corr_92: 0.33710443240790117 - sys_corr_93: -0.04713975689019983 - sys_corr_94: -0.4747602962054916 - sys_corr_95: -0.8068518885889456 - sys_corr_96: -0.005524178619238797 - sys_corr_97: 0.12398964140571557 - sys_corr_98: 0.14135108233668917 - sys_corr_99: 0.1449760614079304 - sys_corr_100: 0.21604119828494436 - sys_corr_101: 0.28045242619520333 - sys_corr_102: 0.3028895792351123 - sys_corr_103: -0.11434561744740608 - sys_corr_104: -0.017685612125369527 - sys_corr_105: 0.48519574280505573 - sys_corr_106: 0.32690630970341555 - sys_corr_107: 0.7452150523699532 - sys_corr_108: -0.45585893505750347 - sys_corr_109: 0.8518952505608343 - sys_corr_110: 0.05783857424663734 - sys_corr_111: 0.07636124031195435 - sys_corr_112: 0.13458045666553617 - sys_corr_113: 0.4377706781009813 - sys_corr_114: -0.0006102941556251563 - sys_corr_115: 0.7615476137133635 - sys_corr_116: -0.07860924415006804 - sys_corr_117: -0.0012895021678535417 - sys_corr_118: -1.1896590026776943 - sys_corr_119: -0.00024406140822408047 - sys_corr_120: 0.017159675407594926 - sys_corr_121: -0.006571752938713672 - sys_corr_122: -0.007136155188318941 - sys_corr_123: 0.006335203741666114 - sys_corr_124: 0.01636986938973735 - sys_corr_125: 0.00042131789262279983 - sys_corr_126: -0.0045124053295026905 - sys_corr_127: -0.0954131376633654 - sys_corr_128: -0.18253098029172315 - sys_corr_129: -0.2909419129973213 - sys_corr_130: 0.0051577007007259975 - sys_corr_131: -0.03375009907433 - sys_corr_132: 0.038335680700346556 + luminosity: 2.33892545e+03 +- sys_corr_1: -6.53711132e+02 + sys_corr_2: 2.66241845e+02 + sys_corr_3: -1.94478646e+03 + sys_corr_4: -8.41729064e+02 + sys_corr_5: -1.12016177e+03 + sys_corr_6: -2.59732790e+02 + sys_corr_7: 1.43918847e+02 + sys_corr_8: 1.23657418e+02 + sys_corr_9: 3.65047070e+01 + sys_corr_10: 5.62230723e+01 + sys_corr_11: 1.75682723e+01 + sys_corr_12: -1.40093900e+02 + sys_corr_13: 1.53674494e+02 + sys_corr_14: 4.71228298e+01 + sys_corr_15: -6.64697518e+01 + sys_corr_16: 6.34173423e+01 + sys_corr_17: 6.30860508e+01 + sys_corr_18: -5.34116096e+01 + sys_corr_19: -1.38774320e+02 + sys_corr_20: -2.59081090e+02 + sys_corr_21: -1.25262534e+02 + sys_corr_22: -5.20420698e+01 + sys_corr_23: 2.91830937e+02 + sys_corr_24: 2.71428693e+01 + sys_corr_25: 4.70457801e+02 + sys_corr_26: -3.43046822e+02 + sys_corr_27: -2.28702075e+02 + sys_corr_28: -6.56075209e+01 + sys_corr_29: -2.63542086e+01 + sys_corr_30: 7.26144329e+00 + sys_corr_31: 1.26371929e+01 + sys_corr_32: 4.76026468e+00 + sys_corr_33: 1.88209315e-01 + sys_corr_34: -7.59798876e-01 + sys_corr_35: -8.68214708e-03 + sys_corr_36: -1.54438013e-01 + sys_corr_37: -9.41411849e-01 + sys_corr_38: 1.04322896e+00 + sys_corr_39: 1.27147017e+00 + sys_corr_40: 2.59455123e-01 + sys_corr_41: -5.32535786e-01 + sys_corr_42: 1.33886253e+00 + sys_corr_43: 1.90707706e+00 + sys_corr_44: 2.44420767e-01 + sys_corr_45: 3.45435101e-02 + sys_corr_46: -1.41849373e+00 + sys_corr_47: -1.46651387e+00 + sys_corr_48: 4.81487556e-02 + sys_corr_49: -3.45610989e+00 + sys_corr_50: 1.33714725e+00 + sys_corr_51: -3.43785320e-01 + sys_corr_52: -1.04143672e+00 + sys_corr_53: 2.06664051e+00 + sys_corr_54: -3.46400396e-01 + sys_corr_55: 2.67367690e+00 + sys_corr_56: -6.90949214e-01 + sys_corr_57: 3.93131512e-01 + sys_corr_58: 5.46737603e-01 + sys_corr_59: 2.17847651e+00 + sys_corr_60: -2.28207636e-01 + sys_corr_61: -8.12141892e-01 + sys_corr_62: -4.30254347e-01 + sys_corr_63: 6.60155202e-01 + sys_corr_64: -1.05699822e+00 + sys_corr_65: 3.96065576e-02 + sys_corr_66: -5.59580708e-01 + sys_corr_67: 4.63838918e-01 + sys_corr_68: -1.42836798e+00 + sys_corr_69: 1.06303404e+00 + sys_corr_70: -4.65164095e-01 + sys_corr_71: -7.27160681e-01 + sys_corr_72: 1.93243419e+00 + sys_corr_73: -2.37347996e-01 + sys_corr_74: 3.99060028e-01 + sys_corr_75: 8.98686202e-02 + sys_corr_76: 3.36883736e-01 + sys_corr_77: 2.32105854e-01 + sys_corr_78: -1.29138688e-01 + sys_corr_79: -3.06597483e-02 + sys_corr_80: -4.14453783e-02 + sys_corr_81: 5.45251921e-01 + sys_corr_82: 1.40108658e-01 + sys_corr_83: 1.61486325e+00 + sys_corr_84: 4.72653524e-01 + sys_corr_85: -1.57533454e-01 + sys_corr_86: -8.93215104e-01 + sys_corr_87: 8.36549491e-01 + sys_corr_88: 2.72896365e+00 + sys_corr_89: 4.47576083e-01 + sys_corr_90: -1.11732378e+00 + sys_corr_91: -8.66932479e-01 + sys_corr_92: 3.37104432e-01 + sys_corr_93: -4.71397569e-02 + sys_corr_94: -4.74760296e-01 + sys_corr_95: -8.06851889e-01 + sys_corr_96: -5.52417862e-03 + sys_corr_97: 1.23989641e-01 + sys_corr_98: 1.41351082e-01 + sys_corr_99: 1.44976061e-01 + sys_corr_100: 2.16041198e-01 + sys_corr_101: 2.80452426e-01 + sys_corr_102: 3.02889579e-01 + sys_corr_103: -1.14345617e-01 + sys_corr_104: -1.76856121e-02 + sys_corr_105: 4.85195743e-01 + sys_corr_106: 3.26906310e-01 + sys_corr_107: 7.45215052e-01 + sys_corr_108: -4.55858935e-01 + sys_corr_109: 8.51895251e-01 + sys_corr_110: 5.78385742e-02 + sys_corr_111: 7.63612403e-02 + sys_corr_112: 1.34580457e-01 + sys_corr_113: 4.37770678e-01 + sys_corr_114: -6.10294156e-04 + sys_corr_115: 7.61547614e-01 + sys_corr_116: -7.86092442e-02 + sys_corr_117: -1.28950217e-03 + sys_corr_118: -1.18965900e+00 + sys_corr_119: -2.44061408e-04 + sys_corr_120: 1.71596754e-02 + sys_corr_121: -6.57175294e-03 + sys_corr_122: -7.13615519e-03 + sys_corr_123: 6.33520374e-03 + sys_corr_124: 1.63698694e-02 + sys_corr_125: 4.21317893e-04 + sys_corr_126: -4.51240533e-03 + sys_corr_127: -9.54131377e-02 + sys_corr_128: -1.82530980e-01 + sys_corr_129: -2.90941913e-01 + sys_corr_130: 5.15770070e-03 + sys_corr_131: -3.37500991e-02 + sys_corr_132: 3.83356807e-02 stat: 0.0 - luminosity: 1806.3171280000001 -- sys_corr_1: -755.2133869976954 - sys_corr_2: 102.69073047556422 - sys_corr_3: -1625.5444490488817 - sys_corr_4: -782.9868058640023 - sys_corr_5: -1143.9864383788554 - sys_corr_6: -286.48674621220283 - sys_corr_7: 195.0531846803518 - sys_corr_8: 149.05361585977897 - sys_corr_9: 35.23807786971394 - sys_corr_10: 17.99198097953495 - sys_corr_11: 4.464602511144418 - sys_corr_12: -145.88861179287463 - sys_corr_13: 232.83417636971762 - sys_corr_14: 25.021478951655023 - sys_corr_15: -62.500372595379154 - sys_corr_16: 104.3508961410528 - sys_corr_17: 106.87852291091022 - sys_corr_18: -55.40693215378 - sys_corr_19: -137.0103722853144 - sys_corr_20: -219.31840555516226 - sys_corr_21: -99.77214799546726 - sys_corr_22: -36.128037938186296 - sys_corr_23: 204.23640913512983 - sys_corr_24: -69.36964742975633 - sys_corr_25: -46.60949009385647 - sys_corr_26: 175.68047331740647 - sys_corr_27: 276.33672376767527 - sys_corr_28: 317.5679720871193 - sys_corr_29: 252.228930681591 - sys_corr_30: 35.33328066610364 - sys_corr_31: 49.598645604204854 - sys_corr_32: -3.2270866286511444 - sys_corr_33: 4.91231550154021 - sys_corr_34: -2.8986730105078067 - sys_corr_35: -7.54923439956231 - sys_corr_36: -7.357884195650226 - sys_corr_37: -3.334857616908836 - sys_corr_38: 4.510949703955019 - sys_corr_39: 0.14004456635599508 - sys_corr_40: -0.9594638192123189 - sys_corr_41: 1.7099935261995287 - sys_corr_42: -2.7805513460513 - sys_corr_43: -1.987395159409121 - sys_corr_44: 10.193887174753156 - sys_corr_45: 1.1761816034580388 - sys_corr_46: -6.550705986526216 - sys_corr_47: -13.962404086645746 - sys_corr_48: 29.26487010926597 - sys_corr_49: -11.774971066141136 - sys_corr_50: -20.895430753558706 - sys_corr_51: 28.64975621312137 - sys_corr_52: -15.62546228376545 - sys_corr_53: 0.8771163886103632 - sys_corr_54: 10.63887759119023 - sys_corr_55: -9.917446470394566 - sys_corr_56: -7.118698446404909 - sys_corr_57: -1.3825434490717372 - sys_corr_58: -1.7559944945241033 - sys_corr_59: -2.410296200397204 - sys_corr_60: 0.5018084775329799 - sys_corr_61: 1.285541725475254 - sys_corr_62: 0.44361212622822943 - sys_corr_63: 1.3097490834932994 - sys_corr_64: 1.006847001420594 - sys_corr_65: 1.3580747745259685 - sys_corr_66: 0.41132081620424543 - sys_corr_67: -0.37478834553898405 - sys_corr_68: -2.8220768182365266 - sys_corr_69: 0.7908469057069658 - sys_corr_70: -0.4528143177006363 - sys_corr_71: -0.2840436729518461 - sys_corr_72: -0.7390655917395563 - sys_corr_73: -0.16830191816029838 - sys_corr_74: 0.025677071440906075 - sys_corr_75: 1.6559516457394865 - sys_corr_76: -1.7915019322647938 - sys_corr_77: -0.7661650764147442 - sys_corr_78: 0.5914987353602796 - sys_corr_79: 0.28972564053825167 - sys_corr_80: -0.17965590438214715 - sys_corr_81: -0.06201002092611748 - sys_corr_82: -0.2222788020294066 - sys_corr_83: -0.1953927840212655 - sys_corr_84: 1.4805491843149763 - sys_corr_85: -1.1918465518710435 - sys_corr_86: 1.4417308186165194 - sys_corr_87: -0.15393583445719455 - sys_corr_88: 2.6005976614897963 - sys_corr_89: -0.0006526837687360629 - sys_corr_90: -0.8091889873989976 - sys_corr_91: -1.5350467834543642 - sys_corr_92: -2.4008566798460946 - sys_corr_93: 0.03965488472731036 - sys_corr_94: 0.4585553750929632 - sys_corr_95: 1.8286707450266617 - sys_corr_96: -0.2235635658948023 - sys_corr_97: 1.6627105575735501 - sys_corr_98: 0.7234771950243188 - sys_corr_99: 0.7144307809790229 - sys_corr_100: -0.7635279179610398 - sys_corr_101: -1.146843517145733 - sys_corr_102: 0.09654698997565853 - sys_corr_103: -0.4800857870633633 - sys_corr_104: -1.0726580130496406 - sys_corr_105: -0.30016316043109564 - sys_corr_106: 0.08597249954600229 - sys_corr_107: 0.5774525795735735 - sys_corr_108: -0.5982389762511646 - sys_corr_109: -0.7922505621337151 - sys_corr_110: 0.04447550130728284 - sys_corr_111: -0.9074241334035538 - sys_corr_112: -0.44686798270691114 - sys_corr_113: 0.20732927308641916 - sys_corr_114: -0.00269016880961245 - sys_corr_115: 0.016912528722785227 - sys_corr_116: 0.0006856413612942765 - sys_corr_117: 0.007633390105714668 - sys_corr_118: 1.11624594494896 - sys_corr_119: -0.0016956076474847737 - sys_corr_120: -0.020480002034533422 - sys_corr_121: -0.0020398515507375403 - sys_corr_122: 0.12657479317691053 - sys_corr_123: 0.06832850964311828 - sys_corr_124: -0.018520800864513725 - sys_corr_125: -0.058480444307884086 - sys_corr_126: 0.08383837831171563 - sys_corr_127: 0.08423457794375877 - sys_corr_128: 0.1393059372206636 - sys_corr_129: 0.0811419288873247 - sys_corr_130: 0.09884845531995667 - sys_corr_131: 0.01993916570630555 - sys_corr_132: -0.8527629017321311 + luminosity: 1.80631713e+03 +- sys_corr_1: -7.55213387e+02 + sys_corr_2: 1.02690730e+02 + sys_corr_3: -1.62554445e+03 + sys_corr_4: -7.82986806e+02 + sys_corr_5: -1.14398644e+03 + sys_corr_6: -2.86486746e+02 + sys_corr_7: 1.95053185e+02 + sys_corr_8: 1.49053616e+02 + sys_corr_9: 3.52380779e+01 + sys_corr_10: 1.79919810e+01 + sys_corr_11: 4.46460251e+00 + sys_corr_12: -1.45888612e+02 + sys_corr_13: 2.32834176e+02 + sys_corr_14: 2.50214790e+01 + sys_corr_15: -6.25003726e+01 + sys_corr_16: 1.04350896e+02 + sys_corr_17: 1.06878523e+02 + sys_corr_18: -5.54069322e+01 + sys_corr_19: -1.37010372e+02 + sys_corr_20: -2.19318406e+02 + sys_corr_21: -9.97721480e+01 + sys_corr_22: -3.61280379e+01 + sys_corr_23: 2.04236409e+02 + sys_corr_24: -6.93696474e+01 + sys_corr_25: -4.66094901e+01 + sys_corr_26: 1.75680473e+02 + sys_corr_27: 2.76336724e+02 + sys_corr_28: 3.17567972e+02 + sys_corr_29: 2.52228931e+02 + sys_corr_30: 3.53332807e+01 + sys_corr_31: 4.95986456e+01 + sys_corr_32: -3.22708663e+00 + sys_corr_33: 4.91231550e+00 + sys_corr_34: -2.89867301e+00 + sys_corr_35: -7.54923440e+00 + sys_corr_36: -7.35788420e+00 + sys_corr_37: -3.33485762e+00 + sys_corr_38: 4.51094970e+00 + sys_corr_39: 1.40044566e-01 + sys_corr_40: -9.59463819e-01 + sys_corr_41: 1.70999353e+00 + sys_corr_42: -2.78055135e+00 + sys_corr_43: -1.98739516e+00 + sys_corr_44: 1.01938872e+01 + sys_corr_45: 1.17618160e+00 + sys_corr_46: -6.55070599e+00 + sys_corr_47: -1.39624041e+01 + sys_corr_48: 2.92648701e+01 + sys_corr_49: -1.17749711e+01 + sys_corr_50: -2.08954308e+01 + sys_corr_51: 2.86497562e+01 + sys_corr_52: -1.56254623e+01 + sys_corr_53: 8.77116389e-01 + sys_corr_54: 1.06388776e+01 + sys_corr_55: -9.91744647e+00 + sys_corr_56: -7.11869845e+00 + sys_corr_57: -1.38254345e+00 + sys_corr_58: -1.75599449e+00 + sys_corr_59: -2.41029620e+00 + sys_corr_60: 5.01808478e-01 + sys_corr_61: 1.28554173e+00 + sys_corr_62: 4.43612126e-01 + sys_corr_63: 1.30974908e+00 + sys_corr_64: 1.00684700e+00 + sys_corr_65: 1.35807477e+00 + sys_corr_66: 4.11320816e-01 + sys_corr_67: -3.74788346e-01 + sys_corr_68: -2.82207682e+00 + sys_corr_69: 7.90846906e-01 + sys_corr_70: -4.52814318e-01 + sys_corr_71: -2.84043673e-01 + sys_corr_72: -7.39065592e-01 + sys_corr_73: -1.68301918e-01 + sys_corr_74: 2.56770714e-02 + sys_corr_75: 1.65595165e+00 + sys_corr_76: -1.79150193e+00 + sys_corr_77: -7.66165076e-01 + sys_corr_78: 5.91498735e-01 + sys_corr_79: 2.89725641e-01 + sys_corr_80: -1.79655904e-01 + sys_corr_81: -6.20100209e-02 + sys_corr_82: -2.22278802e-01 + sys_corr_83: -1.95392784e-01 + sys_corr_84: 1.48054918e+00 + sys_corr_85: -1.19184655e+00 + sys_corr_86: 1.44173082e+00 + sys_corr_87: -1.53935834e-01 + sys_corr_88: 2.60059766e+00 + sys_corr_89: -6.52683769e-04 + sys_corr_90: -8.09188987e-01 + sys_corr_91: -1.53504678e+00 + sys_corr_92: -2.40085668e+00 + sys_corr_93: 3.96548847e-02 + sys_corr_94: 4.58555375e-01 + sys_corr_95: 1.82867075e+00 + sys_corr_96: -2.23563566e-01 + sys_corr_97: 1.66271056e+00 + sys_corr_98: 7.23477195e-01 + sys_corr_99: 7.14430781e-01 + sys_corr_100: -7.63527918e-01 + sys_corr_101: -1.14684352e+00 + sys_corr_102: 9.65469900e-02 + sys_corr_103: -4.80085787e-01 + sys_corr_104: -1.07265801e+00 + sys_corr_105: -3.00163160e-01 + sys_corr_106: 8.59724995e-02 + sys_corr_107: 5.77452580e-01 + sys_corr_108: -5.98238976e-01 + sys_corr_109: -7.92250562e-01 + sys_corr_110: 4.44755013e-02 + sys_corr_111: -9.07424133e-01 + sys_corr_112: -4.46867983e-01 + sys_corr_113: 2.07329273e-01 + sys_corr_114: -2.69016881e-03 + sys_corr_115: 1.69125287e-02 + sys_corr_116: 6.85641361e-04 + sys_corr_117: 7.63339011e-03 + sys_corr_118: 1.11624594e+00 + sys_corr_119: -1.69560765e-03 + sys_corr_120: -2.04800020e-02 + sys_corr_121: -2.03985155e-03 + sys_corr_122: 1.26574793e-01 + sys_corr_123: 6.83285096e-02 + sys_corr_124: -1.85208009e-02 + sys_corr_125: -5.84804443e-02 + sys_corr_126: 8.38383783e-02 + sys_corr_127: 8.42345779e-02 + sys_corr_128: 1.39305937e-01 + sys_corr_129: 8.11419289e-02 + sys_corr_130: 9.88484553e-02 + sys_corr_131: 1.99391657e-02 + sys_corr_132: -8.52762902e-01 stat: 0.0 - luminosity: 1255.5539700000002 -- sys_corr_1: -607.4031908537237 - sys_corr_2: -63.28313627288436 - sys_corr_3: -1019.8192299679083 - sys_corr_4: -587.9799405436032 - sys_corr_5: -1087.7413040919887 - sys_corr_6: -259.0404858877358 - sys_corr_7: 247.27102262016555 - sys_corr_8: 133.96612346319327 - sys_corr_9: 38.91330079319037 - sys_corr_10: 4.767848450491068 - sys_corr_11: -13.329036287177487 - sys_corr_12: -170.18900790110717 - sys_corr_13: 227.949665615111 - sys_corr_14: 37.60565676156379 - sys_corr_15: -68.23426618849864 - sys_corr_16: 111.87926536175544 - sys_corr_17: 42.38504473458111 - sys_corr_18: -59.98580620532282 - sys_corr_19: -79.40667840438154 - sys_corr_20: -168.76475267471753 - sys_corr_21: -2.2581998164527297 - sys_corr_22: 101.28154946660716 - sys_corr_23: 117.48010782815801 - sys_corr_24: -162.54519640631548 - sys_corr_25: -136.90983639948416 - sys_corr_26: 106.22287283064905 - sys_corr_27: 348.830186439828 - sys_corr_28: -312.5018339590577 - sys_corr_29: -231.7876467783194 - sys_corr_30: -101.70112852118456 - sys_corr_31: -61.515902671440564 - sys_corr_32: -3.723938978774166 - sys_corr_33: 4.2372290428332455 - sys_corr_34: 5.885760186495606 - sys_corr_35: 11.863769920706584 - sys_corr_36: 15.150924914596807 - sys_corr_37: 3.227077623166972 - sys_corr_38: -2.2040780671628686 - sys_corr_39: 4.222362447302075 - sys_corr_40: 1.2004380973936641 - sys_corr_41: -3.705204295645023 - sys_corr_42: -7.464774420660674 - sys_corr_43: -2.246867688386039 - sys_corr_44: 14.427533414536166 - sys_corr_45: 2.340914078354644 - sys_corr_46: 5.356654259814615 - sys_corr_47: -9.729414622048349 - sys_corr_48: 23.75942344493996 - sys_corr_49: -7.418069395649064 - sys_corr_50: -29.007458266612282 - sys_corr_51: 13.636341879390313 - sys_corr_52: -12.912248402487622 - sys_corr_53: -5.461265805361213 - sys_corr_54: -0.4942372847457907 - sys_corr_55: -1.4114658051046227 - sys_corr_56: 0.5311115217353586 - sys_corr_57: -1.0003983989344358 - sys_corr_58: -0.38394213159135787 - sys_corr_59: 0.40533280109214115 - sys_corr_60: 0.1492324868304696 - sys_corr_61: -1.4861491522328496 - sys_corr_62: -0.652637029302407 - sys_corr_63: -4.2950319346221715 - sys_corr_64: 0.40770072575117033 - sys_corr_65: -0.15976852439274128 - sys_corr_66: 0.3020091494238496 - sys_corr_67: 2.3721212781157273 - sys_corr_68: 1.9815218695605452 - sys_corr_69: -2.4306787708865545 - sys_corr_70: 0.4791525306890546 - sys_corr_71: 2.5162709858295673 - sys_corr_72: -0.2782111584326227 - sys_corr_73: 1.1315860916955174 - sys_corr_74: -1.0940943027631103 - sys_corr_75: -0.14470073064139072 - sys_corr_76: 0.03056848174299233 - sys_corr_77: 1.3103426462101049 - sys_corr_78: -0.767700297487768 - sys_corr_79: -0.1452656691903395 - sys_corr_80: 1.4451441232006463 - sys_corr_81: -0.39721190096631576 - sys_corr_82: -0.3646109241756651 - sys_corr_83: -0.9925524252759912 - sys_corr_84: 0.8910489380119005 - sys_corr_85: -0.5961061768454878 - sys_corr_86: -0.4581365082526326 - sys_corr_87: -0.05026875231856807 - sys_corr_88: -0.2482557973569103 - sys_corr_89: -1.0663261128540453 - sys_corr_90: 0.9518893440098543 - sys_corr_91: -0.30689022179762937 - sys_corr_92: -0.2468344427812121 - sys_corr_93: 0.307532255142796 - sys_corr_94: 0.273786840043358 - sys_corr_95: -1.5909076939241236 - sys_corr_96: 0.10482445544672196 - sys_corr_97: -1.856103813164388 - sys_corr_98: -1.0852881858383072 - sys_corr_99: -1.0365628442745594 - sys_corr_100: 1.4947999724066325 - sys_corr_101: 2.39241243089444 - sys_corr_102: 0.3146623188321893 - sys_corr_103: 0.9246041009776045 - sys_corr_104: 1.417989801854696 - sys_corr_105: 2.1914316499889934 - sys_corr_106: 1.593879328838293 - sys_corr_107: 1.579413165449373 - sys_corr_108: 0.023787755992986968 - sys_corr_109: 0.5146171156683776 - sys_corr_110: -0.571393726462288 - sys_corr_111: -0.3698177113440699 - sys_corr_112: -0.3286542136584849 - sys_corr_113: -0.25808454940619685 - sys_corr_114: -0.005994207269343428 - sys_corr_115: 0.3139520466717766 - sys_corr_116: -0.004325055935505929 - sys_corr_117: 0.02790945492707552 - sys_corr_118: -0.09660556533569989 - sys_corr_119: -0.0037883980742523925 - sys_corr_120: -0.011682981811510474 - sys_corr_121: -0.02713037563537955 - sys_corr_122: -0.1693703906655214 - sys_corr_123: -0.07653308138920457 - sys_corr_124: 0.012831871258140667 - sys_corr_125: 0.05359137123134718 - sys_corr_126: 0.004191471292255263 - sys_corr_127: -0.07415067284107019 - sys_corr_128: -0.6300992989091094 - sys_corr_129: -0.43878374952333926 - sys_corr_130: 0.13881476408606191 - sys_corr_131: -0.019973202262670887 - sys_corr_132: 0.9954363100879424 + luminosity: 1.25555397e+03 +- sys_corr_1: -6.07403191e+02 + sys_corr_2: -6.32831363e+01 + sys_corr_3: -1.01981923e+03 + sys_corr_4: -5.87979941e+02 + sys_corr_5: -1.08774130e+03 + sys_corr_6: -2.59040486e+02 + sys_corr_7: 2.47271023e+02 + sys_corr_8: 1.33966123e+02 + sys_corr_9: 3.89133008e+01 + sys_corr_10: 4.76784845e+00 + sys_corr_11: -1.33290363e+01 + sys_corr_12: -1.70189008e+02 + sys_corr_13: 2.27949666e+02 + sys_corr_14: 3.76056568e+01 + sys_corr_15: -6.82342662e+01 + sys_corr_16: 1.11879265e+02 + sys_corr_17: 4.23850447e+01 + sys_corr_18: -5.99858062e+01 + sys_corr_19: -7.94066784e+01 + sys_corr_20: -1.68764753e+02 + sys_corr_21: -2.25819982e+00 + sys_corr_22: 1.01281549e+02 + sys_corr_23: 1.17480108e+02 + sys_corr_24: -1.62545196e+02 + sys_corr_25: -1.36909836e+02 + sys_corr_26: 1.06222873e+02 + sys_corr_27: 3.48830186e+02 + sys_corr_28: -3.12501834e+02 + sys_corr_29: -2.31787647e+02 + sys_corr_30: -1.01701129e+02 + sys_corr_31: -6.15159027e+01 + sys_corr_32: -3.72393898e+00 + sys_corr_33: 4.23722904e+00 + sys_corr_34: 5.88576019e+00 + sys_corr_35: 1.18637699e+01 + sys_corr_36: 1.51509249e+01 + sys_corr_37: 3.22707762e+00 + sys_corr_38: -2.20407807e+00 + sys_corr_39: 4.22236245e+00 + sys_corr_40: 1.20043810e+00 + sys_corr_41: -3.70520430e+00 + sys_corr_42: -7.46477442e+00 + sys_corr_43: -2.24686769e+00 + sys_corr_44: 1.44275334e+01 + sys_corr_45: 2.34091408e+00 + sys_corr_46: 5.35665426e+00 + sys_corr_47: -9.72941462e+00 + sys_corr_48: 2.37594234e+01 + sys_corr_49: -7.41806940e+00 + sys_corr_50: -2.90074583e+01 + sys_corr_51: 1.36363419e+01 + sys_corr_52: -1.29122484e+01 + sys_corr_53: -5.46126581e+00 + sys_corr_54: -4.94237285e-01 + sys_corr_55: -1.41146581e+00 + sys_corr_56: 5.31111522e-01 + sys_corr_57: -1.00039840e+00 + sys_corr_58: -3.83942132e-01 + sys_corr_59: 4.05332801e-01 + sys_corr_60: 1.49232487e-01 + sys_corr_61: -1.48614915e+00 + sys_corr_62: -6.52637029e-01 + sys_corr_63: -4.29503193e+00 + sys_corr_64: 4.07700726e-01 + sys_corr_65: -1.59768524e-01 + sys_corr_66: 3.02009149e-01 + sys_corr_67: 2.37212128e+00 + sys_corr_68: 1.98152187e+00 + sys_corr_69: -2.43067877e+00 + sys_corr_70: 4.79152531e-01 + sys_corr_71: 2.51627099e+00 + sys_corr_72: -2.78211158e-01 + sys_corr_73: 1.13158609e+00 + sys_corr_74: -1.09409430e+00 + sys_corr_75: -1.44700731e-01 + sys_corr_76: 3.05684817e-02 + sys_corr_77: 1.31034265e+00 + sys_corr_78: -7.67700297e-01 + sys_corr_79: -1.45265669e-01 + sys_corr_80: 1.44514412e+00 + sys_corr_81: -3.97211901e-01 + sys_corr_82: -3.64610924e-01 + sys_corr_83: -9.92552425e-01 + sys_corr_84: 8.91048938e-01 + sys_corr_85: -5.96106177e-01 + sys_corr_86: -4.58136508e-01 + sys_corr_87: -5.02687523e-02 + sys_corr_88: -2.48255797e-01 + sys_corr_89: -1.06632611e+00 + sys_corr_90: 9.51889344e-01 + sys_corr_91: -3.06890222e-01 + sys_corr_92: -2.46834443e-01 + sys_corr_93: 3.07532255e-01 + sys_corr_94: 2.73786840e-01 + sys_corr_95: -1.59090769e+00 + sys_corr_96: 1.04824455e-01 + sys_corr_97: -1.85610381e+00 + sys_corr_98: -1.08528819e+00 + sys_corr_99: -1.03656284e+00 + sys_corr_100: 1.49479997e+00 + sys_corr_101: 2.39241243e+00 + sys_corr_102: 3.14662319e-01 + sys_corr_103: 9.24604101e-01 + sys_corr_104: 1.41798980e+00 + sys_corr_105: 2.19143165e+00 + sys_corr_106: 1.59387933e+00 + sys_corr_107: 1.57941317e+00 + sys_corr_108: 2.37877560e-02 + sys_corr_109: 5.14617116e-01 + sys_corr_110: -5.71393726e-01 + sys_corr_111: -3.69817711e-01 + sys_corr_112: -3.28654214e-01 + sys_corr_113: -2.58084549e-01 + sys_corr_114: -5.99420727e-03 + sys_corr_115: 3.13952047e-01 + sys_corr_116: -4.32505594e-03 + sys_corr_117: 2.79094549e-02 + sys_corr_118: -9.66055653e-02 + sys_corr_119: -3.78839807e-03 + sys_corr_120: -1.16829818e-02 + sys_corr_121: -2.71303756e-02 + sys_corr_122: -1.69370391e-01 + sys_corr_123: -7.65330814e-02 + sys_corr_124: 1.28318713e-02 + sys_corr_125: 5.35913712e-02 + sys_corr_126: 4.19147129e-03 + sys_corr_127: -7.41506728e-02 + sys_corr_128: -6.30099299e-01 + sys_corr_129: -4.38783750e-01 + sys_corr_130: 1.38814764e-01 + sys_corr_131: -1.99732023e-02 + sys_corr_132: 9.95436310e-01 stat: 0.0 - luminosity: 735.9526680000001 -- sys_corr_1: -235.30545363675927 - sys_corr_2: -34.01470246070936 - sys_corr_3: -353.75987336682203 - sys_corr_4: -208.79751243754686 - sys_corr_5: -403.2673749786953 - sys_corr_6: -92.29018946618018 - sys_corr_7: 101.21713190826597 - sys_corr_8: 53.56656733738466 - sys_corr_9: 13.147279313042418 - sys_corr_10: -3.590120747872358 - sys_corr_11: -10.5044418547054 - sys_corr_12: -57.712482712616186 - sys_corr_13: 77.29261847108081 - sys_corr_14: 19.416502176367384 - sys_corr_15: -32.09156678459388 - sys_corr_16: 40.40473678289829 - sys_corr_17: 14.303984444595601 - sys_corr_18: -20.791527083527043 - sys_corr_19: 0.5012641075112607 - sys_corr_20: -31.18787857309955 - sys_corr_21: 3.1997791997716734 - sys_corr_22: 35.8161200150391 - sys_corr_23: 7.313118341152444 - sys_corr_24: -48.24609141453415 - sys_corr_25: -4.607879682849445 - sys_corr_26: 32.53070150734877 - sys_corr_27: 114.51295696888832 - sys_corr_28: -0.8907158840837492 - sys_corr_29: 16.073235633567958 - sys_corr_30: 29.851498882822757 - sys_corr_31: 12.660213480485586 - sys_corr_32: -8.12790733088142 - sys_corr_33: -13.032245583698913 - sys_corr_34: -17.3394917824371 - sys_corr_35: -13.234588348882937 - sys_corr_36: -28.857957455442943 - sys_corr_37: -12.20855442349241 - sys_corr_38: -11.148769962417903 - sys_corr_39: -11.825238085295718 - sys_corr_40: -10.230145431497569 - sys_corr_41: 9.757460763386796 - sys_corr_42: 32.63609088745279 - sys_corr_43: 4.930216387418731 - sys_corr_44: -78.81415723204044 - sys_corr_45: -8.797199005414171 - sys_corr_46: 5.106740635819698 - sys_corr_47: 84.36468275737194 - sys_corr_48: -169.67841923663178 - sys_corr_49: 65.57306045502811 - sys_corr_50: 140.51346333260403 - sys_corr_51: -151.27010973686293 - sys_corr_52: 105.4019607871556 - sys_corr_53: 8.026334680012182 - sys_corr_54: -32.1560715138509 - sys_corr_55: 34.830755067936835 - sys_corr_56: 27.006397930728934 - sys_corr_57: 7.82413926032532 - sys_corr_58: 4.703305548993658 - sys_corr_59: 0.42224211313451454 - sys_corr_60: -0.3544165569358296 - sys_corr_61: -7.295293190753624 - sys_corr_62: 1.429534122667088 - sys_corr_63: 1.1334845609101218 - sys_corr_64: -4.015817870147113 - sys_corr_65: -1.82821523027021 - sys_corr_66: -5.674679167970507 - sys_corr_67: 1.1070437932379218 - sys_corr_68: 7.3172525954255425 - sys_corr_69: 1.9069798032494645 - sys_corr_70: 5.435138849242496 - sys_corr_71: -1.670552157279644 - sys_corr_72: 4.049264697578993 - sys_corr_73: 0.2616362770961757 - sys_corr_74: -1.9013764097076984 - sys_corr_75: -2.765762111794656 - sys_corr_76: -1.2882926497862415 - sys_corr_77: 1.9579420222979724 - sys_corr_78: -3.1125256649577646 - sys_corr_79: -1.288806688085245 - sys_corr_80: 3.327430828214145 - sys_corr_81: -2.3065993488148058 - sys_corr_82: 2.245887844484712 - sys_corr_83: -0.16964529383847854 - sys_corr_84: 1.2911527799837177 - sys_corr_85: -0.030379412950968996 - sys_corr_86: -1.4974543460408234 - sys_corr_87: 2.430206696746695 - sys_corr_88: -5.6824483048106345 - sys_corr_89: 3.436268375854682 - sys_corr_90: 1.8103199220199129 - sys_corr_91: 0.5232460245625029 - sys_corr_92: 3.604302017287854 - sys_corr_93: 0.46857142882802016 - sys_corr_94: 0.9448789569132813 - sys_corr_95: -2.930393539187459 - sys_corr_96: 0.04087308207545292 - sys_corr_97: -3.250884634615344 - sys_corr_98: -1.4324416228157737 - sys_corr_99: -2.029545813202179 - sys_corr_100: 2.2938557748192463 - sys_corr_101: 3.202851251895578 - sys_corr_102: -2.756229826924821 - sys_corr_103: 1.9324108854136988 - sys_corr_104: 3.4302793153160245 - sys_corr_105: 2.176375758287973 - sys_corr_106: 1.62620571999616 - sys_corr_107: 1.5594338913406889 - sys_corr_108: 1.0173551436492887 - sys_corr_109: 0.8445025290109994 - sys_corr_110: -1.2681580375841055 - sys_corr_111: 1.0118766561670172 - sys_corr_112: 0.3078049335122275 - sys_corr_113: -0.010334836790895197 - sys_corr_114: -0.005358410585107142 - sys_corr_115: 0.23297128085885058 - sys_corr_116: -0.007760876237567135 - sys_corr_117: 0.0478402868439468 - sys_corr_118: -0.7127008993246734 - sys_corr_119: 0.004102120203386358 - sys_corr_120: -0.05841316416287808 - sys_corr_121: 0.02067461605740249 - sys_corr_122: -0.40608882238442423 - sys_corr_123: -0.27705650018236 - sys_corr_124: 0.08541224376595953 - sys_corr_125: 0.22699201738460856 - sys_corr_126: -0.36811379311972237 - sys_corr_127: -0.2971860355154436 - sys_corr_128: 0.590162132048831 - sys_corr_129: 0.5311452422811201 - sys_corr_130: -0.6280134483077539 - sys_corr_131: 0.10555633621762471 - sys_corr_132: -0.21203547439506265 + luminosity: 7.35952668e+02 +- sys_corr_1: -2.35305454e+02 + sys_corr_2: -3.40147025e+01 + sys_corr_3: -3.53759873e+02 + sys_corr_4: -2.08797512e+02 + sys_corr_5: -4.03267375e+02 + sys_corr_6: -9.22901895e+01 + sys_corr_7: 1.01217132e+02 + sys_corr_8: 5.35665673e+01 + sys_corr_9: 1.31472793e+01 + sys_corr_10: -3.59012075e+00 + sys_corr_11: -1.05044419e+01 + sys_corr_12: -5.77124827e+01 + sys_corr_13: 7.72926185e+01 + sys_corr_14: 1.94165022e+01 + sys_corr_15: -3.20915668e+01 + sys_corr_16: 4.04047368e+01 + sys_corr_17: 1.43039844e+01 + sys_corr_18: -2.07915271e+01 + sys_corr_19: 5.01264108e-01 + sys_corr_20: -3.11878786e+01 + sys_corr_21: 3.19977920e+00 + sys_corr_22: 3.58161200e+01 + sys_corr_23: 7.31311834e+00 + sys_corr_24: -4.82460914e+01 + sys_corr_25: -4.60787968e+00 + sys_corr_26: 3.25307015e+01 + sys_corr_27: 1.14512957e+02 + sys_corr_28: -8.90715884e-01 + sys_corr_29: 1.60732356e+01 + sys_corr_30: 2.98514989e+01 + sys_corr_31: 1.26602135e+01 + sys_corr_32: -8.12790733e+00 + sys_corr_33: -1.30322456e+01 + sys_corr_34: -1.73394918e+01 + sys_corr_35: -1.32345883e+01 + sys_corr_36: -2.88579575e+01 + sys_corr_37: -1.22085544e+01 + sys_corr_38: -1.11487700e+01 + sys_corr_39: -1.18252381e+01 + sys_corr_40: -1.02301454e+01 + sys_corr_41: 9.75746076e+00 + sys_corr_42: 3.26360909e+01 + sys_corr_43: 4.93021639e+00 + sys_corr_44: -7.88141572e+01 + sys_corr_45: -8.79719901e+00 + sys_corr_46: 5.10674064e+00 + sys_corr_47: 8.43646828e+01 + sys_corr_48: -1.69678419e+02 + sys_corr_49: 6.55730605e+01 + sys_corr_50: 1.40513463e+02 + sys_corr_51: -1.51270110e+02 + sys_corr_52: 1.05401961e+02 + sys_corr_53: 8.02633468e+00 + sys_corr_54: -3.21560715e+01 + sys_corr_55: 3.48307551e+01 + sys_corr_56: 2.70063979e+01 + sys_corr_57: 7.82413926e+00 + sys_corr_58: 4.70330555e+00 + sys_corr_59: 4.22242113e-01 + sys_corr_60: -3.54416557e-01 + sys_corr_61: -7.29529319e+00 + sys_corr_62: 1.42953412e+00 + sys_corr_63: 1.13348456e+00 + sys_corr_64: -4.01581787e+00 + sys_corr_65: -1.82821523e+00 + sys_corr_66: -5.67467917e+00 + sys_corr_67: 1.10704379e+00 + sys_corr_68: 7.31725260e+00 + sys_corr_69: 1.90697980e+00 + sys_corr_70: 5.43513885e+00 + sys_corr_71: -1.67055216e+00 + sys_corr_72: 4.04926470e+00 + sys_corr_73: 2.61636277e-01 + sys_corr_74: -1.90137641e+00 + sys_corr_75: -2.76576211e+00 + sys_corr_76: -1.28829265e+00 + sys_corr_77: 1.95794202e+00 + sys_corr_78: -3.11252566e+00 + sys_corr_79: -1.28880669e+00 + sys_corr_80: 3.32743083e+00 + sys_corr_81: -2.30659935e+00 + sys_corr_82: 2.24588784e+00 + sys_corr_83: -1.69645294e-01 + sys_corr_84: 1.29115278e+00 + sys_corr_85: -3.03794130e-02 + sys_corr_86: -1.49745435e+00 + sys_corr_87: 2.43020670e+00 + sys_corr_88: -5.68244830e+00 + sys_corr_89: 3.43626838e+00 + sys_corr_90: 1.81031992e+00 + sys_corr_91: 5.23246025e-01 + sys_corr_92: 3.60430202e+00 + sys_corr_93: 4.68571429e-01 + sys_corr_94: 9.44878957e-01 + sys_corr_95: -2.93039354e+00 + sys_corr_96: 4.08730821e-02 + sys_corr_97: -3.25088463e+00 + sys_corr_98: -1.43244162e+00 + sys_corr_99: -2.02954581e+00 + sys_corr_100: 2.29385577e+00 + sys_corr_101: 3.20285125e+00 + sys_corr_102: -2.75622983e+00 + sys_corr_103: 1.93241089e+00 + sys_corr_104: 3.43027932e+00 + sys_corr_105: 2.17637576e+00 + sys_corr_106: 1.62620572e+00 + sys_corr_107: 1.55943389e+00 + sys_corr_108: 1.01735514e+00 + sys_corr_109: 8.44502529e-01 + sys_corr_110: -1.26815804e+00 + sys_corr_111: 1.01187666e+00 + sys_corr_112: 3.07804934e-01 + sys_corr_113: -1.03348368e-02 + sys_corr_114: -5.35841059e-03 + sys_corr_115: 2.32971281e-01 + sys_corr_116: -7.76087624e-03 + sys_corr_117: 4.78402868e-02 + sys_corr_118: -7.12700899e-01 + sys_corr_119: 4.10212020e-03 + sys_corr_120: -5.84131642e-02 + sys_corr_121: 2.06746161e-02 + sys_corr_122: -4.06088822e-01 + sys_corr_123: -2.77056500e-01 + sys_corr_124: 8.54122438e-02 + sys_corr_125: 2.26992017e-01 + sys_corr_126: -3.68113793e-01 + sys_corr_127: -2.97186036e-01 + sys_corr_128: 5.90162132e-01 + sys_corr_129: 5.31145242e-01 + sys_corr_130: -6.28013448e-01 + sys_corr_131: 1.05556336e-01 + sys_corr_132: -2.12035474e-01 stat: 0.0 - luminosity: 233.73704200000003 -- sys_corr_1: 30.002716089555328 - sys_corr_2: 15.487056470038828 - sys_corr_3: -10.808612809616324 - sys_corr_4: -8.780017801729494 - sys_corr_5: -7.894693727398723 - sys_corr_6: 7.543375527885028 - sys_corr_7: 9.175009031270344 - sys_corr_8: -1.0816595018714947 - sys_corr_9: -18.790251262106167 - sys_corr_10: -2.2166324904385526 - sys_corr_11: -4.569620758377213 - sys_corr_12: -8.746310594637574 - sys_corr_13: 3.8975101229261386 - sys_corr_14: 2.383445470859497 - sys_corr_15: 5.081984293294842 - sys_corr_16: 11.536120789752005 - sys_corr_17: -2.445476312682525 - sys_corr_18: 4.146694071046512 - sys_corr_19: -1.5487753199918148 - sys_corr_20: -0.8491557367636288 - sys_corr_21: -0.48875881882573075 - sys_corr_22: 5.692554495916478 - sys_corr_23: 2.6297643897601737 - sys_corr_24: -3.3424189295750777 - sys_corr_25: 4.51486306359086 - sys_corr_26: 9.023195972074207 - sys_corr_27: -5.315756389770619 - sys_corr_28: 0.157817653464435 - sys_corr_29: 5.051522262947771 - sys_corr_30: -0.5318284052202574 - sys_corr_31: 2.290693087588489 - sys_corr_32: 0.6374764390184607 - sys_corr_33: 0.30431291448546377 - sys_corr_34: -3.069043493229564 - sys_corr_35: 0.17901913919385426 - sys_corr_36: 0.033360016063392096 - sys_corr_37: -1.7548712463646339 - sys_corr_38: -0.7480791799246305 - sys_corr_39: 0.3822705985241883 - sys_corr_40: 0.808635829930324 - sys_corr_41: -1.0788431277206223 - sys_corr_42: 0.3794522933076877 - sys_corr_43: -0.9840299056754881 - sys_corr_44: 1.3280828366064323 - sys_corr_45: 0.5730118250553752 - sys_corr_46: -1.1685498582874945 - sys_corr_47: -0.8963615257087842 - sys_corr_48: 2.8655645457799674 - sys_corr_49: -3.8877137952301677 - sys_corr_50: 0.494340823830155 - sys_corr_51: -1.170602653168223 - sys_corr_52: -1.6086432262349566 - sys_corr_53: -0.6848117689112961 - sys_corr_54: -4.817129971790941 - sys_corr_55: -2.269267265768722 - sys_corr_56: -1.5304842236442018 - sys_corr_57: 0.06760022119331022 - sys_corr_58: 2.501132755692431 - sys_corr_59: 2.054690696400505 - sys_corr_60: -1.180450807708806 - sys_corr_61: -0.4011802250689729 - sys_corr_62: -1.484780294865478 - sys_corr_63: 0.13030093046805974 - sys_corr_64: 2.358360932036158 - sys_corr_65: 3.8571137549950962 - sys_corr_66: 0.41863264005204504 - sys_corr_67: -1.1944006752035912 - sys_corr_68: -0.00016725209788067243 - sys_corr_69: 2.2272496530684904 - sys_corr_70: 2.4127367648325753 - sys_corr_71: -0.20112067383307042 - sys_corr_72: -1.3548539496257808 - sys_corr_73: -7.469262066648432 - sys_corr_74: -1.7463417107480033 - sys_corr_75: -1.688370440040957 - sys_corr_76: -2.2389040427988154 - sys_corr_77: -3.3394307992080035 - sys_corr_78: 2.384075243091959 - sys_corr_79: 3.415909471152259 - sys_corr_80: 3.6546311320614406 - sys_corr_81: 3.3460156170067266 - sys_corr_82: 2.0336373688095084 - sys_corr_83: 6.58210807709308 - sys_corr_84: -47.25745350095918 - sys_corr_85: 34.55480225033286 - sys_corr_86: 3.1322941111386142 - sys_corr_87: 0.5007827217199582 - sys_corr_88: 2.157321953589465 - sys_corr_89: 2.202426638389507 - sys_corr_90: 13.707759356715256 - sys_corr_91: 57.238108334826094 - sys_corr_92: -5.139735623328923 - sys_corr_93: 27.475930851138628 - sys_corr_94: 23.500552420364954 - sys_corr_95: -13.193526289374978 - sys_corr_96: 109.14854943076915 - sys_corr_97: -55.53504537965424 - sys_corr_98: 34.356665981378065 - sys_corr_99: 5.191378599555754 - sys_corr_100: 0.06242643409596317 - sys_corr_101: -2.5307208371340333 - sys_corr_102: -0.35440932030675243 - sys_corr_103: -1.230754016024788 - sys_corr_104: -15.706255107915197 - sys_corr_105: 1.1284412096976546 - sys_corr_106: 0.8202789803941584 - sys_corr_107: 2.667151504131947 - sys_corr_108: -1.3194625791562256 - sys_corr_109: -0.6771330796118857 - sys_corr_110: -19.22745330480193 - sys_corr_111: -1.5543787188502927 - sys_corr_112: -0.7557096397733305 - sys_corr_113: -0.7637402454208068 - sys_corr_114: 0.0012155946480825886 - sys_corr_115: -0.6918650987248776 - sys_corr_116: -1.139236200651287 - sys_corr_117: -0.8878761092860181 - sys_corr_118: -0.06710511930196675 - sys_corr_119: -0.011635269381415079 - sys_corr_120: 0.5389764398133475 - sys_corr_121: -0.006244019008777828 - sys_corr_122: 0.09717220328823925 - sys_corr_123: -0.0058244419993672145 - sys_corr_124: -0.42389695992992904 - sys_corr_125: -0.28741045495279643 - sys_corr_126: -0.009787741159477122 - sys_corr_127: 5.119086913023337 - sys_corr_128: 0.2137654225034222 - sys_corr_129: -0.22008105278812654 - sys_corr_130: -0.01740135964098504 - sys_corr_131: -0.3113645648560432 - sys_corr_132: 0.2529883076054275 + luminosity: 2.33737042e+02 +- sys_corr_1: 3.00027161e+01 + sys_corr_2: 1.54870565e+01 + sys_corr_3: -1.08086128e+01 + sys_corr_4: -8.78001780e+00 + sys_corr_5: -7.89469373e+00 + sys_corr_6: 7.54337553e+00 + sys_corr_7: 9.17500903e+00 + sys_corr_8: -1.08165950e+00 + sys_corr_9: -1.87902513e+01 + sys_corr_10: -2.21663249e+00 + sys_corr_11: -4.56962076e+00 + sys_corr_12: -8.74631059e+00 + sys_corr_13: 3.89751012e+00 + sys_corr_14: 2.38344547e+00 + sys_corr_15: 5.08198429e+00 + sys_corr_16: 1.15361208e+01 + sys_corr_17: -2.44547631e+00 + sys_corr_18: 4.14669407e+00 + sys_corr_19: -1.54877532e+00 + sys_corr_20: -8.49155737e-01 + sys_corr_21: -4.88758819e-01 + sys_corr_22: 5.69255450e+00 + sys_corr_23: 2.62976439e+00 + sys_corr_24: -3.34241893e+00 + sys_corr_25: 4.51486306e+00 + sys_corr_26: 9.02319597e+00 + sys_corr_27: -5.31575639e+00 + sys_corr_28: 1.57817653e-01 + sys_corr_29: 5.05152226e+00 + sys_corr_30: -5.31828405e-01 + sys_corr_31: 2.29069309e+00 + sys_corr_32: 6.37476439e-01 + sys_corr_33: 3.04312914e-01 + sys_corr_34: -3.06904349e+00 + sys_corr_35: 1.79019139e-01 + sys_corr_36: 3.33600161e-02 + sys_corr_37: -1.75487125e+00 + sys_corr_38: -7.48079180e-01 + sys_corr_39: 3.82270599e-01 + sys_corr_40: 8.08635830e-01 + sys_corr_41: -1.07884313e+00 + sys_corr_42: 3.79452293e-01 + sys_corr_43: -9.84029906e-01 + sys_corr_44: 1.32808284e+00 + sys_corr_45: 5.73011825e-01 + sys_corr_46: -1.16854986e+00 + sys_corr_47: -8.96361526e-01 + sys_corr_48: 2.86556455e+00 + sys_corr_49: -3.88771380e+00 + sys_corr_50: 4.94340824e-01 + sys_corr_51: -1.17060265e+00 + sys_corr_52: -1.60864323e+00 + sys_corr_53: -6.84811769e-01 + sys_corr_54: -4.81712997e+00 + sys_corr_55: -2.26926727e+00 + sys_corr_56: -1.53048422e+00 + sys_corr_57: 6.76002212e-02 + sys_corr_58: 2.50113276e+00 + sys_corr_59: 2.05469070e+00 + sys_corr_60: -1.18045081e+00 + sys_corr_61: -4.01180225e-01 + sys_corr_62: -1.48478029e+00 + sys_corr_63: 1.30300930e-01 + sys_corr_64: 2.35836093e+00 + sys_corr_65: 3.85711375e+00 + sys_corr_66: 4.18632640e-01 + sys_corr_67: -1.19440068e+00 + sys_corr_68: -1.67252098e-04 + sys_corr_69: 2.22724965e+00 + sys_corr_70: 2.41273676e+00 + sys_corr_71: -2.01120674e-01 + sys_corr_72: -1.35485395e+00 + sys_corr_73: -7.46926207e+00 + sys_corr_74: -1.74634171e+00 + sys_corr_75: -1.68837044e+00 + sys_corr_76: -2.23890404e+00 + sys_corr_77: -3.33943080e+00 + sys_corr_78: 2.38407524e+00 + sys_corr_79: 3.41590947e+00 + sys_corr_80: 3.65463113e+00 + sys_corr_81: 3.34601562e+00 + sys_corr_82: 2.03363737e+00 + sys_corr_83: 6.58210808e+00 + sys_corr_84: -4.72574535e+01 + sys_corr_85: 3.45548023e+01 + sys_corr_86: 3.13229411e+00 + sys_corr_87: 5.00782722e-01 + sys_corr_88: 2.15732195e+00 + sys_corr_89: 2.20242664e+00 + sys_corr_90: 1.37077594e+01 + sys_corr_91: 5.72381083e+01 + sys_corr_92: -5.13973562e+00 + sys_corr_93: 2.74759309e+01 + sys_corr_94: 2.35005524e+01 + sys_corr_95: -1.31935263e+01 + sys_corr_96: 1.09148549e+02 + sys_corr_97: -5.55350454e+01 + sys_corr_98: 3.43566660e+01 + sys_corr_99: 5.19137860e+00 + sys_corr_100: 6.24264341e-02 + sys_corr_101: -2.53072084e+00 + sys_corr_102: -3.54409320e-01 + sys_corr_103: -1.23075402e+00 + sys_corr_104: -1.57062551e+01 + sys_corr_105: 1.12844121e+00 + sys_corr_106: 8.20278980e-01 + sys_corr_107: 2.66715150e+00 + sys_corr_108: -1.31946258e+00 + sys_corr_109: -6.77133080e-01 + sys_corr_110: -1.92274533e+01 + sys_corr_111: -1.55437872e+00 + sys_corr_112: -7.55709640e-01 + sys_corr_113: -7.63740245e-01 + sys_corr_114: 1.21559465e-03 + sys_corr_115: -6.91865099e-01 + sys_corr_116: -1.13923620e+00 + sys_corr_117: -8.87876109e-01 + sys_corr_118: -6.71051193e-02 + sys_corr_119: -1.16352694e-02 + sys_corr_120: 5.38976440e-01 + sys_corr_121: -6.24401901e-03 + sys_corr_122: 9.71722033e-02 + sys_corr_123: -5.82444200e-03 + sys_corr_124: -4.23896960e-01 + sys_corr_125: -2.87410455e-01 + sys_corr_126: -9.78774116e-03 + sys_corr_127: 5.11908691e+00 + sys_corr_128: 2.13765423e-01 + sys_corr_129: -2.20081053e-01 + sys_corr_130: -1.74013596e-02 + sys_corr_131: -3.11364565e-01 + sys_corr_132: 2.52988308e-01 stat: 0.0 - luminosity: 76.42969400000001 -- sys_corr_1: 30.339598750023626 - sys_corr_2: 13.84504093837678 - sys_corr_3: -13.42496609943706 - sys_corr_4: -3.6671432294917503 - sys_corr_5: -9.201345729313513 - sys_corr_6: 7.7591060213863035 - sys_corr_7: 8.764664119834002 - sys_corr_8: -8.61910889235332 - sys_corr_9: -9.79205096496847 - sys_corr_10: -1.821046043799438 - sys_corr_11: -9.091207950649128 - sys_corr_12: -3.06332450468813 - sys_corr_13: 10.677024896088477 - sys_corr_14: -3.294678112834498 - sys_corr_15: -9.755163635592053 - sys_corr_16: -8.620374910895164 - sys_corr_17: 2.779494265170362 - sys_corr_18: -4.368700636194313 - sys_corr_19: 0.10467315299907554 - sys_corr_20: 0.23981683102619752 - sys_corr_21: -0.5737072610819759 - sys_corr_22: 7.8698599955751485 - sys_corr_23: 3.537866701940846 - sys_corr_24: -4.061398706624622 - sys_corr_25: 3.8227230684226203 - sys_corr_26: 7.641877449173892 - sys_corr_27: -4.62075841241504 - sys_corr_28: -1.3457076080970403 - sys_corr_29: 4.910812652724294 - sys_corr_30: 0.6753612122251823 - sys_corr_31: 1.1967884608657544 - sys_corr_32: 0.7765441135704195 - sys_corr_33: 0.28822090160424113 - sys_corr_34: -2.675449478110562 - sys_corr_35: 0.09227344454861983 - sys_corr_36: -0.20122939429277822 - sys_corr_37: -1.7899401994515463 - sys_corr_38: -0.5807163344265106 - sys_corr_39: 0.2381848793116058 - sys_corr_40: 0.584369279428442 - sys_corr_41: -1.1437990951728847 - sys_corr_42: 0.26562251673911014 - sys_corr_43: -0.9607231079536906 - sys_corr_44: 1.365792078160319 - sys_corr_45: 0.00468709207263393 - sys_corr_46: -0.5749184510460905 - sys_corr_47: -0.502110433495888 - sys_corr_48: 2.339654322843262 - sys_corr_49: -3.595146808824176 - sys_corr_50: 0.38607390225722693 - sys_corr_51: -1.0136751805551578 - sys_corr_52: -1.4289812613154147 - sys_corr_53: -0.5958389184783995 - sys_corr_54: -5.092904645992212 - sys_corr_55: -2.430385130327559 - sys_corr_56: -1.350527076771258 - sys_corr_57: -0.18268741730810883 - sys_corr_58: 2.7965081051195257 - sys_corr_59: 1.7249159716904923 - sys_corr_60: -0.9275769149875404 - sys_corr_61: 0.1838185808310768 - sys_corr_62: -1.525963789539649 - sys_corr_63: 0.14808293427081098 - sys_corr_64: 1.9460049022061334 - sys_corr_65: 3.373445656122195 - sys_corr_66: 0.3522239130568882 - sys_corr_67: -1.216096636216905 - sys_corr_68: 0.09943439033825541 - sys_corr_69: 1.7444297165728115 - sys_corr_70: 2.602273086251188 - sys_corr_71: -0.45747019896676605 - sys_corr_72: -1.482284634850264 - sys_corr_73: -7.086532514749668 - sys_corr_74: -1.5475241601939058 - sys_corr_75: -0.5701174374528881 - sys_corr_76: -1.9449284010315055 - sys_corr_77: -1.8549571877659312 - sys_corr_78: 2.3003547519272023 - sys_corr_79: 3.4145811086284574 - sys_corr_80: 3.917078440471615 - sys_corr_81: 3.6121731859469857 - sys_corr_82: 2.515384306161331 - sys_corr_83: 6.7750369289461 - sys_corr_84: -45.0542894815074 - sys_corr_85: 32.07444483793019 - sys_corr_86: 3.2806876214520755 - sys_corr_87: -0.9081088531690527 - sys_corr_88: 2.4963670070784687 - sys_corr_89: 1.7664411826595225 - sys_corr_90: 12.422000053880291 - sys_corr_91: 52.78323297972181 - sys_corr_92: -4.179798370382808 - sys_corr_93: -86.50197267382939 - sys_corr_94: 32.40105078920469 - sys_corr_95: -5.893954966768446 - sys_corr_96: -72.6164603314975 - sys_corr_97: -64.32133085717314 - sys_corr_98: 19.9299574221283 - sys_corr_99: 9.986195136785804 - sys_corr_100: -1.0463697127463834 - sys_corr_101: -1.877250627279222 - sys_corr_102: -1.3779640443609282 - sys_corr_103: -2.691424214824827 - sys_corr_104: -16.732282089666835 - sys_corr_105: 0.5401206345980529 - sys_corr_106: 0.8213437214617314 - sys_corr_107: 2.797052731571089 - sys_corr_108: -1.5455957502593383 - sys_corr_109: -0.7006257720088831 - sys_corr_110: -23.86572644278092 - sys_corr_111: -1.5531162341260014 - sys_corr_112: -0.7765837093020523 - sys_corr_113: -0.683818443251661 - sys_corr_114: 0.001312703277539701 - sys_corr_115: -0.7107192569798245 - sys_corr_116: -1.1159337888094973 - sys_corr_117: -0.906990624541583 - sys_corr_118: -0.023707215331757174 - sys_corr_119: -0.013695803373871534 - sys_corr_120: 0.5519799200690821 - sys_corr_121: -0.0011418974510265972 - sys_corr_122: 0.08102456542857964 - sys_corr_123: 0.003030805359472483 - sys_corr_124: -0.7105252523733605 - sys_corr_125: -0.2667452153382252 - sys_corr_126: -0.003511700619391348 - sys_corr_127: 2.2821029674605886 - sys_corr_128: 0.14724206997404726 - sys_corr_129: -0.20073395673864575 - sys_corr_130: -0.014182653748786475 - sys_corr_131: -0.31447403578870026 - sys_corr_132: 0.20316829124490846 + luminosity: 7.64296940e+01 +- sys_corr_1: 3.03395988e+01 + sys_corr_2: 1.38450409e+01 + sys_corr_3: -1.34249661e+01 + sys_corr_4: -3.66714323e+00 + sys_corr_5: -9.20134573e+00 + sys_corr_6: 7.75910602e+00 + sys_corr_7: 8.76466412e+00 + sys_corr_8: -8.61910889e+00 + sys_corr_9: -9.79205096e+00 + sys_corr_10: -1.82104604e+00 + sys_corr_11: -9.09120795e+00 + sys_corr_12: -3.06332450e+00 + sys_corr_13: 1.06770249e+01 + sys_corr_14: -3.29467811e+00 + sys_corr_15: -9.75516364e+00 + sys_corr_16: -8.62037491e+00 + sys_corr_17: 2.77949427e+00 + sys_corr_18: -4.36870064e+00 + sys_corr_19: 1.04673153e-01 + sys_corr_20: 2.39816831e-01 + sys_corr_21: -5.73707261e-01 + sys_corr_22: 7.86986000e+00 + sys_corr_23: 3.53786670e+00 + sys_corr_24: -4.06139871e+00 + sys_corr_25: 3.82272307e+00 + sys_corr_26: 7.64187745e+00 + sys_corr_27: -4.62075841e+00 + sys_corr_28: -1.34570761e+00 + sys_corr_29: 4.91081265e+00 + sys_corr_30: 6.75361212e-01 + sys_corr_31: 1.19678846e+00 + sys_corr_32: 7.76544114e-01 + sys_corr_33: 2.88220902e-01 + sys_corr_34: -2.67544948e+00 + sys_corr_35: 9.22734445e-02 + sys_corr_36: -2.01229394e-01 + sys_corr_37: -1.78994020e+00 + sys_corr_38: -5.80716334e-01 + sys_corr_39: 2.38184879e-01 + sys_corr_40: 5.84369279e-01 + sys_corr_41: -1.14379910e+00 + sys_corr_42: 2.65622517e-01 + sys_corr_43: -9.60723108e-01 + sys_corr_44: 1.36579208e+00 + sys_corr_45: 4.68709207e-03 + sys_corr_46: -5.74918451e-01 + sys_corr_47: -5.02110433e-01 + sys_corr_48: 2.33965432e+00 + sys_corr_49: -3.59514681e+00 + sys_corr_50: 3.86073902e-01 + sys_corr_51: -1.01367518e+00 + sys_corr_52: -1.42898126e+00 + sys_corr_53: -5.95838918e-01 + sys_corr_54: -5.09290465e+00 + sys_corr_55: -2.43038513e+00 + sys_corr_56: -1.35052708e+00 + sys_corr_57: -1.82687417e-01 + sys_corr_58: 2.79650811e+00 + sys_corr_59: 1.72491597e+00 + sys_corr_60: -9.27576915e-01 + sys_corr_61: 1.83818581e-01 + sys_corr_62: -1.52596379e+00 + sys_corr_63: 1.48082934e-01 + sys_corr_64: 1.94600490e+00 + sys_corr_65: 3.37344566e+00 + sys_corr_66: 3.52223913e-01 + sys_corr_67: -1.21609664e+00 + sys_corr_68: 9.94343903e-02 + sys_corr_69: 1.74442972e+00 + sys_corr_70: 2.60227309e+00 + sys_corr_71: -4.57470199e-01 + sys_corr_72: -1.48228463e+00 + sys_corr_73: -7.08653251e+00 + sys_corr_74: -1.54752416e+00 + sys_corr_75: -5.70117437e-01 + sys_corr_76: -1.94492840e+00 + sys_corr_77: -1.85495719e+00 + sys_corr_78: 2.30035475e+00 + sys_corr_79: 3.41458111e+00 + sys_corr_80: 3.91707844e+00 + sys_corr_81: 3.61217319e+00 + sys_corr_82: 2.51538431e+00 + sys_corr_83: 6.77503693e+00 + sys_corr_84: -4.50542895e+01 + sys_corr_85: 3.20744448e+01 + sys_corr_86: 3.28068762e+00 + sys_corr_87: -9.08108853e-01 + sys_corr_88: 2.49636701e+00 + sys_corr_89: 1.76644118e+00 + sys_corr_90: 1.24220001e+01 + sys_corr_91: 5.27832330e+01 + sys_corr_92: -4.17979837e+00 + sys_corr_93: -8.65019727e+01 + sys_corr_94: 3.24010508e+01 + sys_corr_95: -5.89395497e+00 + sys_corr_96: -7.26164603e+01 + sys_corr_97: -6.43213309e+01 + sys_corr_98: 1.99299574e+01 + sys_corr_99: 9.98619514e+00 + sys_corr_100: -1.04636971e+00 + sys_corr_101: -1.87725063e+00 + sys_corr_102: -1.37796404e+00 + sys_corr_103: -2.69142421e+00 + sys_corr_104: -1.67322821e+01 + sys_corr_105: 5.40120635e-01 + sys_corr_106: 8.21343721e-01 + sys_corr_107: 2.79705273e+00 + sys_corr_108: -1.54559575e+00 + sys_corr_109: -7.00625772e-01 + sys_corr_110: -2.38657264e+01 + sys_corr_111: -1.55311623e+00 + sys_corr_112: -7.76583709e-01 + sys_corr_113: -6.83818443e-01 + sys_corr_114: 1.31270328e-03 + sys_corr_115: -7.10719257e-01 + sys_corr_116: -1.11593379e+00 + sys_corr_117: -9.06990625e-01 + sys_corr_118: -2.37072153e-02 + sys_corr_119: -1.36958034e-02 + sys_corr_120: 5.51979920e-01 + sys_corr_121: -1.14189745e-03 + sys_corr_122: 8.10245654e-02 + sys_corr_123: 3.03080536e-03 + sys_corr_124: -7.10525252e-01 + sys_corr_125: -2.66745215e-01 + sys_corr_126: -3.51170062e-03 + sys_corr_127: 2.28210297e+00 + sys_corr_128: 1.47242070e-01 + sys_corr_129: -2.00733957e-01 + sys_corr_130: -1.41826537e-02 + sys_corr_131: -3.14474036e-01 + sys_corr_132: 2.03168291e-01 stat: 0.0 - luminosity: 79.297416 -- sys_corr_1: 29.993960916827394 - sys_corr_2: 14.199640292273113 - sys_corr_3: -13.193520389787842 - sys_corr_4: -1.7439243973937695 - sys_corr_5: -9.498839343332854 - sys_corr_6: 6.1190325218053045 - sys_corr_7: -3.845144347599702 - sys_corr_8: 2.9043707782048442 - sys_corr_9: -6.965981062204563 - sys_corr_10: -14.877061279370105 - sys_corr_11: -9.850813866208973 - sys_corr_12: -1.1206887841273427 - sys_corr_13: 10.547713426928773 - sys_corr_14: 0.8478505244066415 - sys_corr_15: 1.6240737399032648 - sys_corr_16: 4.949037850672922 - sys_corr_17: -1.1228093710849203 - sys_corr_18: 2.820602098570294 - sys_corr_19: 0.5589276461288231 - sys_corr_20: -0.732740521860713 - sys_corr_21: -1.6043308339127946 - sys_corr_22: 7.78251417868358 - sys_corr_23: 3.5984802839920182 - sys_corr_24: -0.2861887240493332 - sys_corr_25: 4.065254035187737 - sys_corr_26: 6.719094070854332 - sys_corr_27: -3.615367009080829 - sys_corr_28: -1.1767479635153626 - sys_corr_29: 4.036034463985937 - sys_corr_30: 3.6081590776510066 - sys_corr_31: -0.4068502876876677 - sys_corr_32: 1.3328841503845201 - sys_corr_33: 0.10790001709149366 - sys_corr_34: -3.7177458195274924 - sys_corr_35: 0.7708389824158323 - sys_corr_36: 0.0008237003030134645 - sys_corr_37: -1.6407316321156924 - sys_corr_38: -1.0384037899068743 - sys_corr_39: 0.12415545792281402 - sys_corr_40: 0.17648649250733464 - sys_corr_41: -1.2402195472720556 - sys_corr_42: 0.3341984253240395 - sys_corr_43: -1.1701731462653275 - sys_corr_44: 1.8370220474350878 - sys_corr_45: 0.46970710503810115 - sys_corr_46: -0.2801434003462181 - sys_corr_47: -0.37711872431175203 - sys_corr_48: 2.306401207651092 - sys_corr_49: -2.5859493582798945 - sys_corr_50: 0.02162266126209487 - sys_corr_51: -1.2580219940311725 - sys_corr_52: -1.389887931798049 - sys_corr_53: -0.6376639614224959 - sys_corr_54: -4.2497197542380265 - sys_corr_55: -2.528884195874944 - sys_corr_56: -1.3748387902909154 - sys_corr_57: 0.1274037339318588 - sys_corr_58: 2.127596330716281 - sys_corr_59: 1.7254292578197556 - sys_corr_60: -1.858840571186687 - sys_corr_61: -0.1458249391773484 - sys_corr_62: -1.7247484212958026 - sys_corr_63: 0.1316615274106606 - sys_corr_64: 2.4196597134199305 - sys_corr_65: 3.588082916755985 - sys_corr_66: -0.06125565133880211 - sys_corr_67: -1.16325338488477 - sys_corr_68: -0.17210464846264886 - sys_corr_69: 1.8309869748811476 - sys_corr_70: 1.9281601695357515 - sys_corr_71: -0.586902227437645 - sys_corr_72: -1.6167834571201574 - sys_corr_73: -7.18789716034493 - sys_corr_74: -1.5554414923420326 - sys_corr_75: -0.48011952810527764 - sys_corr_76: -2.6821133807416837 - sys_corr_77: -3.082156103564246 - sys_corr_78: 2.8025791740249786 - sys_corr_79: 3.452096697764922 - sys_corr_80: 4.157873710109714 - sys_corr_81: 4.078414216471241 - sys_corr_82: 1.7379421465062277 - sys_corr_83: 7.085056593498886 - sys_corr_84: -48.66399537128145 - sys_corr_85: 35.91761751026537 - sys_corr_86: 3.4895357797282744 - sys_corr_87: -0.26916092237443007 - sys_corr_88: 2.9876782356118707 - sys_corr_89: 2.704875905351911 - sys_corr_90: 14.310305255885295 - sys_corr_91: 58.33313863027209 - sys_corr_92: -4.8253971298353315 - sys_corr_93: 114.45873421602215 - sys_corr_94: -10.990500831140132 - sys_corr_95: 4.140234456188296 - sys_corr_96: -64.0549466099955 - sys_corr_97: -13.66021615576757 - sys_corr_98: -31.743852320190204 - sys_corr_99: -10.579698958002123 - sys_corr_100: -1.1849812041105194 - sys_corr_101: -1.7430251424899175 - sys_corr_102: -1.5688115802302616 - sys_corr_103: -4.653812250485049 - sys_corr_104: -9.921354984868776 - sys_corr_105: -0.07841747047121915 - sys_corr_106: 0.17542598366111314 - sys_corr_107: 2.014102345177076 - sys_corr_108: -1.363949394277262 - sys_corr_109: -0.4199187816496521 - sys_corr_110: -21.252886208005727 - sys_corr_111: -1.1368579144003554 - sys_corr_112: -0.5383601381540035 - sys_corr_113: -0.5300721851315617 - sys_corr_114: -0.0003904181977261484 - sys_corr_115: -0.5262178814730459 - sys_corr_116: 0.1045377422373658 - sys_corr_117: -0.7165611324515291 - sys_corr_118: -0.09807663214429603 - sys_corr_119: -0.004888552160510391 - sys_corr_120: 0.4700964539248645 - sys_corr_121: -0.005934767263499873 - sys_corr_122: 0.05410471545670246 - sys_corr_123: -0.024935340843147275 - sys_corr_124: -1.4478562411192355 - sys_corr_125: -0.2815508064410945 - sys_corr_126: -0.01537381635046484 - sys_corr_127: -4.989121111930571 - sys_corr_128: 0.10320903102707209 - sys_corr_129: -0.021885581364388344 - sys_corr_130: -0.008361542689577018 - sys_corr_131: -0.3224066219129042 - sys_corr_132: 0.12798523762732175 + luminosity: 7.92974160e+01 +- sys_corr_1: 2.99939609e+01 + sys_corr_2: 1.41996403e+01 + sys_corr_3: -1.31935204e+01 + sys_corr_4: -1.74392440e+00 + sys_corr_5: -9.49883934e+00 + sys_corr_6: 6.11903252e+00 + sys_corr_7: -3.84514435e+00 + sys_corr_8: 2.90437078e+00 + sys_corr_9: -6.96598106e+00 + sys_corr_10: -1.48770613e+01 + sys_corr_11: -9.85081387e+00 + sys_corr_12: -1.12068878e+00 + sys_corr_13: 1.05477134e+01 + sys_corr_14: 8.47850524e-01 + sys_corr_15: 1.62407374e+00 + sys_corr_16: 4.94903785e+00 + sys_corr_17: -1.12280937e+00 + sys_corr_18: 2.82060210e+00 + sys_corr_19: 5.58927646e-01 + sys_corr_20: -7.32740522e-01 + sys_corr_21: -1.60433083e+00 + sys_corr_22: 7.78251418e+00 + sys_corr_23: 3.59848028e+00 + sys_corr_24: -2.86188724e-01 + sys_corr_25: 4.06525404e+00 + sys_corr_26: 6.71909407e+00 + sys_corr_27: -3.61536701e+00 + sys_corr_28: -1.17674796e+00 + sys_corr_29: 4.03603446e+00 + sys_corr_30: 3.60815908e+00 + sys_corr_31: -4.06850288e-01 + sys_corr_32: 1.33288415e+00 + sys_corr_33: 1.07900017e-01 + sys_corr_34: -3.71774582e+00 + sys_corr_35: 7.70838982e-01 + sys_corr_36: 8.23700303e-04 + sys_corr_37: -1.64073163e+00 + sys_corr_38: -1.03840379e+00 + sys_corr_39: 1.24155458e-01 + sys_corr_40: 1.76486493e-01 + sys_corr_41: -1.24021955e+00 + sys_corr_42: 3.34198425e-01 + sys_corr_43: -1.17017315e+00 + sys_corr_44: 1.83702205e+00 + sys_corr_45: 4.69707105e-01 + sys_corr_46: -2.80143400e-01 + sys_corr_47: -3.77118724e-01 + sys_corr_48: 2.30640121e+00 + sys_corr_49: -2.58594936e+00 + sys_corr_50: 2.16226613e-02 + sys_corr_51: -1.25802199e+00 + sys_corr_52: -1.38988793e+00 + sys_corr_53: -6.37663961e-01 + sys_corr_54: -4.24971975e+00 + sys_corr_55: -2.52888420e+00 + sys_corr_56: -1.37483879e+00 + sys_corr_57: 1.27403734e-01 + sys_corr_58: 2.12759633e+00 + sys_corr_59: 1.72542926e+00 + sys_corr_60: -1.85884057e+00 + sys_corr_61: -1.45824939e-01 + sys_corr_62: -1.72474842e+00 + sys_corr_63: 1.31661527e-01 + sys_corr_64: 2.41965971e+00 + sys_corr_65: 3.58808292e+00 + sys_corr_66: -6.12556513e-02 + sys_corr_67: -1.16325338e+00 + sys_corr_68: -1.72104648e-01 + sys_corr_69: 1.83098697e+00 + sys_corr_70: 1.92816017e+00 + sys_corr_71: -5.86902227e-01 + sys_corr_72: -1.61678346e+00 + sys_corr_73: -7.18789716e+00 + sys_corr_74: -1.55544149e+00 + sys_corr_75: -4.80119528e-01 + sys_corr_76: -2.68211338e+00 + sys_corr_77: -3.08215610e+00 + sys_corr_78: 2.80257917e+00 + sys_corr_79: 3.45209670e+00 + sys_corr_80: 4.15787371e+00 + sys_corr_81: 4.07841422e+00 + sys_corr_82: 1.73794215e+00 + sys_corr_83: 7.08505659e+00 + sys_corr_84: -4.86639954e+01 + sys_corr_85: 3.59176175e+01 + sys_corr_86: 3.48953578e+00 + sys_corr_87: -2.69160922e-01 + sys_corr_88: 2.98767824e+00 + sys_corr_89: 2.70487591e+00 + sys_corr_90: 1.43103053e+01 + sys_corr_91: 5.83331386e+01 + sys_corr_92: -4.82539713e+00 + sys_corr_93: 1.14458734e+02 + sys_corr_94: -1.09905008e+01 + sys_corr_95: 4.14023446e+00 + sys_corr_96: -6.40549466e+01 + sys_corr_97: -1.36602162e+01 + sys_corr_98: -3.17438523e+01 + sys_corr_99: -1.05796990e+01 + sys_corr_100: -1.18498120e+00 + sys_corr_101: -1.74302514e+00 + sys_corr_102: -1.56881158e+00 + sys_corr_103: -4.65381225e+00 + sys_corr_104: -9.92135498e+00 + sys_corr_105: -7.84174705e-02 + sys_corr_106: 1.75425984e-01 + sys_corr_107: 2.01410235e+00 + sys_corr_108: -1.36394939e+00 + sys_corr_109: -4.19918782e-01 + sys_corr_110: -2.12528862e+01 + sys_corr_111: -1.13685791e+00 + sys_corr_112: -5.38360138e-01 + sys_corr_113: -5.30072185e-01 + sys_corr_114: -3.90418198e-04 + sys_corr_115: -5.26217881e-01 + sys_corr_116: 1.04537742e-01 + sys_corr_117: -7.16561132e-01 + sys_corr_118: -9.80766321e-02 + sys_corr_119: -4.88855216e-03 + sys_corr_120: 4.70096454e-01 + sys_corr_121: -5.93476726e-03 + sys_corr_122: 5.41047155e-02 + sys_corr_123: -2.49353408e-02 + sys_corr_124: -1.44785624e+00 + sys_corr_125: -2.81550806e-01 + sys_corr_126: -1.53738164e-02 + sys_corr_127: -4.98912111e+00 + sys_corr_128: 1.03209031e-01 + sys_corr_129: -2.18855814e-02 + sys_corr_130: -8.36154269e-03 + sys_corr_131: -3.22406622e-01 + sys_corr_132: 1.27985238e-01 stat: 0.0 luminosity: 77.80432 -- sys_corr_1: 31.018934122755518 - sys_corr_2: 12.375333625372626 - sys_corr_3: -12.90906707431668 - sys_corr_4: 3.7820809394982797 - sys_corr_5: -9.806277328387718 - sys_corr_6: 5.018962262928399 - sys_corr_7: -1.433794410699327 - sys_corr_8: -12.776017213802174 - sys_corr_9: -0.9763750050281923 - sys_corr_10: 1.7869627032112307 - sys_corr_11: -10.252802718788212 - sys_corr_12: -7.561838714383133 - sys_corr_13: 4.414432870936777 - sys_corr_14: 4.357834823032539 - sys_corr_15: 7.769972803399947 - sys_corr_16: 6.857853936969207 - sys_corr_17: -0.9740306213808614 - sys_corr_18: 3.3946451593213287 - sys_corr_19: -0.5038334173249366 - sys_corr_20: -1.3672303575486011 - sys_corr_21: -2.2742403610484363 - sys_corr_22: 7.791158939837557 - sys_corr_23: 4.454905679690195 - sys_corr_24: -0.423061927072384 - sys_corr_25: 4.068373762882967 - sys_corr_26: 6.4659363481188095 - sys_corr_27: -1.8441374275573805 - sys_corr_28: -0.5665978193421328 - sys_corr_29: 2.940057087334904 - sys_corr_30: 6.52656243734112 - sys_corr_31: 0.12256779693356315 - sys_corr_32: 1.4276462362685132 - sys_corr_33: 0.23569021551585795 - sys_corr_34: -3.1357856981511136 - sys_corr_35: 0.8032146773457532 - sys_corr_36: -0.8054434328520405 - sys_corr_37: -1.6071597701955838 - sys_corr_38: -0.9666113991860653 - sys_corr_39: -0.23285743390577932 - sys_corr_40: 0.2918249774697673 - sys_corr_41: -1.071050650577767 - sys_corr_42: 0.7588244184257497 - sys_corr_43: -0.9298896139642825 - sys_corr_44: 1.5106624295237523 - sys_corr_45: 0.5752363848159108 - sys_corr_46: -0.46746122414197394 - sys_corr_47: -0.6286076109852393 - sys_corr_48: 2.4869985106107353 - sys_corr_49: -3.240200501812641 - sys_corr_50: 0.7741673110909775 - sys_corr_51: -0.7022558839056036 - sys_corr_52: -1.1470445102433198 - sys_corr_53: -0.15225064220925544 - sys_corr_54: -3.98129558920348 - sys_corr_55: -2.4415306152196274 - sys_corr_56: -1.683388893256289 - sys_corr_57: 0.49636360004001767 - sys_corr_58: 2.8916512696577317 - sys_corr_59: 1.5629292443325933 - sys_corr_60: -0.6873910161042299 - sys_corr_61: 0.07122192732017726 - sys_corr_62: -1.5072888328786873 - sys_corr_63: 0.01903999810141459 - sys_corr_64: 2.152721664074952 - sys_corr_65: 3.691938409274684 - sys_corr_66: -0.40510504615018006 - sys_corr_67: -0.7944895813337775 - sys_corr_68: 0.018083064459707296 - sys_corr_69: 0.544812309663343 - sys_corr_70: 1.361207966270574 - sys_corr_71: -1.2043958142029159 - sys_corr_72: -1.7715165518461589 - sys_corr_73: -6.662803789616575 - sys_corr_74: -1.7370618432618032 - sys_corr_75: 0.26984266885045477 - sys_corr_76: -2.8804502782925936 - sys_corr_77: -3.3773336954264956 - sys_corr_78: 3.3185516201947696 - sys_corr_79: 4.057307227743034 - sys_corr_80: 3.7888368833215242 - sys_corr_81: 3.2885215133975474 - sys_corr_82: 1.7904085086687134 - sys_corr_83: 6.976684987360631 - sys_corr_84: -42.09595183649295 - sys_corr_85: 31.851448201795392 - sys_corr_86: 3.314094772149723 - sys_corr_87: -0.892661298361561 - sys_corr_88: 2.3841179716057233 - sys_corr_89: 2.7932419941817863 - sys_corr_90: 10.58724402515254 - sys_corr_91: 50.71089983369816 - sys_corr_92: -4.354049537079508 - sys_corr_93: -49.08161700724391 - sys_corr_94: 13.4885012457724 - sys_corr_95: -4.728822767888905 - sys_corr_96: 34.05377748633997 - sys_corr_97: 39.363322335181515 - sys_corr_98: -100.71458649648442 - sys_corr_99: -38.501243767258515 - sys_corr_100: -1.7104311939549117 - sys_corr_101: -2.655994710256632 - sys_corr_102: 3.547128977685399 - sys_corr_103: -7.293326762008922 - sys_corr_104: 5.1655011822347365 - sys_corr_105: -0.6798480194761916 - sys_corr_106: -0.4689156732790057 - sys_corr_107: 1.8245369679910082 - sys_corr_108: -1.5024273485562636 - sys_corr_109: -0.24674620433743186 - sys_corr_110: -8.377654361307494 - sys_corr_111: -1.4033918578244118 - sys_corr_112: -0.4346583051032641 - sys_corr_113: -0.5626897471102533 - sys_corr_114: -0.0008587841849019096 - sys_corr_115: -0.6752518987733652 - sys_corr_116: -0.05099435335768919 - sys_corr_117: -0.7996828702270891 - sys_corr_118: -0.17499760989496885 - sys_corr_119: -0.0038344917174022897 - sys_corr_120: 0.5469133919339066 - sys_corr_121: -0.005477709474137119 - sys_corr_122: 0.055101225724305036 - sys_corr_123: -0.02735834042649857 - sys_corr_124: -1.561526834126656 - sys_corr_125: -0.2212826765606885 - sys_corr_126: -0.010156935100006495 - sys_corr_127: -31.064311843611918 - sys_corr_128: 0.1809905502700317 - sys_corr_129: -0.024222049690918727 - sys_corr_130: 0.00048508626286824445 - sys_corr_131: -0.2933187393346128 - sys_corr_132: 0.098705334341315 +- sys_corr_1: 3.10189341e+01 + sys_corr_2: 1.23753336e+01 + sys_corr_3: -1.29090671e+01 + sys_corr_4: 3.78208094e+00 + sys_corr_5: -9.80627733e+00 + sys_corr_6: 5.01896226e+00 + sys_corr_7: -1.43379441e+00 + sys_corr_8: -1.27760172e+01 + sys_corr_9: -9.76375005e-01 + sys_corr_10: 1.78696270e+00 + sys_corr_11: -1.02528027e+01 + sys_corr_12: -7.56183871e+00 + sys_corr_13: 4.41443287e+00 + sys_corr_14: 4.35783482e+00 + sys_corr_15: 7.76997280e+00 + sys_corr_16: 6.85785394e+00 + sys_corr_17: -9.74030621e-01 + sys_corr_18: 3.39464516e+00 + sys_corr_19: -5.03833417e-01 + sys_corr_20: -1.36723036e+00 + sys_corr_21: -2.27424036e+00 + sys_corr_22: 7.79115894e+00 + sys_corr_23: 4.45490568e+00 + sys_corr_24: -4.23061927e-01 + sys_corr_25: 4.06837376e+00 + sys_corr_26: 6.46593635e+00 + sys_corr_27: -1.84413743e+00 + sys_corr_28: -5.66597819e-01 + sys_corr_29: 2.94005709e+00 + sys_corr_30: 6.52656244e+00 + sys_corr_31: 1.22567797e-01 + sys_corr_32: 1.42764624e+00 + sys_corr_33: 2.35690216e-01 + sys_corr_34: -3.13578570e+00 + sys_corr_35: 8.03214677e-01 + sys_corr_36: -8.05443433e-01 + sys_corr_37: -1.60715977e+00 + sys_corr_38: -9.66611399e-01 + sys_corr_39: -2.32857434e-01 + sys_corr_40: 2.91824977e-01 + sys_corr_41: -1.07105065e+00 + sys_corr_42: 7.58824418e-01 + sys_corr_43: -9.29889614e-01 + sys_corr_44: 1.51066243e+00 + sys_corr_45: 5.75236385e-01 + sys_corr_46: -4.67461224e-01 + sys_corr_47: -6.28607611e-01 + sys_corr_48: 2.48699851e+00 + sys_corr_49: -3.24020050e+00 + sys_corr_50: 7.74167311e-01 + sys_corr_51: -7.02255884e-01 + sys_corr_52: -1.14704451e+00 + sys_corr_53: -1.52250642e-01 + sys_corr_54: -3.98129559e+00 + sys_corr_55: -2.44153062e+00 + sys_corr_56: -1.68338889e+00 + sys_corr_57: 4.96363600e-01 + sys_corr_58: 2.89165127e+00 + sys_corr_59: 1.56292924e+00 + sys_corr_60: -6.87391016e-01 + sys_corr_61: 7.12219273e-02 + sys_corr_62: -1.50728883e+00 + sys_corr_63: 1.90399981e-02 + sys_corr_64: 2.15272166e+00 + sys_corr_65: 3.69193841e+00 + sys_corr_66: -4.05105046e-01 + sys_corr_67: -7.94489581e-01 + sys_corr_68: 1.80830645e-02 + sys_corr_69: 5.44812310e-01 + sys_corr_70: 1.36120797e+00 + sys_corr_71: -1.20439581e+00 + sys_corr_72: -1.77151655e+00 + sys_corr_73: -6.66280379e+00 + sys_corr_74: -1.73706184e+00 + sys_corr_75: 2.69842669e-01 + sys_corr_76: -2.88045028e+00 + sys_corr_77: -3.37733370e+00 + sys_corr_78: 3.31855162e+00 + sys_corr_79: 4.05730723e+00 + sys_corr_80: 3.78883688e+00 + sys_corr_81: 3.28852151e+00 + sys_corr_82: 1.79040851e+00 + sys_corr_83: 6.97668499e+00 + sys_corr_84: -4.20959518e+01 + sys_corr_85: 3.18514482e+01 + sys_corr_86: 3.31409477e+00 + sys_corr_87: -8.92661298e-01 + sys_corr_88: 2.38411797e+00 + sys_corr_89: 2.79324199e+00 + sys_corr_90: 1.05872440e+01 + sys_corr_91: 5.07108998e+01 + sys_corr_92: -4.35404954e+00 + sys_corr_93: -4.90816170e+01 + sys_corr_94: 1.34885012e+01 + sys_corr_95: -4.72882277e+00 + sys_corr_96: 3.40537775e+01 + sys_corr_97: 3.93633223e+01 + sys_corr_98: -1.00714586e+02 + sys_corr_99: -3.85012438e+01 + sys_corr_100: -1.71043119e+00 + sys_corr_101: -2.65599471e+00 + sys_corr_102: 3.54712898e+00 + sys_corr_103: -7.29332676e+00 + sys_corr_104: 5.16550118e+00 + sys_corr_105: -6.79848019e-01 + sys_corr_106: -4.68915673e-01 + sys_corr_107: 1.82453697e+00 + sys_corr_108: -1.50242735e+00 + sys_corr_109: -2.46746204e-01 + sys_corr_110: -8.37765436e+00 + sys_corr_111: -1.40339186e+00 + sys_corr_112: -4.34658305e-01 + sys_corr_113: -5.62689747e-01 + sys_corr_114: -8.58784185e-04 + sys_corr_115: -6.75251899e-01 + sys_corr_116: -5.09943534e-02 + sys_corr_117: -7.99682870e-01 + sys_corr_118: -1.74997610e-01 + sys_corr_119: -3.83449172e-03 + sys_corr_120: 5.46913392e-01 + sys_corr_121: -5.47770947e-03 + sys_corr_122: 5.51012257e-02 + sys_corr_123: -2.73583404e-02 + sys_corr_124: -1.56152683e+00 + sys_corr_125: -2.21282677e-01 + sys_corr_126: -1.01569351e-02 + sys_corr_127: -3.10643118e+01 + sys_corr_128: 1.80990550e-01 + sys_corr_129: -2.42220497e-02 + sys_corr_130: 4.85086263e-04 + sys_corr_131: -2.93318739e-01 + sys_corr_132: 9.87053343e-02 stat: 0.0 - luminosity: 77.49416400000001 -- sys_corr_1: 29.519526451734066 - sys_corr_2: 15.87830667282869 - sys_corr_3: -13.253472916365311 - sys_corr_4: 8.127288236579549 - sys_corr_5: -9.832582693023813 - sys_corr_6: 2.966812282291192 - sys_corr_7: -7.621971938980687 - sys_corr_8: -0.18718048855932265 - sys_corr_9: -9.465198248999684 - sys_corr_10: 1.0977423924817913 - sys_corr_11: -1.7137261476693924 - sys_corr_12: -8.364310803560087 - sys_corr_13: -5.773207932912124 - sys_corr_14: -0.364223632341017 - sys_corr_15: -11.652099769312288 - sys_corr_16: 1.7864731306372552 - sys_corr_17: -0.2929533158686036 - sys_corr_18: 2.5603150749226784 - sys_corr_19: -0.026387917299225853 - sys_corr_20: -0.6066078828785071 - sys_corr_21: -1.3417341625882881 - sys_corr_22: 6.628180913434726 - sys_corr_23: 4.808764159847082 - sys_corr_24: -1.3591181235275027 - sys_corr_25: 2.519326964762927 - sys_corr_26: 6.317153381482495 - sys_corr_27: 0.16242294270360885 - sys_corr_28: -0.6954965694963752 - sys_corr_29: 1.9395380063806336 - sys_corr_30: 4.601287169045019 - sys_corr_31: -1.8349873922613116 - sys_corr_32: 1.6652291151819825 - sys_corr_33: 0.11039036891449076 - sys_corr_34: -3.431451549146428 - sys_corr_35: 0.3568418364781554 - sys_corr_36: -0.6839077563017776 - sys_corr_37: -1.4511118497445186 - sys_corr_38: -1.2669853643636424 - sys_corr_39: -0.7577828845751455 - sys_corr_40: -0.33372509332847833 - sys_corr_41: -0.8344617148141944 - sys_corr_42: 1.204135881695659 - sys_corr_43: -0.8114700680556168 - sys_corr_44: 0.8651453776236251 - sys_corr_45: 0.45330106742557236 - sys_corr_46: 0.0776515680905074 - sys_corr_47: 0.04508857878981824 - sys_corr_48: 1.3730981891660483 - sys_corr_49: -2.6090448226001723 - sys_corr_50: 0.5657841768902184 - sys_corr_51: -0.22555319681930258 - sys_corr_52: -0.8301941731307774 - sys_corr_53: -0.3442103459329574 - sys_corr_54: -3.4744215417780855 - sys_corr_55: -1.95302934342343 - sys_corr_56: -1.453286240254726 - sys_corr_57: 0.4528396689684502 - sys_corr_58: 2.0047403233821415 - sys_corr_59: 1.0628004503856778 - sys_corr_60: -0.6463504705935058 - sys_corr_61: 0.6149614969628125 - sys_corr_62: -1.2217375674576496 - sys_corr_63: 0.5780069252360475 - sys_corr_64: 1.7926328770842401 - sys_corr_65: 3.0783640712280955 - sys_corr_66: 0.39765729222042984 - sys_corr_67: -1.1432926238095635 - sys_corr_68: 0.005263841323517183 - sys_corr_69: 0.7271389928817362 - sys_corr_70: 1.0172979396473916 - sys_corr_71: -0.7807078676191291 - sys_corr_72: -1.2186843637489309 - sys_corr_73: -4.84547913238429 - sys_corr_74: -1.6022748545350123 - sys_corr_75: -0.25549226671771647 - sys_corr_76: -2.0702169369044556 - sys_corr_77: -2.201410573873584 - sys_corr_78: 2.700283351746517 - sys_corr_79: 2.934435051007613 - sys_corr_80: 2.6922736555602778 - sys_corr_81: 2.9080581369809417 - sys_corr_82: 0.03222022718313567 - sys_corr_83: 5.80625305886083 - sys_corr_84: -32.82628497389132 - sys_corr_85: 23.119946761725934 - sys_corr_86: 3.250260462912673 - sys_corr_87: -0.8703639844906363 - sys_corr_88: 2.331397814816488 - sys_corr_89: 2.6949125609821305 - sys_corr_90: 7.009590120942575 - sys_corr_91: 36.78258930596 - sys_corr_92: -4.160511381075785 - sys_corr_93: 3.6089170584119867 - sys_corr_94: -1.3860939443651399 - sys_corr_95: -0.5508853764524301 - sys_corr_96: -8.858891672010854 - sys_corr_97: 0.28696122860414386 - sys_corr_98: 45.78819642289853 - sys_corr_99: -10.941059448152892 - sys_corr_100: -3.317006890544907 - sys_corr_101: -2.6770112821678245 - sys_corr_102: 16.676769923625315 - sys_corr_103: 5.561197207353848 - sys_corr_104: 61.08172394430046 - sys_corr_105: -1.4064277596723773 - sys_corr_106: -1.8450460942185103 - sys_corr_107: 1.908159594238976 - sys_corr_108: -1.9008685938727325 - sys_corr_109: -0.07058388644384195 - sys_corr_110: 70.31471304100083 - sys_corr_111: -1.8213846905707531 - sys_corr_112: -0.2832854666352536 - sys_corr_113: -0.1928660871334915 - sys_corr_114: -0.003496191992450915 - sys_corr_115: -0.8899173674035141 - sys_corr_116: -1.0539143564813582 - sys_corr_117: 0.12364020058746582 - sys_corr_118: -0.29664914456109953 - sys_corr_119: 0.00045277066600460245 - sys_corr_120: 0.39348978045191185 - sys_corr_121: -0.002923434814859085 - sys_corr_122: 0.07338239764486894 - sys_corr_123: -0.015560926874772148 - sys_corr_124: -1.4385085511379296 - sys_corr_125: -0.2244301976221409 - sys_corr_126: -0.0036498030848731576 - sys_corr_127: -73.59368106324396 - sys_corr_128: 0.5417963137900702 - sys_corr_129: 0.054624825545623396 - sys_corr_130: 0.008872998123437498 - sys_corr_131: -0.280722089104967 - sys_corr_132: -0.08953094756986323 + luminosity: 7.74941640e+01 +- sys_corr_1: 2.95195265e+01 + sys_corr_2: 1.58783067e+01 + sys_corr_3: -1.32534729e+01 + sys_corr_4: 8.12728824e+00 + sys_corr_5: -9.83258269e+00 + sys_corr_6: 2.96681228e+00 + sys_corr_7: -7.62197194e+00 + sys_corr_8: -1.87180489e-01 + sys_corr_9: -9.46519825e+00 + sys_corr_10: 1.09774239e+00 + sys_corr_11: -1.71372615e+00 + sys_corr_12: -8.36431080e+00 + sys_corr_13: -5.77320793e+00 + sys_corr_14: -3.64223632e-01 + sys_corr_15: -1.16520998e+01 + sys_corr_16: 1.78647313e+00 + sys_corr_17: -2.92953316e-01 + sys_corr_18: 2.56031507e+00 + sys_corr_19: -2.63879173e-02 + sys_corr_20: -6.06607883e-01 + sys_corr_21: -1.34173416e+00 + sys_corr_22: 6.62818091e+00 + sys_corr_23: 4.80876416e+00 + sys_corr_24: -1.35911812e+00 + sys_corr_25: 2.51932696e+00 + sys_corr_26: 6.31715338e+00 + sys_corr_27: 1.62422943e-01 + sys_corr_28: -6.95496569e-01 + sys_corr_29: 1.93953801e+00 + sys_corr_30: 4.60128717e+00 + sys_corr_31: -1.83498739e+00 + sys_corr_32: 1.66522912e+00 + sys_corr_33: 1.10390369e-01 + sys_corr_34: -3.43145155e+00 + sys_corr_35: 3.56841836e-01 + sys_corr_36: -6.83907756e-01 + sys_corr_37: -1.45111185e+00 + sys_corr_38: -1.26698536e+00 + sys_corr_39: -7.57782885e-01 + sys_corr_40: -3.33725093e-01 + sys_corr_41: -8.34461715e-01 + sys_corr_42: 1.20413588e+00 + sys_corr_43: -8.11470068e-01 + sys_corr_44: 8.65145378e-01 + sys_corr_45: 4.53301067e-01 + sys_corr_46: 7.76515681e-02 + sys_corr_47: 4.50885788e-02 + sys_corr_48: 1.37309819e+00 + sys_corr_49: -2.60904482e+00 + sys_corr_50: 5.65784177e-01 + sys_corr_51: -2.25553197e-01 + sys_corr_52: -8.30194173e-01 + sys_corr_53: -3.44210346e-01 + sys_corr_54: -3.47442154e+00 + sys_corr_55: -1.95302934e+00 + sys_corr_56: -1.45328624e+00 + sys_corr_57: 4.52839669e-01 + sys_corr_58: 2.00474032e+00 + sys_corr_59: 1.06280045e+00 + sys_corr_60: -6.46350471e-01 + sys_corr_61: 6.14961497e-01 + sys_corr_62: -1.22173757e+00 + sys_corr_63: 5.78006925e-01 + sys_corr_64: 1.79263288e+00 + sys_corr_65: 3.07836407e+00 + sys_corr_66: 3.97657292e-01 + sys_corr_67: -1.14329262e+00 + sys_corr_68: 5.26384132e-03 + sys_corr_69: 7.27138993e-01 + sys_corr_70: 1.01729794e+00 + sys_corr_71: -7.80707868e-01 + sys_corr_72: -1.21868436e+00 + sys_corr_73: -4.84547913e+00 + sys_corr_74: -1.60227485e+00 + sys_corr_75: -2.55492267e-01 + sys_corr_76: -2.07021694e+00 + sys_corr_77: -2.20141057e+00 + sys_corr_78: 2.70028335e+00 + sys_corr_79: 2.93443505e+00 + sys_corr_80: 2.69227366e+00 + sys_corr_81: 2.90805814e+00 + sys_corr_82: 3.22202272e-02 + sys_corr_83: 5.80625306e+00 + sys_corr_84: -3.28262850e+01 + sys_corr_85: 2.31199468e+01 + sys_corr_86: 3.25026046e+00 + sys_corr_87: -8.70363984e-01 + sys_corr_88: 2.33139781e+00 + sys_corr_89: 2.69491256e+00 + sys_corr_90: 7.00959012e+00 + sys_corr_91: 3.67825893e+01 + sys_corr_92: -4.16051138e+00 + sys_corr_93: 3.60891706e+00 + sys_corr_94: -1.38609394e+00 + sys_corr_95: -5.50885376e-01 + sys_corr_96: -8.85889167e+00 + sys_corr_97: 2.86961229e-01 + sys_corr_98: 4.57881964e+01 + sys_corr_99: -1.09410594e+01 + sys_corr_100: -3.31700689e+00 + sys_corr_101: -2.67701128e+00 + sys_corr_102: 1.66767699e+01 + sys_corr_103: 5.56119721e+00 + sys_corr_104: 6.10817239e+01 + sys_corr_105: -1.40642776e+00 + sys_corr_106: -1.84504609e+00 + sys_corr_107: 1.90815959e+00 + sys_corr_108: -1.90086859e+00 + sys_corr_109: -7.05838864e-02 + sys_corr_110: 7.03147130e+01 + sys_corr_111: -1.82138469e+00 + sys_corr_112: -2.83285467e-01 + sys_corr_113: -1.92866087e-01 + sys_corr_114: -3.49619199e-03 + sys_corr_115: -8.89917367e-01 + sys_corr_116: -1.05391436e+00 + sys_corr_117: 1.23640201e-01 + sys_corr_118: -2.96649145e-01 + sys_corr_119: 4.52770666e-04 + sys_corr_120: 3.93489780e-01 + sys_corr_121: -2.92343481e-03 + sys_corr_122: 7.33823976e-02 + sys_corr_123: -1.55609269e-02 + sys_corr_124: -1.43850855e+00 + sys_corr_125: -2.24430198e-01 + sys_corr_126: -3.64980308e-03 + sys_corr_127: -7.35936811e+01 + sys_corr_128: 5.41796314e-01 + sys_corr_129: 5.46248255e-02 + sys_corr_130: 8.87299812e-03 + sys_corr_131: -2.80722089e-01 + sys_corr_132: -8.95309476e-02 stat: 0.0 luminosity: 74.42028 -- sys_corr_1: 31.517263806878184 - sys_corr_2: 10.20946806383945 - sys_corr_3: -15.535805139826238 - sys_corr_4: 18.201625849484955 - sys_corr_5: -8.232440798129566 - sys_corr_6: 3.825609897771722 - sys_corr_7: -3.983561593727962 - sys_corr_8: -1.5097739367608793 - sys_corr_9: -15.400004651465176 - sys_corr_10: 3.061276051908629 - sys_corr_11: -2.7719544063236876 - sys_corr_12: -5.646753161998971 - sys_corr_13: 6.181201354632333 - sys_corr_14: 3.830322034501773 - sys_corr_15: 13.021718825410009 - sys_corr_16: -7.390972684774223 - sys_corr_17: 4.406310031671234 - sys_corr_18: -9.767575776129874 - sys_corr_19: -2.7602278269965397 - sys_corr_20: -3.201723577894954 - sys_corr_21: -1.1353537048860223 - sys_corr_22: 5.465618598417975 - sys_corr_23: 4.856300644130235 - sys_corr_24: -1.3731637966366992 - sys_corr_25: 0.49183322155830417 - sys_corr_26: 2.0788385806541787 - sys_corr_27: 1.9542879970793925 - sys_corr_28: 0.9506816194437642 - sys_corr_29: -1.5133856020358853 - sys_corr_30: 6.548377934704238 - sys_corr_31: -3.9305587737042007 - sys_corr_32: 1.6347117272633962 - sys_corr_33: -0.016971848129538034 - sys_corr_34: -2.088769979345262 - sys_corr_35: 1.233581931730383 - sys_corr_36: 0.06088281860762017 - sys_corr_37: -0.8395705202665212 - sys_corr_38: -1.2091237745624412 - sys_corr_39: -0.3996183096347858 - sys_corr_40: -0.6884915958311163 - sys_corr_41: -2.007480929722946 - sys_corr_42: 1.2292238761947554 - sys_corr_43: -2.2017992286896426 - sys_corr_44: 0.0372761152140486 - sys_corr_45: -0.7002484217288685 - sys_corr_46: -0.10909353206717406 - sys_corr_47: -0.8644157458460761 - sys_corr_48: -0.5492312376069884 - sys_corr_49: -1.376402099176287 - sys_corr_50: 0.9407797917003574 - sys_corr_51: -0.7074613460548973 - sys_corr_52: 0.1409190047218108 - sys_corr_53: 0.8992893443637858 - sys_corr_54: -2.7661369226222896 - sys_corr_55: -1.259640026998232 - sys_corr_56: -1.1033411668035742 - sys_corr_57: 1.2389529274221607 - sys_corr_58: 1.8055219109389147 - sys_corr_59: 1.0273175089607973 - sys_corr_60: -0.03427508910345293 - sys_corr_61: 0.39239812160952875 - sys_corr_62: -1.8806708741462033 - sys_corr_63: -0.0502107410483376 - sys_corr_64: 1.6560922918465686 - sys_corr_65: 2.4077540933523993 - sys_corr_66: 0.26088225696650924 - sys_corr_67: -0.6302953168535996 - sys_corr_68: 0.5577001057689469 - sys_corr_69: 1.382241612255386 - sys_corr_70: 0.38506477006801587 - sys_corr_71: -0.510395183930757 - sys_corr_72: -1.6706558261587052 - sys_corr_73: -5.0366918301485315 - sys_corr_74: -1.2567927447321514 - sys_corr_75: 1.9468176099024472 - sys_corr_76: -2.4238841325385008 - sys_corr_77: -3.1600193854219256 - sys_corr_78: 3.7519943246916427 - sys_corr_79: 2.833009717283 - sys_corr_80: 2.6522421558274183 - sys_corr_81: 3.7823171376903875 - sys_corr_82: 0.6936708319782204 - sys_corr_83: 6.84876522095834 - sys_corr_84: -34.187848670999145 - sys_corr_85: 23.73655966260398 - sys_corr_86: 2.8293130859330513 - sys_corr_87: -0.6521513634724312 - sys_corr_88: 1.9317737543724445 - sys_corr_89: 3.550780152350245 - sys_corr_90: 5.369173747663442 - sys_corr_91: 37.960444590289136 - sys_corr_92: -4.513786745733447 - sys_corr_93: -3.9894980054596307 - sys_corr_94: -2.36023373824947 - sys_corr_95: -1.4662722543726796 - sys_corr_96: 2.234759882105433 - sys_corr_97: 17.351270469073473 - sys_corr_98: -26.127343600289382 - sys_corr_99: 80.18892279258993 - sys_corr_100: -3.1849819092602294 - sys_corr_101: 3.610391696409145 - sys_corr_102: 16.834337845585733 - sys_corr_103: 13.007245207083002 - sys_corr_104: 56.744917726660525 - sys_corr_105: -2.8779474952114374 - sys_corr_106: -1.4916207178828533 - sys_corr_107: 2.009017167932498 - sys_corr_108: -0.8395506045798835 - sys_corr_109: -0.014374410613531804 - sys_corr_110: 24.171402905366154 - sys_corr_111: -1.5523874867955099 - sys_corr_112: -0.18410998319028793 - sys_corr_113: -0.14133005916839111 - sys_corr_114: -0.006334459462920806 - sys_corr_115: -0.8179063650620354 - sys_corr_116: -0.874264232199202 - sys_corr_117: 0.19822904342102854 - sys_corr_118: -0.27359048646116674 - sys_corr_119: 0.004998212291491396 - sys_corr_120: 0.33132917518160104 - sys_corr_121: -0.0035309780175575957 - sys_corr_122: 0.07759192411979772 - sys_corr_123: -0.00832382895092408 - sys_corr_124: -1.3213708887677516 - sys_corr_125: -0.20885931178395759 - sys_corr_126: 0.004724480437443903 - sys_corr_127: 72.22411561878697 - sys_corr_128: 0.3673665419413022 - sys_corr_129: 0.04051400553360371 - sys_corr_130: 0.01994721184316654 - sys_corr_131: -0.25561640652843676 - sys_corr_132: -0.21745456810783775 +- sys_corr_1: 3.15172638e+01 + sys_corr_2: 1.02094681e+01 + sys_corr_3: -1.55358051e+01 + sys_corr_4: 1.82016258e+01 + sys_corr_5: -8.23244080e+00 + sys_corr_6: 3.82560990e+00 + sys_corr_7: -3.98356159e+00 + sys_corr_8: -1.50977394e+00 + sys_corr_9: -1.54000047e+01 + sys_corr_10: 3.06127605e+00 + sys_corr_11: -2.77195441e+00 + sys_corr_12: -5.64675316e+00 + sys_corr_13: 6.18120135e+00 + sys_corr_14: 3.83032203e+00 + sys_corr_15: 1.30217188e+01 + sys_corr_16: -7.39097268e+00 + sys_corr_17: 4.40631003e+00 + sys_corr_18: -9.76757578e+00 + sys_corr_19: -2.76022783e+00 + sys_corr_20: -3.20172358e+00 + sys_corr_21: -1.13535370e+00 + sys_corr_22: 5.46561860e+00 + sys_corr_23: 4.85630064e+00 + sys_corr_24: -1.37316380e+00 + sys_corr_25: 4.91833222e-01 + sys_corr_26: 2.07883858e+00 + sys_corr_27: 1.95428800e+00 + sys_corr_28: 9.50681619e-01 + sys_corr_29: -1.51338560e+00 + sys_corr_30: 6.54837793e+00 + sys_corr_31: -3.93055877e+00 + sys_corr_32: 1.63471173e+00 + sys_corr_33: -1.69718481e-02 + sys_corr_34: -2.08876998e+00 + sys_corr_35: 1.23358193e+00 + sys_corr_36: 6.08828186e-02 + sys_corr_37: -8.39570520e-01 + sys_corr_38: -1.20912377e+00 + sys_corr_39: -3.99618310e-01 + sys_corr_40: -6.88491596e-01 + sys_corr_41: -2.00748093e+00 + sys_corr_42: 1.22922388e+00 + sys_corr_43: -2.20179923e+00 + sys_corr_44: 3.72761152e-02 + sys_corr_45: -7.00248422e-01 + sys_corr_46: -1.09093532e-01 + sys_corr_47: -8.64415746e-01 + sys_corr_48: -5.49231238e-01 + sys_corr_49: -1.37640210e+00 + sys_corr_50: 9.40779792e-01 + sys_corr_51: -7.07461346e-01 + sys_corr_52: 1.40919005e-01 + sys_corr_53: 8.99289344e-01 + sys_corr_54: -2.76613692e+00 + sys_corr_55: -1.25964003e+00 + sys_corr_56: -1.10334117e+00 + sys_corr_57: 1.23895293e+00 + sys_corr_58: 1.80552191e+00 + sys_corr_59: 1.02731751e+00 + sys_corr_60: -3.42750891e-02 + sys_corr_61: 3.92398122e-01 + sys_corr_62: -1.88067087e+00 + sys_corr_63: -5.02107410e-02 + sys_corr_64: 1.65609229e+00 + sys_corr_65: 2.40775409e+00 + sys_corr_66: 2.60882257e-01 + sys_corr_67: -6.30295317e-01 + sys_corr_68: 5.57700106e-01 + sys_corr_69: 1.38224161e+00 + sys_corr_70: 3.85064770e-01 + sys_corr_71: -5.10395184e-01 + sys_corr_72: -1.67065583e+00 + sys_corr_73: -5.03669183e+00 + sys_corr_74: -1.25679274e+00 + sys_corr_75: 1.94681761e+00 + sys_corr_76: -2.42388413e+00 + sys_corr_77: -3.16001939e+00 + sys_corr_78: 3.75199432e+00 + sys_corr_79: 2.83300972e+00 + sys_corr_80: 2.65224216e+00 + sys_corr_81: 3.78231714e+00 + sys_corr_82: 6.93670832e-01 + sys_corr_83: 6.84876522e+00 + sys_corr_84: -3.41878487e+01 + sys_corr_85: 2.37365597e+01 + sys_corr_86: 2.82931309e+00 + sys_corr_87: -6.52151363e-01 + sys_corr_88: 1.93177375e+00 + sys_corr_89: 3.55078015e+00 + sys_corr_90: 5.36917375e+00 + sys_corr_91: 3.79604446e+01 + sys_corr_92: -4.51378675e+00 + sys_corr_93: -3.98949801e+00 + sys_corr_94: -2.36023374e+00 + sys_corr_95: -1.46627225e+00 + sys_corr_96: 2.23475988e+00 + sys_corr_97: 1.73512705e+01 + sys_corr_98: -2.61273436e+01 + sys_corr_99: 8.01889228e+01 + sys_corr_100: -3.18498191e+00 + sys_corr_101: 3.61039170e+00 + sys_corr_102: 1.68343378e+01 + sys_corr_103: 1.30072452e+01 + sys_corr_104: 5.67449177e+01 + sys_corr_105: -2.87794750e+00 + sys_corr_106: -1.49162072e+00 + sys_corr_107: 2.00901717e+00 + sys_corr_108: -8.39550605e-01 + sys_corr_109: -1.43744106e-02 + sys_corr_110: 2.41714029e+01 + sys_corr_111: -1.55238749e+00 + sys_corr_112: -1.84109983e-01 + sys_corr_113: -1.41330059e-01 + sys_corr_114: -6.33445946e-03 + sys_corr_115: -8.17906365e-01 + sys_corr_116: -8.74264232e-01 + sys_corr_117: 1.98229043e-01 + sys_corr_118: -2.73590486e-01 + sys_corr_119: 4.99821229e-03 + sys_corr_120: 3.31329175e-01 + sys_corr_121: -3.53097802e-03 + sys_corr_122: 7.75919241e-02 + sys_corr_123: -8.32382895e-03 + sys_corr_124: -1.32137089e+00 + sys_corr_125: -2.08859312e-01 + sys_corr_126: 4.72448044e-03 + sys_corr_127: 7.22241156e+01 + sys_corr_128: 3.67366542e-01 + sys_corr_129: 4.05140055e-02 + sys_corr_130: 1.99472118e-02 + sys_corr_131: -2.55616407e-01 + sys_corr_132: -2.17454568e-01 stat: 0.0 - luminosity: 77.47535400000001 -- sys_corr_1: 29.79570751069889 - sys_corr_2: 13.443625996969647 - sys_corr_3: -16.674655977139214 - sys_corr_4: 22.0392142922592 - sys_corr_5: -3.788657629052696 - sys_corr_6: 3.9885119641201747 - sys_corr_7: 0.48936127119475864 - sys_corr_8: -7.293339841904737 - sys_corr_9: -9.089214593803769 - sys_corr_10: -0.48387386026593 - sys_corr_11: -0.786266029174591 - sys_corr_12: 6.558028124082776 - sys_corr_13: 8.157410806443265 - sys_corr_14: -6.747616330101549 - sys_corr_15: -2.4908969095848406 - sys_corr_16: 12.741003308700842 - sys_corr_17: -2.9630100236543644 - sys_corr_18: 11.331187196909772 - sys_corr_19: -2.08023565338248 - sys_corr_20: -1.674651433023408 - sys_corr_21: -3.9935331757198984 - sys_corr_22: 3.1338272595999173 - sys_corr_23: 4.208056370800128 - sys_corr_24: 1.7917545348831312 - sys_corr_25: 0.6533959363308607 - sys_corr_26: -0.12325711429350823 - sys_corr_27: 3.035857739126005 - sys_corr_28: 2.139834096425867 - sys_corr_29: -3.939162554643626 - sys_corr_30: 6.1593605708262364 - sys_corr_31: -4.95143316557816 - sys_corr_32: 2.4755803640825427 - sys_corr_33: 0.4865154418664372 - sys_corr_34: -5.29589727031451 - sys_corr_35: 1.2878436008669476 - sys_corr_36: -0.776483339639716 - sys_corr_37: -1.3730155426280848 - sys_corr_38: -0.6949387003175128 - sys_corr_39: -3.017900104131289 - sys_corr_40: 0.020481834197549297 - sys_corr_41: -1.144126665264293 - sys_corr_42: 1.691818551529529 - sys_corr_43: 0.912683301270812 - sys_corr_44: 2.0905493799920136 - sys_corr_45: 1.031490235812843 - sys_corr_46: -0.4204902861756967 - sys_corr_47: 1.1685429710610462 - sys_corr_48: 1.6510539981957983 - sys_corr_49: 1.3020895399145722 - sys_corr_50: 0.36206629697344767 - sys_corr_51: -0.23586253674249674 - sys_corr_52: -0.7786127838368636 - sys_corr_53: -0.19367623387471133 - sys_corr_54: -1.469389518553374 - sys_corr_55: -1.5006129191407025 - sys_corr_56: -0.25934061478767856 - sys_corr_57: 1.9111942525781824 - sys_corr_58: 2.4438391454994135 - sys_corr_59: 1.4086741559928424 - sys_corr_60: 0.008146670583850463 - sys_corr_61: 0.2708148508322239 - sys_corr_62: -2.986437577184727 - sys_corr_63: -0.34385821824843527 - sys_corr_64: 1.5323441496542665 - sys_corr_65: 1.2213943323638847 - sys_corr_66: -0.2822606392872416 - sys_corr_67: -0.2569447691186729 - sys_corr_68: -0.3041035089257543 - sys_corr_69: 2.2126374775619326 - sys_corr_70: 0.05314160545871028 - sys_corr_71: -0.7641552081685257 - sys_corr_72: -1.3268082991990096 - sys_corr_73: -3.5124490839453166 - sys_corr_74: -1.1540683529293412 - sys_corr_75: 2.258489575697289 - sys_corr_76: -3.7247056927297373 - sys_corr_77: -4.434827037273465 - sys_corr_78: 3.5679401748048027 - sys_corr_79: 3.3134737693395255 - sys_corr_80: 2.3022179039589905 - sys_corr_81: 3.720232617507766 - sys_corr_82: -0.4889657980138617 - sys_corr_83: 6.418960789083996 - sys_corr_84: -30.971789850348607 - sys_corr_85: 26.40243744542675 - sys_corr_86: 3.694687024878067 - sys_corr_87: 0.9552525017793783 - sys_corr_88: 2.8346458644905947 - sys_corr_89: 3.8192419463701257 - sys_corr_90: 5.436202879372175 - sys_corr_91: 37.07491316117207 - sys_corr_92: -4.034818851264395 - sys_corr_93: -10.603345688245438 - sys_corr_94: -10.760686314422893 - sys_corr_95: -2.6205817188503593 - sys_corr_96: -6.813739411111545 - sys_corr_97: 56.40744518508296 - sys_corr_98: 55.43487961824973 - sys_corr_99: -83.79973726785322 - sys_corr_100: 0.9993527126312943 - sys_corr_101: 16.82869433379177 - sys_corr_102: -1.9101377621859965 - sys_corr_103: 3.650146815619931 - sys_corr_104: 9.392954946126038 - sys_corr_105: -1.4678557069910345 - sys_corr_106: -1.0105784229120147 - sys_corr_107: 0.44338391718243364 - sys_corr_108: -1.4192271664258203 - sys_corr_109: 0.5188009222764316 - sys_corr_110: -5.356373432393263 - sys_corr_111: -0.4478264470084219 - sys_corr_112: 0.15638933695731877 - sys_corr_113: 0.061187095253346535 - sys_corr_114: -0.006898026515360266 - sys_corr_115: -0.800674173373751 - sys_corr_116: -0.3621879957396758 - sys_corr_117: -0.27307679686267355 - sys_corr_118: -0.3172980032922565 - sys_corr_119: 0.005844025827715064 - sys_corr_120: -0.6188798556744382 - sys_corr_121: 0.000170142881804045 - sys_corr_122: 0.10279489392809074 - sys_corr_123: 0.013445016487925695 - sys_corr_124: -0.7844322610546124 - sys_corr_125: -0.17891306816398686 - sys_corr_126: 0.014346893230057396 - sys_corr_127: 63.68826768311037 - sys_corr_128: 0.5667064213012558 - sys_corr_129: 0.1564893667852725 - sys_corr_130: 0.013247730627807172 - sys_corr_131: -0.11500007560687746 - sys_corr_132: -0.24092371702744833 + luminosity: 7.74753540e+01 +- sys_corr_1: 2.97957075e+01 + sys_corr_2: 1.34436260e+01 + sys_corr_3: -1.66746560e+01 + sys_corr_4: 2.20392143e+01 + sys_corr_5: -3.78865763e+00 + sys_corr_6: 3.98851196e+00 + sys_corr_7: 4.89361271e-01 + sys_corr_8: -7.29333984e+00 + sys_corr_9: -9.08921459e+00 + sys_corr_10: -4.83873860e-01 + sys_corr_11: -7.86266029e-01 + sys_corr_12: 6.55802812e+00 + sys_corr_13: 8.15741081e+00 + sys_corr_14: -6.74761633e+00 + sys_corr_15: -2.49089691e+00 + sys_corr_16: 1.27410033e+01 + sys_corr_17: -2.96301002e+00 + sys_corr_18: 1.13311872e+01 + sys_corr_19: -2.08023565e+00 + sys_corr_20: -1.67465143e+00 + sys_corr_21: -3.99353318e+00 + sys_corr_22: 3.13382726e+00 + sys_corr_23: 4.20805637e+00 + sys_corr_24: 1.79175453e+00 + sys_corr_25: 6.53395936e-01 + sys_corr_26: -1.23257114e-01 + sys_corr_27: 3.03585774e+00 + sys_corr_28: 2.13983410e+00 + sys_corr_29: -3.93916255e+00 + sys_corr_30: 6.15936057e+00 + sys_corr_31: -4.95143317e+00 + sys_corr_32: 2.47558036e+00 + sys_corr_33: 4.86515442e-01 + sys_corr_34: -5.29589727e+00 + sys_corr_35: 1.28784360e+00 + sys_corr_36: -7.76483340e-01 + sys_corr_37: -1.37301554e+00 + sys_corr_38: -6.94938700e-01 + sys_corr_39: -3.01790010e+00 + sys_corr_40: 2.04818342e-02 + sys_corr_41: -1.14412667e+00 + sys_corr_42: 1.69181855e+00 + sys_corr_43: 9.12683301e-01 + sys_corr_44: 2.09054938e+00 + sys_corr_45: 1.03149024e+00 + sys_corr_46: -4.20490286e-01 + sys_corr_47: 1.16854297e+00 + sys_corr_48: 1.65105400e+00 + sys_corr_49: 1.30208954e+00 + sys_corr_50: 3.62066297e-01 + sys_corr_51: -2.35862537e-01 + sys_corr_52: -7.78612784e-01 + sys_corr_53: -1.93676234e-01 + sys_corr_54: -1.46938952e+00 + sys_corr_55: -1.50061292e+00 + sys_corr_56: -2.59340615e-01 + sys_corr_57: 1.91119425e+00 + sys_corr_58: 2.44383915e+00 + sys_corr_59: 1.40867416e+00 + sys_corr_60: 8.14667058e-03 + sys_corr_61: 2.70814851e-01 + sys_corr_62: -2.98643758e+00 + sys_corr_63: -3.43858218e-01 + sys_corr_64: 1.53234415e+00 + sys_corr_65: 1.22139433e+00 + sys_corr_66: -2.82260639e-01 + sys_corr_67: -2.56944769e-01 + sys_corr_68: -3.04103509e-01 + sys_corr_69: 2.21263748e+00 + sys_corr_70: 5.31416055e-02 + sys_corr_71: -7.64155208e-01 + sys_corr_72: -1.32680830e+00 + sys_corr_73: -3.51244908e+00 + sys_corr_74: -1.15406835e+00 + sys_corr_75: 2.25848958e+00 + sys_corr_76: -3.72470569e+00 + sys_corr_77: -4.43482704e+00 + sys_corr_78: 3.56794017e+00 + sys_corr_79: 3.31347377e+00 + sys_corr_80: 2.30221790e+00 + sys_corr_81: 3.72023262e+00 + sys_corr_82: -4.88965798e-01 + sys_corr_83: 6.41896079e+00 + sys_corr_84: -3.09717899e+01 + sys_corr_85: 2.64024374e+01 + sys_corr_86: 3.69468702e+00 + sys_corr_87: 9.55252502e-01 + sys_corr_88: 2.83464586e+00 + sys_corr_89: 3.81924195e+00 + sys_corr_90: 5.43620288e+00 + sys_corr_91: 3.70749132e+01 + sys_corr_92: -4.03481885e+00 + sys_corr_93: -1.06033457e+01 + sys_corr_94: -1.07606863e+01 + sys_corr_95: -2.62058172e+00 + sys_corr_96: -6.81373941e+00 + sys_corr_97: 5.64074452e+01 + sys_corr_98: 5.54348796e+01 + sys_corr_99: -8.37997373e+01 + sys_corr_100: 9.99352713e-01 + sys_corr_101: 1.68286943e+01 + sys_corr_102: -1.91013776e+00 + sys_corr_103: 3.65014682e+00 + sys_corr_104: 9.39295495e+00 + sys_corr_105: -1.46785571e+00 + sys_corr_106: -1.01057842e+00 + sys_corr_107: 4.43383917e-01 + sys_corr_108: -1.41922717e+00 + sys_corr_109: 5.18800922e-01 + sys_corr_110: -5.35637343e+00 + sys_corr_111: -4.47826447e-01 + sys_corr_112: 1.56389337e-01 + sys_corr_113: 6.11870953e-02 + sys_corr_114: -6.89802652e-03 + sys_corr_115: -8.00674173e-01 + sys_corr_116: -3.62187996e-01 + sys_corr_117: -2.73076797e-01 + sys_corr_118: -3.17298003e-01 + sys_corr_119: 5.84402583e-03 + sys_corr_120: -6.18879856e-01 + sys_corr_121: 1.70142882e-04 + sys_corr_122: 1.02794894e-01 + sys_corr_123: 1.34450165e-02 + sys_corr_124: -7.84432261e-01 + sys_corr_125: -1.78913068e-01 + sys_corr_126: 1.43468932e-02 + sys_corr_127: 6.36882677e+01 + sys_corr_128: 5.66706421e-01 + sys_corr_129: 1.56489367e-01 + sys_corr_130: 1.32477306e-02 + sys_corr_131: -1.15000076e-01 + sys_corr_132: -2.40923717e-01 stat: 0.0 - luminosity: 72.73794000000001 -- sys_corr_1: 30.28239530997319 - sys_corr_2: 11.093043064510539 - sys_corr_3: -17.36634802928777 - sys_corr_4: 19.31573893280347 - sys_corr_5: 0.9579489947415093 - sys_corr_6: 4.702318529250388 - sys_corr_7: 3.256704204071226 - sys_corr_8: -4.954789185908106 - sys_corr_9: -2.960464945153 - sys_corr_10: -7.996609290846823 - sys_corr_11: -0.3703088417949349 - sys_corr_12: -6.8903809373236635 - sys_corr_13: -6.374974945887693 - sys_corr_14: 4.6142470607377275 - sys_corr_15: -0.7732711274803589 - sys_corr_16: 0.08839664213181352 - sys_corr_17: 0.7147912783692574 - sys_corr_18: -9.059311858817946 - sys_corr_19: 0.8848261837498761 - sys_corr_20: -2.217903474998975 - sys_corr_21: -3.617329741011045 - sys_corr_22: 4.228729678560182 - sys_corr_23: 3.2738116278370253 - sys_corr_24: 2.325293928962624 - sys_corr_25: -2.4698614990638283 - sys_corr_26: -3.586291729133162 - sys_corr_27: 5.244284884186136 - sys_corr_28: -1.8286367824705558 - sys_corr_29: 0.6263475550218487 - sys_corr_30: 6.090745130212458 - sys_corr_31: -4.568352627963351 - sys_corr_32: 0.7155353336664366 - sys_corr_33: -0.9001729904336537 - sys_corr_34: -1.932372299122272 - sys_corr_35: 0.5485033460038702 - sys_corr_36: -0.2671479566680345 - sys_corr_37: 0.6952939107154306 - sys_corr_38: -0.4002580419821321 - sys_corr_39: 1.3059335285133087 - sys_corr_40: 0.48077677288587173 - sys_corr_41: -2.053907494965345 - sys_corr_42: 0.3309843601853994 - sys_corr_43: -0.7508558340567377 - sys_corr_44: 1.610189780329061 - sys_corr_45: -0.9026445896714036 - sys_corr_46: -1.096730550477281 - sys_corr_47: -0.2327511162587169 - sys_corr_48: -0.350825788398926 - sys_corr_49: 0.090808719182542 - sys_corr_50: 1.6577466317593592 - sys_corr_51: -0.006358998686800692 - sys_corr_52: -1.025684395926504 - sys_corr_53: 0.16984671117040046 - sys_corr_54: -1.3473997884813056 - sys_corr_55: -1.684843105397259 - sys_corr_56: -0.8821179353711215 - sys_corr_57: 0.865057073585475 - sys_corr_58: 1.3604884857658017 - sys_corr_59: -0.3257835788343155 - sys_corr_60: -0.2060779374046778 - sys_corr_61: -0.21702954352486026 - sys_corr_62: -1.0030718945689072 - sys_corr_63: 0.5250177451199898 - sys_corr_64: 1.433669402839409 - sys_corr_65: 1.6197897750307446 - sys_corr_66: -0.38320956777040527 - sys_corr_67: -0.023276923264768705 - sys_corr_68: 0.9286495812175203 - sys_corr_69: 0.467862642630335 - sys_corr_70: -0.8950353995398768 - sys_corr_71: -0.04739103812085634 - sys_corr_72: -1.15475324507868 - sys_corr_73: -1.1999353582206767 - sys_corr_74: 0.2493804505586635 - sys_corr_75: 3.4518532539813878 - sys_corr_76: -2.445709967435229 - sys_corr_77: -5.099151084705349 - sys_corr_78: 3.3461444413203765 - sys_corr_79: 1.6981675293694958 - sys_corr_80: 1.5417000482834498 - sys_corr_81: 3.2433687019800255 - sys_corr_82: -0.287196093173653 - sys_corr_83: 5.30449419186138 - sys_corr_84: -21.77461049239184 - sys_corr_85: 16.78030978845998 - sys_corr_86: 2.743204191291331 - sys_corr_87: 0.4995957712424804 - sys_corr_88: 2.084318974527536 - sys_corr_89: 2.845811839457936 - sys_corr_90: 2.8995691220449706 - sys_corr_91: 24.238864154394072 - sys_corr_92: -2.5172455410916847 - sys_corr_93: -4.0748200140480435 - sys_corr_94: -9.107595433007058 - sys_corr_95: 0.5777722101821842 - sys_corr_96: 0.4329068381005194 - sys_corr_97: 18.201482214838478 - sys_corr_98: -2.846413321240755 - sys_corr_99: 25.438375788212102 - sys_corr_100: 11.275366561659261 - sys_corr_101: 57.143714640529524 - sys_corr_102: -53.006621349533454 - sys_corr_103: -1.621558437933614 - sys_corr_104: -65.54842065734252 - sys_corr_105: 0.01333189606335678 - sys_corr_106: -1.9250882490672183 - sys_corr_107: 0.6810929067331889 - sys_corr_108: 0.036455212553527766 - sys_corr_109: 0.8167479926315715 - sys_corr_110: 68.42750125507523 - sys_corr_111: 1.617929182243485 - sys_corr_112: 0.3481551772721528 - sys_corr_113: 0.05392224309305017 - sys_corr_114: -0.01090878757586861 - sys_corr_115: -0.7351864007891477 - sys_corr_116: -0.07672758470006841 - sys_corr_117: -0.22391871865498364 - sys_corr_118: -0.34201312769474007 - sys_corr_119: 0.017897162020314376 - sys_corr_120: -0.6274576325240335 - sys_corr_121: -0.000657294059732826 - sys_corr_122: 0.12929498746510235 - sys_corr_123: 0.036451967486418206 - sys_corr_124: -0.5812812957223483 - sys_corr_125: -0.14594092881524096 - sys_corr_126: 0.013541968775920678 - sys_corr_127: -1.7685367207884084 - sys_corr_128: -0.13745965968104315 - sys_corr_129: 0.20030747337000326 - sys_corr_130: 0.01633861723847278 - sys_corr_131: -0.02918859768339036 - sys_corr_132: -0.3839248388676104 + luminosity: 7.27379400e+01 +- sys_corr_1: 3.02823953e+01 + sys_corr_2: 1.10930431e+01 + sys_corr_3: -1.73663480e+01 + sys_corr_4: 1.93157389e+01 + sys_corr_5: 9.57948995e-01 + sys_corr_6: 4.70231853e+00 + sys_corr_7: 3.25670420e+00 + sys_corr_8: -4.95478919e+00 + sys_corr_9: -2.96046495e+00 + sys_corr_10: -7.99660929e+00 + sys_corr_11: -3.70308842e-01 + sys_corr_12: -6.89038094e+00 + sys_corr_13: -6.37497495e+00 + sys_corr_14: 4.61424706e+00 + sys_corr_15: -7.73271127e-01 + sys_corr_16: 8.83966421e-02 + sys_corr_17: 7.14791278e-01 + sys_corr_18: -9.05931186e+00 + sys_corr_19: 8.84826184e-01 + sys_corr_20: -2.21790347e+00 + sys_corr_21: -3.61732974e+00 + sys_corr_22: 4.22872968e+00 + sys_corr_23: 3.27381163e+00 + sys_corr_24: 2.32529393e+00 + sys_corr_25: -2.46986150e+00 + sys_corr_26: -3.58629173e+00 + sys_corr_27: 5.24428488e+00 + sys_corr_28: -1.82863678e+00 + sys_corr_29: 6.26347555e-01 + sys_corr_30: 6.09074513e+00 + sys_corr_31: -4.56835263e+00 + sys_corr_32: 7.15535334e-01 + sys_corr_33: -9.00172990e-01 + sys_corr_34: -1.93237230e+00 + sys_corr_35: 5.48503346e-01 + sys_corr_36: -2.67147957e-01 + sys_corr_37: 6.95293911e-01 + sys_corr_38: -4.00258042e-01 + sys_corr_39: 1.30593353e+00 + sys_corr_40: 4.80776773e-01 + sys_corr_41: -2.05390749e+00 + sys_corr_42: 3.30984360e-01 + sys_corr_43: -7.50855834e-01 + sys_corr_44: 1.61018978e+00 + sys_corr_45: -9.02644590e-01 + sys_corr_46: -1.09673055e+00 + sys_corr_47: -2.32751116e-01 + sys_corr_48: -3.50825788e-01 + sys_corr_49: 9.08087192e-02 + sys_corr_50: 1.65774663e+00 + sys_corr_51: -6.35899869e-03 + sys_corr_52: -1.02568440e+00 + sys_corr_53: 1.69846711e-01 + sys_corr_54: -1.34739979e+00 + sys_corr_55: -1.68484311e+00 + sys_corr_56: -8.82117935e-01 + sys_corr_57: 8.65057074e-01 + sys_corr_58: 1.36048849e+00 + sys_corr_59: -3.25783579e-01 + sys_corr_60: -2.06077937e-01 + sys_corr_61: -2.17029544e-01 + sys_corr_62: -1.00307189e+00 + sys_corr_63: 5.25017745e-01 + sys_corr_64: 1.43366940e+00 + sys_corr_65: 1.61978978e+00 + sys_corr_66: -3.83209568e-01 + sys_corr_67: -2.32769233e-02 + sys_corr_68: 9.28649581e-01 + sys_corr_69: 4.67862643e-01 + sys_corr_70: -8.95035400e-01 + sys_corr_71: -4.73910381e-02 + sys_corr_72: -1.15475325e+00 + sys_corr_73: -1.19993536e+00 + sys_corr_74: 2.49380451e-01 + sys_corr_75: 3.45185325e+00 + sys_corr_76: -2.44570997e+00 + sys_corr_77: -5.09915108e+00 + sys_corr_78: 3.34614444e+00 + sys_corr_79: 1.69816753e+00 + sys_corr_80: 1.54170005e+00 + sys_corr_81: 3.24336870e+00 + sys_corr_82: -2.87196093e-01 + sys_corr_83: 5.30449419e+00 + sys_corr_84: -2.17746105e+01 + sys_corr_85: 1.67803098e+01 + sys_corr_86: 2.74320419e+00 + sys_corr_87: 4.99595771e-01 + sys_corr_88: 2.08431897e+00 + sys_corr_89: 2.84581184e+00 + sys_corr_90: 2.89956912e+00 + sys_corr_91: 2.42388642e+01 + sys_corr_92: -2.51724554e+00 + sys_corr_93: -4.07482001e+00 + sys_corr_94: -9.10759543e+00 + sys_corr_95: 5.77772210e-01 + sys_corr_96: 4.32906838e-01 + sys_corr_97: 1.82014822e+01 + sys_corr_98: -2.84641332e+00 + sys_corr_99: 2.54383758e+01 + sys_corr_100: 1.12753666e+01 + sys_corr_101: 5.71437146e+01 + sys_corr_102: -5.30066213e+01 + sys_corr_103: -1.62155844e+00 + sys_corr_104: -6.55484207e+01 + sys_corr_105: 1.33318961e-02 + sys_corr_106: -1.92508825e+00 + sys_corr_107: 6.81092907e-01 + sys_corr_108: 3.64552126e-02 + sys_corr_109: 8.16747993e-01 + sys_corr_110: 6.84275013e+01 + sys_corr_111: 1.61792918e+00 + sys_corr_112: 3.48155177e-01 + sys_corr_113: 5.39222431e-02 + sys_corr_114: -1.09087876e-02 + sys_corr_115: -7.35186401e-01 + sys_corr_116: -7.67275847e-02 + sys_corr_117: -2.23918719e-01 + sys_corr_118: -3.42013128e-01 + sys_corr_119: 1.78971620e-02 + sys_corr_120: -6.27457633e-01 + sys_corr_121: -6.57294060e-04 + sys_corr_122: 1.29294987e-01 + sys_corr_123: 3.64519675e-02 + sys_corr_124: -5.81281296e-01 + sys_corr_125: -1.45940929e-01 + sys_corr_126: 1.35419688e-02 + sys_corr_127: -1.76853672e+00 + sys_corr_128: -1.37459660e-01 + sys_corr_129: 2.00307473e-01 + sys_corr_130: 1.63386172e-02 + sys_corr_131: -2.91885977e-02 + sys_corr_132: -3.83924839e-01 stat: 0.0 - luminosity: 73.06149400000001 -- sys_corr_1: 27.47211597442975 - sys_corr_2: 4.790050720891138 - sys_corr_3: -22.189470966730195 - sys_corr_4: 18.35600442460025 - sys_corr_5: 6.903350963925664 - sys_corr_6: 5.293371773617202 - sys_corr_7: -1.1073981494132923 - sys_corr_8: 7.66227718843946 - sys_corr_9: 2.124908099154111 - sys_corr_10: 7.60725380353878 - sys_corr_11: -9.375979248432389 - sys_corr_12: 2.1910172927557254 - sys_corr_13: 0.29955723991630395 - sys_corr_14: 3.773539363789595 - sys_corr_15: -0.944993623750412 - sys_corr_16: -1.154318374998471 - sys_corr_17: 0.16830828035307652 - sys_corr_18: 5.98255642110471 - sys_corr_19: 3.6915518678344466 - sys_corr_20: 1.1246510712617885 - sys_corr_21: 2.117985045536079 - sys_corr_22: 3.7311197857346694 - sys_corr_23: 0.3876379690555861 - sys_corr_24: 1.6706088026050099 - sys_corr_25: -5.286202510168801 - sys_corr_26: -8.895114000706483 - sys_corr_27: 5.849883684389792 - sys_corr_28: -2.4457313505296514 - sys_corr_29: -0.3011443303810982 - sys_corr_30: 7.281750964155827 - sys_corr_31: -2.976165233143827 - sys_corr_32: 1.1881457298640048 - sys_corr_33: -0.8796742296258946 - sys_corr_34: -3.446945758702689 - sys_corr_35: -0.2892250767589622 - sys_corr_36: 0.06560375988323353 - sys_corr_37: -0.03845096840534356 - sys_corr_38: 0.5449804044953304 - sys_corr_39: -1.8779511899812098 - sys_corr_40: 0.14534026186093107 - sys_corr_41: -2.390740565533736 - sys_corr_42: 0.8181123623655326 - sys_corr_43: 1.3175185871623392 - sys_corr_44: 4.573206648184429 - sys_corr_45: -0.38871204064369425 - sys_corr_46: 1.42048482007419 - sys_corr_47: 1.3954128208353462 - sys_corr_48: -1.0353976940388332 - sys_corr_49: 1.2828122934186121 - sys_corr_50: 1.3173359599759011 - sys_corr_51: 0.8838071237654938 - sys_corr_52: -1.766050952988146 - sys_corr_53: 0.2486023457473129 - sys_corr_54: 0.7517858948941587 - sys_corr_55: -2.4725118235580963 - sys_corr_56: -0.4946144100063506 - sys_corr_57: 2.1204270647983265 - sys_corr_58: 0.9928732480828378 - sys_corr_59: -0.054037373812801284 - sys_corr_60: 1.1879918686449176 - sys_corr_61: 1.0445986592891703 - sys_corr_62: -2.4454655524297637 - sys_corr_63: -0.869992403925867 - sys_corr_64: -0.3979952700056494 - sys_corr_65: 0.708022017231753 - sys_corr_66: -1.1075724369792945 - sys_corr_67: -0.09100207356876214 - sys_corr_68: 0.05499130543676032 - sys_corr_69: 2.3413483605059686 - sys_corr_70: -0.28799937962353644 - sys_corr_71: -0.2763310869168252 - sys_corr_72: -1.3223953478246542 - sys_corr_73: -0.9786951526567526 - sys_corr_74: 0.8648081147030138 - sys_corr_75: 4.106674697903429 - sys_corr_76: -2.6477870921347995 - sys_corr_77: -6.015972368709608 - sys_corr_78: 2.274468689568627 - sys_corr_79: 0.30227883063963046 - sys_corr_80: 1.3252190096120287 - sys_corr_81: 1.4873819013587448 - sys_corr_82: -1.8063493962041732 - sys_corr_83: 3.800711500935891 - sys_corr_84: -17.970571218827832 - sys_corr_85: 15.534588113521853 - sys_corr_86: 2.2562780651230008 - sys_corr_87: 0.38264771699904165 - sys_corr_88: 1.467123199675425 - sys_corr_89: 2.6468293879840408 - sys_corr_90: 2.9645482973275388 - sys_corr_91: 21.467997247342474 - sys_corr_92: -2.806676830865883 - sys_corr_93: -7.4224604377588985 - sys_corr_94: -19.106005305683762 - sys_corr_95: 0.3651767850061407 - sys_corr_96: 0.661198265124085 - sys_corr_97: 68.87181662745861 - sys_corr_98: 38.35890090759116 - sys_corr_99: 53.148535637421126 - sys_corr_100: 24.291484914881142 - sys_corr_101: 17.113313445881833 - sys_corr_102: -15.388639593345891 - sys_corr_103: 11.704027829784843 - sys_corr_104: 6.032285845601162 - sys_corr_105: 10.575558656318432 - sys_corr_106: 1.5646971964044811 - sys_corr_107: -2.81629162917982 - sys_corr_108: 1.3193025016222029 - sys_corr_109: 0.3915619753578398 - sys_corr_110: -74.68378077474443 - sys_corr_111: 1.6458845922113043 - sys_corr_112: 0.7052937543900799 - sys_corr_113: 0.7252126873339084 - sys_corr_114: -0.01076337321883471 - sys_corr_115: -0.2000169524772057 - sys_corr_116: -0.13706104036325054 - sys_corr_117: -0.09257165625126491 - sys_corr_118: -0.3709144163100975 - sys_corr_119: 0.0165781235957964 - sys_corr_120: 0.1754687190969751 - sys_corr_121: -0.004458931766436025 - sys_corr_122: 0.14923129818688372 - sys_corr_123: 0.03909603662340548 - sys_corr_124: -0.26465267996576913 - sys_corr_125: -0.07144428714896205 - sys_corr_126: 0.00507291380643211 - sys_corr_127: -45.92608719731276 - sys_corr_128: -0.26047888163490873 - sys_corr_129: 0.4884602753799321 - sys_corr_130: -0.007957509698635316 - sys_corr_131: 0.4860921608925127 - sys_corr_132: -0.33767974633696307 + luminosity: 7.30614940e+01 +- sys_corr_1: 2.74721160e+01 + sys_corr_2: 4.79005072e+00 + sys_corr_3: -2.21894710e+01 + sys_corr_4: 1.83560044e+01 + sys_corr_5: 6.90335096e+00 + sys_corr_6: 5.29337177e+00 + sys_corr_7: -1.10739815e+00 + sys_corr_8: 7.66227719e+00 + sys_corr_9: 2.12490810e+00 + sys_corr_10: 7.60725380e+00 + sys_corr_11: -9.37597925e+00 + sys_corr_12: 2.19101729e+00 + sys_corr_13: 2.99557240e-01 + sys_corr_14: 3.77353936e+00 + sys_corr_15: -9.44993624e-01 + sys_corr_16: -1.15431837e+00 + sys_corr_17: 1.68308280e-01 + sys_corr_18: 5.98255642e+00 + sys_corr_19: 3.69155187e+00 + sys_corr_20: 1.12465107e+00 + sys_corr_21: 2.11798505e+00 + sys_corr_22: 3.73111979e+00 + sys_corr_23: 3.87637969e-01 + sys_corr_24: 1.67060880e+00 + sys_corr_25: -5.28620251e+00 + sys_corr_26: -8.89511400e+00 + sys_corr_27: 5.84988368e+00 + sys_corr_28: -2.44573135e+00 + sys_corr_29: -3.01144330e-01 + sys_corr_30: 7.28175096e+00 + sys_corr_31: -2.97616523e+00 + sys_corr_32: 1.18814573e+00 + sys_corr_33: -8.79674230e-01 + sys_corr_34: -3.44694576e+00 + sys_corr_35: -2.89225077e-01 + sys_corr_36: 6.56037599e-02 + sys_corr_37: -3.84509684e-02 + sys_corr_38: 5.44980404e-01 + sys_corr_39: -1.87795119e+00 + sys_corr_40: 1.45340262e-01 + sys_corr_41: -2.39074057e+00 + sys_corr_42: 8.18112362e-01 + sys_corr_43: 1.31751859e+00 + sys_corr_44: 4.57320665e+00 + sys_corr_45: -3.88712041e-01 + sys_corr_46: 1.42048482e+00 + sys_corr_47: 1.39541282e+00 + sys_corr_48: -1.03539769e+00 + sys_corr_49: 1.28281229e+00 + sys_corr_50: 1.31733596e+00 + sys_corr_51: 8.83807124e-01 + sys_corr_52: -1.76605095e+00 + sys_corr_53: 2.48602346e-01 + sys_corr_54: 7.51785895e-01 + sys_corr_55: -2.47251182e+00 + sys_corr_56: -4.94614410e-01 + sys_corr_57: 2.12042706e+00 + sys_corr_58: 9.92873248e-01 + sys_corr_59: -5.40373738e-02 + sys_corr_60: 1.18799187e+00 + sys_corr_61: 1.04459866e+00 + sys_corr_62: -2.44546555e+00 + sys_corr_63: -8.69992404e-01 + sys_corr_64: -3.97995270e-01 + sys_corr_65: 7.08022017e-01 + sys_corr_66: -1.10757244e+00 + sys_corr_67: -9.10020736e-02 + sys_corr_68: 5.49913054e-02 + sys_corr_69: 2.34134836e+00 + sys_corr_70: -2.87999380e-01 + sys_corr_71: -2.76331087e-01 + sys_corr_72: -1.32239535e+00 + sys_corr_73: -9.78695153e-01 + sys_corr_74: 8.64808115e-01 + sys_corr_75: 4.10667470e+00 + sys_corr_76: -2.64778709e+00 + sys_corr_77: -6.01597237e+00 + sys_corr_78: 2.27446869e+00 + sys_corr_79: 3.02278831e-01 + sys_corr_80: 1.32521901e+00 + sys_corr_81: 1.48738190e+00 + sys_corr_82: -1.80634940e+00 + sys_corr_83: 3.80071150e+00 + sys_corr_84: -1.79705712e+01 + sys_corr_85: 1.55345881e+01 + sys_corr_86: 2.25627807e+00 + sys_corr_87: 3.82647717e-01 + sys_corr_88: 1.46712320e+00 + sys_corr_89: 2.64682939e+00 + sys_corr_90: 2.96454830e+00 + sys_corr_91: 2.14679972e+01 + sys_corr_92: -2.80667683e+00 + sys_corr_93: -7.42246044e+00 + sys_corr_94: -1.91060053e+01 + sys_corr_95: 3.65176785e-01 + sys_corr_96: 6.61198265e-01 + sys_corr_97: 6.88718166e+01 + sys_corr_98: 3.83589009e+01 + sys_corr_99: 5.31485356e+01 + sys_corr_100: 2.42914849e+01 + sys_corr_101: 1.71133134e+01 + sys_corr_102: -1.53886396e+01 + sys_corr_103: 1.17040278e+01 + sys_corr_104: 6.03228585e+00 + sys_corr_105: 1.05755587e+01 + sys_corr_106: 1.56469720e+00 + sys_corr_107: -2.81629163e+00 + sys_corr_108: 1.31930250e+00 + sys_corr_109: 3.91561975e-01 + sys_corr_110: -7.46837808e+01 + sys_corr_111: 1.64588459e+00 + sys_corr_112: 7.05293754e-01 + sys_corr_113: 7.25212687e-01 + sys_corr_114: -1.07633732e-02 + sys_corr_115: -2.00016952e-01 + sys_corr_116: -1.37061040e-01 + sys_corr_117: -9.25716563e-02 + sys_corr_118: -3.70914416e-01 + sys_corr_119: 1.65781236e-02 + sys_corr_120: 1.75468719e-01 + sys_corr_121: -4.45893177e-03 + sys_corr_122: 1.49231298e-01 + sys_corr_123: 3.90960366e-02 + sys_corr_124: -2.64652680e-01 + sys_corr_125: -7.14442871e-02 + sys_corr_126: 5.07291381e-03 + sys_corr_127: -4.59260872e+01 + sys_corr_128: -2.60478882e-01 + sys_corr_129: 4.88460275e-01 + sys_corr_130: -7.95750970e-03 + sys_corr_131: 4.86092161e-01 + sys_corr_132: -3.37679746e-01 stat: 0.0 - luminosity: 70.778004 -- sys_corr_1: 23.441977070105466 - sys_corr_2: 11.82672774481101 - sys_corr_3: -23.565017110953313 - sys_corr_4: 12.91608285972669 - sys_corr_5: 5.482735332688297 - sys_corr_6: 5.3688713046998675 - sys_corr_7: -3.8747930696476347 - sys_corr_8: 1.1885862178118114 - sys_corr_9: 2.2419132463762907 - sys_corr_10: 2.5577991918383978 - sys_corr_11: 13.714519397011005 - sys_corr_12: -4.541594282617534 - sys_corr_13: 2.501157604751761 - sys_corr_14: -0.2390953685335686 - sys_corr_15: 2.3850009123743643 - sys_corr_16: -6.884497294628855 - sys_corr_17: -5.228857396066292 - sys_corr_18: 8.109089680028315 - sys_corr_19: -6.3202213061910975 - sys_corr_20: 1.1345734540962154 - sys_corr_21: 1.1816470678541682 - sys_corr_22: 5.78908731224198 - sys_corr_23: -0.4917666633661508 - sys_corr_24: -0.3082236918795323 - sys_corr_25: -5.546942007924233 - sys_corr_26: -8.118710062737994 - sys_corr_27: 6.1654608254621 - sys_corr_28: -4.218407879737895 - sys_corr_29: 0.021879450887310407 - sys_corr_30: 5.740707845109804 - sys_corr_31: -2.18565589285075 - sys_corr_32: 0.675001157378832 - sys_corr_33: -0.8109653218699437 - sys_corr_34: -2.9787407958710794 - sys_corr_35: 0.2365976205380151 - sys_corr_36: -0.9878709202698731 - sys_corr_37: 0.4428488419096851 - sys_corr_38: 0.0872702302127505 - sys_corr_39: -2.23177805935191 - sys_corr_40: 0.749830810082458 - sys_corr_41: -2.074011786558887 - sys_corr_42: 0.8365362029965178 - sys_corr_43: 1.7933026359378579 - sys_corr_44: 1.843636930802975 - sys_corr_45: -0.5585300458312308 - sys_corr_46: -0.23330146159051446 - sys_corr_47: 1.879335329583438 - sys_corr_48: -2.6519772176563405 - sys_corr_49: 2.6924341590360608 - sys_corr_50: 2.164434504115985 - sys_corr_51: 0.6063245821136867 - sys_corr_52: -0.2947181595200658 - sys_corr_53: -0.27209762375319047 - sys_corr_54: 0.9023541230782954 - sys_corr_55: -0.19897543328776437 - sys_corr_56: 0.6192097785684457 - sys_corr_57: 1.4647278416504435 - sys_corr_58: 1.3015175102812593 - sys_corr_59: 0.5201116716982127 - sys_corr_60: 0.7894653975431862 - sys_corr_61: 0.03770821746653145 - sys_corr_62: -1.7123133588628714 - sys_corr_63: 0.24735927121771298 - sys_corr_64: 0.1598530321250245 - sys_corr_65: 0.16838916553701933 - sys_corr_66: -0.6048718750928954 - sys_corr_67: -0.19383486059284108 - sys_corr_68: -0.3681030326614051 - sys_corr_69: 1.6470721485152944 - sys_corr_70: -0.5246958356654359 - sys_corr_71: 0.42794289666224716 - sys_corr_72: -0.0953373947467292 - sys_corr_73: -0.4647999313153098 - sys_corr_74: 0.7794371884243794 - sys_corr_75: 3.2508546160148186 - sys_corr_76: -2.33007788645198 - sys_corr_77: -2.7876332445806797 - sys_corr_78: 1.170553398867387 - sys_corr_79: 1.7283807509385574 - sys_corr_80: 0.013073007456510044 - sys_corr_81: 0.8579919428810528 - sys_corr_82: -0.563816445949309 - sys_corr_83: 2.339213694891578 - sys_corr_84: -12.212425008876838 - sys_corr_85: 10.50670666037049 - sys_corr_86: 1.9915360334022718 - sys_corr_87: 1.1270192339693348 - sys_corr_88: 1.1677206239020907 - sys_corr_89: 1.857955441865786 - sys_corr_90: 1.8158060537764114 - sys_corr_91: 14.746738018128928 - sys_corr_92: -1.9546447079793792 - sys_corr_93: -3.522471351171104 - sys_corr_94: -8.228233491187108 - sys_corr_95: -0.704072178079314 - sys_corr_96: -2.154113109604195 - sys_corr_97: 18.894273740749302 - sys_corr_98: 5.7940573120075065 - sys_corr_99: 4.888427148868551 - sys_corr_100: 47.01904828048506 - sys_corr_101: -81.55062922788137 - sys_corr_102: -7.79474178564082 - sys_corr_103: -2.9212385599232444 - sys_corr_104: -25.881474795386545 - sys_corr_105: 51.471185130905674 - sys_corr_106: 22.20416543692501 - sys_corr_107: -6.625819055044427 - sys_corr_108: 4.835464842975594 - sys_corr_109: 2.653626624620268 - sys_corr_110: 29.005826131774175 - sys_corr_111: 1.4688858884730398 - sys_corr_112: 0.9102802597798192 - sys_corr_113: 0.5876644153653224 - sys_corr_114: -0.009629059915909382 - sys_corr_115: 0.013004658714628482 - sys_corr_116: -0.27699016434852775 - sys_corr_117: -0.17086699270101477 - sys_corr_118: -0.25985675589008944 - sys_corr_119: 0.007720253101170645 - sys_corr_120: 0.22014386327761198 - sys_corr_121: -0.014440750563840487 - sys_corr_122: 0.21051826684006666 - sys_corr_123: 0.07566302258510446 - sys_corr_124: -0.36523867389183373 - sys_corr_125: -0.07010583443674423 - sys_corr_126: 0.024423715229628065 - sys_corr_127: 10.776156664277616 - sys_corr_128: -0.8904599694274645 - sys_corr_129: 0.6187923635911914 - sys_corr_130: 0.022794891003722884 - sys_corr_131: 0.4179249852786262 - sys_corr_132: -0.421839519993517 + luminosity: 7.07780040e+01 +- sys_corr_1: 2.34419771e+01 + sys_corr_2: 1.18267277e+01 + sys_corr_3: -2.35650171e+01 + sys_corr_4: 1.29160829e+01 + sys_corr_5: 5.48273533e+00 + sys_corr_6: 5.36887130e+00 + sys_corr_7: -3.87479307e+00 + sys_corr_8: 1.18858622e+00 + sys_corr_9: 2.24191325e+00 + sys_corr_10: 2.55779919e+00 + sys_corr_11: 1.37145194e+01 + sys_corr_12: -4.54159428e+00 + sys_corr_13: 2.50115760e+00 + sys_corr_14: -2.39095369e-01 + sys_corr_15: 2.38500091e+00 + sys_corr_16: -6.88449729e+00 + sys_corr_17: -5.22885740e+00 + sys_corr_18: 8.10908968e+00 + sys_corr_19: -6.32022131e+00 + sys_corr_20: 1.13457345e+00 + sys_corr_21: 1.18164707e+00 + sys_corr_22: 5.78908731e+00 + sys_corr_23: -4.91766663e-01 + sys_corr_24: -3.08223692e-01 + sys_corr_25: -5.54694201e+00 + sys_corr_26: -8.11871006e+00 + sys_corr_27: 6.16546083e+00 + sys_corr_28: -4.21840788e+00 + sys_corr_29: 2.18794509e-02 + sys_corr_30: 5.74070785e+00 + sys_corr_31: -2.18565589e+00 + sys_corr_32: 6.75001157e-01 + sys_corr_33: -8.10965322e-01 + sys_corr_34: -2.97874080e+00 + sys_corr_35: 2.36597621e-01 + sys_corr_36: -9.87870920e-01 + sys_corr_37: 4.42848842e-01 + sys_corr_38: 8.72702302e-02 + sys_corr_39: -2.23177806e+00 + sys_corr_40: 7.49830810e-01 + sys_corr_41: -2.07401179e+00 + sys_corr_42: 8.36536203e-01 + sys_corr_43: 1.79330264e+00 + sys_corr_44: 1.84363693e+00 + sys_corr_45: -5.58530046e-01 + sys_corr_46: -2.33301462e-01 + sys_corr_47: 1.87933533e+00 + sys_corr_48: -2.65197722e+00 + sys_corr_49: 2.69243416e+00 + sys_corr_50: 2.16443450e+00 + sys_corr_51: 6.06324582e-01 + sys_corr_52: -2.94718160e-01 + sys_corr_53: -2.72097624e-01 + sys_corr_54: 9.02354123e-01 + sys_corr_55: -1.98975433e-01 + sys_corr_56: 6.19209779e-01 + sys_corr_57: 1.46472784e+00 + sys_corr_58: 1.30151751e+00 + sys_corr_59: 5.20111672e-01 + sys_corr_60: 7.89465398e-01 + sys_corr_61: 3.77082175e-02 + sys_corr_62: -1.71231336e+00 + sys_corr_63: 2.47359271e-01 + sys_corr_64: 1.59853032e-01 + sys_corr_65: 1.68389166e-01 + sys_corr_66: -6.04871875e-01 + sys_corr_67: -1.93834861e-01 + sys_corr_68: -3.68103033e-01 + sys_corr_69: 1.64707215e+00 + sys_corr_70: -5.24695836e-01 + sys_corr_71: 4.27942897e-01 + sys_corr_72: -9.53373947e-02 + sys_corr_73: -4.64799931e-01 + sys_corr_74: 7.79437188e-01 + sys_corr_75: 3.25085462e+00 + sys_corr_76: -2.33007789e+00 + sys_corr_77: -2.78763324e+00 + sys_corr_78: 1.17055340e+00 + sys_corr_79: 1.72838075e+00 + sys_corr_80: 1.30730075e-02 + sys_corr_81: 8.57991943e-01 + sys_corr_82: -5.63816446e-01 + sys_corr_83: 2.33921369e+00 + sys_corr_84: -1.22124250e+01 + sys_corr_85: 1.05067067e+01 + sys_corr_86: 1.99153603e+00 + sys_corr_87: 1.12701923e+00 + sys_corr_88: 1.16772062e+00 + sys_corr_89: 1.85795544e+00 + sys_corr_90: 1.81580605e+00 + sys_corr_91: 1.47467380e+01 + sys_corr_92: -1.95464471e+00 + sys_corr_93: -3.52247135e+00 + sys_corr_94: -8.22823349e+00 + sys_corr_95: -7.04072178e-01 + sys_corr_96: -2.15411311e+00 + sys_corr_97: 1.88942737e+01 + sys_corr_98: 5.79405731e+00 + sys_corr_99: 4.88842715e+00 + sys_corr_100: 4.70190483e+01 + sys_corr_101: -8.15506292e+01 + sys_corr_102: -7.79474179e+00 + sys_corr_103: -2.92123856e+00 + sys_corr_104: -2.58814748e+01 + sys_corr_105: 5.14711851e+01 + sys_corr_106: 2.22041654e+01 + sys_corr_107: -6.62581906e+00 + sys_corr_108: 4.83546484e+00 + sys_corr_109: 2.65362662e+00 + sys_corr_110: 2.90058261e+01 + sys_corr_111: 1.46888589e+00 + sys_corr_112: 9.10280260e-01 + sys_corr_113: 5.87664415e-01 + sys_corr_114: -9.62905992e-03 + sys_corr_115: 1.30046587e-02 + sys_corr_116: -2.76990164e-01 + sys_corr_117: -1.70866993e-01 + sys_corr_118: -2.59856756e-01 + sys_corr_119: 7.72025310e-03 + sys_corr_120: 2.20143863e-01 + sys_corr_121: -1.44407506e-02 + sys_corr_122: 2.10518267e-01 + sys_corr_123: 7.56630226e-02 + sys_corr_124: -3.65238674e-01 + sys_corr_125: -7.01058344e-02 + sys_corr_126: 2.44237152e-02 + sys_corr_127: 1.07761567e+01 + sys_corr_128: -8.90459969e-01 + sys_corr_129: 6.18792364e-01 + sys_corr_130: 2.27948910e-02 + sys_corr_131: 4.17924985e-01 + sys_corr_132: -4.21839520e-01 stat: 0.0 - luminosity: 67.15299800000001 -- sys_corr_1: 23.948227695211287 - sys_corr_2: 5.983345686539601 - sys_corr_3: -22.81370283189977 - sys_corr_4: 8.670479330655036 - sys_corr_5: 7.373071283518806 - sys_corr_6: 3.8752771534912194 - sys_corr_7: -5.004741581013252 - sys_corr_8: -0.9855739756897615 - sys_corr_9: 2.095968108346246 - sys_corr_10: 2.656666970221024 - sys_corr_11: 0.7571145078766767 - sys_corr_12: 3.8773057575553227 - sys_corr_13: -6.213922371354652 - sys_corr_14: -16.027806576934026 - sys_corr_15: 4.1013080154283585 - sys_corr_16: 3.5024363904966442 - sys_corr_17: 1.0800742437890014 - sys_corr_18: -13.234666829781718 - sys_corr_19: -3.3819206006608566 - sys_corr_20: 1.5043504519336186 - sys_corr_21: 1.530312493957913 - sys_corr_22: 4.627857803337497 - sys_corr_23: -1.8310363353278734 - sys_corr_24: 0.9925763474120534 - sys_corr_25: -6.205057981987774 - sys_corr_26: -8.365066664057974 - sys_corr_27: 5.039124072988418 - sys_corr_28: -6.826185218267015 - sys_corr_29: 0.45346944865686084 - sys_corr_30: 2.939317671500345 - sys_corr_31: -1.6253344629616435 - sys_corr_32: -0.04153119478029653 - sys_corr_33: 0.6353073513206531 - sys_corr_34: -3.4509300061717605 - sys_corr_35: 0.18805652085999713 - sys_corr_36: -1.2292434820562093 - sys_corr_37: 0.6191442263351881 - sys_corr_38: 0.33192939892368056 - sys_corr_39: 1.4138358184037245 - sys_corr_40: 1.5655441524918554 - sys_corr_41: -0.8706410591313956 - sys_corr_42: -0.2211538750127605 - sys_corr_43: 1.1000477239065538 - sys_corr_44: 1.1835825219389993 - sys_corr_45: -1.27315981264585 - sys_corr_46: -0.6021567332559492 - sys_corr_47: 1.4834950981659785 - sys_corr_48: -3.757272728681279 - sys_corr_49: 3.3081564259588148 - sys_corr_50: 2.4149719231135354 - sys_corr_51: -0.4125017591953219 - sys_corr_52: 0.19065068119012482 - sys_corr_53: 0.7494255682056742 - sys_corr_54: 0.31779724101576456 - sys_corr_55: 0.28112795903851895 - sys_corr_56: 0.4040983938655283 - sys_corr_57: 1.0989381935528195 - sys_corr_58: 0.2589423761437162 - sys_corr_59: -0.09698289304863313 - sys_corr_60: 1.0823353457826659 - sys_corr_61: -0.5378187748143595 - sys_corr_62: -0.4473131418494052 - sys_corr_63: -0.32831208343612583 - sys_corr_64: 0.38849010747744156 - sys_corr_65: -0.3208410129527064 - sys_corr_66: -0.9692612038428058 - sys_corr_67: -0.3373529086774568 - sys_corr_68: -0.19877750392134758 - sys_corr_69: 1.5631963848670274 - sys_corr_70: -0.579334876521402 - sys_corr_71: 0.013587104665129067 - sys_corr_72: -0.23220626737664443 - sys_corr_73: 0.6178362288606511 - sys_corr_74: 1.5772011799837697 - sys_corr_75: 2.22549408536357 - sys_corr_76: -1.0690125709948821 - sys_corr_77: -2.4686986003939344 - sys_corr_78: 1.614500632021719 - sys_corr_79: 0.930224183507775 - sys_corr_80: -0.4077027659405533 - sys_corr_81: 0.29637727294370103 - sys_corr_82: -0.6944018039684683 - sys_corr_83: 1.2898737906900062 - sys_corr_84: -7.133945904583585 - sys_corr_85: 4.92378057048973 - sys_corr_86: 1.2075083738328918 - sys_corr_87: 0.7920499574824517 - sys_corr_88: 0.8407839126235895 - sys_corr_89: 1.0381730123129684 - sys_corr_90: 1.2327085218578426 - sys_corr_91: 7.727944502892572 - sys_corr_92: -0.5626675129200726 - sys_corr_93: -2.8615040631642503 - sys_corr_94: -9.028700008498921 - sys_corr_95: 0.7112017021628568 - sys_corr_96: 0.4356566620399581 - sys_corr_97: 21.69790020781785 - sys_corr_98: 10.442091582748677 - sys_corr_99: 12.188411911133374 - sys_corr_100: -95.35163723687519 - sys_corr_101: -12.672725731405166 - sys_corr_102: -6.018028385996787 - sys_corr_103: -0.4364389875916385 - sys_corr_104: -16.382624013673766 - sys_corr_105: 24.996275814407532 - sys_corr_106: 47.87681449254913 - sys_corr_107: 14.35361595602248 - sys_corr_108: 9.552911251386021 - sys_corr_109: 1.6674451929162066 - sys_corr_110: -0.20302236984963445 - sys_corr_111: 7.455697218631555 - sys_corr_112: 0.8010359749883716 - sys_corr_113: 0.8119738413152224 - sys_corr_114: -0.004743726059351372 - sys_corr_115: 0.5673981646175608 - sys_corr_116: -0.23429466904399865 - sys_corr_117: -0.1301453342044355 - sys_corr_118: 0.016911576637815468 - sys_corr_119: -0.0027254647440096 - sys_corr_120: 0.034902128880654144 - sys_corr_121: -0.020853303817044345 - sys_corr_122: 0.1822429106645974 - sys_corr_123: 0.08979785102129281 - sys_corr_124: -0.12758208263562104 - sys_corr_125: 0.6561585640890641 - sys_corr_126: 0.03193732585472951 - sys_corr_127: -4.728809735897865 - sys_corr_128: -6.083091935369417 - sys_corr_129: 0.49658128602016566 - sys_corr_130: 0.03678367751013879 - sys_corr_131: -0.1974442359884109 - sys_corr_132: -0.34534501595525724 + luminosity: 6.71529980e+01 +- sys_corr_1: 2.39482277e+01 + sys_corr_2: 5.98334569e+00 + sys_corr_3: -2.28137028e+01 + sys_corr_4: 8.67047933e+00 + sys_corr_5: 7.37307128e+00 + sys_corr_6: 3.87527715e+00 + sys_corr_7: -5.00474158e+00 + sys_corr_8: -9.85573976e-01 + sys_corr_9: 2.09596811e+00 + sys_corr_10: 2.65666697e+00 + sys_corr_11: 7.57114508e-01 + sys_corr_12: 3.87730576e+00 + sys_corr_13: -6.21392237e+00 + sys_corr_14: -1.60278066e+01 + sys_corr_15: 4.10130802e+00 + sys_corr_16: 3.50243639e+00 + sys_corr_17: 1.08007424e+00 + sys_corr_18: -1.32346668e+01 + sys_corr_19: -3.38192060e+00 + sys_corr_20: 1.50435045e+00 + sys_corr_21: 1.53031249e+00 + sys_corr_22: 4.62785780e+00 + sys_corr_23: -1.83103634e+00 + sys_corr_24: 9.92576347e-01 + sys_corr_25: -6.20505798e+00 + sys_corr_26: -8.36506666e+00 + sys_corr_27: 5.03912407e+00 + sys_corr_28: -6.82618522e+00 + sys_corr_29: 4.53469449e-01 + sys_corr_30: 2.93931767e+00 + sys_corr_31: -1.62533446e+00 + sys_corr_32: -4.15311948e-02 + sys_corr_33: 6.35307351e-01 + sys_corr_34: -3.45093001e+00 + sys_corr_35: 1.88056521e-01 + sys_corr_36: -1.22924348e+00 + sys_corr_37: 6.19144226e-01 + sys_corr_38: 3.31929399e-01 + sys_corr_39: 1.41383582e+00 + sys_corr_40: 1.56554415e+00 + sys_corr_41: -8.70641059e-01 + sys_corr_42: -2.21153875e-01 + sys_corr_43: 1.10004772e+00 + sys_corr_44: 1.18358252e+00 + sys_corr_45: -1.27315981e+00 + sys_corr_46: -6.02156733e-01 + sys_corr_47: 1.48349510e+00 + sys_corr_48: -3.75727273e+00 + sys_corr_49: 3.30815643e+00 + sys_corr_50: 2.41497192e+00 + sys_corr_51: -4.12501759e-01 + sys_corr_52: 1.90650681e-01 + sys_corr_53: 7.49425568e-01 + sys_corr_54: 3.17797241e-01 + sys_corr_55: 2.81127959e-01 + sys_corr_56: 4.04098394e-01 + sys_corr_57: 1.09893819e+00 + sys_corr_58: 2.58942376e-01 + sys_corr_59: -9.69828930e-02 + sys_corr_60: 1.08233535e+00 + sys_corr_61: -5.37818775e-01 + sys_corr_62: -4.47313142e-01 + sys_corr_63: -3.28312083e-01 + sys_corr_64: 3.88490107e-01 + sys_corr_65: -3.20841013e-01 + sys_corr_66: -9.69261204e-01 + sys_corr_67: -3.37352909e-01 + sys_corr_68: -1.98777504e-01 + sys_corr_69: 1.56319638e+00 + sys_corr_70: -5.79334877e-01 + sys_corr_71: 1.35871047e-02 + sys_corr_72: -2.32206267e-01 + sys_corr_73: 6.17836229e-01 + sys_corr_74: 1.57720118e+00 + sys_corr_75: 2.22549409e+00 + sys_corr_76: -1.06901257e+00 + sys_corr_77: -2.46869860e+00 + sys_corr_78: 1.61450063e+00 + sys_corr_79: 9.30224184e-01 + sys_corr_80: -4.07702766e-01 + sys_corr_81: 2.96377273e-01 + sys_corr_82: -6.94401804e-01 + sys_corr_83: 1.28987379e+00 + sys_corr_84: -7.13394590e+00 + sys_corr_85: 4.92378057e+00 + sys_corr_86: 1.20750837e+00 + sys_corr_87: 7.92049957e-01 + sys_corr_88: 8.40783913e-01 + sys_corr_89: 1.03817301e+00 + sys_corr_90: 1.23270852e+00 + sys_corr_91: 7.72794450e+00 + sys_corr_92: -5.62667513e-01 + sys_corr_93: -2.86150406e+00 + sys_corr_94: -9.02870001e+00 + sys_corr_95: 7.11201702e-01 + sys_corr_96: 4.35656662e-01 + sys_corr_97: 2.16979002e+01 + sys_corr_98: 1.04420916e+01 + sys_corr_99: 1.21884119e+01 + sys_corr_100: -9.53516372e+01 + sys_corr_101: -1.26727257e+01 + sys_corr_102: -6.01802839e+00 + sys_corr_103: -4.36438988e-01 + sys_corr_104: -1.63826240e+01 + sys_corr_105: 2.49962758e+01 + sys_corr_106: 4.78768145e+01 + sys_corr_107: 1.43536160e+01 + sys_corr_108: 9.55291125e+00 + sys_corr_109: 1.66744519e+00 + sys_corr_110: -2.03022370e-01 + sys_corr_111: 7.45569722e+00 + sys_corr_112: 8.01035975e-01 + sys_corr_113: 8.11973841e-01 + sys_corr_114: -4.74372606e-03 + sys_corr_115: 5.67398165e-01 + sys_corr_116: -2.34294669e-01 + sys_corr_117: -1.30145334e-01 + sys_corr_118: 1.69115766e-02 + sys_corr_119: -2.72546474e-03 + sys_corr_120: 3.49021289e-02 + sys_corr_121: -2.08533038e-02 + sys_corr_122: 1.82242911e-01 + sys_corr_123: 8.97978510e-02 + sys_corr_124: -1.27582083e-01 + sys_corr_125: 6.56158564e-01 + sys_corr_126: 3.19373259e-02 + sys_corr_127: -4.72880974e+00 + sys_corr_128: -6.08309194e+00 + sys_corr_129: 4.96581286e-01 + sys_corr_130: 3.67836775e-02 + sys_corr_131: -1.97444236e-01 + sys_corr_132: -3.45345016e-01 stat: 0.0 - luminosity: 66.664928 -- sys_corr_1: 17.089611517497097 - sys_corr_2: 6.1667152296637715 - sys_corr_3: -26.292545899136897 - sys_corr_4: 2.1151690704459365 - sys_corr_5: 2.7840655489088246 - sys_corr_6: 2.166642084054892 - sys_corr_7: -7.467716996331862 - sys_corr_8: -3.7631964435207865 - sys_corr_9: -3.1985397695361493 - sys_corr_10: 3.0927209433791316 - sys_corr_11: 6.399111645730756 - sys_corr_12: 7.8407770498458715 - sys_corr_13: -0.5028245776505454 - sys_corr_14: 7.676219802496248 - sys_corr_15: -1.4227286698472184 - sys_corr_16: 4.491804816307656 - sys_corr_17: 5.340462925840397 - sys_corr_18: -7.67397369558954 - sys_corr_19: 7.921703365952281 - sys_corr_20: 3.0914427732443768 - sys_corr_21: 2.3389529489162695 - sys_corr_22: 1.9540083890160052 - sys_corr_23: -2.9719872893813526 - sys_corr_24: 2.113633790702536 - sys_corr_25: -5.943872127602984 - sys_corr_26: -8.209483560586396 - sys_corr_27: 6.3430848696022455 - sys_corr_28: -6.820033667989865 - sys_corr_29: 0.031557855755725214 - sys_corr_30: 2.3277875768033662 - sys_corr_31: -1.7984570297812463 - sys_corr_32: -0.5627775169837619 - sys_corr_33: -0.9296838159149768 - sys_corr_34: -0.7917919946344129 - sys_corr_35: -0.27866727799394564 - sys_corr_36: 0.31639645888569917 - sys_corr_37: 0.2671953018544105 - sys_corr_38: 0.36795666927504256 - sys_corr_39: 0.3094484031787301 - sys_corr_40: 0.7507020553788993 - sys_corr_41: -0.112151391046958 - sys_corr_42: 0.15122924366422166 - sys_corr_43: 0.9686209780943043 - sys_corr_44: 1.3558467303022887 - sys_corr_45: -0.4697405673633604 - sys_corr_46: -0.3231672996876476 - sys_corr_47: 2.4357771100241807 - sys_corr_48: -3.4265028961480843 - sys_corr_49: 2.494552953934156 - sys_corr_50: 1.9460060575102789 - sys_corr_51: 0.8827352293512916 - sys_corr_52: -0.3263329614208207 - sys_corr_53: -0.11139046219844467 - sys_corr_54: 0.9542290458888766 - sys_corr_55: 0.3950087954680105 - sys_corr_56: 0.21082256389875775 - sys_corr_57: 0.28980855346936585 - sys_corr_58: -0.03847825512818865 - sys_corr_59: 0.057874512015189505 - sys_corr_60: 1.5615203936501423 - sys_corr_61: 0.5694762205857732 - sys_corr_62: 0.6608695693788711 - sys_corr_63: 0.2492674682578547 - sys_corr_64: -0.5292714075514 - sys_corr_65: 0.4142720164592331 - sys_corr_66: -0.24979124144449974 - sys_corr_67: -0.15748753123314516 - sys_corr_68: -0.11308464619598765 - sys_corr_69: 0.8902111772382267 - sys_corr_70: -0.48406569593563226 - sys_corr_71: 0.5850317715898742 - sys_corr_72: 0.5651089826161015 - sys_corr_73: 1.1769854773490036 - sys_corr_74: 1.8841192318117514 - sys_corr_75: 2.122334866094098 - sys_corr_76: -0.33753157246057297 - sys_corr_77: -2.8387843689327354 - sys_corr_78: 0.9900700238156888 - sys_corr_79: 0.29816669781113714 - sys_corr_80: -0.7550476927367642 - sys_corr_81: 1.5155271542584317 - sys_corr_82: -0.708677439815575 - sys_corr_83: 0.5528322022256942 - sys_corr_84: -3.2510392773762433 - sys_corr_85: 2.720302064885106 - sys_corr_86: 0.8726861552274879 - sys_corr_87: 0.6584969492189389 - sys_corr_88: -0.17664591144667185 - sys_corr_89: 0.4093613707689048 - sys_corr_90: 1.785354712680056 - sys_corr_91: 3.669051743049878 - sys_corr_92: 0.28360453602381436 - sys_corr_93: -1.9341128776668282 - sys_corr_94: -6.453076233275744 - sys_corr_95: 0.8324235571003715 - sys_corr_96: -0.19207836940658368 - sys_corr_97: 14.313850006715388 - sys_corr_98: 7.024691453072954 - sys_corr_99: 6.594503392248546 - sys_corr_100: 19.455485416742313 - sys_corr_101: -29.994557217517876 - sys_corr_102: -1.2551769316253147 - sys_corr_103: -1.7304673989573585 - sys_corr_104: -14.103409913672838 - sys_corr_105: -73.13776656989418 - sys_corr_106: 28.717467401678128 - sys_corr_107: 62.99619959163374 - sys_corr_108: 12.374433309544735 - sys_corr_109: 3.6198933430563853 - sys_corr_110: 3.521927573449655 - sys_corr_111: -0.9817916461630808 - sys_corr_112: 3.124066969659791 - sys_corr_113: 2.0398540962269487 - sys_corr_114: 0.0005482049291277131 - sys_corr_115: 1.5050663762672636 - sys_corr_116: -0.3964587921071353 - sys_corr_117: -0.16854645689451717 - sys_corr_118: 0.1346227686500346 - sys_corr_119: -0.015499166643683865 - sys_corr_120: 0.06923070096080815 - sys_corr_121: -0.012300504578469885 - sys_corr_122: 0.07914126805320666 - sys_corr_123: 0.09975714841455333 - sys_corr_124: -0.13147712743824866 - sys_corr_125: 0.557136762971176 - sys_corr_126: 0.020333410178191715 - sys_corr_127: -1.497318938429997 - sys_corr_128: -6.296395965232497 - sys_corr_129: 1.3744903936633226 - sys_corr_130: -0.015013988247120802 - sys_corr_131: -0.19430741359012718 - sys_corr_132: -0.12970928981204258 + luminosity: 6.66649280e+01 +- sys_corr_1: 1.70896115e+01 + sys_corr_2: 6.16671523e+00 + sys_corr_3: -2.62925459e+01 + sys_corr_4: 2.11516907e+00 + sys_corr_5: 2.78406555e+00 + sys_corr_6: 2.16664208e+00 + sys_corr_7: -7.46771700e+00 + sys_corr_8: -3.76319644e+00 + sys_corr_9: -3.19853977e+00 + sys_corr_10: 3.09272094e+00 + sys_corr_11: 6.39911165e+00 + sys_corr_12: 7.84077705e+00 + sys_corr_13: -5.02824578e-01 + sys_corr_14: 7.67621980e+00 + sys_corr_15: -1.42272867e+00 + sys_corr_16: 4.49180482e+00 + sys_corr_17: 5.34046293e+00 + sys_corr_18: -7.67397370e+00 + sys_corr_19: 7.92170337e+00 + sys_corr_20: 3.09144277e+00 + sys_corr_21: 2.33895295e+00 + sys_corr_22: 1.95400839e+00 + sys_corr_23: -2.97198729e+00 + sys_corr_24: 2.11363379e+00 + sys_corr_25: -5.94387213e+00 + sys_corr_26: -8.20948356e+00 + sys_corr_27: 6.34308487e+00 + sys_corr_28: -6.82003367e+00 + sys_corr_29: 3.15578558e-02 + sys_corr_30: 2.32778758e+00 + sys_corr_31: -1.79845703e+00 + sys_corr_32: -5.62777517e-01 + sys_corr_33: -9.29683816e-01 + sys_corr_34: -7.91791995e-01 + sys_corr_35: -2.78667278e-01 + sys_corr_36: 3.16396459e-01 + sys_corr_37: 2.67195302e-01 + sys_corr_38: 3.67956669e-01 + sys_corr_39: 3.09448403e-01 + sys_corr_40: 7.50702055e-01 + sys_corr_41: -1.12151391e-01 + sys_corr_42: 1.51229244e-01 + sys_corr_43: 9.68620978e-01 + sys_corr_44: 1.35584673e+00 + sys_corr_45: -4.69740567e-01 + sys_corr_46: -3.23167300e-01 + sys_corr_47: 2.43577711e+00 + sys_corr_48: -3.42650290e+00 + sys_corr_49: 2.49455295e+00 + sys_corr_50: 1.94600606e+00 + sys_corr_51: 8.82735229e-01 + sys_corr_52: -3.26332961e-01 + sys_corr_53: -1.11390462e-01 + sys_corr_54: 9.54229046e-01 + sys_corr_55: 3.95008795e-01 + sys_corr_56: 2.10822564e-01 + sys_corr_57: 2.89808553e-01 + sys_corr_58: -3.84782551e-02 + sys_corr_59: 5.78745120e-02 + sys_corr_60: 1.56152039e+00 + sys_corr_61: 5.69476221e-01 + sys_corr_62: 6.60869569e-01 + sys_corr_63: 2.49267468e-01 + sys_corr_64: -5.29271408e-01 + sys_corr_65: 4.14272016e-01 + sys_corr_66: -2.49791241e-01 + sys_corr_67: -1.57487531e-01 + sys_corr_68: -1.13084646e-01 + sys_corr_69: 8.90211177e-01 + sys_corr_70: -4.84065696e-01 + sys_corr_71: 5.85031772e-01 + sys_corr_72: 5.65108983e-01 + sys_corr_73: 1.17698548e+00 + sys_corr_74: 1.88411923e+00 + sys_corr_75: 2.12233487e+00 + sys_corr_76: -3.37531572e-01 + sys_corr_77: -2.83878437e+00 + sys_corr_78: 9.90070024e-01 + sys_corr_79: 2.98166698e-01 + sys_corr_80: -7.55047693e-01 + sys_corr_81: 1.51552715e+00 + sys_corr_82: -7.08677440e-01 + sys_corr_83: 5.52832202e-01 + sys_corr_84: -3.25103928e+00 + sys_corr_85: 2.72030206e+00 + sys_corr_86: 8.72686155e-01 + sys_corr_87: 6.58496949e-01 + sys_corr_88: -1.76645911e-01 + sys_corr_89: 4.09361371e-01 + sys_corr_90: 1.78535471e+00 + sys_corr_91: 3.66905174e+00 + sys_corr_92: 2.83604536e-01 + sys_corr_93: -1.93411288e+00 + sys_corr_94: -6.45307623e+00 + sys_corr_95: 8.32423557e-01 + sys_corr_96: -1.92078369e-01 + sys_corr_97: 1.43138500e+01 + sys_corr_98: 7.02469145e+00 + sys_corr_99: 6.59450339e+00 + sys_corr_100: 1.94554854e+01 + sys_corr_101: -2.99945572e+01 + sys_corr_102: -1.25517693e+00 + sys_corr_103: -1.73046740e+00 + sys_corr_104: -1.41034099e+01 + sys_corr_105: -7.31377666e+01 + sys_corr_106: 2.87174674e+01 + sys_corr_107: 6.29961996e+01 + sys_corr_108: 1.23744333e+01 + sys_corr_109: 3.61989334e+00 + sys_corr_110: 3.52192757e+00 + sys_corr_111: -9.81791646e-01 + sys_corr_112: 3.12406697e+00 + sys_corr_113: 2.03985410e+00 + sys_corr_114: 5.48204929e-04 + sys_corr_115: 1.50506638e+00 + sys_corr_116: -3.96458792e-01 + sys_corr_117: -1.68546457e-01 + sys_corr_118: 1.34622769e-01 + sys_corr_119: -1.54991666e-02 + sys_corr_120: 6.92307010e-02 + sys_corr_121: -1.23005046e-02 + sys_corr_122: 7.91412681e-02 + sys_corr_123: 9.97571484e-02 + sys_corr_124: -1.31477127e-01 + sys_corr_125: 5.57136763e-01 + sys_corr_126: 2.03334102e-02 + sys_corr_127: -1.49731894e+00 + sys_corr_128: -6.29639597e+00 + sys_corr_129: 1.37449039e+00 + sys_corr_130: -1.50139882e-02 + sys_corr_131: -1.94307414e-01 + sys_corr_132: -1.29709290e-01 stat: 0.0 - luminosity: 61.363632 -- sys_corr_1: 11.062823338211263 - sys_corr_2: 6.599058752596628 - sys_corr_3: -29.126318854256084 - sys_corr_4: -3.2057892405899486 - sys_corr_5: -8.31265332132895 - sys_corr_6: -1.043993702536137 - sys_corr_7: -1.7938273930728235 - sys_corr_8: -0.21505666258807402 - sys_corr_9: -1.2207550578740887 - sys_corr_10: 1.2661273812410865 - sys_corr_11: -1.0651213872458114 - sys_corr_12: 7.611078365440079 - sys_corr_13: -6.692695134140978 - sys_corr_14: 3.0960854722247677 - sys_corr_15: -0.13614773620257065 - sys_corr_16: -3.2443800140489296 - sys_corr_17: -12.906046700789089 - sys_corr_18: -2.9069711925091233 - sys_corr_19: -9.846761672235155 - sys_corr_20: -0.22504531742533926 - sys_corr_21: 5.8979110955034395 - sys_corr_22: 5.893756027902564 - sys_corr_23: -3.4450776222534074 - sys_corr_24: 1.1666822969020365 - sys_corr_25: -6.987723052175022 - sys_corr_26: -7.821773430117064 - sys_corr_27: 7.913513304123298 - sys_corr_28: -8.381722916613748 - sys_corr_29: -2.3764065545840327 - sys_corr_30: 0.8976280492348749 - sys_corr_31: 0.6256979644068948 - sys_corr_32: -0.3728646187957002 - sys_corr_33: 0.4883841665243206 - sys_corr_34: -1.984267950794085 - sys_corr_35: 1.5746148315244783 - sys_corr_36: -2.769904367591579 - sys_corr_37: 0.8062590440161438 - sys_corr_38: -0.06977041333651333 - sys_corr_39: 0.3923418677207024 - sys_corr_40: 1.1763931538187307 - sys_corr_41: 0.7493338182456913 - sys_corr_42: 1.0960753718083054 - sys_corr_43: 0.8695798840152239 - sys_corr_44: -0.9586163461350526 - sys_corr_45: 0.10375433278264558 - sys_corr_46: -0.7136828496048112 - sys_corr_47: 1.8814965333064069 - sys_corr_48: -5.236369992134499 - sys_corr_49: 2.8025078419783465 - sys_corr_50: 4.111264545752852 - sys_corr_51: -1.002953101130634 - sys_corr_52: 1.308645622878864 - sys_corr_53: 0.11860744426314597 - sys_corr_54: 0.6057132065427906 - sys_corr_55: 0.2010293882579378 - sys_corr_56: 0.5947354263934582 - sys_corr_57: 0.1139215344822847 - sys_corr_58: -0.3744773079332459 - sys_corr_59: 0.19200962152347356 - sys_corr_60: 1.0811004568606428 - sys_corr_61: -0.058596462925454194 - sys_corr_62: 0.5692517835555645 - sys_corr_63: 0.4717384389031264 - sys_corr_64: 0.2566261304068602 - sys_corr_65: -0.36355481207317353 - sys_corr_66: -0.35881274283324754 - sys_corr_67: -1.176972070953746 - sys_corr_68: -0.8858190158852695 - sys_corr_69: 1.1419748018234561 - sys_corr_70: -0.4071221236676391 - sys_corr_71: -0.5538531332373411 - sys_corr_72: -0.029180383762124125 - sys_corr_73: -0.11609098299607457 - sys_corr_74: 1.5844719121273994 - sys_corr_75: 2.200133826719239 - sys_corr_76: -1.0154757580760696 - sys_corr_77: -1.4703139955907194 - sys_corr_78: 0.9459979340032266 - sys_corr_79: -0.22958048174114998 - sys_corr_80: -1.190369774854443 - sys_corr_81: 1.208288754302125 - sys_corr_82: -0.8775443672694422 - sys_corr_83: 0.6807006007766911 - sys_corr_84: -2.288349940390798 - sys_corr_85: 1.2765031997633125 - sys_corr_86: 1.0763843133358086 - sys_corr_87: 0.3795452287805477 - sys_corr_88: 0.7148058764647943 - sys_corr_89: 0.6713678704495221 - sys_corr_90: 0.883168320346531 - sys_corr_91: 3.057137188678595 - sys_corr_92: -0.28512746175857856 - sys_corr_93: -2.3083439395812473 - sys_corr_94: -8.557704359091474 - sys_corr_95: 2.2454886195627477 - sys_corr_96: -0.02989276936044406 - sys_corr_97: 15.069339323764444 - sys_corr_98: 7.354035196221619 - sys_corr_99: 8.071281203566995 - sys_corr_100: -25.81051488778431 - sys_corr_101: -22.52215457040402 - sys_corr_102: 2.772086694731713 - sys_corr_103: -3.000763534000496 - sys_corr_104: -18.14445339299371 - sys_corr_105: 19.339641478625357 - sys_corr_106: -78.61505899032593 - sys_corr_107: 43.07583471926903 - sys_corr_108: 3.826197022825306 - sys_corr_109: 8.919466105729882 - sys_corr_110: 1.850911238989127 - sys_corr_111: -38.18263325026395 - sys_corr_112: 3.2407330369240626 - sys_corr_113: 2.940169174554124 - sys_corr_114: 0.005960917322198146 - sys_corr_115: 2.744637335549778 - sys_corr_116: -0.4509132021707759 - sys_corr_117: -0.18916808098371796 - sys_corr_118: 0.6016107290109735 - sys_corr_119: -0.026789557878418153 - sys_corr_120: 0.054957814795325854 - sys_corr_121: 0.001384228671956366 - sys_corr_122: -0.469453908463406 - sys_corr_123: 0.22724951448459288 - sys_corr_124: 0.15528477935183774 - sys_corr_125: -0.0757243966453079 - sys_corr_126: 0.09041427720324921 - sys_corr_127: -1.1984687507970309 - sys_corr_128: 10.108446819037281 - sys_corr_129: 1.8858753477397276 - sys_corr_130: -0.004956095623323374 - sys_corr_131: -0.02421903492946805 - sys_corr_132: -0.05106192887882274 + luminosity: 6.13636320e+01 +- sys_corr_1: 1.10628233e+01 + sys_corr_2: 6.59905875e+00 + sys_corr_3: -2.91263189e+01 + sys_corr_4: -3.20578924e+00 + sys_corr_5: -8.31265332e+00 + sys_corr_6: -1.04399370e+00 + sys_corr_7: -1.79382739e+00 + sys_corr_8: -2.15056663e-01 + sys_corr_9: -1.22075506e+00 + sys_corr_10: 1.26612738e+00 + sys_corr_11: -1.06512139e+00 + sys_corr_12: 7.61107837e+00 + sys_corr_13: -6.69269513e+00 + sys_corr_14: 3.09608547e+00 + sys_corr_15: -1.36147736e-01 + sys_corr_16: -3.24438001e+00 + sys_corr_17: -1.29060467e+01 + sys_corr_18: -2.90697119e+00 + sys_corr_19: -9.84676167e+00 + sys_corr_20: -2.25045317e-01 + sys_corr_21: 5.89791110e+00 + sys_corr_22: 5.89375603e+00 + sys_corr_23: -3.44507762e+00 + sys_corr_24: 1.16668230e+00 + sys_corr_25: -6.98772305e+00 + sys_corr_26: -7.82177343e+00 + sys_corr_27: 7.91351330e+00 + sys_corr_28: -8.38172292e+00 + sys_corr_29: -2.37640655e+00 + sys_corr_30: 8.97628049e-01 + sys_corr_31: 6.25697964e-01 + sys_corr_32: -3.72864619e-01 + sys_corr_33: 4.88384167e-01 + sys_corr_34: -1.98426795e+00 + sys_corr_35: 1.57461483e+00 + sys_corr_36: -2.76990437e+00 + sys_corr_37: 8.06259044e-01 + sys_corr_38: -6.97704133e-02 + sys_corr_39: 3.92341868e-01 + sys_corr_40: 1.17639315e+00 + sys_corr_41: 7.49333818e-01 + sys_corr_42: 1.09607537e+00 + sys_corr_43: 8.69579884e-01 + sys_corr_44: -9.58616346e-01 + sys_corr_45: 1.03754333e-01 + sys_corr_46: -7.13682850e-01 + sys_corr_47: 1.88149653e+00 + sys_corr_48: -5.23636999e+00 + sys_corr_49: 2.80250784e+00 + sys_corr_50: 4.11126455e+00 + sys_corr_51: -1.00295310e+00 + sys_corr_52: 1.30864562e+00 + sys_corr_53: 1.18607444e-01 + sys_corr_54: 6.05713207e-01 + sys_corr_55: 2.01029388e-01 + sys_corr_56: 5.94735426e-01 + sys_corr_57: 1.13921534e-01 + sys_corr_58: -3.74477308e-01 + sys_corr_59: 1.92009622e-01 + sys_corr_60: 1.08110046e+00 + sys_corr_61: -5.85964629e-02 + sys_corr_62: 5.69251784e-01 + sys_corr_63: 4.71738439e-01 + sys_corr_64: 2.56626130e-01 + sys_corr_65: -3.63554812e-01 + sys_corr_66: -3.58812743e-01 + sys_corr_67: -1.17697207e+00 + sys_corr_68: -8.85819016e-01 + sys_corr_69: 1.14197480e+00 + sys_corr_70: -4.07122124e-01 + sys_corr_71: -5.53853133e-01 + sys_corr_72: -2.91803838e-02 + sys_corr_73: -1.16090983e-01 + sys_corr_74: 1.58447191e+00 + sys_corr_75: 2.20013383e+00 + sys_corr_76: -1.01547576e+00 + sys_corr_77: -1.47031400e+00 + sys_corr_78: 9.45997934e-01 + sys_corr_79: -2.29580482e-01 + sys_corr_80: -1.19036977e+00 + sys_corr_81: 1.20828875e+00 + sys_corr_82: -8.77544367e-01 + sys_corr_83: 6.80700601e-01 + sys_corr_84: -2.28834994e+00 + sys_corr_85: 1.27650320e+00 + sys_corr_86: 1.07638431e+00 + sys_corr_87: 3.79545229e-01 + sys_corr_88: 7.14805876e-01 + sys_corr_89: 6.71367870e-01 + sys_corr_90: 8.83168320e-01 + sys_corr_91: 3.05713719e+00 + sys_corr_92: -2.85127462e-01 + sys_corr_93: -2.30834394e+00 + sys_corr_94: -8.55770436e+00 + sys_corr_95: 2.24548862e+00 + sys_corr_96: -2.98927694e-02 + sys_corr_97: 1.50693393e+01 + sys_corr_98: 7.35403520e+00 + sys_corr_99: 8.07128120e+00 + sys_corr_100: -2.58105149e+01 + sys_corr_101: -2.25221546e+01 + sys_corr_102: 2.77208669e+00 + sys_corr_103: -3.00076353e+00 + sys_corr_104: -1.81444534e+01 + sys_corr_105: 1.93396415e+01 + sys_corr_106: -7.86150590e+01 + sys_corr_107: 4.30758347e+01 + sys_corr_108: 3.82619702e+00 + sys_corr_109: 8.91946611e+00 + sys_corr_110: 1.85091124e+00 + sys_corr_111: -3.81826333e+01 + sys_corr_112: 3.24073304e+00 + sys_corr_113: 2.94016917e+00 + sys_corr_114: 5.96091732e-03 + sys_corr_115: 2.74463734e+00 + sys_corr_116: -4.50913202e-01 + sys_corr_117: -1.89168081e-01 + sys_corr_118: 6.01610729e-01 + sys_corr_119: -2.67895579e-02 + sys_corr_120: 5.49578148e-02 + sys_corr_121: 1.38422867e-03 + sys_corr_122: -4.69453908e-01 + sys_corr_123: 2.27249514e-01 + sys_corr_124: 1.55284779e-01 + sys_corr_125: -7.57243966e-02 + sys_corr_126: 9.04142772e-02 + sys_corr_127: -1.19846875e+00 + sys_corr_128: 1.01084468e+01 + sys_corr_129: 1.88587535e+00 + sys_corr_130: -4.95609562e-03 + sys_corr_131: -2.42190349e-02 + sys_corr_132: -5.10619289e-02 stat: 0.0 - luminosity: 59.62217800000001 -- sys_corr_1: 3.3521105281303463 - sys_corr_2: 7.814192110815054 - sys_corr_3: -31.26233959499561 - sys_corr_4: -9.352685615365901 - sys_corr_5: -20.11439468564771 - sys_corr_6: -4.829675562609403 - sys_corr_7: 1.7777988088483496 - sys_corr_8: -0.7659197533991289 - sys_corr_9: -1.2462589564054631 - sys_corr_10: -1.9384613063387506 - sys_corr_11: 3.647116907516618 - sys_corr_12: 2.363330780434282 - sys_corr_13: -4.467347196823792 - sys_corr_14: -1.3283515326301787 - sys_corr_15: 3.0233595316699966 - sys_corr_16: -5.049789813629104 - sys_corr_17: 14.513391508058769 - sys_corr_18: 12.219877415649094 - sys_corr_19: -4.096443546049084 - sys_corr_20: 4.950152560441334 - sys_corr_21: -0.43707357205765607 - sys_corr_22: 6.961856940498957 - sys_corr_23: -0.4011575395857601 - sys_corr_24: -0.15228877851827735 - sys_corr_25: -6.066297152057913 - sys_corr_26: -5.548052152876803 - sys_corr_27: 7.594991893334425 - sys_corr_28: -8.946753640382187 - sys_corr_29: -5.380134732523787 - sys_corr_30: 1.5714994557548667 - sys_corr_31: 2.5997471940417527 - sys_corr_32: -0.1591338297126511 - sys_corr_33: 0.10096563224690215 - sys_corr_34: -2.0034761055622434 - sys_corr_35: -0.13842329337435877 - sys_corr_36: -0.1818020954461482 - sys_corr_37: -0.6508509795939028 - sys_corr_38: 0.5311191815450467 - sys_corr_39: -0.11281372602764358 - sys_corr_40: 0.19592051521233306 - sys_corr_41: 0.6993983411259442 - sys_corr_42: 1.064340809259344 - sys_corr_43: 1.240454042049513 - sys_corr_44: -1.5193161997845255 - sys_corr_45: -0.3595277042223397 - sys_corr_46: 0.4184202538554525 - sys_corr_47: 2.509761707331785 - sys_corr_48: -6.577868546786405 - sys_corr_49: 3.215666226298878 - sys_corr_50: 4.350138981567729 - sys_corr_51: -1.6509126455958 - sys_corr_52: 2.1665103928710017 - sys_corr_53: -0.26589410197972524 - sys_corr_54: 0.7738342140288317 - sys_corr_55: 0.06172337589080099 - sys_corr_56: 0.08469994392439377 - sys_corr_57: -0.3379623188898729 - sys_corr_58: -0.0548053845119404 - sys_corr_59: -0.041546381142094656 - sys_corr_60: 1.050825200349592 - sys_corr_61: -0.04389784198754436 - sys_corr_62: 0.37913479305112624 - sys_corr_63: 1.1474399155607018 - sys_corr_64: -0.12229568197782523 - sys_corr_65: -0.42251146383728394 - sys_corr_66: 0.6157386099183019 - sys_corr_67: -0.761263981606983 - sys_corr_68: -0.06810725297489238 - sys_corr_69: 0.4753292242217863 - sys_corr_70: -0.5873634827679447 - sys_corr_71: -0.2648689197367378 - sys_corr_72: -0.8043067557969614 - sys_corr_73: 0.44010740996644504 - sys_corr_74: 1.5591255279791183 - sys_corr_75: 1.8491608552203895 - sys_corr_76: -0.6477143519637061 - sys_corr_77: -1.874375908362742 - sys_corr_78: 2.5510100239856817 - sys_corr_79: 0.6801924509738697 - sys_corr_80: -0.8091309215191504 - sys_corr_81: 0.7284042003960459 - sys_corr_82: -0.5778892261017721 - sys_corr_83: 0.31722395865102454 - sys_corr_84: -3.1804520254265993 - sys_corr_85: 1.7916334982501951 - sys_corr_86: 1.0798708013844582 - sys_corr_87: -0.26708407161673753 - sys_corr_88: 0.38275576942353495 - sys_corr_89: 1.028170923107174 - sys_corr_90: 1.0621949456666937 - sys_corr_91: 2.334366364610304 - sys_corr_92: -0.5335901279954408 - sys_corr_93: -1.8419304675895058 - sys_corr_94: -7.381482593923153 - sys_corr_95: 2.0276275881138566 - sys_corr_96: 0.362321549618965 - sys_corr_97: 10.068975949051753 - sys_corr_98: 5.034151997983341 - sys_corr_99: 7.12570155223541 - sys_corr_100: -10.35737519370157 - sys_corr_101: -14.637730600150414 - sys_corr_102: 0.008898277051427836 - sys_corr_103: -2.7331320692999848 - sys_corr_104: -12.64258769650259 - sys_corr_105: -29.29904358149228 - sys_corr_106: 23.488818421294315 - sys_corr_107: -37.1139043714665 - sys_corr_108: -43.91944989863029 - sys_corr_109: 15.15910190566439 - sys_corr_110: 1.713097708561113 - sys_corr_111: -62.36651797248168 - sys_corr_112: 4.118056445150777 - sys_corr_113: 4.859521078894855 - sys_corr_114: 0.011482747844387416 - sys_corr_115: 3.4926071001493337 - sys_corr_116: -0.6129185561364318 - sys_corr_117: -0.23059708485752098 - sys_corr_118: 0.897099514156116 - sys_corr_119: -0.046006287275446874 - sys_corr_120: 0.11712704464719796 - sys_corr_121: 0.015364248375233465 - sys_corr_122: -0.5164539569550747 - sys_corr_123: 0.17233744625487155 - sys_corr_124: 0.07408606623263451 - sys_corr_125: -0.15479876159641612 - sys_corr_126: 0.12761212049958878 - sys_corr_127: -1.674980867723255 - sys_corr_128: 29.775052703577796 - sys_corr_129: 1.4744530534457978 - sys_corr_130: -0.009634083267671574 - sys_corr_131: -0.062311505541510485 - sys_corr_132: 0.0817892495692453 + luminosity: 5.96221780e+01 +- sys_corr_1: 3.35211053e+00 + sys_corr_2: 7.81419211e+00 + sys_corr_3: -3.12623396e+01 + sys_corr_4: -9.35268562e+00 + sys_corr_5: -2.01143947e+01 + sys_corr_6: -4.82967556e+00 + sys_corr_7: 1.77779881e+00 + sys_corr_8: -7.65919753e-01 + sys_corr_9: -1.24625896e+00 + sys_corr_10: -1.93846131e+00 + sys_corr_11: 3.64711691e+00 + sys_corr_12: 2.36333078e+00 + sys_corr_13: -4.46734720e+00 + sys_corr_14: -1.32835153e+00 + sys_corr_15: 3.02335953e+00 + sys_corr_16: -5.04978981e+00 + sys_corr_17: 1.45133915e+01 + sys_corr_18: 1.22198774e+01 + sys_corr_19: -4.09644355e+00 + sys_corr_20: 4.95015256e+00 + sys_corr_21: -4.37073572e-01 + sys_corr_22: 6.96185694e+00 + sys_corr_23: -4.01157540e-01 + sys_corr_24: -1.52288779e-01 + sys_corr_25: -6.06629715e+00 + sys_corr_26: -5.54805215e+00 + sys_corr_27: 7.59499189e+00 + sys_corr_28: -8.94675364e+00 + sys_corr_29: -5.38013473e+00 + sys_corr_30: 1.57149946e+00 + sys_corr_31: 2.59974719e+00 + sys_corr_32: -1.59133830e-01 + sys_corr_33: 1.00965632e-01 + sys_corr_34: -2.00347611e+00 + sys_corr_35: -1.38423293e-01 + sys_corr_36: -1.81802095e-01 + sys_corr_37: -6.50850980e-01 + sys_corr_38: 5.31119182e-01 + sys_corr_39: -1.12813726e-01 + sys_corr_40: 1.95920515e-01 + sys_corr_41: 6.99398341e-01 + sys_corr_42: 1.06434081e+00 + sys_corr_43: 1.24045404e+00 + sys_corr_44: -1.51931620e+00 + sys_corr_45: -3.59527704e-01 + sys_corr_46: 4.18420254e-01 + sys_corr_47: 2.50976171e+00 + sys_corr_48: -6.57786855e+00 + sys_corr_49: 3.21566623e+00 + sys_corr_50: 4.35013898e+00 + sys_corr_51: -1.65091265e+00 + sys_corr_52: 2.16651039e+00 + sys_corr_53: -2.65894102e-01 + sys_corr_54: 7.73834214e-01 + sys_corr_55: 6.17233759e-02 + sys_corr_56: 8.46999439e-02 + sys_corr_57: -3.37962319e-01 + sys_corr_58: -5.48053845e-02 + sys_corr_59: -4.15463811e-02 + sys_corr_60: 1.05082520e+00 + sys_corr_61: -4.38978420e-02 + sys_corr_62: 3.79134793e-01 + sys_corr_63: 1.14743992e+00 + sys_corr_64: -1.22295682e-01 + sys_corr_65: -4.22511464e-01 + sys_corr_66: 6.15738610e-01 + sys_corr_67: -7.61263982e-01 + sys_corr_68: -6.81072530e-02 + sys_corr_69: 4.75329224e-01 + sys_corr_70: -5.87363483e-01 + sys_corr_71: -2.64868920e-01 + sys_corr_72: -8.04306756e-01 + sys_corr_73: 4.40107410e-01 + sys_corr_74: 1.55912553e+00 + sys_corr_75: 1.84916086e+00 + sys_corr_76: -6.47714352e-01 + sys_corr_77: -1.87437591e+00 + sys_corr_78: 2.55101002e+00 + sys_corr_79: 6.80192451e-01 + sys_corr_80: -8.09130922e-01 + sys_corr_81: 7.28404200e-01 + sys_corr_82: -5.77889226e-01 + sys_corr_83: 3.17223959e-01 + sys_corr_84: -3.18045203e+00 + sys_corr_85: 1.79163350e+00 + sys_corr_86: 1.07987080e+00 + sys_corr_87: -2.67084072e-01 + sys_corr_88: 3.82755769e-01 + sys_corr_89: 1.02817092e+00 + sys_corr_90: 1.06219495e+00 + sys_corr_91: 2.33436636e+00 + sys_corr_92: -5.33590128e-01 + sys_corr_93: -1.84193047e+00 + sys_corr_94: -7.38148259e+00 + sys_corr_95: 2.02762759e+00 + sys_corr_96: 3.62321550e-01 + sys_corr_97: 1.00689759e+01 + sys_corr_98: 5.03415200e+00 + sys_corr_99: 7.12570155e+00 + sys_corr_100: -1.03573752e+01 + sys_corr_101: -1.46377306e+01 + sys_corr_102: 8.89827705e-03 + sys_corr_103: -2.73313207e+00 + sys_corr_104: -1.26425877e+01 + sys_corr_105: -2.92990436e+01 + sys_corr_106: 2.34888184e+01 + sys_corr_107: -3.71139044e+01 + sys_corr_108: -4.39194499e+01 + sys_corr_109: 1.51591019e+01 + sys_corr_110: 1.71309771e+00 + sys_corr_111: -6.23665180e+01 + sys_corr_112: 4.11805645e+00 + sys_corr_113: 4.85952108e+00 + sys_corr_114: 1.14827478e-02 + sys_corr_115: 3.49260710e+00 + sys_corr_116: -6.12918556e-01 + sys_corr_117: -2.30597085e-01 + sys_corr_118: 8.97099514e-01 + sys_corr_119: -4.60062873e-02 + sys_corr_120: 1.17127045e-01 + sys_corr_121: 1.53642484e-02 + sys_corr_122: -5.16453957e-01 + sys_corr_123: 1.72337446e-01 + sys_corr_124: 7.40860662e-02 + sys_corr_125: -1.54798762e-01 + sys_corr_126: 1.27612120e-01 + sys_corr_127: -1.67498087e+00 + sys_corr_128: 2.97750527e+01 + sys_corr_129: 1.47445305e+00 + sys_corr_130: -9.63408327e-03 + sys_corr_131: -6.23115055e-02 + sys_corr_132: 8.17892496e-02 stat: 0.0 luminosity: 55.40271 -- sys_corr_1: -0.43758305014111465 - sys_corr_2: 7.346678411334759 - sys_corr_3: -32.64876258401495 - sys_corr_4: -10.831052333528577 - sys_corr_5: -26.624940395079093 - sys_corr_6: -7.303958632389601 - sys_corr_7: 3.3294429017438527 - sys_corr_8: 1.712836559124797 - sys_corr_9: 0.0613084056584519 - sys_corr_10: 0.9090915702380779 - sys_corr_11: 3.5392542185040643 - sys_corr_12: 2.2420294297219603 - sys_corr_13: -0.3403109864362872 - sys_corr_14: -3.3693504271285546 - sys_corr_15: 1.618272859931762 - sys_corr_16: -1.3490453741648556 - sys_corr_17: -11.396863590177572 - sys_corr_18: -2.4381582476887873 - sys_corr_19: 17.238109177006304 - sys_corr_20: 3.672980807374872 - sys_corr_21: -9.789245641265774 - sys_corr_22: 0.3541318055532093 - sys_corr_23: 1.3081603512420203 - sys_corr_24: -3.8152700397868395 - sys_corr_25: -8.369880699151029 - sys_corr_26: -2.2728973237207897 - sys_corr_27: 7.536085985929682 - sys_corr_28: -7.324313235941581 - sys_corr_29: -5.033686276319659 - sys_corr_30: 3.1177062363959407 - sys_corr_31: 1.067333801937263 - sys_corr_32: -0.19561357849277314 - sys_corr_33: -0.09684363473539652 - sys_corr_34: -1.2308245855357371 - sys_corr_35: 0.42414491696365114 - sys_corr_36: -1.9534431976601485 - sys_corr_37: 0.9050207767172531 - sys_corr_38: -0.5196491774140142 - sys_corr_39: -0.38551193943813566 - sys_corr_40: -0.5690977119434346 - sys_corr_41: 1.1731809519669032 - sys_corr_42: 2.115919024753108 - sys_corr_43: 0.6538429270749404 - sys_corr_44: -1.2370237187035453 - sys_corr_45: -0.16513602397401866 - sys_corr_46: 0.6383674361854473 - sys_corr_47: 2.723545620947143 - sys_corr_48: -6.78735851170439 - sys_corr_49: 3.173882431942522 - sys_corr_50: 2.947515616585995 - sys_corr_51: -0.8580344405139905 - sys_corr_52: 0.6728453962426965 - sys_corr_53: -0.26822512183002895 - sys_corr_54: 0.8803741620377667 - sys_corr_55: -0.6926560576744428 - sys_corr_56: 0.03245667440472389 - sys_corr_57: 0.18986834938603867 - sys_corr_58: 0.007356600137047011 - sys_corr_59: 0.3483043454388905 - sys_corr_60: 0.5919156821755731 - sys_corr_61: 0.5616044981710504 - sys_corr_62: 1.0571470672299765 - sys_corr_63: 0.15379239491006835 - sys_corr_64: 0.4618318825632168 - sys_corr_65: -0.32217596484295113 - sys_corr_66: 0.21887329894485094 - sys_corr_67: -0.33287513009388925 - sys_corr_68: -0.41439988796734595 - sys_corr_69: -0.12158154965302544 - sys_corr_70: -1.372319287762559 - sys_corr_71: -0.9162530765081077 - sys_corr_72: 0.17559441795728079 - sys_corr_73: 0.3520897935350739 - sys_corr_74: 2.076541658295743 - sys_corr_75: 2.514179748435887 - sys_corr_76: -0.062016797809870225 - sys_corr_77: -2.3800865002704352 - sys_corr_78: 0.45002589580712904 - sys_corr_79: 1.4137258937269184 - sys_corr_80: -1.3260379586235824 - sys_corr_81: 2.173015515729891 - sys_corr_82: -1.3384711136893712 - sys_corr_83: 1.3738570663767886 - sys_corr_84: -4.455995773495405 - sys_corr_85: 1.6038914249573046 - sys_corr_86: 1.8161815639460819 - sys_corr_87: -0.004158229157895405 - sys_corr_88: 0.6788431185438173 - sys_corr_89: 1.684152063078437 - sys_corr_90: 0.2076373806356784 - sys_corr_91: 4.088515904535343 - sys_corr_92: 0.12011787855299533 - sys_corr_93: -2.3520662714978635 - sys_corr_94: -8.501220253610075 - sys_corr_95: 2.7652212992394984 - sys_corr_96: 0.5273636919606771 - sys_corr_97: 10.794340096429861 - sys_corr_98: 5.414393204193373 - sys_corr_99: 7.186480234059927 - sys_corr_100: -10.890628581581632 - sys_corr_101: -19.70273868710481 - sys_corr_102: 5.876964079834257 - sys_corr_103: -3.1846751846021415 - sys_corr_104: -14.405061547852974 - sys_corr_105: -9.42804247286544 - sys_corr_106: -22.00854684551573 - sys_corr_107: 6.522081763383541 - sys_corr_108: -73.2932102182986 - sys_corr_109: -9.204229400430586 - sys_corr_110: 2.725944657123619 - sys_corr_111: 50.573647705174096 - sys_corr_112: -0.13623245674862886 - sys_corr_113: 8.082651717032677 - sys_corr_114: 0.009388429778813491 - sys_corr_115: 3.4519680606079985 - sys_corr_116: -0.51687517076819 - sys_corr_117: -0.20444495514591268 - sys_corr_118: 0.8600086359872512 - sys_corr_119: -0.03489231917898175 - sys_corr_120: 0.09919022010158281 - sys_corr_121: 0.07335627140764081 - sys_corr_122: -0.06455766969915452 - sys_corr_123: -0.48117387959229235 - sys_corr_124: 0.02551530637960221 - sys_corr_125: -0.08763982844151687 - sys_corr_126: 0.24526995700498228 - sys_corr_127: -0.739042513078901 - sys_corr_128: -15.463002818506892 - sys_corr_129: 1.8324425584021193 - sys_corr_130: -0.0462709032479278 - sys_corr_131: -0.08632888279917326 - sys_corr_132: -0.02731581200863822 +- sys_corr_1: -4.37583050e-01 + sys_corr_2: 7.34667841e+00 + sys_corr_3: -3.26487626e+01 + sys_corr_4: -1.08310523e+01 + sys_corr_5: -2.66249404e+01 + sys_corr_6: -7.30395863e+00 + sys_corr_7: 3.32944290e+00 + sys_corr_8: 1.71283656e+00 + sys_corr_9: 6.13084057e-02 + sys_corr_10: 9.09091570e-01 + sys_corr_11: 3.53925422e+00 + sys_corr_12: 2.24202943e+00 + sys_corr_13: -3.40310986e-01 + sys_corr_14: -3.36935043e+00 + sys_corr_15: 1.61827286e+00 + sys_corr_16: -1.34904537e+00 + sys_corr_17: -1.13968636e+01 + sys_corr_18: -2.43815825e+00 + sys_corr_19: 1.72381092e+01 + sys_corr_20: 3.67298081e+00 + sys_corr_21: -9.78924564e+00 + sys_corr_22: 3.54131806e-01 + sys_corr_23: 1.30816035e+00 + sys_corr_24: -3.81527004e+00 + sys_corr_25: -8.36988070e+00 + sys_corr_26: -2.27289732e+00 + sys_corr_27: 7.53608599e+00 + sys_corr_28: -7.32431324e+00 + sys_corr_29: -5.03368628e+00 + sys_corr_30: 3.11770624e+00 + sys_corr_31: 1.06733380e+00 + sys_corr_32: -1.95613578e-01 + sys_corr_33: -9.68436347e-02 + sys_corr_34: -1.23082459e+00 + sys_corr_35: 4.24144917e-01 + sys_corr_36: -1.95344320e+00 + sys_corr_37: 9.05020777e-01 + sys_corr_38: -5.19649177e-01 + sys_corr_39: -3.85511939e-01 + sys_corr_40: -5.69097712e-01 + sys_corr_41: 1.17318095e+00 + sys_corr_42: 2.11591902e+00 + sys_corr_43: 6.53842927e-01 + sys_corr_44: -1.23702372e+00 + sys_corr_45: -1.65136024e-01 + sys_corr_46: 6.38367436e-01 + sys_corr_47: 2.72354562e+00 + sys_corr_48: -6.78735851e+00 + sys_corr_49: 3.17388243e+00 + sys_corr_50: 2.94751562e+00 + sys_corr_51: -8.58034441e-01 + sys_corr_52: 6.72845396e-01 + sys_corr_53: -2.68225122e-01 + sys_corr_54: 8.80374162e-01 + sys_corr_55: -6.92656058e-01 + sys_corr_56: 3.24566744e-02 + sys_corr_57: 1.89868349e-01 + sys_corr_58: 7.35660014e-03 + sys_corr_59: 3.48304345e-01 + sys_corr_60: 5.91915682e-01 + sys_corr_61: 5.61604498e-01 + sys_corr_62: 1.05714707e+00 + sys_corr_63: 1.53792395e-01 + sys_corr_64: 4.61831883e-01 + sys_corr_65: -3.22175965e-01 + sys_corr_66: 2.18873299e-01 + sys_corr_67: -3.32875130e-01 + sys_corr_68: -4.14399888e-01 + sys_corr_69: -1.21581550e-01 + sys_corr_70: -1.37231929e+00 + sys_corr_71: -9.16253077e-01 + sys_corr_72: 1.75594418e-01 + sys_corr_73: 3.52089794e-01 + sys_corr_74: 2.07654166e+00 + sys_corr_75: 2.51417975e+00 + sys_corr_76: -6.20167978e-02 + sys_corr_77: -2.38008650e+00 + sys_corr_78: 4.50025896e-01 + sys_corr_79: 1.41372589e+00 + sys_corr_80: -1.32603796e+00 + sys_corr_81: 2.17301552e+00 + sys_corr_82: -1.33847111e+00 + sys_corr_83: 1.37385707e+00 + sys_corr_84: -4.45599577e+00 + sys_corr_85: 1.60389142e+00 + sys_corr_86: 1.81618156e+00 + sys_corr_87: -4.15822916e-03 + sys_corr_88: 6.78843119e-01 + sys_corr_89: 1.68415206e+00 + sys_corr_90: 2.07637381e-01 + sys_corr_91: 4.08851590e+00 + sys_corr_92: 1.20117879e-01 + sys_corr_93: -2.35206627e+00 + sys_corr_94: -8.50122025e+00 + sys_corr_95: 2.76522130e+00 + sys_corr_96: 5.27363692e-01 + sys_corr_97: 1.07943401e+01 + sys_corr_98: 5.41439320e+00 + sys_corr_99: 7.18648023e+00 + sys_corr_100: -1.08906286e+01 + sys_corr_101: -1.97027387e+01 + sys_corr_102: 5.87696408e+00 + sys_corr_103: -3.18467518e+00 + sys_corr_104: -1.44050615e+01 + sys_corr_105: -9.42804247e+00 + sys_corr_106: -2.20085468e+01 + sys_corr_107: 6.52208176e+00 + sys_corr_108: -7.32932102e+01 + sys_corr_109: -9.20422940e+00 + sys_corr_110: 2.72594466e+00 + sys_corr_111: 5.05736477e+01 + sys_corr_112: -1.36232457e-01 + sys_corr_113: 8.08265172e+00 + sys_corr_114: 9.38842978e-03 + sys_corr_115: 3.45196806e+00 + sys_corr_116: -5.16875171e-01 + sys_corr_117: -2.04444955e-01 + sys_corr_118: 8.60008636e-01 + sys_corr_119: -3.48923192e-02 + sys_corr_120: 9.91902201e-02 + sys_corr_121: 7.33562714e-02 + sys_corr_122: -6.45576697e-02 + sys_corr_123: -4.81173880e-01 + sys_corr_124: 2.55153064e-02 + sys_corr_125: -8.76398284e-02 + sys_corr_126: 2.45269957e-01 + sys_corr_127: -7.39042513e-01 + sys_corr_128: -1.54630028e+01 + sys_corr_129: 1.83244256e+00 + sys_corr_130: -4.62709032e-02 + sys_corr_131: -8.63288828e-02 + sys_corr_132: -2.73158120e-02 stat: 0.0 - luminosity: 53.63272200000001 -- sys_corr_1: -7.1681804442018695 - sys_corr_2: 3.2393251945094583 - sys_corr_3: -34.69477206286761 - sys_corr_4: -14.230931619525013 - sys_corr_5: -33.09023855335386 - sys_corr_6: -8.307768351268157 - sys_corr_7: 6.6321006142363155 - sys_corr_8: 4.290642287228193 - sys_corr_9: 1.7284495932440527 - sys_corr_10: 1.3934069671248868 - sys_corr_11: 1.0260278880467508 - sys_corr_12: -2.226733404608203 - sys_corr_13: 3.50605704635746 - sys_corr_14: -1.0301870439411291 - sys_corr_15: -0.9526204936183635 - sys_corr_16: 3.3061592996183844 - sys_corr_17: 1.4967692996560094 - sys_corr_18: -4.035315494690713 - sys_corr_19: 1.802160238628345 - sys_corr_20: -5.227511591962643 - sys_corr_21: 23.277617412951773 - sys_corr_22: 0.9329594421014556 - sys_corr_23: -1.5640948059178499 - sys_corr_24: -1.0518406716660749 - sys_corr_25: 6.11221713617539 - sys_corr_26: -6.9077056156764 - sys_corr_27: 4.055889982516786 - sys_corr_28: -9.794295645016833 - sys_corr_29: -8.326135790305177 - sys_corr_30: 2.377509876046128 - sys_corr_31: 0.5669826535714699 - sys_corr_32: -0.24079617451018281 - sys_corr_33: 0.18015290598178912 - sys_corr_34: 0.7902236421987203 - sys_corr_35: 0.9006346088969421 - sys_corr_36: 0.06980381867096153 - sys_corr_37: 0.46584364631686487 - sys_corr_38: 0.30524675383099886 - sys_corr_39: 0.5119402871403318 - sys_corr_40: 0.0895879145522092 - sys_corr_41: 0.9957645784718991 - sys_corr_42: 1.2711163080897432 - sys_corr_43: 0.8982657271587233 - sys_corr_44: -1.7676517428693408 - sys_corr_45: 0.1505005527440527 - sys_corr_46: 0.35374985478352367 - sys_corr_47: 2.5606825094052486 - sys_corr_48: -6.09295481536107 - sys_corr_49: 3.3708842368040988 - sys_corr_50: 3.026461458966156 - sys_corr_51: -0.8552754051152514 - sys_corr_52: 1.4362189948042965 - sys_corr_53: -0.10069782015293699 - sys_corr_54: 0.3155514250262995 - sys_corr_55: 0.49605498900999484 - sys_corr_56: 0.01476927882733331 - sys_corr_57: 0.3760408166387291 - sys_corr_58: -0.3044827579207796 - sys_corr_59: -0.006129341395136953 - sys_corr_60: 0.6436754858095273 - sys_corr_61: 0.765961782262002 - sys_corr_62: 1.4458362504367737 - sys_corr_63: 0.1089424442587531 - sys_corr_64: 0.04816104871070092 - sys_corr_65: -0.9420446409951643 - sys_corr_66: 0.4228821750789358 - sys_corr_67: -0.6466010812163755 - sys_corr_68: -0.5457147691261091 - sys_corr_69: -0.019048806690416895 - sys_corr_70: 0.08080899703560807 - sys_corr_71: -0.4147633762291229 - sys_corr_72: -0.2916646667026393 - sys_corr_73: 1.0958031514653106 - sys_corr_74: 1.848678341634173 - sys_corr_75: 1.15805373974525 - sys_corr_76: 0.2920646504433934 - sys_corr_77: -0.5403794464237148 - sys_corr_78: 1.3630321103383152 - sys_corr_79: 0.6457119969057 - sys_corr_80: -1.0360333797586978 - sys_corr_81: 0.18194801840418912 - sys_corr_82: -0.6907931847893454 - sys_corr_83: 0.6441290446629171 - sys_corr_84: -4.424575663310724 - sys_corr_85: 1.014566140504483 - sys_corr_86: 0.5458233421014049 - sys_corr_87: -0.3100746340069992 - sys_corr_88: 0.7976936989000744 - sys_corr_89: 1.2527679261451268 - sys_corr_90: 1.2728221544941216 - sys_corr_91: 3.2933636064718415 - sys_corr_92: -0.21510405989648754 - sys_corr_93: -1.8060916218164231 - sys_corr_94: -7.017423781495445 - sys_corr_95: 0.9978385007624329 - sys_corr_96: 0.10386820072669563 - sys_corr_97: 8.424704400981609 - sys_corr_98: 4.053635903439937 - sys_corr_99: 4.001999105850172 - sys_corr_100: -6.905133506684079 - sys_corr_101: -12.981841632300677 - sys_corr_102: -1.1006842489065687 - sys_corr_103: -2.1221169803653837 - sys_corr_104: -8.622745452689642 - sys_corr_105: -12.474729872548146 - sys_corr_106: -5.525474773505629 - sys_corr_107: -11.167540361564265 - sys_corr_108: 9.317828047697825 - sys_corr_109: -81.70201429120084 - sys_corr_110: 2.8239415050678596 - sys_corr_111: -14.510811872559831 - sys_corr_112: -19.85838260524807 - sys_corr_113: 3.1463670190404724 - sys_corr_114: 0.005007274574189219 - sys_corr_115: 1.2874118532303938 - sys_corr_116: -0.3599712748837483 - sys_corr_117: -0.11055776655273022 - sys_corr_118: 2.4815358881253333 - sys_corr_119: -0.03315532413783951 - sys_corr_120: 0.06202511804896464 - sys_corr_121: 0.12562489015097755 - sys_corr_122: -0.3065216111237709 - sys_corr_123: -0.7330179385703746 - sys_corr_124: 0.6606075923385065 - sys_corr_125: 0.06826450443662542 - sys_corr_126: 0.16392822865019185 - sys_corr_127: -0.284280279410605 - sys_corr_128: 8.376561315009305 - sys_corr_129: 6.692799035754631 - sys_corr_130: 0.055975668602705746 - sys_corr_131: 0.03517619281068336 - sys_corr_132: -0.5890054365226369 + luminosity: 5.36327220e+01 +- sys_corr_1: -7.16818044e+00 + sys_corr_2: 3.23932519e+00 + sys_corr_3: -3.46947721e+01 + sys_corr_4: -1.42309316e+01 + sys_corr_5: -3.30902386e+01 + sys_corr_6: -8.30776835e+00 + sys_corr_7: 6.63210061e+00 + sys_corr_8: 4.29064229e+00 + sys_corr_9: 1.72844959e+00 + sys_corr_10: 1.39340697e+00 + sys_corr_11: 1.02602789e+00 + sys_corr_12: -2.22673340e+00 + sys_corr_13: 3.50605705e+00 + sys_corr_14: -1.03018704e+00 + sys_corr_15: -9.52620494e-01 + sys_corr_16: 3.30615930e+00 + sys_corr_17: 1.49676930e+00 + sys_corr_18: -4.03531549e+00 + sys_corr_19: 1.80216024e+00 + sys_corr_20: -5.22751159e+00 + sys_corr_21: 2.32776174e+01 + sys_corr_22: 9.32959442e-01 + sys_corr_23: -1.56409481e+00 + sys_corr_24: -1.05184067e+00 + sys_corr_25: 6.11221714e+00 + sys_corr_26: -6.90770562e+00 + sys_corr_27: 4.05588998e+00 + sys_corr_28: -9.79429565e+00 + sys_corr_29: -8.32613579e+00 + sys_corr_30: 2.37750988e+00 + sys_corr_31: 5.66982654e-01 + sys_corr_32: -2.40796175e-01 + sys_corr_33: 1.80152906e-01 + sys_corr_34: 7.90223642e-01 + sys_corr_35: 9.00634609e-01 + sys_corr_36: 6.98038187e-02 + sys_corr_37: 4.65843646e-01 + sys_corr_38: 3.05246754e-01 + sys_corr_39: 5.11940287e-01 + sys_corr_40: 8.95879146e-02 + sys_corr_41: 9.95764578e-01 + sys_corr_42: 1.27111631e+00 + sys_corr_43: 8.98265727e-01 + sys_corr_44: -1.76765174e+00 + sys_corr_45: 1.50500553e-01 + sys_corr_46: 3.53749855e-01 + sys_corr_47: 2.56068251e+00 + sys_corr_48: -6.09295482e+00 + sys_corr_49: 3.37088424e+00 + sys_corr_50: 3.02646146e+00 + sys_corr_51: -8.55275405e-01 + sys_corr_52: 1.43621899e+00 + sys_corr_53: -1.00697820e-01 + sys_corr_54: 3.15551425e-01 + sys_corr_55: 4.96054989e-01 + sys_corr_56: 1.47692788e-02 + sys_corr_57: 3.76040817e-01 + sys_corr_58: -3.04482758e-01 + sys_corr_59: -6.12934140e-03 + sys_corr_60: 6.43675486e-01 + sys_corr_61: 7.65961782e-01 + sys_corr_62: 1.44583625e+00 + sys_corr_63: 1.08942444e-01 + sys_corr_64: 4.81610487e-02 + sys_corr_65: -9.42044641e-01 + sys_corr_66: 4.22882175e-01 + sys_corr_67: -6.46601081e-01 + sys_corr_68: -5.45714769e-01 + sys_corr_69: -1.90488067e-02 + sys_corr_70: 8.08089970e-02 + sys_corr_71: -4.14763376e-01 + sys_corr_72: -2.91664667e-01 + sys_corr_73: 1.09580315e+00 + sys_corr_74: 1.84867834e+00 + sys_corr_75: 1.15805374e+00 + sys_corr_76: 2.92064650e-01 + sys_corr_77: -5.40379446e-01 + sys_corr_78: 1.36303211e+00 + sys_corr_79: 6.45711997e-01 + sys_corr_80: -1.03603338e+00 + sys_corr_81: 1.81948018e-01 + sys_corr_82: -6.90793185e-01 + sys_corr_83: 6.44129045e-01 + sys_corr_84: -4.42457566e+00 + sys_corr_85: 1.01456614e+00 + sys_corr_86: 5.45823342e-01 + sys_corr_87: -3.10074634e-01 + sys_corr_88: 7.97693699e-01 + sys_corr_89: 1.25276793e+00 + sys_corr_90: 1.27282215e+00 + sys_corr_91: 3.29336361e+00 + sys_corr_92: -2.15104060e-01 + sys_corr_93: -1.80609162e+00 + sys_corr_94: -7.01742378e+00 + sys_corr_95: 9.97838501e-01 + sys_corr_96: 1.03868201e-01 + sys_corr_97: 8.42470440e+00 + sys_corr_98: 4.05363590e+00 + sys_corr_99: 4.00199911e+00 + sys_corr_100: -6.90513351e+00 + sys_corr_101: -1.29818416e+01 + sys_corr_102: -1.10068425e+00 + sys_corr_103: -2.12211698e+00 + sys_corr_104: -8.62274545e+00 + sys_corr_105: -1.24747299e+01 + sys_corr_106: -5.52547477e+00 + sys_corr_107: -1.11675404e+01 + sys_corr_108: 9.31782805e+00 + sys_corr_109: -8.17020143e+01 + sys_corr_110: 2.82394151e+00 + sys_corr_111: -1.45108119e+01 + sys_corr_112: -1.98583826e+01 + sys_corr_113: 3.14636702e+00 + sys_corr_114: 5.00727457e-03 + sys_corr_115: 1.28741185e+00 + sys_corr_116: -3.59971275e-01 + sys_corr_117: -1.10557767e-01 + sys_corr_118: 2.48153589e+00 + sys_corr_119: -3.31553241e-02 + sys_corr_120: 6.20251180e-02 + sys_corr_121: 1.25624890e-01 + sys_corr_122: -3.06521611e-01 + sys_corr_123: -7.33017939e-01 + sys_corr_124: 6.60607592e-01 + sys_corr_125: 6.82645044e-02 + sys_corr_126: 1.63928229e-01 + sys_corr_127: -2.84280279e-01 + sys_corr_128: 8.37656132e+00 + sys_corr_129: 6.69279904e+00 + sys_corr_130: 5.59756686e-02 + sys_corr_131: 3.51761928e-02 + sys_corr_132: -5.89005437e-01 stat: 0.0 - luminosity: 48.11107400000001 -- sys_corr_1: -8.410994944457501 - sys_corr_2: 4.2762788010630866 - sys_corr_3: -34.28766900192793 - sys_corr_4: -8.32664524171526 - sys_corr_5: -30.466974990374887 - sys_corr_6: -9.761919655806212 - sys_corr_7: 7.354468332616826 - sys_corr_8: 5.819710629111437 - sys_corr_9: 3.712961360162199 - sys_corr_10: 2.3124877388820697 - sys_corr_11: 3.0351395073660363 - sys_corr_12: -2.267793586951259 - sys_corr_13: 5.766620456338827 - sys_corr_14: 3.2668152590692916 - sys_corr_15: -2.7949206059920892 - sys_corr_16: 5.901201991469429 - sys_corr_17: 1.6753657980473877 - sys_corr_18: -7.2892754493678344 - sys_corr_19: -11.402208985902467 - sys_corr_20: 12.239024622068833 - sys_corr_21: -6.188782578652877 - sys_corr_22: 0.8225103232439513 - sys_corr_23: 2.019067744262448 - sys_corr_24: -2.348321623130054 - sys_corr_25: -6.117573827117939 - sys_corr_26: -6.433240520142635 - sys_corr_27: 4.290902810859761 - sys_corr_28: -5.557764957530112 - sys_corr_29: -3.8273282877304142 - sys_corr_30: 3.2737039550496947 - sys_corr_31: 3.7439537272051 - sys_corr_32: -0.7653752579916541 - sys_corr_33: 0.4327272159355297 - sys_corr_34: -1.9230294055205825 - sys_corr_35: 0.13876263472001593 - sys_corr_36: -0.49033624590104047 - sys_corr_37: 1.0385719233629527 - sys_corr_38: 0.10256843639390252 - sys_corr_39: 0.267714716314773 - sys_corr_40: -0.1913026198183535 - sys_corr_41: 1.112920837922614 - sys_corr_42: 1.7587481134474827 - sys_corr_43: 1.3783599316546844 - sys_corr_44: -0.3879020575795255 - sys_corr_45: -0.6802176362028622 - sys_corr_46: 0.3622823816882139 - sys_corr_47: 2.045786119397752 - sys_corr_48: -6.30714202956563 - sys_corr_49: 3.9277010265647117 - sys_corr_50: 2.650672143930989 - sys_corr_51: -0.12761104226262263 - sys_corr_52: 1.1010867377088824 - sys_corr_53: 0.28151112995294963 - sys_corr_54: 1.891117966098178 - sys_corr_55: -0.035501202970816555 - sys_corr_56: -0.5211808369078917 - sys_corr_57: 0.20428109999412772 - sys_corr_58: 0.36971159531700026 - sys_corr_59: 0.07286849263027186 - sys_corr_60: 1.3603732721220732 - sys_corr_61: 1.0577665523694124 - sys_corr_62: 1.6015328324409022 - sys_corr_63: 1.1171415949596326 - sys_corr_64: 0.19611522437690232 - sys_corr_65: -0.5903475770509057 - sys_corr_66: -0.02045512529339427 - sys_corr_67: -0.7386333940546443 - sys_corr_68: -0.44435032576931444 - sys_corr_69: 1.064698262854361 - sys_corr_70: -0.06536154113329296 - sys_corr_71: -0.9428870625365613 - sys_corr_72: -0.8540893025726047 - sys_corr_73: 0.48811276461845426 - sys_corr_74: 1.9271889935383495 - sys_corr_75: 2.4342667552094217 - sys_corr_76: -0.43974451506339046 - sys_corr_77: -2.2247957155858846 - sys_corr_78: 1.7753994249099552 - sys_corr_79: 1.5435671671636877 - sys_corr_80: -1.0656882142626276 - sys_corr_81: 1.9048612506906717 - sys_corr_82: -1.4453821398282176 - sys_corr_83: 1.1811397196796998 - sys_corr_84: -4.620795747212968 - sys_corr_85: 0.8866625872552311 - sys_corr_86: 2.0057054846056332 - sys_corr_87: -0.03655368269314857 - sys_corr_88: 0.250401481438071 - sys_corr_89: 1.218194320973811 - sys_corr_90: 0.9919469638337819 - sys_corr_91: 7.385287193841764 - sys_corr_92: -0.465571697793957 - sys_corr_93: -2.3891865918987176 - sys_corr_94: -8.393299572038083 - sys_corr_95: 3.216656312657615 - sys_corr_96: 0.2740855217421338 - sys_corr_97: 9.73995849772639 - sys_corr_98: 5.401967910799336 - sys_corr_99: 5.85843714739003 - sys_corr_100: -9.612042680219114 - sys_corr_101: -16.28049956620841 - sys_corr_102: 3.7030694608194006 - sys_corr_103: -3.570799913153572 - sys_corr_104: -11.737877496352548 - sys_corr_105: -20.64303915359348 - sys_corr_106: -14.67699946523273 - sys_corr_107: -20.54831747644786 - sys_corr_108: 10.066269924059291 - sys_corr_109: 24.879472219549925 - sys_corr_110: 2.3047588495580307 - sys_corr_111: 11.153010126734205 - sys_corr_112: -65.11924680219944 - sys_corr_113: -27.18782581858014 - sys_corr_114: 0.003277888016122516 - sys_corr_115: 1.063660359746349 - sys_corr_116: -0.17166336821936476 - sys_corr_117: -0.2972356675244453 - sys_corr_118: 1.1951685325756858 - sys_corr_119: 0.03807978299746905 - sys_corr_120: 0.23292227277703786 - sys_corr_121: 0.3124598034106695 - sys_corr_122: 0.28800412619771715 - sys_corr_123: 0.11434587013467823 - sys_corr_124: 0.4075807510383733 - sys_corr_125: -0.4618910774821684 - sys_corr_126: -0.4206401512507915 - sys_corr_127: -1.1434899741342022 - sys_corr_128: -1.5486352347303212 - sys_corr_129: -2.7333832501494624 - sys_corr_130: 0.38096575959399315 - sys_corr_131: -0.21653153168765576 - sys_corr_132: -0.26895864591299784 + luminosity: 4.81110740e+01 +- sys_corr_1: -8.41099494e+00 + sys_corr_2: 4.27627880e+00 + sys_corr_3: -3.42876690e+01 + sys_corr_4: -8.32664524e+00 + sys_corr_5: -3.04669750e+01 + sys_corr_6: -9.76191966e+00 + sys_corr_7: 7.35446833e+00 + sys_corr_8: 5.81971063e+00 + sys_corr_9: 3.71296136e+00 + sys_corr_10: 2.31248774e+00 + sys_corr_11: 3.03513951e+00 + sys_corr_12: -2.26779359e+00 + sys_corr_13: 5.76662046e+00 + sys_corr_14: 3.26681526e+00 + sys_corr_15: -2.79492061e+00 + sys_corr_16: 5.90120199e+00 + sys_corr_17: 1.67536580e+00 + sys_corr_18: -7.28927545e+00 + sys_corr_19: -1.14022090e+01 + sys_corr_20: 1.22390246e+01 + sys_corr_21: -6.18878258e+00 + sys_corr_22: 8.22510323e-01 + sys_corr_23: 2.01906774e+00 + sys_corr_24: -2.34832162e+00 + sys_corr_25: -6.11757383e+00 + sys_corr_26: -6.43324052e+00 + sys_corr_27: 4.29090281e+00 + sys_corr_28: -5.55776496e+00 + sys_corr_29: -3.82732829e+00 + sys_corr_30: 3.27370396e+00 + sys_corr_31: 3.74395373e+00 + sys_corr_32: -7.65375258e-01 + sys_corr_33: 4.32727216e-01 + sys_corr_34: -1.92302941e+00 + sys_corr_35: 1.38762635e-01 + sys_corr_36: -4.90336246e-01 + sys_corr_37: 1.03857192e+00 + sys_corr_38: 1.02568436e-01 + sys_corr_39: 2.67714716e-01 + sys_corr_40: -1.91302620e-01 + sys_corr_41: 1.11292084e+00 + sys_corr_42: 1.75874811e+00 + sys_corr_43: 1.37835993e+00 + sys_corr_44: -3.87902058e-01 + sys_corr_45: -6.80217636e-01 + sys_corr_46: 3.62282382e-01 + sys_corr_47: 2.04578612e+00 + sys_corr_48: -6.30714203e+00 + sys_corr_49: 3.92770103e+00 + sys_corr_50: 2.65067214e+00 + sys_corr_51: -1.27611042e-01 + sys_corr_52: 1.10108674e+00 + sys_corr_53: 2.81511130e-01 + sys_corr_54: 1.89111797e+00 + sys_corr_55: -3.55012030e-02 + sys_corr_56: -5.21180837e-01 + sys_corr_57: 2.04281100e-01 + sys_corr_58: 3.69711595e-01 + sys_corr_59: 7.28684926e-02 + sys_corr_60: 1.36037327e+00 + sys_corr_61: 1.05776655e+00 + sys_corr_62: 1.60153283e+00 + sys_corr_63: 1.11714159e+00 + sys_corr_64: 1.96115224e-01 + sys_corr_65: -5.90347577e-01 + sys_corr_66: -2.04551253e-02 + sys_corr_67: -7.38633394e-01 + sys_corr_68: -4.44350326e-01 + sys_corr_69: 1.06469826e+00 + sys_corr_70: -6.53615411e-02 + sys_corr_71: -9.42887063e-01 + sys_corr_72: -8.54089303e-01 + sys_corr_73: 4.88112765e-01 + sys_corr_74: 1.92718899e+00 + sys_corr_75: 2.43426676e+00 + sys_corr_76: -4.39744515e-01 + sys_corr_77: -2.22479572e+00 + sys_corr_78: 1.77539942e+00 + sys_corr_79: 1.54356717e+00 + sys_corr_80: -1.06568821e+00 + sys_corr_81: 1.90486125e+00 + sys_corr_82: -1.44538214e+00 + sys_corr_83: 1.18113972e+00 + sys_corr_84: -4.62079575e+00 + sys_corr_85: 8.86662587e-01 + sys_corr_86: 2.00570548e+00 + sys_corr_87: -3.65536827e-02 + sys_corr_88: 2.50401481e-01 + sys_corr_89: 1.21819432e+00 + sys_corr_90: 9.91946964e-01 + sys_corr_91: 7.38528719e+00 + sys_corr_92: -4.65571698e-01 + sys_corr_93: -2.38918659e+00 + sys_corr_94: -8.39329957e+00 + sys_corr_95: 3.21665631e+00 + sys_corr_96: 2.74085522e-01 + sys_corr_97: 9.73995850e+00 + sys_corr_98: 5.40196791e+00 + sys_corr_99: 5.85843715e+00 + sys_corr_100: -9.61204268e+00 + sys_corr_101: -1.62804996e+01 + sys_corr_102: 3.70306946e+00 + sys_corr_103: -3.57079991e+00 + sys_corr_104: -1.17378775e+01 + sys_corr_105: -2.06430392e+01 + sys_corr_106: -1.46769995e+01 + sys_corr_107: -2.05483175e+01 + sys_corr_108: 1.00662699e+01 + sys_corr_109: 2.48794722e+01 + sys_corr_110: 2.30475885e+00 + sys_corr_111: 1.11530101e+01 + sys_corr_112: -6.51192468e+01 + sys_corr_113: -2.71878258e+01 + sys_corr_114: 3.27788802e-03 + sys_corr_115: 1.06366036e+00 + sys_corr_116: -1.71663368e-01 + sys_corr_117: -2.97235668e-01 + sys_corr_118: 1.19516853e+00 + sys_corr_119: 3.80797830e-02 + sys_corr_120: 2.32922273e-01 + sys_corr_121: 3.12459803e-01 + sys_corr_122: 2.88004126e-01 + sys_corr_123: 1.14345870e-01 + sys_corr_124: 4.07580751e-01 + sys_corr_125: -4.61891077e-01 + sys_corr_126: -4.20640151e-01 + sys_corr_127: -1.14348997e+00 + sys_corr_128: -1.54863523e+00 + sys_corr_129: -2.73338325e+00 + sys_corr_130: 3.80965760e-01 + sys_corr_131: -2.16531532e-01 + sys_corr_132: -2.68958646e-01 stat: 0.0 - luminosity: 42.881916000000004 -- sys_corr_1: -11.09617145759695 - sys_corr_2: 1.5683201974009817 - sys_corr_3: -30.896860865022404 - sys_corr_4: -9.594445589947785 - sys_corr_5: -29.639561727106187 - sys_corr_6: -8.664805385288151 - sys_corr_7: 5.668537034667823 - sys_corr_8: 4.543908653830224 - sys_corr_9: 2.8651926127854312 - sys_corr_10: 2.1413291330837914 - sys_corr_11: 2.4427124194803107 - sys_corr_12: -2.4650147109419565 - sys_corr_13: 4.443136883966552 - sys_corr_14: 1.697930252046776 - sys_corr_15: -2.3275075705497352 - sys_corr_16: 3.435500955802697 - sys_corr_17: 3.212871435612457 - sys_corr_18: -2.3248729931509335 - sys_corr_19: -3.6358182923648528 - sys_corr_20: -21.9880801735332 - sys_corr_21: -7.985216830783756 - sys_corr_22: 5.337171052832301 - sys_corr_23: -8.891404641535528 - sys_corr_24: -5.891695849098415 - sys_corr_25: 0.32043917408834943 - sys_corr_26: -5.779207567468828 - sys_corr_27: 6.362631483216199 - sys_corr_28: -5.106931049646701 - sys_corr_29: -2.859088306239658 - sys_corr_30: 2.3013429466699233 - sys_corr_31: 4.638522658221289 - sys_corr_32: -0.7386377242325801 - sys_corr_33: 0.6088381921724154 - sys_corr_34: -1.6419289863402733 - sys_corr_35: 0.38844514991539786 - sys_corr_36: -0.9151396355381608 - sys_corr_37: 0.7278620561118342 - sys_corr_38: 0.09936338095720972 - sys_corr_39: 0.26223041903768907 - sys_corr_40: -0.3381285627247317 - sys_corr_41: 1.5339203558878458 - sys_corr_42: 1.2846422501963302 - sys_corr_43: 0.8054393436258726 - sys_corr_44: -0.5992393554327268 - sys_corr_45: -0.6006459384938676 - sys_corr_46: -0.16177486762220927 - sys_corr_47: 1.5484504675117927 - sys_corr_48: -5.255583942672041 - sys_corr_49: 2.8495050567484714 - sys_corr_50: 1.6960689804856792 - sys_corr_51: -0.46207048682819296 - sys_corr_52: 0.8990268504126151 - sys_corr_53: 0.029639748773325654 - sys_corr_54: 1.4750413501504396 - sys_corr_55: -0.3118664238827381 - sys_corr_56: -0.5695154372859416 - sys_corr_57: 0.41937810486585614 - sys_corr_58: -0.12642626403123966 - sys_corr_59: 0.23168575564867053 - sys_corr_60: 0.8797666689305652 - sys_corr_61: 0.3585690110088802 - sys_corr_62: 0.7086263815936522 - sys_corr_63: 0.6728312198724627 - sys_corr_64: 0.17905316858117515 - sys_corr_65: -0.47175547678824825 - sys_corr_66: -0.22939402141701912 - sys_corr_67: -0.5616525058877818 - sys_corr_68: -0.2754189112700706 - sys_corr_69: 0.8558548461557612 - sys_corr_70: -0.24260367918677003 - sys_corr_71: -0.7076494560232294 - sys_corr_72: -0.5140392540185118 - sys_corr_73: 0.15871873480900633 - sys_corr_74: 1.8324390306766118 - sys_corr_75: 1.9401147514130497 - sys_corr_76: -0.04850104848023653 - sys_corr_77: -1.455832433263891 - sys_corr_78: 1.7024087339061231 - sys_corr_79: 0.8253096105998011 - sys_corr_80: -0.38756532163480906 - sys_corr_81: 1.6778193996563535 - sys_corr_82: -0.8714274808790765 - sys_corr_83: 0.8892085207174085 - sys_corr_84: -4.480914141980338 - sys_corr_85: 1.3958892393373163 - sys_corr_86: 1.150756136140202 - sys_corr_87: 0.19337598260546066 - sys_corr_88: 1.0852949235462468 - sys_corr_89: 0.5366011748038599 - sys_corr_90: 2.7718141879568554 - sys_corr_91: 4.5310613972153835 - sys_corr_92: -0.5138069897348203 - sys_corr_93: -1.959348351709308 - sys_corr_94: -7.001962110038543 - sys_corr_95: 1.9698013008852537 - sys_corr_96: 0.1250641657770726 - sys_corr_97: 7.945078569144306 - sys_corr_98: 4.535834754942293 - sys_corr_99: 4.948356145885606 - sys_corr_100: -8.73216415244487 - sys_corr_101: -13.942805919179825 - sys_corr_102: 2.671424561670672 - sys_corr_103: -3.096696280023405 - sys_corr_104: -9.682178831802563 - sys_corr_105: -15.592379068493416 - sys_corr_106: -12.010647850303224 - sys_corr_107: -16.24374001709539 - sys_corr_108: 3.1878335542060996 - sys_corr_109: -9.892231902769833 - sys_corr_110: 1.9941976517211222 - sys_corr_111: 6.722534904927843 - sys_corr_112: 39.081541516303716 - sys_corr_113: -60.97150519853547 - sys_corr_114: 0.014467357516583757 - sys_corr_115: -3.762981778009713 - sys_corr_116: 0.4231272340241342 - sys_corr_117: -0.23473445004422003 - sys_corr_118: 2.856732674886344 - sys_corr_119: 0.04505568933703484 - sys_corr_120: 0.2685868139466198 - sys_corr_121: 0.2028781304074532 - sys_corr_122: 0.2681813322322854 - sys_corr_123: 0.1506224586329633 - sys_corr_124: -1.0338080640316651 - sys_corr_125: -0.28039719839202326 - sys_corr_126: -0.29056812008226784 - sys_corr_127: -0.8715247838693206 - sys_corr_128: 0.011884163896888171 - sys_corr_129: -12.182290150926084 - sys_corr_130: 0.21589990859584646 - sys_corr_131: -0.34426794070975814 - sys_corr_132: 0.28833439813587014 + luminosity: 4.28819160e+01 +- sys_corr_1: -1.10961715e+01 + sys_corr_2: 1.56832020e+00 + sys_corr_3: -3.08968609e+01 + sys_corr_4: -9.59444559e+00 + sys_corr_5: -2.96395617e+01 + sys_corr_6: -8.66480539e+00 + sys_corr_7: 5.66853703e+00 + sys_corr_8: 4.54390865e+00 + sys_corr_9: 2.86519261e+00 + sys_corr_10: 2.14132913e+00 + sys_corr_11: 2.44271242e+00 + sys_corr_12: -2.46501471e+00 + sys_corr_13: 4.44313688e+00 + sys_corr_14: 1.69793025e+00 + sys_corr_15: -2.32750757e+00 + sys_corr_16: 3.43550096e+00 + sys_corr_17: 3.21287144e+00 + sys_corr_18: -2.32487299e+00 + sys_corr_19: -3.63581829e+00 + sys_corr_20: -2.19880802e+01 + sys_corr_21: -7.98521683e+00 + sys_corr_22: 5.33717105e+00 + sys_corr_23: -8.89140464e+00 + sys_corr_24: -5.89169585e+00 + sys_corr_25: 3.20439174e-01 + sys_corr_26: -5.77920757e+00 + sys_corr_27: 6.36263148e+00 + sys_corr_28: -5.10693105e+00 + sys_corr_29: -2.85908831e+00 + sys_corr_30: 2.30134295e+00 + sys_corr_31: 4.63852266e+00 + sys_corr_32: -7.38637724e-01 + sys_corr_33: 6.08838192e-01 + sys_corr_34: -1.64192899e+00 + sys_corr_35: 3.88445150e-01 + sys_corr_36: -9.15139636e-01 + sys_corr_37: 7.27862056e-01 + sys_corr_38: 9.93633810e-02 + sys_corr_39: 2.62230419e-01 + sys_corr_40: -3.38128563e-01 + sys_corr_41: 1.53392036e+00 + sys_corr_42: 1.28464225e+00 + sys_corr_43: 8.05439344e-01 + sys_corr_44: -5.99239355e-01 + sys_corr_45: -6.00645938e-01 + sys_corr_46: -1.61774868e-01 + sys_corr_47: 1.54845047e+00 + sys_corr_48: -5.25558394e+00 + sys_corr_49: 2.84950506e+00 + sys_corr_50: 1.69606898e+00 + sys_corr_51: -4.62070487e-01 + sys_corr_52: 8.99026850e-01 + sys_corr_53: 2.96397488e-02 + sys_corr_54: 1.47504135e+00 + sys_corr_55: -3.11866424e-01 + sys_corr_56: -5.69515437e-01 + sys_corr_57: 4.19378105e-01 + sys_corr_58: -1.26426264e-01 + sys_corr_59: 2.31685756e-01 + sys_corr_60: 8.79766669e-01 + sys_corr_61: 3.58569011e-01 + sys_corr_62: 7.08626382e-01 + sys_corr_63: 6.72831220e-01 + sys_corr_64: 1.79053169e-01 + sys_corr_65: -4.71755477e-01 + sys_corr_66: -2.29394021e-01 + sys_corr_67: -5.61652506e-01 + sys_corr_68: -2.75418911e-01 + sys_corr_69: 8.55854846e-01 + sys_corr_70: -2.42603679e-01 + sys_corr_71: -7.07649456e-01 + sys_corr_72: -5.14039254e-01 + sys_corr_73: 1.58718735e-01 + sys_corr_74: 1.83243903e+00 + sys_corr_75: 1.94011475e+00 + sys_corr_76: -4.85010485e-02 + sys_corr_77: -1.45583243e+00 + sys_corr_78: 1.70240873e+00 + sys_corr_79: 8.25309611e-01 + sys_corr_80: -3.87565322e-01 + sys_corr_81: 1.67781940e+00 + sys_corr_82: -8.71427481e-01 + sys_corr_83: 8.89208521e-01 + sys_corr_84: -4.48091414e+00 + sys_corr_85: 1.39588924e+00 + sys_corr_86: 1.15075614e+00 + sys_corr_87: 1.93375983e-01 + sys_corr_88: 1.08529492e+00 + sys_corr_89: 5.36601175e-01 + sys_corr_90: 2.77181419e+00 + sys_corr_91: 4.53106140e+00 + sys_corr_92: -5.13806990e-01 + sys_corr_93: -1.95934835e+00 + sys_corr_94: -7.00196211e+00 + sys_corr_95: 1.96980130e+00 + sys_corr_96: 1.25064166e-01 + sys_corr_97: 7.94507857e+00 + sys_corr_98: 4.53583475e+00 + sys_corr_99: 4.94835615e+00 + sys_corr_100: -8.73216415e+00 + sys_corr_101: -1.39428059e+01 + sys_corr_102: 2.67142456e+00 + sys_corr_103: -3.09669628e+00 + sys_corr_104: -9.68217883e+00 + sys_corr_105: -1.55923791e+01 + sys_corr_106: -1.20106479e+01 + sys_corr_107: -1.62437400e+01 + sys_corr_108: 3.18783355e+00 + sys_corr_109: -9.89223190e+00 + sys_corr_110: 1.99419765e+00 + sys_corr_111: 6.72253490e+00 + sys_corr_112: 3.90815415e+01 + sys_corr_113: -6.09715052e+01 + sys_corr_114: 1.44673575e-02 + sys_corr_115: -3.76298178e+00 + sys_corr_116: 4.23127234e-01 + sys_corr_117: -2.34734450e-01 + sys_corr_118: 2.85673267e+00 + sys_corr_119: 4.50556893e-02 + sys_corr_120: 2.68586814e-01 + sys_corr_121: 2.02878130e-01 + sys_corr_122: 2.68181332e-01 + sys_corr_123: 1.50622459e-01 + sys_corr_124: -1.03380806e+00 + sys_corr_125: -2.80397198e-01 + sys_corr_126: -2.90568120e-01 + sys_corr_127: -8.71524784e-01 + sys_corr_128: 1.18841639e-02 + sys_corr_129: -1.21822902e+01 + sys_corr_130: 2.15899909e-01 + sys_corr_131: -3.44267941e-01 + sys_corr_132: 2.88334398e-01 stat: 0.0 - luminosity: 34.790668000000004 -- sys_corr_1: -11.38914580040206 - sys_corr_2: 1.2904557532366803 - sys_corr_3: -29.040023726392505 - sys_corr_4: -4.939397044639474 - sys_corr_5: -22.713741066509993 - sys_corr_6: -7.1791974077626115 - sys_corr_7: 4.180655827552572 - sys_corr_8: 2.966689979575583 - sys_corr_9: 2.730550380556848 - sys_corr_10: 1.5411287852834292 - sys_corr_11: 2.004034024775765 - sys_corr_12: -0.08264892685749207 - sys_corr_13: 1.9061525209731205 - sys_corr_14: 0.9177432303517926 - sys_corr_15: -0.6199971982678535 - sys_corr_16: 2.5209720758306884 - sys_corr_17: 0.6852549438195047 - sys_corr_18: -1.9590368114511962 - sys_corr_19: -2.403978663648271 - sys_corr_20: -1.2067315560026994 - sys_corr_21: 3.0019952218046826 - sys_corr_22: 0.7111055891690546 - sys_corr_23: 22.456198177989855 - sys_corr_24: -2.022881635434237 - sys_corr_25: -11.64632111573191 - sys_corr_26: -5.501710148097267 - sys_corr_27: 5.6173537632947355 - sys_corr_28: -7.12038243569634 - sys_corr_29: -3.148660906891487 - sys_corr_30: -1.2757708783517225 - sys_corr_31: 3.6252316908573183 - sys_corr_32: -1.2565874891815219 - sys_corr_33: 0.3726351943142328 - sys_corr_34: -2.429008250705809 - sys_corr_35: -0.8036364467728986 - sys_corr_36: -0.341868024443266 - sys_corr_37: 1.2372792998549387 - sys_corr_38: 0.09820619032929642 - sys_corr_39: 0.6172009788600071 - sys_corr_40: -0.7948281046293936 - sys_corr_41: 1.3704365659248976 - sys_corr_42: 1.6977824428864028 - sys_corr_43: 0.8964243218338296 - sys_corr_44: -0.0299891529122626 - sys_corr_45: -1.167151133966096 - sys_corr_46: 0.2663116969712415 - sys_corr_47: 3.2107148791523286 - sys_corr_48: -7.98761160836654 - sys_corr_49: 4.687238335270067 - sys_corr_50: 2.462731307419338 - sys_corr_51: -1.3947273616055818 - sys_corr_52: 2.435383006474118 - sys_corr_53: -0.14720242425913077 - sys_corr_54: 2.099921950878075 - sys_corr_55: 0.6779106721045632 - sys_corr_56: -0.6530490596748841 - sys_corr_57: 0.277290456779917 - sys_corr_58: 0.5801952108850871 - sys_corr_59: 0.28369079419286086 - sys_corr_60: 1.6442202886084696 - sys_corr_61: 1.3219738195143056 - sys_corr_62: 1.6426071538977234 - sys_corr_63: 0.919595484429203 - sys_corr_64: 0.258029607104437 - sys_corr_65: -1.01897573327663 - sys_corr_66: 0.08990717638713333 - sys_corr_67: -1.0766568340493143 - sys_corr_68: 0.3618553699936009 - sys_corr_69: 1.3686031081303265 - sys_corr_70: 0.07339928051830515 - sys_corr_71: -1.186857288020748 - sys_corr_72: -0.6774969567565327 - sys_corr_73: -0.14414619579900095 - sys_corr_74: 2.663982212019945 - sys_corr_75: 2.357274241547162 - sys_corr_76: 0.39564216688245274 - sys_corr_77: -2.183138770044382 - sys_corr_78: 1.2563857103430285 - sys_corr_79: 1.0610595644750231 - sys_corr_80: -1.1456930171258253 - sys_corr_81: 2.2244362626410945 - sys_corr_82: -1.05791953509248 - sys_corr_83: -0.043289057318121896 - sys_corr_84: -5.018500269312065 - sys_corr_85: 1.798967419768023 - sys_corr_86: 1.6096341682460036 - sys_corr_87: 0.8531360577508823 - sys_corr_88: 0.6652361941031892 - sys_corr_89: 0.19305632833774095 - sys_corr_90: 2.3232007138295723 - sys_corr_91: 7.073971680699557 - sys_corr_92: -0.5993951551942025 - sys_corr_93: -2.181505335326742 - sys_corr_94: -7.250583075778971 - sys_corr_95: 3.7651921896337894 - sys_corr_96: 0.5184220395528435 - sys_corr_97: 7.099457424592287 - sys_corr_98: 4.382428751258188 - sys_corr_99: 4.87298832860889 - sys_corr_100: -9.73722274897743 - sys_corr_101: -15.368881358794171 - sys_corr_102: 4.270167164989248 - sys_corr_103: -3.432436707893696 - sys_corr_104: -11.30367623304471 - sys_corr_105: -19.72239247366531 - sys_corr_106: -14.974955905527516 - sys_corr_107: -23.44354205053369 - sys_corr_108: 16.156085425043628 - sys_corr_109: 0.916681940072912 - sys_corr_110: 2.017296976436565 - sys_corr_111: 9.034037072222468 - sys_corr_112: 5.851348830768945 - sys_corr_113: 29.99647921154974 - sys_corr_114: 0.007410567531482101 - sys_corr_115: -21.63210013497882 - sys_corr_116: 2.0363100709511763 - sys_corr_117: -0.5426745802594557 - sys_corr_118: 1.7260515107575167 - sys_corr_119: 0.281608314438427 - sys_corr_120: 0.705979925580051 - sys_corr_121: -0.4040151343490057 - sys_corr_122: 1.4047236660558629 - sys_corr_123: 0.6362626855984873 - sys_corr_124: -8.348844357478923 - sys_corr_125: -1.1241534926754804 - sys_corr_126: 0.33276078651491253 - sys_corr_127: -1.0632849889741645 - sys_corr_128: -0.6400549066805719 - sys_corr_129: -50.651685399857726 - sys_corr_130: 0.11557922222175067 - sys_corr_131: -0.7476576747989132 - sys_corr_132: -0.7833091133145965 + luminosity: 3.47906680e+01 +- sys_corr_1: -1.13891458e+01 + sys_corr_2: 1.29045575e+00 + sys_corr_3: -2.90400237e+01 + sys_corr_4: -4.93939704e+00 + sys_corr_5: -2.27137411e+01 + sys_corr_6: -7.17919741e+00 + sys_corr_7: 4.18065583e+00 + sys_corr_8: 2.96668998e+00 + sys_corr_9: 2.73055038e+00 + sys_corr_10: 1.54112879e+00 + sys_corr_11: 2.00403402e+00 + sys_corr_12: -8.26489269e-02 + sys_corr_13: 1.90615252e+00 + sys_corr_14: 9.17743230e-01 + sys_corr_15: -6.19997198e-01 + sys_corr_16: 2.52097208e+00 + sys_corr_17: 6.85254944e-01 + sys_corr_18: -1.95903681e+00 + sys_corr_19: -2.40397866e+00 + sys_corr_20: -1.20673156e+00 + sys_corr_21: 3.00199522e+00 + sys_corr_22: 7.11105589e-01 + sys_corr_23: 2.24561982e+01 + sys_corr_24: -2.02288164e+00 + sys_corr_25: -1.16463211e+01 + sys_corr_26: -5.50171015e+00 + sys_corr_27: 5.61735376e+00 + sys_corr_28: -7.12038244e+00 + sys_corr_29: -3.14866091e+00 + sys_corr_30: -1.27577088e+00 + sys_corr_31: 3.62523169e+00 + sys_corr_32: -1.25658749e+00 + sys_corr_33: 3.72635194e-01 + sys_corr_34: -2.42900825e+00 + sys_corr_35: -8.03636447e-01 + sys_corr_36: -3.41868024e-01 + sys_corr_37: 1.23727930e+00 + sys_corr_38: 9.82061903e-02 + sys_corr_39: 6.17200979e-01 + sys_corr_40: -7.94828105e-01 + sys_corr_41: 1.37043657e+00 + sys_corr_42: 1.69778244e+00 + sys_corr_43: 8.96424322e-01 + sys_corr_44: -2.99891529e-02 + sys_corr_45: -1.16715113e+00 + sys_corr_46: 2.66311697e-01 + sys_corr_47: 3.21071488e+00 + sys_corr_48: -7.98761161e+00 + sys_corr_49: 4.68723834e+00 + sys_corr_50: 2.46273131e+00 + sys_corr_51: -1.39472736e+00 + sys_corr_52: 2.43538301e+00 + sys_corr_53: -1.47202424e-01 + sys_corr_54: 2.09992195e+00 + sys_corr_55: 6.77910672e-01 + sys_corr_56: -6.53049060e-01 + sys_corr_57: 2.77290457e-01 + sys_corr_58: 5.80195211e-01 + sys_corr_59: 2.83690794e-01 + sys_corr_60: 1.64422029e+00 + sys_corr_61: 1.32197382e+00 + sys_corr_62: 1.64260715e+00 + sys_corr_63: 9.19595484e-01 + sys_corr_64: 2.58029607e-01 + sys_corr_65: -1.01897573e+00 + sys_corr_66: 8.99071764e-02 + sys_corr_67: -1.07665683e+00 + sys_corr_68: 3.61855370e-01 + sys_corr_69: 1.36860311e+00 + sys_corr_70: 7.33992805e-02 + sys_corr_71: -1.18685729e+00 + sys_corr_72: -6.77496957e-01 + sys_corr_73: -1.44146196e-01 + sys_corr_74: 2.66398221e+00 + sys_corr_75: 2.35727424e+00 + sys_corr_76: 3.95642167e-01 + sys_corr_77: -2.18313877e+00 + sys_corr_78: 1.25638571e+00 + sys_corr_79: 1.06105956e+00 + sys_corr_80: -1.14569302e+00 + sys_corr_81: 2.22443626e+00 + sys_corr_82: -1.05791954e+00 + sys_corr_83: -4.32890573e-02 + sys_corr_84: -5.01850027e+00 + sys_corr_85: 1.79896742e+00 + sys_corr_86: 1.60963417e+00 + sys_corr_87: 8.53136058e-01 + sys_corr_88: 6.65236194e-01 + sys_corr_89: 1.93056328e-01 + sys_corr_90: 2.32320071e+00 + sys_corr_91: 7.07397168e+00 + sys_corr_92: -5.99395155e-01 + sys_corr_93: -2.18150534e+00 + sys_corr_94: -7.25058308e+00 + sys_corr_95: 3.76519219e+00 + sys_corr_96: 5.18422040e-01 + sys_corr_97: 7.09945742e+00 + sys_corr_98: 4.38242875e+00 + sys_corr_99: 4.87298833e+00 + sys_corr_100: -9.73722275e+00 + sys_corr_101: -1.53688814e+01 + sys_corr_102: 4.27016716e+00 + sys_corr_103: -3.43243671e+00 + sys_corr_104: -1.13036762e+01 + sys_corr_105: -1.97223925e+01 + sys_corr_106: -1.49749559e+01 + sys_corr_107: -2.34435421e+01 + sys_corr_108: 1.61560854e+01 + sys_corr_109: 9.16681940e-01 + sys_corr_110: 2.01729698e+00 + sys_corr_111: 9.03403707e+00 + sys_corr_112: 5.85134883e+00 + sys_corr_113: 2.99964792e+01 + sys_corr_114: 7.41056753e-03 + sys_corr_115: -2.16321001e+01 + sys_corr_116: 2.03631007e+00 + sys_corr_117: -5.42674580e-01 + sys_corr_118: 1.72605151e+00 + sys_corr_119: 2.81608314e-01 + sys_corr_120: 7.05979926e-01 + sys_corr_121: -4.04015134e-01 + sys_corr_122: 1.40472367e+00 + sys_corr_123: 6.36262686e-01 + sys_corr_124: -8.34884436e+00 + sys_corr_125: -1.12415349e+00 + sys_corr_126: 3.32760787e-01 + sys_corr_127: -1.06328499e+00 + sys_corr_128: -6.40054907e-01 + sys_corr_129: -5.06516854e+01 + sys_corr_130: 1.15579222e-01 + sys_corr_131: -7.47657675e-01 + sys_corr_132: -7.83309113e-01 stat: 0.0 - luminosity: 27.583644 -- sys_corr_1: -16.653463423409807 - sys_corr_2: -2.5127497969106427 - sys_corr_3: -32.33482155447352 - sys_corr_4: -10.078545660483604 - sys_corr_5: -28.033779058140762 - sys_corr_6: -7.308252727367468 - sys_corr_7: 4.7613492995207665 - sys_corr_8: 2.892917254945884 - sys_corr_9: 1.7207792508545086 - sys_corr_10: 0.7051883750896595 - sys_corr_11: 1.290674245676975 - sys_corr_12: -0.9562775953451003 - sys_corr_13: 2.5008685772787236 - sys_corr_14: 0.8450202948925961 - sys_corr_15: -0.9998241113635798 - sys_corr_16: 2.1126782692129464 - sys_corr_17: -0.22219172863706274 - sys_corr_18: -1.579168404350939 - sys_corr_19: 0.06282659866965491 - sys_corr_20: 1.8811470936347152 - sys_corr_21: 3.1519347518102694 - sys_corr_22: 3.8727999803584243 - sys_corr_23: -1.2526461968699825 - sys_corr_24: -7.3534255025570765 - sys_corr_25: 16.29268605475094 - sys_corr_26: -5.92864573522516 - sys_corr_27: 23.567357534588403 - sys_corr_28: -7.934259391438386 - sys_corr_29: -2.9387851021497426 - sys_corr_30: -4.32633750205352 - sys_corr_31: 0.36544044454279834 - sys_corr_32: -1.0235481065183905 - sys_corr_33: 0.18366309347833862 - sys_corr_34: -1.717612141582377 - sys_corr_35: 0.3992568290277661 - sys_corr_36: 0.34565356634123756 - sys_corr_37: 1.1056476491622096 - sys_corr_38: -0.041861125237250475 - sys_corr_39: 0.28964539516380805 - sys_corr_40: -0.41551174490811055 - sys_corr_41: 1.690129921136358 - sys_corr_42: 1.2476122999537629 - sys_corr_43: 0.5467256945318305 - sys_corr_44: 1.2681118342927649 - sys_corr_45: -0.5662241800310829 - sys_corr_46: 0.25944627640643936 - sys_corr_47: 2.5044901949140868 - sys_corr_48: -5.000396575046044 - sys_corr_49: 4.346617059451811 - sys_corr_50: -1.402382968994779 - sys_corr_51: 0.7708579214868316 - sys_corr_52: 0.414869696680517 - sys_corr_53: -0.32590613558337583 - sys_corr_54: 2.2949211544269352 - sys_corr_55: 0.4420163174646368 - sys_corr_56: -0.2863479614602831 - sys_corr_57: -0.42649199794999787 - sys_corr_58: -0.0024492575523305735 - sys_corr_59: -0.22864752507725322 - sys_corr_60: 1.7523506972786649 - sys_corr_61: 0.6219396190167569 - sys_corr_62: 1.2764688218121885 - sys_corr_63: 0.9446548206819032 - sys_corr_64: -0.8501316981238534 - sys_corr_65: -1.0097201776697566 - sys_corr_66: 0.49484700691018985 - sys_corr_67: 0.3070591254326485 - sys_corr_68: 0.65569630829174 - sys_corr_69: 0.8345125503873084 - sys_corr_70: 1.1583086159344371 - sys_corr_71: -0.15933449415237796 - sys_corr_72: -1.3366498652323948 - sys_corr_73: -0.15525597869265764 - sys_corr_74: 2.3918433790468865 - sys_corr_75: 1.6038071156999962 - sys_corr_76: 2.2132698473057077 - sys_corr_77: -2.3756444568507473 - sys_corr_78: 1.0222318699834034 - sys_corr_79: 1.1534676632682457 - sys_corr_80: -0.15780234907613813 - sys_corr_81: 1.817092557693429 - sys_corr_82: -1.1834891113012962 - sys_corr_83: 0.03228416380986555 - sys_corr_84: -5.255936631714825 - sys_corr_85: 1.123154598724996 - sys_corr_86: 1.7545171408252593 - sys_corr_87: 0.6790817085241166 - sys_corr_88: -0.28534319381771533 - sys_corr_89: -0.815536523055988 - sys_corr_90: 3.3949368777741085 - sys_corr_91: 6.887599970695139 - sys_corr_92: 0.06992753477448961 - sys_corr_93: -1.976065724594048 - sys_corr_94: -5.845510688546921 - sys_corr_95: 4.131905526815468 - sys_corr_96: 0.5537280346860999 - sys_corr_97: 5.4946638928384415 - sys_corr_98: 3.759241620917535 - sys_corr_99: 4.5605206177722515 - sys_corr_100: -10.324664230497511 - sys_corr_101: -14.528574104989346 - sys_corr_102: 6.217909320434712 - sys_corr_103: -4.195062449933072 - sys_corr_104: -11.170637063625758 - sys_corr_105: -20.925829654948867 - sys_corr_106: -15.965339277716758 - sys_corr_107: -27.565268910133906 - sys_corr_108: 17.023520913368184 - sys_corr_109: 9.632245810536384 - sys_corr_110: 1.7674747605338115 - sys_corr_111: 13.20391923315844 - sys_corr_112: 12.86402088619598 - sys_corr_113: 11.338981684390845 - sys_corr_114: -0.0025461468336024466 - sys_corr_115: -34.61094862961958 - sys_corr_116: 2.6879438242338933 - sys_corr_117: -0.20383615059977764 - sys_corr_118: -3.709205362415015 - sys_corr_119: 0.22345154482889126 - sys_corr_120: 0.44733351418875006 - sys_corr_121: -0.539284066689698 - sys_corr_122: 1.1765180575886829 - sys_corr_123: 0.4541023158688569 - sys_corr_124: 1.451322500260255 - sys_corr_125: -0.6333341168829364 - sys_corr_126: 0.3606398154111006 - sys_corr_127: -1.0399307141387486 - sys_corr_128: -1.7039661922962137 - sys_corr_129: 44.60010891984849 - sys_corr_130: -0.00280934772196326 - sys_corr_131: -0.42242073125443236 - sys_corr_132: -1.578505944186428 + luminosity: 2.75836440e+01 +- sys_corr_1: -1.66534634e+01 + sys_corr_2: -2.51274980e+00 + sys_corr_3: -3.23348216e+01 + sys_corr_4: -1.00785457e+01 + sys_corr_5: -2.80337791e+01 + sys_corr_6: -7.30825273e+00 + sys_corr_7: 4.76134930e+00 + sys_corr_8: 2.89291725e+00 + sys_corr_9: 1.72077925e+00 + sys_corr_10: 7.05188375e-01 + sys_corr_11: 1.29067425e+00 + sys_corr_12: -9.56277595e-01 + sys_corr_13: 2.50086858e+00 + sys_corr_14: 8.45020295e-01 + sys_corr_15: -9.99824111e-01 + sys_corr_16: 2.11267827e+00 + sys_corr_17: -2.22191729e-01 + sys_corr_18: -1.57916840e+00 + sys_corr_19: 6.28265987e-02 + sys_corr_20: 1.88114709e+00 + sys_corr_21: 3.15193475e+00 + sys_corr_22: 3.87279998e+00 + sys_corr_23: -1.25264620e+00 + sys_corr_24: -7.35342550e+00 + sys_corr_25: 1.62926861e+01 + sys_corr_26: -5.92864574e+00 + sys_corr_27: 2.35673575e+01 + sys_corr_28: -7.93425939e+00 + sys_corr_29: -2.93878510e+00 + sys_corr_30: -4.32633750e+00 + sys_corr_31: 3.65440445e-01 + sys_corr_32: -1.02354811e+00 + sys_corr_33: 1.83663093e-01 + sys_corr_34: -1.71761214e+00 + sys_corr_35: 3.99256829e-01 + sys_corr_36: 3.45653566e-01 + sys_corr_37: 1.10564765e+00 + sys_corr_38: -4.18611252e-02 + sys_corr_39: 2.89645395e-01 + sys_corr_40: -4.15511745e-01 + sys_corr_41: 1.69012992e+00 + sys_corr_42: 1.24761230e+00 + sys_corr_43: 5.46725695e-01 + sys_corr_44: 1.26811183e+00 + sys_corr_45: -5.66224180e-01 + sys_corr_46: 2.59446276e-01 + sys_corr_47: 2.50449019e+00 + sys_corr_48: -5.00039658e+00 + sys_corr_49: 4.34661706e+00 + sys_corr_50: -1.40238297e+00 + sys_corr_51: 7.70857921e-01 + sys_corr_52: 4.14869697e-01 + sys_corr_53: -3.25906136e-01 + sys_corr_54: 2.29492115e+00 + sys_corr_55: 4.42016317e-01 + sys_corr_56: -2.86347961e-01 + sys_corr_57: -4.26491998e-01 + sys_corr_58: -2.44925755e-03 + sys_corr_59: -2.28647525e-01 + sys_corr_60: 1.75235070e+00 + sys_corr_61: 6.21939619e-01 + sys_corr_62: 1.27646882e+00 + sys_corr_63: 9.44654821e-01 + sys_corr_64: -8.50131698e-01 + sys_corr_65: -1.00972018e+00 + sys_corr_66: 4.94847007e-01 + sys_corr_67: 3.07059125e-01 + sys_corr_68: 6.55696308e-01 + sys_corr_69: 8.34512550e-01 + sys_corr_70: 1.15830862e+00 + sys_corr_71: -1.59334494e-01 + sys_corr_72: -1.33664987e+00 + sys_corr_73: -1.55255979e-01 + sys_corr_74: 2.39184338e+00 + sys_corr_75: 1.60380712e+00 + sys_corr_76: 2.21326985e+00 + sys_corr_77: -2.37564446e+00 + sys_corr_78: 1.02223187e+00 + sys_corr_79: 1.15346766e+00 + sys_corr_80: -1.57802349e-01 + sys_corr_81: 1.81709256e+00 + sys_corr_82: -1.18348911e+00 + sys_corr_83: 3.22841638e-02 + sys_corr_84: -5.25593663e+00 + sys_corr_85: 1.12315460e+00 + sys_corr_86: 1.75451714e+00 + sys_corr_87: 6.79081709e-01 + sys_corr_88: -2.85343194e-01 + sys_corr_89: -8.15536523e-01 + sys_corr_90: 3.39493688e+00 + sys_corr_91: 6.88759997e+00 + sys_corr_92: 6.99275348e-02 + sys_corr_93: -1.97606572e+00 + sys_corr_94: -5.84551069e+00 + sys_corr_95: 4.13190553e+00 + sys_corr_96: 5.53728035e-01 + sys_corr_97: 5.49466389e+00 + sys_corr_98: 3.75924162e+00 + sys_corr_99: 4.56052062e+00 + sys_corr_100: -1.03246642e+01 + sys_corr_101: -1.45285741e+01 + sys_corr_102: 6.21790932e+00 + sys_corr_103: -4.19506245e+00 + sys_corr_104: -1.11706371e+01 + sys_corr_105: -2.09258297e+01 + sys_corr_106: -1.59653393e+01 + sys_corr_107: -2.75652689e+01 + sys_corr_108: 1.70235209e+01 + sys_corr_109: 9.63224581e+00 + sys_corr_110: 1.76747476e+00 + sys_corr_111: 1.32039192e+01 + sys_corr_112: 1.28640209e+01 + sys_corr_113: 1.13389817e+01 + sys_corr_114: -2.54614683e-03 + sys_corr_115: -3.46109486e+01 + sys_corr_116: 2.68794382e+00 + sys_corr_117: -2.03836151e-01 + sys_corr_118: -3.70920536e+00 + sys_corr_119: 2.23451545e-01 + sys_corr_120: 4.47333514e-01 + sys_corr_121: -5.39284067e-01 + sys_corr_122: 1.17651806e+00 + sys_corr_123: 4.54102316e-01 + sys_corr_124: 1.45132250e+00 + sys_corr_125: -6.33334117e-01 + sys_corr_126: 3.60639815e-01 + sys_corr_127: -1.03993071e+00 + sys_corr_128: -1.70396619e+00 + sys_corr_129: 4.46001089e+01 + sys_corr_130: -2.80934772e-03 + sys_corr_131: -4.22420731e-01 + sys_corr_132: -1.57850594e+00 stat: 0.0 - luminosity: 25.489376 -- sys_corr_1: -12.128379328567812 - sys_corr_2: -2.4564261838630848 - sys_corr_3: -21.815187935272956 - sys_corr_4: -4.839816939510548 - sys_corr_5: -21.183454286966143 - sys_corr_6: -6.019812412095531 - sys_corr_7: 4.104850439337188 - sys_corr_8: 1.713869329296597 - sys_corr_9: 1.2220029319849623 - sys_corr_10: 0.4207495046803513 - sys_corr_11: 0.45447016734436624 - sys_corr_12: -0.8391681689094861 - sys_corr_13: 2.5237327379257892 - sys_corr_14: 0.3533944439961206 - sys_corr_15: -0.17140257610153295 - sys_corr_16: 1.8363801726230302 - sys_corr_17: -0.1951667675457772 - sys_corr_18: -0.8822819727033361 - sys_corr_19: 1.0995816537967795 - sys_corr_20: 2.9700455109373287 - sys_corr_21: 3.02260629087336 - sys_corr_22: 2.926856527554569 - sys_corr_23: -5.504261351459032 - sys_corr_24: -4.564441948632098 - sys_corr_25: -16.578282210499818 - sys_corr_26: 8.243979102486902 - sys_corr_27: 11.403791626158638 - sys_corr_28: 2.9347756917352514 - sys_corr_29: 1.6285717694481332 - sys_corr_30: -2.1609982457046373 - sys_corr_31: 3.305431663597628 - sys_corr_32: -1.5557928055987664 - sys_corr_33: 0.5383042342858855 - sys_corr_34: -1.4441843228462634 - sys_corr_35: -0.2826409445136809 - sys_corr_36: -0.16045577384697743 - sys_corr_37: 1.19613578837008 - sys_corr_38: 0.012691206948360548 - sys_corr_39: 0.27626201339468537 - sys_corr_40: -0.5176096924705876 - sys_corr_41: 1.806441106221742 - sys_corr_42: 0.8455133277763236 - sys_corr_43: -0.07125481675106504 - sys_corr_44: 1.1664791905023992 - sys_corr_45: -0.7373927098943505 - sys_corr_46: 0.12342722393450799 - sys_corr_47: 0.7197205916790519 - sys_corr_48: -1.796755164163263 - sys_corr_49: 2.609920122877421 - sys_corr_50: -2.1104075587395754 - sys_corr_51: 2.1786077553220964 - sys_corr_52: -0.4220983395869444 - sys_corr_53: -0.494410275844577 - sys_corr_54: 2.392923389731785 - sys_corr_55: -1.1137119555277046 - sys_corr_56: -1.092150771032451 - sys_corr_57: -0.4027231626351359 - sys_corr_58: 0.37995003648200754 - sys_corr_59: -0.43033441613716317 - sys_corr_60: 1.2694837717188387 - sys_corr_61: 1.395325269235194 - sys_corr_62: 1.212082037075335 - sys_corr_63: 0.7433260344118691 - sys_corr_64: 0.33638388575183337 - sys_corr_65: -0.3313961186131397 - sys_corr_66: 0.40062721919985395 - sys_corr_67: -0.0739219962138108 - sys_corr_68: 0.6667236815253749 - sys_corr_69: 0.6702964832577282 - sys_corr_70: 0.7955847825942499 - sys_corr_71: -0.271539555754183 - sys_corr_72: -1.5043234500841318 - sys_corr_73: -0.8146439194804881 - sys_corr_74: 1.4930738201891747 - sys_corr_75: 1.4066536284356603 - sys_corr_76: 2.0581308388463535 - sys_corr_77: -2.0440044450625163 - sys_corr_78: 1.6475206853441358 - sys_corr_79: 1.2919004917158108 - sys_corr_80: -0.5755170640820895 - sys_corr_81: 0.8585591022486377 - sys_corr_82: -0.719600870001867 - sys_corr_83: 0.5835722454791077 - sys_corr_84: -5.693741063679127 - sys_corr_85: 2.1245423927880975 - sys_corr_86: 0.2461920344623719 - sys_corr_87: 0.2241781407669606 - sys_corr_88: 0.3254173255503662 - sys_corr_89: -0.4083590789674505 - sys_corr_90: 2.51325894884269 - sys_corr_91: 6.963412702017544 - sys_corr_92: 0.32797485626761047 - sys_corr_93: -1.5363919658220462 - sys_corr_94: -3.69900800835085 - sys_corr_95: 3.822545826337504 - sys_corr_96: 0.33827737411640607 - sys_corr_97: 3.5105604516159907 - sys_corr_98: 2.497393782149314 - sys_corr_99: 2.6548574671094602 - sys_corr_100: -6.897804706765737 - sys_corr_101: -9.53890506268264 - sys_corr_102: 3.564566192716945 - sys_corr_103: -3.0568864866641845 - sys_corr_104: -7.0550458491748484 - sys_corr_105: -15.23085864087798 - sys_corr_106: -11.654183406170773 - sys_corr_107: -22.338409274210154 - sys_corr_108: 16.371757165086997 - sys_corr_109: 1.291456190445716 - sys_corr_110: 1.7791393446997465 - sys_corr_111: 9.970102266242476 - sys_corr_112: 10.163209127217725 - sys_corr_113: 8.06913590296833 - sys_corr_114: -0.09339898539369354 - sys_corr_115: 30.71470665716231 - sys_corr_116: -4.998607634804057 - sys_corr_117: -1.313805507934797 - sys_corr_118: -37.55470838234366 - sys_corr_119: -0.456912935266402 - sys_corr_120: 1.611987491791657 - sys_corr_121: 0.1671964954343374 - sys_corr_122: 1.7991245836049734 - sys_corr_123: 1.1487745571587384 - sys_corr_124: -0.49545275351102197 - sys_corr_125: -1.766977660145854 - sys_corr_126: 0.5201467630245815 - sys_corr_127: -0.4182694503720925 - sys_corr_128: -2.112049585517802 - sys_corr_129: 1.0045060050635413 - sys_corr_130: 0.04817820267380022 - sys_corr_131: -1.3960856223224556 - sys_corr_132: -3.8074361189923573 + luminosity: 2.54893760e+01 +- sys_corr_1: -1.21283793e+01 + sys_corr_2: -2.45642618e+00 + sys_corr_3: -2.18151879e+01 + sys_corr_4: -4.83981694e+00 + sys_corr_5: -2.11834543e+01 + sys_corr_6: -6.01981241e+00 + sys_corr_7: 4.10485044e+00 + sys_corr_8: 1.71386933e+00 + sys_corr_9: 1.22200293e+00 + sys_corr_10: 4.20749505e-01 + sys_corr_11: 4.54470167e-01 + sys_corr_12: -8.39168169e-01 + sys_corr_13: 2.52373274e+00 + sys_corr_14: 3.53394444e-01 + sys_corr_15: -1.71402576e-01 + sys_corr_16: 1.83638017e+00 + sys_corr_17: -1.95166768e-01 + sys_corr_18: -8.82281973e-01 + sys_corr_19: 1.09958165e+00 + sys_corr_20: 2.97004551e+00 + sys_corr_21: 3.02260629e+00 + sys_corr_22: 2.92685653e+00 + sys_corr_23: -5.50426135e+00 + sys_corr_24: -4.56444195e+00 + sys_corr_25: -1.65782822e+01 + sys_corr_26: 8.24397910e+00 + sys_corr_27: 1.14037916e+01 + sys_corr_28: 2.93477569e+00 + sys_corr_29: 1.62857177e+00 + sys_corr_30: -2.16099825e+00 + sys_corr_31: 3.30543166e+00 + sys_corr_32: -1.55579281e+00 + sys_corr_33: 5.38304234e-01 + sys_corr_34: -1.44418432e+00 + sys_corr_35: -2.82640945e-01 + sys_corr_36: -1.60455774e-01 + sys_corr_37: 1.19613579e+00 + sys_corr_38: 1.26912069e-02 + sys_corr_39: 2.76262013e-01 + sys_corr_40: -5.17609692e-01 + sys_corr_41: 1.80644111e+00 + sys_corr_42: 8.45513328e-01 + sys_corr_43: -7.12548168e-02 + sys_corr_44: 1.16647919e+00 + sys_corr_45: -7.37392710e-01 + sys_corr_46: 1.23427224e-01 + sys_corr_47: 7.19720592e-01 + sys_corr_48: -1.79675516e+00 + sys_corr_49: 2.60992012e+00 + sys_corr_50: -2.11040756e+00 + sys_corr_51: 2.17860776e+00 + sys_corr_52: -4.22098340e-01 + sys_corr_53: -4.94410276e-01 + sys_corr_54: 2.39292339e+00 + sys_corr_55: -1.11371196e+00 + sys_corr_56: -1.09215077e+00 + sys_corr_57: -4.02723163e-01 + sys_corr_58: 3.79950036e-01 + sys_corr_59: -4.30334416e-01 + sys_corr_60: 1.26948377e+00 + sys_corr_61: 1.39532527e+00 + sys_corr_62: 1.21208204e+00 + sys_corr_63: 7.43326034e-01 + sys_corr_64: 3.36383886e-01 + sys_corr_65: -3.31396119e-01 + sys_corr_66: 4.00627219e-01 + sys_corr_67: -7.39219962e-02 + sys_corr_68: 6.66723682e-01 + sys_corr_69: 6.70296483e-01 + sys_corr_70: 7.95584783e-01 + sys_corr_71: -2.71539556e-01 + sys_corr_72: -1.50432345e+00 + sys_corr_73: -8.14643919e-01 + sys_corr_74: 1.49307382e+00 + sys_corr_75: 1.40665363e+00 + sys_corr_76: 2.05813084e+00 + sys_corr_77: -2.04400445e+00 + sys_corr_78: 1.64752069e+00 + sys_corr_79: 1.29190049e+00 + sys_corr_80: -5.75517064e-01 + sys_corr_81: 8.58559102e-01 + sys_corr_82: -7.19600870e-01 + sys_corr_83: 5.83572245e-01 + sys_corr_84: -5.69374106e+00 + sys_corr_85: 2.12454239e+00 + sys_corr_86: 2.46192034e-01 + sys_corr_87: 2.24178141e-01 + sys_corr_88: 3.25417326e-01 + sys_corr_89: -4.08359079e-01 + sys_corr_90: 2.51325895e+00 + sys_corr_91: 6.96341270e+00 + sys_corr_92: 3.27974856e-01 + sys_corr_93: -1.53639197e+00 + sys_corr_94: -3.69900801e+00 + sys_corr_95: 3.82254583e+00 + sys_corr_96: 3.38277374e-01 + sys_corr_97: 3.51056045e+00 + sys_corr_98: 2.49739378e+00 + sys_corr_99: 2.65485747e+00 + sys_corr_100: -6.89780471e+00 + sys_corr_101: -9.53890506e+00 + sys_corr_102: 3.56456619e+00 + sys_corr_103: -3.05688649e+00 + sys_corr_104: -7.05504585e+00 + sys_corr_105: -1.52308586e+01 + sys_corr_106: -1.16541834e+01 + sys_corr_107: -2.23384093e+01 + sys_corr_108: 1.63717572e+01 + sys_corr_109: 1.29145619e+00 + sys_corr_110: 1.77913934e+00 + sys_corr_111: 9.97010227e+00 + sys_corr_112: 1.01632091e+01 + sys_corr_113: 8.06913590e+00 + sys_corr_114: -9.33989854e-02 + sys_corr_115: 3.07147067e+01 + sys_corr_116: -4.99860763e+00 + sys_corr_117: -1.31380551e+00 + sys_corr_118: -3.75547084e+01 + sys_corr_119: -4.56912935e-01 + sys_corr_120: 1.61198749e+00 + sys_corr_121: 1.67196495e-01 + sys_corr_122: 1.79912458e+00 + sys_corr_123: 1.14877456e+00 + sys_corr_124: -4.95452754e-01 + sys_corr_125: -1.76697766e+00 + sys_corr_126: 5.20146763e-01 + sys_corr_127: -4.18269450e-01 + sys_corr_128: -2.11204959e+00 + sys_corr_129: 1.00450601e+00 + sys_corr_130: 4.81782027e-02 + sys_corr_131: -1.39608562e+00 + sys_corr_132: -3.80743612e+00 stat: 0.0 - luminosity: 16.003856000000003 -- sys_corr_1: -12.078110856465045 - sys_corr_2: -2.705336464586514 - sys_corr_3: -19.465637123449014 - sys_corr_4: -2.943578913748593 - sys_corr_5: -24.989433268108893 - sys_corr_6: -5.536009978958528 - sys_corr_7: 5.570225936800799 - sys_corr_8: 2.5950816428806607 - sys_corr_9: 0.13948123574413282 - sys_corr_10: 0.37438298902679995 - sys_corr_11: 0.08491594409633275 - sys_corr_12: -3.221227889983109 - sys_corr_13: 4.11360243771293 - sys_corr_14: 1.7677932805036063 - sys_corr_15: -2.0307799147847283 - sys_corr_16: 3.1996092255638073 - sys_corr_17: 0.9614703501260746 - sys_corr_18: -1.9927512047195166 - sys_corr_19: -1.2865734619942968 - sys_corr_20: -3.2955627273498753 - sys_corr_21: 0.18214595224638708 - sys_corr_22: 4.267021233374168 - sys_corr_23: 1.737733038734033 - sys_corr_24: -4.37888443368838 - sys_corr_25: -3.2361126384997347 - sys_corr_26: -9.449363312314249 - sys_corr_27: -1.1488104288995666 - sys_corr_28: -12.345794525329392 - sys_corr_29: -11.720844593960669 - sys_corr_30: -2.081583106755259 - sys_corr_31: 2.257465195576945 - sys_corr_32: -0.6014750062510612 - sys_corr_33: 0.2064059169973691 - sys_corr_34: -2.2578530653881663 - sys_corr_35: 0.12419508138171473 - sys_corr_36: 0.8771966300522323 - sys_corr_37: 1.4613787920713495 - sys_corr_38: -0.5052290539086689 - sys_corr_39: 0.12102563528357041 - sys_corr_40: 0.05329550048264059 - sys_corr_41: 0.7406389732266953 - sys_corr_42: 0.35834607576767136 - sys_corr_43: 0.6240922001867613 - sys_corr_44: 1.2998049187312226 - sys_corr_45: -0.4084259580453575 - sys_corr_46: 0.8514865288245659 - sys_corr_47: 1.256427044835068 - sys_corr_48: -2.9877943099665885 - sys_corr_49: 2.0690013985564435 - sys_corr_50: 0.9958338335575728 - sys_corr_51: -3.935826151064835 - sys_corr_52: 2.453147462921113 - sys_corr_53: 0.7794381450068916 - sys_corr_54: -0.3657990915596784 - sys_corr_55: 1.5249014689115448 - sys_corr_56: 0.14162175719973485 - sys_corr_57: 0.5077844640315006 - sys_corr_58: 0.7968320678080335 - sys_corr_59: 1.0416148637202653 - sys_corr_60: 0.8816036385881116 - sys_corr_61: -0.2733942059391973 - sys_corr_62: 0.17499173515942062 - sys_corr_63: 0.27168462323504455 - sys_corr_64: 0.0908126758848993 - sys_corr_65: -0.04446235224471178 - sys_corr_66: -0.15420243270039827 - sys_corr_67: 0.18820838773829435 - sys_corr_68: 0.9906475643732721 - sys_corr_69: 0.9082940853460941 - sys_corr_70: 0.9742050967101398 - sys_corr_71: 0.2513048844473096 - sys_corr_72: 0.4181503635718509 - sys_corr_73: -0.25493183105143274 - sys_corr_74: 0.3796701741062385 - sys_corr_75: 0.8273942577517701 - sys_corr_76: -0.21371070300302444 - sys_corr_77: -1.7271913249647957 - sys_corr_78: 0.7111946685328843 - sys_corr_79: 1.2451355750832576 - sys_corr_80: 1.0079467716412132 - sys_corr_81: 1.0043425899546092 - sys_corr_82: -0.4189750215288392 - sys_corr_83: 1.5379759350187585 - sys_corr_84: -6.288075774393652 - sys_corr_85: 3.5493638802933094 - sys_corr_86: -0.29275166647184137 - sys_corr_87: 0.5076135054336708 - sys_corr_88: -0.8431066376386418 - sys_corr_89: -0.35037018104606377 - sys_corr_90: 1.6165464065010844 - sys_corr_91: 7.519817370878534 - sys_corr_92: 0.07855835991586348 - sys_corr_93: -1.1422711020291167 - sys_corr_94: -1.9819389778272096 - sys_corr_95: 4.073471967998557 - sys_corr_96: 0.4781342680963472 - sys_corr_97: 1.7003456754609412 - sys_corr_98: 1.432768980399434 - sys_corr_99: 1.2861673265446467 - sys_corr_100: -4.20318402941834 - sys_corr_101: -5.686895086877288 - sys_corr_102: 2.569652235644922 - sys_corr_103: -1.2132279530728904 - sys_corr_104: -3.878630694380987 - sys_corr_105: -11.979996107778332 - sys_corr_106: -9.30141256328809 - sys_corr_107: -20.840657026339635 - sys_corr_108: 18.221971091786678 - sys_corr_109: 7.564097165177378 - sys_corr_110: 1.4887193509580197 - sys_corr_111: 11.586585700487863 - sys_corr_112: 11.579502697882672 - sys_corr_113: 12.441198637331228 - sys_corr_114: -0.07513234452920683 - sys_corr_115: 29.085841045518094 - sys_corr_116: -5.0003064498059056 - sys_corr_117: -2.4085781009529725 - sys_corr_118: 30.27977270593402 - sys_corr_119: -0.3923463606590735 - sys_corr_120: 1.4428284863766738 - sys_corr_121: 0.48683769303957014 - sys_corr_122: 4.659005137108251 - sys_corr_123: 2.5225278813000864 - sys_corr_124: 0.16931949599034377 - sys_corr_125: -3.0322797770784145 - sys_corr_126: 1.5768462657312874 - sys_corr_127: -0.43051745946593994 - sys_corr_128: -3.3401073453701606 - sys_corr_129: 8.391961886431485 - sys_corr_130: 0.8442087216807019 - sys_corr_131: -0.901411807987909 - sys_corr_132: -16.779579389034197 + luminosity: 1.60038560e+01 +- sys_corr_1: -1.20781109e+01 + sys_corr_2: -2.70533646e+00 + sys_corr_3: -1.94656371e+01 + sys_corr_4: -2.94357891e+00 + sys_corr_5: -2.49894333e+01 + sys_corr_6: -5.53600998e+00 + sys_corr_7: 5.57022594e+00 + sys_corr_8: 2.59508164e+00 + sys_corr_9: 1.39481236e-01 + sys_corr_10: 3.74382989e-01 + sys_corr_11: 8.49159441e-02 + sys_corr_12: -3.22122789e+00 + sys_corr_13: 4.11360244e+00 + sys_corr_14: 1.76779328e+00 + sys_corr_15: -2.03077991e+00 + sys_corr_16: 3.19960923e+00 + sys_corr_17: 9.61470350e-01 + sys_corr_18: -1.99275120e+00 + sys_corr_19: -1.28657346e+00 + sys_corr_20: -3.29556273e+00 + sys_corr_21: 1.82145952e-01 + sys_corr_22: 4.26702123e+00 + sys_corr_23: 1.73773304e+00 + sys_corr_24: -4.37888443e+00 + sys_corr_25: -3.23611264e+00 + sys_corr_26: -9.44936331e+00 + sys_corr_27: -1.14881043e+00 + sys_corr_28: -1.23457945e+01 + sys_corr_29: -1.17208446e+01 + sys_corr_30: -2.08158311e+00 + sys_corr_31: 2.25746520e+00 + sys_corr_32: -6.01475006e-01 + sys_corr_33: 2.06405917e-01 + sys_corr_34: -2.25785307e+00 + sys_corr_35: 1.24195081e-01 + sys_corr_36: 8.77196630e-01 + sys_corr_37: 1.46137879e+00 + sys_corr_38: -5.05229054e-01 + sys_corr_39: 1.21025635e-01 + sys_corr_40: 5.32955005e-02 + sys_corr_41: 7.40638973e-01 + sys_corr_42: 3.58346076e-01 + sys_corr_43: 6.24092200e-01 + sys_corr_44: 1.29980492e+00 + sys_corr_45: -4.08425958e-01 + sys_corr_46: 8.51486529e-01 + sys_corr_47: 1.25642704e+00 + sys_corr_48: -2.98779431e+00 + sys_corr_49: 2.06900140e+00 + sys_corr_50: 9.95833834e-01 + sys_corr_51: -3.93582615e+00 + sys_corr_52: 2.45314746e+00 + sys_corr_53: 7.79438145e-01 + sys_corr_54: -3.65799092e-01 + sys_corr_55: 1.52490147e+00 + sys_corr_56: 1.41621757e-01 + sys_corr_57: 5.07784464e-01 + sys_corr_58: 7.96832068e-01 + sys_corr_59: 1.04161486e+00 + sys_corr_60: 8.81603639e-01 + sys_corr_61: -2.73394206e-01 + sys_corr_62: 1.74991735e-01 + sys_corr_63: 2.71684623e-01 + sys_corr_64: 9.08126759e-02 + sys_corr_65: -4.44623522e-02 + sys_corr_66: -1.54202433e-01 + sys_corr_67: 1.88208388e-01 + sys_corr_68: 9.90647564e-01 + sys_corr_69: 9.08294085e-01 + sys_corr_70: 9.74205097e-01 + sys_corr_71: 2.51304884e-01 + sys_corr_72: 4.18150364e-01 + sys_corr_73: -2.54931831e-01 + sys_corr_74: 3.79670174e-01 + sys_corr_75: 8.27394258e-01 + sys_corr_76: -2.13710703e-01 + sys_corr_77: -1.72719132e+00 + sys_corr_78: 7.11194669e-01 + sys_corr_79: 1.24513558e+00 + sys_corr_80: 1.00794677e+00 + sys_corr_81: 1.00434259e+00 + sys_corr_82: -4.18975022e-01 + sys_corr_83: 1.53797594e+00 + sys_corr_84: -6.28807577e+00 + sys_corr_85: 3.54936388e+00 + sys_corr_86: -2.92751666e-01 + sys_corr_87: 5.07613505e-01 + sys_corr_88: -8.43106638e-01 + sys_corr_89: -3.50370181e-01 + sys_corr_90: 1.61654641e+00 + sys_corr_91: 7.51981737e+00 + sys_corr_92: 7.85583599e-02 + sys_corr_93: -1.14227110e+00 + sys_corr_94: -1.98193898e+00 + sys_corr_95: 4.07347197e+00 + sys_corr_96: 4.78134268e-01 + sys_corr_97: 1.70034568e+00 + sys_corr_98: 1.43276898e+00 + sys_corr_99: 1.28616733e+00 + sys_corr_100: -4.20318403e+00 + sys_corr_101: -5.68689509e+00 + sys_corr_102: 2.56965224e+00 + sys_corr_103: -1.21322795e+00 + sys_corr_104: -3.87863069e+00 + sys_corr_105: -1.19799961e+01 + sys_corr_106: -9.30141256e+00 + sys_corr_107: -2.08406570e+01 + sys_corr_108: 1.82219711e+01 + sys_corr_109: 7.56409717e+00 + sys_corr_110: 1.48871935e+00 + sys_corr_111: 1.15865857e+01 + sys_corr_112: 1.15795027e+01 + sys_corr_113: 1.24411986e+01 + sys_corr_114: -7.51323445e-02 + sys_corr_115: 2.90858410e+01 + sys_corr_116: -5.00030645e+00 + sys_corr_117: -2.40857810e+00 + sys_corr_118: 3.02797727e+01 + sys_corr_119: -3.92346361e-01 + sys_corr_120: 1.44282849e+00 + sys_corr_121: 4.86837693e-01 + sys_corr_122: 4.65900514e+00 + sys_corr_123: 2.52252788e+00 + sys_corr_124: 1.69319496e-01 + sys_corr_125: -3.03227978e+00 + sys_corr_126: 1.57684627e+00 + sys_corr_127: -4.30517459e-01 + sys_corr_128: -3.34010735e+00 + sys_corr_129: 8.39196189e+00 + sys_corr_130: 8.44208722e-01 + sys_corr_131: -9.01411808e-01 + sys_corr_132: -1.67795794e+01 stat: 0.0 - luminosity: 11.507782000000002 -- sys_corr_1: -4.783425403239493 - sys_corr_2: -3.965376072242284 - sys_corr_3: -9.681678133097664 - sys_corr_4: -1.2628397183148963 - sys_corr_5: -10.085160713467396 - sys_corr_6: -2.884642556218347 - sys_corr_7: 4.36816066306598 - sys_corr_8: 2.3008655144924455 - sys_corr_9: 1.4998039836338668 - sys_corr_10: 0.4319405774524939 - sys_corr_11: 2.2144937751032643 - sys_corr_12: 2.129007671340229 - sys_corr_13: -0.13970669489725096 - sys_corr_14: 1.5514741232344522 - sys_corr_15: -0.03302775632986985 - sys_corr_16: 1.2228776922747135 - sys_corr_17: 1.6643624393047207 - sys_corr_18: -1.2356005687820837 - sys_corr_19: -2.0057617276590483 - sys_corr_20: -2.845173949231016 - sys_corr_21: -0.6552619206292103 - sys_corr_22: 0.1200788038975378 - sys_corr_23: 3.6774305931414975 - sys_corr_24: -4.754191357020389 - sys_corr_25: -0.24723308688429352 - sys_corr_26: -2.162308547276993 - sys_corr_27: -0.12879157851284773 - sys_corr_28: 9.051479553263679 - sys_corr_29: 7.308905196292088 - sys_corr_30: 4.516292202586092 - sys_corr_31: 2.7419886657575554 - sys_corr_32: -0.049533831685884634 - sys_corr_33: -0.04383827574177039 - sys_corr_34: -2.462641488525681 - sys_corr_35: -0.5992289536932236 - sys_corr_36: -1.0722218041156237 - sys_corr_37: 0.3485169008005351 - sys_corr_38: -0.17879656963035134 - sys_corr_39: -0.4633542601780896 - sys_corr_40: -0.5452181831440397 - sys_corr_41: 0.017934087470219136 - sys_corr_42: 0.76364854153314 - sys_corr_43: 0.20309185290763018 - sys_corr_44: 0.4447103769239309 - sys_corr_45: -0.8015687391088339 - sys_corr_46: -0.04158239517801879 - sys_corr_47: 1.5850226646906445 - sys_corr_48: -2.387663857403047 - sys_corr_49: 1.4621884314622697 - sys_corr_50: 2.136165361199962 - sys_corr_51: -3.145941718712829 - sys_corr_52: 2.109620327368408 - sys_corr_53: 0.7011541693820884 - sys_corr_54: 0.44939408536757697 - sys_corr_55: 0.07872178284069138 - sys_corr_56: 0.20801107782795175 - sys_corr_57: 0.926655744905502 - sys_corr_58: 0.6341986943555693 - sys_corr_59: 0.46559092303617267 - sys_corr_60: 0.49721168091451895 - sys_corr_61: 0.025251874573263403 - sys_corr_62: -0.22680880343379153 - sys_corr_63: 0.10039468736030102 - sys_corr_64: -0.3806263487387251 - sys_corr_65: 0.6291607049022165 - sys_corr_66: -0.9785139005356391 - sys_corr_67: 0.7561182969211544 - sys_corr_68: -0.010469669502117668 - sys_corr_69: 1.2318289343422466 - sys_corr_70: 0.9811264809753758 - sys_corr_71: 0.045532008996582274 - sys_corr_72: 0.3936361473534458 - sys_corr_73: -0.4740651029051787 - sys_corr_74: 0.9518753403410911 - sys_corr_75: 1.235273006132409 - sys_corr_76: -1.0944982539035182 - sys_corr_77: -1.705459988537282 - sys_corr_78: 0.8113657484453777 - sys_corr_79: 0.8886959809640743 - sys_corr_80: 0.9686098665766852 - sys_corr_81: 0.8535634133870632 - sys_corr_82: -0.7263198143957996 - sys_corr_83: 1.5176972317505784 - sys_corr_84: -3.920462210256716 - sys_corr_85: 1.8419340224555125 - sys_corr_86: -0.03177191374140755 - sys_corr_87: -0.2108146127255983 - sys_corr_88: -0.13736068081188768 - sys_corr_89: -1.667118715115264 - sys_corr_90: -0.07144773038706005 - sys_corr_91: 4.460718476634684 - sys_corr_92: -0.1570939138822231 - sys_corr_93: -1.0250924835940836 - sys_corr_94: -2.7545273649853734 - sys_corr_95: 1.7988298584479532 - sys_corr_96: -0.046217020457175996 - sys_corr_97: 4.097330159127918 - sys_corr_98: 2.062391890305386 - sys_corr_99: 2.0913014151827127 - sys_corr_100: -3.2290484697835264 - sys_corr_101: -4.8749014258830385 - sys_corr_102: 1.050891728481236 - sys_corr_103: -0.7252695799022408 - sys_corr_104: -3.6377852265874275 - sys_corr_105: -7.556482014066169 - sys_corr_106: -5.693450239803218 - sys_corr_107: -12.798995962123403 - sys_corr_108: 11.16645277528711 - sys_corr_109: 2.8241386222621383 - sys_corr_110: 1.9548586650606843 - sys_corr_111: 6.959801367367132 - sys_corr_112: 5.779814124393469 - sys_corr_113: 7.832729050691279 - sys_corr_114: 0.6149182139464059 - sys_corr_115: 14.253255026531125 - sys_corr_116: -2.832063327737584 - sys_corr_117: -1.6566742515937518 - sys_corr_118: 9.524652471261968 - sys_corr_119: 0.5440380227842718 - sys_corr_120: 0.8198594454015499 - sys_corr_121: 0.5719696741272516 - sys_corr_122: 2.452593415316485 - sys_corr_123: 1.8201530083895048 - sys_corr_124: -0.19980867906612013 - sys_corr_125: -2.47578753103898 - sys_corr_126: 1.1483004778073944 - sys_corr_127: 0.019670583783915337 - sys_corr_128: -1.606035277572665 - sys_corr_129: 5.008967455574451 - sys_corr_130: 1.3037466776997118 - sys_corr_131: -2.2793906197242295 - sys_corr_132: 36.295370377659076 + luminosity: 1.15077820e+01 +- sys_corr_1: -4.78342540e+00 + sys_corr_2: -3.96537607e+00 + sys_corr_3: -9.68167813e+00 + sys_corr_4: -1.26283972e+00 + sys_corr_5: -1.00851607e+01 + sys_corr_6: -2.88464256e+00 + sys_corr_7: 4.36816066e+00 + sys_corr_8: 2.30086551e+00 + sys_corr_9: 1.49980398e+00 + sys_corr_10: 4.31940577e-01 + sys_corr_11: 2.21449378e+00 + sys_corr_12: 2.12900767e+00 + sys_corr_13: -1.39706695e-01 + sys_corr_14: 1.55147412e+00 + sys_corr_15: -3.30277563e-02 + sys_corr_16: 1.22287769e+00 + sys_corr_17: 1.66436244e+00 + sys_corr_18: -1.23560057e+00 + sys_corr_19: -2.00576173e+00 + sys_corr_20: -2.84517395e+00 + sys_corr_21: -6.55261921e-01 + sys_corr_22: 1.20078804e-01 + sys_corr_23: 3.67743059e+00 + sys_corr_24: -4.75419136e+00 + sys_corr_25: -2.47233087e-01 + sys_corr_26: -2.16230855e+00 + sys_corr_27: -1.28791579e-01 + sys_corr_28: 9.05147955e+00 + sys_corr_29: 7.30890520e+00 + sys_corr_30: 4.51629220e+00 + sys_corr_31: 2.74198867e+00 + sys_corr_32: -4.95338317e-02 + sys_corr_33: -4.38382757e-02 + sys_corr_34: -2.46264149e+00 + sys_corr_35: -5.99228954e-01 + sys_corr_36: -1.07222180e+00 + sys_corr_37: 3.48516901e-01 + sys_corr_38: -1.78796570e-01 + sys_corr_39: -4.63354260e-01 + sys_corr_40: -5.45218183e-01 + sys_corr_41: 1.79340875e-02 + sys_corr_42: 7.63648542e-01 + sys_corr_43: 2.03091853e-01 + sys_corr_44: 4.44710377e-01 + sys_corr_45: -8.01568739e-01 + sys_corr_46: -4.15823952e-02 + sys_corr_47: 1.58502266e+00 + sys_corr_48: -2.38766386e+00 + sys_corr_49: 1.46218843e+00 + sys_corr_50: 2.13616536e+00 + sys_corr_51: -3.14594172e+00 + sys_corr_52: 2.10962033e+00 + sys_corr_53: 7.01154169e-01 + sys_corr_54: 4.49394085e-01 + sys_corr_55: 7.87217828e-02 + sys_corr_56: 2.08011078e-01 + sys_corr_57: 9.26655745e-01 + sys_corr_58: 6.34198694e-01 + sys_corr_59: 4.65590923e-01 + sys_corr_60: 4.97211681e-01 + sys_corr_61: 2.52518746e-02 + sys_corr_62: -2.26808803e-01 + sys_corr_63: 1.00394687e-01 + sys_corr_64: -3.80626349e-01 + sys_corr_65: 6.29160705e-01 + sys_corr_66: -9.78513901e-01 + sys_corr_67: 7.56118297e-01 + sys_corr_68: -1.04696695e-02 + sys_corr_69: 1.23182893e+00 + sys_corr_70: 9.81126481e-01 + sys_corr_71: 4.55320090e-02 + sys_corr_72: 3.93636147e-01 + sys_corr_73: -4.74065103e-01 + sys_corr_74: 9.51875340e-01 + sys_corr_75: 1.23527301e+00 + sys_corr_76: -1.09449825e+00 + sys_corr_77: -1.70545999e+00 + sys_corr_78: 8.11365748e-01 + sys_corr_79: 8.88695981e-01 + sys_corr_80: 9.68609867e-01 + sys_corr_81: 8.53563413e-01 + sys_corr_82: -7.26319814e-01 + sys_corr_83: 1.51769723e+00 + sys_corr_84: -3.92046221e+00 + sys_corr_85: 1.84193402e+00 + sys_corr_86: -3.17719137e-02 + sys_corr_87: -2.10814613e-01 + sys_corr_88: -1.37360681e-01 + sys_corr_89: -1.66711872e+00 + sys_corr_90: -7.14477304e-02 + sys_corr_91: 4.46071848e+00 + sys_corr_92: -1.57093914e-01 + sys_corr_93: -1.02509248e+00 + sys_corr_94: -2.75452736e+00 + sys_corr_95: 1.79882986e+00 + sys_corr_96: -4.62170205e-02 + sys_corr_97: 4.09733016e+00 + sys_corr_98: 2.06239189e+00 + sys_corr_99: 2.09130142e+00 + sys_corr_100: -3.22904847e+00 + sys_corr_101: -4.87490143e+00 + sys_corr_102: 1.05089173e+00 + sys_corr_103: -7.25269580e-01 + sys_corr_104: -3.63778523e+00 + sys_corr_105: -7.55648201e+00 + sys_corr_106: -5.69345024e+00 + sys_corr_107: -1.27989960e+01 + sys_corr_108: 1.11664528e+01 + sys_corr_109: 2.82413862e+00 + sys_corr_110: 1.95485867e+00 + sys_corr_111: 6.95980137e+00 + sys_corr_112: 5.77981412e+00 + sys_corr_113: 7.83272905e+00 + sys_corr_114: 6.14918214e-01 + sys_corr_115: 1.42532550e+01 + sys_corr_116: -2.83206333e+00 + sys_corr_117: -1.65667425e+00 + sys_corr_118: 9.52465247e+00 + sys_corr_119: 5.44038023e-01 + sys_corr_120: 8.19859445e-01 + sys_corr_121: 5.71969674e-01 + sys_corr_122: 2.45259342e+00 + sys_corr_123: 1.82015301e+00 + sys_corr_124: -1.99808679e-01 + sys_corr_125: -2.47578753e+00 + sys_corr_126: 1.14830048e+00 + sys_corr_127: 1.96705838e-02 + sys_corr_128: -1.60603528e+00 + sys_corr_129: 5.00896746e+00 + sys_corr_130: 1.30374668e+00 + sys_corr_131: -2.27939062e+00 + sys_corr_132: 3.62953704e+01 stat: 0.0 luminosity: 6.068678 -- sys_corr_1: -1.9232466001005968 - sys_corr_2: -1.2591155809297228 - sys_corr_3: -3.7709326511947068 - sys_corr_4: -0.19252791095689958 - sys_corr_5: -4.4488852324847565 - sys_corr_6: -0.8637752839124873 - sys_corr_7: 1.5439846180539436 - sys_corr_8: 0.9889910077422226 - sys_corr_9: 0.7680291294430167 - sys_corr_10: 0.22992881538958784 - sys_corr_11: 0.3584094198690362 - sys_corr_12: -0.1039680565504185 - sys_corr_13: 0.5633524706895818 - sys_corr_14: 0.5786831394050478 - sys_corr_15: -0.18654241557131712 - sys_corr_16: 0.6060726248282411 - sys_corr_17: 0.6909095884434069 - sys_corr_18: -0.4369888408392155 - sys_corr_19: -0.857325068075565 - sys_corr_20: -1.42892756276393 - sys_corr_21: -0.4414669761921756 - sys_corr_22: -0.10228540358551372 - sys_corr_23: 1.5804575093266917 - sys_corr_24: -2.471918538925235 - sys_corr_25: -0.7746853868273178 - sys_corr_26: -0.6454373172478896 - sys_corr_27: 0.3719427191420168 - sys_corr_28: -0.01603130949954065 - sys_corr_29: -1.1462018296268324 - sys_corr_30: -0.9217357999913136 - sys_corr_31: -0.12968346240858505 - sys_corr_32: 0.17747621544649617 - sys_corr_33: 0.34388877207499413 - sys_corr_34: -0.174088574249372 - sys_corr_35: 0.17841543068435223 - sys_corr_36: 0.7434797258963983 - sys_corr_37: 0.5152700096309831 - sys_corr_38: 0.15173001205167447 - sys_corr_39: 0.279468274509048 - sys_corr_40: 0.15517481495091334 - sys_corr_41: -0.2785824300392477 - sys_corr_42: -0.7638066738421692 - sys_corr_43: -0.11957966969727955 - sys_corr_44: 2.8401537014659413 - sys_corr_45: 0.10387897968117703 - sys_corr_46: -0.04918528725107482 - sys_corr_47: -2.5353825837569057 - sys_corr_48: 5.415104904819657 - sys_corr_49: -1.994741982939423 - sys_corr_50: -4.995006429655969 - sys_corr_51: 4.779535985508733 - sys_corr_52: -3.7487773811005347 - sys_corr_53: -0.2389053959704859 - sys_corr_54: 1.3552161770383009 - sys_corr_55: -1.2666398121765514 - sys_corr_56: -1.1518077545052208 - sys_corr_57: -0.11041596883084813 - sys_corr_58: -0.08510404296800801 - sys_corr_59: 0.17299025823460867 - sys_corr_60: 0.19982084832509714 - sys_corr_61: 0.30848833609967424 - sys_corr_62: -0.193664214586065 - sys_corr_63: -0.1766138463904441 - sys_corr_64: 0.15054066694790155 - sys_corr_65: 0.21542681185229112 - sys_corr_66: 0.1336582374044083 - sys_corr_67: 0.2595659136943522 - sys_corr_68: -0.3351395854074412 - sys_corr_69: 0.12696102466369552 - sys_corr_70: -0.009328919085372266 - sys_corr_71: 0.1585491392319237 - sys_corr_72: -0.14907406342102913 - sys_corr_73: -0.09412437266620839 - sys_corr_74: 0.16266904605264232 - sys_corr_75: 0.4596401503730406 - sys_corr_76: -0.1689240525843567 - sys_corr_77: -0.5838599997485892 - sys_corr_78: 0.5049748973032614 - sys_corr_79: 0.32774250014539175 - sys_corr_80: 0.0850637399150913 - sys_corr_81: 0.44600833106732823 - sys_corr_82: -0.3214183346320395 - sys_corr_83: 0.39030033879082365 - sys_corr_84: -1.163453987392728 - sys_corr_85: 0.6610846648761577 - sys_corr_86: 0.08768148539128018 - sys_corr_87: -0.12089037054979672 - sys_corr_88: 0.25891008472103944 - sys_corr_89: -0.32346238321202114 - sys_corr_90: 0.05112508009404625 - sys_corr_91: 1.2976887757850022 - sys_corr_92: -0.32050698786640297 - sys_corr_93: -0.35305377303442537 - sys_corr_94: -0.8023391459051604 - sys_corr_95: 0.7306186795938652 - sys_corr_96: 0.027098080266823747 - sys_corr_97: 1.2281370444335922 - sys_corr_98: 0.637617233799 - sys_corr_99: 0.6939093651232696 - sys_corr_100: -1.340707758317468 - sys_corr_101: -1.8028931872987701 - sys_corr_102: 0.7619888765752483 - sys_corr_103: -0.5838949073757642 - sys_corr_104: -1.4337427321602982 - sys_corr_105: -2.4307692843885174 - sys_corr_106: -1.8564390307892966 - sys_corr_107: -3.705409514286217 - sys_corr_108: 3.0123723238933797 - sys_corr_109: 0.9452298791565402 - sys_corr_110: 0.6460477298181259 - sys_corr_111: 2.24627257875182 - sys_corr_112: 1.3520252066874254 - sys_corr_113: 1.9102500102953481 - sys_corr_114: -0.04247192185738769 - sys_corr_115: 3.093275620081878 - sys_corr_116: -0.624509198153844 - sys_corr_117: -0.28050360851847195 - sys_corr_118: 2.364726848217352 - sys_corr_119: 1.1779484288513609 - sys_corr_120: 0.13457215888613178 - sys_corr_121: 2.4946178860909867 - sys_corr_122: -0.5642293482134276 - sys_corr_123: -1.5094964699237547 - sys_corr_124: -0.15814124593384096 - sys_corr_125: -0.0904155100573093 - sys_corr_126: -8.126153218573787 - sys_corr_127: 0.0279344276329025 - sys_corr_128: 0.8549576765840535 - sys_corr_129: 0.6919020500106008 - sys_corr_130: -19.643959614380716 - sys_corr_131: -0.253011898516338 - sys_corr_132: 1.4885428299254653 +- sys_corr_1: -1.92324660e+00 + sys_corr_2: -1.25911558e+00 + sys_corr_3: -3.77093265e+00 + sys_corr_4: -1.92527911e-01 + sys_corr_5: -4.44888523e+00 + sys_corr_6: -8.63775284e-01 + sys_corr_7: 1.54398462e+00 + sys_corr_8: 9.88991008e-01 + sys_corr_9: 7.68029129e-01 + sys_corr_10: 2.29928815e-01 + sys_corr_11: 3.58409420e-01 + sys_corr_12: -1.03968057e-01 + sys_corr_13: 5.63352471e-01 + sys_corr_14: 5.78683139e-01 + sys_corr_15: -1.86542416e-01 + sys_corr_16: 6.06072625e-01 + sys_corr_17: 6.90909588e-01 + sys_corr_18: -4.36988841e-01 + sys_corr_19: -8.57325068e-01 + sys_corr_20: -1.42892756e+00 + sys_corr_21: -4.41466976e-01 + sys_corr_22: -1.02285404e-01 + sys_corr_23: 1.58045751e+00 + sys_corr_24: -2.47191854e+00 + sys_corr_25: -7.74685387e-01 + sys_corr_26: -6.45437317e-01 + sys_corr_27: 3.71942719e-01 + sys_corr_28: -1.60313095e-02 + sys_corr_29: -1.14620183e+00 + sys_corr_30: -9.21735800e-01 + sys_corr_31: -1.29683462e-01 + sys_corr_32: 1.77476215e-01 + sys_corr_33: 3.43888772e-01 + sys_corr_34: -1.74088574e-01 + sys_corr_35: 1.78415431e-01 + sys_corr_36: 7.43479726e-01 + sys_corr_37: 5.15270010e-01 + sys_corr_38: 1.51730012e-01 + sys_corr_39: 2.79468275e-01 + sys_corr_40: 1.55174815e-01 + sys_corr_41: -2.78582430e-01 + sys_corr_42: -7.63806674e-01 + sys_corr_43: -1.19579670e-01 + sys_corr_44: 2.84015370e+00 + sys_corr_45: 1.03878980e-01 + sys_corr_46: -4.91852873e-02 + sys_corr_47: -2.53538258e+00 + sys_corr_48: 5.41510490e+00 + sys_corr_49: -1.99474198e+00 + sys_corr_50: -4.99500643e+00 + sys_corr_51: 4.77953599e+00 + sys_corr_52: -3.74877738e+00 + sys_corr_53: -2.38905396e-01 + sys_corr_54: 1.35521618e+00 + sys_corr_55: -1.26663981e+00 + sys_corr_56: -1.15180775e+00 + sys_corr_57: -1.10415969e-01 + sys_corr_58: -8.51040430e-02 + sys_corr_59: 1.72990258e-01 + sys_corr_60: 1.99820848e-01 + sys_corr_61: 3.08488336e-01 + sys_corr_62: -1.93664215e-01 + sys_corr_63: -1.76613846e-01 + sys_corr_64: 1.50540667e-01 + sys_corr_65: 2.15426812e-01 + sys_corr_66: 1.33658237e-01 + sys_corr_67: 2.59565914e-01 + sys_corr_68: -3.35139585e-01 + sys_corr_69: 1.26961025e-01 + sys_corr_70: -9.32891909e-03 + sys_corr_71: 1.58549139e-01 + sys_corr_72: -1.49074063e-01 + sys_corr_73: -9.41243727e-02 + sys_corr_74: 1.62669046e-01 + sys_corr_75: 4.59640150e-01 + sys_corr_76: -1.68924053e-01 + sys_corr_77: -5.83860000e-01 + sys_corr_78: 5.04974897e-01 + sys_corr_79: 3.27742500e-01 + sys_corr_80: 8.50637399e-02 + sys_corr_81: 4.46008331e-01 + sys_corr_82: -3.21418335e-01 + sys_corr_83: 3.90300339e-01 + sys_corr_84: -1.16345399e+00 + sys_corr_85: 6.61084665e-01 + sys_corr_86: 8.76814854e-02 + sys_corr_87: -1.20890371e-01 + sys_corr_88: 2.58910085e-01 + sys_corr_89: -3.23462383e-01 + sys_corr_90: 5.11250801e-02 + sys_corr_91: 1.29768878e+00 + sys_corr_92: -3.20506988e-01 + sys_corr_93: -3.53053773e-01 + sys_corr_94: -8.02339146e-01 + sys_corr_95: 7.30618680e-01 + sys_corr_96: 2.70980803e-02 + sys_corr_97: 1.22813704e+00 + sys_corr_98: 6.37617234e-01 + sys_corr_99: 6.93909365e-01 + sys_corr_100: -1.34070776e+00 + sys_corr_101: -1.80289319e+00 + sys_corr_102: 7.61988877e-01 + sys_corr_103: -5.83894907e-01 + sys_corr_104: -1.43374273e+00 + sys_corr_105: -2.43076928e+00 + sys_corr_106: -1.85643903e+00 + sys_corr_107: -3.70540951e+00 + sys_corr_108: 3.01237232e+00 + sys_corr_109: 9.45229879e-01 + sys_corr_110: 6.46047730e-01 + sys_corr_111: 2.24627258e+00 + sys_corr_112: 1.35202521e+00 + sys_corr_113: 1.91025001e+00 + sys_corr_114: -4.24719219e-02 + sys_corr_115: 3.09327562e+00 + sys_corr_116: -6.24509198e-01 + sys_corr_117: -2.80503609e-01 + sys_corr_118: 2.36472685e+00 + sys_corr_119: 1.17794843e+00 + sys_corr_120: 1.34572159e-01 + sys_corr_121: 2.49461789e+00 + sys_corr_122: -5.64229348e-01 + sys_corr_123: -1.50949647e+00 + sys_corr_124: -1.58141246e-01 + sys_corr_125: -9.04155101e-02 + sys_corr_126: -8.12615322e+00 + sys_corr_127: 2.79344276e-02 + sys_corr_128: 8.54957677e-01 + sys_corr_129: 6.91902050e-01 + sys_corr_130: -1.96439596e+01 + sys_corr_131: -2.53011899e-01 + sys_corr_132: 1.48854283e+00 stat: 0.0 luminosity: 2.356574 -- sys_corr_1: 3.6242373793521208 - sys_corr_2: 6.459448426152907 - sys_corr_3: -2.6420520955417977 - sys_corr_4: 1.1515670017132609 - sys_corr_5: -3.8113237445765047 - sys_corr_6: 1.7341402589333463 - sys_corr_7: 0.11371668527546229 - sys_corr_8: -1.0406388002139666 - sys_corr_9: -2.179576596820378 - sys_corr_10: -0.6617460284015281 - sys_corr_11: -0.46008924025726966 - sys_corr_12: 0.08219125873719776 - sys_corr_13: 0.5643566784620696 - sys_corr_14: 0.22919319754676934 - sys_corr_15: 0.10563119583580904 - sys_corr_16: 0.4466214674820839 - sys_corr_17: -0.04277558847002822 - sys_corr_18: -0.04884536585390843 - sys_corr_19: -0.35348202980187027 - sys_corr_20: -0.09410197778680937 - sys_corr_21: -0.16245600274067093 - sys_corr_22: 1.9207040162695097 - sys_corr_23: 0.7911203284852348 - sys_corr_24: -1.276534942559967 - sys_corr_25: -0.9380427162792089 - sys_corr_26: -0.4649494705407968 - sys_corr_27: 0.8334414330229364 - sys_corr_28: -1.48189802683177 - sys_corr_29: 1.3268332767820512 - sys_corr_30: 0.9670841782689132 - sys_corr_31: 1.0245675178699338 - sys_corr_32: -0.0257777846527602 - sys_corr_33: 0.28907029096299425 - sys_corr_34: -0.6868318141858266 - sys_corr_35: 0.20060732516752108 - sys_corr_36: 0.07776698472442552 - sys_corr_37: -0.4171042564058031 - sys_corr_38: -0.1972527062060837 - sys_corr_39: 0.44274292401323023 - sys_corr_40: -0.14677230088975549 - sys_corr_41: 0.37355266329971176 - sys_corr_42: 0.16323124123104069 - sys_corr_43: -0.35201578685247115 - sys_corr_44: 0.2992293321072146 - sys_corr_45: 0.14663414043616474 - sys_corr_46: 0.18778208181190026 - sys_corr_47: 0.4393053977648547 - sys_corr_48: -0.5539341273297392 - sys_corr_49: 0.025202181324126764 - sys_corr_50: -0.2086502178476673 - sys_corr_51: -0.054088038716193686 - sys_corr_52: 0.009686322759112884 - sys_corr_53: -0.10329622657142812 - sys_corr_54: -0.6862640359126684 - sys_corr_55: -0.43223963321177966 - sys_corr_56: -0.3641118872999675 - sys_corr_57: -0.1508225402171514 - sys_corr_58: 0.28963242127012023 - sys_corr_59: 0.2131652626753151 - sys_corr_60: -0.06032025828379156 - sys_corr_61: 0.04058180349476301 - sys_corr_62: 0.35500160077852394 - sys_corr_63: 0.07038788954598327 - sys_corr_64: 0.3851308586307579 - sys_corr_65: 0.5377309850590262 - sys_corr_66: 0.030502717819894953 - sys_corr_67: -0.08595296790087761 - sys_corr_68: -0.15625127534698327 - sys_corr_69: 0.48209896341577885 - sys_corr_70: 0.436776665872331 - sys_corr_71: -0.06639718469153581 - sys_corr_72: -0.3111671016461597 - sys_corr_73: -0.7620087422264431 - sys_corr_74: 0.008382563226849243 - sys_corr_75: -0.036874032443185545 - sys_corr_76: -0.28481447938955545 - sys_corr_77: -0.13062915506416775 - sys_corr_78: 0.3382134664246537 - sys_corr_79: 0.6537824344284694 - sys_corr_80: 0.3691661634663748 - sys_corr_81: 0.4591749539235804 - sys_corr_82: 0.1763401521466132 - sys_corr_83: 0.9820459291573262 - sys_corr_84: -4.892846654035192 - sys_corr_85: 3.4007010035889778 - sys_corr_86: 0.47208499708583923 - sys_corr_87: -0.3254266184771923 - sys_corr_88: 0.3327360888829241 - sys_corr_89: 0.06132866946874567 - sys_corr_90: 0.86227571925504 - sys_corr_91: 5.502907126430328 - sys_corr_92: -0.7037332637926212 - sys_corr_93: 0.15209426421101238 - sys_corr_94: -0.5568923357943258 - sys_corr_95: 0.6394179573394823 - sys_corr_96: -0.7867408079325479 - sys_corr_97: 1.8487551531552866 - sys_corr_98: -0.7406580704041438 - sys_corr_99: 0.3063646172514759 - sys_corr_100: -0.6843175139065512 - sys_corr_101: -1.174590937914244 - sys_corr_102: 0.32186066452239903 - sys_corr_103: -0.012292919056658684 - sys_corr_104: 0.4832777921928802 - sys_corr_105: -1.565252807104682 - sys_corr_106: -0.9750916118934508 - sys_corr_107: -1.609322369381126 - sys_corr_108: 1.2372313719560415 - sys_corr_109: 0.25241497348962194 - sys_corr_110: 1.5157491797097062 - sys_corr_111: 0.956705371546155 - sys_corr_112: 1.406027087018616 - sys_corr_113: 2.3570309247150316 - sys_corr_114: -0.002511711002443387 - sys_corr_115: -2.1001056907913758 - sys_corr_116: 0.7011757977045374 - sys_corr_117: -3.327823494865429 - sys_corr_118: -0.1411696458273286 - sys_corr_119: -0.010297176803501328 - sys_corr_120: 1.7725676176467684 - sys_corr_121: -0.007475639660051798 - sys_corr_122: 0.4251490139190435 - sys_corr_123: 0.10873765370560291 - sys_corr_124: 70.54611289282518 - sys_corr_125: -0.8168857997526616 - sys_corr_126: 0.001740723330833192 - sys_corr_127: -0.34049514356072863 - sys_corr_128: 0.22732321408147657 - sys_corr_129: -7.107591988668364 - sys_corr_130: -0.03946233698138914 - sys_corr_131: -0.9298377579761191 - sys_corr_132: 0.0032444744658437223 +- sys_corr_1: 3.62423738e+00 + sys_corr_2: 6.45944843e+00 + sys_corr_3: -2.64205210e+00 + sys_corr_4: 1.15156700e+00 + sys_corr_5: -3.81132374e+00 + sys_corr_6: 1.73414026e+00 + sys_corr_7: 1.13716685e-01 + sys_corr_8: -1.04063880e+00 + sys_corr_9: -2.17957660e+00 + sys_corr_10: -6.61746028e-01 + sys_corr_11: -4.60089240e-01 + sys_corr_12: 8.21912587e-02 + sys_corr_13: 5.64356678e-01 + sys_corr_14: 2.29193198e-01 + sys_corr_15: 1.05631196e-01 + sys_corr_16: 4.46621467e-01 + sys_corr_17: -4.27755885e-02 + sys_corr_18: -4.88453659e-02 + sys_corr_19: -3.53482030e-01 + sys_corr_20: -9.41019778e-02 + sys_corr_21: -1.62456003e-01 + sys_corr_22: 1.92070402e+00 + sys_corr_23: 7.91120328e-01 + sys_corr_24: -1.27653494e+00 + sys_corr_25: -9.38042716e-01 + sys_corr_26: -4.64949471e-01 + sys_corr_27: 8.33441433e-01 + sys_corr_28: -1.48189803e+00 + sys_corr_29: 1.32683328e+00 + sys_corr_30: 9.67084178e-01 + sys_corr_31: 1.02456752e+00 + sys_corr_32: -2.57777847e-02 + sys_corr_33: 2.89070291e-01 + sys_corr_34: -6.86831814e-01 + sys_corr_35: 2.00607325e-01 + sys_corr_36: 7.77669847e-02 + sys_corr_37: -4.17104256e-01 + sys_corr_38: -1.97252706e-01 + sys_corr_39: 4.42742924e-01 + sys_corr_40: -1.46772301e-01 + sys_corr_41: 3.73552663e-01 + sys_corr_42: 1.63231241e-01 + sys_corr_43: -3.52015787e-01 + sys_corr_44: 2.99229332e-01 + sys_corr_45: 1.46634140e-01 + sys_corr_46: 1.87782082e-01 + sys_corr_47: 4.39305398e-01 + sys_corr_48: -5.53934127e-01 + sys_corr_49: 2.52021813e-02 + sys_corr_50: -2.08650218e-01 + sys_corr_51: -5.40880387e-02 + sys_corr_52: 9.68632276e-03 + sys_corr_53: -1.03296227e-01 + sys_corr_54: -6.86264036e-01 + sys_corr_55: -4.32239633e-01 + sys_corr_56: -3.64111887e-01 + sys_corr_57: -1.50822540e-01 + sys_corr_58: 2.89632421e-01 + sys_corr_59: 2.13165263e-01 + sys_corr_60: -6.03202583e-02 + sys_corr_61: 4.05818035e-02 + sys_corr_62: 3.55001601e-01 + sys_corr_63: 7.03878895e-02 + sys_corr_64: 3.85130859e-01 + sys_corr_65: 5.37730985e-01 + sys_corr_66: 3.05027178e-02 + sys_corr_67: -8.59529679e-02 + sys_corr_68: -1.56251275e-01 + sys_corr_69: 4.82098963e-01 + sys_corr_70: 4.36776666e-01 + sys_corr_71: -6.63971847e-02 + sys_corr_72: -3.11167102e-01 + sys_corr_73: -7.62008742e-01 + sys_corr_74: 8.38256323e-03 + sys_corr_75: -3.68740324e-02 + sys_corr_76: -2.84814479e-01 + sys_corr_77: -1.30629155e-01 + sys_corr_78: 3.38213466e-01 + sys_corr_79: 6.53782434e-01 + sys_corr_80: 3.69166163e-01 + sys_corr_81: 4.59174954e-01 + sys_corr_82: 1.76340152e-01 + sys_corr_83: 9.82045929e-01 + sys_corr_84: -4.89284665e+00 + sys_corr_85: 3.40070100e+00 + sys_corr_86: 4.72084997e-01 + sys_corr_87: -3.25426618e-01 + sys_corr_88: 3.32736089e-01 + sys_corr_89: 6.13286695e-02 + sys_corr_90: 8.62275719e-01 + sys_corr_91: 5.50290713e+00 + sys_corr_92: -7.03733264e-01 + sys_corr_93: 1.52094264e-01 + sys_corr_94: -5.56892336e-01 + sys_corr_95: 6.39417957e-01 + sys_corr_96: -7.86740808e-01 + sys_corr_97: 1.84875515e+00 + sys_corr_98: -7.40658070e-01 + sys_corr_99: 3.06364617e-01 + sys_corr_100: -6.84317514e-01 + sys_corr_101: -1.17459094e+00 + sys_corr_102: 3.21860665e-01 + sys_corr_103: -1.22929191e-02 + sys_corr_104: 4.83277792e-01 + sys_corr_105: -1.56525281e+00 + sys_corr_106: -9.75091612e-01 + sys_corr_107: -1.60932237e+00 + sys_corr_108: 1.23723137e+00 + sys_corr_109: 2.52414973e-01 + sys_corr_110: 1.51574918e+00 + sys_corr_111: 9.56705372e-01 + sys_corr_112: 1.40602709e+00 + sys_corr_113: 2.35703092e+00 + sys_corr_114: -2.51171100e-03 + sys_corr_115: -2.10010569e+00 + sys_corr_116: 7.01175798e-01 + sys_corr_117: -3.32782349e+00 + sys_corr_118: -1.41169646e-01 + sys_corr_119: -1.02971768e-02 + sys_corr_120: 1.77256762e+00 + sys_corr_121: -7.47563966e-03 + sys_corr_122: 4.25149014e-01 + sys_corr_123: 1.08737654e-01 + sys_corr_124: 7.05461129e+01 + sys_corr_125: -8.16885800e-01 + sys_corr_126: 1.74072333e-03 + sys_corr_127: -3.40495144e-01 + sys_corr_128: 2.27323214e-01 + sys_corr_129: -7.10759199e+00 + sys_corr_130: -3.94623370e-02 + sys_corr_131: -9.29837758e-01 + sys_corr_132: 3.24447447e-03 stat: 0.0 - luminosity: 11.657844000000003 -- sys_corr_1: 4.218247174358309 - sys_corr_2: 5.300560648672863 - sys_corr_3: -3.4470042221279384 - sys_corr_4: 0.716615001445392 - sys_corr_5: -3.1706950124580224 - sys_corr_6: 1.5004464347753153 - sys_corr_7: 0.42049131249511046 - sys_corr_8: -0.8956009406476492 - sys_corr_9: -2.1730014969261986 - sys_corr_10: -0.4701909817279471 - sys_corr_11: -0.4433993208145569 - sys_corr_12: 0.1141572980902398 - sys_corr_13: 0.28752063416624113 - sys_corr_14: 0.23044051165074964 - sys_corr_15: -0.08800188233851287 - sys_corr_16: 0.168970108605207 - sys_corr_17: -0.3589179683467866 - sys_corr_18: -0.05300254447933614 - sys_corr_19: 0.03258382081707446 - sys_corr_20: 0.1961982512330293 - sys_corr_21: -0.22323643797689618 - sys_corr_22: 1.5704940112652546 - sys_corr_23: 0.39713512919072713 - sys_corr_24: -1.0617017683415653 - sys_corr_25: -0.85985211089737 - sys_corr_26: -0.3773046922994445 - sys_corr_27: 0.2894484555139572 - sys_corr_28: -1.5401654786120234 - sys_corr_29: 1.2856177418159214 - sys_corr_30: 0.44874776374078673 - sys_corr_31: 0.9427828982943758 - sys_corr_32: -0.07440522252082225 - sys_corr_33: 0.1693205895450808 - sys_corr_34: -0.594602483115603 - sys_corr_35: 0.16136379553860478 - sys_corr_36: 0.051397731284006855 - sys_corr_37: -0.29865175614798234 - sys_corr_38: -0.2046517700391932 - sys_corr_39: 0.3689722347083708 - sys_corr_40: -0.09748179258325851 - sys_corr_41: 0.3558985798992434 - sys_corr_42: 0.11530685046357399 - sys_corr_43: -0.30319397583421326 - sys_corr_44: 0.180769814851651 - sys_corr_45: 0.12724654261082935 - sys_corr_46: 0.15679245354144172 - sys_corr_47: 0.37105049919867056 - sys_corr_48: -0.5223827079853176 - sys_corr_49: -0.04530991723282983 - sys_corr_50: -0.1370470577399687 - sys_corr_51: -0.11221080523441401 - sys_corr_52: 0.008082881700606606 - sys_corr_53: -0.1707826200597634 - sys_corr_54: -0.5961226783055487 - sys_corr_55: -0.3633977679689806 - sys_corr_56: -0.26849870363747746 - sys_corr_57: -0.19399415605567447 - sys_corr_58: 0.16069510836379974 - sys_corr_59: 0.19910715662166234 - sys_corr_60: -0.04742353029602693 - sys_corr_61: 0.05419318436360055 - sys_corr_62: 0.31627279817687665 - sys_corr_63: 0.06881836642010278 - sys_corr_64: 0.24947415169602644 - sys_corr_65: 0.4048104267094062 - sys_corr_66: 0.03220100000128345 - sys_corr_67: -0.06413968102851536 - sys_corr_68: -0.1855281550398904 - sys_corr_69: 0.3759701680286832 - sys_corr_70: 0.38524525227646395 - sys_corr_71: -0.0693652438084921 - sys_corr_72: -0.197599123301266 - sys_corr_73: -0.6496319461934295 - sys_corr_74: 0.03465468771832402 - sys_corr_75: -0.05596278848050105 - sys_corr_76: -0.2273285363018266 - sys_corr_77: -0.10521916320809829 - sys_corr_78: 0.21562337640496487 - sys_corr_79: 0.597283131178934 - sys_corr_80: 0.28746493211233237 - sys_corr_81: 0.39212132020437407 - sys_corr_82: 0.1675774844443022 - sys_corr_83: 0.7204156128337426 - sys_corr_84: -3.779143140733941 - sys_corr_85: 2.582550060135523 - sys_corr_86: 0.37577419344587054 - sys_corr_87: -0.2573441566425069 - sys_corr_88: 0.2068013038324041 - sys_corr_89: 0.002761209793729679 - sys_corr_90: 0.7439839939886568 - sys_corr_91: 4.271931134113562 - sys_corr_92: -0.45579016386315424 - sys_corr_93: -1.6583002425528113 - sys_corr_94: 0.31329749039399907 - sys_corr_95: 0.23066373586501526 - sys_corr_96: 0.7448296957164129 - sys_corr_97: -0.6029394716296754 - sys_corr_98: 2.3081259390839457 - sys_corr_99: 1.1961701995874148 - sys_corr_100: -0.6162398301531289 - sys_corr_101: -1.0294014305357344 - sys_corr_102: 0.7825368934914421 - sys_corr_103: 0.05292261161595319 - sys_corr_104: 0.2233697073586099 - sys_corr_105: -1.1840315994524828 - sys_corr_106: -0.6504519443076501 - sys_corr_107: -1.2337917560669789 - sys_corr_108: 1.003012716745315 - sys_corr_109: 0.1787615139566214 - sys_corr_110: 1.1284663673003024 - sys_corr_111: 0.5459866857515878 - sys_corr_112: 0.6860430273020901 - sys_corr_113: 0.9338922606890318 - sys_corr_114: -0.0024541318329559967 - sys_corr_115: 7.991493354113385 - sys_corr_116: 59.31190665140409 - sys_corr_117: 0.7495115726753172 - sys_corr_118: -0.003031551289834069 - sys_corr_119: -0.02368235641356532 - sys_corr_120: 3.1221970481444865 - sys_corr_121: -0.011232722625724346 - sys_corr_122: 0.6145119285906907 - sys_corr_123: 0.14105187744532047 - sys_corr_124: -0.850745284627358 - sys_corr_125: -1.3133668627534594 - sys_corr_126: 0.015340355395269093 - sys_corr_127: 0.23644705355145398 - sys_corr_128: 0.18319750628022125 - sys_corr_129: 1.0352526776929536 - sys_corr_130: -0.04904013566857775 - sys_corr_131: -1.4997817810405976 - sys_corr_132: 0.06170764180196757 + luminosity: 1.16578440e+01 +- sys_corr_1: 4.21824717e+00 + sys_corr_2: 5.30056065e+00 + sys_corr_3: -3.44700422e+00 + sys_corr_4: 7.16615001e-01 + sys_corr_5: -3.17069501e+00 + sys_corr_6: 1.50044643e+00 + sys_corr_7: 4.20491312e-01 + sys_corr_8: -8.95600941e-01 + sys_corr_9: -2.17300150e+00 + sys_corr_10: -4.70190982e-01 + sys_corr_11: -4.43399321e-01 + sys_corr_12: 1.14157298e-01 + sys_corr_13: 2.87520634e-01 + sys_corr_14: 2.30440512e-01 + sys_corr_15: -8.80018823e-02 + sys_corr_16: 1.68970109e-01 + sys_corr_17: -3.58917968e-01 + sys_corr_18: -5.30025445e-02 + sys_corr_19: 3.25838208e-02 + sys_corr_20: 1.96198251e-01 + sys_corr_21: -2.23236438e-01 + sys_corr_22: 1.57049401e+00 + sys_corr_23: 3.97135129e-01 + sys_corr_24: -1.06170177e+00 + sys_corr_25: -8.59852111e-01 + sys_corr_26: -3.77304692e-01 + sys_corr_27: 2.89448456e-01 + sys_corr_28: -1.54016548e+00 + sys_corr_29: 1.28561774e+00 + sys_corr_30: 4.48747764e-01 + sys_corr_31: 9.42782898e-01 + sys_corr_32: -7.44052225e-02 + sys_corr_33: 1.69320590e-01 + sys_corr_34: -5.94602483e-01 + sys_corr_35: 1.61363796e-01 + sys_corr_36: 5.13977313e-02 + sys_corr_37: -2.98651756e-01 + sys_corr_38: -2.04651770e-01 + sys_corr_39: 3.68972235e-01 + sys_corr_40: -9.74817926e-02 + sys_corr_41: 3.55898580e-01 + sys_corr_42: 1.15306850e-01 + sys_corr_43: -3.03193976e-01 + sys_corr_44: 1.80769815e-01 + sys_corr_45: 1.27246543e-01 + sys_corr_46: 1.56792454e-01 + sys_corr_47: 3.71050499e-01 + sys_corr_48: -5.22382708e-01 + sys_corr_49: -4.53099172e-02 + sys_corr_50: -1.37047058e-01 + sys_corr_51: -1.12210805e-01 + sys_corr_52: 8.08288170e-03 + sys_corr_53: -1.70782620e-01 + sys_corr_54: -5.96122678e-01 + sys_corr_55: -3.63397768e-01 + sys_corr_56: -2.68498704e-01 + sys_corr_57: -1.93994156e-01 + sys_corr_58: 1.60695108e-01 + sys_corr_59: 1.99107157e-01 + sys_corr_60: -4.74235303e-02 + sys_corr_61: 5.41931844e-02 + sys_corr_62: 3.16272798e-01 + sys_corr_63: 6.88183664e-02 + sys_corr_64: 2.49474152e-01 + sys_corr_65: 4.04810427e-01 + sys_corr_66: 3.22010000e-02 + sys_corr_67: -6.41396810e-02 + sys_corr_68: -1.85528155e-01 + sys_corr_69: 3.75970168e-01 + sys_corr_70: 3.85245252e-01 + sys_corr_71: -6.93652438e-02 + sys_corr_72: -1.97599123e-01 + sys_corr_73: -6.49631946e-01 + sys_corr_74: 3.46546877e-02 + sys_corr_75: -5.59627885e-02 + sys_corr_76: -2.27328536e-01 + sys_corr_77: -1.05219163e-01 + sys_corr_78: 2.15623376e-01 + sys_corr_79: 5.97283131e-01 + sys_corr_80: 2.87464932e-01 + sys_corr_81: 3.92121320e-01 + sys_corr_82: 1.67577484e-01 + sys_corr_83: 7.20415613e-01 + sys_corr_84: -3.77914314e+00 + sys_corr_85: 2.58255006e+00 + sys_corr_86: 3.75774193e-01 + sys_corr_87: -2.57344157e-01 + sys_corr_88: 2.06801304e-01 + sys_corr_89: 2.76120979e-03 + sys_corr_90: 7.43983994e-01 + sys_corr_91: 4.27193113e+00 + sys_corr_92: -4.55790164e-01 + sys_corr_93: -1.65830024e+00 + sys_corr_94: 3.13297490e-01 + sys_corr_95: 2.30663736e-01 + sys_corr_96: 7.44829696e-01 + sys_corr_97: -6.02939472e-01 + sys_corr_98: 2.30812594e+00 + sys_corr_99: 1.19617020e+00 + sys_corr_100: -6.16239830e-01 + sys_corr_101: -1.02940143e+00 + sys_corr_102: 7.82536893e-01 + sys_corr_103: 5.29226116e-02 + sys_corr_104: 2.23369707e-01 + sys_corr_105: -1.18403160e+00 + sys_corr_106: -6.50451944e-01 + sys_corr_107: -1.23379176e+00 + sys_corr_108: 1.00301272e+00 + sys_corr_109: 1.78761514e-01 + sys_corr_110: 1.12846637e+00 + sys_corr_111: 5.45986686e-01 + sys_corr_112: 6.86043027e-01 + sys_corr_113: 9.33892261e-01 + sys_corr_114: -2.45413183e-03 + sys_corr_115: 7.99149335e+00 + sys_corr_116: 5.93119067e+01 + sys_corr_117: 7.49511573e-01 + sys_corr_118: -3.03155129e-03 + sys_corr_119: -2.36823564e-02 + sys_corr_120: 3.12219705e+00 + sys_corr_121: -1.12327226e-02 + sys_corr_122: 6.14511929e-01 + sys_corr_123: 1.41051877e-01 + sys_corr_124: -8.50745285e-01 + sys_corr_125: -1.31336686e+00 + sys_corr_126: 1.53403554e-02 + sys_corr_127: 2.36447054e-01 + sys_corr_128: 1.83197506e-01 + sys_corr_129: 1.03525268e+00 + sys_corr_130: -4.90401357e-02 + sys_corr_131: -1.49978178e+00 + sys_corr_132: 6.17076418e-02 stat: 0.0 - luminosity: 13.383766 -- sys_corr_1: 4.191792934787041 - sys_corr_2: 4.833168525633819 - sys_corr_3: -4.248849004613018 - sys_corr_4: 0.32832576720955076 - sys_corr_5: -3.329284650625996 - sys_corr_6: 1.3060307151765458 - sys_corr_7: 0.43852387866337134 - sys_corr_8: -0.9422983366557706 - sys_corr_9: -1.8068108693945921 - sys_corr_10: -0.6851241876630242 - sys_corr_11: -0.3621342780569267 - sys_corr_12: 0.23105882269764472 - sys_corr_13: 0.4308569960816015 - sys_corr_14: 0.19706866077346522 - sys_corr_15: 0.07913982710115547 - sys_corr_16: 0.435254189318095 - sys_corr_17: -0.3704329891219442 - sys_corr_18: 0.018370330136159817 - sys_corr_19: 0.2635372187585775 - sys_corr_20: 0.3793637967830809 - sys_corr_21: 0.10114404515424091 - sys_corr_22: 1.5759664287955888 - sys_corr_23: -0.020359034189113678 - sys_corr_24: -1.0064550859766306 - sys_corr_25: -0.6238492000521823 - sys_corr_26: -0.5647035401153847 - sys_corr_27: 0.10946530899728399 - sys_corr_28: -1.742781114937132 - sys_corr_29: 1.28616626946686 - sys_corr_30: 0.20235196701519023 - sys_corr_31: 1.1229207715499687 - sys_corr_32: -0.11914590485138443 - sys_corr_33: 0.19308016968307987 - sys_corr_34: -0.6554006826306592 - sys_corr_35: 0.10720496272802356 - sys_corr_36: -0.016988155656260783 - sys_corr_37: -0.3387121621264806 - sys_corr_38: -0.14345379043683418 - sys_corr_39: 0.36844776357551473 - sys_corr_40: -0.021939909047306 - sys_corr_41: 0.32236785915771826 - sys_corr_42: 0.2061115398980378 - sys_corr_43: -0.243608042232554 - sys_corr_44: 0.29032614285514957 - sys_corr_45: 0.0856098153705015 - sys_corr_46: 0.16532409583090002 - sys_corr_47: 0.4781853504702981 - sys_corr_48: -0.5768103954145911 - sys_corr_49: -0.026728160776488753 - sys_corr_50: -0.08203294470518328 - sys_corr_51: -0.10571198648907747 - sys_corr_52: -0.0478321877811464 - sys_corr_53: -0.16379509656925814 - sys_corr_54: -0.48628521159648075 - sys_corr_55: -0.3382309047230488 - sys_corr_56: -0.3665662519121087 - sys_corr_57: -0.2856458271252706 - sys_corr_58: 0.2043625938219225 - sys_corr_59: 0.22207924347946748 - sys_corr_60: 0.07892669575044903 - sys_corr_61: -0.0007323429352288965 - sys_corr_62: 0.24425873361035824 - sys_corr_63: 0.11826608259358051 - sys_corr_64: 0.2426029052322436 - sys_corr_65: 0.37890334205200144 - sys_corr_66: 0.06360339114569127 - sys_corr_67: -0.12412251808148105 - sys_corr_68: -0.14727168372855112 - sys_corr_69: 0.3563200056568592 - sys_corr_70: 0.37237843924244973 - sys_corr_71: -0.0008174219800654567 - sys_corr_72: -0.17095802124383946 - sys_corr_73: -0.658124731926669 - sys_corr_74: 0.09091843285341367 - sys_corr_75: -0.13453486503830694 - sys_corr_76: -0.15630845872776802 - sys_corr_77: -0.1608341930341878 - sys_corr_78: 0.20847984503008082 - sys_corr_79: 0.4470709962826201 - sys_corr_80: 0.23643314568414706 - sys_corr_81: 0.3948391374144712 - sys_corr_82: 0.05004518328384515 - sys_corr_83: 0.6484789436910724 - sys_corr_84: -3.7363269799439607 - sys_corr_85: 2.5260638951837726 - sys_corr_86: 0.3764307943738722 - sys_corr_87: -0.08246013834568908 - sys_corr_88: 0.24240627785610325 - sys_corr_89: -0.034306870591130585 - sys_corr_90: 0.9266095812430617 - sys_corr_91: 4.342941845065176 - sys_corr_92: -0.4210075089599197 - sys_corr_93: -0.47235589594962574 - sys_corr_94: 0.2305732177672062 - sys_corr_95: 0.3072251631129581 - sys_corr_96: 0.19806936221518176 - sys_corr_97: -0.28178862533359456 - sys_corr_98: -0.3657532237989543 - sys_corr_99: -0.47489495611008586 - sys_corr_100: -0.7105233272306783 - sys_corr_101: -1.2709658276601534 - sys_corr_102: 0.20393563708784943 - sys_corr_103: -0.5558002335332136 - sys_corr_104: -2.2290833261097727 - sys_corr_105: -1.3922713006709113 - sys_corr_106: -0.9238149169543969 - sys_corr_107: -1.5999861623611955 - sys_corr_108: 1.1399821645866925 - sys_corr_109: 0.35527469021780556 - sys_corr_110: -0.9177836500420908 - sys_corr_111: 0.7684530640655904 - sys_corr_112: 0.717303996883595 - sys_corr_113: 0.8852857936625224 - sys_corr_114: -0.0008247396040648729 - sys_corr_115: 1.5837344790183403 - sys_corr_116: -1.3188476829714446 - sys_corr_117: 53.079726105280436 - sys_corr_118: 0.6428405542648867 - sys_corr_119: -0.02819947560068092 - sys_corr_120: -0.7941455293203905 - sys_corr_121: 0.01262166279314881 - sys_corr_122: 0.9964023217502131 - sys_corr_123: 0.2578828208193855 - sys_corr_124: 4.16796488157387 - sys_corr_125: -1.957268113103418 - sys_corr_126: 0.055271775306620544 - sys_corr_127: -0.3821940625615818 - sys_corr_128: 0.06372290154911298 - sys_corr_129: -0.28778226050480876 - sys_corr_130: -0.0525119021976912 - sys_corr_131: -2.0595172269995112 - sys_corr_132: 0.1743959400816878 + luminosity: 1.33837660e+01 +- sys_corr_1: 4.19179293e+00 + sys_corr_2: 4.83316853e+00 + sys_corr_3: -4.24884900e+00 + sys_corr_4: 3.28325767e-01 + sys_corr_5: -3.32928465e+00 + sys_corr_6: 1.30603072e+00 + sys_corr_7: 4.38523879e-01 + sys_corr_8: -9.42298337e-01 + sys_corr_9: -1.80681087e+00 + sys_corr_10: -6.85124188e-01 + sys_corr_11: -3.62134278e-01 + sys_corr_12: 2.31058823e-01 + sys_corr_13: 4.30856996e-01 + sys_corr_14: 1.97068661e-01 + sys_corr_15: 7.91398271e-02 + sys_corr_16: 4.35254189e-01 + sys_corr_17: -3.70432989e-01 + sys_corr_18: 1.83703301e-02 + sys_corr_19: 2.63537219e-01 + sys_corr_20: 3.79363797e-01 + sys_corr_21: 1.01144045e-01 + sys_corr_22: 1.57596643e+00 + sys_corr_23: -2.03590342e-02 + sys_corr_24: -1.00645509e+00 + sys_corr_25: -6.23849200e-01 + sys_corr_26: -5.64703540e-01 + sys_corr_27: 1.09465309e-01 + sys_corr_28: -1.74278111e+00 + sys_corr_29: 1.28616627e+00 + sys_corr_30: 2.02351967e-01 + sys_corr_31: 1.12292077e+00 + sys_corr_32: -1.19145905e-01 + sys_corr_33: 1.93080170e-01 + sys_corr_34: -6.55400683e-01 + sys_corr_35: 1.07204963e-01 + sys_corr_36: -1.69881557e-02 + sys_corr_37: -3.38712162e-01 + sys_corr_38: -1.43453790e-01 + sys_corr_39: 3.68447764e-01 + sys_corr_40: -2.19399090e-02 + sys_corr_41: 3.22367859e-01 + sys_corr_42: 2.06111540e-01 + sys_corr_43: -2.43608042e-01 + sys_corr_44: 2.90326143e-01 + sys_corr_45: 8.56098154e-02 + sys_corr_46: 1.65324096e-01 + sys_corr_47: 4.78185350e-01 + sys_corr_48: -5.76810395e-01 + sys_corr_49: -2.67281608e-02 + sys_corr_50: -8.20329447e-02 + sys_corr_51: -1.05711986e-01 + sys_corr_52: -4.78321878e-02 + sys_corr_53: -1.63795097e-01 + sys_corr_54: -4.86285212e-01 + sys_corr_55: -3.38230905e-01 + sys_corr_56: -3.66566252e-01 + sys_corr_57: -2.85645827e-01 + sys_corr_58: 2.04362594e-01 + sys_corr_59: 2.22079243e-01 + sys_corr_60: 7.89266958e-02 + sys_corr_61: -7.32342935e-04 + sys_corr_62: 2.44258734e-01 + sys_corr_63: 1.18266083e-01 + sys_corr_64: 2.42602905e-01 + sys_corr_65: 3.78903342e-01 + sys_corr_66: 6.36033911e-02 + sys_corr_67: -1.24122518e-01 + sys_corr_68: -1.47271684e-01 + sys_corr_69: 3.56320006e-01 + sys_corr_70: 3.72378439e-01 + sys_corr_71: -8.17421980e-04 + sys_corr_72: -1.70958021e-01 + sys_corr_73: -6.58124732e-01 + sys_corr_74: 9.09184329e-02 + sys_corr_75: -1.34534865e-01 + sys_corr_76: -1.56308459e-01 + sys_corr_77: -1.60834193e-01 + sys_corr_78: 2.08479845e-01 + sys_corr_79: 4.47070996e-01 + sys_corr_80: 2.36433146e-01 + sys_corr_81: 3.94839137e-01 + sys_corr_82: 5.00451833e-02 + sys_corr_83: 6.48478944e-01 + sys_corr_84: -3.73632698e+00 + sys_corr_85: 2.52606390e+00 + sys_corr_86: 3.76430794e-01 + sys_corr_87: -8.24601383e-02 + sys_corr_88: 2.42406278e-01 + sys_corr_89: -3.43068706e-02 + sys_corr_90: 9.26609581e-01 + sys_corr_91: 4.34294185e+00 + sys_corr_92: -4.21007509e-01 + sys_corr_93: -4.72355896e-01 + sys_corr_94: 2.30573218e-01 + sys_corr_95: 3.07225163e-01 + sys_corr_96: 1.98069362e-01 + sys_corr_97: -2.81788625e-01 + sys_corr_98: -3.65753224e-01 + sys_corr_99: -4.74894956e-01 + sys_corr_100: -7.10523327e-01 + sys_corr_101: -1.27096583e+00 + sys_corr_102: 2.03935637e-01 + sys_corr_103: -5.55800234e-01 + sys_corr_104: -2.22908333e+00 + sys_corr_105: -1.39227130e+00 + sys_corr_106: -9.23814917e-01 + sys_corr_107: -1.59998616e+00 + sys_corr_108: 1.13998216e+00 + sys_corr_109: 3.55274690e-01 + sys_corr_110: -9.17783650e-01 + sys_corr_111: 7.68453064e-01 + sys_corr_112: 7.17303997e-01 + sys_corr_113: 8.85285794e-01 + sys_corr_114: -8.24739604e-04 + sys_corr_115: 1.58373448e+00 + sys_corr_116: -1.31884768e+00 + sys_corr_117: 5.30797261e+01 + sys_corr_118: 6.42840554e-01 + sys_corr_119: -2.81994756e-02 + sys_corr_120: -7.94145529e-01 + sys_corr_121: 1.26216628e-02 + sys_corr_122: 9.96402322e-01 + sys_corr_123: 2.57882821e-01 + sys_corr_124: 4.16796488e+00 + sys_corr_125: -1.95726811e+00 + sys_corr_126: 5.52717753e-02 + sys_corr_127: -3.82194063e-01 + sys_corr_128: 6.37229015e-02 + sys_corr_129: -2.87782261e-01 + sys_corr_130: -5.25119022e-02 + sys_corr_131: -2.05951723e+00 + sys_corr_132: 1.74395940e-01 stat: 0.0 - luminosity: 14.348884000000002 -- sys_corr_1: 2.9692836852927416 - sys_corr_2: 3.402454656846707 - sys_corr_3: -3.6388347412609474 - sys_corr_4: 0.115408644946304 - sys_corr_5: -3.5673826746226736 - sys_corr_6: 0.5255200461173075 - sys_corr_7: 0.061362698988419055 - sys_corr_8: -0.517296577643455 - sys_corr_9: -1.4238919364680218 - sys_corr_10: -0.15149929112944732 - sys_corr_11: -0.3567373946369759 - sys_corr_12: -0.07325476197806288 - sys_corr_13: 0.4375492884122911 - sys_corr_14: 0.1531120486029411 - sys_corr_15: 0.15259739371075423 - sys_corr_16: 0.21946951107681506 - sys_corr_17: -0.4567574994842595 - sys_corr_18: -0.1728834431621951 - sys_corr_19: -0.040797957539410616 - sys_corr_20: 0.43147933001038175 - sys_corr_21: -0.031318481317755074 - sys_corr_22: 1.3824409332604124 - sys_corr_23: 0.01891165537882461 - sys_corr_24: -0.9558617205139044 - sys_corr_25: -0.5488396860735657 - sys_corr_26: -0.583733937358321 - sys_corr_27: 0.3852690004261398 - sys_corr_28: -1.6129000967761207 - sys_corr_29: 0.7452135414688423 - sys_corr_30: 0.09642943457079442 - sys_corr_31: 0.8955271870683185 - sys_corr_32: -0.09639096401101167 - sys_corr_33: 0.19152927822613003 - sys_corr_34: -0.47232152008958667 - sys_corr_35: 0.10941901017732666 - sys_corr_36: -0.0032753697430345577 - sys_corr_37: -0.11883012810886819 - sys_corr_38: -0.14461362085502974 - sys_corr_39: 0.30243328099290034 - sys_corr_40: -0.060696905401612565 - sys_corr_41: 0.3812563878464805 - sys_corr_42: 0.16766978021060405 - sys_corr_43: -0.18659987164091532 - sys_corr_44: 0.19303360879697673 - sys_corr_45: 0.023131936867123937 - sys_corr_46: 0.1597536039981137 - sys_corr_47: 0.3449731177503723 - sys_corr_48: -0.6084170446789602 - sys_corr_49: 0.1313179238061046 - sys_corr_50: -0.1931826406219346 - sys_corr_51: 0.09498207080348846 - sys_corr_52: -0.005673628127575333 - sys_corr_53: -0.14038885963031064 - sys_corr_54: -0.3037270701267274 - sys_corr_55: -0.2595484476830317 - sys_corr_56: -0.2779937113310082 - sys_corr_57: -0.21778469884143536 - sys_corr_58: 0.20406531341439063 - sys_corr_59: 0.1362613619832188 - sys_corr_60: 0.10983121216362954 - sys_corr_61: 0.08018146067043257 - sys_corr_62: 0.30066076396103164 - sys_corr_63: 0.09157660086905421 - sys_corr_64: 0.16505260462514304 - sys_corr_65: 0.25341132460267257 - sys_corr_66: 0.022261883731514564 - sys_corr_67: -0.03088407965153444 - sys_corr_68: -0.12827995750489235 - sys_corr_69: 0.3147045440449338 - sys_corr_70: 0.32970533610380315 - sys_corr_71: -0.13040338054787243 - sys_corr_72: -0.23654633557171859 - sys_corr_73: -0.46185460274964224 - sys_corr_74: 0.15462509270684952 - sys_corr_75: -0.013627455265839765 - sys_corr_76: -0.026044875648047677 - sys_corr_77: -0.06031256060502372 - sys_corr_78: 0.20086504511680242 - sys_corr_79: 0.4803809295103174 - sys_corr_80: 0.14095574594054447 - sys_corr_81: 0.3780964080094625 - sys_corr_82: 0.04011290308725953 - sys_corr_83: 0.492767978508695 - sys_corr_84: -2.8676954202775247 - sys_corr_85: 1.8237643284728442 - sys_corr_86: 0.34125771049240633 - sys_corr_87: -0.08033725246824884 - sys_corr_88: 0.2297889869043055 - sys_corr_89: -0.047979547367907674 - sys_corr_90: 0.7476290113618005 - sys_corr_91: 3.3287171994194065 - sys_corr_92: -0.3092248897435037 - sys_corr_93: -0.2464373388993197 - sys_corr_94: 0.2593615776792171 - sys_corr_95: 0.3379242920155742 - sys_corr_96: 0.2328432946376042 - sys_corr_97: -1.0786154039478915 - sys_corr_98: -0.7711206680048341 - sys_corr_99: 1.5035241113416344 - sys_corr_100: -0.8934873902153516 - sys_corr_101: -2.4733247033370995 - sys_corr_102: 1.610878010307894 - sys_corr_103: -0.3836380019243063 - sys_corr_104: 0.31861472136870017 - sys_corr_105: -1.4370852622922503 - sys_corr_106: -0.879739344310402 - sys_corr_107: -1.7166512740322621 - sys_corr_108: 1.1587343248482675 - sys_corr_109: 0.19039255908976466 - sys_corr_110: -0.645902871123054 - sys_corr_111: 0.7049526087240101 - sys_corr_112: 0.7247322733544267 - sys_corr_113: 0.7199467469369965 - sys_corr_114: 0.00109343447514576 - sys_corr_115: 1.5431111173690357 - sys_corr_116: 3.6563403809179142 - sys_corr_117: -1.1907136142740418 - sys_corr_118: -0.444907838231502 - sys_corr_119: -0.03226058941958942 - sys_corr_120: -46.64981460801855 - sys_corr_121: 0.0534503750207585 - sys_corr_122: 1.7235054127449208 - sys_corr_123: 0.5229802603203335 - sys_corr_124: 2.3236191871428247 - sys_corr_125: -2.623137320422337 - sys_corr_126: 0.1264437699505411 - sys_corr_127: -1.4061457251786047 - sys_corr_128: -0.03988796673439171 - sys_corr_129: -0.28126965865229464 - sys_corr_130: -0.10260031822922434 - sys_corr_131: 2.5936378096062205 - sys_corr_132: 0.027672497141537168 + luminosity: 1.43488840e+01 +- sys_corr_1: 2.96928369e+00 + sys_corr_2: 3.40245466e+00 + sys_corr_3: -3.63883474e+00 + sys_corr_4: 1.15408645e-01 + sys_corr_5: -3.56738267e+00 + sys_corr_6: 5.25520046e-01 + sys_corr_7: 6.13626990e-02 + sys_corr_8: -5.17296578e-01 + sys_corr_9: -1.42389194e+00 + sys_corr_10: -1.51499291e-01 + sys_corr_11: -3.56737395e-01 + sys_corr_12: -7.32547620e-02 + sys_corr_13: 4.37549288e-01 + sys_corr_14: 1.53112049e-01 + sys_corr_15: 1.52597394e-01 + sys_corr_16: 2.19469511e-01 + sys_corr_17: -4.56757499e-01 + sys_corr_18: -1.72883443e-01 + sys_corr_19: -4.07979575e-02 + sys_corr_20: 4.31479330e-01 + sys_corr_21: -3.13184813e-02 + sys_corr_22: 1.38244093e+00 + sys_corr_23: 1.89116554e-02 + sys_corr_24: -9.55861721e-01 + sys_corr_25: -5.48839686e-01 + sys_corr_26: -5.83733937e-01 + sys_corr_27: 3.85269000e-01 + sys_corr_28: -1.61290010e+00 + sys_corr_29: 7.45213541e-01 + sys_corr_30: 9.64294346e-02 + sys_corr_31: 8.95527187e-01 + sys_corr_32: -9.63909640e-02 + sys_corr_33: 1.91529278e-01 + sys_corr_34: -4.72321520e-01 + sys_corr_35: 1.09419010e-01 + sys_corr_36: -3.27536974e-03 + sys_corr_37: -1.18830128e-01 + sys_corr_38: -1.44613621e-01 + sys_corr_39: 3.02433281e-01 + sys_corr_40: -6.06969054e-02 + sys_corr_41: 3.81256388e-01 + sys_corr_42: 1.67669780e-01 + sys_corr_43: -1.86599872e-01 + sys_corr_44: 1.93033609e-01 + sys_corr_45: 2.31319369e-02 + sys_corr_46: 1.59753604e-01 + sys_corr_47: 3.44973118e-01 + sys_corr_48: -6.08417045e-01 + sys_corr_49: 1.31317924e-01 + sys_corr_50: -1.93182641e-01 + sys_corr_51: 9.49820708e-02 + sys_corr_52: -5.67362813e-03 + sys_corr_53: -1.40388860e-01 + sys_corr_54: -3.03727070e-01 + sys_corr_55: -2.59548448e-01 + sys_corr_56: -2.77993711e-01 + sys_corr_57: -2.17784699e-01 + sys_corr_58: 2.04065313e-01 + sys_corr_59: 1.36261362e-01 + sys_corr_60: 1.09831212e-01 + sys_corr_61: 8.01814607e-02 + sys_corr_62: 3.00660764e-01 + sys_corr_63: 9.15766009e-02 + sys_corr_64: 1.65052605e-01 + sys_corr_65: 2.53411325e-01 + sys_corr_66: 2.22618837e-02 + sys_corr_67: -3.08840797e-02 + sys_corr_68: -1.28279958e-01 + sys_corr_69: 3.14704544e-01 + sys_corr_70: 3.29705336e-01 + sys_corr_71: -1.30403381e-01 + sys_corr_72: -2.36546336e-01 + sys_corr_73: -4.61854603e-01 + sys_corr_74: 1.54625093e-01 + sys_corr_75: -1.36274553e-02 + sys_corr_76: -2.60448756e-02 + sys_corr_77: -6.03125606e-02 + sys_corr_78: 2.00865045e-01 + sys_corr_79: 4.80380930e-01 + sys_corr_80: 1.40955746e-01 + sys_corr_81: 3.78096408e-01 + sys_corr_82: 4.01129031e-02 + sys_corr_83: 4.92767979e-01 + sys_corr_84: -2.86769542e+00 + sys_corr_85: 1.82376433e+00 + sys_corr_86: 3.41257710e-01 + sys_corr_87: -8.03372525e-02 + sys_corr_88: 2.29788987e-01 + sys_corr_89: -4.79795474e-02 + sys_corr_90: 7.47629011e-01 + sys_corr_91: 3.32871720e+00 + sys_corr_92: -3.09224890e-01 + sys_corr_93: -2.46437339e-01 + sys_corr_94: 2.59361578e-01 + sys_corr_95: 3.37924292e-01 + sys_corr_96: 2.32843295e-01 + sys_corr_97: -1.07861540e+00 + sys_corr_98: -7.71120668e-01 + sys_corr_99: 1.50352411e+00 + sys_corr_100: -8.93487390e-01 + sys_corr_101: -2.47332470e+00 + sys_corr_102: 1.61087801e+00 + sys_corr_103: -3.83638002e-01 + sys_corr_104: 3.18614721e-01 + sys_corr_105: -1.43708526e+00 + sys_corr_106: -8.79739344e-01 + sys_corr_107: -1.71665127e+00 + sys_corr_108: 1.15873432e+00 + sys_corr_109: 1.90392559e-01 + sys_corr_110: -6.45902871e-01 + sys_corr_111: 7.04952609e-01 + sys_corr_112: 7.24732273e-01 + sys_corr_113: 7.19946747e-01 + sys_corr_114: 1.09343448e-03 + sys_corr_115: 1.54311112e+00 + sys_corr_116: 3.65634038e+00 + sys_corr_117: -1.19071361e+00 + sys_corr_118: -4.44907838e-01 + sys_corr_119: -3.22605894e-02 + sys_corr_120: -4.66498146e+01 + sys_corr_121: 5.34503750e-02 + sys_corr_122: 1.72350541e+00 + sys_corr_123: 5.22980260e-01 + sys_corr_124: 2.32361919e+00 + sys_corr_125: -2.62313732e+00 + sys_corr_126: 1.26443770e-01 + sys_corr_127: -1.40614573e+00 + sys_corr_128: -3.98879667e-02 + sys_corr_129: -2.81269659e-01 + sys_corr_130: -1.02600318e-01 + sys_corr_131: 2.59363781e+00 + sys_corr_132: 2.76724971e-02 stat: 0.0 - luminosity: 11.475156 -- sys_corr_1: 2.036064903727033 - sys_corr_2: 2.488417120820662 - sys_corr_3: -4.721738989609717 - sys_corr_4: -0.25854317476409955 - sys_corr_5: -4.952661973687966 - sys_corr_6: -0.2223328874090614 - sys_corr_7: 0.510836072461933 - sys_corr_8: -0.39597292548774066 - sys_corr_9: -1.0423127086423134 - sys_corr_10: -0.22050134163221383 - sys_corr_11: -0.05094939233693912 - sys_corr_12: -0.1925483107721342 - sys_corr_13: 0.641503178801291 - sys_corr_14: 0.19833938760070774 - sys_corr_15: -0.04547251874489047 - sys_corr_16: 0.6082362027795741 - sys_corr_17: -0.12233016605733867 - sys_corr_18: -0.4470704306545046 - sys_corr_19: -0.13991656248413778 - sys_corr_20: 0.11358472567394845 - sys_corr_21: -0.1371931995264687 - sys_corr_22: 1.0776855221662327 - sys_corr_23: 0.20394030689032175 - sys_corr_24: -1.0786043610697094 - sys_corr_25: -0.3980323747041399 - sys_corr_26: -0.7829924107029553 - sys_corr_27: 0.5994121201308168 - sys_corr_28: -1.2740553338778884 - sys_corr_29: 0.5821766178812313 - sys_corr_30: -0.2228599148228211 - sys_corr_31: 1.1028251912061036 - sys_corr_32: -0.21109556057192613 - sys_corr_33: 0.24594819045392036 - sys_corr_34: -0.3580627630765912 - sys_corr_35: -0.015620300019804745 - sys_corr_36: -0.07474077031022615 - sys_corr_37: -0.11494009730484377 - sys_corr_38: -0.0584203105680854 - sys_corr_39: 0.30674054442340953 - sys_corr_40: -0.16925681256543154 - sys_corr_41: 0.4136794041253051 - sys_corr_42: 0.24484017372183783 - sys_corr_43: -0.14680285139502122 - sys_corr_44: 0.1807182433169295 - sys_corr_45: 0.018594963245359537 - sys_corr_46: 0.01091453571411915 - sys_corr_47: 0.26797142369031846 - sys_corr_48: -0.6009700714119088 - sys_corr_49: 0.16028849110569307 - sys_corr_50: -0.2526614080315716 - sys_corr_51: 0.31724094698242894 - sys_corr_52: -0.11128858207699785 - sys_corr_53: -0.0979701558328849 - sys_corr_54: -0.13514261773227287 - sys_corr_55: -0.25187738415655037 - sys_corr_56: -0.26186868744470576 - sys_corr_57: -0.1330018887839989 - sys_corr_58: 0.11863138941095544 - sys_corr_59: 0.06582701561500526 - sys_corr_60: 0.03858481534350498 - sys_corr_61: 0.1710472506320707 - sys_corr_62: 0.30554294466016396 - sys_corr_63: 0.14687843250429997 - sys_corr_64: 0.13312734950211594 - sys_corr_65: 0.15247443998882537 - sys_corr_66: 0.05573287037259924 - sys_corr_67: -0.09345065097039293 - sys_corr_68: -0.07887296956186192 - sys_corr_69: 0.30090618500155814 - sys_corr_70: 0.21152684571007704 - sys_corr_71: -0.06803876289234466 - sys_corr_72: -0.21264273665318315 - sys_corr_73: -0.48220053103250926 - sys_corr_74: 0.19185120313020296 - sys_corr_75: 0.06926954520810402 - sys_corr_76: 0.0002705846057200113 - sys_corr_77: -0.17133370736803713 - sys_corr_78: 0.272431753859286 - sys_corr_79: 0.4447231213301466 - sys_corr_80: 0.06990700327435584 - sys_corr_81: 0.42001755578113276 - sys_corr_82: -0.12439836908339115 - sys_corr_83: 0.4877460657649672 - sys_corr_84: -2.7218508469602893 - sys_corr_85: 1.6550343118704678 - sys_corr_86: 0.42832253800759673 - sys_corr_87: -0.034042666125162505 - sys_corr_88: 0.30866790730772825 - sys_corr_89: 0.022849772368508107 - sys_corr_90: 0.6768348452103575 - sys_corr_91: 3.1346514577598654 - sys_corr_92: -0.2418411051941276 - sys_corr_93: -0.08899107273151734 - sys_corr_94: -0.007965890606218119 - sys_corr_95: 0.3556799194772249 - sys_corr_96: -0.006785710446666995 - sys_corr_97: -0.6531449027397443 - sys_corr_98: -0.24669171096159753 - sys_corr_99: -0.2973584332290618 - sys_corr_100: -1.923913277202963 - sys_corr_101: -0.5748796183244156 - sys_corr_102: 1.1791014153220796 - sys_corr_103: -0.5941288682227561 - sys_corr_104: -0.6087907356017713 - sys_corr_105: -2.6566534120312877 - sys_corr_106: -1.5041823896637339 - sys_corr_107: -1.977446743924999 - sys_corr_108: 1.2848898955565249 - sys_corr_109: 0.31523300738691445 - sys_corr_110: 1.0877768271730757 - sys_corr_111: 0.8720434885260241 - sys_corr_112: 0.8576033100032653 - sys_corr_113: 0.7570693395773671 - sys_corr_114: 0.0020346346437056487 - sys_corr_115: 1.5656046686443503 - sys_corr_116: 1.6582556614438888 - sys_corr_117: 2.620456565356242 - sys_corr_118: -0.2905026900563152 - sys_corr_119: 0.0017173675073520807 - sys_corr_120: 3.288212194172763 - sys_corr_121: 0.17156809538181322 - sys_corr_122: 3.9375669580042265 - sys_corr_123: 1.3164792676662056 - sys_corr_124: 1.4999227484643733 - sys_corr_125: 3.5484519642907992 - sys_corr_126: 0.3038942678027583 - sys_corr_127: 0.34615512661605397 - sys_corr_128: -0.15508632040899514 - sys_corr_129: -0.33282018678883385 - sys_corr_130: -0.2423821883393316 - sys_corr_131: 39.06944795452806 - sys_corr_132: 1.63076407225576 + luminosity: 1.14751560e+01 +- sys_corr_1: 2.03606490e+00 + sys_corr_2: 2.48841712e+00 + sys_corr_3: -4.72173899e+00 + sys_corr_4: -2.58543175e-01 + sys_corr_5: -4.95266197e+00 + sys_corr_6: -2.22332887e-01 + sys_corr_7: 5.10836072e-01 + sys_corr_8: -3.95972925e-01 + sys_corr_9: -1.04231271e+00 + sys_corr_10: -2.20501342e-01 + sys_corr_11: -5.09493923e-02 + sys_corr_12: -1.92548311e-01 + sys_corr_13: 6.41503179e-01 + sys_corr_14: 1.98339388e-01 + sys_corr_15: -4.54725187e-02 + sys_corr_16: 6.08236203e-01 + sys_corr_17: -1.22330166e-01 + sys_corr_18: -4.47070431e-01 + sys_corr_19: -1.39916562e-01 + sys_corr_20: 1.13584726e-01 + sys_corr_21: -1.37193200e-01 + sys_corr_22: 1.07768552e+00 + sys_corr_23: 2.03940307e-01 + sys_corr_24: -1.07860436e+00 + sys_corr_25: -3.98032375e-01 + sys_corr_26: -7.82992411e-01 + sys_corr_27: 5.99412120e-01 + sys_corr_28: -1.27405533e+00 + sys_corr_29: 5.82176618e-01 + sys_corr_30: -2.22859915e-01 + sys_corr_31: 1.10282519e+00 + sys_corr_32: -2.11095561e-01 + sys_corr_33: 2.45948190e-01 + sys_corr_34: -3.58062763e-01 + sys_corr_35: -1.56203000e-02 + sys_corr_36: -7.47407703e-02 + sys_corr_37: -1.14940097e-01 + sys_corr_38: -5.84203106e-02 + sys_corr_39: 3.06740544e-01 + sys_corr_40: -1.69256813e-01 + sys_corr_41: 4.13679404e-01 + sys_corr_42: 2.44840174e-01 + sys_corr_43: -1.46802851e-01 + sys_corr_44: 1.80718243e-01 + sys_corr_45: 1.85949632e-02 + sys_corr_46: 1.09145357e-02 + sys_corr_47: 2.67971424e-01 + sys_corr_48: -6.00970071e-01 + sys_corr_49: 1.60288491e-01 + sys_corr_50: -2.52661408e-01 + sys_corr_51: 3.17240947e-01 + sys_corr_52: -1.11288582e-01 + sys_corr_53: -9.79701558e-02 + sys_corr_54: -1.35142618e-01 + sys_corr_55: -2.51877384e-01 + sys_corr_56: -2.61868687e-01 + sys_corr_57: -1.33001889e-01 + sys_corr_58: 1.18631389e-01 + sys_corr_59: 6.58270156e-02 + sys_corr_60: 3.85848153e-02 + sys_corr_61: 1.71047251e-01 + sys_corr_62: 3.05542945e-01 + sys_corr_63: 1.46878433e-01 + sys_corr_64: 1.33127350e-01 + sys_corr_65: 1.52474440e-01 + sys_corr_66: 5.57328704e-02 + sys_corr_67: -9.34506510e-02 + sys_corr_68: -7.88729696e-02 + sys_corr_69: 3.00906185e-01 + sys_corr_70: 2.11526846e-01 + sys_corr_71: -6.80387629e-02 + sys_corr_72: -2.12642737e-01 + sys_corr_73: -4.82200531e-01 + sys_corr_74: 1.91851203e-01 + sys_corr_75: 6.92695452e-02 + sys_corr_76: 2.70584606e-04 + sys_corr_77: -1.71333707e-01 + sys_corr_78: 2.72431754e-01 + sys_corr_79: 4.44723121e-01 + sys_corr_80: 6.99070033e-02 + sys_corr_81: 4.20017556e-01 + sys_corr_82: -1.24398369e-01 + sys_corr_83: 4.87746066e-01 + sys_corr_84: -2.72185085e+00 + sys_corr_85: 1.65503431e+00 + sys_corr_86: 4.28322538e-01 + sys_corr_87: -3.40426661e-02 + sys_corr_88: 3.08667907e-01 + sys_corr_89: 2.28497724e-02 + sys_corr_90: 6.76834845e-01 + sys_corr_91: 3.13465146e+00 + sys_corr_92: -2.41841105e-01 + sys_corr_93: -8.89910727e-02 + sys_corr_94: -7.96589061e-03 + sys_corr_95: 3.55679919e-01 + sys_corr_96: -6.78571045e-03 + sys_corr_97: -6.53144903e-01 + sys_corr_98: -2.46691711e-01 + sys_corr_99: -2.97358433e-01 + sys_corr_100: -1.92391328e+00 + sys_corr_101: -5.74879618e-01 + sys_corr_102: 1.17910142e+00 + sys_corr_103: -5.94128868e-01 + sys_corr_104: -6.08790736e-01 + sys_corr_105: -2.65665341e+00 + sys_corr_106: -1.50418239e+00 + sys_corr_107: -1.97744674e+00 + sys_corr_108: 1.28488990e+00 + sys_corr_109: 3.15233007e-01 + sys_corr_110: 1.08777683e+00 + sys_corr_111: 8.72043489e-01 + sys_corr_112: 8.57603310e-01 + sys_corr_113: 7.57069340e-01 + sys_corr_114: 2.03463464e-03 + sys_corr_115: 1.56560467e+00 + sys_corr_116: 1.65825566e+00 + sys_corr_117: 2.62045657e+00 + sys_corr_118: -2.90502690e-01 + sys_corr_119: 1.71736751e-03 + sys_corr_120: 3.28821219e+00 + sys_corr_121: 1.71568095e-01 + sys_corr_122: 3.93756696e+00 + sys_corr_123: 1.31647927e+00 + sys_corr_124: 1.49992275e+00 + sys_corr_125: 3.54845196e+00 + sys_corr_126: 3.03894268e-01 + sys_corr_127: 3.46155127e-01 + sys_corr_128: -1.55086320e-01 + sys_corr_129: -3.32820187e-01 + sys_corr_130: -2.42382188e-01 + sys_corr_131: 3.90694480e+01 + sys_corr_132: 1.63076407e+00 stat: 0.0 - luminosity: 11.739090000000001 -- sys_corr_1: 1.7923334710543466 - sys_corr_2: 2.348417980578816 - sys_corr_3: -4.993849811639793 - sys_corr_4: 0.37655425176055335 - sys_corr_5: -5.465803277218736 - sys_corr_6: -0.5896927343245729 - sys_corr_7: 0.42796382509674036 - sys_corr_8: -0.337445615564508 - sys_corr_9: -0.6141081838551637 - sys_corr_10: -0.12262414031453253 - sys_corr_11: -0.13935848856759261 - sys_corr_12: -0.10376155282023082 - sys_corr_13: 0.5847918042003023 - sys_corr_14: 0.3839810224448604 - sys_corr_15: -0.1227266984391385 - sys_corr_16: 0.2360275916272429 - sys_corr_17: -0.10446555874571885 - sys_corr_18: -0.1326425832590036 - sys_corr_19: -0.5319782892828947 - sys_corr_20: 0.11790643339117408 - sys_corr_21: -0.017997447417811934 - sys_corr_22: 0.9863947496895441 - sys_corr_23: 0.16961235446779607 - sys_corr_24: -1.2913771473181903 - sys_corr_25: -1.1939928785296752 - sys_corr_26: -1.0506387147040193 - sys_corr_27: 0.4209355308062415 - sys_corr_28: -0.7520948283891694 - sys_corr_29: 0.8414058680303415 - sys_corr_30: -0.4762556915516084 - sys_corr_31: 1.4706195931757076 - sys_corr_32: -0.2345314784936675 - sys_corr_33: 0.25322174380737256 - sys_corr_34: -0.5133880433728516 - sys_corr_35: 0.018587696126268836 - sys_corr_36: -0.12216700127791584 - sys_corr_37: 0.017320434812454766 - sys_corr_38: -0.08671235816520617 - sys_corr_39: 0.2366970668443342 - sys_corr_40: -0.23482833675540674 - sys_corr_41: 0.5744006122661429 - sys_corr_42: 0.3952686853271279 - sys_corr_43: -0.18247441253548277 - sys_corr_44: 0.27896127904875984 - sys_corr_45: -0.09227644473396608 - sys_corr_46: 0.011008646404682769 - sys_corr_47: 0.2245655170087489 - sys_corr_48: -0.5725793186236916 - sys_corr_49: 0.23030705401765467 - sys_corr_50: -0.5075365800758899 - sys_corr_51: 0.6603734549251044 - sys_corr_52: -0.23919306759172793 - sys_corr_53: -0.1110734645716919 - sys_corr_54: 0.19555132091889676 - sys_corr_55: -0.3530719100478161 - sys_corr_56: -0.41417122496272174 - sys_corr_57: -0.10354444002774707 - sys_corr_58: 0.20024898001782104 - sys_corr_59: 0.06468327112236481 - sys_corr_60: 0.22041461044658311 - sys_corr_61: 0.24376195185383878 - sys_corr_62: 0.33921234314466103 - sys_corr_63: 0.2625761298117802 - sys_corr_64: 0.19539540584475934 - sys_corr_65: 0.13676945419637812 - sys_corr_66: 0.019774159281924636 - sys_corr_67: -0.056556279113509536 - sys_corr_68: -0.005437615797820636 - sys_corr_69: 0.40469578120646404 - sys_corr_70: 0.2791640672154966 - sys_corr_71: -0.09093999898066663 - sys_corr_72: -0.43325630308860413 - sys_corr_73: -0.5084537965640805 - sys_corr_74: 0.36131730707656085 - sys_corr_75: 0.3067768964684106 - sys_corr_76: 0.06756164709136556 - sys_corr_77: -0.32818077480065255 - sys_corr_78: 0.40008736921466576 - sys_corr_79: 0.49850514678027064 - sys_corr_80: 0.17042554640719404 - sys_corr_81: 0.479132104657875 - sys_corr_82: -0.17647995106267408 - sys_corr_83: 0.5679223630382182 - sys_corr_84: -3.0659005264614425 - sys_corr_85: 1.7871116948521757 - sys_corr_86: 0.5009222924413316 - sys_corr_87: 0.0222093008517552 - sys_corr_88: 0.3371179653975519 - sys_corr_89: 0.05738993748235571 - sys_corr_90: 0.7766461677593279 - sys_corr_91: 3.567344894460436 - sys_corr_92: -0.4019994036572862 - sys_corr_93: -0.20729078857929437 - sys_corr_94: -0.38752302091374463 - sys_corr_95: 0.5222354420552408 - sys_corr_96: 0.05748195040195857 - sys_corr_97: 0.11619402597796087 - sys_corr_98: 0.27400403106422 - sys_corr_99: 0.4110213300698524 - sys_corr_100: 0.3685812798784289 - sys_corr_101: -1.1412046143268315 - sys_corr_102: 0.8929295444649233 - sys_corr_103: -0.6089962517987895 - sys_corr_104: -0.7137984370412717 - sys_corr_105: -1.8566190720031202 - sys_corr_106: -3.3868475548185546 - sys_corr_107: -4.919856533410843 - sys_corr_108: 1.8326092854356355 - sys_corr_109: 0.6933820549005948 - sys_corr_110: 0.3476399200900702 - sys_corr_111: 1.3512979406572412 - sys_corr_112: 0.9242629468496638 - sys_corr_113: 1.4749795252273905 - sys_corr_114: -0.0032283599914749075 - sys_corr_115: 2.5919153369769847 - sys_corr_116: 1.3883498441662383 - sys_corr_117: 1.8276168534941706 - sys_corr_118: 0.7802300558614004 - sys_corr_119: 0.1362513426030609 - sys_corr_120: -2.9564892117896187 - sys_corr_121: 0.41801267427100347 - sys_corr_122: 3.6148703025406728 - sys_corr_123: 3.41940864040134 - sys_corr_124: 1.3153201489038466 - sys_corr_125: 35.97952120574051 - sys_corr_126: 0.9712803108742089 - sys_corr_127: -0.11594489043571302 - sys_corr_128: -0.15018022858901545 - sys_corr_129: -0.14571145560259452 - sys_corr_130: -0.37325031183600965 - sys_corr_131: -4.7932782503993945 - sys_corr_132: 0.5638050830471122 + luminosity: 1.17390900e+01 +- sys_corr_1: 1.79233347e+00 + sys_corr_2: 2.34841798e+00 + sys_corr_3: -4.99384981e+00 + sys_corr_4: 3.76554252e-01 + sys_corr_5: -5.46580328e+00 + sys_corr_6: -5.89692734e-01 + sys_corr_7: 4.27963825e-01 + sys_corr_8: -3.37445616e-01 + sys_corr_9: -6.14108184e-01 + sys_corr_10: -1.22624140e-01 + sys_corr_11: -1.39358489e-01 + sys_corr_12: -1.03761553e-01 + sys_corr_13: 5.84791804e-01 + sys_corr_14: 3.83981022e-01 + sys_corr_15: -1.22726698e-01 + sys_corr_16: 2.36027592e-01 + sys_corr_17: -1.04465559e-01 + sys_corr_18: -1.32642583e-01 + sys_corr_19: -5.31978289e-01 + sys_corr_20: 1.17906433e-01 + sys_corr_21: -1.79974474e-02 + sys_corr_22: 9.86394750e-01 + sys_corr_23: 1.69612354e-01 + sys_corr_24: -1.29137715e+00 + sys_corr_25: -1.19399288e+00 + sys_corr_26: -1.05063871e+00 + sys_corr_27: 4.20935531e-01 + sys_corr_28: -7.52094828e-01 + sys_corr_29: 8.41405868e-01 + sys_corr_30: -4.76255692e-01 + sys_corr_31: 1.47061959e+00 + sys_corr_32: -2.34531478e-01 + sys_corr_33: 2.53221744e-01 + sys_corr_34: -5.13388043e-01 + sys_corr_35: 1.85876961e-02 + sys_corr_36: -1.22167001e-01 + sys_corr_37: 1.73204348e-02 + sys_corr_38: -8.67123582e-02 + sys_corr_39: 2.36697067e-01 + sys_corr_40: -2.34828337e-01 + sys_corr_41: 5.74400612e-01 + sys_corr_42: 3.95268685e-01 + sys_corr_43: -1.82474413e-01 + sys_corr_44: 2.78961279e-01 + sys_corr_45: -9.22764447e-02 + sys_corr_46: 1.10086464e-02 + sys_corr_47: 2.24565517e-01 + sys_corr_48: -5.72579319e-01 + sys_corr_49: 2.30307054e-01 + sys_corr_50: -5.07536580e-01 + sys_corr_51: 6.60373455e-01 + sys_corr_52: -2.39193068e-01 + sys_corr_53: -1.11073465e-01 + sys_corr_54: 1.95551321e-01 + sys_corr_55: -3.53071910e-01 + sys_corr_56: -4.14171225e-01 + sys_corr_57: -1.03544440e-01 + sys_corr_58: 2.00248980e-01 + sys_corr_59: 6.46832711e-02 + sys_corr_60: 2.20414610e-01 + sys_corr_61: 2.43761952e-01 + sys_corr_62: 3.39212343e-01 + sys_corr_63: 2.62576130e-01 + sys_corr_64: 1.95395406e-01 + sys_corr_65: 1.36769454e-01 + sys_corr_66: 1.97741593e-02 + sys_corr_67: -5.65562791e-02 + sys_corr_68: -5.43761580e-03 + sys_corr_69: 4.04695781e-01 + sys_corr_70: 2.79164067e-01 + sys_corr_71: -9.09399990e-02 + sys_corr_72: -4.33256303e-01 + sys_corr_73: -5.08453797e-01 + sys_corr_74: 3.61317307e-01 + sys_corr_75: 3.06776896e-01 + sys_corr_76: 6.75616471e-02 + sys_corr_77: -3.28180775e-01 + sys_corr_78: 4.00087369e-01 + sys_corr_79: 4.98505147e-01 + sys_corr_80: 1.70425546e-01 + sys_corr_81: 4.79132105e-01 + sys_corr_82: -1.76479951e-01 + sys_corr_83: 5.67922363e-01 + sys_corr_84: -3.06590053e+00 + sys_corr_85: 1.78711169e+00 + sys_corr_86: 5.00922292e-01 + sys_corr_87: 2.22093009e-02 + sys_corr_88: 3.37117965e-01 + sys_corr_89: 5.73899375e-02 + sys_corr_90: 7.76646168e-01 + sys_corr_91: 3.56734489e+00 + sys_corr_92: -4.01999404e-01 + sys_corr_93: -2.07290789e-01 + sys_corr_94: -3.87523021e-01 + sys_corr_95: 5.22235442e-01 + sys_corr_96: 5.74819504e-02 + sys_corr_97: 1.16194026e-01 + sys_corr_98: 2.74004031e-01 + sys_corr_99: 4.11021330e-01 + sys_corr_100: 3.68581280e-01 + sys_corr_101: -1.14120461e+00 + sys_corr_102: 8.92929544e-01 + sys_corr_103: -6.08996252e-01 + sys_corr_104: -7.13798437e-01 + sys_corr_105: -1.85661907e+00 + sys_corr_106: -3.38684755e+00 + sys_corr_107: -4.91985653e+00 + sys_corr_108: 1.83260929e+00 + sys_corr_109: 6.93382055e-01 + sys_corr_110: 3.47639920e-01 + sys_corr_111: 1.35129794e+00 + sys_corr_112: 9.24262947e-01 + sys_corr_113: 1.47497953e+00 + sys_corr_114: -3.22835999e-03 + sys_corr_115: 2.59191534e+00 + sys_corr_116: 1.38834984e+00 + sys_corr_117: 1.82761685e+00 + sys_corr_118: 7.80230056e-01 + sys_corr_119: 1.36251343e-01 + sys_corr_120: -2.95648921e+00 + sys_corr_121: 4.18012674e-01 + sys_corr_122: 3.61487030e+00 + sys_corr_123: 3.41940864e+00 + sys_corr_124: 1.31532015e+00 + sys_corr_125: 3.59795212e+01 + sys_corr_126: 9.71280311e-01 + sys_corr_127: -1.15944890e-01 + sys_corr_128: -1.50180229e-01 + sys_corr_129: -1.45711456e-01 + sys_corr_130: -3.73250312e-01 + sys_corr_131: -4.79327825e+00 + sys_corr_132: 5.63805083e-01 stat: 0.0 - luminosity: 11.594990000000001 -- sys_corr_1: 2.667311885284818 - sys_corr_2: 2.4611156823907008 - sys_corr_3: -3.594831696853629 - sys_corr_4: 2.1057524527034572 - sys_corr_5: -4.039667174002368 - sys_corr_6: -0.7893921191876635 - sys_corr_7: 0.07934460724218514 - sys_corr_8: -0.20888388026426827 - sys_corr_9: 0.03821718255953834 - sys_corr_10: 0.08006110191144375 - sys_corr_11: 0.35131332274568955 - sys_corr_12: 0.3436052865567995 - sys_corr_13: 0.15241221989442408 - sys_corr_14: 0.017007009867805626 - sys_corr_15: 0.202662059829087 - sys_corr_16: 0.46980639518996964 - sys_corr_17: 0.01842747150066345 - sys_corr_18: -0.6024855670360691 - sys_corr_19: 0.07489935782849794 - sys_corr_20: 0.07698771402671237 - sys_corr_21: 0.12542087716175856 - sys_corr_22: 0.5536182135743286 - sys_corr_23: 0.04962020227903995 - sys_corr_24: -1.51899123478324 - sys_corr_25: -1.1658159544917297 - sys_corr_26: -2.1085936751246663 - sys_corr_27: -0.36852535277014115 - sys_corr_28: 0.1776518119097857 - sys_corr_29: 1.3283304912603504 - sys_corr_30: -0.9584771117854285 - sys_corr_31: 2.0350929595781655 - sys_corr_32: -0.34248209264514534 - sys_corr_33: 0.36435503575074674 - sys_corr_34: -0.5600475058213401 - sys_corr_35: -0.1292517873966085 - sys_corr_36: -0.26515882107162836 - sys_corr_37: 0.11008684472679053 - sys_corr_38: -0.0511939699171501 - sys_corr_39: 0.306633263740397 - sys_corr_40: -0.25025194997203365 - sys_corr_41: 0.7570063187057533 - sys_corr_42: 0.48814557495625066 - sys_corr_43: -0.15372827478897616 - sys_corr_44: 0.5267211749216053 - sys_corr_45: -0.2239338057066728 - sys_corr_46: -0.1696671189214286 - sys_corr_47: -0.058945639382950395 - sys_corr_48: -0.3215374049453013 - sys_corr_49: 0.3323687560542337 - sys_corr_50: -1.0754521366758993 - sys_corr_51: 1.3127367686797466 - sys_corr_52: -0.5544025254029304 - sys_corr_53: -0.13279725224144692 - sys_corr_54: 0.6198532285520606 - sys_corr_55: -0.4090915062242333 - sys_corr_56: -0.7136456721733522 - sys_corr_57: -0.10919947790568388 - sys_corr_58: 0.27046359381417195 - sys_corr_59: 0.08406632767449727 - sys_corr_60: 0.42865066932037243 - sys_corr_61: 0.316774889768726 - sys_corr_62: 0.40150897402381586 - sys_corr_63: 0.3360685497243664 - sys_corr_64: 0.18178553751763754 - sys_corr_65: -0.008520955292217861 - sys_corr_66: -0.0010483233567575802 - sys_corr_67: 0.17525224086758848 - sys_corr_68: 0.033273636357936405 - sys_corr_69: 0.42889533403695107 - sys_corr_70: 0.2481343198524555 - sys_corr_71: -0.13615341119703175 - sys_corr_72: -0.35165836992048827 - sys_corr_73: -0.6082346045541315 - sys_corr_74: 0.6177989102244061 - sys_corr_75: 0.5092847120703764 - sys_corr_76: 0.1602351108786397 - sys_corr_77: -0.6322154339547698 - sys_corr_78: 0.6038565122058356 - sys_corr_79: 0.6466119955725227 - sys_corr_80: -0.04360714961921877 - sys_corr_81: 0.6275963176246913 - sys_corr_82: -0.15789700361135978 - sys_corr_83: 0.6258044833282731 - sys_corr_84: -2.9689674166130753 - sys_corr_85: 1.4701271259978037 - sys_corr_86: 0.5754148353565873 - sys_corr_87: 0.10119288305856838 - sys_corr_88: 0.40960078499233327 - sys_corr_89: 0.04135057767219217 - sys_corr_90: 0.7698999919565501 - sys_corr_91: 3.4938767226015175 - sys_corr_92: -0.29169267552365924 - sys_corr_93: -0.4648178933861826 - sys_corr_94: -0.8805435682260252 - sys_corr_95: 0.7887322320754018 - sys_corr_96: 0.15698981700566086 - sys_corr_97: 0.975453642125135 - sys_corr_98: 0.7321746480664825 - sys_corr_99: 0.782713971869152 - sys_corr_100: -1.0639507436222768 - sys_corr_101: -1.8749794557698531 - sys_corr_102: 1.3689338933588056 - sys_corr_103: -0.9456990509083054 - sys_corr_104: -1.5984598840237463 - sys_corr_105: -3.315573708914267 - sys_corr_106: -1.7082568124042767 - sys_corr_107: -5.506057360739507 - sys_corr_108: 4.6998046773443285 - sys_corr_109: 1.0172110469779128 - sys_corr_110: 0.6379315089110011 - sys_corr_111: 4.516593098455759 - sys_corr_112: 1.8929226695082932 - sys_corr_113: 2.3078336041342418 - sys_corr_114: -0.04658504907632649 - sys_corr_115: 2.9551843482319833 - sys_corr_116: 0.7132516794267785 - sys_corr_117: 1.2438776538300444 - sys_corr_118: 1.8425773871481381 - sys_corr_119: 0.5742346718448164 - sys_corr_120: -1.495241101723147 - sys_corr_121: 1.6155524282393277 - sys_corr_122: -27.467260107052812 - sys_corr_123: 10.121842204101144 - sys_corr_124: 0.9078585912245193 - sys_corr_125: 1.4049235794952997 - sys_corr_126: 4.609716910937167 - sys_corr_127: -0.1617325750960411 - sys_corr_128: -1.682393174848455 - sys_corr_129: 0.3182821053411769 - sys_corr_130: -1.323752498840208 - sys_corr_131: 3.213087740080387 - sys_corr_132: -0.12678495327269418 + luminosity: 1.15949900e+01 +- sys_corr_1: 2.66731189e+00 + sys_corr_2: 2.46111568e+00 + sys_corr_3: -3.59483170e+00 + sys_corr_4: 2.10575245e+00 + sys_corr_5: -4.03966717e+00 + sys_corr_6: -7.89392119e-01 + sys_corr_7: 7.93446072e-02 + sys_corr_8: -2.08883880e-01 + sys_corr_9: 3.82171826e-02 + sys_corr_10: 8.00611019e-02 + sys_corr_11: 3.51313323e-01 + sys_corr_12: 3.43605287e-01 + sys_corr_13: 1.52412220e-01 + sys_corr_14: 1.70070099e-02 + sys_corr_15: 2.02662060e-01 + sys_corr_16: 4.69806395e-01 + sys_corr_17: 1.84274715e-02 + sys_corr_18: -6.02485567e-01 + sys_corr_19: 7.48993578e-02 + sys_corr_20: 7.69877140e-02 + sys_corr_21: 1.25420877e-01 + sys_corr_22: 5.53618214e-01 + sys_corr_23: 4.96202023e-02 + sys_corr_24: -1.51899123e+00 + sys_corr_25: -1.16581595e+00 + sys_corr_26: -2.10859368e+00 + sys_corr_27: -3.68525353e-01 + sys_corr_28: 1.77651812e-01 + sys_corr_29: 1.32833049e+00 + sys_corr_30: -9.58477112e-01 + sys_corr_31: 2.03509296e+00 + sys_corr_32: -3.42482093e-01 + sys_corr_33: 3.64355036e-01 + sys_corr_34: -5.60047506e-01 + sys_corr_35: -1.29251787e-01 + sys_corr_36: -2.65158821e-01 + sys_corr_37: 1.10086845e-01 + sys_corr_38: -5.11939699e-02 + sys_corr_39: 3.06633264e-01 + sys_corr_40: -2.50251950e-01 + sys_corr_41: 7.57006319e-01 + sys_corr_42: 4.88145575e-01 + sys_corr_43: -1.53728275e-01 + sys_corr_44: 5.26721175e-01 + sys_corr_45: -2.23933806e-01 + sys_corr_46: -1.69667119e-01 + sys_corr_47: -5.89456394e-02 + sys_corr_48: -3.21537405e-01 + sys_corr_49: 3.32368756e-01 + sys_corr_50: -1.07545214e+00 + sys_corr_51: 1.31273677e+00 + sys_corr_52: -5.54402525e-01 + sys_corr_53: -1.32797252e-01 + sys_corr_54: 6.19853229e-01 + sys_corr_55: -4.09091506e-01 + sys_corr_56: -7.13645672e-01 + sys_corr_57: -1.09199478e-01 + sys_corr_58: 2.70463594e-01 + sys_corr_59: 8.40663277e-02 + sys_corr_60: 4.28650669e-01 + sys_corr_61: 3.16774890e-01 + sys_corr_62: 4.01508974e-01 + sys_corr_63: 3.36068550e-01 + sys_corr_64: 1.81785538e-01 + sys_corr_65: -8.52095529e-03 + sys_corr_66: -1.04832336e-03 + sys_corr_67: 1.75252241e-01 + sys_corr_68: 3.32736364e-02 + sys_corr_69: 4.28895334e-01 + sys_corr_70: 2.48134320e-01 + sys_corr_71: -1.36153411e-01 + sys_corr_72: -3.51658370e-01 + sys_corr_73: -6.08234605e-01 + sys_corr_74: 6.17798910e-01 + sys_corr_75: 5.09284712e-01 + sys_corr_76: 1.60235111e-01 + sys_corr_77: -6.32215434e-01 + sys_corr_78: 6.03856512e-01 + sys_corr_79: 6.46611996e-01 + sys_corr_80: -4.36071496e-02 + sys_corr_81: 6.27596318e-01 + sys_corr_82: -1.57897004e-01 + sys_corr_83: 6.25804483e-01 + sys_corr_84: -2.96896742e+00 + sys_corr_85: 1.47012713e+00 + sys_corr_86: 5.75414835e-01 + sys_corr_87: 1.01192883e-01 + sys_corr_88: 4.09600785e-01 + sys_corr_89: 4.13505777e-02 + sys_corr_90: 7.69899992e-01 + sys_corr_91: 3.49387672e+00 + sys_corr_92: -2.91692676e-01 + sys_corr_93: -4.64817893e-01 + sys_corr_94: -8.80543568e-01 + sys_corr_95: 7.88732232e-01 + sys_corr_96: 1.56989817e-01 + sys_corr_97: 9.75453642e-01 + sys_corr_98: 7.32174648e-01 + sys_corr_99: 7.82713972e-01 + sys_corr_100: -1.06395074e+00 + sys_corr_101: -1.87497946e+00 + sys_corr_102: 1.36893389e+00 + sys_corr_103: -9.45699051e-01 + sys_corr_104: -1.59845988e+00 + sys_corr_105: -3.31557371e+00 + sys_corr_106: -1.70825681e+00 + sys_corr_107: -5.50605736e+00 + sys_corr_108: 4.69980468e+00 + sys_corr_109: 1.01721105e+00 + sys_corr_110: 6.37931509e-01 + sys_corr_111: 4.51659310e+00 + sys_corr_112: 1.89292267e+00 + sys_corr_113: 2.30783360e+00 + sys_corr_114: -4.65850491e-02 + sys_corr_115: 2.95518435e+00 + sys_corr_116: 7.13251679e-01 + sys_corr_117: 1.24387765e+00 + sys_corr_118: 1.84257739e+00 + sys_corr_119: 5.74234672e-01 + sys_corr_120: -1.49524110e+00 + sys_corr_121: 1.61555243e+00 + sys_corr_122: -2.74672601e+01 + sys_corr_123: 1.01218422e+01 + sys_corr_124: 9.07858591e-01 + sys_corr_125: 1.40492358e+00 + sys_corr_126: 4.60971691e+00 + sys_corr_127: -1.61732575e-01 + sys_corr_128: -1.68239317e+00 + sys_corr_129: 3.18282105e-01 + sys_corr_130: -1.32375250e+00 + sys_corr_131: 3.21308774e+00 + sys_corr_132: -1.26784953e-01 stat: 0.0 - luminosity: 10.468546000000002 -- sys_corr_1: 1.9793337306878955 - sys_corr_2: 2.068635921044144 - sys_corr_3: -2.414715669653532 - sys_corr_4: 2.747984875686236 - sys_corr_5: -2.979158758016024 - sys_corr_6: -1.1439821753377928 - sys_corr_7: -0.1779508534473466 - sys_corr_8: -0.1375997715077386 - sys_corr_9: 0.45293723483362086 - sys_corr_10: 0.36729425223175644 - sys_corr_11: 0.41371104001059394 - sys_corr_12: 0.5197762835458662 - sys_corr_13: -0.12773603282344348 - sys_corr_14: 0.3888613745927246 - sys_corr_15: 0.15795354312606685 - sys_corr_16: 0.4146080658892085 - sys_corr_17: 0.28947078711100066 - sys_corr_18: -0.38455207490275994 - sys_corr_19: -0.8103187394568931 - sys_corr_20: 0.2052282869707847 - sys_corr_21: -0.039677379170125524 - sys_corr_22: 0.38730921256552053 - sys_corr_23: -0.2810196620950905 - sys_corr_24: -1.4528111044313077 - sys_corr_25: -1.0614234422846942 - sys_corr_26: -2.3850618357672224 - sys_corr_27: -0.31778847078494626 - sys_corr_28: 0.6251476657542366 - sys_corr_29: 1.3016607020556088 - sys_corr_30: -1.3057356399987436 - sys_corr_31: 2.0031219016944988 - sys_corr_32: -0.4217192043405787 - sys_corr_33: 0.39169848634907883 - sys_corr_34: -0.5648163311025423 - sys_corr_35: -0.07482171228118349 - sys_corr_36: -0.2723024627234142 - sys_corr_37: 0.24722050818517058 - sys_corr_38: 0.031354592758670405 - sys_corr_39: 0.3082508901367304 - sys_corr_40: -0.2188062450428029 - sys_corr_41: 0.7377887545044813 - sys_corr_42: 0.4683798945150819 - sys_corr_43: -0.06457071006292972 - sys_corr_44: 0.5226751969564061 - sys_corr_45: -0.3479942679915254 - sys_corr_46: -0.1413778472281524 - sys_corr_47: -0.13834920669337974 - sys_corr_48: -0.232506744204837 - sys_corr_49: 0.399518201022035 - sys_corr_50: -1.216203970398089 - sys_corr_51: 1.464834395508975 - sys_corr_52: -0.6898970508852121 - sys_corr_53: -0.1344955173557208 - sys_corr_54: 0.8286008654064878 - sys_corr_55: -0.36177010250128233 - sys_corr_56: -0.6892250924564504 - sys_corr_57: -0.08583871935589235 - sys_corr_58: 0.1784370833832695 - sys_corr_59: 0.08843252729109248 - sys_corr_60: 0.4953911689723062 - sys_corr_61: 0.4122295118954217 - sys_corr_62: 0.3936957731854257 - sys_corr_63: 0.3929732588937346 - sys_corr_64: 0.1277051440062508 - sys_corr_65: -0.10920394295540219 - sys_corr_66: -0.09270765119089695 - sys_corr_67: 0.20382564065594888 - sys_corr_68: 0.10763798649438608 - sys_corr_69: 0.421152159669002 - sys_corr_70: 0.2282725503424445 - sys_corr_71: -0.20211022891780372 - sys_corr_72: -0.397355675086304 - sys_corr_73: -0.4274828339684258 - sys_corr_74: 0.6558268945093989 - sys_corr_75: 0.6475819577857826 - sys_corr_76: 0.2770928040972131 - sys_corr_77: -0.7047458770975896 - sys_corr_78: 0.6141769616361027 - sys_corr_79: 0.48469085513058785 - sys_corr_80: -0.00841637352908791 - sys_corr_81: 0.6142600938771062 - sys_corr_82: -0.23170379924137435 - sys_corr_83: 0.4918691667565413 - sys_corr_84: -2.2926851023322468 - sys_corr_85: 0.9609246748895061 - sys_corr_86: 0.4990796922702524 - sys_corr_87: 0.06490841417940597 - sys_corr_88: 0.34882499593510063 - sys_corr_89: -0.03351140515009179 - sys_corr_90: 0.7133575021571854 - sys_corr_91: 2.8368793863410433 - sys_corr_92: -0.2834719698796144 - sys_corr_93: -0.482393566689829 - sys_corr_94: -0.9575348424059268 - sys_corr_95: 0.8548166953738344 - sys_corr_96: 0.10306810270302097 - sys_corr_97: 0.9685869430453139 - sys_corr_98: 0.7983512955420945 - sys_corr_99: 0.8233502760344874 - sys_corr_100: -1.3106113190390638 - sys_corr_101: -1.9512604867318746 - sys_corr_102: 1.3527083345016766 - sys_corr_103: -1.0382228585368856 - sys_corr_104: -1.8132641635256124 - sys_corr_105: -3.316719132656662 - sys_corr_106: -2.386751868680412 - sys_corr_107: -5.481767946585963 - sys_corr_108: 5.7539594200727295 - sys_corr_109: 4.134545949263371 - sys_corr_110: 0.5330051221693841 - sys_corr_111: 2.0663004382971475 - sys_corr_112: 2.8298414356360677 - sys_corr_113: 2.18622491388006 - sys_corr_114: -0.10649299316005048 - sys_corr_115: 3.711834372295962 - sys_corr_116: 0.23376905503141285 - sys_corr_117: 0.7640617274338205 - sys_corr_118: 1.6154990628937584 - sys_corr_119: 1.4281551481564103 - sys_corr_120: -1.1231173648580306 - sys_corr_121: 4.197910655730508 - sys_corr_122: -6.384557872425062 - sys_corr_123: -21.998479526194192 - sys_corr_124: 0.6049547451934078 - sys_corr_125: 3.765428181236722 - sys_corr_126: 9.17108970934509 - sys_corr_127: -0.15936107351415432 - sys_corr_128: -0.9247881932751035 - sys_corr_129: 0.12799608712202676 - sys_corr_130: -1.1321761290561245 - sys_corr_131: 1.7583781231464273 - sys_corr_132: 0.42226746508429586 + luminosity: 1.04685460e+01 +- sys_corr_1: 1.97933373e+00 + sys_corr_2: 2.06863592e+00 + sys_corr_3: -2.41471567e+00 + sys_corr_4: 2.74798488e+00 + sys_corr_5: -2.97915876e+00 + sys_corr_6: -1.14398218e+00 + sys_corr_7: -1.77950853e-01 + sys_corr_8: -1.37599772e-01 + sys_corr_9: 4.52937235e-01 + sys_corr_10: 3.67294252e-01 + sys_corr_11: 4.13711040e-01 + sys_corr_12: 5.19776284e-01 + sys_corr_13: -1.27736033e-01 + sys_corr_14: 3.88861375e-01 + sys_corr_15: 1.57953543e-01 + sys_corr_16: 4.14608066e-01 + sys_corr_17: 2.89470787e-01 + sys_corr_18: -3.84552075e-01 + sys_corr_19: -8.10318739e-01 + sys_corr_20: 2.05228287e-01 + sys_corr_21: -3.96773792e-02 + sys_corr_22: 3.87309213e-01 + sys_corr_23: -2.81019662e-01 + sys_corr_24: -1.45281110e+00 + sys_corr_25: -1.06142344e+00 + sys_corr_26: -2.38506184e+00 + sys_corr_27: -3.17788471e-01 + sys_corr_28: 6.25147666e-01 + sys_corr_29: 1.30166070e+00 + sys_corr_30: -1.30573564e+00 + sys_corr_31: 2.00312190e+00 + sys_corr_32: -4.21719204e-01 + sys_corr_33: 3.91698486e-01 + sys_corr_34: -5.64816331e-01 + sys_corr_35: -7.48217123e-02 + sys_corr_36: -2.72302463e-01 + sys_corr_37: 2.47220508e-01 + sys_corr_38: 3.13545928e-02 + sys_corr_39: 3.08250890e-01 + sys_corr_40: -2.18806245e-01 + sys_corr_41: 7.37788755e-01 + sys_corr_42: 4.68379895e-01 + sys_corr_43: -6.45707101e-02 + sys_corr_44: 5.22675197e-01 + sys_corr_45: -3.47994268e-01 + sys_corr_46: -1.41377847e-01 + sys_corr_47: -1.38349207e-01 + sys_corr_48: -2.32506744e-01 + sys_corr_49: 3.99518201e-01 + sys_corr_50: -1.21620397e+00 + sys_corr_51: 1.46483440e+00 + sys_corr_52: -6.89897051e-01 + sys_corr_53: -1.34495517e-01 + sys_corr_54: 8.28600865e-01 + sys_corr_55: -3.61770103e-01 + sys_corr_56: -6.89225092e-01 + sys_corr_57: -8.58387194e-02 + sys_corr_58: 1.78437083e-01 + sys_corr_59: 8.84325273e-02 + sys_corr_60: 4.95391169e-01 + sys_corr_61: 4.12229512e-01 + sys_corr_62: 3.93695773e-01 + sys_corr_63: 3.92973259e-01 + sys_corr_64: 1.27705144e-01 + sys_corr_65: -1.09203943e-01 + sys_corr_66: -9.27076512e-02 + sys_corr_67: 2.03825641e-01 + sys_corr_68: 1.07637986e-01 + sys_corr_69: 4.21152160e-01 + sys_corr_70: 2.28272550e-01 + sys_corr_71: -2.02110229e-01 + sys_corr_72: -3.97355675e-01 + sys_corr_73: -4.27482834e-01 + sys_corr_74: 6.55826895e-01 + sys_corr_75: 6.47581958e-01 + sys_corr_76: 2.77092804e-01 + sys_corr_77: -7.04745877e-01 + sys_corr_78: 6.14176962e-01 + sys_corr_79: 4.84690855e-01 + sys_corr_80: -8.41637353e-03 + sys_corr_81: 6.14260094e-01 + sys_corr_82: -2.31703799e-01 + sys_corr_83: 4.91869167e-01 + sys_corr_84: -2.29268510e+00 + sys_corr_85: 9.60924675e-01 + sys_corr_86: 4.99079692e-01 + sys_corr_87: 6.49084142e-02 + sys_corr_88: 3.48824996e-01 + sys_corr_89: -3.35114052e-02 + sys_corr_90: 7.13357502e-01 + sys_corr_91: 2.83687939e+00 + sys_corr_92: -2.83471970e-01 + sys_corr_93: -4.82393567e-01 + sys_corr_94: -9.57534842e-01 + sys_corr_95: 8.54816695e-01 + sys_corr_96: 1.03068103e-01 + sys_corr_97: 9.68586943e-01 + sys_corr_98: 7.98351296e-01 + sys_corr_99: 8.23350276e-01 + sys_corr_100: -1.31061132e+00 + sys_corr_101: -1.95126049e+00 + sys_corr_102: 1.35270833e+00 + sys_corr_103: -1.03822286e+00 + sys_corr_104: -1.81326416e+00 + sys_corr_105: -3.31671913e+00 + sys_corr_106: -2.38675187e+00 + sys_corr_107: -5.48176795e+00 + sys_corr_108: 5.75395942e+00 + sys_corr_109: 4.13454595e+00 + sys_corr_110: 5.33005122e-01 + sys_corr_111: 2.06630044e+00 + sys_corr_112: 2.82984144e+00 + sys_corr_113: 2.18622491e+00 + sys_corr_114: -1.06492993e-01 + sys_corr_115: 3.71183437e+00 + sys_corr_116: 2.33769055e-01 + sys_corr_117: 7.64061727e-01 + sys_corr_118: 1.61549906e+00 + sys_corr_119: 1.42815515e+00 + sys_corr_120: -1.12311736e+00 + sys_corr_121: 4.19791066e+00 + sys_corr_122: -6.38455787e+00 + sys_corr_123: -2.19984795e+01 + sys_corr_124: 6.04954745e-01 + sys_corr_125: 3.76542818e+00 + sys_corr_126: 9.17108971e+00 + sys_corr_127: -1.59361074e-01 + sys_corr_128: -9.24788193e-01 + sys_corr_129: 1.27996087e-01 + sys_corr_130: -1.13217613e+00 + sys_corr_131: 1.75837812e+00 + sys_corr_132: 4.22267465e-01 stat: 0.0 luminosity: 7.112402 -- sys_corr_1: 1.213150616840563 - sys_corr_2: 1.4364553622586687 - sys_corr_3: -2.3306063850018823 - sys_corr_4: 2.5485576458066803 - sys_corr_5: -2.5788846320644767 - sys_corr_6: -1.1521105316213978 - sys_corr_7: -0.06863791399565476 - sys_corr_8: -0.10302433989042285 - sys_corr_9: 0.4928839101926853 - sys_corr_10: 0.19937664366881494 - sys_corr_11: 0.3921169192672145 - sys_corr_12: 0.5251097216601023 - sys_corr_13: -0.22453304927426498 - sys_corr_14: 0.09826754740212261 - sys_corr_15: 0.2985531315374004 - sys_corr_16: 0.26562811507841616 - sys_corr_17: 0.17870035768274342 - sys_corr_18: -0.22263820918458074 - sys_corr_19: 0.04353221526393575 - sys_corr_20: 0.2673300817537363 - sys_corr_21: 0.5621267703047772 - sys_corr_22: 0.31159167724443176 - sys_corr_23: 0.21751363449990138 - sys_corr_24: -1.4833282881363785 - sys_corr_25: -1.551022082195798 - sys_corr_26: -2.155094489039078 - sys_corr_27: -0.5475335654238023 - sys_corr_28: 0.940062200736424 - sys_corr_29: 1.1697138828297056 - sys_corr_30: -1.4329011836030938 - sys_corr_31: 1.8408576916348829 - sys_corr_32: -0.3423583896808235 - sys_corr_33: 0.3772961777282347 - sys_corr_34: -0.4869173689676084 - sys_corr_35: -0.2423048528413276 - sys_corr_36: -0.28995755890227737 - sys_corr_37: 0.35205840651911874 - sys_corr_38: 0.008681788906949922 - sys_corr_39: 0.23194792423746685 - sys_corr_40: -0.2625983180195708 - sys_corr_41: 0.6700180456379052 - sys_corr_42: 0.46492827701260026 - sys_corr_43: -0.07118333594860625 - sys_corr_44: 0.5154008748410218 - sys_corr_45: -0.3369803095477311 - sys_corr_46: -0.12851626195821514 - sys_corr_47: -0.15188838690496925 - sys_corr_48: -0.16300896631538983 - sys_corr_49: 0.4051930490269691 - sys_corr_50: -1.1692395310511858 - sys_corr_51: 1.4489126759539692 - sys_corr_52: -0.6008965210991237 - sys_corr_53: -0.18147138233506555 - sys_corr_54: 0.8901043233830779 - sys_corr_55: -0.39375647754760656 - sys_corr_56: -0.5208042438549341 - sys_corr_57: -0.11982561131240616 - sys_corr_58: 0.11229307907265598 - sys_corr_59: -0.02267664830045355 - sys_corr_60: 0.42007209612215235 - sys_corr_61: 0.5380554891202627 - sys_corr_62: 0.32211480251733615 - sys_corr_63: 0.2895394335714445 - sys_corr_64: 0.10134040159623255 - sys_corr_65: -0.20268910428371237 - sys_corr_66: 0.014430284351431226 - sys_corr_67: 0.1589137864944637 - sys_corr_68: 0.08461339215872929 - sys_corr_69: 0.44557643732638147 - sys_corr_70: 0.14919333358785491 - sys_corr_71: -0.15622283979000975 - sys_corr_72: -0.5415613588554515 - sys_corr_73: -0.338597532192724 - sys_corr_74: 0.7279599847324127 - sys_corr_75: 0.6406360523875108 - sys_corr_76: 0.237778823964419 - sys_corr_77: -0.6474602648376359 - sys_corr_78: 0.5764348513780416 - sys_corr_79: 0.49331661618860984 - sys_corr_80: -0.06298564474889634 - sys_corr_81: 0.5486685626451815 - sys_corr_82: -0.22987284090548898 - sys_corr_83: 0.4670433741894564 - sys_corr_84: -2.240856520267434 - sys_corr_85: 0.9635142588973721 - sys_corr_86: 0.5695357559545735 - sys_corr_87: 0.1254369084394656 - sys_corr_88: 0.34674635406123416 - sys_corr_89: 0.010478311831008254 - sys_corr_90: 0.6065679071631387 - sys_corr_91: 2.6294212633470484 - sys_corr_92: -0.10894084158923636 - sys_corr_93: -0.48093198488704475 - sys_corr_94: -0.9050217012934663 - sys_corr_95: 0.8323606190286608 - sys_corr_96: 0.12574297497941567 - sys_corr_97: 0.8588733812248374 - sys_corr_98: 0.7341798056025926 - sys_corr_99: 0.7397582290157834 - sys_corr_100: -1.336650323017789 - sys_corr_101: -1.9995622545875122 - sys_corr_102: 1.2711468586813992 - sys_corr_103: -0.9970077119888441 - sys_corr_104: -1.752922421922429 - sys_corr_105: -3.1185738007013626 - sys_corr_106: -2.3988732479629475 - sys_corr_107: -4.947511318006119 - sys_corr_108: 3.7652710121287787 - sys_corr_109: 1.442659980782967 - sys_corr_110: 0.5015709705805176 - sys_corr_111: 2.4435633325934862 - sys_corr_112: 3.798497939777664 - sys_corr_113: 5.035649687415772 - sys_corr_114: -0.15681500919499405 - sys_corr_115: 3.649074658077214 - sys_corr_116: 0.10721491481401581 - sys_corr_117: 0.6460346334112225 - sys_corr_118: 1.6085482196038183 - sys_corr_119: 2.8502474911130586 - sys_corr_120: -0.980343959456233 - sys_corr_121: 5.493957735160918 - sys_corr_122: -7.240742861871443 - sys_corr_123: -5.451570678415753 - sys_corr_124: 0.5067207777738753 - sys_corr_125: 2.974178779079935 - sys_corr_126: -16.970746032795457 - sys_corr_127: -0.11121945771815851 - sys_corr_128: -1.0024350822410384 - sys_corr_129: 1.1678051659867554 - sys_corr_130: 8.699781362017559 - sys_corr_131: 1.5845736608486671 - sys_corr_132: -0.2879853540688069 +- sys_corr_1: 1.21315062e+00 + sys_corr_2: 1.43645536e+00 + sys_corr_3: -2.33060639e+00 + sys_corr_4: 2.54855765e+00 + sys_corr_5: -2.57888463e+00 + sys_corr_6: -1.15211053e+00 + sys_corr_7: -6.86379140e-02 + sys_corr_8: -1.03024340e-01 + sys_corr_9: 4.92883910e-01 + sys_corr_10: 1.99376644e-01 + sys_corr_11: 3.92116919e-01 + sys_corr_12: 5.25109722e-01 + sys_corr_13: -2.24533049e-01 + sys_corr_14: 9.82675474e-02 + sys_corr_15: 2.98553132e-01 + sys_corr_16: 2.65628115e-01 + sys_corr_17: 1.78700358e-01 + sys_corr_18: -2.22638209e-01 + sys_corr_19: 4.35322153e-02 + sys_corr_20: 2.67330082e-01 + sys_corr_21: 5.62126770e-01 + sys_corr_22: 3.11591677e-01 + sys_corr_23: 2.17513634e-01 + sys_corr_24: -1.48332829e+00 + sys_corr_25: -1.55102208e+00 + sys_corr_26: -2.15509449e+00 + sys_corr_27: -5.47533565e-01 + sys_corr_28: 9.40062201e-01 + sys_corr_29: 1.16971388e+00 + sys_corr_30: -1.43290118e+00 + sys_corr_31: 1.84085769e+00 + sys_corr_32: -3.42358390e-01 + sys_corr_33: 3.77296178e-01 + sys_corr_34: -4.86917369e-01 + sys_corr_35: -2.42304853e-01 + sys_corr_36: -2.89957559e-01 + sys_corr_37: 3.52058407e-01 + sys_corr_38: 8.68178891e-03 + sys_corr_39: 2.31947924e-01 + sys_corr_40: -2.62598318e-01 + sys_corr_41: 6.70018046e-01 + sys_corr_42: 4.64928277e-01 + sys_corr_43: -7.11833359e-02 + sys_corr_44: 5.15400875e-01 + sys_corr_45: -3.36980310e-01 + sys_corr_46: -1.28516262e-01 + sys_corr_47: -1.51888387e-01 + sys_corr_48: -1.63008966e-01 + sys_corr_49: 4.05193049e-01 + sys_corr_50: -1.16923953e+00 + sys_corr_51: 1.44891268e+00 + sys_corr_52: -6.00896521e-01 + sys_corr_53: -1.81471382e-01 + sys_corr_54: 8.90104323e-01 + sys_corr_55: -3.93756478e-01 + sys_corr_56: -5.20804244e-01 + sys_corr_57: -1.19825611e-01 + sys_corr_58: 1.12293079e-01 + sys_corr_59: -2.26766483e-02 + sys_corr_60: 4.20072096e-01 + sys_corr_61: 5.38055489e-01 + sys_corr_62: 3.22114803e-01 + sys_corr_63: 2.89539434e-01 + sys_corr_64: 1.01340402e-01 + sys_corr_65: -2.02689104e-01 + sys_corr_66: 1.44302844e-02 + sys_corr_67: 1.58913786e-01 + sys_corr_68: 8.46133922e-02 + sys_corr_69: 4.45576437e-01 + sys_corr_70: 1.49193334e-01 + sys_corr_71: -1.56222840e-01 + sys_corr_72: -5.41561359e-01 + sys_corr_73: -3.38597532e-01 + sys_corr_74: 7.27959985e-01 + sys_corr_75: 6.40636052e-01 + sys_corr_76: 2.37778824e-01 + sys_corr_77: -6.47460265e-01 + sys_corr_78: 5.76434851e-01 + sys_corr_79: 4.93316616e-01 + sys_corr_80: -6.29856447e-02 + sys_corr_81: 5.48668563e-01 + sys_corr_82: -2.29872841e-01 + sys_corr_83: 4.67043374e-01 + sys_corr_84: -2.24085652e+00 + sys_corr_85: 9.63514259e-01 + sys_corr_86: 5.69535756e-01 + sys_corr_87: 1.25436908e-01 + sys_corr_88: 3.46746354e-01 + sys_corr_89: 1.04783118e-02 + sys_corr_90: 6.06567907e-01 + sys_corr_91: 2.62942126e+00 + sys_corr_92: -1.08940842e-01 + sys_corr_93: -4.80931985e-01 + sys_corr_94: -9.05021701e-01 + sys_corr_95: 8.32360619e-01 + sys_corr_96: 1.25742975e-01 + sys_corr_97: 8.58873381e-01 + sys_corr_98: 7.34179806e-01 + sys_corr_99: 7.39758229e-01 + sys_corr_100: -1.33665032e+00 + sys_corr_101: -1.99956225e+00 + sys_corr_102: 1.27114686e+00 + sys_corr_103: -9.97007712e-01 + sys_corr_104: -1.75292242e+00 + sys_corr_105: -3.11857380e+00 + sys_corr_106: -2.39887325e+00 + sys_corr_107: -4.94751132e+00 + sys_corr_108: 3.76527101e+00 + sys_corr_109: 1.44265998e+00 + sys_corr_110: 5.01570971e-01 + sys_corr_111: 2.44356333e+00 + sys_corr_112: 3.79849794e+00 + sys_corr_113: 5.03564969e+00 + sys_corr_114: -1.56815009e-01 + sys_corr_115: 3.64907466e+00 + sys_corr_116: 1.07214915e-01 + sys_corr_117: 6.46034633e-01 + sys_corr_118: 1.60854822e+00 + sys_corr_119: 2.85024749e+00 + sys_corr_120: -9.80343959e-01 + sys_corr_121: 5.49395774e+00 + sys_corr_122: -7.24074286e+00 + sys_corr_123: -5.45157068e+00 + sys_corr_124: 5.06720778e-01 + sys_corr_125: 2.97417878e+00 + sys_corr_126: -1.69707460e+01 + sys_corr_127: -1.11219458e-01 + sys_corr_128: -1.00243508e+00 + sys_corr_129: 1.16780517e+00 + sys_corr_130: 8.69978136e+00 + sys_corr_131: 1.58457366e+00 + sys_corr_132: -2.87985354e-01 stat: 0.0 luminosity: 5.42245 -- sys_corr_1: 0.6762086865106022 - sys_corr_2: 0.4482336700280998 - sys_corr_3: -1.534102323343461 - sys_corr_4: 2.0082827676156474 - sys_corr_5: -2.1760680478141436 - sys_corr_6: -1.3222040476920216 - sys_corr_7: -0.09773504092161651 - sys_corr_8: -0.012585480764205771 - sys_corr_9: 0.38594932511707114 - sys_corr_10: 0.27388068586213554 - sys_corr_11: 0.05620286815666094 - sys_corr_12: -0.10662933930423636 - sys_corr_13: 0.10748168647088986 - sys_corr_14: -0.01041404203437891 - sys_corr_15: 0.14101446254497355 - sys_corr_16: 0.42543717822456945 - sys_corr_17: 0.020276662810517834 - sys_corr_18: -0.21555247626215163 - sys_corr_19: -0.34409190988136584 - sys_corr_20: 0.09055786172080295 - sys_corr_21: -0.09672574471080794 - sys_corr_22: 0.47037005041359636 - sys_corr_23: -1.0199300520805934 - sys_corr_24: -0.7086595468457993 - sys_corr_25: -1.6521334130445442 - sys_corr_26: -1.4755433495236014 - sys_corr_27: -1.2022297576972993 - sys_corr_28: 1.0835146073145079 - sys_corr_29: 0.4387004281553687 - sys_corr_30: -0.750434166217266 - sys_corr_31: 1.6056987525371835 - sys_corr_32: -0.3282541585868706 - sys_corr_33: 0.35035552072888393 - sys_corr_34: -0.326519979549533 - sys_corr_35: -0.14356826293464325 - sys_corr_36: -0.09930081387508442 - sys_corr_37: 0.44207267434669756 - sys_corr_38: 0.05347268727427511 - sys_corr_39: 0.11892932260441082 - sys_corr_40: -0.17706704260770487 - sys_corr_41: 0.5265197325488147 - sys_corr_42: 0.3091831414672372 - sys_corr_43: 0.015997333040632982 - sys_corr_44: 0.5652670776697365 - sys_corr_45: -0.2898118139429351 - sys_corr_46: -0.08879059924604564 - sys_corr_47: -0.19852979344502064 - sys_corr_48: -0.12400157664715943 - sys_corr_49: 0.44486934812328705 - sys_corr_50: -0.9628634000869484 - sys_corr_51: 1.2518715565676608 - sys_corr_52: -0.4957627238531823 - sys_corr_53: -0.08883267735396964 - sys_corr_54: 0.7795724553127802 - sys_corr_55: -0.3788394127834401 - sys_corr_56: -0.6270344668809931 - sys_corr_57: 0.049213011877094114 - sys_corr_58: 0.16752505221576988 - sys_corr_59: 0.03809804211536108 - sys_corr_60: 0.3524979785860921 - sys_corr_61: 0.40867388411349426 - sys_corr_62: 0.34794683226404655 - sys_corr_63: 0.30009886175508405 - sys_corr_64: 0.05885850778949045 - sys_corr_65: -0.09179922577586883 - sys_corr_66: -0.05187248380101363 - sys_corr_67: 0.10667942669851825 - sys_corr_68: -0.01984163529909921 - sys_corr_69: 0.41569874634380777 - sys_corr_70: 0.17887132816251966 - sys_corr_71: -0.12697761561607537 - sys_corr_72: -0.35968314239590043 - sys_corr_73: -0.3337357168271069 - sys_corr_74: 0.60298764514738 - sys_corr_75: 0.5682112692515464 - sys_corr_76: 0.16884868631519337 - sys_corr_77: -0.5522099838436685 - sys_corr_78: 0.4982341836526984 - sys_corr_79: 0.5190292506167439 - sys_corr_80: 0.02839637630267366 - sys_corr_81: 0.44644140095774787 - sys_corr_82: -0.22262353585504763 - sys_corr_83: 0.44308699833830245 - sys_corr_84: -1.665399841737328 - sys_corr_85: 0.6803230557666252 - sys_corr_86: 0.3735389019053077 - sys_corr_87: 0.01074631924194717 - sys_corr_88: 0.29112986152108017 - sys_corr_89: 0.019917005157971023 - sys_corr_90: 0.44599906169579706 - sys_corr_91: 2.0423269246263374 - sys_corr_92: -0.1236253565532951 - sys_corr_93: -0.4027813511412766 - sys_corr_94: -0.8060379982600199 - sys_corr_95: 0.7177926650029891 - sys_corr_96: 0.06670302885833382 - sys_corr_97: 0.6517091160910786 - sys_corr_98: 0.5473819475534158 - sys_corr_99: 0.5066283916268284 - sys_corr_100: -0.9203722491819821 - sys_corr_101: -1.4182362418747534 - sys_corr_102: 0.7437063090896299 - sys_corr_103: -0.7663583833657472 - sys_corr_104: -1.124634917604222 - sys_corr_105: -2.4005928229425257 - sys_corr_106: -1.8285283672573427 - sys_corr_107: -3.819831610305335 - sys_corr_108: 2.8365950566346037 - sys_corr_109: 1.0628016669461933 - sys_corr_110: 0.4369189730577953 - sys_corr_111: 1.8507142327645192 - sys_corr_112: 1.1436073853317137 - sys_corr_113: 0.6345584846981563 - sys_corr_114: -0.2362325188461816 - sys_corr_115: 6.0995981530030665 - sys_corr_116: -0.38699972772256974 - sys_corr_117: 0.3729609929582257 - sys_corr_118: 1.9234800237765295 - sys_corr_119: 5.497352634746962 - sys_corr_120: -0.7042188104914913 - sys_corr_121: -15.739891126186183 - sys_corr_122: -5.010709147989704 - sys_corr_123: -5.030544152637597 - sys_corr_124: 0.5263383962435745 - sys_corr_125: 2.2093011233594715 - sys_corr_126: -2.80343303313328 - sys_corr_127: -0.04591714687181854 - sys_corr_128: -0.8407441073535981 - sys_corr_129: 0.6269366723133136 - sys_corr_130: -0.38549324048608746 - sys_corr_131: 1.1721002315800069 - sys_corr_132: 0.5187140653011632 +- sys_corr_1: 6.76208687e-01 + sys_corr_2: 4.48233670e-01 + sys_corr_3: -1.53410232e+00 + sys_corr_4: 2.00828277e+00 + sys_corr_5: -2.17606805e+00 + sys_corr_6: -1.32220405e+00 + sys_corr_7: -9.77350409e-02 + sys_corr_8: -1.25854808e-02 + sys_corr_9: 3.85949325e-01 + sys_corr_10: 2.73880686e-01 + sys_corr_11: 5.62028682e-02 + sys_corr_12: -1.06629339e-01 + sys_corr_13: 1.07481686e-01 + sys_corr_14: -1.04140420e-02 + sys_corr_15: 1.41014463e-01 + sys_corr_16: 4.25437178e-01 + sys_corr_17: 2.02766628e-02 + sys_corr_18: -2.15552476e-01 + sys_corr_19: -3.44091910e-01 + sys_corr_20: 9.05578617e-02 + sys_corr_21: -9.67257447e-02 + sys_corr_22: 4.70370050e-01 + sys_corr_23: -1.01993005e+00 + sys_corr_24: -7.08659547e-01 + sys_corr_25: -1.65213341e+00 + sys_corr_26: -1.47554335e+00 + sys_corr_27: -1.20222976e+00 + sys_corr_28: 1.08351461e+00 + sys_corr_29: 4.38700428e-01 + sys_corr_30: -7.50434166e-01 + sys_corr_31: 1.60569875e+00 + sys_corr_32: -3.28254159e-01 + sys_corr_33: 3.50355521e-01 + sys_corr_34: -3.26519980e-01 + sys_corr_35: -1.43568263e-01 + sys_corr_36: -9.93008139e-02 + sys_corr_37: 4.42072674e-01 + sys_corr_38: 5.34726873e-02 + sys_corr_39: 1.18929323e-01 + sys_corr_40: -1.77067043e-01 + sys_corr_41: 5.26519733e-01 + sys_corr_42: 3.09183141e-01 + sys_corr_43: 1.59973330e-02 + sys_corr_44: 5.65267078e-01 + sys_corr_45: -2.89811814e-01 + sys_corr_46: -8.87905992e-02 + sys_corr_47: -1.98529793e-01 + sys_corr_48: -1.24001577e-01 + sys_corr_49: 4.44869348e-01 + sys_corr_50: -9.62863400e-01 + sys_corr_51: 1.25187156e+00 + sys_corr_52: -4.95762724e-01 + sys_corr_53: -8.88326774e-02 + sys_corr_54: 7.79572455e-01 + sys_corr_55: -3.78839413e-01 + sys_corr_56: -6.27034467e-01 + sys_corr_57: 4.92130119e-02 + sys_corr_58: 1.67525052e-01 + sys_corr_59: 3.80980421e-02 + sys_corr_60: 3.52497979e-01 + sys_corr_61: 4.08673884e-01 + sys_corr_62: 3.47946832e-01 + sys_corr_63: 3.00098862e-01 + sys_corr_64: 5.88585078e-02 + sys_corr_65: -9.17992258e-02 + sys_corr_66: -5.18724838e-02 + sys_corr_67: 1.06679427e-01 + sys_corr_68: -1.98416353e-02 + sys_corr_69: 4.15698746e-01 + sys_corr_70: 1.78871328e-01 + sys_corr_71: -1.26977616e-01 + sys_corr_72: -3.59683142e-01 + sys_corr_73: -3.33735717e-01 + sys_corr_74: 6.02987645e-01 + sys_corr_75: 5.68211269e-01 + sys_corr_76: 1.68848686e-01 + sys_corr_77: -5.52209984e-01 + sys_corr_78: 4.98234184e-01 + sys_corr_79: 5.19029251e-01 + sys_corr_80: 2.83963763e-02 + sys_corr_81: 4.46441401e-01 + sys_corr_82: -2.22623536e-01 + sys_corr_83: 4.43086998e-01 + sys_corr_84: -1.66539984e+00 + sys_corr_85: 6.80323056e-01 + sys_corr_86: 3.73538902e-01 + sys_corr_87: 1.07463192e-02 + sys_corr_88: 2.91129862e-01 + sys_corr_89: 1.99170052e-02 + sys_corr_90: 4.45999062e-01 + sys_corr_91: 2.04232692e+00 + sys_corr_92: -1.23625357e-01 + sys_corr_93: -4.02781351e-01 + sys_corr_94: -8.06037998e-01 + sys_corr_95: 7.17792665e-01 + sys_corr_96: 6.67030289e-02 + sys_corr_97: 6.51709116e-01 + sys_corr_98: 5.47381948e-01 + sys_corr_99: 5.06628392e-01 + sys_corr_100: -9.20372249e-01 + sys_corr_101: -1.41823624e+00 + sys_corr_102: 7.43706309e-01 + sys_corr_103: -7.66358383e-01 + sys_corr_104: -1.12463492e+00 + sys_corr_105: -2.40059282e+00 + sys_corr_106: -1.82852837e+00 + sys_corr_107: -3.81983161e+00 + sys_corr_108: 2.83659506e+00 + sys_corr_109: 1.06280167e+00 + sys_corr_110: 4.36918973e-01 + sys_corr_111: 1.85071423e+00 + sys_corr_112: 1.14360739e+00 + sys_corr_113: 6.34558485e-01 + sys_corr_114: -2.36232519e-01 + sys_corr_115: 6.09959815e+00 + sys_corr_116: -3.86999728e-01 + sys_corr_117: 3.72960993e-01 + sys_corr_118: 1.92348002e+00 + sys_corr_119: 5.49735263e+00 + sys_corr_120: -7.04218810e-01 + sys_corr_121: -1.57398911e+01 + sys_corr_122: -5.01070915e+00 + sys_corr_123: -5.03054415e+00 + sys_corr_124: 5.26338396e-01 + sys_corr_125: 2.20930112e+00 + sys_corr_126: -2.80343303e+00 + sys_corr_127: -4.59171469e-02 + sys_corr_128: -8.40744107e-01 + sys_corr_129: 6.26936672e-01 + sys_corr_130: -3.85493240e-01 + sys_corr_131: 1.17210023e+00 + sys_corr_132: 5.18714065e-01 stat: 0.0 - luminosity: 3.3334180000000004 -- sys_corr_1: 1.0429116850959372 - sys_corr_2: -0.20521449652737295 - sys_corr_3: -0.7307645723268853 - sys_corr_4: 3.1419743046198323 - sys_corr_5: -0.537464845601674 - sys_corr_6: -1.4111700925788264 - sys_corr_7: 0.11816113624123625 - sys_corr_8: 0.09432357546256799 - sys_corr_9: 0.38019263980987483 - sys_corr_10: 0.38066849817444987 - sys_corr_11: 0.24539924461116108 - sys_corr_12: -0.09022386283833862 - sys_corr_13: 0.20524796660541905 - sys_corr_14: -0.06458368028593352 - sys_corr_15: 0.07185997093764403 - sys_corr_16: 0.3323937781552659 - sys_corr_17: 0.30493683139807454 - sys_corr_18: -0.27889846818753283 - sys_corr_19: -0.6509040448294162 - sys_corr_20: -0.2062187524968525 - sys_corr_21: -0.08380203309247214 - sys_corr_22: 0.017837247761393782 - sys_corr_23: 0.6367290275025465 - sys_corr_24: -1.2590354816919953 - sys_corr_25: -0.4057666973963445 - sys_corr_26: -1.848832516811884 - sys_corr_27: -0.8477767082675599 - sys_corr_28: 1.4804066112609462 - sys_corr_29: 1.3278179606574911 - sys_corr_30: -0.8218386440756333 - sys_corr_31: 1.288088999064085 - sys_corr_32: -0.18810513244132684 - sys_corr_33: 0.26620192608368615 - sys_corr_34: -0.43229213948341294 - sys_corr_35: -0.13424881662683377 - sys_corr_36: -0.3330443208795374 - sys_corr_37: 0.38473636548684914 - sys_corr_38: 0.11118779779170851 - sys_corr_39: 0.10569976827630885 - sys_corr_40: -0.06869649716984332 - sys_corr_41: 0.3322445949701714 - sys_corr_42: 0.2435770326255665 - sys_corr_43: 0.045874582264192915 - sys_corr_44: 0.5193099348609774 - sys_corr_45: -0.4355175258738525 - sys_corr_46: -0.14347713934712508 - sys_corr_47: -0.16841127859335228 - sys_corr_48: 0.2204570866106594 - sys_corr_49: 0.13200116282170343 - sys_corr_50: -1.1118059568065515 - sys_corr_51: 1.1893037851833164 - sys_corr_52: -0.639571158206885 - sys_corr_53: -0.27535323288531677 - sys_corr_54: 0.5855052643719895 - sys_corr_55: -0.47683717652931656 - sys_corr_56: -0.3292117437259256 - sys_corr_57: -0.13916728572191042 - sys_corr_58: 0.2589346447600525 - sys_corr_59: -0.04737335493310481 - sys_corr_60: 0.20715496070941944 - sys_corr_61: 0.35965945712846603 - sys_corr_62: 0.4164629076438385 - sys_corr_63: 0.12833429356333895 - sys_corr_64: 0.06034602994637022 - sys_corr_65: 0.021330178976926795 - sys_corr_66: -0.3646938401540185 - sys_corr_67: 0.4093276073522643 - sys_corr_68: 0.04454446617863361 - sys_corr_69: 0.4305255808964636 - sys_corr_70: 0.3454125834677343 - sys_corr_71: 0.0018718667086782494 - sys_corr_72: -0.3915904842063822 - sys_corr_73: -0.6348148475248255 - sys_corr_74: 0.6325467631472189 - sys_corr_75: 0.554527641583686 - sys_corr_76: -0.05862545144837653 - sys_corr_77: -0.5177418438428731 - sys_corr_78: 0.505592328806274 - sys_corr_79: 0.49280530828524005 - sys_corr_80: 0.2607140114744855 - sys_corr_81: 0.45407510856056477 - sys_corr_82: -0.313890096507037 - sys_corr_83: 0.4409932269492397 - sys_corr_84: -1.6560075044755416 - sys_corr_85: 0.553580503301748 - sys_corr_86: 0.4196118661294612 - sys_corr_87: -0.1628001889293548 - sys_corr_88: 0.2916550723920565 - sys_corr_89: 0.07292384348315531 - sys_corr_90: 0.3661166604271947 - sys_corr_91: 1.9478965819324627 - sys_corr_92: -0.21963418295099202 - sys_corr_93: -0.44444024802322646 - sys_corr_94: -1.3296421534776597 - sys_corr_95: 0.6772482215757392 - sys_corr_96: 0.07811321038010857 - sys_corr_97: 1.0838138076888832 - sys_corr_98: 0.6867570634114036 - sys_corr_99: 0.7357268868715682 - sys_corr_100: -1.0274106008020336 - sys_corr_101: -1.6403461445652898 - sys_corr_102: 0.8369794861303692 - sys_corr_103: -0.6213765009361776 - sys_corr_104: -1.4610740927936121 - sys_corr_105: -2.588021414472457 - sys_corr_106: -2.0001820052529715 - sys_corr_107: -4.265236100694938 - sys_corr_108: 3.508847140086666 - sys_corr_109: 1.5800050049069272 - sys_corr_110: 0.5502777886122181 - sys_corr_111: 2.2013716253103537 - sys_corr_112: 1.7201008305827359 - sys_corr_113: 2.1030629802013725 - sys_corr_114: -0.82381328533302 - sys_corr_115: 1.7696378133763424 - sys_corr_116: 0.04040249659255478 - sys_corr_117: 0.32978392497366044 - sys_corr_118: 2.59807945035503 - sys_corr_119: -12.668543146384078 - sys_corr_120: -0.6370224084648303 - sys_corr_121: -4.648164569548272 - sys_corr_122: -5.560767558496683 - sys_corr_123: -5.29772696579656 - sys_corr_124: 0.19822612461132574 - sys_corr_125: 2.3922163906829166 - sys_corr_126: -4.362415653483191 - sys_corr_127: -0.069791633480277 - sys_corr_128: -0.871107258281442 - sys_corr_129: 0.16279134030178063 - sys_corr_130: -0.17822928551849726 - sys_corr_131: 1.0193707892530794 - sys_corr_132: 3.105570510349486 + luminosity: 3.33341800e+00 +- sys_corr_1: 1.04291169e+00 + sys_corr_2: -2.05214497e-01 + sys_corr_3: -7.30764572e-01 + sys_corr_4: 3.14197430e+00 + sys_corr_5: -5.37464846e-01 + sys_corr_6: -1.41117009e+00 + sys_corr_7: 1.18161136e-01 + sys_corr_8: 9.43235755e-02 + sys_corr_9: 3.80192640e-01 + sys_corr_10: 3.80668498e-01 + sys_corr_11: 2.45399245e-01 + sys_corr_12: -9.02238628e-02 + sys_corr_13: 2.05247967e-01 + sys_corr_14: -6.45836803e-02 + sys_corr_15: 7.18599709e-02 + sys_corr_16: 3.32393778e-01 + sys_corr_17: 3.04936831e-01 + sys_corr_18: -2.78898468e-01 + sys_corr_19: -6.50904045e-01 + sys_corr_20: -2.06218752e-01 + sys_corr_21: -8.38020331e-02 + sys_corr_22: 1.78372478e-02 + sys_corr_23: 6.36729028e-01 + sys_corr_24: -1.25903548e+00 + sys_corr_25: -4.05766697e-01 + sys_corr_26: -1.84883252e+00 + sys_corr_27: -8.47776708e-01 + sys_corr_28: 1.48040661e+00 + sys_corr_29: 1.32781796e+00 + sys_corr_30: -8.21838644e-01 + sys_corr_31: 1.28808900e+00 + sys_corr_32: -1.88105132e-01 + sys_corr_33: 2.66201926e-01 + sys_corr_34: -4.32292139e-01 + sys_corr_35: -1.34248817e-01 + sys_corr_36: -3.33044321e-01 + sys_corr_37: 3.84736365e-01 + sys_corr_38: 1.11187798e-01 + sys_corr_39: 1.05699768e-01 + sys_corr_40: -6.86964972e-02 + sys_corr_41: 3.32244595e-01 + sys_corr_42: 2.43577033e-01 + sys_corr_43: 4.58745823e-02 + sys_corr_44: 5.19309935e-01 + sys_corr_45: -4.35517526e-01 + sys_corr_46: -1.43477139e-01 + sys_corr_47: -1.68411279e-01 + sys_corr_48: 2.20457087e-01 + sys_corr_49: 1.32001163e-01 + sys_corr_50: -1.11180596e+00 + sys_corr_51: 1.18930379e+00 + sys_corr_52: -6.39571158e-01 + sys_corr_53: -2.75353233e-01 + sys_corr_54: 5.85505264e-01 + sys_corr_55: -4.76837177e-01 + sys_corr_56: -3.29211744e-01 + sys_corr_57: -1.39167286e-01 + sys_corr_58: 2.58934645e-01 + sys_corr_59: -4.73733549e-02 + sys_corr_60: 2.07154961e-01 + sys_corr_61: 3.59659457e-01 + sys_corr_62: 4.16462908e-01 + sys_corr_63: 1.28334294e-01 + sys_corr_64: 6.03460299e-02 + sys_corr_65: 2.13301790e-02 + sys_corr_66: -3.64693840e-01 + sys_corr_67: 4.09327607e-01 + sys_corr_68: 4.45444662e-02 + sys_corr_69: 4.30525581e-01 + sys_corr_70: 3.45412583e-01 + sys_corr_71: 1.87186671e-03 + sys_corr_72: -3.91590484e-01 + sys_corr_73: -6.34814848e-01 + sys_corr_74: 6.32546763e-01 + sys_corr_75: 5.54527642e-01 + sys_corr_76: -5.86254514e-02 + sys_corr_77: -5.17741844e-01 + sys_corr_78: 5.05592329e-01 + sys_corr_79: 4.92805308e-01 + sys_corr_80: 2.60714011e-01 + sys_corr_81: 4.54075109e-01 + sys_corr_82: -3.13890097e-01 + sys_corr_83: 4.40993227e-01 + sys_corr_84: -1.65600750e+00 + sys_corr_85: 5.53580503e-01 + sys_corr_86: 4.19611866e-01 + sys_corr_87: -1.62800189e-01 + sys_corr_88: 2.91655072e-01 + sys_corr_89: 7.29238435e-02 + sys_corr_90: 3.66116660e-01 + sys_corr_91: 1.94789658e+00 + sys_corr_92: -2.19634183e-01 + sys_corr_93: -4.44440248e-01 + sys_corr_94: -1.32964215e+00 + sys_corr_95: 6.77248222e-01 + sys_corr_96: 7.81132104e-02 + sys_corr_97: 1.08381381e+00 + sys_corr_98: 6.86757063e-01 + sys_corr_99: 7.35726887e-01 + sys_corr_100: -1.02741060e+00 + sys_corr_101: -1.64034614e+00 + sys_corr_102: 8.36979486e-01 + sys_corr_103: -6.21376501e-01 + sys_corr_104: -1.46107409e+00 + sys_corr_105: -2.58802141e+00 + sys_corr_106: -2.00018201e+00 + sys_corr_107: -4.26523610e+00 + sys_corr_108: 3.50884714e+00 + sys_corr_109: 1.58000500e+00 + sys_corr_110: 5.50277789e-01 + sys_corr_111: 2.20137163e+00 + sys_corr_112: 1.72010083e+00 + sys_corr_113: 2.10306298e+00 + sys_corr_114: -8.23813285e-01 + sys_corr_115: 1.76963781e+00 + sys_corr_116: 4.04024966e-02 + sys_corr_117: 3.29783925e-01 + sys_corr_118: 2.59807945e+00 + sys_corr_119: -1.26685431e+01 + sys_corr_120: -6.37022408e-01 + sys_corr_121: -4.64816457e+00 + sys_corr_122: -5.56076756e+00 + sys_corr_123: -5.29772697e+00 + sys_corr_124: 1.98226125e-01 + sys_corr_125: 2.39221639e+00 + sys_corr_126: -4.36241565e+00 + sys_corr_127: -6.97916335e-02 + sys_corr_128: -8.71107258e-01 + sys_corr_129: 1.62791340e-01 + sys_corr_130: -1.78229286e-01 + sys_corr_131: 1.01937079e+00 + sys_corr_132: 3.10557051e+00 stat: 0.0 - luminosity: 2.1264540000000003 -- sys_corr_1: -0.004140634593390477 - sys_corr_2: 0.12372356456564672 - sys_corr_3: -0.29269539652029525 - sys_corr_4: 0.2852541278708472 - sys_corr_5: -0.5277458719364193 - sys_corr_6: -0.6610407381427533 - sys_corr_7: -0.06432042432167802 - sys_corr_8: 0.010566636072012808 - sys_corr_9: 0.06254328172910417 - sys_corr_10: 0.09933871619669885 - sys_corr_11: -0.013063284412539478 - sys_corr_12: -0.1934147194986864 - sys_corr_13: 0.25923076876438034 - sys_corr_14: 0.061976428767142655 - sys_corr_15: -0.021902498502330572 - sys_corr_16: 0.18307004499208193 - sys_corr_17: 0.17520105958314883 - sys_corr_18: -0.19999134680528152 - sys_corr_19: -0.33679068157476943 - sys_corr_20: -0.24212553006974885 - sys_corr_21: -0.0071466611178410576 - sys_corr_22: 0.2003311346194041 - sys_corr_23: 0.3724982255128696 - sys_corr_24: -1.0285645087568416 - sys_corr_25: -0.4944054388844928 - sys_corr_26: -0.020635226248037153 - sys_corr_27: 0.6645109943978098 - sys_corr_28: -0.5765320839411537 - sys_corr_29: -1.2721686619336148 - sys_corr_30: -0.8832390319082509 - sys_corr_31: -0.019901842308862158 - sys_corr_32: -0.026352766318780155 - sys_corr_33: 0.17116345840737254 - sys_corr_34: -0.017524337238166442 - sys_corr_35: 0.14697124619407326 - sys_corr_36: 0.007265952244432524 - sys_corr_37: 0.03109540722370989 - sys_corr_38: -0.09378541087298063 - sys_corr_39: 0.03041686677306146 - sys_corr_40: -0.1767894942617365 - sys_corr_41: 0.1881100604319555 - sys_corr_42: 0.052304681010509904 - sys_corr_43: -0.12329119377658893 - sys_corr_44: 0.11492521156086456 - sys_corr_45: 0.009748562647118835 - sys_corr_46: 0.04857009296353357 - sys_corr_47: -0.22135824728750653 - sys_corr_48: 0.5443265665913016 - sys_corr_49: -0.24095137814534998 - sys_corr_50: -0.6857390882834505 - sys_corr_51: 0.2415095034063355 - sys_corr_52: -0.16704695919004497 - sys_corr_53: -0.15106789398871348 - sys_corr_54: 0.14705289027657562 - sys_corr_55: -0.043782898720523586 - sys_corr_56: -0.0044448573834835504 - sys_corr_57: -0.022095786871472237 - sys_corr_58: 0.06335469468441408 - sys_corr_59: 0.04670762484190879 - sys_corr_60: -0.03090722927027638 - sys_corr_61: -0.016419817706318472 - sys_corr_62: 0.04212271418099897 - sys_corr_63: -0.08249623921307636 - sys_corr_64: -0.03419127600281918 - sys_corr_65: 0.05393072077829531 - sys_corr_66: -0.14032393652311964 - sys_corr_67: 0.21335332335773513 - sys_corr_68: 0.07930324818900301 - sys_corr_69: -0.008496335264041414 - sys_corr_70: 0.036974181923844676 - sys_corr_71: -0.006945036079074491 - sys_corr_72: 0.01343365248598739 - sys_corr_73: -0.08468377780593088 - sys_corr_74: -0.013507425551248013 - sys_corr_75: 0.20531100795861268 - sys_corr_76: -0.06092596737529698 - sys_corr_77: -0.1900953352483354 - sys_corr_78: 0.06999304020071094 - sys_corr_79: 0.11914272055777636 - sys_corr_80: 0.09357417873033072 - sys_corr_81: 0.021791248408021678 - sys_corr_82: -0.07591168957686896 - sys_corr_83: 0.11585247147727555 - sys_corr_84: -0.45556240980266133 - sys_corr_85: 0.21582506860299647 - sys_corr_86: 0.042623301362699435 - sys_corr_87: -0.09191872277596842 - sys_corr_88: 0.0003065928491926396 - sys_corr_89: 0.21788332808192226 - sys_corr_90: 0.11573371009135178 - sys_corr_91: 0.46147545575159776 - sys_corr_92: 0.016969151016473425 - sys_corr_93: -0.04738211529791475 - sys_corr_94: -0.1016939254426353 - sys_corr_95: -0.04544929957485832 - sys_corr_96: 0.004564384964299988 - sys_corr_97: 0.17592665137928096 - sys_corr_98: 0.0940683983116816 - sys_corr_99: 0.11683287521283378 - sys_corr_100: 0.11515745092242793 - sys_corr_101: 0.1155425197809606 - sys_corr_102: 0.34908949421674196 - sys_corr_103: -0.001869294202244325 - sys_corr_104: -0.22124494961999097 - sys_corr_105: 0.01886714206659748 - sys_corr_106: 0.011828924463217805 - sys_corr_107: -0.2837609013032969 - sys_corr_108: 0.44429390502102506 - sys_corr_109: 0.32727826269834115 - sys_corr_110: 0.09104853091025283 - sys_corr_111: 0.2184834873837009 - sys_corr_112: 0.136803628020304 - sys_corr_113: 0.11945786307603466 - sys_corr_114: 5.0181200679599405 - sys_corr_115: 0.09008357559149192 - sys_corr_116: 0.2033917819670652 - sys_corr_117: 0.26969770616985905 - sys_corr_118: -0.799051736541935 - sys_corr_119: -1.7672871644122532 - sys_corr_120: -0.24787223589889432 - sys_corr_121: -1.2676178933348383 - sys_corr_122: -1.9659249202583648 - sys_corr_123: -1.8249229019121074 - sys_corr_124: 0.1549985936785073 - sys_corr_125: 0.9307636948627704 - sys_corr_126: -1.317121802650589 - sys_corr_127: -0.012300300669126296 - sys_corr_128: -0.20244209932978172 - sys_corr_129: -0.247551691395245 - sys_corr_130: -0.12558684527332048 - sys_corr_131: 0.5592722440438592 - sys_corr_132: -4.228557633201175 + luminosity: 2.12645400e+00 +- sys_corr_1: -4.14063459e-03 + sys_corr_2: 1.23723565e-01 + sys_corr_3: -2.92695397e-01 + sys_corr_4: 2.85254128e-01 + sys_corr_5: -5.27745872e-01 + sys_corr_6: -6.61040738e-01 + sys_corr_7: -6.43204243e-02 + sys_corr_8: 1.05666361e-02 + sys_corr_9: 6.25432817e-02 + sys_corr_10: 9.93387162e-02 + sys_corr_11: -1.30632844e-02 + sys_corr_12: -1.93414719e-01 + sys_corr_13: 2.59230769e-01 + sys_corr_14: 6.19764288e-02 + sys_corr_15: -2.19024985e-02 + sys_corr_16: 1.83070045e-01 + sys_corr_17: 1.75201060e-01 + sys_corr_18: -1.99991347e-01 + sys_corr_19: -3.36790682e-01 + sys_corr_20: -2.42125530e-01 + sys_corr_21: -7.14666112e-03 + sys_corr_22: 2.00331135e-01 + sys_corr_23: 3.72498226e-01 + sys_corr_24: -1.02856451e+00 + sys_corr_25: -4.94405439e-01 + sys_corr_26: -2.06352262e-02 + sys_corr_27: 6.64510994e-01 + sys_corr_28: -5.76532084e-01 + sys_corr_29: -1.27216866e+00 + sys_corr_30: -8.83239032e-01 + sys_corr_31: -1.99018423e-02 + sys_corr_32: -2.63527663e-02 + sys_corr_33: 1.71163458e-01 + sys_corr_34: -1.75243372e-02 + sys_corr_35: 1.46971246e-01 + sys_corr_36: 7.26595224e-03 + sys_corr_37: 3.10954072e-02 + sys_corr_38: -9.37854109e-02 + sys_corr_39: 3.04168668e-02 + sys_corr_40: -1.76789494e-01 + sys_corr_41: 1.88110060e-01 + sys_corr_42: 5.23046810e-02 + sys_corr_43: -1.23291194e-01 + sys_corr_44: 1.14925212e-01 + sys_corr_45: 9.74856265e-03 + sys_corr_46: 4.85700930e-02 + sys_corr_47: -2.21358247e-01 + sys_corr_48: 5.44326567e-01 + sys_corr_49: -2.40951378e-01 + sys_corr_50: -6.85739088e-01 + sys_corr_51: 2.41509503e-01 + sys_corr_52: -1.67046959e-01 + sys_corr_53: -1.51067894e-01 + sys_corr_54: 1.47052890e-01 + sys_corr_55: -4.37828987e-02 + sys_corr_56: -4.44485738e-03 + sys_corr_57: -2.20957869e-02 + sys_corr_58: 6.33546947e-02 + sys_corr_59: 4.67076248e-02 + sys_corr_60: -3.09072293e-02 + sys_corr_61: -1.64198177e-02 + sys_corr_62: 4.21227142e-02 + sys_corr_63: -8.24962392e-02 + sys_corr_64: -3.41912760e-02 + sys_corr_65: 5.39307208e-02 + sys_corr_66: -1.40323937e-01 + sys_corr_67: 2.13353323e-01 + sys_corr_68: 7.93032482e-02 + sys_corr_69: -8.49633526e-03 + sys_corr_70: 3.69741819e-02 + sys_corr_71: -6.94503608e-03 + sys_corr_72: 1.34336525e-02 + sys_corr_73: -8.46837778e-02 + sys_corr_74: -1.35074256e-02 + sys_corr_75: 2.05311008e-01 + sys_corr_76: -6.09259674e-02 + sys_corr_77: -1.90095335e-01 + sys_corr_78: 6.99930402e-02 + sys_corr_79: 1.19142721e-01 + sys_corr_80: 9.35741787e-02 + sys_corr_81: 2.17912484e-02 + sys_corr_82: -7.59116896e-02 + sys_corr_83: 1.15852471e-01 + sys_corr_84: -4.55562410e-01 + sys_corr_85: 2.15825069e-01 + sys_corr_86: 4.26233014e-02 + sys_corr_87: -9.19187228e-02 + sys_corr_88: 3.06592849e-04 + sys_corr_89: 2.17883328e-01 + sys_corr_90: 1.15733710e-01 + sys_corr_91: 4.61475456e-01 + sys_corr_92: 1.69691510e-02 + sys_corr_93: -4.73821153e-02 + sys_corr_94: -1.01693925e-01 + sys_corr_95: -4.54492996e-02 + sys_corr_96: 4.56438496e-03 + sys_corr_97: 1.75926651e-01 + sys_corr_98: 9.40683983e-02 + sys_corr_99: 1.16832875e-01 + sys_corr_100: 1.15157451e-01 + sys_corr_101: 1.15542520e-01 + sys_corr_102: 3.49089494e-01 + sys_corr_103: -1.86929420e-03 + sys_corr_104: -2.21244950e-01 + sys_corr_105: 1.88671421e-02 + sys_corr_106: 1.18289245e-02 + sys_corr_107: -2.83760901e-01 + sys_corr_108: 4.44293905e-01 + sys_corr_109: 3.27278263e-01 + sys_corr_110: 9.10485309e-02 + sys_corr_111: 2.18483487e-01 + sys_corr_112: 1.36803628e-01 + sys_corr_113: 1.19457863e-01 + sys_corr_114: 5.01812007e+00 + sys_corr_115: 9.00835756e-02 + sys_corr_116: 2.03391782e-01 + sys_corr_117: 2.69697706e-01 + sys_corr_118: -7.99051737e-01 + sys_corr_119: -1.76728716e+00 + sys_corr_120: -2.47872236e-01 + sys_corr_121: -1.26761789e+00 + sys_corr_122: -1.96592492e+00 + sys_corr_123: -1.82492290e+00 + sys_corr_124: 1.54998594e-01 + sys_corr_125: 9.30763695e-01 + sys_corr_126: -1.31712180e+00 + sys_corr_127: -1.23003007e-02 + sys_corr_128: -2.02442099e-01 + sys_corr_129: -2.47551691e-01 + sys_corr_130: -1.25586845e-01 + sys_corr_131: 5.59272244e-01 + sys_corr_132: -4.22855763e+00 stat: 0.0 luminosity: 0.473748 diff --git a/nnpdf_data/nnpdf_data/commondata/COMPASS15_NC_NOTFIXED_MUD/filter.py b/nnpdf_data/nnpdf_data/commondata/COMPASS15_NC_NOTFIXED_MUD/filter.py index 953512b38e..8a6651dd41 100644 --- a/nnpdf_data/nnpdf_data/commondata/COMPASS15_NC_NOTFIXED_MUD/filter.py +++ b/nnpdf_data/nnpdf_data/commondata/COMPASS15_NC_NOTFIXED_MUD/filter.py @@ -3,6 +3,10 @@ import pandas as pd import yaml +from nnpdf_data.filter_utils.utils import prettify_float + +yaml.add_representer(float, prettify_float) + def read_data(fnames): df = pd.DataFrame() diff --git a/nnpdf_data/nnpdf_data/commondata/COMPASS15_NC_NOTFIXED_MUP/filter.py b/nnpdf_data/nnpdf_data/commondata/COMPASS15_NC_NOTFIXED_MUP/filter.py index a0457b10a9..63205f7685 100644 --- a/nnpdf_data/nnpdf_data/commondata/COMPASS15_NC_NOTFIXED_MUP/filter.py +++ b/nnpdf_data/nnpdf_data/commondata/COMPASS15_NC_NOTFIXED_MUP/filter.py @@ -3,6 +3,10 @@ import pandas as pd import yaml +from nnpdf_data.filter_utils.utils import prettify_float + +yaml.add_representer(float, prettify_float) + def read_data(fnames): df = pd.DataFrame() diff --git a/nnpdf_data/nnpdf_data/commondata/COMPASS15_NC_NOTFIXED_MUP/kinematics.yaml b/nnpdf_data/nnpdf_data/commondata/COMPASS15_NC_NOTFIXED_MUP/kinematics.yaml index 7b7c48f66d..eaaf78c6a4 100644 --- a/nnpdf_data/nnpdf_data/commondata/COMPASS15_NC_NOTFIXED_MUP/kinematics.yaml +++ b/nnpdf_data/nnpdf_data/commondata/COMPASS15_NC_NOTFIXED_MUP/kinematics.yaml @@ -9,7 +9,7 @@ bins: max: null - x: min: 0.004 - mid: 0.0045000000000000005 + mid: 4.50000000e-03 max: 0.005 Q2: min: null diff --git a/nnpdf_data/nnpdf_data/commondata/E142_NC_NOTFIXED_EN/filter.py b/nnpdf_data/nnpdf_data/commondata/E142_NC_NOTFIXED_EN/filter.py index db424387ee..58234ca504 100644 --- a/nnpdf_data/nnpdf_data/commondata/E142_NC_NOTFIXED_EN/filter.py +++ b/nnpdf_data/nnpdf_data/commondata/E142_NC_NOTFIXED_EN/filter.py @@ -3,6 +3,10 @@ import pandas as pd import yaml +from nnpdf_data.filter_utils.utils import prettify_float + +yaml.add_representer(float, prettify_float) + def read_data(fnames): df = pd.DataFrame() diff --git a/nnpdf_data/nnpdf_data/commondata/E143_NC_NOTFIXED_ED/filter.py b/nnpdf_data/nnpdf_data/commondata/E143_NC_NOTFIXED_ED/filter.py index 57b6bfff85..6923eec6cc 100644 --- a/nnpdf_data/nnpdf_data/commondata/E143_NC_NOTFIXED_ED/filter.py +++ b/nnpdf_data/nnpdf_data/commondata/E143_NC_NOTFIXED_ED/filter.py @@ -3,6 +3,10 @@ import pandas as pd import yaml +from nnpdf_data.filter_utils.utils import prettify_float + +yaml.add_representer(float, prettify_float) + def read_data(fnames): df = pd.DataFrame() diff --git a/nnpdf_data/nnpdf_data/commondata/E143_NC_NOTFIXED_ED/kinematics.yaml b/nnpdf_data/nnpdf_data/commondata/E143_NC_NOTFIXED_ED/kinematics.yaml index adb75c0051..e1acdc4197 100644 --- a/nnpdf_data/nnpdf_data/commondata/E143_NC_NOTFIXED_ED/kinematics.yaml +++ b/nnpdf_data/nnpdf_data/commondata/E143_NC_NOTFIXED_ED/kinematics.yaml @@ -41,7 +41,7 @@ bins: max: null - x: min: 0.053 - mid: 0.055999999999999994 + mid: 5.60000000e-02 max: 0.059 Q2: min: null @@ -57,7 +57,7 @@ bins: max: null - x: min: 0.067 - mid: 0.07100000000000001 + mid: 7.10000000e-02 max: 0.075 Q2: min: null diff --git a/nnpdf_data/nnpdf_data/commondata/E143_NC_NOTFIXED_ED/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/E143_NC_NOTFIXED_ED/uncertainties.yaml index 1d24cfd42a..208d0a463c 100644 --- a/nnpdf_data/nnpdf_data/commondata/E143_NC_NOTFIXED_ED/uncertainties.yaml +++ b/nnpdf_data/nnpdf_data/commondata/E143_NC_NOTFIXED_ED/uncertainties.yaml @@ -20,16 +20,16 @@ bins: sys_beam: 0.001323 - stat: 0.08 sys: 0.021 - sys_beam: 0.009359000000000001 + sys_beam: 9.35900000e-03 - stat: 0.068 sys: 0.017 - sys_beam: -0.001764 + sys_beam: -1.76400000e-03 - stat: 0.059 sys: 0.013 - sys_beam: -0.0016660000000000004 + sys_beam: -1.66600000e-03 - stat: 0.052 sys: 0.01 - sys_beam: 0.0019110000000000002 + sys_beam: 1.91100000e-03 - stat: 0.045 sys: 0.008 sys_beam: 0.001323 @@ -38,37 +38,37 @@ bins: sys_beam: 0.002597 - stat: 0.037 sys: 0.005 - sys_beam: 0.0019110000000000002 + sys_beam: 1.91100000e-03 - stat: 0.031 sys: 0.005 sys_beam: 0.006027 - stat: 0.029 sys: 0.004 - sys_beam: 0.004018000000000001 + sys_beam: 4.01800000e-03 - stat: 0.026 sys: 0.003 - sys_beam: 0.0032830000000000003 + sys_beam: 3.28300000e-03 - stat: 0.024 sys: 0.004 - sys_beam: 0.006615000000000001 + sys_beam: 6.61500000e-03 - stat: 0.022 sys: 0.004 - sys_beam: 0.0067620000000000015 + sys_beam: 6.76200000e-03 - stat: 0.021 sys: 0.003 sys_beam: 0.003675 - stat: 0.02 sys: 0.005 - sys_beam: 0.007203000000000001 + sys_beam: 7.20300000e-03 - stat: 0.017 sys: 0.005 - sys_beam: 0.0034300000000000008 + sys_beam: 3.43000000e-03 - stat: 0.016 sys: 0.005 sys_beam: 0.003528 - stat: 0.017 sys: 0.004 - sys_beam: 0.0024010000000000004 + sys_beam: 2.40100000e-03 - stat: 0.016 sys: 0.004 sys_beam: 0.004361 @@ -77,7 +77,7 @@ bins: sys_beam: 0.004459 - stat: 0.014 sys: 0.004 - sys_beam: 0.0037240000000000003 + sys_beam: 3.72400000e-03 - stat: 0.013 sys: 0.003 sys_beam: 0.002205 @@ -89,10 +89,10 @@ bins: sys_beam: 0.002107 - stat: 0.009 sys: 0.001 - sys_beam: 0.0009310000000000001 + sys_beam: 9.31000000e-04 - stat: 0.007 sys: 0.001 - sys_beam: 0.00039200000000000004 + sys_beam: 3.92000000e-04 - stat: 0.005 sys: 0.001 sys_beam: 0.000441 diff --git a/nnpdf_data/nnpdf_data/commondata/E143_NC_NOTFIXED_EP/filter.py b/nnpdf_data/nnpdf_data/commondata/E143_NC_NOTFIXED_EP/filter.py index 4384b6ee12..96227c40fe 100644 --- a/nnpdf_data/nnpdf_data/commondata/E143_NC_NOTFIXED_EP/filter.py +++ b/nnpdf_data/nnpdf_data/commondata/E143_NC_NOTFIXED_EP/filter.py @@ -3,6 +3,10 @@ import pandas as pd import yaml +from nnpdf_data.filter_utils.utils import prettify_float + +yaml.add_representer(float, prettify_float) + def read_data(fnames): df = pd.DataFrame() diff --git a/nnpdf_data/nnpdf_data/commondata/E143_NC_NOTFIXED_EP/kinematics.yaml b/nnpdf_data/nnpdf_data/commondata/E143_NC_NOTFIXED_EP/kinematics.yaml index adb75c0051..e1acdc4197 100644 --- a/nnpdf_data/nnpdf_data/commondata/E143_NC_NOTFIXED_EP/kinematics.yaml +++ b/nnpdf_data/nnpdf_data/commondata/E143_NC_NOTFIXED_EP/kinematics.yaml @@ -41,7 +41,7 @@ bins: max: null - x: min: 0.053 - mid: 0.055999999999999994 + mid: 5.60000000e-02 max: 0.059 Q2: min: null @@ -57,7 +57,7 @@ bins: max: null - x: min: 0.067 - mid: 0.07100000000000001 + mid: 7.10000000e-02 max: 0.075 Q2: min: null diff --git a/nnpdf_data/nnpdf_data/commondata/E143_NC_NOTFIXED_EP/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/E143_NC_NOTFIXED_EP/uncertainties.yaml index 925f5e6026..4282e4f567 100644 --- a/nnpdf_data/nnpdf_data/commondata/E143_NC_NOTFIXED_EP/uncertainties.yaml +++ b/nnpdf_data/nnpdf_data/commondata/E143_NC_NOTFIXED_EP/uncertainties.yaml @@ -14,49 +14,49 @@ definitions: bins: - stat: 0.132 sys: 0.034 - sys_beam: 0.009176000000000002 + sys_beam: 9.17600000e-03 - stat: 0.089 sys: 0.032 sys_beam: 0.016132 - stat: 0.073 sys: 0.025 - sys_beam: 0.009953000000000002 + sys_beam: 9.95300000e-03 - stat: 0.062 sys: 0.022 - sys_beam: 0.011914000000000001 + sys_beam: 1.19140000e-02 - stat: 0.053 sys: 0.019 - sys_beam: 0.012099000000000002 + sys_beam: 1.20990000e-02 - stat: 0.045 sys: 0.017 sys_beam: 0.011433 - stat: 0.039 sys: 0.015 - sys_beam: 0.009842000000000002 + sys_beam: 9.84200000e-03 - stat: 0.034 sys: 0.014 sys_beam: 0.010878 - stat: 0.031 sys: 0.014 - sys_beam: 0.011470000000000001 + sys_beam: 1.14700000e-02 - stat: 0.024 sys: 0.012 - sys_beam: 0.009620000000000002 + sys_beam: 9.62000000e-03 - stat: 0.022 sys: 0.012 - sys_beam: 0.011063000000000002 + sys_beam: 1.10630000e-02 - stat: 0.021 sys: 0.011 - sys_beam: 0.010064000000000002 + sys_beam: 1.00640000e-02 - stat: 0.019 sys: 0.01 - sys_beam: 0.009694000000000001 + sys_beam: 9.69400000e-03 - stat: 0.018 sys: 0.01 sys_beam: 0.008843 - stat: 0.017 sys: 0.01 - sys_beam: 0.009361000000000001 + sys_beam: 9.36100000e-03 - stat: 0.016 sys: 0.009 sys_beam: 0.008991 @@ -77,7 +77,7 @@ bins: sys_beam: 0.006216 - stat: 0.013 sys: 0.005 - sys_beam: 0.005327999999999999 + sys_beam: 5.32800000e-03 - stat: 0.012 sys: 0.005 sys_beam: 0.005476 diff --git a/nnpdf_data/nnpdf_data/commondata/E154_NC_9GEV_EN/filter.py b/nnpdf_data/nnpdf_data/commondata/E154_NC_9GEV_EN/filter.py index ffecc110e4..9296139c7a 100644 --- a/nnpdf_data/nnpdf_data/commondata/E154_NC_9GEV_EN/filter.py +++ b/nnpdf_data/nnpdf_data/commondata/E154_NC_9GEV_EN/filter.py @@ -3,6 +3,10 @@ import pandas as pd import yaml +from nnpdf_data.filter_utils.utils import prettify_float + +yaml.add_representer(float, prettify_float) + def read_data(fnames): df = pd.DataFrame() diff --git a/nnpdf_data/nnpdf_data/commondata/E155_NC_9GEV_EN/filter.py b/nnpdf_data/nnpdf_data/commondata/E155_NC_9GEV_EN/filter.py index 69d2f4483b..07f0021655 100644 --- a/nnpdf_data/nnpdf_data/commondata/E155_NC_9GEV_EN/filter.py +++ b/nnpdf_data/nnpdf_data/commondata/E155_NC_9GEV_EN/filter.py @@ -3,6 +3,10 @@ import pandas as pd import yaml +from nnpdf_data.filter_utils.utils import prettify_float + +yaml.add_representer(float, prettify_float) + def read_data(fnames): df = pd.DataFrame() diff --git a/nnpdf_data/nnpdf_data/commondata/E155_NC_9GEV_EN/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/E155_NC_9GEV_EN/uncertainties.yaml index e9349d9fad..adbf8d700b 100644 --- a/nnpdf_data/nnpdf_data/commondata/E155_NC_9GEV_EN/uncertainties.yaml +++ b/nnpdf_data/nnpdf_data/commondata/E155_NC_9GEV_EN/uncertainties.yaml @@ -23,10 +23,10 @@ bins: sys_norm: 0.00238 - stat: 0.309 sys: 0.125 - sys_norm: 0.007980000000000001 + sys_norm: 7.98000000e-03 - stat: 0.775 sys: 0.144 - sys_norm: 0.08624000000000001 + sys_norm: 8.62400000e-02 - stat: 3.141 sys: 0.138 sys_norm: 0.03556 @@ -35,7 +35,7 @@ bins: sys_norm: -0.00532 - stat: 0.034 sys: 0.008 - sys_norm: -0.005600000000000001 + sys_norm: -5.60000000e-03 - stat: 0.036 sys: 0.011 sys_norm: -0.00756 @@ -44,7 +44,7 @@ bins: sys_norm: -0.11928 - stat: 0.038 sys: 0.016 - sys_norm: -0.0054600000000000004 + sys_norm: -5.46000000e-03 - stat: 0.048 sys: 0.017 sys_norm: -0.02198 @@ -56,16 +56,16 @@ bins: sys_norm: -0.00924 - stat: 0.238 sys: 0.028 - sys_norm: -0.059500000000000004 + sys_norm: -5.95000000e-02 - stat: 0.106 sys: 0.035 sys_norm: -0.01232 - stat: 0.056 sys: 0.036 - sys_norm: -0.010780000000000001 + sys_norm: -1.07800000e-02 - stat: 0.109 sys: 0.039 - sys_norm: -0.0014000000000000002 + sys_norm: -1.40000000e-03 - stat: 0.114 sys: 0.053 sys_norm: -0.00098 @@ -77,7 +77,7 @@ bins: sys_norm: -0.00966 - stat: 0.288 sys: 0.079 - sys_norm: 0.022960000000000005 + sys_norm: 2.29600000e-02 - stat: 0.13 sys: 0.082 sys_norm: 0.01442 diff --git a/nnpdf_data/nnpdf_data/commondata/E155_NC_9GEV_EP/filter.py b/nnpdf_data/nnpdf_data/commondata/E155_NC_9GEV_EP/filter.py index b774e3f1a6..5fc146ab0e 100644 --- a/nnpdf_data/nnpdf_data/commondata/E155_NC_9GEV_EP/filter.py +++ b/nnpdf_data/nnpdf_data/commondata/E155_NC_9GEV_EP/filter.py @@ -3,6 +3,10 @@ import pandas as pd import yaml +from nnpdf_data.filter_utils.utils import prettify_float + +yaml.add_representer(float, prettify_float) + def read_data(fnames): df = pd.DataFrame() diff --git a/nnpdf_data/nnpdf_data/commondata/E155_NC_9GEV_EP/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/E155_NC_9GEV_EP/uncertainties.yaml index e687c4ace4..bed27d927a 100644 --- a/nnpdf_data/nnpdf_data/commondata/E155_NC_9GEV_EP/uncertainties.yaml +++ b/nnpdf_data/nnpdf_data/commondata/E155_NC_9GEV_EP/uncertainties.yaml @@ -17,10 +17,10 @@ bins: sys_norm: 0.00672 - stat: 0.058 sys: 0.048 - sys_norm: 0.07854000000000001 + sys_norm: 7.85400000e-02 - stat: 0.024 sys: 0.048 - sys_norm: 0.07854000000000001 + sys_norm: 7.85400000e-02 - stat: 0.042 sys: 0.048 sys_norm: 0.07098 @@ -29,13 +29,13 @@ bins: sys_norm: 0.08708 - stat: 0.405 sys: 0.05 - sys_norm: 0.07826000000000001 + sys_norm: 7.82600000e-02 - stat: 0.008 sys: 0.006 - sys_norm: 0.007980000000000001 + sys_norm: 7.98000000e-03 - stat: 0.008 sys: 0.007 - sys_norm: 0.009800000000000001 + sys_norm: 9.80000000e-03 - stat: 0.009 sys: 0.009 sys_norm: 0.01554 @@ -53,25 +53,25 @@ bins: sys_norm: 0.02604 - stat: 0.007 sys: 0.018 - sys_norm: 0.029259999999999998 + sys_norm: 2.92600000e-02 - stat: 0.051 sys: 0.018 - sys_norm: 0.042980000000000004 + sys_norm: 4.29800000e-02 - stat: 0.023 sys: 0.023 - sys_norm: 0.038220000000000004 + sys_norm: 3.82200000e-02 - stat: 0.012 sys: 0.023 sys_norm: 0.03458 - stat: 0.022 sys: 0.023 - sys_norm: 0.042699999999999995 + sys_norm: 4.27000000e-02 - stat: 0.023 sys: 0.03 sys_norm: 0.05012 - stat: 0.011 sys: 0.03 - sys_norm: 0.049420000000000006 + sys_norm: 4.94200000e-02 - stat: 0.014 sys: 0.03 sys_norm: 0.05544 diff --git a/nnpdf_data/nnpdf_data/commondata/EMC_NC_NOTFIXED_MUP/filter.py b/nnpdf_data/nnpdf_data/commondata/EMC_NC_NOTFIXED_MUP/filter.py index a813e035eb..e5a8cb45d6 100644 --- a/nnpdf_data/nnpdf_data/commondata/EMC_NC_NOTFIXED_MUP/filter.py +++ b/nnpdf_data/nnpdf_data/commondata/EMC_NC_NOTFIXED_MUP/filter.py @@ -3,6 +3,10 @@ import pandas as pd import yaml +from nnpdf_data.filter_utils.utils import prettify_float + +yaml.add_representer(float, prettify_float) + def read_data(fnames): df = pd.DataFrame() diff --git a/nnpdf_data/nnpdf_data/commondata/EMC_NC_NOTFIXED_MUP/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/EMC_NC_NOTFIXED_MUP/uncertainties.yaml index 1c25b4a55b..e7acf0c3eb 100644 --- a/nnpdf_data/nnpdf_data/commondata/EMC_NC_NOTFIXED_MUP/uncertainties.yaml +++ b/nnpdf_data/nnpdf_data/commondata/EMC_NC_NOTFIXED_MUP/uncertainties.yaml @@ -14,10 +14,10 @@ definitions: bins: - stat: 0.361 sys: 0.106 - sys_norm: 0.039060000000000004 + sys_norm: 3.90600000e-02 - stat: 0.26 sys: 0.08 - sys_norm: 0.07895999999999999 + sys_norm: 7.89600000e-02 - stat: 0.23 sys: 0.057 sys_norm: 0.0161 @@ -26,7 +26,7 @@ bins: sys_norm: 0.03556 - stat: 0.093 sys: 0.036 - sys_norm: 0.039200000000000006 + sys_norm: 3.92000000e-02 - stat: 0.076 sys: 0.028 sys_norm: 0.0315 @@ -41,4 +41,4 @@ bins: sys_norm: 0.02338 - stat: 0.025 sys: 0.007 - sys_norm: 0.013160000000000002 + sys_norm: 1.31600000e-02 diff --git a/nnpdf_data/nnpdf_data/commondata/H1_1JET_319GEV_290PB-1_DIF/data.yaml b/nnpdf_data/nnpdf_data/commondata/H1_1JET_319GEV_290PB-1_DIF/data.yaml index 06dcb4f1ba..08f5b18ab9 100644 --- a/nnpdf_data/nnpdf_data/commondata/H1_1JET_319GEV_290PB-1_DIF/data.yaml +++ b/nnpdf_data/nnpdf_data/commondata/H1_1JET_319GEV_290PB-1_DIF/data.yaml @@ -1,49 +1,49 @@ data_central: -- 1520.2961417766862 -- 442.3175691947408 -- 105.70160196949213 -- 18.14506808583527 -- 2.1399496052095146 -- 0.3245909002911952 -- 1077.3804779284385 -- 362.815922459706 -- 84.82128198457113 -- 12.611769178156917 -- 1.6488761432230024 -- 0.2431083191352701 -- 1058.6251203486613 -- 355.4571461463955 -- 90.39042777449247 -- 14.97510056874838 -- 2.334208671252201 -- 0.4670943983756343 -- 736.7197279128237 -- 277.7321181166529 -- 71.32789033718993 -- 13.381449353442337 -- 1.79262563160108 -- 0.25529521769389 -- 559.5770182732919 -- 230.421157213187 -- 63.39114094103584 -- 10.714928105884749 -- 1.8752280055125135 -- 0.3996182365650588 -- 536.6156110816592 -- 241.92835772695966 -- 65.55739999405293 -- 12.932536154774963 -- 1.5666573836687063 -- 0.250260931747206 -- 387.36874135827804 -- 196.74688939366885 -- 60.414108908399854 -- 12.64536449988521 -- 2.1989983062271126 -- 0.3756551576485761 -- 278.28860056198323 -- 122.49103459556666 -- 38.40238587011927 -- 9.3206628937902 -- 1.0386065045993735 -- 0.19147927798236986 +- 1.52029614e+03 +- 4.42317569e+02 +- 1.05701602e+02 +- 1.81450681e+01 +- 2.13994961e+00 +- 3.24590900e-01 +- 1.07738048e+03 +- 3.62815922e+02 +- 8.48212820e+01 +- 1.26117692e+01 +- 1.64887614e+00 +- 2.43108319e-01 +- 1.05862512e+03 +- 3.55457146e+02 +- 9.03904278e+01 +- 1.49751006e+01 +- 2.33420867e+00 +- 4.67094398e-01 +- 7.36719728e+02 +- 2.77732118e+02 +- 7.13278903e+01 +- 1.33814494e+01 +- 1.79262563e+00 +- 2.55295218e-01 +- 5.59577018e+02 +- 2.30421157e+02 +- 6.33911409e+01 +- 1.07149281e+01 +- 1.87522801e+00 +- 3.99618237e-01 +- 5.36615611e+02 +- 2.41928358e+02 +- 6.55574000e+01 +- 1.29325362e+01 +- 1.56665738e+00 +- 2.50260932e-01 +- 3.87368741e+02 +- 1.96746889e+02 +- 6.04141089e+01 +- 1.26453645e+01 +- 2.19899831e+00 +- 3.75655158e-01 +- 2.78288601e+02 +- 1.22491035e+02 +- 3.84023859e+01 +- 9.32066289e+00 +- 1.03860650e+00 +- 1.91479278e-01 diff --git a/nnpdf_data/nnpdf_data/commondata/H1_1JET_319GEV_290PB-1_DIF/data_highQ2.yaml b/nnpdf_data/nnpdf_data/commondata/H1_1JET_319GEV_290PB-1_DIF/data_highQ2.yaml index 0181112fcd..3b94486dfa 100644 --- a/nnpdf_data/nnpdf_data/commondata/H1_1JET_319GEV_290PB-1_DIF/data_highQ2.yaml +++ b/nnpdf_data/nnpdf_data/commondata/H1_1JET_319GEV_290PB-1_DIF/data_highQ2.yaml @@ -1,7 +1,7 @@ data_central: -- 89.51177497371741 -- 72.72199571311053 -- 66.65340079963816 -- 47.33504032508446 -- 40.8618724173806 -- 0.9234378593333785 +- 8.95117750e+01 +- 7.27219957e+01 +- 6.66534008e+01 +- 4.73350403e+01 +- 4.08618724e+01 +- 9.23437859e-01 diff --git a/nnpdf_data/nnpdf_data/commondata/H1_1JET_319GEV_290PB-1_DIF/data_highQ2_norm.yaml b/nnpdf_data/nnpdf_data/commondata/H1_1JET_319GEV_290PB-1_DIF/data_highQ2_norm.yaml index 2777f34735..a6097f606c 100644 --- a/nnpdf_data/nnpdf_data/commondata/H1_1JET_319GEV_290PB-1_DIF/data_highQ2_norm.yaml +++ b/nnpdf_data/nnpdf_data/commondata/H1_1JET_319GEV_290PB-1_DIF/data_highQ2_norm.yaml @@ -1,7 +1,7 @@ data_central: -- 0.20732491816561055 -- 0.22957442157850536 -- 0.2417105143491752 -- 0.21642698774361296 -- 0.22755173945006035 -- 0.10821349387180648 +- 2.07324918e-01 +- 2.29574422e-01 +- 2.41710514e-01 +- 2.16426988e-01 +- 2.27551739e-01 +- 1.08213494e-01 diff --git a/nnpdf_data/nnpdf_data/commondata/H1_1JET_319GEV_290PB-1_DIF/data_norm.yaml b/nnpdf_data/nnpdf_data/commondata/H1_1JET_319GEV_290PB-1_DIF/data_norm.yaml index f4f9374689..bb464f0779 100644 --- a/nnpdf_data/nnpdf_data/commondata/H1_1JET_319GEV_290PB-1_DIF/data_norm.yaml +++ b/nnpdf_data/nnpdf_data/commondata/H1_1JET_319GEV_290PB-1_DIF/data_norm.yaml @@ -1,49 +1,49 @@ data_central: -- 0.11146638373029033 -- 0.03260425294916205 -- 0.00780303062141272 -- 0.0013327131328265693 -- 0.00015735053216561418 -- 2.397326321286638e-05 -- 0.12273962071503276 -- 0.041128728675556885 -- 0.009635904141767026 -- 0.0014304576986950708 -- 0.0001874038818428799 -- 2.7510605846330985e-05 -- 0.13572558369439658 -- 0.04552902550314116 -- 0.011588911705576466 -- 0.0019179871004487625 -- 0.00029966775610919006 -- 5.9847166170650175e-05 -- 0.1521054003899483 -- 0.05745153363991823 -- 0.014806835816639396 -- 0.002777235433313776 -- 0.00037183810327547816 -- 5.276891665673727e-05 -- 0.16103405510139532 -- 0.0661681569208333 -- 0.018271234090758356 -- 0.003089812363910013 -- 0.0005383450766005511 -- 0.00011506147038943812 -- 0.1931927159305228 -- 0.08700582158574599 -- 0.023585163160108006 -- 0.004631325800005102 -- 0.0005619636495854181 -- 9.014506555236299e-05 -- 0.18759623880322573 -- 0.09532876271631908 -- 0.029290177940496525 -- 0.0061403249350086165 -- 0.001064888329393524 -- 0.00018171526427897267 -- 0.23801794388104405 -- 0.10441732513677887 +- 1.11466384e-01 +- 3.26042529e-02 +- 7.80303062e-03 +- 1.33271313e-03 +- 1.57350532e-04 +- 2.39732632e-05 +- 1.22739621e-01 +- 4.11287287e-02 +- 9.63590414e-03 +- 1.43045770e-03 +- 1.87403882e-04 +- 2.75106058e-05 +- 1.35725584e-01 +- 4.55290255e-02 +- 1.15889117e-02 +- 1.91798710e-03 +- 2.99667756e-04 +- 5.98471662e-05 +- 1.52105400e-01 +- 5.74515336e-02 +- 1.48068358e-02 +- 2.77723543e-03 +- 3.71838103e-04 +- 5.27689167e-05 +- 1.61034055e-01 +- 6.61681569e-02 +- 1.82712341e-02 +- 3.08981236e-03 +- 5.38345077e-04 +- 1.15061470e-04 +- 1.93192716e-01 +- 8.70058216e-02 +- 2.35851632e-02 +- 4.63132580e-03 +- 5.61963650e-04 +- 9.01450656e-05 +- 1.87596239e-01 +- 9.53287627e-02 +- 2.92901779e-02 +- 6.14032494e-03 +- 1.06488833e-03 +- 1.81715264e-04 +- 2.38017944e-01 +- 1.04417325e-01 - 0.0327 -- 0.007957448109729214 -- 0.0008875035976320316 -- 0.0001637305941636206 +- 7.95744811e-03 +- 8.87503598e-04 +- 1.63730594e-04 diff --git a/nnpdf_data/nnpdf_data/commondata/H1_1JET_319GEV_290PB-1_DIF/filter.py b/nnpdf_data/nnpdf_data/commondata/H1_1JET_319GEV_290PB-1_DIF/filter.py index 7f3f74bacc..530938b5c4 100644 --- a/nnpdf_data/nnpdf_data/commondata/H1_1JET_319GEV_290PB-1_DIF/filter.py +++ b/nnpdf_data/nnpdf_data/commondata/H1_1JET_319GEV_290PB-1_DIF/filter.py @@ -4,8 +4,11 @@ import yaml from nnpdf_data.filter_utils.utils import percentage_to_absolute as pta +from nnpdf_data.filter_utils.utils import prettify_float from nnpdf_data.filter_utils.utils import symmetrize_errors as se +yaml.add_representer(float, prettify_float) + def processData(): with open('metadata.yaml', 'r') as file: diff --git a/nnpdf_data/nnpdf_data/commondata/H1_1JET_319GEV_290PB-1_DIF/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/H1_1JET_319GEV_290PB-1_DIF/uncertainties.yaml index a320b41333..598b022e3d 100644 --- a/nnpdf_data/nnpdf_data/commondata/H1_1JET_319GEV_290PB-1_DIF/uncertainties.yaml +++ b/nnpdf_data/nnpdf_data/commondata/H1_1JET_319GEV_290PB-1_DIF/uncertainties.yaml @@ -446,5329 +446,5329 @@ definitions: bins: - stat: 0 Uncorr: 15.0 - RCES: 53.567224120725164 - ElEn: 7.743182485257598 - ElTh: 9.700257728534845 + RCES: 5.35672241e+01 + ElEn: 7.74318249e+00 + ElTh: 9.70025773e+00 Lumi: 37.5 LArN: 7.5 - StatMC: 18.900000000000002 + StatMC: 1.89000000e+01 RadErr: 6.3 - Model_1: 7.00035713374682 - Model_2: 7.00035713374682 - ModelRW_1: 12.09152595828996 - ModelRW_2: 12.09152595828996 - JES_1: 11.549391217722254 - JES_2: 11.549391217722254 - ArtUnc_1: 28.534619481303825 - ArtUnc_2: -7.123863967078508 - ArtUnc_3: -2.7181265551317226 - ArtUnc_4: -0.3899284876102117 - ArtUnc_5: -0.00670746378074466 - ArtUnc_6: -0.008283999205217387 - ArtUnc_7: 0.0007567391512459143 - ArtUnc_8: -0.27855882289615036 - ArtUnc_9: -0.0015553697559445726 - ArtUnc_10: 0.6841040029689246 - ArtUnc_11: 0.2703982613331601 - ArtUnc_12: -0.02577120581018809 - ArtUnc_13: -0.20196510734929263 - ArtUnc_14: -0.061245749383712446 - ArtUnc_15: -0.1373398814060955 - ArtUnc_16: 0.05559250646001657 - ArtUnc_17: -0.03891494291030187 - ArtUnc_18: 0.022439546494828832 - ArtUnc_19: -0.004613609699705583 - ArtUnc_20: -0.005955233470981109 - ArtUnc_21: -0.000919797110477925 - ArtUnc_22: -0.0015613108826127554 - ArtUnc_23: -0.0005657803910752896 - ArtUnc_24: -0.00013845948901258673 - ArtUnc_25: 0.0015884893142738003 - ArtUnc_26: 0.0027998731918240935 - ArtUnc_27: 0.012058199532830109 - ArtUnc_28: 0.0010435302393417168 - ArtUnc_29: -0.0008423840084407331 - ArtUnc_30: 0.006854685756505784 - ArtUnc_31: 0.0006563809746296008 - ArtUnc_32: -0.003397722806987923 - ArtUnc_33: -0.0013550843877417945 - ArtUnc_34: -0.0018974214458767377 - ArtUnc_35: -0.0033135972302497743 - ArtUnc_36: -0.0011026071913299487 - ArtUnc_37: -0.00021120981280549925 - ArtUnc_38: 0.0001611175014340478 - ArtUnc_39: 7.780354641441171e-06 - ArtUnc_40: -1.0949039928915957e-05 - ArtUnc_41: 0.0008162451372233949 - ArtUnc_42: 0.0006595543728718163 - ArtUnc_43: -0.0001920179570449045 - ArtUnc_44: -0.00029239045544503836 - ArtUnc_45: 0.00029228857947158284 - ArtUnc_46: -0.00014950580404518931 - ArtUnc_47: 0.0003446552927101274 - ArtUnc_48: -0.00011551717262218647 - ArtUnc_49: -0.00017085330905257303 - ArtUnc_50: -0.00013644698293498577 - ArtUnc_51: 9.219831701846136e-06 - ArtUnc_52: -1.4905544371813783e-05 - ArtUnc_53: -0.00014030870040233003 - ArtUnc_54: 2.172973149282271e-05 - ArtUnc_55: 2.5524966768608532e-05 - ArtUnc_56: 1.1225502356583022e-05 - ArtUnc_57: -4.691504492441422e-06 - ArtUnc_58: 7.6197052616898715e-06 - ArtUnc_59: 9.825460992185863e-06 - ArtUnc_60: 3.627685529542029e-06 - ArtUnc_61: -2.392677403828778e-06 - ArtUnc_62: -2.617544550091262e-06 - ArtUnc_63: 1.7619189417090515e-06 - ArtUnc_64: -4.0927753178519035e-06 - ArtUnc_65: 4.0074756663388155e-06 - ArtUnc_66: 2.9159524324259093e-06 - ArtUnc_67: -1.0830813048008015e-06 - ArtUnc_68: -3.5965235536997996e-06 - ArtUnc_69: -2.322886166859595e-06 - ArtUnc_70: 2.5743213044265925e-07 - ArtUnc_71: -1.5613343610499397e-07 - ArtUnc_72: 6.637580118037731e-08 - ArtUnc_73: -6.870695206562281e-07 - ArtUnc_74: 8.574271135636011e-07 - ArtUnc_75: 1.1569485846268291e-07 - ArtUnc_76: -6.437296749786422e-08 - ArtUnc_77: -1.837073110006341e-07 - ArtUnc_78: -2.4335993445393687e-07 - ArtUnc_79: 3.0163122457542233e-07 - ArtUnc_80: -1.0246606463765234e-07 - ArtUnc_81: 3.8856419054493195e-08 - ArtUnc_82: -3.6760400909888214e-11 - ArtUnc_83: 1.978891082722819e-08 - ArtUnc_84: -3.067811729035556e-08 - ArtUnc_85: -1.2655550615766943e-08 - ArtUnc_86: -6.924432285300878e-09 - ArtUnc_87: -1.4939796498290833e-08 - ArtUnc_88: 3.768689079174396e-08 - ArtUnc_89: 3.359132245658672e-08 - ArtUnc_90: 1.590444265428233e-08 - ArtUnc_91: -5.957595733315514e-09 - ArtUnc_92: -1.0576092301003206e-09 - ArtUnc_93: 1.3221074939131718e-08 - ArtUnc_94: -5.2314837785566986e-09 - ArtUnc_95: -6.979669883933357e-09 - ArtUnc_96: 1.543753446103767e-10 + Model_1: 7.00035713e+00 + Model_2: 7.00035713e+00 + ModelRW_1: 1.20915260e+01 + ModelRW_2: 1.20915260e+01 + JES_1: 1.15493912e+01 + JES_2: 1.15493912e+01 + ArtUnc_1: 2.85346195e+01 + ArtUnc_2: -7.12386397e+00 + ArtUnc_3: -2.71812656e+00 + ArtUnc_4: -3.89928488e-01 + ArtUnc_5: -6.70746378e-03 + ArtUnc_6: -8.28399921e-03 + ArtUnc_7: 7.56739151e-04 + ArtUnc_8: -2.78558823e-01 + ArtUnc_9: -1.55536976e-03 + ArtUnc_10: 6.84104003e-01 + ArtUnc_11: 2.70398261e-01 + ArtUnc_12: -2.57712058e-02 + ArtUnc_13: -2.01965107e-01 + ArtUnc_14: -6.12457494e-02 + ArtUnc_15: -1.37339881e-01 + ArtUnc_16: 5.55925065e-02 + ArtUnc_17: -3.89149429e-02 + ArtUnc_18: 2.24395465e-02 + ArtUnc_19: -4.61360970e-03 + ArtUnc_20: -5.95523347e-03 + ArtUnc_21: -9.19797110e-04 + ArtUnc_22: -1.56131088e-03 + ArtUnc_23: -5.65780391e-04 + ArtUnc_24: -1.38459489e-04 + ArtUnc_25: 1.58848931e-03 + ArtUnc_26: 2.79987319e-03 + ArtUnc_27: 1.20581995e-02 + ArtUnc_28: 1.04353024e-03 + ArtUnc_29: -8.42384008e-04 + ArtUnc_30: 6.85468576e-03 + ArtUnc_31: 6.56380975e-04 + ArtUnc_32: -3.39772281e-03 + ArtUnc_33: -1.35508439e-03 + ArtUnc_34: -1.89742145e-03 + ArtUnc_35: -3.31359723e-03 + ArtUnc_36: -1.10260719e-03 + ArtUnc_37: -2.11209813e-04 + ArtUnc_38: 1.61117501e-04 + ArtUnc_39: 7.78035464e-06 + ArtUnc_40: -1.09490399e-05 + ArtUnc_41: 8.16245137e-04 + ArtUnc_42: 6.59554373e-04 + ArtUnc_43: -1.92017957e-04 + ArtUnc_44: -2.92390455e-04 + ArtUnc_45: 2.92288579e-04 + ArtUnc_46: -1.49505804e-04 + ArtUnc_47: 3.44655293e-04 + ArtUnc_48: -1.15517173e-04 + ArtUnc_49: -1.70853309e-04 + ArtUnc_50: -1.36446983e-04 + ArtUnc_51: 9.21983170e-06 + ArtUnc_52: -1.49055444e-05 + ArtUnc_53: -1.40308700e-04 + ArtUnc_54: 2.17297315e-05 + ArtUnc_55: 2.55249668e-05 + ArtUnc_56: 1.12255024e-05 + ArtUnc_57: -4.69150449e-06 + ArtUnc_58: 7.61970526e-06 + ArtUnc_59: 9.82546099e-06 + ArtUnc_60: 3.62768553e-06 + ArtUnc_61: -2.39267740e-06 + ArtUnc_62: -2.61754455e-06 + ArtUnc_63: 1.76191894e-06 + ArtUnc_64: -4.09277532e-06 + ArtUnc_65: 4.00747567e-06 + ArtUnc_66: 2.91595243e-06 + ArtUnc_67: -1.08308130e-06 + ArtUnc_68: -3.59652355e-06 + ArtUnc_69: -2.32288617e-06 + ArtUnc_70: 2.57432130e-07 + ArtUnc_71: -1.56133436e-07 + ArtUnc_72: 6.63758012e-08 + ArtUnc_73: -6.87069521e-07 + ArtUnc_74: 8.57427114e-07 + ArtUnc_75: 1.15694858e-07 + ArtUnc_76: -6.43729675e-08 + ArtUnc_77: -1.83707311e-07 + ArtUnc_78: -2.43359934e-07 + ArtUnc_79: 3.01631225e-07 + ArtUnc_80: -1.02466065e-07 + ArtUnc_81: 3.88564191e-08 + ArtUnc_82: -3.67604009e-11 + ArtUnc_83: 1.97889108e-08 + ArtUnc_84: -3.06781173e-08 + ArtUnc_85: -1.26555506e-08 + ArtUnc_86: -6.92443229e-09 + ArtUnc_87: -1.49397965e-08 + ArtUnc_88: 3.76868908e-08 + ArtUnc_89: 3.35913225e-08 + ArtUnc_90: 1.59044427e-08 + ArtUnc_91: -5.95759573e-09 + ArtUnc_92: -1.05760923e-09 + ArtUnc_93: 1.32210749e-08 + ArtUnc_94: -5.23148378e-09 + ArtUnc_95: -6.97966988e-09 + ArtUnc_96: 1.54375345e-10 - stat: 0 Uncorr: 4.38 - RCES: 29.11807397064579 - ElEn: 2.3797552143025134 - ElTh: 1.6590605142670352 - Lumi: 10.950000000000001 + RCES: 2.91180740e+01 + ElEn: 2.37975521e+00 + ElTh: 1.65906051e+00 + Lumi: 1.09500000e+01 LArN: 2.19 - StatMC: 5.825400000000001 - RadErr: 3.5040000000000004 - Model_1: 9.229440550759293 - Model_2: 9.229440550759293 - ModelRW_1: 7.711847976976726 - ModelRW_2: 7.711847976976726 - JES_1: 26.788324028483007 - JES_2: 26.788324028483007 - ArtUnc_1: 2.2970761331390066 - ArtUnc_2: -1.0892033898037916 - ArtUnc_3: -0.4626643792894114 - ArtUnc_4: 0.0034597266768986723 - ArtUnc_5: -0.07024799880322546 - ArtUnc_6: -0.025635496777499604 - ArtUnc_7: -0.0011811538975831683 - ArtUnc_8: 5.698072050451249 - ArtUnc_9: 0.01838660928832924 - ArtUnc_10: -6.02475607507018 - ArtUnc_11: -2.9660838975572674 - ArtUnc_12: 0.509042374153124 - ArtUnc_13: 1.8418379289105533 - ArtUnc_14: 0.5185384503576153 - ArtUnc_15: 1.3053603129533584 - ArtUnc_16: -0.48075482695253724 - ArtUnc_17: 0.3546020620221246 - ArtUnc_18: -0.19000896413705118 - ArtUnc_19: 0.03448455438106577 - ArtUnc_20: 0.0334777718193411 - ArtUnc_21: 0.00667766552088803 - ArtUnc_22: 0.005573150621444783 - ArtUnc_23: 0.0016140948748548712 - ArtUnc_24: 0.000568273667308521 - ArtUnc_25: -0.13949268880938007 - ArtUnc_26: -0.07352578045564359 - ArtUnc_27: -0.1808656512600164 - ArtUnc_28: -0.021260206797389925 - ArtUnc_29: 0.00997221831462979 - ArtUnc_30: -0.09065927398924134 - ArtUnc_31: -0.0006883162712905388 - ArtUnc_32: 0.04229196904252959 - ArtUnc_33: 0.01621967581405243 - ArtUnc_34: 0.027143903368802316 - ArtUnc_35: 0.04350407896178598 - ArtUnc_36: 0.016514706658114008 - ArtUnc_37: 0.0024434123447177863 - ArtUnc_38: -0.002971403779176569 - ArtUnc_39: -0.0007310172834329555 - ArtUnc_40: -0.00021136252877450334 - ArtUnc_41: -0.007160870664322624 - ArtUnc_42: -0.005876951781650189 - ArtUnc_43: 0.0017314514208508819 - ArtUnc_44: 0.002553951127823745 - ArtUnc_45: -0.0025656232271245513 - ArtUnc_46: 0.0011881545478558493 - ArtUnc_47: -0.002804030604187082 - ArtUnc_48: 0.0008879580966485295 - ArtUnc_49: 0.001369146410883418 - ArtUnc_50: 0.0011494198540057063 - ArtUnc_51: -9.055078135816814e-05 - ArtUnc_52: 7.294074042155794e-05 - ArtUnc_53: 0.001181951523907321 - ArtUnc_54: -0.00025362312439836495 - ArtUnc_55: -0.00018472562965263104 - ArtUnc_56: -8.739836558783833e-05 - ArtUnc_57: 4.885657431811609e-05 - ArtUnc_58: -5.51390303127279e-05 - ArtUnc_59: -0.00013839594374450153 - ArtUnc_60: -4.877085515415337e-05 - ArtUnc_61: 4.22707537278272e-05 - ArtUnc_62: 2.8700177521542225e-05 - ArtUnc_63: -2.3803806686567963e-05 - ArtUnc_64: 5.132418586798827e-05 - ArtUnc_65: -5.261628114177895e-05 - ArtUnc_66: -3.88344980812236e-05 - ArtUnc_67: 1.3491744321721498e-05 - ArtUnc_68: 3.7428430802205095e-05 - ArtUnc_69: 2.0431367214919684e-05 - ArtUnc_70: -6.037085275244034e-07 - ArtUnc_71: 7.380420140613976e-07 - ArtUnc_72: -1.1211342621343135e-06 - ArtUnc_73: 7.325768443241816e-06 - ArtUnc_74: -8.916791594335334e-06 - ArtUnc_75: -1.162861834698842e-06 - ArtUnc_76: 6.250625946348806e-07 - ArtUnc_77: 1.82006350343776e-06 - ArtUnc_78: 2.525337070075889e-06 - ArtUnc_79: -3.227347634136641e-06 - ArtUnc_80: 9.159003097231551e-07 - ArtUnc_81: -3.4720463522110955e-07 - ArtUnc_82: 8.063925823509818e-10 - ArtUnc_83: -2.002810595725168e-07 - ArtUnc_84: 2.5676589471883596e-07 - ArtUnc_85: 1.2916345002614888e-07 - ArtUnc_86: 5.406845147989175e-08 - ArtUnc_87: 1.3886480880961782e-07 - ArtUnc_88: -4.220408273270315e-07 - ArtUnc_89: -3.5825707537558045e-07 - ArtUnc_90: -1.3673297886087641e-07 - ArtUnc_91: 5.3828040959303416e-08 - ArtUnc_92: 9.722202506314322e-09 - ArtUnc_93: -1.2730479200691123e-07 - ArtUnc_94: 5.895056924848404e-08 - ArtUnc_95: 3.96949352117729e-08 - ArtUnc_96: 4.001083540114452e-09 + StatMC: 5.82540000e+00 + RadErr: 3.50400000e+00 + Model_1: 9.22944055e+00 + Model_2: 9.22944055e+00 + ModelRW_1: 7.71184798e+00 + ModelRW_2: 7.71184798e+00 + JES_1: 2.67883240e+01 + JES_2: 2.67883240e+01 + ArtUnc_1: 2.29707613e+00 + ArtUnc_2: -1.08920339e+00 + ArtUnc_3: -4.62664379e-01 + ArtUnc_4: 3.45972668e-03 + ArtUnc_5: -7.02479988e-02 + ArtUnc_6: -2.56354968e-02 + ArtUnc_7: -1.18115390e-03 + ArtUnc_8: 5.69807205e+00 + ArtUnc_9: 1.83866093e-02 + ArtUnc_10: -6.02475608e+00 + ArtUnc_11: -2.96608390e+00 + ArtUnc_12: 5.09042374e-01 + ArtUnc_13: 1.84183793e+00 + ArtUnc_14: 5.18538450e-01 + ArtUnc_15: 1.30536031e+00 + ArtUnc_16: -4.80754827e-01 + ArtUnc_17: 3.54602062e-01 + ArtUnc_18: -1.90008964e-01 + ArtUnc_19: 3.44845544e-02 + ArtUnc_20: 3.34777718e-02 + ArtUnc_21: 6.67766552e-03 + ArtUnc_22: 5.57315062e-03 + ArtUnc_23: 1.61409487e-03 + ArtUnc_24: 5.68273667e-04 + ArtUnc_25: -1.39492689e-01 + ArtUnc_26: -7.35257805e-02 + ArtUnc_27: -1.80865651e-01 + ArtUnc_28: -2.12602068e-02 + ArtUnc_29: 9.97221831e-03 + ArtUnc_30: -9.06592740e-02 + ArtUnc_31: -6.88316271e-04 + ArtUnc_32: 4.22919690e-02 + ArtUnc_33: 1.62196758e-02 + ArtUnc_34: 2.71439034e-02 + ArtUnc_35: 4.35040790e-02 + ArtUnc_36: 1.65147067e-02 + ArtUnc_37: 2.44341234e-03 + ArtUnc_38: -2.97140378e-03 + ArtUnc_39: -7.31017283e-04 + ArtUnc_40: -2.11362529e-04 + ArtUnc_41: -7.16087066e-03 + ArtUnc_42: -5.87695178e-03 + ArtUnc_43: 1.73145142e-03 + ArtUnc_44: 2.55395113e-03 + ArtUnc_45: -2.56562323e-03 + ArtUnc_46: 1.18815455e-03 + ArtUnc_47: -2.80403060e-03 + ArtUnc_48: 8.87958097e-04 + ArtUnc_49: 1.36914641e-03 + ArtUnc_50: 1.14941985e-03 + ArtUnc_51: -9.05507814e-05 + ArtUnc_52: 7.29407404e-05 + ArtUnc_53: 1.18195152e-03 + ArtUnc_54: -2.53623124e-04 + ArtUnc_55: -1.84725630e-04 + ArtUnc_56: -8.73983656e-05 + ArtUnc_57: 4.88565743e-05 + ArtUnc_58: -5.51390303e-05 + ArtUnc_59: -1.38395944e-04 + ArtUnc_60: -4.87708552e-05 + ArtUnc_61: 4.22707537e-05 + ArtUnc_62: 2.87001775e-05 + ArtUnc_63: -2.38038067e-05 + ArtUnc_64: 5.13241859e-05 + ArtUnc_65: -5.26162811e-05 + ArtUnc_66: -3.88344981e-05 + ArtUnc_67: 1.34917443e-05 + ArtUnc_68: 3.74284308e-05 + ArtUnc_69: 2.04313672e-05 + ArtUnc_70: -6.03708528e-07 + ArtUnc_71: 7.38042014e-07 + ArtUnc_72: -1.12113426e-06 + ArtUnc_73: 7.32576844e-06 + ArtUnc_74: -8.91679159e-06 + ArtUnc_75: -1.16286183e-06 + ArtUnc_76: 6.25062595e-07 + ArtUnc_77: 1.82006350e-06 + ArtUnc_78: 2.52533707e-06 + ArtUnc_79: -3.22734763e-06 + ArtUnc_80: 9.15900310e-07 + ArtUnc_81: -3.47204635e-07 + ArtUnc_82: 8.06392582e-10 + ArtUnc_83: -2.00281060e-07 + ArtUnc_84: 2.56765895e-07 + ArtUnc_85: 1.29163450e-07 + ArtUnc_86: 5.40684515e-08 + ArtUnc_87: 1.38864809e-07 + ArtUnc_88: -4.22040827e-07 + ArtUnc_89: -3.58257075e-07 + ArtUnc_90: -1.36732979e-07 + ArtUnc_91: 5.38280410e-08 + ArtUnc_92: 9.72220251e-09 + ArtUnc_93: -1.27304792e-07 + ArtUnc_94: 5.89505692e-08 + ArtUnc_95: 3.96949352e-08 + ArtUnc_96: 4.00108354e-09 - stat: 0 Uncorr: 1.06 - RCES: 0.9778894978472771 - ElEn: 0.41448575367556356 - ElTh: 0.23955765485577787 + RCES: 9.77889498e-01 + ElEn: 4.14485754e-01 + ElTh: 2.39557655e-01 Lumi: 2.65 LArN: 0.53 - StatMC: 1.4098000000000002 - RadErr: 0.9646000000000001 - Model_1: 3.6877032852440825 - Model_2: 3.6877032852440825 - ModelRW_1: 2.5184315118740073 - ModelRW_2: 2.5184315118740073 - JES_1: 3.7530643126650527 - JES_2: 3.7530643126650527 - ArtUnc_1: -0.0009965196005386923 - ArtUnc_2: -0.04907637101446047 - ArtUnc_3: -0.04756497054746269 - ArtUnc_4: -0.013756699974385526 - ArtUnc_5: 0.0013405642217313753 - ArtUnc_6: -0.0003866753706473783 - ArtUnc_7: -0.00012760105812504135 - ArtUnc_8: 0.3173188838021138 - ArtUnc_9: 0.0011592755697388047 - ArtUnc_10: -0.45041721817330066 - ArtUnc_11: -0.2137337371651879 - ArtUnc_12: 0.07390984381923797 - ArtUnc_13: 0.15323462967136156 - ArtUnc_14: 0.016725144962614295 - ArtUnc_15: 0.06154109650884441 - ArtUnc_16: 0.0012801800918984287 - ArtUnc_17: -0.010197513896344924 - ArtUnc_18: -0.0036468856197927895 - ArtUnc_19: -0.007440900959471428 - ArtUnc_20: 0.030597234662372387 - ArtUnc_21: 0.01992090985890962 - ArtUnc_22: -0.008080984027201216 - ArtUnc_23: -0.002513702610298424 - ArtUnc_24: 0.0004130954196040905 - ArtUnc_25: -0.7665401298664287 - ArtUnc_26: 0.20904621147775262 - ArtUnc_27: 2.4722660721619834 - ArtUnc_28: -0.2963104198978628 - ArtUnc_29: -0.22890452780055967 - ArtUnc_30: 1.0542185366477073 - ArtUnc_31: -0.028303682128787668 - ArtUnc_32: -0.49320836054377415 - ArtUnc_33: -0.1378857262320036 - ArtUnc_34: -0.27841141169946304 - ArtUnc_35: -0.4738975981671955 - ArtUnc_36: -0.17395524785262387 - ArtUnc_37: -0.02944182617674767 - ArtUnc_38: 0.029621854680974245 - ArtUnc_39: 0.0037937596643816225 - ArtUnc_40: 0.0006171169738548413 - ArtUnc_41: 0.07130678915444527 - ArtUnc_42: 0.09783409895430999 - ArtUnc_43: -0.0025186435155468063 - ArtUnc_44: -0.025573406243681544 - ArtUnc_45: 0.03679531486118474 - ArtUnc_46: -0.003224507487493442 - ArtUnc_47: 0.022428942333149793 - ArtUnc_48: 0.0027457022023610472 - ArtUnc_49: -0.013380306228957847 - ArtUnc_50: -0.01680463061811569 - ArtUnc_51: 0.0006300547084760256 - ArtUnc_52: -0.0005791249759598666 - ArtUnc_53: -0.016114514223097707 - ArtUnc_54: 0.005240293819542083 - ArtUnc_55: 0.002967708631284937 - ArtUnc_56: 0.00019026322521595404 - ArtUnc_57: 0.0002804429750602793 - ArtUnc_58: -0.001894443931454924 - ArtUnc_59: 0.0013271820680700766 - ArtUnc_60: 0.00035204867711393067 - ArtUnc_61: -0.0014031938044521107 - ArtUnc_62: 0.000288213901971008 - ArtUnc_63: 0.0005940507007868716 - ArtUnc_64: -8.618144975369645e-05 - ArtUnc_65: 0.0002762138691505921 - ArtUnc_66: 0.0008705951659873383 - ArtUnc_67: -0.0002900155986531886 - ArtUnc_68: -0.001088372977162145 - ArtUnc_69: -0.0005855436480218688 - ArtUnc_70: 3.891221637388164e-05 - ArtUnc_71: -0.00010782019438672507 - ArtUnc_72: 7.085871654984114e-05 - ArtUnc_73: -9.26754934375886e-06 - ArtUnc_74: 1.0338450946933556e-05 - ArtUnc_75: 2.5984669077553655e-06 - ArtUnc_76: -3.7953189242014587e-06 - ArtUnc_77: -6.080111235031745e-06 - ArtUnc_78: -1.145943283772544e-05 - ArtUnc_79: 1.3531736033285865e-05 - ArtUnc_80: 4.785256084644365e-06 - ArtUnc_81: -1.4476474117618153e-06 - ArtUnc_82: 8.717567938832361e-09 - ArtUnc_83: 2.1625432339056964e-06 - ArtUnc_84: 1.4245958021681639e-06 - ArtUnc_85: -1.5918227317219126e-06 - ArtUnc_86: 2.033747431831262e-06 - ArtUnc_87: 1.5086338157833956e-06 - ArtUnc_88: 1.705818229522455e-06 - ArtUnc_89: 1.6382068061899532e-06 - ArtUnc_90: -2.8779633835803196e-07 - ArtUnc_91: 4.3439631693636184e-07 - ArtUnc_92: 6.715287876035183e-08 - ArtUnc_93: -5.728647448855988e-08 - ArtUnc_94: -7.621759654344934e-07 - ArtUnc_95: 4.1672703857164295e-08 - ArtUnc_96: -2.8880854045615154e-07 + StatMC: 1.40980000e+00 + RadErr: 9.64600000e-01 + Model_1: 3.68770329e+00 + Model_2: 3.68770329e+00 + ModelRW_1: 2.51843151e+00 + ModelRW_2: 2.51843151e+00 + JES_1: 3.75306431e+00 + JES_2: 3.75306431e+00 + ArtUnc_1: -9.96519601e-04 + ArtUnc_2: -4.90763710e-02 + ArtUnc_3: -4.75649705e-02 + ArtUnc_4: -1.37567000e-02 + ArtUnc_5: 1.34056422e-03 + ArtUnc_6: -3.86675371e-04 + ArtUnc_7: -1.27601058e-04 + ArtUnc_8: 3.17318884e-01 + ArtUnc_9: 1.15927557e-03 + ArtUnc_10: -4.50417218e-01 + ArtUnc_11: -2.13733737e-01 + ArtUnc_12: 7.39098438e-02 + ArtUnc_13: 1.53234630e-01 + ArtUnc_14: 1.67251450e-02 + ArtUnc_15: 6.15410965e-02 + ArtUnc_16: 1.28018009e-03 + ArtUnc_17: -1.01975139e-02 + ArtUnc_18: -3.64688562e-03 + ArtUnc_19: -7.44090096e-03 + ArtUnc_20: 3.05972347e-02 + ArtUnc_21: 1.99209099e-02 + ArtUnc_22: -8.08098403e-03 + ArtUnc_23: -2.51370261e-03 + ArtUnc_24: 4.13095420e-04 + ArtUnc_25: -7.66540130e-01 + ArtUnc_26: 2.09046211e-01 + ArtUnc_27: 2.47226607e+00 + ArtUnc_28: -2.96310420e-01 + ArtUnc_29: -2.28904528e-01 + ArtUnc_30: 1.05421854e+00 + ArtUnc_31: -2.83036821e-02 + ArtUnc_32: -4.93208361e-01 + ArtUnc_33: -1.37885726e-01 + ArtUnc_34: -2.78411412e-01 + ArtUnc_35: -4.73897598e-01 + ArtUnc_36: -1.73955248e-01 + ArtUnc_37: -2.94418262e-02 + ArtUnc_38: 2.96218547e-02 + ArtUnc_39: 3.79375966e-03 + ArtUnc_40: 6.17116974e-04 + ArtUnc_41: 7.13067892e-02 + ArtUnc_42: 9.78340990e-02 + ArtUnc_43: -2.51864352e-03 + ArtUnc_44: -2.55734062e-02 + ArtUnc_45: 3.67953149e-02 + ArtUnc_46: -3.22450749e-03 + ArtUnc_47: 2.24289423e-02 + ArtUnc_48: 2.74570220e-03 + ArtUnc_49: -1.33803062e-02 + ArtUnc_50: -1.68046306e-02 + ArtUnc_51: 6.30054708e-04 + ArtUnc_52: -5.79124976e-04 + ArtUnc_53: -1.61145142e-02 + ArtUnc_54: 5.24029382e-03 + ArtUnc_55: 2.96770863e-03 + ArtUnc_56: 1.90263225e-04 + ArtUnc_57: 2.80442975e-04 + ArtUnc_58: -1.89444393e-03 + ArtUnc_59: 1.32718207e-03 + ArtUnc_60: 3.52048677e-04 + ArtUnc_61: -1.40319380e-03 + ArtUnc_62: 2.88213902e-04 + ArtUnc_63: 5.94050701e-04 + ArtUnc_64: -8.61814498e-05 + ArtUnc_65: 2.76213869e-04 + ArtUnc_66: 8.70595166e-04 + ArtUnc_67: -2.90015599e-04 + ArtUnc_68: -1.08837298e-03 + ArtUnc_69: -5.85543648e-04 + ArtUnc_70: 3.89122164e-05 + ArtUnc_71: -1.07820194e-04 + ArtUnc_72: 7.08587165e-05 + ArtUnc_73: -9.26754934e-06 + ArtUnc_74: 1.03384509e-05 + ArtUnc_75: 2.59846691e-06 + ArtUnc_76: -3.79531892e-06 + ArtUnc_77: -6.08011124e-06 + ArtUnc_78: -1.14594328e-05 + ArtUnc_79: 1.35317360e-05 + ArtUnc_80: 4.78525608e-06 + ArtUnc_81: -1.44764741e-06 + ArtUnc_82: 8.71756794e-09 + ArtUnc_83: 2.16254323e-06 + ArtUnc_84: 1.42459580e-06 + ArtUnc_85: -1.59182273e-06 + ArtUnc_86: 2.03374743e-06 + ArtUnc_87: 1.50863382e-06 + ArtUnc_88: 1.70581823e-06 + ArtUnc_89: 1.63820681e-06 + ArtUnc_90: -2.87796338e-07 + ArtUnc_91: 4.34396317e-07 + ArtUnc_92: 6.71528788e-08 + ArtUnc_93: -5.72864745e-08 + ArtUnc_94: -7.62175965e-07 + ArtUnc_95: 4.16727039e-08 + ArtUnc_96: -2.88808540e-07 - stat: 0 - Uncorr: 0.18100000000000002 - RCES: 0.1497686137847313 - ElEn: 0.04950275547886199 - ElTh: 0.0810417267523342 + Uncorr: 1.81000000e-01 + RCES: 1.49768614e-01 + ElEn: 4.95027555e-02 + ElTh: 8.10417268e-02 Lumi: 0.4525 - LArN: 0.09050000000000001 - StatMC: 0.4325900000000001 + LArN: 9.05000000e-02 + StatMC: 4.32590000e-01 RadErr: 0.15928 - Model_1: 0.5413821648798565 - Model_2: 0.5413821648798565 - ModelRW_1: 0.6232934144125061 - ModelRW_2: 0.6232934144125061 - JES_1: 0.6682087586226328 - JES_2: 0.6682087586226328 - ArtUnc_1: 0.00048222324563112264 - ArtUnc_2: -0.0004548193660647549 - ArtUnc_3: -0.000286514996135342 - ArtUnc_4: -5.045932370756765e-06 - ArtUnc_5: -6.963204243240928e-05 - ArtUnc_6: -3.525407986559304e-05 - ArtUnc_7: -7.335364812501672e-07 - ArtUnc_8: 0.011353917117131688 - ArtUnc_9: 4.218063182166823e-05 - ArtUnc_10: -0.015707934389066265 - ArtUnc_11: -0.009803885316949498 - ArtUnc_12: 0.0021536993705559898 - ArtUnc_13: 0.007532844337655942 - ArtUnc_14: 0.0021950944042568683 - ArtUnc_15: 0.006046097250410134 - ArtUnc_16: -0.0023116927991033214 - ArtUnc_17: 0.0017171120266754247 - ArtUnc_18: -0.0010288977453566045 - ArtUnc_19: 0.00011311504002460291 - ArtUnc_20: 0.0005321726757171317 - ArtUnc_21: 0.00031996106432853085 - ArtUnc_22: -9.235564886922412e-05 - ArtUnc_23: -4.181140486276274e-05 - ArtUnc_24: 1.90347021989865e-05 - ArtUnc_25: -0.020487758169369312 - ArtUnc_26: 0.011574866257633931 - ArtUnc_27: 0.08912912698772603 - ArtUnc_28: -0.008665626267010482 - ArtUnc_29: -0.006635338253216263 - ArtUnc_30: 0.027945876812184477 - ArtUnc_31: -0.0009772297497179653 - ArtUnc_32: -0.010216142199216087 - ArtUnc_33: -0.002845330035767449 - ArtUnc_34: -0.005570333273645624 - ArtUnc_35: -0.009662654568296104 - ArtUnc_36: -0.004528737722651677 - ArtUnc_37: -0.0012038460339396265 - ArtUnc_38: 0.0018731277432525726 - ArtUnc_39: 0.0008503564209471586 - ArtUnc_40: 0.00013844562202529199 - ArtUnc_41: 0.6638495686437801 - ArtUnc_42: -0.5706914172500034 - ArtUnc_43: -0.37756148387400784 - ArtUnc_44: -0.03501730818425852 - ArtUnc_45: -0.22079268371283536 - ArtUnc_46: -0.1555648662556946 - ArtUnc_47: 0.03878286742300583 - ArtUnc_48: -0.17923666489526285 - ArtUnc_49: 0.05428378152839977 - ArtUnc_50: 0.1324244338946672 - ArtUnc_51: -0.003416335306031974 - ArtUnc_52: 0.007711552695186313 - ArtUnc_53: 0.13148541911448347 - ArtUnc_54: -0.04808237290860438 - ArtUnc_55: -0.03475140647080258 - ArtUnc_56: 0.003634129374122391 - ArtUnc_57: -0.008015429032455383 - ArtUnc_58: 0.042966783029020544 - ArtUnc_59: -0.021593356391989723 - ArtUnc_60: -0.005088828565798671 - ArtUnc_61: 0.024094100946153038 - ArtUnc_62: -0.006406534115997293 - ArtUnc_63: -0.009260583805346423 - ArtUnc_64: -0.0007324592001938286 - ArtUnc_65: -0.0023102409510445 - ArtUnc_66: -0.011795995784537529 - ArtUnc_67: 0.003798810760947751 - ArtUnc_68: 0.014005992450295192 - ArtUnc_69: 0.0072733152673920285 - ArtUnc_70: -0.0004229394256654641 - ArtUnc_71: 0.0014663376725319356 - ArtUnc_72: -0.0009929230225179458 - ArtUnc_73: 0.00011844704664039685 - ArtUnc_74: -0.00023022953652054892 - ArtUnc_75: -5.280533255611597e-05 - ArtUnc_76: 5.8320312563038125e-05 - ArtUnc_77: 0.00013664656253665832 - ArtUnc_78: 0.00022585533316878535 - ArtUnc_79: -0.0003222283740101118 - ArtUnc_80: -8.560658591625873e-05 - ArtUnc_81: 2.7635731751347974e-05 - ArtUnc_82: -1.4471079941616133e-07 - ArtUnc_83: -4.8492427455588045e-05 - ArtUnc_84: -2.7385198275194944e-05 - ArtUnc_85: 3.691156820800699e-05 - ArtUnc_86: -4.585635645987649e-05 - ArtUnc_87: -3.282889882737541e-05 - ArtUnc_88: -3.2808291692027684e-05 - ArtUnc_89: -5.063474698032896e-05 - ArtUnc_90: 5.940492185626315e-06 - ArtUnc_91: -9.96937532891693e-06 - ArtUnc_92: -1.5861418317524066e-06 - ArtUnc_93: 1.394519710889056e-05 - ArtUnc_94: 1.976061848848542e-05 - ArtUnc_95: 5.415803724684479e-06 - ArtUnc_96: 8.099606377266068e-06 + Model_1: 5.41382165e-01 + Model_2: 5.41382165e-01 + ModelRW_1: 6.23293414e-01 + ModelRW_2: 6.23293414e-01 + JES_1: 6.68208759e-01 + JES_2: 6.68208759e-01 + ArtUnc_1: 4.82223246e-04 + ArtUnc_2: -4.54819366e-04 + ArtUnc_3: -2.86514996e-04 + ArtUnc_4: -5.04593237e-06 + ArtUnc_5: -6.96320424e-05 + ArtUnc_6: -3.52540799e-05 + ArtUnc_7: -7.33536481e-07 + ArtUnc_8: 1.13539171e-02 + ArtUnc_9: 4.21806318e-05 + ArtUnc_10: -1.57079344e-02 + ArtUnc_11: -9.80388532e-03 + ArtUnc_12: 2.15369937e-03 + ArtUnc_13: 7.53284434e-03 + ArtUnc_14: 2.19509440e-03 + ArtUnc_15: 6.04609725e-03 + ArtUnc_16: -2.31169280e-03 + ArtUnc_17: 1.71711203e-03 + ArtUnc_18: -1.02889775e-03 + ArtUnc_19: 1.13115040e-04 + ArtUnc_20: 5.32172676e-04 + ArtUnc_21: 3.19961064e-04 + ArtUnc_22: -9.23556489e-05 + ArtUnc_23: -4.18114049e-05 + ArtUnc_24: 1.90347022e-05 + ArtUnc_25: -2.04877582e-02 + ArtUnc_26: 1.15748663e-02 + ArtUnc_27: 8.91291270e-02 + ArtUnc_28: -8.66562627e-03 + ArtUnc_29: -6.63533825e-03 + ArtUnc_30: 2.79458768e-02 + ArtUnc_31: -9.77229750e-04 + ArtUnc_32: -1.02161422e-02 + ArtUnc_33: -2.84533004e-03 + ArtUnc_34: -5.57033327e-03 + ArtUnc_35: -9.66265457e-03 + ArtUnc_36: -4.52873772e-03 + ArtUnc_37: -1.20384603e-03 + ArtUnc_38: 1.87312774e-03 + ArtUnc_39: 8.50356421e-04 + ArtUnc_40: 1.38445622e-04 + ArtUnc_41: 6.63849569e-01 + ArtUnc_42: -5.70691417e-01 + ArtUnc_43: -3.77561484e-01 + ArtUnc_44: -3.50173082e-02 + ArtUnc_45: -2.20792684e-01 + ArtUnc_46: -1.55564866e-01 + ArtUnc_47: 3.87828674e-02 + ArtUnc_48: -1.79236665e-01 + ArtUnc_49: 5.42837815e-02 + ArtUnc_50: 1.32424434e-01 + ArtUnc_51: -3.41633531e-03 + ArtUnc_52: 7.71155270e-03 + ArtUnc_53: 1.31485419e-01 + ArtUnc_54: -4.80823729e-02 + ArtUnc_55: -3.47514065e-02 + ArtUnc_56: 3.63412937e-03 + ArtUnc_57: -8.01542903e-03 + ArtUnc_58: 4.29667830e-02 + ArtUnc_59: -2.15933564e-02 + ArtUnc_60: -5.08882857e-03 + ArtUnc_61: 2.40941009e-02 + ArtUnc_62: -6.40653412e-03 + ArtUnc_63: -9.26058381e-03 + ArtUnc_64: -7.32459200e-04 + ArtUnc_65: -2.31024095e-03 + ArtUnc_66: -1.17959958e-02 + ArtUnc_67: 3.79881076e-03 + ArtUnc_68: 1.40059925e-02 + ArtUnc_69: 7.27331527e-03 + ArtUnc_70: -4.22939426e-04 + ArtUnc_71: 1.46633767e-03 + ArtUnc_72: -9.92923023e-04 + ArtUnc_73: 1.18447047e-04 + ArtUnc_74: -2.30229537e-04 + ArtUnc_75: -5.28053326e-05 + ArtUnc_76: 5.83203126e-05 + ArtUnc_77: 1.36646563e-04 + ArtUnc_78: 2.25855333e-04 + ArtUnc_79: -3.22228374e-04 + ArtUnc_80: -8.56065859e-05 + ArtUnc_81: 2.76357318e-05 + ArtUnc_82: -1.44710799e-07 + ArtUnc_83: -4.84924275e-05 + ArtUnc_84: -2.73851983e-05 + ArtUnc_85: 3.69115682e-05 + ArtUnc_86: -4.58563565e-05 + ArtUnc_87: -3.28288988e-05 + ArtUnc_88: -3.28082917e-05 + ArtUnc_89: -5.06347470e-05 + ArtUnc_90: 5.94049219e-06 + ArtUnc_91: -9.96937533e-06 + ArtUnc_92: -1.58614183e-06 + ArtUnc_93: 1.39451971e-05 + ArtUnc_94: 1.97606185e-05 + ArtUnc_95: 5.41580372e-06 + ArtUnc_96: 8.09960638e-06 - stat: 0 Uncorr: 0.0216 - RCES: 0.05579368222299009 - ElEn: 0.013776668973304106 - ElTh: 0.019121490736864637 - Lumi: 0.054000000000000006 + RCES: 5.57936822e-02 + ElEn: 1.37766690e-02 + ElTh: 1.91214907e-02 + Lumi: 5.40000000e-02 LArN: 0.0108 StatMC: 0.135432 - RadErr: 0.032184000000000004 - Model_1: 0.0989723219491187 - Model_2: 0.0989723219491187 - ModelRW_1: 0.09301565442440321 - ModelRW_2: 0.09301565442440321 - JES_1: 0.12244914072381236 - JES_2: 0.12244914072381236 - ArtUnc_1: 8.284240535459942e-05 - ArtUnc_2: -7.143652520747553e-05 - ArtUnc_3: -4.2939106416322474e-05 - ArtUnc_4: 9.189147705604213e-07 - ArtUnc_5: -1.168392477351611e-05 - ArtUnc_6: -5.437220127116407e-06 - ArtUnc_7: -3.186788680124188e-07 - ArtUnc_8: 0.0017507675790445158 - ArtUnc_9: 6.3208949947927375e-06 - ArtUnc_10: -0.0023152786563023693 - ArtUnc_11: -0.001512260185718958 - ArtUnc_12: 0.0002867266414185476 - ArtUnc_13: 0.0011707137810086823 - ArtUnc_14: 0.00037400319118526687 - ArtUnc_15: 0.0010149982650403862 - ArtUnc_16: -0.0004244565163130159 - ArtUnc_17: 0.00034015178709396565 - ArtUnc_18: -0.000192932820089954 - ArtUnc_19: 4.354511051629244e-05 - ArtUnc_20: 3.082354649563666e-05 - ArtUnc_21: 1.7465997797400437e-06 - ArtUnc_22: 1.2057399180159132e-05 - ArtUnc_23: 4.491744744461753e-06 - ArtUnc_24: 9.79744710611963e-07 - ArtUnc_25: 0.000207381057035519 - ArtUnc_26: -0.0004230761354287319 - ArtUnc_27: -0.0031937538950595834 - ArtUnc_28: 0.0002789218703015377 - ArtUnc_29: 0.0003826943616382765 - ArtUnc_30: -0.0021125763707275347 - ArtUnc_31: 4.634065252060755e-05 - ArtUnc_32: 0.0012541085350820632 - ArtUnc_33: 0.0003780885952905535 - ArtUnc_34: 0.0008401347196628806 - ArtUnc_35: 0.0014372357214196374 - ArtUnc_36: 0.0005759556505313191 - ArtUnc_37: 9.800053871621878e-05 - ArtUnc_38: -0.0001049586563108525 - ArtUnc_39: -1.4606526390462278e-05 - ArtUnc_40: -3.996192469797755e-06 - ArtUnc_41: 0.011750948973270116 - ArtUnc_42: -0.015575601828048118 - ArtUnc_43: -0.004189188127765207 - ArtUnc_44: 0.0011989486168144544 - ArtUnc_45: -0.002337986903522328 - ArtUnc_46: 0.00015453013196292003 - ArtUnc_47: -0.0005559318681489714 - ArtUnc_48: 2.7101397601735106e-05 - ArtUnc_49: -0.00020626001420911725 - ArtUnc_50: -5.820870463632121e-05 - ArtUnc_51: -1.6662171501764027e-05 - ArtUnc_52: 2.5544439689513627e-05 - ArtUnc_53: -0.00014939065649154743 - ArtUnc_54: -9.672127646801581e-05 - ArtUnc_55: -1.1098661883805367e-05 - ArtUnc_56: 1.7388712030098158e-05 - ArtUnc_57: -0.11990698671213583 - ArtUnc_58: 0.1630472526295877 - ArtUnc_59: 0.23306723240397223 - ArtUnc_60: 0.08346872670813442 - ArtUnc_61: -0.05613004221263735 - ArtUnc_62: -0.0518004490850811 - ArtUnc_63: 0.030589435370586383 - ArtUnc_64: -0.08155023196137762 - ArtUnc_65: 0.07903336729866912 - ArtUnc_66: 0.04530305726093659 - ArtUnc_67: -0.013349390116759653 - ArtUnc_68: -0.0264080500996915 - ArtUnc_69: -0.012559102862259136 - ArtUnc_70: 0.0011507880480598309 - ArtUnc_71: -0.00039464089688755454 - ArtUnc_72: 0.0015003052226943954 - ArtUnc_73: -0.01664476478326977 - ArtUnc_74: 0.017515386373661138 - ArtUnc_75: 0.0022558265607425716 - ArtUnc_76: 0.00046133251513093 - ArtUnc_77: -0.0034936131326428277 - ArtUnc_78: -0.0026908293071845365 - ArtUnc_79: 0.006560964965245572 - ArtUnc_80: 0.0009448181700934723 - ArtUnc_81: -0.00044521757762517754 - ArtUnc_82: 9.185677018507984e-08 - ArtUnc_83: -0.00011809609694401655 - ArtUnc_84: 0.0005436643903216629 - ArtUnc_85: 6.648844060157769e-05 - ArtUnc_86: 4.8256104908536475e-05 - ArtUnc_87: 7.071954635315663e-05 - ArtUnc_88: 0.00035533421302064275 - ArtUnc_89: 0.00101065159677701 - ArtUnc_90: -0.00013932834585073713 - ArtUnc_91: 2.375834640852458e-05 - ArtUnc_92: 3.920061732908886e-06 - ArtUnc_93: -4.664789298303528e-05 - ArtUnc_94: -0.0005146245491329366 - ArtUnc_95: -0.00012595303709050904 - ArtUnc_96: 1.3968545028191379e-06 + RadErr: 3.21840000e-02 + Model_1: 9.89723219e-02 + Model_2: 9.89723219e-02 + ModelRW_1: 9.30156544e-02 + ModelRW_2: 9.30156544e-02 + JES_1: 1.22449141e-01 + JES_2: 1.22449141e-01 + ArtUnc_1: 8.28424054e-05 + ArtUnc_2: -7.14365252e-05 + ArtUnc_3: -4.29391064e-05 + ArtUnc_4: 9.18914771e-07 + ArtUnc_5: -1.16839248e-05 + ArtUnc_6: -5.43722013e-06 + ArtUnc_7: -3.18678868e-07 + ArtUnc_8: 1.75076758e-03 + ArtUnc_9: 6.32089499e-06 + ArtUnc_10: -2.31527866e-03 + ArtUnc_11: -1.51226019e-03 + ArtUnc_12: 2.86726641e-04 + ArtUnc_13: 1.17071378e-03 + ArtUnc_14: 3.74003191e-04 + ArtUnc_15: 1.01499827e-03 + ArtUnc_16: -4.24456516e-04 + ArtUnc_17: 3.40151787e-04 + ArtUnc_18: -1.92932820e-04 + ArtUnc_19: 4.35451105e-05 + ArtUnc_20: 3.08235465e-05 + ArtUnc_21: 1.74659978e-06 + ArtUnc_22: 1.20573992e-05 + ArtUnc_23: 4.49174474e-06 + ArtUnc_24: 9.79744711e-07 + ArtUnc_25: 2.07381057e-04 + ArtUnc_26: -4.23076135e-04 + ArtUnc_27: -3.19375390e-03 + ArtUnc_28: 2.78921870e-04 + ArtUnc_29: 3.82694362e-04 + ArtUnc_30: -2.11257637e-03 + ArtUnc_31: 4.63406525e-05 + ArtUnc_32: 1.25410854e-03 + ArtUnc_33: 3.78088595e-04 + ArtUnc_34: 8.40134720e-04 + ArtUnc_35: 1.43723572e-03 + ArtUnc_36: 5.75955651e-04 + ArtUnc_37: 9.80005387e-05 + ArtUnc_38: -1.04958656e-04 + ArtUnc_39: -1.46065264e-05 + ArtUnc_40: -3.99619247e-06 + ArtUnc_41: 1.17509490e-02 + ArtUnc_42: -1.55756018e-02 + ArtUnc_43: -4.18918813e-03 + ArtUnc_44: 1.19894862e-03 + ArtUnc_45: -2.33798690e-03 + ArtUnc_46: 1.54530132e-04 + ArtUnc_47: -5.55931868e-04 + ArtUnc_48: 2.71013976e-05 + ArtUnc_49: -2.06260014e-04 + ArtUnc_50: -5.82087046e-05 + ArtUnc_51: -1.66621715e-05 + ArtUnc_52: 2.55444397e-05 + ArtUnc_53: -1.49390656e-04 + ArtUnc_54: -9.67212765e-05 + ArtUnc_55: -1.10986619e-05 + ArtUnc_56: 1.73887120e-05 + ArtUnc_57: -1.19906987e-01 + ArtUnc_58: 1.63047253e-01 + ArtUnc_59: 2.33067232e-01 + ArtUnc_60: 8.34687267e-02 + ArtUnc_61: -5.61300422e-02 + ArtUnc_62: -5.18004491e-02 + ArtUnc_63: 3.05894354e-02 + ArtUnc_64: -8.15502320e-02 + ArtUnc_65: 7.90333673e-02 + ArtUnc_66: 4.53030573e-02 + ArtUnc_67: -1.33493901e-02 + ArtUnc_68: -2.64080501e-02 + ArtUnc_69: -1.25591029e-02 + ArtUnc_70: 1.15078805e-03 + ArtUnc_71: -3.94640897e-04 + ArtUnc_72: 1.50030522e-03 + ArtUnc_73: -1.66447648e-02 + ArtUnc_74: 1.75153864e-02 + ArtUnc_75: 2.25582656e-03 + ArtUnc_76: 4.61332515e-04 + ArtUnc_77: -3.49361313e-03 + ArtUnc_78: -2.69082931e-03 + ArtUnc_79: 6.56096497e-03 + ArtUnc_80: 9.44818170e-04 + ArtUnc_81: -4.45217578e-04 + ArtUnc_82: 9.18567702e-08 + ArtUnc_83: -1.18096097e-04 + ArtUnc_84: 5.43664390e-04 + ArtUnc_85: 6.64884406e-05 + ArtUnc_86: 4.82561049e-05 + ArtUnc_87: 7.07195464e-05 + ArtUnc_88: 3.55334213e-04 + ArtUnc_89: 1.01065160e-03 + ArtUnc_90: -1.39328346e-04 + ArtUnc_91: 2.37583464e-05 + ArtUnc_92: 3.92006173e-06 + ArtUnc_93: -4.66478930e-05 + ArtUnc_94: -5.14624549e-04 + ArtUnc_95: -1.25953037e-04 + ArtUnc_96: 1.39685450e-06 - stat: 0 - Uncorr: 0.0032600000000000003 - RCES: 0.008554798430705425 - ElEn: 0.010233856053316365 - ElTh: 0.003831678967502367 - Lumi: 0.008150000000000001 - LArN: 0.0016300000000000002 - StatMC: 0.0464224 - RadErr: 0.008736800000000001 - Model_1: 0.027754224004284466 - Model_2: 0.027754224004284466 - ModelRW_1: 0.0016136176746677012 - ModelRW_2: 0.0016136176746677012 - JES_1: 0.0276391170013624 - JES_2: 0.0276391170013624 - ArtUnc_1: -8.737694534121229e-10 - ArtUnc_2: 1.6464594064326736e-09 - ArtUnc_3: 1.5950511990295304e-09 - ArtUnc_4: 1.3040974115525698e-10 - ArtUnc_5: 5.508080194611627e-10 - ArtUnc_6: 3.7671139816293967e-10 - ArtUnc_7: 1.2766550907783893e-11 - ArtUnc_8: -1.8318554335628124e-07 - ArtUnc_9: -7.598415241707395e-10 - ArtUnc_10: 3.172515480713788e-07 - ArtUnc_11: 2.644748786934402e-07 - ArtUnc_12: -5.490758663839249e-08 - ArtUnc_13: -2.718473923425416e-07 - ArtUnc_14: -9.213717981691248e-08 - ArtUnc_15: -2.724363299357123e-07 - ArtUnc_16: 1.2069090292989235e-07 - ArtUnc_17: -9.887766630843156e-08 - ArtUnc_18: 6.492169166509936e-08 - ArtUnc_19: -1.0089425732864725e-08 - ArtUnc_20: -3.7827776916724463e-08 - ArtUnc_21: -2.494253881503824e-08 - ArtUnc_22: 7.18207777277124e-09 - ArtUnc_23: 4.737266987816121e-09 - ArtUnc_24: -2.6786010019964452e-09 - ArtUnc_25: 2.9575991000873583e-06 - ArtUnc_26: -2.4109347240891293e-06 - ArtUnc_27: -1.958960032609601e-05 - ArtUnc_28: 2.1605117264882275e-06 - ArtUnc_29: 1.866721069826176e-06 - ArtUnc_30: -8.22057669927223e-06 - ArtUnc_31: 3.1484995192426904e-07 - ArtUnc_32: 3.566962795179308e-06 - ArtUnc_33: 9.910532595307408e-07 - ArtUnc_34: 2.229321892986007e-06 - ArtUnc_35: 3.9884951668698356e-06 - ArtUnc_36: 2.166989013651135e-06 - ArtUnc_37: 6.645354509858519e-07 - ArtUnc_38: -1.137071138773637e-06 - ArtUnc_39: -6.259626810669443e-07 - ArtUnc_40: -1.139598981579064e-07 - ArtUnc_41: -0.0011137227426165804 - ArtUnc_42: 0.001141607145327739 - ArtUnc_43: 0.0008346508307614627 - ArtUnc_44: 8.601943478581479e-05 - ArtUnc_45: 0.0005798205279119543 - ArtUnc_46: 0.0004383472277824721 - ArtUnc_47: -0.00012074281722239596 - ArtUnc_48: 0.000552874931580836 - ArtUnc_49: -0.00017207676192544896 - ArtUnc_50: -0.0004507527380131608 - ArtUnc_51: 2.508999491499608e-05 - ArtUnc_52: -4.8123543900225626e-05 - ArtUnc_53: -0.0004876302466361276 - ArtUnc_54: 0.00018684558503821334 - ArtUnc_55: 0.00015388762592659022 - ArtUnc_56: -1.8186981887229775e-05 - ArtUnc_57: -0.004004969220651377 - ArtUnc_58: 0.003607266408108926 - ArtUnc_59: 0.004505974454370048 - ArtUnc_60: 0.001345496970059587 - ArtUnc_61: -0.0008187221344207724 - ArtUnc_62: -0.0003112304944000799 - ArtUnc_63: 0.0002862908683742685 - ArtUnc_64: -0.0003152481406459922 - ArtUnc_65: 0.0003683638836481357 - ArtUnc_66: 0.0002982348981041299 - ArtUnc_67: -0.0001502387558411166 - ArtUnc_68: -0.0006147404317045237 - ArtUnc_69: -0.0005233603568172246 - ArtUnc_70: 0.00019697460472897514 - ArtUnc_71: -8.244916610588482e-05 - ArtUnc_72: 0.00014985939363457848 - ArtUnc_73: 0.0038048183334672874 - ArtUnc_74: -0.0007028573295874387 - ArtUnc_75: 0.0011840866023422926 - ArtUnc_76: 0.02835348160110081 - ArtUnc_77: -0.005216149143439307 - ArtUnc_78: 0.06222596545671097 - ArtUnc_79: 0.015037693794521264 - ArtUnc_80: -0.026302069053068946 - ArtUnc_81: 0.01476780276571734 - ArtUnc_82: -1.1729779388745412e-06 - ArtUnc_83: -0.006403768686471221 - ArtUnc_84: -0.017996315182303557 - ArtUnc_85: 0.004758655675668427 - ArtUnc_86: -0.005074421813299028 - ArtUnc_87: -0.002829751264937561 - ArtUnc_88: -0.04337537829452347 - ArtUnc_89: -0.029379583624767714 - ArtUnc_90: 0.007388117062249002 - ArtUnc_91: -0.0007635967238545224 - ArtUnc_92: -0.00010334804503274076 - ArtUnc_93: -0.030648055619916178 - ArtUnc_94: 0.01331203105244284 - ArtUnc_95: 0.0008653673756013533 - ArtUnc_96: 0.001045600489105698 + Uncorr: 3.26000000e-03 + RCES: 8.55479843e-03 + ElEn: 1.02338561e-02 + ElTh: 3.83167897e-03 + Lumi: 8.15000000e-03 + LArN: 1.63000000e-03 + StatMC: 4.64224000e-02 + RadErr: 8.73680000e-03 + Model_1: 2.77542240e-02 + Model_2: 2.77542240e-02 + ModelRW_1: 1.61361767e-03 + ModelRW_2: 1.61361767e-03 + JES_1: 2.76391170e-02 + JES_2: 2.76391170e-02 + ArtUnc_1: -8.73769453e-10 + ArtUnc_2: 1.64645941e-09 + ArtUnc_3: 1.59505120e-09 + ArtUnc_4: 1.30409741e-10 + ArtUnc_5: 5.50808019e-10 + ArtUnc_6: 3.76711398e-10 + ArtUnc_7: 1.27665509e-11 + ArtUnc_8: -1.83185543e-07 + ArtUnc_9: -7.59841524e-10 + ArtUnc_10: 3.17251548e-07 + ArtUnc_11: 2.64474879e-07 + ArtUnc_12: -5.49075866e-08 + ArtUnc_13: -2.71847392e-07 + ArtUnc_14: -9.21371798e-08 + ArtUnc_15: -2.72436330e-07 + ArtUnc_16: 1.20690903e-07 + ArtUnc_17: -9.88776663e-08 + ArtUnc_18: 6.49216917e-08 + ArtUnc_19: -1.00894257e-08 + ArtUnc_20: -3.78277769e-08 + ArtUnc_21: -2.49425388e-08 + ArtUnc_22: 7.18207777e-09 + ArtUnc_23: 4.73726699e-09 + ArtUnc_24: -2.67860100e-09 + ArtUnc_25: 2.95759910e-06 + ArtUnc_26: -2.41093472e-06 + ArtUnc_27: -1.95896003e-05 + ArtUnc_28: 2.16051173e-06 + ArtUnc_29: 1.86672107e-06 + ArtUnc_30: -8.22057670e-06 + ArtUnc_31: 3.14849952e-07 + ArtUnc_32: 3.56696280e-06 + ArtUnc_33: 9.91053260e-07 + ArtUnc_34: 2.22932189e-06 + ArtUnc_35: 3.98849517e-06 + ArtUnc_36: 2.16698901e-06 + ArtUnc_37: 6.64535451e-07 + ArtUnc_38: -1.13707114e-06 + ArtUnc_39: -6.25962681e-07 + ArtUnc_40: -1.13959898e-07 + ArtUnc_41: -1.11372274e-03 + ArtUnc_42: 1.14160715e-03 + ArtUnc_43: 8.34650831e-04 + ArtUnc_44: 8.60194348e-05 + ArtUnc_45: 5.79820528e-04 + ArtUnc_46: 4.38347228e-04 + ArtUnc_47: -1.20742817e-04 + ArtUnc_48: 5.52874932e-04 + ArtUnc_49: -1.72076762e-04 + ArtUnc_50: -4.50752738e-04 + ArtUnc_51: 2.50899949e-05 + ArtUnc_52: -4.81235439e-05 + ArtUnc_53: -4.87630247e-04 + ArtUnc_54: 1.86845585e-04 + ArtUnc_55: 1.53887626e-04 + ArtUnc_56: -1.81869819e-05 + ArtUnc_57: -4.00496922e-03 + ArtUnc_58: 3.60726641e-03 + ArtUnc_59: 4.50597445e-03 + ArtUnc_60: 1.34549697e-03 + ArtUnc_61: -8.18722134e-04 + ArtUnc_62: -3.11230494e-04 + ArtUnc_63: 2.86290868e-04 + ArtUnc_64: -3.15248141e-04 + ArtUnc_65: 3.68363884e-04 + ArtUnc_66: 2.98234898e-04 + ArtUnc_67: -1.50238756e-04 + ArtUnc_68: -6.14740432e-04 + ArtUnc_69: -5.23360357e-04 + ArtUnc_70: 1.96974605e-04 + ArtUnc_71: -8.24491661e-05 + ArtUnc_72: 1.49859394e-04 + ArtUnc_73: 3.80481833e-03 + ArtUnc_74: -7.02857330e-04 + ArtUnc_75: 1.18408660e-03 + ArtUnc_76: 2.83534816e-02 + ArtUnc_77: -5.21614914e-03 + ArtUnc_78: 6.22259655e-02 + ArtUnc_79: 1.50376938e-02 + ArtUnc_80: -2.63020691e-02 + ArtUnc_81: 1.47678028e-02 + ArtUnc_82: -1.17297794e-06 + ArtUnc_83: -6.40376869e-03 + ArtUnc_84: -1.79963152e-02 + ArtUnc_85: 4.75865568e-03 + ArtUnc_86: -5.07442181e-03 + ArtUnc_87: -2.82975126e-03 + ArtUnc_88: -4.33753783e-02 + ArtUnc_89: -2.93795836e-02 + ArtUnc_90: 7.38811706e-03 + ArtUnc_91: -7.63596724e-04 + ArtUnc_92: -1.03348045e-04 + ArtUnc_93: -3.06480556e-02 + ArtUnc_94: 1.33120311e-02 + ArtUnc_95: 8.65367376e-04 + ArtUnc_96: 1.04560049e-03 - stat: 0 Uncorr: 10.8 - RCES: 45.40022502146878 - ElEn: 2.3138228108478835 - ElTh: 6.11703457567472 + RCES: 4.54002250e+01 + ElEn: 2.31382281e+00 + ElTh: 6.11703458e+00 Lumi: 27.0 LArN: 5.4 StatMC: 12.42 RadErr: 4.644 - Model_1: 50.47893889534525 - Model_2: 50.47893889534525 - ModelRW_1: 35.28179995408398 - ModelRW_2: 35.28179995408398 - JES_1: 5.739262670413335 - JES_2: 5.739262670413335 - ArtUnc_1: 28.534619481303825 - ArtUnc_2: -7.123863967078508 - ArtUnc_3: -2.7181265551317226 - ArtUnc_4: -0.3899284876102117 - ArtUnc_5: -0.00670746378074466 - ArtUnc_6: -0.008283999205217387 - ArtUnc_7: 0.0007567391512459143 - ArtUnc_8: -0.27855882289615036 - ArtUnc_9: -0.0015553697559445726 - ArtUnc_10: 0.6841040029689246 - ArtUnc_11: 0.2703982613331601 - ArtUnc_12: -0.02577120581018809 - ArtUnc_13: -0.20196510734929263 - ArtUnc_14: -0.061245749383712446 - ArtUnc_15: -0.1373398814060955 - ArtUnc_16: 0.05559250646001657 - ArtUnc_17: -0.03891494291030187 - ArtUnc_18: 0.022439546494828832 - ArtUnc_19: -0.004613609699705583 - ArtUnc_20: -0.005955233470981109 - ArtUnc_21: -0.000919797110477925 - ArtUnc_22: -0.0015613108826127554 - ArtUnc_23: -0.0005657803910752896 - ArtUnc_24: -0.00013845948901258673 - ArtUnc_25: 0.0015884893142738003 - ArtUnc_26: 0.0027998731918240935 - ArtUnc_27: 0.012058199532830109 - ArtUnc_28: 0.0010435302393417168 - ArtUnc_29: -0.0008423840084407331 - ArtUnc_30: 0.006854685756505784 - ArtUnc_31: 0.0006563809746296008 - ArtUnc_32: -0.003397722806987923 - ArtUnc_33: -0.0013550843877417945 - ArtUnc_34: -0.0018974214458767377 - ArtUnc_35: -0.0033135972302497743 - ArtUnc_36: -0.0011026071913299487 - ArtUnc_37: -0.00021120981280549925 - ArtUnc_38: 0.0001611175014340478 - ArtUnc_39: 7.780354641441171e-06 - ArtUnc_40: -1.0949039928915957e-05 - ArtUnc_41: 0.0008162451372233949 - ArtUnc_42: 0.0006595543728718163 - ArtUnc_43: -0.0001920179570449045 - ArtUnc_44: -0.00029239045544503836 - ArtUnc_45: 0.00029228857947158284 - ArtUnc_46: -0.00014950580404518931 - ArtUnc_47: 0.0003446552927101274 - ArtUnc_48: -0.00011551717262218647 - ArtUnc_49: -0.00017085330905257303 - ArtUnc_50: -0.00013644698293498577 - ArtUnc_51: 9.219831701846136e-06 - ArtUnc_52: -1.4905544371813783e-05 - ArtUnc_53: -0.00014030870040233003 - ArtUnc_54: 2.172973149282271e-05 - ArtUnc_55: 2.5524966768608532e-05 - ArtUnc_56: 1.1225502356583022e-05 - ArtUnc_57: -4.691504492441422e-06 - ArtUnc_58: 7.6197052616898715e-06 - ArtUnc_59: 9.825460992185863e-06 - ArtUnc_60: 3.627685529542029e-06 - ArtUnc_61: -2.392677403828778e-06 - ArtUnc_62: -2.617544550091262e-06 - ArtUnc_63: 1.7619189417090515e-06 - ArtUnc_64: -4.0927753178519035e-06 - ArtUnc_65: 4.0074756663388155e-06 - ArtUnc_66: 2.9159524324259093e-06 - ArtUnc_67: -1.0830813048008015e-06 - ArtUnc_68: -3.5965235536997996e-06 - ArtUnc_69: -2.322886166859595e-06 - ArtUnc_70: 2.5743213044265925e-07 - ArtUnc_71: -1.5613343610499397e-07 - ArtUnc_72: 6.637580118037731e-08 - ArtUnc_73: -6.870695206562281e-07 - ArtUnc_74: 8.574271135636011e-07 - ArtUnc_75: 1.1569485846268291e-07 - ArtUnc_76: -6.437296749786422e-08 - ArtUnc_77: -1.837073110006341e-07 - ArtUnc_78: -2.4335993445393687e-07 - ArtUnc_79: 3.0163122457542233e-07 - ArtUnc_80: -1.0246606463765234e-07 - ArtUnc_81: 3.8856419054493195e-08 - ArtUnc_82: -3.6760400909888214e-11 - ArtUnc_83: 1.978891082722819e-08 - ArtUnc_84: -3.067811729035556e-08 - ArtUnc_85: -1.2655550615766943e-08 - ArtUnc_86: -6.924432285300878e-09 - ArtUnc_87: -1.4939796498290833e-08 - ArtUnc_88: 3.768689079174396e-08 - ArtUnc_89: 3.359132245658672e-08 - ArtUnc_90: 1.590444265428233e-08 - ArtUnc_91: -5.957595733315514e-09 - ArtUnc_92: -1.0576092301003206e-09 - ArtUnc_93: 1.3221074939131718e-08 - ArtUnc_94: -5.2314837785566986e-09 - ArtUnc_95: -6.979669883933357e-09 - ArtUnc_96: 1.543753446103767e-10 + Model_1: 5.04789389e+01 + Model_2: 5.04789389e+01 + ModelRW_1: 3.52818000e+01 + ModelRW_2: 3.52818000e+01 + JES_1: 5.73926267e+00 + JES_2: 5.73926267e+00 + ArtUnc_1: 2.85346195e+01 + ArtUnc_2: -7.12386397e+00 + ArtUnc_3: -2.71812656e+00 + ArtUnc_4: -3.89928488e-01 + ArtUnc_5: -6.70746378e-03 + ArtUnc_6: -8.28399921e-03 + ArtUnc_7: 7.56739151e-04 + ArtUnc_8: -2.78558823e-01 + ArtUnc_9: -1.55536976e-03 + ArtUnc_10: 6.84104003e-01 + ArtUnc_11: 2.70398261e-01 + ArtUnc_12: -2.57712058e-02 + ArtUnc_13: -2.01965107e-01 + ArtUnc_14: -6.12457494e-02 + ArtUnc_15: -1.37339881e-01 + ArtUnc_16: 5.55925065e-02 + ArtUnc_17: -3.89149429e-02 + ArtUnc_18: 2.24395465e-02 + ArtUnc_19: -4.61360970e-03 + ArtUnc_20: -5.95523347e-03 + ArtUnc_21: -9.19797110e-04 + ArtUnc_22: -1.56131088e-03 + ArtUnc_23: -5.65780391e-04 + ArtUnc_24: -1.38459489e-04 + ArtUnc_25: 1.58848931e-03 + ArtUnc_26: 2.79987319e-03 + ArtUnc_27: 1.20581995e-02 + ArtUnc_28: 1.04353024e-03 + ArtUnc_29: -8.42384008e-04 + ArtUnc_30: 6.85468576e-03 + ArtUnc_31: 6.56380975e-04 + ArtUnc_32: -3.39772281e-03 + ArtUnc_33: -1.35508439e-03 + ArtUnc_34: -1.89742145e-03 + ArtUnc_35: -3.31359723e-03 + ArtUnc_36: -1.10260719e-03 + ArtUnc_37: -2.11209813e-04 + ArtUnc_38: 1.61117501e-04 + ArtUnc_39: 7.78035464e-06 + ArtUnc_40: -1.09490399e-05 + ArtUnc_41: 8.16245137e-04 + ArtUnc_42: 6.59554373e-04 + ArtUnc_43: -1.92017957e-04 + ArtUnc_44: -2.92390455e-04 + ArtUnc_45: 2.92288579e-04 + ArtUnc_46: -1.49505804e-04 + ArtUnc_47: 3.44655293e-04 + ArtUnc_48: -1.15517173e-04 + ArtUnc_49: -1.70853309e-04 + ArtUnc_50: -1.36446983e-04 + ArtUnc_51: 9.21983170e-06 + ArtUnc_52: -1.49055444e-05 + ArtUnc_53: -1.40308700e-04 + ArtUnc_54: 2.17297315e-05 + ArtUnc_55: 2.55249668e-05 + ArtUnc_56: 1.12255024e-05 + ArtUnc_57: -4.69150449e-06 + ArtUnc_58: 7.61970526e-06 + ArtUnc_59: 9.82546099e-06 + ArtUnc_60: 3.62768553e-06 + ArtUnc_61: -2.39267740e-06 + ArtUnc_62: -2.61754455e-06 + ArtUnc_63: 1.76191894e-06 + ArtUnc_64: -4.09277532e-06 + ArtUnc_65: 4.00747567e-06 + ArtUnc_66: 2.91595243e-06 + ArtUnc_67: -1.08308130e-06 + ArtUnc_68: -3.59652355e-06 + ArtUnc_69: -2.32288617e-06 + ArtUnc_70: 2.57432130e-07 + ArtUnc_71: -1.56133436e-07 + ArtUnc_72: 6.63758012e-08 + ArtUnc_73: -6.87069521e-07 + ArtUnc_74: 8.57427114e-07 + ArtUnc_75: 1.15694858e-07 + ArtUnc_76: -6.43729675e-08 + ArtUnc_77: -1.83707311e-07 + ArtUnc_78: -2.43359934e-07 + ArtUnc_79: 3.01631225e-07 + ArtUnc_80: -1.02466065e-07 + ArtUnc_81: 3.88564191e-08 + ArtUnc_82: -3.67604009e-11 + ArtUnc_83: 1.97889108e-08 + ArtUnc_84: -3.06781173e-08 + ArtUnc_85: -1.26555506e-08 + ArtUnc_86: -6.92443229e-09 + ArtUnc_87: -1.49397965e-08 + ArtUnc_88: 3.76868908e-08 + ArtUnc_89: 3.35913225e-08 + ArtUnc_90: 1.59044427e-08 + ArtUnc_91: -5.95759573e-09 + ArtUnc_92: -1.05760923e-09 + ArtUnc_93: 1.32210749e-08 + ArtUnc_94: -5.23148378e-09 + ArtUnc_95: -6.97966988e-09 + ArtUnc_96: 1.54375345e-10 - stat: 0 Uncorr: 3.61 - RCES: 13.585536075087356 - ElEn: 0.9152257795210972 - ElTh: 2.638203708491822 + RCES: 1.35855361e+01 + ElEn: 9.15225780e-01 + ElTh: 2.63820371e+00 Lumi: 9.025 LArN: 1.805 - StatMC: 3.8988000000000005 - RadErr: 1.0108000000000001 - Model_1: 15.239353216098115 - Model_2: 15.239353216098115 - ModelRW_1: 6.330585590606922 - ModelRW_2: 6.330585590606922 - JES_1: 19.421074463678625 - JES_2: 19.421074463678625 - ArtUnc_1: 2.2970761331390066 - ArtUnc_2: -1.0892033898037916 - ArtUnc_3: -0.4626643792894114 - ArtUnc_4: 0.0034597266768986723 - ArtUnc_5: -0.07024799880322546 - ArtUnc_6: -0.025635496777499604 - ArtUnc_7: -0.0011811538975831683 - ArtUnc_8: 5.698072050451249 - ArtUnc_9: 0.01838660928832924 - ArtUnc_10: -6.02475607507018 - ArtUnc_11: -2.9660838975572674 - ArtUnc_12: 0.509042374153124 - ArtUnc_13: 1.8418379289105533 - ArtUnc_14: 0.5185384503576153 - ArtUnc_15: 1.3053603129533584 - ArtUnc_16: -0.48075482695253724 - ArtUnc_17: 0.3546020620221246 - ArtUnc_18: -0.19000896413705118 - ArtUnc_19: 0.03448455438106577 - ArtUnc_20: 0.0334777718193411 - ArtUnc_21: 0.00667766552088803 - ArtUnc_22: 0.005573150621444783 - ArtUnc_23: 0.0016140948748548712 - ArtUnc_24: 0.000568273667308521 - ArtUnc_25: -0.13949268880938007 - ArtUnc_26: -0.07352578045564359 - ArtUnc_27: -0.1808656512600164 - ArtUnc_28: -0.021260206797389925 - ArtUnc_29: 0.00997221831462979 - ArtUnc_30: -0.09065927398924134 - ArtUnc_31: -0.0006883162712905388 - ArtUnc_32: 0.04229196904252959 - ArtUnc_33: 0.01621967581405243 - ArtUnc_34: 0.027143903368802316 - ArtUnc_35: 0.04350407896178598 - ArtUnc_36: 0.016514706658114008 - ArtUnc_37: 0.0024434123447177863 - ArtUnc_38: -0.002971403779176569 - ArtUnc_39: -0.0007310172834329555 - ArtUnc_40: -0.00021136252877450334 - ArtUnc_41: -0.007160870664322624 - ArtUnc_42: -0.005876951781650189 - ArtUnc_43: 0.0017314514208508819 - ArtUnc_44: 0.002553951127823745 - ArtUnc_45: -0.0025656232271245513 - ArtUnc_46: 0.0011881545478558493 - ArtUnc_47: -0.002804030604187082 - ArtUnc_48: 0.0008879580966485295 - ArtUnc_49: 0.001369146410883418 - ArtUnc_50: 0.0011494198540057063 - ArtUnc_51: -9.055078135816814e-05 - ArtUnc_52: 7.294074042155794e-05 - ArtUnc_53: 0.001181951523907321 - ArtUnc_54: -0.00025362312439836495 - ArtUnc_55: -0.00018472562965263104 - ArtUnc_56: -8.739836558783833e-05 - ArtUnc_57: 4.885657431811609e-05 - ArtUnc_58: -5.51390303127279e-05 - ArtUnc_59: -0.00013839594374450153 - ArtUnc_60: -4.877085515415337e-05 - ArtUnc_61: 4.22707537278272e-05 - ArtUnc_62: 2.8700177521542225e-05 - ArtUnc_63: -2.3803806686567963e-05 - ArtUnc_64: 5.132418586798827e-05 - ArtUnc_65: -5.261628114177895e-05 - ArtUnc_66: -3.88344980812236e-05 - ArtUnc_67: 1.3491744321721498e-05 - ArtUnc_68: 3.7428430802205095e-05 - ArtUnc_69: 2.0431367214919684e-05 - ArtUnc_70: -6.037085275244034e-07 - ArtUnc_71: 7.380420140613976e-07 - ArtUnc_72: -1.1211342621343135e-06 - ArtUnc_73: 7.325768443241816e-06 - ArtUnc_74: -8.916791594335334e-06 - ArtUnc_75: -1.162861834698842e-06 - ArtUnc_76: 6.250625946348806e-07 - ArtUnc_77: 1.82006350343776e-06 - ArtUnc_78: 2.525337070075889e-06 - ArtUnc_79: -3.227347634136641e-06 - ArtUnc_80: 9.159003097231551e-07 - ArtUnc_81: -3.4720463522110955e-07 - ArtUnc_82: 8.063925823509818e-10 - ArtUnc_83: -2.002810595725168e-07 - ArtUnc_84: 2.5676589471883596e-07 - ArtUnc_85: 1.2916345002614888e-07 - ArtUnc_86: 5.406845147989175e-08 - ArtUnc_87: 1.3886480880961782e-07 - ArtUnc_88: -4.220408273270315e-07 - ArtUnc_89: -3.5825707537558045e-07 - ArtUnc_90: -1.3673297886087641e-07 - ArtUnc_91: 5.3828040959303416e-08 - ArtUnc_92: 9.722202506314322e-09 - ArtUnc_93: -1.2730479200691123e-07 - ArtUnc_94: 5.895056924848404e-08 - ArtUnc_95: 3.96949352117729e-08 - ArtUnc_96: 4.001083540114452e-09 + StatMC: 3.89880000e+00 + RadErr: 1.01080000e+00 + Model_1: 1.52393532e+01 + Model_2: 1.52393532e+01 + ModelRW_1: 6.33058559e+00 + ModelRW_2: 6.33058559e+00 + JES_1: 1.94210745e+01 + JES_2: 1.94210745e+01 + ArtUnc_1: 2.29707613e+00 + ArtUnc_2: -1.08920339e+00 + ArtUnc_3: -4.62664379e-01 + ArtUnc_4: 3.45972668e-03 + ArtUnc_5: -7.02479988e-02 + ArtUnc_6: -2.56354968e-02 + ArtUnc_7: -1.18115390e-03 + ArtUnc_8: 5.69807205e+00 + ArtUnc_9: 1.83866093e-02 + ArtUnc_10: -6.02475608e+00 + ArtUnc_11: -2.96608390e+00 + ArtUnc_12: 5.09042374e-01 + ArtUnc_13: 1.84183793e+00 + ArtUnc_14: 5.18538450e-01 + ArtUnc_15: 1.30536031e+00 + ArtUnc_16: -4.80754827e-01 + ArtUnc_17: 3.54602062e-01 + ArtUnc_18: -1.90008964e-01 + ArtUnc_19: 3.44845544e-02 + ArtUnc_20: 3.34777718e-02 + ArtUnc_21: 6.67766552e-03 + ArtUnc_22: 5.57315062e-03 + ArtUnc_23: 1.61409487e-03 + ArtUnc_24: 5.68273667e-04 + ArtUnc_25: -1.39492689e-01 + ArtUnc_26: -7.35257805e-02 + ArtUnc_27: -1.80865651e-01 + ArtUnc_28: -2.12602068e-02 + ArtUnc_29: 9.97221831e-03 + ArtUnc_30: -9.06592740e-02 + ArtUnc_31: -6.88316271e-04 + ArtUnc_32: 4.22919690e-02 + ArtUnc_33: 1.62196758e-02 + ArtUnc_34: 2.71439034e-02 + ArtUnc_35: 4.35040790e-02 + ArtUnc_36: 1.65147067e-02 + ArtUnc_37: 2.44341234e-03 + ArtUnc_38: -2.97140378e-03 + ArtUnc_39: -7.31017283e-04 + ArtUnc_40: -2.11362529e-04 + ArtUnc_41: -7.16087066e-03 + ArtUnc_42: -5.87695178e-03 + ArtUnc_43: 1.73145142e-03 + ArtUnc_44: 2.55395113e-03 + ArtUnc_45: -2.56562323e-03 + ArtUnc_46: 1.18815455e-03 + ArtUnc_47: -2.80403060e-03 + ArtUnc_48: 8.87958097e-04 + ArtUnc_49: 1.36914641e-03 + ArtUnc_50: 1.14941985e-03 + ArtUnc_51: -9.05507814e-05 + ArtUnc_52: 7.29407404e-05 + ArtUnc_53: 1.18195152e-03 + ArtUnc_54: -2.53623124e-04 + ArtUnc_55: -1.84725630e-04 + ArtUnc_56: -8.73983656e-05 + ArtUnc_57: 4.88565743e-05 + ArtUnc_58: -5.51390303e-05 + ArtUnc_59: -1.38395944e-04 + ArtUnc_60: -4.87708552e-05 + ArtUnc_61: 4.22707537e-05 + ArtUnc_62: 2.87001775e-05 + ArtUnc_63: -2.38038067e-05 + ArtUnc_64: 5.13241859e-05 + ArtUnc_65: -5.26162811e-05 + ArtUnc_66: -3.88344981e-05 + ArtUnc_67: 1.34917443e-05 + ArtUnc_68: 3.74284308e-05 + ArtUnc_69: 2.04313672e-05 + ArtUnc_70: -6.03708528e-07 + ArtUnc_71: 7.38042014e-07 + ArtUnc_72: -1.12113426e-06 + ArtUnc_73: 7.32576844e-06 + ArtUnc_74: -8.91679159e-06 + ArtUnc_75: -1.16286183e-06 + ArtUnc_76: 6.25062595e-07 + ArtUnc_77: 1.82006350e-06 + ArtUnc_78: 2.52533707e-06 + ArtUnc_79: -3.22734763e-06 + ArtUnc_80: 9.15900310e-07 + ArtUnc_81: -3.47204635e-07 + ArtUnc_82: 8.06392582e-10 + ArtUnc_83: -2.00281060e-07 + ArtUnc_84: 2.56765895e-07 + ArtUnc_85: 1.29163450e-07 + ArtUnc_86: 5.40684515e-08 + ArtUnc_87: 1.38864809e-07 + ArtUnc_88: -4.22040827e-07 + ArtUnc_89: -3.58257075e-07 + ArtUnc_90: -1.36732979e-07 + ArtUnc_91: 5.38280410e-08 + ArtUnc_92: 9.72220251e-09 + ArtUnc_93: -1.27304792e-07 + ArtUnc_94: 5.89505692e-08 + ArtUnc_95: 3.96949352e-08 + ArtUnc_96: 4.00108354e-09 - stat: 0 Uncorr: 0.848 - RCES: 0.746179770296676 - ElEn: 0.2651949682780576 - ElTh: 0.696741797798869 + RCES: 7.46179770e-01 + ElEn: 2.65194968e-01 + ElTh: 6.96741798e-01 Lumi: 2.12 LArN: 0.424 - StatMC: 0.9921599999999999 - RadErr: 0.6190399999999999 - Model_1: 2.914185035168494 - Model_2: 2.914185035168494 - ModelRW_1: 0.6955667985175831 - ModelRW_2: 0.6955667985175831 - JES_1: 2.318997057695417 - JES_2: 2.318997057695417 - ArtUnc_1: -0.0009965196005386923 - ArtUnc_2: -0.04907637101446047 - ArtUnc_3: -0.04756497054746269 - ArtUnc_4: -0.013756699974385526 - ArtUnc_5: 0.0013405642217313753 - ArtUnc_6: -0.0003866753706473783 - ArtUnc_7: -0.00012760105812504135 - ArtUnc_8: 0.3173188838021138 - ArtUnc_9: 0.0011592755697388047 - ArtUnc_10: -0.45041721817330066 - ArtUnc_11: -0.2137337371651879 - ArtUnc_12: 0.07390984381923797 - ArtUnc_13: 0.15323462967136156 - ArtUnc_14: 0.016725144962614295 - ArtUnc_15: 0.06154109650884441 - ArtUnc_16: 0.0012801800918984287 - ArtUnc_17: -0.010197513896344924 - ArtUnc_18: -0.0036468856197927895 - ArtUnc_19: -0.007440900959471428 - ArtUnc_20: 0.030597234662372387 - ArtUnc_21: 0.01992090985890962 - ArtUnc_22: -0.008080984027201216 - ArtUnc_23: -0.002513702610298424 - ArtUnc_24: 0.0004130954196040905 - ArtUnc_25: -0.7665401298664287 - ArtUnc_26: 0.20904621147775262 - ArtUnc_27: 2.4722660721619834 - ArtUnc_28: -0.2963104198978628 - ArtUnc_29: -0.22890452780055967 - ArtUnc_30: 1.0542185366477073 - ArtUnc_31: -0.028303682128787668 - ArtUnc_32: -0.49320836054377415 - ArtUnc_33: -0.1378857262320036 - ArtUnc_34: -0.27841141169946304 - ArtUnc_35: -0.4738975981671955 - ArtUnc_36: -0.17395524785262387 - ArtUnc_37: -0.02944182617674767 - ArtUnc_38: 0.029621854680974245 - ArtUnc_39: 0.0037937596643816225 - ArtUnc_40: 0.0006171169738548413 - ArtUnc_41: 0.07130678915444527 - ArtUnc_42: 0.09783409895430999 - ArtUnc_43: -0.0025186435155468063 - ArtUnc_44: -0.025573406243681544 - ArtUnc_45: 0.03679531486118474 - ArtUnc_46: -0.003224507487493442 - ArtUnc_47: 0.022428942333149793 - ArtUnc_48: 0.0027457022023610472 - ArtUnc_49: -0.013380306228957847 - ArtUnc_50: -0.01680463061811569 - ArtUnc_51: 0.0006300547084760256 - ArtUnc_52: -0.0005791249759598666 - ArtUnc_53: -0.016114514223097707 - ArtUnc_54: 0.005240293819542083 - ArtUnc_55: 0.002967708631284937 - ArtUnc_56: 0.00019026322521595404 - ArtUnc_57: 0.0002804429750602793 - ArtUnc_58: -0.001894443931454924 - ArtUnc_59: 0.0013271820680700766 - ArtUnc_60: 0.00035204867711393067 - ArtUnc_61: -0.0014031938044521107 - ArtUnc_62: 0.000288213901971008 - ArtUnc_63: 0.0005940507007868716 - ArtUnc_64: -8.618144975369645e-05 - ArtUnc_65: 0.0002762138691505921 - ArtUnc_66: 0.0008705951659873383 - ArtUnc_67: -0.0002900155986531886 - ArtUnc_68: -0.001088372977162145 - ArtUnc_69: -0.0005855436480218688 - ArtUnc_70: 3.891221637388164e-05 - ArtUnc_71: -0.00010782019438672507 - ArtUnc_72: 7.085871654984114e-05 - ArtUnc_73: -9.26754934375886e-06 - ArtUnc_74: 1.0338450946933556e-05 - ArtUnc_75: 2.5984669077553655e-06 - ArtUnc_76: -3.7953189242014587e-06 - ArtUnc_77: -6.080111235031745e-06 - ArtUnc_78: -1.145943283772544e-05 - ArtUnc_79: 1.3531736033285865e-05 - ArtUnc_80: 4.785256084644365e-06 - ArtUnc_81: -1.4476474117618153e-06 - ArtUnc_82: 8.717567938832361e-09 - ArtUnc_83: 2.1625432339056964e-06 - ArtUnc_84: 1.4245958021681639e-06 - ArtUnc_85: -1.5918227317219126e-06 - ArtUnc_86: 2.033747431831262e-06 - ArtUnc_87: 1.5086338157833956e-06 - ArtUnc_88: 1.705818229522455e-06 - ArtUnc_89: 1.6382068061899532e-06 - ArtUnc_90: -2.8779633835803196e-07 - ArtUnc_91: 4.3439631693636184e-07 - ArtUnc_92: 6.715287876035183e-08 - ArtUnc_93: -5.728647448855988e-08 - ArtUnc_94: -7.621759654344934e-07 - ArtUnc_95: 4.1672703857164295e-08 - ArtUnc_96: -2.8880854045615154e-07 + StatMC: 9.92160000e-01 + RadErr: 6.19040000e-01 + Model_1: 2.91418504e+00 + Model_2: 2.91418504e+00 + ModelRW_1: 6.95566799e-01 + ModelRW_2: 6.95566799e-01 + JES_1: 2.31899706e+00 + JES_2: 2.31899706e+00 + ArtUnc_1: -9.96519601e-04 + ArtUnc_2: -4.90763710e-02 + ArtUnc_3: -4.75649705e-02 + ArtUnc_4: -1.37567000e-02 + ArtUnc_5: 1.34056422e-03 + ArtUnc_6: -3.86675371e-04 + ArtUnc_7: -1.27601058e-04 + ArtUnc_8: 3.17318884e-01 + ArtUnc_9: 1.15927557e-03 + ArtUnc_10: -4.50417218e-01 + ArtUnc_11: -2.13733737e-01 + ArtUnc_12: 7.39098438e-02 + ArtUnc_13: 1.53234630e-01 + ArtUnc_14: 1.67251450e-02 + ArtUnc_15: 6.15410965e-02 + ArtUnc_16: 1.28018009e-03 + ArtUnc_17: -1.01975139e-02 + ArtUnc_18: -3.64688562e-03 + ArtUnc_19: -7.44090096e-03 + ArtUnc_20: 3.05972347e-02 + ArtUnc_21: 1.99209099e-02 + ArtUnc_22: -8.08098403e-03 + ArtUnc_23: -2.51370261e-03 + ArtUnc_24: 4.13095420e-04 + ArtUnc_25: -7.66540130e-01 + ArtUnc_26: 2.09046211e-01 + ArtUnc_27: 2.47226607e+00 + ArtUnc_28: -2.96310420e-01 + ArtUnc_29: -2.28904528e-01 + ArtUnc_30: 1.05421854e+00 + ArtUnc_31: -2.83036821e-02 + ArtUnc_32: -4.93208361e-01 + ArtUnc_33: -1.37885726e-01 + ArtUnc_34: -2.78411412e-01 + ArtUnc_35: -4.73897598e-01 + ArtUnc_36: -1.73955248e-01 + ArtUnc_37: -2.94418262e-02 + ArtUnc_38: 2.96218547e-02 + ArtUnc_39: 3.79375966e-03 + ArtUnc_40: 6.17116974e-04 + ArtUnc_41: 7.13067892e-02 + ArtUnc_42: 9.78340990e-02 + ArtUnc_43: -2.51864352e-03 + ArtUnc_44: -2.55734062e-02 + ArtUnc_45: 3.67953149e-02 + ArtUnc_46: -3.22450749e-03 + ArtUnc_47: 2.24289423e-02 + ArtUnc_48: 2.74570220e-03 + ArtUnc_49: -1.33803062e-02 + ArtUnc_50: -1.68046306e-02 + ArtUnc_51: 6.30054708e-04 + ArtUnc_52: -5.79124976e-04 + ArtUnc_53: -1.61145142e-02 + ArtUnc_54: 5.24029382e-03 + ArtUnc_55: 2.96770863e-03 + ArtUnc_56: 1.90263225e-04 + ArtUnc_57: 2.80442975e-04 + ArtUnc_58: -1.89444393e-03 + ArtUnc_59: 1.32718207e-03 + ArtUnc_60: 3.52048677e-04 + ArtUnc_61: -1.40319380e-03 + ArtUnc_62: 2.88213902e-04 + ArtUnc_63: 5.94050701e-04 + ArtUnc_64: -8.61814498e-05 + ArtUnc_65: 2.76213869e-04 + ArtUnc_66: 8.70595166e-04 + ArtUnc_67: -2.90015599e-04 + ArtUnc_68: -1.08837298e-03 + ArtUnc_69: -5.85543648e-04 + ArtUnc_70: 3.89122164e-05 + ArtUnc_71: -1.07820194e-04 + ArtUnc_72: 7.08587165e-05 + ArtUnc_73: -9.26754934e-06 + ArtUnc_74: 1.03384509e-05 + ArtUnc_75: 2.59846691e-06 + ArtUnc_76: -3.79531892e-06 + ArtUnc_77: -6.08011124e-06 + ArtUnc_78: -1.14594328e-05 + ArtUnc_79: 1.35317360e-05 + ArtUnc_80: 4.78525608e-06 + ArtUnc_81: -1.44764741e-06 + ArtUnc_82: 8.71756794e-09 + ArtUnc_83: 2.16254323e-06 + ArtUnc_84: 1.42459580e-06 + ArtUnc_85: -1.59182273e-06 + ArtUnc_86: 2.03374743e-06 + ArtUnc_87: 1.50863382e-06 + ArtUnc_88: 1.70581823e-06 + ArtUnc_89: 1.63820681e-06 + ArtUnc_90: -2.87796338e-07 + ArtUnc_91: 4.34396317e-07 + ArtUnc_92: 6.71528788e-08 + ArtUnc_93: -5.72864745e-08 + ArtUnc_94: -7.62175965e-07 + ArtUnc_95: 4.16727039e-08 + ArtUnc_96: -2.88808540e-07 - stat: 0 Uncorr: 0.127 - RCES: 0.12432223242445416 - ElEn: 0.06125035020308047 - ElTh: 0.044662669814958436 + RCES: 1.24322232e-01 + ElEn: 6.12503502e-02 + ElTh: 4.46626698e-02 Lumi: 0.3175 LArN: 0.0635 StatMC: 0.28575 RadErr: 0.07239 - Model_1: 0.8436953015381204 - Model_2: 0.8436953015381204 - ModelRW_1: 0.5486936489973252 - ModelRW_2: 0.5486936489973252 - JES_1: 0.47912906594935356 - JES_2: 0.47912906594935356 - ArtUnc_1: 0.00048222324563112264 - ArtUnc_2: -0.0004548193660647549 - ArtUnc_3: -0.000286514996135342 - ArtUnc_4: -5.045932370756765e-06 - ArtUnc_5: -6.963204243240928e-05 - ArtUnc_6: -3.525407986559304e-05 - ArtUnc_7: -7.335364812501672e-07 - ArtUnc_8: 0.011353917117131688 - ArtUnc_9: 4.218063182166823e-05 - ArtUnc_10: -0.015707934389066265 - ArtUnc_11: -0.009803885316949498 - ArtUnc_12: 0.0021536993705559898 - ArtUnc_13: 0.007532844337655942 - ArtUnc_14: 0.0021950944042568683 - ArtUnc_15: 0.006046097250410134 - ArtUnc_16: -0.0023116927991033214 - ArtUnc_17: 0.0017171120266754247 - ArtUnc_18: -0.0010288977453566045 - ArtUnc_19: 0.00011311504002460291 - ArtUnc_20: 0.0005321726757171317 - ArtUnc_21: 0.00031996106432853085 - ArtUnc_22: -9.235564886922412e-05 - ArtUnc_23: -4.181140486276274e-05 - ArtUnc_24: 1.90347021989865e-05 - ArtUnc_25: -0.020487758169369312 - ArtUnc_26: 0.011574866257633931 - ArtUnc_27: 0.08912912698772603 - ArtUnc_28: -0.008665626267010482 - ArtUnc_29: -0.006635338253216263 - ArtUnc_30: 0.027945876812184477 - ArtUnc_31: -0.0009772297497179653 - ArtUnc_32: -0.010216142199216087 - ArtUnc_33: -0.002845330035767449 - ArtUnc_34: -0.005570333273645624 - ArtUnc_35: -0.009662654568296104 - ArtUnc_36: -0.004528737722651677 - ArtUnc_37: -0.0012038460339396265 - ArtUnc_38: 0.0018731277432525726 - ArtUnc_39: 0.0008503564209471586 - ArtUnc_40: 0.00013844562202529199 - ArtUnc_41: 0.6638495686437801 - ArtUnc_42: -0.5706914172500034 - ArtUnc_43: -0.37756148387400784 - ArtUnc_44: -0.03501730818425852 - ArtUnc_45: -0.22079268371283536 - ArtUnc_46: -0.1555648662556946 - ArtUnc_47: 0.03878286742300583 - ArtUnc_48: -0.17923666489526285 - ArtUnc_49: 0.05428378152839977 - ArtUnc_50: 0.1324244338946672 - ArtUnc_51: -0.003416335306031974 - ArtUnc_52: 0.007711552695186313 - ArtUnc_53: 0.13148541911448347 - ArtUnc_54: -0.04808237290860438 - ArtUnc_55: -0.03475140647080258 - ArtUnc_56: 0.003634129374122391 - ArtUnc_57: -0.008015429032455383 - ArtUnc_58: 0.042966783029020544 - ArtUnc_59: -0.021593356391989723 - ArtUnc_60: -0.005088828565798671 - ArtUnc_61: 0.024094100946153038 - ArtUnc_62: -0.006406534115997293 - ArtUnc_63: -0.009260583805346423 - ArtUnc_64: -0.0007324592001938286 - ArtUnc_65: -0.0023102409510445 - ArtUnc_66: -0.011795995784537529 - ArtUnc_67: 0.003798810760947751 - ArtUnc_68: 0.014005992450295192 - ArtUnc_69: 0.0072733152673920285 - ArtUnc_70: -0.0004229394256654641 - ArtUnc_71: 0.0014663376725319356 - ArtUnc_72: -0.0009929230225179458 - ArtUnc_73: 0.00011844704664039685 - ArtUnc_74: -0.00023022953652054892 - ArtUnc_75: -5.280533255611597e-05 - ArtUnc_76: 5.8320312563038125e-05 - ArtUnc_77: 0.00013664656253665832 - ArtUnc_78: 0.00022585533316878535 - ArtUnc_79: -0.0003222283740101118 - ArtUnc_80: -8.560658591625873e-05 - ArtUnc_81: 2.7635731751347974e-05 - ArtUnc_82: -1.4471079941616133e-07 - ArtUnc_83: -4.8492427455588045e-05 - ArtUnc_84: -2.7385198275194944e-05 - ArtUnc_85: 3.691156820800699e-05 - ArtUnc_86: -4.585635645987649e-05 - ArtUnc_87: -3.282889882737541e-05 - ArtUnc_88: -3.2808291692027684e-05 - ArtUnc_89: -5.063474698032896e-05 - ArtUnc_90: 5.940492185626315e-06 - ArtUnc_91: -9.96937532891693e-06 - ArtUnc_92: -1.5861418317524066e-06 - ArtUnc_93: 1.394519710889056e-05 - ArtUnc_94: 1.976061848848542e-05 - ArtUnc_95: 5.415803724684479e-06 - ArtUnc_96: 8.099606377266068e-06 + Model_1: 8.43695302e-01 + Model_2: 8.43695302e-01 + ModelRW_1: 5.48693649e-01 + ModelRW_2: 5.48693649e-01 + JES_1: 4.79129066e-01 + JES_2: 4.79129066e-01 + ArtUnc_1: 4.82223246e-04 + ArtUnc_2: -4.54819366e-04 + ArtUnc_3: -2.86514996e-04 + ArtUnc_4: -5.04593237e-06 + ArtUnc_5: -6.96320424e-05 + ArtUnc_6: -3.52540799e-05 + ArtUnc_7: -7.33536481e-07 + ArtUnc_8: 1.13539171e-02 + ArtUnc_9: 4.21806318e-05 + ArtUnc_10: -1.57079344e-02 + ArtUnc_11: -9.80388532e-03 + ArtUnc_12: 2.15369937e-03 + ArtUnc_13: 7.53284434e-03 + ArtUnc_14: 2.19509440e-03 + ArtUnc_15: 6.04609725e-03 + ArtUnc_16: -2.31169280e-03 + ArtUnc_17: 1.71711203e-03 + ArtUnc_18: -1.02889775e-03 + ArtUnc_19: 1.13115040e-04 + ArtUnc_20: 5.32172676e-04 + ArtUnc_21: 3.19961064e-04 + ArtUnc_22: -9.23556489e-05 + ArtUnc_23: -4.18114049e-05 + ArtUnc_24: 1.90347022e-05 + ArtUnc_25: -2.04877582e-02 + ArtUnc_26: 1.15748663e-02 + ArtUnc_27: 8.91291270e-02 + ArtUnc_28: -8.66562627e-03 + ArtUnc_29: -6.63533825e-03 + ArtUnc_30: 2.79458768e-02 + ArtUnc_31: -9.77229750e-04 + ArtUnc_32: -1.02161422e-02 + ArtUnc_33: -2.84533004e-03 + ArtUnc_34: -5.57033327e-03 + ArtUnc_35: -9.66265457e-03 + ArtUnc_36: -4.52873772e-03 + ArtUnc_37: -1.20384603e-03 + ArtUnc_38: 1.87312774e-03 + ArtUnc_39: 8.50356421e-04 + ArtUnc_40: 1.38445622e-04 + ArtUnc_41: 6.63849569e-01 + ArtUnc_42: -5.70691417e-01 + ArtUnc_43: -3.77561484e-01 + ArtUnc_44: -3.50173082e-02 + ArtUnc_45: -2.20792684e-01 + ArtUnc_46: -1.55564866e-01 + ArtUnc_47: 3.87828674e-02 + ArtUnc_48: -1.79236665e-01 + ArtUnc_49: 5.42837815e-02 + ArtUnc_50: 1.32424434e-01 + ArtUnc_51: -3.41633531e-03 + ArtUnc_52: 7.71155270e-03 + ArtUnc_53: 1.31485419e-01 + ArtUnc_54: -4.80823729e-02 + ArtUnc_55: -3.47514065e-02 + ArtUnc_56: 3.63412937e-03 + ArtUnc_57: -8.01542903e-03 + ArtUnc_58: 4.29667830e-02 + ArtUnc_59: -2.15933564e-02 + ArtUnc_60: -5.08882857e-03 + ArtUnc_61: 2.40941009e-02 + ArtUnc_62: -6.40653412e-03 + ArtUnc_63: -9.26058381e-03 + ArtUnc_64: -7.32459200e-04 + ArtUnc_65: -2.31024095e-03 + ArtUnc_66: -1.17959958e-02 + ArtUnc_67: 3.79881076e-03 + ArtUnc_68: 1.40059925e-02 + ArtUnc_69: 7.27331527e-03 + ArtUnc_70: -4.22939426e-04 + ArtUnc_71: 1.46633767e-03 + ArtUnc_72: -9.92923023e-04 + ArtUnc_73: 1.18447047e-04 + ArtUnc_74: -2.30229537e-04 + ArtUnc_75: -5.28053326e-05 + ArtUnc_76: 5.83203126e-05 + ArtUnc_77: 1.36646563e-04 + ArtUnc_78: 2.25855333e-04 + ArtUnc_79: -3.22228374e-04 + ArtUnc_80: -8.56065859e-05 + ArtUnc_81: 2.76357318e-05 + ArtUnc_82: -1.44710799e-07 + ArtUnc_83: -4.84924275e-05 + ArtUnc_84: -2.73851983e-05 + ArtUnc_85: 3.69115682e-05 + ArtUnc_86: -4.58563565e-05 + ArtUnc_87: -3.28288988e-05 + ArtUnc_88: -3.28082917e-05 + ArtUnc_89: -5.06347470e-05 + ArtUnc_90: 5.94049219e-06 + ArtUnc_91: -9.96937533e-06 + ArtUnc_92: -1.58614183e-06 + ArtUnc_93: 1.39451971e-05 + ArtUnc_94: 1.97606185e-05 + ArtUnc_95: 5.41580372e-06 + ArtUnc_96: 8.09960638e-06 - stat: 0 - Uncorr: 0.015600000000000001 - RCES: 0.02281389997348108 - ElEn: 0.06040101628284081 - ElTh: 0.05058172203474294 - Lumi: 0.03900000000000001 - LArN: 0.0078000000000000005 + Uncorr: 1.56000000e-02 + RCES: 2.28139000e-02 + ElEn: 6.04010163e-02 + ElTh: 5.05817220e-02 + Lumi: 3.90000000e-02 + LArN: 7.80000000e-03 StatMC: 0.112476 RadErr: 0.019656 - Model_1: 0.021510188283694772 - Model_2: 0.021510188283694772 - ModelRW_1: 0.03165858480728411 - ModelRW_2: 0.03165858480728411 - JES_1: 0.11464963932782345 - JES_2: 0.11464963932782345 - ArtUnc_1: 8.284240535459942e-05 - ArtUnc_2: -7.143652520747553e-05 - ArtUnc_3: -4.2939106416322474e-05 - ArtUnc_4: 9.189147705604213e-07 - ArtUnc_5: -1.168392477351611e-05 - ArtUnc_6: -5.437220127116407e-06 - ArtUnc_7: -3.186788680124188e-07 - ArtUnc_8: 0.0017507675790445158 - ArtUnc_9: 6.3208949947927375e-06 - ArtUnc_10: -0.0023152786563023693 - ArtUnc_11: -0.001512260185718958 - ArtUnc_12: 0.0002867266414185476 - ArtUnc_13: 0.0011707137810086823 - ArtUnc_14: 0.00037400319118526687 - ArtUnc_15: 0.0010149982650403862 - ArtUnc_16: -0.0004244565163130159 - ArtUnc_17: 0.00034015178709396565 - ArtUnc_18: -0.000192932820089954 - ArtUnc_19: 4.354511051629244e-05 - ArtUnc_20: 3.082354649563666e-05 - ArtUnc_21: 1.7465997797400437e-06 - ArtUnc_22: 1.2057399180159132e-05 - ArtUnc_23: 4.491744744461753e-06 - ArtUnc_24: 9.79744710611963e-07 - ArtUnc_25: 0.000207381057035519 - ArtUnc_26: -0.0004230761354287319 - ArtUnc_27: -0.0031937538950595834 - ArtUnc_28: 0.0002789218703015377 - ArtUnc_29: 0.0003826943616382765 - ArtUnc_30: -0.0021125763707275347 - ArtUnc_31: 4.634065252060755e-05 - ArtUnc_32: 0.0012541085350820632 - ArtUnc_33: 0.0003780885952905535 - ArtUnc_34: 0.0008401347196628806 - ArtUnc_35: 0.0014372357214196374 - ArtUnc_36: 0.0005759556505313191 - ArtUnc_37: 9.800053871621878e-05 - ArtUnc_38: -0.0001049586563108525 - ArtUnc_39: -1.4606526390462278e-05 - ArtUnc_40: -3.996192469797755e-06 - ArtUnc_41: 0.011750948973270116 - ArtUnc_42: -0.015575601828048118 - ArtUnc_43: -0.004189188127765207 - ArtUnc_44: 0.0011989486168144544 - ArtUnc_45: -0.002337986903522328 - ArtUnc_46: 0.00015453013196292003 - ArtUnc_47: -0.0005559318681489714 - ArtUnc_48: 2.7101397601735106e-05 - ArtUnc_49: -0.00020626001420911725 - ArtUnc_50: -5.820870463632121e-05 - ArtUnc_51: -1.6662171501764027e-05 - ArtUnc_52: 2.5544439689513627e-05 - ArtUnc_53: -0.00014939065649154743 - ArtUnc_54: -9.672127646801581e-05 - ArtUnc_55: -1.1098661883805367e-05 - ArtUnc_56: 1.7388712030098158e-05 - ArtUnc_57: -0.11990698671213583 - ArtUnc_58: 0.1630472526295877 - ArtUnc_59: 0.23306723240397223 - ArtUnc_60: 0.08346872670813442 - ArtUnc_61: -0.05613004221263735 - ArtUnc_62: -0.0518004490850811 - ArtUnc_63: 0.030589435370586383 - ArtUnc_64: -0.08155023196137762 - ArtUnc_65: 0.07903336729866912 - ArtUnc_66: 0.04530305726093659 - ArtUnc_67: -0.013349390116759653 - ArtUnc_68: -0.0264080500996915 - ArtUnc_69: -0.012559102862259136 - ArtUnc_70: 0.0011507880480598309 - ArtUnc_71: -0.00039464089688755454 - ArtUnc_72: 0.0015003052226943954 - ArtUnc_73: -0.01664476478326977 - ArtUnc_74: 0.017515386373661138 - ArtUnc_75: 0.0022558265607425716 - ArtUnc_76: 0.00046133251513093 - ArtUnc_77: -0.0034936131326428277 - ArtUnc_78: -0.0026908293071845365 - ArtUnc_79: 0.006560964965245572 - ArtUnc_80: 0.0009448181700934723 - ArtUnc_81: -0.00044521757762517754 - ArtUnc_82: 9.185677018507984e-08 - ArtUnc_83: -0.00011809609694401655 - ArtUnc_84: 0.0005436643903216629 - ArtUnc_85: 6.648844060157769e-05 - ArtUnc_86: 4.8256104908536475e-05 - ArtUnc_87: 7.071954635315663e-05 - ArtUnc_88: 0.00035533421302064275 - ArtUnc_89: 0.00101065159677701 - ArtUnc_90: -0.00013932834585073713 - ArtUnc_91: 2.375834640852458e-05 - ArtUnc_92: 3.920061732908886e-06 - ArtUnc_93: -4.664789298303528e-05 - ArtUnc_94: -0.0005146245491329366 - ArtUnc_95: -0.00012595303709050904 - ArtUnc_96: 1.3968545028191379e-06 + Model_1: 2.15101883e-02 + Model_2: 2.15101883e-02 + ModelRW_1: 3.16585848e-02 + ModelRW_2: 3.16585848e-02 + JES_1: 1.14649639e-01 + JES_2: 1.14649639e-01 + ArtUnc_1: 8.28424054e-05 + ArtUnc_2: -7.14365252e-05 + ArtUnc_3: -4.29391064e-05 + ArtUnc_4: 9.18914771e-07 + ArtUnc_5: -1.16839248e-05 + ArtUnc_6: -5.43722013e-06 + ArtUnc_7: -3.18678868e-07 + ArtUnc_8: 1.75076758e-03 + ArtUnc_9: 6.32089499e-06 + ArtUnc_10: -2.31527866e-03 + ArtUnc_11: -1.51226019e-03 + ArtUnc_12: 2.86726641e-04 + ArtUnc_13: 1.17071378e-03 + ArtUnc_14: 3.74003191e-04 + ArtUnc_15: 1.01499827e-03 + ArtUnc_16: -4.24456516e-04 + ArtUnc_17: 3.40151787e-04 + ArtUnc_18: -1.92932820e-04 + ArtUnc_19: 4.35451105e-05 + ArtUnc_20: 3.08235465e-05 + ArtUnc_21: 1.74659978e-06 + ArtUnc_22: 1.20573992e-05 + ArtUnc_23: 4.49174474e-06 + ArtUnc_24: 9.79744711e-07 + ArtUnc_25: 2.07381057e-04 + ArtUnc_26: -4.23076135e-04 + ArtUnc_27: -3.19375390e-03 + ArtUnc_28: 2.78921870e-04 + ArtUnc_29: 3.82694362e-04 + ArtUnc_30: -2.11257637e-03 + ArtUnc_31: 4.63406525e-05 + ArtUnc_32: 1.25410854e-03 + ArtUnc_33: 3.78088595e-04 + ArtUnc_34: 8.40134720e-04 + ArtUnc_35: 1.43723572e-03 + ArtUnc_36: 5.75955651e-04 + ArtUnc_37: 9.80005387e-05 + ArtUnc_38: -1.04958656e-04 + ArtUnc_39: -1.46065264e-05 + ArtUnc_40: -3.99619247e-06 + ArtUnc_41: 1.17509490e-02 + ArtUnc_42: -1.55756018e-02 + ArtUnc_43: -4.18918813e-03 + ArtUnc_44: 1.19894862e-03 + ArtUnc_45: -2.33798690e-03 + ArtUnc_46: 1.54530132e-04 + ArtUnc_47: -5.55931868e-04 + ArtUnc_48: 2.71013976e-05 + ArtUnc_49: -2.06260014e-04 + ArtUnc_50: -5.82087046e-05 + ArtUnc_51: -1.66621715e-05 + ArtUnc_52: 2.55444397e-05 + ArtUnc_53: -1.49390656e-04 + ArtUnc_54: -9.67212765e-05 + ArtUnc_55: -1.10986619e-05 + ArtUnc_56: 1.73887120e-05 + ArtUnc_57: -1.19906987e-01 + ArtUnc_58: 1.63047253e-01 + ArtUnc_59: 2.33067232e-01 + ArtUnc_60: 8.34687267e-02 + ArtUnc_61: -5.61300422e-02 + ArtUnc_62: -5.18004491e-02 + ArtUnc_63: 3.05894354e-02 + ArtUnc_64: -8.15502320e-02 + ArtUnc_65: 7.90333673e-02 + ArtUnc_66: 4.53030573e-02 + ArtUnc_67: -1.33493901e-02 + ArtUnc_68: -2.64080501e-02 + ArtUnc_69: -1.25591029e-02 + ArtUnc_70: 1.15078805e-03 + ArtUnc_71: -3.94640897e-04 + ArtUnc_72: 1.50030522e-03 + ArtUnc_73: -1.66447648e-02 + ArtUnc_74: 1.75153864e-02 + ArtUnc_75: 2.25582656e-03 + ArtUnc_76: 4.61332515e-04 + ArtUnc_77: -3.49361313e-03 + ArtUnc_78: -2.69082931e-03 + ArtUnc_79: 6.56096497e-03 + ArtUnc_80: 9.44818170e-04 + ArtUnc_81: -4.45217578e-04 + ArtUnc_82: 9.18567702e-08 + ArtUnc_83: -1.18096097e-04 + ArtUnc_84: 5.43664390e-04 + ArtUnc_85: 6.64884406e-05 + ArtUnc_86: 4.82561049e-05 + ArtUnc_87: 7.07195464e-05 + ArtUnc_88: 3.55334213e-04 + ArtUnc_89: 1.01065160e-03 + ArtUnc_90: -1.39328346e-04 + ArtUnc_91: 2.37583464e-05 + ArtUnc_92: 3.92006173e-06 + ArtUnc_93: -4.66478930e-05 + ArtUnc_94: -5.14624549e-04 + ArtUnc_95: -1.25953037e-04 + ArtUnc_96: 1.39685450e-06 - stat: 0 Uncorr: 0.00251 - RCES: 0.011977480937471786 - ElEn: 0.008937714918255112 - ElTh: 0.007329285958400041 - Lumi: 0.006274999999999999 + RCES: 1.19774809e-02 + ElEn: 8.93771492e-03 + ElTh: 7.32928596e-03 + Lumi: 6.27500000e-03 LArN: 0.001255 - StatMC: 0.0331571 - RadErr: 0.0068774000000000005 - Model_1: 0.03159211676985257 - Model_2: 0.03159211676985257 - ModelRW_1: 0.007578558348723059 - ModelRW_2: 0.007578558348723059 - JES_1: 0.017554027346879688 - JES_2: 0.017554027346879688 - ArtUnc_1: -8.737694534121229e-10 - ArtUnc_2: 1.6464594064326736e-09 - ArtUnc_3: 1.5950511990295304e-09 - ArtUnc_4: 1.3040974115525698e-10 - ArtUnc_5: 5.508080194611627e-10 - ArtUnc_6: 3.7671139816293967e-10 - ArtUnc_7: 1.2766550907783893e-11 - ArtUnc_8: -1.8318554335628124e-07 - ArtUnc_9: -7.598415241707395e-10 - ArtUnc_10: 3.172515480713788e-07 - ArtUnc_11: 2.644748786934402e-07 - ArtUnc_12: -5.490758663839249e-08 - ArtUnc_13: -2.718473923425416e-07 - ArtUnc_14: -9.213717981691248e-08 - ArtUnc_15: -2.724363299357123e-07 - ArtUnc_16: 1.2069090292989235e-07 - ArtUnc_17: -9.887766630843156e-08 - ArtUnc_18: 6.492169166509936e-08 - ArtUnc_19: -1.0089425732864725e-08 - ArtUnc_20: -3.7827776916724463e-08 - ArtUnc_21: -2.494253881503824e-08 - ArtUnc_22: 7.18207777277124e-09 - ArtUnc_23: 4.737266987816121e-09 - ArtUnc_24: -2.6786010019964452e-09 - ArtUnc_25: 2.9575991000873583e-06 - ArtUnc_26: -2.4109347240891293e-06 - ArtUnc_27: -1.958960032609601e-05 - ArtUnc_28: 2.1605117264882275e-06 - ArtUnc_29: 1.866721069826176e-06 - ArtUnc_30: -8.22057669927223e-06 - ArtUnc_31: 3.1484995192426904e-07 - ArtUnc_32: 3.566962795179308e-06 - ArtUnc_33: 9.910532595307408e-07 - ArtUnc_34: 2.229321892986007e-06 - ArtUnc_35: 3.9884951668698356e-06 - ArtUnc_36: 2.166989013651135e-06 - ArtUnc_37: 6.645354509858519e-07 - ArtUnc_38: -1.137071138773637e-06 - ArtUnc_39: -6.259626810669443e-07 - ArtUnc_40: -1.139598981579064e-07 - ArtUnc_41: -0.0011137227426165804 - ArtUnc_42: 0.001141607145327739 - ArtUnc_43: 0.0008346508307614627 - ArtUnc_44: 8.601943478581479e-05 - ArtUnc_45: 0.0005798205279119543 - ArtUnc_46: 0.0004383472277824721 - ArtUnc_47: -0.00012074281722239596 - ArtUnc_48: 0.000552874931580836 - ArtUnc_49: -0.00017207676192544896 - ArtUnc_50: -0.0004507527380131608 - ArtUnc_51: 2.508999491499608e-05 - ArtUnc_52: -4.8123543900225626e-05 - ArtUnc_53: -0.0004876302466361276 - ArtUnc_54: 0.00018684558503821334 - ArtUnc_55: 0.00015388762592659022 - ArtUnc_56: -1.8186981887229775e-05 - ArtUnc_57: -0.004004969220651377 - ArtUnc_58: 0.003607266408108926 - ArtUnc_59: 0.004505974454370048 - ArtUnc_60: 0.001345496970059587 - ArtUnc_61: -0.0008187221344207724 - ArtUnc_62: -0.0003112304944000799 - ArtUnc_63: 0.0002862908683742685 - ArtUnc_64: -0.0003152481406459922 - ArtUnc_65: 0.0003683638836481357 - ArtUnc_66: 0.0002982348981041299 - ArtUnc_67: -0.0001502387558411166 - ArtUnc_68: -0.0006147404317045237 - ArtUnc_69: -0.0005233603568172246 - ArtUnc_70: 0.00019697460472897514 - ArtUnc_71: -8.244916610588482e-05 - ArtUnc_72: 0.00014985939363457848 - ArtUnc_73: 0.0038048183334672874 - ArtUnc_74: -0.0007028573295874387 - ArtUnc_75: 0.0011840866023422926 - ArtUnc_76: 0.02835348160110081 - ArtUnc_77: -0.005216149143439307 - ArtUnc_78: 0.06222596545671097 - ArtUnc_79: 0.015037693794521264 - ArtUnc_80: -0.026302069053068946 - ArtUnc_81: 0.01476780276571734 - ArtUnc_82: -1.1729779388745412e-06 - ArtUnc_83: -0.006403768686471221 - ArtUnc_84: -0.017996315182303557 - ArtUnc_85: 0.004758655675668427 - ArtUnc_86: -0.005074421813299028 - ArtUnc_87: -0.002829751264937561 - ArtUnc_88: -0.04337537829452347 - ArtUnc_89: -0.029379583624767714 - ArtUnc_90: 0.007388117062249002 - ArtUnc_91: -0.0007635967238545224 - ArtUnc_92: -0.00010334804503274076 - ArtUnc_93: -0.030648055619916178 - ArtUnc_94: 0.01331203105244284 - ArtUnc_95: 0.0008653673756013533 - ArtUnc_96: 0.001045600489105698 + StatMC: 3.31571000e-02 + RadErr: 6.87740000e-03 + Model_1: 3.15921168e-02 + Model_2: 3.15921168e-02 + ModelRW_1: 7.57855835e-03 + ModelRW_2: 7.57855835e-03 + JES_1: 1.75540273e-02 + JES_2: 1.75540273e-02 + ArtUnc_1: -8.73769453e-10 + ArtUnc_2: 1.64645941e-09 + ArtUnc_3: 1.59505120e-09 + ArtUnc_4: 1.30409741e-10 + ArtUnc_5: 5.50808019e-10 + ArtUnc_6: 3.76711398e-10 + ArtUnc_7: 1.27665509e-11 + ArtUnc_8: -1.83185543e-07 + ArtUnc_9: -7.59841524e-10 + ArtUnc_10: 3.17251548e-07 + ArtUnc_11: 2.64474879e-07 + ArtUnc_12: -5.49075866e-08 + ArtUnc_13: -2.71847392e-07 + ArtUnc_14: -9.21371798e-08 + ArtUnc_15: -2.72436330e-07 + ArtUnc_16: 1.20690903e-07 + ArtUnc_17: -9.88776663e-08 + ArtUnc_18: 6.49216917e-08 + ArtUnc_19: -1.00894257e-08 + ArtUnc_20: -3.78277769e-08 + ArtUnc_21: -2.49425388e-08 + ArtUnc_22: 7.18207777e-09 + ArtUnc_23: 4.73726699e-09 + ArtUnc_24: -2.67860100e-09 + ArtUnc_25: 2.95759910e-06 + ArtUnc_26: -2.41093472e-06 + ArtUnc_27: -1.95896003e-05 + ArtUnc_28: 2.16051173e-06 + ArtUnc_29: 1.86672107e-06 + ArtUnc_30: -8.22057670e-06 + ArtUnc_31: 3.14849952e-07 + ArtUnc_32: 3.56696280e-06 + ArtUnc_33: 9.91053260e-07 + ArtUnc_34: 2.22932189e-06 + ArtUnc_35: 3.98849517e-06 + ArtUnc_36: 2.16698901e-06 + ArtUnc_37: 6.64535451e-07 + ArtUnc_38: -1.13707114e-06 + ArtUnc_39: -6.25962681e-07 + ArtUnc_40: -1.13959898e-07 + ArtUnc_41: -1.11372274e-03 + ArtUnc_42: 1.14160715e-03 + ArtUnc_43: 8.34650831e-04 + ArtUnc_44: 8.60194348e-05 + ArtUnc_45: 5.79820528e-04 + ArtUnc_46: 4.38347228e-04 + ArtUnc_47: -1.20742817e-04 + ArtUnc_48: 5.52874932e-04 + ArtUnc_49: -1.72076762e-04 + ArtUnc_50: -4.50752738e-04 + ArtUnc_51: 2.50899949e-05 + ArtUnc_52: -4.81235439e-05 + ArtUnc_53: -4.87630247e-04 + ArtUnc_54: 1.86845585e-04 + ArtUnc_55: 1.53887626e-04 + ArtUnc_56: -1.81869819e-05 + ArtUnc_57: -4.00496922e-03 + ArtUnc_58: 3.60726641e-03 + ArtUnc_59: 4.50597445e-03 + ArtUnc_60: 1.34549697e-03 + ArtUnc_61: -8.18722134e-04 + ArtUnc_62: -3.11230494e-04 + ArtUnc_63: 2.86290868e-04 + ArtUnc_64: -3.15248141e-04 + ArtUnc_65: 3.68363884e-04 + ArtUnc_66: 2.98234898e-04 + ArtUnc_67: -1.50238756e-04 + ArtUnc_68: -6.14740432e-04 + ArtUnc_69: -5.23360357e-04 + ArtUnc_70: 1.96974605e-04 + ArtUnc_71: -8.24491661e-05 + ArtUnc_72: 1.49859394e-04 + ArtUnc_73: 3.80481833e-03 + ArtUnc_74: -7.02857330e-04 + ArtUnc_75: 1.18408660e-03 + ArtUnc_76: 2.83534816e-02 + ArtUnc_77: -5.21614914e-03 + ArtUnc_78: 6.22259655e-02 + ArtUnc_79: 1.50376938e-02 + ArtUnc_80: -2.63020691e-02 + ArtUnc_81: 1.47678028e-02 + ArtUnc_82: -1.17297794e-06 + ArtUnc_83: -6.40376869e-03 + ArtUnc_84: -1.79963152e-02 + ArtUnc_85: 4.75865568e-03 + ArtUnc_86: -5.07442181e-03 + ArtUnc_87: -2.82975126e-03 + ArtUnc_88: -4.33753783e-02 + ArtUnc_89: -2.93795836e-02 + ArtUnc_90: 7.38811706e-03 + ArtUnc_91: -7.63596724e-04 + ArtUnc_92: -1.03348045e-04 + ArtUnc_93: -3.06480556e-02 + ArtUnc_94: 1.33120311e-02 + ArtUnc_95: 8.65367376e-04 + ArtUnc_96: 1.04560049e-03 - stat: 0 Uncorr: 10.6 - RCES: 33.82596026722671 - ElEn: 3.5517909566865 - ElTh: 6.212314464030295 + RCES: 3.38259603e+01 + ElEn: 3.55179096e+00 + ElTh: 6.21231446e+00 Lumi: 26.5 LArN: 5.3 StatMC: 10.176 RadErr: 1.696 - Model_1: 8.619631662664013 - Model_2: 8.619631662664013 - ModelRW_1: 15.215523717572127 - ModelRW_2: 15.215523717572127 - JES_1: 7.602498536665429 - JES_2: 7.602498536665429 - ArtUnc_1: 28.534619481303825 - ArtUnc_2: -7.123863967078508 - ArtUnc_3: -2.7181265551317226 - ArtUnc_4: -0.3899284876102117 - ArtUnc_5: -0.00670746378074466 - ArtUnc_6: -0.008283999205217387 - ArtUnc_7: 0.0007567391512459143 - ArtUnc_8: -0.27855882289615036 - ArtUnc_9: -0.0015553697559445726 - ArtUnc_10: 0.6841040029689246 - ArtUnc_11: 0.2703982613331601 - ArtUnc_12: -0.02577120581018809 - ArtUnc_13: -0.20196510734929263 - ArtUnc_14: -0.061245749383712446 - ArtUnc_15: -0.1373398814060955 - ArtUnc_16: 0.05559250646001657 - ArtUnc_17: -0.03891494291030187 - ArtUnc_18: 0.022439546494828832 - ArtUnc_19: -0.004613609699705583 - ArtUnc_20: -0.005955233470981109 - ArtUnc_21: -0.000919797110477925 - ArtUnc_22: -0.0015613108826127554 - ArtUnc_23: -0.0005657803910752896 - ArtUnc_24: -0.00013845948901258673 - ArtUnc_25: 0.0015884893142738003 - ArtUnc_26: 0.0027998731918240935 - ArtUnc_27: 0.012058199532830109 - ArtUnc_28: 0.0010435302393417168 - ArtUnc_29: -0.0008423840084407331 - ArtUnc_30: 0.006854685756505784 - ArtUnc_31: 0.0006563809746296008 - ArtUnc_32: -0.003397722806987923 - ArtUnc_33: -0.0013550843877417945 - ArtUnc_34: -0.0018974214458767377 - ArtUnc_35: -0.0033135972302497743 - ArtUnc_36: -0.0011026071913299487 - ArtUnc_37: -0.00021120981280549925 - ArtUnc_38: 0.0001611175014340478 - ArtUnc_39: 7.780354641441171e-06 - ArtUnc_40: -1.0949039928915957e-05 - ArtUnc_41: 0.0008162451372233949 - ArtUnc_42: 0.0006595543728718163 - ArtUnc_43: -0.0001920179570449045 - ArtUnc_44: -0.00029239045544503836 - ArtUnc_45: 0.00029228857947158284 - ArtUnc_46: -0.00014950580404518931 - ArtUnc_47: 0.0003446552927101274 - ArtUnc_48: -0.00011551717262218647 - ArtUnc_49: -0.00017085330905257303 - ArtUnc_50: -0.00013644698293498577 - ArtUnc_51: 9.219831701846136e-06 - ArtUnc_52: -1.4905544371813783e-05 - ArtUnc_53: -0.00014030870040233003 - ArtUnc_54: 2.172973149282271e-05 - ArtUnc_55: 2.5524966768608532e-05 - ArtUnc_56: 1.1225502356583022e-05 - ArtUnc_57: -4.691504492441422e-06 - ArtUnc_58: 7.6197052616898715e-06 - ArtUnc_59: 9.825460992185863e-06 - ArtUnc_60: 3.627685529542029e-06 - ArtUnc_61: -2.392677403828778e-06 - ArtUnc_62: -2.617544550091262e-06 - ArtUnc_63: 1.7619189417090515e-06 - ArtUnc_64: -4.0927753178519035e-06 - ArtUnc_65: 4.0074756663388155e-06 - ArtUnc_66: 2.9159524324259093e-06 - ArtUnc_67: -1.0830813048008015e-06 - ArtUnc_68: -3.5965235536997996e-06 - ArtUnc_69: -2.322886166859595e-06 - ArtUnc_70: 2.5743213044265925e-07 - ArtUnc_71: -1.5613343610499397e-07 - ArtUnc_72: 6.637580118037731e-08 - ArtUnc_73: -6.870695206562281e-07 - ArtUnc_74: 8.574271135636011e-07 - ArtUnc_75: 1.1569485846268291e-07 - ArtUnc_76: -6.437296749786422e-08 - ArtUnc_77: -1.837073110006341e-07 - ArtUnc_78: -2.4335993445393687e-07 - ArtUnc_79: 3.0163122457542233e-07 - ArtUnc_80: -1.0246606463765234e-07 - ArtUnc_81: 3.8856419054493195e-08 - ArtUnc_82: -3.6760400909888214e-11 - ArtUnc_83: 1.978891082722819e-08 - ArtUnc_84: -3.067811729035556e-08 - ArtUnc_85: -1.2655550615766943e-08 - ArtUnc_86: -6.924432285300878e-09 - ArtUnc_87: -1.4939796498290833e-08 - ArtUnc_88: 3.768689079174396e-08 - ArtUnc_89: 3.359132245658672e-08 - ArtUnc_90: 1.590444265428233e-08 - ArtUnc_91: -5.957595733315514e-09 - ArtUnc_92: -1.0576092301003206e-09 - ArtUnc_93: 1.3221074939131718e-08 - ArtUnc_94: -5.2314837785566986e-09 - ArtUnc_95: -6.979669883933357e-09 - ArtUnc_96: 1.543753446103767e-10 + Model_1: 8.61963166e+00 + Model_2: 8.61963166e+00 + ModelRW_1: 1.52155237e+01 + ModelRW_2: 1.52155237e+01 + JES_1: 7.60249854e+00 + JES_2: 7.60249854e+00 + ArtUnc_1: 2.85346195e+01 + ArtUnc_2: -7.12386397e+00 + ArtUnc_3: -2.71812656e+00 + ArtUnc_4: -3.89928488e-01 + ArtUnc_5: -6.70746378e-03 + ArtUnc_6: -8.28399921e-03 + ArtUnc_7: 7.56739151e-04 + ArtUnc_8: -2.78558823e-01 + ArtUnc_9: -1.55536976e-03 + ArtUnc_10: 6.84104003e-01 + ArtUnc_11: 2.70398261e-01 + ArtUnc_12: -2.57712058e-02 + ArtUnc_13: -2.01965107e-01 + ArtUnc_14: -6.12457494e-02 + ArtUnc_15: -1.37339881e-01 + ArtUnc_16: 5.55925065e-02 + ArtUnc_17: -3.89149429e-02 + ArtUnc_18: 2.24395465e-02 + ArtUnc_19: -4.61360970e-03 + ArtUnc_20: -5.95523347e-03 + ArtUnc_21: -9.19797110e-04 + ArtUnc_22: -1.56131088e-03 + ArtUnc_23: -5.65780391e-04 + ArtUnc_24: -1.38459489e-04 + ArtUnc_25: 1.58848931e-03 + ArtUnc_26: 2.79987319e-03 + ArtUnc_27: 1.20581995e-02 + ArtUnc_28: 1.04353024e-03 + ArtUnc_29: -8.42384008e-04 + ArtUnc_30: 6.85468576e-03 + ArtUnc_31: 6.56380975e-04 + ArtUnc_32: -3.39772281e-03 + ArtUnc_33: -1.35508439e-03 + ArtUnc_34: -1.89742145e-03 + ArtUnc_35: -3.31359723e-03 + ArtUnc_36: -1.10260719e-03 + ArtUnc_37: -2.11209813e-04 + ArtUnc_38: 1.61117501e-04 + ArtUnc_39: 7.78035464e-06 + ArtUnc_40: -1.09490399e-05 + ArtUnc_41: 8.16245137e-04 + ArtUnc_42: 6.59554373e-04 + ArtUnc_43: -1.92017957e-04 + ArtUnc_44: -2.92390455e-04 + ArtUnc_45: 2.92288579e-04 + ArtUnc_46: -1.49505804e-04 + ArtUnc_47: 3.44655293e-04 + ArtUnc_48: -1.15517173e-04 + ArtUnc_49: -1.70853309e-04 + ArtUnc_50: -1.36446983e-04 + ArtUnc_51: 9.21983170e-06 + ArtUnc_52: -1.49055444e-05 + ArtUnc_53: -1.40308700e-04 + ArtUnc_54: 2.17297315e-05 + ArtUnc_55: 2.55249668e-05 + ArtUnc_56: 1.12255024e-05 + ArtUnc_57: -4.69150449e-06 + ArtUnc_58: 7.61970526e-06 + ArtUnc_59: 9.82546099e-06 + ArtUnc_60: 3.62768553e-06 + ArtUnc_61: -2.39267740e-06 + ArtUnc_62: -2.61754455e-06 + ArtUnc_63: 1.76191894e-06 + ArtUnc_64: -4.09277532e-06 + ArtUnc_65: 4.00747567e-06 + ArtUnc_66: 2.91595243e-06 + ArtUnc_67: -1.08308130e-06 + ArtUnc_68: -3.59652355e-06 + ArtUnc_69: -2.32288617e-06 + ArtUnc_70: 2.57432130e-07 + ArtUnc_71: -1.56133436e-07 + ArtUnc_72: 6.63758012e-08 + ArtUnc_73: -6.87069521e-07 + ArtUnc_74: 8.57427114e-07 + ArtUnc_75: 1.15694858e-07 + ArtUnc_76: -6.43729675e-08 + ArtUnc_77: -1.83707311e-07 + ArtUnc_78: -2.43359934e-07 + ArtUnc_79: 3.01631225e-07 + ArtUnc_80: -1.02466065e-07 + ArtUnc_81: 3.88564191e-08 + ArtUnc_82: -3.67604009e-11 + ArtUnc_83: 1.97889108e-08 + ArtUnc_84: -3.06781173e-08 + ArtUnc_85: -1.26555506e-08 + ArtUnc_86: -6.92443229e-09 + ArtUnc_87: -1.49397965e-08 + ArtUnc_88: 3.76868908e-08 + ArtUnc_89: 3.35913225e-08 + ArtUnc_90: 1.59044427e-08 + ArtUnc_91: -5.95759573e-09 + ArtUnc_92: -1.05760923e-09 + ArtUnc_93: 1.32210749e-08 + ArtUnc_94: -5.23148378e-09 + ArtUnc_95: -6.97966988e-09 + ArtUnc_96: 1.54375345e-10 - stat: 0 Uncorr: 3.58 - RCES: 16.410102625821693 - ElEn: 0.7785985615193494 - ElTh: 1.6794550395887353 - Lumi: 8.950000000000001 + RCES: 1.64101026e+01 + ElEn: 7.78598562e-01 + ElTh: 1.67945504e+00 + Lumi: 8.95000000e+00 LArN: 1.79 - StatMC: 3.2578000000000005 - RadErr: 2.2196000000000002 - Model_1: 11.315546976615845 - Model_2: 11.315546976615845 - ModelRW_1: 14.910195009455776 - ModelRW_2: 14.910195009455776 - JES_1: 17.775916725727537 - JES_2: 17.775916725727537 - ArtUnc_1: 2.2970761331390066 - ArtUnc_2: -1.0892033898037916 - ArtUnc_3: -0.4626643792894114 - ArtUnc_4: 0.0034597266768986723 - ArtUnc_5: -0.07024799880322546 - ArtUnc_6: -0.025635496777499604 - ArtUnc_7: -0.0011811538975831683 - ArtUnc_8: 5.698072050451249 - ArtUnc_9: 0.01838660928832924 - ArtUnc_10: -6.02475607507018 - ArtUnc_11: -2.9660838975572674 - ArtUnc_12: 0.509042374153124 - ArtUnc_13: 1.8418379289105533 - ArtUnc_14: 0.5185384503576153 - ArtUnc_15: 1.3053603129533584 - ArtUnc_16: -0.48075482695253724 - ArtUnc_17: 0.3546020620221246 - ArtUnc_18: -0.19000896413705118 - ArtUnc_19: 0.03448455438106577 - ArtUnc_20: 0.0334777718193411 - ArtUnc_21: 0.00667766552088803 - ArtUnc_22: 0.005573150621444783 - ArtUnc_23: 0.0016140948748548712 - ArtUnc_24: 0.000568273667308521 - ArtUnc_25: -0.13949268880938007 - ArtUnc_26: -0.07352578045564359 - ArtUnc_27: -0.1808656512600164 - ArtUnc_28: -0.021260206797389925 - ArtUnc_29: 0.00997221831462979 - ArtUnc_30: -0.09065927398924134 - ArtUnc_31: -0.0006883162712905388 - ArtUnc_32: 0.04229196904252959 - ArtUnc_33: 0.01621967581405243 - ArtUnc_34: 0.027143903368802316 - ArtUnc_35: 0.04350407896178598 - ArtUnc_36: 0.016514706658114008 - ArtUnc_37: 0.0024434123447177863 - ArtUnc_38: -0.002971403779176569 - ArtUnc_39: -0.0007310172834329555 - ArtUnc_40: -0.00021136252877450334 - ArtUnc_41: -0.007160870664322624 - ArtUnc_42: -0.005876951781650189 - ArtUnc_43: 0.0017314514208508819 - ArtUnc_44: 0.002553951127823745 - ArtUnc_45: -0.0025656232271245513 - ArtUnc_46: 0.0011881545478558493 - ArtUnc_47: -0.002804030604187082 - ArtUnc_48: 0.0008879580966485295 - ArtUnc_49: 0.001369146410883418 - ArtUnc_50: 0.0011494198540057063 - ArtUnc_51: -9.055078135816814e-05 - ArtUnc_52: 7.294074042155794e-05 - ArtUnc_53: 0.001181951523907321 - ArtUnc_54: -0.00025362312439836495 - ArtUnc_55: -0.00018472562965263104 - ArtUnc_56: -8.739836558783833e-05 - ArtUnc_57: 4.885657431811609e-05 - ArtUnc_58: -5.51390303127279e-05 - ArtUnc_59: -0.00013839594374450153 - ArtUnc_60: -4.877085515415337e-05 - ArtUnc_61: 4.22707537278272e-05 - ArtUnc_62: 2.8700177521542225e-05 - ArtUnc_63: -2.3803806686567963e-05 - ArtUnc_64: 5.132418586798827e-05 - ArtUnc_65: -5.261628114177895e-05 - ArtUnc_66: -3.88344980812236e-05 - ArtUnc_67: 1.3491744321721498e-05 - ArtUnc_68: 3.7428430802205095e-05 - ArtUnc_69: 2.0431367214919684e-05 - ArtUnc_70: -6.037085275244034e-07 - ArtUnc_71: 7.380420140613976e-07 - ArtUnc_72: -1.1211342621343135e-06 - ArtUnc_73: 7.325768443241816e-06 - ArtUnc_74: -8.916791594335334e-06 - ArtUnc_75: -1.162861834698842e-06 - ArtUnc_76: 6.250625946348806e-07 - ArtUnc_77: 1.82006350343776e-06 - ArtUnc_78: 2.525337070075889e-06 - ArtUnc_79: -3.227347634136641e-06 - ArtUnc_80: 9.159003097231551e-07 - ArtUnc_81: -3.4720463522110955e-07 - ArtUnc_82: 8.063925823509818e-10 - ArtUnc_83: -2.002810595725168e-07 - ArtUnc_84: 2.5676589471883596e-07 - ArtUnc_85: 1.2916345002614888e-07 - ArtUnc_86: 5.406845147989175e-08 - ArtUnc_87: 1.3886480880961782e-07 - ArtUnc_88: -4.220408273270315e-07 - ArtUnc_89: -3.5825707537558045e-07 - ArtUnc_90: -1.3673297886087641e-07 - ArtUnc_91: 5.3828040959303416e-08 - ArtUnc_92: 9.722202506314322e-09 - ArtUnc_93: -1.2730479200691123e-07 - ArtUnc_94: 5.895056924848404e-08 - ArtUnc_95: 3.96949352117729e-08 - ArtUnc_96: 4.001083540114452e-09 + StatMC: 3.25780000e+00 + RadErr: 2.21960000e+00 + Model_1: 1.13155470e+01 + Model_2: 1.13155470e+01 + ModelRW_1: 1.49101950e+01 + ModelRW_2: 1.49101950e+01 + JES_1: 1.77759167e+01 + JES_2: 1.77759167e+01 + ArtUnc_1: 2.29707613e+00 + ArtUnc_2: -1.08920339e+00 + ArtUnc_3: -4.62664379e-01 + ArtUnc_4: 3.45972668e-03 + ArtUnc_5: -7.02479988e-02 + ArtUnc_6: -2.56354968e-02 + ArtUnc_7: -1.18115390e-03 + ArtUnc_8: 5.69807205e+00 + ArtUnc_9: 1.83866093e-02 + ArtUnc_10: -6.02475608e+00 + ArtUnc_11: -2.96608390e+00 + ArtUnc_12: 5.09042374e-01 + ArtUnc_13: 1.84183793e+00 + ArtUnc_14: 5.18538450e-01 + ArtUnc_15: 1.30536031e+00 + ArtUnc_16: -4.80754827e-01 + ArtUnc_17: 3.54602062e-01 + ArtUnc_18: -1.90008964e-01 + ArtUnc_19: 3.44845544e-02 + ArtUnc_20: 3.34777718e-02 + ArtUnc_21: 6.67766552e-03 + ArtUnc_22: 5.57315062e-03 + ArtUnc_23: 1.61409487e-03 + ArtUnc_24: 5.68273667e-04 + ArtUnc_25: -1.39492689e-01 + ArtUnc_26: -7.35257805e-02 + ArtUnc_27: -1.80865651e-01 + ArtUnc_28: -2.12602068e-02 + ArtUnc_29: 9.97221831e-03 + ArtUnc_30: -9.06592740e-02 + ArtUnc_31: -6.88316271e-04 + ArtUnc_32: 4.22919690e-02 + ArtUnc_33: 1.62196758e-02 + ArtUnc_34: 2.71439034e-02 + ArtUnc_35: 4.35040790e-02 + ArtUnc_36: 1.65147067e-02 + ArtUnc_37: 2.44341234e-03 + ArtUnc_38: -2.97140378e-03 + ArtUnc_39: -7.31017283e-04 + ArtUnc_40: -2.11362529e-04 + ArtUnc_41: -7.16087066e-03 + ArtUnc_42: -5.87695178e-03 + ArtUnc_43: 1.73145142e-03 + ArtUnc_44: 2.55395113e-03 + ArtUnc_45: -2.56562323e-03 + ArtUnc_46: 1.18815455e-03 + ArtUnc_47: -2.80403060e-03 + ArtUnc_48: 8.87958097e-04 + ArtUnc_49: 1.36914641e-03 + ArtUnc_50: 1.14941985e-03 + ArtUnc_51: -9.05507814e-05 + ArtUnc_52: 7.29407404e-05 + ArtUnc_53: 1.18195152e-03 + ArtUnc_54: -2.53623124e-04 + ArtUnc_55: -1.84725630e-04 + ArtUnc_56: -8.73983656e-05 + ArtUnc_57: 4.88565743e-05 + ArtUnc_58: -5.51390303e-05 + ArtUnc_59: -1.38395944e-04 + ArtUnc_60: -4.87708552e-05 + ArtUnc_61: 4.22707537e-05 + ArtUnc_62: 2.87001775e-05 + ArtUnc_63: -2.38038067e-05 + ArtUnc_64: 5.13241859e-05 + ArtUnc_65: -5.26162811e-05 + ArtUnc_66: -3.88344981e-05 + ArtUnc_67: 1.34917443e-05 + ArtUnc_68: 3.74284308e-05 + ArtUnc_69: 2.04313672e-05 + ArtUnc_70: -6.03708528e-07 + ArtUnc_71: 7.38042014e-07 + ArtUnc_72: -1.12113426e-06 + ArtUnc_73: 7.32576844e-06 + ArtUnc_74: -8.91679159e-06 + ArtUnc_75: -1.16286183e-06 + ArtUnc_76: 6.25062595e-07 + ArtUnc_77: 1.82006350e-06 + ArtUnc_78: 2.52533707e-06 + ArtUnc_79: -3.22734763e-06 + ArtUnc_80: 9.15900310e-07 + ArtUnc_81: -3.47204635e-07 + ArtUnc_82: 8.06392582e-10 + ArtUnc_83: -2.00281060e-07 + ArtUnc_84: 2.56765895e-07 + ArtUnc_85: 1.29163450e-07 + ArtUnc_86: 5.40684515e-08 + ArtUnc_87: 1.38864809e-07 + ArtUnc_88: -4.22040827e-07 + ArtUnc_89: -3.58257075e-07 + ArtUnc_90: -1.36732979e-07 + ArtUnc_91: 5.38280410e-08 + ArtUnc_92: 9.72220251e-09 + ArtUnc_93: -1.27304792e-07 + ArtUnc_94: 5.89505692e-08 + ArtUnc_95: 3.96949352e-08 + ArtUnc_96: 4.00108354e-09 - stat: 0 Uncorr: 0.904 - RCES: 0.6864896479918688 - ElEn: 0.1131806555909622 - ElTh: 0.41406752686005216 - Lumi: 2.2600000000000002 + RCES: 6.86489648e-01 + ElEn: 1.13180656e-01 + ElTh: 4.14067527e-01 + Lumi: 2.26000000e+00 LArN: 0.452 - StatMC: 0.8678400000000001 + StatMC: 8.67840000e-01 RadErr: 0.70512 - Model_1: 3.1513769338497104 - Model_2: 3.1513769338497104 - ModelRW_1: 1.9624193076914018 - ModelRW_2: 1.9624193076914018 - JES_1: 2.725353856217574 - JES_2: 2.725353856217574 - ArtUnc_1: -0.0009965196005386923 - ArtUnc_2: -0.04907637101446047 - ArtUnc_3: -0.04756497054746269 - ArtUnc_4: -0.013756699974385526 - ArtUnc_5: 0.0013405642217313753 - ArtUnc_6: -0.0003866753706473783 - ArtUnc_7: -0.00012760105812504135 - ArtUnc_8: 0.3173188838021138 - ArtUnc_9: 0.0011592755697388047 - ArtUnc_10: -0.45041721817330066 - ArtUnc_11: -0.2137337371651879 - ArtUnc_12: 0.07390984381923797 - ArtUnc_13: 0.15323462967136156 - ArtUnc_14: 0.016725144962614295 - ArtUnc_15: 0.06154109650884441 - ArtUnc_16: 0.0012801800918984287 - ArtUnc_17: -0.010197513896344924 - ArtUnc_18: -0.0036468856197927895 - ArtUnc_19: -0.007440900959471428 - ArtUnc_20: 0.030597234662372387 - ArtUnc_21: 0.01992090985890962 - ArtUnc_22: -0.008080984027201216 - ArtUnc_23: -0.002513702610298424 - ArtUnc_24: 0.0004130954196040905 - ArtUnc_25: -0.7665401298664287 - ArtUnc_26: 0.20904621147775262 - ArtUnc_27: 2.4722660721619834 - ArtUnc_28: -0.2963104198978628 - ArtUnc_29: -0.22890452780055967 - ArtUnc_30: 1.0542185366477073 - ArtUnc_31: -0.028303682128787668 - ArtUnc_32: -0.49320836054377415 - ArtUnc_33: -0.1378857262320036 - ArtUnc_34: -0.27841141169946304 - ArtUnc_35: -0.4738975981671955 - ArtUnc_36: -0.17395524785262387 - ArtUnc_37: -0.02944182617674767 - ArtUnc_38: 0.029621854680974245 - ArtUnc_39: 0.0037937596643816225 - ArtUnc_40: 0.0006171169738548413 - ArtUnc_41: 0.07130678915444527 - ArtUnc_42: 0.09783409895430999 - ArtUnc_43: -0.0025186435155468063 - ArtUnc_44: -0.025573406243681544 - ArtUnc_45: 0.03679531486118474 - ArtUnc_46: -0.003224507487493442 - ArtUnc_47: 0.022428942333149793 - ArtUnc_48: 0.0027457022023610472 - ArtUnc_49: -0.013380306228957847 - ArtUnc_50: -0.01680463061811569 - ArtUnc_51: 0.0006300547084760256 - ArtUnc_52: -0.0005791249759598666 - ArtUnc_53: -0.016114514223097707 - ArtUnc_54: 0.005240293819542083 - ArtUnc_55: 0.002967708631284937 - ArtUnc_56: 0.00019026322521595404 - ArtUnc_57: 0.0002804429750602793 - ArtUnc_58: -0.001894443931454924 - ArtUnc_59: 0.0013271820680700766 - ArtUnc_60: 0.00035204867711393067 - ArtUnc_61: -0.0014031938044521107 - ArtUnc_62: 0.000288213901971008 - ArtUnc_63: 0.0005940507007868716 - ArtUnc_64: -8.618144975369645e-05 - ArtUnc_65: 0.0002762138691505921 - ArtUnc_66: 0.0008705951659873383 - ArtUnc_67: -0.0002900155986531886 - ArtUnc_68: -0.001088372977162145 - ArtUnc_69: -0.0005855436480218688 - ArtUnc_70: 3.891221637388164e-05 - ArtUnc_71: -0.00010782019438672507 - ArtUnc_72: 7.085871654984114e-05 - ArtUnc_73: -9.26754934375886e-06 - ArtUnc_74: 1.0338450946933556e-05 - ArtUnc_75: 2.5984669077553655e-06 - ArtUnc_76: -3.7953189242014587e-06 - ArtUnc_77: -6.080111235031745e-06 - ArtUnc_78: -1.145943283772544e-05 - ArtUnc_79: 1.3531736033285865e-05 - ArtUnc_80: 4.785256084644365e-06 - ArtUnc_81: -1.4476474117618153e-06 - ArtUnc_82: 8.717567938832361e-09 - ArtUnc_83: 2.1625432339056964e-06 - ArtUnc_84: 1.4245958021681639e-06 - ArtUnc_85: -1.5918227317219126e-06 - ArtUnc_86: 2.033747431831262e-06 - ArtUnc_87: 1.5086338157833956e-06 - ArtUnc_88: 1.705818229522455e-06 - ArtUnc_89: 1.6382068061899532e-06 - ArtUnc_90: -2.8779633835803196e-07 - ArtUnc_91: 4.3439631693636184e-07 - ArtUnc_92: 6.715287876035183e-08 - ArtUnc_93: -5.728647448855988e-08 - ArtUnc_94: -7.621759654344934e-07 - ArtUnc_95: 4.1672703857164295e-08 - ArtUnc_96: -2.8880854045615154e-07 + Model_1: 3.15137693e+00 + Model_2: 3.15137693e+00 + ModelRW_1: 1.96241931e+00 + ModelRW_2: 1.96241931e+00 + JES_1: 2.72535386e+00 + JES_2: 2.72535386e+00 + ArtUnc_1: -9.96519601e-04 + ArtUnc_2: -4.90763710e-02 + ArtUnc_3: -4.75649705e-02 + ArtUnc_4: -1.37567000e-02 + ArtUnc_5: 1.34056422e-03 + ArtUnc_6: -3.86675371e-04 + ArtUnc_7: -1.27601058e-04 + ArtUnc_8: 3.17318884e-01 + ArtUnc_9: 1.15927557e-03 + ArtUnc_10: -4.50417218e-01 + ArtUnc_11: -2.13733737e-01 + ArtUnc_12: 7.39098438e-02 + ArtUnc_13: 1.53234630e-01 + ArtUnc_14: 1.67251450e-02 + ArtUnc_15: 6.15410965e-02 + ArtUnc_16: 1.28018009e-03 + ArtUnc_17: -1.01975139e-02 + ArtUnc_18: -3.64688562e-03 + ArtUnc_19: -7.44090096e-03 + ArtUnc_20: 3.05972347e-02 + ArtUnc_21: 1.99209099e-02 + ArtUnc_22: -8.08098403e-03 + ArtUnc_23: -2.51370261e-03 + ArtUnc_24: 4.13095420e-04 + ArtUnc_25: -7.66540130e-01 + ArtUnc_26: 2.09046211e-01 + ArtUnc_27: 2.47226607e+00 + ArtUnc_28: -2.96310420e-01 + ArtUnc_29: -2.28904528e-01 + ArtUnc_30: 1.05421854e+00 + ArtUnc_31: -2.83036821e-02 + ArtUnc_32: -4.93208361e-01 + ArtUnc_33: -1.37885726e-01 + ArtUnc_34: -2.78411412e-01 + ArtUnc_35: -4.73897598e-01 + ArtUnc_36: -1.73955248e-01 + ArtUnc_37: -2.94418262e-02 + ArtUnc_38: 2.96218547e-02 + ArtUnc_39: 3.79375966e-03 + ArtUnc_40: 6.17116974e-04 + ArtUnc_41: 7.13067892e-02 + ArtUnc_42: 9.78340990e-02 + ArtUnc_43: -2.51864352e-03 + ArtUnc_44: -2.55734062e-02 + ArtUnc_45: 3.67953149e-02 + ArtUnc_46: -3.22450749e-03 + ArtUnc_47: 2.24289423e-02 + ArtUnc_48: 2.74570220e-03 + ArtUnc_49: -1.33803062e-02 + ArtUnc_50: -1.68046306e-02 + ArtUnc_51: 6.30054708e-04 + ArtUnc_52: -5.79124976e-04 + ArtUnc_53: -1.61145142e-02 + ArtUnc_54: 5.24029382e-03 + ArtUnc_55: 2.96770863e-03 + ArtUnc_56: 1.90263225e-04 + ArtUnc_57: 2.80442975e-04 + ArtUnc_58: -1.89444393e-03 + ArtUnc_59: 1.32718207e-03 + ArtUnc_60: 3.52048677e-04 + ArtUnc_61: -1.40319380e-03 + ArtUnc_62: 2.88213902e-04 + ArtUnc_63: 5.94050701e-04 + ArtUnc_64: -8.61814498e-05 + ArtUnc_65: 2.76213869e-04 + ArtUnc_66: 8.70595166e-04 + ArtUnc_67: -2.90015599e-04 + ArtUnc_68: -1.08837298e-03 + ArtUnc_69: -5.85543648e-04 + ArtUnc_70: 3.89122164e-05 + ArtUnc_71: -1.07820194e-04 + ArtUnc_72: 7.08587165e-05 + ArtUnc_73: -9.26754934e-06 + ArtUnc_74: 1.03384509e-05 + ArtUnc_75: 2.59846691e-06 + ArtUnc_76: -3.79531892e-06 + ArtUnc_77: -6.08011124e-06 + ArtUnc_78: -1.14594328e-05 + ArtUnc_79: 1.35317360e-05 + ArtUnc_80: 4.78525608e-06 + ArtUnc_81: -1.44764741e-06 + ArtUnc_82: 8.71756794e-09 + ArtUnc_83: 2.16254323e-06 + ArtUnc_84: 1.42459580e-06 + ArtUnc_85: -1.59182273e-06 + ArtUnc_86: 2.03374743e-06 + ArtUnc_87: 1.50863382e-06 + ArtUnc_88: 1.70581823e-06 + ArtUnc_89: 1.63820681e-06 + ArtUnc_90: -2.87796338e-07 + ArtUnc_91: 4.34396317e-07 + ArtUnc_92: 6.71528788e-08 + ArtUnc_93: -5.72864745e-08 + ArtUnc_94: -7.62175965e-07 + ArtUnc_95: 4.16727039e-08 + ArtUnc_96: -2.88808540e-07 - stat: 0 Uncorr: 0.149 - RCES: 0.07179883146681428 - ElEn: 0.022399611603775637 - ElTh: 0.11402881510828744 + RCES: 7.17988315e-02 + ElEn: 2.23996116e-02 + ElTh: 1.14028815e-01 Lumi: 0.3725 LArN: 0.0745 StatMC: 0.24883 RadErr: 0.11026 - Model_1: 0.5436519776474651 - Model_2: 0.5436519776474651 - ModelRW_1: 0.22441447914517457 - ModelRW_2: 0.22441447914517457 - JES_1: 0.4924272481671785 - JES_2: 0.4924272481671785 - ArtUnc_1: 0.00048222324563112264 - ArtUnc_2: -0.0004548193660647549 - ArtUnc_3: -0.000286514996135342 - ArtUnc_4: -5.045932370756765e-06 - ArtUnc_5: -6.963204243240928e-05 - ArtUnc_6: -3.525407986559304e-05 - ArtUnc_7: -7.335364812501672e-07 - ArtUnc_8: 0.011353917117131688 - ArtUnc_9: 4.218063182166823e-05 - ArtUnc_10: -0.015707934389066265 - ArtUnc_11: -0.009803885316949498 - ArtUnc_12: 0.0021536993705559898 - ArtUnc_13: 0.007532844337655942 - ArtUnc_14: 0.0021950944042568683 - ArtUnc_15: 0.006046097250410134 - ArtUnc_16: -0.0023116927991033214 - ArtUnc_17: 0.0017171120266754247 - ArtUnc_18: -0.0010288977453566045 - ArtUnc_19: 0.00011311504002460291 - ArtUnc_20: 0.0005321726757171317 - ArtUnc_21: 0.00031996106432853085 - ArtUnc_22: -9.235564886922412e-05 - ArtUnc_23: -4.181140486276274e-05 - ArtUnc_24: 1.90347021989865e-05 - ArtUnc_25: -0.020487758169369312 - ArtUnc_26: 0.011574866257633931 - ArtUnc_27: 0.08912912698772603 - ArtUnc_28: -0.008665626267010482 - ArtUnc_29: -0.006635338253216263 - ArtUnc_30: 0.027945876812184477 - ArtUnc_31: -0.0009772297497179653 - ArtUnc_32: -0.010216142199216087 - ArtUnc_33: -0.002845330035767449 - ArtUnc_34: -0.005570333273645624 - ArtUnc_35: -0.009662654568296104 - ArtUnc_36: -0.004528737722651677 - ArtUnc_37: -0.0012038460339396265 - ArtUnc_38: 0.0018731277432525726 - ArtUnc_39: 0.0008503564209471586 - ArtUnc_40: 0.00013844562202529199 - ArtUnc_41: 0.6638495686437801 - ArtUnc_42: -0.5706914172500034 - ArtUnc_43: -0.37756148387400784 - ArtUnc_44: -0.03501730818425852 - ArtUnc_45: -0.22079268371283536 - ArtUnc_46: -0.1555648662556946 - ArtUnc_47: 0.03878286742300583 - ArtUnc_48: -0.17923666489526285 - ArtUnc_49: 0.05428378152839977 - ArtUnc_50: 0.1324244338946672 - ArtUnc_51: -0.003416335306031974 - ArtUnc_52: 0.007711552695186313 - ArtUnc_53: 0.13148541911448347 - ArtUnc_54: -0.04808237290860438 - ArtUnc_55: -0.03475140647080258 - ArtUnc_56: 0.003634129374122391 - ArtUnc_57: -0.008015429032455383 - ArtUnc_58: 0.042966783029020544 - ArtUnc_59: -0.021593356391989723 - ArtUnc_60: -0.005088828565798671 - ArtUnc_61: 0.024094100946153038 - ArtUnc_62: -0.006406534115997293 - ArtUnc_63: -0.009260583805346423 - ArtUnc_64: -0.0007324592001938286 - ArtUnc_65: -0.0023102409510445 - ArtUnc_66: -0.011795995784537529 - ArtUnc_67: 0.003798810760947751 - ArtUnc_68: 0.014005992450295192 - ArtUnc_69: 0.0072733152673920285 - ArtUnc_70: -0.0004229394256654641 - ArtUnc_71: 0.0014663376725319356 - ArtUnc_72: -0.0009929230225179458 - ArtUnc_73: 0.00011844704664039685 - ArtUnc_74: -0.00023022953652054892 - ArtUnc_75: -5.280533255611597e-05 - ArtUnc_76: 5.8320312563038125e-05 - ArtUnc_77: 0.00013664656253665832 - ArtUnc_78: 0.00022585533316878535 - ArtUnc_79: -0.0003222283740101118 - ArtUnc_80: -8.560658591625873e-05 - ArtUnc_81: 2.7635731751347974e-05 - ArtUnc_82: -1.4471079941616133e-07 - ArtUnc_83: -4.8492427455588045e-05 - ArtUnc_84: -2.7385198275194944e-05 - ArtUnc_85: 3.691156820800699e-05 - ArtUnc_86: -4.585635645987649e-05 - ArtUnc_87: -3.282889882737541e-05 - ArtUnc_88: -3.2808291692027684e-05 - ArtUnc_89: -5.063474698032896e-05 - ArtUnc_90: 5.940492185626315e-06 - ArtUnc_91: -9.96937532891693e-06 - ArtUnc_92: -1.5861418317524066e-06 - ArtUnc_93: 1.394519710889056e-05 - ArtUnc_94: 1.976061848848542e-05 - ArtUnc_95: 5.415803724684479e-06 - ArtUnc_96: 8.099606377266068e-06 + Model_1: 5.43651978e-01 + Model_2: 5.43651978e-01 + ModelRW_1: 2.24414479e-01 + ModelRW_2: 2.24414479e-01 + JES_1: 4.92427248e-01 + JES_2: 4.92427248e-01 + ArtUnc_1: 4.82223246e-04 + ArtUnc_2: -4.54819366e-04 + ArtUnc_3: -2.86514996e-04 + ArtUnc_4: -5.04593237e-06 + ArtUnc_5: -6.96320424e-05 + ArtUnc_6: -3.52540799e-05 + ArtUnc_7: -7.33536481e-07 + ArtUnc_8: 1.13539171e-02 + ArtUnc_9: 4.21806318e-05 + ArtUnc_10: -1.57079344e-02 + ArtUnc_11: -9.80388532e-03 + ArtUnc_12: 2.15369937e-03 + ArtUnc_13: 7.53284434e-03 + ArtUnc_14: 2.19509440e-03 + ArtUnc_15: 6.04609725e-03 + ArtUnc_16: -2.31169280e-03 + ArtUnc_17: 1.71711203e-03 + ArtUnc_18: -1.02889775e-03 + ArtUnc_19: 1.13115040e-04 + ArtUnc_20: 5.32172676e-04 + ArtUnc_21: 3.19961064e-04 + ArtUnc_22: -9.23556489e-05 + ArtUnc_23: -4.18114049e-05 + ArtUnc_24: 1.90347022e-05 + ArtUnc_25: -2.04877582e-02 + ArtUnc_26: 1.15748663e-02 + ArtUnc_27: 8.91291270e-02 + ArtUnc_28: -8.66562627e-03 + ArtUnc_29: -6.63533825e-03 + ArtUnc_30: 2.79458768e-02 + ArtUnc_31: -9.77229750e-04 + ArtUnc_32: -1.02161422e-02 + ArtUnc_33: -2.84533004e-03 + ArtUnc_34: -5.57033327e-03 + ArtUnc_35: -9.66265457e-03 + ArtUnc_36: -4.52873772e-03 + ArtUnc_37: -1.20384603e-03 + ArtUnc_38: 1.87312774e-03 + ArtUnc_39: 8.50356421e-04 + ArtUnc_40: 1.38445622e-04 + ArtUnc_41: 6.63849569e-01 + ArtUnc_42: -5.70691417e-01 + ArtUnc_43: -3.77561484e-01 + ArtUnc_44: -3.50173082e-02 + ArtUnc_45: -2.20792684e-01 + ArtUnc_46: -1.55564866e-01 + ArtUnc_47: 3.87828674e-02 + ArtUnc_48: -1.79236665e-01 + ArtUnc_49: 5.42837815e-02 + ArtUnc_50: 1.32424434e-01 + ArtUnc_51: -3.41633531e-03 + ArtUnc_52: 7.71155270e-03 + ArtUnc_53: 1.31485419e-01 + ArtUnc_54: -4.80823729e-02 + ArtUnc_55: -3.47514065e-02 + ArtUnc_56: 3.63412937e-03 + ArtUnc_57: -8.01542903e-03 + ArtUnc_58: 4.29667830e-02 + ArtUnc_59: -2.15933564e-02 + ArtUnc_60: -5.08882857e-03 + ArtUnc_61: 2.40941009e-02 + ArtUnc_62: -6.40653412e-03 + ArtUnc_63: -9.26058381e-03 + ArtUnc_64: -7.32459200e-04 + ArtUnc_65: -2.31024095e-03 + ArtUnc_66: -1.17959958e-02 + ArtUnc_67: 3.79881076e-03 + ArtUnc_68: 1.40059925e-02 + ArtUnc_69: 7.27331527e-03 + ArtUnc_70: -4.22939426e-04 + ArtUnc_71: 1.46633767e-03 + ArtUnc_72: -9.92923023e-04 + ArtUnc_73: 1.18447047e-04 + ArtUnc_74: -2.30229537e-04 + ArtUnc_75: -5.28053326e-05 + ArtUnc_76: 5.83203126e-05 + ArtUnc_77: 1.36646563e-04 + ArtUnc_78: 2.25855333e-04 + ArtUnc_79: -3.22228374e-04 + ArtUnc_80: -8.56065859e-05 + ArtUnc_81: 2.76357318e-05 + ArtUnc_82: -1.44710799e-07 + ArtUnc_83: -4.84924275e-05 + ArtUnc_84: -2.73851983e-05 + ArtUnc_85: 3.69115682e-05 + ArtUnc_86: -4.58563565e-05 + ArtUnc_87: -3.28288988e-05 + ArtUnc_88: -3.28082917e-05 + ArtUnc_89: -5.06347470e-05 + ArtUnc_90: 5.94049219e-06 + ArtUnc_91: -9.96937533e-06 + ArtUnc_92: -1.58614183e-06 + ArtUnc_93: 1.39451971e-05 + ArtUnc_94: 1.97606185e-05 + ArtUnc_95: 5.41580372e-06 + ArtUnc_96: 8.09960638e-06 - stat: 0 - Uncorr: 0.023799999999999998 - RCES: 0.029731906497902215 - ElEn: 0.0179402120388807 - ElTh: 0.012008980972588807 + Uncorr: 2.38000000e-02 + RCES: 2.97319065e-02 + ElEn: 1.79402120e-02 + ElTh: 1.20089810e-02 Lumi: 0.0595 - LArN: 0.011899999999999999 - StatMC: 0.12304599999999999 + LArN: 1.19000000e-02 + StatMC: 1.23046000e-01 RadErr: 0.029274 - Model_1: 0.1484330270795553 - Model_2: 0.1484330270795553 - ModelRW_1: 0.09357002614085345 - ModelRW_2: 0.09357002614085345 - JES_1: 0.06572781628427951 - JES_2: 0.06572781628427951 - ArtUnc_1: 8.284240535459942e-05 - ArtUnc_2: -7.143652520747553e-05 - ArtUnc_3: -4.2939106416322474e-05 - ArtUnc_4: 9.189147705604213e-07 - ArtUnc_5: -1.168392477351611e-05 - ArtUnc_6: -5.437220127116407e-06 - ArtUnc_7: -3.186788680124188e-07 - ArtUnc_8: 0.0017507675790445158 - ArtUnc_9: 6.3208949947927375e-06 - ArtUnc_10: -0.0023152786563023693 - ArtUnc_11: -0.001512260185718958 - ArtUnc_12: 0.0002867266414185476 - ArtUnc_13: 0.0011707137810086823 - ArtUnc_14: 0.00037400319118526687 - ArtUnc_15: 0.0010149982650403862 - ArtUnc_16: -0.0004244565163130159 - ArtUnc_17: 0.00034015178709396565 - ArtUnc_18: -0.000192932820089954 - ArtUnc_19: 4.354511051629244e-05 - ArtUnc_20: 3.082354649563666e-05 - ArtUnc_21: 1.7465997797400437e-06 - ArtUnc_22: 1.2057399180159132e-05 - ArtUnc_23: 4.491744744461753e-06 - ArtUnc_24: 9.79744710611963e-07 - ArtUnc_25: 0.000207381057035519 - ArtUnc_26: -0.0004230761354287319 - ArtUnc_27: -0.0031937538950595834 - ArtUnc_28: 0.0002789218703015377 - ArtUnc_29: 0.0003826943616382765 - ArtUnc_30: -0.0021125763707275347 - ArtUnc_31: 4.634065252060755e-05 - ArtUnc_32: 0.0012541085350820632 - ArtUnc_33: 0.0003780885952905535 - ArtUnc_34: 0.0008401347196628806 - ArtUnc_35: 0.0014372357214196374 - ArtUnc_36: 0.0005759556505313191 - ArtUnc_37: 9.800053871621878e-05 - ArtUnc_38: -0.0001049586563108525 - ArtUnc_39: -1.4606526390462278e-05 - ArtUnc_40: -3.996192469797755e-06 - ArtUnc_41: 0.011750948973270116 - ArtUnc_42: -0.015575601828048118 - ArtUnc_43: -0.004189188127765207 - ArtUnc_44: 0.0011989486168144544 - ArtUnc_45: -0.002337986903522328 - ArtUnc_46: 0.00015453013196292003 - ArtUnc_47: -0.0005559318681489714 - ArtUnc_48: 2.7101397601735106e-05 - ArtUnc_49: -0.00020626001420911725 - ArtUnc_50: -5.820870463632121e-05 - ArtUnc_51: -1.6662171501764027e-05 - ArtUnc_52: 2.5544439689513627e-05 - ArtUnc_53: -0.00014939065649154743 - ArtUnc_54: -9.672127646801581e-05 - ArtUnc_55: -1.1098661883805367e-05 - ArtUnc_56: 1.7388712030098158e-05 - ArtUnc_57: -0.11990698671213583 - ArtUnc_58: 0.1630472526295877 - ArtUnc_59: 0.23306723240397223 - ArtUnc_60: 0.08346872670813442 - ArtUnc_61: -0.05613004221263735 - ArtUnc_62: -0.0518004490850811 - ArtUnc_63: 0.030589435370586383 - ArtUnc_64: -0.08155023196137762 - ArtUnc_65: 0.07903336729866912 - ArtUnc_66: 0.04530305726093659 - ArtUnc_67: -0.013349390116759653 - ArtUnc_68: -0.0264080500996915 - ArtUnc_69: -0.012559102862259136 - ArtUnc_70: 0.0011507880480598309 - ArtUnc_71: -0.00039464089688755454 - ArtUnc_72: 0.0015003052226943954 - ArtUnc_73: -0.01664476478326977 - ArtUnc_74: 0.017515386373661138 - ArtUnc_75: 0.0022558265607425716 - ArtUnc_76: 0.00046133251513093 - ArtUnc_77: -0.0034936131326428277 - ArtUnc_78: -0.0026908293071845365 - ArtUnc_79: 0.006560964965245572 - ArtUnc_80: 0.0009448181700934723 - ArtUnc_81: -0.00044521757762517754 - ArtUnc_82: 9.185677018507984e-08 - ArtUnc_83: -0.00011809609694401655 - ArtUnc_84: 0.0005436643903216629 - ArtUnc_85: 6.648844060157769e-05 - ArtUnc_86: 4.8256104908536475e-05 - ArtUnc_87: 7.071954635315663e-05 - ArtUnc_88: 0.00035533421302064275 - ArtUnc_89: 0.00101065159677701 - ArtUnc_90: -0.00013932834585073713 - ArtUnc_91: 2.375834640852458e-05 - ArtUnc_92: 3.920061732908886e-06 - ArtUnc_93: -4.664789298303528e-05 - ArtUnc_94: -0.0005146245491329366 - ArtUnc_95: -0.00012595303709050904 - ArtUnc_96: 1.3968545028191379e-06 + Model_1: 1.48433027e-01 + Model_2: 1.48433027e-01 + ModelRW_1: 9.35700261e-02 + ModelRW_2: 9.35700261e-02 + JES_1: 6.57278163e-02 + JES_2: 6.57278163e-02 + ArtUnc_1: 8.28424054e-05 + ArtUnc_2: -7.14365252e-05 + ArtUnc_3: -4.29391064e-05 + ArtUnc_4: 9.18914771e-07 + ArtUnc_5: -1.16839248e-05 + ArtUnc_6: -5.43722013e-06 + ArtUnc_7: -3.18678868e-07 + ArtUnc_8: 1.75076758e-03 + ArtUnc_9: 6.32089499e-06 + ArtUnc_10: -2.31527866e-03 + ArtUnc_11: -1.51226019e-03 + ArtUnc_12: 2.86726641e-04 + ArtUnc_13: 1.17071378e-03 + ArtUnc_14: 3.74003191e-04 + ArtUnc_15: 1.01499827e-03 + ArtUnc_16: -4.24456516e-04 + ArtUnc_17: 3.40151787e-04 + ArtUnc_18: -1.92932820e-04 + ArtUnc_19: 4.35451105e-05 + ArtUnc_20: 3.08235465e-05 + ArtUnc_21: 1.74659978e-06 + ArtUnc_22: 1.20573992e-05 + ArtUnc_23: 4.49174474e-06 + ArtUnc_24: 9.79744711e-07 + ArtUnc_25: 2.07381057e-04 + ArtUnc_26: -4.23076135e-04 + ArtUnc_27: -3.19375390e-03 + ArtUnc_28: 2.78921870e-04 + ArtUnc_29: 3.82694362e-04 + ArtUnc_30: -2.11257637e-03 + ArtUnc_31: 4.63406525e-05 + ArtUnc_32: 1.25410854e-03 + ArtUnc_33: 3.78088595e-04 + ArtUnc_34: 8.40134720e-04 + ArtUnc_35: 1.43723572e-03 + ArtUnc_36: 5.75955651e-04 + ArtUnc_37: 9.80005387e-05 + ArtUnc_38: -1.04958656e-04 + ArtUnc_39: -1.46065264e-05 + ArtUnc_40: -3.99619247e-06 + ArtUnc_41: 1.17509490e-02 + ArtUnc_42: -1.55756018e-02 + ArtUnc_43: -4.18918813e-03 + ArtUnc_44: 1.19894862e-03 + ArtUnc_45: -2.33798690e-03 + ArtUnc_46: 1.54530132e-04 + ArtUnc_47: -5.55931868e-04 + ArtUnc_48: 2.71013976e-05 + ArtUnc_49: -2.06260014e-04 + ArtUnc_50: -5.82087046e-05 + ArtUnc_51: -1.66621715e-05 + ArtUnc_52: 2.55444397e-05 + ArtUnc_53: -1.49390656e-04 + ArtUnc_54: -9.67212765e-05 + ArtUnc_55: -1.10986619e-05 + ArtUnc_56: 1.73887120e-05 + ArtUnc_57: -1.19906987e-01 + ArtUnc_58: 1.63047253e-01 + ArtUnc_59: 2.33067232e-01 + ArtUnc_60: 8.34687267e-02 + ArtUnc_61: -5.61300422e-02 + ArtUnc_62: -5.18004491e-02 + ArtUnc_63: 3.05894354e-02 + ArtUnc_64: -8.15502320e-02 + ArtUnc_65: 7.90333673e-02 + ArtUnc_66: 4.53030573e-02 + ArtUnc_67: -1.33493901e-02 + ArtUnc_68: -2.64080501e-02 + ArtUnc_69: -1.25591029e-02 + ArtUnc_70: 1.15078805e-03 + ArtUnc_71: -3.94640897e-04 + ArtUnc_72: 1.50030522e-03 + ArtUnc_73: -1.66447648e-02 + ArtUnc_74: 1.75153864e-02 + ArtUnc_75: 2.25582656e-03 + ArtUnc_76: 4.61332515e-04 + ArtUnc_77: -3.49361313e-03 + ArtUnc_78: -2.69082931e-03 + ArtUnc_79: 6.56096497e-03 + ArtUnc_80: 9.44818170e-04 + ArtUnc_81: -4.45217578e-04 + ArtUnc_82: 9.18567702e-08 + ArtUnc_83: -1.18096097e-04 + ArtUnc_84: 5.43664390e-04 + ArtUnc_85: 6.64884406e-05 + ArtUnc_86: 4.82561049e-05 + ArtUnc_87: 7.07195464e-05 + ArtUnc_88: 3.55334213e-04 + ArtUnc_89: 1.01065160e-03 + ArtUnc_90: -1.39328346e-04 + ArtUnc_91: 2.37583464e-05 + ArtUnc_92: 3.92006173e-06 + ArtUnc_93: -4.66478930e-05 + ArtUnc_94: -5.14624549e-04 + ArtUnc_95: -1.25953037e-04 + ArtUnc_96: 1.39685450e-06 - stat: 0 - Uncorr: 0.0044800000000000005 - RCES: 0.010424522964625288 - ElEn: 0.006495034410994294 - ElTh: 0.007706739450636696 - Lumi: 0.011200000000000002 - LArN: 0.0022400000000000002 - StatMC: 0.0321664 - RadErr: 0.023430400000000004 - Model_1: 0.039566301362649506 - Model_2: 0.039566301362649506 - ModelRW_1: 0.02157297936586414 - ModelRW_2: 0.02157297936586414 - JES_1: 0.018860287879033027 - JES_2: 0.018860287879033027 - ArtUnc_1: -8.737694534121229e-10 - ArtUnc_2: 1.6464594064326736e-09 - ArtUnc_3: 1.5950511990295304e-09 - ArtUnc_4: 1.3040974115525698e-10 - ArtUnc_5: 5.508080194611627e-10 - ArtUnc_6: 3.7671139816293967e-10 - ArtUnc_7: 1.2766550907783893e-11 - ArtUnc_8: -1.8318554335628124e-07 - ArtUnc_9: -7.598415241707395e-10 - ArtUnc_10: 3.172515480713788e-07 - ArtUnc_11: 2.644748786934402e-07 - ArtUnc_12: -5.490758663839249e-08 - ArtUnc_13: -2.718473923425416e-07 - ArtUnc_14: -9.213717981691248e-08 - ArtUnc_15: -2.724363299357123e-07 - ArtUnc_16: 1.2069090292989235e-07 - ArtUnc_17: -9.887766630843156e-08 - ArtUnc_18: 6.492169166509936e-08 - ArtUnc_19: -1.0089425732864725e-08 - ArtUnc_20: -3.7827776916724463e-08 - ArtUnc_21: -2.494253881503824e-08 - ArtUnc_22: 7.18207777277124e-09 - ArtUnc_23: 4.737266987816121e-09 - ArtUnc_24: -2.6786010019964452e-09 - ArtUnc_25: 2.9575991000873583e-06 - ArtUnc_26: -2.4109347240891293e-06 - ArtUnc_27: -1.958960032609601e-05 - ArtUnc_28: 2.1605117264882275e-06 - ArtUnc_29: 1.866721069826176e-06 - ArtUnc_30: -8.22057669927223e-06 - ArtUnc_31: 3.1484995192426904e-07 - ArtUnc_32: 3.566962795179308e-06 - ArtUnc_33: 9.910532595307408e-07 - ArtUnc_34: 2.229321892986007e-06 - ArtUnc_35: 3.9884951668698356e-06 - ArtUnc_36: 2.166989013651135e-06 - ArtUnc_37: 6.645354509858519e-07 - ArtUnc_38: -1.137071138773637e-06 - ArtUnc_39: -6.259626810669443e-07 - ArtUnc_40: -1.139598981579064e-07 - ArtUnc_41: -0.0011137227426165804 - ArtUnc_42: 0.001141607145327739 - ArtUnc_43: 0.0008346508307614627 - ArtUnc_44: 8.601943478581479e-05 - ArtUnc_45: 0.0005798205279119543 - ArtUnc_46: 0.0004383472277824721 - ArtUnc_47: -0.00012074281722239596 - ArtUnc_48: 0.000552874931580836 - ArtUnc_49: -0.00017207676192544896 - ArtUnc_50: -0.0004507527380131608 - ArtUnc_51: 2.508999491499608e-05 - ArtUnc_52: -4.8123543900225626e-05 - ArtUnc_53: -0.0004876302466361276 - ArtUnc_54: 0.00018684558503821334 - ArtUnc_55: 0.00015388762592659022 - ArtUnc_56: -1.8186981887229775e-05 - ArtUnc_57: -0.004004969220651377 - ArtUnc_58: 0.003607266408108926 - ArtUnc_59: 0.004505974454370048 - ArtUnc_60: 0.001345496970059587 - ArtUnc_61: -0.0008187221344207724 - ArtUnc_62: -0.0003112304944000799 - ArtUnc_63: 0.0002862908683742685 - ArtUnc_64: -0.0003152481406459922 - ArtUnc_65: 0.0003683638836481357 - ArtUnc_66: 0.0002982348981041299 - ArtUnc_67: -0.0001502387558411166 - ArtUnc_68: -0.0006147404317045237 - ArtUnc_69: -0.0005233603568172246 - ArtUnc_70: 0.00019697460472897514 - ArtUnc_71: -8.244916610588482e-05 - ArtUnc_72: 0.00014985939363457848 - ArtUnc_73: 0.0038048183334672874 - ArtUnc_74: -0.0007028573295874387 - ArtUnc_75: 0.0011840866023422926 - ArtUnc_76: 0.02835348160110081 - ArtUnc_77: -0.005216149143439307 - ArtUnc_78: 0.06222596545671097 - ArtUnc_79: 0.015037693794521264 - ArtUnc_80: -0.026302069053068946 - ArtUnc_81: 0.01476780276571734 - ArtUnc_82: -1.1729779388745412e-06 - ArtUnc_83: -0.006403768686471221 - ArtUnc_84: -0.017996315182303557 - ArtUnc_85: 0.004758655675668427 - ArtUnc_86: -0.005074421813299028 - ArtUnc_87: -0.002829751264937561 - ArtUnc_88: -0.04337537829452347 - ArtUnc_89: -0.029379583624767714 - ArtUnc_90: 0.007388117062249002 - ArtUnc_91: -0.0007635967238545224 - ArtUnc_92: -0.00010334804503274076 - ArtUnc_93: -0.030648055619916178 - ArtUnc_94: 0.01331203105244284 - ArtUnc_95: 0.0008653673756013533 - ArtUnc_96: 0.001045600489105698 + Uncorr: 4.48000000e-03 + RCES: 1.04245230e-02 + ElEn: 6.49503441e-03 + ElTh: 7.70673945e-03 + Lumi: 1.12000000e-02 + LArN: 2.24000000e-03 + StatMC: 3.21664000e-02 + RadErr: 2.34304000e-02 + Model_1: 3.95663014e-02 + Model_2: 3.95663014e-02 + ModelRW_1: 2.15729794e-02 + ModelRW_2: 2.15729794e-02 + JES_1: 1.88602879e-02 + JES_2: 1.88602879e-02 + ArtUnc_1: -8.73769453e-10 + ArtUnc_2: 1.64645941e-09 + ArtUnc_3: 1.59505120e-09 + ArtUnc_4: 1.30409741e-10 + ArtUnc_5: 5.50808019e-10 + ArtUnc_6: 3.76711398e-10 + ArtUnc_7: 1.27665509e-11 + ArtUnc_8: -1.83185543e-07 + ArtUnc_9: -7.59841524e-10 + ArtUnc_10: 3.17251548e-07 + ArtUnc_11: 2.64474879e-07 + ArtUnc_12: -5.49075866e-08 + ArtUnc_13: -2.71847392e-07 + ArtUnc_14: -9.21371798e-08 + ArtUnc_15: -2.72436330e-07 + ArtUnc_16: 1.20690903e-07 + ArtUnc_17: -9.88776663e-08 + ArtUnc_18: 6.49216917e-08 + ArtUnc_19: -1.00894257e-08 + ArtUnc_20: -3.78277769e-08 + ArtUnc_21: -2.49425388e-08 + ArtUnc_22: 7.18207777e-09 + ArtUnc_23: 4.73726699e-09 + ArtUnc_24: -2.67860100e-09 + ArtUnc_25: 2.95759910e-06 + ArtUnc_26: -2.41093472e-06 + ArtUnc_27: -1.95896003e-05 + ArtUnc_28: 2.16051173e-06 + ArtUnc_29: 1.86672107e-06 + ArtUnc_30: -8.22057670e-06 + ArtUnc_31: 3.14849952e-07 + ArtUnc_32: 3.56696280e-06 + ArtUnc_33: 9.91053260e-07 + ArtUnc_34: 2.22932189e-06 + ArtUnc_35: 3.98849517e-06 + ArtUnc_36: 2.16698901e-06 + ArtUnc_37: 6.64535451e-07 + ArtUnc_38: -1.13707114e-06 + ArtUnc_39: -6.25962681e-07 + ArtUnc_40: -1.13959898e-07 + ArtUnc_41: -1.11372274e-03 + ArtUnc_42: 1.14160715e-03 + ArtUnc_43: 8.34650831e-04 + ArtUnc_44: 8.60194348e-05 + ArtUnc_45: 5.79820528e-04 + ArtUnc_46: 4.38347228e-04 + ArtUnc_47: -1.20742817e-04 + ArtUnc_48: 5.52874932e-04 + ArtUnc_49: -1.72076762e-04 + ArtUnc_50: -4.50752738e-04 + ArtUnc_51: 2.50899949e-05 + ArtUnc_52: -4.81235439e-05 + ArtUnc_53: -4.87630247e-04 + ArtUnc_54: 1.86845585e-04 + ArtUnc_55: 1.53887626e-04 + ArtUnc_56: -1.81869819e-05 + ArtUnc_57: -4.00496922e-03 + ArtUnc_58: 3.60726641e-03 + ArtUnc_59: 4.50597445e-03 + ArtUnc_60: 1.34549697e-03 + ArtUnc_61: -8.18722134e-04 + ArtUnc_62: -3.11230494e-04 + ArtUnc_63: 2.86290868e-04 + ArtUnc_64: -3.15248141e-04 + ArtUnc_65: 3.68363884e-04 + ArtUnc_66: 2.98234898e-04 + ArtUnc_67: -1.50238756e-04 + ArtUnc_68: -6.14740432e-04 + ArtUnc_69: -5.23360357e-04 + ArtUnc_70: 1.96974605e-04 + ArtUnc_71: -8.24491661e-05 + ArtUnc_72: 1.49859394e-04 + ArtUnc_73: 3.80481833e-03 + ArtUnc_74: -7.02857330e-04 + ArtUnc_75: 1.18408660e-03 + ArtUnc_76: 2.83534816e-02 + ArtUnc_77: -5.21614914e-03 + ArtUnc_78: 6.22259655e-02 + ArtUnc_79: 1.50376938e-02 + ArtUnc_80: -2.63020691e-02 + ArtUnc_81: 1.47678028e-02 + ArtUnc_82: -1.17297794e-06 + ArtUnc_83: -6.40376869e-03 + ArtUnc_84: -1.79963152e-02 + ArtUnc_85: 4.75865568e-03 + ArtUnc_86: -5.07442181e-03 + ArtUnc_87: -2.82975126e-03 + ArtUnc_88: -4.33753783e-02 + ArtUnc_89: -2.93795836e-02 + ArtUnc_90: 7.38811706e-03 + ArtUnc_91: -7.63596724e-04 + ArtUnc_92: -1.03348045e-04 + ArtUnc_93: -3.06480556e-02 + ArtUnc_94: 1.33120311e-02 + ArtUnc_95: 8.65367376e-04 + ArtUnc_96: 1.04560049e-03 - stat: 0 Uncorr: 7.41 - RCES: 26.389667145068348 - ElEn: 5.400665025716741 - ElTh: 1.2465549446374196 - Lumi: 18.525000000000002 + RCES: 2.63896671e+01 + ElEn: 5.40066503e+00 + ElTh: 1.24655494e+00 + Lumi: 1.85250000e+01 LArN: 3.705 StatMC: 8.5215 RadErr: 1.1856 - Model_1: 10.89849539707202 - Model_2: 10.89849539707202 - ModelRW_1: 4.9776781861627 - ModelRW_2: 4.9776781861627 - JES_1: 3.1814496512989168 - JES_2: 3.1814496512989168 - ArtUnc_1: 28.534619481303825 - ArtUnc_2: -7.123863967078508 - ArtUnc_3: -2.7181265551317226 - ArtUnc_4: -0.3899284876102117 - ArtUnc_5: -0.00670746378074466 - ArtUnc_6: -0.008283999205217387 - ArtUnc_7: 0.0007567391512459143 - ArtUnc_8: -0.27855882289615036 - ArtUnc_9: -0.0015553697559445726 - ArtUnc_10: 0.6841040029689246 - ArtUnc_11: 0.2703982613331601 - ArtUnc_12: -0.02577120581018809 - ArtUnc_13: -0.20196510734929263 - ArtUnc_14: -0.061245749383712446 - ArtUnc_15: -0.1373398814060955 - ArtUnc_16: 0.05559250646001657 - ArtUnc_17: -0.03891494291030187 - ArtUnc_18: 0.022439546494828832 - ArtUnc_19: -0.004613609699705583 - ArtUnc_20: -0.005955233470981109 - ArtUnc_21: -0.000919797110477925 - ArtUnc_22: -0.0015613108826127554 - ArtUnc_23: -0.0005657803910752896 - ArtUnc_24: -0.00013845948901258673 - ArtUnc_25: 0.0015884893142738003 - ArtUnc_26: 0.0027998731918240935 - ArtUnc_27: 0.012058199532830109 - ArtUnc_28: 0.0010435302393417168 - ArtUnc_29: -0.0008423840084407331 - ArtUnc_30: 0.006854685756505784 - ArtUnc_31: 0.0006563809746296008 - ArtUnc_32: -0.003397722806987923 - ArtUnc_33: -0.0013550843877417945 - ArtUnc_34: -0.0018974214458767377 - ArtUnc_35: -0.0033135972302497743 - ArtUnc_36: -0.0011026071913299487 - ArtUnc_37: -0.00021120981280549925 - ArtUnc_38: 0.0001611175014340478 - ArtUnc_39: 7.780354641441171e-06 - ArtUnc_40: -1.0949039928915957e-05 - ArtUnc_41: 0.0008162451372233949 - ArtUnc_42: 0.0006595543728718163 - ArtUnc_43: -0.0001920179570449045 - ArtUnc_44: -0.00029239045544503836 - ArtUnc_45: 0.00029228857947158284 - ArtUnc_46: -0.00014950580404518931 - ArtUnc_47: 0.0003446552927101274 - ArtUnc_48: -0.00011551717262218647 - ArtUnc_49: -0.00017085330905257303 - ArtUnc_50: -0.00013644698293498577 - ArtUnc_51: 9.219831701846136e-06 - ArtUnc_52: -1.4905544371813783e-05 - ArtUnc_53: -0.00014030870040233003 - ArtUnc_54: 2.172973149282271e-05 - ArtUnc_55: 2.5524966768608532e-05 - ArtUnc_56: 1.1225502356583022e-05 - ArtUnc_57: -4.691504492441422e-06 - ArtUnc_58: 7.6197052616898715e-06 - ArtUnc_59: 9.825460992185863e-06 - ArtUnc_60: 3.627685529542029e-06 - ArtUnc_61: -2.392677403828778e-06 - ArtUnc_62: -2.617544550091262e-06 - ArtUnc_63: 1.7619189417090515e-06 - ArtUnc_64: -4.0927753178519035e-06 - ArtUnc_65: 4.0074756663388155e-06 - ArtUnc_66: 2.9159524324259093e-06 - ArtUnc_67: -1.0830813048008015e-06 - ArtUnc_68: -3.5965235536997996e-06 - ArtUnc_69: -2.322886166859595e-06 - ArtUnc_70: 2.5743213044265925e-07 - ArtUnc_71: -1.5613343610499397e-07 - ArtUnc_72: 6.637580118037731e-08 - ArtUnc_73: -6.870695206562281e-07 - ArtUnc_74: 8.574271135636011e-07 - ArtUnc_75: 1.1569485846268291e-07 - ArtUnc_76: -6.437296749786422e-08 - ArtUnc_77: -1.837073110006341e-07 - ArtUnc_78: -2.4335993445393687e-07 - ArtUnc_79: 3.0163122457542233e-07 - ArtUnc_80: -1.0246606463765234e-07 - ArtUnc_81: 3.8856419054493195e-08 - ArtUnc_82: -3.6760400909888214e-11 - ArtUnc_83: 1.978891082722819e-08 - ArtUnc_84: -3.067811729035556e-08 - ArtUnc_85: -1.2655550615766943e-08 - ArtUnc_86: -6.924432285300878e-09 - ArtUnc_87: -1.4939796498290833e-08 - ArtUnc_88: 3.768689079174396e-08 - ArtUnc_89: 3.359132245658672e-08 - ArtUnc_90: 1.590444265428233e-08 - ArtUnc_91: -5.957595733315514e-09 - ArtUnc_92: -1.0576092301003206e-09 - ArtUnc_93: 1.3221074939131718e-08 - ArtUnc_94: -5.2314837785566986e-09 - ArtUnc_95: -6.979669883933357e-09 - ArtUnc_96: 1.543753446103767e-10 + Model_1: 1.08984954e+01 + Model_2: 1.08984954e+01 + ModelRW_1: 4.97767819e+00 + ModelRW_2: 4.97767819e+00 + JES_1: 3.18144965e+00 + JES_2: 3.18144965e+00 + ArtUnc_1: 2.85346195e+01 + ArtUnc_2: -7.12386397e+00 + ArtUnc_3: -2.71812656e+00 + ArtUnc_4: -3.89928488e-01 + ArtUnc_5: -6.70746378e-03 + ArtUnc_6: -8.28399921e-03 + ArtUnc_7: 7.56739151e-04 + ArtUnc_8: -2.78558823e-01 + ArtUnc_9: -1.55536976e-03 + ArtUnc_10: 6.84104003e-01 + ArtUnc_11: 2.70398261e-01 + ArtUnc_12: -2.57712058e-02 + ArtUnc_13: -2.01965107e-01 + ArtUnc_14: -6.12457494e-02 + ArtUnc_15: -1.37339881e-01 + ArtUnc_16: 5.55925065e-02 + ArtUnc_17: -3.89149429e-02 + ArtUnc_18: 2.24395465e-02 + ArtUnc_19: -4.61360970e-03 + ArtUnc_20: -5.95523347e-03 + ArtUnc_21: -9.19797110e-04 + ArtUnc_22: -1.56131088e-03 + ArtUnc_23: -5.65780391e-04 + ArtUnc_24: -1.38459489e-04 + ArtUnc_25: 1.58848931e-03 + ArtUnc_26: 2.79987319e-03 + ArtUnc_27: 1.20581995e-02 + ArtUnc_28: 1.04353024e-03 + ArtUnc_29: -8.42384008e-04 + ArtUnc_30: 6.85468576e-03 + ArtUnc_31: 6.56380975e-04 + ArtUnc_32: -3.39772281e-03 + ArtUnc_33: -1.35508439e-03 + ArtUnc_34: -1.89742145e-03 + ArtUnc_35: -3.31359723e-03 + ArtUnc_36: -1.10260719e-03 + ArtUnc_37: -2.11209813e-04 + ArtUnc_38: 1.61117501e-04 + ArtUnc_39: 7.78035464e-06 + ArtUnc_40: -1.09490399e-05 + ArtUnc_41: 8.16245137e-04 + ArtUnc_42: 6.59554373e-04 + ArtUnc_43: -1.92017957e-04 + ArtUnc_44: -2.92390455e-04 + ArtUnc_45: 2.92288579e-04 + ArtUnc_46: -1.49505804e-04 + ArtUnc_47: 3.44655293e-04 + ArtUnc_48: -1.15517173e-04 + ArtUnc_49: -1.70853309e-04 + ArtUnc_50: -1.36446983e-04 + ArtUnc_51: 9.21983170e-06 + ArtUnc_52: -1.49055444e-05 + ArtUnc_53: -1.40308700e-04 + ArtUnc_54: 2.17297315e-05 + ArtUnc_55: 2.55249668e-05 + ArtUnc_56: 1.12255024e-05 + ArtUnc_57: -4.69150449e-06 + ArtUnc_58: 7.61970526e-06 + ArtUnc_59: 9.82546099e-06 + ArtUnc_60: 3.62768553e-06 + ArtUnc_61: -2.39267740e-06 + ArtUnc_62: -2.61754455e-06 + ArtUnc_63: 1.76191894e-06 + ArtUnc_64: -4.09277532e-06 + ArtUnc_65: 4.00747567e-06 + ArtUnc_66: 2.91595243e-06 + ArtUnc_67: -1.08308130e-06 + ArtUnc_68: -3.59652355e-06 + ArtUnc_69: -2.32288617e-06 + ArtUnc_70: 2.57432130e-07 + ArtUnc_71: -1.56133436e-07 + ArtUnc_72: 6.63758012e-08 + ArtUnc_73: -6.87069521e-07 + ArtUnc_74: 8.57427114e-07 + ArtUnc_75: 1.15694858e-07 + ArtUnc_76: -6.43729675e-08 + ArtUnc_77: -1.83707311e-07 + ArtUnc_78: -2.43359934e-07 + ArtUnc_79: 3.01631225e-07 + ArtUnc_80: -1.02466065e-07 + ArtUnc_81: 3.88564191e-08 + ArtUnc_82: -3.67604009e-11 + ArtUnc_83: 1.97889108e-08 + ArtUnc_84: -3.06781173e-08 + ArtUnc_85: -1.26555506e-08 + ArtUnc_86: -6.92443229e-09 + ArtUnc_87: -1.49397965e-08 + ArtUnc_88: 3.76868908e-08 + ArtUnc_89: 3.35913225e-08 + ArtUnc_90: 1.59044427e-08 + ArtUnc_91: -5.95759573e-09 + ArtUnc_92: -1.05760923e-09 + ArtUnc_93: 1.32210749e-08 + ArtUnc_94: -5.23148378e-09 + ArtUnc_95: -6.97966988e-09 + ArtUnc_96: 1.54375345e-10 - stat: 0 - Uncorr: 2.7800000000000002 - RCES: 9.37576380408551 - ElEn: 1.653340581973357 - ElTh: 1.3541625124038843 + Uncorr: 2.78000000e+00 + RCES: 9.37576380e+00 + ElEn: 1.65334058e+00 + ElTh: 1.35416251e+00 Lumi: 6.95 - LArN: 1.3900000000000001 - StatMC: 2.5576000000000003 + LArN: 1.39000000e+00 + StatMC: 2.55760000e+00 RadErr: 1.3344 - Model_1: 7.037409529080995 - Model_2: 7.037409529080995 - ModelRW_1: 3.9118561348802183 - ModelRW_2: 3.9118561348802183 - JES_1: 13.082709979778654 - JES_2: 13.082709979778654 - ArtUnc_1: 2.2970761331390066 - ArtUnc_2: -1.0892033898037916 - ArtUnc_3: -0.4626643792894114 - ArtUnc_4: 0.0034597266768986723 - ArtUnc_5: -0.07024799880322546 - ArtUnc_6: -0.025635496777499604 - ArtUnc_7: -0.0011811538975831683 - ArtUnc_8: 5.698072050451249 - ArtUnc_9: 0.01838660928832924 - ArtUnc_10: -6.02475607507018 - ArtUnc_11: -2.9660838975572674 - ArtUnc_12: 0.509042374153124 - ArtUnc_13: 1.8418379289105533 - ArtUnc_14: 0.5185384503576153 - ArtUnc_15: 1.3053603129533584 - ArtUnc_16: -0.48075482695253724 - ArtUnc_17: 0.3546020620221246 - ArtUnc_18: -0.19000896413705118 - ArtUnc_19: 0.03448455438106577 - ArtUnc_20: 0.0334777718193411 - ArtUnc_21: 0.00667766552088803 - ArtUnc_22: 0.005573150621444783 - ArtUnc_23: 0.0016140948748548712 - ArtUnc_24: 0.000568273667308521 - ArtUnc_25: -0.13949268880938007 - ArtUnc_26: -0.07352578045564359 - ArtUnc_27: -0.1808656512600164 - ArtUnc_28: -0.021260206797389925 - ArtUnc_29: 0.00997221831462979 - ArtUnc_30: -0.09065927398924134 - ArtUnc_31: -0.0006883162712905388 - ArtUnc_32: 0.04229196904252959 - ArtUnc_33: 0.01621967581405243 - ArtUnc_34: 0.027143903368802316 - ArtUnc_35: 0.04350407896178598 - ArtUnc_36: 0.016514706658114008 - ArtUnc_37: 0.0024434123447177863 - ArtUnc_38: -0.002971403779176569 - ArtUnc_39: -0.0007310172834329555 - ArtUnc_40: -0.00021136252877450334 - ArtUnc_41: -0.007160870664322624 - ArtUnc_42: -0.005876951781650189 - ArtUnc_43: 0.0017314514208508819 - ArtUnc_44: 0.002553951127823745 - ArtUnc_45: -0.0025656232271245513 - ArtUnc_46: 0.0011881545478558493 - ArtUnc_47: -0.002804030604187082 - ArtUnc_48: 0.0008879580966485295 - ArtUnc_49: 0.001369146410883418 - ArtUnc_50: 0.0011494198540057063 - ArtUnc_51: -9.055078135816814e-05 - ArtUnc_52: 7.294074042155794e-05 - ArtUnc_53: 0.001181951523907321 - ArtUnc_54: -0.00025362312439836495 - ArtUnc_55: -0.00018472562965263104 - ArtUnc_56: -8.739836558783833e-05 - ArtUnc_57: 4.885657431811609e-05 - ArtUnc_58: -5.51390303127279e-05 - ArtUnc_59: -0.00013839594374450153 - ArtUnc_60: -4.877085515415337e-05 - ArtUnc_61: 4.22707537278272e-05 - ArtUnc_62: 2.8700177521542225e-05 - ArtUnc_63: -2.3803806686567963e-05 - ArtUnc_64: 5.132418586798827e-05 - ArtUnc_65: -5.261628114177895e-05 - ArtUnc_66: -3.88344980812236e-05 - ArtUnc_67: 1.3491744321721498e-05 - ArtUnc_68: 3.7428430802205095e-05 - ArtUnc_69: 2.0431367214919684e-05 - ArtUnc_70: -6.037085275244034e-07 - ArtUnc_71: 7.380420140613976e-07 - ArtUnc_72: -1.1211342621343135e-06 - ArtUnc_73: 7.325768443241816e-06 - ArtUnc_74: -8.916791594335334e-06 - ArtUnc_75: -1.162861834698842e-06 - ArtUnc_76: 6.250625946348806e-07 - ArtUnc_77: 1.82006350343776e-06 - ArtUnc_78: 2.525337070075889e-06 - ArtUnc_79: -3.227347634136641e-06 - ArtUnc_80: 9.159003097231551e-07 - ArtUnc_81: -3.4720463522110955e-07 - ArtUnc_82: 8.063925823509818e-10 - ArtUnc_83: -2.002810595725168e-07 - ArtUnc_84: 2.5676589471883596e-07 - ArtUnc_85: 1.2916345002614888e-07 - ArtUnc_86: 5.406845147989175e-08 - ArtUnc_87: 1.3886480880961782e-07 - ArtUnc_88: -4.220408273270315e-07 - ArtUnc_89: -3.5825707537558045e-07 - ArtUnc_90: -1.3673297886087641e-07 - ArtUnc_91: 5.3828040959303416e-08 - ArtUnc_92: 9.722202506314322e-09 - ArtUnc_93: -1.2730479200691123e-07 - ArtUnc_94: 5.895056924848404e-08 - ArtUnc_95: 3.96949352117729e-08 - ArtUnc_96: 4.001083540114452e-09 + Model_1: 7.03740953e+00 + Model_2: 7.03740953e+00 + ModelRW_1: 3.91185613e+00 + ModelRW_2: 3.91185613e+00 + JES_1: 1.30827100e+01 + JES_2: 1.30827100e+01 + ArtUnc_1: 2.29707613e+00 + ArtUnc_2: -1.08920339e+00 + ArtUnc_3: -4.62664379e-01 + ArtUnc_4: 3.45972668e-03 + ArtUnc_5: -7.02479988e-02 + ArtUnc_6: -2.56354968e-02 + ArtUnc_7: -1.18115390e-03 + ArtUnc_8: 5.69807205e+00 + ArtUnc_9: 1.83866093e-02 + ArtUnc_10: -6.02475608e+00 + ArtUnc_11: -2.96608390e+00 + ArtUnc_12: 5.09042374e-01 + ArtUnc_13: 1.84183793e+00 + ArtUnc_14: 5.18538450e-01 + ArtUnc_15: 1.30536031e+00 + ArtUnc_16: -4.80754827e-01 + ArtUnc_17: 3.54602062e-01 + ArtUnc_18: -1.90008964e-01 + ArtUnc_19: 3.44845544e-02 + ArtUnc_20: 3.34777718e-02 + ArtUnc_21: 6.67766552e-03 + ArtUnc_22: 5.57315062e-03 + ArtUnc_23: 1.61409487e-03 + ArtUnc_24: 5.68273667e-04 + ArtUnc_25: -1.39492689e-01 + ArtUnc_26: -7.35257805e-02 + ArtUnc_27: -1.80865651e-01 + ArtUnc_28: -2.12602068e-02 + ArtUnc_29: 9.97221831e-03 + ArtUnc_30: -9.06592740e-02 + ArtUnc_31: -6.88316271e-04 + ArtUnc_32: 4.22919690e-02 + ArtUnc_33: 1.62196758e-02 + ArtUnc_34: 2.71439034e-02 + ArtUnc_35: 4.35040790e-02 + ArtUnc_36: 1.65147067e-02 + ArtUnc_37: 2.44341234e-03 + ArtUnc_38: -2.97140378e-03 + ArtUnc_39: -7.31017283e-04 + ArtUnc_40: -2.11362529e-04 + ArtUnc_41: -7.16087066e-03 + ArtUnc_42: -5.87695178e-03 + ArtUnc_43: 1.73145142e-03 + ArtUnc_44: 2.55395113e-03 + ArtUnc_45: -2.56562323e-03 + ArtUnc_46: 1.18815455e-03 + ArtUnc_47: -2.80403060e-03 + ArtUnc_48: 8.87958097e-04 + ArtUnc_49: 1.36914641e-03 + ArtUnc_50: 1.14941985e-03 + ArtUnc_51: -9.05507814e-05 + ArtUnc_52: 7.29407404e-05 + ArtUnc_53: 1.18195152e-03 + ArtUnc_54: -2.53623124e-04 + ArtUnc_55: -1.84725630e-04 + ArtUnc_56: -8.73983656e-05 + ArtUnc_57: 4.88565743e-05 + ArtUnc_58: -5.51390303e-05 + ArtUnc_59: -1.38395944e-04 + ArtUnc_60: -4.87708552e-05 + ArtUnc_61: 4.22707537e-05 + ArtUnc_62: 2.87001775e-05 + ArtUnc_63: -2.38038067e-05 + ArtUnc_64: 5.13241859e-05 + ArtUnc_65: -5.26162811e-05 + ArtUnc_66: -3.88344981e-05 + ArtUnc_67: 1.34917443e-05 + ArtUnc_68: 3.74284308e-05 + ArtUnc_69: 2.04313672e-05 + ArtUnc_70: -6.03708528e-07 + ArtUnc_71: 7.38042014e-07 + ArtUnc_72: -1.12113426e-06 + ArtUnc_73: 7.32576844e-06 + ArtUnc_74: -8.91679159e-06 + ArtUnc_75: -1.16286183e-06 + ArtUnc_76: 6.25062595e-07 + ArtUnc_77: 1.82006350e-06 + ArtUnc_78: 2.52533707e-06 + ArtUnc_79: -3.22734763e-06 + ArtUnc_80: 9.15900310e-07 + ArtUnc_81: -3.47204635e-07 + ArtUnc_82: 8.06392582e-10 + ArtUnc_83: -2.00281060e-07 + ArtUnc_84: 2.56765895e-07 + ArtUnc_85: 1.29163450e-07 + ArtUnc_86: 5.40684515e-08 + ArtUnc_87: 1.38864809e-07 + ArtUnc_88: -4.22040827e-07 + ArtUnc_89: -3.58257075e-07 + ArtUnc_90: -1.36732979e-07 + ArtUnc_91: 5.38280410e-08 + ArtUnc_92: 9.72220251e-09 + ArtUnc_93: -1.27304792e-07 + ArtUnc_94: 5.89505692e-08 + ArtUnc_95: 3.96949352e-08 + ArtUnc_96: 4.00108354e-09 - stat: 0 Uncorr: 0.713 - RCES: 0.40408925103249166 - ElEn: 0.3315833311175337 - ElTh: 0.20550609400939915 + RCES: 4.04089251e-01 + ElEn: 3.31583331e-01 + ElTh: 2.05506094e-01 Lumi: 1.7825 LArN: 0.3565 StatMC: 0.67735 - RadErr: 0.32798000000000005 - Model_1: 0.9024591716249549 - Model_2: 0.9024591716249549 - ModelRW_1: 0.060500056198321 - ModelRW_2: 0.060500056198321 - JES_1: 2.0379393516123097 - JES_2: 2.0379393516123097 - ArtUnc_1: -0.0009965196005386923 - ArtUnc_2: -0.04907637101446047 - ArtUnc_3: -0.04756497054746269 - ArtUnc_4: -0.013756699974385526 - ArtUnc_5: 0.0013405642217313753 - ArtUnc_6: -0.0003866753706473783 - ArtUnc_7: -0.00012760105812504135 - ArtUnc_8: 0.3173188838021138 - ArtUnc_9: 0.0011592755697388047 - ArtUnc_10: -0.45041721817330066 - ArtUnc_11: -0.2137337371651879 - ArtUnc_12: 0.07390984381923797 - ArtUnc_13: 0.15323462967136156 - ArtUnc_14: 0.016725144962614295 - ArtUnc_15: 0.06154109650884441 - ArtUnc_16: 0.0012801800918984287 - ArtUnc_17: -0.010197513896344924 - ArtUnc_18: -0.0036468856197927895 - ArtUnc_19: -0.007440900959471428 - ArtUnc_20: 0.030597234662372387 - ArtUnc_21: 0.01992090985890962 - ArtUnc_22: -0.008080984027201216 - ArtUnc_23: -0.002513702610298424 - ArtUnc_24: 0.0004130954196040905 - ArtUnc_25: -0.7665401298664287 - ArtUnc_26: 0.20904621147775262 - ArtUnc_27: 2.4722660721619834 - ArtUnc_28: -0.2963104198978628 - ArtUnc_29: -0.22890452780055967 - ArtUnc_30: 1.0542185366477073 - ArtUnc_31: -0.028303682128787668 - ArtUnc_32: -0.49320836054377415 - ArtUnc_33: -0.1378857262320036 - ArtUnc_34: -0.27841141169946304 - ArtUnc_35: -0.4738975981671955 - ArtUnc_36: -0.17395524785262387 - ArtUnc_37: -0.02944182617674767 - ArtUnc_38: 0.029621854680974245 - ArtUnc_39: 0.0037937596643816225 - ArtUnc_40: 0.0006171169738548413 - ArtUnc_41: 0.07130678915444527 - ArtUnc_42: 0.09783409895430999 - ArtUnc_43: -0.0025186435155468063 - ArtUnc_44: -0.025573406243681544 - ArtUnc_45: 0.03679531486118474 - ArtUnc_46: -0.003224507487493442 - ArtUnc_47: 0.022428942333149793 - ArtUnc_48: 0.0027457022023610472 - ArtUnc_49: -0.013380306228957847 - ArtUnc_50: -0.01680463061811569 - ArtUnc_51: 0.0006300547084760256 - ArtUnc_52: -0.0005791249759598666 - ArtUnc_53: -0.016114514223097707 - ArtUnc_54: 0.005240293819542083 - ArtUnc_55: 0.002967708631284937 - ArtUnc_56: 0.00019026322521595404 - ArtUnc_57: 0.0002804429750602793 - ArtUnc_58: -0.001894443931454924 - ArtUnc_59: 0.0013271820680700766 - ArtUnc_60: 0.00035204867711393067 - ArtUnc_61: -0.0014031938044521107 - ArtUnc_62: 0.000288213901971008 - ArtUnc_63: 0.0005940507007868716 - ArtUnc_64: -8.618144975369645e-05 - ArtUnc_65: 0.0002762138691505921 - ArtUnc_66: 0.0008705951659873383 - ArtUnc_67: -0.0002900155986531886 - ArtUnc_68: -0.001088372977162145 - ArtUnc_69: -0.0005855436480218688 - ArtUnc_70: 3.891221637388164e-05 - ArtUnc_71: -0.00010782019438672507 - ArtUnc_72: 7.085871654984114e-05 - ArtUnc_73: -9.26754934375886e-06 - ArtUnc_74: 1.0338450946933556e-05 - ArtUnc_75: 2.5984669077553655e-06 - ArtUnc_76: -3.7953189242014587e-06 - ArtUnc_77: -6.080111235031745e-06 - ArtUnc_78: -1.145943283772544e-05 - ArtUnc_79: 1.3531736033285865e-05 - ArtUnc_80: 4.785256084644365e-06 - ArtUnc_81: -1.4476474117618153e-06 - ArtUnc_82: 8.717567938832361e-09 - ArtUnc_83: 2.1625432339056964e-06 - ArtUnc_84: 1.4245958021681639e-06 - ArtUnc_85: -1.5918227317219126e-06 - ArtUnc_86: 2.033747431831262e-06 - ArtUnc_87: 1.5086338157833956e-06 - ArtUnc_88: 1.705818229522455e-06 - ArtUnc_89: 1.6382068061899532e-06 - ArtUnc_90: -2.8779633835803196e-07 - ArtUnc_91: 4.3439631693636184e-07 - ArtUnc_92: 6.715287876035183e-08 - ArtUnc_93: -5.728647448855988e-08 - ArtUnc_94: -7.621759654344934e-07 - ArtUnc_95: 4.1672703857164295e-08 - ArtUnc_96: -2.8880854045615154e-07 + RadErr: 3.27980000e-01 + Model_1: 9.02459172e-01 + Model_2: 9.02459172e-01 + ModelRW_1: 6.05000562e-02 + ModelRW_2: 6.05000562e-02 + JES_1: 2.03793935e+00 + JES_2: 2.03793935e+00 + ArtUnc_1: -9.96519601e-04 + ArtUnc_2: -4.90763710e-02 + ArtUnc_3: -4.75649705e-02 + ArtUnc_4: -1.37567000e-02 + ArtUnc_5: 1.34056422e-03 + ArtUnc_6: -3.86675371e-04 + ArtUnc_7: -1.27601058e-04 + ArtUnc_8: 3.17318884e-01 + ArtUnc_9: 1.15927557e-03 + ArtUnc_10: -4.50417218e-01 + ArtUnc_11: -2.13733737e-01 + ArtUnc_12: 7.39098438e-02 + ArtUnc_13: 1.53234630e-01 + ArtUnc_14: 1.67251450e-02 + ArtUnc_15: 6.15410965e-02 + ArtUnc_16: 1.28018009e-03 + ArtUnc_17: -1.01975139e-02 + ArtUnc_18: -3.64688562e-03 + ArtUnc_19: -7.44090096e-03 + ArtUnc_20: 3.05972347e-02 + ArtUnc_21: 1.99209099e-02 + ArtUnc_22: -8.08098403e-03 + ArtUnc_23: -2.51370261e-03 + ArtUnc_24: 4.13095420e-04 + ArtUnc_25: -7.66540130e-01 + ArtUnc_26: 2.09046211e-01 + ArtUnc_27: 2.47226607e+00 + ArtUnc_28: -2.96310420e-01 + ArtUnc_29: -2.28904528e-01 + ArtUnc_30: 1.05421854e+00 + ArtUnc_31: -2.83036821e-02 + ArtUnc_32: -4.93208361e-01 + ArtUnc_33: -1.37885726e-01 + ArtUnc_34: -2.78411412e-01 + ArtUnc_35: -4.73897598e-01 + ArtUnc_36: -1.73955248e-01 + ArtUnc_37: -2.94418262e-02 + ArtUnc_38: 2.96218547e-02 + ArtUnc_39: 3.79375966e-03 + ArtUnc_40: 6.17116974e-04 + ArtUnc_41: 7.13067892e-02 + ArtUnc_42: 9.78340990e-02 + ArtUnc_43: -2.51864352e-03 + ArtUnc_44: -2.55734062e-02 + ArtUnc_45: 3.67953149e-02 + ArtUnc_46: -3.22450749e-03 + ArtUnc_47: 2.24289423e-02 + ArtUnc_48: 2.74570220e-03 + ArtUnc_49: -1.33803062e-02 + ArtUnc_50: -1.68046306e-02 + ArtUnc_51: 6.30054708e-04 + ArtUnc_52: -5.79124976e-04 + ArtUnc_53: -1.61145142e-02 + ArtUnc_54: 5.24029382e-03 + ArtUnc_55: 2.96770863e-03 + ArtUnc_56: 1.90263225e-04 + ArtUnc_57: 2.80442975e-04 + ArtUnc_58: -1.89444393e-03 + ArtUnc_59: 1.32718207e-03 + ArtUnc_60: 3.52048677e-04 + ArtUnc_61: -1.40319380e-03 + ArtUnc_62: 2.88213902e-04 + ArtUnc_63: 5.94050701e-04 + ArtUnc_64: -8.61814498e-05 + ArtUnc_65: 2.76213869e-04 + ArtUnc_66: 8.70595166e-04 + ArtUnc_67: -2.90015599e-04 + ArtUnc_68: -1.08837298e-03 + ArtUnc_69: -5.85543648e-04 + ArtUnc_70: 3.89122164e-05 + ArtUnc_71: -1.07820194e-04 + ArtUnc_72: 7.08587165e-05 + ArtUnc_73: -9.26754934e-06 + ArtUnc_74: 1.03384509e-05 + ArtUnc_75: 2.59846691e-06 + ArtUnc_76: -3.79531892e-06 + ArtUnc_77: -6.08011124e-06 + ArtUnc_78: -1.14594328e-05 + ArtUnc_79: 1.35317360e-05 + ArtUnc_80: 4.78525608e-06 + ArtUnc_81: -1.44764741e-06 + ArtUnc_82: 8.71756794e-09 + ArtUnc_83: 2.16254323e-06 + ArtUnc_84: 1.42459580e-06 + ArtUnc_85: -1.59182273e-06 + ArtUnc_86: 2.03374743e-06 + ArtUnc_87: 1.50863382e-06 + ArtUnc_88: 1.70581823e-06 + ArtUnc_89: 1.63820681e-06 + ArtUnc_90: -2.87796338e-07 + ArtUnc_91: 4.34396317e-07 + ArtUnc_92: 6.71528788e-08 + ArtUnc_93: -5.72864745e-08 + ArtUnc_94: -7.62175965e-07 + ArtUnc_95: 4.16727039e-08 + ArtUnc_96: -2.88808540e-07 - stat: 0 Uncorr: 0.133 - RCES: 0.032922537493334264 - ElEn: 0.03403215060791781 - ElTh: 0.0339280367100721 + RCES: 3.29225375e-02 + ElEn: 3.40321506e-02 + ElTh: 3.39280367e-02 Lumi: 0.3325 LArN: 0.0665 StatMC: 0.22078 RadErr: 0.30058 - Model_1: 0.4570596812233606 - Model_2: 0.4570596812233606 - ModelRW_1: 0.30470645414890707 - ModelRW_2: 0.30470645414890707 - JES_1: 0.3367343579143655 - JES_2: 0.3367343579143655 - ArtUnc_1: 0.00048222324563112264 - ArtUnc_2: -0.0004548193660647549 - ArtUnc_3: -0.000286514996135342 - ArtUnc_4: -5.045932370756765e-06 - ArtUnc_5: -6.963204243240928e-05 - ArtUnc_6: -3.525407986559304e-05 - ArtUnc_7: -7.335364812501672e-07 - ArtUnc_8: 0.011353917117131688 - ArtUnc_9: 4.218063182166823e-05 - ArtUnc_10: -0.015707934389066265 - ArtUnc_11: -0.009803885316949498 - ArtUnc_12: 0.0021536993705559898 - ArtUnc_13: 0.007532844337655942 - ArtUnc_14: 0.0021950944042568683 - ArtUnc_15: 0.006046097250410134 - ArtUnc_16: -0.0023116927991033214 - ArtUnc_17: 0.0017171120266754247 - ArtUnc_18: -0.0010288977453566045 - ArtUnc_19: 0.00011311504002460291 - ArtUnc_20: 0.0005321726757171317 - ArtUnc_21: 0.00031996106432853085 - ArtUnc_22: -9.235564886922412e-05 - ArtUnc_23: -4.181140486276274e-05 - ArtUnc_24: 1.90347021989865e-05 - ArtUnc_25: -0.020487758169369312 - ArtUnc_26: 0.011574866257633931 - ArtUnc_27: 0.08912912698772603 - ArtUnc_28: -0.008665626267010482 - ArtUnc_29: -0.006635338253216263 - ArtUnc_30: 0.027945876812184477 - ArtUnc_31: -0.0009772297497179653 - ArtUnc_32: -0.010216142199216087 - ArtUnc_33: -0.002845330035767449 - ArtUnc_34: -0.005570333273645624 - ArtUnc_35: -0.009662654568296104 - ArtUnc_36: -0.004528737722651677 - ArtUnc_37: -0.0012038460339396265 - ArtUnc_38: 0.0018731277432525726 - ArtUnc_39: 0.0008503564209471586 - ArtUnc_40: 0.00013844562202529199 - ArtUnc_41: 0.6638495686437801 - ArtUnc_42: -0.5706914172500034 - ArtUnc_43: -0.37756148387400784 - ArtUnc_44: -0.03501730818425852 - ArtUnc_45: -0.22079268371283536 - ArtUnc_46: -0.1555648662556946 - ArtUnc_47: 0.03878286742300583 - ArtUnc_48: -0.17923666489526285 - ArtUnc_49: 0.05428378152839977 - ArtUnc_50: 0.1324244338946672 - ArtUnc_51: -0.003416335306031974 - ArtUnc_52: 0.007711552695186313 - ArtUnc_53: 0.13148541911448347 - ArtUnc_54: -0.04808237290860438 - ArtUnc_55: -0.03475140647080258 - ArtUnc_56: 0.003634129374122391 - ArtUnc_57: -0.008015429032455383 - ArtUnc_58: 0.042966783029020544 - ArtUnc_59: -0.021593356391989723 - ArtUnc_60: -0.005088828565798671 - ArtUnc_61: 0.024094100946153038 - ArtUnc_62: -0.006406534115997293 - ArtUnc_63: -0.009260583805346423 - ArtUnc_64: -0.0007324592001938286 - ArtUnc_65: -0.0023102409510445 - ArtUnc_66: -0.011795995784537529 - ArtUnc_67: 0.003798810760947751 - ArtUnc_68: 0.014005992450295192 - ArtUnc_69: 0.0072733152673920285 - ArtUnc_70: -0.0004229394256654641 - ArtUnc_71: 0.0014663376725319356 - ArtUnc_72: -0.0009929230225179458 - ArtUnc_73: 0.00011844704664039685 - ArtUnc_74: -0.00023022953652054892 - ArtUnc_75: -5.280533255611597e-05 - ArtUnc_76: 5.8320312563038125e-05 - ArtUnc_77: 0.00013664656253665832 - ArtUnc_78: 0.00022585533316878535 - ArtUnc_79: -0.0003222283740101118 - ArtUnc_80: -8.560658591625873e-05 - ArtUnc_81: 2.7635731751347974e-05 - ArtUnc_82: -1.4471079941616133e-07 - ArtUnc_83: -4.8492427455588045e-05 - ArtUnc_84: -2.7385198275194944e-05 - ArtUnc_85: 3.691156820800699e-05 - ArtUnc_86: -4.585635645987649e-05 - ArtUnc_87: -3.282889882737541e-05 - ArtUnc_88: -3.2808291692027684e-05 - ArtUnc_89: -5.063474698032896e-05 - ArtUnc_90: 5.940492185626315e-06 - ArtUnc_91: -9.96937532891693e-06 - ArtUnc_92: -1.5861418317524066e-06 - ArtUnc_93: 1.394519710889056e-05 - ArtUnc_94: 1.976061848848542e-05 - ArtUnc_95: 5.415803724684479e-06 - ArtUnc_96: 8.099606377266068e-06 + Model_1: 4.57059681e-01 + Model_2: 4.57059681e-01 + ModelRW_1: 3.04706454e-01 + ModelRW_2: 3.04706454e-01 + JES_1: 3.36734358e-01 + JES_2: 3.36734358e-01 + ArtUnc_1: 4.82223246e-04 + ArtUnc_2: -4.54819366e-04 + ArtUnc_3: -2.86514996e-04 + ArtUnc_4: -5.04593237e-06 + ArtUnc_5: -6.96320424e-05 + ArtUnc_6: -3.52540799e-05 + ArtUnc_7: -7.33536481e-07 + ArtUnc_8: 1.13539171e-02 + ArtUnc_9: 4.21806318e-05 + ArtUnc_10: -1.57079344e-02 + ArtUnc_11: -9.80388532e-03 + ArtUnc_12: 2.15369937e-03 + ArtUnc_13: 7.53284434e-03 + ArtUnc_14: 2.19509440e-03 + ArtUnc_15: 6.04609725e-03 + ArtUnc_16: -2.31169280e-03 + ArtUnc_17: 1.71711203e-03 + ArtUnc_18: -1.02889775e-03 + ArtUnc_19: 1.13115040e-04 + ArtUnc_20: 5.32172676e-04 + ArtUnc_21: 3.19961064e-04 + ArtUnc_22: -9.23556489e-05 + ArtUnc_23: -4.18114049e-05 + ArtUnc_24: 1.90347022e-05 + ArtUnc_25: -2.04877582e-02 + ArtUnc_26: 1.15748663e-02 + ArtUnc_27: 8.91291270e-02 + ArtUnc_28: -8.66562627e-03 + ArtUnc_29: -6.63533825e-03 + ArtUnc_30: 2.79458768e-02 + ArtUnc_31: -9.77229750e-04 + ArtUnc_32: -1.02161422e-02 + ArtUnc_33: -2.84533004e-03 + ArtUnc_34: -5.57033327e-03 + ArtUnc_35: -9.66265457e-03 + ArtUnc_36: -4.52873772e-03 + ArtUnc_37: -1.20384603e-03 + ArtUnc_38: 1.87312774e-03 + ArtUnc_39: 8.50356421e-04 + ArtUnc_40: 1.38445622e-04 + ArtUnc_41: 6.63849569e-01 + ArtUnc_42: -5.70691417e-01 + ArtUnc_43: -3.77561484e-01 + ArtUnc_44: -3.50173082e-02 + ArtUnc_45: -2.20792684e-01 + ArtUnc_46: -1.55564866e-01 + ArtUnc_47: 3.87828674e-02 + ArtUnc_48: -1.79236665e-01 + ArtUnc_49: 5.42837815e-02 + ArtUnc_50: 1.32424434e-01 + ArtUnc_51: -3.41633531e-03 + ArtUnc_52: 7.71155270e-03 + ArtUnc_53: 1.31485419e-01 + ArtUnc_54: -4.80823729e-02 + ArtUnc_55: -3.47514065e-02 + ArtUnc_56: 3.63412937e-03 + ArtUnc_57: -8.01542903e-03 + ArtUnc_58: 4.29667830e-02 + ArtUnc_59: -2.15933564e-02 + ArtUnc_60: -5.08882857e-03 + ArtUnc_61: 2.40941009e-02 + ArtUnc_62: -6.40653412e-03 + ArtUnc_63: -9.26058381e-03 + ArtUnc_64: -7.32459200e-04 + ArtUnc_65: -2.31024095e-03 + ArtUnc_66: -1.17959958e-02 + ArtUnc_67: 3.79881076e-03 + ArtUnc_68: 1.40059925e-02 + ArtUnc_69: 7.27331527e-03 + ArtUnc_70: -4.22939426e-04 + ArtUnc_71: 1.46633767e-03 + ArtUnc_72: -9.92923023e-04 + ArtUnc_73: 1.18447047e-04 + ArtUnc_74: -2.30229537e-04 + ArtUnc_75: -5.28053326e-05 + ArtUnc_76: 5.83203126e-05 + ArtUnc_77: 1.36646563e-04 + ArtUnc_78: 2.25855333e-04 + ArtUnc_79: -3.22228374e-04 + ArtUnc_80: -8.56065859e-05 + ArtUnc_81: 2.76357318e-05 + ArtUnc_82: -1.44710799e-07 + ArtUnc_83: -4.84924275e-05 + ArtUnc_84: -2.73851983e-05 + ArtUnc_85: 3.69115682e-05 + ArtUnc_86: -4.58563565e-05 + ArtUnc_87: -3.28288988e-05 + ArtUnc_88: -3.28082917e-05 + ArtUnc_89: -5.06347470e-05 + ArtUnc_90: 5.94049219e-06 + ArtUnc_91: -9.96937533e-06 + ArtUnc_92: -1.58614183e-06 + ArtUnc_93: 1.39451971e-05 + ArtUnc_94: 1.97606185e-05 + ArtUnc_95: 5.41580372e-06 + ArtUnc_96: 8.09960638e-06 - stat: 0 Uncorr: 0.0177 - RCES: 0.021539525551877884 - ElEn: 0.028090491109092414 - ElTh: 0.014971678688443724 + RCES: 2.15395256e-02 + ElEn: 2.80904911e-02 + ElTh: 1.49716787e-02 Lumi: 0.04425 LArN: 0.00885 StatMC: 0.086199 - RadErr: 0.041772000000000004 - Model_1: 0.15945116494400408 - Model_2: 0.15945116494400408 - ModelRW_1: 0.09737284641007471 - ModelRW_2: 0.09737284641007471 - JES_1: 0.09023954044929529 - JES_2: 0.09023954044929529 - ArtUnc_1: 8.284240535459942e-05 - ArtUnc_2: -7.143652520747553e-05 - ArtUnc_3: -4.2939106416322474e-05 - ArtUnc_4: 9.189147705604213e-07 - ArtUnc_5: -1.168392477351611e-05 - ArtUnc_6: -5.437220127116407e-06 - ArtUnc_7: -3.186788680124188e-07 - ArtUnc_8: 0.0017507675790445158 - ArtUnc_9: 6.3208949947927375e-06 - ArtUnc_10: -0.0023152786563023693 - ArtUnc_11: -0.001512260185718958 - ArtUnc_12: 0.0002867266414185476 - ArtUnc_13: 0.0011707137810086823 - ArtUnc_14: 0.00037400319118526687 - ArtUnc_15: 0.0010149982650403862 - ArtUnc_16: -0.0004244565163130159 - ArtUnc_17: 0.00034015178709396565 - ArtUnc_18: -0.000192932820089954 - ArtUnc_19: 4.354511051629244e-05 - ArtUnc_20: 3.082354649563666e-05 - ArtUnc_21: 1.7465997797400437e-06 - ArtUnc_22: 1.2057399180159132e-05 - ArtUnc_23: 4.491744744461753e-06 - ArtUnc_24: 9.79744710611963e-07 - ArtUnc_25: 0.000207381057035519 - ArtUnc_26: -0.0004230761354287319 - ArtUnc_27: -0.0031937538950595834 - ArtUnc_28: 0.0002789218703015377 - ArtUnc_29: 0.0003826943616382765 - ArtUnc_30: -0.0021125763707275347 - ArtUnc_31: 4.634065252060755e-05 - ArtUnc_32: 0.0012541085350820632 - ArtUnc_33: 0.0003780885952905535 - ArtUnc_34: 0.0008401347196628806 - ArtUnc_35: 0.0014372357214196374 - ArtUnc_36: 0.0005759556505313191 - ArtUnc_37: 9.800053871621878e-05 - ArtUnc_38: -0.0001049586563108525 - ArtUnc_39: -1.4606526390462278e-05 - ArtUnc_40: -3.996192469797755e-06 - ArtUnc_41: 0.011750948973270116 - ArtUnc_42: -0.015575601828048118 - ArtUnc_43: -0.004189188127765207 - ArtUnc_44: 0.0011989486168144544 - ArtUnc_45: -0.002337986903522328 - ArtUnc_46: 0.00015453013196292003 - ArtUnc_47: -0.0005559318681489714 - ArtUnc_48: 2.7101397601735106e-05 - ArtUnc_49: -0.00020626001420911725 - ArtUnc_50: -5.820870463632121e-05 - ArtUnc_51: -1.6662171501764027e-05 - ArtUnc_52: 2.5544439689513627e-05 - ArtUnc_53: -0.00014939065649154743 - ArtUnc_54: -9.672127646801581e-05 - ArtUnc_55: -1.1098661883805367e-05 - ArtUnc_56: 1.7388712030098158e-05 - ArtUnc_57: -0.11990698671213583 - ArtUnc_58: 0.1630472526295877 - ArtUnc_59: 0.23306723240397223 - ArtUnc_60: 0.08346872670813442 - ArtUnc_61: -0.05613004221263735 - ArtUnc_62: -0.0518004490850811 - ArtUnc_63: 0.030589435370586383 - ArtUnc_64: -0.08155023196137762 - ArtUnc_65: 0.07903336729866912 - ArtUnc_66: 0.04530305726093659 - ArtUnc_67: -0.013349390116759653 - ArtUnc_68: -0.0264080500996915 - ArtUnc_69: -0.012559102862259136 - ArtUnc_70: 0.0011507880480598309 - ArtUnc_71: -0.00039464089688755454 - ArtUnc_72: 0.0015003052226943954 - ArtUnc_73: -0.01664476478326977 - ArtUnc_74: 0.017515386373661138 - ArtUnc_75: 0.0022558265607425716 - ArtUnc_76: 0.00046133251513093 - ArtUnc_77: -0.0034936131326428277 - ArtUnc_78: -0.0026908293071845365 - ArtUnc_79: 0.006560964965245572 - ArtUnc_80: 0.0009448181700934723 - ArtUnc_81: -0.00044521757762517754 - ArtUnc_82: 9.185677018507984e-08 - ArtUnc_83: -0.00011809609694401655 - ArtUnc_84: 0.0005436643903216629 - ArtUnc_85: 6.648844060157769e-05 - ArtUnc_86: 4.8256104908536475e-05 - ArtUnc_87: 7.071954635315663e-05 - ArtUnc_88: 0.00035533421302064275 - ArtUnc_89: 0.00101065159677701 - ArtUnc_90: -0.00013932834585073713 - ArtUnc_91: 2.375834640852458e-05 - ArtUnc_92: 3.920061732908886e-06 - ArtUnc_93: -4.664789298303528e-05 - ArtUnc_94: -0.0005146245491329366 - ArtUnc_95: -0.00012595303709050904 - ArtUnc_96: 1.3968545028191379e-06 + RadErr: 4.17720000e-02 + Model_1: 1.59451165e-01 + Model_2: 1.59451165e-01 + ModelRW_1: 9.73728464e-02 + ModelRW_2: 9.73728464e-02 + JES_1: 9.02395404e-02 + JES_2: 9.02395404e-02 + ArtUnc_1: 8.28424054e-05 + ArtUnc_2: -7.14365252e-05 + ArtUnc_3: -4.29391064e-05 + ArtUnc_4: 9.18914771e-07 + ArtUnc_5: -1.16839248e-05 + ArtUnc_6: -5.43722013e-06 + ArtUnc_7: -3.18678868e-07 + ArtUnc_8: 1.75076758e-03 + ArtUnc_9: 6.32089499e-06 + ArtUnc_10: -2.31527866e-03 + ArtUnc_11: -1.51226019e-03 + ArtUnc_12: 2.86726641e-04 + ArtUnc_13: 1.17071378e-03 + ArtUnc_14: 3.74003191e-04 + ArtUnc_15: 1.01499827e-03 + ArtUnc_16: -4.24456516e-04 + ArtUnc_17: 3.40151787e-04 + ArtUnc_18: -1.92932820e-04 + ArtUnc_19: 4.35451105e-05 + ArtUnc_20: 3.08235465e-05 + ArtUnc_21: 1.74659978e-06 + ArtUnc_22: 1.20573992e-05 + ArtUnc_23: 4.49174474e-06 + ArtUnc_24: 9.79744711e-07 + ArtUnc_25: 2.07381057e-04 + ArtUnc_26: -4.23076135e-04 + ArtUnc_27: -3.19375390e-03 + ArtUnc_28: 2.78921870e-04 + ArtUnc_29: 3.82694362e-04 + ArtUnc_30: -2.11257637e-03 + ArtUnc_31: 4.63406525e-05 + ArtUnc_32: 1.25410854e-03 + ArtUnc_33: 3.78088595e-04 + ArtUnc_34: 8.40134720e-04 + ArtUnc_35: 1.43723572e-03 + ArtUnc_36: 5.75955651e-04 + ArtUnc_37: 9.80005387e-05 + ArtUnc_38: -1.04958656e-04 + ArtUnc_39: -1.46065264e-05 + ArtUnc_40: -3.99619247e-06 + ArtUnc_41: 1.17509490e-02 + ArtUnc_42: -1.55756018e-02 + ArtUnc_43: -4.18918813e-03 + ArtUnc_44: 1.19894862e-03 + ArtUnc_45: -2.33798690e-03 + ArtUnc_46: 1.54530132e-04 + ArtUnc_47: -5.55931868e-04 + ArtUnc_48: 2.71013976e-05 + ArtUnc_49: -2.06260014e-04 + ArtUnc_50: -5.82087046e-05 + ArtUnc_51: -1.66621715e-05 + ArtUnc_52: 2.55444397e-05 + ArtUnc_53: -1.49390656e-04 + ArtUnc_54: -9.67212765e-05 + ArtUnc_55: -1.10986619e-05 + ArtUnc_56: 1.73887120e-05 + ArtUnc_57: -1.19906987e-01 + ArtUnc_58: 1.63047253e-01 + ArtUnc_59: 2.33067232e-01 + ArtUnc_60: 8.34687267e-02 + ArtUnc_61: -5.61300422e-02 + ArtUnc_62: -5.18004491e-02 + ArtUnc_63: 3.05894354e-02 + ArtUnc_64: -8.15502320e-02 + ArtUnc_65: 7.90333673e-02 + ArtUnc_66: 4.53030573e-02 + ArtUnc_67: -1.33493901e-02 + ArtUnc_68: -2.64080501e-02 + ArtUnc_69: -1.25591029e-02 + ArtUnc_70: 1.15078805e-03 + ArtUnc_71: -3.94640897e-04 + ArtUnc_72: 1.50030522e-03 + ArtUnc_73: -1.66447648e-02 + ArtUnc_74: 1.75153864e-02 + ArtUnc_75: 2.25582656e-03 + ArtUnc_76: 4.61332515e-04 + ArtUnc_77: -3.49361313e-03 + ArtUnc_78: -2.69082931e-03 + ArtUnc_79: 6.56096497e-03 + ArtUnc_80: 9.44818170e-04 + ArtUnc_81: -4.45217578e-04 + ArtUnc_82: 9.18567702e-08 + ArtUnc_83: -1.18096097e-04 + ArtUnc_84: 5.43664390e-04 + ArtUnc_85: 6.64884406e-05 + ArtUnc_86: 4.82561049e-05 + ArtUnc_87: 7.07195464e-05 + ArtUnc_88: 3.55334213e-04 + ArtUnc_89: 1.01065160e-03 + ArtUnc_90: -1.39328346e-04 + ArtUnc_91: 2.37583464e-05 + ArtUnc_92: 3.92006173e-06 + ArtUnc_93: -4.66478930e-05 + ArtUnc_94: -5.14624549e-04 + ArtUnc_95: -1.25953037e-04 + ArtUnc_96: 1.39685450e-06 - stat: 0 Uncorr: 0.00255 - RCES: 0.0023413874492488424 - ElEn: 0.008451317086703113 - ElTh: 0.005199046036293581 + RCES: 2.34138745e-03 + ElEn: 8.45131709e-03 + ElTh: 5.19904604e-03 Lumi: 0.006375 LArN: 0.001275 - StatMC: 0.0293505 + StatMC: 2.93505000e-02 RadErr: 0.008007 - Model_1: 0.003984900265376788 - Model_2: 0.003984900265376788 - ModelRW_1: 0.009159861243490537 - ModelRW_2: 0.009159861243490537 - JES_1: 0.01574009834288687 - JES_2: 0.01574009834288687 - ArtUnc_1: -8.737694534121229e-10 - ArtUnc_2: 1.6464594064326736e-09 - ArtUnc_3: 1.5950511990295304e-09 - ArtUnc_4: 1.3040974115525698e-10 - ArtUnc_5: 5.508080194611627e-10 - ArtUnc_6: 3.7671139816293967e-10 - ArtUnc_7: 1.2766550907783893e-11 - ArtUnc_8: -1.8318554335628124e-07 - ArtUnc_9: -7.598415241707395e-10 - ArtUnc_10: 3.172515480713788e-07 - ArtUnc_11: 2.644748786934402e-07 - ArtUnc_12: -5.490758663839249e-08 - ArtUnc_13: -2.718473923425416e-07 - ArtUnc_14: -9.213717981691248e-08 - ArtUnc_15: -2.724363299357123e-07 - ArtUnc_16: 1.2069090292989235e-07 - ArtUnc_17: -9.887766630843156e-08 - ArtUnc_18: 6.492169166509936e-08 - ArtUnc_19: -1.0089425732864725e-08 - ArtUnc_20: -3.7827776916724463e-08 - ArtUnc_21: -2.494253881503824e-08 - ArtUnc_22: 7.18207777277124e-09 - ArtUnc_23: 4.737266987816121e-09 - ArtUnc_24: -2.6786010019964452e-09 - ArtUnc_25: 2.9575991000873583e-06 - ArtUnc_26: -2.4109347240891293e-06 - ArtUnc_27: -1.958960032609601e-05 - ArtUnc_28: 2.1605117264882275e-06 - ArtUnc_29: 1.866721069826176e-06 - ArtUnc_30: -8.22057669927223e-06 - ArtUnc_31: 3.1484995192426904e-07 - ArtUnc_32: 3.566962795179308e-06 - ArtUnc_33: 9.910532595307408e-07 - ArtUnc_34: 2.229321892986007e-06 - ArtUnc_35: 3.9884951668698356e-06 - ArtUnc_36: 2.166989013651135e-06 - ArtUnc_37: 6.645354509858519e-07 - ArtUnc_38: -1.137071138773637e-06 - ArtUnc_39: -6.259626810669443e-07 - ArtUnc_40: -1.139598981579064e-07 - ArtUnc_41: -0.0011137227426165804 - ArtUnc_42: 0.001141607145327739 - ArtUnc_43: 0.0008346508307614627 - ArtUnc_44: 8.601943478581479e-05 - ArtUnc_45: 0.0005798205279119543 - ArtUnc_46: 0.0004383472277824721 - ArtUnc_47: -0.00012074281722239596 - ArtUnc_48: 0.000552874931580836 - ArtUnc_49: -0.00017207676192544896 - ArtUnc_50: -0.0004507527380131608 - ArtUnc_51: 2.508999491499608e-05 - ArtUnc_52: -4.8123543900225626e-05 - ArtUnc_53: -0.0004876302466361276 - ArtUnc_54: 0.00018684558503821334 - ArtUnc_55: 0.00015388762592659022 - ArtUnc_56: -1.8186981887229775e-05 - ArtUnc_57: -0.004004969220651377 - ArtUnc_58: 0.003607266408108926 - ArtUnc_59: 0.004505974454370048 - ArtUnc_60: 0.001345496970059587 - ArtUnc_61: -0.0008187221344207724 - ArtUnc_62: -0.0003112304944000799 - ArtUnc_63: 0.0002862908683742685 - ArtUnc_64: -0.0003152481406459922 - ArtUnc_65: 0.0003683638836481357 - ArtUnc_66: 0.0002982348981041299 - ArtUnc_67: -0.0001502387558411166 - ArtUnc_68: -0.0006147404317045237 - ArtUnc_69: -0.0005233603568172246 - ArtUnc_70: 0.00019697460472897514 - ArtUnc_71: -8.244916610588482e-05 - ArtUnc_72: 0.00014985939363457848 - ArtUnc_73: 0.0038048183334672874 - ArtUnc_74: -0.0007028573295874387 - ArtUnc_75: 0.0011840866023422926 - ArtUnc_76: 0.02835348160110081 - ArtUnc_77: -0.005216149143439307 - ArtUnc_78: 0.06222596545671097 - ArtUnc_79: 0.015037693794521264 - ArtUnc_80: -0.026302069053068946 - ArtUnc_81: 0.01476780276571734 - ArtUnc_82: -1.1729779388745412e-06 - ArtUnc_83: -0.006403768686471221 - ArtUnc_84: -0.017996315182303557 - ArtUnc_85: 0.004758655675668427 - ArtUnc_86: -0.005074421813299028 - ArtUnc_87: -0.002829751264937561 - ArtUnc_88: -0.04337537829452347 - ArtUnc_89: -0.029379583624767714 - ArtUnc_90: 0.007388117062249002 - ArtUnc_91: -0.0007635967238545224 - ArtUnc_92: -0.00010334804503274076 - ArtUnc_93: -0.030648055619916178 - ArtUnc_94: 0.01331203105244284 - ArtUnc_95: 0.0008653673756013533 - ArtUnc_96: 0.001045600489105698 + Model_1: 3.98490027e-03 + Model_2: 3.98490027e-03 + ModelRW_1: 9.15986124e-03 + ModelRW_2: 9.15986124e-03 + JES_1: 1.57400983e-02 + JES_2: 1.57400983e-02 + ArtUnc_1: -8.73769453e-10 + ArtUnc_2: 1.64645941e-09 + ArtUnc_3: 1.59505120e-09 + ArtUnc_4: 1.30409741e-10 + ArtUnc_5: 5.50808019e-10 + ArtUnc_6: 3.76711398e-10 + ArtUnc_7: 1.27665509e-11 + ArtUnc_8: -1.83185543e-07 + ArtUnc_9: -7.59841524e-10 + ArtUnc_10: 3.17251548e-07 + ArtUnc_11: 2.64474879e-07 + ArtUnc_12: -5.49075866e-08 + ArtUnc_13: -2.71847392e-07 + ArtUnc_14: -9.21371798e-08 + ArtUnc_15: -2.72436330e-07 + ArtUnc_16: 1.20690903e-07 + ArtUnc_17: -9.88776663e-08 + ArtUnc_18: 6.49216917e-08 + ArtUnc_19: -1.00894257e-08 + ArtUnc_20: -3.78277769e-08 + ArtUnc_21: -2.49425388e-08 + ArtUnc_22: 7.18207777e-09 + ArtUnc_23: 4.73726699e-09 + ArtUnc_24: -2.67860100e-09 + ArtUnc_25: 2.95759910e-06 + ArtUnc_26: -2.41093472e-06 + ArtUnc_27: -1.95896003e-05 + ArtUnc_28: 2.16051173e-06 + ArtUnc_29: 1.86672107e-06 + ArtUnc_30: -8.22057670e-06 + ArtUnc_31: 3.14849952e-07 + ArtUnc_32: 3.56696280e-06 + ArtUnc_33: 9.91053260e-07 + ArtUnc_34: 2.22932189e-06 + ArtUnc_35: 3.98849517e-06 + ArtUnc_36: 2.16698901e-06 + ArtUnc_37: 6.64535451e-07 + ArtUnc_38: -1.13707114e-06 + ArtUnc_39: -6.25962681e-07 + ArtUnc_40: -1.13959898e-07 + ArtUnc_41: -1.11372274e-03 + ArtUnc_42: 1.14160715e-03 + ArtUnc_43: 8.34650831e-04 + ArtUnc_44: 8.60194348e-05 + ArtUnc_45: 5.79820528e-04 + ArtUnc_46: 4.38347228e-04 + ArtUnc_47: -1.20742817e-04 + ArtUnc_48: 5.52874932e-04 + ArtUnc_49: -1.72076762e-04 + ArtUnc_50: -4.50752738e-04 + ArtUnc_51: 2.50899949e-05 + ArtUnc_52: -4.81235439e-05 + ArtUnc_53: -4.87630247e-04 + ArtUnc_54: 1.86845585e-04 + ArtUnc_55: 1.53887626e-04 + ArtUnc_56: -1.81869819e-05 + ArtUnc_57: -4.00496922e-03 + ArtUnc_58: 3.60726641e-03 + ArtUnc_59: 4.50597445e-03 + ArtUnc_60: 1.34549697e-03 + ArtUnc_61: -8.18722134e-04 + ArtUnc_62: -3.11230494e-04 + ArtUnc_63: 2.86290868e-04 + ArtUnc_64: -3.15248141e-04 + ArtUnc_65: 3.68363884e-04 + ArtUnc_66: 2.98234898e-04 + ArtUnc_67: -1.50238756e-04 + ArtUnc_68: -6.14740432e-04 + ArtUnc_69: -5.23360357e-04 + ArtUnc_70: 1.96974605e-04 + ArtUnc_71: -8.24491661e-05 + ArtUnc_72: 1.49859394e-04 + ArtUnc_73: 3.80481833e-03 + ArtUnc_74: -7.02857330e-04 + ArtUnc_75: 1.18408660e-03 + ArtUnc_76: 2.83534816e-02 + ArtUnc_77: -5.21614914e-03 + ArtUnc_78: 6.22259655e-02 + ArtUnc_79: 1.50376938e-02 + ArtUnc_80: -2.63020691e-02 + ArtUnc_81: 1.47678028e-02 + ArtUnc_82: -1.17297794e-06 + ArtUnc_83: -6.40376869e-03 + ArtUnc_84: -1.79963152e-02 + ArtUnc_85: 4.75865568e-03 + ArtUnc_86: -5.07442181e-03 + ArtUnc_87: -2.82975126e-03 + ArtUnc_88: -4.33753783e-02 + ArtUnc_89: -2.93795836e-02 + ArtUnc_90: 7.38811706e-03 + ArtUnc_91: -7.63596724e-04 + ArtUnc_92: -1.03348045e-04 + ArtUnc_93: -3.06480556e-02 + ArtUnc_94: 1.33120311e-02 + ArtUnc_95: 8.65367376e-04 + ArtUnc_96: 1.04560049e-03 - stat: 0 Uncorr: 5.59 - RCES: 22.248761801952035 - ElEn: 1.5850385610451247 - ElTh: 2.945245755450638 + RCES: 2.22487618e+01 + ElEn: 1.58503856e+00 + ElTh: 2.94524576e+00 Lumi: 13.975 LArN: 2.795 StatMC: 6.3167 RadErr: 1.7888 - Model_1: 17.115307506586028 - Model_2: 17.115307506586028 - ModelRW_1: 8.577417387827177 - ModelRW_2: 8.577417387827177 - JES_1: 3.838981084057331 - JES_2: 3.838981084057331 - ArtUnc_1: 28.534619481303825 - ArtUnc_2: -7.123863967078508 - ArtUnc_3: -2.7181265551317226 - ArtUnc_4: -0.3899284876102117 - ArtUnc_5: -0.00670746378074466 - ArtUnc_6: -0.008283999205217387 - ArtUnc_7: 0.0007567391512459143 - ArtUnc_8: -0.27855882289615036 - ArtUnc_9: -0.0015553697559445726 - ArtUnc_10: 0.6841040029689246 - ArtUnc_11: 0.2703982613331601 - ArtUnc_12: -0.02577120581018809 - ArtUnc_13: -0.20196510734929263 - ArtUnc_14: -0.061245749383712446 - ArtUnc_15: -0.1373398814060955 - ArtUnc_16: 0.05559250646001657 - ArtUnc_17: -0.03891494291030187 - ArtUnc_18: 0.022439546494828832 - ArtUnc_19: -0.004613609699705583 - ArtUnc_20: -0.005955233470981109 - ArtUnc_21: -0.000919797110477925 - ArtUnc_22: -0.0015613108826127554 - ArtUnc_23: -0.0005657803910752896 - ArtUnc_24: -0.00013845948901258673 - ArtUnc_25: 0.0015884893142738003 - ArtUnc_26: 0.0027998731918240935 - ArtUnc_27: 0.012058199532830109 - ArtUnc_28: 0.0010435302393417168 - ArtUnc_29: -0.0008423840084407331 - ArtUnc_30: 0.006854685756505784 - ArtUnc_31: 0.0006563809746296008 - ArtUnc_32: -0.003397722806987923 - ArtUnc_33: -0.0013550843877417945 - ArtUnc_34: -0.0018974214458767377 - ArtUnc_35: -0.0033135972302497743 - ArtUnc_36: -0.0011026071913299487 - ArtUnc_37: -0.00021120981280549925 - ArtUnc_38: 0.0001611175014340478 - ArtUnc_39: 7.780354641441171e-06 - ArtUnc_40: -1.0949039928915957e-05 - ArtUnc_41: 0.0008162451372233949 - ArtUnc_42: 0.0006595543728718163 - ArtUnc_43: -0.0001920179570449045 - ArtUnc_44: -0.00029239045544503836 - ArtUnc_45: 0.00029228857947158284 - ArtUnc_46: -0.00014950580404518931 - ArtUnc_47: 0.0003446552927101274 - ArtUnc_48: -0.00011551717262218647 - ArtUnc_49: -0.00017085330905257303 - ArtUnc_50: -0.00013644698293498577 - ArtUnc_51: 9.219831701846136e-06 - ArtUnc_52: -1.4905544371813783e-05 - ArtUnc_53: -0.00014030870040233003 - ArtUnc_54: 2.172973149282271e-05 - ArtUnc_55: 2.5524966768608532e-05 - ArtUnc_56: 1.1225502356583022e-05 - ArtUnc_57: -4.691504492441422e-06 - ArtUnc_58: 7.6197052616898715e-06 - ArtUnc_59: 9.825460992185863e-06 - ArtUnc_60: 3.627685529542029e-06 - ArtUnc_61: -2.392677403828778e-06 - ArtUnc_62: -2.617544550091262e-06 - ArtUnc_63: 1.7619189417090515e-06 - ArtUnc_64: -4.0927753178519035e-06 - ArtUnc_65: 4.0074756663388155e-06 - ArtUnc_66: 2.9159524324259093e-06 - ArtUnc_67: -1.0830813048008015e-06 - ArtUnc_68: -3.5965235536997996e-06 - ArtUnc_69: -2.322886166859595e-06 - ArtUnc_70: 2.5743213044265925e-07 - ArtUnc_71: -1.5613343610499397e-07 - ArtUnc_72: 6.637580118037731e-08 - ArtUnc_73: -6.870695206562281e-07 - ArtUnc_74: 8.574271135636011e-07 - ArtUnc_75: 1.1569485846268291e-07 - ArtUnc_76: -6.437296749786422e-08 - ArtUnc_77: -1.837073110006341e-07 - ArtUnc_78: -2.4335993445393687e-07 - ArtUnc_79: 3.0163122457542233e-07 - ArtUnc_80: -1.0246606463765234e-07 - ArtUnc_81: 3.8856419054493195e-08 - ArtUnc_82: -3.6760400909888214e-11 - ArtUnc_83: 1.978891082722819e-08 - ArtUnc_84: -3.067811729035556e-08 - ArtUnc_85: -1.2655550615766943e-08 - ArtUnc_86: -6.924432285300878e-09 - ArtUnc_87: -1.4939796498290833e-08 - ArtUnc_88: 3.768689079174396e-08 - ArtUnc_89: 3.359132245658672e-08 - ArtUnc_90: 1.590444265428233e-08 - ArtUnc_91: -5.957595733315514e-09 - ArtUnc_92: -1.0576092301003206e-09 - ArtUnc_93: 1.3221074939131718e-08 - ArtUnc_94: -5.2314837785566986e-09 - ArtUnc_95: -6.979669883933357e-09 - ArtUnc_96: 1.543753446103767e-10 + Model_1: 1.71153075e+01 + Model_2: 1.71153075e+01 + ModelRW_1: 8.57741739e+00 + ModelRW_2: 8.57741739e+00 + JES_1: 3.83898108e+00 + JES_2: 3.83898108e+00 + ArtUnc_1: 2.85346195e+01 + ArtUnc_2: -7.12386397e+00 + ArtUnc_3: -2.71812656e+00 + ArtUnc_4: -3.89928488e-01 + ArtUnc_5: -6.70746378e-03 + ArtUnc_6: -8.28399921e-03 + ArtUnc_7: 7.56739151e-04 + ArtUnc_8: -2.78558823e-01 + ArtUnc_9: -1.55536976e-03 + ArtUnc_10: 6.84104003e-01 + ArtUnc_11: 2.70398261e-01 + ArtUnc_12: -2.57712058e-02 + ArtUnc_13: -2.01965107e-01 + ArtUnc_14: -6.12457494e-02 + ArtUnc_15: -1.37339881e-01 + ArtUnc_16: 5.55925065e-02 + ArtUnc_17: -3.89149429e-02 + ArtUnc_18: 2.24395465e-02 + ArtUnc_19: -4.61360970e-03 + ArtUnc_20: -5.95523347e-03 + ArtUnc_21: -9.19797110e-04 + ArtUnc_22: -1.56131088e-03 + ArtUnc_23: -5.65780391e-04 + ArtUnc_24: -1.38459489e-04 + ArtUnc_25: 1.58848931e-03 + ArtUnc_26: 2.79987319e-03 + ArtUnc_27: 1.20581995e-02 + ArtUnc_28: 1.04353024e-03 + ArtUnc_29: -8.42384008e-04 + ArtUnc_30: 6.85468576e-03 + ArtUnc_31: 6.56380975e-04 + ArtUnc_32: -3.39772281e-03 + ArtUnc_33: -1.35508439e-03 + ArtUnc_34: -1.89742145e-03 + ArtUnc_35: -3.31359723e-03 + ArtUnc_36: -1.10260719e-03 + ArtUnc_37: -2.11209813e-04 + ArtUnc_38: 1.61117501e-04 + ArtUnc_39: 7.78035464e-06 + ArtUnc_40: -1.09490399e-05 + ArtUnc_41: 8.16245137e-04 + ArtUnc_42: 6.59554373e-04 + ArtUnc_43: -1.92017957e-04 + ArtUnc_44: -2.92390455e-04 + ArtUnc_45: 2.92288579e-04 + ArtUnc_46: -1.49505804e-04 + ArtUnc_47: 3.44655293e-04 + ArtUnc_48: -1.15517173e-04 + ArtUnc_49: -1.70853309e-04 + ArtUnc_50: -1.36446983e-04 + ArtUnc_51: 9.21983170e-06 + ArtUnc_52: -1.49055444e-05 + ArtUnc_53: -1.40308700e-04 + ArtUnc_54: 2.17297315e-05 + ArtUnc_55: 2.55249668e-05 + ArtUnc_56: 1.12255024e-05 + ArtUnc_57: -4.69150449e-06 + ArtUnc_58: 7.61970526e-06 + ArtUnc_59: 9.82546099e-06 + ArtUnc_60: 3.62768553e-06 + ArtUnc_61: -2.39267740e-06 + ArtUnc_62: -2.61754455e-06 + ArtUnc_63: 1.76191894e-06 + ArtUnc_64: -4.09277532e-06 + ArtUnc_65: 4.00747567e-06 + ArtUnc_66: 2.91595243e-06 + ArtUnc_67: -1.08308130e-06 + ArtUnc_68: -3.59652355e-06 + ArtUnc_69: -2.32288617e-06 + ArtUnc_70: 2.57432130e-07 + ArtUnc_71: -1.56133436e-07 + ArtUnc_72: 6.63758012e-08 + ArtUnc_73: -6.87069521e-07 + ArtUnc_74: 8.57427114e-07 + ArtUnc_75: 1.15694858e-07 + ArtUnc_76: -6.43729675e-08 + ArtUnc_77: -1.83707311e-07 + ArtUnc_78: -2.43359934e-07 + ArtUnc_79: 3.01631225e-07 + ArtUnc_80: -1.02466065e-07 + ArtUnc_81: 3.88564191e-08 + ArtUnc_82: -3.67604009e-11 + ArtUnc_83: 1.97889108e-08 + ArtUnc_84: -3.06781173e-08 + ArtUnc_85: -1.26555506e-08 + ArtUnc_86: -6.92443229e-09 + ArtUnc_87: -1.49397965e-08 + ArtUnc_88: 3.76868908e-08 + ArtUnc_89: 3.35913225e-08 + ArtUnc_90: 1.59044427e-08 + ArtUnc_91: -5.95759573e-09 + ArtUnc_92: -1.05760923e-09 + ArtUnc_93: 1.32210749e-08 + ArtUnc_94: -5.23148378e-09 + ArtUnc_95: -6.97966988e-09 + ArtUnc_96: 1.54375345e-10 - stat: 0 - Uncorr: 2.3000000000000003 - RCES: 8.234216826754079 - ElEn: 0.8509222937495526 - ElTh: 0.7616959695311509 + Uncorr: 2.30000000e+00 + RCES: 8.23421683e+00 + ElEn: 8.50922294e-01 + ElTh: 7.61695970e-01 Lumi: 5.75 - LArN: 1.1500000000000001 + LArN: 1.15000000e+00 StatMC: 2.185 - RadErr: 0.6900000000000001 - Model_1: 4.439923479070331 - Model_2: 4.439923479070331 - ModelRW_1: 6.440328563047075 - ModelRW_2: 6.440328563047075 - JES_1: 10.212660451615927 - JES_2: 10.212660451615927 - ArtUnc_1: 2.2970761331390066 - ArtUnc_2: -1.0892033898037916 - ArtUnc_3: -0.4626643792894114 - ArtUnc_4: 0.0034597266768986723 - ArtUnc_5: -0.07024799880322546 - ArtUnc_6: -0.025635496777499604 - ArtUnc_7: -0.0011811538975831683 - ArtUnc_8: 5.698072050451249 - ArtUnc_9: 0.01838660928832924 - ArtUnc_10: -6.02475607507018 - ArtUnc_11: -2.9660838975572674 - ArtUnc_12: 0.509042374153124 - ArtUnc_13: 1.8418379289105533 - ArtUnc_14: 0.5185384503576153 - ArtUnc_15: 1.3053603129533584 - ArtUnc_16: -0.48075482695253724 - ArtUnc_17: 0.3546020620221246 - ArtUnc_18: -0.19000896413705118 - ArtUnc_19: 0.03448455438106577 - ArtUnc_20: 0.0334777718193411 - ArtUnc_21: 0.00667766552088803 - ArtUnc_22: 0.005573150621444783 - ArtUnc_23: 0.0016140948748548712 - ArtUnc_24: 0.000568273667308521 - ArtUnc_25: -0.13949268880938007 - ArtUnc_26: -0.07352578045564359 - ArtUnc_27: -0.1808656512600164 - ArtUnc_28: -0.021260206797389925 - ArtUnc_29: 0.00997221831462979 - ArtUnc_30: -0.09065927398924134 - ArtUnc_31: -0.0006883162712905388 - ArtUnc_32: 0.04229196904252959 - ArtUnc_33: 0.01621967581405243 - ArtUnc_34: 0.027143903368802316 - ArtUnc_35: 0.04350407896178598 - ArtUnc_36: 0.016514706658114008 - ArtUnc_37: 0.0024434123447177863 - ArtUnc_38: -0.002971403779176569 - ArtUnc_39: -0.0007310172834329555 - ArtUnc_40: -0.00021136252877450334 - ArtUnc_41: -0.007160870664322624 - ArtUnc_42: -0.005876951781650189 - ArtUnc_43: 0.0017314514208508819 - ArtUnc_44: 0.002553951127823745 - ArtUnc_45: -0.0025656232271245513 - ArtUnc_46: 0.0011881545478558493 - ArtUnc_47: -0.002804030604187082 - ArtUnc_48: 0.0008879580966485295 - ArtUnc_49: 0.001369146410883418 - ArtUnc_50: 0.0011494198540057063 - ArtUnc_51: -9.055078135816814e-05 - ArtUnc_52: 7.294074042155794e-05 - ArtUnc_53: 0.001181951523907321 - ArtUnc_54: -0.00025362312439836495 - ArtUnc_55: -0.00018472562965263104 - ArtUnc_56: -8.739836558783833e-05 - ArtUnc_57: 4.885657431811609e-05 - ArtUnc_58: -5.51390303127279e-05 - ArtUnc_59: -0.00013839594374450153 - ArtUnc_60: -4.877085515415337e-05 - ArtUnc_61: 4.22707537278272e-05 - ArtUnc_62: 2.8700177521542225e-05 - ArtUnc_63: -2.3803806686567963e-05 - ArtUnc_64: 5.132418586798827e-05 - ArtUnc_65: -5.261628114177895e-05 - ArtUnc_66: -3.88344980812236e-05 - ArtUnc_67: 1.3491744321721498e-05 - ArtUnc_68: 3.7428430802205095e-05 - ArtUnc_69: 2.0431367214919684e-05 - ArtUnc_70: -6.037085275244034e-07 - ArtUnc_71: 7.380420140613976e-07 - ArtUnc_72: -1.1211342621343135e-06 - ArtUnc_73: 7.325768443241816e-06 - ArtUnc_74: -8.916791594335334e-06 - ArtUnc_75: -1.162861834698842e-06 - ArtUnc_76: 6.250625946348806e-07 - ArtUnc_77: 1.82006350343776e-06 - ArtUnc_78: 2.525337070075889e-06 - ArtUnc_79: -3.227347634136641e-06 - ArtUnc_80: 9.159003097231551e-07 - ArtUnc_81: -3.4720463522110955e-07 - ArtUnc_82: 8.063925823509818e-10 - ArtUnc_83: -2.002810595725168e-07 - ArtUnc_84: 2.5676589471883596e-07 - ArtUnc_85: 1.2916345002614888e-07 - ArtUnc_86: 5.406845147989175e-08 - ArtUnc_87: 1.3886480880961782e-07 - ArtUnc_88: -4.220408273270315e-07 - ArtUnc_89: -3.5825707537558045e-07 - ArtUnc_90: -1.3673297886087641e-07 - ArtUnc_91: 5.3828040959303416e-08 - ArtUnc_92: 9.722202506314322e-09 - ArtUnc_93: -1.2730479200691123e-07 - ArtUnc_94: 5.895056924848404e-08 - ArtUnc_95: 3.96949352117729e-08 - ArtUnc_96: 4.001083540114452e-09 + RadErr: 6.90000000e-01 + Model_1: 4.43992348e+00 + Model_2: 4.43992348e+00 + ModelRW_1: 6.44032856e+00 + ModelRW_2: 6.44032856e+00 + JES_1: 1.02126605e+01 + JES_2: 1.02126605e+01 + ArtUnc_1: 2.29707613e+00 + ArtUnc_2: -1.08920339e+00 + ArtUnc_3: -4.62664379e-01 + ArtUnc_4: 3.45972668e-03 + ArtUnc_5: -7.02479988e-02 + ArtUnc_6: -2.56354968e-02 + ArtUnc_7: -1.18115390e-03 + ArtUnc_8: 5.69807205e+00 + ArtUnc_9: 1.83866093e-02 + ArtUnc_10: -6.02475608e+00 + ArtUnc_11: -2.96608390e+00 + ArtUnc_12: 5.09042374e-01 + ArtUnc_13: 1.84183793e+00 + ArtUnc_14: 5.18538450e-01 + ArtUnc_15: 1.30536031e+00 + ArtUnc_16: -4.80754827e-01 + ArtUnc_17: 3.54602062e-01 + ArtUnc_18: -1.90008964e-01 + ArtUnc_19: 3.44845544e-02 + ArtUnc_20: 3.34777718e-02 + ArtUnc_21: 6.67766552e-03 + ArtUnc_22: 5.57315062e-03 + ArtUnc_23: 1.61409487e-03 + ArtUnc_24: 5.68273667e-04 + ArtUnc_25: -1.39492689e-01 + ArtUnc_26: -7.35257805e-02 + ArtUnc_27: -1.80865651e-01 + ArtUnc_28: -2.12602068e-02 + ArtUnc_29: 9.97221831e-03 + ArtUnc_30: -9.06592740e-02 + ArtUnc_31: -6.88316271e-04 + ArtUnc_32: 4.22919690e-02 + ArtUnc_33: 1.62196758e-02 + ArtUnc_34: 2.71439034e-02 + ArtUnc_35: 4.35040790e-02 + ArtUnc_36: 1.65147067e-02 + ArtUnc_37: 2.44341234e-03 + ArtUnc_38: -2.97140378e-03 + ArtUnc_39: -7.31017283e-04 + ArtUnc_40: -2.11362529e-04 + ArtUnc_41: -7.16087066e-03 + ArtUnc_42: -5.87695178e-03 + ArtUnc_43: 1.73145142e-03 + ArtUnc_44: 2.55395113e-03 + ArtUnc_45: -2.56562323e-03 + ArtUnc_46: 1.18815455e-03 + ArtUnc_47: -2.80403060e-03 + ArtUnc_48: 8.87958097e-04 + ArtUnc_49: 1.36914641e-03 + ArtUnc_50: 1.14941985e-03 + ArtUnc_51: -9.05507814e-05 + ArtUnc_52: 7.29407404e-05 + ArtUnc_53: 1.18195152e-03 + ArtUnc_54: -2.53623124e-04 + ArtUnc_55: -1.84725630e-04 + ArtUnc_56: -8.73983656e-05 + ArtUnc_57: 4.88565743e-05 + ArtUnc_58: -5.51390303e-05 + ArtUnc_59: -1.38395944e-04 + ArtUnc_60: -4.87708552e-05 + ArtUnc_61: 4.22707537e-05 + ArtUnc_62: 2.87001775e-05 + ArtUnc_63: -2.38038067e-05 + ArtUnc_64: 5.13241859e-05 + ArtUnc_65: -5.26162811e-05 + ArtUnc_66: -3.88344981e-05 + ArtUnc_67: 1.34917443e-05 + ArtUnc_68: 3.74284308e-05 + ArtUnc_69: 2.04313672e-05 + ArtUnc_70: -6.03708528e-07 + ArtUnc_71: 7.38042014e-07 + ArtUnc_72: -1.12113426e-06 + ArtUnc_73: 7.32576844e-06 + ArtUnc_74: -8.91679159e-06 + ArtUnc_75: -1.16286183e-06 + ArtUnc_76: 6.25062595e-07 + ArtUnc_77: 1.82006350e-06 + ArtUnc_78: 2.52533707e-06 + ArtUnc_79: -3.22734763e-06 + ArtUnc_80: 9.15900310e-07 + ArtUnc_81: -3.47204635e-07 + ArtUnc_82: 8.06392582e-10 + ArtUnc_83: -2.00281060e-07 + ArtUnc_84: 2.56765895e-07 + ArtUnc_85: 1.29163450e-07 + ArtUnc_86: 5.40684515e-08 + ArtUnc_87: 1.38864809e-07 + ArtUnc_88: -4.22040827e-07 + ArtUnc_89: -3.58257075e-07 + ArtUnc_90: -1.36732979e-07 + ArtUnc_91: 5.38280410e-08 + ArtUnc_92: 9.72220251e-09 + ArtUnc_93: -1.27304792e-07 + ArtUnc_94: 5.89505692e-08 + ArtUnc_95: 3.96949352e-08 + ArtUnc_96: 4.00108354e-09 - stat: 0 Uncorr: 0.631 - RCES: 0.5889633801858993 - ElEn: 0.0979067212963441 - ElTh: 0.2237159755135963 - Lumi: 1.5775000000000001 + RCES: 5.88963380e-01 + ElEn: 9.79067213e-02 + ElTh: 2.23715976e-01 + Lumi: 1.57750000e+00 LArN: 0.3155 StatMC: 0.59945 - RadErr: 0.44170000000000004 - Model_1: 2.2353837384328443 - Model_2: 2.2353837384328443 - ModelRW_1: 2.0122915489684887 - ModelRW_2: 2.0122915489684887 - JES_1: 1.6927155709982702 - JES_2: 1.6927155709982702 - ArtUnc_1: -0.0009965196005386923 - ArtUnc_2: -0.04907637101446047 - ArtUnc_3: -0.04756497054746269 - ArtUnc_4: -0.013756699974385526 - ArtUnc_5: 0.0013405642217313753 - ArtUnc_6: -0.0003866753706473783 - ArtUnc_7: -0.00012760105812504135 - ArtUnc_8: 0.3173188838021138 - ArtUnc_9: 0.0011592755697388047 - ArtUnc_10: -0.45041721817330066 - ArtUnc_11: -0.2137337371651879 - ArtUnc_12: 0.07390984381923797 - ArtUnc_13: 0.15323462967136156 - ArtUnc_14: 0.016725144962614295 - ArtUnc_15: 0.06154109650884441 - ArtUnc_16: 0.0012801800918984287 - ArtUnc_17: -0.010197513896344924 - ArtUnc_18: -0.0036468856197927895 - ArtUnc_19: -0.007440900959471428 - ArtUnc_20: 0.030597234662372387 - ArtUnc_21: 0.01992090985890962 - ArtUnc_22: -0.008080984027201216 - ArtUnc_23: -0.002513702610298424 - ArtUnc_24: 0.0004130954196040905 - ArtUnc_25: -0.7665401298664287 - ArtUnc_26: 0.20904621147775262 - ArtUnc_27: 2.4722660721619834 - ArtUnc_28: -0.2963104198978628 - ArtUnc_29: -0.22890452780055967 - ArtUnc_30: 1.0542185366477073 - ArtUnc_31: -0.028303682128787668 - ArtUnc_32: -0.49320836054377415 - ArtUnc_33: -0.1378857262320036 - ArtUnc_34: -0.27841141169946304 - ArtUnc_35: -0.4738975981671955 - ArtUnc_36: -0.17395524785262387 - ArtUnc_37: -0.02944182617674767 - ArtUnc_38: 0.029621854680974245 - ArtUnc_39: 0.0037937596643816225 - ArtUnc_40: 0.0006171169738548413 - ArtUnc_41: 0.07130678915444527 - ArtUnc_42: 0.09783409895430999 - ArtUnc_43: -0.0025186435155468063 - ArtUnc_44: -0.025573406243681544 - ArtUnc_45: 0.03679531486118474 - ArtUnc_46: -0.003224507487493442 - ArtUnc_47: 0.022428942333149793 - ArtUnc_48: 0.0027457022023610472 - ArtUnc_49: -0.013380306228957847 - ArtUnc_50: -0.01680463061811569 - ArtUnc_51: 0.0006300547084760256 - ArtUnc_52: -0.0005791249759598666 - ArtUnc_53: -0.016114514223097707 - ArtUnc_54: 0.005240293819542083 - ArtUnc_55: 0.002967708631284937 - ArtUnc_56: 0.00019026322521595404 - ArtUnc_57: 0.0002804429750602793 - ArtUnc_58: -0.001894443931454924 - ArtUnc_59: 0.0013271820680700766 - ArtUnc_60: 0.00035204867711393067 - ArtUnc_61: -0.0014031938044521107 - ArtUnc_62: 0.000288213901971008 - ArtUnc_63: 0.0005940507007868716 - ArtUnc_64: -8.618144975369645e-05 - ArtUnc_65: 0.0002762138691505921 - ArtUnc_66: 0.0008705951659873383 - ArtUnc_67: -0.0002900155986531886 - ArtUnc_68: -0.001088372977162145 - ArtUnc_69: -0.0005855436480218688 - ArtUnc_70: 3.891221637388164e-05 - ArtUnc_71: -0.00010782019438672507 - ArtUnc_72: 7.085871654984114e-05 - ArtUnc_73: -9.26754934375886e-06 - ArtUnc_74: 1.0338450946933556e-05 - ArtUnc_75: 2.5984669077553655e-06 - ArtUnc_76: -3.7953189242014587e-06 - ArtUnc_77: -6.080111235031745e-06 - ArtUnc_78: -1.145943283772544e-05 - ArtUnc_79: 1.3531736033285865e-05 - ArtUnc_80: 4.785256084644365e-06 - ArtUnc_81: -1.4476474117618153e-06 - ArtUnc_82: 8.717567938832361e-09 - ArtUnc_83: 2.1625432339056964e-06 - ArtUnc_84: 1.4245958021681639e-06 - ArtUnc_85: -1.5918227317219126e-06 - ArtUnc_86: 2.033747431831262e-06 - ArtUnc_87: 1.5086338157833956e-06 - ArtUnc_88: 1.705818229522455e-06 - ArtUnc_89: 1.6382068061899532e-06 - ArtUnc_90: -2.8779633835803196e-07 - ArtUnc_91: 4.3439631693636184e-07 - ArtUnc_92: 6.715287876035183e-08 - ArtUnc_93: -5.728647448855988e-08 - ArtUnc_94: -7.621759654344934e-07 - ArtUnc_95: 4.1672703857164295e-08 - ArtUnc_96: -2.8880854045615154e-07 + RadErr: 4.41700000e-01 + Model_1: 2.23538374e+00 + Model_2: 2.23538374e+00 + ModelRW_1: 2.01229155e+00 + ModelRW_2: 2.01229155e+00 + JES_1: 1.69271557e+00 + JES_2: 1.69271557e+00 + ArtUnc_1: -9.96519601e-04 + ArtUnc_2: -4.90763710e-02 + ArtUnc_3: -4.75649705e-02 + ArtUnc_4: -1.37567000e-02 + ArtUnc_5: 1.34056422e-03 + ArtUnc_6: -3.86675371e-04 + ArtUnc_7: -1.27601058e-04 + ArtUnc_8: 3.17318884e-01 + ArtUnc_9: 1.15927557e-03 + ArtUnc_10: -4.50417218e-01 + ArtUnc_11: -2.13733737e-01 + ArtUnc_12: 7.39098438e-02 + ArtUnc_13: 1.53234630e-01 + ArtUnc_14: 1.67251450e-02 + ArtUnc_15: 6.15410965e-02 + ArtUnc_16: 1.28018009e-03 + ArtUnc_17: -1.01975139e-02 + ArtUnc_18: -3.64688562e-03 + ArtUnc_19: -7.44090096e-03 + ArtUnc_20: 3.05972347e-02 + ArtUnc_21: 1.99209099e-02 + ArtUnc_22: -8.08098403e-03 + ArtUnc_23: -2.51370261e-03 + ArtUnc_24: 4.13095420e-04 + ArtUnc_25: -7.66540130e-01 + ArtUnc_26: 2.09046211e-01 + ArtUnc_27: 2.47226607e+00 + ArtUnc_28: -2.96310420e-01 + ArtUnc_29: -2.28904528e-01 + ArtUnc_30: 1.05421854e+00 + ArtUnc_31: -2.83036821e-02 + ArtUnc_32: -4.93208361e-01 + ArtUnc_33: -1.37885726e-01 + ArtUnc_34: -2.78411412e-01 + ArtUnc_35: -4.73897598e-01 + ArtUnc_36: -1.73955248e-01 + ArtUnc_37: -2.94418262e-02 + ArtUnc_38: 2.96218547e-02 + ArtUnc_39: 3.79375966e-03 + ArtUnc_40: 6.17116974e-04 + ArtUnc_41: 7.13067892e-02 + ArtUnc_42: 9.78340990e-02 + ArtUnc_43: -2.51864352e-03 + ArtUnc_44: -2.55734062e-02 + ArtUnc_45: 3.67953149e-02 + ArtUnc_46: -3.22450749e-03 + ArtUnc_47: 2.24289423e-02 + ArtUnc_48: 2.74570220e-03 + ArtUnc_49: -1.33803062e-02 + ArtUnc_50: -1.68046306e-02 + ArtUnc_51: 6.30054708e-04 + ArtUnc_52: -5.79124976e-04 + ArtUnc_53: -1.61145142e-02 + ArtUnc_54: 5.24029382e-03 + ArtUnc_55: 2.96770863e-03 + ArtUnc_56: 1.90263225e-04 + ArtUnc_57: 2.80442975e-04 + ArtUnc_58: -1.89444393e-03 + ArtUnc_59: 1.32718207e-03 + ArtUnc_60: 3.52048677e-04 + ArtUnc_61: -1.40319380e-03 + ArtUnc_62: 2.88213902e-04 + ArtUnc_63: 5.94050701e-04 + ArtUnc_64: -8.61814498e-05 + ArtUnc_65: 2.76213869e-04 + ArtUnc_66: 8.70595166e-04 + ArtUnc_67: -2.90015599e-04 + ArtUnc_68: -1.08837298e-03 + ArtUnc_69: -5.85543648e-04 + ArtUnc_70: 3.89122164e-05 + ArtUnc_71: -1.07820194e-04 + ArtUnc_72: 7.08587165e-05 + ArtUnc_73: -9.26754934e-06 + ArtUnc_74: 1.03384509e-05 + ArtUnc_75: 2.59846691e-06 + ArtUnc_76: -3.79531892e-06 + ArtUnc_77: -6.08011124e-06 + ArtUnc_78: -1.14594328e-05 + ArtUnc_79: 1.35317360e-05 + ArtUnc_80: 4.78525608e-06 + ArtUnc_81: -1.44764741e-06 + ArtUnc_82: 8.71756794e-09 + ArtUnc_83: 2.16254323e-06 + ArtUnc_84: 1.42459580e-06 + ArtUnc_85: -1.59182273e-06 + ArtUnc_86: 2.03374743e-06 + ArtUnc_87: 1.50863382e-06 + ArtUnc_88: 1.70581823e-06 + ArtUnc_89: 1.63820681e-06 + ArtUnc_90: -2.87796338e-07 + ArtUnc_91: 4.34396317e-07 + ArtUnc_92: 6.71528788e-08 + ArtUnc_93: -5.72864745e-08 + ArtUnc_94: -7.62175965e-07 + ArtUnc_95: 4.16727039e-08 + ArtUnc_96: -2.88808540e-07 - stat: 0 Uncorr: 0.105 - RCES: 0.15236943591153704 - ElEn: 0.04701315640328779 - ElTh: 0.051639828378878254 + RCES: 1.52369436e-01 + ElEn: 4.70131564e-02 + ElTh: 5.16398284e-02 Lumi: 0.2625 LArN: 0.0525 - StatMC: 0.21420000000000003 - RadErr: 0.07035000000000001 - Model_1: 0.29549992385785817 - Model_2: 0.29549992385785817 - ModelRW_1: 0.3511845828762989 - ModelRW_2: 0.3511845828762989 - JES_1: 0.36323474847541776 - JES_2: 0.36323474847541776 - ArtUnc_1: 0.00048222324563112264 - ArtUnc_2: -0.0004548193660647549 - ArtUnc_3: -0.000286514996135342 - ArtUnc_4: -5.045932370756765e-06 - ArtUnc_5: -6.963204243240928e-05 - ArtUnc_6: -3.525407986559304e-05 - ArtUnc_7: -7.335364812501672e-07 - ArtUnc_8: 0.011353917117131688 - ArtUnc_9: 4.218063182166823e-05 - ArtUnc_10: -0.015707934389066265 - ArtUnc_11: -0.009803885316949498 - ArtUnc_12: 0.0021536993705559898 - ArtUnc_13: 0.007532844337655942 - ArtUnc_14: 0.0021950944042568683 - ArtUnc_15: 0.006046097250410134 - ArtUnc_16: -0.0023116927991033214 - ArtUnc_17: 0.0017171120266754247 - ArtUnc_18: -0.0010288977453566045 - ArtUnc_19: 0.00011311504002460291 - ArtUnc_20: 0.0005321726757171317 - ArtUnc_21: 0.00031996106432853085 - ArtUnc_22: -9.235564886922412e-05 - ArtUnc_23: -4.181140486276274e-05 - ArtUnc_24: 1.90347021989865e-05 - ArtUnc_25: -0.020487758169369312 - ArtUnc_26: 0.011574866257633931 - ArtUnc_27: 0.08912912698772603 - ArtUnc_28: -0.008665626267010482 - ArtUnc_29: -0.006635338253216263 - ArtUnc_30: 0.027945876812184477 - ArtUnc_31: -0.0009772297497179653 - ArtUnc_32: -0.010216142199216087 - ArtUnc_33: -0.002845330035767449 - ArtUnc_34: -0.005570333273645624 - ArtUnc_35: -0.009662654568296104 - ArtUnc_36: -0.004528737722651677 - ArtUnc_37: -0.0012038460339396265 - ArtUnc_38: 0.0018731277432525726 - ArtUnc_39: 0.0008503564209471586 - ArtUnc_40: 0.00013844562202529199 - ArtUnc_41: 0.6638495686437801 - ArtUnc_42: -0.5706914172500034 - ArtUnc_43: -0.37756148387400784 - ArtUnc_44: -0.03501730818425852 - ArtUnc_45: -0.22079268371283536 - ArtUnc_46: -0.1555648662556946 - ArtUnc_47: 0.03878286742300583 - ArtUnc_48: -0.17923666489526285 - ArtUnc_49: 0.05428378152839977 - ArtUnc_50: 0.1324244338946672 - ArtUnc_51: -0.003416335306031974 - ArtUnc_52: 0.007711552695186313 - ArtUnc_53: 0.13148541911448347 - ArtUnc_54: -0.04808237290860438 - ArtUnc_55: -0.03475140647080258 - ArtUnc_56: 0.003634129374122391 - ArtUnc_57: -0.008015429032455383 - ArtUnc_58: 0.042966783029020544 - ArtUnc_59: -0.021593356391989723 - ArtUnc_60: -0.005088828565798671 - ArtUnc_61: 0.024094100946153038 - ArtUnc_62: -0.006406534115997293 - ArtUnc_63: -0.009260583805346423 - ArtUnc_64: -0.0007324592001938286 - ArtUnc_65: -0.0023102409510445 - ArtUnc_66: -0.011795995784537529 - ArtUnc_67: 0.003798810760947751 - ArtUnc_68: 0.014005992450295192 - ArtUnc_69: 0.0072733152673920285 - ArtUnc_70: -0.0004229394256654641 - ArtUnc_71: 0.0014663376725319356 - ArtUnc_72: -0.0009929230225179458 - ArtUnc_73: 0.00011844704664039685 - ArtUnc_74: -0.00023022953652054892 - ArtUnc_75: -5.280533255611597e-05 - ArtUnc_76: 5.8320312563038125e-05 - ArtUnc_77: 0.00013664656253665832 - ArtUnc_78: 0.00022585533316878535 - ArtUnc_79: -0.0003222283740101118 - ArtUnc_80: -8.560658591625873e-05 - ArtUnc_81: 2.7635731751347974e-05 - ArtUnc_82: -1.4471079941616133e-07 - ArtUnc_83: -4.8492427455588045e-05 - ArtUnc_84: -2.7385198275194944e-05 - ArtUnc_85: 3.691156820800699e-05 - ArtUnc_86: -4.585635645987649e-05 - ArtUnc_87: -3.282889882737541e-05 - ArtUnc_88: -3.2808291692027684e-05 - ArtUnc_89: -5.063474698032896e-05 - ArtUnc_90: 5.940492185626315e-06 - ArtUnc_91: -9.96937532891693e-06 - ArtUnc_92: -1.5861418317524066e-06 - ArtUnc_93: 1.394519710889056e-05 - ArtUnc_94: 1.976061848848542e-05 - ArtUnc_95: 5.415803724684479e-06 - ArtUnc_96: 8.099606377266068e-06 + StatMC: 2.14200000e-01 + RadErr: 7.03500000e-02 + Model_1: 2.95499924e-01 + Model_2: 2.95499924e-01 + ModelRW_1: 3.51184583e-01 + ModelRW_2: 3.51184583e-01 + JES_1: 3.63234748e-01 + JES_2: 3.63234748e-01 + ArtUnc_1: 4.82223246e-04 + ArtUnc_2: -4.54819366e-04 + ArtUnc_3: -2.86514996e-04 + ArtUnc_4: -5.04593237e-06 + ArtUnc_5: -6.96320424e-05 + ArtUnc_6: -3.52540799e-05 + ArtUnc_7: -7.33536481e-07 + ArtUnc_8: 1.13539171e-02 + ArtUnc_9: 4.21806318e-05 + ArtUnc_10: -1.57079344e-02 + ArtUnc_11: -9.80388532e-03 + ArtUnc_12: 2.15369937e-03 + ArtUnc_13: 7.53284434e-03 + ArtUnc_14: 2.19509440e-03 + ArtUnc_15: 6.04609725e-03 + ArtUnc_16: -2.31169280e-03 + ArtUnc_17: 1.71711203e-03 + ArtUnc_18: -1.02889775e-03 + ArtUnc_19: 1.13115040e-04 + ArtUnc_20: 5.32172676e-04 + ArtUnc_21: 3.19961064e-04 + ArtUnc_22: -9.23556489e-05 + ArtUnc_23: -4.18114049e-05 + ArtUnc_24: 1.90347022e-05 + ArtUnc_25: -2.04877582e-02 + ArtUnc_26: 1.15748663e-02 + ArtUnc_27: 8.91291270e-02 + ArtUnc_28: -8.66562627e-03 + ArtUnc_29: -6.63533825e-03 + ArtUnc_30: 2.79458768e-02 + ArtUnc_31: -9.77229750e-04 + ArtUnc_32: -1.02161422e-02 + ArtUnc_33: -2.84533004e-03 + ArtUnc_34: -5.57033327e-03 + ArtUnc_35: -9.66265457e-03 + ArtUnc_36: -4.52873772e-03 + ArtUnc_37: -1.20384603e-03 + ArtUnc_38: 1.87312774e-03 + ArtUnc_39: 8.50356421e-04 + ArtUnc_40: 1.38445622e-04 + ArtUnc_41: 6.63849569e-01 + ArtUnc_42: -5.70691417e-01 + ArtUnc_43: -3.77561484e-01 + ArtUnc_44: -3.50173082e-02 + ArtUnc_45: -2.20792684e-01 + ArtUnc_46: -1.55564866e-01 + ArtUnc_47: 3.87828674e-02 + ArtUnc_48: -1.79236665e-01 + ArtUnc_49: 5.42837815e-02 + ArtUnc_50: 1.32424434e-01 + ArtUnc_51: -3.41633531e-03 + ArtUnc_52: 7.71155270e-03 + ArtUnc_53: 1.31485419e-01 + ArtUnc_54: -4.80823729e-02 + ArtUnc_55: -3.47514065e-02 + ArtUnc_56: 3.63412937e-03 + ArtUnc_57: -8.01542903e-03 + ArtUnc_58: 4.29667830e-02 + ArtUnc_59: -2.15933564e-02 + ArtUnc_60: -5.08882857e-03 + ArtUnc_61: 2.40941009e-02 + ArtUnc_62: -6.40653412e-03 + ArtUnc_63: -9.26058381e-03 + ArtUnc_64: -7.32459200e-04 + ArtUnc_65: -2.31024095e-03 + ArtUnc_66: -1.17959958e-02 + ArtUnc_67: 3.79881076e-03 + ArtUnc_68: 1.40059925e-02 + ArtUnc_69: 7.27331527e-03 + ArtUnc_70: -4.22939426e-04 + ArtUnc_71: 1.46633767e-03 + ArtUnc_72: -9.92923023e-04 + ArtUnc_73: 1.18447047e-04 + ArtUnc_74: -2.30229537e-04 + ArtUnc_75: -5.28053326e-05 + ArtUnc_76: 5.83203126e-05 + ArtUnc_77: 1.36646563e-04 + ArtUnc_78: 2.25855333e-04 + ArtUnc_79: -3.22228374e-04 + ArtUnc_80: -8.56065859e-05 + ArtUnc_81: 2.76357318e-05 + ArtUnc_82: -1.44710799e-07 + ArtUnc_83: -4.84924275e-05 + ArtUnc_84: -2.73851983e-05 + ArtUnc_85: 3.69115682e-05 + ArtUnc_86: -4.58563565e-05 + ArtUnc_87: -3.28288988e-05 + ArtUnc_88: -3.28082917e-05 + ArtUnc_89: -5.06347470e-05 + ArtUnc_90: 5.94049219e-06 + ArtUnc_91: -9.96937533e-06 + ArtUnc_92: -1.58614183e-06 + ArtUnc_93: 1.39451971e-05 + ArtUnc_94: 1.97606185e-05 + ArtUnc_95: 5.41580372e-06 + ArtUnc_96: 8.09960638e-06 - stat: 0 Uncorr: 0.0181 - RCES: 0.027783794786709757 - ElEn: 0.02860301142799478 - ElTh: 0.011414127507172855 - Lumi: 0.045250000000000005 + RCES: 2.77837948e-02 + ElEn: 2.86030114e-02 + ElTh: 1.14141275e-02 + Lumi: 4.52500000e-02 LArN: 0.00905 StatMC: 0.086699 RadErr: 0.032037 - Model_1: 0.05720988834546 - Model_2: 0.05720988834546 - ModelRW_1: 0.05145050361269556 - ModelRW_2: 0.05145050361269556 - JES_1: 0.08495137673619538 - JES_2: 0.08495137673619538 - ArtUnc_1: 8.284240535459942e-05 - ArtUnc_2: -7.143652520747553e-05 - ArtUnc_3: -4.2939106416322474e-05 - ArtUnc_4: 9.189147705604213e-07 - ArtUnc_5: -1.168392477351611e-05 - ArtUnc_6: -5.437220127116407e-06 - ArtUnc_7: -3.186788680124188e-07 - ArtUnc_8: 0.0017507675790445158 - ArtUnc_9: 6.3208949947927375e-06 - ArtUnc_10: -0.0023152786563023693 - ArtUnc_11: -0.001512260185718958 - ArtUnc_12: 0.0002867266414185476 - ArtUnc_13: 0.0011707137810086823 - ArtUnc_14: 0.00037400319118526687 - ArtUnc_15: 0.0010149982650403862 - ArtUnc_16: -0.0004244565163130159 - ArtUnc_17: 0.00034015178709396565 - ArtUnc_18: -0.000192932820089954 - ArtUnc_19: 4.354511051629244e-05 - ArtUnc_20: 3.082354649563666e-05 - ArtUnc_21: 1.7465997797400437e-06 - ArtUnc_22: 1.2057399180159132e-05 - ArtUnc_23: 4.491744744461753e-06 - ArtUnc_24: 9.79744710611963e-07 - ArtUnc_25: 0.000207381057035519 - ArtUnc_26: -0.0004230761354287319 - ArtUnc_27: -0.0031937538950595834 - ArtUnc_28: 0.0002789218703015377 - ArtUnc_29: 0.0003826943616382765 - ArtUnc_30: -0.0021125763707275347 - ArtUnc_31: 4.634065252060755e-05 - ArtUnc_32: 0.0012541085350820632 - ArtUnc_33: 0.0003780885952905535 - ArtUnc_34: 0.0008401347196628806 - ArtUnc_35: 0.0014372357214196374 - ArtUnc_36: 0.0005759556505313191 - ArtUnc_37: 9.800053871621878e-05 - ArtUnc_38: -0.0001049586563108525 - ArtUnc_39: -1.4606526390462278e-05 - ArtUnc_40: -3.996192469797755e-06 - ArtUnc_41: 0.011750948973270116 - ArtUnc_42: -0.015575601828048118 - ArtUnc_43: -0.004189188127765207 - ArtUnc_44: 0.0011989486168144544 - ArtUnc_45: -0.002337986903522328 - ArtUnc_46: 0.00015453013196292003 - ArtUnc_47: -0.0005559318681489714 - ArtUnc_48: 2.7101397601735106e-05 - ArtUnc_49: -0.00020626001420911725 - ArtUnc_50: -5.820870463632121e-05 - ArtUnc_51: -1.6662171501764027e-05 - ArtUnc_52: 2.5544439689513627e-05 - ArtUnc_53: -0.00014939065649154743 - ArtUnc_54: -9.672127646801581e-05 - ArtUnc_55: -1.1098661883805367e-05 - ArtUnc_56: 1.7388712030098158e-05 - ArtUnc_57: -0.11990698671213583 - ArtUnc_58: 0.1630472526295877 - ArtUnc_59: 0.23306723240397223 - ArtUnc_60: 0.08346872670813442 - ArtUnc_61: -0.05613004221263735 - ArtUnc_62: -0.0518004490850811 - ArtUnc_63: 0.030589435370586383 - ArtUnc_64: -0.08155023196137762 - ArtUnc_65: 0.07903336729866912 - ArtUnc_66: 0.04530305726093659 - ArtUnc_67: -0.013349390116759653 - ArtUnc_68: -0.0264080500996915 - ArtUnc_69: -0.012559102862259136 - ArtUnc_70: 0.0011507880480598309 - ArtUnc_71: -0.00039464089688755454 - ArtUnc_72: 0.0015003052226943954 - ArtUnc_73: -0.01664476478326977 - ArtUnc_74: 0.017515386373661138 - ArtUnc_75: 0.0022558265607425716 - ArtUnc_76: 0.00046133251513093 - ArtUnc_77: -0.0034936131326428277 - ArtUnc_78: -0.0026908293071845365 - ArtUnc_79: 0.006560964965245572 - ArtUnc_80: 0.0009448181700934723 - ArtUnc_81: -0.00044521757762517754 - ArtUnc_82: 9.185677018507984e-08 - ArtUnc_83: -0.00011809609694401655 - ArtUnc_84: 0.0005436643903216629 - ArtUnc_85: 6.648844060157769e-05 - ArtUnc_86: 4.8256104908536475e-05 - ArtUnc_87: 7.071954635315663e-05 - ArtUnc_88: 0.00035533421302064275 - ArtUnc_89: 0.00101065159677701 - ArtUnc_90: -0.00013932834585073713 - ArtUnc_91: 2.375834640852458e-05 - ArtUnc_92: 3.920061732908886e-06 - ArtUnc_93: -4.664789298303528e-05 - ArtUnc_94: -0.0005146245491329366 - ArtUnc_95: -0.00012595303709050904 - ArtUnc_96: 1.3968545028191379e-06 + Model_1: 5.72098883e-02 + Model_2: 5.72098883e-02 + ModelRW_1: 5.14505036e-02 + ModelRW_2: 5.14505036e-02 + JES_1: 8.49513767e-02 + JES_2: 8.49513767e-02 + ArtUnc_1: 8.28424054e-05 + ArtUnc_2: -7.14365252e-05 + ArtUnc_3: -4.29391064e-05 + ArtUnc_4: 9.18914771e-07 + ArtUnc_5: -1.16839248e-05 + ArtUnc_6: -5.43722013e-06 + ArtUnc_7: -3.18678868e-07 + ArtUnc_8: 1.75076758e-03 + ArtUnc_9: 6.32089499e-06 + ArtUnc_10: -2.31527866e-03 + ArtUnc_11: -1.51226019e-03 + ArtUnc_12: 2.86726641e-04 + ArtUnc_13: 1.17071378e-03 + ArtUnc_14: 3.74003191e-04 + ArtUnc_15: 1.01499827e-03 + ArtUnc_16: -4.24456516e-04 + ArtUnc_17: 3.40151787e-04 + ArtUnc_18: -1.92932820e-04 + ArtUnc_19: 4.35451105e-05 + ArtUnc_20: 3.08235465e-05 + ArtUnc_21: 1.74659978e-06 + ArtUnc_22: 1.20573992e-05 + ArtUnc_23: 4.49174474e-06 + ArtUnc_24: 9.79744711e-07 + ArtUnc_25: 2.07381057e-04 + ArtUnc_26: -4.23076135e-04 + ArtUnc_27: -3.19375390e-03 + ArtUnc_28: 2.78921870e-04 + ArtUnc_29: 3.82694362e-04 + ArtUnc_30: -2.11257637e-03 + ArtUnc_31: 4.63406525e-05 + ArtUnc_32: 1.25410854e-03 + ArtUnc_33: 3.78088595e-04 + ArtUnc_34: 8.40134720e-04 + ArtUnc_35: 1.43723572e-03 + ArtUnc_36: 5.75955651e-04 + ArtUnc_37: 9.80005387e-05 + ArtUnc_38: -1.04958656e-04 + ArtUnc_39: -1.46065264e-05 + ArtUnc_40: -3.99619247e-06 + ArtUnc_41: 1.17509490e-02 + ArtUnc_42: -1.55756018e-02 + ArtUnc_43: -4.18918813e-03 + ArtUnc_44: 1.19894862e-03 + ArtUnc_45: -2.33798690e-03 + ArtUnc_46: 1.54530132e-04 + ArtUnc_47: -5.55931868e-04 + ArtUnc_48: 2.71013976e-05 + ArtUnc_49: -2.06260014e-04 + ArtUnc_50: -5.82087046e-05 + ArtUnc_51: -1.66621715e-05 + ArtUnc_52: 2.55444397e-05 + ArtUnc_53: -1.49390656e-04 + ArtUnc_54: -9.67212765e-05 + ArtUnc_55: -1.10986619e-05 + ArtUnc_56: 1.73887120e-05 + ArtUnc_57: -1.19906987e-01 + ArtUnc_58: 1.63047253e-01 + ArtUnc_59: 2.33067232e-01 + ArtUnc_60: 8.34687267e-02 + ArtUnc_61: -5.61300422e-02 + ArtUnc_62: -5.18004491e-02 + ArtUnc_63: 3.05894354e-02 + ArtUnc_64: -8.15502320e-02 + ArtUnc_65: 7.90333673e-02 + ArtUnc_66: 4.53030573e-02 + ArtUnc_67: -1.33493901e-02 + ArtUnc_68: -2.64080501e-02 + ArtUnc_69: -1.25591029e-02 + ArtUnc_70: 1.15078805e-03 + ArtUnc_71: -3.94640897e-04 + ArtUnc_72: 1.50030522e-03 + ArtUnc_73: -1.66447648e-02 + ArtUnc_74: 1.75153864e-02 + ArtUnc_75: 2.25582656e-03 + ArtUnc_76: 4.61332515e-04 + ArtUnc_77: -3.49361313e-03 + ArtUnc_78: -2.69082931e-03 + ArtUnc_79: 6.56096497e-03 + ArtUnc_80: 9.44818170e-04 + ArtUnc_81: -4.45217578e-04 + ArtUnc_82: 9.18567702e-08 + ArtUnc_83: -1.18096097e-04 + ArtUnc_84: 5.43664390e-04 + ArtUnc_85: 6.64884406e-05 + ArtUnc_86: 4.82561049e-05 + ArtUnc_87: 7.07195464e-05 + ArtUnc_88: 3.55334213e-04 + ArtUnc_89: 1.01065160e-03 + ArtUnc_90: -1.39328346e-04 + ArtUnc_91: 2.37583464e-05 + ArtUnc_92: 3.92006173e-06 + ArtUnc_93: -4.66478930e-05 + ArtUnc_94: -5.14624549e-04 + ArtUnc_95: -1.25953037e-04 + ArtUnc_96: 1.39685450e-06 - stat: 0 Uncorr: 0.00406 - RCES: 0.002407669003413883 - ElEn: 0.008795219521990342 - ElTh: 0.004880282127090607 - Lumi: 0.010150000000000001 + RCES: 2.40766900e-03 + ElEn: 8.79521952e-03 + ElTh: 4.88028213e-03 + Lumi: 1.01500000e-02 LArN: 0.00203 StatMC: 0.034307 - RadErr: 0.0252938 - Model_1: 0.02543576229013001 - Model_2: 0.02543576229013001 - ModelRW_1: 0.019521804014998204 - ModelRW_2: 0.019521804014998204 - JES_1: 0.010139316577560838 - JES_2: 0.010139316577560838 - ArtUnc_1: -8.737694534121229e-10 - ArtUnc_2: 1.6464594064326736e-09 - ArtUnc_3: 1.5950511990295304e-09 - ArtUnc_4: 1.3040974115525698e-10 - ArtUnc_5: 5.508080194611627e-10 - ArtUnc_6: 3.7671139816293967e-10 - ArtUnc_7: 1.2766550907783893e-11 - ArtUnc_8: -1.8318554335628124e-07 - ArtUnc_9: -7.598415241707395e-10 - ArtUnc_10: 3.172515480713788e-07 - ArtUnc_11: 2.644748786934402e-07 - ArtUnc_12: -5.490758663839249e-08 - ArtUnc_13: -2.718473923425416e-07 - ArtUnc_14: -9.213717981691248e-08 - ArtUnc_15: -2.724363299357123e-07 - ArtUnc_16: 1.2069090292989235e-07 - ArtUnc_17: -9.887766630843156e-08 - ArtUnc_18: 6.492169166509936e-08 - ArtUnc_19: -1.0089425732864725e-08 - ArtUnc_20: -3.7827776916724463e-08 - ArtUnc_21: -2.494253881503824e-08 - ArtUnc_22: 7.18207777277124e-09 - ArtUnc_23: 4.737266987816121e-09 - ArtUnc_24: -2.6786010019964452e-09 - ArtUnc_25: 2.9575991000873583e-06 - ArtUnc_26: -2.4109347240891293e-06 - ArtUnc_27: -1.958960032609601e-05 - ArtUnc_28: 2.1605117264882275e-06 - ArtUnc_29: 1.866721069826176e-06 - ArtUnc_30: -8.22057669927223e-06 - ArtUnc_31: 3.1484995192426904e-07 - ArtUnc_32: 3.566962795179308e-06 - ArtUnc_33: 9.910532595307408e-07 - ArtUnc_34: 2.229321892986007e-06 - ArtUnc_35: 3.9884951668698356e-06 - ArtUnc_36: 2.166989013651135e-06 - ArtUnc_37: 6.645354509858519e-07 - ArtUnc_38: -1.137071138773637e-06 - ArtUnc_39: -6.259626810669443e-07 - ArtUnc_40: -1.139598981579064e-07 - ArtUnc_41: -0.0011137227426165804 - ArtUnc_42: 0.001141607145327739 - ArtUnc_43: 0.0008346508307614627 - ArtUnc_44: 8.601943478581479e-05 - ArtUnc_45: 0.0005798205279119543 - ArtUnc_46: 0.0004383472277824721 - ArtUnc_47: -0.00012074281722239596 - ArtUnc_48: 0.000552874931580836 - ArtUnc_49: -0.00017207676192544896 - ArtUnc_50: -0.0004507527380131608 - ArtUnc_51: 2.508999491499608e-05 - ArtUnc_52: -4.8123543900225626e-05 - ArtUnc_53: -0.0004876302466361276 - ArtUnc_54: 0.00018684558503821334 - ArtUnc_55: 0.00015388762592659022 - ArtUnc_56: -1.8186981887229775e-05 - ArtUnc_57: -0.004004969220651377 - ArtUnc_58: 0.003607266408108926 - ArtUnc_59: 0.004505974454370048 - ArtUnc_60: 0.001345496970059587 - ArtUnc_61: -0.0008187221344207724 - ArtUnc_62: -0.0003112304944000799 - ArtUnc_63: 0.0002862908683742685 - ArtUnc_64: -0.0003152481406459922 - ArtUnc_65: 0.0003683638836481357 - ArtUnc_66: 0.0002982348981041299 - ArtUnc_67: -0.0001502387558411166 - ArtUnc_68: -0.0006147404317045237 - ArtUnc_69: -0.0005233603568172246 - ArtUnc_70: 0.00019697460472897514 - ArtUnc_71: -8.244916610588482e-05 - ArtUnc_72: 0.00014985939363457848 - ArtUnc_73: 0.0038048183334672874 - ArtUnc_74: -0.0007028573295874387 - ArtUnc_75: 0.0011840866023422926 - ArtUnc_76: 0.02835348160110081 - ArtUnc_77: -0.005216149143439307 - ArtUnc_78: 0.06222596545671097 - ArtUnc_79: 0.015037693794521264 - ArtUnc_80: -0.026302069053068946 - ArtUnc_81: 0.01476780276571734 - ArtUnc_82: -1.1729779388745412e-06 - ArtUnc_83: -0.006403768686471221 - ArtUnc_84: -0.017996315182303557 - ArtUnc_85: 0.004758655675668427 - ArtUnc_86: -0.005074421813299028 - ArtUnc_87: -0.002829751264937561 - ArtUnc_88: -0.04337537829452347 - ArtUnc_89: -0.029379583624767714 - ArtUnc_90: 0.007388117062249002 - ArtUnc_91: -0.0007635967238545224 - ArtUnc_92: -0.00010334804503274076 - ArtUnc_93: -0.030648055619916178 - ArtUnc_94: 0.01331203105244284 - ArtUnc_95: 0.0008653673756013533 - ArtUnc_96: 0.001045600489105698 + RadErr: 2.52938000e-02 + Model_1: 2.54357623e-02 + Model_2: 2.54357623e-02 + ModelRW_1: 1.95218040e-02 + ModelRW_2: 1.95218040e-02 + JES_1: 1.01393166e-02 + JES_2: 1.01393166e-02 + ArtUnc_1: -8.73769453e-10 + ArtUnc_2: 1.64645941e-09 + ArtUnc_3: 1.59505120e-09 + ArtUnc_4: 1.30409741e-10 + ArtUnc_5: 5.50808019e-10 + ArtUnc_6: 3.76711398e-10 + ArtUnc_7: 1.27665509e-11 + ArtUnc_8: -1.83185543e-07 + ArtUnc_9: -7.59841524e-10 + ArtUnc_10: 3.17251548e-07 + ArtUnc_11: 2.64474879e-07 + ArtUnc_12: -5.49075866e-08 + ArtUnc_13: -2.71847392e-07 + ArtUnc_14: -9.21371798e-08 + ArtUnc_15: -2.72436330e-07 + ArtUnc_16: 1.20690903e-07 + ArtUnc_17: -9.88776663e-08 + ArtUnc_18: 6.49216917e-08 + ArtUnc_19: -1.00894257e-08 + ArtUnc_20: -3.78277769e-08 + ArtUnc_21: -2.49425388e-08 + ArtUnc_22: 7.18207777e-09 + ArtUnc_23: 4.73726699e-09 + ArtUnc_24: -2.67860100e-09 + ArtUnc_25: 2.95759910e-06 + ArtUnc_26: -2.41093472e-06 + ArtUnc_27: -1.95896003e-05 + ArtUnc_28: 2.16051173e-06 + ArtUnc_29: 1.86672107e-06 + ArtUnc_30: -8.22057670e-06 + ArtUnc_31: 3.14849952e-07 + ArtUnc_32: 3.56696280e-06 + ArtUnc_33: 9.91053260e-07 + ArtUnc_34: 2.22932189e-06 + ArtUnc_35: 3.98849517e-06 + ArtUnc_36: 2.16698901e-06 + ArtUnc_37: 6.64535451e-07 + ArtUnc_38: -1.13707114e-06 + ArtUnc_39: -6.25962681e-07 + ArtUnc_40: -1.13959898e-07 + ArtUnc_41: -1.11372274e-03 + ArtUnc_42: 1.14160715e-03 + ArtUnc_43: 8.34650831e-04 + ArtUnc_44: 8.60194348e-05 + ArtUnc_45: 5.79820528e-04 + ArtUnc_46: 4.38347228e-04 + ArtUnc_47: -1.20742817e-04 + ArtUnc_48: 5.52874932e-04 + ArtUnc_49: -1.72076762e-04 + ArtUnc_50: -4.50752738e-04 + ArtUnc_51: 2.50899949e-05 + ArtUnc_52: -4.81235439e-05 + ArtUnc_53: -4.87630247e-04 + ArtUnc_54: 1.86845585e-04 + ArtUnc_55: 1.53887626e-04 + ArtUnc_56: -1.81869819e-05 + ArtUnc_57: -4.00496922e-03 + ArtUnc_58: 3.60726641e-03 + ArtUnc_59: 4.50597445e-03 + ArtUnc_60: 1.34549697e-03 + ArtUnc_61: -8.18722134e-04 + ArtUnc_62: -3.11230494e-04 + ArtUnc_63: 2.86290868e-04 + ArtUnc_64: -3.15248141e-04 + ArtUnc_65: 3.68363884e-04 + ArtUnc_66: 2.98234898e-04 + ArtUnc_67: -1.50238756e-04 + ArtUnc_68: -6.14740432e-04 + ArtUnc_69: -5.23360357e-04 + ArtUnc_70: 1.96974605e-04 + ArtUnc_71: -8.24491661e-05 + ArtUnc_72: 1.49859394e-04 + ArtUnc_73: 3.80481833e-03 + ArtUnc_74: -7.02857330e-04 + ArtUnc_75: 1.18408660e-03 + ArtUnc_76: 2.83534816e-02 + ArtUnc_77: -5.21614914e-03 + ArtUnc_78: 6.22259655e-02 + ArtUnc_79: 1.50376938e-02 + ArtUnc_80: -2.63020691e-02 + ArtUnc_81: 1.47678028e-02 + ArtUnc_82: -1.17297794e-06 + ArtUnc_83: -6.40376869e-03 + ArtUnc_84: -1.79963152e-02 + ArtUnc_85: 4.75865568e-03 + ArtUnc_86: -5.07442181e-03 + ArtUnc_87: -2.82975126e-03 + ArtUnc_88: -4.33753783e-02 + ArtUnc_89: -2.93795836e-02 + ArtUnc_90: 7.38811706e-03 + ArtUnc_91: -7.63596724e-04 + ArtUnc_92: -1.03348045e-04 + ArtUnc_93: -3.06480556e-02 + ArtUnc_94: 1.33120311e-02 + ArtUnc_95: 8.65367376e-04 + ArtUnc_96: 1.04560049e-03 - stat: 0 Uncorr: 5.36 - RCES: 16.606747101103213 - ElEn: 2.452016933057356 - ElTh: 0.5106085780713051 + RCES: 1.66067471e+01 + ElEn: 2.45201693e+00 + ElTh: 5.10608578e-01 Lumi: 13.4 LArN: 2.68 StatMC: 5.4672 RadErr: 1.34 - Model_1: 0.22740554082959366 - Model_2: 0.22740554082959366 - ModelRW_1: 17.889235878594704 - ModelRW_2: 17.889235878594704 - JES_1: 3.3130263627082717 - JES_2: 3.3130263627082717 - ArtUnc_1: 28.534619481303825 - ArtUnc_2: -7.123863967078508 - ArtUnc_3: -2.7181265551317226 - ArtUnc_4: -0.3899284876102117 - ArtUnc_5: -0.00670746378074466 - ArtUnc_6: -0.008283999205217387 - ArtUnc_7: 0.0007567391512459143 - ArtUnc_8: -0.27855882289615036 - ArtUnc_9: -0.0015553697559445726 - ArtUnc_10: 0.6841040029689246 - ArtUnc_11: 0.2703982613331601 - ArtUnc_12: -0.02577120581018809 - ArtUnc_13: -0.20196510734929263 - ArtUnc_14: -0.061245749383712446 - ArtUnc_15: -0.1373398814060955 - ArtUnc_16: 0.05559250646001657 - ArtUnc_17: -0.03891494291030187 - ArtUnc_18: 0.022439546494828832 - ArtUnc_19: -0.004613609699705583 - ArtUnc_20: -0.005955233470981109 - ArtUnc_21: -0.000919797110477925 - ArtUnc_22: -0.0015613108826127554 - ArtUnc_23: -0.0005657803910752896 - ArtUnc_24: -0.00013845948901258673 - ArtUnc_25: 0.0015884893142738003 - ArtUnc_26: 0.0027998731918240935 - ArtUnc_27: 0.012058199532830109 - ArtUnc_28: 0.0010435302393417168 - ArtUnc_29: -0.0008423840084407331 - ArtUnc_30: 0.006854685756505784 - ArtUnc_31: 0.0006563809746296008 - ArtUnc_32: -0.003397722806987923 - ArtUnc_33: -0.0013550843877417945 - ArtUnc_34: -0.0018974214458767377 - ArtUnc_35: -0.0033135972302497743 - ArtUnc_36: -0.0011026071913299487 - ArtUnc_37: -0.00021120981280549925 - ArtUnc_38: 0.0001611175014340478 - ArtUnc_39: 7.780354641441171e-06 - ArtUnc_40: -1.0949039928915957e-05 - ArtUnc_41: 0.0008162451372233949 - ArtUnc_42: 0.0006595543728718163 - ArtUnc_43: -0.0001920179570449045 - ArtUnc_44: -0.00029239045544503836 - ArtUnc_45: 0.00029228857947158284 - ArtUnc_46: -0.00014950580404518931 - ArtUnc_47: 0.0003446552927101274 - ArtUnc_48: -0.00011551717262218647 - ArtUnc_49: -0.00017085330905257303 - ArtUnc_50: -0.00013644698293498577 - ArtUnc_51: 9.219831701846136e-06 - ArtUnc_52: -1.4905544371813783e-05 - ArtUnc_53: -0.00014030870040233003 - ArtUnc_54: 2.172973149282271e-05 - ArtUnc_55: 2.5524966768608532e-05 - ArtUnc_56: 1.1225502356583022e-05 - ArtUnc_57: -4.691504492441422e-06 - ArtUnc_58: 7.6197052616898715e-06 - ArtUnc_59: 9.825460992185863e-06 - ArtUnc_60: 3.627685529542029e-06 - ArtUnc_61: -2.392677403828778e-06 - ArtUnc_62: -2.617544550091262e-06 - ArtUnc_63: 1.7619189417090515e-06 - ArtUnc_64: -4.0927753178519035e-06 - ArtUnc_65: 4.0074756663388155e-06 - ArtUnc_66: 2.9159524324259093e-06 - ArtUnc_67: -1.0830813048008015e-06 - ArtUnc_68: -3.5965235536997996e-06 - ArtUnc_69: -2.322886166859595e-06 - ArtUnc_70: 2.5743213044265925e-07 - ArtUnc_71: -1.5613343610499397e-07 - ArtUnc_72: 6.637580118037731e-08 - ArtUnc_73: -6.870695206562281e-07 - ArtUnc_74: 8.574271135636011e-07 - ArtUnc_75: 1.1569485846268291e-07 - ArtUnc_76: -6.437296749786422e-08 - ArtUnc_77: -1.837073110006341e-07 - ArtUnc_78: -2.4335993445393687e-07 - ArtUnc_79: 3.0163122457542233e-07 - ArtUnc_80: -1.0246606463765234e-07 - ArtUnc_81: 3.8856419054493195e-08 - ArtUnc_82: -3.6760400909888214e-11 - ArtUnc_83: 1.978891082722819e-08 - ArtUnc_84: -3.067811729035556e-08 - ArtUnc_85: -1.2655550615766943e-08 - ArtUnc_86: -6.924432285300878e-09 - ArtUnc_87: -1.4939796498290833e-08 - ArtUnc_88: 3.768689079174396e-08 - ArtUnc_89: 3.359132245658672e-08 - ArtUnc_90: 1.590444265428233e-08 - ArtUnc_91: -5.957595733315514e-09 - ArtUnc_92: -1.0576092301003206e-09 - ArtUnc_93: 1.3221074939131718e-08 - ArtUnc_94: -5.2314837785566986e-09 - ArtUnc_95: -6.979669883933357e-09 - ArtUnc_96: 1.543753446103767e-10 + Model_1: 2.27405541e-01 + Model_2: 2.27405541e-01 + ModelRW_1: 1.78892359e+01 + ModelRW_2: 1.78892359e+01 + JES_1: 3.31302636e+00 + JES_2: 3.31302636e+00 + ArtUnc_1: 2.85346195e+01 + ArtUnc_2: -7.12386397e+00 + ArtUnc_3: -2.71812656e+00 + ArtUnc_4: -3.89928488e-01 + ArtUnc_5: -6.70746378e-03 + ArtUnc_6: -8.28399921e-03 + ArtUnc_7: 7.56739151e-04 + ArtUnc_8: -2.78558823e-01 + ArtUnc_9: -1.55536976e-03 + ArtUnc_10: 6.84104003e-01 + ArtUnc_11: 2.70398261e-01 + ArtUnc_12: -2.57712058e-02 + ArtUnc_13: -2.01965107e-01 + ArtUnc_14: -6.12457494e-02 + ArtUnc_15: -1.37339881e-01 + ArtUnc_16: 5.55925065e-02 + ArtUnc_17: -3.89149429e-02 + ArtUnc_18: 2.24395465e-02 + ArtUnc_19: -4.61360970e-03 + ArtUnc_20: -5.95523347e-03 + ArtUnc_21: -9.19797110e-04 + ArtUnc_22: -1.56131088e-03 + ArtUnc_23: -5.65780391e-04 + ArtUnc_24: -1.38459489e-04 + ArtUnc_25: 1.58848931e-03 + ArtUnc_26: 2.79987319e-03 + ArtUnc_27: 1.20581995e-02 + ArtUnc_28: 1.04353024e-03 + ArtUnc_29: -8.42384008e-04 + ArtUnc_30: 6.85468576e-03 + ArtUnc_31: 6.56380975e-04 + ArtUnc_32: -3.39772281e-03 + ArtUnc_33: -1.35508439e-03 + ArtUnc_34: -1.89742145e-03 + ArtUnc_35: -3.31359723e-03 + ArtUnc_36: -1.10260719e-03 + ArtUnc_37: -2.11209813e-04 + ArtUnc_38: 1.61117501e-04 + ArtUnc_39: 7.78035464e-06 + ArtUnc_40: -1.09490399e-05 + ArtUnc_41: 8.16245137e-04 + ArtUnc_42: 6.59554373e-04 + ArtUnc_43: -1.92017957e-04 + ArtUnc_44: -2.92390455e-04 + ArtUnc_45: 2.92288579e-04 + ArtUnc_46: -1.49505804e-04 + ArtUnc_47: 3.44655293e-04 + ArtUnc_48: -1.15517173e-04 + ArtUnc_49: -1.70853309e-04 + ArtUnc_50: -1.36446983e-04 + ArtUnc_51: 9.21983170e-06 + ArtUnc_52: -1.49055444e-05 + ArtUnc_53: -1.40308700e-04 + ArtUnc_54: 2.17297315e-05 + ArtUnc_55: 2.55249668e-05 + ArtUnc_56: 1.12255024e-05 + ArtUnc_57: -4.69150449e-06 + ArtUnc_58: 7.61970526e-06 + ArtUnc_59: 9.82546099e-06 + ArtUnc_60: 3.62768553e-06 + ArtUnc_61: -2.39267740e-06 + ArtUnc_62: -2.61754455e-06 + ArtUnc_63: 1.76191894e-06 + ArtUnc_64: -4.09277532e-06 + ArtUnc_65: 4.00747567e-06 + ArtUnc_66: 2.91595243e-06 + ArtUnc_67: -1.08308130e-06 + ArtUnc_68: -3.59652355e-06 + ArtUnc_69: -2.32288617e-06 + ArtUnc_70: 2.57432130e-07 + ArtUnc_71: -1.56133436e-07 + ArtUnc_72: 6.63758012e-08 + ArtUnc_73: -6.87069521e-07 + ArtUnc_74: 8.57427114e-07 + ArtUnc_75: 1.15694858e-07 + ArtUnc_76: -6.43729675e-08 + ArtUnc_77: -1.83707311e-07 + ArtUnc_78: -2.43359934e-07 + ArtUnc_79: 3.01631225e-07 + ArtUnc_80: -1.02466065e-07 + ArtUnc_81: 3.88564191e-08 + ArtUnc_82: -3.67604009e-11 + ArtUnc_83: 1.97889108e-08 + ArtUnc_84: -3.06781173e-08 + ArtUnc_85: -1.26555506e-08 + ArtUnc_86: -6.92443229e-09 + ArtUnc_87: -1.49397965e-08 + ArtUnc_88: 3.76868908e-08 + ArtUnc_89: 3.35913225e-08 + ArtUnc_90: 1.59044427e-08 + ArtUnc_91: -5.95759573e-09 + ArtUnc_92: -1.05760923e-09 + ArtUnc_93: 1.32210749e-08 + ArtUnc_94: -5.23148378e-09 + ArtUnc_95: -6.97966988e-09 + ArtUnc_96: 1.54375345e-10 - stat: 0 Uncorr: 2.43 - RCES: 6.880462504803002 - ElEn: 0.8438785102134075 - ElTh: 0.5781153345137975 + RCES: 6.88046250e+00 + ElEn: 8.43878510e-01 + ElTh: 5.78115335e-01 Lumi: 6.075 LArN: 1.215 StatMC: 1.9926 RadErr: 0.3159 - Model_1: 3.0757023661271257 - Model_2: 3.0757023661271257 - ModelRW_1: 0.3436538956566621 - ModelRW_2: 0.3436538956566621 - JES_1: 10.55154576495785 - JES_2: 10.55154576495785 - ArtUnc_1: 2.2970761331390066 - ArtUnc_2: -1.0892033898037916 - ArtUnc_3: -0.4626643792894114 - ArtUnc_4: 0.0034597266768986723 - ArtUnc_5: -0.07024799880322546 - ArtUnc_6: -0.025635496777499604 - ArtUnc_7: -0.0011811538975831683 - ArtUnc_8: 5.698072050451249 - ArtUnc_9: 0.01838660928832924 - ArtUnc_10: -6.02475607507018 - ArtUnc_11: -2.9660838975572674 - ArtUnc_12: 0.509042374153124 - ArtUnc_13: 1.8418379289105533 - ArtUnc_14: 0.5185384503576153 - ArtUnc_15: 1.3053603129533584 - ArtUnc_16: -0.48075482695253724 - ArtUnc_17: 0.3546020620221246 - ArtUnc_18: -0.19000896413705118 - ArtUnc_19: 0.03448455438106577 - ArtUnc_20: 0.0334777718193411 - ArtUnc_21: 0.00667766552088803 - ArtUnc_22: 0.005573150621444783 - ArtUnc_23: 0.0016140948748548712 - ArtUnc_24: 0.000568273667308521 - ArtUnc_25: -0.13949268880938007 - ArtUnc_26: -0.07352578045564359 - ArtUnc_27: -0.1808656512600164 - ArtUnc_28: -0.021260206797389925 - ArtUnc_29: 0.00997221831462979 - ArtUnc_30: -0.09065927398924134 - ArtUnc_31: -0.0006883162712905388 - ArtUnc_32: 0.04229196904252959 - ArtUnc_33: 0.01621967581405243 - ArtUnc_34: 0.027143903368802316 - ArtUnc_35: 0.04350407896178598 - ArtUnc_36: 0.016514706658114008 - ArtUnc_37: 0.0024434123447177863 - ArtUnc_38: -0.002971403779176569 - ArtUnc_39: -0.0007310172834329555 - ArtUnc_40: -0.00021136252877450334 - ArtUnc_41: -0.007160870664322624 - ArtUnc_42: -0.005876951781650189 - ArtUnc_43: 0.0017314514208508819 - ArtUnc_44: 0.002553951127823745 - ArtUnc_45: -0.0025656232271245513 - ArtUnc_46: 0.0011881545478558493 - ArtUnc_47: -0.002804030604187082 - ArtUnc_48: 0.0008879580966485295 - ArtUnc_49: 0.001369146410883418 - ArtUnc_50: 0.0011494198540057063 - ArtUnc_51: -9.055078135816814e-05 - ArtUnc_52: 7.294074042155794e-05 - ArtUnc_53: 0.001181951523907321 - ArtUnc_54: -0.00025362312439836495 - ArtUnc_55: -0.00018472562965263104 - ArtUnc_56: -8.739836558783833e-05 - ArtUnc_57: 4.885657431811609e-05 - ArtUnc_58: -5.51390303127279e-05 - ArtUnc_59: -0.00013839594374450153 - ArtUnc_60: -4.877085515415337e-05 - ArtUnc_61: 4.22707537278272e-05 - ArtUnc_62: 2.8700177521542225e-05 - ArtUnc_63: -2.3803806686567963e-05 - ArtUnc_64: 5.132418586798827e-05 - ArtUnc_65: -5.261628114177895e-05 - ArtUnc_66: -3.88344980812236e-05 - ArtUnc_67: 1.3491744321721498e-05 - ArtUnc_68: 3.7428430802205095e-05 - ArtUnc_69: 2.0431367214919684e-05 - ArtUnc_70: -6.037085275244034e-07 - ArtUnc_71: 7.380420140613976e-07 - ArtUnc_72: -1.1211342621343135e-06 - ArtUnc_73: 7.325768443241816e-06 - ArtUnc_74: -8.916791594335334e-06 - ArtUnc_75: -1.162861834698842e-06 - ArtUnc_76: 6.250625946348806e-07 - ArtUnc_77: 1.82006350343776e-06 - ArtUnc_78: 2.525337070075889e-06 - ArtUnc_79: -3.227347634136641e-06 - ArtUnc_80: 9.159003097231551e-07 - ArtUnc_81: -3.4720463522110955e-07 - ArtUnc_82: 8.063925823509818e-10 - ArtUnc_83: -2.002810595725168e-07 - ArtUnc_84: 2.5676589471883596e-07 - ArtUnc_85: 1.2916345002614888e-07 - ArtUnc_86: 5.406845147989175e-08 - ArtUnc_87: 1.3886480880961782e-07 - ArtUnc_88: -4.220408273270315e-07 - ArtUnc_89: -3.5825707537558045e-07 - ArtUnc_90: -1.3673297886087641e-07 - ArtUnc_91: 5.3828040959303416e-08 - ArtUnc_92: 9.722202506314322e-09 - ArtUnc_93: -1.2730479200691123e-07 - ArtUnc_94: 5.895056924848404e-08 - ArtUnc_95: 3.96949352117729e-08 - ArtUnc_96: 4.001083540114452e-09 + Model_1: 3.07570237e+00 + Model_2: 3.07570237e+00 + ModelRW_1: 3.43653896e-01 + ModelRW_2: 3.43653896e-01 + JES_1: 1.05515458e+01 + JES_2: 1.05515458e+01 + ArtUnc_1: 2.29707613e+00 + ArtUnc_2: -1.08920339e+00 + ArtUnc_3: -4.62664379e-01 + ArtUnc_4: 3.45972668e-03 + ArtUnc_5: -7.02479988e-02 + ArtUnc_6: -2.56354968e-02 + ArtUnc_7: -1.18115390e-03 + ArtUnc_8: 5.69807205e+00 + ArtUnc_9: 1.83866093e-02 + ArtUnc_10: -6.02475608e+00 + ArtUnc_11: -2.96608390e+00 + ArtUnc_12: 5.09042374e-01 + ArtUnc_13: 1.84183793e+00 + ArtUnc_14: 5.18538450e-01 + ArtUnc_15: 1.30536031e+00 + ArtUnc_16: -4.80754827e-01 + ArtUnc_17: 3.54602062e-01 + ArtUnc_18: -1.90008964e-01 + ArtUnc_19: 3.44845544e-02 + ArtUnc_20: 3.34777718e-02 + ArtUnc_21: 6.67766552e-03 + ArtUnc_22: 5.57315062e-03 + ArtUnc_23: 1.61409487e-03 + ArtUnc_24: 5.68273667e-04 + ArtUnc_25: -1.39492689e-01 + ArtUnc_26: -7.35257805e-02 + ArtUnc_27: -1.80865651e-01 + ArtUnc_28: -2.12602068e-02 + ArtUnc_29: 9.97221831e-03 + ArtUnc_30: -9.06592740e-02 + ArtUnc_31: -6.88316271e-04 + ArtUnc_32: 4.22919690e-02 + ArtUnc_33: 1.62196758e-02 + ArtUnc_34: 2.71439034e-02 + ArtUnc_35: 4.35040790e-02 + ArtUnc_36: 1.65147067e-02 + ArtUnc_37: 2.44341234e-03 + ArtUnc_38: -2.97140378e-03 + ArtUnc_39: -7.31017283e-04 + ArtUnc_40: -2.11362529e-04 + ArtUnc_41: -7.16087066e-03 + ArtUnc_42: -5.87695178e-03 + ArtUnc_43: 1.73145142e-03 + ArtUnc_44: 2.55395113e-03 + ArtUnc_45: -2.56562323e-03 + ArtUnc_46: 1.18815455e-03 + ArtUnc_47: -2.80403060e-03 + ArtUnc_48: 8.87958097e-04 + ArtUnc_49: 1.36914641e-03 + ArtUnc_50: 1.14941985e-03 + ArtUnc_51: -9.05507814e-05 + ArtUnc_52: 7.29407404e-05 + ArtUnc_53: 1.18195152e-03 + ArtUnc_54: -2.53623124e-04 + ArtUnc_55: -1.84725630e-04 + ArtUnc_56: -8.73983656e-05 + ArtUnc_57: 4.88565743e-05 + ArtUnc_58: -5.51390303e-05 + ArtUnc_59: -1.38395944e-04 + ArtUnc_60: -4.87708552e-05 + ArtUnc_61: 4.22707537e-05 + ArtUnc_62: 2.87001775e-05 + ArtUnc_63: -2.38038067e-05 + ArtUnc_64: 5.13241859e-05 + ArtUnc_65: -5.26162811e-05 + ArtUnc_66: -3.88344981e-05 + ArtUnc_67: 1.34917443e-05 + ArtUnc_68: 3.74284308e-05 + ArtUnc_69: 2.04313672e-05 + ArtUnc_70: -6.03708528e-07 + ArtUnc_71: 7.38042014e-07 + ArtUnc_72: -1.12113426e-06 + ArtUnc_73: 7.32576844e-06 + ArtUnc_74: -8.91679159e-06 + ArtUnc_75: -1.16286183e-06 + ArtUnc_76: 6.25062595e-07 + ArtUnc_77: 1.82006350e-06 + ArtUnc_78: 2.52533707e-06 + ArtUnc_79: -3.22734763e-06 + ArtUnc_80: 9.15900310e-07 + ArtUnc_81: -3.47204635e-07 + ArtUnc_82: 8.06392582e-10 + ArtUnc_83: -2.00281060e-07 + ArtUnc_84: 2.56765895e-07 + ArtUnc_85: 1.29163450e-07 + ArtUnc_86: 5.40684515e-08 + ArtUnc_87: 1.38864809e-07 + ArtUnc_88: -4.22040827e-07 + ArtUnc_89: -3.58257075e-07 + ArtUnc_90: -1.36732979e-07 + ArtUnc_91: 5.38280410e-08 + ArtUnc_92: 9.72220251e-09 + ArtUnc_93: -1.27304792e-07 + ArtUnc_94: 5.89505692e-08 + ArtUnc_95: 3.96949352e-08 + ArtUnc_96: 4.00108354e-09 - stat: 0 - Uncorr: 0.6559999999999999 - RCES: 0.3805224114293401 - ElEn: 0.14431999999999998 - ElTh: 0.2172489373967109 - Lumi: 1.6400000000000001 - LArN: 0.32799999999999996 + Uncorr: 6.56000000e-01 + RCES: 3.80522411e-01 + ElEn: 1.44320000e-01 + ElTh: 2.17248937e-01 + Lumi: 1.64000000e+00 + LArN: 3.28000000e-01 StatMC: 0.55104 - RadErr: 0.23615999999999995 - Model_1: 1.5121902779743026 - Model_2: 1.5121902779743026 - ModelRW_1: 1.7070123383268203 - ModelRW_2: 1.7070123383268203 - JES_1: 1.7675563633446034 - JES_2: 1.7675563633446034 - ArtUnc_1: -0.0009965196005386923 - ArtUnc_2: -0.04907637101446047 - ArtUnc_3: -0.04756497054746269 - ArtUnc_4: -0.013756699974385526 - ArtUnc_5: 0.0013405642217313753 - ArtUnc_6: -0.0003866753706473783 - ArtUnc_7: -0.00012760105812504135 - ArtUnc_8: 0.3173188838021138 - ArtUnc_9: 0.0011592755697388047 - ArtUnc_10: -0.45041721817330066 - ArtUnc_11: -0.2137337371651879 - ArtUnc_12: 0.07390984381923797 - ArtUnc_13: 0.15323462967136156 - ArtUnc_14: 0.016725144962614295 - ArtUnc_15: 0.06154109650884441 - ArtUnc_16: 0.0012801800918984287 - ArtUnc_17: -0.010197513896344924 - ArtUnc_18: -0.0036468856197927895 - ArtUnc_19: -0.007440900959471428 - ArtUnc_20: 0.030597234662372387 - ArtUnc_21: 0.01992090985890962 - ArtUnc_22: -0.008080984027201216 - ArtUnc_23: -0.002513702610298424 - ArtUnc_24: 0.0004130954196040905 - ArtUnc_25: -0.7665401298664287 - ArtUnc_26: 0.20904621147775262 - ArtUnc_27: 2.4722660721619834 - ArtUnc_28: -0.2963104198978628 - ArtUnc_29: -0.22890452780055967 - ArtUnc_30: 1.0542185366477073 - ArtUnc_31: -0.028303682128787668 - ArtUnc_32: -0.49320836054377415 - ArtUnc_33: -0.1378857262320036 - ArtUnc_34: -0.27841141169946304 - ArtUnc_35: -0.4738975981671955 - ArtUnc_36: -0.17395524785262387 - ArtUnc_37: -0.02944182617674767 - ArtUnc_38: 0.029621854680974245 - ArtUnc_39: 0.0037937596643816225 - ArtUnc_40: 0.0006171169738548413 - ArtUnc_41: 0.07130678915444527 - ArtUnc_42: 0.09783409895430999 - ArtUnc_43: -0.0025186435155468063 - ArtUnc_44: -0.025573406243681544 - ArtUnc_45: 0.03679531486118474 - ArtUnc_46: -0.003224507487493442 - ArtUnc_47: 0.022428942333149793 - ArtUnc_48: 0.0027457022023610472 - ArtUnc_49: -0.013380306228957847 - ArtUnc_50: -0.01680463061811569 - ArtUnc_51: 0.0006300547084760256 - ArtUnc_52: -0.0005791249759598666 - ArtUnc_53: -0.016114514223097707 - ArtUnc_54: 0.005240293819542083 - ArtUnc_55: 0.002967708631284937 - ArtUnc_56: 0.00019026322521595404 - ArtUnc_57: 0.0002804429750602793 - ArtUnc_58: -0.001894443931454924 - ArtUnc_59: 0.0013271820680700766 - ArtUnc_60: 0.00035204867711393067 - ArtUnc_61: -0.0014031938044521107 - ArtUnc_62: 0.000288213901971008 - ArtUnc_63: 0.0005940507007868716 - ArtUnc_64: -8.618144975369645e-05 - ArtUnc_65: 0.0002762138691505921 - ArtUnc_66: 0.0008705951659873383 - ArtUnc_67: -0.0002900155986531886 - ArtUnc_68: -0.001088372977162145 - ArtUnc_69: -0.0005855436480218688 - ArtUnc_70: 3.891221637388164e-05 - ArtUnc_71: -0.00010782019438672507 - ArtUnc_72: 7.085871654984114e-05 - ArtUnc_73: -9.26754934375886e-06 - ArtUnc_74: 1.0338450946933556e-05 - ArtUnc_75: 2.5984669077553655e-06 - ArtUnc_76: -3.7953189242014587e-06 - ArtUnc_77: -6.080111235031745e-06 - ArtUnc_78: -1.145943283772544e-05 - ArtUnc_79: 1.3531736033285865e-05 - ArtUnc_80: 4.785256084644365e-06 - ArtUnc_81: -1.4476474117618153e-06 - ArtUnc_82: 8.717567938832361e-09 - ArtUnc_83: 2.1625432339056964e-06 - ArtUnc_84: 1.4245958021681639e-06 - ArtUnc_85: -1.5918227317219126e-06 - ArtUnc_86: 2.033747431831262e-06 - ArtUnc_87: 1.5086338157833956e-06 - ArtUnc_88: 1.705818229522455e-06 - ArtUnc_89: 1.6382068061899532e-06 - ArtUnc_90: -2.8779633835803196e-07 - ArtUnc_91: 4.3439631693636184e-07 - ArtUnc_92: 6.715287876035183e-08 - ArtUnc_93: -5.728647448855988e-08 - ArtUnc_94: -7.621759654344934e-07 - ArtUnc_95: 4.1672703857164295e-08 - ArtUnc_96: -2.8880854045615154e-07 + RadErr: 2.36160000e-01 + Model_1: 1.51219028e+00 + Model_2: 1.51219028e+00 + ModelRW_1: 1.70701234e+00 + ModelRW_2: 1.70701234e+00 + JES_1: 1.76755636e+00 + JES_2: 1.76755636e+00 + ArtUnc_1: -9.96519601e-04 + ArtUnc_2: -4.90763710e-02 + ArtUnc_3: -4.75649705e-02 + ArtUnc_4: -1.37567000e-02 + ArtUnc_5: 1.34056422e-03 + ArtUnc_6: -3.86675371e-04 + ArtUnc_7: -1.27601058e-04 + ArtUnc_8: 3.17318884e-01 + ArtUnc_9: 1.15927557e-03 + ArtUnc_10: -4.50417218e-01 + ArtUnc_11: -2.13733737e-01 + ArtUnc_12: 7.39098438e-02 + ArtUnc_13: 1.53234630e-01 + ArtUnc_14: 1.67251450e-02 + ArtUnc_15: 6.15410965e-02 + ArtUnc_16: 1.28018009e-03 + ArtUnc_17: -1.01975139e-02 + ArtUnc_18: -3.64688562e-03 + ArtUnc_19: -7.44090096e-03 + ArtUnc_20: 3.05972347e-02 + ArtUnc_21: 1.99209099e-02 + ArtUnc_22: -8.08098403e-03 + ArtUnc_23: -2.51370261e-03 + ArtUnc_24: 4.13095420e-04 + ArtUnc_25: -7.66540130e-01 + ArtUnc_26: 2.09046211e-01 + ArtUnc_27: 2.47226607e+00 + ArtUnc_28: -2.96310420e-01 + ArtUnc_29: -2.28904528e-01 + ArtUnc_30: 1.05421854e+00 + ArtUnc_31: -2.83036821e-02 + ArtUnc_32: -4.93208361e-01 + ArtUnc_33: -1.37885726e-01 + ArtUnc_34: -2.78411412e-01 + ArtUnc_35: -4.73897598e-01 + ArtUnc_36: -1.73955248e-01 + ArtUnc_37: -2.94418262e-02 + ArtUnc_38: 2.96218547e-02 + ArtUnc_39: 3.79375966e-03 + ArtUnc_40: 6.17116974e-04 + ArtUnc_41: 7.13067892e-02 + ArtUnc_42: 9.78340990e-02 + ArtUnc_43: -2.51864352e-03 + ArtUnc_44: -2.55734062e-02 + ArtUnc_45: 3.67953149e-02 + ArtUnc_46: -3.22450749e-03 + ArtUnc_47: 2.24289423e-02 + ArtUnc_48: 2.74570220e-03 + ArtUnc_49: -1.33803062e-02 + ArtUnc_50: -1.68046306e-02 + ArtUnc_51: 6.30054708e-04 + ArtUnc_52: -5.79124976e-04 + ArtUnc_53: -1.61145142e-02 + ArtUnc_54: 5.24029382e-03 + ArtUnc_55: 2.96770863e-03 + ArtUnc_56: 1.90263225e-04 + ArtUnc_57: 2.80442975e-04 + ArtUnc_58: -1.89444393e-03 + ArtUnc_59: 1.32718207e-03 + ArtUnc_60: 3.52048677e-04 + ArtUnc_61: -1.40319380e-03 + ArtUnc_62: 2.88213902e-04 + ArtUnc_63: 5.94050701e-04 + ArtUnc_64: -8.61814498e-05 + ArtUnc_65: 2.76213869e-04 + ArtUnc_66: 8.70595166e-04 + ArtUnc_67: -2.90015599e-04 + ArtUnc_68: -1.08837298e-03 + ArtUnc_69: -5.85543648e-04 + ArtUnc_70: 3.89122164e-05 + ArtUnc_71: -1.07820194e-04 + ArtUnc_72: 7.08587165e-05 + ArtUnc_73: -9.26754934e-06 + ArtUnc_74: 1.03384509e-05 + ArtUnc_75: 2.59846691e-06 + ArtUnc_76: -3.79531892e-06 + ArtUnc_77: -6.08011124e-06 + ArtUnc_78: -1.14594328e-05 + ArtUnc_79: 1.35317360e-05 + ArtUnc_80: 4.78525608e-06 + ArtUnc_81: -1.44764741e-06 + ArtUnc_82: 8.71756794e-09 + ArtUnc_83: 2.16254323e-06 + ArtUnc_84: 1.42459580e-06 + ArtUnc_85: -1.59182273e-06 + ArtUnc_86: 2.03374743e-06 + ArtUnc_87: 1.50863382e-06 + ArtUnc_88: 1.70581823e-06 + ArtUnc_89: 1.63820681e-06 + ArtUnc_90: -2.87796338e-07 + ArtUnc_91: 4.34396317e-07 + ArtUnc_92: 6.71528788e-08 + ArtUnc_93: -5.72864745e-08 + ArtUnc_94: -7.62175965e-07 + ArtUnc_95: 4.16727039e-08 + ArtUnc_96: -2.88808540e-07 - stat: 0 Uncorr: 0.129 - RCES: 0.07946598942314882 - ElEn: 0.042452565293513184 - ElTh: 0.035627128357475016 + RCES: 7.94659894e-02 + ElEn: 4.24525653e-02 + ElTh: 3.56271284e-02 Lumi: 0.3225 LArN: 0.0645 - StatMC: 0.20382000000000003 - RadErr: 0.10836000000000001 - Model_1: 0.554597990620233 - Model_2: 0.554597990620233 - ModelRW_1: 0.4898340805313571 - ModelRW_2: 0.4898340805313571 - JES_1: 0.3480643160933048 - JES_2: 0.3480643160933048 - ArtUnc_1: 0.00048222324563112264 - ArtUnc_2: -0.0004548193660647549 - ArtUnc_3: -0.000286514996135342 - ArtUnc_4: -5.045932370756765e-06 - ArtUnc_5: -6.963204243240928e-05 - ArtUnc_6: -3.525407986559304e-05 - ArtUnc_7: -7.335364812501672e-07 - ArtUnc_8: 0.011353917117131688 - ArtUnc_9: 4.218063182166823e-05 - ArtUnc_10: -0.015707934389066265 - ArtUnc_11: -0.009803885316949498 - ArtUnc_12: 0.0021536993705559898 - ArtUnc_13: 0.007532844337655942 - ArtUnc_14: 0.0021950944042568683 - ArtUnc_15: 0.006046097250410134 - ArtUnc_16: -0.0023116927991033214 - ArtUnc_17: 0.0017171120266754247 - ArtUnc_18: -0.0010288977453566045 - ArtUnc_19: 0.00011311504002460291 - ArtUnc_20: 0.0005321726757171317 - ArtUnc_21: 0.00031996106432853085 - ArtUnc_22: -9.235564886922412e-05 - ArtUnc_23: -4.181140486276274e-05 - ArtUnc_24: 1.90347021989865e-05 - ArtUnc_25: -0.020487758169369312 - ArtUnc_26: 0.011574866257633931 - ArtUnc_27: 0.08912912698772603 - ArtUnc_28: -0.008665626267010482 - ArtUnc_29: -0.006635338253216263 - ArtUnc_30: 0.027945876812184477 - ArtUnc_31: -0.0009772297497179653 - ArtUnc_32: -0.010216142199216087 - ArtUnc_33: -0.002845330035767449 - ArtUnc_34: -0.005570333273645624 - ArtUnc_35: -0.009662654568296104 - ArtUnc_36: -0.004528737722651677 - ArtUnc_37: -0.0012038460339396265 - ArtUnc_38: 0.0018731277432525726 - ArtUnc_39: 0.0008503564209471586 - ArtUnc_40: 0.00013844562202529199 - ArtUnc_41: 0.6638495686437801 - ArtUnc_42: -0.5706914172500034 - ArtUnc_43: -0.37756148387400784 - ArtUnc_44: -0.03501730818425852 - ArtUnc_45: -0.22079268371283536 - ArtUnc_46: -0.1555648662556946 - ArtUnc_47: 0.03878286742300583 - ArtUnc_48: -0.17923666489526285 - ArtUnc_49: 0.05428378152839977 - ArtUnc_50: 0.1324244338946672 - ArtUnc_51: -0.003416335306031974 - ArtUnc_52: 0.007711552695186313 - ArtUnc_53: 0.13148541911448347 - ArtUnc_54: -0.04808237290860438 - ArtUnc_55: -0.03475140647080258 - ArtUnc_56: 0.003634129374122391 - ArtUnc_57: -0.008015429032455383 - ArtUnc_58: 0.042966783029020544 - ArtUnc_59: -0.021593356391989723 - ArtUnc_60: -0.005088828565798671 - ArtUnc_61: 0.024094100946153038 - ArtUnc_62: -0.006406534115997293 - ArtUnc_63: -0.009260583805346423 - ArtUnc_64: -0.0007324592001938286 - ArtUnc_65: -0.0023102409510445 - ArtUnc_66: -0.011795995784537529 - ArtUnc_67: 0.003798810760947751 - ArtUnc_68: 0.014005992450295192 - ArtUnc_69: 0.0072733152673920285 - ArtUnc_70: -0.0004229394256654641 - ArtUnc_71: 0.0014663376725319356 - ArtUnc_72: -0.0009929230225179458 - ArtUnc_73: 0.00011844704664039685 - ArtUnc_74: -0.00023022953652054892 - ArtUnc_75: -5.280533255611597e-05 - ArtUnc_76: 5.8320312563038125e-05 - ArtUnc_77: 0.00013664656253665832 - ArtUnc_78: 0.00022585533316878535 - ArtUnc_79: -0.0003222283740101118 - ArtUnc_80: -8.560658591625873e-05 - ArtUnc_81: 2.7635731751347974e-05 - ArtUnc_82: -1.4471079941616133e-07 - ArtUnc_83: -4.8492427455588045e-05 - ArtUnc_84: -2.7385198275194944e-05 - ArtUnc_85: 3.691156820800699e-05 - ArtUnc_86: -4.585635645987649e-05 - ArtUnc_87: -3.282889882737541e-05 - ArtUnc_88: -3.2808291692027684e-05 - ArtUnc_89: -5.063474698032896e-05 - ArtUnc_90: 5.940492185626315e-06 - ArtUnc_91: -9.96937532891693e-06 - ArtUnc_92: -1.5861418317524066e-06 - ArtUnc_93: 1.394519710889056e-05 - ArtUnc_94: 1.976061848848542e-05 - ArtUnc_95: 5.415803724684479e-06 - ArtUnc_96: 8.099606377266068e-06 + StatMC: 2.03820000e-01 + RadErr: 1.08360000e-01 + Model_1: 5.54597991e-01 + Model_2: 5.54597991e-01 + ModelRW_1: 4.89834081e-01 + ModelRW_2: 4.89834081e-01 + JES_1: 3.48064316e-01 + JES_2: 3.48064316e-01 + ArtUnc_1: 4.82223246e-04 + ArtUnc_2: -4.54819366e-04 + ArtUnc_3: -2.86514996e-04 + ArtUnc_4: -5.04593237e-06 + ArtUnc_5: -6.96320424e-05 + ArtUnc_6: -3.52540799e-05 + ArtUnc_7: -7.33536481e-07 + ArtUnc_8: 1.13539171e-02 + ArtUnc_9: 4.21806318e-05 + ArtUnc_10: -1.57079344e-02 + ArtUnc_11: -9.80388532e-03 + ArtUnc_12: 2.15369937e-03 + ArtUnc_13: 7.53284434e-03 + ArtUnc_14: 2.19509440e-03 + ArtUnc_15: 6.04609725e-03 + ArtUnc_16: -2.31169280e-03 + ArtUnc_17: 1.71711203e-03 + ArtUnc_18: -1.02889775e-03 + ArtUnc_19: 1.13115040e-04 + ArtUnc_20: 5.32172676e-04 + ArtUnc_21: 3.19961064e-04 + ArtUnc_22: -9.23556489e-05 + ArtUnc_23: -4.18114049e-05 + ArtUnc_24: 1.90347022e-05 + ArtUnc_25: -2.04877582e-02 + ArtUnc_26: 1.15748663e-02 + ArtUnc_27: 8.91291270e-02 + ArtUnc_28: -8.66562627e-03 + ArtUnc_29: -6.63533825e-03 + ArtUnc_30: 2.79458768e-02 + ArtUnc_31: -9.77229750e-04 + ArtUnc_32: -1.02161422e-02 + ArtUnc_33: -2.84533004e-03 + ArtUnc_34: -5.57033327e-03 + ArtUnc_35: -9.66265457e-03 + ArtUnc_36: -4.52873772e-03 + ArtUnc_37: -1.20384603e-03 + ArtUnc_38: 1.87312774e-03 + ArtUnc_39: 8.50356421e-04 + ArtUnc_40: 1.38445622e-04 + ArtUnc_41: 6.63849569e-01 + ArtUnc_42: -5.70691417e-01 + ArtUnc_43: -3.77561484e-01 + ArtUnc_44: -3.50173082e-02 + ArtUnc_45: -2.20792684e-01 + ArtUnc_46: -1.55564866e-01 + ArtUnc_47: 3.87828674e-02 + ArtUnc_48: -1.79236665e-01 + ArtUnc_49: 5.42837815e-02 + ArtUnc_50: 1.32424434e-01 + ArtUnc_51: -3.41633531e-03 + ArtUnc_52: 7.71155270e-03 + ArtUnc_53: 1.31485419e-01 + ArtUnc_54: -4.80823729e-02 + ArtUnc_55: -3.47514065e-02 + ArtUnc_56: 3.63412937e-03 + ArtUnc_57: -8.01542903e-03 + ArtUnc_58: 4.29667830e-02 + ArtUnc_59: -2.15933564e-02 + ArtUnc_60: -5.08882857e-03 + ArtUnc_61: 2.40941009e-02 + ArtUnc_62: -6.40653412e-03 + ArtUnc_63: -9.26058381e-03 + ArtUnc_64: -7.32459200e-04 + ArtUnc_65: -2.31024095e-03 + ArtUnc_66: -1.17959958e-02 + ArtUnc_67: 3.79881076e-03 + ArtUnc_68: 1.40059925e-02 + ArtUnc_69: 7.27331527e-03 + ArtUnc_70: -4.22939426e-04 + ArtUnc_71: 1.46633767e-03 + ArtUnc_72: -9.92923023e-04 + ArtUnc_73: 1.18447047e-04 + ArtUnc_74: -2.30229537e-04 + ArtUnc_75: -5.28053326e-05 + ArtUnc_76: 5.83203126e-05 + ArtUnc_77: 1.36646563e-04 + ArtUnc_78: 2.25855333e-04 + ArtUnc_79: -3.22228374e-04 + ArtUnc_80: -8.56065859e-05 + ArtUnc_81: 2.76357318e-05 + ArtUnc_82: -1.44710799e-07 + ArtUnc_83: -4.84924275e-05 + ArtUnc_84: -2.73851983e-05 + ArtUnc_85: 3.69115682e-05 + ArtUnc_86: -4.58563565e-05 + ArtUnc_87: -3.28288988e-05 + ArtUnc_88: -3.28082917e-05 + ArtUnc_89: -5.06347470e-05 + ArtUnc_90: 5.94049219e-06 + ArtUnc_91: -9.96937533e-06 + ArtUnc_92: -1.58614183e-06 + ArtUnc_93: 1.39451971e-05 + ArtUnc_94: 1.97606185e-05 + ArtUnc_95: 5.41580372e-06 + ArtUnc_96: 8.09960638e-06 - stat: 0 - Uncorr: 0.015500000000000002 - RCES: 0.01468067671294481 - ElEn: 0.019870250375875993 - ElTh: 0.01569331943853817 + Uncorr: 1.55000000e-02 + RCES: 1.46806767e-02 + ElEn: 1.98702504e-02 + ElTh: 1.56933194e-02 Lumi: 0.03875 - LArN: 0.007750000000000001 + LArN: 7.75000000e-03 StatMC: 0.077965 RadErr: 0.02635 - Model_1: 0.13776914971248097 - Model_2: 0.13776914971248097 - ModelRW_1: 0.021262700910279486 - ModelRW_2: 0.021262700910279486 - JES_1: 0.08213309083052335 - JES_2: 0.08213309083052335 - ArtUnc_1: 8.284240535459942e-05 - ArtUnc_2: -7.143652520747553e-05 - ArtUnc_3: -4.2939106416322474e-05 - ArtUnc_4: 9.189147705604213e-07 - ArtUnc_5: -1.168392477351611e-05 - ArtUnc_6: -5.437220127116407e-06 - ArtUnc_7: -3.186788680124188e-07 - ArtUnc_8: 0.0017507675790445158 - ArtUnc_9: 6.3208949947927375e-06 - ArtUnc_10: -0.0023152786563023693 - ArtUnc_11: -0.001512260185718958 - ArtUnc_12: 0.0002867266414185476 - ArtUnc_13: 0.0011707137810086823 - ArtUnc_14: 0.00037400319118526687 - ArtUnc_15: 0.0010149982650403862 - ArtUnc_16: -0.0004244565163130159 - ArtUnc_17: 0.00034015178709396565 - ArtUnc_18: -0.000192932820089954 - ArtUnc_19: 4.354511051629244e-05 - ArtUnc_20: 3.082354649563666e-05 - ArtUnc_21: 1.7465997797400437e-06 - ArtUnc_22: 1.2057399180159132e-05 - ArtUnc_23: 4.491744744461753e-06 - ArtUnc_24: 9.79744710611963e-07 - ArtUnc_25: 0.000207381057035519 - ArtUnc_26: -0.0004230761354287319 - ArtUnc_27: -0.0031937538950595834 - ArtUnc_28: 0.0002789218703015377 - ArtUnc_29: 0.0003826943616382765 - ArtUnc_30: -0.0021125763707275347 - ArtUnc_31: 4.634065252060755e-05 - ArtUnc_32: 0.0012541085350820632 - ArtUnc_33: 0.0003780885952905535 - ArtUnc_34: 0.0008401347196628806 - ArtUnc_35: 0.0014372357214196374 - ArtUnc_36: 0.0005759556505313191 - ArtUnc_37: 9.800053871621878e-05 - ArtUnc_38: -0.0001049586563108525 - ArtUnc_39: -1.4606526390462278e-05 - ArtUnc_40: -3.996192469797755e-06 - ArtUnc_41: 0.011750948973270116 - ArtUnc_42: -0.015575601828048118 - ArtUnc_43: -0.004189188127765207 - ArtUnc_44: 0.0011989486168144544 - ArtUnc_45: -0.002337986903522328 - ArtUnc_46: 0.00015453013196292003 - ArtUnc_47: -0.0005559318681489714 - ArtUnc_48: 2.7101397601735106e-05 - ArtUnc_49: -0.00020626001420911725 - ArtUnc_50: -5.820870463632121e-05 - ArtUnc_51: -1.6662171501764027e-05 - ArtUnc_52: 2.5544439689513627e-05 - ArtUnc_53: -0.00014939065649154743 - ArtUnc_54: -9.672127646801581e-05 - ArtUnc_55: -1.1098661883805367e-05 - ArtUnc_56: 1.7388712030098158e-05 - ArtUnc_57: -0.11990698671213583 - ArtUnc_58: 0.1630472526295877 - ArtUnc_59: 0.23306723240397223 - ArtUnc_60: 0.08346872670813442 - ArtUnc_61: -0.05613004221263735 - ArtUnc_62: -0.0518004490850811 - ArtUnc_63: 0.030589435370586383 - ArtUnc_64: -0.08155023196137762 - ArtUnc_65: 0.07903336729866912 - ArtUnc_66: 0.04530305726093659 - ArtUnc_67: -0.013349390116759653 - ArtUnc_68: -0.0264080500996915 - ArtUnc_69: -0.012559102862259136 - ArtUnc_70: 0.0011507880480598309 - ArtUnc_71: -0.00039464089688755454 - ArtUnc_72: 0.0015003052226943954 - ArtUnc_73: -0.01664476478326977 - ArtUnc_74: 0.017515386373661138 - ArtUnc_75: 0.0022558265607425716 - ArtUnc_76: 0.00046133251513093 - ArtUnc_77: -0.0034936131326428277 - ArtUnc_78: -0.0026908293071845365 - ArtUnc_79: 0.006560964965245572 - ArtUnc_80: 0.0009448181700934723 - ArtUnc_81: -0.00044521757762517754 - ArtUnc_82: 9.185677018507984e-08 - ArtUnc_83: -0.00011809609694401655 - ArtUnc_84: 0.0005436643903216629 - ArtUnc_85: 6.648844060157769e-05 - ArtUnc_86: 4.8256104908536475e-05 - ArtUnc_87: 7.071954635315663e-05 - ArtUnc_88: 0.00035533421302064275 - ArtUnc_89: 0.00101065159677701 - ArtUnc_90: -0.00013932834585073713 - ArtUnc_91: 2.375834640852458e-05 - ArtUnc_92: 3.920061732908886e-06 - ArtUnc_93: -4.664789298303528e-05 - ArtUnc_94: -0.0005146245491329366 - ArtUnc_95: -0.00012595303709050904 - ArtUnc_96: 1.3968545028191379e-06 + Model_1: 1.37769150e-01 + Model_2: 1.37769150e-01 + ModelRW_1: 2.12627009e-02 + ModelRW_2: 2.12627009e-02 + JES_1: 8.21330908e-02 + JES_2: 8.21330908e-02 + ArtUnc_1: 8.28424054e-05 + ArtUnc_2: -7.14365252e-05 + ArtUnc_3: -4.29391064e-05 + ArtUnc_4: 9.18914771e-07 + ArtUnc_5: -1.16839248e-05 + ArtUnc_6: -5.43722013e-06 + ArtUnc_7: -3.18678868e-07 + ArtUnc_8: 1.75076758e-03 + ArtUnc_9: 6.32089499e-06 + ArtUnc_10: -2.31527866e-03 + ArtUnc_11: -1.51226019e-03 + ArtUnc_12: 2.86726641e-04 + ArtUnc_13: 1.17071378e-03 + ArtUnc_14: 3.74003191e-04 + ArtUnc_15: 1.01499827e-03 + ArtUnc_16: -4.24456516e-04 + ArtUnc_17: 3.40151787e-04 + ArtUnc_18: -1.92932820e-04 + ArtUnc_19: 4.35451105e-05 + ArtUnc_20: 3.08235465e-05 + ArtUnc_21: 1.74659978e-06 + ArtUnc_22: 1.20573992e-05 + ArtUnc_23: 4.49174474e-06 + ArtUnc_24: 9.79744711e-07 + ArtUnc_25: 2.07381057e-04 + ArtUnc_26: -4.23076135e-04 + ArtUnc_27: -3.19375390e-03 + ArtUnc_28: 2.78921870e-04 + ArtUnc_29: 3.82694362e-04 + ArtUnc_30: -2.11257637e-03 + ArtUnc_31: 4.63406525e-05 + ArtUnc_32: 1.25410854e-03 + ArtUnc_33: 3.78088595e-04 + ArtUnc_34: 8.40134720e-04 + ArtUnc_35: 1.43723572e-03 + ArtUnc_36: 5.75955651e-04 + ArtUnc_37: 9.80005387e-05 + ArtUnc_38: -1.04958656e-04 + ArtUnc_39: -1.46065264e-05 + ArtUnc_40: -3.99619247e-06 + ArtUnc_41: 1.17509490e-02 + ArtUnc_42: -1.55756018e-02 + ArtUnc_43: -4.18918813e-03 + ArtUnc_44: 1.19894862e-03 + ArtUnc_45: -2.33798690e-03 + ArtUnc_46: 1.54530132e-04 + ArtUnc_47: -5.55931868e-04 + ArtUnc_48: 2.71013976e-05 + ArtUnc_49: -2.06260014e-04 + ArtUnc_50: -5.82087046e-05 + ArtUnc_51: -1.66621715e-05 + ArtUnc_52: 2.55444397e-05 + ArtUnc_53: -1.49390656e-04 + ArtUnc_54: -9.67212765e-05 + ArtUnc_55: -1.10986619e-05 + ArtUnc_56: 1.73887120e-05 + ArtUnc_57: -1.19906987e-01 + ArtUnc_58: 1.63047253e-01 + ArtUnc_59: 2.33067232e-01 + ArtUnc_60: 8.34687267e-02 + ArtUnc_61: -5.61300422e-02 + ArtUnc_62: -5.18004491e-02 + ArtUnc_63: 3.05894354e-02 + ArtUnc_64: -8.15502320e-02 + ArtUnc_65: 7.90333673e-02 + ArtUnc_66: 4.53030573e-02 + ArtUnc_67: -1.33493901e-02 + ArtUnc_68: -2.64080501e-02 + ArtUnc_69: -1.25591029e-02 + ArtUnc_70: 1.15078805e-03 + ArtUnc_71: -3.94640897e-04 + ArtUnc_72: 1.50030522e-03 + ArtUnc_73: -1.66447648e-02 + ArtUnc_74: 1.75153864e-02 + ArtUnc_75: 2.25582656e-03 + ArtUnc_76: 4.61332515e-04 + ArtUnc_77: -3.49361313e-03 + ArtUnc_78: -2.69082931e-03 + ArtUnc_79: 6.56096497e-03 + ArtUnc_80: 9.44818170e-04 + ArtUnc_81: -4.45217578e-04 + ArtUnc_82: 9.18567702e-08 + ArtUnc_83: -1.18096097e-04 + ArtUnc_84: 5.43664390e-04 + ArtUnc_85: 6.64884406e-05 + ArtUnc_86: 4.82561049e-05 + ArtUnc_87: 7.07195464e-05 + ArtUnc_88: 3.55334213e-04 + ArtUnc_89: 1.01065160e-03 + ArtUnc_90: -1.39328346e-04 + ArtUnc_91: 2.37583464e-05 + ArtUnc_92: 3.92006173e-06 + ArtUnc_93: -4.66478930e-05 + ArtUnc_94: -5.14624549e-04 + ArtUnc_95: -1.25953037e-04 + ArtUnc_96: 1.39685450e-06 - stat: 0 Uncorr: 0.00232 - RCES: 0.013835308863917711 - ElEn: 0.012848836753574233 - ElTh: 0.006265675331518543 - Lumi: 0.0058000000000000005 + RCES: 1.38353089e-02 + ElEn: 1.28488368e-02 + ElTh: 6.26567533e-03 + Lumi: 5.80000000e-03 LArN: 0.00116 - StatMC: 0.05489120000000001 + StatMC: 5.48912000e-02 RadErr: 0.00986 - Model_1: 0.06838373210698578 - Model_2: 0.06838373210698578 - ModelRW_1: 0.06732561653575851 - ModelRW_2: 0.06732561653575851 - JES_1: 0.009568164914966716 - JES_2: 0.009568164914966716 - ArtUnc_1: -8.737694534121229e-10 - ArtUnc_2: 1.6464594064326736e-09 - ArtUnc_3: 1.5950511990295304e-09 - ArtUnc_4: 1.3040974115525698e-10 - ArtUnc_5: 5.508080194611627e-10 - ArtUnc_6: 3.7671139816293967e-10 - ArtUnc_7: 1.2766550907783893e-11 - ArtUnc_8: -1.8318554335628124e-07 - ArtUnc_9: -7.598415241707395e-10 - ArtUnc_10: 3.172515480713788e-07 - ArtUnc_11: 2.644748786934402e-07 - ArtUnc_12: -5.490758663839249e-08 - ArtUnc_13: -2.718473923425416e-07 - ArtUnc_14: -9.213717981691248e-08 - ArtUnc_15: -2.724363299357123e-07 - ArtUnc_16: 1.2069090292989235e-07 - ArtUnc_17: -9.887766630843156e-08 - ArtUnc_18: 6.492169166509936e-08 - ArtUnc_19: -1.0089425732864725e-08 - ArtUnc_20: -3.7827776916724463e-08 - ArtUnc_21: -2.494253881503824e-08 - ArtUnc_22: 7.18207777277124e-09 - ArtUnc_23: 4.737266987816121e-09 - ArtUnc_24: -2.6786010019964452e-09 - ArtUnc_25: 2.9575991000873583e-06 - ArtUnc_26: -2.4109347240891293e-06 - ArtUnc_27: -1.958960032609601e-05 - ArtUnc_28: 2.1605117264882275e-06 - ArtUnc_29: 1.866721069826176e-06 - ArtUnc_30: -8.22057669927223e-06 - ArtUnc_31: 3.1484995192426904e-07 - ArtUnc_32: 3.566962795179308e-06 - ArtUnc_33: 9.910532595307408e-07 - ArtUnc_34: 2.229321892986007e-06 - ArtUnc_35: 3.9884951668698356e-06 - ArtUnc_36: 2.166989013651135e-06 - ArtUnc_37: 6.645354509858519e-07 - ArtUnc_38: -1.137071138773637e-06 - ArtUnc_39: -6.259626810669443e-07 - ArtUnc_40: -1.139598981579064e-07 - ArtUnc_41: -0.0011137227426165804 - ArtUnc_42: 0.001141607145327739 - ArtUnc_43: 0.0008346508307614627 - ArtUnc_44: 8.601943478581479e-05 - ArtUnc_45: 0.0005798205279119543 - ArtUnc_46: 0.0004383472277824721 - ArtUnc_47: -0.00012074281722239596 - ArtUnc_48: 0.000552874931580836 - ArtUnc_49: -0.00017207676192544896 - ArtUnc_50: -0.0004507527380131608 - ArtUnc_51: 2.508999491499608e-05 - ArtUnc_52: -4.8123543900225626e-05 - ArtUnc_53: -0.0004876302466361276 - ArtUnc_54: 0.00018684558503821334 - ArtUnc_55: 0.00015388762592659022 - ArtUnc_56: -1.8186981887229775e-05 - ArtUnc_57: -0.004004969220651377 - ArtUnc_58: 0.003607266408108926 - ArtUnc_59: 0.004505974454370048 - ArtUnc_60: 0.001345496970059587 - ArtUnc_61: -0.0008187221344207724 - ArtUnc_62: -0.0003112304944000799 - ArtUnc_63: 0.0002862908683742685 - ArtUnc_64: -0.0003152481406459922 - ArtUnc_65: 0.0003683638836481357 - ArtUnc_66: 0.0002982348981041299 - ArtUnc_67: -0.0001502387558411166 - ArtUnc_68: -0.0006147404317045237 - ArtUnc_69: -0.0005233603568172246 - ArtUnc_70: 0.00019697460472897514 - ArtUnc_71: -8.244916610588482e-05 - ArtUnc_72: 0.00014985939363457848 - ArtUnc_73: 0.0038048183334672874 - ArtUnc_74: -0.0007028573295874387 - ArtUnc_75: 0.0011840866023422926 - ArtUnc_76: 0.02835348160110081 - ArtUnc_77: -0.005216149143439307 - ArtUnc_78: 0.06222596545671097 - ArtUnc_79: 0.015037693794521264 - ArtUnc_80: -0.026302069053068946 - ArtUnc_81: 0.01476780276571734 - ArtUnc_82: -1.1729779388745412e-06 - ArtUnc_83: -0.006403768686471221 - ArtUnc_84: -0.017996315182303557 - ArtUnc_85: 0.004758655675668427 - ArtUnc_86: -0.005074421813299028 - ArtUnc_87: -0.002829751264937561 - ArtUnc_88: -0.04337537829452347 - ArtUnc_89: -0.029379583624767714 - ArtUnc_90: 0.007388117062249002 - ArtUnc_91: -0.0007635967238545224 - ArtUnc_92: -0.00010334804503274076 - ArtUnc_93: -0.030648055619916178 - ArtUnc_94: 0.01331203105244284 - ArtUnc_95: 0.0008653673756013533 - ArtUnc_96: 0.001045600489105698 + Model_1: 6.83837321e-02 + Model_2: 6.83837321e-02 + ModelRW_1: 6.73256165e-02 + ModelRW_2: 6.73256165e-02 + JES_1: 9.56816491e-03 + JES_2: 9.56816491e-03 + ArtUnc_1: -8.73769453e-10 + ArtUnc_2: 1.64645941e-09 + ArtUnc_3: 1.59505120e-09 + ArtUnc_4: 1.30409741e-10 + ArtUnc_5: 5.50808019e-10 + ArtUnc_6: 3.76711398e-10 + ArtUnc_7: 1.27665509e-11 + ArtUnc_8: -1.83185543e-07 + ArtUnc_9: -7.59841524e-10 + ArtUnc_10: 3.17251548e-07 + ArtUnc_11: 2.64474879e-07 + ArtUnc_12: -5.49075866e-08 + ArtUnc_13: -2.71847392e-07 + ArtUnc_14: -9.21371798e-08 + ArtUnc_15: -2.72436330e-07 + ArtUnc_16: 1.20690903e-07 + ArtUnc_17: -9.88776663e-08 + ArtUnc_18: 6.49216917e-08 + ArtUnc_19: -1.00894257e-08 + ArtUnc_20: -3.78277769e-08 + ArtUnc_21: -2.49425388e-08 + ArtUnc_22: 7.18207777e-09 + ArtUnc_23: 4.73726699e-09 + ArtUnc_24: -2.67860100e-09 + ArtUnc_25: 2.95759910e-06 + ArtUnc_26: -2.41093472e-06 + ArtUnc_27: -1.95896003e-05 + ArtUnc_28: 2.16051173e-06 + ArtUnc_29: 1.86672107e-06 + ArtUnc_30: -8.22057670e-06 + ArtUnc_31: 3.14849952e-07 + ArtUnc_32: 3.56696280e-06 + ArtUnc_33: 9.91053260e-07 + ArtUnc_34: 2.22932189e-06 + ArtUnc_35: 3.98849517e-06 + ArtUnc_36: 2.16698901e-06 + ArtUnc_37: 6.64535451e-07 + ArtUnc_38: -1.13707114e-06 + ArtUnc_39: -6.25962681e-07 + ArtUnc_40: -1.13959898e-07 + ArtUnc_41: -1.11372274e-03 + ArtUnc_42: 1.14160715e-03 + ArtUnc_43: 8.34650831e-04 + ArtUnc_44: 8.60194348e-05 + ArtUnc_45: 5.79820528e-04 + ArtUnc_46: 4.38347228e-04 + ArtUnc_47: -1.20742817e-04 + ArtUnc_48: 5.52874932e-04 + ArtUnc_49: -1.72076762e-04 + ArtUnc_50: -4.50752738e-04 + ArtUnc_51: 2.50899949e-05 + ArtUnc_52: -4.81235439e-05 + ArtUnc_53: -4.87630247e-04 + ArtUnc_54: 1.86845585e-04 + ArtUnc_55: 1.53887626e-04 + ArtUnc_56: -1.81869819e-05 + ArtUnc_57: -4.00496922e-03 + ArtUnc_58: 3.60726641e-03 + ArtUnc_59: 4.50597445e-03 + ArtUnc_60: 1.34549697e-03 + ArtUnc_61: -8.18722134e-04 + ArtUnc_62: -3.11230494e-04 + ArtUnc_63: 2.86290868e-04 + ArtUnc_64: -3.15248141e-04 + ArtUnc_65: 3.68363884e-04 + ArtUnc_66: 2.98234898e-04 + ArtUnc_67: -1.50238756e-04 + ArtUnc_68: -6.14740432e-04 + ArtUnc_69: -5.23360357e-04 + ArtUnc_70: 1.96974605e-04 + ArtUnc_71: -8.24491661e-05 + ArtUnc_72: 1.49859394e-04 + ArtUnc_73: 3.80481833e-03 + ArtUnc_74: -7.02857330e-04 + ArtUnc_75: 1.18408660e-03 + ArtUnc_76: 2.83534816e-02 + ArtUnc_77: -5.21614914e-03 + ArtUnc_78: 6.22259655e-02 + ArtUnc_79: 1.50376938e-02 + ArtUnc_80: -2.63020691e-02 + ArtUnc_81: 1.47678028e-02 + ArtUnc_82: -1.17297794e-06 + ArtUnc_83: -6.40376869e-03 + ArtUnc_84: -1.79963152e-02 + ArtUnc_85: 4.75865568e-03 + ArtUnc_86: -5.07442181e-03 + ArtUnc_87: -2.82975126e-03 + ArtUnc_88: -4.33753783e-02 + ArtUnc_89: -2.93795836e-02 + ArtUnc_90: 7.38811706e-03 + ArtUnc_91: -7.63596724e-04 + ArtUnc_92: -1.03348045e-04 + ArtUnc_93: -3.06480556e-02 + ArtUnc_94: 1.33120311e-02 + ArtUnc_95: 8.65367376e-04 + ArtUnc_96: 1.04560049e-03 - stat: 0 Uncorr: 3.88 - RCES: 14.346388539280541 + RCES: 1.43463885e+01 ElEn: 0.4656 - ElTh: 0.9007952930605269 - Lumi: 9.700000000000001 + ElTh: 9.00795293e-01 + Lumi: 9.70000000e+00 LArN: 1.94 StatMC: 4.5008 RadErr: 1.6684 - Model_1: 2.085116476362891 - Model_2: 2.085116476362891 - ModelRW_1: 0.9053795226312554 - ModelRW_2: 0.9053795226312554 - JES_1: 1.5731952707785513 - JES_2: 1.5731952707785513 - ArtUnc_1: 28.534619481303825 - ArtUnc_2: -7.123863967078508 - ArtUnc_3: -2.7181265551317226 - ArtUnc_4: -0.3899284876102117 - ArtUnc_5: -0.00670746378074466 - ArtUnc_6: -0.008283999205217387 - ArtUnc_7: 0.0007567391512459143 - ArtUnc_8: -0.27855882289615036 - ArtUnc_9: -0.0015553697559445726 - ArtUnc_10: 0.6841040029689246 - ArtUnc_11: 0.2703982613331601 - ArtUnc_12: -0.02577120581018809 - ArtUnc_13: -0.20196510734929263 - ArtUnc_14: -0.061245749383712446 - ArtUnc_15: -0.1373398814060955 - ArtUnc_16: 0.05559250646001657 - ArtUnc_17: -0.03891494291030187 - ArtUnc_18: 0.022439546494828832 - ArtUnc_19: -0.004613609699705583 - ArtUnc_20: -0.005955233470981109 - ArtUnc_21: -0.000919797110477925 - ArtUnc_22: -0.0015613108826127554 - ArtUnc_23: -0.0005657803910752896 - ArtUnc_24: -0.00013845948901258673 - ArtUnc_25: 0.0015884893142738003 - ArtUnc_26: 0.0027998731918240935 - ArtUnc_27: 0.012058199532830109 - ArtUnc_28: 0.0010435302393417168 - ArtUnc_29: -0.0008423840084407331 - ArtUnc_30: 0.006854685756505784 - ArtUnc_31: 0.0006563809746296008 - ArtUnc_32: -0.003397722806987923 - ArtUnc_33: -0.0013550843877417945 - ArtUnc_34: -0.0018974214458767377 - ArtUnc_35: -0.0033135972302497743 - ArtUnc_36: -0.0011026071913299487 - ArtUnc_37: -0.00021120981280549925 - ArtUnc_38: 0.0001611175014340478 - ArtUnc_39: 7.780354641441171e-06 - ArtUnc_40: -1.0949039928915957e-05 - ArtUnc_41: 0.0008162451372233949 - ArtUnc_42: 0.0006595543728718163 - ArtUnc_43: -0.0001920179570449045 - ArtUnc_44: -0.00029239045544503836 - ArtUnc_45: 0.00029228857947158284 - ArtUnc_46: -0.00014950580404518931 - ArtUnc_47: 0.0003446552927101274 - ArtUnc_48: -0.00011551717262218647 - ArtUnc_49: -0.00017085330905257303 - ArtUnc_50: -0.00013644698293498577 - ArtUnc_51: 9.219831701846136e-06 - ArtUnc_52: -1.4905544371813783e-05 - ArtUnc_53: -0.00014030870040233003 - ArtUnc_54: 2.172973149282271e-05 - ArtUnc_55: 2.5524966768608532e-05 - ArtUnc_56: 1.1225502356583022e-05 - ArtUnc_57: -4.691504492441422e-06 - ArtUnc_58: 7.6197052616898715e-06 - ArtUnc_59: 9.825460992185863e-06 - ArtUnc_60: 3.627685529542029e-06 - ArtUnc_61: -2.392677403828778e-06 - ArtUnc_62: -2.617544550091262e-06 - ArtUnc_63: 1.7619189417090515e-06 - ArtUnc_64: -4.0927753178519035e-06 - ArtUnc_65: 4.0074756663388155e-06 - ArtUnc_66: 2.9159524324259093e-06 - ArtUnc_67: -1.0830813048008015e-06 - ArtUnc_68: -3.5965235536997996e-06 - ArtUnc_69: -2.322886166859595e-06 - ArtUnc_70: 2.5743213044265925e-07 - ArtUnc_71: -1.5613343610499397e-07 - ArtUnc_72: 6.637580118037731e-08 - ArtUnc_73: -6.870695206562281e-07 - ArtUnc_74: 8.574271135636011e-07 - ArtUnc_75: 1.1569485846268291e-07 - ArtUnc_76: -6.437296749786422e-08 - ArtUnc_77: -1.837073110006341e-07 - ArtUnc_78: -2.4335993445393687e-07 - ArtUnc_79: 3.0163122457542233e-07 - ArtUnc_80: -1.0246606463765234e-07 - ArtUnc_81: 3.8856419054493195e-08 - ArtUnc_82: -3.6760400909888214e-11 - ArtUnc_83: 1.978891082722819e-08 - ArtUnc_84: -3.067811729035556e-08 - ArtUnc_85: -1.2655550615766943e-08 - ArtUnc_86: -6.924432285300878e-09 - ArtUnc_87: -1.4939796498290833e-08 - ArtUnc_88: 3.768689079174396e-08 - ArtUnc_89: 3.359132245658672e-08 - ArtUnc_90: 1.590444265428233e-08 - ArtUnc_91: -5.957595733315514e-09 - ArtUnc_92: -1.0576092301003206e-09 - ArtUnc_93: 1.3221074939131718e-08 - ArtUnc_94: -5.2314837785566986e-09 - ArtUnc_95: -6.979669883933357e-09 - ArtUnc_96: 1.543753446103767e-10 + Model_1: 2.08511648e+00 + Model_2: 2.08511648e+00 + ModelRW_1: 9.05379523e-01 + ModelRW_2: 9.05379523e-01 + JES_1: 1.57319527e+00 + JES_2: 1.57319527e+00 + ArtUnc_1: 2.85346195e+01 + ArtUnc_2: -7.12386397e+00 + ArtUnc_3: -2.71812656e+00 + ArtUnc_4: -3.89928488e-01 + ArtUnc_5: -6.70746378e-03 + ArtUnc_6: -8.28399921e-03 + ArtUnc_7: 7.56739151e-04 + ArtUnc_8: -2.78558823e-01 + ArtUnc_9: -1.55536976e-03 + ArtUnc_10: 6.84104003e-01 + ArtUnc_11: 2.70398261e-01 + ArtUnc_12: -2.57712058e-02 + ArtUnc_13: -2.01965107e-01 + ArtUnc_14: -6.12457494e-02 + ArtUnc_15: -1.37339881e-01 + ArtUnc_16: 5.55925065e-02 + ArtUnc_17: -3.89149429e-02 + ArtUnc_18: 2.24395465e-02 + ArtUnc_19: -4.61360970e-03 + ArtUnc_20: -5.95523347e-03 + ArtUnc_21: -9.19797110e-04 + ArtUnc_22: -1.56131088e-03 + ArtUnc_23: -5.65780391e-04 + ArtUnc_24: -1.38459489e-04 + ArtUnc_25: 1.58848931e-03 + ArtUnc_26: 2.79987319e-03 + ArtUnc_27: 1.20581995e-02 + ArtUnc_28: 1.04353024e-03 + ArtUnc_29: -8.42384008e-04 + ArtUnc_30: 6.85468576e-03 + ArtUnc_31: 6.56380975e-04 + ArtUnc_32: -3.39772281e-03 + ArtUnc_33: -1.35508439e-03 + ArtUnc_34: -1.89742145e-03 + ArtUnc_35: -3.31359723e-03 + ArtUnc_36: -1.10260719e-03 + ArtUnc_37: -2.11209813e-04 + ArtUnc_38: 1.61117501e-04 + ArtUnc_39: 7.78035464e-06 + ArtUnc_40: -1.09490399e-05 + ArtUnc_41: 8.16245137e-04 + ArtUnc_42: 6.59554373e-04 + ArtUnc_43: -1.92017957e-04 + ArtUnc_44: -2.92390455e-04 + ArtUnc_45: 2.92288579e-04 + ArtUnc_46: -1.49505804e-04 + ArtUnc_47: 3.44655293e-04 + ArtUnc_48: -1.15517173e-04 + ArtUnc_49: -1.70853309e-04 + ArtUnc_50: -1.36446983e-04 + ArtUnc_51: 9.21983170e-06 + ArtUnc_52: -1.49055444e-05 + ArtUnc_53: -1.40308700e-04 + ArtUnc_54: 2.17297315e-05 + ArtUnc_55: 2.55249668e-05 + ArtUnc_56: 1.12255024e-05 + ArtUnc_57: -4.69150449e-06 + ArtUnc_58: 7.61970526e-06 + ArtUnc_59: 9.82546099e-06 + ArtUnc_60: 3.62768553e-06 + ArtUnc_61: -2.39267740e-06 + ArtUnc_62: -2.61754455e-06 + ArtUnc_63: 1.76191894e-06 + ArtUnc_64: -4.09277532e-06 + ArtUnc_65: 4.00747567e-06 + ArtUnc_66: 2.91595243e-06 + ArtUnc_67: -1.08308130e-06 + ArtUnc_68: -3.59652355e-06 + ArtUnc_69: -2.32288617e-06 + ArtUnc_70: 2.57432130e-07 + ArtUnc_71: -1.56133436e-07 + ArtUnc_72: 6.63758012e-08 + ArtUnc_73: -6.87069521e-07 + ArtUnc_74: 8.57427114e-07 + ArtUnc_75: 1.15694858e-07 + ArtUnc_76: -6.43729675e-08 + ArtUnc_77: -1.83707311e-07 + ArtUnc_78: -2.43359934e-07 + ArtUnc_79: 3.01631225e-07 + ArtUnc_80: -1.02466065e-07 + ArtUnc_81: 3.88564191e-08 + ArtUnc_82: -3.67604009e-11 + ArtUnc_83: 1.97889108e-08 + ArtUnc_84: -3.06781173e-08 + ArtUnc_85: -1.26555506e-08 + ArtUnc_86: -6.92443229e-09 + ArtUnc_87: -1.49397965e-08 + ArtUnc_88: 3.76868908e-08 + ArtUnc_89: 3.35913225e-08 + ArtUnc_90: 1.59044427e-08 + ArtUnc_91: -5.95759573e-09 + ArtUnc_92: -1.05760923e-09 + ArtUnc_93: 1.32210749e-08 + ArtUnc_94: -5.23148378e-09 + ArtUnc_95: -6.97966988e-09 + ArtUnc_96: 1.54375345e-10 - stat: 0 Uncorr: 1.96 - RCES: 4.76770755395085 - ElEn: 0.2845377303627763 - ElTh: 0.3466208880030169 + RCES: 4.76770755e+00 + ElEn: 2.84537730e-01 + ElTh: 3.46620888e-01 Lumi: 4.9 LArN: 0.98 - StatMC: 1.6267999999999998 - RadErr: 0.27440000000000003 - Model_1: 5.224953427543636 - Model_2: 5.224953427543636 - ModelRW_1: 6.5000083753792195 - ModelRW_2: 6.5000083753792195 - JES_1: 8.14366143083073 - JES_2: 8.14366143083073 - ArtUnc_1: 2.2970761331390066 - ArtUnc_2: -1.0892033898037916 - ArtUnc_3: -0.4626643792894114 - ArtUnc_4: 0.0034597266768986723 - ArtUnc_5: -0.07024799880322546 - ArtUnc_6: -0.025635496777499604 - ArtUnc_7: -0.0011811538975831683 - ArtUnc_8: 5.698072050451249 - ArtUnc_9: 0.01838660928832924 - ArtUnc_10: -6.02475607507018 - ArtUnc_11: -2.9660838975572674 - ArtUnc_12: 0.509042374153124 - ArtUnc_13: 1.8418379289105533 - ArtUnc_14: 0.5185384503576153 - ArtUnc_15: 1.3053603129533584 - ArtUnc_16: -0.48075482695253724 - ArtUnc_17: 0.3546020620221246 - ArtUnc_18: -0.19000896413705118 - ArtUnc_19: 0.03448455438106577 - ArtUnc_20: 0.0334777718193411 - ArtUnc_21: 0.00667766552088803 - ArtUnc_22: 0.005573150621444783 - ArtUnc_23: 0.0016140948748548712 - ArtUnc_24: 0.000568273667308521 - ArtUnc_25: -0.13949268880938007 - ArtUnc_26: -0.07352578045564359 - ArtUnc_27: -0.1808656512600164 - ArtUnc_28: -0.021260206797389925 - ArtUnc_29: 0.00997221831462979 - ArtUnc_30: -0.09065927398924134 - ArtUnc_31: -0.0006883162712905388 - ArtUnc_32: 0.04229196904252959 - ArtUnc_33: 0.01621967581405243 - ArtUnc_34: 0.027143903368802316 - ArtUnc_35: 0.04350407896178598 - ArtUnc_36: 0.016514706658114008 - ArtUnc_37: 0.0024434123447177863 - ArtUnc_38: -0.002971403779176569 - ArtUnc_39: -0.0007310172834329555 - ArtUnc_40: -0.00021136252877450334 - ArtUnc_41: -0.007160870664322624 - ArtUnc_42: -0.005876951781650189 - ArtUnc_43: 0.0017314514208508819 - ArtUnc_44: 0.002553951127823745 - ArtUnc_45: -0.0025656232271245513 - ArtUnc_46: 0.0011881545478558493 - ArtUnc_47: -0.002804030604187082 - ArtUnc_48: 0.0008879580966485295 - ArtUnc_49: 0.001369146410883418 - ArtUnc_50: 0.0011494198540057063 - ArtUnc_51: -9.055078135816814e-05 - ArtUnc_52: 7.294074042155794e-05 - ArtUnc_53: 0.001181951523907321 - ArtUnc_54: -0.00025362312439836495 - ArtUnc_55: -0.00018472562965263104 - ArtUnc_56: -8.739836558783833e-05 - ArtUnc_57: 4.885657431811609e-05 - ArtUnc_58: -5.51390303127279e-05 - ArtUnc_59: -0.00013839594374450153 - ArtUnc_60: -4.877085515415337e-05 - ArtUnc_61: 4.22707537278272e-05 - ArtUnc_62: 2.8700177521542225e-05 - ArtUnc_63: -2.3803806686567963e-05 - ArtUnc_64: 5.132418586798827e-05 - ArtUnc_65: -5.261628114177895e-05 - ArtUnc_66: -3.88344980812236e-05 - ArtUnc_67: 1.3491744321721498e-05 - ArtUnc_68: 3.7428430802205095e-05 - ArtUnc_69: 2.0431367214919684e-05 - ArtUnc_70: -6.037085275244034e-07 - ArtUnc_71: 7.380420140613976e-07 - ArtUnc_72: -1.1211342621343135e-06 - ArtUnc_73: 7.325768443241816e-06 - ArtUnc_74: -8.916791594335334e-06 - ArtUnc_75: -1.162861834698842e-06 - ArtUnc_76: 6.250625946348806e-07 - ArtUnc_77: 1.82006350343776e-06 - ArtUnc_78: 2.525337070075889e-06 - ArtUnc_79: -3.227347634136641e-06 - ArtUnc_80: 9.159003097231551e-07 - ArtUnc_81: -3.4720463522110955e-07 - ArtUnc_82: 8.063925823509818e-10 - ArtUnc_83: -2.002810595725168e-07 - ArtUnc_84: 2.5676589471883596e-07 - ArtUnc_85: 1.2916345002614888e-07 - ArtUnc_86: 5.406845147989175e-08 - ArtUnc_87: 1.3886480880961782e-07 - ArtUnc_88: -4.220408273270315e-07 - ArtUnc_89: -3.5825707537558045e-07 - ArtUnc_90: -1.3673297886087641e-07 - ArtUnc_91: 5.3828040959303416e-08 - ArtUnc_92: 9.722202506314322e-09 - ArtUnc_93: -1.2730479200691123e-07 - ArtUnc_94: 5.895056924848404e-08 - ArtUnc_95: 3.96949352117729e-08 - ArtUnc_96: 4.001083540114452e-09 + StatMC: 1.62680000e+00 + RadErr: 2.74400000e-01 + Model_1: 5.22495343e+00 + Model_2: 5.22495343e+00 + ModelRW_1: 6.50000838e+00 + ModelRW_2: 6.50000838e+00 + JES_1: 8.14366143e+00 + JES_2: 8.14366143e+00 + ArtUnc_1: 2.29707613e+00 + ArtUnc_2: -1.08920339e+00 + ArtUnc_3: -4.62664379e-01 + ArtUnc_4: 3.45972668e-03 + ArtUnc_5: -7.02479988e-02 + ArtUnc_6: -2.56354968e-02 + ArtUnc_7: -1.18115390e-03 + ArtUnc_8: 5.69807205e+00 + ArtUnc_9: 1.83866093e-02 + ArtUnc_10: -6.02475608e+00 + ArtUnc_11: -2.96608390e+00 + ArtUnc_12: 5.09042374e-01 + ArtUnc_13: 1.84183793e+00 + ArtUnc_14: 5.18538450e-01 + ArtUnc_15: 1.30536031e+00 + ArtUnc_16: -4.80754827e-01 + ArtUnc_17: 3.54602062e-01 + ArtUnc_18: -1.90008964e-01 + ArtUnc_19: 3.44845544e-02 + ArtUnc_20: 3.34777718e-02 + ArtUnc_21: 6.67766552e-03 + ArtUnc_22: 5.57315062e-03 + ArtUnc_23: 1.61409487e-03 + ArtUnc_24: 5.68273667e-04 + ArtUnc_25: -1.39492689e-01 + ArtUnc_26: -7.35257805e-02 + ArtUnc_27: -1.80865651e-01 + ArtUnc_28: -2.12602068e-02 + ArtUnc_29: 9.97221831e-03 + ArtUnc_30: -9.06592740e-02 + ArtUnc_31: -6.88316271e-04 + ArtUnc_32: 4.22919690e-02 + ArtUnc_33: 1.62196758e-02 + ArtUnc_34: 2.71439034e-02 + ArtUnc_35: 4.35040790e-02 + ArtUnc_36: 1.65147067e-02 + ArtUnc_37: 2.44341234e-03 + ArtUnc_38: -2.97140378e-03 + ArtUnc_39: -7.31017283e-04 + ArtUnc_40: -2.11362529e-04 + ArtUnc_41: -7.16087066e-03 + ArtUnc_42: -5.87695178e-03 + ArtUnc_43: 1.73145142e-03 + ArtUnc_44: 2.55395113e-03 + ArtUnc_45: -2.56562323e-03 + ArtUnc_46: 1.18815455e-03 + ArtUnc_47: -2.80403060e-03 + ArtUnc_48: 8.87958097e-04 + ArtUnc_49: 1.36914641e-03 + ArtUnc_50: 1.14941985e-03 + ArtUnc_51: -9.05507814e-05 + ArtUnc_52: 7.29407404e-05 + ArtUnc_53: 1.18195152e-03 + ArtUnc_54: -2.53623124e-04 + ArtUnc_55: -1.84725630e-04 + ArtUnc_56: -8.73983656e-05 + ArtUnc_57: 4.88565743e-05 + ArtUnc_58: -5.51390303e-05 + ArtUnc_59: -1.38395944e-04 + ArtUnc_60: -4.87708552e-05 + ArtUnc_61: 4.22707537e-05 + ArtUnc_62: 2.87001775e-05 + ArtUnc_63: -2.38038067e-05 + ArtUnc_64: 5.13241859e-05 + ArtUnc_65: -5.26162811e-05 + ArtUnc_66: -3.88344981e-05 + ArtUnc_67: 1.34917443e-05 + ArtUnc_68: 3.74284308e-05 + ArtUnc_69: 2.04313672e-05 + ArtUnc_70: -6.03708528e-07 + ArtUnc_71: 7.38042014e-07 + ArtUnc_72: -1.12113426e-06 + ArtUnc_73: 7.32576844e-06 + ArtUnc_74: -8.91679159e-06 + ArtUnc_75: -1.16286183e-06 + ArtUnc_76: 6.25062595e-07 + ArtUnc_77: 1.82006350e-06 + ArtUnc_78: 2.52533707e-06 + ArtUnc_79: -3.22734763e-06 + ArtUnc_80: 9.15900310e-07 + ArtUnc_81: -3.47204635e-07 + ArtUnc_82: 8.06392582e-10 + ArtUnc_83: -2.00281060e-07 + ArtUnc_84: 2.56765895e-07 + ArtUnc_85: 1.29163450e-07 + ArtUnc_86: 5.40684515e-08 + ArtUnc_87: 1.38864809e-07 + ArtUnc_88: -4.22040827e-07 + ArtUnc_89: -3.58257075e-07 + ArtUnc_90: -1.36732979e-07 + ArtUnc_91: 5.38280410e-08 + ArtUnc_92: 9.72220251e-09 + ArtUnc_93: -1.27304792e-07 + ArtUnc_94: 5.89505692e-08 + ArtUnc_95: 3.96949352e-08 + ArtUnc_96: 4.00108354e-09 - stat: 0 Uncorr: 0.596 - RCES: 0.26269676130474084 - ElEn: 0.16889003759843266 - ElTh: 0.11679167093590194 + RCES: 2.62696761e-01 + ElEn: 1.68890038e-01 + ElTh: 1.16791671e-01 Lumi: 1.49 LArN: 0.298 StatMC: 0.48276 - RadErr: 0.16092000000000004 - Model_1: 0.5310089083998497 - Model_2: 0.5310089083998497 - ModelRW_1: 1.0198742526409812 - ModelRW_2: 1.0198742526409812 - JES_1: 1.3796016129303414 - JES_2: 1.3796016129303414 - ArtUnc_1: -0.0009965196005386923 - ArtUnc_2: -0.04907637101446047 - ArtUnc_3: -0.04756497054746269 - ArtUnc_4: -0.013756699974385526 - ArtUnc_5: 0.0013405642217313753 - ArtUnc_6: -0.0003866753706473783 - ArtUnc_7: -0.00012760105812504135 - ArtUnc_8: 0.3173188838021138 - ArtUnc_9: 0.0011592755697388047 - ArtUnc_10: -0.45041721817330066 - ArtUnc_11: -0.2137337371651879 - ArtUnc_12: 0.07390984381923797 - ArtUnc_13: 0.15323462967136156 - ArtUnc_14: 0.016725144962614295 - ArtUnc_15: 0.06154109650884441 - ArtUnc_16: 0.0012801800918984287 - ArtUnc_17: -0.010197513896344924 - ArtUnc_18: -0.0036468856197927895 - ArtUnc_19: -0.007440900959471428 - ArtUnc_20: 0.030597234662372387 - ArtUnc_21: 0.01992090985890962 - ArtUnc_22: -0.008080984027201216 - ArtUnc_23: -0.002513702610298424 - ArtUnc_24: 0.0004130954196040905 - ArtUnc_25: -0.7665401298664287 - ArtUnc_26: 0.20904621147775262 - ArtUnc_27: 2.4722660721619834 - ArtUnc_28: -0.2963104198978628 - ArtUnc_29: -0.22890452780055967 - ArtUnc_30: 1.0542185366477073 - ArtUnc_31: -0.028303682128787668 - ArtUnc_32: -0.49320836054377415 - ArtUnc_33: -0.1378857262320036 - ArtUnc_34: -0.27841141169946304 - ArtUnc_35: -0.4738975981671955 - ArtUnc_36: -0.17395524785262387 - ArtUnc_37: -0.02944182617674767 - ArtUnc_38: 0.029621854680974245 - ArtUnc_39: 0.0037937596643816225 - ArtUnc_40: 0.0006171169738548413 - ArtUnc_41: 0.07130678915444527 - ArtUnc_42: 0.09783409895430999 - ArtUnc_43: -0.0025186435155468063 - ArtUnc_44: -0.025573406243681544 - ArtUnc_45: 0.03679531486118474 - ArtUnc_46: -0.003224507487493442 - ArtUnc_47: 0.022428942333149793 - ArtUnc_48: 0.0027457022023610472 - ArtUnc_49: -0.013380306228957847 - ArtUnc_50: -0.01680463061811569 - ArtUnc_51: 0.0006300547084760256 - ArtUnc_52: -0.0005791249759598666 - ArtUnc_53: -0.016114514223097707 - ArtUnc_54: 0.005240293819542083 - ArtUnc_55: 0.002967708631284937 - ArtUnc_56: 0.00019026322521595404 - ArtUnc_57: 0.0002804429750602793 - ArtUnc_58: -0.001894443931454924 - ArtUnc_59: 0.0013271820680700766 - ArtUnc_60: 0.00035204867711393067 - ArtUnc_61: -0.0014031938044521107 - ArtUnc_62: 0.000288213901971008 - ArtUnc_63: 0.0005940507007868716 - ArtUnc_64: -8.618144975369645e-05 - ArtUnc_65: 0.0002762138691505921 - ArtUnc_66: 0.0008705951659873383 - ArtUnc_67: -0.0002900155986531886 - ArtUnc_68: -0.001088372977162145 - ArtUnc_69: -0.0005855436480218688 - ArtUnc_70: 3.891221637388164e-05 - ArtUnc_71: -0.00010782019438672507 - ArtUnc_72: 7.085871654984114e-05 - ArtUnc_73: -9.26754934375886e-06 - ArtUnc_74: 1.0338450946933556e-05 - ArtUnc_75: 2.5984669077553655e-06 - ArtUnc_76: -3.7953189242014587e-06 - ArtUnc_77: -6.080111235031745e-06 - ArtUnc_78: -1.145943283772544e-05 - ArtUnc_79: 1.3531736033285865e-05 - ArtUnc_80: 4.785256084644365e-06 - ArtUnc_81: -1.4476474117618153e-06 - ArtUnc_82: 8.717567938832361e-09 - ArtUnc_83: 2.1625432339056964e-06 - ArtUnc_84: 1.4245958021681639e-06 - ArtUnc_85: -1.5918227317219126e-06 - ArtUnc_86: 2.033747431831262e-06 - ArtUnc_87: 1.5086338157833956e-06 - ArtUnc_88: 1.705818229522455e-06 - ArtUnc_89: 1.6382068061899532e-06 - ArtUnc_90: -2.8779633835803196e-07 - ArtUnc_91: 4.3439631693636184e-07 - ArtUnc_92: 6.715287876035183e-08 - ArtUnc_93: -5.728647448855988e-08 - ArtUnc_94: -7.621759654344934e-07 - ArtUnc_95: 4.1672703857164295e-08 - ArtUnc_96: -2.8880854045615154e-07 + RadErr: 1.60920000e-01 + Model_1: 5.31008908e-01 + Model_2: 5.31008908e-01 + ModelRW_1: 1.01987425e+00 + ModelRW_2: 1.01987425e+00 + JES_1: 1.37960161e+00 + JES_2: 1.37960161e+00 + ArtUnc_1: -9.96519601e-04 + ArtUnc_2: -4.90763710e-02 + ArtUnc_3: -4.75649705e-02 + ArtUnc_4: -1.37567000e-02 + ArtUnc_5: 1.34056422e-03 + ArtUnc_6: -3.86675371e-04 + ArtUnc_7: -1.27601058e-04 + ArtUnc_8: 3.17318884e-01 + ArtUnc_9: 1.15927557e-03 + ArtUnc_10: -4.50417218e-01 + ArtUnc_11: -2.13733737e-01 + ArtUnc_12: 7.39098438e-02 + ArtUnc_13: 1.53234630e-01 + ArtUnc_14: 1.67251450e-02 + ArtUnc_15: 6.15410965e-02 + ArtUnc_16: 1.28018009e-03 + ArtUnc_17: -1.01975139e-02 + ArtUnc_18: -3.64688562e-03 + ArtUnc_19: -7.44090096e-03 + ArtUnc_20: 3.05972347e-02 + ArtUnc_21: 1.99209099e-02 + ArtUnc_22: -8.08098403e-03 + ArtUnc_23: -2.51370261e-03 + ArtUnc_24: 4.13095420e-04 + ArtUnc_25: -7.66540130e-01 + ArtUnc_26: 2.09046211e-01 + ArtUnc_27: 2.47226607e+00 + ArtUnc_28: -2.96310420e-01 + ArtUnc_29: -2.28904528e-01 + ArtUnc_30: 1.05421854e+00 + ArtUnc_31: -2.83036821e-02 + ArtUnc_32: -4.93208361e-01 + ArtUnc_33: -1.37885726e-01 + ArtUnc_34: -2.78411412e-01 + ArtUnc_35: -4.73897598e-01 + ArtUnc_36: -1.73955248e-01 + ArtUnc_37: -2.94418262e-02 + ArtUnc_38: 2.96218547e-02 + ArtUnc_39: 3.79375966e-03 + ArtUnc_40: 6.17116974e-04 + ArtUnc_41: 7.13067892e-02 + ArtUnc_42: 9.78340990e-02 + ArtUnc_43: -2.51864352e-03 + ArtUnc_44: -2.55734062e-02 + ArtUnc_45: 3.67953149e-02 + ArtUnc_46: -3.22450749e-03 + ArtUnc_47: 2.24289423e-02 + ArtUnc_48: 2.74570220e-03 + ArtUnc_49: -1.33803062e-02 + ArtUnc_50: -1.68046306e-02 + ArtUnc_51: 6.30054708e-04 + ArtUnc_52: -5.79124976e-04 + ArtUnc_53: -1.61145142e-02 + ArtUnc_54: 5.24029382e-03 + ArtUnc_55: 2.96770863e-03 + ArtUnc_56: 1.90263225e-04 + ArtUnc_57: 2.80442975e-04 + ArtUnc_58: -1.89444393e-03 + ArtUnc_59: 1.32718207e-03 + ArtUnc_60: 3.52048677e-04 + ArtUnc_61: -1.40319380e-03 + ArtUnc_62: 2.88213902e-04 + ArtUnc_63: 5.94050701e-04 + ArtUnc_64: -8.61814498e-05 + ArtUnc_65: 2.76213869e-04 + ArtUnc_66: 8.70595166e-04 + ArtUnc_67: -2.90015599e-04 + ArtUnc_68: -1.08837298e-03 + ArtUnc_69: -5.85543648e-04 + ArtUnc_70: 3.89122164e-05 + ArtUnc_71: -1.07820194e-04 + ArtUnc_72: 7.08587165e-05 + ArtUnc_73: -9.26754934e-06 + ArtUnc_74: 1.03384509e-05 + ArtUnc_75: 2.59846691e-06 + ArtUnc_76: -3.79531892e-06 + ArtUnc_77: -6.08011124e-06 + ArtUnc_78: -1.14594328e-05 + ArtUnc_79: 1.35317360e-05 + ArtUnc_80: 4.78525608e-06 + ArtUnc_81: -1.44764741e-06 + ArtUnc_82: 8.71756794e-09 + ArtUnc_83: 2.16254323e-06 + ArtUnc_84: 1.42459580e-06 + ArtUnc_85: -1.59182273e-06 + ArtUnc_86: 2.03374743e-06 + ArtUnc_87: 1.50863382e-06 + ArtUnc_88: 1.70581823e-06 + ArtUnc_89: 1.63820681e-06 + ArtUnc_90: -2.87796338e-07 + ArtUnc_91: 4.34396317e-07 + ArtUnc_92: 6.71528788e-08 + ArtUnc_93: -5.72864745e-08 + ArtUnc_94: -7.62175965e-07 + ArtUnc_95: 4.16727039e-08 + ArtUnc_96: -2.88808540e-07 - stat: 0 Uncorr: 0.126 - RCES: 0.0365345685618429 - ElEn: 0.04533811972281162 - ElTh: 0.02171444680391375 + RCES: 3.65345686e-02 + ElEn: 4.53381197e-02 + ElTh: 2.17144468e-02 Lumi: 0.315 LArN: 0.063 - StatMC: 0.17639999999999997 + StatMC: 1.76400000e-01 RadErr: 0.1827 - Model_1: 0.4436953630589348 - Model_2: 0.4436953630589348 - ModelRW_1: 0.3706370904267407 - ModelRW_2: 0.3706370904267407 - JES_1: 0.3376902843583155 - JES_2: 0.3376902843583155 - ArtUnc_1: 0.00048222324563112264 - ArtUnc_2: -0.0004548193660647549 - ArtUnc_3: -0.000286514996135342 - ArtUnc_4: -5.045932370756765e-06 - ArtUnc_5: -6.963204243240928e-05 - ArtUnc_6: -3.525407986559304e-05 - ArtUnc_7: -7.335364812501672e-07 - ArtUnc_8: 0.011353917117131688 - ArtUnc_9: 4.218063182166823e-05 - ArtUnc_10: -0.015707934389066265 - ArtUnc_11: -0.009803885316949498 - ArtUnc_12: 0.0021536993705559898 - ArtUnc_13: 0.007532844337655942 - ArtUnc_14: 0.0021950944042568683 - ArtUnc_15: 0.006046097250410134 - ArtUnc_16: -0.0023116927991033214 - ArtUnc_17: 0.0017171120266754247 - ArtUnc_18: -0.0010288977453566045 - ArtUnc_19: 0.00011311504002460291 - ArtUnc_20: 0.0005321726757171317 - ArtUnc_21: 0.00031996106432853085 - ArtUnc_22: -9.235564886922412e-05 - ArtUnc_23: -4.181140486276274e-05 - ArtUnc_24: 1.90347021989865e-05 - ArtUnc_25: -0.020487758169369312 - ArtUnc_26: 0.011574866257633931 - ArtUnc_27: 0.08912912698772603 - ArtUnc_28: -0.008665626267010482 - ArtUnc_29: -0.006635338253216263 - ArtUnc_30: 0.027945876812184477 - ArtUnc_31: -0.0009772297497179653 - ArtUnc_32: -0.010216142199216087 - ArtUnc_33: -0.002845330035767449 - ArtUnc_34: -0.005570333273645624 - ArtUnc_35: -0.009662654568296104 - ArtUnc_36: -0.004528737722651677 - ArtUnc_37: -0.0012038460339396265 - ArtUnc_38: 0.0018731277432525726 - ArtUnc_39: 0.0008503564209471586 - ArtUnc_40: 0.00013844562202529199 - ArtUnc_41: 0.6638495686437801 - ArtUnc_42: -0.5706914172500034 - ArtUnc_43: -0.37756148387400784 - ArtUnc_44: -0.03501730818425852 - ArtUnc_45: -0.22079268371283536 - ArtUnc_46: -0.1555648662556946 - ArtUnc_47: 0.03878286742300583 - ArtUnc_48: -0.17923666489526285 - ArtUnc_49: 0.05428378152839977 - ArtUnc_50: 0.1324244338946672 - ArtUnc_51: -0.003416335306031974 - ArtUnc_52: 0.007711552695186313 - ArtUnc_53: 0.13148541911448347 - ArtUnc_54: -0.04808237290860438 - ArtUnc_55: -0.03475140647080258 - ArtUnc_56: 0.003634129374122391 - ArtUnc_57: -0.008015429032455383 - ArtUnc_58: 0.042966783029020544 - ArtUnc_59: -0.021593356391989723 - ArtUnc_60: -0.005088828565798671 - ArtUnc_61: 0.024094100946153038 - ArtUnc_62: -0.006406534115997293 - ArtUnc_63: -0.009260583805346423 - ArtUnc_64: -0.0007324592001938286 - ArtUnc_65: -0.0023102409510445 - ArtUnc_66: -0.011795995784537529 - ArtUnc_67: 0.003798810760947751 - ArtUnc_68: 0.014005992450295192 - ArtUnc_69: 0.0072733152673920285 - ArtUnc_70: -0.0004229394256654641 - ArtUnc_71: 0.0014663376725319356 - ArtUnc_72: -0.0009929230225179458 - ArtUnc_73: 0.00011844704664039685 - ArtUnc_74: -0.00023022953652054892 - ArtUnc_75: -5.280533255611597e-05 - ArtUnc_76: 5.8320312563038125e-05 - ArtUnc_77: 0.00013664656253665832 - ArtUnc_78: 0.00022585533316878535 - ArtUnc_79: -0.0003222283740101118 - ArtUnc_80: -8.560658591625873e-05 - ArtUnc_81: 2.7635731751347974e-05 - ArtUnc_82: -1.4471079941616133e-07 - ArtUnc_83: -4.8492427455588045e-05 - ArtUnc_84: -2.7385198275194944e-05 - ArtUnc_85: 3.691156820800699e-05 - ArtUnc_86: -4.585635645987649e-05 - ArtUnc_87: -3.282889882737541e-05 - ArtUnc_88: -3.2808291692027684e-05 - ArtUnc_89: -5.063474698032896e-05 - ArtUnc_90: 5.940492185626315e-06 - ArtUnc_91: -9.96937532891693e-06 - ArtUnc_92: -1.5861418317524066e-06 - ArtUnc_93: 1.394519710889056e-05 - ArtUnc_94: 1.976061848848542e-05 - ArtUnc_95: 5.415803724684479e-06 - ArtUnc_96: 8.099606377266068e-06 + Model_1: 4.43695363e-01 + Model_2: 4.43695363e-01 + ModelRW_1: 3.70637090e-01 + ModelRW_2: 3.70637090e-01 + JES_1: 3.37690284e-01 + JES_2: 3.37690284e-01 + ArtUnc_1: 4.82223246e-04 + ArtUnc_2: -4.54819366e-04 + ArtUnc_3: -2.86514996e-04 + ArtUnc_4: -5.04593237e-06 + ArtUnc_5: -6.96320424e-05 + ArtUnc_6: -3.52540799e-05 + ArtUnc_7: -7.33536481e-07 + ArtUnc_8: 1.13539171e-02 + ArtUnc_9: 4.21806318e-05 + ArtUnc_10: -1.57079344e-02 + ArtUnc_11: -9.80388532e-03 + ArtUnc_12: 2.15369937e-03 + ArtUnc_13: 7.53284434e-03 + ArtUnc_14: 2.19509440e-03 + ArtUnc_15: 6.04609725e-03 + ArtUnc_16: -2.31169280e-03 + ArtUnc_17: 1.71711203e-03 + ArtUnc_18: -1.02889775e-03 + ArtUnc_19: 1.13115040e-04 + ArtUnc_20: 5.32172676e-04 + ArtUnc_21: 3.19961064e-04 + ArtUnc_22: -9.23556489e-05 + ArtUnc_23: -4.18114049e-05 + ArtUnc_24: 1.90347022e-05 + ArtUnc_25: -2.04877582e-02 + ArtUnc_26: 1.15748663e-02 + ArtUnc_27: 8.91291270e-02 + ArtUnc_28: -8.66562627e-03 + ArtUnc_29: -6.63533825e-03 + ArtUnc_30: 2.79458768e-02 + ArtUnc_31: -9.77229750e-04 + ArtUnc_32: -1.02161422e-02 + ArtUnc_33: -2.84533004e-03 + ArtUnc_34: -5.57033327e-03 + ArtUnc_35: -9.66265457e-03 + ArtUnc_36: -4.52873772e-03 + ArtUnc_37: -1.20384603e-03 + ArtUnc_38: 1.87312774e-03 + ArtUnc_39: 8.50356421e-04 + ArtUnc_40: 1.38445622e-04 + ArtUnc_41: 6.63849569e-01 + ArtUnc_42: -5.70691417e-01 + ArtUnc_43: -3.77561484e-01 + ArtUnc_44: -3.50173082e-02 + ArtUnc_45: -2.20792684e-01 + ArtUnc_46: -1.55564866e-01 + ArtUnc_47: 3.87828674e-02 + ArtUnc_48: -1.79236665e-01 + ArtUnc_49: 5.42837815e-02 + ArtUnc_50: 1.32424434e-01 + ArtUnc_51: -3.41633531e-03 + ArtUnc_52: 7.71155270e-03 + ArtUnc_53: 1.31485419e-01 + ArtUnc_54: -4.80823729e-02 + ArtUnc_55: -3.47514065e-02 + ArtUnc_56: 3.63412937e-03 + ArtUnc_57: -8.01542903e-03 + ArtUnc_58: 4.29667830e-02 + ArtUnc_59: -2.15933564e-02 + ArtUnc_60: -5.08882857e-03 + ArtUnc_61: 2.40941009e-02 + ArtUnc_62: -6.40653412e-03 + ArtUnc_63: -9.26058381e-03 + ArtUnc_64: -7.32459200e-04 + ArtUnc_65: -2.31024095e-03 + ArtUnc_66: -1.17959958e-02 + ArtUnc_67: 3.79881076e-03 + ArtUnc_68: 1.40059925e-02 + ArtUnc_69: 7.27331527e-03 + ArtUnc_70: -4.22939426e-04 + ArtUnc_71: 1.46633767e-03 + ArtUnc_72: -9.92923023e-04 + ArtUnc_73: 1.18447047e-04 + ArtUnc_74: -2.30229537e-04 + ArtUnc_75: -5.28053326e-05 + ArtUnc_76: 5.83203126e-05 + ArtUnc_77: 1.36646563e-04 + ArtUnc_78: 2.25855333e-04 + ArtUnc_79: -3.22228374e-04 + ArtUnc_80: -8.56065859e-05 + ArtUnc_81: 2.76357318e-05 + ArtUnc_82: -1.44710799e-07 + ArtUnc_83: -4.84924275e-05 + ArtUnc_84: -2.73851983e-05 + ArtUnc_85: 3.69115682e-05 + ArtUnc_86: -4.58563565e-05 + ArtUnc_87: -3.28288988e-05 + ArtUnc_88: -3.28082917e-05 + ArtUnc_89: -5.06347470e-05 + ArtUnc_90: 5.94049219e-06 + ArtUnc_91: -9.96937533e-06 + ArtUnc_92: -1.58614183e-06 + ArtUnc_93: 1.39451971e-05 + ArtUnc_94: 1.97606185e-05 + ArtUnc_95: 5.41580372e-06 + ArtUnc_96: 8.09960638e-06 - stat: 0 Uncorr: 0.0227 - RCES: 0.009166837881734356 - ElEn: 0.02652696786291264 - ElTh: 0.013950807611030984 + RCES: 9.16683788e-03 + ElEn: 2.65269679e-02 + ElTh: 1.39508076e-02 Lumi: 0.05675 LArN: 0.01135 - StatMC: 0.08262800000000001 + StatMC: 8.26280000e-02 RadErr: 0.033823 - Model_1: 0.05505604108996577 - Model_2: 0.05505604108996577 - ModelRW_1: 0.0008025661966467315 - ModelRW_2: 0.0008025661966467315 - JES_1: 0.07051205198669941 - JES_2: 0.07051205198669941 - ArtUnc_1: 8.284240535459942e-05 - ArtUnc_2: -7.143652520747553e-05 - ArtUnc_3: -4.2939106416322474e-05 - ArtUnc_4: 9.189147705604213e-07 - ArtUnc_5: -1.168392477351611e-05 - ArtUnc_6: -5.437220127116407e-06 - ArtUnc_7: -3.186788680124188e-07 - ArtUnc_8: 0.0017507675790445158 - ArtUnc_9: 6.3208949947927375e-06 - ArtUnc_10: -0.0023152786563023693 - ArtUnc_11: -0.001512260185718958 - ArtUnc_12: 0.0002867266414185476 - ArtUnc_13: 0.0011707137810086823 - ArtUnc_14: 0.00037400319118526687 - ArtUnc_15: 0.0010149982650403862 - ArtUnc_16: -0.0004244565163130159 - ArtUnc_17: 0.00034015178709396565 - ArtUnc_18: -0.000192932820089954 - ArtUnc_19: 4.354511051629244e-05 - ArtUnc_20: 3.082354649563666e-05 - ArtUnc_21: 1.7465997797400437e-06 - ArtUnc_22: 1.2057399180159132e-05 - ArtUnc_23: 4.491744744461753e-06 - ArtUnc_24: 9.79744710611963e-07 - ArtUnc_25: 0.000207381057035519 - ArtUnc_26: -0.0004230761354287319 - ArtUnc_27: -0.0031937538950595834 - ArtUnc_28: 0.0002789218703015377 - ArtUnc_29: 0.0003826943616382765 - ArtUnc_30: -0.0021125763707275347 - ArtUnc_31: 4.634065252060755e-05 - ArtUnc_32: 0.0012541085350820632 - ArtUnc_33: 0.0003780885952905535 - ArtUnc_34: 0.0008401347196628806 - ArtUnc_35: 0.0014372357214196374 - ArtUnc_36: 0.0005759556505313191 - ArtUnc_37: 9.800053871621878e-05 - ArtUnc_38: -0.0001049586563108525 - ArtUnc_39: -1.4606526390462278e-05 - ArtUnc_40: -3.996192469797755e-06 - ArtUnc_41: 0.011750948973270116 - ArtUnc_42: -0.015575601828048118 - ArtUnc_43: -0.004189188127765207 - ArtUnc_44: 0.0011989486168144544 - ArtUnc_45: -0.002337986903522328 - ArtUnc_46: 0.00015453013196292003 - ArtUnc_47: -0.0005559318681489714 - ArtUnc_48: 2.7101397601735106e-05 - ArtUnc_49: -0.00020626001420911725 - ArtUnc_50: -5.820870463632121e-05 - ArtUnc_51: -1.6662171501764027e-05 - ArtUnc_52: 2.5544439689513627e-05 - ArtUnc_53: -0.00014939065649154743 - ArtUnc_54: -9.672127646801581e-05 - ArtUnc_55: -1.1098661883805367e-05 - ArtUnc_56: 1.7388712030098158e-05 - ArtUnc_57: -0.11990698671213583 - ArtUnc_58: 0.1630472526295877 - ArtUnc_59: 0.23306723240397223 - ArtUnc_60: 0.08346872670813442 - ArtUnc_61: -0.05613004221263735 - ArtUnc_62: -0.0518004490850811 - ArtUnc_63: 0.030589435370586383 - ArtUnc_64: -0.08155023196137762 - ArtUnc_65: 0.07903336729866912 - ArtUnc_66: 0.04530305726093659 - ArtUnc_67: -0.013349390116759653 - ArtUnc_68: -0.0264080500996915 - ArtUnc_69: -0.012559102862259136 - ArtUnc_70: 0.0011507880480598309 - ArtUnc_71: -0.00039464089688755454 - ArtUnc_72: 0.0015003052226943954 - ArtUnc_73: -0.01664476478326977 - ArtUnc_74: 0.017515386373661138 - ArtUnc_75: 0.0022558265607425716 - ArtUnc_76: 0.00046133251513093 - ArtUnc_77: -0.0034936131326428277 - ArtUnc_78: -0.0026908293071845365 - ArtUnc_79: 0.006560964965245572 - ArtUnc_80: 0.0009448181700934723 - ArtUnc_81: -0.00044521757762517754 - ArtUnc_82: 9.185677018507984e-08 - ArtUnc_83: -0.00011809609694401655 - ArtUnc_84: 0.0005436643903216629 - ArtUnc_85: 6.648844060157769e-05 - ArtUnc_86: 4.8256104908536475e-05 - ArtUnc_87: 7.071954635315663e-05 - ArtUnc_88: 0.00035533421302064275 - ArtUnc_89: 0.00101065159677701 - ArtUnc_90: -0.00013932834585073713 - ArtUnc_91: 2.375834640852458e-05 - ArtUnc_92: 3.920061732908886e-06 - ArtUnc_93: -4.664789298303528e-05 - ArtUnc_94: -0.0005146245491329366 - ArtUnc_95: -0.00012595303709050904 - ArtUnc_96: 1.3968545028191379e-06 + Model_1: 5.50560411e-02 + Model_2: 5.50560411e-02 + ModelRW_1: 8.02566197e-04 + ModelRW_2: 8.02566197e-04 + JES_1: 7.05120520e-02 + JES_2: 7.05120520e-02 + ArtUnc_1: 8.28424054e-05 + ArtUnc_2: -7.14365252e-05 + ArtUnc_3: -4.29391064e-05 + ArtUnc_4: 9.18914771e-07 + ArtUnc_5: -1.16839248e-05 + ArtUnc_6: -5.43722013e-06 + ArtUnc_7: -3.18678868e-07 + ArtUnc_8: 1.75076758e-03 + ArtUnc_9: 6.32089499e-06 + ArtUnc_10: -2.31527866e-03 + ArtUnc_11: -1.51226019e-03 + ArtUnc_12: 2.86726641e-04 + ArtUnc_13: 1.17071378e-03 + ArtUnc_14: 3.74003191e-04 + ArtUnc_15: 1.01499827e-03 + ArtUnc_16: -4.24456516e-04 + ArtUnc_17: 3.40151787e-04 + ArtUnc_18: -1.92932820e-04 + ArtUnc_19: 4.35451105e-05 + ArtUnc_20: 3.08235465e-05 + ArtUnc_21: 1.74659978e-06 + ArtUnc_22: 1.20573992e-05 + ArtUnc_23: 4.49174474e-06 + ArtUnc_24: 9.79744711e-07 + ArtUnc_25: 2.07381057e-04 + ArtUnc_26: -4.23076135e-04 + ArtUnc_27: -3.19375390e-03 + ArtUnc_28: 2.78921870e-04 + ArtUnc_29: 3.82694362e-04 + ArtUnc_30: -2.11257637e-03 + ArtUnc_31: 4.63406525e-05 + ArtUnc_32: 1.25410854e-03 + ArtUnc_33: 3.78088595e-04 + ArtUnc_34: 8.40134720e-04 + ArtUnc_35: 1.43723572e-03 + ArtUnc_36: 5.75955651e-04 + ArtUnc_37: 9.80005387e-05 + ArtUnc_38: -1.04958656e-04 + ArtUnc_39: -1.46065264e-05 + ArtUnc_40: -3.99619247e-06 + ArtUnc_41: 1.17509490e-02 + ArtUnc_42: -1.55756018e-02 + ArtUnc_43: -4.18918813e-03 + ArtUnc_44: 1.19894862e-03 + ArtUnc_45: -2.33798690e-03 + ArtUnc_46: 1.54530132e-04 + ArtUnc_47: -5.55931868e-04 + ArtUnc_48: 2.71013976e-05 + ArtUnc_49: -2.06260014e-04 + ArtUnc_50: -5.82087046e-05 + ArtUnc_51: -1.66621715e-05 + ArtUnc_52: 2.55444397e-05 + ArtUnc_53: -1.49390656e-04 + ArtUnc_54: -9.67212765e-05 + ArtUnc_55: -1.10986619e-05 + ArtUnc_56: 1.73887120e-05 + ArtUnc_57: -1.19906987e-01 + ArtUnc_58: 1.63047253e-01 + ArtUnc_59: 2.33067232e-01 + ArtUnc_60: 8.34687267e-02 + ArtUnc_61: -5.61300422e-02 + ArtUnc_62: -5.18004491e-02 + ArtUnc_63: 3.05894354e-02 + ArtUnc_64: -8.15502320e-02 + ArtUnc_65: 7.90333673e-02 + ArtUnc_66: 4.53030573e-02 + ArtUnc_67: -1.33493901e-02 + ArtUnc_68: -2.64080501e-02 + ArtUnc_69: -1.25591029e-02 + ArtUnc_70: 1.15078805e-03 + ArtUnc_71: -3.94640897e-04 + ArtUnc_72: 1.50030522e-03 + ArtUnc_73: -1.66447648e-02 + ArtUnc_74: 1.75153864e-02 + ArtUnc_75: 2.25582656e-03 + ArtUnc_76: 4.61332515e-04 + ArtUnc_77: -3.49361313e-03 + ArtUnc_78: -2.69082931e-03 + ArtUnc_79: 6.56096497e-03 + ArtUnc_80: 9.44818170e-04 + ArtUnc_81: -4.45217578e-04 + ArtUnc_82: 9.18567702e-08 + ArtUnc_83: -1.18096097e-04 + ArtUnc_84: 5.43664390e-04 + ArtUnc_85: 6.64884406e-05 + ArtUnc_86: 4.82561049e-05 + ArtUnc_87: 7.07195464e-05 + ArtUnc_88: 3.55334213e-04 + ArtUnc_89: 1.01065160e-03 + ArtUnc_90: -1.39328346e-04 + ArtUnc_91: 2.37583464e-05 + ArtUnc_92: 3.92006173e-06 + ArtUnc_93: -4.66478930e-05 + ArtUnc_94: -5.14624549e-04 + ArtUnc_95: -1.25953037e-04 + ArtUnc_96: 1.39685450e-06 - stat: 0 Uncorr: 0.00372 - RCES: 0.009759081635072022 - ElEn: 0.014155895341517613 - ElTh: 0.007248656493447595 + RCES: 9.75908164e-03 + ElEn: 1.41558953e-02 + ElTh: 7.24865649e-03 Lumi: 0.0093 LArN: 0.00186 - StatMC: 0.028160400000000002 - RadErr: 0.015289200000000001 - Model_1: 0.017045233224570442 - Model_2: 0.017045233224570442 - ModelRW_1: 0.023279369450223516 - ModelRW_2: 0.023279369450223516 - JES_1: 0.013690863528645661 - JES_2: 0.013690863528645661 - ArtUnc_1: -8.737694534121229e-10 - ArtUnc_2: 1.6464594064326736e-09 - ArtUnc_3: 1.5950511990295304e-09 - ArtUnc_4: 1.3040974115525698e-10 - ArtUnc_5: 5.508080194611627e-10 - ArtUnc_6: 3.7671139816293967e-10 - ArtUnc_7: 1.2766550907783893e-11 - ArtUnc_8: -1.8318554335628124e-07 - ArtUnc_9: -7.598415241707395e-10 - ArtUnc_10: 3.172515480713788e-07 - ArtUnc_11: 2.644748786934402e-07 - ArtUnc_12: -5.490758663839249e-08 - ArtUnc_13: -2.718473923425416e-07 - ArtUnc_14: -9.213717981691248e-08 - ArtUnc_15: -2.724363299357123e-07 - ArtUnc_16: 1.2069090292989235e-07 - ArtUnc_17: -9.887766630843156e-08 - ArtUnc_18: 6.492169166509936e-08 - ArtUnc_19: -1.0089425732864725e-08 - ArtUnc_20: -3.7827776916724463e-08 - ArtUnc_21: -2.494253881503824e-08 - ArtUnc_22: 7.18207777277124e-09 - ArtUnc_23: 4.737266987816121e-09 - ArtUnc_24: -2.6786010019964452e-09 - ArtUnc_25: 2.9575991000873583e-06 - ArtUnc_26: -2.4109347240891293e-06 - ArtUnc_27: -1.958960032609601e-05 - ArtUnc_28: 2.1605117264882275e-06 - ArtUnc_29: 1.866721069826176e-06 - ArtUnc_30: -8.22057669927223e-06 - ArtUnc_31: 3.1484995192426904e-07 - ArtUnc_32: 3.566962795179308e-06 - ArtUnc_33: 9.910532595307408e-07 - ArtUnc_34: 2.229321892986007e-06 - ArtUnc_35: 3.9884951668698356e-06 - ArtUnc_36: 2.166989013651135e-06 - ArtUnc_37: 6.645354509858519e-07 - ArtUnc_38: -1.137071138773637e-06 - ArtUnc_39: -6.259626810669443e-07 - ArtUnc_40: -1.139598981579064e-07 - ArtUnc_41: -0.0011137227426165804 - ArtUnc_42: 0.001141607145327739 - ArtUnc_43: 0.0008346508307614627 - ArtUnc_44: 8.601943478581479e-05 - ArtUnc_45: 0.0005798205279119543 - ArtUnc_46: 0.0004383472277824721 - ArtUnc_47: -0.00012074281722239596 - ArtUnc_48: 0.000552874931580836 - ArtUnc_49: -0.00017207676192544896 - ArtUnc_50: -0.0004507527380131608 - ArtUnc_51: 2.508999491499608e-05 - ArtUnc_52: -4.8123543900225626e-05 - ArtUnc_53: -0.0004876302466361276 - ArtUnc_54: 0.00018684558503821334 - ArtUnc_55: 0.00015388762592659022 - ArtUnc_56: -1.8186981887229775e-05 - ArtUnc_57: -0.004004969220651377 - ArtUnc_58: 0.003607266408108926 - ArtUnc_59: 0.004505974454370048 - ArtUnc_60: 0.001345496970059587 - ArtUnc_61: -0.0008187221344207724 - ArtUnc_62: -0.0003112304944000799 - ArtUnc_63: 0.0002862908683742685 - ArtUnc_64: -0.0003152481406459922 - ArtUnc_65: 0.0003683638836481357 - ArtUnc_66: 0.0002982348981041299 - ArtUnc_67: -0.0001502387558411166 - ArtUnc_68: -0.0006147404317045237 - ArtUnc_69: -0.0005233603568172246 - ArtUnc_70: 0.00019697460472897514 - ArtUnc_71: -8.244916610588482e-05 - ArtUnc_72: 0.00014985939363457848 - ArtUnc_73: 0.0038048183334672874 - ArtUnc_74: -0.0007028573295874387 - ArtUnc_75: 0.0011840866023422926 - ArtUnc_76: 0.02835348160110081 - ArtUnc_77: -0.005216149143439307 - ArtUnc_78: 0.06222596545671097 - ArtUnc_79: 0.015037693794521264 - ArtUnc_80: -0.026302069053068946 - ArtUnc_81: 0.01476780276571734 - ArtUnc_82: -1.1729779388745412e-06 - ArtUnc_83: -0.006403768686471221 - ArtUnc_84: -0.017996315182303557 - ArtUnc_85: 0.004758655675668427 - ArtUnc_86: -0.005074421813299028 - ArtUnc_87: -0.002829751264937561 - ArtUnc_88: -0.04337537829452347 - ArtUnc_89: -0.029379583624767714 - ArtUnc_90: 0.007388117062249002 - ArtUnc_91: -0.0007635967238545224 - ArtUnc_92: -0.00010334804503274076 - ArtUnc_93: -0.030648055619916178 - ArtUnc_94: 0.01331203105244284 - ArtUnc_95: 0.0008653673756013533 - ArtUnc_96: 0.001045600489105698 + StatMC: 2.81604000e-02 + RadErr: 1.52892000e-02 + Model_1: 1.70452332e-02 + Model_2: 1.70452332e-02 + ModelRW_1: 2.32793695e-02 + ModelRW_2: 2.32793695e-02 + JES_1: 1.36908635e-02 + JES_2: 1.36908635e-02 + ArtUnc_1: -8.73769453e-10 + ArtUnc_2: 1.64645941e-09 + ArtUnc_3: 1.59505120e-09 + ArtUnc_4: 1.30409741e-10 + ArtUnc_5: 5.50808019e-10 + ArtUnc_6: 3.76711398e-10 + ArtUnc_7: 1.27665509e-11 + ArtUnc_8: -1.83185543e-07 + ArtUnc_9: -7.59841524e-10 + ArtUnc_10: 3.17251548e-07 + ArtUnc_11: 2.64474879e-07 + ArtUnc_12: -5.49075866e-08 + ArtUnc_13: -2.71847392e-07 + ArtUnc_14: -9.21371798e-08 + ArtUnc_15: -2.72436330e-07 + ArtUnc_16: 1.20690903e-07 + ArtUnc_17: -9.88776663e-08 + ArtUnc_18: 6.49216917e-08 + ArtUnc_19: -1.00894257e-08 + ArtUnc_20: -3.78277769e-08 + ArtUnc_21: -2.49425388e-08 + ArtUnc_22: 7.18207777e-09 + ArtUnc_23: 4.73726699e-09 + ArtUnc_24: -2.67860100e-09 + ArtUnc_25: 2.95759910e-06 + ArtUnc_26: -2.41093472e-06 + ArtUnc_27: -1.95896003e-05 + ArtUnc_28: 2.16051173e-06 + ArtUnc_29: 1.86672107e-06 + ArtUnc_30: -8.22057670e-06 + ArtUnc_31: 3.14849952e-07 + ArtUnc_32: 3.56696280e-06 + ArtUnc_33: 9.91053260e-07 + ArtUnc_34: 2.22932189e-06 + ArtUnc_35: 3.98849517e-06 + ArtUnc_36: 2.16698901e-06 + ArtUnc_37: 6.64535451e-07 + ArtUnc_38: -1.13707114e-06 + ArtUnc_39: -6.25962681e-07 + ArtUnc_40: -1.13959898e-07 + ArtUnc_41: -1.11372274e-03 + ArtUnc_42: 1.14160715e-03 + ArtUnc_43: 8.34650831e-04 + ArtUnc_44: 8.60194348e-05 + ArtUnc_45: 5.79820528e-04 + ArtUnc_46: 4.38347228e-04 + ArtUnc_47: -1.20742817e-04 + ArtUnc_48: 5.52874932e-04 + ArtUnc_49: -1.72076762e-04 + ArtUnc_50: -4.50752738e-04 + ArtUnc_51: 2.50899949e-05 + ArtUnc_52: -4.81235439e-05 + ArtUnc_53: -4.87630247e-04 + ArtUnc_54: 1.86845585e-04 + ArtUnc_55: 1.53887626e-04 + ArtUnc_56: -1.81869819e-05 + ArtUnc_57: -4.00496922e-03 + ArtUnc_58: 3.60726641e-03 + ArtUnc_59: 4.50597445e-03 + ArtUnc_60: 1.34549697e-03 + ArtUnc_61: -8.18722134e-04 + ArtUnc_62: -3.11230494e-04 + ArtUnc_63: 2.86290868e-04 + ArtUnc_64: -3.15248141e-04 + ArtUnc_65: 3.68363884e-04 + ArtUnc_66: 2.98234898e-04 + ArtUnc_67: -1.50238756e-04 + ArtUnc_68: -6.14740432e-04 + ArtUnc_69: -5.23360357e-04 + ArtUnc_70: 1.96974605e-04 + ArtUnc_71: -8.24491661e-05 + ArtUnc_72: 1.49859394e-04 + ArtUnc_73: 3.80481833e-03 + ArtUnc_74: -7.02857330e-04 + ArtUnc_75: 1.18408660e-03 + ArtUnc_76: 2.83534816e-02 + ArtUnc_77: -5.21614914e-03 + ArtUnc_78: 6.22259655e-02 + ArtUnc_79: 1.50376938e-02 + ArtUnc_80: -2.63020691e-02 + ArtUnc_81: 1.47678028e-02 + ArtUnc_82: -1.17297794e-06 + ArtUnc_83: -6.40376869e-03 + ArtUnc_84: -1.79963152e-02 + ArtUnc_85: 4.75865568e-03 + ArtUnc_86: -5.07442181e-03 + ArtUnc_87: -2.82975126e-03 + ArtUnc_88: -4.33753783e-02 + ArtUnc_89: -2.93795836e-02 + ArtUnc_90: 7.38811706e-03 + ArtUnc_91: -7.63596724e-04 + ArtUnc_92: -1.03348045e-04 + ArtUnc_93: -3.06480556e-02 + ArtUnc_94: 1.33120311e-02 + ArtUnc_95: 8.65367376e-04 + ArtUnc_96: 1.04560049e-03 - stat: 0 - Uncorr: 2.7600000000000002 - RCES: 10.949680417254195 - ElEn: 1.5225096649939533 - ElTh: 0.7264359847915025 + Uncorr: 2.76000000e+00 + RCES: 1.09496804e+01 + ElEn: 1.52250966e+00 + ElTh: 7.26435985e-01 Lumi: 6.9 - LArN: 1.3800000000000001 + LArN: 1.38000000e+00 StatMC: 3.9468 - RadErr: 1.4904000000000002 - Model_1: 0.2146776187682358 - Model_2: 0.2146776187682358 - ModelRW_1: 13.114850892023133 - ModelRW_2: 13.114850892023133 - JES_1: 0.915960381239276 - JES_2: 0.915960381239276 - ArtUnc_1: 28.534619481303825 - ArtUnc_2: -7.123863967078508 - ArtUnc_3: -2.7181265551317226 - ArtUnc_4: -0.3899284876102117 - ArtUnc_5: -0.00670746378074466 - ArtUnc_6: -0.008283999205217387 - ArtUnc_7: 0.0007567391512459143 - ArtUnc_8: -0.27855882289615036 - ArtUnc_9: -0.0015553697559445726 - ArtUnc_10: 0.6841040029689246 - ArtUnc_11: 0.2703982613331601 - ArtUnc_12: -0.02577120581018809 - ArtUnc_13: -0.20196510734929263 - ArtUnc_14: -0.061245749383712446 - ArtUnc_15: -0.1373398814060955 - ArtUnc_16: 0.05559250646001657 - ArtUnc_17: -0.03891494291030187 - ArtUnc_18: 0.022439546494828832 - ArtUnc_19: -0.004613609699705583 - ArtUnc_20: -0.005955233470981109 - ArtUnc_21: -0.000919797110477925 - ArtUnc_22: -0.0015613108826127554 - ArtUnc_23: -0.0005657803910752896 - ArtUnc_24: -0.00013845948901258673 - ArtUnc_25: 0.0015884893142738003 - ArtUnc_26: 0.0027998731918240935 - ArtUnc_27: 0.012058199532830109 - ArtUnc_28: 0.0010435302393417168 - ArtUnc_29: -0.0008423840084407331 - ArtUnc_30: 0.006854685756505784 - ArtUnc_31: 0.0006563809746296008 - ArtUnc_32: -0.003397722806987923 - ArtUnc_33: -0.0013550843877417945 - ArtUnc_34: -0.0018974214458767377 - ArtUnc_35: -0.0033135972302497743 - ArtUnc_36: -0.0011026071913299487 - ArtUnc_37: -0.00021120981280549925 - ArtUnc_38: 0.0001611175014340478 - ArtUnc_39: 7.780354641441171e-06 - ArtUnc_40: -1.0949039928915957e-05 - ArtUnc_41: 0.0008162451372233949 - ArtUnc_42: 0.0006595543728718163 - ArtUnc_43: -0.0001920179570449045 - ArtUnc_44: -0.00029239045544503836 - ArtUnc_45: 0.00029228857947158284 - ArtUnc_46: -0.00014950580404518931 - ArtUnc_47: 0.0003446552927101274 - ArtUnc_48: -0.00011551717262218647 - ArtUnc_49: -0.00017085330905257303 - ArtUnc_50: -0.00013644698293498577 - ArtUnc_51: 9.219831701846136e-06 - ArtUnc_52: -1.4905544371813783e-05 - ArtUnc_53: -0.00014030870040233003 - ArtUnc_54: 2.172973149282271e-05 - ArtUnc_55: 2.5524966768608532e-05 - ArtUnc_56: 1.1225502356583022e-05 - ArtUnc_57: -4.691504492441422e-06 - ArtUnc_58: 7.6197052616898715e-06 - ArtUnc_59: 9.825460992185863e-06 - ArtUnc_60: 3.627685529542029e-06 - ArtUnc_61: -2.392677403828778e-06 - ArtUnc_62: -2.617544550091262e-06 - ArtUnc_63: 1.7619189417090515e-06 - ArtUnc_64: -4.0927753178519035e-06 - ArtUnc_65: 4.0074756663388155e-06 - ArtUnc_66: 2.9159524324259093e-06 - ArtUnc_67: -1.0830813048008015e-06 - ArtUnc_68: -3.5965235536997996e-06 - ArtUnc_69: -2.322886166859595e-06 - ArtUnc_70: 2.5743213044265925e-07 - ArtUnc_71: -1.5613343610499397e-07 - ArtUnc_72: 6.637580118037731e-08 - ArtUnc_73: -6.870695206562281e-07 - ArtUnc_74: 8.574271135636011e-07 - ArtUnc_75: 1.1569485846268291e-07 - ArtUnc_76: -6.437296749786422e-08 - ArtUnc_77: -1.837073110006341e-07 - ArtUnc_78: -2.4335993445393687e-07 - ArtUnc_79: 3.0163122457542233e-07 - ArtUnc_80: -1.0246606463765234e-07 - ArtUnc_81: 3.8856419054493195e-08 - ArtUnc_82: -3.6760400909888214e-11 - ArtUnc_83: 1.978891082722819e-08 - ArtUnc_84: -3.067811729035556e-08 - ArtUnc_85: -1.2655550615766943e-08 - ArtUnc_86: -6.924432285300878e-09 - ArtUnc_87: -1.4939796498290833e-08 - ArtUnc_88: 3.768689079174396e-08 - ArtUnc_89: 3.359132245658672e-08 - ArtUnc_90: 1.590444265428233e-08 - ArtUnc_91: -5.957595733315514e-09 - ArtUnc_92: -1.0576092301003206e-09 - ArtUnc_93: 1.3221074939131718e-08 - ArtUnc_94: -5.2314837785566986e-09 - ArtUnc_95: -6.979669883933357e-09 - ArtUnc_96: 1.543753446103767e-10 + RadErr: 1.49040000e+00 + Model_1: 2.14677619e-01 + Model_2: 2.14677619e-01 + ModelRW_1: 1.31148509e+01 + ModelRW_2: 1.31148509e+01 + JES_1: 9.15960381e-01 + JES_2: 9.15960381e-01 + ArtUnc_1: 2.85346195e+01 + ArtUnc_2: -7.12386397e+00 + ArtUnc_3: -2.71812656e+00 + ArtUnc_4: -3.89928488e-01 + ArtUnc_5: -6.70746378e-03 + ArtUnc_6: -8.28399921e-03 + ArtUnc_7: 7.56739151e-04 + ArtUnc_8: -2.78558823e-01 + ArtUnc_9: -1.55536976e-03 + ArtUnc_10: 6.84104003e-01 + ArtUnc_11: 2.70398261e-01 + ArtUnc_12: -2.57712058e-02 + ArtUnc_13: -2.01965107e-01 + ArtUnc_14: -6.12457494e-02 + ArtUnc_15: -1.37339881e-01 + ArtUnc_16: 5.55925065e-02 + ArtUnc_17: -3.89149429e-02 + ArtUnc_18: 2.24395465e-02 + ArtUnc_19: -4.61360970e-03 + ArtUnc_20: -5.95523347e-03 + ArtUnc_21: -9.19797110e-04 + ArtUnc_22: -1.56131088e-03 + ArtUnc_23: -5.65780391e-04 + ArtUnc_24: -1.38459489e-04 + ArtUnc_25: 1.58848931e-03 + ArtUnc_26: 2.79987319e-03 + ArtUnc_27: 1.20581995e-02 + ArtUnc_28: 1.04353024e-03 + ArtUnc_29: -8.42384008e-04 + ArtUnc_30: 6.85468576e-03 + ArtUnc_31: 6.56380975e-04 + ArtUnc_32: -3.39772281e-03 + ArtUnc_33: -1.35508439e-03 + ArtUnc_34: -1.89742145e-03 + ArtUnc_35: -3.31359723e-03 + ArtUnc_36: -1.10260719e-03 + ArtUnc_37: -2.11209813e-04 + ArtUnc_38: 1.61117501e-04 + ArtUnc_39: 7.78035464e-06 + ArtUnc_40: -1.09490399e-05 + ArtUnc_41: 8.16245137e-04 + ArtUnc_42: 6.59554373e-04 + ArtUnc_43: -1.92017957e-04 + ArtUnc_44: -2.92390455e-04 + ArtUnc_45: 2.92288579e-04 + ArtUnc_46: -1.49505804e-04 + ArtUnc_47: 3.44655293e-04 + ArtUnc_48: -1.15517173e-04 + ArtUnc_49: -1.70853309e-04 + ArtUnc_50: -1.36446983e-04 + ArtUnc_51: 9.21983170e-06 + ArtUnc_52: -1.49055444e-05 + ArtUnc_53: -1.40308700e-04 + ArtUnc_54: 2.17297315e-05 + ArtUnc_55: 2.55249668e-05 + ArtUnc_56: 1.12255024e-05 + ArtUnc_57: -4.69150449e-06 + ArtUnc_58: 7.61970526e-06 + ArtUnc_59: 9.82546099e-06 + ArtUnc_60: 3.62768553e-06 + ArtUnc_61: -2.39267740e-06 + ArtUnc_62: -2.61754455e-06 + ArtUnc_63: 1.76191894e-06 + ArtUnc_64: -4.09277532e-06 + ArtUnc_65: 4.00747567e-06 + ArtUnc_66: 2.91595243e-06 + ArtUnc_67: -1.08308130e-06 + ArtUnc_68: -3.59652355e-06 + ArtUnc_69: -2.32288617e-06 + ArtUnc_70: 2.57432130e-07 + ArtUnc_71: -1.56133436e-07 + ArtUnc_72: 6.63758012e-08 + ArtUnc_73: -6.87069521e-07 + ArtUnc_74: 8.57427114e-07 + ArtUnc_75: 1.15694858e-07 + ArtUnc_76: -6.43729675e-08 + ArtUnc_77: -1.83707311e-07 + ArtUnc_78: -2.43359934e-07 + ArtUnc_79: 3.01631225e-07 + ArtUnc_80: -1.02466065e-07 + ArtUnc_81: 3.88564191e-08 + ArtUnc_82: -3.67604009e-11 + ArtUnc_83: 1.97889108e-08 + ArtUnc_84: -3.06781173e-08 + ArtUnc_85: -1.26555506e-08 + ArtUnc_86: -6.92443229e-09 + ArtUnc_87: -1.49397965e-08 + ArtUnc_88: 3.76868908e-08 + ArtUnc_89: 3.35913225e-08 + ArtUnc_90: 1.59044427e-08 + ArtUnc_91: -5.95759573e-09 + ArtUnc_92: -1.05760923e-09 + ArtUnc_93: 1.32210749e-08 + ArtUnc_94: -5.23148378e-09 + ArtUnc_95: -6.97966988e-09 + ArtUnc_96: 1.54375345e-10 - stat: 0 Uncorr: 1.22 - RCES: 0.3797709309570706 - ElEn: 0.661139826360506 - ElTh: 0.49421295005290994 - Lumi: 3.0500000000000003 + RCES: 3.79770931e-01 + ElEn: 6.61139826e-01 + ElTh: 4.94212950e-01 + Lumi: 3.05000000e+00 LArN: 0.61 - StatMC: 1.5250000000000001 + StatMC: 1.52500000e+00 RadErr: 0.5368 - Model_1: 1.1991116795361472 - Model_2: 1.1991116795361472 - ModelRW_1: 4.5635257444217405 - ModelRW_2: 4.5635257444217405 - JES_1: 5.288167014665857 - JES_2: 5.288167014665857 - ArtUnc_1: 2.2970761331390066 - ArtUnc_2: -1.0892033898037916 - ArtUnc_3: -0.4626643792894114 - ArtUnc_4: 0.0034597266768986723 - ArtUnc_5: -0.07024799880322546 - ArtUnc_6: -0.025635496777499604 - ArtUnc_7: -0.0011811538975831683 - ArtUnc_8: 5.698072050451249 - ArtUnc_9: 0.01838660928832924 - ArtUnc_10: -6.02475607507018 - ArtUnc_11: -2.9660838975572674 - ArtUnc_12: 0.509042374153124 - ArtUnc_13: 1.8418379289105533 - ArtUnc_14: 0.5185384503576153 - ArtUnc_15: 1.3053603129533584 - ArtUnc_16: -0.48075482695253724 - ArtUnc_17: 0.3546020620221246 - ArtUnc_18: -0.19000896413705118 - ArtUnc_19: 0.03448455438106577 - ArtUnc_20: 0.0334777718193411 - ArtUnc_21: 0.00667766552088803 - ArtUnc_22: 0.005573150621444783 - ArtUnc_23: 0.0016140948748548712 - ArtUnc_24: 0.000568273667308521 - ArtUnc_25: -0.13949268880938007 - ArtUnc_26: -0.07352578045564359 - ArtUnc_27: -0.1808656512600164 - ArtUnc_28: -0.021260206797389925 - ArtUnc_29: 0.00997221831462979 - ArtUnc_30: -0.09065927398924134 - ArtUnc_31: -0.0006883162712905388 - ArtUnc_32: 0.04229196904252959 - ArtUnc_33: 0.01621967581405243 - ArtUnc_34: 0.027143903368802316 - ArtUnc_35: 0.04350407896178598 - ArtUnc_36: 0.016514706658114008 - ArtUnc_37: 0.0024434123447177863 - ArtUnc_38: -0.002971403779176569 - ArtUnc_39: -0.0007310172834329555 - ArtUnc_40: -0.00021136252877450334 - ArtUnc_41: -0.007160870664322624 - ArtUnc_42: -0.005876951781650189 - ArtUnc_43: 0.0017314514208508819 - ArtUnc_44: 0.002553951127823745 - ArtUnc_45: -0.0025656232271245513 - ArtUnc_46: 0.0011881545478558493 - ArtUnc_47: -0.002804030604187082 - ArtUnc_48: 0.0008879580966485295 - ArtUnc_49: 0.001369146410883418 - ArtUnc_50: 0.0011494198540057063 - ArtUnc_51: -9.055078135816814e-05 - ArtUnc_52: 7.294074042155794e-05 - ArtUnc_53: 0.001181951523907321 - ArtUnc_54: -0.00025362312439836495 - ArtUnc_55: -0.00018472562965263104 - ArtUnc_56: -8.739836558783833e-05 - ArtUnc_57: 4.885657431811609e-05 - ArtUnc_58: -5.51390303127279e-05 - ArtUnc_59: -0.00013839594374450153 - ArtUnc_60: -4.877085515415337e-05 - ArtUnc_61: 4.22707537278272e-05 - ArtUnc_62: 2.8700177521542225e-05 - ArtUnc_63: -2.3803806686567963e-05 - ArtUnc_64: 5.132418586798827e-05 - ArtUnc_65: -5.261628114177895e-05 - ArtUnc_66: -3.88344980812236e-05 - ArtUnc_67: 1.3491744321721498e-05 - ArtUnc_68: 3.7428430802205095e-05 - ArtUnc_69: 2.0431367214919684e-05 - ArtUnc_70: -6.037085275244034e-07 - ArtUnc_71: 7.380420140613976e-07 - ArtUnc_72: -1.1211342621343135e-06 - ArtUnc_73: 7.325768443241816e-06 - ArtUnc_74: -8.916791594335334e-06 - ArtUnc_75: -1.162861834698842e-06 - ArtUnc_76: 6.250625946348806e-07 - ArtUnc_77: 1.82006350343776e-06 - ArtUnc_78: 2.525337070075889e-06 - ArtUnc_79: -3.227347634136641e-06 - ArtUnc_80: 9.159003097231551e-07 - ArtUnc_81: -3.4720463522110955e-07 - ArtUnc_82: 8.063925823509818e-10 - ArtUnc_83: -2.002810595725168e-07 - ArtUnc_84: 2.5676589471883596e-07 - ArtUnc_85: 1.2916345002614888e-07 - ArtUnc_86: 5.406845147989175e-08 - ArtUnc_87: 1.3886480880961782e-07 - ArtUnc_88: -4.220408273270315e-07 - ArtUnc_89: -3.5825707537558045e-07 - ArtUnc_90: -1.3673297886087641e-07 - ArtUnc_91: 5.3828040959303416e-08 - ArtUnc_92: 9.722202506314322e-09 - ArtUnc_93: -1.2730479200691123e-07 - ArtUnc_94: 5.895056924848404e-08 - ArtUnc_95: 3.96949352117729e-08 - ArtUnc_96: 4.001083540114452e-09 + Model_1: 1.19911168e+00 + Model_2: 1.19911168e+00 + ModelRW_1: 4.56352574e+00 + ModelRW_2: 4.56352574e+00 + JES_1: 5.28816701e+00 + JES_2: 5.28816701e+00 + ArtUnc_1: 2.29707613e+00 + ArtUnc_2: -1.08920339e+00 + ArtUnc_3: -4.62664379e-01 + ArtUnc_4: 3.45972668e-03 + ArtUnc_5: -7.02479988e-02 + ArtUnc_6: -2.56354968e-02 + ArtUnc_7: -1.18115390e-03 + ArtUnc_8: 5.69807205e+00 + ArtUnc_9: 1.83866093e-02 + ArtUnc_10: -6.02475608e+00 + ArtUnc_11: -2.96608390e+00 + ArtUnc_12: 5.09042374e-01 + ArtUnc_13: 1.84183793e+00 + ArtUnc_14: 5.18538450e-01 + ArtUnc_15: 1.30536031e+00 + ArtUnc_16: -4.80754827e-01 + ArtUnc_17: 3.54602062e-01 + ArtUnc_18: -1.90008964e-01 + ArtUnc_19: 3.44845544e-02 + ArtUnc_20: 3.34777718e-02 + ArtUnc_21: 6.67766552e-03 + ArtUnc_22: 5.57315062e-03 + ArtUnc_23: 1.61409487e-03 + ArtUnc_24: 5.68273667e-04 + ArtUnc_25: -1.39492689e-01 + ArtUnc_26: -7.35257805e-02 + ArtUnc_27: -1.80865651e-01 + ArtUnc_28: -2.12602068e-02 + ArtUnc_29: 9.97221831e-03 + ArtUnc_30: -9.06592740e-02 + ArtUnc_31: -6.88316271e-04 + ArtUnc_32: 4.22919690e-02 + ArtUnc_33: 1.62196758e-02 + ArtUnc_34: 2.71439034e-02 + ArtUnc_35: 4.35040790e-02 + ArtUnc_36: 1.65147067e-02 + ArtUnc_37: 2.44341234e-03 + ArtUnc_38: -2.97140378e-03 + ArtUnc_39: -7.31017283e-04 + ArtUnc_40: -2.11362529e-04 + ArtUnc_41: -7.16087066e-03 + ArtUnc_42: -5.87695178e-03 + ArtUnc_43: 1.73145142e-03 + ArtUnc_44: 2.55395113e-03 + ArtUnc_45: -2.56562323e-03 + ArtUnc_46: 1.18815455e-03 + ArtUnc_47: -2.80403060e-03 + ArtUnc_48: 8.87958097e-04 + ArtUnc_49: 1.36914641e-03 + ArtUnc_50: 1.14941985e-03 + ArtUnc_51: -9.05507814e-05 + ArtUnc_52: 7.29407404e-05 + ArtUnc_53: 1.18195152e-03 + ArtUnc_54: -2.53623124e-04 + ArtUnc_55: -1.84725630e-04 + ArtUnc_56: -8.73983656e-05 + ArtUnc_57: 4.88565743e-05 + ArtUnc_58: -5.51390303e-05 + ArtUnc_59: -1.38395944e-04 + ArtUnc_60: -4.87708552e-05 + ArtUnc_61: 4.22707537e-05 + ArtUnc_62: 2.87001775e-05 + ArtUnc_63: -2.38038067e-05 + ArtUnc_64: 5.13241859e-05 + ArtUnc_65: -5.26162811e-05 + ArtUnc_66: -3.88344981e-05 + ArtUnc_67: 1.34917443e-05 + ArtUnc_68: 3.74284308e-05 + ArtUnc_69: 2.04313672e-05 + ArtUnc_70: -6.03708528e-07 + ArtUnc_71: 7.38042014e-07 + ArtUnc_72: -1.12113426e-06 + ArtUnc_73: 7.32576844e-06 + ArtUnc_74: -8.91679159e-06 + ArtUnc_75: -1.16286183e-06 + ArtUnc_76: 6.25062595e-07 + ArtUnc_77: 1.82006350e-06 + ArtUnc_78: 2.52533707e-06 + ArtUnc_79: -3.22734763e-06 + ArtUnc_80: 9.15900310e-07 + ArtUnc_81: -3.47204635e-07 + ArtUnc_82: 8.06392582e-10 + ArtUnc_83: -2.00281060e-07 + ArtUnc_84: 2.56765895e-07 + ArtUnc_85: 1.29163450e-07 + ArtUnc_86: 5.40684515e-08 + ArtUnc_87: 1.38864809e-07 + ArtUnc_88: -4.22040827e-07 + ArtUnc_89: -3.58257075e-07 + ArtUnc_90: -1.36732979e-07 + ArtUnc_91: 5.38280410e-08 + ArtUnc_92: 9.72220251e-09 + ArtUnc_93: -1.27304792e-07 + ArtUnc_94: 5.89505692e-08 + ArtUnc_95: 3.96949352e-08 + ArtUnc_96: 4.00108354e-09 - stat: 0 Uncorr: 0.384 - RCES: 0.37448860490006897 - ElEn: 0.15450930845745187 - ElTh: 0.10969234066241819 + RCES: 3.74488605e-01 + ElEn: 1.54509308e-01 + ElTh: 1.09692341e-01 Lumi: 0.96 LArN: 0.192 StatMC: 0.48384 RadErr: 0.1536 - Model_1: 0.293251324293685 - Model_2: 0.293251324293685 - ModelRW_1: 0.5023286573549234 - ModelRW_2: 0.5023286573549234 - JES_1: 1.4051744011331833 - JES_2: 1.4051744011331833 - ArtUnc_1: -0.0009965196005386923 - ArtUnc_2: -0.04907637101446047 - ArtUnc_3: -0.04756497054746269 - ArtUnc_4: -0.013756699974385526 - ArtUnc_5: 0.0013405642217313753 - ArtUnc_6: -0.0003866753706473783 - ArtUnc_7: -0.00012760105812504135 - ArtUnc_8: 0.3173188838021138 - ArtUnc_9: 0.0011592755697388047 - ArtUnc_10: -0.45041721817330066 - ArtUnc_11: -0.2137337371651879 - ArtUnc_12: 0.07390984381923797 - ArtUnc_13: 0.15323462967136156 - ArtUnc_14: 0.016725144962614295 - ArtUnc_15: 0.06154109650884441 - ArtUnc_16: 0.0012801800918984287 - ArtUnc_17: -0.010197513896344924 - ArtUnc_18: -0.0036468856197927895 - ArtUnc_19: -0.007440900959471428 - ArtUnc_20: 0.030597234662372387 - ArtUnc_21: 0.01992090985890962 - ArtUnc_22: -0.008080984027201216 - ArtUnc_23: -0.002513702610298424 - ArtUnc_24: 0.0004130954196040905 - ArtUnc_25: -0.7665401298664287 - ArtUnc_26: 0.20904621147775262 - ArtUnc_27: 2.4722660721619834 - ArtUnc_28: -0.2963104198978628 - ArtUnc_29: -0.22890452780055967 - ArtUnc_30: 1.0542185366477073 - ArtUnc_31: -0.028303682128787668 - ArtUnc_32: -0.49320836054377415 - ArtUnc_33: -0.1378857262320036 - ArtUnc_34: -0.27841141169946304 - ArtUnc_35: -0.4738975981671955 - ArtUnc_36: -0.17395524785262387 - ArtUnc_37: -0.02944182617674767 - ArtUnc_38: 0.029621854680974245 - ArtUnc_39: 0.0037937596643816225 - ArtUnc_40: 0.0006171169738548413 - ArtUnc_41: 0.07130678915444527 - ArtUnc_42: 0.09783409895430999 - ArtUnc_43: -0.0025186435155468063 - ArtUnc_44: -0.025573406243681544 - ArtUnc_45: 0.03679531486118474 - ArtUnc_46: -0.003224507487493442 - ArtUnc_47: 0.022428942333149793 - ArtUnc_48: 0.0027457022023610472 - ArtUnc_49: -0.013380306228957847 - ArtUnc_50: -0.01680463061811569 - ArtUnc_51: 0.0006300547084760256 - ArtUnc_52: -0.0005791249759598666 - ArtUnc_53: -0.016114514223097707 - ArtUnc_54: 0.005240293819542083 - ArtUnc_55: 0.002967708631284937 - ArtUnc_56: 0.00019026322521595404 - ArtUnc_57: 0.0002804429750602793 - ArtUnc_58: -0.001894443931454924 - ArtUnc_59: 0.0013271820680700766 - ArtUnc_60: 0.00035204867711393067 - ArtUnc_61: -0.0014031938044521107 - ArtUnc_62: 0.000288213901971008 - ArtUnc_63: 0.0005940507007868716 - ArtUnc_64: -8.618144975369645e-05 - ArtUnc_65: 0.0002762138691505921 - ArtUnc_66: 0.0008705951659873383 - ArtUnc_67: -0.0002900155986531886 - ArtUnc_68: -0.001088372977162145 - ArtUnc_69: -0.0005855436480218688 - ArtUnc_70: 3.891221637388164e-05 - ArtUnc_71: -0.00010782019438672507 - ArtUnc_72: 7.085871654984114e-05 - ArtUnc_73: -9.26754934375886e-06 - ArtUnc_74: 1.0338450946933556e-05 - ArtUnc_75: 2.5984669077553655e-06 - ArtUnc_76: -3.7953189242014587e-06 - ArtUnc_77: -6.080111235031745e-06 - ArtUnc_78: -1.145943283772544e-05 - ArtUnc_79: 1.3531736033285865e-05 - ArtUnc_80: 4.785256084644365e-06 - ArtUnc_81: -1.4476474117618153e-06 - ArtUnc_82: 8.717567938832361e-09 - ArtUnc_83: 2.1625432339056964e-06 - ArtUnc_84: 1.4245958021681639e-06 - ArtUnc_85: -1.5918227317219126e-06 - ArtUnc_86: 2.033747431831262e-06 - ArtUnc_87: 1.5086338157833956e-06 - ArtUnc_88: 1.705818229522455e-06 - ArtUnc_89: 1.6382068061899532e-06 - ArtUnc_90: -2.8779633835803196e-07 - ArtUnc_91: 4.3439631693636184e-07 - ArtUnc_92: 6.715287876035183e-08 - ArtUnc_93: -5.728647448855988e-08 - ArtUnc_94: -7.621759654344934e-07 - ArtUnc_95: 4.1672703857164295e-08 - ArtUnc_96: -2.8880854045615154e-07 + Model_1: 2.93251324e-01 + Model_2: 2.93251324e-01 + ModelRW_1: 5.02328657e-01 + ModelRW_2: 5.02328657e-01 + JES_1: 1.40517440e+00 + JES_2: 1.40517440e+00 + ArtUnc_1: -9.96519601e-04 + ArtUnc_2: -4.90763710e-02 + ArtUnc_3: -4.75649705e-02 + ArtUnc_4: -1.37567000e-02 + ArtUnc_5: 1.34056422e-03 + ArtUnc_6: -3.86675371e-04 + ArtUnc_7: -1.27601058e-04 + ArtUnc_8: 3.17318884e-01 + ArtUnc_9: 1.15927557e-03 + ArtUnc_10: -4.50417218e-01 + ArtUnc_11: -2.13733737e-01 + ArtUnc_12: 7.39098438e-02 + ArtUnc_13: 1.53234630e-01 + ArtUnc_14: 1.67251450e-02 + ArtUnc_15: 6.15410965e-02 + ArtUnc_16: 1.28018009e-03 + ArtUnc_17: -1.01975139e-02 + ArtUnc_18: -3.64688562e-03 + ArtUnc_19: -7.44090096e-03 + ArtUnc_20: 3.05972347e-02 + ArtUnc_21: 1.99209099e-02 + ArtUnc_22: -8.08098403e-03 + ArtUnc_23: -2.51370261e-03 + ArtUnc_24: 4.13095420e-04 + ArtUnc_25: -7.66540130e-01 + ArtUnc_26: 2.09046211e-01 + ArtUnc_27: 2.47226607e+00 + ArtUnc_28: -2.96310420e-01 + ArtUnc_29: -2.28904528e-01 + ArtUnc_30: 1.05421854e+00 + ArtUnc_31: -2.83036821e-02 + ArtUnc_32: -4.93208361e-01 + ArtUnc_33: -1.37885726e-01 + ArtUnc_34: -2.78411412e-01 + ArtUnc_35: -4.73897598e-01 + ArtUnc_36: -1.73955248e-01 + ArtUnc_37: -2.94418262e-02 + ArtUnc_38: 2.96218547e-02 + ArtUnc_39: 3.79375966e-03 + ArtUnc_40: 6.17116974e-04 + ArtUnc_41: 7.13067892e-02 + ArtUnc_42: 9.78340990e-02 + ArtUnc_43: -2.51864352e-03 + ArtUnc_44: -2.55734062e-02 + ArtUnc_45: 3.67953149e-02 + ArtUnc_46: -3.22450749e-03 + ArtUnc_47: 2.24289423e-02 + ArtUnc_48: 2.74570220e-03 + ArtUnc_49: -1.33803062e-02 + ArtUnc_50: -1.68046306e-02 + ArtUnc_51: 6.30054708e-04 + ArtUnc_52: -5.79124976e-04 + ArtUnc_53: -1.61145142e-02 + ArtUnc_54: 5.24029382e-03 + ArtUnc_55: 2.96770863e-03 + ArtUnc_56: 1.90263225e-04 + ArtUnc_57: 2.80442975e-04 + ArtUnc_58: -1.89444393e-03 + ArtUnc_59: 1.32718207e-03 + ArtUnc_60: 3.52048677e-04 + ArtUnc_61: -1.40319380e-03 + ArtUnc_62: 2.88213902e-04 + ArtUnc_63: 5.94050701e-04 + ArtUnc_64: -8.61814498e-05 + ArtUnc_65: 2.76213869e-04 + ArtUnc_66: 8.70595166e-04 + ArtUnc_67: -2.90015599e-04 + ArtUnc_68: -1.08837298e-03 + ArtUnc_69: -5.85543648e-04 + ArtUnc_70: 3.89122164e-05 + ArtUnc_71: -1.07820194e-04 + ArtUnc_72: 7.08587165e-05 + ArtUnc_73: -9.26754934e-06 + ArtUnc_74: 1.03384509e-05 + ArtUnc_75: 2.59846691e-06 + ArtUnc_76: -3.79531892e-06 + ArtUnc_77: -6.08011124e-06 + ArtUnc_78: -1.14594328e-05 + ArtUnc_79: 1.35317360e-05 + ArtUnc_80: 4.78525608e-06 + ArtUnc_81: -1.44764741e-06 + ArtUnc_82: 8.71756794e-09 + ArtUnc_83: 2.16254323e-06 + ArtUnc_84: 1.42459580e-06 + ArtUnc_85: -1.59182273e-06 + ArtUnc_86: 2.03374743e-06 + ArtUnc_87: 1.50863382e-06 + ArtUnc_88: 1.70581823e-06 + ArtUnc_89: 1.63820681e-06 + ArtUnc_90: -2.87796338e-07 + ArtUnc_91: 4.34396317e-07 + ArtUnc_92: 6.71528788e-08 + ArtUnc_93: -5.72864745e-08 + ArtUnc_94: -7.62175965e-07 + ArtUnc_95: 4.16727039e-08 + ArtUnc_96: -2.88808540e-07 - stat: 0 - Uncorr: 0.09369999999999999 - RCES: 0.09759204738092138 - ElEn: 0.03226873462037208 - ElTh: 0.032630612999911594 - Lumi: 0.23424999999999999 - LArN: 0.046849999999999996 + Uncorr: 9.37000000e-02 + RCES: 9.75920474e-02 + ElEn: 3.22687346e-02 + ElTh: 3.26306130e-02 + Lumi: 2.34250000e-01 + LArN: 4.68500000e-02 StatMC: 0.185526 RadErr: 0.069338 - Model_1: 0.01457629918737949 - Model_2: 0.01457629918737949 - ModelRW_1: 0.12919901552450003 - ModelRW_2: 0.12919901552450003 - JES_1: 0.23475730467655312 - JES_2: 0.23475730467655312 - ArtUnc_1: 0.00048222324563112264 - ArtUnc_2: -0.0004548193660647549 - ArtUnc_3: -0.000286514996135342 - ArtUnc_4: -5.045932370756765e-06 - ArtUnc_5: -6.963204243240928e-05 - ArtUnc_6: -3.525407986559304e-05 - ArtUnc_7: -7.335364812501672e-07 - ArtUnc_8: 0.011353917117131688 - ArtUnc_9: 4.218063182166823e-05 - ArtUnc_10: -0.015707934389066265 - ArtUnc_11: -0.009803885316949498 - ArtUnc_12: 0.0021536993705559898 - ArtUnc_13: 0.007532844337655942 - ArtUnc_14: 0.0021950944042568683 - ArtUnc_15: 0.006046097250410134 - ArtUnc_16: -0.0023116927991033214 - ArtUnc_17: 0.0017171120266754247 - ArtUnc_18: -0.0010288977453566045 - ArtUnc_19: 0.00011311504002460291 - ArtUnc_20: 0.0005321726757171317 - ArtUnc_21: 0.00031996106432853085 - ArtUnc_22: -9.235564886922412e-05 - ArtUnc_23: -4.181140486276274e-05 - ArtUnc_24: 1.90347021989865e-05 - ArtUnc_25: -0.020487758169369312 - ArtUnc_26: 0.011574866257633931 - ArtUnc_27: 0.08912912698772603 - ArtUnc_28: -0.008665626267010482 - ArtUnc_29: -0.006635338253216263 - ArtUnc_30: 0.027945876812184477 - ArtUnc_31: -0.0009772297497179653 - ArtUnc_32: -0.010216142199216087 - ArtUnc_33: -0.002845330035767449 - ArtUnc_34: -0.005570333273645624 - ArtUnc_35: -0.009662654568296104 - ArtUnc_36: -0.004528737722651677 - ArtUnc_37: -0.0012038460339396265 - ArtUnc_38: 0.0018731277432525726 - ArtUnc_39: 0.0008503564209471586 - ArtUnc_40: 0.00013844562202529199 - ArtUnc_41: 0.6638495686437801 - ArtUnc_42: -0.5706914172500034 - ArtUnc_43: -0.37756148387400784 - ArtUnc_44: -0.03501730818425852 - ArtUnc_45: -0.22079268371283536 - ArtUnc_46: -0.1555648662556946 - ArtUnc_47: 0.03878286742300583 - ArtUnc_48: -0.17923666489526285 - ArtUnc_49: 0.05428378152839977 - ArtUnc_50: 0.1324244338946672 - ArtUnc_51: -0.003416335306031974 - ArtUnc_52: 0.007711552695186313 - ArtUnc_53: 0.13148541911448347 - ArtUnc_54: -0.04808237290860438 - ArtUnc_55: -0.03475140647080258 - ArtUnc_56: 0.003634129374122391 - ArtUnc_57: -0.008015429032455383 - ArtUnc_58: 0.042966783029020544 - ArtUnc_59: -0.021593356391989723 - ArtUnc_60: -0.005088828565798671 - ArtUnc_61: 0.024094100946153038 - ArtUnc_62: -0.006406534115997293 - ArtUnc_63: -0.009260583805346423 - ArtUnc_64: -0.0007324592001938286 - ArtUnc_65: -0.0023102409510445 - ArtUnc_66: -0.011795995784537529 - ArtUnc_67: 0.003798810760947751 - ArtUnc_68: 0.014005992450295192 - ArtUnc_69: 0.0072733152673920285 - ArtUnc_70: -0.0004229394256654641 - ArtUnc_71: 0.0014663376725319356 - ArtUnc_72: -0.0009929230225179458 - ArtUnc_73: 0.00011844704664039685 - ArtUnc_74: -0.00023022953652054892 - ArtUnc_75: -5.280533255611597e-05 - ArtUnc_76: 5.8320312563038125e-05 - ArtUnc_77: 0.00013664656253665832 - ArtUnc_78: 0.00022585533316878535 - ArtUnc_79: -0.0003222283740101118 - ArtUnc_80: -8.560658591625873e-05 - ArtUnc_81: 2.7635731751347974e-05 - ArtUnc_82: -1.4471079941616133e-07 - ArtUnc_83: -4.8492427455588045e-05 - ArtUnc_84: -2.7385198275194944e-05 - ArtUnc_85: 3.691156820800699e-05 - ArtUnc_86: -4.585635645987649e-05 - ArtUnc_87: -3.282889882737541e-05 - ArtUnc_88: -3.2808291692027684e-05 - ArtUnc_89: -5.063474698032896e-05 - ArtUnc_90: 5.940492185626315e-06 - ArtUnc_91: -9.96937532891693e-06 - ArtUnc_92: -1.5861418317524066e-06 - ArtUnc_93: 1.394519710889056e-05 - ArtUnc_94: 1.976061848848542e-05 - ArtUnc_95: 5.415803724684479e-06 - ArtUnc_96: 8.099606377266068e-06 + Model_1: 1.45762992e-02 + Model_2: 1.45762992e-02 + ModelRW_1: 1.29199016e-01 + ModelRW_2: 1.29199016e-01 + JES_1: 2.34757305e-01 + JES_2: 2.34757305e-01 + ArtUnc_1: 4.82223246e-04 + ArtUnc_2: -4.54819366e-04 + ArtUnc_3: -2.86514996e-04 + ArtUnc_4: -5.04593237e-06 + ArtUnc_5: -6.96320424e-05 + ArtUnc_6: -3.52540799e-05 + ArtUnc_7: -7.33536481e-07 + ArtUnc_8: 1.13539171e-02 + ArtUnc_9: 4.21806318e-05 + ArtUnc_10: -1.57079344e-02 + ArtUnc_11: -9.80388532e-03 + ArtUnc_12: 2.15369937e-03 + ArtUnc_13: 7.53284434e-03 + ArtUnc_14: 2.19509440e-03 + ArtUnc_15: 6.04609725e-03 + ArtUnc_16: -2.31169280e-03 + ArtUnc_17: 1.71711203e-03 + ArtUnc_18: -1.02889775e-03 + ArtUnc_19: 1.13115040e-04 + ArtUnc_20: 5.32172676e-04 + ArtUnc_21: 3.19961064e-04 + ArtUnc_22: -9.23556489e-05 + ArtUnc_23: -4.18114049e-05 + ArtUnc_24: 1.90347022e-05 + ArtUnc_25: -2.04877582e-02 + ArtUnc_26: 1.15748663e-02 + ArtUnc_27: 8.91291270e-02 + ArtUnc_28: -8.66562627e-03 + ArtUnc_29: -6.63533825e-03 + ArtUnc_30: 2.79458768e-02 + ArtUnc_31: -9.77229750e-04 + ArtUnc_32: -1.02161422e-02 + ArtUnc_33: -2.84533004e-03 + ArtUnc_34: -5.57033327e-03 + ArtUnc_35: -9.66265457e-03 + ArtUnc_36: -4.52873772e-03 + ArtUnc_37: -1.20384603e-03 + ArtUnc_38: 1.87312774e-03 + ArtUnc_39: 8.50356421e-04 + ArtUnc_40: 1.38445622e-04 + ArtUnc_41: 6.63849569e-01 + ArtUnc_42: -5.70691417e-01 + ArtUnc_43: -3.77561484e-01 + ArtUnc_44: -3.50173082e-02 + ArtUnc_45: -2.20792684e-01 + ArtUnc_46: -1.55564866e-01 + ArtUnc_47: 3.87828674e-02 + ArtUnc_48: -1.79236665e-01 + ArtUnc_49: 5.42837815e-02 + ArtUnc_50: 1.32424434e-01 + ArtUnc_51: -3.41633531e-03 + ArtUnc_52: 7.71155270e-03 + ArtUnc_53: 1.31485419e-01 + ArtUnc_54: -4.80823729e-02 + ArtUnc_55: -3.47514065e-02 + ArtUnc_56: 3.63412937e-03 + ArtUnc_57: -8.01542903e-03 + ArtUnc_58: 4.29667830e-02 + ArtUnc_59: -2.15933564e-02 + ArtUnc_60: -5.08882857e-03 + ArtUnc_61: 2.40941009e-02 + ArtUnc_62: -6.40653412e-03 + ArtUnc_63: -9.26058381e-03 + ArtUnc_64: -7.32459200e-04 + ArtUnc_65: -2.31024095e-03 + ArtUnc_66: -1.17959958e-02 + ArtUnc_67: 3.79881076e-03 + ArtUnc_68: 1.40059925e-02 + ArtUnc_69: 7.27331527e-03 + ArtUnc_70: -4.22939426e-04 + ArtUnc_71: 1.46633767e-03 + ArtUnc_72: -9.92923023e-04 + ArtUnc_73: 1.18447047e-04 + ArtUnc_74: -2.30229537e-04 + ArtUnc_75: -5.28053326e-05 + ArtUnc_76: 5.83203126e-05 + ArtUnc_77: 1.36646563e-04 + ArtUnc_78: 2.25855333e-04 + ArtUnc_79: -3.22228374e-04 + ArtUnc_80: -8.56065859e-05 + ArtUnc_81: 2.76357318e-05 + ArtUnc_82: -1.44710799e-07 + ArtUnc_83: -4.84924275e-05 + ArtUnc_84: -2.73851983e-05 + ArtUnc_85: 3.69115682e-05 + ArtUnc_86: -4.58563565e-05 + ArtUnc_87: -3.28288988e-05 + ArtUnc_88: -3.28082917e-05 + ArtUnc_89: -5.06347470e-05 + ArtUnc_90: 5.94049219e-06 + ArtUnc_91: -9.96937533e-06 + ArtUnc_92: -1.58614183e-06 + ArtUnc_93: 1.39451971e-05 + ArtUnc_94: 1.97606185e-05 + ArtUnc_95: 5.41580372e-06 + ArtUnc_96: 8.09960638e-06 - stat: 0 Uncorr: 0.00999 - RCES: 0.00032754405428888494 - ElEn: 0.022169698520277625 - ElTh: 0.0098748257051707 + RCES: 3.27544054e-04 + ElEn: 2.21696985e-02 + ElTh: 9.87482571e-03 Lumi: 0.024975 LArN: 0.004995 - StatMC: 0.10369620000000002 - RadErr: 0.0278721 - Model_1: 0.1299775400905864 - Model_2: 0.1299775400905864 - ModelRW_1: 0.1049003516491961 - ModelRW_2: 0.1049003516491961 - JES_1: 0.0772048228741168 - JES_2: 0.0772048228741168 - ArtUnc_1: 8.284240535459942e-05 - ArtUnc_2: -7.143652520747553e-05 - ArtUnc_3: -4.2939106416322474e-05 - ArtUnc_4: 9.189147705604213e-07 - ArtUnc_5: -1.168392477351611e-05 - ArtUnc_6: -5.437220127116407e-06 - ArtUnc_7: -3.186788680124188e-07 - ArtUnc_8: 0.0017507675790445158 - ArtUnc_9: 6.3208949947927375e-06 - ArtUnc_10: -0.0023152786563023693 - ArtUnc_11: -0.001512260185718958 - ArtUnc_12: 0.0002867266414185476 - ArtUnc_13: 0.0011707137810086823 - ArtUnc_14: 0.00037400319118526687 - ArtUnc_15: 0.0010149982650403862 - ArtUnc_16: -0.0004244565163130159 - ArtUnc_17: 0.00034015178709396565 - ArtUnc_18: -0.000192932820089954 - ArtUnc_19: 4.354511051629244e-05 - ArtUnc_20: 3.082354649563666e-05 - ArtUnc_21: 1.7465997797400437e-06 - ArtUnc_22: 1.2057399180159132e-05 - ArtUnc_23: 4.491744744461753e-06 - ArtUnc_24: 9.79744710611963e-07 - ArtUnc_25: 0.000207381057035519 - ArtUnc_26: -0.0004230761354287319 - ArtUnc_27: -0.0031937538950595834 - ArtUnc_28: 0.0002789218703015377 - ArtUnc_29: 0.0003826943616382765 - ArtUnc_30: -0.0021125763707275347 - ArtUnc_31: 4.634065252060755e-05 - ArtUnc_32: 0.0012541085350820632 - ArtUnc_33: 0.0003780885952905535 - ArtUnc_34: 0.0008401347196628806 - ArtUnc_35: 0.0014372357214196374 - ArtUnc_36: 0.0005759556505313191 - ArtUnc_37: 9.800053871621878e-05 - ArtUnc_38: -0.0001049586563108525 - ArtUnc_39: -1.4606526390462278e-05 - ArtUnc_40: -3.996192469797755e-06 - ArtUnc_41: 0.011750948973270116 - ArtUnc_42: -0.015575601828048118 - ArtUnc_43: -0.004189188127765207 - ArtUnc_44: 0.0011989486168144544 - ArtUnc_45: -0.002337986903522328 - ArtUnc_46: 0.00015453013196292003 - ArtUnc_47: -0.0005559318681489714 - ArtUnc_48: 2.7101397601735106e-05 - ArtUnc_49: -0.00020626001420911725 - ArtUnc_50: -5.820870463632121e-05 - ArtUnc_51: -1.6662171501764027e-05 - ArtUnc_52: 2.5544439689513627e-05 - ArtUnc_53: -0.00014939065649154743 - ArtUnc_54: -9.672127646801581e-05 - ArtUnc_55: -1.1098661883805367e-05 - ArtUnc_56: 1.7388712030098158e-05 - ArtUnc_57: -0.11990698671213583 - ArtUnc_58: 0.1630472526295877 - ArtUnc_59: 0.23306723240397223 - ArtUnc_60: 0.08346872670813442 - ArtUnc_61: -0.05613004221263735 - ArtUnc_62: -0.0518004490850811 - ArtUnc_63: 0.030589435370586383 - ArtUnc_64: -0.08155023196137762 - ArtUnc_65: 0.07903336729866912 - ArtUnc_66: 0.04530305726093659 - ArtUnc_67: -0.013349390116759653 - ArtUnc_68: -0.0264080500996915 - ArtUnc_69: -0.012559102862259136 - ArtUnc_70: 0.0011507880480598309 - ArtUnc_71: -0.00039464089688755454 - ArtUnc_72: 0.0015003052226943954 - ArtUnc_73: -0.01664476478326977 - ArtUnc_74: 0.017515386373661138 - ArtUnc_75: 0.0022558265607425716 - ArtUnc_76: 0.00046133251513093 - ArtUnc_77: -0.0034936131326428277 - ArtUnc_78: -0.0026908293071845365 - ArtUnc_79: 0.006560964965245572 - ArtUnc_80: 0.0009448181700934723 - ArtUnc_81: -0.00044521757762517754 - ArtUnc_82: 9.185677018507984e-08 - ArtUnc_83: -0.00011809609694401655 - ArtUnc_84: 0.0005436643903216629 - ArtUnc_85: 6.648844060157769e-05 - ArtUnc_86: 4.8256104908536475e-05 - ArtUnc_87: 7.071954635315663e-05 - ArtUnc_88: 0.00035533421302064275 - ArtUnc_89: 0.00101065159677701 - ArtUnc_90: -0.00013932834585073713 - ArtUnc_91: 2.375834640852458e-05 - ArtUnc_92: 3.920061732908886e-06 - ArtUnc_93: -4.664789298303528e-05 - ArtUnc_94: -0.0005146245491329366 - ArtUnc_95: -0.00012595303709050904 - ArtUnc_96: 1.3968545028191379e-06 + StatMC: 1.03696200e-01 + RadErr: 2.78721000e-02 + Model_1: 1.29977540e-01 + Model_2: 1.29977540e-01 + ModelRW_1: 1.04900352e-01 + ModelRW_2: 1.04900352e-01 + JES_1: 7.72048229e-02 + JES_2: 7.72048229e-02 + ArtUnc_1: 8.28424054e-05 + ArtUnc_2: -7.14365252e-05 + ArtUnc_3: -4.29391064e-05 + ArtUnc_4: 9.18914771e-07 + ArtUnc_5: -1.16839248e-05 + ArtUnc_6: -5.43722013e-06 + ArtUnc_7: -3.18678868e-07 + ArtUnc_8: 1.75076758e-03 + ArtUnc_9: 6.32089499e-06 + ArtUnc_10: -2.31527866e-03 + ArtUnc_11: -1.51226019e-03 + ArtUnc_12: 2.86726641e-04 + ArtUnc_13: 1.17071378e-03 + ArtUnc_14: 3.74003191e-04 + ArtUnc_15: 1.01499827e-03 + ArtUnc_16: -4.24456516e-04 + ArtUnc_17: 3.40151787e-04 + ArtUnc_18: -1.92932820e-04 + ArtUnc_19: 4.35451105e-05 + ArtUnc_20: 3.08235465e-05 + ArtUnc_21: 1.74659978e-06 + ArtUnc_22: 1.20573992e-05 + ArtUnc_23: 4.49174474e-06 + ArtUnc_24: 9.79744711e-07 + ArtUnc_25: 2.07381057e-04 + ArtUnc_26: -4.23076135e-04 + ArtUnc_27: -3.19375390e-03 + ArtUnc_28: 2.78921870e-04 + ArtUnc_29: 3.82694362e-04 + ArtUnc_30: -2.11257637e-03 + ArtUnc_31: 4.63406525e-05 + ArtUnc_32: 1.25410854e-03 + ArtUnc_33: 3.78088595e-04 + ArtUnc_34: 8.40134720e-04 + ArtUnc_35: 1.43723572e-03 + ArtUnc_36: 5.75955651e-04 + ArtUnc_37: 9.80005387e-05 + ArtUnc_38: -1.04958656e-04 + ArtUnc_39: -1.46065264e-05 + ArtUnc_40: -3.99619247e-06 + ArtUnc_41: 1.17509490e-02 + ArtUnc_42: -1.55756018e-02 + ArtUnc_43: -4.18918813e-03 + ArtUnc_44: 1.19894862e-03 + ArtUnc_45: -2.33798690e-03 + ArtUnc_46: 1.54530132e-04 + ArtUnc_47: -5.55931868e-04 + ArtUnc_48: 2.71013976e-05 + ArtUnc_49: -2.06260014e-04 + ArtUnc_50: -5.82087046e-05 + ArtUnc_51: -1.66621715e-05 + ArtUnc_52: 2.55444397e-05 + ArtUnc_53: -1.49390656e-04 + ArtUnc_54: -9.67212765e-05 + ArtUnc_55: -1.10986619e-05 + ArtUnc_56: 1.73887120e-05 + ArtUnc_57: -1.19906987e-01 + ArtUnc_58: 1.63047253e-01 + ArtUnc_59: 2.33067232e-01 + ArtUnc_60: 8.34687267e-02 + ArtUnc_61: -5.61300422e-02 + ArtUnc_62: -5.18004491e-02 + ArtUnc_63: 3.05894354e-02 + ArtUnc_64: -8.15502320e-02 + ArtUnc_65: 7.90333673e-02 + ArtUnc_66: 4.53030573e-02 + ArtUnc_67: -1.33493901e-02 + ArtUnc_68: -2.64080501e-02 + ArtUnc_69: -1.25591029e-02 + ArtUnc_70: 1.15078805e-03 + ArtUnc_71: -3.94640897e-04 + ArtUnc_72: 1.50030522e-03 + ArtUnc_73: -1.66447648e-02 + ArtUnc_74: 1.75153864e-02 + ArtUnc_75: 2.25582656e-03 + ArtUnc_76: 4.61332515e-04 + ArtUnc_77: -3.49361313e-03 + ArtUnc_78: -2.69082931e-03 + ArtUnc_79: 6.56096497e-03 + ArtUnc_80: 9.44818170e-04 + ArtUnc_81: -4.45217578e-04 + ArtUnc_82: 9.18567702e-08 + ArtUnc_83: -1.18096097e-04 + ArtUnc_84: 5.43664390e-04 + ArtUnc_85: 6.64884406e-05 + ArtUnc_86: 4.82561049e-05 + ArtUnc_87: 7.07195464e-05 + ArtUnc_88: 3.55334213e-04 + ArtUnc_89: 1.01065160e-03 + ArtUnc_90: -1.39328346e-04 + ArtUnc_91: 2.37583464e-05 + ArtUnc_92: 3.92006173e-06 + ArtUnc_93: -4.66478930e-05 + ArtUnc_94: -5.14624549e-04 + ArtUnc_95: -1.25953037e-04 + ArtUnc_96: 1.39685450e-06 - stat: 0 - Uncorr: 0.0017000000000000001 - RCES: 0.009910646434516772 - ElEn: 0.008426171372574856 - ElTh: 0.004267237045208528 + Uncorr: 1.70000000e-03 + RCES: 9.91064643e-03 + ElEn: 8.42617137e-03 + ElTh: 4.26723705e-03 Lumi: 0.00425 - LArN: 0.0008500000000000001 + LArN: 8.50000000e-04 StatMC: 0.03196 - RadErr: 0.006103000000000001 - Model_1: 0.0029571205589221414 - Model_2: 0.0029571205589221414 - ModelRW_1: 0.015849447226165332 - ModelRW_2: 0.015849447226165332 - JES_1: 0.01346821043698828 - JES_2: 0.01346821043698828 - ArtUnc_1: -8.737694534121229e-10 - ArtUnc_2: 1.6464594064326736e-09 - ArtUnc_3: 1.5950511990295304e-09 - ArtUnc_4: 1.3040974115525698e-10 - ArtUnc_5: 5.508080194611627e-10 - ArtUnc_6: 3.7671139816293967e-10 - ArtUnc_7: 1.2766550907783893e-11 - ArtUnc_8: -1.8318554335628124e-07 - ArtUnc_9: -7.598415241707395e-10 - ArtUnc_10: 3.172515480713788e-07 - ArtUnc_11: 2.644748786934402e-07 - ArtUnc_12: -5.490758663839249e-08 - ArtUnc_13: -2.718473923425416e-07 - ArtUnc_14: -9.213717981691248e-08 - ArtUnc_15: -2.724363299357123e-07 - ArtUnc_16: 1.2069090292989235e-07 - ArtUnc_17: -9.887766630843156e-08 - ArtUnc_18: 6.492169166509936e-08 - ArtUnc_19: -1.0089425732864725e-08 - ArtUnc_20: -3.7827776916724463e-08 - ArtUnc_21: -2.494253881503824e-08 - ArtUnc_22: 7.18207777277124e-09 - ArtUnc_23: 4.737266987816121e-09 - ArtUnc_24: -2.6786010019964452e-09 - ArtUnc_25: 2.9575991000873583e-06 - ArtUnc_26: -2.4109347240891293e-06 - ArtUnc_27: -1.958960032609601e-05 - ArtUnc_28: 2.1605117264882275e-06 - ArtUnc_29: 1.866721069826176e-06 - ArtUnc_30: -8.22057669927223e-06 - ArtUnc_31: 3.1484995192426904e-07 - ArtUnc_32: 3.566962795179308e-06 - ArtUnc_33: 9.910532595307408e-07 - ArtUnc_34: 2.229321892986007e-06 - ArtUnc_35: 3.9884951668698356e-06 - ArtUnc_36: 2.166989013651135e-06 - ArtUnc_37: 6.645354509858519e-07 - ArtUnc_38: -1.137071138773637e-06 - ArtUnc_39: -6.259626810669443e-07 - ArtUnc_40: -1.139598981579064e-07 - ArtUnc_41: -0.0011137227426165804 - ArtUnc_42: 0.001141607145327739 - ArtUnc_43: 0.0008346508307614627 - ArtUnc_44: 8.601943478581479e-05 - ArtUnc_45: 0.0005798205279119543 - ArtUnc_46: 0.0004383472277824721 - ArtUnc_47: -0.00012074281722239596 - ArtUnc_48: 0.000552874931580836 - ArtUnc_49: -0.00017207676192544896 - ArtUnc_50: -0.0004507527380131608 - ArtUnc_51: 2.508999491499608e-05 - ArtUnc_52: -4.8123543900225626e-05 - ArtUnc_53: -0.0004876302466361276 - ArtUnc_54: 0.00018684558503821334 - ArtUnc_55: 0.00015388762592659022 - ArtUnc_56: -1.8186981887229775e-05 - ArtUnc_57: -0.004004969220651377 - ArtUnc_58: 0.003607266408108926 - ArtUnc_59: 0.004505974454370048 - ArtUnc_60: 0.001345496970059587 - ArtUnc_61: -0.0008187221344207724 - ArtUnc_62: -0.0003112304944000799 - ArtUnc_63: 0.0002862908683742685 - ArtUnc_64: -0.0003152481406459922 - ArtUnc_65: 0.0003683638836481357 - ArtUnc_66: 0.0002982348981041299 - ArtUnc_67: -0.0001502387558411166 - ArtUnc_68: -0.0006147404317045237 - ArtUnc_69: -0.0005233603568172246 - ArtUnc_70: 0.00019697460472897514 - ArtUnc_71: -8.244916610588482e-05 - ArtUnc_72: 0.00014985939363457848 - ArtUnc_73: 0.0038048183334672874 - ArtUnc_74: -0.0007028573295874387 - ArtUnc_75: 0.0011840866023422926 - ArtUnc_76: 0.02835348160110081 - ArtUnc_77: -0.005216149143439307 - ArtUnc_78: 0.06222596545671097 - ArtUnc_79: 0.015037693794521264 - ArtUnc_80: -0.026302069053068946 - ArtUnc_81: 0.01476780276571734 - ArtUnc_82: -1.1729779388745412e-06 - ArtUnc_83: -0.006403768686471221 - ArtUnc_84: -0.017996315182303557 - ArtUnc_85: 0.004758655675668427 - ArtUnc_86: -0.005074421813299028 - ArtUnc_87: -0.002829751264937561 - ArtUnc_88: -0.04337537829452347 - ArtUnc_89: -0.029379583624767714 - ArtUnc_90: 0.007388117062249002 - ArtUnc_91: -0.0007635967238545224 - ArtUnc_92: -0.00010334804503274076 - ArtUnc_93: -0.030648055619916178 - ArtUnc_94: 0.01331203105244284 - ArtUnc_95: 0.0008653673756013533 - ArtUnc_96: 0.001045600489105698 + RadErr: 6.10300000e-03 + Model_1: 2.95712056e-03 + Model_2: 2.95712056e-03 + ModelRW_1: 1.58494472e-02 + ModelRW_2: 1.58494472e-02 + JES_1: 1.34682104e-02 + JES_2: 1.34682104e-02 + ArtUnc_1: -8.73769453e-10 + ArtUnc_2: 1.64645941e-09 + ArtUnc_3: 1.59505120e-09 + ArtUnc_4: 1.30409741e-10 + ArtUnc_5: 5.50808019e-10 + ArtUnc_6: 3.76711398e-10 + ArtUnc_7: 1.27665509e-11 + ArtUnc_8: -1.83185543e-07 + ArtUnc_9: -7.59841524e-10 + ArtUnc_10: 3.17251548e-07 + ArtUnc_11: 2.64474879e-07 + ArtUnc_12: -5.49075866e-08 + ArtUnc_13: -2.71847392e-07 + ArtUnc_14: -9.21371798e-08 + ArtUnc_15: -2.72436330e-07 + ArtUnc_16: 1.20690903e-07 + ArtUnc_17: -9.88776663e-08 + ArtUnc_18: 6.49216917e-08 + ArtUnc_19: -1.00894257e-08 + ArtUnc_20: -3.78277769e-08 + ArtUnc_21: -2.49425388e-08 + ArtUnc_22: 7.18207777e-09 + ArtUnc_23: 4.73726699e-09 + ArtUnc_24: -2.67860100e-09 + ArtUnc_25: 2.95759910e-06 + ArtUnc_26: -2.41093472e-06 + ArtUnc_27: -1.95896003e-05 + ArtUnc_28: 2.16051173e-06 + ArtUnc_29: 1.86672107e-06 + ArtUnc_30: -8.22057670e-06 + ArtUnc_31: 3.14849952e-07 + ArtUnc_32: 3.56696280e-06 + ArtUnc_33: 9.91053260e-07 + ArtUnc_34: 2.22932189e-06 + ArtUnc_35: 3.98849517e-06 + ArtUnc_36: 2.16698901e-06 + ArtUnc_37: 6.64535451e-07 + ArtUnc_38: -1.13707114e-06 + ArtUnc_39: -6.25962681e-07 + ArtUnc_40: -1.13959898e-07 + ArtUnc_41: -1.11372274e-03 + ArtUnc_42: 1.14160715e-03 + ArtUnc_43: 8.34650831e-04 + ArtUnc_44: 8.60194348e-05 + ArtUnc_45: 5.79820528e-04 + ArtUnc_46: 4.38347228e-04 + ArtUnc_47: -1.20742817e-04 + ArtUnc_48: 5.52874932e-04 + ArtUnc_49: -1.72076762e-04 + ArtUnc_50: -4.50752738e-04 + ArtUnc_51: 2.50899949e-05 + ArtUnc_52: -4.81235439e-05 + ArtUnc_53: -4.87630247e-04 + ArtUnc_54: 1.86845585e-04 + ArtUnc_55: 1.53887626e-04 + ArtUnc_56: -1.81869819e-05 + ArtUnc_57: -4.00496922e-03 + ArtUnc_58: 3.60726641e-03 + ArtUnc_59: 4.50597445e-03 + ArtUnc_60: 1.34549697e-03 + ArtUnc_61: -8.18722134e-04 + ArtUnc_62: -3.11230494e-04 + ArtUnc_63: 2.86290868e-04 + ArtUnc_64: -3.15248141e-04 + ArtUnc_65: 3.68363884e-04 + ArtUnc_66: 2.98234898e-04 + ArtUnc_67: -1.50238756e-04 + ArtUnc_68: -6.14740432e-04 + ArtUnc_69: -5.23360357e-04 + ArtUnc_70: 1.96974605e-04 + ArtUnc_71: -8.24491661e-05 + ArtUnc_72: 1.49859394e-04 + ArtUnc_73: 3.80481833e-03 + ArtUnc_74: -7.02857330e-04 + ArtUnc_75: 1.18408660e-03 + ArtUnc_76: 2.83534816e-02 + ArtUnc_77: -5.21614914e-03 + ArtUnc_78: 6.22259655e-02 + ArtUnc_79: 1.50376938e-02 + ArtUnc_80: -2.63020691e-02 + ArtUnc_81: 1.47678028e-02 + ArtUnc_82: -1.17297794e-06 + ArtUnc_83: -6.40376869e-03 + ArtUnc_84: -1.79963152e-02 + ArtUnc_85: 4.75865568e-03 + ArtUnc_86: -5.07442181e-03 + ArtUnc_87: -2.82975126e-03 + ArtUnc_88: -4.33753783e-02 + ArtUnc_89: -2.93795836e-02 + ArtUnc_90: 7.38811706e-03 + ArtUnc_91: -7.63596724e-04 + ArtUnc_92: -1.03348045e-04 + ArtUnc_93: -3.06480556e-02 + ArtUnc_94: 1.33120311e-02 + ArtUnc_95: 8.65367376e-04 + ArtUnc_96: 1.04560049e-03 diff --git a/nnpdf_data/nnpdf_data/commondata/H1_1JET_319GEV_290PB-1_DIF/uncertainties_highQ2.yaml b/nnpdf_data/nnpdf_data/commondata/H1_1JET_319GEV_290PB-1_DIF/uncertainties_highQ2.yaml index 2d9e6aa4ed..51dfdbb581 100644 --- a/nnpdf_data/nnpdf_data/commondata/H1_1JET_319GEV_290PB-1_DIF/uncertainties_highQ2.yaml +++ b/nnpdf_data/nnpdf_data/commondata/H1_1JET_319GEV_290PB-1_DIF/uncertainties_highQ2.yaml @@ -45,68 +45,68 @@ definitions: type: CORR bins: - stat: 70.092 - RCES: 0.6279603545407944 - $E_{e^\prime}$: 3.0902439833894992 - $\theta_{e^\prime}$: 0.8730941025313367 - ID(e): 1.7965499999999999 + RCES: 6.27960355e-01 + $E_{e^\prime}$: 3.09024398e+00 + $\theta_{e^\prime}$: 8.73094103e-01 + ID(e): 1.79655000e+00 LArNoise: 0.4425 Norm: 2.2125 - Model_1: 10.45068467254658 - Model_2: 10.45068467254658 - JES_1: 0.4519027864900812 - JES_2: 0.4519027864900812 -- stat: 56.94480000000001 - RCES: 0.5101734405817301 - $E_{e^\prime}$: 2.51060499893452 - $\theta_{e^\prime}$: 0.7093272991186792 + Model_1: 1.04506847e+01 + Model_2: 1.04506847e+01 + JES_1: 4.51902786e-01 + JES_2: 4.51902786e-01 +- stat: 5.69448000e+01 + RCES: 5.10173441e-01 + $E_{e^\prime}$: 2.51060500e+00 + $\theta_{e^\prime}$: 7.09327299e-01 ID(e): 1.45957 - LArNoise: 0.35950000000000004 + LArNoise: 3.59500000e-01 Norm: 1.7975 - Model_1: 8.490443253741232 - Model_2: 8.490443253741232 - JES_1: 0.36713909998459715 - JES_2: 0.36713909998459715 -- stat: 52.192800000000005 - RCES: 0.4675998572230321 - $E_{e^\prime}$: 2.3010969322640453 - $\theta_{e^\prime}$: 0.6501344786080802 + Model_1: 8.49044325e+00 + Model_2: 8.49044325e+00 + JES_1: 3.67139100e-01 + JES_2: 3.67139100e-01 +- stat: 5.21928000e+01 + RCES: 4.67599857e-01 + $E_{e^\prime}$: 2.30109693e+00 + $\theta_{e^\prime}$: 6.50134479e-01 ID(e): 1.33777 LArNoise: 0.3295 Norm: 1.6475 - Model_1: 7.781922258992311 - Model_2: 7.781922258992311 - JES_1: 0.33650162293442215 - JES_2: 0.33650162293442215 + Model_1: 7.78192226e+00 + Model_2: 7.78192226e+00 + JES_1: 3.36501623e-01 + JES_2: 3.36501623e-01 - stat: 37.0656 - RCES: 0.3320739501978437 - $E_{e^\prime}$: 1.634162920029701 - $\theta_{e^\prime}$: 0.46170399998267286 - ID(e): 0.9500399999999999 - LArNoise: 0.23399999999999999 + RCES: 3.32073950e-01 + $E_{e^\prime}$: 1.63416292e+00 + $\theta_{e^\prime}$: 4.61704000e-01 + ID(e): 9.50040000e-01 + LArNoise: 2.34000000e-01 Norm: 1.17 - Model_1: 5.52646375904158 - Model_2: 5.52646375904158 - JES_1: 0.23897232099136498 - JES_2: 0.23897232099136498 + Model_1: 5.52646376e+00 + Model_2: 5.52646376e+00 + JES_1: 2.38972321e-01 + JES_2: 2.38972321e-01 - stat: 31.9968 - RCES: 0.286662127948566 - $E_{e^\prime}$: 1.4106876489145286 - $\theta_{e^\prime}$: 0.39856499143803387 - ID(e): 0.8201199999999998 - LArNoise: 0.20199999999999999 + RCES: 2.86662128e-01 + $E_{e^\prime}$: 1.41068765e+00 + $\theta_{e^\prime}$: 3.98564991e-01 + ID(e): 8.20120000e-01 + LArNoise: 2.02000000e-01 Norm: 1.01 - Model_1: 4.770708031309398 - Model_2: 4.770708031309398 - JES_1: 0.2062923454711783 - JES_2: 0.2062923454711783 -- stat: 0.7230960000000001 - RCES: 0.006478280267748534 - $E_{e^\prime}$: 0.031880144145023874 - $\theta_{e^\prime}$: 0.00900717418769616 - ID(e): 0.0185339 - LArNoise: 0.0045650000000000005 + Model_1: 4.77070803e+00 + Model_2: 4.77070803e+00 + JES_1: 2.06292345e-01 + JES_2: 2.06292345e-01 +- stat: 7.23096000e-01 + RCES: 6.47828027e-03 + $E_{e^\prime}$: 3.18801441e-02 + $\theta_{e^\prime}$: 9.00717419e-03 + ID(e): 1.85339000e-02 + LArNoise: 4.56500000e-03 Norm: 0.022825 - Model_1: 0.10781327803429408 - Model_2: 0.10781327803429408 - JES_1: 0.00466200275780163 - JES_2: 0.00466200275780163 + Model_1: 1.07813278e-01 + Model_2: 1.07813278e-01 + JES_1: 4.66200276e-03 + JES_2: 4.66200276e-03 diff --git a/nnpdf_data/nnpdf_data/commondata/H1_1JET_319GEV_290PB-1_DIF/uncertainties_highQ2_norm.yaml b/nnpdf_data/nnpdf_data/commondata/H1_1JET_319GEV_290PB-1_DIF/uncertainties_highQ2_norm.yaml index 95798ab8ee..7ffac9c307 100644 --- a/nnpdf_data/nnpdf_data/commondata/H1_1JET_319GEV_290PB-1_DIF/uncertainties_highQ2_norm.yaml +++ b/nnpdf_data/nnpdf_data/commondata/H1_1JET_319GEV_290PB-1_DIF/uncertainties_highQ2_norm.yaml @@ -37,56 +37,56 @@ definitions: type: CORR bins: - stat: 0.162155 - RCES: 0.0014061191939163623 - $E_{e^\prime}$: 0.0069319939907287855 - $\theta_{e^\prime}$: 0.002078906202790304 - LArNoise: 0.0010249999999999999 - Model_1: 0.021163705960913364 - Model_2: 0.021163705960913364 - JES_1: 0.0015440970966069459 - JES_2: 0.0015440970966069459 + RCES: 1.40611919e-03 + $E_{e^\prime}$: 6.93199399e-03 + $\theta_{e^\prime}$: 2.07890620e-03 + LArNoise: 1.02500000e-03 + Model_1: 2.11637060e-02 + Model_2: 2.11637060e-02 + JES_1: 1.54409710e-03 + JES_2: 1.54409710e-03 - stat: 0.179557 - RCES: 0.0015570197903366546 - $E_{e^\prime}$: 0.0076759152970509 - $\theta_{e^\prime}$: 0.002302008331870239 - LArNoise: 0.0011350000000000002 - Model_1: 0.023434932942084555 - Model_2: 0.023434932942084555 - JES_1: 0.0017098050777062284 - JES_2: 0.0017098050777062284 + RCES: 1.55701979e-03 + $E_{e^\prime}$: 7.67591530e-03 + $\theta_{e^\prime}$: 2.30200833e-03 + LArNoise: 1.13500000e-03 + Model_1: 2.34349329e-02 + Model_2: 2.34349329e-02 + JES_1: 1.70980508e-03 + JES_2: 1.70980508e-03 - stat: 0.189049 - RCES: 0.0016393292065659051 - $E_{e^\prime}$: 0.00808169055504478 - $\theta_{e^\prime}$: 0.002423700402277476 - LArNoise: 0.0011949999999999999 - Model_1: 0.02467378402272339 - Model_2: 0.02467378402272339 - JES_1: 0.001800191249214927 - JES_2: 0.001800191249214927 -- stat: 0.16927399999999998 - RCES: 0.0014678512560883001 - $E_{e^\prime}$: 0.007236325434224195 - $\theta_{e^\prime}$: 0.002170175255595732 + RCES: 1.63932921e-03 + $E_{e^\prime}$: 8.08169056e-03 + $\theta_{e^\prime}$: 2.42370040e-03 + LArNoise: 1.19500000e-03 + Model_1: 2.46737840e-02 + Model_2: 2.46737840e-02 + JES_1: 1.80019125e-03 + JES_2: 1.80019125e-03 +- stat: 1.69274000e-01 + RCES: 1.46785126e-03 + $E_{e^\prime}$: 7.23632543e-03 + $\theta_{e^\prime}$: 2.17017526e-03 LArNoise: 0.00107 - Model_1: 0.02209284427139249 - Model_2: 0.02209284427139249 - JES_1: 0.0016118867252384703 - JES_2: 0.0016118867252384703 + Model_1: 2.20928443e-02 + Model_2: 2.20928443e-02 + JES_1: 1.61188673e-03 + JES_2: 1.61188673e-03 - stat: 0.177975 - RCES: 0.0015433015542984465 - $E_{e^\prime}$: 0.007608286087385252 - $\theta_{e^\prime}$: 0.0022817263201356996 - LArNoise: 0.0011250000000000001 - Model_1: 0.02322845776197809 - Model_2: 0.02322845776197809 - JES_1: 0.0016947407157881114 - JES_2: 0.0016947407157881114 -- stat: 0.08463699999999999 - RCES: 0.0007339256280441501 - $E_{e^\prime}$: 0.0036181627171120974 - $\theta_{e^\prime}$: 0.001085087627797866 + RCES: 1.54330155e-03 + $E_{e^\prime}$: 7.60828609e-03 + $\theta_{e^\prime}$: 2.28172632e-03 + LArNoise: 1.12500000e-03 + Model_1: 2.32284578e-02 + Model_2: 2.32284578e-02 + JES_1: 1.69474072e-03 + JES_2: 1.69474072e-03 +- stat: 8.46370000e-02 + RCES: 7.33925628e-04 + $E_{e^\prime}$: 3.61816272e-03 + $\theta_{e^\prime}$: 1.08508763e-03 LArNoise: 0.000535 - Model_1: 0.011046422135696244 - Model_2: 0.011046422135696244 - JES_1: 0.0008059433626192351 - JES_2: 0.0008059433626192351 + Model_1: 1.10464221e-02 + Model_2: 1.10464221e-02 + JES_1: 8.05943363e-04 + JES_2: 8.05943363e-04 diff --git a/nnpdf_data/nnpdf_data/commondata/H1_1JET_319GEV_290PB-1_DIF/uncertainties_norm.yaml b/nnpdf_data/nnpdf_data/commondata/H1_1JET_319GEV_290PB-1_DIF/uncertainties_norm.yaml index bd557e917e..c16b91ee0e 100644 --- a/nnpdf_data/nnpdf_data/commondata/H1_1JET_319GEV_290PB-1_DIF/uncertainties_norm.yaml +++ b/nnpdf_data/nnpdf_data/commondata/H1_1JET_319GEV_290PB-1_DIF/uncertainties_norm.yaml @@ -446,5329 +446,5329 @@ definitions: bins: - stat: 0 Uncorr: 0.0011 - RCES: 0.0035728670560209765 - ElEn: 0.0005213118068872026 - ElTh: 0.0006109457831919294 + RCES: 3.57286706e-03 + ElEn: 5.21311807e-04 + ElTh: 6.10945783e-04 Lumi: 0.000847 LArN: 0.00055 StatMC: 0.001419 RadErr: 0.000462 - Model_1: 0.00035779603128039306 - Model_2: 0.00035779603128039306 - ModelRW_1: 0.0007389265863399421 - ModelRW_2: 0.0007389265863399421 - JES_1: 0.0008237064859523688 - JES_2: 0.0008237064859523688 - ArtUnc_1: -5.184077555533741e-09 - ArtUnc_2: 1.1677814854411006e-06 - ArtUnc_3: 6.484945269315138e-06 - ArtUnc_4: 2.9607766166695967e-05 - ArtUnc_5: 1.026009764528549e-06 - ArtUnc_6: 2.662512931754971e-07 - ArtUnc_7: 0.00019243537417088093 - ArtUnc_8: -0.0010127354200840388 - ArtUnc_9: 1.8484503325499536e-05 - ArtUnc_10: 0.00048367113275177076 - ArtUnc_11: -0.0010003494842459083 - ArtUnc_12: -8.105091416697253e-05 - ArtUnc_13: -0.001560303726292504 - ArtUnc_14: -1.3124683464170857e-05 - ArtUnc_15: -2.2591533427100417e-06 - ArtUnc_16: 5.817826599619027e-07 - ArtUnc_17: -1.1337540775553265e-06 - ArtUnc_18: 2.987029686372386e-09 - ArtUnc_19: -4.885827276898941e-06 - ArtUnc_20: 5.46036666714073e-06 - ArtUnc_21: -1.9999995328938429e-07 - ArtUnc_22: 1.127622547801492e-05 - ArtUnc_23: 2.4150688771514286e-07 - ArtUnc_24: -1.8699348321426944e-05 - ArtUnc_25: -8.703721396487673e-06 - ArtUnc_26: -5.289837150206431e-07 - ArtUnc_27: 2.092744305624243e-05 - ArtUnc_28: 1.1909023961737446e-06 - ArtUnc_29: -1.376509661274837e-07 - ArtUnc_30: 2.320036287223341e-06 - ArtUnc_31: -9.390934551493554e-07 - ArtUnc_32: 5.260444912495629e-05 - ArtUnc_33: -2.0294766714438776e-08 - ArtUnc_34: 6.195759482581024e-07 - ArtUnc_35: 9.550353952130143e-07 - ArtUnc_36: 3.729841789513544e-08 - ArtUnc_37: -8.01872132902217e-07 - ArtUnc_38: 1.3985486051409333e-07 - ArtUnc_39: -6.047222284831918e-07 - ArtUnc_40: -2.4299704067528574e-09 - ArtUnc_41: 1.4240506631795265e-07 - ArtUnc_42: 1.7631994306664332e-09 - ArtUnc_43: -3.8265962551438614e-07 - ArtUnc_44: 5.247038576006126e-07 - ArtUnc_45: -2.189129079051947e-09 - ArtUnc_46: -1.44380724631698e-08 - ArtUnc_47: 1.3171349073524332e-08 - ArtUnc_48: -2.7911157642128274e-10 - ArtUnc_49: -1.2825201759836507e-06 - ArtUnc_50: -3.951216736568954e-08 - ArtUnc_51: 4.224301304456062e-09 - ArtUnc_52: 6.753685855579711e-09 - ArtUnc_53: -1.0953565605415092e-09 - ArtUnc_54: 5.61711527514032e-10 - ArtUnc_55: -1.782027436821851e-08 - ArtUnc_56: -1.2209974055510724e-09 - ArtUnc_57: -4.019287354508974e-10 - ArtUnc_58: -4.213685453428593e-09 - ArtUnc_59: 1.2091701533994065e-10 - ArtUnc_60: -8.476923147507564e-09 - ArtUnc_61: 2.7460661768004776e-11 - ArtUnc_62: -2.362711917216108e-10 - ArtUnc_63: 1.9836546306819357e-11 - ArtUnc_64: -6.466304591781763e-08 - ArtUnc_65: 1.114451854006085e-09 - ArtUnc_66: 4.576488071035876e-08 - ArtUnc_67: 5.587580325253636e-10 - ArtUnc_68: -6.110199357284909e-10 - ArtUnc_69: -1.7776037748956474e-11 - ArtUnc_70: 2.105310448338427e-10 - ArtUnc_71: 2.036025074802777e-12 - ArtUnc_72: 5.932777335713569e-10 - ArtUnc_73: 4.2800168813375514e-11 - ArtUnc_74: 8.421436948084789e-11 - ArtUnc_75: -9.046981473561437e-10 - ArtUnc_76: -8.711386866030128e-12 - ArtUnc_77: -8.783496744864512e-12 - ArtUnc_78: 1.1157174486688844e-09 - ArtUnc_79: -6.647586284951538e-10 - ArtUnc_80: 2.5056554750015145e-12 - ArtUnc_81: 2.9053533657378786e-11 - ArtUnc_82: -1.6143113427655448e-12 - ArtUnc_83: -1.3792892516033813e-11 - ArtUnc_84: 2.55994988468569e-11 - ArtUnc_85: -4.1136523479301395e-13 - ArtUnc_86: 3.0054805505082905e-12 - ArtUnc_87: 3.6273406321135882e-12 - ArtUnc_88: -2.8013289475797947e-12 - ArtUnc_89: -1.9168249548640208e-11 - ArtUnc_90: -1.7317335682249917e-11 - ArtUnc_91: -2.0340718509920277e-12 - ArtUnc_92: 7.107882979360044e-11 - ArtUnc_93: -1.982403558075022e-12 - ArtUnc_94: -8.498361675632596e-13 - ArtUnc_95: 3.0305793135593906e-11 - ArtUnc_96: 4.905247241945646e-12 + Model_1: 3.57796031e-04 + Model_2: 3.57796031e-04 + ModelRW_1: 7.38926586e-04 + ModelRW_2: 7.38926586e-04 + JES_1: 8.23706486e-04 + JES_2: 8.23706486e-04 + ArtUnc_1: -5.18407756e-09 + ArtUnc_2: 1.16778149e-06 + ArtUnc_3: 6.48494527e-06 + ArtUnc_4: 2.96077662e-05 + ArtUnc_5: 1.02600976e-06 + ArtUnc_6: 2.66251293e-07 + ArtUnc_7: 1.92435374e-04 + ArtUnc_8: -1.01273542e-03 + ArtUnc_9: 1.84845033e-05 + ArtUnc_10: 4.83671133e-04 + ArtUnc_11: -1.00034948e-03 + ArtUnc_12: -8.10509142e-05 + ArtUnc_13: -1.56030373e-03 + ArtUnc_14: -1.31246835e-05 + ArtUnc_15: -2.25915334e-06 + ArtUnc_16: 5.81782660e-07 + ArtUnc_17: -1.13375408e-06 + ArtUnc_18: 2.98702969e-09 + ArtUnc_19: -4.88582728e-06 + ArtUnc_20: 5.46036667e-06 + ArtUnc_21: -1.99999953e-07 + ArtUnc_22: 1.12762255e-05 + ArtUnc_23: 2.41506888e-07 + ArtUnc_24: -1.86993483e-05 + ArtUnc_25: -8.70372140e-06 + ArtUnc_26: -5.28983715e-07 + ArtUnc_27: 2.09274431e-05 + ArtUnc_28: 1.19090240e-06 + ArtUnc_29: -1.37650966e-07 + ArtUnc_30: 2.32003629e-06 + ArtUnc_31: -9.39093455e-07 + ArtUnc_32: 5.26044491e-05 + ArtUnc_33: -2.02947667e-08 + ArtUnc_34: 6.19575948e-07 + ArtUnc_35: 9.55035395e-07 + ArtUnc_36: 3.72984179e-08 + ArtUnc_37: -8.01872133e-07 + ArtUnc_38: 1.39854861e-07 + ArtUnc_39: -6.04722228e-07 + ArtUnc_40: -2.42997041e-09 + ArtUnc_41: 1.42405066e-07 + ArtUnc_42: 1.76319943e-09 + ArtUnc_43: -3.82659626e-07 + ArtUnc_44: 5.24703858e-07 + ArtUnc_45: -2.18912908e-09 + ArtUnc_46: -1.44380725e-08 + ArtUnc_47: 1.31713491e-08 + ArtUnc_48: -2.79111576e-10 + ArtUnc_49: -1.28252018e-06 + ArtUnc_50: -3.95121674e-08 + ArtUnc_51: 4.22430130e-09 + ArtUnc_52: 6.75368586e-09 + ArtUnc_53: -1.09535656e-09 + ArtUnc_54: 5.61711528e-10 + ArtUnc_55: -1.78202744e-08 + ArtUnc_56: -1.22099741e-09 + ArtUnc_57: -4.01928735e-10 + ArtUnc_58: -4.21368545e-09 + ArtUnc_59: 1.20917015e-10 + ArtUnc_60: -8.47692315e-09 + ArtUnc_61: 2.74606618e-11 + ArtUnc_62: -2.36271192e-10 + ArtUnc_63: 1.98365463e-11 + ArtUnc_64: -6.46630459e-08 + ArtUnc_65: 1.11445185e-09 + ArtUnc_66: 4.57648807e-08 + ArtUnc_67: 5.58758033e-10 + ArtUnc_68: -6.11019936e-10 + ArtUnc_69: -1.77760377e-11 + ArtUnc_70: 2.10531045e-10 + ArtUnc_71: 2.03602507e-12 + ArtUnc_72: 5.93277734e-10 + ArtUnc_73: 4.28001688e-11 + ArtUnc_74: 8.42143695e-11 + ArtUnc_75: -9.04698147e-10 + ArtUnc_76: -8.71138687e-12 + ArtUnc_77: -8.78349674e-12 + ArtUnc_78: 1.11571745e-09 + ArtUnc_79: -6.64758628e-10 + ArtUnc_80: 2.50565548e-12 + ArtUnc_81: 2.90535337e-11 + ArtUnc_82: -1.61431134e-12 + ArtUnc_83: -1.37928925e-11 + ArtUnc_84: 2.55994988e-11 + ArtUnc_85: -4.11365235e-13 + ArtUnc_86: 3.00548055e-12 + ArtUnc_87: 3.62734063e-12 + ArtUnc_88: -2.80132895e-12 + ArtUnc_89: -1.91682495e-11 + ArtUnc_90: -1.73173357e-11 + ArtUnc_91: -2.03407185e-12 + ArtUnc_92: 7.10788298e-11 + ArtUnc_93: -1.98240356e-12 + ArtUnc_94: -8.49836168e-13 + ArtUnc_95: 3.03057931e-11 + ArtUnc_96: 4.90524724e-12 - stat: 0 - Uncorr: 0.00032300000000000004 - RCES: 0.002372295373699279 - ElEn: 0.00015694609552327195 - ElTh: 0.00023868694701428483 - Lumi: 0.00024871 - LArN: 0.00016150000000000002 - StatMC: 0.00044251000000000007 - RadErr: 0.00025840000000000005 - Model_1: 0.0006395073729051136 - Model_2: 0.0006395073729051136 - ModelRW_1: 0.0005230256728402537 - ModelRW_2: 0.0005230256728402537 - JES_1: 0.0020453017007766847 - JES_2: 0.0020453017007766847 - ArtUnc_1: 9.753547439539828e-11 - ArtUnc_2: -6.227372784156302e-09 - ArtUnc_3: 1.708759179124174e-08 - ArtUnc_4: 4.319110708990544e-07 - ArtUnc_5: 1.55443369537763e-08 - ArtUnc_6: 7.296344354538225e-09 - ArtUnc_7: 6.5460003475791674e-06 - ArtUnc_8: -5.7244761028330045e-05 - ArtUnc_9: 1.186505533190126e-06 - ArtUnc_10: 4.336442172324861e-05 - ArtUnc_11: -8.82617970058097e-05 - ArtUnc_12: -7.2030212472301245e-06 - ArtUnc_13: -0.00015235000980223684 - ArtUnc_14: -4.796339927814513e-07 - ArtUnc_15: -1.0309022261121442e-06 - ArtUnc_16: 9.39159190546805e-08 - ArtUnc_17: 5.141719307884341e-06 - ArtUnc_18: -1.6788426091245276e-07 - ArtUnc_19: -1.2964071120157313e-05 - ArtUnc_20: -3.0078776123106327e-05 - ArtUnc_21: 1.492529708589883e-06 - ArtUnc_22: -0.00023554744594108016 - ArtUnc_23: -3.676078550964621e-06 - ArtUnc_24: 0.00010267558870354524 - ArtUnc_25: 6.497741781847948e-05 - ArtUnc_26: -1.8235778533686426e-05 - ArtUnc_27: -0.00032423701033369213 - ArtUnc_28: -1.4688165452177336e-05 - ArtUnc_29: -0.0001522793414196557 - ArtUnc_30: -5.9820840239537066e-05 - ArtUnc_31: 2.457065364193579e-05 - ArtUnc_32: -0.000504650218600457 - ArtUnc_33: 1.7699603926293156e-07 - ArtUnc_34: -4.924692061993343e-06 - ArtUnc_35: -7.714627557624232e-06 - ArtUnc_36: -2.2392528805489359e-07 - ArtUnc_37: 6.411402027397098e-06 - ArtUnc_38: -1.1162652040395937e-06 - ArtUnc_39: -1.1430952119947765e-06 - ArtUnc_40: -6.748838465346753e-08 - ArtUnc_41: -2.3494255885952587e-06 - ArtUnc_42: -3.555146864871654e-08 - ArtUnc_43: 4.703836380515194e-06 - ArtUnc_44: -1.0566857235536604e-05 - ArtUnc_45: 4.4945124539397075e-08 - ArtUnc_46: -2.4857258556887034e-08 - ArtUnc_47: -1.6350369399770955e-07 - ArtUnc_48: 1.0292275806389106e-08 - ArtUnc_49: 1.4375919532156121e-05 - ArtUnc_50: 4.584058390843983e-07 - ArtUnc_51: -2.5943913798833367e-08 - ArtUnc_52: -3.026087152871613e-08 - ArtUnc_53: 5.632813063282722e-09 - ArtUnc_54: -3.4802714012223778e-09 - ArtUnc_55: 1.3420913257163547e-07 - ArtUnc_56: -1.919451231774332e-08 - ArtUnc_57: -4.460334623172426e-09 - ArtUnc_58: 1.8572987929047742e-07 - ArtUnc_59: -1.5232168649282663e-09 - ArtUnc_60: 2.412302921897371e-08 - ArtUnc_61: -1.7882848468633827e-10 - ArtUnc_62: 1.7966622080932891e-09 - ArtUnc_63: -1.5714942133352477e-10 - ArtUnc_64: 6.671627784511517e-07 - ArtUnc_65: -1.025189755352918e-08 - ArtUnc_66: -4.632156231862248e-07 - ArtUnc_67: -6.161588354153124e-09 - ArtUnc_68: 6.201726802224839e-09 - ArtUnc_69: 2.1346750028956372e-10 - ArtUnc_70: -2.4861479308310165e-09 - ArtUnc_71: -2.787441481271272e-11 - ArtUnc_72: -7.099604145631049e-09 - ArtUnc_73: -5.6861308517293e-10 - ArtUnc_74: -1.4292003880250983e-09 - ArtUnc_75: 1.0248505960157929e-08 - ArtUnc_76: 1.0475918137984441e-10 - ArtUnc_77: 5.677704383775364e-11 - ArtUnc_78: -1.2579885201608965e-08 - ArtUnc_79: 7.794043392189298e-09 - ArtUnc_80: -7.579711414801293e-11 - ArtUnc_81: -3.430852531169544e-10 - ArtUnc_82: 1.775117049089012e-11 - ArtUnc_83: 1.675001844948761e-10 - ArtUnc_84: -3.033136767965014e-10 - ArtUnc_85: 4.20039384186154e-12 - ArtUnc_86: -2.7784398976116623e-11 - ArtUnc_87: -3.283629617375756e-11 - ArtUnc_88: 3.125116211259143e-11 - ArtUnc_89: 2.877883598046601e-10 - ArtUnc_90: 1.536643881776656e-10 - ArtUnc_91: 1.5183076375485108e-11 - ArtUnc_92: -7.963922779568559e-10 - ArtUnc_93: 1.8540106738393557e-11 - ArtUnc_94: 1.3093416286191433e-11 - ArtUnc_95: -3.1596399642754e-10 - ArtUnc_96: -5.1872171587344076e-11 + Uncorr: 3.23000000e-04 + RCES: 2.37229537e-03 + ElEn: 1.56946096e-04 + ElTh: 2.38686947e-04 + Lumi: 2.48710000e-04 + LArN: 1.61500000e-04 + StatMC: 4.42510000e-04 + RadErr: 2.58400000e-04 + Model_1: 6.39507373e-04 + Model_2: 6.39507373e-04 + ModelRW_1: 5.23025673e-04 + ModelRW_2: 5.23025673e-04 + JES_1: 2.04530170e-03 + JES_2: 2.04530170e-03 + ArtUnc_1: 9.75354744e-11 + ArtUnc_2: -6.22737278e-09 + ArtUnc_3: 1.70875918e-08 + ArtUnc_4: 4.31911071e-07 + ArtUnc_5: 1.55443370e-08 + ArtUnc_6: 7.29634435e-09 + ArtUnc_7: 6.54600035e-06 + ArtUnc_8: -5.72447610e-05 + ArtUnc_9: 1.18650553e-06 + ArtUnc_10: 4.33644217e-05 + ArtUnc_11: -8.82617970e-05 + ArtUnc_12: -7.20302125e-06 + ArtUnc_13: -1.52350010e-04 + ArtUnc_14: -4.79633993e-07 + ArtUnc_15: -1.03090223e-06 + ArtUnc_16: 9.39159191e-08 + ArtUnc_17: 5.14171931e-06 + ArtUnc_18: -1.67884261e-07 + ArtUnc_19: -1.29640711e-05 + ArtUnc_20: -3.00787761e-05 + ArtUnc_21: 1.49252971e-06 + ArtUnc_22: -2.35547446e-04 + ArtUnc_23: -3.67607855e-06 + ArtUnc_24: 1.02675589e-04 + ArtUnc_25: 6.49774178e-05 + ArtUnc_26: -1.82357785e-05 + ArtUnc_27: -3.24237010e-04 + ArtUnc_28: -1.46881655e-05 + ArtUnc_29: -1.52279341e-04 + ArtUnc_30: -5.98208402e-05 + ArtUnc_31: 2.45706536e-05 + ArtUnc_32: -5.04650219e-04 + ArtUnc_33: 1.76996039e-07 + ArtUnc_34: -4.92469206e-06 + ArtUnc_35: -7.71462756e-06 + ArtUnc_36: -2.23925288e-07 + ArtUnc_37: 6.41140203e-06 + ArtUnc_38: -1.11626520e-06 + ArtUnc_39: -1.14309521e-06 + ArtUnc_40: -6.74883847e-08 + ArtUnc_41: -2.34942559e-06 + ArtUnc_42: -3.55514686e-08 + ArtUnc_43: 4.70383638e-06 + ArtUnc_44: -1.05668572e-05 + ArtUnc_45: 4.49451245e-08 + ArtUnc_46: -2.48572586e-08 + ArtUnc_47: -1.63503694e-07 + ArtUnc_48: 1.02922758e-08 + ArtUnc_49: 1.43759195e-05 + ArtUnc_50: 4.58405839e-07 + ArtUnc_51: -2.59439138e-08 + ArtUnc_52: -3.02608715e-08 + ArtUnc_53: 5.63281306e-09 + ArtUnc_54: -3.48027140e-09 + ArtUnc_55: 1.34209133e-07 + ArtUnc_56: -1.91945123e-08 + ArtUnc_57: -4.46033462e-09 + ArtUnc_58: 1.85729879e-07 + ArtUnc_59: -1.52321686e-09 + ArtUnc_60: 2.41230292e-08 + ArtUnc_61: -1.78828485e-10 + ArtUnc_62: 1.79666221e-09 + ArtUnc_63: -1.57149421e-10 + ArtUnc_64: 6.67162778e-07 + ArtUnc_65: -1.02518976e-08 + ArtUnc_66: -4.63215623e-07 + ArtUnc_67: -6.16158835e-09 + ArtUnc_68: 6.20172680e-09 + ArtUnc_69: 2.13467500e-10 + ArtUnc_70: -2.48614793e-09 + ArtUnc_71: -2.78744148e-11 + ArtUnc_72: -7.09960415e-09 + ArtUnc_73: -5.68613085e-10 + ArtUnc_74: -1.42920039e-09 + ArtUnc_75: 1.02485060e-08 + ArtUnc_76: 1.04759181e-10 + ArtUnc_77: 5.67770438e-11 + ArtUnc_78: -1.25798852e-08 + ArtUnc_79: 7.79404339e-09 + ArtUnc_80: -7.57971141e-11 + ArtUnc_81: -3.43085253e-10 + ArtUnc_82: 1.77511705e-11 + ArtUnc_83: 1.67500184e-10 + ArtUnc_84: -3.03313677e-10 + ArtUnc_85: 4.20039384e-12 + ArtUnc_86: -2.77843990e-11 + ArtUnc_87: -3.28362962e-11 + ArtUnc_88: 3.12511621e-11 + ArtUnc_89: 2.87788360e-10 + ArtUnc_90: 1.53664388e-10 + ArtUnc_91: 1.51830764e-11 + ArtUnc_92: -7.96392278e-10 + ArtUnc_93: 1.85401067e-11 + ArtUnc_94: 1.30934163e-11 + ArtUnc_95: -3.15963996e-10 + ArtUnc_96: -5.18721716e-11 - stat: 0 Uncorr: 7.83e-05 - RCES: 9.630183814834482e-05 - ElEn: 2.6236342632882354e-05 - ElTh: 5.727151255205331e-05 - Lumi: 6.0291e-05 - LArN: 3.915e-05 - StatMC: 0.00010648800000000001 - RadErr: 7.1253e-05 - Model_1: 0.00026686634186049015 - Model_2: 0.00026686634186049015 - ModelRW_1: 0.00017772633970377042 - ModelRW_2: 0.00017772633970377042 - JES_1: 0.00028803440171097617 - JES_2: 0.00028803440171097617 - ArtUnc_1: 7.051224216026941e-11 - ArtUnc_2: -1.3977675181295216e-08 - ArtUnc_3: -7.119561085981802e-08 - ArtUnc_4: -2.8058198438083383e-07 - ArtUnc_5: -9.59221642205358e-09 - ArtUnc_6: -2.02978998101931e-09 - ArtUnc_7: -1.3472556520548992e-06 - ArtUnc_8: 4.150934493663712e-06 - ArtUnc_9: -5.952842188927762e-08 - ArtUnc_10: 5.438010394919081e-08 - ArtUnc_11: 7.05979688352413e-08 - ArtUnc_12: 9.139260861476654e-09 - ArtUnc_13: -1.2790170539615633e-06 - ArtUnc_14: 2.5617408347870514e-08 - ArtUnc_15: -1.9841482618095413e-08 - ArtUnc_16: 1.6198073526381094e-10 - ArtUnc_17: 2.3983235953556213e-07 - ArtUnc_18: -7.139715679976194e-09 - ArtUnc_19: -7.286802604846646e-07 - ArtUnc_20: -1.534583304142478e-06 - ArtUnc_21: 9.112349277463271e-08 - ArtUnc_22: -1.3098744061619803e-05 - ArtUnc_23: -2.3664354657076953e-07 - ArtUnc_24: 5.656671937789673e-06 - ArtUnc_25: 7.335671792195338e-06 - ArtUnc_26: -1.4577249046427076e-06 - ArtUnc_27: -2.2342813730992484e-05 - ArtUnc_28: -9.32741641681257e-07 - ArtUnc_29: -3.5711130448348982e-06 - ArtUnc_30: -2.3298242139567014e-06 - ArtUnc_31: 9.539461832991869e-07 - ArtUnc_32: -3.365468085499373e-05 - ArtUnc_33: 1.0814802950801851e-08 - ArtUnc_34: 5.098518791699796e-07 - ArtUnc_35: 7.814559505928643e-07 - ArtUnc_36: -6.442488936637111e-06 - ArtUnc_37: 1.9979813786580084e-05 - ArtUnc_38: -3.559577279397605e-06 - ArtUnc_39: -2.0489934740514652e-05 - ArtUnc_40: 3.024895811611956e-08 - ArtUnc_41: 6.08972888844798e-05 - ArtUnc_42: -3.780216667070498e-07 - ArtUnc_43: -8.955261597295062e-05 - ArtUnc_44: -4.8024390229445863e-05 - ArtUnc_45: 6.222098420543644e-07 - ArtUnc_46: -1.368795153262544e-05 - ArtUnc_47: 9.264014209204773e-07 - ArtUnc_48: 1.6094043163831705e-08 - ArtUnc_49: -0.00017973388342818443 - ArtUnc_50: -4.459666900137267e-06 - ArtUnc_51: 2.038050437567206e-07 - ArtUnc_52: -1.0862800138360604e-07 - ArtUnc_53: 3.9714255876467446e-09 - ArtUnc_54: 2.966360374701162e-09 - ArtUnc_55: -1.8811433941314635e-06 - ArtUnc_56: -1.9456883465457418e-06 - ArtUnc_57: -5.713827041420243e-07 - ArtUnc_58: -2.6674338272983496e-06 - ArtUnc_59: 3.8161231902587136e-08 - ArtUnc_60: 2.6960411564784075e-06 - ArtUnc_61: 2.2069932666540668e-09 - ArtUnc_62: 3.1335045374841156e-08 - ArtUnc_63: -3.6382703959669343e-09 - ArtUnc_64: -5.303985659363463e-06 - ArtUnc_65: 3.295262320683488e-08 - ArtUnc_66: 6.51419437064317e-06 - ArtUnc_67: 1.224938548401954e-07 - ArtUnc_68: -6.0424720363524e-08 - ArtUnc_69: -2.525003177364441e-09 - ArtUnc_70: 1.6964903821867333e-08 - ArtUnc_71: -4.213129200925123e-11 - ArtUnc_72: 1.0434560435049898e-09 - ArtUnc_73: 2.2988054108867716e-10 - ArtUnc_74: -4.029581933211132e-08 - ArtUnc_75: 1.1695826127329766e-08 - ArtUnc_76: -1.1125737214139704e-09 - ArtUnc_77: -9.908908004047555e-10 - ArtUnc_78: 2.1566338396236692e-07 - ArtUnc_79: 7.525356436864798e-08 - ArtUnc_80: -5.458073635477984e-10 - ArtUnc_81: 6.330795480691271e-09 - ArtUnc_82: 2.219836404681475e-10 - ArtUnc_83: -1.4846246330279971e-09 - ArtUnc_84: 1.368357657876286e-10 - ArtUnc_85: 2.579468971964336e-10 - ArtUnc_86: 7.611218948708382e-11 - ArtUnc_87: 3.4903456058610976e-11 - ArtUnc_88: -7.88311010620826e-11 - ArtUnc_89: 1.7002038126260505e-09 - ArtUnc_90: -1.1830090352260171e-09 - ArtUnc_91: 6.700141510953795e-10 - ArtUnc_92: 1.7580036048980386e-09 - ArtUnc_93: -4.661069203930877e-11 - ArtUnc_94: -5.5651946891796474e-11 - ArtUnc_95: -2.1446402629044331e-10 - ArtUnc_96: -5.1926693597453337e-11 + RCES: 9.63018381e-05 + ElEn: 2.62363426e-05 + ElTh: 5.72715126e-05 + Lumi: 6.02910000e-05 + LArN: 3.91500000e-05 + StatMC: 1.06488000e-04 + RadErr: 7.12530000e-05 + Model_1: 2.66866342e-04 + Model_2: 2.66866342e-04 + ModelRW_1: 1.77726340e-04 + ModelRW_2: 1.77726340e-04 + JES_1: 2.88034402e-04 + JES_2: 2.88034402e-04 + ArtUnc_1: 7.05122422e-11 + ArtUnc_2: -1.39776752e-08 + ArtUnc_3: -7.11956109e-08 + ArtUnc_4: -2.80581984e-07 + ArtUnc_5: -9.59221642e-09 + ArtUnc_6: -2.02978998e-09 + ArtUnc_7: -1.34725565e-06 + ArtUnc_8: 4.15093449e-06 + ArtUnc_9: -5.95284219e-08 + ArtUnc_10: 5.43801039e-08 + ArtUnc_11: 7.05979688e-08 + ArtUnc_12: 9.13926086e-09 + ArtUnc_13: -1.27901705e-06 + ArtUnc_14: 2.56174083e-08 + ArtUnc_15: -1.98414826e-08 + ArtUnc_16: 1.61980735e-10 + ArtUnc_17: 2.39832360e-07 + ArtUnc_18: -7.13971568e-09 + ArtUnc_19: -7.28680260e-07 + ArtUnc_20: -1.53458330e-06 + ArtUnc_21: 9.11234928e-08 + ArtUnc_22: -1.30987441e-05 + ArtUnc_23: -2.36643547e-07 + ArtUnc_24: 5.65667194e-06 + ArtUnc_25: 7.33567179e-06 + ArtUnc_26: -1.45772490e-06 + ArtUnc_27: -2.23428137e-05 + ArtUnc_28: -9.32741642e-07 + ArtUnc_29: -3.57111304e-06 + ArtUnc_30: -2.32982421e-06 + ArtUnc_31: 9.53946183e-07 + ArtUnc_32: -3.36546809e-05 + ArtUnc_33: 1.08148030e-08 + ArtUnc_34: 5.09851879e-07 + ArtUnc_35: 7.81455951e-07 + ArtUnc_36: -6.44248894e-06 + ArtUnc_37: 1.99798138e-05 + ArtUnc_38: -3.55957728e-06 + ArtUnc_39: -2.04899347e-05 + ArtUnc_40: 3.02489581e-08 + ArtUnc_41: 6.08972889e-05 + ArtUnc_42: -3.78021667e-07 + ArtUnc_43: -8.95526160e-05 + ArtUnc_44: -4.80243902e-05 + ArtUnc_45: 6.22209842e-07 + ArtUnc_46: -1.36879515e-05 + ArtUnc_47: 9.26401421e-07 + ArtUnc_48: 1.60940432e-08 + ArtUnc_49: -1.79733883e-04 + ArtUnc_50: -4.45966690e-06 + ArtUnc_51: 2.03805044e-07 + ArtUnc_52: -1.08628001e-07 + ArtUnc_53: 3.97142559e-09 + ArtUnc_54: 2.96636037e-09 + ArtUnc_55: -1.88114339e-06 + ArtUnc_56: -1.94568835e-06 + ArtUnc_57: -5.71382704e-07 + ArtUnc_58: -2.66743383e-06 + ArtUnc_59: 3.81612319e-08 + ArtUnc_60: 2.69604116e-06 + ArtUnc_61: 2.20699327e-09 + ArtUnc_62: 3.13350454e-08 + ArtUnc_63: -3.63827040e-09 + ArtUnc_64: -5.30398566e-06 + ArtUnc_65: 3.29526232e-08 + ArtUnc_66: 6.51419437e-06 + ArtUnc_67: 1.22493855e-07 + ArtUnc_68: -6.04247204e-08 + ArtUnc_69: -2.52500318e-09 + ArtUnc_70: 1.69649038e-08 + ArtUnc_71: -4.21312920e-11 + ArtUnc_72: 1.04345604e-09 + ArtUnc_73: 2.29880541e-10 + ArtUnc_74: -4.02958193e-08 + ArtUnc_75: 1.16958261e-08 + ArtUnc_76: -1.11257372e-09 + ArtUnc_77: -9.90890800e-10 + ArtUnc_78: 2.15663384e-07 + ArtUnc_79: 7.52535644e-08 + ArtUnc_80: -5.45807364e-10 + ArtUnc_81: 6.33079548e-09 + ArtUnc_82: 2.21983640e-10 + ArtUnc_83: -1.48462463e-09 + ArtUnc_84: 1.36835766e-10 + ArtUnc_85: 2.57946897e-10 + ArtUnc_86: 7.61121895e-11 + ArtUnc_87: 3.49034561e-11 + ArtUnc_88: -7.88311011e-11 + ArtUnc_89: 1.70020381e-09 + ArtUnc_90: -1.18300904e-09 + ArtUnc_91: 6.70014151e-10 + ArtUnc_92: 1.75800360e-09 + ArtUnc_93: -4.66106920e-11 + ArtUnc_94: -5.56519469e-11 + ArtUnc_95: -2.14464026e-10 + ArtUnc_96: -5.19266936e-11 - stat: 0 Uncorr: 1.33e-05 - RCES: 1.7340058304400248e-05 - ElEn: 4.404589736854047e-06 - ElTh: 3.61309867011683e-06 - Lumi: 1.0241e-05 + RCES: 1.73400583e-05 + ElEn: 4.40458974e-06 + ElTh: 3.61309867e-06 + Lumi: 1.02410000e-05 LArN: 6.65e-06 - StatMC: 3.2718e-05 - RadErr: 1.1704e-05 - Model_1: 3.874662318189806e-05 - Model_2: 3.874662318189806e-05 - ModelRW_1: 4.485956130525575e-05 - ModelRW_2: 4.485956130525575e-05 - JES_1: 5.098100096114238e-05 - JES_2: 5.098100096114238e-05 - ArtUnc_1: 5.02819392911427e-14 - ArtUnc_2: -7.93092386430135e-12 - ArtUnc_3: -3.500863412851607e-11 - ArtUnc_4: -9.003481958336642e-11 - ArtUnc_5: -3.1431617742647692e-12 - ArtUnc_6: -2.6228548749244885e-13 - ArtUnc_7: 2.4988272275362133e-10 - ArtUnc_8: -7.095544583119142e-09 - ArtUnc_9: 1.7262562010402244e-10 - ArtUnc_10: 9.466624384963338e-09 - ArtUnc_11: -1.879788980545776e-08 - ArtUnc_12: -1.548158785248519e-09 - ArtUnc_13: -4.131411529644298e-08 - ArtUnc_14: 1.2381720443187933e-10 - ArtUnc_15: -5.996467589130546e-10 - ArtUnc_16: 4.2392744590761055e-11 - ArtUnc_17: 3.800322858826508e-09 - ArtUnc_18: -1.161756959648318e-10 - ArtUnc_19: -9.204297352626248e-09 - ArtUnc_20: -3.29521590064212e-08 - ArtUnc_21: 1.7060190359246318e-09 - ArtUnc_22: -3.159032400526775e-07 - ArtUnc_23: -6.308935847250307e-09 - ArtUnc_24: 1.7278494489382729e-07 - ArtUnc_25: 1.3875472113931756e-07 - ArtUnc_26: -2.9595791064606375e-08 - ArtUnc_27: -6.592875651505602e-07 - ArtUnc_28: -2.4985005971144744e-08 - ArtUnc_29: -3.1242140113639304e-07 - ArtUnc_30: -1.2830119955860022e-07 - ArtUnc_31: 5.325623570444768e-08 - ArtUnc_32: -1.557857961817675e-06 - ArtUnc_33: 1.8667160570307258e-10 - ArtUnc_34: 3.4328292949259264e-08 - ArtUnc_35: 1.5603640778777838e-08 - ArtUnc_36: -3.41441233333585e-07 - ArtUnc_37: 6.324378226229994e-07 - ArtUnc_38: -1.1310962710342948e-07 - ArtUnc_39: -5.43606112255573e-07 - ArtUnc_40: 9.94074320502835e-09 - ArtUnc_41: 2.723372214838412e-06 - ArtUnc_42: 3.5212973382349376e-09 - ArtUnc_43: -3.2286787244513157e-06 - ArtUnc_44: -1.137559147814532e-06 - ArtUnc_45: 1.8692778347107762e-08 - ArtUnc_46: -4.703960347728094e-07 - ArtUnc_47: 1.7808546771262623e-07 - ArtUnc_48: -6.883291106153041e-09 - ArtUnc_49: -5.562381912637747e-06 - ArtUnc_50: -1.1534748792065501e-07 - ArtUnc_51: -1.028575206998728e-06 - ArtUnc_52: 3.031560972701436e-07 - ArtUnc_53: 6.9722900824939765e-09 - ArtUnc_54: -8.435772815707573e-08 - ArtUnc_55: -1.3118817752018197e-05 - ArtUnc_56: 8.339153477261923e-06 - ArtUnc_57: 2.363714414463892e-06 - ArtUnc_58: -2.2236860622236516e-05 - ArtUnc_59: -4.699881721560735e-08 - ArtUnc_60: -2.2636716379401355e-05 - ArtUnc_61: -3.1315628659250002e-09 - ArtUnc_62: -8.573226609941899e-07 - ArtUnc_63: 9.546774888907887e-08 - ArtUnc_64: -4.345762967427407e-05 - ArtUnc_65: 1.6714745717974936e-06 - ArtUnc_66: -5.062688865522955e-05 - ArtUnc_67: -1.662439106353279e-06 - ArtUnc_68: 3.187052164572777e-07 - ArtUnc_69: 4.13515625985064e-08 - ArtUnc_70: -2.9553797995699014e-07 - ArtUnc_71: 2.7263250348303047e-09 - ArtUnc_72: 1.3610040269891257e-06 - ArtUnc_73: 1.0264420914310467e-07 - ArtUnc_74: 5.69311430194333e-07 - ArtUnc_75: -1.7030781847754871e-06 - ArtUnc_76: -6.269284013211263e-09 - ArtUnc_77: 8.642190079204772e-09 - ArtUnc_78: -3.365296810775796e-06 - ArtUnc_79: -1.84430929476948e-06 - ArtUnc_80: 9.498543448078409e-09 - ArtUnc_81: -9.359532363282695e-08 - ArtUnc_82: -5.063739805795505e-09 - ArtUnc_83: 1.672309867316878e-08 - ArtUnc_84: 1.257677996302173e-08 - ArtUnc_85: -5.998074356448583e-09 - ArtUnc_86: -1.4311052060218262e-09 - ArtUnc_87: -1.0586207274600761e-09 - ArtUnc_88: -1.508268361170333e-10 - ArtUnc_89: -3.94871824587661e-08 - ArtUnc_90: 1.8390899459919323e-08 - ArtUnc_91: -1.220670268979323e-08 - ArtUnc_92: -3.9562589117971506e-08 - ArtUnc_93: 2.223360481207455e-10 - ArtUnc_94: 1.6431022394438529e-09 - ArtUnc_95: 2.7427779419367713e-09 - ArtUnc_96: 2.0710559073924454e-10 + StatMC: 3.27180000e-05 + RadErr: 1.17040000e-05 + Model_1: 3.87466232e-05 + Model_2: 3.87466232e-05 + ModelRW_1: 4.48595613e-05 + ModelRW_2: 4.48595613e-05 + JES_1: 5.09810010e-05 + JES_2: 5.09810010e-05 + ArtUnc_1: 5.02819393e-14 + ArtUnc_2: -7.93092386e-12 + ArtUnc_3: -3.50086341e-11 + ArtUnc_4: -9.00348196e-11 + ArtUnc_5: -3.14316177e-12 + ArtUnc_6: -2.62285487e-13 + ArtUnc_7: 2.49882723e-10 + ArtUnc_8: -7.09554458e-09 + ArtUnc_9: 1.72625620e-10 + ArtUnc_10: 9.46662438e-09 + ArtUnc_11: -1.87978898e-08 + ArtUnc_12: -1.54815879e-09 + ArtUnc_13: -4.13141153e-08 + ArtUnc_14: 1.23817204e-10 + ArtUnc_15: -5.99646759e-10 + ArtUnc_16: 4.23927446e-11 + ArtUnc_17: 3.80032286e-09 + ArtUnc_18: -1.16175696e-10 + ArtUnc_19: -9.20429735e-09 + ArtUnc_20: -3.29521590e-08 + ArtUnc_21: 1.70601904e-09 + ArtUnc_22: -3.15903240e-07 + ArtUnc_23: -6.30893585e-09 + ArtUnc_24: 1.72784945e-07 + ArtUnc_25: 1.38754721e-07 + ArtUnc_26: -2.95957911e-08 + ArtUnc_27: -6.59287565e-07 + ArtUnc_28: -2.49850060e-08 + ArtUnc_29: -3.12421401e-07 + ArtUnc_30: -1.28301200e-07 + ArtUnc_31: 5.32562357e-08 + ArtUnc_32: -1.55785796e-06 + ArtUnc_33: 1.86671606e-10 + ArtUnc_34: 3.43282929e-08 + ArtUnc_35: 1.56036408e-08 + ArtUnc_36: -3.41441233e-07 + ArtUnc_37: 6.32437823e-07 + ArtUnc_38: -1.13109627e-07 + ArtUnc_39: -5.43606112e-07 + ArtUnc_40: 9.94074321e-09 + ArtUnc_41: 2.72337221e-06 + ArtUnc_42: 3.52129734e-09 + ArtUnc_43: -3.22867872e-06 + ArtUnc_44: -1.13755915e-06 + ArtUnc_45: 1.86927783e-08 + ArtUnc_46: -4.70396035e-07 + ArtUnc_47: 1.78085468e-07 + ArtUnc_48: -6.88329111e-09 + ArtUnc_49: -5.56238191e-06 + ArtUnc_50: -1.15347488e-07 + ArtUnc_51: -1.02857521e-06 + ArtUnc_52: 3.03156097e-07 + ArtUnc_53: 6.97229008e-09 + ArtUnc_54: -8.43577282e-08 + ArtUnc_55: -1.31188178e-05 + ArtUnc_56: 8.33915348e-06 + ArtUnc_57: 2.36371441e-06 + ArtUnc_58: -2.22368606e-05 + ArtUnc_59: -4.69988172e-08 + ArtUnc_60: -2.26367164e-05 + ArtUnc_61: -3.13156287e-09 + ArtUnc_62: -8.57322661e-07 + ArtUnc_63: 9.54677489e-08 + ArtUnc_64: -4.34576297e-05 + ArtUnc_65: 1.67147457e-06 + ArtUnc_66: -5.06268887e-05 + ArtUnc_67: -1.66243911e-06 + ArtUnc_68: 3.18705216e-07 + ArtUnc_69: 4.13515626e-08 + ArtUnc_70: -2.95537980e-07 + ArtUnc_71: 2.72632503e-09 + ArtUnc_72: 1.36100403e-06 + ArtUnc_73: 1.02644209e-07 + ArtUnc_74: 5.69311430e-07 + ArtUnc_75: -1.70307818e-06 + ArtUnc_76: -6.26928401e-09 + ArtUnc_77: 8.64219008e-09 + ArtUnc_78: -3.36529681e-06 + ArtUnc_79: -1.84430929e-06 + ArtUnc_80: 9.49854345e-09 + ArtUnc_81: -9.35953236e-08 + ArtUnc_82: -5.06373981e-09 + ArtUnc_83: 1.67230987e-08 + ArtUnc_84: 1.25767800e-08 + ArtUnc_85: -5.99807436e-09 + ArtUnc_86: -1.43110521e-09 + ArtUnc_87: -1.05862073e-09 + ArtUnc_88: -1.50826836e-10 + ArtUnc_89: -3.94871825e-08 + ArtUnc_90: 1.83908995e-08 + ArtUnc_91: -1.22067027e-08 + ArtUnc_92: -3.95625891e-08 + ArtUnc_93: 2.22336048e-10 + ArtUnc_94: 1.64310224e-09 + ArtUnc_95: 2.74277794e-09 + ArtUnc_96: 2.07105591e-10 - stat: 0 Uncorr: 1.59e-06 - RCES: 4.999835839305126e-06 - ElEn: 9.101621654957976e-07 - ElTh: 2.1012528280766214e-06 - Lumi: 1.2243e-06 + RCES: 4.99983584e-06 + ElEn: 9.10162165e-07 + ElTh: 2.10125283e-06 + Lumi: 1.22430000e-06 LArN: 7.95e-07 - StatMC: 1.0255499999999999e-05 - RadErr: 2.3691e-06 - Model_1: 7.150546614070843e-06 - Model_2: 7.150546614070843e-06 - ModelRW_1: 6.678340705594467e-06 - ModelRW_2: 6.678340705594467e-06 - JES_1: 9.351227841305119e-06 - JES_2: 9.351227841305119e-06 - ArtUnc_1: 3.1649572545798636e-16 - ArtUnc_2: -5.233577612250058e-14 - ArtUnc_3: 1.2009689584926394e-13 - ArtUnc_4: 5.277572473053857e-12 - ArtUnc_5: 1.9602452330203135e-13 - ArtUnc_6: 1.1950603216690673e-13 - ArtUnc_7: 1.177091946862514e-10 - ArtUnc_8: -1.4179526772949043e-09 - ArtUnc_9: 3.140778790121353e-11 - ArtUnc_10: 1.5709557509707463e-09 - ArtUnc_11: -3.1240802535447885e-09 - ArtUnc_12: -2.518727268235315e-10 - ArtUnc_13: -7.045050237369745e-09 - ArtUnc_14: -2.4889382837967554e-11 - ArtUnc_15: -6.151766026825989e-11 - ArtUnc_16: 5.582573905562612e-12 - ArtUnc_17: 3.960908745469827e-10 - ArtUnc_18: -1.2186192497896489e-11 - ArtUnc_19: -1.2867497103024744e-09 - ArtUnc_20: -4.035383590529554e-09 - ArtUnc_21: 2.330392107937851e-10 - ArtUnc_22: -4.487504907636002e-08 - ArtUnc_23: -7.936318198209268e-10 - ArtUnc_24: 2.371442818121514e-08 - ArtUnc_25: 1.574975239816285e-08 - ArtUnc_26: -4.309261165127264e-09 - ArtUnc_27: -9.7984030705831e-08 - ArtUnc_28: -4.944339987828451e-09 - ArtUnc_29: -5.412031033562565e-08 - ArtUnc_30: -2.2124207161280466e-08 - ArtUnc_31: 9.099620059241552e-09 - ArtUnc_32: -2.4212284907869234e-07 - ArtUnc_33: 7.643746265587136e-11 - ArtUnc_34: -2.531175015901532e-09 - ArtUnc_35: -4.649292937064408e-09 - ArtUnc_36: 2.1601831095153314e-10 - ArtUnc_37: 1.4995257681146108e-09 - ArtUnc_38: -1.5743773344953369e-10 - ArtUnc_39: 7.455873430691035e-09 - ArtUnc_40: -4.957949681526738e-11 - ArtUnc_41: -2.9637995206043367e-08 - ArtUnc_42: 1.4364644653972603e-09 - ArtUnc_43: 8.010985922253236e-08 - ArtUnc_44: 1.1402569191300257e-08 - ArtUnc_45: -4.70319844532275e-10 - ArtUnc_46: 1.0023033931634319e-08 - ArtUnc_47: 7.628779905008244e-09 - ArtUnc_48: -4.3229700830991953e-10 - ArtUnc_49: 3.164264343360258e-07 - ArtUnc_50: 1.244365852390118e-08 - ArtUnc_51: -5.759850014053632e-08 - ArtUnc_52: 4.17163704070633e-08 - ArtUnc_53: -2.931442056952663e-09 - ArtUnc_54: -3.5184202673116693e-09 - ArtUnc_55: -4.5051482319390554e-07 - ArtUnc_56: 4.7492041930752146e-07 - ArtUnc_57: 1.4149340622586435e-07 - ArtUnc_58: -5.06873105407668e-07 - ArtUnc_59: -4.014248528158959e-09 - ArtUnc_60: -6.525009893137404e-07 - ArtUnc_61: 7.476582192990769e-10 - ArtUnc_62: -6.224558013585522e-08 - ArtUnc_63: 5.947352900612051e-09 - ArtUnc_64: -4.6023902239792263e-07 - ArtUnc_65: 1.469646262779821e-08 - ArtUnc_66: -8.742215561408021e-07 - ArtUnc_67: 2.685437413470425e-07 - ArtUnc_68: -2.515600809491753e-08 - ArtUnc_69: -9.129200909773729e-08 - ArtUnc_70: 2.0080733355498856e-06 - ArtUnc_71: 2.981855795298056e-08 - ArtUnc_72: 1.2038558502867265e-06 - ArtUnc_73: -3.738286373691037e-09 - ArtUnc_74: 7.397192237967834e-06 - ArtUnc_75: -1.1239358915581491e-07 - ArtUnc_76: 1.9660642274449898e-07 - ArtUnc_77: 2.0281556677642994e-07 - ArtUnc_78: 1.2953754330491275e-05 - ArtUnc_79: -2.117380884707036e-05 - ArtUnc_80: 3.964956462254869e-07 - ArtUnc_81: 2.6821229728058613e-07 - ArtUnc_82: -5.169686328983974e-08 - ArtUnc_83: -1.592215483144535e-07 - ArtUnc_84: 7.311494935121575e-07 - ArtUnc_85: 2.9648856667801234e-09 - ArtUnc_86: -2.056962891334345e-08 - ArtUnc_87: -2.2139520866865153e-08 - ArtUnc_88: -3.832132486986376e-08 - ArtUnc_89: -9.456451570329005e-07 - ArtUnc_90: 2.959816264128777e-07 - ArtUnc_91: 1.36460411354434e-07 - ArtUnc_92: 1.6368869442189318e-06 - ArtUnc_93: -4.62625192359946e-09 - ArtUnc_94: -2.907941765743483e-08 - ArtUnc_95: 1.2467227997260188e-08 - ArtUnc_96: -9.500208452465233e-09 + StatMC: 1.02555000e-05 + RadErr: 2.36910000e-06 + Model_1: 7.15054661e-06 + Model_2: 7.15054661e-06 + ModelRW_1: 6.67834071e-06 + ModelRW_2: 6.67834071e-06 + JES_1: 9.35122784e-06 + JES_2: 9.35122784e-06 + ArtUnc_1: 3.16495725e-16 + ArtUnc_2: -5.23357761e-14 + ArtUnc_3: 1.20096896e-13 + ArtUnc_4: 5.27757247e-12 + ArtUnc_5: 1.96024523e-13 + ArtUnc_6: 1.19506032e-13 + ArtUnc_7: 1.17709195e-10 + ArtUnc_8: -1.41795268e-09 + ArtUnc_9: 3.14077879e-11 + ArtUnc_10: 1.57095575e-09 + ArtUnc_11: -3.12408025e-09 + ArtUnc_12: -2.51872727e-10 + ArtUnc_13: -7.04505024e-09 + ArtUnc_14: -2.48893828e-11 + ArtUnc_15: -6.15176603e-11 + ArtUnc_16: 5.58257391e-12 + ArtUnc_17: 3.96090875e-10 + ArtUnc_18: -1.21861925e-11 + ArtUnc_19: -1.28674971e-09 + ArtUnc_20: -4.03538359e-09 + ArtUnc_21: 2.33039211e-10 + ArtUnc_22: -4.48750491e-08 + ArtUnc_23: -7.93631820e-10 + ArtUnc_24: 2.37144282e-08 + ArtUnc_25: 1.57497524e-08 + ArtUnc_26: -4.30926117e-09 + ArtUnc_27: -9.79840307e-08 + ArtUnc_28: -4.94433999e-09 + ArtUnc_29: -5.41203103e-08 + ArtUnc_30: -2.21242072e-08 + ArtUnc_31: 9.09962006e-09 + ArtUnc_32: -2.42122849e-07 + ArtUnc_33: 7.64374627e-11 + ArtUnc_34: -2.53117502e-09 + ArtUnc_35: -4.64929294e-09 + ArtUnc_36: 2.16018311e-10 + ArtUnc_37: 1.49952577e-09 + ArtUnc_38: -1.57437733e-10 + ArtUnc_39: 7.45587343e-09 + ArtUnc_40: -4.95794968e-11 + ArtUnc_41: -2.96379952e-08 + ArtUnc_42: 1.43646447e-09 + ArtUnc_43: 8.01098592e-08 + ArtUnc_44: 1.14025692e-08 + ArtUnc_45: -4.70319845e-10 + ArtUnc_46: 1.00230339e-08 + ArtUnc_47: 7.62877991e-09 + ArtUnc_48: -4.32297008e-10 + ArtUnc_49: 3.16426434e-07 + ArtUnc_50: 1.24436585e-08 + ArtUnc_51: -5.75985001e-08 + ArtUnc_52: 4.17163704e-08 + ArtUnc_53: -2.93144206e-09 + ArtUnc_54: -3.51842027e-09 + ArtUnc_55: -4.50514823e-07 + ArtUnc_56: 4.74920419e-07 + ArtUnc_57: 1.41493406e-07 + ArtUnc_58: -5.06873105e-07 + ArtUnc_59: -4.01424853e-09 + ArtUnc_60: -6.52500989e-07 + ArtUnc_61: 7.47658219e-10 + ArtUnc_62: -6.22455801e-08 + ArtUnc_63: 5.94735290e-09 + ArtUnc_64: -4.60239022e-07 + ArtUnc_65: 1.46964626e-08 + ArtUnc_66: -8.74221556e-07 + ArtUnc_67: 2.68543741e-07 + ArtUnc_68: -2.51560081e-08 + ArtUnc_69: -9.12920091e-08 + ArtUnc_70: 2.00807334e-06 + ArtUnc_71: 2.98185580e-08 + ArtUnc_72: 1.20385585e-06 + ArtUnc_73: -3.73828637e-09 + ArtUnc_74: 7.39719224e-06 + ArtUnc_75: -1.12393589e-07 + ArtUnc_76: 1.96606423e-07 + ArtUnc_77: 2.02815567e-07 + ArtUnc_78: 1.29537543e-05 + ArtUnc_79: -2.11738088e-05 + ArtUnc_80: 3.96495646e-07 + ArtUnc_81: 2.68212297e-07 + ArtUnc_82: -5.16968633e-08 + ArtUnc_83: -1.59221548e-07 + ArtUnc_84: 7.31149494e-07 + ArtUnc_85: 2.96488567e-09 + ArtUnc_86: -2.05696289e-08 + ArtUnc_87: -2.21395209e-08 + ArtUnc_88: -3.83213249e-08 + ArtUnc_89: -9.45645157e-07 + ArtUnc_90: 2.95981626e-07 + ArtUnc_91: 1.36460411e-07 + ArtUnc_92: 1.63688694e-06 + ArtUnc_93: -4.62625192e-09 + ArtUnc_94: -2.90794177e-08 + ArtUnc_95: 1.24672280e-08 + ArtUnc_96: -9.50020845e-09 - stat: 0 Uncorr: 2.41e-07 - RCES: 8.112818548907648e-07 - ElEn: 7.872948443086618e-07 - ElTh: 2.3289878896207254e-07 - Lumi: 1.8557e-07 - LArN: 1.205e-07 - StatMC: 3.52583e-06 - RadErr: 6.4588e-07 - Model_1: 2.0517693205621335e-06 - Model_2: 2.0517693205621335e-06 - ModelRW_1: 1.82341625664575e-07 - ModelRW_2: 1.82341625664575e-07 - JES_1: 2.1147471921248644e-06 - JES_2: 2.1147471921248644e-06 - ArtUnc_1: 7.525551332810761e-19 - ArtUnc_2: 1.7011065060993183e-18 - ArtUnc_3: 2.2088374550225672e-17 - ArtUnc_4: 1.2241962774379785e-16 - ArtUnc_5: 4.140643639484835e-18 - ArtUnc_6: 1.838631669346577e-18 - ArtUnc_7: 4.662605559246975e-16 - ArtUnc_8: 3.6959069714146945e-15 - ArtUnc_9: 4.1228378670082187e-17 - ArtUnc_10: -1.6732250973069617e-14 - ArtUnc_11: 2.906247935746357e-14 - ArtUnc_12: 2.07354682755585e-15 - ArtUnc_13: 1.0956125714146772e-13 - ArtUnc_14: -7.645551038861831e-16 - ArtUnc_15: 4.445232595615555e-15 - ArtUnc_16: -2.675054665071818e-16 - ArtUnc_17: -6.686565834819298e-15 - ArtUnc_18: 1.8429779658553334e-16 - ArtUnc_19: 5.3093938955127536e-14 - ArtUnc_20: 1.6034412809324093e-13 - ArtUnc_21: -9.114499216275052e-15 - ArtUnc_22: 2.8160976159407595e-12 - ArtUnc_23: 5.926044542417139e-14 - ArtUnc_24: -1.9827743594159214e-12 - ArtUnc_25: -2.8747873249342066e-13 - ArtUnc_26: 1.6040258231256255e-13 - ArtUnc_27: 8.751908398152517e-12 - ArtUnc_28: 3.243057790862044e-13 - ArtUnc_29: 6.553866976012681e-12 - ArtUnc_30: 2.568968732178255e-12 - ArtUnc_31: -1.0753638369503453e-12 - ArtUnc_32: 4.1544951068356036e-11 - ArtUnc_33: -1.7348277059421816e-15 - ArtUnc_34: -1.5040569541908268e-12 - ArtUnc_35: -7.984848532209664e-13 - ArtUnc_36: 2.4281165361617614e-11 - ArtUnc_37: -4.750445954573314e-11 - ArtUnc_38: 9.352170382692404e-12 - ArtUnc_39: 5.0030111451300346e-11 - ArtUnc_40: -9.794687305802967e-13 - ArtUnc_41: -3.384009666384961e-10 - ArtUnc_42: 9.145350864578396e-12 - ArtUnc_43: 5.444991103342456e-10 - ArtUnc_44: 2.164790135155239e-10 - ArtUnc_45: -5.036337921055136e-12 - ArtUnc_46: 7.572012011880331e-11 - ArtUnc_47: 1.3122931491457895e-11 - ArtUnc_48: -1.6235023239829938e-12 - ArtUnc_49: 1.4463868992619182e-09 - ArtUnc_50: 6.487919379608554e-11 - ArtUnc_51: 2.564045270519593e-10 - ArtUnc_52: -1.9086491770607894e-11 - ArtUnc_53: -6.004925716718752e-11 - ArtUnc_54: 1.3528719560799027e-11 - ArtUnc_55: 1.1799485815545221e-08 - ArtUnc_56: -9.975340208781463e-09 - ArtUnc_57: -2.2521217812471348e-09 - ArtUnc_58: 2.804699758441273e-08 - ArtUnc_59: 2.2103976595410218e-10 - ArtUnc_60: 3.3649817451941395e-08 - ArtUnc_61: 1.1740658032824714e-10 - ArtUnc_62: -2.402339850854667e-09 - ArtUnc_63: 1.7391658748525373e-10 - ArtUnc_64: 8.89274434058841e-08 - ArtUnc_65: -4.7974890767402026e-09 - ArtUnc_66: 1.22364516968084e-07 - ArtUnc_67: 3.040652579547578e-08 - ArtUnc_68: -6.862203540163716e-09 - ArtUnc_69: -7.665774654289796e-09 - ArtUnc_70: 1.480625126632594e-07 - ArtUnc_71: 2.0979076256282548e-09 - ArtUnc_72: 5.122209600702832e-08 - ArtUnc_73: 1.3362480636831328e-10 - ArtUnc_74: 2.717582622135473e-07 - ArtUnc_75: -4.951873092024478e-08 - ArtUnc_76: 3.198076745946251e-09 - ArtUnc_77: 1.1602659070872547e-08 - ArtUnc_78: 2.0132775223619658e-07 - ArtUnc_79: -3.7306664299767404e-07 - ArtUnc_80: 5.992296682747596e-09 - ArtUnc_81: -4.792623496419435e-09 - ArtUnc_82: -1.0624184782695466e-09 - ArtUnc_83: 9.610625844064377e-08 - ArtUnc_84: -1.2694396721333717e-07 - ArtUnc_85: -6.457187616301097e-07 - ArtUnc_86: -2.9317899929255475e-07 - ArtUnc_87: -3.9372117306839423e-07 - ArtUnc_88: 4.955158818554302e-08 - ArtUnc_89: 1.8185695363269428e-07 - ArtUnc_90: 1.097358450627666e-06 - ArtUnc_91: -6.7007103400230265e-06 - ArtUnc_92: -4.1782353724083415e-08 - ArtUnc_93: 6.93294384753824e-08 - ArtUnc_94: 1.1183383282743e-07 - ArtUnc_95: -2.9181645166768758e-06 - ArtUnc_96: -6.066089548558399e-07 + RCES: 8.11281855e-07 + ElEn: 7.87294844e-07 + ElTh: 2.32898789e-07 + Lumi: 1.85570000e-07 + LArN: 1.20500000e-07 + StatMC: 3.52583000e-06 + RadErr: 6.45880000e-07 + Model_1: 2.05176932e-06 + Model_2: 2.05176932e-06 + ModelRW_1: 1.82341626e-07 + ModelRW_2: 1.82341626e-07 + JES_1: 2.11474719e-06 + JES_2: 2.11474719e-06 + ArtUnc_1: 7.52555133e-19 + ArtUnc_2: 1.70110651e-18 + ArtUnc_3: 2.20883746e-17 + ArtUnc_4: 1.22419628e-16 + ArtUnc_5: 4.14064364e-18 + ArtUnc_6: 1.83863167e-18 + ArtUnc_7: 4.66260556e-16 + ArtUnc_8: 3.69590697e-15 + ArtUnc_9: 4.12283787e-17 + ArtUnc_10: -1.67322510e-14 + ArtUnc_11: 2.90624794e-14 + ArtUnc_12: 2.07354683e-15 + ArtUnc_13: 1.09561257e-13 + ArtUnc_14: -7.64555104e-16 + ArtUnc_15: 4.44523260e-15 + ArtUnc_16: -2.67505467e-16 + ArtUnc_17: -6.68656583e-15 + ArtUnc_18: 1.84297797e-16 + ArtUnc_19: 5.30939390e-14 + ArtUnc_20: 1.60344128e-13 + ArtUnc_21: -9.11449922e-15 + ArtUnc_22: 2.81609762e-12 + ArtUnc_23: 5.92604454e-14 + ArtUnc_24: -1.98277436e-12 + ArtUnc_25: -2.87478732e-13 + ArtUnc_26: 1.60402582e-13 + ArtUnc_27: 8.75190840e-12 + ArtUnc_28: 3.24305779e-13 + ArtUnc_29: 6.55386698e-12 + ArtUnc_30: 2.56896873e-12 + ArtUnc_31: -1.07536384e-12 + ArtUnc_32: 4.15449511e-11 + ArtUnc_33: -1.73482771e-15 + ArtUnc_34: -1.50405695e-12 + ArtUnc_35: -7.98484853e-13 + ArtUnc_36: 2.42811654e-11 + ArtUnc_37: -4.75044595e-11 + ArtUnc_38: 9.35217038e-12 + ArtUnc_39: 5.00301115e-11 + ArtUnc_40: -9.79468731e-13 + ArtUnc_41: -3.38400967e-10 + ArtUnc_42: 9.14535086e-12 + ArtUnc_43: 5.44499110e-10 + ArtUnc_44: 2.16479014e-10 + ArtUnc_45: -5.03633792e-12 + ArtUnc_46: 7.57201201e-11 + ArtUnc_47: 1.31229315e-11 + ArtUnc_48: -1.62350232e-12 + ArtUnc_49: 1.44638690e-09 + ArtUnc_50: 6.48791938e-11 + ArtUnc_51: 2.56404527e-10 + ArtUnc_52: -1.90864918e-11 + ArtUnc_53: -6.00492572e-11 + ArtUnc_54: 1.35287196e-11 + ArtUnc_55: 1.17994858e-08 + ArtUnc_56: -9.97534021e-09 + ArtUnc_57: -2.25212178e-09 + ArtUnc_58: 2.80469976e-08 + ArtUnc_59: 2.21039766e-10 + ArtUnc_60: 3.36498175e-08 + ArtUnc_61: 1.17406580e-10 + ArtUnc_62: -2.40233985e-09 + ArtUnc_63: 1.73916587e-10 + ArtUnc_64: 8.89274434e-08 + ArtUnc_65: -4.79748908e-09 + ArtUnc_66: 1.22364517e-07 + ArtUnc_67: 3.04065258e-08 + ArtUnc_68: -6.86220354e-09 + ArtUnc_69: -7.66577465e-09 + ArtUnc_70: 1.48062513e-07 + ArtUnc_71: 2.09790763e-09 + ArtUnc_72: 5.12220960e-08 + ArtUnc_73: 1.33624806e-10 + ArtUnc_74: 2.71758262e-07 + ArtUnc_75: -4.95187309e-08 + ArtUnc_76: 3.19807675e-09 + ArtUnc_77: 1.16026591e-08 + ArtUnc_78: 2.01327752e-07 + ArtUnc_79: -3.73066643e-07 + ArtUnc_80: 5.99229668e-09 + ArtUnc_81: -4.79262350e-09 + ArtUnc_82: -1.06241848e-09 + ArtUnc_83: 9.61062584e-08 + ArtUnc_84: -1.26943967e-07 + ArtUnc_85: -6.45718762e-07 + ArtUnc_86: -2.93178999e-07 + ArtUnc_87: -3.93721173e-07 + ArtUnc_88: 4.95515882e-08 + ArtUnc_89: 1.81856954e-07 + ArtUnc_90: 1.09735845e-06 + ArtUnc_91: -6.70071034e-06 + ArtUnc_92: -4.17823537e-08 + ArtUnc_93: 6.93294385e-08 + ArtUnc_94: 1.11833833e-07 + ArtUnc_95: -2.91816452e-06 + ArtUnc_96: -6.06608955e-07 - stat: 0 Uncorr: 0.00123 - RCES: 0.004552541394375234 - ElEn: 0.0005164169318486759 - ElTh: 0.0002953921249796616 - Lumi: 0.0009471000000000001 + RCES: 4.55254139e-03 + ElEn: 5.16416932e-04 + ElTh: 2.95392125e-04 + Lumi: 9.47100000e-04 LArN: 0.000615 - StatMC: 0.0014514 - RadErr: 0.0005289 - Model_1: 0.005427185966962989 - Model_2: 0.005427185966962989 - ModelRW_1: 0.004000810167953486 - ModelRW_2: 0.004000810167953486 - JES_1: 0.0006407225725694391 - JES_2: 0.0006407225725694391 - ArtUnc_1: -5.184077555533741e-09 - ArtUnc_2: 1.1677814854411006e-06 - ArtUnc_3: 6.484945269315138e-06 - ArtUnc_4: 2.9607766166695967e-05 - ArtUnc_5: 1.026009764528549e-06 - ArtUnc_6: 2.662512931754971e-07 - ArtUnc_7: 0.00019243537417088093 - ArtUnc_8: -0.0010127354200840388 - ArtUnc_9: 1.8484503325499536e-05 - ArtUnc_10: 0.00048367113275177076 - ArtUnc_11: -0.0010003494842459083 - ArtUnc_12: -8.105091416697253e-05 - ArtUnc_13: -0.001560303726292504 - ArtUnc_14: -1.3124683464170857e-05 - ArtUnc_15: -2.2591533427100417e-06 - ArtUnc_16: 5.817826599619027e-07 - ArtUnc_17: -1.1337540775553265e-06 - ArtUnc_18: 2.987029686372386e-09 - ArtUnc_19: -4.885827276898941e-06 - ArtUnc_20: 5.46036666714073e-06 - ArtUnc_21: -1.9999995328938429e-07 - ArtUnc_22: 1.127622547801492e-05 - ArtUnc_23: 2.4150688771514286e-07 - ArtUnc_24: -1.8699348321426944e-05 - ArtUnc_25: -8.703721396487673e-06 - ArtUnc_26: -5.289837150206431e-07 - ArtUnc_27: 2.092744305624243e-05 - ArtUnc_28: 1.1909023961737446e-06 - ArtUnc_29: -1.376509661274837e-07 - ArtUnc_30: 2.320036287223341e-06 - ArtUnc_31: -9.390934551493554e-07 - ArtUnc_32: 5.260444912495629e-05 - ArtUnc_33: -2.0294766714438776e-08 - ArtUnc_34: 6.195759482581024e-07 - ArtUnc_35: 9.550353952130143e-07 - ArtUnc_36: 3.729841789513544e-08 - ArtUnc_37: -8.01872132902217e-07 - ArtUnc_38: 1.3985486051409333e-07 - ArtUnc_39: -6.047222284831918e-07 - ArtUnc_40: -2.4299704067528574e-09 - ArtUnc_41: 1.4240506631795265e-07 - ArtUnc_42: 1.7631994306664332e-09 - ArtUnc_43: -3.8265962551438614e-07 - ArtUnc_44: 5.247038576006126e-07 - ArtUnc_45: -2.189129079051947e-09 - ArtUnc_46: -1.44380724631698e-08 - ArtUnc_47: 1.3171349073524332e-08 - ArtUnc_48: -2.7911157642128274e-10 - ArtUnc_49: -1.2825201759836507e-06 - ArtUnc_50: -3.951216736568954e-08 - ArtUnc_51: 4.224301304456062e-09 - ArtUnc_52: 6.753685855579711e-09 - ArtUnc_53: -1.0953565605415092e-09 - ArtUnc_54: 5.61711527514032e-10 - ArtUnc_55: -1.782027436821851e-08 - ArtUnc_56: -1.2209974055510724e-09 - ArtUnc_57: -4.019287354508974e-10 - ArtUnc_58: -4.213685453428593e-09 - ArtUnc_59: 1.2091701533994065e-10 - ArtUnc_60: -8.476923147507564e-09 - ArtUnc_61: 2.7460661768004776e-11 - ArtUnc_62: -2.362711917216108e-10 - ArtUnc_63: 1.9836546306819357e-11 - ArtUnc_64: -6.466304591781763e-08 - ArtUnc_65: 1.114451854006085e-09 - ArtUnc_66: 4.576488071035876e-08 - ArtUnc_67: 5.587580325253636e-10 - ArtUnc_68: -6.110199357284909e-10 - ArtUnc_69: -1.7776037748956474e-11 - ArtUnc_70: 2.105310448338427e-10 - ArtUnc_71: 2.036025074802777e-12 - ArtUnc_72: 5.932777335713569e-10 - ArtUnc_73: 4.2800168813375514e-11 - ArtUnc_74: 8.421436948084789e-11 - ArtUnc_75: -9.046981473561437e-10 - ArtUnc_76: -8.711386866030128e-12 - ArtUnc_77: -8.783496744864512e-12 - ArtUnc_78: 1.1157174486688844e-09 - ArtUnc_79: -6.647586284951538e-10 - ArtUnc_80: 2.5056554750015145e-12 - ArtUnc_81: 2.9053533657378786e-11 - ArtUnc_82: -1.6143113427655448e-12 - ArtUnc_83: -1.3792892516033813e-11 - ArtUnc_84: 2.55994988468569e-11 - ArtUnc_85: -4.1136523479301395e-13 - ArtUnc_86: 3.0054805505082905e-12 - ArtUnc_87: 3.6273406321135882e-12 - ArtUnc_88: -2.8013289475797947e-12 - ArtUnc_89: -1.9168249548640208e-11 - ArtUnc_90: -1.7317335682249917e-11 - ArtUnc_91: -2.0340718509920277e-12 - ArtUnc_92: 7.107882979360044e-11 - ArtUnc_93: -1.982403558075022e-12 - ArtUnc_94: -8.498361675632596e-13 - ArtUnc_95: 3.0305793135593906e-11 - ArtUnc_96: 4.905247241945646e-12 + StatMC: 1.45140000e-03 + RadErr: 5.28900000e-04 + Model_1: 5.42718597e-03 + Model_2: 5.42718597e-03 + ModelRW_1: 4.00081017e-03 + ModelRW_2: 4.00081017e-03 + JES_1: 6.40722573e-04 + JES_2: 6.40722573e-04 + ArtUnc_1: -5.18407756e-09 + ArtUnc_2: 1.16778149e-06 + ArtUnc_3: 6.48494527e-06 + ArtUnc_4: 2.96077662e-05 + ArtUnc_5: 1.02600976e-06 + ArtUnc_6: 2.66251293e-07 + ArtUnc_7: 1.92435374e-04 + ArtUnc_8: -1.01273542e-03 + ArtUnc_9: 1.84845033e-05 + ArtUnc_10: 4.83671133e-04 + ArtUnc_11: -1.00034948e-03 + ArtUnc_12: -8.10509142e-05 + ArtUnc_13: -1.56030373e-03 + ArtUnc_14: -1.31246835e-05 + ArtUnc_15: -2.25915334e-06 + ArtUnc_16: 5.81782660e-07 + ArtUnc_17: -1.13375408e-06 + ArtUnc_18: 2.98702969e-09 + ArtUnc_19: -4.88582728e-06 + ArtUnc_20: 5.46036667e-06 + ArtUnc_21: -1.99999953e-07 + ArtUnc_22: 1.12762255e-05 + ArtUnc_23: 2.41506888e-07 + ArtUnc_24: -1.86993483e-05 + ArtUnc_25: -8.70372140e-06 + ArtUnc_26: -5.28983715e-07 + ArtUnc_27: 2.09274431e-05 + ArtUnc_28: 1.19090240e-06 + ArtUnc_29: -1.37650966e-07 + ArtUnc_30: 2.32003629e-06 + ArtUnc_31: -9.39093455e-07 + ArtUnc_32: 5.26044491e-05 + ArtUnc_33: -2.02947667e-08 + ArtUnc_34: 6.19575948e-07 + ArtUnc_35: 9.55035395e-07 + ArtUnc_36: 3.72984179e-08 + ArtUnc_37: -8.01872133e-07 + ArtUnc_38: 1.39854861e-07 + ArtUnc_39: -6.04722228e-07 + ArtUnc_40: -2.42997041e-09 + ArtUnc_41: 1.42405066e-07 + ArtUnc_42: 1.76319943e-09 + ArtUnc_43: -3.82659626e-07 + ArtUnc_44: 5.24703858e-07 + ArtUnc_45: -2.18912908e-09 + ArtUnc_46: -1.44380725e-08 + ArtUnc_47: 1.31713491e-08 + ArtUnc_48: -2.79111576e-10 + ArtUnc_49: -1.28252018e-06 + ArtUnc_50: -3.95121674e-08 + ArtUnc_51: 4.22430130e-09 + ArtUnc_52: 6.75368586e-09 + ArtUnc_53: -1.09535656e-09 + ArtUnc_54: 5.61711528e-10 + ArtUnc_55: -1.78202744e-08 + ArtUnc_56: -1.22099741e-09 + ArtUnc_57: -4.01928735e-10 + ArtUnc_58: -4.21368545e-09 + ArtUnc_59: 1.20917015e-10 + ArtUnc_60: -8.47692315e-09 + ArtUnc_61: 2.74606618e-11 + ArtUnc_62: -2.36271192e-10 + ArtUnc_63: 1.98365463e-11 + ArtUnc_64: -6.46630459e-08 + ArtUnc_65: 1.11445185e-09 + ArtUnc_66: 4.57648807e-08 + ArtUnc_67: 5.58758033e-10 + ArtUnc_68: -6.11019936e-10 + ArtUnc_69: -1.77760377e-11 + ArtUnc_70: 2.10531045e-10 + ArtUnc_71: 2.03602507e-12 + ArtUnc_72: 5.93277734e-10 + ArtUnc_73: 4.28001688e-11 + ArtUnc_74: 8.42143695e-11 + ArtUnc_75: -9.04698147e-10 + ArtUnc_76: -8.71138687e-12 + ArtUnc_77: -8.78349674e-12 + ArtUnc_78: 1.11571745e-09 + ArtUnc_79: -6.64758628e-10 + ArtUnc_80: 2.50565548e-12 + ArtUnc_81: 2.90535337e-11 + ArtUnc_82: -1.61431134e-12 + ArtUnc_83: -1.37928925e-11 + ArtUnc_84: 2.55994988e-11 + ArtUnc_85: -4.11365235e-13 + ArtUnc_86: 3.00548055e-12 + ArtUnc_87: 3.62734063e-12 + ArtUnc_88: -2.80132895e-12 + ArtUnc_89: -1.91682495e-11 + ArtUnc_90: -1.73173357e-11 + ArtUnc_91: -2.03407185e-12 + ArtUnc_92: 7.10788298e-11 + ArtUnc_93: -1.98240356e-12 + ArtUnc_94: -8.49836168e-13 + ArtUnc_95: 3.03057931e-11 + ArtUnc_96: 4.90524724e-12 - stat: 0 Uncorr: 0.000409 - RCES: 0.0018312823708196944 - ElEn: 0.00018611747117076359 - ElTh: 5.4259981570214354e-05 - Lumi: 0.00031493 - LArN: 0.0002045 - StatMC: 0.00044990000000000004 - RadErr: 0.00011452000000000001 - Model_1: 0.0016079891046894563 - Model_2: 0.0016079891046894563 - ModelRW_1: 0.0006998801498828209 - ModelRW_2: 0.0006998801498828209 - JES_1: 0.002259935042274445 - JES_2: 0.002259935042274445 - ArtUnc_1: 9.753547439539828e-11 - ArtUnc_2: -6.227372784156302e-09 - ArtUnc_3: 1.708759179124174e-08 - ArtUnc_4: 4.319110708990544e-07 - ArtUnc_5: 1.55443369537763e-08 - ArtUnc_6: 7.296344354538225e-09 - ArtUnc_7: 6.5460003475791674e-06 - ArtUnc_8: -5.7244761028330045e-05 - ArtUnc_9: 1.186505533190126e-06 - ArtUnc_10: 4.336442172324861e-05 - ArtUnc_11: -8.82617970058097e-05 - ArtUnc_12: -7.2030212472301245e-06 - ArtUnc_13: -0.00015235000980223684 - ArtUnc_14: -4.796339927814513e-07 - ArtUnc_15: -1.0309022261121442e-06 - ArtUnc_16: 9.39159190546805e-08 - ArtUnc_17: 5.141719307884341e-06 - ArtUnc_18: -1.6788426091245276e-07 - ArtUnc_19: -1.2964071120157313e-05 - ArtUnc_20: -3.0078776123106327e-05 - ArtUnc_21: 1.492529708589883e-06 - ArtUnc_22: -0.00023554744594108016 - ArtUnc_23: -3.676078550964621e-06 - ArtUnc_24: 0.00010267558870354524 - ArtUnc_25: 6.497741781847948e-05 - ArtUnc_26: -1.8235778533686426e-05 - ArtUnc_27: -0.00032423701033369213 - ArtUnc_28: -1.4688165452177336e-05 - ArtUnc_29: -0.0001522793414196557 - ArtUnc_30: -5.9820840239537066e-05 - ArtUnc_31: 2.457065364193579e-05 - ArtUnc_32: -0.000504650218600457 - ArtUnc_33: 1.7699603926293156e-07 - ArtUnc_34: -4.924692061993343e-06 - ArtUnc_35: -7.714627557624232e-06 - ArtUnc_36: -2.2392528805489359e-07 - ArtUnc_37: 6.411402027397098e-06 - ArtUnc_38: -1.1162652040395937e-06 - ArtUnc_39: -1.1430952119947765e-06 - ArtUnc_40: -6.748838465346753e-08 - ArtUnc_41: -2.3494255885952587e-06 - ArtUnc_42: -3.555146864871654e-08 - ArtUnc_43: 4.703836380515194e-06 - ArtUnc_44: -1.0566857235536604e-05 - ArtUnc_45: 4.4945124539397075e-08 - ArtUnc_46: -2.4857258556887034e-08 - ArtUnc_47: -1.6350369399770955e-07 - ArtUnc_48: 1.0292275806389106e-08 - ArtUnc_49: 1.4375919532156121e-05 - ArtUnc_50: 4.584058390843983e-07 - ArtUnc_51: -2.5943913798833367e-08 - ArtUnc_52: -3.026087152871613e-08 - ArtUnc_53: 5.632813063282722e-09 - ArtUnc_54: -3.4802714012223778e-09 - ArtUnc_55: 1.3420913257163547e-07 - ArtUnc_56: -1.919451231774332e-08 - ArtUnc_57: -4.460334623172426e-09 - ArtUnc_58: 1.8572987929047742e-07 - ArtUnc_59: -1.5232168649282663e-09 - ArtUnc_60: 2.412302921897371e-08 - ArtUnc_61: -1.7882848468633827e-10 - ArtUnc_62: 1.7966622080932891e-09 - ArtUnc_63: -1.5714942133352477e-10 - ArtUnc_64: 6.671627784511517e-07 - ArtUnc_65: -1.025189755352918e-08 - ArtUnc_66: -4.632156231862248e-07 - ArtUnc_67: -6.161588354153124e-09 - ArtUnc_68: 6.201726802224839e-09 - ArtUnc_69: 2.1346750028956372e-10 - ArtUnc_70: -2.4861479308310165e-09 - ArtUnc_71: -2.787441481271272e-11 - ArtUnc_72: -7.099604145631049e-09 - ArtUnc_73: -5.6861308517293e-10 - ArtUnc_74: -1.4292003880250983e-09 - ArtUnc_75: 1.0248505960157929e-08 - ArtUnc_76: 1.0475918137984441e-10 - ArtUnc_77: 5.677704383775364e-11 - ArtUnc_78: -1.2579885201608965e-08 - ArtUnc_79: 7.794043392189298e-09 - ArtUnc_80: -7.579711414801293e-11 - ArtUnc_81: -3.430852531169544e-10 - ArtUnc_82: 1.775117049089012e-11 - ArtUnc_83: 1.675001844948761e-10 - ArtUnc_84: -3.033136767965014e-10 - ArtUnc_85: 4.20039384186154e-12 - ArtUnc_86: -2.7784398976116623e-11 - ArtUnc_87: -3.283629617375756e-11 - ArtUnc_88: 3.125116211259143e-11 - ArtUnc_89: 2.877883598046601e-10 - ArtUnc_90: 1.536643881776656e-10 - ArtUnc_91: 1.5183076375485108e-11 - ArtUnc_92: -7.963922779568559e-10 - ArtUnc_93: 1.8540106738393557e-11 - ArtUnc_94: 1.3093416286191433e-11 - ArtUnc_95: -3.1596399642754e-10 - ArtUnc_96: -5.1872171587344076e-11 + RCES: 1.83128237e-03 + ElEn: 1.86117471e-04 + ElTh: 5.42599816e-05 + Lumi: 3.14930000e-04 + LArN: 2.04500000e-04 + StatMC: 4.49900000e-04 + RadErr: 1.14520000e-04 + Model_1: 1.60798910e-03 + Model_2: 1.60798910e-03 + ModelRW_1: 6.99880150e-04 + ModelRW_2: 6.99880150e-04 + JES_1: 2.25993504e-03 + JES_2: 2.25993504e-03 + ArtUnc_1: 9.75354744e-11 + ArtUnc_2: -6.22737278e-09 + ArtUnc_3: 1.70875918e-08 + ArtUnc_4: 4.31911071e-07 + ArtUnc_5: 1.55443370e-08 + ArtUnc_6: 7.29634435e-09 + ArtUnc_7: 6.54600035e-06 + ArtUnc_8: -5.72447610e-05 + ArtUnc_9: 1.18650553e-06 + ArtUnc_10: 4.33644217e-05 + ArtUnc_11: -8.82617970e-05 + ArtUnc_12: -7.20302125e-06 + ArtUnc_13: -1.52350010e-04 + ArtUnc_14: -4.79633993e-07 + ArtUnc_15: -1.03090223e-06 + ArtUnc_16: 9.39159191e-08 + ArtUnc_17: 5.14171931e-06 + ArtUnc_18: -1.67884261e-07 + ArtUnc_19: -1.29640711e-05 + ArtUnc_20: -3.00787761e-05 + ArtUnc_21: 1.49252971e-06 + ArtUnc_22: -2.35547446e-04 + ArtUnc_23: -3.67607855e-06 + ArtUnc_24: 1.02675589e-04 + ArtUnc_25: 6.49774178e-05 + ArtUnc_26: -1.82357785e-05 + ArtUnc_27: -3.24237010e-04 + ArtUnc_28: -1.46881655e-05 + ArtUnc_29: -1.52279341e-04 + ArtUnc_30: -5.98208402e-05 + ArtUnc_31: 2.45706536e-05 + ArtUnc_32: -5.04650219e-04 + ArtUnc_33: 1.76996039e-07 + ArtUnc_34: -4.92469206e-06 + ArtUnc_35: -7.71462756e-06 + ArtUnc_36: -2.23925288e-07 + ArtUnc_37: 6.41140203e-06 + ArtUnc_38: -1.11626520e-06 + ArtUnc_39: -1.14309521e-06 + ArtUnc_40: -6.74883847e-08 + ArtUnc_41: -2.34942559e-06 + ArtUnc_42: -3.55514686e-08 + ArtUnc_43: 4.70383638e-06 + ArtUnc_44: -1.05668572e-05 + ArtUnc_45: 4.49451245e-08 + ArtUnc_46: -2.48572586e-08 + ArtUnc_47: -1.63503694e-07 + ArtUnc_48: 1.02922758e-08 + ArtUnc_49: 1.43759195e-05 + ArtUnc_50: 4.58405839e-07 + ArtUnc_51: -2.59439138e-08 + ArtUnc_52: -3.02608715e-08 + ArtUnc_53: 5.63281306e-09 + ArtUnc_54: -3.48027140e-09 + ArtUnc_55: 1.34209133e-07 + ArtUnc_56: -1.91945123e-08 + ArtUnc_57: -4.46033462e-09 + ArtUnc_58: 1.85729879e-07 + ArtUnc_59: -1.52321686e-09 + ArtUnc_60: 2.41230292e-08 + ArtUnc_61: -1.78828485e-10 + ArtUnc_62: 1.79666221e-09 + ArtUnc_63: -1.57149421e-10 + ArtUnc_64: 6.67162778e-07 + ArtUnc_65: -1.02518976e-08 + ArtUnc_66: -4.63215623e-07 + ArtUnc_67: -6.16158835e-09 + ArtUnc_68: 6.20172680e-09 + ArtUnc_69: 2.13467500e-10 + ArtUnc_70: -2.48614793e-09 + ArtUnc_71: -2.78744148e-11 + ArtUnc_72: -7.09960415e-09 + ArtUnc_73: -5.68613085e-10 + ArtUnc_74: -1.42920039e-09 + ArtUnc_75: 1.02485060e-08 + ArtUnc_76: 1.04759181e-10 + ArtUnc_77: 5.67770438e-11 + ArtUnc_78: -1.25798852e-08 + ArtUnc_79: 7.79404339e-09 + ArtUnc_80: -7.57971141e-11 + ArtUnc_81: -3.43085253e-10 + ArtUnc_82: 1.77511705e-11 + ArtUnc_83: 1.67500184e-10 + ArtUnc_84: -3.03313677e-10 + ArtUnc_85: 4.20039384e-12 + ArtUnc_86: -2.77843990e-11 + ArtUnc_87: -3.28362962e-11 + ArtUnc_88: 3.12511621e-11 + ArtUnc_89: 2.87788360e-10 + ArtUnc_90: 1.53664388e-10 + ArtUnc_91: 1.51830764e-11 + ArtUnc_92: -7.96392278e-10 + ArtUnc_93: 1.85401067e-11 + ArtUnc_94: 1.30934163e-11 + ArtUnc_95: -3.15963996e-10 + ArtUnc_96: -5.18721716e-11 - stat: 0 Uncorr: 9.63e-05 - RCES: 6.196775925229183e-05 - ElEn: 2.4982380531086306e-05 - ElTh: 3.250035832110163e-05 - Lumi: 7.4151e-05 - LArN: 4.815e-05 - StatMC: 0.00011555999999999998 - RadErr: 7.0299e-05 - Model_1: 0.0003016581168152118 - Model_2: 0.0003016581168152118 - ModelRW_1: 7.218004600996039e-05 - ModelRW_2: 7.218004600996039e-05 - JES_1: 0.0002719624785285187 - JES_2: 0.0002719624785285187 - ArtUnc_1: 7.051224216026941e-11 - ArtUnc_2: -1.3977675181295216e-08 - ArtUnc_3: -7.119561085981802e-08 - ArtUnc_4: -2.8058198438083383e-07 - ArtUnc_5: -9.59221642205358e-09 - ArtUnc_6: -2.02978998101931e-09 - ArtUnc_7: -1.3472556520548992e-06 - ArtUnc_8: 4.150934493663712e-06 - ArtUnc_9: -5.952842188927762e-08 - ArtUnc_10: 5.438010394919081e-08 - ArtUnc_11: 7.05979688352413e-08 - ArtUnc_12: 9.139260861476654e-09 - ArtUnc_13: -1.2790170539615633e-06 - ArtUnc_14: 2.5617408347870514e-08 - ArtUnc_15: -1.9841482618095413e-08 - ArtUnc_16: 1.6198073526381094e-10 - ArtUnc_17: 2.3983235953556213e-07 - ArtUnc_18: -7.139715679976194e-09 - ArtUnc_19: -7.286802604846646e-07 - ArtUnc_20: -1.534583304142478e-06 - ArtUnc_21: 9.112349277463271e-08 - ArtUnc_22: -1.3098744061619803e-05 - ArtUnc_23: -2.3664354657076953e-07 - ArtUnc_24: 5.656671937789673e-06 - ArtUnc_25: 7.335671792195338e-06 - ArtUnc_26: -1.4577249046427076e-06 - ArtUnc_27: -2.2342813730992484e-05 - ArtUnc_28: -9.32741641681257e-07 - ArtUnc_29: -3.5711130448348982e-06 - ArtUnc_30: -2.3298242139567014e-06 - ArtUnc_31: 9.539461832991869e-07 - ArtUnc_32: -3.365468085499373e-05 - ArtUnc_33: 1.0814802950801851e-08 - ArtUnc_34: 5.098518791699796e-07 - ArtUnc_35: 7.814559505928643e-07 - ArtUnc_36: -6.442488936637111e-06 - ArtUnc_37: 1.9979813786580084e-05 - ArtUnc_38: -3.559577279397605e-06 - ArtUnc_39: -2.0489934740514652e-05 - ArtUnc_40: 3.024895811611956e-08 - ArtUnc_41: 6.08972888844798e-05 - ArtUnc_42: -3.780216667070498e-07 - ArtUnc_43: -8.955261597295062e-05 - ArtUnc_44: -4.8024390229445863e-05 - ArtUnc_45: 6.222098420543644e-07 - ArtUnc_46: -1.368795153262544e-05 - ArtUnc_47: 9.264014209204773e-07 - ArtUnc_48: 1.6094043163831705e-08 - ArtUnc_49: -0.00017973388342818443 - ArtUnc_50: -4.459666900137267e-06 - ArtUnc_51: 2.038050437567206e-07 - ArtUnc_52: -1.0862800138360604e-07 - ArtUnc_53: 3.9714255876467446e-09 - ArtUnc_54: 2.966360374701162e-09 - ArtUnc_55: -1.8811433941314635e-06 - ArtUnc_56: -1.9456883465457418e-06 - ArtUnc_57: -5.713827041420243e-07 - ArtUnc_58: -2.6674338272983496e-06 - ArtUnc_59: 3.8161231902587136e-08 - ArtUnc_60: 2.6960411564784075e-06 - ArtUnc_61: 2.2069932666540668e-09 - ArtUnc_62: 3.1335045374841156e-08 - ArtUnc_63: -3.6382703959669343e-09 - ArtUnc_64: -5.303985659363463e-06 - ArtUnc_65: 3.295262320683488e-08 - ArtUnc_66: 6.51419437064317e-06 - ArtUnc_67: 1.224938548401954e-07 - ArtUnc_68: -6.0424720363524e-08 - ArtUnc_69: -2.525003177364441e-09 - ArtUnc_70: 1.6964903821867333e-08 - ArtUnc_71: -4.213129200925123e-11 - ArtUnc_72: 1.0434560435049898e-09 - ArtUnc_73: 2.2988054108867716e-10 - ArtUnc_74: -4.029581933211132e-08 - ArtUnc_75: 1.1695826127329766e-08 - ArtUnc_76: -1.1125737214139704e-09 - ArtUnc_77: -9.908908004047555e-10 - ArtUnc_78: 2.1566338396236692e-07 - ArtUnc_79: 7.525356436864798e-08 - ArtUnc_80: -5.458073635477984e-10 - ArtUnc_81: 6.330795480691271e-09 - ArtUnc_82: 2.219836404681475e-10 - ArtUnc_83: -1.4846246330279971e-09 - ArtUnc_84: 1.368357657876286e-10 - ArtUnc_85: 2.579468971964336e-10 - ArtUnc_86: 7.611218948708382e-11 - ArtUnc_87: 3.4903456058610976e-11 - ArtUnc_88: -7.88311010620826e-11 - ArtUnc_89: 1.7002038126260505e-09 - ArtUnc_90: -1.1830090352260171e-09 - ArtUnc_91: 6.700141510953795e-10 - ArtUnc_92: 1.7580036048980386e-09 - ArtUnc_93: -4.661069203930877e-11 - ArtUnc_94: -5.5651946891796474e-11 - ArtUnc_95: -2.1446402629044331e-10 - ArtUnc_96: -5.1926693597453337e-11 + RCES: 6.19677593e-05 + ElEn: 2.49823805e-05 + ElTh: 3.25003583e-05 + Lumi: 7.41510000e-05 + LArN: 4.81500000e-05 + StatMC: 1.15560000e-04 + RadErr: 7.02990000e-05 + Model_1: 3.01658117e-04 + Model_2: 3.01658117e-04 + ModelRW_1: 7.21800460e-05 + ModelRW_2: 7.21800460e-05 + JES_1: 2.71962479e-04 + JES_2: 2.71962479e-04 + ArtUnc_1: 7.05122422e-11 + ArtUnc_2: -1.39776752e-08 + ArtUnc_3: -7.11956109e-08 + ArtUnc_4: -2.80581984e-07 + ArtUnc_5: -9.59221642e-09 + ArtUnc_6: -2.02978998e-09 + ArtUnc_7: -1.34725565e-06 + ArtUnc_8: 4.15093449e-06 + ArtUnc_9: -5.95284219e-08 + ArtUnc_10: 5.43801039e-08 + ArtUnc_11: 7.05979688e-08 + ArtUnc_12: 9.13926086e-09 + ArtUnc_13: -1.27901705e-06 + ArtUnc_14: 2.56174083e-08 + ArtUnc_15: -1.98414826e-08 + ArtUnc_16: 1.61980735e-10 + ArtUnc_17: 2.39832360e-07 + ArtUnc_18: -7.13971568e-09 + ArtUnc_19: -7.28680260e-07 + ArtUnc_20: -1.53458330e-06 + ArtUnc_21: 9.11234928e-08 + ArtUnc_22: -1.30987441e-05 + ArtUnc_23: -2.36643547e-07 + ArtUnc_24: 5.65667194e-06 + ArtUnc_25: 7.33567179e-06 + ArtUnc_26: -1.45772490e-06 + ArtUnc_27: -2.23428137e-05 + ArtUnc_28: -9.32741642e-07 + ArtUnc_29: -3.57111304e-06 + ArtUnc_30: -2.32982421e-06 + ArtUnc_31: 9.53946183e-07 + ArtUnc_32: -3.36546809e-05 + ArtUnc_33: 1.08148030e-08 + ArtUnc_34: 5.09851879e-07 + ArtUnc_35: 7.81455951e-07 + ArtUnc_36: -6.44248894e-06 + ArtUnc_37: 1.99798138e-05 + ArtUnc_38: -3.55957728e-06 + ArtUnc_39: -2.04899347e-05 + ArtUnc_40: 3.02489581e-08 + ArtUnc_41: 6.08972889e-05 + ArtUnc_42: -3.78021667e-07 + ArtUnc_43: -8.95526160e-05 + ArtUnc_44: -4.80243902e-05 + ArtUnc_45: 6.22209842e-07 + ArtUnc_46: -1.36879515e-05 + ArtUnc_47: 9.26401421e-07 + ArtUnc_48: 1.60940432e-08 + ArtUnc_49: -1.79733883e-04 + ArtUnc_50: -4.45966690e-06 + ArtUnc_51: 2.03805044e-07 + ArtUnc_52: -1.08628001e-07 + ArtUnc_53: 3.97142559e-09 + ArtUnc_54: 2.96636037e-09 + ArtUnc_55: -1.88114339e-06 + ArtUnc_56: -1.94568835e-06 + ArtUnc_57: -5.71382704e-07 + ArtUnc_58: -2.66743383e-06 + ArtUnc_59: 3.81612319e-08 + ArtUnc_60: 2.69604116e-06 + ArtUnc_61: 2.20699327e-09 + ArtUnc_62: 3.13350454e-08 + ArtUnc_63: -3.63827040e-09 + ArtUnc_64: -5.30398566e-06 + ArtUnc_65: 3.29526232e-08 + ArtUnc_66: 6.51419437e-06 + ArtUnc_67: 1.22493855e-07 + ArtUnc_68: -6.04247204e-08 + ArtUnc_69: -2.52500318e-09 + ArtUnc_70: 1.69649038e-08 + ArtUnc_71: -4.21312920e-11 + ArtUnc_72: 1.04345604e-09 + ArtUnc_73: 2.29880541e-10 + ArtUnc_74: -4.02958193e-08 + ArtUnc_75: 1.16958261e-08 + ArtUnc_76: -1.11257372e-09 + ArtUnc_77: -9.90890800e-10 + ArtUnc_78: 2.15663384e-07 + ArtUnc_79: 7.52535644e-08 + ArtUnc_80: -5.45807364e-10 + ArtUnc_81: 6.33079548e-09 + ArtUnc_82: 2.21983640e-10 + ArtUnc_83: -1.48462463e-09 + ArtUnc_84: 1.36835766e-10 + ArtUnc_85: 2.57946897e-10 + ArtUnc_86: 7.61121895e-11 + ArtUnc_87: 3.49034561e-11 + ArtUnc_88: -7.88311011e-11 + ArtUnc_89: 1.70020381e-09 + ArtUnc_90: -1.18300904e-09 + ArtUnc_91: 6.70014151e-10 + ArtUnc_92: 1.75800360e-09 + ArtUnc_93: -4.66106920e-11 + ArtUnc_94: -5.56519469e-11 + ArtUnc_95: -2.14464026e-10 + ArtUnc_96: -5.19266936e-11 - stat: 0 - Uncorr: 1.4400000000000001e-05 - RCES: 2.2002332967210546e-05 - ElEn: 9.837160565935682e-06 - ElTh: 1.6407155512153835e-05 - Lumi: 1.1088000000000001e-05 - LArN: 7.2000000000000005e-06 - StatMC: 3.312e-05 - RadErr: 8.208e-06 - Model_1: 9.138650876360252e-05 - Model_2: 9.138650876360252e-05 - ModelRW_1: 6.211225965942633e-05 - ModelRW_2: 6.211225965942633e-05 - JES_1: 5.600776289051367e-05 - JES_2: 5.600776289051367e-05 - ArtUnc_1: 5.02819392911427e-14 - ArtUnc_2: -7.93092386430135e-12 - ArtUnc_3: -3.500863412851607e-11 - ArtUnc_4: -9.003481958336642e-11 - ArtUnc_5: -3.1431617742647692e-12 - ArtUnc_6: -2.6228548749244885e-13 - ArtUnc_7: 2.4988272275362133e-10 - ArtUnc_8: -7.095544583119142e-09 - ArtUnc_9: 1.7262562010402244e-10 - ArtUnc_10: 9.466624384963338e-09 - ArtUnc_11: -1.879788980545776e-08 - ArtUnc_12: -1.548158785248519e-09 - ArtUnc_13: -4.131411529644298e-08 - ArtUnc_14: 1.2381720443187933e-10 - ArtUnc_15: -5.996467589130546e-10 - ArtUnc_16: 4.2392744590761055e-11 - ArtUnc_17: 3.800322858826508e-09 - ArtUnc_18: -1.161756959648318e-10 - ArtUnc_19: -9.204297352626248e-09 - ArtUnc_20: -3.29521590064212e-08 - ArtUnc_21: 1.7060190359246318e-09 - ArtUnc_22: -3.159032400526775e-07 - ArtUnc_23: -6.308935847250307e-09 - ArtUnc_24: 1.7278494489382729e-07 - ArtUnc_25: 1.3875472113931756e-07 - ArtUnc_26: -2.9595791064606375e-08 - ArtUnc_27: -6.592875651505602e-07 - ArtUnc_28: -2.4985005971144744e-08 - ArtUnc_29: -3.1242140113639304e-07 - ArtUnc_30: -1.2830119955860022e-07 - ArtUnc_31: 5.325623570444768e-08 - ArtUnc_32: -1.557857961817675e-06 - ArtUnc_33: 1.8667160570307258e-10 - ArtUnc_34: 3.4328292949259264e-08 - ArtUnc_35: 1.5603640778777838e-08 - ArtUnc_36: -3.41441233333585e-07 - ArtUnc_37: 6.324378226229994e-07 - ArtUnc_38: -1.1310962710342948e-07 - ArtUnc_39: -5.43606112255573e-07 - ArtUnc_40: 9.94074320502835e-09 - ArtUnc_41: 2.723372214838412e-06 - ArtUnc_42: 3.5212973382349376e-09 - ArtUnc_43: -3.2286787244513157e-06 - ArtUnc_44: -1.137559147814532e-06 - ArtUnc_45: 1.8692778347107762e-08 - ArtUnc_46: -4.703960347728094e-07 - ArtUnc_47: 1.7808546771262623e-07 - ArtUnc_48: -6.883291106153041e-09 - ArtUnc_49: -5.562381912637747e-06 - ArtUnc_50: -1.1534748792065501e-07 - ArtUnc_51: -1.028575206998728e-06 - ArtUnc_52: 3.031560972701436e-07 - ArtUnc_53: 6.9722900824939765e-09 - ArtUnc_54: -8.435772815707573e-08 - ArtUnc_55: -1.3118817752018197e-05 - ArtUnc_56: 8.339153477261923e-06 - ArtUnc_57: 2.363714414463892e-06 - ArtUnc_58: -2.2236860622236516e-05 - ArtUnc_59: -4.699881721560735e-08 - ArtUnc_60: -2.2636716379401355e-05 - ArtUnc_61: -3.1315628659250002e-09 - ArtUnc_62: -8.573226609941899e-07 - ArtUnc_63: 9.546774888907887e-08 - ArtUnc_64: -4.345762967427407e-05 - ArtUnc_65: 1.6714745717974936e-06 - ArtUnc_66: -5.062688865522955e-05 - ArtUnc_67: -1.662439106353279e-06 - ArtUnc_68: 3.187052164572777e-07 - ArtUnc_69: 4.13515625985064e-08 - ArtUnc_70: -2.9553797995699014e-07 - ArtUnc_71: 2.7263250348303047e-09 - ArtUnc_72: 1.3610040269891257e-06 - ArtUnc_73: 1.0264420914310467e-07 - ArtUnc_74: 5.69311430194333e-07 - ArtUnc_75: -1.7030781847754871e-06 - ArtUnc_76: -6.269284013211263e-09 - ArtUnc_77: 8.642190079204772e-09 - ArtUnc_78: -3.365296810775796e-06 - ArtUnc_79: -1.84430929476948e-06 - ArtUnc_80: 9.498543448078409e-09 - ArtUnc_81: -9.359532363282695e-08 - ArtUnc_82: -5.063739805795505e-09 - ArtUnc_83: 1.672309867316878e-08 - ArtUnc_84: 1.257677996302173e-08 - ArtUnc_85: -5.998074356448583e-09 - ArtUnc_86: -1.4311052060218262e-09 - ArtUnc_87: -1.0586207274600761e-09 - ArtUnc_88: -1.508268361170333e-10 - ArtUnc_89: -3.94871824587661e-08 - ArtUnc_90: 1.8390899459919323e-08 - ArtUnc_91: -1.220670268979323e-08 - ArtUnc_92: -3.9562589117971506e-08 - ArtUnc_93: 2.223360481207455e-10 - ArtUnc_94: 1.6431022394438529e-09 - ArtUnc_95: 2.7427779419367713e-09 - ArtUnc_96: 2.0710559073924454e-10 + Uncorr: 1.44000000e-05 + RCES: 2.20023330e-05 + ElEn: 9.83716057e-06 + ElTh: 1.64071555e-05 + Lumi: 1.10880000e-05 + LArN: 7.20000000e-06 + StatMC: 3.31200000e-05 + RadErr: 8.20800000e-06 + Model_1: 9.13865088e-05 + Model_2: 9.13865088e-05 + ModelRW_1: 6.21122597e-05 + ModelRW_2: 6.21122597e-05 + JES_1: 5.60077629e-05 + JES_2: 5.60077629e-05 + ArtUnc_1: 5.02819393e-14 + ArtUnc_2: -7.93092386e-12 + ArtUnc_3: -3.50086341e-11 + ArtUnc_4: -9.00348196e-11 + ArtUnc_5: -3.14316177e-12 + ArtUnc_6: -2.62285487e-13 + ArtUnc_7: 2.49882723e-10 + ArtUnc_8: -7.09554458e-09 + ArtUnc_9: 1.72625620e-10 + ArtUnc_10: 9.46662438e-09 + ArtUnc_11: -1.87978898e-08 + ArtUnc_12: -1.54815879e-09 + ArtUnc_13: -4.13141153e-08 + ArtUnc_14: 1.23817204e-10 + ArtUnc_15: -5.99646759e-10 + ArtUnc_16: 4.23927446e-11 + ArtUnc_17: 3.80032286e-09 + ArtUnc_18: -1.16175696e-10 + ArtUnc_19: -9.20429735e-09 + ArtUnc_20: -3.29521590e-08 + ArtUnc_21: 1.70601904e-09 + ArtUnc_22: -3.15903240e-07 + ArtUnc_23: -6.30893585e-09 + ArtUnc_24: 1.72784945e-07 + ArtUnc_25: 1.38754721e-07 + ArtUnc_26: -2.95957911e-08 + ArtUnc_27: -6.59287565e-07 + ArtUnc_28: -2.49850060e-08 + ArtUnc_29: -3.12421401e-07 + ArtUnc_30: -1.28301200e-07 + ArtUnc_31: 5.32562357e-08 + ArtUnc_32: -1.55785796e-06 + ArtUnc_33: 1.86671606e-10 + ArtUnc_34: 3.43282929e-08 + ArtUnc_35: 1.56036408e-08 + ArtUnc_36: -3.41441233e-07 + ArtUnc_37: 6.32437823e-07 + ArtUnc_38: -1.13109627e-07 + ArtUnc_39: -5.43606112e-07 + ArtUnc_40: 9.94074321e-09 + ArtUnc_41: 2.72337221e-06 + ArtUnc_42: 3.52129734e-09 + ArtUnc_43: -3.22867872e-06 + ArtUnc_44: -1.13755915e-06 + ArtUnc_45: 1.86927783e-08 + ArtUnc_46: -4.70396035e-07 + ArtUnc_47: 1.78085468e-07 + ArtUnc_48: -6.88329111e-09 + ArtUnc_49: -5.56238191e-06 + ArtUnc_50: -1.15347488e-07 + ArtUnc_51: -1.02857521e-06 + ArtUnc_52: 3.03156097e-07 + ArtUnc_53: 6.97229008e-09 + ArtUnc_54: -8.43577282e-08 + ArtUnc_55: -1.31188178e-05 + ArtUnc_56: 8.33915348e-06 + ArtUnc_57: 2.36371441e-06 + ArtUnc_58: -2.22368606e-05 + ArtUnc_59: -4.69988172e-08 + ArtUnc_60: -2.26367164e-05 + ArtUnc_61: -3.13156287e-09 + ArtUnc_62: -8.57322661e-07 + ArtUnc_63: 9.54677489e-08 + ArtUnc_64: -4.34576297e-05 + ArtUnc_65: 1.67147457e-06 + ArtUnc_66: -5.06268887e-05 + ArtUnc_67: -1.66243911e-06 + ArtUnc_68: 3.18705216e-07 + ArtUnc_69: 4.13515626e-08 + ArtUnc_70: -2.95537980e-07 + ArtUnc_71: 2.72632503e-09 + ArtUnc_72: 1.36100403e-06 + ArtUnc_73: 1.02644209e-07 + ArtUnc_74: 5.69311430e-07 + ArtUnc_75: -1.70307818e-06 + ArtUnc_76: -6.26928401e-09 + ArtUnc_77: 8.64219008e-09 + ArtUnc_78: -3.36529681e-06 + ArtUnc_79: -1.84430929e-06 + ArtUnc_80: 9.49854345e-09 + ArtUnc_81: -9.35953236e-08 + ArtUnc_82: -5.06373981e-09 + ArtUnc_83: 1.67230987e-08 + ArtUnc_84: 1.25767800e-08 + ArtUnc_85: -5.99807436e-09 + ArtUnc_86: -1.43110521e-09 + ArtUnc_87: -1.05862073e-09 + ArtUnc_88: -1.50826836e-10 + ArtUnc_89: -3.94871825e-08 + ArtUnc_90: 1.83908995e-08 + ArtUnc_91: -1.22067027e-08 + ArtUnc_92: -3.95625891e-08 + ArtUnc_93: 2.22336048e-10 + ArtUnc_94: 1.64310224e-09 + ArtUnc_95: 2.74277794e-09 + ArtUnc_96: 2.07105591e-10 - stat: 0 Uncorr: 1.77e-06 - RCES: 1.2845310846764276e-06 - ElEn: 6.7089012593344965e-06 - ElTh: 3.527355103686047e-06 - Lumi: 1.3629e-06 + RCES: 1.28453108e-06 + ElEn: 6.70890126e-06 + ElTh: 3.52735510e-06 + Lumi: 1.36290000e-06 LArN: 8.85e-07 - StatMC: 1.30449e-05 - RadErr: 2.2302e-06 - Model_1: 3.5294527876145328e-06 - Model_2: 3.5294527876145328e-06 - ModelRW_1: 3.4418422574255194e-06 - ModelRW_2: 3.4418422574255194e-06 - JES_1: 1.3368754753295088e-05 - JES_2: 1.3368754753295088e-05 - ArtUnc_1: 3.1649572545798636e-16 - ArtUnc_2: -5.233577612250058e-14 - ArtUnc_3: 1.2009689584926394e-13 - ArtUnc_4: 5.277572473053857e-12 - ArtUnc_5: 1.9602452330203135e-13 - ArtUnc_6: 1.1950603216690673e-13 - ArtUnc_7: 1.177091946862514e-10 - ArtUnc_8: -1.4179526772949043e-09 - ArtUnc_9: 3.140778790121353e-11 - ArtUnc_10: 1.5709557509707463e-09 - ArtUnc_11: -3.1240802535447885e-09 - ArtUnc_12: -2.518727268235315e-10 - ArtUnc_13: -7.045050237369745e-09 - ArtUnc_14: -2.4889382837967554e-11 - ArtUnc_15: -6.151766026825989e-11 - ArtUnc_16: 5.582573905562612e-12 - ArtUnc_17: 3.960908745469827e-10 - ArtUnc_18: -1.2186192497896489e-11 - ArtUnc_19: -1.2867497103024744e-09 - ArtUnc_20: -4.035383590529554e-09 - ArtUnc_21: 2.330392107937851e-10 - ArtUnc_22: -4.487504907636002e-08 - ArtUnc_23: -7.936318198209268e-10 - ArtUnc_24: 2.371442818121514e-08 - ArtUnc_25: 1.574975239816285e-08 - ArtUnc_26: -4.309261165127264e-09 - ArtUnc_27: -9.7984030705831e-08 - ArtUnc_28: -4.944339987828451e-09 - ArtUnc_29: -5.412031033562565e-08 - ArtUnc_30: -2.2124207161280466e-08 - ArtUnc_31: 9.099620059241552e-09 - ArtUnc_32: -2.4212284907869234e-07 - ArtUnc_33: 7.643746265587136e-11 - ArtUnc_34: -2.531175015901532e-09 - ArtUnc_35: -4.649292937064408e-09 - ArtUnc_36: 2.1601831095153314e-10 - ArtUnc_37: 1.4995257681146108e-09 - ArtUnc_38: -1.5743773344953369e-10 - ArtUnc_39: 7.455873430691035e-09 - ArtUnc_40: -4.957949681526738e-11 - ArtUnc_41: -2.9637995206043367e-08 - ArtUnc_42: 1.4364644653972603e-09 - ArtUnc_43: 8.010985922253236e-08 - ArtUnc_44: 1.1402569191300257e-08 - ArtUnc_45: -4.70319844532275e-10 - ArtUnc_46: 1.0023033931634319e-08 - ArtUnc_47: 7.628779905008244e-09 - ArtUnc_48: -4.3229700830991953e-10 - ArtUnc_49: 3.164264343360258e-07 - ArtUnc_50: 1.244365852390118e-08 - ArtUnc_51: -5.759850014053632e-08 - ArtUnc_52: 4.17163704070633e-08 - ArtUnc_53: -2.931442056952663e-09 - ArtUnc_54: -3.5184202673116693e-09 - ArtUnc_55: -4.5051482319390554e-07 - ArtUnc_56: 4.7492041930752146e-07 - ArtUnc_57: 1.4149340622586435e-07 - ArtUnc_58: -5.06873105407668e-07 - ArtUnc_59: -4.014248528158959e-09 - ArtUnc_60: -6.525009893137404e-07 - ArtUnc_61: 7.476582192990769e-10 - ArtUnc_62: -6.224558013585522e-08 - ArtUnc_63: 5.947352900612051e-09 - ArtUnc_64: -4.6023902239792263e-07 - ArtUnc_65: 1.469646262779821e-08 - ArtUnc_66: -8.742215561408021e-07 - ArtUnc_67: 2.685437413470425e-07 - ArtUnc_68: -2.515600809491753e-08 - ArtUnc_69: -9.129200909773729e-08 - ArtUnc_70: 2.0080733355498856e-06 - ArtUnc_71: 2.981855795298056e-08 - ArtUnc_72: 1.2038558502867265e-06 - ArtUnc_73: -3.738286373691037e-09 - ArtUnc_74: 7.397192237967834e-06 - ArtUnc_75: -1.1239358915581491e-07 - ArtUnc_76: 1.9660642274449898e-07 - ArtUnc_77: 2.0281556677642994e-07 - ArtUnc_78: 1.2953754330491275e-05 - ArtUnc_79: -2.117380884707036e-05 - ArtUnc_80: 3.964956462254869e-07 - ArtUnc_81: 2.6821229728058613e-07 - ArtUnc_82: -5.169686328983974e-08 - ArtUnc_83: -1.592215483144535e-07 - ArtUnc_84: 7.311494935121575e-07 - ArtUnc_85: 2.9648856667801234e-09 - ArtUnc_86: -2.056962891334345e-08 - ArtUnc_87: -2.2139520866865153e-08 - ArtUnc_88: -3.832132486986376e-08 - ArtUnc_89: -9.456451570329005e-07 - ArtUnc_90: 2.959816264128777e-07 - ArtUnc_91: 1.36460411354434e-07 - ArtUnc_92: 1.6368869442189318e-06 - ArtUnc_93: -4.62625192359946e-09 - ArtUnc_94: -2.907941765743483e-08 - ArtUnc_95: 1.2467227997260188e-08 - ArtUnc_96: -9.500208452465233e-09 + StatMC: 1.30449000e-05 + RadErr: 2.23020000e-06 + Model_1: 3.52945279e-06 + Model_2: 3.52945279e-06 + ModelRW_1: 3.44184226e-06 + ModelRW_2: 3.44184226e-06 + JES_1: 1.33687548e-05 + JES_2: 1.33687548e-05 + ArtUnc_1: 3.16495725e-16 + ArtUnc_2: -5.23357761e-14 + ArtUnc_3: 1.20096896e-13 + ArtUnc_4: 5.27757247e-12 + ArtUnc_5: 1.96024523e-13 + ArtUnc_6: 1.19506032e-13 + ArtUnc_7: 1.17709195e-10 + ArtUnc_8: -1.41795268e-09 + ArtUnc_9: 3.14077879e-11 + ArtUnc_10: 1.57095575e-09 + ArtUnc_11: -3.12408025e-09 + ArtUnc_12: -2.51872727e-10 + ArtUnc_13: -7.04505024e-09 + ArtUnc_14: -2.48893828e-11 + ArtUnc_15: -6.15176603e-11 + ArtUnc_16: 5.58257391e-12 + ArtUnc_17: 3.96090875e-10 + ArtUnc_18: -1.21861925e-11 + ArtUnc_19: -1.28674971e-09 + ArtUnc_20: -4.03538359e-09 + ArtUnc_21: 2.33039211e-10 + ArtUnc_22: -4.48750491e-08 + ArtUnc_23: -7.93631820e-10 + ArtUnc_24: 2.37144282e-08 + ArtUnc_25: 1.57497524e-08 + ArtUnc_26: -4.30926117e-09 + ArtUnc_27: -9.79840307e-08 + ArtUnc_28: -4.94433999e-09 + ArtUnc_29: -5.41203103e-08 + ArtUnc_30: -2.21242072e-08 + ArtUnc_31: 9.09962006e-09 + ArtUnc_32: -2.42122849e-07 + ArtUnc_33: 7.64374627e-11 + ArtUnc_34: -2.53117502e-09 + ArtUnc_35: -4.64929294e-09 + ArtUnc_36: 2.16018311e-10 + ArtUnc_37: 1.49952577e-09 + ArtUnc_38: -1.57437733e-10 + ArtUnc_39: 7.45587343e-09 + ArtUnc_40: -4.95794968e-11 + ArtUnc_41: -2.96379952e-08 + ArtUnc_42: 1.43646447e-09 + ArtUnc_43: 8.01098592e-08 + ArtUnc_44: 1.14025692e-08 + ArtUnc_45: -4.70319845e-10 + ArtUnc_46: 1.00230339e-08 + ArtUnc_47: 7.62877991e-09 + ArtUnc_48: -4.32297008e-10 + ArtUnc_49: 3.16426434e-07 + ArtUnc_50: 1.24436585e-08 + ArtUnc_51: -5.75985001e-08 + ArtUnc_52: 4.17163704e-08 + ArtUnc_53: -2.93144206e-09 + ArtUnc_54: -3.51842027e-09 + ArtUnc_55: -4.50514823e-07 + ArtUnc_56: 4.74920419e-07 + ArtUnc_57: 1.41493406e-07 + ArtUnc_58: -5.06873105e-07 + ArtUnc_59: -4.01424853e-09 + ArtUnc_60: -6.52500989e-07 + ArtUnc_61: 7.47658219e-10 + ArtUnc_62: -6.22455801e-08 + ArtUnc_63: 5.94735290e-09 + ArtUnc_64: -4.60239022e-07 + ArtUnc_65: 1.46964626e-08 + ArtUnc_66: -8.74221556e-07 + ArtUnc_67: 2.68543741e-07 + ArtUnc_68: -2.51560081e-08 + ArtUnc_69: -9.12920091e-08 + ArtUnc_70: 2.00807334e-06 + ArtUnc_71: 2.98185580e-08 + ArtUnc_72: 1.20385585e-06 + ArtUnc_73: -3.73828637e-09 + ArtUnc_74: 7.39719224e-06 + ArtUnc_75: -1.12393589e-07 + ArtUnc_76: 1.96606423e-07 + ArtUnc_77: 2.02815567e-07 + ArtUnc_78: 1.29537543e-05 + ArtUnc_79: -2.11738088e-05 + ArtUnc_80: 3.96495646e-07 + ArtUnc_81: 2.68212297e-07 + ArtUnc_82: -5.16968633e-08 + ArtUnc_83: -1.59221548e-07 + ArtUnc_84: 7.31149494e-07 + ArtUnc_85: 2.96488567e-09 + ArtUnc_86: -2.05696289e-08 + ArtUnc_87: -2.21395209e-08 + ArtUnc_88: -3.83213249e-08 + ArtUnc_89: -9.45645157e-07 + ArtUnc_90: 2.95981626e-07 + ArtUnc_91: 1.36460411e-07 + ArtUnc_92: 1.63688694e-06 + ArtUnc_93: -4.62625192e-09 + ArtUnc_94: -2.90794177e-08 + ArtUnc_95: 1.24672280e-08 + ArtUnc_96: -9.50020845e-09 - stat: 0 Uncorr: 2.84e-07 - RCES: 1.6280577123677157e-06 - ElEn: 1.1093608567098445e-06 - ElTh: 1.191104938450009e-06 - Lumi: 2.1868000000000002e-07 + RCES: 1.62805771e-06 + ElEn: 1.10936086e-06 + ElTh: 1.19110494e-06 + Lumi: 2.18680000e-07 LArN: 1.42e-07 - StatMC: 3.834e-06 - RadErr: 7.781600000000001e-07 - Model_1: 3.4641161210328966e-06 - Model_2: 3.4641161210328966e-06 - ModelRW_1: 8.354042355650347e-07 - ModelRW_2: 8.354042355650347e-07 - JES_1: 2.043017320141951e-06 - JES_2: 2.043017320141951e-06 - ArtUnc_1: 7.525551332810761e-19 - ArtUnc_2: 1.7011065060993183e-18 - ArtUnc_3: 2.2088374550225672e-17 - ArtUnc_4: 1.2241962774379785e-16 - ArtUnc_5: 4.140643639484835e-18 - ArtUnc_6: 1.838631669346577e-18 - ArtUnc_7: 4.662605559246975e-16 - ArtUnc_8: 3.6959069714146945e-15 - ArtUnc_9: 4.1228378670082187e-17 - ArtUnc_10: -1.6732250973069617e-14 - ArtUnc_11: 2.906247935746357e-14 - ArtUnc_12: 2.07354682755585e-15 - ArtUnc_13: 1.0956125714146772e-13 - ArtUnc_14: -7.645551038861831e-16 - ArtUnc_15: 4.445232595615555e-15 - ArtUnc_16: -2.675054665071818e-16 - ArtUnc_17: -6.686565834819298e-15 - ArtUnc_18: 1.8429779658553334e-16 - ArtUnc_19: 5.3093938955127536e-14 - ArtUnc_20: 1.6034412809324093e-13 - ArtUnc_21: -9.114499216275052e-15 - ArtUnc_22: 2.8160976159407595e-12 - ArtUnc_23: 5.926044542417139e-14 - ArtUnc_24: -1.9827743594159214e-12 - ArtUnc_25: -2.8747873249342066e-13 - ArtUnc_26: 1.6040258231256255e-13 - ArtUnc_27: 8.751908398152517e-12 - ArtUnc_28: 3.243057790862044e-13 - ArtUnc_29: 6.553866976012681e-12 - ArtUnc_30: 2.568968732178255e-12 - ArtUnc_31: -1.0753638369503453e-12 - ArtUnc_32: 4.1544951068356036e-11 - ArtUnc_33: -1.7348277059421816e-15 - ArtUnc_34: -1.5040569541908268e-12 - ArtUnc_35: -7.984848532209664e-13 - ArtUnc_36: 2.4281165361617614e-11 - ArtUnc_37: -4.750445954573314e-11 - ArtUnc_38: 9.352170382692404e-12 - ArtUnc_39: 5.0030111451300346e-11 - ArtUnc_40: -9.794687305802967e-13 - ArtUnc_41: -3.384009666384961e-10 - ArtUnc_42: 9.145350864578396e-12 - ArtUnc_43: 5.444991103342456e-10 - ArtUnc_44: 2.164790135155239e-10 - ArtUnc_45: -5.036337921055136e-12 - ArtUnc_46: 7.572012011880331e-11 - ArtUnc_47: 1.3122931491457895e-11 - ArtUnc_48: -1.6235023239829938e-12 - ArtUnc_49: 1.4463868992619182e-09 - ArtUnc_50: 6.487919379608554e-11 - ArtUnc_51: 2.564045270519593e-10 - ArtUnc_52: -1.9086491770607894e-11 - ArtUnc_53: -6.004925716718752e-11 - ArtUnc_54: 1.3528719560799027e-11 - ArtUnc_55: 1.1799485815545221e-08 - ArtUnc_56: -9.975340208781463e-09 - ArtUnc_57: -2.2521217812471348e-09 - ArtUnc_58: 2.804699758441273e-08 - ArtUnc_59: 2.2103976595410218e-10 - ArtUnc_60: 3.3649817451941395e-08 - ArtUnc_61: 1.1740658032824714e-10 - ArtUnc_62: -2.402339850854667e-09 - ArtUnc_63: 1.7391658748525373e-10 - ArtUnc_64: 8.89274434058841e-08 - ArtUnc_65: -4.7974890767402026e-09 - ArtUnc_66: 1.22364516968084e-07 - ArtUnc_67: 3.040652579547578e-08 - ArtUnc_68: -6.862203540163716e-09 - ArtUnc_69: -7.665774654289796e-09 - ArtUnc_70: 1.480625126632594e-07 - ArtUnc_71: 2.0979076256282548e-09 - ArtUnc_72: 5.122209600702832e-08 - ArtUnc_73: 1.3362480636831328e-10 - ArtUnc_74: 2.717582622135473e-07 - ArtUnc_75: -4.951873092024478e-08 - ArtUnc_76: 3.198076745946251e-09 - ArtUnc_77: 1.1602659070872547e-08 - ArtUnc_78: 2.0132775223619658e-07 - ArtUnc_79: -3.7306664299767404e-07 - ArtUnc_80: 5.992296682747596e-09 - ArtUnc_81: -4.792623496419435e-09 - ArtUnc_82: -1.0624184782695466e-09 - ArtUnc_83: 9.610625844064377e-08 - ArtUnc_84: -1.2694396721333717e-07 - ArtUnc_85: -6.457187616301097e-07 - ArtUnc_86: -2.9317899929255475e-07 - ArtUnc_87: -3.9372117306839423e-07 - ArtUnc_88: 4.955158818554302e-08 - ArtUnc_89: 1.8185695363269428e-07 - ArtUnc_90: 1.097358450627666e-06 - ArtUnc_91: -6.7007103400230265e-06 - ArtUnc_92: -4.1782353724083415e-08 - ArtUnc_93: 6.93294384753824e-08 - ArtUnc_94: 1.1183383282743e-07 - ArtUnc_95: -2.9181645166768758e-06 - ArtUnc_96: -6.066089548558399e-07 + StatMC: 3.83400000e-06 + RadErr: 7.78160000e-07 + Model_1: 3.46411612e-06 + Model_2: 3.46411612e-06 + ModelRW_1: 8.35404236e-07 + ModelRW_2: 8.35404236e-07 + JES_1: 2.04301732e-06 + JES_2: 2.04301732e-06 + ArtUnc_1: 7.52555133e-19 + ArtUnc_2: 1.70110651e-18 + ArtUnc_3: 2.20883746e-17 + ArtUnc_4: 1.22419628e-16 + ArtUnc_5: 4.14064364e-18 + ArtUnc_6: 1.83863167e-18 + ArtUnc_7: 4.66260556e-16 + ArtUnc_8: 3.69590697e-15 + ArtUnc_9: 4.12283787e-17 + ArtUnc_10: -1.67322510e-14 + ArtUnc_11: 2.90624794e-14 + ArtUnc_12: 2.07354683e-15 + ArtUnc_13: 1.09561257e-13 + ArtUnc_14: -7.64555104e-16 + ArtUnc_15: 4.44523260e-15 + ArtUnc_16: -2.67505467e-16 + ArtUnc_17: -6.68656583e-15 + ArtUnc_18: 1.84297797e-16 + ArtUnc_19: 5.30939390e-14 + ArtUnc_20: 1.60344128e-13 + ArtUnc_21: -9.11449922e-15 + ArtUnc_22: 2.81609762e-12 + ArtUnc_23: 5.92604454e-14 + ArtUnc_24: -1.98277436e-12 + ArtUnc_25: -2.87478732e-13 + ArtUnc_26: 1.60402582e-13 + ArtUnc_27: 8.75190840e-12 + ArtUnc_28: 3.24305779e-13 + ArtUnc_29: 6.55386698e-12 + ArtUnc_30: 2.56896873e-12 + ArtUnc_31: -1.07536384e-12 + ArtUnc_32: 4.15449511e-11 + ArtUnc_33: -1.73482771e-15 + ArtUnc_34: -1.50405695e-12 + ArtUnc_35: -7.98484853e-13 + ArtUnc_36: 2.42811654e-11 + ArtUnc_37: -4.75044595e-11 + ArtUnc_38: 9.35217038e-12 + ArtUnc_39: 5.00301115e-11 + ArtUnc_40: -9.79468731e-13 + ArtUnc_41: -3.38400967e-10 + ArtUnc_42: 9.14535086e-12 + ArtUnc_43: 5.44499110e-10 + ArtUnc_44: 2.16479014e-10 + ArtUnc_45: -5.03633792e-12 + ArtUnc_46: 7.57201201e-11 + ArtUnc_47: 1.31229315e-11 + ArtUnc_48: -1.62350232e-12 + ArtUnc_49: 1.44638690e-09 + ArtUnc_50: 6.48791938e-11 + ArtUnc_51: 2.56404527e-10 + ArtUnc_52: -1.90864918e-11 + ArtUnc_53: -6.00492572e-11 + ArtUnc_54: 1.35287196e-11 + ArtUnc_55: 1.17994858e-08 + ArtUnc_56: -9.97534021e-09 + ArtUnc_57: -2.25212178e-09 + ArtUnc_58: 2.80469976e-08 + ArtUnc_59: 2.21039766e-10 + ArtUnc_60: 3.36498175e-08 + ArtUnc_61: 1.17406580e-10 + ArtUnc_62: -2.40233985e-09 + ArtUnc_63: 1.73916587e-10 + ArtUnc_64: 8.89274434e-08 + ArtUnc_65: -4.79748908e-09 + ArtUnc_66: 1.22364517e-07 + ArtUnc_67: 3.04065258e-08 + ArtUnc_68: -6.86220354e-09 + ArtUnc_69: -7.66577465e-09 + ArtUnc_70: 1.48062513e-07 + ArtUnc_71: 2.09790763e-09 + ArtUnc_72: 5.12220960e-08 + ArtUnc_73: 1.33624806e-10 + ArtUnc_74: 2.71758262e-07 + ArtUnc_75: -4.95187309e-08 + ArtUnc_76: 3.19807675e-09 + ArtUnc_77: 1.16026591e-08 + ArtUnc_78: 2.01327752e-07 + ArtUnc_79: -3.73066643e-07 + ArtUnc_80: 5.99229668e-09 + ArtUnc_81: -4.79262350e-09 + ArtUnc_82: -1.06241848e-09 + ArtUnc_83: 9.61062584e-08 + ArtUnc_84: -1.26943967e-07 + ArtUnc_85: -6.45718762e-07 + ArtUnc_86: -2.93178999e-07 + ArtUnc_87: -3.93721173e-07 + ArtUnc_88: 4.95515882e-08 + ArtUnc_89: 1.81856954e-07 + ArtUnc_90: 1.09735845e-06 + ArtUnc_91: -6.70071034e-06 + ArtUnc_92: -4.17823537e-08 + ArtUnc_93: 6.93294385e-08 + ArtUnc_94: 1.11833833e-07 + ArtUnc_95: -2.91816452e-06 + ArtUnc_96: -6.06608955e-07 - stat: 0 Uncorr: 0.00136 - RCES: 0.0036118371391855417 - ElEn: 8.892153844822974e-05 - ElTh: 0.0001907639378918353 - Lumi: 0.0010472 + RCES: 3.61183714e-03 + ElEn: 8.89215384e-05 + ElTh: 1.90763938e-04 + Lumi: 1.04720000e-03 LArN: 0.00068 - StatMC: 0.0013328 - RadErr: 0.00021760000000000003 - Model_1: 0.000615465742344771 - Model_2: 0.000615465742344771 - ModelRW_1: 0.002250296620448069 - ModelRW_2: 0.002250296620448069 - JES_1: 0.0009718410981225276 - JES_2: 0.0009718410981225276 - ArtUnc_1: -5.184077555533741e-09 - ArtUnc_2: 1.1677814854411006e-06 - ArtUnc_3: 6.484945269315138e-06 - ArtUnc_4: 2.9607766166695967e-05 - ArtUnc_5: 1.026009764528549e-06 - ArtUnc_6: 2.662512931754971e-07 - ArtUnc_7: 0.00019243537417088093 - ArtUnc_8: -0.0010127354200840388 - ArtUnc_9: 1.8484503325499536e-05 - ArtUnc_10: 0.00048367113275177076 - ArtUnc_11: -0.0010003494842459083 - ArtUnc_12: -8.105091416697253e-05 - ArtUnc_13: -0.001560303726292504 - ArtUnc_14: -1.3124683464170857e-05 - ArtUnc_15: -2.2591533427100417e-06 - ArtUnc_16: 5.817826599619027e-07 - ArtUnc_17: -1.1337540775553265e-06 - ArtUnc_18: 2.987029686372386e-09 - ArtUnc_19: -4.885827276898941e-06 - ArtUnc_20: 5.46036666714073e-06 - ArtUnc_21: -1.9999995328938429e-07 - ArtUnc_22: 1.127622547801492e-05 - ArtUnc_23: 2.4150688771514286e-07 - ArtUnc_24: -1.8699348321426944e-05 - ArtUnc_25: -8.703721396487673e-06 - ArtUnc_26: -5.289837150206431e-07 - ArtUnc_27: 2.092744305624243e-05 - ArtUnc_28: 1.1909023961737446e-06 - ArtUnc_29: -1.376509661274837e-07 - ArtUnc_30: 2.320036287223341e-06 - ArtUnc_31: -9.390934551493554e-07 - ArtUnc_32: 5.260444912495629e-05 - ArtUnc_33: -2.0294766714438776e-08 - ArtUnc_34: 6.195759482581024e-07 - ArtUnc_35: 9.550353952130143e-07 - ArtUnc_36: 3.729841789513544e-08 - ArtUnc_37: -8.01872132902217e-07 - ArtUnc_38: 1.3985486051409333e-07 - ArtUnc_39: -6.047222284831918e-07 - ArtUnc_40: -2.4299704067528574e-09 - ArtUnc_41: 1.4240506631795265e-07 - ArtUnc_42: 1.7631994306664332e-09 - ArtUnc_43: -3.8265962551438614e-07 - ArtUnc_44: 5.247038576006126e-07 - ArtUnc_45: -2.189129079051947e-09 - ArtUnc_46: -1.44380724631698e-08 - ArtUnc_47: 1.3171349073524332e-08 - ArtUnc_48: -2.7911157642128274e-10 - ArtUnc_49: -1.2825201759836507e-06 - ArtUnc_50: -3.951216736568954e-08 - ArtUnc_51: 4.224301304456062e-09 - ArtUnc_52: 6.753685855579711e-09 - ArtUnc_53: -1.0953565605415092e-09 - ArtUnc_54: 5.61711527514032e-10 - ArtUnc_55: -1.782027436821851e-08 - ArtUnc_56: -1.2209974055510724e-09 - ArtUnc_57: -4.019287354508974e-10 - ArtUnc_58: -4.213685453428593e-09 - ArtUnc_59: 1.2091701533994065e-10 - ArtUnc_60: -8.476923147507564e-09 - ArtUnc_61: 2.7460661768004776e-11 - ArtUnc_62: -2.362711917216108e-10 - ArtUnc_63: 1.9836546306819357e-11 - ArtUnc_64: -6.466304591781763e-08 - ArtUnc_65: 1.114451854006085e-09 - ArtUnc_66: 4.576488071035876e-08 - ArtUnc_67: 5.587580325253636e-10 - ArtUnc_68: -6.110199357284909e-10 - ArtUnc_69: -1.7776037748956474e-11 - ArtUnc_70: 2.105310448338427e-10 - ArtUnc_71: 2.036025074802777e-12 - ArtUnc_72: 5.932777335713569e-10 - ArtUnc_73: 4.2800168813375514e-11 - ArtUnc_74: 8.421436948084789e-11 - ArtUnc_75: -9.046981473561437e-10 - ArtUnc_76: -8.711386866030128e-12 - ArtUnc_77: -8.783496744864512e-12 - ArtUnc_78: 1.1157174486688844e-09 - ArtUnc_79: -6.647586284951538e-10 - ArtUnc_80: 2.5056554750015145e-12 - ArtUnc_81: 2.9053533657378786e-11 - ArtUnc_82: -1.6143113427655448e-12 - ArtUnc_83: -1.3792892516033813e-11 - ArtUnc_84: 2.55994988468569e-11 - ArtUnc_85: -4.1136523479301395e-13 - ArtUnc_86: 3.0054805505082905e-12 - ArtUnc_87: 3.6273406321135882e-12 - ArtUnc_88: -2.8013289475797947e-12 - ArtUnc_89: -1.9168249548640208e-11 - ArtUnc_90: -1.7317335682249917e-11 - ArtUnc_91: -2.0340718509920277e-12 - ArtUnc_92: 7.107882979360044e-11 - ArtUnc_93: -1.982403558075022e-12 - ArtUnc_94: -8.498361675632596e-13 - ArtUnc_95: 3.0305793135593906e-11 - ArtUnc_96: 4.905247241945646e-12 + StatMC: 1.33280000e-03 + RadErr: 2.17600000e-04 + Model_1: 6.15465742e-04 + Model_2: 6.15465742e-04 + ModelRW_1: 2.25029662e-03 + ModelRW_2: 2.25029662e-03 + JES_1: 9.71841098e-04 + JES_2: 9.71841098e-04 + ArtUnc_1: -5.18407756e-09 + ArtUnc_2: 1.16778149e-06 + ArtUnc_3: 6.48494527e-06 + ArtUnc_4: 2.96077662e-05 + ArtUnc_5: 1.02600976e-06 + ArtUnc_6: 2.66251293e-07 + ArtUnc_7: 1.92435374e-04 + ArtUnc_8: -1.01273542e-03 + ArtUnc_9: 1.84845033e-05 + ArtUnc_10: 4.83671133e-04 + ArtUnc_11: -1.00034948e-03 + ArtUnc_12: -8.10509142e-05 + ArtUnc_13: -1.56030373e-03 + ArtUnc_14: -1.31246835e-05 + ArtUnc_15: -2.25915334e-06 + ArtUnc_16: 5.81782660e-07 + ArtUnc_17: -1.13375408e-06 + ArtUnc_18: 2.98702969e-09 + ArtUnc_19: -4.88582728e-06 + ArtUnc_20: 5.46036667e-06 + ArtUnc_21: -1.99999953e-07 + ArtUnc_22: 1.12762255e-05 + ArtUnc_23: 2.41506888e-07 + ArtUnc_24: -1.86993483e-05 + ArtUnc_25: -8.70372140e-06 + ArtUnc_26: -5.28983715e-07 + ArtUnc_27: 2.09274431e-05 + ArtUnc_28: 1.19090240e-06 + ArtUnc_29: -1.37650966e-07 + ArtUnc_30: 2.32003629e-06 + ArtUnc_31: -9.39093455e-07 + ArtUnc_32: 5.26044491e-05 + ArtUnc_33: -2.02947667e-08 + ArtUnc_34: 6.19575948e-07 + ArtUnc_35: 9.55035395e-07 + ArtUnc_36: 3.72984179e-08 + ArtUnc_37: -8.01872133e-07 + ArtUnc_38: 1.39854861e-07 + ArtUnc_39: -6.04722228e-07 + ArtUnc_40: -2.42997041e-09 + ArtUnc_41: 1.42405066e-07 + ArtUnc_42: 1.76319943e-09 + ArtUnc_43: -3.82659626e-07 + ArtUnc_44: 5.24703858e-07 + ArtUnc_45: -2.18912908e-09 + ArtUnc_46: -1.44380725e-08 + ArtUnc_47: 1.31713491e-08 + ArtUnc_48: -2.79111576e-10 + ArtUnc_49: -1.28252018e-06 + ArtUnc_50: -3.95121674e-08 + ArtUnc_51: 4.22430130e-09 + ArtUnc_52: 6.75368586e-09 + ArtUnc_53: -1.09535656e-09 + ArtUnc_54: 5.61711528e-10 + ArtUnc_55: -1.78202744e-08 + ArtUnc_56: -1.22099741e-09 + ArtUnc_57: -4.01928735e-10 + ArtUnc_58: -4.21368545e-09 + ArtUnc_59: 1.20917015e-10 + ArtUnc_60: -8.47692315e-09 + ArtUnc_61: 2.74606618e-11 + ArtUnc_62: -2.36271192e-10 + ArtUnc_63: 1.98365463e-11 + ArtUnc_64: -6.46630459e-08 + ArtUnc_65: 1.11445185e-09 + ArtUnc_66: 4.57648807e-08 + ArtUnc_67: 5.58758033e-10 + ArtUnc_68: -6.11019936e-10 + ArtUnc_69: -1.77760377e-11 + ArtUnc_70: 2.10531045e-10 + ArtUnc_71: 2.03602507e-12 + ArtUnc_72: 5.93277734e-10 + ArtUnc_73: 4.28001688e-11 + ArtUnc_74: 8.42143695e-11 + ArtUnc_75: -9.04698147e-10 + ArtUnc_76: -8.71138687e-12 + ArtUnc_77: -8.78349674e-12 + ArtUnc_78: 1.11571745e-09 + ArtUnc_79: -6.64758628e-10 + ArtUnc_80: 2.50565548e-12 + ArtUnc_81: 2.90535337e-11 + ArtUnc_82: -1.61431134e-12 + ArtUnc_83: -1.37928925e-11 + ArtUnc_84: 2.55994988e-11 + ArtUnc_85: -4.11365235e-13 + ArtUnc_86: 3.00548055e-12 + ArtUnc_87: 3.62734063e-12 + ArtUnc_88: -2.80132895e-12 + ArtUnc_89: -1.91682495e-11 + ArtUnc_90: -1.73173357e-11 + ArtUnc_91: -2.03407185e-12 + ArtUnc_92: 7.10788298e-11 + ArtUnc_93: -1.98240356e-12 + ArtUnc_94: -8.49836168e-13 + ArtUnc_95: 3.03057931e-11 + ArtUnc_96: 4.90524724e-12 - stat: 0 - Uncorr: 0.00045900000000000004 - RCES: 0.002456034972160413 - ElEn: 0.00015352503663897953 - ElTh: 0.00017301012419797867 - Lumi: 0.00035343000000000006 - LArN: 0.00022950000000000002 - StatMC: 0.00042687000000000004 - RadErr: 0.00028458 - Model_1: 0.001295002430132855 - Model_2: 0.001295002430132855 - ModelRW_1: 0.0020479862992827855 - ModelRW_2: 0.0020479862992827855 - JES_1: 0.002342417695509813 - JES_2: 0.002342417695509813 - ArtUnc_1: 9.753547439539828e-11 - ArtUnc_2: -6.227372784156302e-09 - ArtUnc_3: 1.708759179124174e-08 - ArtUnc_4: 4.319110708990544e-07 - ArtUnc_5: 1.55443369537763e-08 - ArtUnc_6: 7.296344354538225e-09 - ArtUnc_7: 6.5460003475791674e-06 - ArtUnc_8: -5.7244761028330045e-05 - ArtUnc_9: 1.186505533190126e-06 - ArtUnc_10: 4.336442172324861e-05 - ArtUnc_11: -8.82617970058097e-05 - ArtUnc_12: -7.2030212472301245e-06 - ArtUnc_13: -0.00015235000980223684 - ArtUnc_14: -4.796339927814513e-07 - ArtUnc_15: -1.0309022261121442e-06 - ArtUnc_16: 9.39159190546805e-08 - ArtUnc_17: 5.141719307884341e-06 - ArtUnc_18: -1.6788426091245276e-07 - ArtUnc_19: -1.2964071120157313e-05 - ArtUnc_20: -3.0078776123106327e-05 - ArtUnc_21: 1.492529708589883e-06 - ArtUnc_22: -0.00023554744594108016 - ArtUnc_23: -3.676078550964621e-06 - ArtUnc_24: 0.00010267558870354524 - ArtUnc_25: 6.497741781847948e-05 - ArtUnc_26: -1.8235778533686426e-05 - ArtUnc_27: -0.00032423701033369213 - ArtUnc_28: -1.4688165452177336e-05 - ArtUnc_29: -0.0001522793414196557 - ArtUnc_30: -5.9820840239537066e-05 - ArtUnc_31: 2.457065364193579e-05 - ArtUnc_32: -0.000504650218600457 - ArtUnc_33: 1.7699603926293156e-07 - ArtUnc_34: -4.924692061993343e-06 - ArtUnc_35: -7.714627557624232e-06 - ArtUnc_36: -2.2392528805489359e-07 - ArtUnc_37: 6.411402027397098e-06 - ArtUnc_38: -1.1162652040395937e-06 - ArtUnc_39: -1.1430952119947765e-06 - ArtUnc_40: -6.748838465346753e-08 - ArtUnc_41: -2.3494255885952587e-06 - ArtUnc_42: -3.555146864871654e-08 - ArtUnc_43: 4.703836380515194e-06 - ArtUnc_44: -1.0566857235536604e-05 - ArtUnc_45: 4.4945124539397075e-08 - ArtUnc_46: -2.4857258556887034e-08 - ArtUnc_47: -1.6350369399770955e-07 - ArtUnc_48: 1.0292275806389106e-08 - ArtUnc_49: 1.4375919532156121e-05 - ArtUnc_50: 4.584058390843983e-07 - ArtUnc_51: -2.5943913798833367e-08 - ArtUnc_52: -3.026087152871613e-08 - ArtUnc_53: 5.632813063282722e-09 - ArtUnc_54: -3.4802714012223778e-09 - ArtUnc_55: 1.3420913257163547e-07 - ArtUnc_56: -1.919451231774332e-08 - ArtUnc_57: -4.460334623172426e-09 - ArtUnc_58: 1.8572987929047742e-07 - ArtUnc_59: -1.5232168649282663e-09 - ArtUnc_60: 2.412302921897371e-08 - ArtUnc_61: -1.7882848468633827e-10 - ArtUnc_62: 1.7966622080932891e-09 - ArtUnc_63: -1.5714942133352477e-10 - ArtUnc_64: 6.671627784511517e-07 - ArtUnc_65: -1.025189755352918e-08 - ArtUnc_66: -4.632156231862248e-07 - ArtUnc_67: -6.161588354153124e-09 - ArtUnc_68: 6.201726802224839e-09 - ArtUnc_69: 2.1346750028956372e-10 - ArtUnc_70: -2.4861479308310165e-09 - ArtUnc_71: -2.787441481271272e-11 - ArtUnc_72: -7.099604145631049e-09 - ArtUnc_73: -5.6861308517293e-10 - ArtUnc_74: -1.4292003880250983e-09 - ArtUnc_75: 1.0248505960157929e-08 - ArtUnc_76: 1.0475918137984441e-10 - ArtUnc_77: 5.677704383775364e-11 - ArtUnc_78: -1.2579885201608965e-08 - ArtUnc_79: 7.794043392189298e-09 - ArtUnc_80: -7.579711414801293e-11 - ArtUnc_81: -3.430852531169544e-10 - ArtUnc_82: 1.775117049089012e-11 - ArtUnc_83: 1.675001844948761e-10 - ArtUnc_84: -3.033136767965014e-10 - ArtUnc_85: 4.20039384186154e-12 - ArtUnc_86: -2.7784398976116623e-11 - ArtUnc_87: -3.283629617375756e-11 - ArtUnc_88: 3.125116211259143e-11 - ArtUnc_89: 2.877883598046601e-10 - ArtUnc_90: 1.536643881776656e-10 - ArtUnc_91: 1.5183076375485108e-11 - ArtUnc_92: -7.963922779568559e-10 - ArtUnc_93: 1.8540106738393557e-11 - ArtUnc_94: 1.3093416286191433e-11 - ArtUnc_95: -3.1596399642754e-10 - ArtUnc_96: -5.1872171587344076e-11 + Uncorr: 4.59000000e-04 + RCES: 2.45603497e-03 + ElEn: 1.53525037e-04 + ElTh: 1.73010124e-04 + Lumi: 3.53430000e-04 + LArN: 2.29500000e-04 + StatMC: 4.26870000e-04 + RadErr: 2.84580000e-04 + Model_1: 1.29500243e-03 + Model_2: 1.29500243e-03 + ModelRW_1: 2.04798630e-03 + ModelRW_2: 2.04798630e-03 + JES_1: 2.34241770e-03 + JES_2: 2.34241770e-03 + ArtUnc_1: 9.75354744e-11 + ArtUnc_2: -6.22737278e-09 + ArtUnc_3: 1.70875918e-08 + ArtUnc_4: 4.31911071e-07 + ArtUnc_5: 1.55443370e-08 + ArtUnc_6: 7.29634435e-09 + ArtUnc_7: 6.54600035e-06 + ArtUnc_8: -5.72447610e-05 + ArtUnc_9: 1.18650553e-06 + ArtUnc_10: 4.33644217e-05 + ArtUnc_11: -8.82617970e-05 + ArtUnc_12: -7.20302125e-06 + ArtUnc_13: -1.52350010e-04 + ArtUnc_14: -4.79633993e-07 + ArtUnc_15: -1.03090223e-06 + ArtUnc_16: 9.39159191e-08 + ArtUnc_17: 5.14171931e-06 + ArtUnc_18: -1.67884261e-07 + ArtUnc_19: -1.29640711e-05 + ArtUnc_20: -3.00787761e-05 + ArtUnc_21: 1.49252971e-06 + ArtUnc_22: -2.35547446e-04 + ArtUnc_23: -3.67607855e-06 + ArtUnc_24: 1.02675589e-04 + ArtUnc_25: 6.49774178e-05 + ArtUnc_26: -1.82357785e-05 + ArtUnc_27: -3.24237010e-04 + ArtUnc_28: -1.46881655e-05 + ArtUnc_29: -1.52279341e-04 + ArtUnc_30: -5.98208402e-05 + ArtUnc_31: 2.45706536e-05 + ArtUnc_32: -5.04650219e-04 + ArtUnc_33: 1.76996039e-07 + ArtUnc_34: -4.92469206e-06 + ArtUnc_35: -7.71462756e-06 + ArtUnc_36: -2.23925288e-07 + ArtUnc_37: 6.41140203e-06 + ArtUnc_38: -1.11626520e-06 + ArtUnc_39: -1.14309521e-06 + ArtUnc_40: -6.74883847e-08 + ArtUnc_41: -2.34942559e-06 + ArtUnc_42: -3.55514686e-08 + ArtUnc_43: 4.70383638e-06 + ArtUnc_44: -1.05668572e-05 + ArtUnc_45: 4.49451245e-08 + ArtUnc_46: -2.48572586e-08 + ArtUnc_47: -1.63503694e-07 + ArtUnc_48: 1.02922758e-08 + ArtUnc_49: 1.43759195e-05 + ArtUnc_50: 4.58405839e-07 + ArtUnc_51: -2.59439138e-08 + ArtUnc_52: -3.02608715e-08 + ArtUnc_53: 5.63281306e-09 + ArtUnc_54: -3.48027140e-09 + ArtUnc_55: 1.34209133e-07 + ArtUnc_56: -1.91945123e-08 + ArtUnc_57: -4.46033462e-09 + ArtUnc_58: 1.85729879e-07 + ArtUnc_59: -1.52321686e-09 + ArtUnc_60: 2.41230292e-08 + ArtUnc_61: -1.78828485e-10 + ArtUnc_62: 1.79666221e-09 + ArtUnc_63: -1.57149421e-10 + ArtUnc_64: 6.67162778e-07 + ArtUnc_65: -1.02518976e-08 + ArtUnc_66: -4.63215623e-07 + ArtUnc_67: -6.16158835e-09 + ArtUnc_68: 6.20172680e-09 + ArtUnc_69: 2.13467500e-10 + ArtUnc_70: -2.48614793e-09 + ArtUnc_71: -2.78744148e-11 + ArtUnc_72: -7.09960415e-09 + ArtUnc_73: -5.68613085e-10 + ArtUnc_74: -1.42920039e-09 + ArtUnc_75: 1.02485060e-08 + ArtUnc_76: 1.04759181e-10 + ArtUnc_77: 5.67770438e-11 + ArtUnc_78: -1.25798852e-08 + ArtUnc_79: 7.79404339e-09 + ArtUnc_80: -7.57971141e-11 + ArtUnc_81: -3.43085253e-10 + ArtUnc_82: 1.77511705e-11 + ArtUnc_83: 1.67500184e-10 + ArtUnc_84: -3.03313677e-10 + ArtUnc_85: 4.20039384e-12 + ArtUnc_86: -2.77843990e-11 + ArtUnc_87: -3.28362962e-11 + ArtUnc_88: 3.12511621e-11 + ArtUnc_89: 2.87788360e-10 + ArtUnc_90: 1.53664388e-10 + ArtUnc_91: 1.51830764e-11 + ArtUnc_92: -7.96392278e-10 + ArtUnc_93: 1.85401067e-11 + ArtUnc_94: 1.30934163e-11 + ArtUnc_95: -3.15963996e-10 + ArtUnc_96: -5.18721716e-11 - stat: 0 Uncorr: 0.000116 - RCES: 0.00014704458507541174 - ElEn: 2.1452160730332036e-05 - ElTh: 3.7749045021033316e-05 - Lumi: 8.931999999999999e-05 + RCES: 1.47044585e-04 + ElEn: 2.14521607e-05 + ElTh: 3.77490450e-05 + Lumi: 8.93200000e-05 LArN: 5.8e-05 - StatMC: 0.00011483999999999999 - RadErr: 9.048e-05 - Model_1: 0.000367469252047025 - Model_2: 0.000367469252047025 - ModelRW_1: 0.0002797031583661508 - ModelRW_2: 0.0002797031583661508 - JES_1: 0.00036034387576313817 - JES_2: 0.00036034387576313817 - ArtUnc_1: 7.051224216026941e-11 - ArtUnc_2: -1.3977675181295216e-08 - ArtUnc_3: -7.119561085981802e-08 - ArtUnc_4: -2.8058198438083383e-07 - ArtUnc_5: -9.59221642205358e-09 - ArtUnc_6: -2.02978998101931e-09 - ArtUnc_7: -1.3472556520548992e-06 - ArtUnc_8: 4.150934493663712e-06 - ArtUnc_9: -5.952842188927762e-08 - ArtUnc_10: 5.438010394919081e-08 - ArtUnc_11: 7.05979688352413e-08 - ArtUnc_12: 9.139260861476654e-09 - ArtUnc_13: -1.2790170539615633e-06 - ArtUnc_14: 2.5617408347870514e-08 - ArtUnc_15: -1.9841482618095413e-08 - ArtUnc_16: 1.6198073526381094e-10 - ArtUnc_17: 2.3983235953556213e-07 - ArtUnc_18: -7.139715679976194e-09 - ArtUnc_19: -7.286802604846646e-07 - ArtUnc_20: -1.534583304142478e-06 - ArtUnc_21: 9.112349277463271e-08 - ArtUnc_22: -1.3098744061619803e-05 - ArtUnc_23: -2.3664354657076953e-07 - ArtUnc_24: 5.656671937789673e-06 - ArtUnc_25: 7.335671792195338e-06 - ArtUnc_26: -1.4577249046427076e-06 - ArtUnc_27: -2.2342813730992484e-05 - ArtUnc_28: -9.32741641681257e-07 - ArtUnc_29: -3.5711130448348982e-06 - ArtUnc_30: -2.3298242139567014e-06 - ArtUnc_31: 9.539461832991869e-07 - ArtUnc_32: -3.365468085499373e-05 - ArtUnc_33: 1.0814802950801851e-08 - ArtUnc_34: 5.098518791699796e-07 - ArtUnc_35: 7.814559505928643e-07 - ArtUnc_36: -6.442488936637111e-06 - ArtUnc_37: 1.9979813786580084e-05 - ArtUnc_38: -3.559577279397605e-06 - ArtUnc_39: -2.0489934740514652e-05 - ArtUnc_40: 3.024895811611956e-08 - ArtUnc_41: 6.08972888844798e-05 - ArtUnc_42: -3.780216667070498e-07 - ArtUnc_43: -8.955261597295062e-05 - ArtUnc_44: -4.8024390229445863e-05 - ArtUnc_45: 6.222098420543644e-07 - ArtUnc_46: -1.368795153262544e-05 - ArtUnc_47: 9.264014209204773e-07 - ArtUnc_48: 1.6094043163831705e-08 - ArtUnc_49: -0.00017973388342818443 - ArtUnc_50: -4.459666900137267e-06 - ArtUnc_51: 2.038050437567206e-07 - ArtUnc_52: -1.0862800138360604e-07 - ArtUnc_53: 3.9714255876467446e-09 - ArtUnc_54: 2.966360374701162e-09 - ArtUnc_55: -1.8811433941314635e-06 - ArtUnc_56: -1.9456883465457418e-06 - ArtUnc_57: -5.713827041420243e-07 - ArtUnc_58: -2.6674338272983496e-06 - ArtUnc_59: 3.8161231902587136e-08 - ArtUnc_60: 2.6960411564784075e-06 - ArtUnc_61: 2.2069932666540668e-09 - ArtUnc_62: 3.1335045374841156e-08 - ArtUnc_63: -3.6382703959669343e-09 - ArtUnc_64: -5.303985659363463e-06 - ArtUnc_65: 3.295262320683488e-08 - ArtUnc_66: 6.51419437064317e-06 - ArtUnc_67: 1.224938548401954e-07 - ArtUnc_68: -6.0424720363524e-08 - ArtUnc_69: -2.525003177364441e-09 - ArtUnc_70: 1.6964903821867333e-08 - ArtUnc_71: -4.213129200925123e-11 - ArtUnc_72: 1.0434560435049898e-09 - ArtUnc_73: 2.2988054108867716e-10 - ArtUnc_74: -4.029581933211132e-08 - ArtUnc_75: 1.1695826127329766e-08 - ArtUnc_76: -1.1125737214139704e-09 - ArtUnc_77: -9.908908004047555e-10 - ArtUnc_78: 2.1566338396236692e-07 - ArtUnc_79: 7.525356436864798e-08 - ArtUnc_80: -5.458073635477984e-10 - ArtUnc_81: 6.330795480691271e-09 - ArtUnc_82: 2.219836404681475e-10 - ArtUnc_83: -1.4846246330279971e-09 - ArtUnc_84: 1.368357657876286e-10 - ArtUnc_85: 2.579468971964336e-10 - ArtUnc_86: 7.611218948708382e-11 - ArtUnc_87: 3.4903456058610976e-11 - ArtUnc_88: -7.88311010620826e-11 - ArtUnc_89: 1.7002038126260505e-09 - ArtUnc_90: -1.1830090352260171e-09 - ArtUnc_91: 6.700141510953795e-10 - ArtUnc_92: 1.7580036048980386e-09 - ArtUnc_93: -4.661069203930877e-11 - ArtUnc_94: -5.5651946891796474e-11 - ArtUnc_95: -2.1446402629044331e-10 - ArtUnc_96: -5.1926693597453337e-11 + StatMC: 1.14840000e-04 + RadErr: 9.04800000e-05 + Model_1: 3.67469252e-04 + Model_2: 3.67469252e-04 + ModelRW_1: 2.79703158e-04 + ModelRW_2: 2.79703158e-04 + JES_1: 3.60343876e-04 + JES_2: 3.60343876e-04 + ArtUnc_1: 7.05122422e-11 + ArtUnc_2: -1.39776752e-08 + ArtUnc_3: -7.11956109e-08 + ArtUnc_4: -2.80581984e-07 + ArtUnc_5: -9.59221642e-09 + ArtUnc_6: -2.02978998e-09 + ArtUnc_7: -1.34725565e-06 + ArtUnc_8: 4.15093449e-06 + ArtUnc_9: -5.95284219e-08 + ArtUnc_10: 5.43801039e-08 + ArtUnc_11: 7.05979688e-08 + ArtUnc_12: 9.13926086e-09 + ArtUnc_13: -1.27901705e-06 + ArtUnc_14: 2.56174083e-08 + ArtUnc_15: -1.98414826e-08 + ArtUnc_16: 1.61980735e-10 + ArtUnc_17: 2.39832360e-07 + ArtUnc_18: -7.13971568e-09 + ArtUnc_19: -7.28680260e-07 + ArtUnc_20: -1.53458330e-06 + ArtUnc_21: 9.11234928e-08 + ArtUnc_22: -1.30987441e-05 + ArtUnc_23: -2.36643547e-07 + ArtUnc_24: 5.65667194e-06 + ArtUnc_25: 7.33567179e-06 + ArtUnc_26: -1.45772490e-06 + ArtUnc_27: -2.23428137e-05 + ArtUnc_28: -9.32741642e-07 + ArtUnc_29: -3.57111304e-06 + ArtUnc_30: -2.32982421e-06 + ArtUnc_31: 9.53946183e-07 + ArtUnc_32: -3.36546809e-05 + ArtUnc_33: 1.08148030e-08 + ArtUnc_34: 5.09851879e-07 + ArtUnc_35: 7.81455951e-07 + ArtUnc_36: -6.44248894e-06 + ArtUnc_37: 1.99798138e-05 + ArtUnc_38: -3.55957728e-06 + ArtUnc_39: -2.04899347e-05 + ArtUnc_40: 3.02489581e-08 + ArtUnc_41: 6.08972889e-05 + ArtUnc_42: -3.78021667e-07 + ArtUnc_43: -8.95526160e-05 + ArtUnc_44: -4.80243902e-05 + ArtUnc_45: 6.22209842e-07 + ArtUnc_46: -1.36879515e-05 + ArtUnc_47: 9.26401421e-07 + ArtUnc_48: 1.60940432e-08 + ArtUnc_49: -1.79733883e-04 + ArtUnc_50: -4.45966690e-06 + ArtUnc_51: 2.03805044e-07 + ArtUnc_52: -1.08628001e-07 + ArtUnc_53: 3.97142559e-09 + ArtUnc_54: 2.96636037e-09 + ArtUnc_55: -1.88114339e-06 + ArtUnc_56: -1.94568835e-06 + ArtUnc_57: -5.71382704e-07 + ArtUnc_58: -2.66743383e-06 + ArtUnc_59: 3.81612319e-08 + ArtUnc_60: 2.69604116e-06 + ArtUnc_61: 2.20699327e-09 + ArtUnc_62: 3.13350454e-08 + ArtUnc_63: -3.63827040e-09 + ArtUnc_64: -5.30398566e-06 + ArtUnc_65: 3.29526232e-08 + ArtUnc_66: 6.51419437e-06 + ArtUnc_67: 1.22493855e-07 + ArtUnc_68: -6.04247204e-08 + ArtUnc_69: -2.52500318e-09 + ArtUnc_70: 1.69649038e-08 + ArtUnc_71: -4.21312920e-11 + ArtUnc_72: 1.04345604e-09 + ArtUnc_73: 2.29880541e-10 + ArtUnc_74: -4.02958193e-08 + ArtUnc_75: 1.16958261e-08 + ArtUnc_76: -1.11257372e-09 + ArtUnc_77: -9.90890800e-10 + ArtUnc_78: 2.15663384e-07 + ArtUnc_79: 7.52535644e-08 + ArtUnc_80: -5.45807364e-10 + ArtUnc_81: 6.33079548e-09 + ArtUnc_82: 2.21983640e-10 + ArtUnc_83: -1.48462463e-09 + ArtUnc_84: 1.36835766e-10 + ArtUnc_85: 2.57946897e-10 + ArtUnc_86: 7.61121895e-11 + ArtUnc_87: 3.49034561e-11 + ArtUnc_88: -7.88311011e-11 + ArtUnc_89: 1.70020381e-09 + ArtUnc_90: -1.18300904e-09 + ArtUnc_91: 6.70014151e-10 + ArtUnc_92: 1.75800360e-09 + ArtUnc_93: -4.66106920e-11 + ArtUnc_94: -5.56519469e-11 + ArtUnc_95: -2.14464026e-10 + ArtUnc_96: -5.19266936e-11 - stat: 0 Uncorr: 1.91e-05 - RCES: 2.220205558050876e-05 - ElEn: 6.082083031330632e-06 - ElTh: 1.6065586668403988e-06 - Lumi: 1.4707000000000002e-05 + RCES: 2.22020556e-05 + ElEn: 6.08208303e-06 + ElTh: 1.60655867e-06 + Lumi: 1.47070000e-05 LArN: 9.55e-06 - StatMC: 3.2661000000000005e-05 - RadErr: 1.4134e-05 - Model_1: 6.280168877108322e-05 - Model_2: 6.280168877108322e-05 - ModelRW_1: 3.362929140645101e-05 - ModelRW_2: 3.362929140645101e-05 - JES_1: 6.501898523796723e-05 - JES_2: 6.501898523796723e-05 - ArtUnc_1: 5.02819392911427e-14 - ArtUnc_2: -7.93092386430135e-12 - ArtUnc_3: -3.500863412851607e-11 - ArtUnc_4: -9.003481958336642e-11 - ArtUnc_5: -3.1431617742647692e-12 - ArtUnc_6: -2.6228548749244885e-13 - ArtUnc_7: 2.4988272275362133e-10 - ArtUnc_8: -7.095544583119142e-09 - ArtUnc_9: 1.7262562010402244e-10 - ArtUnc_10: 9.466624384963338e-09 - ArtUnc_11: -1.879788980545776e-08 - ArtUnc_12: -1.548158785248519e-09 - ArtUnc_13: -4.131411529644298e-08 - ArtUnc_14: 1.2381720443187933e-10 - ArtUnc_15: -5.996467589130546e-10 - ArtUnc_16: 4.2392744590761055e-11 - ArtUnc_17: 3.800322858826508e-09 - ArtUnc_18: -1.161756959648318e-10 - ArtUnc_19: -9.204297352626248e-09 - ArtUnc_20: -3.29521590064212e-08 - ArtUnc_21: 1.7060190359246318e-09 - ArtUnc_22: -3.159032400526775e-07 - ArtUnc_23: -6.308935847250307e-09 - ArtUnc_24: 1.7278494489382729e-07 - ArtUnc_25: 1.3875472113931756e-07 - ArtUnc_26: -2.9595791064606375e-08 - ArtUnc_27: -6.592875651505602e-07 - ArtUnc_28: -2.4985005971144744e-08 - ArtUnc_29: -3.1242140113639304e-07 - ArtUnc_30: -1.2830119955860022e-07 - ArtUnc_31: 5.325623570444768e-08 - ArtUnc_32: -1.557857961817675e-06 - ArtUnc_33: 1.8667160570307258e-10 - ArtUnc_34: 3.4328292949259264e-08 - ArtUnc_35: 1.5603640778777838e-08 - ArtUnc_36: -3.41441233333585e-07 - ArtUnc_37: 6.324378226229994e-07 - ArtUnc_38: -1.1310962710342948e-07 - ArtUnc_39: -5.43606112255573e-07 - ArtUnc_40: 9.94074320502835e-09 - ArtUnc_41: 2.723372214838412e-06 - ArtUnc_42: 3.5212973382349376e-09 - ArtUnc_43: -3.2286787244513157e-06 - ArtUnc_44: -1.137559147814532e-06 - ArtUnc_45: 1.8692778347107762e-08 - ArtUnc_46: -4.703960347728094e-07 - ArtUnc_47: 1.7808546771262623e-07 - ArtUnc_48: -6.883291106153041e-09 - ArtUnc_49: -5.562381912637747e-06 - ArtUnc_50: -1.1534748792065501e-07 - ArtUnc_51: -1.028575206998728e-06 - ArtUnc_52: 3.031560972701436e-07 - ArtUnc_53: 6.9722900824939765e-09 - ArtUnc_54: -8.435772815707573e-08 - ArtUnc_55: -1.3118817752018197e-05 - ArtUnc_56: 8.339153477261923e-06 - ArtUnc_57: 2.363714414463892e-06 - ArtUnc_58: -2.2236860622236516e-05 - ArtUnc_59: -4.699881721560735e-08 - ArtUnc_60: -2.2636716379401355e-05 - ArtUnc_61: -3.1315628659250002e-09 - ArtUnc_62: -8.573226609941899e-07 - ArtUnc_63: 9.546774888907887e-08 - ArtUnc_64: -4.345762967427407e-05 - ArtUnc_65: 1.6714745717974936e-06 - ArtUnc_66: -5.062688865522955e-05 - ArtUnc_67: -1.662439106353279e-06 - ArtUnc_68: 3.187052164572777e-07 - ArtUnc_69: 4.13515625985064e-08 - ArtUnc_70: -2.9553797995699014e-07 - ArtUnc_71: 2.7263250348303047e-09 - ArtUnc_72: 1.3610040269891257e-06 - ArtUnc_73: 1.0264420914310467e-07 - ArtUnc_74: 5.69311430194333e-07 - ArtUnc_75: -1.7030781847754871e-06 - ArtUnc_76: -6.269284013211263e-09 - ArtUnc_77: 8.642190079204772e-09 - ArtUnc_78: -3.365296810775796e-06 - ArtUnc_79: -1.84430929476948e-06 - ArtUnc_80: 9.498543448078409e-09 - ArtUnc_81: -9.359532363282695e-08 - ArtUnc_82: -5.063739805795505e-09 - ArtUnc_83: 1.672309867316878e-08 - ArtUnc_84: 1.257677996302173e-08 - ArtUnc_85: -5.998074356448583e-09 - ArtUnc_86: -1.4311052060218262e-09 - ArtUnc_87: -1.0586207274600761e-09 - ArtUnc_88: -1.508268361170333e-10 - ArtUnc_89: -3.94871824587661e-08 - ArtUnc_90: 1.8390899459919323e-08 - ArtUnc_91: -1.220670268979323e-08 - ArtUnc_92: -3.9562589117971506e-08 - ArtUnc_93: 2.223360481207455e-10 - ArtUnc_94: 1.6431022394438529e-09 - ArtUnc_95: 2.7427779419367713e-09 - ArtUnc_96: 2.0710559073924454e-10 + StatMC: 3.26610000e-05 + RadErr: 1.41340000e-05 + Model_1: 6.28016888e-05 + Model_2: 6.28016888e-05 + ModelRW_1: 3.36292914e-05 + ModelRW_2: 3.36292914e-05 + JES_1: 6.50189852e-05 + JES_2: 6.50189852e-05 + ArtUnc_1: 5.02819393e-14 + ArtUnc_2: -7.93092386e-12 + ArtUnc_3: -3.50086341e-11 + ArtUnc_4: -9.00348196e-11 + ArtUnc_5: -3.14316177e-12 + ArtUnc_6: -2.62285487e-13 + ArtUnc_7: 2.49882723e-10 + ArtUnc_8: -7.09554458e-09 + ArtUnc_9: 1.72625620e-10 + ArtUnc_10: 9.46662438e-09 + ArtUnc_11: -1.87978898e-08 + ArtUnc_12: -1.54815879e-09 + ArtUnc_13: -4.13141153e-08 + ArtUnc_14: 1.23817204e-10 + ArtUnc_15: -5.99646759e-10 + ArtUnc_16: 4.23927446e-11 + ArtUnc_17: 3.80032286e-09 + ArtUnc_18: -1.16175696e-10 + ArtUnc_19: -9.20429735e-09 + ArtUnc_20: -3.29521590e-08 + ArtUnc_21: 1.70601904e-09 + ArtUnc_22: -3.15903240e-07 + ArtUnc_23: -6.30893585e-09 + ArtUnc_24: 1.72784945e-07 + ArtUnc_25: 1.38754721e-07 + ArtUnc_26: -2.95957911e-08 + ArtUnc_27: -6.59287565e-07 + ArtUnc_28: -2.49850060e-08 + ArtUnc_29: -3.12421401e-07 + ArtUnc_30: -1.28301200e-07 + ArtUnc_31: 5.32562357e-08 + ArtUnc_32: -1.55785796e-06 + ArtUnc_33: 1.86671606e-10 + ArtUnc_34: 3.43282929e-08 + ArtUnc_35: 1.56036408e-08 + ArtUnc_36: -3.41441233e-07 + ArtUnc_37: 6.32437823e-07 + ArtUnc_38: -1.13109627e-07 + ArtUnc_39: -5.43606112e-07 + ArtUnc_40: 9.94074321e-09 + ArtUnc_41: 2.72337221e-06 + ArtUnc_42: 3.52129734e-09 + ArtUnc_43: -3.22867872e-06 + ArtUnc_44: -1.13755915e-06 + ArtUnc_45: 1.86927783e-08 + ArtUnc_46: -4.70396035e-07 + ArtUnc_47: 1.78085468e-07 + ArtUnc_48: -6.88329111e-09 + ArtUnc_49: -5.56238191e-06 + ArtUnc_50: -1.15347488e-07 + ArtUnc_51: -1.02857521e-06 + ArtUnc_52: 3.03156097e-07 + ArtUnc_53: 6.97229008e-09 + ArtUnc_54: -8.43577282e-08 + ArtUnc_55: -1.31188178e-05 + ArtUnc_56: 8.33915348e-06 + ArtUnc_57: 2.36371441e-06 + ArtUnc_58: -2.22368606e-05 + ArtUnc_59: -4.69988172e-08 + ArtUnc_60: -2.26367164e-05 + ArtUnc_61: -3.13156287e-09 + ArtUnc_62: -8.57322661e-07 + ArtUnc_63: 9.54677489e-08 + ArtUnc_64: -4.34576297e-05 + ArtUnc_65: 1.67147457e-06 + ArtUnc_66: -5.06268887e-05 + ArtUnc_67: -1.66243911e-06 + ArtUnc_68: 3.18705216e-07 + ArtUnc_69: 4.13515626e-08 + ArtUnc_70: -2.95537980e-07 + ArtUnc_71: 2.72632503e-09 + ArtUnc_72: 1.36100403e-06 + ArtUnc_73: 1.02644209e-07 + ArtUnc_74: 5.69311430e-07 + ArtUnc_75: -1.70307818e-06 + ArtUnc_76: -6.26928401e-09 + ArtUnc_77: 8.64219008e-09 + ArtUnc_78: -3.36529681e-06 + ArtUnc_79: -1.84430929e-06 + ArtUnc_80: 9.49854345e-09 + ArtUnc_81: -9.35953236e-08 + ArtUnc_82: -5.06373981e-09 + ArtUnc_83: 1.67230987e-08 + ArtUnc_84: 1.25767800e-08 + ArtUnc_85: -5.99807436e-09 + ArtUnc_86: -1.43110521e-09 + ArtUnc_87: -1.05862073e-09 + ArtUnc_88: -1.50826836e-10 + ArtUnc_89: -3.94871825e-08 + ArtUnc_90: 1.83908995e-08 + ArtUnc_91: -1.22067027e-08 + ArtUnc_92: -3.95625891e-08 + ArtUnc_93: 2.22336048e-10 + ArtUnc_94: 1.64310224e-09 + ArtUnc_95: 2.74277794e-09 + ArtUnc_96: 2.07105591e-10 - stat: 0 - Uncorr: 3.0600000000000003e-06 - RCES: 6.000253494645039e-06 - ElEn: 3.440663510138706e-06 - ElTh: 4.223548303263501e-06 - Lumi: 2.3562000000000004e-06 - LArN: 1.5300000000000002e-06 - StatMC: 1.6218e-05 - RadErr: 3.7638e-06 - Model_1: 1.8088922833601782e-05 - Model_2: 1.8088922833601782e-05 - ModelRW_1: 1.3004117970089319e-05 - ModelRW_2: 1.3004117970089319e-05 - JES_1: 8.731274473981448e-06 - JES_2: 8.731274473981448e-06 - ArtUnc_1: 3.1649572545798636e-16 - ArtUnc_2: -5.233577612250058e-14 - ArtUnc_3: 1.2009689584926394e-13 - ArtUnc_4: 5.277572473053857e-12 - ArtUnc_5: 1.9602452330203135e-13 - ArtUnc_6: 1.1950603216690673e-13 - ArtUnc_7: 1.177091946862514e-10 - ArtUnc_8: -1.4179526772949043e-09 - ArtUnc_9: 3.140778790121353e-11 - ArtUnc_10: 1.5709557509707463e-09 - ArtUnc_11: -3.1240802535447885e-09 - ArtUnc_12: -2.518727268235315e-10 - ArtUnc_13: -7.045050237369745e-09 - ArtUnc_14: -2.4889382837967554e-11 - ArtUnc_15: -6.151766026825989e-11 - ArtUnc_16: 5.582573905562612e-12 - ArtUnc_17: 3.960908745469827e-10 - ArtUnc_18: -1.2186192497896489e-11 - ArtUnc_19: -1.2867497103024744e-09 - ArtUnc_20: -4.035383590529554e-09 - ArtUnc_21: 2.330392107937851e-10 - ArtUnc_22: -4.487504907636002e-08 - ArtUnc_23: -7.936318198209268e-10 - ArtUnc_24: 2.371442818121514e-08 - ArtUnc_25: 1.574975239816285e-08 - ArtUnc_26: -4.309261165127264e-09 - ArtUnc_27: -9.7984030705831e-08 - ArtUnc_28: -4.944339987828451e-09 - ArtUnc_29: -5.412031033562565e-08 - ArtUnc_30: -2.2124207161280466e-08 - ArtUnc_31: 9.099620059241552e-09 - ArtUnc_32: -2.4212284907869234e-07 - ArtUnc_33: 7.643746265587136e-11 - ArtUnc_34: -2.531175015901532e-09 - ArtUnc_35: -4.649292937064408e-09 - ArtUnc_36: 2.1601831095153314e-10 - ArtUnc_37: 1.4995257681146108e-09 - ArtUnc_38: -1.5743773344953369e-10 - ArtUnc_39: 7.455873430691035e-09 - ArtUnc_40: -4.957949681526738e-11 - ArtUnc_41: -2.9637995206043367e-08 - ArtUnc_42: 1.4364644653972603e-09 - ArtUnc_43: 8.010985922253236e-08 - ArtUnc_44: 1.1402569191300257e-08 - ArtUnc_45: -4.70319844532275e-10 - ArtUnc_46: 1.0023033931634319e-08 - ArtUnc_47: 7.628779905008244e-09 - ArtUnc_48: -4.3229700830991953e-10 - ArtUnc_49: 3.164264343360258e-07 - ArtUnc_50: 1.244365852390118e-08 - ArtUnc_51: -5.759850014053632e-08 - ArtUnc_52: 4.17163704070633e-08 - ArtUnc_53: -2.931442056952663e-09 - ArtUnc_54: -3.5184202673116693e-09 - ArtUnc_55: -4.5051482319390554e-07 - ArtUnc_56: 4.7492041930752146e-07 - ArtUnc_57: 1.4149340622586435e-07 - ArtUnc_58: -5.06873105407668e-07 - ArtUnc_59: -4.014248528158959e-09 - ArtUnc_60: -6.525009893137404e-07 - ArtUnc_61: 7.476582192990769e-10 - ArtUnc_62: -6.224558013585522e-08 - ArtUnc_63: 5.947352900612051e-09 - ArtUnc_64: -4.6023902239792263e-07 - ArtUnc_65: 1.469646262779821e-08 - ArtUnc_66: -8.742215561408021e-07 - ArtUnc_67: 2.685437413470425e-07 - ArtUnc_68: -2.515600809491753e-08 - ArtUnc_69: -9.129200909773729e-08 - ArtUnc_70: 2.0080733355498856e-06 - ArtUnc_71: 2.981855795298056e-08 - ArtUnc_72: 1.2038558502867265e-06 - ArtUnc_73: -3.738286373691037e-09 - ArtUnc_74: 7.397192237967834e-06 - ArtUnc_75: -1.1239358915581491e-07 - ArtUnc_76: 1.9660642274449898e-07 - ArtUnc_77: 2.0281556677642994e-07 - ArtUnc_78: 1.2953754330491275e-05 - ArtUnc_79: -2.117380884707036e-05 - ArtUnc_80: 3.964956462254869e-07 - ArtUnc_81: 2.6821229728058613e-07 - ArtUnc_82: -5.169686328983974e-08 - ArtUnc_83: -1.592215483144535e-07 - ArtUnc_84: 7.311494935121575e-07 - ArtUnc_85: 2.9648856667801234e-09 - ArtUnc_86: -2.056962891334345e-08 - ArtUnc_87: -2.2139520866865153e-08 - ArtUnc_88: -3.832132486986376e-08 - ArtUnc_89: -9.456451570329005e-07 - ArtUnc_90: 2.959816264128777e-07 - ArtUnc_91: 1.36460411354434e-07 - ArtUnc_92: 1.6368869442189318e-06 - ArtUnc_93: -4.62625192359946e-09 - ArtUnc_94: -2.907941765743483e-08 - ArtUnc_95: 1.2467227997260188e-08 - ArtUnc_96: -9.500208452465233e-09 + Uncorr: 3.06000000e-06 + RCES: 6.00025349e-06 + ElEn: 3.44066351e-06 + ElTh: 4.22354830e-06 + Lumi: 2.35620000e-06 + LArN: 1.53000000e-06 + StatMC: 1.62180000e-05 + RadErr: 3.76380000e-06 + Model_1: 1.80889228e-05 + Model_2: 1.80889228e-05 + ModelRW_1: 1.30041180e-05 + ModelRW_2: 1.30041180e-05 + JES_1: 8.73127447e-06 + JES_2: 8.73127447e-06 + ArtUnc_1: 3.16495725e-16 + ArtUnc_2: -5.23357761e-14 + ArtUnc_3: 1.20096896e-13 + ArtUnc_4: 5.27757247e-12 + ArtUnc_5: 1.96024523e-13 + ArtUnc_6: 1.19506032e-13 + ArtUnc_7: 1.17709195e-10 + ArtUnc_8: -1.41795268e-09 + ArtUnc_9: 3.14077879e-11 + ArtUnc_10: 1.57095575e-09 + ArtUnc_11: -3.12408025e-09 + ArtUnc_12: -2.51872727e-10 + ArtUnc_13: -7.04505024e-09 + ArtUnc_14: -2.48893828e-11 + ArtUnc_15: -6.15176603e-11 + ArtUnc_16: 5.58257391e-12 + ArtUnc_17: 3.96090875e-10 + ArtUnc_18: -1.21861925e-11 + ArtUnc_19: -1.28674971e-09 + ArtUnc_20: -4.03538359e-09 + ArtUnc_21: 2.33039211e-10 + ArtUnc_22: -4.48750491e-08 + ArtUnc_23: -7.93631820e-10 + ArtUnc_24: 2.37144282e-08 + ArtUnc_25: 1.57497524e-08 + ArtUnc_26: -4.30926117e-09 + ArtUnc_27: -9.79840307e-08 + ArtUnc_28: -4.94433999e-09 + ArtUnc_29: -5.41203103e-08 + ArtUnc_30: -2.21242072e-08 + ArtUnc_31: 9.09962006e-09 + ArtUnc_32: -2.42122849e-07 + ArtUnc_33: 7.64374627e-11 + ArtUnc_34: -2.53117502e-09 + ArtUnc_35: -4.64929294e-09 + ArtUnc_36: 2.16018311e-10 + ArtUnc_37: 1.49952577e-09 + ArtUnc_38: -1.57437733e-10 + ArtUnc_39: 7.45587343e-09 + ArtUnc_40: -4.95794968e-11 + ArtUnc_41: -2.96379952e-08 + ArtUnc_42: 1.43646447e-09 + ArtUnc_43: 8.01098592e-08 + ArtUnc_44: 1.14025692e-08 + ArtUnc_45: -4.70319845e-10 + ArtUnc_46: 1.00230339e-08 + ArtUnc_47: 7.62877991e-09 + ArtUnc_48: -4.32297008e-10 + ArtUnc_49: 3.16426434e-07 + ArtUnc_50: 1.24436585e-08 + ArtUnc_51: -5.75985001e-08 + ArtUnc_52: 4.17163704e-08 + ArtUnc_53: -2.93144206e-09 + ArtUnc_54: -3.51842027e-09 + ArtUnc_55: -4.50514823e-07 + ArtUnc_56: 4.74920419e-07 + ArtUnc_57: 1.41493406e-07 + ArtUnc_58: -5.06873105e-07 + ArtUnc_59: -4.01424853e-09 + ArtUnc_60: -6.52500989e-07 + ArtUnc_61: 7.47658219e-10 + ArtUnc_62: -6.22455801e-08 + ArtUnc_63: 5.94735290e-09 + ArtUnc_64: -4.60239022e-07 + ArtUnc_65: 1.46964626e-08 + ArtUnc_66: -8.74221556e-07 + ArtUnc_67: 2.68543741e-07 + ArtUnc_68: -2.51560081e-08 + ArtUnc_69: -9.12920091e-08 + ArtUnc_70: 2.00807334e-06 + ArtUnc_71: 2.98185580e-08 + ArtUnc_72: 1.20385585e-06 + ArtUnc_73: -3.73828637e-09 + ArtUnc_74: 7.39719224e-06 + ArtUnc_75: -1.12393589e-07 + ArtUnc_76: 1.96606423e-07 + ArtUnc_77: 2.02815567e-07 + ArtUnc_78: 1.29537543e-05 + ArtUnc_79: -2.11738088e-05 + ArtUnc_80: 3.96495646e-07 + ArtUnc_81: 2.68212297e-07 + ArtUnc_82: -5.16968633e-08 + ArtUnc_83: -1.59221548e-07 + ArtUnc_84: 7.31149494e-07 + ArtUnc_85: 2.96488567e-09 + ArtUnc_86: -2.05696289e-08 + ArtUnc_87: -2.21395209e-08 + ArtUnc_88: -3.83213249e-08 + ArtUnc_89: -9.45645157e-07 + ArtUnc_90: 2.95981626e-07 + ArtUnc_91: 1.36460411e-07 + ArtUnc_92: 1.63688694e-06 + ArtUnc_93: -4.62625192e-09 + ArtUnc_94: -2.90794177e-08 + ArtUnc_95: 1.24672280e-08 + ArtUnc_96: -9.50020845e-09 - stat: 0 Uncorr: 5.74e-07 - RCES: 1.3436597040545647e-06 - ElEn: 6.976107529991206e-07 - ElTh: 5.826241377594993e-07 - Lumi: 4.4198e-07 + RCES: 1.34365970e-06 + ElEn: 6.97610753e-07 + ElTh: 5.82624138e-07 + Lumi: 4.41980000e-07 LArN: 2.87e-07 - StatMC: 4.2131599999999995e-06 - RadErr: 3.0020200000000004e-06 - Model_1: 4.927374609749091e-06 - Model_2: 4.927374609749091e-06 - ModelRW_1: 2.9548012486798498e-06 - ModelRW_2: 2.9548012486798498e-06 - JES_1: 2.4875401119177956e-06 - JES_2: 2.4875401119177956e-06 - ArtUnc_1: 7.525551332810761e-19 - ArtUnc_2: 1.7011065060993183e-18 - ArtUnc_3: 2.2088374550225672e-17 - ArtUnc_4: 1.2241962774379785e-16 - ArtUnc_5: 4.140643639484835e-18 - ArtUnc_6: 1.838631669346577e-18 - ArtUnc_7: 4.662605559246975e-16 - ArtUnc_8: 3.6959069714146945e-15 - ArtUnc_9: 4.1228378670082187e-17 - ArtUnc_10: -1.6732250973069617e-14 - ArtUnc_11: 2.906247935746357e-14 - ArtUnc_12: 2.07354682755585e-15 - ArtUnc_13: 1.0956125714146772e-13 - ArtUnc_14: -7.645551038861831e-16 - ArtUnc_15: 4.445232595615555e-15 - ArtUnc_16: -2.675054665071818e-16 - ArtUnc_17: -6.686565834819298e-15 - ArtUnc_18: 1.8429779658553334e-16 - ArtUnc_19: 5.3093938955127536e-14 - ArtUnc_20: 1.6034412809324093e-13 - ArtUnc_21: -9.114499216275052e-15 - ArtUnc_22: 2.8160976159407595e-12 - ArtUnc_23: 5.926044542417139e-14 - ArtUnc_24: -1.9827743594159214e-12 - ArtUnc_25: -2.8747873249342066e-13 - ArtUnc_26: 1.6040258231256255e-13 - ArtUnc_27: 8.751908398152517e-12 - ArtUnc_28: 3.243057790862044e-13 - ArtUnc_29: 6.553866976012681e-12 - ArtUnc_30: 2.568968732178255e-12 - ArtUnc_31: -1.0753638369503453e-12 - ArtUnc_32: 4.1544951068356036e-11 - ArtUnc_33: -1.7348277059421816e-15 - ArtUnc_34: -1.5040569541908268e-12 - ArtUnc_35: -7.984848532209664e-13 - ArtUnc_36: 2.4281165361617614e-11 - ArtUnc_37: -4.750445954573314e-11 - ArtUnc_38: 9.352170382692404e-12 - ArtUnc_39: 5.0030111451300346e-11 - ArtUnc_40: -9.794687305802967e-13 - ArtUnc_41: -3.384009666384961e-10 - ArtUnc_42: 9.145350864578396e-12 - ArtUnc_43: 5.444991103342456e-10 - ArtUnc_44: 2.164790135155239e-10 - ArtUnc_45: -5.036337921055136e-12 - ArtUnc_46: 7.572012011880331e-11 - ArtUnc_47: 1.3122931491457895e-11 - ArtUnc_48: -1.6235023239829938e-12 - ArtUnc_49: 1.4463868992619182e-09 - ArtUnc_50: 6.487919379608554e-11 - ArtUnc_51: 2.564045270519593e-10 - ArtUnc_52: -1.9086491770607894e-11 - ArtUnc_53: -6.004925716718752e-11 - ArtUnc_54: 1.3528719560799027e-11 - ArtUnc_55: 1.1799485815545221e-08 - ArtUnc_56: -9.975340208781463e-09 - ArtUnc_57: -2.2521217812471348e-09 - ArtUnc_58: 2.804699758441273e-08 - ArtUnc_59: 2.2103976595410218e-10 - ArtUnc_60: 3.3649817451941395e-08 - ArtUnc_61: 1.1740658032824714e-10 - ArtUnc_62: -2.402339850854667e-09 - ArtUnc_63: 1.7391658748525373e-10 - ArtUnc_64: 8.89274434058841e-08 - ArtUnc_65: -4.7974890767402026e-09 - ArtUnc_66: 1.22364516968084e-07 - ArtUnc_67: 3.040652579547578e-08 - ArtUnc_68: -6.862203540163716e-09 - ArtUnc_69: -7.665774654289796e-09 - ArtUnc_70: 1.480625126632594e-07 - ArtUnc_71: 2.0979076256282548e-09 - ArtUnc_72: 5.122209600702832e-08 - ArtUnc_73: 1.3362480636831328e-10 - ArtUnc_74: 2.717582622135473e-07 - ArtUnc_75: -4.951873092024478e-08 - ArtUnc_76: 3.198076745946251e-09 - ArtUnc_77: 1.1602659070872547e-08 - ArtUnc_78: 2.0132775223619658e-07 - ArtUnc_79: -3.7306664299767404e-07 - ArtUnc_80: 5.992296682747596e-09 - ArtUnc_81: -4.792623496419435e-09 - ArtUnc_82: -1.0624184782695466e-09 - ArtUnc_83: 9.610625844064377e-08 - ArtUnc_84: -1.2694396721333717e-07 - ArtUnc_85: -6.457187616301097e-07 - ArtUnc_86: -2.9317899929255475e-07 - ArtUnc_87: -3.9372117306839423e-07 - ArtUnc_88: 4.955158818554302e-08 - ArtUnc_89: 1.8185695363269428e-07 - ArtUnc_90: 1.097358450627666e-06 - ArtUnc_91: -6.7007103400230265e-06 - ArtUnc_92: -4.1782353724083415e-08 - ArtUnc_93: 6.93294384753824e-08 - ArtUnc_94: 1.1183383282743e-07 - ArtUnc_95: -2.9181645166768758e-06 - ArtUnc_96: -6.066089548558399e-07 + StatMC: 4.21316000e-06 + RadErr: 3.00202000e-06 + Model_1: 4.92737461e-06 + Model_2: 4.92737461e-06 + ModelRW_1: 2.95480125e-06 + ModelRW_2: 2.95480125e-06 + JES_1: 2.48754011e-06 + JES_2: 2.48754011e-06 + ArtUnc_1: 7.52555133e-19 + ArtUnc_2: 1.70110651e-18 + ArtUnc_3: 2.20883746e-17 + ArtUnc_4: 1.22419628e-16 + ArtUnc_5: 4.14064364e-18 + ArtUnc_6: 1.83863167e-18 + ArtUnc_7: 4.66260556e-16 + ArtUnc_8: 3.69590697e-15 + ArtUnc_9: 4.12283787e-17 + ArtUnc_10: -1.67322510e-14 + ArtUnc_11: 2.90624794e-14 + ArtUnc_12: 2.07354683e-15 + ArtUnc_13: 1.09561257e-13 + ArtUnc_14: -7.64555104e-16 + ArtUnc_15: 4.44523260e-15 + ArtUnc_16: -2.67505467e-16 + ArtUnc_17: -6.68656583e-15 + ArtUnc_18: 1.84297797e-16 + ArtUnc_19: 5.30939390e-14 + ArtUnc_20: 1.60344128e-13 + ArtUnc_21: -9.11449922e-15 + ArtUnc_22: 2.81609762e-12 + ArtUnc_23: 5.92604454e-14 + ArtUnc_24: -1.98277436e-12 + ArtUnc_25: -2.87478732e-13 + ArtUnc_26: 1.60402582e-13 + ArtUnc_27: 8.75190840e-12 + ArtUnc_28: 3.24305779e-13 + ArtUnc_29: 6.55386698e-12 + ArtUnc_30: 2.56896873e-12 + ArtUnc_31: -1.07536384e-12 + ArtUnc_32: 4.15449511e-11 + ArtUnc_33: -1.73482771e-15 + ArtUnc_34: -1.50405695e-12 + ArtUnc_35: -7.98484853e-13 + ArtUnc_36: 2.42811654e-11 + ArtUnc_37: -4.75044595e-11 + ArtUnc_38: 9.35217038e-12 + ArtUnc_39: 5.00301115e-11 + ArtUnc_40: -9.79468731e-13 + ArtUnc_41: -3.38400967e-10 + ArtUnc_42: 9.14535086e-12 + ArtUnc_43: 5.44499110e-10 + ArtUnc_44: 2.16479014e-10 + ArtUnc_45: -5.03633792e-12 + ArtUnc_46: 7.57201201e-11 + ArtUnc_47: 1.31229315e-11 + ArtUnc_48: -1.62350232e-12 + ArtUnc_49: 1.44638690e-09 + ArtUnc_50: 6.48791938e-11 + ArtUnc_51: 2.56404527e-10 + ArtUnc_52: -1.90864918e-11 + ArtUnc_53: -6.00492572e-11 + ArtUnc_54: 1.35287196e-11 + ArtUnc_55: 1.17994858e-08 + ArtUnc_56: -9.97534021e-09 + ArtUnc_57: -2.25212178e-09 + ArtUnc_58: 2.80469976e-08 + ArtUnc_59: 2.21039766e-10 + ArtUnc_60: 3.36498175e-08 + ArtUnc_61: 1.17406580e-10 + ArtUnc_62: -2.40233985e-09 + ArtUnc_63: 1.73916587e-10 + ArtUnc_64: 8.89274434e-08 + ArtUnc_65: -4.79748908e-09 + ArtUnc_66: 1.22364517e-07 + ArtUnc_67: 3.04065258e-08 + ArtUnc_68: -6.86220354e-09 + ArtUnc_69: -7.66577465e-09 + ArtUnc_70: 1.48062513e-07 + ArtUnc_71: 2.09790763e-09 + ArtUnc_72: 5.12220960e-08 + ArtUnc_73: 1.33624806e-10 + ArtUnc_74: 2.71758262e-07 + ArtUnc_75: -4.95187309e-08 + ArtUnc_76: 3.19807675e-09 + ArtUnc_77: 1.16026591e-08 + ArtUnc_78: 2.01327752e-07 + ArtUnc_79: -3.73066643e-07 + ArtUnc_80: 5.99229668e-09 + ArtUnc_81: -4.79262350e-09 + ArtUnc_82: -1.06241848e-09 + ArtUnc_83: 9.61062584e-08 + ArtUnc_84: -1.26943967e-07 + ArtUnc_85: -6.45718762e-07 + ArtUnc_86: -2.93178999e-07 + ArtUnc_87: -3.93721173e-07 + ArtUnc_88: 4.95515882e-08 + ArtUnc_89: 1.81856954e-07 + ArtUnc_90: 1.09735845e-06 + ArtUnc_91: -6.70071034e-06 + ArtUnc_92: -4.17823537e-08 + ArtUnc_93: 6.93294385e-08 + ArtUnc_94: 1.11833833e-07 + ArtUnc_95: -2.91816452e-06 + ArtUnc_96: -6.06608955e-07 - stat: 0 - Uncorr: 0.0015300000000000001 - RCES: 0.004702678446375002 - ElEn: 0.0016879131694195644 - ElTh: 0.0008550222628680496 - Lumi: 0.0011781 - LArN: 0.0007650000000000001 - StatMC: 0.0017900999999999998 - RadErr: 0.00024480000000000004 - Model_1: 0.0017309974003446682 - Model_2: 0.0017309974003446682 - ModelRW_1: 0.0005625741551120172 - ModelRW_2: 0.0005625741551120172 - JES_1: 0.0006434191207914168 - JES_2: 0.0006434191207914168 - ArtUnc_1: -5.184077555533741e-09 - ArtUnc_2: 1.1677814854411006e-06 - ArtUnc_3: 6.484945269315138e-06 - ArtUnc_4: 2.9607766166695967e-05 - ArtUnc_5: 1.026009764528549e-06 - ArtUnc_6: 2.662512931754971e-07 - ArtUnc_7: 0.00019243537417088093 - ArtUnc_8: -0.0010127354200840388 - ArtUnc_9: 1.8484503325499536e-05 - ArtUnc_10: 0.00048367113275177076 - ArtUnc_11: -0.0010003494842459083 - ArtUnc_12: -8.105091416697253e-05 - ArtUnc_13: -0.001560303726292504 - ArtUnc_14: -1.3124683464170857e-05 - ArtUnc_15: -2.2591533427100417e-06 - ArtUnc_16: 5.817826599619027e-07 - ArtUnc_17: -1.1337540775553265e-06 - ArtUnc_18: 2.987029686372386e-09 - ArtUnc_19: -4.885827276898941e-06 - ArtUnc_20: 5.46036666714073e-06 - ArtUnc_21: -1.9999995328938429e-07 - ArtUnc_22: 1.127622547801492e-05 - ArtUnc_23: 2.4150688771514286e-07 - ArtUnc_24: -1.8699348321426944e-05 - ArtUnc_25: -8.703721396487673e-06 - ArtUnc_26: -5.289837150206431e-07 - ArtUnc_27: 2.092744305624243e-05 - ArtUnc_28: 1.1909023961737446e-06 - ArtUnc_29: -1.376509661274837e-07 - ArtUnc_30: 2.320036287223341e-06 - ArtUnc_31: -9.390934551493554e-07 - ArtUnc_32: 5.260444912495629e-05 - ArtUnc_33: -2.0294766714438776e-08 - ArtUnc_34: 6.195759482581024e-07 - ArtUnc_35: 9.550353952130143e-07 - ArtUnc_36: 3.729841789513544e-08 - ArtUnc_37: -8.01872132902217e-07 - ArtUnc_38: 1.3985486051409333e-07 - ArtUnc_39: -6.047222284831918e-07 - ArtUnc_40: -2.4299704067528574e-09 - ArtUnc_41: 1.4240506631795265e-07 - ArtUnc_42: 1.7631994306664332e-09 - ArtUnc_43: -3.8265962551438614e-07 - ArtUnc_44: 5.247038576006126e-07 - ArtUnc_45: -2.189129079051947e-09 - ArtUnc_46: -1.44380724631698e-08 - ArtUnc_47: 1.3171349073524332e-08 - ArtUnc_48: -2.7911157642128274e-10 - ArtUnc_49: -1.2825201759836507e-06 - ArtUnc_50: -3.951216736568954e-08 - ArtUnc_51: 4.224301304456062e-09 - ArtUnc_52: 6.753685855579711e-09 - ArtUnc_53: -1.0953565605415092e-09 - ArtUnc_54: 5.61711527514032e-10 - ArtUnc_55: -1.782027436821851e-08 - ArtUnc_56: -1.2209974055510724e-09 - ArtUnc_57: -4.019287354508974e-10 - ArtUnc_58: -4.213685453428593e-09 - ArtUnc_59: 1.2091701533994065e-10 - ArtUnc_60: -8.476923147507564e-09 - ArtUnc_61: 2.7460661768004776e-11 - ArtUnc_62: -2.362711917216108e-10 - ArtUnc_63: 1.9836546306819357e-11 - ArtUnc_64: -6.466304591781763e-08 - ArtUnc_65: 1.114451854006085e-09 - ArtUnc_66: 4.576488071035876e-08 - ArtUnc_67: 5.587580325253636e-10 - ArtUnc_68: -6.110199357284909e-10 - ArtUnc_69: -1.7776037748956474e-11 - ArtUnc_70: 2.105310448338427e-10 - ArtUnc_71: 2.036025074802777e-12 - ArtUnc_72: 5.932777335713569e-10 - ArtUnc_73: 4.2800168813375514e-11 - ArtUnc_74: 8.421436948084789e-11 - ArtUnc_75: -9.046981473561437e-10 - ArtUnc_76: -8.711386866030128e-12 - ArtUnc_77: -8.783496744864512e-12 - ArtUnc_78: 1.1157174486688844e-09 - ArtUnc_79: -6.647586284951538e-10 - ArtUnc_80: 2.5056554750015145e-12 - ArtUnc_81: 2.9053533657378786e-11 - ArtUnc_82: -1.6143113427655448e-12 - ArtUnc_83: -1.3792892516033813e-11 - ArtUnc_84: 2.55994988468569e-11 - ArtUnc_85: -4.1136523479301395e-13 - ArtUnc_86: 3.0054805505082905e-12 - ArtUnc_87: 3.6273406321135882e-12 - ArtUnc_88: -2.8013289475797947e-12 - ArtUnc_89: -1.9168249548640208e-11 - ArtUnc_90: -1.7317335682249917e-11 - ArtUnc_91: -2.0340718509920277e-12 - ArtUnc_92: 7.107882979360044e-11 - ArtUnc_93: -1.982403558075022e-12 - ArtUnc_94: -8.498361675632596e-13 - ArtUnc_95: 3.0305793135593906e-11 - ArtUnc_96: 4.905247241945646e-12 + Uncorr: 1.53000000e-03 + RCES: 4.70267845e-03 + ElEn: 1.68791317e-03 + ElTh: 8.55022263e-04 + Lumi: 1.17810000e-03 + LArN: 7.65000000e-04 + StatMC: 1.79010000e-03 + RadErr: 2.44800000e-04 + Model_1: 1.73099740e-03 + Model_2: 1.73099740e-03 + ModelRW_1: 5.62574155e-04 + ModelRW_2: 5.62574155e-04 + JES_1: 6.43419121e-04 + JES_2: 6.43419121e-04 + ArtUnc_1: -5.18407756e-09 + ArtUnc_2: 1.16778149e-06 + ArtUnc_3: 6.48494527e-06 + ArtUnc_4: 2.96077662e-05 + ArtUnc_5: 1.02600976e-06 + ArtUnc_6: 2.66251293e-07 + ArtUnc_7: 1.92435374e-04 + ArtUnc_8: -1.01273542e-03 + ArtUnc_9: 1.84845033e-05 + ArtUnc_10: 4.83671133e-04 + ArtUnc_11: -1.00034948e-03 + ArtUnc_12: -8.10509142e-05 + ArtUnc_13: -1.56030373e-03 + ArtUnc_14: -1.31246835e-05 + ArtUnc_15: -2.25915334e-06 + ArtUnc_16: 5.81782660e-07 + ArtUnc_17: -1.13375408e-06 + ArtUnc_18: 2.98702969e-09 + ArtUnc_19: -4.88582728e-06 + ArtUnc_20: 5.46036667e-06 + ArtUnc_21: -1.99999953e-07 + ArtUnc_22: 1.12762255e-05 + ArtUnc_23: 2.41506888e-07 + ArtUnc_24: -1.86993483e-05 + ArtUnc_25: -8.70372140e-06 + ArtUnc_26: -5.28983715e-07 + ArtUnc_27: 2.09274431e-05 + ArtUnc_28: 1.19090240e-06 + ArtUnc_29: -1.37650966e-07 + ArtUnc_30: 2.32003629e-06 + ArtUnc_31: -9.39093455e-07 + ArtUnc_32: 5.26044491e-05 + ArtUnc_33: -2.02947667e-08 + ArtUnc_34: 6.19575948e-07 + ArtUnc_35: 9.55035395e-07 + ArtUnc_36: 3.72984179e-08 + ArtUnc_37: -8.01872133e-07 + ArtUnc_38: 1.39854861e-07 + ArtUnc_39: -6.04722228e-07 + ArtUnc_40: -2.42997041e-09 + ArtUnc_41: 1.42405066e-07 + ArtUnc_42: 1.76319943e-09 + ArtUnc_43: -3.82659626e-07 + ArtUnc_44: 5.24703858e-07 + ArtUnc_45: -2.18912908e-09 + ArtUnc_46: -1.44380725e-08 + ArtUnc_47: 1.31713491e-08 + ArtUnc_48: -2.79111576e-10 + ArtUnc_49: -1.28252018e-06 + ArtUnc_50: -3.95121674e-08 + ArtUnc_51: 4.22430130e-09 + ArtUnc_52: 6.75368586e-09 + ArtUnc_53: -1.09535656e-09 + ArtUnc_54: 5.61711528e-10 + ArtUnc_55: -1.78202744e-08 + ArtUnc_56: -1.22099741e-09 + ArtUnc_57: -4.01928735e-10 + ArtUnc_58: -4.21368545e-09 + ArtUnc_59: 1.20917015e-10 + ArtUnc_60: -8.47692315e-09 + ArtUnc_61: 2.74606618e-11 + ArtUnc_62: -2.36271192e-10 + ArtUnc_63: 1.98365463e-11 + ArtUnc_64: -6.46630459e-08 + ArtUnc_65: 1.11445185e-09 + ArtUnc_66: 4.57648807e-08 + ArtUnc_67: 5.58758033e-10 + ArtUnc_68: -6.11019936e-10 + ArtUnc_69: -1.77760377e-11 + ArtUnc_70: 2.10531045e-10 + ArtUnc_71: 2.03602507e-12 + ArtUnc_72: 5.93277734e-10 + ArtUnc_73: 4.28001688e-11 + ArtUnc_74: 8.42143695e-11 + ArtUnc_75: -9.04698147e-10 + ArtUnc_76: -8.71138687e-12 + ArtUnc_77: -8.78349674e-12 + ArtUnc_78: 1.11571745e-09 + ArtUnc_79: -6.64758628e-10 + ArtUnc_80: 2.50565548e-12 + ArtUnc_81: 2.90535337e-11 + ArtUnc_82: -1.61431134e-12 + ArtUnc_83: -1.37928925e-11 + ArtUnc_84: 2.55994988e-11 + ArtUnc_85: -4.11365235e-13 + ArtUnc_86: 3.00548055e-12 + ArtUnc_87: 3.62734063e-12 + ArtUnc_88: -2.80132895e-12 + ArtUnc_89: -1.91682495e-11 + ArtUnc_90: -1.73173357e-11 + ArtUnc_91: -2.03407185e-12 + ArtUnc_92: 7.10788298e-11 + ArtUnc_93: -1.98240356e-12 + ArtUnc_94: -8.49836168e-13 + ArtUnc_95: 3.03057931e-11 + ArtUnc_96: 4.90524724e-12 - stat: 0 Uncorr: 0.000575 - RCES: 0.002308802219225372 - ElEn: 0.0005561397503101176 - ElTh: 0.00019726774318169708 - Lumi: 0.00044275 - LArN: 0.0002875 - StatMC: 0.0005405000000000001 + RCES: 2.30880222e-03 + ElEn: 5.56139750e-04 + ElTh: 1.97267743e-04 + Lumi: 4.42750000e-04 + LArN: 2.87500000e-04 + StatMC: 5.40500000e-04 RadErr: 0.000276 - Model_1: 0.001268549565448666 - Model_2: 0.001268549565448666 - ModelRW_1: 0.0010083342699720166 - ModelRW_2: 0.0010083342699720166 - JES_1: 0.002769002635200985 - JES_2: 0.002769002635200985 - ArtUnc_1: 9.753547439539828e-11 - ArtUnc_2: -6.227372784156302e-09 - ArtUnc_3: 1.708759179124174e-08 - ArtUnc_4: 4.319110708990544e-07 - ArtUnc_5: 1.55443369537763e-08 - ArtUnc_6: 7.296344354538225e-09 - ArtUnc_7: 6.5460003475791674e-06 - ArtUnc_8: -5.7244761028330045e-05 - ArtUnc_9: 1.186505533190126e-06 - ArtUnc_10: 4.336442172324861e-05 - ArtUnc_11: -8.82617970058097e-05 - ArtUnc_12: -7.2030212472301245e-06 - ArtUnc_13: -0.00015235000980223684 - ArtUnc_14: -4.796339927814513e-07 - ArtUnc_15: -1.0309022261121442e-06 - ArtUnc_16: 9.39159190546805e-08 - ArtUnc_17: 5.141719307884341e-06 - ArtUnc_18: -1.6788426091245276e-07 - ArtUnc_19: -1.2964071120157313e-05 - ArtUnc_20: -3.0078776123106327e-05 - ArtUnc_21: 1.492529708589883e-06 - ArtUnc_22: -0.00023554744594108016 - ArtUnc_23: -3.676078550964621e-06 - ArtUnc_24: 0.00010267558870354524 - ArtUnc_25: 6.497741781847948e-05 - ArtUnc_26: -1.8235778533686426e-05 - ArtUnc_27: -0.00032423701033369213 - ArtUnc_28: -1.4688165452177336e-05 - ArtUnc_29: -0.0001522793414196557 - ArtUnc_30: -5.9820840239537066e-05 - ArtUnc_31: 2.457065364193579e-05 - ArtUnc_32: -0.000504650218600457 - ArtUnc_33: 1.7699603926293156e-07 - ArtUnc_34: -4.924692061993343e-06 - ArtUnc_35: -7.714627557624232e-06 - ArtUnc_36: -2.2392528805489359e-07 - ArtUnc_37: 6.411402027397098e-06 - ArtUnc_38: -1.1162652040395937e-06 - ArtUnc_39: -1.1430952119947765e-06 - ArtUnc_40: -6.748838465346753e-08 - ArtUnc_41: -2.3494255885952587e-06 - ArtUnc_42: -3.555146864871654e-08 - ArtUnc_43: 4.703836380515194e-06 - ArtUnc_44: -1.0566857235536604e-05 - ArtUnc_45: 4.4945124539397075e-08 - ArtUnc_46: -2.4857258556887034e-08 - ArtUnc_47: -1.6350369399770955e-07 - ArtUnc_48: 1.0292275806389106e-08 - ArtUnc_49: 1.4375919532156121e-05 - ArtUnc_50: 4.584058390843983e-07 - ArtUnc_51: -2.5943913798833367e-08 - ArtUnc_52: -3.026087152871613e-08 - ArtUnc_53: 5.632813063282722e-09 - ArtUnc_54: -3.4802714012223778e-09 - ArtUnc_55: 1.3420913257163547e-07 - ArtUnc_56: -1.919451231774332e-08 - ArtUnc_57: -4.460334623172426e-09 - ArtUnc_58: 1.8572987929047742e-07 - ArtUnc_59: -1.5232168649282663e-09 - ArtUnc_60: 2.412302921897371e-08 - ArtUnc_61: -1.7882848468633827e-10 - ArtUnc_62: 1.7966622080932891e-09 - ArtUnc_63: -1.5714942133352477e-10 - ArtUnc_64: 6.671627784511517e-07 - ArtUnc_65: -1.025189755352918e-08 - ArtUnc_66: -4.632156231862248e-07 - ArtUnc_67: -6.161588354153124e-09 - ArtUnc_68: 6.201726802224839e-09 - ArtUnc_69: 2.1346750028956372e-10 - ArtUnc_70: -2.4861479308310165e-09 - ArtUnc_71: -2.787441481271272e-11 - ArtUnc_72: -7.099604145631049e-09 - ArtUnc_73: -5.6861308517293e-10 - ArtUnc_74: -1.4292003880250983e-09 - ArtUnc_75: 1.0248505960157929e-08 - ArtUnc_76: 1.0475918137984441e-10 - ArtUnc_77: 5.677704383775364e-11 - ArtUnc_78: -1.2579885201608965e-08 - ArtUnc_79: 7.794043392189298e-09 - ArtUnc_80: -7.579711414801293e-11 - ArtUnc_81: -3.430852531169544e-10 - ArtUnc_82: 1.775117049089012e-11 - ArtUnc_83: 1.675001844948761e-10 - ArtUnc_84: -3.033136767965014e-10 - ArtUnc_85: 4.20039384186154e-12 - ArtUnc_86: -2.7784398976116623e-11 - ArtUnc_87: -3.283629617375756e-11 - ArtUnc_88: 3.125116211259143e-11 - ArtUnc_89: 2.877883598046601e-10 - ArtUnc_90: 1.536643881776656e-10 - ArtUnc_91: 1.5183076375485108e-11 - ArtUnc_92: -7.963922779568559e-10 - ArtUnc_93: 1.8540106738393557e-11 - ArtUnc_94: 1.3093416286191433e-11 - ArtUnc_95: -3.1596399642754e-10 - ArtUnc_96: -5.1872171587344076e-11 + Model_1: 1.26854957e-03 + Model_2: 1.26854957e-03 + ModelRW_1: 1.00833427e-03 + ModelRW_2: 1.00833427e-03 + JES_1: 2.76900264e-03 + JES_2: 2.76900264e-03 + ArtUnc_1: 9.75354744e-11 + ArtUnc_2: -6.22737278e-09 + ArtUnc_3: 1.70875918e-08 + ArtUnc_4: 4.31911071e-07 + ArtUnc_5: 1.55443370e-08 + ArtUnc_6: 7.29634435e-09 + ArtUnc_7: 6.54600035e-06 + ArtUnc_8: -5.72447610e-05 + ArtUnc_9: 1.18650553e-06 + ArtUnc_10: 4.33644217e-05 + ArtUnc_11: -8.82617970e-05 + ArtUnc_12: -7.20302125e-06 + ArtUnc_13: -1.52350010e-04 + ArtUnc_14: -4.79633993e-07 + ArtUnc_15: -1.03090223e-06 + ArtUnc_16: 9.39159191e-08 + ArtUnc_17: 5.14171931e-06 + ArtUnc_18: -1.67884261e-07 + ArtUnc_19: -1.29640711e-05 + ArtUnc_20: -3.00787761e-05 + ArtUnc_21: 1.49252971e-06 + ArtUnc_22: -2.35547446e-04 + ArtUnc_23: -3.67607855e-06 + ArtUnc_24: 1.02675589e-04 + ArtUnc_25: 6.49774178e-05 + ArtUnc_26: -1.82357785e-05 + ArtUnc_27: -3.24237010e-04 + ArtUnc_28: -1.46881655e-05 + ArtUnc_29: -1.52279341e-04 + ArtUnc_30: -5.98208402e-05 + ArtUnc_31: 2.45706536e-05 + ArtUnc_32: -5.04650219e-04 + ArtUnc_33: 1.76996039e-07 + ArtUnc_34: -4.92469206e-06 + ArtUnc_35: -7.71462756e-06 + ArtUnc_36: -2.23925288e-07 + ArtUnc_37: 6.41140203e-06 + ArtUnc_38: -1.11626520e-06 + ArtUnc_39: -1.14309521e-06 + ArtUnc_40: -6.74883847e-08 + ArtUnc_41: -2.34942559e-06 + ArtUnc_42: -3.55514686e-08 + ArtUnc_43: 4.70383638e-06 + ArtUnc_44: -1.05668572e-05 + ArtUnc_45: 4.49451245e-08 + ArtUnc_46: -2.48572586e-08 + ArtUnc_47: -1.63503694e-07 + ArtUnc_48: 1.02922758e-08 + ArtUnc_49: 1.43759195e-05 + ArtUnc_50: 4.58405839e-07 + ArtUnc_51: -2.59439138e-08 + ArtUnc_52: -3.02608715e-08 + ArtUnc_53: 5.63281306e-09 + ArtUnc_54: -3.48027140e-09 + ArtUnc_55: 1.34209133e-07 + ArtUnc_56: -1.91945123e-08 + ArtUnc_57: -4.46033462e-09 + ArtUnc_58: 1.85729879e-07 + ArtUnc_59: -1.52321686e-09 + ArtUnc_60: 2.41230292e-08 + ArtUnc_61: -1.78828485e-10 + ArtUnc_62: 1.79666221e-09 + ArtUnc_63: -1.57149421e-10 + ArtUnc_64: 6.67162778e-07 + ArtUnc_65: -1.02518976e-08 + ArtUnc_66: -4.63215623e-07 + ArtUnc_67: -6.16158835e-09 + ArtUnc_68: 6.20172680e-09 + ArtUnc_69: 2.13467500e-10 + ArtUnc_70: -2.48614793e-09 + ArtUnc_71: -2.78744148e-11 + ArtUnc_72: -7.09960415e-09 + ArtUnc_73: -5.68613085e-10 + ArtUnc_74: -1.42920039e-09 + ArtUnc_75: 1.02485060e-08 + ArtUnc_76: 1.04759181e-10 + ArtUnc_77: 5.67770438e-11 + ArtUnc_78: -1.25798852e-08 + ArtUnc_79: 7.79404339e-09 + ArtUnc_80: -7.57971141e-11 + ArtUnc_81: -3.43085253e-10 + ArtUnc_82: 1.77511705e-11 + ArtUnc_83: 1.67500184e-10 + ArtUnc_84: -3.03313677e-10 + ArtUnc_85: 4.20039384e-12 + ArtUnc_86: -2.77843990e-11 + ArtUnc_87: -3.28362962e-11 + ArtUnc_88: 3.12511621e-11 + ArtUnc_89: 2.87788360e-10 + ArtUnc_90: 1.53664388e-10 + ArtUnc_91: 1.51830764e-11 + ArtUnc_92: -7.96392278e-10 + ArtUnc_93: 1.85401067e-11 + ArtUnc_94: 1.30934163e-11 + ArtUnc_95: -3.15963996e-10 + ArtUnc_96: -5.18721716e-11 - stat: 0 - Uncorr: 0.00014800000000000002 - RCES: 0.00014270109039527342 - ElEn: 0.00012516941958801278 - ElTh: 6.294786414168476e-05 - Lumi: 0.00011396000000000001 - LArN: 7.400000000000001e-05 - StatMC: 0.00014356000000000001 - RadErr: 6.808000000000001e-05 - Model_1: 0.00013604734470029175 - Model_2: 0.00013604734470029175 - ModelRW_1: 3.453509519315098e-05 - ModelRW_2: 3.453509519315098e-05 - JES_1: 0.0004340170971286731 - JES_2: 0.0004340170971286731 - ArtUnc_1: 7.051224216026941e-11 - ArtUnc_2: -1.3977675181295216e-08 - ArtUnc_3: -7.119561085981802e-08 - ArtUnc_4: -2.8058198438083383e-07 - ArtUnc_5: -9.59221642205358e-09 - ArtUnc_6: -2.02978998101931e-09 - ArtUnc_7: -1.3472556520548992e-06 - ArtUnc_8: 4.150934493663712e-06 - ArtUnc_9: -5.952842188927762e-08 - ArtUnc_10: 5.438010394919081e-08 - ArtUnc_11: 7.05979688352413e-08 - ArtUnc_12: 9.139260861476654e-09 - ArtUnc_13: -1.2790170539615633e-06 - ArtUnc_14: 2.5617408347870514e-08 - ArtUnc_15: -1.9841482618095413e-08 - ArtUnc_16: 1.6198073526381094e-10 - ArtUnc_17: 2.3983235953556213e-07 - ArtUnc_18: -7.139715679976194e-09 - ArtUnc_19: -7.286802604846646e-07 - ArtUnc_20: -1.534583304142478e-06 - ArtUnc_21: 9.112349277463271e-08 - ArtUnc_22: -1.3098744061619803e-05 - ArtUnc_23: -2.3664354657076953e-07 - ArtUnc_24: 5.656671937789673e-06 - ArtUnc_25: 7.335671792195338e-06 - ArtUnc_26: -1.4577249046427076e-06 - ArtUnc_27: -2.2342813730992484e-05 - ArtUnc_28: -9.32741641681257e-07 - ArtUnc_29: -3.5711130448348982e-06 - ArtUnc_30: -2.3298242139567014e-06 - ArtUnc_31: 9.539461832991869e-07 - ArtUnc_32: -3.365468085499373e-05 - ArtUnc_33: 1.0814802950801851e-08 - ArtUnc_34: 5.098518791699796e-07 - ArtUnc_35: 7.814559505928643e-07 - ArtUnc_36: -6.442488936637111e-06 - ArtUnc_37: 1.9979813786580084e-05 - ArtUnc_38: -3.559577279397605e-06 - ArtUnc_39: -2.0489934740514652e-05 - ArtUnc_40: 3.024895811611956e-08 - ArtUnc_41: 6.08972888844798e-05 - ArtUnc_42: -3.780216667070498e-07 - ArtUnc_43: -8.955261597295062e-05 - ArtUnc_44: -4.8024390229445863e-05 - ArtUnc_45: 6.222098420543644e-07 - ArtUnc_46: -1.368795153262544e-05 - ArtUnc_47: 9.264014209204773e-07 - ArtUnc_48: 1.6094043163831705e-08 - ArtUnc_49: -0.00017973388342818443 - ArtUnc_50: -4.459666900137267e-06 - ArtUnc_51: 2.038050437567206e-07 - ArtUnc_52: -1.0862800138360604e-07 - ArtUnc_53: 3.9714255876467446e-09 - ArtUnc_54: 2.966360374701162e-09 - ArtUnc_55: -1.8811433941314635e-06 - ArtUnc_56: -1.9456883465457418e-06 - ArtUnc_57: -5.713827041420243e-07 - ArtUnc_58: -2.6674338272983496e-06 - ArtUnc_59: 3.8161231902587136e-08 - ArtUnc_60: 2.6960411564784075e-06 - ArtUnc_61: 2.2069932666540668e-09 - ArtUnc_62: 3.1335045374841156e-08 - ArtUnc_63: -3.6382703959669343e-09 - ArtUnc_64: -5.303985659363463e-06 - ArtUnc_65: 3.295262320683488e-08 - ArtUnc_66: 6.51419437064317e-06 - ArtUnc_67: 1.224938548401954e-07 - ArtUnc_68: -6.0424720363524e-08 - ArtUnc_69: -2.525003177364441e-09 - ArtUnc_70: 1.6964903821867333e-08 - ArtUnc_71: -4.213129200925123e-11 - ArtUnc_72: 1.0434560435049898e-09 - ArtUnc_73: 2.2988054108867716e-10 - ArtUnc_74: -4.029581933211132e-08 - ArtUnc_75: 1.1695826127329766e-08 - ArtUnc_76: -1.1125737214139704e-09 - ArtUnc_77: -9.908908004047555e-10 - ArtUnc_78: 2.1566338396236692e-07 - ArtUnc_79: 7.525356436864798e-08 - ArtUnc_80: -5.458073635477984e-10 - ArtUnc_81: 6.330795480691271e-09 - ArtUnc_82: 2.219836404681475e-10 - ArtUnc_83: -1.4846246330279971e-09 - ArtUnc_84: 1.368357657876286e-10 - ArtUnc_85: 2.579468971964336e-10 - ArtUnc_86: 7.611218948708382e-11 - ArtUnc_87: 3.4903456058610976e-11 - ArtUnc_88: -7.88311010620826e-11 - ArtUnc_89: 1.7002038126260505e-09 - ArtUnc_90: -1.1830090352260171e-09 - ArtUnc_91: 6.700141510953795e-10 - ArtUnc_92: 1.7580036048980386e-09 - ArtUnc_93: -4.661069203930877e-11 - ArtUnc_94: -5.5651946891796474e-11 - ArtUnc_95: -2.1446402629044331e-10 - ArtUnc_96: -5.1926693597453337e-11 + Uncorr: 1.48000000e-04 + RCES: 1.42701090e-04 + ElEn: 1.25169420e-04 + ElTh: 6.29478641e-05 + Lumi: 1.13960000e-04 + LArN: 7.40000000e-05 + StatMC: 1.43560000e-04 + RadErr: 6.80800000e-05 + Model_1: 1.36047345e-04 + Model_2: 1.36047345e-04 + ModelRW_1: 3.45350952e-05 + ModelRW_2: 3.45350952e-05 + JES_1: 4.34017097e-04 + JES_2: 4.34017097e-04 + ArtUnc_1: 7.05122422e-11 + ArtUnc_2: -1.39776752e-08 + ArtUnc_3: -7.11956109e-08 + ArtUnc_4: -2.80581984e-07 + ArtUnc_5: -9.59221642e-09 + ArtUnc_6: -2.02978998e-09 + ArtUnc_7: -1.34725565e-06 + ArtUnc_8: 4.15093449e-06 + ArtUnc_9: -5.95284219e-08 + ArtUnc_10: 5.43801039e-08 + ArtUnc_11: 7.05979688e-08 + ArtUnc_12: 9.13926086e-09 + ArtUnc_13: -1.27901705e-06 + ArtUnc_14: 2.56174083e-08 + ArtUnc_15: -1.98414826e-08 + ArtUnc_16: 1.61980735e-10 + ArtUnc_17: 2.39832360e-07 + ArtUnc_18: -7.13971568e-09 + ArtUnc_19: -7.28680260e-07 + ArtUnc_20: -1.53458330e-06 + ArtUnc_21: 9.11234928e-08 + ArtUnc_22: -1.30987441e-05 + ArtUnc_23: -2.36643547e-07 + ArtUnc_24: 5.65667194e-06 + ArtUnc_25: 7.33567179e-06 + ArtUnc_26: -1.45772490e-06 + ArtUnc_27: -2.23428137e-05 + ArtUnc_28: -9.32741642e-07 + ArtUnc_29: -3.57111304e-06 + ArtUnc_30: -2.32982421e-06 + ArtUnc_31: 9.53946183e-07 + ArtUnc_32: -3.36546809e-05 + ArtUnc_33: 1.08148030e-08 + ArtUnc_34: 5.09851879e-07 + ArtUnc_35: 7.81455951e-07 + ArtUnc_36: -6.44248894e-06 + ArtUnc_37: 1.99798138e-05 + ArtUnc_38: -3.55957728e-06 + ArtUnc_39: -2.04899347e-05 + ArtUnc_40: 3.02489581e-08 + ArtUnc_41: 6.08972889e-05 + ArtUnc_42: -3.78021667e-07 + ArtUnc_43: -8.95526160e-05 + ArtUnc_44: -4.80243902e-05 + ArtUnc_45: 6.22209842e-07 + ArtUnc_46: -1.36879515e-05 + ArtUnc_47: 9.26401421e-07 + ArtUnc_48: 1.60940432e-08 + ArtUnc_49: -1.79733883e-04 + ArtUnc_50: -4.45966690e-06 + ArtUnc_51: 2.03805044e-07 + ArtUnc_52: -1.08628001e-07 + ArtUnc_53: 3.97142559e-09 + ArtUnc_54: 2.96636037e-09 + ArtUnc_55: -1.88114339e-06 + ArtUnc_56: -1.94568835e-06 + ArtUnc_57: -5.71382704e-07 + ArtUnc_58: -2.66743383e-06 + ArtUnc_59: 3.81612319e-08 + ArtUnc_60: 2.69604116e-06 + ArtUnc_61: 2.20699327e-09 + ArtUnc_62: 3.13350454e-08 + ArtUnc_63: -3.63827040e-09 + ArtUnc_64: -5.30398566e-06 + ArtUnc_65: 3.29526232e-08 + ArtUnc_66: 6.51419437e-06 + ArtUnc_67: 1.22493855e-07 + ArtUnc_68: -6.04247204e-08 + ArtUnc_69: -2.52500318e-09 + ArtUnc_70: 1.69649038e-08 + ArtUnc_71: -4.21312920e-11 + ArtUnc_72: 1.04345604e-09 + ArtUnc_73: 2.29880541e-10 + ArtUnc_74: -4.02958193e-08 + ArtUnc_75: 1.16958261e-08 + ArtUnc_76: -1.11257372e-09 + ArtUnc_77: -9.90890800e-10 + ArtUnc_78: 2.15663384e-07 + ArtUnc_79: 7.52535644e-08 + ArtUnc_80: -5.45807364e-10 + ArtUnc_81: 6.33079548e-09 + ArtUnc_82: 2.21983640e-10 + ArtUnc_83: -1.48462463e-09 + ArtUnc_84: 1.36835766e-10 + ArtUnc_85: 2.57946897e-10 + ArtUnc_86: 7.61121895e-11 + ArtUnc_87: 3.49034561e-11 + ArtUnc_88: -7.88311011e-11 + ArtUnc_89: 1.70020381e-09 + ArtUnc_90: -1.18300904e-09 + ArtUnc_91: 6.70014151e-10 + ArtUnc_92: 1.75800360e-09 + ArtUnc_93: -4.66106920e-11 + ArtUnc_94: -5.56519469e-11 + ArtUnc_95: -2.14464026e-10 + ArtUnc_96: -5.19266936e-11 - stat: 0 Uncorr: 2.76e-05 - RCES: 1.8307768842761804e-05 - ElEn: 1.5028066941559716e-05 - ElTh: 1.3209851323917315e-05 - Lumi: 2.1252e-05 + RCES: 1.83077688e-05 + ElEn: 1.50280669e-05 + ElTh: 1.32098513e-05 + Lumi: 2.12520000e-05 LArN: 1.38e-05 - StatMC: 4.692e-05 - RadErr: 6.2376e-05 - Model_1: 8.606620897890181e-05 - Model_2: 8.606620897890181e-05 - ModelRW_1: 7.338071332441514e-05 - ModelRW_2: 7.338071332441514e-05 - JES_1: 7.173259380504791e-05 - JES_2: 7.173259380504791e-05 - ArtUnc_1: 5.02819392911427e-14 - ArtUnc_2: -7.93092386430135e-12 - ArtUnc_3: -3.500863412851607e-11 - ArtUnc_4: -9.003481958336642e-11 - ArtUnc_5: -3.1431617742647692e-12 - ArtUnc_6: -2.6228548749244885e-13 - ArtUnc_7: 2.4988272275362133e-10 - ArtUnc_8: -7.095544583119142e-09 - ArtUnc_9: 1.7262562010402244e-10 - ArtUnc_10: 9.466624384963338e-09 - ArtUnc_11: -1.879788980545776e-08 - ArtUnc_12: -1.548158785248519e-09 - ArtUnc_13: -4.131411529644298e-08 - ArtUnc_14: 1.2381720443187933e-10 - ArtUnc_15: -5.996467589130546e-10 - ArtUnc_16: 4.2392744590761055e-11 - ArtUnc_17: 3.800322858826508e-09 - ArtUnc_18: -1.161756959648318e-10 - ArtUnc_19: -9.204297352626248e-09 - ArtUnc_20: -3.29521590064212e-08 - ArtUnc_21: 1.7060190359246318e-09 - ArtUnc_22: -3.159032400526775e-07 - ArtUnc_23: -6.308935847250307e-09 - ArtUnc_24: 1.7278494489382729e-07 - ArtUnc_25: 1.3875472113931756e-07 - ArtUnc_26: -2.9595791064606375e-08 - ArtUnc_27: -6.592875651505602e-07 - ArtUnc_28: -2.4985005971144744e-08 - ArtUnc_29: -3.1242140113639304e-07 - ArtUnc_30: -1.2830119955860022e-07 - ArtUnc_31: 5.325623570444768e-08 - ArtUnc_32: -1.557857961817675e-06 - ArtUnc_33: 1.8667160570307258e-10 - ArtUnc_34: 3.4328292949259264e-08 - ArtUnc_35: 1.5603640778777838e-08 - ArtUnc_36: -3.41441233333585e-07 - ArtUnc_37: 6.324378226229994e-07 - ArtUnc_38: -1.1310962710342948e-07 - ArtUnc_39: -5.43606112255573e-07 - ArtUnc_40: 9.94074320502835e-09 - ArtUnc_41: 2.723372214838412e-06 - ArtUnc_42: 3.5212973382349376e-09 - ArtUnc_43: -3.2286787244513157e-06 - ArtUnc_44: -1.137559147814532e-06 - ArtUnc_45: 1.8692778347107762e-08 - ArtUnc_46: -4.703960347728094e-07 - ArtUnc_47: 1.7808546771262623e-07 - ArtUnc_48: -6.883291106153041e-09 - ArtUnc_49: -5.562381912637747e-06 - ArtUnc_50: -1.1534748792065501e-07 - ArtUnc_51: -1.028575206998728e-06 - ArtUnc_52: 3.031560972701436e-07 - ArtUnc_53: 6.9722900824939765e-09 - ArtUnc_54: -8.435772815707573e-08 - ArtUnc_55: -1.3118817752018197e-05 - ArtUnc_56: 8.339153477261923e-06 - ArtUnc_57: 2.363714414463892e-06 - ArtUnc_58: -2.2236860622236516e-05 - ArtUnc_59: -4.699881721560735e-08 - ArtUnc_60: -2.2636716379401355e-05 - ArtUnc_61: -3.1315628659250002e-09 - ArtUnc_62: -8.573226609941899e-07 - ArtUnc_63: 9.546774888907887e-08 - ArtUnc_64: -4.345762967427407e-05 - ArtUnc_65: 1.6714745717974936e-06 - ArtUnc_66: -5.062688865522955e-05 - ArtUnc_67: -1.662439106353279e-06 - ArtUnc_68: 3.187052164572777e-07 - ArtUnc_69: 4.13515625985064e-08 - ArtUnc_70: -2.9553797995699014e-07 - ArtUnc_71: 2.7263250348303047e-09 - ArtUnc_72: 1.3610040269891257e-06 - ArtUnc_73: 1.0264420914310467e-07 - ArtUnc_74: 5.69311430194333e-07 - ArtUnc_75: -1.7030781847754871e-06 - ArtUnc_76: -6.269284013211263e-09 - ArtUnc_77: 8.642190079204772e-09 - ArtUnc_78: -3.365296810775796e-06 - ArtUnc_79: -1.84430929476948e-06 - ArtUnc_80: 9.498543448078409e-09 - ArtUnc_81: -9.359532363282695e-08 - ArtUnc_82: -5.063739805795505e-09 - ArtUnc_83: 1.672309867316878e-08 - ArtUnc_84: 1.257677996302173e-08 - ArtUnc_85: -5.998074356448583e-09 - ArtUnc_86: -1.4311052060218262e-09 - ArtUnc_87: -1.0586207274600761e-09 - ArtUnc_88: -1.508268361170333e-10 - ArtUnc_89: -3.94871824587661e-08 - ArtUnc_90: 1.8390899459919323e-08 - ArtUnc_91: -1.220670268979323e-08 - ArtUnc_92: -3.9562589117971506e-08 - ArtUnc_93: 2.223360481207455e-10 - ArtUnc_94: 1.6431022394438529e-09 - ArtUnc_95: 2.7427779419367713e-09 - ArtUnc_96: 2.0710559073924454e-10 + StatMC: 4.69200000e-05 + RadErr: 6.23760000e-05 + Model_1: 8.60662090e-05 + Model_2: 8.60662090e-05 + ModelRW_1: 7.33807133e-05 + ModelRW_2: 7.33807133e-05 + JES_1: 7.17325938e-05 + JES_2: 7.17325938e-05 + ArtUnc_1: 5.02819393e-14 + ArtUnc_2: -7.93092386e-12 + ArtUnc_3: -3.50086341e-11 + ArtUnc_4: -9.00348196e-11 + ArtUnc_5: -3.14316177e-12 + ArtUnc_6: -2.62285487e-13 + ArtUnc_7: 2.49882723e-10 + ArtUnc_8: -7.09554458e-09 + ArtUnc_9: 1.72625620e-10 + ArtUnc_10: 9.46662438e-09 + ArtUnc_11: -1.87978898e-08 + ArtUnc_12: -1.54815879e-09 + ArtUnc_13: -4.13141153e-08 + ArtUnc_14: 1.23817204e-10 + ArtUnc_15: -5.99646759e-10 + ArtUnc_16: 4.23927446e-11 + ArtUnc_17: 3.80032286e-09 + ArtUnc_18: -1.16175696e-10 + ArtUnc_19: -9.20429735e-09 + ArtUnc_20: -3.29521590e-08 + ArtUnc_21: 1.70601904e-09 + ArtUnc_22: -3.15903240e-07 + ArtUnc_23: -6.30893585e-09 + ArtUnc_24: 1.72784945e-07 + ArtUnc_25: 1.38754721e-07 + ArtUnc_26: -2.95957911e-08 + ArtUnc_27: -6.59287565e-07 + ArtUnc_28: -2.49850060e-08 + ArtUnc_29: -3.12421401e-07 + ArtUnc_30: -1.28301200e-07 + ArtUnc_31: 5.32562357e-08 + ArtUnc_32: -1.55785796e-06 + ArtUnc_33: 1.86671606e-10 + ArtUnc_34: 3.43282929e-08 + ArtUnc_35: 1.56036408e-08 + ArtUnc_36: -3.41441233e-07 + ArtUnc_37: 6.32437823e-07 + ArtUnc_38: -1.13109627e-07 + ArtUnc_39: -5.43606112e-07 + ArtUnc_40: 9.94074321e-09 + ArtUnc_41: 2.72337221e-06 + ArtUnc_42: 3.52129734e-09 + ArtUnc_43: -3.22867872e-06 + ArtUnc_44: -1.13755915e-06 + ArtUnc_45: 1.86927783e-08 + ArtUnc_46: -4.70396035e-07 + ArtUnc_47: 1.78085468e-07 + ArtUnc_48: -6.88329111e-09 + ArtUnc_49: -5.56238191e-06 + ArtUnc_50: -1.15347488e-07 + ArtUnc_51: -1.02857521e-06 + ArtUnc_52: 3.03156097e-07 + ArtUnc_53: 6.97229008e-09 + ArtUnc_54: -8.43577282e-08 + ArtUnc_55: -1.31188178e-05 + ArtUnc_56: 8.33915348e-06 + ArtUnc_57: 2.36371441e-06 + ArtUnc_58: -2.22368606e-05 + ArtUnc_59: -4.69988172e-08 + ArtUnc_60: -2.26367164e-05 + ArtUnc_61: -3.13156287e-09 + ArtUnc_62: -8.57322661e-07 + ArtUnc_63: 9.54677489e-08 + ArtUnc_64: -4.34576297e-05 + ArtUnc_65: 1.67147457e-06 + ArtUnc_66: -5.06268887e-05 + ArtUnc_67: -1.66243911e-06 + ArtUnc_68: 3.18705216e-07 + ArtUnc_69: 4.13515626e-08 + ArtUnc_70: -2.95537980e-07 + ArtUnc_71: 2.72632503e-09 + ArtUnc_72: 1.36100403e-06 + ArtUnc_73: 1.02644209e-07 + ArtUnc_74: 5.69311430e-07 + ArtUnc_75: -1.70307818e-06 + ArtUnc_76: -6.26928401e-09 + ArtUnc_77: 8.64219008e-09 + ArtUnc_78: -3.36529681e-06 + ArtUnc_79: -1.84430929e-06 + ArtUnc_80: 9.49854345e-09 + ArtUnc_81: -9.35953236e-08 + ArtUnc_82: -5.06373981e-09 + ArtUnc_83: 1.67230987e-08 + ArtUnc_84: 1.25767800e-08 + ArtUnc_85: -5.99807436e-09 + ArtUnc_86: -1.43110521e-09 + ArtUnc_87: -1.05862073e-09 + ArtUnc_88: -1.50826836e-10 + ArtUnc_89: -3.94871825e-08 + ArtUnc_90: 1.83908995e-08 + ArtUnc_91: -1.22067027e-08 + ArtUnc_92: -3.95625891e-08 + ArtUnc_93: 2.22336048e-10 + ArtUnc_94: 1.64310224e-09 + ArtUnc_95: 2.74277794e-09 + ArtUnc_96: 2.07105591e-10 - stat: 0 Uncorr: 3.67e-06 - RCES: 2.5017316217971905e-06 - ElEn: 7.765411269855576e-06 - ElTh: 3.1216041433051692e-06 - Lumi: 2.8259e-06 - LArN: 1.835e-06 - StatMC: 1.82032e-05 - RadErr: 8.6612e-06 - Model_1: 3.18416547529333e-05 - Model_2: 3.18416547529333e-05 - ModelRW_1: 2.216199931459253e-05 - ModelRW_2: 2.216199931459253e-05 - JES_1: 1.9177795608593807e-05 - JES_2: 1.9177795608593807e-05 - ArtUnc_1: 3.1649572545798636e-16 - ArtUnc_2: -5.233577612250058e-14 - ArtUnc_3: 1.2009689584926394e-13 - ArtUnc_4: 5.277572473053857e-12 - ArtUnc_5: 1.9602452330203135e-13 - ArtUnc_6: 1.1950603216690673e-13 - ArtUnc_7: 1.177091946862514e-10 - ArtUnc_8: -1.4179526772949043e-09 - ArtUnc_9: 3.140778790121353e-11 - ArtUnc_10: 1.5709557509707463e-09 - ArtUnc_11: -3.1240802535447885e-09 - ArtUnc_12: -2.518727268235315e-10 - ArtUnc_13: -7.045050237369745e-09 - ArtUnc_14: -2.4889382837967554e-11 - ArtUnc_15: -6.151766026825989e-11 - ArtUnc_16: 5.582573905562612e-12 - ArtUnc_17: 3.960908745469827e-10 - ArtUnc_18: -1.2186192497896489e-11 - ArtUnc_19: -1.2867497103024744e-09 - ArtUnc_20: -4.035383590529554e-09 - ArtUnc_21: 2.330392107937851e-10 - ArtUnc_22: -4.487504907636002e-08 - ArtUnc_23: -7.936318198209268e-10 - ArtUnc_24: 2.371442818121514e-08 - ArtUnc_25: 1.574975239816285e-08 - ArtUnc_26: -4.309261165127264e-09 - ArtUnc_27: -9.7984030705831e-08 - ArtUnc_28: -4.944339987828451e-09 - ArtUnc_29: -5.412031033562565e-08 - ArtUnc_30: -2.2124207161280466e-08 - ArtUnc_31: 9.099620059241552e-09 - ArtUnc_32: -2.4212284907869234e-07 - ArtUnc_33: 7.643746265587136e-11 - ArtUnc_34: -2.531175015901532e-09 - ArtUnc_35: -4.649292937064408e-09 - ArtUnc_36: 2.1601831095153314e-10 - ArtUnc_37: 1.4995257681146108e-09 - ArtUnc_38: -1.5743773344953369e-10 - ArtUnc_39: 7.455873430691035e-09 - ArtUnc_40: -4.957949681526738e-11 - ArtUnc_41: -2.9637995206043367e-08 - ArtUnc_42: 1.4364644653972603e-09 - ArtUnc_43: 8.010985922253236e-08 - ArtUnc_44: 1.1402569191300257e-08 - ArtUnc_45: -4.70319844532275e-10 - ArtUnc_46: 1.0023033931634319e-08 - ArtUnc_47: 7.628779905008244e-09 - ArtUnc_48: -4.3229700830991953e-10 - ArtUnc_49: 3.164264343360258e-07 - ArtUnc_50: 1.244365852390118e-08 - ArtUnc_51: -5.759850014053632e-08 - ArtUnc_52: 4.17163704070633e-08 - ArtUnc_53: -2.931442056952663e-09 - ArtUnc_54: -3.5184202673116693e-09 - ArtUnc_55: -4.5051482319390554e-07 - ArtUnc_56: 4.7492041930752146e-07 - ArtUnc_57: 1.4149340622586435e-07 - ArtUnc_58: -5.06873105407668e-07 - ArtUnc_59: -4.014248528158959e-09 - ArtUnc_60: -6.525009893137404e-07 - ArtUnc_61: 7.476582192990769e-10 - ArtUnc_62: -6.224558013585522e-08 - ArtUnc_63: 5.947352900612051e-09 - ArtUnc_64: -4.6023902239792263e-07 - ArtUnc_65: 1.469646262779821e-08 - ArtUnc_66: -8.742215561408021e-07 - ArtUnc_67: 2.685437413470425e-07 - ArtUnc_68: -2.515600809491753e-08 - ArtUnc_69: -9.129200909773729e-08 - ArtUnc_70: 2.0080733355498856e-06 - ArtUnc_71: 2.981855795298056e-08 - ArtUnc_72: 1.2038558502867265e-06 - ArtUnc_73: -3.738286373691037e-09 - ArtUnc_74: 7.397192237967834e-06 - ArtUnc_75: -1.1239358915581491e-07 - ArtUnc_76: 1.9660642274449898e-07 - ArtUnc_77: 2.0281556677642994e-07 - ArtUnc_78: 1.2953754330491275e-05 - ArtUnc_79: -2.117380884707036e-05 - ArtUnc_80: 3.964956462254869e-07 - ArtUnc_81: 2.6821229728058613e-07 - ArtUnc_82: -5.169686328983974e-08 - ArtUnc_83: -1.592215483144535e-07 - ArtUnc_84: 7.311494935121575e-07 - ArtUnc_85: 2.9648856667801234e-09 - ArtUnc_86: -2.056962891334345e-08 - ArtUnc_87: -2.2139520866865153e-08 - ArtUnc_88: -3.832132486986376e-08 - ArtUnc_89: -9.456451570329005e-07 - ArtUnc_90: 2.959816264128777e-07 - ArtUnc_91: 1.36460411354434e-07 - ArtUnc_92: 1.6368869442189318e-06 - ArtUnc_93: -4.62625192359946e-09 - ArtUnc_94: -2.907941765743483e-08 - ArtUnc_95: 1.2467227997260188e-08 - ArtUnc_96: -9.500208452465233e-09 + RCES: 2.50173162e-06 + ElEn: 7.76541127e-06 + ElTh: 3.12160414e-06 + Lumi: 2.82590000e-06 + LArN: 1.83500000e-06 + StatMC: 1.82032000e-05 + RadErr: 8.66120000e-06 + Model_1: 3.18416548e-05 + Model_2: 3.18416548e-05 + ModelRW_1: 2.21619993e-05 + ModelRW_2: 2.21619993e-05 + JES_1: 1.91777956e-05 + JES_2: 1.91777956e-05 + ArtUnc_1: 3.16495725e-16 + ArtUnc_2: -5.23357761e-14 + ArtUnc_3: 1.20096896e-13 + ArtUnc_4: 5.27757247e-12 + ArtUnc_5: 1.96024523e-13 + ArtUnc_6: 1.19506032e-13 + ArtUnc_7: 1.17709195e-10 + ArtUnc_8: -1.41795268e-09 + ArtUnc_9: 3.14077879e-11 + ArtUnc_10: 1.57095575e-09 + ArtUnc_11: -3.12408025e-09 + ArtUnc_12: -2.51872727e-10 + ArtUnc_13: -7.04505024e-09 + ArtUnc_14: -2.48893828e-11 + ArtUnc_15: -6.15176603e-11 + ArtUnc_16: 5.58257391e-12 + ArtUnc_17: 3.96090875e-10 + ArtUnc_18: -1.21861925e-11 + ArtUnc_19: -1.28674971e-09 + ArtUnc_20: -4.03538359e-09 + ArtUnc_21: 2.33039211e-10 + ArtUnc_22: -4.48750491e-08 + ArtUnc_23: -7.93631820e-10 + ArtUnc_24: 2.37144282e-08 + ArtUnc_25: 1.57497524e-08 + ArtUnc_26: -4.30926117e-09 + ArtUnc_27: -9.79840307e-08 + ArtUnc_28: -4.94433999e-09 + ArtUnc_29: -5.41203103e-08 + ArtUnc_30: -2.21242072e-08 + ArtUnc_31: 9.09962006e-09 + ArtUnc_32: -2.42122849e-07 + ArtUnc_33: 7.64374627e-11 + ArtUnc_34: -2.53117502e-09 + ArtUnc_35: -4.64929294e-09 + ArtUnc_36: 2.16018311e-10 + ArtUnc_37: 1.49952577e-09 + ArtUnc_38: -1.57437733e-10 + ArtUnc_39: 7.45587343e-09 + ArtUnc_40: -4.95794968e-11 + ArtUnc_41: -2.96379952e-08 + ArtUnc_42: 1.43646447e-09 + ArtUnc_43: 8.01098592e-08 + ArtUnc_44: 1.14025692e-08 + ArtUnc_45: -4.70319845e-10 + ArtUnc_46: 1.00230339e-08 + ArtUnc_47: 7.62877991e-09 + ArtUnc_48: -4.32297008e-10 + ArtUnc_49: 3.16426434e-07 + ArtUnc_50: 1.24436585e-08 + ArtUnc_51: -5.75985001e-08 + ArtUnc_52: 4.17163704e-08 + ArtUnc_53: -2.93144206e-09 + ArtUnc_54: -3.51842027e-09 + ArtUnc_55: -4.50514823e-07 + ArtUnc_56: 4.74920419e-07 + ArtUnc_57: 1.41493406e-07 + ArtUnc_58: -5.06873105e-07 + ArtUnc_59: -4.01424853e-09 + ArtUnc_60: -6.52500989e-07 + ArtUnc_61: 7.47658219e-10 + ArtUnc_62: -6.22455801e-08 + ArtUnc_63: 5.94735290e-09 + ArtUnc_64: -4.60239022e-07 + ArtUnc_65: 1.46964626e-08 + ArtUnc_66: -8.74221556e-07 + ArtUnc_67: 2.68543741e-07 + ArtUnc_68: -2.51560081e-08 + ArtUnc_69: -9.12920091e-08 + ArtUnc_70: 2.00807334e-06 + ArtUnc_71: 2.98185580e-08 + ArtUnc_72: 1.20385585e-06 + ArtUnc_73: -3.73828637e-09 + ArtUnc_74: 7.39719224e-06 + ArtUnc_75: -1.12393589e-07 + ArtUnc_76: 1.96606423e-07 + ArtUnc_77: 2.02815567e-07 + ArtUnc_78: 1.29537543e-05 + ArtUnc_79: -2.11738088e-05 + ArtUnc_80: 3.96495646e-07 + ArtUnc_81: 2.68212297e-07 + ArtUnc_82: -5.16968633e-08 + ArtUnc_83: -1.59221548e-07 + ArtUnc_84: 7.31149494e-07 + ArtUnc_85: 2.96488567e-09 + ArtUnc_86: -2.05696289e-08 + ArtUnc_87: -2.21395209e-08 + ArtUnc_88: -3.83213249e-08 + ArtUnc_89: -9.45645157e-07 + ArtUnc_90: 2.95981626e-07 + ArtUnc_91: 1.36460411e-07 + ArtUnc_92: 1.63688694e-06 + ArtUnc_93: -4.62625192e-09 + ArtUnc_94: -2.90794177e-08 + ArtUnc_95: 1.24672280e-08 + ArtUnc_96: -9.50020845e-09 - stat: 0 Uncorr: 5.27e-07 - RCES: 9.789157990348303e-07 - ElEn: 2.1355988198395316e-06 - ElTh: 9.017823139067432e-07 - Lumi: 4.0579e-07 - LArN: 2.635e-07 - StatMC: 6.18171e-06 - RadErr: 1.65478e-06 - Model_1: 1.2073706867404062e-06 - Model_2: 1.2073706867404062e-06 - ModelRW_1: 1.6210069405311007e-06 - ModelRW_2: 1.6210069405311007e-06 - JES_1: 3.334895703817062e-06 - JES_2: 3.334895703817062e-06 - ArtUnc_1: 7.525551332810761e-19 - ArtUnc_2: 1.7011065060993183e-18 - ArtUnc_3: 2.2088374550225672e-17 - ArtUnc_4: 1.2241962774379785e-16 - ArtUnc_5: 4.140643639484835e-18 - ArtUnc_6: 1.838631669346577e-18 - ArtUnc_7: 4.662605559246975e-16 - ArtUnc_8: 3.6959069714146945e-15 - ArtUnc_9: 4.1228378670082187e-17 - ArtUnc_10: -1.6732250973069617e-14 - ArtUnc_11: 2.906247935746357e-14 - ArtUnc_12: 2.07354682755585e-15 - ArtUnc_13: 1.0956125714146772e-13 - ArtUnc_14: -7.645551038861831e-16 - ArtUnc_15: 4.445232595615555e-15 - ArtUnc_16: -2.675054665071818e-16 - ArtUnc_17: -6.686565834819298e-15 - ArtUnc_18: 1.8429779658553334e-16 - ArtUnc_19: 5.3093938955127536e-14 - ArtUnc_20: 1.6034412809324093e-13 - ArtUnc_21: -9.114499216275052e-15 - ArtUnc_22: 2.8160976159407595e-12 - ArtUnc_23: 5.926044542417139e-14 - ArtUnc_24: -1.9827743594159214e-12 - ArtUnc_25: -2.8747873249342066e-13 - ArtUnc_26: 1.6040258231256255e-13 - ArtUnc_27: 8.751908398152517e-12 - ArtUnc_28: 3.243057790862044e-13 - ArtUnc_29: 6.553866976012681e-12 - ArtUnc_30: 2.568968732178255e-12 - ArtUnc_31: -1.0753638369503453e-12 - ArtUnc_32: 4.1544951068356036e-11 - ArtUnc_33: -1.7348277059421816e-15 - ArtUnc_34: -1.5040569541908268e-12 - ArtUnc_35: -7.984848532209664e-13 - ArtUnc_36: 2.4281165361617614e-11 - ArtUnc_37: -4.750445954573314e-11 - ArtUnc_38: 9.352170382692404e-12 - ArtUnc_39: 5.0030111451300346e-11 - ArtUnc_40: -9.794687305802967e-13 - ArtUnc_41: -3.384009666384961e-10 - ArtUnc_42: 9.145350864578396e-12 - ArtUnc_43: 5.444991103342456e-10 - ArtUnc_44: 2.164790135155239e-10 - ArtUnc_45: -5.036337921055136e-12 - ArtUnc_46: 7.572012011880331e-11 - ArtUnc_47: 1.3122931491457895e-11 - ArtUnc_48: -1.6235023239829938e-12 - ArtUnc_49: 1.4463868992619182e-09 - ArtUnc_50: 6.487919379608554e-11 - ArtUnc_51: 2.564045270519593e-10 - ArtUnc_52: -1.9086491770607894e-11 - ArtUnc_53: -6.004925716718752e-11 - ArtUnc_54: 1.3528719560799027e-11 - ArtUnc_55: 1.1799485815545221e-08 - ArtUnc_56: -9.975340208781463e-09 - ArtUnc_57: -2.2521217812471348e-09 - ArtUnc_58: 2.804699758441273e-08 - ArtUnc_59: 2.2103976595410218e-10 - ArtUnc_60: 3.3649817451941395e-08 - ArtUnc_61: 1.1740658032824714e-10 - ArtUnc_62: -2.402339850854667e-09 - ArtUnc_63: 1.7391658748525373e-10 - ArtUnc_64: 8.89274434058841e-08 - ArtUnc_65: -4.7974890767402026e-09 - ArtUnc_66: 1.22364516968084e-07 - ArtUnc_67: 3.040652579547578e-08 - ArtUnc_68: -6.862203540163716e-09 - ArtUnc_69: -7.665774654289796e-09 - ArtUnc_70: 1.480625126632594e-07 - ArtUnc_71: 2.0979076256282548e-09 - ArtUnc_72: 5.122209600702832e-08 - ArtUnc_73: 1.3362480636831328e-10 - ArtUnc_74: 2.717582622135473e-07 - ArtUnc_75: -4.951873092024478e-08 - ArtUnc_76: 3.198076745946251e-09 - ArtUnc_77: 1.1602659070872547e-08 - ArtUnc_78: 2.0132775223619658e-07 - ArtUnc_79: -3.7306664299767404e-07 - ArtUnc_80: 5.992296682747596e-09 - ArtUnc_81: -4.792623496419435e-09 - ArtUnc_82: -1.0624184782695466e-09 - ArtUnc_83: 9.610625844064377e-08 - ArtUnc_84: -1.2694396721333717e-07 - ArtUnc_85: -6.457187616301097e-07 - ArtUnc_86: -2.9317899929255475e-07 - ArtUnc_87: -3.9372117306839423e-07 - ArtUnc_88: 4.955158818554302e-08 - ArtUnc_89: 1.8185695363269428e-07 - ArtUnc_90: 1.097358450627666e-06 - ArtUnc_91: -6.7007103400230265e-06 - ArtUnc_92: -4.1782353724083415e-08 - ArtUnc_93: 6.93294384753824e-08 - ArtUnc_94: 1.1183383282743e-07 - ArtUnc_95: -2.9181645166768758e-06 - ArtUnc_96: -6.066089548558399e-07 + RCES: 9.78915799e-07 + ElEn: 2.13559882e-06 + ElTh: 9.01782314e-07 + Lumi: 4.05790000e-07 + LArN: 2.63500000e-07 + StatMC: 6.18171000e-06 + RadErr: 1.65478000e-06 + Model_1: 1.20737069e-06 + Model_2: 1.20737069e-06 + ModelRW_1: 1.62100694e-06 + ModelRW_2: 1.62100694e-06 + JES_1: 3.33489570e-06 + JES_2: 3.33489570e-06 + ArtUnc_1: 7.52555133e-19 + ArtUnc_2: 1.70110651e-18 + ArtUnc_3: 2.20883746e-17 + ArtUnc_4: 1.22419628e-16 + ArtUnc_5: 4.14064364e-18 + ArtUnc_6: 1.83863167e-18 + ArtUnc_7: 4.66260556e-16 + ArtUnc_8: 3.69590697e-15 + ArtUnc_9: 4.12283787e-17 + ArtUnc_10: -1.67322510e-14 + ArtUnc_11: 2.90624794e-14 + ArtUnc_12: 2.07354683e-15 + ArtUnc_13: 1.09561257e-13 + ArtUnc_14: -7.64555104e-16 + ArtUnc_15: 4.44523260e-15 + ArtUnc_16: -2.67505467e-16 + ArtUnc_17: -6.68656583e-15 + ArtUnc_18: 1.84297797e-16 + ArtUnc_19: 5.30939390e-14 + ArtUnc_20: 1.60344128e-13 + ArtUnc_21: -9.11449922e-15 + ArtUnc_22: 2.81609762e-12 + ArtUnc_23: 5.92604454e-14 + ArtUnc_24: -1.98277436e-12 + ArtUnc_25: -2.87478732e-13 + ArtUnc_26: 1.60402582e-13 + ArtUnc_27: 8.75190840e-12 + ArtUnc_28: 3.24305779e-13 + ArtUnc_29: 6.55386698e-12 + ArtUnc_30: 2.56896873e-12 + ArtUnc_31: -1.07536384e-12 + ArtUnc_32: 4.15449511e-11 + ArtUnc_33: -1.73482771e-15 + ArtUnc_34: -1.50405695e-12 + ArtUnc_35: -7.98484853e-13 + ArtUnc_36: 2.42811654e-11 + ArtUnc_37: -4.75044595e-11 + ArtUnc_38: 9.35217038e-12 + ArtUnc_39: 5.00301115e-11 + ArtUnc_40: -9.79468731e-13 + ArtUnc_41: -3.38400967e-10 + ArtUnc_42: 9.14535086e-12 + ArtUnc_43: 5.44499110e-10 + ArtUnc_44: 2.16479014e-10 + ArtUnc_45: -5.03633792e-12 + ArtUnc_46: 7.57201201e-11 + ArtUnc_47: 1.31229315e-11 + ArtUnc_48: -1.62350232e-12 + ArtUnc_49: 1.44638690e-09 + ArtUnc_50: 6.48791938e-11 + ArtUnc_51: 2.56404527e-10 + ArtUnc_52: -1.90864918e-11 + ArtUnc_53: -6.00492572e-11 + ArtUnc_54: 1.35287196e-11 + ArtUnc_55: 1.17994858e-08 + ArtUnc_56: -9.97534021e-09 + ArtUnc_57: -2.25212178e-09 + ArtUnc_58: 2.80469976e-08 + ArtUnc_59: 2.21039766e-10 + ArtUnc_60: 3.36498175e-08 + ArtUnc_61: 1.17406580e-10 + ArtUnc_62: -2.40233985e-09 + ArtUnc_63: 1.73916587e-10 + ArtUnc_64: 8.89274434e-08 + ArtUnc_65: -4.79748908e-09 + ArtUnc_66: 1.22364517e-07 + ArtUnc_67: 3.04065258e-08 + ArtUnc_68: -6.86220354e-09 + ArtUnc_69: -7.66577465e-09 + ArtUnc_70: 1.48062513e-07 + ArtUnc_71: 2.09790763e-09 + ArtUnc_72: 5.12220960e-08 + ArtUnc_73: 1.33624806e-10 + ArtUnc_74: 2.71758262e-07 + ArtUnc_75: -4.95187309e-08 + ArtUnc_76: 3.19807675e-09 + ArtUnc_77: 1.16026591e-08 + ArtUnc_78: 2.01327752e-07 + ArtUnc_79: -3.73066643e-07 + ArtUnc_80: 5.99229668e-09 + ArtUnc_81: -4.79262350e-09 + ArtUnc_82: -1.06241848e-09 + ArtUnc_83: 9.61062584e-08 + ArtUnc_84: -1.26943967e-07 + ArtUnc_85: -6.45718762e-07 + ArtUnc_86: -2.93178999e-07 + ArtUnc_87: -3.93721173e-07 + ArtUnc_88: 4.95515882e-08 + ArtUnc_89: 1.81856954e-07 + ArtUnc_90: 1.09735845e-06 + ArtUnc_91: -6.70071034e-06 + ArtUnc_92: -4.17823537e-08 + ArtUnc_93: 6.93294385e-08 + ArtUnc_94: 1.11833833e-07 + ArtUnc_95: -2.91816452e-06 + ArtUnc_96: -6.06608955e-07 - stat: 0 Uncorr: 0.00161 - RCES: 0.0056028 - ElEn: 0.0006854800708262787 - ElTh: 0.00011831035457642752 - Lumi: 0.0012397 + RCES: 5.60280000e-03 + ElEn: 6.85480071e-04 + ElTh: 1.18310355e-04 + Lumi: 1.23970000e-03 LArN: 0.000805 - StatMC: 0.0018353999999999998 - RadErr: 0.0005152000000000001 - Model_1: 0.0044513078982474355 - Model_2: 0.0044513078982474355 - ModelRW_1: 0.0033584036572455074 - ModelRW_2: 0.0033584036572455074 - JES_1: 0.0010904110555198896 - JES_2: 0.0010904110555198896 - ArtUnc_1: -5.184077555533741e-09 - ArtUnc_2: 1.1677814854411006e-06 - ArtUnc_3: 6.484945269315138e-06 - ArtUnc_4: 2.9607766166695967e-05 - ArtUnc_5: 1.026009764528549e-06 - ArtUnc_6: 2.662512931754971e-07 - ArtUnc_7: 0.00019243537417088093 - ArtUnc_8: -0.0010127354200840388 - ArtUnc_9: 1.8484503325499536e-05 - ArtUnc_10: 0.00048367113275177076 - ArtUnc_11: -0.0010003494842459083 - ArtUnc_12: -8.105091416697253e-05 - ArtUnc_13: -0.001560303726292504 - ArtUnc_14: -1.3124683464170857e-05 - ArtUnc_15: -2.2591533427100417e-06 - ArtUnc_16: 5.817826599619027e-07 - ArtUnc_17: -1.1337540775553265e-06 - ArtUnc_18: 2.987029686372386e-09 - ArtUnc_19: -4.885827276898941e-06 - ArtUnc_20: 5.46036666714073e-06 - ArtUnc_21: -1.9999995328938429e-07 - ArtUnc_22: 1.127622547801492e-05 - ArtUnc_23: 2.4150688771514286e-07 - ArtUnc_24: -1.8699348321426944e-05 - ArtUnc_25: -8.703721396487673e-06 - ArtUnc_26: -5.289837150206431e-07 - ArtUnc_27: 2.092744305624243e-05 - ArtUnc_28: 1.1909023961737446e-06 - ArtUnc_29: -1.376509661274837e-07 - ArtUnc_30: 2.320036287223341e-06 - ArtUnc_31: -9.390934551493554e-07 - ArtUnc_32: 5.260444912495629e-05 - ArtUnc_33: -2.0294766714438776e-08 - ArtUnc_34: 6.195759482581024e-07 - ArtUnc_35: 9.550353952130143e-07 - ArtUnc_36: 3.729841789513544e-08 - ArtUnc_37: -8.01872132902217e-07 - ArtUnc_38: 1.3985486051409333e-07 - ArtUnc_39: -6.047222284831918e-07 - ArtUnc_40: -2.4299704067528574e-09 - ArtUnc_41: 1.4240506631795265e-07 - ArtUnc_42: 1.7631994306664332e-09 - ArtUnc_43: -3.8265962551438614e-07 - ArtUnc_44: 5.247038576006126e-07 - ArtUnc_45: -2.189129079051947e-09 - ArtUnc_46: -1.44380724631698e-08 - ArtUnc_47: 1.3171349073524332e-08 - ArtUnc_48: -2.7911157642128274e-10 - ArtUnc_49: -1.2825201759836507e-06 - ArtUnc_50: -3.951216736568954e-08 - ArtUnc_51: 4.224301304456062e-09 - ArtUnc_52: 6.753685855579711e-09 - ArtUnc_53: -1.0953565605415092e-09 - ArtUnc_54: 5.61711527514032e-10 - ArtUnc_55: -1.782027436821851e-08 - ArtUnc_56: -1.2209974055510724e-09 - ArtUnc_57: -4.019287354508974e-10 - ArtUnc_58: -4.213685453428593e-09 - ArtUnc_59: 1.2091701533994065e-10 - ArtUnc_60: -8.476923147507564e-09 - ArtUnc_61: 2.7460661768004776e-11 - ArtUnc_62: -2.362711917216108e-10 - ArtUnc_63: 1.9836546306819357e-11 - ArtUnc_64: -6.466304591781763e-08 - ArtUnc_65: 1.114451854006085e-09 - ArtUnc_66: 4.576488071035876e-08 - ArtUnc_67: 5.587580325253636e-10 - ArtUnc_68: -6.110199357284909e-10 - ArtUnc_69: -1.7776037748956474e-11 - ArtUnc_70: 2.105310448338427e-10 - ArtUnc_71: 2.036025074802777e-12 - ArtUnc_72: 5.932777335713569e-10 - ArtUnc_73: 4.2800168813375514e-11 - ArtUnc_74: 8.421436948084789e-11 - ArtUnc_75: -9.046981473561437e-10 - ArtUnc_76: -8.711386866030128e-12 - ArtUnc_77: -8.783496744864512e-12 - ArtUnc_78: 1.1157174486688844e-09 - ArtUnc_79: -6.647586284951538e-10 - ArtUnc_80: 2.5056554750015145e-12 - ArtUnc_81: 2.9053533657378786e-11 - ArtUnc_82: -1.6143113427655448e-12 - ArtUnc_83: -1.3792892516033813e-11 - ArtUnc_84: 2.55994988468569e-11 - ArtUnc_85: -4.1136523479301395e-13 - ArtUnc_86: 3.0054805505082905e-12 - ArtUnc_87: 3.6273406321135882e-12 - ArtUnc_88: -2.8013289475797947e-12 - ArtUnc_89: -1.9168249548640208e-11 - ArtUnc_90: -1.7317335682249917e-11 - ArtUnc_91: -2.0340718509920277e-12 - ArtUnc_92: 7.107882979360044e-11 - ArtUnc_93: -1.982403558075022e-12 - ArtUnc_94: -8.498361675632596e-13 - ArtUnc_95: 3.0305793135593906e-11 - ArtUnc_96: 4.905247241945646e-12 + StatMC: 1.83540000e-03 + RadErr: 5.15200000e-04 + Model_1: 4.45130790e-03 + Model_2: 4.45130790e-03 + ModelRW_1: 3.35840366e-03 + ModelRW_2: 3.35840366e-03 + JES_1: 1.09041106e-03 + JES_2: 1.09041106e-03 + ArtUnc_1: -5.18407756e-09 + ArtUnc_2: 1.16778149e-06 + ArtUnc_3: 6.48494527e-06 + ArtUnc_4: 2.96077662e-05 + ArtUnc_5: 1.02600976e-06 + ArtUnc_6: 2.66251293e-07 + ArtUnc_7: 1.92435374e-04 + ArtUnc_8: -1.01273542e-03 + ArtUnc_9: 1.84845033e-05 + ArtUnc_10: 4.83671133e-04 + ArtUnc_11: -1.00034948e-03 + ArtUnc_12: -8.10509142e-05 + ArtUnc_13: -1.56030373e-03 + ArtUnc_14: -1.31246835e-05 + ArtUnc_15: -2.25915334e-06 + ArtUnc_16: 5.81782660e-07 + ArtUnc_17: -1.13375408e-06 + ArtUnc_18: 2.98702969e-09 + ArtUnc_19: -4.88582728e-06 + ArtUnc_20: 5.46036667e-06 + ArtUnc_21: -1.99999953e-07 + ArtUnc_22: 1.12762255e-05 + ArtUnc_23: 2.41506888e-07 + ArtUnc_24: -1.86993483e-05 + ArtUnc_25: -8.70372140e-06 + ArtUnc_26: -5.28983715e-07 + ArtUnc_27: 2.09274431e-05 + ArtUnc_28: 1.19090240e-06 + ArtUnc_29: -1.37650966e-07 + ArtUnc_30: 2.32003629e-06 + ArtUnc_31: -9.39093455e-07 + ArtUnc_32: 5.26044491e-05 + ArtUnc_33: -2.02947667e-08 + ArtUnc_34: 6.19575948e-07 + ArtUnc_35: 9.55035395e-07 + ArtUnc_36: 3.72984179e-08 + ArtUnc_37: -8.01872133e-07 + ArtUnc_38: 1.39854861e-07 + ArtUnc_39: -6.04722228e-07 + ArtUnc_40: -2.42997041e-09 + ArtUnc_41: 1.42405066e-07 + ArtUnc_42: 1.76319943e-09 + ArtUnc_43: -3.82659626e-07 + ArtUnc_44: 5.24703858e-07 + ArtUnc_45: -2.18912908e-09 + ArtUnc_46: -1.44380725e-08 + ArtUnc_47: 1.31713491e-08 + ArtUnc_48: -2.79111576e-10 + ArtUnc_49: -1.28252018e-06 + ArtUnc_50: -3.95121674e-08 + ArtUnc_51: 4.22430130e-09 + ArtUnc_52: 6.75368586e-09 + ArtUnc_53: -1.09535656e-09 + ArtUnc_54: 5.61711528e-10 + ArtUnc_55: -1.78202744e-08 + ArtUnc_56: -1.22099741e-09 + ArtUnc_57: -4.01928735e-10 + ArtUnc_58: -4.21368545e-09 + ArtUnc_59: 1.20917015e-10 + ArtUnc_60: -8.47692315e-09 + ArtUnc_61: 2.74606618e-11 + ArtUnc_62: -2.36271192e-10 + ArtUnc_63: 1.98365463e-11 + ArtUnc_64: -6.46630459e-08 + ArtUnc_65: 1.11445185e-09 + ArtUnc_66: 4.57648807e-08 + ArtUnc_67: 5.58758033e-10 + ArtUnc_68: -6.11019936e-10 + ArtUnc_69: -1.77760377e-11 + ArtUnc_70: 2.10531045e-10 + ArtUnc_71: 2.03602507e-12 + ArtUnc_72: 5.93277734e-10 + ArtUnc_73: 4.28001688e-11 + ArtUnc_74: 8.42143695e-11 + ArtUnc_75: -9.04698147e-10 + ArtUnc_76: -8.71138687e-12 + ArtUnc_77: -8.78349674e-12 + ArtUnc_78: 1.11571745e-09 + ArtUnc_79: -6.64758628e-10 + ArtUnc_80: 2.50565548e-12 + ArtUnc_81: 2.90535337e-11 + ArtUnc_82: -1.61431134e-12 + ArtUnc_83: -1.37928925e-11 + ArtUnc_84: 2.55994988e-11 + ArtUnc_85: -4.11365235e-13 + ArtUnc_86: 3.00548055e-12 + ArtUnc_87: 3.62734063e-12 + ArtUnc_88: -2.80132895e-12 + ArtUnc_89: -1.91682495e-11 + ArtUnc_90: -1.73173357e-11 + ArtUnc_91: -2.03407185e-12 + ArtUnc_92: 7.10788298e-11 + ArtUnc_93: -1.98240356e-12 + ArtUnc_94: -8.49836168e-13 + ArtUnc_95: 3.03057931e-11 + ArtUnc_96: 4.90524724e-12 - stat: 0 Uncorr: 0.000661 - RCES: 0.0027269274408021934 - ElEn: 0.00016388934826583454 - ElTh: 0.00025506378986441805 - Lumi: 0.0005089700000000001 - LArN: 0.0003305 - StatMC: 0.00063456 - RadErr: 0.0001983 - Model_1: 0.0010750144394379082 - Model_2: 0.0010750144394379082 - ModelRW_1: 0.002210790564583177 - ModelRW_2: 0.002210790564583177 - JES_1: 0.0029675955533225887 - JES_2: 0.0029675955533225887 - ArtUnc_1: 9.753547439539828e-11 - ArtUnc_2: -6.227372784156302e-09 - ArtUnc_3: 1.708759179124174e-08 - ArtUnc_4: 4.319110708990544e-07 - ArtUnc_5: 1.55443369537763e-08 - ArtUnc_6: 7.296344354538225e-09 - ArtUnc_7: 6.5460003475791674e-06 - ArtUnc_8: -5.7244761028330045e-05 - ArtUnc_9: 1.186505533190126e-06 - ArtUnc_10: 4.336442172324861e-05 - ArtUnc_11: -8.82617970058097e-05 - ArtUnc_12: -7.2030212472301245e-06 - ArtUnc_13: -0.00015235000980223684 - ArtUnc_14: -4.796339927814513e-07 - ArtUnc_15: -1.0309022261121442e-06 - ArtUnc_16: 9.39159190546805e-08 - ArtUnc_17: 5.141719307884341e-06 - ArtUnc_18: -1.6788426091245276e-07 - ArtUnc_19: -1.2964071120157313e-05 - ArtUnc_20: -3.0078776123106327e-05 - ArtUnc_21: 1.492529708589883e-06 - ArtUnc_22: -0.00023554744594108016 - ArtUnc_23: -3.676078550964621e-06 - ArtUnc_24: 0.00010267558870354524 - ArtUnc_25: 6.497741781847948e-05 - ArtUnc_26: -1.8235778533686426e-05 - ArtUnc_27: -0.00032423701033369213 - ArtUnc_28: -1.4688165452177336e-05 - ArtUnc_29: -0.0001522793414196557 - ArtUnc_30: -5.9820840239537066e-05 - ArtUnc_31: 2.457065364193579e-05 - ArtUnc_32: -0.000504650218600457 - ArtUnc_33: 1.7699603926293156e-07 - ArtUnc_34: -4.924692061993343e-06 - ArtUnc_35: -7.714627557624232e-06 - ArtUnc_36: -2.2392528805489359e-07 - ArtUnc_37: 6.411402027397098e-06 - ArtUnc_38: -1.1162652040395937e-06 - ArtUnc_39: -1.1430952119947765e-06 - ArtUnc_40: -6.748838465346753e-08 - ArtUnc_41: -2.3494255885952587e-06 - ArtUnc_42: -3.555146864871654e-08 - ArtUnc_43: 4.703836380515194e-06 - ArtUnc_44: -1.0566857235536604e-05 - ArtUnc_45: 4.4945124539397075e-08 - ArtUnc_46: -2.4857258556887034e-08 - ArtUnc_47: -1.6350369399770955e-07 - ArtUnc_48: 1.0292275806389106e-08 - ArtUnc_49: 1.4375919532156121e-05 - ArtUnc_50: 4.584058390843983e-07 - ArtUnc_51: -2.5943913798833367e-08 - ArtUnc_52: -3.026087152871613e-08 - ArtUnc_53: 5.632813063282722e-09 - ArtUnc_54: -3.4802714012223778e-09 - ArtUnc_55: 1.3420913257163547e-07 - ArtUnc_56: -1.919451231774332e-08 - ArtUnc_57: -4.460334623172426e-09 - ArtUnc_58: 1.8572987929047742e-07 - ArtUnc_59: -1.5232168649282663e-09 - ArtUnc_60: 2.412302921897371e-08 - ArtUnc_61: -1.7882848468633827e-10 - ArtUnc_62: 1.7966622080932891e-09 - ArtUnc_63: -1.5714942133352477e-10 - ArtUnc_64: 6.671627784511517e-07 - ArtUnc_65: -1.025189755352918e-08 - ArtUnc_66: -4.632156231862248e-07 - ArtUnc_67: -6.161588354153124e-09 - ArtUnc_68: 6.201726802224839e-09 - ArtUnc_69: 2.1346750028956372e-10 - ArtUnc_70: -2.4861479308310165e-09 - ArtUnc_71: -2.787441481271272e-11 - ArtUnc_72: -7.099604145631049e-09 - ArtUnc_73: -5.6861308517293e-10 - ArtUnc_74: -1.4292003880250983e-09 - ArtUnc_75: 1.0248505960157929e-08 - ArtUnc_76: 1.0475918137984441e-10 - ArtUnc_77: 5.677704383775364e-11 - ArtUnc_78: -1.2579885201608965e-08 - ArtUnc_79: 7.794043392189298e-09 - ArtUnc_80: -7.579711414801293e-11 - ArtUnc_81: -3.430852531169544e-10 - ArtUnc_82: 1.775117049089012e-11 - ArtUnc_83: 1.675001844948761e-10 - ArtUnc_84: -3.033136767965014e-10 - ArtUnc_85: 4.20039384186154e-12 - ArtUnc_86: -2.7784398976116623e-11 - ArtUnc_87: -3.283629617375756e-11 - ArtUnc_88: 3.125116211259143e-11 - ArtUnc_89: 2.877883598046601e-10 - ArtUnc_90: 1.536643881776656e-10 - ArtUnc_91: 1.5183076375485108e-11 - ArtUnc_92: -7.963922779568559e-10 - ArtUnc_93: 1.8540106738393557e-11 - ArtUnc_94: 1.3093416286191433e-11 - ArtUnc_95: -3.1596399642754e-10 - ArtUnc_96: -5.1872171587344076e-11 + RCES: 2.72692744e-03 + ElEn: 1.63889348e-04 + ElTh: 2.55063790e-04 + Lumi: 5.08970000e-04 + LArN: 3.30500000e-04 + StatMC: 6.34560000e-04 + RadErr: 1.98300000e-04 + Model_1: 1.07501444e-03 + Model_2: 1.07501444e-03 + ModelRW_1: 2.21079056e-03 + ModelRW_2: 2.21079056e-03 + JES_1: 2.96759555e-03 + JES_2: 2.96759555e-03 + ArtUnc_1: 9.75354744e-11 + ArtUnc_2: -6.22737278e-09 + ArtUnc_3: 1.70875918e-08 + ArtUnc_4: 4.31911071e-07 + ArtUnc_5: 1.55443370e-08 + ArtUnc_6: 7.29634435e-09 + ArtUnc_7: 6.54600035e-06 + ArtUnc_8: -5.72447610e-05 + ArtUnc_9: 1.18650553e-06 + ArtUnc_10: 4.33644217e-05 + ArtUnc_11: -8.82617970e-05 + ArtUnc_12: -7.20302125e-06 + ArtUnc_13: -1.52350010e-04 + ArtUnc_14: -4.79633993e-07 + ArtUnc_15: -1.03090223e-06 + ArtUnc_16: 9.39159191e-08 + ArtUnc_17: 5.14171931e-06 + ArtUnc_18: -1.67884261e-07 + ArtUnc_19: -1.29640711e-05 + ArtUnc_20: -3.00787761e-05 + ArtUnc_21: 1.49252971e-06 + ArtUnc_22: -2.35547446e-04 + ArtUnc_23: -3.67607855e-06 + ArtUnc_24: 1.02675589e-04 + ArtUnc_25: 6.49774178e-05 + ArtUnc_26: -1.82357785e-05 + ArtUnc_27: -3.24237010e-04 + ArtUnc_28: -1.46881655e-05 + ArtUnc_29: -1.52279341e-04 + ArtUnc_30: -5.98208402e-05 + ArtUnc_31: 2.45706536e-05 + ArtUnc_32: -5.04650219e-04 + ArtUnc_33: 1.76996039e-07 + ArtUnc_34: -4.92469206e-06 + ArtUnc_35: -7.71462756e-06 + ArtUnc_36: -2.23925288e-07 + ArtUnc_37: 6.41140203e-06 + ArtUnc_38: -1.11626520e-06 + ArtUnc_39: -1.14309521e-06 + ArtUnc_40: -6.74883847e-08 + ArtUnc_41: -2.34942559e-06 + ArtUnc_42: -3.55514686e-08 + ArtUnc_43: 4.70383638e-06 + ArtUnc_44: -1.05668572e-05 + ArtUnc_45: 4.49451245e-08 + ArtUnc_46: -2.48572586e-08 + ArtUnc_47: -1.63503694e-07 + ArtUnc_48: 1.02922758e-08 + ArtUnc_49: 1.43759195e-05 + ArtUnc_50: 4.58405839e-07 + ArtUnc_51: -2.59439138e-08 + ArtUnc_52: -3.02608715e-08 + ArtUnc_53: 5.63281306e-09 + ArtUnc_54: -3.48027140e-09 + ArtUnc_55: 1.34209133e-07 + ArtUnc_56: -1.91945123e-08 + ArtUnc_57: -4.46033462e-09 + ArtUnc_58: 1.85729879e-07 + ArtUnc_59: -1.52321686e-09 + ArtUnc_60: 2.41230292e-08 + ArtUnc_61: -1.78828485e-10 + ArtUnc_62: 1.79666221e-09 + ArtUnc_63: -1.57149421e-10 + ArtUnc_64: 6.67162778e-07 + ArtUnc_65: -1.02518976e-08 + ArtUnc_66: -4.63215623e-07 + ArtUnc_67: -6.16158835e-09 + ArtUnc_68: 6.20172680e-09 + ArtUnc_69: 2.13467500e-10 + ArtUnc_70: -2.48614793e-09 + ArtUnc_71: -2.78744148e-11 + ArtUnc_72: -7.09960415e-09 + ArtUnc_73: -5.68613085e-10 + ArtUnc_74: -1.42920039e-09 + ArtUnc_75: 1.02485060e-08 + ArtUnc_76: 1.04759181e-10 + ArtUnc_77: 5.67770438e-11 + ArtUnc_78: -1.25798852e-08 + ArtUnc_79: 7.79404339e-09 + ArtUnc_80: -7.57971141e-11 + ArtUnc_81: -3.43085253e-10 + ArtUnc_82: 1.77511705e-11 + ArtUnc_83: 1.67500184e-10 + ArtUnc_84: -3.03313677e-10 + ArtUnc_85: 4.20039384e-12 + ArtUnc_86: -2.77843990e-11 + ArtUnc_87: -3.28362962e-11 + ArtUnc_88: 3.12511621e-11 + ArtUnc_89: 2.87788360e-10 + ArtUnc_90: 1.53664388e-10 + ArtUnc_91: 1.51830764e-11 + ArtUnc_92: -7.96392278e-10 + ArtUnc_93: 1.85401067e-11 + ArtUnc_94: 1.30934163e-11 + ArtUnc_95: -3.15963996e-10 + ArtUnc_96: -5.18721716e-11 - stat: 0 Uncorr: 0.000182 - RCES: 0.00026041268248685583 - ElEn: 3.309949093264124e-05 - ElTh: 3.012636055018927e-05 - Lumi: 0.00014014 + RCES: 2.60412682e-04 + ElEn: 3.30994909e-05 + ElTh: 3.01263606e-05 + Lumi: 1.40140000e-04 LArN: 9.1e-05 - StatMC: 0.00017472 - RadErr: 0.0001274 - Model_1: 0.0005932767315511372 - Model_2: 0.0005932767315511372 - ModelRW_1: 0.0006782143981072652 - ModelRW_2: 0.0006782143981072652 - JES_1: 0.000494576418968798 - JES_2: 0.000494576418968798 - ArtUnc_1: 7.051224216026941e-11 - ArtUnc_2: -1.3977675181295216e-08 - ArtUnc_3: -7.119561085981802e-08 - ArtUnc_4: -2.8058198438083383e-07 - ArtUnc_5: -9.59221642205358e-09 - ArtUnc_6: -2.02978998101931e-09 - ArtUnc_7: -1.3472556520548992e-06 - ArtUnc_8: 4.150934493663712e-06 - ArtUnc_9: -5.952842188927762e-08 - ArtUnc_10: 5.438010394919081e-08 - ArtUnc_11: 7.05979688352413e-08 - ArtUnc_12: 9.139260861476654e-09 - ArtUnc_13: -1.2790170539615633e-06 - ArtUnc_14: 2.5617408347870514e-08 - ArtUnc_15: -1.9841482618095413e-08 - ArtUnc_16: 1.6198073526381094e-10 - ArtUnc_17: 2.3983235953556213e-07 - ArtUnc_18: -7.139715679976194e-09 - ArtUnc_19: -7.286802604846646e-07 - ArtUnc_20: -1.534583304142478e-06 - ArtUnc_21: 9.112349277463271e-08 - ArtUnc_22: -1.3098744061619803e-05 - ArtUnc_23: -2.3664354657076953e-07 - ArtUnc_24: 5.656671937789673e-06 - ArtUnc_25: 7.335671792195338e-06 - ArtUnc_26: -1.4577249046427076e-06 - ArtUnc_27: -2.2342813730992484e-05 - ArtUnc_28: -9.32741641681257e-07 - ArtUnc_29: -3.5711130448348982e-06 - ArtUnc_30: -2.3298242139567014e-06 - ArtUnc_31: 9.539461832991869e-07 - ArtUnc_32: -3.365468085499373e-05 - ArtUnc_33: 1.0814802950801851e-08 - ArtUnc_34: 5.098518791699796e-07 - ArtUnc_35: 7.814559505928643e-07 - ArtUnc_36: -6.442488936637111e-06 - ArtUnc_37: 1.9979813786580084e-05 - ArtUnc_38: -3.559577279397605e-06 - ArtUnc_39: -2.0489934740514652e-05 - ArtUnc_40: 3.024895811611956e-08 - ArtUnc_41: 6.08972888844798e-05 - ArtUnc_42: -3.780216667070498e-07 - ArtUnc_43: -8.955261597295062e-05 - ArtUnc_44: -4.8024390229445863e-05 - ArtUnc_45: 6.222098420543644e-07 - ArtUnc_46: -1.368795153262544e-05 - ArtUnc_47: 9.264014209204773e-07 - ArtUnc_48: 1.6094043163831705e-08 - ArtUnc_49: -0.00017973388342818443 - ArtUnc_50: -4.459666900137267e-06 - ArtUnc_51: 2.038050437567206e-07 - ArtUnc_52: -1.0862800138360604e-07 - ArtUnc_53: 3.9714255876467446e-09 - ArtUnc_54: 2.966360374701162e-09 - ArtUnc_55: -1.8811433941314635e-06 - ArtUnc_56: -1.9456883465457418e-06 - ArtUnc_57: -5.713827041420243e-07 - ArtUnc_58: -2.6674338272983496e-06 - ArtUnc_59: 3.8161231902587136e-08 - ArtUnc_60: 2.6960411564784075e-06 - ArtUnc_61: 2.2069932666540668e-09 - ArtUnc_62: 3.1335045374841156e-08 - ArtUnc_63: -3.6382703959669343e-09 - ArtUnc_64: -5.303985659363463e-06 - ArtUnc_65: 3.295262320683488e-08 - ArtUnc_66: 6.51419437064317e-06 - ArtUnc_67: 1.224938548401954e-07 - ArtUnc_68: -6.0424720363524e-08 - ArtUnc_69: -2.525003177364441e-09 - ArtUnc_70: 1.6964903821867333e-08 - ArtUnc_71: -4.213129200925123e-11 - ArtUnc_72: 1.0434560435049898e-09 - ArtUnc_73: 2.2988054108867716e-10 - ArtUnc_74: -4.029581933211132e-08 - ArtUnc_75: 1.1695826127329766e-08 - ArtUnc_76: -1.1125737214139704e-09 - ArtUnc_77: -9.908908004047555e-10 - ArtUnc_78: 2.1566338396236692e-07 - ArtUnc_79: 7.525356436864798e-08 - ArtUnc_80: -5.458073635477984e-10 - ArtUnc_81: 6.330795480691271e-09 - ArtUnc_82: 2.219836404681475e-10 - ArtUnc_83: -1.4846246330279971e-09 - ArtUnc_84: 1.368357657876286e-10 - ArtUnc_85: 2.579468971964336e-10 - ArtUnc_86: 7.611218948708382e-11 - ArtUnc_87: 3.4903456058610976e-11 - ArtUnc_88: -7.88311010620826e-11 - ArtUnc_89: 1.7002038126260505e-09 - ArtUnc_90: -1.1830090352260171e-09 - ArtUnc_91: 6.700141510953795e-10 - ArtUnc_92: 1.7580036048980386e-09 - ArtUnc_93: -4.661069203930877e-11 - ArtUnc_94: -5.5651946891796474e-11 - ArtUnc_95: -2.1446402629044331e-10 - ArtUnc_96: -5.1926693597453337e-11 + StatMC: 1.74720000e-04 + RadErr: 1.27400000e-04 + Model_1: 5.93276732e-04 + Model_2: 5.93276732e-04 + ModelRW_1: 6.78214398e-04 + ModelRW_2: 6.78214398e-04 + JES_1: 4.94576419e-04 + JES_2: 4.94576419e-04 + ArtUnc_1: 7.05122422e-11 + ArtUnc_2: -1.39776752e-08 + ArtUnc_3: -7.11956109e-08 + ArtUnc_4: -2.80581984e-07 + ArtUnc_5: -9.59221642e-09 + ArtUnc_6: -2.02978998e-09 + ArtUnc_7: -1.34725565e-06 + ArtUnc_8: 4.15093449e-06 + ArtUnc_9: -5.95284219e-08 + ArtUnc_10: 5.43801039e-08 + ArtUnc_11: 7.05979688e-08 + ArtUnc_12: 9.13926086e-09 + ArtUnc_13: -1.27901705e-06 + ArtUnc_14: 2.56174083e-08 + ArtUnc_15: -1.98414826e-08 + ArtUnc_16: 1.61980735e-10 + ArtUnc_17: 2.39832360e-07 + ArtUnc_18: -7.13971568e-09 + ArtUnc_19: -7.28680260e-07 + ArtUnc_20: -1.53458330e-06 + ArtUnc_21: 9.11234928e-08 + ArtUnc_22: -1.30987441e-05 + ArtUnc_23: -2.36643547e-07 + ArtUnc_24: 5.65667194e-06 + ArtUnc_25: 7.33567179e-06 + ArtUnc_26: -1.45772490e-06 + ArtUnc_27: -2.23428137e-05 + ArtUnc_28: -9.32741642e-07 + ArtUnc_29: -3.57111304e-06 + ArtUnc_30: -2.32982421e-06 + ArtUnc_31: 9.53946183e-07 + ArtUnc_32: -3.36546809e-05 + ArtUnc_33: 1.08148030e-08 + ArtUnc_34: 5.09851879e-07 + ArtUnc_35: 7.81455951e-07 + ArtUnc_36: -6.44248894e-06 + ArtUnc_37: 1.99798138e-05 + ArtUnc_38: -3.55957728e-06 + ArtUnc_39: -2.04899347e-05 + ArtUnc_40: 3.02489581e-08 + ArtUnc_41: 6.08972889e-05 + ArtUnc_42: -3.78021667e-07 + ArtUnc_43: -8.95526160e-05 + ArtUnc_44: -4.80243902e-05 + ArtUnc_45: 6.22209842e-07 + ArtUnc_46: -1.36879515e-05 + ArtUnc_47: 9.26401421e-07 + ArtUnc_48: 1.60940432e-08 + ArtUnc_49: -1.79733883e-04 + ArtUnc_50: -4.45966690e-06 + ArtUnc_51: 2.03805044e-07 + ArtUnc_52: -1.08628001e-07 + ArtUnc_53: 3.97142559e-09 + ArtUnc_54: 2.96636037e-09 + ArtUnc_55: -1.88114339e-06 + ArtUnc_56: -1.94568835e-06 + ArtUnc_57: -5.71382704e-07 + ArtUnc_58: -2.66743383e-06 + ArtUnc_59: 3.81612319e-08 + ArtUnc_60: 2.69604116e-06 + ArtUnc_61: 2.20699327e-09 + ArtUnc_62: 3.13350454e-08 + ArtUnc_63: -3.63827040e-09 + ArtUnc_64: -5.30398566e-06 + ArtUnc_65: 3.29526232e-08 + ArtUnc_66: 6.51419437e-06 + ArtUnc_67: 1.22493855e-07 + ArtUnc_68: -6.04247204e-08 + ArtUnc_69: -2.52500318e-09 + ArtUnc_70: 1.69649038e-08 + ArtUnc_71: -4.21312920e-11 + ArtUnc_72: 1.04345604e-09 + ArtUnc_73: 2.29880541e-10 + ArtUnc_74: -4.02958193e-08 + ArtUnc_75: 1.16958261e-08 + ArtUnc_76: -1.11257372e-09 + ArtUnc_77: -9.90890800e-10 + ArtUnc_78: 2.15663384e-07 + ArtUnc_79: 7.52535644e-08 + ArtUnc_80: -5.45807364e-10 + ArtUnc_81: 6.33079548e-09 + ArtUnc_82: 2.21983640e-10 + ArtUnc_83: -1.48462463e-09 + ArtUnc_84: 1.36835766e-10 + ArtUnc_85: 2.57946897e-10 + ArtUnc_86: 7.61121895e-11 + ArtUnc_87: 3.49034561e-11 + ArtUnc_88: -7.88311011e-11 + ArtUnc_89: 1.70020381e-09 + ArtUnc_90: -1.18300904e-09 + ArtUnc_91: 6.70014151e-10 + ArtUnc_92: 1.75800360e-09 + ArtUnc_93: -4.66106920e-11 + ArtUnc_94: -5.56519469e-11 + ArtUnc_95: -2.14464026e-10 + ArtUnc_96: -5.19266936e-11 - stat: 0 Uncorr: 3.03e-05 - RCES: 6.18379871842543e-05 - ElEn: 1.5641228620220345e-05 - ElTh: 9.022839395112827e-06 - Lumi: 2.3331000000000004e-05 - LArN: 1.515e-05 - StatMC: 6.2115e-05 - RadErr: 2.0301000000000004e-05 - Model_1: 7.477442079013384e-05 - Model_2: 7.477442079013384e-05 - ModelRW_1: 0.00012062463869583196 - ModelRW_2: 0.00012062463869583196 - JES_1: 0.00010620285074034031 - JES_2: 0.00010620285074034031 - ArtUnc_1: 5.02819392911427e-14 - ArtUnc_2: -7.93092386430135e-12 - ArtUnc_3: -3.500863412851607e-11 - ArtUnc_4: -9.003481958336642e-11 - ArtUnc_5: -3.1431617742647692e-12 - ArtUnc_6: -2.6228548749244885e-13 - ArtUnc_7: 2.4988272275362133e-10 - ArtUnc_8: -7.095544583119142e-09 - ArtUnc_9: 1.7262562010402244e-10 - ArtUnc_10: 9.466624384963338e-09 - ArtUnc_11: -1.879788980545776e-08 - ArtUnc_12: -1.548158785248519e-09 - ArtUnc_13: -4.131411529644298e-08 - ArtUnc_14: 1.2381720443187933e-10 - ArtUnc_15: -5.996467589130546e-10 - ArtUnc_16: 4.2392744590761055e-11 - ArtUnc_17: 3.800322858826508e-09 - ArtUnc_18: -1.161756959648318e-10 - ArtUnc_19: -9.204297352626248e-09 - ArtUnc_20: -3.29521590064212e-08 - ArtUnc_21: 1.7060190359246318e-09 - ArtUnc_22: -3.159032400526775e-07 - ArtUnc_23: -6.308935847250307e-09 - ArtUnc_24: 1.7278494489382729e-07 - ArtUnc_25: 1.3875472113931756e-07 - ArtUnc_26: -2.9595791064606375e-08 - ArtUnc_27: -6.592875651505602e-07 - ArtUnc_28: -2.4985005971144744e-08 - ArtUnc_29: -3.1242140113639304e-07 - ArtUnc_30: -1.2830119955860022e-07 - ArtUnc_31: 5.325623570444768e-08 - ArtUnc_32: -1.557857961817675e-06 - ArtUnc_33: 1.8667160570307258e-10 - ArtUnc_34: 3.4328292949259264e-08 - ArtUnc_35: 1.5603640778777838e-08 - ArtUnc_36: -3.41441233333585e-07 - ArtUnc_37: 6.324378226229994e-07 - ArtUnc_38: -1.1310962710342948e-07 - ArtUnc_39: -5.43606112255573e-07 - ArtUnc_40: 9.94074320502835e-09 - ArtUnc_41: 2.723372214838412e-06 - ArtUnc_42: 3.5212973382349376e-09 - ArtUnc_43: -3.2286787244513157e-06 - ArtUnc_44: -1.137559147814532e-06 - ArtUnc_45: 1.8692778347107762e-08 - ArtUnc_46: -4.703960347728094e-07 - ArtUnc_47: 1.7808546771262623e-07 - ArtUnc_48: -6.883291106153041e-09 - ArtUnc_49: -5.562381912637747e-06 - ArtUnc_50: -1.1534748792065501e-07 - ArtUnc_51: -1.028575206998728e-06 - ArtUnc_52: 3.031560972701436e-07 - ArtUnc_53: 6.9722900824939765e-09 - ArtUnc_54: -8.435772815707573e-08 - ArtUnc_55: -1.3118817752018197e-05 - ArtUnc_56: 8.339153477261923e-06 - ArtUnc_57: 2.363714414463892e-06 - ArtUnc_58: -2.2236860622236516e-05 - ArtUnc_59: -4.699881721560735e-08 - ArtUnc_60: -2.2636716379401355e-05 - ArtUnc_61: -3.1315628659250002e-09 - ArtUnc_62: -8.573226609941899e-07 - ArtUnc_63: 9.546774888907887e-08 - ArtUnc_64: -4.345762967427407e-05 - ArtUnc_65: 1.6714745717974936e-06 - ArtUnc_66: -5.062688865522955e-05 - ArtUnc_67: -1.662439106353279e-06 - ArtUnc_68: 3.187052164572777e-07 - ArtUnc_69: 4.13515625985064e-08 - ArtUnc_70: -2.9553797995699014e-07 - ArtUnc_71: 2.7263250348303047e-09 - ArtUnc_72: 1.3610040269891257e-06 - ArtUnc_73: 1.0264420914310467e-07 - ArtUnc_74: 5.69311430194333e-07 - ArtUnc_75: -1.7030781847754871e-06 - ArtUnc_76: -6.269284013211263e-09 - ArtUnc_77: 8.642190079204772e-09 - ArtUnc_78: -3.365296810775796e-06 - ArtUnc_79: -1.84430929476948e-06 - ArtUnc_80: 9.498543448078409e-09 - ArtUnc_81: -9.359532363282695e-08 - ArtUnc_82: -5.063739805795505e-09 - ArtUnc_83: 1.672309867316878e-08 - ArtUnc_84: 1.257677996302173e-08 - ArtUnc_85: -5.998074356448583e-09 - ArtUnc_86: -1.4311052060218262e-09 - ArtUnc_87: -1.0586207274600761e-09 - ArtUnc_88: -1.508268361170333e-10 - ArtUnc_89: -3.94871824587661e-08 - ArtUnc_90: 1.8390899459919323e-08 - ArtUnc_91: -1.220670268979323e-08 - ArtUnc_92: -3.9562589117971506e-08 - ArtUnc_93: 2.223360481207455e-10 - ArtUnc_94: 1.6431022394438529e-09 - ArtUnc_95: 2.7427779419367713e-09 - ArtUnc_96: 2.0710559073924454e-10 + RCES: 6.18379872e-05 + ElEn: 1.56412286e-05 + ElTh: 9.02283940e-06 + Lumi: 2.33310000e-05 + LArN: 1.51500000e-05 + StatMC: 6.21150000e-05 + RadErr: 2.03010000e-05 + Model_1: 7.47744208e-05 + Model_2: 7.47744208e-05 + ModelRW_1: 1.20624639e-04 + ModelRW_2: 1.20624639e-04 + JES_1: 1.06202851e-04 + JES_2: 1.06202851e-04 + ArtUnc_1: 5.02819393e-14 + ArtUnc_2: -7.93092386e-12 + ArtUnc_3: -3.50086341e-11 + ArtUnc_4: -9.00348196e-11 + ArtUnc_5: -3.14316177e-12 + ArtUnc_6: -2.62285487e-13 + ArtUnc_7: 2.49882723e-10 + ArtUnc_8: -7.09554458e-09 + ArtUnc_9: 1.72625620e-10 + ArtUnc_10: 9.46662438e-09 + ArtUnc_11: -1.87978898e-08 + ArtUnc_12: -1.54815879e-09 + ArtUnc_13: -4.13141153e-08 + ArtUnc_14: 1.23817204e-10 + ArtUnc_15: -5.99646759e-10 + ArtUnc_16: 4.23927446e-11 + ArtUnc_17: 3.80032286e-09 + ArtUnc_18: -1.16175696e-10 + ArtUnc_19: -9.20429735e-09 + ArtUnc_20: -3.29521590e-08 + ArtUnc_21: 1.70601904e-09 + ArtUnc_22: -3.15903240e-07 + ArtUnc_23: -6.30893585e-09 + ArtUnc_24: 1.72784945e-07 + ArtUnc_25: 1.38754721e-07 + ArtUnc_26: -2.95957911e-08 + ArtUnc_27: -6.59287565e-07 + ArtUnc_28: -2.49850060e-08 + ArtUnc_29: -3.12421401e-07 + ArtUnc_30: -1.28301200e-07 + ArtUnc_31: 5.32562357e-08 + ArtUnc_32: -1.55785796e-06 + ArtUnc_33: 1.86671606e-10 + ArtUnc_34: 3.43282929e-08 + ArtUnc_35: 1.56036408e-08 + ArtUnc_36: -3.41441233e-07 + ArtUnc_37: 6.32437823e-07 + ArtUnc_38: -1.13109627e-07 + ArtUnc_39: -5.43606112e-07 + ArtUnc_40: 9.94074321e-09 + ArtUnc_41: 2.72337221e-06 + ArtUnc_42: 3.52129734e-09 + ArtUnc_43: -3.22867872e-06 + ArtUnc_44: -1.13755915e-06 + ArtUnc_45: 1.86927783e-08 + ArtUnc_46: -4.70396035e-07 + ArtUnc_47: 1.78085468e-07 + ArtUnc_48: -6.88329111e-09 + ArtUnc_49: -5.56238191e-06 + ArtUnc_50: -1.15347488e-07 + ArtUnc_51: -1.02857521e-06 + ArtUnc_52: 3.03156097e-07 + ArtUnc_53: 6.97229008e-09 + ArtUnc_54: -8.43577282e-08 + ArtUnc_55: -1.31188178e-05 + ArtUnc_56: 8.33915348e-06 + ArtUnc_57: 2.36371441e-06 + ArtUnc_58: -2.22368606e-05 + ArtUnc_59: -4.69988172e-08 + ArtUnc_60: -2.26367164e-05 + ArtUnc_61: -3.13156287e-09 + ArtUnc_62: -8.57322661e-07 + ArtUnc_63: 9.54677489e-08 + ArtUnc_64: -4.34576297e-05 + ArtUnc_65: 1.67147457e-06 + ArtUnc_66: -5.06268887e-05 + ArtUnc_67: -1.66243911e-06 + ArtUnc_68: 3.18705216e-07 + ArtUnc_69: 4.13515626e-08 + ArtUnc_70: -2.95537980e-07 + ArtUnc_71: 2.72632503e-09 + ArtUnc_72: 1.36100403e-06 + ArtUnc_73: 1.02644209e-07 + ArtUnc_74: 5.69311430e-07 + ArtUnc_75: -1.70307818e-06 + ArtUnc_76: -6.26928401e-09 + ArtUnc_77: 8.64219008e-09 + ArtUnc_78: -3.36529681e-06 + ArtUnc_79: -1.84430929e-06 + ArtUnc_80: 9.49854345e-09 + ArtUnc_81: -9.35953236e-08 + ArtUnc_82: -5.06373981e-09 + ArtUnc_83: 1.67230987e-08 + ArtUnc_84: 1.25767800e-08 + ArtUnc_85: -5.99807436e-09 + ArtUnc_86: -1.43110521e-09 + ArtUnc_87: -1.05862073e-09 + ArtUnc_88: -1.50826836e-10 + ArtUnc_89: -3.94871825e-08 + ArtUnc_90: 1.83908995e-08 + ArtUnc_91: -1.22067027e-08 + ArtUnc_92: -3.95625891e-08 + ArtUnc_93: 2.22336048e-10 + ArtUnc_94: 1.64310224e-09 + ArtUnc_95: 2.74277794e-09 + ArtUnc_96: 2.07105591e-10 - stat: 0 - Uncorr: 5.199999999999999e-06 - RCES: 1.1284958484637859e-05 - ElEn: 6.2427618887796765e-06 + Uncorr: 5.20000000e-06 + RCES: 1.12849585e-05 + ElEn: 6.24276189e-06 ElTh: 2.34e-06 - Lumi: 4.004e-06 - LArN: 2.5999999999999997e-06 - StatMC: 2.5115999999999998e-05 - RadErr: 9.204e-06 - Model_1: 1.4560742838193385e-05 - Model_2: 1.4560742838193385e-05 - ModelRW_1: 1.823769810036343e-05 - ModelRW_2: 1.823769810036343e-05 - JES_1: 2.4654382612428158e-05 - JES_2: 2.4654382612428158e-05 - ArtUnc_1: 3.1649572545798636e-16 - ArtUnc_2: -5.233577612250058e-14 - ArtUnc_3: 1.2009689584926394e-13 - ArtUnc_4: 5.277572473053857e-12 - ArtUnc_5: 1.9602452330203135e-13 - ArtUnc_6: 1.1950603216690673e-13 - ArtUnc_7: 1.177091946862514e-10 - ArtUnc_8: -1.4179526772949043e-09 - ArtUnc_9: 3.140778790121353e-11 - ArtUnc_10: 1.5709557509707463e-09 - ArtUnc_11: -3.1240802535447885e-09 - ArtUnc_12: -2.518727268235315e-10 - ArtUnc_13: -7.045050237369745e-09 - ArtUnc_14: -2.4889382837967554e-11 - ArtUnc_15: -6.151766026825989e-11 - ArtUnc_16: 5.582573905562612e-12 - ArtUnc_17: 3.960908745469827e-10 - ArtUnc_18: -1.2186192497896489e-11 - ArtUnc_19: -1.2867497103024744e-09 - ArtUnc_20: -4.035383590529554e-09 - ArtUnc_21: 2.330392107937851e-10 - ArtUnc_22: -4.487504907636002e-08 - ArtUnc_23: -7.936318198209268e-10 - ArtUnc_24: 2.371442818121514e-08 - ArtUnc_25: 1.574975239816285e-08 - ArtUnc_26: -4.309261165127264e-09 - ArtUnc_27: -9.7984030705831e-08 - ArtUnc_28: -4.944339987828451e-09 - ArtUnc_29: -5.412031033562565e-08 - ArtUnc_30: -2.2124207161280466e-08 - ArtUnc_31: 9.099620059241552e-09 - ArtUnc_32: -2.4212284907869234e-07 - ArtUnc_33: 7.643746265587136e-11 - ArtUnc_34: -2.531175015901532e-09 - ArtUnc_35: -4.649292937064408e-09 - ArtUnc_36: 2.1601831095153314e-10 - ArtUnc_37: 1.4995257681146108e-09 - ArtUnc_38: -1.5743773344953369e-10 - ArtUnc_39: 7.455873430691035e-09 - ArtUnc_40: -4.957949681526738e-11 - ArtUnc_41: -2.9637995206043367e-08 - ArtUnc_42: 1.4364644653972603e-09 - ArtUnc_43: 8.010985922253236e-08 - ArtUnc_44: 1.1402569191300257e-08 - ArtUnc_45: -4.70319844532275e-10 - ArtUnc_46: 1.0023033931634319e-08 - ArtUnc_47: 7.628779905008244e-09 - ArtUnc_48: -4.3229700830991953e-10 - ArtUnc_49: 3.164264343360258e-07 - ArtUnc_50: 1.244365852390118e-08 - ArtUnc_51: -5.759850014053632e-08 - ArtUnc_52: 4.17163704070633e-08 - ArtUnc_53: -2.931442056952663e-09 - ArtUnc_54: -3.5184202673116693e-09 - ArtUnc_55: -4.5051482319390554e-07 - ArtUnc_56: 4.7492041930752146e-07 - ArtUnc_57: 1.4149340622586435e-07 - ArtUnc_58: -5.06873105407668e-07 - ArtUnc_59: -4.014248528158959e-09 - ArtUnc_60: -6.525009893137404e-07 - ArtUnc_61: 7.476582192990769e-10 - ArtUnc_62: -6.224558013585522e-08 - ArtUnc_63: 5.947352900612051e-09 - ArtUnc_64: -4.6023902239792263e-07 - ArtUnc_65: 1.469646262779821e-08 - ArtUnc_66: -8.742215561408021e-07 - ArtUnc_67: 2.685437413470425e-07 - ArtUnc_68: -2.515600809491753e-08 - ArtUnc_69: -9.129200909773729e-08 - ArtUnc_70: 2.0080733355498856e-06 - ArtUnc_71: 2.981855795298056e-08 - ArtUnc_72: 1.2038558502867265e-06 - ArtUnc_73: -3.738286373691037e-09 - ArtUnc_74: 7.397192237967834e-06 - ArtUnc_75: -1.1239358915581491e-07 - ArtUnc_76: 1.9660642274449898e-07 - ArtUnc_77: 2.0281556677642994e-07 - ArtUnc_78: 1.2953754330491275e-05 - ArtUnc_79: -2.117380884707036e-05 - ArtUnc_80: 3.964956462254869e-07 - ArtUnc_81: 2.6821229728058613e-07 - ArtUnc_82: -5.169686328983974e-08 - ArtUnc_83: -1.592215483144535e-07 - ArtUnc_84: 7.311494935121575e-07 - ArtUnc_85: 2.9648856667801234e-09 - ArtUnc_86: -2.056962891334345e-08 - ArtUnc_87: -2.2139520866865153e-08 - ArtUnc_88: -3.832132486986376e-08 - ArtUnc_89: -9.456451570329005e-07 - ArtUnc_90: 2.959816264128777e-07 - ArtUnc_91: 1.36460411354434e-07 - ArtUnc_92: 1.6368869442189318e-06 - ArtUnc_93: -4.62625192359946e-09 - ArtUnc_94: -2.907941765743483e-08 - ArtUnc_95: 1.2467227997260188e-08 - ArtUnc_96: -9.500208452465233e-09 + Lumi: 4.00400000e-06 + LArN: 2.60000000e-06 + StatMC: 2.51160000e-05 + RadErr: 9.20400000e-06 + Model_1: 1.45607428e-05 + Model_2: 1.45607428e-05 + ModelRW_1: 1.82376981e-05 + ModelRW_2: 1.82376981e-05 + JES_1: 2.46543826e-05 + JES_2: 2.46543826e-05 + ArtUnc_1: 3.16495725e-16 + ArtUnc_2: -5.23357761e-14 + ArtUnc_3: 1.20096896e-13 + ArtUnc_4: 5.27757247e-12 + ArtUnc_5: 1.96024523e-13 + ArtUnc_6: 1.19506032e-13 + ArtUnc_7: 1.17709195e-10 + ArtUnc_8: -1.41795268e-09 + ArtUnc_9: 3.14077879e-11 + ArtUnc_10: 1.57095575e-09 + ArtUnc_11: -3.12408025e-09 + ArtUnc_12: -2.51872727e-10 + ArtUnc_13: -7.04505024e-09 + ArtUnc_14: -2.48893828e-11 + ArtUnc_15: -6.15176603e-11 + ArtUnc_16: 5.58257391e-12 + ArtUnc_17: 3.96090875e-10 + ArtUnc_18: -1.21861925e-11 + ArtUnc_19: -1.28674971e-09 + ArtUnc_20: -4.03538359e-09 + ArtUnc_21: 2.33039211e-10 + ArtUnc_22: -4.48750491e-08 + ArtUnc_23: -7.93631820e-10 + ArtUnc_24: 2.37144282e-08 + ArtUnc_25: 1.57497524e-08 + ArtUnc_26: -4.30926117e-09 + ArtUnc_27: -9.79840307e-08 + ArtUnc_28: -4.94433999e-09 + ArtUnc_29: -5.41203103e-08 + ArtUnc_30: -2.21242072e-08 + ArtUnc_31: 9.09962006e-09 + ArtUnc_32: -2.42122849e-07 + ArtUnc_33: 7.64374627e-11 + ArtUnc_34: -2.53117502e-09 + ArtUnc_35: -4.64929294e-09 + ArtUnc_36: 2.16018311e-10 + ArtUnc_37: 1.49952577e-09 + ArtUnc_38: -1.57437733e-10 + ArtUnc_39: 7.45587343e-09 + ArtUnc_40: -4.95794968e-11 + ArtUnc_41: -2.96379952e-08 + ArtUnc_42: 1.43646447e-09 + ArtUnc_43: 8.01098592e-08 + ArtUnc_44: 1.14025692e-08 + ArtUnc_45: -4.70319845e-10 + ArtUnc_46: 1.00230339e-08 + ArtUnc_47: 7.62877991e-09 + ArtUnc_48: -4.32297008e-10 + ArtUnc_49: 3.16426434e-07 + ArtUnc_50: 1.24436585e-08 + ArtUnc_51: -5.75985001e-08 + ArtUnc_52: 4.17163704e-08 + ArtUnc_53: -2.93144206e-09 + ArtUnc_54: -3.51842027e-09 + ArtUnc_55: -4.50514823e-07 + ArtUnc_56: 4.74920419e-07 + ArtUnc_57: 1.41493406e-07 + ArtUnc_58: -5.06873105e-07 + ArtUnc_59: -4.01424853e-09 + ArtUnc_60: -6.52500989e-07 + ArtUnc_61: 7.47658219e-10 + ArtUnc_62: -6.22455801e-08 + ArtUnc_63: 5.94735290e-09 + ArtUnc_64: -4.60239022e-07 + ArtUnc_65: 1.46964626e-08 + ArtUnc_66: -8.74221556e-07 + ArtUnc_67: 2.68543741e-07 + ArtUnc_68: -2.51560081e-08 + ArtUnc_69: -9.12920091e-08 + ArtUnc_70: 2.00807334e-06 + ArtUnc_71: 2.98185580e-08 + ArtUnc_72: 1.20385585e-06 + ArtUnc_73: -3.73828637e-09 + ArtUnc_74: 7.39719224e-06 + ArtUnc_75: -1.12393589e-07 + ArtUnc_76: 1.96606423e-07 + ArtUnc_77: 2.02815567e-07 + ArtUnc_78: 1.29537543e-05 + ArtUnc_79: -2.11738088e-05 + ArtUnc_80: 3.96495646e-07 + ArtUnc_81: 2.68212297e-07 + ArtUnc_82: -5.16968633e-08 + ArtUnc_83: -1.59221548e-07 + ArtUnc_84: 7.31149494e-07 + ArtUnc_85: 2.96488567e-09 + ArtUnc_86: -2.05696289e-08 + ArtUnc_87: -2.21395209e-08 + ArtUnc_88: -3.83213249e-08 + ArtUnc_89: -9.45645157e-07 + ArtUnc_90: 2.95981626e-07 + ArtUnc_91: 1.36460411e-07 + ArtUnc_92: 1.63688694e-06 + ArtUnc_93: -4.62625192e-09 + ArtUnc_94: -2.90794177e-08 + ArtUnc_95: 1.24672280e-08 + ArtUnc_96: -9.50020845e-09 - stat: 0 Uncorr: 1.17e-06 - RCES: 5.103601155066881e-07 - ElEn: 2.4297367774102614e-06 - ElTh: 8.241651412186759e-07 - Lumi: 9.009e-07 + RCES: 5.10360116e-07 + ElEn: 2.42973678e-06 + ElTh: 8.24165141e-07 + Lumi: 9.00900000e-07 LArN: 5.85e-07 - StatMC: 9.956699999999999e-06 - RadErr: 7.2891e-06 - Model_1: 7.751940931470001e-06 - Model_2: 7.751940931470001e-06 - ModelRW_1: 5.063167396008154e-06 - ModelRW_2: 5.063167396008154e-06 - JES_1: 2.9632660933503762e-06 - JES_2: 2.9632660933503762e-06 - ArtUnc_1: 7.525551332810761e-19 - ArtUnc_2: 1.7011065060993183e-18 - ArtUnc_3: 2.2088374550225672e-17 - ArtUnc_4: 1.2241962774379785e-16 - ArtUnc_5: 4.140643639484835e-18 - ArtUnc_6: 1.838631669346577e-18 - ArtUnc_7: 4.662605559246975e-16 - ArtUnc_8: 3.6959069714146945e-15 - ArtUnc_9: 4.1228378670082187e-17 - ArtUnc_10: -1.6732250973069617e-14 - ArtUnc_11: 2.906247935746357e-14 - ArtUnc_12: 2.07354682755585e-15 - ArtUnc_13: 1.0956125714146772e-13 - ArtUnc_14: -7.645551038861831e-16 - ArtUnc_15: 4.445232595615555e-15 - ArtUnc_16: -2.675054665071818e-16 - ArtUnc_17: -6.686565834819298e-15 - ArtUnc_18: 1.8429779658553334e-16 - ArtUnc_19: 5.3093938955127536e-14 - ArtUnc_20: 1.6034412809324093e-13 - ArtUnc_21: -9.114499216275052e-15 - ArtUnc_22: 2.8160976159407595e-12 - ArtUnc_23: 5.926044542417139e-14 - ArtUnc_24: -1.9827743594159214e-12 - ArtUnc_25: -2.8747873249342066e-13 - ArtUnc_26: 1.6040258231256255e-13 - ArtUnc_27: 8.751908398152517e-12 - ArtUnc_28: 3.243057790862044e-13 - ArtUnc_29: 6.553866976012681e-12 - ArtUnc_30: 2.568968732178255e-12 - ArtUnc_31: -1.0753638369503453e-12 - ArtUnc_32: 4.1544951068356036e-11 - ArtUnc_33: -1.7348277059421816e-15 - ArtUnc_34: -1.5040569541908268e-12 - ArtUnc_35: -7.984848532209664e-13 - ArtUnc_36: 2.4281165361617614e-11 - ArtUnc_37: -4.750445954573314e-11 - ArtUnc_38: 9.352170382692404e-12 - ArtUnc_39: 5.0030111451300346e-11 - ArtUnc_40: -9.794687305802967e-13 - ArtUnc_41: -3.384009666384961e-10 - ArtUnc_42: 9.145350864578396e-12 - ArtUnc_43: 5.444991103342456e-10 - ArtUnc_44: 2.164790135155239e-10 - ArtUnc_45: -5.036337921055136e-12 - ArtUnc_46: 7.572012011880331e-11 - ArtUnc_47: 1.3122931491457895e-11 - ArtUnc_48: -1.6235023239829938e-12 - ArtUnc_49: 1.4463868992619182e-09 - ArtUnc_50: 6.487919379608554e-11 - ArtUnc_51: 2.564045270519593e-10 - ArtUnc_52: -1.9086491770607894e-11 - ArtUnc_53: -6.004925716718752e-11 - ArtUnc_54: 1.3528719560799027e-11 - ArtUnc_55: 1.1799485815545221e-08 - ArtUnc_56: -9.975340208781463e-09 - ArtUnc_57: -2.2521217812471348e-09 - ArtUnc_58: 2.804699758441273e-08 - ArtUnc_59: 2.2103976595410218e-10 - ArtUnc_60: 3.3649817451941395e-08 - ArtUnc_61: 1.1740658032824714e-10 - ArtUnc_62: -2.402339850854667e-09 - ArtUnc_63: 1.7391658748525373e-10 - ArtUnc_64: 8.89274434058841e-08 - ArtUnc_65: -4.7974890767402026e-09 - ArtUnc_66: 1.22364516968084e-07 - ArtUnc_67: 3.040652579547578e-08 - ArtUnc_68: -6.862203540163716e-09 - ArtUnc_69: -7.665774654289796e-09 - ArtUnc_70: 1.480625126632594e-07 - ArtUnc_71: 2.0979076256282548e-09 - ArtUnc_72: 5.122209600702832e-08 - ArtUnc_73: 1.3362480636831328e-10 - ArtUnc_74: 2.717582622135473e-07 - ArtUnc_75: -4.951873092024478e-08 - ArtUnc_76: 3.198076745946251e-09 - ArtUnc_77: 1.1602659070872547e-08 - ArtUnc_78: 2.0132775223619658e-07 - ArtUnc_79: -3.7306664299767404e-07 - ArtUnc_80: 5.992296682747596e-09 - ArtUnc_81: -4.792623496419435e-09 - ArtUnc_82: -1.0624184782695466e-09 - ArtUnc_83: 9.610625844064377e-08 - ArtUnc_84: -1.2694396721333717e-07 - ArtUnc_85: -6.457187616301097e-07 - ArtUnc_86: -2.9317899929255475e-07 - ArtUnc_87: -3.9372117306839423e-07 - ArtUnc_88: 4.955158818554302e-08 - ArtUnc_89: 1.8185695363269428e-07 - ArtUnc_90: 1.097358450627666e-06 - ArtUnc_91: -6.7007103400230265e-06 - ArtUnc_92: -4.1782353724083415e-08 - ArtUnc_93: 6.93294384753824e-08 - ArtUnc_94: 1.1183383282743e-07 - ArtUnc_95: -2.9181645166768758e-06 - ArtUnc_96: -6.066089548558399e-07 + StatMC: 9.95670000e-06 + RadErr: 7.28910000e-06 + Model_1: 7.75194093e-06 + Model_2: 7.75194093e-06 + ModelRW_1: 5.06316740e-06 + ModelRW_2: 5.06316740e-06 + JES_1: 2.96326609e-06 + JES_2: 2.96326609e-06 + ArtUnc_1: 7.52555133e-19 + ArtUnc_2: 1.70110651e-18 + ArtUnc_3: 2.20883746e-17 + ArtUnc_4: 1.22419628e-16 + ArtUnc_5: 4.14064364e-18 + ArtUnc_6: 1.83863167e-18 + ArtUnc_7: 4.66260556e-16 + ArtUnc_8: 3.69590697e-15 + ArtUnc_9: 4.12283787e-17 + ArtUnc_10: -1.67322510e-14 + ArtUnc_11: 2.90624794e-14 + ArtUnc_12: 2.07354683e-15 + ArtUnc_13: 1.09561257e-13 + ArtUnc_14: -7.64555104e-16 + ArtUnc_15: 4.44523260e-15 + ArtUnc_16: -2.67505467e-16 + ArtUnc_17: -6.68656583e-15 + ArtUnc_18: 1.84297797e-16 + ArtUnc_19: 5.30939390e-14 + ArtUnc_20: 1.60344128e-13 + ArtUnc_21: -9.11449922e-15 + ArtUnc_22: 2.81609762e-12 + ArtUnc_23: 5.92604454e-14 + ArtUnc_24: -1.98277436e-12 + ArtUnc_25: -2.87478732e-13 + ArtUnc_26: 1.60402582e-13 + ArtUnc_27: 8.75190840e-12 + ArtUnc_28: 3.24305779e-13 + ArtUnc_29: 6.55386698e-12 + ArtUnc_30: 2.56896873e-12 + ArtUnc_31: -1.07536384e-12 + ArtUnc_32: 4.15449511e-11 + ArtUnc_33: -1.73482771e-15 + ArtUnc_34: -1.50405695e-12 + ArtUnc_35: -7.98484853e-13 + ArtUnc_36: 2.42811654e-11 + ArtUnc_37: -4.75044595e-11 + ArtUnc_38: 9.35217038e-12 + ArtUnc_39: 5.00301115e-11 + ArtUnc_40: -9.79468731e-13 + ArtUnc_41: -3.38400967e-10 + ArtUnc_42: 9.14535086e-12 + ArtUnc_43: 5.44499110e-10 + ArtUnc_44: 2.16479014e-10 + ArtUnc_45: -5.03633792e-12 + ArtUnc_46: 7.57201201e-11 + ArtUnc_47: 1.31229315e-11 + ArtUnc_48: -1.62350232e-12 + ArtUnc_49: 1.44638690e-09 + ArtUnc_50: 6.48791938e-11 + ArtUnc_51: 2.56404527e-10 + ArtUnc_52: -1.90864918e-11 + ArtUnc_53: -6.00492572e-11 + ArtUnc_54: 1.35287196e-11 + ArtUnc_55: 1.17994858e-08 + ArtUnc_56: -9.97534021e-09 + ArtUnc_57: -2.25212178e-09 + ArtUnc_58: 2.80469976e-08 + ArtUnc_59: 2.21039766e-10 + ArtUnc_60: 3.36498175e-08 + ArtUnc_61: 1.17406580e-10 + ArtUnc_62: -2.40233985e-09 + ArtUnc_63: 1.73916587e-10 + ArtUnc_64: 8.89274434e-08 + ArtUnc_65: -4.79748908e-09 + ArtUnc_66: 1.22364517e-07 + ArtUnc_67: 3.04065258e-08 + ArtUnc_68: -6.86220354e-09 + ArtUnc_69: -7.66577465e-09 + ArtUnc_70: 1.48062513e-07 + ArtUnc_71: 2.09790763e-09 + ArtUnc_72: 5.12220960e-08 + ArtUnc_73: 1.33624806e-10 + ArtUnc_74: 2.71758262e-07 + ArtUnc_75: -4.95187309e-08 + ArtUnc_76: 3.19807675e-09 + ArtUnc_77: 1.16026591e-08 + ArtUnc_78: 2.01327752e-07 + ArtUnc_79: -3.73066643e-07 + ArtUnc_80: 5.99229668e-09 + ArtUnc_81: -4.79262350e-09 + ArtUnc_82: -1.06241848e-09 + ArtUnc_83: 9.61062584e-08 + ArtUnc_84: -1.26943967e-07 + ArtUnc_85: -6.45718762e-07 + ArtUnc_86: -2.93178999e-07 + ArtUnc_87: -3.93721173e-07 + ArtUnc_88: 4.95515882e-08 + ArtUnc_89: 1.81856954e-07 + ArtUnc_90: 1.09735845e-06 + ArtUnc_91: -6.70071034e-06 + ArtUnc_92: -4.17823537e-08 + ArtUnc_93: 6.93294385e-08 + ArtUnc_94: 1.11833833e-07 + ArtUnc_95: -2.91816452e-06 + ArtUnc_96: -6.06608955e-07 - stat: 0 Uncorr: 0.00193 - RCES: 0.005300090646394644 - ElEn: 0.0015174759240264737 - ElTh: 0.000753132888340431 - Lumi: 0.0014861000000000002 + RCES: 5.30009065e-03 + ElEn: 1.51747592e-03 + ElTh: 7.53132888e-04 + Lumi: 1.48610000e-03 LArN: 0.000965 - StatMC: 0.0019879000000000003 - RadErr: 0.0004825 - Model_1: 0.0003684733436763099 - Model_2: 0.0003684733436763099 - ModelRW_1: 0.004776506306915128 - ModelRW_2: 0.004776506306915128 - JES_1: 0.001179354764267309 - JES_2: 0.001179354764267309 - ArtUnc_1: -5.184077555533741e-09 - ArtUnc_2: 1.1677814854411006e-06 - ArtUnc_3: 6.484945269315138e-06 - ArtUnc_4: 2.9607766166695967e-05 - ArtUnc_5: 1.026009764528549e-06 - ArtUnc_6: 2.662512931754971e-07 - ArtUnc_7: 0.00019243537417088093 - ArtUnc_8: -0.0010127354200840388 - ArtUnc_9: 1.8484503325499536e-05 - ArtUnc_10: 0.00048367113275177076 - ArtUnc_11: -0.0010003494842459083 - ArtUnc_12: -8.105091416697253e-05 - ArtUnc_13: -0.001560303726292504 - ArtUnc_14: -1.3124683464170857e-05 - ArtUnc_15: -2.2591533427100417e-06 - ArtUnc_16: 5.817826599619027e-07 - ArtUnc_17: -1.1337540775553265e-06 - ArtUnc_18: 2.987029686372386e-09 - ArtUnc_19: -4.885827276898941e-06 - ArtUnc_20: 5.46036666714073e-06 - ArtUnc_21: -1.9999995328938429e-07 - ArtUnc_22: 1.127622547801492e-05 - ArtUnc_23: 2.4150688771514286e-07 - ArtUnc_24: -1.8699348321426944e-05 - ArtUnc_25: -8.703721396487673e-06 - ArtUnc_26: -5.289837150206431e-07 - ArtUnc_27: 2.092744305624243e-05 - ArtUnc_28: 1.1909023961737446e-06 - ArtUnc_29: -1.376509661274837e-07 - ArtUnc_30: 2.320036287223341e-06 - ArtUnc_31: -9.390934551493554e-07 - ArtUnc_32: 5.260444912495629e-05 - ArtUnc_33: -2.0294766714438776e-08 - ArtUnc_34: 6.195759482581024e-07 - ArtUnc_35: 9.550353952130143e-07 - ArtUnc_36: 3.729841789513544e-08 - ArtUnc_37: -8.01872132902217e-07 - ArtUnc_38: 1.3985486051409333e-07 - ArtUnc_39: -6.047222284831918e-07 - ArtUnc_40: -2.4299704067528574e-09 - ArtUnc_41: 1.4240506631795265e-07 - ArtUnc_42: 1.7631994306664332e-09 - ArtUnc_43: -3.8265962551438614e-07 - ArtUnc_44: 5.247038576006126e-07 - ArtUnc_45: -2.189129079051947e-09 - ArtUnc_46: -1.44380724631698e-08 - ArtUnc_47: 1.3171349073524332e-08 - ArtUnc_48: -2.7911157642128274e-10 - ArtUnc_49: -1.2825201759836507e-06 - ArtUnc_50: -3.951216736568954e-08 - ArtUnc_51: 4.224301304456062e-09 - ArtUnc_52: 6.753685855579711e-09 - ArtUnc_53: -1.0953565605415092e-09 - ArtUnc_54: 5.61711527514032e-10 - ArtUnc_55: -1.782027436821851e-08 - ArtUnc_56: -1.2209974055510724e-09 - ArtUnc_57: -4.019287354508974e-10 - ArtUnc_58: -4.213685453428593e-09 - ArtUnc_59: 1.2091701533994065e-10 - ArtUnc_60: -8.476923147507564e-09 - ArtUnc_61: 2.7460661768004776e-11 - ArtUnc_62: -2.362711917216108e-10 - ArtUnc_63: 1.9836546306819357e-11 - ArtUnc_64: -6.466304591781763e-08 - ArtUnc_65: 1.114451854006085e-09 - ArtUnc_66: 4.576488071035876e-08 - ArtUnc_67: 5.587580325253636e-10 - ArtUnc_68: -6.110199357284909e-10 - ArtUnc_69: -1.7776037748956474e-11 - ArtUnc_70: 2.105310448338427e-10 - ArtUnc_71: 2.036025074802777e-12 - ArtUnc_72: 5.932777335713569e-10 - ArtUnc_73: 4.2800168813375514e-11 - ArtUnc_74: 8.421436948084789e-11 - ArtUnc_75: -9.046981473561437e-10 - ArtUnc_76: -8.711386866030128e-12 - ArtUnc_77: -8.783496744864512e-12 - ArtUnc_78: 1.1157174486688844e-09 - ArtUnc_79: -6.647586284951538e-10 - ArtUnc_80: 2.5056554750015145e-12 - ArtUnc_81: 2.9053533657378786e-11 - ArtUnc_82: -1.6143113427655448e-12 - ArtUnc_83: -1.3792892516033813e-11 - ArtUnc_84: 2.55994988468569e-11 - ArtUnc_85: -4.1136523479301395e-13 - ArtUnc_86: 3.0054805505082905e-12 - ArtUnc_87: 3.6273406321135882e-12 - ArtUnc_88: -2.8013289475797947e-12 - ArtUnc_89: -1.9168249548640208e-11 - ArtUnc_90: -1.7317335682249917e-11 - ArtUnc_91: -2.0340718509920277e-12 - ArtUnc_92: 7.107882979360044e-11 - ArtUnc_93: -1.982403558075022e-12 - ArtUnc_94: -8.498361675632596e-13 - ArtUnc_95: 3.0305793135593906e-11 - ArtUnc_96: 4.905247241945646e-12 + StatMC: 1.98790000e-03 + RadErr: 4.82500000e-04 + Model_1: 3.68473344e-04 + Model_2: 3.68473344e-04 + ModelRW_1: 4.77650631e-03 + ModelRW_2: 4.77650631e-03 + JES_1: 1.17935476e-03 + JES_2: 1.17935476e-03 + ArtUnc_1: -5.18407756e-09 + ArtUnc_2: 1.16778149e-06 + ArtUnc_3: 6.48494527e-06 + ArtUnc_4: 2.96077662e-05 + ArtUnc_5: 1.02600976e-06 + ArtUnc_6: 2.66251293e-07 + ArtUnc_7: 1.92435374e-04 + ArtUnc_8: -1.01273542e-03 + ArtUnc_9: 1.84845033e-05 + ArtUnc_10: 4.83671133e-04 + ArtUnc_11: -1.00034948e-03 + ArtUnc_12: -8.10509142e-05 + ArtUnc_13: -1.56030373e-03 + ArtUnc_14: -1.31246835e-05 + ArtUnc_15: -2.25915334e-06 + ArtUnc_16: 5.81782660e-07 + ArtUnc_17: -1.13375408e-06 + ArtUnc_18: 2.98702969e-09 + ArtUnc_19: -4.88582728e-06 + ArtUnc_20: 5.46036667e-06 + ArtUnc_21: -1.99999953e-07 + ArtUnc_22: 1.12762255e-05 + ArtUnc_23: 2.41506888e-07 + ArtUnc_24: -1.86993483e-05 + ArtUnc_25: -8.70372140e-06 + ArtUnc_26: -5.28983715e-07 + ArtUnc_27: 2.09274431e-05 + ArtUnc_28: 1.19090240e-06 + ArtUnc_29: -1.37650966e-07 + ArtUnc_30: 2.32003629e-06 + ArtUnc_31: -9.39093455e-07 + ArtUnc_32: 5.26044491e-05 + ArtUnc_33: -2.02947667e-08 + ArtUnc_34: 6.19575948e-07 + ArtUnc_35: 9.55035395e-07 + ArtUnc_36: 3.72984179e-08 + ArtUnc_37: -8.01872133e-07 + ArtUnc_38: 1.39854861e-07 + ArtUnc_39: -6.04722228e-07 + ArtUnc_40: -2.42997041e-09 + ArtUnc_41: 1.42405066e-07 + ArtUnc_42: 1.76319943e-09 + ArtUnc_43: -3.82659626e-07 + ArtUnc_44: 5.24703858e-07 + ArtUnc_45: -2.18912908e-09 + ArtUnc_46: -1.44380725e-08 + ArtUnc_47: 1.31713491e-08 + ArtUnc_48: -2.79111576e-10 + ArtUnc_49: -1.28252018e-06 + ArtUnc_50: -3.95121674e-08 + ArtUnc_51: 4.22430130e-09 + ArtUnc_52: 6.75368586e-09 + ArtUnc_53: -1.09535656e-09 + ArtUnc_54: 5.61711528e-10 + ArtUnc_55: -1.78202744e-08 + ArtUnc_56: -1.22099741e-09 + ArtUnc_57: -4.01928735e-10 + ArtUnc_58: -4.21368545e-09 + ArtUnc_59: 1.20917015e-10 + ArtUnc_60: -8.47692315e-09 + ArtUnc_61: 2.74606618e-11 + ArtUnc_62: -2.36271192e-10 + ArtUnc_63: 1.98365463e-11 + ArtUnc_64: -6.46630459e-08 + ArtUnc_65: 1.11445185e-09 + ArtUnc_66: 4.57648807e-08 + ArtUnc_67: 5.58758033e-10 + ArtUnc_68: -6.11019936e-10 + ArtUnc_69: -1.77760377e-11 + ArtUnc_70: 2.10531045e-10 + ArtUnc_71: 2.03602507e-12 + ArtUnc_72: 5.93277734e-10 + ArtUnc_73: 4.28001688e-11 + ArtUnc_74: 8.42143695e-11 + ArtUnc_75: -9.04698147e-10 + ArtUnc_76: -8.71138687e-12 + ArtUnc_77: -8.78349674e-12 + ArtUnc_78: 1.11571745e-09 + ArtUnc_79: -6.64758628e-10 + ArtUnc_80: 2.50565548e-12 + ArtUnc_81: 2.90535337e-11 + ArtUnc_82: -1.61431134e-12 + ArtUnc_83: -1.37928925e-11 + ArtUnc_84: 2.55994988e-11 + ArtUnc_85: -4.11365235e-13 + ArtUnc_86: 3.00548055e-12 + ArtUnc_87: 3.62734063e-12 + ArtUnc_88: -2.80132895e-12 + ArtUnc_89: -1.91682495e-11 + ArtUnc_90: -1.73173357e-11 + ArtUnc_91: -2.03407185e-12 + ArtUnc_92: 7.10788298e-11 + ArtUnc_93: -1.98240356e-12 + ArtUnc_94: -8.49836168e-13 + ArtUnc_95: 3.03057931e-11 + ArtUnc_96: 4.90524724e-12 - stat: 0 - Uncorr: 0.0008740000000000001 - RCES: 0.0028165455166923896 - ElEn: 0.0005664673077062788 - ElTh: 0.000229039700270499 - Lumi: 0.0006729800000000001 - LArN: 0.00043700000000000005 - StatMC: 0.00072542 - RadErr: 0.00011362000000000001 - Model_1: 0.0009949982360788385 - Model_2: 0.0009949982360788385 - ModelRW_1: 0.0006056511002219017 - ModelRW_2: 0.0006056511002219017 - JES_1: 0.003844517279399326 - JES_2: 0.003844517279399326 - ArtUnc_1: 9.753547439539828e-11 - ArtUnc_2: -6.227372784156302e-09 - ArtUnc_3: 1.708759179124174e-08 - ArtUnc_4: 4.319110708990544e-07 - ArtUnc_5: 1.55443369537763e-08 - ArtUnc_6: 7.296344354538225e-09 - ArtUnc_7: 6.5460003475791674e-06 - ArtUnc_8: -5.7244761028330045e-05 - ArtUnc_9: 1.186505533190126e-06 - ArtUnc_10: 4.336442172324861e-05 - ArtUnc_11: -8.82617970058097e-05 - ArtUnc_12: -7.2030212472301245e-06 - ArtUnc_13: -0.00015235000980223684 - ArtUnc_14: -4.796339927814513e-07 - ArtUnc_15: -1.0309022261121442e-06 - ArtUnc_16: 9.39159190546805e-08 - ArtUnc_17: 5.141719307884341e-06 - ArtUnc_18: -1.6788426091245276e-07 - ArtUnc_19: -1.2964071120157313e-05 - ArtUnc_20: -3.0078776123106327e-05 - ArtUnc_21: 1.492529708589883e-06 - ArtUnc_22: -0.00023554744594108016 - ArtUnc_23: -3.676078550964621e-06 - ArtUnc_24: 0.00010267558870354524 - ArtUnc_25: 6.497741781847948e-05 - ArtUnc_26: -1.8235778533686426e-05 - ArtUnc_27: -0.00032423701033369213 - ArtUnc_28: -1.4688165452177336e-05 - ArtUnc_29: -0.0001522793414196557 - ArtUnc_30: -5.9820840239537066e-05 - ArtUnc_31: 2.457065364193579e-05 - ArtUnc_32: -0.000504650218600457 - ArtUnc_33: 1.7699603926293156e-07 - ArtUnc_34: -4.924692061993343e-06 - ArtUnc_35: -7.714627557624232e-06 - ArtUnc_36: -2.2392528805489359e-07 - ArtUnc_37: 6.411402027397098e-06 - ArtUnc_38: -1.1162652040395937e-06 - ArtUnc_39: -1.1430952119947765e-06 - ArtUnc_40: -6.748838465346753e-08 - ArtUnc_41: -2.3494255885952587e-06 - ArtUnc_42: -3.555146864871654e-08 - ArtUnc_43: 4.703836380515194e-06 - ArtUnc_44: -1.0566857235536604e-05 - ArtUnc_45: 4.4945124539397075e-08 - ArtUnc_46: -2.4857258556887034e-08 - ArtUnc_47: -1.6350369399770955e-07 - ArtUnc_48: 1.0292275806389106e-08 - ArtUnc_49: 1.4375919532156121e-05 - ArtUnc_50: 4.584058390843983e-07 - ArtUnc_51: -2.5943913798833367e-08 - ArtUnc_52: -3.026087152871613e-08 - ArtUnc_53: 5.632813063282722e-09 - ArtUnc_54: -3.4802714012223778e-09 - ArtUnc_55: 1.3420913257163547e-07 - ArtUnc_56: -1.919451231774332e-08 - ArtUnc_57: -4.460334623172426e-09 - ArtUnc_58: 1.8572987929047742e-07 - ArtUnc_59: -1.5232168649282663e-09 - ArtUnc_60: 2.412302921897371e-08 - ArtUnc_61: -1.7882848468633827e-10 - ArtUnc_62: 1.7966622080932891e-09 - ArtUnc_63: -1.5714942133352477e-10 - ArtUnc_64: 6.671627784511517e-07 - ArtUnc_65: -1.025189755352918e-08 - ArtUnc_66: -4.632156231862248e-07 - ArtUnc_67: -6.161588354153124e-09 - ArtUnc_68: 6.201726802224839e-09 - ArtUnc_69: 2.1346750028956372e-10 - ArtUnc_70: -2.4861479308310165e-09 - ArtUnc_71: -2.787441481271272e-11 - ArtUnc_72: -7.099604145631049e-09 - ArtUnc_73: -5.6861308517293e-10 - ArtUnc_74: -1.4292003880250983e-09 - ArtUnc_75: 1.0248505960157929e-08 - ArtUnc_76: 1.0475918137984441e-10 - ArtUnc_77: 5.677704383775364e-11 - ArtUnc_78: -1.2579885201608965e-08 - ArtUnc_79: 7.794043392189298e-09 - ArtUnc_80: -7.579711414801293e-11 - ArtUnc_81: -3.430852531169544e-10 - ArtUnc_82: 1.775117049089012e-11 - ArtUnc_83: 1.675001844948761e-10 - ArtUnc_84: -3.033136767965014e-10 - ArtUnc_85: 4.20039384186154e-12 - ArtUnc_86: -2.7784398976116623e-11 - ArtUnc_87: -3.283629617375756e-11 - ArtUnc_88: 3.125116211259143e-11 - ArtUnc_89: 2.877883598046601e-10 - ArtUnc_90: 1.536643881776656e-10 - ArtUnc_91: 1.5183076375485108e-11 - ArtUnc_92: -7.963922779568559e-10 - ArtUnc_93: 1.8540106738393557e-11 - ArtUnc_94: 1.3093416286191433e-11 - ArtUnc_95: -3.1596399642754e-10 - ArtUnc_96: -5.1872171587344076e-11 + Uncorr: 8.74000000e-04 + RCES: 2.81654552e-03 + ElEn: 5.66467308e-04 + ElTh: 2.29039700e-04 + Lumi: 6.72980000e-04 + LArN: 4.37000000e-04 + StatMC: 7.25420000e-04 + RadErr: 1.13620000e-04 + Model_1: 9.94998236e-04 + Model_2: 9.94998236e-04 + ModelRW_1: 6.05651100e-04 + ModelRW_2: 6.05651100e-04 + JES_1: 3.84451728e-03 + JES_2: 3.84451728e-03 + ArtUnc_1: 9.75354744e-11 + ArtUnc_2: -6.22737278e-09 + ArtUnc_3: 1.70875918e-08 + ArtUnc_4: 4.31911071e-07 + ArtUnc_5: 1.55443370e-08 + ArtUnc_6: 7.29634435e-09 + ArtUnc_7: 6.54600035e-06 + ArtUnc_8: -5.72447610e-05 + ArtUnc_9: 1.18650553e-06 + ArtUnc_10: 4.33644217e-05 + ArtUnc_11: -8.82617970e-05 + ArtUnc_12: -7.20302125e-06 + ArtUnc_13: -1.52350010e-04 + ArtUnc_14: -4.79633993e-07 + ArtUnc_15: -1.03090223e-06 + ArtUnc_16: 9.39159191e-08 + ArtUnc_17: 5.14171931e-06 + ArtUnc_18: -1.67884261e-07 + ArtUnc_19: -1.29640711e-05 + ArtUnc_20: -3.00787761e-05 + ArtUnc_21: 1.49252971e-06 + ArtUnc_22: -2.35547446e-04 + ArtUnc_23: -3.67607855e-06 + ArtUnc_24: 1.02675589e-04 + ArtUnc_25: 6.49774178e-05 + ArtUnc_26: -1.82357785e-05 + ArtUnc_27: -3.24237010e-04 + ArtUnc_28: -1.46881655e-05 + ArtUnc_29: -1.52279341e-04 + ArtUnc_30: -5.98208402e-05 + ArtUnc_31: 2.45706536e-05 + ArtUnc_32: -5.04650219e-04 + ArtUnc_33: 1.76996039e-07 + ArtUnc_34: -4.92469206e-06 + ArtUnc_35: -7.71462756e-06 + ArtUnc_36: -2.23925288e-07 + ArtUnc_37: 6.41140203e-06 + ArtUnc_38: -1.11626520e-06 + ArtUnc_39: -1.14309521e-06 + ArtUnc_40: -6.74883847e-08 + ArtUnc_41: -2.34942559e-06 + ArtUnc_42: -3.55514686e-08 + ArtUnc_43: 4.70383638e-06 + ArtUnc_44: -1.05668572e-05 + ArtUnc_45: 4.49451245e-08 + ArtUnc_46: -2.48572586e-08 + ArtUnc_47: -1.63503694e-07 + ArtUnc_48: 1.02922758e-08 + ArtUnc_49: 1.43759195e-05 + ArtUnc_50: 4.58405839e-07 + ArtUnc_51: -2.59439138e-08 + ArtUnc_52: -3.02608715e-08 + ArtUnc_53: 5.63281306e-09 + ArtUnc_54: -3.48027140e-09 + ArtUnc_55: 1.34209133e-07 + ArtUnc_56: -1.91945123e-08 + ArtUnc_57: -4.46033462e-09 + ArtUnc_58: 1.85729879e-07 + ArtUnc_59: -1.52321686e-09 + ArtUnc_60: 2.41230292e-08 + ArtUnc_61: -1.78828485e-10 + ArtUnc_62: 1.79666221e-09 + ArtUnc_63: -1.57149421e-10 + ArtUnc_64: 6.67162778e-07 + ArtUnc_65: -1.02518976e-08 + ArtUnc_66: -4.63215623e-07 + ArtUnc_67: -6.16158835e-09 + ArtUnc_68: 6.20172680e-09 + ArtUnc_69: 2.13467500e-10 + ArtUnc_70: -2.48614793e-09 + ArtUnc_71: -2.78744148e-11 + ArtUnc_72: -7.09960415e-09 + ArtUnc_73: -5.68613085e-10 + ArtUnc_74: -1.42920039e-09 + ArtUnc_75: 1.02485060e-08 + ArtUnc_76: 1.04759181e-10 + ArtUnc_77: 5.67770438e-11 + ArtUnc_78: -1.25798852e-08 + ArtUnc_79: 7.79404339e-09 + ArtUnc_80: -7.57971141e-11 + ArtUnc_81: -3.43085253e-10 + ArtUnc_82: 1.77511705e-11 + ArtUnc_83: 1.67500184e-10 + ArtUnc_84: -3.03313677e-10 + ArtUnc_85: 4.20039384e-12 + ArtUnc_86: -2.77843990e-11 + ArtUnc_87: -3.28362962e-11 + ArtUnc_88: 3.12511621e-11 + ArtUnc_89: 2.87788360e-10 + ArtUnc_90: 1.53664388e-10 + ArtUnc_91: 1.51830764e-11 + ArtUnc_92: -7.96392278e-10 + ArtUnc_93: 1.85401067e-11 + ArtUnc_94: 1.30934163e-11 + ArtUnc_95: -3.15963996e-10 + ArtUnc_96: -5.18721716e-11 - stat: 0 Uncorr: 0.000236 - RCES: 0.00022117053239525378 - ElEn: 2.2972148354039505e-05 - ElTh: 2.7395320768335607e-05 - Lumi: 0.00018172000000000002 + RCES: 2.21170532e-04 + ElEn: 2.29721484e-05 + ElTh: 2.73953208e-05 + Lumi: 1.81720000e-04 LArN: 0.000118 - StatMC: 0.00019823999999999997 - RadErr: 8.496e-05 - Model_1: 0.0005156505491124778 - Model_2: 0.0005156505491124778 - ModelRW_1: 0.0008243733697785245 - ModelRW_2: 0.0008243733697785245 - JES_1: 0.0006451179898282174 - JES_2: 0.0006451179898282174 - ArtUnc_1: 7.051224216026941e-11 - ArtUnc_2: -1.3977675181295216e-08 - ArtUnc_3: -7.119561085981802e-08 - ArtUnc_4: -2.8058198438083383e-07 - ArtUnc_5: -9.59221642205358e-09 - ArtUnc_6: -2.02978998101931e-09 - ArtUnc_7: -1.3472556520548992e-06 - ArtUnc_8: 4.150934493663712e-06 - ArtUnc_9: -5.952842188927762e-08 - ArtUnc_10: 5.438010394919081e-08 - ArtUnc_11: 7.05979688352413e-08 - ArtUnc_12: 9.139260861476654e-09 - ArtUnc_13: -1.2790170539615633e-06 - ArtUnc_14: 2.5617408347870514e-08 - ArtUnc_15: -1.9841482618095413e-08 - ArtUnc_16: 1.6198073526381094e-10 - ArtUnc_17: 2.3983235953556213e-07 - ArtUnc_18: -7.139715679976194e-09 - ArtUnc_19: -7.286802604846646e-07 - ArtUnc_20: -1.534583304142478e-06 - ArtUnc_21: 9.112349277463271e-08 - ArtUnc_22: -1.3098744061619803e-05 - ArtUnc_23: -2.3664354657076953e-07 - ArtUnc_24: 5.656671937789673e-06 - ArtUnc_25: 7.335671792195338e-06 - ArtUnc_26: -1.4577249046427076e-06 - ArtUnc_27: -2.2342813730992484e-05 - ArtUnc_28: -9.32741641681257e-07 - ArtUnc_29: -3.5711130448348982e-06 - ArtUnc_30: -2.3298242139567014e-06 - ArtUnc_31: 9.539461832991869e-07 - ArtUnc_32: -3.365468085499373e-05 - ArtUnc_33: 1.0814802950801851e-08 - ArtUnc_34: 5.098518791699796e-07 - ArtUnc_35: 7.814559505928643e-07 - ArtUnc_36: -6.442488936637111e-06 - ArtUnc_37: 1.9979813786580084e-05 - ArtUnc_38: -3.559577279397605e-06 - ArtUnc_39: -2.0489934740514652e-05 - ArtUnc_40: 3.024895811611956e-08 - ArtUnc_41: 6.08972888844798e-05 - ArtUnc_42: -3.780216667070498e-07 - ArtUnc_43: -8.955261597295062e-05 - ArtUnc_44: -4.8024390229445863e-05 - ArtUnc_45: 6.222098420543644e-07 - ArtUnc_46: -1.368795153262544e-05 - ArtUnc_47: 9.264014209204773e-07 - ArtUnc_48: 1.6094043163831705e-08 - ArtUnc_49: -0.00017973388342818443 - ArtUnc_50: -4.459666900137267e-06 - ArtUnc_51: 2.038050437567206e-07 - ArtUnc_52: -1.0862800138360604e-07 - ArtUnc_53: 3.9714255876467446e-09 - ArtUnc_54: 2.966360374701162e-09 - ArtUnc_55: -1.8811433941314635e-06 - ArtUnc_56: -1.9456883465457418e-06 - ArtUnc_57: -5.713827041420243e-07 - ArtUnc_58: -2.6674338272983496e-06 - ArtUnc_59: 3.8161231902587136e-08 - ArtUnc_60: 2.6960411564784075e-06 - ArtUnc_61: 2.2069932666540668e-09 - ArtUnc_62: 3.1335045374841156e-08 - ArtUnc_63: -3.6382703959669343e-09 - ArtUnc_64: -5.303985659363463e-06 - ArtUnc_65: 3.295262320683488e-08 - ArtUnc_66: 6.51419437064317e-06 - ArtUnc_67: 1.224938548401954e-07 - ArtUnc_68: -6.0424720363524e-08 - ArtUnc_69: -2.525003177364441e-09 - ArtUnc_70: 1.6964903821867333e-08 - ArtUnc_71: -4.213129200925123e-11 - ArtUnc_72: 1.0434560435049898e-09 - ArtUnc_73: 2.2988054108867716e-10 - ArtUnc_74: -4.029581933211132e-08 - ArtUnc_75: 1.1695826127329766e-08 - ArtUnc_76: -1.1125737214139704e-09 - ArtUnc_77: -9.908908004047555e-10 - ArtUnc_78: 2.1566338396236692e-07 - ArtUnc_79: 7.525356436864798e-08 - ArtUnc_80: -5.458073635477984e-10 - ArtUnc_81: 6.330795480691271e-09 - ArtUnc_82: 2.219836404681475e-10 - ArtUnc_83: -1.4846246330279971e-09 - ArtUnc_84: 1.368357657876286e-10 - ArtUnc_85: 2.579468971964336e-10 - ArtUnc_86: 7.611218948708382e-11 - ArtUnc_87: 3.4903456058610976e-11 - ArtUnc_88: -7.88311010620826e-11 - ArtUnc_89: 1.7002038126260505e-09 - ArtUnc_90: -1.1830090352260171e-09 - ArtUnc_91: 6.700141510953795e-10 - ArtUnc_92: 1.7580036048980386e-09 - ArtUnc_93: -4.661069203930877e-11 - ArtUnc_94: -5.5651946891796474e-11 - ArtUnc_95: -2.1446402629044331e-10 - ArtUnc_96: -5.1926693597453337e-11 + StatMC: 1.98240000e-04 + RadErr: 8.49600000e-05 + Model_1: 5.15650549e-04 + Model_2: 5.15650549e-04 + ModelRW_1: 8.24373370e-04 + ModelRW_2: 8.24373370e-04 + JES_1: 6.45117990e-04 + JES_2: 6.45117990e-04 + ArtUnc_1: 7.05122422e-11 + ArtUnc_2: -1.39776752e-08 + ArtUnc_3: -7.11956109e-08 + ArtUnc_4: -2.80581984e-07 + ArtUnc_5: -9.59221642e-09 + ArtUnc_6: -2.02978998e-09 + ArtUnc_7: -1.34725565e-06 + ArtUnc_8: 4.15093449e-06 + ArtUnc_9: -5.95284219e-08 + ArtUnc_10: 5.43801039e-08 + ArtUnc_11: 7.05979688e-08 + ArtUnc_12: 9.13926086e-09 + ArtUnc_13: -1.27901705e-06 + ArtUnc_14: 2.56174083e-08 + ArtUnc_15: -1.98414826e-08 + ArtUnc_16: 1.61980735e-10 + ArtUnc_17: 2.39832360e-07 + ArtUnc_18: -7.13971568e-09 + ArtUnc_19: -7.28680260e-07 + ArtUnc_20: -1.53458330e-06 + ArtUnc_21: 9.11234928e-08 + ArtUnc_22: -1.30987441e-05 + ArtUnc_23: -2.36643547e-07 + ArtUnc_24: 5.65667194e-06 + ArtUnc_25: 7.33567179e-06 + ArtUnc_26: -1.45772490e-06 + ArtUnc_27: -2.23428137e-05 + ArtUnc_28: -9.32741642e-07 + ArtUnc_29: -3.57111304e-06 + ArtUnc_30: -2.32982421e-06 + ArtUnc_31: 9.53946183e-07 + ArtUnc_32: -3.36546809e-05 + ArtUnc_33: 1.08148030e-08 + ArtUnc_34: 5.09851879e-07 + ArtUnc_35: 7.81455951e-07 + ArtUnc_36: -6.44248894e-06 + ArtUnc_37: 1.99798138e-05 + ArtUnc_38: -3.55957728e-06 + ArtUnc_39: -2.04899347e-05 + ArtUnc_40: 3.02489581e-08 + ArtUnc_41: 6.08972889e-05 + ArtUnc_42: -3.78021667e-07 + ArtUnc_43: -8.95526160e-05 + ArtUnc_44: -4.80243902e-05 + ArtUnc_45: 6.22209842e-07 + ArtUnc_46: -1.36879515e-05 + ArtUnc_47: 9.26401421e-07 + ArtUnc_48: 1.60940432e-08 + ArtUnc_49: -1.79733883e-04 + ArtUnc_50: -4.45966690e-06 + ArtUnc_51: 2.03805044e-07 + ArtUnc_52: -1.08628001e-07 + ArtUnc_53: 3.97142559e-09 + ArtUnc_54: 2.96636037e-09 + ArtUnc_55: -1.88114339e-06 + ArtUnc_56: -1.94568835e-06 + ArtUnc_57: -5.71382704e-07 + ArtUnc_58: -2.66743383e-06 + ArtUnc_59: 3.81612319e-08 + ArtUnc_60: 2.69604116e-06 + ArtUnc_61: 2.20699327e-09 + ArtUnc_62: 3.13350454e-08 + ArtUnc_63: -3.63827040e-09 + ArtUnc_64: -5.30398566e-06 + ArtUnc_65: 3.29526232e-08 + ArtUnc_66: 6.51419437e-06 + ArtUnc_67: 1.22493855e-07 + ArtUnc_68: -6.04247204e-08 + ArtUnc_69: -2.52500318e-09 + ArtUnc_70: 1.69649038e-08 + ArtUnc_71: -4.21312920e-11 + ArtUnc_72: 1.04345604e-09 + ArtUnc_73: 2.29880541e-10 + ArtUnc_74: -4.02958193e-08 + ArtUnc_75: 1.16958261e-08 + ArtUnc_76: -1.11257372e-09 + ArtUnc_77: -9.90890800e-10 + ArtUnc_78: 2.15663384e-07 + ArtUnc_79: 7.52535644e-08 + ArtUnc_80: -5.45807364e-10 + ArtUnc_81: 6.33079548e-09 + ArtUnc_82: 2.21983640e-10 + ArtUnc_83: -1.48462463e-09 + ArtUnc_84: 1.36835766e-10 + ArtUnc_85: 2.57946897e-10 + ArtUnc_86: 7.61121895e-11 + ArtUnc_87: 3.49034561e-11 + ArtUnc_88: -7.88311011e-11 + ArtUnc_89: 1.70020381e-09 + ArtUnc_90: -1.18300904e-09 + ArtUnc_91: 6.70014151e-10 + ArtUnc_92: 1.75800360e-09 + ArtUnc_93: -4.66106920e-11 + ArtUnc_94: -5.56519469e-11 + ArtUnc_95: -2.14464026e-10 + ArtUnc_96: -5.19266936e-11 - stat: 0 Uncorr: 4.62e-05 - RCES: 4.689413791722799e-05 - ElEn: 2.0727021276584823e-05 - ElTh: 1.056556728245105e-05 - Lumi: 3.5574e-05 + RCES: 4.68941379e-05 + ElEn: 2.07270213e-05 + ElTh: 1.05655673e-05 + Lumi: 3.55740000e-05 LArN: 2.31e-05 - StatMC: 7.392e-05 - RadErr: 3.8808e-05 - Model_1: 0.00019372321641455368 - Model_2: 0.00019372321641455368 - ModelRW_1: 0.00021920451638139207 - ModelRW_2: 0.00021920451638139207 - JES_1: 0.00012645683533127024 - JES_2: 0.00012645683533127024 - ArtUnc_1: 5.02819392911427e-14 - ArtUnc_2: -7.93092386430135e-12 - ArtUnc_3: -3.500863412851607e-11 - ArtUnc_4: -9.003481958336642e-11 - ArtUnc_5: -3.1431617742647692e-12 - ArtUnc_6: -2.6228548749244885e-13 - ArtUnc_7: 2.4988272275362133e-10 - ArtUnc_8: -7.095544583119142e-09 - ArtUnc_9: 1.7262562010402244e-10 - ArtUnc_10: 9.466624384963338e-09 - ArtUnc_11: -1.879788980545776e-08 - ArtUnc_12: -1.548158785248519e-09 - ArtUnc_13: -4.131411529644298e-08 - ArtUnc_14: 1.2381720443187933e-10 - ArtUnc_15: -5.996467589130546e-10 - ArtUnc_16: 4.2392744590761055e-11 - ArtUnc_17: 3.800322858826508e-09 - ArtUnc_18: -1.161756959648318e-10 - ArtUnc_19: -9.204297352626248e-09 - ArtUnc_20: -3.29521590064212e-08 - ArtUnc_21: 1.7060190359246318e-09 - ArtUnc_22: -3.159032400526775e-07 - ArtUnc_23: -6.308935847250307e-09 - ArtUnc_24: 1.7278494489382729e-07 - ArtUnc_25: 1.3875472113931756e-07 - ArtUnc_26: -2.9595791064606375e-08 - ArtUnc_27: -6.592875651505602e-07 - ArtUnc_28: -2.4985005971144744e-08 - ArtUnc_29: -3.1242140113639304e-07 - ArtUnc_30: -1.2830119955860022e-07 - ArtUnc_31: 5.325623570444768e-08 - ArtUnc_32: -1.557857961817675e-06 - ArtUnc_33: 1.8667160570307258e-10 - ArtUnc_34: 3.4328292949259264e-08 - ArtUnc_35: 1.5603640778777838e-08 - ArtUnc_36: -3.41441233333585e-07 - ArtUnc_37: 6.324378226229994e-07 - ArtUnc_38: -1.1310962710342948e-07 - ArtUnc_39: -5.43606112255573e-07 - ArtUnc_40: 9.94074320502835e-09 - ArtUnc_41: 2.723372214838412e-06 - ArtUnc_42: 3.5212973382349376e-09 - ArtUnc_43: -3.2286787244513157e-06 - ArtUnc_44: -1.137559147814532e-06 - ArtUnc_45: 1.8692778347107762e-08 - ArtUnc_46: -4.703960347728094e-07 - ArtUnc_47: 1.7808546771262623e-07 - ArtUnc_48: -6.883291106153041e-09 - ArtUnc_49: -5.562381912637747e-06 - ArtUnc_50: -1.1534748792065501e-07 - ArtUnc_51: -1.028575206998728e-06 - ArtUnc_52: 3.031560972701436e-07 - ArtUnc_53: 6.9722900824939765e-09 - ArtUnc_54: -8.435772815707573e-08 - ArtUnc_55: -1.3118817752018197e-05 - ArtUnc_56: 8.339153477261923e-06 - ArtUnc_57: 2.363714414463892e-06 - ArtUnc_58: -2.2236860622236516e-05 - ArtUnc_59: -4.699881721560735e-08 - ArtUnc_60: -2.2636716379401355e-05 - ArtUnc_61: -3.1315628659250002e-09 - ArtUnc_62: -8.573226609941899e-07 - ArtUnc_63: 9.546774888907887e-08 - ArtUnc_64: -4.345762967427407e-05 - ArtUnc_65: 1.6714745717974936e-06 - ArtUnc_66: -5.062688865522955e-05 - ArtUnc_67: -1.662439106353279e-06 - ArtUnc_68: 3.187052164572777e-07 - ArtUnc_69: 4.13515625985064e-08 - ArtUnc_70: -2.9553797995699014e-07 - ArtUnc_71: 2.7263250348303047e-09 - ArtUnc_72: 1.3610040269891257e-06 - ArtUnc_73: 1.0264420914310467e-07 - ArtUnc_74: 5.69311430194333e-07 - ArtUnc_75: -1.7030781847754871e-06 - ArtUnc_76: -6.269284013211263e-09 - ArtUnc_77: 8.642190079204772e-09 - ArtUnc_78: -3.365296810775796e-06 - ArtUnc_79: -1.84430929476948e-06 - ArtUnc_80: 9.498543448078409e-09 - ArtUnc_81: -9.359532363282695e-08 - ArtUnc_82: -5.063739805795505e-09 - ArtUnc_83: 1.672309867316878e-08 - ArtUnc_84: 1.257677996302173e-08 - ArtUnc_85: -5.998074356448583e-09 - ArtUnc_86: -1.4311052060218262e-09 - ArtUnc_87: -1.0586207274600761e-09 - ArtUnc_88: -1.508268361170333e-10 - ArtUnc_89: -3.94871824587661e-08 - ArtUnc_90: 1.8390899459919323e-08 - ArtUnc_91: -1.220670268979323e-08 - ArtUnc_92: -3.9562589117971506e-08 - ArtUnc_93: 2.223360481207455e-10 - ArtUnc_94: 1.6431022394438529e-09 - ArtUnc_95: 2.7427779419367713e-09 - ArtUnc_96: 2.0710559073924454e-10 + StatMC: 7.39200000e-05 + RadErr: 3.88080000e-05 + Model_1: 1.93723216e-04 + Model_2: 1.93723216e-04 + ModelRW_1: 2.19204516e-04 + ModelRW_2: 2.19204516e-04 + JES_1: 1.26456835e-04 + JES_2: 1.26456835e-04 + ArtUnc_1: 5.02819393e-14 + ArtUnc_2: -7.93092386e-12 + ArtUnc_3: -3.50086341e-11 + ArtUnc_4: -9.00348196e-11 + ArtUnc_5: -3.14316177e-12 + ArtUnc_6: -2.62285487e-13 + ArtUnc_7: 2.49882723e-10 + ArtUnc_8: -7.09554458e-09 + ArtUnc_9: 1.72625620e-10 + ArtUnc_10: 9.46662438e-09 + ArtUnc_11: -1.87978898e-08 + ArtUnc_12: -1.54815879e-09 + ArtUnc_13: -4.13141153e-08 + ArtUnc_14: 1.23817204e-10 + ArtUnc_15: -5.99646759e-10 + ArtUnc_16: 4.23927446e-11 + ArtUnc_17: 3.80032286e-09 + ArtUnc_18: -1.16175696e-10 + ArtUnc_19: -9.20429735e-09 + ArtUnc_20: -3.29521590e-08 + ArtUnc_21: 1.70601904e-09 + ArtUnc_22: -3.15903240e-07 + ArtUnc_23: -6.30893585e-09 + ArtUnc_24: 1.72784945e-07 + ArtUnc_25: 1.38754721e-07 + ArtUnc_26: -2.95957911e-08 + ArtUnc_27: -6.59287565e-07 + ArtUnc_28: -2.49850060e-08 + ArtUnc_29: -3.12421401e-07 + ArtUnc_30: -1.28301200e-07 + ArtUnc_31: 5.32562357e-08 + ArtUnc_32: -1.55785796e-06 + ArtUnc_33: 1.86671606e-10 + ArtUnc_34: 3.43282929e-08 + ArtUnc_35: 1.56036408e-08 + ArtUnc_36: -3.41441233e-07 + ArtUnc_37: 6.32437823e-07 + ArtUnc_38: -1.13109627e-07 + ArtUnc_39: -5.43606112e-07 + ArtUnc_40: 9.94074321e-09 + ArtUnc_41: 2.72337221e-06 + ArtUnc_42: 3.52129734e-09 + ArtUnc_43: -3.22867872e-06 + ArtUnc_44: -1.13755915e-06 + ArtUnc_45: 1.86927783e-08 + ArtUnc_46: -4.70396035e-07 + ArtUnc_47: 1.78085468e-07 + ArtUnc_48: -6.88329111e-09 + ArtUnc_49: -5.56238191e-06 + ArtUnc_50: -1.15347488e-07 + ArtUnc_51: -1.02857521e-06 + ArtUnc_52: 3.03156097e-07 + ArtUnc_53: 6.97229008e-09 + ArtUnc_54: -8.43577282e-08 + ArtUnc_55: -1.31188178e-05 + ArtUnc_56: 8.33915348e-06 + ArtUnc_57: 2.36371441e-06 + ArtUnc_58: -2.22368606e-05 + ArtUnc_59: -4.69988172e-08 + ArtUnc_60: -2.26367164e-05 + ArtUnc_61: -3.13156287e-09 + ArtUnc_62: -8.57322661e-07 + ArtUnc_63: 9.54677489e-08 + ArtUnc_64: -4.34576297e-05 + ArtUnc_65: 1.67147457e-06 + ArtUnc_66: -5.06268887e-05 + ArtUnc_67: -1.66243911e-06 + ArtUnc_68: 3.18705216e-07 + ArtUnc_69: 4.13515626e-08 + ArtUnc_70: -2.95537980e-07 + ArtUnc_71: 2.72632503e-09 + ArtUnc_72: 1.36100403e-06 + ArtUnc_73: 1.02644209e-07 + ArtUnc_74: 5.69311430e-07 + ArtUnc_75: -1.70307818e-06 + ArtUnc_76: -6.26928401e-09 + ArtUnc_77: 8.64219008e-09 + ArtUnc_78: -3.36529681e-06 + ArtUnc_79: -1.84430929e-06 + ArtUnc_80: 9.49854345e-09 + ArtUnc_81: -9.35953236e-08 + ArtUnc_82: -5.06373981e-09 + ArtUnc_83: 1.67230987e-08 + ArtUnc_84: 1.25767800e-08 + ArtUnc_85: -5.99807436e-09 + ArtUnc_86: -1.43110521e-09 + ArtUnc_87: -1.05862073e-09 + ArtUnc_88: -1.50826836e-10 + ArtUnc_89: -3.94871825e-08 + ArtUnc_90: 1.83908995e-08 + ArtUnc_91: -1.22067027e-08 + ArtUnc_92: -3.95625891e-08 + ArtUnc_93: 2.22336048e-10 + ArtUnc_94: 1.64310224e-09 + ArtUnc_95: 2.74277794e-09 + ArtUnc_96: 2.07105591e-10 - stat: 0 Uncorr: 5.56e-06 - RCES: 7.994614937568912e-06 - ElEn: 5.3464972720464376e-06 - ElTh: 5.996235095457816e-06 - Lumi: 4.2812e-06 + RCES: 7.99461494e-06 + ElEn: 5.34649727e-06 + ElTh: 5.99623510e-06 + Lumi: 4.28120000e-06 LArN: 2.78e-06 - StatMC: 2.8244799999999998e-05 - RadErr: 9.451999999999999e-06 - Model_1: 4.867213964805739e-05 - Model_2: 4.867213964805739e-05 - ModelRW_1: 1.5057697484011292e-05 - ModelRW_2: 1.5057697484011292e-05 - JES_1: 2.98756758477528e-05 - JES_2: 2.98756758477528e-05 - ArtUnc_1: 3.1649572545798636e-16 - ArtUnc_2: -5.233577612250058e-14 - ArtUnc_3: 1.2009689584926394e-13 - ArtUnc_4: 5.277572473053857e-12 - ArtUnc_5: 1.9602452330203135e-13 - ArtUnc_6: 1.1950603216690673e-13 - ArtUnc_7: 1.177091946862514e-10 - ArtUnc_8: -1.4179526772949043e-09 - ArtUnc_9: 3.140778790121353e-11 - ArtUnc_10: 1.5709557509707463e-09 - ArtUnc_11: -3.1240802535447885e-09 - ArtUnc_12: -2.518727268235315e-10 - ArtUnc_13: -7.045050237369745e-09 - ArtUnc_14: -2.4889382837967554e-11 - ArtUnc_15: -6.151766026825989e-11 - ArtUnc_16: 5.582573905562612e-12 - ArtUnc_17: 3.960908745469827e-10 - ArtUnc_18: -1.2186192497896489e-11 - ArtUnc_19: -1.2867497103024744e-09 - ArtUnc_20: -4.035383590529554e-09 - ArtUnc_21: 2.330392107937851e-10 - ArtUnc_22: -4.487504907636002e-08 - ArtUnc_23: -7.936318198209268e-10 - ArtUnc_24: 2.371442818121514e-08 - ArtUnc_25: 1.574975239816285e-08 - ArtUnc_26: -4.309261165127264e-09 - ArtUnc_27: -9.7984030705831e-08 - ArtUnc_28: -4.944339987828451e-09 - ArtUnc_29: -5.412031033562565e-08 - ArtUnc_30: -2.2124207161280466e-08 - ArtUnc_31: 9.099620059241552e-09 - ArtUnc_32: -2.4212284907869234e-07 - ArtUnc_33: 7.643746265587136e-11 - ArtUnc_34: -2.531175015901532e-09 - ArtUnc_35: -4.649292937064408e-09 - ArtUnc_36: 2.1601831095153314e-10 - ArtUnc_37: 1.4995257681146108e-09 - ArtUnc_38: -1.5743773344953369e-10 - ArtUnc_39: 7.455873430691035e-09 - ArtUnc_40: -4.957949681526738e-11 - ArtUnc_41: -2.9637995206043367e-08 - ArtUnc_42: 1.4364644653972603e-09 - ArtUnc_43: 8.010985922253236e-08 - ArtUnc_44: 1.1402569191300257e-08 - ArtUnc_45: -4.70319844532275e-10 - ArtUnc_46: 1.0023033931634319e-08 - ArtUnc_47: 7.628779905008244e-09 - ArtUnc_48: -4.3229700830991953e-10 - ArtUnc_49: 3.164264343360258e-07 - ArtUnc_50: 1.244365852390118e-08 - ArtUnc_51: -5.759850014053632e-08 - ArtUnc_52: 4.17163704070633e-08 - ArtUnc_53: -2.931442056952663e-09 - ArtUnc_54: -3.5184202673116693e-09 - ArtUnc_55: -4.5051482319390554e-07 - ArtUnc_56: 4.7492041930752146e-07 - ArtUnc_57: 1.4149340622586435e-07 - ArtUnc_58: -5.06873105407668e-07 - ArtUnc_59: -4.014248528158959e-09 - ArtUnc_60: -6.525009893137404e-07 - ArtUnc_61: 7.476582192990769e-10 - ArtUnc_62: -6.224558013585522e-08 - ArtUnc_63: 5.947352900612051e-09 - ArtUnc_64: -4.6023902239792263e-07 - ArtUnc_65: 1.469646262779821e-08 - ArtUnc_66: -8.742215561408021e-07 - ArtUnc_67: 2.685437413470425e-07 - ArtUnc_68: -2.515600809491753e-08 - ArtUnc_69: -9.129200909773729e-08 - ArtUnc_70: 2.0080733355498856e-06 - ArtUnc_71: 2.981855795298056e-08 - ArtUnc_72: 1.2038558502867265e-06 - ArtUnc_73: -3.738286373691037e-09 - ArtUnc_74: 7.397192237967834e-06 - ArtUnc_75: -1.1239358915581491e-07 - ArtUnc_76: 1.9660642274449898e-07 - ArtUnc_77: 2.0281556677642994e-07 - ArtUnc_78: 1.2953754330491275e-05 - ArtUnc_79: -2.117380884707036e-05 - ArtUnc_80: 3.964956462254869e-07 - ArtUnc_81: 2.6821229728058613e-07 - ArtUnc_82: -5.169686328983974e-08 - ArtUnc_83: -1.592215483144535e-07 - ArtUnc_84: 7.311494935121575e-07 - ArtUnc_85: 2.9648856667801234e-09 - ArtUnc_86: -2.056962891334345e-08 - ArtUnc_87: -2.2139520866865153e-08 - ArtUnc_88: -3.832132486986376e-08 - ArtUnc_89: -9.456451570329005e-07 - ArtUnc_90: 2.959816264128777e-07 - ArtUnc_91: 1.36460411354434e-07 - ArtUnc_92: 1.6368869442189318e-06 - ArtUnc_93: -4.62625192359946e-09 - ArtUnc_94: -2.907941765743483e-08 - ArtUnc_95: 1.2467227997260188e-08 - ArtUnc_96: -9.500208452465233e-09 + StatMC: 2.82448000e-05 + RadErr: 9.45200000e-06 + Model_1: 4.86721396e-05 + Model_2: 4.86721396e-05 + ModelRW_1: 1.50576975e-05 + ModelRW_2: 1.50576975e-05 + JES_1: 2.98756758e-05 + JES_2: 2.98756758e-05 + ArtUnc_1: 3.16495725e-16 + ArtUnc_2: -5.23357761e-14 + ArtUnc_3: 1.20096896e-13 + ArtUnc_4: 5.27757247e-12 + ArtUnc_5: 1.96024523e-13 + ArtUnc_6: 1.19506032e-13 + ArtUnc_7: 1.17709195e-10 + ArtUnc_8: -1.41795268e-09 + ArtUnc_9: 3.14077879e-11 + ArtUnc_10: 1.57095575e-09 + ArtUnc_11: -3.12408025e-09 + ArtUnc_12: -2.51872727e-10 + ArtUnc_13: -7.04505024e-09 + ArtUnc_14: -2.48893828e-11 + ArtUnc_15: -6.15176603e-11 + ArtUnc_16: 5.58257391e-12 + ArtUnc_17: 3.96090875e-10 + ArtUnc_18: -1.21861925e-11 + ArtUnc_19: -1.28674971e-09 + ArtUnc_20: -4.03538359e-09 + ArtUnc_21: 2.33039211e-10 + ArtUnc_22: -4.48750491e-08 + ArtUnc_23: -7.93631820e-10 + ArtUnc_24: 2.37144282e-08 + ArtUnc_25: 1.57497524e-08 + ArtUnc_26: -4.30926117e-09 + ArtUnc_27: -9.79840307e-08 + ArtUnc_28: -4.94433999e-09 + ArtUnc_29: -5.41203103e-08 + ArtUnc_30: -2.21242072e-08 + ArtUnc_31: 9.09962006e-09 + ArtUnc_32: -2.42122849e-07 + ArtUnc_33: 7.64374627e-11 + ArtUnc_34: -2.53117502e-09 + ArtUnc_35: -4.64929294e-09 + ArtUnc_36: 2.16018311e-10 + ArtUnc_37: 1.49952577e-09 + ArtUnc_38: -1.57437733e-10 + ArtUnc_39: 7.45587343e-09 + ArtUnc_40: -4.95794968e-11 + ArtUnc_41: -2.96379952e-08 + ArtUnc_42: 1.43646447e-09 + ArtUnc_43: 8.01098592e-08 + ArtUnc_44: 1.14025692e-08 + ArtUnc_45: -4.70319845e-10 + ArtUnc_46: 1.00230339e-08 + ArtUnc_47: 7.62877991e-09 + ArtUnc_48: -4.32297008e-10 + ArtUnc_49: 3.16426434e-07 + ArtUnc_50: 1.24436585e-08 + ArtUnc_51: -5.75985001e-08 + ArtUnc_52: 4.17163704e-08 + ArtUnc_53: -2.93144206e-09 + ArtUnc_54: -3.51842027e-09 + ArtUnc_55: -4.50514823e-07 + ArtUnc_56: 4.74920419e-07 + ArtUnc_57: 1.41493406e-07 + ArtUnc_58: -5.06873105e-07 + ArtUnc_59: -4.01424853e-09 + ArtUnc_60: -6.52500989e-07 + ArtUnc_61: 7.47658219e-10 + ArtUnc_62: -6.22455801e-08 + ArtUnc_63: 5.94735290e-09 + ArtUnc_64: -4.60239022e-07 + ArtUnc_65: 1.46964626e-08 + ArtUnc_66: -8.74221556e-07 + ArtUnc_67: 2.68543741e-07 + ArtUnc_68: -2.51560081e-08 + ArtUnc_69: -9.12920091e-08 + ArtUnc_70: 2.00807334e-06 + ArtUnc_71: 2.98185580e-08 + ArtUnc_72: 1.20385585e-06 + ArtUnc_73: -3.73828637e-09 + ArtUnc_74: 7.39719224e-06 + ArtUnc_75: -1.12393589e-07 + ArtUnc_76: 1.96606423e-07 + ArtUnc_77: 2.02815567e-07 + ArtUnc_78: 1.29537543e-05 + ArtUnc_79: -2.11738088e-05 + ArtUnc_80: 3.96495646e-07 + ArtUnc_81: 2.68212297e-07 + ArtUnc_82: -5.16968633e-08 + ArtUnc_83: -1.59221548e-07 + ArtUnc_84: 7.31149494e-07 + ArtUnc_85: 2.96488567e-09 + ArtUnc_86: -2.05696289e-08 + ArtUnc_87: -2.21395209e-08 + ArtUnc_88: -3.83213249e-08 + ArtUnc_89: -9.45645157e-07 + ArtUnc_90: 2.95981626e-07 + ArtUnc_91: 1.36460411e-07 + ArtUnc_92: 1.63688694e-06 + ArtUnc_93: -4.62625192e-09 + ArtUnc_94: -2.90794177e-08 + ArtUnc_95: 1.24672280e-08 + ArtUnc_96: -9.50020845e-09 - stat: 0 - Uncorr: 8.349999999999999e-07 - RCES: 5.301538229785296e-06 - ElEn: 5.023153119493273e-06 - ElTh: 2.818962968007916e-06 - Lumi: 6.429499999999999e-07 - LArN: 4.1749999999999997e-07 - StatMC: 1.99732e-05 - RadErr: 3.54875e-06 - Model_1: 2.463881759239371e-05 - Model_2: 2.463881759239371e-05 - ModelRW_1: 2.593186840781049e-05 - ModelRW_2: 2.593186840781049e-05 - JES_1: 3.496741334978897e-06 - JES_2: 3.496741334978897e-06 - ArtUnc_1: 7.525551332810761e-19 - ArtUnc_2: 1.7011065060993183e-18 - ArtUnc_3: 2.2088374550225672e-17 - ArtUnc_4: 1.2241962774379785e-16 - ArtUnc_5: 4.140643639484835e-18 - ArtUnc_6: 1.838631669346577e-18 - ArtUnc_7: 4.662605559246975e-16 - ArtUnc_8: 3.6959069714146945e-15 - ArtUnc_9: 4.1228378670082187e-17 - ArtUnc_10: -1.6732250973069617e-14 - ArtUnc_11: 2.906247935746357e-14 - ArtUnc_12: 2.07354682755585e-15 - ArtUnc_13: 1.0956125714146772e-13 - ArtUnc_14: -7.645551038861831e-16 - ArtUnc_15: 4.445232595615555e-15 - ArtUnc_16: -2.675054665071818e-16 - ArtUnc_17: -6.686565834819298e-15 - ArtUnc_18: 1.8429779658553334e-16 - ArtUnc_19: 5.3093938955127536e-14 - ArtUnc_20: 1.6034412809324093e-13 - ArtUnc_21: -9.114499216275052e-15 - ArtUnc_22: 2.8160976159407595e-12 - ArtUnc_23: 5.926044542417139e-14 - ArtUnc_24: -1.9827743594159214e-12 - ArtUnc_25: -2.8747873249342066e-13 - ArtUnc_26: 1.6040258231256255e-13 - ArtUnc_27: 8.751908398152517e-12 - ArtUnc_28: 3.243057790862044e-13 - ArtUnc_29: 6.553866976012681e-12 - ArtUnc_30: 2.568968732178255e-12 - ArtUnc_31: -1.0753638369503453e-12 - ArtUnc_32: 4.1544951068356036e-11 - ArtUnc_33: -1.7348277059421816e-15 - ArtUnc_34: -1.5040569541908268e-12 - ArtUnc_35: -7.984848532209664e-13 - ArtUnc_36: 2.4281165361617614e-11 - ArtUnc_37: -4.750445954573314e-11 - ArtUnc_38: 9.352170382692404e-12 - ArtUnc_39: 5.0030111451300346e-11 - ArtUnc_40: -9.794687305802967e-13 - ArtUnc_41: -3.384009666384961e-10 - ArtUnc_42: 9.145350864578396e-12 - ArtUnc_43: 5.444991103342456e-10 - ArtUnc_44: 2.164790135155239e-10 - ArtUnc_45: -5.036337921055136e-12 - ArtUnc_46: 7.572012011880331e-11 - ArtUnc_47: 1.3122931491457895e-11 - ArtUnc_48: -1.6235023239829938e-12 - ArtUnc_49: 1.4463868992619182e-09 - ArtUnc_50: 6.487919379608554e-11 - ArtUnc_51: 2.564045270519593e-10 - ArtUnc_52: -1.9086491770607894e-11 - ArtUnc_53: -6.004925716718752e-11 - ArtUnc_54: 1.3528719560799027e-11 - ArtUnc_55: 1.1799485815545221e-08 - ArtUnc_56: -9.975340208781463e-09 - ArtUnc_57: -2.2521217812471348e-09 - ArtUnc_58: 2.804699758441273e-08 - ArtUnc_59: 2.2103976595410218e-10 - ArtUnc_60: 3.3649817451941395e-08 - ArtUnc_61: 1.1740658032824714e-10 - ArtUnc_62: -2.402339850854667e-09 - ArtUnc_63: 1.7391658748525373e-10 - ArtUnc_64: 8.89274434058841e-08 - ArtUnc_65: -4.7974890767402026e-09 - ArtUnc_66: 1.22364516968084e-07 - ArtUnc_67: 3.040652579547578e-08 - ArtUnc_68: -6.862203540163716e-09 - ArtUnc_69: -7.665774654289796e-09 - ArtUnc_70: 1.480625126632594e-07 - ArtUnc_71: 2.0979076256282548e-09 - ArtUnc_72: 5.122209600702832e-08 - ArtUnc_73: 1.3362480636831328e-10 - ArtUnc_74: 2.717582622135473e-07 - ArtUnc_75: -4.951873092024478e-08 - ArtUnc_76: 3.198076745946251e-09 - ArtUnc_77: 1.1602659070872547e-08 - ArtUnc_78: 2.0132775223619658e-07 - ArtUnc_79: -3.7306664299767404e-07 - ArtUnc_80: 5.992296682747596e-09 - ArtUnc_81: -4.792623496419435e-09 - ArtUnc_82: -1.0624184782695466e-09 - ArtUnc_83: 9.610625844064377e-08 - ArtUnc_84: -1.2694396721333717e-07 - ArtUnc_85: -6.457187616301097e-07 - ArtUnc_86: -2.9317899929255475e-07 - ArtUnc_87: -3.9372117306839423e-07 - ArtUnc_88: 4.955158818554302e-08 - ArtUnc_89: 1.8185695363269428e-07 - ArtUnc_90: 1.097358450627666e-06 - ArtUnc_91: -6.7007103400230265e-06 - ArtUnc_92: -4.1782353724083415e-08 - ArtUnc_93: 6.93294384753824e-08 - ArtUnc_94: 1.1183383282743e-07 - ArtUnc_95: -2.9181645166768758e-06 - ArtUnc_96: -6.066089548558399e-07 + Uncorr: 8.35000000e-07 + RCES: 5.30153823e-06 + ElEn: 5.02315312e-06 + ElTh: 2.81896297e-06 + Lumi: 6.42950000e-07 + LArN: 4.17500000e-07 + StatMC: 1.99732000e-05 + RadErr: 3.54875000e-06 + Model_1: 2.46388176e-05 + Model_2: 2.46388176e-05 + ModelRW_1: 2.59318684e-05 + ModelRW_2: 2.59318684e-05 + JES_1: 3.49674133e-06 + JES_2: 3.49674133e-06 + ArtUnc_1: 7.52555133e-19 + ArtUnc_2: 1.70110651e-18 + ArtUnc_3: 2.20883746e-17 + ArtUnc_4: 1.22419628e-16 + ArtUnc_5: 4.14064364e-18 + ArtUnc_6: 1.83863167e-18 + ArtUnc_7: 4.66260556e-16 + ArtUnc_8: 3.69590697e-15 + ArtUnc_9: 4.12283787e-17 + ArtUnc_10: -1.67322510e-14 + ArtUnc_11: 2.90624794e-14 + ArtUnc_12: 2.07354683e-15 + ArtUnc_13: 1.09561257e-13 + ArtUnc_14: -7.64555104e-16 + ArtUnc_15: 4.44523260e-15 + ArtUnc_16: -2.67505467e-16 + ArtUnc_17: -6.68656583e-15 + ArtUnc_18: 1.84297797e-16 + ArtUnc_19: 5.30939390e-14 + ArtUnc_20: 1.60344128e-13 + ArtUnc_21: -9.11449922e-15 + ArtUnc_22: 2.81609762e-12 + ArtUnc_23: 5.92604454e-14 + ArtUnc_24: -1.98277436e-12 + ArtUnc_25: -2.87478732e-13 + ArtUnc_26: 1.60402582e-13 + ArtUnc_27: 8.75190840e-12 + ArtUnc_28: 3.24305779e-13 + ArtUnc_29: 6.55386698e-12 + ArtUnc_30: 2.56896873e-12 + ArtUnc_31: -1.07536384e-12 + ArtUnc_32: 4.15449511e-11 + ArtUnc_33: -1.73482771e-15 + ArtUnc_34: -1.50405695e-12 + ArtUnc_35: -7.98484853e-13 + ArtUnc_36: 2.42811654e-11 + ArtUnc_37: -4.75044595e-11 + ArtUnc_38: 9.35217038e-12 + ArtUnc_39: 5.00301115e-11 + ArtUnc_40: -9.79468731e-13 + ArtUnc_41: -3.38400967e-10 + ArtUnc_42: 9.14535086e-12 + ArtUnc_43: 5.44499110e-10 + ArtUnc_44: 2.16479014e-10 + ArtUnc_45: -5.03633792e-12 + ArtUnc_46: 7.57201201e-11 + ArtUnc_47: 1.31229315e-11 + ArtUnc_48: -1.62350232e-12 + ArtUnc_49: 1.44638690e-09 + ArtUnc_50: 6.48791938e-11 + ArtUnc_51: 2.56404527e-10 + ArtUnc_52: -1.90864918e-11 + ArtUnc_53: -6.00492572e-11 + ArtUnc_54: 1.35287196e-11 + ArtUnc_55: 1.17994858e-08 + ArtUnc_56: -9.97534021e-09 + ArtUnc_57: -2.25212178e-09 + ArtUnc_58: 2.80469976e-08 + ArtUnc_59: 2.21039766e-10 + ArtUnc_60: 3.36498175e-08 + ArtUnc_61: 1.17406580e-10 + ArtUnc_62: -2.40233985e-09 + ArtUnc_63: 1.73916587e-10 + ArtUnc_64: 8.89274434e-08 + ArtUnc_65: -4.79748908e-09 + ArtUnc_66: 1.22364517e-07 + ArtUnc_67: 3.04065258e-08 + ArtUnc_68: -6.86220354e-09 + ArtUnc_69: -7.66577465e-09 + ArtUnc_70: 1.48062513e-07 + ArtUnc_71: 2.09790763e-09 + ArtUnc_72: 5.12220960e-08 + ArtUnc_73: 1.33624806e-10 + ArtUnc_74: 2.71758262e-07 + ArtUnc_75: -4.95187309e-08 + ArtUnc_76: 3.19807675e-09 + ArtUnc_77: 1.16026591e-08 + ArtUnc_78: 2.01327752e-07 + ArtUnc_79: -3.73066643e-07 + ArtUnc_80: 5.99229668e-09 + ArtUnc_81: -4.79262350e-09 + ArtUnc_82: -1.06241848e-09 + ArtUnc_83: 9.61062584e-08 + ArtUnc_84: -1.26943967e-07 + ArtUnc_85: -6.45718762e-07 + ArtUnc_86: -2.93178999e-07 + ArtUnc_87: -3.93721173e-07 + ArtUnc_88: 4.95515882e-08 + ArtUnc_89: 1.81856954e-07 + ArtUnc_90: 1.09735845e-06 + ArtUnc_91: -6.70071034e-06 + ArtUnc_92: -4.17823537e-08 + ArtUnc_93: 6.93294385e-08 + ArtUnc_94: 1.11833833e-07 + ArtUnc_95: -2.91816452e-06 + ArtUnc_96: -6.06608955e-07 - stat: 0 Uncorr: 0.00188 - RCES: 0.004991603574003048 - ElEn: 0.0012202271755701888 - ElTh: 0.0005553960388767641 - Lumi: 0.0014476 + RCES: 4.99160357e-03 + ElEn: 1.22022718e-03 + ElTh: 5.55396039e-04 + Lumi: 1.44760000e-03 LArN: 0.00094 - StatMC: 0.0022183999999999997 - RadErr: 0.0008083999999999999 - Model_1: 0.0005051570844796696 - Model_2: 0.0005051570844796696 - ModelRW_1: 0.0011565438513087172 - ModelRW_2: 0.0011565438513087172 - JES_1: 0.0009012977643376245 - JES_2: 0.0009012977643376245 - ArtUnc_1: -5.184077555533741e-09 - ArtUnc_2: 1.1677814854411006e-06 - ArtUnc_3: 6.484945269315138e-06 - ArtUnc_4: 2.9607766166695967e-05 - ArtUnc_5: 1.026009764528549e-06 - ArtUnc_6: 2.662512931754971e-07 - ArtUnc_7: 0.00019243537417088093 - ArtUnc_8: -0.0010127354200840388 - ArtUnc_9: 1.8484503325499536e-05 - ArtUnc_10: 0.00048367113275177076 - ArtUnc_11: -0.0010003494842459083 - ArtUnc_12: -8.105091416697253e-05 - ArtUnc_13: -0.001560303726292504 - ArtUnc_14: -1.3124683464170857e-05 - ArtUnc_15: -2.2591533427100417e-06 - ArtUnc_16: 5.817826599619027e-07 - ArtUnc_17: -1.1337540775553265e-06 - ArtUnc_18: 2.987029686372386e-09 - ArtUnc_19: -4.885827276898941e-06 - ArtUnc_20: 5.46036666714073e-06 - ArtUnc_21: -1.9999995328938429e-07 - ArtUnc_22: 1.127622547801492e-05 - ArtUnc_23: 2.4150688771514286e-07 - ArtUnc_24: -1.8699348321426944e-05 - ArtUnc_25: -8.703721396487673e-06 - ArtUnc_26: -5.289837150206431e-07 - ArtUnc_27: 2.092744305624243e-05 - ArtUnc_28: 1.1909023961737446e-06 - ArtUnc_29: -1.376509661274837e-07 - ArtUnc_30: 2.320036287223341e-06 - ArtUnc_31: -9.390934551493554e-07 - ArtUnc_32: 5.260444912495629e-05 - ArtUnc_33: -2.0294766714438776e-08 - ArtUnc_34: 6.195759482581024e-07 - ArtUnc_35: 9.550353952130143e-07 - ArtUnc_36: 3.729841789513544e-08 - ArtUnc_37: -8.01872132902217e-07 - ArtUnc_38: 1.3985486051409333e-07 - ArtUnc_39: -6.047222284831918e-07 - ArtUnc_40: -2.4299704067528574e-09 - ArtUnc_41: 1.4240506631795265e-07 - ArtUnc_42: 1.7631994306664332e-09 - ArtUnc_43: -3.8265962551438614e-07 - ArtUnc_44: 5.247038576006126e-07 - ArtUnc_45: -2.189129079051947e-09 - ArtUnc_46: -1.44380724631698e-08 - ArtUnc_47: 1.3171349073524332e-08 - ArtUnc_48: -2.7911157642128274e-10 - ArtUnc_49: -1.2825201759836507e-06 - ArtUnc_50: -3.951216736568954e-08 - ArtUnc_51: 4.224301304456062e-09 - ArtUnc_52: 6.753685855579711e-09 - ArtUnc_53: -1.0953565605415092e-09 - ArtUnc_54: 5.61711527514032e-10 - ArtUnc_55: -1.782027436821851e-08 - ArtUnc_56: -1.2209974055510724e-09 - ArtUnc_57: -4.019287354508974e-10 - ArtUnc_58: -4.213685453428593e-09 - ArtUnc_59: 1.2091701533994065e-10 - ArtUnc_60: -8.476923147507564e-09 - ArtUnc_61: 2.7460661768004776e-11 - ArtUnc_62: -2.362711917216108e-10 - ArtUnc_63: 1.9836546306819357e-11 - ArtUnc_64: -6.466304591781763e-08 - ArtUnc_65: 1.114451854006085e-09 - ArtUnc_66: 4.576488071035876e-08 - ArtUnc_67: 5.587580325253636e-10 - ArtUnc_68: -6.110199357284909e-10 - ArtUnc_69: -1.7776037748956474e-11 - ArtUnc_70: 2.105310448338427e-10 - ArtUnc_71: 2.036025074802777e-12 - ArtUnc_72: 5.932777335713569e-10 - ArtUnc_73: 4.2800168813375514e-11 - ArtUnc_74: 8.421436948084789e-11 - ArtUnc_75: -9.046981473561437e-10 - ArtUnc_76: -8.711386866030128e-12 - ArtUnc_77: -8.783496744864512e-12 - ArtUnc_78: 1.1157174486688844e-09 - ArtUnc_79: -6.647586284951538e-10 - ArtUnc_80: 2.5056554750015145e-12 - ArtUnc_81: 2.9053533657378786e-11 - ArtUnc_82: -1.6143113427655448e-12 - ArtUnc_83: -1.3792892516033813e-11 - ArtUnc_84: 2.55994988468569e-11 - ArtUnc_85: -4.1136523479301395e-13 - ArtUnc_86: 3.0054805505082905e-12 - ArtUnc_87: 3.6273406321135882e-12 - ArtUnc_88: -2.8013289475797947e-12 - ArtUnc_89: -1.9168249548640208e-11 - ArtUnc_90: -1.7317335682249917e-11 - ArtUnc_91: -2.0340718509920277e-12 - ArtUnc_92: 7.107882979360044e-11 - ArtUnc_93: -1.982403558075022e-12 - ArtUnc_94: -8.498361675632596e-13 - ArtUnc_95: 3.0305793135593906e-11 - ArtUnc_96: 4.905247241945646e-12 + StatMC: 2.21840000e-03 + RadErr: 8.08400000e-04 + Model_1: 5.05157084e-04 + Model_2: 5.05157084e-04 + ModelRW_1: 1.15654385e-03 + ModelRW_2: 1.15654385e-03 + JES_1: 9.01297764e-04 + JES_2: 9.01297764e-04 + ArtUnc_1: -5.18407756e-09 + ArtUnc_2: 1.16778149e-06 + ArtUnc_3: 6.48494527e-06 + ArtUnc_4: 2.96077662e-05 + ArtUnc_5: 1.02600976e-06 + ArtUnc_6: 2.66251293e-07 + ArtUnc_7: 1.92435374e-04 + ArtUnc_8: -1.01273542e-03 + ArtUnc_9: 1.84845033e-05 + ArtUnc_10: 4.83671133e-04 + ArtUnc_11: -1.00034948e-03 + ArtUnc_12: -8.10509142e-05 + ArtUnc_13: -1.56030373e-03 + ArtUnc_14: -1.31246835e-05 + ArtUnc_15: -2.25915334e-06 + ArtUnc_16: 5.81782660e-07 + ArtUnc_17: -1.13375408e-06 + ArtUnc_18: 2.98702969e-09 + ArtUnc_19: -4.88582728e-06 + ArtUnc_20: 5.46036667e-06 + ArtUnc_21: -1.99999953e-07 + ArtUnc_22: 1.12762255e-05 + ArtUnc_23: 2.41506888e-07 + ArtUnc_24: -1.86993483e-05 + ArtUnc_25: -8.70372140e-06 + ArtUnc_26: -5.28983715e-07 + ArtUnc_27: 2.09274431e-05 + ArtUnc_28: 1.19090240e-06 + ArtUnc_29: -1.37650966e-07 + ArtUnc_30: 2.32003629e-06 + ArtUnc_31: -9.39093455e-07 + ArtUnc_32: 5.26044491e-05 + ArtUnc_33: -2.02947667e-08 + ArtUnc_34: 6.19575948e-07 + ArtUnc_35: 9.55035395e-07 + ArtUnc_36: 3.72984179e-08 + ArtUnc_37: -8.01872133e-07 + ArtUnc_38: 1.39854861e-07 + ArtUnc_39: -6.04722228e-07 + ArtUnc_40: -2.42997041e-09 + ArtUnc_41: 1.42405066e-07 + ArtUnc_42: 1.76319943e-09 + ArtUnc_43: -3.82659626e-07 + ArtUnc_44: 5.24703858e-07 + ArtUnc_45: -2.18912908e-09 + ArtUnc_46: -1.44380725e-08 + ArtUnc_47: 1.31713491e-08 + ArtUnc_48: -2.79111576e-10 + ArtUnc_49: -1.28252018e-06 + ArtUnc_50: -3.95121674e-08 + ArtUnc_51: 4.22430130e-09 + ArtUnc_52: 6.75368586e-09 + ArtUnc_53: -1.09535656e-09 + ArtUnc_54: 5.61711528e-10 + ArtUnc_55: -1.78202744e-08 + ArtUnc_56: -1.22099741e-09 + ArtUnc_57: -4.01928735e-10 + ArtUnc_58: -4.21368545e-09 + ArtUnc_59: 1.20917015e-10 + ArtUnc_60: -8.47692315e-09 + ArtUnc_61: 2.74606618e-11 + ArtUnc_62: -2.36271192e-10 + ArtUnc_63: 1.98365463e-11 + ArtUnc_64: -6.46630459e-08 + ArtUnc_65: 1.11445185e-09 + ArtUnc_66: 4.57648807e-08 + ArtUnc_67: 5.58758033e-10 + ArtUnc_68: -6.11019936e-10 + ArtUnc_69: -1.77760377e-11 + ArtUnc_70: 2.10531045e-10 + ArtUnc_71: 2.03602507e-12 + ArtUnc_72: 5.93277734e-10 + ArtUnc_73: 4.28001688e-11 + ArtUnc_74: 8.42143695e-11 + ArtUnc_75: -9.04698147e-10 + ArtUnc_76: -8.71138687e-12 + ArtUnc_77: -8.78349674e-12 + ArtUnc_78: 1.11571745e-09 + ArtUnc_79: -6.64758628e-10 + ArtUnc_80: 2.50565548e-12 + ArtUnc_81: 2.90535337e-11 + ArtUnc_82: -1.61431134e-12 + ArtUnc_83: -1.37928925e-11 + ArtUnc_84: 2.55994988e-11 + ArtUnc_85: -4.11365235e-13 + ArtUnc_86: 3.00548055e-12 + ArtUnc_87: 3.62734063e-12 + ArtUnc_88: -2.80132895e-12 + ArtUnc_89: -1.91682495e-11 + ArtUnc_90: -1.73173357e-11 + ArtUnc_91: -2.03407185e-12 + ArtUnc_92: 7.10788298e-11 + ArtUnc_93: -1.98240356e-12 + ArtUnc_94: -8.49836168e-13 + ArtUnc_95: 3.03057931e-11 + ArtUnc_96: 4.90524724e-12 - stat: 0 Uncorr: 0.00095 - RCES: 0.0032624859003526742 - ElEn: 0.0006419884636813968 - ElTh: 0.00026544808814530946 - Lumi: 0.0007315 + RCES: 3.26248590e-03 + ElEn: 6.41988464e-04 + ElTh: 2.65448088e-04 + Lumi: 7.31500000e-04 LArN: 0.000475 StatMC: 0.000798 RadErr: 0.000133 - Model_1: 0.00231754247533891 - Model_2: 0.00231754247533891 - ModelRW_1: 0.003506542527904089 - ModelRW_2: 0.003506542527904089 - JES_1: 0.003920317186625338 - JES_2: 0.003920317186625338 - ArtUnc_1: 9.753547439539828e-11 - ArtUnc_2: -6.227372784156302e-09 - ArtUnc_3: 1.708759179124174e-08 - ArtUnc_4: 4.319110708990544e-07 - ArtUnc_5: 1.55443369537763e-08 - ArtUnc_6: 7.296344354538225e-09 - ArtUnc_7: 6.5460003475791674e-06 - ArtUnc_8: -5.7244761028330045e-05 - ArtUnc_9: 1.186505533190126e-06 - ArtUnc_10: 4.336442172324861e-05 - ArtUnc_11: -8.82617970058097e-05 - ArtUnc_12: -7.2030212472301245e-06 - ArtUnc_13: -0.00015235000980223684 - ArtUnc_14: -4.796339927814513e-07 - ArtUnc_15: -1.0309022261121442e-06 - ArtUnc_16: 9.39159190546805e-08 - ArtUnc_17: 5.141719307884341e-06 - ArtUnc_18: -1.6788426091245276e-07 - ArtUnc_19: -1.2964071120157313e-05 - ArtUnc_20: -3.0078776123106327e-05 - ArtUnc_21: 1.492529708589883e-06 - ArtUnc_22: -0.00023554744594108016 - ArtUnc_23: -3.676078550964621e-06 - ArtUnc_24: 0.00010267558870354524 - ArtUnc_25: 6.497741781847948e-05 - ArtUnc_26: -1.8235778533686426e-05 - ArtUnc_27: -0.00032423701033369213 - ArtUnc_28: -1.4688165452177336e-05 - ArtUnc_29: -0.0001522793414196557 - ArtUnc_30: -5.9820840239537066e-05 - ArtUnc_31: 2.457065364193579e-05 - ArtUnc_32: -0.000504650218600457 - ArtUnc_33: 1.7699603926293156e-07 - ArtUnc_34: -4.924692061993343e-06 - ArtUnc_35: -7.714627557624232e-06 - ArtUnc_36: -2.2392528805489359e-07 - ArtUnc_37: 6.411402027397098e-06 - ArtUnc_38: -1.1162652040395937e-06 - ArtUnc_39: -1.1430952119947765e-06 - ArtUnc_40: -6.748838465346753e-08 - ArtUnc_41: -2.3494255885952587e-06 - ArtUnc_42: -3.555146864871654e-08 - ArtUnc_43: 4.703836380515194e-06 - ArtUnc_44: -1.0566857235536604e-05 - ArtUnc_45: 4.4945124539397075e-08 - ArtUnc_46: -2.4857258556887034e-08 - ArtUnc_47: -1.6350369399770955e-07 - ArtUnc_48: 1.0292275806389106e-08 - ArtUnc_49: 1.4375919532156121e-05 - ArtUnc_50: 4.584058390843983e-07 - ArtUnc_51: -2.5943913798833367e-08 - ArtUnc_52: -3.026087152871613e-08 - ArtUnc_53: 5.632813063282722e-09 - ArtUnc_54: -3.4802714012223778e-09 - ArtUnc_55: 1.3420913257163547e-07 - ArtUnc_56: -1.919451231774332e-08 - ArtUnc_57: -4.460334623172426e-09 - ArtUnc_58: 1.8572987929047742e-07 - ArtUnc_59: -1.5232168649282663e-09 - ArtUnc_60: 2.412302921897371e-08 - ArtUnc_61: -1.7882848468633827e-10 - ArtUnc_62: 1.7966622080932891e-09 - ArtUnc_63: -1.5714942133352477e-10 - ArtUnc_64: 6.671627784511517e-07 - ArtUnc_65: -1.025189755352918e-08 - ArtUnc_66: -4.632156231862248e-07 - ArtUnc_67: -6.161588354153124e-09 - ArtUnc_68: 6.201726802224839e-09 - ArtUnc_69: 2.1346750028956372e-10 - ArtUnc_70: -2.4861479308310165e-09 - ArtUnc_71: -2.787441481271272e-11 - ArtUnc_72: -7.099604145631049e-09 - ArtUnc_73: -5.6861308517293e-10 - ArtUnc_74: -1.4292003880250983e-09 - ArtUnc_75: 1.0248505960157929e-08 - ArtUnc_76: 1.0475918137984441e-10 - ArtUnc_77: 5.677704383775364e-11 - ArtUnc_78: -1.2579885201608965e-08 - ArtUnc_79: 7.794043392189298e-09 - ArtUnc_80: -7.579711414801293e-11 - ArtUnc_81: -3.430852531169544e-10 - ArtUnc_82: 1.775117049089012e-11 - ArtUnc_83: 1.675001844948761e-10 - ArtUnc_84: -3.033136767965014e-10 - ArtUnc_85: 4.20039384186154e-12 - ArtUnc_86: -2.7784398976116623e-11 - ArtUnc_87: -3.283629617375756e-11 - ArtUnc_88: 3.125116211259143e-11 - ArtUnc_89: 2.877883598046601e-10 - ArtUnc_90: 1.536643881776656e-10 - ArtUnc_91: 1.5183076375485108e-11 - ArtUnc_92: -7.963922779568559e-10 - ArtUnc_93: 1.8540106738393557e-11 - ArtUnc_94: 1.3093416286191433e-11 - ArtUnc_95: -3.1596399642754e-10 - ArtUnc_96: -5.1872171587344076e-11 + Model_1: 2.31754248e-03 + Model_2: 2.31754248e-03 + ModelRW_1: 3.50654253e-03 + ModelRW_2: 3.50654253e-03 + JES_1: 3.92031719e-03 + JES_2: 3.92031719e-03 + ArtUnc_1: 9.75354744e-11 + ArtUnc_2: -6.22737278e-09 + ArtUnc_3: 1.70875918e-08 + ArtUnc_4: 4.31911071e-07 + ArtUnc_5: 1.55443370e-08 + ArtUnc_6: 7.29634435e-09 + ArtUnc_7: 6.54600035e-06 + ArtUnc_8: -5.72447610e-05 + ArtUnc_9: 1.18650553e-06 + ArtUnc_10: 4.33644217e-05 + ArtUnc_11: -8.82617970e-05 + ArtUnc_12: -7.20302125e-06 + ArtUnc_13: -1.52350010e-04 + ArtUnc_14: -4.79633993e-07 + ArtUnc_15: -1.03090223e-06 + ArtUnc_16: 9.39159191e-08 + ArtUnc_17: 5.14171931e-06 + ArtUnc_18: -1.67884261e-07 + ArtUnc_19: -1.29640711e-05 + ArtUnc_20: -3.00787761e-05 + ArtUnc_21: 1.49252971e-06 + ArtUnc_22: -2.35547446e-04 + ArtUnc_23: -3.67607855e-06 + ArtUnc_24: 1.02675589e-04 + ArtUnc_25: 6.49774178e-05 + ArtUnc_26: -1.82357785e-05 + ArtUnc_27: -3.24237010e-04 + ArtUnc_28: -1.46881655e-05 + ArtUnc_29: -1.52279341e-04 + ArtUnc_30: -5.98208402e-05 + ArtUnc_31: 2.45706536e-05 + ArtUnc_32: -5.04650219e-04 + ArtUnc_33: 1.76996039e-07 + ArtUnc_34: -4.92469206e-06 + ArtUnc_35: -7.71462756e-06 + ArtUnc_36: -2.23925288e-07 + ArtUnc_37: 6.41140203e-06 + ArtUnc_38: -1.11626520e-06 + ArtUnc_39: -1.14309521e-06 + ArtUnc_40: -6.74883847e-08 + ArtUnc_41: -2.34942559e-06 + ArtUnc_42: -3.55514686e-08 + ArtUnc_43: 4.70383638e-06 + ArtUnc_44: -1.05668572e-05 + ArtUnc_45: 4.49451245e-08 + ArtUnc_46: -2.48572586e-08 + ArtUnc_47: -1.63503694e-07 + ArtUnc_48: 1.02922758e-08 + ArtUnc_49: 1.43759195e-05 + ArtUnc_50: 4.58405839e-07 + ArtUnc_51: -2.59439138e-08 + ArtUnc_52: -3.02608715e-08 + ArtUnc_53: 5.63281306e-09 + ArtUnc_54: -3.48027140e-09 + ArtUnc_55: 1.34209133e-07 + ArtUnc_56: -1.91945123e-08 + ArtUnc_57: -4.46033462e-09 + ArtUnc_58: 1.85729879e-07 + ArtUnc_59: -1.52321686e-09 + ArtUnc_60: 2.41230292e-08 + ArtUnc_61: -1.78828485e-10 + ArtUnc_62: 1.79666221e-09 + ArtUnc_63: -1.57149421e-10 + ArtUnc_64: 6.67162778e-07 + ArtUnc_65: -1.02518976e-08 + ArtUnc_66: -4.63215623e-07 + ArtUnc_67: -6.16158835e-09 + ArtUnc_68: 6.20172680e-09 + ArtUnc_69: 2.13467500e-10 + ArtUnc_70: -2.48614793e-09 + ArtUnc_71: -2.78744148e-11 + ArtUnc_72: -7.09960415e-09 + ArtUnc_73: -5.68613085e-10 + ArtUnc_74: -1.42920039e-09 + ArtUnc_75: 1.02485060e-08 + ArtUnc_76: 1.04759181e-10 + ArtUnc_77: 5.67770438e-11 + ArtUnc_78: -1.25798852e-08 + ArtUnc_79: 7.79404339e-09 + ArtUnc_80: -7.57971141e-11 + ArtUnc_81: -3.43085253e-10 + ArtUnc_82: 1.77511705e-11 + ArtUnc_83: 1.67500184e-10 + ArtUnc_84: -3.03313677e-10 + ArtUnc_85: 4.20039384e-12 + ArtUnc_86: -2.77843990e-11 + ArtUnc_87: -3.28362962e-11 + ArtUnc_88: 3.12511621e-11 + ArtUnc_89: 2.87788360e-10 + ArtUnc_90: 1.53664388e-10 + ArtUnc_91: 1.51830764e-11 + ArtUnc_92: -7.96392278e-10 + ArtUnc_93: 1.85401067e-11 + ArtUnc_94: 1.30934163e-11 + ArtUnc_95: -3.15963996e-10 + ArtUnc_96: -5.18721716e-11 - stat: 0 Uncorr: 0.000289 - RCES: 0.00037318786083553147 - ElEn: 0.00022363446693208987 - ElTh: 8.310948622148977e-05 - Lumi: 0.00022253 - LArN: 0.0001445 - StatMC: 0.00023697999999999997 - RadErr: 7.803e-05 - Model_1: 0.00019004908957950838 - Model_2: 0.00019004908957950838 - ModelRW_1: 0.0005967132705077037 - ModelRW_2: 0.0005967132705077037 - JES_1: 0.0006560236343303494 - JES_2: 0.0006560236343303494 - ArtUnc_1: 7.051224216026941e-11 - ArtUnc_2: -1.3977675181295216e-08 - ArtUnc_3: -7.119561085981802e-08 - ArtUnc_4: -2.8058198438083383e-07 - ArtUnc_5: -9.59221642205358e-09 - ArtUnc_6: -2.02978998101931e-09 - ArtUnc_7: -1.3472556520548992e-06 - ArtUnc_8: 4.150934493663712e-06 - ArtUnc_9: -5.952842188927762e-08 - ArtUnc_10: 5.438010394919081e-08 - ArtUnc_11: 7.05979688352413e-08 - ArtUnc_12: 9.139260861476654e-09 - ArtUnc_13: -1.2790170539615633e-06 - ArtUnc_14: 2.5617408347870514e-08 - ArtUnc_15: -1.9841482618095413e-08 - ArtUnc_16: 1.6198073526381094e-10 - ArtUnc_17: 2.3983235953556213e-07 - ArtUnc_18: -7.139715679976194e-09 - ArtUnc_19: -7.286802604846646e-07 - ArtUnc_20: -1.534583304142478e-06 - ArtUnc_21: 9.112349277463271e-08 - ArtUnc_22: -1.3098744061619803e-05 - ArtUnc_23: -2.3664354657076953e-07 - ArtUnc_24: 5.656671937789673e-06 - ArtUnc_25: 7.335671792195338e-06 - ArtUnc_26: -1.4577249046427076e-06 - ArtUnc_27: -2.2342813730992484e-05 - ArtUnc_28: -9.32741641681257e-07 - ArtUnc_29: -3.5711130448348982e-06 - ArtUnc_30: -2.3298242139567014e-06 - ArtUnc_31: 9.539461832991869e-07 - ArtUnc_32: -3.365468085499373e-05 - ArtUnc_33: 1.0814802950801851e-08 - ArtUnc_34: 5.098518791699796e-07 - ArtUnc_35: 7.814559505928643e-07 - ArtUnc_36: -6.442488936637111e-06 - ArtUnc_37: 1.9979813786580084e-05 - ArtUnc_38: -3.559577279397605e-06 - ArtUnc_39: -2.0489934740514652e-05 - ArtUnc_40: 3.024895811611956e-08 - ArtUnc_41: 6.08972888844798e-05 - ArtUnc_42: -3.780216667070498e-07 - ArtUnc_43: -8.955261597295062e-05 - ArtUnc_44: -4.8024390229445863e-05 - ArtUnc_45: 6.222098420543644e-07 - ArtUnc_46: -1.368795153262544e-05 - ArtUnc_47: 9.264014209204773e-07 - ArtUnc_48: 1.6094043163831705e-08 - ArtUnc_49: -0.00017973388342818443 - ArtUnc_50: -4.459666900137267e-06 - ArtUnc_51: 2.038050437567206e-07 - ArtUnc_52: -1.0862800138360604e-07 - ArtUnc_53: 3.9714255876467446e-09 - ArtUnc_54: 2.966360374701162e-09 - ArtUnc_55: -1.8811433941314635e-06 - ArtUnc_56: -1.9456883465457418e-06 - ArtUnc_57: -5.713827041420243e-07 - ArtUnc_58: -2.6674338272983496e-06 - ArtUnc_59: 3.8161231902587136e-08 - ArtUnc_60: 2.6960411564784075e-06 - ArtUnc_61: 2.2069932666540668e-09 - ArtUnc_62: 3.1335045374841156e-08 - ArtUnc_63: -3.6382703959669343e-09 - ArtUnc_64: -5.303985659363463e-06 - ArtUnc_65: 3.295262320683488e-08 - ArtUnc_66: 6.51419437064317e-06 - ArtUnc_67: 1.224938548401954e-07 - ArtUnc_68: -6.0424720363524e-08 - ArtUnc_69: -2.525003177364441e-09 - ArtUnc_70: 1.6964903821867333e-08 - ArtUnc_71: -4.213129200925123e-11 - ArtUnc_72: 1.0434560435049898e-09 - ArtUnc_73: 2.2988054108867716e-10 - ArtUnc_74: -4.029581933211132e-08 - ArtUnc_75: 1.1695826127329766e-08 - ArtUnc_76: -1.1125737214139704e-09 - ArtUnc_77: -9.908908004047555e-10 - ArtUnc_78: 2.1566338396236692e-07 - ArtUnc_79: 7.525356436864798e-08 - ArtUnc_80: -5.458073635477984e-10 - ArtUnc_81: 6.330795480691271e-09 - ArtUnc_82: 2.219836404681475e-10 - ArtUnc_83: -1.4846246330279971e-09 - ArtUnc_84: 1.368357657876286e-10 - ArtUnc_85: 2.579468971964336e-10 - ArtUnc_86: 7.611218948708382e-11 - ArtUnc_87: 3.4903456058610976e-11 - ArtUnc_88: -7.88311010620826e-11 - ArtUnc_89: 1.7002038126260505e-09 - ArtUnc_90: -1.1830090352260171e-09 - ArtUnc_91: 6.700141510953795e-10 - ArtUnc_92: 1.7580036048980386e-09 - ArtUnc_93: -4.661069203930877e-11 - ArtUnc_94: -5.5651946891796474e-11 - ArtUnc_95: -2.1446402629044331e-10 - ArtUnc_96: -5.1926693597453337e-11 + RCES: 3.73187861e-04 + ElEn: 2.23634467e-04 + ElTh: 8.31094862e-05 + Lumi: 2.22530000e-04 + LArN: 1.44500000e-04 + StatMC: 2.36980000e-04 + RadErr: 7.80300000e-05 + Model_1: 1.90049090e-04 + Model_2: 1.90049090e-04 + ModelRW_1: 5.96713271e-04 + ModelRW_2: 5.96713271e-04 + JES_1: 6.56023634e-04 + JES_2: 6.56023634e-04 + ArtUnc_1: 7.05122422e-11 + ArtUnc_2: -1.39776752e-08 + ArtUnc_3: -7.11956109e-08 + ArtUnc_4: -2.80581984e-07 + ArtUnc_5: -9.59221642e-09 + ArtUnc_6: -2.02978998e-09 + ArtUnc_7: -1.34725565e-06 + ArtUnc_8: 4.15093449e-06 + ArtUnc_9: -5.95284219e-08 + ArtUnc_10: 5.43801039e-08 + ArtUnc_11: 7.05979688e-08 + ArtUnc_12: 9.13926086e-09 + ArtUnc_13: -1.27901705e-06 + ArtUnc_14: 2.56174083e-08 + ArtUnc_15: -1.98414826e-08 + ArtUnc_16: 1.61980735e-10 + ArtUnc_17: 2.39832360e-07 + ArtUnc_18: -7.13971568e-09 + ArtUnc_19: -7.28680260e-07 + ArtUnc_20: -1.53458330e-06 + ArtUnc_21: 9.11234928e-08 + ArtUnc_22: -1.30987441e-05 + ArtUnc_23: -2.36643547e-07 + ArtUnc_24: 5.65667194e-06 + ArtUnc_25: 7.33567179e-06 + ArtUnc_26: -1.45772490e-06 + ArtUnc_27: -2.23428137e-05 + ArtUnc_28: -9.32741642e-07 + ArtUnc_29: -3.57111304e-06 + ArtUnc_30: -2.32982421e-06 + ArtUnc_31: 9.53946183e-07 + ArtUnc_32: -3.36546809e-05 + ArtUnc_33: 1.08148030e-08 + ArtUnc_34: 5.09851879e-07 + ArtUnc_35: 7.81455951e-07 + ArtUnc_36: -6.44248894e-06 + ArtUnc_37: 1.99798138e-05 + ArtUnc_38: -3.55957728e-06 + ArtUnc_39: -2.04899347e-05 + ArtUnc_40: 3.02489581e-08 + ArtUnc_41: 6.08972889e-05 + ArtUnc_42: -3.78021667e-07 + ArtUnc_43: -8.95526160e-05 + ArtUnc_44: -4.80243902e-05 + ArtUnc_45: 6.22209842e-07 + ArtUnc_46: -1.36879515e-05 + ArtUnc_47: 9.26401421e-07 + ArtUnc_48: 1.60940432e-08 + ArtUnc_49: -1.79733883e-04 + ArtUnc_50: -4.45966690e-06 + ArtUnc_51: 2.03805044e-07 + ArtUnc_52: -1.08628001e-07 + ArtUnc_53: 3.97142559e-09 + ArtUnc_54: 2.96636037e-09 + ArtUnc_55: -1.88114339e-06 + ArtUnc_56: -1.94568835e-06 + ArtUnc_57: -5.71382704e-07 + ArtUnc_58: -2.66743383e-06 + ArtUnc_59: 3.81612319e-08 + ArtUnc_60: 2.69604116e-06 + ArtUnc_61: 2.20699327e-09 + ArtUnc_62: 3.13350454e-08 + ArtUnc_63: -3.63827040e-09 + ArtUnc_64: -5.30398566e-06 + ArtUnc_65: 3.29526232e-08 + ArtUnc_66: 6.51419437e-06 + ArtUnc_67: 1.22493855e-07 + ArtUnc_68: -6.04247204e-08 + ArtUnc_69: -2.52500318e-09 + ArtUnc_70: 1.69649038e-08 + ArtUnc_71: -4.21312920e-11 + ArtUnc_72: 1.04345604e-09 + ArtUnc_73: 2.29880541e-10 + ArtUnc_74: -4.02958193e-08 + ArtUnc_75: 1.16958261e-08 + ArtUnc_76: -1.11257372e-09 + ArtUnc_77: -9.90890800e-10 + ArtUnc_78: 2.15663384e-07 + ArtUnc_79: 7.52535644e-08 + ArtUnc_80: -5.45807364e-10 + ArtUnc_81: 6.33079548e-09 + ArtUnc_82: 2.21983640e-10 + ArtUnc_83: -1.48462463e-09 + ArtUnc_84: 1.36835766e-10 + ArtUnc_85: 2.57946897e-10 + ArtUnc_86: 7.61121895e-11 + ArtUnc_87: 3.49034561e-11 + ArtUnc_88: -7.88311011e-11 + ArtUnc_89: 1.70020381e-09 + ArtUnc_90: -1.18300904e-09 + ArtUnc_91: 6.70014151e-10 + ArtUnc_92: 1.75800360e-09 + ArtUnc_93: -4.66106920e-11 + ArtUnc_94: -5.56519469e-11 + ArtUnc_95: -2.14464026e-10 + ArtUnc_96: -5.19266936e-11 - stat: 0 Uncorr: 6.12e-05 - RCES: 7.254910885738018e-05 - ElEn: 5.73870347378221e-05 - ElTh: 3.638570329126537e-05 - Lumi: 4.7124e-05 + RCES: 7.25491089e-05 + ElEn: 5.73870347e-05 + ElTh: 3.63857033e-05 + Lumi: 4.71240000e-05 LArN: 3.06e-05 - StatMC: 8.629199999999998e-05 - RadErr: 8.874000000000001e-05 - Model_1: 0.00020295944519041235 - Model_2: 0.00020295944519041235 - ModelRW_1: 0.00020252669584032613 - ModelRW_2: 0.00020252669584032613 - JES_1: 0.0001613151202832518 - JES_2: 0.0001613151202832518 - ArtUnc_1: 5.02819392911427e-14 - ArtUnc_2: -7.93092386430135e-12 - ArtUnc_3: -3.500863412851607e-11 - ArtUnc_4: -9.003481958336642e-11 - ArtUnc_5: -3.1431617742647692e-12 - ArtUnc_6: -2.6228548749244885e-13 - ArtUnc_7: 2.4988272275362133e-10 - ArtUnc_8: -7.095544583119142e-09 - ArtUnc_9: 1.7262562010402244e-10 - ArtUnc_10: 9.466624384963338e-09 - ArtUnc_11: -1.879788980545776e-08 - ArtUnc_12: -1.548158785248519e-09 - ArtUnc_13: -4.131411529644298e-08 - ArtUnc_14: 1.2381720443187933e-10 - ArtUnc_15: -5.996467589130546e-10 - ArtUnc_16: 4.2392744590761055e-11 - ArtUnc_17: 3.800322858826508e-09 - ArtUnc_18: -1.161756959648318e-10 - ArtUnc_19: -9.204297352626248e-09 - ArtUnc_20: -3.29521590064212e-08 - ArtUnc_21: 1.7060190359246318e-09 - ArtUnc_22: -3.159032400526775e-07 - ArtUnc_23: -6.308935847250307e-09 - ArtUnc_24: 1.7278494489382729e-07 - ArtUnc_25: 1.3875472113931756e-07 - ArtUnc_26: -2.9595791064606375e-08 - ArtUnc_27: -6.592875651505602e-07 - ArtUnc_28: -2.4985005971144744e-08 - ArtUnc_29: -3.1242140113639304e-07 - ArtUnc_30: -1.2830119955860022e-07 - ArtUnc_31: 5.325623570444768e-08 - ArtUnc_32: -1.557857961817675e-06 - ArtUnc_33: 1.8667160570307258e-10 - ArtUnc_34: 3.4328292949259264e-08 - ArtUnc_35: 1.5603640778777838e-08 - ArtUnc_36: -3.41441233333585e-07 - ArtUnc_37: 6.324378226229994e-07 - ArtUnc_38: -1.1310962710342948e-07 - ArtUnc_39: -5.43606112255573e-07 - ArtUnc_40: 9.94074320502835e-09 - ArtUnc_41: 2.723372214838412e-06 - ArtUnc_42: 3.5212973382349376e-09 - ArtUnc_43: -3.2286787244513157e-06 - ArtUnc_44: -1.137559147814532e-06 - ArtUnc_45: 1.8692778347107762e-08 - ArtUnc_46: -4.703960347728094e-07 - ArtUnc_47: 1.7808546771262623e-07 - ArtUnc_48: -6.883291106153041e-09 - ArtUnc_49: -5.562381912637747e-06 - ArtUnc_50: -1.1534748792065501e-07 - ArtUnc_51: -1.028575206998728e-06 - ArtUnc_52: 3.031560972701436e-07 - ArtUnc_53: 6.9722900824939765e-09 - ArtUnc_54: -8.435772815707573e-08 - ArtUnc_55: -1.3118817752018197e-05 - ArtUnc_56: 8.339153477261923e-06 - ArtUnc_57: 2.363714414463892e-06 - ArtUnc_58: -2.2236860622236516e-05 - ArtUnc_59: -4.699881721560735e-08 - ArtUnc_60: -2.2636716379401355e-05 - ArtUnc_61: -3.1315628659250002e-09 - ArtUnc_62: -8.573226609941899e-07 - ArtUnc_63: 9.546774888907887e-08 - ArtUnc_64: -4.345762967427407e-05 - ArtUnc_65: 1.6714745717974936e-06 - ArtUnc_66: -5.062688865522955e-05 - ArtUnc_67: -1.662439106353279e-06 - ArtUnc_68: 3.187052164572777e-07 - ArtUnc_69: 4.13515625985064e-08 - ArtUnc_70: -2.9553797995699014e-07 - ArtUnc_71: 2.7263250348303047e-09 - ArtUnc_72: 1.3610040269891257e-06 - ArtUnc_73: 1.0264420914310467e-07 - ArtUnc_74: 5.69311430194333e-07 - ArtUnc_75: -1.7030781847754871e-06 - ArtUnc_76: -6.269284013211263e-09 - ArtUnc_77: 8.642190079204772e-09 - ArtUnc_78: -3.365296810775796e-06 - ArtUnc_79: -1.84430929476948e-06 - ArtUnc_80: 9.498543448078409e-09 - ArtUnc_81: -9.359532363282695e-08 - ArtUnc_82: -5.063739805795505e-09 - ArtUnc_83: 1.672309867316878e-08 - ArtUnc_84: 1.257677996302173e-08 - ArtUnc_85: -5.998074356448583e-09 - ArtUnc_86: -1.4311052060218262e-09 - ArtUnc_87: -1.0586207274600761e-09 - ArtUnc_88: -1.508268361170333e-10 - ArtUnc_89: -3.94871824587661e-08 - ArtUnc_90: 1.8390899459919323e-08 - ArtUnc_91: -1.220670268979323e-08 - ArtUnc_92: -3.9562589117971506e-08 - ArtUnc_93: 2.223360481207455e-10 - ArtUnc_94: 1.6431022394438529e-09 - ArtUnc_95: 2.7427779419367713e-09 - ArtUnc_96: 2.0710559073924454e-10 + StatMC: 8.62920000e-05 + RadErr: 8.87400000e-05 + Model_1: 2.02959445e-04 + Model_2: 2.02959445e-04 + ModelRW_1: 2.02526696e-04 + ModelRW_2: 2.02526696e-04 + JES_1: 1.61315120e-04 + JES_2: 1.61315120e-04 + ArtUnc_1: 5.02819393e-14 + ArtUnc_2: -7.93092386e-12 + ArtUnc_3: -3.50086341e-11 + ArtUnc_4: -9.00348196e-11 + ArtUnc_5: -3.14316177e-12 + ArtUnc_6: -2.62285487e-13 + ArtUnc_7: 2.49882723e-10 + ArtUnc_8: -7.09554458e-09 + ArtUnc_9: 1.72625620e-10 + ArtUnc_10: 9.46662438e-09 + ArtUnc_11: -1.87978898e-08 + ArtUnc_12: -1.54815879e-09 + ArtUnc_13: -4.13141153e-08 + ArtUnc_14: 1.23817204e-10 + ArtUnc_15: -5.99646759e-10 + ArtUnc_16: 4.23927446e-11 + ArtUnc_17: 3.80032286e-09 + ArtUnc_18: -1.16175696e-10 + ArtUnc_19: -9.20429735e-09 + ArtUnc_20: -3.29521590e-08 + ArtUnc_21: 1.70601904e-09 + ArtUnc_22: -3.15903240e-07 + ArtUnc_23: -6.30893585e-09 + ArtUnc_24: 1.72784945e-07 + ArtUnc_25: 1.38754721e-07 + ArtUnc_26: -2.95957911e-08 + ArtUnc_27: -6.59287565e-07 + ArtUnc_28: -2.49850060e-08 + ArtUnc_29: -3.12421401e-07 + ArtUnc_30: -1.28301200e-07 + ArtUnc_31: 5.32562357e-08 + ArtUnc_32: -1.55785796e-06 + ArtUnc_33: 1.86671606e-10 + ArtUnc_34: 3.43282929e-08 + ArtUnc_35: 1.56036408e-08 + ArtUnc_36: -3.41441233e-07 + ArtUnc_37: 6.32437823e-07 + ArtUnc_38: -1.13109627e-07 + ArtUnc_39: -5.43606112e-07 + ArtUnc_40: 9.94074321e-09 + ArtUnc_41: 2.72337221e-06 + ArtUnc_42: 3.52129734e-09 + ArtUnc_43: -3.22867872e-06 + ArtUnc_44: -1.13755915e-06 + ArtUnc_45: 1.86927783e-08 + ArtUnc_46: -4.70396035e-07 + ArtUnc_47: 1.78085468e-07 + ArtUnc_48: -6.88329111e-09 + ArtUnc_49: -5.56238191e-06 + ArtUnc_50: -1.15347488e-07 + ArtUnc_51: -1.02857521e-06 + ArtUnc_52: 3.03156097e-07 + ArtUnc_53: 6.97229008e-09 + ArtUnc_54: -8.43577282e-08 + ArtUnc_55: -1.31188178e-05 + ArtUnc_56: 8.33915348e-06 + ArtUnc_57: 2.36371441e-06 + ArtUnc_58: -2.22368606e-05 + ArtUnc_59: -4.69988172e-08 + ArtUnc_60: -2.26367164e-05 + ArtUnc_61: -3.13156287e-09 + ArtUnc_62: -8.57322661e-07 + ArtUnc_63: 9.54677489e-08 + ArtUnc_64: -4.34576297e-05 + ArtUnc_65: 1.67147457e-06 + ArtUnc_66: -5.06268887e-05 + ArtUnc_67: -1.66243911e-06 + ArtUnc_68: 3.18705216e-07 + ArtUnc_69: 4.13515626e-08 + ArtUnc_70: -2.95537980e-07 + ArtUnc_71: 2.72632503e-09 + ArtUnc_72: 1.36100403e-06 + ArtUnc_73: 1.02644209e-07 + ArtUnc_74: 5.69311430e-07 + ArtUnc_75: -1.70307818e-06 + ArtUnc_76: -6.26928401e-09 + ArtUnc_77: 8.64219008e-09 + ArtUnc_78: -3.36529681e-06 + ArtUnc_79: -1.84430929e-06 + ArtUnc_80: 9.49854345e-09 + ArtUnc_81: -9.35953236e-08 + ArtUnc_82: -5.06373981e-09 + ArtUnc_83: 1.67230987e-08 + ArtUnc_84: 1.25767800e-08 + ArtUnc_85: -5.99807436e-09 + ArtUnc_86: -1.43110521e-09 + ArtUnc_87: -1.05862073e-09 + ArtUnc_88: -1.50826836e-10 + ArtUnc_89: -3.94871825e-08 + ArtUnc_90: 1.83908995e-08 + ArtUnc_91: -1.22067027e-08 + ArtUnc_92: -3.95625891e-08 + ArtUnc_93: 2.22336048e-10 + ArtUnc_94: 1.64310224e-09 + ArtUnc_95: 2.74277794e-09 + ArtUnc_96: 2.07105591e-10 - stat: 0 - Uncorr: 1.1000000000000001e-05 - RCES: 1.3990663851297411e-05 - ElEn: 1.176061541757063e-05 - ElTh: 3.833859021925559e-06 - Lumi: 8.470000000000002e-06 - LArN: 5.500000000000001e-06 - StatMC: 4.0480000000000005e-05 - RadErr: 1.639e-05 - Model_1: 2.963484519952821e-05 - Model_2: 2.963484519952821e-05 - ModelRW_1: 3.266833329081849e-06 - ModelRW_2: 3.266833329081849e-06 - JES_1: 3.380265725501473e-05 - JES_2: 3.380265725501473e-05 - ArtUnc_1: 3.1649572545798636e-16 - ArtUnc_2: -5.233577612250058e-14 - ArtUnc_3: 1.2009689584926394e-13 - ArtUnc_4: 5.277572473053857e-12 - ArtUnc_5: 1.9602452330203135e-13 - ArtUnc_6: 1.1950603216690673e-13 - ArtUnc_7: 1.177091946862514e-10 - ArtUnc_8: -1.4179526772949043e-09 - ArtUnc_9: 3.140778790121353e-11 - ArtUnc_10: 1.5709557509707463e-09 - ArtUnc_11: -3.1240802535447885e-09 - ArtUnc_12: -2.518727268235315e-10 - ArtUnc_13: -7.045050237369745e-09 - ArtUnc_14: -2.4889382837967554e-11 - ArtUnc_15: -6.151766026825989e-11 - ArtUnc_16: 5.582573905562612e-12 - ArtUnc_17: 3.960908745469827e-10 - ArtUnc_18: -1.2186192497896489e-11 - ArtUnc_19: -1.2867497103024744e-09 - ArtUnc_20: -4.035383590529554e-09 - ArtUnc_21: 2.330392107937851e-10 - ArtUnc_22: -4.487504907636002e-08 - ArtUnc_23: -7.936318198209268e-10 - ArtUnc_24: 2.371442818121514e-08 - ArtUnc_25: 1.574975239816285e-08 - ArtUnc_26: -4.309261165127264e-09 - ArtUnc_27: -9.7984030705831e-08 - ArtUnc_28: -4.944339987828451e-09 - ArtUnc_29: -5.412031033562565e-08 - ArtUnc_30: -2.2124207161280466e-08 - ArtUnc_31: 9.099620059241552e-09 - ArtUnc_32: -2.4212284907869234e-07 - ArtUnc_33: 7.643746265587136e-11 - ArtUnc_34: -2.531175015901532e-09 - ArtUnc_35: -4.649292937064408e-09 - ArtUnc_36: 2.1601831095153314e-10 - ArtUnc_37: 1.4995257681146108e-09 - ArtUnc_38: -1.5743773344953369e-10 - ArtUnc_39: 7.455873430691035e-09 - ArtUnc_40: -4.957949681526738e-11 - ArtUnc_41: -2.9637995206043367e-08 - ArtUnc_42: 1.4364644653972603e-09 - ArtUnc_43: 8.010985922253236e-08 - ArtUnc_44: 1.1402569191300257e-08 - ArtUnc_45: -4.70319844532275e-10 - ArtUnc_46: 1.0023033931634319e-08 - ArtUnc_47: 7.628779905008244e-09 - ArtUnc_48: -4.3229700830991953e-10 - ArtUnc_49: 3.164264343360258e-07 - ArtUnc_50: 1.244365852390118e-08 - ArtUnc_51: -5.759850014053632e-08 - ArtUnc_52: 4.17163704070633e-08 - ArtUnc_53: -2.931442056952663e-09 - ArtUnc_54: -3.5184202673116693e-09 - ArtUnc_55: -4.5051482319390554e-07 - ArtUnc_56: 4.7492041930752146e-07 - ArtUnc_57: 1.4149340622586435e-07 - ArtUnc_58: -5.06873105407668e-07 - ArtUnc_59: -4.014248528158959e-09 - ArtUnc_60: -6.525009893137404e-07 - ArtUnc_61: 7.476582192990769e-10 - ArtUnc_62: -6.224558013585522e-08 - ArtUnc_63: 5.947352900612051e-09 - ArtUnc_64: -4.6023902239792263e-07 - ArtUnc_65: 1.469646262779821e-08 - ArtUnc_66: -8.742215561408021e-07 - ArtUnc_67: 2.685437413470425e-07 - ArtUnc_68: -2.515600809491753e-08 - ArtUnc_69: -9.129200909773729e-08 - ArtUnc_70: 2.0080733355498856e-06 - ArtUnc_71: 2.981855795298056e-08 - ArtUnc_72: 1.2038558502867265e-06 - ArtUnc_73: -3.738286373691037e-09 - ArtUnc_74: 7.397192237967834e-06 - ArtUnc_75: -1.1239358915581491e-07 - ArtUnc_76: 1.9660642274449898e-07 - ArtUnc_77: 2.0281556677642994e-07 - ArtUnc_78: 1.2953754330491275e-05 - ArtUnc_79: -2.117380884707036e-05 - ArtUnc_80: 3.964956462254869e-07 - ArtUnc_81: 2.6821229728058613e-07 - ArtUnc_82: -5.169686328983974e-08 - ArtUnc_83: -1.592215483144535e-07 - ArtUnc_84: 7.311494935121575e-07 - ArtUnc_85: 2.9648856667801234e-09 - ArtUnc_86: -2.056962891334345e-08 - ArtUnc_87: -2.2139520866865153e-08 - ArtUnc_88: -3.832132486986376e-08 - ArtUnc_89: -9.456451570329005e-07 - ArtUnc_90: 2.959816264128777e-07 - ArtUnc_91: 1.36460411354434e-07 - ArtUnc_92: 1.6368869442189318e-06 - ArtUnc_93: -4.62625192359946e-09 - ArtUnc_94: -2.907941765743483e-08 - ArtUnc_95: 1.2467227997260188e-08 - ArtUnc_96: -9.500208452465233e-09 + Uncorr: 1.10000000e-05 + RCES: 1.39906639e-05 + ElEn: 1.17606154e-05 + ElTh: 3.83385902e-06 + Lumi: 8.47000000e-06 + LArN: 5.50000000e-06 + StatMC: 4.04800000e-05 + RadErr: 1.63900000e-05 + Model_1: 2.96348452e-05 + Model_2: 2.96348452e-05 + ModelRW_1: 3.26683333e-06 + ModelRW_2: 3.26683333e-06 + JES_1: 3.38026573e-05 + JES_2: 3.38026573e-05 + ArtUnc_1: 3.16495725e-16 + ArtUnc_2: -5.23357761e-14 + ArtUnc_3: 1.20096896e-13 + ArtUnc_4: 5.27757247e-12 + ArtUnc_5: 1.96024523e-13 + ArtUnc_6: 1.19506032e-13 + ArtUnc_7: 1.17709195e-10 + ArtUnc_8: -1.41795268e-09 + ArtUnc_9: 3.14077879e-11 + ArtUnc_10: 1.57095575e-09 + ArtUnc_11: -3.12408025e-09 + ArtUnc_12: -2.51872727e-10 + ArtUnc_13: -7.04505024e-09 + ArtUnc_14: -2.48893828e-11 + ArtUnc_15: -6.15176603e-11 + ArtUnc_16: 5.58257391e-12 + ArtUnc_17: 3.96090875e-10 + ArtUnc_18: -1.21861925e-11 + ArtUnc_19: -1.28674971e-09 + ArtUnc_20: -4.03538359e-09 + ArtUnc_21: 2.33039211e-10 + ArtUnc_22: -4.48750491e-08 + ArtUnc_23: -7.93631820e-10 + ArtUnc_24: 2.37144282e-08 + ArtUnc_25: 1.57497524e-08 + ArtUnc_26: -4.30926117e-09 + ArtUnc_27: -9.79840307e-08 + ArtUnc_28: -4.94433999e-09 + ArtUnc_29: -5.41203103e-08 + ArtUnc_30: -2.21242072e-08 + ArtUnc_31: 9.09962006e-09 + ArtUnc_32: -2.42122849e-07 + ArtUnc_33: 7.64374627e-11 + ArtUnc_34: -2.53117502e-09 + ArtUnc_35: -4.64929294e-09 + ArtUnc_36: 2.16018311e-10 + ArtUnc_37: 1.49952577e-09 + ArtUnc_38: -1.57437733e-10 + ArtUnc_39: 7.45587343e-09 + ArtUnc_40: -4.95794968e-11 + ArtUnc_41: -2.96379952e-08 + ArtUnc_42: 1.43646447e-09 + ArtUnc_43: 8.01098592e-08 + ArtUnc_44: 1.14025692e-08 + ArtUnc_45: -4.70319845e-10 + ArtUnc_46: 1.00230339e-08 + ArtUnc_47: 7.62877991e-09 + ArtUnc_48: -4.32297008e-10 + ArtUnc_49: 3.16426434e-07 + ArtUnc_50: 1.24436585e-08 + ArtUnc_51: -5.75985001e-08 + ArtUnc_52: 4.17163704e-08 + ArtUnc_53: -2.93144206e-09 + ArtUnc_54: -3.51842027e-09 + ArtUnc_55: -4.50514823e-07 + ArtUnc_56: 4.74920419e-07 + ArtUnc_57: 1.41493406e-07 + ArtUnc_58: -5.06873105e-07 + ArtUnc_59: -4.01424853e-09 + ArtUnc_60: -6.52500989e-07 + ArtUnc_61: 7.47658219e-10 + ArtUnc_62: -6.22455801e-08 + ArtUnc_63: 5.94735290e-09 + ArtUnc_64: -4.60239022e-07 + ArtUnc_65: 1.46964626e-08 + ArtUnc_66: -8.74221556e-07 + ArtUnc_67: 2.68543741e-07 + ArtUnc_68: -2.51560081e-08 + ArtUnc_69: -9.12920091e-08 + ArtUnc_70: 2.00807334e-06 + ArtUnc_71: 2.98185580e-08 + ArtUnc_72: 1.20385585e-06 + ArtUnc_73: -3.73828637e-09 + ArtUnc_74: 7.39719224e-06 + ArtUnc_75: -1.12393589e-07 + ArtUnc_76: 1.96606423e-07 + ArtUnc_77: 2.02815567e-07 + ArtUnc_78: 1.29537543e-05 + ArtUnc_79: -2.11738088e-05 + ArtUnc_80: 3.96495646e-07 + ArtUnc_81: 2.68212297e-07 + ArtUnc_82: -5.16968633e-08 + ArtUnc_83: -1.59221548e-07 + ArtUnc_84: 7.31149494e-07 + ArtUnc_85: 2.96488567e-09 + ArtUnc_86: -2.05696289e-08 + ArtUnc_87: -2.21395209e-08 + ArtUnc_88: -3.83213249e-08 + ArtUnc_89: -9.45645157e-07 + ArtUnc_90: 2.95981626e-07 + ArtUnc_91: 1.36460411e-07 + ArtUnc_92: 1.63688694e-06 + ArtUnc_93: -4.62625192e-09 + ArtUnc_94: -2.90794177e-08 + ArtUnc_95: 1.24672280e-08 + ArtUnc_96: -9.50020845e-09 - stat: 0 - Uncorr: 1.8000000000000001e-06 - RCES: 4.219944430913754e-06 - ElEn: 6.605944822657846e-06 - ElTh: 3.064272017951409e-06 - Lumi: 1.3860000000000002e-06 - LArN: 9.000000000000001e-07 - StatMC: 1.3770000000000002e-05 - RadErr: 7.398000000000001e-06 - Model_1: 7.84039998979644e-06 - Model_2: 7.84039998979644e-06 - ModelRW_1: 1.205334219210589e-05 - ModelRW_2: 1.205334219210589e-05 - JES_1: 6.580406484405048e-06 - JES_2: 6.580406484405048e-06 - ArtUnc_1: 7.525551332810761e-19 - ArtUnc_2: 1.7011065060993183e-18 - ArtUnc_3: 2.2088374550225672e-17 - ArtUnc_4: 1.2241962774379785e-16 - ArtUnc_5: 4.140643639484835e-18 - ArtUnc_6: 1.838631669346577e-18 - ArtUnc_7: 4.662605559246975e-16 - ArtUnc_8: 3.6959069714146945e-15 - ArtUnc_9: 4.1228378670082187e-17 - ArtUnc_10: -1.6732250973069617e-14 - ArtUnc_11: 2.906247935746357e-14 - ArtUnc_12: 2.07354682755585e-15 - ArtUnc_13: 1.0956125714146772e-13 - ArtUnc_14: -7.645551038861831e-16 - ArtUnc_15: 4.445232595615555e-15 - ArtUnc_16: -2.675054665071818e-16 - ArtUnc_17: -6.686565834819298e-15 - ArtUnc_18: 1.8429779658553334e-16 - ArtUnc_19: 5.3093938955127536e-14 - ArtUnc_20: 1.6034412809324093e-13 - ArtUnc_21: -9.114499216275052e-15 - ArtUnc_22: 2.8160976159407595e-12 - ArtUnc_23: 5.926044542417139e-14 - ArtUnc_24: -1.9827743594159214e-12 - ArtUnc_25: -2.8747873249342066e-13 - ArtUnc_26: 1.6040258231256255e-13 - ArtUnc_27: 8.751908398152517e-12 - ArtUnc_28: 3.243057790862044e-13 - ArtUnc_29: 6.553866976012681e-12 - ArtUnc_30: 2.568968732178255e-12 - ArtUnc_31: -1.0753638369503453e-12 - ArtUnc_32: 4.1544951068356036e-11 - ArtUnc_33: -1.7348277059421816e-15 - ArtUnc_34: -1.5040569541908268e-12 - ArtUnc_35: -7.984848532209664e-13 - ArtUnc_36: 2.4281165361617614e-11 - ArtUnc_37: -4.750445954573314e-11 - ArtUnc_38: 9.352170382692404e-12 - ArtUnc_39: 5.0030111451300346e-11 - ArtUnc_40: -9.794687305802967e-13 - ArtUnc_41: -3.384009666384961e-10 - ArtUnc_42: 9.145350864578396e-12 - ArtUnc_43: 5.444991103342456e-10 - ArtUnc_44: 2.164790135155239e-10 - ArtUnc_45: -5.036337921055136e-12 - ArtUnc_46: 7.572012011880331e-11 - ArtUnc_47: 1.3122931491457895e-11 - ArtUnc_48: -1.6235023239829938e-12 - ArtUnc_49: 1.4463868992619182e-09 - ArtUnc_50: 6.487919379608554e-11 - ArtUnc_51: 2.564045270519593e-10 - ArtUnc_52: -1.9086491770607894e-11 - ArtUnc_53: -6.004925716718752e-11 - ArtUnc_54: 1.3528719560799027e-11 - ArtUnc_55: 1.1799485815545221e-08 - ArtUnc_56: -9.975340208781463e-09 - ArtUnc_57: -2.2521217812471348e-09 - ArtUnc_58: 2.804699758441273e-08 - ArtUnc_59: 2.2103976595410218e-10 - ArtUnc_60: 3.3649817451941395e-08 - ArtUnc_61: 1.1740658032824714e-10 - ArtUnc_62: -2.402339850854667e-09 - ArtUnc_63: 1.7391658748525373e-10 - ArtUnc_64: 8.89274434058841e-08 - ArtUnc_65: -4.7974890767402026e-09 - ArtUnc_66: 1.22364516968084e-07 - ArtUnc_67: 3.040652579547578e-08 - ArtUnc_68: -6.862203540163716e-09 - ArtUnc_69: -7.665774654289796e-09 - ArtUnc_70: 1.480625126632594e-07 - ArtUnc_71: 2.0979076256282548e-09 - ArtUnc_72: 5.122209600702832e-08 - ArtUnc_73: 1.3362480636831328e-10 - ArtUnc_74: 2.717582622135473e-07 - ArtUnc_75: -4.951873092024478e-08 - ArtUnc_76: 3.198076745946251e-09 - ArtUnc_77: 1.1602659070872547e-08 - ArtUnc_78: 2.0132775223619658e-07 - ArtUnc_79: -3.7306664299767404e-07 - ArtUnc_80: 5.992296682747596e-09 - ArtUnc_81: -4.792623496419435e-09 - ArtUnc_82: -1.0624184782695466e-09 - ArtUnc_83: 9.610625844064377e-08 - ArtUnc_84: -1.2694396721333717e-07 - ArtUnc_85: -6.457187616301097e-07 - ArtUnc_86: -2.9317899929255475e-07 - ArtUnc_87: -3.9372117306839423e-07 - ArtUnc_88: 4.955158818554302e-08 - ArtUnc_89: 1.8185695363269428e-07 - ArtUnc_90: 1.097358450627666e-06 - ArtUnc_91: -6.7007103400230265e-06 - ArtUnc_92: -4.1782353724083415e-08 - ArtUnc_93: 6.93294384753824e-08 - ArtUnc_94: 1.1183383282743e-07 - ArtUnc_95: -2.9181645166768758e-06 - ArtUnc_96: -6.066089548558399e-07 + Uncorr: 1.80000000e-06 + RCES: 4.21994443e-06 + ElEn: 6.60594482e-06 + ElTh: 3.06427202e-06 + Lumi: 1.38600000e-06 + LArN: 9.00000000e-07 + StatMC: 1.37700000e-05 + RadErr: 7.39800000e-06 + Model_1: 7.84039999e-06 + Model_2: 7.84039999e-06 + ModelRW_1: 1.20533422e-05 + ModelRW_2: 1.20533422e-05 + JES_1: 6.58040648e-06 + JES_2: 6.58040648e-06 + ArtUnc_1: 7.52555133e-19 + ArtUnc_2: 1.70110651e-18 + ArtUnc_3: 2.20883746e-17 + ArtUnc_4: 1.22419628e-16 + ArtUnc_5: 4.14064364e-18 + ArtUnc_6: 1.83863167e-18 + ArtUnc_7: 4.66260556e-16 + ArtUnc_8: 3.69590697e-15 + ArtUnc_9: 4.12283787e-17 + ArtUnc_10: -1.67322510e-14 + ArtUnc_11: 2.90624794e-14 + ArtUnc_12: 2.07354683e-15 + ArtUnc_13: 1.09561257e-13 + ArtUnc_14: -7.64555104e-16 + ArtUnc_15: 4.44523260e-15 + ArtUnc_16: -2.67505467e-16 + ArtUnc_17: -6.68656583e-15 + ArtUnc_18: 1.84297797e-16 + ArtUnc_19: 5.30939390e-14 + ArtUnc_20: 1.60344128e-13 + ArtUnc_21: -9.11449922e-15 + ArtUnc_22: 2.81609762e-12 + ArtUnc_23: 5.92604454e-14 + ArtUnc_24: -1.98277436e-12 + ArtUnc_25: -2.87478732e-13 + ArtUnc_26: 1.60402582e-13 + ArtUnc_27: 8.75190840e-12 + ArtUnc_28: 3.24305779e-13 + ArtUnc_29: 6.55386698e-12 + ArtUnc_30: 2.56896873e-12 + ArtUnc_31: -1.07536384e-12 + ArtUnc_32: 4.15449511e-11 + ArtUnc_33: -1.73482771e-15 + ArtUnc_34: -1.50405695e-12 + ArtUnc_35: -7.98484853e-13 + ArtUnc_36: 2.42811654e-11 + ArtUnc_37: -4.75044595e-11 + ArtUnc_38: 9.35217038e-12 + ArtUnc_39: 5.00301115e-11 + ArtUnc_40: -9.79468731e-13 + ArtUnc_41: -3.38400967e-10 + ArtUnc_42: 9.14535086e-12 + ArtUnc_43: 5.44499110e-10 + ArtUnc_44: 2.16479014e-10 + ArtUnc_45: -5.03633792e-12 + ArtUnc_46: 7.57201201e-11 + ArtUnc_47: 1.31229315e-11 + ArtUnc_48: -1.62350232e-12 + ArtUnc_49: 1.44638690e-09 + ArtUnc_50: 6.48791938e-11 + ArtUnc_51: 2.56404527e-10 + ArtUnc_52: -1.90864918e-11 + ArtUnc_53: -6.00492572e-11 + ArtUnc_54: 1.35287196e-11 + ArtUnc_55: 1.17994858e-08 + ArtUnc_56: -9.97534021e-09 + ArtUnc_57: -2.25212178e-09 + ArtUnc_58: 2.80469976e-08 + ArtUnc_59: 2.21039766e-10 + ArtUnc_60: 3.36498175e-08 + ArtUnc_61: 1.17406580e-10 + ArtUnc_62: -2.40233985e-09 + ArtUnc_63: 1.73916587e-10 + ArtUnc_64: 8.89274434e-08 + ArtUnc_65: -4.79748908e-09 + ArtUnc_66: 1.22364517e-07 + ArtUnc_67: 3.04065258e-08 + ArtUnc_68: -6.86220354e-09 + ArtUnc_69: -7.66577465e-09 + ArtUnc_70: 1.48062513e-07 + ArtUnc_71: 2.09790763e-09 + ArtUnc_72: 5.12220960e-08 + ArtUnc_73: 1.33624806e-10 + ArtUnc_74: 2.71758262e-07 + ArtUnc_75: -4.95187309e-08 + ArtUnc_76: 3.19807675e-09 + ArtUnc_77: 1.16026591e-08 + ArtUnc_78: 2.01327752e-07 + ArtUnc_79: -3.73066643e-07 + ArtUnc_80: 5.99229668e-09 + ArtUnc_81: -4.79262350e-09 + ArtUnc_82: -1.06241848e-09 + ArtUnc_83: 9.61062584e-08 + ArtUnc_84: -1.26943967e-07 + ArtUnc_85: -6.45718762e-07 + ArtUnc_86: -2.93178999e-07 + ArtUnc_87: -3.93721173e-07 + ArtUnc_88: 4.95515882e-08 + ArtUnc_89: 1.81856954e-07 + ArtUnc_90: 1.09735845e-06 + ArtUnc_91: -6.70071034e-06 + ArtUnc_92: -4.17823537e-08 + ArtUnc_93: 6.93294385e-08 + ArtUnc_94: 1.11833833e-07 + ArtUnc_95: -2.91816452e-06 + ArtUnc_96: -6.06608955e-07 - stat: 0 Uncorr: 0.00236 - RCES: 0.005189894345745393 - ElEn: 0.0029372994603887427 - ElTh: 0.0007559371402438169 - Lumi: 0.0018172 + RCES: 5.18989435e-03 + ElEn: 2.93729946e-03 + ElTh: 7.55937140e-04 + Lumi: 1.81720000e-03 LArN: 0.00118 - StatMC: 0.0034691999999999995 - RadErr: 0.0012744 - Model_1: 0.001118077242412169 - Model_2: 0.001118077242412169 - ModelRW_1: 0.009295060060053404 - ModelRW_2: 0.009295060060053404 - JES_1: 0.0014672625054842777 - JES_2: 0.0014672625054842777 - ArtUnc_1: -5.184077555533741e-09 - ArtUnc_2: 1.1677814854411006e-06 - ArtUnc_3: 6.484945269315138e-06 - ArtUnc_4: 2.9607766166695967e-05 - ArtUnc_5: 1.026009764528549e-06 - ArtUnc_6: 2.662512931754971e-07 - ArtUnc_7: 0.00019243537417088093 - ArtUnc_8: -0.0010127354200840388 - ArtUnc_9: 1.8484503325499536e-05 - ArtUnc_10: 0.00048367113275177076 - ArtUnc_11: -0.0010003494842459083 - ArtUnc_12: -8.105091416697253e-05 - ArtUnc_13: -0.001560303726292504 - ArtUnc_14: -1.3124683464170857e-05 - ArtUnc_15: -2.2591533427100417e-06 - ArtUnc_16: 5.817826599619027e-07 - ArtUnc_17: -1.1337540775553265e-06 - ArtUnc_18: 2.987029686372386e-09 - ArtUnc_19: -4.885827276898941e-06 - ArtUnc_20: 5.46036666714073e-06 - ArtUnc_21: -1.9999995328938429e-07 - ArtUnc_22: 1.127622547801492e-05 - ArtUnc_23: 2.4150688771514286e-07 - ArtUnc_24: -1.8699348321426944e-05 - ArtUnc_25: -8.703721396487673e-06 - ArtUnc_26: -5.289837150206431e-07 - ArtUnc_27: 2.092744305624243e-05 - ArtUnc_28: 1.1909023961737446e-06 - ArtUnc_29: -1.376509661274837e-07 - ArtUnc_30: 2.320036287223341e-06 - ArtUnc_31: -9.390934551493554e-07 - ArtUnc_32: 5.260444912495629e-05 - ArtUnc_33: -2.0294766714438776e-08 - ArtUnc_34: 6.195759482581024e-07 - ArtUnc_35: 9.550353952130143e-07 - ArtUnc_36: 3.729841789513544e-08 - ArtUnc_37: -8.01872132902217e-07 - ArtUnc_38: 1.3985486051409333e-07 - ArtUnc_39: -6.047222284831918e-07 - ArtUnc_40: -2.4299704067528574e-09 - ArtUnc_41: 1.4240506631795265e-07 - ArtUnc_42: 1.7631994306664332e-09 - ArtUnc_43: -3.8265962551438614e-07 - ArtUnc_44: 5.247038576006126e-07 - ArtUnc_45: -2.189129079051947e-09 - ArtUnc_46: -1.44380724631698e-08 - ArtUnc_47: 1.3171349073524332e-08 - ArtUnc_48: -2.7911157642128274e-10 - ArtUnc_49: -1.2825201759836507e-06 - ArtUnc_50: -3.951216736568954e-08 - ArtUnc_51: 4.224301304456062e-09 - ArtUnc_52: 6.753685855579711e-09 - ArtUnc_53: -1.0953565605415092e-09 - ArtUnc_54: 5.61711527514032e-10 - ArtUnc_55: -1.782027436821851e-08 - ArtUnc_56: -1.2209974055510724e-09 - ArtUnc_57: -4.019287354508974e-10 - ArtUnc_58: -4.213685453428593e-09 - ArtUnc_59: 1.2091701533994065e-10 - ArtUnc_60: -8.476923147507564e-09 - ArtUnc_61: 2.7460661768004776e-11 - ArtUnc_62: -2.362711917216108e-10 - ArtUnc_63: 1.9836546306819357e-11 - ArtUnc_64: -6.466304591781763e-08 - ArtUnc_65: 1.114451854006085e-09 - ArtUnc_66: 4.576488071035876e-08 - ArtUnc_67: 5.587580325253636e-10 - ArtUnc_68: -6.110199357284909e-10 - ArtUnc_69: -1.7776037748956474e-11 - ArtUnc_70: 2.105310448338427e-10 - ArtUnc_71: 2.036025074802777e-12 - ArtUnc_72: 5.932777335713569e-10 - ArtUnc_73: 4.2800168813375514e-11 - ArtUnc_74: 8.421436948084789e-11 - ArtUnc_75: -9.046981473561437e-10 - ArtUnc_76: -8.711386866030128e-12 - ArtUnc_77: -8.783496744864512e-12 - ArtUnc_78: 1.1157174486688844e-09 - ArtUnc_79: -6.647586284951538e-10 - ArtUnc_80: 2.5056554750015145e-12 - ArtUnc_81: 2.9053533657378786e-11 - ArtUnc_82: -1.6143113427655448e-12 - ArtUnc_83: -1.3792892516033813e-11 - ArtUnc_84: 2.55994988468569e-11 - ArtUnc_85: -4.1136523479301395e-13 - ArtUnc_86: 3.0054805505082905e-12 - ArtUnc_87: 3.6273406321135882e-12 - ArtUnc_88: -2.8013289475797947e-12 - ArtUnc_89: -1.9168249548640208e-11 - ArtUnc_90: -1.7317335682249917e-11 - ArtUnc_91: -2.0340718509920277e-12 - ArtUnc_92: 7.107882979360044e-11 - ArtUnc_93: -1.982403558075022e-12 - ArtUnc_94: -8.498361675632596e-13 - ArtUnc_95: 3.0305793135593906e-11 - ArtUnc_96: 4.905247241945646e-12 + StatMC: 3.46920000e-03 + RadErr: 1.27440000e-03 + Model_1: 1.11807724e-03 + Model_2: 1.11807724e-03 + ModelRW_1: 9.29506006e-03 + ModelRW_2: 9.29506006e-03 + JES_1: 1.46726251e-03 + JES_2: 1.46726251e-03 + ArtUnc_1: -5.18407756e-09 + ArtUnc_2: 1.16778149e-06 + ArtUnc_3: 6.48494527e-06 + ArtUnc_4: 2.96077662e-05 + ArtUnc_5: 1.02600976e-06 + ArtUnc_6: 2.66251293e-07 + ArtUnc_7: 1.92435374e-04 + ArtUnc_8: -1.01273542e-03 + ArtUnc_9: 1.84845033e-05 + ArtUnc_10: 4.83671133e-04 + ArtUnc_11: -1.00034948e-03 + ArtUnc_12: -8.10509142e-05 + ArtUnc_13: -1.56030373e-03 + ArtUnc_14: -1.31246835e-05 + ArtUnc_15: -2.25915334e-06 + ArtUnc_16: 5.81782660e-07 + ArtUnc_17: -1.13375408e-06 + ArtUnc_18: 2.98702969e-09 + ArtUnc_19: -4.88582728e-06 + ArtUnc_20: 5.46036667e-06 + ArtUnc_21: -1.99999953e-07 + ArtUnc_22: 1.12762255e-05 + ArtUnc_23: 2.41506888e-07 + ArtUnc_24: -1.86993483e-05 + ArtUnc_25: -8.70372140e-06 + ArtUnc_26: -5.28983715e-07 + ArtUnc_27: 2.09274431e-05 + ArtUnc_28: 1.19090240e-06 + ArtUnc_29: -1.37650966e-07 + ArtUnc_30: 2.32003629e-06 + ArtUnc_31: -9.39093455e-07 + ArtUnc_32: 5.26044491e-05 + ArtUnc_33: -2.02947667e-08 + ArtUnc_34: 6.19575948e-07 + ArtUnc_35: 9.55035395e-07 + ArtUnc_36: 3.72984179e-08 + ArtUnc_37: -8.01872133e-07 + ArtUnc_38: 1.39854861e-07 + ArtUnc_39: -6.04722228e-07 + ArtUnc_40: -2.42997041e-09 + ArtUnc_41: 1.42405066e-07 + ArtUnc_42: 1.76319943e-09 + ArtUnc_43: -3.82659626e-07 + ArtUnc_44: 5.24703858e-07 + ArtUnc_45: -2.18912908e-09 + ArtUnc_46: -1.44380725e-08 + ArtUnc_47: 1.31713491e-08 + ArtUnc_48: -2.79111576e-10 + ArtUnc_49: -1.28252018e-06 + ArtUnc_50: -3.95121674e-08 + ArtUnc_51: 4.22430130e-09 + ArtUnc_52: 6.75368586e-09 + ArtUnc_53: -1.09535656e-09 + ArtUnc_54: 5.61711528e-10 + ArtUnc_55: -1.78202744e-08 + ArtUnc_56: -1.22099741e-09 + ArtUnc_57: -4.01928735e-10 + ArtUnc_58: -4.21368545e-09 + ArtUnc_59: 1.20917015e-10 + ArtUnc_60: -8.47692315e-09 + ArtUnc_61: 2.74606618e-11 + ArtUnc_62: -2.36271192e-10 + ArtUnc_63: 1.98365463e-11 + ArtUnc_64: -6.46630459e-08 + ArtUnc_65: 1.11445185e-09 + ArtUnc_66: 4.57648807e-08 + ArtUnc_67: 5.58758033e-10 + ArtUnc_68: -6.11019936e-10 + ArtUnc_69: -1.77760377e-11 + ArtUnc_70: 2.10531045e-10 + ArtUnc_71: 2.03602507e-12 + ArtUnc_72: 5.93277734e-10 + ArtUnc_73: 4.28001688e-11 + ArtUnc_74: 8.42143695e-11 + ArtUnc_75: -9.04698147e-10 + ArtUnc_76: -8.71138687e-12 + ArtUnc_77: -8.78349674e-12 + ArtUnc_78: 1.11571745e-09 + ArtUnc_79: -6.64758628e-10 + ArtUnc_80: 2.50565548e-12 + ArtUnc_81: 2.90535337e-11 + ArtUnc_82: -1.61431134e-12 + ArtUnc_83: -1.37928925e-11 + ArtUnc_84: 2.55994988e-11 + ArtUnc_85: -4.11365235e-13 + ArtUnc_86: 3.00548055e-12 + ArtUnc_87: 3.62734063e-12 + ArtUnc_88: -2.80132895e-12 + ArtUnc_89: -1.91682495e-11 + ArtUnc_90: -1.73173357e-11 + ArtUnc_91: -2.03407185e-12 + ArtUnc_92: 7.10788298e-11 + ArtUnc_93: -1.98240356e-12 + ArtUnc_94: -8.49836168e-13 + ArtUnc_95: 3.03057931e-11 + ArtUnc_96: 4.90524724e-12 - stat: 0 Uncorr: 0.00104 - RCES: 0.0023045975266844316 - ElEn: 0.0007427085565684563 - ElTh: 0.0005409999630314221 - Lumi: 0.0008008 + RCES: 2.30459753e-03 + ElEn: 7.42708557e-04 + ElTh: 5.40999963e-04 + Lumi: 8.00800000e-04 LArN: 0.00052 - StatMC: 0.0013311999999999998 - RadErr: 0.00045759999999999996 - Model_1: 0.00040446507883870516 - Model_2: 0.00040446507883870516 - ModelRW_1: 0.0029195024781630175 - ModelRW_2: 0.0029195024781630175 - JES_1: 0.004261164423018666 - JES_2: 0.004261164423018666 - ArtUnc_1: 9.753547439539828e-11 - ArtUnc_2: -6.227372784156302e-09 - ArtUnc_3: 1.708759179124174e-08 - ArtUnc_4: 4.319110708990544e-07 - ArtUnc_5: 1.55443369537763e-08 - ArtUnc_6: 7.296344354538225e-09 - ArtUnc_7: 6.5460003475791674e-06 - ArtUnc_8: -5.7244761028330045e-05 - ArtUnc_9: 1.186505533190126e-06 - ArtUnc_10: 4.336442172324861e-05 - ArtUnc_11: -8.82617970058097e-05 - ArtUnc_12: -7.2030212472301245e-06 - ArtUnc_13: -0.00015235000980223684 - ArtUnc_14: -4.796339927814513e-07 - ArtUnc_15: -1.0309022261121442e-06 - ArtUnc_16: 9.39159190546805e-08 - ArtUnc_17: 5.141719307884341e-06 - ArtUnc_18: -1.6788426091245276e-07 - ArtUnc_19: -1.2964071120157313e-05 - ArtUnc_20: -3.0078776123106327e-05 - ArtUnc_21: 1.492529708589883e-06 - ArtUnc_22: -0.00023554744594108016 - ArtUnc_23: -3.676078550964621e-06 - ArtUnc_24: 0.00010267558870354524 - ArtUnc_25: 6.497741781847948e-05 - ArtUnc_26: -1.8235778533686426e-05 - ArtUnc_27: -0.00032423701033369213 - ArtUnc_28: -1.4688165452177336e-05 - ArtUnc_29: -0.0001522793414196557 - ArtUnc_30: -5.9820840239537066e-05 - ArtUnc_31: 2.457065364193579e-05 - ArtUnc_32: -0.000504650218600457 - ArtUnc_33: 1.7699603926293156e-07 - ArtUnc_34: -4.924692061993343e-06 - ArtUnc_35: -7.714627557624232e-06 - ArtUnc_36: -2.2392528805489359e-07 - ArtUnc_37: 6.411402027397098e-06 - ArtUnc_38: -1.1162652040395937e-06 - ArtUnc_39: -1.1430952119947765e-06 - ArtUnc_40: -6.748838465346753e-08 - ArtUnc_41: -2.3494255885952587e-06 - ArtUnc_42: -3.555146864871654e-08 - ArtUnc_43: 4.703836380515194e-06 - ArtUnc_44: -1.0566857235536604e-05 - ArtUnc_45: 4.4945124539397075e-08 - ArtUnc_46: -2.4857258556887034e-08 - ArtUnc_47: -1.6350369399770955e-07 - ArtUnc_48: 1.0292275806389106e-08 - ArtUnc_49: 1.4375919532156121e-05 - ArtUnc_50: 4.584058390843983e-07 - ArtUnc_51: -2.5943913798833367e-08 - ArtUnc_52: -3.026087152871613e-08 - ArtUnc_53: 5.632813063282722e-09 - ArtUnc_54: -3.4802714012223778e-09 - ArtUnc_55: 1.3420913257163547e-07 - ArtUnc_56: -1.919451231774332e-08 - ArtUnc_57: -4.460334623172426e-09 - ArtUnc_58: 1.8572987929047742e-07 - ArtUnc_59: -1.5232168649282663e-09 - ArtUnc_60: 2.412302921897371e-08 - ArtUnc_61: -1.7882848468633827e-10 - ArtUnc_62: 1.7966622080932891e-09 - ArtUnc_63: -1.5714942133352477e-10 - ArtUnc_64: 6.671627784511517e-07 - ArtUnc_65: -1.025189755352918e-08 - ArtUnc_66: -4.632156231862248e-07 - ArtUnc_67: -6.161588354153124e-09 - ArtUnc_68: 6.201726802224839e-09 - ArtUnc_69: 2.1346750028956372e-10 - ArtUnc_70: -2.4861479308310165e-09 - ArtUnc_71: -2.787441481271272e-11 - ArtUnc_72: -7.099604145631049e-09 - ArtUnc_73: -5.6861308517293e-10 - ArtUnc_74: -1.4292003880250983e-09 - ArtUnc_75: 1.0248505960157929e-08 - ArtUnc_76: 1.0475918137984441e-10 - ArtUnc_77: 5.677704383775364e-11 - ArtUnc_78: -1.2579885201608965e-08 - ArtUnc_79: 7.794043392189298e-09 - ArtUnc_80: -7.579711414801293e-11 - ArtUnc_81: -3.430852531169544e-10 - ArtUnc_82: 1.775117049089012e-11 - ArtUnc_83: 1.675001844948761e-10 - ArtUnc_84: -3.033136767965014e-10 - ArtUnc_85: 4.20039384186154e-12 - ArtUnc_86: -2.7784398976116623e-11 - ArtUnc_87: -3.283629617375756e-11 - ArtUnc_88: 3.125116211259143e-11 - ArtUnc_89: 2.877883598046601e-10 - ArtUnc_90: 1.536643881776656e-10 - ArtUnc_91: 1.5183076375485108e-11 - ArtUnc_92: -7.963922779568559e-10 - ArtUnc_93: 1.8540106738393557e-11 - ArtUnc_94: 1.3093416286191433e-11 - ArtUnc_95: -3.1596399642754e-10 - ArtUnc_96: -5.1872171587344076e-11 + StatMC: 1.33120000e-03 + RadErr: 4.57600000e-04 + Model_1: 4.04465079e-04 + Model_2: 4.04465079e-04 + ModelRW_1: 2.91950248e-03 + ModelRW_2: 2.91950248e-03 + JES_1: 4.26116442e-03 + JES_2: 4.26116442e-03 + ArtUnc_1: 9.75354744e-11 + ArtUnc_2: -6.22737278e-09 + ArtUnc_3: 1.70875918e-08 + ArtUnc_4: 4.31911071e-07 + ArtUnc_5: 1.55443370e-08 + ArtUnc_6: 7.29634435e-09 + ArtUnc_7: 6.54600035e-06 + ArtUnc_8: -5.72447610e-05 + ArtUnc_9: 1.18650553e-06 + ArtUnc_10: 4.33644217e-05 + ArtUnc_11: -8.82617970e-05 + ArtUnc_12: -7.20302125e-06 + ArtUnc_13: -1.52350010e-04 + ArtUnc_14: -4.79633993e-07 + ArtUnc_15: -1.03090223e-06 + ArtUnc_16: 9.39159191e-08 + ArtUnc_17: 5.14171931e-06 + ArtUnc_18: -1.67884261e-07 + ArtUnc_19: -1.29640711e-05 + ArtUnc_20: -3.00787761e-05 + ArtUnc_21: 1.49252971e-06 + ArtUnc_22: -2.35547446e-04 + ArtUnc_23: -3.67607855e-06 + ArtUnc_24: 1.02675589e-04 + ArtUnc_25: 6.49774178e-05 + ArtUnc_26: -1.82357785e-05 + ArtUnc_27: -3.24237010e-04 + ArtUnc_28: -1.46881655e-05 + ArtUnc_29: -1.52279341e-04 + ArtUnc_30: -5.98208402e-05 + ArtUnc_31: 2.45706536e-05 + ArtUnc_32: -5.04650219e-04 + ArtUnc_33: 1.76996039e-07 + ArtUnc_34: -4.92469206e-06 + ArtUnc_35: -7.71462756e-06 + ArtUnc_36: -2.23925288e-07 + ArtUnc_37: 6.41140203e-06 + ArtUnc_38: -1.11626520e-06 + ArtUnc_39: -1.14309521e-06 + ArtUnc_40: -6.74883847e-08 + ArtUnc_41: -2.34942559e-06 + ArtUnc_42: -3.55514686e-08 + ArtUnc_43: 4.70383638e-06 + ArtUnc_44: -1.05668572e-05 + ArtUnc_45: 4.49451245e-08 + ArtUnc_46: -2.48572586e-08 + ArtUnc_47: -1.63503694e-07 + ArtUnc_48: 1.02922758e-08 + ArtUnc_49: 1.43759195e-05 + ArtUnc_50: 4.58405839e-07 + ArtUnc_51: -2.59439138e-08 + ArtUnc_52: -3.02608715e-08 + ArtUnc_53: 5.63281306e-09 + ArtUnc_54: -3.48027140e-09 + ArtUnc_55: 1.34209133e-07 + ArtUnc_56: -1.91945123e-08 + ArtUnc_57: -4.46033462e-09 + ArtUnc_58: 1.85729879e-07 + ArtUnc_59: -1.52321686e-09 + ArtUnc_60: 2.41230292e-08 + ArtUnc_61: -1.78828485e-10 + ArtUnc_62: 1.79666221e-09 + ArtUnc_63: -1.57149421e-10 + ArtUnc_64: 6.67162778e-07 + ArtUnc_65: -1.02518976e-08 + ArtUnc_66: -4.63215623e-07 + ArtUnc_67: -6.16158835e-09 + ArtUnc_68: 6.20172680e-09 + ArtUnc_69: 2.13467500e-10 + ArtUnc_70: -2.48614793e-09 + ArtUnc_71: -2.78744148e-11 + ArtUnc_72: -7.09960415e-09 + ArtUnc_73: -5.68613085e-10 + ArtUnc_74: -1.42920039e-09 + ArtUnc_75: 1.02485060e-08 + ArtUnc_76: 1.04759181e-10 + ArtUnc_77: 5.67770438e-11 + ArtUnc_78: -1.25798852e-08 + ArtUnc_79: 7.79404339e-09 + ArtUnc_80: -7.57971141e-11 + ArtUnc_81: -3.43085253e-10 + ArtUnc_82: 1.77511705e-11 + ArtUnc_83: 1.67500184e-10 + ArtUnc_84: -3.03313677e-10 + ArtUnc_85: 4.20039384e-12 + ArtUnc_86: -2.77843990e-11 + ArtUnc_87: -3.28362962e-11 + ArtUnc_88: 3.12511621e-11 + ArtUnc_89: 2.87788360e-10 + ArtUnc_90: 1.53664388e-10 + ArtUnc_91: 1.51830764e-11 + ArtUnc_92: -7.96392278e-10 + ArtUnc_93: 1.85401067e-11 + ArtUnc_94: 1.30934163e-11 + ArtUnc_95: -3.15963996e-10 + ArtUnc_96: -5.18721716e-11 - stat: 0 Uncorr: 0.000327 - RCES: 0.00035480253448221026 - ElEn: 0.00027982870957069433 - ElTh: 7.646138290012809e-05 - Lumi: 0.00025179 - LArN: 0.0001635 - StatMC: 0.00042183 - RadErr: 0.0001308 - Model_1: 5.318150101304024e-05 - Model_2: 5.318150101304024e-05 - ModelRW_1: 0.0007722878842763234 - ModelRW_2: 0.0007722878842763234 - JES_1: 0.001112187042924885 - JES_2: 0.001112187042924885 - ArtUnc_1: 7.051224216026941e-11 - ArtUnc_2: -1.3977675181295216e-08 - ArtUnc_3: -7.119561085981802e-08 - ArtUnc_4: -2.8058198438083383e-07 - ArtUnc_5: -9.59221642205358e-09 - ArtUnc_6: -2.02978998101931e-09 - ArtUnc_7: -1.3472556520548992e-06 - ArtUnc_8: 4.150934493663712e-06 - ArtUnc_9: -5.952842188927762e-08 - ArtUnc_10: 5.438010394919081e-08 - ArtUnc_11: 7.05979688352413e-08 - ArtUnc_12: 9.139260861476654e-09 - ArtUnc_13: -1.2790170539615633e-06 - ArtUnc_14: 2.5617408347870514e-08 - ArtUnc_15: -1.9841482618095413e-08 - ArtUnc_16: 1.6198073526381094e-10 - ArtUnc_17: 2.3983235953556213e-07 - ArtUnc_18: -7.139715679976194e-09 - ArtUnc_19: -7.286802604846646e-07 - ArtUnc_20: -1.534583304142478e-06 - ArtUnc_21: 9.112349277463271e-08 - ArtUnc_22: -1.3098744061619803e-05 - ArtUnc_23: -2.3664354657076953e-07 - ArtUnc_24: 5.656671937789673e-06 - ArtUnc_25: 7.335671792195338e-06 - ArtUnc_26: -1.4577249046427076e-06 - ArtUnc_27: -2.2342813730992484e-05 - ArtUnc_28: -9.32741641681257e-07 - ArtUnc_29: -3.5711130448348982e-06 - ArtUnc_30: -2.3298242139567014e-06 - ArtUnc_31: 9.539461832991869e-07 - ArtUnc_32: -3.365468085499373e-05 - ArtUnc_33: 1.0814802950801851e-08 - ArtUnc_34: 5.098518791699796e-07 - ArtUnc_35: 7.814559505928643e-07 - ArtUnc_36: -6.442488936637111e-06 - ArtUnc_37: 1.9979813786580084e-05 - ArtUnc_38: -3.559577279397605e-06 - ArtUnc_39: -2.0489934740514652e-05 - ArtUnc_40: 3.024895811611956e-08 - ArtUnc_41: 6.08972888844798e-05 - ArtUnc_42: -3.780216667070498e-07 - ArtUnc_43: -8.955261597295062e-05 - ArtUnc_44: -4.8024390229445863e-05 - ArtUnc_45: 6.222098420543644e-07 - ArtUnc_46: -1.368795153262544e-05 - ArtUnc_47: 9.264014209204773e-07 - ArtUnc_48: 1.6094043163831705e-08 - ArtUnc_49: -0.00017973388342818443 - ArtUnc_50: -4.459666900137267e-06 - ArtUnc_51: 2.038050437567206e-07 - ArtUnc_52: -1.0862800138360604e-07 - ArtUnc_53: 3.9714255876467446e-09 - ArtUnc_54: 2.966360374701162e-09 - ArtUnc_55: -1.8811433941314635e-06 - ArtUnc_56: -1.9456883465457418e-06 - ArtUnc_57: -5.713827041420243e-07 - ArtUnc_58: -2.6674338272983496e-06 - ArtUnc_59: 3.8161231902587136e-08 - ArtUnc_60: 2.6960411564784075e-06 - ArtUnc_61: 2.2069932666540668e-09 - ArtUnc_62: 3.1335045374841156e-08 - ArtUnc_63: -3.6382703959669343e-09 - ArtUnc_64: -5.303985659363463e-06 - ArtUnc_65: 3.295262320683488e-08 - ArtUnc_66: 6.51419437064317e-06 - ArtUnc_67: 1.224938548401954e-07 - ArtUnc_68: -6.0424720363524e-08 - ArtUnc_69: -2.525003177364441e-09 - ArtUnc_70: 1.6964903821867333e-08 - ArtUnc_71: -4.213129200925123e-11 - ArtUnc_72: 1.0434560435049898e-09 - ArtUnc_73: 2.2988054108867716e-10 - ArtUnc_74: -4.029581933211132e-08 - ArtUnc_75: 1.1695826127329766e-08 - ArtUnc_76: -1.1125737214139704e-09 - ArtUnc_77: -9.908908004047555e-10 - ArtUnc_78: 2.1566338396236692e-07 - ArtUnc_79: 7.525356436864798e-08 - ArtUnc_80: -5.458073635477984e-10 - ArtUnc_81: 6.330795480691271e-09 - ArtUnc_82: 2.219836404681475e-10 - ArtUnc_83: -1.4846246330279971e-09 - ArtUnc_84: 1.368357657876286e-10 - ArtUnc_85: 2.579468971964336e-10 - ArtUnc_86: 7.611218948708382e-11 - ArtUnc_87: 3.4903456058610976e-11 - ArtUnc_88: -7.88311010620826e-11 - ArtUnc_89: 1.7002038126260505e-09 - ArtUnc_90: -1.1830090352260171e-09 - ArtUnc_91: 6.700141510953795e-10 - ArtUnc_92: 1.7580036048980386e-09 - ArtUnc_93: -4.661069203930877e-11 - ArtUnc_94: -5.5651946891796474e-11 - ArtUnc_95: -2.1446402629044331e-10 - ArtUnc_96: -5.1926693597453337e-11 + RCES: 3.54802534e-04 + ElEn: 2.79828710e-04 + ElTh: 7.64613829e-05 + Lumi: 2.51790000e-04 + LArN: 1.63500000e-04 + StatMC: 4.21830000e-04 + RadErr: 1.30800000e-04 + Model_1: 5.31815010e-05 + Model_2: 5.31815010e-05 + ModelRW_1: 7.72287884e-04 + ModelRW_2: 7.72287884e-04 + JES_1: 1.11218704e-03 + JES_2: 1.11218704e-03 + ArtUnc_1: 7.05122422e-11 + ArtUnc_2: -1.39776752e-08 + ArtUnc_3: -7.11956109e-08 + ArtUnc_4: -2.80581984e-07 + ArtUnc_5: -9.59221642e-09 + ArtUnc_6: -2.02978998e-09 + ArtUnc_7: -1.34725565e-06 + ArtUnc_8: 4.15093449e-06 + ArtUnc_9: -5.95284219e-08 + ArtUnc_10: 5.43801039e-08 + ArtUnc_11: 7.05979688e-08 + ArtUnc_12: 9.13926086e-09 + ArtUnc_13: -1.27901705e-06 + ArtUnc_14: 2.56174083e-08 + ArtUnc_15: -1.98414826e-08 + ArtUnc_16: 1.61980735e-10 + ArtUnc_17: 2.39832360e-07 + ArtUnc_18: -7.13971568e-09 + ArtUnc_19: -7.28680260e-07 + ArtUnc_20: -1.53458330e-06 + ArtUnc_21: 9.11234928e-08 + ArtUnc_22: -1.30987441e-05 + ArtUnc_23: -2.36643547e-07 + ArtUnc_24: 5.65667194e-06 + ArtUnc_25: 7.33567179e-06 + ArtUnc_26: -1.45772490e-06 + ArtUnc_27: -2.23428137e-05 + ArtUnc_28: -9.32741642e-07 + ArtUnc_29: -3.57111304e-06 + ArtUnc_30: -2.32982421e-06 + ArtUnc_31: 9.53946183e-07 + ArtUnc_32: -3.36546809e-05 + ArtUnc_33: 1.08148030e-08 + ArtUnc_34: 5.09851879e-07 + ArtUnc_35: 7.81455951e-07 + ArtUnc_36: -6.44248894e-06 + ArtUnc_37: 1.99798138e-05 + ArtUnc_38: -3.55957728e-06 + ArtUnc_39: -2.04899347e-05 + ArtUnc_40: 3.02489581e-08 + ArtUnc_41: 6.08972889e-05 + ArtUnc_42: -3.78021667e-07 + ArtUnc_43: -8.95526160e-05 + ArtUnc_44: -4.80243902e-05 + ArtUnc_45: 6.22209842e-07 + ArtUnc_46: -1.36879515e-05 + ArtUnc_47: 9.26401421e-07 + ArtUnc_48: 1.60940432e-08 + ArtUnc_49: -1.79733883e-04 + ArtUnc_50: -4.45966690e-06 + ArtUnc_51: 2.03805044e-07 + ArtUnc_52: -1.08628001e-07 + ArtUnc_53: 3.97142559e-09 + ArtUnc_54: 2.96636037e-09 + ArtUnc_55: -1.88114339e-06 + ArtUnc_56: -1.94568835e-06 + ArtUnc_57: -5.71382704e-07 + ArtUnc_58: -2.66743383e-06 + ArtUnc_59: 3.81612319e-08 + ArtUnc_60: 2.69604116e-06 + ArtUnc_61: 2.20699327e-09 + ArtUnc_62: 3.13350454e-08 + ArtUnc_63: -3.63827040e-09 + ArtUnc_64: -5.30398566e-06 + ArtUnc_65: 3.29526232e-08 + ArtUnc_66: 6.51419437e-06 + ArtUnc_67: 1.22493855e-07 + ArtUnc_68: -6.04247204e-08 + ArtUnc_69: -2.52500318e-09 + ArtUnc_70: 1.69649038e-08 + ArtUnc_71: -4.21312920e-11 + ArtUnc_72: 1.04345604e-09 + ArtUnc_73: 2.29880541e-10 + ArtUnc_74: -4.02958193e-08 + ArtUnc_75: 1.16958261e-08 + ArtUnc_76: -1.11257372e-09 + ArtUnc_77: -9.90890800e-10 + ArtUnc_78: 2.15663384e-07 + ArtUnc_79: 7.52535644e-08 + ArtUnc_80: -5.45807364e-10 + ArtUnc_81: 6.33079548e-09 + ArtUnc_82: 2.21983640e-10 + ArtUnc_83: -1.48462463e-09 + ArtUnc_84: 1.36835766e-10 + ArtUnc_85: 2.57946897e-10 + ArtUnc_86: 7.61121895e-11 + ArtUnc_87: 3.49034561e-11 + ArtUnc_88: -7.88311011e-11 + ArtUnc_89: 1.70020381e-09 + ArtUnc_90: -1.18300904e-09 + ArtUnc_91: 6.70014151e-10 + ArtUnc_92: 1.75800360e-09 + ArtUnc_93: -4.66106920e-11 + ArtUnc_94: -5.56519469e-11 + ArtUnc_95: -2.14464026e-10 + ArtUnc_96: -5.19266936e-11 - stat: 0 Uncorr: 8.0e-05 - RCES: 6.771587701566007e-05 - ElEn: 6.65684610006871e-05 - ElTh: 1.3786950351691272e-05 + RCES: 6.77158770e-05 + ElEn: 6.65684610e-05 + ElTh: 1.37869504e-05 Lumi: 6.16e-05 LArN: 4.0e-05 - StatMC: 0.0001616 + StatMC: 1.61600000e-04 RadErr: 5.92e-05 - Model_1: 3.224406922210656e-05 - Model_2: 3.224406922210656e-05 - ModelRW_1: 3.733523804664971e-05 - ModelRW_2: 3.733523804664971e-05 - JES_1: 0.0001809793358369955 - JES_2: 0.0001809793358369955 - ArtUnc_1: 5.02819392911427e-14 - ArtUnc_2: -7.93092386430135e-12 - ArtUnc_3: -3.500863412851607e-11 - ArtUnc_4: -9.003481958336642e-11 - ArtUnc_5: -3.1431617742647692e-12 - ArtUnc_6: -2.6228548749244885e-13 - ArtUnc_7: 2.4988272275362133e-10 - ArtUnc_8: -7.095544583119142e-09 - ArtUnc_9: 1.7262562010402244e-10 - ArtUnc_10: 9.466624384963338e-09 - ArtUnc_11: -1.879788980545776e-08 - ArtUnc_12: -1.548158785248519e-09 - ArtUnc_13: -4.131411529644298e-08 - ArtUnc_14: 1.2381720443187933e-10 - ArtUnc_15: -5.996467589130546e-10 - ArtUnc_16: 4.2392744590761055e-11 - ArtUnc_17: 3.800322858826508e-09 - ArtUnc_18: -1.161756959648318e-10 - ArtUnc_19: -9.204297352626248e-09 - ArtUnc_20: -3.29521590064212e-08 - ArtUnc_21: 1.7060190359246318e-09 - ArtUnc_22: -3.159032400526775e-07 - ArtUnc_23: -6.308935847250307e-09 - ArtUnc_24: 1.7278494489382729e-07 - ArtUnc_25: 1.3875472113931756e-07 - ArtUnc_26: -2.9595791064606375e-08 - ArtUnc_27: -6.592875651505602e-07 - ArtUnc_28: -2.4985005971144744e-08 - ArtUnc_29: -3.1242140113639304e-07 - ArtUnc_30: -1.2830119955860022e-07 - ArtUnc_31: 5.325623570444768e-08 - ArtUnc_32: -1.557857961817675e-06 - ArtUnc_33: 1.8667160570307258e-10 - ArtUnc_34: 3.4328292949259264e-08 - ArtUnc_35: 1.5603640778777838e-08 - ArtUnc_36: -3.41441233333585e-07 - ArtUnc_37: 6.324378226229994e-07 - ArtUnc_38: -1.1310962710342948e-07 - ArtUnc_39: -5.43606112255573e-07 - ArtUnc_40: 9.94074320502835e-09 - ArtUnc_41: 2.723372214838412e-06 - ArtUnc_42: 3.5212973382349376e-09 - ArtUnc_43: -3.2286787244513157e-06 - ArtUnc_44: -1.137559147814532e-06 - ArtUnc_45: 1.8692778347107762e-08 - ArtUnc_46: -4.703960347728094e-07 - ArtUnc_47: 1.7808546771262623e-07 - ArtUnc_48: -6.883291106153041e-09 - ArtUnc_49: -5.562381912637747e-06 - ArtUnc_50: -1.1534748792065501e-07 - ArtUnc_51: -1.028575206998728e-06 - ArtUnc_52: 3.031560972701436e-07 - ArtUnc_53: 6.9722900824939765e-09 - ArtUnc_54: -8.435772815707573e-08 - ArtUnc_55: -1.3118817752018197e-05 - ArtUnc_56: 8.339153477261923e-06 - ArtUnc_57: 2.363714414463892e-06 - ArtUnc_58: -2.2236860622236516e-05 - ArtUnc_59: -4.699881721560735e-08 - ArtUnc_60: -2.2636716379401355e-05 - ArtUnc_61: -3.1315628659250002e-09 - ArtUnc_62: -8.573226609941899e-07 - ArtUnc_63: 9.546774888907887e-08 - ArtUnc_64: -4.345762967427407e-05 - ArtUnc_65: 1.6714745717974936e-06 - ArtUnc_66: -5.062688865522955e-05 - ArtUnc_67: -1.662439106353279e-06 - ArtUnc_68: 3.187052164572777e-07 - ArtUnc_69: 4.13515625985064e-08 - ArtUnc_70: -2.9553797995699014e-07 - ArtUnc_71: 2.7263250348303047e-09 - ArtUnc_72: 1.3610040269891257e-06 - ArtUnc_73: 1.0264420914310467e-07 - ArtUnc_74: 5.69311430194333e-07 - ArtUnc_75: -1.7030781847754871e-06 - ArtUnc_76: -6.269284013211263e-09 - ArtUnc_77: 8.642190079204772e-09 - ArtUnc_78: -3.365296810775796e-06 - ArtUnc_79: -1.84430929476948e-06 - ArtUnc_80: 9.498543448078409e-09 - ArtUnc_81: -9.359532363282695e-08 - ArtUnc_82: -5.063739805795505e-09 - ArtUnc_83: 1.672309867316878e-08 - ArtUnc_84: 1.257677996302173e-08 - ArtUnc_85: -5.998074356448583e-09 - ArtUnc_86: -1.4311052060218262e-09 - ArtUnc_87: -1.0586207274600761e-09 - ArtUnc_88: -1.508268361170333e-10 - ArtUnc_89: -3.94871824587661e-08 - ArtUnc_90: 1.8390899459919323e-08 - ArtUnc_91: -1.220670268979323e-08 - ArtUnc_92: -3.9562589117971506e-08 - ArtUnc_93: 2.223360481207455e-10 - ArtUnc_94: 1.6431022394438529e-09 - ArtUnc_95: 2.7427779419367713e-09 - ArtUnc_96: 2.0710559073924454e-10 + Model_1: 3.22440692e-05 + Model_2: 3.22440692e-05 + ModelRW_1: 3.73352380e-05 + ModelRW_2: 3.73352380e-05 + JES_1: 1.80979336e-04 + JES_2: 1.80979336e-04 + ArtUnc_1: 5.02819393e-14 + ArtUnc_2: -7.93092386e-12 + ArtUnc_3: -3.50086341e-11 + ArtUnc_4: -9.00348196e-11 + ArtUnc_5: -3.14316177e-12 + ArtUnc_6: -2.62285487e-13 + ArtUnc_7: 2.49882723e-10 + ArtUnc_8: -7.09554458e-09 + ArtUnc_9: 1.72625620e-10 + ArtUnc_10: 9.46662438e-09 + ArtUnc_11: -1.87978898e-08 + ArtUnc_12: -1.54815879e-09 + ArtUnc_13: -4.13141153e-08 + ArtUnc_14: 1.23817204e-10 + ArtUnc_15: -5.99646759e-10 + ArtUnc_16: 4.23927446e-11 + ArtUnc_17: 3.80032286e-09 + ArtUnc_18: -1.16175696e-10 + ArtUnc_19: -9.20429735e-09 + ArtUnc_20: -3.29521590e-08 + ArtUnc_21: 1.70601904e-09 + ArtUnc_22: -3.15903240e-07 + ArtUnc_23: -6.30893585e-09 + ArtUnc_24: 1.72784945e-07 + ArtUnc_25: 1.38754721e-07 + ArtUnc_26: -2.95957911e-08 + ArtUnc_27: -6.59287565e-07 + ArtUnc_28: -2.49850060e-08 + ArtUnc_29: -3.12421401e-07 + ArtUnc_30: -1.28301200e-07 + ArtUnc_31: 5.32562357e-08 + ArtUnc_32: -1.55785796e-06 + ArtUnc_33: 1.86671606e-10 + ArtUnc_34: 3.43282929e-08 + ArtUnc_35: 1.56036408e-08 + ArtUnc_36: -3.41441233e-07 + ArtUnc_37: 6.32437823e-07 + ArtUnc_38: -1.13109627e-07 + ArtUnc_39: -5.43606112e-07 + ArtUnc_40: 9.94074321e-09 + ArtUnc_41: 2.72337221e-06 + ArtUnc_42: 3.52129734e-09 + ArtUnc_43: -3.22867872e-06 + ArtUnc_44: -1.13755915e-06 + ArtUnc_45: 1.86927783e-08 + ArtUnc_46: -4.70396035e-07 + ArtUnc_47: 1.78085468e-07 + ArtUnc_48: -6.88329111e-09 + ArtUnc_49: -5.56238191e-06 + ArtUnc_50: -1.15347488e-07 + ArtUnc_51: -1.02857521e-06 + ArtUnc_52: 3.03156097e-07 + ArtUnc_53: 6.97229008e-09 + ArtUnc_54: -8.43577282e-08 + ArtUnc_55: -1.31188178e-05 + ArtUnc_56: 8.33915348e-06 + ArtUnc_57: 2.36371441e-06 + ArtUnc_58: -2.22368606e-05 + ArtUnc_59: -4.69988172e-08 + ArtUnc_60: -2.26367164e-05 + ArtUnc_61: -3.13156287e-09 + ArtUnc_62: -8.57322661e-07 + ArtUnc_63: 9.54677489e-08 + ArtUnc_64: -4.34576297e-05 + ArtUnc_65: 1.67147457e-06 + ArtUnc_66: -5.06268887e-05 + ArtUnc_67: -1.66243911e-06 + ArtUnc_68: 3.18705216e-07 + ArtUnc_69: 4.13515626e-08 + ArtUnc_70: -2.95537980e-07 + ArtUnc_71: 2.72632503e-09 + ArtUnc_72: 1.36100403e-06 + ArtUnc_73: 1.02644209e-07 + ArtUnc_74: 5.69311430e-07 + ArtUnc_75: -1.70307818e-06 + ArtUnc_76: -6.26928401e-09 + ArtUnc_77: 8.64219008e-09 + ArtUnc_78: -3.36529681e-06 + ArtUnc_79: -1.84430929e-06 + ArtUnc_80: 9.49854345e-09 + ArtUnc_81: -9.35953236e-08 + ArtUnc_82: -5.06373981e-09 + ArtUnc_83: 1.67230987e-08 + ArtUnc_84: 1.25767800e-08 + ArtUnc_85: -5.99807436e-09 + ArtUnc_86: -1.43110521e-09 + ArtUnc_87: -1.05862073e-09 + ArtUnc_88: -1.50826836e-10 + ArtUnc_89: -3.94871825e-08 + ArtUnc_90: 1.83908995e-08 + ArtUnc_91: -1.22067027e-08 + ArtUnc_92: -3.95625891e-08 + ArtUnc_93: 2.22336048e-10 + ArtUnc_94: 1.64310224e-09 + ArtUnc_95: 2.74277794e-09 + ArtUnc_96: 2.07105591e-10 - stat: 0 Uncorr: 8.53e-06 - RCES: 2.8109521065423727e-05 - ElEn: 1.6267047707558985e-05 - ElTh: 7.393104089622979e-06 - Lumi: 6.568100000000001e-06 - LArN: 4.265e-06 - StatMC: 9.05033e-05 - RadErr: 2.37987e-05 - Model_1: 0.0001050708350941402 - Model_2: 0.0001050708350941402 - ModelRW_1: 0.00010549304855318665 - ModelRW_2: 0.00010549304855318665 - JES_1: 6.292605339996304e-05 - JES_2: 6.292605339996304e-05 - ArtUnc_1: 3.1649572545798636e-16 - ArtUnc_2: -5.233577612250058e-14 - ArtUnc_3: 1.2009689584926394e-13 - ArtUnc_4: 5.277572473053857e-12 - ArtUnc_5: 1.9602452330203135e-13 - ArtUnc_6: 1.1950603216690673e-13 - ArtUnc_7: 1.177091946862514e-10 - ArtUnc_8: -1.4179526772949043e-09 - ArtUnc_9: 3.140778790121353e-11 - ArtUnc_10: 1.5709557509707463e-09 - ArtUnc_11: -3.1240802535447885e-09 - ArtUnc_12: -2.518727268235315e-10 - ArtUnc_13: -7.045050237369745e-09 - ArtUnc_14: -2.4889382837967554e-11 - ArtUnc_15: -6.151766026825989e-11 - ArtUnc_16: 5.582573905562612e-12 - ArtUnc_17: 3.960908745469827e-10 - ArtUnc_18: -1.2186192497896489e-11 - ArtUnc_19: -1.2867497103024744e-09 - ArtUnc_20: -4.035383590529554e-09 - ArtUnc_21: 2.330392107937851e-10 - ArtUnc_22: -4.487504907636002e-08 - ArtUnc_23: -7.936318198209268e-10 - ArtUnc_24: 2.371442818121514e-08 - ArtUnc_25: 1.574975239816285e-08 - ArtUnc_26: -4.309261165127264e-09 - ArtUnc_27: -9.7984030705831e-08 - ArtUnc_28: -4.944339987828451e-09 - ArtUnc_29: -5.412031033562565e-08 - ArtUnc_30: -2.2124207161280466e-08 - ArtUnc_31: 9.099620059241552e-09 - ArtUnc_32: -2.4212284907869234e-07 - ArtUnc_33: 7.643746265587136e-11 - ArtUnc_34: -2.531175015901532e-09 - ArtUnc_35: -4.649292937064408e-09 - ArtUnc_36: 2.1601831095153314e-10 - ArtUnc_37: 1.4995257681146108e-09 - ArtUnc_38: -1.5743773344953369e-10 - ArtUnc_39: 7.455873430691035e-09 - ArtUnc_40: -4.957949681526738e-11 - ArtUnc_41: -2.9637995206043367e-08 - ArtUnc_42: 1.4364644653972603e-09 - ArtUnc_43: 8.010985922253236e-08 - ArtUnc_44: 1.1402569191300257e-08 - ArtUnc_45: -4.70319844532275e-10 - ArtUnc_46: 1.0023033931634319e-08 - ArtUnc_47: 7.628779905008244e-09 - ArtUnc_48: -4.3229700830991953e-10 - ArtUnc_49: 3.164264343360258e-07 - ArtUnc_50: 1.244365852390118e-08 - ArtUnc_51: -5.759850014053632e-08 - ArtUnc_52: 4.17163704070633e-08 - ArtUnc_53: -2.931442056952663e-09 - ArtUnc_54: -3.5184202673116693e-09 - ArtUnc_55: -4.5051482319390554e-07 - ArtUnc_56: 4.7492041930752146e-07 - ArtUnc_57: 1.4149340622586435e-07 - ArtUnc_58: -5.06873105407668e-07 - ArtUnc_59: -4.014248528158959e-09 - ArtUnc_60: -6.525009893137404e-07 - ArtUnc_61: 7.476582192990769e-10 - ArtUnc_62: -6.224558013585522e-08 - ArtUnc_63: 5.947352900612051e-09 - ArtUnc_64: -4.6023902239792263e-07 - ArtUnc_65: 1.469646262779821e-08 - ArtUnc_66: -8.742215561408021e-07 - ArtUnc_67: 2.685437413470425e-07 - ArtUnc_68: -2.515600809491753e-08 - ArtUnc_69: -9.129200909773729e-08 - ArtUnc_70: 2.0080733355498856e-06 - ArtUnc_71: 2.981855795298056e-08 - ArtUnc_72: 1.2038558502867265e-06 - ArtUnc_73: -3.738286373691037e-09 - ArtUnc_74: 7.397192237967834e-06 - ArtUnc_75: -1.1239358915581491e-07 - ArtUnc_76: 1.9660642274449898e-07 - ArtUnc_77: 2.0281556677642994e-07 - ArtUnc_78: 1.2953754330491275e-05 - ArtUnc_79: -2.117380884707036e-05 - ArtUnc_80: 3.964956462254869e-07 - ArtUnc_81: 2.6821229728058613e-07 - ArtUnc_82: -5.169686328983974e-08 - ArtUnc_83: -1.592215483144535e-07 - ArtUnc_84: 7.311494935121575e-07 - ArtUnc_85: 2.9648856667801234e-09 - ArtUnc_86: -2.056962891334345e-08 - ArtUnc_87: -2.2139520866865153e-08 - ArtUnc_88: -3.832132486986376e-08 - ArtUnc_89: -9.456451570329005e-07 - ArtUnc_90: 2.959816264128777e-07 - ArtUnc_91: 1.36460411354434e-07 - ArtUnc_92: 1.6368869442189318e-06 - ArtUnc_93: -4.62625192359946e-09 - ArtUnc_94: -2.907941765743483e-08 - ArtUnc_95: 1.2467227997260188e-08 - ArtUnc_96: -9.500208452465233e-09 + RCES: 2.81095211e-05 + ElEn: 1.62670477e-05 + ElTh: 7.39310409e-06 + Lumi: 6.56810000e-06 + LArN: 4.26500000e-06 + StatMC: 9.05033000e-05 + RadErr: 2.37987000e-05 + Model_1: 1.05070835e-04 + Model_2: 1.05070835e-04 + ModelRW_1: 1.05493049e-04 + ModelRW_2: 1.05493049e-04 + JES_1: 6.29260534e-05 + JES_2: 6.29260534e-05 + ArtUnc_1: 3.16495725e-16 + ArtUnc_2: -5.23357761e-14 + ArtUnc_3: 1.20096896e-13 + ArtUnc_4: 5.27757247e-12 + ArtUnc_5: 1.96024523e-13 + ArtUnc_6: 1.19506032e-13 + ArtUnc_7: 1.17709195e-10 + ArtUnc_8: -1.41795268e-09 + ArtUnc_9: 3.14077879e-11 + ArtUnc_10: 1.57095575e-09 + ArtUnc_11: -3.12408025e-09 + ArtUnc_12: -2.51872727e-10 + ArtUnc_13: -7.04505024e-09 + ArtUnc_14: -2.48893828e-11 + ArtUnc_15: -6.15176603e-11 + ArtUnc_16: 5.58257391e-12 + ArtUnc_17: 3.96090875e-10 + ArtUnc_18: -1.21861925e-11 + ArtUnc_19: -1.28674971e-09 + ArtUnc_20: -4.03538359e-09 + ArtUnc_21: 2.33039211e-10 + ArtUnc_22: -4.48750491e-08 + ArtUnc_23: -7.93631820e-10 + ArtUnc_24: 2.37144282e-08 + ArtUnc_25: 1.57497524e-08 + ArtUnc_26: -4.30926117e-09 + ArtUnc_27: -9.79840307e-08 + ArtUnc_28: -4.94433999e-09 + ArtUnc_29: -5.41203103e-08 + ArtUnc_30: -2.21242072e-08 + ArtUnc_31: 9.09962006e-09 + ArtUnc_32: -2.42122849e-07 + ArtUnc_33: 7.64374627e-11 + ArtUnc_34: -2.53117502e-09 + ArtUnc_35: -4.64929294e-09 + ArtUnc_36: 2.16018311e-10 + ArtUnc_37: 1.49952577e-09 + ArtUnc_38: -1.57437733e-10 + ArtUnc_39: 7.45587343e-09 + ArtUnc_40: -4.95794968e-11 + ArtUnc_41: -2.96379952e-08 + ArtUnc_42: 1.43646447e-09 + ArtUnc_43: 8.01098592e-08 + ArtUnc_44: 1.14025692e-08 + ArtUnc_45: -4.70319845e-10 + ArtUnc_46: 1.00230339e-08 + ArtUnc_47: 7.62877991e-09 + ArtUnc_48: -4.32297008e-10 + ArtUnc_49: 3.16426434e-07 + ArtUnc_50: 1.24436585e-08 + ArtUnc_51: -5.75985001e-08 + ArtUnc_52: 4.17163704e-08 + ArtUnc_53: -2.93144206e-09 + ArtUnc_54: -3.51842027e-09 + ArtUnc_55: -4.50514823e-07 + ArtUnc_56: 4.74920419e-07 + ArtUnc_57: 1.41493406e-07 + ArtUnc_58: -5.06873105e-07 + ArtUnc_59: -4.01424853e-09 + ArtUnc_60: -6.52500989e-07 + ArtUnc_61: 7.47658219e-10 + ArtUnc_62: -6.22455801e-08 + ArtUnc_63: 5.94735290e-09 + ArtUnc_64: -4.60239022e-07 + ArtUnc_65: 1.46964626e-08 + ArtUnc_66: -8.74221556e-07 + ArtUnc_67: 2.68543741e-07 + ArtUnc_68: -2.51560081e-08 + ArtUnc_69: -9.12920091e-08 + ArtUnc_70: 2.00807334e-06 + ArtUnc_71: 2.98185580e-08 + ArtUnc_72: 1.20385585e-06 + ArtUnc_73: -3.73828637e-09 + ArtUnc_74: 7.39719224e-06 + ArtUnc_75: -1.12393589e-07 + ArtUnc_76: 1.96606423e-07 + ArtUnc_77: 2.02815567e-07 + ArtUnc_78: 1.29537543e-05 + ArtUnc_79: -2.11738088e-05 + ArtUnc_80: 3.96495646e-07 + ArtUnc_81: 2.68212297e-07 + ArtUnc_82: -5.16968633e-08 + ArtUnc_83: -1.59221548e-07 + ArtUnc_84: 7.31149494e-07 + ArtUnc_85: 2.96488567e-09 + ArtUnc_86: -2.05696289e-08 + ArtUnc_87: -2.21395209e-08 + ArtUnc_88: -3.83213249e-08 + ArtUnc_89: -9.45645157e-07 + ArtUnc_90: 2.95981626e-07 + ArtUnc_91: 1.36460411e-07 + ArtUnc_92: 1.63688694e-06 + ArtUnc_93: -4.62625192e-09 + ArtUnc_94: -2.90794177e-08 + ArtUnc_95: 1.24672280e-08 + ArtUnc_96: -9.50020845e-09 - stat: 0 Uncorr: 1.45e-06 - RCES: 1.3424093030350319e-05 - ElEn: 6.880807669707096e-06 - ElTh: 3.529462034078282e-06 - Lumi: 1.1165e-06 + RCES: 1.34240930e-05 + ElEn: 6.88080767e-06 + ElTh: 3.52946203e-06 + Lumi: 1.11650000e-06 LArN: 7.25e-07 - StatMC: 2.7854500000000002e-05 - RadErr: 5.2054999999999995e-06 - Model_1: 4.17299066917241e-06 - Model_2: 4.17299066917241e-06 - ModelRW_1: 1.6481776780546143e-05 - ModelRW_2: 1.6481776780546143e-05 - JES_1: 1.0960935464183702e-05 - JES_2: 1.0960935464183702e-05 - ArtUnc_1: 7.525551332810761e-19 - ArtUnc_2: 1.7011065060993183e-18 - ArtUnc_3: 2.2088374550225672e-17 - ArtUnc_4: 1.2241962774379785e-16 - ArtUnc_5: 4.140643639484835e-18 - ArtUnc_6: 1.838631669346577e-18 - ArtUnc_7: 4.662605559246975e-16 - ArtUnc_8: 3.6959069714146945e-15 - ArtUnc_9: 4.1228378670082187e-17 - ArtUnc_10: -1.6732250973069617e-14 - ArtUnc_11: 2.906247935746357e-14 - ArtUnc_12: 2.07354682755585e-15 - ArtUnc_13: 1.0956125714146772e-13 - ArtUnc_14: -7.645551038861831e-16 - ArtUnc_15: 4.445232595615555e-15 - ArtUnc_16: -2.675054665071818e-16 - ArtUnc_17: -6.686565834819298e-15 - ArtUnc_18: 1.8429779658553334e-16 - ArtUnc_19: 5.3093938955127536e-14 - ArtUnc_20: 1.6034412809324093e-13 - ArtUnc_21: -9.114499216275052e-15 - ArtUnc_22: 2.8160976159407595e-12 - ArtUnc_23: 5.926044542417139e-14 - ArtUnc_24: -1.9827743594159214e-12 - ArtUnc_25: -2.8747873249342066e-13 - ArtUnc_26: 1.6040258231256255e-13 - ArtUnc_27: 8.751908398152517e-12 - ArtUnc_28: 3.243057790862044e-13 - ArtUnc_29: 6.553866976012681e-12 - ArtUnc_30: 2.568968732178255e-12 - ArtUnc_31: -1.0753638369503453e-12 - ArtUnc_32: 4.1544951068356036e-11 - ArtUnc_33: -1.7348277059421816e-15 - ArtUnc_34: -1.5040569541908268e-12 - ArtUnc_35: -7.984848532209664e-13 - ArtUnc_36: 2.4281165361617614e-11 - ArtUnc_37: -4.750445954573314e-11 - ArtUnc_38: 9.352170382692404e-12 - ArtUnc_39: 5.0030111451300346e-11 - ArtUnc_40: -9.794687305802967e-13 - ArtUnc_41: -3.384009666384961e-10 - ArtUnc_42: 9.145350864578396e-12 - ArtUnc_43: 5.444991103342456e-10 - ArtUnc_44: 2.164790135155239e-10 - ArtUnc_45: -5.036337921055136e-12 - ArtUnc_46: 7.572012011880331e-11 - ArtUnc_47: 1.3122931491457895e-11 - ArtUnc_48: -1.6235023239829938e-12 - ArtUnc_49: 1.4463868992619182e-09 - ArtUnc_50: 6.487919379608554e-11 - ArtUnc_51: 2.564045270519593e-10 - ArtUnc_52: -1.9086491770607894e-11 - ArtUnc_53: -6.004925716718752e-11 - ArtUnc_54: 1.3528719560799027e-11 - ArtUnc_55: 1.1799485815545221e-08 - ArtUnc_56: -9.975340208781463e-09 - ArtUnc_57: -2.2521217812471348e-09 - ArtUnc_58: 2.804699758441273e-08 - ArtUnc_59: 2.2103976595410218e-10 - ArtUnc_60: 3.3649817451941395e-08 - ArtUnc_61: 1.1740658032824714e-10 - ArtUnc_62: -2.402339850854667e-09 - ArtUnc_63: 1.7391658748525373e-10 - ArtUnc_64: 8.89274434058841e-08 - ArtUnc_65: -4.7974890767402026e-09 - ArtUnc_66: 1.22364516968084e-07 - ArtUnc_67: 3.040652579547578e-08 - ArtUnc_68: -6.862203540163716e-09 - ArtUnc_69: -7.665774654289796e-09 - ArtUnc_70: 1.480625126632594e-07 - ArtUnc_71: 2.0979076256282548e-09 - ArtUnc_72: 5.122209600702832e-08 - ArtUnc_73: 1.3362480636831328e-10 - ArtUnc_74: 2.717582622135473e-07 - ArtUnc_75: -4.951873092024478e-08 - ArtUnc_76: 3.198076745946251e-09 - ArtUnc_77: 1.1602659070872547e-08 - ArtUnc_78: 2.0132775223619658e-07 - ArtUnc_79: -3.7306664299767404e-07 - ArtUnc_80: 5.992296682747596e-09 - ArtUnc_81: -4.792623496419435e-09 - ArtUnc_82: -1.0624184782695466e-09 - ArtUnc_83: 9.610625844064377e-08 - ArtUnc_84: -1.2694396721333717e-07 - ArtUnc_85: -6.457187616301097e-07 - ArtUnc_86: -2.9317899929255475e-07 - ArtUnc_87: -3.9372117306839423e-07 - ArtUnc_88: 4.955158818554302e-08 - ArtUnc_89: 1.8185695363269428e-07 - ArtUnc_90: 1.097358450627666e-06 - ArtUnc_91: -6.7007103400230265e-06 - ArtUnc_92: -4.1782353724083415e-08 - ArtUnc_93: 6.93294384753824e-08 - ArtUnc_94: 1.1183383282743e-07 - ArtUnc_95: -2.9181645166768758e-06 - ArtUnc_96: -6.066089548558399e-07 + StatMC: 2.78545000e-05 + RadErr: 5.20550000e-06 + Model_1: 4.17299067e-06 + Model_2: 4.17299067e-06 + ModelRW_1: 1.64817768e-05 + ModelRW_2: 1.64817768e-05 + JES_1: 1.09609355e-05 + JES_2: 1.09609355e-05 + ArtUnc_1: 7.52555133e-19 + ArtUnc_2: 1.70110651e-18 + ArtUnc_3: 2.20883746e-17 + ArtUnc_4: 1.22419628e-16 + ArtUnc_5: 4.14064364e-18 + ArtUnc_6: 1.83863167e-18 + ArtUnc_7: 4.66260556e-16 + ArtUnc_8: 3.69590697e-15 + ArtUnc_9: 4.12283787e-17 + ArtUnc_10: -1.67322510e-14 + ArtUnc_11: 2.90624794e-14 + ArtUnc_12: 2.07354683e-15 + ArtUnc_13: 1.09561257e-13 + ArtUnc_14: -7.64555104e-16 + ArtUnc_15: 4.44523260e-15 + ArtUnc_16: -2.67505467e-16 + ArtUnc_17: -6.68656583e-15 + ArtUnc_18: 1.84297797e-16 + ArtUnc_19: 5.30939390e-14 + ArtUnc_20: 1.60344128e-13 + ArtUnc_21: -9.11449922e-15 + ArtUnc_22: 2.81609762e-12 + ArtUnc_23: 5.92604454e-14 + ArtUnc_24: -1.98277436e-12 + ArtUnc_25: -2.87478732e-13 + ArtUnc_26: 1.60402582e-13 + ArtUnc_27: 8.75190840e-12 + ArtUnc_28: 3.24305779e-13 + ArtUnc_29: 6.55386698e-12 + ArtUnc_30: 2.56896873e-12 + ArtUnc_31: -1.07536384e-12 + ArtUnc_32: 4.15449511e-11 + ArtUnc_33: -1.73482771e-15 + ArtUnc_34: -1.50405695e-12 + ArtUnc_35: -7.98484853e-13 + ArtUnc_36: 2.42811654e-11 + ArtUnc_37: -4.75044595e-11 + ArtUnc_38: 9.35217038e-12 + ArtUnc_39: 5.00301115e-11 + ArtUnc_40: -9.79468731e-13 + ArtUnc_41: -3.38400967e-10 + ArtUnc_42: 9.14535086e-12 + ArtUnc_43: 5.44499110e-10 + ArtUnc_44: 2.16479014e-10 + ArtUnc_45: -5.03633792e-12 + ArtUnc_46: 7.57201201e-11 + ArtUnc_47: 1.31229315e-11 + ArtUnc_48: -1.62350232e-12 + ArtUnc_49: 1.44638690e-09 + ArtUnc_50: 6.48791938e-11 + ArtUnc_51: 2.56404527e-10 + ArtUnc_52: -1.90864918e-11 + ArtUnc_53: -6.00492572e-11 + ArtUnc_54: 1.35287196e-11 + ArtUnc_55: 1.17994858e-08 + ArtUnc_56: -9.97534021e-09 + ArtUnc_57: -2.25212178e-09 + ArtUnc_58: 2.80469976e-08 + ArtUnc_59: 2.21039766e-10 + ArtUnc_60: 3.36498175e-08 + ArtUnc_61: 1.17406580e-10 + ArtUnc_62: -2.40233985e-09 + ArtUnc_63: 1.73916587e-10 + ArtUnc_64: 8.89274434e-08 + ArtUnc_65: -4.79748908e-09 + ArtUnc_66: 1.22364517e-07 + ArtUnc_67: 3.04065258e-08 + ArtUnc_68: -6.86220354e-09 + ArtUnc_69: -7.66577465e-09 + ArtUnc_70: 1.48062513e-07 + ArtUnc_71: 2.09790763e-09 + ArtUnc_72: 5.12220960e-08 + ArtUnc_73: 1.33624806e-10 + ArtUnc_74: 2.71758262e-07 + ArtUnc_75: -4.95187309e-08 + ArtUnc_76: 3.19807675e-09 + ArtUnc_77: 1.16026591e-08 + ArtUnc_78: 2.01327752e-07 + ArtUnc_79: -3.73066643e-07 + ArtUnc_80: 5.99229668e-09 + ArtUnc_81: -4.79262350e-09 + ArtUnc_82: -1.06241848e-09 + ArtUnc_83: 9.61062584e-08 + ArtUnc_84: -1.26943967e-07 + ArtUnc_85: -6.45718762e-07 + ArtUnc_86: -2.93178999e-07 + ArtUnc_87: -3.93721173e-07 + ArtUnc_88: 4.95515882e-08 + ArtUnc_89: 1.81856954e-07 + ArtUnc_90: 1.09735845e-06 + ArtUnc_91: -6.70071034e-06 + ArtUnc_92: -4.17823537e-08 + ArtUnc_93: 6.93294385e-08 + ArtUnc_94: 1.11833833e-07 + ArtUnc_95: -2.91816452e-06 + ArtUnc_96: -6.06608955e-07 diff --git a/nnpdf_data/nnpdf_data/commondata/H1_1JET_319GEV_351PB-1_DIF/data.yaml b/nnpdf_data/nnpdf_data/commondata/H1_1JET_319GEV_351PB-1_DIF/data.yaml index 4458b80f26..467e1faca5 100644 --- a/nnpdf_data/nnpdf_data/commondata/H1_1JET_319GEV_351PB-1_DIF/data.yaml +++ b/nnpdf_data/nnpdf_data/commondata/H1_1JET_319GEV_351PB-1_DIF/data.yaml @@ -1,25 +1,25 @@ data_central: -- 70.42365878823 -- 30.95350776162 -- 8.082109035 -- 0.9125014074304 -- 54.93706846573 +- 7.04236588e+01 +- 3.09535078e+01 +- 8.08210904e+00 +- 9.12501407e-01 +- 5.49370685e+01 - 26.8 -- 7.013496240129 -- 0.8549775241245 -- 52.09563915 -- 27.85563475695 -- 6.962069709237 -- 0.870299369322 -- 48.7755756 +- 7.01349624e+00 +- 8.54977524e-01 +- 5.20956391e+01 +- 2.78556348e+01 +- 6.96206971e+00 +- 8.70299369e-01 +- 4.87755756e+01 - 26.9 -- 7.94999205 -- 0.856142143857 -- 43.29996751417 -- 28.528507125 -- 10.699997325 -- 2.04408153 -- 2.571395501979 -- 1.760953607685 -- 0.6709991612502 -- 0.3085353405933 +- 7.94999205e+00 +- 8.56142144e-01 +- 4.32999675e+01 +- 2.85285071e+01 +- 1.06999973e+01 +- 2.04408153e+00 +- 2.57139550e+00 +- 1.76095361e+00 +- 6.70999161e-01 +- 3.08535341e-01 diff --git a/nnpdf_data/nnpdf_data/commondata/H1_1JET_319GEV_351PB-1_DIF/filter.py b/nnpdf_data/nnpdf_data/commondata/H1_1JET_319GEV_351PB-1_DIF/filter.py index 55bf4e9062..8e3f74ecc7 100644 --- a/nnpdf_data/nnpdf_data/commondata/H1_1JET_319GEV_351PB-1_DIF/filter.py +++ b/nnpdf_data/nnpdf_data/commondata/H1_1JET_319GEV_351PB-1_DIF/filter.py @@ -2,6 +2,9 @@ import yaml from nnpdf_data.filter_utils.utils import percentage_to_absolute as pta +from nnpdf_data.filter_utils.utils import prettify_float + +yaml.add_representer(float, prettify_float) def processData(): diff --git a/nnpdf_data/nnpdf_data/commondata/H1_1JET_319GEV_351PB-1_DIF/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/H1_1JET_319GEV_351PB-1_DIF/uncertainties.yaml index 627b49d3a9..9752ba20b8 100644 --- a/nnpdf_data/nnpdf_data/commondata/H1_1JET_319GEV_351PB-1_DIF/uncertainties.yaml +++ b/nnpdf_data/nnpdf_data/commondata/H1_1JET_319GEV_351PB-1_DIF/uncertainties.yaml @@ -232,296 +232,296 @@ definitions: treatment: ADD type: H1JETS14064709unc48 bins: -- Syst_1: 0.7042365878823 - Syst_2: 0.3565125243242 - Syst_3: 0.3565125243242 - Syst_4: 0.3359413866252 - Syst_5: 0.3359413866252 - Syst_6: 0.2517144109385 - Syst_7: 0.251588553733 - Syst_8: 0.3521182939412 - Syst_9: 0.35211829394115 - Syst_10: 2.042286104859 - ArtUnc_1: -1.7541588886177646 - ArtUnc_2: 0.5374394085758325 - ArtUnc_3: -0.3286184882179695 - ArtUnc_4: 0.1593059000443666 - ArtUnc_5: -0.16373980835520086 - ArtUnc_6: 0.2499483271168638 - ArtUnc_7: 0.06830584392198896 - ArtUnc_8: -0.034554426198057486 - ArtUnc_9: -0.06031178185089423 - ArtUnc_10: -0.02900087923246096 - ArtUnc_11: 0.09697363235057059 - ArtUnc_12: -0.027457513149744154 - ArtUnc_13: -0.022458790845252322 - ArtUnc_14: 0.01482712651186353 - ArtUnc_15: -0.0014256495866184261 - ArtUnc_16: 0.06566674144957758 - ArtUnc_17: 0.02485347303541411 - ArtUnc_18: 0.006506913096410264 - ArtUnc_19: -0.004892162133831719 - ArtUnc_20: 0.007383955307902545 - ArtUnc_21: -0.011468164401594568 - ArtUnc_22: 0.004794394529106694 - ArtUnc_23: -0.02155202166390766 - ArtUnc_24: 0.0012028818591905965 - ArtUnc_25: -0.001314280845538023 - ArtUnc_26: 5.1950663263948e-05 - ArtUnc_27: -1.4865978828230835e-05 - ArtUnc_28: -0.00010304319706737443 - ArtUnc_29: 4.9552136665457694e-05 - ArtUnc_30: -0.002182806997231541 - ArtUnc_31: 0.0004387861838864492 - ArtUnc_32: -0.00041618505179267086 - ArtUnc_33: -0.0008880498798723771 - ArtUnc_34: 0.00032045668212811516 - ArtUnc_35: 0.0004161686153883762 - ArtUnc_36: 0.0002675820646793291 - ArtUnc_37: -7.501877597123815e-06 - ArtUnc_38: -3.5250086742070195e-05 - ArtUnc_39: -7.783152833781545e-05 - ArtUnc_40: -1.7193732163916754e-05 - ArtUnc_41: -8.96692774679549e-07 - ArtUnc_42: -2.6723851180838744e-07 - ArtUnc_43: -1.4191760679865128e-06 - ArtUnc_44: -2.0293772394126513e-05 - ArtUnc_45: 1.7131771184345752e-05 - ArtUnc_46: 6.781296154896616e-06 - ArtUnc_47: 6.3524121271068464e-06 - ArtUnc_48: 6.632526829805465e-07 -- Syst_1: 0.8666982173254 - Syst_2: 0.37990813034205 - Syst_3: 0.37990813034205 - Syst_4: 0.0859086820957 - Syst_5: 0.0859086820957 - Syst_6: 0.1910967863178 - Syst_7: 0.08045980207445 - Syst_8: 0.1547675388081 - Syst_9: 0.15476753880809999 - Syst_10: 0.897651725087 - ArtUnc_1: 0.4035194691052046 - ArtUnc_2: -0.10195122765017829 - ArtUnc_3: 0.05676371154474872 - ArtUnc_4: -0.025560495715974914 - ArtUnc_5: 0.019494144815440068 - ArtUnc_6: 1.0973219154544667 - ArtUnc_7: 0.2833515894896587 - ArtUnc_8: -0.15093996656809155 - ArtUnc_9: -0.24970968029841645 - ArtUnc_10: -0.1521411192506347 - ArtUnc_11: -0.1681397669301986 - ArtUnc_12: 0.05747570183092155 - ArtUnc_13: 0.019770238758655505 - ArtUnc_14: -0.0009108721652410307 - ArtUnc_15: -0.041318593544872474 - ArtUnc_16: 0.06563421171791355 - ArtUnc_17: 0.044574839196434804 - ArtUnc_18: -0.001649193425269117 - ArtUnc_19: 0.003014129397358292 - ArtUnc_20: 0.004028354767553934 - ArtUnc_21: -0.0023062159299073763 - ArtUnc_22: 0.005274230528783318 - ArtUnc_23: -0.018942233249296444 - ArtUnc_24: -0.004036131037761743 - ArtUnc_25: -0.0039000227851834963 - ArtUnc_26: 6.650061080963279e-05 - ArtUnc_27: -1.0329338996210566e-05 - ArtUnc_28: -0.00024075199721763677 - ArtUnc_29: -4.240209606936683e-05 - ArtUnc_30: -0.0032667745531855595 - ArtUnc_31: 0.0005841252292946054 - ArtUnc_32: -0.0006219984560536594 - ArtUnc_33: -0.0011322777866058075 - ArtUnc_34: 0.00044656655601603304 - ArtUnc_35: 0.000631493199470501 - ArtUnc_36: 0.00042467524710724223 - ArtUnc_37: -1.5203161647545565e-06 - ArtUnc_38: -7.92378014373286e-05 - ArtUnc_39: -4.260567642191332e-05 - ArtUnc_40: 1.4607952524740507e-05 - ArtUnc_41: -1.215564177062766e-06 - ArtUnc_42: -1.8544284004588113e-07 - ArtUnc_43: -9.7951651547865e-07 - ArtUnc_44: -3.357002851716729e-05 - ArtUnc_45: 2.4772062127725937e-05 - ArtUnc_46: 1.1175347447965702e-05 - ArtUnc_47: 7.513251162845317e-06 - ArtUnc_48: 4.148118993942098e-07 -- Syst_1: 0.282873816225 +- Syst_1: 7.04236588e-01 + Syst_2: 3.56512524e-01 + Syst_3: 3.56512524e-01 + Syst_4: 3.35941387e-01 + Syst_5: 3.35941387e-01 + Syst_6: 2.51714411e-01 + Syst_7: 2.51588554e-01 + Syst_8: 3.52118294e-01 + Syst_9: 3.52118294e-01 + Syst_10: 2.04228610e+00 + ArtUnc_1: -1.75415889e+00 + ArtUnc_2: 5.37439409e-01 + ArtUnc_3: -3.28618488e-01 + ArtUnc_4: 1.59305900e-01 + ArtUnc_5: -1.63739808e-01 + ArtUnc_6: 2.49948327e-01 + ArtUnc_7: 6.83058439e-02 + ArtUnc_8: -3.45544262e-02 + ArtUnc_9: -6.03117819e-02 + ArtUnc_10: -2.90008792e-02 + ArtUnc_11: 9.69736324e-02 + ArtUnc_12: -2.74575131e-02 + ArtUnc_13: -2.24587908e-02 + ArtUnc_14: 1.48271265e-02 + ArtUnc_15: -1.42564959e-03 + ArtUnc_16: 6.56667414e-02 + ArtUnc_17: 2.48534730e-02 + ArtUnc_18: 6.50691310e-03 + ArtUnc_19: -4.89216213e-03 + ArtUnc_20: 7.38395531e-03 + ArtUnc_21: -1.14681644e-02 + ArtUnc_22: 4.79439453e-03 + ArtUnc_23: -2.15520217e-02 + ArtUnc_24: 1.20288186e-03 + ArtUnc_25: -1.31428085e-03 + ArtUnc_26: 5.19506633e-05 + ArtUnc_27: -1.48659788e-05 + ArtUnc_28: -1.03043197e-04 + ArtUnc_29: 4.95521367e-05 + ArtUnc_30: -2.18280700e-03 + ArtUnc_31: 4.38786184e-04 + ArtUnc_32: -4.16185052e-04 + ArtUnc_33: -8.88049880e-04 + ArtUnc_34: 3.20456682e-04 + ArtUnc_35: 4.16168615e-04 + ArtUnc_36: 2.67582065e-04 + ArtUnc_37: -7.50187760e-06 + ArtUnc_38: -3.52500867e-05 + ArtUnc_39: -7.78315283e-05 + ArtUnc_40: -1.71937322e-05 + ArtUnc_41: -8.96692775e-07 + ArtUnc_42: -2.67238512e-07 + ArtUnc_43: -1.41917607e-06 + ArtUnc_44: -2.02937724e-05 + ArtUnc_45: 1.71317712e-05 + ArtUnc_46: 6.78129615e-06 + ArtUnc_47: 6.35241213e-06 + ArtUnc_48: 6.63252683e-07 +- Syst_1: 8.66698217e-01 + Syst_2: 3.79908130e-01 + Syst_3: 3.79908130e-01 + Syst_4: 8.59086821e-02 + Syst_5: 8.59086821e-02 + Syst_6: 1.91096786e-01 + Syst_7: 8.04598021e-02 + Syst_8: 1.54767539e-01 + Syst_9: 1.54767539e-01 + Syst_10: 8.97651725e-01 + ArtUnc_1: 4.03519469e-01 + ArtUnc_2: -1.01951228e-01 + ArtUnc_3: 5.67637115e-02 + ArtUnc_4: -2.55604957e-02 + ArtUnc_5: 1.94941448e-02 + ArtUnc_6: 1.09732192e+00 + ArtUnc_7: 2.83351589e-01 + ArtUnc_8: -1.50939967e-01 + ArtUnc_9: -2.49709680e-01 + ArtUnc_10: -1.52141119e-01 + ArtUnc_11: -1.68139767e-01 + ArtUnc_12: 5.74757018e-02 + ArtUnc_13: 1.97702388e-02 + ArtUnc_14: -9.10872165e-04 + ArtUnc_15: -4.13185935e-02 + ArtUnc_16: 6.56342117e-02 + ArtUnc_17: 4.45748392e-02 + ArtUnc_18: -1.64919343e-03 + ArtUnc_19: 3.01412940e-03 + ArtUnc_20: 4.02835477e-03 + ArtUnc_21: -2.30621593e-03 + ArtUnc_22: 5.27423053e-03 + ArtUnc_23: -1.89422332e-02 + ArtUnc_24: -4.03613104e-03 + ArtUnc_25: -3.90002279e-03 + ArtUnc_26: 6.65006108e-05 + ArtUnc_27: -1.03293390e-05 + ArtUnc_28: -2.40751997e-04 + ArtUnc_29: -4.24020961e-05 + ArtUnc_30: -3.26677455e-03 + ArtUnc_31: 5.84125229e-04 + ArtUnc_32: -6.21998456e-04 + ArtUnc_33: -1.13227779e-03 + ArtUnc_34: 4.46566556e-04 + ArtUnc_35: 6.31493199e-04 + ArtUnc_36: 4.24675247e-04 + ArtUnc_37: -1.52031616e-06 + ArtUnc_38: -7.92378014e-05 + ArtUnc_39: -4.26056764e-05 + ArtUnc_40: 1.46079525e-05 + ArtUnc_41: -1.21556418e-06 + ArtUnc_42: -1.85442840e-07 + ArtUnc_43: -9.79516515e-07 + ArtUnc_44: -3.35700285e-05 + ArtUnc_45: 2.47720621e-05 + ArtUnc_46: 1.11753474e-05 + ArtUnc_47: 7.51325116e-06 + ArtUnc_48: 4.14811899e-07 +- Syst_1: 2.82873816e-01 Syst_2: 0.13719 Syst_3: 0.13719 - Syst_4: 0.00988369111213 - Syst_5: 0.00988369111213 - Syst_6: 0.03679736009134 - Syst_7: 0.008082109035 - Syst_8: 0.040410545175 - Syst_9: 0.040410545175 - Syst_10: 0.234381162015 - ArtUnc_1: 0.05387162883027949 - ArtUnc_2: -0.018914651664319992 - ArtUnc_3: 0.01197449847662484 - ArtUnc_4: -0.005876691443474781 - ArtUnc_5: 0.006157022430413733 - ArtUnc_6: -0.013713260075555341 - ArtUnc_7: -0.003626932953809763 - ArtUnc_8: 0.0017146165884579982 - ArtUnc_9: 0.0028347227148762997 - ArtUnc_10: -0.0003925884142784734 - ArtUnc_11: -0.03356572910906586 - ArtUnc_12: 0.0099754624739515 - ArtUnc_13: 0.0038882672018047465 - ArtUnc_14: 1.5722007966278112e-05 - ArtUnc_15: -0.009630210633232706 - ArtUnc_16: 0.22584664190176518 - ArtUnc_17: -0.3275771245923591 - ArtUnc_18: 0.1712885820766886 - ArtUnc_19: -0.18694558631983713 - ArtUnc_20: -0.06022684650489941 - ArtUnc_21: -0.14725519078672644 - ArtUnc_22: -0.03261802993825692 - ArtUnc_23: 0.0071209236042915364 - ArtUnc_24: 0.10408461163011051 - ArtUnc_25: 0.026906785738327606 - ArtUnc_26: -0.00011052402066585515 - ArtUnc_27: 1.7707021029095334e-05 - ArtUnc_28: -0.0035968986294468196 - ArtUnc_29: -0.0012621680061498661 - ArtUnc_30: -0.03691829182592231 - ArtUnc_31: 0.0067316569513410675 - ArtUnc_32: -0.009300530249034057 - ArtUnc_33: -0.012814106197067358 - ArtUnc_34: 0.004073795737420288 - ArtUnc_35: 0.009921162552738368 - ArtUnc_36: 0.009013280996231143 - ArtUnc_37: 2.0468150778625758e-05 - ArtUnc_38: -0.0041546144966886625 - ArtUnc_39: -7.201857659675336e-05 - ArtUnc_40: 0.0023213819742481634 - ArtUnc_41: 8.153398667329412e-06 - ArtUnc_42: -7.750673176943731e-07 - ArtUnc_43: -2.1277739372712052e-05 - ArtUnc_44: 0.00042287701772984477 - ArtUnc_45: -0.00035524997189528016 - ArtUnc_46: -0.00022126874883521562 - ArtUnc_47: -8.09858336163242e-05 - ArtUnc_48: 8.372371825095673e-05 -- Syst_1: 0.1067626646694 - Syst_2: 0.02344497236083 - Syst_3: 0.02344497236083 - Syst_4: 0.000759643058608 - Syst_5: 0.000759643058608 - Syst_6: 0.004299338659215 - Syst_7: 0.001991738317891 - Syst_8: 0.004562507037152 - Syst_9: 0.004562507037152 - Syst_10: 0.02646254081548 - ArtUnc_1: 0.0022112744726037457 - ArtUnc_2: -0.0009321168500369402 - ArtUnc_3: 0.0006350594975479065 - ArtUnc_4: -0.0003320150920284599 - ArtUnc_5: 0.000386081475645307 - ArtUnc_6: -0.0018283763398423904 - ArtUnc_7: -0.0006240912422981683 - ArtUnc_8: 0.00035640598439132536 - ArtUnc_9: 0.0006484294376630262 - ArtUnc_10: 0.00044561059596126844 - ArtUnc_11: 0.00041776584225879093 - ArtUnc_12: -0.00016060603396561506 - ArtUnc_13: 9.730665707790613e-05 - ArtUnc_14: -0.00018529320922904043 - ArtUnc_15: 0.0004266057194554134 - ArtUnc_16: 1.1673471615074659e-05 - ArtUnc_17: -0.006358570955436903 - ArtUnc_18: 0.002391608335767903 - ArtUnc_19: -0.0030091424021058085 - ArtUnc_20: -0.0014845265043017277 - ArtUnc_21: -0.002285499760371795 - ArtUnc_22: -0.0010533994838414884 - ArtUnc_23: 0.0018551820335799961 - ArtUnc_24: 0.002417936127693721 - ArtUnc_25: 0.0008406540079601118 - ArtUnc_26: -8.090563313958294e-06 - ArtUnc_27: -9.564633333134534e-08 - ArtUnc_28: -0.0043325107307473935 - ArtUnc_29: -0.0009366211073667073 - ArtUnc_30: -0.028411565412345595 - ArtUnc_31: 0.009715429353020657 - ArtUnc_32: -0.004624613343863372 - ArtUnc_33: -0.018867926182829887 - ArtUnc_34: 0.06217435597974807 - ArtUnc_35: -0.03581213504320477 - ArtUnc_36: -0.08405413086218155 - ArtUnc_37: 9.636208902254684e-05 - ArtUnc_38: 0.06704802619664317 - ArtUnc_39: 0.000628125282600667 - ArtUnc_40: -0.04264962070618064 - ArtUnc_41: -0.00031672973467713756 - ArtUnc_42: -0.00016103273826150038 - ArtUnc_43: 0.0005505498400867417 - ArtUnc_44: -0.011321436064620494 - ArtUnc_45: 0.009332692751908515 - ArtUnc_46: 0.005675945743023129 - ArtUnc_47: 0.0025239905605966076 - ArtUnc_48: -0.0013562861437522709 -- Syst_1: -0.3296224107944 - Syst_2: 0.26102005670065 - Syst_3: 0.26102005670065 - Syst_4: 0.3037287599255 - Syst_5: 0.3037287599255 - Syst_6: 0.4273370774492 - Syst_7: 0.196066537992 - Syst_8: 0.2746853423286 - Syst_9: 0.27468534232865 - Syst_10: 1.593174985506 - ArtUnc_1: 0.7666294218303249 - ArtUnc_2: 0.8851271324983961 - ArtUnc_3: -0.8005033418525866 - ArtUnc_4: 0.47226898942631024 - ArtUnc_5: -0.6337379966585324 - ArtUnc_6: -0.13460998762620036 - ArtUnc_7: 0.06723452268227012 - ArtUnc_8: -0.0557784150077441 - ArtUnc_9: -0.14341820760424023 - ArtUnc_10: -0.14865296598318795 - ArtUnc_11: -0.00016791841868817457 - ArtUnc_12: -0.04178581548437238 - ArtUnc_13: -0.05892988620067363 - ArtUnc_14: 0.03930421585427304 - ArtUnc_15: -0.002254600083481011 - ArtUnc_16: -0.009385528031173774 - ArtUnc_17: 0.0055930797931065005 - ArtUnc_18: -0.006545808287982857 - ArtUnc_19: -0.009919002912492014 - ArtUnc_20: -0.059182710099116756 - ArtUnc_21: 0.00728965077787579 - ArtUnc_22: -0.0049719221114788124 - ArtUnc_23: -0.018993080018478808 - ArtUnc_24: 0.007553223626317075 - ArtUnc_25: -0.013526587616110966 - ArtUnc_26: 0.00018263163978023649 - ArtUnc_27: -1.845407275312573e-05 - ArtUnc_28: 0.00033686031935661534 - ArtUnc_29: 0.00011696862167128259 - ArtUnc_30: 0.0017444408977676084 - ArtUnc_31: 0.00013381394759718598 - ArtUnc_32: -0.00036701983561198266 - ArtUnc_33: -0.00082551321759723 - ArtUnc_34: 0.0012477900272685918 - ArtUnc_35: 0.0008637176138273085 - ArtUnc_36: 0.0003134435601497829 - ArtUnc_37: -1.6860146568621946e-05 - ArtUnc_38: -3.6632049550919456e-05 - ArtUnc_39: -3.9455390642913675e-05 - ArtUnc_40: 4.50721931008678e-05 - ArtUnc_41: -9.494718514970105e-08 - ArtUnc_42: 1.128323170679952e-06 - ArtUnc_43: -8.169869780297594e-06 - ArtUnc_44: -1.7879912931783822e-05 - ArtUnc_45: -1.3470407500120819e-05 - ArtUnc_46: -2.818152687513349e-05 - ArtUnc_47: -1.8991670968295205e-05 - ArtUnc_48: 8.103186302197514e-06 + Syst_4: 9.88369111e-03 + Syst_5: 9.88369111e-03 + Syst_6: 3.67973601e-02 + Syst_7: 8.08210903e-03 + Syst_8: 4.04105452e-02 + Syst_9: 4.04105452e-02 + Syst_10: 2.34381162e-01 + ArtUnc_1: 5.38716288e-02 + ArtUnc_2: -1.89146517e-02 + ArtUnc_3: 1.19744985e-02 + ArtUnc_4: -5.87669144e-03 + ArtUnc_5: 6.15702243e-03 + ArtUnc_6: -1.37132601e-02 + ArtUnc_7: -3.62693295e-03 + ArtUnc_8: 1.71461659e-03 + ArtUnc_9: 2.83472271e-03 + ArtUnc_10: -3.92588414e-04 + ArtUnc_11: -3.35657291e-02 + ArtUnc_12: 9.97546247e-03 + ArtUnc_13: 3.88826720e-03 + ArtUnc_14: 1.57220080e-05 + ArtUnc_15: -9.63021063e-03 + ArtUnc_16: 2.25846642e-01 + ArtUnc_17: -3.27577125e-01 + ArtUnc_18: 1.71288582e-01 + ArtUnc_19: -1.86945586e-01 + ArtUnc_20: -6.02268465e-02 + ArtUnc_21: -1.47255191e-01 + ArtUnc_22: -3.26180299e-02 + ArtUnc_23: 7.12092360e-03 + ArtUnc_24: 1.04084612e-01 + ArtUnc_25: 2.69067857e-02 + ArtUnc_26: -1.10524021e-04 + ArtUnc_27: 1.77070210e-05 + ArtUnc_28: -3.59689863e-03 + ArtUnc_29: -1.26216801e-03 + ArtUnc_30: -3.69182918e-02 + ArtUnc_31: 6.73165695e-03 + ArtUnc_32: -9.30053025e-03 + ArtUnc_33: -1.28141062e-02 + ArtUnc_34: 4.07379574e-03 + ArtUnc_35: 9.92116255e-03 + ArtUnc_36: 9.01328100e-03 + ArtUnc_37: 2.04681508e-05 + ArtUnc_38: -4.15461450e-03 + ArtUnc_39: -7.20185766e-05 + ArtUnc_40: 2.32138197e-03 + ArtUnc_41: 8.15339867e-06 + ArtUnc_42: -7.75067318e-07 + ArtUnc_43: -2.12777394e-05 + ArtUnc_44: 4.22877018e-04 + ArtUnc_45: -3.55249972e-04 + ArtUnc_46: -2.21268749e-04 + ArtUnc_47: -8.09858336e-05 + ArtUnc_48: 8.37237183e-05 +- Syst_1: 1.06762665e-01 + Syst_2: 2.34449724e-02 + Syst_3: 2.34449724e-02 + Syst_4: 7.59643059e-04 + Syst_5: 7.59643059e-04 + Syst_6: 4.29933866e-03 + Syst_7: 1.99173832e-03 + Syst_8: 4.56250704e-03 + Syst_9: 4.56250704e-03 + Syst_10: 2.64625408e-02 + ArtUnc_1: 2.21127447e-03 + ArtUnc_2: -9.32116850e-04 + ArtUnc_3: 6.35059498e-04 + ArtUnc_4: -3.32015092e-04 + ArtUnc_5: 3.86081476e-04 + ArtUnc_6: -1.82837634e-03 + ArtUnc_7: -6.24091242e-04 + ArtUnc_8: 3.56405984e-04 + ArtUnc_9: 6.48429438e-04 + ArtUnc_10: 4.45610596e-04 + ArtUnc_11: 4.17765842e-04 + ArtUnc_12: -1.60606034e-04 + ArtUnc_13: 9.73066571e-05 + ArtUnc_14: -1.85293209e-04 + ArtUnc_15: 4.26605719e-04 + ArtUnc_16: 1.16734716e-05 + ArtUnc_17: -6.35857096e-03 + ArtUnc_18: 2.39160834e-03 + ArtUnc_19: -3.00914240e-03 + ArtUnc_20: -1.48452650e-03 + ArtUnc_21: -2.28549976e-03 + ArtUnc_22: -1.05339948e-03 + ArtUnc_23: 1.85518203e-03 + ArtUnc_24: 2.41793613e-03 + ArtUnc_25: 8.40654008e-04 + ArtUnc_26: -8.09056331e-06 + ArtUnc_27: -9.56463333e-08 + ArtUnc_28: -4.33251073e-03 + ArtUnc_29: -9.36621107e-04 + ArtUnc_30: -2.84115654e-02 + ArtUnc_31: 9.71542935e-03 + ArtUnc_32: -4.62461334e-03 + ArtUnc_33: -1.88679262e-02 + ArtUnc_34: 6.21743560e-02 + ArtUnc_35: -3.58121350e-02 + ArtUnc_36: -8.40541309e-02 + ArtUnc_37: 9.63620890e-05 + ArtUnc_38: 6.70480262e-02 + ArtUnc_39: 6.28125283e-04 + ArtUnc_40: -4.26496207e-02 + ArtUnc_41: -3.16729735e-04 + ArtUnc_42: -1.61032738e-04 + ArtUnc_43: 5.50549840e-04 + ArtUnc_44: -1.13214361e-02 + ArtUnc_45: 9.33269275e-03 + ArtUnc_46: 5.67594574e-03 + ArtUnc_47: 2.52399056e-03 + ArtUnc_48: -1.35628614e-03 +- Syst_1: -3.29622411e-01 + Syst_2: 2.61020057e-01 + Syst_3: 2.61020057e-01 + Syst_4: 3.03728760e-01 + Syst_5: 3.03728760e-01 + Syst_6: 4.27337077e-01 + Syst_7: 1.96066538e-01 + Syst_8: 2.74685342e-01 + Syst_9: 2.74685342e-01 + Syst_10: 1.59317499e+00 + ArtUnc_1: 7.66629422e-01 + ArtUnc_2: 8.85127132e-01 + ArtUnc_3: -8.00503342e-01 + ArtUnc_4: 4.72268989e-01 + ArtUnc_5: -6.33737997e-01 + ArtUnc_6: -1.34609988e-01 + ArtUnc_7: 6.72345227e-02 + ArtUnc_8: -5.57784150e-02 + ArtUnc_9: -1.43418208e-01 + ArtUnc_10: -1.48652966e-01 + ArtUnc_11: -1.67918419e-04 + ArtUnc_12: -4.17858155e-02 + ArtUnc_13: -5.89298862e-02 + ArtUnc_14: 3.93042159e-02 + ArtUnc_15: -2.25460008e-03 + ArtUnc_16: -9.38552803e-03 + ArtUnc_17: 5.59307979e-03 + ArtUnc_18: -6.54580829e-03 + ArtUnc_19: -9.91900291e-03 + ArtUnc_20: -5.91827101e-02 + ArtUnc_21: 7.28965078e-03 + ArtUnc_22: -4.97192211e-03 + ArtUnc_23: -1.89930800e-02 + ArtUnc_24: 7.55322363e-03 + ArtUnc_25: -1.35265876e-02 + ArtUnc_26: 1.82631640e-04 + ArtUnc_27: -1.84540728e-05 + ArtUnc_28: 3.36860319e-04 + ArtUnc_29: 1.16968622e-04 + ArtUnc_30: 1.74444090e-03 + ArtUnc_31: 1.33813948e-04 + ArtUnc_32: -3.67019836e-04 + ArtUnc_33: -8.25513218e-04 + ArtUnc_34: 1.24779003e-03 + ArtUnc_35: 8.63717614e-04 + ArtUnc_36: 3.13443560e-04 + ArtUnc_37: -1.68601466e-05 + ArtUnc_38: -3.66320496e-05 + ArtUnc_39: -3.94553906e-05 + ArtUnc_40: 4.50721931e-05 + ArtUnc_41: -9.49471851e-08 + ArtUnc_42: 1.12832317e-06 + ArtUnc_43: -8.16986978e-06 + ArtUnc_44: -1.78799129e-05 + ArtUnc_45: -1.34704075e-05 + ArtUnc_46: -2.81815269e-05 + ArtUnc_47: -1.89916710e-05 + ArtUnc_48: 8.10318630e-06 - Syst_1: 0.9112 Syst_2: 0.3216 Syst_3: 0.3216 @@ -532,460 +532,460 @@ bins: Syst_8: 0.134 Syst_9: 0.134 Syst_10: 0.7772 - ArtUnc_1: -0.16770132592900272 - ArtUnc_2: -0.232931790702523 - ArtUnc_3: 0.19175038215079648 - ArtUnc_4: -0.10747207848339115 - ArtUnc_5: 0.1432745526993084 - ArtUnc_6: -0.4498795071947828 - ArtUnc_7: 0.3117887322241013 - ArtUnc_8: -0.23542997570535687 - ArtUnc_9: -0.5961734886949124 - ArtUnc_10: -0.5327657651609843 - ArtUnc_11: 0.147150869394946 - ArtUnc_12: 0.11176675946136144 - ArtUnc_13: 0.11927315477551247 - ArtUnc_14: -0.08110593988697248 - ArtUnc_15: -0.01746548476633446 - ArtUnc_16: 0.011812373728618574 - ArtUnc_17: 0.007836930812433494 - ArtUnc_18: -0.004713803886555189 - ArtUnc_19: -0.008151643771423482 - ArtUnc_20: -0.07093509320563841 - ArtUnc_21: 0.01968148163474032 - ArtUnc_22: -0.002116425349832441 - ArtUnc_23: -0.01932488294106686 - ArtUnc_24: -0.006339038142930424 - ArtUnc_25: -0.021119193547081187 - ArtUnc_26: 0.00024205339754123316 - ArtUnc_27: -1.3644665630963918e-05 - ArtUnc_28: 0.00044108948197345906 - ArtUnc_29: 0.0001067972111052456 - ArtUnc_30: 0.0023657635903311593 - ArtUnc_31: 0.00025429699052913543 - ArtUnc_32: -0.0006439637367808976 - ArtUnc_33: -0.0011610089626485532 - ArtUnc_34: 0.0019597219764607124 - ArtUnc_35: 0.0012994720793255733 - ArtUnc_36: 0.0004571746907281003 - ArtUnc_37: -2.1598806992488837e-05 - ArtUnc_38: -9.218552493467677e-05 - ArtUnc_39: -2.3647698544248842e-05 - ArtUnc_40: 0.0001442623391136964 - ArtUnc_41: -3.1474103617031543e-07 - ArtUnc_42: 2.1428016177686675e-06 - ArtUnc_43: -1.4653488354392946e-05 - ArtUnc_44: -4.6584372006048206e-05 - ArtUnc_45: -3.163774938967216e-05 - ArtUnc_46: -5.968635100812349e-05 - ArtUnc_47: -4.2864302835617804e-05 - ArtUnc_48: 1.815723332720328e-05 -- Syst_1: 0.3366478195262 - Syst_2: 0.1246494499336 - Syst_3: 0.1246494499336 - Syst_4: 0.007020515 - Syst_5: 0.007020515 - Syst_6: 0.03893063895065 - Syst_7: 0.02505571857565 - Syst_8: 0.03506748120064 - Syst_9: 0.035067481200645005 - Syst_10: 0.2033913909637 - ArtUnc_1: -0.020631572765617244 - ArtUnc_2: -0.026030024127041675 - ArtUnc_3: 0.024008123305563032 - ArtUnc_4: -0.014270891568276128 - ArtUnc_5: 0.020723125479026626 - ArtUnc_6: 0.00832041641209473 - ArtUnc_7: -0.008284879234070052 - ArtUnc_8: 0.005981017938577963 - ArtUnc_9: 0.007810985928377024 - ArtUnc_10: 0.0035315611446437487 - ArtUnc_11: 0.010949732537294851 - ArtUnc_12: 0.01758129419870604 - ArtUnc_13: 0.01903370443276403 - ArtUnc_14: -0.011932927919514455 - ArtUnc_15: -0.0037723989125883896 - ArtUnc_16: -0.11122243040140126 - ArtUnc_17: 0.2074551918499778 - ArtUnc_18: -0.09188590720307466 - ArtUnc_19: -0.061400153673162546 - ArtUnc_20: -0.06195945446915642 - ArtUnc_21: -0.1845934747033768 - ArtUnc_22: -0.0647613778636752 - ArtUnc_23: -0.013843241495607391 - ArtUnc_24: 0.3041694833448196 - ArtUnc_25: 0.0807605183423375 - ArtUnc_26: -0.00031168140463489353 - ArtUnc_27: 2.4985097919912134e-05 - ArtUnc_28: 0.002136948184083779 - ArtUnc_29: 0.0006791755414542452 - ArtUnc_30: 0.0242358898437251 - ArtUnc_31: 0.0009797452447793747 - ArtUnc_32: -0.0076271940104840254 - ArtUnc_33: -0.012847709346100933 - ArtUnc_34: 0.02439930476570238 - ArtUnc_35: 0.015762712362053056 - ArtUnc_36: 0.004725779629778255 - ArtUnc_37: -0.0002322457879737366 - ArtUnc_38: -0.0022286149292438276 - ArtUnc_39: -0.00018496306443584098 - ArtUnc_40: 0.005290209535274342 - ArtUnc_41: 1.0385857948990385e-05 - ArtUnc_42: 5.214106191804771e-06 - ArtUnc_43: 5.3067020758617764e-05 - ArtUnc_44: 0.0004964647635548821 - ArtUnc_45: 0.0002487196248678831 - ArtUnc_46: 0.0003320072607361897 - ArtUnc_47: 0.00019058268147090592 - ArtUnc_48: -0.00012375064581110593 -- Syst_1: 0.03932896610973 - Syst_2: 0.02252871507654 - Syst_3: 0.02252871507654 - Syst_4: 0.0009326234796115 - Syst_5: 0.0009326234796115 - Syst_6: 0.0007400622244443 - Syst_7: 0.002564932572373 - Syst_8: 0.004274887620623 - Syst_9: 0.0042748876206225 - Syst_10: 0.02479434819961 - ArtUnc_1: -0.0007826689779239622 - ArtUnc_2: -0.0011876841392537171 - ArtUnc_3: 0.001200724697811241 - ArtUnc_4: -0.0007672469190932332 - ArtUnc_5: 0.0011478044407074548 - ArtUnc_6: 0.0008498207198704327 - ArtUnc_7: -0.0006746557519677296 - ArtUnc_8: 0.0005597668774128456 - ArtUnc_9: 0.0015070756617694126 - ArtUnc_10: 0.001602279171718358 - ArtUnc_11: 1.913597796684201e-05 - ArtUnc_12: 0.0004580470251691016 - ArtUnc_13: 0.0007236949408252197 - ArtUnc_14: -0.0005052535706022615 - ArtUnc_15: -3.4491170252458824e-05 - ArtUnc_16: -0.0017488202575658236 - ArtUnc_17: 0.0037795446403641694 - ArtUnc_18: -0.0017102912474347756 - ArtUnc_19: -0.00037111247640805547 - ArtUnc_20: -0.0006377904430620147 - ArtUnc_21: -0.002983039252101476 - ArtUnc_22: -0.001260103897285605 - ArtUnc_23: -0.00020855521189744037 - ArtUnc_24: 0.006522303489934116 - ArtUnc_25: 0.001915756349229358 - ArtUnc_26: -9.619191058588738e-06 - ArtUnc_27: 1.3222634373010382e-05 - ArtUnc_28: 0.0031981598786995297 - ArtUnc_29: 0.00037186791847111634 - ArtUnc_30: 0.016389446599132985 - ArtUnc_31: -0.003342752562335444 - ArtUnc_32: -0.007677685459758001 - ArtUnc_33: -0.0025633363676121025 - ArtUnc_34: -0.03630957350973411 - ArtUnc_35: 0.050431445798852496 - ArtUnc_36: 0.0645342731278894 - ArtUnc_37: -4.346474140375781e-06 - ArtUnc_38: 0.04004617646246907 - ArtUnc_39: 0.0018565461683390197 - ArtUnc_40: -0.08611601544996343 - ArtUnc_41: -0.00013806708996515904 - ArtUnc_42: 0.00010751999135568573 - ArtUnc_43: -0.0017174361619756433 - ArtUnc_44: -0.010294865974635048 - ArtUnc_45: -0.006722221296049184 - ArtUnc_46: -0.010654871163764268 - ArtUnc_47: -0.006761805510390562 - ArtUnc_48: 0.003258885322129902 -- Syst_1: 0.78143458725 - Syst_2: 0.2486358934265 - Syst_3: 0.2486358934265 - Syst_4: 0.2608695 - Syst_5: 0.2608695 - Syst_6: 0.4570802892413 - Syst_7: 0.15628691745 - Syst_8: 0.26047819575 - Syst_9: 0.26047819575 - Syst_10: 1.51077353535 - ArtUnc_1: -0.20997806893049914 - ArtUnc_2: -1.1033853165290686 - ArtUnc_3: -0.06928439710691829 - ArtUnc_4: 0.48362000352303025 - ArtUnc_5: -0.913055192211235 - ArtUnc_6: 0.06448880193445641 - ArtUnc_7: -0.21492884417828317 - ArtUnc_8: 0.12117523700206342 - ArtUnc_9: 0.030918596121429297 - ArtUnc_10: -0.17129670598600374 - ArtUnc_11: 0.047361098045595365 - ArtUnc_12: 0.05189026410658226 - ArtUnc_13: -0.024137624350496392 - ArtUnc_14: 0.04243963759140502 - ArtUnc_15: -0.029663641047916963 - ArtUnc_16: 0.019848857924832815 - ArtUnc_17: 0.0016222403766645258 - ArtUnc_18: 0.0028202625607605275 - ArtUnc_19: 0.020146082733065535 - ArtUnc_20: 0.005070413830498457 - ArtUnc_21: 0.018456738608049778 - ArtUnc_22: -0.04456698226484663 - ArtUnc_23: 0.02789161789958958 - ArtUnc_24: 0.017698206044845812 - ArtUnc_25: -0.02914334801940226 - ArtUnc_26: 0.00014171033375046688 - ArtUnc_27: -9.708051531841312e-06 - ArtUnc_28: 0.00023742995686852104 - ArtUnc_29: 4.173991529923677e-05 - ArtUnc_30: -0.0011938252198109675 - ArtUnc_31: -0.0008717851001190224 - ArtUnc_32: 0.0022143620302185374 - ArtUnc_33: 0.0014199753089155643 - ArtUnc_34: 0.0010032872413770794 - ArtUnc_35: 0.0009117492309855831 - ArtUnc_36: 0.0003487192521509984 - ArtUnc_37: -1.3630884230317213e-05 - ArtUnc_38: 0.0001604294123607466 - ArtUnc_39: -4.191894987348506e-05 - ArtUnc_40: 1.9978009666164253e-05 - ArtUnc_41: -1.5055678216100463e-09 - ArtUnc_42: 4.743060834142399e-07 - ArtUnc_43: 3.410157489314836e-07 - ArtUnc_44: -3.940099610188121e-06 - ArtUnc_45: -2.669292200982517e-05 - ArtUnc_46: 2.187817612704188e-05 - ArtUnc_47: 3.1343725364988683e-05 - ArtUnc_48: -2.1914304789007913e-05 -- Syst_1: 0.8635246774655 - Syst_2: 0.31290440632885 - Syst_3: 0.31290440632885 - Syst_4: 0.0556278 - Syst_5: 0.0556278 - Syst_6: 0.2259611917827 - Syst_7: 0.07233489456689 - Syst_8: 0.1114225390278 - Syst_9: 0.13927817378475 - Syst_10: 0.8078134079515 - ArtUnc_1: 0.0542422612439392 - ArtUnc_2: 0.322035900019596 - ArtUnc_3: 0.035703221915877256 - ArtUnc_4: -0.1456356415473101 - ArtUnc_5: 0.2858217288223082 - ArtUnc_6: 0.18771986888986117 - ArtUnc_7: -0.6805882924489723 - ArtUnc_8: 0.3889973522030295 - ArtUnc_9: 0.04137173397981681 - ArtUnc_10: -0.5895065047024947 - ArtUnc_11: -0.0032458992948560896 - ArtUnc_12: -0.12069693679182054 - ArtUnc_13: 0.027729471454744376 - ArtUnc_14: -0.0946122845516767 - ArtUnc_15: 0.04748011430981634 - ArtUnc_16: 0.028888232189480074 - ArtUnc_17: 0.013398484429567824 - ArtUnc_18: 0.0003211757821789045 - ArtUnc_19: 0.006866504647685181 - ArtUnc_20: -0.00032137835986606906 - ArtUnc_21: 0.01133130866075236 - ArtUnc_22: -0.043324314283838754 - ArtUnc_23: 0.02793967173386457 - ArtUnc_24: 0.006908798882986808 - ArtUnc_25: -0.03480545924432298 - ArtUnc_26: 0.00021497919680961991 - ArtUnc_27: -1.3126027379128008e-05 - ArtUnc_28: 0.0003736549293511213 - ArtUnc_29: -1.7702265142275421e-06 - ArtUnc_30: -0.0017242425289878778 - ArtUnc_31: -0.0010105986211746169 - ArtUnc_32: 0.002828438730467438 - ArtUnc_33: 0.0019217772650496373 - ArtUnc_34: 0.0013580788892906892 - ArtUnc_35: 0.0011767803142666282 - ArtUnc_36: 0.0004944229993638251 - ArtUnc_37: -1.6395275407600864e-05 - ArtUnc_38: 0.00017113201617845503 - ArtUnc_39: -2.2409422806687517e-05 - ArtUnc_40: -8.587806823010223e-06 - ArtUnc_41: 2.4813607520122946e-07 - ArtUnc_42: 1.6551225876526545e-06 - ArtUnc_43: -2.939456503767328e-06 - ArtUnc_44: -1.0062527796316505e-05 - ArtUnc_45: -3.938740891543092e-05 - ArtUnc_46: 2.9529927966971336e-05 - ArtUnc_47: 3.74767405734585e-05 - ArtUnc_48: -3.1148814020509616e-05 -- Syst_1: 0.1322793244755 - Syst_2: 0.1259170459072 - Syst_3: 0.1259170459072 - Syst_4: 0.005790006019325 - Syst_5: 0.005790006019325 - Syst_6: 0.05928243109147 - Syst_7: 0.018115160434 - Syst_8: 0.02784827883695 - Syst_9: 0.034810348546185005 - Syst_10: 0.2019000215679 - ArtUnc_1: 0.006669842154042086 - ArtUnc_2: 0.039644001936589075 - ArtUnc_3: 0.002823914908107587 - ArtUnc_4: -0.017794383593870925 - ArtUnc_5: 0.03470710596154785 - ArtUnc_6: -0.006345011173092077 - ArtUnc_7: 0.026898726630309674 - ArtUnc_8: -0.013001455773969318 - ArtUnc_9: 0.00023260304461794257 - ArtUnc_10: 0.016329822122186397 - ArtUnc_11: -0.011259923898942925 - ArtUnc_12: -0.03033971767478696 - ArtUnc_13: 0.004870821822220358 - ArtUnc_14: -0.020226405280491837 - ArtUnc_15: 0.014864709571711227 - ArtUnc_16: 0.0823481076358241 - ArtUnc_17: -0.12270914584608478 - ArtUnc_18: 0.05344729169413465 - ArtUnc_19: 0.29480464922703137 - ArtUnc_20: -0.009451163105899184 - ArtUnc_21: 0.21784050383760487 - ArtUnc_22: 0.012738477015671025 - ArtUnc_23: -0.0647972650122872 - ArtUnc_24: 0.21641466081981164 - ArtUnc_25: 0.07521428677062923 - ArtUnc_26: -0.0002515917383993994 - ArtUnc_27: -1.07274968452258e-05 - ArtUnc_28: 0.0008740622455874572 - ArtUnc_29: -0.00025413163132631116 - ArtUnc_30: -0.01325534133184797 - ArtUnc_31: -0.011564241249623835 - ArtUnc_32: 0.02495327557179438 - ArtUnc_33: 0.01825239308480064 - ArtUnc_34: 0.013814371727728158 - ArtUnc_35: 0.014048046852529366 - ArtUnc_36: 0.00517967450582144 - ArtUnc_37: -0.00011608778889356139 - ArtUnc_38: 0.005399212675903202 - ArtUnc_39: -9.097027949379901e-05 - ArtUnc_40: 0.003335280790289528 - ArtUnc_41: -9.799011661013574e-07 - ArtUnc_42: -1.175686136067048e-06 - ArtUnc_43: -2.6722199609556216e-05 - ArtUnc_44: 0.00017459908603454345 - ArtUnc_45: 0.00041223295143628106 - ArtUnc_46: -0.00023458699731852787 - ArtUnc_47: -0.00016775851143951644 - ArtUnc_48: 0.00018286636672169496 -- Syst_1: -0.02610898107966 - Syst_2: 0.02413235843608 - Syst_3: 0.02413235843608 - Syst_4: 0.000751447211775 - Syst_5: 0.000751447211775 - Syst_6: 0.00566762873371 - Syst_7: 0.00284919351576 - Syst_8: 0.003481197477288 - Syst_9: 0.00435149684661 - Syst_10: 0.02523868171034 - ArtUnc_1: 0.00017842169925914484 - ArtUnc_2: 0.0012388481355375324 - ArtUnc_3: 6.663611403424901e-05 - ArtUnc_4: -0.0006414482231177446 - ArtUnc_5: 0.0013264917661047722 - ArtUnc_6: -0.0005467017341513468 - ArtUnc_7: 0.00246072538801406 - ArtUnc_8: -0.0015002582801220575 - ArtUnc_9: -0.00024091147558489957 - ArtUnc_10: 0.0026483671997274867 - ArtUnc_11: -0.0003725738934842088 - ArtUnc_12: -0.0004374462988662474 - ArtUnc_13: 0.00020163954717642042 - ArtUnc_14: -0.000327842733381848 - ArtUnc_15: 0.00028461547436882666 - ArtUnc_16: 0.0005390048614221222 - ArtUnc_17: -0.0012475041962953634 - ArtUnc_18: 0.0005097293413508778 - ArtUnc_19: 0.00306678296135154 - ArtUnc_20: -0.00022131339529519366 - ArtUnc_21: 0.0025154196538152056 - ArtUnc_22: 0.001004187235401258 - ArtUnc_23: -0.0015489461902755467 - ArtUnc_24: 0.0030101879074630905 - ArtUnc_25: 0.0018756776902290595 - ArtUnc_26: -9.01259533946484e-06 - ArtUnc_27: -2.7385709178180845e-06 - ArtUnc_28: -0.0010102635614595205 - ArtUnc_29: -0.00016766842033481382 - ArtUnc_30: -0.006984221582180577 - ArtUnc_31: -0.0038846224066167406 - ArtUnc_32: 0.01585076265468602 - ArtUnc_33: 0.007969573902156343 - ArtUnc_34: 0.05005791041375836 - ArtUnc_35: -0.04120527870567372 - ArtUnc_36: -0.003257785303095628 - ArtUnc_37: -0.00023415463678845436 - ArtUnc_38: -0.0912027223226621 - ArtUnc_39: 0.0008708415901431875 - ArtUnc_40: -0.06343688723730977 - ArtUnc_41: -7.736653007708858e-06 - ArtUnc_42: -1.6267387730400024e-05 - ArtUnc_43: 0.0011324322857702493 - ArtUnc_44: -0.003778619722760334 - ArtUnc_45: -0.011668073987491258 - ArtUnc_46: 0.00839589341587632 - ArtUnc_47: 0.009302422988522177 - ArtUnc_48: -0.007247892912180061 -- Syst_1: 0.731633634 - Syst_2: 0.3190714026672 - Syst_3: 0.3190714026672 - Syst_4: 0.1706292 - Syst_5: 0.1706292 - Syst_6: 0.5616976088752 - Syst_7: 0.0975511512 - Syst_8: 0.1951023024 - Syst_9: 0.24387787800000002 - Syst_10: 1.4144916924 - ArtUnc_1: 0.016196611660085018 - ArtUnc_2: 0.6084222905417811 - ArtUnc_3: 1.1783033229256188 - ArtUnc_4: -0.21106332851989362 - ArtUnc_5: -0.7331413874042071 - ArtUnc_6: -0.012037131816683819 - ArtUnc_7: 0.17439451961381644 - ArtUnc_8: 0.04016949510296015 - ArtUnc_9: 0.19482590720781698 - ArtUnc_10: -0.12035852886666755 - ArtUnc_11: 0.021130742049534513 - ArtUnc_12: -0.037084981265545894 - ArtUnc_13: 0.03250922717615052 - ArtUnc_14: 0.02121609117858962 - ArtUnc_15: -0.052369882641597296 - ArtUnc_16: 0.011438842265558913 - ArtUnc_17: 0.013106518598417634 - ArtUnc_18: 0.0032973070714132787 - ArtUnc_19: -0.01542216087313348 - ArtUnc_20: -0.009947922816305091 - ArtUnc_21: 0.01739360075945099 - ArtUnc_22: 0.04129850156213861 - ArtUnc_23: 0.04128635306498822 - ArtUnc_24: 0.013869137564465561 - ArtUnc_25: -0.004235676674822537 - ArtUnc_26: -7.034832362895596e-05 - ArtUnc_27: 5.014382718728981e-06 - ArtUnc_28: 0.0006136640739226192 - ArtUnc_29: 7.342443266026286e-05 - ArtUnc_30: 0.00014558030672734708 - ArtUnc_31: 0.0012226036993070626 - ArtUnc_32: -0.001378101530354258 - ArtUnc_33: 0.002423260092664527 - ArtUnc_34: 0.00042599217321092524 - ArtUnc_35: 7.959446814439335e-05 - ArtUnc_36: 8.322585685159863e-05 - ArtUnc_37: -6.423528240725511e-06 - ArtUnc_38: 1.5060321620339827e-05 - ArtUnc_39: -3.588761005894049e-05 - ArtUnc_40: -1.8893259821237862e-05 - ArtUnc_41: -5.274586318696456e-08 - ArtUnc_42: 3.2046234540844186e-06 - ArtUnc_43: -3.270322162335073e-05 - ArtUnc_44: -4.0878142461713393e-07 - ArtUnc_45: -1.6122393980726653e-05 - ArtUnc_46: 3.545762545434298e-05 - ArtUnc_47: -5.2967240298918794e-05 - ArtUnc_48: 3.485578758167092e-05 + ArtUnc_1: -1.67701326e-01 + ArtUnc_2: -2.32931791e-01 + ArtUnc_3: 1.91750382e-01 + ArtUnc_4: -1.07472078e-01 + ArtUnc_5: 1.43274553e-01 + ArtUnc_6: -4.49879507e-01 + ArtUnc_7: 3.11788732e-01 + ArtUnc_8: -2.35429976e-01 + ArtUnc_9: -5.96173489e-01 + ArtUnc_10: -5.32765765e-01 + ArtUnc_11: 1.47150869e-01 + ArtUnc_12: 1.11766759e-01 + ArtUnc_13: 1.19273155e-01 + ArtUnc_14: -8.11059399e-02 + ArtUnc_15: -1.74654848e-02 + ArtUnc_16: 1.18123737e-02 + ArtUnc_17: 7.83693081e-03 + ArtUnc_18: -4.71380389e-03 + ArtUnc_19: -8.15164377e-03 + ArtUnc_20: -7.09350932e-02 + ArtUnc_21: 1.96814816e-02 + ArtUnc_22: -2.11642535e-03 + ArtUnc_23: -1.93248829e-02 + ArtUnc_24: -6.33903814e-03 + ArtUnc_25: -2.11191935e-02 + ArtUnc_26: 2.42053398e-04 + ArtUnc_27: -1.36446656e-05 + ArtUnc_28: 4.41089482e-04 + ArtUnc_29: 1.06797211e-04 + ArtUnc_30: 2.36576359e-03 + ArtUnc_31: 2.54296991e-04 + ArtUnc_32: -6.43963737e-04 + ArtUnc_33: -1.16100896e-03 + ArtUnc_34: 1.95972198e-03 + ArtUnc_35: 1.29947208e-03 + ArtUnc_36: 4.57174691e-04 + ArtUnc_37: -2.15988070e-05 + ArtUnc_38: -9.21855249e-05 + ArtUnc_39: -2.36476985e-05 + ArtUnc_40: 1.44262339e-04 + ArtUnc_41: -3.14741036e-07 + ArtUnc_42: 2.14280162e-06 + ArtUnc_43: -1.46534884e-05 + ArtUnc_44: -4.65843720e-05 + ArtUnc_45: -3.16377494e-05 + ArtUnc_46: -5.96863510e-05 + ArtUnc_47: -4.28643028e-05 + ArtUnc_48: 1.81572333e-05 +- Syst_1: 3.36647820e-01 + Syst_2: 1.24649450e-01 + Syst_3: 1.24649450e-01 + Syst_4: 7.02051500e-03 + Syst_5: 7.02051500e-03 + Syst_6: 3.89306390e-02 + Syst_7: 2.50557186e-02 + Syst_8: 3.50674812e-02 + Syst_9: 3.50674812e-02 + Syst_10: 2.03391391e-01 + ArtUnc_1: -2.06315728e-02 + ArtUnc_2: -2.60300241e-02 + ArtUnc_3: 2.40081233e-02 + ArtUnc_4: -1.42708916e-02 + ArtUnc_5: 2.07231255e-02 + ArtUnc_6: 8.32041641e-03 + ArtUnc_7: -8.28487923e-03 + ArtUnc_8: 5.98101794e-03 + ArtUnc_9: 7.81098593e-03 + ArtUnc_10: 3.53156114e-03 + ArtUnc_11: 1.09497325e-02 + ArtUnc_12: 1.75812942e-02 + ArtUnc_13: 1.90337044e-02 + ArtUnc_14: -1.19329279e-02 + ArtUnc_15: -3.77239891e-03 + ArtUnc_16: -1.11222430e-01 + ArtUnc_17: 2.07455192e-01 + ArtUnc_18: -9.18859072e-02 + ArtUnc_19: -6.14001537e-02 + ArtUnc_20: -6.19594545e-02 + ArtUnc_21: -1.84593475e-01 + ArtUnc_22: -6.47613779e-02 + ArtUnc_23: -1.38432415e-02 + ArtUnc_24: 3.04169483e-01 + ArtUnc_25: 8.07605183e-02 + ArtUnc_26: -3.11681405e-04 + ArtUnc_27: 2.49850979e-05 + ArtUnc_28: 2.13694818e-03 + ArtUnc_29: 6.79175541e-04 + ArtUnc_30: 2.42358898e-02 + ArtUnc_31: 9.79745245e-04 + ArtUnc_32: -7.62719401e-03 + ArtUnc_33: -1.28477093e-02 + ArtUnc_34: 2.43993048e-02 + ArtUnc_35: 1.57627124e-02 + ArtUnc_36: 4.72577963e-03 + ArtUnc_37: -2.32245788e-04 + ArtUnc_38: -2.22861493e-03 + ArtUnc_39: -1.84963064e-04 + ArtUnc_40: 5.29020954e-03 + ArtUnc_41: 1.03858579e-05 + ArtUnc_42: 5.21410619e-06 + ArtUnc_43: 5.30670208e-05 + ArtUnc_44: 4.96464764e-04 + ArtUnc_45: 2.48719625e-04 + ArtUnc_46: 3.32007261e-04 + ArtUnc_47: 1.90582681e-04 + ArtUnc_48: -1.23750646e-04 +- Syst_1: 3.93289661e-02 + Syst_2: 2.25287151e-02 + Syst_3: 2.25287151e-02 + Syst_4: 9.32623480e-04 + Syst_5: 9.32623480e-04 + Syst_6: 7.40062224e-04 + Syst_7: 2.56493257e-03 + Syst_8: 4.27488762e-03 + Syst_9: 4.27488762e-03 + Syst_10: 2.47943482e-02 + ArtUnc_1: -7.82668978e-04 + ArtUnc_2: -1.18768414e-03 + ArtUnc_3: 1.20072470e-03 + ArtUnc_4: -7.67246919e-04 + ArtUnc_5: 1.14780444e-03 + ArtUnc_6: 8.49820720e-04 + ArtUnc_7: -6.74655752e-04 + ArtUnc_8: 5.59766877e-04 + ArtUnc_9: 1.50707566e-03 + ArtUnc_10: 1.60227917e-03 + ArtUnc_11: 1.91359780e-05 + ArtUnc_12: 4.58047025e-04 + ArtUnc_13: 7.23694941e-04 + ArtUnc_14: -5.05253571e-04 + ArtUnc_15: -3.44911703e-05 + ArtUnc_16: -1.74882026e-03 + ArtUnc_17: 3.77954464e-03 + ArtUnc_18: -1.71029125e-03 + ArtUnc_19: -3.71112476e-04 + ArtUnc_20: -6.37790443e-04 + ArtUnc_21: -2.98303925e-03 + ArtUnc_22: -1.26010390e-03 + ArtUnc_23: -2.08555212e-04 + ArtUnc_24: 6.52230349e-03 + ArtUnc_25: 1.91575635e-03 + ArtUnc_26: -9.61919106e-06 + ArtUnc_27: 1.32226344e-05 + ArtUnc_28: 3.19815988e-03 + ArtUnc_29: 3.71867918e-04 + ArtUnc_30: 1.63894466e-02 + ArtUnc_31: -3.34275256e-03 + ArtUnc_32: -7.67768546e-03 + ArtUnc_33: -2.56333637e-03 + ArtUnc_34: -3.63095735e-02 + ArtUnc_35: 5.04314458e-02 + ArtUnc_36: 6.45342731e-02 + ArtUnc_37: -4.34647414e-06 + ArtUnc_38: 4.00461765e-02 + ArtUnc_39: 1.85654617e-03 + ArtUnc_40: -8.61160154e-02 + ArtUnc_41: -1.38067090e-04 + ArtUnc_42: 1.07519991e-04 + ArtUnc_43: -1.71743616e-03 + ArtUnc_44: -1.02948660e-02 + ArtUnc_45: -6.72222130e-03 + ArtUnc_46: -1.06548712e-02 + ArtUnc_47: -6.76180551e-03 + ArtUnc_48: 3.25888532e-03 +- Syst_1: 7.81434587e-01 + Syst_2: 2.48635893e-01 + Syst_3: 2.48635893e-01 + Syst_4: 2.60869500e-01 + Syst_5: 2.60869500e-01 + Syst_6: 4.57080289e-01 + Syst_7: 1.56286917e-01 + Syst_8: 2.60478196e-01 + Syst_9: 2.60478196e-01 + Syst_10: 1.51077354e+00 + ArtUnc_1: -2.09978069e-01 + ArtUnc_2: -1.10338532e+00 + ArtUnc_3: -6.92843971e-02 + ArtUnc_4: 4.83620004e-01 + ArtUnc_5: -9.13055192e-01 + ArtUnc_6: 6.44888019e-02 + ArtUnc_7: -2.14928844e-01 + ArtUnc_8: 1.21175237e-01 + ArtUnc_9: 3.09185961e-02 + ArtUnc_10: -1.71296706e-01 + ArtUnc_11: 4.73610980e-02 + ArtUnc_12: 5.18902641e-02 + ArtUnc_13: -2.41376244e-02 + ArtUnc_14: 4.24396376e-02 + ArtUnc_15: -2.96636410e-02 + ArtUnc_16: 1.98488579e-02 + ArtUnc_17: 1.62224038e-03 + ArtUnc_18: 2.82026256e-03 + ArtUnc_19: 2.01460827e-02 + ArtUnc_20: 5.07041383e-03 + ArtUnc_21: 1.84567386e-02 + ArtUnc_22: -4.45669823e-02 + ArtUnc_23: 2.78916179e-02 + ArtUnc_24: 1.76982060e-02 + ArtUnc_25: -2.91433480e-02 + ArtUnc_26: 1.41710334e-04 + ArtUnc_27: -9.70805153e-06 + ArtUnc_28: 2.37429957e-04 + ArtUnc_29: 4.17399153e-05 + ArtUnc_30: -1.19382522e-03 + ArtUnc_31: -8.71785100e-04 + ArtUnc_32: 2.21436203e-03 + ArtUnc_33: 1.41997531e-03 + ArtUnc_34: 1.00328724e-03 + ArtUnc_35: 9.11749231e-04 + ArtUnc_36: 3.48719252e-04 + ArtUnc_37: -1.36308842e-05 + ArtUnc_38: 1.60429412e-04 + ArtUnc_39: -4.19189499e-05 + ArtUnc_40: 1.99780097e-05 + ArtUnc_41: -1.50556782e-09 + ArtUnc_42: 4.74306083e-07 + ArtUnc_43: 3.41015749e-07 + ArtUnc_44: -3.94009961e-06 + ArtUnc_45: -2.66929220e-05 + ArtUnc_46: 2.18781761e-05 + ArtUnc_47: 3.13437254e-05 + ArtUnc_48: -2.19143048e-05 +- Syst_1: 8.63524677e-01 + Syst_2: 3.12904406e-01 + Syst_3: 3.12904406e-01 + Syst_4: 5.56278000e-02 + Syst_5: 5.56278000e-02 + Syst_6: 2.25961192e-01 + Syst_7: 7.23348946e-02 + Syst_8: 1.11422539e-01 + Syst_9: 1.39278174e-01 + Syst_10: 8.07813408e-01 + ArtUnc_1: 5.42422612e-02 + ArtUnc_2: 3.22035900e-01 + ArtUnc_3: 3.57032219e-02 + ArtUnc_4: -1.45635642e-01 + ArtUnc_5: 2.85821729e-01 + ArtUnc_6: 1.87719869e-01 + ArtUnc_7: -6.80588292e-01 + ArtUnc_8: 3.88997352e-01 + ArtUnc_9: 4.13717340e-02 + ArtUnc_10: -5.89506505e-01 + ArtUnc_11: -3.24589929e-03 + ArtUnc_12: -1.20696937e-01 + ArtUnc_13: 2.77294715e-02 + ArtUnc_14: -9.46122846e-02 + ArtUnc_15: 4.74801143e-02 + ArtUnc_16: 2.88882322e-02 + ArtUnc_17: 1.33984844e-02 + ArtUnc_18: 3.21175782e-04 + ArtUnc_19: 6.86650465e-03 + ArtUnc_20: -3.21378360e-04 + ArtUnc_21: 1.13313087e-02 + ArtUnc_22: -4.33243143e-02 + ArtUnc_23: 2.79396717e-02 + ArtUnc_24: 6.90879888e-03 + ArtUnc_25: -3.48054592e-02 + ArtUnc_26: 2.14979197e-04 + ArtUnc_27: -1.31260274e-05 + ArtUnc_28: 3.73654929e-04 + ArtUnc_29: -1.77022651e-06 + ArtUnc_30: -1.72424253e-03 + ArtUnc_31: -1.01059862e-03 + ArtUnc_32: 2.82843873e-03 + ArtUnc_33: 1.92177727e-03 + ArtUnc_34: 1.35807889e-03 + ArtUnc_35: 1.17678031e-03 + ArtUnc_36: 4.94422999e-04 + ArtUnc_37: -1.63952754e-05 + ArtUnc_38: 1.71132016e-04 + ArtUnc_39: -2.24094228e-05 + ArtUnc_40: -8.58780682e-06 + ArtUnc_41: 2.48136075e-07 + ArtUnc_42: 1.65512259e-06 + ArtUnc_43: -2.93945650e-06 + ArtUnc_44: -1.00625278e-05 + ArtUnc_45: -3.93874089e-05 + ArtUnc_46: 2.95299280e-05 + ArtUnc_47: 3.74767406e-05 + ArtUnc_48: -3.11488140e-05 +- Syst_1: 1.32279324e-01 + Syst_2: 1.25917046e-01 + Syst_3: 1.25917046e-01 + Syst_4: 5.79000602e-03 + Syst_5: 5.79000602e-03 + Syst_6: 5.92824311e-02 + Syst_7: 1.81151604e-02 + Syst_8: 2.78482788e-02 + Syst_9: 3.48103485e-02 + Syst_10: 2.01900022e-01 + ArtUnc_1: 6.66984215e-03 + ArtUnc_2: 3.96440019e-02 + ArtUnc_3: 2.82391491e-03 + ArtUnc_4: -1.77943836e-02 + ArtUnc_5: 3.47071060e-02 + ArtUnc_6: -6.34501117e-03 + ArtUnc_7: 2.68987266e-02 + ArtUnc_8: -1.30014558e-02 + ArtUnc_9: 2.32603045e-04 + ArtUnc_10: 1.63298221e-02 + ArtUnc_11: -1.12599239e-02 + ArtUnc_12: -3.03397177e-02 + ArtUnc_13: 4.87082182e-03 + ArtUnc_14: -2.02264053e-02 + ArtUnc_15: 1.48647096e-02 + ArtUnc_16: 8.23481076e-02 + ArtUnc_17: -1.22709146e-01 + ArtUnc_18: 5.34472917e-02 + ArtUnc_19: 2.94804649e-01 + ArtUnc_20: -9.45116311e-03 + ArtUnc_21: 2.17840504e-01 + ArtUnc_22: 1.27384770e-02 + ArtUnc_23: -6.47972650e-02 + ArtUnc_24: 2.16414661e-01 + ArtUnc_25: 7.52142868e-02 + ArtUnc_26: -2.51591738e-04 + ArtUnc_27: -1.07274968e-05 + ArtUnc_28: 8.74062246e-04 + ArtUnc_29: -2.54131631e-04 + ArtUnc_30: -1.32553413e-02 + ArtUnc_31: -1.15642412e-02 + ArtUnc_32: 2.49532756e-02 + ArtUnc_33: 1.82523931e-02 + ArtUnc_34: 1.38143717e-02 + ArtUnc_35: 1.40480469e-02 + ArtUnc_36: 5.17967451e-03 + ArtUnc_37: -1.16087789e-04 + ArtUnc_38: 5.39921268e-03 + ArtUnc_39: -9.09702795e-05 + ArtUnc_40: 3.33528079e-03 + ArtUnc_41: -9.79901166e-07 + ArtUnc_42: -1.17568614e-06 + ArtUnc_43: -2.67221996e-05 + ArtUnc_44: 1.74599086e-04 + ArtUnc_45: 4.12232951e-04 + ArtUnc_46: -2.34586997e-04 + ArtUnc_47: -1.67758511e-04 + ArtUnc_48: 1.82866367e-04 +- Syst_1: -2.61089811e-02 + Syst_2: 2.41323584e-02 + Syst_3: 2.41323584e-02 + Syst_4: 7.51447212e-04 + Syst_5: 7.51447212e-04 + Syst_6: 5.66762873e-03 + Syst_7: 2.84919352e-03 + Syst_8: 3.48119748e-03 + Syst_9: 4.35149685e-03 + Syst_10: 2.52386817e-02 + ArtUnc_1: 1.78421699e-04 + ArtUnc_2: 1.23884814e-03 + ArtUnc_3: 6.66361140e-05 + ArtUnc_4: -6.41448223e-04 + ArtUnc_5: 1.32649177e-03 + ArtUnc_6: -5.46701734e-04 + ArtUnc_7: 2.46072539e-03 + ArtUnc_8: -1.50025828e-03 + ArtUnc_9: -2.40911476e-04 + ArtUnc_10: 2.64836720e-03 + ArtUnc_11: -3.72573893e-04 + ArtUnc_12: -4.37446299e-04 + ArtUnc_13: 2.01639547e-04 + ArtUnc_14: -3.27842733e-04 + ArtUnc_15: 2.84615474e-04 + ArtUnc_16: 5.39004861e-04 + ArtUnc_17: -1.24750420e-03 + ArtUnc_18: 5.09729341e-04 + ArtUnc_19: 3.06678296e-03 + ArtUnc_20: -2.21313395e-04 + ArtUnc_21: 2.51541965e-03 + ArtUnc_22: 1.00418724e-03 + ArtUnc_23: -1.54894619e-03 + ArtUnc_24: 3.01018791e-03 + ArtUnc_25: 1.87567769e-03 + ArtUnc_26: -9.01259534e-06 + ArtUnc_27: -2.73857092e-06 + ArtUnc_28: -1.01026356e-03 + ArtUnc_29: -1.67668420e-04 + ArtUnc_30: -6.98422158e-03 + ArtUnc_31: -3.88462241e-03 + ArtUnc_32: 1.58507627e-02 + ArtUnc_33: 7.96957390e-03 + ArtUnc_34: 5.00579104e-02 + ArtUnc_35: -4.12052787e-02 + ArtUnc_36: -3.25778530e-03 + ArtUnc_37: -2.34154637e-04 + ArtUnc_38: -9.12027223e-02 + ArtUnc_39: 8.70841590e-04 + ArtUnc_40: -6.34368872e-02 + ArtUnc_41: -7.73665301e-06 + ArtUnc_42: -1.62673877e-05 + ArtUnc_43: 1.13243229e-03 + ArtUnc_44: -3.77861972e-03 + ArtUnc_45: -1.16680740e-02 + ArtUnc_46: 8.39589342e-03 + ArtUnc_47: 9.30242299e-03 + ArtUnc_48: -7.24789291e-03 +- Syst_1: 7.31633634e-01 + Syst_2: 3.19071403e-01 + Syst_3: 3.19071403e-01 + Syst_4: 1.70629200e-01 + Syst_5: 1.70629200e-01 + Syst_6: 5.61697609e-01 + Syst_7: 9.75511512e-02 + Syst_8: 1.95102302e-01 + Syst_9: 2.43877878e-01 + Syst_10: 1.41449169e+00 + ArtUnc_1: 1.61966117e-02 + ArtUnc_2: 6.08422291e-01 + ArtUnc_3: 1.17830332e+00 + ArtUnc_4: -2.11063329e-01 + ArtUnc_5: -7.33141387e-01 + ArtUnc_6: -1.20371318e-02 + ArtUnc_7: 1.74394520e-01 + ArtUnc_8: 4.01694951e-02 + ArtUnc_9: 1.94825907e-01 + ArtUnc_10: -1.20358529e-01 + ArtUnc_11: 2.11307420e-02 + ArtUnc_12: -3.70849813e-02 + ArtUnc_13: 3.25092272e-02 + ArtUnc_14: 2.12160912e-02 + ArtUnc_15: -5.23698826e-02 + ArtUnc_16: 1.14388423e-02 + ArtUnc_17: 1.31065186e-02 + ArtUnc_18: 3.29730707e-03 + ArtUnc_19: -1.54221609e-02 + ArtUnc_20: -9.94792282e-03 + ArtUnc_21: 1.73936008e-02 + ArtUnc_22: 4.12985016e-02 + ArtUnc_23: 4.12863531e-02 + ArtUnc_24: 1.38691376e-02 + ArtUnc_25: -4.23567667e-03 + ArtUnc_26: -7.03483236e-05 + ArtUnc_27: 5.01438272e-06 + ArtUnc_28: 6.13664074e-04 + ArtUnc_29: 7.34244327e-05 + ArtUnc_30: 1.45580307e-04 + ArtUnc_31: 1.22260370e-03 + ArtUnc_32: -1.37810153e-03 + ArtUnc_33: 2.42326009e-03 + ArtUnc_34: 4.25992173e-04 + ArtUnc_35: 7.95944681e-05 + ArtUnc_36: 8.32258569e-05 + ArtUnc_37: -6.42352824e-06 + ArtUnc_38: 1.50603216e-05 + ArtUnc_39: -3.58876101e-05 + ArtUnc_40: -1.88932598e-05 + ArtUnc_41: -5.27458632e-08 + ArtUnc_42: 3.20462345e-06 + ArtUnc_43: -3.27032216e-05 + ArtUnc_44: -4.08781425e-07 + ArtUnc_45: -1.61223940e-05 + ArtUnc_46: 3.54576255e-05 + ArtUnc_47: -5.29672403e-05 + ArtUnc_48: 3.48557876e-05 - Syst_1: 0.3228 Syst_2: 0.269 Syst_3: 0.269 @@ -996,631 +996,631 @@ bins: Syst_8: 0.1076 Syst_9: 0.1345 Syst_10: 0.7801 - ArtUnc_1: -0.005675118403099362 - ArtUnc_2: -0.16894506697523726 - ArtUnc_3: -0.33110500391494335 - ArtUnc_4: 0.04713318373837934 - ArtUnc_5: 0.2162769141890149 - ArtUnc_6: -0.03761281407718198 - ArtUnc_7: 0.5992105033414634 - ArtUnc_8: 0.15023439226746907 - ArtUnc_9: 0.6641385494891536 - ArtUnc_10: -0.4158071432070722 - ArtUnc_11: 0.015819815735014082 - ArtUnc_12: 0.08238288214575794 - ArtUnc_13: -0.08891360453584256 - ArtUnc_14: -0.0402044091819068 - ArtUnc_15: 0.10508413495022456 - ArtUnc_16: 0.02294189809361722 - ArtUnc_17: 0.017099627572886543 - ArtUnc_18: 0.0003256225785963182 - ArtUnc_19: -0.005708409122356456 - ArtUnc_20: -0.015784442784914036 - ArtUnc_21: 0.007261866327407792 - ArtUnc_22: 0.03875041754044168 - ArtUnc_23: 0.04145851290281312 - ArtUnc_24: 0.010118951496909086 - ArtUnc_25: -0.008379078254506374 - ArtUnc_26: 2.9935749600749992e-05 - ArtUnc_27: 2.4361584243512598e-05 - ArtUnc_28: 0.0008610760855888179 - ArtUnc_29: 5.41317635033947e-05 - ArtUnc_30: 8.026818115138333e-05 - ArtUnc_31: 0.001821747703658219 - ArtUnc_32: -0.0020275947291807433 - ArtUnc_33: 0.0034376519600469797 - ArtUnc_34: 0.0006318372962585086 - ArtUnc_35: 4.2597764942953956e-05 - ArtUnc_36: 0.000180045397355293 - ArtUnc_37: -7.287433218743553e-06 - ArtUnc_38: 3.090098461955501e-05 - ArtUnc_39: -1.4935678093615735e-05 - ArtUnc_40: -3.140030802381932e-05 - ArtUnc_41: -1.4227322047707693e-07 - ArtUnc_42: 4.884362822355481e-06 - ArtUnc_43: -4.962574230962203e-05 - ArtUnc_44: -2.3767810746522056e-06 - ArtUnc_45: -2.8525513817194886e-05 - ArtUnc_46: 6.306413006045259e-05 - ArtUnc_47: -8.967756998741689e-05 - ArtUnc_48: 5.769848591669322e-05 -- Syst_1: 0.27824972175 - Syst_2: 0.1471823932235 - Syst_3: 0.1471823932235 - Syst_4: 0.013196767125205 - Syst_5: 0.013196767125205 - Syst_6: 0.0635999364 - Syst_7: 0.00794999205 - Syst_8: 0.02384997615 - Syst_9: 0.03974996025 - Syst_10: 0.23054976945 - ArtUnc_1: -0.0007900545244958886 - ArtUnc_2: -0.021433149148597445 - ArtUnc_3: -0.039228626762411574 - ArtUnc_4: 0.010314080536690941 - ArtUnc_5: 0.02626724863930348 - ArtUnc_6: 0.0014394615681878908 - ArtUnc_7: -0.022256904089521114 - ArtUnc_8: -0.009062467923359092 - ArtUnc_9: -0.021731475712144333 - ArtUnc_10: 0.014051928316390383 - ArtUnc_11: -0.0016922076869937378 - ArtUnc_12: 0.0131146042121069 - ArtUnc_13: -0.013905462968819641 - ArtUnc_14: -0.004974670829153879 - ArtUnc_15: 0.019953599505729176 - ArtUnc_16: -0.036618523465806546 - ArtUnc_17: 0.08519939724383452 - ArtUnc_18: 0.09710370980105812 - ArtUnc_19: -0.32135349140333114 - ArtUnc_20: 0.109215426642401 - ArtUnc_21: 0.29374326998786615 - ArtUnc_22: -0.0016708897188059371 - ArtUnc_23: -0.03425106560924834 - ArtUnc_24: 0.08619175074657197 - ArtUnc_25: 0.020670312315070574 - ArtUnc_26: -0.00012639928132523572 - ArtUnc_27: 1.1202694823370293e-05 - ArtUnc_28: 0.0032962997653618003 - ArtUnc_29: 1.7239241559385174e-05 - ArtUnc_30: -0.0010983437398115698 - ArtUnc_31: 0.013056132038131817 - ArtUnc_32: -0.01809791148751579 - ArtUnc_33: 0.030825711612437967 - ArtUnc_34: 0.007859383278675566 - ArtUnc_35: -0.001301418550772141 - ArtUnc_36: 0.004608644953200927 - ArtUnc_37: -4.744336979489166e-05 - ArtUnc_38: 0.0022586810035714784 - ArtUnc_39: -4.550427777900917e-05 - ArtUnc_40: 0.000771842931092493 - ArtUnc_41: 3.1304468639882617e-06 - ArtUnc_42: 2.6004851664192166e-07 - ArtUnc_43: 6.58872156885381e-05 - ArtUnc_44: 2.961448732127779e-05 - ArtUnc_45: 0.00022052646016992763 - ArtUnc_46: -0.0003777854182901868 - ArtUnc_47: 0.00042032807204002946 - ArtUnc_48: -0.0002785077389790992 -- Syst_1: -0.07619665080327 - Syst_2: 0.02400365056611 - Syst_3: 0.02400365056611 - Syst_4: 0.0006065965019885 - Syst_5: 0.0006065965019885 - Syst_6: 0.001211979810973 - Syst_7: 0.000856142143857 - Syst_8: 0.001712284287714 - Syst_9: 0.0042807107192850006 - Syst_10: 0.02482812217185 - ArtUnc_1: -1.4537850736582358e-05 - ArtUnc_2: -0.0007082668928631048 - ArtUnc_3: -0.0015096958293245673 - ArtUnc_4: 0.0003128002090261574 - ArtUnc_5: 0.0011054465362265802 - ArtUnc_6: 0.00011262776900528085 - ArtUnc_7: -0.0022545593085781844 - ArtUnc_8: -0.0006093100544773528 - ArtUnc_9: -0.0028698368817492155 - ArtUnc_10: 0.0020170558090470917 - ArtUnc_11: -0.00024079774406106168 - ArtUnc_12: 0.0006608913389512142 - ArtUnc_13: -0.000654568557225255 - ArtUnc_14: -0.00040770645844189087 - ArtUnc_15: 0.0012866666306145936 - ArtUnc_16: -0.0005857406537792959 - ArtUnc_17: 0.0006673975182431972 - ArtUnc_18: 0.0009024770495568244 - ArtUnc_19: -0.004037732693564099 - ArtUnc_20: 0.0019462438834815443 - ArtUnc_21: 0.004122429160320749 - ArtUnc_22: -0.0017744342398451625 - ArtUnc_23: -0.0025270831306012827 - ArtUnc_24: 0.0009950224718242228 - ArtUnc_25: 0.0007836873931373087 - ArtUnc_26: -7.101042817986682e-06 - ArtUnc_27: 1.431848370320843e-05 - ArtUnc_28: 0.013287305166126775 - ArtUnc_29: 0.0004961371899463012 - ArtUnc_30: -0.001612016747018691 - ArtUnc_31: -0.009120721830707773 - ArtUnc_32: -0.023684641918480256 - ArtUnc_33: 0.02156076192853304 - ArtUnc_34: -0.044134672504698276 - ArtUnc_35: 0.08475878898211194 - ArtUnc_36: -0.07745712470115129 - ArtUnc_37: -0.00039360828363580835 - ArtUnc_38: -0.038907420926832546 - ArtUnc_39: 9.201284975108792e-05 - ArtUnc_40: -0.01629884755141499 - ArtUnc_41: -2.8228599992173357e-05 - ArtUnc_42: 0.00021103896101122804 - ArtUnc_43: -0.0040639875218473785 - ArtUnc_44: -0.0004238131586426437 - ArtUnc_45: -0.004792347890498028 - ArtUnc_46: 0.010133431375676715 - ArtUnc_47: -0.012927469775403846 - ArtUnc_48: 0.008604452492112297 -- Syst_1: 0.9525992853119 - Syst_2: 0.24011011536375 - Syst_3: 0.24011011536375 - Syst_4: 0.09852182305075 - Syst_5: 0.09852182305075 - Syst_6: 0.1971421679245 - Syst_7: 0.2164998375709 - Syst_8: 0.4762996426559 - Syst_9: 0.21649983757085 - Syst_10: 1.255699057911 - ArtUnc_1: -0.014514688993701381 - ArtUnc_2: -0.12780236151008062 - ArtUnc_3: -0.5235442773594567 - ArtUnc_4: -1.287638442124217 - ArtUnc_5: -0.4538655944921251 - ArtUnc_6: 0.008329100446392207 - ArtUnc_7: -0.12521185616662486 - ArtUnc_8: -0.317799623259827 - ArtUnc_9: 0.11845297028083965 - ArtUnc_10: -0.057682732265458676 - ArtUnc_11: 0.022348767500536215 - ArtUnc_12: -0.0007701980538221862 - ArtUnc_13: -0.03199164235093539 - ArtUnc_14: -0.028205622090771876 - ArtUnc_15: -0.03177270113071503 - ArtUnc_16: 0.020784988804878224 - ArtUnc_17: -0.0008001820493695629 - ArtUnc_18: -0.03181091485361779 - ArtUnc_19: -0.0066739195966063645 - ArtUnc_20: -0.0121635412940251 - ArtUnc_21: 0.012288804686302965 - ArtUnc_22: -0.02250587181383884 - ArtUnc_23: 0.015757407966855843 - ArtUnc_24: -0.013555943705351304 - ArtUnc_25: 0.04359919137087762 - ArtUnc_26: -0.0021163248150041906 - ArtUnc_27: 0.0005222761436674019 - ArtUnc_28: -0.004284608818706874 - ArtUnc_29: -3.172743956404395e-05 - ArtUnc_30: 0.00013999952683276272 - ArtUnc_31: -0.0022574796475091767 - ArtUnc_32: -0.0012774001282120527 - ArtUnc_33: 0.0003304546787150714 - ArtUnc_34: -0.00025043716736944784 - ArtUnc_35: 4.370095186464608e-05 - ArtUnc_36: -0.0002217432364282731 - ArtUnc_37: 2.251375602272204e-05 - ArtUnc_38: -2.45280678019382e-05 - ArtUnc_39: -7.175416555342388e-05 - ArtUnc_40: -4.865587445954289e-05 - ArtUnc_41: -8.856648373939079e-07 - ArtUnc_42: -1.2722773660917004e-05 - ArtUnc_43: 0.00011566941576986266 - ArtUnc_44: 4.899568996740354e-06 - ArtUnc_45: 1.143966347087773e-05 - ArtUnc_46: -2.9763107715887448e-05 - ArtUnc_47: 5.069681700077669e-05 - ArtUnc_48: -2.2784667664587687e-05 -- Syst_1: 0.39939909975 - Syst_2: 0.22110471925085 - Syst_3: 0.22110471925085 - Syst_4: 0.014257125 - Syst_5: 0.014257125 - Syst_6: 0.1581191652889 - Syst_7: 0.17117104275 - Syst_8: 0.313813578375 - Syst_9: 0.142642535625 - Syst_10: 0.827326706625 - ArtUnc_1: 0.0034724966142149283 - ArtUnc_2: 0.04678132526717065 - ArtUnc_3: 0.1883911775376182 - ArtUnc_4: 0.45935670449952554 - ArtUnc_5: 0.17621635934178143 - ArtUnc_6: 0.018491452119168025 - ArtUnc_7: -0.3230192662463317 - ArtUnc_8: -0.8690816176147066 - ArtUnc_9: 0.32974079335923084 - ArtUnc_10: -0.16590346938934228 - ArtUnc_11: 0.0034185438968530268 - ArtUnc_12: -0.008490681785907147 - ArtUnc_13: 0.07644616812892537 - ArtUnc_14: 0.10283710566771372 - ArtUnc_15: 0.0807508853482119 - ArtUnc_16: 0.01855667749682865 - ArtUnc_17: 0.009826536268193332 - ArtUnc_18: -0.006170189815156896 - ArtUnc_19: -0.0004725434327004493 - ArtUnc_20: -0.015789124720797628 - ArtUnc_21: 0.0066995799394110956 - ArtUnc_22: -0.021987800090712585 - ArtUnc_23: 0.013608288402957535 - ArtUnc_24: -0.014551898260117978 - ArtUnc_25: 0.03872136651992798 - ArtUnc_26: -0.0009107930747858953 - ArtUnc_27: 0.000919448411202697 - ArtUnc_28: -0.004781118113232399 - ArtUnc_29: 0.00013576076569889187 - ArtUnc_30: 7.655687054471726e-05 - ArtUnc_31: -0.002554904676342723 - ArtUnc_32: -0.0012906373130127905 - ArtUnc_33: 0.0005515850013734064 - ArtUnc_34: -0.0001437449003881566 - ArtUnc_35: 0.0001910929556610465 - ArtUnc_36: -0.00021727901835219638 - ArtUnc_37: -2.0913788778573115e-05 - ArtUnc_38: -5.591083883154726e-06 - ArtUnc_39: -3.7923361700800166e-05 - ArtUnc_40: -4.365296665273397e-05 - ArtUnc_41: -1.53847994615196e-06 - ArtUnc_42: -2.4411899671620626e-05 - ArtUnc_43: 0.00021440614144330617 - ArtUnc_44: 6.5039147850487885e-06 - ArtUnc_45: 2.0785384691411886e-05 - ArtUnc_46: -5.773118892464047e-05 - ArtUnc_47: 9.1043085923915e-05 - ArtUnc_48: -4.904811557927354e-05 -- Syst_1: 0.288899927775 - Syst_2: 0.1471736283272 - Syst_3: 0.1471736283272 - Syst_4: 0.005347325 - Syst_5: 0.005347325 - Syst_6: 0.05930470312414 - Syst_7: 0.0427999893 - Syst_8: 0.117699970575 - Syst_9: 0.053499986625 - Syst_10: 0.310299922425 - ArtUnc_1: 0.0004259391099812506 - ArtUnc_2: 0.004654069093253526 - ArtUnc_3: 0.02124330002298636 - ArtUnc_4: 0.05628877869845959 - ArtUnc_5: 0.022080293147873024 - ArtUnc_6: -0.0006542070939544269 - ArtUnc_7: 0.011613043464658033 - ArtUnc_8: 0.031943064407670876 - ArtUnc_9: -0.01251340590034158 - ArtUnc_10: 0.006483403332521256 - ArtUnc_11: -0.004394772483745253 - ArtUnc_12: -0.0016959160182155424 - ArtUnc_13: 0.025580982673900805 - ArtUnc_14: 0.035394882492889065 - ArtUnc_15: 0.030905104668212606 - ArtUnc_16: 0.10010891974076198 - ArtUnc_17: -0.1601384071305119 - ArtUnc_18: -0.46098722068729325 - ArtUnc_19: -0.08339119536455383 - ArtUnc_20: 0.05204478813378368 - ArtUnc_21: 0.05540919198579552 - ArtUnc_22: 0.021963173712921225 - ArtUnc_23: -0.014923999550403808 - ArtUnc_24: 0.037999124004675464 - ArtUnc_25: -0.02851744957514194 - ArtUnc_26: 0.0002830310783430429 - ArtUnc_27: -0.0004397531195735984 - ArtUnc_28: -0.04139181310320615 - ArtUnc_29: -0.0010296527607169142 - ArtUnc_30: 0.00042338369273455835 - ArtUnc_31: -0.028369655096162617 - ArtUnc_32: -0.01941389176192376 - ArtUnc_33: 0.004815470275340346 - ArtUnc_34: -0.0014473619953989888 - ArtUnc_35: 0.0017469836673687407 - ArtUnc_36: -0.002406003899304308 - ArtUnc_37: 8.953200178419231e-05 - ArtUnc_38: -0.00031785724577555426 - ArtUnc_39: -0.0004326081563131584 - ArtUnc_40: -0.0002016979986246332 - ArtUnc_41: 1.9920461357509544e-05 - ArtUnc_42: 3.7967396147929494e-05 - ArtUnc_43: -0.0007167497216845725 - ArtUnc_44: 1.4690664920866991e-05 - ArtUnc_45: -7.34345711398423e-05 - ArtUnc_46: 0.00029735299300679834 - ArtUnc_47: -0.0003570023652695117 - ArtUnc_48: 0.0002304283929356947 -- Syst_1: 0.04292571213 - Syst_2: 0.0474793291865 - Syst_3: 0.0474793291865 - Syst_4: 0.000884670930728 - Syst_5: 0.000884670930728 - Syst_6: 0.00613224459 - Syst_7: 0.00408816306 - Syst_8: 0.0204408153 - Syst_9: 0.01022040765 - Syst_10: 0.05927836437 - ArtUnc_1: 1.6072973377149422e-05 - ArtUnc_2: 0.00016859630009692322 - ArtUnc_3: 0.0007736790478427153 - ArtUnc_4: 0.0020666918175896677 - ArtUnc_5: 0.0007848759289137831 - ArtUnc_6: -7.41210969795551e-05 - ArtUnc_7: 0.0015450296697932867 - ArtUnc_8: 0.004399181512914827 - ArtUnc_9: -0.0017890246093135308 - ArtUnc_10: 0.0010114275351163927 - ArtUnc_11: -0.0001589141411879402 - ArtUnc_12: 3.389797559290597e-05 - ArtUnc_13: -0.00028184962055300897 - ArtUnc_14: -0.0005778020391759749 - ArtUnc_15: -0.0003416106365277075 - ArtUnc_16: -0.00014446136668835765 - ArtUnc_17: -0.001256229923996555 - ArtUnc_18: -0.0021184508364752125 - ArtUnc_19: -0.0003707666110745501 - ArtUnc_20: 0.0013170651370385232 - ArtUnc_21: 0.0001117606318761656 - ArtUnc_22: 0.0016778284681154135 - ArtUnc_23: -0.0014001884983949658 - ArtUnc_24: 0.001790889906587053 - ArtUnc_25: -0.0039061515959233095 - ArtUnc_26: 0.00016562213301449336 - ArtUnc_27: -0.0002783669051395063 - ArtUnc_28: -0.11367058579556877 - ArtUnc_29: -0.00419943484993051 - ArtUnc_30: 0.01874962098382618 - ArtUnc_31: 0.11401389273680675 - ArtUnc_32: 0.0826488149761467 - ArtUnc_33: -0.011482277935960294 - ArtUnc_34: 0.010586299817336983 - ArtUnc_35: -0.01462007960376308 - ArtUnc_36: 0.01919018044282256 - ArtUnc_37: 0.00026027483986503153 - ArtUnc_38: 0.0036858239476306822 - ArtUnc_39: 0.0002610633267957761 - ArtUnc_40: -0.0003127893030525937 - ArtUnc_41: -0.00037650469968388114 - ArtUnc_42: -0.0023333631276771702 - ArtUnc_43: 0.025655001161678764 - ArtUnc_44: 0.0003038536574449651 - ArtUnc_45: 0.00268150299156603 - ArtUnc_46: -0.00852498687147868 - ArtUnc_47: 0.012274095507887661 - ArtUnc_48: -0.006311135952551527 -- Syst_1: -0.07714186505936 - Syst_2: 0.011088169371 - Syst_3: 0.011088169371 - Syst_4: 0.00551267517681 - Syst_5: 0.00551267517681 - Syst_6: 0.04242064477684 - Syst_7: 0.01277337104494 - Syst_8: 0.04885651453759 - Syst_9: 0.012856977509895 - Syst_10: 0.07457046955738 - ArtUnc_1: 2.036607514047733e-05 - ArtUnc_2: 0.00025935494079642037 - ArtUnc_3: 0.0011774345901653302 - ArtUnc_4: 0.0031318226693726275 - ArtUnc_5: 0.0012248069735524326 - ArtUnc_6: -3.1551348539542974e-05 - ArtUnc_7: 0.0006051403102055682 - ArtUnc_8: 0.001661421811592557 - ArtUnc_9: -0.0006654397925612993 - ArtUnc_10: 0.0003646917857559587 - ArtUnc_11: -0.00021790692494851776 - ArtUnc_12: 4.70342927087341e-05 - ArtUnc_13: 0.00044166999317135955 - ArtUnc_14: 0.00030413812770844253 - ArtUnc_15: 0.0004957702116914816 - ArtUnc_16: -0.0010985463566191517 - ArtUnc_17: -0.00026952050833445584 - ArtUnc_18: 0.0012004496229866526 - ArtUnc_19: 0.0003361710624006573 - ArtUnc_20: 0.0011365094793342407 - ArtUnc_21: -0.0010063474673005217 - ArtUnc_22: 0.002392991206165965 - ArtUnc_23: -0.0027450530583568904 - ArtUnc_24: 0.0019828909825275976 - ArtUnc_25: -0.008139341052140456 - ArtUnc_26: -0.3666864806030333 - ArtUnc_27: 0.08817131805943527 - ArtUnc_28: -0.00045952968875288765 - ArtUnc_29: -0.011651762112719198 - ArtUnc_30: 0.00032219090088772025 - ArtUnc_31: -0.0006930177240980244 - ArtUnc_32: -0.0004403388399567576 - ArtUnc_33: 0.00017676356596594094 - ArtUnc_34: 0.00010714136123892458 - ArtUnc_35: 0.00016759270763415328 - ArtUnc_36: -0.00012613656856754534 - ArtUnc_37: 0.012132944904256883 - ArtUnc_38: -7.079422181963455e-05 - ArtUnc_39: 0.015992285513239977 - ArtUnc_40: 0.00029007331437591805 - ArtUnc_41: 0.00010249887884148698 - ArtUnc_42: 0.0005961600731346753 - ArtUnc_43: 0.00012941717851890853 - ArtUnc_44: 3.90459698362442e-05 - ArtUnc_45: 6.803125630506898e-05 - ArtUnc_46: 0.00011015084046932087 - ArtUnc_47: -0.00029826547818880163 - ArtUnc_48: -0.0009394599763801569 -- Syst_1: 0.01937048968454 - Syst_2: 0.012426085465665 - Syst_3: 0.012426085465665 - Syst_4: 0.000754948985495 - Syst_5: 0.000754948985495 - Syst_6: 0.01934579665249 - Syst_7: 0.01299737337559 - Syst_8: 0.03169716493834 - Syst_9: 0.008804768038425 - Syst_10: 0.05106765462288 - ArtUnc_1: -2.8169051084118765e-06 - ArtUnc_2: -5.549614503692176e-05 - ArtUnc_3: -0.0002482800742846442 - ArtUnc_4: -0.0006558947644802785 - ArtUnc_5: -0.00027861473083812195 - ArtUnc_6: -3.854827401014256e-05 - ArtUnc_7: 0.0008697997016592021 - ArtUnc_8: 0.00253056901077815 - ArtUnc_9: -0.0010300635568018998 - ArtUnc_10: 0.0005872212685685237 - ArtUnc_11: 8.554941010375947e-07 - ArtUnc_12: 3.3764367042181734e-05 - ArtUnc_13: -0.00045816263340541825 - ArtUnc_14: -0.0006238126261956759 - ArtUnc_15: -0.0005404859605657381 - ArtUnc_16: -8.388876795137e-05 - ArtUnc_17: -7.133622605354239e-05 - ArtUnc_18: -4.016992063484836e-05 - ArtUnc_19: -3.756428508653546e-05 - ArtUnc_20: 0.00010160200553335175 - ArtUnc_21: 3.483951827705637e-05 - ArtUnc_22: 0.00010190081204191144 - ArtUnc_23: 0.00022779150738262363 - ArtUnc_24: -1.1861868998156108e-05 - ArtUnc_25: 0.0006980434811299797 - ArtUnc_26: 0.12383023899411782 - ArtUnc_27: 0.2575317851151377 - ArtUnc_28: -0.002300215591915472 - ArtUnc_29: 0.03961866908491298 - ArtUnc_30: -0.001043858386809204 - ArtUnc_31: -0.00028707074330779785 - ArtUnc_32: -0.00027396199609006425 - ArtUnc_33: 7.957005696719198e-05 - ArtUnc_34: 5.5751706693541944e-05 - ArtUnc_35: 0.0001386237196687895 - ArtUnc_36: -3.4536940729654876e-05 - ArtUnc_37: 0.0038488537728757813 - ArtUnc_38: -3.963064609433974e-05 - ArtUnc_39: 0.011958890264707407 - ArtUnc_40: 0.0001952647811049512 - ArtUnc_41: 8.120833029131395e-05 - ArtUnc_42: 0.0002730786821837794 - ArtUnc_43: 0.00012570758826625138 - ArtUnc_44: 5.046206090784713e-05 - ArtUnc_45: 8.313262532505827e-05 - ArtUnc_46: 0.00014083603760796238 - ArtUnc_47: -0.00036380609729720045 - ArtUnc_48: -0.001126293292330861 -- Syst_1: -0.08655889180127 - Syst_2: 0.00706145811784 - Syst_3: 0.00706145811784 - Syst_4: 0.000872526223478 - Syst_5: 0.000872526223478 - Syst_6: 0.001162786613822 - Syst_7: 0.003719010841387 - Syst_8: 0.0120779849025 - Syst_9: 0.003354995806251 - Syst_10: 0.01945897567625 - ArtUnc_1: -8.302768366812983e-08 - ArtUnc_2: -1.9333099405552126e-06 - ArtUnc_3: -9.584856398842995e-06 - ArtUnc_4: -2.750379412135591e-05 - ArtUnc_5: -1.1820707980129302e-05 - ArtUnc_6: 5.777742365333116e-07 - ArtUnc_7: -1.3002892348806553e-05 - ArtUnc_8: -3.849614915695527e-05 - ArtUnc_9: 1.601446729960719e-05 - ArtUnc_10: -8.90428356446505e-06 - ArtUnc_11: 9.134065494268836e-06 - ArtUnc_12: 2.4357058528217713e-06 - ArtUnc_13: -6.519741400995014e-05 - ArtUnc_14: -8.625726648950059e-05 - ArtUnc_15: -8.356336877474253e-05 - ArtUnc_16: -0.00028150159435822743 - ArtUnc_17: 0.0005077040399354058 - ArtUnc_18: 0.0014652360739131826 - ArtUnc_19: 0.00028538888712579863 - ArtUnc_20: -0.00022419199655838965 - ArtUnc_21: -0.00021327878196782476 - ArtUnc_22: -0.00015287049885330772 - ArtUnc_23: 0.00018326911711079492 - ArtUnc_24: -0.000251018427805915 - ArtUnc_25: 0.00044024657169807006 - ArtUnc_26: 0.022535281970966735 - ArtUnc_27: -0.01573840312147523 - ArtUnc_28: -0.0013296233237076228 - ArtUnc_29: 0.010307702743455983 - ArtUnc_30: 1.7883199793907917e-05 - ArtUnc_31: -0.0010870136095277936 - ArtUnc_32: -0.0007623068526799233 - ArtUnc_33: 0.000575638669051083 - ArtUnc_34: 0.0006019228280414413 - ArtUnc_35: 0.0010410327546443875 - ArtUnc_36: -0.0002626707412173704 - ArtUnc_37: 0.14099317946455672 - ArtUnc_38: -0.00015418483505777401 - ArtUnc_39: -0.010727406114698315 - ArtUnc_40: -0.00011486070656493903 - ArtUnc_41: 0.00033559999166787044 - ArtUnc_42: 0.00349968567548419 - ArtUnc_43: 0.0008897249085116516 - ArtUnc_44: 0.00027183015997957644 - ArtUnc_45: 0.0005486614748057153 - ArtUnc_46: 0.0009977643216738067 - ArtUnc_47: -0.0030301782434593062 - ArtUnc_48: -0.008850997829948032 -- Syst_1: -0.06016439141569 - Syst_2: 0.004404605054656 - Syst_3: 0.004404605054656 - Syst_4: 0.00013386782534715 - Syst_5: 0.00013386782534715 - Syst_6: 0.002272948236221 - Syst_7: 0.0002670659099641 - Syst_8: 0.005553636130679 - Syst_9: 0.0015426767029665 - Syst_10: 0.008947524877205 - ArtUnc_1: 4.2347644971765274e-08 - ArtUnc_2: -9.687772990821244e-08 - ArtUnc_3: -3.3539632096817035e-07 - ArtUnc_4: -1.0308131173631709e-06 - ArtUnc_5: -4.2401128578461715e-07 - ArtUnc_6: -7.013251768645524e-08 - ArtUnc_7: -6.488878515387848e-07 - ArtUnc_8: -1.7980605524144952e-06 - ArtUnc_9: 8.267703616022232e-07 - ArtUnc_10: -4.310532042165771e-07 - ArtUnc_11: 2.7960142102268884e-07 - ArtUnc_12: -1.6488985081111665e-08 - ArtUnc_13: -1.0100173141613962e-06 - ArtUnc_14: -1.0896699503056258e-06 - ArtUnc_15: -1.1758192950444013e-06 - ArtUnc_16: 2.427149320217055e-06 - ArtUnc_17: -1.090894391267971e-06 - ArtUnc_18: -1.9974707848512857e-06 - ArtUnc_19: -1.7614989539599697e-06 - ArtUnc_20: -4.269942047352681e-06 - ArtUnc_21: 2.2348555257056135e-06 - ArtUnc_22: -9.312988081230208e-06 - ArtUnc_23: 1.2120913967942638e-05 - ArtUnc_24: -7.0874138183294705e-06 - ArtUnc_25: 3.456038631889033e-05 - ArtUnc_26: 0.00163479532494908 - ArtUnc_27: -0.0009776982795361917 - ArtUnc_28: 0.0007011235285539396 - ArtUnc_29: 0.0011304021084691783 - ArtUnc_30: -0.00024812146484604205 - ArtUnc_31: -0.0009351735561895062 - ArtUnc_32: -0.0007499428987555485 - ArtUnc_33: 5.4236790391705665e-05 - ArtUnc_34: 9.427396637722233e-05 - ArtUnc_35: 6.182381032163512e-05 - ArtUnc_36: -0.0006529216333405952 - ArtUnc_37: -0.0024730110980497235 - ArtUnc_38: 0.0002761891135230668 - ArtUnc_39: 0.0008110778335885398 - ArtUnc_40: -0.00030964230604432806 - ArtUnc_41: 0.012170578836813424 - ArtUnc_42: 0.058549440627663776 - ArtUnc_43: 0.005255897824948886 - ArtUnc_44: -0.0006258994940735205 - ArtUnc_45: 6.596544029214471e-05 - ArtUnc_46: -0.001922645466408593 - ArtUnc_47: 0.004134232984015125 - ArtUnc_48: 0.005598266959911986 + ArtUnc_1: -5.67511840e-03 + ArtUnc_2: -1.68945067e-01 + ArtUnc_3: -3.31105004e-01 + ArtUnc_4: 4.71331837e-02 + ArtUnc_5: 2.16276914e-01 + ArtUnc_6: -3.76128141e-02 + ArtUnc_7: 5.99210503e-01 + ArtUnc_8: 1.50234392e-01 + ArtUnc_9: 6.64138549e-01 + ArtUnc_10: -4.15807143e-01 + ArtUnc_11: 1.58198157e-02 + ArtUnc_12: 8.23828821e-02 + ArtUnc_13: -8.89136045e-02 + ArtUnc_14: -4.02044092e-02 + ArtUnc_15: 1.05084135e-01 + ArtUnc_16: 2.29418981e-02 + ArtUnc_17: 1.70996276e-02 + ArtUnc_18: 3.25622579e-04 + ArtUnc_19: -5.70840912e-03 + ArtUnc_20: -1.57844428e-02 + ArtUnc_21: 7.26186633e-03 + ArtUnc_22: 3.87504175e-02 + ArtUnc_23: 4.14585129e-02 + ArtUnc_24: 1.01189515e-02 + ArtUnc_25: -8.37907825e-03 + ArtUnc_26: 2.99357496e-05 + ArtUnc_27: 2.43615842e-05 + ArtUnc_28: 8.61076086e-04 + ArtUnc_29: 5.41317635e-05 + ArtUnc_30: 8.02681812e-05 + ArtUnc_31: 1.82174770e-03 + ArtUnc_32: -2.02759473e-03 + ArtUnc_33: 3.43765196e-03 + ArtUnc_34: 6.31837296e-04 + ArtUnc_35: 4.25977649e-05 + ArtUnc_36: 1.80045397e-04 + ArtUnc_37: -7.28743322e-06 + ArtUnc_38: 3.09009846e-05 + ArtUnc_39: -1.49356781e-05 + ArtUnc_40: -3.14003080e-05 + ArtUnc_41: -1.42273220e-07 + ArtUnc_42: 4.88436282e-06 + ArtUnc_43: -4.96257423e-05 + ArtUnc_44: -2.37678107e-06 + ArtUnc_45: -2.85255138e-05 + ArtUnc_46: 6.30641301e-05 + ArtUnc_47: -8.96775700e-05 + ArtUnc_48: 5.76984859e-05 +- Syst_1: 2.78249722e-01 + Syst_2: 1.47182393e-01 + Syst_3: 1.47182393e-01 + Syst_4: 1.31967671e-02 + Syst_5: 1.31967671e-02 + Syst_6: 6.35999364e-02 + Syst_7: 7.94999205e-03 + Syst_8: 2.38499762e-02 + Syst_9: 3.97499603e-02 + Syst_10: 2.30549769e-01 + ArtUnc_1: -7.90054524e-04 + ArtUnc_2: -2.14331491e-02 + ArtUnc_3: -3.92286268e-02 + ArtUnc_4: 1.03140805e-02 + ArtUnc_5: 2.62672486e-02 + ArtUnc_6: 1.43946157e-03 + ArtUnc_7: -2.22569041e-02 + ArtUnc_8: -9.06246792e-03 + ArtUnc_9: -2.17314757e-02 + ArtUnc_10: 1.40519283e-02 + ArtUnc_11: -1.69220769e-03 + ArtUnc_12: 1.31146042e-02 + ArtUnc_13: -1.39054630e-02 + ArtUnc_14: -4.97467083e-03 + ArtUnc_15: 1.99535995e-02 + ArtUnc_16: -3.66185235e-02 + ArtUnc_17: 8.51993972e-02 + ArtUnc_18: 9.71037098e-02 + ArtUnc_19: -3.21353491e-01 + ArtUnc_20: 1.09215427e-01 + ArtUnc_21: 2.93743270e-01 + ArtUnc_22: -1.67088972e-03 + ArtUnc_23: -3.42510656e-02 + ArtUnc_24: 8.61917507e-02 + ArtUnc_25: 2.06703123e-02 + ArtUnc_26: -1.26399281e-04 + ArtUnc_27: 1.12026948e-05 + ArtUnc_28: 3.29629977e-03 + ArtUnc_29: 1.72392416e-05 + ArtUnc_30: -1.09834374e-03 + ArtUnc_31: 1.30561320e-02 + ArtUnc_32: -1.80979115e-02 + ArtUnc_33: 3.08257116e-02 + ArtUnc_34: 7.85938328e-03 + ArtUnc_35: -1.30141855e-03 + ArtUnc_36: 4.60864495e-03 + ArtUnc_37: -4.74433698e-05 + ArtUnc_38: 2.25868100e-03 + ArtUnc_39: -4.55042778e-05 + ArtUnc_40: 7.71842931e-04 + ArtUnc_41: 3.13044686e-06 + ArtUnc_42: 2.60048517e-07 + ArtUnc_43: 6.58872157e-05 + ArtUnc_44: 2.96144873e-05 + ArtUnc_45: 2.20526460e-04 + ArtUnc_46: -3.77785418e-04 + ArtUnc_47: 4.20328072e-04 + ArtUnc_48: -2.78507739e-04 +- Syst_1: -7.61966508e-02 + Syst_2: 2.40036506e-02 + Syst_3: 2.40036506e-02 + Syst_4: 6.06596502e-04 + Syst_5: 6.06596502e-04 + Syst_6: 1.21197981e-03 + Syst_7: 8.56142144e-04 + Syst_8: 1.71228429e-03 + Syst_9: 4.28071072e-03 + Syst_10: 2.48281222e-02 + ArtUnc_1: -1.45378507e-05 + ArtUnc_2: -7.08266893e-04 + ArtUnc_3: -1.50969583e-03 + ArtUnc_4: 3.12800209e-04 + ArtUnc_5: 1.10544654e-03 + ArtUnc_6: 1.12627769e-04 + ArtUnc_7: -2.25455931e-03 + ArtUnc_8: -6.09310054e-04 + ArtUnc_9: -2.86983688e-03 + ArtUnc_10: 2.01705581e-03 + ArtUnc_11: -2.40797744e-04 + ArtUnc_12: 6.60891339e-04 + ArtUnc_13: -6.54568557e-04 + ArtUnc_14: -4.07706458e-04 + ArtUnc_15: 1.28666663e-03 + ArtUnc_16: -5.85740654e-04 + ArtUnc_17: 6.67397518e-04 + ArtUnc_18: 9.02477050e-04 + ArtUnc_19: -4.03773269e-03 + ArtUnc_20: 1.94624388e-03 + ArtUnc_21: 4.12242916e-03 + ArtUnc_22: -1.77443424e-03 + ArtUnc_23: -2.52708313e-03 + ArtUnc_24: 9.95022472e-04 + ArtUnc_25: 7.83687393e-04 + ArtUnc_26: -7.10104282e-06 + ArtUnc_27: 1.43184837e-05 + ArtUnc_28: 1.32873052e-02 + ArtUnc_29: 4.96137190e-04 + ArtUnc_30: -1.61201675e-03 + ArtUnc_31: -9.12072183e-03 + ArtUnc_32: -2.36846419e-02 + ArtUnc_33: 2.15607619e-02 + ArtUnc_34: -4.41346725e-02 + ArtUnc_35: 8.47587890e-02 + ArtUnc_36: -7.74571247e-02 + ArtUnc_37: -3.93608284e-04 + ArtUnc_38: -3.89074209e-02 + ArtUnc_39: 9.20128498e-05 + ArtUnc_40: -1.62988476e-02 + ArtUnc_41: -2.82286000e-05 + ArtUnc_42: 2.11038961e-04 + ArtUnc_43: -4.06398752e-03 + ArtUnc_44: -4.23813159e-04 + ArtUnc_45: -4.79234789e-03 + ArtUnc_46: 1.01334314e-02 + ArtUnc_47: -1.29274698e-02 + ArtUnc_48: 8.60445249e-03 +- Syst_1: 9.52599285e-01 + Syst_2: 2.40110115e-01 + Syst_3: 2.40110115e-01 + Syst_4: 9.85218231e-02 + Syst_5: 9.85218231e-02 + Syst_6: 1.97142168e-01 + Syst_7: 2.16499838e-01 + Syst_8: 4.76299643e-01 + Syst_9: 2.16499838e-01 + Syst_10: 1.25569906e+00 + ArtUnc_1: -1.45146890e-02 + ArtUnc_2: -1.27802362e-01 + ArtUnc_3: -5.23544277e-01 + ArtUnc_4: -1.28763844e+00 + ArtUnc_5: -4.53865594e-01 + ArtUnc_6: 8.32910045e-03 + ArtUnc_7: -1.25211856e-01 + ArtUnc_8: -3.17799623e-01 + ArtUnc_9: 1.18452970e-01 + ArtUnc_10: -5.76827323e-02 + ArtUnc_11: 2.23487675e-02 + ArtUnc_12: -7.70198054e-04 + ArtUnc_13: -3.19916424e-02 + ArtUnc_14: -2.82056221e-02 + ArtUnc_15: -3.17727011e-02 + ArtUnc_16: 2.07849888e-02 + ArtUnc_17: -8.00182049e-04 + ArtUnc_18: -3.18109149e-02 + ArtUnc_19: -6.67391960e-03 + ArtUnc_20: -1.21635413e-02 + ArtUnc_21: 1.22888047e-02 + ArtUnc_22: -2.25058718e-02 + ArtUnc_23: 1.57574080e-02 + ArtUnc_24: -1.35559437e-02 + ArtUnc_25: 4.35991914e-02 + ArtUnc_26: -2.11632482e-03 + ArtUnc_27: 5.22276144e-04 + ArtUnc_28: -4.28460882e-03 + ArtUnc_29: -3.17274396e-05 + ArtUnc_30: 1.39999527e-04 + ArtUnc_31: -2.25747965e-03 + ArtUnc_32: -1.27740013e-03 + ArtUnc_33: 3.30454679e-04 + ArtUnc_34: -2.50437167e-04 + ArtUnc_35: 4.37009519e-05 + ArtUnc_36: -2.21743236e-04 + ArtUnc_37: 2.25137560e-05 + ArtUnc_38: -2.45280678e-05 + ArtUnc_39: -7.17541656e-05 + ArtUnc_40: -4.86558745e-05 + ArtUnc_41: -8.85664837e-07 + ArtUnc_42: -1.27227737e-05 + ArtUnc_43: 1.15669416e-04 + ArtUnc_44: 4.89956900e-06 + ArtUnc_45: 1.14396635e-05 + ArtUnc_46: -2.97631077e-05 + ArtUnc_47: 5.06968170e-05 + ArtUnc_48: -2.27846677e-05 +- Syst_1: 3.99399100e-01 + Syst_2: 2.21104719e-01 + Syst_3: 2.21104719e-01 + Syst_4: 1.42571250e-02 + Syst_5: 1.42571250e-02 + Syst_6: 1.58119165e-01 + Syst_7: 1.71171043e-01 + Syst_8: 3.13813578e-01 + Syst_9: 1.42642536e-01 + Syst_10: 8.27326707e-01 + ArtUnc_1: 3.47249661e-03 + ArtUnc_2: 4.67813253e-02 + ArtUnc_3: 1.88391178e-01 + ArtUnc_4: 4.59356704e-01 + ArtUnc_5: 1.76216359e-01 + ArtUnc_6: 1.84914521e-02 + ArtUnc_7: -3.23019266e-01 + ArtUnc_8: -8.69081618e-01 + ArtUnc_9: 3.29740793e-01 + ArtUnc_10: -1.65903469e-01 + ArtUnc_11: 3.41854390e-03 + ArtUnc_12: -8.49068179e-03 + ArtUnc_13: 7.64461681e-02 + ArtUnc_14: 1.02837106e-01 + ArtUnc_15: 8.07508853e-02 + ArtUnc_16: 1.85566775e-02 + ArtUnc_17: 9.82653627e-03 + ArtUnc_18: -6.17018982e-03 + ArtUnc_19: -4.72543433e-04 + ArtUnc_20: -1.57891247e-02 + ArtUnc_21: 6.69957994e-03 + ArtUnc_22: -2.19878001e-02 + ArtUnc_23: 1.36082884e-02 + ArtUnc_24: -1.45518983e-02 + ArtUnc_25: 3.87213665e-02 + ArtUnc_26: -9.10793075e-04 + ArtUnc_27: 9.19448411e-04 + ArtUnc_28: -4.78111811e-03 + ArtUnc_29: 1.35760766e-04 + ArtUnc_30: 7.65568705e-05 + ArtUnc_31: -2.55490468e-03 + ArtUnc_32: -1.29063731e-03 + ArtUnc_33: 5.51585001e-04 + ArtUnc_34: -1.43744900e-04 + ArtUnc_35: 1.91092956e-04 + ArtUnc_36: -2.17279018e-04 + ArtUnc_37: -2.09137888e-05 + ArtUnc_38: -5.59108388e-06 + ArtUnc_39: -3.79233617e-05 + ArtUnc_40: -4.36529667e-05 + ArtUnc_41: -1.53847995e-06 + ArtUnc_42: -2.44118997e-05 + ArtUnc_43: 2.14406141e-04 + ArtUnc_44: 6.50391479e-06 + ArtUnc_45: 2.07853847e-05 + ArtUnc_46: -5.77311889e-05 + ArtUnc_47: 9.10430859e-05 + ArtUnc_48: -4.90481156e-05 +- Syst_1: 2.88899928e-01 + Syst_2: 1.47173628e-01 + Syst_3: 1.47173628e-01 + Syst_4: 5.34732500e-03 + Syst_5: 5.34732500e-03 + Syst_6: 5.93047031e-02 + Syst_7: 4.27999893e-02 + Syst_8: 1.17699971e-01 + Syst_9: 5.34999866e-02 + Syst_10: 3.10299922e-01 + ArtUnc_1: 4.25939110e-04 + ArtUnc_2: 4.65406909e-03 + ArtUnc_3: 2.12433000e-02 + ArtUnc_4: 5.62887787e-02 + ArtUnc_5: 2.20802931e-02 + ArtUnc_6: -6.54207094e-04 + ArtUnc_7: 1.16130435e-02 + ArtUnc_8: 3.19430644e-02 + ArtUnc_9: -1.25134059e-02 + ArtUnc_10: 6.48340333e-03 + ArtUnc_11: -4.39477248e-03 + ArtUnc_12: -1.69591602e-03 + ArtUnc_13: 2.55809827e-02 + ArtUnc_14: 3.53948825e-02 + ArtUnc_15: 3.09051047e-02 + ArtUnc_16: 1.00108920e-01 + ArtUnc_17: -1.60138407e-01 + ArtUnc_18: -4.60987221e-01 + ArtUnc_19: -8.33911954e-02 + ArtUnc_20: 5.20447881e-02 + ArtUnc_21: 5.54091920e-02 + ArtUnc_22: 2.19631737e-02 + ArtUnc_23: -1.49239996e-02 + ArtUnc_24: 3.79991240e-02 + ArtUnc_25: -2.85174496e-02 + ArtUnc_26: 2.83031078e-04 + ArtUnc_27: -4.39753120e-04 + ArtUnc_28: -4.13918131e-02 + ArtUnc_29: -1.02965276e-03 + ArtUnc_30: 4.23383693e-04 + ArtUnc_31: -2.83696551e-02 + ArtUnc_32: -1.94138918e-02 + ArtUnc_33: 4.81547028e-03 + ArtUnc_34: -1.44736200e-03 + ArtUnc_35: 1.74698367e-03 + ArtUnc_36: -2.40600390e-03 + ArtUnc_37: 8.95320018e-05 + ArtUnc_38: -3.17857246e-04 + ArtUnc_39: -4.32608156e-04 + ArtUnc_40: -2.01697999e-04 + ArtUnc_41: 1.99204614e-05 + ArtUnc_42: 3.79673961e-05 + ArtUnc_43: -7.16749722e-04 + ArtUnc_44: 1.46906649e-05 + ArtUnc_45: -7.34345711e-05 + ArtUnc_46: 2.97352993e-04 + ArtUnc_47: -3.57002365e-04 + ArtUnc_48: 2.30428393e-04 +- Syst_1: 4.29257121e-02 + Syst_2: 4.74793292e-02 + Syst_3: 4.74793292e-02 + Syst_4: 8.84670931e-04 + Syst_5: 8.84670931e-04 + Syst_6: 6.13224459e-03 + Syst_7: 4.08816306e-03 + Syst_8: 2.04408153e-02 + Syst_9: 1.02204077e-02 + Syst_10: 5.92783644e-02 + ArtUnc_1: 1.60729734e-05 + ArtUnc_2: 1.68596300e-04 + ArtUnc_3: 7.73679048e-04 + ArtUnc_4: 2.06669182e-03 + ArtUnc_5: 7.84875929e-04 + ArtUnc_6: -7.41210970e-05 + ArtUnc_7: 1.54502967e-03 + ArtUnc_8: 4.39918151e-03 + ArtUnc_9: -1.78902461e-03 + ArtUnc_10: 1.01142754e-03 + ArtUnc_11: -1.58914141e-04 + ArtUnc_12: 3.38979756e-05 + ArtUnc_13: -2.81849621e-04 + ArtUnc_14: -5.77802039e-04 + ArtUnc_15: -3.41610637e-04 + ArtUnc_16: -1.44461367e-04 + ArtUnc_17: -1.25622992e-03 + ArtUnc_18: -2.11845084e-03 + ArtUnc_19: -3.70766611e-04 + ArtUnc_20: 1.31706514e-03 + ArtUnc_21: 1.11760632e-04 + ArtUnc_22: 1.67782847e-03 + ArtUnc_23: -1.40018850e-03 + ArtUnc_24: 1.79088991e-03 + ArtUnc_25: -3.90615160e-03 + ArtUnc_26: 1.65622133e-04 + ArtUnc_27: -2.78366905e-04 + ArtUnc_28: -1.13670586e-01 + ArtUnc_29: -4.19943485e-03 + ArtUnc_30: 1.87496210e-02 + ArtUnc_31: 1.14013893e-01 + ArtUnc_32: 8.26488150e-02 + ArtUnc_33: -1.14822779e-02 + ArtUnc_34: 1.05862998e-02 + ArtUnc_35: -1.46200796e-02 + ArtUnc_36: 1.91901804e-02 + ArtUnc_37: 2.60274840e-04 + ArtUnc_38: 3.68582395e-03 + ArtUnc_39: 2.61063327e-04 + ArtUnc_40: -3.12789303e-04 + ArtUnc_41: -3.76504700e-04 + ArtUnc_42: -2.33336313e-03 + ArtUnc_43: 2.56550012e-02 + ArtUnc_44: 3.03853657e-04 + ArtUnc_45: 2.68150299e-03 + ArtUnc_46: -8.52498687e-03 + ArtUnc_47: 1.22740955e-02 + ArtUnc_48: -6.31113595e-03 +- Syst_1: -7.71418651e-02 + Syst_2: 1.10881694e-02 + Syst_3: 1.10881694e-02 + Syst_4: 5.51267518e-03 + Syst_5: 5.51267518e-03 + Syst_6: 4.24206448e-02 + Syst_7: 1.27733710e-02 + Syst_8: 4.88565145e-02 + Syst_9: 1.28569775e-02 + Syst_10: 7.45704696e-02 + ArtUnc_1: 2.03660751e-05 + ArtUnc_2: 2.59354941e-04 + ArtUnc_3: 1.17743459e-03 + ArtUnc_4: 3.13182267e-03 + ArtUnc_5: 1.22480697e-03 + ArtUnc_6: -3.15513485e-05 + ArtUnc_7: 6.05140310e-04 + ArtUnc_8: 1.66142181e-03 + ArtUnc_9: -6.65439793e-04 + ArtUnc_10: 3.64691786e-04 + ArtUnc_11: -2.17906925e-04 + ArtUnc_12: 4.70342927e-05 + ArtUnc_13: 4.41669993e-04 + ArtUnc_14: 3.04138128e-04 + ArtUnc_15: 4.95770212e-04 + ArtUnc_16: -1.09854636e-03 + ArtUnc_17: -2.69520508e-04 + ArtUnc_18: 1.20044962e-03 + ArtUnc_19: 3.36171062e-04 + ArtUnc_20: 1.13650948e-03 + ArtUnc_21: -1.00634747e-03 + ArtUnc_22: 2.39299121e-03 + ArtUnc_23: -2.74505306e-03 + ArtUnc_24: 1.98289098e-03 + ArtUnc_25: -8.13934105e-03 + ArtUnc_26: -3.66686481e-01 + ArtUnc_27: 8.81713181e-02 + ArtUnc_28: -4.59529689e-04 + ArtUnc_29: -1.16517621e-02 + ArtUnc_30: 3.22190901e-04 + ArtUnc_31: -6.93017724e-04 + ArtUnc_32: -4.40338840e-04 + ArtUnc_33: 1.76763566e-04 + ArtUnc_34: 1.07141361e-04 + ArtUnc_35: 1.67592708e-04 + ArtUnc_36: -1.26136569e-04 + ArtUnc_37: 1.21329449e-02 + ArtUnc_38: -7.07942218e-05 + ArtUnc_39: 1.59922855e-02 + ArtUnc_40: 2.90073314e-04 + ArtUnc_41: 1.02498879e-04 + ArtUnc_42: 5.96160073e-04 + ArtUnc_43: 1.29417179e-04 + ArtUnc_44: 3.90459698e-05 + ArtUnc_45: 6.80312563e-05 + ArtUnc_46: 1.10150840e-04 + ArtUnc_47: -2.98265478e-04 + ArtUnc_48: -9.39459976e-04 +- Syst_1: 1.93704897e-02 + Syst_2: 1.24260855e-02 + Syst_3: 1.24260855e-02 + Syst_4: 7.54948985e-04 + Syst_5: 7.54948985e-04 + Syst_6: 1.93457967e-02 + Syst_7: 1.29973734e-02 + Syst_8: 3.16971649e-02 + Syst_9: 8.80476804e-03 + Syst_10: 5.10676546e-02 + ArtUnc_1: -2.81690511e-06 + ArtUnc_2: -5.54961450e-05 + ArtUnc_3: -2.48280074e-04 + ArtUnc_4: -6.55894764e-04 + ArtUnc_5: -2.78614731e-04 + ArtUnc_6: -3.85482740e-05 + ArtUnc_7: 8.69799702e-04 + ArtUnc_8: 2.53056901e-03 + ArtUnc_9: -1.03006356e-03 + ArtUnc_10: 5.87221269e-04 + ArtUnc_11: 8.55494101e-07 + ArtUnc_12: 3.37643670e-05 + ArtUnc_13: -4.58162633e-04 + ArtUnc_14: -6.23812626e-04 + ArtUnc_15: -5.40485961e-04 + ArtUnc_16: -8.38887680e-05 + ArtUnc_17: -7.13362261e-05 + ArtUnc_18: -4.01699206e-05 + ArtUnc_19: -3.75642851e-05 + ArtUnc_20: 1.01602006e-04 + ArtUnc_21: 3.48395183e-05 + ArtUnc_22: 1.01900812e-04 + ArtUnc_23: 2.27791507e-04 + ArtUnc_24: -1.18618690e-05 + ArtUnc_25: 6.98043481e-04 + ArtUnc_26: 1.23830239e-01 + ArtUnc_27: 2.57531785e-01 + ArtUnc_28: -2.30021559e-03 + ArtUnc_29: 3.96186691e-02 + ArtUnc_30: -1.04385839e-03 + ArtUnc_31: -2.87070743e-04 + ArtUnc_32: -2.73961996e-04 + ArtUnc_33: 7.95700570e-05 + ArtUnc_34: 5.57517067e-05 + ArtUnc_35: 1.38623720e-04 + ArtUnc_36: -3.45369407e-05 + ArtUnc_37: 3.84885377e-03 + ArtUnc_38: -3.96306461e-05 + ArtUnc_39: 1.19588903e-02 + ArtUnc_40: 1.95264781e-04 + ArtUnc_41: 8.12083303e-05 + ArtUnc_42: 2.73078682e-04 + ArtUnc_43: 1.25707588e-04 + ArtUnc_44: 5.04620609e-05 + ArtUnc_45: 8.31326253e-05 + ArtUnc_46: 1.40836038e-04 + ArtUnc_47: -3.63806097e-04 + ArtUnc_48: -1.12629329e-03 +- Syst_1: -8.65588918e-02 + Syst_2: 7.06145812e-03 + Syst_3: 7.06145812e-03 + Syst_4: 8.72526223e-04 + Syst_5: 8.72526223e-04 + Syst_6: 1.16278661e-03 + Syst_7: 3.71901084e-03 + Syst_8: 1.20779849e-02 + Syst_9: 3.35499581e-03 + Syst_10: 1.94589757e-02 + ArtUnc_1: -8.30276837e-08 + ArtUnc_2: -1.93330994e-06 + ArtUnc_3: -9.58485640e-06 + ArtUnc_4: -2.75037941e-05 + ArtUnc_5: -1.18207080e-05 + ArtUnc_6: 5.77774237e-07 + ArtUnc_7: -1.30028923e-05 + ArtUnc_8: -3.84961492e-05 + ArtUnc_9: 1.60144673e-05 + ArtUnc_10: -8.90428356e-06 + ArtUnc_11: 9.13406549e-06 + ArtUnc_12: 2.43570585e-06 + ArtUnc_13: -6.51974140e-05 + ArtUnc_14: -8.62572665e-05 + ArtUnc_15: -8.35633688e-05 + ArtUnc_16: -2.81501594e-04 + ArtUnc_17: 5.07704040e-04 + ArtUnc_18: 1.46523607e-03 + ArtUnc_19: 2.85388887e-04 + ArtUnc_20: -2.24191997e-04 + ArtUnc_21: -2.13278782e-04 + ArtUnc_22: -1.52870499e-04 + ArtUnc_23: 1.83269117e-04 + ArtUnc_24: -2.51018428e-04 + ArtUnc_25: 4.40246572e-04 + ArtUnc_26: 2.25352820e-02 + ArtUnc_27: -1.57384031e-02 + ArtUnc_28: -1.32962332e-03 + ArtUnc_29: 1.03077027e-02 + ArtUnc_30: 1.78831998e-05 + ArtUnc_31: -1.08701361e-03 + ArtUnc_32: -7.62306853e-04 + ArtUnc_33: 5.75638669e-04 + ArtUnc_34: 6.01922828e-04 + ArtUnc_35: 1.04103275e-03 + ArtUnc_36: -2.62670741e-04 + ArtUnc_37: 1.40993179e-01 + ArtUnc_38: -1.54184835e-04 + ArtUnc_39: -1.07274061e-02 + ArtUnc_40: -1.14860707e-04 + ArtUnc_41: 3.35599992e-04 + ArtUnc_42: 3.49968568e-03 + ArtUnc_43: 8.89724909e-04 + ArtUnc_44: 2.71830160e-04 + ArtUnc_45: 5.48661475e-04 + ArtUnc_46: 9.97764322e-04 + ArtUnc_47: -3.03017824e-03 + ArtUnc_48: -8.85099783e-03 +- Syst_1: -6.01643914e-02 + Syst_2: 4.40460505e-03 + Syst_3: 4.40460505e-03 + Syst_4: 1.33867825e-04 + Syst_5: 1.33867825e-04 + Syst_6: 2.27294824e-03 + Syst_7: 2.67065910e-04 + Syst_8: 5.55363613e-03 + Syst_9: 1.54267670e-03 + Syst_10: 8.94752488e-03 + ArtUnc_1: 4.23476450e-08 + ArtUnc_2: -9.68777299e-08 + ArtUnc_3: -3.35396321e-07 + ArtUnc_4: -1.03081312e-06 + ArtUnc_5: -4.24011286e-07 + ArtUnc_6: -7.01325177e-08 + ArtUnc_7: -6.48887852e-07 + ArtUnc_8: -1.79806055e-06 + ArtUnc_9: 8.26770362e-07 + ArtUnc_10: -4.31053204e-07 + ArtUnc_11: 2.79601421e-07 + ArtUnc_12: -1.64889851e-08 + ArtUnc_13: -1.01001731e-06 + ArtUnc_14: -1.08966995e-06 + ArtUnc_15: -1.17581930e-06 + ArtUnc_16: 2.42714932e-06 + ArtUnc_17: -1.09089439e-06 + ArtUnc_18: -1.99747078e-06 + ArtUnc_19: -1.76149895e-06 + ArtUnc_20: -4.26994205e-06 + ArtUnc_21: 2.23485553e-06 + ArtUnc_22: -9.31298808e-06 + ArtUnc_23: 1.21209140e-05 + ArtUnc_24: -7.08741382e-06 + ArtUnc_25: 3.45603863e-05 + ArtUnc_26: 1.63479532e-03 + ArtUnc_27: -9.77698280e-04 + ArtUnc_28: 7.01123529e-04 + ArtUnc_29: 1.13040211e-03 + ArtUnc_30: -2.48121465e-04 + ArtUnc_31: -9.35173556e-04 + ArtUnc_32: -7.49942899e-04 + ArtUnc_33: 5.42367904e-05 + ArtUnc_34: 9.42739664e-05 + ArtUnc_35: 6.18238103e-05 + ArtUnc_36: -6.52921633e-04 + ArtUnc_37: -2.47301110e-03 + ArtUnc_38: 2.76189114e-04 + ArtUnc_39: 8.11077834e-04 + ArtUnc_40: -3.09642306e-04 + ArtUnc_41: 1.21705788e-02 + ArtUnc_42: 5.85494406e-02 + ArtUnc_43: 5.25589782e-03 + ArtUnc_44: -6.25899494e-04 + ArtUnc_45: 6.59654403e-05 + ArtUnc_46: -1.92264547e-03 + ArtUnc_47: 4.13423298e-03 + ArtUnc_48: 5.59826696e-03 diff --git a/nnpdf_data/nnpdf_data/commondata/H1_1JET_319GEV_351PB-1_DIF/uncertainties_norm.yaml b/nnpdf_data/nnpdf_data/commondata/H1_1JET_319GEV_351PB-1_DIF/uncertainties_norm.yaml index 84eb447463..d41c10c8a2 100644 --- a/nnpdf_data/nnpdf_data/commondata/H1_1JET_319GEV_351PB-1_DIF/uncertainties_norm.yaml +++ b/nnpdf_data/nnpdf_data/commondata/H1_1JET_319GEV_351PB-1_DIF/uncertainties_norm.yaml @@ -10,49 +10,49 @@ definitions: bins: - stat: 0.004401 sys: 0.001793 -- stat: 0.0029356 +- stat: 2.93560000e-03 sys: 0.002148 -- stat: 0.0011968 - sys: 0.0007854000000000001 -- stat: 0.0003213 - sys: 0.0002499 +- stat: 1.19680000e-03 + sys: 7.85400000e-04 +- stat: 3.21300000e-04 + sys: 2.49900000e-04 - stat: 0.005017 - sys: 0.0029409999999999996 -- stat: 0.0034603999999999998 - sys: 0.0027852 -- stat: 0.0014586 - sys: 0.0011492000000000002 -- stat: 0.0004104 - sys: 0.00017010000000000001 -- stat: 0.005700000000000001 - sys: 0.0026599999999999996 + sys: 2.94100000e-03 +- stat: 3.46040000e-03 + sys: 2.78520000e-03 +- stat: 1.45860000e-03 + sys: 1.14920000e-03 +- stat: 4.10400000e-04 + sys: 1.70100000e-04 +- stat: 5.70000000e-03 + sys: 2.66000000e-03 - stat: 0.00404 - sys: 0.0030300000000000006 -- stat: 0.0017272 - sys: 0.0009144 -- stat: 0.00048320000000000004 - sys: 0.00020160000000000002 + sys: 3.03000000e-03 +- stat: 1.72720000e-03 + sys: 9.14400000e-04 +- stat: 4.83200000e-04 + sys: 2.01600000e-04 - stat: 0.007136 sys: 0.003568 - stat: 0.005043 sys: 0.002091 -- stat: 0.0022142999999999998 - sys: 0.0014883 -- stat: 0.0006434999999999999 - sys: 0.0004368 +- stat: 2.21430000e-03 + sys: 1.48830000e-03 +- stat: 6.43500000e-04 + sys: 4.36800000e-04 - stat: 0.008194 - sys: 0.0028919999999999996 + sys: 2.89200000e-03 - stat: 0.006201 sys: 0.002703 -- stat: 0.0028608 - sys: 0.0015496000000000002 +- stat: 2.86080000e-03 + sys: 1.54960000e-03 - stat: 0.000969 - sys: 0.0004902 -- stat: 0.044079999999999994 + sys: 4.90200000e-04 +- stat: 4.40800000e-02 sys: 0.017936 - stat: 0.033252 - sys: 0.005915999999999999 + sys: 5.91600000e-03 - stat: 0.016856 - sys: 0.0123088 -- stat: 0.0070395 - sys: 0.008086399999999999 + sys: 1.23088000e-02 +- stat: 7.03950000e-03 + sys: 8.08640000e-03 diff --git a/nnpdf_data/nnpdf_data/commondata/H1_2JET_319GEV_290PB-1_DIF/data.yaml b/nnpdf_data/nnpdf_data/commondata/H1_2JET_319GEV_290PB-1_DIF/data.yaml index bd6baa4b4d..2bcfc82def 100644 --- a/nnpdf_data/nnpdf_data/commondata/H1_2JET_319GEV_290PB-1_DIF/data.yaml +++ b/nnpdf_data/nnpdf_data/commondata/H1_2JET_319GEV_290PB-1_DIF/data.yaml @@ -1,49 +1,49 @@ data_central: -- 300.8386677100331 +- 3.00838668e+02 - 185.5365 -- 39.636222064504906 -- 6.713645921613139 -- 1.1580313906679875 -- 0.20214206084082534 -- 256.86806266247845 -- 149.13035618638878 -- 31.962858874503045 -- 5.031889974964563 -- 0.8757761117291504 -- 0.058533235734612075 -- 237.9233979964179 -- 149.25564118241678 -- 36.50567687429898 -- 6.847362740474308 -- 1.1132325663941531 -- 0.12321352552545174 -- 167.71614016740705 -- 112.75547285783524 -- 26.75915698151381 -- 4.841240223786809 -- 0.8268615539886516 -- 0.12577124203665177 -- 147.12591116831436 -- 105.0856650788387 -- 26.610994657223753 -- 4.835157056895064 -- 0.8466569662510156 -- 0.17021922796824931 -- 116.19479756133823 -- 94.10972117828628 -- 26.66370967214426 -- 5.12280820026146 -- 0.8663513857534948 -- 0.12950413772236807 +- 3.96362221e+01 +- 6.71364592e+00 +- 1.15803139e+00 +- 2.02142061e-01 +- 2.56868063e+02 +- 1.49130356e+02 +- 3.19628589e+01 +- 5.03188997e+00 +- 8.75776112e-01 +- 5.85332357e-02 +- 2.37923398e+02 +- 1.49255641e+02 +- 3.65056769e+01 +- 6.84736274e+00 +- 1.11323257e+00 +- 1.23213526e-01 +- 1.67716140e+02 +- 1.12755473e+02 +- 2.67591570e+01 +- 4.84124022e+00 +- 8.26861554e-01 +- 1.25771242e-01 +- 1.47125911e+02 +- 1.05085665e+02 +- 2.66109947e+01 +- 4.83515706e+00 +- 8.46656966e-01 +- 1.70219228e-01 +- 1.16194798e+02 +- 9.41097212e+01 +- 2.66637097e+01 +- 5.12280820e+00 +- 8.66351386e-01 +- 1.29504138e-01 - 104.5356 -- 87.92461361887027 -- 25.242817732290895 -- 5.06028964063829 -- 0.9188844202824134 -- 0.10458873146366347 -- 69.94387580997083 -- 55.47500956228569 -- 17.727235527906032 -- 3.4436523820948457 -- 0.516462285941673 -- 0.10360728971715712 +- 8.79246136e+01 +- 2.52428177e+01 +- 5.06028964e+00 +- 9.18884420e-01 +- 1.04588731e-01 +- 6.99438758e+01 +- 5.54750096e+01 +- 1.77272355e+01 +- 3.44365238e+00 +- 5.16462286e-01 +- 1.03607290e-01 diff --git a/nnpdf_data/nnpdf_data/commondata/H1_2JET_319GEV_290PB-1_DIF/data_norm.yaml b/nnpdf_data/nnpdf_data/commondata/H1_2JET_319GEV_290PB-1_DIF/data_norm.yaml index 4b871b9fcd..d62cf522bd 100644 --- a/nnpdf_data/nnpdf_data/commondata/H1_2JET_319GEV_290PB-1_DIF/data_norm.yaml +++ b/nnpdf_data/nnpdf_data/commondata/H1_2JET_319GEV_290PB-1_DIF/data_norm.yaml @@ -1,49 +1,49 @@ data_central: -- 0.022225956526393757 -- 0.013631279999999999 -- 0.002923388463450865 -- 0.0004944852924163965 -- 8.511073871314873e-05 -- 1.4891509349153345e-05 -- 0.029226345732341914 -- 0.01692105037656739 -- 0.0036375951969747212 -- 0.0005711506052964789 -- 9.913179054376311e-05 -- 6.637175047154547e-06 -- 0.030498423509192078 -- 0.019048455204435884 -- 0.004676164682230587 -- 0.0008779856155300615 -- 0.00014255358412076693 -- 1.56806923872845e-05 -- 0.03473863699525548 -- 0.023337843503755184 -- 0.005547909095295187 -- 0.00100032695526217 -- 0.00017003384043947056 -- 2.59737950018694e-05 -- 0.04217174868924572 -- 0.030192693710166127 -- 0.007646043384181604 -- 0.0013933980184821864 -- 0.00024330890258531597 -- 4.8778812144531516e-05 -- 0.04196617222258683 -- 0.03387788071129395 -- 0.009606924608465461 -- 0.0018445738470452336 -- 0.00031161912905632196 -- 4.667317306387262e-05 -- 0.05044849 -- 0.042542278920549084 -- 0.0121652183888733 -- 0.002454769251126736 -- 0.0004445158481063405 -- 5.0517147368211605e-05 -- 0.05960628722984029 -- 0.04733340003268701 -- 0.015174847743622029 -- 0.0029392397471454433 -- 0.0004416238192784074 -- 8.85443233374085e-05 +- 2.22259565e-02 +- 1.36312800e-02 +- 2.92338846e-03 +- 4.94485292e-04 +- 8.51107387e-05 +- 1.48915093e-05 +- 2.92263457e-02 +- 1.69210504e-02 +- 3.63759520e-03 +- 5.71150605e-04 +- 9.91317905e-05 +- 6.63717505e-06 +- 3.04984235e-02 +- 1.90484552e-02 +- 4.67616468e-03 +- 8.77985616e-04 +- 1.42553584e-04 +- 1.56806924e-05 +- 3.47386370e-02 +- 2.33378435e-02 +- 5.54790910e-03 +- 1.00032696e-03 +- 1.70033840e-04 +- 2.59737950e-05 +- 4.21717487e-02 +- 3.01926937e-02 +- 7.64604338e-03 +- 1.39339802e-03 +- 2.43308903e-04 +- 4.87788121e-05 +- 4.19661722e-02 +- 3.38778807e-02 +- 9.60692461e-03 +- 1.84457385e-03 +- 3.11619129e-04 +- 4.66731731e-05 +- 5.04484900e-02 +- 4.25422789e-02 +- 1.21652184e-02 +- 2.45476925e-03 +- 4.44515848e-04 +- 5.05171474e-05 +- 5.96062872e-02 +- 4.73334000e-02 +- 1.51748477e-02 +- 2.93923975e-03 +- 4.41623819e-04 +- 8.85443233e-05 diff --git a/nnpdf_data/nnpdf_data/commondata/H1_2JET_319GEV_290PB-1_DIF/filter.py b/nnpdf_data/nnpdf_data/commondata/H1_2JET_319GEV_290PB-1_DIF/filter.py index c638b42a41..18a0b9422b 100644 --- a/nnpdf_data/nnpdf_data/commondata/H1_2JET_319GEV_290PB-1_DIF/filter.py +++ b/nnpdf_data/nnpdf_data/commondata/H1_2JET_319GEV_290PB-1_DIF/filter.py @@ -4,8 +4,11 @@ import yaml from nnpdf_data.filter_utils.utils import percentage_to_absolute as pta +from nnpdf_data.filter_utils.utils import prettify_float from nnpdf_data.filter_utils.utils import symmetrize_errors as se +yaml.add_representer(float, prettify_float) + def processData(): with open('metadata.yaml', 'r') as file: diff --git a/nnpdf_data/nnpdf_data/commondata/H1_2JET_319GEV_290PB-1_DIF/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/H1_2JET_319GEV_290PB-1_DIF/uncertainties.yaml index 9440cf680c..bb8a635b1d 100644 --- a/nnpdf_data/nnpdf_data/commondata/H1_2JET_319GEV_290PB-1_DIF/uncertainties.yaml +++ b/nnpdf_data/nnpdf_data/commondata/H1_2JET_319GEV_290PB-1_DIF/uncertainties.yaml @@ -446,5329 +446,5329 @@ definitions: bins: - stat: 0 Uncorr: 2.99 - RCES: 24.080231893194053 - ElEn: 2.4413858093304306 - ElTh: 2.061149077577845 - Lumi: 7.4750000000000005 + RCES: 2.40802319e+01 + ElEn: 2.44138581e+00 + ElTh: 2.06114908e+00 + Lumi: 7.47500000e+00 LArN: 1.794 StatMC: 6.279 - RadErr: 1.6445000000000003 - Model_1: 15.138024814354083 - Model_2: 15.138024814354083 - ModelRW_1: 12.98149055309135 - ModelRW_2: 12.98149055309135 - JES_1: 11.81603871708916 - JES_2: 11.81603871708916 - ArtUnc_1: 0.862390513360958 - ArtUnc_2: -0.058522334197274935 - ArtUnc_3: -0.015617481349614557 - ArtUnc_4: -0.02865956582028775 - ArtUnc_5: 0.024560404389031128 - ArtUnc_6: -0.013697542293582938 - ArtUnc_7: 0.0312667358010939 - ArtUnc_8: -8.052766469309553 - ArtUnc_9: -0.003869570549781359 - ArtUnc_10: -5.440340482204765 - ArtUnc_11: 0.5063656603501565 - ArtUnc_12: 0.13134908148404048 - ArtUnc_13: 1.5029665042315448 - ArtUnc_14: -0.02868999219755132 - ArtUnc_15: 0.1800281550271725 - ArtUnc_16: 0.01425040702897497 - ArtUnc_17: 0.04851242069982236 - ArtUnc_18: -0.2994043649614981 - ArtUnc_19: 0.07767460929125639 - ArtUnc_20: 0.2717761425707195 - ArtUnc_21: 0.047177105354672885 - ArtUnc_22: 0.03848277959299294 - ArtUnc_23: 0.014740246882677685 - ArtUnc_24: 0.0029896501309716835 - ArtUnc_25: -0.04036369541606761 - ArtUnc_26: -0.09302467152124266 - ArtUnc_27: -0.014597160954110492 - ArtUnc_28: -0.032271023414061836 - ArtUnc_29: 0.011743211789942889 - ArtUnc_30: -0.02075840896967938 - ArtUnc_31: 0.011241230788636522 - ArtUnc_32: 0.007682375996866057 - ArtUnc_33: 0.006482760235225154 - ArtUnc_34: 0.008580794784233063 - ArtUnc_35: 0.004056435036263157 - ArtUnc_36: 0.0008921238755738741 - ArtUnc_37: -0.0021935306004609617 - ArtUnc_38: 0.0009761650792590337 - ArtUnc_39: -0.0005096127087808053 - ArtUnc_40: -0.0005619835756197868 - ArtUnc_41: -0.0031631785001945928 - ArtUnc_42: -0.002833615200537926 - ArtUnc_43: 0.000737177321297061 - ArtUnc_44: 0.001308887822230703 - ArtUnc_45: -0.0012901354777218469 - ArtUnc_46: 0.0007960634160440661 - ArtUnc_47: -0.0016605377633478362 - ArtUnc_48: 0.00041322085193029644 - ArtUnc_49: 0.0007064806487292607 - ArtUnc_50: 0.0008218480678580217 - ArtUnc_51: -0.00013628995667965135 - ArtUnc_52: 7.824198600373727e-05 - ArtUnc_53: 0.0007009699714016272 - ArtUnc_54: -0.00017757524658647804 - ArtUnc_55: 9.061136987685657e-06 - ArtUnc_56: -0.00013438631943932383 - ArtUnc_57: 9.964845519297726e-06 - ArtUnc_58: -1.1228773788767014e-05 - ArtUnc_59: -1.3513642131206547e-05 - ArtUnc_60: -4.997737295236594e-06 - ArtUnc_61: 1.0751982835757547e-05 - ArtUnc_62: 6.1362719694684646e-06 - ArtUnc_63: -7.024195304640522e-06 - ArtUnc_64: 1.104379494273848e-05 - ArtUnc_65: -6.857977199225964e-06 - ArtUnc_66: 1.578230170233843e-06 - ArtUnc_67: 1.8570889589523063e-07 - ArtUnc_68: 7.241483498069554e-06 - ArtUnc_69: 9.093223014310423e-06 - ArtUnc_70: -2.2514322267953912e-07 - ArtUnc_71: 4.916213171292535e-07 - ArtUnc_72: -5.360034925647657e-07 - ArtUnc_73: 1.5427469524348488e-06 - ArtUnc_74: -2.3515148923936133e-06 - ArtUnc_75: -4.317535944850396e-07 - ArtUnc_76: 1.1272934960468206e-07 - ArtUnc_77: 7.517926745290272e-07 - ArtUnc_78: 5.095707024872422e-07 - ArtUnc_79: -7.8664914257136e-07 - ArtUnc_80: 9.434889384442472e-08 - ArtUnc_81: -1.1980382405502867e-08 - ArtUnc_82: -4.258541093895767e-10 - ArtUnc_83: -4.4121592340278306e-08 - ArtUnc_84: -2.5736692776212392e-08 - ArtUnc_85: 4.2710197772578146e-08 - ArtUnc_86: 8.348804058710194e-09 - ArtUnc_87: 1.766129369683349e-08 - ArtUnc_88: 7.80158295685783e-09 - ArtUnc_89: -5.735037683417001e-10 - ArtUnc_90: -9.147156941503087e-08 - ArtUnc_91: 2.083758651128185e-08 - ArtUnc_92: 4.8526244608792894e-09 - ArtUnc_93: -1.3073151315177993e-07 - ArtUnc_94: 8.733441907194496e-08 - ArtUnc_95: 2.3566459633314595e-08 - ArtUnc_96: -8.364543817190556e-09 + RadErr: 1.64450000e+00 + Model_1: 1.51380248e+01 + Model_2: 1.51380248e+01 + ModelRW_1: 1.29814906e+01 + ModelRW_2: 1.29814906e+01 + JES_1: 1.18160387e+01 + JES_2: 1.18160387e+01 + ArtUnc_1: 8.62390513e-01 + ArtUnc_2: -5.85223342e-02 + ArtUnc_3: -1.56174813e-02 + ArtUnc_4: -2.86595658e-02 + ArtUnc_5: 2.45604044e-02 + ArtUnc_6: -1.36975423e-02 + ArtUnc_7: 3.12667358e-02 + ArtUnc_8: -8.05276647e+00 + ArtUnc_9: -3.86957055e-03 + ArtUnc_10: -5.44034048e+00 + ArtUnc_11: 5.06365660e-01 + ArtUnc_12: 1.31349081e-01 + ArtUnc_13: 1.50296650e+00 + ArtUnc_14: -2.86899922e-02 + ArtUnc_15: 1.80028155e-01 + ArtUnc_16: 1.42504070e-02 + ArtUnc_17: 4.85124207e-02 + ArtUnc_18: -2.99404365e-01 + ArtUnc_19: 7.76746093e-02 + ArtUnc_20: 2.71776143e-01 + ArtUnc_21: 4.71771054e-02 + ArtUnc_22: 3.84827796e-02 + ArtUnc_23: 1.47402469e-02 + ArtUnc_24: 2.98965013e-03 + ArtUnc_25: -4.03636954e-02 + ArtUnc_26: -9.30246715e-02 + ArtUnc_27: -1.45971610e-02 + ArtUnc_28: -3.22710234e-02 + ArtUnc_29: 1.17432118e-02 + ArtUnc_30: -2.07584090e-02 + ArtUnc_31: 1.12412308e-02 + ArtUnc_32: 7.68237600e-03 + ArtUnc_33: 6.48276024e-03 + ArtUnc_34: 8.58079478e-03 + ArtUnc_35: 4.05643504e-03 + ArtUnc_36: 8.92123876e-04 + ArtUnc_37: -2.19353060e-03 + ArtUnc_38: 9.76165079e-04 + ArtUnc_39: -5.09612709e-04 + ArtUnc_40: -5.61983576e-04 + ArtUnc_41: -3.16317850e-03 + ArtUnc_42: -2.83361520e-03 + ArtUnc_43: 7.37177321e-04 + ArtUnc_44: 1.30888782e-03 + ArtUnc_45: -1.29013548e-03 + ArtUnc_46: 7.96063416e-04 + ArtUnc_47: -1.66053776e-03 + ArtUnc_48: 4.13220852e-04 + ArtUnc_49: 7.06480649e-04 + ArtUnc_50: 8.21848068e-04 + ArtUnc_51: -1.36289957e-04 + ArtUnc_52: 7.82419860e-05 + ArtUnc_53: 7.00969971e-04 + ArtUnc_54: -1.77575247e-04 + ArtUnc_55: 9.06113699e-06 + ArtUnc_56: -1.34386319e-04 + ArtUnc_57: 9.96484552e-06 + ArtUnc_58: -1.12287738e-05 + ArtUnc_59: -1.35136421e-05 + ArtUnc_60: -4.99773730e-06 + ArtUnc_61: 1.07519828e-05 + ArtUnc_62: 6.13627197e-06 + ArtUnc_63: -7.02419530e-06 + ArtUnc_64: 1.10437949e-05 + ArtUnc_65: -6.85797720e-06 + ArtUnc_66: 1.57823017e-06 + ArtUnc_67: 1.85708896e-07 + ArtUnc_68: 7.24148350e-06 + ArtUnc_69: 9.09322301e-06 + ArtUnc_70: -2.25143223e-07 + ArtUnc_71: 4.91621317e-07 + ArtUnc_72: -5.36003493e-07 + ArtUnc_73: 1.54274695e-06 + ArtUnc_74: -2.35151489e-06 + ArtUnc_75: -4.31753594e-07 + ArtUnc_76: 1.12729350e-07 + ArtUnc_77: 7.51792675e-07 + ArtUnc_78: 5.09570702e-07 + ArtUnc_79: -7.86649143e-07 + ArtUnc_80: 9.43488938e-08 + ArtUnc_81: -1.19803824e-08 + ArtUnc_82: -4.25854109e-10 + ArtUnc_83: -4.41215923e-08 + ArtUnc_84: -2.57366928e-08 + ArtUnc_85: 4.27101978e-08 + ArtUnc_86: 8.34880406e-09 + ArtUnc_87: 1.76612937e-08 + ArtUnc_88: 7.80158296e-09 + ArtUnc_89: -5.73503768e-10 + ArtUnc_90: -9.14715694e-08 + ArtUnc_91: 2.08375865e-08 + ArtUnc_92: 4.85262446e-09 + ArtUnc_93: -1.30731513e-07 + ArtUnc_94: 8.73344191e-08 + ArtUnc_95: 2.35664596e-08 + ArtUnc_96: -8.36454382e-09 - stat: 0 Uncorr: 1.85 - RCES: 1.008334858814273 - ElEn: 0.8811808483506663 - ElTh: 0.14210119633556928 + RCES: 1.00833486e+00 + ElEn: 8.81180848e-01 + ElTh: 1.42101196e-01 Lumi: 4.625 LArN: 1.11 StatMC: 1.85 - RadErr: 1.9610000000000003 - Model_1: 6.48841182416776 - Model_2: 6.48841182416776 - ModelRW_1: 5.141019852616794 - ModelRW_2: 5.141019852616794 - JES_1: 2.563969188582421 - JES_2: 2.563969188582421 - ArtUnc_1: 0.1320383969101628 - ArtUnc_2: -0.0018981155812127922 - ArtUnc_3: 0.030449734167063938 - ArtUnc_4: 0.016599559452785167 - ArtUnc_5: -0.007039446793516058 - ArtUnc_6: -0.0016744990704085601 - ArtUnc_7: 0.00015496188070738973 - ArtUnc_8: 0.04741118864007513 - ArtUnc_9: 0.0007186835312962168 - ArtUnc_10: -0.4305264015518117 - ArtUnc_11: -0.3402840139397071 - ArtUnc_12: 0.3989521206085828 - ArtUnc_13: 0.09101270589019123 - ArtUnc_14: -0.0454662744015132 - ArtUnc_15: 0.009692340009628061 - ArtUnc_16: 0.03319493653463854 - ArtUnc_17: 0.05060998404362843 - ArtUnc_18: -0.06042621545255102 - ArtUnc_19: 0.04212580899411449 - ArtUnc_20: 0.015698438313396287 - ArtUnc_21: -0.027948389494300365 - ArtUnc_22: 0.03784757413331094 - ArtUnc_23: 0.021509993525674447 - ArtUnc_24: -0.0004039371438018868 - ArtUnc_25: 3.2719289748556997 - ArtUnc_26: 1.3315714679588329 - ArtUnc_27: 0.3873789388962019 - ArtUnc_28: 0.6847540037957462 - ArtUnc_29: 0.020893158405177158 - ArtUnc_30: 0.24155149523280334 - ArtUnc_31: -0.05080766078860241 - ArtUnc_32: -0.08409477654661683 - ArtUnc_33: -0.056203225073985175 - ArtUnc_34: -0.08167182024114937 - ArtUnc_35: -0.08773620671064794 - ArtUnc_36: -0.037061892254628304 - ArtUnc_37: 0.0024416941282667287 - ArtUnc_38: 0.005311259237549614 - ArtUnc_39: 0.004140830387009761 - ArtUnc_40: 0.0023273358670159597 - ArtUnc_41: 0.016608369052248613 - ArtUnc_42: 0.017377037665656427 - ArtUnc_43: -0.007473878582718413 - ArtUnc_44: -0.01136699783501941 - ArtUnc_45: 0.012081466399688854 - ArtUnc_46: -0.006010521471543492 - ArtUnc_47: 0.014787560023833185 - ArtUnc_48: -0.004711128239898752 - ArtUnc_49: -0.007430677269866188 - ArtUnc_50: -0.006807979909466713 - ArtUnc_51: 0.0006050043502575601 - ArtUnc_52: -0.0001350414213422827 - ArtUnc_53: -0.0072927373415190835 - ArtUnc_54: 0.0021796124008489058 - ArtUnc_55: 0.0010621839197683008 - ArtUnc_56: 0.00038932020161372015 - ArtUnc_57: 2.8675619155647794e-06 - ArtUnc_58: -0.00011801018194304885 - ArtUnc_59: 0.00015106725253573715 - ArtUnc_60: 5.010764059745741e-05 - ArtUnc_61: -9.866999716198439e-06 - ArtUnc_62: -5.093667125678123e-05 - ArtUnc_63: 1.3994054984194227e-06 - ArtUnc_64: -7.893786420285958e-05 - ArtUnc_65: 6.916046599341139e-05 - ArtUnc_66: 4.153359855595592e-06 - ArtUnc_67: -3.7740188390941575e-06 - ArtUnc_68: -4.220146094322869e-06 - ArtUnc_69: -5.492019682323398e-06 - ArtUnc_70: -4.037667501783616e-06 - ArtUnc_71: 6.169350904763874e-06 - ArtUnc_72: -1.9239639399510934e-06 - ArtUnc_73: -2.479148957476188e-06 - ArtUnc_74: 1.4911766742091386e-05 - ArtUnc_75: 2.4181351515257655e-06 - ArtUnc_76: -4.5954891167824075e-07 - ArtUnc_77: -4.5068273257981715e-06 - ArtUnc_78: -3.171597684393666e-06 - ArtUnc_79: 7.267656447246022e-06 - ArtUnc_80: 8.86925522824323e-07 - ArtUnc_81: -3.4742103213120816e-07 - ArtUnc_82: -3.2867253404634625e-09 - ArtUnc_83: 4.799206644697428e-07 - ArtUnc_84: 4.956056692359477e-07 - ArtUnc_85: -3.0571751073164814e-07 - ArtUnc_86: -6.513106602556879e-08 - ArtUnc_87: -1.285266079731519e-07 - ArtUnc_88: -3.941215089842248e-07 - ArtUnc_89: -4.054728722557868e-07 - ArtUnc_90: -1.3450800291205652e-08 - ArtUnc_91: -7.577235197069439e-08 - ArtUnc_92: -1.9418480748555077e-08 - ArtUnc_93: 3.038985099760247e-07 - ArtUnc_94: -2.603149510967458e-07 - ArtUnc_95: 2.5716364133558877e-07 - ArtUnc_96: -1.7915995558900218e-09 + RadErr: 1.96100000e+00 + Model_1: 6.48841182e+00 + Model_2: 6.48841182e+00 + ModelRW_1: 5.14101985e+00 + ModelRW_2: 5.14101985e+00 + JES_1: 2.56396919e+00 + JES_2: 2.56396919e+00 + ArtUnc_1: 1.32038397e-01 + ArtUnc_2: -1.89811558e-03 + ArtUnc_3: 3.04497342e-02 + ArtUnc_4: 1.65995595e-02 + ArtUnc_5: -7.03944679e-03 + ArtUnc_6: -1.67449907e-03 + ArtUnc_7: 1.54961881e-04 + ArtUnc_8: 4.74111886e-02 + ArtUnc_9: 7.18683531e-04 + ArtUnc_10: -4.30526402e-01 + ArtUnc_11: -3.40284014e-01 + ArtUnc_12: 3.98952121e-01 + ArtUnc_13: 9.10127059e-02 + ArtUnc_14: -4.54662744e-02 + ArtUnc_15: 9.69234001e-03 + ArtUnc_16: 3.31949365e-02 + ArtUnc_17: 5.06099840e-02 + ArtUnc_18: -6.04262155e-02 + ArtUnc_19: 4.21258090e-02 + ArtUnc_20: 1.56984383e-02 + ArtUnc_21: -2.79483895e-02 + ArtUnc_22: 3.78475741e-02 + ArtUnc_23: 2.15099935e-02 + ArtUnc_24: -4.03937144e-04 + ArtUnc_25: 3.27192897e+00 + ArtUnc_26: 1.33157147e+00 + ArtUnc_27: 3.87378939e-01 + ArtUnc_28: 6.84754004e-01 + ArtUnc_29: 2.08931584e-02 + ArtUnc_30: 2.41551495e-01 + ArtUnc_31: -5.08076608e-02 + ArtUnc_32: -8.40947765e-02 + ArtUnc_33: -5.62032251e-02 + ArtUnc_34: -8.16718202e-02 + ArtUnc_35: -8.77362067e-02 + ArtUnc_36: -3.70618923e-02 + ArtUnc_37: 2.44169413e-03 + ArtUnc_38: 5.31125924e-03 + ArtUnc_39: 4.14083039e-03 + ArtUnc_40: 2.32733587e-03 + ArtUnc_41: 1.66083691e-02 + ArtUnc_42: 1.73770377e-02 + ArtUnc_43: -7.47387858e-03 + ArtUnc_44: -1.13669978e-02 + ArtUnc_45: 1.20814664e-02 + ArtUnc_46: -6.01052147e-03 + ArtUnc_47: 1.47875600e-02 + ArtUnc_48: -4.71112824e-03 + ArtUnc_49: -7.43067727e-03 + ArtUnc_50: -6.80797991e-03 + ArtUnc_51: 6.05004350e-04 + ArtUnc_52: -1.35041421e-04 + ArtUnc_53: -7.29273734e-03 + ArtUnc_54: 2.17961240e-03 + ArtUnc_55: 1.06218392e-03 + ArtUnc_56: 3.89320202e-04 + ArtUnc_57: 2.86756192e-06 + ArtUnc_58: -1.18010182e-04 + ArtUnc_59: 1.51067253e-04 + ArtUnc_60: 5.01076406e-05 + ArtUnc_61: -9.86699972e-06 + ArtUnc_62: -5.09366713e-05 + ArtUnc_63: 1.39940550e-06 + ArtUnc_64: -7.89378642e-05 + ArtUnc_65: 6.91604660e-05 + ArtUnc_66: 4.15335986e-06 + ArtUnc_67: -3.77401884e-06 + ArtUnc_68: -4.22014609e-06 + ArtUnc_69: -5.49201968e-06 + ArtUnc_70: -4.03766750e-06 + ArtUnc_71: 6.16935090e-06 + ArtUnc_72: -1.92396394e-06 + ArtUnc_73: -2.47914896e-06 + ArtUnc_74: 1.49117667e-05 + ArtUnc_75: 2.41813515e-06 + ArtUnc_76: -4.59548912e-07 + ArtUnc_77: -4.50682733e-06 + ArtUnc_78: -3.17159768e-06 + ArtUnc_79: 7.26765645e-06 + ArtUnc_80: 8.86925523e-07 + ArtUnc_81: -3.47421032e-07 + ArtUnc_82: -3.28672534e-09 + ArtUnc_83: 4.79920664e-07 + ArtUnc_84: 4.95605669e-07 + ArtUnc_85: -3.05717511e-07 + ArtUnc_86: -6.51310660e-08 + ArtUnc_87: -1.28526608e-07 + ArtUnc_88: -3.94121509e-07 + ArtUnc_89: -4.05472872e-07 + ArtUnc_90: -1.34508003e-08 + ArtUnc_91: -7.57723520e-08 + ArtUnc_92: -1.94184807e-08 + ArtUnc_93: 3.03898510e-07 + ArtUnc_94: -2.60314951e-07 + ArtUnc_95: 2.57163641e-07 + ArtUnc_96: -1.79159956e-09 - stat: 0 Uncorr: 0.397 - RCES: 0.2899119512455463 - ElEn: 0.10949933641351439 - ElTh: 0.10266499829542687 + RCES: 2.89911951e-01 + ElEn: 1.09499336e-01 + ElTh: 1.02664998e-01 Lumi: 0.9925 LArN: 0.2382 - StatMC: 0.42876000000000003 + StatMC: 4.28760000e-01 RadErr: 0.38112 - Model_1: 1.22955969753404 - Model_2: 1.22955969753404 - ModelRW_1: 0.9348022357964278 - ModelRW_2: 0.9348022357964278 - JES_1: 1.0800324621683832 - JES_2: 1.0800324621683832 - ArtUnc_1: 0.009828482441487745 - ArtUnc_2: -0.00460871700064456 - ArtUnc_3: -0.002367722967671026 - ArtUnc_4: -0.00029926032901598235 - ArtUnc_5: -0.00012690827336534974 - ArtUnc_6: -6.2210660451003455e-06 - ArtUnc_7: -8.451570832595379e-05 - ArtUnc_8: 0.02751057521746776 - ArtUnc_9: 1.5723655127338393e-05 - ArtUnc_10: 0.017825203774346893 - ArtUnc_11: -0.006729346020044204 - ArtUnc_12: 0.015601139436504471 - ArtUnc_13: -0.007047244784114975 - ArtUnc_14: -0.0065521735181942676 - ArtUnc_15: -0.005325434628903351 - ArtUnc_16: 0.0064917673106256015 - ArtUnc_17: -0.0034180238988290863 - ArtUnc_18: 0.0016271913888590524 - ArtUnc_19: -0.0010176831113118696 - ArtUnc_20: 0.0012412268220376775 - ArtUnc_21: 0.0013910730652472933 - ArtUnc_22: -0.0009017674683374423 - ArtUnc_23: 4.585804574036141e-05 - ArtUnc_24: -0.0001413221668135053 - ArtUnc_25: 0.048844340697331595 - ArtUnc_26: 0.04181590905252278 - ArtUnc_27: 0.32589663868765795 - ArtUnc_28: -0.046280711933589666 - ArtUnc_29: -0.030819773195066773 - ArtUnc_30: 0.14587854716562404 - ArtUnc_31: -0.0016396219494746182 - ArtUnc_32: -0.0678545120748393 - ArtUnc_33: -0.022661813340476022 - ArtUnc_34: -0.04182033033426591 - ArtUnc_35: -0.06905773771897107 - ArtUnc_36: -0.026864389685190497 - ArtUnc_37: -0.004292649218077433 - ArtUnc_38: 0.0050802906960727345 - ArtUnc_39: 0.0008362842858768569 - ArtUnc_40: 0.0003095012144619919 - ArtUnc_41: -0.7052015856251063 - ArtUnc_42: -0.6327097492563641 - ArtUnc_43: 0.12172801961898926 - ArtUnc_44: 0.22099531757298294 - ArtUnc_45: -0.23647012932139355 - ArtUnc_46: 0.08099032950666608 - ArtUnc_47: -0.20664841683345517 - ArtUnc_48: 0.038265988932915405 - ArtUnc_49: 0.09491404193287561 - ArtUnc_50: 0.09824741575171583 - ArtUnc_51: -0.004617328215157453 - ArtUnc_52: 0.0017742998422925309 - ArtUnc_53: 0.09017523379420407 - ArtUnc_54: -0.028143182158681345 - ArtUnc_55: -0.011196793347803947 - ArtUnc_56: -0.0034442880899961553 - ArtUnc_57: 0.0010036416826926242 - ArtUnc_58: -0.0028231731389436556 - ArtUnc_59: 0.0012046531993427795 - ArtUnc_60: 0.0003414476538073182 - ArtUnc_61: 2.537222981374834e-05 - ArtUnc_62: -0.00032734669173514557 - ArtUnc_63: -0.00028632491468644916 - ArtUnc_64: -0.0006345923426677774 - ArtUnc_65: 0.0005386105751243396 - ArtUnc_66: -0.0011505629179389587 - ArtUnc_67: 0.0004560945531371202 - ArtUnc_68: 0.003014846949041353 - ArtUnc_69: 0.0020738004664223268 - ArtUnc_70: -0.00037625735442800627 - ArtUnc_71: 0.0004925221551271979 - ArtUnc_72: -0.00026471775867246614 - ArtUnc_73: 0.0002693477913324866 - ArtUnc_74: -0.00026473689865880184 - ArtUnc_75: -3.595203059976877e-05 - ArtUnc_76: 1.2460882397148897e-06 - ArtUnc_77: 4.642367619193105e-05 - ArtUnc_78: 3.913418086393189e-05 - ArtUnc_79: -6.51698698504578e-05 - ArtUnc_80: 4.185286658640881e-07 - ArtUnc_81: 1.355320199362528e-06 - ArtUnc_82: -1.3444472389898236e-09 - ArtUnc_83: -1.3574624362073272e-06 - ArtUnc_84: -3.5302943668521003e-06 - ArtUnc_85: 1.2092535550324354e-06 - ArtUnc_86: -2.392580188600286e-06 - ArtUnc_87: -2.9287647151749426e-06 - ArtUnc_88: -7.154831036187616e-06 - ArtUnc_89: -4.048195228634956e-06 - ArtUnc_90: 2.553863669683389e-06 - ArtUnc_91: -6.988055593524728e-07 - ArtUnc_92: -7.503800177848302e-08 - ArtUnc_93: -1.0256192208288061e-05 - ArtUnc_94: 3.073421133961953e-06 - ArtUnc_95: -2.478932443424516e-06 - ArtUnc_96: -9.190338720973543e-08 + Model_1: 1.22955970e+00 + Model_2: 1.22955970e+00 + ModelRW_1: 9.34802236e-01 + ModelRW_2: 9.34802236e-01 + JES_1: 1.08003246e+00 + JES_2: 1.08003246e+00 + ArtUnc_1: 9.82848244e-03 + ArtUnc_2: -4.60871700e-03 + ArtUnc_3: -2.36772297e-03 + ArtUnc_4: -2.99260329e-04 + ArtUnc_5: -1.26908273e-04 + ArtUnc_6: -6.22106605e-06 + ArtUnc_7: -8.45157083e-05 + ArtUnc_8: 2.75105752e-02 + ArtUnc_9: 1.57236551e-05 + ArtUnc_10: 1.78252038e-02 + ArtUnc_11: -6.72934602e-03 + ArtUnc_12: 1.56011394e-02 + ArtUnc_13: -7.04724478e-03 + ArtUnc_14: -6.55217352e-03 + ArtUnc_15: -5.32543463e-03 + ArtUnc_16: 6.49176731e-03 + ArtUnc_17: -3.41802390e-03 + ArtUnc_18: 1.62719139e-03 + ArtUnc_19: -1.01768311e-03 + ArtUnc_20: 1.24122682e-03 + ArtUnc_21: 1.39107307e-03 + ArtUnc_22: -9.01767468e-04 + ArtUnc_23: 4.58580457e-05 + ArtUnc_24: -1.41322167e-04 + ArtUnc_25: 4.88443407e-02 + ArtUnc_26: 4.18159091e-02 + ArtUnc_27: 3.25896639e-01 + ArtUnc_28: -4.62807119e-02 + ArtUnc_29: -3.08197732e-02 + ArtUnc_30: 1.45878547e-01 + ArtUnc_31: -1.63962195e-03 + ArtUnc_32: -6.78545121e-02 + ArtUnc_33: -2.26618133e-02 + ArtUnc_34: -4.18203303e-02 + ArtUnc_35: -6.90577377e-02 + ArtUnc_36: -2.68643897e-02 + ArtUnc_37: -4.29264922e-03 + ArtUnc_38: 5.08029070e-03 + ArtUnc_39: 8.36284286e-04 + ArtUnc_40: 3.09501214e-04 + ArtUnc_41: -7.05201586e-01 + ArtUnc_42: -6.32709749e-01 + ArtUnc_43: 1.21728020e-01 + ArtUnc_44: 2.20995318e-01 + ArtUnc_45: -2.36470129e-01 + ArtUnc_46: 8.09903295e-02 + ArtUnc_47: -2.06648417e-01 + ArtUnc_48: 3.82659889e-02 + ArtUnc_49: 9.49140419e-02 + ArtUnc_50: 9.82474158e-02 + ArtUnc_51: -4.61732822e-03 + ArtUnc_52: 1.77429984e-03 + ArtUnc_53: 9.01752338e-02 + ArtUnc_54: -2.81431822e-02 + ArtUnc_55: -1.11967933e-02 + ArtUnc_56: -3.44428809e-03 + ArtUnc_57: 1.00364168e-03 + ArtUnc_58: -2.82317314e-03 + ArtUnc_59: 1.20465320e-03 + ArtUnc_60: 3.41447654e-04 + ArtUnc_61: 2.53722298e-05 + ArtUnc_62: -3.27346692e-04 + ArtUnc_63: -2.86324915e-04 + ArtUnc_64: -6.34592343e-04 + ArtUnc_65: 5.38610575e-04 + ArtUnc_66: -1.15056292e-03 + ArtUnc_67: 4.56094553e-04 + ArtUnc_68: 3.01484695e-03 + ArtUnc_69: 2.07380047e-03 + ArtUnc_70: -3.76257354e-04 + ArtUnc_71: 4.92522155e-04 + ArtUnc_72: -2.64717759e-04 + ArtUnc_73: 2.69347791e-04 + ArtUnc_74: -2.64736899e-04 + ArtUnc_75: -3.59520306e-05 + ArtUnc_76: 1.24608824e-06 + ArtUnc_77: 4.64236762e-05 + ArtUnc_78: 3.91341809e-05 + ArtUnc_79: -6.51698699e-05 + ArtUnc_80: 4.18528666e-07 + ArtUnc_81: 1.35532020e-06 + ArtUnc_82: -1.34444724e-09 + ArtUnc_83: -1.35746244e-06 + ArtUnc_84: -3.53029437e-06 + ArtUnc_85: 1.20925356e-06 + ArtUnc_86: -2.39258019e-06 + ArtUnc_87: -2.92876472e-06 + ArtUnc_88: -7.15483104e-06 + ArtUnc_89: -4.04819523e-06 + ArtUnc_90: 2.55386367e-06 + ArtUnc_91: -6.98805559e-07 + ArtUnc_92: -7.50380018e-08 + ArtUnc_93: -1.02561922e-05 + ArtUnc_94: 3.07342113e-06 + ArtUnc_95: -2.47893244e-06 + ArtUnc_96: -9.19033872e-08 - stat: 0 Uncorr: 0.0665 - RCES: 0.030949302900065454 - ElEn: 0.010530333268705222 - ElTh: 0.023360343533432894 + RCES: 3.09493029e-02 + ElEn: 1.05303333e-02 + ElTh: 2.33603435e-02 Lumi: 0.16625 - LArN: 0.039900000000000005 + LArN: 3.99000000e-02 StatMC: 0.141645 - RadErr: 0.08778000000000001 - Model_1: 0.10062836603065758 - Model_2: 0.10062836603065758 - ModelRW_1: 0.047963052967883515 - ModelRW_2: 0.047963052967883515 - JES_1: 0.22174833578856912 - JES_2: 0.22174833578856912 - ArtUnc_1: -6.164644459496338e-08 - ArtUnc_2: 3.922489697003599e-06 - ArtUnc_3: 3.676532891100279e-06 - ArtUnc_4: 5.564873447651579e-07 - ArtUnc_5: 6.59743217294973e-07 - ArtUnc_6: 4.992344983248174e-07 - ArtUnc_7: -1.1475159678064252e-07 - ArtUnc_8: -9.852689490555703e-05 - ArtUnc_9: -4.407965694973057e-07 - ArtUnc_10: 0.0001792344528930398 - ArtUnc_11: 7.616657232721964e-05 - ArtUnc_12: -4.4728975211666266e-05 - ArtUnc_13: -4.0797786142070816e-05 - ArtUnc_14: 1.1653214759857445e-05 - ArtUnc_15: 2.9468682734613832e-05 - ArtUnc_16: -4.060088063743114e-05 - ArtUnc_17: 4.8986111224387076e-05 - ArtUnc_18: -2.500089489249813e-05 - ArtUnc_19: 1.8892070928952376e-05 - ArtUnc_20: -3.2089415329472654e-05 - ArtUnc_21: -3.1833271314447314e-05 - ArtUnc_22: 1.9025728150568153e-05 - ArtUnc_23: 7.026400508713268e-06 - ArtUnc_24: -5.427374187542625e-07 - ArtUnc_25: 0.00180497943837816 - ArtUnc_26: -0.0011801587967399964 - ArtUnc_27: -0.009578494181615448 - ArtUnc_28: 0.0008501682735662387 - ArtUnc_29: 0.0009006503708527966 - ArtUnc_30: -0.004665811728323744 - ArtUnc_31: 0.00010043484313485591 - ArtUnc_32: 0.002013123413600144 - ArtUnc_33: 0.0006497633601117199 - ArtUnc_34: 0.0008514052295296975 - ArtUnc_35: 0.001151055185015836 - ArtUnc_36: -5.32719746780574e-05 - ArtUnc_37: -0.00018763487850387555 - ArtUnc_38: 0.000374601437531586 - ArtUnc_39: 0.00020843676093705043 - ArtUnc_40: 3.0350509533418895e-05 - ArtUnc_41: 0.10266260140158713 - ArtUnc_42: -0.09840882032617902 - ArtUnc_43: -0.0687136256878946 - ArtUnc_44: -0.009317374694874054 - ArtUnc_45: -0.03518183522111571 - ArtUnc_46: -0.029312409153198906 - ArtUnc_47: 0.013643854055219597 - ArtUnc_48: -0.03382659436727794 - ArtUnc_49: 0.004633542472207272 - ArtUnc_50: 0.02025841501175562 - ArtUnc_51: -0.0023840751346399375 - ArtUnc_52: 0.004771693908960994 - ArtUnc_53: 0.022523688368749763 - ArtUnc_54: -0.009567457581226015 - ArtUnc_55: -0.009843605589854792 - ArtUnc_56: 0.001517061341357972 - ArtUnc_57: 0.06258888615097814 - ArtUnc_58: -0.26121858121934405 - ArtUnc_59: 0.10808008735278782 - ArtUnc_60: 0.023049073521630416 - ArtUnc_61: -0.14287717897482147 - ArtUnc_62: 0.04647436774649283 - ArtUnc_63: 0.05445480327220324 - ArtUnc_64: 0.020264268067555387 - ArtUnc_65: -0.002083777069281772 - ArtUnc_66: 0.06705184198137516 - ArtUnc_67: -0.021510300671449198 - ArtUnc_68: -0.08355834520654506 - ArtUnc_69: -0.04248293594777888 - ArtUnc_70: 0.0015854931928314551 - ArtUnc_71: -0.009286362438022215 - ArtUnc_72: 0.005984455381454388 - ArtUnc_73: 0.0016273501516143546 - ArtUnc_74: -0.001251898970055017 - ArtUnc_75: -5.0258160043893535e-05 - ArtUnc_76: -5.509821488616488e-05 - ArtUnc_77: -0.0001441671182925708 - ArtUnc_78: -0.00010278516747378758 - ArtUnc_79: 0.0006061054586888791 - ArtUnc_80: -6.34313564224788e-05 - ArtUnc_81: 7.291486148520376e-05 - ArtUnc_82: 3.946880946781465e-07 - ArtUnc_83: 0.0001346940923443161 - ArtUnc_84: -0.00010207049142693918 - ArtUnc_85: -0.00010050144195659215 - ArtUnc_86: 0.0001167991316420489 - ArtUnc_87: 7.445854981989877e-05 - ArtUnc_88: -0.00020777512486746868 - ArtUnc_89: -0.00011443435620054819 - ArtUnc_90: 3.887377084194982e-05 - ArtUnc_91: 2.3285955195096784e-05 - ArtUnc_92: 4.009384033282361e-06 - ArtUnc_93: -0.0002676195551706283 - ArtUnc_94: 8.669785835343736e-05 - ArtUnc_95: 8.024371620577143e-06 - ArtUnc_96: -2.1333954408291494e-05 + RadErr: 8.77800000e-02 + Model_1: 1.00628366e-01 + Model_2: 1.00628366e-01 + ModelRW_1: 4.79630530e-02 + ModelRW_2: 4.79630530e-02 + JES_1: 2.21748336e-01 + JES_2: 2.21748336e-01 + ArtUnc_1: -6.16464446e-08 + ArtUnc_2: 3.92248970e-06 + ArtUnc_3: 3.67653289e-06 + ArtUnc_4: 5.56487345e-07 + ArtUnc_5: 6.59743217e-07 + ArtUnc_6: 4.99234498e-07 + ArtUnc_7: -1.14751597e-07 + ArtUnc_8: -9.85268949e-05 + ArtUnc_9: -4.40796569e-07 + ArtUnc_10: 1.79234453e-04 + ArtUnc_11: 7.61665723e-05 + ArtUnc_12: -4.47289752e-05 + ArtUnc_13: -4.07977861e-05 + ArtUnc_14: 1.16532148e-05 + ArtUnc_15: 2.94686827e-05 + ArtUnc_16: -4.06008806e-05 + ArtUnc_17: 4.89861112e-05 + ArtUnc_18: -2.50008949e-05 + ArtUnc_19: 1.88920709e-05 + ArtUnc_20: -3.20894153e-05 + ArtUnc_21: -3.18332713e-05 + ArtUnc_22: 1.90257282e-05 + ArtUnc_23: 7.02640051e-06 + ArtUnc_24: -5.42737419e-07 + ArtUnc_25: 1.80497944e-03 + ArtUnc_26: -1.18015880e-03 + ArtUnc_27: -9.57849418e-03 + ArtUnc_28: 8.50168274e-04 + ArtUnc_29: 9.00650371e-04 + ArtUnc_30: -4.66581173e-03 + ArtUnc_31: 1.00434843e-04 + ArtUnc_32: 2.01312341e-03 + ArtUnc_33: 6.49763360e-04 + ArtUnc_34: 8.51405230e-04 + ArtUnc_35: 1.15105519e-03 + ArtUnc_36: -5.32719747e-05 + ArtUnc_37: -1.87634879e-04 + ArtUnc_38: 3.74601438e-04 + ArtUnc_39: 2.08436761e-04 + ArtUnc_40: 3.03505095e-05 + ArtUnc_41: 1.02662601e-01 + ArtUnc_42: -9.84088203e-02 + ArtUnc_43: -6.87136257e-02 + ArtUnc_44: -9.31737469e-03 + ArtUnc_45: -3.51818352e-02 + ArtUnc_46: -2.93124092e-02 + ArtUnc_47: 1.36438541e-02 + ArtUnc_48: -3.38265944e-02 + ArtUnc_49: 4.63354247e-03 + ArtUnc_50: 2.02584150e-02 + ArtUnc_51: -2.38407513e-03 + ArtUnc_52: 4.77169391e-03 + ArtUnc_53: 2.25236884e-02 + ArtUnc_54: -9.56745758e-03 + ArtUnc_55: -9.84360559e-03 + ArtUnc_56: 1.51706134e-03 + ArtUnc_57: 6.25888862e-02 + ArtUnc_58: -2.61218581e-01 + ArtUnc_59: 1.08080087e-01 + ArtUnc_60: 2.30490735e-02 + ArtUnc_61: -1.42877179e-01 + ArtUnc_62: 4.64743677e-02 + ArtUnc_63: 5.44548033e-02 + ArtUnc_64: 2.02642681e-02 + ArtUnc_65: -2.08377707e-03 + ArtUnc_66: 6.70518420e-02 + ArtUnc_67: -2.15103007e-02 + ArtUnc_68: -8.35583452e-02 + ArtUnc_69: -4.24829359e-02 + ArtUnc_70: 1.58549319e-03 + ArtUnc_71: -9.28636244e-03 + ArtUnc_72: 5.98445538e-03 + ArtUnc_73: 1.62735015e-03 + ArtUnc_74: -1.25189897e-03 + ArtUnc_75: -5.02581600e-05 + ArtUnc_76: -5.50982149e-05 + ArtUnc_77: -1.44167118e-04 + ArtUnc_78: -1.02785167e-04 + ArtUnc_79: 6.06105459e-04 + ArtUnc_80: -6.34313564e-05 + ArtUnc_81: 7.29148615e-05 + ArtUnc_82: 3.94688095e-07 + ArtUnc_83: 1.34694092e-04 + ArtUnc_84: -1.02070491e-04 + ArtUnc_85: -1.00501442e-04 + ArtUnc_86: 1.16799132e-04 + ArtUnc_87: 7.44585498e-05 + ArtUnc_88: -2.07775125e-04 + ArtUnc_89: -1.14434356e-04 + ArtUnc_90: 3.88737708e-05 + ArtUnc_91: 2.32859552e-05 + ArtUnc_92: 4.00938403e-06 + ArtUnc_93: -2.67619555e-04 + ArtUnc_94: 8.66978584e-05 + ArtUnc_95: 8.02437162e-06 + ArtUnc_96: -2.13339544e-05 - stat: 0 - Uncorr: 0.011399999999999999 - RCES: 0.021150840621592323 - ElEn: 0.0025305689083682348 - ElTh: 0.008924824031878723 - Lumi: 0.028499999999999998 + Uncorr: 1.14000000e-02 + RCES: 2.11508406e-02 + ElEn: 2.53056891e-03 + ElTh: 8.92482403e-03 + Lumi: 2.85000000e-02 LArN: 0.00684 StatMC: 0.05643 RadErr: 0.021432 - Model_1: 0.03925715427791475 - Model_2: 0.03925715427791475 - ModelRW_1: 0.01716996686077174 - ModelRW_2: 0.01716996686077174 - JES_1: 0.026350373156750546 - JES_2: 0.026350373156750546 - ArtUnc_1: -2.8171268199507716e-08 - ArtUnc_2: 4.468404998851395e-07 - ArtUnc_3: 6.065669381628866e-07 - ArtUnc_4: 2.2074680006442324e-07 - ArtUnc_5: -2.7226297566834386e-08 - ArtUnc_6: 1.0502030776599082e-08 - ArtUnc_7: 6.247091281933477e-09 - ArtUnc_8: -1.3352960960347073e-05 - ArtUnc_9: -5.195880523141805e-08 - ArtUnc_10: 2.1743112544614577e-05 - ArtUnc_11: 1.4384283433486833e-05 - ArtUnc_12: -6.488154730178476e-06 - ArtUnc_13: -1.2077849621583853e-05 - ArtUnc_14: -9.85196993995112e-07 - ArtUnc_15: -5.508344773231818e-06 - ArtUnc_16: -8.576868897751414e-07 - ArtUnc_17: 1.703642990227518e-06 - ArtUnc_18: 2.2576529075168028e-07 - ArtUnc_19: 1.2942610814684423e-06 - ArtUnc_20: -5.002398679556529e-06 - ArtUnc_21: -3.8253376283432924e-06 - ArtUnc_22: 1.7604760363566307e-06 - ArtUnc_23: 6.148453534215448e-07 - ArtUnc_24: -8.64776660808692e-08 - ArtUnc_25: 0.00021897760157158004 - ArtUnc_26: -0.00010417696531048306 - ArtUnc_27: -0.0012450843536182764 - ArtUnc_28: 0.0001734897536596235 - ArtUnc_29: 0.00015219103957132238 - ArtUnc_30: -0.0007465051590978547 - ArtUnc_31: 2.0704047749812754e-05 - ArtUnc_32: 0.0004343764298588992 - ArtUnc_33: 0.0001240490801374033 - ArtUnc_34: 0.0002862893515864769 - ArtUnc_35: 0.000496359061452056 - ArtUnc_36: 0.00020282456223106611 - ArtUnc_37: 3.709434707071476e-05 - ArtUnc_38: -4.1061827783918016e-05 - ArtUnc_39: -6.799893174198059e-06 - ArtUnc_40: -1.495482406591319e-06 - ArtUnc_41: 0.0008081930040474229 - ArtUnc_42: 0.0021086839281373873 - ArtUnc_43: 0.00035821304071842616 - ArtUnc_44: -0.0005399654934635183 - ArtUnc_45: 0.001316493409075148 - ArtUnc_46: 0.0002010143782132027 - ArtUnc_47: 0.0006350875907164479 - ArtUnc_48: 0.0004759382595654312 - ArtUnc_49: -0.0006023760092153574 - ArtUnc_50: -0.0009495179427241272 - ArtUnc_51: 6.923725304565707e-05 - ArtUnc_52: -7.658225400022983e-05 - ArtUnc_53: -0.0009883270985561877 - ArtUnc_54: 0.00035012232252784885 - ArtUnc_55: 0.00023812194477975467 - ArtUnc_56: -4.123660112127637e-06 - ArtUnc_57: -0.02066127195479415 - ArtUnc_58: 0.030126179151983706 - ArtUnc_59: 0.046329830103050265 - ArtUnc_60: 0.01702587416560102 - ArtUnc_61: -0.008563593972697963 - ArtUnc_62: -0.012710627449860143 - ArtUnc_63: 0.004931348879743005 - ArtUnc_64: -0.019511390532134486 - ArtUnc_65: 0.01837312552201359 - ArtUnc_66: 0.006955319069816964 - ArtUnc_67: -0.001832830663475033 - ArtUnc_68: -0.00026029931124660403 - ArtUnc_69: 0.000548424930784027 - ArtUnc_70: -0.00014018403238890204 - ArtUnc_71: 0.0007404022609201388 - ArtUnc_72: -0.0002691231477139737 - ArtUnc_73: 0.07358766616309388 - ArtUnc_74: -0.0893527526264328 - ArtUnc_75: -0.012055679340105704 - ArtUnc_76: -0.0027011264050323686 - ArtUnc_77: 0.021387610532927363 - ArtUnc_78: 0.013447794794430668 - ArtUnc_79: -0.04306806542957896 - ArtUnc_80: 0.0002503528763656325 - ArtUnc_81: -0.0004905800793986709 - ArtUnc_82: -2.433948835170254e-06 - ArtUnc_83: 0.00034942425994394585 - ArtUnc_84: 0.0003703550434099853 - ArtUnc_85: -0.00018102905776399447 - ArtUnc_86: -0.00014389325348863863 - ArtUnc_87: -0.0003998668211764174 - ArtUnc_88: 0.00260042890848475 - ArtUnc_89: -0.0023811496247879713 - ArtUnc_90: -0.0006337108544291929 - ArtUnc_91: -0.000159910268279095 - ArtUnc_92: -3.0413386783324703e-05 - ArtUnc_93: 0.004616274227591099 - ArtUnc_94: 0.0008602099782936573 - ArtUnc_95: 0.0007644310356287082 - ArtUnc_96: -1.4366715556144155e-06 + Model_1: 3.92571543e-02 + Model_2: 3.92571543e-02 + ModelRW_1: 1.71699669e-02 + ModelRW_2: 1.71699669e-02 + JES_1: 2.63503732e-02 + JES_2: 2.63503732e-02 + ArtUnc_1: -2.81712682e-08 + ArtUnc_2: 4.46840500e-07 + ArtUnc_3: 6.06566938e-07 + ArtUnc_4: 2.20746800e-07 + ArtUnc_5: -2.72262976e-08 + ArtUnc_6: 1.05020308e-08 + ArtUnc_7: 6.24709128e-09 + ArtUnc_8: -1.33529610e-05 + ArtUnc_9: -5.19588052e-08 + ArtUnc_10: 2.17431125e-05 + ArtUnc_11: 1.43842834e-05 + ArtUnc_12: -6.48815473e-06 + ArtUnc_13: -1.20778496e-05 + ArtUnc_14: -9.85196994e-07 + ArtUnc_15: -5.50834477e-06 + ArtUnc_16: -8.57686890e-07 + ArtUnc_17: 1.70364299e-06 + ArtUnc_18: 2.25765291e-07 + ArtUnc_19: 1.29426108e-06 + ArtUnc_20: -5.00239868e-06 + ArtUnc_21: -3.82533763e-06 + ArtUnc_22: 1.76047604e-06 + ArtUnc_23: 6.14845353e-07 + ArtUnc_24: -8.64776661e-08 + ArtUnc_25: 2.18977602e-04 + ArtUnc_26: -1.04176965e-04 + ArtUnc_27: -1.24508435e-03 + ArtUnc_28: 1.73489754e-04 + ArtUnc_29: 1.52191040e-04 + ArtUnc_30: -7.46505159e-04 + ArtUnc_31: 2.07040477e-05 + ArtUnc_32: 4.34376430e-04 + ArtUnc_33: 1.24049080e-04 + ArtUnc_34: 2.86289352e-04 + ArtUnc_35: 4.96359061e-04 + ArtUnc_36: 2.02824562e-04 + ArtUnc_37: 3.70943471e-05 + ArtUnc_38: -4.10618278e-05 + ArtUnc_39: -6.79989317e-06 + ArtUnc_40: -1.49548241e-06 + ArtUnc_41: 8.08193004e-04 + ArtUnc_42: 2.10868393e-03 + ArtUnc_43: 3.58213041e-04 + ArtUnc_44: -5.39965493e-04 + ArtUnc_45: 1.31649341e-03 + ArtUnc_46: 2.01014378e-04 + ArtUnc_47: 6.35087591e-04 + ArtUnc_48: 4.75938260e-04 + ArtUnc_49: -6.02376009e-04 + ArtUnc_50: -9.49517943e-04 + ArtUnc_51: 6.92372530e-05 + ArtUnc_52: -7.65822540e-05 + ArtUnc_53: -9.88327099e-04 + ArtUnc_54: 3.50122323e-04 + ArtUnc_55: 2.38121945e-04 + ArtUnc_56: -4.12366011e-06 + ArtUnc_57: -2.06612720e-02 + ArtUnc_58: 3.01261792e-02 + ArtUnc_59: 4.63298301e-02 + ArtUnc_60: 1.70258742e-02 + ArtUnc_61: -8.56359397e-03 + ArtUnc_62: -1.27106274e-02 + ArtUnc_63: 4.93134888e-03 + ArtUnc_64: -1.95113905e-02 + ArtUnc_65: 1.83731255e-02 + ArtUnc_66: 6.95531907e-03 + ArtUnc_67: -1.83283066e-03 + ArtUnc_68: -2.60299311e-04 + ArtUnc_69: 5.48424931e-04 + ArtUnc_70: -1.40184032e-04 + ArtUnc_71: 7.40402261e-04 + ArtUnc_72: -2.69123148e-04 + ArtUnc_73: 7.35876662e-02 + ArtUnc_74: -8.93527526e-02 + ArtUnc_75: -1.20556793e-02 + ArtUnc_76: -2.70112641e-03 + ArtUnc_77: 2.13876105e-02 + ArtUnc_78: 1.34477948e-02 + ArtUnc_79: -4.30680654e-02 + ArtUnc_80: 2.50352876e-04 + ArtUnc_81: -4.90580079e-04 + ArtUnc_82: -2.43394884e-06 + ArtUnc_83: 3.49424260e-04 + ArtUnc_84: 3.70355043e-04 + ArtUnc_85: -1.81029058e-04 + ArtUnc_86: -1.43893253e-04 + ArtUnc_87: -3.99866821e-04 + ArtUnc_88: 2.60042891e-03 + ArtUnc_89: -2.38114962e-03 + ArtUnc_90: -6.33710854e-04 + ArtUnc_91: -1.59910268e-04 + ArtUnc_92: -3.04133868e-05 + ArtUnc_93: 4.61627423e-03 + ArtUnc_94: 8.60209978e-04 + ArtUnc_95: 7.64431036e-04 + ArtUnc_96: -1.43667156e-06 - stat: 0 Uncorr: 0.00214 - RCES: 0.0027765623781935817 - ElEn: 0.0017939021489479297 - ElTh: 0.003006281109610344 - Lumi: 0.005350000000000001 + RCES: 2.77656238e-03 + ElEn: 1.79390215e-03 + ElTh: 3.00628111e-03 + Lumi: 5.35000000e-03 LArN: 0.001284 - StatMC: 0.020094600000000004 - RadErr: 0.0078966 - Model_1: 0.01802231337481401 - Model_2: 0.01802231337481401 - ModelRW_1: 0.016055142309553034 - ModelRW_2: 0.016055142309553034 - JES_1: 0.01204927375321849 - JES_2: 0.01204927375321849 - ArtUnc_1: 6.041525253143837e-10 - ArtUnc_2: -7.457087380483398e-10 - ArtUnc_3: -1.4082834307497503e-10 - ArtUnc_4: 5.259751980797566e-10 - ArtUnc_5: -6.923695139325593e-10 - ArtUnc_6: -3.3208895333728377e-10 - ArtUnc_7: -8.073137240863234e-12 - ArtUnc_8: 1.2230927873466213e-07 - ArtUnc_9: 5.113647670230508e-10 - ArtUnc_10: -2.244693506634476e-07 - ArtUnc_11: -1.432606521286891e-07 - ArtUnc_12: 1.1530260854438604e-08 - ArtUnc_13: 1.117473288031136e-07 - ArtUnc_14: 2.455820714133376e-08 - ArtUnc_15: 8.883175739142325e-10 - ArtUnc_16: 3.64674416477968e-08 - ArtUnc_17: -8.23673209728863e-08 - ArtUnc_18: 5.197226792066097e-08 - ArtUnc_19: -3.841247467568004e-08 - ArtUnc_20: 6.425356531113657e-08 - ArtUnc_21: 6.155293697544512e-08 - ArtUnc_22: -2.9516761746782553e-08 - ArtUnc_23: -5.562900001094921e-09 - ArtUnc_24: 7.151556918564961e-10 - ArtUnc_25: -1.6089317487759996e-06 - ArtUnc_26: 1.8646694530904163e-06 - ArtUnc_27: 1.1274858886782353e-05 - ArtUnc_28: -6.938518411540835e-07 - ArtUnc_29: -4.555944122477703e-07 - ArtUnc_30: 1.9617264051350774e-06 - ArtUnc_31: 2.1287085831880707e-08 - ArtUnc_32: 4.881844799069134e-07 - ArtUnc_33: 2.179347849928199e-08 - ArtUnc_34: 7.364259583162062e-07 - ArtUnc_35: 1.4923928499667925e-06 - ArtUnc_36: 7.430948147728629e-07 - ArtUnc_37: 1.8178644102041127e-07 - ArtUnc_38: -2.3100931026616919e-07 - ArtUnc_39: -2.047416229297779e-07 - ArtUnc_40: -7.4238034992303e-08 - ArtUnc_41: 0.0005268887524987921 - ArtUnc_42: -0.0005714659827220986 - ArtUnc_43: -0.00027022218346638225 - ArtUnc_44: 1.6398072189473574e-05 - ArtUnc_45: -0.00017043659189344853 - ArtUnc_46: -4.997859356279252e-05 - ArtUnc_47: -3.9402537799913584e-05 - ArtUnc_48: -3.0242333060468175e-05 - ArtUnc_49: 2.5495449976636246e-05 - ArtUnc_50: 6.691827822136524e-06 - ArtUnc_51: 1.4789803073696317e-05 - ArtUnc_52: -2.910302902721402e-05 - ArtUnc_53: -4.8331660677013445e-05 - ArtUnc_54: 2.46139002810582e-05 - ArtUnc_55: 5.0195187470255184e-05 - ArtUnc_56: -7.534173203397271e-06 - ArtUnc_57: -0.0009724406566382886 - ArtUnc_58: 0.002580581925581996 - ArtUnc_59: 0.0003722812543556141 - ArtUnc_60: 0.00024486307773779494 - ArtUnc_61: 0.0007502908776919723 - ArtUnc_62: -0.000603295909081876 - ArtUnc_63: -0.00021837644109062352 - ArtUnc_64: -0.0006049467434411995 - ArtUnc_65: 0.0004698406724156381 - ArtUnc_66: -0.00016047606982258857 - ArtUnc_67: 5.597628896170966e-05 - ArtUnc_68: 0.0002182389788351802 - ArtUnc_69: 1.1008667292203844e-05 - ArtUnc_70: 9.332428840909884e-05 - ArtUnc_71: 1.7410499463531618e-06 - ArtUnc_72: 1.5512309295234166e-05 - ArtUnc_73: 0.001171402712029326 - ArtUnc_74: -0.0002786311578004168 - ArtUnc_75: 0.00028700015729913036 - ArtUnc_76: 0.007224765081852715 - ArtUnc_77: -0.0013220955446067943 - ArtUnc_78: 0.01613476439515324 - ArtUnc_79: 0.0038130671178633353 - ArtUnc_80: -0.005064477730472428 - ArtUnc_81: 0.003436231220562271 - ArtUnc_82: 2.2412802282053842e-05 - ArtUnc_83: 0.022201540076900436 - ArtUnc_84: -0.0044566290856507575 - ArtUnc_85: -0.01742863953471023 - ArtUnc_86: 0.021496483443812036 - ArtUnc_87: 0.013607990667775918 - ArtUnc_88: -0.011385699670263238 - ArtUnc_89: -0.007780802192535263 - ArtUnc_90: 0.001898829632687188 - ArtUnc_91: 0.003959695772808286 - ArtUnc_92: 0.0005860095065112893 - ArtUnc_93: -0.008045285761312283 - ArtUnc_94: 0.0034782788311635373 - ArtUnc_95: 0.00022653556448828135 - ArtUnc_96: -0.004254928877905018 + StatMC: 2.00946000e-02 + RadErr: 7.89660000e-03 + Model_1: 1.80223134e-02 + Model_2: 1.80223134e-02 + ModelRW_1: 1.60551423e-02 + ModelRW_2: 1.60551423e-02 + JES_1: 1.20492738e-02 + JES_2: 1.20492738e-02 + ArtUnc_1: 6.04152525e-10 + ArtUnc_2: -7.45708738e-10 + ArtUnc_3: -1.40828343e-10 + ArtUnc_4: 5.25975198e-10 + ArtUnc_5: -6.92369514e-10 + ArtUnc_6: -3.32088953e-10 + ArtUnc_7: -8.07313724e-12 + ArtUnc_8: 1.22309279e-07 + ArtUnc_9: 5.11364767e-10 + ArtUnc_10: -2.24469351e-07 + ArtUnc_11: -1.43260652e-07 + ArtUnc_12: 1.15302609e-08 + ArtUnc_13: 1.11747329e-07 + ArtUnc_14: 2.45582071e-08 + ArtUnc_15: 8.88317574e-10 + ArtUnc_16: 3.64674416e-08 + ArtUnc_17: -8.23673210e-08 + ArtUnc_18: 5.19722679e-08 + ArtUnc_19: -3.84124747e-08 + ArtUnc_20: 6.42535653e-08 + ArtUnc_21: 6.15529370e-08 + ArtUnc_22: -2.95167617e-08 + ArtUnc_23: -5.56290000e-09 + ArtUnc_24: 7.15155692e-10 + ArtUnc_25: -1.60893175e-06 + ArtUnc_26: 1.86466945e-06 + ArtUnc_27: 1.12748589e-05 + ArtUnc_28: -6.93851841e-07 + ArtUnc_29: -4.55594412e-07 + ArtUnc_30: 1.96172641e-06 + ArtUnc_31: 2.12870858e-08 + ArtUnc_32: 4.88184480e-07 + ArtUnc_33: 2.17934785e-08 + ArtUnc_34: 7.36425958e-07 + ArtUnc_35: 1.49239285e-06 + ArtUnc_36: 7.43094815e-07 + ArtUnc_37: 1.81786441e-07 + ArtUnc_38: -2.31009310e-07 + ArtUnc_39: -2.04741623e-07 + ArtUnc_40: -7.42380350e-08 + ArtUnc_41: 5.26888752e-04 + ArtUnc_42: -5.71465983e-04 + ArtUnc_43: -2.70222183e-04 + ArtUnc_44: 1.63980722e-05 + ArtUnc_45: -1.70436592e-04 + ArtUnc_46: -4.99785936e-05 + ArtUnc_47: -3.94025378e-05 + ArtUnc_48: -3.02423331e-05 + ArtUnc_49: 2.54954500e-05 + ArtUnc_50: 6.69182782e-06 + ArtUnc_51: 1.47898031e-05 + ArtUnc_52: -2.91030290e-05 + ArtUnc_53: -4.83316607e-05 + ArtUnc_54: 2.46139003e-05 + ArtUnc_55: 5.01951875e-05 + ArtUnc_56: -7.53417320e-06 + ArtUnc_57: -9.72440657e-04 + ArtUnc_58: 2.58058193e-03 + ArtUnc_59: 3.72281254e-04 + ArtUnc_60: 2.44863078e-04 + ArtUnc_61: 7.50290878e-04 + ArtUnc_62: -6.03295909e-04 + ArtUnc_63: -2.18376441e-04 + ArtUnc_64: -6.04946743e-04 + ArtUnc_65: 4.69840672e-04 + ArtUnc_66: -1.60476070e-04 + ArtUnc_67: 5.59762890e-05 + ArtUnc_68: 2.18238979e-04 + ArtUnc_69: 1.10086673e-05 + ArtUnc_70: 9.33242884e-05 + ArtUnc_71: 1.74104995e-06 + ArtUnc_72: 1.55123093e-05 + ArtUnc_73: 1.17140271e-03 + ArtUnc_74: -2.78631158e-04 + ArtUnc_75: 2.87000157e-04 + ArtUnc_76: 7.22476508e-03 + ArtUnc_77: -1.32209554e-03 + ArtUnc_78: 1.61347644e-02 + ArtUnc_79: 3.81306712e-03 + ArtUnc_80: -5.06447773e-03 + ArtUnc_81: 3.43623122e-03 + ArtUnc_82: 2.24128023e-05 + ArtUnc_83: 2.22015401e-02 + ArtUnc_84: -4.45662909e-03 + ArtUnc_85: -1.74286395e-02 + ArtUnc_86: 2.14964834e-02 + ArtUnc_87: 1.36079907e-02 + ArtUnc_88: -1.13856997e-02 + ArtUnc_89: -7.78080219e-03 + ArtUnc_90: 1.89882963e-03 + ArtUnc_91: 3.95969577e-03 + ArtUnc_92: 5.86009507e-04 + ArtUnc_93: -8.04528576e-03 + ArtUnc_94: 3.47827883e-03 + ArtUnc_95: 2.26535564e-04 + ArtUnc_96: -4.25492888e-03 - stat: 0 - Uncorr: 2.5500000000000003 - RCES: 17.013426291829052 - ElEn: 2.524982908357995 - ElTh: 1.3595948615304487 + Uncorr: 2.55000000e+00 + RCES: 1.70134263e+01 + ElEn: 2.52498291e+00 + ElTh: 1.35959486e+00 Lumi: 6.375 LArN: 1.53 - StatMC: 4.054500000000001 + StatMC: 4.05450000e+00 RadErr: 1.6065 - Model_1: 2.1096530816700643 - Model_2: 2.1096530816700643 - ModelRW_1: 1.7129661774244112 - ModelRW_2: 1.7129661774244112 - JES_1: 7.194864653000776 - JES_2: 7.194864653000776 - ArtUnc_1: 0.862390513360958 - ArtUnc_2: -0.058522334197274935 - ArtUnc_3: -0.015617481349614557 - ArtUnc_4: -0.02865956582028775 - ArtUnc_5: 0.024560404389031128 - ArtUnc_6: -0.013697542293582938 - ArtUnc_7: 0.0312667358010939 - ArtUnc_8: -8.052766469309553 - ArtUnc_9: -0.003869570549781359 - ArtUnc_10: -5.440340482204765 - ArtUnc_11: 0.5063656603501565 - ArtUnc_12: 0.13134908148404048 - ArtUnc_13: 1.5029665042315448 - ArtUnc_14: -0.02868999219755132 - ArtUnc_15: 0.1800281550271725 - ArtUnc_16: 0.01425040702897497 - ArtUnc_17: 0.04851242069982236 - ArtUnc_18: -0.2994043649614981 - ArtUnc_19: 0.07767460929125639 - ArtUnc_20: 0.2717761425707195 - ArtUnc_21: 0.047177105354672885 - ArtUnc_22: 0.03848277959299294 - ArtUnc_23: 0.014740246882677685 - ArtUnc_24: 0.0029896501309716835 - ArtUnc_25: -0.04036369541606761 - ArtUnc_26: -0.09302467152124266 - ArtUnc_27: -0.014597160954110492 - ArtUnc_28: -0.032271023414061836 - ArtUnc_29: 0.011743211789942889 - ArtUnc_30: -0.02075840896967938 - ArtUnc_31: 0.011241230788636522 - ArtUnc_32: 0.007682375996866057 - ArtUnc_33: 0.006482760235225154 - ArtUnc_34: 0.008580794784233063 - ArtUnc_35: 0.004056435036263157 - ArtUnc_36: 0.0008921238755738741 - ArtUnc_37: -0.0021935306004609617 - ArtUnc_38: 0.0009761650792590337 - ArtUnc_39: -0.0005096127087808053 - ArtUnc_40: -0.0005619835756197868 - ArtUnc_41: -0.0031631785001945928 - ArtUnc_42: -0.002833615200537926 - ArtUnc_43: 0.000737177321297061 - ArtUnc_44: 0.001308887822230703 - ArtUnc_45: -0.0012901354777218469 - ArtUnc_46: 0.0007960634160440661 - ArtUnc_47: -0.0016605377633478362 - ArtUnc_48: 0.00041322085193029644 - ArtUnc_49: 0.0007064806487292607 - ArtUnc_50: 0.0008218480678580217 - ArtUnc_51: -0.00013628995667965135 - ArtUnc_52: 7.824198600373727e-05 - ArtUnc_53: 0.0007009699714016272 - ArtUnc_54: -0.00017757524658647804 - ArtUnc_55: 9.061136987685657e-06 - ArtUnc_56: -0.00013438631943932383 - ArtUnc_57: 9.964845519297726e-06 - ArtUnc_58: -1.1228773788767014e-05 - ArtUnc_59: -1.3513642131206547e-05 - ArtUnc_60: -4.997737295236594e-06 - ArtUnc_61: 1.0751982835757547e-05 - ArtUnc_62: 6.1362719694684646e-06 - ArtUnc_63: -7.024195304640522e-06 - ArtUnc_64: 1.104379494273848e-05 - ArtUnc_65: -6.857977199225964e-06 - ArtUnc_66: 1.578230170233843e-06 - ArtUnc_67: 1.8570889589523063e-07 - ArtUnc_68: 7.241483498069554e-06 - ArtUnc_69: 9.093223014310423e-06 - ArtUnc_70: -2.2514322267953912e-07 - ArtUnc_71: 4.916213171292535e-07 - ArtUnc_72: -5.360034925647657e-07 - ArtUnc_73: 1.5427469524348488e-06 - ArtUnc_74: -2.3515148923936133e-06 - ArtUnc_75: -4.317535944850396e-07 - ArtUnc_76: 1.1272934960468206e-07 - ArtUnc_77: 7.517926745290272e-07 - ArtUnc_78: 5.095707024872422e-07 - ArtUnc_79: -7.8664914257136e-07 - ArtUnc_80: 9.434889384442472e-08 - ArtUnc_81: -1.1980382405502867e-08 - ArtUnc_82: -4.258541093895767e-10 - ArtUnc_83: -4.4121592340278306e-08 - ArtUnc_84: -2.5736692776212392e-08 - ArtUnc_85: 4.2710197772578146e-08 - ArtUnc_86: 8.348804058710194e-09 - ArtUnc_87: 1.766129369683349e-08 - ArtUnc_88: 7.80158295685783e-09 - ArtUnc_89: -5.735037683417001e-10 - ArtUnc_90: -9.147156941503087e-08 - ArtUnc_91: 2.083758651128185e-08 - ArtUnc_92: 4.8526244608792894e-09 - ArtUnc_93: -1.3073151315177993e-07 - ArtUnc_94: 8.733441907194496e-08 - ArtUnc_95: 2.3566459633314595e-08 - ArtUnc_96: -8.364543817190556e-09 + Model_1: 2.10965308e+00 + Model_2: 2.10965308e+00 + ModelRW_1: 1.71296618e+00 + ModelRW_2: 1.71296618e+00 + JES_1: 7.19486465e+00 + JES_2: 7.19486465e+00 + ArtUnc_1: 8.62390513e-01 + ArtUnc_2: -5.85223342e-02 + ArtUnc_3: -1.56174813e-02 + ArtUnc_4: -2.86595658e-02 + ArtUnc_5: 2.45604044e-02 + ArtUnc_6: -1.36975423e-02 + ArtUnc_7: 3.12667358e-02 + ArtUnc_8: -8.05276647e+00 + ArtUnc_9: -3.86957055e-03 + ArtUnc_10: -5.44034048e+00 + ArtUnc_11: 5.06365660e-01 + ArtUnc_12: 1.31349081e-01 + ArtUnc_13: 1.50296650e+00 + ArtUnc_14: -2.86899922e-02 + ArtUnc_15: 1.80028155e-01 + ArtUnc_16: 1.42504070e-02 + ArtUnc_17: 4.85124207e-02 + ArtUnc_18: -2.99404365e-01 + ArtUnc_19: 7.76746093e-02 + ArtUnc_20: 2.71776143e-01 + ArtUnc_21: 4.71771054e-02 + ArtUnc_22: 3.84827796e-02 + ArtUnc_23: 1.47402469e-02 + ArtUnc_24: 2.98965013e-03 + ArtUnc_25: -4.03636954e-02 + ArtUnc_26: -9.30246715e-02 + ArtUnc_27: -1.45971610e-02 + ArtUnc_28: -3.22710234e-02 + ArtUnc_29: 1.17432118e-02 + ArtUnc_30: -2.07584090e-02 + ArtUnc_31: 1.12412308e-02 + ArtUnc_32: 7.68237600e-03 + ArtUnc_33: 6.48276024e-03 + ArtUnc_34: 8.58079478e-03 + ArtUnc_35: 4.05643504e-03 + ArtUnc_36: 8.92123876e-04 + ArtUnc_37: -2.19353060e-03 + ArtUnc_38: 9.76165079e-04 + ArtUnc_39: -5.09612709e-04 + ArtUnc_40: -5.61983576e-04 + ArtUnc_41: -3.16317850e-03 + ArtUnc_42: -2.83361520e-03 + ArtUnc_43: 7.37177321e-04 + ArtUnc_44: 1.30888782e-03 + ArtUnc_45: -1.29013548e-03 + ArtUnc_46: 7.96063416e-04 + ArtUnc_47: -1.66053776e-03 + ArtUnc_48: 4.13220852e-04 + ArtUnc_49: 7.06480649e-04 + ArtUnc_50: 8.21848068e-04 + ArtUnc_51: -1.36289957e-04 + ArtUnc_52: 7.82419860e-05 + ArtUnc_53: 7.00969971e-04 + ArtUnc_54: -1.77575247e-04 + ArtUnc_55: 9.06113699e-06 + ArtUnc_56: -1.34386319e-04 + ArtUnc_57: 9.96484552e-06 + ArtUnc_58: -1.12287738e-05 + ArtUnc_59: -1.35136421e-05 + ArtUnc_60: -4.99773730e-06 + ArtUnc_61: 1.07519828e-05 + ArtUnc_62: 6.13627197e-06 + ArtUnc_63: -7.02419530e-06 + ArtUnc_64: 1.10437949e-05 + ArtUnc_65: -6.85797720e-06 + ArtUnc_66: 1.57823017e-06 + ArtUnc_67: 1.85708896e-07 + ArtUnc_68: 7.24148350e-06 + ArtUnc_69: 9.09322301e-06 + ArtUnc_70: -2.25143223e-07 + ArtUnc_71: 4.91621317e-07 + ArtUnc_72: -5.36003493e-07 + ArtUnc_73: 1.54274695e-06 + ArtUnc_74: -2.35151489e-06 + ArtUnc_75: -4.31753594e-07 + ArtUnc_76: 1.12729350e-07 + ArtUnc_77: 7.51792675e-07 + ArtUnc_78: 5.09570702e-07 + ArtUnc_79: -7.86649143e-07 + ArtUnc_80: 9.43488938e-08 + ArtUnc_81: -1.19803824e-08 + ArtUnc_82: -4.25854109e-10 + ArtUnc_83: -4.41215923e-08 + ArtUnc_84: -2.57366928e-08 + ArtUnc_85: 4.27101978e-08 + ArtUnc_86: 8.34880406e-09 + ArtUnc_87: 1.76612937e-08 + ArtUnc_88: 7.80158296e-09 + ArtUnc_89: -5.73503768e-10 + ArtUnc_90: -9.14715694e-08 + ArtUnc_91: 2.08375865e-08 + ArtUnc_92: 4.85262446e-09 + ArtUnc_93: -1.30731513e-07 + ArtUnc_94: 8.73344191e-08 + ArtUnc_95: 2.35664596e-08 + ArtUnc_96: -8.36454382e-09 - stat: 0 Uncorr: 1.49 - RCES: 2.090412119654878 - ElEn: 0.07706339922427508 - ElTh: 1.2541472590967937 + RCES: 2.09041212e+00 + ElEn: 7.70633992e-02 + ElTh: 1.25414726e+00 Lumi: 3.725 - LArN: 0.8939999999999999 - StatMC: 1.3708000000000002 + LArN: 8.94000000e-01 + StatMC: 1.37080000e+00 RadErr: 0.4768 - Model_1: 1.0746608860473148 - Model_2: 1.0746608860473148 - ModelRW_1: 0.71644059069821 - ModelRW_2: 0.71644059069821 - JES_1: 2.107566683108746 - JES_2: 2.107566683108746 - ArtUnc_1: 0.1320383969101628 - ArtUnc_2: -0.0018981155812127922 - ArtUnc_3: 0.030449734167063938 - ArtUnc_4: 0.016599559452785167 - ArtUnc_5: -0.007039446793516058 - ArtUnc_6: -0.0016744990704085601 - ArtUnc_7: 0.00015496188070738973 - ArtUnc_8: 0.04741118864007513 - ArtUnc_9: 0.0007186835312962168 - ArtUnc_10: -0.4305264015518117 - ArtUnc_11: -0.3402840139397071 - ArtUnc_12: 0.3989521206085828 - ArtUnc_13: 0.09101270589019123 - ArtUnc_14: -0.0454662744015132 - ArtUnc_15: 0.009692340009628061 - ArtUnc_16: 0.03319493653463854 - ArtUnc_17: 0.05060998404362843 - ArtUnc_18: -0.06042621545255102 - ArtUnc_19: 0.04212580899411449 - ArtUnc_20: 0.015698438313396287 - ArtUnc_21: -0.027948389494300365 - ArtUnc_22: 0.03784757413331094 - ArtUnc_23: 0.021509993525674447 - ArtUnc_24: -0.0004039371438018868 - ArtUnc_25: 3.2719289748556997 - ArtUnc_26: 1.3315714679588329 - ArtUnc_27: 0.3873789388962019 - ArtUnc_28: 0.6847540037957462 - ArtUnc_29: 0.020893158405177158 - ArtUnc_30: 0.24155149523280334 - ArtUnc_31: -0.05080766078860241 - ArtUnc_32: -0.08409477654661683 - ArtUnc_33: -0.056203225073985175 - ArtUnc_34: -0.08167182024114937 - ArtUnc_35: -0.08773620671064794 - ArtUnc_36: -0.037061892254628304 - ArtUnc_37: 0.0024416941282667287 - ArtUnc_38: 0.005311259237549614 - ArtUnc_39: 0.004140830387009761 - ArtUnc_40: 0.0023273358670159597 - ArtUnc_41: 0.016608369052248613 - ArtUnc_42: 0.017377037665656427 - ArtUnc_43: -0.007473878582718413 - ArtUnc_44: -0.01136699783501941 - ArtUnc_45: 0.012081466399688854 - ArtUnc_46: -0.006010521471543492 - ArtUnc_47: 0.014787560023833185 - ArtUnc_48: -0.004711128239898752 - ArtUnc_49: -0.007430677269866188 - ArtUnc_50: -0.006807979909466713 - ArtUnc_51: 0.0006050043502575601 - ArtUnc_52: -0.0001350414213422827 - ArtUnc_53: -0.0072927373415190835 - ArtUnc_54: 0.0021796124008489058 - ArtUnc_55: 0.0010621839197683008 - ArtUnc_56: 0.00038932020161372015 - ArtUnc_57: 2.8675619155647794e-06 - ArtUnc_58: -0.00011801018194304885 - ArtUnc_59: 0.00015106725253573715 - ArtUnc_60: 5.010764059745741e-05 - ArtUnc_61: -9.866999716198439e-06 - ArtUnc_62: -5.093667125678123e-05 - ArtUnc_63: 1.3994054984194227e-06 - ArtUnc_64: -7.893786420285958e-05 - ArtUnc_65: 6.916046599341139e-05 - ArtUnc_66: 4.153359855595592e-06 - ArtUnc_67: -3.7740188390941575e-06 - ArtUnc_68: -4.220146094322869e-06 - ArtUnc_69: -5.492019682323398e-06 - ArtUnc_70: -4.037667501783616e-06 - ArtUnc_71: 6.169350904763874e-06 - ArtUnc_72: -1.9239639399510934e-06 - ArtUnc_73: -2.479148957476188e-06 - ArtUnc_74: 1.4911766742091386e-05 - ArtUnc_75: 2.4181351515257655e-06 - ArtUnc_76: -4.5954891167824075e-07 - ArtUnc_77: -4.5068273257981715e-06 - ArtUnc_78: -3.171597684393666e-06 - ArtUnc_79: 7.267656447246022e-06 - ArtUnc_80: 8.86925522824323e-07 - ArtUnc_81: -3.4742103213120816e-07 - ArtUnc_82: -3.2867253404634625e-09 - ArtUnc_83: 4.799206644697428e-07 - ArtUnc_84: 4.956056692359477e-07 - ArtUnc_85: -3.0571751073164814e-07 - ArtUnc_86: -6.513106602556879e-08 - ArtUnc_87: -1.285266079731519e-07 - ArtUnc_88: -3.941215089842248e-07 - ArtUnc_89: -4.054728722557868e-07 - ArtUnc_90: -1.3450800291205652e-08 - ArtUnc_91: -7.577235197069439e-08 - ArtUnc_92: -1.9418480748555077e-08 - ArtUnc_93: 3.038985099760247e-07 - ArtUnc_94: -2.603149510967458e-07 - ArtUnc_95: 2.5716364133558877e-07 - ArtUnc_96: -1.7915995558900218e-09 + Model_1: 1.07466089e+00 + Model_2: 1.07466089e+00 + ModelRW_1: 7.16440591e-01 + ModelRW_2: 7.16440591e-01 + JES_1: 2.10756668e+00 + JES_2: 2.10756668e+00 + ArtUnc_1: 1.32038397e-01 + ArtUnc_2: -1.89811558e-03 + ArtUnc_3: 3.04497342e-02 + ArtUnc_4: 1.65995595e-02 + ArtUnc_5: -7.03944679e-03 + ArtUnc_6: -1.67449907e-03 + ArtUnc_7: 1.54961881e-04 + ArtUnc_8: 4.74111886e-02 + ArtUnc_9: 7.18683531e-04 + ArtUnc_10: -4.30526402e-01 + ArtUnc_11: -3.40284014e-01 + ArtUnc_12: 3.98952121e-01 + ArtUnc_13: 9.10127059e-02 + ArtUnc_14: -4.54662744e-02 + ArtUnc_15: 9.69234001e-03 + ArtUnc_16: 3.31949365e-02 + ArtUnc_17: 5.06099840e-02 + ArtUnc_18: -6.04262155e-02 + ArtUnc_19: 4.21258090e-02 + ArtUnc_20: 1.56984383e-02 + ArtUnc_21: -2.79483895e-02 + ArtUnc_22: 3.78475741e-02 + ArtUnc_23: 2.15099935e-02 + ArtUnc_24: -4.03937144e-04 + ArtUnc_25: 3.27192897e+00 + ArtUnc_26: 1.33157147e+00 + ArtUnc_27: 3.87378939e-01 + ArtUnc_28: 6.84754004e-01 + ArtUnc_29: 2.08931584e-02 + ArtUnc_30: 2.41551495e-01 + ArtUnc_31: -5.08076608e-02 + ArtUnc_32: -8.40947765e-02 + ArtUnc_33: -5.62032251e-02 + ArtUnc_34: -8.16718202e-02 + ArtUnc_35: -8.77362067e-02 + ArtUnc_36: -3.70618923e-02 + ArtUnc_37: 2.44169413e-03 + ArtUnc_38: 5.31125924e-03 + ArtUnc_39: 4.14083039e-03 + ArtUnc_40: 2.32733587e-03 + ArtUnc_41: 1.66083691e-02 + ArtUnc_42: 1.73770377e-02 + ArtUnc_43: -7.47387858e-03 + ArtUnc_44: -1.13669978e-02 + ArtUnc_45: 1.20814664e-02 + ArtUnc_46: -6.01052147e-03 + ArtUnc_47: 1.47875600e-02 + ArtUnc_48: -4.71112824e-03 + ArtUnc_49: -7.43067727e-03 + ArtUnc_50: -6.80797991e-03 + ArtUnc_51: 6.05004350e-04 + ArtUnc_52: -1.35041421e-04 + ArtUnc_53: -7.29273734e-03 + ArtUnc_54: 2.17961240e-03 + ArtUnc_55: 1.06218392e-03 + ArtUnc_56: 3.89320202e-04 + ArtUnc_57: 2.86756192e-06 + ArtUnc_58: -1.18010182e-04 + ArtUnc_59: 1.51067253e-04 + ArtUnc_60: 5.01076406e-05 + ArtUnc_61: -9.86699972e-06 + ArtUnc_62: -5.09366713e-05 + ArtUnc_63: 1.39940550e-06 + ArtUnc_64: -7.89378642e-05 + ArtUnc_65: 6.91604660e-05 + ArtUnc_66: 4.15335986e-06 + ArtUnc_67: -3.77401884e-06 + ArtUnc_68: -4.22014609e-06 + ArtUnc_69: -5.49201968e-06 + ArtUnc_70: -4.03766750e-06 + ArtUnc_71: 6.16935090e-06 + ArtUnc_72: -1.92396394e-06 + ArtUnc_73: -2.47914896e-06 + ArtUnc_74: 1.49117667e-05 + ArtUnc_75: 2.41813515e-06 + ArtUnc_76: -4.59548912e-07 + ArtUnc_77: -4.50682733e-06 + ArtUnc_78: -3.17159768e-06 + ArtUnc_79: 7.26765645e-06 + ArtUnc_80: 8.86925523e-07 + ArtUnc_81: -3.47421032e-07 + ArtUnc_82: -3.28672534e-09 + ArtUnc_83: 4.79920664e-07 + ArtUnc_84: 4.95605669e-07 + ArtUnc_85: -3.05717511e-07 + ArtUnc_86: -6.51310660e-08 + ArtUnc_87: -1.28526608e-07 + ArtUnc_88: -3.94121509e-07 + ArtUnc_89: -4.05472872e-07 + ArtUnc_90: -1.34508003e-08 + ArtUnc_91: -7.57723520e-08 + ArtUnc_92: -1.94184807e-08 + ArtUnc_93: 3.03898510e-07 + ArtUnc_94: -2.60314951e-07 + ArtUnc_95: 2.57163641e-07 + ArtUnc_96: -1.79159956e-09 - stat: 0 Uncorr: 0.32 - RCES: 0.09695524740827595 - ElEn: 0.08826142985472192 - ElTh: 0.18814122355294707 + RCES: 9.69552474e-02 + ElEn: 8.82614299e-02 + ElTh: 1.88141224e-01 Lumi: 0.8 LArN: 0.192 StatMC: 0.3136 - RadErr: 0.24960000000000002 - Model_1: 1.038598440206801 - Model_2: 1.038598440206801 - ModelRW_1: 1.0023945730100496 - ModelRW_2: 1.0023945730100496 - JES_1: 0.8952361029359798 - JES_2: 0.8952361029359798 - ArtUnc_1: 0.009828482441487745 - ArtUnc_2: -0.00460871700064456 - ArtUnc_3: -0.002367722967671026 - ArtUnc_4: -0.00029926032901598235 - ArtUnc_5: -0.00012690827336534974 - ArtUnc_6: -6.2210660451003455e-06 - ArtUnc_7: -8.451570832595379e-05 - ArtUnc_8: 0.02751057521746776 - ArtUnc_9: 1.5723655127338393e-05 - ArtUnc_10: 0.017825203774346893 - ArtUnc_11: -0.006729346020044204 - ArtUnc_12: 0.015601139436504471 - ArtUnc_13: -0.007047244784114975 - ArtUnc_14: -0.0065521735181942676 - ArtUnc_15: -0.005325434628903351 - ArtUnc_16: 0.0064917673106256015 - ArtUnc_17: -0.0034180238988290863 - ArtUnc_18: 0.0016271913888590524 - ArtUnc_19: -0.0010176831113118696 - ArtUnc_20: 0.0012412268220376775 - ArtUnc_21: 0.0013910730652472933 - ArtUnc_22: -0.0009017674683374423 - ArtUnc_23: 4.585804574036141e-05 - ArtUnc_24: -0.0001413221668135053 - ArtUnc_25: 0.048844340697331595 - ArtUnc_26: 0.04181590905252278 - ArtUnc_27: 0.32589663868765795 - ArtUnc_28: -0.046280711933589666 - ArtUnc_29: -0.030819773195066773 - ArtUnc_30: 0.14587854716562404 - ArtUnc_31: -0.0016396219494746182 - ArtUnc_32: -0.0678545120748393 - ArtUnc_33: -0.022661813340476022 - ArtUnc_34: -0.04182033033426591 - ArtUnc_35: -0.06905773771897107 - ArtUnc_36: -0.026864389685190497 - ArtUnc_37: -0.004292649218077433 - ArtUnc_38: 0.0050802906960727345 - ArtUnc_39: 0.0008362842858768569 - ArtUnc_40: 0.0003095012144619919 - ArtUnc_41: -0.7052015856251063 - ArtUnc_42: -0.6327097492563641 - ArtUnc_43: 0.12172801961898926 - ArtUnc_44: 0.22099531757298294 - ArtUnc_45: -0.23647012932139355 - ArtUnc_46: 0.08099032950666608 - ArtUnc_47: -0.20664841683345517 - ArtUnc_48: 0.038265988932915405 - ArtUnc_49: 0.09491404193287561 - ArtUnc_50: 0.09824741575171583 - ArtUnc_51: -0.004617328215157453 - ArtUnc_52: 0.0017742998422925309 - ArtUnc_53: 0.09017523379420407 - ArtUnc_54: -0.028143182158681345 - ArtUnc_55: -0.011196793347803947 - ArtUnc_56: -0.0034442880899961553 - ArtUnc_57: 0.0010036416826926242 - ArtUnc_58: -0.0028231731389436556 - ArtUnc_59: 0.0012046531993427795 - ArtUnc_60: 0.0003414476538073182 - ArtUnc_61: 2.537222981374834e-05 - ArtUnc_62: -0.00032734669173514557 - ArtUnc_63: -0.00028632491468644916 - ArtUnc_64: -0.0006345923426677774 - ArtUnc_65: 0.0005386105751243396 - ArtUnc_66: -0.0011505629179389587 - ArtUnc_67: 0.0004560945531371202 - ArtUnc_68: 0.003014846949041353 - ArtUnc_69: 0.0020738004664223268 - ArtUnc_70: -0.00037625735442800627 - ArtUnc_71: 0.0004925221551271979 - ArtUnc_72: -0.00026471775867246614 - ArtUnc_73: 0.0002693477913324866 - ArtUnc_74: -0.00026473689865880184 - ArtUnc_75: -3.595203059976877e-05 - ArtUnc_76: 1.2460882397148897e-06 - ArtUnc_77: 4.642367619193105e-05 - ArtUnc_78: 3.913418086393189e-05 - ArtUnc_79: -6.51698698504578e-05 - ArtUnc_80: 4.185286658640881e-07 - ArtUnc_81: 1.355320199362528e-06 - ArtUnc_82: -1.3444472389898236e-09 - ArtUnc_83: -1.3574624362073272e-06 - ArtUnc_84: -3.5302943668521003e-06 - ArtUnc_85: 1.2092535550324354e-06 - ArtUnc_86: -2.392580188600286e-06 - ArtUnc_87: -2.9287647151749426e-06 - ArtUnc_88: -7.154831036187616e-06 - ArtUnc_89: -4.048195228634956e-06 - ArtUnc_90: 2.553863669683389e-06 - ArtUnc_91: -6.988055593524728e-07 - ArtUnc_92: -7.503800177848302e-08 - ArtUnc_93: -1.0256192208288061e-05 - ArtUnc_94: 3.073421133961953e-06 - ArtUnc_95: -2.478932443424516e-06 - ArtUnc_96: -9.190338720973543e-08 + RadErr: 2.49600000e-01 + Model_1: 1.03859844e+00 + Model_2: 1.03859844e+00 + ModelRW_1: 1.00239457e+00 + ModelRW_2: 1.00239457e+00 + JES_1: 8.95236103e-01 + JES_2: 8.95236103e-01 + ArtUnc_1: 9.82848244e-03 + ArtUnc_2: -4.60871700e-03 + ArtUnc_3: -2.36772297e-03 + ArtUnc_4: -2.99260329e-04 + ArtUnc_5: -1.26908273e-04 + ArtUnc_6: -6.22106605e-06 + ArtUnc_7: -8.45157083e-05 + ArtUnc_8: 2.75105752e-02 + ArtUnc_9: 1.57236551e-05 + ArtUnc_10: 1.78252038e-02 + ArtUnc_11: -6.72934602e-03 + ArtUnc_12: 1.56011394e-02 + ArtUnc_13: -7.04724478e-03 + ArtUnc_14: -6.55217352e-03 + ArtUnc_15: -5.32543463e-03 + ArtUnc_16: 6.49176731e-03 + ArtUnc_17: -3.41802390e-03 + ArtUnc_18: 1.62719139e-03 + ArtUnc_19: -1.01768311e-03 + ArtUnc_20: 1.24122682e-03 + ArtUnc_21: 1.39107307e-03 + ArtUnc_22: -9.01767468e-04 + ArtUnc_23: 4.58580457e-05 + ArtUnc_24: -1.41322167e-04 + ArtUnc_25: 4.88443407e-02 + ArtUnc_26: 4.18159091e-02 + ArtUnc_27: 3.25896639e-01 + ArtUnc_28: -4.62807119e-02 + ArtUnc_29: -3.08197732e-02 + ArtUnc_30: 1.45878547e-01 + ArtUnc_31: -1.63962195e-03 + ArtUnc_32: -6.78545121e-02 + ArtUnc_33: -2.26618133e-02 + ArtUnc_34: -4.18203303e-02 + ArtUnc_35: -6.90577377e-02 + ArtUnc_36: -2.68643897e-02 + ArtUnc_37: -4.29264922e-03 + ArtUnc_38: 5.08029070e-03 + ArtUnc_39: 8.36284286e-04 + ArtUnc_40: 3.09501214e-04 + ArtUnc_41: -7.05201586e-01 + ArtUnc_42: -6.32709749e-01 + ArtUnc_43: 1.21728020e-01 + ArtUnc_44: 2.20995318e-01 + ArtUnc_45: -2.36470129e-01 + ArtUnc_46: 8.09903295e-02 + ArtUnc_47: -2.06648417e-01 + ArtUnc_48: 3.82659889e-02 + ArtUnc_49: 9.49140419e-02 + ArtUnc_50: 9.82474158e-02 + ArtUnc_51: -4.61732822e-03 + ArtUnc_52: 1.77429984e-03 + ArtUnc_53: 9.01752338e-02 + ArtUnc_54: -2.81431822e-02 + ArtUnc_55: -1.11967933e-02 + ArtUnc_56: -3.44428809e-03 + ArtUnc_57: 1.00364168e-03 + ArtUnc_58: -2.82317314e-03 + ArtUnc_59: 1.20465320e-03 + ArtUnc_60: 3.41447654e-04 + ArtUnc_61: 2.53722298e-05 + ArtUnc_62: -3.27346692e-04 + ArtUnc_63: -2.86324915e-04 + ArtUnc_64: -6.34592343e-04 + ArtUnc_65: 5.38610575e-04 + ArtUnc_66: -1.15056292e-03 + ArtUnc_67: 4.56094553e-04 + ArtUnc_68: 3.01484695e-03 + ArtUnc_69: 2.07380047e-03 + ArtUnc_70: -3.76257354e-04 + ArtUnc_71: 4.92522155e-04 + ArtUnc_72: -2.64717759e-04 + ArtUnc_73: 2.69347791e-04 + ArtUnc_74: -2.64736899e-04 + ArtUnc_75: -3.59520306e-05 + ArtUnc_76: 1.24608824e-06 + ArtUnc_77: 4.64236762e-05 + ArtUnc_78: 3.91341809e-05 + ArtUnc_79: -6.51698699e-05 + ArtUnc_80: 4.18528666e-07 + ArtUnc_81: 1.35532020e-06 + ArtUnc_82: -1.34444724e-09 + ArtUnc_83: -1.35746244e-06 + ArtUnc_84: -3.53029437e-06 + ArtUnc_85: 1.20925356e-06 + ArtUnc_86: -2.39258019e-06 + ArtUnc_87: -2.92876472e-06 + ArtUnc_88: -7.15483104e-06 + ArtUnc_89: -4.04819523e-06 + ArtUnc_90: 2.55386367e-06 + ArtUnc_91: -6.98805559e-07 + ArtUnc_92: -7.50380018e-08 + ArtUnc_93: -1.02561922e-05 + ArtUnc_94: 3.07342113e-06 + ArtUnc_95: -2.47893244e-06 + ArtUnc_96: -9.19033872e-08 - stat: 0 - Uncorr: 0.050499999999999996 - RCES: 0.06405094393332544 - ElEn: 0.04240496757456607 - ElTh: 0.0034528855686222796 + Uncorr: 5.05000000e-02 + RCES: 6.40509439e-02 + ElEn: 4.24049676e-02 + ElTh: 3.45288557e-03 Lumi: 0.12625 - LArN: 0.030299999999999997 + LArN: 3.03000000e-02 StatMC: 0.09898 RadErr: 0.04343 - Model_1: 0.29317000701384854 - Model_2: 0.29317000701384854 - ModelRW_1: 0.10426996595376828 - ModelRW_2: 0.10426996595376828 - JES_1: 0.15076713471236028 - JES_2: 0.15076713471236028 - ArtUnc_1: -6.164644459496338e-08 - ArtUnc_2: 3.922489697003599e-06 - ArtUnc_3: 3.676532891100279e-06 - ArtUnc_4: 5.564873447651579e-07 - ArtUnc_5: 6.59743217294973e-07 - ArtUnc_6: 4.992344983248174e-07 - ArtUnc_7: -1.1475159678064252e-07 - ArtUnc_8: -9.852689490555703e-05 - ArtUnc_9: -4.407965694973057e-07 - ArtUnc_10: 0.0001792344528930398 - ArtUnc_11: 7.616657232721964e-05 - ArtUnc_12: -4.4728975211666266e-05 - ArtUnc_13: -4.0797786142070816e-05 - ArtUnc_14: 1.1653214759857445e-05 - ArtUnc_15: 2.9468682734613832e-05 - ArtUnc_16: -4.060088063743114e-05 - ArtUnc_17: 4.8986111224387076e-05 - ArtUnc_18: -2.500089489249813e-05 - ArtUnc_19: 1.8892070928952376e-05 - ArtUnc_20: -3.2089415329472654e-05 - ArtUnc_21: -3.1833271314447314e-05 - ArtUnc_22: 1.9025728150568153e-05 - ArtUnc_23: 7.026400508713268e-06 - ArtUnc_24: -5.427374187542625e-07 - ArtUnc_25: 0.00180497943837816 - ArtUnc_26: -0.0011801587967399964 - ArtUnc_27: -0.009578494181615448 - ArtUnc_28: 0.0008501682735662387 - ArtUnc_29: 0.0009006503708527966 - ArtUnc_30: -0.004665811728323744 - ArtUnc_31: 0.00010043484313485591 - ArtUnc_32: 0.002013123413600144 - ArtUnc_33: 0.0006497633601117199 - ArtUnc_34: 0.0008514052295296975 - ArtUnc_35: 0.001151055185015836 - ArtUnc_36: -5.32719746780574e-05 - ArtUnc_37: -0.00018763487850387555 - ArtUnc_38: 0.000374601437531586 - ArtUnc_39: 0.00020843676093705043 - ArtUnc_40: 3.0350509533418895e-05 - ArtUnc_41: 0.10266260140158713 - ArtUnc_42: -0.09840882032617902 - ArtUnc_43: -0.0687136256878946 - ArtUnc_44: -0.009317374694874054 - ArtUnc_45: -0.03518183522111571 - ArtUnc_46: -0.029312409153198906 - ArtUnc_47: 0.013643854055219597 - ArtUnc_48: -0.03382659436727794 - ArtUnc_49: 0.004633542472207272 - ArtUnc_50: 0.02025841501175562 - ArtUnc_51: -0.0023840751346399375 - ArtUnc_52: 0.004771693908960994 - ArtUnc_53: 0.022523688368749763 - ArtUnc_54: -0.009567457581226015 - ArtUnc_55: -0.009843605589854792 - ArtUnc_56: 0.001517061341357972 - ArtUnc_57: 0.06258888615097814 - ArtUnc_58: -0.26121858121934405 - ArtUnc_59: 0.10808008735278782 - ArtUnc_60: 0.023049073521630416 - ArtUnc_61: -0.14287717897482147 - ArtUnc_62: 0.04647436774649283 - ArtUnc_63: 0.05445480327220324 - ArtUnc_64: 0.020264268067555387 - ArtUnc_65: -0.002083777069281772 - ArtUnc_66: 0.06705184198137516 - ArtUnc_67: -0.021510300671449198 - ArtUnc_68: -0.08355834520654506 - ArtUnc_69: -0.04248293594777888 - ArtUnc_70: 0.0015854931928314551 - ArtUnc_71: -0.009286362438022215 - ArtUnc_72: 0.005984455381454388 - ArtUnc_73: 0.0016273501516143546 - ArtUnc_74: -0.001251898970055017 - ArtUnc_75: -5.0258160043893535e-05 - ArtUnc_76: -5.509821488616488e-05 - ArtUnc_77: -0.0001441671182925708 - ArtUnc_78: -0.00010278516747378758 - ArtUnc_79: 0.0006061054586888791 - ArtUnc_80: -6.34313564224788e-05 - ArtUnc_81: 7.291486148520376e-05 - ArtUnc_82: 3.946880946781465e-07 - ArtUnc_83: 0.0001346940923443161 - ArtUnc_84: -0.00010207049142693918 - ArtUnc_85: -0.00010050144195659215 - ArtUnc_86: 0.0001167991316420489 - ArtUnc_87: 7.445854981989877e-05 - ArtUnc_88: -0.00020777512486746868 - ArtUnc_89: -0.00011443435620054819 - ArtUnc_90: 3.887377084194982e-05 - ArtUnc_91: 2.3285955195096784e-05 - ArtUnc_92: 4.009384033282361e-06 - ArtUnc_93: -0.0002676195551706283 - ArtUnc_94: 8.669785835343736e-05 - ArtUnc_95: 8.024371620577143e-06 - ArtUnc_96: -2.1333954408291494e-05 + Model_1: 2.93170007e-01 + Model_2: 2.93170007e-01 + ModelRW_1: 1.04269966e-01 + ModelRW_2: 1.04269966e-01 + JES_1: 1.50767135e-01 + JES_2: 1.50767135e-01 + ArtUnc_1: -6.16464446e-08 + ArtUnc_2: 3.92248970e-06 + ArtUnc_3: 3.67653289e-06 + ArtUnc_4: 5.56487345e-07 + ArtUnc_5: 6.59743217e-07 + ArtUnc_6: 4.99234498e-07 + ArtUnc_7: -1.14751597e-07 + ArtUnc_8: -9.85268949e-05 + ArtUnc_9: -4.40796569e-07 + ArtUnc_10: 1.79234453e-04 + ArtUnc_11: 7.61665723e-05 + ArtUnc_12: -4.47289752e-05 + ArtUnc_13: -4.07977861e-05 + ArtUnc_14: 1.16532148e-05 + ArtUnc_15: 2.94686827e-05 + ArtUnc_16: -4.06008806e-05 + ArtUnc_17: 4.89861112e-05 + ArtUnc_18: -2.50008949e-05 + ArtUnc_19: 1.88920709e-05 + ArtUnc_20: -3.20894153e-05 + ArtUnc_21: -3.18332713e-05 + ArtUnc_22: 1.90257282e-05 + ArtUnc_23: 7.02640051e-06 + ArtUnc_24: -5.42737419e-07 + ArtUnc_25: 1.80497944e-03 + ArtUnc_26: -1.18015880e-03 + ArtUnc_27: -9.57849418e-03 + ArtUnc_28: 8.50168274e-04 + ArtUnc_29: 9.00650371e-04 + ArtUnc_30: -4.66581173e-03 + ArtUnc_31: 1.00434843e-04 + ArtUnc_32: 2.01312341e-03 + ArtUnc_33: 6.49763360e-04 + ArtUnc_34: 8.51405230e-04 + ArtUnc_35: 1.15105519e-03 + ArtUnc_36: -5.32719747e-05 + ArtUnc_37: -1.87634879e-04 + ArtUnc_38: 3.74601438e-04 + ArtUnc_39: 2.08436761e-04 + ArtUnc_40: 3.03505095e-05 + ArtUnc_41: 1.02662601e-01 + ArtUnc_42: -9.84088203e-02 + ArtUnc_43: -6.87136257e-02 + ArtUnc_44: -9.31737469e-03 + ArtUnc_45: -3.51818352e-02 + ArtUnc_46: -2.93124092e-02 + ArtUnc_47: 1.36438541e-02 + ArtUnc_48: -3.38265944e-02 + ArtUnc_49: 4.63354247e-03 + ArtUnc_50: 2.02584150e-02 + ArtUnc_51: -2.38407513e-03 + ArtUnc_52: 4.77169391e-03 + ArtUnc_53: 2.25236884e-02 + ArtUnc_54: -9.56745758e-03 + ArtUnc_55: -9.84360559e-03 + ArtUnc_56: 1.51706134e-03 + ArtUnc_57: 6.25888862e-02 + ArtUnc_58: -2.61218581e-01 + ArtUnc_59: 1.08080087e-01 + ArtUnc_60: 2.30490735e-02 + ArtUnc_61: -1.42877179e-01 + ArtUnc_62: 4.64743677e-02 + ArtUnc_63: 5.44548033e-02 + ArtUnc_64: 2.02642681e-02 + ArtUnc_65: -2.08377707e-03 + ArtUnc_66: 6.70518420e-02 + ArtUnc_67: -2.15103007e-02 + ArtUnc_68: -8.35583452e-02 + ArtUnc_69: -4.24829359e-02 + ArtUnc_70: 1.58549319e-03 + ArtUnc_71: -9.28636244e-03 + ArtUnc_72: 5.98445538e-03 + ArtUnc_73: 1.62735015e-03 + ArtUnc_74: -1.25189897e-03 + ArtUnc_75: -5.02581600e-05 + ArtUnc_76: -5.50982149e-05 + ArtUnc_77: -1.44167118e-04 + ArtUnc_78: -1.02785167e-04 + ArtUnc_79: 6.06105459e-04 + ArtUnc_80: -6.34313564e-05 + ArtUnc_81: 7.29148615e-05 + ArtUnc_82: 3.94688095e-07 + ArtUnc_83: 1.34694092e-04 + ArtUnc_84: -1.02070491e-04 + ArtUnc_85: -1.00501442e-04 + ArtUnc_86: 1.16799132e-04 + ArtUnc_87: 7.44585498e-05 + ArtUnc_88: -2.07775125e-04 + ArtUnc_89: -1.14434356e-04 + ArtUnc_90: 3.88737708e-05 + ArtUnc_91: 2.32859552e-05 + ArtUnc_92: 4.00938403e-06 + ArtUnc_93: -2.67619555e-04 + ArtUnc_94: 8.66978584e-05 + ArtUnc_95: 8.02437162e-06 + ArtUnc_96: -2.13339544e-05 - stat: 0 Uncorr: 0.00901 - RCES: 0.011365821269490387 - ElEn: 0.010101150339812789 - ElTh: 0.006768303364211743 + RCES: 1.13658213e-02 + ElEn: 1.01011503e-02 + ElTh: 6.76830336e-03 Lumi: 0.022525 LArN: 0.005406 - StatMC: 0.0574838 - RadErr: 0.021533900000000005 - Model_1: 0.02293571555456686 - Model_2: 0.02293571555456686 - ModelRW_1: 0.007708948839173859 - ModelRW_2: 0.007708948839173859 - JES_1: 0.028766374043207983 - JES_2: 0.028766374043207983 - ArtUnc_1: -2.8171268199507716e-08 - ArtUnc_2: 4.468404998851395e-07 - ArtUnc_3: 6.065669381628866e-07 - ArtUnc_4: 2.2074680006442324e-07 - ArtUnc_5: -2.7226297566834386e-08 - ArtUnc_6: 1.0502030776599082e-08 - ArtUnc_7: 6.247091281933477e-09 - ArtUnc_8: -1.3352960960347073e-05 - ArtUnc_9: -5.195880523141805e-08 - ArtUnc_10: 2.1743112544614577e-05 - ArtUnc_11: 1.4384283433486833e-05 - ArtUnc_12: -6.488154730178476e-06 - ArtUnc_13: -1.2077849621583853e-05 - ArtUnc_14: -9.85196993995112e-07 - ArtUnc_15: -5.508344773231818e-06 - ArtUnc_16: -8.576868897751414e-07 - ArtUnc_17: 1.703642990227518e-06 - ArtUnc_18: 2.2576529075168028e-07 - ArtUnc_19: 1.2942610814684423e-06 - ArtUnc_20: -5.002398679556529e-06 - ArtUnc_21: -3.8253376283432924e-06 - ArtUnc_22: 1.7604760363566307e-06 - ArtUnc_23: 6.148453534215448e-07 - ArtUnc_24: -8.64776660808692e-08 - ArtUnc_25: 0.00021897760157158004 - ArtUnc_26: -0.00010417696531048306 - ArtUnc_27: -0.0012450843536182764 - ArtUnc_28: 0.0001734897536596235 - ArtUnc_29: 0.00015219103957132238 - ArtUnc_30: -0.0007465051590978547 - ArtUnc_31: 2.0704047749812754e-05 - ArtUnc_32: 0.0004343764298588992 - ArtUnc_33: 0.0001240490801374033 - ArtUnc_34: 0.0002862893515864769 - ArtUnc_35: 0.000496359061452056 - ArtUnc_36: 0.00020282456223106611 - ArtUnc_37: 3.709434707071476e-05 - ArtUnc_38: -4.1061827783918016e-05 - ArtUnc_39: -6.799893174198059e-06 - ArtUnc_40: -1.495482406591319e-06 - ArtUnc_41: 0.0008081930040474229 - ArtUnc_42: 0.0021086839281373873 - ArtUnc_43: 0.00035821304071842616 - ArtUnc_44: -0.0005399654934635183 - ArtUnc_45: 0.001316493409075148 - ArtUnc_46: 0.0002010143782132027 - ArtUnc_47: 0.0006350875907164479 - ArtUnc_48: 0.0004759382595654312 - ArtUnc_49: -0.0006023760092153574 - ArtUnc_50: -0.0009495179427241272 - ArtUnc_51: 6.923725304565707e-05 - ArtUnc_52: -7.658225400022983e-05 - ArtUnc_53: -0.0009883270985561877 - ArtUnc_54: 0.00035012232252784885 - ArtUnc_55: 0.00023812194477975467 - ArtUnc_56: -4.123660112127637e-06 - ArtUnc_57: -0.02066127195479415 - ArtUnc_58: 0.030126179151983706 - ArtUnc_59: 0.046329830103050265 - ArtUnc_60: 0.01702587416560102 - ArtUnc_61: -0.008563593972697963 - ArtUnc_62: -0.012710627449860143 - ArtUnc_63: 0.004931348879743005 - ArtUnc_64: -0.019511390532134486 - ArtUnc_65: 0.01837312552201359 - ArtUnc_66: 0.006955319069816964 - ArtUnc_67: -0.001832830663475033 - ArtUnc_68: -0.00026029931124660403 - ArtUnc_69: 0.000548424930784027 - ArtUnc_70: -0.00014018403238890204 - ArtUnc_71: 0.0007404022609201388 - ArtUnc_72: -0.0002691231477139737 - ArtUnc_73: 0.07358766616309388 - ArtUnc_74: -0.0893527526264328 - ArtUnc_75: -0.012055679340105704 - ArtUnc_76: -0.0027011264050323686 - ArtUnc_77: 0.021387610532927363 - ArtUnc_78: 0.013447794794430668 - ArtUnc_79: -0.04306806542957896 - ArtUnc_80: 0.0002503528763656325 - ArtUnc_81: -0.0004905800793986709 - ArtUnc_82: -2.433948835170254e-06 - ArtUnc_83: 0.00034942425994394585 - ArtUnc_84: 0.0003703550434099853 - ArtUnc_85: -0.00018102905776399447 - ArtUnc_86: -0.00014389325348863863 - ArtUnc_87: -0.0003998668211764174 - ArtUnc_88: 0.00260042890848475 - ArtUnc_89: -0.0023811496247879713 - ArtUnc_90: -0.0006337108544291929 - ArtUnc_91: -0.000159910268279095 - ArtUnc_92: -3.0413386783324703e-05 - ArtUnc_93: 0.004616274227591099 - ArtUnc_94: 0.0008602099782936573 - ArtUnc_95: 0.0007644310356287082 - ArtUnc_96: -1.4366715556144155e-06 + StatMC: 5.74838000e-02 + RadErr: 2.15339000e-02 + Model_1: 2.29357156e-02 + Model_2: 2.29357156e-02 + ModelRW_1: 7.70894884e-03 + ModelRW_2: 7.70894884e-03 + JES_1: 2.87663740e-02 + JES_2: 2.87663740e-02 + ArtUnc_1: -2.81712682e-08 + ArtUnc_2: 4.46840500e-07 + ArtUnc_3: 6.06566938e-07 + ArtUnc_4: 2.20746800e-07 + ArtUnc_5: -2.72262976e-08 + ArtUnc_6: 1.05020308e-08 + ArtUnc_7: 6.24709128e-09 + ArtUnc_8: -1.33529610e-05 + ArtUnc_9: -5.19588052e-08 + ArtUnc_10: 2.17431125e-05 + ArtUnc_11: 1.43842834e-05 + ArtUnc_12: -6.48815473e-06 + ArtUnc_13: -1.20778496e-05 + ArtUnc_14: -9.85196994e-07 + ArtUnc_15: -5.50834477e-06 + ArtUnc_16: -8.57686890e-07 + ArtUnc_17: 1.70364299e-06 + ArtUnc_18: 2.25765291e-07 + ArtUnc_19: 1.29426108e-06 + ArtUnc_20: -5.00239868e-06 + ArtUnc_21: -3.82533763e-06 + ArtUnc_22: 1.76047604e-06 + ArtUnc_23: 6.14845353e-07 + ArtUnc_24: -8.64776661e-08 + ArtUnc_25: 2.18977602e-04 + ArtUnc_26: -1.04176965e-04 + ArtUnc_27: -1.24508435e-03 + ArtUnc_28: 1.73489754e-04 + ArtUnc_29: 1.52191040e-04 + ArtUnc_30: -7.46505159e-04 + ArtUnc_31: 2.07040477e-05 + ArtUnc_32: 4.34376430e-04 + ArtUnc_33: 1.24049080e-04 + ArtUnc_34: 2.86289352e-04 + ArtUnc_35: 4.96359061e-04 + ArtUnc_36: 2.02824562e-04 + ArtUnc_37: 3.70943471e-05 + ArtUnc_38: -4.10618278e-05 + ArtUnc_39: -6.79989317e-06 + ArtUnc_40: -1.49548241e-06 + ArtUnc_41: 8.08193004e-04 + ArtUnc_42: 2.10868393e-03 + ArtUnc_43: 3.58213041e-04 + ArtUnc_44: -5.39965493e-04 + ArtUnc_45: 1.31649341e-03 + ArtUnc_46: 2.01014378e-04 + ArtUnc_47: 6.35087591e-04 + ArtUnc_48: 4.75938260e-04 + ArtUnc_49: -6.02376009e-04 + ArtUnc_50: -9.49517943e-04 + ArtUnc_51: 6.92372530e-05 + ArtUnc_52: -7.65822540e-05 + ArtUnc_53: -9.88327099e-04 + ArtUnc_54: 3.50122323e-04 + ArtUnc_55: 2.38121945e-04 + ArtUnc_56: -4.12366011e-06 + ArtUnc_57: -2.06612720e-02 + ArtUnc_58: 3.01261792e-02 + ArtUnc_59: 4.63298301e-02 + ArtUnc_60: 1.70258742e-02 + ArtUnc_61: -8.56359397e-03 + ArtUnc_62: -1.27106274e-02 + ArtUnc_63: 4.93134888e-03 + ArtUnc_64: -1.95113905e-02 + ArtUnc_65: 1.83731255e-02 + ArtUnc_66: 6.95531907e-03 + ArtUnc_67: -1.83283066e-03 + ArtUnc_68: -2.60299311e-04 + ArtUnc_69: 5.48424931e-04 + ArtUnc_70: -1.40184032e-04 + ArtUnc_71: 7.40402261e-04 + ArtUnc_72: -2.69123148e-04 + ArtUnc_73: 7.35876662e-02 + ArtUnc_74: -8.93527526e-02 + ArtUnc_75: -1.20556793e-02 + ArtUnc_76: -2.70112641e-03 + ArtUnc_77: 2.13876105e-02 + ArtUnc_78: 1.34477948e-02 + ArtUnc_79: -4.30680654e-02 + ArtUnc_80: 2.50352876e-04 + ArtUnc_81: -4.90580079e-04 + ArtUnc_82: -2.43394884e-06 + ArtUnc_83: 3.49424260e-04 + ArtUnc_84: 3.70355043e-04 + ArtUnc_85: -1.81029058e-04 + ArtUnc_86: -1.43893253e-04 + ArtUnc_87: -3.99866821e-04 + ArtUnc_88: 2.60042891e-03 + ArtUnc_89: -2.38114962e-03 + ArtUnc_90: -6.33710854e-04 + ArtUnc_91: -1.59910268e-04 + ArtUnc_92: -3.04133868e-05 + ArtUnc_93: 4.61627423e-03 + ArtUnc_94: 8.60209978e-04 + ArtUnc_95: 7.64431036e-04 + ArtUnc_96: -1.43667156e-06 - stat: 0 Uncorr: 0.000644 - RCES: 0.003050575726383464 - ElEn: 0.0030354798418042576 - ElTh: 0.0053301495582769535 + RCES: 3.05057573e-03 + ElEn: 3.03547984e-03 + ElTh: 5.33014956e-03 Lumi: 0.00161 - LArN: 0.0003864 - StatMC: 0.02065308 - RadErr: 0.00262752 - Model_1: 0.012577506306863854 - Model_2: 0.012577506306863854 - ModelRW_1: 0.009644879926842013 - ModelRW_2: 0.009644879926842013 - JES_1: 0.006474149328336504 - JES_2: 0.006474149328336504 - ArtUnc_1: 6.041525253143837e-10 - ArtUnc_2: -7.457087380483398e-10 - ArtUnc_3: -1.4082834307497503e-10 - ArtUnc_4: 5.259751980797566e-10 - ArtUnc_5: -6.923695139325593e-10 - ArtUnc_6: -3.3208895333728377e-10 - ArtUnc_7: -8.073137240863234e-12 - ArtUnc_8: 1.2230927873466213e-07 - ArtUnc_9: 5.113647670230508e-10 - ArtUnc_10: -2.244693506634476e-07 - ArtUnc_11: -1.432606521286891e-07 - ArtUnc_12: 1.1530260854438604e-08 - ArtUnc_13: 1.117473288031136e-07 - ArtUnc_14: 2.455820714133376e-08 - ArtUnc_15: 8.883175739142325e-10 - ArtUnc_16: 3.64674416477968e-08 - ArtUnc_17: -8.23673209728863e-08 - ArtUnc_18: 5.197226792066097e-08 - ArtUnc_19: -3.841247467568004e-08 - ArtUnc_20: 6.425356531113657e-08 - ArtUnc_21: 6.155293697544512e-08 - ArtUnc_22: -2.9516761746782553e-08 - ArtUnc_23: -5.562900001094921e-09 - ArtUnc_24: 7.151556918564961e-10 - ArtUnc_25: -1.6089317487759996e-06 - ArtUnc_26: 1.8646694530904163e-06 - ArtUnc_27: 1.1274858886782353e-05 - ArtUnc_28: -6.938518411540835e-07 - ArtUnc_29: -4.555944122477703e-07 - ArtUnc_30: 1.9617264051350774e-06 - ArtUnc_31: 2.1287085831880707e-08 - ArtUnc_32: 4.881844799069134e-07 - ArtUnc_33: 2.179347849928199e-08 - ArtUnc_34: 7.364259583162062e-07 - ArtUnc_35: 1.4923928499667925e-06 - ArtUnc_36: 7.430948147728629e-07 - ArtUnc_37: 1.8178644102041127e-07 - ArtUnc_38: -2.3100931026616919e-07 - ArtUnc_39: -2.047416229297779e-07 - ArtUnc_40: -7.4238034992303e-08 - ArtUnc_41: 0.0005268887524987921 - ArtUnc_42: -0.0005714659827220986 - ArtUnc_43: -0.00027022218346638225 - ArtUnc_44: 1.6398072189473574e-05 - ArtUnc_45: -0.00017043659189344853 - ArtUnc_46: -4.997859356279252e-05 - ArtUnc_47: -3.9402537799913584e-05 - ArtUnc_48: -3.0242333060468175e-05 - ArtUnc_49: 2.5495449976636246e-05 - ArtUnc_50: 6.691827822136524e-06 - ArtUnc_51: 1.4789803073696317e-05 - ArtUnc_52: -2.910302902721402e-05 - ArtUnc_53: -4.8331660677013445e-05 - ArtUnc_54: 2.46139002810582e-05 - ArtUnc_55: 5.0195187470255184e-05 - ArtUnc_56: -7.534173203397271e-06 - ArtUnc_57: -0.0009724406566382886 - ArtUnc_58: 0.002580581925581996 - ArtUnc_59: 0.0003722812543556141 - ArtUnc_60: 0.00024486307773779494 - ArtUnc_61: 0.0007502908776919723 - ArtUnc_62: -0.000603295909081876 - ArtUnc_63: -0.00021837644109062352 - ArtUnc_64: -0.0006049467434411995 - ArtUnc_65: 0.0004698406724156381 - ArtUnc_66: -0.00016047606982258857 - ArtUnc_67: 5.597628896170966e-05 - ArtUnc_68: 0.0002182389788351802 - ArtUnc_69: 1.1008667292203844e-05 - ArtUnc_70: 9.332428840909884e-05 - ArtUnc_71: 1.7410499463531618e-06 - ArtUnc_72: 1.5512309295234166e-05 - ArtUnc_73: 0.001171402712029326 - ArtUnc_74: -0.0002786311578004168 - ArtUnc_75: 0.00028700015729913036 - ArtUnc_76: 0.007224765081852715 - ArtUnc_77: -0.0013220955446067943 - ArtUnc_78: 0.01613476439515324 - ArtUnc_79: 0.0038130671178633353 - ArtUnc_80: -0.005064477730472428 - ArtUnc_81: 0.003436231220562271 - ArtUnc_82: 2.2412802282053842e-05 - ArtUnc_83: 0.022201540076900436 - ArtUnc_84: -0.0044566290856507575 - ArtUnc_85: -0.01742863953471023 - ArtUnc_86: 0.021496483443812036 - ArtUnc_87: 0.013607990667775918 - ArtUnc_88: -0.011385699670263238 - ArtUnc_89: -0.007780802192535263 - ArtUnc_90: 0.001898829632687188 - ArtUnc_91: 0.003959695772808286 - ArtUnc_92: 0.0005860095065112893 - ArtUnc_93: -0.008045285761312283 - ArtUnc_94: 0.0034782788311635373 - ArtUnc_95: 0.00022653556448828135 - ArtUnc_96: -0.004254928877905018 + LArN: 3.86400000e-04 + StatMC: 2.06530800e-02 + RadErr: 2.62752000e-03 + Model_1: 1.25775063e-02 + Model_2: 1.25775063e-02 + ModelRW_1: 9.64487993e-03 + ModelRW_2: 9.64487993e-03 + JES_1: 6.47414933e-03 + JES_2: 6.47414933e-03 + ArtUnc_1: 6.04152525e-10 + ArtUnc_2: -7.45708738e-10 + ArtUnc_3: -1.40828343e-10 + ArtUnc_4: 5.25975198e-10 + ArtUnc_5: -6.92369514e-10 + ArtUnc_6: -3.32088953e-10 + ArtUnc_7: -8.07313724e-12 + ArtUnc_8: 1.22309279e-07 + ArtUnc_9: 5.11364767e-10 + ArtUnc_10: -2.24469351e-07 + ArtUnc_11: -1.43260652e-07 + ArtUnc_12: 1.15302609e-08 + ArtUnc_13: 1.11747329e-07 + ArtUnc_14: 2.45582071e-08 + ArtUnc_15: 8.88317574e-10 + ArtUnc_16: 3.64674416e-08 + ArtUnc_17: -8.23673210e-08 + ArtUnc_18: 5.19722679e-08 + ArtUnc_19: -3.84124747e-08 + ArtUnc_20: 6.42535653e-08 + ArtUnc_21: 6.15529370e-08 + ArtUnc_22: -2.95167617e-08 + ArtUnc_23: -5.56290000e-09 + ArtUnc_24: 7.15155692e-10 + ArtUnc_25: -1.60893175e-06 + ArtUnc_26: 1.86466945e-06 + ArtUnc_27: 1.12748589e-05 + ArtUnc_28: -6.93851841e-07 + ArtUnc_29: -4.55594412e-07 + ArtUnc_30: 1.96172641e-06 + ArtUnc_31: 2.12870858e-08 + ArtUnc_32: 4.88184480e-07 + ArtUnc_33: 2.17934785e-08 + ArtUnc_34: 7.36425958e-07 + ArtUnc_35: 1.49239285e-06 + ArtUnc_36: 7.43094815e-07 + ArtUnc_37: 1.81786441e-07 + ArtUnc_38: -2.31009310e-07 + ArtUnc_39: -2.04741623e-07 + ArtUnc_40: -7.42380350e-08 + ArtUnc_41: 5.26888752e-04 + ArtUnc_42: -5.71465983e-04 + ArtUnc_43: -2.70222183e-04 + ArtUnc_44: 1.63980722e-05 + ArtUnc_45: -1.70436592e-04 + ArtUnc_46: -4.99785936e-05 + ArtUnc_47: -3.94025378e-05 + ArtUnc_48: -3.02423331e-05 + ArtUnc_49: 2.54954500e-05 + ArtUnc_50: 6.69182782e-06 + ArtUnc_51: 1.47898031e-05 + ArtUnc_52: -2.91030290e-05 + ArtUnc_53: -4.83316607e-05 + ArtUnc_54: 2.46139003e-05 + ArtUnc_55: 5.01951875e-05 + ArtUnc_56: -7.53417320e-06 + ArtUnc_57: -9.72440657e-04 + ArtUnc_58: 2.58058193e-03 + ArtUnc_59: 3.72281254e-04 + ArtUnc_60: 2.44863078e-04 + ArtUnc_61: 7.50290878e-04 + ArtUnc_62: -6.03295909e-04 + ArtUnc_63: -2.18376441e-04 + ArtUnc_64: -6.04946743e-04 + ArtUnc_65: 4.69840672e-04 + ArtUnc_66: -1.60476070e-04 + ArtUnc_67: 5.59762890e-05 + ArtUnc_68: 2.18238979e-04 + ArtUnc_69: 1.10086673e-05 + ArtUnc_70: 9.33242884e-05 + ArtUnc_71: 1.74104995e-06 + ArtUnc_72: 1.55123093e-05 + ArtUnc_73: 1.17140271e-03 + ArtUnc_74: -2.78631158e-04 + ArtUnc_75: 2.87000157e-04 + ArtUnc_76: 7.22476508e-03 + ArtUnc_77: -1.32209554e-03 + ArtUnc_78: 1.61347644e-02 + ArtUnc_79: 3.81306712e-03 + ArtUnc_80: -5.06447773e-03 + ArtUnc_81: 3.43623122e-03 + ArtUnc_82: 2.24128023e-05 + ArtUnc_83: 2.22015401e-02 + ArtUnc_84: -4.45662909e-03 + ArtUnc_85: -1.74286395e-02 + ArtUnc_86: 2.14964834e-02 + ArtUnc_87: 1.36079907e-02 + ArtUnc_88: -1.13856997e-02 + ArtUnc_89: -7.78080219e-03 + ArtUnc_90: 1.89882963e-03 + ArtUnc_91: 3.95969577e-03 + ArtUnc_92: 5.86009507e-04 + ArtUnc_93: -8.04528576e-03 + ArtUnc_94: 3.47827883e-03 + ArtUnc_95: 2.26535564e-04 + ArtUnc_96: -4.25492888e-03 - stat: 0 Uncorr: 2.37 - RCES: 14.240027209507012 - ElEn: 1.2470682369060646 - ElTh: 2.4382220899663753 + RCES: 1.42400272e+01 + ElEn: 1.24706824e+00 + ElTh: 2.43822209e+00 Lumi: 5.925 LArN: 1.422 StatMC: 3.6261 RadErr: 1.0428 - Model_1: 3.3014108506818713 - Model_2: 3.3014108506818713 - ModelRW_1: 5.949242903513016 - ModelRW_2: 5.949242903513016 - JES_1: 6.2898556496751175 - JES_2: 6.2898556496751175 - ArtUnc_1: 0.862390513360958 - ArtUnc_2: -0.058522334197274935 - ArtUnc_3: -0.015617481349614557 - ArtUnc_4: -0.02865956582028775 - ArtUnc_5: 0.024560404389031128 - ArtUnc_6: -0.013697542293582938 - ArtUnc_7: 0.0312667358010939 - ArtUnc_8: -8.052766469309553 - ArtUnc_9: -0.003869570549781359 - ArtUnc_10: -5.440340482204765 - ArtUnc_11: 0.5063656603501565 - ArtUnc_12: 0.13134908148404048 - ArtUnc_13: 1.5029665042315448 - ArtUnc_14: -0.02868999219755132 - ArtUnc_15: 0.1800281550271725 - ArtUnc_16: 0.01425040702897497 - ArtUnc_17: 0.04851242069982236 - ArtUnc_18: -0.2994043649614981 - ArtUnc_19: 0.07767460929125639 - ArtUnc_20: 0.2717761425707195 - ArtUnc_21: 0.047177105354672885 - ArtUnc_22: 0.03848277959299294 - ArtUnc_23: 0.014740246882677685 - ArtUnc_24: 0.0029896501309716835 - ArtUnc_25: -0.04036369541606761 - ArtUnc_26: -0.09302467152124266 - ArtUnc_27: -0.014597160954110492 - ArtUnc_28: -0.032271023414061836 - ArtUnc_29: 0.011743211789942889 - ArtUnc_30: -0.02075840896967938 - ArtUnc_31: 0.011241230788636522 - ArtUnc_32: 0.007682375996866057 - ArtUnc_33: 0.006482760235225154 - ArtUnc_34: 0.008580794784233063 - ArtUnc_35: 0.004056435036263157 - ArtUnc_36: 0.0008921238755738741 - ArtUnc_37: -0.0021935306004609617 - ArtUnc_38: 0.0009761650792590337 - ArtUnc_39: -0.0005096127087808053 - ArtUnc_40: -0.0005619835756197868 - ArtUnc_41: -0.0031631785001945928 - ArtUnc_42: -0.002833615200537926 - ArtUnc_43: 0.000737177321297061 - ArtUnc_44: 0.001308887822230703 - ArtUnc_45: -0.0012901354777218469 - ArtUnc_46: 0.0007960634160440661 - ArtUnc_47: -0.0016605377633478362 - ArtUnc_48: 0.00041322085193029644 - ArtUnc_49: 0.0007064806487292607 - ArtUnc_50: 0.0008218480678580217 - ArtUnc_51: -0.00013628995667965135 - ArtUnc_52: 7.824198600373727e-05 - ArtUnc_53: 0.0007009699714016272 - ArtUnc_54: -0.00017757524658647804 - ArtUnc_55: 9.061136987685657e-06 - ArtUnc_56: -0.00013438631943932383 - ArtUnc_57: 9.964845519297726e-06 - ArtUnc_58: -1.1228773788767014e-05 - ArtUnc_59: -1.3513642131206547e-05 - ArtUnc_60: -4.997737295236594e-06 - ArtUnc_61: 1.0751982835757547e-05 - ArtUnc_62: 6.1362719694684646e-06 - ArtUnc_63: -7.024195304640522e-06 - ArtUnc_64: 1.104379494273848e-05 - ArtUnc_65: -6.857977199225964e-06 - ArtUnc_66: 1.578230170233843e-06 - ArtUnc_67: 1.8570889589523063e-07 - ArtUnc_68: 7.241483498069554e-06 - ArtUnc_69: 9.093223014310423e-06 - ArtUnc_70: -2.2514322267953912e-07 - ArtUnc_71: 4.916213171292535e-07 - ArtUnc_72: -5.360034925647657e-07 - ArtUnc_73: 1.5427469524348488e-06 - ArtUnc_74: -2.3515148923936133e-06 - ArtUnc_75: -4.317535944850396e-07 - ArtUnc_76: 1.1272934960468206e-07 - ArtUnc_77: 7.517926745290272e-07 - ArtUnc_78: 5.095707024872422e-07 - ArtUnc_79: -7.8664914257136e-07 - ArtUnc_80: 9.434889384442472e-08 - ArtUnc_81: -1.1980382405502867e-08 - ArtUnc_82: -4.258541093895767e-10 - ArtUnc_83: -4.4121592340278306e-08 - ArtUnc_84: -2.5736692776212392e-08 - ArtUnc_85: 4.2710197772578146e-08 - ArtUnc_86: 8.348804058710194e-09 - ArtUnc_87: 1.766129369683349e-08 - ArtUnc_88: 7.80158295685783e-09 - ArtUnc_89: -5.735037683417001e-10 - ArtUnc_90: -9.147156941503087e-08 - ArtUnc_91: 2.083758651128185e-08 - ArtUnc_92: 4.8526244608792894e-09 - ArtUnc_93: -1.3073151315177993e-07 - ArtUnc_94: 8.733441907194496e-08 - ArtUnc_95: 2.3566459633314595e-08 - ArtUnc_96: -8.364543817190556e-09 + Model_1: 3.30141085e+00 + Model_2: 3.30141085e+00 + ModelRW_1: 5.94924290e+00 + ModelRW_2: 5.94924290e+00 + JES_1: 6.28985565e+00 + JES_2: 6.28985565e+00 + ArtUnc_1: 8.62390513e-01 + ArtUnc_2: -5.85223342e-02 + ArtUnc_3: -1.56174813e-02 + ArtUnc_4: -2.86595658e-02 + ArtUnc_5: 2.45604044e-02 + ArtUnc_6: -1.36975423e-02 + ArtUnc_7: 3.12667358e-02 + ArtUnc_8: -8.05276647e+00 + ArtUnc_9: -3.86957055e-03 + ArtUnc_10: -5.44034048e+00 + ArtUnc_11: 5.06365660e-01 + ArtUnc_12: 1.31349081e-01 + ArtUnc_13: 1.50296650e+00 + ArtUnc_14: -2.86899922e-02 + ArtUnc_15: 1.80028155e-01 + ArtUnc_16: 1.42504070e-02 + ArtUnc_17: 4.85124207e-02 + ArtUnc_18: -2.99404365e-01 + ArtUnc_19: 7.76746093e-02 + ArtUnc_20: 2.71776143e-01 + ArtUnc_21: 4.71771054e-02 + ArtUnc_22: 3.84827796e-02 + ArtUnc_23: 1.47402469e-02 + ArtUnc_24: 2.98965013e-03 + ArtUnc_25: -4.03636954e-02 + ArtUnc_26: -9.30246715e-02 + ArtUnc_27: -1.45971610e-02 + ArtUnc_28: -3.22710234e-02 + ArtUnc_29: 1.17432118e-02 + ArtUnc_30: -2.07584090e-02 + ArtUnc_31: 1.12412308e-02 + ArtUnc_32: 7.68237600e-03 + ArtUnc_33: 6.48276024e-03 + ArtUnc_34: 8.58079478e-03 + ArtUnc_35: 4.05643504e-03 + ArtUnc_36: 8.92123876e-04 + ArtUnc_37: -2.19353060e-03 + ArtUnc_38: 9.76165079e-04 + ArtUnc_39: -5.09612709e-04 + ArtUnc_40: -5.61983576e-04 + ArtUnc_41: -3.16317850e-03 + ArtUnc_42: -2.83361520e-03 + ArtUnc_43: 7.37177321e-04 + ArtUnc_44: 1.30888782e-03 + ArtUnc_45: -1.29013548e-03 + ArtUnc_46: 7.96063416e-04 + ArtUnc_47: -1.66053776e-03 + ArtUnc_48: 4.13220852e-04 + ArtUnc_49: 7.06480649e-04 + ArtUnc_50: 8.21848068e-04 + ArtUnc_51: -1.36289957e-04 + ArtUnc_52: 7.82419860e-05 + ArtUnc_53: 7.00969971e-04 + ArtUnc_54: -1.77575247e-04 + ArtUnc_55: 9.06113699e-06 + ArtUnc_56: -1.34386319e-04 + ArtUnc_57: 9.96484552e-06 + ArtUnc_58: -1.12287738e-05 + ArtUnc_59: -1.35136421e-05 + ArtUnc_60: -4.99773730e-06 + ArtUnc_61: 1.07519828e-05 + ArtUnc_62: 6.13627197e-06 + ArtUnc_63: -7.02419530e-06 + ArtUnc_64: 1.10437949e-05 + ArtUnc_65: -6.85797720e-06 + ArtUnc_66: 1.57823017e-06 + ArtUnc_67: 1.85708896e-07 + ArtUnc_68: 7.24148350e-06 + ArtUnc_69: 9.09322301e-06 + ArtUnc_70: -2.25143223e-07 + ArtUnc_71: 4.91621317e-07 + ArtUnc_72: -5.36003493e-07 + ArtUnc_73: 1.54274695e-06 + ArtUnc_74: -2.35151489e-06 + ArtUnc_75: -4.31753594e-07 + ArtUnc_76: 1.12729350e-07 + ArtUnc_77: 7.51792675e-07 + ArtUnc_78: 5.09570702e-07 + ArtUnc_79: -7.86649143e-07 + ArtUnc_80: 9.43488938e-08 + ArtUnc_81: -1.19803824e-08 + ArtUnc_82: -4.25854109e-10 + ArtUnc_83: -4.41215923e-08 + ArtUnc_84: -2.57366928e-08 + ArtUnc_85: 4.27101978e-08 + ArtUnc_86: 8.34880406e-09 + ArtUnc_87: 1.76612937e-08 + ArtUnc_88: 7.80158296e-09 + ArtUnc_89: -5.73503768e-10 + ArtUnc_90: -9.14715694e-08 + ArtUnc_91: 2.08375865e-08 + ArtUnc_92: 4.85262446e-09 + ArtUnc_93: -1.30731513e-07 + ArtUnc_94: 8.73344191e-08 + ArtUnc_95: 2.35664596e-08 + ArtUnc_96: -8.36454382e-09 - stat: 0 Uncorr: 1.48 - RCES: 1.376698354760403 - ElEn: 0.27569345295091796 - ElTh: 0.5994913510635496 + RCES: 1.37669835e+00 + ElEn: 2.75693453e-01 + ElTh: 5.99491351e-01 Lumi: 3.7 LArN: 0.888 StatMC: 1.1988 RadErr: 0.6956 - Model_1: 1.8314065632731578 - Model_2: 1.8314065632731578 - ModelRW_1: 0.638376002055215 - ModelRW_2: 0.638376002055215 - JES_1: 2.2450678029850235 - JES_2: 2.2450678029850235 - ArtUnc_1: 0.1320383969101628 - ArtUnc_2: -0.0018981155812127922 - ArtUnc_3: 0.030449734167063938 - ArtUnc_4: 0.016599559452785167 - ArtUnc_5: -0.007039446793516058 - ArtUnc_6: -0.0016744990704085601 - ArtUnc_7: 0.00015496188070738973 - ArtUnc_8: 0.04741118864007513 - ArtUnc_9: 0.0007186835312962168 - ArtUnc_10: -0.4305264015518117 - ArtUnc_11: -0.3402840139397071 - ArtUnc_12: 0.3989521206085828 - ArtUnc_13: 0.09101270589019123 - ArtUnc_14: -0.0454662744015132 - ArtUnc_15: 0.009692340009628061 - ArtUnc_16: 0.03319493653463854 - ArtUnc_17: 0.05060998404362843 - ArtUnc_18: -0.06042621545255102 - ArtUnc_19: 0.04212580899411449 - ArtUnc_20: 0.015698438313396287 - ArtUnc_21: -0.027948389494300365 - ArtUnc_22: 0.03784757413331094 - ArtUnc_23: 0.021509993525674447 - ArtUnc_24: -0.0004039371438018868 - ArtUnc_25: 3.2719289748556997 - ArtUnc_26: 1.3315714679588329 - ArtUnc_27: 0.3873789388962019 - ArtUnc_28: 0.6847540037957462 - ArtUnc_29: 0.020893158405177158 - ArtUnc_30: 0.24155149523280334 - ArtUnc_31: -0.05080766078860241 - ArtUnc_32: -0.08409477654661683 - ArtUnc_33: -0.056203225073985175 - ArtUnc_34: -0.08167182024114937 - ArtUnc_35: -0.08773620671064794 - ArtUnc_36: -0.037061892254628304 - ArtUnc_37: 0.0024416941282667287 - ArtUnc_38: 0.005311259237549614 - ArtUnc_39: 0.004140830387009761 - ArtUnc_40: 0.0023273358670159597 - ArtUnc_41: 0.016608369052248613 - ArtUnc_42: 0.017377037665656427 - ArtUnc_43: -0.007473878582718413 - ArtUnc_44: -0.01136699783501941 - ArtUnc_45: 0.012081466399688854 - ArtUnc_46: -0.006010521471543492 - ArtUnc_47: 0.014787560023833185 - ArtUnc_48: -0.004711128239898752 - ArtUnc_49: -0.007430677269866188 - ArtUnc_50: -0.006807979909466713 - ArtUnc_51: 0.0006050043502575601 - ArtUnc_52: -0.0001350414213422827 - ArtUnc_53: -0.0072927373415190835 - ArtUnc_54: 0.0021796124008489058 - ArtUnc_55: 0.0010621839197683008 - ArtUnc_56: 0.00038932020161372015 - ArtUnc_57: 2.8675619155647794e-06 - ArtUnc_58: -0.00011801018194304885 - ArtUnc_59: 0.00015106725253573715 - ArtUnc_60: 5.010764059745741e-05 - ArtUnc_61: -9.866999716198439e-06 - ArtUnc_62: -5.093667125678123e-05 - ArtUnc_63: 1.3994054984194227e-06 - ArtUnc_64: -7.893786420285958e-05 - ArtUnc_65: 6.916046599341139e-05 - ArtUnc_66: 4.153359855595592e-06 - ArtUnc_67: -3.7740188390941575e-06 - ArtUnc_68: -4.220146094322869e-06 - ArtUnc_69: -5.492019682323398e-06 - ArtUnc_70: -4.037667501783616e-06 - ArtUnc_71: 6.169350904763874e-06 - ArtUnc_72: -1.9239639399510934e-06 - ArtUnc_73: -2.479148957476188e-06 - ArtUnc_74: 1.4911766742091386e-05 - ArtUnc_75: 2.4181351515257655e-06 - ArtUnc_76: -4.5954891167824075e-07 - ArtUnc_77: -4.5068273257981715e-06 - ArtUnc_78: -3.171597684393666e-06 - ArtUnc_79: 7.267656447246022e-06 - ArtUnc_80: 8.86925522824323e-07 - ArtUnc_81: -3.4742103213120816e-07 - ArtUnc_82: -3.2867253404634625e-09 - ArtUnc_83: 4.799206644697428e-07 - ArtUnc_84: 4.956056692359477e-07 - ArtUnc_85: -3.0571751073164814e-07 - ArtUnc_86: -6.513106602556879e-08 - ArtUnc_87: -1.285266079731519e-07 - ArtUnc_88: -3.941215089842248e-07 - ArtUnc_89: -4.054728722557868e-07 - ArtUnc_90: -1.3450800291205652e-08 - ArtUnc_91: -7.577235197069439e-08 - ArtUnc_92: -1.9418480748555077e-08 - ArtUnc_93: 3.038985099760247e-07 - ArtUnc_94: -2.603149510967458e-07 - ArtUnc_95: 2.5716364133558877e-07 - ArtUnc_96: -1.7915995558900218e-09 + Model_1: 1.83140656e+00 + Model_2: 1.83140656e+00 + ModelRW_1: 6.38376002e-01 + ModelRW_2: 6.38376002e-01 + JES_1: 2.24506780e+00 + JES_2: 2.24506780e+00 + ArtUnc_1: 1.32038397e-01 + ArtUnc_2: -1.89811558e-03 + ArtUnc_3: 3.04497342e-02 + ArtUnc_4: 1.65995595e-02 + ArtUnc_5: -7.03944679e-03 + ArtUnc_6: -1.67449907e-03 + ArtUnc_7: 1.54961881e-04 + ArtUnc_8: 4.74111886e-02 + ArtUnc_9: 7.18683531e-04 + ArtUnc_10: -4.30526402e-01 + ArtUnc_11: -3.40284014e-01 + ArtUnc_12: 3.98952121e-01 + ArtUnc_13: 9.10127059e-02 + ArtUnc_14: -4.54662744e-02 + ArtUnc_15: 9.69234001e-03 + ArtUnc_16: 3.31949365e-02 + ArtUnc_17: 5.06099840e-02 + ArtUnc_18: -6.04262155e-02 + ArtUnc_19: 4.21258090e-02 + ArtUnc_20: 1.56984383e-02 + ArtUnc_21: -2.79483895e-02 + ArtUnc_22: 3.78475741e-02 + ArtUnc_23: 2.15099935e-02 + ArtUnc_24: -4.03937144e-04 + ArtUnc_25: 3.27192897e+00 + ArtUnc_26: 1.33157147e+00 + ArtUnc_27: 3.87378939e-01 + ArtUnc_28: 6.84754004e-01 + ArtUnc_29: 2.08931584e-02 + ArtUnc_30: 2.41551495e-01 + ArtUnc_31: -5.08076608e-02 + ArtUnc_32: -8.40947765e-02 + ArtUnc_33: -5.62032251e-02 + ArtUnc_34: -8.16718202e-02 + ArtUnc_35: -8.77362067e-02 + ArtUnc_36: -3.70618923e-02 + ArtUnc_37: 2.44169413e-03 + ArtUnc_38: 5.31125924e-03 + ArtUnc_39: 4.14083039e-03 + ArtUnc_40: 2.32733587e-03 + ArtUnc_41: 1.66083691e-02 + ArtUnc_42: 1.73770377e-02 + ArtUnc_43: -7.47387858e-03 + ArtUnc_44: -1.13669978e-02 + ArtUnc_45: 1.20814664e-02 + ArtUnc_46: -6.01052147e-03 + ArtUnc_47: 1.47875600e-02 + ArtUnc_48: -4.71112824e-03 + ArtUnc_49: -7.43067727e-03 + ArtUnc_50: -6.80797991e-03 + ArtUnc_51: 6.05004350e-04 + ArtUnc_52: -1.35041421e-04 + ArtUnc_53: -7.29273734e-03 + ArtUnc_54: 2.17961240e-03 + ArtUnc_55: 1.06218392e-03 + ArtUnc_56: 3.89320202e-04 + ArtUnc_57: 2.86756192e-06 + ArtUnc_58: -1.18010182e-04 + ArtUnc_59: 1.51067253e-04 + ArtUnc_60: 5.01076406e-05 + ArtUnc_61: -9.86699972e-06 + ArtUnc_62: -5.09366713e-05 + ArtUnc_63: 1.39940550e-06 + ArtUnc_64: -7.89378642e-05 + ArtUnc_65: 6.91604660e-05 + ArtUnc_66: 4.15335986e-06 + ArtUnc_67: -3.77401884e-06 + ArtUnc_68: -4.22014609e-06 + ArtUnc_69: -5.49201968e-06 + ArtUnc_70: -4.03766750e-06 + ArtUnc_71: 6.16935090e-06 + ArtUnc_72: -1.92396394e-06 + ArtUnc_73: -2.47914896e-06 + ArtUnc_74: 1.49117667e-05 + ArtUnc_75: 2.41813515e-06 + ArtUnc_76: -4.59548912e-07 + ArtUnc_77: -4.50682733e-06 + ArtUnc_78: -3.17159768e-06 + ArtUnc_79: 7.26765645e-06 + ArtUnc_80: 8.86925523e-07 + ArtUnc_81: -3.47421032e-07 + ArtUnc_82: -3.28672534e-09 + ArtUnc_83: 4.79920664e-07 + ArtUnc_84: 4.95605669e-07 + ArtUnc_85: -3.05717511e-07 + ArtUnc_86: -6.51310660e-08 + ArtUnc_87: -1.28526608e-07 + ArtUnc_88: -3.94121509e-07 + ArtUnc_89: -4.05472872e-07 + ArtUnc_90: -1.34508003e-08 + ArtUnc_91: -7.57723520e-08 + ArtUnc_92: -1.94184807e-08 + ArtUnc_93: 3.03898510e-07 + ArtUnc_94: -2.60314951e-07 + ArtUnc_95: 2.57163641e-07 + ArtUnc_96: -1.79159956e-09 - stat: 0 - Uncorr: 0.36200000000000004 - RCES: 0.17767526445738022 - ElEn: 0.1255571312192183 - ElTh: 0.18496570574028043 + Uncorr: 3.62000000e-01 + RCES: 1.77675264e-01 + ElEn: 1.25557131e-01 + ElTh: 1.84965706e-01 Lumi: 0.905 - LArN: 0.21720000000000003 + LArN: 2.17200000e-01 StatMC: 0.29684 RadErr: 0.30408 - Model_1: 0.924061283790204 - Model_2: 0.924061283790204 - ModelRW_1: 0.8037541360391249 - ModelRW_2: 0.8037541360391249 - JES_1: 0.9612718978520075 - JES_2: 0.9612718978520075 - ArtUnc_1: 0.009828482441487745 - ArtUnc_2: -0.00460871700064456 - ArtUnc_3: -0.002367722967671026 - ArtUnc_4: -0.00029926032901598235 - ArtUnc_5: -0.00012690827336534974 - ArtUnc_6: -6.2210660451003455e-06 - ArtUnc_7: -8.451570832595379e-05 - ArtUnc_8: 0.02751057521746776 - ArtUnc_9: 1.5723655127338393e-05 - ArtUnc_10: 0.017825203774346893 - ArtUnc_11: -0.006729346020044204 - ArtUnc_12: 0.015601139436504471 - ArtUnc_13: -0.007047244784114975 - ArtUnc_14: -0.0065521735181942676 - ArtUnc_15: -0.005325434628903351 - ArtUnc_16: 0.0064917673106256015 - ArtUnc_17: -0.0034180238988290863 - ArtUnc_18: 0.0016271913888590524 - ArtUnc_19: -0.0010176831113118696 - ArtUnc_20: 0.0012412268220376775 - ArtUnc_21: 0.0013910730652472933 - ArtUnc_22: -0.0009017674683374423 - ArtUnc_23: 4.585804574036141e-05 - ArtUnc_24: -0.0001413221668135053 - ArtUnc_25: 0.048844340697331595 - ArtUnc_26: 0.04181590905252278 - ArtUnc_27: 0.32589663868765795 - ArtUnc_28: -0.046280711933589666 - ArtUnc_29: -0.030819773195066773 - ArtUnc_30: 0.14587854716562404 - ArtUnc_31: -0.0016396219494746182 - ArtUnc_32: -0.0678545120748393 - ArtUnc_33: -0.022661813340476022 - ArtUnc_34: -0.04182033033426591 - ArtUnc_35: -0.06905773771897107 - ArtUnc_36: -0.026864389685190497 - ArtUnc_37: -0.004292649218077433 - ArtUnc_38: 0.0050802906960727345 - ArtUnc_39: 0.0008362842858768569 - ArtUnc_40: 0.0003095012144619919 - ArtUnc_41: -0.7052015856251063 - ArtUnc_42: -0.6327097492563641 - ArtUnc_43: 0.12172801961898926 - ArtUnc_44: 0.22099531757298294 - ArtUnc_45: -0.23647012932139355 - ArtUnc_46: 0.08099032950666608 - ArtUnc_47: -0.20664841683345517 - ArtUnc_48: 0.038265988932915405 - ArtUnc_49: 0.09491404193287561 - ArtUnc_50: 0.09824741575171583 - ArtUnc_51: -0.004617328215157453 - ArtUnc_52: 0.0017742998422925309 - ArtUnc_53: 0.09017523379420407 - ArtUnc_54: -0.028143182158681345 - ArtUnc_55: -0.011196793347803947 - ArtUnc_56: -0.0034442880899961553 - ArtUnc_57: 0.0010036416826926242 - ArtUnc_58: -0.0028231731389436556 - ArtUnc_59: 0.0012046531993427795 - ArtUnc_60: 0.0003414476538073182 - ArtUnc_61: 2.537222981374834e-05 - ArtUnc_62: -0.00032734669173514557 - ArtUnc_63: -0.00028632491468644916 - ArtUnc_64: -0.0006345923426677774 - ArtUnc_65: 0.0005386105751243396 - ArtUnc_66: -0.0011505629179389587 - ArtUnc_67: 0.0004560945531371202 - ArtUnc_68: 0.003014846949041353 - ArtUnc_69: 0.0020738004664223268 - ArtUnc_70: -0.00037625735442800627 - ArtUnc_71: 0.0004925221551271979 - ArtUnc_72: -0.00026471775867246614 - ArtUnc_73: 0.0002693477913324866 - ArtUnc_74: -0.00026473689865880184 - ArtUnc_75: -3.595203059976877e-05 - ArtUnc_76: 1.2460882397148897e-06 - ArtUnc_77: 4.642367619193105e-05 - ArtUnc_78: 3.913418086393189e-05 - ArtUnc_79: -6.51698698504578e-05 - ArtUnc_80: 4.185286658640881e-07 - ArtUnc_81: 1.355320199362528e-06 - ArtUnc_82: -1.3444472389898236e-09 - ArtUnc_83: -1.3574624362073272e-06 - ArtUnc_84: -3.5302943668521003e-06 - ArtUnc_85: 1.2092535550324354e-06 - ArtUnc_86: -2.392580188600286e-06 - ArtUnc_87: -2.9287647151749426e-06 - ArtUnc_88: -7.154831036187616e-06 - ArtUnc_89: -4.048195228634956e-06 - ArtUnc_90: 2.553863669683389e-06 - ArtUnc_91: -6.988055593524728e-07 - ArtUnc_92: -7.503800177848302e-08 - ArtUnc_93: -1.0256192208288061e-05 - ArtUnc_94: 3.073421133961953e-06 - ArtUnc_95: -2.478932443424516e-06 - ArtUnc_96: -9.190338720973543e-08 + Model_1: 9.24061284e-01 + Model_2: 9.24061284e-01 + ModelRW_1: 8.03754136e-01 + ModelRW_2: 8.03754136e-01 + JES_1: 9.61271898e-01 + JES_2: 9.61271898e-01 + ArtUnc_1: 9.82848244e-03 + ArtUnc_2: -4.60871700e-03 + ArtUnc_3: -2.36772297e-03 + ArtUnc_4: -2.99260329e-04 + ArtUnc_5: -1.26908273e-04 + ArtUnc_6: -6.22106605e-06 + ArtUnc_7: -8.45157083e-05 + ArtUnc_8: 2.75105752e-02 + ArtUnc_9: 1.57236551e-05 + ArtUnc_10: 1.78252038e-02 + ArtUnc_11: -6.72934602e-03 + ArtUnc_12: 1.56011394e-02 + ArtUnc_13: -7.04724478e-03 + ArtUnc_14: -6.55217352e-03 + ArtUnc_15: -5.32543463e-03 + ArtUnc_16: 6.49176731e-03 + ArtUnc_17: -3.41802390e-03 + ArtUnc_18: 1.62719139e-03 + ArtUnc_19: -1.01768311e-03 + ArtUnc_20: 1.24122682e-03 + ArtUnc_21: 1.39107307e-03 + ArtUnc_22: -9.01767468e-04 + ArtUnc_23: 4.58580457e-05 + ArtUnc_24: -1.41322167e-04 + ArtUnc_25: 4.88443407e-02 + ArtUnc_26: 4.18159091e-02 + ArtUnc_27: 3.25896639e-01 + ArtUnc_28: -4.62807119e-02 + ArtUnc_29: -3.08197732e-02 + ArtUnc_30: 1.45878547e-01 + ArtUnc_31: -1.63962195e-03 + ArtUnc_32: -6.78545121e-02 + ArtUnc_33: -2.26618133e-02 + ArtUnc_34: -4.18203303e-02 + ArtUnc_35: -6.90577377e-02 + ArtUnc_36: -2.68643897e-02 + ArtUnc_37: -4.29264922e-03 + ArtUnc_38: 5.08029070e-03 + ArtUnc_39: 8.36284286e-04 + ArtUnc_40: 3.09501214e-04 + ArtUnc_41: -7.05201586e-01 + ArtUnc_42: -6.32709749e-01 + ArtUnc_43: 1.21728020e-01 + ArtUnc_44: 2.20995318e-01 + ArtUnc_45: -2.36470129e-01 + ArtUnc_46: 8.09903295e-02 + ArtUnc_47: -2.06648417e-01 + ArtUnc_48: 3.82659889e-02 + ArtUnc_49: 9.49140419e-02 + ArtUnc_50: 9.82474158e-02 + ArtUnc_51: -4.61732822e-03 + ArtUnc_52: 1.77429984e-03 + ArtUnc_53: 9.01752338e-02 + ArtUnc_54: -2.81431822e-02 + ArtUnc_55: -1.11967933e-02 + ArtUnc_56: -3.44428809e-03 + ArtUnc_57: 1.00364168e-03 + ArtUnc_58: -2.82317314e-03 + ArtUnc_59: 1.20465320e-03 + ArtUnc_60: 3.41447654e-04 + ArtUnc_61: 2.53722298e-05 + ArtUnc_62: -3.27346692e-04 + ArtUnc_63: -2.86324915e-04 + ArtUnc_64: -6.34592343e-04 + ArtUnc_65: 5.38610575e-04 + ArtUnc_66: -1.15056292e-03 + ArtUnc_67: 4.56094553e-04 + ArtUnc_68: 3.01484695e-03 + ArtUnc_69: 2.07380047e-03 + ArtUnc_70: -3.76257354e-04 + ArtUnc_71: 4.92522155e-04 + ArtUnc_72: -2.64717759e-04 + ArtUnc_73: 2.69347791e-04 + ArtUnc_74: -2.64736899e-04 + ArtUnc_75: -3.59520306e-05 + ArtUnc_76: 1.24608824e-06 + ArtUnc_77: 4.64236762e-05 + ArtUnc_78: 3.91341809e-05 + ArtUnc_79: -6.51698699e-05 + ArtUnc_80: 4.18528666e-07 + ArtUnc_81: 1.35532020e-06 + ArtUnc_82: -1.34444724e-09 + ArtUnc_83: -1.35746244e-06 + ArtUnc_84: -3.53029437e-06 + ArtUnc_85: 1.20925356e-06 + ArtUnc_86: -2.39258019e-06 + ArtUnc_87: -2.92876472e-06 + ArtUnc_88: -7.15483104e-06 + ArtUnc_89: -4.04819523e-06 + ArtUnc_90: 2.55386367e-06 + ArtUnc_91: -6.98805559e-07 + ArtUnc_92: -7.50380018e-08 + ArtUnc_93: -1.02561922e-05 + ArtUnc_94: 3.07342113e-06 + ArtUnc_95: -2.47893244e-06 + ArtUnc_96: -9.19033872e-08 - stat: 0 - Uncorr: 0.06820000000000001 - RCES: 0.04442302163293263 - ElEn: 0.006716921020824944 - ElTh: 0.027893299751015475 + Uncorr: 6.82000000e-02 + RCES: 4.44230216e-02 + ElEn: 6.71692102e-03 + ElTh: 2.78932998e-02 Lumi: 0.1705 LArN: 0.04092 StatMC: 0.096162 RadErr: 0.053878 - Model_1: 0.19048749578384402 - Model_2: 0.19048749578384402 - ModelRW_1: 0.0303815499604612 - ModelRW_2: 0.0303815499604612 - JES_1: 0.1931425625528977 - JES_2: 0.1931425625528977 - ArtUnc_1: -6.164644459496338e-08 - ArtUnc_2: 3.922489697003599e-06 - ArtUnc_3: 3.676532891100279e-06 - ArtUnc_4: 5.564873447651579e-07 - ArtUnc_5: 6.59743217294973e-07 - ArtUnc_6: 4.992344983248174e-07 - ArtUnc_7: -1.1475159678064252e-07 - ArtUnc_8: -9.852689490555703e-05 - ArtUnc_9: -4.407965694973057e-07 - ArtUnc_10: 0.0001792344528930398 - ArtUnc_11: 7.616657232721964e-05 - ArtUnc_12: -4.4728975211666266e-05 - ArtUnc_13: -4.0797786142070816e-05 - ArtUnc_14: 1.1653214759857445e-05 - ArtUnc_15: 2.9468682734613832e-05 - ArtUnc_16: -4.060088063743114e-05 - ArtUnc_17: 4.8986111224387076e-05 - ArtUnc_18: -2.500089489249813e-05 - ArtUnc_19: 1.8892070928952376e-05 - ArtUnc_20: -3.2089415329472654e-05 - ArtUnc_21: -3.1833271314447314e-05 - ArtUnc_22: 1.9025728150568153e-05 - ArtUnc_23: 7.026400508713268e-06 - ArtUnc_24: -5.427374187542625e-07 - ArtUnc_25: 0.00180497943837816 - ArtUnc_26: -0.0011801587967399964 - ArtUnc_27: -0.009578494181615448 - ArtUnc_28: 0.0008501682735662387 - ArtUnc_29: 0.0009006503708527966 - ArtUnc_30: -0.004665811728323744 - ArtUnc_31: 0.00010043484313485591 - ArtUnc_32: 0.002013123413600144 - ArtUnc_33: 0.0006497633601117199 - ArtUnc_34: 0.0008514052295296975 - ArtUnc_35: 0.001151055185015836 - ArtUnc_36: -5.32719746780574e-05 - ArtUnc_37: -0.00018763487850387555 - ArtUnc_38: 0.000374601437531586 - ArtUnc_39: 0.00020843676093705043 - ArtUnc_40: 3.0350509533418895e-05 - ArtUnc_41: 0.10266260140158713 - ArtUnc_42: -0.09840882032617902 - ArtUnc_43: -0.0687136256878946 - ArtUnc_44: -0.009317374694874054 - ArtUnc_45: -0.03518183522111571 - ArtUnc_46: -0.029312409153198906 - ArtUnc_47: 0.013643854055219597 - ArtUnc_48: -0.03382659436727794 - ArtUnc_49: 0.004633542472207272 - ArtUnc_50: 0.02025841501175562 - ArtUnc_51: -0.0023840751346399375 - ArtUnc_52: 0.004771693908960994 - ArtUnc_53: 0.022523688368749763 - ArtUnc_54: -0.009567457581226015 - ArtUnc_55: -0.009843605589854792 - ArtUnc_56: 0.001517061341357972 - ArtUnc_57: 0.06258888615097814 - ArtUnc_58: -0.26121858121934405 - ArtUnc_59: 0.10808008735278782 - ArtUnc_60: 0.023049073521630416 - ArtUnc_61: -0.14287717897482147 - ArtUnc_62: 0.04647436774649283 - ArtUnc_63: 0.05445480327220324 - ArtUnc_64: 0.020264268067555387 - ArtUnc_65: -0.002083777069281772 - ArtUnc_66: 0.06705184198137516 - ArtUnc_67: -0.021510300671449198 - ArtUnc_68: -0.08355834520654506 - ArtUnc_69: -0.04248293594777888 - ArtUnc_70: 0.0015854931928314551 - ArtUnc_71: -0.009286362438022215 - ArtUnc_72: 0.005984455381454388 - ArtUnc_73: 0.0016273501516143546 - ArtUnc_74: -0.001251898970055017 - ArtUnc_75: -5.0258160043893535e-05 - ArtUnc_76: -5.509821488616488e-05 - ArtUnc_77: -0.0001441671182925708 - ArtUnc_78: -0.00010278516747378758 - ArtUnc_79: 0.0006061054586888791 - ArtUnc_80: -6.34313564224788e-05 - ArtUnc_81: 7.291486148520376e-05 - ArtUnc_82: 3.946880946781465e-07 - ArtUnc_83: 0.0001346940923443161 - ArtUnc_84: -0.00010207049142693918 - ArtUnc_85: -0.00010050144195659215 - ArtUnc_86: 0.0001167991316420489 - ArtUnc_87: 7.445854981989877e-05 - ArtUnc_88: -0.00020777512486746868 - ArtUnc_89: -0.00011443435620054819 - ArtUnc_90: 3.887377084194982e-05 - ArtUnc_91: 2.3285955195096784e-05 - ArtUnc_92: 4.009384033282361e-06 - ArtUnc_93: -0.0002676195551706283 - ArtUnc_94: 8.669785835343736e-05 - ArtUnc_95: 8.024371620577143e-06 - ArtUnc_96: -2.1333954408291494e-05 + Model_1: 1.90487496e-01 + Model_2: 1.90487496e-01 + ModelRW_1: 3.03815500e-02 + ModelRW_2: 3.03815500e-02 + JES_1: 1.93142563e-01 + JES_2: 1.93142563e-01 + ArtUnc_1: -6.16464446e-08 + ArtUnc_2: 3.92248970e-06 + ArtUnc_3: 3.67653289e-06 + ArtUnc_4: 5.56487345e-07 + ArtUnc_5: 6.59743217e-07 + ArtUnc_6: 4.99234498e-07 + ArtUnc_7: -1.14751597e-07 + ArtUnc_8: -9.85268949e-05 + ArtUnc_9: -4.40796569e-07 + ArtUnc_10: 1.79234453e-04 + ArtUnc_11: 7.61665723e-05 + ArtUnc_12: -4.47289752e-05 + ArtUnc_13: -4.07977861e-05 + ArtUnc_14: 1.16532148e-05 + ArtUnc_15: 2.94686827e-05 + ArtUnc_16: -4.06008806e-05 + ArtUnc_17: 4.89861112e-05 + ArtUnc_18: -2.50008949e-05 + ArtUnc_19: 1.88920709e-05 + ArtUnc_20: -3.20894153e-05 + ArtUnc_21: -3.18332713e-05 + ArtUnc_22: 1.90257282e-05 + ArtUnc_23: 7.02640051e-06 + ArtUnc_24: -5.42737419e-07 + ArtUnc_25: 1.80497944e-03 + ArtUnc_26: -1.18015880e-03 + ArtUnc_27: -9.57849418e-03 + ArtUnc_28: 8.50168274e-04 + ArtUnc_29: 9.00650371e-04 + ArtUnc_30: -4.66581173e-03 + ArtUnc_31: 1.00434843e-04 + ArtUnc_32: 2.01312341e-03 + ArtUnc_33: 6.49763360e-04 + ArtUnc_34: 8.51405230e-04 + ArtUnc_35: 1.15105519e-03 + ArtUnc_36: -5.32719747e-05 + ArtUnc_37: -1.87634879e-04 + ArtUnc_38: 3.74601438e-04 + ArtUnc_39: 2.08436761e-04 + ArtUnc_40: 3.03505095e-05 + ArtUnc_41: 1.02662601e-01 + ArtUnc_42: -9.84088203e-02 + ArtUnc_43: -6.87136257e-02 + ArtUnc_44: -9.31737469e-03 + ArtUnc_45: -3.51818352e-02 + ArtUnc_46: -2.93124092e-02 + ArtUnc_47: 1.36438541e-02 + ArtUnc_48: -3.38265944e-02 + ArtUnc_49: 4.63354247e-03 + ArtUnc_50: 2.02584150e-02 + ArtUnc_51: -2.38407513e-03 + ArtUnc_52: 4.77169391e-03 + ArtUnc_53: 2.25236884e-02 + ArtUnc_54: -9.56745758e-03 + ArtUnc_55: -9.84360559e-03 + ArtUnc_56: 1.51706134e-03 + ArtUnc_57: 6.25888862e-02 + ArtUnc_58: -2.61218581e-01 + ArtUnc_59: 1.08080087e-01 + ArtUnc_60: 2.30490735e-02 + ArtUnc_61: -1.42877179e-01 + ArtUnc_62: 4.64743677e-02 + ArtUnc_63: 5.44548033e-02 + ArtUnc_64: 2.02642681e-02 + ArtUnc_65: -2.08377707e-03 + ArtUnc_66: 6.70518420e-02 + ArtUnc_67: -2.15103007e-02 + ArtUnc_68: -8.35583452e-02 + ArtUnc_69: -4.24829359e-02 + ArtUnc_70: 1.58549319e-03 + ArtUnc_71: -9.28636244e-03 + ArtUnc_72: 5.98445538e-03 + ArtUnc_73: 1.62735015e-03 + ArtUnc_74: -1.25189897e-03 + ArtUnc_75: -5.02581600e-05 + ArtUnc_76: -5.50982149e-05 + ArtUnc_77: -1.44167118e-04 + ArtUnc_78: -1.02785167e-04 + ArtUnc_79: 6.06105459e-04 + ArtUnc_80: -6.34313564e-05 + ArtUnc_81: 7.29148615e-05 + ArtUnc_82: 3.94688095e-07 + ArtUnc_83: 1.34694092e-04 + ArtUnc_84: -1.02070491e-04 + ArtUnc_85: -1.00501442e-04 + ArtUnc_86: 1.16799132e-04 + ArtUnc_87: 7.44585498e-05 + ArtUnc_88: -2.07775125e-04 + ArtUnc_89: -1.14434356e-04 + ArtUnc_90: 3.88737708e-05 + ArtUnc_91: 2.32859552e-05 + ArtUnc_92: 4.00938403e-06 + ArtUnc_93: -2.67619555e-04 + ArtUnc_94: 8.66978584e-05 + ArtUnc_95: 8.02437162e-06 + ArtUnc_96: -2.13339544e-05 - stat: 0 - Uncorr: 0.010700000000000001 - RCES: 0.017544982210022333 - ElEn: 0.015589352873034854 - ElTh: 0.010845599384082008 - Lumi: 0.026750000000000003 + Uncorr: 1.07000000e-02 + RCES: 1.75449822e-02 + ElEn: 1.55893529e-02 + ElTh: 1.08455994e-02 + Lumi: 2.67500000e-02 LArN: 0.00642 StatMC: 0.039376 - RadErr: 0.019153000000000003 - Model_1: 0.0006809438302826452 - Model_2: 0.0006809438302826452 - ModelRW_1: 0.005674531919022044 - ModelRW_2: 0.005674531919022044 - JES_1: 0.03119437690313753 - JES_2: 0.03119437690313753 - ArtUnc_1: -2.8171268199507716e-08 - ArtUnc_2: 4.468404998851395e-07 - ArtUnc_3: 6.065669381628866e-07 - ArtUnc_4: 2.2074680006442324e-07 - ArtUnc_5: -2.7226297566834386e-08 - ArtUnc_6: 1.0502030776599082e-08 - ArtUnc_7: 6.247091281933477e-09 - ArtUnc_8: -1.3352960960347073e-05 - ArtUnc_9: -5.195880523141805e-08 - ArtUnc_10: 2.1743112544614577e-05 - ArtUnc_11: 1.4384283433486833e-05 - ArtUnc_12: -6.488154730178476e-06 - ArtUnc_13: -1.2077849621583853e-05 - ArtUnc_14: -9.85196993995112e-07 - ArtUnc_15: -5.508344773231818e-06 - ArtUnc_16: -8.576868897751414e-07 - ArtUnc_17: 1.703642990227518e-06 - ArtUnc_18: 2.2576529075168028e-07 - ArtUnc_19: 1.2942610814684423e-06 - ArtUnc_20: -5.002398679556529e-06 - ArtUnc_21: -3.8253376283432924e-06 - ArtUnc_22: 1.7604760363566307e-06 - ArtUnc_23: 6.148453534215448e-07 - ArtUnc_24: -8.64776660808692e-08 - ArtUnc_25: 0.00021897760157158004 - ArtUnc_26: -0.00010417696531048306 - ArtUnc_27: -0.0012450843536182764 - ArtUnc_28: 0.0001734897536596235 - ArtUnc_29: 0.00015219103957132238 - ArtUnc_30: -0.0007465051590978547 - ArtUnc_31: 2.0704047749812754e-05 - ArtUnc_32: 0.0004343764298588992 - ArtUnc_33: 0.0001240490801374033 - ArtUnc_34: 0.0002862893515864769 - ArtUnc_35: 0.000496359061452056 - ArtUnc_36: 0.00020282456223106611 - ArtUnc_37: 3.709434707071476e-05 - ArtUnc_38: -4.1061827783918016e-05 - ArtUnc_39: -6.799893174198059e-06 - ArtUnc_40: -1.495482406591319e-06 - ArtUnc_41: 0.0008081930040474229 - ArtUnc_42: 0.0021086839281373873 - ArtUnc_43: 0.00035821304071842616 - ArtUnc_44: -0.0005399654934635183 - ArtUnc_45: 0.001316493409075148 - ArtUnc_46: 0.0002010143782132027 - ArtUnc_47: 0.0006350875907164479 - ArtUnc_48: 0.0004759382595654312 - ArtUnc_49: -0.0006023760092153574 - ArtUnc_50: -0.0009495179427241272 - ArtUnc_51: 6.923725304565707e-05 - ArtUnc_52: -7.658225400022983e-05 - ArtUnc_53: -0.0009883270985561877 - ArtUnc_54: 0.00035012232252784885 - ArtUnc_55: 0.00023812194477975467 - ArtUnc_56: -4.123660112127637e-06 - ArtUnc_57: -0.02066127195479415 - ArtUnc_58: 0.030126179151983706 - ArtUnc_59: 0.046329830103050265 - ArtUnc_60: 0.01702587416560102 - ArtUnc_61: -0.008563593972697963 - ArtUnc_62: -0.012710627449860143 - ArtUnc_63: 0.004931348879743005 - ArtUnc_64: -0.019511390532134486 - ArtUnc_65: 0.01837312552201359 - ArtUnc_66: 0.006955319069816964 - ArtUnc_67: -0.001832830663475033 - ArtUnc_68: -0.00026029931124660403 - ArtUnc_69: 0.000548424930784027 - ArtUnc_70: -0.00014018403238890204 - ArtUnc_71: 0.0007404022609201388 - ArtUnc_72: -0.0002691231477139737 - ArtUnc_73: 0.07358766616309388 - ArtUnc_74: -0.0893527526264328 - ArtUnc_75: -0.012055679340105704 - ArtUnc_76: -0.0027011264050323686 - ArtUnc_77: 0.021387610532927363 - ArtUnc_78: 0.013447794794430668 - ArtUnc_79: -0.04306806542957896 - ArtUnc_80: 0.0002503528763656325 - ArtUnc_81: -0.0004905800793986709 - ArtUnc_82: -2.433948835170254e-06 - ArtUnc_83: 0.00034942425994394585 - ArtUnc_84: 0.0003703550434099853 - ArtUnc_85: -0.00018102905776399447 - ArtUnc_86: -0.00014389325348863863 - ArtUnc_87: -0.0003998668211764174 - ArtUnc_88: 0.00260042890848475 - ArtUnc_89: -0.0023811496247879713 - ArtUnc_90: -0.0006337108544291929 - ArtUnc_91: -0.000159910268279095 - ArtUnc_92: -3.0413386783324703e-05 - ArtUnc_93: 0.004616274227591099 - ArtUnc_94: 0.0008602099782936573 - ArtUnc_95: 0.0007644310356287082 - ArtUnc_96: -1.4366715556144155e-06 + RadErr: 1.91530000e-02 + Model_1: 6.80943830e-04 + Model_2: 6.80943830e-04 + ModelRW_1: 5.67453192e-03 + ModelRW_2: 5.67453192e-03 + JES_1: 3.11943769e-02 + JES_2: 3.11943769e-02 + ArtUnc_1: -2.81712682e-08 + ArtUnc_2: 4.46840500e-07 + ArtUnc_3: 6.06566938e-07 + ArtUnc_4: 2.20746800e-07 + ArtUnc_5: -2.72262976e-08 + ArtUnc_6: 1.05020308e-08 + ArtUnc_7: 6.24709128e-09 + ArtUnc_8: -1.33529610e-05 + ArtUnc_9: -5.19588052e-08 + ArtUnc_10: 2.17431125e-05 + ArtUnc_11: 1.43842834e-05 + ArtUnc_12: -6.48815473e-06 + ArtUnc_13: -1.20778496e-05 + ArtUnc_14: -9.85196994e-07 + ArtUnc_15: -5.50834477e-06 + ArtUnc_16: -8.57686890e-07 + ArtUnc_17: 1.70364299e-06 + ArtUnc_18: 2.25765291e-07 + ArtUnc_19: 1.29426108e-06 + ArtUnc_20: -5.00239868e-06 + ArtUnc_21: -3.82533763e-06 + ArtUnc_22: 1.76047604e-06 + ArtUnc_23: 6.14845353e-07 + ArtUnc_24: -8.64776661e-08 + ArtUnc_25: 2.18977602e-04 + ArtUnc_26: -1.04176965e-04 + ArtUnc_27: -1.24508435e-03 + ArtUnc_28: 1.73489754e-04 + ArtUnc_29: 1.52191040e-04 + ArtUnc_30: -7.46505159e-04 + ArtUnc_31: 2.07040477e-05 + ArtUnc_32: 4.34376430e-04 + ArtUnc_33: 1.24049080e-04 + ArtUnc_34: 2.86289352e-04 + ArtUnc_35: 4.96359061e-04 + ArtUnc_36: 2.02824562e-04 + ArtUnc_37: 3.70943471e-05 + ArtUnc_38: -4.10618278e-05 + ArtUnc_39: -6.79989317e-06 + ArtUnc_40: -1.49548241e-06 + ArtUnc_41: 8.08193004e-04 + ArtUnc_42: 2.10868393e-03 + ArtUnc_43: 3.58213041e-04 + ArtUnc_44: -5.39965493e-04 + ArtUnc_45: 1.31649341e-03 + ArtUnc_46: 2.01014378e-04 + ArtUnc_47: 6.35087591e-04 + ArtUnc_48: 4.75938260e-04 + ArtUnc_49: -6.02376009e-04 + ArtUnc_50: -9.49517943e-04 + ArtUnc_51: 6.92372530e-05 + ArtUnc_52: -7.65822540e-05 + ArtUnc_53: -9.88327099e-04 + ArtUnc_54: 3.50122323e-04 + ArtUnc_55: 2.38121945e-04 + ArtUnc_56: -4.12366011e-06 + ArtUnc_57: -2.06612720e-02 + ArtUnc_58: 3.01261792e-02 + ArtUnc_59: 4.63298301e-02 + ArtUnc_60: 1.70258742e-02 + ArtUnc_61: -8.56359397e-03 + ArtUnc_62: -1.27106274e-02 + ArtUnc_63: 4.93134888e-03 + ArtUnc_64: -1.95113905e-02 + ArtUnc_65: 1.83731255e-02 + ArtUnc_66: 6.95531907e-03 + ArtUnc_67: -1.83283066e-03 + ArtUnc_68: -2.60299311e-04 + ArtUnc_69: 5.48424931e-04 + ArtUnc_70: -1.40184032e-04 + ArtUnc_71: 7.40402261e-04 + ArtUnc_72: -2.69123148e-04 + ArtUnc_73: 7.35876662e-02 + ArtUnc_74: -8.93527526e-02 + ArtUnc_75: -1.20556793e-02 + ArtUnc_76: -2.70112641e-03 + ArtUnc_77: 2.13876105e-02 + ArtUnc_78: 1.34477948e-02 + ArtUnc_79: -4.30680654e-02 + ArtUnc_80: 2.50352876e-04 + ArtUnc_81: -4.90580079e-04 + ArtUnc_82: -2.43394884e-06 + ArtUnc_83: 3.49424260e-04 + ArtUnc_84: 3.70355043e-04 + ArtUnc_85: -1.81029058e-04 + ArtUnc_86: -1.43893253e-04 + ArtUnc_87: -3.99866821e-04 + ArtUnc_88: 2.60042891e-03 + ArtUnc_89: -2.38114962e-03 + ArtUnc_90: -6.33710854e-04 + ArtUnc_91: -1.59910268e-04 + ArtUnc_92: -3.04133868e-05 + ArtUnc_93: 4.61627423e-03 + ArtUnc_94: 8.60209978e-04 + ArtUnc_95: 7.64431036e-04 + ArtUnc_96: -1.43667156e-06 - stat: 0 Uncorr: 0.00124 - RCES: 0.0019619057265832115 - ElEn: 0.0017853739440240523 - ElTh: 0.0009903711627465735 + RCES: 1.96190573e-03 + ElEn: 1.78537394e-03 + ElTh: 9.90371163e-04 Lumi: 0.0031 LArN: 0.000744 - StatMC: 0.0129332 - RadErr: 0.009895200000000002 - Model_1: 0.0050942800943803625 - Model_2: 0.0050942800943803625 - ModelRW_1: 0.0076370360795271885 - ModelRW_2: 0.0076370360795271885 - JES_1: 0.008553738722921105 - JES_2: 0.008553738722921105 - ArtUnc_1: 6.041525253143837e-10 - ArtUnc_2: -7.457087380483398e-10 - ArtUnc_3: -1.4082834307497503e-10 - ArtUnc_4: 5.259751980797566e-10 - ArtUnc_5: -6.923695139325593e-10 - ArtUnc_6: -3.3208895333728377e-10 - ArtUnc_7: -8.073137240863234e-12 - ArtUnc_8: 1.2230927873466213e-07 - ArtUnc_9: 5.113647670230508e-10 - ArtUnc_10: -2.244693506634476e-07 - ArtUnc_11: -1.432606521286891e-07 - ArtUnc_12: 1.1530260854438604e-08 - ArtUnc_13: 1.117473288031136e-07 - ArtUnc_14: 2.455820714133376e-08 - ArtUnc_15: 8.883175739142325e-10 - ArtUnc_16: 3.64674416477968e-08 - ArtUnc_17: -8.23673209728863e-08 - ArtUnc_18: 5.197226792066097e-08 - ArtUnc_19: -3.841247467568004e-08 - ArtUnc_20: 6.425356531113657e-08 - ArtUnc_21: 6.155293697544512e-08 - ArtUnc_22: -2.9516761746782553e-08 - ArtUnc_23: -5.562900001094921e-09 - ArtUnc_24: 7.151556918564961e-10 - ArtUnc_25: -1.6089317487759996e-06 - ArtUnc_26: 1.8646694530904163e-06 - ArtUnc_27: 1.1274858886782353e-05 - ArtUnc_28: -6.938518411540835e-07 - ArtUnc_29: -4.555944122477703e-07 - ArtUnc_30: 1.9617264051350774e-06 - ArtUnc_31: 2.1287085831880707e-08 - ArtUnc_32: 4.881844799069134e-07 - ArtUnc_33: 2.179347849928199e-08 - ArtUnc_34: 7.364259583162062e-07 - ArtUnc_35: 1.4923928499667925e-06 - ArtUnc_36: 7.430948147728629e-07 - ArtUnc_37: 1.8178644102041127e-07 - ArtUnc_38: -2.3100931026616919e-07 - ArtUnc_39: -2.047416229297779e-07 - ArtUnc_40: -7.4238034992303e-08 - ArtUnc_41: 0.0005268887524987921 - ArtUnc_42: -0.0005714659827220986 - ArtUnc_43: -0.00027022218346638225 - ArtUnc_44: 1.6398072189473574e-05 - ArtUnc_45: -0.00017043659189344853 - ArtUnc_46: -4.997859356279252e-05 - ArtUnc_47: -3.9402537799913584e-05 - ArtUnc_48: -3.0242333060468175e-05 - ArtUnc_49: 2.5495449976636246e-05 - ArtUnc_50: 6.691827822136524e-06 - ArtUnc_51: 1.4789803073696317e-05 - ArtUnc_52: -2.910302902721402e-05 - ArtUnc_53: -4.8331660677013445e-05 - ArtUnc_54: 2.46139002810582e-05 - ArtUnc_55: 5.0195187470255184e-05 - ArtUnc_56: -7.534173203397271e-06 - ArtUnc_57: -0.0009724406566382886 - ArtUnc_58: 0.002580581925581996 - ArtUnc_59: 0.0003722812543556141 - ArtUnc_60: 0.00024486307773779494 - ArtUnc_61: 0.0007502908776919723 - ArtUnc_62: -0.000603295909081876 - ArtUnc_63: -0.00021837644109062352 - ArtUnc_64: -0.0006049467434411995 - ArtUnc_65: 0.0004698406724156381 - ArtUnc_66: -0.00016047606982258857 - ArtUnc_67: 5.597628896170966e-05 - ArtUnc_68: 0.0002182389788351802 - ArtUnc_69: 1.1008667292203844e-05 - ArtUnc_70: 9.332428840909884e-05 - ArtUnc_71: 1.7410499463531618e-06 - ArtUnc_72: 1.5512309295234166e-05 - ArtUnc_73: 0.001171402712029326 - ArtUnc_74: -0.0002786311578004168 - ArtUnc_75: 0.00028700015729913036 - ArtUnc_76: 0.007224765081852715 - ArtUnc_77: -0.0013220955446067943 - ArtUnc_78: 0.01613476439515324 - ArtUnc_79: 0.0038130671178633353 - ArtUnc_80: -0.005064477730472428 - ArtUnc_81: 0.003436231220562271 - ArtUnc_82: 2.2412802282053842e-05 - ArtUnc_83: 0.022201540076900436 - ArtUnc_84: -0.0044566290856507575 - ArtUnc_85: -0.01742863953471023 - ArtUnc_86: 0.021496483443812036 - ArtUnc_87: 0.013607990667775918 - ArtUnc_88: -0.011385699670263238 - ArtUnc_89: -0.007780802192535263 - ArtUnc_90: 0.001898829632687188 - ArtUnc_91: 0.003959695772808286 - ArtUnc_92: 0.0005860095065112893 - ArtUnc_93: -0.008045285761312283 - ArtUnc_94: 0.0034782788311635373 - ArtUnc_95: 0.00022653556448828135 - ArtUnc_96: -0.004254928877905018 + StatMC: 1.29332000e-02 + RadErr: 9.89520000e-03 + Model_1: 5.09428009e-03 + Model_2: 5.09428009e-03 + ModelRW_1: 7.63703608e-03 + ModelRW_2: 7.63703608e-03 + JES_1: 8.55373872e-03 + JES_2: 8.55373872e-03 + ArtUnc_1: 6.04152525e-10 + ArtUnc_2: -7.45708738e-10 + ArtUnc_3: -1.40828343e-10 + ArtUnc_4: 5.25975198e-10 + ArtUnc_5: -6.92369514e-10 + ArtUnc_6: -3.32088953e-10 + ArtUnc_7: -8.07313724e-12 + ArtUnc_8: 1.22309279e-07 + ArtUnc_9: 5.11364767e-10 + ArtUnc_10: -2.24469351e-07 + ArtUnc_11: -1.43260652e-07 + ArtUnc_12: 1.15302609e-08 + ArtUnc_13: 1.11747329e-07 + ArtUnc_14: 2.45582071e-08 + ArtUnc_15: 8.88317574e-10 + ArtUnc_16: 3.64674416e-08 + ArtUnc_17: -8.23673210e-08 + ArtUnc_18: 5.19722679e-08 + ArtUnc_19: -3.84124747e-08 + ArtUnc_20: 6.42535653e-08 + ArtUnc_21: 6.15529370e-08 + ArtUnc_22: -2.95167617e-08 + ArtUnc_23: -5.56290000e-09 + ArtUnc_24: 7.15155692e-10 + ArtUnc_25: -1.60893175e-06 + ArtUnc_26: 1.86466945e-06 + ArtUnc_27: 1.12748589e-05 + ArtUnc_28: -6.93851841e-07 + ArtUnc_29: -4.55594412e-07 + ArtUnc_30: 1.96172641e-06 + ArtUnc_31: 2.12870858e-08 + ArtUnc_32: 4.88184480e-07 + ArtUnc_33: 2.17934785e-08 + ArtUnc_34: 7.36425958e-07 + ArtUnc_35: 1.49239285e-06 + ArtUnc_36: 7.43094815e-07 + ArtUnc_37: 1.81786441e-07 + ArtUnc_38: -2.31009310e-07 + ArtUnc_39: -2.04741623e-07 + ArtUnc_40: -7.42380350e-08 + ArtUnc_41: 5.26888752e-04 + ArtUnc_42: -5.71465983e-04 + ArtUnc_43: -2.70222183e-04 + ArtUnc_44: 1.63980722e-05 + ArtUnc_45: -1.70436592e-04 + ArtUnc_46: -4.99785936e-05 + ArtUnc_47: -3.94025378e-05 + ArtUnc_48: -3.02423331e-05 + ArtUnc_49: 2.54954500e-05 + ArtUnc_50: 6.69182782e-06 + ArtUnc_51: 1.47898031e-05 + ArtUnc_52: -2.91030290e-05 + ArtUnc_53: -4.83316607e-05 + ArtUnc_54: 2.46139003e-05 + ArtUnc_55: 5.01951875e-05 + ArtUnc_56: -7.53417320e-06 + ArtUnc_57: -9.72440657e-04 + ArtUnc_58: 2.58058193e-03 + ArtUnc_59: 3.72281254e-04 + ArtUnc_60: 2.44863078e-04 + ArtUnc_61: 7.50290878e-04 + ArtUnc_62: -6.03295909e-04 + ArtUnc_63: -2.18376441e-04 + ArtUnc_64: -6.04946743e-04 + ArtUnc_65: 4.69840672e-04 + ArtUnc_66: -1.60476070e-04 + ArtUnc_67: 5.59762890e-05 + ArtUnc_68: 2.18238979e-04 + ArtUnc_69: 1.10086673e-05 + ArtUnc_70: 9.33242884e-05 + ArtUnc_71: 1.74104995e-06 + ArtUnc_72: 1.55123093e-05 + ArtUnc_73: 1.17140271e-03 + ArtUnc_74: -2.78631158e-04 + ArtUnc_75: 2.87000157e-04 + ArtUnc_76: 7.22476508e-03 + ArtUnc_77: -1.32209554e-03 + ArtUnc_78: 1.61347644e-02 + ArtUnc_79: 3.81306712e-03 + ArtUnc_80: -5.06447773e-03 + ArtUnc_81: 3.43623122e-03 + ArtUnc_82: 2.24128023e-05 + ArtUnc_83: 2.22015401e-02 + ArtUnc_84: -4.45662909e-03 + ArtUnc_85: -1.74286395e-02 + ArtUnc_86: 2.14964834e-02 + ArtUnc_87: 1.36079907e-02 + ArtUnc_88: -1.13856997e-02 + ArtUnc_89: -7.78080219e-03 + ArtUnc_90: 1.89882963e-03 + ArtUnc_91: 3.95969577e-03 + ArtUnc_92: 5.86009507e-04 + ArtUnc_93: -8.04528576e-03 + ArtUnc_94: 3.47827883e-03 + ArtUnc_95: 2.26535564e-04 + ArtUnc_96: -4.25492888e-03 - stat: 0 Uncorr: 1.69 - RCES: 11.908181799922271 - ElEn: 0.6783197697251643 - ElTh: 0.8028389424411347 + RCES: 1.19081818e+01 + ElEn: 6.78319770e-01 + ElTh: 8.02838942e-01 Lumi: 4.225 LArN: 1.014 StatMC: 3.042 RadErr: 0.5239 - Model_1: 0.5915905287865922 - Model_2: 0.5915905287865922 - ModelRW_1: 2.1151685145633192 - ModelRW_2: 2.1151685145633192 - JES_1: 5.2278224916068075 - JES_2: 5.2278224916068075 - ArtUnc_1: 0.862390513360958 - ArtUnc_2: -0.058522334197274935 - ArtUnc_3: -0.015617481349614557 - ArtUnc_4: -0.02865956582028775 - ArtUnc_5: 0.024560404389031128 - ArtUnc_6: -0.013697542293582938 - ArtUnc_7: 0.0312667358010939 - ArtUnc_8: -8.052766469309553 - ArtUnc_9: -0.003869570549781359 - ArtUnc_10: -5.440340482204765 - ArtUnc_11: 0.5063656603501565 - ArtUnc_12: 0.13134908148404048 - ArtUnc_13: 1.5029665042315448 - ArtUnc_14: -0.02868999219755132 - ArtUnc_15: 0.1800281550271725 - ArtUnc_16: 0.01425040702897497 - ArtUnc_17: 0.04851242069982236 - ArtUnc_18: -0.2994043649614981 - ArtUnc_19: 0.07767460929125639 - ArtUnc_20: 0.2717761425707195 - ArtUnc_21: 0.047177105354672885 - ArtUnc_22: 0.03848277959299294 - ArtUnc_23: 0.014740246882677685 - ArtUnc_24: 0.0029896501309716835 - ArtUnc_25: -0.04036369541606761 - ArtUnc_26: -0.09302467152124266 - ArtUnc_27: -0.014597160954110492 - ArtUnc_28: -0.032271023414061836 - ArtUnc_29: 0.011743211789942889 - ArtUnc_30: -0.02075840896967938 - ArtUnc_31: 0.011241230788636522 - ArtUnc_32: 0.007682375996866057 - ArtUnc_33: 0.006482760235225154 - ArtUnc_34: 0.008580794784233063 - ArtUnc_35: 0.004056435036263157 - ArtUnc_36: 0.0008921238755738741 - ArtUnc_37: -0.0021935306004609617 - ArtUnc_38: 0.0009761650792590337 - ArtUnc_39: -0.0005096127087808053 - ArtUnc_40: -0.0005619835756197868 - ArtUnc_41: -0.0031631785001945928 - ArtUnc_42: -0.002833615200537926 - ArtUnc_43: 0.000737177321297061 - ArtUnc_44: 0.001308887822230703 - ArtUnc_45: -0.0012901354777218469 - ArtUnc_46: 0.0007960634160440661 - ArtUnc_47: -0.0016605377633478362 - ArtUnc_48: 0.00041322085193029644 - ArtUnc_49: 0.0007064806487292607 - ArtUnc_50: 0.0008218480678580217 - ArtUnc_51: -0.00013628995667965135 - ArtUnc_52: 7.824198600373727e-05 - ArtUnc_53: 0.0007009699714016272 - ArtUnc_54: -0.00017757524658647804 - ArtUnc_55: 9.061136987685657e-06 - ArtUnc_56: -0.00013438631943932383 - ArtUnc_57: 9.964845519297726e-06 - ArtUnc_58: -1.1228773788767014e-05 - ArtUnc_59: -1.3513642131206547e-05 - ArtUnc_60: -4.997737295236594e-06 - ArtUnc_61: 1.0751982835757547e-05 - ArtUnc_62: 6.1362719694684646e-06 - ArtUnc_63: -7.024195304640522e-06 - ArtUnc_64: 1.104379494273848e-05 - ArtUnc_65: -6.857977199225964e-06 - ArtUnc_66: 1.578230170233843e-06 - ArtUnc_67: 1.8570889589523063e-07 - ArtUnc_68: 7.241483498069554e-06 - ArtUnc_69: 9.093223014310423e-06 - ArtUnc_70: -2.2514322267953912e-07 - ArtUnc_71: 4.916213171292535e-07 - ArtUnc_72: -5.360034925647657e-07 - ArtUnc_73: 1.5427469524348488e-06 - ArtUnc_74: -2.3515148923936133e-06 - ArtUnc_75: -4.317535944850396e-07 - ArtUnc_76: 1.1272934960468206e-07 - ArtUnc_77: 7.517926745290272e-07 - ArtUnc_78: 5.095707024872422e-07 - ArtUnc_79: -7.8664914257136e-07 - ArtUnc_80: 9.434889384442472e-08 - ArtUnc_81: -1.1980382405502867e-08 - ArtUnc_82: -4.258541093895767e-10 - ArtUnc_83: -4.4121592340278306e-08 - ArtUnc_84: -2.5736692776212392e-08 - ArtUnc_85: 4.2710197772578146e-08 - ArtUnc_86: 8.348804058710194e-09 - ArtUnc_87: 1.766129369683349e-08 - ArtUnc_88: 7.80158295685783e-09 - ArtUnc_89: -5.735037683417001e-10 - ArtUnc_90: -9.147156941503087e-08 - ArtUnc_91: 2.083758651128185e-08 - ArtUnc_92: 4.8526244608792894e-09 - ArtUnc_93: -1.3073151315177993e-07 - ArtUnc_94: 8.733441907194496e-08 - ArtUnc_95: 2.3566459633314595e-08 - ArtUnc_96: -8.364543817190556e-09 + Model_1: 5.91590529e-01 + Model_2: 5.91590529e-01 + ModelRW_1: 2.11516851e+00 + ModelRW_2: 2.11516851e+00 + JES_1: 5.22782249e+00 + JES_2: 5.22782249e+00 + ArtUnc_1: 8.62390513e-01 + ArtUnc_2: -5.85223342e-02 + ArtUnc_3: -1.56174813e-02 + ArtUnc_4: -2.86595658e-02 + ArtUnc_5: 2.45604044e-02 + ArtUnc_6: -1.36975423e-02 + ArtUnc_7: 3.12667358e-02 + ArtUnc_8: -8.05276647e+00 + ArtUnc_9: -3.86957055e-03 + ArtUnc_10: -5.44034048e+00 + ArtUnc_11: 5.06365660e-01 + ArtUnc_12: 1.31349081e-01 + ArtUnc_13: 1.50296650e+00 + ArtUnc_14: -2.86899922e-02 + ArtUnc_15: 1.80028155e-01 + ArtUnc_16: 1.42504070e-02 + ArtUnc_17: 4.85124207e-02 + ArtUnc_18: -2.99404365e-01 + ArtUnc_19: 7.76746093e-02 + ArtUnc_20: 2.71776143e-01 + ArtUnc_21: 4.71771054e-02 + ArtUnc_22: 3.84827796e-02 + ArtUnc_23: 1.47402469e-02 + ArtUnc_24: 2.98965013e-03 + ArtUnc_25: -4.03636954e-02 + ArtUnc_26: -9.30246715e-02 + ArtUnc_27: -1.45971610e-02 + ArtUnc_28: -3.22710234e-02 + ArtUnc_29: 1.17432118e-02 + ArtUnc_30: -2.07584090e-02 + ArtUnc_31: 1.12412308e-02 + ArtUnc_32: 7.68237600e-03 + ArtUnc_33: 6.48276024e-03 + ArtUnc_34: 8.58079478e-03 + ArtUnc_35: 4.05643504e-03 + ArtUnc_36: 8.92123876e-04 + ArtUnc_37: -2.19353060e-03 + ArtUnc_38: 9.76165079e-04 + ArtUnc_39: -5.09612709e-04 + ArtUnc_40: -5.61983576e-04 + ArtUnc_41: -3.16317850e-03 + ArtUnc_42: -2.83361520e-03 + ArtUnc_43: 7.37177321e-04 + ArtUnc_44: 1.30888782e-03 + ArtUnc_45: -1.29013548e-03 + ArtUnc_46: 7.96063416e-04 + ArtUnc_47: -1.66053776e-03 + ArtUnc_48: 4.13220852e-04 + ArtUnc_49: 7.06480649e-04 + ArtUnc_50: 8.21848068e-04 + ArtUnc_51: -1.36289957e-04 + ArtUnc_52: 7.82419860e-05 + ArtUnc_53: 7.00969971e-04 + ArtUnc_54: -1.77575247e-04 + ArtUnc_55: 9.06113699e-06 + ArtUnc_56: -1.34386319e-04 + ArtUnc_57: 9.96484552e-06 + ArtUnc_58: -1.12287738e-05 + ArtUnc_59: -1.35136421e-05 + ArtUnc_60: -4.99773730e-06 + ArtUnc_61: 1.07519828e-05 + ArtUnc_62: 6.13627197e-06 + ArtUnc_63: -7.02419530e-06 + ArtUnc_64: 1.10437949e-05 + ArtUnc_65: -6.85797720e-06 + ArtUnc_66: 1.57823017e-06 + ArtUnc_67: 1.85708896e-07 + ArtUnc_68: 7.24148350e-06 + ArtUnc_69: 9.09322301e-06 + ArtUnc_70: -2.25143223e-07 + ArtUnc_71: 4.91621317e-07 + ArtUnc_72: -5.36003493e-07 + ArtUnc_73: 1.54274695e-06 + ArtUnc_74: -2.35151489e-06 + ArtUnc_75: -4.31753594e-07 + ArtUnc_76: 1.12729350e-07 + ArtUnc_77: 7.51792675e-07 + ArtUnc_78: 5.09570702e-07 + ArtUnc_79: -7.86649143e-07 + ArtUnc_80: 9.43488938e-08 + ArtUnc_81: -1.19803824e-08 + ArtUnc_82: -4.25854109e-10 + ArtUnc_83: -4.41215923e-08 + ArtUnc_84: -2.57366928e-08 + ArtUnc_85: 4.27101978e-08 + ArtUnc_86: 8.34880406e-09 + ArtUnc_87: 1.76612937e-08 + ArtUnc_88: 7.80158296e-09 + ArtUnc_89: -5.73503768e-10 + ArtUnc_90: -9.14715694e-08 + ArtUnc_91: 2.08375865e-08 + ArtUnc_92: 4.85262446e-09 + ArtUnc_93: -1.30731513e-07 + ArtUnc_94: 8.73344191e-08 + ArtUnc_95: 2.35664596e-08 + ArtUnc_96: -8.36454382e-09 - stat: 0 - Uncorr: 1.1400000000000001 - RCES: 1.576037115679704 - ElEn: 0.24523252231300807 - ElTh: 0.6275956261797878 + Uncorr: 1.14000000e+00 + RCES: 1.57603712e+00 + ElEn: 2.45232522e-01 + ElTh: 6.27595626e-01 Lumi: 2.85 - LArN: 0.6839999999999999 + LArN: 6.84000000e-01 StatMC: 0.9348 - RadErr: 0.49019999999999997 - Model_1: 3.3211391298769763 - Model_2: 3.3211391298769763 - ModelRW_1: 2.394122139741413 - ModelRW_2: 2.394122139741413 - JES_1: 1.151428217476018 - JES_2: 1.151428217476018 - ArtUnc_1: 0.1320383969101628 - ArtUnc_2: -0.0018981155812127922 - ArtUnc_3: 0.030449734167063938 - ArtUnc_4: 0.016599559452785167 - ArtUnc_5: -0.007039446793516058 - ArtUnc_6: -0.0016744990704085601 - ArtUnc_7: 0.00015496188070738973 - ArtUnc_8: 0.04741118864007513 - ArtUnc_9: 0.0007186835312962168 - ArtUnc_10: -0.4305264015518117 - ArtUnc_11: -0.3402840139397071 - ArtUnc_12: 0.3989521206085828 - ArtUnc_13: 0.09101270589019123 - ArtUnc_14: -0.0454662744015132 - ArtUnc_15: 0.009692340009628061 - ArtUnc_16: 0.03319493653463854 - ArtUnc_17: 0.05060998404362843 - ArtUnc_18: -0.06042621545255102 - ArtUnc_19: 0.04212580899411449 - ArtUnc_20: 0.015698438313396287 - ArtUnc_21: -0.027948389494300365 - ArtUnc_22: 0.03784757413331094 - ArtUnc_23: 0.021509993525674447 - ArtUnc_24: -0.0004039371438018868 - ArtUnc_25: 3.2719289748556997 - ArtUnc_26: 1.3315714679588329 - ArtUnc_27: 0.3873789388962019 - ArtUnc_28: 0.6847540037957462 - ArtUnc_29: 0.020893158405177158 - ArtUnc_30: 0.24155149523280334 - ArtUnc_31: -0.05080766078860241 - ArtUnc_32: -0.08409477654661683 - ArtUnc_33: -0.056203225073985175 - ArtUnc_34: -0.08167182024114937 - ArtUnc_35: -0.08773620671064794 - ArtUnc_36: -0.037061892254628304 - ArtUnc_37: 0.0024416941282667287 - ArtUnc_38: 0.005311259237549614 - ArtUnc_39: 0.004140830387009761 - ArtUnc_40: 0.0023273358670159597 - ArtUnc_41: 0.016608369052248613 - ArtUnc_42: 0.017377037665656427 - ArtUnc_43: -0.007473878582718413 - ArtUnc_44: -0.01136699783501941 - ArtUnc_45: 0.012081466399688854 - ArtUnc_46: -0.006010521471543492 - ArtUnc_47: 0.014787560023833185 - ArtUnc_48: -0.004711128239898752 - ArtUnc_49: -0.007430677269866188 - ArtUnc_50: -0.006807979909466713 - ArtUnc_51: 0.0006050043502575601 - ArtUnc_52: -0.0001350414213422827 - ArtUnc_53: -0.0072927373415190835 - ArtUnc_54: 0.0021796124008489058 - ArtUnc_55: 0.0010621839197683008 - ArtUnc_56: 0.00038932020161372015 - ArtUnc_57: 2.8675619155647794e-06 - ArtUnc_58: -0.00011801018194304885 - ArtUnc_59: 0.00015106725253573715 - ArtUnc_60: 5.010764059745741e-05 - ArtUnc_61: -9.866999716198439e-06 - ArtUnc_62: -5.093667125678123e-05 - ArtUnc_63: 1.3994054984194227e-06 - ArtUnc_64: -7.893786420285958e-05 - ArtUnc_65: 6.916046599341139e-05 - ArtUnc_66: 4.153359855595592e-06 - ArtUnc_67: -3.7740188390941575e-06 - ArtUnc_68: -4.220146094322869e-06 - ArtUnc_69: -5.492019682323398e-06 - ArtUnc_70: -4.037667501783616e-06 - ArtUnc_71: 6.169350904763874e-06 - ArtUnc_72: -1.9239639399510934e-06 - ArtUnc_73: -2.479148957476188e-06 - ArtUnc_74: 1.4911766742091386e-05 - ArtUnc_75: 2.4181351515257655e-06 - ArtUnc_76: -4.5954891167824075e-07 - ArtUnc_77: -4.5068273257981715e-06 - ArtUnc_78: -3.171597684393666e-06 - ArtUnc_79: 7.267656447246022e-06 - ArtUnc_80: 8.86925522824323e-07 - ArtUnc_81: -3.4742103213120816e-07 - ArtUnc_82: -3.2867253404634625e-09 - ArtUnc_83: 4.799206644697428e-07 - ArtUnc_84: 4.956056692359477e-07 - ArtUnc_85: -3.0571751073164814e-07 - ArtUnc_86: -6.513106602556879e-08 - ArtUnc_87: -1.285266079731519e-07 - ArtUnc_88: -3.941215089842248e-07 - ArtUnc_89: -4.054728722557868e-07 - ArtUnc_90: -1.3450800291205652e-08 - ArtUnc_91: -7.577235197069439e-08 - ArtUnc_92: -1.9418480748555077e-08 - ArtUnc_93: 3.038985099760247e-07 - ArtUnc_94: -2.603149510967458e-07 - ArtUnc_95: 2.5716364133558877e-07 - ArtUnc_96: -1.7915995558900218e-09 + RadErr: 4.90200000e-01 + Model_1: 3.32113913e+00 + Model_2: 3.32113913e+00 + ModelRW_1: 2.39412214e+00 + ModelRW_2: 2.39412214e+00 + JES_1: 1.15142822e+00 + JES_2: 1.15142822e+00 + ArtUnc_1: 1.32038397e-01 + ArtUnc_2: -1.89811558e-03 + ArtUnc_3: 3.04497342e-02 + ArtUnc_4: 1.65995595e-02 + ArtUnc_5: -7.03944679e-03 + ArtUnc_6: -1.67449907e-03 + ArtUnc_7: 1.54961881e-04 + ArtUnc_8: 4.74111886e-02 + ArtUnc_9: 7.18683531e-04 + ArtUnc_10: -4.30526402e-01 + ArtUnc_11: -3.40284014e-01 + ArtUnc_12: 3.98952121e-01 + ArtUnc_13: 9.10127059e-02 + ArtUnc_14: -4.54662744e-02 + ArtUnc_15: 9.69234001e-03 + ArtUnc_16: 3.31949365e-02 + ArtUnc_17: 5.06099840e-02 + ArtUnc_18: -6.04262155e-02 + ArtUnc_19: 4.21258090e-02 + ArtUnc_20: 1.56984383e-02 + ArtUnc_21: -2.79483895e-02 + ArtUnc_22: 3.78475741e-02 + ArtUnc_23: 2.15099935e-02 + ArtUnc_24: -4.03937144e-04 + ArtUnc_25: 3.27192897e+00 + ArtUnc_26: 1.33157147e+00 + ArtUnc_27: 3.87378939e-01 + ArtUnc_28: 6.84754004e-01 + ArtUnc_29: 2.08931584e-02 + ArtUnc_30: 2.41551495e-01 + ArtUnc_31: -5.08076608e-02 + ArtUnc_32: -8.40947765e-02 + ArtUnc_33: -5.62032251e-02 + ArtUnc_34: -8.16718202e-02 + ArtUnc_35: -8.77362067e-02 + ArtUnc_36: -3.70618923e-02 + ArtUnc_37: 2.44169413e-03 + ArtUnc_38: 5.31125924e-03 + ArtUnc_39: 4.14083039e-03 + ArtUnc_40: 2.32733587e-03 + ArtUnc_41: 1.66083691e-02 + ArtUnc_42: 1.73770377e-02 + ArtUnc_43: -7.47387858e-03 + ArtUnc_44: -1.13669978e-02 + ArtUnc_45: 1.20814664e-02 + ArtUnc_46: -6.01052147e-03 + ArtUnc_47: 1.47875600e-02 + ArtUnc_48: -4.71112824e-03 + ArtUnc_49: -7.43067727e-03 + ArtUnc_50: -6.80797991e-03 + ArtUnc_51: 6.05004350e-04 + ArtUnc_52: -1.35041421e-04 + ArtUnc_53: -7.29273734e-03 + ArtUnc_54: 2.17961240e-03 + ArtUnc_55: 1.06218392e-03 + ArtUnc_56: 3.89320202e-04 + ArtUnc_57: 2.86756192e-06 + ArtUnc_58: -1.18010182e-04 + ArtUnc_59: 1.51067253e-04 + ArtUnc_60: 5.01076406e-05 + ArtUnc_61: -9.86699972e-06 + ArtUnc_62: -5.09366713e-05 + ArtUnc_63: 1.39940550e-06 + ArtUnc_64: -7.89378642e-05 + ArtUnc_65: 6.91604660e-05 + ArtUnc_66: 4.15335986e-06 + ArtUnc_67: -3.77401884e-06 + ArtUnc_68: -4.22014609e-06 + ArtUnc_69: -5.49201968e-06 + ArtUnc_70: -4.03766750e-06 + ArtUnc_71: 6.16935090e-06 + ArtUnc_72: -1.92396394e-06 + ArtUnc_73: -2.47914896e-06 + ArtUnc_74: 1.49117667e-05 + ArtUnc_75: 2.41813515e-06 + ArtUnc_76: -4.59548912e-07 + ArtUnc_77: -4.50682733e-06 + ArtUnc_78: -3.17159768e-06 + ArtUnc_79: 7.26765645e-06 + ArtUnc_80: 8.86925523e-07 + ArtUnc_81: -3.47421032e-07 + ArtUnc_82: -3.28672534e-09 + ArtUnc_83: 4.79920664e-07 + ArtUnc_84: 4.95605669e-07 + ArtUnc_85: -3.05717511e-07 + ArtUnc_86: -6.51310660e-08 + ArtUnc_87: -1.28526608e-07 + ArtUnc_88: -3.94121509e-07 + ArtUnc_89: -4.05472872e-07 + ArtUnc_90: -1.34508003e-08 + ArtUnc_91: -7.57723520e-08 + ArtUnc_92: -1.94184807e-08 + ArtUnc_93: 3.03898510e-07 + ArtUnc_94: -2.60314951e-07 + ArtUnc_95: 2.57163641e-07 + ArtUnc_96: -1.79159956e-09 - stat: 0 Uncorr: 0.272 - RCES: 0.15369203492699288 - ElEn: 0.12643612142105595 - ElTh: 0.09516113492387529 + RCES: 1.53692035e-01 + ElEn: 1.26436121e-01 + ElTh: 9.51611349e-02 Lumi: 0.68 LArN: 0.1632 StatMC: 0.22848 RadErr: 0.18224 - Model_1: 1.1328416320033439 - Model_2: 1.1328416320033439 - ModelRW_1: 1.020327707356808 - ModelRW_2: 1.020327707356808 - JES_1: 0.6984020435250743 - JES_2: 0.6984020435250743 - ArtUnc_1: 0.009828482441487745 - ArtUnc_2: -0.00460871700064456 - ArtUnc_3: -0.002367722967671026 - ArtUnc_4: -0.00029926032901598235 - ArtUnc_5: -0.00012690827336534974 - ArtUnc_6: -6.2210660451003455e-06 - ArtUnc_7: -8.451570832595379e-05 - ArtUnc_8: 0.02751057521746776 - ArtUnc_9: 1.5723655127338393e-05 - ArtUnc_10: 0.017825203774346893 - ArtUnc_11: -0.006729346020044204 - ArtUnc_12: 0.015601139436504471 - ArtUnc_13: -0.007047244784114975 - ArtUnc_14: -0.0065521735181942676 - ArtUnc_15: -0.005325434628903351 - ArtUnc_16: 0.0064917673106256015 - ArtUnc_17: -0.0034180238988290863 - ArtUnc_18: 0.0016271913888590524 - ArtUnc_19: -0.0010176831113118696 - ArtUnc_20: 0.0012412268220376775 - ArtUnc_21: 0.0013910730652472933 - ArtUnc_22: -0.0009017674683374423 - ArtUnc_23: 4.585804574036141e-05 - ArtUnc_24: -0.0001413221668135053 - ArtUnc_25: 0.048844340697331595 - ArtUnc_26: 0.04181590905252278 - ArtUnc_27: 0.32589663868765795 - ArtUnc_28: -0.046280711933589666 - ArtUnc_29: -0.030819773195066773 - ArtUnc_30: 0.14587854716562404 - ArtUnc_31: -0.0016396219494746182 - ArtUnc_32: -0.0678545120748393 - ArtUnc_33: -0.022661813340476022 - ArtUnc_34: -0.04182033033426591 - ArtUnc_35: -0.06905773771897107 - ArtUnc_36: -0.026864389685190497 - ArtUnc_37: -0.004292649218077433 - ArtUnc_38: 0.0050802906960727345 - ArtUnc_39: 0.0008362842858768569 - ArtUnc_40: 0.0003095012144619919 - ArtUnc_41: -0.7052015856251063 - ArtUnc_42: -0.6327097492563641 - ArtUnc_43: 0.12172801961898926 - ArtUnc_44: 0.22099531757298294 - ArtUnc_45: -0.23647012932139355 - ArtUnc_46: 0.08099032950666608 - ArtUnc_47: -0.20664841683345517 - ArtUnc_48: 0.038265988932915405 - ArtUnc_49: 0.09491404193287561 - ArtUnc_50: 0.09824741575171583 - ArtUnc_51: -0.004617328215157453 - ArtUnc_52: 0.0017742998422925309 - ArtUnc_53: 0.09017523379420407 - ArtUnc_54: -0.028143182158681345 - ArtUnc_55: -0.011196793347803947 - ArtUnc_56: -0.0034442880899961553 - ArtUnc_57: 0.0010036416826926242 - ArtUnc_58: -0.0028231731389436556 - ArtUnc_59: 0.0012046531993427795 - ArtUnc_60: 0.0003414476538073182 - ArtUnc_61: 2.537222981374834e-05 - ArtUnc_62: -0.00032734669173514557 - ArtUnc_63: -0.00028632491468644916 - ArtUnc_64: -0.0006345923426677774 - ArtUnc_65: 0.0005386105751243396 - ArtUnc_66: -0.0011505629179389587 - ArtUnc_67: 0.0004560945531371202 - ArtUnc_68: 0.003014846949041353 - ArtUnc_69: 0.0020738004664223268 - ArtUnc_70: -0.00037625735442800627 - ArtUnc_71: 0.0004925221551271979 - ArtUnc_72: -0.00026471775867246614 - ArtUnc_73: 0.0002693477913324866 - ArtUnc_74: -0.00026473689865880184 - ArtUnc_75: -3.595203059976877e-05 - ArtUnc_76: 1.2460882397148897e-06 - ArtUnc_77: 4.642367619193105e-05 - ArtUnc_78: 3.913418086393189e-05 - ArtUnc_79: -6.51698698504578e-05 - ArtUnc_80: 4.185286658640881e-07 - ArtUnc_81: 1.355320199362528e-06 - ArtUnc_82: -1.3444472389898236e-09 - ArtUnc_83: -1.3574624362073272e-06 - ArtUnc_84: -3.5302943668521003e-06 - ArtUnc_85: 1.2092535550324354e-06 - ArtUnc_86: -2.392580188600286e-06 - ArtUnc_87: -2.9287647151749426e-06 - ArtUnc_88: -7.154831036187616e-06 - ArtUnc_89: -4.048195228634956e-06 - ArtUnc_90: 2.553863669683389e-06 - ArtUnc_91: -6.988055593524728e-07 - ArtUnc_92: -7.503800177848302e-08 - ArtUnc_93: -1.0256192208288061e-05 - ArtUnc_94: 3.073421133961953e-06 - ArtUnc_95: -2.478932443424516e-06 - ArtUnc_96: -9.190338720973543e-08 + Model_1: 1.13284163e+00 + Model_2: 1.13284163e+00 + ModelRW_1: 1.02032771e+00 + ModelRW_2: 1.02032771e+00 + JES_1: 6.98402044e-01 + JES_2: 6.98402044e-01 + ArtUnc_1: 9.82848244e-03 + ArtUnc_2: -4.60871700e-03 + ArtUnc_3: -2.36772297e-03 + ArtUnc_4: -2.99260329e-04 + ArtUnc_5: -1.26908273e-04 + ArtUnc_6: -6.22106605e-06 + ArtUnc_7: -8.45157083e-05 + ArtUnc_8: 2.75105752e-02 + ArtUnc_9: 1.57236551e-05 + ArtUnc_10: 1.78252038e-02 + ArtUnc_11: -6.72934602e-03 + ArtUnc_12: 1.56011394e-02 + ArtUnc_13: -7.04724478e-03 + ArtUnc_14: -6.55217352e-03 + ArtUnc_15: -5.32543463e-03 + ArtUnc_16: 6.49176731e-03 + ArtUnc_17: -3.41802390e-03 + ArtUnc_18: 1.62719139e-03 + ArtUnc_19: -1.01768311e-03 + ArtUnc_20: 1.24122682e-03 + ArtUnc_21: 1.39107307e-03 + ArtUnc_22: -9.01767468e-04 + ArtUnc_23: 4.58580457e-05 + ArtUnc_24: -1.41322167e-04 + ArtUnc_25: 4.88443407e-02 + ArtUnc_26: 4.18159091e-02 + ArtUnc_27: 3.25896639e-01 + ArtUnc_28: -4.62807119e-02 + ArtUnc_29: -3.08197732e-02 + ArtUnc_30: 1.45878547e-01 + ArtUnc_31: -1.63962195e-03 + ArtUnc_32: -6.78545121e-02 + ArtUnc_33: -2.26618133e-02 + ArtUnc_34: -4.18203303e-02 + ArtUnc_35: -6.90577377e-02 + ArtUnc_36: -2.68643897e-02 + ArtUnc_37: -4.29264922e-03 + ArtUnc_38: 5.08029070e-03 + ArtUnc_39: 8.36284286e-04 + ArtUnc_40: 3.09501214e-04 + ArtUnc_41: -7.05201586e-01 + ArtUnc_42: -6.32709749e-01 + ArtUnc_43: 1.21728020e-01 + ArtUnc_44: 2.20995318e-01 + ArtUnc_45: -2.36470129e-01 + ArtUnc_46: 8.09903295e-02 + ArtUnc_47: -2.06648417e-01 + ArtUnc_48: 3.82659889e-02 + ArtUnc_49: 9.49140419e-02 + ArtUnc_50: 9.82474158e-02 + ArtUnc_51: -4.61732822e-03 + ArtUnc_52: 1.77429984e-03 + ArtUnc_53: 9.01752338e-02 + ArtUnc_54: -2.81431822e-02 + ArtUnc_55: -1.11967933e-02 + ArtUnc_56: -3.44428809e-03 + ArtUnc_57: 1.00364168e-03 + ArtUnc_58: -2.82317314e-03 + ArtUnc_59: 1.20465320e-03 + ArtUnc_60: 3.41447654e-04 + ArtUnc_61: 2.53722298e-05 + ArtUnc_62: -3.27346692e-04 + ArtUnc_63: -2.86324915e-04 + ArtUnc_64: -6.34592343e-04 + ArtUnc_65: 5.38610575e-04 + ArtUnc_66: -1.15056292e-03 + ArtUnc_67: 4.56094553e-04 + ArtUnc_68: 3.01484695e-03 + ArtUnc_69: 2.07380047e-03 + ArtUnc_70: -3.76257354e-04 + ArtUnc_71: 4.92522155e-04 + ArtUnc_72: -2.64717759e-04 + ArtUnc_73: 2.69347791e-04 + ArtUnc_74: -2.64736899e-04 + ArtUnc_75: -3.59520306e-05 + ArtUnc_76: 1.24608824e-06 + ArtUnc_77: 4.64236762e-05 + ArtUnc_78: 3.91341809e-05 + ArtUnc_79: -6.51698699e-05 + ArtUnc_80: 4.18528666e-07 + ArtUnc_81: 1.35532020e-06 + ArtUnc_82: -1.34444724e-09 + ArtUnc_83: -1.35746244e-06 + ArtUnc_84: -3.53029437e-06 + ArtUnc_85: 1.20925356e-06 + ArtUnc_86: -2.39258019e-06 + ArtUnc_87: -2.92876472e-06 + ArtUnc_88: -7.15483104e-06 + ArtUnc_89: -4.04819523e-06 + ArtUnc_90: 2.55386367e-06 + ArtUnc_91: -6.98805559e-07 + ArtUnc_92: -7.50380018e-08 + ArtUnc_93: -1.02561922e-05 + ArtUnc_94: 3.07342113e-06 + ArtUnc_95: -2.47893244e-06 + ArtUnc_96: -9.19033872e-08 - stat: 0 Uncorr: 0.0484 - RCES: 0.021449447172363207 - ElEn: 0.02181090030237175 - ElTh: 0.0035566591065211745 + RCES: 2.14494472e-02 + ElEn: 2.18109003e-02 + ElTh: 3.55665911e-03 Lumi: 0.121 LArN: 0.02904 StatMC: 0.08712 RadErr: 0.119064 - Model_1: 0.23015631343502177 - Model_2: 0.23015631343502177 - ModelRW_1: 0.19713005688631044 - ModelRW_2: 0.19713005688631044 - JES_1: 0.12691186967340762 - JES_2: 0.12691186967340762 - ArtUnc_1: -6.164644459496338e-08 - ArtUnc_2: 3.922489697003599e-06 - ArtUnc_3: 3.676532891100279e-06 - ArtUnc_4: 5.564873447651579e-07 - ArtUnc_5: 6.59743217294973e-07 - ArtUnc_6: 4.992344983248174e-07 - ArtUnc_7: -1.1475159678064252e-07 - ArtUnc_8: -9.852689490555703e-05 - ArtUnc_9: -4.407965694973057e-07 - ArtUnc_10: 0.0001792344528930398 - ArtUnc_11: 7.616657232721964e-05 - ArtUnc_12: -4.4728975211666266e-05 - ArtUnc_13: -4.0797786142070816e-05 - ArtUnc_14: 1.1653214759857445e-05 - ArtUnc_15: 2.9468682734613832e-05 - ArtUnc_16: -4.060088063743114e-05 - ArtUnc_17: 4.8986111224387076e-05 - ArtUnc_18: -2.500089489249813e-05 - ArtUnc_19: 1.8892070928952376e-05 - ArtUnc_20: -3.2089415329472654e-05 - ArtUnc_21: -3.1833271314447314e-05 - ArtUnc_22: 1.9025728150568153e-05 - ArtUnc_23: 7.026400508713268e-06 - ArtUnc_24: -5.427374187542625e-07 - ArtUnc_25: 0.00180497943837816 - ArtUnc_26: -0.0011801587967399964 - ArtUnc_27: -0.009578494181615448 - ArtUnc_28: 0.0008501682735662387 - ArtUnc_29: 0.0009006503708527966 - ArtUnc_30: -0.004665811728323744 - ArtUnc_31: 0.00010043484313485591 - ArtUnc_32: 0.002013123413600144 - ArtUnc_33: 0.0006497633601117199 - ArtUnc_34: 0.0008514052295296975 - ArtUnc_35: 0.001151055185015836 - ArtUnc_36: -5.32719746780574e-05 - ArtUnc_37: -0.00018763487850387555 - ArtUnc_38: 0.000374601437531586 - ArtUnc_39: 0.00020843676093705043 - ArtUnc_40: 3.0350509533418895e-05 - ArtUnc_41: 0.10266260140158713 - ArtUnc_42: -0.09840882032617902 - ArtUnc_43: -0.0687136256878946 - ArtUnc_44: -0.009317374694874054 - ArtUnc_45: -0.03518183522111571 - ArtUnc_46: -0.029312409153198906 - ArtUnc_47: 0.013643854055219597 - ArtUnc_48: -0.03382659436727794 - ArtUnc_49: 0.004633542472207272 - ArtUnc_50: 0.02025841501175562 - ArtUnc_51: -0.0023840751346399375 - ArtUnc_52: 0.004771693908960994 - ArtUnc_53: 0.022523688368749763 - ArtUnc_54: -0.009567457581226015 - ArtUnc_55: -0.009843605589854792 - ArtUnc_56: 0.001517061341357972 - ArtUnc_57: 0.06258888615097814 - ArtUnc_58: -0.26121858121934405 - ArtUnc_59: 0.10808008735278782 - ArtUnc_60: 0.023049073521630416 - ArtUnc_61: -0.14287717897482147 - ArtUnc_62: 0.04647436774649283 - ArtUnc_63: 0.05445480327220324 - ArtUnc_64: 0.020264268067555387 - ArtUnc_65: -0.002083777069281772 - ArtUnc_66: 0.06705184198137516 - ArtUnc_67: -0.021510300671449198 - ArtUnc_68: -0.08355834520654506 - ArtUnc_69: -0.04248293594777888 - ArtUnc_70: 0.0015854931928314551 - ArtUnc_71: -0.009286362438022215 - ArtUnc_72: 0.005984455381454388 - ArtUnc_73: 0.0016273501516143546 - ArtUnc_74: -0.001251898970055017 - ArtUnc_75: -5.0258160043893535e-05 - ArtUnc_76: -5.509821488616488e-05 - ArtUnc_77: -0.0001441671182925708 - ArtUnc_78: -0.00010278516747378758 - ArtUnc_79: 0.0006061054586888791 - ArtUnc_80: -6.34313564224788e-05 - ArtUnc_81: 7.291486148520376e-05 - ArtUnc_82: 3.946880946781465e-07 - ArtUnc_83: 0.0001346940923443161 - ArtUnc_84: -0.00010207049142693918 - ArtUnc_85: -0.00010050144195659215 - ArtUnc_86: 0.0001167991316420489 - ArtUnc_87: 7.445854981989877e-05 - ArtUnc_88: -0.00020777512486746868 - ArtUnc_89: -0.00011443435620054819 - ArtUnc_90: 3.887377084194982e-05 - ArtUnc_91: 2.3285955195096784e-05 - ArtUnc_92: 4.009384033282361e-06 - ArtUnc_93: -0.0002676195551706283 - ArtUnc_94: 8.669785835343736e-05 - ArtUnc_95: 8.024371620577143e-06 - ArtUnc_96: -2.1333954408291494e-05 + Model_1: 2.30156313e-01 + Model_2: 2.30156313e-01 + ModelRW_1: 1.97130057e-01 + ModelRW_2: 1.97130057e-01 + JES_1: 1.26911870e-01 + JES_2: 1.26911870e-01 + ArtUnc_1: -6.16464446e-08 + ArtUnc_2: 3.92248970e-06 + ArtUnc_3: 3.67653289e-06 + ArtUnc_4: 5.56487345e-07 + ArtUnc_5: 6.59743217e-07 + ArtUnc_6: 4.99234498e-07 + ArtUnc_7: -1.14751597e-07 + ArtUnc_8: -9.85268949e-05 + ArtUnc_9: -4.40796569e-07 + ArtUnc_10: 1.79234453e-04 + ArtUnc_11: 7.61665723e-05 + ArtUnc_12: -4.47289752e-05 + ArtUnc_13: -4.07977861e-05 + ArtUnc_14: 1.16532148e-05 + ArtUnc_15: 2.94686827e-05 + ArtUnc_16: -4.06008806e-05 + ArtUnc_17: 4.89861112e-05 + ArtUnc_18: -2.50008949e-05 + ArtUnc_19: 1.88920709e-05 + ArtUnc_20: -3.20894153e-05 + ArtUnc_21: -3.18332713e-05 + ArtUnc_22: 1.90257282e-05 + ArtUnc_23: 7.02640051e-06 + ArtUnc_24: -5.42737419e-07 + ArtUnc_25: 1.80497944e-03 + ArtUnc_26: -1.18015880e-03 + ArtUnc_27: -9.57849418e-03 + ArtUnc_28: 8.50168274e-04 + ArtUnc_29: 9.00650371e-04 + ArtUnc_30: -4.66581173e-03 + ArtUnc_31: 1.00434843e-04 + ArtUnc_32: 2.01312341e-03 + ArtUnc_33: 6.49763360e-04 + ArtUnc_34: 8.51405230e-04 + ArtUnc_35: 1.15105519e-03 + ArtUnc_36: -5.32719747e-05 + ArtUnc_37: -1.87634879e-04 + ArtUnc_38: 3.74601438e-04 + ArtUnc_39: 2.08436761e-04 + ArtUnc_40: 3.03505095e-05 + ArtUnc_41: 1.02662601e-01 + ArtUnc_42: -9.84088203e-02 + ArtUnc_43: -6.87136257e-02 + ArtUnc_44: -9.31737469e-03 + ArtUnc_45: -3.51818352e-02 + ArtUnc_46: -2.93124092e-02 + ArtUnc_47: 1.36438541e-02 + ArtUnc_48: -3.38265944e-02 + ArtUnc_49: 4.63354247e-03 + ArtUnc_50: 2.02584150e-02 + ArtUnc_51: -2.38407513e-03 + ArtUnc_52: 4.77169391e-03 + ArtUnc_53: 2.25236884e-02 + ArtUnc_54: -9.56745758e-03 + ArtUnc_55: -9.84360559e-03 + ArtUnc_56: 1.51706134e-03 + ArtUnc_57: 6.25888862e-02 + ArtUnc_58: -2.61218581e-01 + ArtUnc_59: 1.08080087e-01 + ArtUnc_60: 2.30490735e-02 + ArtUnc_61: -1.42877179e-01 + ArtUnc_62: 4.64743677e-02 + ArtUnc_63: 5.44548033e-02 + ArtUnc_64: 2.02642681e-02 + ArtUnc_65: -2.08377707e-03 + ArtUnc_66: 6.70518420e-02 + ArtUnc_67: -2.15103007e-02 + ArtUnc_68: -8.35583452e-02 + ArtUnc_69: -4.24829359e-02 + ArtUnc_70: 1.58549319e-03 + ArtUnc_71: -9.28636244e-03 + ArtUnc_72: 5.98445538e-03 + ArtUnc_73: 1.62735015e-03 + ArtUnc_74: -1.25189897e-03 + ArtUnc_75: -5.02581600e-05 + ArtUnc_76: -5.50982149e-05 + ArtUnc_77: -1.44167118e-04 + ArtUnc_78: -1.02785167e-04 + ArtUnc_79: 6.06105459e-04 + ArtUnc_80: -6.34313564e-05 + ArtUnc_81: 7.29148615e-05 + ArtUnc_82: 3.94688095e-07 + ArtUnc_83: 1.34694092e-04 + ArtUnc_84: -1.02070491e-04 + ArtUnc_85: -1.00501442e-04 + ArtUnc_86: 1.16799132e-04 + ArtUnc_87: 7.44585498e-05 + ArtUnc_88: -2.07775125e-04 + ArtUnc_89: -1.14434356e-04 + ArtUnc_90: 3.88737708e-05 + ArtUnc_91: 2.32859552e-05 + ArtUnc_92: 4.00938403e-06 + ArtUnc_93: -2.67619555e-04 + ArtUnc_94: 8.66978584e-05 + ArtUnc_95: 8.02437162e-06 + ArtUnc_96: -2.13339544e-05 - stat: 0 Uncorr: 0.00786 - RCES: 0.002117828831610336 - ElEn: 0.011022721752362255 - ElTh: 0.007894019130328988 + RCES: 2.11782883e-03 + ElEn: 1.10227218e-02 + ElTh: 7.89401913e-03 Lumi: 0.01965 - LArN: 0.004716000000000001 - StatMC: 0.0335622 - RadErr: 0.023501400000000002 - Model_1: 0.030123597406684344 - Model_2: 0.030123597406684344 - ModelRW_1: 0.02684446041960985 - ModelRW_2: 0.02684446041960985 - JES_1: 0.03254514603070633 - JES_2: 0.03254514603070633 - ArtUnc_1: -2.8171268199507716e-08 - ArtUnc_2: 4.468404998851395e-07 - ArtUnc_3: 6.065669381628866e-07 - ArtUnc_4: 2.2074680006442324e-07 - ArtUnc_5: -2.7226297566834386e-08 - ArtUnc_6: 1.0502030776599082e-08 - ArtUnc_7: 6.247091281933477e-09 - ArtUnc_8: -1.3352960960347073e-05 - ArtUnc_9: -5.195880523141805e-08 - ArtUnc_10: 2.1743112544614577e-05 - ArtUnc_11: 1.4384283433486833e-05 - ArtUnc_12: -6.488154730178476e-06 - ArtUnc_13: -1.2077849621583853e-05 - ArtUnc_14: -9.85196993995112e-07 - ArtUnc_15: -5.508344773231818e-06 - ArtUnc_16: -8.576868897751414e-07 - ArtUnc_17: 1.703642990227518e-06 - ArtUnc_18: 2.2576529075168028e-07 - ArtUnc_19: 1.2942610814684423e-06 - ArtUnc_20: -5.002398679556529e-06 - ArtUnc_21: -3.8253376283432924e-06 - ArtUnc_22: 1.7604760363566307e-06 - ArtUnc_23: 6.148453534215448e-07 - ArtUnc_24: -8.64776660808692e-08 - ArtUnc_25: 0.00021897760157158004 - ArtUnc_26: -0.00010417696531048306 - ArtUnc_27: -0.0012450843536182764 - ArtUnc_28: 0.0001734897536596235 - ArtUnc_29: 0.00015219103957132238 - ArtUnc_30: -0.0007465051590978547 - ArtUnc_31: 2.0704047749812754e-05 - ArtUnc_32: 0.0004343764298588992 - ArtUnc_33: 0.0001240490801374033 - ArtUnc_34: 0.0002862893515864769 - ArtUnc_35: 0.000496359061452056 - ArtUnc_36: 0.00020282456223106611 - ArtUnc_37: 3.709434707071476e-05 - ArtUnc_38: -4.1061827783918016e-05 - ArtUnc_39: -6.799893174198059e-06 - ArtUnc_40: -1.495482406591319e-06 - ArtUnc_41: 0.0008081930040474229 - ArtUnc_42: 0.0021086839281373873 - ArtUnc_43: 0.00035821304071842616 - ArtUnc_44: -0.0005399654934635183 - ArtUnc_45: 0.001316493409075148 - ArtUnc_46: 0.0002010143782132027 - ArtUnc_47: 0.0006350875907164479 - ArtUnc_48: 0.0004759382595654312 - ArtUnc_49: -0.0006023760092153574 - ArtUnc_50: -0.0009495179427241272 - ArtUnc_51: 6.923725304565707e-05 - ArtUnc_52: -7.658225400022983e-05 - ArtUnc_53: -0.0009883270985561877 - ArtUnc_54: 0.00035012232252784885 - ArtUnc_55: 0.00023812194477975467 - ArtUnc_56: -4.123660112127637e-06 - ArtUnc_57: -0.02066127195479415 - ArtUnc_58: 0.030126179151983706 - ArtUnc_59: 0.046329830103050265 - ArtUnc_60: 0.01702587416560102 - ArtUnc_61: -0.008563593972697963 - ArtUnc_62: -0.012710627449860143 - ArtUnc_63: 0.004931348879743005 - ArtUnc_64: -0.019511390532134486 - ArtUnc_65: 0.01837312552201359 - ArtUnc_66: 0.006955319069816964 - ArtUnc_67: -0.001832830663475033 - ArtUnc_68: -0.00026029931124660403 - ArtUnc_69: 0.000548424930784027 - ArtUnc_70: -0.00014018403238890204 - ArtUnc_71: 0.0007404022609201388 - ArtUnc_72: -0.0002691231477139737 - ArtUnc_73: 0.07358766616309388 - ArtUnc_74: -0.0893527526264328 - ArtUnc_75: -0.012055679340105704 - ArtUnc_76: -0.0027011264050323686 - ArtUnc_77: 0.021387610532927363 - ArtUnc_78: 0.013447794794430668 - ArtUnc_79: -0.04306806542957896 - ArtUnc_80: 0.0002503528763656325 - ArtUnc_81: -0.0004905800793986709 - ArtUnc_82: -2.433948835170254e-06 - ArtUnc_83: 0.00034942425994394585 - ArtUnc_84: 0.0003703550434099853 - ArtUnc_85: -0.00018102905776399447 - ArtUnc_86: -0.00014389325348863863 - ArtUnc_87: -0.0003998668211764174 - ArtUnc_88: 0.00260042890848475 - ArtUnc_89: -0.0023811496247879713 - ArtUnc_90: -0.0006337108544291929 - ArtUnc_91: -0.000159910268279095 - ArtUnc_92: -3.0413386783324703e-05 - ArtUnc_93: 0.004616274227591099 - ArtUnc_94: 0.0008602099782936573 - ArtUnc_95: 0.0007644310356287082 - ArtUnc_96: -1.4366715556144155e-06 + LArN: 4.71600000e-03 + StatMC: 3.35622000e-02 + RadErr: 2.35014000e-02 + Model_1: 3.01235974e-02 + Model_2: 3.01235974e-02 + ModelRW_1: 2.68444604e-02 + ModelRW_2: 2.68444604e-02 + JES_1: 3.25451460e-02 + JES_2: 3.25451460e-02 + ArtUnc_1: -2.81712682e-08 + ArtUnc_2: 4.46840500e-07 + ArtUnc_3: 6.06566938e-07 + ArtUnc_4: 2.20746800e-07 + ArtUnc_5: -2.72262976e-08 + ArtUnc_6: 1.05020308e-08 + ArtUnc_7: 6.24709128e-09 + ArtUnc_8: -1.33529610e-05 + ArtUnc_9: -5.19588052e-08 + ArtUnc_10: 2.17431125e-05 + ArtUnc_11: 1.43842834e-05 + ArtUnc_12: -6.48815473e-06 + ArtUnc_13: -1.20778496e-05 + ArtUnc_14: -9.85196994e-07 + ArtUnc_15: -5.50834477e-06 + ArtUnc_16: -8.57686890e-07 + ArtUnc_17: 1.70364299e-06 + ArtUnc_18: 2.25765291e-07 + ArtUnc_19: 1.29426108e-06 + ArtUnc_20: -5.00239868e-06 + ArtUnc_21: -3.82533763e-06 + ArtUnc_22: 1.76047604e-06 + ArtUnc_23: 6.14845353e-07 + ArtUnc_24: -8.64776661e-08 + ArtUnc_25: 2.18977602e-04 + ArtUnc_26: -1.04176965e-04 + ArtUnc_27: -1.24508435e-03 + ArtUnc_28: 1.73489754e-04 + ArtUnc_29: 1.52191040e-04 + ArtUnc_30: -7.46505159e-04 + ArtUnc_31: 2.07040477e-05 + ArtUnc_32: 4.34376430e-04 + ArtUnc_33: 1.24049080e-04 + ArtUnc_34: 2.86289352e-04 + ArtUnc_35: 4.96359061e-04 + ArtUnc_36: 2.02824562e-04 + ArtUnc_37: 3.70943471e-05 + ArtUnc_38: -4.10618278e-05 + ArtUnc_39: -6.79989317e-06 + ArtUnc_40: -1.49548241e-06 + ArtUnc_41: 8.08193004e-04 + ArtUnc_42: 2.10868393e-03 + ArtUnc_43: 3.58213041e-04 + ArtUnc_44: -5.39965493e-04 + ArtUnc_45: 1.31649341e-03 + ArtUnc_46: 2.01014378e-04 + ArtUnc_47: 6.35087591e-04 + ArtUnc_48: 4.75938260e-04 + ArtUnc_49: -6.02376009e-04 + ArtUnc_50: -9.49517943e-04 + ArtUnc_51: 6.92372530e-05 + ArtUnc_52: -7.65822540e-05 + ArtUnc_53: -9.88327099e-04 + ArtUnc_54: 3.50122323e-04 + ArtUnc_55: 2.38121945e-04 + ArtUnc_56: -4.12366011e-06 + ArtUnc_57: -2.06612720e-02 + ArtUnc_58: 3.01261792e-02 + ArtUnc_59: 4.63298301e-02 + ArtUnc_60: 1.70258742e-02 + ArtUnc_61: -8.56359397e-03 + ArtUnc_62: -1.27106274e-02 + ArtUnc_63: 4.93134888e-03 + ArtUnc_64: -1.95113905e-02 + ArtUnc_65: 1.83731255e-02 + ArtUnc_66: 6.95531907e-03 + ArtUnc_67: -1.83283066e-03 + ArtUnc_68: -2.60299311e-04 + ArtUnc_69: 5.48424931e-04 + ArtUnc_70: -1.40184032e-04 + ArtUnc_71: 7.40402261e-04 + ArtUnc_72: -2.69123148e-04 + ArtUnc_73: 7.35876662e-02 + ArtUnc_74: -8.93527526e-02 + ArtUnc_75: -1.20556793e-02 + ArtUnc_76: -2.70112641e-03 + ArtUnc_77: 2.13876105e-02 + ArtUnc_78: 1.34477948e-02 + ArtUnc_79: -4.30680654e-02 + ArtUnc_80: 2.50352876e-04 + ArtUnc_81: -4.90580079e-04 + ArtUnc_82: -2.43394884e-06 + ArtUnc_83: 3.49424260e-04 + ArtUnc_84: 3.70355043e-04 + ArtUnc_85: -1.81029058e-04 + ArtUnc_86: -1.43893253e-04 + ArtUnc_87: -3.99866821e-04 + ArtUnc_88: 2.60042891e-03 + ArtUnc_89: -2.38114962e-03 + ArtUnc_90: -6.33710854e-04 + ArtUnc_91: -1.59910268e-04 + ArtUnc_92: -3.04133868e-05 + ArtUnc_93: 4.61627423e-03 + ArtUnc_94: 8.60209978e-04 + ArtUnc_95: 7.64431036e-04 + ArtUnc_96: -1.43667156e-06 - stat: 0 Uncorr: 0.00124 - RCES: 0.0016417244104903843 - ElEn: 0.006249415473466299 - ElTh: 0.00024675688440244174 + RCES: 1.64172441e-03 + ElEn: 6.24941547e-03 + ElTh: 2.46756884e-04 Lumi: 0.0031 LArN: 0.000744 - StatMC: 0.0265856 - RadErr: 0.0082336 - Model_1: 0.010995227604738337 - Model_2: 0.010995227604738337 - ModelRW_1: 0.012477040575392867 - ModelRW_2: 0.012477040575392867 - JES_1: 0.004856027057173385 - JES_2: 0.004856027057173385 - ArtUnc_1: 6.041525253143837e-10 - ArtUnc_2: -7.457087380483398e-10 - ArtUnc_3: -1.4082834307497503e-10 - ArtUnc_4: 5.259751980797566e-10 - ArtUnc_5: -6.923695139325593e-10 - ArtUnc_6: -3.3208895333728377e-10 - ArtUnc_7: -8.073137240863234e-12 - ArtUnc_8: 1.2230927873466213e-07 - ArtUnc_9: 5.113647670230508e-10 - ArtUnc_10: -2.244693506634476e-07 - ArtUnc_11: -1.432606521286891e-07 - ArtUnc_12: 1.1530260854438604e-08 - ArtUnc_13: 1.117473288031136e-07 - ArtUnc_14: 2.455820714133376e-08 - ArtUnc_15: 8.883175739142325e-10 - ArtUnc_16: 3.64674416477968e-08 - ArtUnc_17: -8.23673209728863e-08 - ArtUnc_18: 5.197226792066097e-08 - ArtUnc_19: -3.841247467568004e-08 - ArtUnc_20: 6.425356531113657e-08 - ArtUnc_21: 6.155293697544512e-08 - ArtUnc_22: -2.9516761746782553e-08 - ArtUnc_23: -5.562900001094921e-09 - ArtUnc_24: 7.151556918564961e-10 - ArtUnc_25: -1.6089317487759996e-06 - ArtUnc_26: 1.8646694530904163e-06 - ArtUnc_27: 1.1274858886782353e-05 - ArtUnc_28: -6.938518411540835e-07 - ArtUnc_29: -4.555944122477703e-07 - ArtUnc_30: 1.9617264051350774e-06 - ArtUnc_31: 2.1287085831880707e-08 - ArtUnc_32: 4.881844799069134e-07 - ArtUnc_33: 2.179347849928199e-08 - ArtUnc_34: 7.364259583162062e-07 - ArtUnc_35: 1.4923928499667925e-06 - ArtUnc_36: 7.430948147728629e-07 - ArtUnc_37: 1.8178644102041127e-07 - ArtUnc_38: -2.3100931026616919e-07 - ArtUnc_39: -2.047416229297779e-07 - ArtUnc_40: -7.4238034992303e-08 - ArtUnc_41: 0.0005268887524987921 - ArtUnc_42: -0.0005714659827220986 - ArtUnc_43: -0.00027022218346638225 - ArtUnc_44: 1.6398072189473574e-05 - ArtUnc_45: -0.00017043659189344853 - ArtUnc_46: -4.997859356279252e-05 - ArtUnc_47: -3.9402537799913584e-05 - ArtUnc_48: -3.0242333060468175e-05 - ArtUnc_49: 2.5495449976636246e-05 - ArtUnc_50: 6.691827822136524e-06 - ArtUnc_51: 1.4789803073696317e-05 - ArtUnc_52: -2.910302902721402e-05 - ArtUnc_53: -4.8331660677013445e-05 - ArtUnc_54: 2.46139002810582e-05 - ArtUnc_55: 5.0195187470255184e-05 - ArtUnc_56: -7.534173203397271e-06 - ArtUnc_57: -0.0009724406566382886 - ArtUnc_58: 0.002580581925581996 - ArtUnc_59: 0.0003722812543556141 - ArtUnc_60: 0.00024486307773779494 - ArtUnc_61: 0.0007502908776919723 - ArtUnc_62: -0.000603295909081876 - ArtUnc_63: -0.00021837644109062352 - ArtUnc_64: -0.0006049467434411995 - ArtUnc_65: 0.0004698406724156381 - ArtUnc_66: -0.00016047606982258857 - ArtUnc_67: 5.597628896170966e-05 - ArtUnc_68: 0.0002182389788351802 - ArtUnc_69: 1.1008667292203844e-05 - ArtUnc_70: 9.332428840909884e-05 - ArtUnc_71: 1.7410499463531618e-06 - ArtUnc_72: 1.5512309295234166e-05 - ArtUnc_73: 0.001171402712029326 - ArtUnc_74: -0.0002786311578004168 - ArtUnc_75: 0.00028700015729913036 - ArtUnc_76: 0.007224765081852715 - ArtUnc_77: -0.0013220955446067943 - ArtUnc_78: 0.01613476439515324 - ArtUnc_79: 0.0038130671178633353 - ArtUnc_80: -0.005064477730472428 - ArtUnc_81: 0.003436231220562271 - ArtUnc_82: 2.2412802282053842e-05 - ArtUnc_83: 0.022201540076900436 - ArtUnc_84: -0.0044566290856507575 - ArtUnc_85: -0.01742863953471023 - ArtUnc_86: 0.021496483443812036 - ArtUnc_87: 0.013607990667775918 - ArtUnc_88: -0.011385699670263238 - ArtUnc_89: -0.007780802192535263 - ArtUnc_90: 0.001898829632687188 - ArtUnc_91: 0.003959695772808286 - ArtUnc_92: 0.0005860095065112893 - ArtUnc_93: -0.008045285761312283 - ArtUnc_94: 0.0034782788311635373 - ArtUnc_95: 0.00022653556448828135 - ArtUnc_96: -0.004254928877905018 + StatMC: 2.65856000e-02 + RadErr: 8.23360000e-03 + Model_1: 1.09952276e-02 + Model_2: 1.09952276e-02 + ModelRW_1: 1.24770406e-02 + ModelRW_2: 1.24770406e-02 + JES_1: 4.85602706e-03 + JES_2: 4.85602706e-03 + ArtUnc_1: 6.04152525e-10 + ArtUnc_2: -7.45708738e-10 + ArtUnc_3: -1.40828343e-10 + ArtUnc_4: 5.25975198e-10 + ArtUnc_5: -6.92369514e-10 + ArtUnc_6: -3.32088953e-10 + ArtUnc_7: -8.07313724e-12 + ArtUnc_8: 1.22309279e-07 + ArtUnc_9: 5.11364767e-10 + ArtUnc_10: -2.24469351e-07 + ArtUnc_11: -1.43260652e-07 + ArtUnc_12: 1.15302609e-08 + ArtUnc_13: 1.11747329e-07 + ArtUnc_14: 2.45582071e-08 + ArtUnc_15: 8.88317574e-10 + ArtUnc_16: 3.64674416e-08 + ArtUnc_17: -8.23673210e-08 + ArtUnc_18: 5.19722679e-08 + ArtUnc_19: -3.84124747e-08 + ArtUnc_20: 6.42535653e-08 + ArtUnc_21: 6.15529370e-08 + ArtUnc_22: -2.95167617e-08 + ArtUnc_23: -5.56290000e-09 + ArtUnc_24: 7.15155692e-10 + ArtUnc_25: -1.60893175e-06 + ArtUnc_26: 1.86466945e-06 + ArtUnc_27: 1.12748589e-05 + ArtUnc_28: -6.93851841e-07 + ArtUnc_29: -4.55594412e-07 + ArtUnc_30: 1.96172641e-06 + ArtUnc_31: 2.12870858e-08 + ArtUnc_32: 4.88184480e-07 + ArtUnc_33: 2.17934785e-08 + ArtUnc_34: 7.36425958e-07 + ArtUnc_35: 1.49239285e-06 + ArtUnc_36: 7.43094815e-07 + ArtUnc_37: 1.81786441e-07 + ArtUnc_38: -2.31009310e-07 + ArtUnc_39: -2.04741623e-07 + ArtUnc_40: -7.42380350e-08 + ArtUnc_41: 5.26888752e-04 + ArtUnc_42: -5.71465983e-04 + ArtUnc_43: -2.70222183e-04 + ArtUnc_44: 1.63980722e-05 + ArtUnc_45: -1.70436592e-04 + ArtUnc_46: -4.99785936e-05 + ArtUnc_47: -3.94025378e-05 + ArtUnc_48: -3.02423331e-05 + ArtUnc_49: 2.54954500e-05 + ArtUnc_50: 6.69182782e-06 + ArtUnc_51: 1.47898031e-05 + ArtUnc_52: -2.91030290e-05 + ArtUnc_53: -4.83316607e-05 + ArtUnc_54: 2.46139003e-05 + ArtUnc_55: 5.01951875e-05 + ArtUnc_56: -7.53417320e-06 + ArtUnc_57: -9.72440657e-04 + ArtUnc_58: 2.58058193e-03 + ArtUnc_59: 3.72281254e-04 + ArtUnc_60: 2.44863078e-04 + ArtUnc_61: 7.50290878e-04 + ArtUnc_62: -6.03295909e-04 + ArtUnc_63: -2.18376441e-04 + ArtUnc_64: -6.04946743e-04 + ArtUnc_65: 4.69840672e-04 + ArtUnc_66: -1.60476070e-04 + ArtUnc_67: 5.59762890e-05 + ArtUnc_68: 2.18238979e-04 + ArtUnc_69: 1.10086673e-05 + ArtUnc_70: 9.33242884e-05 + ArtUnc_71: 1.74104995e-06 + ArtUnc_72: 1.55123093e-05 + ArtUnc_73: 1.17140271e-03 + ArtUnc_74: -2.78631158e-04 + ArtUnc_75: 2.87000157e-04 + ArtUnc_76: 7.22476508e-03 + ArtUnc_77: -1.32209554e-03 + ArtUnc_78: 1.61347644e-02 + ArtUnc_79: 3.81306712e-03 + ArtUnc_80: -5.06447773e-03 + ArtUnc_81: 3.43623122e-03 + ArtUnc_82: 2.24128023e-05 + ArtUnc_83: 2.22015401e-02 + ArtUnc_84: -4.45662909e-03 + ArtUnc_85: -1.74286395e-02 + ArtUnc_86: 2.14964834e-02 + ArtUnc_87: 1.36079907e-02 + ArtUnc_88: -1.13856997e-02 + ArtUnc_89: -7.78080219e-03 + ArtUnc_90: 1.89882963e-03 + ArtUnc_91: 3.95969577e-03 + ArtUnc_92: 5.86009507e-04 + ArtUnc_93: -8.04528576e-03 + ArtUnc_94: 3.47827883e-03 + ArtUnc_95: 2.26535564e-04 + ArtUnc_96: -4.25492888e-03 - stat: 0 Uncorr: 1.44 - RCES: 8.406674491140953 - ElEn: 1.3702528817703687 - ElTh: 0.6984742228600852 + RCES: 8.40667449e+00 + ElEn: 1.37025288e+00 + ElTh: 6.98474223e-01 Lumi: 3.6 - LArN: 0.8639999999999999 + LArN: 8.64000000e-01 StatMC: 2.3904 RadErr: 0.4464 - Model_1: 1.8430031144846173 - Model_2: 1.8430031144846173 - ModelRW_1: 1.4357096085211658 - ModelRW_2: 1.4357096085211658 - JES_1: 4.026734776465915 - JES_2: 4.026734776465915 - ArtUnc_1: 0.862390513360958 - ArtUnc_2: -0.058522334197274935 - ArtUnc_3: -0.015617481349614557 - ArtUnc_4: -0.02865956582028775 - ArtUnc_5: 0.024560404389031128 - ArtUnc_6: -0.013697542293582938 - ArtUnc_7: 0.0312667358010939 - ArtUnc_8: -8.052766469309553 - ArtUnc_9: -0.003869570549781359 - ArtUnc_10: -5.440340482204765 - ArtUnc_11: 0.5063656603501565 - ArtUnc_12: 0.13134908148404048 - ArtUnc_13: 1.5029665042315448 - ArtUnc_14: -0.02868999219755132 - ArtUnc_15: 0.1800281550271725 - ArtUnc_16: 0.01425040702897497 - ArtUnc_17: 0.04851242069982236 - ArtUnc_18: -0.2994043649614981 - ArtUnc_19: 0.07767460929125639 - ArtUnc_20: 0.2717761425707195 - ArtUnc_21: 0.047177105354672885 - ArtUnc_22: 0.03848277959299294 - ArtUnc_23: 0.014740246882677685 - ArtUnc_24: 0.0029896501309716835 - ArtUnc_25: -0.04036369541606761 - ArtUnc_26: -0.09302467152124266 - ArtUnc_27: -0.014597160954110492 - ArtUnc_28: -0.032271023414061836 - ArtUnc_29: 0.011743211789942889 - ArtUnc_30: -0.02075840896967938 - ArtUnc_31: 0.011241230788636522 - ArtUnc_32: 0.007682375996866057 - ArtUnc_33: 0.006482760235225154 - ArtUnc_34: 0.008580794784233063 - ArtUnc_35: 0.004056435036263157 - ArtUnc_36: 0.0008921238755738741 - ArtUnc_37: -0.0021935306004609617 - ArtUnc_38: 0.0009761650792590337 - ArtUnc_39: -0.0005096127087808053 - ArtUnc_40: -0.0005619835756197868 - ArtUnc_41: -0.0031631785001945928 - ArtUnc_42: -0.002833615200537926 - ArtUnc_43: 0.000737177321297061 - ArtUnc_44: 0.001308887822230703 - ArtUnc_45: -0.0012901354777218469 - ArtUnc_46: 0.0007960634160440661 - ArtUnc_47: -0.0016605377633478362 - ArtUnc_48: 0.00041322085193029644 - ArtUnc_49: 0.0007064806487292607 - ArtUnc_50: 0.0008218480678580217 - ArtUnc_51: -0.00013628995667965135 - ArtUnc_52: 7.824198600373727e-05 - ArtUnc_53: 0.0007009699714016272 - ArtUnc_54: -0.00017757524658647804 - ArtUnc_55: 9.061136987685657e-06 - ArtUnc_56: -0.00013438631943932383 - ArtUnc_57: 9.964845519297726e-06 - ArtUnc_58: -1.1228773788767014e-05 - ArtUnc_59: -1.3513642131206547e-05 - ArtUnc_60: -4.997737295236594e-06 - ArtUnc_61: 1.0751982835757547e-05 - ArtUnc_62: 6.1362719694684646e-06 - ArtUnc_63: -7.024195304640522e-06 - ArtUnc_64: 1.104379494273848e-05 - ArtUnc_65: -6.857977199225964e-06 - ArtUnc_66: 1.578230170233843e-06 - ArtUnc_67: 1.8570889589523063e-07 - ArtUnc_68: 7.241483498069554e-06 - ArtUnc_69: 9.093223014310423e-06 - ArtUnc_70: -2.2514322267953912e-07 - ArtUnc_71: 4.916213171292535e-07 - ArtUnc_72: -5.360034925647657e-07 - ArtUnc_73: 1.5427469524348488e-06 - ArtUnc_74: -2.3515148923936133e-06 - ArtUnc_75: -4.317535944850396e-07 - ArtUnc_76: 1.1272934960468206e-07 - ArtUnc_77: 7.517926745290272e-07 - ArtUnc_78: 5.095707024872422e-07 - ArtUnc_79: -7.8664914257136e-07 - ArtUnc_80: 9.434889384442472e-08 - ArtUnc_81: -1.1980382405502867e-08 - ArtUnc_82: -4.258541093895767e-10 - ArtUnc_83: -4.4121592340278306e-08 - ArtUnc_84: -2.5736692776212392e-08 - ArtUnc_85: 4.2710197772578146e-08 - ArtUnc_86: 8.348804058710194e-09 - ArtUnc_87: 1.766129369683349e-08 - ArtUnc_88: 7.80158295685783e-09 - ArtUnc_89: -5.735037683417001e-10 - ArtUnc_90: -9.147156941503087e-08 - ArtUnc_91: 2.083758651128185e-08 - ArtUnc_92: 4.8526244608792894e-09 - ArtUnc_93: -1.3073151315177993e-07 - ArtUnc_94: 8.733441907194496e-08 - ArtUnc_95: 2.3566459633314595e-08 - ArtUnc_96: -8.364543817190556e-09 + Model_1: 1.84300311e+00 + Model_2: 1.84300311e+00 + ModelRW_1: 1.43570961e+00 + ModelRW_2: 1.43570961e+00 + JES_1: 4.02673478e+00 + JES_2: 4.02673478e+00 + ArtUnc_1: 8.62390513e-01 + ArtUnc_2: -5.85223342e-02 + ArtUnc_3: -1.56174813e-02 + ArtUnc_4: -2.86595658e-02 + ArtUnc_5: 2.45604044e-02 + ArtUnc_6: -1.36975423e-02 + ArtUnc_7: 3.12667358e-02 + ArtUnc_8: -8.05276647e+00 + ArtUnc_9: -3.86957055e-03 + ArtUnc_10: -5.44034048e+00 + ArtUnc_11: 5.06365660e-01 + ArtUnc_12: 1.31349081e-01 + ArtUnc_13: 1.50296650e+00 + ArtUnc_14: -2.86899922e-02 + ArtUnc_15: 1.80028155e-01 + ArtUnc_16: 1.42504070e-02 + ArtUnc_17: 4.85124207e-02 + ArtUnc_18: -2.99404365e-01 + ArtUnc_19: 7.76746093e-02 + ArtUnc_20: 2.71776143e-01 + ArtUnc_21: 4.71771054e-02 + ArtUnc_22: 3.84827796e-02 + ArtUnc_23: 1.47402469e-02 + ArtUnc_24: 2.98965013e-03 + ArtUnc_25: -4.03636954e-02 + ArtUnc_26: -9.30246715e-02 + ArtUnc_27: -1.45971610e-02 + ArtUnc_28: -3.22710234e-02 + ArtUnc_29: 1.17432118e-02 + ArtUnc_30: -2.07584090e-02 + ArtUnc_31: 1.12412308e-02 + ArtUnc_32: 7.68237600e-03 + ArtUnc_33: 6.48276024e-03 + ArtUnc_34: 8.58079478e-03 + ArtUnc_35: 4.05643504e-03 + ArtUnc_36: 8.92123876e-04 + ArtUnc_37: -2.19353060e-03 + ArtUnc_38: 9.76165079e-04 + ArtUnc_39: -5.09612709e-04 + ArtUnc_40: -5.61983576e-04 + ArtUnc_41: -3.16317850e-03 + ArtUnc_42: -2.83361520e-03 + ArtUnc_43: 7.37177321e-04 + ArtUnc_44: 1.30888782e-03 + ArtUnc_45: -1.29013548e-03 + ArtUnc_46: 7.96063416e-04 + ArtUnc_47: -1.66053776e-03 + ArtUnc_48: 4.13220852e-04 + ArtUnc_49: 7.06480649e-04 + ArtUnc_50: 8.21848068e-04 + ArtUnc_51: -1.36289957e-04 + ArtUnc_52: 7.82419860e-05 + ArtUnc_53: 7.00969971e-04 + ArtUnc_54: -1.77575247e-04 + ArtUnc_55: 9.06113699e-06 + ArtUnc_56: -1.34386319e-04 + ArtUnc_57: 9.96484552e-06 + ArtUnc_58: -1.12287738e-05 + ArtUnc_59: -1.35136421e-05 + ArtUnc_60: -4.99773730e-06 + ArtUnc_61: 1.07519828e-05 + ArtUnc_62: 6.13627197e-06 + ArtUnc_63: -7.02419530e-06 + ArtUnc_64: 1.10437949e-05 + ArtUnc_65: -6.85797720e-06 + ArtUnc_66: 1.57823017e-06 + ArtUnc_67: 1.85708896e-07 + ArtUnc_68: 7.24148350e-06 + ArtUnc_69: 9.09322301e-06 + ArtUnc_70: -2.25143223e-07 + ArtUnc_71: 4.91621317e-07 + ArtUnc_72: -5.36003493e-07 + ArtUnc_73: 1.54274695e-06 + ArtUnc_74: -2.35151489e-06 + ArtUnc_75: -4.31753594e-07 + ArtUnc_76: 1.12729350e-07 + ArtUnc_77: 7.51792675e-07 + ArtUnc_78: 5.09570702e-07 + ArtUnc_79: -7.86649143e-07 + ArtUnc_80: 9.43488938e-08 + ArtUnc_81: -1.19803824e-08 + ArtUnc_82: -4.25854109e-10 + ArtUnc_83: -4.41215923e-08 + ArtUnc_84: -2.57366928e-08 + ArtUnc_85: 4.27101978e-08 + ArtUnc_86: 8.34880406e-09 + ArtUnc_87: 1.76612937e-08 + ArtUnc_88: 7.80158296e-09 + ArtUnc_89: -5.73503768e-10 + ArtUnc_90: -9.14715694e-08 + ArtUnc_91: 2.08375865e-08 + ArtUnc_92: 4.85262446e-09 + ArtUnc_93: -1.30731513e-07 + ArtUnc_94: 8.73344191e-08 + ArtUnc_95: 2.35664596e-08 + ArtUnc_96: -8.36454382e-09 - stat: 0 Uncorr: 1.04 - RCES: 1.4209231928573762 - ElEn: 0.28840083217633056 - ElTh: 0.29318963146741733 + RCES: 1.42092319e+00 + ElEn: 2.88400832e-01 + ElTh: 2.93189631e-01 Lumi: 2.6 LArN: 0.624 StatMC: 0.7696 RadErr: 0.312 - Model_1: 0.7574527840070298 - Model_2: 0.7574527840070298 - ModelRW_1: 0.8751153523964712 - ModelRW_2: 0.8751153523964712 - JES_1: 0.9381569591491608 - JES_2: 0.9381569591491608 - ArtUnc_1: 0.1320383969101628 - ArtUnc_2: -0.0018981155812127922 - ArtUnc_3: 0.030449734167063938 - ArtUnc_4: 0.016599559452785167 - ArtUnc_5: -0.007039446793516058 - ArtUnc_6: -0.0016744990704085601 - ArtUnc_7: 0.00015496188070738973 - ArtUnc_8: 0.04741118864007513 - ArtUnc_9: 0.0007186835312962168 - ArtUnc_10: -0.4305264015518117 - ArtUnc_11: -0.3402840139397071 - ArtUnc_12: 0.3989521206085828 - ArtUnc_13: 0.09101270589019123 - ArtUnc_14: -0.0454662744015132 - ArtUnc_15: 0.009692340009628061 - ArtUnc_16: 0.03319493653463854 - ArtUnc_17: 0.05060998404362843 - ArtUnc_18: -0.06042621545255102 - ArtUnc_19: 0.04212580899411449 - ArtUnc_20: 0.015698438313396287 - ArtUnc_21: -0.027948389494300365 - ArtUnc_22: 0.03784757413331094 - ArtUnc_23: 0.021509993525674447 - ArtUnc_24: -0.0004039371438018868 - ArtUnc_25: 3.2719289748556997 - ArtUnc_26: 1.3315714679588329 - ArtUnc_27: 0.3873789388962019 - ArtUnc_28: 0.6847540037957462 - ArtUnc_29: 0.020893158405177158 - ArtUnc_30: 0.24155149523280334 - ArtUnc_31: -0.05080766078860241 - ArtUnc_32: -0.08409477654661683 - ArtUnc_33: -0.056203225073985175 - ArtUnc_34: -0.08167182024114937 - ArtUnc_35: -0.08773620671064794 - ArtUnc_36: -0.037061892254628304 - ArtUnc_37: 0.0024416941282667287 - ArtUnc_38: 0.005311259237549614 - ArtUnc_39: 0.004140830387009761 - ArtUnc_40: 0.0023273358670159597 - ArtUnc_41: 0.016608369052248613 - ArtUnc_42: 0.017377037665656427 - ArtUnc_43: -0.007473878582718413 - ArtUnc_44: -0.01136699783501941 - ArtUnc_45: 0.012081466399688854 - ArtUnc_46: -0.006010521471543492 - ArtUnc_47: 0.014787560023833185 - ArtUnc_48: -0.004711128239898752 - ArtUnc_49: -0.007430677269866188 - ArtUnc_50: -0.006807979909466713 - ArtUnc_51: 0.0006050043502575601 - ArtUnc_52: -0.0001350414213422827 - ArtUnc_53: -0.0072927373415190835 - ArtUnc_54: 0.0021796124008489058 - ArtUnc_55: 0.0010621839197683008 - ArtUnc_56: 0.00038932020161372015 - ArtUnc_57: 2.8675619155647794e-06 - ArtUnc_58: -0.00011801018194304885 - ArtUnc_59: 0.00015106725253573715 - ArtUnc_60: 5.010764059745741e-05 - ArtUnc_61: -9.866999716198439e-06 - ArtUnc_62: -5.093667125678123e-05 - ArtUnc_63: 1.3994054984194227e-06 - ArtUnc_64: -7.893786420285958e-05 - ArtUnc_65: 6.916046599341139e-05 - ArtUnc_66: 4.153359855595592e-06 - ArtUnc_67: -3.7740188390941575e-06 - ArtUnc_68: -4.220146094322869e-06 - ArtUnc_69: -5.492019682323398e-06 - ArtUnc_70: -4.037667501783616e-06 - ArtUnc_71: 6.169350904763874e-06 - ArtUnc_72: -1.9239639399510934e-06 - ArtUnc_73: -2.479148957476188e-06 - ArtUnc_74: 1.4911766742091386e-05 - ArtUnc_75: 2.4181351515257655e-06 - ArtUnc_76: -4.5954891167824075e-07 - ArtUnc_77: -4.5068273257981715e-06 - ArtUnc_78: -3.171597684393666e-06 - ArtUnc_79: 7.267656447246022e-06 - ArtUnc_80: 8.86925522824323e-07 - ArtUnc_81: -3.4742103213120816e-07 - ArtUnc_82: -3.2867253404634625e-09 - ArtUnc_83: 4.799206644697428e-07 - ArtUnc_84: 4.956056692359477e-07 - ArtUnc_85: -3.0571751073164814e-07 - ArtUnc_86: -6.513106602556879e-08 - ArtUnc_87: -1.285266079731519e-07 - ArtUnc_88: -3.941215089842248e-07 - ArtUnc_89: -4.054728722557868e-07 - ArtUnc_90: -1.3450800291205652e-08 - ArtUnc_91: -7.577235197069439e-08 - ArtUnc_92: -1.9418480748555077e-08 - ArtUnc_93: 3.038985099760247e-07 - ArtUnc_94: -2.603149510967458e-07 - ArtUnc_95: 2.5716364133558877e-07 - ArtUnc_96: -1.7915995558900218e-09 + Model_1: 7.57452784e-01 + Model_2: 7.57452784e-01 + ModelRW_1: 8.75115352e-01 + ModelRW_2: 8.75115352e-01 + JES_1: 9.38156959e-01 + JES_2: 9.38156959e-01 + ArtUnc_1: 1.32038397e-01 + ArtUnc_2: -1.89811558e-03 + ArtUnc_3: 3.04497342e-02 + ArtUnc_4: 1.65995595e-02 + ArtUnc_5: -7.03944679e-03 + ArtUnc_6: -1.67449907e-03 + ArtUnc_7: 1.54961881e-04 + ArtUnc_8: 4.74111886e-02 + ArtUnc_9: 7.18683531e-04 + ArtUnc_10: -4.30526402e-01 + ArtUnc_11: -3.40284014e-01 + ArtUnc_12: 3.98952121e-01 + ArtUnc_13: 9.10127059e-02 + ArtUnc_14: -4.54662744e-02 + ArtUnc_15: 9.69234001e-03 + ArtUnc_16: 3.31949365e-02 + ArtUnc_17: 5.06099840e-02 + ArtUnc_18: -6.04262155e-02 + ArtUnc_19: 4.21258090e-02 + ArtUnc_20: 1.56984383e-02 + ArtUnc_21: -2.79483895e-02 + ArtUnc_22: 3.78475741e-02 + ArtUnc_23: 2.15099935e-02 + ArtUnc_24: -4.03937144e-04 + ArtUnc_25: 3.27192897e+00 + ArtUnc_26: 1.33157147e+00 + ArtUnc_27: 3.87378939e-01 + ArtUnc_28: 6.84754004e-01 + ArtUnc_29: 2.08931584e-02 + ArtUnc_30: 2.41551495e-01 + ArtUnc_31: -5.08076608e-02 + ArtUnc_32: -8.40947765e-02 + ArtUnc_33: -5.62032251e-02 + ArtUnc_34: -8.16718202e-02 + ArtUnc_35: -8.77362067e-02 + ArtUnc_36: -3.70618923e-02 + ArtUnc_37: 2.44169413e-03 + ArtUnc_38: 5.31125924e-03 + ArtUnc_39: 4.14083039e-03 + ArtUnc_40: 2.32733587e-03 + ArtUnc_41: 1.66083691e-02 + ArtUnc_42: 1.73770377e-02 + ArtUnc_43: -7.47387858e-03 + ArtUnc_44: -1.13669978e-02 + ArtUnc_45: 1.20814664e-02 + ArtUnc_46: -6.01052147e-03 + ArtUnc_47: 1.47875600e-02 + ArtUnc_48: -4.71112824e-03 + ArtUnc_49: -7.43067727e-03 + ArtUnc_50: -6.80797991e-03 + ArtUnc_51: 6.05004350e-04 + ArtUnc_52: -1.35041421e-04 + ArtUnc_53: -7.29273734e-03 + ArtUnc_54: 2.17961240e-03 + ArtUnc_55: 1.06218392e-03 + ArtUnc_56: 3.89320202e-04 + ArtUnc_57: 2.86756192e-06 + ArtUnc_58: -1.18010182e-04 + ArtUnc_59: 1.51067253e-04 + ArtUnc_60: 5.01076406e-05 + ArtUnc_61: -9.86699972e-06 + ArtUnc_62: -5.09366713e-05 + ArtUnc_63: 1.39940550e-06 + ArtUnc_64: -7.89378642e-05 + ArtUnc_65: 6.91604660e-05 + ArtUnc_66: 4.15335986e-06 + ArtUnc_67: -3.77401884e-06 + ArtUnc_68: -4.22014609e-06 + ArtUnc_69: -5.49201968e-06 + ArtUnc_70: -4.03766750e-06 + ArtUnc_71: 6.16935090e-06 + ArtUnc_72: -1.92396394e-06 + ArtUnc_73: -2.47914896e-06 + ArtUnc_74: 1.49117667e-05 + ArtUnc_75: 2.41813515e-06 + ArtUnc_76: -4.59548912e-07 + ArtUnc_77: -4.50682733e-06 + ArtUnc_78: -3.17159768e-06 + ArtUnc_79: 7.26765645e-06 + ArtUnc_80: 8.86925523e-07 + ArtUnc_81: -3.47421032e-07 + ArtUnc_82: -3.28672534e-09 + ArtUnc_83: 4.79920664e-07 + ArtUnc_84: 4.95605669e-07 + ArtUnc_85: -3.05717511e-07 + ArtUnc_86: -6.51310660e-08 + ArtUnc_87: -1.28526608e-07 + ArtUnc_88: -3.94121509e-07 + ArtUnc_89: -4.05472872e-07 + ArtUnc_90: -1.34508003e-08 + ArtUnc_91: -7.57723520e-08 + ArtUnc_92: -1.94184807e-08 + ArtUnc_93: 3.03898510e-07 + ArtUnc_94: -2.60314951e-07 + ArtUnc_95: 2.57163641e-07 + ArtUnc_96: -1.79159956e-09 - stat: 0 Uncorr: 0.265 - RCES: 0.039904283917895335 - ElEn: 0.04731196333909638 - ElTh: 0.10442311465858506 + RCES: 3.99042839e-02 + ElEn: 4.73119633e-02 + ElTh: 1.04423115e-01 Lumi: 0.6625 LArN: 0.159 - StatMC: 0.20670000000000002 + StatMC: 2.06700000e-01 RadErr: 0.1431 - Model_1: 0.7570285199383178 - Model_2: 0.7570285199383178 - ModelRW_1: 0.6652107044012444 - ModelRW_2: 0.6652107044012444 - JES_1: 0.6155819380878552 - JES_2: 0.6155819380878552 - ArtUnc_1: 0.009828482441487745 - ArtUnc_2: -0.00460871700064456 - ArtUnc_3: -0.002367722967671026 - ArtUnc_4: -0.00029926032901598235 - ArtUnc_5: -0.00012690827336534974 - ArtUnc_6: -6.2210660451003455e-06 - ArtUnc_7: -8.451570832595379e-05 - ArtUnc_8: 0.02751057521746776 - ArtUnc_9: 1.5723655127338393e-05 - ArtUnc_10: 0.017825203774346893 - ArtUnc_11: -0.006729346020044204 - ArtUnc_12: 0.015601139436504471 - ArtUnc_13: -0.007047244784114975 - ArtUnc_14: -0.0065521735181942676 - ArtUnc_15: -0.005325434628903351 - ArtUnc_16: 0.0064917673106256015 - ArtUnc_17: -0.0034180238988290863 - ArtUnc_18: 0.0016271913888590524 - ArtUnc_19: -0.0010176831113118696 - ArtUnc_20: 0.0012412268220376775 - ArtUnc_21: 0.0013910730652472933 - ArtUnc_22: -0.0009017674683374423 - ArtUnc_23: 4.585804574036141e-05 - ArtUnc_24: -0.0001413221668135053 - ArtUnc_25: 0.048844340697331595 - ArtUnc_26: 0.04181590905252278 - ArtUnc_27: 0.32589663868765795 - ArtUnc_28: -0.046280711933589666 - ArtUnc_29: -0.030819773195066773 - ArtUnc_30: 0.14587854716562404 - ArtUnc_31: -0.0016396219494746182 - ArtUnc_32: -0.0678545120748393 - ArtUnc_33: -0.022661813340476022 - ArtUnc_34: -0.04182033033426591 - ArtUnc_35: -0.06905773771897107 - ArtUnc_36: -0.026864389685190497 - ArtUnc_37: -0.004292649218077433 - ArtUnc_38: 0.0050802906960727345 - ArtUnc_39: 0.0008362842858768569 - ArtUnc_40: 0.0003095012144619919 - ArtUnc_41: -0.7052015856251063 - ArtUnc_42: -0.6327097492563641 - ArtUnc_43: 0.12172801961898926 - ArtUnc_44: 0.22099531757298294 - ArtUnc_45: -0.23647012932139355 - ArtUnc_46: 0.08099032950666608 - ArtUnc_47: -0.20664841683345517 - ArtUnc_48: 0.038265988932915405 - ArtUnc_49: 0.09491404193287561 - ArtUnc_50: 0.09824741575171583 - ArtUnc_51: -0.004617328215157453 - ArtUnc_52: 0.0017742998422925309 - ArtUnc_53: 0.09017523379420407 - ArtUnc_54: -0.028143182158681345 - ArtUnc_55: -0.011196793347803947 - ArtUnc_56: -0.0034442880899961553 - ArtUnc_57: 0.0010036416826926242 - ArtUnc_58: -0.0028231731389436556 - ArtUnc_59: 0.0012046531993427795 - ArtUnc_60: 0.0003414476538073182 - ArtUnc_61: 2.537222981374834e-05 - ArtUnc_62: -0.00032734669173514557 - ArtUnc_63: -0.00028632491468644916 - ArtUnc_64: -0.0006345923426677774 - ArtUnc_65: 0.0005386105751243396 - ArtUnc_66: -0.0011505629179389587 - ArtUnc_67: 0.0004560945531371202 - ArtUnc_68: 0.003014846949041353 - ArtUnc_69: 0.0020738004664223268 - ArtUnc_70: -0.00037625735442800627 - ArtUnc_71: 0.0004925221551271979 - ArtUnc_72: -0.00026471775867246614 - ArtUnc_73: 0.0002693477913324866 - ArtUnc_74: -0.00026473689865880184 - ArtUnc_75: -3.595203059976877e-05 - ArtUnc_76: 1.2460882397148897e-06 - ArtUnc_77: 4.642367619193105e-05 - ArtUnc_78: 3.913418086393189e-05 - ArtUnc_79: -6.51698698504578e-05 - ArtUnc_80: 4.185286658640881e-07 - ArtUnc_81: 1.355320199362528e-06 - ArtUnc_82: -1.3444472389898236e-09 - ArtUnc_83: -1.3574624362073272e-06 - ArtUnc_84: -3.5302943668521003e-06 - ArtUnc_85: 1.2092535550324354e-06 - ArtUnc_86: -2.392580188600286e-06 - ArtUnc_87: -2.9287647151749426e-06 - ArtUnc_88: -7.154831036187616e-06 - ArtUnc_89: -4.048195228634956e-06 - ArtUnc_90: 2.553863669683389e-06 - ArtUnc_91: -6.988055593524728e-07 - ArtUnc_92: -7.503800177848302e-08 - ArtUnc_93: -1.0256192208288061e-05 - ArtUnc_94: 3.073421133961953e-06 - ArtUnc_95: -2.478932443424516e-06 - ArtUnc_96: -9.190338720973543e-08 + Model_1: 7.57028520e-01 + Model_2: 7.57028520e-01 + ModelRW_1: 6.65210704e-01 + ModelRW_2: 6.65210704e-01 + JES_1: 6.15581938e-01 + JES_2: 6.15581938e-01 + ArtUnc_1: 9.82848244e-03 + ArtUnc_2: -4.60871700e-03 + ArtUnc_3: -2.36772297e-03 + ArtUnc_4: -2.99260329e-04 + ArtUnc_5: -1.26908273e-04 + ArtUnc_6: -6.22106605e-06 + ArtUnc_7: -8.45157083e-05 + ArtUnc_8: 2.75105752e-02 + ArtUnc_9: 1.57236551e-05 + ArtUnc_10: 1.78252038e-02 + ArtUnc_11: -6.72934602e-03 + ArtUnc_12: 1.56011394e-02 + ArtUnc_13: -7.04724478e-03 + ArtUnc_14: -6.55217352e-03 + ArtUnc_15: -5.32543463e-03 + ArtUnc_16: 6.49176731e-03 + ArtUnc_17: -3.41802390e-03 + ArtUnc_18: 1.62719139e-03 + ArtUnc_19: -1.01768311e-03 + ArtUnc_20: 1.24122682e-03 + ArtUnc_21: 1.39107307e-03 + ArtUnc_22: -9.01767468e-04 + ArtUnc_23: 4.58580457e-05 + ArtUnc_24: -1.41322167e-04 + ArtUnc_25: 4.88443407e-02 + ArtUnc_26: 4.18159091e-02 + ArtUnc_27: 3.25896639e-01 + ArtUnc_28: -4.62807119e-02 + ArtUnc_29: -3.08197732e-02 + ArtUnc_30: 1.45878547e-01 + ArtUnc_31: -1.63962195e-03 + ArtUnc_32: -6.78545121e-02 + ArtUnc_33: -2.26618133e-02 + ArtUnc_34: -4.18203303e-02 + ArtUnc_35: -6.90577377e-02 + ArtUnc_36: -2.68643897e-02 + ArtUnc_37: -4.29264922e-03 + ArtUnc_38: 5.08029070e-03 + ArtUnc_39: 8.36284286e-04 + ArtUnc_40: 3.09501214e-04 + ArtUnc_41: -7.05201586e-01 + ArtUnc_42: -6.32709749e-01 + ArtUnc_43: 1.21728020e-01 + ArtUnc_44: 2.20995318e-01 + ArtUnc_45: -2.36470129e-01 + ArtUnc_46: 8.09903295e-02 + ArtUnc_47: -2.06648417e-01 + ArtUnc_48: 3.82659889e-02 + ArtUnc_49: 9.49140419e-02 + ArtUnc_50: 9.82474158e-02 + ArtUnc_51: -4.61732822e-03 + ArtUnc_52: 1.77429984e-03 + ArtUnc_53: 9.01752338e-02 + ArtUnc_54: -2.81431822e-02 + ArtUnc_55: -1.11967933e-02 + ArtUnc_56: -3.44428809e-03 + ArtUnc_57: 1.00364168e-03 + ArtUnc_58: -2.82317314e-03 + ArtUnc_59: 1.20465320e-03 + ArtUnc_60: 3.41447654e-04 + ArtUnc_61: 2.53722298e-05 + ArtUnc_62: -3.27346692e-04 + ArtUnc_63: -2.86324915e-04 + ArtUnc_64: -6.34592343e-04 + ArtUnc_65: 5.38610575e-04 + ArtUnc_66: -1.15056292e-03 + ArtUnc_67: 4.56094553e-04 + ArtUnc_68: 3.01484695e-03 + ArtUnc_69: 2.07380047e-03 + ArtUnc_70: -3.76257354e-04 + ArtUnc_71: 4.92522155e-04 + ArtUnc_72: -2.64717759e-04 + ArtUnc_73: 2.69347791e-04 + ArtUnc_74: -2.64736899e-04 + ArtUnc_75: -3.59520306e-05 + ArtUnc_76: 1.24608824e-06 + ArtUnc_77: 4.64236762e-05 + ArtUnc_78: 3.91341809e-05 + ArtUnc_79: -6.51698699e-05 + ArtUnc_80: 4.18528666e-07 + ArtUnc_81: 1.35532020e-06 + ArtUnc_82: -1.34444724e-09 + ArtUnc_83: -1.35746244e-06 + ArtUnc_84: -3.53029437e-06 + ArtUnc_85: 1.20925356e-06 + ArtUnc_86: -2.39258019e-06 + ArtUnc_87: -2.92876472e-06 + ArtUnc_88: -7.15483104e-06 + ArtUnc_89: -4.04819523e-06 + ArtUnc_90: 2.55386367e-06 + ArtUnc_91: -6.98805559e-07 + ArtUnc_92: -7.50380018e-08 + ArtUnc_93: -1.02561922e-05 + ArtUnc_94: 3.07342113e-06 + ArtUnc_95: -2.47893244e-06 + ArtUnc_96: -9.19033872e-08 - stat: 0 - Uncorr: 0.04820000000000001 - RCES: 0.027691938231189237 - ElEn: 0.02909120573300461 - ElTh: 0.025325648718246097 - Lumi: 0.12050000000000001 + Uncorr: 4.82000000e-02 + RCES: 2.76919382e-02 + ElEn: 2.90912057e-02 + ElTh: 2.53256487e-02 + Lumi: 1.20500000e-01 LArN: 0.02892 - StatMC: 0.07712000000000001 - RadErr: 0.042898000000000006 - Model_1: 0.16325539942678774 - Model_2: 0.16325539942678774 - ModelRW_1: 0.08963709822389389 - ModelRW_2: 0.08963709822389389 - JES_1: 0.16880772703285832 - JES_2: 0.16880772703285832 - ArtUnc_1: -6.164644459496338e-08 - ArtUnc_2: 3.922489697003599e-06 - ArtUnc_3: 3.676532891100279e-06 - ArtUnc_4: 5.564873447651579e-07 - ArtUnc_5: 6.59743217294973e-07 - ArtUnc_6: 4.992344983248174e-07 - ArtUnc_7: -1.1475159678064252e-07 - ArtUnc_8: -9.852689490555703e-05 - ArtUnc_9: -4.407965694973057e-07 - ArtUnc_10: 0.0001792344528930398 - ArtUnc_11: 7.616657232721964e-05 - ArtUnc_12: -4.4728975211666266e-05 - ArtUnc_13: -4.0797786142070816e-05 - ArtUnc_14: 1.1653214759857445e-05 - ArtUnc_15: 2.9468682734613832e-05 - ArtUnc_16: -4.060088063743114e-05 - ArtUnc_17: 4.8986111224387076e-05 - ArtUnc_18: -2.500089489249813e-05 - ArtUnc_19: 1.8892070928952376e-05 - ArtUnc_20: -3.2089415329472654e-05 - ArtUnc_21: -3.1833271314447314e-05 - ArtUnc_22: 1.9025728150568153e-05 - ArtUnc_23: 7.026400508713268e-06 - ArtUnc_24: -5.427374187542625e-07 - ArtUnc_25: 0.00180497943837816 - ArtUnc_26: -0.0011801587967399964 - ArtUnc_27: -0.009578494181615448 - ArtUnc_28: 0.0008501682735662387 - ArtUnc_29: 0.0009006503708527966 - ArtUnc_30: -0.004665811728323744 - ArtUnc_31: 0.00010043484313485591 - ArtUnc_32: 0.002013123413600144 - ArtUnc_33: 0.0006497633601117199 - ArtUnc_34: 0.0008514052295296975 - ArtUnc_35: 0.001151055185015836 - ArtUnc_36: -5.32719746780574e-05 - ArtUnc_37: -0.00018763487850387555 - ArtUnc_38: 0.000374601437531586 - ArtUnc_39: 0.00020843676093705043 - ArtUnc_40: 3.0350509533418895e-05 - ArtUnc_41: 0.10266260140158713 - ArtUnc_42: -0.09840882032617902 - ArtUnc_43: -0.0687136256878946 - ArtUnc_44: -0.009317374694874054 - ArtUnc_45: -0.03518183522111571 - ArtUnc_46: -0.029312409153198906 - ArtUnc_47: 0.013643854055219597 - ArtUnc_48: -0.03382659436727794 - ArtUnc_49: 0.004633542472207272 - ArtUnc_50: 0.02025841501175562 - ArtUnc_51: -0.0023840751346399375 - ArtUnc_52: 0.004771693908960994 - ArtUnc_53: 0.022523688368749763 - ArtUnc_54: -0.009567457581226015 - ArtUnc_55: -0.009843605589854792 - ArtUnc_56: 0.001517061341357972 - ArtUnc_57: 0.06258888615097814 - ArtUnc_58: -0.26121858121934405 - ArtUnc_59: 0.10808008735278782 - ArtUnc_60: 0.023049073521630416 - ArtUnc_61: -0.14287717897482147 - ArtUnc_62: 0.04647436774649283 - ArtUnc_63: 0.05445480327220324 - ArtUnc_64: 0.020264268067555387 - ArtUnc_65: -0.002083777069281772 - ArtUnc_66: 0.06705184198137516 - ArtUnc_67: -0.021510300671449198 - ArtUnc_68: -0.08355834520654506 - ArtUnc_69: -0.04248293594777888 - ArtUnc_70: 0.0015854931928314551 - ArtUnc_71: -0.009286362438022215 - ArtUnc_72: 0.005984455381454388 - ArtUnc_73: 0.0016273501516143546 - ArtUnc_74: -0.001251898970055017 - ArtUnc_75: -5.0258160043893535e-05 - ArtUnc_76: -5.509821488616488e-05 - ArtUnc_77: -0.0001441671182925708 - ArtUnc_78: -0.00010278516747378758 - ArtUnc_79: 0.0006061054586888791 - ArtUnc_80: -6.34313564224788e-05 - ArtUnc_81: 7.291486148520376e-05 - ArtUnc_82: 3.946880946781465e-07 - ArtUnc_83: 0.0001346940923443161 - ArtUnc_84: -0.00010207049142693918 - ArtUnc_85: -0.00010050144195659215 - ArtUnc_86: 0.0001167991316420489 - ArtUnc_87: 7.445854981989877e-05 - ArtUnc_88: -0.00020777512486746868 - ArtUnc_89: -0.00011443435620054819 - ArtUnc_90: 3.887377084194982e-05 - ArtUnc_91: 2.3285955195096784e-05 - ArtUnc_92: 4.009384033282361e-06 - ArtUnc_93: -0.0002676195551706283 - ArtUnc_94: 8.669785835343736e-05 - ArtUnc_95: 8.024371620577143e-06 - ArtUnc_96: -2.1333954408291494e-05 + StatMC: 7.71200000e-02 + RadErr: 4.28980000e-02 + Model_1: 1.63255399e-01 + Model_2: 1.63255399e-01 + ModelRW_1: 8.96370982e-02 + ModelRW_2: 8.96370982e-02 + JES_1: 1.68807727e-01 + JES_2: 1.68807727e-01 + ArtUnc_1: -6.16464446e-08 + ArtUnc_2: 3.92248970e-06 + ArtUnc_3: 3.67653289e-06 + ArtUnc_4: 5.56487345e-07 + ArtUnc_5: 6.59743217e-07 + ArtUnc_6: 4.99234498e-07 + ArtUnc_7: -1.14751597e-07 + ArtUnc_8: -9.85268949e-05 + ArtUnc_9: -4.40796569e-07 + ArtUnc_10: 1.79234453e-04 + ArtUnc_11: 7.61665723e-05 + ArtUnc_12: -4.47289752e-05 + ArtUnc_13: -4.07977861e-05 + ArtUnc_14: 1.16532148e-05 + ArtUnc_15: 2.94686827e-05 + ArtUnc_16: -4.06008806e-05 + ArtUnc_17: 4.89861112e-05 + ArtUnc_18: -2.50008949e-05 + ArtUnc_19: 1.88920709e-05 + ArtUnc_20: -3.20894153e-05 + ArtUnc_21: -3.18332713e-05 + ArtUnc_22: 1.90257282e-05 + ArtUnc_23: 7.02640051e-06 + ArtUnc_24: -5.42737419e-07 + ArtUnc_25: 1.80497944e-03 + ArtUnc_26: -1.18015880e-03 + ArtUnc_27: -9.57849418e-03 + ArtUnc_28: 8.50168274e-04 + ArtUnc_29: 9.00650371e-04 + ArtUnc_30: -4.66581173e-03 + ArtUnc_31: 1.00434843e-04 + ArtUnc_32: 2.01312341e-03 + ArtUnc_33: 6.49763360e-04 + ArtUnc_34: 8.51405230e-04 + ArtUnc_35: 1.15105519e-03 + ArtUnc_36: -5.32719747e-05 + ArtUnc_37: -1.87634879e-04 + ArtUnc_38: 3.74601438e-04 + ArtUnc_39: 2.08436761e-04 + ArtUnc_40: 3.03505095e-05 + ArtUnc_41: 1.02662601e-01 + ArtUnc_42: -9.84088203e-02 + ArtUnc_43: -6.87136257e-02 + ArtUnc_44: -9.31737469e-03 + ArtUnc_45: -3.51818352e-02 + ArtUnc_46: -2.93124092e-02 + ArtUnc_47: 1.36438541e-02 + ArtUnc_48: -3.38265944e-02 + ArtUnc_49: 4.63354247e-03 + ArtUnc_50: 2.02584150e-02 + ArtUnc_51: -2.38407513e-03 + ArtUnc_52: 4.77169391e-03 + ArtUnc_53: 2.25236884e-02 + ArtUnc_54: -9.56745758e-03 + ArtUnc_55: -9.84360559e-03 + ArtUnc_56: 1.51706134e-03 + ArtUnc_57: 6.25888862e-02 + ArtUnc_58: -2.61218581e-01 + ArtUnc_59: 1.08080087e-01 + ArtUnc_60: 2.30490735e-02 + ArtUnc_61: -1.42877179e-01 + ArtUnc_62: 4.64743677e-02 + ArtUnc_63: 5.44548033e-02 + ArtUnc_64: 2.02642681e-02 + ArtUnc_65: -2.08377707e-03 + ArtUnc_66: 6.70518420e-02 + ArtUnc_67: -2.15103007e-02 + ArtUnc_68: -8.35583452e-02 + ArtUnc_69: -4.24829359e-02 + ArtUnc_70: 1.58549319e-03 + ArtUnc_71: -9.28636244e-03 + ArtUnc_72: 5.98445538e-03 + ArtUnc_73: 1.62735015e-03 + ArtUnc_74: -1.25189897e-03 + ArtUnc_75: -5.02581600e-05 + ArtUnc_76: -5.50982149e-05 + ArtUnc_77: -1.44167118e-04 + ArtUnc_78: -1.02785167e-04 + ArtUnc_79: 6.06105459e-04 + ArtUnc_80: -6.34313564e-05 + ArtUnc_81: 7.29148615e-05 + ArtUnc_82: 3.94688095e-07 + ArtUnc_83: 1.34694092e-04 + ArtUnc_84: -1.02070491e-04 + ArtUnc_85: -1.00501442e-04 + ArtUnc_86: 1.16799132e-04 + ArtUnc_87: 7.44585498e-05 + ArtUnc_88: -2.07775125e-04 + ArtUnc_89: -1.14434356e-04 + ArtUnc_90: 3.88737708e-05 + ArtUnc_91: 2.32859552e-05 + ArtUnc_92: 4.00938403e-06 + ArtUnc_93: -2.67619555e-04 + ArtUnc_94: 8.66978584e-05 + ArtUnc_95: 8.02437162e-06 + ArtUnc_96: -2.13339544e-05 - stat: 0 Uncorr: 0.00838 - RCES: 0.010901410556437181 - ElEn: 0.0021540838493429174 - ElTh: 0.004185598187834087 - Lumi: 0.020949999999999996 - LArN: 0.0050279999999999995 - StatMC: 0.0313412 - RadErr: 0.0358664 - Model_1: 0.047167416417692405 - Model_2: 0.047167416417692405 - ModelRW_1: 0.03276831818967828 - ModelRW_2: 0.03276831818967828 - JES_1: 0.026801249106991262 - JES_2: 0.026801249106991262 - ArtUnc_1: -2.8171268199507716e-08 - ArtUnc_2: 4.468404998851395e-07 - ArtUnc_3: 6.065669381628866e-07 - ArtUnc_4: 2.2074680006442324e-07 - ArtUnc_5: -2.7226297566834386e-08 - ArtUnc_6: 1.0502030776599082e-08 - ArtUnc_7: 6.247091281933477e-09 - ArtUnc_8: -1.3352960960347073e-05 - ArtUnc_9: -5.195880523141805e-08 - ArtUnc_10: 2.1743112544614577e-05 - ArtUnc_11: 1.4384283433486833e-05 - ArtUnc_12: -6.488154730178476e-06 - ArtUnc_13: -1.2077849621583853e-05 - ArtUnc_14: -9.85196993995112e-07 - ArtUnc_15: -5.508344773231818e-06 - ArtUnc_16: -8.576868897751414e-07 - ArtUnc_17: 1.703642990227518e-06 - ArtUnc_18: 2.2576529075168028e-07 - ArtUnc_19: 1.2942610814684423e-06 - ArtUnc_20: -5.002398679556529e-06 - ArtUnc_21: -3.8253376283432924e-06 - ArtUnc_22: 1.7604760363566307e-06 - ArtUnc_23: 6.148453534215448e-07 - ArtUnc_24: -8.64776660808692e-08 - ArtUnc_25: 0.00021897760157158004 - ArtUnc_26: -0.00010417696531048306 - ArtUnc_27: -0.0012450843536182764 - ArtUnc_28: 0.0001734897536596235 - ArtUnc_29: 0.00015219103957132238 - ArtUnc_30: -0.0007465051590978547 - ArtUnc_31: 2.0704047749812754e-05 - ArtUnc_32: 0.0004343764298588992 - ArtUnc_33: 0.0001240490801374033 - ArtUnc_34: 0.0002862893515864769 - ArtUnc_35: 0.000496359061452056 - ArtUnc_36: 0.00020282456223106611 - ArtUnc_37: 3.709434707071476e-05 - ArtUnc_38: -4.1061827783918016e-05 - ArtUnc_39: -6.799893174198059e-06 - ArtUnc_40: -1.495482406591319e-06 - ArtUnc_41: 0.0008081930040474229 - ArtUnc_42: 0.0021086839281373873 - ArtUnc_43: 0.00035821304071842616 - ArtUnc_44: -0.0005399654934635183 - ArtUnc_45: 0.001316493409075148 - ArtUnc_46: 0.0002010143782132027 - ArtUnc_47: 0.0006350875907164479 - ArtUnc_48: 0.0004759382595654312 - ArtUnc_49: -0.0006023760092153574 - ArtUnc_50: -0.0009495179427241272 - ArtUnc_51: 6.923725304565707e-05 - ArtUnc_52: -7.658225400022983e-05 - ArtUnc_53: -0.0009883270985561877 - ArtUnc_54: 0.00035012232252784885 - ArtUnc_55: 0.00023812194477975467 - ArtUnc_56: -4.123660112127637e-06 - ArtUnc_57: -0.02066127195479415 - ArtUnc_58: 0.030126179151983706 - ArtUnc_59: 0.046329830103050265 - ArtUnc_60: 0.01702587416560102 - ArtUnc_61: -0.008563593972697963 - ArtUnc_62: -0.012710627449860143 - ArtUnc_63: 0.004931348879743005 - ArtUnc_64: -0.019511390532134486 - ArtUnc_65: 0.01837312552201359 - ArtUnc_66: 0.006955319069816964 - ArtUnc_67: -0.001832830663475033 - ArtUnc_68: -0.00026029931124660403 - ArtUnc_69: 0.000548424930784027 - ArtUnc_70: -0.00014018403238890204 - ArtUnc_71: 0.0007404022609201388 - ArtUnc_72: -0.0002691231477139737 - ArtUnc_73: 0.07358766616309388 - ArtUnc_74: -0.0893527526264328 - ArtUnc_75: -0.012055679340105704 - ArtUnc_76: -0.0027011264050323686 - ArtUnc_77: 0.021387610532927363 - ArtUnc_78: 0.013447794794430668 - ArtUnc_79: -0.04306806542957896 - ArtUnc_80: 0.0002503528763656325 - ArtUnc_81: -0.0004905800793986709 - ArtUnc_82: -2.433948835170254e-06 - ArtUnc_83: 0.00034942425994394585 - ArtUnc_84: 0.0003703550434099853 - ArtUnc_85: -0.00018102905776399447 - ArtUnc_86: -0.00014389325348863863 - ArtUnc_87: -0.0003998668211764174 - ArtUnc_88: 0.00260042890848475 - ArtUnc_89: -0.0023811496247879713 - ArtUnc_90: -0.0006337108544291929 - ArtUnc_91: -0.000159910268279095 - ArtUnc_92: -3.0413386783324703e-05 - ArtUnc_93: 0.004616274227591099 - ArtUnc_94: 0.0008602099782936573 - ArtUnc_95: 0.0007644310356287082 - ArtUnc_96: -1.4366715556144155e-06 + RCES: 1.09014106e-02 + ElEn: 2.15408385e-03 + ElTh: 4.18559819e-03 + Lumi: 2.09500000e-02 + LArN: 5.02800000e-03 + StatMC: 3.13412000e-02 + RadErr: 3.58664000e-02 + Model_1: 4.71674164e-02 + Model_2: 4.71674164e-02 + ModelRW_1: 3.27683182e-02 + ModelRW_2: 3.27683182e-02 + JES_1: 2.68012491e-02 + JES_2: 2.68012491e-02 + ArtUnc_1: -2.81712682e-08 + ArtUnc_2: 4.46840500e-07 + ArtUnc_3: 6.06566938e-07 + ArtUnc_4: 2.20746800e-07 + ArtUnc_5: -2.72262976e-08 + ArtUnc_6: 1.05020308e-08 + ArtUnc_7: 6.24709128e-09 + ArtUnc_8: -1.33529610e-05 + ArtUnc_9: -5.19588052e-08 + ArtUnc_10: 2.17431125e-05 + ArtUnc_11: 1.43842834e-05 + ArtUnc_12: -6.48815473e-06 + ArtUnc_13: -1.20778496e-05 + ArtUnc_14: -9.85196994e-07 + ArtUnc_15: -5.50834477e-06 + ArtUnc_16: -8.57686890e-07 + ArtUnc_17: 1.70364299e-06 + ArtUnc_18: 2.25765291e-07 + ArtUnc_19: 1.29426108e-06 + ArtUnc_20: -5.00239868e-06 + ArtUnc_21: -3.82533763e-06 + ArtUnc_22: 1.76047604e-06 + ArtUnc_23: 6.14845353e-07 + ArtUnc_24: -8.64776661e-08 + ArtUnc_25: 2.18977602e-04 + ArtUnc_26: -1.04176965e-04 + ArtUnc_27: -1.24508435e-03 + ArtUnc_28: 1.73489754e-04 + ArtUnc_29: 1.52191040e-04 + ArtUnc_30: -7.46505159e-04 + ArtUnc_31: 2.07040477e-05 + ArtUnc_32: 4.34376430e-04 + ArtUnc_33: 1.24049080e-04 + ArtUnc_34: 2.86289352e-04 + ArtUnc_35: 4.96359061e-04 + ArtUnc_36: 2.02824562e-04 + ArtUnc_37: 3.70943471e-05 + ArtUnc_38: -4.10618278e-05 + ArtUnc_39: -6.79989317e-06 + ArtUnc_40: -1.49548241e-06 + ArtUnc_41: 8.08193004e-04 + ArtUnc_42: 2.10868393e-03 + ArtUnc_43: 3.58213041e-04 + ArtUnc_44: -5.39965493e-04 + ArtUnc_45: 1.31649341e-03 + ArtUnc_46: 2.01014378e-04 + ArtUnc_47: 6.35087591e-04 + ArtUnc_48: 4.75938260e-04 + ArtUnc_49: -6.02376009e-04 + ArtUnc_50: -9.49517943e-04 + ArtUnc_51: 6.92372530e-05 + ArtUnc_52: -7.65822540e-05 + ArtUnc_53: -9.88327099e-04 + ArtUnc_54: 3.50122323e-04 + ArtUnc_55: 2.38121945e-04 + ArtUnc_56: -4.12366011e-06 + ArtUnc_57: -2.06612720e-02 + ArtUnc_58: 3.01261792e-02 + ArtUnc_59: 4.63298301e-02 + ArtUnc_60: 1.70258742e-02 + ArtUnc_61: -8.56359397e-03 + ArtUnc_62: -1.27106274e-02 + ArtUnc_63: 4.93134888e-03 + ArtUnc_64: -1.95113905e-02 + ArtUnc_65: 1.83731255e-02 + ArtUnc_66: 6.95531907e-03 + ArtUnc_67: -1.83283066e-03 + ArtUnc_68: -2.60299311e-04 + ArtUnc_69: 5.48424931e-04 + ArtUnc_70: -1.40184032e-04 + ArtUnc_71: 7.40402261e-04 + ArtUnc_72: -2.69123148e-04 + ArtUnc_73: 7.35876662e-02 + ArtUnc_74: -8.93527526e-02 + ArtUnc_75: -1.20556793e-02 + ArtUnc_76: -2.70112641e-03 + ArtUnc_77: 2.13876105e-02 + ArtUnc_78: 1.34477948e-02 + ArtUnc_79: -4.30680654e-02 + ArtUnc_80: 2.50352876e-04 + ArtUnc_81: -4.90580079e-04 + ArtUnc_82: -2.43394884e-06 + ArtUnc_83: 3.49424260e-04 + ArtUnc_84: 3.70355043e-04 + ArtUnc_85: -1.81029058e-04 + ArtUnc_86: -1.43893253e-04 + ArtUnc_87: -3.99866821e-04 + ArtUnc_88: 2.60042891e-03 + ArtUnc_89: -2.38114962e-03 + ArtUnc_90: -6.33710854e-04 + ArtUnc_91: -1.59910268e-04 + ArtUnc_92: -3.04133868e-05 + ArtUnc_93: 4.61627423e-03 + ArtUnc_94: 8.60209978e-04 + ArtUnc_95: 7.64431036e-04 + ArtUnc_96: -1.43667156e-06 - stat: 0 - Uncorr: 0.0016500000000000002 - RCES: 0.004619904240079009 - ElEn: 0.0019083018629137269 - ElTh: 0.003460518530509554 + Uncorr: 1.65000000e-03 + RCES: 4.61990424e-03 + ElEn: 1.90830186e-03 + ElTh: 3.46051853e-03 Lumi: 0.004125 LArN: 0.00099 - StatMC: 0.0144375 + StatMC: 1.44375000e-02 RadErr: 0.014322 - Model_1: 0.012145619627050734 - Model_2: 0.012145619627050734 - ModelRW_1: 0.008750446417183526 - ModelRW_2: 0.008750446417183526 - JES_1: 0.008618977990095462 - JES_2: 0.008618977990095462 - ArtUnc_1: 6.041525253143837e-10 - ArtUnc_2: -7.457087380483398e-10 - ArtUnc_3: -1.4082834307497503e-10 - ArtUnc_4: 5.259751980797566e-10 - ArtUnc_5: -6.923695139325593e-10 - ArtUnc_6: -3.3208895333728377e-10 - ArtUnc_7: -8.073137240863234e-12 - ArtUnc_8: 1.2230927873466213e-07 - ArtUnc_9: 5.113647670230508e-10 - ArtUnc_10: -2.244693506634476e-07 - ArtUnc_11: -1.432606521286891e-07 - ArtUnc_12: 1.1530260854438604e-08 - ArtUnc_13: 1.117473288031136e-07 - ArtUnc_14: 2.455820714133376e-08 - ArtUnc_15: 8.883175739142325e-10 - ArtUnc_16: 3.64674416477968e-08 - ArtUnc_17: -8.23673209728863e-08 - ArtUnc_18: 5.197226792066097e-08 - ArtUnc_19: -3.841247467568004e-08 - ArtUnc_20: 6.425356531113657e-08 - ArtUnc_21: 6.155293697544512e-08 - ArtUnc_22: -2.9516761746782553e-08 - ArtUnc_23: -5.562900001094921e-09 - ArtUnc_24: 7.151556918564961e-10 - ArtUnc_25: -1.6089317487759996e-06 - ArtUnc_26: 1.8646694530904163e-06 - ArtUnc_27: 1.1274858886782353e-05 - ArtUnc_28: -6.938518411540835e-07 - ArtUnc_29: -4.555944122477703e-07 - ArtUnc_30: 1.9617264051350774e-06 - ArtUnc_31: 2.1287085831880707e-08 - ArtUnc_32: 4.881844799069134e-07 - ArtUnc_33: 2.179347849928199e-08 - ArtUnc_34: 7.364259583162062e-07 - ArtUnc_35: 1.4923928499667925e-06 - ArtUnc_36: 7.430948147728629e-07 - ArtUnc_37: 1.8178644102041127e-07 - ArtUnc_38: -2.3100931026616919e-07 - ArtUnc_39: -2.047416229297779e-07 - ArtUnc_40: -7.4238034992303e-08 - ArtUnc_41: 0.0005268887524987921 - ArtUnc_42: -0.0005714659827220986 - ArtUnc_43: -0.00027022218346638225 - ArtUnc_44: 1.6398072189473574e-05 - ArtUnc_45: -0.00017043659189344853 - ArtUnc_46: -4.997859356279252e-05 - ArtUnc_47: -3.9402537799913584e-05 - ArtUnc_48: -3.0242333060468175e-05 - ArtUnc_49: 2.5495449976636246e-05 - ArtUnc_50: 6.691827822136524e-06 - ArtUnc_51: 1.4789803073696317e-05 - ArtUnc_52: -2.910302902721402e-05 - ArtUnc_53: -4.8331660677013445e-05 - ArtUnc_54: 2.46139002810582e-05 - ArtUnc_55: 5.0195187470255184e-05 - ArtUnc_56: -7.534173203397271e-06 - ArtUnc_57: -0.0009724406566382886 - ArtUnc_58: 0.002580581925581996 - ArtUnc_59: 0.0003722812543556141 - ArtUnc_60: 0.00024486307773779494 - ArtUnc_61: 0.0007502908776919723 - ArtUnc_62: -0.000603295909081876 - ArtUnc_63: -0.00021837644109062352 - ArtUnc_64: -0.0006049467434411995 - ArtUnc_65: 0.0004698406724156381 - ArtUnc_66: -0.00016047606982258857 - ArtUnc_67: 5.597628896170966e-05 - ArtUnc_68: 0.0002182389788351802 - ArtUnc_69: 1.1008667292203844e-05 - ArtUnc_70: 9.332428840909884e-05 - ArtUnc_71: 1.7410499463531618e-06 - ArtUnc_72: 1.5512309295234166e-05 - ArtUnc_73: 0.001171402712029326 - ArtUnc_74: -0.0002786311578004168 - ArtUnc_75: 0.00028700015729913036 - ArtUnc_76: 0.007224765081852715 - ArtUnc_77: -0.0013220955446067943 - ArtUnc_78: 0.01613476439515324 - ArtUnc_79: 0.0038130671178633353 - ArtUnc_80: -0.005064477730472428 - ArtUnc_81: 0.003436231220562271 - ArtUnc_82: 2.2412802282053842e-05 - ArtUnc_83: 0.022201540076900436 - ArtUnc_84: -0.0044566290856507575 - ArtUnc_85: -0.01742863953471023 - ArtUnc_86: 0.021496483443812036 - ArtUnc_87: 0.013607990667775918 - ArtUnc_88: -0.011385699670263238 - ArtUnc_89: -0.007780802192535263 - ArtUnc_90: 0.001898829632687188 - ArtUnc_91: 0.003959695772808286 - ArtUnc_92: 0.0005860095065112893 - ArtUnc_93: -0.008045285761312283 - ArtUnc_94: 0.0034782788311635373 - ArtUnc_95: 0.00022653556448828135 - ArtUnc_96: -0.004254928877905018 + Model_1: 1.21456196e-02 + Model_2: 1.21456196e-02 + ModelRW_1: 8.75044642e-03 + ModelRW_2: 8.75044642e-03 + JES_1: 8.61897799e-03 + JES_2: 8.61897799e-03 + ArtUnc_1: 6.04152525e-10 + ArtUnc_2: -7.45708738e-10 + ArtUnc_3: -1.40828343e-10 + ArtUnc_4: 5.25975198e-10 + ArtUnc_5: -6.92369514e-10 + ArtUnc_6: -3.32088953e-10 + ArtUnc_7: -8.07313724e-12 + ArtUnc_8: 1.22309279e-07 + ArtUnc_9: 5.11364767e-10 + ArtUnc_10: -2.24469351e-07 + ArtUnc_11: -1.43260652e-07 + ArtUnc_12: 1.15302609e-08 + ArtUnc_13: 1.11747329e-07 + ArtUnc_14: 2.45582071e-08 + ArtUnc_15: 8.88317574e-10 + ArtUnc_16: 3.64674416e-08 + ArtUnc_17: -8.23673210e-08 + ArtUnc_18: 5.19722679e-08 + ArtUnc_19: -3.84124747e-08 + ArtUnc_20: 6.42535653e-08 + ArtUnc_21: 6.15529370e-08 + ArtUnc_22: -2.95167617e-08 + ArtUnc_23: -5.56290000e-09 + ArtUnc_24: 7.15155692e-10 + ArtUnc_25: -1.60893175e-06 + ArtUnc_26: 1.86466945e-06 + ArtUnc_27: 1.12748589e-05 + ArtUnc_28: -6.93851841e-07 + ArtUnc_29: -4.55594412e-07 + ArtUnc_30: 1.96172641e-06 + ArtUnc_31: 2.12870858e-08 + ArtUnc_32: 4.88184480e-07 + ArtUnc_33: 2.17934785e-08 + ArtUnc_34: 7.36425958e-07 + ArtUnc_35: 1.49239285e-06 + ArtUnc_36: 7.43094815e-07 + ArtUnc_37: 1.81786441e-07 + ArtUnc_38: -2.31009310e-07 + ArtUnc_39: -2.04741623e-07 + ArtUnc_40: -7.42380350e-08 + ArtUnc_41: 5.26888752e-04 + ArtUnc_42: -5.71465983e-04 + ArtUnc_43: -2.70222183e-04 + ArtUnc_44: 1.63980722e-05 + ArtUnc_45: -1.70436592e-04 + ArtUnc_46: -4.99785936e-05 + ArtUnc_47: -3.94025378e-05 + ArtUnc_48: -3.02423331e-05 + ArtUnc_49: 2.54954500e-05 + ArtUnc_50: 6.69182782e-06 + ArtUnc_51: 1.47898031e-05 + ArtUnc_52: -2.91030290e-05 + ArtUnc_53: -4.83316607e-05 + ArtUnc_54: 2.46139003e-05 + ArtUnc_55: 5.01951875e-05 + ArtUnc_56: -7.53417320e-06 + ArtUnc_57: -9.72440657e-04 + ArtUnc_58: 2.58058193e-03 + ArtUnc_59: 3.72281254e-04 + ArtUnc_60: 2.44863078e-04 + ArtUnc_61: 7.50290878e-04 + ArtUnc_62: -6.03295909e-04 + ArtUnc_63: -2.18376441e-04 + ArtUnc_64: -6.04946743e-04 + ArtUnc_65: 4.69840672e-04 + ArtUnc_66: -1.60476070e-04 + ArtUnc_67: 5.59762890e-05 + ArtUnc_68: 2.18238979e-04 + ArtUnc_69: 1.10086673e-05 + ArtUnc_70: 9.33242884e-05 + ArtUnc_71: 1.74104995e-06 + ArtUnc_72: 1.55123093e-05 + ArtUnc_73: 1.17140271e-03 + ArtUnc_74: -2.78631158e-04 + ArtUnc_75: 2.87000157e-04 + ArtUnc_76: 7.22476508e-03 + ArtUnc_77: -1.32209554e-03 + ArtUnc_78: 1.61347644e-02 + ArtUnc_79: 3.81306712e-03 + ArtUnc_80: -5.06447773e-03 + ArtUnc_81: 3.43623122e-03 + ArtUnc_82: 2.24128023e-05 + ArtUnc_83: 2.22015401e-02 + ArtUnc_84: -4.45662909e-03 + ArtUnc_85: -1.74286395e-02 + ArtUnc_86: 2.14964834e-02 + ArtUnc_87: 1.36079907e-02 + ArtUnc_88: -1.13856997e-02 + ArtUnc_89: -7.78080219e-03 + ArtUnc_90: 1.89882963e-03 + ArtUnc_91: 3.95969577e-03 + ArtUnc_92: 5.86009507e-04 + ArtUnc_93: -8.04528576e-03 + ArtUnc_94: 3.47827883e-03 + ArtUnc_95: 2.26535564e-04 + ArtUnc_96: -4.25492888e-03 - stat: 0 Uncorr: 1.16 - RCES: 7.72627924941883 - ElEn: 1.149454061717997 - ElTh: 0.37601718045855304 + RCES: 7.72627925e+00 + ElEn: 1.14945406e+00 + ElTh: 3.76017180e-01 Lumi: 2.9 LArN: 0.696 - StatMC: 2.7607999999999997 + StatMC: 2.76080000e+00 RadErr: 0.5916 - Model_1: 0.7054097249116998 - Model_2: 0.7054097249116998 - ModelRW_1: 0.22966828252939064 - ModelRW_2: 0.22966828252939064 - JES_1: 3.1046284511999174 - JES_2: 3.1046284511999174 - ArtUnc_1: 0.862390513360958 - ArtUnc_2: -0.058522334197274935 - ArtUnc_3: -0.015617481349614557 - ArtUnc_4: -0.02865956582028775 - ArtUnc_5: 0.024560404389031128 - ArtUnc_6: -0.013697542293582938 - ArtUnc_7: 0.0312667358010939 - ArtUnc_8: -8.052766469309553 - ArtUnc_9: -0.003869570549781359 - ArtUnc_10: -5.440340482204765 - ArtUnc_11: 0.5063656603501565 - ArtUnc_12: 0.13134908148404048 - ArtUnc_13: 1.5029665042315448 - ArtUnc_14: -0.02868999219755132 - ArtUnc_15: 0.1800281550271725 - ArtUnc_16: 0.01425040702897497 - ArtUnc_17: 0.04851242069982236 - ArtUnc_18: -0.2994043649614981 - ArtUnc_19: 0.07767460929125639 - ArtUnc_20: 0.2717761425707195 - ArtUnc_21: 0.047177105354672885 - ArtUnc_22: 0.03848277959299294 - ArtUnc_23: 0.014740246882677685 - ArtUnc_24: 0.0029896501309716835 - ArtUnc_25: -0.04036369541606761 - ArtUnc_26: -0.09302467152124266 - ArtUnc_27: -0.014597160954110492 - ArtUnc_28: -0.032271023414061836 - ArtUnc_29: 0.011743211789942889 - ArtUnc_30: -0.02075840896967938 - ArtUnc_31: 0.011241230788636522 - ArtUnc_32: 0.007682375996866057 - ArtUnc_33: 0.006482760235225154 - ArtUnc_34: 0.008580794784233063 - ArtUnc_35: 0.004056435036263157 - ArtUnc_36: 0.0008921238755738741 - ArtUnc_37: -0.0021935306004609617 - ArtUnc_38: 0.0009761650792590337 - ArtUnc_39: -0.0005096127087808053 - ArtUnc_40: -0.0005619835756197868 - ArtUnc_41: -0.0031631785001945928 - ArtUnc_42: -0.002833615200537926 - ArtUnc_43: 0.000737177321297061 - ArtUnc_44: 0.001308887822230703 - ArtUnc_45: -0.0012901354777218469 - ArtUnc_46: 0.0007960634160440661 - ArtUnc_47: -0.0016605377633478362 - ArtUnc_48: 0.00041322085193029644 - ArtUnc_49: 0.0007064806487292607 - ArtUnc_50: 0.0008218480678580217 - ArtUnc_51: -0.00013628995667965135 - ArtUnc_52: 7.824198600373727e-05 - ArtUnc_53: 0.0007009699714016272 - ArtUnc_54: -0.00017757524658647804 - ArtUnc_55: 9.061136987685657e-06 - ArtUnc_56: -0.00013438631943932383 - ArtUnc_57: 9.964845519297726e-06 - ArtUnc_58: -1.1228773788767014e-05 - ArtUnc_59: -1.3513642131206547e-05 - ArtUnc_60: -4.997737295236594e-06 - ArtUnc_61: 1.0751982835757547e-05 - ArtUnc_62: 6.1362719694684646e-06 - ArtUnc_63: -7.024195304640522e-06 - ArtUnc_64: 1.104379494273848e-05 - ArtUnc_65: -6.857977199225964e-06 - ArtUnc_66: 1.578230170233843e-06 - ArtUnc_67: 1.8570889589523063e-07 - ArtUnc_68: 7.241483498069554e-06 - ArtUnc_69: 9.093223014310423e-06 - ArtUnc_70: -2.2514322267953912e-07 - ArtUnc_71: 4.916213171292535e-07 - ArtUnc_72: -5.360034925647657e-07 - ArtUnc_73: 1.5427469524348488e-06 - ArtUnc_74: -2.3515148923936133e-06 - ArtUnc_75: -4.317535944850396e-07 - ArtUnc_76: 1.1272934960468206e-07 - ArtUnc_77: 7.517926745290272e-07 - ArtUnc_78: 5.095707024872422e-07 - ArtUnc_79: -7.8664914257136e-07 - ArtUnc_80: 9.434889384442472e-08 - ArtUnc_81: -1.1980382405502867e-08 - ArtUnc_82: -4.258541093895767e-10 - ArtUnc_83: -4.4121592340278306e-08 - ArtUnc_84: -2.5736692776212392e-08 - ArtUnc_85: 4.2710197772578146e-08 - ArtUnc_86: 8.348804058710194e-09 - ArtUnc_87: 1.766129369683349e-08 - ArtUnc_88: 7.80158295685783e-09 - ArtUnc_89: -5.735037683417001e-10 - ArtUnc_90: -9.147156941503087e-08 - ArtUnc_91: 2.083758651128185e-08 - ArtUnc_92: 4.8526244608792894e-09 - ArtUnc_93: -1.3073151315177993e-07 - ArtUnc_94: 8.733441907194496e-08 - ArtUnc_95: 2.3566459633314595e-08 - ArtUnc_96: -8.364543817190556e-09 + Model_1: 7.05409725e-01 + Model_2: 7.05409725e-01 + ModelRW_1: 2.29668283e-01 + ModelRW_2: 2.29668283e-01 + JES_1: 3.10462845e+00 + JES_2: 3.10462845e+00 + ArtUnc_1: 8.62390513e-01 + ArtUnc_2: -5.85223342e-02 + ArtUnc_3: -1.56174813e-02 + ArtUnc_4: -2.86595658e-02 + ArtUnc_5: 2.45604044e-02 + ArtUnc_6: -1.36975423e-02 + ArtUnc_7: 3.12667358e-02 + ArtUnc_8: -8.05276647e+00 + ArtUnc_9: -3.86957055e-03 + ArtUnc_10: -5.44034048e+00 + ArtUnc_11: 5.06365660e-01 + ArtUnc_12: 1.31349081e-01 + ArtUnc_13: 1.50296650e+00 + ArtUnc_14: -2.86899922e-02 + ArtUnc_15: 1.80028155e-01 + ArtUnc_16: 1.42504070e-02 + ArtUnc_17: 4.85124207e-02 + ArtUnc_18: -2.99404365e-01 + ArtUnc_19: 7.76746093e-02 + ArtUnc_20: 2.71776143e-01 + ArtUnc_21: 4.71771054e-02 + ArtUnc_22: 3.84827796e-02 + ArtUnc_23: 1.47402469e-02 + ArtUnc_24: 2.98965013e-03 + ArtUnc_25: -4.03636954e-02 + ArtUnc_26: -9.30246715e-02 + ArtUnc_27: -1.45971610e-02 + ArtUnc_28: -3.22710234e-02 + ArtUnc_29: 1.17432118e-02 + ArtUnc_30: -2.07584090e-02 + ArtUnc_31: 1.12412308e-02 + ArtUnc_32: 7.68237600e-03 + ArtUnc_33: 6.48276024e-03 + ArtUnc_34: 8.58079478e-03 + ArtUnc_35: 4.05643504e-03 + ArtUnc_36: 8.92123876e-04 + ArtUnc_37: -2.19353060e-03 + ArtUnc_38: 9.76165079e-04 + ArtUnc_39: -5.09612709e-04 + ArtUnc_40: -5.61983576e-04 + ArtUnc_41: -3.16317850e-03 + ArtUnc_42: -2.83361520e-03 + ArtUnc_43: 7.37177321e-04 + ArtUnc_44: 1.30888782e-03 + ArtUnc_45: -1.29013548e-03 + ArtUnc_46: 7.96063416e-04 + ArtUnc_47: -1.66053776e-03 + ArtUnc_48: 4.13220852e-04 + ArtUnc_49: 7.06480649e-04 + ArtUnc_50: 8.21848068e-04 + ArtUnc_51: -1.36289957e-04 + ArtUnc_52: 7.82419860e-05 + ArtUnc_53: 7.00969971e-04 + ArtUnc_54: -1.77575247e-04 + ArtUnc_55: 9.06113699e-06 + ArtUnc_56: -1.34386319e-04 + ArtUnc_57: 9.96484552e-06 + ArtUnc_58: -1.12287738e-05 + ArtUnc_59: -1.35136421e-05 + ArtUnc_60: -4.99773730e-06 + ArtUnc_61: 1.07519828e-05 + ArtUnc_62: 6.13627197e-06 + ArtUnc_63: -7.02419530e-06 + ArtUnc_64: 1.10437949e-05 + ArtUnc_65: -6.85797720e-06 + ArtUnc_66: 1.57823017e-06 + ArtUnc_67: 1.85708896e-07 + ArtUnc_68: 7.24148350e-06 + ArtUnc_69: 9.09322301e-06 + ArtUnc_70: -2.25143223e-07 + ArtUnc_71: 4.91621317e-07 + ArtUnc_72: -5.36003493e-07 + ArtUnc_73: 1.54274695e-06 + ArtUnc_74: -2.35151489e-06 + ArtUnc_75: -4.31753594e-07 + ArtUnc_76: 1.12729350e-07 + ArtUnc_77: 7.51792675e-07 + ArtUnc_78: 5.09570702e-07 + ArtUnc_79: -7.86649143e-07 + ArtUnc_80: 9.43488938e-08 + ArtUnc_81: -1.19803824e-08 + ArtUnc_82: -4.25854109e-10 + ArtUnc_83: -4.41215923e-08 + ArtUnc_84: -2.57366928e-08 + ArtUnc_85: 4.27101978e-08 + ArtUnc_86: 8.34880406e-09 + ArtUnc_87: 1.76612937e-08 + ArtUnc_88: 7.80158296e-09 + ArtUnc_89: -5.73503768e-10 + ArtUnc_90: -9.14715694e-08 + ArtUnc_91: 2.08375865e-08 + ArtUnc_92: 4.85262446e-09 + ArtUnc_93: -1.30731513e-07 + ArtUnc_94: 8.73344191e-08 + ArtUnc_95: 2.35664596e-08 + ArtUnc_96: -8.36454382e-09 - stat: 0 - Uncorr: 0.9390000000000001 - RCES: 1.281820986126768 - ElEn: 0.26575524849003457 - ElTh: 0.26068879161751474 + Uncorr: 9.39000000e-01 + RCES: 1.28182099e+00 + ElEn: 2.65755248e-01 + ElTh: 2.60688792e-01 Lumi: 2.3475 LArN: 0.5634 StatMC: 0.82632 - RadErr: 0.18780000000000002 - Model_1: 2.390303763123005 - Model_2: 2.390303763123005 - ModelRW_1: 1.7462496936148622 - ModelRW_2: 1.7462496936148622 - JES_1: 0.6334162292975292 - JES_2: 0.6334162292975292 - ArtUnc_1: 0.1320383969101628 - ArtUnc_2: -0.0018981155812127922 - ArtUnc_3: 0.030449734167063938 - ArtUnc_4: 0.016599559452785167 - ArtUnc_5: -0.007039446793516058 - ArtUnc_6: -0.0016744990704085601 - ArtUnc_7: 0.00015496188070738973 - ArtUnc_8: 0.04741118864007513 - ArtUnc_9: 0.0007186835312962168 - ArtUnc_10: -0.4305264015518117 - ArtUnc_11: -0.3402840139397071 - ArtUnc_12: 0.3989521206085828 - ArtUnc_13: 0.09101270589019123 - ArtUnc_14: -0.0454662744015132 - ArtUnc_15: 0.009692340009628061 - ArtUnc_16: 0.03319493653463854 - ArtUnc_17: 0.05060998404362843 - ArtUnc_18: -0.06042621545255102 - ArtUnc_19: 0.04212580899411449 - ArtUnc_20: 0.015698438313396287 - ArtUnc_21: -0.027948389494300365 - ArtUnc_22: 0.03784757413331094 - ArtUnc_23: 0.021509993525674447 - ArtUnc_24: -0.0004039371438018868 - ArtUnc_25: 3.2719289748556997 - ArtUnc_26: 1.3315714679588329 - ArtUnc_27: 0.3873789388962019 - ArtUnc_28: 0.6847540037957462 - ArtUnc_29: 0.020893158405177158 - ArtUnc_30: 0.24155149523280334 - ArtUnc_31: -0.05080766078860241 - ArtUnc_32: -0.08409477654661683 - ArtUnc_33: -0.056203225073985175 - ArtUnc_34: -0.08167182024114937 - ArtUnc_35: -0.08773620671064794 - ArtUnc_36: -0.037061892254628304 - ArtUnc_37: 0.0024416941282667287 - ArtUnc_38: 0.005311259237549614 - ArtUnc_39: 0.004140830387009761 - ArtUnc_40: 0.0023273358670159597 - ArtUnc_41: 0.016608369052248613 - ArtUnc_42: 0.017377037665656427 - ArtUnc_43: -0.007473878582718413 - ArtUnc_44: -0.01136699783501941 - ArtUnc_45: 0.012081466399688854 - ArtUnc_46: -0.006010521471543492 - ArtUnc_47: 0.014787560023833185 - ArtUnc_48: -0.004711128239898752 - ArtUnc_49: -0.007430677269866188 - ArtUnc_50: -0.006807979909466713 - ArtUnc_51: 0.0006050043502575601 - ArtUnc_52: -0.0001350414213422827 - ArtUnc_53: -0.0072927373415190835 - ArtUnc_54: 0.0021796124008489058 - ArtUnc_55: 0.0010621839197683008 - ArtUnc_56: 0.00038932020161372015 - ArtUnc_57: 2.8675619155647794e-06 - ArtUnc_58: -0.00011801018194304885 - ArtUnc_59: 0.00015106725253573715 - ArtUnc_60: 5.010764059745741e-05 - ArtUnc_61: -9.866999716198439e-06 - ArtUnc_62: -5.093667125678123e-05 - ArtUnc_63: 1.3994054984194227e-06 - ArtUnc_64: -7.893786420285958e-05 - ArtUnc_65: 6.916046599341139e-05 - ArtUnc_66: 4.153359855595592e-06 - ArtUnc_67: -3.7740188390941575e-06 - ArtUnc_68: -4.220146094322869e-06 - ArtUnc_69: -5.492019682323398e-06 - ArtUnc_70: -4.037667501783616e-06 - ArtUnc_71: 6.169350904763874e-06 - ArtUnc_72: -1.9239639399510934e-06 - ArtUnc_73: -2.479148957476188e-06 - ArtUnc_74: 1.4911766742091386e-05 - ArtUnc_75: 2.4181351515257655e-06 - ArtUnc_76: -4.5954891167824075e-07 - ArtUnc_77: -4.5068273257981715e-06 - ArtUnc_78: -3.171597684393666e-06 - ArtUnc_79: 7.267656447246022e-06 - ArtUnc_80: 8.86925522824323e-07 - ArtUnc_81: -3.4742103213120816e-07 - ArtUnc_82: -3.2867253404634625e-09 - ArtUnc_83: 4.799206644697428e-07 - ArtUnc_84: 4.956056692359477e-07 - ArtUnc_85: -3.0571751073164814e-07 - ArtUnc_86: -6.513106602556879e-08 - ArtUnc_87: -1.285266079731519e-07 - ArtUnc_88: -3.941215089842248e-07 - ArtUnc_89: -4.054728722557868e-07 - ArtUnc_90: -1.3450800291205652e-08 - ArtUnc_91: -7.577235197069439e-08 - ArtUnc_92: -1.9418480748555077e-08 - ArtUnc_93: 3.038985099760247e-07 - ArtUnc_94: -2.603149510967458e-07 - ArtUnc_95: 2.5716364133558877e-07 - ArtUnc_96: -1.7915995558900218e-09 + RadErr: 1.87800000e-01 + Model_1: 2.39030376e+00 + Model_2: 2.39030376e+00 + ModelRW_1: 1.74624969e+00 + ModelRW_2: 1.74624969e+00 + JES_1: 6.33416229e-01 + JES_2: 6.33416229e-01 + ArtUnc_1: 1.32038397e-01 + ArtUnc_2: -1.89811558e-03 + ArtUnc_3: 3.04497342e-02 + ArtUnc_4: 1.65995595e-02 + ArtUnc_5: -7.03944679e-03 + ArtUnc_6: -1.67449907e-03 + ArtUnc_7: 1.54961881e-04 + ArtUnc_8: 4.74111886e-02 + ArtUnc_9: 7.18683531e-04 + ArtUnc_10: -4.30526402e-01 + ArtUnc_11: -3.40284014e-01 + ArtUnc_12: 3.98952121e-01 + ArtUnc_13: 9.10127059e-02 + ArtUnc_14: -4.54662744e-02 + ArtUnc_15: 9.69234001e-03 + ArtUnc_16: 3.31949365e-02 + ArtUnc_17: 5.06099840e-02 + ArtUnc_18: -6.04262155e-02 + ArtUnc_19: 4.21258090e-02 + ArtUnc_20: 1.56984383e-02 + ArtUnc_21: -2.79483895e-02 + ArtUnc_22: 3.78475741e-02 + ArtUnc_23: 2.15099935e-02 + ArtUnc_24: -4.03937144e-04 + ArtUnc_25: 3.27192897e+00 + ArtUnc_26: 1.33157147e+00 + ArtUnc_27: 3.87378939e-01 + ArtUnc_28: 6.84754004e-01 + ArtUnc_29: 2.08931584e-02 + ArtUnc_30: 2.41551495e-01 + ArtUnc_31: -5.08076608e-02 + ArtUnc_32: -8.40947765e-02 + ArtUnc_33: -5.62032251e-02 + ArtUnc_34: -8.16718202e-02 + ArtUnc_35: -8.77362067e-02 + ArtUnc_36: -3.70618923e-02 + ArtUnc_37: 2.44169413e-03 + ArtUnc_38: 5.31125924e-03 + ArtUnc_39: 4.14083039e-03 + ArtUnc_40: 2.32733587e-03 + ArtUnc_41: 1.66083691e-02 + ArtUnc_42: 1.73770377e-02 + ArtUnc_43: -7.47387858e-03 + ArtUnc_44: -1.13669978e-02 + ArtUnc_45: 1.20814664e-02 + ArtUnc_46: -6.01052147e-03 + ArtUnc_47: 1.47875600e-02 + ArtUnc_48: -4.71112824e-03 + ArtUnc_49: -7.43067727e-03 + ArtUnc_50: -6.80797991e-03 + ArtUnc_51: 6.05004350e-04 + ArtUnc_52: -1.35041421e-04 + ArtUnc_53: -7.29273734e-03 + ArtUnc_54: 2.17961240e-03 + ArtUnc_55: 1.06218392e-03 + ArtUnc_56: 3.89320202e-04 + ArtUnc_57: 2.86756192e-06 + ArtUnc_58: -1.18010182e-04 + ArtUnc_59: 1.51067253e-04 + ArtUnc_60: 5.01076406e-05 + ArtUnc_61: -9.86699972e-06 + ArtUnc_62: -5.09366713e-05 + ArtUnc_63: 1.39940550e-06 + ArtUnc_64: -7.89378642e-05 + ArtUnc_65: 6.91604660e-05 + ArtUnc_66: 4.15335986e-06 + ArtUnc_67: -3.77401884e-06 + ArtUnc_68: -4.22014609e-06 + ArtUnc_69: -5.49201968e-06 + ArtUnc_70: -4.03766750e-06 + ArtUnc_71: 6.16935090e-06 + ArtUnc_72: -1.92396394e-06 + ArtUnc_73: -2.47914896e-06 + ArtUnc_74: 1.49117667e-05 + ArtUnc_75: 2.41813515e-06 + ArtUnc_76: -4.59548912e-07 + ArtUnc_77: -4.50682733e-06 + ArtUnc_78: -3.17159768e-06 + ArtUnc_79: 7.26765645e-06 + ArtUnc_80: 8.86925523e-07 + ArtUnc_81: -3.47421032e-07 + ArtUnc_82: -3.28672534e-09 + ArtUnc_83: 4.79920664e-07 + ArtUnc_84: 4.95605669e-07 + ArtUnc_85: -3.05717511e-07 + ArtUnc_86: -6.51310660e-08 + ArtUnc_87: -1.28526608e-07 + ArtUnc_88: -3.94121509e-07 + ArtUnc_89: -4.05472872e-07 + ArtUnc_90: -1.34508003e-08 + ArtUnc_91: -7.57723520e-08 + ArtUnc_92: -1.94184807e-08 + ArtUnc_93: 3.03898510e-07 + ArtUnc_94: -2.60314951e-07 + ArtUnc_95: 2.57163641e-07 + ArtUnc_96: -1.79159956e-09 - stat: 0 Uncorr: 0.267 - RCES: 0.08066537965571104 - ElEn: 0.04393346873398458 - ElTh: 0.058906638632670254 + RCES: 8.06653797e-02 + ElEn: 4.39334687e-02 + ElTh: 5.89066386e-02 Lumi: 0.6675 LArN: 0.1602 StatMC: 0.19758 RadErr: 0.10413 - Model_1: 0.44178617474973114 - Model_2: 0.44178617474973114 - ModelRW_1: 0.6211438097976989 - ModelRW_2: 0.6211438097976989 - JES_1: 0.5779015933855001 - JES_2: 0.5779015933855001 - ArtUnc_1: 0.009828482441487745 - ArtUnc_2: -0.00460871700064456 - ArtUnc_3: -0.002367722967671026 - ArtUnc_4: -0.00029926032901598235 - ArtUnc_5: -0.00012690827336534974 - ArtUnc_6: -6.2210660451003455e-06 - ArtUnc_7: -8.451570832595379e-05 - ArtUnc_8: 0.02751057521746776 - ArtUnc_9: 1.5723655127338393e-05 - ArtUnc_10: 0.017825203774346893 - ArtUnc_11: -0.006729346020044204 - ArtUnc_12: 0.015601139436504471 - ArtUnc_13: -0.007047244784114975 - ArtUnc_14: -0.0065521735181942676 - ArtUnc_15: -0.005325434628903351 - ArtUnc_16: 0.0064917673106256015 - ArtUnc_17: -0.0034180238988290863 - ArtUnc_18: 0.0016271913888590524 - ArtUnc_19: -0.0010176831113118696 - ArtUnc_20: 0.0012412268220376775 - ArtUnc_21: 0.0013910730652472933 - ArtUnc_22: -0.0009017674683374423 - ArtUnc_23: 4.585804574036141e-05 - ArtUnc_24: -0.0001413221668135053 - ArtUnc_25: 0.048844340697331595 - ArtUnc_26: 0.04181590905252278 - ArtUnc_27: 0.32589663868765795 - ArtUnc_28: -0.046280711933589666 - ArtUnc_29: -0.030819773195066773 - ArtUnc_30: 0.14587854716562404 - ArtUnc_31: -0.0016396219494746182 - ArtUnc_32: -0.0678545120748393 - ArtUnc_33: -0.022661813340476022 - ArtUnc_34: -0.04182033033426591 - ArtUnc_35: -0.06905773771897107 - ArtUnc_36: -0.026864389685190497 - ArtUnc_37: -0.004292649218077433 - ArtUnc_38: 0.0050802906960727345 - ArtUnc_39: 0.0008362842858768569 - ArtUnc_40: 0.0003095012144619919 - ArtUnc_41: -0.7052015856251063 - ArtUnc_42: -0.6327097492563641 - ArtUnc_43: 0.12172801961898926 - ArtUnc_44: 0.22099531757298294 - ArtUnc_45: -0.23647012932139355 - ArtUnc_46: 0.08099032950666608 - ArtUnc_47: -0.20664841683345517 - ArtUnc_48: 0.038265988932915405 - ArtUnc_49: 0.09491404193287561 - ArtUnc_50: 0.09824741575171583 - ArtUnc_51: -0.004617328215157453 - ArtUnc_52: 0.0017742998422925309 - ArtUnc_53: 0.09017523379420407 - ArtUnc_54: -0.028143182158681345 - ArtUnc_55: -0.011196793347803947 - ArtUnc_56: -0.0034442880899961553 - ArtUnc_57: 0.0010036416826926242 - ArtUnc_58: -0.0028231731389436556 - ArtUnc_59: 0.0012046531993427795 - ArtUnc_60: 0.0003414476538073182 - ArtUnc_61: 2.537222981374834e-05 - ArtUnc_62: -0.00032734669173514557 - ArtUnc_63: -0.00028632491468644916 - ArtUnc_64: -0.0006345923426677774 - ArtUnc_65: 0.0005386105751243396 - ArtUnc_66: -0.0011505629179389587 - ArtUnc_67: 0.0004560945531371202 - ArtUnc_68: 0.003014846949041353 - ArtUnc_69: 0.0020738004664223268 - ArtUnc_70: -0.00037625735442800627 - ArtUnc_71: 0.0004925221551271979 - ArtUnc_72: -0.00026471775867246614 - ArtUnc_73: 0.0002693477913324866 - ArtUnc_74: -0.00026473689865880184 - ArtUnc_75: -3.595203059976877e-05 - ArtUnc_76: 1.2460882397148897e-06 - ArtUnc_77: 4.642367619193105e-05 - ArtUnc_78: 3.913418086393189e-05 - ArtUnc_79: -6.51698698504578e-05 - ArtUnc_80: 4.185286658640881e-07 - ArtUnc_81: 1.355320199362528e-06 - ArtUnc_82: -1.3444472389898236e-09 - ArtUnc_83: -1.3574624362073272e-06 - ArtUnc_84: -3.5302943668521003e-06 - ArtUnc_85: 1.2092535550324354e-06 - ArtUnc_86: -2.392580188600286e-06 - ArtUnc_87: -2.9287647151749426e-06 - ArtUnc_88: -7.154831036187616e-06 - ArtUnc_89: -4.048195228634956e-06 - ArtUnc_90: 2.553863669683389e-06 - ArtUnc_91: -6.988055593524728e-07 - ArtUnc_92: -7.503800177848302e-08 - ArtUnc_93: -1.0256192208288061e-05 - ArtUnc_94: 3.073421133961953e-06 - ArtUnc_95: -2.478932443424516e-06 - ArtUnc_96: -9.190338720973543e-08 + Model_1: 4.41786175e-01 + Model_2: 4.41786175e-01 + ModelRW_1: 6.21143810e-01 + ModelRW_2: 6.21143810e-01 + JES_1: 5.77901593e-01 + JES_2: 5.77901593e-01 + ArtUnc_1: 9.82848244e-03 + ArtUnc_2: -4.60871700e-03 + ArtUnc_3: -2.36772297e-03 + ArtUnc_4: -2.99260329e-04 + ArtUnc_5: -1.26908273e-04 + ArtUnc_6: -6.22106605e-06 + ArtUnc_7: -8.45157083e-05 + ArtUnc_8: 2.75105752e-02 + ArtUnc_9: 1.57236551e-05 + ArtUnc_10: 1.78252038e-02 + ArtUnc_11: -6.72934602e-03 + ArtUnc_12: 1.56011394e-02 + ArtUnc_13: -7.04724478e-03 + ArtUnc_14: -6.55217352e-03 + ArtUnc_15: -5.32543463e-03 + ArtUnc_16: 6.49176731e-03 + ArtUnc_17: -3.41802390e-03 + ArtUnc_18: 1.62719139e-03 + ArtUnc_19: -1.01768311e-03 + ArtUnc_20: 1.24122682e-03 + ArtUnc_21: 1.39107307e-03 + ArtUnc_22: -9.01767468e-04 + ArtUnc_23: 4.58580457e-05 + ArtUnc_24: -1.41322167e-04 + ArtUnc_25: 4.88443407e-02 + ArtUnc_26: 4.18159091e-02 + ArtUnc_27: 3.25896639e-01 + ArtUnc_28: -4.62807119e-02 + ArtUnc_29: -3.08197732e-02 + ArtUnc_30: 1.45878547e-01 + ArtUnc_31: -1.63962195e-03 + ArtUnc_32: -6.78545121e-02 + ArtUnc_33: -2.26618133e-02 + ArtUnc_34: -4.18203303e-02 + ArtUnc_35: -6.90577377e-02 + ArtUnc_36: -2.68643897e-02 + ArtUnc_37: -4.29264922e-03 + ArtUnc_38: 5.08029070e-03 + ArtUnc_39: 8.36284286e-04 + ArtUnc_40: 3.09501214e-04 + ArtUnc_41: -7.05201586e-01 + ArtUnc_42: -6.32709749e-01 + ArtUnc_43: 1.21728020e-01 + ArtUnc_44: 2.20995318e-01 + ArtUnc_45: -2.36470129e-01 + ArtUnc_46: 8.09903295e-02 + ArtUnc_47: -2.06648417e-01 + ArtUnc_48: 3.82659889e-02 + ArtUnc_49: 9.49140419e-02 + ArtUnc_50: 9.82474158e-02 + ArtUnc_51: -4.61732822e-03 + ArtUnc_52: 1.77429984e-03 + ArtUnc_53: 9.01752338e-02 + ArtUnc_54: -2.81431822e-02 + ArtUnc_55: -1.11967933e-02 + ArtUnc_56: -3.44428809e-03 + ArtUnc_57: 1.00364168e-03 + ArtUnc_58: -2.82317314e-03 + ArtUnc_59: 1.20465320e-03 + ArtUnc_60: 3.41447654e-04 + ArtUnc_61: 2.53722298e-05 + ArtUnc_62: -3.27346692e-04 + ArtUnc_63: -2.86324915e-04 + ArtUnc_64: -6.34592343e-04 + ArtUnc_65: 5.38610575e-04 + ArtUnc_66: -1.15056292e-03 + ArtUnc_67: 4.56094553e-04 + ArtUnc_68: 3.01484695e-03 + ArtUnc_69: 2.07380047e-03 + ArtUnc_70: -3.76257354e-04 + ArtUnc_71: 4.92522155e-04 + ArtUnc_72: -2.64717759e-04 + ArtUnc_73: 2.69347791e-04 + ArtUnc_74: -2.64736899e-04 + ArtUnc_75: -3.59520306e-05 + ArtUnc_76: 1.24608824e-06 + ArtUnc_77: 4.64236762e-05 + ArtUnc_78: 3.91341809e-05 + ArtUnc_79: -6.51698699e-05 + ArtUnc_80: 4.18528666e-07 + ArtUnc_81: 1.35532020e-06 + ArtUnc_82: -1.34444724e-09 + ArtUnc_83: -1.35746244e-06 + ArtUnc_84: -3.53029437e-06 + ArtUnc_85: 1.20925356e-06 + ArtUnc_86: -2.39258019e-06 + ArtUnc_87: -2.92876472e-06 + ArtUnc_88: -7.15483104e-06 + ArtUnc_89: -4.04819523e-06 + ArtUnc_90: 2.55386367e-06 + ArtUnc_91: -6.98805559e-07 + ArtUnc_92: -7.50380018e-08 + ArtUnc_93: -1.02561922e-05 + ArtUnc_94: 3.07342113e-06 + ArtUnc_95: -2.47893244e-06 + ArtUnc_96: -9.19033872e-08 - stat: 0 - Uncorr: 0.051100000000000007 - RCES: 0.03236691909959921 - ElEn: 0.015026788903488332 - ElTh: 0.010851984657195201 + Uncorr: 5.11000000e-02 + RCES: 3.23669191e-02 + ElEn: 1.50267889e-02 + ElTh: 1.08519847e-02 Lumi: 0.12775 - LArN: 0.030660000000000003 + LArN: 3.06600000e-02 StatMC: 0.078183 - RadErr: 0.049055999999999995 - Model_1: 0.20162301337396982 - Model_2: 0.20162301337396982 - ModelRW_1: 0.1743426674207292 - ModelRW_2: 0.1743426674207292 - JES_1: 0.13523458358718748 - JES_2: 0.13523458358718748 - ArtUnc_1: -6.164644459496338e-08 - ArtUnc_2: 3.922489697003599e-06 - ArtUnc_3: 3.676532891100279e-06 - ArtUnc_4: 5.564873447651579e-07 - ArtUnc_5: 6.59743217294973e-07 - ArtUnc_6: 4.992344983248174e-07 - ArtUnc_7: -1.1475159678064252e-07 - ArtUnc_8: -9.852689490555703e-05 - ArtUnc_9: -4.407965694973057e-07 - ArtUnc_10: 0.0001792344528930398 - ArtUnc_11: 7.616657232721964e-05 - ArtUnc_12: -4.4728975211666266e-05 - ArtUnc_13: -4.0797786142070816e-05 - ArtUnc_14: 1.1653214759857445e-05 - ArtUnc_15: 2.9468682734613832e-05 - ArtUnc_16: -4.060088063743114e-05 - ArtUnc_17: 4.8986111224387076e-05 - ArtUnc_18: -2.500089489249813e-05 - ArtUnc_19: 1.8892070928952376e-05 - ArtUnc_20: -3.2089415329472654e-05 - ArtUnc_21: -3.1833271314447314e-05 - ArtUnc_22: 1.9025728150568153e-05 - ArtUnc_23: 7.026400508713268e-06 - ArtUnc_24: -5.427374187542625e-07 - ArtUnc_25: 0.00180497943837816 - ArtUnc_26: -0.0011801587967399964 - ArtUnc_27: -0.009578494181615448 - ArtUnc_28: 0.0008501682735662387 - ArtUnc_29: 0.0009006503708527966 - ArtUnc_30: -0.004665811728323744 - ArtUnc_31: 0.00010043484313485591 - ArtUnc_32: 0.002013123413600144 - ArtUnc_33: 0.0006497633601117199 - ArtUnc_34: 0.0008514052295296975 - ArtUnc_35: 0.001151055185015836 - ArtUnc_36: -5.32719746780574e-05 - ArtUnc_37: -0.00018763487850387555 - ArtUnc_38: 0.000374601437531586 - ArtUnc_39: 0.00020843676093705043 - ArtUnc_40: 3.0350509533418895e-05 - ArtUnc_41: 0.10266260140158713 - ArtUnc_42: -0.09840882032617902 - ArtUnc_43: -0.0687136256878946 - ArtUnc_44: -0.009317374694874054 - ArtUnc_45: -0.03518183522111571 - ArtUnc_46: -0.029312409153198906 - ArtUnc_47: 0.013643854055219597 - ArtUnc_48: -0.03382659436727794 - ArtUnc_49: 0.004633542472207272 - ArtUnc_50: 0.02025841501175562 - ArtUnc_51: -0.0023840751346399375 - ArtUnc_52: 0.004771693908960994 - ArtUnc_53: 0.022523688368749763 - ArtUnc_54: -0.009567457581226015 - ArtUnc_55: -0.009843605589854792 - ArtUnc_56: 0.001517061341357972 - ArtUnc_57: 0.06258888615097814 - ArtUnc_58: -0.26121858121934405 - ArtUnc_59: 0.10808008735278782 - ArtUnc_60: 0.023049073521630416 - ArtUnc_61: -0.14287717897482147 - ArtUnc_62: 0.04647436774649283 - ArtUnc_63: 0.05445480327220324 - ArtUnc_64: 0.020264268067555387 - ArtUnc_65: -0.002083777069281772 - ArtUnc_66: 0.06705184198137516 - ArtUnc_67: -0.021510300671449198 - ArtUnc_68: -0.08355834520654506 - ArtUnc_69: -0.04248293594777888 - ArtUnc_70: 0.0015854931928314551 - ArtUnc_71: -0.009286362438022215 - ArtUnc_72: 0.005984455381454388 - ArtUnc_73: 0.0016273501516143546 - ArtUnc_74: -0.001251898970055017 - ArtUnc_75: -5.0258160043893535e-05 - ArtUnc_76: -5.509821488616488e-05 - ArtUnc_77: -0.0001441671182925708 - ArtUnc_78: -0.00010278516747378758 - ArtUnc_79: 0.0006061054586888791 - ArtUnc_80: -6.34313564224788e-05 - ArtUnc_81: 7.291486148520376e-05 - ArtUnc_82: 3.946880946781465e-07 - ArtUnc_83: 0.0001346940923443161 - ArtUnc_84: -0.00010207049142693918 - ArtUnc_85: -0.00010050144195659215 - ArtUnc_86: 0.0001167991316420489 - ArtUnc_87: 7.445854981989877e-05 - ArtUnc_88: -0.00020777512486746868 - ArtUnc_89: -0.00011443435620054819 - ArtUnc_90: 3.887377084194982e-05 - ArtUnc_91: 2.3285955195096784e-05 - ArtUnc_92: 4.009384033282361e-06 - ArtUnc_93: -0.0002676195551706283 - ArtUnc_94: 8.669785835343736e-05 - ArtUnc_95: 8.024371620577143e-06 - ArtUnc_96: -2.1333954408291494e-05 + RadErr: 4.90560000e-02 + Model_1: 2.01623013e-01 + Model_2: 2.01623013e-01 + ModelRW_1: 1.74342667e-01 + ModelRW_2: 1.74342667e-01 + JES_1: 1.35234584e-01 + JES_2: 1.35234584e-01 + ArtUnc_1: -6.16464446e-08 + ArtUnc_2: 3.92248970e-06 + ArtUnc_3: 3.67653289e-06 + ArtUnc_4: 5.56487345e-07 + ArtUnc_5: 6.59743217e-07 + ArtUnc_6: 4.99234498e-07 + ArtUnc_7: -1.14751597e-07 + ArtUnc_8: -9.85268949e-05 + ArtUnc_9: -4.40796569e-07 + ArtUnc_10: 1.79234453e-04 + ArtUnc_11: 7.61665723e-05 + ArtUnc_12: -4.47289752e-05 + ArtUnc_13: -4.07977861e-05 + ArtUnc_14: 1.16532148e-05 + ArtUnc_15: 2.94686827e-05 + ArtUnc_16: -4.06008806e-05 + ArtUnc_17: 4.89861112e-05 + ArtUnc_18: -2.50008949e-05 + ArtUnc_19: 1.88920709e-05 + ArtUnc_20: -3.20894153e-05 + ArtUnc_21: -3.18332713e-05 + ArtUnc_22: 1.90257282e-05 + ArtUnc_23: 7.02640051e-06 + ArtUnc_24: -5.42737419e-07 + ArtUnc_25: 1.80497944e-03 + ArtUnc_26: -1.18015880e-03 + ArtUnc_27: -9.57849418e-03 + ArtUnc_28: 8.50168274e-04 + ArtUnc_29: 9.00650371e-04 + ArtUnc_30: -4.66581173e-03 + ArtUnc_31: 1.00434843e-04 + ArtUnc_32: 2.01312341e-03 + ArtUnc_33: 6.49763360e-04 + ArtUnc_34: 8.51405230e-04 + ArtUnc_35: 1.15105519e-03 + ArtUnc_36: -5.32719747e-05 + ArtUnc_37: -1.87634879e-04 + ArtUnc_38: 3.74601438e-04 + ArtUnc_39: 2.08436761e-04 + ArtUnc_40: 3.03505095e-05 + ArtUnc_41: 1.02662601e-01 + ArtUnc_42: -9.84088203e-02 + ArtUnc_43: -6.87136257e-02 + ArtUnc_44: -9.31737469e-03 + ArtUnc_45: -3.51818352e-02 + ArtUnc_46: -2.93124092e-02 + ArtUnc_47: 1.36438541e-02 + ArtUnc_48: -3.38265944e-02 + ArtUnc_49: 4.63354247e-03 + ArtUnc_50: 2.02584150e-02 + ArtUnc_51: -2.38407513e-03 + ArtUnc_52: 4.77169391e-03 + ArtUnc_53: 2.25236884e-02 + ArtUnc_54: -9.56745758e-03 + ArtUnc_55: -9.84360559e-03 + ArtUnc_56: 1.51706134e-03 + ArtUnc_57: 6.25888862e-02 + ArtUnc_58: -2.61218581e-01 + ArtUnc_59: 1.08080087e-01 + ArtUnc_60: 2.30490735e-02 + ArtUnc_61: -1.42877179e-01 + ArtUnc_62: 4.64743677e-02 + ArtUnc_63: 5.44548033e-02 + ArtUnc_64: 2.02642681e-02 + ArtUnc_65: -2.08377707e-03 + ArtUnc_66: 6.70518420e-02 + ArtUnc_67: -2.15103007e-02 + ArtUnc_68: -8.35583452e-02 + ArtUnc_69: -4.24829359e-02 + ArtUnc_70: 1.58549319e-03 + ArtUnc_71: -9.28636244e-03 + ArtUnc_72: 5.98445538e-03 + ArtUnc_73: 1.62735015e-03 + ArtUnc_74: -1.25189897e-03 + ArtUnc_75: -5.02581600e-05 + ArtUnc_76: -5.50982149e-05 + ArtUnc_77: -1.44167118e-04 + ArtUnc_78: -1.02785167e-04 + ArtUnc_79: 6.06105459e-04 + ArtUnc_80: -6.34313564e-05 + ArtUnc_81: 7.29148615e-05 + ArtUnc_82: 3.94688095e-07 + ArtUnc_83: 1.34694092e-04 + ArtUnc_84: -1.02070491e-04 + ArtUnc_85: -1.00501442e-04 + ArtUnc_86: 1.16799132e-04 + ArtUnc_87: 7.44585498e-05 + ArtUnc_88: -2.07775125e-04 + ArtUnc_89: -1.14434356e-04 + ArtUnc_90: 3.88737708e-05 + ArtUnc_91: 2.32859552e-05 + ArtUnc_92: 4.00938403e-06 + ArtUnc_93: -2.67619555e-04 + ArtUnc_94: 8.66978584e-05 + ArtUnc_95: 8.02437162e-06 + ArtUnc_96: -2.13339544e-05 - stat: 0 Uncorr: 0.00837 - RCES: 0.0060904332462888055 - ElEn: 0.012273043195047429 - ElTh: 0.008603916248284847 + RCES: 6.09043325e-03 + ElEn: 1.22730432e-02 + ElTh: 8.60391625e-03 Lumi: 0.020925 - LArN: 0.0050219999999999996 - StatMC: 0.0360747 - RadErr: 0.0190836 - Model_1: 0.015683981960108215 - Model_2: 0.015683981960108215 - ModelRW_1: 0.012488000730501258 - ModelRW_2: 0.012488000730501258 - JES_1: 0.03993121648146973 - JES_2: 0.03993121648146973 - ArtUnc_1: -2.8171268199507716e-08 - ArtUnc_2: 4.468404998851395e-07 - ArtUnc_3: 6.065669381628866e-07 - ArtUnc_4: 2.2074680006442324e-07 - ArtUnc_5: -2.7226297566834386e-08 - ArtUnc_6: 1.0502030776599082e-08 - ArtUnc_7: 6.247091281933477e-09 - ArtUnc_8: -1.3352960960347073e-05 - ArtUnc_9: -5.195880523141805e-08 - ArtUnc_10: 2.1743112544614577e-05 - ArtUnc_11: 1.4384283433486833e-05 - ArtUnc_12: -6.488154730178476e-06 - ArtUnc_13: -1.2077849621583853e-05 - ArtUnc_14: -9.85196993995112e-07 - ArtUnc_15: -5.508344773231818e-06 - ArtUnc_16: -8.576868897751414e-07 - ArtUnc_17: 1.703642990227518e-06 - ArtUnc_18: 2.2576529075168028e-07 - ArtUnc_19: 1.2942610814684423e-06 - ArtUnc_20: -5.002398679556529e-06 - ArtUnc_21: -3.8253376283432924e-06 - ArtUnc_22: 1.7604760363566307e-06 - ArtUnc_23: 6.148453534215448e-07 - ArtUnc_24: -8.64776660808692e-08 - ArtUnc_25: 0.00021897760157158004 - ArtUnc_26: -0.00010417696531048306 - ArtUnc_27: -0.0012450843536182764 - ArtUnc_28: 0.0001734897536596235 - ArtUnc_29: 0.00015219103957132238 - ArtUnc_30: -0.0007465051590978547 - ArtUnc_31: 2.0704047749812754e-05 - ArtUnc_32: 0.0004343764298588992 - ArtUnc_33: 0.0001240490801374033 - ArtUnc_34: 0.0002862893515864769 - ArtUnc_35: 0.000496359061452056 - ArtUnc_36: 0.00020282456223106611 - ArtUnc_37: 3.709434707071476e-05 - ArtUnc_38: -4.1061827783918016e-05 - ArtUnc_39: -6.799893174198059e-06 - ArtUnc_40: -1.495482406591319e-06 - ArtUnc_41: 0.0008081930040474229 - ArtUnc_42: 0.0021086839281373873 - ArtUnc_43: 0.00035821304071842616 - ArtUnc_44: -0.0005399654934635183 - ArtUnc_45: 0.001316493409075148 - ArtUnc_46: 0.0002010143782132027 - ArtUnc_47: 0.0006350875907164479 - ArtUnc_48: 0.0004759382595654312 - ArtUnc_49: -0.0006023760092153574 - ArtUnc_50: -0.0009495179427241272 - ArtUnc_51: 6.923725304565707e-05 - ArtUnc_52: -7.658225400022983e-05 - ArtUnc_53: -0.0009883270985561877 - ArtUnc_54: 0.00035012232252784885 - ArtUnc_55: 0.00023812194477975467 - ArtUnc_56: -4.123660112127637e-06 - ArtUnc_57: -0.02066127195479415 - ArtUnc_58: 0.030126179151983706 - ArtUnc_59: 0.046329830103050265 - ArtUnc_60: 0.01702587416560102 - ArtUnc_61: -0.008563593972697963 - ArtUnc_62: -0.012710627449860143 - ArtUnc_63: 0.004931348879743005 - ArtUnc_64: -0.019511390532134486 - ArtUnc_65: 0.01837312552201359 - ArtUnc_66: 0.006955319069816964 - ArtUnc_67: -0.001832830663475033 - ArtUnc_68: -0.00026029931124660403 - ArtUnc_69: 0.000548424930784027 - ArtUnc_70: -0.00014018403238890204 - ArtUnc_71: 0.0007404022609201388 - ArtUnc_72: -0.0002691231477139737 - ArtUnc_73: 0.07358766616309388 - ArtUnc_74: -0.0893527526264328 - ArtUnc_75: -0.012055679340105704 - ArtUnc_76: -0.0027011264050323686 - ArtUnc_77: 0.021387610532927363 - ArtUnc_78: 0.013447794794430668 - ArtUnc_79: -0.04306806542957896 - ArtUnc_80: 0.0002503528763656325 - ArtUnc_81: -0.0004905800793986709 - ArtUnc_82: -2.433948835170254e-06 - ArtUnc_83: 0.00034942425994394585 - ArtUnc_84: 0.0003703550434099853 - ArtUnc_85: -0.00018102905776399447 - ArtUnc_86: -0.00014389325348863863 - ArtUnc_87: -0.0003998668211764174 - ArtUnc_88: 0.00260042890848475 - ArtUnc_89: -0.0023811496247879713 - ArtUnc_90: -0.0006337108544291929 - ArtUnc_91: -0.000159910268279095 - ArtUnc_92: -3.0413386783324703e-05 - ArtUnc_93: 0.004616274227591099 - ArtUnc_94: 0.0008602099782936573 - ArtUnc_95: 0.0007644310356287082 - ArtUnc_96: -1.4366715556144155e-06 + LArN: 5.02200000e-03 + StatMC: 3.60747000e-02 + RadErr: 1.90836000e-02 + Model_1: 1.56839820e-02 + Model_2: 1.56839820e-02 + ModelRW_1: 1.24880007e-02 + ModelRW_2: 1.24880007e-02 + JES_1: 3.99312165e-02 + JES_2: 3.99312165e-02 + ArtUnc_1: -2.81712682e-08 + ArtUnc_2: 4.46840500e-07 + ArtUnc_3: 6.06566938e-07 + ArtUnc_4: 2.20746800e-07 + ArtUnc_5: -2.72262976e-08 + ArtUnc_6: 1.05020308e-08 + ArtUnc_7: 6.24709128e-09 + ArtUnc_8: -1.33529610e-05 + ArtUnc_9: -5.19588052e-08 + ArtUnc_10: 2.17431125e-05 + ArtUnc_11: 1.43842834e-05 + ArtUnc_12: -6.48815473e-06 + ArtUnc_13: -1.20778496e-05 + ArtUnc_14: -9.85196994e-07 + ArtUnc_15: -5.50834477e-06 + ArtUnc_16: -8.57686890e-07 + ArtUnc_17: 1.70364299e-06 + ArtUnc_18: 2.25765291e-07 + ArtUnc_19: 1.29426108e-06 + ArtUnc_20: -5.00239868e-06 + ArtUnc_21: -3.82533763e-06 + ArtUnc_22: 1.76047604e-06 + ArtUnc_23: 6.14845353e-07 + ArtUnc_24: -8.64776661e-08 + ArtUnc_25: 2.18977602e-04 + ArtUnc_26: -1.04176965e-04 + ArtUnc_27: -1.24508435e-03 + ArtUnc_28: 1.73489754e-04 + ArtUnc_29: 1.52191040e-04 + ArtUnc_30: -7.46505159e-04 + ArtUnc_31: 2.07040477e-05 + ArtUnc_32: 4.34376430e-04 + ArtUnc_33: 1.24049080e-04 + ArtUnc_34: 2.86289352e-04 + ArtUnc_35: 4.96359061e-04 + ArtUnc_36: 2.02824562e-04 + ArtUnc_37: 3.70943471e-05 + ArtUnc_38: -4.10618278e-05 + ArtUnc_39: -6.79989317e-06 + ArtUnc_40: -1.49548241e-06 + ArtUnc_41: 8.08193004e-04 + ArtUnc_42: 2.10868393e-03 + ArtUnc_43: 3.58213041e-04 + ArtUnc_44: -5.39965493e-04 + ArtUnc_45: 1.31649341e-03 + ArtUnc_46: 2.01014378e-04 + ArtUnc_47: 6.35087591e-04 + ArtUnc_48: 4.75938260e-04 + ArtUnc_49: -6.02376009e-04 + ArtUnc_50: -9.49517943e-04 + ArtUnc_51: 6.92372530e-05 + ArtUnc_52: -7.65822540e-05 + ArtUnc_53: -9.88327099e-04 + ArtUnc_54: 3.50122323e-04 + ArtUnc_55: 2.38121945e-04 + ArtUnc_56: -4.12366011e-06 + ArtUnc_57: -2.06612720e-02 + ArtUnc_58: 3.01261792e-02 + ArtUnc_59: 4.63298301e-02 + ArtUnc_60: 1.70258742e-02 + ArtUnc_61: -8.56359397e-03 + ArtUnc_62: -1.27106274e-02 + ArtUnc_63: 4.93134888e-03 + ArtUnc_64: -1.95113905e-02 + ArtUnc_65: 1.83731255e-02 + ArtUnc_66: 6.95531907e-03 + ArtUnc_67: -1.83283066e-03 + ArtUnc_68: -2.60299311e-04 + ArtUnc_69: 5.48424931e-04 + ArtUnc_70: -1.40184032e-04 + ArtUnc_71: 7.40402261e-04 + ArtUnc_72: -2.69123148e-04 + ArtUnc_73: 7.35876662e-02 + ArtUnc_74: -8.93527526e-02 + ArtUnc_75: -1.20556793e-02 + ArtUnc_76: -2.70112641e-03 + ArtUnc_77: 2.13876105e-02 + ArtUnc_78: 1.34477948e-02 + ArtUnc_79: -4.30680654e-02 + ArtUnc_80: 2.50352876e-04 + ArtUnc_81: -4.90580079e-04 + ArtUnc_82: -2.43394884e-06 + ArtUnc_83: 3.49424260e-04 + ArtUnc_84: 3.70355043e-04 + ArtUnc_85: -1.81029058e-04 + ArtUnc_86: -1.43893253e-04 + ArtUnc_87: -3.99866821e-04 + ArtUnc_88: 2.60042891e-03 + ArtUnc_89: -2.38114962e-03 + ArtUnc_90: -6.33710854e-04 + ArtUnc_91: -1.59910268e-04 + ArtUnc_92: -3.04133868e-05 + ArtUnc_93: 4.61627423e-03 + ArtUnc_94: 8.60209978e-04 + ArtUnc_95: 7.64431036e-04 + ArtUnc_96: -1.43667156e-06 - stat: 0 Uncorr: 0.00126 - RCES: 0.0036414000000000004 - ElEn: 0.0036348488648085494 - ElTh: 0.0022428973293488045 + RCES: 3.64140000e-03 + ElEn: 3.63484886e-03 + ElTh: 2.24289733e-03 Lumi: 0.00315 LArN: 0.000756 - StatMC: 0.0192654 + StatMC: 1.92654000e-02 RadErr: 0.008127 - Model_1: 0.013809795436573274 - Model_2: 0.013809795436573274 - ModelRW_1: 0.01594363281485747 - ModelRW_2: 0.01594363281485747 - JES_1: 0.003885276963100571 - JES_2: 0.003885276963100571 - ArtUnc_1: 6.041525253143837e-10 - ArtUnc_2: -7.457087380483398e-10 - ArtUnc_3: -1.4082834307497503e-10 - ArtUnc_4: 5.259751980797566e-10 - ArtUnc_5: -6.923695139325593e-10 - ArtUnc_6: -3.3208895333728377e-10 - ArtUnc_7: -8.073137240863234e-12 - ArtUnc_8: 1.2230927873466213e-07 - ArtUnc_9: 5.113647670230508e-10 - ArtUnc_10: -2.244693506634476e-07 - ArtUnc_11: -1.432606521286891e-07 - ArtUnc_12: 1.1530260854438604e-08 - ArtUnc_13: 1.117473288031136e-07 - ArtUnc_14: 2.455820714133376e-08 - ArtUnc_15: 8.883175739142325e-10 - ArtUnc_16: 3.64674416477968e-08 - ArtUnc_17: -8.23673209728863e-08 - ArtUnc_18: 5.197226792066097e-08 - ArtUnc_19: -3.841247467568004e-08 - ArtUnc_20: 6.425356531113657e-08 - ArtUnc_21: 6.155293697544512e-08 - ArtUnc_22: -2.9516761746782553e-08 - ArtUnc_23: -5.562900001094921e-09 - ArtUnc_24: 7.151556918564961e-10 - ArtUnc_25: -1.6089317487759996e-06 - ArtUnc_26: 1.8646694530904163e-06 - ArtUnc_27: 1.1274858886782353e-05 - ArtUnc_28: -6.938518411540835e-07 - ArtUnc_29: -4.555944122477703e-07 - ArtUnc_30: 1.9617264051350774e-06 - ArtUnc_31: 2.1287085831880707e-08 - ArtUnc_32: 4.881844799069134e-07 - ArtUnc_33: 2.179347849928199e-08 - ArtUnc_34: 7.364259583162062e-07 - ArtUnc_35: 1.4923928499667925e-06 - ArtUnc_36: 7.430948147728629e-07 - ArtUnc_37: 1.8178644102041127e-07 - ArtUnc_38: -2.3100931026616919e-07 - ArtUnc_39: -2.047416229297779e-07 - ArtUnc_40: -7.4238034992303e-08 - ArtUnc_41: 0.0005268887524987921 - ArtUnc_42: -0.0005714659827220986 - ArtUnc_43: -0.00027022218346638225 - ArtUnc_44: 1.6398072189473574e-05 - ArtUnc_45: -0.00017043659189344853 - ArtUnc_46: -4.997859356279252e-05 - ArtUnc_47: -3.9402537799913584e-05 - ArtUnc_48: -3.0242333060468175e-05 - ArtUnc_49: 2.5495449976636246e-05 - ArtUnc_50: 6.691827822136524e-06 - ArtUnc_51: 1.4789803073696317e-05 - ArtUnc_52: -2.910302902721402e-05 - ArtUnc_53: -4.8331660677013445e-05 - ArtUnc_54: 2.46139002810582e-05 - ArtUnc_55: 5.0195187470255184e-05 - ArtUnc_56: -7.534173203397271e-06 - ArtUnc_57: -0.0009724406566382886 - ArtUnc_58: 0.002580581925581996 - ArtUnc_59: 0.0003722812543556141 - ArtUnc_60: 0.00024486307773779494 - ArtUnc_61: 0.0007502908776919723 - ArtUnc_62: -0.000603295909081876 - ArtUnc_63: -0.00021837644109062352 - ArtUnc_64: -0.0006049467434411995 - ArtUnc_65: 0.0004698406724156381 - ArtUnc_66: -0.00016047606982258857 - ArtUnc_67: 5.597628896170966e-05 - ArtUnc_68: 0.0002182389788351802 - ArtUnc_69: 1.1008667292203844e-05 - ArtUnc_70: 9.332428840909884e-05 - ArtUnc_71: 1.7410499463531618e-06 - ArtUnc_72: 1.5512309295234166e-05 - ArtUnc_73: 0.001171402712029326 - ArtUnc_74: -0.0002786311578004168 - ArtUnc_75: 0.00028700015729913036 - ArtUnc_76: 0.007224765081852715 - ArtUnc_77: -0.0013220955446067943 - ArtUnc_78: 0.01613476439515324 - ArtUnc_79: 0.0038130671178633353 - ArtUnc_80: -0.005064477730472428 - ArtUnc_81: 0.003436231220562271 - ArtUnc_82: 2.2412802282053842e-05 - ArtUnc_83: 0.022201540076900436 - ArtUnc_84: -0.0044566290856507575 - ArtUnc_85: -0.01742863953471023 - ArtUnc_86: 0.021496483443812036 - ArtUnc_87: 0.013607990667775918 - ArtUnc_88: -0.011385699670263238 - ArtUnc_89: -0.007780802192535263 - ArtUnc_90: 0.001898829632687188 - ArtUnc_91: 0.003959695772808286 - ArtUnc_92: 0.0005860095065112893 - ArtUnc_93: -0.008045285761312283 - ArtUnc_94: 0.0034782788311635373 - ArtUnc_95: 0.00022653556448828135 - ArtUnc_96: -0.004254928877905018 + Model_1: 1.38097954e-02 + Model_2: 1.38097954e-02 + ModelRW_1: 1.59436328e-02 + ModelRW_2: 1.59436328e-02 + JES_1: 3.88527696e-03 + JES_2: 3.88527696e-03 + ArtUnc_1: 6.04152525e-10 + ArtUnc_2: -7.45708738e-10 + ArtUnc_3: -1.40828343e-10 + ArtUnc_4: 5.25975198e-10 + ArtUnc_5: -6.92369514e-10 + ArtUnc_6: -3.32088953e-10 + ArtUnc_7: -8.07313724e-12 + ArtUnc_8: 1.22309279e-07 + ArtUnc_9: 5.11364767e-10 + ArtUnc_10: -2.24469351e-07 + ArtUnc_11: -1.43260652e-07 + ArtUnc_12: 1.15302609e-08 + ArtUnc_13: 1.11747329e-07 + ArtUnc_14: 2.45582071e-08 + ArtUnc_15: 8.88317574e-10 + ArtUnc_16: 3.64674416e-08 + ArtUnc_17: -8.23673210e-08 + ArtUnc_18: 5.19722679e-08 + ArtUnc_19: -3.84124747e-08 + ArtUnc_20: 6.42535653e-08 + ArtUnc_21: 6.15529370e-08 + ArtUnc_22: -2.95167617e-08 + ArtUnc_23: -5.56290000e-09 + ArtUnc_24: 7.15155692e-10 + ArtUnc_25: -1.60893175e-06 + ArtUnc_26: 1.86466945e-06 + ArtUnc_27: 1.12748589e-05 + ArtUnc_28: -6.93851841e-07 + ArtUnc_29: -4.55594412e-07 + ArtUnc_30: 1.96172641e-06 + ArtUnc_31: 2.12870858e-08 + ArtUnc_32: 4.88184480e-07 + ArtUnc_33: 2.17934785e-08 + ArtUnc_34: 7.36425958e-07 + ArtUnc_35: 1.49239285e-06 + ArtUnc_36: 7.43094815e-07 + ArtUnc_37: 1.81786441e-07 + ArtUnc_38: -2.31009310e-07 + ArtUnc_39: -2.04741623e-07 + ArtUnc_40: -7.42380350e-08 + ArtUnc_41: 5.26888752e-04 + ArtUnc_42: -5.71465983e-04 + ArtUnc_43: -2.70222183e-04 + ArtUnc_44: 1.63980722e-05 + ArtUnc_45: -1.70436592e-04 + ArtUnc_46: -4.99785936e-05 + ArtUnc_47: -3.94025378e-05 + ArtUnc_48: -3.02423331e-05 + ArtUnc_49: 2.54954500e-05 + ArtUnc_50: 6.69182782e-06 + ArtUnc_51: 1.47898031e-05 + ArtUnc_52: -2.91030290e-05 + ArtUnc_53: -4.83316607e-05 + ArtUnc_54: 2.46139003e-05 + ArtUnc_55: 5.01951875e-05 + ArtUnc_56: -7.53417320e-06 + ArtUnc_57: -9.72440657e-04 + ArtUnc_58: 2.58058193e-03 + ArtUnc_59: 3.72281254e-04 + ArtUnc_60: 2.44863078e-04 + ArtUnc_61: 7.50290878e-04 + ArtUnc_62: -6.03295909e-04 + ArtUnc_63: -2.18376441e-04 + ArtUnc_64: -6.04946743e-04 + ArtUnc_65: 4.69840672e-04 + ArtUnc_66: -1.60476070e-04 + ArtUnc_67: 5.59762890e-05 + ArtUnc_68: 2.18238979e-04 + ArtUnc_69: 1.10086673e-05 + ArtUnc_70: 9.33242884e-05 + ArtUnc_71: 1.74104995e-06 + ArtUnc_72: 1.55123093e-05 + ArtUnc_73: 1.17140271e-03 + ArtUnc_74: -2.78631158e-04 + ArtUnc_75: 2.87000157e-04 + ArtUnc_76: 7.22476508e-03 + ArtUnc_77: -1.32209554e-03 + ArtUnc_78: 1.61347644e-02 + ArtUnc_79: 3.81306712e-03 + ArtUnc_80: -5.06447773e-03 + ArtUnc_81: 3.43623122e-03 + ArtUnc_82: 2.24128023e-05 + ArtUnc_83: 2.22015401e-02 + ArtUnc_84: -4.45662909e-03 + ArtUnc_85: -1.74286395e-02 + ArtUnc_86: 2.14964834e-02 + ArtUnc_87: 1.36079907e-02 + ArtUnc_88: -1.13856997e-02 + ArtUnc_89: -7.78080219e-03 + ArtUnc_90: 1.89882963e-03 + ArtUnc_91: 3.95969577e-03 + ArtUnc_92: 5.86009507e-04 + ArtUnc_93: -8.04528576e-03 + ArtUnc_94: 3.47827883e-03 + ArtUnc_95: 2.26535564e-04 + ArtUnc_96: -4.25492888e-03 - stat: 0 Uncorr: 1.04 - RCES: 5.643806531056854 - ElEn: 0.03713542782842283 - ElTh: 0.4113919785314245 + RCES: 5.64380653e+00 + ElEn: 3.71354278e-02 + ElTh: 4.11391979e-01 Lumi: 2.6 LArN: 0.624 StatMC: 1.8928 - RadErr: 0.48879999999999996 - Model_1: 1.2133952365161154 - Model_2: 1.2133952365161154 - ModelRW_1: 0.3015103314979438 - ModelRW_2: 0.3015103314979438 - JES_1: 2.1767575152046676 - JES_2: 2.1767575152046676 - ArtUnc_1: 0.862390513360958 - ArtUnc_2: -0.058522334197274935 - ArtUnc_3: -0.015617481349614557 - ArtUnc_4: -0.02865956582028775 - ArtUnc_5: 0.024560404389031128 - ArtUnc_6: -0.013697542293582938 - ArtUnc_7: 0.0312667358010939 - ArtUnc_8: -8.052766469309553 - ArtUnc_9: -0.003869570549781359 - ArtUnc_10: -5.440340482204765 - ArtUnc_11: 0.5063656603501565 - ArtUnc_12: 0.13134908148404048 - ArtUnc_13: 1.5029665042315448 - ArtUnc_14: -0.02868999219755132 - ArtUnc_15: 0.1800281550271725 - ArtUnc_16: 0.01425040702897497 - ArtUnc_17: 0.04851242069982236 - ArtUnc_18: -0.2994043649614981 - ArtUnc_19: 0.07767460929125639 - ArtUnc_20: 0.2717761425707195 - ArtUnc_21: 0.047177105354672885 - ArtUnc_22: 0.03848277959299294 - ArtUnc_23: 0.014740246882677685 - ArtUnc_24: 0.0029896501309716835 - ArtUnc_25: -0.04036369541606761 - ArtUnc_26: -0.09302467152124266 - ArtUnc_27: -0.014597160954110492 - ArtUnc_28: -0.032271023414061836 - ArtUnc_29: 0.011743211789942889 - ArtUnc_30: -0.02075840896967938 - ArtUnc_31: 0.011241230788636522 - ArtUnc_32: 0.007682375996866057 - ArtUnc_33: 0.006482760235225154 - ArtUnc_34: 0.008580794784233063 - ArtUnc_35: 0.004056435036263157 - ArtUnc_36: 0.0008921238755738741 - ArtUnc_37: -0.0021935306004609617 - ArtUnc_38: 0.0009761650792590337 - ArtUnc_39: -0.0005096127087808053 - ArtUnc_40: -0.0005619835756197868 - ArtUnc_41: -0.0031631785001945928 - ArtUnc_42: -0.002833615200537926 - ArtUnc_43: 0.000737177321297061 - ArtUnc_44: 0.001308887822230703 - ArtUnc_45: -0.0012901354777218469 - ArtUnc_46: 0.0007960634160440661 - ArtUnc_47: -0.0016605377633478362 - ArtUnc_48: 0.00041322085193029644 - ArtUnc_49: 0.0007064806487292607 - ArtUnc_50: 0.0008218480678580217 - ArtUnc_51: -0.00013628995667965135 - ArtUnc_52: 7.824198600373727e-05 - ArtUnc_53: 0.0007009699714016272 - ArtUnc_54: -0.00017757524658647804 - ArtUnc_55: 9.061136987685657e-06 - ArtUnc_56: -0.00013438631943932383 - ArtUnc_57: 9.964845519297726e-06 - ArtUnc_58: -1.1228773788767014e-05 - ArtUnc_59: -1.3513642131206547e-05 - ArtUnc_60: -4.997737295236594e-06 - ArtUnc_61: 1.0751982835757547e-05 - ArtUnc_62: 6.1362719694684646e-06 - ArtUnc_63: -7.024195304640522e-06 - ArtUnc_64: 1.104379494273848e-05 - ArtUnc_65: -6.857977199225964e-06 - ArtUnc_66: 1.578230170233843e-06 - ArtUnc_67: 1.8570889589523063e-07 - ArtUnc_68: 7.241483498069554e-06 - ArtUnc_69: 9.093223014310423e-06 - ArtUnc_70: -2.2514322267953912e-07 - ArtUnc_71: 4.916213171292535e-07 - ArtUnc_72: -5.360034925647657e-07 - ArtUnc_73: 1.5427469524348488e-06 - ArtUnc_74: -2.3515148923936133e-06 - ArtUnc_75: -4.317535944850396e-07 - ArtUnc_76: 1.1272934960468206e-07 - ArtUnc_77: 7.517926745290272e-07 - ArtUnc_78: 5.095707024872422e-07 - ArtUnc_79: -7.8664914257136e-07 - ArtUnc_80: 9.434889384442472e-08 - ArtUnc_81: -1.1980382405502867e-08 - ArtUnc_82: -4.258541093895767e-10 - ArtUnc_83: -4.4121592340278306e-08 - ArtUnc_84: -2.5736692776212392e-08 - ArtUnc_85: 4.2710197772578146e-08 - ArtUnc_86: 8.348804058710194e-09 - ArtUnc_87: 1.766129369683349e-08 - ArtUnc_88: 7.80158295685783e-09 - ArtUnc_89: -5.735037683417001e-10 - ArtUnc_90: -9.147156941503087e-08 - ArtUnc_91: 2.083758651128185e-08 - ArtUnc_92: 4.8526244608792894e-09 - ArtUnc_93: -1.3073151315177993e-07 - ArtUnc_94: 8.733441907194496e-08 - ArtUnc_95: 2.3566459633314595e-08 - ArtUnc_96: -8.364543817190556e-09 + RadErr: 4.88800000e-01 + Model_1: 1.21339524e+00 + Model_2: 1.21339524e+00 + ModelRW_1: 3.01510331e-01 + ModelRW_2: 3.01510331e-01 + JES_1: 2.17675752e+00 + JES_2: 2.17675752e+00 + ArtUnc_1: 8.62390513e-01 + ArtUnc_2: -5.85223342e-02 + ArtUnc_3: -1.56174813e-02 + ArtUnc_4: -2.86595658e-02 + ArtUnc_5: 2.45604044e-02 + ArtUnc_6: -1.36975423e-02 + ArtUnc_7: 3.12667358e-02 + ArtUnc_8: -8.05276647e+00 + ArtUnc_9: -3.86957055e-03 + ArtUnc_10: -5.44034048e+00 + ArtUnc_11: 5.06365660e-01 + ArtUnc_12: 1.31349081e-01 + ArtUnc_13: 1.50296650e+00 + ArtUnc_14: -2.86899922e-02 + ArtUnc_15: 1.80028155e-01 + ArtUnc_16: 1.42504070e-02 + ArtUnc_17: 4.85124207e-02 + ArtUnc_18: -2.99404365e-01 + ArtUnc_19: 7.76746093e-02 + ArtUnc_20: 2.71776143e-01 + ArtUnc_21: 4.71771054e-02 + ArtUnc_22: 3.84827796e-02 + ArtUnc_23: 1.47402469e-02 + ArtUnc_24: 2.98965013e-03 + ArtUnc_25: -4.03636954e-02 + ArtUnc_26: -9.30246715e-02 + ArtUnc_27: -1.45971610e-02 + ArtUnc_28: -3.22710234e-02 + ArtUnc_29: 1.17432118e-02 + ArtUnc_30: -2.07584090e-02 + ArtUnc_31: 1.12412308e-02 + ArtUnc_32: 7.68237600e-03 + ArtUnc_33: 6.48276024e-03 + ArtUnc_34: 8.58079478e-03 + ArtUnc_35: 4.05643504e-03 + ArtUnc_36: 8.92123876e-04 + ArtUnc_37: -2.19353060e-03 + ArtUnc_38: 9.76165079e-04 + ArtUnc_39: -5.09612709e-04 + ArtUnc_40: -5.61983576e-04 + ArtUnc_41: -3.16317850e-03 + ArtUnc_42: -2.83361520e-03 + ArtUnc_43: 7.37177321e-04 + ArtUnc_44: 1.30888782e-03 + ArtUnc_45: -1.29013548e-03 + ArtUnc_46: 7.96063416e-04 + ArtUnc_47: -1.66053776e-03 + ArtUnc_48: 4.13220852e-04 + ArtUnc_49: 7.06480649e-04 + ArtUnc_50: 8.21848068e-04 + ArtUnc_51: -1.36289957e-04 + ArtUnc_52: 7.82419860e-05 + ArtUnc_53: 7.00969971e-04 + ArtUnc_54: -1.77575247e-04 + ArtUnc_55: 9.06113699e-06 + ArtUnc_56: -1.34386319e-04 + ArtUnc_57: 9.96484552e-06 + ArtUnc_58: -1.12287738e-05 + ArtUnc_59: -1.35136421e-05 + ArtUnc_60: -4.99773730e-06 + ArtUnc_61: 1.07519828e-05 + ArtUnc_62: 6.13627197e-06 + ArtUnc_63: -7.02419530e-06 + ArtUnc_64: 1.10437949e-05 + ArtUnc_65: -6.85797720e-06 + ArtUnc_66: 1.57823017e-06 + ArtUnc_67: 1.85708896e-07 + ArtUnc_68: 7.24148350e-06 + ArtUnc_69: 9.09322301e-06 + ArtUnc_70: -2.25143223e-07 + ArtUnc_71: 4.91621317e-07 + ArtUnc_72: -5.36003493e-07 + ArtUnc_73: 1.54274695e-06 + ArtUnc_74: -2.35151489e-06 + ArtUnc_75: -4.31753594e-07 + ArtUnc_76: 1.12729350e-07 + ArtUnc_77: 7.51792675e-07 + ArtUnc_78: 5.09570702e-07 + ArtUnc_79: -7.86649143e-07 + ArtUnc_80: 9.43488938e-08 + ArtUnc_81: -1.19803824e-08 + ArtUnc_82: -4.25854109e-10 + ArtUnc_83: -4.41215923e-08 + ArtUnc_84: -2.57366928e-08 + ArtUnc_85: 4.27101978e-08 + ArtUnc_86: 8.34880406e-09 + ArtUnc_87: 1.76612937e-08 + ArtUnc_88: 7.80158296e-09 + ArtUnc_89: -5.73503768e-10 + ArtUnc_90: -9.14715694e-08 + ArtUnc_91: 2.08375865e-08 + ArtUnc_92: 4.85262446e-09 + ArtUnc_93: -1.30731513e-07 + ArtUnc_94: 8.73344191e-08 + ArtUnc_95: 2.35664596e-08 + ArtUnc_96: -8.36454382e-09 - stat: 0 Uncorr: 0.876 - RCES: 1.0907519197324387 + RCES: 1.09075192e+00 ElEn: 0.21024 - ElTh: 0.24288274949036623 + ElTh: 2.42882749e-01 Lumi: 2.19 LArN: 0.5256 - StatMC: 0.6044399999999999 + StatMC: 6.04440000e-01 RadErr: 0.22776 - Model_1: 1.9697732182157415 - Model_2: 1.9697732182157415 - ModelRW_1: 1.4494557643474322 - ModelRW_2: 1.4494557643474322 - JES_1: 0.9156400214057924 - JES_2: 0.9156400214057924 - ArtUnc_1: 0.1320383969101628 - ArtUnc_2: -0.0018981155812127922 - ArtUnc_3: 0.030449734167063938 - ArtUnc_4: 0.016599559452785167 - ArtUnc_5: -0.007039446793516058 - ArtUnc_6: -0.0016744990704085601 - ArtUnc_7: 0.00015496188070738973 - ArtUnc_8: 0.04741118864007513 - ArtUnc_9: 0.0007186835312962168 - ArtUnc_10: -0.4305264015518117 - ArtUnc_11: -0.3402840139397071 - ArtUnc_12: 0.3989521206085828 - ArtUnc_13: 0.09101270589019123 - ArtUnc_14: -0.0454662744015132 - ArtUnc_15: 0.009692340009628061 - ArtUnc_16: 0.03319493653463854 - ArtUnc_17: 0.05060998404362843 - ArtUnc_18: -0.06042621545255102 - ArtUnc_19: 0.04212580899411449 - ArtUnc_20: 0.015698438313396287 - ArtUnc_21: -0.027948389494300365 - ArtUnc_22: 0.03784757413331094 - ArtUnc_23: 0.021509993525674447 - ArtUnc_24: -0.0004039371438018868 - ArtUnc_25: 3.2719289748556997 - ArtUnc_26: 1.3315714679588329 - ArtUnc_27: 0.3873789388962019 - ArtUnc_28: 0.6847540037957462 - ArtUnc_29: 0.020893158405177158 - ArtUnc_30: 0.24155149523280334 - ArtUnc_31: -0.05080766078860241 - ArtUnc_32: -0.08409477654661683 - ArtUnc_33: -0.056203225073985175 - ArtUnc_34: -0.08167182024114937 - ArtUnc_35: -0.08773620671064794 - ArtUnc_36: -0.037061892254628304 - ArtUnc_37: 0.0024416941282667287 - ArtUnc_38: 0.005311259237549614 - ArtUnc_39: 0.004140830387009761 - ArtUnc_40: 0.0023273358670159597 - ArtUnc_41: 0.016608369052248613 - ArtUnc_42: 0.017377037665656427 - ArtUnc_43: -0.007473878582718413 - ArtUnc_44: -0.01136699783501941 - ArtUnc_45: 0.012081466399688854 - ArtUnc_46: -0.006010521471543492 - ArtUnc_47: 0.014787560023833185 - ArtUnc_48: -0.004711128239898752 - ArtUnc_49: -0.007430677269866188 - ArtUnc_50: -0.006807979909466713 - ArtUnc_51: 0.0006050043502575601 - ArtUnc_52: -0.0001350414213422827 - ArtUnc_53: -0.0072927373415190835 - ArtUnc_54: 0.0021796124008489058 - ArtUnc_55: 0.0010621839197683008 - ArtUnc_56: 0.00038932020161372015 - ArtUnc_57: 2.8675619155647794e-06 - ArtUnc_58: -0.00011801018194304885 - ArtUnc_59: 0.00015106725253573715 - ArtUnc_60: 5.010764059745741e-05 - ArtUnc_61: -9.866999716198439e-06 - ArtUnc_62: -5.093667125678123e-05 - ArtUnc_63: 1.3994054984194227e-06 - ArtUnc_64: -7.893786420285958e-05 - ArtUnc_65: 6.916046599341139e-05 - ArtUnc_66: 4.153359855595592e-06 - ArtUnc_67: -3.7740188390941575e-06 - ArtUnc_68: -4.220146094322869e-06 - ArtUnc_69: -5.492019682323398e-06 - ArtUnc_70: -4.037667501783616e-06 - ArtUnc_71: 6.169350904763874e-06 - ArtUnc_72: -1.9239639399510934e-06 - ArtUnc_73: -2.479148957476188e-06 - ArtUnc_74: 1.4911766742091386e-05 - ArtUnc_75: 2.4181351515257655e-06 - ArtUnc_76: -4.5954891167824075e-07 - ArtUnc_77: -4.5068273257981715e-06 - ArtUnc_78: -3.171597684393666e-06 - ArtUnc_79: 7.267656447246022e-06 - ArtUnc_80: 8.86925522824323e-07 - ArtUnc_81: -3.4742103213120816e-07 - ArtUnc_82: -3.2867253404634625e-09 - ArtUnc_83: 4.799206644697428e-07 - ArtUnc_84: 4.956056692359477e-07 - ArtUnc_85: -3.0571751073164814e-07 - ArtUnc_86: -6.513106602556879e-08 - ArtUnc_87: -1.285266079731519e-07 - ArtUnc_88: -3.941215089842248e-07 - ArtUnc_89: -4.054728722557868e-07 - ArtUnc_90: -1.3450800291205652e-08 - ArtUnc_91: -7.577235197069439e-08 - ArtUnc_92: -1.9418480748555077e-08 - ArtUnc_93: 3.038985099760247e-07 - ArtUnc_94: -2.603149510967458e-07 - ArtUnc_95: 2.5716364133558877e-07 - ArtUnc_96: -1.7915995558900218e-09 + Model_1: 1.96977322e+00 + Model_2: 1.96977322e+00 + ModelRW_1: 1.44945576e+00 + ModelRW_2: 1.44945576e+00 + JES_1: 9.15640021e-01 + JES_2: 9.15640021e-01 + ArtUnc_1: 1.32038397e-01 + ArtUnc_2: -1.89811558e-03 + ArtUnc_3: 3.04497342e-02 + ArtUnc_4: 1.65995595e-02 + ArtUnc_5: -7.03944679e-03 + ArtUnc_6: -1.67449907e-03 + ArtUnc_7: 1.54961881e-04 + ArtUnc_8: 4.74111886e-02 + ArtUnc_9: 7.18683531e-04 + ArtUnc_10: -4.30526402e-01 + ArtUnc_11: -3.40284014e-01 + ArtUnc_12: 3.98952121e-01 + ArtUnc_13: 9.10127059e-02 + ArtUnc_14: -4.54662744e-02 + ArtUnc_15: 9.69234001e-03 + ArtUnc_16: 3.31949365e-02 + ArtUnc_17: 5.06099840e-02 + ArtUnc_18: -6.04262155e-02 + ArtUnc_19: 4.21258090e-02 + ArtUnc_20: 1.56984383e-02 + ArtUnc_21: -2.79483895e-02 + ArtUnc_22: 3.78475741e-02 + ArtUnc_23: 2.15099935e-02 + ArtUnc_24: -4.03937144e-04 + ArtUnc_25: 3.27192897e+00 + ArtUnc_26: 1.33157147e+00 + ArtUnc_27: 3.87378939e-01 + ArtUnc_28: 6.84754004e-01 + ArtUnc_29: 2.08931584e-02 + ArtUnc_30: 2.41551495e-01 + ArtUnc_31: -5.08076608e-02 + ArtUnc_32: -8.40947765e-02 + ArtUnc_33: -5.62032251e-02 + ArtUnc_34: -8.16718202e-02 + ArtUnc_35: -8.77362067e-02 + ArtUnc_36: -3.70618923e-02 + ArtUnc_37: 2.44169413e-03 + ArtUnc_38: 5.31125924e-03 + ArtUnc_39: 4.14083039e-03 + ArtUnc_40: 2.32733587e-03 + ArtUnc_41: 1.66083691e-02 + ArtUnc_42: 1.73770377e-02 + ArtUnc_43: -7.47387858e-03 + ArtUnc_44: -1.13669978e-02 + ArtUnc_45: 1.20814664e-02 + ArtUnc_46: -6.01052147e-03 + ArtUnc_47: 1.47875600e-02 + ArtUnc_48: -4.71112824e-03 + ArtUnc_49: -7.43067727e-03 + ArtUnc_50: -6.80797991e-03 + ArtUnc_51: 6.05004350e-04 + ArtUnc_52: -1.35041421e-04 + ArtUnc_53: -7.29273734e-03 + ArtUnc_54: 2.17961240e-03 + ArtUnc_55: 1.06218392e-03 + ArtUnc_56: 3.89320202e-04 + ArtUnc_57: 2.86756192e-06 + ArtUnc_58: -1.18010182e-04 + ArtUnc_59: 1.51067253e-04 + ArtUnc_60: 5.01076406e-05 + ArtUnc_61: -9.86699972e-06 + ArtUnc_62: -5.09366713e-05 + ArtUnc_63: 1.39940550e-06 + ArtUnc_64: -7.89378642e-05 + ArtUnc_65: 6.91604660e-05 + ArtUnc_66: 4.15335986e-06 + ArtUnc_67: -3.77401884e-06 + ArtUnc_68: -4.22014609e-06 + ArtUnc_69: -5.49201968e-06 + ArtUnc_70: -4.03766750e-06 + ArtUnc_71: 6.16935090e-06 + ArtUnc_72: -1.92396394e-06 + ArtUnc_73: -2.47914896e-06 + ArtUnc_74: 1.49117667e-05 + ArtUnc_75: 2.41813515e-06 + ArtUnc_76: -4.59548912e-07 + ArtUnc_77: -4.50682733e-06 + ArtUnc_78: -3.17159768e-06 + ArtUnc_79: 7.26765645e-06 + ArtUnc_80: 8.86925523e-07 + ArtUnc_81: -3.47421032e-07 + ArtUnc_82: -3.28672534e-09 + ArtUnc_83: 4.79920664e-07 + ArtUnc_84: 4.95605669e-07 + ArtUnc_85: -3.05717511e-07 + ArtUnc_86: -6.51310660e-08 + ArtUnc_87: -1.28526608e-07 + ArtUnc_88: -3.94121509e-07 + ArtUnc_89: -4.05472872e-07 + ArtUnc_90: -1.34508003e-08 + ArtUnc_91: -7.57723520e-08 + ArtUnc_92: -1.94184807e-08 + ArtUnc_93: 3.03898510e-07 + ArtUnc_94: -2.60314951e-07 + ArtUnc_95: 2.57163641e-07 + ArtUnc_96: -1.79159956e-09 - stat: 0 Uncorr: 0.251 - RCES: 0.06333710346234663 - ElEn: 0.09474211035753849 - ElTh: 0.07736339573726066 - Lumi: 0.6275000000000001 + RCES: 6.33371035e-02 + ElEn: 9.47421104e-02 + ElTh: 7.73633957e-02 + Lumi: 6.27500000e-01 LArN: 0.1506 StatMC: 0.18072 RadErr: 0.10542 - Model_1: 0.4934049697763491 - Model_2: 0.4934049697763491 - ModelRW_1: 0.5466501103996962 - ModelRW_2: 0.5466501103996962 - JES_1: 0.6285382810139729 - JES_2: 0.6285382810139729 - ArtUnc_1: 0.009828482441487745 - ArtUnc_2: -0.00460871700064456 - ArtUnc_3: -0.002367722967671026 - ArtUnc_4: -0.00029926032901598235 - ArtUnc_5: -0.00012690827336534974 - ArtUnc_6: -6.2210660451003455e-06 - ArtUnc_7: -8.451570832595379e-05 - ArtUnc_8: 0.02751057521746776 - ArtUnc_9: 1.5723655127338393e-05 - ArtUnc_10: 0.017825203774346893 - ArtUnc_11: -0.006729346020044204 - ArtUnc_12: 0.015601139436504471 - ArtUnc_13: -0.007047244784114975 - ArtUnc_14: -0.0065521735181942676 - ArtUnc_15: -0.005325434628903351 - ArtUnc_16: 0.0064917673106256015 - ArtUnc_17: -0.0034180238988290863 - ArtUnc_18: 0.0016271913888590524 - ArtUnc_19: -0.0010176831113118696 - ArtUnc_20: 0.0012412268220376775 - ArtUnc_21: 0.0013910730652472933 - ArtUnc_22: -0.0009017674683374423 - ArtUnc_23: 4.585804574036141e-05 - ArtUnc_24: -0.0001413221668135053 - ArtUnc_25: 0.048844340697331595 - ArtUnc_26: 0.04181590905252278 - ArtUnc_27: 0.32589663868765795 - ArtUnc_28: -0.046280711933589666 - ArtUnc_29: -0.030819773195066773 - ArtUnc_30: 0.14587854716562404 - ArtUnc_31: -0.0016396219494746182 - ArtUnc_32: -0.0678545120748393 - ArtUnc_33: -0.022661813340476022 - ArtUnc_34: -0.04182033033426591 - ArtUnc_35: -0.06905773771897107 - ArtUnc_36: -0.026864389685190497 - ArtUnc_37: -0.004292649218077433 - ArtUnc_38: 0.0050802906960727345 - ArtUnc_39: 0.0008362842858768569 - ArtUnc_40: 0.0003095012144619919 - ArtUnc_41: -0.7052015856251063 - ArtUnc_42: -0.6327097492563641 - ArtUnc_43: 0.12172801961898926 - ArtUnc_44: 0.22099531757298294 - ArtUnc_45: -0.23647012932139355 - ArtUnc_46: 0.08099032950666608 - ArtUnc_47: -0.20664841683345517 - ArtUnc_48: 0.038265988932915405 - ArtUnc_49: 0.09491404193287561 - ArtUnc_50: 0.09824741575171583 - ArtUnc_51: -0.004617328215157453 - ArtUnc_52: 0.0017742998422925309 - ArtUnc_53: 0.09017523379420407 - ArtUnc_54: -0.028143182158681345 - ArtUnc_55: -0.011196793347803947 - ArtUnc_56: -0.0034442880899961553 - ArtUnc_57: 0.0010036416826926242 - ArtUnc_58: -0.0028231731389436556 - ArtUnc_59: 0.0012046531993427795 - ArtUnc_60: 0.0003414476538073182 - ArtUnc_61: 2.537222981374834e-05 - ArtUnc_62: -0.00032734669173514557 - ArtUnc_63: -0.00028632491468644916 - ArtUnc_64: -0.0006345923426677774 - ArtUnc_65: 0.0005386105751243396 - ArtUnc_66: -0.0011505629179389587 - ArtUnc_67: 0.0004560945531371202 - ArtUnc_68: 0.003014846949041353 - ArtUnc_69: 0.0020738004664223268 - ArtUnc_70: -0.00037625735442800627 - ArtUnc_71: 0.0004925221551271979 - ArtUnc_72: -0.00026471775867246614 - ArtUnc_73: 0.0002693477913324866 - ArtUnc_74: -0.00026473689865880184 - ArtUnc_75: -3.595203059976877e-05 - ArtUnc_76: 1.2460882397148897e-06 - ArtUnc_77: 4.642367619193105e-05 - ArtUnc_78: 3.913418086393189e-05 - ArtUnc_79: -6.51698698504578e-05 - ArtUnc_80: 4.185286658640881e-07 - ArtUnc_81: 1.355320199362528e-06 - ArtUnc_82: -1.3444472389898236e-09 - ArtUnc_83: -1.3574624362073272e-06 - ArtUnc_84: -3.5302943668521003e-06 - ArtUnc_85: 1.2092535550324354e-06 - ArtUnc_86: -2.392580188600286e-06 - ArtUnc_87: -2.9287647151749426e-06 - ArtUnc_88: -7.154831036187616e-06 - ArtUnc_89: -4.048195228634956e-06 - ArtUnc_90: 2.553863669683389e-06 - ArtUnc_91: -6.988055593524728e-07 - ArtUnc_92: -7.503800177848302e-08 - ArtUnc_93: -1.0256192208288061e-05 - ArtUnc_94: 3.073421133961953e-06 - ArtUnc_95: -2.478932443424516e-06 - ArtUnc_96: -9.190338720973543e-08 + Model_1: 4.93404970e-01 + Model_2: 4.93404970e-01 + ModelRW_1: 5.46650110e-01 + ModelRW_2: 5.46650110e-01 + JES_1: 6.28538281e-01 + JES_2: 6.28538281e-01 + ArtUnc_1: 9.82848244e-03 + ArtUnc_2: -4.60871700e-03 + ArtUnc_3: -2.36772297e-03 + ArtUnc_4: -2.99260329e-04 + ArtUnc_5: -1.26908273e-04 + ArtUnc_6: -6.22106605e-06 + ArtUnc_7: -8.45157083e-05 + ArtUnc_8: 2.75105752e-02 + ArtUnc_9: 1.57236551e-05 + ArtUnc_10: 1.78252038e-02 + ArtUnc_11: -6.72934602e-03 + ArtUnc_12: 1.56011394e-02 + ArtUnc_13: -7.04724478e-03 + ArtUnc_14: -6.55217352e-03 + ArtUnc_15: -5.32543463e-03 + ArtUnc_16: 6.49176731e-03 + ArtUnc_17: -3.41802390e-03 + ArtUnc_18: 1.62719139e-03 + ArtUnc_19: -1.01768311e-03 + ArtUnc_20: 1.24122682e-03 + ArtUnc_21: 1.39107307e-03 + ArtUnc_22: -9.01767468e-04 + ArtUnc_23: 4.58580457e-05 + ArtUnc_24: -1.41322167e-04 + ArtUnc_25: 4.88443407e-02 + ArtUnc_26: 4.18159091e-02 + ArtUnc_27: 3.25896639e-01 + ArtUnc_28: -4.62807119e-02 + ArtUnc_29: -3.08197732e-02 + ArtUnc_30: 1.45878547e-01 + ArtUnc_31: -1.63962195e-03 + ArtUnc_32: -6.78545121e-02 + ArtUnc_33: -2.26618133e-02 + ArtUnc_34: -4.18203303e-02 + ArtUnc_35: -6.90577377e-02 + ArtUnc_36: -2.68643897e-02 + ArtUnc_37: -4.29264922e-03 + ArtUnc_38: 5.08029070e-03 + ArtUnc_39: 8.36284286e-04 + ArtUnc_40: 3.09501214e-04 + ArtUnc_41: -7.05201586e-01 + ArtUnc_42: -6.32709749e-01 + ArtUnc_43: 1.21728020e-01 + ArtUnc_44: 2.20995318e-01 + ArtUnc_45: -2.36470129e-01 + ArtUnc_46: 8.09903295e-02 + ArtUnc_47: -2.06648417e-01 + ArtUnc_48: 3.82659889e-02 + ArtUnc_49: 9.49140419e-02 + ArtUnc_50: 9.82474158e-02 + ArtUnc_51: -4.61732822e-03 + ArtUnc_52: 1.77429984e-03 + ArtUnc_53: 9.01752338e-02 + ArtUnc_54: -2.81431822e-02 + ArtUnc_55: -1.11967933e-02 + ArtUnc_56: -3.44428809e-03 + ArtUnc_57: 1.00364168e-03 + ArtUnc_58: -2.82317314e-03 + ArtUnc_59: 1.20465320e-03 + ArtUnc_60: 3.41447654e-04 + ArtUnc_61: 2.53722298e-05 + ArtUnc_62: -3.27346692e-04 + ArtUnc_63: -2.86324915e-04 + ArtUnc_64: -6.34592343e-04 + ArtUnc_65: 5.38610575e-04 + ArtUnc_66: -1.15056292e-03 + ArtUnc_67: 4.56094553e-04 + ArtUnc_68: 3.01484695e-03 + ArtUnc_69: 2.07380047e-03 + ArtUnc_70: -3.76257354e-04 + ArtUnc_71: 4.92522155e-04 + ArtUnc_72: -2.64717759e-04 + ArtUnc_73: 2.69347791e-04 + ArtUnc_74: -2.64736899e-04 + ArtUnc_75: -3.59520306e-05 + ArtUnc_76: 1.24608824e-06 + ArtUnc_77: 4.64236762e-05 + ArtUnc_78: 3.91341809e-05 + ArtUnc_79: -6.51698699e-05 + ArtUnc_80: 4.18528666e-07 + ArtUnc_81: 1.35532020e-06 + ArtUnc_82: -1.34444724e-09 + ArtUnc_83: -1.35746244e-06 + ArtUnc_84: -3.53029437e-06 + ArtUnc_85: 1.20925356e-06 + ArtUnc_86: -2.39258019e-06 + ArtUnc_87: -2.92876472e-06 + ArtUnc_88: -7.15483104e-06 + ArtUnc_89: -4.04819523e-06 + ArtUnc_90: 2.55386367e-06 + ArtUnc_91: -6.98805559e-07 + ArtUnc_92: -7.50380018e-08 + ArtUnc_93: -1.02561922e-05 + ArtUnc_94: 3.07342113e-06 + ArtUnc_95: -2.47893244e-06 + ArtUnc_96: -9.19033872e-08 - stat: 0 Uncorr: 0.0509 - RCES: 0.021619022272064015 - ElEn: 0.006790907008640304 - ElTh: 0.007139620910804719 + RCES: 2.16190223e-02 + ElEn: 6.79090701e-03 + ElTh: 7.13962091e-03 Lumi: 0.12725 - LArN: 0.030539999999999998 - StatMC: 0.10434499999999998 + LArN: 3.05400000e-02 + StatMC: 1.04345000e-01 RadErr: 0.050391 - Model_1: 0.30916900504497535 - Model_2: 0.30916900504497535 - ModelRW_1: 0.29207304172308507 - ModelRW_2: 0.29207304172308507 - JES_1: 0.17355584535928195 - JES_2: 0.17355584535928195 - ArtUnc_1: -6.164644459496338e-08 - ArtUnc_2: 3.922489697003599e-06 - ArtUnc_3: 3.676532891100279e-06 - ArtUnc_4: 5.564873447651579e-07 - ArtUnc_5: 6.59743217294973e-07 - ArtUnc_6: 4.992344983248174e-07 - ArtUnc_7: -1.1475159678064252e-07 - ArtUnc_8: -9.852689490555703e-05 - ArtUnc_9: -4.407965694973057e-07 - ArtUnc_10: 0.0001792344528930398 - ArtUnc_11: 7.616657232721964e-05 - ArtUnc_12: -4.4728975211666266e-05 - ArtUnc_13: -4.0797786142070816e-05 - ArtUnc_14: 1.1653214759857445e-05 - ArtUnc_15: 2.9468682734613832e-05 - ArtUnc_16: -4.060088063743114e-05 - ArtUnc_17: 4.8986111224387076e-05 - ArtUnc_18: -2.500089489249813e-05 - ArtUnc_19: 1.8892070928952376e-05 - ArtUnc_20: -3.2089415329472654e-05 - ArtUnc_21: -3.1833271314447314e-05 - ArtUnc_22: 1.9025728150568153e-05 - ArtUnc_23: 7.026400508713268e-06 - ArtUnc_24: -5.427374187542625e-07 - ArtUnc_25: 0.00180497943837816 - ArtUnc_26: -0.0011801587967399964 - ArtUnc_27: -0.009578494181615448 - ArtUnc_28: 0.0008501682735662387 - ArtUnc_29: 0.0009006503708527966 - ArtUnc_30: -0.004665811728323744 - ArtUnc_31: 0.00010043484313485591 - ArtUnc_32: 0.002013123413600144 - ArtUnc_33: 0.0006497633601117199 - ArtUnc_34: 0.0008514052295296975 - ArtUnc_35: 0.001151055185015836 - ArtUnc_36: -5.32719746780574e-05 - ArtUnc_37: -0.00018763487850387555 - ArtUnc_38: 0.000374601437531586 - ArtUnc_39: 0.00020843676093705043 - ArtUnc_40: 3.0350509533418895e-05 - ArtUnc_41: 0.10266260140158713 - ArtUnc_42: -0.09840882032617902 - ArtUnc_43: -0.0687136256878946 - ArtUnc_44: -0.009317374694874054 - ArtUnc_45: -0.03518183522111571 - ArtUnc_46: -0.029312409153198906 - ArtUnc_47: 0.013643854055219597 - ArtUnc_48: -0.03382659436727794 - ArtUnc_49: 0.004633542472207272 - ArtUnc_50: 0.02025841501175562 - ArtUnc_51: -0.0023840751346399375 - ArtUnc_52: 0.004771693908960994 - ArtUnc_53: 0.022523688368749763 - ArtUnc_54: -0.009567457581226015 - ArtUnc_55: -0.009843605589854792 - ArtUnc_56: 0.001517061341357972 - ArtUnc_57: 0.06258888615097814 - ArtUnc_58: -0.26121858121934405 - ArtUnc_59: 0.10808008735278782 - ArtUnc_60: 0.023049073521630416 - ArtUnc_61: -0.14287717897482147 - ArtUnc_62: 0.04647436774649283 - ArtUnc_63: 0.05445480327220324 - ArtUnc_64: 0.020264268067555387 - ArtUnc_65: -0.002083777069281772 - ArtUnc_66: 0.06705184198137516 - ArtUnc_67: -0.021510300671449198 - ArtUnc_68: -0.08355834520654506 - ArtUnc_69: -0.04248293594777888 - ArtUnc_70: 0.0015854931928314551 - ArtUnc_71: -0.009286362438022215 - ArtUnc_72: 0.005984455381454388 - ArtUnc_73: 0.0016273501516143546 - ArtUnc_74: -0.001251898970055017 - ArtUnc_75: -5.0258160043893535e-05 - ArtUnc_76: -5.509821488616488e-05 - ArtUnc_77: -0.0001441671182925708 - ArtUnc_78: -0.00010278516747378758 - ArtUnc_79: 0.0006061054586888791 - ArtUnc_80: -6.34313564224788e-05 - ArtUnc_81: 7.291486148520376e-05 - ArtUnc_82: 3.946880946781465e-07 - ArtUnc_83: 0.0001346940923443161 - ArtUnc_84: -0.00010207049142693918 - ArtUnc_85: -0.00010050144195659215 - ArtUnc_86: 0.0001167991316420489 - ArtUnc_87: 7.445854981989877e-05 - ArtUnc_88: -0.00020777512486746868 - ArtUnc_89: -0.00011443435620054819 - ArtUnc_90: 3.887377084194982e-05 - ArtUnc_91: 2.3285955195096784e-05 - ArtUnc_92: 4.009384033282361e-06 - ArtUnc_93: -0.0002676195551706283 - ArtUnc_94: 8.669785835343736e-05 - ArtUnc_95: 8.024371620577143e-06 - ArtUnc_96: -2.1333954408291494e-05 + Model_1: 3.09169005e-01 + Model_2: 3.09169005e-01 + ModelRW_1: 2.92073042e-01 + ModelRW_2: 2.92073042e-01 + JES_1: 1.73555845e-01 + JES_2: 1.73555845e-01 + ArtUnc_1: -6.16464446e-08 + ArtUnc_2: 3.92248970e-06 + ArtUnc_3: 3.67653289e-06 + ArtUnc_4: 5.56487345e-07 + ArtUnc_5: 6.59743217e-07 + ArtUnc_6: 4.99234498e-07 + ArtUnc_7: -1.14751597e-07 + ArtUnc_8: -9.85268949e-05 + ArtUnc_9: -4.40796569e-07 + ArtUnc_10: 1.79234453e-04 + ArtUnc_11: 7.61665723e-05 + ArtUnc_12: -4.47289752e-05 + ArtUnc_13: -4.07977861e-05 + ArtUnc_14: 1.16532148e-05 + ArtUnc_15: 2.94686827e-05 + ArtUnc_16: -4.06008806e-05 + ArtUnc_17: 4.89861112e-05 + ArtUnc_18: -2.50008949e-05 + ArtUnc_19: 1.88920709e-05 + ArtUnc_20: -3.20894153e-05 + ArtUnc_21: -3.18332713e-05 + ArtUnc_22: 1.90257282e-05 + ArtUnc_23: 7.02640051e-06 + ArtUnc_24: -5.42737419e-07 + ArtUnc_25: 1.80497944e-03 + ArtUnc_26: -1.18015880e-03 + ArtUnc_27: -9.57849418e-03 + ArtUnc_28: 8.50168274e-04 + ArtUnc_29: 9.00650371e-04 + ArtUnc_30: -4.66581173e-03 + ArtUnc_31: 1.00434843e-04 + ArtUnc_32: 2.01312341e-03 + ArtUnc_33: 6.49763360e-04 + ArtUnc_34: 8.51405230e-04 + ArtUnc_35: 1.15105519e-03 + ArtUnc_36: -5.32719747e-05 + ArtUnc_37: -1.87634879e-04 + ArtUnc_38: 3.74601438e-04 + ArtUnc_39: 2.08436761e-04 + ArtUnc_40: 3.03505095e-05 + ArtUnc_41: 1.02662601e-01 + ArtUnc_42: -9.84088203e-02 + ArtUnc_43: -6.87136257e-02 + ArtUnc_44: -9.31737469e-03 + ArtUnc_45: -3.51818352e-02 + ArtUnc_46: -2.93124092e-02 + ArtUnc_47: 1.36438541e-02 + ArtUnc_48: -3.38265944e-02 + ArtUnc_49: 4.63354247e-03 + ArtUnc_50: 2.02584150e-02 + ArtUnc_51: -2.38407513e-03 + ArtUnc_52: 4.77169391e-03 + ArtUnc_53: 2.25236884e-02 + ArtUnc_54: -9.56745758e-03 + ArtUnc_55: -9.84360559e-03 + ArtUnc_56: 1.51706134e-03 + ArtUnc_57: 6.25888862e-02 + ArtUnc_58: -2.61218581e-01 + ArtUnc_59: 1.08080087e-01 + ArtUnc_60: 2.30490735e-02 + ArtUnc_61: -1.42877179e-01 + ArtUnc_62: 4.64743677e-02 + ArtUnc_63: 5.44548033e-02 + ArtUnc_64: 2.02642681e-02 + ArtUnc_65: -2.08377707e-03 + ArtUnc_66: 6.70518420e-02 + ArtUnc_67: -2.15103007e-02 + ArtUnc_68: -8.35583452e-02 + ArtUnc_69: -4.24829359e-02 + ArtUnc_70: 1.58549319e-03 + ArtUnc_71: -9.28636244e-03 + ArtUnc_72: 5.98445538e-03 + ArtUnc_73: 1.62735015e-03 + ArtUnc_74: -1.25189897e-03 + ArtUnc_75: -5.02581600e-05 + ArtUnc_76: -5.50982149e-05 + ArtUnc_77: -1.44167118e-04 + ArtUnc_78: -1.02785167e-04 + ArtUnc_79: 6.06105459e-04 + ArtUnc_80: -6.34313564e-05 + ArtUnc_81: 7.29148615e-05 + ArtUnc_82: 3.94688095e-07 + ArtUnc_83: 1.34694092e-04 + ArtUnc_84: -1.02070491e-04 + ArtUnc_85: -1.00501442e-04 + ArtUnc_86: 1.16799132e-04 + ArtUnc_87: 7.44585498e-05 + ArtUnc_88: -2.07775125e-04 + ArtUnc_89: -1.14434356e-04 + ArtUnc_90: 3.88737708e-05 + ArtUnc_91: 2.32859552e-05 + ArtUnc_92: 4.00938403e-06 + ArtUnc_93: -2.67619555e-04 + ArtUnc_94: 8.66978584e-05 + ArtUnc_95: 8.02437162e-06 + ArtUnc_96: -2.13339544e-05 - stat: 0 Uncorr: 0.00944 - RCES: 0.0085173442997216 - ElEn: 0.010324184082047357 - ElTh: 0.009516625015203655 + RCES: 8.51734430e-03 + ElEn: 1.03241841e-02 + ElTh: 9.51662502e-03 Lumi: 0.0236 - LArN: 0.005663999999999999 - StatMC: 0.034172799999999996 - RadErr: 0.023033599999999998 - Model_1: 0.00941187410030542 - Model_2: 0.00941187410030542 - ModelRW_1: 0.02309580452982749 - ModelRW_2: 0.02309580452982749 - JES_1: 0.04136038534056471 - JES_2: 0.04136038534056471 - ArtUnc_1: -2.8171268199507716e-08 - ArtUnc_2: 4.468404998851395e-07 - ArtUnc_3: 6.065669381628866e-07 - ArtUnc_4: 2.2074680006442324e-07 - ArtUnc_5: -2.7226297566834386e-08 - ArtUnc_6: 1.0502030776599082e-08 - ArtUnc_7: 6.247091281933477e-09 - ArtUnc_8: -1.3352960960347073e-05 - ArtUnc_9: -5.195880523141805e-08 - ArtUnc_10: 2.1743112544614577e-05 - ArtUnc_11: 1.4384283433486833e-05 - ArtUnc_12: -6.488154730178476e-06 - ArtUnc_13: -1.2077849621583853e-05 - ArtUnc_14: -9.85196993995112e-07 - ArtUnc_15: -5.508344773231818e-06 - ArtUnc_16: -8.576868897751414e-07 - ArtUnc_17: 1.703642990227518e-06 - ArtUnc_18: 2.2576529075168028e-07 - ArtUnc_19: 1.2942610814684423e-06 - ArtUnc_20: -5.002398679556529e-06 - ArtUnc_21: -3.8253376283432924e-06 - ArtUnc_22: 1.7604760363566307e-06 - ArtUnc_23: 6.148453534215448e-07 - ArtUnc_24: -8.64776660808692e-08 - ArtUnc_25: 0.00021897760157158004 - ArtUnc_26: -0.00010417696531048306 - ArtUnc_27: -0.0012450843536182764 - ArtUnc_28: 0.0001734897536596235 - ArtUnc_29: 0.00015219103957132238 - ArtUnc_30: -0.0007465051590978547 - ArtUnc_31: 2.0704047749812754e-05 - ArtUnc_32: 0.0004343764298588992 - ArtUnc_33: 0.0001240490801374033 - ArtUnc_34: 0.0002862893515864769 - ArtUnc_35: 0.000496359061452056 - ArtUnc_36: 0.00020282456223106611 - ArtUnc_37: 3.709434707071476e-05 - ArtUnc_38: -4.1061827783918016e-05 - ArtUnc_39: -6.799893174198059e-06 - ArtUnc_40: -1.495482406591319e-06 - ArtUnc_41: 0.0008081930040474229 - ArtUnc_42: 0.0021086839281373873 - ArtUnc_43: 0.00035821304071842616 - ArtUnc_44: -0.0005399654934635183 - ArtUnc_45: 0.001316493409075148 - ArtUnc_46: 0.0002010143782132027 - ArtUnc_47: 0.0006350875907164479 - ArtUnc_48: 0.0004759382595654312 - ArtUnc_49: -0.0006023760092153574 - ArtUnc_50: -0.0009495179427241272 - ArtUnc_51: 6.923725304565707e-05 - ArtUnc_52: -7.658225400022983e-05 - ArtUnc_53: -0.0009883270985561877 - ArtUnc_54: 0.00035012232252784885 - ArtUnc_55: 0.00023812194477975467 - ArtUnc_56: -4.123660112127637e-06 - ArtUnc_57: -0.02066127195479415 - ArtUnc_58: 0.030126179151983706 - ArtUnc_59: 0.046329830103050265 - ArtUnc_60: 0.01702587416560102 - ArtUnc_61: -0.008563593972697963 - ArtUnc_62: -0.012710627449860143 - ArtUnc_63: 0.004931348879743005 - ArtUnc_64: -0.019511390532134486 - ArtUnc_65: 0.01837312552201359 - ArtUnc_66: 0.006955319069816964 - ArtUnc_67: -0.001832830663475033 - ArtUnc_68: -0.00026029931124660403 - ArtUnc_69: 0.000548424930784027 - ArtUnc_70: -0.00014018403238890204 - ArtUnc_71: 0.0007404022609201388 - ArtUnc_72: -0.0002691231477139737 - ArtUnc_73: 0.07358766616309388 - ArtUnc_74: -0.0893527526264328 - ArtUnc_75: -0.012055679340105704 - ArtUnc_76: -0.0027011264050323686 - ArtUnc_77: 0.021387610532927363 - ArtUnc_78: 0.013447794794430668 - ArtUnc_79: -0.04306806542957896 - ArtUnc_80: 0.0002503528763656325 - ArtUnc_81: -0.0004905800793986709 - ArtUnc_82: -2.433948835170254e-06 - ArtUnc_83: 0.00034942425994394585 - ArtUnc_84: 0.0003703550434099853 - ArtUnc_85: -0.00018102905776399447 - ArtUnc_86: -0.00014389325348863863 - ArtUnc_87: -0.0003998668211764174 - ArtUnc_88: 0.00260042890848475 - ArtUnc_89: -0.0023811496247879713 - ArtUnc_90: -0.0006337108544291929 - ArtUnc_91: -0.000159910268279095 - ArtUnc_92: -3.0413386783324703e-05 - ArtUnc_93: 0.004616274227591099 - ArtUnc_94: 0.0008602099782936573 - ArtUnc_95: 0.0007644310356287082 - ArtUnc_96: -1.4366715556144155e-06 + LArN: 5.66400000e-03 + StatMC: 3.41728000e-02 + RadErr: 2.30336000e-02 + Model_1: 9.41187410e-03 + Model_2: 9.41187410e-03 + ModelRW_1: 2.30958045e-02 + ModelRW_2: 2.30958045e-02 + JES_1: 4.13603853e-02 + JES_2: 4.13603853e-02 + ArtUnc_1: -2.81712682e-08 + ArtUnc_2: 4.46840500e-07 + ArtUnc_3: 6.06566938e-07 + ArtUnc_4: 2.20746800e-07 + ArtUnc_5: -2.72262976e-08 + ArtUnc_6: 1.05020308e-08 + ArtUnc_7: 6.24709128e-09 + ArtUnc_8: -1.33529610e-05 + ArtUnc_9: -5.19588052e-08 + ArtUnc_10: 2.17431125e-05 + ArtUnc_11: 1.43842834e-05 + ArtUnc_12: -6.48815473e-06 + ArtUnc_13: -1.20778496e-05 + ArtUnc_14: -9.85196994e-07 + ArtUnc_15: -5.50834477e-06 + ArtUnc_16: -8.57686890e-07 + ArtUnc_17: 1.70364299e-06 + ArtUnc_18: 2.25765291e-07 + ArtUnc_19: 1.29426108e-06 + ArtUnc_20: -5.00239868e-06 + ArtUnc_21: -3.82533763e-06 + ArtUnc_22: 1.76047604e-06 + ArtUnc_23: 6.14845353e-07 + ArtUnc_24: -8.64776661e-08 + ArtUnc_25: 2.18977602e-04 + ArtUnc_26: -1.04176965e-04 + ArtUnc_27: -1.24508435e-03 + ArtUnc_28: 1.73489754e-04 + ArtUnc_29: 1.52191040e-04 + ArtUnc_30: -7.46505159e-04 + ArtUnc_31: 2.07040477e-05 + ArtUnc_32: 4.34376430e-04 + ArtUnc_33: 1.24049080e-04 + ArtUnc_34: 2.86289352e-04 + ArtUnc_35: 4.96359061e-04 + ArtUnc_36: 2.02824562e-04 + ArtUnc_37: 3.70943471e-05 + ArtUnc_38: -4.10618278e-05 + ArtUnc_39: -6.79989317e-06 + ArtUnc_40: -1.49548241e-06 + ArtUnc_41: 8.08193004e-04 + ArtUnc_42: 2.10868393e-03 + ArtUnc_43: 3.58213041e-04 + ArtUnc_44: -5.39965493e-04 + ArtUnc_45: 1.31649341e-03 + ArtUnc_46: 2.01014378e-04 + ArtUnc_47: 6.35087591e-04 + ArtUnc_48: 4.75938260e-04 + ArtUnc_49: -6.02376009e-04 + ArtUnc_50: -9.49517943e-04 + ArtUnc_51: 6.92372530e-05 + ArtUnc_52: -7.65822540e-05 + ArtUnc_53: -9.88327099e-04 + ArtUnc_54: 3.50122323e-04 + ArtUnc_55: 2.38121945e-04 + ArtUnc_56: -4.12366011e-06 + ArtUnc_57: -2.06612720e-02 + ArtUnc_58: 3.01261792e-02 + ArtUnc_59: 4.63298301e-02 + ArtUnc_60: 1.70258742e-02 + ArtUnc_61: -8.56359397e-03 + ArtUnc_62: -1.27106274e-02 + ArtUnc_63: 4.93134888e-03 + ArtUnc_64: -1.95113905e-02 + ArtUnc_65: 1.83731255e-02 + ArtUnc_66: 6.95531907e-03 + ArtUnc_67: -1.83283066e-03 + ArtUnc_68: -2.60299311e-04 + ArtUnc_69: 5.48424931e-04 + ArtUnc_70: -1.40184032e-04 + ArtUnc_71: 7.40402261e-04 + ArtUnc_72: -2.69123148e-04 + ArtUnc_73: 7.35876662e-02 + ArtUnc_74: -8.93527526e-02 + ArtUnc_75: -1.20556793e-02 + ArtUnc_76: -2.70112641e-03 + ArtUnc_77: 2.13876105e-02 + ArtUnc_78: 1.34477948e-02 + ArtUnc_79: -4.30680654e-02 + ArtUnc_80: 2.50352876e-04 + ArtUnc_81: -4.90580079e-04 + ArtUnc_82: -2.43394884e-06 + ArtUnc_83: 3.49424260e-04 + ArtUnc_84: 3.70355043e-04 + ArtUnc_85: -1.81029058e-04 + ArtUnc_86: -1.43893253e-04 + ArtUnc_87: -3.99866821e-04 + ArtUnc_88: 2.60042891e-03 + ArtUnc_89: -2.38114962e-03 + ArtUnc_90: -6.33710854e-04 + ArtUnc_91: -1.59910268e-04 + ArtUnc_92: -3.04133868e-05 + ArtUnc_93: 4.61627423e-03 + ArtUnc_94: 8.60209978e-04 + ArtUnc_95: 7.64431036e-04 + ArtUnc_96: -1.43667156e-06 - stat: 0 Uncorr: 0.00109 - RCES: 0.0018267421184994888 - ElEn: 0.00842421222311024 - ElTh: 0.0018493015296322016 - Lumi: 0.0027250000000000004 + RCES: 1.82674212e-03 + ElEn: 8.42421222e-03 + ElTh: 1.84930153e-03 + Lumi: 2.72500000e-03 LArN: 0.000654 StatMC: 0.013843 - RadErr: 0.0092759 - Model_1: 0.0072989683274418985 - Model_2: 0.0072989683274418985 - ModelRW_1: 0.016262748860509407 - ModelRW_2: 0.016262748860509407 - JES_1: 0.006465537850016811 - JES_2: 0.006465537850016811 - ArtUnc_1: 6.041525253143837e-10 - ArtUnc_2: -7.457087380483398e-10 - ArtUnc_3: -1.4082834307497503e-10 - ArtUnc_4: 5.259751980797566e-10 - ArtUnc_5: -6.923695139325593e-10 - ArtUnc_6: -3.3208895333728377e-10 - ArtUnc_7: -8.073137240863234e-12 - ArtUnc_8: 1.2230927873466213e-07 - ArtUnc_9: 5.113647670230508e-10 - ArtUnc_10: -2.244693506634476e-07 - ArtUnc_11: -1.432606521286891e-07 - ArtUnc_12: 1.1530260854438604e-08 - ArtUnc_13: 1.117473288031136e-07 - ArtUnc_14: 2.455820714133376e-08 - ArtUnc_15: 8.883175739142325e-10 - ArtUnc_16: 3.64674416477968e-08 - ArtUnc_17: -8.23673209728863e-08 - ArtUnc_18: 5.197226792066097e-08 - ArtUnc_19: -3.841247467568004e-08 - ArtUnc_20: 6.425356531113657e-08 - ArtUnc_21: 6.155293697544512e-08 - ArtUnc_22: -2.9516761746782553e-08 - ArtUnc_23: -5.562900001094921e-09 - ArtUnc_24: 7.151556918564961e-10 - ArtUnc_25: -1.6089317487759996e-06 - ArtUnc_26: 1.8646694530904163e-06 - ArtUnc_27: 1.1274858886782353e-05 - ArtUnc_28: -6.938518411540835e-07 - ArtUnc_29: -4.555944122477703e-07 - ArtUnc_30: 1.9617264051350774e-06 - ArtUnc_31: 2.1287085831880707e-08 - ArtUnc_32: 4.881844799069134e-07 - ArtUnc_33: 2.179347849928199e-08 - ArtUnc_34: 7.364259583162062e-07 - ArtUnc_35: 1.4923928499667925e-06 - ArtUnc_36: 7.430948147728629e-07 - ArtUnc_37: 1.8178644102041127e-07 - ArtUnc_38: -2.3100931026616919e-07 - ArtUnc_39: -2.047416229297779e-07 - ArtUnc_40: -7.4238034992303e-08 - ArtUnc_41: 0.0005268887524987921 - ArtUnc_42: -0.0005714659827220986 - ArtUnc_43: -0.00027022218346638225 - ArtUnc_44: 1.6398072189473574e-05 - ArtUnc_45: -0.00017043659189344853 - ArtUnc_46: -4.997859356279252e-05 - ArtUnc_47: -3.9402537799913584e-05 - ArtUnc_48: -3.0242333060468175e-05 - ArtUnc_49: 2.5495449976636246e-05 - ArtUnc_50: 6.691827822136524e-06 - ArtUnc_51: 1.4789803073696317e-05 - ArtUnc_52: -2.910302902721402e-05 - ArtUnc_53: -4.8331660677013445e-05 - ArtUnc_54: 2.46139002810582e-05 - ArtUnc_55: 5.0195187470255184e-05 - ArtUnc_56: -7.534173203397271e-06 - ArtUnc_57: -0.0009724406566382886 - ArtUnc_58: 0.002580581925581996 - ArtUnc_59: 0.0003722812543556141 - ArtUnc_60: 0.00024486307773779494 - ArtUnc_61: 0.0007502908776919723 - ArtUnc_62: -0.000603295909081876 - ArtUnc_63: -0.00021837644109062352 - ArtUnc_64: -0.0006049467434411995 - ArtUnc_65: 0.0004698406724156381 - ArtUnc_66: -0.00016047606982258857 - ArtUnc_67: 5.597628896170966e-05 - ArtUnc_68: 0.0002182389788351802 - ArtUnc_69: 1.1008667292203844e-05 - ArtUnc_70: 9.332428840909884e-05 - ArtUnc_71: 1.7410499463531618e-06 - ArtUnc_72: 1.5512309295234166e-05 - ArtUnc_73: 0.001171402712029326 - ArtUnc_74: -0.0002786311578004168 - ArtUnc_75: 0.00028700015729913036 - ArtUnc_76: 0.007224765081852715 - ArtUnc_77: -0.0013220955446067943 - ArtUnc_78: 0.01613476439515324 - ArtUnc_79: 0.0038130671178633353 - ArtUnc_80: -0.005064477730472428 - ArtUnc_81: 0.003436231220562271 - ArtUnc_82: 2.2412802282053842e-05 - ArtUnc_83: 0.022201540076900436 - ArtUnc_84: -0.0044566290856507575 - ArtUnc_85: -0.01742863953471023 - ArtUnc_86: 0.021496483443812036 - ArtUnc_87: 0.013607990667775918 - ArtUnc_88: -0.011385699670263238 - ArtUnc_89: -0.007780802192535263 - ArtUnc_90: 0.001898829632687188 - ArtUnc_91: 0.003959695772808286 - ArtUnc_92: 0.0005860095065112893 - ArtUnc_93: -0.008045285761312283 - ArtUnc_94: 0.0034782788311635373 - ArtUnc_95: 0.00022653556448828135 - ArtUnc_96: -0.004254928877905018 + RadErr: 9.27590000e-03 + Model_1: 7.29896833e-03 + Model_2: 7.29896833e-03 + ModelRW_1: 1.62627489e-02 + ModelRW_2: 1.62627489e-02 + JES_1: 6.46553785e-03 + JES_2: 6.46553785e-03 + ArtUnc_1: 6.04152525e-10 + ArtUnc_2: -7.45708738e-10 + ArtUnc_3: -1.40828343e-10 + ArtUnc_4: 5.25975198e-10 + ArtUnc_5: -6.92369514e-10 + ArtUnc_6: -3.32088953e-10 + ArtUnc_7: -8.07313724e-12 + ArtUnc_8: 1.22309279e-07 + ArtUnc_9: 5.11364767e-10 + ArtUnc_10: -2.24469351e-07 + ArtUnc_11: -1.43260652e-07 + ArtUnc_12: 1.15302609e-08 + ArtUnc_13: 1.11747329e-07 + ArtUnc_14: 2.45582071e-08 + ArtUnc_15: 8.88317574e-10 + ArtUnc_16: 3.64674416e-08 + ArtUnc_17: -8.23673210e-08 + ArtUnc_18: 5.19722679e-08 + ArtUnc_19: -3.84124747e-08 + ArtUnc_20: 6.42535653e-08 + ArtUnc_21: 6.15529370e-08 + ArtUnc_22: -2.95167617e-08 + ArtUnc_23: -5.56290000e-09 + ArtUnc_24: 7.15155692e-10 + ArtUnc_25: -1.60893175e-06 + ArtUnc_26: 1.86466945e-06 + ArtUnc_27: 1.12748589e-05 + ArtUnc_28: -6.93851841e-07 + ArtUnc_29: -4.55594412e-07 + ArtUnc_30: 1.96172641e-06 + ArtUnc_31: 2.12870858e-08 + ArtUnc_32: 4.88184480e-07 + ArtUnc_33: 2.17934785e-08 + ArtUnc_34: 7.36425958e-07 + ArtUnc_35: 1.49239285e-06 + ArtUnc_36: 7.43094815e-07 + ArtUnc_37: 1.81786441e-07 + ArtUnc_38: -2.31009310e-07 + ArtUnc_39: -2.04741623e-07 + ArtUnc_40: -7.42380350e-08 + ArtUnc_41: 5.26888752e-04 + ArtUnc_42: -5.71465983e-04 + ArtUnc_43: -2.70222183e-04 + ArtUnc_44: 1.63980722e-05 + ArtUnc_45: -1.70436592e-04 + ArtUnc_46: -4.99785936e-05 + ArtUnc_47: -3.94025378e-05 + ArtUnc_48: -3.02423331e-05 + ArtUnc_49: 2.54954500e-05 + ArtUnc_50: 6.69182782e-06 + ArtUnc_51: 1.47898031e-05 + ArtUnc_52: -2.91030290e-05 + ArtUnc_53: -4.83316607e-05 + ArtUnc_54: 2.46139003e-05 + ArtUnc_55: 5.01951875e-05 + ArtUnc_56: -7.53417320e-06 + ArtUnc_57: -9.72440657e-04 + ArtUnc_58: 2.58058193e-03 + ArtUnc_59: 3.72281254e-04 + ArtUnc_60: 2.44863078e-04 + ArtUnc_61: 7.50290878e-04 + ArtUnc_62: -6.03295909e-04 + ArtUnc_63: -2.18376441e-04 + ArtUnc_64: -6.04946743e-04 + ArtUnc_65: 4.69840672e-04 + ArtUnc_66: -1.60476070e-04 + ArtUnc_67: 5.59762890e-05 + ArtUnc_68: 2.18238979e-04 + ArtUnc_69: 1.10086673e-05 + ArtUnc_70: 9.33242884e-05 + ArtUnc_71: 1.74104995e-06 + ArtUnc_72: 1.55123093e-05 + ArtUnc_73: 1.17140271e-03 + ArtUnc_74: -2.78631158e-04 + ArtUnc_75: 2.87000157e-04 + ArtUnc_76: 7.22476508e-03 + ArtUnc_77: -1.32209554e-03 + ArtUnc_78: 1.61347644e-02 + ArtUnc_79: 3.81306712e-03 + ArtUnc_80: -5.06447773e-03 + ArtUnc_81: 3.43623122e-03 + ArtUnc_82: 2.24128023e-05 + ArtUnc_83: 2.22015401e-02 + ArtUnc_84: -4.45662909e-03 + ArtUnc_85: -1.74286395e-02 + ArtUnc_86: 2.14964834e-02 + ArtUnc_87: 1.36079907e-02 + ArtUnc_88: -1.13856997e-02 + ArtUnc_89: -7.78080219e-03 + ArtUnc_90: 1.89882963e-03 + ArtUnc_91: 3.95969577e-03 + ArtUnc_92: 5.86009507e-04 + ArtUnc_93: -8.04528576e-03 + ArtUnc_94: 3.47827883e-03 + ArtUnc_95: 2.26535564e-04 + ArtUnc_96: -4.25492888e-03 - stat: 0 - Uncorr: 0.7040000000000001 - RCES: 3.8529965664142507 - ElEn: 0.8175725709684738 - ElTh: 0.22226228829920744 + Uncorr: 7.04000000e-01 + RCES: 3.85299657e+00 + ElEn: 8.17572571e-01 + ElTh: 2.22262288e-01 Lumi: 1.76 - LArN: 0.42240000000000005 - StatMC: 1.3868800000000001 - RadErr: 0.7603200000000001 - Model_1: 1.9613445053839982 - Model_2: 1.9613445053839982 - ModelRW_1: 1.7622232358018666 - ModelRW_2: 1.7622232358018666 - JES_1: 0.9452068488960499 - JES_2: 0.9452068488960499 - ArtUnc_1: 0.862390513360958 - ArtUnc_2: -0.058522334197274935 - ArtUnc_3: -0.015617481349614557 - ArtUnc_4: -0.02865956582028775 - ArtUnc_5: 0.024560404389031128 - ArtUnc_6: -0.013697542293582938 - ArtUnc_7: 0.0312667358010939 - ArtUnc_8: -8.052766469309553 - ArtUnc_9: -0.003869570549781359 - ArtUnc_10: -5.440340482204765 - ArtUnc_11: 0.5063656603501565 - ArtUnc_12: 0.13134908148404048 - ArtUnc_13: 1.5029665042315448 - ArtUnc_14: -0.02868999219755132 - ArtUnc_15: 0.1800281550271725 - ArtUnc_16: 0.01425040702897497 - ArtUnc_17: 0.04851242069982236 - ArtUnc_18: -0.2994043649614981 - ArtUnc_19: 0.07767460929125639 - ArtUnc_20: 0.2717761425707195 - ArtUnc_21: 0.047177105354672885 - ArtUnc_22: 0.03848277959299294 - ArtUnc_23: 0.014740246882677685 - ArtUnc_24: 0.0029896501309716835 - ArtUnc_25: -0.04036369541606761 - ArtUnc_26: -0.09302467152124266 - ArtUnc_27: -0.014597160954110492 - ArtUnc_28: -0.032271023414061836 - ArtUnc_29: 0.011743211789942889 - ArtUnc_30: -0.02075840896967938 - ArtUnc_31: 0.011241230788636522 - ArtUnc_32: 0.007682375996866057 - ArtUnc_33: 0.006482760235225154 - ArtUnc_34: 0.008580794784233063 - ArtUnc_35: 0.004056435036263157 - ArtUnc_36: 0.0008921238755738741 - ArtUnc_37: -0.0021935306004609617 - ArtUnc_38: 0.0009761650792590337 - ArtUnc_39: -0.0005096127087808053 - ArtUnc_40: -0.0005619835756197868 - ArtUnc_41: -0.0031631785001945928 - ArtUnc_42: -0.002833615200537926 - ArtUnc_43: 0.000737177321297061 - ArtUnc_44: 0.001308887822230703 - ArtUnc_45: -0.0012901354777218469 - ArtUnc_46: 0.0007960634160440661 - ArtUnc_47: -0.0016605377633478362 - ArtUnc_48: 0.00041322085193029644 - ArtUnc_49: 0.0007064806487292607 - ArtUnc_50: 0.0008218480678580217 - ArtUnc_51: -0.00013628995667965135 - ArtUnc_52: 7.824198600373727e-05 - ArtUnc_53: 0.0007009699714016272 - ArtUnc_54: -0.00017757524658647804 - ArtUnc_55: 9.061136987685657e-06 - ArtUnc_56: -0.00013438631943932383 - ArtUnc_57: 9.964845519297726e-06 - ArtUnc_58: -1.1228773788767014e-05 - ArtUnc_59: -1.3513642131206547e-05 - ArtUnc_60: -4.997737295236594e-06 - ArtUnc_61: 1.0751982835757547e-05 - ArtUnc_62: 6.1362719694684646e-06 - ArtUnc_63: -7.024195304640522e-06 - ArtUnc_64: 1.104379494273848e-05 - ArtUnc_65: -6.857977199225964e-06 - ArtUnc_66: 1.578230170233843e-06 - ArtUnc_67: 1.8570889589523063e-07 - ArtUnc_68: 7.241483498069554e-06 - ArtUnc_69: 9.093223014310423e-06 - ArtUnc_70: -2.2514322267953912e-07 - ArtUnc_71: 4.916213171292535e-07 - ArtUnc_72: -5.360034925647657e-07 - ArtUnc_73: 1.5427469524348488e-06 - ArtUnc_74: -2.3515148923936133e-06 - ArtUnc_75: -4.317535944850396e-07 - ArtUnc_76: 1.1272934960468206e-07 - ArtUnc_77: 7.517926745290272e-07 - ArtUnc_78: 5.095707024872422e-07 - ArtUnc_79: -7.8664914257136e-07 - ArtUnc_80: 9.434889384442472e-08 - ArtUnc_81: -1.1980382405502867e-08 - ArtUnc_82: -4.258541093895767e-10 - ArtUnc_83: -4.4121592340278306e-08 - ArtUnc_84: -2.5736692776212392e-08 - ArtUnc_85: 4.2710197772578146e-08 - ArtUnc_86: 8.348804058710194e-09 - ArtUnc_87: 1.766129369683349e-08 - ArtUnc_88: 7.80158295685783e-09 - ArtUnc_89: -5.735037683417001e-10 - ArtUnc_90: -9.147156941503087e-08 - ArtUnc_91: 2.083758651128185e-08 - ArtUnc_92: 4.8526244608792894e-09 - ArtUnc_93: -1.3073151315177993e-07 - ArtUnc_94: 8.733441907194496e-08 - ArtUnc_95: 2.3566459633314595e-08 - ArtUnc_96: -8.364543817190556e-09 + LArN: 4.22400000e-01 + StatMC: 1.38688000e+00 + RadErr: 7.60320000e-01 + Model_1: 1.96134451e+00 + Model_2: 1.96134451e+00 + ModelRW_1: 1.76222324e+00 + ModelRW_2: 1.76222324e+00 + JES_1: 9.45206849e-01 + JES_2: 9.45206849e-01 + ArtUnc_1: 8.62390513e-01 + ArtUnc_2: -5.85223342e-02 + ArtUnc_3: -1.56174813e-02 + ArtUnc_4: -2.86595658e-02 + ArtUnc_5: 2.45604044e-02 + ArtUnc_6: -1.36975423e-02 + ArtUnc_7: 3.12667358e-02 + ArtUnc_8: -8.05276647e+00 + ArtUnc_9: -3.86957055e-03 + ArtUnc_10: -5.44034048e+00 + ArtUnc_11: 5.06365660e-01 + ArtUnc_12: 1.31349081e-01 + ArtUnc_13: 1.50296650e+00 + ArtUnc_14: -2.86899922e-02 + ArtUnc_15: 1.80028155e-01 + ArtUnc_16: 1.42504070e-02 + ArtUnc_17: 4.85124207e-02 + ArtUnc_18: -2.99404365e-01 + ArtUnc_19: 7.76746093e-02 + ArtUnc_20: 2.71776143e-01 + ArtUnc_21: 4.71771054e-02 + ArtUnc_22: 3.84827796e-02 + ArtUnc_23: 1.47402469e-02 + ArtUnc_24: 2.98965013e-03 + ArtUnc_25: -4.03636954e-02 + ArtUnc_26: -9.30246715e-02 + ArtUnc_27: -1.45971610e-02 + ArtUnc_28: -3.22710234e-02 + ArtUnc_29: 1.17432118e-02 + ArtUnc_30: -2.07584090e-02 + ArtUnc_31: 1.12412308e-02 + ArtUnc_32: 7.68237600e-03 + ArtUnc_33: 6.48276024e-03 + ArtUnc_34: 8.58079478e-03 + ArtUnc_35: 4.05643504e-03 + ArtUnc_36: 8.92123876e-04 + ArtUnc_37: -2.19353060e-03 + ArtUnc_38: 9.76165079e-04 + ArtUnc_39: -5.09612709e-04 + ArtUnc_40: -5.61983576e-04 + ArtUnc_41: -3.16317850e-03 + ArtUnc_42: -2.83361520e-03 + ArtUnc_43: 7.37177321e-04 + ArtUnc_44: 1.30888782e-03 + ArtUnc_45: -1.29013548e-03 + ArtUnc_46: 7.96063416e-04 + ArtUnc_47: -1.66053776e-03 + ArtUnc_48: 4.13220852e-04 + ArtUnc_49: 7.06480649e-04 + ArtUnc_50: 8.21848068e-04 + ArtUnc_51: -1.36289957e-04 + ArtUnc_52: 7.82419860e-05 + ArtUnc_53: 7.00969971e-04 + ArtUnc_54: -1.77575247e-04 + ArtUnc_55: 9.06113699e-06 + ArtUnc_56: -1.34386319e-04 + ArtUnc_57: 9.96484552e-06 + ArtUnc_58: -1.12287738e-05 + ArtUnc_59: -1.35136421e-05 + ArtUnc_60: -4.99773730e-06 + ArtUnc_61: 1.07519828e-05 + ArtUnc_62: 6.13627197e-06 + ArtUnc_63: -7.02419530e-06 + ArtUnc_64: 1.10437949e-05 + ArtUnc_65: -6.85797720e-06 + ArtUnc_66: 1.57823017e-06 + ArtUnc_67: 1.85708896e-07 + ArtUnc_68: 7.24148350e-06 + ArtUnc_69: 9.09322301e-06 + ArtUnc_70: -2.25143223e-07 + ArtUnc_71: 4.91621317e-07 + ArtUnc_72: -5.36003493e-07 + ArtUnc_73: 1.54274695e-06 + ArtUnc_74: -2.35151489e-06 + ArtUnc_75: -4.31753594e-07 + ArtUnc_76: 1.12729350e-07 + ArtUnc_77: 7.51792675e-07 + ArtUnc_78: 5.09570702e-07 + ArtUnc_79: -7.86649143e-07 + ArtUnc_80: 9.43488938e-08 + ArtUnc_81: -1.19803824e-08 + ArtUnc_82: -4.25854109e-10 + ArtUnc_83: -4.41215923e-08 + ArtUnc_84: -2.57366928e-08 + ArtUnc_85: 4.27101978e-08 + ArtUnc_86: 8.34880406e-09 + ArtUnc_87: 1.76612937e-08 + ArtUnc_88: 7.80158296e-09 + ArtUnc_89: -5.73503768e-10 + ArtUnc_90: -9.14715694e-08 + ArtUnc_91: 2.08375865e-08 + ArtUnc_92: 4.85262446e-09 + ArtUnc_93: -1.30731513e-07 + ArtUnc_94: 8.73344191e-08 + ArtUnc_95: 2.35664596e-08 + ArtUnc_96: -8.36454382e-09 - stat: 0 Uncorr: 0.559 - RCES: 1.6135334318429848 - ElEn: 0.47349477871989254 - ElTh: 0.18325909383984199 + RCES: 1.61353343e+00 + ElEn: 4.73494779e-01 + ElTh: 1.83259094e-01 Lumi: 1.3975 LArN: 0.3354 StatMC: 0.57577 RadErr: 0.2236 - Model_1: 2.1858579794785387 - Model_2: 2.1858579794785387 - ModelRW_1: 0.46642177500627036 - ModelRW_2: 0.46642177500627036 - JES_1: 0.7658402006619919 - JES_2: 0.7658402006619919 - ArtUnc_1: 0.1320383969101628 - ArtUnc_2: -0.0018981155812127922 - ArtUnc_3: 0.030449734167063938 - ArtUnc_4: 0.016599559452785167 - ArtUnc_5: -0.007039446793516058 - ArtUnc_6: -0.0016744990704085601 - ArtUnc_7: 0.00015496188070738973 - ArtUnc_8: 0.04741118864007513 - ArtUnc_9: 0.0007186835312962168 - ArtUnc_10: -0.4305264015518117 - ArtUnc_11: -0.3402840139397071 - ArtUnc_12: 0.3989521206085828 - ArtUnc_13: 0.09101270589019123 - ArtUnc_14: -0.0454662744015132 - ArtUnc_15: 0.009692340009628061 - ArtUnc_16: 0.03319493653463854 - ArtUnc_17: 0.05060998404362843 - ArtUnc_18: -0.06042621545255102 - ArtUnc_19: 0.04212580899411449 - ArtUnc_20: 0.015698438313396287 - ArtUnc_21: -0.027948389494300365 - ArtUnc_22: 0.03784757413331094 - ArtUnc_23: 0.021509993525674447 - ArtUnc_24: -0.0004039371438018868 - ArtUnc_25: 3.2719289748556997 - ArtUnc_26: 1.3315714679588329 - ArtUnc_27: 0.3873789388962019 - ArtUnc_28: 0.6847540037957462 - ArtUnc_29: 0.020893158405177158 - ArtUnc_30: 0.24155149523280334 - ArtUnc_31: -0.05080766078860241 - ArtUnc_32: -0.08409477654661683 - ArtUnc_33: -0.056203225073985175 - ArtUnc_34: -0.08167182024114937 - ArtUnc_35: -0.08773620671064794 - ArtUnc_36: -0.037061892254628304 - ArtUnc_37: 0.0024416941282667287 - ArtUnc_38: 0.005311259237549614 - ArtUnc_39: 0.004140830387009761 - ArtUnc_40: 0.0023273358670159597 - ArtUnc_41: 0.016608369052248613 - ArtUnc_42: 0.017377037665656427 - ArtUnc_43: -0.007473878582718413 - ArtUnc_44: -0.01136699783501941 - ArtUnc_45: 0.012081466399688854 - ArtUnc_46: -0.006010521471543492 - ArtUnc_47: 0.014787560023833185 - ArtUnc_48: -0.004711128239898752 - ArtUnc_49: -0.007430677269866188 - ArtUnc_50: -0.006807979909466713 - ArtUnc_51: 0.0006050043502575601 - ArtUnc_52: -0.0001350414213422827 - ArtUnc_53: -0.0072927373415190835 - ArtUnc_54: 0.0021796124008489058 - ArtUnc_55: 0.0010621839197683008 - ArtUnc_56: 0.00038932020161372015 - ArtUnc_57: 2.8675619155647794e-06 - ArtUnc_58: -0.00011801018194304885 - ArtUnc_59: 0.00015106725253573715 - ArtUnc_60: 5.010764059745741e-05 - ArtUnc_61: -9.866999716198439e-06 - ArtUnc_62: -5.093667125678123e-05 - ArtUnc_63: 1.3994054984194227e-06 - ArtUnc_64: -7.893786420285958e-05 - ArtUnc_65: 6.916046599341139e-05 - ArtUnc_66: 4.153359855595592e-06 - ArtUnc_67: -3.7740188390941575e-06 - ArtUnc_68: -4.220146094322869e-06 - ArtUnc_69: -5.492019682323398e-06 - ArtUnc_70: -4.037667501783616e-06 - ArtUnc_71: 6.169350904763874e-06 - ArtUnc_72: -1.9239639399510934e-06 - ArtUnc_73: -2.479148957476188e-06 - ArtUnc_74: 1.4911766742091386e-05 - ArtUnc_75: 2.4181351515257655e-06 - ArtUnc_76: -4.5954891167824075e-07 - ArtUnc_77: -4.5068273257981715e-06 - ArtUnc_78: -3.171597684393666e-06 - ArtUnc_79: 7.267656447246022e-06 - ArtUnc_80: 8.86925522824323e-07 - ArtUnc_81: -3.4742103213120816e-07 - ArtUnc_82: -3.2867253404634625e-09 - ArtUnc_83: 4.799206644697428e-07 - ArtUnc_84: 4.956056692359477e-07 - ArtUnc_85: -3.0571751073164814e-07 - ArtUnc_86: -6.513106602556879e-08 - ArtUnc_87: -1.285266079731519e-07 - ArtUnc_88: -3.941215089842248e-07 - ArtUnc_89: -4.054728722557868e-07 - ArtUnc_90: -1.3450800291205652e-08 - ArtUnc_91: -7.577235197069439e-08 - ArtUnc_92: -1.9418480748555077e-08 - ArtUnc_93: 3.038985099760247e-07 - ArtUnc_94: -2.603149510967458e-07 - ArtUnc_95: 2.5716364133558877e-07 - ArtUnc_96: -1.7915995558900218e-09 + Model_1: 2.18585798e+00 + Model_2: 2.18585798e+00 + ModelRW_1: 4.66421775e-01 + ModelRW_2: 4.66421775e-01 + JES_1: 7.65840201e-01 + JES_2: 7.65840201e-01 + ArtUnc_1: 1.32038397e-01 + ArtUnc_2: -1.89811558e-03 + ArtUnc_3: 3.04497342e-02 + ArtUnc_4: 1.65995595e-02 + ArtUnc_5: -7.03944679e-03 + ArtUnc_6: -1.67449907e-03 + ArtUnc_7: 1.54961881e-04 + ArtUnc_8: 4.74111886e-02 + ArtUnc_9: 7.18683531e-04 + ArtUnc_10: -4.30526402e-01 + ArtUnc_11: -3.40284014e-01 + ArtUnc_12: 3.98952121e-01 + ArtUnc_13: 9.10127059e-02 + ArtUnc_14: -4.54662744e-02 + ArtUnc_15: 9.69234001e-03 + ArtUnc_16: 3.31949365e-02 + ArtUnc_17: 5.06099840e-02 + ArtUnc_18: -6.04262155e-02 + ArtUnc_19: 4.21258090e-02 + ArtUnc_20: 1.56984383e-02 + ArtUnc_21: -2.79483895e-02 + ArtUnc_22: 3.78475741e-02 + ArtUnc_23: 2.15099935e-02 + ArtUnc_24: -4.03937144e-04 + ArtUnc_25: 3.27192897e+00 + ArtUnc_26: 1.33157147e+00 + ArtUnc_27: 3.87378939e-01 + ArtUnc_28: 6.84754004e-01 + ArtUnc_29: 2.08931584e-02 + ArtUnc_30: 2.41551495e-01 + ArtUnc_31: -5.08076608e-02 + ArtUnc_32: -8.40947765e-02 + ArtUnc_33: -5.62032251e-02 + ArtUnc_34: -8.16718202e-02 + ArtUnc_35: -8.77362067e-02 + ArtUnc_36: -3.70618923e-02 + ArtUnc_37: 2.44169413e-03 + ArtUnc_38: 5.31125924e-03 + ArtUnc_39: 4.14083039e-03 + ArtUnc_40: 2.32733587e-03 + ArtUnc_41: 1.66083691e-02 + ArtUnc_42: 1.73770377e-02 + ArtUnc_43: -7.47387858e-03 + ArtUnc_44: -1.13669978e-02 + ArtUnc_45: 1.20814664e-02 + ArtUnc_46: -6.01052147e-03 + ArtUnc_47: 1.47875600e-02 + ArtUnc_48: -4.71112824e-03 + ArtUnc_49: -7.43067727e-03 + ArtUnc_50: -6.80797991e-03 + ArtUnc_51: 6.05004350e-04 + ArtUnc_52: -1.35041421e-04 + ArtUnc_53: -7.29273734e-03 + ArtUnc_54: 2.17961240e-03 + ArtUnc_55: 1.06218392e-03 + ArtUnc_56: 3.89320202e-04 + ArtUnc_57: 2.86756192e-06 + ArtUnc_58: -1.18010182e-04 + ArtUnc_59: 1.51067253e-04 + ArtUnc_60: 5.01076406e-05 + ArtUnc_61: -9.86699972e-06 + ArtUnc_62: -5.09366713e-05 + ArtUnc_63: 1.39940550e-06 + ArtUnc_64: -7.89378642e-05 + ArtUnc_65: 6.91604660e-05 + ArtUnc_66: 4.15335986e-06 + ArtUnc_67: -3.77401884e-06 + ArtUnc_68: -4.22014609e-06 + ArtUnc_69: -5.49201968e-06 + ArtUnc_70: -4.03766750e-06 + ArtUnc_71: 6.16935090e-06 + ArtUnc_72: -1.92396394e-06 + ArtUnc_73: -2.47914896e-06 + ArtUnc_74: 1.49117667e-05 + ArtUnc_75: 2.41813515e-06 + ArtUnc_76: -4.59548912e-07 + ArtUnc_77: -4.50682733e-06 + ArtUnc_78: -3.17159768e-06 + ArtUnc_79: 7.26765645e-06 + ArtUnc_80: 8.86925523e-07 + ArtUnc_81: -3.47421032e-07 + ArtUnc_82: -3.28672534e-09 + ArtUnc_83: 4.79920664e-07 + ArtUnc_84: 4.95605669e-07 + ArtUnc_85: -3.05717511e-07 + ArtUnc_86: -6.51310660e-08 + ArtUnc_87: -1.28526608e-07 + ArtUnc_88: -3.94121509e-07 + ArtUnc_89: -4.05472872e-07 + ArtUnc_90: -1.34508003e-08 + ArtUnc_91: -7.57723520e-08 + ArtUnc_92: -1.94184807e-08 + ArtUnc_93: 3.03898510e-07 + ArtUnc_94: -2.60314951e-07 + ArtUnc_95: 2.57163641e-07 + ArtUnc_96: -1.79159956e-09 - stat: 0 - Uncorr: 0.18100000000000002 - RCES: 0.316972293426413 - ElEn: 0.12738015651976567 - ElTh: 0.05492984707788654 + Uncorr: 1.81000000e-01 + RCES: 3.16972293e-01 + ElEn: 1.27380157e-01 + ElTh: 5.49298471e-02 Lumi: 0.4525 - LArN: 0.10860000000000002 + LArN: 1.08600000e-01 StatMC: 0.21177 - RadErr: 0.08506999999999999 - Model_1: 0.5439418914277517 - Model_2: 0.5439418914277517 - ModelRW_1: 0.28924909991216907 - ModelRW_2: 0.28924909991216907 - JES_1: 0.4451215613037634 - JES_2: 0.4451215613037634 - ArtUnc_1: 0.009828482441487745 - ArtUnc_2: -0.00460871700064456 - ArtUnc_3: -0.002367722967671026 - ArtUnc_4: -0.00029926032901598235 - ArtUnc_5: -0.00012690827336534974 - ArtUnc_6: -6.2210660451003455e-06 - ArtUnc_7: -8.451570832595379e-05 - ArtUnc_8: 0.02751057521746776 - ArtUnc_9: 1.5723655127338393e-05 - ArtUnc_10: 0.017825203774346893 - ArtUnc_11: -0.006729346020044204 - ArtUnc_12: 0.015601139436504471 - ArtUnc_13: -0.007047244784114975 - ArtUnc_14: -0.0065521735181942676 - ArtUnc_15: -0.005325434628903351 - ArtUnc_16: 0.0064917673106256015 - ArtUnc_17: -0.0034180238988290863 - ArtUnc_18: 0.0016271913888590524 - ArtUnc_19: -0.0010176831113118696 - ArtUnc_20: 0.0012412268220376775 - ArtUnc_21: 0.0013910730652472933 - ArtUnc_22: -0.0009017674683374423 - ArtUnc_23: 4.585804574036141e-05 - ArtUnc_24: -0.0001413221668135053 - ArtUnc_25: 0.048844340697331595 - ArtUnc_26: 0.04181590905252278 - ArtUnc_27: 0.32589663868765795 - ArtUnc_28: -0.046280711933589666 - ArtUnc_29: -0.030819773195066773 - ArtUnc_30: 0.14587854716562404 - ArtUnc_31: -0.0016396219494746182 - ArtUnc_32: -0.0678545120748393 - ArtUnc_33: -0.022661813340476022 - ArtUnc_34: -0.04182033033426591 - ArtUnc_35: -0.06905773771897107 - ArtUnc_36: -0.026864389685190497 - ArtUnc_37: -0.004292649218077433 - ArtUnc_38: 0.0050802906960727345 - ArtUnc_39: 0.0008362842858768569 - ArtUnc_40: 0.0003095012144619919 - ArtUnc_41: -0.7052015856251063 - ArtUnc_42: -0.6327097492563641 - ArtUnc_43: 0.12172801961898926 - ArtUnc_44: 0.22099531757298294 - ArtUnc_45: -0.23647012932139355 - ArtUnc_46: 0.08099032950666608 - ArtUnc_47: -0.20664841683345517 - ArtUnc_48: 0.038265988932915405 - ArtUnc_49: 0.09491404193287561 - ArtUnc_50: 0.09824741575171583 - ArtUnc_51: -0.004617328215157453 - ArtUnc_52: 0.0017742998422925309 - ArtUnc_53: 0.09017523379420407 - ArtUnc_54: -0.028143182158681345 - ArtUnc_55: -0.011196793347803947 - ArtUnc_56: -0.0034442880899961553 - ArtUnc_57: 0.0010036416826926242 - ArtUnc_58: -0.0028231731389436556 - ArtUnc_59: 0.0012046531993427795 - ArtUnc_60: 0.0003414476538073182 - ArtUnc_61: 2.537222981374834e-05 - ArtUnc_62: -0.00032734669173514557 - ArtUnc_63: -0.00028632491468644916 - ArtUnc_64: -0.0006345923426677774 - ArtUnc_65: 0.0005386105751243396 - ArtUnc_66: -0.0011505629179389587 - ArtUnc_67: 0.0004560945531371202 - ArtUnc_68: 0.003014846949041353 - ArtUnc_69: 0.0020738004664223268 - ArtUnc_70: -0.00037625735442800627 - ArtUnc_71: 0.0004925221551271979 - ArtUnc_72: -0.00026471775867246614 - ArtUnc_73: 0.0002693477913324866 - ArtUnc_74: -0.00026473689865880184 - ArtUnc_75: -3.595203059976877e-05 - ArtUnc_76: 1.2460882397148897e-06 - ArtUnc_77: 4.642367619193105e-05 - ArtUnc_78: 3.913418086393189e-05 - ArtUnc_79: -6.51698698504578e-05 - ArtUnc_80: 4.185286658640881e-07 - ArtUnc_81: 1.355320199362528e-06 - ArtUnc_82: -1.3444472389898236e-09 - ArtUnc_83: -1.3574624362073272e-06 - ArtUnc_84: -3.5302943668521003e-06 - ArtUnc_85: 1.2092535550324354e-06 - ArtUnc_86: -2.392580188600286e-06 - ArtUnc_87: -2.9287647151749426e-06 - ArtUnc_88: -7.154831036187616e-06 - ArtUnc_89: -4.048195228634956e-06 - ArtUnc_90: 2.553863669683389e-06 - ArtUnc_91: -6.988055593524728e-07 - ArtUnc_92: -7.503800177848302e-08 - ArtUnc_93: -1.0256192208288061e-05 - ArtUnc_94: 3.073421133961953e-06 - ArtUnc_95: -2.478932443424516e-06 - ArtUnc_96: -9.190338720973543e-08 + RadErr: 8.50700000e-02 + Model_1: 5.43941891e-01 + Model_2: 5.43941891e-01 + ModelRW_1: 2.89249100e-01 + ModelRW_2: 2.89249100e-01 + JES_1: 4.45121561e-01 + JES_2: 4.45121561e-01 + ArtUnc_1: 9.82848244e-03 + ArtUnc_2: -4.60871700e-03 + ArtUnc_3: -2.36772297e-03 + ArtUnc_4: -2.99260329e-04 + ArtUnc_5: -1.26908273e-04 + ArtUnc_6: -6.22106605e-06 + ArtUnc_7: -8.45157083e-05 + ArtUnc_8: 2.75105752e-02 + ArtUnc_9: 1.57236551e-05 + ArtUnc_10: 1.78252038e-02 + ArtUnc_11: -6.72934602e-03 + ArtUnc_12: 1.56011394e-02 + ArtUnc_13: -7.04724478e-03 + ArtUnc_14: -6.55217352e-03 + ArtUnc_15: -5.32543463e-03 + ArtUnc_16: 6.49176731e-03 + ArtUnc_17: -3.41802390e-03 + ArtUnc_18: 1.62719139e-03 + ArtUnc_19: -1.01768311e-03 + ArtUnc_20: 1.24122682e-03 + ArtUnc_21: 1.39107307e-03 + ArtUnc_22: -9.01767468e-04 + ArtUnc_23: 4.58580457e-05 + ArtUnc_24: -1.41322167e-04 + ArtUnc_25: 4.88443407e-02 + ArtUnc_26: 4.18159091e-02 + ArtUnc_27: 3.25896639e-01 + ArtUnc_28: -4.62807119e-02 + ArtUnc_29: -3.08197732e-02 + ArtUnc_30: 1.45878547e-01 + ArtUnc_31: -1.63962195e-03 + ArtUnc_32: -6.78545121e-02 + ArtUnc_33: -2.26618133e-02 + ArtUnc_34: -4.18203303e-02 + ArtUnc_35: -6.90577377e-02 + ArtUnc_36: -2.68643897e-02 + ArtUnc_37: -4.29264922e-03 + ArtUnc_38: 5.08029070e-03 + ArtUnc_39: 8.36284286e-04 + ArtUnc_40: 3.09501214e-04 + ArtUnc_41: -7.05201586e-01 + ArtUnc_42: -6.32709749e-01 + ArtUnc_43: 1.21728020e-01 + ArtUnc_44: 2.20995318e-01 + ArtUnc_45: -2.36470129e-01 + ArtUnc_46: 8.09903295e-02 + ArtUnc_47: -2.06648417e-01 + ArtUnc_48: 3.82659889e-02 + ArtUnc_49: 9.49140419e-02 + ArtUnc_50: 9.82474158e-02 + ArtUnc_51: -4.61732822e-03 + ArtUnc_52: 1.77429984e-03 + ArtUnc_53: 9.01752338e-02 + ArtUnc_54: -2.81431822e-02 + ArtUnc_55: -1.11967933e-02 + ArtUnc_56: -3.44428809e-03 + ArtUnc_57: 1.00364168e-03 + ArtUnc_58: -2.82317314e-03 + ArtUnc_59: 1.20465320e-03 + ArtUnc_60: 3.41447654e-04 + ArtUnc_61: 2.53722298e-05 + ArtUnc_62: -3.27346692e-04 + ArtUnc_63: -2.86324915e-04 + ArtUnc_64: -6.34592343e-04 + ArtUnc_65: 5.38610575e-04 + ArtUnc_66: -1.15056292e-03 + ArtUnc_67: 4.56094553e-04 + ArtUnc_68: 3.01484695e-03 + ArtUnc_69: 2.07380047e-03 + ArtUnc_70: -3.76257354e-04 + ArtUnc_71: 4.92522155e-04 + ArtUnc_72: -2.64717759e-04 + ArtUnc_73: 2.69347791e-04 + ArtUnc_74: -2.64736899e-04 + ArtUnc_75: -3.59520306e-05 + ArtUnc_76: 1.24608824e-06 + ArtUnc_77: 4.64236762e-05 + ArtUnc_78: 3.91341809e-05 + ArtUnc_79: -6.51698699e-05 + ArtUnc_80: 4.18528666e-07 + ArtUnc_81: 1.35532020e-06 + ArtUnc_82: -1.34444724e-09 + ArtUnc_83: -1.35746244e-06 + ArtUnc_84: -3.53029437e-06 + ArtUnc_85: 1.20925356e-06 + ArtUnc_86: -2.39258019e-06 + ArtUnc_87: -2.92876472e-06 + ArtUnc_88: -7.15483104e-06 + ArtUnc_89: -4.04819523e-06 + ArtUnc_90: 2.55386367e-06 + ArtUnc_91: -6.98805559e-07 + ArtUnc_92: -7.50380018e-08 + ArtUnc_93: -1.02561922e-05 + ArtUnc_94: 3.07342113e-06 + ArtUnc_95: -2.47893244e-06 + ArtUnc_96: -9.19033872e-08 - stat: 0 - Uncorr: 0.034100000000000005 - RCES: 0.042921322008996884 - ElEn: 0.05320802107765333 - ElTh: 0.01859857265356673 + Uncorr: 3.41000000e-02 + RCES: 4.29213220e-02 + ElEn: 5.32080211e-02 + ElTh: 1.85985727e-02 Lumi: 0.08525 LArN: 0.02046 - StatMC: 0.08115800000000001 - RadErr: 0.045353000000000004 - Model_1: 0.10368306732538346 - Model_2: 0.10368306732538346 - ModelRW_1: 0.04689881363504838 - ModelRW_2: 0.04689881363504838 - JES_1: 0.14294388920307158 - JES_2: 0.14294388920307158 - ArtUnc_1: -6.164644459496338e-08 - ArtUnc_2: 3.922489697003599e-06 - ArtUnc_3: 3.676532891100279e-06 - ArtUnc_4: 5.564873447651579e-07 - ArtUnc_5: 6.59743217294973e-07 - ArtUnc_6: 4.992344983248174e-07 - ArtUnc_7: -1.1475159678064252e-07 - ArtUnc_8: -9.852689490555703e-05 - ArtUnc_9: -4.407965694973057e-07 - ArtUnc_10: 0.0001792344528930398 - ArtUnc_11: 7.616657232721964e-05 - ArtUnc_12: -4.4728975211666266e-05 - ArtUnc_13: -4.0797786142070816e-05 - ArtUnc_14: 1.1653214759857445e-05 - ArtUnc_15: 2.9468682734613832e-05 - ArtUnc_16: -4.060088063743114e-05 - ArtUnc_17: 4.8986111224387076e-05 - ArtUnc_18: -2.500089489249813e-05 - ArtUnc_19: 1.8892070928952376e-05 - ArtUnc_20: -3.2089415329472654e-05 - ArtUnc_21: -3.1833271314447314e-05 - ArtUnc_22: 1.9025728150568153e-05 - ArtUnc_23: 7.026400508713268e-06 - ArtUnc_24: -5.427374187542625e-07 - ArtUnc_25: 0.00180497943837816 - ArtUnc_26: -0.0011801587967399964 - ArtUnc_27: -0.009578494181615448 - ArtUnc_28: 0.0008501682735662387 - ArtUnc_29: 0.0009006503708527966 - ArtUnc_30: -0.004665811728323744 - ArtUnc_31: 0.00010043484313485591 - ArtUnc_32: 0.002013123413600144 - ArtUnc_33: 0.0006497633601117199 - ArtUnc_34: 0.0008514052295296975 - ArtUnc_35: 0.001151055185015836 - ArtUnc_36: -5.32719746780574e-05 - ArtUnc_37: -0.00018763487850387555 - ArtUnc_38: 0.000374601437531586 - ArtUnc_39: 0.00020843676093705043 - ArtUnc_40: 3.0350509533418895e-05 - ArtUnc_41: 0.10266260140158713 - ArtUnc_42: -0.09840882032617902 - ArtUnc_43: -0.0687136256878946 - ArtUnc_44: -0.009317374694874054 - ArtUnc_45: -0.03518183522111571 - ArtUnc_46: -0.029312409153198906 - ArtUnc_47: 0.013643854055219597 - ArtUnc_48: -0.03382659436727794 - ArtUnc_49: 0.004633542472207272 - ArtUnc_50: 0.02025841501175562 - ArtUnc_51: -0.0023840751346399375 - ArtUnc_52: 0.004771693908960994 - ArtUnc_53: 0.022523688368749763 - ArtUnc_54: -0.009567457581226015 - ArtUnc_55: -0.009843605589854792 - ArtUnc_56: 0.001517061341357972 - ArtUnc_57: 0.06258888615097814 - ArtUnc_58: -0.26121858121934405 - ArtUnc_59: 0.10808008735278782 - ArtUnc_60: 0.023049073521630416 - ArtUnc_61: -0.14287717897482147 - ArtUnc_62: 0.04647436774649283 - ArtUnc_63: 0.05445480327220324 - ArtUnc_64: 0.020264268067555387 - ArtUnc_65: -0.002083777069281772 - ArtUnc_66: 0.06705184198137516 - ArtUnc_67: -0.021510300671449198 - ArtUnc_68: -0.08355834520654506 - ArtUnc_69: -0.04248293594777888 - ArtUnc_70: 0.0015854931928314551 - ArtUnc_71: -0.009286362438022215 - ArtUnc_72: 0.005984455381454388 - ArtUnc_73: 0.0016273501516143546 - ArtUnc_74: -0.001251898970055017 - ArtUnc_75: -5.0258160043893535e-05 - ArtUnc_76: -5.509821488616488e-05 - ArtUnc_77: -0.0001441671182925708 - ArtUnc_78: -0.00010278516747378758 - ArtUnc_79: 0.0006061054586888791 - ArtUnc_80: -6.34313564224788e-05 - ArtUnc_81: 7.291486148520376e-05 - ArtUnc_82: 3.946880946781465e-07 - ArtUnc_83: 0.0001346940923443161 - ArtUnc_84: -0.00010207049142693918 - ArtUnc_85: -0.00010050144195659215 - ArtUnc_86: 0.0001167991316420489 - ArtUnc_87: 7.445854981989877e-05 - ArtUnc_88: -0.00020777512486746868 - ArtUnc_89: -0.00011443435620054819 - ArtUnc_90: 3.887377084194982e-05 - ArtUnc_91: 2.3285955195096784e-05 - ArtUnc_92: 4.009384033282361e-06 - ArtUnc_93: -0.0002676195551706283 - ArtUnc_94: 8.669785835343736e-05 - ArtUnc_95: 8.024371620577143e-06 - ArtUnc_96: -2.1333954408291494e-05 + StatMC: 8.11580000e-02 + RadErr: 4.53530000e-02 + Model_1: 1.03683067e-01 + Model_2: 1.03683067e-01 + ModelRW_1: 4.68988136e-02 + ModelRW_2: 4.68988136e-02 + JES_1: 1.42943889e-01 + JES_2: 1.42943889e-01 + ArtUnc_1: -6.16464446e-08 + ArtUnc_2: 3.92248970e-06 + ArtUnc_3: 3.67653289e-06 + ArtUnc_4: 5.56487345e-07 + ArtUnc_5: 6.59743217e-07 + ArtUnc_6: 4.99234498e-07 + ArtUnc_7: -1.14751597e-07 + ArtUnc_8: -9.85268949e-05 + ArtUnc_9: -4.40796569e-07 + ArtUnc_10: 1.79234453e-04 + ArtUnc_11: 7.61665723e-05 + ArtUnc_12: -4.47289752e-05 + ArtUnc_13: -4.07977861e-05 + ArtUnc_14: 1.16532148e-05 + ArtUnc_15: 2.94686827e-05 + ArtUnc_16: -4.06008806e-05 + ArtUnc_17: 4.89861112e-05 + ArtUnc_18: -2.50008949e-05 + ArtUnc_19: 1.88920709e-05 + ArtUnc_20: -3.20894153e-05 + ArtUnc_21: -3.18332713e-05 + ArtUnc_22: 1.90257282e-05 + ArtUnc_23: 7.02640051e-06 + ArtUnc_24: -5.42737419e-07 + ArtUnc_25: 1.80497944e-03 + ArtUnc_26: -1.18015880e-03 + ArtUnc_27: -9.57849418e-03 + ArtUnc_28: 8.50168274e-04 + ArtUnc_29: 9.00650371e-04 + ArtUnc_30: -4.66581173e-03 + ArtUnc_31: 1.00434843e-04 + ArtUnc_32: 2.01312341e-03 + ArtUnc_33: 6.49763360e-04 + ArtUnc_34: 8.51405230e-04 + ArtUnc_35: 1.15105519e-03 + ArtUnc_36: -5.32719747e-05 + ArtUnc_37: -1.87634879e-04 + ArtUnc_38: 3.74601438e-04 + ArtUnc_39: 2.08436761e-04 + ArtUnc_40: 3.03505095e-05 + ArtUnc_41: 1.02662601e-01 + ArtUnc_42: -9.84088203e-02 + ArtUnc_43: -6.87136257e-02 + ArtUnc_44: -9.31737469e-03 + ArtUnc_45: -3.51818352e-02 + ArtUnc_46: -2.93124092e-02 + ArtUnc_47: 1.36438541e-02 + ArtUnc_48: -3.38265944e-02 + ArtUnc_49: 4.63354247e-03 + ArtUnc_50: 2.02584150e-02 + ArtUnc_51: -2.38407513e-03 + ArtUnc_52: 4.77169391e-03 + ArtUnc_53: 2.25236884e-02 + ArtUnc_54: -9.56745758e-03 + ArtUnc_55: -9.84360559e-03 + ArtUnc_56: 1.51706134e-03 + ArtUnc_57: 6.25888862e-02 + ArtUnc_58: -2.61218581e-01 + ArtUnc_59: 1.08080087e-01 + ArtUnc_60: 2.30490735e-02 + ArtUnc_61: -1.42877179e-01 + ArtUnc_62: 4.64743677e-02 + ArtUnc_63: 5.44548033e-02 + ArtUnc_64: 2.02642681e-02 + ArtUnc_65: -2.08377707e-03 + ArtUnc_66: 6.70518420e-02 + ArtUnc_67: -2.15103007e-02 + ArtUnc_68: -8.35583452e-02 + ArtUnc_69: -4.24829359e-02 + ArtUnc_70: 1.58549319e-03 + ArtUnc_71: -9.28636244e-03 + ArtUnc_72: 5.98445538e-03 + ArtUnc_73: 1.62735015e-03 + ArtUnc_74: -1.25189897e-03 + ArtUnc_75: -5.02581600e-05 + ArtUnc_76: -5.50982149e-05 + ArtUnc_77: -1.44167118e-04 + ArtUnc_78: -1.02785167e-04 + ArtUnc_79: 6.06105459e-04 + ArtUnc_80: -6.34313564e-05 + ArtUnc_81: 7.29148615e-05 + ArtUnc_82: 3.94688095e-07 + ArtUnc_83: 1.34694092e-04 + ArtUnc_84: -1.02070491e-04 + ArtUnc_85: -1.00501442e-04 + ArtUnc_86: 1.16799132e-04 + ArtUnc_87: 7.44585498e-05 + ArtUnc_88: -2.07775125e-04 + ArtUnc_89: -1.14434356e-04 + ArtUnc_90: 3.88737708e-05 + ArtUnc_91: 2.32859552e-05 + ArtUnc_92: 4.00938403e-06 + ArtUnc_93: -2.67619555e-04 + ArtUnc_94: 8.66978584e-05 + ArtUnc_95: 8.02437162e-06 + ArtUnc_96: -2.13339544e-05 - stat: 0 - Uncorr: 0.0046300000000000004 - RCES: 0.00905126514527113 - ElEn: 0.030576961333126287 - ElTh: 0.011429256049279846 + Uncorr: 4.63000000e-03 + RCES: 9.05126515e-03 + ElEn: 3.05769613e-02 + ElTh: 1.14292560e-02 Lumi: 0.011575 LArN: 0.002778 - StatMC: 0.036623300000000004 - RadErr: 0.0127788 - Model_1: 0.013357529939326358 - Model_2: 0.013357529939326358 - ModelRW_1: 0.006073136778778327 - ModelRW_2: 0.006073136778778327 - JES_1: 0.024848281955373693 - JES_2: 0.024848281955373693 - ArtUnc_1: -2.8171268199507716e-08 - ArtUnc_2: 4.468404998851395e-07 - ArtUnc_3: 6.065669381628866e-07 - ArtUnc_4: 2.2074680006442324e-07 - ArtUnc_5: -2.7226297566834386e-08 - ArtUnc_6: 1.0502030776599082e-08 - ArtUnc_7: 6.247091281933477e-09 - ArtUnc_8: -1.3352960960347073e-05 - ArtUnc_9: -5.195880523141805e-08 - ArtUnc_10: 2.1743112544614577e-05 - ArtUnc_11: 1.4384283433486833e-05 - ArtUnc_12: -6.488154730178476e-06 - ArtUnc_13: -1.2077849621583853e-05 - ArtUnc_14: -9.85196993995112e-07 - ArtUnc_15: -5.508344773231818e-06 - ArtUnc_16: -8.576868897751414e-07 - ArtUnc_17: 1.703642990227518e-06 - ArtUnc_18: 2.2576529075168028e-07 - ArtUnc_19: 1.2942610814684423e-06 - ArtUnc_20: -5.002398679556529e-06 - ArtUnc_21: -3.8253376283432924e-06 - ArtUnc_22: 1.7604760363566307e-06 - ArtUnc_23: 6.148453534215448e-07 - ArtUnc_24: -8.64776660808692e-08 - ArtUnc_25: 0.00021897760157158004 - ArtUnc_26: -0.00010417696531048306 - ArtUnc_27: -0.0012450843536182764 - ArtUnc_28: 0.0001734897536596235 - ArtUnc_29: 0.00015219103957132238 - ArtUnc_30: -0.0007465051590978547 - ArtUnc_31: 2.0704047749812754e-05 - ArtUnc_32: 0.0004343764298588992 - ArtUnc_33: 0.0001240490801374033 - ArtUnc_34: 0.0002862893515864769 - ArtUnc_35: 0.000496359061452056 - ArtUnc_36: 0.00020282456223106611 - ArtUnc_37: 3.709434707071476e-05 - ArtUnc_38: -4.1061827783918016e-05 - ArtUnc_39: -6.799893174198059e-06 - ArtUnc_40: -1.495482406591319e-06 - ArtUnc_41: 0.0008081930040474229 - ArtUnc_42: 0.0021086839281373873 - ArtUnc_43: 0.00035821304071842616 - ArtUnc_44: -0.0005399654934635183 - ArtUnc_45: 0.001316493409075148 - ArtUnc_46: 0.0002010143782132027 - ArtUnc_47: 0.0006350875907164479 - ArtUnc_48: 0.0004759382595654312 - ArtUnc_49: -0.0006023760092153574 - ArtUnc_50: -0.0009495179427241272 - ArtUnc_51: 6.923725304565707e-05 - ArtUnc_52: -7.658225400022983e-05 - ArtUnc_53: -0.0009883270985561877 - ArtUnc_54: 0.00035012232252784885 - ArtUnc_55: 0.00023812194477975467 - ArtUnc_56: -4.123660112127637e-06 - ArtUnc_57: -0.02066127195479415 - ArtUnc_58: 0.030126179151983706 - ArtUnc_59: 0.046329830103050265 - ArtUnc_60: 0.01702587416560102 - ArtUnc_61: -0.008563593972697963 - ArtUnc_62: -0.012710627449860143 - ArtUnc_63: 0.004931348879743005 - ArtUnc_64: -0.019511390532134486 - ArtUnc_65: 0.01837312552201359 - ArtUnc_66: 0.006955319069816964 - ArtUnc_67: -0.001832830663475033 - ArtUnc_68: -0.00026029931124660403 - ArtUnc_69: 0.000548424930784027 - ArtUnc_70: -0.00014018403238890204 - ArtUnc_71: 0.0007404022609201388 - ArtUnc_72: -0.0002691231477139737 - ArtUnc_73: 0.07358766616309388 - ArtUnc_74: -0.0893527526264328 - ArtUnc_75: -0.012055679340105704 - ArtUnc_76: -0.0027011264050323686 - ArtUnc_77: 0.021387610532927363 - ArtUnc_78: 0.013447794794430668 - ArtUnc_79: -0.04306806542957896 - ArtUnc_80: 0.0002503528763656325 - ArtUnc_81: -0.0004905800793986709 - ArtUnc_82: -2.433948835170254e-06 - ArtUnc_83: 0.00034942425994394585 - ArtUnc_84: 0.0003703550434099853 - ArtUnc_85: -0.00018102905776399447 - ArtUnc_86: -0.00014389325348863863 - ArtUnc_87: -0.0003998668211764174 - ArtUnc_88: 0.00260042890848475 - ArtUnc_89: -0.0023811496247879713 - ArtUnc_90: -0.0006337108544291929 - ArtUnc_91: -0.000159910268279095 - ArtUnc_92: -3.0413386783324703e-05 - ArtUnc_93: 0.004616274227591099 - ArtUnc_94: 0.0008602099782936573 - ArtUnc_95: 0.0007644310356287082 - ArtUnc_96: -1.4366715556144155e-06 + StatMC: 3.66233000e-02 + RadErr: 1.27788000e-02 + Model_1: 1.33575299e-02 + Model_2: 1.33575299e-02 + ModelRW_1: 6.07313678e-03 + ModelRW_2: 6.07313678e-03 + JES_1: 2.48482820e-02 + JES_2: 2.48482820e-02 + ArtUnc_1: -2.81712682e-08 + ArtUnc_2: 4.46840500e-07 + ArtUnc_3: 6.06566938e-07 + ArtUnc_4: 2.20746800e-07 + ArtUnc_5: -2.72262976e-08 + ArtUnc_6: 1.05020308e-08 + ArtUnc_7: 6.24709128e-09 + ArtUnc_8: -1.33529610e-05 + ArtUnc_9: -5.19588052e-08 + ArtUnc_10: 2.17431125e-05 + ArtUnc_11: 1.43842834e-05 + ArtUnc_12: -6.48815473e-06 + ArtUnc_13: -1.20778496e-05 + ArtUnc_14: -9.85196994e-07 + ArtUnc_15: -5.50834477e-06 + ArtUnc_16: -8.57686890e-07 + ArtUnc_17: 1.70364299e-06 + ArtUnc_18: 2.25765291e-07 + ArtUnc_19: 1.29426108e-06 + ArtUnc_20: -5.00239868e-06 + ArtUnc_21: -3.82533763e-06 + ArtUnc_22: 1.76047604e-06 + ArtUnc_23: 6.14845353e-07 + ArtUnc_24: -8.64776661e-08 + ArtUnc_25: 2.18977602e-04 + ArtUnc_26: -1.04176965e-04 + ArtUnc_27: -1.24508435e-03 + ArtUnc_28: 1.73489754e-04 + ArtUnc_29: 1.52191040e-04 + ArtUnc_30: -7.46505159e-04 + ArtUnc_31: 2.07040477e-05 + ArtUnc_32: 4.34376430e-04 + ArtUnc_33: 1.24049080e-04 + ArtUnc_34: 2.86289352e-04 + ArtUnc_35: 4.96359061e-04 + ArtUnc_36: 2.02824562e-04 + ArtUnc_37: 3.70943471e-05 + ArtUnc_38: -4.10618278e-05 + ArtUnc_39: -6.79989317e-06 + ArtUnc_40: -1.49548241e-06 + ArtUnc_41: 8.08193004e-04 + ArtUnc_42: 2.10868393e-03 + ArtUnc_43: 3.58213041e-04 + ArtUnc_44: -5.39965493e-04 + ArtUnc_45: 1.31649341e-03 + ArtUnc_46: 2.01014378e-04 + ArtUnc_47: 6.35087591e-04 + ArtUnc_48: 4.75938260e-04 + ArtUnc_49: -6.02376009e-04 + ArtUnc_50: -9.49517943e-04 + ArtUnc_51: 6.92372530e-05 + ArtUnc_52: -7.65822540e-05 + ArtUnc_53: -9.88327099e-04 + ArtUnc_54: 3.50122323e-04 + ArtUnc_55: 2.38121945e-04 + ArtUnc_56: -4.12366011e-06 + ArtUnc_57: -2.06612720e-02 + ArtUnc_58: 3.01261792e-02 + ArtUnc_59: 4.63298301e-02 + ArtUnc_60: 1.70258742e-02 + ArtUnc_61: -8.56359397e-03 + ArtUnc_62: -1.27106274e-02 + ArtUnc_63: 4.93134888e-03 + ArtUnc_64: -1.95113905e-02 + ArtUnc_65: 1.83731255e-02 + ArtUnc_66: 6.95531907e-03 + ArtUnc_67: -1.83283066e-03 + ArtUnc_68: -2.60299311e-04 + ArtUnc_69: 5.48424931e-04 + ArtUnc_70: -1.40184032e-04 + ArtUnc_71: 7.40402261e-04 + ArtUnc_72: -2.69123148e-04 + ArtUnc_73: 7.35876662e-02 + ArtUnc_74: -8.93527526e-02 + ArtUnc_75: -1.20556793e-02 + ArtUnc_76: -2.70112641e-03 + ArtUnc_77: 2.13876105e-02 + ArtUnc_78: 1.34477948e-02 + ArtUnc_79: -4.30680654e-02 + ArtUnc_80: 2.50352876e-04 + ArtUnc_81: -4.90580079e-04 + ArtUnc_82: -2.43394884e-06 + ArtUnc_83: 3.49424260e-04 + ArtUnc_84: 3.70355043e-04 + ArtUnc_85: -1.81029058e-04 + ArtUnc_86: -1.43893253e-04 + ArtUnc_87: -3.99866821e-04 + ArtUnc_88: 2.60042891e-03 + ArtUnc_89: -2.38114962e-03 + ArtUnc_90: -6.33710854e-04 + ArtUnc_91: -1.59910268e-04 + ArtUnc_92: -3.04133868e-05 + ArtUnc_93: 4.61627423e-03 + ArtUnc_94: 8.60209978e-04 + ArtUnc_95: 7.64431036e-04 + ArtUnc_96: -1.43667156e-06 - stat: 0 Uncorr: 0.000999 - RCES: 0.0019387486212180784 - ElEn: 0.001201045646676262 - ElTh: 0.001776170307459282 - Lumi: 0.0024975 - LArN: 0.0005994 - StatMC: 0.01437561 - RadErr: 0.005074920000000001 - Model_1: 0.0016176552543882767 - Model_2: 0.0016176552543882767 - ModelRW_1: 0.011934623544357715 - ModelRW_2: 0.011934623544357715 - JES_1: 0.007133876941687284 - JES_2: 0.007133876941687284 - ArtUnc_1: 6.041525253143837e-10 - ArtUnc_2: -7.457087380483398e-10 - ArtUnc_3: -1.4082834307497503e-10 - ArtUnc_4: 5.259751980797566e-10 - ArtUnc_5: -6.923695139325593e-10 - ArtUnc_6: -3.3208895333728377e-10 - ArtUnc_7: -8.073137240863234e-12 - ArtUnc_8: 1.2230927873466213e-07 - ArtUnc_9: 5.113647670230508e-10 - ArtUnc_10: -2.244693506634476e-07 - ArtUnc_11: -1.432606521286891e-07 - ArtUnc_12: 1.1530260854438604e-08 - ArtUnc_13: 1.117473288031136e-07 - ArtUnc_14: 2.455820714133376e-08 - ArtUnc_15: 8.883175739142325e-10 - ArtUnc_16: 3.64674416477968e-08 - ArtUnc_17: -8.23673209728863e-08 - ArtUnc_18: 5.197226792066097e-08 - ArtUnc_19: -3.841247467568004e-08 - ArtUnc_20: 6.425356531113657e-08 - ArtUnc_21: 6.155293697544512e-08 - ArtUnc_22: -2.9516761746782553e-08 - ArtUnc_23: -5.562900001094921e-09 - ArtUnc_24: 7.151556918564961e-10 - ArtUnc_25: -1.6089317487759996e-06 - ArtUnc_26: 1.8646694530904163e-06 - ArtUnc_27: 1.1274858886782353e-05 - ArtUnc_28: -6.938518411540835e-07 - ArtUnc_29: -4.555944122477703e-07 - ArtUnc_30: 1.9617264051350774e-06 - ArtUnc_31: 2.1287085831880707e-08 - ArtUnc_32: 4.881844799069134e-07 - ArtUnc_33: 2.179347849928199e-08 - ArtUnc_34: 7.364259583162062e-07 - ArtUnc_35: 1.4923928499667925e-06 - ArtUnc_36: 7.430948147728629e-07 - ArtUnc_37: 1.8178644102041127e-07 - ArtUnc_38: -2.3100931026616919e-07 - ArtUnc_39: -2.047416229297779e-07 - ArtUnc_40: -7.4238034992303e-08 - ArtUnc_41: 0.0005268887524987921 - ArtUnc_42: -0.0005714659827220986 - ArtUnc_43: -0.00027022218346638225 - ArtUnc_44: 1.6398072189473574e-05 - ArtUnc_45: -0.00017043659189344853 - ArtUnc_46: -4.997859356279252e-05 - ArtUnc_47: -3.9402537799913584e-05 - ArtUnc_48: -3.0242333060468175e-05 - ArtUnc_49: 2.5495449976636246e-05 - ArtUnc_50: 6.691827822136524e-06 - ArtUnc_51: 1.4789803073696317e-05 - ArtUnc_52: -2.910302902721402e-05 - ArtUnc_53: -4.8331660677013445e-05 - ArtUnc_54: 2.46139002810582e-05 - ArtUnc_55: 5.0195187470255184e-05 - ArtUnc_56: -7.534173203397271e-06 - ArtUnc_57: -0.0009724406566382886 - ArtUnc_58: 0.002580581925581996 - ArtUnc_59: 0.0003722812543556141 - ArtUnc_60: 0.00024486307773779494 - ArtUnc_61: 0.0007502908776919723 - ArtUnc_62: -0.000603295909081876 - ArtUnc_63: -0.00021837644109062352 - ArtUnc_64: -0.0006049467434411995 - ArtUnc_65: 0.0004698406724156381 - ArtUnc_66: -0.00016047606982258857 - ArtUnc_67: 5.597628896170966e-05 - ArtUnc_68: 0.0002182389788351802 - ArtUnc_69: 1.1008667292203844e-05 - ArtUnc_70: 9.332428840909884e-05 - ArtUnc_71: 1.7410499463531618e-06 - ArtUnc_72: 1.5512309295234166e-05 - ArtUnc_73: 0.001171402712029326 - ArtUnc_74: -0.0002786311578004168 - ArtUnc_75: 0.00028700015729913036 - ArtUnc_76: 0.007224765081852715 - ArtUnc_77: -0.0013220955446067943 - ArtUnc_78: 0.01613476439515324 - ArtUnc_79: 0.0038130671178633353 - ArtUnc_80: -0.005064477730472428 - ArtUnc_81: 0.003436231220562271 - ArtUnc_82: 2.2412802282053842e-05 - ArtUnc_83: 0.022201540076900436 - ArtUnc_84: -0.0044566290856507575 - ArtUnc_85: -0.01742863953471023 - ArtUnc_86: 0.021496483443812036 - ArtUnc_87: 0.013607990667775918 - ArtUnc_88: -0.011385699670263238 - ArtUnc_89: -0.007780802192535263 - ArtUnc_90: 0.001898829632687188 - ArtUnc_91: 0.003959695772808286 - ArtUnc_92: 0.0005860095065112893 - ArtUnc_93: -0.008045285761312283 - ArtUnc_94: 0.0034782788311635373 - ArtUnc_95: 0.00022653556448828135 - ArtUnc_96: -0.004254928877905018 + RCES: 1.93874862e-03 + ElEn: 1.20104565e-03 + ElTh: 1.77617031e-03 + Lumi: 2.49750000e-03 + LArN: 5.99400000e-04 + StatMC: 1.43756100e-02 + RadErr: 5.07492000e-03 + Model_1: 1.61765525e-03 + Model_2: 1.61765525e-03 + ModelRW_1: 1.19346235e-02 + ModelRW_2: 1.19346235e-02 + JES_1: 7.13387694e-03 + JES_2: 7.13387694e-03 + ArtUnc_1: 6.04152525e-10 + ArtUnc_2: -7.45708738e-10 + ArtUnc_3: -1.40828343e-10 + ArtUnc_4: 5.25975198e-10 + ArtUnc_5: -6.92369514e-10 + ArtUnc_6: -3.32088953e-10 + ArtUnc_7: -8.07313724e-12 + ArtUnc_8: 1.22309279e-07 + ArtUnc_9: 5.11364767e-10 + ArtUnc_10: -2.24469351e-07 + ArtUnc_11: -1.43260652e-07 + ArtUnc_12: 1.15302609e-08 + ArtUnc_13: 1.11747329e-07 + ArtUnc_14: 2.45582071e-08 + ArtUnc_15: 8.88317574e-10 + ArtUnc_16: 3.64674416e-08 + ArtUnc_17: -8.23673210e-08 + ArtUnc_18: 5.19722679e-08 + ArtUnc_19: -3.84124747e-08 + ArtUnc_20: 6.42535653e-08 + ArtUnc_21: 6.15529370e-08 + ArtUnc_22: -2.95167617e-08 + ArtUnc_23: -5.56290000e-09 + ArtUnc_24: 7.15155692e-10 + ArtUnc_25: -1.60893175e-06 + ArtUnc_26: 1.86466945e-06 + ArtUnc_27: 1.12748589e-05 + ArtUnc_28: -6.93851841e-07 + ArtUnc_29: -4.55594412e-07 + ArtUnc_30: 1.96172641e-06 + ArtUnc_31: 2.12870858e-08 + ArtUnc_32: 4.88184480e-07 + ArtUnc_33: 2.17934785e-08 + ArtUnc_34: 7.36425958e-07 + ArtUnc_35: 1.49239285e-06 + ArtUnc_36: 7.43094815e-07 + ArtUnc_37: 1.81786441e-07 + ArtUnc_38: -2.31009310e-07 + ArtUnc_39: -2.04741623e-07 + ArtUnc_40: -7.42380350e-08 + ArtUnc_41: 5.26888752e-04 + ArtUnc_42: -5.71465983e-04 + ArtUnc_43: -2.70222183e-04 + ArtUnc_44: 1.63980722e-05 + ArtUnc_45: -1.70436592e-04 + ArtUnc_46: -4.99785936e-05 + ArtUnc_47: -3.94025378e-05 + ArtUnc_48: -3.02423331e-05 + ArtUnc_49: 2.54954500e-05 + ArtUnc_50: 6.69182782e-06 + ArtUnc_51: 1.47898031e-05 + ArtUnc_52: -2.91030290e-05 + ArtUnc_53: -4.83316607e-05 + ArtUnc_54: 2.46139003e-05 + ArtUnc_55: 5.01951875e-05 + ArtUnc_56: -7.53417320e-06 + ArtUnc_57: -9.72440657e-04 + ArtUnc_58: 2.58058193e-03 + ArtUnc_59: 3.72281254e-04 + ArtUnc_60: 2.44863078e-04 + ArtUnc_61: 7.50290878e-04 + ArtUnc_62: -6.03295909e-04 + ArtUnc_63: -2.18376441e-04 + ArtUnc_64: -6.04946743e-04 + ArtUnc_65: 4.69840672e-04 + ArtUnc_66: -1.60476070e-04 + ArtUnc_67: 5.59762890e-05 + ArtUnc_68: 2.18238979e-04 + ArtUnc_69: 1.10086673e-05 + ArtUnc_70: 9.33242884e-05 + ArtUnc_71: 1.74104995e-06 + ArtUnc_72: 1.55123093e-05 + ArtUnc_73: 1.17140271e-03 + ArtUnc_74: -2.78631158e-04 + ArtUnc_75: 2.87000157e-04 + ArtUnc_76: 7.22476508e-03 + ArtUnc_77: -1.32209554e-03 + ArtUnc_78: 1.61347644e-02 + ArtUnc_79: 3.81306712e-03 + ArtUnc_80: -5.06447773e-03 + ArtUnc_81: 3.43623122e-03 + ArtUnc_82: 2.24128023e-05 + ArtUnc_83: 2.22015401e-02 + ArtUnc_84: -4.45662909e-03 + ArtUnc_85: -1.74286395e-02 + ArtUnc_86: 2.14964834e-02 + ArtUnc_87: 1.36079907e-02 + ArtUnc_88: -1.13856997e-02 + ArtUnc_89: -7.78080219e-03 + ArtUnc_90: 1.89882963e-03 + ArtUnc_91: 3.95969577e-03 + ArtUnc_92: 5.86009507e-04 + ArtUnc_93: -8.04528576e-03 + ArtUnc_94: 3.47827883e-03 + ArtUnc_95: 2.26535564e-04 + ArtUnc_96: -4.25492888e-03 diff --git a/nnpdf_data/nnpdf_data/commondata/H1_2JET_319GEV_290PB-1_DIF/uncertainties_norm.yaml b/nnpdf_data/nnpdf_data/commondata/H1_2JET_319GEV_290PB-1_DIF/uncertainties_norm.yaml index e3f5bc2d9d..5d6d1afb47 100644 --- a/nnpdf_data/nnpdf_data/commondata/H1_2JET_319GEV_290PB-1_DIF/uncertainties_norm.yaml +++ b/nnpdf_data/nnpdf_data/commondata/H1_2JET_319GEV_290PB-1_DIF/uncertainties_norm.yaml @@ -445,5330 +445,5330 @@ definitions: type: H1JETS161103421NORMunc96 bins: - stat: 0 - Uncorr: 0.00022100000000000003 - RCES: 0.0017178098421827724 - ElEn: 0.00019390152603834763 - ElTh: 0.0001042396348564211 - Lumi: 0.00017017 - LArN: 0.00013260000000000002 - StatMC: 0.0004773600000000001 - RadErr: 0.00012155000000000003 - Model_1: 0.001111083956346234 - Model_2: 0.001111083956346234 - ModelRW_1: 0.0009454371217854735 - ModelRW_2: 0.0009454371217854735 - JES_1: 0.000887414416908752 - JES_2: 0.000887414416908752 - ArtUnc_1: -4.650512749355942e-09 - ArtUnc_2: 2.6150404338355495e-07 - ArtUnc_3: 5.12557246908968e-07 - ArtUnc_4: 1.0849380135812087e-06 - ArtUnc_5: 7.030184433999337e-08 - ArtUnc_6: -6.666096450952222e-08 - ArtUnc_7: 8.926475091343498e-06 - ArtUnc_8: -3.752463903315676e-05 - ArtUnc_9: -4.525940513413666e-06 - ArtUnc_10: 3.1467905590806244e-05 - ArtUnc_11: -2.0233147902406997e-05 - ArtUnc_12: 2.021947318951445e-06 - ArtUnc_13: -4.003287853094295e-05 - ArtUnc_14: 9.54290296203011e-06 - ArtUnc_15: -1.5817618089945295e-05 - ArtUnc_16: 5.069765305450733e-07 - ArtUnc_17: -1.0889155969046879e-05 - ArtUnc_18: 7.854719394652192e-07 - ArtUnc_19: 2.3706046886005644e-05 - ArtUnc_20: -1.9083074205274243e-05 - ArtUnc_21: 4.747888848597217e-07 - ArtUnc_22: 0.00016734295161063723 - ArtUnc_23: 1.8956321121513973e-06 - ArtUnc_24: 0.0001391234856377672 - ArtUnc_25: 0.00018799400387012392 - ArtUnc_26: 3.117946243289525e-05 - ArtUnc_27: 0.00021123077073010498 - ArtUnc_28: 2.693125101744767e-06 - ArtUnc_29: 0.0005732465940048262 - ArtUnc_30: 0.00012951670447777832 - ArtUnc_31: -5.386786433193626e-05 - ArtUnc_32: -0.0002279172775553063 - ArtUnc_33: 2.3810441821111926e-07 - ArtUnc_34: -7.330782394982886e-06 - ArtUnc_35: -1.7685369090595917e-05 - ArtUnc_36: -2.4724312944298536e-06 - ArtUnc_37: -1.4607163820264878e-05 - ArtUnc_38: 2.6176429082255432e-06 - ArtUnc_39: -6.607915967338914e-07 - ArtUnc_40: -5.1362874816051534e-08 - ArtUnc_41: 1.5135293048599083e-06 - ArtUnc_42: -3.930922079681527e-08 - ArtUnc_43: 1.3049128874402319e-06 - ArtUnc_44: -7.96030395165809e-06 - ArtUnc_45: 5.351476142624853e-08 - ArtUnc_46: -3.500460120766658e-07 - ArtUnc_47: -2.698530947205398e-07 - ArtUnc_48: 6.382660114578908e-09 - ArtUnc_49: 2.4341397056357427e-06 - ArtUnc_50: 4.81169572330774e-07 - ArtUnc_51: 2.879156312045966e-08 - ArtUnc_52: 1.933283862988446e-08 - ArtUnc_53: 5.698775424400118e-09 - ArtUnc_54: -1.2428319793269074e-08 - ArtUnc_55: 1.8299365598447446e-08 - ArtUnc_56: -9.683602000634305e-10 - ArtUnc_57: -2.008998975123179e-09 - ArtUnc_58: -4.09381063276111e-09 - ArtUnc_59: 7.913059982895237e-09 - ArtUnc_60: 6.358131181272643e-09 - ArtUnc_61: 3.316418941539378e-11 - ArtUnc_62: 4.826728173643972e-09 - ArtUnc_63: -5.171061553907083e-10 - ArtUnc_64: 3.34943184805511e-07 - ArtUnc_65: -1.1614407621026812e-08 - ArtUnc_66: -2.3340415670957435e-07 - ArtUnc_67: -4.714533807607662e-09 - ArtUnc_68: -5.125500757971282e-10 - ArtUnc_69: 2.5681759201689222e-11 - ArtUnc_70: -4.617791891797858e-10 - ArtUnc_71: -1.726956563111836e-11 - ArtUnc_72: -1.0426947546361144e-09 - ArtUnc_73: 1.3974946479052858e-10 - ArtUnc_74: -7.388353615932547e-11 - ArtUnc_75: 2.2023115713533785e-09 - ArtUnc_76: -3.238875632136181e-11 - ArtUnc_77: 1.683694432077045e-10 - ArtUnc_78: -2.3319062783790383e-09 - ArtUnc_79: 6.984125752352948e-10 - ArtUnc_80: 2.4210672858428407e-10 - ArtUnc_81: -1.0645104275344316e-10 - ArtUnc_82: 9.551534802832154e-12 - ArtUnc_83: 4.247721654093233e-11 - ArtUnc_84: 1.2581519448969144e-11 - ArtUnc_85: -2.853203139020557e-13 - ArtUnc_86: -7.1550686480950606e-12 - ArtUnc_87: -8.385559175981213e-12 - ArtUnc_88: 9.054072666771776e-12 - ArtUnc_89: 6.684767466884986e-11 - ArtUnc_90: 1.8249590088465067e-11 - ArtUnc_91: -1.3769282793509156e-12 - ArtUnc_92: -2.0830196938451975e-10 - ArtUnc_93: 1.474440598941191e-11 - ArtUnc_94: 2.8062288957760026e-12 - ArtUnc_95: -4.9037181482300245e-11 - ArtUnc_96: 1.1351687655157902e-11 + Uncorr: 2.21000000e-04 + RCES: 1.71780984e-03 + ElEn: 1.93901526e-04 + ElTh: 1.04239635e-04 + Lumi: 1.70170000e-04 + LArN: 1.32600000e-04 + StatMC: 4.77360000e-04 + RadErr: 1.21550000e-04 + Model_1: 1.11108396e-03 + Model_2: 1.11108396e-03 + ModelRW_1: 9.45437122e-04 + ModelRW_2: 9.45437122e-04 + JES_1: 8.87414417e-04 + JES_2: 8.87414417e-04 + ArtUnc_1: -4.65051275e-09 + ArtUnc_2: 2.61504043e-07 + ArtUnc_3: 5.12557247e-07 + ArtUnc_4: 1.08493801e-06 + ArtUnc_5: 7.03018443e-08 + ArtUnc_6: -6.66609645e-08 + ArtUnc_7: 8.92647509e-06 + ArtUnc_8: -3.75246390e-05 + ArtUnc_9: -4.52594051e-06 + ArtUnc_10: 3.14679056e-05 + ArtUnc_11: -2.02331479e-05 + ArtUnc_12: 2.02194732e-06 + ArtUnc_13: -4.00328785e-05 + ArtUnc_14: 9.54290296e-06 + ArtUnc_15: -1.58176181e-05 + ArtUnc_16: 5.06976531e-07 + ArtUnc_17: -1.08891560e-05 + ArtUnc_18: 7.85471939e-07 + ArtUnc_19: 2.37060469e-05 + ArtUnc_20: -1.90830742e-05 + ArtUnc_21: 4.74788885e-07 + ArtUnc_22: 1.67342952e-04 + ArtUnc_23: 1.89563211e-06 + ArtUnc_24: 1.39123486e-04 + ArtUnc_25: 1.87994004e-04 + ArtUnc_26: 3.11794624e-05 + ArtUnc_27: 2.11230771e-04 + ArtUnc_28: 2.69312510e-06 + ArtUnc_29: 5.73246594e-04 + ArtUnc_30: 1.29516704e-04 + ArtUnc_31: -5.38678643e-05 + ArtUnc_32: -2.27917278e-04 + ArtUnc_33: 2.38104418e-07 + ArtUnc_34: -7.33078239e-06 + ArtUnc_35: -1.76853691e-05 + ArtUnc_36: -2.47243129e-06 + ArtUnc_37: -1.46071638e-05 + ArtUnc_38: 2.61764291e-06 + ArtUnc_39: -6.60791597e-07 + ArtUnc_40: -5.13628748e-08 + ArtUnc_41: 1.51352930e-06 + ArtUnc_42: -3.93092208e-08 + ArtUnc_43: 1.30491289e-06 + ArtUnc_44: -7.96030395e-06 + ArtUnc_45: 5.35147614e-08 + ArtUnc_46: -3.50046012e-07 + ArtUnc_47: -2.69853095e-07 + ArtUnc_48: 6.38266011e-09 + ArtUnc_49: 2.43413971e-06 + ArtUnc_50: 4.81169572e-07 + ArtUnc_51: 2.87915631e-08 + ArtUnc_52: 1.93328386e-08 + ArtUnc_53: 5.69877542e-09 + ArtUnc_54: -1.24283198e-08 + ArtUnc_55: 1.82993656e-08 + ArtUnc_56: -9.68360200e-10 + ArtUnc_57: -2.00899898e-09 + ArtUnc_58: -4.09381063e-09 + ArtUnc_59: 7.91305998e-09 + ArtUnc_60: 6.35813118e-09 + ArtUnc_61: 3.31641894e-11 + ArtUnc_62: 4.82672817e-09 + ArtUnc_63: -5.17106155e-10 + ArtUnc_64: 3.34943185e-07 + ArtUnc_65: -1.16144076e-08 + ArtUnc_66: -2.33404157e-07 + ArtUnc_67: -4.71453381e-09 + ArtUnc_68: -5.12550076e-10 + ArtUnc_69: 2.56817592e-11 + ArtUnc_70: -4.61779189e-10 + ArtUnc_71: -1.72695656e-11 + ArtUnc_72: -1.04269475e-09 + ArtUnc_73: 1.39749465e-10 + ArtUnc_74: -7.38835362e-11 + ArtUnc_75: 2.20231157e-09 + ArtUnc_76: -3.23887563e-11 + ArtUnc_77: 1.68369443e-10 + ArtUnc_78: -2.33190628e-09 + ArtUnc_79: 6.98412575e-10 + ArtUnc_80: 2.42106729e-10 + ArtUnc_81: -1.06451043e-10 + ArtUnc_82: 9.55153480e-12 + ArtUnc_83: 4.24772165e-11 + ArtUnc_84: 1.25815194e-11 + ArtUnc_85: -2.85320314e-13 + ArtUnc_86: -7.15506865e-12 + ArtUnc_87: -8.38555918e-12 + ArtUnc_88: 9.05407267e-12 + ArtUnc_89: 6.68476747e-11 + ArtUnc_90: 1.82495901e-11 + ArtUnc_91: -1.37692828e-12 + ArtUnc_92: -2.08301969e-10 + ArtUnc_93: 1.47444060e-11 + ArtUnc_94: 2.80622890e-12 + ArtUnc_95: -4.90371815e-11 + ArtUnc_96: 1.13516877e-11 - stat: 0 Uncorr: 0.000136 - RCES: 7.942912312244167e-05 - ElEn: 5.8760027229401446e-05 - ElTh: 9.534317804646539e-05 - Lumi: 0.00010472 - LArN: 8.159999999999999e-05 - StatMC: 0.00013872 - RadErr: 0.00014416 - Model_1: 0.00046736929809306047 - Model_2: 0.00046736929809306047 - ModelRW_1: 0.0003635094540723803 - ModelRW_2: 0.0003635094540723803 - JES_1: 0.00020002636626205054 - JES_2: 0.00020002636626205054 - ArtUnc_1: 5.471569996118318e-10 - ArtUnc_2: -2.1548459534153544e-08 - ArtUnc_3: 1.6107173820174696e-09 - ArtUnc_4: 1.879064311830434e-07 - ArtUnc_5: 1.050117042374516e-09 - ArtUnc_6: 1.4980021086434547e-08 - ArtUnc_7: 1.0716030983489342e-06 - ArtUnc_8: -5.8520277451735335e-06 - ArtUnc_9: 7.491192402186086e-07 - ArtUnc_10: -8.052950538988503e-08 - ArtUnc_11: -5.725234485220118e-06 - ArtUnc_12: -9.685501549661442e-07 - ArtUnc_13: -1.3424257850248628e-06 - ArtUnc_14: -9.956049613002278e-07 - ArtUnc_15: 5.29772550663397e-07 - ArtUnc_16: 1.6738377684272918e-08 - ArtUnc_17: -3.582507838237691e-07 - ArtUnc_18: -1.264727437334715e-08 - ArtUnc_19: 1.233662996663388e-06 - ArtUnc_20: 8.403154663435293e-07 - ArtUnc_21: 6.79129868143396e-07 - ArtUnc_22: -1.776150220884529e-06 - ArtUnc_23: -4.784905450229317e-07 - ArtUnc_24: -5.169696883145389e-06 - ArtUnc_25: 2.8213503257829692e-05 - ArtUnc_26: -6.758352126525302e-06 - ArtUnc_27: -1.9482452456984413e-05 - ArtUnc_28: -1.8615587928710915e-07 - ArtUnc_29: 4.94000286483612e-06 - ArtUnc_30: 2.595975163818299e-06 - ArtUnc_31: -1.076324800799102e-06 - ArtUnc_32: -3.2874259781786615e-05 - ArtUnc_33: -3.299468307382029e-08 - ArtUnc_34: -1.2349402662050923e-06 - ArtUnc_35: -6.191515490195612e-06 - ArtUnc_36: -2.7249485883079676e-06 - ArtUnc_37: -5.989822561698278e-05 - ArtUnc_38: 1.040363962746263e-05 - ArtUnc_39: 7.720196274664037e-05 - ArtUnc_40: 1.5220534773987657e-06 - ArtUnc_41: 1.70937927886724e-05 - ArtUnc_42: 8.114505195690131e-07 - ArtUnc_43: -1.371526883447847e-05 - ArtUnc_44: 0.00024620974445310794 - ArtUnc_45: -1.2730256982223254e-06 - ArtUnc_46: 1.1643913116449547e-05 - ArtUnc_47: 1.6299789140107506e-06 - ArtUnc_48: -2.2809295116473704e-07 - ArtUnc_49: -3.634576712612296e-05 - ArtUnc_50: -2.4422571255481782e-06 - ArtUnc_51: -6.822122723981085e-08 - ArtUnc_52: 5.976234737191589e-08 - ArtUnc_53: -1.8446310222813494e-08 - ArtUnc_54: 2.4751852109216145e-08 - ArtUnc_55: 1.1310038013260833e-06 - ArtUnc_56: 1.0759820264168969e-06 - ArtUnc_57: 3.0780950207694145e-07 - ArtUnc_58: 6.812023712735847e-07 - ArtUnc_59: -7.960672216219715e-09 - ArtUnc_60: -5.267916630689513e-07 - ArtUnc_61: -3.399701646687149e-10 - ArtUnc_62: -6.6656039128050465e-09 - ArtUnc_63: 7.138800656368192e-10 - ArtUnc_64: -2.4775857851850117e-06 - ArtUnc_65: 3.624287910535524e-08 - ArtUnc_66: 1.8384640130182134e-06 - ArtUnc_67: 2.7181424246913548e-08 - ArtUnc_68: -2.8193276372482016e-08 - ArtUnc_69: -5.42760780524532e-10 - ArtUnc_70: 3.0846613497465428e-09 - ArtUnc_71: -5.4471592197849197e-11 - ArtUnc_72: -2.1302205731503017e-08 - ArtUnc_73: -8.471531075724741e-10 - ArtUnc_74: -1.1628840669622942e-08 - ArtUnc_75: 1.7170116614500534e-08 - ArtUnc_76: -2.341536895472736e-10 - ArtUnc_77: -2.7783117168958113e-10 - ArtUnc_78: 3.260211955439682e-08 - ArtUnc_79: 1.046351715994512e-08 - ArtUnc_80: -3.450248147908177e-10 - ArtUnc_81: 7.482156465457119e-10 - ArtUnc_82: 3.8370527796884825e-11 - ArtUnc_83: -3.247121662728555e-11 - ArtUnc_84: -1.4283148435103424e-09 - ArtUnc_85: 2.3167662235587087e-11 - ArtUnc_86: 6.903485286946707e-11 - ArtUnc_87: 6.463824938400358e-11 - ArtUnc_88: 6.4133573585991416e-12 - ArtUnc_89: 3.6365934066034854e-10 - ArtUnc_90: -2.5940032189813645e-10 - ArtUnc_91: 6.457000917868311e-11 - ArtUnc_92: 1.2350529808450879e-09 - ArtUnc_93: -1.151435439701838e-11 - ArtUnc_94: -3.2150143351094645e-11 - ArtUnc_95: -9.747009492310879e-11 - ArtUnc_96: -6.133126016765184e-11 + RCES: 7.94291231e-05 + ElEn: 5.87600272e-05 + ElTh: 9.53431780e-05 + Lumi: 1.04720000e-04 + LArN: 8.16000000e-05 + StatMC: 1.38720000e-04 + RadErr: 1.44160000e-04 + Model_1: 4.67369298e-04 + Model_2: 4.67369298e-04 + ModelRW_1: 3.63509454e-04 + ModelRW_2: 3.63509454e-04 + JES_1: 2.00026366e-04 + JES_2: 2.00026366e-04 + ArtUnc_1: 5.47157000e-10 + ArtUnc_2: -2.15484595e-08 + ArtUnc_3: 1.61071738e-09 + ArtUnc_4: 1.87906431e-07 + ArtUnc_5: 1.05011704e-09 + ArtUnc_6: 1.49800211e-08 + ArtUnc_7: 1.07160310e-06 + ArtUnc_8: -5.85202775e-06 + ArtUnc_9: 7.49119240e-07 + ArtUnc_10: -8.05295054e-08 + ArtUnc_11: -5.72523449e-06 + ArtUnc_12: -9.68550155e-07 + ArtUnc_13: -1.34242579e-06 + ArtUnc_14: -9.95604961e-07 + ArtUnc_15: 5.29772551e-07 + ArtUnc_16: 1.67383777e-08 + ArtUnc_17: -3.58250784e-07 + ArtUnc_18: -1.26472744e-08 + ArtUnc_19: 1.23366300e-06 + ArtUnc_20: 8.40315466e-07 + ArtUnc_21: 6.79129868e-07 + ArtUnc_22: -1.77615022e-06 + ArtUnc_23: -4.78490545e-07 + ArtUnc_24: -5.16969688e-06 + ArtUnc_25: 2.82135033e-05 + ArtUnc_26: -6.75835213e-06 + ArtUnc_27: -1.94824525e-05 + ArtUnc_28: -1.86155879e-07 + ArtUnc_29: 4.94000286e-06 + ArtUnc_30: 2.59597516e-06 + ArtUnc_31: -1.07632480e-06 + ArtUnc_32: -3.28742598e-05 + ArtUnc_33: -3.29946831e-08 + ArtUnc_34: -1.23494027e-06 + ArtUnc_35: -6.19151549e-06 + ArtUnc_36: -2.72494859e-06 + ArtUnc_37: -5.98982256e-05 + ArtUnc_38: 1.04036396e-05 + ArtUnc_39: 7.72019627e-05 + ArtUnc_40: 1.52205348e-06 + ArtUnc_41: 1.70937928e-05 + ArtUnc_42: 8.11450520e-07 + ArtUnc_43: -1.37152688e-05 + ArtUnc_44: 2.46209744e-04 + ArtUnc_45: -1.27302570e-06 + ArtUnc_46: 1.16439131e-05 + ArtUnc_47: 1.62997891e-06 + ArtUnc_48: -2.28092951e-07 + ArtUnc_49: -3.63457671e-05 + ArtUnc_50: -2.44225713e-06 + ArtUnc_51: -6.82212272e-08 + ArtUnc_52: 5.97623474e-08 + ArtUnc_53: -1.84463102e-08 + ArtUnc_54: 2.47518521e-08 + ArtUnc_55: 1.13100380e-06 + ArtUnc_56: 1.07598203e-06 + ArtUnc_57: 3.07809502e-07 + ArtUnc_58: 6.81202371e-07 + ArtUnc_59: -7.96067222e-09 + ArtUnc_60: -5.26791663e-07 + ArtUnc_61: -3.39970165e-10 + ArtUnc_62: -6.66560391e-09 + ArtUnc_63: 7.13880066e-10 + ArtUnc_64: -2.47758579e-06 + ArtUnc_65: 3.62428791e-08 + ArtUnc_66: 1.83846401e-06 + ArtUnc_67: 2.71814242e-08 + ArtUnc_68: -2.81932764e-08 + ArtUnc_69: -5.42760781e-10 + ArtUnc_70: 3.08466135e-09 + ArtUnc_71: -5.44715922e-11 + ArtUnc_72: -2.13022057e-08 + ArtUnc_73: -8.47153108e-10 + ArtUnc_74: -1.16288407e-08 + ArtUnc_75: 1.71701166e-08 + ArtUnc_76: -2.34153690e-10 + ArtUnc_77: -2.77831172e-10 + ArtUnc_78: 3.26021196e-08 + ArtUnc_79: 1.04635172e-08 + ArtUnc_80: -3.45024815e-10 + ArtUnc_81: 7.48215647e-10 + ArtUnc_82: 3.83705278e-11 + ArtUnc_83: -3.24712166e-11 + ArtUnc_84: -1.42831484e-09 + ArtUnc_85: 2.31676622e-11 + ArtUnc_86: 6.90348529e-11 + ArtUnc_87: 6.46382494e-11 + ArtUnc_88: 6.41335736e-12 + ArtUnc_89: 3.63659341e-10 + ArtUnc_90: -2.59400322e-10 + ArtUnc_91: 6.45700092e-11 + ArtUnc_92: 1.23505298e-09 + ArtUnc_93: -1.15143544e-11 + ArtUnc_94: -3.21501434e-11 + ArtUnc_95: -9.74700949e-11 + ArtUnc_96: -6.13312602e-11 - stat: 0 Uncorr: 2.93e-05 - RCES: 3.643935349316724e-05 - ElEn: 6.372329009082943e-06 - ElTh: 2.361878070519306e-05 - Lumi: 2.2561e-05 - LArN: 1.7579999999999998e-05 - StatMC: 3.2523e-05 - RadErr: 2.8128e-05 - Model_1: 8.805247192725483e-05 - Model_2: 8.805247192725483e-05 - ModelRW_1: 6.546960265650005e-05 - ModelRW_2: 6.546960265650005e-05 - JES_1: 8.323024601895034e-05 - JES_2: 8.323024601895034e-05 - ArtUnc_1: 3.72574843754151e-13 - ArtUnc_2: -5.5762134156865614e-11 - ArtUnc_3: -1.8792997287274888e-10 - ArtUnc_4: -4.5867840932993047e-10 - ArtUnc_5: -1.4436446732121365e-11 - ArtUnc_6: 1.867396902546295e-11 - ArtUnc_7: -2.3048097772345663e-09 - ArtUnc_8: 7.845765890473015e-10 - ArtUnc_9: 1.977290840908495e-09 - ArtUnc_10: -1.1619921967779412e-08 - ArtUnc_11: -3.343505219064145e-09 - ArtUnc_12: -1.858073969329258e-09 - ArtUnc_13: 6.893470512185661e-08 - ArtUnc_14: -8.552736714474256e-09 - ArtUnc_15: 1.584680464086288e-08 - ArtUnc_16: -4.681586319467342e-10 - ArtUnc_17: 2.577357061816638e-08 - ArtUnc_18: -1.3883467658975774e-09 - ArtUnc_19: -1.0772612664045383e-07 - ArtUnc_20: 9.127921594949682e-08 - ArtUnc_21: -6.69780382479327e-11 - ArtUnc_22: -1.1270512654920153e-07 - ArtUnc_23: -1.33234118677314e-09 - ArtUnc_24: -1.555632830104435e-06 - ArtUnc_25: 7.606353978765029e-07 - ArtUnc_26: -3.851083482718545e-07 - ArtUnc_27: -1.4525484734098774e-06 - ArtUnc_28: -5.0885052975844806e-08 - ArtUnc_29: -1.61172054026889e-06 - ArtUnc_30: -4.1133548073345233e-07 - ArtUnc_31: 1.6983994409471313e-07 - ArtUnc_32: 1.6892305922854216e-06 - ArtUnc_33: -1.457067664224312e-10 - ArtUnc_34: 8.989143287517297e-08 - ArtUnc_35: -8.88695551901891e-08 - ArtUnc_36: -7.18178209779854e-07 - ArtUnc_37: -2.0778125037738755e-06 - ArtUnc_38: 3.6391782595336935e-07 - ArtUnc_39: 2.7286713820166425e-06 - ArtUnc_40: 5.455195979650584e-08 - ArtUnc_41: 7.549069678202054e-06 - ArtUnc_42: 7.453588459557469e-08 - ArtUnc_43: -1.1101608282611014e-05 - ArtUnc_44: 2.001257463619583e-06 - ArtUnc_45: -2.7433672163892875e-08 - ArtUnc_46: -9.517229932447282e-07 - ArtUnc_47: 5.589666364914897e-07 - ArtUnc_48: -2.4944416287900184e-08 - ArtUnc_49: -2.347177907621313e-05 - ArtUnc_50: -1.4282041253317663e-06 - ArtUnc_51: 4.788002977745001e-07 - ArtUnc_52: 8.903094382816588e-07 - ArtUnc_53: -1.2459460515372746e-07 - ArtUnc_54: 8.14925320564319e-08 - ArtUnc_55: 1.2594223585421794e-05 - ArtUnc_56: 1.4274865327025676e-05 - ArtUnc_57: 4.174072422605024e-06 - ArtUnc_58: 2.230354844345179e-05 - ArtUnc_59: -2.190809742086046e-07 - ArtUnc_60: -1.8910934551201536e-05 - ArtUnc_61: -1.094479673965532e-08 - ArtUnc_62: -6.893892056174763e-08 - ArtUnc_63: 5.82376697707184e-09 - ArtUnc_64: 5.660326229221998e-05 - ArtUnc_65: -8.015406273538802e-07 - ArtUnc_66: -3.968347141017291e-05 - ArtUnc_67: -5.263076671626725e-07 - ArtUnc_68: 3.5855468780181044e-07 - ArtUnc_69: 1.0173186218331753e-08 - ArtUnc_70: -1.2295317660275172e-07 - ArtUnc_71: -2.4793314171900886e-09 - ArtUnc_72: -6.571712548162341e-07 - ArtUnc_73: -4.7783870276875176e-08 - ArtUnc_74: -1.005910223108769e-07 - ArtUnc_75: 8.417761885970648e-07 - ArtUnc_76: 8.396096597475887e-09 - ArtUnc_77: 7.423005449611018e-09 - ArtUnc_78: -1.1325365974715549e-07 - ArtUnc_79: -4.231882205546767e-08 - ArtUnc_80: 6.129071591428702e-09 - ArtUnc_81: -9.456587992687747e-09 - ArtUnc_82: -1.5188352334206963e-10 - ArtUnc_83: 5.014588526357662e-09 - ArtUnc_84: -1.1798190978592541e-08 - ArtUnc_85: -2.631729931570385e-10 - ArtUnc_86: 1.9245738468918398e-11 - ArtUnc_87: 2.5939757535041884e-10 - ArtUnc_88: 1.2062301518547448e-09 - ArtUnc_89: 2.027714838316177e-08 - ArtUnc_90: -3.0170830838406754e-09 - ArtUnc_91: -1.0921148670096631e-09 - ArtUnc_92: -2.351887988493733e-08 - ArtUnc_93: 4.3944548208894744e-10 - ArtUnc_94: 3.7330271507787496e-10 - ArtUnc_95: -3.296110908263646e-09 - ArtUnc_96: 4.3659842526486204e-11 + RCES: 3.64393535e-05 + ElEn: 6.37232901e-06 + ElTh: 2.36187807e-05 + Lumi: 2.25610000e-05 + LArN: 1.75800000e-05 + StatMC: 3.25230000e-05 + RadErr: 2.81280000e-05 + Model_1: 8.80524719e-05 + Model_2: 8.80524719e-05 + ModelRW_1: 6.54696027e-05 + ModelRW_2: 6.54696027e-05 + JES_1: 8.32302460e-05 + JES_2: 8.32302460e-05 + ArtUnc_1: 3.72574844e-13 + ArtUnc_2: -5.57621342e-11 + ArtUnc_3: -1.87929973e-10 + ArtUnc_4: -4.58678409e-10 + ArtUnc_5: -1.44364467e-11 + ArtUnc_6: 1.86739690e-11 + ArtUnc_7: -2.30480978e-09 + ArtUnc_8: 7.84576589e-10 + ArtUnc_9: 1.97729084e-09 + ArtUnc_10: -1.16199220e-08 + ArtUnc_11: -3.34350522e-09 + ArtUnc_12: -1.85807397e-09 + ArtUnc_13: 6.89347051e-08 + ArtUnc_14: -8.55273671e-09 + ArtUnc_15: 1.58468046e-08 + ArtUnc_16: -4.68158632e-10 + ArtUnc_17: 2.57735706e-08 + ArtUnc_18: -1.38834677e-09 + ArtUnc_19: -1.07726127e-07 + ArtUnc_20: 9.12792159e-08 + ArtUnc_21: -6.69780382e-11 + ArtUnc_22: -1.12705127e-07 + ArtUnc_23: -1.33234119e-09 + ArtUnc_24: -1.55563283e-06 + ArtUnc_25: 7.60635398e-07 + ArtUnc_26: -3.85108348e-07 + ArtUnc_27: -1.45254847e-06 + ArtUnc_28: -5.08850530e-08 + ArtUnc_29: -1.61172054e-06 + ArtUnc_30: -4.11335481e-07 + ArtUnc_31: 1.69839944e-07 + ArtUnc_32: 1.68923059e-06 + ArtUnc_33: -1.45706766e-10 + ArtUnc_34: 8.98914329e-08 + ArtUnc_35: -8.88695552e-08 + ArtUnc_36: -7.18178210e-07 + ArtUnc_37: -2.07781250e-06 + ArtUnc_38: 3.63917826e-07 + ArtUnc_39: 2.72867138e-06 + ArtUnc_40: 5.45519598e-08 + ArtUnc_41: 7.54906968e-06 + ArtUnc_42: 7.45358846e-08 + ArtUnc_43: -1.11016083e-05 + ArtUnc_44: 2.00125746e-06 + ArtUnc_45: -2.74336722e-08 + ArtUnc_46: -9.51722993e-07 + ArtUnc_47: 5.58966636e-07 + ArtUnc_48: -2.49444163e-08 + ArtUnc_49: -2.34717791e-05 + ArtUnc_50: -1.42820413e-06 + ArtUnc_51: 4.78800298e-07 + ArtUnc_52: 8.90309438e-07 + ArtUnc_53: -1.24594605e-07 + ArtUnc_54: 8.14925321e-08 + ArtUnc_55: 1.25942236e-05 + ArtUnc_56: 1.42748653e-05 + ArtUnc_57: 4.17407242e-06 + ArtUnc_58: 2.23035484e-05 + ArtUnc_59: -2.19080974e-07 + ArtUnc_60: -1.89109346e-05 + ArtUnc_61: -1.09447967e-08 + ArtUnc_62: -6.89389206e-08 + ArtUnc_63: 5.82376698e-09 + ArtUnc_64: 5.66032623e-05 + ArtUnc_65: -8.01540627e-07 + ArtUnc_66: -3.96834714e-05 + ArtUnc_67: -5.26307667e-07 + ArtUnc_68: 3.58554688e-07 + ArtUnc_69: 1.01731862e-08 + ArtUnc_70: -1.22953177e-07 + ArtUnc_71: -2.47933142e-09 + ArtUnc_72: -6.57171255e-07 + ArtUnc_73: -4.77838703e-08 + ArtUnc_74: -1.00591022e-07 + ArtUnc_75: 8.41776189e-07 + ArtUnc_76: 8.39609660e-09 + ArtUnc_77: 7.42300545e-09 + ArtUnc_78: -1.13253660e-07 + ArtUnc_79: -4.23188221e-08 + ArtUnc_80: 6.12907159e-09 + ArtUnc_81: -9.45658799e-09 + ArtUnc_82: -1.51883523e-10 + ArtUnc_83: 5.01458853e-09 + ArtUnc_84: -1.17981910e-08 + ArtUnc_85: -2.63172993e-10 + ArtUnc_86: 1.92457385e-11 + ArtUnc_87: 2.59397575e-10 + ArtUnc_88: 1.20623015e-09 + ArtUnc_89: 2.02771484e-08 + ArtUnc_90: -3.01708308e-09 + ArtUnc_91: -1.09211487e-09 + ArtUnc_92: -2.35188799e-08 + ArtUnc_93: 4.39445482e-10 + ArtUnc_94: 3.73302715e-10 + ArtUnc_95: -3.29611091e-09 + ArtUnc_96: 4.36598425e-11 - stat: 0 Uncorr: 4.9e-06 - RCES: 4.610884378294472e-06 - ElEn: 1.1309875109832113e-06 - ElTh: 2.0408661764064788e-06 - Lumi: 3.773e-06 + RCES: 4.61088438e-06 + ElEn: 1.13098751e-06 + ElTh: 2.04086618e-06 + Lumi: 3.77300000e-06 LArN: 2.94e-06 - StatMC: 1.0731000000000001e-05 - RadErr: 6.468e-06 - Model_1: 6.791053526515602e-06 - Model_2: 6.791053526515602e-06 - ModelRW_1: 2.806506814529407e-06 - ModelRW_2: 2.806506814529407e-06 - JES_1: 1.7001058246473954e-05 - JES_2: 1.7001058246473954e-05 - ArtUnc_1: -5.241462259945504e-15 - ArtUnc_2: 8.207592964730536e-13 - ArtUnc_3: 3.847729041683561e-12 - ArtUnc_4: 1.3792222266569431e-11 - ArtUnc_5: 5.052176641803228e-13 - ArtUnc_6: 2.249495667603643e-14 - ArtUnc_7: 6.265328750309011e-11 - ArtUnc_8: -2.377277478183806e-10 - ArtUnc_9: -3.167587896563486e-12 - ArtUnc_10: -9.980068575788724e-12 - ArtUnc_11: 8.486503372824655e-11 - ArtUnc_12: 1.4472528442572177e-11 - ArtUnc_13: 1.9485505226517446e-10 - ArtUnc_14: 1.3385041148049875e-11 - ArtUnc_15: 1.2777939886617276e-11 - ArtUnc_16: -1.4594414874811343e-12 - ArtUnc_17: -7.622530132064897e-12 - ArtUnc_18: -3.3382254149254044e-13 - ArtUnc_19: 4.1744491889578663e-10 - ArtUnc_20: -1.458526363026746e-10 - ArtUnc_21: -1.2183263999339942e-10 - ArtUnc_22: 2.970142757468545e-09 - ArtUnc_23: 2.2299854903822662e-10 - ArtUnc_24: 7.119878894173299e-10 - ArtUnc_25: -4.04907482471203e-09 - ArtUnc_26: 1.362777303429574e-09 - ArtUnc_27: 7.095862095533802e-09 - ArtUnc_28: -5.718772664874926e-10 - ArtUnc_29: -3.751773345438866e-09 - ArtUnc_30: -2.9515041503778913e-09 - ArtUnc_31: 1.1378459995070667e-09 - ArtUnc_32: 2.1546215977208804e-08 - ArtUnc_33: -2.5580061091301333e-11 - ArtUnc_34: -7.500012142866035e-10 - ArtUnc_35: -8.728016111705376e-09 - ArtUnc_36: 1.4591722382626946e-08 - ArtUnc_37: -1.5180310001887374e-07 - ArtUnc_38: 2.908727650187965e-08 - ArtUnc_39: 2.400366075531249e-07 - ArtUnc_40: 3.6335764936557314e-09 - ArtUnc_41: -1.7897560141455276e-07 - ArtUnc_42: 3.862399379342501e-09 - ArtUnc_43: 3.891403788701593e-07 - ArtUnc_44: -3.012756355155561e-07 - ArtUnc_45: 2.2701893778899755e-10 - ArtUnc_46: 3.043726544595362e-08 - ArtUnc_47: -6.82161911121795e-08 - ArtUnc_48: 5.213033624694447e-09 - ArtUnc_49: 7.909571133748741e-07 - ArtUnc_50: -4.000696485508816e-09 - ArtUnc_51: 1.2244715995664577e-07 - ArtUnc_52: -2.387388760086234e-08 - ArtUnc_53: -1.3473575118922905e-08 - ArtUnc_54: 2.9872328342697794e-08 - ArtUnc_55: -1.581319061040107e-06 - ArtUnc_56: 1.933241606756599e-06 - ArtUnc_57: 4.697845033799855e-07 - ArtUnc_58: -3.308935751188501e-06 - ArtUnc_59: 1.8756063896365827e-07 - ArtUnc_60: -3.6319870239236007e-06 - ArtUnc_61: 8.974999862891205e-09 - ArtUnc_62: -3.2100263389846357e-07 - ArtUnc_63: 3.687766345572873e-08 - ArtUnc_64: -7.773053107356384e-06 - ArtUnc_65: 6.977881398509863e-07 - ArtUnc_66: -8.346360521631696e-06 - ArtUnc_67: -3.417827012533332e-07 - ArtUnc_68: -4.126287864727083e-07 - ArtUnc_69: 3.5351700709203385e-09 - ArtUnc_70: -4.836847420599969e-07 - ArtUnc_71: -2.5243277693506292e-08 - ArtUnc_72: -5.773132591863485e-06 - ArtUnc_73: -4.681112618505477e-07 - ArtUnc_74: -1.577039913530142e-06 - ArtUnc_75: 9.86917479891918e-06 - ArtUnc_76: 7.128038724576999e-08 - ArtUnc_77: -3.1454011412941795e-08 - ArtUnc_78: 1.8891715977876717e-05 - ArtUnc_79: 1.349982111950535e-05 - ArtUnc_80: -7.125930552507109e-08 - ArtUnc_81: 4.94833375371924e-07 - ArtUnc_82: 3.523517435289861e-08 - ArtUnc_83: -5.926496319977509e-08 - ArtUnc_84: -1.4452008476412964e-07 - ArtUnc_85: 1.508320644838305e-08 - ArtUnc_86: 4.377923905507967e-09 - ArtUnc_87: 5.063614671791702e-09 - ArtUnc_88: 6.745731559486469e-09 - ArtUnc_89: 2.873263317578852e-07 - ArtUnc_90: -9.439684959935189e-08 - ArtUnc_91: -2.3971753920997772e-08 - ArtUnc_92: -4.26823292277409e-08 - ArtUnc_93: 1.5311556383332444e-09 - ArtUnc_94: -4.599464050398569e-10 - ArtUnc_95: -1.9906259590373583e-08 - ArtUnc_96: 2.321632159279879e-09 + StatMC: 1.07310000e-05 + RadErr: 6.46800000e-06 + Model_1: 6.79105353e-06 + Model_2: 6.79105353e-06 + ModelRW_1: 2.80650681e-06 + ModelRW_2: 2.80650681e-06 + JES_1: 1.70010582e-05 + JES_2: 1.70010582e-05 + ArtUnc_1: -5.24146226e-15 + ArtUnc_2: 8.20759296e-13 + ArtUnc_3: 3.84772904e-12 + ArtUnc_4: 1.37922223e-11 + ArtUnc_5: 5.05217664e-13 + ArtUnc_6: 2.24949567e-14 + ArtUnc_7: 6.26532875e-11 + ArtUnc_8: -2.37727748e-10 + ArtUnc_9: -3.16758790e-12 + ArtUnc_10: -9.98006858e-12 + ArtUnc_11: 8.48650337e-11 + ArtUnc_12: 1.44725284e-11 + ArtUnc_13: 1.94855052e-10 + ArtUnc_14: 1.33850411e-11 + ArtUnc_15: 1.27779399e-11 + ArtUnc_16: -1.45944149e-12 + ArtUnc_17: -7.62253013e-12 + ArtUnc_18: -3.33822541e-13 + ArtUnc_19: 4.17444919e-10 + ArtUnc_20: -1.45852636e-10 + ArtUnc_21: -1.21832640e-10 + ArtUnc_22: 2.97014276e-09 + ArtUnc_23: 2.22998549e-10 + ArtUnc_24: 7.11987889e-10 + ArtUnc_25: -4.04907482e-09 + ArtUnc_26: 1.36277730e-09 + ArtUnc_27: 7.09586210e-09 + ArtUnc_28: -5.71877266e-10 + ArtUnc_29: -3.75177335e-09 + ArtUnc_30: -2.95150415e-09 + ArtUnc_31: 1.13784600e-09 + ArtUnc_32: 2.15462160e-08 + ArtUnc_33: -2.55800611e-11 + ArtUnc_34: -7.50001214e-10 + ArtUnc_35: -8.72801611e-09 + ArtUnc_36: 1.45917224e-08 + ArtUnc_37: -1.51803100e-07 + ArtUnc_38: 2.90872765e-08 + ArtUnc_39: 2.40036608e-07 + ArtUnc_40: 3.63357649e-09 + ArtUnc_41: -1.78975601e-07 + ArtUnc_42: 3.86239938e-09 + ArtUnc_43: 3.89140379e-07 + ArtUnc_44: -3.01275636e-07 + ArtUnc_45: 2.27018938e-10 + ArtUnc_46: 3.04372654e-08 + ArtUnc_47: -6.82161911e-08 + ArtUnc_48: 5.21303362e-09 + ArtUnc_49: 7.90957113e-07 + ArtUnc_50: -4.00069649e-09 + ArtUnc_51: 1.22447160e-07 + ArtUnc_52: -2.38738876e-08 + ArtUnc_53: -1.34735751e-08 + ArtUnc_54: 2.98723283e-08 + ArtUnc_55: -1.58131906e-06 + ArtUnc_56: 1.93324161e-06 + ArtUnc_57: 4.69784503e-07 + ArtUnc_58: -3.30893575e-06 + ArtUnc_59: 1.87560639e-07 + ArtUnc_60: -3.63198702e-06 + ArtUnc_61: 8.97499986e-09 + ArtUnc_62: -3.21002634e-07 + ArtUnc_63: 3.68776635e-08 + ArtUnc_64: -7.77305311e-06 + ArtUnc_65: 6.97788140e-07 + ArtUnc_66: -8.34636052e-06 + ArtUnc_67: -3.41782701e-07 + ArtUnc_68: -4.12628786e-07 + ArtUnc_69: 3.53517007e-09 + ArtUnc_70: -4.83684742e-07 + ArtUnc_71: -2.52432777e-08 + ArtUnc_72: -5.77313259e-06 + ArtUnc_73: -4.68111262e-07 + ArtUnc_74: -1.57703991e-06 + ArtUnc_75: 9.86917480e-06 + ArtUnc_76: 7.12803872e-08 + ArtUnc_77: -3.14540114e-08 + ArtUnc_78: 1.88917160e-05 + ArtUnc_79: 1.34998211e-05 + ArtUnc_80: -7.12593055e-08 + ArtUnc_81: 4.94833375e-07 + ArtUnc_82: 3.52351744e-08 + ArtUnc_83: -5.92649632e-08 + ArtUnc_84: -1.44520085e-07 + ArtUnc_85: 1.50832064e-08 + ArtUnc_86: 4.37792391e-09 + ArtUnc_87: 5.06361467e-09 + ArtUnc_88: 6.74573156e-09 + ArtUnc_89: 2.87326332e-07 + ArtUnc_90: -9.43968496e-08 + ArtUnc_91: -2.39717539e-08 + ArtUnc_92: -4.26823292e-08 + ArtUnc_93: 1.53115564e-09 + ArtUnc_94: -4.59946405e-10 + ArtUnc_95: -1.99062596e-08 + ArtUnc_96: 2.32163216e-09 - stat: 0 - Uncorr: 8.380000000000001e-07 - RCES: 1.9450628076234456e-06 - ElEn: 1.5101448241807805e-07 - ElTh: 1.1310439154604035e-06 - Lumi: 6.4526e-07 - LArN: 5.028e-07 - StatMC: 4.26542e-06 - RadErr: 1.57544e-06 - Model_1: 3.087214064524843e-06 - Model_2: 3.087214064524843e-06 - ModelRW_1: 1.4280587131487277e-06 - ModelRW_2: 1.4280587131487277e-06 - JES_1: 2.0161760161627757e-06 - JES_2: 2.0161760161627757e-06 - ArtUnc_1: -1.9019991291243223e-17 - ArtUnc_2: 1.0507157366899366e-14 - ArtUnc_3: 7.405936115075455e-14 - ArtUnc_4: 4.1516782877622893e-13 - ArtUnc_5: 1.4607047978177815e-14 - ArtUnc_6: 3.987043331119774e-15 - ArtUnc_7: 2.9871234429873815e-12 - ArtUnc_8: -1.28901101419786e-11 - ArtUnc_9: 1.936248767826609e-13 - ArtUnc_10: -1.9130658824214493e-13 - ArtUnc_11: -3.400051045086563e-13 - ArtUnc_12: -3.6520029181094834e-14 - ArtUnc_13: 7.1714396580652244e-12 - ArtUnc_14: -1.2279063899775683e-13 - ArtUnc_15: 5.068030375999428e-14 - ArtUnc_16: 1.814635154565131e-15 - ArtUnc_17: -2.5823036770884942e-12 - ArtUnc_18: 7.732364342860023e-14 - ArtUnc_19: 1.0368599030336335e-11 - ArtUnc_20: 2.537794841164756e-11 - ArtUnc_21: -1.8355254578712134e-12 - ArtUnc_22: 3.23052714866025e-10 - ArtUnc_23: 6.571649960662051e-12 - ArtUnc_24: -1.315256411252612e-10 - ArtUnc_25: -2.5802325607447383e-10 - ArtUnc_26: 5.448016000703067e-11 - ArtUnc_27: 9.181928486933075e-10 - ArtUnc_28: 4.266311332429477e-11 - ArtUnc_29: 2.121381067959539e-10 - ArtUnc_30: 1.2336925894313725e-10 - ArtUnc_31: -5.0572066259762264e-11 - ArtUnc_32: 1.9897910843142253e-09 - ArtUnc_33: -5.964743379366253e-13 - ArtUnc_34: -4.2291022066909204e-11 - ArtUnc_35: -6.372771500145227e-11 - ArtUnc_36: 8.992438540225526e-10 - ArtUnc_37: -2.823869184278453e-09 - ArtUnc_38: 5.029805408362752e-10 - ArtUnc_39: 3.7603353015553514e-09 - ArtUnc_40: -1.522549579025299e-11 - ArtUnc_41: -1.553079400463468e-08 - ArtUnc_42: 1.1200097112152992e-10 - ArtUnc_43: 3.320458370959093e-08 - ArtUnc_44: 1.612778691079218e-08 - ArtUnc_45: -1.9434751816654295e-10 - ArtUnc_46: 4.818719281818341e-09 - ArtUnc_47: -3.5936833342592e-10 - ArtUnc_48: -1.4452431492510908e-11 - ArtUnc_49: 1.156191469303947e-07 - ArtUnc_50: 3.095265809797049e-09 - ArtUnc_51: -1.990250058016618e-09 - ArtUnc_52: 1.0551540835680762e-09 - ArtUnc_53: 2.583986842251015e-11 - ArtUnc_54: -2.7359896160844426e-10 - ArtUnc_55: -1.714666851039895e-08 - ArtUnc_56: -9.346685172236354e-09 - ArtUnc_57: -2.2964573279275797e-09 - ArtUnc_58: -2.541050169654537e-08 - ArtUnc_59: 2.4527977931268276e-10 - ArtUnc_60: 4.26908642864609e-08 - ArtUnc_61: 1.0006795078580084e-10 - ArtUnc_62: -1.5073637832204924e-09 - ArtUnc_63: 3.8752541563071965e-11 - ArtUnc_64: -7.557892352678078e-08 - ArtUnc_65: -7.762771204776205e-09 - ArtUnc_66: 2.1676490443910404e-07 - ArtUnc_67: 3.088925173796808e-08 - ArtUnc_68: -3.7773234498553116e-08 - ArtUnc_69: -9.873502259301812e-09 - ArtUnc_70: 2.373128831845414e-07 - ArtUnc_71: 2.8574018820224212e-09 - ArtUnc_72: -7.728916750927325e-08 - ArtUnc_73: -1.8004829794967403e-08 - ArtUnc_74: 1.1896352758006183e-06 - ArtUnc_75: 2.2098648925167571e-07 - ArtUnc_76: 2.7860180711512064e-08 - ArtUnc_77: 7.187084774475774e-08 - ArtUnc_78: 2.2916415135354548e-06 - ArtUnc_79: -4.401578860181456e-06 - ArtUnc_80: 8.779094540533577e-08 - ArtUnc_81: -1.1345022521150932e-07 - ArtUnc_82: -1.1381576922669683e-08 - ArtUnc_83: 3.163933993362474e-07 - ArtUnc_84: -1.3329149678621743e-06 - ArtUnc_85: -2.135394470958957e-08 - ArtUnc_86: 5.592598844023283e-08 - ArtUnc_87: 1.0941707459513449e-07 - ArtUnc_88: 1.1376874495446983e-07 - ArtUnc_89: 2.6704569588183046e-06 - ArtUnc_90: -4.823102494690392e-07 - ArtUnc_91: 1.4649026332982186e-07 - ArtUnc_92: -8.784470317925978e-06 - ArtUnc_93: 3.280591100098844e-08 - ArtUnc_94: 1.8810024653809077e-07 - ArtUnc_95: -4.025966804622898e-07 - ArtUnc_96: -1.8317314419579824e-08 + Uncorr: 8.38000000e-07 + RCES: 1.94506281e-06 + ElEn: 1.51014482e-07 + ElTh: 1.13104392e-06 + Lumi: 6.45260000e-07 + LArN: 5.02800000e-07 + StatMC: 4.26542000e-06 + RadErr: 1.57544000e-06 + Model_1: 3.08721406e-06 + Model_2: 3.08721406e-06 + ModelRW_1: 1.42805871e-06 + ModelRW_2: 1.42805871e-06 + JES_1: 2.01617602e-06 + JES_2: 2.01617602e-06 + ArtUnc_1: -1.90199913e-17 + ArtUnc_2: 1.05071574e-14 + ArtUnc_3: 7.40593612e-14 + ArtUnc_4: 4.15167829e-13 + ArtUnc_5: 1.46070480e-14 + ArtUnc_6: 3.98704333e-15 + ArtUnc_7: 2.98712344e-12 + ArtUnc_8: -1.28901101e-11 + ArtUnc_9: 1.93624877e-13 + ArtUnc_10: -1.91306588e-13 + ArtUnc_11: -3.40005105e-13 + ArtUnc_12: -3.65200292e-14 + ArtUnc_13: 7.17143966e-12 + ArtUnc_14: -1.22790639e-13 + ArtUnc_15: 5.06803038e-14 + ArtUnc_16: 1.81463515e-15 + ArtUnc_17: -2.58230368e-12 + ArtUnc_18: 7.73236434e-14 + ArtUnc_19: 1.03685990e-11 + ArtUnc_20: 2.53779484e-11 + ArtUnc_21: -1.83552546e-12 + ArtUnc_22: 3.23052715e-10 + ArtUnc_23: 6.57164996e-12 + ArtUnc_24: -1.31525641e-10 + ArtUnc_25: -2.58023256e-10 + ArtUnc_26: 5.44801600e-11 + ArtUnc_27: 9.18192849e-10 + ArtUnc_28: 4.26631133e-11 + ArtUnc_29: 2.12138107e-10 + ArtUnc_30: 1.23369259e-10 + ArtUnc_31: -5.05720663e-11 + ArtUnc_32: 1.98979108e-09 + ArtUnc_33: -5.96474338e-13 + ArtUnc_34: -4.22910221e-11 + ArtUnc_35: -6.37277150e-11 + ArtUnc_36: 8.99243854e-10 + ArtUnc_37: -2.82386918e-09 + ArtUnc_38: 5.02980541e-10 + ArtUnc_39: 3.76033530e-09 + ArtUnc_40: -1.52254958e-11 + ArtUnc_41: -1.55307940e-08 + ArtUnc_42: 1.12000971e-10 + ArtUnc_43: 3.32045837e-08 + ArtUnc_44: 1.61277869e-08 + ArtUnc_45: -1.94347518e-10 + ArtUnc_46: 4.81871928e-09 + ArtUnc_47: -3.59368333e-10 + ArtUnc_48: -1.44524315e-11 + ArtUnc_49: 1.15619147e-07 + ArtUnc_50: 3.09526581e-09 + ArtUnc_51: -1.99025006e-09 + ArtUnc_52: 1.05515408e-09 + ArtUnc_53: 2.58398684e-11 + ArtUnc_54: -2.73598962e-10 + ArtUnc_55: -1.71466685e-08 + ArtUnc_56: -9.34668517e-09 + ArtUnc_57: -2.29645733e-09 + ArtUnc_58: -2.54105017e-08 + ArtUnc_59: 2.45279779e-10 + ArtUnc_60: 4.26908643e-08 + ArtUnc_61: 1.00067951e-10 + ArtUnc_62: -1.50736378e-09 + ArtUnc_63: 3.87525416e-11 + ArtUnc_64: -7.55789235e-08 + ArtUnc_65: -7.76277120e-09 + ArtUnc_66: 2.16764904e-07 + ArtUnc_67: 3.08892517e-08 + ArtUnc_68: -3.77732345e-08 + ArtUnc_69: -9.87350226e-09 + ArtUnc_70: 2.37312883e-07 + ArtUnc_71: 2.85740188e-09 + ArtUnc_72: -7.72891675e-08 + ArtUnc_73: -1.80048298e-08 + ArtUnc_74: 1.18963528e-06 + ArtUnc_75: 2.20986489e-07 + ArtUnc_76: 2.78601807e-08 + ArtUnc_77: 7.18708477e-08 + ArtUnc_78: 2.29164151e-06 + ArtUnc_79: -4.40157886e-06 + ArtUnc_80: 8.77909454e-08 + ArtUnc_81: -1.13450225e-07 + ArtUnc_82: -1.13815769e-08 + ArtUnc_83: 3.16393399e-07 + ArtUnc_84: -1.33291497e-06 + ArtUnc_85: -2.13539447e-08 + ArtUnc_86: 5.59259884e-08 + ArtUnc_87: 1.09417075e-07 + ArtUnc_88: 1.13768745e-07 + ArtUnc_89: 2.67045696e-06 + ArtUnc_90: -4.82310249e-07 + ArtUnc_91: 1.46490263e-07 + ArtUnc_92: -8.78447032e-06 + ArtUnc_93: 3.28059110e-08 + ArtUnc_94: 1.88100247e-07 + ArtUnc_95: -4.02596680e-07 + ArtUnc_96: -1.83173144e-08 - stat: 0 Uncorr: 1.58e-07 - RCES: 2.6507649216782695e-07 - ElEn: 1.2958649119410558e-07 - ElTh: 2.8253740071006537e-07 - Lumi: 1.2166000000000002e-07 - LArN: 9.480000000000002e-08 - StatMC: 1.5247000000000002e-06 - RadErr: 5.830200000000001e-07 - Model_1: 1.3473778294153428e-06 - Model_2: 1.3473778294153428e-06 - ModelRW_1: 1.197669181702527e-06 - ModelRW_2: 1.197669181702527e-06 - JES_1: 9.173012464834002e-07 - JES_2: 9.173012464834002e-07 - ArtUnc_1: 2.35927203457836e-20 - ArtUnc_2: -5.922629161146333e-18 - ArtUnc_3: -1.8819435998532412e-17 - ArtUnc_4: 3.158187577786074e-17 - ArtUnc_5: 1.5937576017366522e-18 - ArtUnc_6: 3.289342185321362e-18 - ArtUnc_7: 1.2239723672715737e-15 - ArtUnc_8: -2.2074775992870183e-14 - ArtUnc_9: 6.704927999036726e-16 - ArtUnc_10: 2.7699408858070488e-14 - ArtUnc_11: -5.873909050903443e-14 - ArtUnc_12: -4.664676081797592e-15 - ArtUnc_13: -3.2082494641071664e-14 - ArtUnc_14: -2.7683369430503856e-15 - ArtUnc_15: 7.564761722243567e-15 - ArtUnc_16: -4.898938440266008e-16 - ArtUnc_17: -7.0621030270174545e-15 - ArtUnc_18: 5.255133824119982e-16 - ArtUnc_19: 1.636309256674278e-14 - ArtUnc_20: -2.388984636576834e-13 - ArtUnc_21: 2.0807479147216883e-14 - ArtUnc_22: -5.297202828927104e-12 - ArtUnc_23: -1.9082778121082117e-13 - ArtUnc_24: 6.039201406219987e-12 - ArtUnc_25: 2.6715907554250054e-12 - ArtUnc_26: -2.7966393291241113e-13 - ArtUnc_27: -1.9072862813516748e-11 - ArtUnc_28: -3.1805753329792926e-13 - ArtUnc_29: 2.342851279537203e-12 - ArtUnc_30: -2.1374606682004223e-13 - ArtUnc_31: 1.0815260616289436e-13 - ArtUnc_32: -1.9686397571900833e-11 - ArtUnc_33: -1.5636800167330968e-14 - ArtUnc_34: 4.9413977886084574e-12 - ArtUnc_35: 3.43431542246607e-12 - ArtUnc_36: -4.797358782039034e-11 - ArtUnc_37: 5.773888609003612e-11 - ArtUnc_38: -9.251216849801803e-12 - ArtUnc_39: -6.909058451839399e-11 - ArtUnc_40: 1.6925117406345058e-12 - ArtUnc_41: 3.7053698468647157e-10 - ArtUnc_42: 1.855392905824653e-11 - ArtUnc_43: -4.846323282584783e-10 - ArtUnc_44: -3.327459492762007e-11 - ArtUnc_45: 7.597393152306623e-13 - ArtUnc_46: -6.897334913058715e-11 - ArtUnc_47: 1.5566079258656675e-10 - ArtUnc_48: -7.485089687541113e-12 - ArtUnc_49: -4.1862286539354177e-10 - ArtUnc_50: 6.302238876174077e-11 - ArtUnc_51: -9.653027877636256e-10 - ArtUnc_52: 5.72165799063931e-10 - ArtUnc_53: -2.489573684983785e-11 - ArtUnc_54: -7.617696381330824e-11 - ArtUnc_55: -1.3478870594901272e-08 - ArtUnc_56: 1.2402321011988667e-08 - ArtUnc_57: 3.5571456105850805e-09 - ArtUnc_58: -2.556150908248414e-08 - ArtUnc_59: -1.2383163719166848e-10 - ArtUnc_60: -3.2222219760101495e-08 - ArtUnc_61: -5.2251288050979926e-12 - ArtUnc_62: -8.97457198223341e-10 - ArtUnc_63: 9.440574608420388e-11 - ArtUnc_64: -2.448031875497111e-08 - ArtUnc_65: 1.042472983643038e-09 - ArtUnc_66: -3.5166796463923804e-08 - ArtUnc_67: 3.52988122038554e-10 - ArtUnc_68: 1.992668957386929e-09 - ArtUnc_69: -3.938321250102191e-10 - ArtUnc_70: 9.539111780811317e-09 - ArtUnc_71: 2.266615073220808e-10 - ArtUnc_72: 4.3344959477670267e-08 - ArtUnc_73: 3.439910778665954e-09 - ArtUnc_74: 3.766214542747073e-08 - ArtUnc_75: -8.853833025974996e-08 - ArtUnc_76: -5.07855697525207e-10 - ArtUnc_77: 2.6350754104537003e-09 - ArtUnc_78: -5.219583627350703e-08 - ArtUnc_79: -1.9286320867927353e-07 - ArtUnc_80: 2.0279690969114773e-09 - ArtUnc_81: -7.292739062847744e-09 - ArtUnc_82: -5.170141903927744e-10 - ArtUnc_83: 2.2541666134281235e-08 - ArtUnc_84: -3.9693062371755816e-08 - ArtUnc_85: 2.686872478207075e-06 - ArtUnc_86: 4.141473619815568e-07 - ArtUnc_87: 7.862979078955503e-07 - ArtUnc_88: 1.1721011470516791e-08 - ArtUnc_89: 4.4423448886381265e-08 - ArtUnc_90: 2.651165675700547e-07 - ArtUnc_91: -1.6784554078079242e-06 - ArtUnc_92: -1.550500835139394e-08 - ArtUnc_93: 1.9257018402611466e-08 - ArtUnc_94: 2.2281251523428708e-08 - ArtUnc_95: -8.447286155149897e-07 - ArtUnc_96: -1.7506003847933434e-07 + RCES: 2.65076492e-07 + ElEn: 1.29586491e-07 + ElTh: 2.82537401e-07 + Lumi: 1.21660000e-07 + LArN: 9.48000000e-08 + StatMC: 1.52470000e-06 + RadErr: 5.83020000e-07 + Model_1: 1.34737783e-06 + Model_2: 1.34737783e-06 + ModelRW_1: 1.19766918e-06 + ModelRW_2: 1.19766918e-06 + JES_1: 9.17301246e-07 + JES_2: 9.17301246e-07 + ArtUnc_1: 2.35927203e-20 + ArtUnc_2: -5.92262916e-18 + ArtUnc_3: -1.88194360e-17 + ArtUnc_4: 3.15818758e-17 + ArtUnc_5: 1.59375760e-18 + ArtUnc_6: 3.28934219e-18 + ArtUnc_7: 1.22397237e-15 + ArtUnc_8: -2.20747760e-14 + ArtUnc_9: 6.70492800e-16 + ArtUnc_10: 2.76994089e-14 + ArtUnc_11: -5.87390905e-14 + ArtUnc_12: -4.66467608e-15 + ArtUnc_13: -3.20824946e-14 + ArtUnc_14: -2.76833694e-15 + ArtUnc_15: 7.56476172e-15 + ArtUnc_16: -4.89893844e-16 + ArtUnc_17: -7.06210303e-15 + ArtUnc_18: 5.25513382e-16 + ArtUnc_19: 1.63630926e-14 + ArtUnc_20: -2.38898464e-13 + ArtUnc_21: 2.08074791e-14 + ArtUnc_22: -5.29720283e-12 + ArtUnc_23: -1.90827781e-13 + ArtUnc_24: 6.03920141e-12 + ArtUnc_25: 2.67159076e-12 + ArtUnc_26: -2.79663933e-13 + ArtUnc_27: -1.90728628e-11 + ArtUnc_28: -3.18057533e-13 + ArtUnc_29: 2.34285128e-12 + ArtUnc_30: -2.13746067e-13 + ArtUnc_31: 1.08152606e-13 + ArtUnc_32: -1.96863976e-11 + ArtUnc_33: -1.56368002e-14 + ArtUnc_34: 4.94139779e-12 + ArtUnc_35: 3.43431542e-12 + ArtUnc_36: -4.79735878e-11 + ArtUnc_37: 5.77388861e-11 + ArtUnc_38: -9.25121685e-12 + ArtUnc_39: -6.90905845e-11 + ArtUnc_40: 1.69251174e-12 + ArtUnc_41: 3.70536985e-10 + ArtUnc_42: 1.85539291e-11 + ArtUnc_43: -4.84632328e-10 + ArtUnc_44: -3.32745949e-11 + ArtUnc_45: 7.59739315e-13 + ArtUnc_46: -6.89733491e-11 + ArtUnc_47: 1.55660793e-10 + ArtUnc_48: -7.48508969e-12 + ArtUnc_49: -4.18622865e-10 + ArtUnc_50: 6.30223888e-11 + ArtUnc_51: -9.65302788e-10 + ArtUnc_52: 5.72165799e-10 + ArtUnc_53: -2.48957368e-11 + ArtUnc_54: -7.61769638e-11 + ArtUnc_55: -1.34788706e-08 + ArtUnc_56: 1.24023210e-08 + ArtUnc_57: 3.55714561e-09 + ArtUnc_58: -2.55615091e-08 + ArtUnc_59: -1.23831637e-10 + ArtUnc_60: -3.22222198e-08 + ArtUnc_61: -5.22512881e-12 + ArtUnc_62: -8.97457198e-10 + ArtUnc_63: 9.44057461e-11 + ArtUnc_64: -2.44803188e-08 + ArtUnc_65: 1.04247298e-09 + ArtUnc_66: -3.51667965e-08 + ArtUnc_67: 3.52988122e-10 + ArtUnc_68: 1.99266896e-09 + ArtUnc_69: -3.93832125e-10 + ArtUnc_70: 9.53911178e-09 + ArtUnc_71: 2.26661507e-10 + ArtUnc_72: 4.33449595e-08 + ArtUnc_73: 3.43991078e-09 + ArtUnc_74: 3.76621454e-08 + ArtUnc_75: -8.85383303e-08 + ArtUnc_76: -5.07855698e-10 + ArtUnc_77: 2.63507541e-09 + ArtUnc_78: -5.21958363e-08 + ArtUnc_79: -1.92863209e-07 + ArtUnc_80: 2.02796910e-09 + ArtUnc_81: -7.29273906e-09 + ArtUnc_82: -5.17014190e-10 + ArtUnc_83: 2.25416661e-08 + ArtUnc_84: -3.96930624e-08 + ArtUnc_85: 2.68687248e-06 + ArtUnc_86: 4.14147362e-07 + ArtUnc_87: 7.86297908e-07 + ArtUnc_88: 1.17210115e-08 + ArtUnc_89: 4.44234489e-08 + ArtUnc_90: 2.65116568e-07 + ArtUnc_91: -1.67845541e-06 + ArtUnc_92: -1.55050084e-08 + ArtUnc_93: 1.92570184e-08 + ArtUnc_94: 2.22812515e-08 + ArtUnc_95: -8.44728616e-07 + ArtUnc_96: -1.75060038e-07 - stat: 0 Uncorr: 0.00029 - RCES: 0.0018074021709348475 - ElEn: 0.0003481540284127128 - ElTh: 0.0002703540456512534 - Lumi: 0.00022330000000000003 + RCES: 1.80740217e-03 + ElEn: 3.48154028e-04 + ElTh: 2.70354046e-04 + Lumi: 2.23300000e-04 LArN: 0.000174 - StatMC: 0.0004698000000000001 - RadErr: 0.00018270000000000002 - Model_1: 0.00034655303345952697 - Model_2: 0.00034655303345952697 - ModelRW_1: 0.00022351645353306773 - ModelRW_2: 0.00022351645353306773 - JES_1: 0.0008274832528516816 - JES_2: 0.0008274832528516816 - ArtUnc_1: -4.650512749355942e-09 - ArtUnc_2: 2.6150404338355495e-07 - ArtUnc_3: 5.12557246908968e-07 - ArtUnc_4: 1.0849380135812087e-06 - ArtUnc_5: 7.030184433999337e-08 - ArtUnc_6: -6.666096450952222e-08 - ArtUnc_7: 8.926475091343498e-06 - ArtUnc_8: -3.752463903315676e-05 - ArtUnc_9: -4.525940513413666e-06 - ArtUnc_10: 3.1467905590806244e-05 - ArtUnc_11: -2.0233147902406997e-05 - ArtUnc_12: 2.021947318951445e-06 - ArtUnc_13: -4.003287853094295e-05 - ArtUnc_14: 9.54290296203011e-06 - ArtUnc_15: -1.5817618089945295e-05 - ArtUnc_16: 5.069765305450733e-07 - ArtUnc_17: -1.0889155969046879e-05 - ArtUnc_18: 7.854719394652192e-07 - ArtUnc_19: 2.3706046886005644e-05 - ArtUnc_20: -1.9083074205274243e-05 - ArtUnc_21: 4.747888848597217e-07 - ArtUnc_22: 0.00016734295161063723 - ArtUnc_23: 1.8956321121513973e-06 - ArtUnc_24: 0.0001391234856377672 - ArtUnc_25: 0.00018799400387012392 - ArtUnc_26: 3.117946243289525e-05 - ArtUnc_27: 0.00021123077073010498 - ArtUnc_28: 2.693125101744767e-06 - ArtUnc_29: 0.0005732465940048262 - ArtUnc_30: 0.00012951670447777832 - ArtUnc_31: -5.386786433193626e-05 - ArtUnc_32: -0.0002279172775553063 - ArtUnc_33: 2.3810441821111926e-07 - ArtUnc_34: -7.330782394982886e-06 - ArtUnc_35: -1.7685369090595917e-05 - ArtUnc_36: -2.4724312944298536e-06 - ArtUnc_37: -1.4607163820264878e-05 - ArtUnc_38: 2.6176429082255432e-06 - ArtUnc_39: -6.607915967338914e-07 - ArtUnc_40: -5.1362874816051534e-08 - ArtUnc_41: 1.5135293048599083e-06 - ArtUnc_42: -3.930922079681527e-08 - ArtUnc_43: 1.3049128874402319e-06 - ArtUnc_44: -7.96030395165809e-06 - ArtUnc_45: 5.351476142624853e-08 - ArtUnc_46: -3.500460120766658e-07 - ArtUnc_47: -2.698530947205398e-07 - ArtUnc_48: 6.382660114578908e-09 - ArtUnc_49: 2.4341397056357427e-06 - ArtUnc_50: 4.81169572330774e-07 - ArtUnc_51: 2.879156312045966e-08 - ArtUnc_52: 1.933283862988446e-08 - ArtUnc_53: 5.698775424400118e-09 - ArtUnc_54: -1.2428319793269074e-08 - ArtUnc_55: 1.8299365598447446e-08 - ArtUnc_56: -9.683602000634305e-10 - ArtUnc_57: -2.008998975123179e-09 - ArtUnc_58: -4.09381063276111e-09 - ArtUnc_59: 7.913059982895237e-09 - ArtUnc_60: 6.358131181272643e-09 - ArtUnc_61: 3.316418941539378e-11 - ArtUnc_62: 4.826728173643972e-09 - ArtUnc_63: -5.171061553907083e-10 - ArtUnc_64: 3.34943184805511e-07 - ArtUnc_65: -1.1614407621026812e-08 - ArtUnc_66: -2.3340415670957435e-07 - ArtUnc_67: -4.714533807607662e-09 - ArtUnc_68: -5.125500757971282e-10 - ArtUnc_69: 2.5681759201689222e-11 - ArtUnc_70: -4.617791891797858e-10 - ArtUnc_71: -1.726956563111836e-11 - ArtUnc_72: -1.0426947546361144e-09 - ArtUnc_73: 1.3974946479052858e-10 - ArtUnc_74: -7.388353615932547e-11 - ArtUnc_75: 2.2023115713533785e-09 - ArtUnc_76: -3.238875632136181e-11 - ArtUnc_77: 1.683694432077045e-10 - ArtUnc_78: -2.3319062783790383e-09 - ArtUnc_79: 6.984125752352948e-10 - ArtUnc_80: 2.4210672858428407e-10 - ArtUnc_81: -1.0645104275344316e-10 - ArtUnc_82: 9.551534802832154e-12 - ArtUnc_83: 4.247721654093233e-11 - ArtUnc_84: 1.2581519448969144e-11 - ArtUnc_85: -2.853203139020557e-13 - ArtUnc_86: -7.1550686480950606e-12 - ArtUnc_87: -8.385559175981213e-12 - ArtUnc_88: 9.054072666771776e-12 - ArtUnc_89: 6.684767466884986e-11 - ArtUnc_90: 1.8249590088465067e-11 - ArtUnc_91: -1.3769282793509156e-12 - ArtUnc_92: -2.0830196938451975e-10 - ArtUnc_93: 1.474440598941191e-11 - ArtUnc_94: 2.8062288957760026e-12 - ArtUnc_95: -4.9037181482300245e-11 - ArtUnc_96: 1.1351687655157902e-11 + StatMC: 4.69800000e-04 + RadErr: 1.82700000e-04 + Model_1: 3.46553033e-04 + Model_2: 3.46553033e-04 + ModelRW_1: 2.23516454e-04 + ModelRW_2: 2.23516454e-04 + JES_1: 8.27483253e-04 + JES_2: 8.27483253e-04 + ArtUnc_1: -4.65051275e-09 + ArtUnc_2: 2.61504043e-07 + ArtUnc_3: 5.12557247e-07 + ArtUnc_4: 1.08493801e-06 + ArtUnc_5: 7.03018443e-08 + ArtUnc_6: -6.66609645e-08 + ArtUnc_7: 8.92647509e-06 + ArtUnc_8: -3.75246390e-05 + ArtUnc_9: -4.52594051e-06 + ArtUnc_10: 3.14679056e-05 + ArtUnc_11: -2.02331479e-05 + ArtUnc_12: 2.02194732e-06 + ArtUnc_13: -4.00328785e-05 + ArtUnc_14: 9.54290296e-06 + ArtUnc_15: -1.58176181e-05 + ArtUnc_16: 5.06976531e-07 + ArtUnc_17: -1.08891560e-05 + ArtUnc_18: 7.85471939e-07 + ArtUnc_19: 2.37060469e-05 + ArtUnc_20: -1.90830742e-05 + ArtUnc_21: 4.74788885e-07 + ArtUnc_22: 1.67342952e-04 + ArtUnc_23: 1.89563211e-06 + ArtUnc_24: 1.39123486e-04 + ArtUnc_25: 1.87994004e-04 + ArtUnc_26: 3.11794624e-05 + ArtUnc_27: 2.11230771e-04 + ArtUnc_28: 2.69312510e-06 + ArtUnc_29: 5.73246594e-04 + ArtUnc_30: 1.29516704e-04 + ArtUnc_31: -5.38678643e-05 + ArtUnc_32: -2.27917278e-04 + ArtUnc_33: 2.38104418e-07 + ArtUnc_34: -7.33078239e-06 + ArtUnc_35: -1.76853691e-05 + ArtUnc_36: -2.47243129e-06 + ArtUnc_37: -1.46071638e-05 + ArtUnc_38: 2.61764291e-06 + ArtUnc_39: -6.60791597e-07 + ArtUnc_40: -5.13628748e-08 + ArtUnc_41: 1.51352930e-06 + ArtUnc_42: -3.93092208e-08 + ArtUnc_43: 1.30491289e-06 + ArtUnc_44: -7.96030395e-06 + ArtUnc_45: 5.35147614e-08 + ArtUnc_46: -3.50046012e-07 + ArtUnc_47: -2.69853095e-07 + ArtUnc_48: 6.38266011e-09 + ArtUnc_49: 2.43413971e-06 + ArtUnc_50: 4.81169572e-07 + ArtUnc_51: 2.87915631e-08 + ArtUnc_52: 1.93328386e-08 + ArtUnc_53: 5.69877542e-09 + ArtUnc_54: -1.24283198e-08 + ArtUnc_55: 1.82993656e-08 + ArtUnc_56: -9.68360200e-10 + ArtUnc_57: -2.00899898e-09 + ArtUnc_58: -4.09381063e-09 + ArtUnc_59: 7.91305998e-09 + ArtUnc_60: 6.35813118e-09 + ArtUnc_61: 3.31641894e-11 + ArtUnc_62: 4.82672817e-09 + ArtUnc_63: -5.17106155e-10 + ArtUnc_64: 3.34943185e-07 + ArtUnc_65: -1.16144076e-08 + ArtUnc_66: -2.33404157e-07 + ArtUnc_67: -4.71453381e-09 + ArtUnc_68: -5.12550076e-10 + ArtUnc_69: 2.56817592e-11 + ArtUnc_70: -4.61779189e-10 + ArtUnc_71: -1.72695656e-11 + ArtUnc_72: -1.04269475e-09 + ArtUnc_73: 1.39749465e-10 + ArtUnc_74: -7.38835362e-11 + ArtUnc_75: 2.20231157e-09 + ArtUnc_76: -3.23887563e-11 + ArtUnc_77: 1.68369443e-10 + ArtUnc_78: -2.33190628e-09 + ArtUnc_79: 6.98412575e-10 + ArtUnc_80: 2.42106729e-10 + ArtUnc_81: -1.06451043e-10 + ArtUnc_82: 9.55153480e-12 + ArtUnc_83: 4.24772165e-11 + ArtUnc_84: 1.25815194e-11 + ArtUnc_85: -2.85320314e-13 + ArtUnc_86: -7.15506865e-12 + ArtUnc_87: -8.38555918e-12 + ArtUnc_88: 9.05407267e-12 + ArtUnc_89: 6.68476747e-11 + ArtUnc_90: 1.82495901e-11 + ArtUnc_91: -1.37692828e-12 + ArtUnc_92: -2.08301969e-10 + ArtUnc_93: 1.47444060e-11 + ArtUnc_94: 2.80622890e-12 + ArtUnc_95: -4.90371815e-11 + ArtUnc_96: 1.13516877e-11 - stat: 0 Uncorr: 0.000169 - RCES: 0.00014482816853084897 - ElEn: 3.426159803628547e-05 - ElTh: 2.395988522510072e-05 - Lumi: 0.00013012999999999998 - LArN: 0.00010139999999999998 - StatMC: 0.00015885999999999998 - RadErr: 5.408e-05 - Model_1: 6.0945533470468524e-05 - Model_2: 6.0945533470468524e-05 - ModelRW_1: 6.931060669190537e-05 - ModelRW_2: 6.931060669190537e-05 - JES_1: 0.0002492305977403256 - JES_2: 0.0002492305977403256 - ArtUnc_1: 5.471569996118318e-10 - ArtUnc_2: -2.1548459534153544e-08 - ArtUnc_3: 1.6107173820174696e-09 - ArtUnc_4: 1.879064311830434e-07 - ArtUnc_5: 1.050117042374516e-09 - ArtUnc_6: 1.4980021086434547e-08 - ArtUnc_7: 1.0716030983489342e-06 - ArtUnc_8: -5.8520277451735335e-06 - ArtUnc_9: 7.491192402186086e-07 - ArtUnc_10: -8.052950538988503e-08 - ArtUnc_11: -5.725234485220118e-06 - ArtUnc_12: -9.685501549661442e-07 - ArtUnc_13: -1.3424257850248628e-06 - ArtUnc_14: -9.956049613002278e-07 - ArtUnc_15: 5.29772550663397e-07 - ArtUnc_16: 1.6738377684272918e-08 - ArtUnc_17: -3.582507838237691e-07 - ArtUnc_18: -1.264727437334715e-08 - ArtUnc_19: 1.233662996663388e-06 - ArtUnc_20: 8.403154663435293e-07 - ArtUnc_21: 6.79129868143396e-07 - ArtUnc_22: -1.776150220884529e-06 - ArtUnc_23: -4.784905450229317e-07 - ArtUnc_24: -5.169696883145389e-06 - ArtUnc_25: 2.8213503257829692e-05 - ArtUnc_26: -6.758352126525302e-06 - ArtUnc_27: -1.9482452456984413e-05 - ArtUnc_28: -1.8615587928710915e-07 - ArtUnc_29: 4.94000286483612e-06 - ArtUnc_30: 2.595975163818299e-06 - ArtUnc_31: -1.076324800799102e-06 - ArtUnc_32: -3.2874259781786615e-05 - ArtUnc_33: -3.299468307382029e-08 - ArtUnc_34: -1.2349402662050923e-06 - ArtUnc_35: -6.191515490195612e-06 - ArtUnc_36: -2.7249485883079676e-06 - ArtUnc_37: -5.989822561698278e-05 - ArtUnc_38: 1.040363962746263e-05 - ArtUnc_39: 7.720196274664037e-05 - ArtUnc_40: 1.5220534773987657e-06 - ArtUnc_41: 1.70937927886724e-05 - ArtUnc_42: 8.114505195690131e-07 - ArtUnc_43: -1.371526883447847e-05 - ArtUnc_44: 0.00024620974445310794 - ArtUnc_45: -1.2730256982223254e-06 - ArtUnc_46: 1.1643913116449547e-05 - ArtUnc_47: 1.6299789140107506e-06 - ArtUnc_48: -2.2809295116473704e-07 - ArtUnc_49: -3.634576712612296e-05 - ArtUnc_50: -2.4422571255481782e-06 - ArtUnc_51: -6.822122723981085e-08 - ArtUnc_52: 5.976234737191589e-08 - ArtUnc_53: -1.8446310222813494e-08 - ArtUnc_54: 2.4751852109216145e-08 - ArtUnc_55: 1.1310038013260833e-06 - ArtUnc_56: 1.0759820264168969e-06 - ArtUnc_57: 3.0780950207694145e-07 - ArtUnc_58: 6.812023712735847e-07 - ArtUnc_59: -7.960672216219715e-09 - ArtUnc_60: -5.267916630689513e-07 - ArtUnc_61: -3.399701646687149e-10 - ArtUnc_62: -6.6656039128050465e-09 - ArtUnc_63: 7.138800656368192e-10 - ArtUnc_64: -2.4775857851850117e-06 - ArtUnc_65: 3.624287910535524e-08 - ArtUnc_66: 1.8384640130182134e-06 - ArtUnc_67: 2.7181424246913548e-08 - ArtUnc_68: -2.8193276372482016e-08 - ArtUnc_69: -5.42760780524532e-10 - ArtUnc_70: 3.0846613497465428e-09 - ArtUnc_71: -5.4471592197849197e-11 - ArtUnc_72: -2.1302205731503017e-08 - ArtUnc_73: -8.471531075724741e-10 - ArtUnc_74: -1.1628840669622942e-08 - ArtUnc_75: 1.7170116614500534e-08 - ArtUnc_76: -2.341536895472736e-10 - ArtUnc_77: -2.7783117168958113e-10 - ArtUnc_78: 3.260211955439682e-08 - ArtUnc_79: 1.046351715994512e-08 - ArtUnc_80: -3.450248147908177e-10 - ArtUnc_81: 7.482156465457119e-10 - ArtUnc_82: 3.8370527796884825e-11 - ArtUnc_83: -3.247121662728555e-11 - ArtUnc_84: -1.4283148435103424e-09 - ArtUnc_85: 2.3167662235587087e-11 - ArtUnc_86: 6.903485286946707e-11 - ArtUnc_87: 6.463824938400358e-11 - ArtUnc_88: 6.4133573585991416e-12 - ArtUnc_89: 3.6365934066034854e-10 - ArtUnc_90: -2.5940032189813645e-10 - ArtUnc_91: 6.457000917868311e-11 - ArtUnc_92: 1.2350529808450879e-09 - ArtUnc_93: -1.151435439701838e-11 - ArtUnc_94: -3.2150143351094645e-11 - ArtUnc_95: -9.747009492310879e-11 - ArtUnc_96: -6.133126016765184e-11 + RCES: 1.44828169e-04 + ElEn: 3.42615980e-05 + ElTh: 2.39598852e-05 + Lumi: 1.30130000e-04 + LArN: 1.01400000e-04 + StatMC: 1.58860000e-04 + RadErr: 5.40800000e-05 + Model_1: 6.09455335e-05 + Model_2: 6.09455335e-05 + ModelRW_1: 6.93106067e-05 + ModelRW_2: 6.93106067e-05 + JES_1: 2.49230598e-04 + JES_2: 2.49230598e-04 + ArtUnc_1: 5.47157000e-10 + ArtUnc_2: -2.15484595e-08 + ArtUnc_3: 1.61071738e-09 + ArtUnc_4: 1.87906431e-07 + ArtUnc_5: 1.05011704e-09 + ArtUnc_6: 1.49800211e-08 + ArtUnc_7: 1.07160310e-06 + ArtUnc_8: -5.85202775e-06 + ArtUnc_9: 7.49119240e-07 + ArtUnc_10: -8.05295054e-08 + ArtUnc_11: -5.72523449e-06 + ArtUnc_12: -9.68550155e-07 + ArtUnc_13: -1.34242579e-06 + ArtUnc_14: -9.95604961e-07 + ArtUnc_15: 5.29772551e-07 + ArtUnc_16: 1.67383777e-08 + ArtUnc_17: -3.58250784e-07 + ArtUnc_18: -1.26472744e-08 + ArtUnc_19: 1.23366300e-06 + ArtUnc_20: 8.40315466e-07 + ArtUnc_21: 6.79129868e-07 + ArtUnc_22: -1.77615022e-06 + ArtUnc_23: -4.78490545e-07 + ArtUnc_24: -5.16969688e-06 + ArtUnc_25: 2.82135033e-05 + ArtUnc_26: -6.75835213e-06 + ArtUnc_27: -1.94824525e-05 + ArtUnc_28: -1.86155879e-07 + ArtUnc_29: 4.94000286e-06 + ArtUnc_30: 2.59597516e-06 + ArtUnc_31: -1.07632480e-06 + ArtUnc_32: -3.28742598e-05 + ArtUnc_33: -3.29946831e-08 + ArtUnc_34: -1.23494027e-06 + ArtUnc_35: -6.19151549e-06 + ArtUnc_36: -2.72494859e-06 + ArtUnc_37: -5.98982256e-05 + ArtUnc_38: 1.04036396e-05 + ArtUnc_39: 7.72019627e-05 + ArtUnc_40: 1.52205348e-06 + ArtUnc_41: 1.70937928e-05 + ArtUnc_42: 8.11450520e-07 + ArtUnc_43: -1.37152688e-05 + ArtUnc_44: 2.46209744e-04 + ArtUnc_45: -1.27302570e-06 + ArtUnc_46: 1.16439131e-05 + ArtUnc_47: 1.62997891e-06 + ArtUnc_48: -2.28092951e-07 + ArtUnc_49: -3.63457671e-05 + ArtUnc_50: -2.44225713e-06 + ArtUnc_51: -6.82212272e-08 + ArtUnc_52: 5.97623474e-08 + ArtUnc_53: -1.84463102e-08 + ArtUnc_54: 2.47518521e-08 + ArtUnc_55: 1.13100380e-06 + ArtUnc_56: 1.07598203e-06 + ArtUnc_57: 3.07809502e-07 + ArtUnc_58: 6.81202371e-07 + ArtUnc_59: -7.96067222e-09 + ArtUnc_60: -5.26791663e-07 + ArtUnc_61: -3.39970165e-10 + ArtUnc_62: -6.66560391e-09 + ArtUnc_63: 7.13880066e-10 + ArtUnc_64: -2.47758579e-06 + ArtUnc_65: 3.62428791e-08 + ArtUnc_66: 1.83846401e-06 + ArtUnc_67: 2.71814242e-08 + ArtUnc_68: -2.81932764e-08 + ArtUnc_69: -5.42760781e-10 + ArtUnc_70: 3.08466135e-09 + ArtUnc_71: -5.44715922e-11 + ArtUnc_72: -2.13022057e-08 + ArtUnc_73: -8.47153108e-10 + ArtUnc_74: -1.16288407e-08 + ArtUnc_75: 1.71701166e-08 + ArtUnc_76: -2.34153690e-10 + ArtUnc_77: -2.77831172e-10 + ArtUnc_78: 3.26021196e-08 + ArtUnc_79: 1.04635172e-08 + ArtUnc_80: -3.45024815e-10 + ArtUnc_81: 7.48215647e-10 + ArtUnc_82: 3.83705278e-11 + ArtUnc_83: -3.24712166e-11 + ArtUnc_84: -1.42831484e-09 + ArtUnc_85: 2.31676622e-11 + ArtUnc_86: 6.90348529e-11 + ArtUnc_87: 6.46382494e-11 + ArtUnc_88: 6.41335736e-12 + ArtUnc_89: 3.63659341e-10 + ArtUnc_90: -2.59400322e-10 + ArtUnc_91: 6.45700092e-11 + ArtUnc_92: 1.23505298e-09 + ArtUnc_93: -1.15143544e-11 + ArtUnc_94: -3.21501434e-11 + ArtUnc_95: -9.74700949e-11 + ArtUnc_96: -6.13312602e-11 - stat: 0 - Uncorr: 3.6400000000000004e-05 - RCES: 3.46813882075098e-05 - ElEn: 1.8383801891882974e-05 - ElTh: 1.4297139713942788e-05 - Lumi: 2.8028000000000003e-05 - LArN: 2.1839999999999998e-05 - StatMC: 3.6764e-05 - RadErr: 2.8392000000000002e-05 - Model_1: 0.00010578600289263225 - Model_2: 0.00010578600289263225 - ModelRW_1: 0.00011299283520648553 - ModelRW_2: 0.00011299283520648553 - JES_1: 0.00010517797163855176 - JES_2: 0.00010517797163855176 - ArtUnc_1: 3.72574843754151e-13 - ArtUnc_2: -5.5762134156865614e-11 - ArtUnc_3: -1.8792997287274888e-10 - ArtUnc_4: -4.5867840932993047e-10 - ArtUnc_5: -1.4436446732121365e-11 - ArtUnc_6: 1.867396902546295e-11 - ArtUnc_7: -2.3048097772345663e-09 - ArtUnc_8: 7.845765890473015e-10 - ArtUnc_9: 1.977290840908495e-09 - ArtUnc_10: -1.1619921967779412e-08 - ArtUnc_11: -3.343505219064145e-09 - ArtUnc_12: -1.858073969329258e-09 - ArtUnc_13: 6.893470512185661e-08 - ArtUnc_14: -8.552736714474256e-09 - ArtUnc_15: 1.584680464086288e-08 - ArtUnc_16: -4.681586319467342e-10 - ArtUnc_17: 2.577357061816638e-08 - ArtUnc_18: -1.3883467658975774e-09 - ArtUnc_19: -1.0772612664045383e-07 - ArtUnc_20: 9.127921594949682e-08 - ArtUnc_21: -6.69780382479327e-11 - ArtUnc_22: -1.1270512654920153e-07 - ArtUnc_23: -1.33234118677314e-09 - ArtUnc_24: -1.555632830104435e-06 - ArtUnc_25: 7.606353978765029e-07 - ArtUnc_26: -3.851083482718545e-07 - ArtUnc_27: -1.4525484734098774e-06 - ArtUnc_28: -5.0885052975844806e-08 - ArtUnc_29: -1.61172054026889e-06 - ArtUnc_30: -4.1133548073345233e-07 - ArtUnc_31: 1.6983994409471313e-07 - ArtUnc_32: 1.6892305922854216e-06 - ArtUnc_33: -1.457067664224312e-10 - ArtUnc_34: 8.989143287517297e-08 - ArtUnc_35: -8.88695551901891e-08 - ArtUnc_36: -7.18178209779854e-07 - ArtUnc_37: -2.0778125037738755e-06 - ArtUnc_38: 3.6391782595336935e-07 - ArtUnc_39: 2.7286713820166425e-06 - ArtUnc_40: 5.455195979650584e-08 - ArtUnc_41: 7.549069678202054e-06 - ArtUnc_42: 7.453588459557469e-08 - ArtUnc_43: -1.1101608282611014e-05 - ArtUnc_44: 2.001257463619583e-06 - ArtUnc_45: -2.7433672163892875e-08 - ArtUnc_46: -9.517229932447282e-07 - ArtUnc_47: 5.589666364914897e-07 - ArtUnc_48: -2.4944416287900184e-08 - ArtUnc_49: -2.347177907621313e-05 - ArtUnc_50: -1.4282041253317663e-06 - ArtUnc_51: 4.788002977745001e-07 - ArtUnc_52: 8.903094382816588e-07 - ArtUnc_53: -1.2459460515372746e-07 - ArtUnc_54: 8.14925320564319e-08 - ArtUnc_55: 1.2594223585421794e-05 - ArtUnc_56: 1.4274865327025676e-05 - ArtUnc_57: 4.174072422605024e-06 - ArtUnc_58: 2.230354844345179e-05 - ArtUnc_59: -2.190809742086046e-07 - ArtUnc_60: -1.8910934551201536e-05 - ArtUnc_61: -1.094479673965532e-08 - ArtUnc_62: -6.893892056174763e-08 - ArtUnc_63: 5.82376697707184e-09 - ArtUnc_64: 5.660326229221998e-05 - ArtUnc_65: -8.015406273538802e-07 - ArtUnc_66: -3.968347141017291e-05 - ArtUnc_67: -5.263076671626725e-07 - ArtUnc_68: 3.5855468780181044e-07 - ArtUnc_69: 1.0173186218331753e-08 - ArtUnc_70: -1.2295317660275172e-07 - ArtUnc_71: -2.4793314171900886e-09 - ArtUnc_72: -6.571712548162341e-07 - ArtUnc_73: -4.7783870276875176e-08 - ArtUnc_74: -1.005910223108769e-07 - ArtUnc_75: 8.417761885970648e-07 - ArtUnc_76: 8.396096597475887e-09 - ArtUnc_77: 7.423005449611018e-09 - ArtUnc_78: -1.1325365974715549e-07 - ArtUnc_79: -4.231882205546767e-08 - ArtUnc_80: 6.129071591428702e-09 - ArtUnc_81: -9.456587992687747e-09 - ArtUnc_82: -1.5188352334206963e-10 - ArtUnc_83: 5.014588526357662e-09 - ArtUnc_84: -1.1798190978592541e-08 - ArtUnc_85: -2.631729931570385e-10 - ArtUnc_86: 1.9245738468918398e-11 - ArtUnc_87: 2.5939757535041884e-10 - ArtUnc_88: 1.2062301518547448e-09 - ArtUnc_89: 2.027714838316177e-08 - ArtUnc_90: -3.0170830838406754e-09 - ArtUnc_91: -1.0921148670096631e-09 - ArtUnc_92: -2.351887988493733e-08 - ArtUnc_93: 4.3944548208894744e-10 - ArtUnc_94: 3.7330271507787496e-10 - ArtUnc_95: -3.296110908263646e-09 - ArtUnc_96: 4.3659842526486204e-11 + Uncorr: 3.64000000e-05 + RCES: 3.46813882e-05 + ElEn: 1.83838019e-05 + ElTh: 1.42971397e-05 + Lumi: 2.80280000e-05 + LArN: 2.18400000e-05 + StatMC: 3.67640000e-05 + RadErr: 2.83920000e-05 + Model_1: 1.05786003e-04 + Model_2: 1.05786003e-04 + ModelRW_1: 1.12992835e-04 + ModelRW_2: 1.12992835e-04 + JES_1: 1.05177972e-04 + JES_2: 1.05177972e-04 + ArtUnc_1: 3.72574844e-13 + ArtUnc_2: -5.57621342e-11 + ArtUnc_3: -1.87929973e-10 + ArtUnc_4: -4.58678409e-10 + ArtUnc_5: -1.44364467e-11 + ArtUnc_6: 1.86739690e-11 + ArtUnc_7: -2.30480978e-09 + ArtUnc_8: 7.84576589e-10 + ArtUnc_9: 1.97729084e-09 + ArtUnc_10: -1.16199220e-08 + ArtUnc_11: -3.34350522e-09 + ArtUnc_12: -1.85807397e-09 + ArtUnc_13: 6.89347051e-08 + ArtUnc_14: -8.55273671e-09 + ArtUnc_15: 1.58468046e-08 + ArtUnc_16: -4.68158632e-10 + ArtUnc_17: 2.57735706e-08 + ArtUnc_18: -1.38834677e-09 + ArtUnc_19: -1.07726127e-07 + ArtUnc_20: 9.12792159e-08 + ArtUnc_21: -6.69780382e-11 + ArtUnc_22: -1.12705127e-07 + ArtUnc_23: -1.33234119e-09 + ArtUnc_24: -1.55563283e-06 + ArtUnc_25: 7.60635398e-07 + ArtUnc_26: -3.85108348e-07 + ArtUnc_27: -1.45254847e-06 + ArtUnc_28: -5.08850530e-08 + ArtUnc_29: -1.61172054e-06 + ArtUnc_30: -4.11335481e-07 + ArtUnc_31: 1.69839944e-07 + ArtUnc_32: 1.68923059e-06 + ArtUnc_33: -1.45706766e-10 + ArtUnc_34: 8.98914329e-08 + ArtUnc_35: -8.88695552e-08 + ArtUnc_36: -7.18178210e-07 + ArtUnc_37: -2.07781250e-06 + ArtUnc_38: 3.63917826e-07 + ArtUnc_39: 2.72867138e-06 + ArtUnc_40: 5.45519598e-08 + ArtUnc_41: 7.54906968e-06 + ArtUnc_42: 7.45358846e-08 + ArtUnc_43: -1.11016083e-05 + ArtUnc_44: 2.00125746e-06 + ArtUnc_45: -2.74336722e-08 + ArtUnc_46: -9.51722993e-07 + ArtUnc_47: 5.58966636e-07 + ArtUnc_48: -2.49444163e-08 + ArtUnc_49: -2.34717791e-05 + ArtUnc_50: -1.42820413e-06 + ArtUnc_51: 4.78800298e-07 + ArtUnc_52: 8.90309438e-07 + ArtUnc_53: -1.24594605e-07 + ArtUnc_54: 8.14925321e-08 + ArtUnc_55: 1.25942236e-05 + ArtUnc_56: 1.42748653e-05 + ArtUnc_57: 4.17407242e-06 + ArtUnc_58: 2.23035484e-05 + ArtUnc_59: -2.19080974e-07 + ArtUnc_60: -1.89109346e-05 + ArtUnc_61: -1.09447967e-08 + ArtUnc_62: -6.89389206e-08 + ArtUnc_63: 5.82376698e-09 + ArtUnc_64: 5.66032623e-05 + ArtUnc_65: -8.01540627e-07 + ArtUnc_66: -3.96834714e-05 + ArtUnc_67: -5.26307667e-07 + ArtUnc_68: 3.58554688e-07 + ArtUnc_69: 1.01731862e-08 + ArtUnc_70: -1.22953177e-07 + ArtUnc_71: -2.47933142e-09 + ArtUnc_72: -6.57171255e-07 + ArtUnc_73: -4.77838703e-08 + ArtUnc_74: -1.00591022e-07 + ArtUnc_75: 8.41776189e-07 + ArtUnc_76: 8.39609660e-09 + ArtUnc_77: 7.42300545e-09 + ArtUnc_78: -1.13253660e-07 + ArtUnc_79: -4.23188221e-08 + ArtUnc_80: 6.12907159e-09 + ArtUnc_81: -9.45658799e-09 + ArtUnc_82: -1.51883523e-10 + ArtUnc_83: 5.01458853e-09 + ArtUnc_84: -1.17981910e-08 + ArtUnc_85: -2.63172993e-10 + ArtUnc_86: 1.92457385e-11 + ArtUnc_87: 2.59397575e-10 + ArtUnc_88: 1.20623015e-09 + ArtUnc_89: 2.02771484e-08 + ArtUnc_90: -3.01708308e-09 + ArtUnc_91: -1.09211487e-09 + ArtUnc_92: -2.35188799e-08 + ArtUnc_93: 4.39445482e-10 + ArtUnc_94: 3.73302715e-10 + ArtUnc_95: -3.29611091e-09 + ArtUnc_96: 4.36598425e-11 - stat: 0 - Uncorr: 5.730000000000001e-06 - RCES: 1.1443478528292873e-05 - ElEn: 6.252267647821869e-06 - ElTh: 5.6197104629598135e-06 - Lumi: 4.4121000000000005e-06 - LArN: 3.438e-06 - StatMC: 1.1460000000000002e-05 - RadErr: 4.9278000000000005e-06 - Model_1: 3.152239604122758e-05 - Model_2: 3.152239604122758e-05 - ModelRW_1: 1.1547407290166914e-05 - ModelRW_2: 1.1547407290166914e-05 - JES_1: 1.767669013004839e-05 - JES_2: 1.767669013004839e-05 - ArtUnc_1: -5.241462259945504e-15 - ArtUnc_2: 8.207592964730536e-13 - ArtUnc_3: 3.847729041683561e-12 - ArtUnc_4: 1.3792222266569431e-11 - ArtUnc_5: 5.052176641803228e-13 - ArtUnc_6: 2.249495667603643e-14 - ArtUnc_7: 6.265328750309011e-11 - ArtUnc_8: -2.377277478183806e-10 - ArtUnc_9: -3.167587896563486e-12 - ArtUnc_10: -9.980068575788724e-12 - ArtUnc_11: 8.486503372824655e-11 - ArtUnc_12: 1.4472528442572177e-11 - ArtUnc_13: 1.9485505226517446e-10 - ArtUnc_14: 1.3385041148049875e-11 - ArtUnc_15: 1.2777939886617276e-11 - ArtUnc_16: -1.4594414874811343e-12 - ArtUnc_17: -7.622530132064897e-12 - ArtUnc_18: -3.3382254149254044e-13 - ArtUnc_19: 4.1744491889578663e-10 - ArtUnc_20: -1.458526363026746e-10 - ArtUnc_21: -1.2183263999339942e-10 - ArtUnc_22: 2.970142757468545e-09 - ArtUnc_23: 2.2299854903822662e-10 - ArtUnc_24: 7.119878894173299e-10 - ArtUnc_25: -4.04907482471203e-09 - ArtUnc_26: 1.362777303429574e-09 - ArtUnc_27: 7.095862095533802e-09 - ArtUnc_28: -5.718772664874926e-10 - ArtUnc_29: -3.751773345438866e-09 - ArtUnc_30: -2.9515041503778913e-09 - ArtUnc_31: 1.1378459995070667e-09 - ArtUnc_32: 2.1546215977208804e-08 - ArtUnc_33: -2.5580061091301333e-11 - ArtUnc_34: -7.500012142866035e-10 - ArtUnc_35: -8.728016111705376e-09 - ArtUnc_36: 1.4591722382626946e-08 - ArtUnc_37: -1.5180310001887374e-07 - ArtUnc_38: 2.908727650187965e-08 - ArtUnc_39: 2.400366075531249e-07 - ArtUnc_40: 3.6335764936557314e-09 - ArtUnc_41: -1.7897560141455276e-07 - ArtUnc_42: 3.862399379342501e-09 - ArtUnc_43: 3.891403788701593e-07 - ArtUnc_44: -3.012756355155561e-07 - ArtUnc_45: 2.2701893778899755e-10 - ArtUnc_46: 3.043726544595362e-08 - ArtUnc_47: -6.82161911121795e-08 - ArtUnc_48: 5.213033624694447e-09 - ArtUnc_49: 7.909571133748741e-07 - ArtUnc_50: -4.000696485508816e-09 - ArtUnc_51: 1.2244715995664577e-07 - ArtUnc_52: -2.387388760086234e-08 - ArtUnc_53: -1.3473575118922905e-08 - ArtUnc_54: 2.9872328342697794e-08 - ArtUnc_55: -1.581319061040107e-06 - ArtUnc_56: 1.933241606756599e-06 - ArtUnc_57: 4.697845033799855e-07 - ArtUnc_58: -3.308935751188501e-06 - ArtUnc_59: 1.8756063896365827e-07 - ArtUnc_60: -3.6319870239236007e-06 - ArtUnc_61: 8.974999862891205e-09 - ArtUnc_62: -3.2100263389846357e-07 - ArtUnc_63: 3.687766345572873e-08 - ArtUnc_64: -7.773053107356384e-06 - ArtUnc_65: 6.977881398509863e-07 - ArtUnc_66: -8.346360521631696e-06 - ArtUnc_67: -3.417827012533332e-07 - ArtUnc_68: -4.126287864727083e-07 - ArtUnc_69: 3.5351700709203385e-09 - ArtUnc_70: -4.836847420599969e-07 - ArtUnc_71: -2.5243277693506292e-08 - ArtUnc_72: -5.773132591863485e-06 - ArtUnc_73: -4.681112618505477e-07 - ArtUnc_74: -1.577039913530142e-06 - ArtUnc_75: 9.86917479891918e-06 - ArtUnc_76: 7.128038724576999e-08 - ArtUnc_77: -3.1454011412941795e-08 - ArtUnc_78: 1.8891715977876717e-05 - ArtUnc_79: 1.349982111950535e-05 - ArtUnc_80: -7.125930552507109e-08 - ArtUnc_81: 4.94833375371924e-07 - ArtUnc_82: 3.523517435289861e-08 - ArtUnc_83: -5.926496319977509e-08 - ArtUnc_84: -1.4452008476412964e-07 - ArtUnc_85: 1.508320644838305e-08 - ArtUnc_86: 4.377923905507967e-09 - ArtUnc_87: 5.063614671791702e-09 - ArtUnc_88: 6.745731559486469e-09 - ArtUnc_89: 2.873263317578852e-07 - ArtUnc_90: -9.439684959935189e-08 - ArtUnc_91: -2.3971753920997772e-08 - ArtUnc_92: -4.26823292277409e-08 - ArtUnc_93: 1.5311556383332444e-09 - ArtUnc_94: -4.599464050398569e-10 - ArtUnc_95: -1.9906259590373583e-08 - ArtUnc_96: 2.321632159279879e-09 + Uncorr: 5.73000000e-06 + RCES: 1.14434785e-05 + ElEn: 6.25226765e-06 + ElTh: 5.61971046e-06 + Lumi: 4.41210000e-06 + LArN: 3.43800000e-06 + StatMC: 1.14600000e-05 + RadErr: 4.92780000e-06 + Model_1: 3.15223960e-05 + Model_2: 3.15223960e-05 + ModelRW_1: 1.15474073e-05 + ModelRW_2: 1.15474073e-05 + JES_1: 1.76766901e-05 + JES_2: 1.76766901e-05 + ArtUnc_1: -5.24146226e-15 + ArtUnc_2: 8.20759296e-13 + ArtUnc_3: 3.84772904e-12 + ArtUnc_4: 1.37922223e-11 + ArtUnc_5: 5.05217664e-13 + ArtUnc_6: 2.24949567e-14 + ArtUnc_7: 6.26532875e-11 + ArtUnc_8: -2.37727748e-10 + ArtUnc_9: -3.16758790e-12 + ArtUnc_10: -9.98006858e-12 + ArtUnc_11: 8.48650337e-11 + ArtUnc_12: 1.44725284e-11 + ArtUnc_13: 1.94855052e-10 + ArtUnc_14: 1.33850411e-11 + ArtUnc_15: 1.27779399e-11 + ArtUnc_16: -1.45944149e-12 + ArtUnc_17: -7.62253013e-12 + ArtUnc_18: -3.33822541e-13 + ArtUnc_19: 4.17444919e-10 + ArtUnc_20: -1.45852636e-10 + ArtUnc_21: -1.21832640e-10 + ArtUnc_22: 2.97014276e-09 + ArtUnc_23: 2.22998549e-10 + ArtUnc_24: 7.11987889e-10 + ArtUnc_25: -4.04907482e-09 + ArtUnc_26: 1.36277730e-09 + ArtUnc_27: 7.09586210e-09 + ArtUnc_28: -5.71877266e-10 + ArtUnc_29: -3.75177335e-09 + ArtUnc_30: -2.95150415e-09 + ArtUnc_31: 1.13784600e-09 + ArtUnc_32: 2.15462160e-08 + ArtUnc_33: -2.55800611e-11 + ArtUnc_34: -7.50001214e-10 + ArtUnc_35: -8.72801611e-09 + ArtUnc_36: 1.45917224e-08 + ArtUnc_37: -1.51803100e-07 + ArtUnc_38: 2.90872765e-08 + ArtUnc_39: 2.40036608e-07 + ArtUnc_40: 3.63357649e-09 + ArtUnc_41: -1.78975601e-07 + ArtUnc_42: 3.86239938e-09 + ArtUnc_43: 3.89140379e-07 + ArtUnc_44: -3.01275636e-07 + ArtUnc_45: 2.27018938e-10 + ArtUnc_46: 3.04372654e-08 + ArtUnc_47: -6.82161911e-08 + ArtUnc_48: 5.21303362e-09 + ArtUnc_49: 7.90957113e-07 + ArtUnc_50: -4.00069649e-09 + ArtUnc_51: 1.22447160e-07 + ArtUnc_52: -2.38738876e-08 + ArtUnc_53: -1.34735751e-08 + ArtUnc_54: 2.98723283e-08 + ArtUnc_55: -1.58131906e-06 + ArtUnc_56: 1.93324161e-06 + ArtUnc_57: 4.69784503e-07 + ArtUnc_58: -3.30893575e-06 + ArtUnc_59: 1.87560639e-07 + ArtUnc_60: -3.63198702e-06 + ArtUnc_61: 8.97499986e-09 + ArtUnc_62: -3.21002634e-07 + ArtUnc_63: 3.68776635e-08 + ArtUnc_64: -7.77305311e-06 + ArtUnc_65: 6.97788140e-07 + ArtUnc_66: -8.34636052e-06 + ArtUnc_67: -3.41782701e-07 + ArtUnc_68: -4.12628786e-07 + ArtUnc_69: 3.53517007e-09 + ArtUnc_70: -4.83684742e-07 + ArtUnc_71: -2.52432777e-08 + ArtUnc_72: -5.77313259e-06 + ArtUnc_73: -4.68111262e-07 + ArtUnc_74: -1.57703991e-06 + ArtUnc_75: 9.86917480e-06 + ArtUnc_76: 7.12803872e-08 + ArtUnc_77: -3.14540114e-08 + ArtUnc_78: 1.88917160e-05 + ArtUnc_79: 1.34998211e-05 + ArtUnc_80: -7.12593055e-08 + ArtUnc_81: 4.94833375e-07 + ArtUnc_82: 3.52351744e-08 + ArtUnc_83: -5.92649632e-08 + ArtUnc_84: -1.44520085e-07 + ArtUnc_85: 1.50832064e-08 + ArtUnc_86: 4.37792391e-09 + ArtUnc_87: 5.06361467e-09 + ArtUnc_88: 6.74573156e-09 + ArtUnc_89: 2.87326332e-07 + ArtUnc_90: -9.43968496e-08 + ArtUnc_91: -2.39717539e-08 + ArtUnc_92: -4.26823292e-08 + ArtUnc_93: 1.53115564e-09 + ArtUnc_94: -4.59946405e-10 + ArtUnc_95: -1.99062596e-08 + ArtUnc_96: 2.32163216e-09 - stat: 0 Uncorr: 1.02e-06 - RCES: 1.94571516928866e-06 - ElEn: 9.641428265563149e-07 - ElTh: 9.552668946425392e-07 - Lumi: 7.854e-07 + RCES: 1.94571517e-06 + ElEn: 9.64142827e-07 + ElTh: 9.55266895e-07 + Lumi: 7.85400000e-07 LArN: 6.12e-07 - StatMC: 6.6504e-06 - RadErr: 2.4378e-06 - Model_1: 2.2647215987842745e-06 - Model_2: 2.2647215987842745e-06 - ModelRW_1: 9.73686037693876e-07 - ModelRW_2: 9.73686037693876e-07 - JES_1: 3.354394880600672e-06 - JES_2: 3.354394880600672e-06 - ArtUnc_1: -1.9019991291243223e-17 - ArtUnc_2: 1.0507157366899366e-14 - ArtUnc_3: 7.405936115075455e-14 - ArtUnc_4: 4.1516782877622893e-13 - ArtUnc_5: 1.4607047978177815e-14 - ArtUnc_6: 3.987043331119774e-15 - ArtUnc_7: 2.9871234429873815e-12 - ArtUnc_8: -1.28901101419786e-11 - ArtUnc_9: 1.936248767826609e-13 - ArtUnc_10: -1.9130658824214493e-13 - ArtUnc_11: -3.400051045086563e-13 - ArtUnc_12: -3.6520029181094834e-14 - ArtUnc_13: 7.1714396580652244e-12 - ArtUnc_14: -1.2279063899775683e-13 - ArtUnc_15: 5.068030375999428e-14 - ArtUnc_16: 1.814635154565131e-15 - ArtUnc_17: -2.5823036770884942e-12 - ArtUnc_18: 7.732364342860023e-14 - ArtUnc_19: 1.0368599030336335e-11 - ArtUnc_20: 2.537794841164756e-11 - ArtUnc_21: -1.8355254578712134e-12 - ArtUnc_22: 3.23052714866025e-10 - ArtUnc_23: 6.571649960662051e-12 - ArtUnc_24: -1.315256411252612e-10 - ArtUnc_25: -2.5802325607447383e-10 - ArtUnc_26: 5.448016000703067e-11 - ArtUnc_27: 9.181928486933075e-10 - ArtUnc_28: 4.266311332429477e-11 - ArtUnc_29: 2.121381067959539e-10 - ArtUnc_30: 1.2336925894313725e-10 - ArtUnc_31: -5.0572066259762264e-11 - ArtUnc_32: 1.9897910843142253e-09 - ArtUnc_33: -5.964743379366253e-13 - ArtUnc_34: -4.2291022066909204e-11 - ArtUnc_35: -6.372771500145227e-11 - ArtUnc_36: 8.992438540225526e-10 - ArtUnc_37: -2.823869184278453e-09 - ArtUnc_38: 5.029805408362752e-10 - ArtUnc_39: 3.7603353015553514e-09 - ArtUnc_40: -1.522549579025299e-11 - ArtUnc_41: -1.553079400463468e-08 - ArtUnc_42: 1.1200097112152992e-10 - ArtUnc_43: 3.320458370959093e-08 - ArtUnc_44: 1.612778691079218e-08 - ArtUnc_45: -1.9434751816654295e-10 - ArtUnc_46: 4.818719281818341e-09 - ArtUnc_47: -3.5936833342592e-10 - ArtUnc_48: -1.4452431492510908e-11 - ArtUnc_49: 1.156191469303947e-07 - ArtUnc_50: 3.095265809797049e-09 - ArtUnc_51: -1.990250058016618e-09 - ArtUnc_52: 1.0551540835680762e-09 - ArtUnc_53: 2.583986842251015e-11 - ArtUnc_54: -2.7359896160844426e-10 - ArtUnc_55: -1.714666851039895e-08 - ArtUnc_56: -9.346685172236354e-09 - ArtUnc_57: -2.2964573279275797e-09 - ArtUnc_58: -2.541050169654537e-08 - ArtUnc_59: 2.4527977931268276e-10 - ArtUnc_60: 4.26908642864609e-08 - ArtUnc_61: 1.0006795078580084e-10 - ArtUnc_62: -1.5073637832204924e-09 - ArtUnc_63: 3.8752541563071965e-11 - ArtUnc_64: -7.557892352678078e-08 - ArtUnc_65: -7.762771204776205e-09 - ArtUnc_66: 2.1676490443910404e-07 - ArtUnc_67: 3.088925173796808e-08 - ArtUnc_68: -3.7773234498553116e-08 - ArtUnc_69: -9.873502259301812e-09 - ArtUnc_70: 2.373128831845414e-07 - ArtUnc_71: 2.8574018820224212e-09 - ArtUnc_72: -7.728916750927325e-08 - ArtUnc_73: -1.8004829794967403e-08 - ArtUnc_74: 1.1896352758006183e-06 - ArtUnc_75: 2.2098648925167571e-07 - ArtUnc_76: 2.7860180711512064e-08 - ArtUnc_77: 7.187084774475774e-08 - ArtUnc_78: 2.2916415135354548e-06 - ArtUnc_79: -4.401578860181456e-06 - ArtUnc_80: 8.779094540533577e-08 - ArtUnc_81: -1.1345022521150932e-07 - ArtUnc_82: -1.1381576922669683e-08 - ArtUnc_83: 3.163933993362474e-07 - ArtUnc_84: -1.3329149678621743e-06 - ArtUnc_85: -2.135394470958957e-08 - ArtUnc_86: 5.592598844023283e-08 - ArtUnc_87: 1.0941707459513449e-07 - ArtUnc_88: 1.1376874495446983e-07 - ArtUnc_89: 2.6704569588183046e-06 - ArtUnc_90: -4.823102494690392e-07 - ArtUnc_91: 1.4649026332982186e-07 - ArtUnc_92: -8.784470317925978e-06 - ArtUnc_93: 3.280591100098844e-08 - ArtUnc_94: 1.8810024653809077e-07 - ArtUnc_95: -4.025966804622898e-07 - ArtUnc_96: -1.8317314419579824e-08 + StatMC: 6.65040000e-06 + RadErr: 2.43780000e-06 + Model_1: 2.26472160e-06 + Model_2: 2.26472160e-06 + ModelRW_1: 9.73686038e-07 + ModelRW_2: 9.73686038e-07 + JES_1: 3.35439488e-06 + JES_2: 3.35439488e-06 + ArtUnc_1: -1.90199913e-17 + ArtUnc_2: 1.05071574e-14 + ArtUnc_3: 7.40593612e-14 + ArtUnc_4: 4.15167829e-13 + ArtUnc_5: 1.46070480e-14 + ArtUnc_6: 3.98704333e-15 + ArtUnc_7: 2.98712344e-12 + ArtUnc_8: -1.28901101e-11 + ArtUnc_9: 1.93624877e-13 + ArtUnc_10: -1.91306588e-13 + ArtUnc_11: -3.40005105e-13 + ArtUnc_12: -3.65200292e-14 + ArtUnc_13: 7.17143966e-12 + ArtUnc_14: -1.22790639e-13 + ArtUnc_15: 5.06803038e-14 + ArtUnc_16: 1.81463515e-15 + ArtUnc_17: -2.58230368e-12 + ArtUnc_18: 7.73236434e-14 + ArtUnc_19: 1.03685990e-11 + ArtUnc_20: 2.53779484e-11 + ArtUnc_21: -1.83552546e-12 + ArtUnc_22: 3.23052715e-10 + ArtUnc_23: 6.57164996e-12 + ArtUnc_24: -1.31525641e-10 + ArtUnc_25: -2.58023256e-10 + ArtUnc_26: 5.44801600e-11 + ArtUnc_27: 9.18192849e-10 + ArtUnc_28: 4.26631133e-11 + ArtUnc_29: 2.12138107e-10 + ArtUnc_30: 1.23369259e-10 + ArtUnc_31: -5.05720663e-11 + ArtUnc_32: 1.98979108e-09 + ArtUnc_33: -5.96474338e-13 + ArtUnc_34: -4.22910221e-11 + ArtUnc_35: -6.37277150e-11 + ArtUnc_36: 8.99243854e-10 + ArtUnc_37: -2.82386918e-09 + ArtUnc_38: 5.02980541e-10 + ArtUnc_39: 3.76033530e-09 + ArtUnc_40: -1.52254958e-11 + ArtUnc_41: -1.55307940e-08 + ArtUnc_42: 1.12000971e-10 + ArtUnc_43: 3.32045837e-08 + ArtUnc_44: 1.61277869e-08 + ArtUnc_45: -1.94347518e-10 + ArtUnc_46: 4.81871928e-09 + ArtUnc_47: -3.59368333e-10 + ArtUnc_48: -1.44524315e-11 + ArtUnc_49: 1.15619147e-07 + ArtUnc_50: 3.09526581e-09 + ArtUnc_51: -1.99025006e-09 + ArtUnc_52: 1.05515408e-09 + ArtUnc_53: 2.58398684e-11 + ArtUnc_54: -2.73598962e-10 + ArtUnc_55: -1.71466685e-08 + ArtUnc_56: -9.34668517e-09 + ArtUnc_57: -2.29645733e-09 + ArtUnc_58: -2.54105017e-08 + ArtUnc_59: 2.45279779e-10 + ArtUnc_60: 4.26908643e-08 + ArtUnc_61: 1.00067951e-10 + ArtUnc_62: -1.50736378e-09 + ArtUnc_63: 3.87525416e-11 + ArtUnc_64: -7.55789235e-08 + ArtUnc_65: -7.76277120e-09 + ArtUnc_66: 2.16764904e-07 + ArtUnc_67: 3.08892517e-08 + ArtUnc_68: -3.77732345e-08 + ArtUnc_69: -9.87350226e-09 + ArtUnc_70: 2.37312883e-07 + ArtUnc_71: 2.85740188e-09 + ArtUnc_72: -7.72891675e-08 + ArtUnc_73: -1.80048298e-08 + ArtUnc_74: 1.18963528e-06 + ArtUnc_75: 2.20986489e-07 + ArtUnc_76: 2.78601807e-08 + ArtUnc_77: 7.18708477e-08 + ArtUnc_78: 2.29164151e-06 + ArtUnc_79: -4.40157886e-06 + ArtUnc_80: 8.77909454e-08 + ArtUnc_81: -1.13450225e-07 + ArtUnc_82: -1.13815769e-08 + ArtUnc_83: 3.16393399e-07 + ArtUnc_84: -1.33291497e-06 + ArtUnc_85: -2.13539447e-08 + ArtUnc_86: 5.59259884e-08 + ArtUnc_87: 1.09417075e-07 + ArtUnc_88: 1.13768745e-07 + ArtUnc_89: 2.67045696e-06 + ArtUnc_90: -4.82310249e-07 + ArtUnc_91: 1.46490263e-07 + ArtUnc_92: -8.78447032e-06 + ArtUnc_93: 3.28059110e-08 + ArtUnc_94: 1.88100247e-07 + ArtUnc_95: -4.02596680e-07 + ArtUnc_96: -1.83173144e-08 - stat: 0 Uncorr: 7.31e-08 - RCES: 3.892182024764515e-07 - ElEn: 3.5653845886664177e-07 - ElTh: 6.319675739173649e-07 - Lumi: 5.6287e-08 - LArN: 4.3860000000000004e-08 - StatMC: 2.394756e-06 - RadErr: 2.98248e-07 - Model_1: 1.522772838061541e-06 - Model_2: 1.522772838061541e-06 - ModelRW_1: 1.1325170699907792e-06 - ModelRW_2: 1.1325170699907792e-06 - JES_1: 7.558372094363309e-07 - JES_2: 7.558372094363309e-07 - ArtUnc_1: 2.35927203457836e-20 - ArtUnc_2: -5.922629161146333e-18 - ArtUnc_3: -1.8819435998532412e-17 - ArtUnc_4: 3.158187577786074e-17 - ArtUnc_5: 1.5937576017366522e-18 - ArtUnc_6: 3.289342185321362e-18 - ArtUnc_7: 1.2239723672715737e-15 - ArtUnc_8: -2.2074775992870183e-14 - ArtUnc_9: 6.704927999036726e-16 - ArtUnc_10: 2.7699408858070488e-14 - ArtUnc_11: -5.873909050903443e-14 - ArtUnc_12: -4.664676081797592e-15 - ArtUnc_13: -3.2082494641071664e-14 - ArtUnc_14: -2.7683369430503856e-15 - ArtUnc_15: 7.564761722243567e-15 - ArtUnc_16: -4.898938440266008e-16 - ArtUnc_17: -7.0621030270174545e-15 - ArtUnc_18: 5.255133824119982e-16 - ArtUnc_19: 1.636309256674278e-14 - ArtUnc_20: -2.388984636576834e-13 - ArtUnc_21: 2.0807479147216883e-14 - ArtUnc_22: -5.297202828927104e-12 - ArtUnc_23: -1.9082778121082117e-13 - ArtUnc_24: 6.039201406219987e-12 - ArtUnc_25: 2.6715907554250054e-12 - ArtUnc_26: -2.7966393291241113e-13 - ArtUnc_27: -1.9072862813516748e-11 - ArtUnc_28: -3.1805753329792926e-13 - ArtUnc_29: 2.342851279537203e-12 - ArtUnc_30: -2.1374606682004223e-13 - ArtUnc_31: 1.0815260616289436e-13 - ArtUnc_32: -1.9686397571900833e-11 - ArtUnc_33: -1.5636800167330968e-14 - ArtUnc_34: 4.9413977886084574e-12 - ArtUnc_35: 3.43431542246607e-12 - ArtUnc_36: -4.797358782039034e-11 - ArtUnc_37: 5.773888609003612e-11 - ArtUnc_38: -9.251216849801803e-12 - ArtUnc_39: -6.909058451839399e-11 - ArtUnc_40: 1.6925117406345058e-12 - ArtUnc_41: 3.7053698468647157e-10 - ArtUnc_42: 1.855392905824653e-11 - ArtUnc_43: -4.846323282584783e-10 - ArtUnc_44: -3.327459492762007e-11 - ArtUnc_45: 7.597393152306623e-13 - ArtUnc_46: -6.897334913058715e-11 - ArtUnc_47: 1.5566079258656675e-10 - ArtUnc_48: -7.485089687541113e-12 - ArtUnc_49: -4.1862286539354177e-10 - ArtUnc_50: 6.302238876174077e-11 - ArtUnc_51: -9.653027877636256e-10 - ArtUnc_52: 5.72165799063931e-10 - ArtUnc_53: -2.489573684983785e-11 - ArtUnc_54: -7.617696381330824e-11 - ArtUnc_55: -1.3478870594901272e-08 - ArtUnc_56: 1.2402321011988667e-08 - ArtUnc_57: 3.5571456105850805e-09 - ArtUnc_58: -2.556150908248414e-08 - ArtUnc_59: -1.2383163719166848e-10 - ArtUnc_60: -3.2222219760101495e-08 - ArtUnc_61: -5.2251288050979926e-12 - ArtUnc_62: -8.97457198223341e-10 - ArtUnc_63: 9.440574608420388e-11 - ArtUnc_64: -2.448031875497111e-08 - ArtUnc_65: 1.042472983643038e-09 - ArtUnc_66: -3.5166796463923804e-08 - ArtUnc_67: 3.52988122038554e-10 - ArtUnc_68: 1.992668957386929e-09 - ArtUnc_69: -3.938321250102191e-10 - ArtUnc_70: 9.539111780811317e-09 - ArtUnc_71: 2.266615073220808e-10 - ArtUnc_72: 4.3344959477670267e-08 - ArtUnc_73: 3.439910778665954e-09 - ArtUnc_74: 3.766214542747073e-08 - ArtUnc_75: -8.853833025974996e-08 - ArtUnc_76: -5.07855697525207e-10 - ArtUnc_77: 2.6350754104537003e-09 - ArtUnc_78: -5.219583627350703e-08 - ArtUnc_79: -1.9286320867927353e-07 - ArtUnc_80: 2.0279690969114773e-09 - ArtUnc_81: -7.292739062847744e-09 - ArtUnc_82: -5.170141903927744e-10 - ArtUnc_83: 2.2541666134281235e-08 - ArtUnc_84: -3.9693062371755816e-08 - ArtUnc_85: 2.686872478207075e-06 - ArtUnc_86: 4.141473619815568e-07 - ArtUnc_87: 7.862979078955503e-07 - ArtUnc_88: 1.1721011470516791e-08 - ArtUnc_89: 4.4423448886381265e-08 - ArtUnc_90: 2.651165675700547e-07 - ArtUnc_91: -1.6784554078079242e-06 - ArtUnc_92: -1.550500835139394e-08 - ArtUnc_93: 1.9257018402611466e-08 - ArtUnc_94: 2.2281251523428708e-08 - ArtUnc_95: -8.447286155149897e-07 - ArtUnc_96: -1.7506003847933434e-07 + RCES: 3.89218202e-07 + ElEn: 3.56538459e-07 + ElTh: 6.31967574e-07 + Lumi: 5.62870000e-08 + LArN: 4.38600000e-08 + StatMC: 2.39475600e-06 + RadErr: 2.98248000e-07 + Model_1: 1.52277284e-06 + Model_2: 1.52277284e-06 + ModelRW_1: 1.13251707e-06 + ModelRW_2: 1.13251707e-06 + JES_1: 7.55837209e-07 + JES_2: 7.55837209e-07 + ArtUnc_1: 2.35927203e-20 + ArtUnc_2: -5.92262916e-18 + ArtUnc_3: -1.88194360e-17 + ArtUnc_4: 3.15818758e-17 + ArtUnc_5: 1.59375760e-18 + ArtUnc_6: 3.28934219e-18 + ArtUnc_7: 1.22397237e-15 + ArtUnc_8: -2.20747760e-14 + ArtUnc_9: 6.70492800e-16 + ArtUnc_10: 2.76994089e-14 + ArtUnc_11: -5.87390905e-14 + ArtUnc_12: -4.66467608e-15 + ArtUnc_13: -3.20824946e-14 + ArtUnc_14: -2.76833694e-15 + ArtUnc_15: 7.56476172e-15 + ArtUnc_16: -4.89893844e-16 + ArtUnc_17: -7.06210303e-15 + ArtUnc_18: 5.25513382e-16 + ArtUnc_19: 1.63630926e-14 + ArtUnc_20: -2.38898464e-13 + ArtUnc_21: 2.08074791e-14 + ArtUnc_22: -5.29720283e-12 + ArtUnc_23: -1.90827781e-13 + ArtUnc_24: 6.03920141e-12 + ArtUnc_25: 2.67159076e-12 + ArtUnc_26: -2.79663933e-13 + ArtUnc_27: -1.90728628e-11 + ArtUnc_28: -3.18057533e-13 + ArtUnc_29: 2.34285128e-12 + ArtUnc_30: -2.13746067e-13 + ArtUnc_31: 1.08152606e-13 + ArtUnc_32: -1.96863976e-11 + ArtUnc_33: -1.56368002e-14 + ArtUnc_34: 4.94139779e-12 + ArtUnc_35: 3.43431542e-12 + ArtUnc_36: -4.79735878e-11 + ArtUnc_37: 5.77388861e-11 + ArtUnc_38: -9.25121685e-12 + ArtUnc_39: -6.90905845e-11 + ArtUnc_40: 1.69251174e-12 + ArtUnc_41: 3.70536985e-10 + ArtUnc_42: 1.85539291e-11 + ArtUnc_43: -4.84632328e-10 + ArtUnc_44: -3.32745949e-11 + ArtUnc_45: 7.59739315e-13 + ArtUnc_46: -6.89733491e-11 + ArtUnc_47: 1.55660793e-10 + ArtUnc_48: -7.48508969e-12 + ArtUnc_49: -4.18622865e-10 + ArtUnc_50: 6.30223888e-11 + ArtUnc_51: -9.65302788e-10 + ArtUnc_52: 5.72165799e-10 + ArtUnc_53: -2.48957368e-11 + ArtUnc_54: -7.61769638e-11 + ArtUnc_55: -1.34788706e-08 + ArtUnc_56: 1.24023210e-08 + ArtUnc_57: 3.55714561e-09 + ArtUnc_58: -2.55615091e-08 + ArtUnc_59: -1.23831637e-10 + ArtUnc_60: -3.22222198e-08 + ArtUnc_61: -5.22512881e-12 + ArtUnc_62: -8.97457198e-10 + ArtUnc_63: 9.44057461e-11 + ArtUnc_64: -2.44803188e-08 + ArtUnc_65: 1.04247298e-09 + ArtUnc_66: -3.51667965e-08 + ArtUnc_67: 3.52988122e-10 + ArtUnc_68: 1.99266896e-09 + ArtUnc_69: -3.93832125e-10 + ArtUnc_70: 9.53911178e-09 + ArtUnc_71: 2.26661507e-10 + ArtUnc_72: 4.33449595e-08 + ArtUnc_73: 3.43991078e-09 + ArtUnc_74: 3.76621454e-08 + ArtUnc_75: -8.85383303e-08 + ArtUnc_76: -5.07855698e-10 + ArtUnc_77: 2.63507541e-09 + ArtUnc_78: -5.21958363e-08 + ArtUnc_79: -1.92863209e-07 + ArtUnc_80: 2.02796910e-09 + ArtUnc_81: -7.29273906e-09 + ArtUnc_82: -5.17014190e-10 + ArtUnc_83: 2.25416661e-08 + ArtUnc_84: -3.96930624e-08 + ArtUnc_85: 2.68687248e-06 + ArtUnc_86: 4.14147362e-07 + ArtUnc_87: 7.86297908e-07 + ArtUnc_88: 1.17210115e-08 + ArtUnc_89: 4.44234489e-08 + ArtUnc_90: 2.65116568e-07 + ArtUnc_91: -1.67845541e-06 + ArtUnc_92: -1.55050084e-08 + ArtUnc_93: 1.92570184e-08 + ArtUnc_94: 2.22812515e-08 + ArtUnc_95: -8.44728616e-07 + ArtUnc_96: -1.75060038e-07 - stat: 0 Uncorr: 0.000304 - RCES: 0.0016778342211315157 - ElEn: 7.67110735161489e-05 - ElTh: 0.0001963331698924051 - Lumi: 0.00023408 - LArN: 0.0001824 - StatMC: 0.00047728 - RadErr: 0.00013376000000000002 - Model_1: 0.00031384227376183725 - Model_2: 0.00031384227376183725 - ModelRW_1: 0.000722267150575187 - ModelRW_2: 0.000722267150575187 - JES_1: 0.0008199741400800394 - JES_2: 0.0008199741400800394 - ArtUnc_1: -4.650512749355942e-09 - ArtUnc_2: 2.6150404338355495e-07 - ArtUnc_3: 5.12557246908968e-07 - ArtUnc_4: 1.0849380135812087e-06 - ArtUnc_5: 7.030184433999337e-08 - ArtUnc_6: -6.666096450952222e-08 - ArtUnc_7: 8.926475091343498e-06 - ArtUnc_8: -3.752463903315676e-05 - ArtUnc_9: -4.525940513413666e-06 - ArtUnc_10: 3.1467905590806244e-05 - ArtUnc_11: -2.0233147902406997e-05 - ArtUnc_12: 2.021947318951445e-06 - ArtUnc_13: -4.003287853094295e-05 - ArtUnc_14: 9.54290296203011e-06 - ArtUnc_15: -1.5817618089945295e-05 - ArtUnc_16: 5.069765305450733e-07 - ArtUnc_17: -1.0889155969046879e-05 - ArtUnc_18: 7.854719394652192e-07 - ArtUnc_19: 2.3706046886005644e-05 - ArtUnc_20: -1.9083074205274243e-05 - ArtUnc_21: 4.747888848597217e-07 - ArtUnc_22: 0.00016734295161063723 - ArtUnc_23: 1.8956321121513973e-06 - ArtUnc_24: 0.0001391234856377672 - ArtUnc_25: 0.00018799400387012392 - ArtUnc_26: 3.117946243289525e-05 - ArtUnc_27: 0.00021123077073010498 - ArtUnc_28: 2.693125101744767e-06 - ArtUnc_29: 0.0005732465940048262 - ArtUnc_30: 0.00012951670447777832 - ArtUnc_31: -5.386786433193626e-05 - ArtUnc_32: -0.0002279172775553063 - ArtUnc_33: 2.3810441821111926e-07 - ArtUnc_34: -7.330782394982886e-06 - ArtUnc_35: -1.7685369090595917e-05 - ArtUnc_36: -2.4724312944298536e-06 - ArtUnc_37: -1.4607163820264878e-05 - ArtUnc_38: 2.6176429082255432e-06 - ArtUnc_39: -6.607915967338914e-07 - ArtUnc_40: -5.1362874816051534e-08 - ArtUnc_41: 1.5135293048599083e-06 - ArtUnc_42: -3.930922079681527e-08 - ArtUnc_43: 1.3049128874402319e-06 - ArtUnc_44: -7.96030395165809e-06 - ArtUnc_45: 5.351476142624853e-08 - ArtUnc_46: -3.500460120766658e-07 - ArtUnc_47: -2.698530947205398e-07 - ArtUnc_48: 6.382660114578908e-09 - ArtUnc_49: 2.4341397056357427e-06 - ArtUnc_50: 4.81169572330774e-07 - ArtUnc_51: 2.879156312045966e-08 - ArtUnc_52: 1.933283862988446e-08 - ArtUnc_53: 5.698775424400118e-09 - ArtUnc_54: -1.2428319793269074e-08 - ArtUnc_55: 1.8299365598447446e-08 - ArtUnc_56: -9.683602000634305e-10 - ArtUnc_57: -2.008998975123179e-09 - ArtUnc_58: -4.09381063276111e-09 - ArtUnc_59: 7.913059982895237e-09 - ArtUnc_60: 6.358131181272643e-09 - ArtUnc_61: 3.316418941539378e-11 - ArtUnc_62: 4.826728173643972e-09 - ArtUnc_63: -5.171061553907083e-10 - ArtUnc_64: 3.34943184805511e-07 - ArtUnc_65: -1.1614407621026812e-08 - ArtUnc_66: -2.3340415670957435e-07 - ArtUnc_67: -4.714533807607662e-09 - ArtUnc_68: -5.125500757971282e-10 - ArtUnc_69: 2.5681759201689222e-11 - ArtUnc_70: -4.617791891797858e-10 - ArtUnc_71: -1.726956563111836e-11 - ArtUnc_72: -1.0426947546361144e-09 - ArtUnc_73: 1.3974946479052858e-10 - ArtUnc_74: -7.388353615932547e-11 - ArtUnc_75: 2.2023115713533785e-09 - ArtUnc_76: -3.238875632136181e-11 - ArtUnc_77: 1.683694432077045e-10 - ArtUnc_78: -2.3319062783790383e-09 - ArtUnc_79: 6.984125752352948e-10 - ArtUnc_80: 2.4210672858428407e-10 - ArtUnc_81: -1.0645104275344316e-10 - ArtUnc_82: 9.551534802832154e-12 - ArtUnc_83: 4.247721654093233e-11 - ArtUnc_84: 1.2581519448969144e-11 - ArtUnc_85: -2.853203139020557e-13 - ArtUnc_86: -7.1550686480950606e-12 - ArtUnc_87: -8.385559175981213e-12 - ArtUnc_88: 9.054072666771776e-12 - ArtUnc_89: 6.684767466884986e-11 - ArtUnc_90: 1.8249590088465067e-11 - ArtUnc_91: -1.3769282793509156e-12 - ArtUnc_92: -2.0830196938451975e-10 - ArtUnc_93: 1.474440598941191e-11 - ArtUnc_94: 2.8062288957760026e-12 - ArtUnc_95: -4.9037181482300245e-11 - ArtUnc_96: 1.1351687655157902e-11 + RCES: 1.67783422e-03 + ElEn: 7.67110735e-05 + ElTh: 1.96333170e-04 + Lumi: 2.34080000e-04 + LArN: 1.82400000e-04 + StatMC: 4.77280000e-04 + RadErr: 1.33760000e-04 + Model_1: 3.13842274e-04 + Model_2: 3.13842274e-04 + ModelRW_1: 7.22267151e-04 + ModelRW_2: 7.22267151e-04 + JES_1: 8.19974140e-04 + JES_2: 8.19974140e-04 + ArtUnc_1: -4.65051275e-09 + ArtUnc_2: 2.61504043e-07 + ArtUnc_3: 5.12557247e-07 + ArtUnc_4: 1.08493801e-06 + ArtUnc_5: 7.03018443e-08 + ArtUnc_6: -6.66609645e-08 + ArtUnc_7: 8.92647509e-06 + ArtUnc_8: -3.75246390e-05 + ArtUnc_9: -4.52594051e-06 + ArtUnc_10: 3.14679056e-05 + ArtUnc_11: -2.02331479e-05 + ArtUnc_12: 2.02194732e-06 + ArtUnc_13: -4.00328785e-05 + ArtUnc_14: 9.54290296e-06 + ArtUnc_15: -1.58176181e-05 + ArtUnc_16: 5.06976531e-07 + ArtUnc_17: -1.08891560e-05 + ArtUnc_18: 7.85471939e-07 + ArtUnc_19: 2.37060469e-05 + ArtUnc_20: -1.90830742e-05 + ArtUnc_21: 4.74788885e-07 + ArtUnc_22: 1.67342952e-04 + ArtUnc_23: 1.89563211e-06 + ArtUnc_24: 1.39123486e-04 + ArtUnc_25: 1.87994004e-04 + ArtUnc_26: 3.11794624e-05 + ArtUnc_27: 2.11230771e-04 + ArtUnc_28: 2.69312510e-06 + ArtUnc_29: 5.73246594e-04 + ArtUnc_30: 1.29516704e-04 + ArtUnc_31: -5.38678643e-05 + ArtUnc_32: -2.27917278e-04 + ArtUnc_33: 2.38104418e-07 + ArtUnc_34: -7.33078239e-06 + ArtUnc_35: -1.76853691e-05 + ArtUnc_36: -2.47243129e-06 + ArtUnc_37: -1.46071638e-05 + ArtUnc_38: 2.61764291e-06 + ArtUnc_39: -6.60791597e-07 + ArtUnc_40: -5.13628748e-08 + ArtUnc_41: 1.51352930e-06 + ArtUnc_42: -3.93092208e-08 + ArtUnc_43: 1.30491289e-06 + ArtUnc_44: -7.96030395e-06 + ArtUnc_45: 5.35147614e-08 + ArtUnc_46: -3.50046012e-07 + ArtUnc_47: -2.69853095e-07 + ArtUnc_48: 6.38266011e-09 + ArtUnc_49: 2.43413971e-06 + ArtUnc_50: 4.81169572e-07 + ArtUnc_51: 2.87915631e-08 + ArtUnc_52: 1.93328386e-08 + ArtUnc_53: 5.69877542e-09 + ArtUnc_54: -1.24283198e-08 + ArtUnc_55: 1.82993656e-08 + ArtUnc_56: -9.68360200e-10 + ArtUnc_57: -2.00899898e-09 + ArtUnc_58: -4.09381063e-09 + ArtUnc_59: 7.91305998e-09 + ArtUnc_60: 6.35813118e-09 + ArtUnc_61: 3.31641894e-11 + ArtUnc_62: 4.82672817e-09 + ArtUnc_63: -5.17106155e-10 + ArtUnc_64: 3.34943185e-07 + ArtUnc_65: -1.16144076e-08 + ArtUnc_66: -2.33404157e-07 + ArtUnc_67: -4.71453381e-09 + ArtUnc_68: -5.12550076e-10 + ArtUnc_69: 2.56817592e-11 + ArtUnc_70: -4.61779189e-10 + ArtUnc_71: -1.72695656e-11 + ArtUnc_72: -1.04269475e-09 + ArtUnc_73: 1.39749465e-10 + ArtUnc_74: -7.38835362e-11 + ArtUnc_75: 2.20231157e-09 + ArtUnc_76: -3.23887563e-11 + ArtUnc_77: 1.68369443e-10 + ArtUnc_78: -2.33190628e-09 + ArtUnc_79: 6.98412575e-10 + ArtUnc_80: 2.42106729e-10 + ArtUnc_81: -1.06451043e-10 + ArtUnc_82: 9.55153480e-12 + ArtUnc_83: 4.24772165e-11 + ArtUnc_84: 1.25815194e-11 + ArtUnc_85: -2.85320314e-13 + ArtUnc_86: -7.15506865e-12 + ArtUnc_87: -8.38555918e-12 + ArtUnc_88: 9.05407267e-12 + ArtUnc_89: 6.68476747e-11 + ArtUnc_90: 1.82495901e-11 + ArtUnc_91: -1.37692828e-12 + ArtUnc_92: -2.08301969e-10 + ArtUnc_93: 1.47444060e-11 + ArtUnc_94: 2.80622890e-12 + ArtUnc_95: -4.90371815e-11 + ArtUnc_96: 1.13516877e-11 - stat: 0 Uncorr: 0.000189 - RCES: 8.002984005981769e-05 - ElEn: 5.954999811083121e-05 - ElTh: 6.721468198987481e-05 - Lumi: 0.00014553 - LArN: 0.00011339999999999999 - StatMC: 0.00015498 - RadErr: 8.883e-05 - Model_1: 0.00016170824978955156 - Model_2: 0.00016170824978955156 - ModelRW_1: 0.00012027886347983173 - ModelRW_2: 0.00012027886347983173 - JES_1: 0.00029801755290167055 - JES_2: 0.00029801755290167055 - ArtUnc_1: 5.471569996118318e-10 - ArtUnc_2: -2.1548459534153544e-08 - ArtUnc_3: 1.6107173820174696e-09 - ArtUnc_4: 1.879064311830434e-07 - ArtUnc_5: 1.050117042374516e-09 - ArtUnc_6: 1.4980021086434547e-08 - ArtUnc_7: 1.0716030983489342e-06 - ArtUnc_8: -5.8520277451735335e-06 - ArtUnc_9: 7.491192402186086e-07 - ArtUnc_10: -8.052950538988503e-08 - ArtUnc_11: -5.725234485220118e-06 - ArtUnc_12: -9.685501549661442e-07 - ArtUnc_13: -1.3424257850248628e-06 - ArtUnc_14: -9.956049613002278e-07 - ArtUnc_15: 5.29772550663397e-07 - ArtUnc_16: 1.6738377684272918e-08 - ArtUnc_17: -3.582507838237691e-07 - ArtUnc_18: -1.264727437334715e-08 - ArtUnc_19: 1.233662996663388e-06 - ArtUnc_20: 8.403154663435293e-07 - ArtUnc_21: 6.79129868143396e-07 - ArtUnc_22: -1.776150220884529e-06 - ArtUnc_23: -4.784905450229317e-07 - ArtUnc_24: -5.169696883145389e-06 - ArtUnc_25: 2.8213503257829692e-05 - ArtUnc_26: -6.758352126525302e-06 - ArtUnc_27: -1.9482452456984413e-05 - ArtUnc_28: -1.8615587928710915e-07 - ArtUnc_29: 4.94000286483612e-06 - ArtUnc_30: 2.595975163818299e-06 - ArtUnc_31: -1.076324800799102e-06 - ArtUnc_32: -3.2874259781786615e-05 - ArtUnc_33: -3.299468307382029e-08 - ArtUnc_34: -1.2349402662050923e-06 - ArtUnc_35: -6.191515490195612e-06 - ArtUnc_36: -2.7249485883079676e-06 - ArtUnc_37: -5.989822561698278e-05 - ArtUnc_38: 1.040363962746263e-05 - ArtUnc_39: 7.720196274664037e-05 - ArtUnc_40: 1.5220534773987657e-06 - ArtUnc_41: 1.70937927886724e-05 - ArtUnc_42: 8.114505195690131e-07 - ArtUnc_43: -1.371526883447847e-05 - ArtUnc_44: 0.00024620974445310794 - ArtUnc_45: -1.2730256982223254e-06 - ArtUnc_46: 1.1643913116449547e-05 - ArtUnc_47: 1.6299789140107506e-06 - ArtUnc_48: -2.2809295116473704e-07 - ArtUnc_49: -3.634576712612296e-05 - ArtUnc_50: -2.4422571255481782e-06 - ArtUnc_51: -6.822122723981085e-08 - ArtUnc_52: 5.976234737191589e-08 - ArtUnc_53: -1.8446310222813494e-08 - ArtUnc_54: 2.4751852109216145e-08 - ArtUnc_55: 1.1310038013260833e-06 - ArtUnc_56: 1.0759820264168969e-06 - ArtUnc_57: 3.0780950207694145e-07 - ArtUnc_58: 6.812023712735847e-07 - ArtUnc_59: -7.960672216219715e-09 - ArtUnc_60: -5.267916630689513e-07 - ArtUnc_61: -3.399701646687149e-10 - ArtUnc_62: -6.6656039128050465e-09 - ArtUnc_63: 7.138800656368192e-10 - ArtUnc_64: -2.4775857851850117e-06 - ArtUnc_65: 3.624287910535524e-08 - ArtUnc_66: 1.8384640130182134e-06 - ArtUnc_67: 2.7181424246913548e-08 - ArtUnc_68: -2.8193276372482016e-08 - ArtUnc_69: -5.42760780524532e-10 - ArtUnc_70: 3.0846613497465428e-09 - ArtUnc_71: -5.4471592197849197e-11 - ArtUnc_72: -2.1302205731503017e-08 - ArtUnc_73: -8.471531075724741e-10 - ArtUnc_74: -1.1628840669622942e-08 - ArtUnc_75: 1.7170116614500534e-08 - ArtUnc_76: -2.341536895472736e-10 - ArtUnc_77: -2.7783117168958113e-10 - ArtUnc_78: 3.260211955439682e-08 - ArtUnc_79: 1.046351715994512e-08 - ArtUnc_80: -3.450248147908177e-10 - ArtUnc_81: 7.482156465457119e-10 - ArtUnc_82: 3.8370527796884825e-11 - ArtUnc_83: -3.247121662728555e-11 - ArtUnc_84: -1.4283148435103424e-09 - ArtUnc_85: 2.3167662235587087e-11 - ArtUnc_86: 6.903485286946707e-11 - ArtUnc_87: 6.463824938400358e-11 - ArtUnc_88: 6.4133573585991416e-12 - ArtUnc_89: 3.6365934066034854e-10 - ArtUnc_90: -2.5940032189813645e-10 - ArtUnc_91: 6.457000917868311e-11 - ArtUnc_92: 1.2350529808450879e-09 - ArtUnc_93: -1.151435439701838e-11 - ArtUnc_94: -3.2150143351094645e-11 - ArtUnc_95: -9.747009492310879e-11 - ArtUnc_96: -6.133126016765184e-11 + RCES: 8.00298401e-05 + ElEn: 5.95499981e-05 + ElTh: 6.72146820e-05 + Lumi: 1.45530000e-04 + LArN: 1.13400000e-04 + StatMC: 1.54980000e-04 + RadErr: 8.88300000e-05 + Model_1: 1.61708250e-04 + Model_2: 1.61708250e-04 + ModelRW_1: 1.20278863e-04 + ModelRW_2: 1.20278863e-04 + JES_1: 2.98017553e-04 + JES_2: 2.98017553e-04 + ArtUnc_1: 5.47157000e-10 + ArtUnc_2: -2.15484595e-08 + ArtUnc_3: 1.61071738e-09 + ArtUnc_4: 1.87906431e-07 + ArtUnc_5: 1.05011704e-09 + ArtUnc_6: 1.49800211e-08 + ArtUnc_7: 1.07160310e-06 + ArtUnc_8: -5.85202775e-06 + ArtUnc_9: 7.49119240e-07 + ArtUnc_10: -8.05295054e-08 + ArtUnc_11: -5.72523449e-06 + ArtUnc_12: -9.68550155e-07 + ArtUnc_13: -1.34242579e-06 + ArtUnc_14: -9.95604961e-07 + ArtUnc_15: 5.29772551e-07 + ArtUnc_16: 1.67383777e-08 + ArtUnc_17: -3.58250784e-07 + ArtUnc_18: -1.26472744e-08 + ArtUnc_19: 1.23366300e-06 + ArtUnc_20: 8.40315466e-07 + ArtUnc_21: 6.79129868e-07 + ArtUnc_22: -1.77615022e-06 + ArtUnc_23: -4.78490545e-07 + ArtUnc_24: -5.16969688e-06 + ArtUnc_25: 2.82135033e-05 + ArtUnc_26: -6.75835213e-06 + ArtUnc_27: -1.94824525e-05 + ArtUnc_28: -1.86155879e-07 + ArtUnc_29: 4.94000286e-06 + ArtUnc_30: 2.59597516e-06 + ArtUnc_31: -1.07632480e-06 + ArtUnc_32: -3.28742598e-05 + ArtUnc_33: -3.29946831e-08 + ArtUnc_34: -1.23494027e-06 + ArtUnc_35: -6.19151549e-06 + ArtUnc_36: -2.72494859e-06 + ArtUnc_37: -5.98982256e-05 + ArtUnc_38: 1.04036396e-05 + ArtUnc_39: 7.72019627e-05 + ArtUnc_40: 1.52205348e-06 + ArtUnc_41: 1.70937928e-05 + ArtUnc_42: 8.11450520e-07 + ArtUnc_43: -1.37152688e-05 + ArtUnc_44: 2.46209744e-04 + ArtUnc_45: -1.27302570e-06 + ArtUnc_46: 1.16439131e-05 + ArtUnc_47: 1.62997891e-06 + ArtUnc_48: -2.28092951e-07 + ArtUnc_49: -3.63457671e-05 + ArtUnc_50: -2.44225713e-06 + ArtUnc_51: -6.82212272e-08 + ArtUnc_52: 5.97623474e-08 + ArtUnc_53: -1.84463102e-08 + ArtUnc_54: 2.47518521e-08 + ArtUnc_55: 1.13100380e-06 + ArtUnc_56: 1.07598203e-06 + ArtUnc_57: 3.07809502e-07 + ArtUnc_58: 6.81202371e-07 + ArtUnc_59: -7.96067222e-09 + ArtUnc_60: -5.26791663e-07 + ArtUnc_61: -3.39970165e-10 + ArtUnc_62: -6.66560391e-09 + ArtUnc_63: 7.13880066e-10 + ArtUnc_64: -2.47758579e-06 + ArtUnc_65: 3.62428791e-08 + ArtUnc_66: 1.83846401e-06 + ArtUnc_67: 2.71814242e-08 + ArtUnc_68: -2.81932764e-08 + ArtUnc_69: -5.42760781e-10 + ArtUnc_70: 3.08466135e-09 + ArtUnc_71: -5.44715922e-11 + ArtUnc_72: -2.13022057e-08 + ArtUnc_73: -8.47153108e-10 + ArtUnc_74: -1.16288407e-08 + ArtUnc_75: 1.71701166e-08 + ArtUnc_76: -2.34153690e-10 + ArtUnc_77: -2.77831172e-10 + ArtUnc_78: 3.26021196e-08 + ArtUnc_79: 1.04635172e-08 + ArtUnc_80: -3.45024815e-10 + ArtUnc_81: 7.48215647e-10 + ArtUnc_82: 3.83705278e-11 + ArtUnc_83: -3.24712166e-11 + ArtUnc_84: -1.42831484e-09 + ArtUnc_85: 2.31676622e-11 + ArtUnc_86: 6.90348529e-11 + ArtUnc_87: 6.46382494e-11 + ArtUnc_88: 6.41335736e-12 + ArtUnc_89: 3.63659341e-10 + ArtUnc_90: -2.59400322e-10 + ArtUnc_91: 6.45700092e-11 + ArtUnc_92: 1.23505298e-09 + ArtUnc_93: -1.15143544e-11 + ArtUnc_94: -3.21501434e-11 + ArtUnc_95: -9.74700949e-11 + ArtUnc_96: -6.13312602e-11 - stat: 0 Uncorr: 4.64e-05 - RCES: 2.4273675617837527e-05 - ElEn: 9.599306641627821e-06 - ElTh: 1.2508651725905556e-05 - Lumi: 3.5728e-05 - LArN: 2.784e-05 - StatMC: 3.8976e-05 - RadErr: 3.8976e-05 - Model_1: 0.00010203833695234354 - Model_2: 0.00010203833695234354 - ModelRW_1: 0.00011483414126469533 - ModelRW_2: 0.00011483414126469533 - JES_1: 0.0001271343065580648 - JES_2: 0.0001271343065580648 - ArtUnc_1: 3.72574843754151e-13 - ArtUnc_2: -5.5762134156865614e-11 - ArtUnc_3: -1.8792997287274888e-10 - ArtUnc_4: -4.5867840932993047e-10 - ArtUnc_5: -1.4436446732121365e-11 - ArtUnc_6: 1.867396902546295e-11 - ArtUnc_7: -2.3048097772345663e-09 - ArtUnc_8: 7.845765890473015e-10 - ArtUnc_9: 1.977290840908495e-09 - ArtUnc_10: -1.1619921967779412e-08 - ArtUnc_11: -3.343505219064145e-09 - ArtUnc_12: -1.858073969329258e-09 - ArtUnc_13: 6.893470512185661e-08 - ArtUnc_14: -8.552736714474256e-09 - ArtUnc_15: 1.584680464086288e-08 - ArtUnc_16: -4.681586319467342e-10 - ArtUnc_17: 2.577357061816638e-08 - ArtUnc_18: -1.3883467658975774e-09 - ArtUnc_19: -1.0772612664045383e-07 - ArtUnc_20: 9.127921594949682e-08 - ArtUnc_21: -6.69780382479327e-11 - ArtUnc_22: -1.1270512654920153e-07 - ArtUnc_23: -1.33234118677314e-09 - ArtUnc_24: -1.555632830104435e-06 - ArtUnc_25: 7.606353978765029e-07 - ArtUnc_26: -3.851083482718545e-07 - ArtUnc_27: -1.4525484734098774e-06 - ArtUnc_28: -5.0885052975844806e-08 - ArtUnc_29: -1.61172054026889e-06 - ArtUnc_30: -4.1133548073345233e-07 - ArtUnc_31: 1.6983994409471313e-07 - ArtUnc_32: 1.6892305922854216e-06 - ArtUnc_33: -1.457067664224312e-10 - ArtUnc_34: 8.989143287517297e-08 - ArtUnc_35: -8.88695551901891e-08 - ArtUnc_36: -7.18178209779854e-07 - ArtUnc_37: -2.0778125037738755e-06 - ArtUnc_38: 3.6391782595336935e-07 - ArtUnc_39: 2.7286713820166425e-06 - ArtUnc_40: 5.455195979650584e-08 - ArtUnc_41: 7.549069678202054e-06 - ArtUnc_42: 7.453588459557469e-08 - ArtUnc_43: -1.1101608282611014e-05 - ArtUnc_44: 2.001257463619583e-06 - ArtUnc_45: -2.7433672163892875e-08 - ArtUnc_46: -9.517229932447282e-07 - ArtUnc_47: 5.589666364914897e-07 - ArtUnc_48: -2.4944416287900184e-08 - ArtUnc_49: -2.347177907621313e-05 - ArtUnc_50: -1.4282041253317663e-06 - ArtUnc_51: 4.788002977745001e-07 - ArtUnc_52: 8.903094382816588e-07 - ArtUnc_53: -1.2459460515372746e-07 - ArtUnc_54: 8.14925320564319e-08 - ArtUnc_55: 1.2594223585421794e-05 - ArtUnc_56: 1.4274865327025676e-05 - ArtUnc_57: 4.174072422605024e-06 - ArtUnc_58: 2.230354844345179e-05 - ArtUnc_59: -2.190809742086046e-07 - ArtUnc_60: -1.8910934551201536e-05 - ArtUnc_61: -1.094479673965532e-08 - ArtUnc_62: -6.893892056174763e-08 - ArtUnc_63: 5.82376697707184e-09 - ArtUnc_64: 5.660326229221998e-05 - ArtUnc_65: -8.015406273538802e-07 - ArtUnc_66: -3.968347141017291e-05 - ArtUnc_67: -5.263076671626725e-07 - ArtUnc_68: 3.5855468780181044e-07 - ArtUnc_69: 1.0173186218331753e-08 - ArtUnc_70: -1.2295317660275172e-07 - ArtUnc_71: -2.4793314171900886e-09 - ArtUnc_72: -6.571712548162341e-07 - ArtUnc_73: -4.7783870276875176e-08 - ArtUnc_74: -1.005910223108769e-07 - ArtUnc_75: 8.417761885970648e-07 - ArtUnc_76: 8.396096597475887e-09 - ArtUnc_77: 7.423005449611018e-09 - ArtUnc_78: -1.1325365974715549e-07 - ArtUnc_79: -4.231882205546767e-08 - ArtUnc_80: 6.129071591428702e-09 - ArtUnc_81: -9.456587992687747e-09 - ArtUnc_82: -1.5188352334206963e-10 - ArtUnc_83: 5.014588526357662e-09 - ArtUnc_84: -1.1798190978592541e-08 - ArtUnc_85: -2.631729931570385e-10 - ArtUnc_86: 1.9245738468918398e-11 - ArtUnc_87: 2.5939757535041884e-10 - ArtUnc_88: 1.2062301518547448e-09 - ArtUnc_89: 2.027714838316177e-08 - ArtUnc_90: -3.0170830838406754e-09 - ArtUnc_91: -1.0921148670096631e-09 - ArtUnc_92: -2.351887988493733e-08 - ArtUnc_93: 4.3944548208894744e-10 - ArtUnc_94: 3.7330271507787496e-10 - ArtUnc_95: -3.296110908263646e-09 - ArtUnc_96: 4.3659842526486204e-11 + RCES: 2.42736756e-05 + ElEn: 9.59930664e-06 + ElTh: 1.25086517e-05 + Lumi: 3.57280000e-05 + LArN: 2.78400000e-05 + StatMC: 3.89760000e-05 + RadErr: 3.89760000e-05 + Model_1: 1.02038337e-04 + Model_2: 1.02038337e-04 + ModelRW_1: 1.14834141e-04 + ModelRW_2: 1.14834141e-04 + JES_1: 1.27134307e-04 + JES_2: 1.27134307e-04 + ArtUnc_1: 3.72574844e-13 + ArtUnc_2: -5.57621342e-11 + ArtUnc_3: -1.87929973e-10 + ArtUnc_4: -4.58678409e-10 + ArtUnc_5: -1.44364467e-11 + ArtUnc_6: 1.86739690e-11 + ArtUnc_7: -2.30480978e-09 + ArtUnc_8: 7.84576589e-10 + ArtUnc_9: 1.97729084e-09 + ArtUnc_10: -1.16199220e-08 + ArtUnc_11: -3.34350522e-09 + ArtUnc_12: -1.85807397e-09 + ArtUnc_13: 6.89347051e-08 + ArtUnc_14: -8.55273671e-09 + ArtUnc_15: 1.58468046e-08 + ArtUnc_16: -4.68158632e-10 + ArtUnc_17: 2.57735706e-08 + ArtUnc_18: -1.38834677e-09 + ArtUnc_19: -1.07726127e-07 + ArtUnc_20: 9.12792159e-08 + ArtUnc_21: -6.69780382e-11 + ArtUnc_22: -1.12705127e-07 + ArtUnc_23: -1.33234119e-09 + ArtUnc_24: -1.55563283e-06 + ArtUnc_25: 7.60635398e-07 + ArtUnc_26: -3.85108348e-07 + ArtUnc_27: -1.45254847e-06 + ArtUnc_28: -5.08850530e-08 + ArtUnc_29: -1.61172054e-06 + ArtUnc_30: -4.11335481e-07 + ArtUnc_31: 1.69839944e-07 + ArtUnc_32: 1.68923059e-06 + ArtUnc_33: -1.45706766e-10 + ArtUnc_34: 8.98914329e-08 + ArtUnc_35: -8.88695552e-08 + ArtUnc_36: -7.18178210e-07 + ArtUnc_37: -2.07781250e-06 + ArtUnc_38: 3.63917826e-07 + ArtUnc_39: 2.72867138e-06 + ArtUnc_40: 5.45519598e-08 + ArtUnc_41: 7.54906968e-06 + ArtUnc_42: 7.45358846e-08 + ArtUnc_43: -1.11016083e-05 + ArtUnc_44: 2.00125746e-06 + ArtUnc_45: -2.74336722e-08 + ArtUnc_46: -9.51722993e-07 + ArtUnc_47: 5.58966636e-07 + ArtUnc_48: -2.49444163e-08 + ArtUnc_49: -2.34717791e-05 + ArtUnc_50: -1.42820413e-06 + ArtUnc_51: 4.78800298e-07 + ArtUnc_52: 8.90309438e-07 + ArtUnc_53: -1.24594605e-07 + ArtUnc_54: 8.14925321e-08 + ArtUnc_55: 1.25942236e-05 + ArtUnc_56: 1.42748653e-05 + ArtUnc_57: 4.17407242e-06 + ArtUnc_58: 2.23035484e-05 + ArtUnc_59: -2.19080974e-07 + ArtUnc_60: -1.89109346e-05 + ArtUnc_61: -1.09447967e-08 + ArtUnc_62: -6.89389206e-08 + ArtUnc_63: 5.82376698e-09 + ArtUnc_64: 5.66032623e-05 + ArtUnc_65: -8.01540627e-07 + ArtUnc_66: -3.96834714e-05 + ArtUnc_67: -5.26307667e-07 + ArtUnc_68: 3.58554688e-07 + ArtUnc_69: 1.01731862e-08 + ArtUnc_70: -1.22953177e-07 + ArtUnc_71: -2.47933142e-09 + ArtUnc_72: -6.57171255e-07 + ArtUnc_73: -4.77838703e-08 + ArtUnc_74: -1.00591022e-07 + ArtUnc_75: 8.41776189e-07 + ArtUnc_76: 8.39609660e-09 + ArtUnc_77: 7.42300545e-09 + ArtUnc_78: -1.13253660e-07 + ArtUnc_79: -4.23188221e-08 + ArtUnc_80: 6.12907159e-09 + ArtUnc_81: -9.45658799e-09 + ArtUnc_82: -1.51883523e-10 + ArtUnc_83: 5.01458853e-09 + ArtUnc_84: -1.17981910e-08 + ArtUnc_85: -2.63172993e-10 + ArtUnc_86: 1.92457385e-11 + ArtUnc_87: 2.59397575e-10 + ArtUnc_88: 1.20623015e-09 + ArtUnc_89: 2.02771484e-08 + ArtUnc_90: -3.01708308e-09 + ArtUnc_91: -1.09211487e-09 + ArtUnc_92: -2.35188799e-08 + ArtUnc_93: 4.39445482e-10 + ArtUnc_94: 3.73302715e-10 + ArtUnc_95: -3.29611091e-09 + ArtUnc_96: 4.36598425e-11 - stat: 0 - Uncorr: 8.750000000000001e-06 - RCES: 9.687637095804117e-06 - ElEn: 2.218776408293545e-06 - ElTh: 3.061249744793783e-06 - Lumi: 6.7375e-06 + Uncorr: 8.75000000e-06 + RCES: 9.68763710e-06 + ElEn: 2.21877641e-06 + ElTh: 3.06124974e-06 + Lumi: 6.73750000e-06 LArN: 5.25e-06 - StatMC: 1.2600000000000001e-05 - RadErr: 6.9125e-06 - Model_1: 2.1655145173838017e-05 - Model_2: 2.1655145173838017e-05 - ModelRW_1: 5.630337745197885e-06 - ModelRW_2: 5.630337745197885e-06 - JES_1: 2.5584343891211088e-05 - JES_2: 2.5584343891211088e-05 - ArtUnc_1: -5.241462259945504e-15 - ArtUnc_2: 8.207592964730536e-13 - ArtUnc_3: 3.847729041683561e-12 - ArtUnc_4: 1.3792222266569431e-11 - ArtUnc_5: 5.052176641803228e-13 - ArtUnc_6: 2.249495667603643e-14 - ArtUnc_7: 6.265328750309011e-11 - ArtUnc_8: -2.377277478183806e-10 - ArtUnc_9: -3.167587896563486e-12 - ArtUnc_10: -9.980068575788724e-12 - ArtUnc_11: 8.486503372824655e-11 - ArtUnc_12: 1.4472528442572177e-11 - ArtUnc_13: 1.9485505226517446e-10 - ArtUnc_14: 1.3385041148049875e-11 - ArtUnc_15: 1.2777939886617276e-11 - ArtUnc_16: -1.4594414874811343e-12 - ArtUnc_17: -7.622530132064897e-12 - ArtUnc_18: -3.3382254149254044e-13 - ArtUnc_19: 4.1744491889578663e-10 - ArtUnc_20: -1.458526363026746e-10 - ArtUnc_21: -1.2183263999339942e-10 - ArtUnc_22: 2.970142757468545e-09 - ArtUnc_23: 2.2299854903822662e-10 - ArtUnc_24: 7.119878894173299e-10 - ArtUnc_25: -4.04907482471203e-09 - ArtUnc_26: 1.362777303429574e-09 - ArtUnc_27: 7.095862095533802e-09 - ArtUnc_28: -5.718772664874926e-10 - ArtUnc_29: -3.751773345438866e-09 - ArtUnc_30: -2.9515041503778913e-09 - ArtUnc_31: 1.1378459995070667e-09 - ArtUnc_32: 2.1546215977208804e-08 - ArtUnc_33: -2.5580061091301333e-11 - ArtUnc_34: -7.500012142866035e-10 - ArtUnc_35: -8.728016111705376e-09 - ArtUnc_36: 1.4591722382626946e-08 - ArtUnc_37: -1.5180310001887374e-07 - ArtUnc_38: 2.908727650187965e-08 - ArtUnc_39: 2.400366075531249e-07 - ArtUnc_40: 3.6335764936557314e-09 - ArtUnc_41: -1.7897560141455276e-07 - ArtUnc_42: 3.862399379342501e-09 - ArtUnc_43: 3.891403788701593e-07 - ArtUnc_44: -3.012756355155561e-07 - ArtUnc_45: 2.2701893778899755e-10 - ArtUnc_46: 3.043726544595362e-08 - ArtUnc_47: -6.82161911121795e-08 - ArtUnc_48: 5.213033624694447e-09 - ArtUnc_49: 7.909571133748741e-07 - ArtUnc_50: -4.000696485508816e-09 - ArtUnc_51: 1.2244715995664577e-07 - ArtUnc_52: -2.387388760086234e-08 - ArtUnc_53: -1.3473575118922905e-08 - ArtUnc_54: 2.9872328342697794e-08 - ArtUnc_55: -1.581319061040107e-06 - ArtUnc_56: 1.933241606756599e-06 - ArtUnc_57: 4.697845033799855e-07 - ArtUnc_58: -3.308935751188501e-06 - ArtUnc_59: 1.8756063896365827e-07 - ArtUnc_60: -3.6319870239236007e-06 - ArtUnc_61: 8.974999862891205e-09 - ArtUnc_62: -3.2100263389846357e-07 - ArtUnc_63: 3.687766345572873e-08 - ArtUnc_64: -7.773053107356384e-06 - ArtUnc_65: 6.977881398509863e-07 - ArtUnc_66: -8.346360521631696e-06 - ArtUnc_67: -3.417827012533332e-07 - ArtUnc_68: -4.126287864727083e-07 - ArtUnc_69: 3.5351700709203385e-09 - ArtUnc_70: -4.836847420599969e-07 - ArtUnc_71: -2.5243277693506292e-08 - ArtUnc_72: -5.773132591863485e-06 - ArtUnc_73: -4.681112618505477e-07 - ArtUnc_74: -1.577039913530142e-06 - ArtUnc_75: 9.86917479891918e-06 - ArtUnc_76: 7.128038724576999e-08 - ArtUnc_77: -3.1454011412941795e-08 - ArtUnc_78: 1.8891715977876717e-05 - ArtUnc_79: 1.349982111950535e-05 - ArtUnc_80: -7.125930552507109e-08 - ArtUnc_81: 4.94833375371924e-07 - ArtUnc_82: 3.523517435289861e-08 - ArtUnc_83: -5.926496319977509e-08 - ArtUnc_84: -1.4452008476412964e-07 - ArtUnc_85: 1.508320644838305e-08 - ArtUnc_86: 4.377923905507967e-09 - ArtUnc_87: 5.063614671791702e-09 - ArtUnc_88: 6.745731559486469e-09 - ArtUnc_89: 2.873263317578852e-07 - ArtUnc_90: -9.439684959935189e-08 - ArtUnc_91: -2.3971753920997772e-08 - ArtUnc_92: -4.26823292277409e-08 - ArtUnc_93: 1.5311556383332444e-09 - ArtUnc_94: -4.599464050398569e-10 - ArtUnc_95: -1.9906259590373583e-08 - ArtUnc_96: 2.321632159279879e-09 + StatMC: 1.26000000e-05 + RadErr: 6.91250000e-06 + Model_1: 2.16551452e-05 + Model_2: 2.16551452e-05 + ModelRW_1: 5.63033775e-06 + ModelRW_2: 5.63033775e-06 + JES_1: 2.55843439e-05 + JES_2: 2.55843439e-05 + ArtUnc_1: -5.24146226e-15 + ArtUnc_2: 8.20759296e-13 + ArtUnc_3: 3.84772904e-12 + ArtUnc_4: 1.37922223e-11 + ArtUnc_5: 5.05217664e-13 + ArtUnc_6: 2.24949567e-14 + ArtUnc_7: 6.26532875e-11 + ArtUnc_8: -2.37727748e-10 + ArtUnc_9: -3.16758790e-12 + ArtUnc_10: -9.98006858e-12 + ArtUnc_11: 8.48650337e-11 + ArtUnc_12: 1.44725284e-11 + ArtUnc_13: 1.94855052e-10 + ArtUnc_14: 1.33850411e-11 + ArtUnc_15: 1.27779399e-11 + ArtUnc_16: -1.45944149e-12 + ArtUnc_17: -7.62253013e-12 + ArtUnc_18: -3.33822541e-13 + ArtUnc_19: 4.17444919e-10 + ArtUnc_20: -1.45852636e-10 + ArtUnc_21: -1.21832640e-10 + ArtUnc_22: 2.97014276e-09 + ArtUnc_23: 2.22998549e-10 + ArtUnc_24: 7.11987889e-10 + ArtUnc_25: -4.04907482e-09 + ArtUnc_26: 1.36277730e-09 + ArtUnc_27: 7.09586210e-09 + ArtUnc_28: -5.71877266e-10 + ArtUnc_29: -3.75177335e-09 + ArtUnc_30: -2.95150415e-09 + ArtUnc_31: 1.13784600e-09 + ArtUnc_32: 2.15462160e-08 + ArtUnc_33: -2.55800611e-11 + ArtUnc_34: -7.50001214e-10 + ArtUnc_35: -8.72801611e-09 + ArtUnc_36: 1.45917224e-08 + ArtUnc_37: -1.51803100e-07 + ArtUnc_38: 2.90872765e-08 + ArtUnc_39: 2.40036608e-07 + ArtUnc_40: 3.63357649e-09 + ArtUnc_41: -1.78975601e-07 + ArtUnc_42: 3.86239938e-09 + ArtUnc_43: 3.89140379e-07 + ArtUnc_44: -3.01275636e-07 + ArtUnc_45: 2.27018938e-10 + ArtUnc_46: 3.04372654e-08 + ArtUnc_47: -6.82161911e-08 + ArtUnc_48: 5.21303362e-09 + ArtUnc_49: 7.90957113e-07 + ArtUnc_50: -4.00069649e-09 + ArtUnc_51: 1.22447160e-07 + ArtUnc_52: -2.38738876e-08 + ArtUnc_53: -1.34735751e-08 + ArtUnc_54: 2.98723283e-08 + ArtUnc_55: -1.58131906e-06 + ArtUnc_56: 1.93324161e-06 + ArtUnc_57: 4.69784503e-07 + ArtUnc_58: -3.30893575e-06 + ArtUnc_59: 1.87560639e-07 + ArtUnc_60: -3.63198702e-06 + ArtUnc_61: 8.97499986e-09 + ArtUnc_62: -3.21002634e-07 + ArtUnc_63: 3.68776635e-08 + ArtUnc_64: -7.77305311e-06 + ArtUnc_65: 6.97788140e-07 + ArtUnc_66: -8.34636052e-06 + ArtUnc_67: -3.41782701e-07 + ArtUnc_68: -4.12628786e-07 + ArtUnc_69: 3.53517007e-09 + ArtUnc_70: -4.83684742e-07 + ArtUnc_71: -2.52432777e-08 + ArtUnc_72: -5.77313259e-06 + ArtUnc_73: -4.68111262e-07 + ArtUnc_74: -1.57703991e-06 + ArtUnc_75: 9.86917480e-06 + ArtUnc_76: 7.12803872e-08 + ArtUnc_77: -3.14540114e-08 + ArtUnc_78: 1.88917160e-05 + ArtUnc_79: 1.34998211e-05 + ArtUnc_80: -7.12593055e-08 + ArtUnc_81: 4.94833375e-07 + ArtUnc_82: 3.52351744e-08 + ArtUnc_83: -5.92649632e-08 + ArtUnc_84: -1.44520085e-07 + ArtUnc_85: 1.50832064e-08 + ArtUnc_86: 4.37792391e-09 + ArtUnc_87: 5.06361467e-09 + ArtUnc_88: 6.74573156e-09 + ArtUnc_89: 2.87326332e-07 + ArtUnc_90: -9.43968496e-08 + ArtUnc_91: -2.39717539e-08 + ArtUnc_92: -4.26823292e-08 + ArtUnc_93: 1.53115564e-09 + ArtUnc_94: -4.59946405e-10 + ArtUnc_95: -1.99062596e-08 + ArtUnc_96: 2.32163216e-09 - stat: 0 Uncorr: 1.37e-06 - RCES: 2.8988614053624572e-06 - ElEn: 2.030375127901246e-06 - ElTh: 1.387070029774993e-06 - Lumi: 1.0549e-06 - LArN: 8.219999999999999e-07 - StatMC: 5.1649e-06 - RadErr: 2.4523e-06 - Model_1: 6.296785886466205e-07 - Model_2: 6.296785886466205e-07 - ModelRW_1: 1.007485741834593e-06 - ModelRW_2: 1.007485741834593e-06 - JES_1: 4.112587914409855e-06 - JES_2: 4.112587914409855e-06 - ArtUnc_1: -1.9019991291243223e-17 - ArtUnc_2: 1.0507157366899366e-14 - ArtUnc_3: 7.405936115075455e-14 - ArtUnc_4: 4.1516782877622893e-13 - ArtUnc_5: 1.4607047978177815e-14 - ArtUnc_6: 3.987043331119774e-15 - ArtUnc_7: 2.9871234429873815e-12 - ArtUnc_8: -1.28901101419786e-11 - ArtUnc_9: 1.936248767826609e-13 - ArtUnc_10: -1.9130658824214493e-13 - ArtUnc_11: -3.400051045086563e-13 - ArtUnc_12: -3.6520029181094834e-14 - ArtUnc_13: 7.1714396580652244e-12 - ArtUnc_14: -1.2279063899775683e-13 - ArtUnc_15: 5.068030375999428e-14 - ArtUnc_16: 1.814635154565131e-15 - ArtUnc_17: -2.5823036770884942e-12 - ArtUnc_18: 7.732364342860023e-14 - ArtUnc_19: 1.0368599030336335e-11 - ArtUnc_20: 2.537794841164756e-11 - ArtUnc_21: -1.8355254578712134e-12 - ArtUnc_22: 3.23052714866025e-10 - ArtUnc_23: 6.571649960662051e-12 - ArtUnc_24: -1.315256411252612e-10 - ArtUnc_25: -2.5802325607447383e-10 - ArtUnc_26: 5.448016000703067e-11 - ArtUnc_27: 9.181928486933075e-10 - ArtUnc_28: 4.266311332429477e-11 - ArtUnc_29: 2.121381067959539e-10 - ArtUnc_30: 1.2336925894313725e-10 - ArtUnc_31: -5.0572066259762264e-11 - ArtUnc_32: 1.9897910843142253e-09 - ArtUnc_33: -5.964743379366253e-13 - ArtUnc_34: -4.2291022066909204e-11 - ArtUnc_35: -6.372771500145227e-11 - ArtUnc_36: 8.992438540225526e-10 - ArtUnc_37: -2.823869184278453e-09 - ArtUnc_38: 5.029805408362752e-10 - ArtUnc_39: 3.7603353015553514e-09 - ArtUnc_40: -1.522549579025299e-11 - ArtUnc_41: -1.553079400463468e-08 - ArtUnc_42: 1.1200097112152992e-10 - ArtUnc_43: 3.320458370959093e-08 - ArtUnc_44: 1.612778691079218e-08 - ArtUnc_45: -1.9434751816654295e-10 - ArtUnc_46: 4.818719281818341e-09 - ArtUnc_47: -3.5936833342592e-10 - ArtUnc_48: -1.4452431492510908e-11 - ArtUnc_49: 1.156191469303947e-07 - ArtUnc_50: 3.095265809797049e-09 - ArtUnc_51: -1.990250058016618e-09 - ArtUnc_52: 1.0551540835680762e-09 - ArtUnc_53: 2.583986842251015e-11 - ArtUnc_54: -2.7359896160844426e-10 - ArtUnc_55: -1.714666851039895e-08 - ArtUnc_56: -9.346685172236354e-09 - ArtUnc_57: -2.2964573279275797e-09 - ArtUnc_58: -2.541050169654537e-08 - ArtUnc_59: 2.4527977931268276e-10 - ArtUnc_60: 4.26908642864609e-08 - ArtUnc_61: 1.0006795078580084e-10 - ArtUnc_62: -1.5073637832204924e-09 - ArtUnc_63: 3.8752541563071965e-11 - ArtUnc_64: -7.557892352678078e-08 - ArtUnc_65: -7.762771204776205e-09 - ArtUnc_66: 2.1676490443910404e-07 - ArtUnc_67: 3.088925173796808e-08 - ArtUnc_68: -3.7773234498553116e-08 - ArtUnc_69: -9.873502259301812e-09 - ArtUnc_70: 2.373128831845414e-07 - ArtUnc_71: 2.8574018820224212e-09 - ArtUnc_72: -7.728916750927325e-08 - ArtUnc_73: -1.8004829794967403e-08 - ArtUnc_74: 1.1896352758006183e-06 - ArtUnc_75: 2.2098648925167571e-07 - ArtUnc_76: 2.7860180711512064e-08 - ArtUnc_77: 7.187084774475774e-08 - ArtUnc_78: 2.2916415135354548e-06 - ArtUnc_79: -4.401578860181456e-06 - ArtUnc_80: 8.779094540533577e-08 - ArtUnc_81: -1.1345022521150932e-07 - ArtUnc_82: -1.1381576922669683e-08 - ArtUnc_83: 3.163933993362474e-07 - ArtUnc_84: -1.3329149678621743e-06 - ArtUnc_85: -2.135394470958957e-08 - ArtUnc_86: 5.592598844023283e-08 - ArtUnc_87: 1.0941707459513449e-07 - ArtUnc_88: 1.1376874495446983e-07 - ArtUnc_89: 2.6704569588183046e-06 - ArtUnc_90: -4.823102494690392e-07 - ArtUnc_91: 1.4649026332982186e-07 - ArtUnc_92: -8.784470317925978e-06 - ArtUnc_93: 3.280591100098844e-08 - ArtUnc_94: 1.8810024653809077e-07 - ArtUnc_95: -4.025966804622898e-07 - ArtUnc_96: -1.8317314419579824e-08 + RCES: 2.89886141e-06 + ElEn: 2.03037513e-06 + ElTh: 1.38707003e-06 + Lumi: 1.05490000e-06 + LArN: 8.22000000e-07 + StatMC: 5.16490000e-06 + RadErr: 2.45230000e-06 + Model_1: 6.29678589e-07 + Model_2: 6.29678589e-07 + ModelRW_1: 1.00748574e-06 + ModelRW_2: 1.00748574e-06 + JES_1: 4.11258791e-06 + JES_2: 4.11258791e-06 + ArtUnc_1: -1.90199913e-17 + ArtUnc_2: 1.05071574e-14 + ArtUnc_3: 7.40593612e-14 + ArtUnc_4: 4.15167829e-13 + ArtUnc_5: 1.46070480e-14 + ArtUnc_6: 3.98704333e-15 + ArtUnc_7: 2.98712344e-12 + ArtUnc_8: -1.28901101e-11 + ArtUnc_9: 1.93624877e-13 + ArtUnc_10: -1.91306588e-13 + ArtUnc_11: -3.40005105e-13 + ArtUnc_12: -3.65200292e-14 + ArtUnc_13: 7.17143966e-12 + ArtUnc_14: -1.22790639e-13 + ArtUnc_15: 5.06803038e-14 + ArtUnc_16: 1.81463515e-15 + ArtUnc_17: -2.58230368e-12 + ArtUnc_18: 7.73236434e-14 + ArtUnc_19: 1.03685990e-11 + ArtUnc_20: 2.53779484e-11 + ArtUnc_21: -1.83552546e-12 + ArtUnc_22: 3.23052715e-10 + ArtUnc_23: 6.57164996e-12 + ArtUnc_24: -1.31525641e-10 + ArtUnc_25: -2.58023256e-10 + ArtUnc_26: 5.44801600e-11 + ArtUnc_27: 9.18192849e-10 + ArtUnc_28: 4.26631133e-11 + ArtUnc_29: 2.12138107e-10 + ArtUnc_30: 1.23369259e-10 + ArtUnc_31: -5.05720663e-11 + ArtUnc_32: 1.98979108e-09 + ArtUnc_33: -5.96474338e-13 + ArtUnc_34: -4.22910221e-11 + ArtUnc_35: -6.37277150e-11 + ArtUnc_36: 8.99243854e-10 + ArtUnc_37: -2.82386918e-09 + ArtUnc_38: 5.02980541e-10 + ArtUnc_39: 3.76033530e-09 + ArtUnc_40: -1.52254958e-11 + ArtUnc_41: -1.55307940e-08 + ArtUnc_42: 1.12000971e-10 + ArtUnc_43: 3.32045837e-08 + ArtUnc_44: 1.61277869e-08 + ArtUnc_45: -1.94347518e-10 + ArtUnc_46: 4.81871928e-09 + ArtUnc_47: -3.59368333e-10 + ArtUnc_48: -1.44524315e-11 + ArtUnc_49: 1.15619147e-07 + ArtUnc_50: 3.09526581e-09 + ArtUnc_51: -1.99025006e-09 + ArtUnc_52: 1.05515408e-09 + ArtUnc_53: 2.58398684e-11 + ArtUnc_54: -2.73598962e-10 + ArtUnc_55: -1.71466685e-08 + ArtUnc_56: -9.34668517e-09 + ArtUnc_57: -2.29645733e-09 + ArtUnc_58: -2.54105017e-08 + ArtUnc_59: 2.45279779e-10 + ArtUnc_60: 4.26908643e-08 + ArtUnc_61: 1.00067951e-10 + ArtUnc_62: -1.50736378e-09 + ArtUnc_63: 3.87525416e-11 + ArtUnc_64: -7.55789235e-08 + ArtUnc_65: -7.76277120e-09 + ArtUnc_66: 2.16764904e-07 + ArtUnc_67: 3.08892517e-08 + ArtUnc_68: -3.77732345e-08 + ArtUnc_69: -9.87350226e-09 + ArtUnc_70: 2.37312883e-07 + ArtUnc_71: 2.85740188e-09 + ArtUnc_72: -7.72891675e-08 + ArtUnc_73: -1.80048298e-08 + ArtUnc_74: 1.18963528e-06 + ArtUnc_75: 2.20986489e-07 + ArtUnc_76: 2.78601807e-08 + ArtUnc_77: 7.18708477e-08 + ArtUnc_78: 2.29164151e-06 + ArtUnc_79: -4.40157886e-06 + ArtUnc_80: 8.77909454e-08 + ArtUnc_81: -1.13450225e-07 + ArtUnc_82: -1.13815769e-08 + ArtUnc_83: 3.16393399e-07 + ArtUnc_84: -1.33291497e-06 + ArtUnc_85: -2.13539447e-08 + ArtUnc_86: 5.59259884e-08 + ArtUnc_87: 1.09417075e-07 + ArtUnc_88: 1.13768745e-07 + ArtUnc_89: 2.67045696e-06 + ArtUnc_90: -4.82310249e-07 + ArtUnc_91: 1.46490263e-07 + ArtUnc_92: -8.78447032e-06 + ArtUnc_93: 3.28059110e-08 + ArtUnc_94: 1.88100247e-07 + ArtUnc_95: -4.02596680e-07 + ArtUnc_96: -1.83173144e-08 - stat: 0 Uncorr: 1.58e-07 - RCES: 2.4232791254826587e-07 - ElEn: 1.8508774432684624e-07 - ElTh: 5.433798947329575e-08 - Lumi: 1.2166000000000002e-07 - LArN: 9.480000000000002e-08 - StatMC: 1.68586e-06 - RadErr: 1.2608400000000003e-06 - Model_1: 5.74255559137219e-07 - Model_2: 5.74255559137219e-07 - ModelRW_1: 1.039022704275513e-06 - ModelRW_2: 1.039022704275513e-06 - JES_1: 1.1201078734434465e-06 - JES_2: 1.1201078734434465e-06 - ArtUnc_1: 2.35927203457836e-20 - ArtUnc_2: -5.922629161146333e-18 - ArtUnc_3: -1.8819435998532412e-17 - ArtUnc_4: 3.158187577786074e-17 - ArtUnc_5: 1.5937576017366522e-18 - ArtUnc_6: 3.289342185321362e-18 - ArtUnc_7: 1.2239723672715737e-15 - ArtUnc_8: -2.2074775992870183e-14 - ArtUnc_9: 6.704927999036726e-16 - ArtUnc_10: 2.7699408858070488e-14 - ArtUnc_11: -5.873909050903443e-14 - ArtUnc_12: -4.664676081797592e-15 - ArtUnc_13: -3.2082494641071664e-14 - ArtUnc_14: -2.7683369430503856e-15 - ArtUnc_15: 7.564761722243567e-15 - ArtUnc_16: -4.898938440266008e-16 - ArtUnc_17: -7.0621030270174545e-15 - ArtUnc_18: 5.255133824119982e-16 - ArtUnc_19: 1.636309256674278e-14 - ArtUnc_20: -2.388984636576834e-13 - ArtUnc_21: 2.0807479147216883e-14 - ArtUnc_22: -5.297202828927104e-12 - ArtUnc_23: -1.9082778121082117e-13 - ArtUnc_24: 6.039201406219987e-12 - ArtUnc_25: 2.6715907554250054e-12 - ArtUnc_26: -2.7966393291241113e-13 - ArtUnc_27: -1.9072862813516748e-11 - ArtUnc_28: -3.1805753329792926e-13 - ArtUnc_29: 2.342851279537203e-12 - ArtUnc_30: -2.1374606682004223e-13 - ArtUnc_31: 1.0815260616289436e-13 - ArtUnc_32: -1.9686397571900833e-11 - ArtUnc_33: -1.5636800167330968e-14 - ArtUnc_34: 4.9413977886084574e-12 - ArtUnc_35: 3.43431542246607e-12 - ArtUnc_36: -4.797358782039034e-11 - ArtUnc_37: 5.773888609003612e-11 - ArtUnc_38: -9.251216849801803e-12 - ArtUnc_39: -6.909058451839399e-11 - ArtUnc_40: 1.6925117406345058e-12 - ArtUnc_41: 3.7053698468647157e-10 - ArtUnc_42: 1.855392905824653e-11 - ArtUnc_43: -4.846323282584783e-10 - ArtUnc_44: -3.327459492762007e-11 - ArtUnc_45: 7.597393152306623e-13 - ArtUnc_46: -6.897334913058715e-11 - ArtUnc_47: 1.5566079258656675e-10 - ArtUnc_48: -7.485089687541113e-12 - ArtUnc_49: -4.1862286539354177e-10 - ArtUnc_50: 6.302238876174077e-11 - ArtUnc_51: -9.653027877636256e-10 - ArtUnc_52: 5.72165799063931e-10 - ArtUnc_53: -2.489573684983785e-11 - ArtUnc_54: -7.617696381330824e-11 - ArtUnc_55: -1.3478870594901272e-08 - ArtUnc_56: 1.2402321011988667e-08 - ArtUnc_57: 3.5571456105850805e-09 - ArtUnc_58: -2.556150908248414e-08 - ArtUnc_59: -1.2383163719166848e-10 - ArtUnc_60: -3.2222219760101495e-08 - ArtUnc_61: -5.2251288050979926e-12 - ArtUnc_62: -8.97457198223341e-10 - ArtUnc_63: 9.440574608420388e-11 - ArtUnc_64: -2.448031875497111e-08 - ArtUnc_65: 1.042472983643038e-09 - ArtUnc_66: -3.5166796463923804e-08 - ArtUnc_67: 3.52988122038554e-10 - ArtUnc_68: 1.992668957386929e-09 - ArtUnc_69: -3.938321250102191e-10 - ArtUnc_70: 9.539111780811317e-09 - ArtUnc_71: 2.266615073220808e-10 - ArtUnc_72: 4.3344959477670267e-08 - ArtUnc_73: 3.439910778665954e-09 - ArtUnc_74: 3.766214542747073e-08 - ArtUnc_75: -8.853833025974996e-08 - ArtUnc_76: -5.07855697525207e-10 - ArtUnc_77: 2.6350754104537003e-09 - ArtUnc_78: -5.219583627350703e-08 - ArtUnc_79: -1.9286320867927353e-07 - ArtUnc_80: 2.0279690969114773e-09 - ArtUnc_81: -7.292739062847744e-09 - ArtUnc_82: -5.170141903927744e-10 - ArtUnc_83: 2.2541666134281235e-08 - ArtUnc_84: -3.9693062371755816e-08 - ArtUnc_85: 2.686872478207075e-06 - ArtUnc_86: 4.141473619815568e-07 - ArtUnc_87: 7.862979078955503e-07 - ArtUnc_88: 1.1721011470516791e-08 - ArtUnc_89: 4.4423448886381265e-08 - ArtUnc_90: 2.651165675700547e-07 - ArtUnc_91: -1.6784554078079242e-06 - ArtUnc_92: -1.550500835139394e-08 - ArtUnc_93: 1.9257018402611466e-08 - ArtUnc_94: 2.2281251523428708e-08 - ArtUnc_95: -8.447286155149897e-07 - ArtUnc_96: -1.7506003847933434e-07 + RCES: 2.42327913e-07 + ElEn: 1.85087744e-07 + ElTh: 5.43379895e-08 + Lumi: 1.21660000e-07 + LArN: 9.48000000e-08 + StatMC: 1.68586000e-06 + RadErr: 1.26084000e-06 + Model_1: 5.74255559e-07 + Model_2: 5.74255559e-07 + ModelRW_1: 1.03902270e-06 + ModelRW_2: 1.03902270e-06 + JES_1: 1.12010787e-06 + JES_2: 1.12010787e-06 + ArtUnc_1: 2.35927203e-20 + ArtUnc_2: -5.92262916e-18 + ArtUnc_3: -1.88194360e-17 + ArtUnc_4: 3.15818758e-17 + ArtUnc_5: 1.59375760e-18 + ArtUnc_6: 3.28934219e-18 + ArtUnc_7: 1.22397237e-15 + ArtUnc_8: -2.20747760e-14 + ArtUnc_9: 6.70492800e-16 + ArtUnc_10: 2.76994089e-14 + ArtUnc_11: -5.87390905e-14 + ArtUnc_12: -4.66467608e-15 + ArtUnc_13: -3.20824946e-14 + ArtUnc_14: -2.76833694e-15 + ArtUnc_15: 7.56476172e-15 + ArtUnc_16: -4.89893844e-16 + ArtUnc_17: -7.06210303e-15 + ArtUnc_18: 5.25513382e-16 + ArtUnc_19: 1.63630926e-14 + ArtUnc_20: -2.38898464e-13 + ArtUnc_21: 2.08074791e-14 + ArtUnc_22: -5.29720283e-12 + ArtUnc_23: -1.90827781e-13 + ArtUnc_24: 6.03920141e-12 + ArtUnc_25: 2.67159076e-12 + ArtUnc_26: -2.79663933e-13 + ArtUnc_27: -1.90728628e-11 + ArtUnc_28: -3.18057533e-13 + ArtUnc_29: 2.34285128e-12 + ArtUnc_30: -2.13746067e-13 + ArtUnc_31: 1.08152606e-13 + ArtUnc_32: -1.96863976e-11 + ArtUnc_33: -1.56368002e-14 + ArtUnc_34: 4.94139779e-12 + ArtUnc_35: 3.43431542e-12 + ArtUnc_36: -4.79735878e-11 + ArtUnc_37: 5.77388861e-11 + ArtUnc_38: -9.25121685e-12 + ArtUnc_39: -6.90905845e-11 + ArtUnc_40: 1.69251174e-12 + ArtUnc_41: 3.70536985e-10 + ArtUnc_42: 1.85539291e-11 + ArtUnc_43: -4.84632328e-10 + ArtUnc_44: -3.32745949e-11 + ArtUnc_45: 7.59739315e-13 + ArtUnc_46: -6.89733491e-11 + ArtUnc_47: 1.55660793e-10 + ArtUnc_48: -7.48508969e-12 + ArtUnc_49: -4.18622865e-10 + ArtUnc_50: 6.30223888e-11 + ArtUnc_51: -9.65302788e-10 + ArtUnc_52: 5.72165799e-10 + ArtUnc_53: -2.48957368e-11 + ArtUnc_54: -7.61769638e-11 + ArtUnc_55: -1.34788706e-08 + ArtUnc_56: 1.24023210e-08 + ArtUnc_57: 3.55714561e-09 + ArtUnc_58: -2.55615091e-08 + ArtUnc_59: -1.23831637e-10 + ArtUnc_60: -3.22222198e-08 + ArtUnc_61: -5.22512881e-12 + ArtUnc_62: -8.97457198e-10 + ArtUnc_63: 9.44057461e-11 + ArtUnc_64: -2.44803188e-08 + ArtUnc_65: 1.04247298e-09 + ArtUnc_66: -3.51667965e-08 + ArtUnc_67: 3.52988122e-10 + ArtUnc_68: 1.99266896e-09 + ArtUnc_69: -3.93832125e-10 + ArtUnc_70: 9.53911178e-09 + ArtUnc_71: 2.26661507e-10 + ArtUnc_72: 4.33449595e-08 + ArtUnc_73: 3.43991078e-09 + ArtUnc_74: 3.76621454e-08 + ArtUnc_75: -8.85383303e-08 + ArtUnc_76: -5.07855698e-10 + ArtUnc_77: 2.63507541e-09 + ArtUnc_78: -5.21958363e-08 + ArtUnc_79: -1.92863209e-07 + ArtUnc_80: 2.02796910e-09 + ArtUnc_81: -7.29273906e-09 + ArtUnc_82: -5.17014190e-10 + ArtUnc_83: 2.25416661e-08 + ArtUnc_84: -3.96930624e-08 + ArtUnc_85: 2.68687248e-06 + ArtUnc_86: 4.14147362e-07 + ArtUnc_87: 7.86297908e-07 + ArtUnc_88: 1.17210115e-08 + ArtUnc_89: 4.44234489e-08 + ArtUnc_90: 2.65116568e-07 + ArtUnc_91: -1.67845541e-06 + ArtUnc_92: -1.55050084e-08 + ArtUnc_93: 1.92570184e-08 + ArtUnc_94: 2.22812515e-08 + ArtUnc_95: -8.44728616e-07 + ArtUnc_96: -1.75060038e-07 - stat: 0 - Uncorr: 0.00035000000000000005 - RCES: 0.002311178960509117 - ElEn: 0.00026687356556991554 - ElTh: 6.472634703117427e-05 - Lumi: 0.00026950000000000005 + Uncorr: 3.50000000e-04 + RCES: 2.31117896e-03 + ElEn: 2.66873566e-04 + ElTh: 6.47263470e-05 + Lumi: 2.69500000e-04 LArN: 0.00021 - StatMC: 0.0006405000000000001 - RadErr: 0.00010850000000000001 - Model_1: 4.949747468305833e-06 - Model_2: 4.949747468305833e-06 - ModelRW_1: 0.0005568465901844062 - ModelRW_2: 0.0005568465901844062 - JES_1: 0.0010978924554572729 - JES_2: 0.0010978924554572729 - ArtUnc_1: -4.650512749355942e-09 - ArtUnc_2: 2.6150404338355495e-07 - ArtUnc_3: 5.12557246908968e-07 - ArtUnc_4: 1.0849380135812087e-06 - ArtUnc_5: 7.030184433999337e-08 - ArtUnc_6: -6.666096450952222e-08 - ArtUnc_7: 8.926475091343498e-06 - ArtUnc_8: -3.752463903315676e-05 - ArtUnc_9: -4.525940513413666e-06 - ArtUnc_10: 3.1467905590806244e-05 - ArtUnc_11: -2.0233147902406997e-05 - ArtUnc_12: 2.021947318951445e-06 - ArtUnc_13: -4.003287853094295e-05 - ArtUnc_14: 9.54290296203011e-06 - ArtUnc_15: -1.5817618089945295e-05 - ArtUnc_16: 5.069765305450733e-07 - ArtUnc_17: -1.0889155969046879e-05 - ArtUnc_18: 7.854719394652192e-07 - ArtUnc_19: 2.3706046886005644e-05 - ArtUnc_20: -1.9083074205274243e-05 - ArtUnc_21: 4.747888848597217e-07 - ArtUnc_22: 0.00016734295161063723 - ArtUnc_23: 1.8956321121513973e-06 - ArtUnc_24: 0.0001391234856377672 - ArtUnc_25: 0.00018799400387012392 - ArtUnc_26: 3.117946243289525e-05 - ArtUnc_27: 0.00021123077073010498 - ArtUnc_28: 2.693125101744767e-06 - ArtUnc_29: 0.0005732465940048262 - ArtUnc_30: 0.00012951670447777832 - ArtUnc_31: -5.386786433193626e-05 - ArtUnc_32: -0.0002279172775553063 - ArtUnc_33: 2.3810441821111926e-07 - ArtUnc_34: -7.330782394982886e-06 - ArtUnc_35: -1.7685369090595917e-05 - ArtUnc_36: -2.4724312944298536e-06 - ArtUnc_37: -1.4607163820264878e-05 - ArtUnc_38: 2.6176429082255432e-06 - ArtUnc_39: -6.607915967338914e-07 - ArtUnc_40: -5.1362874816051534e-08 - ArtUnc_41: 1.5135293048599083e-06 - ArtUnc_42: -3.930922079681527e-08 - ArtUnc_43: 1.3049128874402319e-06 - ArtUnc_44: -7.96030395165809e-06 - ArtUnc_45: 5.351476142624853e-08 - ArtUnc_46: -3.500460120766658e-07 - ArtUnc_47: -2.698530947205398e-07 - ArtUnc_48: 6.382660114578908e-09 - ArtUnc_49: 2.4341397056357427e-06 - ArtUnc_50: 4.81169572330774e-07 - ArtUnc_51: 2.879156312045966e-08 - ArtUnc_52: 1.933283862988446e-08 - ArtUnc_53: 5.698775424400118e-09 - ArtUnc_54: -1.2428319793269074e-08 - ArtUnc_55: 1.8299365598447446e-08 - ArtUnc_56: -9.683602000634305e-10 - ArtUnc_57: -2.008998975123179e-09 - ArtUnc_58: -4.09381063276111e-09 - ArtUnc_59: 7.913059982895237e-09 - ArtUnc_60: 6.358131181272643e-09 - ArtUnc_61: 3.316418941539378e-11 - ArtUnc_62: 4.826728173643972e-09 - ArtUnc_63: -5.171061553907083e-10 - ArtUnc_64: 3.34943184805511e-07 - ArtUnc_65: -1.1614407621026812e-08 - ArtUnc_66: -2.3340415670957435e-07 - ArtUnc_67: -4.714533807607662e-09 - ArtUnc_68: -5.125500757971282e-10 - ArtUnc_69: 2.5681759201689222e-11 - ArtUnc_70: -4.617791891797858e-10 - ArtUnc_71: -1.726956563111836e-11 - ArtUnc_72: -1.0426947546361144e-09 - ArtUnc_73: 1.3974946479052858e-10 - ArtUnc_74: -7.388353615932547e-11 - ArtUnc_75: 2.2023115713533785e-09 - ArtUnc_76: -3.238875632136181e-11 - ArtUnc_77: 1.683694432077045e-10 - ArtUnc_78: -2.3319062783790383e-09 - ArtUnc_79: 6.984125752352948e-10 - ArtUnc_80: 2.4210672858428407e-10 - ArtUnc_81: -1.0645104275344316e-10 - ArtUnc_82: 9.551534802832154e-12 - ArtUnc_83: 4.247721654093233e-11 - ArtUnc_84: 1.2581519448969144e-11 - ArtUnc_85: -2.853203139020557e-13 - ArtUnc_86: -7.1550686480950606e-12 - ArtUnc_87: -8.385559175981213e-12 - ArtUnc_88: 9.054072666771776e-12 - ArtUnc_89: 6.684767466884986e-11 - ArtUnc_90: 1.8249590088465067e-11 - ArtUnc_91: -1.3769282793509156e-12 - ArtUnc_92: -2.0830196938451975e-10 - ArtUnc_93: 1.474440598941191e-11 - ArtUnc_94: 2.8062288957760026e-12 - ArtUnc_95: -4.9037181482300245e-11 - ArtUnc_96: 1.1351687655157902e-11 + StatMC: 6.40500000e-04 + RadErr: 1.08500000e-04 + Model_1: 4.94974747e-06 + Model_2: 4.94974747e-06 + ModelRW_1: 5.56846590e-04 + ModelRW_2: 5.56846590e-04 + JES_1: 1.09789246e-03 + JES_2: 1.09789246e-03 + ArtUnc_1: -4.65051275e-09 + ArtUnc_2: 2.61504043e-07 + ArtUnc_3: 5.12557247e-07 + ArtUnc_4: 1.08493801e-06 + ArtUnc_5: 7.03018443e-08 + ArtUnc_6: -6.66609645e-08 + ArtUnc_7: 8.92647509e-06 + ArtUnc_8: -3.75246390e-05 + ArtUnc_9: -4.52594051e-06 + ArtUnc_10: 3.14679056e-05 + ArtUnc_11: -2.02331479e-05 + ArtUnc_12: 2.02194732e-06 + ArtUnc_13: -4.00328785e-05 + ArtUnc_14: 9.54290296e-06 + ArtUnc_15: -1.58176181e-05 + ArtUnc_16: 5.06976531e-07 + ArtUnc_17: -1.08891560e-05 + ArtUnc_18: 7.85471939e-07 + ArtUnc_19: 2.37060469e-05 + ArtUnc_20: -1.90830742e-05 + ArtUnc_21: 4.74788885e-07 + ArtUnc_22: 1.67342952e-04 + ArtUnc_23: 1.89563211e-06 + ArtUnc_24: 1.39123486e-04 + ArtUnc_25: 1.87994004e-04 + ArtUnc_26: 3.11794624e-05 + ArtUnc_27: 2.11230771e-04 + ArtUnc_28: 2.69312510e-06 + ArtUnc_29: 5.73246594e-04 + ArtUnc_30: 1.29516704e-04 + ArtUnc_31: -5.38678643e-05 + ArtUnc_32: -2.27917278e-04 + ArtUnc_33: 2.38104418e-07 + ArtUnc_34: -7.33078239e-06 + ArtUnc_35: -1.76853691e-05 + ArtUnc_36: -2.47243129e-06 + ArtUnc_37: -1.46071638e-05 + ArtUnc_38: 2.61764291e-06 + ArtUnc_39: -6.60791597e-07 + ArtUnc_40: -5.13628748e-08 + ArtUnc_41: 1.51352930e-06 + ArtUnc_42: -3.93092208e-08 + ArtUnc_43: 1.30491289e-06 + ArtUnc_44: -7.96030395e-06 + ArtUnc_45: 5.35147614e-08 + ArtUnc_46: -3.50046012e-07 + ArtUnc_47: -2.69853095e-07 + ArtUnc_48: 6.38266011e-09 + ArtUnc_49: 2.43413971e-06 + ArtUnc_50: 4.81169572e-07 + ArtUnc_51: 2.87915631e-08 + ArtUnc_52: 1.93328386e-08 + ArtUnc_53: 5.69877542e-09 + ArtUnc_54: -1.24283198e-08 + ArtUnc_55: 1.82993656e-08 + ArtUnc_56: -9.68360200e-10 + ArtUnc_57: -2.00899898e-09 + ArtUnc_58: -4.09381063e-09 + ArtUnc_59: 7.91305998e-09 + ArtUnc_60: 6.35813118e-09 + ArtUnc_61: 3.31641894e-11 + ArtUnc_62: 4.82672817e-09 + ArtUnc_63: -5.17106155e-10 + ArtUnc_64: 3.34943185e-07 + ArtUnc_65: -1.16144076e-08 + ArtUnc_66: -2.33404157e-07 + ArtUnc_67: -4.71453381e-09 + ArtUnc_68: -5.12550076e-10 + ArtUnc_69: 2.56817592e-11 + ArtUnc_70: -4.61779189e-10 + ArtUnc_71: -1.72695656e-11 + ArtUnc_72: -1.04269475e-09 + ArtUnc_73: 1.39749465e-10 + ArtUnc_74: -7.38835362e-11 + ArtUnc_75: 2.20231157e-09 + ArtUnc_76: -3.23887563e-11 + ArtUnc_77: 1.68369443e-10 + ArtUnc_78: -2.33190628e-09 + ArtUnc_79: 6.98412575e-10 + ArtUnc_80: 2.42106729e-10 + ArtUnc_81: -1.06451043e-10 + ArtUnc_82: 9.55153480e-12 + ArtUnc_83: 4.24772165e-11 + ArtUnc_84: 1.25815194e-11 + ArtUnc_85: -2.85320314e-13 + ArtUnc_86: -7.15506865e-12 + ArtUnc_87: -8.38555918e-12 + ArtUnc_88: 9.05407267e-12 + ArtUnc_89: 6.68476747e-11 + ArtUnc_90: 1.82495901e-11 + ArtUnc_91: -1.37692828e-12 + ArtUnc_92: -2.08301969e-10 + ArtUnc_93: 1.47444060e-11 + ArtUnc_94: 2.80622890e-12 + ArtUnc_95: -4.90371815e-11 + ArtUnc_96: 1.13516877e-11 - stat: 0 Uncorr: 0.000236 - RCES: 0.00022209092192163098 - ElEn: 0.00011211242036456084 - ElTh: 2.954716230029544e-05 - Lumi: 0.00018172000000000002 - LArN: 0.0001416 - StatMC: 0.00019587999999999997 - RadErr: 0.00010148 - Model_1: 0.0006124393253212925 - Model_2: 0.0006124393253212925 - ModelRW_1: 0.0005807326572528877 - ModelRW_2: 0.0005807326572528877 - JES_1: 0.0002470233543614854 - JES_2: 0.0002470233543614854 - ArtUnc_1: 5.471569996118318e-10 - ArtUnc_2: -2.1548459534153544e-08 - ArtUnc_3: 1.6107173820174696e-09 - ArtUnc_4: 1.879064311830434e-07 - ArtUnc_5: 1.050117042374516e-09 - ArtUnc_6: 1.4980021086434547e-08 - ArtUnc_7: 1.0716030983489342e-06 - ArtUnc_8: -5.8520277451735335e-06 - ArtUnc_9: 7.491192402186086e-07 - ArtUnc_10: -8.052950538988503e-08 - ArtUnc_11: -5.725234485220118e-06 - ArtUnc_12: -9.685501549661442e-07 - ArtUnc_13: -1.3424257850248628e-06 - ArtUnc_14: -9.956049613002278e-07 - ArtUnc_15: 5.29772550663397e-07 - ArtUnc_16: 1.6738377684272918e-08 - ArtUnc_17: -3.582507838237691e-07 - ArtUnc_18: -1.264727437334715e-08 - ArtUnc_19: 1.233662996663388e-06 - ArtUnc_20: 8.403154663435293e-07 - ArtUnc_21: 6.79129868143396e-07 - ArtUnc_22: -1.776150220884529e-06 - ArtUnc_23: -4.784905450229317e-07 - ArtUnc_24: -5.169696883145389e-06 - ArtUnc_25: 2.8213503257829692e-05 - ArtUnc_26: -6.758352126525302e-06 - ArtUnc_27: -1.9482452456984413e-05 - ArtUnc_28: -1.8615587928710915e-07 - ArtUnc_29: 4.94000286483612e-06 - ArtUnc_30: 2.595975163818299e-06 - ArtUnc_31: -1.076324800799102e-06 - ArtUnc_32: -3.2874259781786615e-05 - ArtUnc_33: -3.299468307382029e-08 - ArtUnc_34: -1.2349402662050923e-06 - ArtUnc_35: -6.191515490195612e-06 - ArtUnc_36: -2.7249485883079676e-06 - ArtUnc_37: -5.989822561698278e-05 - ArtUnc_38: 1.040363962746263e-05 - ArtUnc_39: 7.720196274664037e-05 - ArtUnc_40: 1.5220534773987657e-06 - ArtUnc_41: 1.70937927886724e-05 - ArtUnc_42: 8.114505195690131e-07 - ArtUnc_43: -1.371526883447847e-05 - ArtUnc_44: 0.00024620974445310794 - ArtUnc_45: -1.2730256982223254e-06 - ArtUnc_46: 1.1643913116449547e-05 - ArtUnc_47: 1.6299789140107506e-06 - ArtUnc_48: -2.2809295116473704e-07 - ArtUnc_49: -3.634576712612296e-05 - ArtUnc_50: -2.4422571255481782e-06 - ArtUnc_51: -6.822122723981085e-08 - ArtUnc_52: 5.976234737191589e-08 - ArtUnc_53: -1.8446310222813494e-08 - ArtUnc_54: 2.4751852109216145e-08 - ArtUnc_55: 1.1310038013260833e-06 - ArtUnc_56: 1.0759820264168969e-06 - ArtUnc_57: 3.0780950207694145e-07 - ArtUnc_58: 6.812023712735847e-07 - ArtUnc_59: -7.960672216219715e-09 - ArtUnc_60: -5.267916630689513e-07 - ArtUnc_61: -3.399701646687149e-10 - ArtUnc_62: -6.6656039128050465e-09 - ArtUnc_63: 7.138800656368192e-10 - ArtUnc_64: -2.4775857851850117e-06 - ArtUnc_65: 3.624287910535524e-08 - ArtUnc_66: 1.8384640130182134e-06 - ArtUnc_67: 2.7181424246913548e-08 - ArtUnc_68: -2.8193276372482016e-08 - ArtUnc_69: -5.42760780524532e-10 - ArtUnc_70: 3.0846613497465428e-09 - ArtUnc_71: -5.4471592197849197e-11 - ArtUnc_72: -2.1302205731503017e-08 - ArtUnc_73: -8.471531075724741e-10 - ArtUnc_74: -1.1628840669622942e-08 - ArtUnc_75: 1.7170116614500534e-08 - ArtUnc_76: -2.341536895472736e-10 - ArtUnc_77: -2.7783117168958113e-10 - ArtUnc_78: 3.260211955439682e-08 - ArtUnc_79: 1.046351715994512e-08 - ArtUnc_80: -3.450248147908177e-10 - ArtUnc_81: 7.482156465457119e-10 - ArtUnc_82: 3.8370527796884825e-11 - ArtUnc_83: -3.247121662728555e-11 - ArtUnc_84: -1.4283148435103424e-09 - ArtUnc_85: 2.3167662235587087e-11 - ArtUnc_86: 6.903485286946707e-11 - ArtUnc_87: 6.463824938400358e-11 - ArtUnc_88: 6.4133573585991416e-12 - ArtUnc_89: 3.6365934066034854e-10 - ArtUnc_90: -2.5940032189813645e-10 - ArtUnc_91: 6.457000917868311e-11 - ArtUnc_92: 1.2350529808450879e-09 - ArtUnc_93: -1.151435439701838e-11 - ArtUnc_94: -3.2150143351094645e-11 - ArtUnc_95: -9.747009492310879e-11 - ArtUnc_96: -6.133126016765184e-11 + RCES: 2.22090922e-04 + ElEn: 1.12112420e-04 + ElTh: 2.95471623e-05 + Lumi: 1.81720000e-04 + LArN: 1.41600000e-04 + StatMC: 1.95880000e-04 + RadErr: 1.01480000e-04 + Model_1: 6.12439325e-04 + Model_2: 6.12439325e-04 + ModelRW_1: 5.80732657e-04 + ModelRW_2: 5.80732657e-04 + JES_1: 2.47023354e-04 + JES_2: 2.47023354e-04 + ArtUnc_1: 5.47157000e-10 + ArtUnc_2: -2.15484595e-08 + ArtUnc_3: 1.61071738e-09 + ArtUnc_4: 1.87906431e-07 + ArtUnc_5: 1.05011704e-09 + ArtUnc_6: 1.49800211e-08 + ArtUnc_7: 1.07160310e-06 + ArtUnc_8: -5.85202775e-06 + ArtUnc_9: 7.49119240e-07 + ArtUnc_10: -8.05295054e-08 + ArtUnc_11: -5.72523449e-06 + ArtUnc_12: -9.68550155e-07 + ArtUnc_13: -1.34242579e-06 + ArtUnc_14: -9.95604961e-07 + ArtUnc_15: 5.29772551e-07 + ArtUnc_16: 1.67383777e-08 + ArtUnc_17: -3.58250784e-07 + ArtUnc_18: -1.26472744e-08 + ArtUnc_19: 1.23366300e-06 + ArtUnc_20: 8.40315466e-07 + ArtUnc_21: 6.79129868e-07 + ArtUnc_22: -1.77615022e-06 + ArtUnc_23: -4.78490545e-07 + ArtUnc_24: -5.16969688e-06 + ArtUnc_25: 2.82135033e-05 + ArtUnc_26: -6.75835213e-06 + ArtUnc_27: -1.94824525e-05 + ArtUnc_28: -1.86155879e-07 + ArtUnc_29: 4.94000286e-06 + ArtUnc_30: 2.59597516e-06 + ArtUnc_31: -1.07632480e-06 + ArtUnc_32: -3.28742598e-05 + ArtUnc_33: -3.29946831e-08 + ArtUnc_34: -1.23494027e-06 + ArtUnc_35: -6.19151549e-06 + ArtUnc_36: -2.72494859e-06 + ArtUnc_37: -5.98982256e-05 + ArtUnc_38: 1.04036396e-05 + ArtUnc_39: 7.72019627e-05 + ArtUnc_40: 1.52205348e-06 + ArtUnc_41: 1.70937928e-05 + ArtUnc_42: 8.11450520e-07 + ArtUnc_43: -1.37152688e-05 + ArtUnc_44: 2.46209744e-04 + ArtUnc_45: -1.27302570e-06 + ArtUnc_46: 1.16439131e-05 + ArtUnc_47: 1.62997891e-06 + ArtUnc_48: -2.28092951e-07 + ArtUnc_49: -3.63457671e-05 + ArtUnc_50: -2.44225713e-06 + ArtUnc_51: -6.82212272e-08 + ArtUnc_52: 5.97623474e-08 + ArtUnc_53: -1.84463102e-08 + ArtUnc_54: 2.47518521e-08 + ArtUnc_55: 1.13100380e-06 + ArtUnc_56: 1.07598203e-06 + ArtUnc_57: 3.07809502e-07 + ArtUnc_58: 6.81202371e-07 + ArtUnc_59: -7.96067222e-09 + ArtUnc_60: -5.26791663e-07 + ArtUnc_61: -3.39970165e-10 + ArtUnc_62: -6.66560391e-09 + ArtUnc_63: 7.13880066e-10 + ArtUnc_64: -2.47758579e-06 + ArtUnc_65: 3.62428791e-08 + ArtUnc_66: 1.83846401e-06 + ArtUnc_67: 2.71814242e-08 + ArtUnc_68: -2.81932764e-08 + ArtUnc_69: -5.42760781e-10 + ArtUnc_70: 3.08466135e-09 + ArtUnc_71: -5.44715922e-11 + ArtUnc_72: -2.13022057e-08 + ArtUnc_73: -8.47153108e-10 + ArtUnc_74: -1.16288407e-08 + ArtUnc_75: 1.71701166e-08 + ArtUnc_76: -2.34153690e-10 + ArtUnc_77: -2.77831172e-10 + ArtUnc_78: 3.26021196e-08 + ArtUnc_79: 1.04635172e-08 + ArtUnc_80: -3.45024815e-10 + ArtUnc_81: 7.48215647e-10 + ArtUnc_82: 3.83705278e-11 + ArtUnc_83: -3.24712166e-11 + ArtUnc_84: -1.42831484e-09 + ArtUnc_85: 2.31676622e-11 + ArtUnc_86: 6.90348529e-11 + ArtUnc_87: 6.46382494e-11 + ArtUnc_88: 6.41335736e-12 + ArtUnc_89: 3.63659341e-10 + ArtUnc_90: -2.59400322e-10 + ArtUnc_91: 6.45700092e-11 + ArtUnc_92: 1.23505298e-09 + ArtUnc_93: -1.15143544e-11 + ArtUnc_94: -3.21501434e-11 + ArtUnc_95: -9.74700949e-11 + ArtUnc_96: -6.13312602e-11 - stat: 0 Uncorr: 5.64e-05 - RCES: 5.7574290199706335e-05 - ElEn: 4.145687745115399e-05 - ElTh: 3.0440329301766756e-05 - Lumi: 4.3428e-05 - LArN: 3.384e-05 - StatMC: 4.8504e-05 - RadErr: 3.7788000000000005e-05 - Model_1: 0.00021615405772735334 - Model_2: 0.00021615405772735334 - ModelRW_1: 0.00023529685250763555 - ModelRW_2: 0.00023529685250763555 - JES_1: 0.00014883349824552266 - JES_2: 0.00014883349824552266 - ArtUnc_1: 3.72574843754151e-13 - ArtUnc_2: -5.5762134156865614e-11 - ArtUnc_3: -1.8792997287274888e-10 - ArtUnc_4: -4.5867840932993047e-10 - ArtUnc_5: -1.4436446732121365e-11 - ArtUnc_6: 1.867396902546295e-11 - ArtUnc_7: -2.3048097772345663e-09 - ArtUnc_8: 7.845765890473015e-10 - ArtUnc_9: 1.977290840908495e-09 - ArtUnc_10: -1.1619921967779412e-08 - ArtUnc_11: -3.343505219064145e-09 - ArtUnc_12: -1.858073969329258e-09 - ArtUnc_13: 6.893470512185661e-08 - ArtUnc_14: -8.552736714474256e-09 - ArtUnc_15: 1.584680464086288e-08 - ArtUnc_16: -4.681586319467342e-10 - ArtUnc_17: 2.577357061816638e-08 - ArtUnc_18: -1.3883467658975774e-09 - ArtUnc_19: -1.0772612664045383e-07 - ArtUnc_20: 9.127921594949682e-08 - ArtUnc_21: -6.69780382479327e-11 - ArtUnc_22: -1.1270512654920153e-07 - ArtUnc_23: -1.33234118677314e-09 - ArtUnc_24: -1.555632830104435e-06 - ArtUnc_25: 7.606353978765029e-07 - ArtUnc_26: -3.851083482718545e-07 - ArtUnc_27: -1.4525484734098774e-06 - ArtUnc_28: -5.0885052975844806e-08 - ArtUnc_29: -1.61172054026889e-06 - ArtUnc_30: -4.1133548073345233e-07 - ArtUnc_31: 1.6983994409471313e-07 - ArtUnc_32: 1.6892305922854216e-06 - ArtUnc_33: -1.457067664224312e-10 - ArtUnc_34: 8.989143287517297e-08 - ArtUnc_35: -8.88695551901891e-08 - ArtUnc_36: -7.18178209779854e-07 - ArtUnc_37: -2.0778125037738755e-06 - ArtUnc_38: 3.6391782595336935e-07 - ArtUnc_39: 2.7286713820166425e-06 - ArtUnc_40: 5.455195979650584e-08 - ArtUnc_41: 7.549069678202054e-06 - ArtUnc_42: 7.453588459557469e-08 - ArtUnc_43: -1.1101608282611014e-05 - ArtUnc_44: 2.001257463619583e-06 - ArtUnc_45: -2.7433672163892875e-08 - ArtUnc_46: -9.517229932447282e-07 - ArtUnc_47: 5.589666364914897e-07 - ArtUnc_48: -2.4944416287900184e-08 - ArtUnc_49: -2.347177907621313e-05 - ArtUnc_50: -1.4282041253317663e-06 - ArtUnc_51: 4.788002977745001e-07 - ArtUnc_52: 8.903094382816588e-07 - ArtUnc_53: -1.2459460515372746e-07 - ArtUnc_54: 8.14925320564319e-08 - ArtUnc_55: 1.2594223585421794e-05 - ArtUnc_56: 1.4274865327025676e-05 - ArtUnc_57: 4.174072422605024e-06 - ArtUnc_58: 2.230354844345179e-05 - ArtUnc_59: -2.190809742086046e-07 - ArtUnc_60: -1.8910934551201536e-05 - ArtUnc_61: -1.094479673965532e-08 - ArtUnc_62: -6.893892056174763e-08 - ArtUnc_63: 5.82376697707184e-09 - ArtUnc_64: 5.660326229221998e-05 - ArtUnc_65: -8.015406273538802e-07 - ArtUnc_66: -3.968347141017291e-05 - ArtUnc_67: -5.263076671626725e-07 - ArtUnc_68: 3.5855468780181044e-07 - ArtUnc_69: 1.0173186218331753e-08 - ArtUnc_70: -1.2295317660275172e-07 - ArtUnc_71: -2.4793314171900886e-09 - ArtUnc_72: -6.571712548162341e-07 - ArtUnc_73: -4.7783870276875176e-08 - ArtUnc_74: -1.005910223108769e-07 - ArtUnc_75: 8.417761885970648e-07 - ArtUnc_76: 8.396096597475887e-09 - ArtUnc_77: 7.423005449611018e-09 - ArtUnc_78: -1.1325365974715549e-07 - ArtUnc_79: -4.231882205546767e-08 - ArtUnc_80: 6.129071591428702e-09 - ArtUnc_81: -9.456587992687747e-09 - ArtUnc_82: -1.5188352334206963e-10 - ArtUnc_83: 5.014588526357662e-09 - ArtUnc_84: -1.1798190978592541e-08 - ArtUnc_85: -2.631729931570385e-10 - ArtUnc_86: 1.9245738468918398e-11 - ArtUnc_87: 2.5939757535041884e-10 - ArtUnc_88: 1.2062301518547448e-09 - ArtUnc_89: 2.027714838316177e-08 - ArtUnc_90: -3.0170830838406754e-09 - ArtUnc_91: -1.0921148670096631e-09 - ArtUnc_92: -2.351887988493733e-08 - ArtUnc_93: 4.3944548208894744e-10 - ArtUnc_94: 3.7330271507787496e-10 - ArtUnc_95: -3.296110908263646e-09 - ArtUnc_96: 4.3659842526486204e-11 + RCES: 5.75742902e-05 + ElEn: 4.14568775e-05 + ElTh: 3.04403293e-05 + Lumi: 4.34280000e-05 + LArN: 3.38400000e-05 + StatMC: 4.85040000e-05 + RadErr: 3.77880000e-05 + Model_1: 2.16154058e-04 + Model_2: 2.16154058e-04 + ModelRW_1: 2.35296853e-04 + ModelRW_2: 2.35296853e-04 + JES_1: 1.48833498e-04 + JES_2: 1.48833498e-04 + ArtUnc_1: 3.72574844e-13 + ArtUnc_2: -5.57621342e-11 + ArtUnc_3: -1.87929973e-10 + ArtUnc_4: -4.58678409e-10 + ArtUnc_5: -1.44364467e-11 + ArtUnc_6: 1.86739690e-11 + ArtUnc_7: -2.30480978e-09 + ArtUnc_8: 7.84576589e-10 + ArtUnc_9: 1.97729084e-09 + ArtUnc_10: -1.16199220e-08 + ArtUnc_11: -3.34350522e-09 + ArtUnc_12: -1.85807397e-09 + ArtUnc_13: 6.89347051e-08 + ArtUnc_14: -8.55273671e-09 + ArtUnc_15: 1.58468046e-08 + ArtUnc_16: -4.68158632e-10 + ArtUnc_17: 2.57735706e-08 + ArtUnc_18: -1.38834677e-09 + ArtUnc_19: -1.07726127e-07 + ArtUnc_20: 9.12792159e-08 + ArtUnc_21: -6.69780382e-11 + ArtUnc_22: -1.12705127e-07 + ArtUnc_23: -1.33234119e-09 + ArtUnc_24: -1.55563283e-06 + ArtUnc_25: 7.60635398e-07 + ArtUnc_26: -3.85108348e-07 + ArtUnc_27: -1.45254847e-06 + ArtUnc_28: -5.08850530e-08 + ArtUnc_29: -1.61172054e-06 + ArtUnc_30: -4.11335481e-07 + ArtUnc_31: 1.69839944e-07 + ArtUnc_32: 1.68923059e-06 + ArtUnc_33: -1.45706766e-10 + ArtUnc_34: 8.98914329e-08 + ArtUnc_35: -8.88695552e-08 + ArtUnc_36: -7.18178210e-07 + ArtUnc_37: -2.07781250e-06 + ArtUnc_38: 3.63917826e-07 + ArtUnc_39: 2.72867138e-06 + ArtUnc_40: 5.45519598e-08 + ArtUnc_41: 7.54906968e-06 + ArtUnc_42: 7.45358846e-08 + ArtUnc_43: -1.11016083e-05 + ArtUnc_44: 2.00125746e-06 + ArtUnc_45: -2.74336722e-08 + ArtUnc_46: -9.51722993e-07 + ArtUnc_47: 5.58966636e-07 + ArtUnc_48: -2.49444163e-08 + ArtUnc_49: -2.34717791e-05 + ArtUnc_50: -1.42820413e-06 + ArtUnc_51: 4.78800298e-07 + ArtUnc_52: 8.90309438e-07 + ArtUnc_53: -1.24594605e-07 + ArtUnc_54: 8.14925321e-08 + ArtUnc_55: 1.25942236e-05 + ArtUnc_56: 1.42748653e-05 + ArtUnc_57: 4.17407242e-06 + ArtUnc_58: 2.23035484e-05 + ArtUnc_59: -2.19080974e-07 + ArtUnc_60: -1.89109346e-05 + ArtUnc_61: -1.09447967e-08 + ArtUnc_62: -6.89389206e-08 + ArtUnc_63: 5.82376698e-09 + ArtUnc_64: 5.66032623e-05 + ArtUnc_65: -8.01540627e-07 + ArtUnc_66: -3.96834714e-05 + ArtUnc_67: -5.26307667e-07 + ArtUnc_68: 3.58554688e-07 + ArtUnc_69: 1.01731862e-08 + ArtUnc_70: -1.22953177e-07 + ArtUnc_71: -2.47933142e-09 + ArtUnc_72: -6.57171255e-07 + ArtUnc_73: -4.77838703e-08 + ArtUnc_74: -1.00591022e-07 + ArtUnc_75: 8.41776189e-07 + ArtUnc_76: 8.39609660e-09 + ArtUnc_77: 7.42300545e-09 + ArtUnc_78: -1.13253660e-07 + ArtUnc_79: -4.23188221e-08 + ArtUnc_80: 6.12907159e-09 + ArtUnc_81: -9.45658799e-09 + ArtUnc_82: -1.51883523e-10 + ArtUnc_83: 5.01458853e-09 + ArtUnc_84: -1.17981910e-08 + ArtUnc_85: -2.63172993e-10 + ArtUnc_86: 1.92457385e-11 + ArtUnc_87: 2.59397575e-10 + ArtUnc_88: 1.20623015e-09 + ArtUnc_89: 2.02771484e-08 + ArtUnc_90: -3.01708308e-09 + ArtUnc_91: -1.09211487e-09 + ArtUnc_92: -2.35188799e-08 + ArtUnc_93: 4.39445482e-10 + ArtUnc_94: 3.73302715e-10 + ArtUnc_95: -3.29611091e-09 + ArtUnc_96: 4.36598425e-11 - stat: 0 Uncorr: 1.0e-05 - RCES: 1.1053958566956909e-05 - ElEn: 8.203048213926333e-06 - ElTh: 8.25030302473794e-06 + RCES: 1.10539586e-05 + ElEn: 8.20304821e-06 + ElTh: 8.25030302e-06 Lumi: 7.7e-06 - LArN: 5.999999999999999e-06 + LArN: 6.00000000e-06 StatMC: 1.84e-05 RadErr: 2.46e-05 - Model_1: 4.422955742487143e-05 - Model_2: 4.422955742487143e-05 - ModelRW_1: 4.511341263970173e-05 - ModelRW_2: 4.511341263970173e-05 - JES_1: 2.696523224450329e-05 - JES_2: 2.696523224450329e-05 - ArtUnc_1: -5.241462259945504e-15 - ArtUnc_2: 8.207592964730536e-13 - ArtUnc_3: 3.847729041683561e-12 - ArtUnc_4: 1.3792222266569431e-11 - ArtUnc_5: 5.052176641803228e-13 - ArtUnc_6: 2.249495667603643e-14 - ArtUnc_7: 6.265328750309011e-11 - ArtUnc_8: -2.377277478183806e-10 - ArtUnc_9: -3.167587896563486e-12 - ArtUnc_10: -9.980068575788724e-12 - ArtUnc_11: 8.486503372824655e-11 - ArtUnc_12: 1.4472528442572177e-11 - ArtUnc_13: 1.9485505226517446e-10 - ArtUnc_14: 1.3385041148049875e-11 - ArtUnc_15: 1.2777939886617276e-11 - ArtUnc_16: -1.4594414874811343e-12 - ArtUnc_17: -7.622530132064897e-12 - ArtUnc_18: -3.3382254149254044e-13 - ArtUnc_19: 4.1744491889578663e-10 - ArtUnc_20: -1.458526363026746e-10 - ArtUnc_21: -1.2183263999339942e-10 - ArtUnc_22: 2.970142757468545e-09 - ArtUnc_23: 2.2299854903822662e-10 - ArtUnc_24: 7.119878894173299e-10 - ArtUnc_25: -4.04907482471203e-09 - ArtUnc_26: 1.362777303429574e-09 - ArtUnc_27: 7.095862095533802e-09 - ArtUnc_28: -5.718772664874926e-10 - ArtUnc_29: -3.751773345438866e-09 - ArtUnc_30: -2.9515041503778913e-09 - ArtUnc_31: 1.1378459995070667e-09 - ArtUnc_32: 2.1546215977208804e-08 - ArtUnc_33: -2.5580061091301333e-11 - ArtUnc_34: -7.500012142866035e-10 - ArtUnc_35: -8.728016111705376e-09 - ArtUnc_36: 1.4591722382626946e-08 - ArtUnc_37: -1.5180310001887374e-07 - ArtUnc_38: 2.908727650187965e-08 - ArtUnc_39: 2.400366075531249e-07 - ArtUnc_40: 3.6335764936557314e-09 - ArtUnc_41: -1.7897560141455276e-07 - ArtUnc_42: 3.862399379342501e-09 - ArtUnc_43: 3.891403788701593e-07 - ArtUnc_44: -3.012756355155561e-07 - ArtUnc_45: 2.2701893778899755e-10 - ArtUnc_46: 3.043726544595362e-08 - ArtUnc_47: -6.82161911121795e-08 - ArtUnc_48: 5.213033624694447e-09 - ArtUnc_49: 7.909571133748741e-07 - ArtUnc_50: -4.000696485508816e-09 - ArtUnc_51: 1.2244715995664577e-07 - ArtUnc_52: -2.387388760086234e-08 - ArtUnc_53: -1.3473575118922905e-08 - ArtUnc_54: 2.9872328342697794e-08 - ArtUnc_55: -1.581319061040107e-06 - ArtUnc_56: 1.933241606756599e-06 - ArtUnc_57: 4.697845033799855e-07 - ArtUnc_58: -3.308935751188501e-06 - ArtUnc_59: 1.8756063896365827e-07 - ArtUnc_60: -3.6319870239236007e-06 - ArtUnc_61: 8.974999862891205e-09 - ArtUnc_62: -3.2100263389846357e-07 - ArtUnc_63: 3.687766345572873e-08 - ArtUnc_64: -7.773053107356384e-06 - ArtUnc_65: 6.977881398509863e-07 - ArtUnc_66: -8.346360521631696e-06 - ArtUnc_67: -3.417827012533332e-07 - ArtUnc_68: -4.126287864727083e-07 - ArtUnc_69: 3.5351700709203385e-09 - ArtUnc_70: -4.836847420599969e-07 - ArtUnc_71: -2.5243277693506292e-08 - ArtUnc_72: -5.773132591863485e-06 - ArtUnc_73: -4.681112618505477e-07 - ArtUnc_74: -1.577039913530142e-06 - ArtUnc_75: 9.86917479891918e-06 - ArtUnc_76: 7.128038724576999e-08 - ArtUnc_77: -3.1454011412941795e-08 - ArtUnc_78: 1.8891715977876717e-05 - ArtUnc_79: 1.349982111950535e-05 - ArtUnc_80: -7.125930552507109e-08 - ArtUnc_81: 4.94833375371924e-07 - ArtUnc_82: 3.523517435289861e-08 - ArtUnc_83: -5.926496319977509e-08 - ArtUnc_84: -1.4452008476412964e-07 - ArtUnc_85: 1.508320644838305e-08 - ArtUnc_86: 4.377923905507967e-09 - ArtUnc_87: 5.063614671791702e-09 - ArtUnc_88: 6.745731559486469e-09 - ArtUnc_89: 2.873263317578852e-07 - ArtUnc_90: -9.439684959935189e-08 - ArtUnc_91: -2.3971753920997772e-08 - ArtUnc_92: -4.26823292277409e-08 - ArtUnc_93: 1.5311556383332444e-09 - ArtUnc_94: -4.599464050398569e-10 - ArtUnc_95: -1.9906259590373583e-08 - ArtUnc_96: 2.321632159279879e-09 + Model_1: 4.42295574e-05 + Model_2: 4.42295574e-05 + ModelRW_1: 4.51134126e-05 + ModelRW_2: 4.51134126e-05 + JES_1: 2.69652322e-05 + JES_2: 2.69652322e-05 + ArtUnc_1: -5.24146226e-15 + ArtUnc_2: 8.20759296e-13 + ArtUnc_3: 3.84772904e-12 + ArtUnc_4: 1.37922223e-11 + ArtUnc_5: 5.05217664e-13 + ArtUnc_6: 2.24949567e-14 + ArtUnc_7: 6.26532875e-11 + ArtUnc_8: -2.37727748e-10 + ArtUnc_9: -3.16758790e-12 + ArtUnc_10: -9.98006858e-12 + ArtUnc_11: 8.48650337e-11 + ArtUnc_12: 1.44725284e-11 + ArtUnc_13: 1.94855052e-10 + ArtUnc_14: 1.33850411e-11 + ArtUnc_15: 1.27779399e-11 + ArtUnc_16: -1.45944149e-12 + ArtUnc_17: -7.62253013e-12 + ArtUnc_18: -3.33822541e-13 + ArtUnc_19: 4.17444919e-10 + ArtUnc_20: -1.45852636e-10 + ArtUnc_21: -1.21832640e-10 + ArtUnc_22: 2.97014276e-09 + ArtUnc_23: 2.22998549e-10 + ArtUnc_24: 7.11987889e-10 + ArtUnc_25: -4.04907482e-09 + ArtUnc_26: 1.36277730e-09 + ArtUnc_27: 7.09586210e-09 + ArtUnc_28: -5.71877266e-10 + ArtUnc_29: -3.75177335e-09 + ArtUnc_30: -2.95150415e-09 + ArtUnc_31: 1.13784600e-09 + ArtUnc_32: 2.15462160e-08 + ArtUnc_33: -2.55800611e-11 + ArtUnc_34: -7.50001214e-10 + ArtUnc_35: -8.72801611e-09 + ArtUnc_36: 1.45917224e-08 + ArtUnc_37: -1.51803100e-07 + ArtUnc_38: 2.90872765e-08 + ArtUnc_39: 2.40036608e-07 + ArtUnc_40: 3.63357649e-09 + ArtUnc_41: -1.78975601e-07 + ArtUnc_42: 3.86239938e-09 + ArtUnc_43: 3.89140379e-07 + ArtUnc_44: -3.01275636e-07 + ArtUnc_45: 2.27018938e-10 + ArtUnc_46: 3.04372654e-08 + ArtUnc_47: -6.82161911e-08 + ArtUnc_48: 5.21303362e-09 + ArtUnc_49: 7.90957113e-07 + ArtUnc_50: -4.00069649e-09 + ArtUnc_51: 1.22447160e-07 + ArtUnc_52: -2.38738876e-08 + ArtUnc_53: -1.34735751e-08 + ArtUnc_54: 2.98723283e-08 + ArtUnc_55: -1.58131906e-06 + ArtUnc_56: 1.93324161e-06 + ArtUnc_57: 4.69784503e-07 + ArtUnc_58: -3.30893575e-06 + ArtUnc_59: 1.87560639e-07 + ArtUnc_60: -3.63198702e-06 + ArtUnc_61: 8.97499986e-09 + ArtUnc_62: -3.21002634e-07 + ArtUnc_63: 3.68776635e-08 + ArtUnc_64: -7.77305311e-06 + ArtUnc_65: 6.97788140e-07 + ArtUnc_66: -8.34636052e-06 + ArtUnc_67: -3.41782701e-07 + ArtUnc_68: -4.12628786e-07 + ArtUnc_69: 3.53517007e-09 + ArtUnc_70: -4.83684742e-07 + ArtUnc_71: -2.52432777e-08 + ArtUnc_72: -5.77313259e-06 + ArtUnc_73: -4.68111262e-07 + ArtUnc_74: -1.57703991e-06 + ArtUnc_75: 9.86917480e-06 + ArtUnc_76: 7.12803872e-08 + ArtUnc_77: -3.14540114e-08 + ArtUnc_78: 1.88917160e-05 + ArtUnc_79: 1.34998211e-05 + ArtUnc_80: -7.12593055e-08 + ArtUnc_81: 4.94833375e-07 + ArtUnc_82: 3.52351744e-08 + ArtUnc_83: -5.92649632e-08 + ArtUnc_84: -1.44520085e-07 + ArtUnc_85: 1.50832064e-08 + ArtUnc_86: 4.37792391e-09 + ArtUnc_87: 5.06361467e-09 + ArtUnc_88: 6.74573156e-09 + ArtUnc_89: 2.87326332e-07 + ArtUnc_90: -9.43968496e-08 + ArtUnc_91: -2.39717539e-08 + ArtUnc_92: -4.26823292e-08 + ArtUnc_93: 1.53115564e-09 + ArtUnc_94: -4.59946405e-10 + ArtUnc_95: -1.99062596e-08 + ArtUnc_96: 2.32163216e-09 - stat: 0 Uncorr: 1.63e-06 - RCES: 1.1487453188152717e-06 - ElEn: 1.5974000000000002e-06 - ElTh: 1.0284189163468356e-06 - Lumi: 1.2551e-06 + RCES: 1.14874532e-06 + ElEn: 1.59740000e-06 + ElTh: 1.02841892e-06 + Lumi: 1.25510000e-06 LArN: 9.78e-07 - StatMC: 7.090499999999999e-06 - RadErr: 4.8737000000000004e-06 - Model_1: 5.6476618613369546e-06 - Model_2: 5.6476618613369546e-06 - ModelRW_1: 6.281583090670695e-06 - ModelRW_2: 6.281583090670695e-06 - JES_1: 6.898078345452451e-06 - JES_2: 6.898078345452451e-06 - ArtUnc_1: -1.9019991291243223e-17 - ArtUnc_2: 1.0507157366899366e-14 - ArtUnc_3: 7.405936115075455e-14 - ArtUnc_4: 4.1516782877622893e-13 - ArtUnc_5: 1.4607047978177815e-14 - ArtUnc_6: 3.987043331119774e-15 - ArtUnc_7: 2.9871234429873815e-12 - ArtUnc_8: -1.28901101419786e-11 - ArtUnc_9: 1.936248767826609e-13 - ArtUnc_10: -1.9130658824214493e-13 - ArtUnc_11: -3.400051045086563e-13 - ArtUnc_12: -3.6520029181094834e-14 - ArtUnc_13: 7.1714396580652244e-12 - ArtUnc_14: -1.2279063899775683e-13 - ArtUnc_15: 5.068030375999428e-14 - ArtUnc_16: 1.814635154565131e-15 - ArtUnc_17: -2.5823036770884942e-12 - ArtUnc_18: 7.732364342860023e-14 - ArtUnc_19: 1.0368599030336335e-11 - ArtUnc_20: 2.537794841164756e-11 - ArtUnc_21: -1.8355254578712134e-12 - ArtUnc_22: 3.23052714866025e-10 - ArtUnc_23: 6.571649960662051e-12 - ArtUnc_24: -1.315256411252612e-10 - ArtUnc_25: -2.5802325607447383e-10 - ArtUnc_26: 5.448016000703067e-11 - ArtUnc_27: 9.181928486933075e-10 - ArtUnc_28: 4.266311332429477e-11 - ArtUnc_29: 2.121381067959539e-10 - ArtUnc_30: 1.2336925894313725e-10 - ArtUnc_31: -5.0572066259762264e-11 - ArtUnc_32: 1.9897910843142253e-09 - ArtUnc_33: -5.964743379366253e-13 - ArtUnc_34: -4.2291022066909204e-11 - ArtUnc_35: -6.372771500145227e-11 - ArtUnc_36: 8.992438540225526e-10 - ArtUnc_37: -2.823869184278453e-09 - ArtUnc_38: 5.029805408362752e-10 - ArtUnc_39: 3.7603353015553514e-09 - ArtUnc_40: -1.522549579025299e-11 - ArtUnc_41: -1.553079400463468e-08 - ArtUnc_42: 1.1200097112152992e-10 - ArtUnc_43: 3.320458370959093e-08 - ArtUnc_44: 1.612778691079218e-08 - ArtUnc_45: -1.9434751816654295e-10 - ArtUnc_46: 4.818719281818341e-09 - ArtUnc_47: -3.5936833342592e-10 - ArtUnc_48: -1.4452431492510908e-11 - ArtUnc_49: 1.156191469303947e-07 - ArtUnc_50: 3.095265809797049e-09 - ArtUnc_51: -1.990250058016618e-09 - ArtUnc_52: 1.0551540835680762e-09 - ArtUnc_53: 2.583986842251015e-11 - ArtUnc_54: -2.7359896160844426e-10 - ArtUnc_55: -1.714666851039895e-08 - ArtUnc_56: -9.346685172236354e-09 - ArtUnc_57: -2.2964573279275797e-09 - ArtUnc_58: -2.541050169654537e-08 - ArtUnc_59: 2.4527977931268276e-10 - ArtUnc_60: 4.26908642864609e-08 - ArtUnc_61: 1.0006795078580084e-10 - ArtUnc_62: -1.5073637832204924e-09 - ArtUnc_63: 3.8752541563071965e-11 - ArtUnc_64: -7.557892352678078e-08 - ArtUnc_65: -7.762771204776205e-09 - ArtUnc_66: 2.1676490443910404e-07 - ArtUnc_67: 3.088925173796808e-08 - ArtUnc_68: -3.7773234498553116e-08 - ArtUnc_69: -9.873502259301812e-09 - ArtUnc_70: 2.373128831845414e-07 - ArtUnc_71: 2.8574018820224212e-09 - ArtUnc_72: -7.728916750927325e-08 - ArtUnc_73: -1.8004829794967403e-08 - ArtUnc_74: 1.1896352758006183e-06 - ArtUnc_75: 2.2098648925167571e-07 - ArtUnc_76: 2.7860180711512064e-08 - ArtUnc_77: 7.187084774475774e-08 - ArtUnc_78: 2.2916415135354548e-06 - ArtUnc_79: -4.401578860181456e-06 - ArtUnc_80: 8.779094540533577e-08 - ArtUnc_81: -1.1345022521150932e-07 - ArtUnc_82: -1.1381576922669683e-08 - ArtUnc_83: 3.163933993362474e-07 - ArtUnc_84: -1.3329149678621743e-06 - ArtUnc_85: -2.135394470958957e-08 - ArtUnc_86: 5.592598844023283e-08 - ArtUnc_87: 1.0941707459513449e-07 - ArtUnc_88: 1.1376874495446983e-07 - ArtUnc_89: 2.6704569588183046e-06 - ArtUnc_90: -4.823102494690392e-07 - ArtUnc_91: 1.4649026332982186e-07 - ArtUnc_92: -8.784470317925978e-06 - ArtUnc_93: 3.280591100098844e-08 - ArtUnc_94: 1.8810024653809077e-07 - ArtUnc_95: -4.025966804622898e-07 - ArtUnc_96: -1.8317314419579824e-08 + StatMC: 7.09050000e-06 + RadErr: 4.87370000e-06 + Model_1: 5.64766186e-06 + Model_2: 5.64766186e-06 + ModelRW_1: 6.28158309e-06 + ModelRW_2: 6.28158309e-06 + JES_1: 6.89807835e-06 + JES_2: 6.89807835e-06 + ArtUnc_1: -1.90199913e-17 + ArtUnc_2: 1.05071574e-14 + ArtUnc_3: 7.40593612e-14 + ArtUnc_4: 4.15167829e-13 + ArtUnc_5: 1.46070480e-14 + ArtUnc_6: 3.98704333e-15 + ArtUnc_7: 2.98712344e-12 + ArtUnc_8: -1.28901101e-11 + ArtUnc_9: 1.93624877e-13 + ArtUnc_10: -1.91306588e-13 + ArtUnc_11: -3.40005105e-13 + ArtUnc_12: -3.65200292e-14 + ArtUnc_13: 7.17143966e-12 + ArtUnc_14: -1.22790639e-13 + ArtUnc_15: 5.06803038e-14 + ArtUnc_16: 1.81463515e-15 + ArtUnc_17: -2.58230368e-12 + ArtUnc_18: 7.73236434e-14 + ArtUnc_19: 1.03685990e-11 + ArtUnc_20: 2.53779484e-11 + ArtUnc_21: -1.83552546e-12 + ArtUnc_22: 3.23052715e-10 + ArtUnc_23: 6.57164996e-12 + ArtUnc_24: -1.31525641e-10 + ArtUnc_25: -2.58023256e-10 + ArtUnc_26: 5.44801600e-11 + ArtUnc_27: 9.18192849e-10 + ArtUnc_28: 4.26631133e-11 + ArtUnc_29: 2.12138107e-10 + ArtUnc_30: 1.23369259e-10 + ArtUnc_31: -5.05720663e-11 + ArtUnc_32: 1.98979108e-09 + ArtUnc_33: -5.96474338e-13 + ArtUnc_34: -4.22910221e-11 + ArtUnc_35: -6.37277150e-11 + ArtUnc_36: 8.99243854e-10 + ArtUnc_37: -2.82386918e-09 + ArtUnc_38: 5.02980541e-10 + ArtUnc_39: 3.76033530e-09 + ArtUnc_40: -1.52254958e-11 + ArtUnc_41: -1.55307940e-08 + ArtUnc_42: 1.12000971e-10 + ArtUnc_43: 3.32045837e-08 + ArtUnc_44: 1.61277869e-08 + ArtUnc_45: -1.94347518e-10 + ArtUnc_46: 4.81871928e-09 + ArtUnc_47: -3.59368333e-10 + ArtUnc_48: -1.44524315e-11 + ArtUnc_49: 1.15619147e-07 + ArtUnc_50: 3.09526581e-09 + ArtUnc_51: -1.99025006e-09 + ArtUnc_52: 1.05515408e-09 + ArtUnc_53: 2.58398684e-11 + ArtUnc_54: -2.73598962e-10 + ArtUnc_55: -1.71466685e-08 + ArtUnc_56: -9.34668517e-09 + ArtUnc_57: -2.29645733e-09 + ArtUnc_58: -2.54105017e-08 + ArtUnc_59: 2.45279779e-10 + ArtUnc_60: 4.26908643e-08 + ArtUnc_61: 1.00067951e-10 + ArtUnc_62: -1.50736378e-09 + ArtUnc_63: 3.87525416e-11 + ArtUnc_64: -7.55789235e-08 + ArtUnc_65: -7.76277120e-09 + ArtUnc_66: 2.16764904e-07 + ArtUnc_67: 3.08892517e-08 + ArtUnc_68: -3.77732345e-08 + ArtUnc_69: -9.87350226e-09 + ArtUnc_70: 2.37312883e-07 + ArtUnc_71: 2.85740188e-09 + ArtUnc_72: -7.72891675e-08 + ArtUnc_73: -1.80048298e-08 + ArtUnc_74: 1.18963528e-06 + ArtUnc_75: 2.20986489e-07 + ArtUnc_76: 2.78601807e-08 + ArtUnc_77: 7.18708477e-08 + ArtUnc_78: 2.29164151e-06 + ArtUnc_79: -4.40157886e-06 + ArtUnc_80: 8.77909454e-08 + ArtUnc_81: -1.13450225e-07 + ArtUnc_82: -1.13815769e-08 + ArtUnc_83: 3.16393399e-07 + ArtUnc_84: -1.33291497e-06 + ArtUnc_85: -2.13539447e-08 + ArtUnc_86: 5.59259884e-08 + ArtUnc_87: 1.09417075e-07 + ArtUnc_88: 1.13768745e-07 + ArtUnc_89: 2.67045696e-06 + ArtUnc_90: -4.82310249e-07 + ArtUnc_91: 1.46490263e-07 + ArtUnc_92: -8.78447032e-06 + ArtUnc_93: 3.28059110e-08 + ArtUnc_94: 1.88100247e-07 + ArtUnc_95: -4.02596680e-07 + ArtUnc_96: -1.83173144e-08 - stat: 0 Uncorr: 2.56e-07 - RCES: 4.989882627878135e-07 - ElEn: 1.4237858355806184e-06 - ElTh: 2.404322507485217e-07 - Lumi: 1.9712e-07 - LArN: 1.536e-07 - StatMC: 5.59616e-06 - RadErr: 1.6998399999999998e-06 - Model_1: 2.184903385323937e-06 - Model_2: 2.184903385323937e-06 - ModelRW_1: 2.735202166714555e-06 - ModelRW_2: 2.735202166714555e-06 - JES_1: 1.0283790367369417e-06 - JES_2: 1.0283790367369417e-06 - ArtUnc_1: 2.35927203457836e-20 - ArtUnc_2: -5.922629161146333e-18 - ArtUnc_3: -1.8819435998532412e-17 - ArtUnc_4: 3.158187577786074e-17 - ArtUnc_5: 1.5937576017366522e-18 - ArtUnc_6: 3.289342185321362e-18 - ArtUnc_7: 1.2239723672715737e-15 - ArtUnc_8: -2.2074775992870183e-14 - ArtUnc_9: 6.704927999036726e-16 - ArtUnc_10: 2.7699408858070488e-14 - ArtUnc_11: -5.873909050903443e-14 - ArtUnc_12: -4.664676081797592e-15 - ArtUnc_13: -3.2082494641071664e-14 - ArtUnc_14: -2.7683369430503856e-15 - ArtUnc_15: 7.564761722243567e-15 - ArtUnc_16: -4.898938440266008e-16 - ArtUnc_17: -7.0621030270174545e-15 - ArtUnc_18: 5.255133824119982e-16 - ArtUnc_19: 1.636309256674278e-14 - ArtUnc_20: -2.388984636576834e-13 - ArtUnc_21: 2.0807479147216883e-14 - ArtUnc_22: -5.297202828927104e-12 - ArtUnc_23: -1.9082778121082117e-13 - ArtUnc_24: 6.039201406219987e-12 - ArtUnc_25: 2.6715907554250054e-12 - ArtUnc_26: -2.7966393291241113e-13 - ArtUnc_27: -1.9072862813516748e-11 - ArtUnc_28: -3.1805753329792926e-13 - ArtUnc_29: 2.342851279537203e-12 - ArtUnc_30: -2.1374606682004223e-13 - ArtUnc_31: 1.0815260616289436e-13 - ArtUnc_32: -1.9686397571900833e-11 - ArtUnc_33: -1.5636800167330968e-14 - ArtUnc_34: 4.9413977886084574e-12 - ArtUnc_35: 3.43431542246607e-12 - ArtUnc_36: -4.797358782039034e-11 - ArtUnc_37: 5.773888609003612e-11 - ArtUnc_38: -9.251216849801803e-12 - ArtUnc_39: -6.909058451839399e-11 - ArtUnc_40: 1.6925117406345058e-12 - ArtUnc_41: 3.7053698468647157e-10 - ArtUnc_42: 1.855392905824653e-11 - ArtUnc_43: -4.846323282584783e-10 - ArtUnc_44: -3.327459492762007e-11 - ArtUnc_45: 7.597393152306623e-13 - ArtUnc_46: -6.897334913058715e-11 - ArtUnc_47: 1.5566079258656675e-10 - ArtUnc_48: -7.485089687541113e-12 - ArtUnc_49: -4.1862286539354177e-10 - ArtUnc_50: 6.302238876174077e-11 - ArtUnc_51: -9.653027877636256e-10 - ArtUnc_52: 5.72165799063931e-10 - ArtUnc_53: -2.489573684983785e-11 - ArtUnc_54: -7.617696381330824e-11 - ArtUnc_55: -1.3478870594901272e-08 - ArtUnc_56: 1.2402321011988667e-08 - ArtUnc_57: 3.5571456105850805e-09 - ArtUnc_58: -2.556150908248414e-08 - ArtUnc_59: -1.2383163719166848e-10 - ArtUnc_60: -3.2222219760101495e-08 - ArtUnc_61: -5.2251288050979926e-12 - ArtUnc_62: -8.97457198223341e-10 - ArtUnc_63: 9.440574608420388e-11 - ArtUnc_64: -2.448031875497111e-08 - ArtUnc_65: 1.042472983643038e-09 - ArtUnc_66: -3.5166796463923804e-08 - ArtUnc_67: 3.52988122038554e-10 - ArtUnc_68: 1.992668957386929e-09 - ArtUnc_69: -3.938321250102191e-10 - ArtUnc_70: 9.539111780811317e-09 - ArtUnc_71: 2.266615073220808e-10 - ArtUnc_72: 4.3344959477670267e-08 - ArtUnc_73: 3.439910778665954e-09 - ArtUnc_74: 3.766214542747073e-08 - ArtUnc_75: -8.853833025974996e-08 - ArtUnc_76: -5.07855697525207e-10 - ArtUnc_77: 2.6350754104537003e-09 - ArtUnc_78: -5.219583627350703e-08 - ArtUnc_79: -1.9286320867927353e-07 - ArtUnc_80: 2.0279690969114773e-09 - ArtUnc_81: -7.292739062847744e-09 - ArtUnc_82: -5.170141903927744e-10 - ArtUnc_83: 2.2541666134281235e-08 - ArtUnc_84: -3.9693062371755816e-08 - ArtUnc_85: 2.686872478207075e-06 - ArtUnc_86: 4.141473619815568e-07 - ArtUnc_87: 7.862979078955503e-07 - ArtUnc_88: 1.1721011470516791e-08 - ArtUnc_89: 4.4423448886381265e-08 - ArtUnc_90: 2.651165675700547e-07 - ArtUnc_91: -1.6784554078079242e-06 - ArtUnc_92: -1.550500835139394e-08 - ArtUnc_93: 1.9257018402611466e-08 - ArtUnc_94: 2.2281251523428708e-08 - ArtUnc_95: -8.447286155149897e-07 - ArtUnc_96: -1.7506003847933434e-07 + RCES: 4.98988263e-07 + ElEn: 1.42378584e-06 + ElTh: 2.40432251e-07 + Lumi: 1.97120000e-07 + LArN: 1.53600000e-07 + StatMC: 5.59616000e-06 + RadErr: 1.69984000e-06 + Model_1: 2.18490339e-06 + Model_2: 2.18490339e-06 + ModelRW_1: 2.73520217e-06 + ModelRW_2: 2.73520217e-06 + JES_1: 1.02837904e-06 + JES_2: 1.02837904e-06 + ArtUnc_1: 2.35927203e-20 + ArtUnc_2: -5.92262916e-18 + ArtUnc_3: -1.88194360e-17 + ArtUnc_4: 3.15818758e-17 + ArtUnc_5: 1.59375760e-18 + ArtUnc_6: 3.28934219e-18 + ArtUnc_7: 1.22397237e-15 + ArtUnc_8: -2.20747760e-14 + ArtUnc_9: 6.70492800e-16 + ArtUnc_10: 2.76994089e-14 + ArtUnc_11: -5.87390905e-14 + ArtUnc_12: -4.66467608e-15 + ArtUnc_13: -3.20824946e-14 + ArtUnc_14: -2.76833694e-15 + ArtUnc_15: 7.56476172e-15 + ArtUnc_16: -4.89893844e-16 + ArtUnc_17: -7.06210303e-15 + ArtUnc_18: 5.25513382e-16 + ArtUnc_19: 1.63630926e-14 + ArtUnc_20: -2.38898464e-13 + ArtUnc_21: 2.08074791e-14 + ArtUnc_22: -5.29720283e-12 + ArtUnc_23: -1.90827781e-13 + ArtUnc_24: 6.03920141e-12 + ArtUnc_25: 2.67159076e-12 + ArtUnc_26: -2.79663933e-13 + ArtUnc_27: -1.90728628e-11 + ArtUnc_28: -3.18057533e-13 + ArtUnc_29: 2.34285128e-12 + ArtUnc_30: -2.13746067e-13 + ArtUnc_31: 1.08152606e-13 + ArtUnc_32: -1.96863976e-11 + ArtUnc_33: -1.56368002e-14 + ArtUnc_34: 4.94139779e-12 + ArtUnc_35: 3.43431542e-12 + ArtUnc_36: -4.79735878e-11 + ArtUnc_37: 5.77388861e-11 + ArtUnc_38: -9.25121685e-12 + ArtUnc_39: -6.90905845e-11 + ArtUnc_40: 1.69251174e-12 + ArtUnc_41: 3.70536985e-10 + ArtUnc_42: 1.85539291e-11 + ArtUnc_43: -4.84632328e-10 + ArtUnc_44: -3.32745949e-11 + ArtUnc_45: 7.59739315e-13 + ArtUnc_46: -6.89733491e-11 + ArtUnc_47: 1.55660793e-10 + ArtUnc_48: -7.48508969e-12 + ArtUnc_49: -4.18622865e-10 + ArtUnc_50: 6.30223888e-11 + ArtUnc_51: -9.65302788e-10 + ArtUnc_52: 5.72165799e-10 + ArtUnc_53: -2.48957368e-11 + ArtUnc_54: -7.61769638e-11 + ArtUnc_55: -1.34788706e-08 + ArtUnc_56: 1.24023210e-08 + ArtUnc_57: 3.55714561e-09 + ArtUnc_58: -2.55615091e-08 + ArtUnc_59: -1.23831637e-10 + ArtUnc_60: -3.22222198e-08 + ArtUnc_61: -5.22512881e-12 + ArtUnc_62: -8.97457198e-10 + ArtUnc_63: 9.44057461e-11 + ArtUnc_64: -2.44803188e-08 + ArtUnc_65: 1.04247298e-09 + ArtUnc_66: -3.51667965e-08 + ArtUnc_67: 3.52988122e-10 + ArtUnc_68: 1.99266896e-09 + ArtUnc_69: -3.93832125e-10 + ArtUnc_70: 9.53911178e-09 + ArtUnc_71: 2.26661507e-10 + ArtUnc_72: 4.33449595e-08 + ArtUnc_73: 3.43991078e-09 + ArtUnc_74: 3.76621454e-08 + ArtUnc_75: -8.85383303e-08 + ArtUnc_76: -5.07855698e-10 + ArtUnc_77: 2.63507541e-09 + ArtUnc_78: -5.21958363e-08 + ArtUnc_79: -1.92863209e-07 + ArtUnc_80: 2.02796910e-09 + ArtUnc_81: -7.29273906e-09 + ArtUnc_82: -5.17014190e-10 + ArtUnc_83: 2.25416661e-08 + ArtUnc_84: -3.96930624e-08 + ArtUnc_85: 2.68687248e-06 + ArtUnc_86: 4.14147362e-07 + ArtUnc_87: 7.86297908e-07 + ArtUnc_88: 1.17210115e-08 + ArtUnc_89: 4.44234489e-08 + ArtUnc_90: 2.65116568e-07 + ArtUnc_91: -1.67845541e-06 + ArtUnc_92: -1.55050084e-08 + ArtUnc_93: 1.92570184e-08 + ArtUnc_94: 2.22812515e-08 + ArtUnc_95: -8.44728616e-07 + ArtUnc_96: -1.75060038e-07 - stat: 0 - Uncorr: 0.00041300000000000006 - RCES: 0.0022392218629693665 - ElEn: 0.00036886703742676713 - ElTh: 3.576684917629733e-06 - Lumi: 0.00031801 - LArN: 0.0002478 - StatMC: 0.0006897100000000001 - RadErr: 0.00012803 - Model_1: 0.0004117694918883622 - Model_2: 0.0004117694918883622 - ModelRW_1: 0.0002131856234599322 - ModelRW_2: 0.0002131856234599322 - JES_1: 0.001157803164332133 - JES_2: 0.001157803164332133 - ArtUnc_1: -4.650512749355942e-09 - ArtUnc_2: 2.6150404338355495e-07 - ArtUnc_3: 5.12557246908968e-07 - ArtUnc_4: 1.0849380135812087e-06 - ArtUnc_5: 7.030184433999337e-08 - ArtUnc_6: -6.666096450952222e-08 - ArtUnc_7: 8.926475091343498e-06 - ArtUnc_8: -3.752463903315676e-05 - ArtUnc_9: -4.525940513413666e-06 - ArtUnc_10: 3.1467905590806244e-05 - ArtUnc_11: -2.0233147902406997e-05 - ArtUnc_12: 2.021947318951445e-06 - ArtUnc_13: -4.003287853094295e-05 - ArtUnc_14: 9.54290296203011e-06 - ArtUnc_15: -1.5817618089945295e-05 - ArtUnc_16: 5.069765305450733e-07 - ArtUnc_17: -1.0889155969046879e-05 - ArtUnc_18: 7.854719394652192e-07 - ArtUnc_19: 2.3706046886005644e-05 - ArtUnc_20: -1.9083074205274243e-05 - ArtUnc_21: 4.747888848597217e-07 - ArtUnc_22: 0.00016734295161063723 - ArtUnc_23: 1.8956321121513973e-06 - ArtUnc_24: 0.0001391234856377672 - ArtUnc_25: 0.00018799400387012392 - ArtUnc_26: 3.117946243289525e-05 - ArtUnc_27: 0.00021123077073010498 - ArtUnc_28: 2.693125101744767e-06 - ArtUnc_29: 0.0005732465940048262 - ArtUnc_30: 0.00012951670447777832 - ArtUnc_31: -5.386786433193626e-05 - ArtUnc_32: -0.0002279172775553063 - ArtUnc_33: 2.3810441821111926e-07 - ArtUnc_34: -7.330782394982886e-06 - ArtUnc_35: -1.7685369090595917e-05 - ArtUnc_36: -2.4724312944298536e-06 - ArtUnc_37: -1.4607163820264878e-05 - ArtUnc_38: 2.6176429082255432e-06 - ArtUnc_39: -6.607915967338914e-07 - ArtUnc_40: -5.1362874816051534e-08 - ArtUnc_41: 1.5135293048599083e-06 - ArtUnc_42: -3.930922079681527e-08 - ArtUnc_43: 1.3049128874402319e-06 - ArtUnc_44: -7.96030395165809e-06 - ArtUnc_45: 5.351476142624853e-08 - ArtUnc_46: -3.500460120766658e-07 - ArtUnc_47: -2.698530947205398e-07 - ArtUnc_48: 6.382660114578908e-09 - ArtUnc_49: 2.4341397056357427e-06 - ArtUnc_50: 4.81169572330774e-07 - ArtUnc_51: 2.879156312045966e-08 - ArtUnc_52: 1.933283862988446e-08 - ArtUnc_53: 5.698775424400118e-09 - ArtUnc_54: -1.2428319793269074e-08 - ArtUnc_55: 1.8299365598447446e-08 - ArtUnc_56: -9.683602000634305e-10 - ArtUnc_57: -2.008998975123179e-09 - ArtUnc_58: -4.09381063276111e-09 - ArtUnc_59: 7.913059982895237e-09 - ArtUnc_60: 6.358131181272643e-09 - ArtUnc_61: 3.316418941539378e-11 - ArtUnc_62: 4.826728173643972e-09 - ArtUnc_63: -5.171061553907083e-10 - ArtUnc_64: 3.34943184805511e-07 - ArtUnc_65: -1.1614407621026812e-08 - ArtUnc_66: -2.3340415670957435e-07 - ArtUnc_67: -4.714533807607662e-09 - ArtUnc_68: -5.125500757971282e-10 - ArtUnc_69: 2.5681759201689222e-11 - ArtUnc_70: -4.617791891797858e-10 - ArtUnc_71: -1.726956563111836e-11 - ArtUnc_72: -1.0426947546361144e-09 - ArtUnc_73: 1.3974946479052858e-10 - ArtUnc_74: -7.388353615932547e-11 - ArtUnc_75: 2.2023115713533785e-09 - ArtUnc_76: -3.238875632136181e-11 - ArtUnc_77: 1.683694432077045e-10 - ArtUnc_78: -2.3319062783790383e-09 - ArtUnc_79: 6.984125752352948e-10 - ArtUnc_80: 2.4210672858428407e-10 - ArtUnc_81: -1.0645104275344316e-10 - ArtUnc_82: 9.551534802832154e-12 - ArtUnc_83: 4.247721654093233e-11 - ArtUnc_84: 1.2581519448969144e-11 - ArtUnc_85: -2.853203139020557e-13 - ArtUnc_86: -7.1550686480950606e-12 - ArtUnc_87: -8.385559175981213e-12 - ArtUnc_88: 9.054072666771776e-12 - ArtUnc_89: 6.684767466884986e-11 - ArtUnc_90: 1.8249590088465067e-11 - ArtUnc_91: -1.3769282793509156e-12 - ArtUnc_92: -2.0830196938451975e-10 - ArtUnc_93: 1.474440598941191e-11 - ArtUnc_94: 2.8062288957760026e-12 - ArtUnc_95: -4.9037181482300245e-11 - ArtUnc_96: 1.1351687655157902e-11 + Uncorr: 4.13000000e-04 + RCES: 2.23922186e-03 + ElEn: 3.68867037e-04 + ElTh: 3.57668492e-06 + Lumi: 3.18010000e-04 + LArN: 2.47800000e-04 + StatMC: 6.89710000e-04 + RadErr: 1.28030000e-04 + Model_1: 4.11769492e-04 + Model_2: 4.11769492e-04 + ModelRW_1: 2.13185623e-04 + ModelRW_2: 2.13185623e-04 + JES_1: 1.15780316e-03 + JES_2: 1.15780316e-03 + ArtUnc_1: -4.65051275e-09 + ArtUnc_2: 2.61504043e-07 + ArtUnc_3: 5.12557247e-07 + ArtUnc_4: 1.08493801e-06 + ArtUnc_5: 7.03018443e-08 + ArtUnc_6: -6.66609645e-08 + ArtUnc_7: 8.92647509e-06 + ArtUnc_8: -3.75246390e-05 + ArtUnc_9: -4.52594051e-06 + ArtUnc_10: 3.14679056e-05 + ArtUnc_11: -2.02331479e-05 + ArtUnc_12: 2.02194732e-06 + ArtUnc_13: -4.00328785e-05 + ArtUnc_14: 9.54290296e-06 + ArtUnc_15: -1.58176181e-05 + ArtUnc_16: 5.06976531e-07 + ArtUnc_17: -1.08891560e-05 + ArtUnc_18: 7.85471939e-07 + ArtUnc_19: 2.37060469e-05 + ArtUnc_20: -1.90830742e-05 + ArtUnc_21: 4.74788885e-07 + ArtUnc_22: 1.67342952e-04 + ArtUnc_23: 1.89563211e-06 + ArtUnc_24: 1.39123486e-04 + ArtUnc_25: 1.87994004e-04 + ArtUnc_26: 3.11794624e-05 + ArtUnc_27: 2.11230771e-04 + ArtUnc_28: 2.69312510e-06 + ArtUnc_29: 5.73246594e-04 + ArtUnc_30: 1.29516704e-04 + ArtUnc_31: -5.38678643e-05 + ArtUnc_32: -2.27917278e-04 + ArtUnc_33: 2.38104418e-07 + ArtUnc_34: -7.33078239e-06 + ArtUnc_35: -1.76853691e-05 + ArtUnc_36: -2.47243129e-06 + ArtUnc_37: -1.46071638e-05 + ArtUnc_38: 2.61764291e-06 + ArtUnc_39: -6.60791597e-07 + ArtUnc_40: -5.13628748e-08 + ArtUnc_41: 1.51352930e-06 + ArtUnc_42: -3.93092208e-08 + ArtUnc_43: 1.30491289e-06 + ArtUnc_44: -7.96030395e-06 + ArtUnc_45: 5.35147614e-08 + ArtUnc_46: -3.50046012e-07 + ArtUnc_47: -2.69853095e-07 + ArtUnc_48: 6.38266011e-09 + ArtUnc_49: 2.43413971e-06 + ArtUnc_50: 4.81169572e-07 + ArtUnc_51: 2.87915631e-08 + ArtUnc_52: 1.93328386e-08 + ArtUnc_53: 5.69877542e-09 + ArtUnc_54: -1.24283198e-08 + ArtUnc_55: 1.82993656e-08 + ArtUnc_56: -9.68360200e-10 + ArtUnc_57: -2.00899898e-09 + ArtUnc_58: -4.09381063e-09 + ArtUnc_59: 7.91305998e-09 + ArtUnc_60: 6.35813118e-09 + ArtUnc_61: 3.31641894e-11 + ArtUnc_62: 4.82672817e-09 + ArtUnc_63: -5.17106155e-10 + ArtUnc_64: 3.34943185e-07 + ArtUnc_65: -1.16144076e-08 + ArtUnc_66: -2.33404157e-07 + ArtUnc_67: -4.71453381e-09 + ArtUnc_68: -5.12550076e-10 + ArtUnc_69: 2.56817592e-11 + ArtUnc_70: -4.61779189e-10 + ArtUnc_71: -1.72695656e-11 + ArtUnc_72: -1.04269475e-09 + ArtUnc_73: 1.39749465e-10 + ArtUnc_74: -7.38835362e-11 + ArtUnc_75: 2.20231157e-09 + ArtUnc_76: -3.23887563e-11 + ArtUnc_77: 1.68369443e-10 + ArtUnc_78: -2.33190628e-09 + ArtUnc_79: 6.98412575e-10 + ArtUnc_80: 2.42106729e-10 + ArtUnc_81: -1.06451043e-10 + ArtUnc_82: 9.55153480e-12 + ArtUnc_83: 4.24772165e-11 + ArtUnc_84: 1.25815194e-11 + ArtUnc_85: -2.85320314e-13 + ArtUnc_86: -7.15506865e-12 + ArtUnc_87: -8.38555918e-12 + ArtUnc_88: 9.05407267e-12 + ArtUnc_89: 6.68476747e-11 + ArtUnc_90: 1.82495901e-11 + ArtUnc_91: -1.37692828e-12 + ArtUnc_92: -2.08301969e-10 + ArtUnc_93: 1.47444060e-11 + ArtUnc_94: 2.80622890e-12 + ArtUnc_95: -4.90371815e-11 + ArtUnc_96: 1.13516877e-11 - stat: 0 Uncorr: 0.000299 - RCES: 0.0002832581198747884 - ElEn: 8.460960391704952e-05 - ElTh: 7.213278172925263e-05 - Lumi: 0.00023023000000000002 - LArN: 0.00017939999999999997 - StatMC: 0.00022425 - RadErr: 8.969999999999998e-05 - Model_1: 0.00013319770437210995 - Model_2: 0.00013319770437210995 - ModelRW_1: 0.0003974788638405821 - ModelRW_2: 0.0003974788638405821 - JES_1: 0.00027576773403989815 - JES_2: 0.00027576773403989815 - ArtUnc_1: 5.471569996118318e-10 - ArtUnc_2: -2.1548459534153544e-08 - ArtUnc_3: 1.6107173820174696e-09 - ArtUnc_4: 1.879064311830434e-07 - ArtUnc_5: 1.050117042374516e-09 - ArtUnc_6: 1.4980021086434547e-08 - ArtUnc_7: 1.0716030983489342e-06 - ArtUnc_8: -5.8520277451735335e-06 - ArtUnc_9: 7.491192402186086e-07 - ArtUnc_10: -8.052950538988503e-08 - ArtUnc_11: -5.725234485220118e-06 - ArtUnc_12: -9.685501549661442e-07 - ArtUnc_13: -1.3424257850248628e-06 - ArtUnc_14: -9.956049613002278e-07 - ArtUnc_15: 5.29772550663397e-07 - ArtUnc_16: 1.6738377684272918e-08 - ArtUnc_17: -3.582507838237691e-07 - ArtUnc_18: -1.264727437334715e-08 - ArtUnc_19: 1.233662996663388e-06 - ArtUnc_20: 8.403154663435293e-07 - ArtUnc_21: 6.79129868143396e-07 - ArtUnc_22: -1.776150220884529e-06 - ArtUnc_23: -4.784905450229317e-07 - ArtUnc_24: -5.169696883145389e-06 - ArtUnc_25: 2.8213503257829692e-05 - ArtUnc_26: -6.758352126525302e-06 - ArtUnc_27: -1.9482452456984413e-05 - ArtUnc_28: -1.8615587928710915e-07 - ArtUnc_29: 4.94000286483612e-06 - ArtUnc_30: 2.595975163818299e-06 - ArtUnc_31: -1.076324800799102e-06 - ArtUnc_32: -3.2874259781786615e-05 - ArtUnc_33: -3.299468307382029e-08 - ArtUnc_34: -1.2349402662050923e-06 - ArtUnc_35: -6.191515490195612e-06 - ArtUnc_36: -2.7249485883079676e-06 - ArtUnc_37: -5.989822561698278e-05 - ArtUnc_38: 1.040363962746263e-05 - ArtUnc_39: 7.720196274664037e-05 - ArtUnc_40: 1.5220534773987657e-06 - ArtUnc_41: 1.70937927886724e-05 - ArtUnc_42: 8.114505195690131e-07 - ArtUnc_43: -1.371526883447847e-05 - ArtUnc_44: 0.00024620974445310794 - ArtUnc_45: -1.2730256982223254e-06 - ArtUnc_46: 1.1643913116449547e-05 - ArtUnc_47: 1.6299789140107506e-06 - ArtUnc_48: -2.2809295116473704e-07 - ArtUnc_49: -3.634576712612296e-05 - ArtUnc_50: -2.4422571255481782e-06 - ArtUnc_51: -6.822122723981085e-08 - ArtUnc_52: 5.976234737191589e-08 - ArtUnc_53: -1.8446310222813494e-08 - ArtUnc_54: 2.4751852109216145e-08 - ArtUnc_55: 1.1310038013260833e-06 - ArtUnc_56: 1.0759820264168969e-06 - ArtUnc_57: 3.0780950207694145e-07 - ArtUnc_58: 6.812023712735847e-07 - ArtUnc_59: -7.960672216219715e-09 - ArtUnc_60: -5.267916630689513e-07 - ArtUnc_61: -3.399701646687149e-10 - ArtUnc_62: -6.6656039128050465e-09 - ArtUnc_63: 7.138800656368192e-10 - ArtUnc_64: -2.4775857851850117e-06 - ArtUnc_65: 3.624287910535524e-08 - ArtUnc_66: 1.8384640130182134e-06 - ArtUnc_67: 2.7181424246913548e-08 - ArtUnc_68: -2.8193276372482016e-08 - ArtUnc_69: -5.42760780524532e-10 - ArtUnc_70: 3.0846613497465428e-09 - ArtUnc_71: -5.4471592197849197e-11 - ArtUnc_72: -2.1302205731503017e-08 - ArtUnc_73: -8.471531075724741e-10 - ArtUnc_74: -1.1628840669622942e-08 - ArtUnc_75: 1.7170116614500534e-08 - ArtUnc_76: -2.341536895472736e-10 - ArtUnc_77: -2.7783117168958113e-10 - ArtUnc_78: 3.260211955439682e-08 - ArtUnc_79: 1.046351715994512e-08 - ArtUnc_80: -3.450248147908177e-10 - ArtUnc_81: 7.482156465457119e-10 - ArtUnc_82: 3.8370527796884825e-11 - ArtUnc_83: -3.247121662728555e-11 - ArtUnc_84: -1.4283148435103424e-09 - ArtUnc_85: 2.3167662235587087e-11 - ArtUnc_86: 6.903485286946707e-11 - ArtUnc_87: 6.463824938400358e-11 - ArtUnc_88: 6.4133573585991416e-12 - ArtUnc_89: 3.6365934066034854e-10 - ArtUnc_90: -2.5940032189813645e-10 - ArtUnc_91: 6.457000917868311e-11 - ArtUnc_92: 1.2350529808450879e-09 - ArtUnc_93: -1.151435439701838e-11 - ArtUnc_94: -3.2150143351094645e-11 - ArtUnc_95: -9.747009492310879e-11 - ArtUnc_96: -6.133126016765184e-11 + RCES: 2.83258120e-04 + ElEn: 8.46096039e-05 + ElTh: 7.21327817e-05 + Lumi: 2.30230000e-04 + LArN: 1.79400000e-04 + StatMC: 2.24250000e-04 + RadErr: 8.97000000e-05 + Model_1: 1.33197704e-04 + Model_2: 1.33197704e-04 + ModelRW_1: 3.97478864e-04 + ModelRW_2: 3.97478864e-04 + JES_1: 2.75767734e-04 + JES_2: 2.75767734e-04 + ArtUnc_1: 5.47157000e-10 + ArtUnc_2: -2.15484595e-08 + ArtUnc_3: 1.61071738e-09 + ArtUnc_4: 1.87906431e-07 + ArtUnc_5: 1.05011704e-09 + ArtUnc_6: 1.49800211e-08 + ArtUnc_7: 1.07160310e-06 + ArtUnc_8: -5.85202775e-06 + ArtUnc_9: 7.49119240e-07 + ArtUnc_10: -8.05295054e-08 + ArtUnc_11: -5.72523449e-06 + ArtUnc_12: -9.68550155e-07 + ArtUnc_13: -1.34242579e-06 + ArtUnc_14: -9.95604961e-07 + ArtUnc_15: 5.29772551e-07 + ArtUnc_16: 1.67383777e-08 + ArtUnc_17: -3.58250784e-07 + ArtUnc_18: -1.26472744e-08 + ArtUnc_19: 1.23366300e-06 + ArtUnc_20: 8.40315466e-07 + ArtUnc_21: 6.79129868e-07 + ArtUnc_22: -1.77615022e-06 + ArtUnc_23: -4.78490545e-07 + ArtUnc_24: -5.16969688e-06 + ArtUnc_25: 2.82135033e-05 + ArtUnc_26: -6.75835213e-06 + ArtUnc_27: -1.94824525e-05 + ArtUnc_28: -1.86155879e-07 + ArtUnc_29: 4.94000286e-06 + ArtUnc_30: 2.59597516e-06 + ArtUnc_31: -1.07632480e-06 + ArtUnc_32: -3.28742598e-05 + ArtUnc_33: -3.29946831e-08 + ArtUnc_34: -1.23494027e-06 + ArtUnc_35: -6.19151549e-06 + ArtUnc_36: -2.72494859e-06 + ArtUnc_37: -5.98982256e-05 + ArtUnc_38: 1.04036396e-05 + ArtUnc_39: 7.72019627e-05 + ArtUnc_40: 1.52205348e-06 + ArtUnc_41: 1.70937928e-05 + ArtUnc_42: 8.11450520e-07 + ArtUnc_43: -1.37152688e-05 + ArtUnc_44: 2.46209744e-04 + ArtUnc_45: -1.27302570e-06 + ArtUnc_46: 1.16439131e-05 + ArtUnc_47: 1.62997891e-06 + ArtUnc_48: -2.28092951e-07 + ArtUnc_49: -3.63457671e-05 + ArtUnc_50: -2.44225713e-06 + ArtUnc_51: -6.82212272e-08 + ArtUnc_52: 5.97623474e-08 + ArtUnc_53: -1.84463102e-08 + ArtUnc_54: 2.47518521e-08 + ArtUnc_55: 1.13100380e-06 + ArtUnc_56: 1.07598203e-06 + ArtUnc_57: 3.07809502e-07 + ArtUnc_58: 6.81202371e-07 + ArtUnc_59: -7.96067222e-09 + ArtUnc_60: -5.26791663e-07 + ArtUnc_61: -3.39970165e-10 + ArtUnc_62: -6.66560391e-09 + ArtUnc_63: 7.13880066e-10 + ArtUnc_64: -2.47758579e-06 + ArtUnc_65: 3.62428791e-08 + ArtUnc_66: 1.83846401e-06 + ArtUnc_67: 2.71814242e-08 + ArtUnc_68: -2.81932764e-08 + ArtUnc_69: -5.42760781e-10 + ArtUnc_70: 3.08466135e-09 + ArtUnc_71: -5.44715922e-11 + ArtUnc_72: -2.13022057e-08 + ArtUnc_73: -8.47153108e-10 + ArtUnc_74: -1.16288407e-08 + ArtUnc_75: 1.71701166e-08 + ArtUnc_76: -2.34153690e-10 + ArtUnc_77: -2.77831172e-10 + ArtUnc_78: 3.26021196e-08 + ArtUnc_79: 1.04635172e-08 + ArtUnc_80: -3.45024815e-10 + ArtUnc_81: 7.48215647e-10 + ArtUnc_82: 3.83705278e-11 + ArtUnc_83: -3.24712166e-11 + ArtUnc_84: -1.42831484e-09 + ArtUnc_85: 2.31676622e-11 + ArtUnc_86: 6.90348529e-11 + ArtUnc_87: 6.46382494e-11 + ArtUnc_88: 6.41335736e-12 + ArtUnc_89: 3.63659341e-10 + ArtUnc_90: -2.59400322e-10 + ArtUnc_91: 6.45700092e-11 + ArtUnc_92: 1.23505298e-09 + ArtUnc_93: -1.15143544e-11 + ArtUnc_94: -3.21501434e-11 + ArtUnc_95: -9.74700949e-11 + ArtUnc_96: -6.13312602e-11 - stat: 0 Uncorr: 7.62e-05 - RCES: 4.153424278833069e-05 - ElEn: 1.2381034528665204e-05 - ElTh: 1.5630289920535703e-05 - Lumi: 5.8674e-05 - LArN: 4.5719999999999996e-05 - StatMC: 6.019800000000001e-05 - RadErr: 4.1148e-05 - Model_1: 0.00019558997831688613 - Model_2: 0.00019558997831688613 - ModelRW_1: 0.00023222942329084828 - ModelRW_2: 0.00023222942329084828 - JES_1: 0.00017940913365127205 - JES_2: 0.00017940913365127205 - ArtUnc_1: 3.72574843754151e-13 - ArtUnc_2: -5.5762134156865614e-11 - ArtUnc_3: -1.8792997287274888e-10 - ArtUnc_4: -4.5867840932993047e-10 - ArtUnc_5: -1.4436446732121365e-11 - ArtUnc_6: 1.867396902546295e-11 - ArtUnc_7: -2.3048097772345663e-09 - ArtUnc_8: 7.845765890473015e-10 - ArtUnc_9: 1.977290840908495e-09 - ArtUnc_10: -1.1619921967779412e-08 - ArtUnc_11: -3.343505219064145e-09 - ArtUnc_12: -1.858073969329258e-09 - ArtUnc_13: 6.893470512185661e-08 - ArtUnc_14: -8.552736714474256e-09 - ArtUnc_15: 1.584680464086288e-08 - ArtUnc_16: -4.681586319467342e-10 - ArtUnc_17: 2.577357061816638e-08 - ArtUnc_18: -1.3883467658975774e-09 - ArtUnc_19: -1.0772612664045383e-07 - ArtUnc_20: 9.127921594949682e-08 - ArtUnc_21: -6.69780382479327e-11 - ArtUnc_22: -1.1270512654920153e-07 - ArtUnc_23: -1.33234118677314e-09 - ArtUnc_24: -1.555632830104435e-06 - ArtUnc_25: 7.606353978765029e-07 - ArtUnc_26: -3.851083482718545e-07 - ArtUnc_27: -1.4525484734098774e-06 - ArtUnc_28: -5.0885052975844806e-08 - ArtUnc_29: -1.61172054026889e-06 - ArtUnc_30: -4.1133548073345233e-07 - ArtUnc_31: 1.6983994409471313e-07 - ArtUnc_32: 1.6892305922854216e-06 - ArtUnc_33: -1.457067664224312e-10 - ArtUnc_34: 8.989143287517297e-08 - ArtUnc_35: -8.88695551901891e-08 - ArtUnc_36: -7.18178209779854e-07 - ArtUnc_37: -2.0778125037738755e-06 - ArtUnc_38: 3.6391782595336935e-07 - ArtUnc_39: 2.7286713820166425e-06 - ArtUnc_40: 5.455195979650584e-08 - ArtUnc_41: 7.549069678202054e-06 - ArtUnc_42: 7.453588459557469e-08 - ArtUnc_43: -1.1101608282611014e-05 - ArtUnc_44: 2.001257463619583e-06 - ArtUnc_45: -2.7433672163892875e-08 - ArtUnc_46: -9.517229932447282e-07 - ArtUnc_47: 5.589666364914897e-07 - ArtUnc_48: -2.4944416287900184e-08 - ArtUnc_49: -2.347177907621313e-05 - ArtUnc_50: -1.4282041253317663e-06 - ArtUnc_51: 4.788002977745001e-07 - ArtUnc_52: 8.903094382816588e-07 - ArtUnc_53: -1.2459460515372746e-07 - ArtUnc_54: 8.14925320564319e-08 - ArtUnc_55: 1.2594223585421794e-05 - ArtUnc_56: 1.4274865327025676e-05 - ArtUnc_57: 4.174072422605024e-06 - ArtUnc_58: 2.230354844345179e-05 - ArtUnc_59: -2.190809742086046e-07 - ArtUnc_60: -1.8910934551201536e-05 - ArtUnc_61: -1.094479673965532e-08 - ArtUnc_62: -6.893892056174763e-08 - ArtUnc_63: 5.82376697707184e-09 - ArtUnc_64: 5.660326229221998e-05 - ArtUnc_65: -8.015406273538802e-07 - ArtUnc_66: -3.968347141017291e-05 - ArtUnc_67: -5.263076671626725e-07 - ArtUnc_68: 3.5855468780181044e-07 - ArtUnc_69: 1.0173186218331753e-08 - ArtUnc_70: -1.2295317660275172e-07 - ArtUnc_71: -2.4793314171900886e-09 - ArtUnc_72: -6.571712548162341e-07 - ArtUnc_73: -4.7783870276875176e-08 - ArtUnc_74: -1.005910223108769e-07 - ArtUnc_75: 8.417761885970648e-07 - ArtUnc_76: 8.396096597475887e-09 - ArtUnc_77: 7.423005449611018e-09 - ArtUnc_78: -1.1325365974715549e-07 - ArtUnc_79: -4.231882205546767e-08 - ArtUnc_80: 6.129071591428702e-09 - ArtUnc_81: -9.456587992687747e-09 - ArtUnc_82: -1.5188352334206963e-10 - ArtUnc_83: 5.014588526357662e-09 - ArtUnc_84: -1.1798190978592541e-08 - ArtUnc_85: -2.631729931570385e-10 - ArtUnc_86: 1.9245738468918398e-11 - ArtUnc_87: 2.5939757535041884e-10 - ArtUnc_88: 1.2062301518547448e-09 - ArtUnc_89: 2.027714838316177e-08 - ArtUnc_90: -3.0170830838406754e-09 - ArtUnc_91: -1.0921148670096631e-09 - ArtUnc_92: -2.351887988493733e-08 - ArtUnc_93: 4.3944548208894744e-10 - ArtUnc_94: 3.7330271507787496e-10 - ArtUnc_95: -3.296110908263646e-09 - ArtUnc_96: 4.3659842526486204e-11 + RCES: 4.15342428e-05 + ElEn: 1.23810345e-05 + ElTh: 1.56302899e-05 + Lumi: 5.86740000e-05 + LArN: 4.57200000e-05 + StatMC: 6.01980000e-05 + RadErr: 4.11480000e-05 + Model_1: 1.95589978e-04 + Model_2: 1.95589978e-04 + ModelRW_1: 2.32229423e-04 + ModelRW_2: 2.32229423e-04 + JES_1: 1.79409134e-04 + JES_2: 1.79409134e-04 + ArtUnc_1: 3.72574844e-13 + ArtUnc_2: -5.57621342e-11 + ArtUnc_3: -1.87929973e-10 + ArtUnc_4: -4.58678409e-10 + ArtUnc_5: -1.44364467e-11 + ArtUnc_6: 1.86739690e-11 + ArtUnc_7: -2.30480978e-09 + ArtUnc_8: 7.84576589e-10 + ArtUnc_9: 1.97729084e-09 + ArtUnc_10: -1.16199220e-08 + ArtUnc_11: -3.34350522e-09 + ArtUnc_12: -1.85807397e-09 + ArtUnc_13: 6.89347051e-08 + ArtUnc_14: -8.55273671e-09 + ArtUnc_15: 1.58468046e-08 + ArtUnc_16: -4.68158632e-10 + ArtUnc_17: 2.57735706e-08 + ArtUnc_18: -1.38834677e-09 + ArtUnc_19: -1.07726127e-07 + ArtUnc_20: 9.12792159e-08 + ArtUnc_21: -6.69780382e-11 + ArtUnc_22: -1.12705127e-07 + ArtUnc_23: -1.33234119e-09 + ArtUnc_24: -1.55563283e-06 + ArtUnc_25: 7.60635398e-07 + ArtUnc_26: -3.85108348e-07 + ArtUnc_27: -1.45254847e-06 + ArtUnc_28: -5.08850530e-08 + ArtUnc_29: -1.61172054e-06 + ArtUnc_30: -4.11335481e-07 + ArtUnc_31: 1.69839944e-07 + ArtUnc_32: 1.68923059e-06 + ArtUnc_33: -1.45706766e-10 + ArtUnc_34: 8.98914329e-08 + ArtUnc_35: -8.88695552e-08 + ArtUnc_36: -7.18178210e-07 + ArtUnc_37: -2.07781250e-06 + ArtUnc_38: 3.63917826e-07 + ArtUnc_39: 2.72867138e-06 + ArtUnc_40: 5.45519598e-08 + ArtUnc_41: 7.54906968e-06 + ArtUnc_42: 7.45358846e-08 + ArtUnc_43: -1.11016083e-05 + ArtUnc_44: 2.00125746e-06 + ArtUnc_45: -2.74336722e-08 + ArtUnc_46: -9.51722993e-07 + ArtUnc_47: 5.58966636e-07 + ArtUnc_48: -2.49444163e-08 + ArtUnc_49: -2.34717791e-05 + ArtUnc_50: -1.42820413e-06 + ArtUnc_51: 4.78800298e-07 + ArtUnc_52: 8.90309438e-07 + ArtUnc_53: -1.24594605e-07 + ArtUnc_54: 8.14925321e-08 + ArtUnc_55: 1.25942236e-05 + ArtUnc_56: 1.42748653e-05 + ArtUnc_57: 4.17407242e-06 + ArtUnc_58: 2.23035484e-05 + ArtUnc_59: -2.19080974e-07 + ArtUnc_60: -1.89109346e-05 + ArtUnc_61: -1.09447967e-08 + ArtUnc_62: -6.89389206e-08 + ArtUnc_63: 5.82376698e-09 + ArtUnc_64: 5.66032623e-05 + ArtUnc_65: -8.01540627e-07 + ArtUnc_66: -3.96834714e-05 + ArtUnc_67: -5.26307667e-07 + ArtUnc_68: 3.58554688e-07 + ArtUnc_69: 1.01731862e-08 + ArtUnc_70: -1.22953177e-07 + ArtUnc_71: -2.47933142e-09 + ArtUnc_72: -6.57171255e-07 + ArtUnc_73: -4.77838703e-08 + ArtUnc_74: -1.00591022e-07 + ArtUnc_75: 8.41776189e-07 + ArtUnc_76: 8.39609660e-09 + ArtUnc_77: 7.42300545e-09 + ArtUnc_78: -1.13253660e-07 + ArtUnc_79: -4.23188221e-08 + ArtUnc_80: 6.12907159e-09 + ArtUnc_81: -9.45658799e-09 + ArtUnc_82: -1.51883523e-10 + ArtUnc_83: 5.01458853e-09 + ArtUnc_84: -1.17981910e-08 + ArtUnc_85: -2.63172993e-10 + ArtUnc_86: 1.92457385e-11 + ArtUnc_87: 2.59397575e-10 + ArtUnc_88: 1.20623015e-09 + ArtUnc_89: 2.02771484e-08 + ArtUnc_90: -3.01708308e-09 + ArtUnc_91: -1.09211487e-09 + ArtUnc_92: -2.35188799e-08 + ArtUnc_93: 4.39445482e-10 + ArtUnc_94: 3.73302715e-10 + ArtUnc_95: -3.29611091e-09 + ArtUnc_96: 4.36598425e-11 - stat: 0 - Uncorr: 1.3899999999999999e-05 - RCES: 1.4178e-05 - ElEn: 9.395618606563381e-06 - ElTh: 5.097245800429875e-06 - Lumi: 1.0702999999999999e-05 + Uncorr: 1.39000000e-05 + RCES: 1.41780000e-05 + ElEn: 9.39561861e-06 + ElTh: 5.09724580e-06 + Lumi: 1.07030000e-05 LArN: 8.34e-06 - StatMC: 2.2379e-05 - RadErr: 1.2370999999999999e-05 - Model_1: 4.285349936702953e-05 - Model_2: 4.285349936702953e-05 - ModelRW_1: 3.371273000663102e-05 - ModelRW_2: 3.371273000663102e-05 - JES_1: 4.926574550841588e-05 - JES_2: 4.926574550841588e-05 - ArtUnc_1: -5.241462259945504e-15 - ArtUnc_2: 8.207592964730536e-13 - ArtUnc_3: 3.847729041683561e-12 - ArtUnc_4: 1.3792222266569431e-11 - ArtUnc_5: 5.052176641803228e-13 - ArtUnc_6: 2.249495667603643e-14 - ArtUnc_7: 6.265328750309011e-11 - ArtUnc_8: -2.377277478183806e-10 - ArtUnc_9: -3.167587896563486e-12 - ArtUnc_10: -9.980068575788724e-12 - ArtUnc_11: 8.486503372824655e-11 - ArtUnc_12: 1.4472528442572177e-11 - ArtUnc_13: 1.9485505226517446e-10 - ArtUnc_14: 1.3385041148049875e-11 - ArtUnc_15: 1.2777939886617276e-11 - ArtUnc_16: -1.4594414874811343e-12 - ArtUnc_17: -7.622530132064897e-12 - ArtUnc_18: -3.3382254149254044e-13 - ArtUnc_19: 4.1744491889578663e-10 - ArtUnc_20: -1.458526363026746e-10 - ArtUnc_21: -1.2183263999339942e-10 - ArtUnc_22: 2.970142757468545e-09 - ArtUnc_23: 2.2299854903822662e-10 - ArtUnc_24: 7.119878894173299e-10 - ArtUnc_25: -4.04907482471203e-09 - ArtUnc_26: 1.362777303429574e-09 - ArtUnc_27: 7.095862095533802e-09 - ArtUnc_28: -5.718772664874926e-10 - ArtUnc_29: -3.751773345438866e-09 - ArtUnc_30: -2.9515041503778913e-09 - ArtUnc_31: 1.1378459995070667e-09 - ArtUnc_32: 2.1546215977208804e-08 - ArtUnc_33: -2.5580061091301333e-11 - ArtUnc_34: -7.500012142866035e-10 - ArtUnc_35: -8.728016111705376e-09 - ArtUnc_36: 1.4591722382626946e-08 - ArtUnc_37: -1.5180310001887374e-07 - ArtUnc_38: 2.908727650187965e-08 - ArtUnc_39: 2.400366075531249e-07 - ArtUnc_40: 3.6335764936557314e-09 - ArtUnc_41: -1.7897560141455276e-07 - ArtUnc_42: 3.862399379342501e-09 - ArtUnc_43: 3.891403788701593e-07 - ArtUnc_44: -3.012756355155561e-07 - ArtUnc_45: 2.2701893778899755e-10 - ArtUnc_46: 3.043726544595362e-08 - ArtUnc_47: -6.82161911121795e-08 - ArtUnc_48: 5.213033624694447e-09 - ArtUnc_49: 7.909571133748741e-07 - ArtUnc_50: -4.000696485508816e-09 - ArtUnc_51: 1.2244715995664577e-07 - ArtUnc_52: -2.387388760086234e-08 - ArtUnc_53: -1.3473575118922905e-08 - ArtUnc_54: 2.9872328342697794e-08 - ArtUnc_55: -1.581319061040107e-06 - ArtUnc_56: 1.933241606756599e-06 - ArtUnc_57: 4.697845033799855e-07 - ArtUnc_58: -3.308935751188501e-06 - ArtUnc_59: 1.8756063896365827e-07 - ArtUnc_60: -3.6319870239236007e-06 - ArtUnc_61: 8.974999862891205e-09 - ArtUnc_62: -3.2100263389846357e-07 - ArtUnc_63: 3.687766345572873e-08 - ArtUnc_64: -7.773053107356384e-06 - ArtUnc_65: 6.977881398509863e-07 - ArtUnc_66: -8.346360521631696e-06 - ArtUnc_67: -3.417827012533332e-07 - ArtUnc_68: -4.126287864727083e-07 - ArtUnc_69: 3.5351700709203385e-09 - ArtUnc_70: -4.836847420599969e-07 - ArtUnc_71: -2.5243277693506292e-08 - ArtUnc_72: -5.773132591863485e-06 - ArtUnc_73: -4.681112618505477e-07 - ArtUnc_74: -1.577039913530142e-06 - ArtUnc_75: 9.86917479891918e-06 - ArtUnc_76: 7.128038724576999e-08 - ArtUnc_77: -3.1454011412941795e-08 - ArtUnc_78: 1.8891715977876717e-05 - ArtUnc_79: 1.349982111950535e-05 - ArtUnc_80: -7.125930552507109e-08 - ArtUnc_81: 4.94833375371924e-07 - ArtUnc_82: 3.523517435289861e-08 - ArtUnc_83: -5.926496319977509e-08 - ArtUnc_84: -1.4452008476412964e-07 - ArtUnc_85: 1.508320644838305e-08 - ArtUnc_86: 4.377923905507967e-09 - ArtUnc_87: 5.063614671791702e-09 - ArtUnc_88: 6.745731559486469e-09 - ArtUnc_89: 2.873263317578852e-07 - ArtUnc_90: -9.439684959935189e-08 - ArtUnc_91: -2.3971753920997772e-08 - ArtUnc_92: -4.26823292277409e-08 - ArtUnc_93: 1.5311556383332444e-09 - ArtUnc_94: -4.599464050398569e-10 - ArtUnc_95: -1.9906259590373583e-08 - ArtUnc_96: 2.321632159279879e-09 + StatMC: 2.23790000e-05 + RadErr: 1.23710000e-05 + Model_1: 4.28534994e-05 + Model_2: 4.28534994e-05 + ModelRW_1: 3.37127300e-05 + ModelRW_2: 3.37127300e-05 + JES_1: 4.92657455e-05 + JES_2: 4.92657455e-05 + ArtUnc_1: -5.24146226e-15 + ArtUnc_2: 8.20759296e-13 + ArtUnc_3: 3.84772904e-12 + ArtUnc_4: 1.37922223e-11 + ArtUnc_5: 5.05217664e-13 + ArtUnc_6: 2.24949567e-14 + ArtUnc_7: 6.26532875e-11 + ArtUnc_8: -2.37727748e-10 + ArtUnc_9: -3.16758790e-12 + ArtUnc_10: -9.98006858e-12 + ArtUnc_11: 8.48650337e-11 + ArtUnc_12: 1.44725284e-11 + ArtUnc_13: 1.94855052e-10 + ArtUnc_14: 1.33850411e-11 + ArtUnc_15: 1.27779399e-11 + ArtUnc_16: -1.45944149e-12 + ArtUnc_17: -7.62253013e-12 + ArtUnc_18: -3.33822541e-13 + ArtUnc_19: 4.17444919e-10 + ArtUnc_20: -1.45852636e-10 + ArtUnc_21: -1.21832640e-10 + ArtUnc_22: 2.97014276e-09 + ArtUnc_23: 2.22998549e-10 + ArtUnc_24: 7.11987889e-10 + ArtUnc_25: -4.04907482e-09 + ArtUnc_26: 1.36277730e-09 + ArtUnc_27: 7.09586210e-09 + ArtUnc_28: -5.71877266e-10 + ArtUnc_29: -3.75177335e-09 + ArtUnc_30: -2.95150415e-09 + ArtUnc_31: 1.13784600e-09 + ArtUnc_32: 2.15462160e-08 + ArtUnc_33: -2.55800611e-11 + ArtUnc_34: -7.50001214e-10 + ArtUnc_35: -8.72801611e-09 + ArtUnc_36: 1.45917224e-08 + ArtUnc_37: -1.51803100e-07 + ArtUnc_38: 2.90872765e-08 + ArtUnc_39: 2.40036608e-07 + ArtUnc_40: 3.63357649e-09 + ArtUnc_41: -1.78975601e-07 + ArtUnc_42: 3.86239938e-09 + ArtUnc_43: 3.89140379e-07 + ArtUnc_44: -3.01275636e-07 + ArtUnc_45: 2.27018938e-10 + ArtUnc_46: 3.04372654e-08 + ArtUnc_47: -6.82161911e-08 + ArtUnc_48: 5.21303362e-09 + ArtUnc_49: 7.90957113e-07 + ArtUnc_50: -4.00069649e-09 + ArtUnc_51: 1.22447160e-07 + ArtUnc_52: -2.38738876e-08 + ArtUnc_53: -1.34735751e-08 + ArtUnc_54: 2.98723283e-08 + ArtUnc_55: -1.58131906e-06 + ArtUnc_56: 1.93324161e-06 + ArtUnc_57: 4.69784503e-07 + ArtUnc_58: -3.30893575e-06 + ArtUnc_59: 1.87560639e-07 + ArtUnc_60: -3.63198702e-06 + ArtUnc_61: 8.97499986e-09 + ArtUnc_62: -3.21002634e-07 + ArtUnc_63: 3.68776635e-08 + ArtUnc_64: -7.77305311e-06 + ArtUnc_65: 6.97788140e-07 + ArtUnc_66: -8.34636052e-06 + ArtUnc_67: -3.41782701e-07 + ArtUnc_68: -4.12628786e-07 + ArtUnc_69: 3.53517007e-09 + ArtUnc_70: -4.83684742e-07 + ArtUnc_71: -2.52432777e-08 + ArtUnc_72: -5.77313259e-06 + ArtUnc_73: -4.68111262e-07 + ArtUnc_74: -1.57703991e-06 + ArtUnc_75: 9.86917480e-06 + ArtUnc_76: 7.12803872e-08 + ArtUnc_77: -3.14540114e-08 + ArtUnc_78: 1.88917160e-05 + ArtUnc_79: 1.34998211e-05 + ArtUnc_80: -7.12593055e-08 + ArtUnc_81: 4.94833375e-07 + ArtUnc_82: 3.52351744e-08 + ArtUnc_83: -5.92649632e-08 + ArtUnc_84: -1.44520085e-07 + ArtUnc_85: 1.50832064e-08 + ArtUnc_86: 4.37792391e-09 + ArtUnc_87: 5.06361467e-09 + ArtUnc_88: 6.74573156e-09 + ArtUnc_89: 2.87326332e-07 + ArtUnc_90: -9.43968496e-08 + ArtUnc_91: -2.39717539e-08 + ArtUnc_92: -4.26823292e-08 + ArtUnc_93: 1.53115564e-09 + ArtUnc_94: -4.59946405e-10 + ArtUnc_95: -1.99062596e-08 + ArtUnc_96: 2.32163216e-09 - stat: 0 - Uncorr: 2.4100000000000002e-06 - RCES: 3.5034429533674446e-06 - ElEn: 4.248372717876812e-07 - ElTh: 8.837670776284891e-07 - Lumi: 1.8557e-06 - LArN: 1.446e-06 - StatMC: 9.0857e-06 - RadErr: 1.03148e-05 - Model_1: 1.2900243983933016e-05 - Model_2: 1.2900243983933016e-05 - ModelRW_1: 1.0804167352461735e-05 - ModelRW_2: 1.0804167352461735e-05 - JES_1: 7.79262888399993e-06 - JES_2: 7.79262888399993e-06 - ArtUnc_1: -1.9019991291243223e-17 - ArtUnc_2: 1.0507157366899366e-14 - ArtUnc_3: 7.405936115075455e-14 - ArtUnc_4: 4.1516782877622893e-13 - ArtUnc_5: 1.4607047978177815e-14 - ArtUnc_6: 3.987043331119774e-15 - ArtUnc_7: 2.9871234429873815e-12 - ArtUnc_8: -1.28901101419786e-11 - ArtUnc_9: 1.936248767826609e-13 - ArtUnc_10: -1.9130658824214493e-13 - ArtUnc_11: -3.400051045086563e-13 - ArtUnc_12: -3.6520029181094834e-14 - ArtUnc_13: 7.1714396580652244e-12 - ArtUnc_14: -1.2279063899775683e-13 - ArtUnc_15: 5.068030375999428e-14 - ArtUnc_16: 1.814635154565131e-15 - ArtUnc_17: -2.5823036770884942e-12 - ArtUnc_18: 7.732364342860023e-14 - ArtUnc_19: 1.0368599030336335e-11 - ArtUnc_20: 2.537794841164756e-11 - ArtUnc_21: -1.8355254578712134e-12 - ArtUnc_22: 3.23052714866025e-10 - ArtUnc_23: 6.571649960662051e-12 - ArtUnc_24: -1.315256411252612e-10 - ArtUnc_25: -2.5802325607447383e-10 - ArtUnc_26: 5.448016000703067e-11 - ArtUnc_27: 9.181928486933075e-10 - ArtUnc_28: 4.266311332429477e-11 - ArtUnc_29: 2.121381067959539e-10 - ArtUnc_30: 1.2336925894313725e-10 - ArtUnc_31: -5.0572066259762264e-11 - ArtUnc_32: 1.9897910843142253e-09 - ArtUnc_33: -5.964743379366253e-13 - ArtUnc_34: -4.2291022066909204e-11 - ArtUnc_35: -6.372771500145227e-11 - ArtUnc_36: 8.992438540225526e-10 - ArtUnc_37: -2.823869184278453e-09 - ArtUnc_38: 5.029805408362752e-10 - ArtUnc_39: 3.7603353015553514e-09 - ArtUnc_40: -1.522549579025299e-11 - ArtUnc_41: -1.553079400463468e-08 - ArtUnc_42: 1.1200097112152992e-10 - ArtUnc_43: 3.320458370959093e-08 - ArtUnc_44: 1.612778691079218e-08 - ArtUnc_45: -1.9434751816654295e-10 - ArtUnc_46: 4.818719281818341e-09 - ArtUnc_47: -3.5936833342592e-10 - ArtUnc_48: -1.4452431492510908e-11 - ArtUnc_49: 1.156191469303947e-07 - ArtUnc_50: 3.095265809797049e-09 - ArtUnc_51: -1.990250058016618e-09 - ArtUnc_52: 1.0551540835680762e-09 - ArtUnc_53: 2.583986842251015e-11 - ArtUnc_54: -2.7359896160844426e-10 - ArtUnc_55: -1.714666851039895e-08 - ArtUnc_56: -9.346685172236354e-09 - ArtUnc_57: -2.2964573279275797e-09 - ArtUnc_58: -2.541050169654537e-08 - ArtUnc_59: 2.4527977931268276e-10 - ArtUnc_60: 4.26908642864609e-08 - ArtUnc_61: 1.0006795078580084e-10 - ArtUnc_62: -1.5073637832204924e-09 - ArtUnc_63: 3.8752541563071965e-11 - ArtUnc_64: -7.557892352678078e-08 - ArtUnc_65: -7.762771204776205e-09 - ArtUnc_66: 2.1676490443910404e-07 - ArtUnc_67: 3.088925173796808e-08 - ArtUnc_68: -3.7773234498553116e-08 - ArtUnc_69: -9.873502259301812e-09 - ArtUnc_70: 2.373128831845414e-07 - ArtUnc_71: 2.8574018820224212e-09 - ArtUnc_72: -7.728916750927325e-08 - ArtUnc_73: -1.8004829794967403e-08 - ArtUnc_74: 1.1896352758006183e-06 - ArtUnc_75: 2.2098648925167571e-07 - ArtUnc_76: 2.7860180711512064e-08 - ArtUnc_77: 7.187084774475774e-08 - ArtUnc_78: 2.2916415135354548e-06 - ArtUnc_79: -4.401578860181456e-06 - ArtUnc_80: 8.779094540533577e-08 - ArtUnc_81: -1.1345022521150932e-07 - ArtUnc_82: -1.1381576922669683e-08 - ArtUnc_83: 3.163933993362474e-07 - ArtUnc_84: -1.3329149678621743e-06 - ArtUnc_85: -2.135394470958957e-08 - ArtUnc_86: 5.592598844023283e-08 - ArtUnc_87: 1.0941707459513449e-07 - ArtUnc_88: 1.1376874495446983e-07 - ArtUnc_89: 2.6704569588183046e-06 - ArtUnc_90: -4.823102494690392e-07 - ArtUnc_91: 1.4649026332982186e-07 - ArtUnc_92: -8.784470317925978e-06 - ArtUnc_93: 3.280591100098844e-08 - ArtUnc_94: 1.8810024653809077e-07 - ArtUnc_95: -4.025966804622898e-07 - ArtUnc_96: -1.8317314419579824e-08 + Uncorr: 2.41000000e-06 + RCES: 3.50344295e-06 + ElEn: 4.24837272e-07 + ElTh: 8.83767078e-07 + Lumi: 1.85570000e-06 + LArN: 1.44600000e-06 + StatMC: 9.08570000e-06 + RadErr: 1.03148000e-05 + Model_1: 1.29002440e-05 + Model_2: 1.29002440e-05 + ModelRW_1: 1.08041674e-05 + ModelRW_2: 1.08041674e-05 + JES_1: 7.79262888e-06 + JES_2: 7.79262888e-06 + ArtUnc_1: -1.90199913e-17 + ArtUnc_2: 1.05071574e-14 + ArtUnc_3: 7.40593612e-14 + ArtUnc_4: 4.15167829e-13 + ArtUnc_5: 1.46070480e-14 + ArtUnc_6: 3.98704333e-15 + ArtUnc_7: 2.98712344e-12 + ArtUnc_8: -1.28901101e-11 + ArtUnc_9: 1.93624877e-13 + ArtUnc_10: -1.91306588e-13 + ArtUnc_11: -3.40005105e-13 + ArtUnc_12: -3.65200292e-14 + ArtUnc_13: 7.17143966e-12 + ArtUnc_14: -1.22790639e-13 + ArtUnc_15: 5.06803038e-14 + ArtUnc_16: 1.81463515e-15 + ArtUnc_17: -2.58230368e-12 + ArtUnc_18: 7.73236434e-14 + ArtUnc_19: 1.03685990e-11 + ArtUnc_20: 2.53779484e-11 + ArtUnc_21: -1.83552546e-12 + ArtUnc_22: 3.23052715e-10 + ArtUnc_23: 6.57164996e-12 + ArtUnc_24: -1.31525641e-10 + ArtUnc_25: -2.58023256e-10 + ArtUnc_26: 5.44801600e-11 + ArtUnc_27: 9.18192849e-10 + ArtUnc_28: 4.26631133e-11 + ArtUnc_29: 2.12138107e-10 + ArtUnc_30: 1.23369259e-10 + ArtUnc_31: -5.05720663e-11 + ArtUnc_32: 1.98979108e-09 + ArtUnc_33: -5.96474338e-13 + ArtUnc_34: -4.22910221e-11 + ArtUnc_35: -6.37277150e-11 + ArtUnc_36: 8.99243854e-10 + ArtUnc_37: -2.82386918e-09 + ArtUnc_38: 5.02980541e-10 + ArtUnc_39: 3.76033530e-09 + ArtUnc_40: -1.52254958e-11 + ArtUnc_41: -1.55307940e-08 + ArtUnc_42: 1.12000971e-10 + ArtUnc_43: 3.32045837e-08 + ArtUnc_44: 1.61277869e-08 + ArtUnc_45: -1.94347518e-10 + ArtUnc_46: 4.81871928e-09 + ArtUnc_47: -3.59368333e-10 + ArtUnc_48: -1.44524315e-11 + ArtUnc_49: 1.15619147e-07 + ArtUnc_50: 3.09526581e-09 + ArtUnc_51: -1.99025006e-09 + ArtUnc_52: 1.05515408e-09 + ArtUnc_53: 2.58398684e-11 + ArtUnc_54: -2.73598962e-10 + ArtUnc_55: -1.71466685e-08 + ArtUnc_56: -9.34668517e-09 + ArtUnc_57: -2.29645733e-09 + ArtUnc_58: -2.54105017e-08 + ArtUnc_59: 2.45279779e-10 + ArtUnc_60: 4.26908643e-08 + ArtUnc_61: 1.00067951e-10 + ArtUnc_62: -1.50736378e-09 + ArtUnc_63: 3.87525416e-11 + ArtUnc_64: -7.55789235e-08 + ArtUnc_65: -7.76277120e-09 + ArtUnc_66: 2.16764904e-07 + ArtUnc_67: 3.08892517e-08 + ArtUnc_68: -3.77732345e-08 + ArtUnc_69: -9.87350226e-09 + ArtUnc_70: 2.37312883e-07 + ArtUnc_71: 2.85740188e-09 + ArtUnc_72: -7.72891675e-08 + ArtUnc_73: -1.80048298e-08 + ArtUnc_74: 1.18963528e-06 + ArtUnc_75: 2.20986489e-07 + ArtUnc_76: 2.78601807e-08 + ArtUnc_77: 7.18708477e-08 + ArtUnc_78: 2.29164151e-06 + ArtUnc_79: -4.40157886e-06 + ArtUnc_80: 8.77909454e-08 + ArtUnc_81: -1.13450225e-07 + ArtUnc_82: -1.13815769e-08 + ArtUnc_83: 3.16393399e-07 + ArtUnc_84: -1.33291497e-06 + ArtUnc_85: -2.13539447e-08 + ArtUnc_86: 5.59259884e-08 + ArtUnc_87: 1.09417075e-07 + ArtUnc_88: 1.13768745e-07 + ArtUnc_89: 2.67045696e-06 + ArtUnc_90: -4.82310249e-07 + ArtUnc_91: 1.46490263e-07 + ArtUnc_92: -8.78447032e-06 + ArtUnc_93: 3.28059110e-08 + ArtUnc_94: 1.88100247e-07 + ArtUnc_95: -4.02596680e-07 + ArtUnc_96: -1.83173144e-08 - stat: 0 Uncorr: 4.73e-07 - RCES: 1.1361456061614636e-06 - ElEn: 5.622137771346412e-07 - ElTh: 7.964960466945206e-07 - Lumi: 3.6421000000000006e-07 - LArN: 2.838e-07 - StatMC: 4.17186e-06 - RadErr: 4.1056399999999995e-06 - Model_1: 3.3847504559125176e-06 - Model_2: 3.3847504559125176e-06 - ModelRW_1: 2.7358951313601183e-06 - ModelRW_2: 2.7358951313601183e-06 - JES_1: 2.495779356741597e-06 - JES_2: 2.495779356741597e-06 - ArtUnc_1: 2.35927203457836e-20 - ArtUnc_2: -5.922629161146333e-18 - ArtUnc_3: -1.8819435998532412e-17 - ArtUnc_4: 3.158187577786074e-17 - ArtUnc_5: 1.5937576017366522e-18 - ArtUnc_6: 3.289342185321362e-18 - ArtUnc_7: 1.2239723672715737e-15 - ArtUnc_8: -2.2074775992870183e-14 - ArtUnc_9: 6.704927999036726e-16 - ArtUnc_10: 2.7699408858070488e-14 - ArtUnc_11: -5.873909050903443e-14 - ArtUnc_12: -4.664676081797592e-15 - ArtUnc_13: -3.2082494641071664e-14 - ArtUnc_14: -2.7683369430503856e-15 - ArtUnc_15: 7.564761722243567e-15 - ArtUnc_16: -4.898938440266008e-16 - ArtUnc_17: -7.0621030270174545e-15 - ArtUnc_18: 5.255133824119982e-16 - ArtUnc_19: 1.636309256674278e-14 - ArtUnc_20: -2.388984636576834e-13 - ArtUnc_21: 2.0807479147216883e-14 - ArtUnc_22: -5.297202828927104e-12 - ArtUnc_23: -1.9082778121082117e-13 - ArtUnc_24: 6.039201406219987e-12 - ArtUnc_25: 2.6715907554250054e-12 - ArtUnc_26: -2.7966393291241113e-13 - ArtUnc_27: -1.9072862813516748e-11 - ArtUnc_28: -3.1805753329792926e-13 - ArtUnc_29: 2.342851279537203e-12 - ArtUnc_30: -2.1374606682004223e-13 - ArtUnc_31: 1.0815260616289436e-13 - ArtUnc_32: -1.9686397571900833e-11 - ArtUnc_33: -1.5636800167330968e-14 - ArtUnc_34: 4.9413977886084574e-12 - ArtUnc_35: 3.43431542246607e-12 - ArtUnc_36: -4.797358782039034e-11 - ArtUnc_37: 5.773888609003612e-11 - ArtUnc_38: -9.251216849801803e-12 - ArtUnc_39: -6.909058451839399e-11 - ArtUnc_40: 1.6925117406345058e-12 - ArtUnc_41: 3.7053698468647157e-10 - ArtUnc_42: 1.855392905824653e-11 - ArtUnc_43: -4.846323282584783e-10 - ArtUnc_44: -3.327459492762007e-11 - ArtUnc_45: 7.597393152306623e-13 - ArtUnc_46: -6.897334913058715e-11 - ArtUnc_47: 1.5566079258656675e-10 - ArtUnc_48: -7.485089687541113e-12 - ArtUnc_49: -4.1862286539354177e-10 - ArtUnc_50: 6.302238876174077e-11 - ArtUnc_51: -9.653027877636256e-10 - ArtUnc_52: 5.72165799063931e-10 - ArtUnc_53: -2.489573684983785e-11 - ArtUnc_54: -7.617696381330824e-11 - ArtUnc_55: -1.3478870594901272e-08 - ArtUnc_56: 1.2402321011988667e-08 - ArtUnc_57: 3.5571456105850805e-09 - ArtUnc_58: -2.556150908248414e-08 - ArtUnc_59: -1.2383163719166848e-10 - ArtUnc_60: -3.2222219760101495e-08 - ArtUnc_61: -5.2251288050979926e-12 - ArtUnc_62: -8.97457198223341e-10 - ArtUnc_63: 9.440574608420388e-11 - ArtUnc_64: -2.448031875497111e-08 - ArtUnc_65: 1.042472983643038e-09 - ArtUnc_66: -3.5166796463923804e-08 - ArtUnc_67: 3.52988122038554e-10 - ArtUnc_68: 1.992668957386929e-09 - ArtUnc_69: -3.938321250102191e-10 - ArtUnc_70: 9.539111780811317e-09 - ArtUnc_71: 2.266615073220808e-10 - ArtUnc_72: 4.3344959477670267e-08 - ArtUnc_73: 3.439910778665954e-09 - ArtUnc_74: 3.766214542747073e-08 - ArtUnc_75: -8.853833025974996e-08 - ArtUnc_76: -5.07855697525207e-10 - ArtUnc_77: 2.6350754104537003e-09 - ArtUnc_78: -5.219583627350703e-08 - ArtUnc_79: -1.9286320867927353e-07 - ArtUnc_80: 2.0279690969114773e-09 - ArtUnc_81: -7.292739062847744e-09 - ArtUnc_82: -5.170141903927744e-10 - ArtUnc_83: 2.2541666134281235e-08 - ArtUnc_84: -3.9693062371755816e-08 - ArtUnc_85: 2.686872478207075e-06 - ArtUnc_86: 4.141473619815568e-07 - ArtUnc_87: 7.862979078955503e-07 - ArtUnc_88: 1.1721011470516791e-08 - ArtUnc_89: 4.4423448886381265e-08 - ArtUnc_90: 2.651165675700547e-07 - ArtUnc_91: -1.6784554078079242e-06 - ArtUnc_92: -1.550500835139394e-08 - ArtUnc_93: 1.9257018402611466e-08 - ArtUnc_94: 2.2281251523428708e-08 - ArtUnc_95: -8.447286155149897e-07 - ArtUnc_96: -1.7506003847933434e-07 + RCES: 1.13614561e-06 + ElEn: 5.62213777e-07 + ElTh: 7.96496047e-07 + Lumi: 3.64210000e-07 + LArN: 2.83800000e-07 + StatMC: 4.17186000e-06 + RadErr: 4.10564000e-06 + Model_1: 3.38475046e-06 + Model_2: 3.38475046e-06 + ModelRW_1: 2.73589513e-06 + ModelRW_2: 2.73589513e-06 + JES_1: 2.49577936e-06 + JES_2: 2.49577936e-06 + ArtUnc_1: 2.35927203e-20 + ArtUnc_2: -5.92262916e-18 + ArtUnc_3: -1.88194360e-17 + ArtUnc_4: 3.15818758e-17 + ArtUnc_5: 1.59375760e-18 + ArtUnc_6: 3.28934219e-18 + ArtUnc_7: 1.22397237e-15 + ArtUnc_8: -2.20747760e-14 + ArtUnc_9: 6.70492800e-16 + ArtUnc_10: 2.76994089e-14 + ArtUnc_11: -5.87390905e-14 + ArtUnc_12: -4.66467608e-15 + ArtUnc_13: -3.20824946e-14 + ArtUnc_14: -2.76833694e-15 + ArtUnc_15: 7.56476172e-15 + ArtUnc_16: -4.89893844e-16 + ArtUnc_17: -7.06210303e-15 + ArtUnc_18: 5.25513382e-16 + ArtUnc_19: 1.63630926e-14 + ArtUnc_20: -2.38898464e-13 + ArtUnc_21: 2.08074791e-14 + ArtUnc_22: -5.29720283e-12 + ArtUnc_23: -1.90827781e-13 + ArtUnc_24: 6.03920141e-12 + ArtUnc_25: 2.67159076e-12 + ArtUnc_26: -2.79663933e-13 + ArtUnc_27: -1.90728628e-11 + ArtUnc_28: -3.18057533e-13 + ArtUnc_29: 2.34285128e-12 + ArtUnc_30: -2.13746067e-13 + ArtUnc_31: 1.08152606e-13 + ArtUnc_32: -1.96863976e-11 + ArtUnc_33: -1.56368002e-14 + ArtUnc_34: 4.94139779e-12 + ArtUnc_35: 3.43431542e-12 + ArtUnc_36: -4.79735878e-11 + ArtUnc_37: 5.77388861e-11 + ArtUnc_38: -9.25121685e-12 + ArtUnc_39: -6.90905845e-11 + ArtUnc_40: 1.69251174e-12 + ArtUnc_41: 3.70536985e-10 + ArtUnc_42: 1.85539291e-11 + ArtUnc_43: -4.84632328e-10 + ArtUnc_44: -3.32745949e-11 + ArtUnc_45: 7.59739315e-13 + ArtUnc_46: -6.89733491e-11 + ArtUnc_47: 1.55660793e-10 + ArtUnc_48: -7.48508969e-12 + ArtUnc_49: -4.18622865e-10 + ArtUnc_50: 6.30223888e-11 + ArtUnc_51: -9.65302788e-10 + ArtUnc_52: 5.72165799e-10 + ArtUnc_53: -2.48957368e-11 + ArtUnc_54: -7.61769638e-11 + ArtUnc_55: -1.34788706e-08 + ArtUnc_56: 1.24023210e-08 + ArtUnc_57: 3.55714561e-09 + ArtUnc_58: -2.55615091e-08 + ArtUnc_59: -1.23831637e-10 + ArtUnc_60: -3.22222198e-08 + ArtUnc_61: -5.22512881e-12 + ArtUnc_62: -8.97457198e-10 + ArtUnc_63: 9.44057461e-11 + ArtUnc_64: -2.44803188e-08 + ArtUnc_65: 1.04247298e-09 + ArtUnc_66: -3.51667965e-08 + ArtUnc_67: 3.52988122e-10 + ArtUnc_68: 1.99266896e-09 + ArtUnc_69: -3.93832125e-10 + ArtUnc_70: 9.53911178e-09 + ArtUnc_71: 2.26661507e-10 + ArtUnc_72: 4.33449595e-08 + ArtUnc_73: 3.43991078e-09 + ArtUnc_74: 3.76621454e-08 + ArtUnc_75: -8.85383303e-08 + ArtUnc_76: -5.07855698e-10 + ArtUnc_77: 2.63507541e-09 + ArtUnc_78: -5.21958363e-08 + ArtUnc_79: -1.92863209e-07 + ArtUnc_80: 2.02796910e-09 + ArtUnc_81: -7.29273906e-09 + ArtUnc_82: -5.17014190e-10 + ArtUnc_83: 2.25416661e-08 + ArtUnc_84: -3.96930624e-08 + ArtUnc_85: 2.68687248e-06 + ArtUnc_86: 4.14147362e-07 + ArtUnc_87: 7.86297908e-07 + ArtUnc_88: 1.17210115e-08 + ArtUnc_89: 4.44234489e-08 + ArtUnc_90: 2.65116568e-07 + ArtUnc_91: -1.67845541e-06 + ArtUnc_92: -1.55050084e-08 + ArtUnc_93: 1.92570184e-08 + ArtUnc_94: 2.22812515e-08 + ArtUnc_95: -8.44728616e-07 + ArtUnc_96: -1.75060038e-07 - stat: 0 Uncorr: 0.000419 - RCES: 0.0026473771535616155 - ElEn: 0.0005657741345271981 - ElTh: 0.00030934432607532985 - Lumi: 0.00032263 - LArN: 0.0002514 - StatMC: 0.00100979 - RadErr: 0.00021369 - Model_1: 0.00018961775444298456 - Model_2: 0.00018961775444298456 - ModelRW_1: 0.0003199799606225365 - ModelRW_2: 0.0003199799606225365 - JES_1: 0.0011273387523444316 - JES_2: 0.0011273387523444316 - ArtUnc_1: -4.650512749355942e-09 - ArtUnc_2: 2.6150404338355495e-07 - ArtUnc_3: 5.12557246908968e-07 - ArtUnc_4: 1.0849380135812087e-06 - ArtUnc_5: 7.030184433999337e-08 - ArtUnc_6: -6.666096450952222e-08 - ArtUnc_7: 8.926475091343498e-06 - ArtUnc_8: -3.752463903315676e-05 - ArtUnc_9: -4.525940513413666e-06 - ArtUnc_10: 3.1467905590806244e-05 - ArtUnc_11: -2.0233147902406997e-05 - ArtUnc_12: 2.021947318951445e-06 - ArtUnc_13: -4.003287853094295e-05 - ArtUnc_14: 9.54290296203011e-06 - ArtUnc_15: -1.5817618089945295e-05 - ArtUnc_16: 5.069765305450733e-07 - ArtUnc_17: -1.0889155969046879e-05 - ArtUnc_18: 7.854719394652192e-07 - ArtUnc_19: 2.3706046886005644e-05 - ArtUnc_20: -1.9083074205274243e-05 - ArtUnc_21: 4.747888848597217e-07 - ArtUnc_22: 0.00016734295161063723 - ArtUnc_23: 1.8956321121513973e-06 - ArtUnc_24: 0.0001391234856377672 - ArtUnc_25: 0.00018799400387012392 - ArtUnc_26: 3.117946243289525e-05 - ArtUnc_27: 0.00021123077073010498 - ArtUnc_28: 2.693125101744767e-06 - ArtUnc_29: 0.0005732465940048262 - ArtUnc_30: 0.00012951670447777832 - ArtUnc_31: -5.386786433193626e-05 - ArtUnc_32: -0.0002279172775553063 - ArtUnc_33: 2.3810441821111926e-07 - ArtUnc_34: -7.330782394982886e-06 - ArtUnc_35: -1.7685369090595917e-05 - ArtUnc_36: -2.4724312944298536e-06 - ArtUnc_37: -1.4607163820264878e-05 - ArtUnc_38: 2.6176429082255432e-06 - ArtUnc_39: -6.607915967338914e-07 - ArtUnc_40: -5.1362874816051534e-08 - ArtUnc_41: 1.5135293048599083e-06 - ArtUnc_42: -3.930922079681527e-08 - ArtUnc_43: 1.3049128874402319e-06 - ArtUnc_44: -7.96030395165809e-06 - ArtUnc_45: 5.351476142624853e-08 - ArtUnc_46: -3.500460120766658e-07 - ArtUnc_47: -2.698530947205398e-07 - ArtUnc_48: 6.382660114578908e-09 - ArtUnc_49: 2.4341397056357427e-06 - ArtUnc_50: 4.81169572330774e-07 - ArtUnc_51: 2.879156312045966e-08 - ArtUnc_52: 1.933283862988446e-08 - ArtUnc_53: 5.698775424400118e-09 - ArtUnc_54: -1.2428319793269074e-08 - ArtUnc_55: 1.8299365598447446e-08 - ArtUnc_56: -9.683602000634305e-10 - ArtUnc_57: -2.008998975123179e-09 - ArtUnc_58: -4.09381063276111e-09 - ArtUnc_59: 7.913059982895237e-09 - ArtUnc_60: 6.358131181272643e-09 - ArtUnc_61: 3.316418941539378e-11 - ArtUnc_62: 4.826728173643972e-09 - ArtUnc_63: -5.171061553907083e-10 - ArtUnc_64: 3.34943184805511e-07 - ArtUnc_65: -1.1614407621026812e-08 - ArtUnc_66: -2.3340415670957435e-07 - ArtUnc_67: -4.714533807607662e-09 - ArtUnc_68: -5.125500757971282e-10 - ArtUnc_69: 2.5681759201689222e-11 - ArtUnc_70: -4.617791891797858e-10 - ArtUnc_71: -1.726956563111836e-11 - ArtUnc_72: -1.0426947546361144e-09 - ArtUnc_73: 1.3974946479052858e-10 - ArtUnc_74: -7.388353615932547e-11 - ArtUnc_75: 2.2023115713533785e-09 - ArtUnc_76: -3.238875632136181e-11 - ArtUnc_77: 1.683694432077045e-10 - ArtUnc_78: -2.3319062783790383e-09 - ArtUnc_79: 6.984125752352948e-10 - ArtUnc_80: 2.4210672858428407e-10 - ArtUnc_81: -1.0645104275344316e-10 - ArtUnc_82: 9.551534802832154e-12 - ArtUnc_83: 4.247721654093233e-11 - ArtUnc_84: 1.2581519448969144e-11 - ArtUnc_85: -2.853203139020557e-13 - ArtUnc_86: -7.1550686480950606e-12 - ArtUnc_87: -8.385559175981213e-12 - ArtUnc_88: 9.054072666771776e-12 - ArtUnc_89: 6.684767466884986e-11 - ArtUnc_90: 1.8249590088465067e-11 - ArtUnc_91: -1.3769282793509156e-12 - ArtUnc_92: -2.0830196938451975e-10 - ArtUnc_93: 1.474440598941191e-11 - ArtUnc_94: 2.8062288957760026e-12 - ArtUnc_95: -4.9037181482300245e-11 - ArtUnc_96: 1.1351687655157902e-11 + RCES: 2.64737715e-03 + ElEn: 5.65774135e-04 + ElTh: 3.09344326e-04 + Lumi: 3.22630000e-04 + LArN: 2.51400000e-04 + StatMC: 1.00979000e-03 + RadErr: 2.13690000e-04 + Model_1: 1.89617754e-04 + Model_2: 1.89617754e-04 + ModelRW_1: 3.19979961e-04 + ModelRW_2: 3.19979961e-04 + JES_1: 1.12733875e-03 + JES_2: 1.12733875e-03 + ArtUnc_1: -4.65051275e-09 + ArtUnc_2: 2.61504043e-07 + ArtUnc_3: 5.12557247e-07 + ArtUnc_4: 1.08493801e-06 + ArtUnc_5: 7.03018443e-08 + ArtUnc_6: -6.66609645e-08 + ArtUnc_7: 8.92647509e-06 + ArtUnc_8: -3.75246390e-05 + ArtUnc_9: -4.52594051e-06 + ArtUnc_10: 3.14679056e-05 + ArtUnc_11: -2.02331479e-05 + ArtUnc_12: 2.02194732e-06 + ArtUnc_13: -4.00328785e-05 + ArtUnc_14: 9.54290296e-06 + ArtUnc_15: -1.58176181e-05 + ArtUnc_16: 5.06976531e-07 + ArtUnc_17: -1.08891560e-05 + ArtUnc_18: 7.85471939e-07 + ArtUnc_19: 2.37060469e-05 + ArtUnc_20: -1.90830742e-05 + ArtUnc_21: 4.74788885e-07 + ArtUnc_22: 1.67342952e-04 + ArtUnc_23: 1.89563211e-06 + ArtUnc_24: 1.39123486e-04 + ArtUnc_25: 1.87994004e-04 + ArtUnc_26: 3.11794624e-05 + ArtUnc_27: 2.11230771e-04 + ArtUnc_28: 2.69312510e-06 + ArtUnc_29: 5.73246594e-04 + ArtUnc_30: 1.29516704e-04 + ArtUnc_31: -5.38678643e-05 + ArtUnc_32: -2.27917278e-04 + ArtUnc_33: 2.38104418e-07 + ArtUnc_34: -7.33078239e-06 + ArtUnc_35: -1.76853691e-05 + ArtUnc_36: -2.47243129e-06 + ArtUnc_37: -1.46071638e-05 + ArtUnc_38: 2.61764291e-06 + ArtUnc_39: -6.60791597e-07 + ArtUnc_40: -5.13628748e-08 + ArtUnc_41: 1.51352930e-06 + ArtUnc_42: -3.93092208e-08 + ArtUnc_43: 1.30491289e-06 + ArtUnc_44: -7.96030395e-06 + ArtUnc_45: 5.35147614e-08 + ArtUnc_46: -3.50046012e-07 + ArtUnc_47: -2.69853095e-07 + ArtUnc_48: 6.38266011e-09 + ArtUnc_49: 2.43413971e-06 + ArtUnc_50: 4.81169572e-07 + ArtUnc_51: 2.87915631e-08 + ArtUnc_52: 1.93328386e-08 + ArtUnc_53: 5.69877542e-09 + ArtUnc_54: -1.24283198e-08 + ArtUnc_55: 1.82993656e-08 + ArtUnc_56: -9.68360200e-10 + ArtUnc_57: -2.00899898e-09 + ArtUnc_58: -4.09381063e-09 + ArtUnc_59: 7.91305998e-09 + ArtUnc_60: 6.35813118e-09 + ArtUnc_61: 3.31641894e-11 + ArtUnc_62: 4.82672817e-09 + ArtUnc_63: -5.17106155e-10 + ArtUnc_64: 3.34943185e-07 + ArtUnc_65: -1.16144076e-08 + ArtUnc_66: -2.33404157e-07 + ArtUnc_67: -4.71453381e-09 + ArtUnc_68: -5.12550076e-10 + ArtUnc_69: 2.56817592e-11 + ArtUnc_70: -4.61779189e-10 + ArtUnc_71: -1.72695656e-11 + ArtUnc_72: -1.04269475e-09 + ArtUnc_73: 1.39749465e-10 + ArtUnc_74: -7.38835362e-11 + ArtUnc_75: 2.20231157e-09 + ArtUnc_76: -3.23887563e-11 + ArtUnc_77: 1.68369443e-10 + ArtUnc_78: -2.33190628e-09 + ArtUnc_79: 6.98412575e-10 + ArtUnc_80: 2.42106729e-10 + ArtUnc_81: -1.06451043e-10 + ArtUnc_82: 9.55153480e-12 + ArtUnc_83: 4.24772165e-11 + ArtUnc_84: 1.25815194e-11 + ArtUnc_85: -2.85320314e-13 + ArtUnc_86: -7.15506865e-12 + ArtUnc_87: -8.38555918e-12 + ArtUnc_88: 9.05407267e-12 + ArtUnc_89: 6.68476747e-11 + ArtUnc_90: 1.82495901e-11 + ArtUnc_91: -1.37692828e-12 + ArtUnc_92: -2.08301969e-10 + ArtUnc_93: 1.47444060e-11 + ArtUnc_94: 2.80622890e-12 + ArtUnc_95: -4.90371815e-11 + ArtUnc_96: 1.13516877e-11 - stat: 0 Uncorr: 0.000338 - RCES: 0.00033580857091503784 - ElEn: 0.00020420347695374828 - ElTh: 8.569149957842959e-05 - Lumi: 0.00026025999999999995 - LArN: 0.00020279999999999997 - StatMC: 0.00030082 + RCES: 3.35808571e-04 + ElEn: 2.04203477e-04 + ElTh: 8.56914996e-05 + Lumi: 2.60260000e-04 + LArN: 2.02800000e-04 + StatMC: 3.00820000e-04 RadErr: 6.76e-05 - Model_1: 0.0008173871547804013 - Model_2: 0.0008173871547804013 - ModelRW_1: 0.0009368882008009278 - ModelRW_2: 0.0009368882008009278 - JES_1: 0.00023420985589850822 - JES_2: 0.00023420985589850822 - ArtUnc_1: 5.471569996118318e-10 - ArtUnc_2: -2.1548459534153544e-08 - ArtUnc_3: 1.6107173820174696e-09 - ArtUnc_4: 1.879064311830434e-07 - ArtUnc_5: 1.050117042374516e-09 - ArtUnc_6: 1.4980021086434547e-08 - ArtUnc_7: 1.0716030983489342e-06 - ArtUnc_8: -5.8520277451735335e-06 - ArtUnc_9: 7.491192402186086e-07 - ArtUnc_10: -8.052950538988503e-08 - ArtUnc_11: -5.725234485220118e-06 - ArtUnc_12: -9.685501549661442e-07 - ArtUnc_13: -1.3424257850248628e-06 - ArtUnc_14: -9.956049613002278e-07 - ArtUnc_15: 5.29772550663397e-07 - ArtUnc_16: 1.6738377684272918e-08 - ArtUnc_17: -3.582507838237691e-07 - ArtUnc_18: -1.264727437334715e-08 - ArtUnc_19: 1.233662996663388e-06 - ArtUnc_20: 8.403154663435293e-07 - ArtUnc_21: 6.79129868143396e-07 - ArtUnc_22: -1.776150220884529e-06 - ArtUnc_23: -4.784905450229317e-07 - ArtUnc_24: -5.169696883145389e-06 - ArtUnc_25: 2.8213503257829692e-05 - ArtUnc_26: -6.758352126525302e-06 - ArtUnc_27: -1.9482452456984413e-05 - ArtUnc_28: -1.8615587928710915e-07 - ArtUnc_29: 4.94000286483612e-06 - ArtUnc_30: 2.595975163818299e-06 - ArtUnc_31: -1.076324800799102e-06 - ArtUnc_32: -3.2874259781786615e-05 - ArtUnc_33: -3.299468307382029e-08 - ArtUnc_34: -1.2349402662050923e-06 - ArtUnc_35: -6.191515490195612e-06 - ArtUnc_36: -2.7249485883079676e-06 - ArtUnc_37: -5.989822561698278e-05 - ArtUnc_38: 1.040363962746263e-05 - ArtUnc_39: 7.720196274664037e-05 - ArtUnc_40: 1.5220534773987657e-06 - ArtUnc_41: 1.70937927886724e-05 - ArtUnc_42: 8.114505195690131e-07 - ArtUnc_43: -1.371526883447847e-05 - ArtUnc_44: 0.00024620974445310794 - ArtUnc_45: -1.2730256982223254e-06 - ArtUnc_46: 1.1643913116449547e-05 - ArtUnc_47: 1.6299789140107506e-06 - ArtUnc_48: -2.2809295116473704e-07 - ArtUnc_49: -3.634576712612296e-05 - ArtUnc_50: -2.4422571255481782e-06 - ArtUnc_51: -6.822122723981085e-08 - ArtUnc_52: 5.976234737191589e-08 - ArtUnc_53: -1.8446310222813494e-08 - ArtUnc_54: 2.4751852109216145e-08 - ArtUnc_55: 1.1310038013260833e-06 - ArtUnc_56: 1.0759820264168969e-06 - ArtUnc_57: 3.0780950207694145e-07 - ArtUnc_58: 6.812023712735847e-07 - ArtUnc_59: -7.960672216219715e-09 - ArtUnc_60: -5.267916630689513e-07 - ArtUnc_61: -3.399701646687149e-10 - ArtUnc_62: -6.6656039128050465e-09 - ArtUnc_63: 7.138800656368192e-10 - ArtUnc_64: -2.4775857851850117e-06 - ArtUnc_65: 3.624287910535524e-08 - ArtUnc_66: 1.8384640130182134e-06 - ArtUnc_67: 2.7181424246913548e-08 - ArtUnc_68: -2.8193276372482016e-08 - ArtUnc_69: -5.42760780524532e-10 - ArtUnc_70: 3.0846613497465428e-09 - ArtUnc_71: -5.4471592197849197e-11 - ArtUnc_72: -2.1302205731503017e-08 - ArtUnc_73: -8.471531075724741e-10 - ArtUnc_74: -1.1628840669622942e-08 - ArtUnc_75: 1.7170116614500534e-08 - ArtUnc_76: -2.341536895472736e-10 - ArtUnc_77: -2.7783117168958113e-10 - ArtUnc_78: 3.260211955439682e-08 - ArtUnc_79: 1.046351715994512e-08 - ArtUnc_80: -3.450248147908177e-10 - ArtUnc_81: 7.482156465457119e-10 - ArtUnc_82: 3.8370527796884825e-11 - ArtUnc_83: -3.247121662728555e-11 - ArtUnc_84: -1.4283148435103424e-09 - ArtUnc_85: 2.3167662235587087e-11 - ArtUnc_86: 6.903485286946707e-11 - ArtUnc_87: 6.463824938400358e-11 - ArtUnc_88: 6.4133573585991416e-12 - ArtUnc_89: 3.6365934066034854e-10 - ArtUnc_90: -2.5940032189813645e-10 - ArtUnc_91: 6.457000917868311e-11 - ArtUnc_92: 1.2350529808450879e-09 - ArtUnc_93: -1.151435439701838e-11 - ArtUnc_94: -3.2150143351094645e-11 - ArtUnc_95: -9.747009492310879e-11 - ArtUnc_96: -6.133126016765184e-11 + Model_1: 8.17387155e-04 + Model_2: 8.17387155e-04 + ModelRW_1: 9.36888201e-04 + ModelRW_2: 9.36888201e-04 + JES_1: 2.34209856e-04 + JES_2: 2.34209856e-04 + ArtUnc_1: 5.47157000e-10 + ArtUnc_2: -2.15484595e-08 + ArtUnc_3: 1.61071738e-09 + ArtUnc_4: 1.87906431e-07 + ArtUnc_5: 1.05011704e-09 + ArtUnc_6: 1.49800211e-08 + ArtUnc_7: 1.07160310e-06 + ArtUnc_8: -5.85202775e-06 + ArtUnc_9: 7.49119240e-07 + ArtUnc_10: -8.05295054e-08 + ArtUnc_11: -5.72523449e-06 + ArtUnc_12: -9.68550155e-07 + ArtUnc_13: -1.34242579e-06 + ArtUnc_14: -9.95604961e-07 + ArtUnc_15: 5.29772551e-07 + ArtUnc_16: 1.67383777e-08 + ArtUnc_17: -3.58250784e-07 + ArtUnc_18: -1.26472744e-08 + ArtUnc_19: 1.23366300e-06 + ArtUnc_20: 8.40315466e-07 + ArtUnc_21: 6.79129868e-07 + ArtUnc_22: -1.77615022e-06 + ArtUnc_23: -4.78490545e-07 + ArtUnc_24: -5.16969688e-06 + ArtUnc_25: 2.82135033e-05 + ArtUnc_26: -6.75835213e-06 + ArtUnc_27: -1.94824525e-05 + ArtUnc_28: -1.86155879e-07 + ArtUnc_29: 4.94000286e-06 + ArtUnc_30: 2.59597516e-06 + ArtUnc_31: -1.07632480e-06 + ArtUnc_32: -3.28742598e-05 + ArtUnc_33: -3.29946831e-08 + ArtUnc_34: -1.23494027e-06 + ArtUnc_35: -6.19151549e-06 + ArtUnc_36: -2.72494859e-06 + ArtUnc_37: -5.98982256e-05 + ArtUnc_38: 1.04036396e-05 + ArtUnc_39: 7.72019627e-05 + ArtUnc_40: 1.52205348e-06 + ArtUnc_41: 1.70937928e-05 + ArtUnc_42: 8.11450520e-07 + ArtUnc_43: -1.37152688e-05 + ArtUnc_44: 2.46209744e-04 + ArtUnc_45: -1.27302570e-06 + ArtUnc_46: 1.16439131e-05 + ArtUnc_47: 1.62997891e-06 + ArtUnc_48: -2.28092951e-07 + ArtUnc_49: -3.63457671e-05 + ArtUnc_50: -2.44225713e-06 + ArtUnc_51: -6.82212272e-08 + ArtUnc_52: 5.97623474e-08 + ArtUnc_53: -1.84463102e-08 + ArtUnc_54: 2.47518521e-08 + ArtUnc_55: 1.13100380e-06 + ArtUnc_56: 1.07598203e-06 + ArtUnc_57: 3.07809502e-07 + ArtUnc_58: 6.81202371e-07 + ArtUnc_59: -7.96067222e-09 + ArtUnc_60: -5.26791663e-07 + ArtUnc_61: -3.39970165e-10 + ArtUnc_62: -6.66560391e-09 + ArtUnc_63: 7.13880066e-10 + ArtUnc_64: -2.47758579e-06 + ArtUnc_65: 3.62428791e-08 + ArtUnc_66: 1.83846401e-06 + ArtUnc_67: 2.71814242e-08 + ArtUnc_68: -2.81932764e-08 + ArtUnc_69: -5.42760781e-10 + ArtUnc_70: 3.08466135e-09 + ArtUnc_71: -5.44715922e-11 + ArtUnc_72: -2.13022057e-08 + ArtUnc_73: -8.47153108e-10 + ArtUnc_74: -1.16288407e-08 + ArtUnc_75: 1.71701166e-08 + ArtUnc_76: -2.34153690e-10 + ArtUnc_77: -2.77831172e-10 + ArtUnc_78: 3.26021196e-08 + ArtUnc_79: 1.04635172e-08 + ArtUnc_80: -3.45024815e-10 + ArtUnc_81: 7.48215647e-10 + ArtUnc_82: 3.83705278e-11 + ArtUnc_83: -3.24712166e-11 + ArtUnc_84: -1.42831484e-09 + ArtUnc_85: 2.31676622e-11 + ArtUnc_86: 6.90348529e-11 + ArtUnc_87: 6.46382494e-11 + ArtUnc_88: 6.41335736e-12 + ArtUnc_89: 3.63659341e-10 + ArtUnc_90: -2.59400322e-10 + ArtUnc_91: 6.45700092e-11 + ArtUnc_92: 1.23505298e-09 + ArtUnc_93: -1.15143544e-11 + ArtUnc_94: -3.21501434e-11 + ArtUnc_95: -9.74700949e-11 + ArtUnc_96: -6.13312602e-11 - stat: 0 - Uncorr: 9.620000000000001e-05 - RCES: 3.858807323513316e-05 - ElEn: 3.7018254996690494e-05 - ElTh: 2.229267655531744e-05 - Lumi: 7.407400000000001e-05 - LArN: 5.772e-05 - StatMC: 7.1188e-05 - RadErr: 3.7518e-05 - Model_1: 0.0001462508955528136 - Model_2: 0.0001462508955528136 - ModelRW_1: 0.0003142693662576739 - ModelRW_2: 0.0003142693662576739 - JES_1: 0.0002116123953588258 - JES_2: 0.0002116123953588258 - ArtUnc_1: 3.72574843754151e-13 - ArtUnc_2: -5.5762134156865614e-11 - ArtUnc_3: -1.8792997287274888e-10 - ArtUnc_4: -4.5867840932993047e-10 - ArtUnc_5: -1.4436446732121365e-11 - ArtUnc_6: 1.867396902546295e-11 - ArtUnc_7: -2.3048097772345663e-09 - ArtUnc_8: 7.845765890473015e-10 - ArtUnc_9: 1.977290840908495e-09 - ArtUnc_10: -1.1619921967779412e-08 - ArtUnc_11: -3.343505219064145e-09 - ArtUnc_12: -1.858073969329258e-09 - ArtUnc_13: 6.893470512185661e-08 - ArtUnc_14: -8.552736714474256e-09 - ArtUnc_15: 1.584680464086288e-08 - ArtUnc_16: -4.681586319467342e-10 - ArtUnc_17: 2.577357061816638e-08 - ArtUnc_18: -1.3883467658975774e-09 - ArtUnc_19: -1.0772612664045383e-07 - ArtUnc_20: 9.127921594949682e-08 - ArtUnc_21: -6.69780382479327e-11 - ArtUnc_22: -1.1270512654920153e-07 - ArtUnc_23: -1.33234118677314e-09 - ArtUnc_24: -1.555632830104435e-06 - ArtUnc_25: 7.606353978765029e-07 - ArtUnc_26: -3.851083482718545e-07 - ArtUnc_27: -1.4525484734098774e-06 - ArtUnc_28: -5.0885052975844806e-08 - ArtUnc_29: -1.61172054026889e-06 - ArtUnc_30: -4.1133548073345233e-07 - ArtUnc_31: 1.6983994409471313e-07 - ArtUnc_32: 1.6892305922854216e-06 - ArtUnc_33: -1.457067664224312e-10 - ArtUnc_34: 8.989143287517297e-08 - ArtUnc_35: -8.88695551901891e-08 - ArtUnc_36: -7.18178209779854e-07 - ArtUnc_37: -2.0778125037738755e-06 - ArtUnc_38: 3.6391782595336935e-07 - ArtUnc_39: 2.7286713820166425e-06 - ArtUnc_40: 5.455195979650584e-08 - ArtUnc_41: 7.549069678202054e-06 - ArtUnc_42: 7.453588459557469e-08 - ArtUnc_43: -1.1101608282611014e-05 - ArtUnc_44: 2.001257463619583e-06 - ArtUnc_45: -2.7433672163892875e-08 - ArtUnc_46: -9.517229932447282e-07 - ArtUnc_47: 5.589666364914897e-07 - ArtUnc_48: -2.4944416287900184e-08 - ArtUnc_49: -2.347177907621313e-05 - ArtUnc_50: -1.4282041253317663e-06 - ArtUnc_51: 4.788002977745001e-07 - ArtUnc_52: 8.903094382816588e-07 - ArtUnc_53: -1.2459460515372746e-07 - ArtUnc_54: 8.14925320564319e-08 - ArtUnc_55: 1.2594223585421794e-05 - ArtUnc_56: 1.4274865327025676e-05 - ArtUnc_57: 4.174072422605024e-06 - ArtUnc_58: 2.230354844345179e-05 - ArtUnc_59: -2.190809742086046e-07 - ArtUnc_60: -1.8910934551201536e-05 - ArtUnc_61: -1.094479673965532e-08 - ArtUnc_62: -6.893892056174763e-08 - ArtUnc_63: 5.82376697707184e-09 - ArtUnc_64: 5.660326229221998e-05 - ArtUnc_65: -8.015406273538802e-07 - ArtUnc_66: -3.968347141017291e-05 - ArtUnc_67: -5.263076671626725e-07 - ArtUnc_68: 3.5855468780181044e-07 - ArtUnc_69: 1.0173186218331753e-08 - ArtUnc_70: -1.2295317660275172e-07 - ArtUnc_71: -2.4793314171900886e-09 - ArtUnc_72: -6.571712548162341e-07 - ArtUnc_73: -4.7783870276875176e-08 - ArtUnc_74: -1.005910223108769e-07 - ArtUnc_75: 8.417761885970648e-07 - ArtUnc_76: 8.396096597475887e-09 - ArtUnc_77: 7.423005449611018e-09 - ArtUnc_78: -1.1325365974715549e-07 - ArtUnc_79: -4.231882205546767e-08 - ArtUnc_80: 6.129071591428702e-09 - ArtUnc_81: -9.456587992687747e-09 - ArtUnc_82: -1.5188352334206963e-10 - ArtUnc_83: 5.014588526357662e-09 - ArtUnc_84: -1.1798190978592541e-08 - ArtUnc_85: -2.631729931570385e-10 - ArtUnc_86: 1.9245738468918398e-11 - ArtUnc_87: 2.5939757535041884e-10 - ArtUnc_88: 1.2062301518547448e-09 - ArtUnc_89: 2.027714838316177e-08 - ArtUnc_90: -3.0170830838406754e-09 - ArtUnc_91: -1.0921148670096631e-09 - ArtUnc_92: -2.351887988493733e-08 - ArtUnc_93: 4.3944548208894744e-10 - ArtUnc_94: 3.7330271507787496e-10 - ArtUnc_95: -3.296110908263646e-09 - ArtUnc_96: 4.3659842526486204e-11 + Uncorr: 9.62000000e-05 + RCES: 3.85880732e-05 + ElEn: 3.70182550e-05 + ElTh: 2.22926766e-05 + Lumi: 7.40740000e-05 + LArN: 5.77200000e-05 + StatMC: 7.11880000e-05 + RadErr: 3.75180000e-05 + Model_1: 1.46250896e-04 + Model_2: 1.46250896e-04 + ModelRW_1: 3.14269366e-04 + ModelRW_2: 3.14269366e-04 + JES_1: 2.11612395e-04 + JES_2: 2.11612395e-04 + ArtUnc_1: 3.72574844e-13 + ArtUnc_2: -5.57621342e-11 + ArtUnc_3: -1.87929973e-10 + ArtUnc_4: -4.58678409e-10 + ArtUnc_5: -1.44364467e-11 + ArtUnc_6: 1.86739690e-11 + ArtUnc_7: -2.30480978e-09 + ArtUnc_8: 7.84576589e-10 + ArtUnc_9: 1.97729084e-09 + ArtUnc_10: -1.16199220e-08 + ArtUnc_11: -3.34350522e-09 + ArtUnc_12: -1.85807397e-09 + ArtUnc_13: 6.89347051e-08 + ArtUnc_14: -8.55273671e-09 + ArtUnc_15: 1.58468046e-08 + ArtUnc_16: -4.68158632e-10 + ArtUnc_17: 2.57735706e-08 + ArtUnc_18: -1.38834677e-09 + ArtUnc_19: -1.07726127e-07 + ArtUnc_20: 9.12792159e-08 + ArtUnc_21: -6.69780382e-11 + ArtUnc_22: -1.12705127e-07 + ArtUnc_23: -1.33234119e-09 + ArtUnc_24: -1.55563283e-06 + ArtUnc_25: 7.60635398e-07 + ArtUnc_26: -3.85108348e-07 + ArtUnc_27: -1.45254847e-06 + ArtUnc_28: -5.08850530e-08 + ArtUnc_29: -1.61172054e-06 + ArtUnc_30: -4.11335481e-07 + ArtUnc_31: 1.69839944e-07 + ArtUnc_32: 1.68923059e-06 + ArtUnc_33: -1.45706766e-10 + ArtUnc_34: 8.98914329e-08 + ArtUnc_35: -8.88695552e-08 + ArtUnc_36: -7.18178210e-07 + ArtUnc_37: -2.07781250e-06 + ArtUnc_38: 3.63917826e-07 + ArtUnc_39: 2.72867138e-06 + ArtUnc_40: 5.45519598e-08 + ArtUnc_41: 7.54906968e-06 + ArtUnc_42: 7.45358846e-08 + ArtUnc_43: -1.11016083e-05 + ArtUnc_44: 2.00125746e-06 + ArtUnc_45: -2.74336722e-08 + ArtUnc_46: -9.51722993e-07 + ArtUnc_47: 5.58966636e-07 + ArtUnc_48: -2.49444163e-08 + ArtUnc_49: -2.34717791e-05 + ArtUnc_50: -1.42820413e-06 + ArtUnc_51: 4.78800298e-07 + ArtUnc_52: 8.90309438e-07 + ArtUnc_53: -1.24594605e-07 + ArtUnc_54: 8.14925321e-08 + ArtUnc_55: 1.25942236e-05 + ArtUnc_56: 1.42748653e-05 + ArtUnc_57: 4.17407242e-06 + ArtUnc_58: 2.23035484e-05 + ArtUnc_59: -2.19080974e-07 + ArtUnc_60: -1.89109346e-05 + ArtUnc_61: -1.09447967e-08 + ArtUnc_62: -6.89389206e-08 + ArtUnc_63: 5.82376698e-09 + ArtUnc_64: 5.66032623e-05 + ArtUnc_65: -8.01540627e-07 + ArtUnc_66: -3.96834714e-05 + ArtUnc_67: -5.26307667e-07 + ArtUnc_68: 3.58554688e-07 + ArtUnc_69: 1.01731862e-08 + ArtUnc_70: -1.22953177e-07 + ArtUnc_71: -2.47933142e-09 + ArtUnc_72: -6.57171255e-07 + ArtUnc_73: -4.77838703e-08 + ArtUnc_74: -1.00591022e-07 + ArtUnc_75: 8.41776189e-07 + ArtUnc_76: 8.39609660e-09 + ArtUnc_77: 7.42300545e-09 + ArtUnc_78: -1.13253660e-07 + ArtUnc_79: -4.23188221e-08 + ArtUnc_80: 6.12907159e-09 + ArtUnc_81: -9.45658799e-09 + ArtUnc_82: -1.51883523e-10 + ArtUnc_83: 5.01458853e-09 + ArtUnc_84: -1.17981910e-08 + ArtUnc_85: -2.63172993e-10 + ArtUnc_86: 1.92457385e-11 + ArtUnc_87: 2.59397575e-10 + ArtUnc_88: 1.20623015e-09 + ArtUnc_89: 2.02771484e-08 + ArtUnc_90: -3.01708308e-09 + ArtUnc_91: -1.09211487e-09 + ArtUnc_92: -2.35188799e-08 + ArtUnc_93: 4.39445482e-10 + ArtUnc_94: 3.73302715e-10 + ArtUnc_95: -3.29611091e-09 + ArtUnc_96: 4.36598425e-11 - stat: 0 Uncorr: 1.84e-05 - RCES: 1.8747017682820914e-05 - ElEn: 1.1420976490650878e-05 - ElTh: 6.218002251527415e-06 - Lumi: 1.4168000000000002e-05 - LArN: 1.104e-05 - StatMC: 2.8336000000000004e-05 - RadErr: 1.7664e-05 - Model_1: 7.038823742643369e-05 - Model_2: 7.038823742643369e-05 - ModelRW_1: 8.105706454097633e-05 - ModelRW_2: 8.105706454097633e-05 - JES_1: 4.947513314787542e-05 - JES_2: 4.947513314787542e-05 - ArtUnc_1: -5.241462259945504e-15 - ArtUnc_2: 8.207592964730536e-13 - ArtUnc_3: 3.847729041683561e-12 - ArtUnc_4: 1.3792222266569431e-11 - ArtUnc_5: 5.052176641803228e-13 - ArtUnc_6: 2.249495667603643e-14 - ArtUnc_7: 6.265328750309011e-11 - ArtUnc_8: -2.377277478183806e-10 - ArtUnc_9: -3.167587896563486e-12 - ArtUnc_10: -9.980068575788724e-12 - ArtUnc_11: 8.486503372824655e-11 - ArtUnc_12: 1.4472528442572177e-11 - ArtUnc_13: 1.9485505226517446e-10 - ArtUnc_14: 1.3385041148049875e-11 - ArtUnc_15: 1.2777939886617276e-11 - ArtUnc_16: -1.4594414874811343e-12 - ArtUnc_17: -7.622530132064897e-12 - ArtUnc_18: -3.3382254149254044e-13 - ArtUnc_19: 4.1744491889578663e-10 - ArtUnc_20: -1.458526363026746e-10 - ArtUnc_21: -1.2183263999339942e-10 - ArtUnc_22: 2.970142757468545e-09 - ArtUnc_23: 2.2299854903822662e-10 - ArtUnc_24: 7.119878894173299e-10 - ArtUnc_25: -4.04907482471203e-09 - ArtUnc_26: 1.362777303429574e-09 - ArtUnc_27: 7.095862095533802e-09 - ArtUnc_28: -5.718772664874926e-10 - ArtUnc_29: -3.751773345438866e-09 - ArtUnc_30: -2.9515041503778913e-09 - ArtUnc_31: 1.1378459995070667e-09 - ArtUnc_32: 2.1546215977208804e-08 - ArtUnc_33: -2.5580061091301333e-11 - ArtUnc_34: -7.500012142866035e-10 - ArtUnc_35: -8.728016111705376e-09 - ArtUnc_36: 1.4591722382626946e-08 - ArtUnc_37: -1.5180310001887374e-07 - ArtUnc_38: 2.908727650187965e-08 - ArtUnc_39: 2.400366075531249e-07 - ArtUnc_40: 3.6335764936557314e-09 - ArtUnc_41: -1.7897560141455276e-07 - ArtUnc_42: 3.862399379342501e-09 - ArtUnc_43: 3.891403788701593e-07 - ArtUnc_44: -3.012756355155561e-07 - ArtUnc_45: 2.2701893778899755e-10 - ArtUnc_46: 3.043726544595362e-08 - ArtUnc_47: -6.82161911121795e-08 - ArtUnc_48: 5.213033624694447e-09 - ArtUnc_49: 7.909571133748741e-07 - ArtUnc_50: -4.000696485508816e-09 - ArtUnc_51: 1.2244715995664577e-07 - ArtUnc_52: -2.387388760086234e-08 - ArtUnc_53: -1.3473575118922905e-08 - ArtUnc_54: 2.9872328342697794e-08 - ArtUnc_55: -1.581319061040107e-06 - ArtUnc_56: 1.933241606756599e-06 - ArtUnc_57: 4.697845033799855e-07 - ArtUnc_58: -3.308935751188501e-06 - ArtUnc_59: 1.8756063896365827e-07 - ArtUnc_60: -3.6319870239236007e-06 - ArtUnc_61: 8.974999862891205e-09 - ArtUnc_62: -3.2100263389846357e-07 - ArtUnc_63: 3.687766345572873e-08 - ArtUnc_64: -7.773053107356384e-06 - ArtUnc_65: 6.977881398509863e-07 - ArtUnc_66: -8.346360521631696e-06 - ArtUnc_67: -3.417827012533332e-07 - ArtUnc_68: -4.126287864727083e-07 - ArtUnc_69: 3.5351700709203385e-09 - ArtUnc_70: -4.836847420599969e-07 - ArtUnc_71: -2.5243277693506292e-08 - ArtUnc_72: -5.773132591863485e-06 - ArtUnc_73: -4.681112618505477e-07 - ArtUnc_74: -1.577039913530142e-06 - ArtUnc_75: 9.86917479891918e-06 - ArtUnc_76: 7.128038724576999e-08 - ArtUnc_77: -3.1454011412941795e-08 - ArtUnc_78: 1.8891715977876717e-05 - ArtUnc_79: 1.349982111950535e-05 - ArtUnc_80: -7.125930552507109e-08 - ArtUnc_81: 4.94833375371924e-07 - ArtUnc_82: 3.523517435289861e-08 - ArtUnc_83: -5.926496319977509e-08 - ArtUnc_84: -1.4452008476412964e-07 - ArtUnc_85: 1.508320644838305e-08 - ArtUnc_86: 4.377923905507967e-09 - ArtUnc_87: 5.063614671791702e-09 - ArtUnc_88: 6.745731559486469e-09 - ArtUnc_89: 2.873263317578852e-07 - ArtUnc_90: -9.439684959935189e-08 - ArtUnc_91: -2.3971753920997772e-08 - ArtUnc_92: -4.26823292277409e-08 - ArtUnc_93: 1.5311556383332444e-09 - ArtUnc_94: -4.599464050398569e-10 - ArtUnc_95: -1.9906259590373583e-08 - ArtUnc_96: 2.321632159279879e-09 + RCES: 1.87470177e-05 + ElEn: 1.14209765e-05 + ElTh: 6.21800225e-06 + Lumi: 1.41680000e-05 + LArN: 1.10400000e-05 + StatMC: 2.83360000e-05 + RadErr: 1.76640000e-05 + Model_1: 7.03882374e-05 + Model_2: 7.03882374e-05 + ModelRW_1: 8.10570645e-05 + ModelRW_2: 8.10570645e-05 + JES_1: 4.94751331e-05 + JES_2: 4.94751331e-05 + ArtUnc_1: -5.24146226e-15 + ArtUnc_2: 8.20759296e-13 + ArtUnc_3: 3.84772904e-12 + ArtUnc_4: 1.37922223e-11 + ArtUnc_5: 5.05217664e-13 + ArtUnc_6: 2.24949567e-14 + ArtUnc_7: 6.26532875e-11 + ArtUnc_8: -2.37727748e-10 + ArtUnc_9: -3.16758790e-12 + ArtUnc_10: -9.98006858e-12 + ArtUnc_11: 8.48650337e-11 + ArtUnc_12: 1.44725284e-11 + ArtUnc_13: 1.94855052e-10 + ArtUnc_14: 1.33850411e-11 + ArtUnc_15: 1.27779399e-11 + ArtUnc_16: -1.45944149e-12 + ArtUnc_17: -7.62253013e-12 + ArtUnc_18: -3.33822541e-13 + ArtUnc_19: 4.17444919e-10 + ArtUnc_20: -1.45852636e-10 + ArtUnc_21: -1.21832640e-10 + ArtUnc_22: 2.97014276e-09 + ArtUnc_23: 2.22998549e-10 + ArtUnc_24: 7.11987889e-10 + ArtUnc_25: -4.04907482e-09 + ArtUnc_26: 1.36277730e-09 + ArtUnc_27: 7.09586210e-09 + ArtUnc_28: -5.71877266e-10 + ArtUnc_29: -3.75177335e-09 + ArtUnc_30: -2.95150415e-09 + ArtUnc_31: 1.13784600e-09 + ArtUnc_32: 2.15462160e-08 + ArtUnc_33: -2.55800611e-11 + ArtUnc_34: -7.50001214e-10 + ArtUnc_35: -8.72801611e-09 + ArtUnc_36: 1.45917224e-08 + ArtUnc_37: -1.51803100e-07 + ArtUnc_38: 2.90872765e-08 + ArtUnc_39: 2.40036608e-07 + ArtUnc_40: 3.63357649e-09 + ArtUnc_41: -1.78975601e-07 + ArtUnc_42: 3.86239938e-09 + ArtUnc_43: 3.89140379e-07 + ArtUnc_44: -3.01275636e-07 + ArtUnc_45: 2.27018938e-10 + ArtUnc_46: 3.04372654e-08 + ArtUnc_47: -6.82161911e-08 + ArtUnc_48: 5.21303362e-09 + ArtUnc_49: 7.90957113e-07 + ArtUnc_50: -4.00069649e-09 + ArtUnc_51: 1.22447160e-07 + ArtUnc_52: -2.38738876e-08 + ArtUnc_53: -1.34735751e-08 + ArtUnc_54: 2.98723283e-08 + ArtUnc_55: -1.58131906e-06 + ArtUnc_56: 1.93324161e-06 + ArtUnc_57: 4.69784503e-07 + ArtUnc_58: -3.30893575e-06 + ArtUnc_59: 1.87560639e-07 + ArtUnc_60: -3.63198702e-06 + ArtUnc_61: 8.97499986e-09 + ArtUnc_62: -3.21002634e-07 + ArtUnc_63: 3.68776635e-08 + ArtUnc_64: -7.77305311e-06 + ArtUnc_65: 6.97788140e-07 + ArtUnc_66: -8.34636052e-06 + ArtUnc_67: -3.41782701e-07 + ArtUnc_68: -4.12628786e-07 + ArtUnc_69: 3.53517007e-09 + ArtUnc_70: -4.83684742e-07 + ArtUnc_71: -2.52432777e-08 + ArtUnc_72: -5.77313259e-06 + ArtUnc_73: -4.68111262e-07 + ArtUnc_74: -1.57703991e-06 + ArtUnc_75: 9.86917480e-06 + ArtUnc_76: 7.12803872e-08 + ArtUnc_77: -3.14540114e-08 + ArtUnc_78: 1.88917160e-05 + ArtUnc_79: 1.34998211e-05 + ArtUnc_80: -7.12593055e-08 + ArtUnc_81: 4.94833375e-07 + ArtUnc_82: 3.52351744e-08 + ArtUnc_83: -5.92649632e-08 + ArtUnc_84: -1.44520085e-07 + ArtUnc_85: 1.50832064e-08 + ArtUnc_86: 4.37792391e-09 + ArtUnc_87: 5.06361467e-09 + ArtUnc_88: 6.74573156e-09 + ArtUnc_89: 2.87326332e-07 + ArtUnc_90: -9.43968496e-08 + ArtUnc_91: -2.39717539e-08 + ArtUnc_92: -4.26823292e-08 + ArtUnc_93: 1.53115564e-09 + ArtUnc_94: -4.59946405e-10 + ArtUnc_95: -1.99062596e-08 + ArtUnc_96: 2.32163216e-09 - stat: 0 Uncorr: 3.01e-06 - RCES: 3.375061070188212e-06 - ElEn: 3.848447150475111e-06 - ElTh: 2.898522163103122e-06 - Lumi: 2.3177000000000003e-06 - LArN: 1.806e-06 - StatMC: 1.3123600000000001e-05 - RadErr: 6.8628e-06 - Model_1: 6.1936190070910885e-06 - Model_2: 6.1936190070910885e-06 - ModelRW_1: 1.6814292149834914e-06 - ModelRW_2: 1.6814292149834914e-06 - JES_1: 1.4545258570192214e-05 - JES_2: 1.4545258570192214e-05 - ArtUnc_1: -1.9019991291243223e-17 - ArtUnc_2: 1.0507157366899366e-14 - ArtUnc_3: 7.405936115075455e-14 - ArtUnc_4: 4.1516782877622893e-13 - ArtUnc_5: 1.4607047978177815e-14 - ArtUnc_6: 3.987043331119774e-15 - ArtUnc_7: 2.9871234429873815e-12 - ArtUnc_8: -1.28901101419786e-11 - ArtUnc_9: 1.936248767826609e-13 - ArtUnc_10: -1.9130658824214493e-13 - ArtUnc_11: -3.400051045086563e-13 - ArtUnc_12: -3.6520029181094834e-14 - ArtUnc_13: 7.1714396580652244e-12 - ArtUnc_14: -1.2279063899775683e-13 - ArtUnc_15: 5.068030375999428e-14 - ArtUnc_16: 1.814635154565131e-15 - ArtUnc_17: -2.5823036770884942e-12 - ArtUnc_18: 7.732364342860023e-14 - ArtUnc_19: 1.0368599030336335e-11 - ArtUnc_20: 2.537794841164756e-11 - ArtUnc_21: -1.8355254578712134e-12 - ArtUnc_22: 3.23052714866025e-10 - ArtUnc_23: 6.571649960662051e-12 - ArtUnc_24: -1.315256411252612e-10 - ArtUnc_25: -2.5802325607447383e-10 - ArtUnc_26: 5.448016000703067e-11 - ArtUnc_27: 9.181928486933075e-10 - ArtUnc_28: 4.266311332429477e-11 - ArtUnc_29: 2.121381067959539e-10 - ArtUnc_30: 1.2336925894313725e-10 - ArtUnc_31: -5.0572066259762264e-11 - ArtUnc_32: 1.9897910843142253e-09 - ArtUnc_33: -5.964743379366253e-13 - ArtUnc_34: -4.2291022066909204e-11 - ArtUnc_35: -6.372771500145227e-11 - ArtUnc_36: 8.992438540225526e-10 - ArtUnc_37: -2.823869184278453e-09 - ArtUnc_38: 5.029805408362752e-10 - ArtUnc_39: 3.7603353015553514e-09 - ArtUnc_40: -1.522549579025299e-11 - ArtUnc_41: -1.553079400463468e-08 - ArtUnc_42: 1.1200097112152992e-10 - ArtUnc_43: 3.320458370959093e-08 - ArtUnc_44: 1.612778691079218e-08 - ArtUnc_45: -1.9434751816654295e-10 - ArtUnc_46: 4.818719281818341e-09 - ArtUnc_47: -3.5936833342592e-10 - ArtUnc_48: -1.4452431492510908e-11 - ArtUnc_49: 1.156191469303947e-07 - ArtUnc_50: 3.095265809797049e-09 - ArtUnc_51: -1.990250058016618e-09 - ArtUnc_52: 1.0551540835680762e-09 - ArtUnc_53: 2.583986842251015e-11 - ArtUnc_54: -2.7359896160844426e-10 - ArtUnc_55: -1.714666851039895e-08 - ArtUnc_56: -9.346685172236354e-09 - ArtUnc_57: -2.2964573279275797e-09 - ArtUnc_58: -2.541050169654537e-08 - ArtUnc_59: 2.4527977931268276e-10 - ArtUnc_60: 4.26908642864609e-08 - ArtUnc_61: 1.0006795078580084e-10 - ArtUnc_62: -1.5073637832204924e-09 - ArtUnc_63: 3.8752541563071965e-11 - ArtUnc_64: -7.557892352678078e-08 - ArtUnc_65: -7.762771204776205e-09 - ArtUnc_66: 2.1676490443910404e-07 - ArtUnc_67: 3.088925173796808e-08 - ArtUnc_68: -3.7773234498553116e-08 - ArtUnc_69: -9.873502259301812e-09 - ArtUnc_70: 2.373128831845414e-07 - ArtUnc_71: 2.8574018820224212e-09 - ArtUnc_72: -7.728916750927325e-08 - ArtUnc_73: -1.8004829794967403e-08 - ArtUnc_74: 1.1896352758006183e-06 - ArtUnc_75: 2.2098648925167571e-07 - ArtUnc_76: 2.7860180711512064e-08 - ArtUnc_77: 7.187084774475774e-08 - ArtUnc_78: 2.2916415135354548e-06 - ArtUnc_79: -4.401578860181456e-06 - ArtUnc_80: 8.779094540533577e-08 - ArtUnc_81: -1.1345022521150932e-07 - ArtUnc_82: -1.1381576922669683e-08 - ArtUnc_83: 3.163933993362474e-07 - ArtUnc_84: -1.3329149678621743e-06 - ArtUnc_85: -2.135394470958957e-08 - ArtUnc_86: 5.592598844023283e-08 - ArtUnc_87: 1.0941707459513449e-07 - ArtUnc_88: 1.1376874495446983e-07 - ArtUnc_89: 2.6704569588183046e-06 - ArtUnc_90: -4.823102494690392e-07 - ArtUnc_91: 1.4649026332982186e-07 - ArtUnc_92: -8.784470317925978e-06 - ArtUnc_93: 3.280591100098844e-08 - ArtUnc_94: 1.8810024653809077e-07 - ArtUnc_95: -4.025966804622898e-07 - ArtUnc_96: -1.8317314419579824e-08 + RCES: 3.37506107e-06 + ElEn: 3.84844715e-06 + ElTh: 2.89852216e-06 + Lumi: 2.31770000e-06 + LArN: 1.80600000e-06 + StatMC: 1.31236000e-05 + RadErr: 6.86280000e-06 + Model_1: 6.19361901e-06 + Model_2: 6.19361901e-06 + ModelRW_1: 1.68142921e-06 + ModelRW_2: 1.68142921e-06 + JES_1: 1.45452586e-05 + JES_2: 1.45452586e-05 + ArtUnc_1: -1.90199913e-17 + ArtUnc_2: 1.05071574e-14 + ArtUnc_3: 7.40593612e-14 + ArtUnc_4: 4.15167829e-13 + ArtUnc_5: 1.46070480e-14 + ArtUnc_6: 3.98704333e-15 + ArtUnc_7: 2.98712344e-12 + ArtUnc_8: -1.28901101e-11 + ArtUnc_9: 1.93624877e-13 + ArtUnc_10: -1.91306588e-13 + ArtUnc_11: -3.40005105e-13 + ArtUnc_12: -3.65200292e-14 + ArtUnc_13: 7.17143966e-12 + ArtUnc_14: -1.22790639e-13 + ArtUnc_15: 5.06803038e-14 + ArtUnc_16: 1.81463515e-15 + ArtUnc_17: -2.58230368e-12 + ArtUnc_18: 7.73236434e-14 + ArtUnc_19: 1.03685990e-11 + ArtUnc_20: 2.53779484e-11 + ArtUnc_21: -1.83552546e-12 + ArtUnc_22: 3.23052715e-10 + ArtUnc_23: 6.57164996e-12 + ArtUnc_24: -1.31525641e-10 + ArtUnc_25: -2.58023256e-10 + ArtUnc_26: 5.44801600e-11 + ArtUnc_27: 9.18192849e-10 + ArtUnc_28: 4.26631133e-11 + ArtUnc_29: 2.12138107e-10 + ArtUnc_30: 1.23369259e-10 + ArtUnc_31: -5.05720663e-11 + ArtUnc_32: 1.98979108e-09 + ArtUnc_33: -5.96474338e-13 + ArtUnc_34: -4.22910221e-11 + ArtUnc_35: -6.37277150e-11 + ArtUnc_36: 8.99243854e-10 + ArtUnc_37: -2.82386918e-09 + ArtUnc_38: 5.02980541e-10 + ArtUnc_39: 3.76033530e-09 + ArtUnc_40: -1.52254958e-11 + ArtUnc_41: -1.55307940e-08 + ArtUnc_42: 1.12000971e-10 + ArtUnc_43: 3.32045837e-08 + ArtUnc_44: 1.61277869e-08 + ArtUnc_45: -1.94347518e-10 + ArtUnc_46: 4.81871928e-09 + ArtUnc_47: -3.59368333e-10 + ArtUnc_48: -1.44524315e-11 + ArtUnc_49: 1.15619147e-07 + ArtUnc_50: 3.09526581e-09 + ArtUnc_51: -1.99025006e-09 + ArtUnc_52: 1.05515408e-09 + ArtUnc_53: 2.58398684e-11 + ArtUnc_54: -2.73598962e-10 + ArtUnc_55: -1.71466685e-08 + ArtUnc_56: -9.34668517e-09 + ArtUnc_57: -2.29645733e-09 + ArtUnc_58: -2.54105017e-08 + ArtUnc_59: 2.45279779e-10 + ArtUnc_60: 4.26908643e-08 + ArtUnc_61: 1.00067951e-10 + ArtUnc_62: -1.50736378e-09 + ArtUnc_63: 3.87525416e-11 + ArtUnc_64: -7.55789235e-08 + ArtUnc_65: -7.76277120e-09 + ArtUnc_66: 2.16764904e-07 + ArtUnc_67: 3.08892517e-08 + ArtUnc_68: -3.77732345e-08 + ArtUnc_69: -9.87350226e-09 + ArtUnc_70: 2.37312883e-07 + ArtUnc_71: 2.85740188e-09 + ArtUnc_72: -7.72891675e-08 + ArtUnc_73: -1.80048298e-08 + ArtUnc_74: 1.18963528e-06 + ArtUnc_75: 2.20986489e-07 + ArtUnc_76: 2.78601807e-08 + ArtUnc_77: 7.18708477e-08 + ArtUnc_78: 2.29164151e-06 + ArtUnc_79: -4.40157886e-06 + ArtUnc_80: 8.77909454e-08 + ArtUnc_81: -1.13450225e-07 + ArtUnc_82: -1.13815769e-08 + ArtUnc_83: 3.16393399e-07 + ArtUnc_84: -1.33291497e-06 + ArtUnc_85: -2.13539447e-08 + ArtUnc_86: 5.59259884e-08 + ArtUnc_87: 1.09417075e-07 + ArtUnc_88: 1.13768745e-07 + ArtUnc_89: 2.67045696e-06 + ArtUnc_90: -4.82310249e-07 + ArtUnc_91: 1.46490263e-07 + ArtUnc_92: -8.78447032e-06 + ArtUnc_93: 3.28059110e-08 + ArtUnc_94: 1.88100247e-07 + ArtUnc_95: -4.02596680e-07 + ArtUnc_96: -1.83173144e-08 - stat: 0 Uncorr: 4.54e-07 - RCES: 1.5528923831354185e-06 - ElEn: 1.5157261025330401e-06 - ElTh: 1.0376259140942847e-06 - Lumi: 3.4958e-07 - LArN: 2.7240000000000003e-07 - StatMC: 7.0143e-06 - RadErr: 2.9283e-06 - Model_1: 4.937387241770692e-06 - Model_2: 4.937387241770692e-06 - ModelRW_1: 6.33706268872259e-06 - ModelRW_2: 6.33706268872259e-06 - JES_1: 1.4205802554414165e-06 - JES_2: 1.4205802554414165e-06 - ArtUnc_1: 2.35927203457836e-20 - ArtUnc_2: -5.922629161146333e-18 - ArtUnc_3: -1.8819435998532412e-17 - ArtUnc_4: 3.158187577786074e-17 - ArtUnc_5: 1.5937576017366522e-18 - ArtUnc_6: 3.289342185321362e-18 - ArtUnc_7: 1.2239723672715737e-15 - ArtUnc_8: -2.2074775992870183e-14 - ArtUnc_9: 6.704927999036726e-16 - ArtUnc_10: 2.7699408858070488e-14 - ArtUnc_11: -5.873909050903443e-14 - ArtUnc_12: -4.664676081797592e-15 - ArtUnc_13: -3.2082494641071664e-14 - ArtUnc_14: -2.7683369430503856e-15 - ArtUnc_15: 7.564761722243567e-15 - ArtUnc_16: -4.898938440266008e-16 - ArtUnc_17: -7.0621030270174545e-15 - ArtUnc_18: 5.255133824119982e-16 - ArtUnc_19: 1.636309256674278e-14 - ArtUnc_20: -2.388984636576834e-13 - ArtUnc_21: 2.0807479147216883e-14 - ArtUnc_22: -5.297202828927104e-12 - ArtUnc_23: -1.9082778121082117e-13 - ArtUnc_24: 6.039201406219987e-12 - ArtUnc_25: 2.6715907554250054e-12 - ArtUnc_26: -2.7966393291241113e-13 - ArtUnc_27: -1.9072862813516748e-11 - ArtUnc_28: -3.1805753329792926e-13 - ArtUnc_29: 2.342851279537203e-12 - ArtUnc_30: -2.1374606682004223e-13 - ArtUnc_31: 1.0815260616289436e-13 - ArtUnc_32: -1.9686397571900833e-11 - ArtUnc_33: -1.5636800167330968e-14 - ArtUnc_34: 4.9413977886084574e-12 - ArtUnc_35: 3.43431542246607e-12 - ArtUnc_36: -4.797358782039034e-11 - ArtUnc_37: 5.773888609003612e-11 - ArtUnc_38: -9.251216849801803e-12 - ArtUnc_39: -6.909058451839399e-11 - ArtUnc_40: 1.6925117406345058e-12 - ArtUnc_41: 3.7053698468647157e-10 - ArtUnc_42: 1.855392905824653e-11 - ArtUnc_43: -4.846323282584783e-10 - ArtUnc_44: -3.327459492762007e-11 - ArtUnc_45: 7.597393152306623e-13 - ArtUnc_46: -6.897334913058715e-11 - ArtUnc_47: 1.5566079258656675e-10 - ArtUnc_48: -7.485089687541113e-12 - ArtUnc_49: -4.1862286539354177e-10 - ArtUnc_50: 6.302238876174077e-11 - ArtUnc_51: -9.653027877636256e-10 - ArtUnc_52: 5.72165799063931e-10 - ArtUnc_53: -2.489573684983785e-11 - ArtUnc_54: -7.617696381330824e-11 - ArtUnc_55: -1.3478870594901272e-08 - ArtUnc_56: 1.2402321011988667e-08 - ArtUnc_57: 3.5571456105850805e-09 - ArtUnc_58: -2.556150908248414e-08 - ArtUnc_59: -1.2383163719166848e-10 - ArtUnc_60: -3.2222219760101495e-08 - ArtUnc_61: -5.2251288050979926e-12 - ArtUnc_62: -8.97457198223341e-10 - ArtUnc_63: 9.440574608420388e-11 - ArtUnc_64: -2.448031875497111e-08 - ArtUnc_65: 1.042472983643038e-09 - ArtUnc_66: -3.5166796463923804e-08 - ArtUnc_67: 3.52988122038554e-10 - ArtUnc_68: 1.992668957386929e-09 - ArtUnc_69: -3.938321250102191e-10 - ArtUnc_70: 9.539111780811317e-09 - ArtUnc_71: 2.266615073220808e-10 - ArtUnc_72: 4.3344959477670267e-08 - ArtUnc_73: 3.439910778665954e-09 - ArtUnc_74: 3.766214542747073e-08 - ArtUnc_75: -8.853833025974996e-08 - ArtUnc_76: -5.07855697525207e-10 - ArtUnc_77: 2.6350754104537003e-09 - ArtUnc_78: -5.219583627350703e-08 - ArtUnc_79: -1.9286320867927353e-07 - ArtUnc_80: 2.0279690969114773e-09 - ArtUnc_81: -7.292739062847744e-09 - ArtUnc_82: -5.170141903927744e-10 - ArtUnc_83: 2.2541666134281235e-08 - ArtUnc_84: -3.9693062371755816e-08 - ArtUnc_85: 2.686872478207075e-06 - ArtUnc_86: 4.141473619815568e-07 - ArtUnc_87: 7.862979078955503e-07 - ArtUnc_88: 1.1721011470516791e-08 - ArtUnc_89: 4.4423448886381265e-08 - ArtUnc_90: 2.651165675700547e-07 - ArtUnc_91: -1.6784554078079242e-06 - ArtUnc_92: -1.550500835139394e-08 - ArtUnc_93: 1.9257018402611466e-08 - ArtUnc_94: 2.2281251523428708e-08 - ArtUnc_95: -8.447286155149897e-07 - ArtUnc_96: -1.7506003847933434e-07 + RCES: 1.55289238e-06 + ElEn: 1.51572610e-06 + ElTh: 1.03762591e-06 + Lumi: 3.49580000e-07 + LArN: 2.72400000e-07 + StatMC: 7.01430000e-06 + RadErr: 2.92830000e-06 + Model_1: 4.93738724e-06 + Model_2: 4.93738724e-06 + ModelRW_1: 6.33706269e-06 + ModelRW_2: 6.33706269e-06 + JES_1: 1.42058026e-06 + JES_2: 1.42058026e-06 + ArtUnc_1: 2.35927203e-20 + ArtUnc_2: -5.92262916e-18 + ArtUnc_3: -1.88194360e-17 + ArtUnc_4: 3.15818758e-17 + ArtUnc_5: 1.59375760e-18 + ArtUnc_6: 3.28934219e-18 + ArtUnc_7: 1.22397237e-15 + ArtUnc_8: -2.20747760e-14 + ArtUnc_9: 6.70492800e-16 + ArtUnc_10: 2.76994089e-14 + ArtUnc_11: -5.87390905e-14 + ArtUnc_12: -4.66467608e-15 + ArtUnc_13: -3.20824946e-14 + ArtUnc_14: -2.76833694e-15 + ArtUnc_15: 7.56476172e-15 + ArtUnc_16: -4.89893844e-16 + ArtUnc_17: -7.06210303e-15 + ArtUnc_18: 5.25513382e-16 + ArtUnc_19: 1.63630926e-14 + ArtUnc_20: -2.38898464e-13 + ArtUnc_21: 2.08074791e-14 + ArtUnc_22: -5.29720283e-12 + ArtUnc_23: -1.90827781e-13 + ArtUnc_24: 6.03920141e-12 + ArtUnc_25: 2.67159076e-12 + ArtUnc_26: -2.79663933e-13 + ArtUnc_27: -1.90728628e-11 + ArtUnc_28: -3.18057533e-13 + ArtUnc_29: 2.34285128e-12 + ArtUnc_30: -2.13746067e-13 + ArtUnc_31: 1.08152606e-13 + ArtUnc_32: -1.96863976e-11 + ArtUnc_33: -1.56368002e-14 + ArtUnc_34: 4.94139779e-12 + ArtUnc_35: 3.43431542e-12 + ArtUnc_36: -4.79735878e-11 + ArtUnc_37: 5.77388861e-11 + ArtUnc_38: -9.25121685e-12 + ArtUnc_39: -6.90905845e-11 + ArtUnc_40: 1.69251174e-12 + ArtUnc_41: 3.70536985e-10 + ArtUnc_42: 1.85539291e-11 + ArtUnc_43: -4.84632328e-10 + ArtUnc_44: -3.32745949e-11 + ArtUnc_45: 7.59739315e-13 + ArtUnc_46: -6.89733491e-11 + ArtUnc_47: 1.55660793e-10 + ArtUnc_48: -7.48508969e-12 + ArtUnc_49: -4.18622865e-10 + ArtUnc_50: 6.30223888e-11 + ArtUnc_51: -9.65302788e-10 + ArtUnc_52: 5.72165799e-10 + ArtUnc_53: -2.48957368e-11 + ArtUnc_54: -7.61769638e-11 + ArtUnc_55: -1.34788706e-08 + ArtUnc_56: 1.24023210e-08 + ArtUnc_57: 3.55714561e-09 + ArtUnc_58: -2.55615091e-08 + ArtUnc_59: -1.23831637e-10 + ArtUnc_60: -3.22222198e-08 + ArtUnc_61: -5.22512881e-12 + ArtUnc_62: -8.97457198e-10 + ArtUnc_63: 9.44057461e-11 + ArtUnc_64: -2.44803188e-08 + ArtUnc_65: 1.04247298e-09 + ArtUnc_66: -3.51667965e-08 + ArtUnc_67: 3.52988122e-10 + ArtUnc_68: 1.99266896e-09 + ArtUnc_69: -3.93832125e-10 + ArtUnc_70: 9.53911178e-09 + ArtUnc_71: 2.26661507e-10 + ArtUnc_72: 4.33449595e-08 + ArtUnc_73: 3.43991078e-09 + ArtUnc_74: 3.76621454e-08 + ArtUnc_75: -8.85383303e-08 + ArtUnc_76: -5.07855698e-10 + ArtUnc_77: 2.63507541e-09 + ArtUnc_78: -5.21958363e-08 + ArtUnc_79: -1.92863209e-07 + ArtUnc_80: 2.02796910e-09 + ArtUnc_81: -7.29273906e-09 + ArtUnc_82: -5.17014190e-10 + ArtUnc_83: 2.25416661e-08 + ArtUnc_84: -3.96930624e-08 + ArtUnc_85: 2.68687248e-06 + ArtUnc_86: 4.14147362e-07 + ArtUnc_87: 7.86297908e-07 + ArtUnc_88: 1.17210115e-08 + ArtUnc_89: 4.44234489e-08 + ArtUnc_90: 2.65116568e-07 + ArtUnc_91: -1.67845541e-06 + ArtUnc_92: -1.55050084e-08 + ArtUnc_93: 1.92570184e-08 + ArtUnc_94: 2.22812515e-08 + ArtUnc_95: -8.44728616e-07 + ArtUnc_96: -1.75060038e-07 - stat: 0 - Uncorr: 0.0005020000000000001 - RCES: 0.0022636470868048317 - ElEn: 0.0003115637026355927 - ElTh: 2.2867188283652192e-05 - Lumi: 0.00038654 - LArN: 0.0003012 - StatMC: 0.0009236800000000001 - RadErr: 0.00023594000000000002 - Model_1: 0.00046500756144389737 - Model_2: 0.00046500756144389737 - ModelRW_1: 2.4847732290895282e-05 - ModelRW_2: 2.4847732290895282e-05 - JES_1: 0.0011003995728825053 - JES_2: 0.0011003995728825053 - ArtUnc_1: -4.650512749355942e-09 - ArtUnc_2: 2.6150404338355495e-07 - ArtUnc_3: 5.12557246908968e-07 - ArtUnc_4: 1.0849380135812087e-06 - ArtUnc_5: 7.030184433999337e-08 - ArtUnc_6: -6.666096450952222e-08 - ArtUnc_7: 8.926475091343498e-06 - ArtUnc_8: -3.752463903315676e-05 - ArtUnc_9: -4.525940513413666e-06 - ArtUnc_10: 3.1467905590806244e-05 - ArtUnc_11: -2.0233147902406997e-05 - ArtUnc_12: 2.021947318951445e-06 - ArtUnc_13: -4.003287853094295e-05 - ArtUnc_14: 9.54290296203011e-06 - ArtUnc_15: -1.5817618089945295e-05 - ArtUnc_16: 5.069765305450733e-07 - ArtUnc_17: -1.0889155969046879e-05 - ArtUnc_18: 7.854719394652192e-07 - ArtUnc_19: 2.3706046886005644e-05 - ArtUnc_20: -1.9083074205274243e-05 - ArtUnc_21: 4.747888848597217e-07 - ArtUnc_22: 0.00016734295161063723 - ArtUnc_23: 1.8956321121513973e-06 - ArtUnc_24: 0.0001391234856377672 - ArtUnc_25: 0.00018799400387012392 - ArtUnc_26: 3.117946243289525e-05 - ArtUnc_27: 0.00021123077073010498 - ArtUnc_28: 2.693125101744767e-06 - ArtUnc_29: 0.0005732465940048262 - ArtUnc_30: 0.00012951670447777832 - ArtUnc_31: -5.386786433193626e-05 - ArtUnc_32: -0.0002279172775553063 - ArtUnc_33: 2.3810441821111926e-07 - ArtUnc_34: -7.330782394982886e-06 - ArtUnc_35: -1.7685369090595917e-05 - ArtUnc_36: -2.4724312944298536e-06 - ArtUnc_37: -1.4607163820264878e-05 - ArtUnc_38: 2.6176429082255432e-06 - ArtUnc_39: -6.607915967338914e-07 - ArtUnc_40: -5.1362874816051534e-08 - ArtUnc_41: 1.5135293048599083e-06 - ArtUnc_42: -3.930922079681527e-08 - ArtUnc_43: 1.3049128874402319e-06 - ArtUnc_44: -7.96030395165809e-06 - ArtUnc_45: 5.351476142624853e-08 - ArtUnc_46: -3.500460120766658e-07 - ArtUnc_47: -2.698530947205398e-07 - ArtUnc_48: 6.382660114578908e-09 - ArtUnc_49: 2.4341397056357427e-06 - ArtUnc_50: 4.81169572330774e-07 - ArtUnc_51: 2.879156312045966e-08 - ArtUnc_52: 1.933283862988446e-08 - ArtUnc_53: 5.698775424400118e-09 - ArtUnc_54: -1.2428319793269074e-08 - ArtUnc_55: 1.8299365598447446e-08 - ArtUnc_56: -9.683602000634305e-10 - ArtUnc_57: -2.008998975123179e-09 - ArtUnc_58: -4.09381063276111e-09 - ArtUnc_59: 7.913059982895237e-09 - ArtUnc_60: 6.358131181272643e-09 - ArtUnc_61: 3.316418941539378e-11 - ArtUnc_62: 4.826728173643972e-09 - ArtUnc_63: -5.171061553907083e-10 - ArtUnc_64: 3.34943184805511e-07 - ArtUnc_65: -1.1614407621026812e-08 - ArtUnc_66: -2.3340415670957435e-07 - ArtUnc_67: -4.714533807607662e-09 - ArtUnc_68: -5.125500757971282e-10 - ArtUnc_69: 2.5681759201689222e-11 - ArtUnc_70: -4.617791891797858e-10 - ArtUnc_71: -1.726956563111836e-11 - ArtUnc_72: -1.0426947546361144e-09 - ArtUnc_73: 1.3974946479052858e-10 - ArtUnc_74: -7.388353615932547e-11 - ArtUnc_75: 2.2023115713533785e-09 - ArtUnc_76: -3.238875632136181e-11 - ArtUnc_77: 1.683694432077045e-10 - ArtUnc_78: -2.3319062783790383e-09 - ArtUnc_79: 6.984125752352948e-10 - ArtUnc_80: 2.4210672858428407e-10 - ArtUnc_81: -1.0645104275344316e-10 - ArtUnc_82: 9.551534802832154e-12 - ArtUnc_83: 4.247721654093233e-11 - ArtUnc_84: 1.2581519448969144e-11 - ArtUnc_85: -2.853203139020557e-13 - ArtUnc_86: -7.1550686480950606e-12 - ArtUnc_87: -8.385559175981213e-12 - ArtUnc_88: 9.054072666771776e-12 - ArtUnc_89: 6.684767466884986e-11 - ArtUnc_90: 1.8249590088465067e-11 - ArtUnc_91: -1.3769282793509156e-12 - ArtUnc_92: -2.0830196938451975e-10 - ArtUnc_93: 1.474440598941191e-11 - ArtUnc_94: 2.8062288957760026e-12 - ArtUnc_95: -4.9037181482300245e-11 - ArtUnc_96: 1.1351687655157902e-11 + Uncorr: 5.02000000e-04 + RCES: 2.26364709e-03 + ElEn: 3.11563703e-04 + ElTh: 2.28671883e-05 + Lumi: 3.86540000e-04 + LArN: 3.01200000e-04 + StatMC: 9.23680000e-04 + RadErr: 2.35940000e-04 + Model_1: 4.65007561e-04 + Model_2: 4.65007561e-04 + ModelRW_1: 2.48477323e-05 + ModelRW_2: 2.48477323e-05 + JES_1: 1.10039957e-03 + JES_2: 1.10039957e-03 + ArtUnc_1: -4.65051275e-09 + ArtUnc_2: 2.61504043e-07 + ArtUnc_3: 5.12557247e-07 + ArtUnc_4: 1.08493801e-06 + ArtUnc_5: 7.03018443e-08 + ArtUnc_6: -6.66609645e-08 + ArtUnc_7: 8.92647509e-06 + ArtUnc_8: -3.75246390e-05 + ArtUnc_9: -4.52594051e-06 + ArtUnc_10: 3.14679056e-05 + ArtUnc_11: -2.02331479e-05 + ArtUnc_12: 2.02194732e-06 + ArtUnc_13: -4.00328785e-05 + ArtUnc_14: 9.54290296e-06 + ArtUnc_15: -1.58176181e-05 + ArtUnc_16: 5.06976531e-07 + ArtUnc_17: -1.08891560e-05 + ArtUnc_18: 7.85471939e-07 + ArtUnc_19: 2.37060469e-05 + ArtUnc_20: -1.90830742e-05 + ArtUnc_21: 4.74788885e-07 + ArtUnc_22: 1.67342952e-04 + ArtUnc_23: 1.89563211e-06 + ArtUnc_24: 1.39123486e-04 + ArtUnc_25: 1.87994004e-04 + ArtUnc_26: 3.11794624e-05 + ArtUnc_27: 2.11230771e-04 + ArtUnc_28: 2.69312510e-06 + ArtUnc_29: 5.73246594e-04 + ArtUnc_30: 1.29516704e-04 + ArtUnc_31: -5.38678643e-05 + ArtUnc_32: -2.27917278e-04 + ArtUnc_33: 2.38104418e-07 + ArtUnc_34: -7.33078239e-06 + ArtUnc_35: -1.76853691e-05 + ArtUnc_36: -2.47243129e-06 + ArtUnc_37: -1.46071638e-05 + ArtUnc_38: 2.61764291e-06 + ArtUnc_39: -6.60791597e-07 + ArtUnc_40: -5.13628748e-08 + ArtUnc_41: 1.51352930e-06 + ArtUnc_42: -3.93092208e-08 + ArtUnc_43: 1.30491289e-06 + ArtUnc_44: -7.96030395e-06 + ArtUnc_45: 5.35147614e-08 + ArtUnc_46: -3.50046012e-07 + ArtUnc_47: -2.69853095e-07 + ArtUnc_48: 6.38266011e-09 + ArtUnc_49: 2.43413971e-06 + ArtUnc_50: 4.81169572e-07 + ArtUnc_51: 2.87915631e-08 + ArtUnc_52: 1.93328386e-08 + ArtUnc_53: 5.69877542e-09 + ArtUnc_54: -1.24283198e-08 + ArtUnc_55: 1.82993656e-08 + ArtUnc_56: -9.68360200e-10 + ArtUnc_57: -2.00899898e-09 + ArtUnc_58: -4.09381063e-09 + ArtUnc_59: 7.91305998e-09 + ArtUnc_60: 6.35813118e-09 + ArtUnc_61: 3.31641894e-11 + ArtUnc_62: 4.82672817e-09 + ArtUnc_63: -5.17106155e-10 + ArtUnc_64: 3.34943185e-07 + ArtUnc_65: -1.16144076e-08 + ArtUnc_66: -2.33404157e-07 + ArtUnc_67: -4.71453381e-09 + ArtUnc_68: -5.12550076e-10 + ArtUnc_69: 2.56817592e-11 + ArtUnc_70: -4.61779189e-10 + ArtUnc_71: -1.72695656e-11 + ArtUnc_72: -1.04269475e-09 + ArtUnc_73: 1.39749465e-10 + ArtUnc_74: -7.38835362e-11 + ArtUnc_75: 2.20231157e-09 + ArtUnc_76: -3.23887563e-11 + ArtUnc_77: 1.68369443e-10 + ArtUnc_78: -2.33190628e-09 + ArtUnc_79: 6.98412575e-10 + ArtUnc_80: 2.42106729e-10 + ArtUnc_81: -1.06451043e-10 + ArtUnc_82: 9.55153480e-12 + ArtUnc_83: 4.24772165e-11 + ArtUnc_84: 1.25815194e-11 + ArtUnc_85: -2.85320314e-13 + ArtUnc_86: -7.15506865e-12 + ArtUnc_87: -8.38555918e-12 + ArtUnc_88: 9.05407267e-12 + ArtUnc_89: 6.68476747e-11 + ArtUnc_90: 1.82495901e-11 + ArtUnc_91: -1.37692828e-12 + ArtUnc_92: -2.08301969e-10 + ArtUnc_93: 1.47444060e-11 + ArtUnc_94: 2.80622890e-12 + ArtUnc_95: -4.90371815e-11 + ArtUnc_96: 1.13516877e-11 - stat: 0 Uncorr: 0.000424 - RCES: 0.00015014629665762656 - ElEn: 0.00022639376669864392 - ElTh: 6.402259601109596e-05 - Lumi: 0.00032648000000000003 - LArN: 0.0002544 - StatMC: 0.00029256 - RadErr: 0.00011024000000000002 - Model_1: 0.0008634622326425169 - Model_2: 0.0008634622326425169 - ModelRW_1: 0.0008454734361291311 - ModelRW_2: 0.0008454734361291311 - JES_1: 0.0004163628187050328 - JES_2: 0.0004163628187050328 - ArtUnc_1: 5.471569996118318e-10 - ArtUnc_2: -2.1548459534153544e-08 - ArtUnc_3: 1.6107173820174696e-09 - ArtUnc_4: 1.879064311830434e-07 - ArtUnc_5: 1.050117042374516e-09 - ArtUnc_6: 1.4980021086434547e-08 - ArtUnc_7: 1.0716030983489342e-06 - ArtUnc_8: -5.8520277451735335e-06 - ArtUnc_9: 7.491192402186086e-07 - ArtUnc_10: -8.052950538988503e-08 - ArtUnc_11: -5.725234485220118e-06 - ArtUnc_12: -9.685501549661442e-07 - ArtUnc_13: -1.3424257850248628e-06 - ArtUnc_14: -9.956049613002278e-07 - ArtUnc_15: 5.29772550663397e-07 - ArtUnc_16: 1.6738377684272918e-08 - ArtUnc_17: -3.582507838237691e-07 - ArtUnc_18: -1.264727437334715e-08 - ArtUnc_19: 1.233662996663388e-06 - ArtUnc_20: 8.403154663435293e-07 - ArtUnc_21: 6.79129868143396e-07 - ArtUnc_22: -1.776150220884529e-06 - ArtUnc_23: -4.784905450229317e-07 - ArtUnc_24: -5.169696883145389e-06 - ArtUnc_25: 2.8213503257829692e-05 - ArtUnc_26: -6.758352126525302e-06 - ArtUnc_27: -1.9482452456984413e-05 - ArtUnc_28: -1.8615587928710915e-07 - ArtUnc_29: 4.94000286483612e-06 - ArtUnc_30: 2.595975163818299e-06 - ArtUnc_31: -1.076324800799102e-06 - ArtUnc_32: -3.2874259781786615e-05 - ArtUnc_33: -3.299468307382029e-08 - ArtUnc_34: -1.2349402662050923e-06 - ArtUnc_35: -6.191515490195612e-06 - ArtUnc_36: -2.7249485883079676e-06 - ArtUnc_37: -5.989822561698278e-05 - ArtUnc_38: 1.040363962746263e-05 - ArtUnc_39: 7.720196274664037e-05 - ArtUnc_40: 1.5220534773987657e-06 - ArtUnc_41: 1.70937927886724e-05 - ArtUnc_42: 8.114505195690131e-07 - ArtUnc_43: -1.371526883447847e-05 - ArtUnc_44: 0.00024620974445310794 - ArtUnc_45: -1.2730256982223254e-06 - ArtUnc_46: 1.1643913116449547e-05 - ArtUnc_47: 1.6299789140107506e-06 - ArtUnc_48: -2.2809295116473704e-07 - ArtUnc_49: -3.634576712612296e-05 - ArtUnc_50: -2.4422571255481782e-06 - ArtUnc_51: -6.822122723981085e-08 - ArtUnc_52: 5.976234737191589e-08 - ArtUnc_53: -1.8446310222813494e-08 - ArtUnc_54: 2.4751852109216145e-08 - ArtUnc_55: 1.1310038013260833e-06 - ArtUnc_56: 1.0759820264168969e-06 - ArtUnc_57: 3.0780950207694145e-07 - ArtUnc_58: 6.812023712735847e-07 - ArtUnc_59: -7.960672216219715e-09 - ArtUnc_60: -5.267916630689513e-07 - ArtUnc_61: -3.399701646687149e-10 - ArtUnc_62: -6.6656039128050465e-09 - ArtUnc_63: 7.138800656368192e-10 - ArtUnc_64: -2.4775857851850117e-06 - ArtUnc_65: 3.624287910535524e-08 - ArtUnc_66: 1.8384640130182134e-06 - ArtUnc_67: 2.7181424246913548e-08 - ArtUnc_68: -2.8193276372482016e-08 - ArtUnc_69: -5.42760780524532e-10 - ArtUnc_70: 3.0846613497465428e-09 - ArtUnc_71: -5.4471592197849197e-11 - ArtUnc_72: -2.1302205731503017e-08 - ArtUnc_73: -8.471531075724741e-10 - ArtUnc_74: -1.1628840669622942e-08 - ArtUnc_75: 1.7170116614500534e-08 - ArtUnc_76: -2.341536895472736e-10 - ArtUnc_77: -2.7783117168958113e-10 - ArtUnc_78: 3.260211955439682e-08 - ArtUnc_79: 1.046351715994512e-08 - ArtUnc_80: -3.450248147908177e-10 - ArtUnc_81: 7.482156465457119e-10 - ArtUnc_82: 3.8370527796884825e-11 - ArtUnc_83: -3.247121662728555e-11 - ArtUnc_84: -1.4283148435103424e-09 - ArtUnc_85: 2.3167662235587087e-11 - ArtUnc_86: 6.903485286946707e-11 - ArtUnc_87: 6.463824938400358e-11 - ArtUnc_88: 6.4133573585991416e-12 - ArtUnc_89: 3.6365934066034854e-10 - ArtUnc_90: -2.5940032189813645e-10 - ArtUnc_91: 6.457000917868311e-11 - ArtUnc_92: 1.2350529808450879e-09 - ArtUnc_93: -1.151435439701838e-11 - ArtUnc_94: -3.2150143351094645e-11 - ArtUnc_95: -9.747009492310879e-11 - ArtUnc_96: -6.133126016765184e-11 + RCES: 1.50146297e-04 + ElEn: 2.26393767e-04 + ElTh: 6.40225960e-05 + Lumi: 3.26480000e-04 + LArN: 2.54400000e-04 + StatMC: 2.92560000e-04 + RadErr: 1.10240000e-04 + Model_1: 8.63462233e-04 + Model_2: 8.63462233e-04 + ModelRW_1: 8.45473436e-04 + ModelRW_2: 8.45473436e-04 + JES_1: 4.16362819e-04 + JES_2: 4.16362819e-04 + ArtUnc_1: 5.47157000e-10 + ArtUnc_2: -2.15484595e-08 + ArtUnc_3: 1.61071738e-09 + ArtUnc_4: 1.87906431e-07 + ArtUnc_5: 1.05011704e-09 + ArtUnc_6: 1.49800211e-08 + ArtUnc_7: 1.07160310e-06 + ArtUnc_8: -5.85202775e-06 + ArtUnc_9: 7.49119240e-07 + ArtUnc_10: -8.05295054e-08 + ArtUnc_11: -5.72523449e-06 + ArtUnc_12: -9.68550155e-07 + ArtUnc_13: -1.34242579e-06 + ArtUnc_14: -9.95604961e-07 + ArtUnc_15: 5.29772551e-07 + ArtUnc_16: 1.67383777e-08 + ArtUnc_17: -3.58250784e-07 + ArtUnc_18: -1.26472744e-08 + ArtUnc_19: 1.23366300e-06 + ArtUnc_20: 8.40315466e-07 + ArtUnc_21: 6.79129868e-07 + ArtUnc_22: -1.77615022e-06 + ArtUnc_23: -4.78490545e-07 + ArtUnc_24: -5.16969688e-06 + ArtUnc_25: 2.82135033e-05 + ArtUnc_26: -6.75835213e-06 + ArtUnc_27: -1.94824525e-05 + ArtUnc_28: -1.86155879e-07 + ArtUnc_29: 4.94000286e-06 + ArtUnc_30: 2.59597516e-06 + ArtUnc_31: -1.07632480e-06 + ArtUnc_32: -3.28742598e-05 + ArtUnc_33: -3.29946831e-08 + ArtUnc_34: -1.23494027e-06 + ArtUnc_35: -6.19151549e-06 + ArtUnc_36: -2.72494859e-06 + ArtUnc_37: -5.98982256e-05 + ArtUnc_38: 1.04036396e-05 + ArtUnc_39: 7.72019627e-05 + ArtUnc_40: 1.52205348e-06 + ArtUnc_41: 1.70937928e-05 + ArtUnc_42: 8.11450520e-07 + ArtUnc_43: -1.37152688e-05 + ArtUnc_44: 2.46209744e-04 + ArtUnc_45: -1.27302570e-06 + ArtUnc_46: 1.16439131e-05 + ArtUnc_47: 1.62997891e-06 + ArtUnc_48: -2.28092951e-07 + ArtUnc_49: -3.63457671e-05 + ArtUnc_50: -2.44225713e-06 + ArtUnc_51: -6.82212272e-08 + ArtUnc_52: 5.97623474e-08 + ArtUnc_53: -1.84463102e-08 + ArtUnc_54: 2.47518521e-08 + ArtUnc_55: 1.13100380e-06 + ArtUnc_56: 1.07598203e-06 + ArtUnc_57: 3.07809502e-07 + ArtUnc_58: 6.81202371e-07 + ArtUnc_59: -7.96067222e-09 + ArtUnc_60: -5.26791663e-07 + ArtUnc_61: -3.39970165e-10 + ArtUnc_62: -6.66560391e-09 + ArtUnc_63: 7.13880066e-10 + ArtUnc_64: -2.47758579e-06 + ArtUnc_65: 3.62428791e-08 + ArtUnc_66: 1.83846401e-06 + ArtUnc_67: 2.71814242e-08 + ArtUnc_68: -2.81932764e-08 + ArtUnc_69: -5.42760781e-10 + ArtUnc_70: 3.08466135e-09 + ArtUnc_71: -5.44715922e-11 + ArtUnc_72: -2.13022057e-08 + ArtUnc_73: -8.47153108e-10 + ArtUnc_74: -1.16288407e-08 + ArtUnc_75: 1.71701166e-08 + ArtUnc_76: -2.34153690e-10 + ArtUnc_77: -2.77831172e-10 + ArtUnc_78: 3.26021196e-08 + ArtUnc_79: 1.04635172e-08 + ArtUnc_80: -3.45024815e-10 + ArtUnc_81: 7.48215647e-10 + ArtUnc_82: 3.83705278e-11 + ArtUnc_83: -3.24712166e-11 + ArtUnc_84: -1.42831484e-09 + ArtUnc_85: 2.31676622e-11 + ArtUnc_86: 6.90348529e-11 + ArtUnc_87: 6.46382494e-11 + ArtUnc_88: 6.41335736e-12 + ArtUnc_89: 3.63659341e-10 + ArtUnc_90: -2.59400322e-10 + ArtUnc_91: 6.45700092e-11 + ArtUnc_92: 1.23505298e-09 + ArtUnc_93: -1.15143544e-11 + ArtUnc_94: -3.21501434e-11 + ArtUnc_95: -9.74700949e-11 + ArtUnc_96: -6.13312602e-11 - stat: 0 Uncorr: 0.000121 - RCES: 0.00010638886725123075 - ElEn: 9.141708155481666e-05 - ElTh: 1.8539079669713917e-05 - Lumi: 9.317e-05 - LArN: 7.259999999999999e-05 - StatMC: 8.832999999999999e-05 - RadErr: 5.082e-05 - Model_1: 0.00020962180528275203 - Model_2: 0.00020962180528275203 - ModelRW_1: 0.0003080157138848601 - ModelRW_2: 0.0003080157138848601 - JES_1: 0.000297013719127585 - JES_2: 0.000297013719127585 - ArtUnc_1: 3.72574843754151e-13 - ArtUnc_2: -5.5762134156865614e-11 - ArtUnc_3: -1.8792997287274888e-10 - ArtUnc_4: -4.5867840932993047e-10 - ArtUnc_5: -1.4436446732121365e-11 - ArtUnc_6: 1.867396902546295e-11 - ArtUnc_7: -2.3048097772345663e-09 - ArtUnc_8: 7.845765890473015e-10 - ArtUnc_9: 1.977290840908495e-09 - ArtUnc_10: -1.1619921967779412e-08 - ArtUnc_11: -3.343505219064145e-09 - ArtUnc_12: -1.858073969329258e-09 - ArtUnc_13: 6.893470512185661e-08 - ArtUnc_14: -8.552736714474256e-09 - ArtUnc_15: 1.584680464086288e-08 - ArtUnc_16: -4.681586319467342e-10 - ArtUnc_17: 2.577357061816638e-08 - ArtUnc_18: -1.3883467658975774e-09 - ArtUnc_19: -1.0772612664045383e-07 - ArtUnc_20: 9.127921594949682e-08 - ArtUnc_21: -6.69780382479327e-11 - ArtUnc_22: -1.1270512654920153e-07 - ArtUnc_23: -1.33234118677314e-09 - ArtUnc_24: -1.555632830104435e-06 - ArtUnc_25: 7.606353978765029e-07 - ArtUnc_26: -3.851083482718545e-07 - ArtUnc_27: -1.4525484734098774e-06 - ArtUnc_28: -5.0885052975844806e-08 - ArtUnc_29: -1.61172054026889e-06 - ArtUnc_30: -4.1133548073345233e-07 - ArtUnc_31: 1.6983994409471313e-07 - ArtUnc_32: 1.6892305922854216e-06 - ArtUnc_33: -1.457067664224312e-10 - ArtUnc_34: 8.989143287517297e-08 - ArtUnc_35: -8.88695551901891e-08 - ArtUnc_36: -7.18178209779854e-07 - ArtUnc_37: -2.0778125037738755e-06 - ArtUnc_38: 3.6391782595336935e-07 - ArtUnc_39: 2.7286713820166425e-06 - ArtUnc_40: 5.455195979650584e-08 - ArtUnc_41: 7.549069678202054e-06 - ArtUnc_42: 7.453588459557469e-08 - ArtUnc_43: -1.1101608282611014e-05 - ArtUnc_44: 2.001257463619583e-06 - ArtUnc_45: -2.7433672163892875e-08 - ArtUnc_46: -9.517229932447282e-07 - ArtUnc_47: 5.589666364914897e-07 - ArtUnc_48: -2.4944416287900184e-08 - ArtUnc_49: -2.347177907621313e-05 - ArtUnc_50: -1.4282041253317663e-06 - ArtUnc_51: 4.788002977745001e-07 - ArtUnc_52: 8.903094382816588e-07 - ArtUnc_53: -1.2459460515372746e-07 - ArtUnc_54: 8.14925320564319e-08 - ArtUnc_55: 1.2594223585421794e-05 - ArtUnc_56: 1.4274865327025676e-05 - ArtUnc_57: 4.174072422605024e-06 - ArtUnc_58: 2.230354844345179e-05 - ArtUnc_59: -2.190809742086046e-07 - ArtUnc_60: -1.8910934551201536e-05 - ArtUnc_61: -1.094479673965532e-08 - ArtUnc_62: -6.893892056174763e-08 - ArtUnc_63: 5.82376697707184e-09 - ArtUnc_64: 5.660326229221998e-05 - ArtUnc_65: -8.015406273538802e-07 - ArtUnc_66: -3.968347141017291e-05 - ArtUnc_67: -5.263076671626725e-07 - ArtUnc_68: 3.5855468780181044e-07 - ArtUnc_69: 1.0173186218331753e-08 - ArtUnc_70: -1.2295317660275172e-07 - ArtUnc_71: -2.4793314171900886e-09 - ArtUnc_72: -6.571712548162341e-07 - ArtUnc_73: -4.7783870276875176e-08 - ArtUnc_74: -1.005910223108769e-07 - ArtUnc_75: 8.417761885970648e-07 - ArtUnc_76: 8.396096597475887e-09 - ArtUnc_77: 7.423005449611018e-09 - ArtUnc_78: -1.1325365974715549e-07 - ArtUnc_79: -4.231882205546767e-08 - ArtUnc_80: 6.129071591428702e-09 - ArtUnc_81: -9.456587992687747e-09 - ArtUnc_82: -1.5188352334206963e-10 - ArtUnc_83: 5.014588526357662e-09 - ArtUnc_84: -1.1798190978592541e-08 - ArtUnc_85: -2.631729931570385e-10 - ArtUnc_86: 1.9245738468918398e-11 - ArtUnc_87: 2.5939757535041884e-10 - ArtUnc_88: 1.2062301518547448e-09 - ArtUnc_89: 2.027714838316177e-08 - ArtUnc_90: -3.0170830838406754e-09 - ArtUnc_91: -1.0921148670096631e-09 - ArtUnc_92: -2.351887988493733e-08 - ArtUnc_93: 4.3944548208894744e-10 - ArtUnc_94: 3.7330271507787496e-10 - ArtUnc_95: -3.296110908263646e-09 - ArtUnc_96: 4.3659842526486204e-11 + RCES: 1.06388867e-04 + ElEn: 9.14170816e-05 + ElTh: 1.85390797e-05 + Lumi: 9.31700000e-05 + LArN: 7.26000000e-05 + StatMC: 8.83300000e-05 + RadErr: 5.08200000e-05 + Model_1: 2.09621805e-04 + Model_2: 2.09621805e-04 + ModelRW_1: 3.08015714e-04 + ModelRW_2: 3.08015714e-04 + JES_1: 2.97013719e-04 + JES_2: 2.97013719e-04 + ArtUnc_1: 3.72574844e-13 + ArtUnc_2: -5.57621342e-11 + ArtUnc_3: -1.87929973e-10 + ArtUnc_4: -4.58678409e-10 + ArtUnc_5: -1.44364467e-11 + ArtUnc_6: 1.86739690e-11 + ArtUnc_7: -2.30480978e-09 + ArtUnc_8: 7.84576589e-10 + ArtUnc_9: 1.97729084e-09 + ArtUnc_10: -1.16199220e-08 + ArtUnc_11: -3.34350522e-09 + ArtUnc_12: -1.85807397e-09 + ArtUnc_13: 6.89347051e-08 + ArtUnc_14: -8.55273671e-09 + ArtUnc_15: 1.58468046e-08 + ArtUnc_16: -4.68158632e-10 + ArtUnc_17: 2.57735706e-08 + ArtUnc_18: -1.38834677e-09 + ArtUnc_19: -1.07726127e-07 + ArtUnc_20: 9.12792159e-08 + ArtUnc_21: -6.69780382e-11 + ArtUnc_22: -1.12705127e-07 + ArtUnc_23: -1.33234119e-09 + ArtUnc_24: -1.55563283e-06 + ArtUnc_25: 7.60635398e-07 + ArtUnc_26: -3.85108348e-07 + ArtUnc_27: -1.45254847e-06 + ArtUnc_28: -5.08850530e-08 + ArtUnc_29: -1.61172054e-06 + ArtUnc_30: -4.11335481e-07 + ArtUnc_31: 1.69839944e-07 + ArtUnc_32: 1.68923059e-06 + ArtUnc_33: -1.45706766e-10 + ArtUnc_34: 8.98914329e-08 + ArtUnc_35: -8.88695552e-08 + ArtUnc_36: -7.18178210e-07 + ArtUnc_37: -2.07781250e-06 + ArtUnc_38: 3.63917826e-07 + ArtUnc_39: 2.72867138e-06 + ArtUnc_40: 5.45519598e-08 + ArtUnc_41: 7.54906968e-06 + ArtUnc_42: 7.45358846e-08 + ArtUnc_43: -1.11016083e-05 + ArtUnc_44: 2.00125746e-06 + ArtUnc_45: -2.74336722e-08 + ArtUnc_46: -9.51722993e-07 + ArtUnc_47: 5.58966636e-07 + ArtUnc_48: -2.49444163e-08 + ArtUnc_49: -2.34717791e-05 + ArtUnc_50: -1.42820413e-06 + ArtUnc_51: 4.78800298e-07 + ArtUnc_52: 8.90309438e-07 + ArtUnc_53: -1.24594605e-07 + ArtUnc_54: 8.14925321e-08 + ArtUnc_55: 1.25942236e-05 + ArtUnc_56: 1.42748653e-05 + ArtUnc_57: 4.17407242e-06 + ArtUnc_58: 2.23035484e-05 + ArtUnc_59: -2.19080974e-07 + ArtUnc_60: -1.89109346e-05 + ArtUnc_61: -1.09447967e-08 + ArtUnc_62: -6.89389206e-08 + ArtUnc_63: 5.82376698e-09 + ArtUnc_64: 5.66032623e-05 + ArtUnc_65: -8.01540627e-07 + ArtUnc_66: -3.96834714e-05 + ArtUnc_67: -5.26307667e-07 + ArtUnc_68: 3.58554688e-07 + ArtUnc_69: 1.01731862e-08 + ArtUnc_70: -1.22953177e-07 + ArtUnc_71: -2.47933142e-09 + ArtUnc_72: -6.57171255e-07 + ArtUnc_73: -4.77838703e-08 + ArtUnc_74: -1.00591022e-07 + ArtUnc_75: 8.41776189e-07 + ArtUnc_76: 8.39609660e-09 + ArtUnc_77: 7.42300545e-09 + ArtUnc_78: -1.13253660e-07 + ArtUnc_79: -4.23188221e-08 + ArtUnc_80: 6.12907159e-09 + ArtUnc_81: -9.45658799e-09 + ArtUnc_82: -1.51883523e-10 + ArtUnc_83: 5.01458853e-09 + ArtUnc_84: -1.17981910e-08 + ArtUnc_85: -2.63172993e-10 + ArtUnc_86: 1.92457385e-11 + ArtUnc_87: 2.59397575e-10 + ArtUnc_88: 1.20623015e-09 + ArtUnc_89: 2.02771484e-08 + ArtUnc_90: -3.01708308e-09 + ArtUnc_91: -1.09211487e-09 + ArtUnc_92: -2.35188799e-08 + ArtUnc_93: 4.39445482e-10 + ArtUnc_94: 3.73302715e-10 + ArtUnc_95: -3.29611091e-09 + ArtUnc_96: 4.36598425e-11 - stat: 0 Uncorr: 2.47e-05 - RCES: 3.4310780579870227e-05 - ElEn: 1.4985797576372102e-05 - ElTh: 8.494609746774717e-06 - Lumi: 1.9019e-05 - LArN: 1.482e-05 - StatMC: 5.112899999999999e-05 - RadErr: 2.4453e-05 - Model_1: 0.00014513861658600716 - Model_2: 0.00014513861658600716 - ModelRW_1: 0.00015195017620917717 - ModelRW_2: 0.00015195017620917717 - JES_1: 8.317424725463404e-05 - JES_2: 8.317424725463404e-05 - ArtUnc_1: -5.241462259945504e-15 - ArtUnc_2: 8.207592964730536e-13 - ArtUnc_3: 3.847729041683561e-12 - ArtUnc_4: 1.3792222266569431e-11 - ArtUnc_5: 5.052176641803228e-13 - ArtUnc_6: 2.249495667603643e-14 - ArtUnc_7: 6.265328750309011e-11 - ArtUnc_8: -2.377277478183806e-10 - ArtUnc_9: -3.167587896563486e-12 - ArtUnc_10: -9.980068575788724e-12 - ArtUnc_11: 8.486503372824655e-11 - ArtUnc_12: 1.4472528442572177e-11 - ArtUnc_13: 1.9485505226517446e-10 - ArtUnc_14: 1.3385041148049875e-11 - ArtUnc_15: 1.2777939886617276e-11 - ArtUnc_16: -1.4594414874811343e-12 - ArtUnc_17: -7.622530132064897e-12 - ArtUnc_18: -3.3382254149254044e-13 - ArtUnc_19: 4.1744491889578663e-10 - ArtUnc_20: -1.458526363026746e-10 - ArtUnc_21: -1.2183263999339942e-10 - ArtUnc_22: 2.970142757468545e-09 - ArtUnc_23: 2.2299854903822662e-10 - ArtUnc_24: 7.119878894173299e-10 - ArtUnc_25: -4.04907482471203e-09 - ArtUnc_26: 1.362777303429574e-09 - ArtUnc_27: 7.095862095533802e-09 - ArtUnc_28: -5.718772664874926e-10 - ArtUnc_29: -3.751773345438866e-09 - ArtUnc_30: -2.9515041503778913e-09 - ArtUnc_31: 1.1378459995070667e-09 - ArtUnc_32: 2.1546215977208804e-08 - ArtUnc_33: -2.5580061091301333e-11 - ArtUnc_34: -7.500012142866035e-10 - ArtUnc_35: -8.728016111705376e-09 - ArtUnc_36: 1.4591722382626946e-08 - ArtUnc_37: -1.5180310001887374e-07 - ArtUnc_38: 2.908727650187965e-08 - ArtUnc_39: 2.400366075531249e-07 - ArtUnc_40: 3.6335764936557314e-09 - ArtUnc_41: -1.7897560141455276e-07 - ArtUnc_42: 3.862399379342501e-09 - ArtUnc_43: 3.891403788701593e-07 - ArtUnc_44: -3.012756355155561e-07 - ArtUnc_45: 2.2701893778899755e-10 - ArtUnc_46: 3.043726544595362e-08 - ArtUnc_47: -6.82161911121795e-08 - ArtUnc_48: 5.213033624694447e-09 - ArtUnc_49: 7.909571133748741e-07 - ArtUnc_50: -4.000696485508816e-09 - ArtUnc_51: 1.2244715995664577e-07 - ArtUnc_52: -2.387388760086234e-08 - ArtUnc_53: -1.3473575118922905e-08 - ArtUnc_54: 2.9872328342697794e-08 - ArtUnc_55: -1.581319061040107e-06 - ArtUnc_56: 1.933241606756599e-06 - ArtUnc_57: 4.697845033799855e-07 - ArtUnc_58: -3.308935751188501e-06 - ArtUnc_59: 1.8756063896365827e-07 - ArtUnc_60: -3.6319870239236007e-06 - ArtUnc_61: 8.974999862891205e-09 - ArtUnc_62: -3.2100263389846357e-07 - ArtUnc_63: 3.687766345572873e-08 - ArtUnc_64: -7.773053107356384e-06 - ArtUnc_65: 6.977881398509863e-07 - ArtUnc_66: -8.346360521631696e-06 - ArtUnc_67: -3.417827012533332e-07 - ArtUnc_68: -4.126287864727083e-07 - ArtUnc_69: 3.5351700709203385e-09 - ArtUnc_70: -4.836847420599969e-07 - ArtUnc_71: -2.5243277693506292e-08 - ArtUnc_72: -5.773132591863485e-06 - ArtUnc_73: -4.681112618505477e-07 - ArtUnc_74: -1.577039913530142e-06 - ArtUnc_75: 9.86917479891918e-06 - ArtUnc_76: 7.128038724576999e-08 - ArtUnc_77: -3.1454011412941795e-08 - ArtUnc_78: 1.8891715977876717e-05 - ArtUnc_79: 1.349982111950535e-05 - ArtUnc_80: -7.125930552507109e-08 - ArtUnc_81: 4.94833375371924e-07 - ArtUnc_82: 3.523517435289861e-08 - ArtUnc_83: -5.926496319977509e-08 - ArtUnc_84: -1.4452008476412964e-07 - ArtUnc_85: 1.508320644838305e-08 - ArtUnc_86: 4.377923905507967e-09 - ArtUnc_87: 5.063614671791702e-09 - ArtUnc_88: 6.745731559486469e-09 - ArtUnc_89: 2.873263317578852e-07 - ArtUnc_90: -9.439684959935189e-08 - ArtUnc_91: -2.3971753920997772e-08 - ArtUnc_92: -4.26823292277409e-08 - ArtUnc_93: 1.5311556383332444e-09 - ArtUnc_94: -4.599464050398569e-10 - ArtUnc_95: -1.9906259590373583e-08 - ArtUnc_96: 2.321632159279879e-09 + RCES: 3.43107806e-05 + ElEn: 1.49857976e-05 + ElTh: 8.49460975e-06 + Lumi: 1.90190000e-05 + LArN: 1.48200000e-05 + StatMC: 5.11290000e-05 + RadErr: 2.44530000e-05 + Model_1: 1.45138617e-04 + Model_2: 1.45138617e-04 + ModelRW_1: 1.51950176e-04 + ModelRW_2: 1.51950176e-04 + JES_1: 8.31742473e-05 + JES_2: 8.31742473e-05 + ArtUnc_1: -5.24146226e-15 + ArtUnc_2: 8.20759296e-13 + ArtUnc_3: 3.84772904e-12 + ArtUnc_4: 1.37922223e-11 + ArtUnc_5: 5.05217664e-13 + ArtUnc_6: 2.24949567e-14 + ArtUnc_7: 6.26532875e-11 + ArtUnc_8: -2.37727748e-10 + ArtUnc_9: -3.16758790e-12 + ArtUnc_10: -9.98006858e-12 + ArtUnc_11: 8.48650337e-11 + ArtUnc_12: 1.44725284e-11 + ArtUnc_13: 1.94855052e-10 + ArtUnc_14: 1.33850411e-11 + ArtUnc_15: 1.27779399e-11 + ArtUnc_16: -1.45944149e-12 + ArtUnc_17: -7.62253013e-12 + ArtUnc_18: -3.33822541e-13 + ArtUnc_19: 4.17444919e-10 + ArtUnc_20: -1.45852636e-10 + ArtUnc_21: -1.21832640e-10 + ArtUnc_22: 2.97014276e-09 + ArtUnc_23: 2.22998549e-10 + ArtUnc_24: 7.11987889e-10 + ArtUnc_25: -4.04907482e-09 + ArtUnc_26: 1.36277730e-09 + ArtUnc_27: 7.09586210e-09 + ArtUnc_28: -5.71877266e-10 + ArtUnc_29: -3.75177335e-09 + ArtUnc_30: -2.95150415e-09 + ArtUnc_31: 1.13784600e-09 + ArtUnc_32: 2.15462160e-08 + ArtUnc_33: -2.55800611e-11 + ArtUnc_34: -7.50001214e-10 + ArtUnc_35: -8.72801611e-09 + ArtUnc_36: 1.45917224e-08 + ArtUnc_37: -1.51803100e-07 + ArtUnc_38: 2.90872765e-08 + ArtUnc_39: 2.40036608e-07 + ArtUnc_40: 3.63357649e-09 + ArtUnc_41: -1.78975601e-07 + ArtUnc_42: 3.86239938e-09 + ArtUnc_43: 3.89140379e-07 + ArtUnc_44: -3.01275636e-07 + ArtUnc_45: 2.27018938e-10 + ArtUnc_46: 3.04372654e-08 + ArtUnc_47: -6.82161911e-08 + ArtUnc_48: 5.21303362e-09 + ArtUnc_49: 7.90957113e-07 + ArtUnc_50: -4.00069649e-09 + ArtUnc_51: 1.22447160e-07 + ArtUnc_52: -2.38738876e-08 + ArtUnc_53: -1.34735751e-08 + ArtUnc_54: 2.98723283e-08 + ArtUnc_55: -1.58131906e-06 + ArtUnc_56: 1.93324161e-06 + ArtUnc_57: 4.69784503e-07 + ArtUnc_58: -3.30893575e-06 + ArtUnc_59: 1.87560639e-07 + ArtUnc_60: -3.63198702e-06 + ArtUnc_61: 8.97499986e-09 + ArtUnc_62: -3.21002634e-07 + ArtUnc_63: 3.68776635e-08 + ArtUnc_64: -7.77305311e-06 + ArtUnc_65: 6.97788140e-07 + ArtUnc_66: -8.34636052e-06 + ArtUnc_67: -3.41782701e-07 + ArtUnc_68: -4.12628786e-07 + ArtUnc_69: 3.53517007e-09 + ArtUnc_70: -4.83684742e-07 + ArtUnc_71: -2.52432777e-08 + ArtUnc_72: -5.77313259e-06 + ArtUnc_73: -4.68111262e-07 + ArtUnc_74: -1.57703991e-06 + ArtUnc_75: 9.86917480e-06 + ArtUnc_76: 7.12803872e-08 + ArtUnc_77: -3.14540114e-08 + ArtUnc_78: 1.88917160e-05 + ArtUnc_79: 1.34998211e-05 + ArtUnc_80: -7.12593055e-08 + ArtUnc_81: 4.94833375e-07 + ArtUnc_82: 3.52351744e-08 + ArtUnc_83: -5.92649632e-08 + ArtUnc_84: -1.44520085e-07 + ArtUnc_85: 1.50832064e-08 + ArtUnc_86: 4.37792391e-09 + ArtUnc_87: 5.06361467e-09 + ArtUnc_88: 6.74573156e-09 + ArtUnc_89: 2.87326332e-07 + ArtUnc_90: -9.43968496e-08 + ArtUnc_91: -2.39717539e-08 + ArtUnc_92: -4.26823292e-08 + ArtUnc_93: 1.53115564e-09 + ArtUnc_94: -4.59946405e-10 + ArtUnc_95: -1.99062596e-08 + ArtUnc_96: 2.32163216e-09 - stat: 0 Uncorr: 4.57e-06 - RCES: 7.124034907796283e-06 - ElEn: 4.395047668683469e-06 - ElTh: 4.93940686520153e-06 - Lumi: 3.5189e-06 - LArN: 2.742e-06 - StatMC: 1.6726200000000003e-05 - RadErr: 1.11508e-05 - Model_1: 3.5546257890247745e-06 - Model_2: 3.5546257890247745e-06 - ModelRW_1: 1.2748201148936661e-05 - ModelRW_2: 1.2748201148936661e-05 - JES_1: 1.9913371876298348e-05 - JES_2: 1.9913371876298348e-05 - ArtUnc_1: -1.9019991291243223e-17 - ArtUnc_2: 1.0507157366899366e-14 - ArtUnc_3: 7.405936115075455e-14 - ArtUnc_4: 4.1516782877622893e-13 - ArtUnc_5: 1.4607047978177815e-14 - ArtUnc_6: 3.987043331119774e-15 - ArtUnc_7: 2.9871234429873815e-12 - ArtUnc_8: -1.28901101419786e-11 - ArtUnc_9: 1.936248767826609e-13 - ArtUnc_10: -1.9130658824214493e-13 - ArtUnc_11: -3.400051045086563e-13 - ArtUnc_12: -3.6520029181094834e-14 - ArtUnc_13: 7.1714396580652244e-12 - ArtUnc_14: -1.2279063899775683e-13 - ArtUnc_15: 5.068030375999428e-14 - ArtUnc_16: 1.814635154565131e-15 - ArtUnc_17: -2.5823036770884942e-12 - ArtUnc_18: 7.732364342860023e-14 - ArtUnc_19: 1.0368599030336335e-11 - ArtUnc_20: 2.537794841164756e-11 - ArtUnc_21: -1.8355254578712134e-12 - ArtUnc_22: 3.23052714866025e-10 - ArtUnc_23: 6.571649960662051e-12 - ArtUnc_24: -1.315256411252612e-10 - ArtUnc_25: -2.5802325607447383e-10 - ArtUnc_26: 5.448016000703067e-11 - ArtUnc_27: 9.181928486933075e-10 - ArtUnc_28: 4.266311332429477e-11 - ArtUnc_29: 2.121381067959539e-10 - ArtUnc_30: 1.2336925894313725e-10 - ArtUnc_31: -5.0572066259762264e-11 - ArtUnc_32: 1.9897910843142253e-09 - ArtUnc_33: -5.964743379366253e-13 - ArtUnc_34: -4.2291022066909204e-11 - ArtUnc_35: -6.372771500145227e-11 - ArtUnc_36: 8.992438540225526e-10 - ArtUnc_37: -2.823869184278453e-09 - ArtUnc_38: 5.029805408362752e-10 - ArtUnc_39: 3.7603353015553514e-09 - ArtUnc_40: -1.522549579025299e-11 - ArtUnc_41: -1.553079400463468e-08 - ArtUnc_42: 1.1200097112152992e-10 - ArtUnc_43: 3.320458370959093e-08 - ArtUnc_44: 1.612778691079218e-08 - ArtUnc_45: -1.9434751816654295e-10 - ArtUnc_46: 4.818719281818341e-09 - ArtUnc_47: -3.5936833342592e-10 - ArtUnc_48: -1.4452431492510908e-11 - ArtUnc_49: 1.156191469303947e-07 - ArtUnc_50: 3.095265809797049e-09 - ArtUnc_51: -1.990250058016618e-09 - ArtUnc_52: 1.0551540835680762e-09 - ArtUnc_53: 2.583986842251015e-11 - ArtUnc_54: -2.7359896160844426e-10 - ArtUnc_55: -1.714666851039895e-08 - ArtUnc_56: -9.346685172236354e-09 - ArtUnc_57: -2.2964573279275797e-09 - ArtUnc_58: -2.541050169654537e-08 - ArtUnc_59: 2.4527977931268276e-10 - ArtUnc_60: 4.26908642864609e-08 - ArtUnc_61: 1.0006795078580084e-10 - ArtUnc_62: -1.5073637832204924e-09 - ArtUnc_63: 3.8752541563071965e-11 - ArtUnc_64: -7.557892352678078e-08 - ArtUnc_65: -7.762771204776205e-09 - ArtUnc_66: 2.1676490443910404e-07 - ArtUnc_67: 3.088925173796808e-08 - ArtUnc_68: -3.7773234498553116e-08 - ArtUnc_69: -9.873502259301812e-09 - ArtUnc_70: 2.373128831845414e-07 - ArtUnc_71: 2.8574018820224212e-09 - ArtUnc_72: -7.728916750927325e-08 - ArtUnc_73: -1.8004829794967403e-08 - ArtUnc_74: 1.1896352758006183e-06 - ArtUnc_75: 2.2098648925167571e-07 - ArtUnc_76: 2.7860180711512064e-08 - ArtUnc_77: 7.187084774475774e-08 - ArtUnc_78: 2.2916415135354548e-06 - ArtUnc_79: -4.401578860181456e-06 - ArtUnc_80: 8.779094540533577e-08 - ArtUnc_81: -1.1345022521150932e-07 - ArtUnc_82: -1.1381576922669683e-08 - ArtUnc_83: 3.163933993362474e-07 - ArtUnc_84: -1.3329149678621743e-06 - ArtUnc_85: -2.135394470958957e-08 - ArtUnc_86: 5.592598844023283e-08 - ArtUnc_87: 1.0941707459513449e-07 - ArtUnc_88: 1.1376874495446983e-07 - ArtUnc_89: 2.6704569588183046e-06 - ArtUnc_90: -4.823102494690392e-07 - ArtUnc_91: 1.4649026332982186e-07 - ArtUnc_92: -8.784470317925978e-06 - ArtUnc_93: 3.280591100098844e-08 - ArtUnc_94: 1.8810024653809077e-07 - ArtUnc_95: -4.025966804622898e-07 - ArtUnc_96: -1.8317314419579824e-08 + RCES: 7.12403491e-06 + ElEn: 4.39504767e-06 + ElTh: 4.93940687e-06 + Lumi: 3.51890000e-06 + LArN: 2.74200000e-06 + StatMC: 1.67262000e-05 + RadErr: 1.11508000e-05 + Model_1: 3.55462579e-06 + Model_2: 3.55462579e-06 + ModelRW_1: 1.27482011e-05 + ModelRW_2: 1.27482011e-05 + JES_1: 1.99133719e-05 + JES_2: 1.99133719e-05 + ArtUnc_1: -1.90199913e-17 + ArtUnc_2: 1.05071574e-14 + ArtUnc_3: 7.40593612e-14 + ArtUnc_4: 4.15167829e-13 + ArtUnc_5: 1.46070480e-14 + ArtUnc_6: 3.98704333e-15 + ArtUnc_7: 2.98712344e-12 + ArtUnc_8: -1.28901101e-11 + ArtUnc_9: 1.93624877e-13 + ArtUnc_10: -1.91306588e-13 + ArtUnc_11: -3.40005105e-13 + ArtUnc_12: -3.65200292e-14 + ArtUnc_13: 7.17143966e-12 + ArtUnc_14: -1.22790639e-13 + ArtUnc_15: 5.06803038e-14 + ArtUnc_16: 1.81463515e-15 + ArtUnc_17: -2.58230368e-12 + ArtUnc_18: 7.73236434e-14 + ArtUnc_19: 1.03685990e-11 + ArtUnc_20: 2.53779484e-11 + ArtUnc_21: -1.83552546e-12 + ArtUnc_22: 3.23052715e-10 + ArtUnc_23: 6.57164996e-12 + ArtUnc_24: -1.31525641e-10 + ArtUnc_25: -2.58023256e-10 + ArtUnc_26: 5.44801600e-11 + ArtUnc_27: 9.18192849e-10 + ArtUnc_28: 4.26631133e-11 + ArtUnc_29: 2.12138107e-10 + ArtUnc_30: 1.23369259e-10 + ArtUnc_31: -5.05720663e-11 + ArtUnc_32: 1.98979108e-09 + ArtUnc_33: -5.96474338e-13 + ArtUnc_34: -4.22910221e-11 + ArtUnc_35: -6.37277150e-11 + ArtUnc_36: 8.99243854e-10 + ArtUnc_37: -2.82386918e-09 + ArtUnc_38: 5.02980541e-10 + ArtUnc_39: 3.76033530e-09 + ArtUnc_40: -1.52254958e-11 + ArtUnc_41: -1.55307940e-08 + ArtUnc_42: 1.12000971e-10 + ArtUnc_43: 3.32045837e-08 + ArtUnc_44: 1.61277869e-08 + ArtUnc_45: -1.94347518e-10 + ArtUnc_46: 4.81871928e-09 + ArtUnc_47: -3.59368333e-10 + ArtUnc_48: -1.44524315e-11 + ArtUnc_49: 1.15619147e-07 + ArtUnc_50: 3.09526581e-09 + ArtUnc_51: -1.99025006e-09 + ArtUnc_52: 1.05515408e-09 + ArtUnc_53: 2.58398684e-11 + ArtUnc_54: -2.73598962e-10 + ArtUnc_55: -1.71466685e-08 + ArtUnc_56: -9.34668517e-09 + ArtUnc_57: -2.29645733e-09 + ArtUnc_58: -2.54105017e-08 + ArtUnc_59: 2.45279779e-10 + ArtUnc_60: 4.26908643e-08 + ArtUnc_61: 1.00067951e-10 + ArtUnc_62: -1.50736378e-09 + ArtUnc_63: 3.87525416e-11 + ArtUnc_64: -7.55789235e-08 + ArtUnc_65: -7.76277120e-09 + ArtUnc_66: 2.16764904e-07 + ArtUnc_67: 3.08892517e-08 + ArtUnc_68: -3.77732345e-08 + ArtUnc_69: -9.87350226e-09 + ArtUnc_70: 2.37312883e-07 + ArtUnc_71: 2.85740188e-09 + ArtUnc_72: -7.72891675e-08 + ArtUnc_73: -1.80048298e-08 + ArtUnc_74: 1.18963528e-06 + ArtUnc_75: 2.20986489e-07 + ArtUnc_76: 2.78601807e-08 + ArtUnc_77: 7.18708477e-08 + ArtUnc_78: 2.29164151e-06 + ArtUnc_79: -4.40157886e-06 + ArtUnc_80: 8.77909454e-08 + ArtUnc_81: -1.13450225e-07 + ArtUnc_82: -1.13815769e-08 + ArtUnc_83: 3.16393399e-07 + ArtUnc_84: -1.33291497e-06 + ArtUnc_85: -2.13539447e-08 + ArtUnc_86: 5.59259884e-08 + ArtUnc_87: 1.09417075e-07 + ArtUnc_88: 1.13768745e-07 + ArtUnc_89: 2.67045696e-06 + ArtUnc_90: -4.82310249e-07 + ArtUnc_91: 1.46490263e-07 + ArtUnc_92: -8.78447032e-06 + ArtUnc_93: 3.28059110e-08 + ArtUnc_94: 1.88100247e-07 + ArtUnc_95: -4.02596680e-07 + ArtUnc_96: -1.83173144e-08 - stat: 0 Uncorr: 5.27e-07 - RCES: 1.114801206134977e-06 - ElEn: 3.990760347537171e-06 - ElTh: 7.161772945297834e-07 - Lumi: 4.0579e-07 - LArN: 3.162e-07 - StatMC: 6.766679999999999e-06 - RadErr: 4.484769999999999e-06 - Model_1: 3.389209788481306e-06 - Model_2: 3.389209788481306e-06 - ModelRW_1: 8.187016662866274e-06 - ModelRW_2: 8.187016662866274e-06 - JES_1: 3.1057938080847384e-06 - JES_2: 3.1057938080847384e-06 - ArtUnc_1: 2.35927203457836e-20 - ArtUnc_2: -5.922629161146333e-18 - ArtUnc_3: -1.8819435998532412e-17 - ArtUnc_4: 3.158187577786074e-17 - ArtUnc_5: 1.5937576017366522e-18 - ArtUnc_6: 3.289342185321362e-18 - ArtUnc_7: 1.2239723672715737e-15 - ArtUnc_8: -2.2074775992870183e-14 - ArtUnc_9: 6.704927999036726e-16 - ArtUnc_10: 2.7699408858070488e-14 - ArtUnc_11: -5.873909050903443e-14 - ArtUnc_12: -4.664676081797592e-15 - ArtUnc_13: -3.2082494641071664e-14 - ArtUnc_14: -2.7683369430503856e-15 - ArtUnc_15: 7.564761722243567e-15 - ArtUnc_16: -4.898938440266008e-16 - ArtUnc_17: -7.0621030270174545e-15 - ArtUnc_18: 5.255133824119982e-16 - ArtUnc_19: 1.636309256674278e-14 - ArtUnc_20: -2.388984636576834e-13 - ArtUnc_21: 2.0807479147216883e-14 - ArtUnc_22: -5.297202828927104e-12 - ArtUnc_23: -1.9082778121082117e-13 - ArtUnc_24: 6.039201406219987e-12 - ArtUnc_25: 2.6715907554250054e-12 - ArtUnc_26: -2.7966393291241113e-13 - ArtUnc_27: -1.9072862813516748e-11 - ArtUnc_28: -3.1805753329792926e-13 - ArtUnc_29: 2.342851279537203e-12 - ArtUnc_30: -2.1374606682004223e-13 - ArtUnc_31: 1.0815260616289436e-13 - ArtUnc_32: -1.9686397571900833e-11 - ArtUnc_33: -1.5636800167330968e-14 - ArtUnc_34: 4.9413977886084574e-12 - ArtUnc_35: 3.43431542246607e-12 - ArtUnc_36: -4.797358782039034e-11 - ArtUnc_37: 5.773888609003612e-11 - ArtUnc_38: -9.251216849801803e-12 - ArtUnc_39: -6.909058451839399e-11 - ArtUnc_40: 1.6925117406345058e-12 - ArtUnc_41: 3.7053698468647157e-10 - ArtUnc_42: 1.855392905824653e-11 - ArtUnc_43: -4.846323282584783e-10 - ArtUnc_44: -3.327459492762007e-11 - ArtUnc_45: 7.597393152306623e-13 - ArtUnc_46: -6.897334913058715e-11 - ArtUnc_47: 1.5566079258656675e-10 - ArtUnc_48: -7.485089687541113e-12 - ArtUnc_49: -4.1862286539354177e-10 - ArtUnc_50: 6.302238876174077e-11 - ArtUnc_51: -9.653027877636256e-10 - ArtUnc_52: 5.72165799063931e-10 - ArtUnc_53: -2.489573684983785e-11 - ArtUnc_54: -7.617696381330824e-11 - ArtUnc_55: -1.3478870594901272e-08 - ArtUnc_56: 1.2402321011988667e-08 - ArtUnc_57: 3.5571456105850805e-09 - ArtUnc_58: -2.556150908248414e-08 - ArtUnc_59: -1.2383163719166848e-10 - ArtUnc_60: -3.2222219760101495e-08 - ArtUnc_61: -5.2251288050979926e-12 - ArtUnc_62: -8.97457198223341e-10 - ArtUnc_63: 9.440574608420388e-11 - ArtUnc_64: -2.448031875497111e-08 - ArtUnc_65: 1.042472983643038e-09 - ArtUnc_66: -3.5166796463923804e-08 - ArtUnc_67: 3.52988122038554e-10 - ArtUnc_68: 1.992668957386929e-09 - ArtUnc_69: -3.938321250102191e-10 - ArtUnc_70: 9.539111780811317e-09 - ArtUnc_71: 2.266615073220808e-10 - ArtUnc_72: 4.3344959477670267e-08 - ArtUnc_73: 3.439910778665954e-09 - ArtUnc_74: 3.766214542747073e-08 - ArtUnc_75: -8.853833025974996e-08 - ArtUnc_76: -5.07855697525207e-10 - ArtUnc_77: 2.6350754104537003e-09 - ArtUnc_78: -5.219583627350703e-08 - ArtUnc_79: -1.9286320867927353e-07 - ArtUnc_80: 2.0279690969114773e-09 - ArtUnc_81: -7.292739062847744e-09 - ArtUnc_82: -5.170141903927744e-10 - ArtUnc_83: 2.2541666134281235e-08 - ArtUnc_84: -3.9693062371755816e-08 - ArtUnc_85: 2.686872478207075e-06 - ArtUnc_86: 4.141473619815568e-07 - ArtUnc_87: 7.862979078955503e-07 - ArtUnc_88: 1.1721011470516791e-08 - ArtUnc_89: 4.4423448886381265e-08 - ArtUnc_90: 2.651165675700547e-07 - ArtUnc_91: -1.6784554078079242e-06 - ArtUnc_92: -1.550500835139394e-08 - ArtUnc_93: 1.9257018402611466e-08 - ArtUnc_94: 2.2281251523428708e-08 - ArtUnc_95: -8.447286155149897e-07 - ArtUnc_96: -1.7506003847933434e-07 + RCES: 1.11480121e-06 + ElEn: 3.99076035e-06 + ElTh: 7.16177295e-07 + Lumi: 4.05790000e-07 + LArN: 3.16200000e-07 + StatMC: 6.76668000e-06 + RadErr: 4.48477000e-06 + Model_1: 3.38920979e-06 + Model_2: 3.38920979e-06 + ModelRW_1: 8.18701666e-06 + ModelRW_2: 8.18701666e-06 + JES_1: 3.10579381e-06 + JES_2: 3.10579381e-06 + ArtUnc_1: 2.35927203e-20 + ArtUnc_2: -5.92262916e-18 + ArtUnc_3: -1.88194360e-17 + ArtUnc_4: 3.15818758e-17 + ArtUnc_5: 1.59375760e-18 + ArtUnc_6: 3.28934219e-18 + ArtUnc_7: 1.22397237e-15 + ArtUnc_8: -2.20747760e-14 + ArtUnc_9: 6.70492800e-16 + ArtUnc_10: 2.76994089e-14 + ArtUnc_11: -5.87390905e-14 + ArtUnc_12: -4.66467608e-15 + ArtUnc_13: -3.20824946e-14 + ArtUnc_14: -2.76833694e-15 + ArtUnc_15: 7.56476172e-15 + ArtUnc_16: -4.89893844e-16 + ArtUnc_17: -7.06210303e-15 + ArtUnc_18: 5.25513382e-16 + ArtUnc_19: 1.63630926e-14 + ArtUnc_20: -2.38898464e-13 + ArtUnc_21: 2.08074791e-14 + ArtUnc_22: -5.29720283e-12 + ArtUnc_23: -1.90827781e-13 + ArtUnc_24: 6.03920141e-12 + ArtUnc_25: 2.67159076e-12 + ArtUnc_26: -2.79663933e-13 + ArtUnc_27: -1.90728628e-11 + ArtUnc_28: -3.18057533e-13 + ArtUnc_29: 2.34285128e-12 + ArtUnc_30: -2.13746067e-13 + ArtUnc_31: 1.08152606e-13 + ArtUnc_32: -1.96863976e-11 + ArtUnc_33: -1.56368002e-14 + ArtUnc_34: 4.94139779e-12 + ArtUnc_35: 3.43431542e-12 + ArtUnc_36: -4.79735878e-11 + ArtUnc_37: 5.77388861e-11 + ArtUnc_38: -9.25121685e-12 + ArtUnc_39: -6.90905845e-11 + ArtUnc_40: 1.69251174e-12 + ArtUnc_41: 3.70536985e-10 + ArtUnc_42: 1.85539291e-11 + ArtUnc_43: -4.84632328e-10 + ArtUnc_44: -3.32745949e-11 + ArtUnc_45: 7.59739315e-13 + ArtUnc_46: -6.89733491e-11 + ArtUnc_47: 1.55660793e-10 + ArtUnc_48: -7.48508969e-12 + ArtUnc_49: -4.18622865e-10 + ArtUnc_50: 6.30223888e-11 + ArtUnc_51: -9.65302788e-10 + ArtUnc_52: 5.72165799e-10 + ArtUnc_53: -2.48957368e-11 + ArtUnc_54: -7.61769638e-11 + ArtUnc_55: -1.34788706e-08 + ArtUnc_56: 1.24023210e-08 + ArtUnc_57: 3.55714561e-09 + ArtUnc_58: -2.55615091e-08 + ArtUnc_59: -1.23831637e-10 + ArtUnc_60: -3.22222198e-08 + ArtUnc_61: -5.22512881e-12 + ArtUnc_62: -8.97457198e-10 + ArtUnc_63: 9.44057461e-11 + ArtUnc_64: -2.44803188e-08 + ArtUnc_65: 1.04247298e-09 + ArtUnc_66: -3.51667965e-08 + ArtUnc_67: 3.52988122e-10 + ArtUnc_68: 1.99266896e-09 + ArtUnc_69: -3.93832125e-10 + ArtUnc_70: 9.53911178e-09 + ArtUnc_71: 2.26661507e-10 + ArtUnc_72: 4.33449595e-08 + ArtUnc_73: 3.43991078e-09 + ArtUnc_74: 3.76621454e-08 + ArtUnc_75: -8.85383303e-08 + ArtUnc_76: -5.07855698e-10 + ArtUnc_77: 2.63507541e-09 + ArtUnc_78: -5.21958363e-08 + ArtUnc_79: -1.92863209e-07 + ArtUnc_80: 2.02796910e-09 + ArtUnc_81: -7.29273906e-09 + ArtUnc_82: -5.17014190e-10 + ArtUnc_83: 2.25416661e-08 + ArtUnc_84: -3.96930624e-08 + ArtUnc_85: 2.68687248e-06 + ArtUnc_86: 4.14147362e-07 + ArtUnc_87: 7.86297908e-07 + ArtUnc_88: 1.17210115e-08 + ArtUnc_89: 4.44234489e-08 + ArtUnc_90: 2.65116568e-07 + ArtUnc_91: -1.67845541e-06 + ArtUnc_92: -1.55050084e-08 + ArtUnc_93: 1.92570184e-08 + ArtUnc_94: 2.22812515e-08 + ArtUnc_95: -8.44728616e-07 + ArtUnc_96: -1.75060038e-07 - stat: 0 Uncorr: 0.0006 - RCES: 0.0023087762992546504 - ElEn: 0.0005241936665012274 - ElTh: 0.0002365819097057085 + RCES: 2.30877630e-03 + ElEn: 5.24193667e-04 + ElTh: 2.36581910e-04 Lumi: 0.000462 - LArN: 0.00035999999999999997 + LArN: 3.60000000e-04 StatMC: 0.001212 RadErr: 0.000648 - Model_1: 0.0013915861453751251 - Model_2: 0.0013915861453751251 - ModelRW_1: 0.0010097484835343896 - ModelRW_2: 0.0010097484835343896 - JES_1: 0.0009938719736465053 - JES_2: 0.0009938719736465053 - ArtUnc_1: -4.650512749355942e-09 - ArtUnc_2: 2.6150404338355495e-07 - ArtUnc_3: 5.12557246908968e-07 - ArtUnc_4: 1.0849380135812087e-06 - ArtUnc_5: 7.030184433999337e-08 - ArtUnc_6: -6.666096450952222e-08 - ArtUnc_7: 8.926475091343498e-06 - ArtUnc_8: -3.752463903315676e-05 - ArtUnc_9: -4.525940513413666e-06 - ArtUnc_10: 3.1467905590806244e-05 - ArtUnc_11: -2.0233147902406997e-05 - ArtUnc_12: 2.021947318951445e-06 - ArtUnc_13: -4.003287853094295e-05 - ArtUnc_14: 9.54290296203011e-06 - ArtUnc_15: -1.5817618089945295e-05 - ArtUnc_16: 5.069765305450733e-07 - ArtUnc_17: -1.0889155969046879e-05 - ArtUnc_18: 7.854719394652192e-07 - ArtUnc_19: 2.3706046886005644e-05 - ArtUnc_20: -1.9083074205274243e-05 - ArtUnc_21: 4.747888848597217e-07 - ArtUnc_22: 0.00016734295161063723 - ArtUnc_23: 1.8956321121513973e-06 - ArtUnc_24: 0.0001391234856377672 - ArtUnc_25: 0.00018799400387012392 - ArtUnc_26: 3.117946243289525e-05 - ArtUnc_27: 0.00021123077073010498 - ArtUnc_28: 2.693125101744767e-06 - ArtUnc_29: 0.0005732465940048262 - ArtUnc_30: 0.00012951670447777832 - ArtUnc_31: -5.386786433193626e-05 - ArtUnc_32: -0.0002279172775553063 - ArtUnc_33: 2.3810441821111926e-07 - ArtUnc_34: -7.330782394982886e-06 - ArtUnc_35: -1.7685369090595917e-05 - ArtUnc_36: -2.4724312944298536e-06 - ArtUnc_37: -1.4607163820264878e-05 - ArtUnc_38: 2.6176429082255432e-06 - ArtUnc_39: -6.607915967338914e-07 - ArtUnc_40: -5.1362874816051534e-08 - ArtUnc_41: 1.5135293048599083e-06 - ArtUnc_42: -3.930922079681527e-08 - ArtUnc_43: 1.3049128874402319e-06 - ArtUnc_44: -7.96030395165809e-06 - ArtUnc_45: 5.351476142624853e-08 - ArtUnc_46: -3.500460120766658e-07 - ArtUnc_47: -2.698530947205398e-07 - ArtUnc_48: 6.382660114578908e-09 - ArtUnc_49: 2.4341397056357427e-06 - ArtUnc_50: 4.81169572330774e-07 - ArtUnc_51: 2.879156312045966e-08 - ArtUnc_52: 1.933283862988446e-08 - ArtUnc_53: 5.698775424400118e-09 - ArtUnc_54: -1.2428319793269074e-08 - ArtUnc_55: 1.8299365598447446e-08 - ArtUnc_56: -9.683602000634305e-10 - ArtUnc_57: -2.008998975123179e-09 - ArtUnc_58: -4.09381063276111e-09 - ArtUnc_59: 7.913059982895237e-09 - ArtUnc_60: 6.358131181272643e-09 - ArtUnc_61: 3.316418941539378e-11 - ArtUnc_62: 4.826728173643972e-09 - ArtUnc_63: -5.171061553907083e-10 - ArtUnc_64: 3.34943184805511e-07 - ArtUnc_65: -1.1614407621026812e-08 - ArtUnc_66: -2.3340415670957435e-07 - ArtUnc_67: -4.714533807607662e-09 - ArtUnc_68: -5.125500757971282e-10 - ArtUnc_69: 2.5681759201689222e-11 - ArtUnc_70: -4.617791891797858e-10 - ArtUnc_71: -1.726956563111836e-11 - ArtUnc_72: -1.0426947546361144e-09 - ArtUnc_73: 1.3974946479052858e-10 - ArtUnc_74: -7.388353615932547e-11 - ArtUnc_75: 2.2023115713533785e-09 - ArtUnc_76: -3.238875632136181e-11 - ArtUnc_77: 1.683694432077045e-10 - ArtUnc_78: -2.3319062783790383e-09 - ArtUnc_79: 6.984125752352948e-10 - ArtUnc_80: 2.4210672858428407e-10 - ArtUnc_81: -1.0645104275344316e-10 - ArtUnc_82: 9.551534802832154e-12 - ArtUnc_83: 4.247721654093233e-11 - ArtUnc_84: 1.2581519448969144e-11 - ArtUnc_85: -2.853203139020557e-13 - ArtUnc_86: -7.1550686480950606e-12 - ArtUnc_87: -8.385559175981213e-12 - ArtUnc_88: 9.054072666771776e-12 - ArtUnc_89: 6.684767466884986e-11 - ArtUnc_90: 1.8249590088465067e-11 - ArtUnc_91: -1.3769282793509156e-12 - ArtUnc_92: -2.0830196938451975e-10 - ArtUnc_93: 1.474440598941191e-11 - ArtUnc_94: 2.8062288957760026e-12 - ArtUnc_95: -4.9037181482300245e-11 - ArtUnc_96: 1.1351687655157902e-11 + Model_1: 1.39158615e-03 + Model_2: 1.39158615e-03 + ModelRW_1: 1.00974848e-03 + ModelRW_2: 1.00974848e-03 + JES_1: 9.93871974e-04 + JES_2: 9.93871974e-04 + ArtUnc_1: -4.65051275e-09 + ArtUnc_2: 2.61504043e-07 + ArtUnc_3: 5.12557247e-07 + ArtUnc_4: 1.08493801e-06 + ArtUnc_5: 7.03018443e-08 + ArtUnc_6: -6.66609645e-08 + ArtUnc_7: 8.92647509e-06 + ArtUnc_8: -3.75246390e-05 + ArtUnc_9: -4.52594051e-06 + ArtUnc_10: 3.14679056e-05 + ArtUnc_11: -2.02331479e-05 + ArtUnc_12: 2.02194732e-06 + ArtUnc_13: -4.00328785e-05 + ArtUnc_14: 9.54290296e-06 + ArtUnc_15: -1.58176181e-05 + ArtUnc_16: 5.06976531e-07 + ArtUnc_17: -1.08891560e-05 + ArtUnc_18: 7.85471939e-07 + ArtUnc_19: 2.37060469e-05 + ArtUnc_20: -1.90830742e-05 + ArtUnc_21: 4.74788885e-07 + ArtUnc_22: 1.67342952e-04 + ArtUnc_23: 1.89563211e-06 + ArtUnc_24: 1.39123486e-04 + ArtUnc_25: 1.87994004e-04 + ArtUnc_26: 3.11794624e-05 + ArtUnc_27: 2.11230771e-04 + ArtUnc_28: 2.69312510e-06 + ArtUnc_29: 5.73246594e-04 + ArtUnc_30: 1.29516704e-04 + ArtUnc_31: -5.38678643e-05 + ArtUnc_32: -2.27917278e-04 + ArtUnc_33: 2.38104418e-07 + ArtUnc_34: -7.33078239e-06 + ArtUnc_35: -1.76853691e-05 + ArtUnc_36: -2.47243129e-06 + ArtUnc_37: -1.46071638e-05 + ArtUnc_38: 2.61764291e-06 + ArtUnc_39: -6.60791597e-07 + ArtUnc_40: -5.13628748e-08 + ArtUnc_41: 1.51352930e-06 + ArtUnc_42: -3.93092208e-08 + ArtUnc_43: 1.30491289e-06 + ArtUnc_44: -7.96030395e-06 + ArtUnc_45: 5.35147614e-08 + ArtUnc_46: -3.50046012e-07 + ArtUnc_47: -2.69853095e-07 + ArtUnc_48: 6.38266011e-09 + ArtUnc_49: 2.43413971e-06 + ArtUnc_50: 4.81169572e-07 + ArtUnc_51: 2.87915631e-08 + ArtUnc_52: 1.93328386e-08 + ArtUnc_53: 5.69877542e-09 + ArtUnc_54: -1.24283198e-08 + ArtUnc_55: 1.82993656e-08 + ArtUnc_56: -9.68360200e-10 + ArtUnc_57: -2.00899898e-09 + ArtUnc_58: -4.09381063e-09 + ArtUnc_59: 7.91305998e-09 + ArtUnc_60: 6.35813118e-09 + ArtUnc_61: 3.31641894e-11 + ArtUnc_62: 4.82672817e-09 + ArtUnc_63: -5.17106155e-10 + ArtUnc_64: 3.34943185e-07 + ArtUnc_65: -1.16144076e-08 + ArtUnc_66: -2.33404157e-07 + ArtUnc_67: -4.71453381e-09 + ArtUnc_68: -5.12550076e-10 + ArtUnc_69: 2.56817592e-11 + ArtUnc_70: -4.61779189e-10 + ArtUnc_71: -1.72695656e-11 + ArtUnc_72: -1.04269475e-09 + ArtUnc_73: 1.39749465e-10 + ArtUnc_74: -7.38835362e-11 + ArtUnc_75: 2.20231157e-09 + ArtUnc_76: -3.23887563e-11 + ArtUnc_77: 1.68369443e-10 + ArtUnc_78: -2.33190628e-09 + ArtUnc_79: 6.98412575e-10 + ArtUnc_80: 2.42106729e-10 + ArtUnc_81: -1.06451043e-10 + ArtUnc_82: 9.55153480e-12 + ArtUnc_83: 4.24772165e-11 + ArtUnc_84: 1.25815194e-11 + ArtUnc_85: -2.85320314e-13 + ArtUnc_86: -7.15506865e-12 + ArtUnc_87: -8.38555918e-12 + ArtUnc_88: 9.05407267e-12 + ArtUnc_89: 6.68476747e-11 + ArtUnc_90: 1.82495901e-11 + ArtUnc_91: -1.37692828e-12 + ArtUnc_92: -2.08301969e-10 + ArtUnc_93: 1.47444060e-11 + ArtUnc_94: 2.80622890e-12 + ArtUnc_95: -4.90371815e-11 + ArtUnc_96: 1.13516877e-11 - stat: 0 Uncorr: 0.000477 - RCES: 0.0005078202128706576 - ElEn: 0.00026259922253312184 - ElTh: 7.808826544366319e-05 - Lumi: 0.00036729 - LArN: 0.0002862 - StatMC: 0.0005008500000000001 - RadErr: 0.0001908 - Model_1: 0.0016392290822822783 - Model_2: 0.0016392290822822783 - ModelRW_1: 0.0008533435346037373 - ModelRW_2: 0.0008533435346037373 - JES_1: 0.0005263668523947913 - JES_2: 0.0005263668523947913 - ArtUnc_1: 5.471569996118318e-10 - ArtUnc_2: -2.1548459534153544e-08 - ArtUnc_3: 1.6107173820174696e-09 - ArtUnc_4: 1.879064311830434e-07 - ArtUnc_5: 1.050117042374516e-09 - ArtUnc_6: 1.4980021086434547e-08 - ArtUnc_7: 1.0716030983489342e-06 - ArtUnc_8: -5.8520277451735335e-06 - ArtUnc_9: 7.491192402186086e-07 - ArtUnc_10: -8.052950538988503e-08 - ArtUnc_11: -5.725234485220118e-06 - ArtUnc_12: -9.685501549661442e-07 - ArtUnc_13: -1.3424257850248628e-06 - ArtUnc_14: -9.956049613002278e-07 - ArtUnc_15: 5.29772550663397e-07 - ArtUnc_16: 1.6738377684272918e-08 - ArtUnc_17: -3.582507838237691e-07 - ArtUnc_18: -1.264727437334715e-08 - ArtUnc_19: 1.233662996663388e-06 - ArtUnc_20: 8.403154663435293e-07 - ArtUnc_21: 6.79129868143396e-07 - ArtUnc_22: -1.776150220884529e-06 - ArtUnc_23: -4.784905450229317e-07 - ArtUnc_24: -5.169696883145389e-06 - ArtUnc_25: 2.8213503257829692e-05 - ArtUnc_26: -6.758352126525302e-06 - ArtUnc_27: -1.9482452456984413e-05 - ArtUnc_28: -1.8615587928710915e-07 - ArtUnc_29: 4.94000286483612e-06 - ArtUnc_30: 2.595975163818299e-06 - ArtUnc_31: -1.076324800799102e-06 - ArtUnc_32: -3.2874259781786615e-05 - ArtUnc_33: -3.299468307382029e-08 - ArtUnc_34: -1.2349402662050923e-06 - ArtUnc_35: -6.191515490195612e-06 - ArtUnc_36: -2.7249485883079676e-06 - ArtUnc_37: -5.989822561698278e-05 - ArtUnc_38: 1.040363962746263e-05 - ArtUnc_39: 7.720196274664037e-05 - ArtUnc_40: 1.5220534773987657e-06 - ArtUnc_41: 1.70937927886724e-05 - ArtUnc_42: 8.114505195690131e-07 - ArtUnc_43: -1.371526883447847e-05 - ArtUnc_44: 0.00024620974445310794 - ArtUnc_45: -1.2730256982223254e-06 - ArtUnc_46: 1.1643913116449547e-05 - ArtUnc_47: 1.6299789140107506e-06 - ArtUnc_48: -2.2809295116473704e-07 - ArtUnc_49: -3.634576712612296e-05 - ArtUnc_50: -2.4422571255481782e-06 - ArtUnc_51: -6.822122723981085e-08 - ArtUnc_52: 5.976234737191589e-08 - ArtUnc_53: -1.8446310222813494e-08 - ArtUnc_54: 2.4751852109216145e-08 - ArtUnc_55: 1.1310038013260833e-06 - ArtUnc_56: 1.0759820264168969e-06 - ArtUnc_57: 3.0780950207694145e-07 - ArtUnc_58: 6.812023712735847e-07 - ArtUnc_59: -7.960672216219715e-09 - ArtUnc_60: -5.267916630689513e-07 - ArtUnc_61: -3.399701646687149e-10 - ArtUnc_62: -6.6656039128050465e-09 - ArtUnc_63: 7.138800656368192e-10 - ArtUnc_64: -2.4775857851850117e-06 - ArtUnc_65: 3.624287910535524e-08 - ArtUnc_66: 1.8384640130182134e-06 - ArtUnc_67: 2.7181424246913548e-08 - ArtUnc_68: -2.8193276372482016e-08 - ArtUnc_69: -5.42760780524532e-10 - ArtUnc_70: 3.0846613497465428e-09 - ArtUnc_71: -5.4471592197849197e-11 - ArtUnc_72: -2.1302205731503017e-08 - ArtUnc_73: -8.471531075724741e-10 - ArtUnc_74: -1.1628840669622942e-08 - ArtUnc_75: 1.7170116614500534e-08 - ArtUnc_76: -2.341536895472736e-10 - ArtUnc_77: -2.7783117168958113e-10 - ArtUnc_78: 3.260211955439682e-08 - ArtUnc_79: 1.046351715994512e-08 - ArtUnc_80: -3.450248147908177e-10 - ArtUnc_81: 7.482156465457119e-10 - ArtUnc_82: 3.8370527796884825e-11 - ArtUnc_83: -3.247121662728555e-11 - ArtUnc_84: -1.4283148435103424e-09 - ArtUnc_85: 2.3167662235587087e-11 - ArtUnc_86: 6.903485286946707e-11 - ArtUnc_87: 6.463824938400358e-11 - ArtUnc_88: 6.4133573585991416e-12 - ArtUnc_89: 3.6365934066034854e-10 - ArtUnc_90: -2.5940032189813645e-10 - ArtUnc_91: 6.457000917868311e-11 - ArtUnc_92: 1.2350529808450879e-09 - ArtUnc_93: -1.151435439701838e-11 - ArtUnc_94: -3.2150143351094645e-11 - ArtUnc_95: -9.747009492310879e-11 - ArtUnc_96: -6.133126016765184e-11 + RCES: 5.07820213e-04 + ElEn: 2.62599223e-04 + ElTh: 7.80882654e-05 + Lumi: 3.67290000e-04 + LArN: 2.86200000e-04 + StatMC: 5.00850000e-04 + RadErr: 1.90800000e-04 + Model_1: 1.63922908e-03 + Model_2: 1.63922908e-03 + ModelRW_1: 8.53343535e-04 + ModelRW_2: 8.53343535e-04 + JES_1: 5.26366852e-04 + JES_2: 5.26366852e-04 + ArtUnc_1: 5.47157000e-10 + ArtUnc_2: -2.15484595e-08 + ArtUnc_3: 1.61071738e-09 + ArtUnc_4: 1.87906431e-07 + ArtUnc_5: 1.05011704e-09 + ArtUnc_6: 1.49800211e-08 + ArtUnc_7: 1.07160310e-06 + ArtUnc_8: -5.85202775e-06 + ArtUnc_9: 7.49119240e-07 + ArtUnc_10: -8.05295054e-08 + ArtUnc_11: -5.72523449e-06 + ArtUnc_12: -9.68550155e-07 + ArtUnc_13: -1.34242579e-06 + ArtUnc_14: -9.95604961e-07 + ArtUnc_15: 5.29772551e-07 + ArtUnc_16: 1.67383777e-08 + ArtUnc_17: -3.58250784e-07 + ArtUnc_18: -1.26472744e-08 + ArtUnc_19: 1.23366300e-06 + ArtUnc_20: 8.40315466e-07 + ArtUnc_21: 6.79129868e-07 + ArtUnc_22: -1.77615022e-06 + ArtUnc_23: -4.78490545e-07 + ArtUnc_24: -5.16969688e-06 + ArtUnc_25: 2.82135033e-05 + ArtUnc_26: -6.75835213e-06 + ArtUnc_27: -1.94824525e-05 + ArtUnc_28: -1.86155879e-07 + ArtUnc_29: 4.94000286e-06 + ArtUnc_30: 2.59597516e-06 + ArtUnc_31: -1.07632480e-06 + ArtUnc_32: -3.28742598e-05 + ArtUnc_33: -3.29946831e-08 + ArtUnc_34: -1.23494027e-06 + ArtUnc_35: -6.19151549e-06 + ArtUnc_36: -2.72494859e-06 + ArtUnc_37: -5.98982256e-05 + ArtUnc_38: 1.04036396e-05 + ArtUnc_39: 7.72019627e-05 + ArtUnc_40: 1.52205348e-06 + ArtUnc_41: 1.70937928e-05 + ArtUnc_42: 8.11450520e-07 + ArtUnc_43: -1.37152688e-05 + ArtUnc_44: 2.46209744e-04 + ArtUnc_45: -1.27302570e-06 + ArtUnc_46: 1.16439131e-05 + ArtUnc_47: 1.62997891e-06 + ArtUnc_48: -2.28092951e-07 + ArtUnc_49: -3.63457671e-05 + ArtUnc_50: -2.44225713e-06 + ArtUnc_51: -6.82212272e-08 + ArtUnc_52: 5.97623474e-08 + ArtUnc_53: -1.84463102e-08 + ArtUnc_54: 2.47518521e-08 + ArtUnc_55: 1.13100380e-06 + ArtUnc_56: 1.07598203e-06 + ArtUnc_57: 3.07809502e-07 + ArtUnc_58: 6.81202371e-07 + ArtUnc_59: -7.96067222e-09 + ArtUnc_60: -5.26791663e-07 + ArtUnc_61: -3.39970165e-10 + ArtUnc_62: -6.66560391e-09 + ArtUnc_63: 7.13880066e-10 + ArtUnc_64: -2.47758579e-06 + ArtUnc_65: 3.62428791e-08 + ArtUnc_66: 1.83846401e-06 + ArtUnc_67: 2.71814242e-08 + ArtUnc_68: -2.81932764e-08 + ArtUnc_69: -5.42760781e-10 + ArtUnc_70: 3.08466135e-09 + ArtUnc_71: -5.44715922e-11 + ArtUnc_72: -2.13022057e-08 + ArtUnc_73: -8.47153108e-10 + ArtUnc_74: -1.16288407e-08 + ArtUnc_75: 1.71701166e-08 + ArtUnc_76: -2.34153690e-10 + ArtUnc_77: -2.77831172e-10 + ArtUnc_78: 3.26021196e-08 + ArtUnc_79: 1.04635172e-08 + ArtUnc_80: -3.45024815e-10 + ArtUnc_81: 7.48215647e-10 + ArtUnc_82: 3.83705278e-11 + ArtUnc_83: -3.24712166e-11 + ArtUnc_84: -1.42831484e-09 + ArtUnc_85: 2.31676622e-11 + ArtUnc_86: 6.90348529e-11 + ArtUnc_87: 6.46382494e-11 + ArtUnc_88: 6.41335736e-12 + ArtUnc_89: 3.63659341e-10 + ArtUnc_90: -2.59400322e-10 + ArtUnc_91: 6.45700092e-11 + ArtUnc_92: 1.23505298e-09 + ArtUnc_93: -1.15143544e-11 + ArtUnc_94: -3.21501434e-11 + ArtUnc_95: -9.74700949e-11 + ArtUnc_96: -6.13312602e-11 - stat: 0 Uncorr: 0.000155 - RCES: 0.00021895498823959234 - ElEn: 0.00016838023191574478 - ElTh: 6.708116352598545e-05 - Lumi: 0.00011935 + RCES: 2.18954988e-04 + ElEn: 1.68380232e-04 + ElTh: 6.70811635e-05 + Lumi: 1.19350000e-04 LArN: 9.3e-05 StatMC: 0.000186 - RadErr: 7.285e-05 - Model_1: 0.00038798949083705865 - Model_2: 0.00038798949083705865 - ModelRW_1: 0.00040114167696712845 - ModelRW_2: 0.00040114167696712845 - JES_1: 0.0003417438052657282 - JES_2: 0.0003417438052657282 - ArtUnc_1: 3.72574843754151e-13 - ArtUnc_2: -5.5762134156865614e-11 - ArtUnc_3: -1.8792997287274888e-10 - ArtUnc_4: -4.5867840932993047e-10 - ArtUnc_5: -1.4436446732121365e-11 - ArtUnc_6: 1.867396902546295e-11 - ArtUnc_7: -2.3048097772345663e-09 - ArtUnc_8: 7.845765890473015e-10 - ArtUnc_9: 1.977290840908495e-09 - ArtUnc_10: -1.1619921967779412e-08 - ArtUnc_11: -3.343505219064145e-09 - ArtUnc_12: -1.858073969329258e-09 - ArtUnc_13: 6.893470512185661e-08 - ArtUnc_14: -8.552736714474256e-09 - ArtUnc_15: 1.584680464086288e-08 - ArtUnc_16: -4.681586319467342e-10 - ArtUnc_17: 2.577357061816638e-08 - ArtUnc_18: -1.3883467658975774e-09 - ArtUnc_19: -1.0772612664045383e-07 - ArtUnc_20: 9.127921594949682e-08 - ArtUnc_21: -6.69780382479327e-11 - ArtUnc_22: -1.1270512654920153e-07 - ArtUnc_23: -1.33234118677314e-09 - ArtUnc_24: -1.555632830104435e-06 - ArtUnc_25: 7.606353978765029e-07 - ArtUnc_26: -3.851083482718545e-07 - ArtUnc_27: -1.4525484734098774e-06 - ArtUnc_28: -5.0885052975844806e-08 - ArtUnc_29: -1.61172054026889e-06 - ArtUnc_30: -4.1133548073345233e-07 - ArtUnc_31: 1.6983994409471313e-07 - ArtUnc_32: 1.6892305922854216e-06 - ArtUnc_33: -1.457067664224312e-10 - ArtUnc_34: 8.989143287517297e-08 - ArtUnc_35: -8.88695551901891e-08 - ArtUnc_36: -7.18178209779854e-07 - ArtUnc_37: -2.0778125037738755e-06 - ArtUnc_38: 3.6391782595336935e-07 - ArtUnc_39: 2.7286713820166425e-06 - ArtUnc_40: 5.455195979650584e-08 - ArtUnc_41: 7.549069678202054e-06 - ArtUnc_42: 7.453588459557469e-08 - ArtUnc_43: -1.1101608282611014e-05 - ArtUnc_44: 2.001257463619583e-06 - ArtUnc_45: -2.7433672163892875e-08 - ArtUnc_46: -9.517229932447282e-07 - ArtUnc_47: 5.589666364914897e-07 - ArtUnc_48: -2.4944416287900184e-08 - ArtUnc_49: -2.347177907621313e-05 - ArtUnc_50: -1.4282041253317663e-06 - ArtUnc_51: 4.788002977745001e-07 - ArtUnc_52: 8.903094382816588e-07 - ArtUnc_53: -1.2459460515372746e-07 - ArtUnc_54: 8.14925320564319e-08 - ArtUnc_55: 1.2594223585421794e-05 - ArtUnc_56: 1.4274865327025676e-05 - ArtUnc_57: 4.174072422605024e-06 - ArtUnc_58: 2.230354844345179e-05 - ArtUnc_59: -2.190809742086046e-07 - ArtUnc_60: -1.8910934551201536e-05 - ArtUnc_61: -1.094479673965532e-08 - ArtUnc_62: -6.893892056174763e-08 - ArtUnc_63: 5.82376697707184e-09 - ArtUnc_64: 5.660326229221998e-05 - ArtUnc_65: -8.015406273538802e-07 - ArtUnc_66: -3.968347141017291e-05 - ArtUnc_67: -5.263076671626725e-07 - ArtUnc_68: 3.5855468780181044e-07 - ArtUnc_69: 1.0173186218331753e-08 - ArtUnc_70: -1.2295317660275172e-07 - ArtUnc_71: -2.4793314171900886e-09 - ArtUnc_72: -6.571712548162341e-07 - ArtUnc_73: -4.7783870276875176e-08 - ArtUnc_74: -1.005910223108769e-07 - ArtUnc_75: 8.417761885970648e-07 - ArtUnc_76: 8.396096597475887e-09 - ArtUnc_77: 7.423005449611018e-09 - ArtUnc_78: -1.1325365974715549e-07 - ArtUnc_79: -4.231882205546767e-08 - ArtUnc_80: 6.129071591428702e-09 - ArtUnc_81: -9.456587992687747e-09 - ArtUnc_82: -1.5188352334206963e-10 - ArtUnc_83: 5.014588526357662e-09 - ArtUnc_84: -1.1798190978592541e-08 - ArtUnc_85: -2.631729931570385e-10 - ArtUnc_86: 1.9245738468918398e-11 - ArtUnc_87: 2.5939757535041884e-10 - ArtUnc_88: 1.2062301518547448e-09 - ArtUnc_89: 2.027714838316177e-08 - ArtUnc_90: -3.0170830838406754e-09 - ArtUnc_91: -1.0921148670096631e-09 - ArtUnc_92: -2.351887988493733e-08 - ArtUnc_93: 4.3944548208894744e-10 - ArtUnc_94: 3.7330271507787496e-10 - ArtUnc_95: -3.296110908263646e-09 - ArtUnc_96: 4.3659842526486204e-11 + RadErr: 7.28500000e-05 + Model_1: 3.87989491e-04 + Model_2: 3.87989491e-04 + ModelRW_1: 4.01141677e-04 + ModelRW_2: 4.01141677e-04 + JES_1: 3.41743805e-04 + JES_2: 3.41743805e-04 + ArtUnc_1: 3.72574844e-13 + ArtUnc_2: -5.57621342e-11 + ArtUnc_3: -1.87929973e-10 + ArtUnc_4: -4.58678409e-10 + ArtUnc_5: -1.44364467e-11 + ArtUnc_6: 1.86739690e-11 + ArtUnc_7: -2.30480978e-09 + ArtUnc_8: 7.84576589e-10 + ArtUnc_9: 1.97729084e-09 + ArtUnc_10: -1.16199220e-08 + ArtUnc_11: -3.34350522e-09 + ArtUnc_12: -1.85807397e-09 + ArtUnc_13: 6.89347051e-08 + ArtUnc_14: -8.55273671e-09 + ArtUnc_15: 1.58468046e-08 + ArtUnc_16: -4.68158632e-10 + ArtUnc_17: 2.57735706e-08 + ArtUnc_18: -1.38834677e-09 + ArtUnc_19: -1.07726127e-07 + ArtUnc_20: 9.12792159e-08 + ArtUnc_21: -6.69780382e-11 + ArtUnc_22: -1.12705127e-07 + ArtUnc_23: -1.33234119e-09 + ArtUnc_24: -1.55563283e-06 + ArtUnc_25: 7.60635398e-07 + ArtUnc_26: -3.85108348e-07 + ArtUnc_27: -1.45254847e-06 + ArtUnc_28: -5.08850530e-08 + ArtUnc_29: -1.61172054e-06 + ArtUnc_30: -4.11335481e-07 + ArtUnc_31: 1.69839944e-07 + ArtUnc_32: 1.68923059e-06 + ArtUnc_33: -1.45706766e-10 + ArtUnc_34: 8.98914329e-08 + ArtUnc_35: -8.88695552e-08 + ArtUnc_36: -7.18178210e-07 + ArtUnc_37: -2.07781250e-06 + ArtUnc_38: 3.63917826e-07 + ArtUnc_39: 2.72867138e-06 + ArtUnc_40: 5.45519598e-08 + ArtUnc_41: 7.54906968e-06 + ArtUnc_42: 7.45358846e-08 + ArtUnc_43: -1.11016083e-05 + ArtUnc_44: 2.00125746e-06 + ArtUnc_45: -2.74336722e-08 + ArtUnc_46: -9.51722993e-07 + ArtUnc_47: 5.58966636e-07 + ArtUnc_48: -2.49444163e-08 + ArtUnc_49: -2.34717791e-05 + ArtUnc_50: -1.42820413e-06 + ArtUnc_51: 4.78800298e-07 + ArtUnc_52: 8.90309438e-07 + ArtUnc_53: -1.24594605e-07 + ArtUnc_54: 8.14925321e-08 + ArtUnc_55: 1.25942236e-05 + ArtUnc_56: 1.42748653e-05 + ArtUnc_57: 4.17407242e-06 + ArtUnc_58: 2.23035484e-05 + ArtUnc_59: -2.19080974e-07 + ArtUnc_60: -1.89109346e-05 + ArtUnc_61: -1.09447967e-08 + ArtUnc_62: -6.89389206e-08 + ArtUnc_63: 5.82376698e-09 + ArtUnc_64: 5.66032623e-05 + ArtUnc_65: -8.01540627e-07 + ArtUnc_66: -3.96834714e-05 + ArtUnc_67: -5.26307667e-07 + ArtUnc_68: 3.58554688e-07 + ArtUnc_69: 1.01731862e-08 + ArtUnc_70: -1.22953177e-07 + ArtUnc_71: -2.47933142e-09 + ArtUnc_72: -6.57171255e-07 + ArtUnc_73: -4.77838703e-08 + ArtUnc_74: -1.00591022e-07 + ArtUnc_75: 8.41776189e-07 + ArtUnc_76: 8.39609660e-09 + ArtUnc_77: 7.42300545e-09 + ArtUnc_78: -1.13253660e-07 + ArtUnc_79: -4.23188221e-08 + ArtUnc_80: 6.12907159e-09 + ArtUnc_81: -9.45658799e-09 + ArtUnc_82: -1.51883523e-10 + ArtUnc_83: 5.01458853e-09 + ArtUnc_84: -1.17981910e-08 + ArtUnc_85: -2.63172993e-10 + ArtUnc_86: 1.92457385e-11 + ArtUnc_87: 2.59397575e-10 + ArtUnc_88: 1.20623015e-09 + ArtUnc_89: 2.02771484e-08 + ArtUnc_90: -3.01708308e-09 + ArtUnc_91: -1.09211487e-09 + ArtUnc_92: -2.35188799e-08 + ArtUnc_93: 4.39445482e-10 + ArtUnc_94: 3.73302715e-10 + ArtUnc_95: -3.29611091e-09 + ArtUnc_96: 4.36598425e-11 - stat: 0 Uncorr: 2.91e-05 - RCES: 3.286464642666949e-05 - ElEn: 1.5526288569712983e-05 - ElTh: 7.128015151499048e-07 - Lumi: 2.2407e-05 - LArN: 1.746e-05 - StatMC: 7.0713e-05 - RadErr: 3.8703000000000005e-05 - Model_1: 7.078421722389814e-05 - Model_2: 7.078421722389814e-05 - ModelRW_1: 7.345920217712685e-05 - ModelRW_2: 7.345920217712685e-05 - JES_1: 0.00011410169001377672 - JES_2: 0.00011410169001377672 - ArtUnc_1: -5.241462259945504e-15 - ArtUnc_2: 8.207592964730536e-13 - ArtUnc_3: 3.847729041683561e-12 - ArtUnc_4: 1.3792222266569431e-11 - ArtUnc_5: 5.052176641803228e-13 - ArtUnc_6: 2.249495667603643e-14 - ArtUnc_7: 6.265328750309011e-11 - ArtUnc_8: -2.377277478183806e-10 - ArtUnc_9: -3.167587896563486e-12 - ArtUnc_10: -9.980068575788724e-12 - ArtUnc_11: 8.486503372824655e-11 - ArtUnc_12: 1.4472528442572177e-11 - ArtUnc_13: 1.9485505226517446e-10 - ArtUnc_14: 1.3385041148049875e-11 - ArtUnc_15: 1.2777939886617276e-11 - ArtUnc_16: -1.4594414874811343e-12 - ArtUnc_17: -7.622530132064897e-12 - ArtUnc_18: -3.3382254149254044e-13 - ArtUnc_19: 4.1744491889578663e-10 - ArtUnc_20: -1.458526363026746e-10 - ArtUnc_21: -1.2183263999339942e-10 - ArtUnc_22: 2.970142757468545e-09 - ArtUnc_23: 2.2299854903822662e-10 - ArtUnc_24: 7.119878894173299e-10 - ArtUnc_25: -4.04907482471203e-09 - ArtUnc_26: 1.362777303429574e-09 - ArtUnc_27: 7.095862095533802e-09 - ArtUnc_28: -5.718772664874926e-10 - ArtUnc_29: -3.751773345438866e-09 - ArtUnc_30: -2.9515041503778913e-09 - ArtUnc_31: 1.1378459995070667e-09 - ArtUnc_32: 2.1546215977208804e-08 - ArtUnc_33: -2.5580061091301333e-11 - ArtUnc_34: -7.500012142866035e-10 - ArtUnc_35: -8.728016111705376e-09 - ArtUnc_36: 1.4591722382626946e-08 - ArtUnc_37: -1.5180310001887374e-07 - ArtUnc_38: 2.908727650187965e-08 - ArtUnc_39: 2.400366075531249e-07 - ArtUnc_40: 3.6335764936557314e-09 - ArtUnc_41: -1.7897560141455276e-07 - ArtUnc_42: 3.862399379342501e-09 - ArtUnc_43: 3.891403788701593e-07 - ArtUnc_44: -3.012756355155561e-07 - ArtUnc_45: 2.2701893778899755e-10 - ArtUnc_46: 3.043726544595362e-08 - ArtUnc_47: -6.82161911121795e-08 - ArtUnc_48: 5.213033624694447e-09 - ArtUnc_49: 7.909571133748741e-07 - ArtUnc_50: -4.000696485508816e-09 - ArtUnc_51: 1.2244715995664577e-07 - ArtUnc_52: -2.387388760086234e-08 - ArtUnc_53: -1.3473575118922905e-08 - ArtUnc_54: 2.9872328342697794e-08 - ArtUnc_55: -1.581319061040107e-06 - ArtUnc_56: 1.933241606756599e-06 - ArtUnc_57: 4.697845033799855e-07 - ArtUnc_58: -3.308935751188501e-06 - ArtUnc_59: 1.8756063896365827e-07 - ArtUnc_60: -3.6319870239236007e-06 - ArtUnc_61: 8.974999862891205e-09 - ArtUnc_62: -3.2100263389846357e-07 - ArtUnc_63: 3.687766345572873e-08 - ArtUnc_64: -7.773053107356384e-06 - ArtUnc_65: 6.977881398509863e-07 - ArtUnc_66: -8.346360521631696e-06 - ArtUnc_67: -3.417827012533332e-07 - ArtUnc_68: -4.126287864727083e-07 - ArtUnc_69: 3.5351700709203385e-09 - ArtUnc_70: -4.836847420599969e-07 - ArtUnc_71: -2.5243277693506292e-08 - ArtUnc_72: -5.773132591863485e-06 - ArtUnc_73: -4.681112618505477e-07 - ArtUnc_74: -1.577039913530142e-06 - ArtUnc_75: 9.86917479891918e-06 - ArtUnc_76: 7.128038724576999e-08 - ArtUnc_77: -3.1454011412941795e-08 - ArtUnc_78: 1.8891715977876717e-05 - ArtUnc_79: 1.349982111950535e-05 - ArtUnc_80: -7.125930552507109e-08 - ArtUnc_81: 4.94833375371924e-07 - ArtUnc_82: 3.523517435289861e-08 - ArtUnc_83: -5.926496319977509e-08 - ArtUnc_84: -1.4452008476412964e-07 - ArtUnc_85: 1.508320644838305e-08 - ArtUnc_86: 4.377923905507967e-09 - ArtUnc_87: 5.063614671791702e-09 - ArtUnc_88: 6.745731559486469e-09 - ArtUnc_89: 2.873263317578852e-07 - ArtUnc_90: -9.439684959935189e-08 - ArtUnc_91: -2.3971753920997772e-08 - ArtUnc_92: -4.26823292277409e-08 - ArtUnc_93: 1.5311556383332444e-09 - ArtUnc_94: -4.599464050398569e-10 - ArtUnc_95: -1.9906259590373583e-08 - ArtUnc_96: 2.321632159279879e-09 + RCES: 3.28646464e-05 + ElEn: 1.55262886e-05 + ElTh: 7.12801515e-07 + Lumi: 2.24070000e-05 + LArN: 1.74600000e-05 + StatMC: 7.07130000e-05 + RadErr: 3.87030000e-05 + Model_1: 7.07842172e-05 + Model_2: 7.07842172e-05 + ModelRW_1: 7.34592022e-05 + ModelRW_2: 7.34592022e-05 + JES_1: 1.14101690e-04 + JES_2: 1.14101690e-04 + ArtUnc_1: -5.24146226e-15 + ArtUnc_2: 8.20759296e-13 + ArtUnc_3: 3.84772904e-12 + ArtUnc_4: 1.37922223e-11 + ArtUnc_5: 5.05217664e-13 + ArtUnc_6: 2.24949567e-14 + ArtUnc_7: 6.26532875e-11 + ArtUnc_8: -2.37727748e-10 + ArtUnc_9: -3.16758790e-12 + ArtUnc_10: -9.98006858e-12 + ArtUnc_11: 8.48650337e-11 + ArtUnc_12: 1.44725284e-11 + ArtUnc_13: 1.94855052e-10 + ArtUnc_14: 1.33850411e-11 + ArtUnc_15: 1.27779399e-11 + ArtUnc_16: -1.45944149e-12 + ArtUnc_17: -7.62253013e-12 + ArtUnc_18: -3.33822541e-13 + ArtUnc_19: 4.17444919e-10 + ArtUnc_20: -1.45852636e-10 + ArtUnc_21: -1.21832640e-10 + ArtUnc_22: 2.97014276e-09 + ArtUnc_23: 2.22998549e-10 + ArtUnc_24: 7.11987889e-10 + ArtUnc_25: -4.04907482e-09 + ArtUnc_26: 1.36277730e-09 + ArtUnc_27: 7.09586210e-09 + ArtUnc_28: -5.71877266e-10 + ArtUnc_29: -3.75177335e-09 + ArtUnc_30: -2.95150415e-09 + ArtUnc_31: 1.13784600e-09 + ArtUnc_32: 2.15462160e-08 + ArtUnc_33: -2.55800611e-11 + ArtUnc_34: -7.50001214e-10 + ArtUnc_35: -8.72801611e-09 + ArtUnc_36: 1.45917224e-08 + ArtUnc_37: -1.51803100e-07 + ArtUnc_38: 2.90872765e-08 + ArtUnc_39: 2.40036608e-07 + ArtUnc_40: 3.63357649e-09 + ArtUnc_41: -1.78975601e-07 + ArtUnc_42: 3.86239938e-09 + ArtUnc_43: 3.89140379e-07 + ArtUnc_44: -3.01275636e-07 + ArtUnc_45: 2.27018938e-10 + ArtUnc_46: 3.04372654e-08 + ArtUnc_47: -6.82161911e-08 + ArtUnc_48: 5.21303362e-09 + ArtUnc_49: 7.90957113e-07 + ArtUnc_50: -4.00069649e-09 + ArtUnc_51: 1.22447160e-07 + ArtUnc_52: -2.38738876e-08 + ArtUnc_53: -1.34735751e-08 + ArtUnc_54: 2.98723283e-08 + ArtUnc_55: -1.58131906e-06 + ArtUnc_56: 1.93324161e-06 + ArtUnc_57: 4.69784503e-07 + ArtUnc_58: -3.30893575e-06 + ArtUnc_59: 1.87560639e-07 + ArtUnc_60: -3.63198702e-06 + ArtUnc_61: 8.97499986e-09 + ArtUnc_62: -3.21002634e-07 + ArtUnc_63: 3.68776635e-08 + ArtUnc_64: -7.77305311e-06 + ArtUnc_65: 6.97788140e-07 + ArtUnc_66: -8.34636052e-06 + ArtUnc_67: -3.41782701e-07 + ArtUnc_68: -4.12628786e-07 + ArtUnc_69: 3.53517007e-09 + ArtUnc_70: -4.83684742e-07 + ArtUnc_71: -2.52432777e-08 + ArtUnc_72: -5.77313259e-06 + ArtUnc_73: -4.68111262e-07 + ArtUnc_74: -1.57703991e-06 + ArtUnc_75: 9.86917480e-06 + ArtUnc_76: 7.12803872e-08 + ArtUnc_77: -3.14540114e-08 + ArtUnc_78: 1.88917160e-05 + ArtUnc_79: 1.34998211e-05 + ArtUnc_80: -7.12593055e-08 + ArtUnc_81: 4.94833375e-07 + ArtUnc_82: 3.52351744e-08 + ArtUnc_83: -5.92649632e-08 + ArtUnc_84: -1.44520085e-07 + ArtUnc_85: 1.50832064e-08 + ArtUnc_86: 4.37792391e-09 + ArtUnc_87: 5.06361467e-09 + ArtUnc_88: 6.74573156e-09 + ArtUnc_89: 2.87326332e-07 + ArtUnc_90: -9.43968496e-08 + ArtUnc_91: -2.39717539e-08 + ArtUnc_92: -4.26823292e-08 + ArtUnc_93: 1.53115564e-09 + ArtUnc_94: -4.59946405e-10 + ArtUnc_95: -1.99062596e-08 + ArtUnc_96: 2.32163216e-09 - stat: 0 Uncorr: 3.95e-06 - RCES: 1.5008128830737027e-05 - ElEn: 3.0013554571226647e-05 - ElTh: 1.1103277159807371e-05 - Lumi: 3.0415e-06 - LArN: 2.3699999999999998e-06 - StatMC: 3.1916000000000004e-05 - RadErr: 1.0902e-05 - Model_1: 8.267492485633115e-06 - Model_2: 8.267492485633115e-06 - ModelRW_1: 3.4969214139010906e-07 - ModelRW_2: 3.4969214139010906e-07 - JES_1: 2.009286126572694e-05 - JES_2: 2.009286126572694e-05 - ArtUnc_1: -1.9019991291243223e-17 - ArtUnc_2: 1.0507157366899366e-14 - ArtUnc_3: 7.405936115075455e-14 - ArtUnc_4: 4.1516782877622893e-13 - ArtUnc_5: 1.4607047978177815e-14 - ArtUnc_6: 3.987043331119774e-15 - ArtUnc_7: 2.9871234429873815e-12 - ArtUnc_8: -1.28901101419786e-11 - ArtUnc_9: 1.936248767826609e-13 - ArtUnc_10: -1.9130658824214493e-13 - ArtUnc_11: -3.400051045086563e-13 - ArtUnc_12: -3.6520029181094834e-14 - ArtUnc_13: 7.1714396580652244e-12 - ArtUnc_14: -1.2279063899775683e-13 - ArtUnc_15: 5.068030375999428e-14 - ArtUnc_16: 1.814635154565131e-15 - ArtUnc_17: -2.5823036770884942e-12 - ArtUnc_18: 7.732364342860023e-14 - ArtUnc_19: 1.0368599030336335e-11 - ArtUnc_20: 2.537794841164756e-11 - ArtUnc_21: -1.8355254578712134e-12 - ArtUnc_22: 3.23052714866025e-10 - ArtUnc_23: 6.571649960662051e-12 - ArtUnc_24: -1.315256411252612e-10 - ArtUnc_25: -2.5802325607447383e-10 - ArtUnc_26: 5.448016000703067e-11 - ArtUnc_27: 9.181928486933075e-10 - ArtUnc_28: 4.266311332429477e-11 - ArtUnc_29: 2.121381067959539e-10 - ArtUnc_30: 1.2336925894313725e-10 - ArtUnc_31: -5.0572066259762264e-11 - ArtUnc_32: 1.9897910843142253e-09 - ArtUnc_33: -5.964743379366253e-13 - ArtUnc_34: -4.2291022066909204e-11 - ArtUnc_35: -6.372771500145227e-11 - ArtUnc_36: 8.992438540225526e-10 - ArtUnc_37: -2.823869184278453e-09 - ArtUnc_38: 5.029805408362752e-10 - ArtUnc_39: 3.7603353015553514e-09 - ArtUnc_40: -1.522549579025299e-11 - ArtUnc_41: -1.553079400463468e-08 - ArtUnc_42: 1.1200097112152992e-10 - ArtUnc_43: 3.320458370959093e-08 - ArtUnc_44: 1.612778691079218e-08 - ArtUnc_45: -1.9434751816654295e-10 - ArtUnc_46: 4.818719281818341e-09 - ArtUnc_47: -3.5936833342592e-10 - ArtUnc_48: -1.4452431492510908e-11 - ArtUnc_49: 1.156191469303947e-07 - ArtUnc_50: 3.095265809797049e-09 - ArtUnc_51: -1.990250058016618e-09 - ArtUnc_52: 1.0551540835680762e-09 - ArtUnc_53: 2.583986842251015e-11 - ArtUnc_54: -2.7359896160844426e-10 - ArtUnc_55: -1.714666851039895e-08 - ArtUnc_56: -9.346685172236354e-09 - ArtUnc_57: -2.2964573279275797e-09 - ArtUnc_58: -2.541050169654537e-08 - ArtUnc_59: 2.4527977931268276e-10 - ArtUnc_60: 4.26908642864609e-08 - ArtUnc_61: 1.0006795078580084e-10 - ArtUnc_62: -1.5073637832204924e-09 - ArtUnc_63: 3.8752541563071965e-11 - ArtUnc_64: -7.557892352678078e-08 - ArtUnc_65: -7.762771204776205e-09 - ArtUnc_66: 2.1676490443910404e-07 - ArtUnc_67: 3.088925173796808e-08 - ArtUnc_68: -3.7773234498553116e-08 - ArtUnc_69: -9.873502259301812e-09 - ArtUnc_70: 2.373128831845414e-07 - ArtUnc_71: 2.8574018820224212e-09 - ArtUnc_72: -7.728916750927325e-08 - ArtUnc_73: -1.8004829794967403e-08 - ArtUnc_74: 1.1896352758006183e-06 - ArtUnc_75: 2.2098648925167571e-07 - ArtUnc_76: 2.7860180711512064e-08 - ArtUnc_77: 7.187084774475774e-08 - ArtUnc_78: 2.2916415135354548e-06 - ArtUnc_79: -4.401578860181456e-06 - ArtUnc_80: 8.779094540533577e-08 - ArtUnc_81: -1.1345022521150932e-07 - ArtUnc_82: -1.1381576922669683e-08 - ArtUnc_83: 3.163933993362474e-07 - ArtUnc_84: -1.3329149678621743e-06 - ArtUnc_85: -2.135394470958957e-08 - ArtUnc_86: 5.592598844023283e-08 - ArtUnc_87: 1.0941707459513449e-07 - ArtUnc_88: 1.1376874495446983e-07 - ArtUnc_89: 2.6704569588183046e-06 - ArtUnc_90: -4.823102494690392e-07 - ArtUnc_91: 1.4649026332982186e-07 - ArtUnc_92: -8.784470317925978e-06 - ArtUnc_93: 3.280591100098844e-08 - ArtUnc_94: 1.8810024653809077e-07 - ArtUnc_95: -4.025966804622898e-07 - ArtUnc_96: -1.8317314419579824e-08 + RCES: 1.50081288e-05 + ElEn: 3.00135546e-05 + ElTh: 1.11032772e-05 + Lumi: 3.04150000e-06 + LArN: 2.37000000e-06 + StatMC: 3.19160000e-05 + RadErr: 1.09020000e-05 + Model_1: 8.26749249e-06 + Model_2: 8.26749249e-06 + ModelRW_1: 3.49692141e-07 + ModelRW_2: 3.49692141e-07 + JES_1: 2.00928613e-05 + JES_2: 2.00928613e-05 + ArtUnc_1: -1.90199913e-17 + ArtUnc_2: 1.05071574e-14 + ArtUnc_3: 7.40593612e-14 + ArtUnc_4: 4.15167829e-13 + ArtUnc_5: 1.46070480e-14 + ArtUnc_6: 3.98704333e-15 + ArtUnc_7: 2.98712344e-12 + ArtUnc_8: -1.28901101e-11 + ArtUnc_9: 1.93624877e-13 + ArtUnc_10: -1.91306588e-13 + ArtUnc_11: -3.40005105e-13 + ArtUnc_12: -3.65200292e-14 + ArtUnc_13: 7.17143966e-12 + ArtUnc_14: -1.22790639e-13 + ArtUnc_15: 5.06803038e-14 + ArtUnc_16: 1.81463515e-15 + ArtUnc_17: -2.58230368e-12 + ArtUnc_18: 7.73236434e-14 + ArtUnc_19: 1.03685990e-11 + ArtUnc_20: 2.53779484e-11 + ArtUnc_21: -1.83552546e-12 + ArtUnc_22: 3.23052715e-10 + ArtUnc_23: 6.57164996e-12 + ArtUnc_24: -1.31525641e-10 + ArtUnc_25: -2.58023256e-10 + ArtUnc_26: 5.44801600e-11 + ArtUnc_27: 9.18192849e-10 + ArtUnc_28: 4.26631133e-11 + ArtUnc_29: 2.12138107e-10 + ArtUnc_30: 1.23369259e-10 + ArtUnc_31: -5.05720663e-11 + ArtUnc_32: 1.98979108e-09 + ArtUnc_33: -5.96474338e-13 + ArtUnc_34: -4.22910221e-11 + ArtUnc_35: -6.37277150e-11 + ArtUnc_36: 8.99243854e-10 + ArtUnc_37: -2.82386918e-09 + ArtUnc_38: 5.02980541e-10 + ArtUnc_39: 3.76033530e-09 + ArtUnc_40: -1.52254958e-11 + ArtUnc_41: -1.55307940e-08 + ArtUnc_42: 1.12000971e-10 + ArtUnc_43: 3.32045837e-08 + ArtUnc_44: 1.61277869e-08 + ArtUnc_45: -1.94347518e-10 + ArtUnc_46: 4.81871928e-09 + ArtUnc_47: -3.59368333e-10 + ArtUnc_48: -1.44524315e-11 + ArtUnc_49: 1.15619147e-07 + ArtUnc_50: 3.09526581e-09 + ArtUnc_51: -1.99025006e-09 + ArtUnc_52: 1.05515408e-09 + ArtUnc_53: 2.58398684e-11 + ArtUnc_54: -2.73598962e-10 + ArtUnc_55: -1.71466685e-08 + ArtUnc_56: -9.34668517e-09 + ArtUnc_57: -2.29645733e-09 + ArtUnc_58: -2.54105017e-08 + ArtUnc_59: 2.45279779e-10 + ArtUnc_60: 4.26908643e-08 + ArtUnc_61: 1.00067951e-10 + ArtUnc_62: -1.50736378e-09 + ArtUnc_63: 3.87525416e-11 + ArtUnc_64: -7.55789235e-08 + ArtUnc_65: -7.76277120e-09 + ArtUnc_66: 2.16764904e-07 + ArtUnc_67: 3.08892517e-08 + ArtUnc_68: -3.77732345e-08 + ArtUnc_69: -9.87350226e-09 + ArtUnc_70: 2.37312883e-07 + ArtUnc_71: 2.85740188e-09 + ArtUnc_72: -7.72891675e-08 + ArtUnc_73: -1.80048298e-08 + ArtUnc_74: 1.18963528e-06 + ArtUnc_75: 2.20986489e-07 + ArtUnc_76: 2.78601807e-08 + ArtUnc_77: 7.18708477e-08 + ArtUnc_78: 2.29164151e-06 + ArtUnc_79: -4.40157886e-06 + ArtUnc_80: 8.77909454e-08 + ArtUnc_81: -1.13450225e-07 + ArtUnc_82: -1.13815769e-08 + ArtUnc_83: 3.16393399e-07 + ArtUnc_84: -1.33291497e-06 + ArtUnc_85: -2.13539447e-08 + ArtUnc_86: 5.59259884e-08 + ArtUnc_87: 1.09417075e-07 + ArtUnc_88: 1.13768745e-07 + ArtUnc_89: 2.67045696e-06 + ArtUnc_90: -4.82310249e-07 + ArtUnc_91: 1.46490263e-07 + ArtUnc_92: -8.78447032e-06 + ArtUnc_93: 3.28059110e-08 + ArtUnc_94: 1.88100247e-07 + ArtUnc_95: -4.02596680e-07 + ArtUnc_96: -1.83173144e-08 - stat: 0 Uncorr: 8.53e-07 - RCES: 2.9690374075573715e-06 - ElEn: 1.6034301391937845e-06 - ElTh: 1.6375100785873044e-06 - Lumi: 6.5681e-07 - LArN: 5.118e-07 - StatMC: 1.2547630000000002e-05 - RadErr: 4.3332400000000005e-06 - Model_1: 8.082371930318476e-07 - Model_2: 8.082371930318476e-07 - ModelRW_1: 1.142388987762925e-05 - ModelRW_2: 1.142388987762925e-05 - JES_1: 5.903502630307705e-06 - JES_2: 5.903502630307705e-06 - ArtUnc_1: 2.35927203457836e-20 - ArtUnc_2: -5.922629161146333e-18 - ArtUnc_3: -1.8819435998532412e-17 - ArtUnc_4: 3.158187577786074e-17 - ArtUnc_5: 1.5937576017366522e-18 - ArtUnc_6: 3.289342185321362e-18 - ArtUnc_7: 1.2239723672715737e-15 - ArtUnc_8: -2.2074775992870183e-14 - ArtUnc_9: 6.704927999036726e-16 - ArtUnc_10: 2.7699408858070488e-14 - ArtUnc_11: -5.873909050903443e-14 - ArtUnc_12: -4.664676081797592e-15 - ArtUnc_13: -3.2082494641071664e-14 - ArtUnc_14: -2.7683369430503856e-15 - ArtUnc_15: 7.564761722243567e-15 - ArtUnc_16: -4.898938440266008e-16 - ArtUnc_17: -7.0621030270174545e-15 - ArtUnc_18: 5.255133824119982e-16 - ArtUnc_19: 1.636309256674278e-14 - ArtUnc_20: -2.388984636576834e-13 - ArtUnc_21: 2.0807479147216883e-14 - ArtUnc_22: -5.297202828927104e-12 - ArtUnc_23: -1.9082778121082117e-13 - ArtUnc_24: 6.039201406219987e-12 - ArtUnc_25: 2.6715907554250054e-12 - ArtUnc_26: -2.7966393291241113e-13 - ArtUnc_27: -1.9072862813516748e-11 - ArtUnc_28: -3.1805753329792926e-13 - ArtUnc_29: 2.342851279537203e-12 - ArtUnc_30: -2.1374606682004223e-13 - ArtUnc_31: 1.0815260616289436e-13 - ArtUnc_32: -1.9686397571900833e-11 - ArtUnc_33: -1.5636800167330968e-14 - ArtUnc_34: 4.9413977886084574e-12 - ArtUnc_35: 3.43431542246607e-12 - ArtUnc_36: -4.797358782039034e-11 - ArtUnc_37: 5.773888609003612e-11 - ArtUnc_38: -9.251216849801803e-12 - ArtUnc_39: -6.909058451839399e-11 - ArtUnc_40: 1.6925117406345058e-12 - ArtUnc_41: 3.7053698468647157e-10 - ArtUnc_42: 1.855392905824653e-11 - ArtUnc_43: -4.846323282584783e-10 - ArtUnc_44: -3.327459492762007e-11 - ArtUnc_45: 7.597393152306623e-13 - ArtUnc_46: -6.897334913058715e-11 - ArtUnc_47: 1.5566079258656675e-10 - ArtUnc_48: -7.485089687541113e-12 - ArtUnc_49: -4.1862286539354177e-10 - ArtUnc_50: 6.302238876174077e-11 - ArtUnc_51: -9.653027877636256e-10 - ArtUnc_52: 5.72165799063931e-10 - ArtUnc_53: -2.489573684983785e-11 - ArtUnc_54: -7.617696381330824e-11 - ArtUnc_55: -1.3478870594901272e-08 - ArtUnc_56: 1.2402321011988667e-08 - ArtUnc_57: 3.5571456105850805e-09 - ArtUnc_58: -2.556150908248414e-08 - ArtUnc_59: -1.2383163719166848e-10 - ArtUnc_60: -3.2222219760101495e-08 - ArtUnc_61: -5.2251288050979926e-12 - ArtUnc_62: -8.97457198223341e-10 - ArtUnc_63: 9.440574608420388e-11 - ArtUnc_64: -2.448031875497111e-08 - ArtUnc_65: 1.042472983643038e-09 - ArtUnc_66: -3.5166796463923804e-08 - ArtUnc_67: 3.52988122038554e-10 - ArtUnc_68: 1.992668957386929e-09 - ArtUnc_69: -3.938321250102191e-10 - ArtUnc_70: 9.539111780811317e-09 - ArtUnc_71: 2.266615073220808e-10 - ArtUnc_72: 4.3344959477670267e-08 - ArtUnc_73: 3.439910778665954e-09 - ArtUnc_74: 3.766214542747073e-08 - ArtUnc_75: -8.853833025974996e-08 - ArtUnc_76: -5.07855697525207e-10 - ArtUnc_77: 2.6350754104537003e-09 - ArtUnc_78: -5.219583627350703e-08 - ArtUnc_79: -1.9286320867927353e-07 - ArtUnc_80: 2.0279690969114773e-09 - ArtUnc_81: -7.292739062847744e-09 - ArtUnc_82: -5.170141903927744e-10 - ArtUnc_83: 2.2541666134281235e-08 - ArtUnc_84: -3.9693062371755816e-08 - ArtUnc_85: 2.686872478207075e-06 - ArtUnc_86: 4.141473619815568e-07 - ArtUnc_87: 7.862979078955503e-07 - ArtUnc_88: 1.1721011470516791e-08 - ArtUnc_89: 4.4423448886381265e-08 - ArtUnc_90: 2.651165675700547e-07 - ArtUnc_91: -1.6784554078079242e-06 - ArtUnc_92: -1.550500835139394e-08 - ArtUnc_93: 1.9257018402611466e-08 - ArtUnc_94: 2.2281251523428708e-08 - ArtUnc_95: -8.447286155149897e-07 - ArtUnc_96: -1.7506003847933434e-07 + RCES: 2.96903741e-06 + ElEn: 1.60343014e-06 + ElTh: 1.63751008e-06 + Lumi: 6.56810000e-07 + LArN: 5.11800000e-07 + StatMC: 1.25476300e-05 + RadErr: 4.33324000e-06 + Model_1: 8.08237193e-07 + Model_2: 8.08237193e-07 + ModelRW_1: 1.14238899e-05 + ModelRW_2: 1.14238899e-05 + JES_1: 5.90350263e-06 + JES_2: 5.90350263e-06 + ArtUnc_1: 2.35927203e-20 + ArtUnc_2: -5.92262916e-18 + ArtUnc_3: -1.88194360e-17 + ArtUnc_4: 3.15818758e-17 + ArtUnc_5: 1.59375760e-18 + ArtUnc_6: 3.28934219e-18 + ArtUnc_7: 1.22397237e-15 + ArtUnc_8: -2.20747760e-14 + ArtUnc_9: 6.70492800e-16 + ArtUnc_10: 2.76994089e-14 + ArtUnc_11: -5.87390905e-14 + ArtUnc_12: -4.66467608e-15 + ArtUnc_13: -3.20824946e-14 + ArtUnc_14: -2.76833694e-15 + ArtUnc_15: 7.56476172e-15 + ArtUnc_16: -4.89893844e-16 + ArtUnc_17: -7.06210303e-15 + ArtUnc_18: 5.25513382e-16 + ArtUnc_19: 1.63630926e-14 + ArtUnc_20: -2.38898464e-13 + ArtUnc_21: 2.08074791e-14 + ArtUnc_22: -5.29720283e-12 + ArtUnc_23: -1.90827781e-13 + ArtUnc_24: 6.03920141e-12 + ArtUnc_25: 2.67159076e-12 + ArtUnc_26: -2.79663933e-13 + ArtUnc_27: -1.90728628e-11 + ArtUnc_28: -3.18057533e-13 + ArtUnc_29: 2.34285128e-12 + ArtUnc_30: -2.13746067e-13 + ArtUnc_31: 1.08152606e-13 + ArtUnc_32: -1.96863976e-11 + ArtUnc_33: -1.56368002e-14 + ArtUnc_34: 4.94139779e-12 + ArtUnc_35: 3.43431542e-12 + ArtUnc_36: -4.79735878e-11 + ArtUnc_37: 5.77388861e-11 + ArtUnc_38: -9.25121685e-12 + ArtUnc_39: -6.90905845e-11 + ArtUnc_40: 1.69251174e-12 + ArtUnc_41: 3.70536985e-10 + ArtUnc_42: 1.85539291e-11 + ArtUnc_43: -4.84632328e-10 + ArtUnc_44: -3.32745949e-11 + ArtUnc_45: 7.59739315e-13 + ArtUnc_46: -6.89733491e-11 + ArtUnc_47: 1.55660793e-10 + ArtUnc_48: -7.48508969e-12 + ArtUnc_49: -4.18622865e-10 + ArtUnc_50: 6.30223888e-11 + ArtUnc_51: -9.65302788e-10 + ArtUnc_52: 5.72165799e-10 + ArtUnc_53: -2.48957368e-11 + ArtUnc_54: -7.61769638e-11 + ArtUnc_55: -1.34788706e-08 + ArtUnc_56: 1.24023210e-08 + ArtUnc_57: 3.55714561e-09 + ArtUnc_58: -2.55615091e-08 + ArtUnc_59: -1.23831637e-10 + ArtUnc_60: -3.22222198e-08 + ArtUnc_61: -5.22512881e-12 + ArtUnc_62: -8.97457198e-10 + ArtUnc_63: 9.44057461e-11 + ArtUnc_64: -2.44803188e-08 + ArtUnc_65: 1.04247298e-09 + ArtUnc_66: -3.51667965e-08 + ArtUnc_67: 3.52988122e-10 + ArtUnc_68: 1.99266896e-09 + ArtUnc_69: -3.93832125e-10 + ArtUnc_70: 9.53911178e-09 + ArtUnc_71: 2.26661507e-10 + ArtUnc_72: 4.33449595e-08 + ArtUnc_73: 3.43991078e-09 + ArtUnc_74: 3.76621454e-08 + ArtUnc_75: -8.85383303e-08 + ArtUnc_76: -5.07855698e-10 + ArtUnc_77: 2.63507541e-09 + ArtUnc_78: -5.21958363e-08 + ArtUnc_79: -1.92863209e-07 + ArtUnc_80: 2.02796910e-09 + ArtUnc_81: -7.29273906e-09 + ArtUnc_82: -5.17014190e-10 + ArtUnc_83: 2.25416661e-08 + ArtUnc_84: -3.96930624e-08 + ArtUnc_85: 2.68687248e-06 + ArtUnc_86: 4.14147362e-07 + ArtUnc_87: 7.86297908e-07 + ArtUnc_88: 1.17210115e-08 + ArtUnc_89: 4.44234489e-08 + ArtUnc_90: 2.65116568e-07 + ArtUnc_91: -1.67845541e-06 + ArtUnc_92: -1.55050084e-08 + ArtUnc_93: 1.92570184e-08 + ArtUnc_94: 2.22812515e-08 + ArtUnc_95: -8.44728616e-07 + ArtUnc_96: -1.75060038e-07 diff --git a/nnpdf_data/nnpdf_data/commondata/H1_2JET_319GEV_351PB-1_DIF/data.yaml b/nnpdf_data/nnpdf_data/commondata/H1_2JET_319GEV_351PB-1_DIF/data.yaml index 5ad720ef91..0aacf98b3e 100644 --- a/nnpdf_data/nnpdf_data/commondata/H1_2JET_319GEV_351PB-1_DIF/data.yaml +++ b/nnpdf_data/nnpdf_data/commondata/H1_2JET_319GEV_351PB-1_DIF/data.yaml @@ -1,25 +1,25 @@ data_central: -- 23.32986433245 -- 13.5999898034 -- 3.569995537501 -- 0.4187346492079 -- 18.15435885215 -- 12.3813876 -- 2.951471313606 -- 0.3848578386965 +- 2.33298643e+01 +- 1.35999898e+01 +- 3.56999554e+00 +- 4.18734649e-01 +- 1.81543589e+01 +- 1.23813876e+01 +- 2.95147131e+00 +- 3.84857839e-01 - 18.29085 - 11.29435 -- 3.78481994145 -- 0.338865150043 -- 16.73342087918 -- 10.78379730405 -- 3.651824087044 -- 0.3780531631079 -- 14.92981862873 +- 3.78481994e+00 +- 3.38865150e-01 +- 1.67334209e+01 +- 1.07837973e+01 +- 3.65182409e+00 +- 3.78053163e-01 +- 1.49298186e+01 - 13.2066 -- 4.769997615 -- 0.9574765845645 -- 0.7304516141587 -- 0.8706033123616 -- 0.3432745801866 -- 0.1496621703174 +- 4.76999762e+00 +- 9.57476585e-01 +- 7.30451614e-01 +- 8.70603312e-01 +- 3.43274580e-01 +- 1.49662170e-01 diff --git a/nnpdf_data/nnpdf_data/commondata/H1_2JET_319GEV_351PB-1_DIF/filter.py b/nnpdf_data/nnpdf_data/commondata/H1_2JET_319GEV_351PB-1_DIF/filter.py index 8c3b997d5b..50e442a7a1 100644 --- a/nnpdf_data/nnpdf_data/commondata/H1_2JET_319GEV_351PB-1_DIF/filter.py +++ b/nnpdf_data/nnpdf_data/commondata/H1_2JET_319GEV_351PB-1_DIF/filter.py @@ -2,6 +2,9 @@ import yaml from nnpdf_data.filter_utils.utils import percentage_to_absolute as pta +from nnpdf_data.filter_utils.utils import prettify_float + +yaml.add_representer(float, prettify_float) def processData(): diff --git a/nnpdf_data/nnpdf_data/commondata/H1_2JET_319GEV_351PB-1_DIF/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/H1_2JET_319GEV_351PB-1_DIF/uncertainties.yaml index 2e7c9b0dce..a4b6735e60 100644 --- a/nnpdf_data/nnpdf_data/commondata/H1_2JET_319GEV_351PB-1_DIF/uncertainties.yaml +++ b/nnpdf_data/nnpdf_data/commondata/H1_2JET_319GEV_351PB-1_DIF/uncertainties.yaml @@ -232,1395 +232,1395 @@ definitions: treatment: ADD type: H1JETS14064709unc48 bins: -- Syst_1: 0.4899271509815 - Syst_2: 0.028659029990565 - Syst_3: 0.028659029990565 - Syst_4: 0.1519479 - Syst_5: 0.1519479 - Syst_6: 0.09567285880348 - Syst_7: 0.08334595116449 - Syst_8: 0.1166493216623 - Syst_9: 0.1399791859947 - Syst_10: 0.6765660656411 - ArtUnc_1: -0.32610219364158677 - ArtUnc_2: 0.09507681887229212 - ArtUnc_3: -0.06515868705804403 - ArtUnc_4: 0.022273054864304514 - ArtUnc_5: -0.0564565766504716 - ArtUnc_6: -0.02028944355383131 - ArtUnc_7: -0.0027579182815411045 - ArtUnc_8: -0.011041211389586287 - ArtUnc_9: -0.011487635890609504 - ArtUnc_10: -0.058601997007205586 - ArtUnc_11: -0.6239618251108892 - ArtUnc_12: 0.20219693682798273 - ArtUnc_13: 0.13081706281033278 - ArtUnc_14: -0.0712741097945995 - ArtUnc_15: -0.037028640129803864 - ArtUnc_16: -0.27826153573167084 - ArtUnc_17: -0.1656904137104575 - ArtUnc_18: -0.007513146216981691 - ArtUnc_19: -0.005817744514275608 - ArtUnc_20: -0.056756229757844494 - ArtUnc_21: 0.037670050234888966 - ArtUnc_22: -0.03440891715234577 - ArtUnc_23: 0.1147338406942786 - ArtUnc_24: 0.012156765334454537 - ArtUnc_25: 0.006441045464575586 - ArtUnc_26: -0.000251871288769493 - ArtUnc_27: 8.653181210248221e-05 - ArtUnc_28: -2.7156043555239827e-05 - ArtUnc_29: -0.0005245246440169526 - ArtUnc_30: 0.0057396489649227675 - ArtUnc_31: -0.0012355410482491642 - ArtUnc_32: 0.0007761885578516146 - ArtUnc_33: 0.002653985076452507 - ArtUnc_34: -0.0004612314241580564 - ArtUnc_35: -0.0008880098075620696 - ArtUnc_36: -0.0007068045406851893 - ArtUnc_37: 4.877642621682188e-05 - ArtUnc_38: 0.00020176456440631428 - ArtUnc_39: 0.0004549807625282621 - ArtUnc_40: -1.7227655905995742e-05 - ArtUnc_41: 2.6822708095427393e-06 - ArtUnc_42: 3.5446381504913716e-07 - ArtUnc_43: 9.188870057486553e-06 - ArtUnc_44: 3.875611850513921e-05 - ArtUnc_45: -5.726089921764721e-05 - ArtUnc_46: -2.1156216562959635e-05 - ArtUnc_47: -2.6698607979395602e-05 - ArtUnc_48: -3.7084174617766768e-06 -- Syst_1: 0.475999643119 - Syst_2: 0.1258918583547 - Syst_3: 0.1258918583547 - Syst_4: 0.017658084778085 - Syst_5: 0.017658084778085 - Syst_6: 0.0271728068 - Syst_7: 0.04506100232821 - Syst_8: 0.067999949017 - Syst_9: 0.0815999388204 - Syst_10: 0.3943997042986 - ArtUnc_1: 0.05365844576215684 - ArtUnc_2: -0.009469530078342876 - ArtUnc_3: 0.0062797010398781715 - ArtUnc_4: -0.0018000786905014515 - ArtUnc_5: 0.007787804454712136 - ArtUnc_6: 0.3063978004917773 - ArtUnc_7: 0.06958582440893318 - ArtUnc_8: -0.030548613708073182 - ArtUnc_9: -0.04535260767535418 - ArtUnc_10: 0.013229597154145876 - ArtUnc_11: 0.5733517705952051 - ArtUnc_12: -0.1521733882063692 - ArtUnc_13: -0.028137996273087353 - ArtUnc_14: -0.02535757467849361 - ArtUnc_15: 0.15139220300663697 - ArtUnc_16: -0.2906135514214046 - ArtUnc_17: -0.21026301782700915 - ArtUnc_18: 0.010555129371163291 - ArtUnc_19: -0.019124111533625223 - ArtUnc_20: -0.029022689105197303 - ArtUnc_21: 0.01188960536754423 - ArtUnc_22: -0.028787011929755735 - ArtUnc_23: 0.09417254209345642 - ArtUnc_24: 0.01908549536399147 - ArtUnc_25: 0.014436862428756131 - ArtUnc_26: -0.0002945170929178164 - ArtUnc_27: 5.7511159616781644e-05 - ArtUnc_28: 0.0017510440471773662 - ArtUnc_29: 0.00034923654196792963 - ArtUnc_30: 0.02121833631194328 - ArtUnc_31: -0.003765392290731438 - ArtUnc_32: 0.004474585725179446 - ArtUnc_33: 0.007493745106666371 - ArtUnc_34: -0.0023735191225355695 - ArtUnc_35: -0.004729800911158249 - ArtUnc_36: -0.0039041843472877084 - ArtUnc_37: 7.187899096012361e-06 - ArtUnc_38: 0.0015373456186564913 - ArtUnc_39: 0.0002529859781733186 - ArtUnc_40: -0.000766035562835711 - ArtUnc_41: 6.225938978996598e-06 - ArtUnc_42: -7.996301674118432e-07 - ArtUnc_43: 7.632246911113794e-07 - ArtUnc_44: 0.00015491677892651046 - ArtUnc_45: -0.0001373227043076155 - ArtUnc_46: -6.33907572318361e-05 - ArtUnc_47: -4.7149795841880344e-05 - ArtUnc_48: -6.435399180014406e-06 -- Syst_1: 0.1427998215 - Syst_2: 0.0705187965634 - Syst_3: 0.0705187965634 - Syst_4: 0.003093256546856 - Syst_5: 0.003093256546856 - Syst_6: 0.0118581169475 - Syst_7: 0.005923129415274 - Syst_8: 0.0178499776875 - Syst_9: 0.02141997322501 - Syst_10: 0.1035298705875 - ArtUnc_1: 0.0017062090409185155 - ArtUnc_2: -0.0011524670350174467 - ArtUnc_3: 0.0007568155641954941 - ArtUnc_4: -0.00048582198294861616 - ArtUnc_5: 5.486686497903964e-05 - ArtUnc_6: -0.0181359074101944 - ArtUnc_7: -0.0042880248013988116 - ArtUnc_8: 0.0017204441224529451 - ArtUnc_9: 0.0025975483189090774 - ArtUnc_10: -0.0028080761253023354 - ArtUnc_11: -0.06707861126906514 - ArtUnc_12: 0.018325672465362635 - ArtUnc_13: 0.003758881698475012 - ArtUnc_14: 0.003039550848130311 - ArtUnc_15: -0.020666698904046307 - ArtUnc_16: 0.10890058223835593 - ArtUnc_17: -0.04859509650347352 - ArtUnc_18: 0.04158347415631558 - ArtUnc_19: -0.04361298729279651 - ArtUnc_20: -0.0018823817596990845 - ArtUnc_21: -0.04043097947858248 - ArtUnc_22: -0.003117443544944722 - ArtUnc_23: -0.018114568795640953 - ArtUnc_24: 0.02125140723313151 - ArtUnc_25: 0.003112561688525408 - ArtUnc_26: 4.484726039166435e-05 - ArtUnc_27: -3.1677053563806516e-05 - ArtUnc_28: 0.01659968899588213 - ArtUnc_29: 0.005176758906196125 - ArtUnc_30: 0.14949461593038288 - ArtUnc_31: -0.026035028386910564 - ArtUnc_32: 0.03784248481856489 - ArtUnc_33: 0.052085878350405394 - ArtUnc_34: -0.0195903086343789 - ArtUnc_35: -0.03711758825109965 - ArtUnc_36: -0.03046490552898339 - ArtUnc_37: -0.00011633233484835511 - ArtUnc_38: 0.012470473442839785 - ArtUnc_39: 0.00023058635648295542 - ArtUnc_40: -0.00664546089917621 - ArtUnc_41: -1.7699310843836227e-05 - ArtUnc_42: 1.5120543663747702e-05 - ArtUnc_43: 0.00010513531268149685 - ArtUnc_44: -0.0011851664067986112 - ArtUnc_45: 0.0010543414854408387 - ArtUnc_46: 0.0006785986630409341 - ArtUnc_47: 0.00025848041979968146 - ArtUnc_48: -0.0003234103610417377 -- Syst_1: 0.03266130263821 - Syst_2: 0.01084045547936 - Syst_3: 0.01084045547936 - Syst_4: 0.0002977273102186 - Syst_5: 0.0002977273102186 - Syst_6: 0.003009905338278 - Syst_7: 0.0009139819830025 - Syst_8: 0.002093673246039 - Syst_9: 0.002512407895247 - Syst_10: 0.01214330482703 - ArtUnc_1: -0.0002860586028827804 - ArtUnc_2: 8.977287789873441e-05 - ArtUnc_3: -6.233683618455472e-05 - ArtUnc_4: 2.283464143271926e-05 - ArtUnc_5: -6.381474840443435e-05 - ArtUnc_6: -0.001576190344710377 - ArtUnc_7: -0.00042721887283508816 - ArtUnc_8: 0.00019352618387690637 - ArtUnc_9: 0.00029763405196797416 - ArtUnc_10: -0.00012501344339759402 - ArtUnc_11: -0.004301873546584835 - ArtUnc_12: 0.0013147324464606786 - ArtUnc_13: 0.000313692656475523 - ArtUnc_14: 0.00016854215786776946 - ArtUnc_15: -0.0013310002567524318 - ArtUnc_16: 0.00344864511702657 - ArtUnc_17: 0.001629478580778839 - ArtUnc_18: 0.0002286629253499617 - ArtUnc_19: -0.0001262432938325003 - ArtUnc_20: 0.0006639321741967242 - ArtUnc_21: -0.0006180255524237917 - ArtUnc_22: 0.0002958478843748904 - ArtUnc_23: -0.0011276986248061798 - ArtUnc_24: 9.121670390172177e-05 - ArtUnc_25: 1.9851543429927126e-05 - ArtUnc_26: 2.8891830485126855e-06 - ArtUnc_27: -3.4216032981643522e-06 - ArtUnc_28: -0.001255217260266573 - ArtUnc_29: -0.00015461590352322708 - ArtUnc_30: -0.005377033416213454 - ArtUnc_31: 0.0028077226366174986 - ArtUnc_32: 0.00037837371045988416 - ArtUnc_33: -0.004500942562284676 - ArtUnc_34: 0.02318740534998677 - ArtUnc_35: -0.017015910606238145 - ArtUnc_36: -0.03528731595666398 - ArtUnc_37: 2.726848500623052e-05 - ArtUnc_38: 0.02679538580782052 - ArtUnc_39: 0.00024229117742086113 - ArtUnc_40: -0.01704023024304514 - ArtUnc_41: 0.0007214537638238653 - ArtUnc_42: -0.00029000279353633807 - ArtUnc_43: -0.002405315424995691 - ArtUnc_44: 0.028549172139830215 - ArtUnc_45: -0.023512649214379108 - ArtUnc_46: -0.014145006605721927 - ArtUnc_47: -0.007018911183958705 - ArtUnc_48: 0.00361421597701842 -- Syst_1: 0.3630871770431 - Syst_2: 0.00783752990425 - Syst_3: 0.00783752990425 - Syst_4: 0.1184032783703 - Syst_5: 0.1184032783703 - Syst_6: 0.09419148141445 - Syst_7: 0.08265571239106 - Syst_8: 0.09077179426077 - Syst_9: 0.1089261531129 - Syst_10: 0.5264764067125 - ArtUnc_1: 0.13938834845529202 - ArtUnc_2: 0.17302816827199055 - ArtUnc_3: -0.15323087293024798 - ArtUnc_4: 0.09012993991726917 - ArtUnc_5: -0.11182327172811926 - ArtUnc_6: 0.004357498572540537 - ArtUnc_7: -0.01570177890511901 - ArtUnc_8: 0.012469134823846265 - ArtUnc_9: 0.026872939969593182 - ArtUnc_10: 0.03652542398103335 - ArtUnc_11: 0.1842357565905307 - ArtUnc_12: 0.3082810755913112 - ArtUnc_13: 0.39911507927775763 - ArtUnc_14: -0.2667054867948621 - ArtUnc_15: 0.0062646328353696094 - ArtUnc_16: 0.05285206208144284 - ArtUnc_17: 0.009318393172039426 - ArtUnc_18: 0.0190822294252059 - ArtUnc_19: 0.03929760013161917 - ArtUnc_20: 0.2763125617242132 - ArtUnc_21: -0.05948662047782302 - ArtUnc_22: 0.010215739860327337 - ArtUnc_23: 0.09184684562616896 - ArtUnc_24: 0.009995738104719817 - ArtUnc_25: 0.07255887669666507 - ArtUnc_26: -0.0009185069413072005 - ArtUnc_27: 0.00012028178828592615 - ArtUnc_28: -0.0013977343929083188 - ArtUnc_29: -0.0005595912333258031 - ArtUnc_30: -0.005279131715153363 - ArtUnc_31: -0.0005963459952112573 - ArtUnc_32: 0.0007791461736072799 - ArtUnc_33: 0.0024221709135282 - ArtUnc_34: -0.0026876705265959653 - ArtUnc_35: -0.0014755572375378982 - ArtUnc_36: -0.00033538912986381486 - ArtUnc_37: 5.787411061320372e-05 - ArtUnc_38: 0.00022613527954328671 - ArtUnc_39: 0.00024410070431518974 - ArtUnc_40: -0.0003286904059324714 - ArtUnc_41: 1.78302861533387e-07 - ArtUnc_42: -3.726296851508031e-06 - ArtUnc_43: 3.399757434383211e-05 - ArtUnc_44: 2.90272594025814e-05 - ArtUnc_45: 2.9632833128161915e-05 - ArtUnc_46: 9.255407165277643e-05 - ArtUnc_47: 6.246852187624765e-05 - ArtUnc_48: -3.426883481025554e-05 -- Syst_1: 0.2723905272 - Syst_2: 0.1375226526795 - Syst_3: 0.1375226526795 - Syst_4: 0.0247504 - Syst_5: 0.0247504 - Syst_6: 0.08091336930916 - Syst_7: 0.0371441628 - Syst_8: 0.061906938 - Syst_9: 0.0742883256 - Syst_10: 0.3590602404 - ArtUnc_1: -0.02740167426463766 - ArtUnc_2: -0.041125834928319914 - ArtUnc_3: 0.03548673828224864 - ArtUnc_4: -0.01796430904340511 - ArtUnc_5: 0.008973349131069203 - ArtUnc_6: -0.13113756326380585 - ArtUnc_7: 0.10239480403430243 - ArtUnc_8: -0.07137266184091623 - ArtUnc_9: -0.19153815579038888 - ArtUnc_10: -0.189369176682916 - ArtUnc_11: -0.19634535461249794 - ArtUnc_12: -0.2626724465119663 - ArtUnc_13: -0.31543531387125046 - ArtUnc_14: 0.2017958089719081 - ArtUnc_15: 0.04670485295475625 - ArtUnc_16: -0.040049965643259425 - ArtUnc_17: -0.02622146852127462 - ArtUnc_18: 0.01718428319586353 - ArtUnc_19: 0.03393117416371283 - ArtUnc_20: 0.30585748634797094 - ArtUnc_21: -0.08762248427611624 - ArtUnc_22: 0.008911607797381618 - ArtUnc_23: 0.0828142900858505 - ArtUnc_24: 0.03377223390049666 - ArtUnc_25: 0.08847920442526608 - ArtUnc_26: -0.0009793077215183867 - ArtUnc_27: 0.00010810658168238586 - ArtUnc_28: -0.0015262247199200295 - ArtUnc_29: -0.0005781137545955572 - ArtUnc_30: -0.012991724297917591 - ArtUnc_31: -0.0009357680177865481 - ArtUnc_32: 0.004376551862652253 - ArtUnc_33: 0.007088392988937459 - ArtUnc_34: -0.012396606101034819 - ArtUnc_35: -0.008031786422340195 - ArtUnc_36: -0.0025088830116120615 - ArtUnc_37: 0.00014511031181482033 - ArtUnc_38: 0.0009829149357815398 - ArtUnc_39: 0.00018556520168335933 - ArtUnc_40: -0.002125031713873128 - ArtUnc_41: -1.0752190382927192e-07 - ArtUnc_42: -8.822293789556017e-06 - ArtUnc_43: 4.576007248427078e-05 - ArtUnc_44: 0.0001411802451464558 - ArtUnc_45: 0.00011341110114057607 - ArtUnc_46: 0.00022235697830181464 - ArtUnc_47: 0.0001587939714623784 - ArtUnc_48: -6.008924607869564e-05 -- Syst_1: 0.1180588525442 - Syst_2: 0.05245590261115 - Syst_3: 0.05245590261115 - Syst_4: 0.0024496797990615 - Syst_5: 0.0024496797990615 - Syst_6: 0.0029529477875 - Syst_7: 0.007671983400072 - Syst_8: 0.01475735656803 - Syst_9: 0.01770882788164 - Syst_10: 0.08559266809458 - ArtUnc_1: 0.00041776912592048055 - ArtUnc_2: 0.0003571695958880834 - ArtUnc_3: -0.00016842201623435454 - ArtUnc_4: -8.606637568863246e-06 - ArtUnc_5: 0.0005142187915429543 - ArtUnc_6: 0.007611918269744736 - ArtUnc_7: -0.006172418925738325 - ArtUnc_8: 0.004733017295105712 - ArtUnc_9: 0.011513943140872233 - ArtUnc_10: 0.012261729988199173 - ArtUnc_11: 0.02602821581405598 - ArtUnc_12: 0.030846474186300276 - ArtUnc_13: 0.03663974768037883 - ArtUnc_14: -0.023205250005133966 - ArtUnc_15: -0.004410728222332171 - ArtUnc_16: -0.030293333139881504 - ArtUnc_17: 0.05599463377522971 - ArtUnc_18: -0.026033367415343057 - ArtUnc_19: -0.02429318382109516 - ArtUnc_20: -0.07076923199890335 - ArtUnc_21: -0.03630969336930619 - ArtUnc_22: -0.01493274115169096 - ArtUnc_23: -0.02177391676304336 - ArtUnc_24: 0.07409871287064297 - ArtUnc_25: 0.0061779108309418474 - ArtUnc_26: 0.00014575331801661002 - ArtUnc_27: -4.451898854124751e-05 - ArtUnc_28: -0.005492699915328122 - ArtUnc_29: -0.0023818889421625207 - ArtUnc_30: -0.08943317355448102 - ArtUnc_31: -0.003326641968897457 - ArtUnc_32: 0.03250770020066893 - ArtUnc_33: 0.050124934177225765 - ArtUnc_34: -0.09129073109882029 - ArtUnc_35: -0.06358711646331257 - ArtUnc_36: -0.022183292101920684 - ArtUnc_37: 0.00098164285081509 - ArtUnc_38: 0.006097531034783912 - ArtUnc_39: 0.0006119137280142694 - ArtUnc_40: -0.013514456568501273 - ArtUnc_41: -2.911475352638165e-05 - ArtUnc_42: -3.5529185462590304e-05 - ArtUnc_43: -5.176594222378061e-05 - ArtUnc_44: -0.0007923780907518745 - ArtUnc_45: -0.00022412850661825067 - ArtUnc_46: -0.0002790698831000041 - ArtUnc_47: -9.062687318431681e-05 - ArtUnc_48: 0.00023387998141279566 -- Syst_1: 0.04772237199836 - Syst_2: 0.010350631707775 - Syst_3: 0.010350631707775 - Syst_4: 0.00042022946017465 - Syst_5: 0.00042022946017465 - Syst_6: 0.0003334635636703 - Syst_7: 0.001277706755339 - Syst_8: 0.001924289193482 - Syst_9: 0.002309147032179 - Syst_10: 0.0111608773222 - ArtUnc_1: 7.216210320010573e-05 - ArtUnc_2: 0.00012304878055469415 - ArtUnc_3: -0.0001099711046085965 - ArtUnc_4: 6.270028845161587e-05 - ArtUnc_5: -6.029430092134331e-05 - ArtUnc_6: 0.00043465809867798244 - ArtUnc_7: -0.00036124943355911337 - ArtUnc_8: 0.0002747195534200509 - ArtUnc_9: 0.000679341867770328 - ArtUnc_10: 0.0007189506936141497 - ArtUnc_11: 0.0014669890431315779 - ArtUnc_12: 0.0020271979526760905 - ArtUnc_13: 0.00247584599748192 - ArtUnc_14: -0.00156983184967988 - ArtUnc_15: -0.00027177266003289004 - ArtUnc_16: 0.00020638186027115312 - ArtUnc_17: -0.0004644520383063546 - ArtUnc_18: -7.91190657215781e-05 - ArtUnc_19: -0.00024147212600638017 - ArtUnc_20: -0.003829219798675456 - ArtUnc_21: 0.0016844741246694274 - ArtUnc_22: 0.0003769690088934249 - ArtUnc_23: -0.0012884196135452346 - ArtUnc_24: -0.0013275951817172216 - ArtUnc_25: -0.0012307529949992528 - ArtUnc_26: 2.48730214217625e-05 - ArtUnc_27: 0.00010050678078066219 - ArtUnc_28: 0.0020654810176670762 - ArtUnc_29: -0.00031769239714384657 - ArtUnc_30: 0.004992281085499182 - ArtUnc_31: -0.0008236767792388694 - ArtUnc_32: -0.0029034739284628268 - ArtUnc_33: -0.0007310050745256169 - ArtUnc_34: -0.01779634676015574 - ArtUnc_35: 0.01954743302184128 - ArtUnc_36: 0.027339892295045378 - ArtUnc_37: 0.0001561481999269136 - ArtUnc_38: 0.017521954376200865 - ArtUnc_39: 0.0001819862115788865 - ArtUnc_40: -0.03715166215741521 - ArtUnc_41: 0.00034312299771109306 - ArtUnc_42: -0.00027534066607235363 - ArtUnc_43: 0.0032591876908408886 - ArtUnc_44: 0.02437541065074158 - ArtUnc_45: 0.015245768554124389 - ArtUnc_46: 0.024963155642520767 - ArtUnc_47: 0.015472167181450789 - ArtUnc_48: -0.007656192391378124 -- Syst_1: 0.1829085 +- Syst_1: 4.89927151e-01 + Syst_2: 2.86590300e-02 + Syst_3: 2.86590300e-02 + Syst_4: 1.51947900e-01 + Syst_5: 1.51947900e-01 + Syst_6: 9.56728588e-02 + Syst_7: 8.33459512e-02 + Syst_8: 1.16649322e-01 + Syst_9: 1.39979186e-01 + Syst_10: 6.76566066e-01 + ArtUnc_1: -3.26102194e-01 + ArtUnc_2: 9.50768189e-02 + ArtUnc_3: -6.51586871e-02 + ArtUnc_4: 2.22730549e-02 + ArtUnc_5: -5.64565767e-02 + ArtUnc_6: -2.02894436e-02 + ArtUnc_7: -2.75791828e-03 + ArtUnc_8: -1.10412114e-02 + ArtUnc_9: -1.14876359e-02 + ArtUnc_10: -5.86019970e-02 + ArtUnc_11: -6.23961825e-01 + ArtUnc_12: 2.02196937e-01 + ArtUnc_13: 1.30817063e-01 + ArtUnc_14: -7.12741098e-02 + ArtUnc_15: -3.70286401e-02 + ArtUnc_16: -2.78261536e-01 + ArtUnc_17: -1.65690414e-01 + ArtUnc_18: -7.51314622e-03 + ArtUnc_19: -5.81774451e-03 + ArtUnc_20: -5.67562298e-02 + ArtUnc_21: 3.76700502e-02 + ArtUnc_22: -3.44089172e-02 + ArtUnc_23: 1.14733841e-01 + ArtUnc_24: 1.21567653e-02 + ArtUnc_25: 6.44104546e-03 + ArtUnc_26: -2.51871289e-04 + ArtUnc_27: 8.65318121e-05 + ArtUnc_28: -2.71560436e-05 + ArtUnc_29: -5.24524644e-04 + ArtUnc_30: 5.73964896e-03 + ArtUnc_31: -1.23554105e-03 + ArtUnc_32: 7.76188558e-04 + ArtUnc_33: 2.65398508e-03 + ArtUnc_34: -4.61231424e-04 + ArtUnc_35: -8.88009808e-04 + ArtUnc_36: -7.06804541e-04 + ArtUnc_37: 4.87764262e-05 + ArtUnc_38: 2.01764564e-04 + ArtUnc_39: 4.54980763e-04 + ArtUnc_40: -1.72276559e-05 + ArtUnc_41: 2.68227081e-06 + ArtUnc_42: 3.54463815e-07 + ArtUnc_43: 9.18887006e-06 + ArtUnc_44: 3.87561185e-05 + ArtUnc_45: -5.72608992e-05 + ArtUnc_46: -2.11562166e-05 + ArtUnc_47: -2.66986080e-05 + ArtUnc_48: -3.70841746e-06 +- Syst_1: 4.75999643e-01 + Syst_2: 1.25891858e-01 + Syst_3: 1.25891858e-01 + Syst_4: 1.76580848e-02 + Syst_5: 1.76580848e-02 + Syst_6: 2.71728068e-02 + Syst_7: 4.50610023e-02 + Syst_8: 6.79999490e-02 + Syst_9: 8.15999388e-02 + Syst_10: 3.94399704e-01 + ArtUnc_1: 5.36584458e-02 + ArtUnc_2: -9.46953008e-03 + ArtUnc_3: 6.27970104e-03 + ArtUnc_4: -1.80007869e-03 + ArtUnc_5: 7.78780445e-03 + ArtUnc_6: 3.06397800e-01 + ArtUnc_7: 6.95858244e-02 + ArtUnc_8: -3.05486137e-02 + ArtUnc_9: -4.53526077e-02 + ArtUnc_10: 1.32295972e-02 + ArtUnc_11: 5.73351771e-01 + ArtUnc_12: -1.52173388e-01 + ArtUnc_13: -2.81379963e-02 + ArtUnc_14: -2.53575747e-02 + ArtUnc_15: 1.51392203e-01 + ArtUnc_16: -2.90613551e-01 + ArtUnc_17: -2.10263018e-01 + ArtUnc_18: 1.05551294e-02 + ArtUnc_19: -1.91241115e-02 + ArtUnc_20: -2.90226891e-02 + ArtUnc_21: 1.18896054e-02 + ArtUnc_22: -2.87870119e-02 + ArtUnc_23: 9.41725421e-02 + ArtUnc_24: 1.90854954e-02 + ArtUnc_25: 1.44368624e-02 + ArtUnc_26: -2.94517093e-04 + ArtUnc_27: 5.75111596e-05 + ArtUnc_28: 1.75104405e-03 + ArtUnc_29: 3.49236542e-04 + ArtUnc_30: 2.12183363e-02 + ArtUnc_31: -3.76539229e-03 + ArtUnc_32: 4.47458573e-03 + ArtUnc_33: 7.49374511e-03 + ArtUnc_34: -2.37351912e-03 + ArtUnc_35: -4.72980091e-03 + ArtUnc_36: -3.90418435e-03 + ArtUnc_37: 7.18789910e-06 + ArtUnc_38: 1.53734562e-03 + ArtUnc_39: 2.52985978e-04 + ArtUnc_40: -7.66035563e-04 + ArtUnc_41: 6.22593898e-06 + ArtUnc_42: -7.99630167e-07 + ArtUnc_43: 7.63224691e-07 + ArtUnc_44: 1.54916779e-04 + ArtUnc_45: -1.37322704e-04 + ArtUnc_46: -6.33907572e-05 + ArtUnc_47: -4.71497958e-05 + ArtUnc_48: -6.43539918e-06 +- Syst_1: 1.42799822e-01 + Syst_2: 7.05187966e-02 + Syst_3: 7.05187966e-02 + Syst_4: 3.09325655e-03 + Syst_5: 3.09325655e-03 + Syst_6: 1.18581169e-02 + Syst_7: 5.92312942e-03 + Syst_8: 1.78499777e-02 + Syst_9: 2.14199732e-02 + Syst_10: 1.03529871e-01 + ArtUnc_1: 1.70620904e-03 + ArtUnc_2: -1.15246704e-03 + ArtUnc_3: 7.56815564e-04 + ArtUnc_4: -4.85821983e-04 + ArtUnc_5: 5.48668650e-05 + ArtUnc_6: -1.81359074e-02 + ArtUnc_7: -4.28802480e-03 + ArtUnc_8: 1.72044412e-03 + ArtUnc_9: 2.59754832e-03 + ArtUnc_10: -2.80807613e-03 + ArtUnc_11: -6.70786113e-02 + ArtUnc_12: 1.83256725e-02 + ArtUnc_13: 3.75888170e-03 + ArtUnc_14: 3.03955085e-03 + ArtUnc_15: -2.06666989e-02 + ArtUnc_16: 1.08900582e-01 + ArtUnc_17: -4.85950965e-02 + ArtUnc_18: 4.15834742e-02 + ArtUnc_19: -4.36129873e-02 + ArtUnc_20: -1.88238176e-03 + ArtUnc_21: -4.04309795e-02 + ArtUnc_22: -3.11744354e-03 + ArtUnc_23: -1.81145688e-02 + ArtUnc_24: 2.12514072e-02 + ArtUnc_25: 3.11256169e-03 + ArtUnc_26: 4.48472604e-05 + ArtUnc_27: -3.16770536e-05 + ArtUnc_28: 1.65996890e-02 + ArtUnc_29: 5.17675891e-03 + ArtUnc_30: 1.49494616e-01 + ArtUnc_31: -2.60350284e-02 + ArtUnc_32: 3.78424848e-02 + ArtUnc_33: 5.20858784e-02 + ArtUnc_34: -1.95903086e-02 + ArtUnc_35: -3.71175883e-02 + ArtUnc_36: -3.04649055e-02 + ArtUnc_37: -1.16332335e-04 + ArtUnc_38: 1.24704734e-02 + ArtUnc_39: 2.30586356e-04 + ArtUnc_40: -6.64546090e-03 + ArtUnc_41: -1.76993108e-05 + ArtUnc_42: 1.51205437e-05 + ArtUnc_43: 1.05135313e-04 + ArtUnc_44: -1.18516641e-03 + ArtUnc_45: 1.05434149e-03 + ArtUnc_46: 6.78598663e-04 + ArtUnc_47: 2.58480420e-04 + ArtUnc_48: -3.23410361e-04 +- Syst_1: 3.26613026e-02 + Syst_2: 1.08404555e-02 + Syst_3: 1.08404555e-02 + Syst_4: 2.97727310e-04 + Syst_5: 2.97727310e-04 + Syst_6: 3.00990534e-03 + Syst_7: 9.13981983e-04 + Syst_8: 2.09367325e-03 + Syst_9: 2.51240790e-03 + Syst_10: 1.21433048e-02 + ArtUnc_1: -2.86058603e-04 + ArtUnc_2: 8.97728779e-05 + ArtUnc_3: -6.23368362e-05 + ArtUnc_4: 2.28346414e-05 + ArtUnc_5: -6.38147484e-05 + ArtUnc_6: -1.57619034e-03 + ArtUnc_7: -4.27218873e-04 + ArtUnc_8: 1.93526184e-04 + ArtUnc_9: 2.97634052e-04 + ArtUnc_10: -1.25013443e-04 + ArtUnc_11: -4.30187355e-03 + ArtUnc_12: 1.31473245e-03 + ArtUnc_13: 3.13692656e-04 + ArtUnc_14: 1.68542158e-04 + ArtUnc_15: -1.33100026e-03 + ArtUnc_16: 3.44864512e-03 + ArtUnc_17: 1.62947858e-03 + ArtUnc_18: 2.28662925e-04 + ArtUnc_19: -1.26243294e-04 + ArtUnc_20: 6.63932174e-04 + ArtUnc_21: -6.18025552e-04 + ArtUnc_22: 2.95847884e-04 + ArtUnc_23: -1.12769862e-03 + ArtUnc_24: 9.12167039e-05 + ArtUnc_25: 1.98515434e-05 + ArtUnc_26: 2.88918305e-06 + ArtUnc_27: -3.42160330e-06 + ArtUnc_28: -1.25521726e-03 + ArtUnc_29: -1.54615904e-04 + ArtUnc_30: -5.37703342e-03 + ArtUnc_31: 2.80772264e-03 + ArtUnc_32: 3.78373710e-04 + ArtUnc_33: -4.50094256e-03 + ArtUnc_34: 2.31874053e-02 + ArtUnc_35: -1.70159106e-02 + ArtUnc_36: -3.52873160e-02 + ArtUnc_37: 2.72684850e-05 + ArtUnc_38: 2.67953858e-02 + ArtUnc_39: 2.42291177e-04 + ArtUnc_40: -1.70402302e-02 + ArtUnc_41: 7.21453764e-04 + ArtUnc_42: -2.90002794e-04 + ArtUnc_43: -2.40531542e-03 + ArtUnc_44: 2.85491721e-02 + ArtUnc_45: -2.35126492e-02 + ArtUnc_46: -1.41450066e-02 + ArtUnc_47: -7.01891118e-03 + ArtUnc_48: 3.61421598e-03 +- Syst_1: 3.63087177e-01 + Syst_2: 7.83752990e-03 + Syst_3: 7.83752990e-03 + Syst_4: 1.18403278e-01 + Syst_5: 1.18403278e-01 + Syst_6: 9.41914814e-02 + Syst_7: 8.26557124e-02 + Syst_8: 9.07717943e-02 + Syst_9: 1.08926153e-01 + Syst_10: 5.26476407e-01 + ArtUnc_1: 1.39388348e-01 + ArtUnc_2: 1.73028168e-01 + ArtUnc_3: -1.53230873e-01 + ArtUnc_4: 9.01299399e-02 + ArtUnc_5: -1.11823272e-01 + ArtUnc_6: 4.35749857e-03 + ArtUnc_7: -1.57017789e-02 + ArtUnc_8: 1.24691348e-02 + ArtUnc_9: 2.68729400e-02 + ArtUnc_10: 3.65254240e-02 + ArtUnc_11: 1.84235757e-01 + ArtUnc_12: 3.08281076e-01 + ArtUnc_13: 3.99115079e-01 + ArtUnc_14: -2.66705487e-01 + ArtUnc_15: 6.26463284e-03 + ArtUnc_16: 5.28520621e-02 + ArtUnc_17: 9.31839317e-03 + ArtUnc_18: 1.90822294e-02 + ArtUnc_19: 3.92976001e-02 + ArtUnc_20: 2.76312562e-01 + ArtUnc_21: -5.94866205e-02 + ArtUnc_22: 1.02157399e-02 + ArtUnc_23: 9.18468456e-02 + ArtUnc_24: 9.99573810e-03 + ArtUnc_25: 7.25588767e-02 + ArtUnc_26: -9.18506941e-04 + ArtUnc_27: 1.20281788e-04 + ArtUnc_28: -1.39773439e-03 + ArtUnc_29: -5.59591233e-04 + ArtUnc_30: -5.27913172e-03 + ArtUnc_31: -5.96345995e-04 + ArtUnc_32: 7.79146174e-04 + ArtUnc_33: 2.42217091e-03 + ArtUnc_34: -2.68767053e-03 + ArtUnc_35: -1.47555724e-03 + ArtUnc_36: -3.35389130e-04 + ArtUnc_37: 5.78741106e-05 + ArtUnc_38: 2.26135280e-04 + ArtUnc_39: 2.44100704e-04 + ArtUnc_40: -3.28690406e-04 + ArtUnc_41: 1.78302862e-07 + ArtUnc_42: -3.72629685e-06 + ArtUnc_43: 3.39975743e-05 + ArtUnc_44: 2.90272594e-05 + ArtUnc_45: 2.96328331e-05 + ArtUnc_46: 9.25540717e-05 + ArtUnc_47: 6.24685219e-05 + ArtUnc_48: -3.42688348e-05 +- Syst_1: 2.72390527e-01 + Syst_2: 1.37522653e-01 + Syst_3: 1.37522653e-01 + Syst_4: 2.47504000e-02 + Syst_5: 2.47504000e-02 + Syst_6: 8.09133693e-02 + Syst_7: 3.71441628e-02 + Syst_8: 6.19069380e-02 + Syst_9: 7.42883256e-02 + Syst_10: 3.59060240e-01 + ArtUnc_1: -2.74016743e-02 + ArtUnc_2: -4.11258349e-02 + ArtUnc_3: 3.54867383e-02 + ArtUnc_4: -1.79643090e-02 + ArtUnc_5: 8.97334913e-03 + ArtUnc_6: -1.31137563e-01 + ArtUnc_7: 1.02394804e-01 + ArtUnc_8: -7.13726618e-02 + ArtUnc_9: -1.91538156e-01 + ArtUnc_10: -1.89369177e-01 + ArtUnc_11: -1.96345355e-01 + ArtUnc_12: -2.62672447e-01 + ArtUnc_13: -3.15435314e-01 + ArtUnc_14: 2.01795809e-01 + ArtUnc_15: 4.67048530e-02 + ArtUnc_16: -4.00499656e-02 + ArtUnc_17: -2.62214685e-02 + ArtUnc_18: 1.71842832e-02 + ArtUnc_19: 3.39311742e-02 + ArtUnc_20: 3.05857486e-01 + ArtUnc_21: -8.76224843e-02 + ArtUnc_22: 8.91160780e-03 + ArtUnc_23: 8.28142901e-02 + ArtUnc_24: 3.37722339e-02 + ArtUnc_25: 8.84792044e-02 + ArtUnc_26: -9.79307722e-04 + ArtUnc_27: 1.08106582e-04 + ArtUnc_28: -1.52622472e-03 + ArtUnc_29: -5.78113755e-04 + ArtUnc_30: -1.29917243e-02 + ArtUnc_31: -9.35768018e-04 + ArtUnc_32: 4.37655186e-03 + ArtUnc_33: 7.08839299e-03 + ArtUnc_34: -1.23966061e-02 + ArtUnc_35: -8.03178642e-03 + ArtUnc_36: -2.50888301e-03 + ArtUnc_37: 1.45110312e-04 + ArtUnc_38: 9.82914936e-04 + ArtUnc_39: 1.85565202e-04 + ArtUnc_40: -2.12503171e-03 + ArtUnc_41: -1.07521904e-07 + ArtUnc_42: -8.82229379e-06 + ArtUnc_43: 4.57600725e-05 + ArtUnc_44: 1.41180245e-04 + ArtUnc_45: 1.13411101e-04 + ArtUnc_46: 2.22356978e-04 + ArtUnc_47: 1.58793971e-04 + ArtUnc_48: -6.00892461e-05 +- Syst_1: 1.18058853e-01 + Syst_2: 5.24559026e-02 + Syst_3: 5.24559026e-02 + Syst_4: 2.44967980e-03 + Syst_5: 2.44967980e-03 + Syst_6: 2.95294779e-03 + Syst_7: 7.67198340e-03 + Syst_8: 1.47573566e-02 + Syst_9: 1.77088279e-02 + Syst_10: 8.55926681e-02 + ArtUnc_1: 4.17769126e-04 + ArtUnc_2: 3.57169596e-04 + ArtUnc_3: -1.68422016e-04 + ArtUnc_4: -8.60663757e-06 + ArtUnc_5: 5.14218792e-04 + ArtUnc_6: 7.61191827e-03 + ArtUnc_7: -6.17241893e-03 + ArtUnc_8: 4.73301730e-03 + ArtUnc_9: 1.15139431e-02 + ArtUnc_10: 1.22617300e-02 + ArtUnc_11: 2.60282158e-02 + ArtUnc_12: 3.08464742e-02 + ArtUnc_13: 3.66397477e-02 + ArtUnc_14: -2.32052500e-02 + ArtUnc_15: -4.41072822e-03 + ArtUnc_16: -3.02933331e-02 + ArtUnc_17: 5.59946338e-02 + ArtUnc_18: -2.60333674e-02 + ArtUnc_19: -2.42931838e-02 + ArtUnc_20: -7.07692320e-02 + ArtUnc_21: -3.63096934e-02 + ArtUnc_22: -1.49327412e-02 + ArtUnc_23: -2.17739168e-02 + ArtUnc_24: 7.40987129e-02 + ArtUnc_25: 6.17791083e-03 + ArtUnc_26: 1.45753318e-04 + ArtUnc_27: -4.45189885e-05 + ArtUnc_28: -5.49269992e-03 + ArtUnc_29: -2.38188894e-03 + ArtUnc_30: -8.94331736e-02 + ArtUnc_31: -3.32664197e-03 + ArtUnc_32: 3.25077002e-02 + ArtUnc_33: 5.01249342e-02 + ArtUnc_34: -9.12907311e-02 + ArtUnc_35: -6.35871165e-02 + ArtUnc_36: -2.21832921e-02 + ArtUnc_37: 9.81642851e-04 + ArtUnc_38: 6.09753103e-03 + ArtUnc_39: 6.11913728e-04 + ArtUnc_40: -1.35144566e-02 + ArtUnc_41: -2.91147535e-05 + ArtUnc_42: -3.55291855e-05 + ArtUnc_43: -5.17659422e-05 + ArtUnc_44: -7.92378091e-04 + ArtUnc_45: -2.24128507e-04 + ArtUnc_46: -2.79069883e-04 + ArtUnc_47: -9.06268732e-05 + ArtUnc_48: 2.33879981e-04 +- Syst_1: 4.77223720e-02 + Syst_2: 1.03506317e-02 + Syst_3: 1.03506317e-02 + Syst_4: 4.20229460e-04 + Syst_5: 4.20229460e-04 + Syst_6: 3.33463564e-04 + Syst_7: 1.27770676e-03 + Syst_8: 1.92428919e-03 + Syst_9: 2.30914703e-03 + Syst_10: 1.11608773e-02 + ArtUnc_1: 7.21621032e-05 + ArtUnc_2: 1.23048781e-04 + ArtUnc_3: -1.09971105e-04 + ArtUnc_4: 6.27002885e-05 + ArtUnc_5: -6.02943009e-05 + ArtUnc_6: 4.34658099e-04 + ArtUnc_7: -3.61249434e-04 + ArtUnc_8: 2.74719553e-04 + ArtUnc_9: 6.79341868e-04 + ArtUnc_10: 7.18950694e-04 + ArtUnc_11: 1.46698904e-03 + ArtUnc_12: 2.02719795e-03 + ArtUnc_13: 2.47584600e-03 + ArtUnc_14: -1.56983185e-03 + ArtUnc_15: -2.71772660e-04 + ArtUnc_16: 2.06381860e-04 + ArtUnc_17: -4.64452038e-04 + ArtUnc_18: -7.91190657e-05 + ArtUnc_19: -2.41472126e-04 + ArtUnc_20: -3.82921980e-03 + ArtUnc_21: 1.68447412e-03 + ArtUnc_22: 3.76969009e-04 + ArtUnc_23: -1.28841961e-03 + ArtUnc_24: -1.32759518e-03 + ArtUnc_25: -1.23075299e-03 + ArtUnc_26: 2.48730214e-05 + ArtUnc_27: 1.00506781e-04 + ArtUnc_28: 2.06548102e-03 + ArtUnc_29: -3.17692397e-04 + ArtUnc_30: 4.99228109e-03 + ArtUnc_31: -8.23676779e-04 + ArtUnc_32: -2.90347393e-03 + ArtUnc_33: -7.31005075e-04 + ArtUnc_34: -1.77963468e-02 + ArtUnc_35: 1.95474330e-02 + ArtUnc_36: 2.73398923e-02 + ArtUnc_37: 1.56148200e-04 + ArtUnc_38: 1.75219544e-02 + ArtUnc_39: 1.81986212e-04 + ArtUnc_40: -3.71516622e-02 + ArtUnc_41: 3.43122998e-04 + ArtUnc_42: -2.75340666e-04 + ArtUnc_43: 3.25918769e-03 + ArtUnc_44: 2.43754107e-02 + ArtUnc_45: 1.52457686e-02 + ArtUnc_46: 2.49631556e-02 + ArtUnc_47: 1.54721672e-02 + ArtUnc_48: -7.65619239e-03 +- Syst_1: 1.82908500e-01 Syst_2: 0.0 Syst_3: 0.0 Syst_4: 0.10065 Syst_5: 0.10065 Syst_6: 0.0915 - Syst_7: 0.04754479466777 - Syst_8: 0.0731634 - Syst_9: 0.1097451 - Syst_10: 0.53043465 - ArtUnc_1: -0.0494025456247116 - ArtUnc_2: -0.20909695793592356 - ArtUnc_3: -0.02037555536357271 - ArtUnc_4: 0.09176342403799415 - ArtUnc_5: -0.18391832341966266 - ArtUnc_6: 0.0010769985574517159 - ArtUnc_7: -0.0018917152826334075 - ArtUnc_8: -0.0005466721002282343 - ArtUnc_9: 0.002498791733459788 - ArtUnc_10: -0.03331893911538184 - ArtUnc_11: -0.16165679229429702 - ArtUnc_12: -0.36972241529091526 - ArtUnc_13: 0.15064301449204284 - ArtUnc_14: -0.31681760124306957 - ArtUnc_15: 0.19796206119456883 - ArtUnc_16: -0.046679637145416945 - ArtUnc_17: -0.015295153367238785 - ArtUnc_18: -0.005698698609841413 - ArtUnc_19: -0.037931602866116444 - ArtUnc_20: -0.03138287783971015 - ArtUnc_21: -0.0417353943680201 - ArtUnc_22: 0.2082115298648994 - ArtUnc_23: -0.1421311208167211 - ArtUnc_24: -0.044038079060836635 - ArtUnc_25: 0.1471558527633987 - ArtUnc_26: -0.0007792324070036451 - ArtUnc_27: 7.76937186865009e-05 - ArtUnc_28: -0.0011429813960972914 - ArtUnc_29: -0.0003053924174090318 - ArtUnc_30: 0.0027901191966164625 - ArtUnc_31: 0.001704678577206019 - ArtUnc_32: -0.005444501372512984 - ArtUnc_33: -0.003014118722396662 - ArtUnc_34: -0.001344231215406643 - ArtUnc_35: -0.0016565270487334896 - ArtUnc_36: -0.0005977991360233706 - ArtUnc_37: 4.2479835855230046e-05 - ArtUnc_38: -0.0006448791232221495 - ArtUnc_39: 0.00022302903956468762 - ArtUnc_40: -0.00017391355794317066 - ArtUnc_41: -4.184324884952297e-07 - ArtUnc_42: -2.221795298918533e-06 - ArtUnc_43: 2.922328420457421e-06 - ArtUnc_44: -6.402089680170615e-06 - ArtUnc_45: 6.90442718078401e-05 - ArtUnc_46: -6.308218390779802e-05 - ArtUnc_47: -0.00010559594307005646 - ArtUnc_48: 7.374955409941856e-05 -- Syst_1: 0.41789095 + Syst_7: 4.75447947e-02 + Syst_8: 7.31634000e-02 + Syst_9: 1.09745100e-01 + Syst_10: 5.30434650e-01 + ArtUnc_1: -4.94025456e-02 + ArtUnc_2: -2.09096958e-01 + ArtUnc_3: -2.03755554e-02 + ArtUnc_4: 9.17634240e-02 + ArtUnc_5: -1.83918323e-01 + ArtUnc_6: 1.07699856e-03 + ArtUnc_7: -1.89171528e-03 + ArtUnc_8: -5.46672100e-04 + ArtUnc_9: 2.49879173e-03 + ArtUnc_10: -3.33189391e-02 + ArtUnc_11: -1.61656792e-01 + ArtUnc_12: -3.69722415e-01 + ArtUnc_13: 1.50643014e-01 + ArtUnc_14: -3.16817601e-01 + ArtUnc_15: 1.97962061e-01 + ArtUnc_16: -4.66796371e-02 + ArtUnc_17: -1.52951534e-02 + ArtUnc_18: -5.69869861e-03 + ArtUnc_19: -3.79316029e-02 + ArtUnc_20: -3.13828778e-02 + ArtUnc_21: -4.17353944e-02 + ArtUnc_22: 2.08211530e-01 + ArtUnc_23: -1.42131121e-01 + ArtUnc_24: -4.40380791e-02 + ArtUnc_25: 1.47155853e-01 + ArtUnc_26: -7.79232407e-04 + ArtUnc_27: 7.76937187e-05 + ArtUnc_28: -1.14298140e-03 + ArtUnc_29: -3.05392417e-04 + ArtUnc_30: 2.79011920e-03 + ArtUnc_31: 1.70467858e-03 + ArtUnc_32: -5.44450137e-03 + ArtUnc_33: -3.01411872e-03 + ArtUnc_34: -1.34423122e-03 + ArtUnc_35: -1.65652705e-03 + ArtUnc_36: -5.97799136e-04 + ArtUnc_37: 4.24798359e-05 + ArtUnc_38: -6.44879123e-04 + ArtUnc_39: 2.23029040e-04 + ArtUnc_40: -1.73913558e-04 + ArtUnc_41: -4.18432488e-07 + ArtUnc_42: -2.22179530e-06 + ArtUnc_43: 2.92232842e-06 + ArtUnc_44: -6.40208968e-06 + ArtUnc_45: 6.90442718e-05 + ArtUnc_46: -6.30821839e-05 + ArtUnc_47: -1.05595943e-04 + ArtUnc_48: 7.37495541e-05 +- Syst_1: 4.17890950e-01 Syst_2: 0.1243 Syst_3: 0.1243 Syst_4: 0.01695 Syst_5: 0.01695 - Syst_6: 0.06266153126121 - Syst_7: 0.03388305 - Syst_8: 0.0451774 - Syst_9: 0.0677661 - Syst_10: 0.32753615 - ArtUnc_1: 0.009854561722224384 - ArtUnc_2: 0.04846704598489943 - ArtUnc_3: 0.011365752311293848 - ArtUnc_4: -0.021166947922208534 - ArtUnc_5: 0.03601913327176323 - ArtUnc_6: 0.05802120384117674 - ArtUnc_7: -0.1912504625350116 - ArtUnc_8: 0.11134674867583139 - ArtUnc_9: 0.02338423686725433 - ArtUnc_10: -0.14472641517144694 - ArtUnc_11: 0.1316645147679338 - ArtUnc_12: 0.409617759935588 - ArtUnc_13: -0.10926515746409188 - ArtUnc_14: 0.2749110203740294 - ArtUnc_15: -0.15992789779713878 - ArtUnc_16: -0.10270900988701961 - ArtUnc_17: -0.06930202462155861 - ArtUnc_18: 0.004250472421259001 - ArtUnc_19: -0.0023898808317010037 - ArtUnc_20: 0.002141933878423916 - ArtUnc_21: -0.025162265372979536 - ArtUnc_22: 0.19695622903604817 - ArtUnc_23: -0.13873804064528678 - ArtUnc_24: -0.01941215431100276 - ArtUnc_25: 0.15256325269134507 - ArtUnc_26: -0.0008302505114883873 - ArtUnc_27: 7.130486604985159e-05 - ArtUnc_28: -0.0010069396089572346 - ArtUnc_29: -2.911137053490131e-05 - ArtUnc_30: 0.007518979817036222 - ArtUnc_31: 0.00572636225734006 - ArtUnc_32: -0.013467301022165491 - ArtUnc_33: -0.009757653602815084 - ArtUnc_34: -0.006963912595936297 - ArtUnc_35: -0.007227743334456407 - ArtUnc_36: -0.002731435808698702 - ArtUnc_37: 0.00010653862181507338 - ArtUnc_38: -0.002617632492940132 - ArtUnc_39: 0.00016107584135549344 - ArtUnc_40: -0.0014196539296934794 - ArtUnc_41: -1.8595735532588298e-06 - ArtUnc_42: -4.666282467710694e-06 - ArtUnc_43: -2.7381090035394868e-05 - ArtUnc_44: 4.3864124239036036e-05 - ArtUnc_45: 0.0002578874978693949 - ArtUnc_46: -0.00020539732583996453 - ArtUnc_47: -0.00026972773832842513 - ArtUnc_48: 0.0002200935147736765 -- Syst_1: 0.0454178392974 - Syst_2: 0.0656737961443 - Syst_3: 0.0656737961443 - Syst_4: 0.00189715 - Syst_5: 0.00189715 - Syst_6: 0.01244044449638 - Syst_7: 0.005357901593933 - Syst_8: 0.0151392797658 - Syst_9: 0.0227089196487 - Syst_10: 0.109759778302 - ArtUnc_1: -0.00014859810301749837 - ArtUnc_2: -0.00023965488006038192 - ArtUnc_3: -6.610305953005054e-05 - ArtUnc_4: 0.00042741990452900395 - ArtUnc_5: 0.0003259265908205049 - ArtUnc_6: -0.003237041095699973 - ArtUnc_7: 0.010499685185029646 - ArtUnc_8: -0.008316977173760266 - ArtUnc_9: -0.0007113105232410753 - ArtUnc_10: 0.006503439797961557 - ArtUnc_11: -0.01558455779555293 - ArtUnc_12: -0.05144137461940457 - ArtUnc_13: 0.013462993085596611 - ArtUnc_14: -0.03365667353109774 - ArtUnc_15: 0.02004715297818145 - ArtUnc_16: 0.03959917822479907 - ArtUnc_17: -0.023230920862449638 - ArtUnc_18: 0.015743244966616828 - ArtUnc_19: 0.08555952133006452 - ArtUnc_20: 0.003790850622492895 - ArtUnc_21: 0.06529972642607375 - ArtUnc_22: -0.03979962291514853 - ArtUnc_23: 0.008081861541389504 - ArtUnc_24: 0.06640219898899037 - ArtUnc_25: -0.009819664024945017 - ArtUnc_26: 0.00011503367661517083 - ArtUnc_27: 1.9217747785633425e-05 - ArtUnc_28: -0.0010844098487552017 - ArtUnc_29: 0.0010964187823631949 - ArtUnc_30: 0.046524208708370235 - ArtUnc_31: 0.04129634956420759 - ArtUnc_32: -0.08661827706678554 - ArtUnc_33: -0.0685385730160076 - ArtUnc_34: -0.053420363516363804 - ArtUnc_35: -0.0507410264140792 - ArtUnc_36: -0.019577102240493742 - ArtUnc_37: 0.0007162437306764354 - ArtUnc_38: -0.015870587983854642 - ArtUnc_39: 0.00041383883313550544 - ArtUnc_40: -0.008706150690500146 - ArtUnc_41: -1.4614797053646401e-05 - ArtUnc_42: -3.507101177114511e-05 - ArtUnc_43: 3.538633063053051e-05 - ArtUnc_44: -0.00031981577455460203 - ArtUnc_45: -0.0006729460288075424 - ArtUnc_46: 0.00032814093399520066 - ArtUnc_47: 0.0002273237568095575 - ArtUnc_48: -5.9735402969162795e-05 -- Syst_1: -0.02372056050301 - Syst_2: 0.009887756267225 - Syst_3: 0.009887756267225 - Syst_4: 0.0004435175900401 - Syst_5: 0.0004435175900401 - Syst_6: 0.00204544722 - Syst_7: 0.0009603761342813 - Syst_8: 0.001355460600172 - Syst_9: 0.002033190900258 - Syst_10: 0.009827089351246 - ArtUnc_1: -5.418030545007595e-05 - ArtUnc_2: -0.0003625652329017008 - ArtUnc_3: -5.4904662987967804e-05 - ArtUnc_4: 0.00018380561480840042 - ArtUnc_5: -0.0003866965206325199 - ArtUnc_6: -0.0003886970730275022 - ArtUnc_7: 0.0016333002292653017 - ArtUnc_8: -0.0009653747370304133 - ArtUnc_9: -0.0001625182589741811 - ArtUnc_10: 0.0014251535429572384 - ArtUnc_11: -0.001055009372615085 - ArtUnc_12: -0.00362766827234698 - ArtUnc_13: 0.0010848077160619375 - ArtUnc_14: -0.0025033532060559365 - ArtUnc_15: 0.0014577233531780508 - ArtUnc_16: 0.0009927258727934147 - ArtUnc_17: 0.0009233630478329603 - ArtUnc_18: -9.080952996242226e-05 - ArtUnc_19: -0.000375257673005961 - ArtUnc_20: 0.0005854013588495772 - ArtUnc_21: -0.00018257296022678755 - ArtUnc_22: -0.0032815485981402405 - ArtUnc_23: 0.002045247017008894 - ArtUnc_24: -0.0001105673342240878 - ArtUnc_25: -0.0023933862345482688 - ArtUnc_26: 1.4328662033958655e-05 - ArtUnc_27: -2.5043908581589404e-06 - ArtUnc_28: -9.351405979811852e-05 - ArtUnc_29: -3.697171057044732e-05 - ArtUnc_30: -0.00237759599598045 - ArtUnc_31: -0.0014552357533778538 - ArtUnc_32: 0.004863519968032273 - ArtUnc_33: 0.0016991280192701923 - ArtUnc_34: 0.018648845571060915 - ArtUnc_35: -0.018128742436110956 - ArtUnc_36: -0.0014282880141290495 - ArtUnc_37: -8.020417347264552e-05 - ArtUnc_38: -0.03736034193348533 - ArtUnc_39: 0.00037151158211420844 - ArtUnc_40: -0.026063005164948517 - ArtUnc_41: 5.207991661824892e-05 - ArtUnc_42: 0.00017035091016617102 - ArtUnc_43: -0.0038913627653719457 - ArtUnc_44: 0.009198644337979268 - ArtUnc_45: 0.028907076183326937 - ArtUnc_46: -0.020292868826084654 - ArtUnc_47: -0.02305623944684032 - ArtUnc_48: 0.017855777231598594 -- Syst_1: 0.1171339461542 - Syst_2: 0.011808683245815 - Syst_3: 0.011808683245815 - Syst_4: 0.07129138497085 - Syst_5: 0.07129138497085 - Syst_6: 0.05972040358486 - Syst_7: 0.03346684175835 - Syst_8: 0.0669336835167 - Syst_9: 0.100400525275 - Syst_10: 0.4852692054961 - ArtUnc_1: -0.002341032666102491 - ArtUnc_2: 0.11248927411000696 - ArtUnc_3: 0.21802948819966247 - ArtUnc_4: -0.03626906566777447 - ArtUnc_5: -0.13704828781600362 - ArtUnc_6: -0.001617586317238298 - ArtUnc_7: 0.008733365703019507 - ArtUnc_8: 0.00039011205173827 - ArtUnc_9: 0.007253373835335389 - ArtUnc_10: -0.0010118795601656992 - ArtUnc_11: -0.04972608663785471 - ArtUnc_12: 0.2651279890218607 - ArtUnc_13: -0.22631825448573595 - ArtUnc_14: -0.15737516179715566 - ArtUnc_15: 0.3758714734693978 - ArtUnc_16: -0.04177078502907837 - ArtUnc_17: -0.03600262813151409 - ArtUnc_18: -0.002069230505265829 - ArtUnc_19: 0.011048623887910537 - ArtUnc_20: 0.06453018652312978 - ArtUnc_21: -0.02671209013905538 - ArtUnc_22: -0.21163332429959977 - ArtUnc_23: -0.2111795990476565 - ArtUnc_24: -0.05084864158010721 - ArtUnc_25: 0.011619426659091341 - ArtUnc_26: 0.00031342986413816987 - ArtUnc_27: 3.153386978485801e-05 - ArtUnc_28: -0.0024940806248832216 - ArtUnc_29: -0.0004182524329269247 - ArtUnc_30: -0.0009306573871564386 - ArtUnc_31: -0.003863243659740792 - ArtUnc_32: 0.0032797585420363735 - ArtUnc_33: -0.006069123974009157 - ArtUnc_34: -0.0005547092257242231 - ArtUnc_35: 0.0006645460973065413 - ArtUnc_36: -0.00022290279537253422 - ArtUnc_37: 2.660152762330811e-05 - ArtUnc_38: -0.00012804694699600894 - ArtUnc_39: 0.00022401118163180251 - ArtUnc_40: 7.914955919942672e-05 - ArtUnc_41: 6.120439071623971e-07 - ArtUnc_42: -1.304685731943768e-05 - ArtUnc_43: 0.00013295523870986178 - ArtUnc_44: -9.520590804290678e-06 - ArtUnc_45: 4.2583412509745535e-05 - ArtUnc_46: -0.00011876460905274192 - ArtUnc_47: 0.00020151191658722295 - ArtUnc_48: -0.00013736634240164814 -- Syst_1: 0.3774329056418 - Syst_2: 0.11129110476585 - Syst_3: 0.11129110476585 - Syst_4: 0.01925293397193 - Syst_5: 0.01925293397193 - Syst_6: 0.05976916425701 - Syst_7: 0.01078379730405 - Syst_8: 0.0431351892162 - Syst_9: 0.0647027838243 - Syst_10: 0.3127301218175 - ArtUnc_1: -0.0005604364275136085 - ArtUnc_2: -0.02662657348952123 - ArtUnc_3: -0.05128353288989766 - ArtUnc_4: 0.005426319881636871 - ArtUnc_5: 0.03008224095824852 - ArtUnc_6: -0.008362619177074657 - ArtUnc_7: 0.1622776132000654 - ArtUnc_8: 0.04861782333297286 - ArtUnc_9: 0.17554157170970036 - ArtUnc_10: -0.11237080343447103 - ArtUnc_11: 0.01800676818031012 - ArtUnc_12: -0.24874619511907214 - ArtUnc_13: 0.2859572578998697 - ArtUnc_14: 0.12027671941766274 - ArtUnc_15: -0.3645556399865678 - ArtUnc_16: -0.09739204635331104 - ArtUnc_17: -0.06013395848346612 - ArtUnc_18: 0.006917233861581766 - ArtUnc_19: -0.01400026211698466 - ArtUnc_20: 0.08660413948773434 - ArtUnc_21: -0.004813348698404259 - ArtUnc_22: -0.18374087698339536 - ArtUnc_23: -0.19127778638006965 - ArtUnc_24: -0.037308653482957206 - ArtUnc_25: 0.020094064981280756 - ArtUnc_26: 0.00016558177755338654 - ArtUnc_27: 2.2789657550042835e-05 - ArtUnc_28: -0.0031747837058566783 - ArtUnc_29: -0.0002602676095390022 - ArtUnc_30: -0.0004718175523775914 - ArtUnc_31: -0.0091554948703019 - ArtUnc_32: 0.0112810365609697 - ArtUnc_33: -0.019119815526694874 - ArtUnc_34: -0.004448764438480526 - ArtUnc_35: 0.0011998493393061197 - ArtUnc_36: -0.0025280074383130452 - ArtUnc_37: 5.5965049331934436e-05 - ArtUnc_38: -0.0011825648999325361 - ArtUnc_39: 0.0001189182871791991 - ArtUnc_40: -0.00031736330720480595 - ArtUnc_41: 1.4667928589924683e-06 - ArtUnc_42: -2.3943545394897743e-05 - ArtUnc_43: 0.0002485566819575982 - ArtUnc_44: 4.5095309030656296e-06 - ArtUnc_45: 0.00012527296275893578 - ArtUnc_46: -0.0003002521752213016 - ArtUnc_47: 0.00044894981397489413 - ArtUnc_48: -0.0002918081747028632 -- Syst_1: 0.08034012991496 - Syst_2: 0.0593265368006 - Syst_3: 0.0593265368006 - Syst_4: 0.0018240875 - Syst_5: 0.0018240875 - Syst_6: 0.01302659032865 - Syst_7: 0.006052838729189 - Syst_8: 0.01095547226113 - Syst_9: 0.02191094452226 - Syst_10: 0.1059028985243 - ArtUnc_1: 2.193175074420339e-06 - ArtUnc_2: 0.0003468374462361535 - ArtUnc_3: 0.000649917276971097 - ArtUnc_4: 0.0005120919616929485 - ArtUnc_5: 6.20053715683644e-05 - ArtUnc_6: 0.0006452206637308848 - ArtUnc_7: -0.01155706538669965 - ArtUnc_8: -0.005339176714642332 - ArtUnc_9: -0.011011267030517701 - ArtUnc_10: 0.007523759976999859 - ArtUnc_11: -0.0011057409122950273 - ArtUnc_12: 0.03295077222819947 - ArtUnc_13: -0.037284355787077145 - ArtUnc_14: -0.01582288747274598 - ArtUnc_15: 0.048123110224559534 - ArtUnc_16: 0.0040397051980830346 - ArtUnc_17: 0.03280874524122403 - ArtUnc_18: 0.02676983549607207 - ArtUnc_19: -0.08377447512163909 - ArtUnc_20: 0.012284740752206627 - ArtUnc_21: 0.07545389174766354 - ArtUnc_22: 0.046332567521244844 - ArtUnc_23: 0.03389951835171854 - ArtUnc_24: 0.030680266567171235 - ArtUnc_25: -0.0018269600887359234 - ArtUnc_26: 4.7769882102448685e-05 - ArtUnc_27: -8.896700893230444e-05 - ArtUnc_28: -0.009197683727756908 - ArtUnc_29: 2.4720069315266235e-05 - ArtUnc_30: 0.003588941719397251 - ArtUnc_31: -0.047557597593582586 - ArtUnc_32: 0.07283686951236612 - ArtUnc_33: -0.12091665498933249 - ArtUnc_34: -0.028543047849292808 - ArtUnc_35: 0.0011391066001744188 - ArtUnc_36: -0.014107081935166564 - ArtUnc_37: 0.00036514873933557755 - ArtUnc_38: -0.006665032194913674 - ArtUnc_39: 0.00020623448155534317 - ArtUnc_40: -0.001909559317335236 - ArtUnc_41: -9.068281496638177e-06 - ArtUnc_42: -1.58170939819142e-05 - ArtUnc_43: 4.826472978547635e-05 - ArtUnc_44: -4.555395214222337e-05 - ArtUnc_45: -0.0003500430580575898 - ArtUnc_46: 0.0005047666337667157 - ArtUnc_47: -0.0004962824669619159 - ArtUnc_48: 0.00035545090972448714 -- Syst_1: -0.01398796703499 - Syst_2: 0.010714293802555 - Syst_3: 0.010714293802555 - Syst_4: 0.00016386564629615 - Syst_5: 0.00016386564629615 - Syst_6: 0.00113472685275 - Syst_7: 0.000327567426946 - Syst_8: 0.0007561063262158 - Syst_9: 0.002268318978647 - Syst_10: 0.01096354173013 - ArtUnc_1: 2.587025671818761e-06 - ArtUnc_2: 0.00017541823109755957 - ArtUnc_3: 0.0003610793104508411 - ArtUnc_4: -5.081902353319007e-05 - ArtUnc_5: -0.00025168549796406953 - ArtUnc_6: 6.615558910865345e-05 - ArtUnc_7: -0.0011893375094225312 - ArtUnc_8: -0.0002773050226373003 - ArtUnc_9: -0.0013966935626538255 - ArtUnc_10: 0.0009315902648619586 - ArtUnc_11: -0.0001420442057971165 - ArtUnc_12: 0.002840377436992054 - ArtUnc_13: -0.0031279830782518303 - ArtUnc_14: -0.0012551434725902276 - ArtUnc_15: 0.004475456130485767 - ArtUnc_16: 0.0016783869186529615 - ArtUnc_17: 0.000340244057048804 - ArtUnc_18: -0.0011929784280712977 - ArtUnc_19: 0.0013141727942169354 - ArtUnc_20: -0.0019819877386984233 - ArtUnc_21: -0.0011453855134801578 - ArtUnc_22: 0.004106632899893661 - ArtUnc_23: 0.003837566320910952 - ArtUnc_24: 0.00031377739971216886 - ArtUnc_25: -0.0001649750674453014 - ArtUnc_26: -6.988655932788507e-06 - ArtUnc_27: -2.5691801438210386e-07 - ArtUnc_28: 0.005799597048033772 - ArtUnc_29: 0.0002790737855030663 - ArtUnc_30: -0.0004109967307111478 - ArtUnc_31: -0.005421966672683254 - ArtUnc_32: -0.009487053739351254 - ArtUnc_33: 0.006251916607550003 - ArtUnc_34: -0.020690142002840584 - ArtUnc_35: 0.03733964408143109 - ArtUnc_36: -0.03475961765123007 - ArtUnc_37: -6.987957963262148e-05 - ArtUnc_38: -0.01729964488082195 - ArtUnc_39: 9.347467650631465e-05 - ArtUnc_40: -0.007324021153232013 - ArtUnc_41: 0.0002507752414869031 - ArtUnc_42: -0.0005959089557363889 - ArtUnc_43: 0.008894647224909622 - ArtUnc_44: 0.0012977229713966422 - ArtUnc_45: 0.011436238665992214 - ArtUnc_46: -0.023033908296374975 - ArtUnc_47: 0.029449500158204703 - ArtUnc_48: -0.019669914564562133 -- Syst_1: 0.1492981862873 - Syst_2: 0.033936365082315 - Syst_3: 0.033936365082315 - Syst_4: 0.04133290461062 - Syst_5: 0.04133290461062 - Syst_6: 0.1065137174707 - Syst_7: 0.0597192745149 - Syst_8: 0.1791578235447 - Syst_9: 0.08957891177235 - Syst_10: 0.432964740233 - ArtUnc_1: -0.007332303244585789 - ArtUnc_2: -0.025085424896453025 - ArtUnc_3: -0.09047735425659005 - ArtUnc_4: -0.21351266137666589 - ArtUnc_5: -0.07773299211514062 - ArtUnc_6: 0.00010081322095195367 - ArtUnc_7: -0.010245813593110647 - ArtUnc_8: -0.01315416281332971 - ArtUnc_9: 0.003421734728684307 - ArtUnc_10: -0.013822272701932868 - ArtUnc_11: -0.05800989294279442 - ArtUnc_12: -0.0032309408042313042 - ArtUnc_13: 0.2847597106093592 - ArtUnc_14: 0.30501561942289757 - ArtUnc_15: 0.29878889171707784 - ArtUnc_16: -0.05944045880600053 - ArtUnc_17: -0.02044050636885757 - ArtUnc_18: 0.05471094636551239 - ArtUnc_19: 0.015488079920283938 - ArtUnc_20: 0.08045275957203982 - ArtUnc_21: -0.05153633951225436 - ArtUnc_22: 0.1165512605105853 - ArtUnc_23: -0.09289278379262624 - ArtUnc_24: 0.08154112248921395 - ArtUnc_25: -0.24166071121231977 - ArtUnc_26: 0.006361149493088402 - ArtUnc_27: -0.0009522298276875294 - ArtUnc_28: 0.0107418945428198 - ArtUnc_29: -0.00012209435534187287 - ArtUnc_30: -0.0008475742449792109 - ArtUnc_31: 0.006704378927201169 - ArtUnc_32: 0.0034521653522446467 - ArtUnc_33: -0.0003678065610370338 - ArtUnc_34: 0.0014973435649348677 - ArtUnc_35: 0.0003490138417323423 - ArtUnc_36: 0.0010033780416747247 - ArtUnc_37: 6.834018664876597e-05 - ArtUnc_38: 0.00014026829382689582 - ArtUnc_39: 0.0006190270810577942 - ArtUnc_40: 0.00022792126477509393 - ArtUnc_41: 4.972050983200147e-06 - ArtUnc_42: 4.020199165931958e-05 - ArtUnc_43: -0.0003041791899765717 - ArtUnc_44: -1.95874217742144e-05 - ArtUnc_45: -2.9359336814112074e-05 - ArtUnc_46: 8.056150871874297e-05 - ArtUnc_47: -0.00013445568552746724 - ArtUnc_48: 3.628585760214528e-05 -- Syst_1: 0.2773386 + Syst_6: 6.26615313e-02 + Syst_7: 3.38830500e-02 + Syst_8: 4.51774000e-02 + Syst_9: 6.77661000e-02 + Syst_10: 3.27536150e-01 + ArtUnc_1: 9.85456172e-03 + ArtUnc_2: 4.84670460e-02 + ArtUnc_3: 1.13657523e-02 + ArtUnc_4: -2.11669479e-02 + ArtUnc_5: 3.60191333e-02 + ArtUnc_6: 5.80212038e-02 + ArtUnc_7: -1.91250463e-01 + ArtUnc_8: 1.11346749e-01 + ArtUnc_9: 2.33842369e-02 + ArtUnc_10: -1.44726415e-01 + ArtUnc_11: 1.31664515e-01 + ArtUnc_12: 4.09617760e-01 + ArtUnc_13: -1.09265157e-01 + ArtUnc_14: 2.74911020e-01 + ArtUnc_15: -1.59927898e-01 + ArtUnc_16: -1.02709010e-01 + ArtUnc_17: -6.93020246e-02 + ArtUnc_18: 4.25047242e-03 + ArtUnc_19: -2.38988083e-03 + ArtUnc_20: 2.14193388e-03 + ArtUnc_21: -2.51622654e-02 + ArtUnc_22: 1.96956229e-01 + ArtUnc_23: -1.38738041e-01 + ArtUnc_24: -1.94121543e-02 + ArtUnc_25: 1.52563253e-01 + ArtUnc_26: -8.30250511e-04 + ArtUnc_27: 7.13048660e-05 + ArtUnc_28: -1.00693961e-03 + ArtUnc_29: -2.91113705e-05 + ArtUnc_30: 7.51897982e-03 + ArtUnc_31: 5.72636226e-03 + ArtUnc_32: -1.34673010e-02 + ArtUnc_33: -9.75765360e-03 + ArtUnc_34: -6.96391260e-03 + ArtUnc_35: -7.22774333e-03 + ArtUnc_36: -2.73143581e-03 + ArtUnc_37: 1.06538622e-04 + ArtUnc_38: -2.61763249e-03 + ArtUnc_39: 1.61075841e-04 + ArtUnc_40: -1.41965393e-03 + ArtUnc_41: -1.85957355e-06 + ArtUnc_42: -4.66628247e-06 + ArtUnc_43: -2.73810900e-05 + ArtUnc_44: 4.38641242e-05 + ArtUnc_45: 2.57887498e-04 + ArtUnc_46: -2.05397326e-04 + ArtUnc_47: -2.69727738e-04 + ArtUnc_48: 2.20093515e-04 +- Syst_1: 4.54178393e-02 + Syst_2: 6.56737961e-02 + Syst_3: 6.56737961e-02 + Syst_4: 1.89715000e-03 + Syst_5: 1.89715000e-03 + Syst_6: 1.24404445e-02 + Syst_7: 5.35790159e-03 + Syst_8: 1.51392798e-02 + Syst_9: 2.27089196e-02 + Syst_10: 1.09759778e-01 + ArtUnc_1: -1.48598103e-04 + ArtUnc_2: -2.39654880e-04 + ArtUnc_3: -6.61030595e-05 + ArtUnc_4: 4.27419905e-04 + ArtUnc_5: 3.25926591e-04 + ArtUnc_6: -3.23704110e-03 + ArtUnc_7: 1.04996852e-02 + ArtUnc_8: -8.31697717e-03 + ArtUnc_9: -7.11310523e-04 + ArtUnc_10: 6.50343980e-03 + ArtUnc_11: -1.55845578e-02 + ArtUnc_12: -5.14413746e-02 + ArtUnc_13: 1.34629931e-02 + ArtUnc_14: -3.36566735e-02 + ArtUnc_15: 2.00471530e-02 + ArtUnc_16: 3.95991782e-02 + ArtUnc_17: -2.32309209e-02 + ArtUnc_18: 1.57432450e-02 + ArtUnc_19: 8.55595213e-02 + ArtUnc_20: 3.79085062e-03 + ArtUnc_21: 6.52997264e-02 + ArtUnc_22: -3.97996229e-02 + ArtUnc_23: 8.08186154e-03 + ArtUnc_24: 6.64021990e-02 + ArtUnc_25: -9.81966402e-03 + ArtUnc_26: 1.15033677e-04 + ArtUnc_27: 1.92177478e-05 + ArtUnc_28: -1.08440985e-03 + ArtUnc_29: 1.09641878e-03 + ArtUnc_30: 4.65242087e-02 + ArtUnc_31: 4.12963496e-02 + ArtUnc_32: -8.66182771e-02 + ArtUnc_33: -6.85385730e-02 + ArtUnc_34: -5.34203635e-02 + ArtUnc_35: -5.07410264e-02 + ArtUnc_36: -1.95771022e-02 + ArtUnc_37: 7.16243731e-04 + ArtUnc_38: -1.58705880e-02 + ArtUnc_39: 4.13838833e-04 + ArtUnc_40: -8.70615069e-03 + ArtUnc_41: -1.46147971e-05 + ArtUnc_42: -3.50710118e-05 + ArtUnc_43: 3.53863306e-05 + ArtUnc_44: -3.19815775e-04 + ArtUnc_45: -6.72946029e-04 + ArtUnc_46: 3.28140934e-04 + ArtUnc_47: 2.27323757e-04 + ArtUnc_48: -5.97354030e-05 +- Syst_1: -2.37205605e-02 + Syst_2: 9.88775627e-03 + Syst_3: 9.88775627e-03 + Syst_4: 4.43517590e-04 + Syst_5: 4.43517590e-04 + Syst_6: 2.04544722e-03 + Syst_7: 9.60376134e-04 + Syst_8: 1.35546060e-03 + Syst_9: 2.03319090e-03 + Syst_10: 9.82708935e-03 + ArtUnc_1: -5.41803055e-05 + ArtUnc_2: -3.62565233e-04 + ArtUnc_3: -5.49046630e-05 + ArtUnc_4: 1.83805615e-04 + ArtUnc_5: -3.86696521e-04 + ArtUnc_6: -3.88697073e-04 + ArtUnc_7: 1.63330023e-03 + ArtUnc_8: -9.65374737e-04 + ArtUnc_9: -1.62518259e-04 + ArtUnc_10: 1.42515354e-03 + ArtUnc_11: -1.05500937e-03 + ArtUnc_12: -3.62766827e-03 + ArtUnc_13: 1.08480772e-03 + ArtUnc_14: -2.50335321e-03 + ArtUnc_15: 1.45772335e-03 + ArtUnc_16: 9.92725873e-04 + ArtUnc_17: 9.23363048e-04 + ArtUnc_18: -9.08095300e-05 + ArtUnc_19: -3.75257673e-04 + ArtUnc_20: 5.85401359e-04 + ArtUnc_21: -1.82572960e-04 + ArtUnc_22: -3.28154860e-03 + ArtUnc_23: 2.04524702e-03 + ArtUnc_24: -1.10567334e-04 + ArtUnc_25: -2.39338623e-03 + ArtUnc_26: 1.43286620e-05 + ArtUnc_27: -2.50439086e-06 + ArtUnc_28: -9.35140598e-05 + ArtUnc_29: -3.69717106e-05 + ArtUnc_30: -2.37759600e-03 + ArtUnc_31: -1.45523575e-03 + ArtUnc_32: 4.86351997e-03 + ArtUnc_33: 1.69912802e-03 + ArtUnc_34: 1.86488456e-02 + ArtUnc_35: -1.81287424e-02 + ArtUnc_36: -1.42828801e-03 + ArtUnc_37: -8.02041735e-05 + ArtUnc_38: -3.73603419e-02 + ArtUnc_39: 3.71511582e-04 + ArtUnc_40: -2.60630052e-02 + ArtUnc_41: 5.20799166e-05 + ArtUnc_42: 1.70350910e-04 + ArtUnc_43: -3.89136277e-03 + ArtUnc_44: 9.19864434e-03 + ArtUnc_45: 2.89070762e-02 + ArtUnc_46: -2.02928688e-02 + ArtUnc_47: -2.30562394e-02 + ArtUnc_48: 1.78557772e-02 +- Syst_1: 1.17133946e-01 + Syst_2: 1.18086832e-02 + Syst_3: 1.18086832e-02 + Syst_4: 7.12913850e-02 + Syst_5: 7.12913850e-02 + Syst_6: 5.97204036e-02 + Syst_7: 3.34668418e-02 + Syst_8: 6.69336835e-02 + Syst_9: 1.00400525e-01 + Syst_10: 4.85269205e-01 + ArtUnc_1: -2.34103267e-03 + ArtUnc_2: 1.12489274e-01 + ArtUnc_3: 2.18029488e-01 + ArtUnc_4: -3.62690657e-02 + ArtUnc_5: -1.37048288e-01 + ArtUnc_6: -1.61758632e-03 + ArtUnc_7: 8.73336570e-03 + ArtUnc_8: 3.90112052e-04 + ArtUnc_9: 7.25337384e-03 + ArtUnc_10: -1.01187956e-03 + ArtUnc_11: -4.97260866e-02 + ArtUnc_12: 2.65127989e-01 + ArtUnc_13: -2.26318254e-01 + ArtUnc_14: -1.57375162e-01 + ArtUnc_15: 3.75871473e-01 + ArtUnc_16: -4.17707850e-02 + ArtUnc_17: -3.60026281e-02 + ArtUnc_18: -2.06923051e-03 + ArtUnc_19: 1.10486239e-02 + ArtUnc_20: 6.45301865e-02 + ArtUnc_21: -2.67120901e-02 + ArtUnc_22: -2.11633324e-01 + ArtUnc_23: -2.11179599e-01 + ArtUnc_24: -5.08486416e-02 + ArtUnc_25: 1.16194267e-02 + ArtUnc_26: 3.13429864e-04 + ArtUnc_27: 3.15338698e-05 + ArtUnc_28: -2.49408062e-03 + ArtUnc_29: -4.18252433e-04 + ArtUnc_30: -9.30657387e-04 + ArtUnc_31: -3.86324366e-03 + ArtUnc_32: 3.27975854e-03 + ArtUnc_33: -6.06912397e-03 + ArtUnc_34: -5.54709226e-04 + ArtUnc_35: 6.64546097e-04 + ArtUnc_36: -2.22902795e-04 + ArtUnc_37: 2.66015276e-05 + ArtUnc_38: -1.28046947e-04 + ArtUnc_39: 2.24011182e-04 + ArtUnc_40: 7.91495592e-05 + ArtUnc_41: 6.12043907e-07 + ArtUnc_42: -1.30468573e-05 + ArtUnc_43: 1.32955239e-04 + ArtUnc_44: -9.52059080e-06 + ArtUnc_45: 4.25834125e-05 + ArtUnc_46: -1.18764609e-04 + ArtUnc_47: 2.01511917e-04 + ArtUnc_48: -1.37366342e-04 +- Syst_1: 3.77432906e-01 + Syst_2: 1.11291105e-01 + Syst_3: 1.11291105e-01 + Syst_4: 1.92529340e-02 + Syst_5: 1.92529340e-02 + Syst_6: 5.97691643e-02 + Syst_7: 1.07837973e-02 + Syst_8: 4.31351892e-02 + Syst_9: 6.47027838e-02 + Syst_10: 3.12730122e-01 + ArtUnc_1: -5.60436428e-04 + ArtUnc_2: -2.66265735e-02 + ArtUnc_3: -5.12835329e-02 + ArtUnc_4: 5.42631988e-03 + ArtUnc_5: 3.00822410e-02 + ArtUnc_6: -8.36261918e-03 + ArtUnc_7: 1.62277613e-01 + ArtUnc_8: 4.86178233e-02 + ArtUnc_9: 1.75541572e-01 + ArtUnc_10: -1.12370803e-01 + ArtUnc_11: 1.80067682e-02 + ArtUnc_12: -2.48746195e-01 + ArtUnc_13: 2.85957258e-01 + ArtUnc_14: 1.20276719e-01 + ArtUnc_15: -3.64555640e-01 + ArtUnc_16: -9.73920464e-02 + ArtUnc_17: -6.01339585e-02 + ArtUnc_18: 6.91723386e-03 + ArtUnc_19: -1.40002621e-02 + ArtUnc_20: 8.66041395e-02 + ArtUnc_21: -4.81334870e-03 + ArtUnc_22: -1.83740877e-01 + ArtUnc_23: -1.91277786e-01 + ArtUnc_24: -3.73086535e-02 + ArtUnc_25: 2.00940650e-02 + ArtUnc_26: 1.65581778e-04 + ArtUnc_27: 2.27896576e-05 + ArtUnc_28: -3.17478371e-03 + ArtUnc_29: -2.60267610e-04 + ArtUnc_30: -4.71817552e-04 + ArtUnc_31: -9.15549487e-03 + ArtUnc_32: 1.12810366e-02 + ArtUnc_33: -1.91198155e-02 + ArtUnc_34: -4.44876444e-03 + ArtUnc_35: 1.19984934e-03 + ArtUnc_36: -2.52800744e-03 + ArtUnc_37: 5.59650493e-05 + ArtUnc_38: -1.18256490e-03 + ArtUnc_39: 1.18918287e-04 + ArtUnc_40: -3.17363307e-04 + ArtUnc_41: 1.46679286e-06 + ArtUnc_42: -2.39435454e-05 + ArtUnc_43: 2.48556682e-04 + ArtUnc_44: 4.50953090e-06 + ArtUnc_45: 1.25272963e-04 + ArtUnc_46: -3.00252175e-04 + ArtUnc_47: 4.48949814e-04 + ArtUnc_48: -2.91808175e-04 +- Syst_1: 8.03401299e-02 + Syst_2: 5.93265368e-02 + Syst_3: 5.93265368e-02 + Syst_4: 1.82408750e-03 + Syst_5: 1.82408750e-03 + Syst_6: 1.30265903e-02 + Syst_7: 6.05283873e-03 + Syst_8: 1.09554723e-02 + Syst_9: 2.19109445e-02 + Syst_10: 1.05902899e-01 + ArtUnc_1: 2.19317507e-06 + ArtUnc_2: 3.46837446e-04 + ArtUnc_3: 6.49917277e-04 + ArtUnc_4: 5.12091962e-04 + ArtUnc_5: 6.20053716e-05 + ArtUnc_6: 6.45220664e-04 + ArtUnc_7: -1.15570654e-02 + ArtUnc_8: -5.33917671e-03 + ArtUnc_9: -1.10112670e-02 + ArtUnc_10: 7.52375998e-03 + ArtUnc_11: -1.10574091e-03 + ArtUnc_12: 3.29507722e-02 + ArtUnc_13: -3.72843558e-02 + ArtUnc_14: -1.58228875e-02 + ArtUnc_15: 4.81231102e-02 + ArtUnc_16: 4.03970520e-03 + ArtUnc_17: 3.28087452e-02 + ArtUnc_18: 2.67698355e-02 + ArtUnc_19: -8.37744751e-02 + ArtUnc_20: 1.22847408e-02 + ArtUnc_21: 7.54538917e-02 + ArtUnc_22: 4.63325675e-02 + ArtUnc_23: 3.38995184e-02 + ArtUnc_24: 3.06802666e-02 + ArtUnc_25: -1.82696009e-03 + ArtUnc_26: 4.77698821e-05 + ArtUnc_27: -8.89670089e-05 + ArtUnc_28: -9.19768373e-03 + ArtUnc_29: 2.47200693e-05 + ArtUnc_30: 3.58894172e-03 + ArtUnc_31: -4.75575976e-02 + ArtUnc_32: 7.28368695e-02 + ArtUnc_33: -1.20916655e-01 + ArtUnc_34: -2.85430478e-02 + ArtUnc_35: 1.13910660e-03 + ArtUnc_36: -1.41070819e-02 + ArtUnc_37: 3.65148739e-04 + ArtUnc_38: -6.66503219e-03 + ArtUnc_39: 2.06234482e-04 + ArtUnc_40: -1.90955932e-03 + ArtUnc_41: -9.06828150e-06 + ArtUnc_42: -1.58170940e-05 + ArtUnc_43: 4.82647298e-05 + ArtUnc_44: -4.55539521e-05 + ArtUnc_45: -3.50043058e-04 + ArtUnc_46: 5.04766634e-04 + ArtUnc_47: -4.96282467e-04 + ArtUnc_48: 3.55450910e-04 +- Syst_1: -1.39879670e-02 + Syst_2: 1.07142938e-02 + Syst_3: 1.07142938e-02 + Syst_4: 1.63865646e-04 + Syst_5: 1.63865646e-04 + Syst_6: 1.13472685e-03 + Syst_7: 3.27567427e-04 + Syst_8: 7.56106326e-04 + Syst_9: 2.26831898e-03 + Syst_10: 1.09635417e-02 + ArtUnc_1: 2.58702567e-06 + ArtUnc_2: 1.75418231e-04 + ArtUnc_3: 3.61079310e-04 + ArtUnc_4: -5.08190235e-05 + ArtUnc_5: -2.51685498e-04 + ArtUnc_6: 6.61555891e-05 + ArtUnc_7: -1.18933751e-03 + ArtUnc_8: -2.77305023e-04 + ArtUnc_9: -1.39669356e-03 + ArtUnc_10: 9.31590265e-04 + ArtUnc_11: -1.42044206e-04 + ArtUnc_12: 2.84037744e-03 + ArtUnc_13: -3.12798308e-03 + ArtUnc_14: -1.25514347e-03 + ArtUnc_15: 4.47545613e-03 + ArtUnc_16: 1.67838692e-03 + ArtUnc_17: 3.40244057e-04 + ArtUnc_18: -1.19297843e-03 + ArtUnc_19: 1.31417279e-03 + ArtUnc_20: -1.98198774e-03 + ArtUnc_21: -1.14538551e-03 + ArtUnc_22: 4.10663290e-03 + ArtUnc_23: 3.83756632e-03 + ArtUnc_24: 3.13777400e-04 + ArtUnc_25: -1.64975067e-04 + ArtUnc_26: -6.98865593e-06 + ArtUnc_27: -2.56918014e-07 + ArtUnc_28: 5.79959705e-03 + ArtUnc_29: 2.79073786e-04 + ArtUnc_30: -4.10996731e-04 + ArtUnc_31: -5.42196667e-03 + ArtUnc_32: -9.48705374e-03 + ArtUnc_33: 6.25191661e-03 + ArtUnc_34: -2.06901420e-02 + ArtUnc_35: 3.73396441e-02 + ArtUnc_36: -3.47596177e-02 + ArtUnc_37: -6.98795796e-05 + ArtUnc_38: -1.72996449e-02 + ArtUnc_39: 9.34746765e-05 + ArtUnc_40: -7.32402115e-03 + ArtUnc_41: 2.50775241e-04 + ArtUnc_42: -5.95908956e-04 + ArtUnc_43: 8.89464722e-03 + ArtUnc_44: 1.29772297e-03 + ArtUnc_45: 1.14362387e-02 + ArtUnc_46: -2.30339083e-02 + ArtUnc_47: 2.94495002e-02 + ArtUnc_48: -1.96699146e-02 +- Syst_1: 1.49298186e-01 + Syst_2: 3.39363651e-02 + Syst_3: 3.39363651e-02 + Syst_4: 4.13329046e-02 + Syst_5: 4.13329046e-02 + Syst_6: 1.06513717e-01 + Syst_7: 5.97192745e-02 + Syst_8: 1.79157824e-01 + Syst_9: 8.95789118e-02 + Syst_10: 4.32964740e-01 + ArtUnc_1: -7.33230324e-03 + ArtUnc_2: -2.50854249e-02 + ArtUnc_3: -9.04773543e-02 + ArtUnc_4: -2.13512661e-01 + ArtUnc_5: -7.77329921e-02 + ArtUnc_6: 1.00813221e-04 + ArtUnc_7: -1.02458136e-02 + ArtUnc_8: -1.31541628e-02 + ArtUnc_9: 3.42173473e-03 + ArtUnc_10: -1.38222727e-02 + ArtUnc_11: -5.80098929e-02 + ArtUnc_12: -3.23094080e-03 + ArtUnc_13: 2.84759711e-01 + ArtUnc_14: 3.05015619e-01 + ArtUnc_15: 2.98788892e-01 + ArtUnc_16: -5.94404588e-02 + ArtUnc_17: -2.04405064e-02 + ArtUnc_18: 5.47109464e-02 + ArtUnc_19: 1.54880799e-02 + ArtUnc_20: 8.04527596e-02 + ArtUnc_21: -5.15363395e-02 + ArtUnc_22: 1.16551261e-01 + ArtUnc_23: -9.28927838e-02 + ArtUnc_24: 8.15411225e-02 + ArtUnc_25: -2.41660711e-01 + ArtUnc_26: 6.36114949e-03 + ArtUnc_27: -9.52229828e-04 + ArtUnc_28: 1.07418945e-02 + ArtUnc_29: -1.22094355e-04 + ArtUnc_30: -8.47574245e-04 + ArtUnc_31: 6.70437893e-03 + ArtUnc_32: 3.45216535e-03 + ArtUnc_33: -3.67806561e-04 + ArtUnc_34: 1.49734356e-03 + ArtUnc_35: 3.49013842e-04 + ArtUnc_36: 1.00337804e-03 + ArtUnc_37: 6.83401866e-05 + ArtUnc_38: 1.40268294e-04 + ArtUnc_39: 6.19027081e-04 + ArtUnc_40: 2.27921265e-04 + ArtUnc_41: 4.97205098e-06 + ArtUnc_42: 4.02019917e-05 + ArtUnc_43: -3.04179190e-04 + ArtUnc_44: -1.95874218e-05 + ArtUnc_45: -2.93593368e-05 + ArtUnc_46: 8.05615087e-05 + ArtUnc_47: -1.34455686e-04 + ArtUnc_48: 3.62858576e-05 +- Syst_1: 2.77338600e-01 Syst_2: 0.099 Syst_3: 0.099 - Syst_4: 0.010944861808175 - Syst_5: 0.010944861808175 - Syst_6: 0.0396198 + Syst_4: 1.09448618e-02 + Syst_5: 1.09448618e-02 + Syst_6: 3.96198000e-02 Syst_7: 0.066033 - Syst_8: 0.1452726 - Syst_9: 0.0792396 - Syst_10: 0.3829914 - ArtUnc_1: 0.0010461868426409897 - ArtUnc_2: 0.006429289920314462 - ArtUnc_3: 0.023982694928263878 - ArtUnc_4: 0.056496324264523896 - ArtUnc_5: 0.01824316568440504 - ArtUnc_6: 0.0070454025565102486 - ArtUnc_7: -0.08164759257655105 - ArtUnc_8: -0.22257032950861994 - ArtUnc_9: 0.08010384105130205 - ArtUnc_10: -0.02004270558239991 - ArtUnc_11: 0.032265317019909166 - ArtUnc_12: 0.025685829732606243 - ArtUnc_13: -0.27294268052586634 - ArtUnc_14: -0.36725195188970355 - ArtUnc_15: -0.3010627862544507 - ArtUnc_16: -0.07612696174534613 - ArtUnc_17: -0.061511285120536795 - ArtUnc_18: -0.012079551087151998 - ArtUnc_19: 0.0036518699620559794 - ArtUnc_20: 0.09355460540909215 - ArtUnc_21: -0.04075133342878471 - ArtUnc_22: 0.10348537675389272 - ArtUnc_23: -0.07859273480974292 - ArtUnc_24: 0.07422169015790998 - ArtUnc_25: -0.20253905905602296 - ArtUnc_26: 0.004898142422946826 - ArtUnc_27: -0.0005503419938325524 - ArtUnc_28: 0.027237667107219046 - ArtUnc_29: -0.00037265467042687064 - ArtUnc_30: -0.0012401469179601234 - ArtUnc_31: 0.018639615792369092 - ArtUnc_32: 0.011904336509675926 - ArtUnc_33: -0.0028333561385719837 - ArtUnc_34: 0.001470676549276648 - ArtUnc_35: -0.0010255824045052454 - ArtUnc_36: 0.002006967502329165 - ArtUnc_37: 0.00030574306588365896 - ArtUnc_38: 0.0003233715431667753 - ArtUnc_39: 0.0005478413838613667 - ArtUnc_40: 0.00028813081767071927 - ArtUnc_41: 2.195816155938518e-06 - ArtUnc_42: 0.0001082920634138074 - ArtUnc_43: -0.0007349580981564153 - ArtUnc_44: -2.7767569533510407e-05 - ArtUnc_45: -5.1607788178195354e-05 - ArtUnc_46: 0.00015746837358084664 - ArtUnc_47: -0.00027504150675582644 - ArtUnc_48: 0.00012703127922897772 -- Syst_1: 0.23849988075 - Syst_2: 0.0608408778598 - Syst_3: 0.0608408778598 - Syst_4: 0.0039530975249675 - Syst_5: 0.0039530975249675 - Syst_6: 0.01239282042995 - Syst_7: 0.01704081869527 - Syst_8: 0.052469973765 - Syst_9: 0.02861998569 - Syst_10: 0.138329930835 - ArtUnc_1: -2.3680012779845663e-05 - ArtUnc_2: -5.90316712675011e-05 - ArtUnc_3: -5.0178804211200393e-05 - ArtUnc_4: 0.0001820585296647454 - ArtUnc_5: 0.00011749825105249756 - ArtUnc_6: -0.00038598455557177866 - ArtUnc_7: 0.006243437479603449 - ArtUnc_8: 0.017141834473107895 - ArtUnc_9: -0.006011426041017316 - ArtUnc_10: 0.0017387992430926704 - ArtUnc_11: -0.003916426080908028 - ArtUnc_12: -0.00411961068848537 - ArtUnc_13: 0.04193437859823295 - ArtUnc_14: 0.056602376785730026 - ArtUnc_15: 0.04640605861351987 - ArtUnc_16: 0.04174756723447786 - ArtUnc_17: -0.03565927221312366 - ArtUnc_18: -0.13324192609972713 - ArtUnc_19: -0.023386644989864147 - ArtUnc_20: -0.004267576375216388 - ArtUnc_21: 0.023841089720651118 - ArtUnc_22: -0.024092202764258237 - ArtUnc_23: 0.012737383330935869 - ArtUnc_24: -0.01359003616264972 - ArtUnc_25: 0.05062529288423217 - ArtUnc_26: -0.0018417550852961023 - ArtUnc_27: 0.0015788838083952666 - ArtUnc_28: 0.14767064711052433 - ArtUnc_29: 0.0037762599117193993 - ArtUnc_30: -0.0037980144580663884 - ArtUnc_31: 0.09926205999547774 - ArtUnc_32: 0.06869619475300724 - ArtUnc_33: -0.019806482980351266 - ArtUnc_34: 0.0040244779035752505 - ArtUnc_35: -0.007248424967555998 - ArtUnc_36: 0.008653124845498295 - ArtUnc_37: 0.0015458518222447874 - ArtUnc_38: 0.0011874077263847023 - ArtUnc_39: 0.0016875593899821364 - ArtUnc_40: 0.0008805415636300831 - ArtUnc_41: -6.86431786034526e-05 - ArtUnc_42: 4.923867019598124e-05 - ArtUnc_43: 0.0009673721918572028 - ArtUnc_44: -7.696515121447763e-05 - ArtUnc_45: 7.750964256956148e-05 - ArtUnc_46: -0.0005380048607545888 - ArtUnc_47: 0.0005084596623533178 - ArtUnc_48: -0.0003149058208159962 -- Syst_1: 0.01914953169129 - Syst_2: 0.022021399717095 - Syst_3: 0.022021399717095 - Syst_4: 0.000829615097733 - Syst_5: 0.000829615097733 - Syst_6: 0.003144012940281 - Syst_7: 0.0009574765845645 - Syst_8: 0.009574765845645 - Syst_9: 0.005744859507387 - Syst_10: 0.02776682095237 - ArtUnc_1: -3.8797833039646526e-06 - ArtUnc_2: -2.9263552537764e-05 - ArtUnc_3: -0.0001083365320340748 - ArtUnc_4: -0.00024287329936532008 - ArtUnc_5: -8.480247925152873e-05 - ArtUnc_6: -2.6836934611422598e-05 - ArtUnc_7: 0.00041754866630528694 - ArtUnc_8: 0.0010118636698153907 - ArtUnc_9: -0.00027495260244113774 - ArtUnc_10: 1.7216915193475114e-05 - ArtUnc_11: -0.00025820303267575065 - ArtUnc_12: -0.0004463694283517248 - ArtUnc_13: 0.0030910586403229672 - ArtUnc_14: 0.0039530121523197945 - ArtUnc_15: 0.0029388631355727985 - ArtUnc_16: 0.00044755238292550233 - ArtUnc_17: 0.0015022351583310648 - ArtUnc_18: 0.00248978202335228 - ArtUnc_19: 0.0004454735364526312 - ArtUnc_20: -0.001606110372173576 - ArtUnc_21: 0.0003900323120261752 - ArtUnc_22: -0.002625957427938965 - ArtUnc_23: 0.0008928469553575703 - ArtUnc_24: -0.0016854572422631293 - ArtUnc_25: 0.004170289758390794 - ArtUnc_26: -0.00010022122260348286 - ArtUnc_27: -4.2683508214786075e-05 - ArtUnc_28: -0.05255907481054715 - ArtUnc_29: -0.001749482095080901 - ArtUnc_30: 0.00919390421307383 - ArtUnc_31: 0.05667090870497462 - ArtUnc_32: 0.043011837804033594 - ArtUnc_33: -0.008727681087392353 - ArtUnc_34: 0.009498657164459034 - ArtUnc_35: -0.01719590711689839 - ArtUnc_36: 0.01933571740871641 - ArtUnc_37: 0.00025026973244511206 - ArtUnc_38: 0.008140148643511811 - ArtUnc_39: 0.00024536246049577546 - ArtUnc_40: 0.00450444119032423 - ArtUnc_41: 0.0008333011615403152 - ArtUnc_42: 0.006036680307914855 - ArtUnc_43: -0.05231466437171789 - ArtUnc_44: -0.00042294599220561816 - ArtUnc_45: -0.003617211327248546 - ArtUnc_46: 0.014367291411052899 - ArtUnc_47: -0.021400318769411057 - ArtUnc_48: 0.010382151468577716 -- Syst_1: -0.01606993551149 - Syst_2: 0.002383227997381 - Syst_3: 0.002383227997381 - Syst_4: 0.001506629180539 - Syst_5: 0.001506629180539 - Syst_6: 0.009247363761182 - Syst_7: 0.004246488757399 - Syst_8: 0.01533948389733 - Syst_9: 0.004382709684952 - Syst_10: 0.0211830968106 - ArtUnc_1: -0.0002030599961261598 - ArtUnc_2: 0.00011814294911531512 - ArtUnc_3: -7.403011281768931e-05 - ArtUnc_4: 5.4861037185705485e-05 - ArtUnc_5: -0.00032072742036991285 - ArtUnc_6: -2.7654584118420943e-05 - ArtUnc_7: -9.181943705801236e-05 - ArtUnc_8: -0.00022435963328381432 - ArtUnc_9: 9.067423381327479e-05 - ArtUnc_10: -0.00019954203062707055 - ArtUnc_11: -0.002052992428140145 - ArtUnc_12: 0.001230175601140945 - ArtUnc_13: 0.0012891101201740638 - ArtUnc_14: -0.0020699187736221954 - ArtUnc_15: 0.0010152032839411567 - ArtUnc_16: -0.0035616811157398354 - ArtUnc_17: -0.002291940262219975 - ArtUnc_18: 0.00023804940023963698 - ArtUnc_19: 0.00011771361979470296 - ArtUnc_20: 0.002094236206710447 - ArtUnc_21: -0.0008618378334500227 - ArtUnc_22: 0.0011988525421109553 - ArtUnc_23: -0.0013802318345759153 - ArtUnc_24: 0.0009004421700725247 - ArtUnc_25: -0.002324530170976082 - ArtUnc_26: -0.0605040000710237 - ArtUnc_27: -0.0009761854830764962 - ArtUnc_28: -0.002573589377630098 - ArtUnc_29: 0.12624243843900776 - ArtUnc_30: -0.0032758369539925376 - ArtUnc_31: 0.0024698575294630227 - ArtUnc_32: 0.0014613748143708055 - ArtUnc_33: -0.000602037772420964 - ArtUnc_34: -0.0003731676402517703 - ArtUnc_35: -0.0003596816037129742 - ArtUnc_36: 0.0005387770932332651 - ArtUnc_37: -0.011552030550207426 - ArtUnc_38: 0.00033485355580823226 - ArtUnc_39: -0.09170361338767088 - ArtUnc_40: -0.0016763613651050514 - ArtUnc_41: -0.0002835391433491704 - ArtUnc_42: -0.0002962600926750152 - ArtUnc_43: -0.00022251741469983888 - ArtUnc_44: -0.000130314438180869 - ArtUnc_45: -0.00019184161868015322 - ArtUnc_46: -0.0003387876740744258 - ArtUnc_47: 0.0007876809972437348 - ArtUnc_48: 0.002432172592034565 -- Syst_1: 0.08270731467435 - Syst_2: 0.009735852235425 - Syst_3: 0.009735852235425 - Syst_4: 0.000708343993819 - Syst_5: 0.000708343993819 - Syst_6: 0.01753222436605 - Syst_7: 0.01279419312639 - Syst_8: 0.01567085962251 - Syst_9: 0.00522361987417 - Syst_10: 0.02524749605849 - ArtUnc_1: -1.8005604074686477e-06 - ArtUnc_2: -1.2912358592469615e-05 - ArtUnc_3: -4.9744719986157455e-05 - ArtUnc_4: -0.00012754296460546028 - ArtUnc_5: -4.8423078112276095e-05 - ArtUnc_6: -5.220789755544856e-06 - ArtUnc_7: 7.798562063438905e-05 - ArtUnc_8: 0.0002449327450823899 - ArtUnc_9: -9.690576740323424e-05 - ArtUnc_10: 1.830473245468254e-05 - ArtUnc_11: -9.293500540858278e-05 - ArtUnc_12: -7.31483658807829e-05 - ArtUnc_13: 0.0010615998645056885 - ArtUnc_14: 0.0014532038436184849 - ArtUnc_15: 0.001280776334645064 - ArtUnc_16: 0.0002942120278322584 - ArtUnc_17: 0.00021693687480354765 - ArtUnc_18: 4.480073093276416e-05 - ArtUnc_19: 1.1172609245775148e-05 - ArtUnc_20: -0.0002047204781823836 - ArtUnc_21: 5.714580315757853e-05 - ArtUnc_22: -5.071243457613094e-05 - ArtUnc_23: 3.932940745826525e-05 - ArtUnc_24: -3.738427309803e-05 - ArtUnc_25: 5.520349079750423e-05 - ArtUnc_26: 0.012434240147600403 - ArtUnc_27: 0.06099010210775331 - ArtUnc_28: 0.005750900235006154 - ArtUnc_29: -0.14406392306596158 - ArtUnc_30: 0.004074090584573821 - ArtUnc_31: -7.41651584282581e-05 - ArtUnc_32: 0.0004728510612893119 - ArtUnc_33: -5.36127979245371e-05 - ArtUnc_34: -0.00023649663634927703 - ArtUnc_35: -0.00043400002425934326 - ArtUnc_36: 3.242881305067834e-05 - ArtUnc_37: 0.004933848071509164 - ArtUnc_38: 0.0001991909657870905 - ArtUnc_39: -0.07635538020326472 - ArtUnc_40: -0.0012410662514361645 - ArtUnc_41: -0.001004025303857411 - ArtUnc_42: -7.430659764104439e-06 - ArtUnc_43: -0.0006264333738408405 - ArtUnc_44: -0.00030988319593744287 - ArtUnc_45: -0.0005420008980306607 - ArtUnc_46: -0.000928998957165595 - ArtUnc_47: 0.0022913298173395757 - ArtUnc_48: 0.0070092981186609315 -- Syst_1: -0.01647717984896 - Syst_2: 0.003791110391429 - Syst_3: 0.003791110391429 - Syst_4: 0.0005752785197615 - Syst_5: 0.0005752785197615 - Syst_6: 0.003213856823901 - Syst_7: 0.00339176588126 - Syst_8: 0.006522217023546 - Syst_9: 0.00205964748112 - Syst_10: 0.009954962825412 - ArtUnc_1: -5.358239187479593e-07 - ArtUnc_2: -4.779479807983794e-06 - ArtUnc_3: -3.1888792789186548e-06 - ArtUnc_4: -6.109666227434553e-06 - ArtUnc_5: -8.588421675758706e-06 - ArtUnc_6: -7.104513256282702e-07 - ArtUnc_7: -1.21918881688315e-05 - ArtUnc_8: -9.380726942954984e-06 - ArtUnc_9: 4.435269569633418e-06 - ArtUnc_10: -1.1266520535615036e-05 - ArtUnc_11: -8.102978393228591e-06 - ArtUnc_12: 2.5932993743978014e-05 - ArtUnc_13: -4.404079393245029e-05 - ArtUnc_14: -2.4799787657618122e-05 - ArtUnc_15: -5.868597530410787e-05 - ArtUnc_16: -0.000185827341531395 - ArtUnc_17: 0.00029948578231798985 - ArtUnc_18: 0.0006316524478881124 - ArtUnc_19: -0.0002926489230155778 - ArtUnc_20: -1.8900870645649114e-05 - ArtUnc_21: -0.00046476860121687127 - ArtUnc_22: -2.5025644146255248e-06 - ArtUnc_23: 0.0001281479523070982 - ArtUnc_24: -0.0005195170814664158 - ArtUnc_25: -9.683383804719857e-05 - ArtUnc_26: 0.0012011986368106607 - ArtUnc_27: -0.004959049890079331 - ArtUnc_28: -0.0011511713610422836 - ArtUnc_29: 0.02160147957833633 - ArtUnc_30: 0.0004748121874595406 - ArtUnc_31: -0.0004102272000739514 - ArtUnc_32: 5.11604168931795e-06 - ArtUnc_33: 0.0003771314426423216 - ArtUnc_34: 0.0007574252357480474 - ArtUnc_35: 0.0007311013695452853 - ArtUnc_36: -3.931327561882307e-05 - ArtUnc_37: 0.033134921649762665 - ArtUnc_38: 6.541454370425354e-05 - ArtUnc_39: 0.018017416742371038 - ArtUnc_40: 0.00021737651839101796 - ArtUnc_41: -0.003344327189988647 - ArtUnc_42: -0.0068804884539780155 - ArtUnc_43: -0.0032979101493948635 - ArtUnc_44: -0.0011388372928422315 - ArtUnc_45: -0.0024957890328915033 - ArtUnc_46: -0.004421199263611387 - ArtUnc_47: 0.013032203967948505 - ArtUnc_48: 0.03812877984067703 -- Syst_1: -0.01122466277381 - Syst_2: 0.001908170982905 - Syst_3: 0.001908170982905 - Syst_4: 0.0001281968744968 - Syst_5: 0.0001281968744968 - Syst_6: 0.002067852779348 - Syst_7: 0.00121848530805 - Syst_8: 0.002693919065713 - Syst_9: 0.0008979730219045 - Syst_10: 0.004340202939205 - ArtUnc_1: -9.22437916519593e-09 - ArtUnc_2: -1.754523149784953e-08 - ArtUnc_3: -1.052889766366511e-07 - ArtUnc_4: -2.1367560562981011e-07 - ArtUnc_5: -8.947410014120695e-08 - ArtUnc_6: 1.605965911037133e-08 - ArtUnc_7: -1.0495931655335606e-06 - ArtUnc_8: -2.8013962738318074e-06 - ArtUnc_9: 9.44757307411778e-07 - ArtUnc_10: -4.0394701777436545e-07 - ArtUnc_11: 9.295810302611188e-08 - ArtUnc_12: 1.0318898255728976e-06 - ArtUnc_13: -7.200453637626687e-06 - ArtUnc_14: -1.1014370712151242e-05 - ArtUnc_15: -8.536444051539973e-06 - ArtUnc_16: -1.4514428741563902e-05 - ArtUnc_17: 1.146288838624402e-05 - ArtUnc_18: 4.6428540326635834e-05 - ArtUnc_19: 8.802446333642986e-06 - ArtUnc_20: 2.134875591669185e-06 - ArtUnc_21: -8.976169195312475e-06 - ArtUnc_22: 9.52291877361e-06 - ArtUnc_23: -5.674156375533326e-06 - ArtUnc_24: 6.364222896459824e-06 - ArtUnc_25: -2.055674609946929e-05 - ArtUnc_26: 2.6981423919581433e-05 - ArtUnc_27: -0.0013816422922183211 - ArtUnc_28: -0.00010194506662091805 - ArtUnc_29: 0.0024363742382931507 - ArtUnc_30: -0.00014539136044028976 - ArtUnc_31: -0.0007313712637552705 - ArtUnc_32: -0.0005898780292202944 - ArtUnc_33: 0.0001453531080454846 - ArtUnc_34: -0.00016865147395869003 - ArtUnc_35: 0.0002871302446063381 - ArtUnc_36: -0.00042854676645530333 - ArtUnc_37: -0.004095955730435504 - ArtUnc_38: -8.919850654062311e-05 - ArtUnc_39: 0.0022311720499301555 - ArtUnc_40: -9.34692378376895e-05 - ArtUnc_41: -0.022889975514165703 - ArtUnc_42: 0.03244332364292765 - ArtUnc_43: 0.0008834891205799348 - ArtUnc_44: 0.001320893948183451 - ArtUnc_45: -0.00044713700431186804 - ArtUnc_46: 0.00048479906875284836 - ArtUnc_47: -0.0010999993100560181 - ArtUnc_48: -0.002388019205724394 + Syst_8: 1.45272600e-01 + Syst_9: 7.92396000e-02 + Syst_10: 3.82991400e-01 + ArtUnc_1: 1.04618684e-03 + ArtUnc_2: 6.42928992e-03 + ArtUnc_3: 2.39826949e-02 + ArtUnc_4: 5.64963243e-02 + ArtUnc_5: 1.82431657e-02 + ArtUnc_6: 7.04540256e-03 + ArtUnc_7: -8.16475926e-02 + ArtUnc_8: -2.22570330e-01 + ArtUnc_9: 8.01038411e-02 + ArtUnc_10: -2.00427056e-02 + ArtUnc_11: 3.22653170e-02 + ArtUnc_12: 2.56858297e-02 + ArtUnc_13: -2.72942681e-01 + ArtUnc_14: -3.67251952e-01 + ArtUnc_15: -3.01062786e-01 + ArtUnc_16: -7.61269617e-02 + ArtUnc_17: -6.15112851e-02 + ArtUnc_18: -1.20795511e-02 + ArtUnc_19: 3.65186996e-03 + ArtUnc_20: 9.35546054e-02 + ArtUnc_21: -4.07513334e-02 + ArtUnc_22: 1.03485377e-01 + ArtUnc_23: -7.85927348e-02 + ArtUnc_24: 7.42216902e-02 + ArtUnc_25: -2.02539059e-01 + ArtUnc_26: 4.89814242e-03 + ArtUnc_27: -5.50341994e-04 + ArtUnc_28: 2.72376671e-02 + ArtUnc_29: -3.72654670e-04 + ArtUnc_30: -1.24014692e-03 + ArtUnc_31: 1.86396158e-02 + ArtUnc_32: 1.19043365e-02 + ArtUnc_33: -2.83335614e-03 + ArtUnc_34: 1.47067655e-03 + ArtUnc_35: -1.02558240e-03 + ArtUnc_36: 2.00696750e-03 + ArtUnc_37: 3.05743066e-04 + ArtUnc_38: 3.23371543e-04 + ArtUnc_39: 5.47841384e-04 + ArtUnc_40: 2.88130818e-04 + ArtUnc_41: 2.19581616e-06 + ArtUnc_42: 1.08292063e-04 + ArtUnc_43: -7.34958098e-04 + ArtUnc_44: -2.77675695e-05 + ArtUnc_45: -5.16077882e-05 + ArtUnc_46: 1.57468374e-04 + ArtUnc_47: -2.75041507e-04 + ArtUnc_48: 1.27031279e-04 +- Syst_1: 2.38499881e-01 + Syst_2: 6.08408779e-02 + Syst_3: 6.08408779e-02 + Syst_4: 3.95309752e-03 + Syst_5: 3.95309752e-03 + Syst_6: 1.23928204e-02 + Syst_7: 1.70408187e-02 + Syst_8: 5.24699738e-02 + Syst_9: 2.86199857e-02 + Syst_10: 1.38329931e-01 + ArtUnc_1: -2.36800128e-05 + ArtUnc_2: -5.90316713e-05 + ArtUnc_3: -5.01788042e-05 + ArtUnc_4: 1.82058530e-04 + ArtUnc_5: 1.17498251e-04 + ArtUnc_6: -3.85984556e-04 + ArtUnc_7: 6.24343748e-03 + ArtUnc_8: 1.71418345e-02 + ArtUnc_9: -6.01142604e-03 + ArtUnc_10: 1.73879924e-03 + ArtUnc_11: -3.91642608e-03 + ArtUnc_12: -4.11961069e-03 + ArtUnc_13: 4.19343786e-02 + ArtUnc_14: 5.66023768e-02 + ArtUnc_15: 4.64060586e-02 + ArtUnc_16: 4.17475672e-02 + ArtUnc_17: -3.56592722e-02 + ArtUnc_18: -1.33241926e-01 + ArtUnc_19: -2.33866450e-02 + ArtUnc_20: -4.26757638e-03 + ArtUnc_21: 2.38410897e-02 + ArtUnc_22: -2.40922028e-02 + ArtUnc_23: 1.27373833e-02 + ArtUnc_24: -1.35900362e-02 + ArtUnc_25: 5.06252929e-02 + ArtUnc_26: -1.84175509e-03 + ArtUnc_27: 1.57888381e-03 + ArtUnc_28: 1.47670647e-01 + ArtUnc_29: 3.77625991e-03 + ArtUnc_30: -3.79801446e-03 + ArtUnc_31: 9.92620600e-02 + ArtUnc_32: 6.86961948e-02 + ArtUnc_33: -1.98064830e-02 + ArtUnc_34: 4.02447790e-03 + ArtUnc_35: -7.24842497e-03 + ArtUnc_36: 8.65312485e-03 + ArtUnc_37: 1.54585182e-03 + ArtUnc_38: 1.18740773e-03 + ArtUnc_39: 1.68755939e-03 + ArtUnc_40: 8.80541564e-04 + ArtUnc_41: -6.86431786e-05 + ArtUnc_42: 4.92386702e-05 + ArtUnc_43: 9.67372192e-04 + ArtUnc_44: -7.69651512e-05 + ArtUnc_45: 7.75096426e-05 + ArtUnc_46: -5.38004861e-04 + ArtUnc_47: 5.08459662e-04 + ArtUnc_48: -3.14905821e-04 +- Syst_1: 1.91495317e-02 + Syst_2: 2.20213997e-02 + Syst_3: 2.20213997e-02 + Syst_4: 8.29615098e-04 + Syst_5: 8.29615098e-04 + Syst_6: 3.14401294e-03 + Syst_7: 9.57476585e-04 + Syst_8: 9.57476585e-03 + Syst_9: 5.74485951e-03 + Syst_10: 2.77668210e-02 + ArtUnc_1: -3.87978330e-06 + ArtUnc_2: -2.92635525e-05 + ArtUnc_3: -1.08336532e-04 + ArtUnc_4: -2.42873299e-04 + ArtUnc_5: -8.48024793e-05 + ArtUnc_6: -2.68369346e-05 + ArtUnc_7: 4.17548666e-04 + ArtUnc_8: 1.01186367e-03 + ArtUnc_9: -2.74952602e-04 + ArtUnc_10: 1.72169152e-05 + ArtUnc_11: -2.58203033e-04 + ArtUnc_12: -4.46369428e-04 + ArtUnc_13: 3.09105864e-03 + ArtUnc_14: 3.95301215e-03 + ArtUnc_15: 2.93886314e-03 + ArtUnc_16: 4.47552383e-04 + ArtUnc_17: 1.50223516e-03 + ArtUnc_18: 2.48978202e-03 + ArtUnc_19: 4.45473536e-04 + ArtUnc_20: -1.60611037e-03 + ArtUnc_21: 3.90032312e-04 + ArtUnc_22: -2.62595743e-03 + ArtUnc_23: 8.92846955e-04 + ArtUnc_24: -1.68545724e-03 + ArtUnc_25: 4.17028976e-03 + ArtUnc_26: -1.00221223e-04 + ArtUnc_27: -4.26835082e-05 + ArtUnc_28: -5.25590748e-02 + ArtUnc_29: -1.74948210e-03 + ArtUnc_30: 9.19390421e-03 + ArtUnc_31: 5.66709087e-02 + ArtUnc_32: 4.30118378e-02 + ArtUnc_33: -8.72768109e-03 + ArtUnc_34: 9.49865716e-03 + ArtUnc_35: -1.71959071e-02 + ArtUnc_36: 1.93357174e-02 + ArtUnc_37: 2.50269732e-04 + ArtUnc_38: 8.14014864e-03 + ArtUnc_39: 2.45362460e-04 + ArtUnc_40: 4.50444119e-03 + ArtUnc_41: 8.33301162e-04 + ArtUnc_42: 6.03668031e-03 + ArtUnc_43: -5.23146644e-02 + ArtUnc_44: -4.22945992e-04 + ArtUnc_45: -3.61721133e-03 + ArtUnc_46: 1.43672914e-02 + ArtUnc_47: -2.14003188e-02 + ArtUnc_48: 1.03821515e-02 +- Syst_1: -1.60699355e-02 + Syst_2: 2.38322800e-03 + Syst_3: 2.38322800e-03 + Syst_4: 1.50662918e-03 + Syst_5: 1.50662918e-03 + Syst_6: 9.24736376e-03 + Syst_7: 4.24648876e-03 + Syst_8: 1.53394839e-02 + Syst_9: 4.38270968e-03 + Syst_10: 2.11830968e-02 + ArtUnc_1: -2.03059996e-04 + ArtUnc_2: 1.18142949e-04 + ArtUnc_3: -7.40301128e-05 + ArtUnc_4: 5.48610372e-05 + ArtUnc_5: -3.20727420e-04 + ArtUnc_6: -2.76545841e-05 + ArtUnc_7: -9.18194371e-05 + ArtUnc_8: -2.24359633e-04 + ArtUnc_9: 9.06742338e-05 + ArtUnc_10: -1.99542031e-04 + ArtUnc_11: -2.05299243e-03 + ArtUnc_12: 1.23017560e-03 + ArtUnc_13: 1.28911012e-03 + ArtUnc_14: -2.06991877e-03 + ArtUnc_15: 1.01520328e-03 + ArtUnc_16: -3.56168112e-03 + ArtUnc_17: -2.29194026e-03 + ArtUnc_18: 2.38049400e-04 + ArtUnc_19: 1.17713620e-04 + ArtUnc_20: 2.09423621e-03 + ArtUnc_21: -8.61837833e-04 + ArtUnc_22: 1.19885254e-03 + ArtUnc_23: -1.38023183e-03 + ArtUnc_24: 9.00442170e-04 + ArtUnc_25: -2.32453017e-03 + ArtUnc_26: -6.05040001e-02 + ArtUnc_27: -9.76185483e-04 + ArtUnc_28: -2.57358938e-03 + ArtUnc_29: 1.26242438e-01 + ArtUnc_30: -3.27583695e-03 + ArtUnc_31: 2.46985753e-03 + ArtUnc_32: 1.46137481e-03 + ArtUnc_33: -6.02037772e-04 + ArtUnc_34: -3.73167640e-04 + ArtUnc_35: -3.59681604e-04 + ArtUnc_36: 5.38777093e-04 + ArtUnc_37: -1.15520306e-02 + ArtUnc_38: 3.34853556e-04 + ArtUnc_39: -9.17036134e-02 + ArtUnc_40: -1.67636137e-03 + ArtUnc_41: -2.83539143e-04 + ArtUnc_42: -2.96260093e-04 + ArtUnc_43: -2.22517415e-04 + ArtUnc_44: -1.30314438e-04 + ArtUnc_45: -1.91841619e-04 + ArtUnc_46: -3.38787674e-04 + ArtUnc_47: 7.87680997e-04 + ArtUnc_48: 2.43217259e-03 +- Syst_1: 8.27073147e-02 + Syst_2: 9.73585224e-03 + Syst_3: 9.73585224e-03 + Syst_4: 7.08343994e-04 + Syst_5: 7.08343994e-04 + Syst_6: 1.75322244e-02 + Syst_7: 1.27941931e-02 + Syst_8: 1.56708596e-02 + Syst_9: 5.22361987e-03 + Syst_10: 2.52474961e-02 + ArtUnc_1: -1.80056041e-06 + ArtUnc_2: -1.29123586e-05 + ArtUnc_3: -4.97447200e-05 + ArtUnc_4: -1.27542965e-04 + ArtUnc_5: -4.84230781e-05 + ArtUnc_6: -5.22078976e-06 + ArtUnc_7: 7.79856206e-05 + ArtUnc_8: 2.44932745e-04 + ArtUnc_9: -9.69057674e-05 + ArtUnc_10: 1.83047325e-05 + ArtUnc_11: -9.29350054e-05 + ArtUnc_12: -7.31483659e-05 + ArtUnc_13: 1.06159986e-03 + ArtUnc_14: 1.45320384e-03 + ArtUnc_15: 1.28077633e-03 + ArtUnc_16: 2.94212028e-04 + ArtUnc_17: 2.16936875e-04 + ArtUnc_18: 4.48007309e-05 + ArtUnc_19: 1.11726092e-05 + ArtUnc_20: -2.04720478e-04 + ArtUnc_21: 5.71458032e-05 + ArtUnc_22: -5.07124346e-05 + ArtUnc_23: 3.93294075e-05 + ArtUnc_24: -3.73842731e-05 + ArtUnc_25: 5.52034908e-05 + ArtUnc_26: 1.24342401e-02 + ArtUnc_27: 6.09901021e-02 + ArtUnc_28: 5.75090024e-03 + ArtUnc_29: -1.44063923e-01 + ArtUnc_30: 4.07409058e-03 + ArtUnc_31: -7.41651584e-05 + ArtUnc_32: 4.72851061e-04 + ArtUnc_33: -5.36127979e-05 + ArtUnc_34: -2.36496636e-04 + ArtUnc_35: -4.34000024e-04 + ArtUnc_36: 3.24288131e-05 + ArtUnc_37: 4.93384807e-03 + ArtUnc_38: 1.99190966e-04 + ArtUnc_39: -7.63553802e-02 + ArtUnc_40: -1.24106625e-03 + ArtUnc_41: -1.00402530e-03 + ArtUnc_42: -7.43065976e-06 + ArtUnc_43: -6.26433374e-04 + ArtUnc_44: -3.09883196e-04 + ArtUnc_45: -5.42000898e-04 + ArtUnc_46: -9.28998957e-04 + ArtUnc_47: 2.29132982e-03 + ArtUnc_48: 7.00929812e-03 +- Syst_1: -1.64771798e-02 + Syst_2: 3.79111039e-03 + Syst_3: 3.79111039e-03 + Syst_4: 5.75278520e-04 + Syst_5: 5.75278520e-04 + Syst_6: 3.21385682e-03 + Syst_7: 3.39176588e-03 + Syst_8: 6.52221702e-03 + Syst_9: 2.05964748e-03 + Syst_10: 9.95496283e-03 + ArtUnc_1: -5.35823919e-07 + ArtUnc_2: -4.77947981e-06 + ArtUnc_3: -3.18887928e-06 + ArtUnc_4: -6.10966623e-06 + ArtUnc_5: -8.58842168e-06 + ArtUnc_6: -7.10451326e-07 + ArtUnc_7: -1.21918882e-05 + ArtUnc_8: -9.38072694e-06 + ArtUnc_9: 4.43526957e-06 + ArtUnc_10: -1.12665205e-05 + ArtUnc_11: -8.10297839e-06 + ArtUnc_12: 2.59329937e-05 + ArtUnc_13: -4.40407939e-05 + ArtUnc_14: -2.47997877e-05 + ArtUnc_15: -5.86859753e-05 + ArtUnc_16: -1.85827342e-04 + ArtUnc_17: 2.99485782e-04 + ArtUnc_18: 6.31652448e-04 + ArtUnc_19: -2.92648923e-04 + ArtUnc_20: -1.89008706e-05 + ArtUnc_21: -4.64768601e-04 + ArtUnc_22: -2.50256441e-06 + ArtUnc_23: 1.28147952e-04 + ArtUnc_24: -5.19517081e-04 + ArtUnc_25: -9.68338380e-05 + ArtUnc_26: 1.20119864e-03 + ArtUnc_27: -4.95904989e-03 + ArtUnc_28: -1.15117136e-03 + ArtUnc_29: 2.16014796e-02 + ArtUnc_30: 4.74812187e-04 + ArtUnc_31: -4.10227200e-04 + ArtUnc_32: 5.11604169e-06 + ArtUnc_33: 3.77131443e-04 + ArtUnc_34: 7.57425236e-04 + ArtUnc_35: 7.31101370e-04 + ArtUnc_36: -3.93132756e-05 + ArtUnc_37: 3.31349216e-02 + ArtUnc_38: 6.54145437e-05 + ArtUnc_39: 1.80174167e-02 + ArtUnc_40: 2.17376518e-04 + ArtUnc_41: -3.34432719e-03 + ArtUnc_42: -6.88048845e-03 + ArtUnc_43: -3.29791015e-03 + ArtUnc_44: -1.13883729e-03 + ArtUnc_45: -2.49578903e-03 + ArtUnc_46: -4.42119926e-03 + ArtUnc_47: 1.30322040e-02 + ArtUnc_48: 3.81287798e-02 +- Syst_1: -1.12246628e-02 + Syst_2: 1.90817098e-03 + Syst_3: 1.90817098e-03 + Syst_4: 1.28196874e-04 + Syst_5: 1.28196874e-04 + Syst_6: 2.06785278e-03 + Syst_7: 1.21848531e-03 + Syst_8: 2.69391907e-03 + Syst_9: 8.97973022e-04 + Syst_10: 4.34020294e-03 + ArtUnc_1: -9.22437917e-09 + ArtUnc_2: -1.75452315e-08 + ArtUnc_3: -1.05288977e-07 + ArtUnc_4: -2.13675606e-07 + ArtUnc_5: -8.94741001e-08 + ArtUnc_6: 1.60596591e-08 + ArtUnc_7: -1.04959317e-06 + ArtUnc_8: -2.80139627e-06 + ArtUnc_9: 9.44757307e-07 + ArtUnc_10: -4.03947018e-07 + ArtUnc_11: 9.29581030e-08 + ArtUnc_12: 1.03188983e-06 + ArtUnc_13: -7.20045364e-06 + ArtUnc_14: -1.10143707e-05 + ArtUnc_15: -8.53644405e-06 + ArtUnc_16: -1.45144287e-05 + ArtUnc_17: 1.14628884e-05 + ArtUnc_18: 4.64285403e-05 + ArtUnc_19: 8.80244633e-06 + ArtUnc_20: 2.13487559e-06 + ArtUnc_21: -8.97616920e-06 + ArtUnc_22: 9.52291877e-06 + ArtUnc_23: -5.67415638e-06 + ArtUnc_24: 6.36422290e-06 + ArtUnc_25: -2.05567461e-05 + ArtUnc_26: 2.69814239e-05 + ArtUnc_27: -1.38164229e-03 + ArtUnc_28: -1.01945067e-04 + ArtUnc_29: 2.43637424e-03 + ArtUnc_30: -1.45391360e-04 + ArtUnc_31: -7.31371264e-04 + ArtUnc_32: -5.89878029e-04 + ArtUnc_33: 1.45353108e-04 + ArtUnc_34: -1.68651474e-04 + ArtUnc_35: 2.87130245e-04 + ArtUnc_36: -4.28546766e-04 + ArtUnc_37: -4.09595573e-03 + ArtUnc_38: -8.91985065e-05 + ArtUnc_39: 2.23117205e-03 + ArtUnc_40: -9.34692378e-05 + ArtUnc_41: -2.28899755e-02 + ArtUnc_42: 3.24433236e-02 + ArtUnc_43: 8.83489121e-04 + ArtUnc_44: 1.32089395e-03 + ArtUnc_45: -4.47137004e-04 + ArtUnc_46: 4.84799069e-04 + ArtUnc_47: -1.09999931e-03 + ArtUnc_48: -2.38801921e-03 diff --git a/nnpdf_data/nnpdf_data/commondata/H1_2JET_319GEV_351PB-1_DIF/uncertainties_norm.yaml b/nnpdf_data/nnpdf_data/commondata/H1_2JET_319GEV_351PB-1_DIF/uncertainties_norm.yaml index 3574e19b39..0d4c49feb8 100644 --- a/nnpdf_data/nnpdf_data/commondata/H1_2JET_319GEV_351PB-1_DIF/uncertainties_norm.yaml +++ b/nnpdf_data/nnpdf_data/commondata/H1_2JET_319GEV_351PB-1_DIF/uncertainties_norm.yaml @@ -8,51 +8,51 @@ definitions: treatment: MULT type: CORR bins: -- stat: 0.0019512 - sys: 0.0009756 -- stat: 0.0018154 - sys: 0.0009703000000000001 -- stat: 0.0005478 +- stat: 1.95120000e-03 + sys: 9.75600000e-04 +- stat: 1.81540000e-03 + sys: 9.70300000e-04 +- stat: 5.47800000e-04 sys: 0.000415 -- stat: 0.00016399999999999997 +- stat: 1.64000000e-04 sys: 8.7e-05 - stat: 0.002284 - sys: 0.0010278 + sys: 1.02780000e-03 - stat: 0.002156 - sys: 0.0010192 -- stat: 0.0006881999999999999 - sys: 0.00040919999999999997 -- stat: 0.0002172 + sys: 1.01920000e-03 +- stat: 6.88200000e-04 + sys: 4.09200000e-04 +- stat: 2.17200000e-04 sys: 0.00015 -- stat: 0.0025974 - sys: 0.0009324 -- stat: 0.0025071 - sys: 0.0013973999999999998 -- stat: 0.0008142000000000001 - sys: 0.0004278 -- stat: 0.0002665 - sys: 0.0001235 -- stat: 0.0031201 - sys: 0.0009893 -- stat: 0.0031185 - sys: 0.0014850000000000002 -- stat: 0.0010354000000000001 - sys: 0.0005177000000000001 -- stat: 0.00034679999999999997 - sys: 0.00011219999999999999 -- stat: 0.0036388000000000006 - sys: 0.0014885999999999999 -- stat: 0.0037587 - sys: 0.0011792 -- stat: 0.0014364 - sys: 0.0010374 -- stat: 0.0005459000000000001 - sys: 0.00022789999999999998 -- stat: 0.019533699999999998 - sys: 0.0043503 +- stat: 2.59740000e-03 + sys: 9.32400000e-04 +- stat: 2.50710000e-03 + sys: 1.39740000e-03 +- stat: 8.14200000e-04 + sys: 4.27800000e-04 +- stat: 2.66500000e-04 + sys: 1.23500000e-04 +- stat: 3.12010000e-03 + sys: 9.89300000e-04 +- stat: 3.11850000e-03 + sys: 1.48500000e-03 +- stat: 1.03540000e-03 + sys: 5.17700000e-04 +- stat: 3.46800000e-04 + sys: 1.12200000e-04 +- stat: 3.63880000e-03 + sys: 1.48860000e-03 +- stat: 3.75870000e-03 + sys: 1.17920000e-03 +- stat: 1.43640000e-03 + sys: 1.03740000e-03 +- stat: 5.45900000e-04 + sys: 2.27900000e-04 +- stat: 1.95337000e-02 + sys: 4.35030000e-03 - stat: 0.01976 - sys: 0.0071136 -- stat: 0.007833600000000001 - sys: 0.0028560000000000005 -- stat: 0.0045924 - sys: 0.0016856000000000002 + sys: 7.11360000e-03 +- stat: 7.83360000e-03 + sys: 2.85600000e-03 +- stat: 4.59240000e-03 + sys: 1.68560000e-03 diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES97_NC_7GEV_EN/filter.py b/nnpdf_data/nnpdf_data/commondata/HERMES97_NC_7GEV_EN/filter.py index 953512b38e..8a6651dd41 100644 --- a/nnpdf_data/nnpdf_data/commondata/HERMES97_NC_7GEV_EN/filter.py +++ b/nnpdf_data/nnpdf_data/commondata/HERMES97_NC_7GEV_EN/filter.py @@ -3,6 +3,10 @@ import pandas as pd import yaml +from nnpdf_data.filter_utils.utils import prettify_float + +yaml.add_representer(float, prettify_float) + def read_data(fnames): df = pd.DataFrame() diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_NC_7GEV_ED/filter.py b/nnpdf_data/nnpdf_data/commondata/HERMES_NC_7GEV_ED/filter.py index 6e19b087aa..a1e33fee95 100644 --- a/nnpdf_data/nnpdf_data/commondata/HERMES_NC_7GEV_ED/filter.py +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_NC_7GEV_ED/filter.py @@ -10,6 +10,9 @@ sys.path = [str(HERE.parent / "HERMES_NC_7GEV_EP")] + sys.path from nnpdf_data.filter_utils.correlations import compute_covmat +from nnpdf_data.filter_utils.utils import prettify_float + +yaml.add_representer(float, prettify_float) def read_data(fnames): diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_NC_7GEV_ED/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_NC_7GEV_ED/uncertainties.yaml index 373f45d8c1..66676b9fb6 100644 --- a/nnpdf_data/nnpdf_data/commondata/HERMES_NC_7GEV_ED/uncertainties.yaml +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_NC_7GEV_ED/uncertainties.yaml @@ -76,287 +76,287 @@ definitions: treatment: ADD type: CORR bins: -- sys_0: 0.06828092083275157 - sys_1: 0.009103608602286388 - sys_2: -0.0014239259419161574 - sys_3: 0.00014215287434337932 - sys_4: -4.1365098414849534e-05 - sys_5: 1.8865450133400328e-05 - sys_6: -1.402293107579217e-05 - sys_7: 8.67872113270951e-06 - sys_8: -5.886799147526791e-06 - sys_9: -3.473416598196996e-06 - sys_10: -1.5346014418526906e-06 - sys_11: 2.791333160257414e-07 - sys_12: -1.5854249182477845e-07 - sys_13: 6.043773764659663e-08 - sys_14: -6.097579422315712e-09 +- sys_0: 6.82809208e-02 + sys_1: 9.10360860e-03 + sys_2: -1.42392594e-03 + sys_3: 1.42152874e-04 + sys_4: -4.13650984e-05 + sys_5: 1.88654501e-05 + sys_6: -1.40229311e-05 + sys_7: 8.67872113e-06 + sys_8: -5.88679915e-06 + sys_9: -3.47341660e-06 + sys_10: -1.53460144e-06 + sys_11: 2.79133316e-07 + sys_12: -1.58542492e-07 + sys_13: 6.04377376e-08 + sys_14: -6.09757942e-09 stat: 0 exp: 0.0074 param: 0.0045 evol: 0.0 -- sys_0: -0.01398001300909612 - sys_1: 0.04200026630523007 - sys_2: -0.011657103441357865 - sys_3: 0.0014669544997998806 - sys_4: -0.00034279027980510784 - sys_5: 0.00012109574134683614 - sys_6: -5.90586713016109e-05 - sys_7: 3.009173388906059e-05 - sys_8: -1.4051240312857084e-05 - sys_9: -8.1875819160233e-06 - sys_10: -4.642410944502753e-06 - sys_11: 8.266224668507026e-07 - sys_12: -8.420202673187063e-07 - sys_13: 4.3991803668803725e-07 - sys_14: -5.468102694867589e-08 +- sys_0: -1.39800130e-02 + sys_1: 4.20002663e-02 + sys_2: -1.16571034e-02 + sys_3: 1.46695450e-03 + sys_4: -3.42790280e-04 + sys_5: 1.21095741e-04 + sys_6: -5.90586713e-05 + sys_7: 3.00917339e-05 + sys_8: -1.40512403e-05 + sys_9: -8.18758192e-06 + sys_10: -4.64241094e-06 + sys_11: 8.26622467e-07 + sys_12: -8.42020267e-07 + sys_13: 4.39918037e-07 + sys_14: -5.46810269e-08 stat: 0 exp: 0.0018 param: 0.0012 evol: 0.0 -- sys_0: 0.0021147463703615104 - sys_1: -0.015904582800679756 - sys_2: -0.029558415458226107 - sys_3: 0.007845791075145284 - sys_4: -0.0020123885859290994 - sys_5: 0.0006042155351848748 - sys_6: -0.00022548480200835317 - sys_7: 9.096916820663683e-05 - sys_8: -3.788351953210189e-05 - sys_9: -1.7291305300965797e-05 - sys_10: -9.33108695353261e-06 - sys_11: 8.671363996851869e-07 - sys_12: -2.446507215609447e-06 - sys_13: 8.679821907795075e-07 - sys_14: -2.9106963362061867e-09 +- sys_0: 2.11474637e-03 + sys_1: -1.59045828e-02 + sys_2: -2.95584155e-02 + sys_3: 7.84579108e-03 + sys_4: -2.01238859e-03 + sys_5: 6.04215535e-04 + sys_6: -2.25484802e-04 + sys_7: 9.09691682e-05 + sys_8: -3.78835195e-05 + sys_9: -1.72913053e-05 + sys_10: -9.33108695e-06 + sys_11: 8.67136400e-07 + sys_12: -2.44650722e-06 + sys_13: 8.67982191e-07 + sys_14: -2.91069634e-09 stat: 0 exp: 0.003 param: 0.0004 evol: 0.0 -- sys_0: -0.0002879250070960484 - sys_1: 0.002799335814669777 - sys_2: 0.011183615070882795 - sys_3: 0.019910477304979933 - sys_4: -0.008664932690904417 - sys_5: 0.0030355431944196335 - sys_6: -0.0010749230554942101 - sys_7: 0.00037988641272516775 - sys_8: -0.00014665822855118102 - sys_9: -5.466329253507699e-05 - sys_10: -2.3902691860081747e-05 - sys_11: 3.8671643470666526e-06 - sys_12: -5.135069216750417e-06 - sys_13: 1.4006044780247161e-06 - sys_14: 2.1949518195579815e-08 +- sys_0: -2.87925007e-04 + sys_1: 2.79933581e-03 + sys_2: 1.11836151e-02 + sys_3: 1.99104773e-02 + sys_4: -8.66493269e-03 + sys_5: 3.03554319e-03 + sys_6: -1.07492306e-03 + sys_7: 3.79886413e-04 + sys_8: -1.46658229e-04 + sys_9: -5.46632925e-05 + sys_10: -2.39026919e-05 + sys_11: 3.86716435e-06 + sys_12: -5.13506922e-06 + sys_13: 1.40060448e-06 + sys_14: 2.19495182e-08 stat: 0 exp: 0.0043 param: 0.0014 evol: 0.0 -- sys_0: -1.8813054136133863e-06 - sys_1: -0.0005264830054012044 - sys_2: -0.002150973740886396 - sys_3: -0.011475692460916552 - sys_4: -0.012626821653992388 - sys_5: 0.008792994461731533 - sys_6: -0.0040047785324282175 - sys_7: 0.0015341910309681595 - sys_8: -0.0005174957662074524 - sys_9: -0.00016554818147995032 - sys_10: -6.165935374119473e-05 - sys_11: 1.0427786598368122e-05 - sys_12: -1.056169966163944e-05 - sys_13: 2.5459860377322976e-06 - sys_14: 2.2474369476755828e-08 +- sys_0: -1.88130541e-06 + sys_1: -5.26483005e-04 + sys_2: -2.15097374e-03 + sys_3: -1.14756925e-02 + sys_4: -1.26268217e-02 + sys_5: 8.79299446e-03 + sys_6: -4.00477853e-03 + sys_7: 1.53419103e-03 + sys_8: -5.17495766e-04 + sys_9: -1.65548181e-04 + sys_10: -6.16593537e-05 + sys_11: 1.04277866e-05 + sys_12: -1.05616997e-05 + sys_13: 2.54598604e-06 + sys_14: 2.24743695e-08 stat: 0 exp: 0.0036 param: 0.0012 evol: 0.0019 -- sys_0: -2.9833687461433863e-05 - sys_1: 1.846359714397446e-05 - sys_2: 0.000526605112892333 - sys_3: 0.0034321485306272694 - sys_4: 0.011299010875941035 - sys_5: 0.006938704127240927 - sys_6: -0.008255234208290047 - sys_7: 0.004451015487051922 - sys_8: -0.0016728188147570747 - sys_9: -0.0004864015680994047 - sys_10: -0.00015049173504553162 - sys_11: 9.992696606102775e-06 - sys_12: -2.010904166676312e-05 - sys_13: 7.671581557369534e-06 - sys_14: -1.0130522339859684e-07 +- sys_0: -2.98336875e-05 + sys_1: 1.84635971e-05 + sys_2: 5.26605113e-04 + sys_3: 3.43214853e-03 + sys_4: 1.12990109e-02 + sys_5: 6.93870413e-03 + sys_6: -8.25523421e-03 + sys_7: 4.45101549e-03 + sys_8: -1.67281881e-03 + sys_9: -4.86401568e-04 + sys_10: -1.50491735e-04 + sys_11: 9.99269661e-06 + sys_12: -2.01090417e-05 + sys_13: 7.67158156e-06 + sys_14: -1.01305223e-07 stat: 0 exp: 0.0049 param: 0.0024 evol: 0.0016 -- sys_0: -2.5253003362356614e-05 - sys_1: -3.835466934802643e-05 - sys_2: -4.430165068134424e-05 - sys_3: -0.0009892511640321614 - sys_4: -0.004768721795514781 - sys_5: -0.010391245071329035 - sys_6: -0.0032350094917426284 - sys_7: 0.007112917925878673 - sys_8: -0.004245427501501117 - sys_9: -0.0014787264102117002 - sys_10: -0.0004315171892323976 - sys_11: 3.9191614691743074e-05 - sys_12: -3.926823711528203e-05 - sys_13: 1.3024785829488937e-05 - sys_14: 4.962256494268016e-08 +- sys_0: -2.52530034e-05 + sys_1: -3.83546693e-05 + sys_2: -4.43016507e-05 + sys_3: -9.89251164e-04 + sys_4: -4.76872180e-03 + sys_5: -1.03912451e-02 + sys_6: -3.23500949e-03 + sys_7: 7.11291793e-03 + sys_8: -4.24542750e-03 + sys_9: -1.47872641e-03 + sys_10: -4.31517189e-04 + sys_11: 3.91916147e-05 + sys_12: -3.92682371e-05 + sys_13: 1.30247858e-05 + sys_14: 4.96225649e-08 stat: 0 exp: 0.0033 param: 0.0015 evol: 0.001 -- sys_0: -1.0912074369577213e-05 - sys_1: -1.1873859621670737e-05 - sys_2: 2.7446078835238e-05 - sys_3: 0.00022335373302718097 - sys_4: 0.001704465969041671 - sys_5: 0.005576127942041994 - sys_6: 0.008572477271263054 - sys_7: 0.0014459726735953885 - sys_8: -0.0062550940615167345 - sys_9: -0.0036685570864544675 - sys_10: -0.0012588953892339401 - sys_11: 0.00019264343844834243 - sys_12: -7.640457882346203e-05 - sys_13: 1.446078091437766e-05 - sys_14: 6.868640208618877e-07 +- sys_0: -1.09120744e-05 + sys_1: -1.18738596e-05 + sys_2: 2.74460788e-05 + sys_3: 2.23353733e-04 + sys_4: 1.70446597e-03 + sys_5: 5.57612794e-03 + sys_6: 8.57247727e-03 + sys_7: 1.44597267e-03 + sys_8: -6.25509406e-03 + sys_9: -3.66855709e-03 + sys_10: -1.25889539e-03 + sys_11: 1.92643438e-04 + sys_12: -7.64045788e-05 + sys_13: 1.44607809e-05 + sys_14: 6.86864021e-07 stat: 0 exp: 0.0041 param: 0.0021 evol: 0.0007 -- sys_0: -9.754744921750139e-06 - sys_1: -1.2271225598101567e-05 - sys_2: 6.89458635412223e-06 - sys_3: -8.40950290551544e-05 - sys_4: -0.00045156959665410825 - sys_5: -0.0022689980330915637 - sys_6: -0.005555407216115561 - sys_7: -0.007168396604291201 - sys_8: -0.0009673535438518354 - sys_9: -0.005426154179477903 - sys_10: -0.0030248458698549662 - sys_11: 0.0007250201925803096 - sys_12: -0.0001660774034205282 - sys_13: 7.557090357337512e-06 - sys_14: 8.226938890902983e-07 +- sys_0: -9.75474492e-06 + sys_1: -1.22712256e-05 + sys_2: 6.89458635e-06 + sys_3: -8.40950291e-05 + sys_4: -4.51569597e-04 + sys_5: -2.26899803e-03 + sys_6: -5.55540722e-03 + sys_7: -7.16839660e-03 + sys_8: -9.67353544e-04 + sys_9: -5.42615418e-03 + sys_10: -3.02484587e-03 + sys_11: 7.25020193e-04 + sys_12: -1.66077403e-04 + sys_13: 7.55709036e-06 + sys_14: 8.22693889e-07 stat: 0 exp: 0.0044 param: 0.0022 evol: 0.0006 -- sys_0: 1.2455486366275574e-06 - sys_1: -6.397716285930824e-06 - sys_2: 1.603060550014673e-05 - sys_3: 1.8867163299562235e-05 - sys_4: 0.00014432793045837203 - sys_5: 0.0006987995830173675 - sys_6: 0.0024363936671050438 - sys_7: 0.0050267611671924875 - sys_8: 0.0061020243659789305 - sys_9: -0.0013274639144194385 - sys_10: -0.004777767810347148 - sys_11: 0.0020710195144735704 - sys_12: -0.0004270587168955443 - sys_13: -2.0293987608386842e-05 - sys_14: 3.3684144702694924e-06 +- sys_0: 1.24554864e-06 + sys_1: -6.39771629e-06 + sys_2: 1.60306055e-05 + sys_3: 1.88671633e-05 + sys_4: 1.44327930e-04 + sys_5: 6.98799583e-04 + sys_6: 2.43639367e-03 + sys_7: 5.02676117e-03 + sys_8: 6.10202437e-03 + sys_9: -1.32746391e-03 + sys_10: -4.77776781e-03 + sys_11: 2.07101951e-03 + sys_12: -4.27058717e-04 + sys_13: -2.02939876e-05 + sys_14: 3.36841447e-06 stat: 0 exp: 0.0041 param: 0.0016 evol: 0.0004 -- sys_0: 2.858251894494643e-10 - sys_1: -1.8532944330634384e-07 - sys_2: -2.3387796331930923e-06 - sys_3: -7.954611389571644e-06 - sys_4: -2.246692612573019e-05 - sys_5: -0.0002088889412396162 - sys_6: -0.0007912656973130104 - sys_7: -0.0021457040760241002 - sys_8: -0.004077578428803272 - sys_9: 0.005316510334221416 - sys_10: -0.0020542139218208627 - sys_11: 0.00404543652784608 - sys_12: -0.0012191942806348132 - sys_13: -0.00010907224266725728 - sys_14: 5.789590307229678e-06 +- sys_0: 2.85825189e-10 + sys_1: -1.85329443e-07 + sys_2: -2.33877963e-06 + sys_3: -7.95461139e-06 + sys_4: -2.24669261e-05 + sys_5: -2.08888941e-04 + sys_6: -7.91265697e-04 + sys_7: -2.14570408e-03 + sys_8: -4.07757843e-03 + sys_9: 5.31651033e-03 + sys_10: -2.05421392e-03 + sys_11: 4.04543653e-03 + sys_12: -1.21919428e-03 + sys_13: -1.09072243e-04 + sys_14: 5.78959031e-06 stat: 0 exp: 0.0031 param: 0.001 evol: 0.0002 -- sys_0: 1.1985811025384835e-09 - sys_1: 2.2188808441069977e-08 - sys_2: 3.681615764112479e-07 - sys_3: 4.442391214514813e-06 - sys_4: 1.4350174130532692e-05 - sys_5: 4.688368758416626e-05 - sys_6: 0.00022456061036651038 - sys_7: 0.0006982146223152317 - sys_8: 0.0015715897925371734 - sys_9: -0.003248620656699713 - sys_10: 0.0044656830069560866 - sys_11: 0.0028804298158289984 - sys_12: -0.0028832893921164394 - sys_13: -0.0005410771730018887 - sys_14: 2.9857652464388743e-05 +- sys_0: 1.19858110e-09 + sys_1: 2.21888084e-08 + sys_2: 3.68161576e-07 + sys_3: 4.44239121e-06 + sys_4: 1.43501741e-05 + sys_5: 4.68836876e-05 + sys_6: 2.24560610e-04 + sys_7: 6.98214622e-04 + sys_8: 1.57158979e-03 + sys_9: -3.24862066e-03 + sys_10: 4.46568301e-03 + sys_11: 2.88042982e-03 + sys_12: -2.88328939e-03 + sys_13: -5.41077173e-04 + sys_14: 2.98576525e-05 stat: 0 exp: 0.0034 param: 0.0014 evol: 0.0001 -- sys_0: -7.056589180309114e-08 - sys_1: 1.3311821459507024e-06 - sys_2: 3.868819855130383e-06 - sys_3: -6.757296841911679e-06 - sys_4: 1.2831412099970022e-06 - sys_5: -1.6769174994010088e-05 - sys_6: -4.5243643236311546e-05 - sys_7: -0.0002120672902904655 - sys_8: -0.0004063943196198009 - sys_9: 0.0012156076654737402 - sys_10: -0.002051908507426506 - sys_11: -0.003473697752174788 - sys_12: -0.0031843342112209847 - sys_13: -0.0018006268100746229 - sys_14: 0.00010310676989442592 +- sys_0: -7.05658918e-08 + sys_1: 1.33118215e-06 + sys_2: 3.86881986e-06 + sys_3: -6.75729684e-06 + sys_4: 1.28314121e-06 + sys_5: -1.67691750e-05 + sys_6: -4.52436432e-05 + sys_7: -2.12067290e-04 + sys_8: -4.06394320e-04 + sys_9: 1.21560767e-03 + sys_10: -2.05190851e-03 + sys_11: -3.47369775e-03 + sys_12: -3.18433421e-03 + sys_13: -1.80062681e-03 + sys_14: 1.03106770e-04 stat: 0 exp: 0.0021 param: 0.0014 evol: 0.0001 -- sys_0: -4.386119798359918e-07 - sys_1: 1.8239526665233574e-06 - sys_2: -7.500266165574973e-06 - sys_3: 9.971723875099507e-06 - sys_4: -3.3048644304789017e-06 - sys_5: 6.416648114405376e-06 - sys_6: -1.2872159650078337e-05 - sys_7: 7.137905728589954e-05 - sys_8: 1.1080696286663735e-05 - sys_9: -0.0003420042810967599 - sys_10: 0.0004881047278592749 - sys_11: 0.0013196063803192336 - sys_12: 0.002322916551394578 - sys_13: -0.0029927510281362365 - sys_14: 0.0005960965342306236 +- sys_0: -4.38611980e-07 + sys_1: 1.82395267e-06 + sys_2: -7.50026617e-06 + sys_3: 9.97172388e-06 + sys_4: -3.30486443e-06 + sys_5: 6.41664811e-06 + sys_6: -1.28721597e-05 + sys_7: 7.13790573e-05 + sys_8: 1.10806963e-05 + sys_9: -3.42004281e-04 + sys_10: 4.88104728e-04 + sys_11: 1.31960638e-03 + sys_12: 2.32291655e-03 + sys_13: -2.99275103e-03 + sys_14: 5.96096534e-04 stat: 0 exp: 0.001 param: 0.001 evol: 0.0001 -- sys_0: -2.875370380533556e-08 - sys_1: 5.395473431264551e-07 - sys_2: 1.566063351488948e-06 - sys_3: -2.588220874462271e-06 - sys_4: 1.045457875299531e-06 - sys_5: -2.8292755229989255e-06 - sys_6: 6.198271501203641e-08 - sys_7: -2.0603996685966065e-05 - sys_8: -1.7186057259191416e-06 - sys_9: 7.836123013586027e-05 - sys_10: -9.097556431045526e-05 - sys_11: -0.00027365095946970297 - sys_12: -0.00048230691044470276 - sys_13: 0.000996364453948547 - sys_14: 0.00199371262032608 +- sys_0: -2.87537038e-08 + sys_1: 5.39547343e-07 + sys_2: 1.56606335e-06 + sys_3: -2.58822087e-06 + sys_4: 1.04545788e-06 + sys_5: -2.82927552e-06 + sys_6: 6.19827150e-08 + sys_7: -2.06039967e-05 + sys_8: -1.71860573e-06 + sys_9: 7.83612301e-05 + sys_10: -9.09755643e-05 + sys_11: -2.73650959e-04 + sys_12: -4.82306910e-04 + sys_13: 9.96364454e-04 + sys_14: 1.99371262e-03 stat: 0 exp: 0.0005 param: 0.0009 diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_NC_7GEV_EP/filter.py b/nnpdf_data/nnpdf_data/commondata/HERMES_NC_7GEV_EP/filter.py index bf274b2a99..1cde4cdbc9 100644 --- a/nnpdf_data/nnpdf_data/commondata/HERMES_NC_7GEV_EP/filter.py +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_NC_7GEV_EP/filter.py @@ -6,6 +6,9 @@ import yaml from nnpdf_data.filter_utils.correlations import compute_covmat +from nnpdf_data.filter_utils.utils import prettify_float + +yaml.add_representer(float, prettify_float) def read_data(fnames): diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_NC_7GEV_EP/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_NC_7GEV_EP/uncertainties.yaml index 8047fa3596..076282a491 100644 --- a/nnpdf_data/nnpdf_data/commondata/HERMES_NC_7GEV_EP/uncertainties.yaml +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_NC_7GEV_EP/uncertainties.yaml @@ -76,287 +76,287 @@ definitions: treatment: ADD type: CORR bins: -- sys_0: 0.14816678558058294 - sys_1: -0.015545660403356969 - sys_2: -0.0024185140333496044 - sys_3: 0.00026703886811330806 - sys_4: -0.00010728448830934065 - sys_5: 5.0127103049397835e-05 - sys_6: -3.1095344706897886e-05 - sys_7: 1.9500803958904745e-05 - sys_8: -1.129350817372487e-05 - sys_9: 6.881141517096555e-06 - sys_10: -4.294473966139775e-06 - sys_11: -2.7290046090083964e-06 - sys_12: 1.6674970049482922e-06 - sys_13: 2.2815252996661298e-08 - sys_14: -1.782531039961803e-08 +- sys_0: 1.48166786e-01 + sys_1: -1.55456604e-02 + sys_2: -2.41851403e-03 + sys_3: 2.67038868e-04 + sys_4: -1.07284488e-04 + sys_5: 5.01271030e-05 + sys_6: -3.10953447e-05 + sys_7: 1.95008040e-05 + sys_8: -1.12935082e-05 + sys_9: 6.88114152e-06 + sys_10: -4.29447397e-06 + sys_11: -2.72900461e-06 + sys_12: 1.66749700e-06 + sys_13: 2.28152530e-08 + sys_14: -1.78253104e-08 stat: 0 exp: 0.0375 param: 0.0182 evol: 0.0 -- sys_0: -0.0249594437072609 - sys_1: -0.08896738811186457 - sys_2: -0.021457492917935413 - sys_3: 0.0026130233578020587 - sys_4: -0.0007036581567052546 - sys_5: 0.0002635639954536441 - sys_6: -0.00012765444497913554 - sys_7: 7.160464976643793e-05 - sys_8: -3.820305055610082e-05 - sys_9: 2.140247743434106e-05 - sys_10: -1.293889183878457e-05 - sys_11: -1.7935512164955462e-06 - sys_12: 3.963256790352924e-06 - sys_13: 7.10124067463535e-08 - sys_14: 1.1989899941075933e-06 +- sys_0: -2.49594437e-02 + sys_1: -8.89673881e-02 + sys_2: -2.14574929e-02 + sys_3: 2.61302336e-03 + sys_4: -7.03658157e-04 + sys_5: 2.63563995e-04 + sys_6: -1.27654445e-04 + sys_7: 7.16046498e-05 + sys_8: -3.82030506e-05 + sys_9: 2.14024774e-05 + sys_10: -1.29388918e-05 + sys_11: -1.79355122e-06 + sys_12: 3.96325679e-06 + sys_13: 7.10124067e-08 + sys_14: 1.19898999e-06 stat: 0 exp: 0.0273 param: 0.0109 evol: 0.0 -- sys_0: 0.0027240364483253417 - sys_1: 0.029821714321362058 - sys_2: -0.062155172412649486 - sys_3: 0.014442012241003737 - sys_4: -0.0037648607089067012 - sys_5: 0.0011561707511608052 - sys_6: -0.0004523346197566131 - sys_7: 0.00020018244601443887 - sys_8: -9.520886309702744e-05 - sys_9: 4.8367944324610356e-05 - sys_10: -2.7317506858351696e-05 - sys_11: -4.08108490612589e-06 - sys_12: 6.869463751011883e-06 - sys_13: 1.2064614600763649e-07 - sys_14: 2.0672177314741245e-06 +- sys_0: 2.72403645e-03 + sys_1: 2.98217143e-02 + sys_2: -6.21551724e-02 + sys_3: 1.44420122e-02 + sys_4: -3.76486071e-03 + sys_5: 1.15617075e-03 + sys_6: -4.52334620e-04 + sys_7: 2.00182446e-04 + sys_8: -9.52088631e-05 + sys_9: 4.83679443e-05 + sys_10: -2.73175069e-05 + sys_11: -4.08108491e-06 + sys_12: 6.86946375e-06 + sys_13: 1.20646146e-07 + sys_14: 2.06721773e-06 stat: 0 exp: 0.0215 param: 0.0079 evol: 0.0 -- sys_0: -0.0003871127107533811 - sys_1: -0.00424168691090797 - sys_2: 0.021258177157527054 - sys_3: 0.04112861839189798 - sys_4: -0.01679224733970124 - sys_5: 0.005618176661728982 - sys_6: -0.002025018911054082 - sys_7: 0.0008035581999467754 - sys_8: -0.0003329455940758648 - sys_9: 0.0001365236773189726 - sys_10: -7.085095069106168e-05 - sys_11: -1.6207536063120003e-05 - sys_12: 1.4722343596062664e-05 - sys_13: 2.3414739575592192e-07 - sys_14: 3.330789876986954e-06 +- sys_0: -3.87112711e-04 + sys_1: -4.24168691e-03 + sys_2: 2.12581772e-02 + sys_3: 4.11286184e-02 + sys_4: -1.67922473e-02 + sys_5: 5.61817666e-03 + sys_6: -2.02501891e-03 + sys_7: 8.03558200e-04 + sys_8: -3.32945594e-04 + sys_9: 1.36523677e-04 + sys_10: -7.08509507e-05 + sys_11: -1.62075361e-05 + sys_12: 1.47223436e-05 + sys_13: 2.34147396e-07 + sys_14: 3.33078988e-06 stat: 0 exp: 0.022 param: 0.0078 evol: 0.0 -- sys_0: -0.00010951179080332456 - sys_1: 0.0008708274079684803 - sys_2: -0.003335078199830053 - sys_3: -0.022606943463148423 - sys_4: -0.026895645248924033 - sys_5: 0.016635529730532197 - sys_6: -0.007184878694162727 - sys_7: 0.002817457197059097 - sys_8: -0.001095540151362515 - sys_9: 0.00040267878741440165 - sys_10: -0.00017568788167652983 - sys_11: -4.050253062432646e-05 - sys_12: 3.1562778763472946e-05 - sys_13: 4.794435428109581e-07 - sys_14: 6.017893936548867e-06 +- sys_0: -1.09511791e-04 + sys_1: 8.70827408e-04 + sys_2: -3.33507820e-03 + sys_3: -2.26069435e-02 + sys_4: -2.68956452e-02 + sys_5: 1.66355297e-02 + sys_6: -7.18487869e-03 + sys_7: 2.81745720e-03 + sys_8: -1.09554015e-03 + sys_9: 4.02678787e-04 + sys_10: -1.75687882e-04 + sys_11: -4.05025306e-05 + sys_12: 3.15627788e-05 + sys_13: 4.79443543e-07 + sys_14: 6.01789394e-06 stat: 0 exp: 0.0165 param: 0.0061 evol: 0.0031 -- sys_0: -5.45908709527085e-05 - sys_1: 3.6579774910812204e-05 - sys_2: 0.0008066064420557375 - sys_3: 0.0057370432472529445 - sys_4: 0.021977115068417822 - sys_5: 0.016211167930800633 - sys_6: -0.01588908316184668 - sys_7: 0.008068190108375638 - sys_8: -0.003252080535013516 - sys_9: 0.0010993766764232095 - sys_10: -0.00041761195329358206 - sys_11: -6.0752248770010726e-05 - sys_12: 6.402845097447566e-05 - sys_13: 1.0830506069250163e-06 - sys_14: 1.8615743809551773e-05 +- sys_0: -5.45908710e-05 + sys_1: 3.65797749e-05 + sys_2: 8.06606442e-04 + sys_3: 5.73704325e-03 + sys_4: 2.19771151e-02 + sys_5: 1.62111679e-02 + sys_6: -1.58890832e-02 + sys_7: 8.06819011e-03 + sys_8: -3.25208054e-03 + sys_9: 1.09937668e-03 + sys_10: -4.17611953e-04 + sys_11: -6.07522488e-05 + sys_12: 6.40284510e-05 + sys_13: 1.08305061e-06 + sys_14: 1.86157438e-05 stat: 0 exp: 0.0205 param: 0.0098 evol: 0.0036 -- sys_0: -4.9014503070265663e-05 - sys_1: 9.047994801005751e-05 - sys_2: -1.7812131034845723e-06 - sys_3: -0.0015275318446430128 - sys_4: -0.00786169927131715 - sys_5: -0.020710650409469282 - sys_6: -0.008588718645270796 - sys_7: 0.0139102979330262 - sys_8: -0.008037063826551708 - sys_9: 0.0030256260386312345 - sys_10: -0.0010366338331655018 - sys_11: -0.0001657621567163712 - sys_12: 0.00011975854399197262 - sys_13: 2.3172288038047787e-06 - sys_14: 3.130058373790941e-05 +- sys_0: -4.90145031e-05 + sys_1: 9.04799480e-05 + sys_2: -1.78121310e-06 + sys_3: -1.52753184e-03 + sys_4: -7.86169927e-03 + sys_5: -2.07106504e-02 + sys_6: -8.58871865e-03 + sys_7: 1.39102979e-02 + sys_8: -8.03706383e-03 + sys_9: 3.02562604e-03 + sys_10: -1.03663383e-03 + sys_11: -1.65762157e-04 + sys_12: 1.19758544e-04 + sys_13: 2.31722880e-06 + sys_14: 3.13005837e-05 stat: 0 exp: 0.017 param: 0.0085 evol: 0.0027 -- sys_0: -1.978055358956634e-05 - sys_1: 4.32100885354117e-05 - sys_2: 7.404571723096096e-05 - sys_3: 0.00027314318002917163 - sys_4: 0.0025779120300043184 - sys_5: 0.009624357551548772 - sys_6: 0.01770748095258555 - sys_7: 0.004226928439368404 - sys_8: -0.01227985701401847 - sys_9: 0.0071184677817552776 - sys_10: -0.0027357293154672254 - sys_11: -0.0005499395953894364 - sys_12: 0.00023810171712047016 - sys_13: 4.588528150647297e-06 - sys_14: 3.3517871324693337e-05 +- sys_0: -1.97805536e-05 + sys_1: 4.32100885e-05 + sys_2: 7.40457172e-05 + sys_3: 2.73143180e-04 + sys_4: 2.57791203e-03 + sys_5: 9.62435755e-03 + sys_6: 1.77074810e-02 + sys_7: 4.22692844e-03 + sys_8: -1.22798570e-02 + sys_9: 7.11846778e-03 + sys_10: -2.73572932e-03 + sys_11: -5.49939595e-04 + sys_12: 2.38101717e-04 + sys_13: 4.58852815e-06 + sys_14: 3.35178713e-05 stat: 0 exp: 0.0174 param: 0.0091 evol: 0.0023 -- sys_0: -2.0008333306169525e-05 - sys_1: 1.6837393957109497e-05 - sys_2: 4.437046657570756e-05 - sys_3: -9.79551554704103e-05 - sys_4: -0.0006033790305353777 - sys_5: -0.003600644270400427 - sys_6: -0.010026459122634392 - sys_7: -0.014950511863847106 - sys_8: -0.00244370934171283 - sys_9: 0.010614491887085378 - sys_10: -0.006172910862643326 - sys_11: -0.0017113137611131956 - sys_12: 0.0004781226178175735 - sys_13: 8.155159843079606e-06 - sys_14: 1.0716969482151719e-05 +- sys_0: -2.00083333e-05 + sys_1: 1.68373940e-05 + sys_2: 4.43704666e-05 + sys_3: -9.79551555e-05 + sys_4: -6.03379031e-04 + sys_5: -3.60064427e-03 + sys_6: -1.00264591e-02 + sys_7: -1.49505119e-02 + sys_8: -2.44370934e-03 + sys_9: 1.06144919e-02 + sys_10: -6.17291086e-03 + sys_11: -1.71131376e-03 + sys_12: 4.78122618e-04 + sys_13: 8.15515984e-06 + sys_14: 1.07169695e-05 stat: 0 exp: 0.0166 param: 0.0078 evol: 0.0017 -- sys_0: -1.7428379580142918e-05 - sys_1: 2.0049704588163863e-05 - sys_2: 2.141984097473323e-05 - sys_3: -1.4807753690014335e-05 - sys_4: 0.00021719920357395956 - sys_5: 0.0010141591397612275 - sys_6: 0.004128756007240026 - sys_7: 0.009602412348397479 - sys_8: 0.012753919902300386 - sys_9: 0.0026301648488385294 - sys_10: -0.009388901424894826 - sys_11: -0.00433950887056047 - sys_12: 0.0010916452192683535 - sys_13: 1.4865043774969478e-05 - sys_14: -7.081939212076414e-05 +- sys_0: -1.74283796e-05 + sys_1: 2.00497046e-05 + sys_2: 2.14198410e-05 + sys_3: -1.48077537e-05 + sys_4: 2.17199204e-04 + sys_5: 1.01415914e-03 + sys_6: 4.12875601e-03 + sys_7: 9.60241235e-03 + sys_8: 1.27539199e-02 + sys_9: 2.63016485e-03 + sys_10: -9.38890142e-03 + sys_11: -4.33950887e-03 + sys_12: 1.09164522e-03 + sys_13: 1.48650438e-05 + sys_14: -7.08193921e-05 stat: 0 exp: 0.0129 param: 0.0049 evol: 0.0008 -- sys_0: -1.6692183152576095e-05 - sys_1: 4.508859489406851e-06 - sys_2: -2.2819005228009845e-06 - sys_3: -6.742548480717765e-06 - sys_4: -2.0896790635698663e-05 - sys_5: -0.0003348871961640396 - sys_6: -0.00124776846195541 - sys_7: -0.0038410044781410015 - sys_8: -0.007923634099749213 - sys_9: -0.010990191111045627 - sys_10: -0.003848701515325362 - sys_11: -0.008152189498249543 - sys_12: 0.0027632018651017293 - sys_13: 2.3750479260330404e-05 - sys_14: -0.0003193730113753285 +- sys_0: -1.66921832e-05 + sys_1: 4.50885949e-06 + sys_2: -2.28190052e-06 + sys_3: -6.74254848e-06 + sys_4: -2.08967906e-05 + sys_5: -3.34887196e-04 + sys_6: -1.24776846e-03 + sys_7: -3.84100448e-03 + sys_8: -7.92363410e-03 + sys_9: -1.09901911e-02 + sys_10: -3.84870152e-03 + sys_11: -8.15218950e-03 + sys_12: 2.76320187e-03 + sys_13: 2.37504793e-05 + sys_14: -3.19373011e-04 stat: 0 exp: 0.0112 param: 0.0037 evol: 0.0003 -- sys_0: -1.415827453330599e-05 - sys_1: 3.6289807194805874e-06 - sys_2: 1.5001258725125914e-06 - sys_3: 7.978017858979697e-06 - sys_4: 2.907805450669734e-05 - sys_5: 8.329040361273596e-05 - sys_6: 0.0003536732088183229 - sys_7: 0.0012091721205762405 - sys_8: 0.002973184816426108 - sys_9: 0.006506336772024732 - sys_10: 0.009279869514809266 - sys_11: -0.005500804457210893 - sys_12: 0.006047014515964768 - sys_13: 7.437671836125878e-05 - sys_14: -0.0012828738089551881 +- sys_0: -1.41582745e-05 + sys_1: 3.62898072e-06 + sys_2: 1.50012587e-06 + sys_3: 7.97801786e-06 + sys_4: 2.90780545e-05 + sys_5: 8.32904036e-05 + sys_6: 3.53673209e-04 + sys_7: 1.20917212e-03 + sys_8: 2.97318482e-03 + sys_9: 6.50633677e-03 + sys_10: 9.27986951e-03 + sys_11: -5.50080446e-03 + sys_12: 6.04701452e-03 + sys_13: 7.43767184e-05 + sys_14: -1.28287381e-03 stat: 0 exp: 0.009 param: 0.0031 evol: 0.0002 -- sys_0: 1.180360815742284e-06 - sys_1: 8.445803977913952e-06 - sys_2: 1.3473552423690721e-05 - sys_3: -1.5801439913538438e-05 - sys_4: -4.6019540426545524e-06 - sys_5: -4.6899473625538514e-05 - sys_6: -7.163649558668741e-05 - sys_7: -0.00038833890955768504 - sys_8: -0.0007368878515197976 - sys_9: -0.002397966509295846 - sys_10: -0.0041693682804238704 - sys_11: 0.0073490447794752 - sys_12: 0.006396799788554807 - sys_13: 0.00022511472643368466 - sys_14: -0.003968157523255746 +- sys_0: 1.18036082e-06 + sys_1: 8.44580398e-06 + sys_2: 1.34735524e-05 + sys_3: -1.58014399e-05 + sys_4: -4.60195404e-06 + sys_5: -4.68994736e-05 + sys_6: -7.16364956e-05 + sys_7: -3.88338910e-04 + sys_8: -7.36887852e-04 + sys_9: -2.39796651e-03 + sys_10: -4.16936828e-03 + sys_11: 7.34904478e-03 + sys_12: 6.39679979e-03 + sys_13: 2.25114726e-04 + sys_14: -3.96815752e-03 stat: 0 exp: 0.0059 param: 0.0025 evol: 0.0002 -- sys_0: -1.7438491640166581e-06 - sys_1: -1.2729698082746793e-05 - sys_2: -2.015238982176739e-05 - sys_3: 2.2302996683875373e-05 - sys_4: -1.5303946408023103e-06 - sys_5: 2.494317777652084e-05 - sys_6: -2.7527205672465376e-05 - sys_7: 0.00016055236365416242 - sys_8: -2.1987304600789417e-07 - sys_9: 0.0007170729896800916 - sys_10: 0.0009378932951645715 - sys_11: -0.0028044601859866106 - sys_12: -0.004985048196246033 - sys_13: 0.0012218162548784024 - sys_14: -0.0064660186428895546 +- sys_0: -1.74384916e-06 + sys_1: -1.27296981e-05 + sys_2: -2.01523898e-05 + sys_3: 2.23029967e-05 + sys_4: -1.53039464e-06 + sys_5: 2.49431778e-05 + sys_6: -2.75272057e-05 + sys_7: 1.60552364e-04 + sys_8: -2.19873046e-07 + sys_9: 7.17072990e-04 + sys_10: 9.37893295e-04 + sys_11: -2.80446019e-03 + sys_12: -4.98504820e-03 + sys_13: 1.22181625e-03 + sys_14: -6.46601864e-03 stat: 0 exp: 0.0025 param: 0.0015 evol: 0.0001 -- sys_0: 4.959770031996626e-07 - sys_1: 3.6058217617573532e-06 - sys_2: 5.695997656828331e-06 - sys_3: -6.239536891618332e-06 - sys_4: 6.408188538050941e-07 - sys_5: -6.079856237876523e-06 - sys_6: 7.490514926896727e-06 - sys_7: -4.275202234997435e-05 - sys_8: 9.588279523258176e-06 - sys_9: -0.00016317452688880007 - sys_10: -0.00013502355422935264 - sys_11: 0.0005521121271689823 - sys_12: 0.0009246560548261771 - sys_13: 0.00444903697826734 - sys_14: 0.0019998245625820346 +- sys_0: 4.95977003e-07 + sys_1: 3.60582176e-06 + sys_2: 5.69599766e-06 + sys_3: -6.23953689e-06 + sys_4: 6.40818854e-07 + sys_5: -6.07985624e-06 + sys_6: 7.49051493e-06 + sys_7: -4.27520223e-05 + sys_8: 9.58827952e-06 + sys_9: -1.63174527e-04 + sys_10: -1.35023554e-04 + sys_11: 5.52112127e-04 + sys_12: 9.24656055e-04 + sys_13: 4.44903698e-03 + sys_14: 1.99982456e-03 stat: 0 exp: 0.0011 param: 0.0008 diff --git a/nnpdf_data/nnpdf_data/commondata/JLABE06_NC_3GEV_EN/filter.py b/nnpdf_data/nnpdf_data/commondata/JLABE06_NC_3GEV_EN/filter.py index 7d01af8e76..92c1974532 100644 --- a/nnpdf_data/nnpdf_data/commondata/JLABE06_NC_3GEV_EN/filter.py +++ b/nnpdf_data/nnpdf_data/commondata/JLABE06_NC_3GEV_EN/filter.py @@ -4,6 +4,10 @@ import pandas as pd import yaml +from nnpdf_data.filter_utils.utils import prettify_float + +yaml.add_representer(float, prettify_float) + def read_data(fnames): df = pd.DataFrame() diff --git a/nnpdf_data/nnpdf_data/commondata/JLABE97_NC_NOTFIXED_EN/filter.py b/nnpdf_data/nnpdf_data/commondata/JLABE97_NC_NOTFIXED_EN/filter.py index 26a731d436..710d9d7401 100644 --- a/nnpdf_data/nnpdf_data/commondata/JLABE97_NC_NOTFIXED_EN/filter.py +++ b/nnpdf_data/nnpdf_data/commondata/JLABE97_NC_NOTFIXED_EN/filter.py @@ -4,6 +4,10 @@ import pandas as pd import yaml +from nnpdf_data.filter_utils.utils import prettify_float + +yaml.add_representer(float, prettify_float) + def read_data(fnames): df = pd.DataFrame() diff --git a/nnpdf_data/nnpdf_data/commondata/JLABE99_NC_3GEV_EN/filter.py b/nnpdf_data/nnpdf_data/commondata/JLABE99_NC_3GEV_EN/filter.py index 4955d5f2d1..4f7a7ccb1a 100644 --- a/nnpdf_data/nnpdf_data/commondata/JLABE99_NC_3GEV_EN/filter.py +++ b/nnpdf_data/nnpdf_data/commondata/JLABE99_NC_3GEV_EN/filter.py @@ -4,6 +4,10 @@ import pandas as pd import yaml +from nnpdf_data.filter_utils.utils import prettify_float + +yaml.add_representer(float, prettify_float) + def read_data(fnames): df = pd.DataFrame() diff --git a/nnpdf_data/nnpdf_data/commondata/JLABEG1B_NC_NOTFIXED_ED/filter.py b/nnpdf_data/nnpdf_data/commondata/JLABEG1B_NC_NOTFIXED_ED/filter.py index 4933ad1f19..35284fbe61 100644 --- a/nnpdf_data/nnpdf_data/commondata/JLABEG1B_NC_NOTFIXED_ED/filter.py +++ b/nnpdf_data/nnpdf_data/commondata/JLABEG1B_NC_NOTFIXED_ED/filter.py @@ -4,6 +4,10 @@ import pandas as pd import yaml +from nnpdf_data.filter_utils.utils import prettify_float + +yaml.add_representer(float, prettify_float) + def read_data(fnames): df = pd.DataFrame() diff --git a/nnpdf_data/nnpdf_data/commondata/JLABEG1B_NC_NOTFIXED_EP/filter.py b/nnpdf_data/nnpdf_data/commondata/JLABEG1B_NC_NOTFIXED_EP/filter.py index 4933ad1f19..35284fbe61 100644 --- a/nnpdf_data/nnpdf_data/commondata/JLABEG1B_NC_NOTFIXED_EP/filter.py +++ b/nnpdf_data/nnpdf_data/commondata/JLABEG1B_NC_NOTFIXED_EP/filter.py @@ -4,6 +4,10 @@ import pandas as pd import yaml +from nnpdf_data.filter_utils.utils import prettify_float + +yaml.add_representer(float, prettify_float) + def read_data(fnames): df = pd.DataFrame() diff --git a/nnpdf_data/nnpdf_data/commondata/JLABEG1DVCS_NC_3GEV_EP/filter.py b/nnpdf_data/nnpdf_data/commondata/JLABEG1DVCS_NC_3GEV_EP/filter.py index 047c85c050..1a9f20cb62 100644 --- a/nnpdf_data/nnpdf_data/commondata/JLABEG1DVCS_NC_3GEV_EP/filter.py +++ b/nnpdf_data/nnpdf_data/commondata/JLABEG1DVCS_NC_3GEV_EP/filter.py @@ -3,6 +3,10 @@ import pandas as pd import yaml +from nnpdf_data.filter_utils.utils import prettify_float + +yaml.add_representer(float, prettify_float) + def read_data(fnames): df = pd.DataFrame() diff --git a/nnpdf_data/nnpdf_data/commondata/JLABEG1DVCS_NC_5GEV_ED/filter.py b/nnpdf_data/nnpdf_data/commondata/JLABEG1DVCS_NC_5GEV_ED/filter.py index 047c85c050..1a9f20cb62 100644 --- a/nnpdf_data/nnpdf_data/commondata/JLABEG1DVCS_NC_5GEV_ED/filter.py +++ b/nnpdf_data/nnpdf_data/commondata/JLABEG1DVCS_NC_5GEV_ED/filter.py @@ -3,6 +3,10 @@ import pandas as pd import yaml +from nnpdf_data.filter_utils.utils import prettify_float + +yaml.add_representer(float, prettify_float) + def read_data(fnames): df = pd.DataFrame() diff --git a/nnpdf_data/nnpdf_data/commondata/LHCB_DY_7TEV_MUON/filter.py b/nnpdf_data/nnpdf_data/commondata/LHCB_DY_7TEV_MUON/filter.py index 00f70cfbd5..20529c30e7 100644 --- a/nnpdf_data/nnpdf_data/commondata/LHCB_DY_7TEV_MUON/filter.py +++ b/nnpdf_data/nnpdf_data/commondata/LHCB_DY_7TEV_MUON/filter.py @@ -4,7 +4,9 @@ import pandas as pd import yaml -from nnpdf_data.filter_utils.utils import covmat_to_artunc +from nnpdf_data.filter_utils.utils import covmat_to_artunc, prettify_float + +yaml.add_representer(float, prettify_float) MZ_VALUE = 91.1876 # GeV MW_VALUE = 80.398 # GeV diff --git a/nnpdf_data/nnpdf_data/commondata/LHCB_DY_7TEV_MUON/kinematics.yaml b/nnpdf_data/nnpdf_data/commondata/LHCB_DY_7TEV_MUON/kinematics.yaml index 5a3342efc8..bbf8239698 100644 --- a/nnpdf_data/nnpdf_data/commondata/LHCB_DY_7TEV_MUON/kinematics.yaml +++ b/nnpdf_data/nnpdf_data/commondata/LHCB_DY_7TEV_MUON/kinematics.yaml @@ -5,7 +5,7 @@ bins: max: 2.125 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -17,7 +17,7 @@ bins: max: 2.25 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -29,7 +29,7 @@ bins: max: 2.375 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -41,7 +41,7 @@ bins: max: 2.5 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -53,7 +53,7 @@ bins: max: 2.625 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -65,7 +65,7 @@ bins: max: 2.75 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -77,7 +77,7 @@ bins: max: 2.875 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -89,7 +89,7 @@ bins: max: 3.0 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -101,7 +101,7 @@ bins: max: 3.125 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -113,7 +113,7 @@ bins: max: 3.25 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -125,7 +125,7 @@ bins: max: 3.375 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -137,7 +137,7 @@ bins: max: 3.5 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -149,7 +149,7 @@ bins: max: 3.625 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -161,7 +161,7 @@ bins: max: 3.75 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -173,7 +173,7 @@ bins: max: 3.875 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -185,7 +185,7 @@ bins: max: 4.0 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -197,7 +197,7 @@ bins: max: 4.25 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -209,7 +209,7 @@ bins: max: 2.25 M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null @@ -221,7 +221,7 @@ bins: max: 2.5 M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null @@ -233,7 +233,7 @@ bins: max: 2.75 M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null @@ -245,7 +245,7 @@ bins: max: 3.0 M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null @@ -257,7 +257,7 @@ bins: max: 3.25 M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null @@ -269,7 +269,7 @@ bins: max: 3.5 M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null @@ -281,7 +281,7 @@ bins: max: 4.0 M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null @@ -293,7 +293,7 @@ bins: max: 4.5 M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null @@ -305,7 +305,7 @@ bins: max: 2.25 M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null @@ -317,7 +317,7 @@ bins: max: 2.5 M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null @@ -329,7 +329,7 @@ bins: max: 2.75 M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null @@ -341,7 +341,7 @@ bins: max: 3.0 M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null @@ -353,7 +353,7 @@ bins: max: 3.25 M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null @@ -365,7 +365,7 @@ bins: max: 3.5 M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null @@ -377,7 +377,7 @@ bins: max: 4.0 M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null @@ -389,7 +389,7 @@ bins: max: 4.5 M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null diff --git a/nnpdf_data/nnpdf_data/commondata/LHCB_DY_7TEV_MUON/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/LHCB_DY_7TEV_MUON/uncertainties.yaml index 73c3f45cf6..93073fe315 100644 --- a/nnpdf_data/nnpdf_data/commondata/LHCB_DY_7TEV_MUON/uncertainties.yaml +++ b/nnpdf_data/nnpdf_data/commondata/LHCB_DY_7TEV_MUON/uncertainties.yaml @@ -144,1191 +144,1191 @@ definitions: treatment: MULT type: LHCBLUMI7TEV bins: -- sys_corr_1: -5.144425552740034 - sys_corr_2: 6.572983562410863 - sys_corr_3: 1.901231466027203 - sys_corr_4: -0.45189216664871834 - sys_corr_5: 0.055942288021601796 - sys_corr_6: -0.36043044211198694 - sys_corr_7: 0.2843587009221314 - sys_corr_8: -0.21589699461491837 - sys_corr_9: 0.3940396089453557 - sys_corr_10: -0.9963074820242709 - sys_corr_11: -0.27291847084313714 - sys_corr_12: 0.17250031216802095 - sys_corr_13: 0.2412067740456695 - sys_corr_14: -0.16560168888289095 - sys_corr_15: 0.11049364107469214 - sys_corr_16: -0.07783131982592827 - sys_corr_17: -5.551997533965656 - sys_corr_18: -0.11169848098738341 - sys_corr_19: 0.0039045714346296456 - sys_corr_20: 0.016588103163121905 - sys_corr_21: 0.0028952580070134037 - sys_corr_22: 0.06694374851714423 - sys_corr_23: 30.002326016514075 - sys_corr_24: -1.8654453464376475 - sys_corr_25: 0.3731119418282494 - sys_corr_26: -0.5424011750465533 - sys_corr_27: -0.47326824146637403 - sys_corr_28: -0.22682871386901252 - sys_corr_29: 3.378319602378212 - sys_corr_30: -0.1527578158969609 - sys_corr_31: 0.515144394929459 - sys_corr_32: 1.4115605908788966 - sys_corr_33: 0.1757247150533275 +- sys_corr_1: -5.14442555e+00 + sys_corr_2: 6.57298356e+00 + sys_corr_3: 1.90123147e+00 + sys_corr_4: -4.51892167e-01 + sys_corr_5: 5.59422880e-02 + sys_corr_6: -3.60430442e-01 + sys_corr_7: 2.84358701e-01 + sys_corr_8: -2.15896995e-01 + sys_corr_9: 3.94039609e-01 + sys_corr_10: -9.96307482e-01 + sys_corr_11: -2.72918471e-01 + sys_corr_12: 1.72500312e-01 + sys_corr_13: 2.41206774e-01 + sys_corr_14: -1.65601689e-01 + sys_corr_15: 1.10493641e-01 + sys_corr_16: -7.78313198e-02 + sys_corr_17: -5.55199753e+00 + sys_corr_18: -1.11698481e-01 + sys_corr_19: 3.90457143e-03 + sys_corr_20: 1.65881032e-02 + sys_corr_21: 2.89525801e-03 + sys_corr_22: 6.69437485e-02 + sys_corr_23: 3.00023260e+01 + sys_corr_24: -1.86544535e+00 + sys_corr_25: 3.73111942e-01 + sys_corr_26: -5.42401175e-01 + sys_corr_27: -4.73268241e-01 + sys_corr_28: -2.26828714e-01 + sys_corr_29: 3.37831960e+00 + sys_corr_30: -1.52757816e-01 + sys_corr_31: 5.15144395e-01 + sys_corr_32: 1.41156059e+00 + sys_corr_33: 1.75724715e-01 stat: 39.0 sys_beam: 12.0 sys_luminosity: 17.0 -- sys_corr_1: -7.297911572460107 - sys_corr_2: 13.000869127021309 - sys_corr_3: -1.0422124403234008 - sys_corr_4: -1.7354447858638322 - sys_corr_5: 0.4746267757317964 - sys_corr_6: 0.009573237207884 - sys_corr_7: -0.12218007038465588 - sys_corr_8: 0.025430645713995417 - sys_corr_9: 0.5399448945842477 - sys_corr_10: -2.1368483434801204 - sys_corr_11: -0.0008943324781260716 - sys_corr_12: 0.5360948474571062 - sys_corr_13: -0.44439728293227915 - sys_corr_14: 0.3095894348287661 - sys_corr_15: -0.1081782410243901 - sys_corr_16: 0.24206850144893818 - sys_corr_17: -14.241528770783685 - sys_corr_18: -0.217409383588994 - sys_corr_19: 0.0012927871221434435 - sys_corr_20: 0.0059161541606441 - sys_corr_21: -0.034156447425967996 - sys_corr_22: 0.09648547898561297 - sys_corr_23: -2.607404943220818 - sys_corr_24: -0.041223139005774956 - sys_corr_25: -0.3998287194458143 - sys_corr_26: -1.6516389153749202 - sys_corr_27: -1.9634020416001159 - sys_corr_28: -1.539976122969781 - sys_corr_29: 44.80936472075005 - sys_corr_30: -1.184274038184911 - sys_corr_31: 1.4870238354788787 - sys_corr_32: 6.129738977414608 - sys_corr_33: 0.10119973561078824 +- sys_corr_1: -7.29791157e+00 + sys_corr_2: 1.30008691e+01 + sys_corr_3: -1.04221244e+00 + sys_corr_4: -1.73544479e+00 + sys_corr_5: 4.74626776e-01 + sys_corr_6: 9.57323721e-03 + sys_corr_7: -1.22180070e-01 + sys_corr_8: 2.54306457e-02 + sys_corr_9: 5.39944895e-01 + sys_corr_10: -2.13684834e+00 + sys_corr_11: -8.94332478e-04 + sys_corr_12: 5.36094847e-01 + sys_corr_13: -4.44397283e-01 + sys_corr_14: 3.09589435e-01 + sys_corr_15: -1.08178241e-01 + sys_corr_16: 2.42068501e-01 + sys_corr_17: -1.42415288e+01 + sys_corr_18: -2.17409384e-01 + sys_corr_19: 1.29278712e-03 + sys_corr_20: 5.91615416e-03 + sys_corr_21: -3.41564474e-02 + sys_corr_22: 9.64854790e-02 + sys_corr_23: -2.60740494e+00 + sys_corr_24: -4.12231390e-02 + sys_corr_25: -3.99828719e-01 + sys_corr_26: -1.65163892e+00 + sys_corr_27: -1.96340204e+00 + sys_corr_28: -1.53997612e+00 + sys_corr_29: 4.48093647e+01 + sys_corr_30: -1.18427404e+00 + sys_corr_31: 1.48702384e+00 + sys_corr_32: 6.12973898e+00 + sys_corr_33: 1.01199736e-01 stat: 63.0 sys_beam: 36.0 sys_luminosity: 49.0 -- sys_corr_1: -7.699157805059007 - sys_corr_2: 17.71474186844379 - sys_corr_3: -5.635692680353923 - sys_corr_4: -0.5396681593612414 - sys_corr_5: 1.1984639112899278 - sys_corr_6: 0.7177770158019381 - sys_corr_7: -0.4247910820244533 - sys_corr_8: 0.30912149243054166 - sys_corr_9: 0.4698710408470783 - sys_corr_10: -2.605356064191482 - sys_corr_11: -0.40662467349036446 - sys_corr_12: -0.6905443288027894 - sys_corr_13: 1.0655867897808229 - sys_corr_14: 0.41228835106456924 - sys_corr_15: 0.0022229188682831675 - sys_corr_16: 0.21116373713766826 - sys_corr_17: -45.2610037753907 - sys_corr_18: 59.588713813559345 - sys_corr_19: 0.00101429274636337 - sys_corr_20: 0.0050032544839424325 - sys_corr_21: 0.006825287451736368 - sys_corr_22: -0.027693923239105418 - sys_corr_23: -0.6852271010202735 - sys_corr_24: -0.04406223106420677 - sys_corr_25: -0.09996058489381261 - sys_corr_26: 4.3167246393749155 - sys_corr_27: 3.101131179781679 - sys_corr_28: 0.40294242189699037 - sys_corr_29: -3.2313815140449718 - sys_corr_30: 0.04929906955860508 - sys_corr_31: -2.5202264530105762 - sys_corr_32: -4.750051696188027 - sys_corr_33: 0.04819160671261607 +- sys_corr_1: -7.69915781e+00 + sys_corr_2: 1.77147419e+01 + sys_corr_3: -5.63569268e+00 + sys_corr_4: -5.39668159e-01 + sys_corr_5: 1.19846391e+00 + sys_corr_6: 7.17777016e-01 + sys_corr_7: -4.24791082e-01 + sys_corr_8: 3.09121492e-01 + sys_corr_9: 4.69871041e-01 + sys_corr_10: -2.60535606e+00 + sys_corr_11: -4.06624673e-01 + sys_corr_12: -6.90544329e-01 + sys_corr_13: 1.06558679e+00 + sys_corr_14: 4.12288351e-01 + sys_corr_15: 2.22291887e-03 + sys_corr_16: 2.11163737e-01 + sys_corr_17: -4.52610038e+01 + sys_corr_18: 5.95887138e+01 + sys_corr_19: 1.01429275e-03 + sys_corr_20: 5.00325448e-03 + sys_corr_21: 6.82528745e-03 + sys_corr_22: -2.76939232e-02 + sys_corr_23: -6.85227101e-01 + sys_corr_24: -4.40622311e-02 + sys_corr_25: -9.99605849e-02 + sys_corr_26: 4.31672464e+00 + sys_corr_27: 3.10113118e+00 + sys_corr_28: 4.02942422e-01 + sys_corr_29: -3.23138151e+00 + sys_corr_30: 4.92990696e-02 + sys_corr_31: -2.52022645e+00 + sys_corr_32: -4.75005170e+00 + sys_corr_33: 4.81916067e-02 stat: 77.0 sys_beam: 55.0 sys_luminosity: 76.0 -- sys_corr_1: -5.838278576612298 - sys_corr_2: 14.39097310940158 - sys_corr_3: -5.566035904088241 - sys_corr_4: 2.391986214650795 - sys_corr_5: -0.35519219284686376 - sys_corr_6: 0.01737443068755354 - sys_corr_7: -0.32967748848589723 - sys_corr_8: 0.45507369045289436 - sys_corr_9: 0.6014060984871122 - sys_corr_10: -2.095698384752894 - sys_corr_11: -0.8035075574421994 - sys_corr_12: -1.0054240511389962 - sys_corr_13: 0.7408314091397591 - sys_corr_14: 0.5331301450047038 - sys_corr_15: 0.14439003041028053 - sys_corr_16: 0.4857155411279266 - sys_corr_17: -22.53807456374804 - sys_corr_18: -4.141360551493549 - sys_corr_19: -0.00031413186285801637 - sys_corr_20: 0.002563392326889276 - sys_corr_21: -0.010384538709856669 - sys_corr_22: -0.017915032641110377 - sys_corr_23: -0.9487168334097262 - sys_corr_24: -0.03297155395518106 - sys_corr_25: -0.5617137822932491 - sys_corr_26: -3.6776216478564394 - sys_corr_27: -3.4662887879851327 - sys_corr_28: 0.057611600058810546 - sys_corr_29: -7.426141561175894 - sys_corr_30: -2.739325236350733 - sys_corr_31: 10.21972090034545 - sys_corr_32: 50.746468981903575 - sys_corr_33: 4.471619432722373 +- sys_corr_1: -5.83827858e+00 + sys_corr_2: 1.43909731e+01 + sys_corr_3: -5.56603590e+00 + sys_corr_4: 2.39198621e+00 + sys_corr_5: -3.55192193e-01 + sys_corr_6: 1.73744307e-02 + sys_corr_7: -3.29677488e-01 + sys_corr_8: 4.55073690e-01 + sys_corr_9: 6.01406098e-01 + sys_corr_10: -2.09569838e+00 + sys_corr_11: -8.03507557e-01 + sys_corr_12: -1.00542405e+00 + sys_corr_13: 7.40831409e-01 + sys_corr_14: 5.33130145e-01 + sys_corr_15: 1.44390030e-01 + sys_corr_16: 4.85715541e-01 + sys_corr_17: -2.25380746e+01 + sys_corr_18: -4.14136055e+00 + sys_corr_19: -3.14131863e-04 + sys_corr_20: 2.56339233e-03 + sys_corr_21: -1.03845387e-02 + sys_corr_22: -1.79150326e-02 + sys_corr_23: -9.48716833e-01 + sys_corr_24: -3.29715540e-02 + sys_corr_25: -5.61713782e-01 + sys_corr_26: -3.67762165e+00 + sys_corr_27: -3.46628879e+00 + sys_corr_28: 5.76116001e-02 + sys_corr_29: -7.42614156e+00 + sys_corr_30: -2.73932524e+00 + sys_corr_31: 1.02197209e+01 + sys_corr_32: 5.07464690e+01 + sys_corr_33: 4.47161943e+00 stat: 88.0 sys_beam: 73.0 sys_luminosity: 100.0 -- sys_corr_1: -5.996893917218735 - sys_corr_2: 14.843014977290178 - sys_corr_3: -5.26948989529952 - sys_corr_4: 3.5949703372359587 - sys_corr_5: -2.7411872199969576 - sys_corr_6: -1.2469937258108765 - sys_corr_7: -0.4892499106281845 - sys_corr_8: 0.5005765425756845 - sys_corr_9: 0.7965903106529305 - sys_corr_10: -2.5859179064658893 - sys_corr_11: -0.17960228334736852 - sys_corr_12: -0.8595719321260656 - sys_corr_13: 0.5897927826987377 - sys_corr_14: -0.11339892733102595 - sys_corr_15: 0.1249790192329557 - sys_corr_16: 0.5870502811290336 - sys_corr_17: -31.16440970133634 - sys_corr_18: -12.455484431906589 - sys_corr_19: -0.0006272593525352574 - sys_corr_20: 0.001358414400353384 - sys_corr_21: -0.0009692372148536777 - sys_corr_22: 0.05617481071978107 - sys_corr_23: -0.6423520184271446 - sys_corr_24: -0.18306750525331847 - sys_corr_25: -0.7933777125670846 - sys_corr_26: -21.96384251377368 - sys_corr_27: -44.51969291627447 - sys_corr_28: -22.46957677464849 - sys_corr_29: -3.752631298159274 - sys_corr_30: -1.0813662404328324 - sys_corr_31: -11.253680668330848 - sys_corr_32: -8.368031529327054 - sys_corr_33: -0.0610590436712085 +- sys_corr_1: -5.99689392e+00 + sys_corr_2: 1.48430150e+01 + sys_corr_3: -5.26948990e+00 + sys_corr_4: 3.59497034e+00 + sys_corr_5: -2.74118722e+00 + sys_corr_6: -1.24699373e+00 + sys_corr_7: -4.89249911e-01 + sys_corr_8: 5.00576543e-01 + sys_corr_9: 7.96590311e-01 + sys_corr_10: -2.58591791e+00 + sys_corr_11: -1.79602283e-01 + sys_corr_12: -8.59571932e-01 + sys_corr_13: 5.89792783e-01 + sys_corr_14: -1.13398927e-01 + sys_corr_15: 1.24979019e-01 + sys_corr_16: 5.87050281e-01 + sys_corr_17: -3.11644097e+01 + sys_corr_18: -1.24554844e+01 + sys_corr_19: -6.27259353e-04 + sys_corr_20: 1.35841440e-03 + sys_corr_21: -9.69237215e-04 + sys_corr_22: 5.61748107e-02 + sys_corr_23: -6.42352018e-01 + sys_corr_24: -1.83067505e-01 + sys_corr_25: -7.93377713e-01 + sys_corr_26: -2.19638425e+01 + sys_corr_27: -4.45196929e+01 + sys_corr_28: -2.24695768e+01 + sys_corr_29: -3.75263130e+00 + sys_corr_30: -1.08136624e+00 + sys_corr_31: -1.12536807e+01 + sys_corr_32: -8.36803153e+00 + sys_corr_33: -6.10590437e-02 stat: 95.0 sys_beam: 86.0 sys_luminosity: 118.0 -- sys_corr_1: -5.949907003474861 - sys_corr_2: 14.137082558143842 - sys_corr_3: -5.277680065464681 - sys_corr_4: 4.3247956516346715 - sys_corr_5: -3.8817624195466136 - sys_corr_6: -3.0500244245771233 - sys_corr_7: -0.3601690663546049 - sys_corr_8: -0.10590922722384427 - sys_corr_9: 1.365437369674065 - sys_corr_10: -2.0298119047863707 - sys_corr_11: -0.509653317695348 - sys_corr_12: -0.24718679746580352 - sys_corr_13: 0.43157578653055706 - sys_corr_14: 0.2819219297350938 - sys_corr_15: 0.27600508849006183 - sys_corr_16: 0.654096904157463 - sys_corr_17: -32.860485308268515 - sys_corr_18: -17.698228548281413 - sys_corr_19: -0.0012636972811759975 - sys_corr_20: 1.256896515653254e-05 - sys_corr_21: -0.028347299802825965 - sys_corr_22: 0.12649311170157104 - sys_corr_23: -0.5245922592701399 - sys_corr_24: -0.3328874883910953 - sys_corr_25: -0.5689330600897631 - sys_corr_26: -29.22100600363928 - sys_corr_27: 42.386548398332565 - sys_corr_28: -17.09617534086349 - sys_corr_29: -2.2521504379625417 - sys_corr_30: -1.6023600848258446 - sys_corr_31: -8.884046829042811 - sys_corr_32: -4.6951989035270385 - sys_corr_33: -1.5667836238063806 +- sys_corr_1: -5.94990700e+00 + sys_corr_2: 1.41370826e+01 + sys_corr_3: -5.27768007e+00 + sys_corr_4: 4.32479565e+00 + sys_corr_5: -3.88176242e+00 + sys_corr_6: -3.05002442e+00 + sys_corr_7: -3.60169066e-01 + sys_corr_8: -1.05909227e-01 + sys_corr_9: 1.36543737e+00 + sys_corr_10: -2.02981190e+00 + sys_corr_11: -5.09653318e-01 + sys_corr_12: -2.47186797e-01 + sys_corr_13: 4.31575787e-01 + sys_corr_14: 2.81921930e-01 + sys_corr_15: 2.76005088e-01 + sys_corr_16: 6.54096904e-01 + sys_corr_17: -3.28604853e+01 + sys_corr_18: -1.76982285e+01 + sys_corr_19: -1.26369728e-03 + sys_corr_20: 1.25689652e-05 + sys_corr_21: -2.83472998e-02 + sys_corr_22: 1.26493112e-01 + sys_corr_23: -5.24592259e-01 + sys_corr_24: -3.32887488e-01 + sys_corr_25: -5.68933060e-01 + sys_corr_26: -2.92210060e+01 + sys_corr_27: 4.23865484e+01 + sys_corr_28: -1.70961753e+01 + sys_corr_29: -2.25215044e+00 + sys_corr_30: -1.60236008e+00 + sys_corr_31: -8.88404683e+00 + sys_corr_32: -4.69519890e+00 + sys_corr_33: -1.56678362e+00 stat: 100.0 sys_beam: 96.0 sys_luminosity: 132.0 -- sys_corr_1: -5.835444039374021 - sys_corr_2: 13.088285526624283 - sys_corr_3: -5.492704668224828 - sys_corr_4: 4.021133143361567 - sys_corr_5: -3.9121966883069956 - sys_corr_6: -3.4866600736968314 - sys_corr_7: 0.21179248317837016 - sys_corr_8: -0.8777885622212179 - sys_corr_9: 1.8786360127721018 - sys_corr_10: -0.9027896072397511 - sys_corr_11: 1.1830857070798344 - sys_corr_12: -1.1401979030347482 - sys_corr_13: 0.47380537651409055 - sys_corr_14: 0.3155168234500565 - sys_corr_15: 0.644644704437577 - sys_corr_16: 0.5576028659723105 - sys_corr_17: -34.36525962411903 - sys_corr_18: -22.88666792953804 - sys_corr_19: -0.0013478159665670224 - sys_corr_20: -0.0004724214571829234 - sys_corr_21: -0.02537502237640039 - sys_corr_22: 0.11239189427054516 - sys_corr_23: -0.4070390546193248 - sys_corr_24: -0.2853761232434217 - sys_corr_25: -0.9633357122385968 - sys_corr_26: 50.80381634414013 - sys_corr_27: 4.120146803693921 - sys_corr_28: -14.127501802452725 - sys_corr_29: -1.8451783318486372 - sys_corr_30: -1.495579517239746 - sys_corr_31: -9.740693365029998 - sys_corr_32: -2.787873471681524 - sys_corr_33: 0.29920231729136826 +- sys_corr_1: -5.83544404e+00 + sys_corr_2: 1.30882855e+01 + sys_corr_3: -5.49270467e+00 + sys_corr_4: 4.02113314e+00 + sys_corr_5: -3.91219669e+00 + sys_corr_6: -3.48666007e+00 + sys_corr_7: 2.11792483e-01 + sys_corr_8: -8.77788562e-01 + sys_corr_9: 1.87863601e+00 + sys_corr_10: -9.02789607e-01 + sys_corr_11: 1.18308571e+00 + sys_corr_12: -1.14019790e+00 + sys_corr_13: 4.73805377e-01 + sys_corr_14: 3.15516823e-01 + sys_corr_15: 6.44644704e-01 + sys_corr_16: 5.57602866e-01 + sys_corr_17: -3.43652596e+01 + sys_corr_18: -2.28866679e+01 + sys_corr_19: -1.34781597e-03 + sys_corr_20: -4.72421457e-04 + sys_corr_21: -2.53750224e-02 + sys_corr_22: 1.12391894e-01 + sys_corr_23: -4.07039055e-01 + sys_corr_24: -2.85376123e-01 + sys_corr_25: -9.63335712e-01 + sys_corr_26: 5.08038163e+01 + sys_corr_27: 4.12014680e+00 + sys_corr_28: -1.41275018e+01 + sys_corr_29: -1.84517833e+00 + sys_corr_30: -1.49557952e+00 + sys_corr_31: -9.74069337e+00 + sys_corr_32: -2.78787347e+00 + sys_corr_33: 2.99202317e-01 stat: 104.0 sys_beam: 104.0 sys_luminosity: 143.0 -- sys_corr_1: -4.578463173209245 - sys_corr_2: 11.492975402798844 - sys_corr_3: -5.342727368765783 - sys_corr_4: 4.126356809328613 - sys_corr_5: -3.9922608873752963 - sys_corr_6: -3.659835297393161 - sys_corr_7: 1.2417807646456467 - sys_corr_8: -2.207417830905172 - sys_corr_9: 1.5545920211934137 - sys_corr_10: -0.6499439295902983 - sys_corr_11: 0.2024145569787807 - sys_corr_12: -0.7346344891238589 - sys_corr_13: 0.15016606264172364 - sys_corr_14: 0.1871901022181721 - sys_corr_15: 0.9502953125299415 - sys_corr_16: 0.6382116555836846 - sys_corr_17: -28.022841740406594 - sys_corr_18: -15.360370639625762 - sys_corr_19: 0.004262158936466547 - sys_corr_20: 0.010104978715944603 - sys_corr_21: -0.05849862498136131 - sys_corr_22: 0.21426492515897955 - sys_corr_23: -0.40659276863563015 - sys_corr_24: -0.5178959102669797 - sys_corr_25: -1.0548333315489675 - sys_corr_26: -5.178392681782824 - sys_corr_27: -3.8296897150192692 - sys_corr_28: 51.202578657080586 - sys_corr_29: -1.0981054409265378 - sys_corr_30: -3.0388901879220116 - sys_corr_31: -20.301079361133443 - sys_corr_32: -2.839324583945193 - sys_corr_33: 0.4512831009149138 +- sys_corr_1: -4.57846317e+00 + sys_corr_2: 1.14929754e+01 + sys_corr_3: -5.34272737e+00 + sys_corr_4: 4.12635681e+00 + sys_corr_5: -3.99226089e+00 + sys_corr_6: -3.65983530e+00 + sys_corr_7: 1.24178076e+00 + sys_corr_8: -2.20741783e+00 + sys_corr_9: 1.55459202e+00 + sys_corr_10: -6.49943930e-01 + sys_corr_11: 2.02414557e-01 + sys_corr_12: -7.34634489e-01 + sys_corr_13: 1.50166063e-01 + sys_corr_14: 1.87190102e-01 + sys_corr_15: 9.50295313e-01 + sys_corr_16: 6.38211656e-01 + sys_corr_17: -2.80228417e+01 + sys_corr_18: -1.53603706e+01 + sys_corr_19: 4.26215894e-03 + sys_corr_20: 1.01049787e-02 + sys_corr_21: -5.84986250e-02 + sys_corr_22: 2.14264925e-01 + sys_corr_23: -4.06592769e-01 + sys_corr_24: -5.17895910e-01 + sys_corr_25: -1.05483333e+00 + sys_corr_26: -5.17839268e+00 + sys_corr_27: -3.82968972e+00 + sys_corr_28: 5.12025787e+01 + sys_corr_29: -1.09810544e+00 + sys_corr_30: -3.03889019e+00 + sys_corr_31: -2.03010794e+01 + sys_corr_32: -2.83932458e+00 + sys_corr_33: 4.51283101e-01 stat: 103.0 sys_beam: 103.0 sys_luminosity: 142.0 -- sys_corr_1: -3.9460858939786965 - sys_corr_2: 9.331747682825814 - sys_corr_3: -4.502646795676548 - sys_corr_4: 3.52661999217111 - sys_corr_5: -3.639029666607165 - sys_corr_6: -3.22598438653398 - sys_corr_7: 2.1588482361814205 - sys_corr_8: -2.2365351993274634 - sys_corr_9: 1.2136482542488536 - sys_corr_10: -0.2967678491358917 - sys_corr_11: -0.8236260631451637 - sys_corr_12: -0.34840942771361777 - sys_corr_13: 0.08854711601867193 - sys_corr_14: 0.9344478855823343 - sys_corr_15: 1.0533652355015524 - sys_corr_16: -0.08875471213305143 - sys_corr_17: -20.059679842882176 - sys_corr_18: -8.695726652369748 - sys_corr_19: 0.004045355376697582 - sys_corr_20: 0.010423774641023337 - sys_corr_21: -0.06267162582035803 - sys_corr_22: 0.23812793222046488 - sys_corr_23: -0.37549999689656005 - sys_corr_24: -0.6042913104889222 - sys_corr_25: -2.1895278286529707 - sys_corr_26: -0.3262907577161122 - sys_corr_27: -2.6650933964974572 - sys_corr_28: 7.492399150300942 - sys_corr_29: -1.8453471794724177 - sys_corr_30: -6.137185313165999 - sys_corr_31: 34.40405226287594 - sys_corr_32: -8.058504971006268 - sys_corr_33: -38.36148149357813 +- sys_corr_1: -3.94608589e+00 + sys_corr_2: 9.33174768e+00 + sys_corr_3: -4.50264680e+00 + sys_corr_4: 3.52661999e+00 + sys_corr_5: -3.63902967e+00 + sys_corr_6: -3.22598439e+00 + sys_corr_7: 2.15884824e+00 + sys_corr_8: -2.23653520e+00 + sys_corr_9: 1.21364825e+00 + sys_corr_10: -2.96767849e-01 + sys_corr_11: -8.23626063e-01 + sys_corr_12: -3.48409428e-01 + sys_corr_13: 8.85471160e-02 + sys_corr_14: 9.34447886e-01 + sys_corr_15: 1.05336524e+00 + sys_corr_16: -8.87547121e-02 + sys_corr_17: -2.00596798e+01 + sys_corr_18: -8.69572665e+00 + sys_corr_19: 4.04535538e-03 + sys_corr_20: 1.04237746e-02 + sys_corr_21: -6.26716258e-02 + sys_corr_22: 2.38127932e-01 + sys_corr_23: -3.75499997e-01 + sys_corr_24: -6.04291310e-01 + sys_corr_25: -2.18952783e+00 + sys_corr_26: -3.26290758e-01 + sys_corr_27: -2.66509340e+00 + sys_corr_28: 7.49239915e+00 + sys_corr_29: -1.84534718e+00 + sys_corr_30: -6.13718531e+00 + sys_corr_31: 3.44040523e+01 + sys_corr_32: -8.05850497e+00 + sys_corr_33: -3.83614815e+01 stat: 99.0 sys_beam: 97.0 sys_luminosity: 134.0 -- sys_corr_1: -3.3296479921920215 - sys_corr_2: 7.5883943004564935 - sys_corr_3: -3.714550452723452 - sys_corr_4: 3.3550354839323324 - sys_corr_5: -3.6210240893797 - sys_corr_6: -3.3033447678556613 - sys_corr_7: 2.7787312340336414 - sys_corr_8: -1.790874580343591 - sys_corr_9: 0.699173474160956 - sys_corr_10: -0.21168570613123214 - sys_corr_11: 0.4193254329696789 - sys_corr_12: -1.0346646678921523 - sys_corr_13: 0.9249825327151258 - sys_corr_14: 1.1513428890631658 - sys_corr_15: 0.317588777946141 - sys_corr_16: -0.8103817316898109 - sys_corr_17: -17.65115184322894 - sys_corr_18: -8.468050345062014 - sys_corr_19: 0.00346052812594454 - sys_corr_20: 0.02284100993511031 - sys_corr_21: -0.10335762538907334 - sys_corr_22: 0.3639258931234757 - sys_corr_23: -0.42098864047826307 - sys_corr_24: -0.9238706063642331 - sys_corr_25: -2.5413922039810912 - sys_corr_26: -1.4394613946934833 - sys_corr_27: -0.5679517012134454 - sys_corr_28: 6.136048179733384 - sys_corr_29: -1.1936612714029022 - sys_corr_30: -7.9490207960766295 - sys_corr_31: 33.068185465052935 - sys_corr_32: -14.234108302570368 - sys_corr_33: 37.93320406535584 +- sys_corr_1: -3.32964799e+00 + sys_corr_2: 7.58839430e+00 + sys_corr_3: -3.71455045e+00 + sys_corr_4: 3.35503548e+00 + sys_corr_5: -3.62102409e+00 + sys_corr_6: -3.30334477e+00 + sys_corr_7: 2.77873123e+00 + sys_corr_8: -1.79087458e+00 + sys_corr_9: 6.99173474e-01 + sys_corr_10: -2.11685706e-01 + sys_corr_11: 4.19325433e-01 + sys_corr_12: -1.03466467e+00 + sys_corr_13: 9.24982533e-01 + sys_corr_14: 1.15134289e+00 + sys_corr_15: 3.17588778e-01 + sys_corr_16: -8.10381732e-01 + sys_corr_17: -1.76511518e+01 + sys_corr_18: -8.46805035e+00 + sys_corr_19: 3.46052813e-03 + sys_corr_20: 2.28410099e-02 + sys_corr_21: -1.03357625e-01 + sys_corr_22: 3.63925893e-01 + sys_corr_23: -4.20988640e-01 + sys_corr_24: -9.23870606e-01 + sys_corr_25: -2.54139220e+00 + sys_corr_26: -1.43946139e+00 + sys_corr_27: -5.67951701e-01 + sys_corr_28: 6.13604818e+00 + sys_corr_29: -1.19366127e+00 + sys_corr_30: -7.94902080e+00 + sys_corr_31: 3.30681855e+01 + sys_corr_32: -1.42341083e+01 + sys_corr_33: 3.79332041e+01 stat: 96.0 sys_beam: 89.0 sys_luminosity: 122.0 -- sys_corr_1: -2.2644970448024164 - sys_corr_2: 5.303611386017853 - sys_corr_3: -2.9965580164847476 - sys_corr_4: 2.9808073705544844 - sys_corr_5: -2.671718796563147 - sys_corr_6: -2.8203798685914223 - sys_corr_7: 3.0759167612439726 - sys_corr_8: -0.6002068928428987 - sys_corr_9: 0.5652411860655118 - sys_corr_10: 0.1566211518695707 - sys_corr_11: 0.5227061713301702 - sys_corr_12: -0.2012909067865169 - sys_corr_13: -0.005896119165318261 - sys_corr_14: 0.7277698680111875 - sys_corr_15: 0.8209984498228907 - sys_corr_16: -1.1411790598173943 - sys_corr_17: -11.310138887380525 - sys_corr_18: -5.1914445097241035 - sys_corr_19: 0.012243378984850612 - sys_corr_20: 0.027072803141586887 - sys_corr_21: -0.12431963981218651 - sys_corr_22: 0.6384437220312449 - sys_corr_23: -0.23664523396117837 - sys_corr_24: -1.418444272577331 - sys_corr_25: -6.182965470305888 - sys_corr_26: -0.7831071066187173 - sys_corr_27: -0.3367636386135794 - sys_corr_28: 3.6078558439812403 - sys_corr_29: -0.025855777636017364 - sys_corr_30: 45.18748682643025 - sys_corr_31: 8.204394050539062 - sys_corr_32: -0.8109805549897795 - sys_corr_33: 1.6084906420068876 +- sys_corr_1: -2.26449704e+00 + sys_corr_2: 5.30361139e+00 + sys_corr_3: -2.99655802e+00 + sys_corr_4: 2.98080737e+00 + sys_corr_5: -2.67171880e+00 + sys_corr_6: -2.82037987e+00 + sys_corr_7: 3.07591676e+00 + sys_corr_8: -6.00206893e-01 + sys_corr_9: 5.65241186e-01 + sys_corr_10: 1.56621152e-01 + sys_corr_11: 5.22706171e-01 + sys_corr_12: -2.01290907e-01 + sys_corr_13: -5.89611917e-03 + sys_corr_14: 7.27769868e-01 + sys_corr_15: 8.20998450e-01 + sys_corr_16: -1.14117906e+00 + sys_corr_17: -1.13101389e+01 + sys_corr_18: -5.19144451e+00 + sys_corr_19: 1.22433790e-02 + sys_corr_20: 2.70728031e-02 + sys_corr_21: -1.24319640e-01 + sys_corr_22: 6.38443722e-01 + sys_corr_23: -2.36645234e-01 + sys_corr_24: -1.41844427e+00 + sys_corr_25: -6.18296547e+00 + sys_corr_26: -7.83107107e-01 + sys_corr_27: -3.36763639e-01 + sys_corr_28: 3.60785584e+00 + sys_corr_29: -2.58557776e-02 + sys_corr_30: 4.51874868e+01 + sys_corr_31: 8.20439405e+00 + sys_corr_32: -8.10980555e-01 + sys_corr_33: 1.60849064e+00 stat: 87.0 sys_beam: 74.0 sys_luminosity: 101.0 -- sys_corr_1: -1.513515582227595 - sys_corr_2: 3.2044538268193246 - sys_corr_3: -1.799559002830778 - sys_corr_4: 2.038005776686647 - sys_corr_5: -2.137992517157925 - sys_corr_6: -2.256180641108121 - sys_corr_7: 2.6322183178687544 - sys_corr_8: -0.25693000367961655 - sys_corr_9: 0.32904301927027957 - sys_corr_10: 0.4158887653751109 - sys_corr_11: 0.12470724030488785 - sys_corr_12: -0.33814436203047815 - sys_corr_13: 0.3436493649734144 - sys_corr_14: 1.1984378152097308 - sys_corr_15: 0.5030735536072816 - sys_corr_16: -1.151770908762081 - sys_corr_17: -6.947361726463086 - sys_corr_18: -3.100402076835983 - sys_corr_19: 0.015269844074423085 - sys_corr_20: 0.035954345143622696 - sys_corr_21: -0.17357495277799437 - sys_corr_22: 0.7430732660388921 - sys_corr_23: -0.6040761669974669 - sys_corr_24: -2.6663942714164306 - sys_corr_25: 38.966660718356344 - sys_corr_26: -0.030343453690602797 - sys_corr_27: -0.588581390332667 - sys_corr_28: 1.6036788794271175 - sys_corr_29: -0.0700891959002945 - sys_corr_30: 5.872159828056449 - sys_corr_31: 4.2036127810351465 - sys_corr_32: -1.0476413774171527 - sys_corr_33: 0.5798344606427199 +- sys_corr_1: -1.51351558e+00 + sys_corr_2: 3.20445383e+00 + sys_corr_3: -1.79955900e+00 + sys_corr_4: 2.03800578e+00 + sys_corr_5: -2.13799252e+00 + sys_corr_6: -2.25618064e+00 + sys_corr_7: 2.63221832e+00 + sys_corr_8: -2.56930004e-01 + sys_corr_9: 3.29043019e-01 + sys_corr_10: 4.15888765e-01 + sys_corr_11: 1.24707240e-01 + sys_corr_12: -3.38144362e-01 + sys_corr_13: 3.43649365e-01 + sys_corr_14: 1.19843782e+00 + sys_corr_15: 5.03073554e-01 + sys_corr_16: -1.15177091e+00 + sys_corr_17: -6.94736173e+00 + sys_corr_18: -3.10040208e+00 + sys_corr_19: 1.52698441e-02 + sys_corr_20: 3.59543451e-02 + sys_corr_21: -1.73574953e-01 + sys_corr_22: 7.43073266e-01 + sys_corr_23: -6.04076167e-01 + sys_corr_24: -2.66639427e+00 + sys_corr_25: 3.89666607e+01 + sys_corr_26: -3.03434537e-02 + sys_corr_27: -5.88581390e-01 + sys_corr_28: 1.60367888e+00 + sys_corr_29: -7.00891959e-02 + sys_corr_30: 5.87215983e+00 + sys_corr_31: 4.20361278e+00 + sys_corr_32: -1.04764138e+00 + sys_corr_33: 5.79834461e-01 stat: 73.0 sys_beam: 52.0 sys_luminosity: 72.0 -- sys_corr_1: -0.9599677202731437 - sys_corr_2: 1.8901057609022804 - sys_corr_3: -1.0378159791137573 - sys_corr_4: 1.2741208103015023 - sys_corr_5: -1.4757821487500415 - sys_corr_6: -1.4710731576800156 - sys_corr_7: 2.111110656303758 - sys_corr_8: -0.27021399706120286 - sys_corr_9: 0.18836855327544447 - sys_corr_10: 0.4503325027712125 - sys_corr_11: 0.23005160232186697 - sys_corr_12: -0.4381571310578679 - sys_corr_13: 0.10449329455985254 - sys_corr_14: 0.39790648153921765 - sys_corr_15: 0.4820039908599063 - sys_corr_16: -1.2052195926051017 - sys_corr_17: -3.8796395645597612 - sys_corr_18: -1.6008710972005198 - sys_corr_19: 0.021744932392499822 - sys_corr_20: 0.052588206322650835 - sys_corr_21: -0.2841202770322658 - sys_corr_22: 1.9382119201075017 - sys_corr_23: 1.8023127730053656 - sys_corr_24: 28.942691039116013 - sys_corr_25: 3.0285738343293445 - sys_corr_26: -0.1877888611626913 - sys_corr_27: -0.002317626727620177 - sys_corr_28: 1.0370069734244094 - sys_corr_29: 0.08391998313771162 - sys_corr_30: 2.1408681558118405 - sys_corr_31: 1.8730470949490958 - sys_corr_32: -0.7474623468948263 - sys_corr_33: 0.5228886016718449 +- sys_corr_1: -9.59967720e-01 + sys_corr_2: 1.89010576e+00 + sys_corr_3: -1.03781598e+00 + sys_corr_4: 1.27412081e+00 + sys_corr_5: -1.47578215e+00 + sys_corr_6: -1.47107316e+00 + sys_corr_7: 2.11111066e+00 + sys_corr_8: -2.70213997e-01 + sys_corr_9: 1.88368553e-01 + sys_corr_10: 4.50332503e-01 + sys_corr_11: 2.30051602e-01 + sys_corr_12: -4.38157131e-01 + sys_corr_13: 1.04493295e-01 + sys_corr_14: 3.97906482e-01 + sys_corr_15: 4.82003991e-01 + sys_corr_16: -1.20521959e+00 + sys_corr_17: -3.87963956e+00 + sys_corr_18: -1.60087110e+00 + sys_corr_19: 2.17449324e-02 + sys_corr_20: 5.25882063e-02 + sys_corr_21: -2.84120277e-01 + sys_corr_22: 1.93821192e+00 + sys_corr_23: 1.80231277e+00 + sys_corr_24: 2.89426910e+01 + sys_corr_25: 3.02857383e+00 + sys_corr_26: -1.87788861e-01 + sys_corr_27: -2.31762673e-03 + sys_corr_28: 1.03700697e+00 + sys_corr_29: 8.39199831e-02 + sys_corr_30: 2.14086816e+00 + sys_corr_31: 1.87304709e+00 + sys_corr_32: -7.47462347e-01 + sys_corr_33: 5.22888602e-01 stat: 61.0 sys_beam: 36.0 sys_luminosity: 50.0 -- sys_corr_1: -0.6016101755163246 - sys_corr_2: 1.1597183126555877 - sys_corr_3: -0.43963847622759905 - sys_corr_4: 0.6948774891507552 - sys_corr_5: -0.9415241508082652 - sys_corr_6: -0.9991327629540143 - sys_corr_7: 1.5174553736573035 - sys_corr_8: 0.12754784527214505 - sys_corr_9: 0.13648182638956124 - sys_corr_10: 0.04969527771764928 - sys_corr_11: 0.2737254510373512 - sys_corr_12: 0.09215309773617389 - sys_corr_13: 0.019354807163847104 - sys_corr_14: 0.21777740221843647 - sys_corr_15: 0.21606327417540777 - sys_corr_16: -0.973504268016993 - sys_corr_17: -2.0578009542705265 - sys_corr_18: -1.0644875221619896 - sys_corr_19: 0.031740270008775204 - sys_corr_20: 0.08033514707308048 - sys_corr_21: -0.5208458815894645 - sys_corr_22: -22.46423802267437 - sys_corr_23: 0.18610800121244955 - sys_corr_24: 2.308734684641413 - sys_corr_25: 1.2699565268666466 - sys_corr_26: -0.09091516552335618 - sys_corr_27: 0.032674791337999366 - sys_corr_28: 0.6681291423828061 - sys_corr_29: 0.13280508508763325 - sys_corr_30: 1.3989101918131466 - sys_corr_31: 1.09650665474171 - sys_corr_32: -0.5238493042777358 - sys_corr_33: 0.3056880593229055 +- sys_corr_1: -6.01610176e-01 + sys_corr_2: 1.15971831e+00 + sys_corr_3: -4.39638476e-01 + sys_corr_4: 6.94877489e-01 + sys_corr_5: -9.41524151e-01 + sys_corr_6: -9.99132763e-01 + sys_corr_7: 1.51745537e+00 + sys_corr_8: 1.27547845e-01 + sys_corr_9: 1.36481826e-01 + sys_corr_10: 4.96952777e-02 + sys_corr_11: 2.73725451e-01 + sys_corr_12: 9.21530977e-02 + sys_corr_13: 1.93548072e-02 + sys_corr_14: 2.17777402e-01 + sys_corr_15: 2.16063274e-01 + sys_corr_16: -9.73504268e-01 + sys_corr_17: -2.05780095e+00 + sys_corr_18: -1.06448752e+00 + sys_corr_19: 3.17402700e-02 + sys_corr_20: 8.03351471e-02 + sys_corr_21: -5.20845882e-01 + sys_corr_22: -2.24642380e+01 + sys_corr_23: 1.86108001e-01 + sys_corr_24: 2.30873468e+00 + sys_corr_25: 1.26995653e+00 + sys_corr_26: -9.09151655e-02 + sys_corr_27: 3.26747913e-02 + sys_corr_28: 6.68129142e-01 + sys_corr_29: 1.32805085e-01 + sys_corr_30: 1.39891019e+00 + sys_corr_31: 1.09650665e+00 + sys_corr_32: -5.23849304e-01 + sys_corr_33: 3.05688059e-01 stat: 47.0 sys_beam: 22.0 sys_luminosity: 30.0 -- sys_corr_1: -0.30363528921299726 - sys_corr_2: 0.4648760921171039 - sys_corr_3: -0.12477456656605275 - sys_corr_4: 0.2990583911456929 - sys_corr_5: -0.2470346698834696 - sys_corr_6: -0.3700600797043043 - sys_corr_7: 0.7531431717298209 - sys_corr_8: -0.04223931399245429 - sys_corr_9: 0.1371971130066231 - sys_corr_10: 0.051245008464293945 - sys_corr_11: -0.03683431175751741 - sys_corr_12: 0.059475816300766295 - sys_corr_13: 0.1642122107605053 - sys_corr_14: 0.005626317963480155 - sys_corr_15: 0.14988122184898237 - sys_corr_16: -0.4003126761959416 - sys_corr_17: -0.8420927175202827 - sys_corr_18: -0.43628867841145047 - sys_corr_19: 0.03590177446568252 - sys_corr_20: 0.12685717686608483 - sys_corr_21: 13.849144204168123 - sys_corr_22: -0.7806083967775885 - sys_corr_23: 0.011581050126402247 - sys_corr_24: 0.6179383606688502 - sys_corr_25: 0.5014764801040614 - sys_corr_26: -0.025472305630988738 - sys_corr_27: 0.041030923500010766 - sys_corr_28: 0.3260498029402512 - sys_corr_29: 0.08077100472413296 - sys_corr_30: 0.4611880391118003 - sys_corr_31: 0.494711079266706 - sys_corr_32: -0.1691193148183409 - sys_corr_33: 0.15492633000031986 +- sys_corr_1: -3.03635289e-01 + sys_corr_2: 4.64876092e-01 + sys_corr_3: -1.24774567e-01 + sys_corr_4: 2.99058391e-01 + sys_corr_5: -2.47034670e-01 + sys_corr_6: -3.70060080e-01 + sys_corr_7: 7.53143172e-01 + sys_corr_8: -4.22393140e-02 + sys_corr_9: 1.37197113e-01 + sys_corr_10: 5.12450085e-02 + sys_corr_11: -3.68343118e-02 + sys_corr_12: 5.94758163e-02 + sys_corr_13: 1.64212211e-01 + sys_corr_14: 5.62631796e-03 + sys_corr_15: 1.49881222e-01 + sys_corr_16: -4.00312676e-01 + sys_corr_17: -8.42092718e-01 + sys_corr_18: -4.36288678e-01 + sys_corr_19: 3.59017745e-02 + sys_corr_20: 1.26857177e-01 + sys_corr_21: 1.38491442e+01 + sys_corr_22: -7.80608397e-01 + sys_corr_23: 1.15810501e-02 + sys_corr_24: 6.17938361e-01 + sys_corr_25: 5.01476480e-01 + sys_corr_26: -2.54723056e-02 + sys_corr_27: 4.10309235e-02 + sys_corr_28: 3.26049803e-01 + sys_corr_29: 8.07710047e-02 + sys_corr_30: 4.61188039e-01 + sys_corr_31: 4.94711079e-01 + sys_corr_32: -1.69119315e-01 + sys_corr_33: 1.54926330e-01 stat: 32.0 sys_beam: 10.0 sys_luminosity: 14.0 -- sys_corr_1: -0.10547439465572588 - sys_corr_2: 0.18904847960759424 - sys_corr_3: -0.06667300003302946 - sys_corr_4: 0.06995541406089893 - sys_corr_5: -0.07973775749772975 - sys_corr_6: -0.08186155470482534 - sys_corr_7: 0.3604189154263184 - sys_corr_8: -0.00793745841794225 - sys_corr_9: 0.010425630003556688 - sys_corr_10: 0.008489985408124125 - sys_corr_11: 0.014469848807811856 - sys_corr_12: -0.028723535555937235 - sys_corr_13: -0.010975318861684086 - sys_corr_14: 0.009030114418278641 - sys_corr_15: 0.07014820568014873 - sys_corr_16: -0.17204888458433032 - sys_corr_17: -0.3004615413738437 - sys_corr_18: -0.07927931968931957 - sys_corr_19: 0.14502031603626284 - sys_corr_20: -7.961504650895671 - sys_corr_21: 0.20984559058474292 - sys_corr_22: -0.21609606172248594 - sys_corr_23: 0.06734604526810684 - sys_corr_24: 0.19660344960008216 - sys_corr_25: 0.1817441829283297 - sys_corr_26: -0.02387752429915648 - sys_corr_27: -0.021898473105198275 - sys_corr_28: 0.12441629601170437 - sys_corr_29: 0.030633057336847454 - sys_corr_30: 0.17597808154973107 - sys_corr_31: 0.1928278224849192 - sys_corr_32: -0.055130587280906834 - sys_corr_33: 0.07793893164754231 +- sys_corr_1: -1.05474395e-01 + sys_corr_2: 1.89048480e-01 + sys_corr_3: -6.66730000e-02 + sys_corr_4: 6.99554141e-02 + sys_corr_5: -7.97377575e-02 + sys_corr_6: -8.18615547e-02 + sys_corr_7: 3.60418915e-01 + sys_corr_8: -7.93745842e-03 + sys_corr_9: 1.04256300e-02 + sys_corr_10: 8.48998541e-03 + sys_corr_11: 1.44698488e-02 + sys_corr_12: -2.87235356e-02 + sys_corr_13: -1.09753189e-02 + sys_corr_14: 9.03011442e-03 + sys_corr_15: 7.01482057e-02 + sys_corr_16: -1.72048885e-01 + sys_corr_17: -3.00461541e-01 + sys_corr_18: -7.92793197e-02 + sys_corr_19: 1.45020316e-01 + sys_corr_20: -7.96150465e+00 + sys_corr_21: 2.09845591e-01 + sys_corr_22: -2.16096062e-01 + sys_corr_23: 6.73460453e-02 + sys_corr_24: 1.96603450e-01 + sys_corr_25: 1.81744183e-01 + sys_corr_26: -2.38775243e-02 + sys_corr_27: -2.18984731e-02 + sys_corr_28: 1.24416296e-01 + sys_corr_29: 3.06330573e-02 + sys_corr_30: 1.75978082e-01 + sys_corr_31: 1.92827822e-01 + sys_corr_32: -5.51305873e-02 + sys_corr_33: 7.79389316e-02 stat: 20.0 sys_beam: 4.0 sys_luminosity: 6.0 -- sys_corr_1: -0.02431429482113436 - sys_corr_2: 0.09692113929867942 - sys_corr_3: -0.03333161308882767 - sys_corr_4: 0.06107345051605339 - sys_corr_5: -0.0635234920866984 - sys_corr_6: -0.06298347307032187 - sys_corr_7: 0.18466559329976315 - sys_corr_8: 0.018547587471302415 - sys_corr_9: -0.02871769259809767 - sys_corr_10: 0.05370278836507606 - sys_corr_11: -0.05287405830178798 - sys_corr_12: -0.02245687540262259 - sys_corr_13: -0.03088389927423268 - sys_corr_14: 0.061858343774689926 - sys_corr_15: 0.009215479111591185 - sys_corr_16: -0.13719520827944265 - sys_corr_17: -0.11723684260544923 - sys_corr_18: -0.03585346561818685 - sys_corr_19: -5.9821385872786745 - sys_corr_20: -0.19143727469509828 - sys_corr_21: 0.08356906426353942 - sys_corr_22: -0.1183224539940978 - sys_corr_23: 0.025647167839376116 - sys_corr_24: 0.11379847822740553 - sys_corr_25: 0.10881194615859863 - sys_corr_26: -0.011078459290351764 - sys_corr_27: -0.012411815875944492 - sys_corr_28: 0.07756686666277557 - sys_corr_29: 0.012305765288642322 - sys_corr_30: 0.11931735302945229 - sys_corr_31: 0.0805741554695368 - sys_corr_32: -0.026583928354131748 - sys_corr_33: 0.007594828848036096 +- sys_corr_1: -2.43142948e-02 + sys_corr_2: 9.69211393e-02 + sys_corr_3: -3.33316131e-02 + sys_corr_4: 6.10734505e-02 + sys_corr_5: -6.35234921e-02 + sys_corr_6: -6.29834731e-02 + sys_corr_7: 1.84665593e-01 + sys_corr_8: 1.85475875e-02 + sys_corr_9: -2.87176926e-02 + sys_corr_10: 5.37027884e-02 + sys_corr_11: -5.28740583e-02 + sys_corr_12: -2.24568754e-02 + sys_corr_13: -3.08838993e-02 + sys_corr_14: 6.18583438e-02 + sys_corr_15: 9.21547911e-03 + sys_corr_16: -1.37195208e-01 + sys_corr_17: -1.17236843e-01 + sys_corr_18: -3.58534656e-02 + sys_corr_19: -5.98213859e+00 + sys_corr_20: -1.91437275e-01 + sys_corr_21: 8.35690643e-02 + sys_corr_22: -1.18322454e-01 + sys_corr_23: 2.56471678e-02 + sys_corr_24: 1.13798478e-01 + sys_corr_25: 1.08811946e-01 + sys_corr_26: -1.10784593e-02 + sys_corr_27: -1.24118159e-02 + sys_corr_28: 7.75668667e-02 + sys_corr_29: 1.23057653e-02 + sys_corr_30: 1.19317353e-01 + sys_corr_31: 8.05741555e-02 + sys_corr_32: -2.65839284e-02 + sys_corr_33: 7.59482885e-03 stat: 13.0 sys_beam: 1.0 sys_luminosity: 2.0 -- sys_corr_1: -2989.0584801198097 - sys_corr_2: 1741.235273419759 - sys_corr_3: 250.25092532668617 - sys_corr_4: -192.3129135381235 - sys_corr_5: 109.18523811879507 - sys_corr_6: 102.5660890278907 - sys_corr_7: -110.44616534215558 - sys_corr_8: 90.69732310440682 - sys_corr_9: -130.2139122911393 - sys_corr_10: 344.3802792048472 - sys_corr_11: 52.223392734681866 - sys_corr_12: -53.06781238153589 - sys_corr_13: 1.4345565335488928 - sys_corr_14: 6.801894197502721 - sys_corr_15: -2.4411069949309856 - sys_corr_16: 1.5246755785071902 - sys_corr_17: 0.4789441759397834 - sys_corr_18: -0.03726763257395264 - sys_corr_19: 5.144752523465234e-05 - sys_corr_20: -6.207631613456992e-05 - sys_corr_21: 0.0004978535045622172 - sys_corr_22: -0.0013325438576271464 - sys_corr_23: -0.03153912505699979 - sys_corr_24: 0.0010900115764458024 - sys_corr_25: 0.0005255700735465567 - sys_corr_26: 0.000882125985270972 - sys_corr_27: 0.019560124807931616 - sys_corr_28: 0.02273515254318484 - sys_corr_29: -0.07187191336322789 - sys_corr_30: 0.007576816752288809 - sys_corr_31: -0.0011467786332942042 - sys_corr_32: -0.059708271742577396 - sys_corr_33: -0.006654182936852872 +- sys_corr_1: -2.98905848e+03 + sys_corr_2: 1.74123527e+03 + sys_corr_3: 2.50250925e+02 + sys_corr_4: -1.92312914e+02 + sys_corr_5: 1.09185238e+02 + sys_corr_6: 1.02566089e+02 + sys_corr_7: -1.10446165e+02 + sys_corr_8: 9.06973231e+01 + sys_corr_9: -1.30213912e+02 + sys_corr_10: 3.44380279e+02 + sys_corr_11: 5.22233927e+01 + sys_corr_12: -5.30678124e+01 + sys_corr_13: 1.43455653e+00 + sys_corr_14: 6.80189420e+00 + sys_corr_15: -2.44110699e+00 + sys_corr_16: 1.52467558e+00 + sys_corr_17: 4.78944176e-01 + sys_corr_18: -3.72676326e-02 + sys_corr_19: 5.14475252e-05 + sys_corr_20: -6.20763161e-05 + sys_corr_21: 4.97853505e-04 + sys_corr_22: -1.33254386e-03 + sys_corr_23: -3.15391251e-02 + sys_corr_24: 1.09001158e-03 + sys_corr_25: 5.25570074e-04 + sys_corr_26: 8.82125985e-04 + sys_corr_27: 1.95601248e-02 + sys_corr_28: 2.27351525e-02 + sys_corr_29: -7.18719134e-02 + sys_corr_30: 7.57681675e-03 + sys_corr_31: -1.14677863e-03 + sys_corr_32: -5.97082717e-02 + sys_corr_33: -6.65418294e-03 stat: 1200.0 sys_beam: 2000.0 sys_luminosity: 3300.0 -- sys_corr_1: 1771.2203328673806 - sys_corr_2: 2177.614555246184 - sys_corr_3: -1184.9827692072565 - sys_corr_4: -461.54789233775153 - sys_corr_5: 133.76585875962257 - sys_corr_6: 22.713673281762514 - sys_corr_7: -20.89766517339527 - sys_corr_8: 7.501098488921535 - sys_corr_9: 13.044557570048697 - sys_corr_10: 223.36135844801788 - sys_corr_11: -195.90794289522867 - sys_corr_12: 34.82826694482505 - sys_corr_13: -63.49481139806836 - sys_corr_14: -28.149393343309068 - sys_corr_15: -11.796227250772441 - sys_corr_16: 6.619959021198546 - sys_corr_17: 0.46608445292079786 - sys_corr_18: -0.024527776226352684 - sys_corr_19: 0.00015326127967473942 - sys_corr_20: -6.435082313992516e-05 - sys_corr_21: 0.0004990479802600205 - sys_corr_22: -0.0035615543708970338 - sys_corr_23: 0.009260786790764008 - sys_corr_24: 0.0037262370005415046 - sys_corr_25: 0.007849551180115894 - sys_corr_26: 0.03652881697625291 - sys_corr_27: 0.011769594845575583 - sys_corr_28: -0.004908830761473975 - sys_corr_29: -0.02144099412836221 - sys_corr_30: 0.0114940756806874 - sys_corr_31: -0.01316935152187323 - sys_corr_32: -0.0605949830649322 - sys_corr_33: 0.027723060471524077 +- sys_corr_1: 1.77122033e+03 + sys_corr_2: 2.17761456e+03 + sys_corr_3: -1.18498277e+03 + sys_corr_4: -4.61547892e+02 + sys_corr_5: 1.33765859e+02 + sys_corr_6: 2.27136733e+01 + sys_corr_7: -2.08976652e+01 + sys_corr_8: 7.50109849e+00 + sys_corr_9: 1.30445576e+01 + sys_corr_10: 2.23361358e+02 + sys_corr_11: -1.95907943e+02 + sys_corr_12: 3.48282669e+01 + sys_corr_13: -6.34948114e+01 + sys_corr_14: -2.81493933e+01 + sys_corr_15: -1.17962273e+01 + sys_corr_16: 6.61995902e+00 + sys_corr_17: 4.66084453e-01 + sys_corr_18: -2.45277762e-02 + sys_corr_19: 1.53261280e-04 + sys_corr_20: -6.43508231e-05 + sys_corr_21: 4.99047980e-04 + sys_corr_22: -3.56155437e-03 + sys_corr_23: 9.26078679e-03 + sys_corr_24: 3.72623700e-03 + sys_corr_25: 7.84955118e-03 + sys_corr_26: 3.65288170e-02 + sys_corr_27: 1.17695948e-02 + sys_corr_28: -4.90883076e-03 + sys_corr_29: -2.14409941e-02 + sys_corr_30: 1.14940757e-02 + sys_corr_31: -1.31693515e-02 + sys_corr_32: -6.05949831e-02 + sys_corr_33: 2.77230605e-02 stat: 900.0 sys_beam: 1900.0 sys_luminosity: 3100.0 -- sys_corr_1: 457.6423183868378 - sys_corr_2: 810.2620334429141 - sys_corr_3: 11.552966679580127 - sys_corr_4: 1818.5878043088792 - sys_corr_5: 351.09917216983143 - sys_corr_6: 109.57413100162573 - sys_corr_7: -59.48870207152214 - sys_corr_8: 39.958569939783814 - sys_corr_9: -30.92842563874906 - sys_corr_10: 56.42192277026579 - sys_corr_11: 209.8423901683495 - sys_corr_12: 197.11760548336903 - sys_corr_13: -87.66815367247125 - sys_corr_14: -34.955026589442184 - sys_corr_15: -13.640980398486377 - sys_corr_16: 10.40630935059273 - sys_corr_17: 0.21027826142284176 - sys_corr_18: 0.09349020488842748 - sys_corr_19: -0.00015126049160894448 - sys_corr_20: -0.00015695497799352875 - sys_corr_21: 0.00044888716312601235 - sys_corr_22: 0.0015404682822134533 - sys_corr_23: 0.006142634454438563 - sys_corr_24: 0.0025208912539652468 - sys_corr_25: 0.006458823244358853 - sys_corr_26: 0.005292251395075366 - sys_corr_27: 0.0016554912472323481 - sys_corr_28: 0.0038917464995262257 - sys_corr_29: 0.011598834517018252 - sys_corr_30: -0.0183566888399841 - sys_corr_31: 0.0211190360513657 - sys_corr_32: -0.00457405589417182 - sys_corr_33: 0.0024471355485791864 +- sys_corr_1: 4.57642318e+02 + sys_corr_2: 8.10262033e+02 + sys_corr_3: 1.15529667e+01 + sys_corr_4: 1.81858780e+03 + sys_corr_5: 3.51099172e+02 + sys_corr_6: 1.09574131e+02 + sys_corr_7: -5.94887021e+01 + sys_corr_8: 3.99585699e+01 + sys_corr_9: -3.09284256e+01 + sys_corr_10: 5.64219228e+01 + sys_corr_11: 2.09842390e+02 + sys_corr_12: 1.97117605e+02 + sys_corr_13: -8.76681537e+01 + sys_corr_14: -3.49550266e+01 + sys_corr_15: -1.36409804e+01 + sys_corr_16: 1.04063094e+01 + sys_corr_17: 2.10278261e-01 + sys_corr_18: 9.34902049e-02 + sys_corr_19: -1.51260492e-04 + sys_corr_20: -1.56954978e-04 + sys_corr_21: 4.48887163e-04 + sys_corr_22: 1.54046828e-03 + sys_corr_23: 6.14263445e-03 + sys_corr_24: 2.52089125e-03 + sys_corr_25: 6.45882324e-03 + sys_corr_26: 5.29225140e-03 + sys_corr_27: 1.65549125e-03 + sys_corr_28: 3.89174650e-03 + sys_corr_29: 1.15988345e-02 + sys_corr_30: -1.83566888e-02 + sys_corr_31: 2.11190361e-02 + sys_corr_32: -4.57405589e-03 + sys_corr_33: 2.44713555e-03 stat: 800.0 sys_beam: 1600.0 sys_luminosity: 2600.0 -- sys_corr_1: -439.43669157389195 - sys_corr_2: 47.62649345624625 - sys_corr_3: -395.1470343649117 - sys_corr_4: 320.166575576593 - sys_corr_5: -1354.648278639396 - sys_corr_6: 332.29871526171416 - sys_corr_7: -117.78910742798519 - sys_corr_8: 83.24115448245679 - sys_corr_9: -74.73780927882216 - sys_corr_10: -24.11626008279868 - sys_corr_11: -167.96517429341804 - sys_corr_12: 300.48886023963513 - sys_corr_13: 106.78707589635839 - sys_corr_14: 58.71616154917696 - sys_corr_15: -12.516598173843375 - sys_corr_16: 0.7086159625744609 - sys_corr_17: 0.3062737334365825 - sys_corr_18: 0.1196466526093551 - sys_corr_19: 6.937506320301623e-05 - sys_corr_20: -0.00029798686433557856 - sys_corr_21: -0.0004997181998818448 - sys_corr_22: 0.0026109894088647517 - sys_corr_23: 0.003638286984321585 - sys_corr_24: 0.0013705120036662285 - sys_corr_25: -0.01199940979315695 - sys_corr_26: 0.05999996447726511 - sys_corr_27: -0.01466067985036193 - sys_corr_28: 0.0026763072096605274 - sys_corr_29: 0.014886322049513578 - sys_corr_30: -0.006579970173738046 - sys_corr_31: -0.0343037470997968 - sys_corr_32: 0.01391503242383377 - sys_corr_33: 0.019184615810700814 +- sys_corr_1: -4.39436692e+02 + sys_corr_2: 4.76264935e+01 + sys_corr_3: -3.95147034e+02 + sys_corr_4: 3.20166576e+02 + sys_corr_5: -1.35464828e+03 + sys_corr_6: 3.32298715e+02 + sys_corr_7: -1.17789107e+02 + sys_corr_8: 8.32411545e+01 + sys_corr_9: -7.47378093e+01 + sys_corr_10: -2.41162601e+01 + sys_corr_11: -1.67965174e+02 + sys_corr_12: 3.00488860e+02 + sys_corr_13: 1.06787076e+02 + sys_corr_14: 5.87161615e+01 + sys_corr_15: -1.25165982e+01 + sys_corr_16: 7.08615963e-01 + sys_corr_17: 3.06273733e-01 + sys_corr_18: 1.19646653e-01 + sys_corr_19: 6.93750632e-05 + sys_corr_20: -2.97986864e-04 + sys_corr_21: -4.99718200e-04 + sys_corr_22: 2.61098941e-03 + sys_corr_23: 3.63828698e-03 + sys_corr_24: 1.37051200e-03 + sys_corr_25: -1.19994098e-02 + sys_corr_26: 5.99999645e-02 + sys_corr_27: -1.46606799e-02 + sys_corr_28: 2.67630721e-03 + sys_corr_29: 1.48863220e-02 + sys_corr_30: -6.57997017e-03 + sys_corr_31: -3.43037471e-02 + sys_corr_32: 1.39150324e-02 + sys_corr_33: 1.91846158e-02 stat: 700.0 sys_beam: 1300.0 sys_luminosity: 2100.0 -- sys_corr_1: 248.01436990372713 - sys_corr_2: 404.4526266706796 - sys_corr_3: 32.51636827425098 - sys_corr_4: 167.3874232397563 - sys_corr_5: -256.582388563332 - sys_corr_6: -1079.5385538194814 - sys_corr_7: -167.6189474192057 - sys_corr_8: 61.30136217663764 - sys_corr_9: -44.28445403690839 - sys_corr_10: 82.48578437701785 - sys_corr_11: 94.74052086833053 - sys_corr_12: -9.929809238614075 - sys_corr_13: 371.48465740348615 - sys_corr_14: -129.98002394333437 - sys_corr_15: -1.8103718373829414 - sys_corr_16: 0.7471091210113149 - sys_corr_17: 0.42140253280857687 - sys_corr_18: 0.1864689192428194 - sys_corr_19: -0.0002686626754803754 - sys_corr_20: -0.0002585137555145964 - sys_corr_21: -0.0022822326953976907 - sys_corr_22: 0.0048719007441241895 - sys_corr_23: -0.006226501355924812 - sys_corr_24: -0.010383149004565943 - sys_corr_25: -0.01807841434326925 - sys_corr_26: -0.020147178406987584 - sys_corr_27: -0.020796391752394415 - sys_corr_28: -0.03580261145078157 - sys_corr_29: 0.050792313056989495 - sys_corr_30: -0.022454707210208622 - sys_corr_31: -0.03034541572967167 - sys_corr_32: 0.06074075639357655 - sys_corr_33: -0.033129939541903256 +- sys_corr_1: 2.48014370e+02 + sys_corr_2: 4.04452627e+02 + sys_corr_3: 3.25163683e+01 + sys_corr_4: 1.67387423e+02 + sys_corr_5: -2.56582389e+02 + sys_corr_6: -1.07953855e+03 + sys_corr_7: -1.67618947e+02 + sys_corr_8: 6.13013622e+01 + sys_corr_9: -4.42844540e+01 + sys_corr_10: 8.24857844e+01 + sys_corr_11: 9.47405209e+01 + sys_corr_12: -9.92980924e+00 + sys_corr_13: 3.71484657e+02 + sys_corr_14: -1.29980024e+02 + sys_corr_15: -1.81037184e+00 + sys_corr_16: 7.47109121e-01 + sys_corr_17: 4.21402533e-01 + sys_corr_18: 1.86468919e-01 + sys_corr_19: -2.68662675e-04 + sys_corr_20: -2.58513756e-04 + sys_corr_21: -2.28223270e-03 + sys_corr_22: 4.87190074e-03 + sys_corr_23: -6.22650136e-03 + sys_corr_24: -1.03831490e-02 + sys_corr_25: -1.80784143e-02 + sys_corr_26: -2.01471784e-02 + sys_corr_27: -2.07963918e-02 + sys_corr_28: -3.58026115e-02 + sys_corr_29: 5.07923131e-02 + sys_corr_30: -2.24547072e-02 + sys_corr_31: -3.03454157e-02 + sys_corr_32: 6.07407564e-02 + sys_corr_33: -3.31299395e-02 stat: 600.0 sys_beam: 1000.0 sys_luminosity: 1600.0 -- sys_corr_1: 294.94564611768726 - sys_corr_2: 295.5199869993111 - sys_corr_3: 102.59708835094234 - sys_corr_4: 54.261773190593956 - sys_corr_5: -96.47469105130197 - sys_corr_6: -71.2827550173046 - sys_corr_7: 79.3803816791339 - sys_corr_8: -135.3508088116261 - sys_corr_9: 553.9962584105317 - sys_corr_10: 205.37799057575677 - sys_corr_11: 156.08229018842874 - sys_corr_12: -49.518825090189395 - sys_corr_13: 117.6773581820354 - sys_corr_14: 430.5461136825491 - sys_corr_15: -89.82562355331439 - sys_corr_16: 1.5321781564615862 - sys_corr_17: 0.30703527338299896 - sys_corr_18: 0.11402215445245244 - sys_corr_19: 0.00027393725893373717 - sys_corr_20: -0.00010407658346802549 - sys_corr_21: -0.00018597975504394375 - sys_corr_22: 0.004813306838652591 - sys_corr_23: 0.009659092259324473 - sys_corr_24: -0.014744312027180382 - sys_corr_25: -0.05971694635338373 - sys_corr_26: -0.056673571617402926 - sys_corr_27: -0.02756891290470931 - sys_corr_28: -0.06756965202418326 - sys_corr_29: 0.012434214728920596 - sys_corr_30: -0.04258458900410053 - sys_corr_31: -0.12867118539479772 - sys_corr_32: 0.040536033869043114 - sys_corr_33: -0.038865165003563025 +- sys_corr_1: 2.94945646e+02 + sys_corr_2: 2.95519987e+02 + sys_corr_3: 1.02597088e+02 + sys_corr_4: 5.42617732e+01 + sys_corr_5: -9.64746911e+01 + sys_corr_6: -7.12827550e+01 + sys_corr_7: 7.93803817e+01 + sys_corr_8: -1.35350809e+02 + sys_corr_9: 5.53996258e+02 + sys_corr_10: 2.05377991e+02 + sys_corr_11: 1.56082290e+02 + sys_corr_12: -4.95188251e+01 + sys_corr_13: 1.17677358e+02 + sys_corr_14: 4.30546114e+02 + sys_corr_15: -8.98256236e+01 + sys_corr_16: 1.53217816e+00 + sys_corr_17: 3.07035273e-01 + sys_corr_18: 1.14022154e-01 + sys_corr_19: 2.73937259e-04 + sys_corr_20: -1.04076583e-04 + sys_corr_21: -1.85979755e-04 + sys_corr_22: 4.81330684e-03 + sys_corr_23: 9.65909226e-03 + sys_corr_24: -1.47443120e-02 + sys_corr_25: -5.97169464e-02 + sys_corr_26: -5.66735716e-02 + sys_corr_27: -2.75689129e-02 + sys_corr_28: -6.75696520e-02 + sys_corr_29: 1.24342147e-02 + sys_corr_30: -4.25845890e-02 + sys_corr_31: -1.28671185e-01 + sys_corr_32: 4.05360339e-02 + sys_corr_33: -3.88651650e-02 stat: 500.0 sys_beam: 700.0 sys_luminosity: 1100.0 -- sys_corr_1: 52.15832457245852 - sys_corr_2: 145.1742117800018 - sys_corr_3: -25.06909095214543 - sys_corr_4: 72.41121212245444 - sys_corr_5: -72.03684627810904 - sys_corr_6: -74.37215030877009 - sys_corr_7: 253.37563413238982 - sys_corr_8: -351.03140380804916 - sys_corr_9: -123.72085839374321 - sys_corr_10: 93.59255615563374 - sys_corr_11: 29.391753093193625 - sys_corr_12: 33.203338971790274 - sys_corr_13: 20.104701755271293 - sys_corr_14: 96.92472202516308 - sys_corr_15: 475.75956048926946 - sys_corr_16: -3.262631985572548 - sys_corr_17: 0.28640550621547634 - sys_corr_18: 0.16664531276688135 - sys_corr_19: 0.00023929346533521197 - sys_corr_20: 0.0011273440207940249 - sys_corr_21: -0.003928978181555879 - sys_corr_22: 0.009329597580323909 - sys_corr_23: -0.0031750924114659074 - sys_corr_24: -0.031486952272748406 - sys_corr_25: -0.0492986568962272 - sys_corr_26: -0.04485024408881918 - sys_corr_27: -0.011980410173908633 - sys_corr_28: -0.1547081675185396 - sys_corr_29: 0.026942355019256594 - sys_corr_30: -0.08426679128534494 - sys_corr_31: -0.13948037884475523 - sys_corr_32: 0.07062926208548446 - sys_corr_33: 0.034435813748631756 +- sys_corr_1: 5.21583246e+01 + sys_corr_2: 1.45174212e+02 + sys_corr_3: -2.50690910e+01 + sys_corr_4: 7.24112121e+01 + sys_corr_5: -7.20368463e+01 + sys_corr_6: -7.43721503e+01 + sys_corr_7: 2.53375634e+02 + sys_corr_8: -3.51031404e+02 + sys_corr_9: -1.23720858e+02 + sys_corr_10: 9.35925562e+01 + sys_corr_11: 2.93917531e+01 + sys_corr_12: 3.32033390e+01 + sys_corr_13: 2.01047018e+01 + sys_corr_14: 9.69247220e+01 + sys_corr_15: 4.75759560e+02 + sys_corr_16: -3.26263199e+00 + sys_corr_17: 2.86405506e-01 + sys_corr_18: 1.66645313e-01 + sys_corr_19: 2.39293465e-04 + sys_corr_20: 1.12734402e-03 + sys_corr_21: -3.92897818e-03 + sys_corr_22: 9.32959758e-03 + sys_corr_23: -3.17509241e-03 + sys_corr_24: -3.14869523e-02 + sys_corr_25: -4.92986569e-02 + sys_corr_26: -4.48502441e-02 + sys_corr_27: -1.19804102e-02 + sys_corr_28: -1.54708168e-01 + sys_corr_29: 2.69423550e-02 + sys_corr_30: -8.42667913e-02 + sys_corr_31: -1.39480379e-01 + sys_corr_32: 7.06292621e-02 + sys_corr_33: 3.44358137e-02 stat: 500.0 sys_beam: 600.0 sys_luminosity: 1000.0 -- sys_corr_1: 44.729111992751754 - sys_corr_2: 70.35727027289343 - sys_corr_3: 8.053619187950396 - sys_corr_4: 24.099007302993012 - sys_corr_5: -11.349474053951214 - sys_corr_6: -19.41148834439992 - sys_corr_7: 52.22811490580611 - sys_corr_8: 9.673620787603435 - sys_corr_9: -8.719120366096995 - sys_corr_10: 22.566591334219922 - sys_corr_11: 11.13933997220724 - sys_corr_12: 18.12566959416703 - sys_corr_13: -15.01157291554252 - sys_corr_14: -2.8255735370027155 - sys_corr_15: -12.163978833083902 - sys_corr_16: -384.2619544657681 - sys_corr_17: -0.1439278870581393 - sys_corr_18: -0.019134527384502834 - sys_corr_19: 0.0018253111370977674 - sys_corr_20: 0.002974835675340927 - sys_corr_21: -0.011593881070074764 - sys_corr_22: 0.04869941879567346 - sys_corr_23: -0.0150704312718522 - sys_corr_24: -0.08632193188212087 - sys_corr_25: -0.11472784064263443 - sys_corr_26: -0.016008049227861393 - sys_corr_27: 0.0031548240906940734 - sys_corr_28: -0.03944091393488826 - sys_corr_29: 0.0033315825309693527 - sys_corr_30: -0.16546794772039938 - sys_corr_31: -0.19603288039270877 - sys_corr_32: 0.08161126080522786 - sys_corr_33: -0.07681146337355649 +- sys_corr_1: 4.47291120e+01 + sys_corr_2: 7.03572703e+01 + sys_corr_3: 8.05361919e+00 + sys_corr_4: 2.40990073e+01 + sys_corr_5: -1.13494741e+01 + sys_corr_6: -1.94114883e+01 + sys_corr_7: 5.22281149e+01 + sys_corr_8: 9.67362079e+00 + sys_corr_9: -8.71912037e+00 + sys_corr_10: 2.25665913e+01 + sys_corr_11: 1.11393400e+01 + sys_corr_12: 1.81256696e+01 + sys_corr_13: -1.50115729e+01 + sys_corr_14: -2.82557354e+00 + sys_corr_15: -1.21639788e+01 + sys_corr_16: -3.84261954e+02 + sys_corr_17: -1.43927887e-01 + sys_corr_18: -1.91345274e-02 + sys_corr_19: 1.82531114e-03 + sys_corr_20: 2.97483568e-03 + sys_corr_21: -1.15938811e-02 + sys_corr_22: 4.86994188e-02 + sys_corr_23: -1.50704313e-02 + sys_corr_24: -8.63219319e-02 + sys_corr_25: -1.14727841e-01 + sys_corr_26: -1.60080492e-02 + sys_corr_27: 3.15482409e-03 + sys_corr_28: -3.94409139e-02 + sys_corr_29: 3.33158253e-03 + sys_corr_30: -1.65467948e-01 + sys_corr_31: -1.96032880e-01 + sys_corr_32: 8.16112608e-02 + sys_corr_33: -7.68114634e-02 stat: 400.0 sys_beam: 200.0 sys_luminosity: 200.0 -- sys_corr_1: -169.72710271363786 - sys_corr_2: 1695.620741810498 - sys_corr_3: 922.6299247770106 - sys_corr_4: -114.7016070504826 - sys_corr_5: -23.638141751803644 - sys_corr_6: -104.62145709849894 - sys_corr_7: 176.45586570929387 - sys_corr_8: -161.52505503572834 - sys_corr_9: 246.03182897670524 - sys_corr_10: -699.2073391140215 - sys_corr_11: -106.95222642369221 - sys_corr_12: 108.55535781877316 - sys_corr_13: -3.192076522214065 - sys_corr_14: -16.431575160422422 - sys_corr_15: 1.7020942175967777 - sys_corr_16: 0.13604655775887814 - sys_corr_17: 0.6432655935964461 - sys_corr_18: 0.0038460190762376113 - sys_corr_19: -0.00011979067517468498 - sys_corr_20: 0.00019812214804628144 - sys_corr_21: -0.0014985622213203997 - sys_corr_22: 0.002948478342615188 - sys_corr_23: -0.046091597246848276 - sys_corr_24: 0.009436141795381903 - sys_corr_25: 0.010857599533762701 - sys_corr_26: 0.07395233429917779 - sys_corr_27: 0.019120017221011233 - sys_corr_28: 0.025051570048494114 - sys_corr_29: -0.10238453445357977 - sys_corr_30: 0.015082546341676818 - sys_corr_31: -0.012392222013045837 - sys_corr_32: -0.055371843980206954 - sys_corr_33: 0.015415679646107011 +- sys_corr_1: -1.69727103e+02 + sys_corr_2: 1.69562074e+03 + sys_corr_3: 9.22629925e+02 + sys_corr_4: -1.14701607e+02 + sys_corr_5: -2.36381418e+01 + sys_corr_6: -1.04621457e+02 + sys_corr_7: 1.76455866e+02 + sys_corr_8: -1.61525055e+02 + sys_corr_9: 2.46031829e+02 + sys_corr_10: -6.99207339e+02 + sys_corr_11: -1.06952226e+02 + sys_corr_12: 1.08555358e+02 + sys_corr_13: -3.19207652e+00 + sys_corr_14: -1.64315752e+01 + sys_corr_15: 1.70209422e+00 + sys_corr_16: 1.36046558e-01 + sys_corr_17: 6.43265594e-01 + sys_corr_18: 3.84601908e-03 + sys_corr_19: -1.19790675e-04 + sys_corr_20: 1.98122148e-04 + sys_corr_21: -1.49856222e-03 + sys_corr_22: 2.94847834e-03 + sys_corr_23: -4.60915972e-02 + sys_corr_24: 9.43614180e-03 + sys_corr_25: 1.08575995e-02 + sys_corr_26: 7.39523343e-02 + sys_corr_27: 1.91200172e-02 + sys_corr_28: 2.50515700e-02 + sys_corr_29: -1.02384534e-01 + sys_corr_30: 1.50825463e-02 + sys_corr_31: -1.23922220e-02 + sys_corr_32: -5.53718440e-02 + sys_corr_33: 1.54156796e-02 stat: 900.0 sys_beam: 1000.0 sys_luminosity: 1900.0 -- sys_corr_1: -785.9388900903019 - sys_corr_2: 64.10270691657861 - sys_corr_3: -1587.1798846605675 - sys_corr_4: -157.60566006507256 - sys_corr_5: 131.8315557244829 - sys_corr_6: 150.4670215919507 - sys_corr_7: -50.44303927175175 - sys_corr_8: 46.43372583238341 - sys_corr_9: -63.79158166122921 - sys_corr_10: -491.8938362542042 - sys_corr_11: 363.8660147189718 - sys_corr_12: -58.21559685768121 - sys_corr_13: 122.72990650142232 - sys_corr_14: 46.989729341922235 - sys_corr_15: 18.741360467464496 - sys_corr_16: -7.225898905328291 - sys_corr_17: 0.5732509271069249 - sys_corr_18: -0.02146298439952427 - sys_corr_19: -0.0003531577701391732 - sys_corr_20: -1.7392611957609497e-05 - sys_corr_21: 0.0009468255952662956 - sys_corr_22: 0.00152517794205182 - sys_corr_23: 0.011861733684442115 - sys_corr_24: 0.0016261346994657206 - sys_corr_25: 0.004215037804217813 - sys_corr_26: -0.004927944902705688 - sys_corr_27: 0.03880160271164232 - sys_corr_28: 0.038597904464484224 - sys_corr_29: -0.01920243388053101 - sys_corr_30: -0.002069854246516468 - sys_corr_31: 0.008729177514350926 - sys_corr_32: -0.055245605081351526 - sys_corr_33: -0.04327560565425 +- sys_corr_1: -7.85938890e+02 + sys_corr_2: 6.41027069e+01 + sys_corr_3: -1.58717988e+03 + sys_corr_4: -1.57605660e+02 + sys_corr_5: 1.31831556e+02 + sys_corr_6: 1.50467022e+02 + sys_corr_7: -5.04430393e+01 + sys_corr_8: 4.64337258e+01 + sys_corr_9: -6.37915817e+01 + sys_corr_10: -4.91893836e+02 + sys_corr_11: 3.63866015e+02 + sys_corr_12: -5.82155969e+01 + sys_corr_13: 1.22729907e+02 + sys_corr_14: 4.69897293e+01 + sys_corr_15: 1.87413605e+01 + sys_corr_16: -7.22589891e+00 + sys_corr_17: 5.73250927e-01 + sys_corr_18: -2.14629844e-02 + sys_corr_19: -3.53157770e-04 + sys_corr_20: -1.73926120e-05 + sys_corr_21: 9.46825595e-04 + sys_corr_22: 1.52517794e-03 + sys_corr_23: 1.18617337e-02 + sys_corr_24: 1.62613470e-03 + sys_corr_25: 4.21503780e-03 + sys_corr_26: -4.92794490e-03 + sys_corr_27: 3.88016027e-02 + sys_corr_28: 3.85979045e-02 + sys_corr_29: -1.92024339e-02 + sys_corr_30: -2.06985425e-03 + sys_corr_31: 8.72917751e-03 + sys_corr_32: -5.52456051e-02 + sys_corr_33: -4.32756057e-02 stat: 700.0 sys_beam: 1000.0 sys_luminosity: 1800.0 -- sys_corr_1: -487.5566420614936 - sys_corr_2: -42.850348559530325 - sys_corr_3: -399.1369918377916 - sys_corr_4: 905.4930951965185 - sys_corr_5: 173.8970051155466 - sys_corr_6: 95.96826218655993 - sys_corr_7: -39.38891179421488 - sys_corr_8: 6.935016743259113 - sys_corr_9: 13.278444859228738 - sys_corr_10: -139.3821982184661 - sys_corr_11: -449.40032665051325 - sys_corr_12: -415.4741876346124 - sys_corr_13: 175.20994554160765 - sys_corr_14: 68.06431549080844 - sys_corr_15: 22.250874055009252 - sys_corr_16: -12.83919818864458 - sys_corr_17: 0.4672442791007765 - sys_corr_18: 0.030372717441489765 - sys_corr_19: 0.00034764237885214665 - sys_corr_20: 7.736856753305078e-05 - sys_corr_21: -0.000782082645125014 - sys_corr_22: -0.005769072633441289 - sys_corr_23: 0.002413902476935196 - sys_corr_24: -0.005293925095374795 - sys_corr_25: -0.01621861591121672 - sys_corr_26: 0.06016930657782527 - sys_corr_27: 0.026168545016893724 - sys_corr_28: 0.00035332955943481476 - sys_corr_29: 0.0647039012348534 - sys_corr_30: 0.016561886732121608 - sys_corr_31: -0.0704989233685572 - sys_corr_32: -0.062402513348226475 - sys_corr_33: -0.0037129126073784627 +- sys_corr_1: -4.87556642e+02 + sys_corr_2: -4.28503486e+01 + sys_corr_3: -3.99136992e+02 + sys_corr_4: 9.05493095e+02 + sys_corr_5: 1.73897005e+02 + sys_corr_6: 9.59682622e+01 + sys_corr_7: -3.93889118e+01 + sys_corr_8: 6.93501674e+00 + sys_corr_9: 1.32784449e+01 + sys_corr_10: -1.39382198e+02 + sys_corr_11: -4.49400327e+02 + sys_corr_12: -4.15474188e+02 + sys_corr_13: 1.75209946e+02 + sys_corr_14: 6.80643155e+01 + sys_corr_15: 2.22508741e+01 + sys_corr_16: -1.28391982e+01 + sys_corr_17: 4.67244279e-01 + sys_corr_18: 3.03727174e-02 + sys_corr_19: 3.47642379e-04 + sys_corr_20: 7.73685675e-05 + sys_corr_21: -7.82082645e-04 + sys_corr_22: -5.76907263e-03 + sys_corr_23: 2.41390248e-03 + sys_corr_24: -5.29392510e-03 + sys_corr_25: -1.62186159e-02 + sys_corr_26: 6.01693066e-02 + sys_corr_27: 2.61685450e-02 + sys_corr_28: 3.53329559e-04 + sys_corr_29: 6.47039012e-02 + sys_corr_30: 1.65618867e-02 + sys_corr_31: -7.04989234e-02 + sys_corr_32: -6.24025133e-02 + sys_corr_33: -3.71291261e-03 stat: 700.0 sys_beam: 900.0 sys_luminosity: 1600.0 -- sys_corr_1: 725.5903980378135 - sys_corr_2: 674.1142052359097 - sys_corr_3: 313.41709756309024 - sys_corr_4: 158.2176567419597 - sys_corr_5: -890.7824338260235 - sys_corr_6: 117.79266613944671 - sys_corr_7: -5.098346380045623 - sys_corr_8: -7.079723382442154 - sys_corr_9: 22.141846133643362 - sys_corr_10: -0.3808583541323047 - sys_corr_11: 262.6596996926576 - sys_corr_12: -473.17486782060524 - sys_corr_13: -182.93590246367955 - sys_corr_14: -106.29544453845948 - sys_corr_15: 15.430470857099829 - sys_corr_16: 1.8629518449620301 - sys_corr_17: 0.2909265822636571 - sys_corr_18: 0.1681288787554962 - sys_corr_19: -2.3424489289203566e-05 - sys_corr_20: 0.0003056380741288857 - sys_corr_21: 0.0018100186240553968 - sys_corr_22: 0.0010914750324549903 - sys_corr_23: 0.007331286561970521 - sys_corr_24: -0.015092748776591135 - sys_corr_25: -0.0013976210598954399 - sys_corr_26: -0.04725845876992478 - sys_corr_27: 0.026023882548644694 - sys_corr_28: -0.029231585241470754 - sys_corr_29: 0.03355601867927536 - sys_corr_30: -0.01847333776859319 - sys_corr_31: 0.0014583921485359173 - sys_corr_32: 0.03769924678648697 - sys_corr_33: -0.02835194288649977 +- sys_corr_1: 7.25590398e+02 + sys_corr_2: 6.74114205e+02 + sys_corr_3: 3.13417098e+02 + sys_corr_4: 1.58217657e+02 + sys_corr_5: -8.90782434e+02 + sys_corr_6: 1.17792666e+02 + sys_corr_7: -5.09834638e+00 + sys_corr_8: -7.07972338e+00 + sys_corr_9: 2.21418461e+01 + sys_corr_10: -3.80858354e-01 + sys_corr_11: 2.62659700e+02 + sys_corr_12: -4.73174868e+02 + sys_corr_13: -1.82935902e+02 + sys_corr_14: -1.06295445e+02 + sys_corr_15: 1.54304709e+01 + sys_corr_16: 1.86295184e+00 + sys_corr_17: 2.90926582e-01 + sys_corr_18: 1.68128879e-01 + sys_corr_19: -2.34244893e-05 + sys_corr_20: 3.05638074e-04 + sys_corr_21: 1.81001862e-03 + sys_corr_22: 1.09147503e-03 + sys_corr_23: 7.33128656e-03 + sys_corr_24: -1.50927488e-02 + sys_corr_25: -1.39762106e-03 + sys_corr_26: -4.72584588e-02 + sys_corr_27: 2.60238825e-02 + sys_corr_28: -2.92315852e-02 + sys_corr_29: 3.35560187e-02 + sys_corr_30: -1.84733378e-02 + sys_corr_31: 1.45839215e-03 + sys_corr_32: 3.76992468e-02 + sys_corr_33: -2.83519429e-02 stat: 700.0 sys_beam: 800.0 sys_luminosity: 1500.0 -- sys_corr_1: -758.1798133409618 - sys_corr_2: -261.182365685253 - sys_corr_3: -527.2236305983593 - sys_corr_4: 174.8439666285955 - sys_corr_5: -177.3662841460436 - sys_corr_6: -837.8081595822224 - sys_corr_7: -138.501466103545 - sys_corr_8: 66.69263216257815 - sys_corr_9: -42.59250149666806 - sys_corr_10: -122.87358571625315 - sys_corr_11: -111.06379545992968 - sys_corr_12: 15.46693595599618 - sys_corr_13: -444.32532507380427 - sys_corr_14: 156.4122520594954 - sys_corr_15: -3.0084325433826606 - sys_corr_16: 3.83244412428771 - sys_corr_17: 0.31263630253339425 - sys_corr_18: 0.1802198625223089 - sys_corr_19: 0.0003782102293857104 - sys_corr_20: -5.3359509855555834e-05 - sys_corr_21: 0.002000780693370387 - sys_corr_22: 0.0037514166819011766 - sys_corr_23: 0.01080812786756856 - sys_corr_24: -0.0067230090374034955 - sys_corr_25: -0.0213925156504139 - sys_corr_26: 0.01685059039251904 - sys_corr_27: -0.032372343348025426 - sys_corr_28: -0.04935692375711563 - sys_corr_29: -0.01898158734504721 - sys_corr_30: -0.03767798406517066 - sys_corr_31: -0.05157280203479819 - sys_corr_32: 0.03183112541266892 - sys_corr_33: 0.036976375504542976 +- sys_corr_1: -7.58179813e+02 + sys_corr_2: -2.61182366e+02 + sys_corr_3: -5.27223631e+02 + sys_corr_4: 1.74843967e+02 + sys_corr_5: -1.77366284e+02 + sys_corr_6: -8.37808160e+02 + sys_corr_7: -1.38501466e+02 + sys_corr_8: 6.66926322e+01 + sys_corr_9: -4.25925015e+01 + sys_corr_10: -1.22873586e+02 + sys_corr_11: -1.11063795e+02 + sys_corr_12: 1.54669360e+01 + sys_corr_13: -4.44325325e+02 + sys_corr_14: 1.56412252e+02 + sys_corr_15: -3.00843254e+00 + sys_corr_16: 3.83244412e+00 + sys_corr_17: 3.12636303e-01 + sys_corr_18: 1.80219863e-01 + sys_corr_19: 3.78210229e-04 + sys_corr_20: -5.33595099e-05 + sys_corr_21: 2.00078069e-03 + sys_corr_22: 3.75141668e-03 + sys_corr_23: 1.08081279e-02 + sys_corr_24: -6.72300904e-03 + sys_corr_25: -2.13925157e-02 + sys_corr_26: 1.68505904e-02 + sys_corr_27: -3.23723433e-02 + sys_corr_28: -4.93569238e-02 + sys_corr_29: -1.89815873e-02 + sys_corr_30: -3.76779841e-02 + sys_corr_31: -5.15728020e-02 + sys_corr_32: 3.18311254e-02 + sys_corr_33: 3.69763755e-02 stat: 600.0 sys_beam: 700.0 sys_luminosity: 1400.0 -- sys_corr_1: -932.6502014909869 - sys_corr_2: -444.4005886405916 - sys_corr_3: -614.1380061286845 - sys_corr_4: 131.02286830142927 - sys_corr_5: -72.57197028127092 - sys_corr_6: -21.501091829397154 - sys_corr_7: 102.26507466489535 - sys_corr_8: -169.0826785571101 - sys_corr_9: 798.7202483880533 - sys_corr_10: 129.91093924380942 - sys_corr_11: -38.00772180443008 - sys_corr_12: 45.486278830160884 - sys_corr_13: -60.10745132286854 - sys_corr_14: -280.05517738256725 - sys_corr_15: 56.333317978158426 - sys_corr_16: -1.1671578630490325 - sys_corr_17: 0.194888480454483 - sys_corr_18: 0.12653167076835922 - sys_corr_19: -0.00027951148728316984 - sys_corr_20: 0.0002988588455627341 - sys_corr_21: -0.0023778103150700145 - sys_corr_22: 0.0013423620174323222 - sys_corr_23: -0.004404106214015386 - sys_corr_24: -0.004275478568417685 - sys_corr_25: 0.01771193560292471 - sys_corr_26: -0.024446137141605616 - sys_corr_27: -0.012195939075642767 - sys_corr_28: -0.05823941875834722 - sys_corr_29: 0.01434006881668178 - sys_corr_30: -0.008587811147067411 - sys_corr_31: 0.012902487606038597 - sys_corr_32: 0.03469714922785824 - sys_corr_33: 0.03725089162309449 +- sys_corr_1: -9.32650201e+02 + sys_corr_2: -4.44400589e+02 + sys_corr_3: -6.14138006e+02 + sys_corr_4: 1.31022868e+02 + sys_corr_5: -7.25719703e+01 + sys_corr_6: -2.15010918e+01 + sys_corr_7: 1.02265075e+02 + sys_corr_8: -1.69082679e+02 + sys_corr_9: 7.98720248e+02 + sys_corr_10: 1.29910939e+02 + sys_corr_11: -3.80077218e+01 + sys_corr_12: 4.54862788e+01 + sys_corr_13: -6.01074513e+01 + sys_corr_14: -2.80055177e+02 + sys_corr_15: 5.63333180e+01 + sys_corr_16: -1.16715786e+00 + sys_corr_17: 1.94888480e-01 + sys_corr_18: 1.26531671e-01 + sys_corr_19: -2.79511487e-04 + sys_corr_20: 2.98858846e-04 + sys_corr_21: -2.37781032e-03 + sys_corr_22: 1.34236202e-03 + sys_corr_23: -4.40410621e-03 + sys_corr_24: -4.27547857e-03 + sys_corr_25: 1.77119356e-02 + sys_corr_26: -2.44461371e-02 + sys_corr_27: -1.21959391e-02 + sys_corr_28: -5.82394188e-02 + sys_corr_29: 1.43400688e-02 + sys_corr_30: -8.58781115e-03 + sys_corr_31: 1.29024876e-02 + sys_corr_32: 3.46971492e-02 + sys_corr_33: 3.72508916e-02 stat: 600.0 sys_beam: 600.0 sys_luminosity: 1200.0 -- sys_corr_1: -396.8000721375124 - sys_corr_2: -53.51658354306625 - sys_corr_3: -331.4558511117436 - sys_corr_4: 157.70625251295743 - sys_corr_5: -125.17387665020541 - sys_corr_6: -123.01278513050946 - sys_corr_7: 599.5143389945843 - sys_corr_8: -784.3730567738521 - sys_corr_9: -297.931419058863 - sys_corr_10: 77.12695782982071 - sys_corr_11: -0.18887544665769102 - sys_corr_12: -7.916586562810996 - sys_corr_13: 2.316270009449108 - sys_corr_14: -37.18866788403798 - sys_corr_15: -207.85045385564615 - sys_corr_16: 11.296617925420305 - sys_corr_17: 0.13205229496737506 - sys_corr_18: 0.10229739733726523 - sys_corr_19: 0.000273432757767366 - sys_corr_20: 0.0005654626102175798 - sys_corr_21: -0.0017986487220349099 - sys_corr_22: 0.0047527012401154325 - sys_corr_23: 0.0007255705247030492 - sys_corr_24: -0.01550315094142333 - sys_corr_25: -0.02311414294421352 - sys_corr_26: -0.014361186547398423 - sys_corr_27: -0.0037954454033624105 - sys_corr_28: -0.1130500988979579 - sys_corr_29: 0.013517615134348267 - sys_corr_30: -0.033404505603036726 - sys_corr_31: -0.1163811640521026 - sys_corr_32: 0.0716147011514738 - sys_corr_33: -0.022700279972572655 +- sys_corr_1: -3.96800072e+02 + sys_corr_2: -5.35165835e+01 + sys_corr_3: -3.31455851e+02 + sys_corr_4: 1.57706253e+02 + sys_corr_5: -1.25173877e+02 + sys_corr_6: -1.23012785e+02 + sys_corr_7: 5.99514339e+02 + sys_corr_8: -7.84373057e+02 + sys_corr_9: -2.97931419e+02 + sys_corr_10: 7.71269578e+01 + sys_corr_11: -1.88875447e-01 + sys_corr_12: -7.91658656e+00 + sys_corr_13: 2.31627001e+00 + sys_corr_14: -3.71886679e+01 + sys_corr_15: -2.07850454e+02 + sys_corr_16: 1.12966179e+01 + sys_corr_17: 1.32052295e-01 + sys_corr_18: 1.02297397e-01 + sys_corr_19: 2.73432758e-04 + sys_corr_20: 5.65462610e-04 + sys_corr_21: -1.79864872e-03 + sys_corr_22: 4.75270124e-03 + sys_corr_23: 7.25570525e-04 + sys_corr_24: -1.55031509e-02 + sys_corr_25: -2.31141429e-02 + sys_corr_26: -1.43611865e-02 + sys_corr_27: -3.79544540e-03 + sys_corr_28: -1.13050099e-01 + sys_corr_29: 1.35176151e-02 + sys_corr_30: -3.34045056e-02 + sys_corr_31: -1.16381164e-01 + sys_corr_32: 7.16147012e-02 + sys_corr_33: -2.27002800e-02 stat: 700.0 sys_beam: 900.0 sys_luminosity: 1600.0 -- sys_corr_1: -118.04039108905685 - sys_corr_2: 44.89255154510424 - sys_corr_3: -114.07686731035 - sys_corr_4: 88.72082538814078 - sys_corr_5: -73.01875251111075 - sys_corr_6: -113.4345900900432 - sys_corr_7: 948.4935405412984 - sys_corr_8: 695.5046935340648 - sys_corr_9: 0.7178292123331454 - sys_corr_10: 34.13590098554409 - sys_corr_11: -0.7243064790247403 - sys_corr_12: -3.9353206661922835 - sys_corr_13: 11.332993147701298 - sys_corr_14: 4.871279725857381 - sys_corr_15: 4.36128251829597 - sys_corr_16: 15.72501182602384 - sys_corr_17: 0.12400263943951592 - sys_corr_18: 0.05713029250382443 - sys_corr_19: 0.0005777315326635869 - sys_corr_20: 0.001436770291158338 - sys_corr_21: -0.004904587524082127 - sys_corr_22: 0.018524381155862454 - sys_corr_23: -0.0016141267190325685 - sys_corr_24: -0.03116585543022407 - sys_corr_25: -0.05681395516432056 - sys_corr_26: 0.006927373076319159 - sys_corr_27: 0.008883483901875471 - sys_corr_28: -0.02305038082050592 - sys_corr_29: 0.00960886026895908 - sys_corr_30: -0.08633516535935533 - sys_corr_31: -0.08323499885858136 - sys_corr_32: 0.020109645801892756 - sys_corr_33: -0.027140925972899844 +- sys_corr_1: -1.18040391e+02 + sys_corr_2: 4.48925515e+01 + sys_corr_3: -1.14076867e+02 + sys_corr_4: 8.87208254e+01 + sys_corr_5: -7.30187525e+01 + sys_corr_6: -1.13434590e+02 + sys_corr_7: 9.48493541e+02 + sys_corr_8: 6.95504694e+02 + sys_corr_9: 7.17829212e-01 + sys_corr_10: 3.41359010e+01 + sys_corr_11: -7.24306479e-01 + sys_corr_12: -3.93532067e+00 + sys_corr_13: 1.13329931e+01 + sys_corr_14: 4.87127973e+00 + sys_corr_15: 4.36128252e+00 + sys_corr_16: 1.57250118e+01 + sys_corr_17: 1.24002639e-01 + sys_corr_18: 5.71302925e-02 + sys_corr_19: 5.77731533e-04 + sys_corr_20: 1.43677029e-03 + sys_corr_21: -4.90458752e-03 + sys_corr_22: 1.85243812e-02 + sys_corr_23: -1.61412672e-03 + sys_corr_24: -3.11658554e-02 + sys_corr_25: -5.68139552e-02 + sys_corr_26: 6.92737308e-03 + sys_corr_27: 8.88348390e-03 + sys_corr_28: -2.30503808e-02 + sys_corr_29: 9.60886027e-03 + sys_corr_30: -8.63351654e-02 + sys_corr_31: -8.32349989e-02 + sys_corr_32: 2.01096458e-02 + sys_corr_33: -2.71409260e-02 stat: 800.0 sys_beam: 400.0 sys_luminosity: 700.0 diff --git a/nnpdf_data/nnpdf_data/commondata/LHCB_DY_8TEV_MUON/filter.py b/nnpdf_data/nnpdf_data/commondata/LHCB_DY_8TEV_MUON/filter.py index f0f14cb1a2..27bcb46f5f 100644 --- a/nnpdf_data/nnpdf_data/commondata/LHCB_DY_8TEV_MUON/filter.py +++ b/nnpdf_data/nnpdf_data/commondata/LHCB_DY_8TEV_MUON/filter.py @@ -4,7 +4,9 @@ import pandas as pd import yaml -from nnpdf_data.filter_utils.utils import covmat_to_artunc +from nnpdf_data.filter_utils.utils import covmat_to_artunc, prettify_float + +yaml.add_representer(float, prettify_float) MZ_VALUE = 91.1876 # GeV MW_VALUE = 80.398 # GeV diff --git a/nnpdf_data/nnpdf_data/commondata/LHCB_DY_8TEV_MUON/kinematics.yaml b/nnpdf_data/nnpdf_data/commondata/LHCB_DY_8TEV_MUON/kinematics.yaml index 1f544bd585..46155aa321 100644 --- a/nnpdf_data/nnpdf_data/commondata/LHCB_DY_8TEV_MUON/kinematics.yaml +++ b/nnpdf_data/nnpdf_data/commondata/LHCB_DY_8TEV_MUON/kinematics.yaml @@ -5,7 +5,7 @@ bins: max: 2.125 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -17,7 +17,7 @@ bins: max: 2.25 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -29,7 +29,7 @@ bins: max: 2.375 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -41,7 +41,7 @@ bins: max: 2.5 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -53,7 +53,7 @@ bins: max: 2.625 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -65,7 +65,7 @@ bins: max: 2.75 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -77,7 +77,7 @@ bins: max: 2.875 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -89,7 +89,7 @@ bins: max: 3.0 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -101,7 +101,7 @@ bins: max: 3.125 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -113,7 +113,7 @@ bins: max: 3.25 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -125,7 +125,7 @@ bins: max: 3.375 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -137,7 +137,7 @@ bins: max: 3.5 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -149,7 +149,7 @@ bins: max: 3.625 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -161,7 +161,7 @@ bins: max: 3.75 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -173,7 +173,7 @@ bins: max: 3.875 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -185,7 +185,7 @@ bins: max: 4.0 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -197,7 +197,7 @@ bins: max: 4.25 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -209,7 +209,7 @@ bins: max: 4.5 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -221,7 +221,7 @@ bins: max: 2.25 M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null @@ -233,7 +233,7 @@ bins: max: 2.5 M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null @@ -245,7 +245,7 @@ bins: max: 2.75 M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null @@ -257,7 +257,7 @@ bins: max: 3.0 M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null @@ -269,7 +269,7 @@ bins: max: 3.25 M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null @@ -281,7 +281,7 @@ bins: max: 3.5 M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null @@ -293,7 +293,7 @@ bins: max: 4.0 M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null @@ -305,7 +305,7 @@ bins: max: 4.5 M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null @@ -317,7 +317,7 @@ bins: max: 2.25 M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null @@ -329,7 +329,7 @@ bins: max: 2.5 M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null @@ -341,7 +341,7 @@ bins: max: 2.75 M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null @@ -353,7 +353,7 @@ bins: max: 3.0 M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null @@ -365,7 +365,7 @@ bins: max: 3.25 M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null @@ -377,7 +377,7 @@ bins: max: 3.5 M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null @@ -389,7 +389,7 @@ bins: max: 4.0 M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null @@ -401,7 +401,7 @@ bins: max: 4.5 M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null diff --git a/nnpdf_data/nnpdf_data/commondata/LHCB_DY_8TEV_MUON/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/LHCB_DY_8TEV_MUON/uncertainties.yaml index 37d1ad3e65..e855665366 100644 --- a/nnpdf_data/nnpdf_data/commondata/LHCB_DY_8TEV_MUON/uncertainties.yaml +++ b/nnpdf_data/nnpdf_data/commondata/LHCB_DY_8TEV_MUON/uncertainties.yaml @@ -148,1261 +148,1261 @@ definitions: treatment: MULT type: LHCBLUMI8TEV bins: -- sys_corr_1: -13.129371357446566 - sys_corr_2: 0.6853465481127958 - sys_corr_3: -1.8136153124140044 - sys_corr_4: -1.6378919565260077 - sys_corr_5: 1.0056447881502208 - sys_corr_6: 0.9250488794404468 - sys_corr_7: -0.6130610634103546 - sys_corr_8: -1.0337778710980714 - sys_corr_9: 0.9022978319046373 - sys_corr_10: 0.5049756150293242 - sys_corr_11: -0.8765726686085896 - sys_corr_12: 0.5378206330645783 - sys_corr_13: -0.10895523093283618 - sys_corr_14: -0.48815555181063336 - sys_corr_15: -0.26556805383949933 - sys_corr_16: 0.03401879609859952 - sys_corr_17: -11.515944076989122 - sys_corr_18: -9.944936568212495e-05 - sys_corr_19: -0.007574441556954944 - sys_corr_20: 0.0036078709273934776 - sys_corr_21: 0.05449798823331223 - sys_corr_22: -0.08061168467580225 - sys_corr_23: 0.2232461165908627 - sys_corr_24: 5.565016708385976 - sys_corr_25: 0.2609714050579445 - sys_corr_26: -39.97407191458968 - sys_corr_27: -27.943155261017633 - sys_corr_28: -16.32894214901788 - sys_corr_29: -4.436995222441291 - sys_corr_30: -0.8115865284667331 - sys_corr_31: -0.37556594257327414 - sys_corr_32: 1.9696013567173964 - sys_corr_33: -2.632405659665658 - sys_corr_34: -0.16647209735490842 +- sys_corr_1: -1.31293714e+01 + sys_corr_2: 6.85346548e-01 + sys_corr_3: -1.81361531e+00 + sys_corr_4: -1.63789196e+00 + sys_corr_5: 1.00564479e+00 + sys_corr_6: 9.25048879e-01 + sys_corr_7: -6.13061063e-01 + sys_corr_8: -1.03377787e+00 + sys_corr_9: 9.02297832e-01 + sys_corr_10: 5.04975615e-01 + sys_corr_11: -8.76572669e-01 + sys_corr_12: 5.37820633e-01 + sys_corr_13: -1.08955231e-01 + sys_corr_14: -4.88155552e-01 + sys_corr_15: -2.65568054e-01 + sys_corr_16: 3.40187961e-02 + sys_corr_17: -1.15159441e+01 + sys_corr_18: -9.94493657e-05 + sys_corr_19: -7.57444156e-03 + sys_corr_20: 3.60787093e-03 + sys_corr_21: 5.44979882e-02 + sys_corr_22: -8.06116847e-02 + sys_corr_23: 2.23246117e-01 + sys_corr_24: 5.56501671e+00 + sys_corr_25: 2.60971405e-01 + sys_corr_26: -3.99740719e+01 + sys_corr_27: -2.79431553e+01 + sys_corr_28: -1.63289421e+01 + sys_corr_29: -4.43699522e+00 + sys_corr_30: -8.11586528e-01 + sys_corr_31: -3.75565943e-01 + sys_corr_32: 1.96960136e+00 + sys_corr_33: -2.63240566e+00 + sys_corr_34: -1.66472097e-01 stat: 33.0 sys_beam: 14.0 sys_luminosity: 14.0 -- sys_corr_1: -19.84410989915686 - sys_corr_2: -0.33428052767624017 - sys_corr_3: 2.670922737160205 - sys_corr_4: -1.1222915328655707 - sys_corr_5: 2.2445396406956237 - sys_corr_6: 1.2318412040026738 - sys_corr_7: -0.9643207591596933 - sys_corr_8: -2.290860727968255 - sys_corr_9: 1.1342800899064787 - sys_corr_10: -0.8548057471102758 - sys_corr_11: -1.7962495571776689 - sys_corr_12: -0.07911083910584618 - sys_corr_13: -0.4729515020260823 - sys_corr_14: 0.2558186095239544 - sys_corr_15: -0.3882769649812642 - sys_corr_16: -0.0652189367024966 - sys_corr_17: -20.03065356651135 - sys_corr_18: -5.9389068400393175e-05 - sys_corr_19: -0.005317597654028506 - sys_corr_20: -0.012280961378434697 - sys_corr_21: 0.04723338963266031 - sys_corr_22: 0.08725074045398798 - sys_corr_23: -0.22008265182366893 - sys_corr_24: 10.334303066977842 - sys_corr_25: -1.8910305617960286 - sys_corr_26: 31.412187227654297 - sys_corr_27: -31.612351485476285 - sys_corr_28: -24.076341536265016 - sys_corr_29: -7.556695045725688 - sys_corr_30: 1.0636142561363102 - sys_corr_31: 1.6785623920713753 - sys_corr_32: 3.8317829078782055 - sys_corr_33: -4.904694970048211 - sys_corr_34: -1.4462770770535842 +- sys_corr_1: -1.98441099e+01 + sys_corr_2: -3.34280528e-01 + sys_corr_3: 2.67092274e+00 + sys_corr_4: -1.12229153e+00 + sys_corr_5: 2.24453964e+00 + sys_corr_6: 1.23184120e+00 + sys_corr_7: -9.64320759e-01 + sys_corr_8: -2.29086073e+00 + sys_corr_9: 1.13428009e+00 + sys_corr_10: -8.54805747e-01 + sys_corr_11: -1.79624956e+00 + sys_corr_12: -7.91108391e-02 + sys_corr_13: -4.72951502e-01 + sys_corr_14: 2.55818610e-01 + sys_corr_15: -3.88276965e-01 + sys_corr_16: -6.52189367e-02 + sys_corr_17: -2.00306536e+01 + sys_corr_18: -5.93890684e-05 + sys_corr_19: -5.31759765e-03 + sys_corr_20: -1.22809614e-02 + sys_corr_21: 4.72333896e-02 + sys_corr_22: 8.72507405e-02 + sys_corr_23: -2.20082652e-01 + sys_corr_24: 1.03343031e+01 + sys_corr_25: -1.89103056e+00 + sys_corr_26: 3.14121872e+01 + sys_corr_27: -3.16123515e+01 + sys_corr_28: -2.40763415e+01 + sys_corr_29: -7.55669505e+00 + sys_corr_30: 1.06361426e+00 + sys_corr_31: 1.67856239e+00 + sys_corr_32: 3.83178291e+00 + sys_corr_33: -4.90469497e+00 + sys_corr_34: -1.44627708e+00 stat: 51.0 sys_beam: 38.0 sys_luminosity: 38.0 -- sys_corr_1: -21.06803631144305 - sys_corr_2: -2.8187263609581037 - sys_corr_3: 7.429751053129757 - sys_corr_4: -1.236385409231223 - sys_corr_5: 0.4400202992760449 - sys_corr_6: 0.8285805636546832 - sys_corr_7: -0.18333076844149918 - sys_corr_8: -1.8866832461204062 - sys_corr_9: 1.0748601041254102 - sys_corr_10: -0.9841457536126821 - sys_corr_11: -2.2265738633786056 - sys_corr_12: -0.5655169182096085 - sys_corr_13: -0.4881568704060237 - sys_corr_14: -0.7820357793522866 - sys_corr_15: -0.0591950959516241 - sys_corr_16: -1.1097250976141682 - sys_corr_17: -24.699858197477425 - sys_corr_18: -3.105265933150413e-05 - sys_corr_19: 0.0027633726426110903 - sys_corr_20: -0.01714976905984696 - sys_corr_21: 0.03260600131360796 - sys_corr_22: -0.02846572509880877 - sys_corr_23: -0.14676912642260082 - sys_corr_24: 12.565805182401665 - sys_corr_25: 0.6256157595772878 - sys_corr_26: -3.587946103250402 - sys_corr_27: 31.925361874872813 - sys_corr_28: -40.75747797841242 - sys_corr_29: -8.403699350568834 - sys_corr_30: -2.1525840708785995 - sys_corr_31: 1.1118986638849773 - sys_corr_32: 3.4014199295339713 - sys_corr_33: -4.750919333246441 - sys_corr_34: -1.0948035574690989 +- sys_corr_1: -2.10680363e+01 + sys_corr_2: -2.81872636e+00 + sys_corr_3: 7.42975105e+00 + sys_corr_4: -1.23638541e+00 + sys_corr_5: 4.40020299e-01 + sys_corr_6: 8.28580564e-01 + sys_corr_7: -1.83330768e-01 + sys_corr_8: -1.88668325e+00 + sys_corr_9: 1.07486010e+00 + sys_corr_10: -9.84145754e-01 + sys_corr_11: -2.22657386e+00 + sys_corr_12: -5.65516918e-01 + sys_corr_13: -4.88156870e-01 + sys_corr_14: -7.82035779e-01 + sys_corr_15: -5.91950960e-02 + sys_corr_16: -1.10972510e+00 + sys_corr_17: -2.46998582e+01 + sys_corr_18: -3.10526593e-05 + sys_corr_19: 2.76337264e-03 + sys_corr_20: -1.71497691e-02 + sys_corr_21: 3.26060013e-02 + sys_corr_22: -2.84657251e-02 + sys_corr_23: -1.46769126e-01 + sys_corr_24: 1.25658052e+01 + sys_corr_25: 6.25615760e-01 + sys_corr_26: -3.58794610e+00 + sys_corr_27: 3.19253619e+01 + sys_corr_28: -4.07574780e+01 + sys_corr_29: -8.40369935e+00 + sys_corr_30: -2.15258407e+00 + sys_corr_31: 1.11189866e+00 + sys_corr_32: 3.40141993e+00 + sys_corr_33: -4.75091933e+00 + sys_corr_34: -1.09480356e+00 stat: 62.0 sys_beam: 57.0 sys_luminosity: 58.0 -- sys_corr_1: -23.3387939352119 - sys_corr_2: -5.015020292076104 - sys_corr_3: 8.195207361706753 - sys_corr_4: -3.6167946329495297 - sys_corr_5: -1.5375896951453918 - sys_corr_6: -0.5055645332316405 - sys_corr_7: -0.16566054440242206 - sys_corr_8: -1.3674236995198723 - sys_corr_9: 0.9863174769321807 - sys_corr_10: -0.1168914762976303 - sys_corr_11: -2.7627979637828908 - sys_corr_12: -0.7334770006814376 - sys_corr_13: -0.3971020272104272 - sys_corr_14: -0.95133434205179 - sys_corr_15: -0.5236614050232826 - sys_corr_16: 0.14328103033375855 - sys_corr_17: -33.10807446118345 - sys_corr_18: -1.1676986085192038e-05 - sys_corr_19: -0.005199428393547465 - sys_corr_20: 0.0030204570342204614 - sys_corr_21: 0.04012076569198424 - sys_corr_22: 0.0038033078620872446 - sys_corr_23: 0.13823101139046734 - sys_corr_24: 20.184900578635258 - sys_corr_25: 0.7835344757729851 - sys_corr_26: -1.5428612589179613 - sys_corr_27: 2.9113392297959284 - sys_corr_28: 19.877343744885955 - sys_corr_29: -18.81752249516219 - sys_corr_30: 5.17101146368958 - sys_corr_31: 3.2665481446177567 - sys_corr_32: 45.33543603498056 - sys_corr_33: -6.7621973249488265 - sys_corr_34: -10.777895659172056 +- sys_corr_1: -2.33387939e+01 + sys_corr_2: -5.01502029e+00 + sys_corr_3: 8.19520736e+00 + sys_corr_4: -3.61679463e+00 + sys_corr_5: -1.53758970e+00 + sys_corr_6: -5.05564533e-01 + sys_corr_7: -1.65660544e-01 + sys_corr_8: -1.36742370e+00 + sys_corr_9: 9.86317477e-01 + sys_corr_10: -1.16891476e-01 + sys_corr_11: -2.76279796e+00 + sys_corr_12: -7.33477001e-01 + sys_corr_13: -3.97102027e-01 + sys_corr_14: -9.51334342e-01 + sys_corr_15: -5.23661405e-01 + sys_corr_16: 1.43281030e-01 + sys_corr_17: -3.31080745e+01 + sys_corr_18: -1.16769861e-05 + sys_corr_19: -5.19942839e-03 + sys_corr_20: 3.02045703e-03 + sys_corr_21: 4.01207657e-02 + sys_corr_22: 3.80330786e-03 + sys_corr_23: 1.38231011e-01 + sys_corr_24: 2.01849006e+01 + sys_corr_25: 7.83534476e-01 + sys_corr_26: -1.54286126e+00 + sys_corr_27: 2.91133923e+00 + sys_corr_28: 1.98773437e+01 + sys_corr_29: -1.88175225e+01 + sys_corr_30: 5.17101146e+00 + sys_corr_31: 3.26654814e+00 + sys_corr_32: 4.53354360e+01 + sys_corr_33: -6.76219732e+00 + sys_corr_34: -1.07778957e+01 stat: 70.0 sys_beam: 77.0 sys_luminosity: 78.0 -- sys_corr_1: -23.62879238801978 - sys_corr_2: -6.87193436933576 - sys_corr_3: 8.83823680239778 - sys_corr_4: -5.7537272091857865 - sys_corr_5: -1.5402984336350092 - sys_corr_6: -0.34511927064998793 - sys_corr_7: 0.41310581668467056 - sys_corr_8: 0.5073510714925774 - sys_corr_9: 1.5788941118756097 - sys_corr_10: 0.7607246969862658 - sys_corr_11: -2.673007365634023 - sys_corr_12: -1.2417474817491765 - sys_corr_13: -0.7432869137170354 - sys_corr_14: -0.5989974516236286 - sys_corr_15: -0.06637383592029723 - sys_corr_16: 0.7411626588091698 - sys_corr_17: -36.49951097455011 - sys_corr_18: 5.846611291372814e-06 - sys_corr_19: -0.00017524139523300978 - sys_corr_20: -0.00808526874152184 - sys_corr_21: 0.05044391052297366 - sys_corr_22: -0.15328563391067396 - sys_corr_23: 0.49110134937745753 - sys_corr_24: 17.639144407135866 - sys_corr_25: 1.555577025693582 - sys_corr_26: -0.2941962686942436 - sys_corr_27: 1.4513100444743 - sys_corr_28: 12.997331532179793 - sys_corr_29: -22.221925461567245 - sys_corr_30: 7.42411526075697 - sys_corr_31: -10.124571665101879 - sys_corr_32: -22.849337902785333 - sys_corr_33: -10.788104365353474 - sys_corr_34: 40.44768877782353 +- sys_corr_1: -2.36287924e+01 + sys_corr_2: -6.87193437e+00 + sys_corr_3: 8.83823680e+00 + sys_corr_4: -5.75372721e+00 + sys_corr_5: -1.54029843e+00 + sys_corr_6: -3.45119271e-01 + sys_corr_7: 4.13105817e-01 + sys_corr_8: 5.07351071e-01 + sys_corr_9: 1.57889411e+00 + sys_corr_10: 7.60724697e-01 + sys_corr_11: -2.67300737e+00 + sys_corr_12: -1.24174748e+00 + sys_corr_13: -7.43286914e-01 + sys_corr_14: -5.98997452e-01 + sys_corr_15: -6.63738359e-02 + sys_corr_16: 7.41162659e-01 + sys_corr_17: -3.64995110e+01 + sys_corr_18: 5.84661129e-06 + sys_corr_19: -1.75241395e-04 + sys_corr_20: -8.08526874e-03 + sys_corr_21: 5.04439105e-02 + sys_corr_22: -1.53285634e-01 + sys_corr_23: 4.91101349e-01 + sys_corr_24: 1.76391444e+01 + sys_corr_25: 1.55557703e+00 + sys_corr_26: -2.94196269e-01 + sys_corr_27: 1.45131004e+00 + sys_corr_28: 1.29973315e+01 + sys_corr_29: -2.22219255e+01 + sys_corr_30: 7.42411526e+00 + sys_corr_31: -1.01245717e+01 + sys_corr_32: -2.28493379e+01 + sys_corr_33: -1.07881044e+01 + sys_corr_34: 4.04476888e+01 stat: 76.0 sys_beam: 93.0 sys_luminosity: 94.0 -- sys_corr_1: -23.305638822180896 - sys_corr_2: -7.893736699339743 - sys_corr_3: 9.253795984805567 - sys_corr_4: -7.241905559104666 - sys_corr_5: -1.9123722247234651 - sys_corr_6: 0.5912138549585202 - sys_corr_7: 0.046522493839806764 - sys_corr_8: 0.7199048005799586 - sys_corr_9: 1.828692488405099 - sys_corr_10: 2.1832257020459434 - sys_corr_11: -2.0150365232945977 - sys_corr_12: -1.8353749829105612 - sys_corr_13: 0.001518734723146232 - sys_corr_14: -0.4820989621950967 - sys_corr_15: 1.213798569671235 - sys_corr_16: 1.121115480524444 - sys_corr_17: -36.92425033443776 - sys_corr_18: 1.4188601726670624e-05 - sys_corr_19: -0.008850403418067134 - sys_corr_20: -0.024878253073439608 - sys_corr_21: 0.09023808536291997 - sys_corr_22: -0.21273521070741153 - sys_corr_23: 0.5683465667238542 - sys_corr_24: 9.560426327355785 - sys_corr_25: 1.6835388239352824 - sys_corr_26: -0.6834505876518351 - sys_corr_27: 0.6825047572020109 - sys_corr_28: 7.890847045559323 - sys_corr_29: -14.455305993927523 - sys_corr_30: 10.42790997028791 - sys_corr_31: -2.6562075756908268 - sys_corr_32: -29.801504695845157 - sys_corr_33: 18.833535007792904 - sys_corr_34: -40.25708269143495 +- sys_corr_1: -2.33056388e+01 + sys_corr_2: -7.89373670e+00 + sys_corr_3: 9.25379598e+00 + sys_corr_4: -7.24190556e+00 + sys_corr_5: -1.91237222e+00 + sys_corr_6: 5.91213855e-01 + sys_corr_7: 4.65224938e-02 + sys_corr_8: 7.19904801e-01 + sys_corr_9: 1.82869249e+00 + sys_corr_10: 2.18322570e+00 + sys_corr_11: -2.01503652e+00 + sys_corr_12: -1.83537498e+00 + sys_corr_13: 1.51873472e-03 + sys_corr_14: -4.82098962e-01 + sys_corr_15: 1.21379857e+00 + sys_corr_16: 1.12111548e+00 + sys_corr_17: -3.69242503e+01 + sys_corr_18: 1.41886017e-05 + sys_corr_19: -8.85040342e-03 + sys_corr_20: -2.48782531e-02 + sys_corr_21: 9.02380854e-02 + sys_corr_22: -2.12735211e-01 + sys_corr_23: 5.68346567e-01 + sys_corr_24: 9.56042633e+00 + sys_corr_25: 1.68353882e+00 + sys_corr_26: -6.83450588e-01 + sys_corr_27: 6.82504757e-01 + sys_corr_28: 7.89084705e+00 + sys_corr_29: -1.44553060e+01 + sys_corr_30: 1.04279100e+01 + sys_corr_31: -2.65620758e+00 + sys_corr_32: -2.98015047e+01 + sys_corr_33: 1.88335350e+01 + sys_corr_34: -4.02570827e+01 stat: 79.0 sys_beam: 103.0 sys_luminosity: 105.0 -- sys_corr_1: -23.122870553655485 - sys_corr_2: -8.47299229535122 - sys_corr_3: 9.978884071326535 - sys_corr_4: -8.191892596977446 - sys_corr_5: -2.170985058688854 - sys_corr_6: 1.1927202283582248 - sys_corr_7: 1.027768527951745 - sys_corr_8: 1.3222563308413293 - sys_corr_9: 0.33906685145682963 - sys_corr_10: 2.5599804325752222 - sys_corr_11: -1.6074832724595463 - sys_corr_12: -1.6149874429471522 - sys_corr_13: -0.1816302646114862 - sys_corr_14: -1.3175100328466482 - sys_corr_15: 1.2937203505127026 - sys_corr_16: 0.43723597691800703 - sys_corr_17: -39.00203494074587 - sys_corr_18: 1.5486962829685152e-05 - sys_corr_19: -0.006718922393631411 - sys_corr_20: -0.01818785300696696 - sys_corr_21: 0.05958653229899917 - sys_corr_22: -0.29423833975824465 - sys_corr_23: 0.8058671737702581 - sys_corr_24: 7.740143059282549 - sys_corr_25: 2.2743790555258894 - sys_corr_26: -0.9438822433707657 - sys_corr_27: 0.23546915242928015 - sys_corr_28: 4.6731622857077495 - sys_corr_29: 31.634166617711443 - sys_corr_30: 4.348764566820343 - sys_corr_31: 47.20725640422164 - sys_corr_32: -6.675227803551185 - sys_corr_33: -7.705400923214566 - sys_corr_34: 4.070133302804576 +- sys_corr_1: -2.31228706e+01 + sys_corr_2: -8.47299230e+00 + sys_corr_3: 9.97888407e+00 + sys_corr_4: -8.19189260e+00 + sys_corr_5: -2.17098506e+00 + sys_corr_6: 1.19272023e+00 + sys_corr_7: 1.02776853e+00 + sys_corr_8: 1.32225633e+00 + sys_corr_9: 3.39066851e-01 + sys_corr_10: 2.55998043e+00 + sys_corr_11: -1.60748327e+00 + sys_corr_12: -1.61498744e+00 + sys_corr_13: -1.81630265e-01 + sys_corr_14: -1.31751003e+00 + sys_corr_15: 1.29372035e+00 + sys_corr_16: 4.37235977e-01 + sys_corr_17: -3.90020349e+01 + sys_corr_18: 1.54869628e-05 + sys_corr_19: -6.71892239e-03 + sys_corr_20: -1.81878530e-02 + sys_corr_21: 5.95865323e-02 + sys_corr_22: -2.94238340e-01 + sys_corr_23: 8.05867174e-01 + sys_corr_24: 7.74014306e+00 + sys_corr_25: 2.27437906e+00 + sys_corr_26: -9.43882243e-01 + sys_corr_27: 2.35469152e-01 + sys_corr_28: 4.67316229e+00 + sys_corr_29: 3.16341666e+01 + sys_corr_30: 4.34876457e+00 + sys_corr_31: 4.72072564e+01 + sys_corr_32: -6.67522780e+00 + sys_corr_33: -7.70540092e+00 + sys_corr_34: 4.07013330e+00 stat: 81.0 sys_beam: 110.0 sys_luminosity: 112.0 -- sys_corr_1: -20.85999640061773 - sys_corr_2: -8.242540680871144 - sys_corr_3: 8.96120405655017 - sys_corr_4: -8.61438589895173 - sys_corr_5: -2.3060483600982833 - sys_corr_6: 1.3799189252317385 - sys_corr_7: 1.7631040575653907 - sys_corr_8: 1.2044387625997117 - sys_corr_9: -0.029223529687890985 - sys_corr_10: 3.021580237130118 - sys_corr_11: -1.4142992542157862 - sys_corr_12: -1.1889723630536422 - sys_corr_13: 0.9257611979898691 - sys_corr_14: -0.6372331880602367 - sys_corr_15: 0.32636460339014195 - sys_corr_16: 0.8296699988914852 - sys_corr_17: -34.31148751935037 - sys_corr_18: 2.223371222016921e-05 - sys_corr_19: -0.00407957965719388 - sys_corr_20: -0.04109755671291763 - sys_corr_21: 0.12179926772246472 - sys_corr_22: -0.4318081034915585 - sys_corr_23: 1.238366902774607 - sys_corr_24: -0.5553499113329405 - sys_corr_25: 3.8476635936335404 - sys_corr_26: 1.2145007166214323 - sys_corr_27: -1.0896588789833546 - sys_corr_28: 5.220822383001981 - sys_corr_29: 4.056607732583745 - sys_corr_30: -53.73393248419466 - sys_corr_31: -5.961938629063152 - sys_corr_32: 0.17239047689188644 - sys_corr_33: 13.699964798469713 - sys_corr_34: 2.4339881710835924 +- sys_corr_1: -2.08599964e+01 + sys_corr_2: -8.24254068e+00 + sys_corr_3: 8.96120406e+00 + sys_corr_4: -8.61438590e+00 + sys_corr_5: -2.30604836e+00 + sys_corr_6: 1.37991893e+00 + sys_corr_7: 1.76310406e+00 + sys_corr_8: 1.20443876e+00 + sys_corr_9: -2.92235297e-02 + sys_corr_10: 3.02158024e+00 + sys_corr_11: -1.41429925e+00 + sys_corr_12: -1.18897236e+00 + sys_corr_13: 9.25761198e-01 + sys_corr_14: -6.37233188e-01 + sys_corr_15: 3.26364603e-01 + sys_corr_16: 8.29669999e-01 + sys_corr_17: -3.43114875e+01 + sys_corr_18: 2.22337122e-05 + sys_corr_19: -4.07957966e-03 + sys_corr_20: -4.10975567e-02 + sys_corr_21: 1.21799268e-01 + sys_corr_22: -4.31808103e-01 + sys_corr_23: 1.23836690e+00 + sys_corr_24: -5.55349911e-01 + sys_corr_25: 3.84766359e+00 + sys_corr_26: 1.21450072e+00 + sys_corr_27: -1.08965888e+00 + sys_corr_28: 5.22082238e+00 + sys_corr_29: 4.05660773e+00 + sys_corr_30: -5.37339325e+01 + sys_corr_31: -5.96193863e+00 + sys_corr_32: 1.72390477e-01 + sys_corr_33: 1.36999648e+01 + sys_corr_34: 2.43398817e+00 stat: 82.0 sys_beam: 113.0 sys_luminosity: 115.0 -- sys_corr_1: -20.223983250604604 - sys_corr_2: -8.154175836436291 - sys_corr_3: 9.263273566378606 - sys_corr_4: -9.71875268691994 - sys_corr_5: -2.815203846765317 - sys_corr_6: 1.8702305366092413 - sys_corr_7: 1.642208435163437 - sys_corr_8: -0.16224786719629844 - sys_corr_9: -0.22452711746936563 - sys_corr_10: 3.5727685328730914 - sys_corr_11: -1.807628621364124 - sys_corr_12: -0.9629409377418926 - sys_corr_13: 0.517135664165866 - sys_corr_14: -0.6176549011257119 - sys_corr_15: 0.29396865202352723 - sys_corr_16: 0.19228110231040307 - sys_corr_17: -35.973328851362034 - sys_corr_18: 2.1030318953412103e-05 - sys_corr_19: -0.01573421063352595 - sys_corr_20: -0.039593498418252014 - sys_corr_21: 0.20298279711025685 - sys_corr_22: -0.43673348436206993 - sys_corr_23: 1.2228818908422694 - sys_corr_24: -8.050128059316727 - sys_corr_25: 3.7067801587189875 - sys_corr_26: 0.28564487917183234 - sys_corr_27: 0.31349089275246217 - sys_corr_28: 1.831682047649197 - sys_corr_29: 32.11772042510084 - sys_corr_30: 6.005329354848032 - sys_corr_31: -35.91989545505611 - sys_corr_32: -0.020112060445741164 - sys_corr_33: -30.626315104189313 - sys_corr_34: -10.705014253933214 +- sys_corr_1: -2.02239833e+01 + sys_corr_2: -8.15417584e+00 + sys_corr_3: 9.26327357e+00 + sys_corr_4: -9.71875269e+00 + sys_corr_5: -2.81520385e+00 + sys_corr_6: 1.87023054e+00 + sys_corr_7: 1.64220844e+00 + sys_corr_8: -1.62247867e-01 + sys_corr_9: -2.24527117e-01 + sys_corr_10: 3.57276853e+00 + sys_corr_11: -1.80762862e+00 + sys_corr_12: -9.62940938e-01 + sys_corr_13: 5.17135664e-01 + sys_corr_14: -6.17654901e-01 + sys_corr_15: 2.93968652e-01 + sys_corr_16: 1.92281102e-01 + sys_corr_17: -3.59733289e+01 + sys_corr_18: 2.10303190e-05 + sys_corr_19: -1.57342106e-02 + sys_corr_20: -3.95934984e-02 + sys_corr_21: 2.02982797e-01 + sys_corr_22: -4.36733484e-01 + sys_corr_23: 1.22288189e+00 + sys_corr_24: -8.05012806e+00 + sys_corr_25: 3.70678016e+00 + sys_corr_26: 2.85644879e-01 + sys_corr_27: 3.13490893e-01 + sys_corr_28: 1.83168205e+00 + sys_corr_29: 3.21177204e+01 + sys_corr_30: 6.00532935e+00 + sys_corr_31: -3.59198955e+01 + sys_corr_32: -2.01120604e-02 + sys_corr_33: -3.06263151e+01 + sys_corr_34: -1.07050143e+01 stat: 81.0 sys_beam: 112.0 sys_luminosity: 114.0 -- sys_corr_1: -17.04123512385607 - sys_corr_2: -7.918393116785631 - sys_corr_3: 8.440143768234751 - sys_corr_4: -10.02402010796554 - sys_corr_5: -2.6847034507324383 - sys_corr_6: 2.0671669249447975 - sys_corr_7: 1.8372796873063746 - sys_corr_8: 0.3650568659958692 - sys_corr_9: -0.4904354192348276 - sys_corr_10: 3.05686845689522 - sys_corr_11: -1.0638801573489338 - sys_corr_12: -1.3582456192661916 - sys_corr_13: 0.07169286786152647 - sys_corr_14: -0.21990435577551373 - sys_corr_15: 1.5744304454331313 - sys_corr_16: -0.0013292406671437558 - sys_corr_17: -32.11721511436324 - sys_corr_18: 1.5639254649312342e-05 - sys_corr_19: -0.016025573298138807 - sys_corr_20: -0.06980990577079971 - sys_corr_21: 0.21328595324743183 - sys_corr_22: -0.643522433244859 - sys_corr_23: 1.968944344838717 - sys_corr_24: -12.899652788634423 - sys_corr_25: 5.004417879945517 - sys_corr_26: 0.4905581183344178 - sys_corr_27: -0.6767901157589093 - sys_corr_28: -5.192725175070102 - sys_corr_29: 15.906978752284262 - sys_corr_30: 20.162930666008716 - sys_corr_31: -11.987331589746674 - sys_corr_32: 14.255145302388717 - sys_corr_33: 43.78533938046681 - sys_corr_34: 17.535461369051525 +- sys_corr_1: -1.70412351e+01 + sys_corr_2: -7.91839312e+00 + sys_corr_3: 8.44014377e+00 + sys_corr_4: -1.00240201e+01 + sys_corr_5: -2.68470345e+00 + sys_corr_6: 2.06716692e+00 + sys_corr_7: 1.83727969e+00 + sys_corr_8: 3.65056866e-01 + sys_corr_9: -4.90435419e-01 + sys_corr_10: 3.05686846e+00 + sys_corr_11: -1.06388016e+00 + sys_corr_12: -1.35824562e+00 + sys_corr_13: 7.16928679e-02 + sys_corr_14: -2.19904356e-01 + sys_corr_15: 1.57443045e+00 + sys_corr_16: -1.32924067e-03 + sys_corr_17: -3.21172151e+01 + sys_corr_18: 1.56392546e-05 + sys_corr_19: -1.60255733e-02 + sys_corr_20: -6.98099058e-02 + sys_corr_21: 2.13285953e-01 + sys_corr_22: -6.43522433e-01 + sys_corr_23: 1.96894434e+00 + sys_corr_24: -1.28996528e+01 + sys_corr_25: 5.00441788e+00 + sys_corr_26: 4.90558118e-01 + sys_corr_27: -6.76790116e-01 + sys_corr_28: -5.19272518e+00 + sys_corr_29: 1.59069788e+01 + sys_corr_30: 2.01629307e+01 + sys_corr_31: -1.19873316e+01 + sys_corr_32: 1.42551453e+01 + sys_corr_33: 4.37853394e+01 + sys_corr_34: 1.75354614e+01 stat: 78.0 sys_beam: 104.0 sys_luminosity: 105.0 -- sys_corr_1: -14.949658691661552 - sys_corr_2: -7.165496747473771 - sys_corr_3: 7.808477726717344 - sys_corr_4: -9.563054093266855 - sys_corr_5: -2.670729336856341 - sys_corr_6: 1.8709100130824086 - sys_corr_7: 1.1343784857725923 - sys_corr_8: 0.5731050576348673 - sys_corr_9: -0.8237338552006473 - sys_corr_10: 3.4751925833597106 - sys_corr_11: -0.13851422837760224 - sys_corr_12: -0.1002361602275918 - sys_corr_13: -0.29756675757365736 - sys_corr_14: -0.016500933088201893 - sys_corr_15: 0.6964491524516614 - sys_corr_16: 0.020654173191049223 - sys_corr_17: -29.91414324734268 - sys_corr_18: -2.595663657424141e-06 - sys_corr_19: -0.020768693638998827 - sys_corr_20: -0.05834119476429439 - sys_corr_21: 0.1988462861961116 - sys_corr_22: -0.6436033819980002 - sys_corr_23: 1.6165938253859975 - sys_corr_24: -56.83115477669559 - sys_corr_25: 4.207755805619209 - sys_corr_26: 0.13546165938649402 - sys_corr_27: 0.16794567880708108 - sys_corr_28: -1.2548235252022757 - sys_corr_29: -23.91565302611887 - sys_corr_30: 1.316650496023731 - sys_corr_31: 12.59376213704475 - sys_corr_32: 1.4753796100520011 - sys_corr_33: -11.882612801608257 - sys_corr_34: -0.6558219362974327 +- sys_corr_1: -1.49496587e+01 + sys_corr_2: -7.16549675e+00 + sys_corr_3: 7.80847773e+00 + sys_corr_4: -9.56305409e+00 + sys_corr_5: -2.67072934e+00 + sys_corr_6: 1.87091001e+00 + sys_corr_7: 1.13437849e+00 + sys_corr_8: 5.73105058e-01 + sys_corr_9: -8.23733855e-01 + sys_corr_10: 3.47519258e+00 + sys_corr_11: -1.38514228e-01 + sys_corr_12: -1.00236160e-01 + sys_corr_13: -2.97566758e-01 + sys_corr_14: -1.65009331e-02 + sys_corr_15: 6.96449152e-01 + sys_corr_16: 2.06541732e-02 + sys_corr_17: -2.99141432e+01 + sys_corr_18: -2.59566366e-06 + sys_corr_19: -2.07686936e-02 + sys_corr_20: -5.83411948e-02 + sys_corr_21: 1.98846286e-01 + sys_corr_22: -6.43603382e-01 + sys_corr_23: 1.61659383e+00 + sys_corr_24: -5.68311548e+01 + sys_corr_25: 4.20775581e+00 + sys_corr_26: 1.35461659e-01 + sys_corr_27: 1.67945679e-01 + sys_corr_28: -1.25482353e+00 + sys_corr_29: -2.39156530e+01 + sys_corr_30: 1.31665050e+00 + sys_corr_31: 1.25937621e+01 + sys_corr_32: 1.47537961e+00 + sys_corr_33: -1.18826128e+01 + sys_corr_34: -6.55821936e-01 stat: 72.0 sys_beam: 89.0 sys_luminosity: 90.0 -- sys_corr_1: -9.14904976731458 - sys_corr_2: -4.972284733299384 - sys_corr_3: 4.934501253783764 - sys_corr_4: -7.1467159557128515 - sys_corr_5: -2.4806832426487455 - sys_corr_6: 1.671603651748121 - sys_corr_7: 0.37319250089257 - sys_corr_8: 0.46906925363561475 - sys_corr_9: -1.087081450231521 - sys_corr_10: 2.1864260496234404 - sys_corr_11: -0.08527632330582598 - sys_corr_12: -0.012526363709998182 - sys_corr_13: 0.4243834079319793 - sys_corr_14: -0.13456579621495254 - sys_corr_15: 0.4790045408796148 - sys_corr_16: -0.15340419169045127 - sys_corr_17: -14.879810632978376 - sys_corr_18: -0.0002456468050200248 - sys_corr_19: -0.0454435934292203 - sys_corr_20: -0.12517695573626986 - sys_corr_21: 0.44958793796615887 - sys_corr_22: -1.204788925464909 - sys_corr_23: 6.991666808010446 - sys_corr_24: -5.151973939331509 - sys_corr_25: -45.64159328048806 - sys_corr_26: -1.3784434779208112 - sys_corr_27: 1.5652942658997 - sys_corr_28: 1.409320903180425 - sys_corr_29: 2.3280091228430235 - sys_corr_30: -0.7987670255571896 - sys_corr_31: -1.4925491058413183 - sys_corr_32: 0.16347370237198558 - sys_corr_33: 2.0228973651373496 - sys_corr_34: 1.0080663698904977 +- sys_corr_1: -9.14904977e+00 + sys_corr_2: -4.97228473e+00 + sys_corr_3: 4.93450125e+00 + sys_corr_4: -7.14671596e+00 + sys_corr_5: -2.48068324e+00 + sys_corr_6: 1.67160365e+00 + sys_corr_7: 3.73192501e-01 + sys_corr_8: 4.69069254e-01 + sys_corr_9: -1.08708145e+00 + sys_corr_10: 2.18642605e+00 + sys_corr_11: -8.52763233e-02 + sys_corr_12: -1.25263637e-02 + sys_corr_13: 4.24383408e-01 + sys_corr_14: -1.34565796e-01 + sys_corr_15: 4.79004541e-01 + sys_corr_16: -1.53404192e-01 + sys_corr_17: -1.48798106e+01 + sys_corr_18: -2.45646805e-04 + sys_corr_19: -4.54435934e-02 + sys_corr_20: -1.25176956e-01 + sys_corr_21: 4.49587938e-01 + sys_corr_22: -1.20478893e+00 + sys_corr_23: 6.99166681e+00 + sys_corr_24: -5.15197394e+00 + sys_corr_25: -4.56415933e+01 + sys_corr_26: -1.37844348e+00 + sys_corr_27: 1.56529427e+00 + sys_corr_28: 1.40932090e+00 + sys_corr_29: 2.32800912e+00 + sys_corr_30: -7.98767026e-01 + sys_corr_31: -1.49254911e+00 + sys_corr_32: 1.63473702e-01 + sys_corr_33: 2.02289737e+00 + sys_corr_34: 1.00806637e+00 stat: 63.0 sys_beam: 70.0 sys_luminosity: 71.0 -- sys_corr_1: -6.326085258885516 - sys_corr_2: -3.4394155068830274 - sys_corr_3: 3.3413277376739994 - sys_corr_4: -5.541898966162299 - sys_corr_5: -1.6661764807846726 - sys_corr_6: 0.9793752178741615 - sys_corr_7: 0.0002485455875605596 - sys_corr_8: -0.08187806243712223 - sys_corr_9: -0.43331484389358593 - sys_corr_10: 1.7688356519671558 - sys_corr_11: 0.1673892047971942 - sys_corr_12: 0.11055325680962538 - sys_corr_13: 0.42690581325142396 - sys_corr_14: -0.11388005383860242 - sys_corr_15: 0.9613977606947433 - sys_corr_16: -0.013820528956824979 - sys_corr_17: -9.506358516911606 - sys_corr_18: -0.0003224919588661582 - sys_corr_19: -0.04499426072419495 - sys_corr_20: -0.13755544896320748 - sys_corr_21: 0.5827172665111978 - sys_corr_22: -1.947072274653343 - sys_corr_23: -37.513389438295356 - sys_corr_24: -3.6661471142260784 - sys_corr_25: -7.529167532068023 - sys_corr_26: -0.6017477237229026 - sys_corr_27: 0.16993176961815415 - sys_corr_28: 0.8185166967640874 - sys_corr_29: 1.5139539639483393 - sys_corr_30: -0.23812496924273005 - sys_corr_31: -0.8615737285403586 - sys_corr_32: 0.09807293782506868 - sys_corr_33: 1.5488833831657787 - sys_corr_34: 0.7674261132628126 +- sys_corr_1: -6.32608526e+00 + sys_corr_2: -3.43941551e+00 + sys_corr_3: 3.34132774e+00 + sys_corr_4: -5.54189897e+00 + sys_corr_5: -1.66617648e+00 + sys_corr_6: 9.79375218e-01 + sys_corr_7: 2.48545588e-04 + sys_corr_8: -8.18780624e-02 + sys_corr_9: -4.33314844e-01 + sys_corr_10: 1.76883565e+00 + sys_corr_11: 1.67389205e-01 + sys_corr_12: 1.10553257e-01 + sys_corr_13: 4.26905813e-01 + sys_corr_14: -1.13880054e-01 + sys_corr_15: 9.61397761e-01 + sys_corr_16: -1.38205290e-02 + sys_corr_17: -9.50635852e+00 + sys_corr_18: -3.22491959e-04 + sys_corr_19: -4.49942607e-02 + sys_corr_20: -1.37555449e-01 + sys_corr_21: 5.82717267e-01 + sys_corr_22: -1.94707227e+00 + sys_corr_23: -3.75133894e+01 + sys_corr_24: -3.66614711e+00 + sys_corr_25: -7.52916753e+00 + sys_corr_26: -6.01747724e-01 + sys_corr_27: 1.69931770e-01 + sys_corr_28: 8.18516697e-01 + sys_corr_29: 1.51395396e+00 + sys_corr_30: -2.38124969e-01 + sys_corr_31: -8.61573729e-01 + sys_corr_32: 9.80729378e-02 + sys_corr_33: 1.54888338e+00 + sys_corr_34: 7.67426113e-01 stat: 54.0 sys_beam: 50.0 sys_luminosity: 51.0 -- sys_corr_1: -3.581622334817089 - sys_corr_2: -1.5952014747683114 - sys_corr_3: 1.6964197582238907 - sys_corr_4: -3.14699127645968 - sys_corr_5: -0.8213111707130163 - sys_corr_6: 0.8751706472028297 - sys_corr_7: 0.2206946879338174 - sys_corr_8: -0.1039628140716845 - sys_corr_9: -0.6365967085277067 - sys_corr_10: 0.9100948097625553 - sys_corr_11: 0.13025444043124915 - sys_corr_12: 0.34852058051337664 - sys_corr_13: 0.0009634194008526173 - sys_corr_14: -0.02441540783396363 - sys_corr_15: 0.23683126623681228 - sys_corr_16: -0.21312351825723796 - sys_corr_17: -4.887880950067251 - sys_corr_18: -9.666121426579344e-05 - sys_corr_19: -0.08679639349439601 - sys_corr_20: -0.21795914219999304 - sys_corr_21: 1.590603225066448 - sys_corr_22: 25.605815007759382 - sys_corr_23: -2.280210781651742 - sys_corr_24: -2.064997634263456 - sys_corr_25: -2.190450694893062 - sys_corr_26: -0.31575888365835214 - sys_corr_27: 0.1359336155779555 - sys_corr_28: 0.26453985522407586 - sys_corr_29: 0.7254250538695481 - sys_corr_30: -0.14873611967709635 - sys_corr_31: -0.3472172709889853 - sys_corr_32: -0.06366415037841579 - sys_corr_33: 0.7056752901753416 - sys_corr_34: 0.3418947996262172 +- sys_corr_1: -3.58162233e+00 + sys_corr_2: -1.59520147e+00 + sys_corr_3: 1.69641976e+00 + sys_corr_4: -3.14699128e+00 + sys_corr_5: -8.21311171e-01 + sys_corr_6: 8.75170647e-01 + sys_corr_7: 2.20694688e-01 + sys_corr_8: -1.03962814e-01 + sys_corr_9: -6.36596709e-01 + sys_corr_10: 9.10094810e-01 + sys_corr_11: 1.30254440e-01 + sys_corr_12: 3.48520581e-01 + sys_corr_13: 9.63419401e-04 + sys_corr_14: -2.44154078e-02 + sys_corr_15: 2.36831266e-01 + sys_corr_16: -2.13123518e-01 + sys_corr_17: -4.88788095e+00 + sys_corr_18: -9.66612143e-05 + sys_corr_19: -8.67963935e-02 + sys_corr_20: -2.17959142e-01 + sys_corr_21: 1.59060323e+00 + sys_corr_22: 2.56058150e+01 + sys_corr_23: -2.28021078e+00 + sys_corr_24: -2.06499763e+00 + sys_corr_25: -2.19045069e+00 + sys_corr_26: -3.15758884e-01 + sys_corr_27: 1.35933616e-01 + sys_corr_28: 2.64539855e-01 + sys_corr_29: 7.25425054e-01 + sys_corr_30: -1.48736120e-01 + sys_corr_31: -3.47217271e-01 + sys_corr_32: -6.36641504e-02 + sys_corr_33: 7.05675290e-01 + sys_corr_34: 3.41894800e-01 stat: 42.0 sys_beam: 31.0 sys_luminosity: 32.0 -- sys_corr_1: -1.92704439512093 - sys_corr_2: -0.8906975447977779 - sys_corr_3: 0.9859044565822684 - sys_corr_4: -1.9000065901869836 - sys_corr_5: -0.5000615975386107 - sys_corr_6: 0.46968476717803226 - sys_corr_7: 0.026567509006969116 - sys_corr_8: -0.24644151318863616 - sys_corr_9: -0.25414422874331366 - sys_corr_10: 0.5977450748892512 - sys_corr_11: 0.12461147105305874 - sys_corr_12: 0.22106489547049357 - sys_corr_13: 0.002600996773642191 - sys_corr_14: 0.18567315840945614 - sys_corr_15: 0.11880756529337104 - sys_corr_16: -0.18567999103821872 - sys_corr_17: -2.827258869382252 - sys_corr_18: -0.000199057444015986 - sys_corr_19: -0.11219010309612268 - sys_corr_20: -0.36203400976645245 - sys_corr_21: -19.330648169767073 - sys_corr_22: 1.9792982895274414 - sys_corr_23: -1.0760705803977701 - sys_corr_24: -0.9794399369764406 - sys_corr_25: -1.2690397198592585 - sys_corr_26: -0.11077568336772363 - sys_corr_27: -0.04550177309583325 - sys_corr_28: 0.014709472995865877 - sys_corr_29: 0.33436641955386703 - sys_corr_30: 0.01154124894717594 - sys_corr_31: -0.38390866128957885 - sys_corr_32: 0.06978441016484936 - sys_corr_33: 0.26523110211773226 - sys_corr_34: 0.06515123860033878 +- sys_corr_1: -1.92704440e+00 + sys_corr_2: -8.90697545e-01 + sys_corr_3: 9.85904457e-01 + sys_corr_4: -1.90000659e+00 + sys_corr_5: -5.00061598e-01 + sys_corr_6: 4.69684767e-01 + sys_corr_7: 2.65675090e-02 + sys_corr_8: -2.46441513e-01 + sys_corr_9: -2.54144229e-01 + sys_corr_10: 5.97745075e-01 + sys_corr_11: 1.24611471e-01 + sys_corr_12: 2.21064895e-01 + sys_corr_13: 2.60099677e-03 + sys_corr_14: 1.85673158e-01 + sys_corr_15: 1.18807565e-01 + sys_corr_16: -1.85679991e-01 + sys_corr_17: -2.82725887e+00 + sys_corr_18: -1.99057444e-04 + sys_corr_19: -1.12190103e-01 + sys_corr_20: -3.62034010e-01 + sys_corr_21: -1.93306482e+01 + sys_corr_22: 1.97929829e+00 + sys_corr_23: -1.07607058e+00 + sys_corr_24: -9.79439937e-01 + sys_corr_25: -1.26903972e+00 + sys_corr_26: -1.10775683e-01 + sys_corr_27: -4.55017731e-02 + sys_corr_28: 1.47094730e-02 + sys_corr_29: 3.34366420e-01 + sys_corr_30: 1.15412489e-02 + sys_corr_31: -3.83908661e-01 + sys_corr_32: 6.97844102e-02 + sys_corr_33: 2.65231102e-01 + sys_corr_34: 6.51512386e-02 stat: 32.0 sys_beam: 18.0 sys_luminosity: 19.0 -- sys_corr_1: -0.8296601388639502 - sys_corr_2: -0.38052517227827426 - sys_corr_3: 0.4256454984305276 - sys_corr_4: -0.8640659174103346 - sys_corr_5: -0.3029421108714407 - sys_corr_6: 0.21769504580249685 - sys_corr_7: -0.0513015110494587 - sys_corr_8: -0.1291910301867218 - sys_corr_9: -0.10721047160311574 - sys_corr_10: 0.15298473350908032 - sys_corr_11: 0.17487604901205464 - sys_corr_12: -0.012480190494210718 - sys_corr_13: 0.04226511417816975 - sys_corr_14: 0.0781708848543922 - sys_corr_15: 0.07360831837453956 - sys_corr_16: -0.10963219724160662 - sys_corr_17: -1.2120042253538605 - sys_corr_18: -0.000464890400867854 - sys_corr_19: -0.25803633958642397 - sys_corr_20: 11.79583433423467 - sys_corr_21: -0.5401002869199265 - sys_corr_22: 0.4778721145841973 - sys_corr_23: -0.40128728517884116 - sys_corr_24: -0.4773980799987802 - sys_corr_25: -0.5578977015713456 - sys_corr_26: 0.015910316661923305 - sys_corr_27: 0.0393153400977026 - sys_corr_28: -0.03491699302104453 - sys_corr_29: 0.15079334377679599 - sys_corr_30: -0.025448127463074663 - sys_corr_31: -0.12947869114023533 - sys_corr_32: 0.0030454953508836304 - sys_corr_33: 0.21539792088917062 - sys_corr_34: 0.050432772363266945 +- sys_corr_1: -8.29660139e-01 + sys_corr_2: -3.80525172e-01 + sys_corr_3: 4.25645498e-01 + sys_corr_4: -8.64065917e-01 + sys_corr_5: -3.02942111e-01 + sys_corr_6: 2.17695046e-01 + sys_corr_7: -5.13015110e-02 + sys_corr_8: -1.29191030e-01 + sys_corr_9: -1.07210472e-01 + sys_corr_10: 1.52984734e-01 + sys_corr_11: 1.74876049e-01 + sys_corr_12: -1.24801905e-02 + sys_corr_13: 4.22651142e-02 + sys_corr_14: 7.81708849e-02 + sys_corr_15: 7.36083184e-02 + sys_corr_16: -1.09632197e-01 + sys_corr_17: -1.21200423e+00 + sys_corr_18: -4.64890401e-04 + sys_corr_19: -2.58036340e-01 + sys_corr_20: 1.17958343e+01 + sys_corr_21: -5.40100287e-01 + sys_corr_22: 4.77872115e-01 + sys_corr_23: -4.01287285e-01 + sys_corr_24: -4.77398080e-01 + sys_corr_25: -5.57897702e-01 + sys_corr_26: 1.59103167e-02 + sys_corr_27: 3.93153401e-02 + sys_corr_28: -3.49169930e-02 + sys_corr_29: 1.50793344e-01 + sys_corr_30: -2.54481275e-02 + sys_corr_31: -1.29478691e-01 + sys_corr_32: 3.04549535e-03 + sys_corr_33: 2.15397921e-01 + sys_corr_34: 5.04327724e-02 stat: 22.0 sys_beam: 9.0 sys_luminosity: 9.0 -- sys_corr_1: -0.42393728550091253 - sys_corr_2: -0.1489439685954901 - sys_corr_3: 0.1981748571052783 - sys_corr_4: -0.39930231793851795 - sys_corr_5: -0.11765515578108467 - sys_corr_6: 0.10694488123136295 - sys_corr_7: -0.07370908109912086 - sys_corr_8: -0.13441755182880186 - sys_corr_9: -0.11536049109164451 - sys_corr_10: 0.048759737257209806 - sys_corr_11: 0.045216891531896765 - sys_corr_12: 0.10130389568750048 - sys_corr_13: 0.043221157167921076 - sys_corr_14: 0.02813618535335268 - sys_corr_15: 0.004731362627850262 - sys_corr_16: -0.11516055102018913 - sys_corr_17: -0.6185243817055616 - sys_corr_18: -0.0008188847909314705 - sys_corr_19: 7.911038971966892 - sys_corr_20: 0.3752800559584975 - sys_corr_21: -0.2667253838683477 - sys_corr_22: 0.3020038060076856 - sys_corr_23: -0.2136989781429229 - sys_corr_24: -0.25533032743675527 - sys_corr_25: -0.33152188617643563 - sys_corr_26: -0.031802320460943584 - sys_corr_27: -0.0450265446571122 - sys_corr_28: 0.015861015519048217 - sys_corr_29: 0.06645220360780067 - sys_corr_30: 0.0399015979789204 - sys_corr_31: -0.05325010135931567 - sys_corr_32: 0.028197119479108523 - sys_corr_33: 0.048312568185798266 - sys_corr_34: -0.018283308368153953 +- sys_corr_1: -4.23937286e-01 + sys_corr_2: -1.48943969e-01 + sys_corr_3: 1.98174857e-01 + sys_corr_4: -3.99302318e-01 + sys_corr_5: -1.17655156e-01 + sys_corr_6: 1.06944881e-01 + sys_corr_7: -7.37090811e-02 + sys_corr_8: -1.34417552e-01 + sys_corr_9: -1.15360491e-01 + sys_corr_10: 4.87597373e-02 + sys_corr_11: 4.52168915e-02 + sys_corr_12: 1.01303896e-01 + sys_corr_13: 4.32211572e-02 + sys_corr_14: 2.81361854e-02 + sys_corr_15: 4.73136263e-03 + sys_corr_16: -1.15160551e-01 + sys_corr_17: -6.18524382e-01 + sys_corr_18: -8.18884791e-04 + sys_corr_19: 7.91103897e+00 + sys_corr_20: 3.75280056e-01 + sys_corr_21: -2.66725384e-01 + sys_corr_22: 3.02003806e-01 + sys_corr_23: -2.13698978e-01 + sys_corr_24: -2.55330327e-01 + sys_corr_25: -3.31521886e-01 + sys_corr_26: -3.18023205e-02 + sys_corr_27: -4.50265447e-02 + sys_corr_28: 1.58610155e-02 + sys_corr_29: 6.64522036e-02 + sys_corr_30: 3.99015980e-02 + sys_corr_31: -5.32501014e-02 + sys_corr_32: 2.81971195e-02 + sys_corr_33: 4.83125682e-02 + sys_corr_34: -1.82833084e-02 stat: 16.0 sys_beam: 4.0 sys_luminosity: 4.0 -- sys_corr_1: -0.013414184810947185 - sys_corr_2: -0.0037960802643432707 - sys_corr_3: 0.007050325110555283 - sys_corr_4: -0.012793678842012284 - sys_corr_5: -0.006988237873416502 - sys_corr_6: -0.0011527303922321958 - sys_corr_7: -0.003828274413000623 - sys_corr_8: 0.005803516665110609 - sys_corr_9: 0.010110892923238884 - sys_corr_10: 0.00609970150731563 - sys_corr_11: -0.0027138425737638357 - sys_corr_12: 0.0038844748413529888 - sys_corr_13: -0.0002192947913103354 - sys_corr_14: -5.673249487655088e-05 - sys_corr_15: -0.005283439658330253 - sys_corr_16: -0.01041343514466209 - sys_corr_17: -0.009022711855039067 - sys_corr_18: 0.9993144938300689 - sys_corr_19: 0.006305972548117419 - sys_corr_20: 0.005629159396297987 - sys_corr_21: -0.003870372244989194 - sys_corr_22: 0.002448050388358444 - sys_corr_23: -0.011281196460244286 - sys_corr_24: -0.0016038955252109263 - sys_corr_25: -0.01500122302213559 - sys_corr_26: -0.0028588158298623084 - sys_corr_27: -0.0032024298305996894 - sys_corr_28: -0.0037895822907567595 - sys_corr_29: -0.0012810170229462568 - sys_corr_30: 0.00020952138699364335 - sys_corr_31: -0.0002487670121753776 - sys_corr_32: 0.0015993114173329787 - sys_corr_33: 1.836099161191098e-05 - sys_corr_34: 0.00045379693947543193 +- sys_corr_1: -1.34141848e-02 + sys_corr_2: -3.79608026e-03 + sys_corr_3: 7.05032511e-03 + sys_corr_4: -1.27936788e-02 + sys_corr_5: -6.98823787e-03 + sys_corr_6: -1.15273039e-03 + sys_corr_7: -3.82827441e-03 + sys_corr_8: 5.80351667e-03 + sys_corr_9: 1.01108929e-02 + sys_corr_10: 6.09970151e-03 + sys_corr_11: -2.71384257e-03 + sys_corr_12: 3.88447484e-03 + sys_corr_13: -2.19294791e-04 + sys_corr_14: -5.67324949e-05 + sys_corr_15: -5.28343966e-03 + sys_corr_16: -1.04134351e-02 + sys_corr_17: -9.02271186e-03 + sys_corr_18: 9.99314494e-01 + sys_corr_19: 6.30597255e-03 + sys_corr_20: 5.62915940e-03 + sys_corr_21: -3.87037224e-03 + sys_corr_22: 2.44805039e-03 + sys_corr_23: -1.12811965e-02 + sys_corr_24: -1.60389553e-03 + sys_corr_25: -1.50012230e-02 + sys_corr_26: -2.85881583e-03 + sys_corr_27: -3.20242983e-03 + sys_corr_28: -3.78958229e-03 + sys_corr_29: -1.28101702e-03 + sys_corr_30: 2.09521387e-04 + sys_corr_31: -2.48767012e-04 + sys_corr_32: 1.59931142e-03 + sys_corr_33: 1.83609916e-05 + sys_corr_34: 4.53796939e-04 stat: 3.0 sys_beam: 0.0 sys_luminosity: 0.0 -- sys_corr_1: -3038.5793019795487 - sys_corr_2: 768.1516197290289 - sys_corr_3: -485.10950751290517 - sys_corr_4: 53.08972426745481 - sys_corr_5: 7.850087868617356 - sys_corr_6: -88.0752030879723 - sys_corr_7: 137.255560716515 - sys_corr_8: 283.5081811025355 - sys_corr_9: -239.42618180677874 - sys_corr_10: -114.92822108914821 - sys_corr_11: 8.422450321818669 - sys_corr_12: 31.986276938757808 - sys_corr_13: 1.5071748439153685 - sys_corr_14: 6.896281410681093 - sys_corr_15: -7.595533001147252 - sys_corr_16: -7.633120097776844 - sys_corr_17: 1.019554927280346 - sys_corr_18: 7.284609808011454e-07 - sys_corr_19: -1.677835558256328e-05 - sys_corr_20: 0.0002553774607160113 - sys_corr_21: -0.0011339103675605186 - sys_corr_22: -0.0034156025741886443 - sys_corr_23: -0.005932843196957185 - sys_corr_24: -0.12807960938018645 - sys_corr_25: -7.564443431047872e-06 - sys_corr_26: 0.016222470669908985 - sys_corr_27: 0.06514473289223874 - sys_corr_28: 0.10371048272557544 - sys_corr_29: 0.06929157468647058 - sys_corr_30: 0.018776298638944915 - sys_corr_31: -0.021881712529177977 - sys_corr_32: -0.03606518967772038 - sys_corr_33: 0.03731793154041575 - sys_corr_34: -0.006212574245309134 +- sys_corr_1: -3.03857930e+03 + sys_corr_2: 7.68151620e+02 + sys_corr_3: -4.85109508e+02 + sys_corr_4: 5.30897243e+01 + sys_corr_5: 7.85008787e+00 + sys_corr_6: -8.80752031e+01 + sys_corr_7: 1.37255561e+02 + sys_corr_8: 2.83508181e+02 + sys_corr_9: -2.39426182e+02 + sys_corr_10: -1.14928221e+02 + sys_corr_11: 8.42245032e+00 + sys_corr_12: 3.19862769e+01 + sys_corr_13: 1.50717484e+00 + sys_corr_14: 6.89628141e+00 + sys_corr_15: -7.59553300e+00 + sys_corr_16: -7.63312010e+00 + sys_corr_17: 1.01955493e+00 + sys_corr_18: 7.28460981e-07 + sys_corr_19: -1.67783556e-05 + sys_corr_20: 2.55377461e-04 + sys_corr_21: -1.13391037e-03 + sys_corr_22: -3.41560257e-03 + sys_corr_23: -5.93284320e-03 + sys_corr_24: -1.28079609e-01 + sys_corr_25: -7.56444343e-06 + sys_corr_26: 1.62224707e-02 + sys_corr_27: 6.51447329e-02 + sys_corr_28: 1.03710483e-01 + sys_corr_29: 6.92915747e-02 + sys_corr_30: 1.87762986e-02 + sys_corr_31: -2.18817125e-02 + sys_corr_32: -3.60651897e-02 + sys_corr_33: 3.73179315e-02 + sys_corr_34: -6.21257425e-03 stat: 1200.0 sys_beam: 2400.0 sys_luminosity: 2700.0 -- sys_corr_1: -757.4168560908336 - sys_corr_2: 75.90309841401579 - sys_corr_3: 1987.0588271704805 - sys_corr_4: 380.5021771497316 - sys_corr_5: 186.65406281191193 - sys_corr_6: -98.9217781759554 - sys_corr_7: 19.38615156561904 - sys_corr_8: 90.24316654080147 - sys_corr_9: 97.8676222890205 - sys_corr_10: 257.88630047369344 - sys_corr_11: 27.805424969230906 - sys_corr_12: 182.17866766562153 - sys_corr_13: -40.106976892909024 - sys_corr_14: 11.344205336323334 - sys_corr_15: -37.39982404709869 - sys_corr_16: -32.34179686209249 - sys_corr_17: 1.0943227332297176 - sys_corr_18: -6.383721004830009e-06 - sys_corr_19: -3.428582414810528e-05 - sys_corr_20: 0.00046593140222122626 - sys_corr_21: 0.001654260439463211 - sys_corr_22: -0.003391244744211278 - sys_corr_23: 0.004148891256764481 - sys_corr_24: -0.009165474667735025 - sys_corr_25: 0.008144508683749125 - sys_corr_26: -0.02615015161099173 - sys_corr_27: -0.06131551104176138 - sys_corr_28: 0.012687205157749074 - sys_corr_29: 0.018693498085537576 - sys_corr_30: 0.014257784246066602 - sys_corr_31: -0.006241271517885556 - sys_corr_32: -0.006706266150284497 - sys_corr_33: 0.025389499587853755 - sys_corr_34: 0.005430933421555999 +- sys_corr_1: -7.57416856e+02 + sys_corr_2: 7.59030984e+01 + sys_corr_3: 1.98705883e+03 + sys_corr_4: 3.80502177e+02 + sys_corr_5: 1.86654063e+02 + sys_corr_6: -9.89217782e+01 + sys_corr_7: 1.93861516e+01 + sys_corr_8: 9.02431665e+01 + sys_corr_9: 9.78676223e+01 + sys_corr_10: 2.57886300e+02 + sys_corr_11: 2.78054250e+01 + sys_corr_12: 1.82178668e+02 + sys_corr_13: -4.01069769e+01 + sys_corr_14: 1.13442053e+01 + sys_corr_15: -3.73998240e+01 + sys_corr_16: -3.23417969e+01 + sys_corr_17: 1.09432273e+00 + sys_corr_18: -6.38372100e-06 + sys_corr_19: -3.42858241e-05 + sys_corr_20: 4.65931402e-04 + sys_corr_21: 1.65426044e-03 + sys_corr_22: -3.39124474e-03 + sys_corr_23: 4.14889126e-03 + sys_corr_24: -9.16547467e-03 + sys_corr_25: 8.14450868e-03 + sys_corr_26: -2.61501516e-02 + sys_corr_27: -6.13155110e-02 + sys_corr_28: 1.26872052e-02 + sys_corr_29: 1.86934981e-02 + sys_corr_30: 1.42577842e-02 + sys_corr_31: -6.24127152e-03 + sys_corr_32: -6.70626615e-03 + sys_corr_33: 2.53894996e-02 + sys_corr_34: 5.43093342e-03 stat: 900.0 sys_beam: 2100.0 sys_luminosity: 2400.0 -- sys_corr_1: -539.1116598566842 - sys_corr_2: -1082.1969538980472 - sys_corr_3: 139.265382634192 - sys_corr_4: 259.0007882801366 - sys_corr_5: -1235.363886047874 - sys_corr_6: -147.89924842514617 - sys_corr_7: -30.971965139081274 - sys_corr_8: 66.12783421118901 - sys_corr_9: 79.27645225016423 - sys_corr_10: 6.108339536541749 - sys_corr_11: 298.8256052265816 - sys_corr_12: -160.330528146026 - sys_corr_13: 123.74448329511154 - sys_corr_14: -32.43971184140428 - sys_corr_15: -11.811037446006932 - sys_corr_16: -23.921899411063883 - sys_corr_17: 0.5767811158596139 - sys_corr_18: -2.877751006037364e-06 - sys_corr_19: -1.7746259062945662e-05 - sys_corr_20: -0.001566867459788378 - sys_corr_21: 0.00047893537624898395 - sys_corr_22: 0.00013796288062966074 - sys_corr_23: 0.015193558356306796 - sys_corr_24: 0.08368951181576086 - sys_corr_25: 0.03252795209784276 - sys_corr_26: 0.012074739801167354 - sys_corr_27: -0.07568283304930938 - sys_corr_28: -0.1083968275524111 - sys_corr_29: -0.0635411547715441 - sys_corr_30: 0.022137948768953673 - sys_corr_31: -0.00040771647322797186 - sys_corr_32: 0.02919091810484506 - sys_corr_33: -0.0453382861834167 - sys_corr_34: 0.009281120601165673 +- sys_corr_1: -5.39111660e+02 + sys_corr_2: -1.08219695e+03 + sys_corr_3: 1.39265383e+02 + sys_corr_4: 2.59000788e+02 + sys_corr_5: -1.23536389e+03 + sys_corr_6: -1.47899248e+02 + sys_corr_7: -3.09719651e+01 + sys_corr_8: 6.61278342e+01 + sys_corr_9: 7.92764523e+01 + sys_corr_10: 6.10833954e+00 + sys_corr_11: 2.98825605e+02 + sys_corr_12: -1.60330528e+02 + sys_corr_13: 1.23744483e+02 + sys_corr_14: -3.24397118e+01 + sys_corr_15: -1.18110374e+01 + sys_corr_16: -2.39218994e+01 + sys_corr_17: 5.76781116e-01 + sys_corr_18: -2.87775101e-06 + sys_corr_19: -1.77462591e-05 + sys_corr_20: -1.56686746e-03 + sys_corr_21: 4.78935376e-04 + sys_corr_22: 1.37962881e-04 + sys_corr_23: 1.51935584e-02 + sys_corr_24: 8.36895118e-02 + sys_corr_25: 3.25279521e-02 + sys_corr_26: 1.20747398e-02 + sys_corr_27: -7.56828330e-02 + sys_corr_28: -1.08396828e-01 + sys_corr_29: -6.35411548e-02 + sys_corr_30: 2.21379488e-02 + sys_corr_31: -4.07716473e-04 + sys_corr_32: 2.91909181e-02 + sys_corr_33: -4.53382862e-02 + sys_corr_34: 9.28112060e-03 stat: 800.0 sys_beam: 1800.0 sys_luminosity: 2100.0 -- sys_corr_1: -346.6272090627615 - sys_corr_2: -1030.1819949549576 - sys_corr_3: 2.390594329861351 - sys_corr_4: -672.78453983986 - sys_corr_5: 431.24137151215854 - sys_corr_6: -736.2297158517026 - sys_corr_7: -0.9211964079143099 - sys_corr_8: 167.18955777019752 - sys_corr_9: 125.27532107231018 - sys_corr_10: 0.6952330910216087 - sys_corr_11: 153.66699423452076 - sys_corr_12: -132.51248962046958 - sys_corr_13: -319.00578860610113 - sys_corr_14: 92.20109904875525 - sys_corr_15: 52.134955258314186 - sys_corr_16: 11.019143373701738 - sys_corr_17: 0.8035534599422479 - sys_corr_18: -1.9494090665221805e-06 - sys_corr_19: 0.00045552923747546543 - sys_corr_20: -0.0005602017511281828 - sys_corr_21: 0.0017116083298726627 - sys_corr_22: -0.001211182521477481 - sys_corr_23: 0.013093740239202718 - sys_corr_24: 0.06633287088027 - sys_corr_25: 0.005741342860065388 - sys_corr_26: -0.005243893280841081 - sys_corr_27: -0.01489857513276601 - sys_corr_28: -0.0783238577473448 - sys_corr_29: -0.008103685999428574 - sys_corr_30: -0.028478571390254122 - sys_corr_31: -0.022098740078604417 - sys_corr_32: 0.06915915493567557 - sys_corr_33: -0.05225712733292187 - sys_corr_34: -0.021446400928380138 +- sys_corr_1: -3.46627209e+02 + sys_corr_2: -1.03018199e+03 + sys_corr_3: 2.39059433e+00 + sys_corr_4: -6.72784540e+02 + sys_corr_5: 4.31241372e+02 + sys_corr_6: -7.36229716e+02 + sys_corr_7: -9.21196408e-01 + sys_corr_8: 1.67189558e+02 + sys_corr_9: 1.25275321e+02 + sys_corr_10: 6.95233091e-01 + sys_corr_11: 1.53666994e+02 + sys_corr_12: -1.32512490e+02 + sys_corr_13: -3.19005789e+02 + sys_corr_14: 9.22010990e+01 + sys_corr_15: 5.21349553e+01 + sys_corr_16: 1.10191434e+01 + sys_corr_17: 8.03553460e-01 + sys_corr_18: -1.94940907e-06 + sys_corr_19: 4.55529237e-04 + sys_corr_20: -5.60201751e-04 + sys_corr_21: 1.71160833e-03 + sys_corr_22: -1.21118252e-03 + sys_corr_23: 1.30937402e-02 + sys_corr_24: 6.63328709e-02 + sys_corr_25: 5.74134286e-03 + sys_corr_26: -5.24389328e-03 + sys_corr_27: -1.48985751e-02 + sys_corr_28: -7.83238577e-02 + sys_corr_29: -8.10368600e-03 + sys_corr_30: -2.84785714e-02 + sys_corr_31: -2.20987401e-02 + sys_corr_32: 6.91591549e-02 + sys_corr_33: -5.22571273e-02 + sys_corr_34: -2.14464009e-02 stat: 700.0 sys_beam: 1500.0 sys_luminosity: 1800.0 -- sys_corr_1: -274.8755548245817 - sys_corr_2: -712.8587225878059 - sys_corr_3: 9.424364874672593 - sys_corr_4: -310.8102674355179 - sys_corr_5: 162.63611732394463 - sys_corr_6: 728.7752580649699 - sys_corr_7: -76.45444548330305 - sys_corr_8: 508.02440851374087 - sys_corr_9: 158.27207582811056 - sys_corr_10: 47.22082110864825 - sys_corr_11: 34.177741491180264 - sys_corr_12: 13.152729580562465 - sys_corr_13: -117.70211626149496 - sys_corr_14: -377.1740405636019 - sys_corr_15: 48.51723655536072 - sys_corr_16: 31.561531289814745 - sys_corr_17: 0.9822152491275199 - sys_corr_18: -2.4619998369937883e-06 - sys_corr_19: 0.0005612970734057122 - sys_corr_20: 0.0005386362464866584 - sys_corr_21: -0.0018154652507260658 - sys_corr_22: -0.006347847483479866 - sys_corr_23: 0.01722710906098292 - sys_corr_24: 0.0971189584262743 - sys_corr_25: 0.03514572275551389 - sys_corr_26: 0.04299205294754353 - sys_corr_27: -0.011167609711055196 - sys_corr_28: -0.0489137872311218 - sys_corr_29: -0.09846940785882753 - sys_corr_30: 0.020639971871378508 - sys_corr_31: -0.03877240980640265 - sys_corr_32: 0.0684835177457142 - sys_corr_33: -0.04952056140310505 - sys_corr_34: -0.003110697814741439 +- sys_corr_1: -2.74875555e+02 + sys_corr_2: -7.12858723e+02 + sys_corr_3: 9.42436487e+00 + sys_corr_4: -3.10810267e+02 + sys_corr_5: 1.62636117e+02 + sys_corr_6: 7.28775258e+02 + sys_corr_7: -7.64544455e+01 + sys_corr_8: 5.08024409e+02 + sys_corr_9: 1.58272076e+02 + sys_corr_10: 4.72208211e+01 + sys_corr_11: 3.41777415e+01 + sys_corr_12: 1.31527296e+01 + sys_corr_13: -1.17702116e+02 + sys_corr_14: -3.77174041e+02 + sys_corr_15: 4.85172366e+01 + sys_corr_16: 3.15615313e+01 + sys_corr_17: 9.82215249e-01 + sys_corr_18: -2.46199984e-06 + sys_corr_19: 5.61297073e-04 + sys_corr_20: 5.38636246e-04 + sys_corr_21: -1.81546525e-03 + sys_corr_22: -6.34784748e-03 + sys_corr_23: 1.72271091e-02 + sys_corr_24: 9.71189584e-02 + sys_corr_25: 3.51457228e-02 + sys_corr_26: 4.29920529e-02 + sys_corr_27: -1.11676097e-02 + sys_corr_28: -4.89137872e-02 + sys_corr_29: -9.84694079e-02 + sys_corr_30: 2.06399719e-02 + sys_corr_31: -3.87724098e-02 + sys_corr_32: 6.84835177e-02 + sys_corr_33: -4.95205614e-02 + sys_corr_34: -3.11069781e-03 stat: 600.0 sys_beam: 1200.0 sys_luminosity: 1400.0 -- sys_corr_1: -167.11074525470343 - sys_corr_2: -569.5733146002262 - sys_corr_3: -47.73246147183727 - sys_corr_4: -61.806638529232345 - sys_corr_5: 100.02781413206905 - sys_corr_6: 138.32754290098384 - sys_corr_7: -68.13641786503455 - sys_corr_8: -175.18878405870794 - sys_corr_9: -517.694932637839 - sys_corr_10: 375.78574105417664 - sys_corr_11: -22.35891354937338 - sys_corr_12: -171.54256789293112 - sys_corr_13: -77.79872639765557 - sys_corr_14: -20.624838123095753 - sys_corr_15: -333.835701074605 - sys_corr_16: 141.4699124882562 - sys_corr_17: 0.48158322751301486 - sys_corr_18: 4.34251599837717e-06 - sys_corr_19: 0.00012465687701771315 - sys_corr_20: 0.00027052987029853483 - sys_corr_21: 0.0015800747762538781 - sys_corr_22: -0.006142676190772772 - sys_corr_23: -0.010540544502370729 - sys_corr_24: 0.0990632567328151 - sys_corr_25: 0.028149024882223508 - sys_corr_26: 0.004982507679249789 - sys_corr_27: 0.02905722572707052 - sys_corr_28: -0.06471540581683867 - sys_corr_29: -0.04520273973785938 - sys_corr_30: 0.05994446708872569 - sys_corr_31: 0.05655868692284677 - sys_corr_32: -0.017598022463204896 - sys_corr_33: 0.03433469192197419 - sys_corr_34: -0.00920311386761883 +- sys_corr_1: -1.67110745e+02 + sys_corr_2: -5.69573315e+02 + sys_corr_3: -4.77324615e+01 + sys_corr_4: -6.18066385e+01 + sys_corr_5: 1.00027814e+02 + sys_corr_6: 1.38327543e+02 + sys_corr_7: -6.81364179e+01 + sys_corr_8: -1.75188784e+02 + sys_corr_9: -5.17694933e+02 + sys_corr_10: 3.75785741e+02 + sys_corr_11: -2.23589135e+01 + sys_corr_12: -1.71542568e+02 + sys_corr_13: -7.77987264e+01 + sys_corr_14: -2.06248381e+01 + sys_corr_15: -3.33835701e+02 + sys_corr_16: 1.41469912e+02 + sys_corr_17: 4.81583228e-01 + sys_corr_18: 4.34251600e-06 + sys_corr_19: 1.24656877e-04 + sys_corr_20: 2.70529870e-04 + sys_corr_21: 1.58007478e-03 + sys_corr_22: -6.14267619e-03 + sys_corr_23: -1.05405445e-02 + sys_corr_24: 9.90632567e-02 + sys_corr_25: 2.81490249e-02 + sys_corr_26: 4.98250768e-03 + sys_corr_27: 2.90572257e-02 + sys_corr_28: -6.47154058e-02 + sys_corr_29: -4.52027397e-02 + sys_corr_30: 5.99444671e-02 + sys_corr_31: 5.65586869e-02 + sys_corr_32: -1.75980225e-02 + sys_corr_33: 3.43346919e-02 + sys_corr_34: -9.20311387e-03 stat: 500.0 sys_beam: 800.0 sys_luminosity: 1000.0 -- sys_corr_1: -188.20228910192097 - sys_corr_2: -777.7968807961518 - sys_corr_3: -83.52314957182645 - sys_corr_4: -219.69021728484898 - sys_corr_5: 118.43402492878249 - sys_corr_6: 252.71378443435947 - sys_corr_7: 294.35554580813175 - sys_corr_8: -370.94543280885694 - sys_corr_9: -209.10455100615619 - sys_corr_10: -130.4239378291688 - sys_corr_11: 365.62822603010704 - sys_corr_12: 480.6203850587957 - sys_corr_13: 20.07994775873992 - sys_corr_14: 67.0668599086105 - sys_corr_15: 65.32932344673436 - sys_corr_16: 87.47120757016629 - sys_corr_17: -0.09826105456671294 - sys_corr_18: 8.386171914254327e-06 - sys_corr_19: -0.0010224700247347138 - sys_corr_20: -0.001994399799692106 - sys_corr_21: 0.008413697309132728 - sys_corr_22: -0.020615943201529086 - sys_corr_23: 0.03529448123666261 - sys_corr_24: 0.1840140486352533 - sys_corr_25: 0.05945090840246413 - sys_corr_26: 0.005920112777465722 - sys_corr_27: 0.03843289571388579 - sys_corr_28: 0.017788911413655146 - sys_corr_29: -0.042356022862622106 - sys_corr_30: 0.019926253823183634 - sys_corr_31: 0.017823211055244922 - sys_corr_32: -0.028407360893866834 - sys_corr_33: -0.015168614204167777 - sys_corr_34: -0.009995764040586337 +- sys_corr_1: -1.88202289e+02 + sys_corr_2: -7.77796881e+02 + sys_corr_3: -8.35231496e+01 + sys_corr_4: -2.19690217e+02 + sys_corr_5: 1.18434025e+02 + sys_corr_6: 2.52713784e+02 + sys_corr_7: 2.94355546e+02 + sys_corr_8: -3.70945433e+02 + sys_corr_9: -2.09104551e+02 + sys_corr_10: -1.30423938e+02 + sys_corr_11: 3.65628226e+02 + sys_corr_12: 4.80620385e+02 + sys_corr_13: 2.00799478e+01 + sys_corr_14: 6.70668599e+01 + sys_corr_15: 6.53293234e+01 + sys_corr_16: 8.74712076e+01 + sys_corr_17: -9.82610546e-02 + sys_corr_18: 8.38617191e-06 + sys_corr_19: -1.02247002e-03 + sys_corr_20: -1.99439980e-03 + sys_corr_21: 8.41369731e-03 + sys_corr_22: -2.06159432e-02 + sys_corr_23: 3.52944812e-02 + sys_corr_24: 1.84014049e-01 + sys_corr_25: 5.94509084e-02 + sys_corr_26: 5.92011278e-03 + sys_corr_27: 3.84328957e-02 + sys_corr_28: 1.77889114e-02 + sys_corr_29: -4.23560229e-02 + sys_corr_30: 1.99262538e-02 + sys_corr_31: 1.78232111e-02 + sys_corr_32: -2.84073609e-02 + sys_corr_33: -1.51686142e-02 + sys_corr_34: -9.99576404e-03 stat: 500.0 sys_beam: 900.0 sys_luminosity: 1000.0 -- sys_corr_1: -20.418282214869066 - sys_corr_2: -294.1283888544421 - sys_corr_3: -58.60919723330274 - sys_corr_4: -198.4189671916063 - sys_corr_5: 53.83653778533482 - sys_corr_6: 94.56972392250577 - sys_corr_7: -235.80701606356038 - sys_corr_8: -98.75510182568121 - sys_corr_9: -143.68649816865553 - sys_corr_10: -129.97796340553992 - sys_corr_11: 34.28747071368873 - sys_corr_12: 106.6323327296142 - sys_corr_13: -66.03659873895785 - sys_corr_14: -27.168441642658404 - sys_corr_15: -173.4434011120551 - sys_corr_16: -444.74631174407733 - sys_corr_17: -0.24157992028810552 - sys_corr_18: -1.9035352315173746e-05 - sys_corr_19: -0.0020680211971279166 - sys_corr_20: -0.0027686819272412073 - sys_corr_21: 0.008251447625954055 - sys_corr_22: -0.01736211565471414 - sys_corr_23: 0.0005594231670010069 - sys_corr_24: 0.0004801766306475359 - sys_corr_25: 0.04177596292425628 - sys_corr_26: -0.0019150653015336523 - sys_corr_27: -0.0348994723514428 - sys_corr_28: 0.16155295845037193 - sys_corr_29: 0.045016400588150714 - sys_corr_30: -0.03105103105077219 - sys_corr_31: 0.007999837636309516 - sys_corr_32: -0.13454097402344453 - sys_corr_33: 0.08854643213837997 - sys_corr_34: -0.035739132455740404 +- sys_corr_1: -2.04182822e+01 + sys_corr_2: -2.94128389e+02 + sys_corr_3: -5.86091972e+01 + sys_corr_4: -1.98418967e+02 + sys_corr_5: 5.38365378e+01 + sys_corr_6: 9.45697239e+01 + sys_corr_7: -2.35807016e+02 + sys_corr_8: -9.87551018e+01 + sys_corr_9: -1.43686498e+02 + sys_corr_10: -1.29977963e+02 + sys_corr_11: 3.42874707e+01 + sys_corr_12: 1.06632333e+02 + sys_corr_13: -6.60365987e+01 + sys_corr_14: -2.71684416e+01 + sys_corr_15: -1.73443401e+02 + sys_corr_16: -4.44746312e+02 + sys_corr_17: -2.41579920e-01 + sys_corr_18: -1.90353523e-05 + sys_corr_19: -2.06802120e-03 + sys_corr_20: -2.76868193e-03 + sys_corr_21: 8.25144763e-03 + sys_corr_22: -1.73621157e-02 + sys_corr_23: 5.59423167e-04 + sys_corr_24: 4.80176631e-04 + sys_corr_25: 4.17759629e-02 + sys_corr_26: -1.91506530e-03 + sys_corr_27: -3.48994724e-02 + sys_corr_28: 1.61552958e-01 + sys_corr_29: 4.50164006e-02 + sys_corr_30: -3.10510311e-02 + sys_corr_31: 7.99983764e-03 + sys_corr_32: -1.34540974e-01 + sys_corr_33: 8.85464321e-02 + sys_corr_34: -3.57391325e-02 stat: 400.0 sys_beam: 200.0 sys_luminosity: 300.0 -- sys_corr_1: -1418.5660286961804 - sys_corr_2: -300.8361897602871 - sys_corr_3: -372.17857782986243 - sys_corr_4: 110.85229077349663 - sys_corr_5: 213.07294567190775 - sys_corr_6: 192.03560835809975 - sys_corr_7: -315.0880721533624 - sys_corr_8: -688.3892318076679 - sys_corr_9: 537.9263076607407 - sys_corr_10: 188.27139649774628 - sys_corr_11: -46.37284914904026 - sys_corr_12: -58.693400527888706 - sys_corr_13: -14.504876419343022 - sys_corr_14: -14.744707792059414 - sys_corr_15: 3.8807055752414983 - sys_corr_16: 8.664528816324074 - sys_corr_17: 0.8337970308503269 - sys_corr_18: -3.098814478224953e-06 - sys_corr_19: -8.957681649048914e-05 - sys_corr_20: -0.00028537172120501696 - sys_corr_21: 0.0010659257978354304 - sys_corr_22: 0.003709249582708049 - sys_corr_23: 0.006878015330545861 - sys_corr_24: -0.19054727226455634 - sys_corr_25: -0.0244866575656111 - sys_corr_26: 0.005353427454552598 - sys_corr_27: 0.08616988285708459 - sys_corr_28: 0.14996497858208055 - sys_corr_29: 0.11390900690941448 - sys_corr_30: -0.03560935114682134 - sys_corr_31: 0.012681825896083541 - sys_corr_32: -0.030896932517204923 - sys_corr_33: 0.05081019719614959 - sys_corr_34: 0.052787600579011086 +- sys_corr_1: -1.41856603e+03 + sys_corr_2: -3.00836190e+02 + sys_corr_3: -3.72178578e+02 + sys_corr_4: 1.10852291e+02 + sys_corr_5: 2.13072946e+02 + sys_corr_6: 1.92035608e+02 + sys_corr_7: -3.15088072e+02 + sys_corr_8: -6.88389232e+02 + sys_corr_9: 5.37926308e+02 + sys_corr_10: 1.88271396e+02 + sys_corr_11: -4.63728491e+01 + sys_corr_12: -5.86934005e+01 + sys_corr_13: -1.45048764e+01 + sys_corr_14: -1.47447078e+01 + sys_corr_15: 3.88070558e+00 + sys_corr_16: 8.66452882e+00 + sys_corr_17: 8.33797031e-01 + sys_corr_18: -3.09881448e-06 + sys_corr_19: -8.95768165e-05 + sys_corr_20: -2.85371721e-04 + sys_corr_21: 1.06592580e-03 + sys_corr_22: 3.70924958e-03 + sys_corr_23: 6.87801533e-03 + sys_corr_24: -1.90547272e-01 + sys_corr_25: -2.44866576e-02 + sys_corr_26: 5.35342745e-03 + sys_corr_27: 8.61698829e-02 + sys_corr_28: 1.49964979e-01 + sys_corr_29: 1.13909007e-01 + sys_corr_30: -3.56093511e-02 + sys_corr_31: 1.26818259e-02 + sys_corr_32: -3.08969325e-02 + sys_corr_33: 5.08101972e-02 + sys_corr_34: 5.27876006e-02 stat: 900.0 sys_beam: 1200.0 sys_luminosity: 1600.0 -- sys_corr_1: -379.7758627502127 - sys_corr_2: -614.7027426318841 - sys_corr_3: 806.9723200388609 - sys_corr_4: 129.3489782687054 - sys_corr_5: 329.5697346931325 - sys_corr_6: 180.10017656486775 - sys_corr_7: -83.25772608031659 - sys_corr_8: -249.97342476735633 - sys_corr_9: -217.19952916877463 - sys_corr_10: -625.1260740967149 - sys_corr_11: -89.05430339409723 - sys_corr_12: -320.1639682551923 - sys_corr_13: 70.13671643344865 - sys_corr_14: -28.02170633911111 - sys_corr_15: 56.04682273598595 - sys_corr_16: 47.58911806040465 - sys_corr_17: 0.45562515462967046 - sys_corr_18: 1.149583961098205e-05 - sys_corr_19: 0.00013258230364433942 - sys_corr_20: 0.00013817399013878702 - sys_corr_21: -0.005874689172630374 - sys_corr_22: 0.0105015002645333 - sys_corr_23: -0.017946231148278636 - sys_corr_24: -0.21644468180012844 - sys_corr_25: -0.03488192226888277 - sys_corr_26: -0.06857859750270756 - sys_corr_27: -0.04922123760254109 - sys_corr_28: 0.07731091052149813 - sys_corr_29: 0.0760439992645911 - sys_corr_30: -0.025643183602308793 - sys_corr_31: -0.027707930572531004 - sys_corr_32: -0.039392965654265095 - sys_corr_33: 0.008744923900430737 - sys_corr_34: 0.005484652229986684 +- sys_corr_1: -3.79775863e+02 + sys_corr_2: -6.14702743e+02 + sys_corr_3: 8.06972320e+02 + sys_corr_4: 1.29348978e+02 + sys_corr_5: 3.29569735e+02 + sys_corr_6: 1.80100177e+02 + sys_corr_7: -8.32577261e+01 + sys_corr_8: -2.49973425e+02 + sys_corr_9: -2.17199529e+02 + sys_corr_10: -6.25126074e+02 + sys_corr_11: -8.90543034e+01 + sys_corr_12: -3.20163968e+02 + sys_corr_13: 7.01367164e+01 + sys_corr_14: -2.80217063e+01 + sys_corr_15: 5.60468227e+01 + sys_corr_16: 4.75891181e+01 + sys_corr_17: 4.55625155e-01 + sys_corr_18: 1.14958396e-05 + sys_corr_19: 1.32582304e-04 + sys_corr_20: 1.38173990e-04 + sys_corr_21: -5.87468917e-03 + sys_corr_22: 1.05015003e-02 + sys_corr_23: -1.79462311e-02 + sys_corr_24: -2.16444682e-01 + sys_corr_25: -3.48819223e-02 + sys_corr_26: -6.85785975e-02 + sys_corr_27: -4.92212376e-02 + sys_corr_28: 7.73109105e-02 + sys_corr_29: 7.60439993e-02 + sys_corr_30: -2.56431836e-02 + sys_corr_31: -2.77079306e-02 + sys_corr_32: -3.93929657e-02 + sys_corr_33: 8.74492390e-03 + sys_corr_34: 5.48465223e-03 stat: 700.0 sys_beam: 1000.0 sys_luminosity: 1400.0 -- sys_corr_1: -239.61349262110903 - sys_corr_2: -678.8206626587207 - sys_corr_3: 43.04893366922303 - sys_corr_4: -55.83800780750276 - sys_corr_5: -634.4991542699746 - sys_corr_6: -25.947554268122953 - sys_corr_7: 41.427904422470746 - sys_corr_8: -54.053308811601546 - sys_corr_9: -16.362379243605634 - sys_corr_10: -129.3827349946374 - sys_corr_11: -592.7873743872756 - sys_corr_12: 256.376068090325 - sys_corr_13: -265.5698980460146 - sys_corr_14: 43.29483884631206 - sys_corr_15: -1.6211538751021453 - sys_corr_16: 48.76481505905352 - sys_corr_17: 0.8098292641352782 - sys_corr_18: -2.8081644488668546e-06 - sys_corr_19: 0.00010808868172042699 - sys_corr_20: 0.0016355893447000552 - sys_corr_21: -0.00017695688461455728 - sys_corr_22: -0.0018627281863201567 - sys_corr_23: -0.007389095578738002 - sys_corr_24: -0.09727117032053997 - sys_corr_25: -0.0042151521006173415 - sys_corr_26: -0.005318909529497028 - sys_corr_27: -0.01322897970468228 - sys_corr_28: 0.0027848674946107585 - sys_corr_29: 0.07434987123379137 - sys_corr_30: -0.033407111180520054 - sys_corr_31: 0.020745837975269153 - sys_corr_32: -0.03494504746870314 - sys_corr_33: 0.04376355950908848 - sys_corr_34: -0.021720614718830137 +- sys_corr_1: -2.39613493e+02 + sys_corr_2: -6.78820663e+02 + sys_corr_3: 4.30489337e+01 + sys_corr_4: -5.58380078e+01 + sys_corr_5: -6.34499154e+02 + sys_corr_6: -2.59475543e+01 + sys_corr_7: 4.14279044e+01 + sys_corr_8: -5.40533088e+01 + sys_corr_9: -1.63623792e+01 + sys_corr_10: -1.29382735e+02 + sys_corr_11: -5.92787374e+02 + sys_corr_12: 2.56376068e+02 + sys_corr_13: -2.65569898e+02 + sys_corr_14: 4.32948388e+01 + sys_corr_15: -1.62115388e+00 + sys_corr_16: 4.87648151e+01 + sys_corr_17: 8.09829264e-01 + sys_corr_18: -2.80816445e-06 + sys_corr_19: 1.08088682e-04 + sys_corr_20: 1.63558934e-03 + sys_corr_21: -1.76956885e-04 + sys_corr_22: -1.86272819e-03 + sys_corr_23: -7.38909558e-03 + sys_corr_24: -9.72711703e-02 + sys_corr_25: -4.21515210e-03 + sys_corr_26: -5.31890953e-03 + sys_corr_27: -1.32289797e-02 + sys_corr_28: 2.78486749e-03 + sys_corr_29: 7.43498712e-02 + sys_corr_30: -3.34071112e-02 + sys_corr_31: 2.07458380e-02 + sys_corr_32: -3.49450475e-02 + sys_corr_33: 4.37635595e-02 + sys_corr_34: -2.17206147e-02 stat: 600.0 sys_beam: 1000.0 sys_luminosity: 1300.0 -- sys_corr_1: -222.80016800556484 - sys_corr_2: -742.5368422506577 - sys_corr_3: -36.82727486026367 - sys_corr_4: -408.1920481982058 - sys_corr_5: 263.33760027407544 - sys_corr_6: -456.73499060811815 - sys_corr_7: -7.855868883316092 - sys_corr_8: 78.72472843090611 - sys_corr_9: 44.689708345204586 - sys_corr_10: 42.113391324895055 - sys_corr_11: -238.17127568567926 - sys_corr_12: 147.62736263903827 - sys_corr_13: 522.6255945867229 - sys_corr_14: -164.03665899925042 - sys_corr_15: -66.0606204633717 - sys_corr_16: 10.446280909012897 - sys_corr_17: 0.7081767021411463 - sys_corr_18: -4.695676677081322e-06 - sys_corr_19: -0.0001868136902926952 - sys_corr_20: 0.0008357494857507038 - sys_corr_21: -0.0014647779094907588 - sys_corr_22: 0.0005052468688521042 - sys_corr_23: 0.015115372379762826 - sys_corr_24: -0.00481328920528963 - sys_corr_25: 0.02460006759209741 - sys_corr_26: 0.028378068729793777 - sys_corr_27: -0.0022542242129545463 - sys_corr_28: -0.05325945713631112 - sys_corr_29: -0.04791596442704287 - sys_corr_30: 0.06819233827443441 - sys_corr_31: 0.044851504994359914 - sys_corr_32: 2.8937518309524204e-05 - sys_corr_33: 0.0024776978181886775 - sys_corr_34: 0.016243543514662586 +- sys_corr_1: -2.22800168e+02 + sys_corr_2: -7.42536842e+02 + sys_corr_3: -3.68272749e+01 + sys_corr_4: -4.08192048e+02 + sys_corr_5: 2.63337600e+02 + sys_corr_6: -4.56734991e+02 + sys_corr_7: -7.85586888e+00 + sys_corr_8: 7.87247284e+01 + sys_corr_9: 4.46897083e+01 + sys_corr_10: 4.21133913e+01 + sys_corr_11: -2.38171276e+02 + sys_corr_12: 1.47627363e+02 + sys_corr_13: 5.22625595e+02 + sys_corr_14: -1.64036659e+02 + sys_corr_15: -6.60606205e+01 + sys_corr_16: 1.04462809e+01 + sys_corr_17: 7.08176702e-01 + sys_corr_18: -4.69567668e-06 + sys_corr_19: -1.86813690e-04 + sys_corr_20: 8.35749486e-04 + sys_corr_21: -1.46477791e-03 + sys_corr_22: 5.05246869e-04 + sys_corr_23: 1.51153724e-02 + sys_corr_24: -4.81328921e-03 + sys_corr_25: 2.46000676e-02 + sys_corr_26: 2.83780687e-02 + sys_corr_27: -2.25422421e-03 + sys_corr_28: -5.32594571e-02 + sys_corr_29: -4.79159644e-02 + sys_corr_30: 6.81923383e-02 + sys_corr_31: 4.48515050e-02 + sys_corr_32: 2.89375183e-05 + sys_corr_33: 2.47769782e-03 + sys_corr_34: 1.62435435e-02 stat: 600.0 sys_beam: 900.0 sys_luminosity: 1200.0 -- sys_corr_1: -221.03406480331822 - sys_corr_2: -598.7026972313603 - sys_corr_3: 7.879832997776759 - sys_corr_4: -218.47633151977286 - sys_corr_5: 119.79805532288626 - sys_corr_6: 540.0535716310892 - sys_corr_7: -14.335697968369436 - sys_corr_8: 370.33754643475294 - sys_corr_9: 156.56323982872613 - sys_corr_10: 48.8508901721728 - sys_corr_11: -72.25805431862459 - sys_corr_12: -60.236085152794395 - sys_corr_13: 166.2409610002786 - sys_corr_14: 496.0419192105175 - sys_corr_15: -42.90701380970428 - sys_corr_16: -16.037262957111544 - sys_corr_17: 0.47852053694841873 - sys_corr_18: -4.710614020133946e-06 - sys_corr_19: -9.20596815878394e-05 - sys_corr_20: -0.0012894448180819224 - sys_corr_21: 0.005305379878285471 - sys_corr_22: -0.004502053808524988 - sys_corr_23: 0.00938338650125305 - sys_corr_24: 0.1241067869379027 - sys_corr_25: 0.036524833276287104 - sys_corr_26: -0.026124954404063743 - sys_corr_27: 0.02700475754557667 - sys_corr_28: -0.022177739727000635 - sys_corr_29: -0.04456292446846311 - sys_corr_30: 0.028757506354543067 - sys_corr_31: 0.05203761053446031 - sys_corr_32: 0.05860786606393608 - sys_corr_33: -0.05914759281178291 - sys_corr_34: 0.0033480429964207943 +- sys_corr_1: -2.21034065e+02 + sys_corr_2: -5.98702697e+02 + sys_corr_3: 7.87983300e+00 + sys_corr_4: -2.18476332e+02 + sys_corr_5: 1.19798055e+02 + sys_corr_6: 5.40053572e+02 + sys_corr_7: -1.43356980e+01 + sys_corr_8: 3.70337546e+02 + sys_corr_9: 1.56563240e+02 + sys_corr_10: 4.88508902e+01 + sys_corr_11: -7.22580543e+01 + sys_corr_12: -6.02360852e+01 + sys_corr_13: 1.66240961e+02 + sys_corr_14: 4.96041919e+02 + sys_corr_15: -4.29070138e+01 + sys_corr_16: -1.60372630e+01 + sys_corr_17: 4.78520537e-01 + sys_corr_18: -4.71061402e-06 + sys_corr_19: -9.20596816e-05 + sys_corr_20: -1.28944482e-03 + sys_corr_21: 5.30537988e-03 + sys_corr_22: -4.50205381e-03 + sys_corr_23: 9.38338650e-03 + sys_corr_24: 1.24106787e-01 + sys_corr_25: 3.65248333e-02 + sys_corr_26: -2.61249544e-02 + sys_corr_27: 2.70047575e-02 + sys_corr_28: -2.21777397e-02 + sys_corr_29: -4.45629245e-02 + sys_corr_30: 2.87575064e-02 + sys_corr_31: 5.20376105e-02 + sys_corr_32: 5.86078661e-02 + sys_corr_33: -5.91475928e-02 + sys_corr_34: 3.34804300e-03 stat: 600.0 sys_beam: 800.0 sys_luminosity: 1100.0 -- sys_corr_1: -175.95234830648135 - sys_corr_2: -458.2971920158765 - sys_corr_3: -25.221580090315616 - sys_corr_4: 34.36989661893115 - sys_corr_5: 36.82367806379523 - sys_corr_6: 68.2313935314736 - sys_corr_7: -45.66847954320388 - sys_corr_8: -111.32792227020762 - sys_corr_9: -424.8650642158528 - sys_corr_10: 408.5006539031902 - sys_corr_11: -128.01638358133124 - sys_corr_12: -105.17863116654289 - sys_corr_13: 49.58952197883074 - sys_corr_14: 17.210940422190852 - sys_corr_15: 392.3340808181993 - sys_corr_16: -123.20759730685332 - sys_corr_17: 0.758099843284734 - sys_corr_18: 5.007363639458017e-06 - sys_corr_19: -0.00036884888231158573 - sys_corr_20: -0.0012978386362298496 - sys_corr_21: 0.0054106947027759795 - sys_corr_22: -0.013313942732976982 - sys_corr_23: 0.051156959887365086 - sys_corr_24: 0.23458858072680083 - sys_corr_25: 0.06360147645469062 - sys_corr_26: 0.013309433725949454 - sys_corr_27: -0.04071310626281232 - sys_corr_28: -0.02817785212289181 - sys_corr_29: -0.17995056171421395 - sys_corr_30: -0.021692423247824093 - sys_corr_31: -0.00700966732790282 - sys_corr_32: 0.037173541238498344 - sys_corr_33: -0.12043966335736828 - sys_corr_34: 0.015433714109959955 +- sys_corr_1: -1.75952348e+02 + sys_corr_2: -4.58297192e+02 + sys_corr_3: -2.52215801e+01 + sys_corr_4: 3.43698966e+01 + sys_corr_5: 3.68236781e+01 + sys_corr_6: 6.82313935e+01 + sys_corr_7: -4.56684795e+01 + sys_corr_8: -1.11327922e+02 + sys_corr_9: -4.24865064e+02 + sys_corr_10: 4.08500654e+02 + sys_corr_11: -1.28016384e+02 + sys_corr_12: -1.05178631e+02 + sys_corr_13: 4.95895220e+01 + sys_corr_14: 1.72109404e+01 + sys_corr_15: 3.92334081e+02 + sys_corr_16: -1.23207597e+02 + sys_corr_17: 7.58099843e-01 + sys_corr_18: 5.00736364e-06 + sys_corr_19: -3.68848882e-04 + sys_corr_20: -1.29783864e-03 + sys_corr_21: 5.41069470e-03 + sys_corr_22: -1.33139427e-02 + sys_corr_23: 5.11569599e-02 + sys_corr_24: 2.34588581e-01 + sys_corr_25: 6.36014765e-02 + sys_corr_26: 1.33094337e-02 + sys_corr_27: -4.07131063e-02 + sys_corr_28: -2.81778521e-02 + sys_corr_29: -1.79950562e-01 + sys_corr_30: -2.16924232e-02 + sys_corr_31: -7.00966733e-03 + sys_corr_32: 3.71735412e-02 + sys_corr_33: -1.20439663e-01 + sys_corr_34: 1.54337141e-02 stat: 500.0 sys_beam: 700.0 sys_luminosity: 900.0 -- sys_corr_1: -183.14713236431768 - sys_corr_2: 567.3613770804153 - sys_corr_3: 468.5631214609907 - sys_corr_4: -942.5696139985935 - sys_corr_5: -309.77329328943574 - sys_corr_6: 193.68459039286734 - sys_corr_7: 711.2139889472825 - sys_corr_8: -281.51288568753813 - sys_corr_9: 108.21391439053173 - sys_corr_10: 77.90499127010344 - sys_corr_11: -58.04127429123355 - sys_corr_12: -198.56395558603836 - sys_corr_13: 23.547862549528542 - sys_corr_14: -43.82890699205807 - sys_corr_15: -20.506574142854802 - sys_corr_16: -67.4337580528403 - sys_corr_17: 1.4190064875049482 - sys_corr_18: -3.892991343558439e-06 - sys_corr_19: -0.0001779767176778534 - sys_corr_20: -0.0017744229331917573 - sys_corr_21: 0.005908187636416397 - sys_corr_22: -0.014350998864710219 - sys_corr_23: 0.027622432692232517 - sys_corr_24: 0.18750360514632944 - sys_corr_25: 0.054626057945292544 - sys_corr_26: 0.01028457841953876 - sys_corr_27: -0.04081526804418747 - sys_corr_28: -0.0392171074296807 - sys_corr_29: -0.1371256172369678 - sys_corr_30: 0.01775950055697494 - sys_corr_31: 0.06695235137986345 - sys_corr_32: -0.0037466924283145976 - sys_corr_33: -0.06196728952533849 - sys_corr_34: -0.019287334660444688 +- sys_corr_1: -1.83147132e+02 + sys_corr_2: 5.67361377e+02 + sys_corr_3: 4.68563121e+02 + sys_corr_4: -9.42569614e+02 + sys_corr_5: -3.09773293e+02 + sys_corr_6: 1.93684590e+02 + sys_corr_7: 7.11213989e+02 + sys_corr_8: -2.81512886e+02 + sys_corr_9: 1.08213914e+02 + sys_corr_10: 7.79049913e+01 + sys_corr_11: -5.80412743e+01 + sys_corr_12: -1.98563956e+02 + sys_corr_13: 2.35478625e+01 + sys_corr_14: -4.38289070e+01 + sys_corr_15: -2.05065741e+01 + sys_corr_16: -6.74337581e+01 + sys_corr_17: 1.41900649e+00 + sys_corr_18: -3.89299134e-06 + sys_corr_19: -1.77976718e-04 + sys_corr_20: -1.77442293e-03 + sys_corr_21: 5.90818764e-03 + sys_corr_22: -1.43509989e-02 + sys_corr_23: 2.76224327e-02 + sys_corr_24: 1.87503605e-01 + sys_corr_25: 5.46260579e-02 + sys_corr_26: 1.02845784e-02 + sys_corr_27: -4.08152680e-02 + sys_corr_28: -3.92171074e-02 + sys_corr_29: -1.37125617e-01 + sys_corr_30: 1.77595006e-02 + sys_corr_31: 6.69523514e-02 + sys_corr_32: -3.74669243e-03 + sys_corr_33: -6.19672895e-02 + sys_corr_34: -1.92873347e-02 stat: 600.0 sys_beam: 1000.0 sys_luminosity: 1400.0 -- sys_corr_1: -108.57118702106705 - sys_corr_2: 839.8291501072298 - sys_corr_3: 459.83908701836526 - sys_corr_4: -925.6968612905123 - sys_corr_5: -400.4040360456139 - sys_corr_6: 42.689179362571416 - sys_corr_7: -752.2174879814357 - sys_corr_8: -53.071081894755764 - sys_corr_9: -128.09208022343665 - sys_corr_10: -32.983572819809304 - sys_corr_11: 74.02432402617757 - sys_corr_12: 78.5267575038791 - sys_corr_13: 36.423576518715215 - sys_corr_14: 39.17038903485127 - sys_corr_15: 53.70701716655172 - sys_corr_16: 94.08338628291769 - sys_corr_17: 0.6888256080273318 - sys_corr_18: 4.136991763901693e-07 - sys_corr_19: -0.0008576650387597874 - sys_corr_20: -0.002692624413594671 - sys_corr_21: 0.00753942440354821 - sys_corr_22: -0.01576189784794326 - sys_corr_23: 0.04972357343845047 - sys_corr_24: 0.14135531791325082 - sys_corr_25: 0.08199691279107578 - sys_corr_26: 0.010188403737671355 - sys_corr_27: 0.023524867407479545 - sys_corr_28: -0.04847116685703295 - sys_corr_29: -0.03684786732397083 - sys_corr_30: -0.007012670525575931 - sys_corr_31: 0.012757665665888493 - sys_corr_32: 0.02273651715658992 - sys_corr_33: -0.041124969668091094 - sys_corr_34: 0.018462409570258135 +- sys_corr_1: -1.08571187e+02 + sys_corr_2: 8.39829150e+02 + sys_corr_3: 4.59839087e+02 + sys_corr_4: -9.25696861e+02 + sys_corr_5: -4.00404036e+02 + sys_corr_6: 4.26891794e+01 + sys_corr_7: -7.52217488e+02 + sys_corr_8: -5.30710819e+01 + sys_corr_9: -1.28092080e+02 + sys_corr_10: -3.29835728e+01 + sys_corr_11: 7.40243240e+01 + sys_corr_12: 7.85267575e+01 + sys_corr_13: 3.64235765e+01 + sys_corr_14: 3.91703890e+01 + sys_corr_15: 5.37070172e+01 + sys_corr_16: 9.40833863e+01 + sys_corr_17: 6.88825608e-01 + sys_corr_18: 4.13699176e-07 + sys_corr_19: -8.57665039e-04 + sys_corr_20: -2.69262441e-03 + sys_corr_21: 7.53942440e-03 + sys_corr_22: -1.57618978e-02 + sys_corr_23: 4.97235734e-02 + sys_corr_24: 1.41355318e-01 + sys_corr_25: 8.19969128e-02 + sys_corr_26: 1.01884037e-02 + sys_corr_27: 2.35248674e-02 + sys_corr_28: -4.84711669e-02 + sys_corr_29: -3.68478673e-02 + sys_corr_30: -7.01267053e-03 + sys_corr_31: 1.27576657e-02 + sys_corr_32: 2.27365172e-02 + sys_corr_33: -4.11249697e-02 + sys_corr_34: 1.84624096e-02 stat: 700.0 sys_beam: 500.0 sys_luminosity: 700.0 diff --git a/nnpdf_data/nnpdf_data/commondata/LHCB_WPWM_7TEV_MUON/filter.py b/nnpdf_data/nnpdf_data/commondata/LHCB_WPWM_7TEV_MUON/filter.py index c61279cbe8..5c62aee81b 100644 --- a/nnpdf_data/nnpdf_data/commondata/LHCB_WPWM_7TEV_MUON/filter.py +++ b/nnpdf_data/nnpdf_data/commondata/LHCB_WPWM_7TEV_MUON/filter.py @@ -4,7 +4,9 @@ import pandas as pd import yaml -from nnpdf_data.filter_utils.utils import covmat_to_artunc +from nnpdf_data.filter_utils.utils import covmat_to_artunc, prettify_float + +yaml.add_representer(float, prettify_float) MZ_VALUE = 91.1876 # GeV MW_VALUE = 80.398 # GeV diff --git a/nnpdf_data/nnpdf_data/commondata/LHCB_WPWM_7TEV_MUON/kinematics.yaml b/nnpdf_data/nnpdf_data/commondata/LHCB_WPWM_7TEV_MUON/kinematics.yaml index 6a470e1808..c57a39710b 100644 --- a/nnpdf_data/nnpdf_data/commondata/LHCB_WPWM_7TEV_MUON/kinematics.yaml +++ b/nnpdf_data/nnpdf_data/commondata/LHCB_WPWM_7TEV_MUON/kinematics.yaml @@ -5,7 +5,7 @@ bins: max: 2.25 M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null @@ -17,7 +17,7 @@ bins: max: 2.5 M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null @@ -29,7 +29,7 @@ bins: max: 2.75 M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null @@ -41,7 +41,7 @@ bins: max: 3.0 M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null @@ -53,7 +53,7 @@ bins: max: 3.25 M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null @@ -65,7 +65,7 @@ bins: max: 3.5 M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null @@ -77,7 +77,7 @@ bins: max: 4.0 M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null @@ -89,7 +89,7 @@ bins: max: 4.5 M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null @@ -101,7 +101,7 @@ bins: max: 2.25 M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null @@ -113,7 +113,7 @@ bins: max: 2.5 M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null @@ -125,7 +125,7 @@ bins: max: 2.75 M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null @@ -137,7 +137,7 @@ bins: max: 3.0 M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null @@ -149,7 +149,7 @@ bins: max: 3.25 M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null @@ -161,7 +161,7 @@ bins: max: 3.5 M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null @@ -173,7 +173,7 @@ bins: max: 4.0 M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null @@ -185,7 +185,7 @@ bins: max: 4.5 M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null diff --git a/nnpdf_data/nnpdf_data/commondata/LHCB_WPWM_7TEV_MUON/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/LHCB_WPWM_7TEV_MUON/uncertainties.yaml index 974212ee0a..a33173a9c4 100644 --- a/nnpdf_data/nnpdf_data/commondata/LHCB_WPWM_7TEV_MUON/uncertainties.yaml +++ b/nnpdf_data/nnpdf_data/commondata/LHCB_WPWM_7TEV_MUON/uncertainties.yaml @@ -144,579 +144,579 @@ definitions: treatment: MULT type: LHCBLUMI7TEV bins: -- sys_corr_1: -2989.0584801198097 - sys_corr_2: 1741.235273419759 - sys_corr_3: 250.25092532668617 - sys_corr_4: -192.3129135381235 - sys_corr_5: 109.18523811879507 - sys_corr_6: 102.5660890278907 - sys_corr_7: -110.44616534215558 - sys_corr_8: 90.69732310440682 - sys_corr_9: -130.2139122911393 - sys_corr_10: 344.3802792048472 - sys_corr_11: 52.223392734681866 - sys_corr_12: -53.06781238153589 - sys_corr_13: 1.4345565335488928 - sys_corr_14: 6.801894197502721 - sys_corr_15: -2.4411069949309856 - sys_corr_16: 1.5246755785071902 - sys_corr_17: 0.4789441759397834 - sys_corr_18: -0.03726763257395264 - sys_corr_19: 5.144752523465234e-05 - sys_corr_20: -6.207631613456992e-05 - sys_corr_21: 0.0004978535045622172 - sys_corr_22: -0.0013325438576271464 - sys_corr_23: -0.03153912505699979 - sys_corr_24: 0.0010900115764458024 - sys_corr_25: 0.0005255700735465567 - sys_corr_26: 0.000882125985270972 - sys_corr_27: 0.019560124807931616 - sys_corr_28: 0.02273515254318484 - sys_corr_29: -0.07187191336322789 - sys_corr_30: 0.007576816752288809 - sys_corr_31: -0.0011467786332942042 - sys_corr_32: -0.059708271742577396 - sys_corr_33: -0.006654182936852872 +- sys_corr_1: -2.98905848e+03 + sys_corr_2: 1.74123527e+03 + sys_corr_3: 2.50250925e+02 + sys_corr_4: -1.92312914e+02 + sys_corr_5: 1.09185238e+02 + sys_corr_6: 1.02566089e+02 + sys_corr_7: -1.10446165e+02 + sys_corr_8: 9.06973231e+01 + sys_corr_9: -1.30213912e+02 + sys_corr_10: 3.44380279e+02 + sys_corr_11: 5.22233927e+01 + sys_corr_12: -5.30678124e+01 + sys_corr_13: 1.43455653e+00 + sys_corr_14: 6.80189420e+00 + sys_corr_15: -2.44110699e+00 + sys_corr_16: 1.52467558e+00 + sys_corr_17: 4.78944176e-01 + sys_corr_18: -3.72676326e-02 + sys_corr_19: 5.14475252e-05 + sys_corr_20: -6.20763161e-05 + sys_corr_21: 4.97853505e-04 + sys_corr_22: -1.33254386e-03 + sys_corr_23: -3.15391251e-02 + sys_corr_24: 1.09001158e-03 + sys_corr_25: 5.25570074e-04 + sys_corr_26: 8.82125985e-04 + sys_corr_27: 1.95601248e-02 + sys_corr_28: 2.27351525e-02 + sys_corr_29: -7.18719134e-02 + sys_corr_30: 7.57681675e-03 + sys_corr_31: -1.14677863e-03 + sys_corr_32: -5.97082717e-02 + sys_corr_33: -6.65418294e-03 stat: 1200.0 sys_beam: 2000.0 sys_luminosity: 3300.0 -- sys_corr_1: 1771.2203328673806 - sys_corr_2: 2177.614555246184 - sys_corr_3: -1184.9827692072565 - sys_corr_4: -461.54789233775153 - sys_corr_5: 133.76585875962257 - sys_corr_6: 22.713673281762514 - sys_corr_7: -20.89766517339527 - sys_corr_8: 7.501098488921535 - sys_corr_9: 13.044557570048697 - sys_corr_10: 223.36135844801788 - sys_corr_11: -195.90794289522867 - sys_corr_12: 34.82826694482505 - sys_corr_13: -63.49481139806836 - sys_corr_14: -28.149393343309068 - sys_corr_15: -11.796227250772441 - sys_corr_16: 6.619959021198546 - sys_corr_17: 0.46608445292079786 - sys_corr_18: -0.024527776226352684 - sys_corr_19: 0.00015326127967473942 - sys_corr_20: -6.435082313992516e-05 - sys_corr_21: 0.0004990479802600205 - sys_corr_22: -0.0035615543708970338 - sys_corr_23: 0.009260786790764008 - sys_corr_24: 0.0037262370005415046 - sys_corr_25: 0.007849551180115894 - sys_corr_26: 0.03652881697625291 - sys_corr_27: 0.011769594845575583 - sys_corr_28: -0.004908830761473975 - sys_corr_29: -0.02144099412836221 - sys_corr_30: 0.0114940756806874 - sys_corr_31: -0.01316935152187323 - sys_corr_32: -0.0605949830649322 - sys_corr_33: 0.027723060471524077 +- sys_corr_1: 1.77122033e+03 + sys_corr_2: 2.17761456e+03 + sys_corr_3: -1.18498277e+03 + sys_corr_4: -4.61547892e+02 + sys_corr_5: 1.33765859e+02 + sys_corr_6: 2.27136733e+01 + sys_corr_7: -2.08976652e+01 + sys_corr_8: 7.50109849e+00 + sys_corr_9: 1.30445576e+01 + sys_corr_10: 2.23361358e+02 + sys_corr_11: -1.95907943e+02 + sys_corr_12: 3.48282669e+01 + sys_corr_13: -6.34948114e+01 + sys_corr_14: -2.81493933e+01 + sys_corr_15: -1.17962273e+01 + sys_corr_16: 6.61995902e+00 + sys_corr_17: 4.66084453e-01 + sys_corr_18: -2.45277762e-02 + sys_corr_19: 1.53261280e-04 + sys_corr_20: -6.43508231e-05 + sys_corr_21: 4.99047980e-04 + sys_corr_22: -3.56155437e-03 + sys_corr_23: 9.26078679e-03 + sys_corr_24: 3.72623700e-03 + sys_corr_25: 7.84955118e-03 + sys_corr_26: 3.65288170e-02 + sys_corr_27: 1.17695948e-02 + sys_corr_28: -4.90883076e-03 + sys_corr_29: -2.14409941e-02 + sys_corr_30: 1.14940757e-02 + sys_corr_31: -1.31693515e-02 + sys_corr_32: -6.05949831e-02 + sys_corr_33: 2.77230605e-02 stat: 900.0 sys_beam: 1900.0 sys_luminosity: 3100.0 -- sys_corr_1: 457.6423183868378 - sys_corr_2: 810.2620334429141 - sys_corr_3: 11.552966679580127 - sys_corr_4: 1818.5878043088792 - sys_corr_5: 351.09917216983143 - sys_corr_6: 109.57413100162573 - sys_corr_7: -59.48870207152214 - sys_corr_8: 39.958569939783814 - sys_corr_9: -30.92842563874906 - sys_corr_10: 56.42192277026579 - sys_corr_11: 209.8423901683495 - sys_corr_12: 197.11760548336903 - sys_corr_13: -87.66815367247125 - sys_corr_14: -34.955026589442184 - sys_corr_15: -13.640980398486377 - sys_corr_16: 10.40630935059273 - sys_corr_17: 0.21027826142284176 - sys_corr_18: 0.09349020488842748 - sys_corr_19: -0.00015126049160894448 - sys_corr_20: -0.00015695497799352875 - sys_corr_21: 0.00044888716312601235 - sys_corr_22: 0.0015404682822134533 - sys_corr_23: 0.006142634454438563 - sys_corr_24: 0.0025208912539652468 - sys_corr_25: 0.006458823244358853 - sys_corr_26: 0.005292251395075366 - sys_corr_27: 0.0016554912472323481 - sys_corr_28: 0.0038917464995262257 - sys_corr_29: 0.011598834517018252 - sys_corr_30: -0.0183566888399841 - sys_corr_31: 0.0211190360513657 - sys_corr_32: -0.00457405589417182 - sys_corr_33: 0.0024471355485791864 +- sys_corr_1: 4.57642318e+02 + sys_corr_2: 8.10262033e+02 + sys_corr_3: 1.15529667e+01 + sys_corr_4: 1.81858780e+03 + sys_corr_5: 3.51099172e+02 + sys_corr_6: 1.09574131e+02 + sys_corr_7: -5.94887021e+01 + sys_corr_8: 3.99585699e+01 + sys_corr_9: -3.09284256e+01 + sys_corr_10: 5.64219228e+01 + sys_corr_11: 2.09842390e+02 + sys_corr_12: 1.97117605e+02 + sys_corr_13: -8.76681537e+01 + sys_corr_14: -3.49550266e+01 + sys_corr_15: -1.36409804e+01 + sys_corr_16: 1.04063094e+01 + sys_corr_17: 2.10278261e-01 + sys_corr_18: 9.34902049e-02 + sys_corr_19: -1.51260492e-04 + sys_corr_20: -1.56954978e-04 + sys_corr_21: 4.48887163e-04 + sys_corr_22: 1.54046828e-03 + sys_corr_23: 6.14263445e-03 + sys_corr_24: 2.52089125e-03 + sys_corr_25: 6.45882324e-03 + sys_corr_26: 5.29225140e-03 + sys_corr_27: 1.65549125e-03 + sys_corr_28: 3.89174650e-03 + sys_corr_29: 1.15988345e-02 + sys_corr_30: -1.83566888e-02 + sys_corr_31: 2.11190361e-02 + sys_corr_32: -4.57405589e-03 + sys_corr_33: 2.44713555e-03 stat: 800.0 sys_beam: 1600.0 sys_luminosity: 2600.0 -- sys_corr_1: -439.43669157389195 - sys_corr_2: 47.62649345624625 - sys_corr_3: -395.1470343649117 - sys_corr_4: 320.166575576593 - sys_corr_5: -1354.648278639396 - sys_corr_6: 332.29871526171416 - sys_corr_7: -117.78910742798519 - sys_corr_8: 83.24115448245679 - sys_corr_9: -74.73780927882216 - sys_corr_10: -24.11626008279868 - sys_corr_11: -167.96517429341804 - sys_corr_12: 300.48886023963513 - sys_corr_13: 106.78707589635839 - sys_corr_14: 58.71616154917696 - sys_corr_15: -12.516598173843375 - sys_corr_16: 0.7086159625744609 - sys_corr_17: 0.3062737334365825 - sys_corr_18: 0.1196466526093551 - sys_corr_19: 6.937506320301623e-05 - sys_corr_20: -0.00029798686433557856 - sys_corr_21: -0.0004997181998818448 - sys_corr_22: 0.0026109894088647517 - sys_corr_23: 0.003638286984321585 - sys_corr_24: 0.0013705120036662285 - sys_corr_25: -0.01199940979315695 - sys_corr_26: 0.05999996447726511 - sys_corr_27: -0.01466067985036193 - sys_corr_28: 0.0026763072096605274 - sys_corr_29: 0.014886322049513578 - sys_corr_30: -0.006579970173738046 - sys_corr_31: -0.0343037470997968 - sys_corr_32: 0.01391503242383377 - sys_corr_33: 0.019184615810700814 +- sys_corr_1: -4.39436692e+02 + sys_corr_2: 4.76264935e+01 + sys_corr_3: -3.95147034e+02 + sys_corr_4: 3.20166576e+02 + sys_corr_5: -1.35464828e+03 + sys_corr_6: 3.32298715e+02 + sys_corr_7: -1.17789107e+02 + sys_corr_8: 8.32411545e+01 + sys_corr_9: -7.47378093e+01 + sys_corr_10: -2.41162601e+01 + sys_corr_11: -1.67965174e+02 + sys_corr_12: 3.00488860e+02 + sys_corr_13: 1.06787076e+02 + sys_corr_14: 5.87161615e+01 + sys_corr_15: -1.25165982e+01 + sys_corr_16: 7.08615963e-01 + sys_corr_17: 3.06273733e-01 + sys_corr_18: 1.19646653e-01 + sys_corr_19: 6.93750632e-05 + sys_corr_20: -2.97986864e-04 + sys_corr_21: -4.99718200e-04 + sys_corr_22: 2.61098941e-03 + sys_corr_23: 3.63828698e-03 + sys_corr_24: 1.37051200e-03 + sys_corr_25: -1.19994098e-02 + sys_corr_26: 5.99999645e-02 + sys_corr_27: -1.46606799e-02 + sys_corr_28: 2.67630721e-03 + sys_corr_29: 1.48863220e-02 + sys_corr_30: -6.57997017e-03 + sys_corr_31: -3.43037471e-02 + sys_corr_32: 1.39150324e-02 + sys_corr_33: 1.91846158e-02 stat: 700.0 sys_beam: 1300.0 sys_luminosity: 2100.0 -- sys_corr_1: 248.01436990372713 - sys_corr_2: 404.4526266706796 - sys_corr_3: 32.51636827425098 - sys_corr_4: 167.3874232397563 - sys_corr_5: -256.582388563332 - sys_corr_6: -1079.5385538194814 - sys_corr_7: -167.6189474192057 - sys_corr_8: 61.30136217663764 - sys_corr_9: -44.28445403690839 - sys_corr_10: 82.48578437701785 - sys_corr_11: 94.74052086833053 - sys_corr_12: -9.929809238614075 - sys_corr_13: 371.48465740348615 - sys_corr_14: -129.98002394333437 - sys_corr_15: -1.8103718373829414 - sys_corr_16: 0.7471091210113149 - sys_corr_17: 0.42140253280857687 - sys_corr_18: 0.1864689192428194 - sys_corr_19: -0.0002686626754803754 - sys_corr_20: -0.0002585137555145964 - sys_corr_21: -0.0022822326953976907 - sys_corr_22: 0.0048719007441241895 - sys_corr_23: -0.006226501355924812 - sys_corr_24: -0.010383149004565943 - sys_corr_25: -0.01807841434326925 - sys_corr_26: -0.020147178406987584 - sys_corr_27: -0.020796391752394415 - sys_corr_28: -0.03580261145078157 - sys_corr_29: 0.050792313056989495 - sys_corr_30: -0.022454707210208622 - sys_corr_31: -0.03034541572967167 - sys_corr_32: 0.06074075639357655 - sys_corr_33: -0.033129939541903256 +- sys_corr_1: 2.48014370e+02 + sys_corr_2: 4.04452627e+02 + sys_corr_3: 3.25163683e+01 + sys_corr_4: 1.67387423e+02 + sys_corr_5: -2.56582389e+02 + sys_corr_6: -1.07953855e+03 + sys_corr_7: -1.67618947e+02 + sys_corr_8: 6.13013622e+01 + sys_corr_9: -4.42844540e+01 + sys_corr_10: 8.24857844e+01 + sys_corr_11: 9.47405209e+01 + sys_corr_12: -9.92980924e+00 + sys_corr_13: 3.71484657e+02 + sys_corr_14: -1.29980024e+02 + sys_corr_15: -1.81037184e+00 + sys_corr_16: 7.47109121e-01 + sys_corr_17: 4.21402533e-01 + sys_corr_18: 1.86468919e-01 + sys_corr_19: -2.68662675e-04 + sys_corr_20: -2.58513756e-04 + sys_corr_21: -2.28223270e-03 + sys_corr_22: 4.87190074e-03 + sys_corr_23: -6.22650136e-03 + sys_corr_24: -1.03831490e-02 + sys_corr_25: -1.80784143e-02 + sys_corr_26: -2.01471784e-02 + sys_corr_27: -2.07963918e-02 + sys_corr_28: -3.58026115e-02 + sys_corr_29: 5.07923131e-02 + sys_corr_30: -2.24547072e-02 + sys_corr_31: -3.03454157e-02 + sys_corr_32: 6.07407564e-02 + sys_corr_33: -3.31299395e-02 stat: 600.0 sys_beam: 1000.0 sys_luminosity: 1600.0 -- sys_corr_1: 294.94564611768726 - sys_corr_2: 295.5199869993111 - sys_corr_3: 102.59708835094234 - sys_corr_4: 54.261773190593956 - sys_corr_5: -96.47469105130197 - sys_corr_6: -71.2827550173046 - sys_corr_7: 79.3803816791339 - sys_corr_8: -135.3508088116261 - sys_corr_9: 553.9962584105317 - sys_corr_10: 205.37799057575677 - sys_corr_11: 156.08229018842874 - sys_corr_12: -49.518825090189395 - sys_corr_13: 117.6773581820354 - sys_corr_14: 430.5461136825491 - sys_corr_15: -89.82562355331439 - sys_corr_16: 1.5321781564615862 - sys_corr_17: 0.30703527338299896 - sys_corr_18: 0.11402215445245244 - sys_corr_19: 0.00027393725893373717 - sys_corr_20: -0.00010407658346802549 - sys_corr_21: -0.00018597975504394375 - sys_corr_22: 0.004813306838652591 - sys_corr_23: 0.009659092259324473 - sys_corr_24: -0.014744312027180382 - sys_corr_25: -0.05971694635338373 - sys_corr_26: -0.056673571617402926 - sys_corr_27: -0.02756891290470931 - sys_corr_28: -0.06756965202418326 - sys_corr_29: 0.012434214728920596 - sys_corr_30: -0.04258458900410053 - sys_corr_31: -0.12867118539479772 - sys_corr_32: 0.040536033869043114 - sys_corr_33: -0.038865165003563025 +- sys_corr_1: 2.94945646e+02 + sys_corr_2: 2.95519987e+02 + sys_corr_3: 1.02597088e+02 + sys_corr_4: 5.42617732e+01 + sys_corr_5: -9.64746911e+01 + sys_corr_6: -7.12827550e+01 + sys_corr_7: 7.93803817e+01 + sys_corr_8: -1.35350809e+02 + sys_corr_9: 5.53996258e+02 + sys_corr_10: 2.05377991e+02 + sys_corr_11: 1.56082290e+02 + sys_corr_12: -4.95188251e+01 + sys_corr_13: 1.17677358e+02 + sys_corr_14: 4.30546114e+02 + sys_corr_15: -8.98256236e+01 + sys_corr_16: 1.53217816e+00 + sys_corr_17: 3.07035273e-01 + sys_corr_18: 1.14022154e-01 + sys_corr_19: 2.73937259e-04 + sys_corr_20: -1.04076583e-04 + sys_corr_21: -1.85979755e-04 + sys_corr_22: 4.81330684e-03 + sys_corr_23: 9.65909226e-03 + sys_corr_24: -1.47443120e-02 + sys_corr_25: -5.97169464e-02 + sys_corr_26: -5.66735716e-02 + sys_corr_27: -2.75689129e-02 + sys_corr_28: -6.75696520e-02 + sys_corr_29: 1.24342147e-02 + sys_corr_30: -4.25845890e-02 + sys_corr_31: -1.28671185e-01 + sys_corr_32: 4.05360339e-02 + sys_corr_33: -3.88651650e-02 stat: 500.0 sys_beam: 700.0 sys_luminosity: 1100.0 -- sys_corr_1: 52.15832457245852 - sys_corr_2: 145.1742117800018 - sys_corr_3: -25.06909095214543 - sys_corr_4: 72.41121212245444 - sys_corr_5: -72.03684627810904 - sys_corr_6: -74.37215030877009 - sys_corr_7: 253.37563413238982 - sys_corr_8: -351.03140380804916 - sys_corr_9: -123.72085839374321 - sys_corr_10: 93.59255615563374 - sys_corr_11: 29.391753093193625 - sys_corr_12: 33.203338971790274 - sys_corr_13: 20.104701755271293 - sys_corr_14: 96.92472202516308 - sys_corr_15: 475.75956048926946 - sys_corr_16: -3.262631985572548 - sys_corr_17: 0.28640550621547634 - sys_corr_18: 0.16664531276688135 - sys_corr_19: 0.00023929346533521197 - sys_corr_20: 0.0011273440207940249 - sys_corr_21: -0.003928978181555879 - sys_corr_22: 0.009329597580323909 - sys_corr_23: -0.0031750924114659074 - sys_corr_24: -0.031486952272748406 - sys_corr_25: -0.0492986568962272 - sys_corr_26: -0.04485024408881918 - sys_corr_27: -0.011980410173908633 - sys_corr_28: -0.1547081675185396 - sys_corr_29: 0.026942355019256594 - sys_corr_30: -0.08426679128534494 - sys_corr_31: -0.13948037884475523 - sys_corr_32: 0.07062926208548446 - sys_corr_33: 0.034435813748631756 +- sys_corr_1: 5.21583246e+01 + sys_corr_2: 1.45174212e+02 + sys_corr_3: -2.50690910e+01 + sys_corr_4: 7.24112121e+01 + sys_corr_5: -7.20368463e+01 + sys_corr_6: -7.43721503e+01 + sys_corr_7: 2.53375634e+02 + sys_corr_8: -3.51031404e+02 + sys_corr_9: -1.23720858e+02 + sys_corr_10: 9.35925562e+01 + sys_corr_11: 2.93917531e+01 + sys_corr_12: 3.32033390e+01 + sys_corr_13: 2.01047018e+01 + sys_corr_14: 9.69247220e+01 + sys_corr_15: 4.75759560e+02 + sys_corr_16: -3.26263199e+00 + sys_corr_17: 2.86405506e-01 + sys_corr_18: 1.66645313e-01 + sys_corr_19: 2.39293465e-04 + sys_corr_20: 1.12734402e-03 + sys_corr_21: -3.92897818e-03 + sys_corr_22: 9.32959758e-03 + sys_corr_23: -3.17509241e-03 + sys_corr_24: -3.14869523e-02 + sys_corr_25: -4.92986569e-02 + sys_corr_26: -4.48502441e-02 + sys_corr_27: -1.19804102e-02 + sys_corr_28: -1.54708168e-01 + sys_corr_29: 2.69423550e-02 + sys_corr_30: -8.42667913e-02 + sys_corr_31: -1.39480379e-01 + sys_corr_32: 7.06292621e-02 + sys_corr_33: 3.44358137e-02 stat: 500.0 sys_beam: 600.0 sys_luminosity: 1000.0 -- sys_corr_1: 44.729111992751754 - sys_corr_2: 70.35727027289343 - sys_corr_3: 8.053619187950396 - sys_corr_4: 24.099007302993012 - sys_corr_5: -11.349474053951214 - sys_corr_6: -19.41148834439992 - sys_corr_7: 52.22811490580611 - sys_corr_8: 9.673620787603435 - sys_corr_9: -8.719120366096995 - sys_corr_10: 22.566591334219922 - sys_corr_11: 11.13933997220724 - sys_corr_12: 18.12566959416703 - sys_corr_13: -15.01157291554252 - sys_corr_14: -2.8255735370027155 - sys_corr_15: -12.163978833083902 - sys_corr_16: -384.2619544657681 - sys_corr_17: -0.1439278870581393 - sys_corr_18: -0.019134527384502834 - sys_corr_19: 0.0018253111370977674 - sys_corr_20: 0.002974835675340927 - sys_corr_21: -0.011593881070074764 - sys_corr_22: 0.04869941879567346 - sys_corr_23: -0.0150704312718522 - sys_corr_24: -0.08632193188212087 - sys_corr_25: -0.11472784064263443 - sys_corr_26: -0.016008049227861393 - sys_corr_27: 0.0031548240906940734 - sys_corr_28: -0.03944091393488826 - sys_corr_29: 0.0033315825309693527 - sys_corr_30: -0.16546794772039938 - sys_corr_31: -0.19603288039270877 - sys_corr_32: 0.08161126080522786 - sys_corr_33: -0.07681146337355649 +- sys_corr_1: 4.47291120e+01 + sys_corr_2: 7.03572703e+01 + sys_corr_3: 8.05361919e+00 + sys_corr_4: 2.40990073e+01 + sys_corr_5: -1.13494741e+01 + sys_corr_6: -1.94114883e+01 + sys_corr_7: 5.22281149e+01 + sys_corr_8: 9.67362079e+00 + sys_corr_9: -8.71912037e+00 + sys_corr_10: 2.25665913e+01 + sys_corr_11: 1.11393400e+01 + sys_corr_12: 1.81256696e+01 + sys_corr_13: -1.50115729e+01 + sys_corr_14: -2.82557354e+00 + sys_corr_15: -1.21639788e+01 + sys_corr_16: -3.84261954e+02 + sys_corr_17: -1.43927887e-01 + sys_corr_18: -1.91345274e-02 + sys_corr_19: 1.82531114e-03 + sys_corr_20: 2.97483568e-03 + sys_corr_21: -1.15938811e-02 + sys_corr_22: 4.86994188e-02 + sys_corr_23: -1.50704313e-02 + sys_corr_24: -8.63219319e-02 + sys_corr_25: -1.14727841e-01 + sys_corr_26: -1.60080492e-02 + sys_corr_27: 3.15482409e-03 + sys_corr_28: -3.94409139e-02 + sys_corr_29: 3.33158253e-03 + sys_corr_30: -1.65467948e-01 + sys_corr_31: -1.96032880e-01 + sys_corr_32: 8.16112608e-02 + sys_corr_33: -7.68114634e-02 stat: 400.0 sys_beam: 200.0 sys_luminosity: 200.0 -- sys_corr_1: -169.72710271363786 - sys_corr_2: 1695.620741810498 - sys_corr_3: 922.6299247770106 - sys_corr_4: -114.7016070504826 - sys_corr_5: -23.638141751803644 - sys_corr_6: -104.62145709849894 - sys_corr_7: 176.45586570929387 - sys_corr_8: -161.52505503572834 - sys_corr_9: 246.03182897670524 - sys_corr_10: -699.2073391140215 - sys_corr_11: -106.95222642369221 - sys_corr_12: 108.55535781877316 - sys_corr_13: -3.192076522214065 - sys_corr_14: -16.431575160422422 - sys_corr_15: 1.7020942175967777 - sys_corr_16: 0.13604655775887814 - sys_corr_17: 0.6432655935964461 - sys_corr_18: 0.0038460190762376113 - sys_corr_19: -0.00011979067517468498 - sys_corr_20: 0.00019812214804628144 - sys_corr_21: -0.0014985622213203997 - sys_corr_22: 0.002948478342615188 - sys_corr_23: -0.046091597246848276 - sys_corr_24: 0.009436141795381903 - sys_corr_25: 0.010857599533762701 - sys_corr_26: 0.07395233429917779 - sys_corr_27: 0.019120017221011233 - sys_corr_28: 0.025051570048494114 - sys_corr_29: -0.10238453445357977 - sys_corr_30: 0.015082546341676818 - sys_corr_31: -0.012392222013045837 - sys_corr_32: -0.055371843980206954 - sys_corr_33: 0.015415679646107011 +- sys_corr_1: -1.69727103e+02 + sys_corr_2: 1.69562074e+03 + sys_corr_3: 9.22629925e+02 + sys_corr_4: -1.14701607e+02 + sys_corr_5: -2.36381418e+01 + sys_corr_6: -1.04621457e+02 + sys_corr_7: 1.76455866e+02 + sys_corr_8: -1.61525055e+02 + sys_corr_9: 2.46031829e+02 + sys_corr_10: -6.99207339e+02 + sys_corr_11: -1.06952226e+02 + sys_corr_12: 1.08555358e+02 + sys_corr_13: -3.19207652e+00 + sys_corr_14: -1.64315752e+01 + sys_corr_15: 1.70209422e+00 + sys_corr_16: 1.36046558e-01 + sys_corr_17: 6.43265594e-01 + sys_corr_18: 3.84601908e-03 + sys_corr_19: -1.19790675e-04 + sys_corr_20: 1.98122148e-04 + sys_corr_21: -1.49856222e-03 + sys_corr_22: 2.94847834e-03 + sys_corr_23: -4.60915972e-02 + sys_corr_24: 9.43614180e-03 + sys_corr_25: 1.08575995e-02 + sys_corr_26: 7.39523343e-02 + sys_corr_27: 1.91200172e-02 + sys_corr_28: 2.50515700e-02 + sys_corr_29: -1.02384534e-01 + sys_corr_30: 1.50825463e-02 + sys_corr_31: -1.23922220e-02 + sys_corr_32: -5.53718440e-02 + sys_corr_33: 1.54156796e-02 stat: 900.0 sys_beam: 1000.0 sys_luminosity: 1900.0 -- sys_corr_1: -785.9388900903019 - sys_corr_2: 64.10270691657861 - sys_corr_3: -1587.1798846605675 - sys_corr_4: -157.60566006507256 - sys_corr_5: 131.8315557244829 - sys_corr_6: 150.4670215919507 - sys_corr_7: -50.44303927175175 - sys_corr_8: 46.43372583238341 - sys_corr_9: -63.79158166122921 - sys_corr_10: -491.8938362542042 - sys_corr_11: 363.8660147189718 - sys_corr_12: -58.21559685768121 - sys_corr_13: 122.72990650142232 - sys_corr_14: 46.989729341922235 - sys_corr_15: 18.741360467464496 - sys_corr_16: -7.225898905328291 - sys_corr_17: 0.5732509271069249 - sys_corr_18: -0.02146298439952427 - sys_corr_19: -0.0003531577701391732 - sys_corr_20: -1.7392611957609497e-05 - sys_corr_21: 0.0009468255952662956 - sys_corr_22: 0.00152517794205182 - sys_corr_23: 0.011861733684442115 - sys_corr_24: 0.0016261346994657206 - sys_corr_25: 0.004215037804217813 - sys_corr_26: -0.004927944902705688 - sys_corr_27: 0.03880160271164232 - sys_corr_28: 0.038597904464484224 - sys_corr_29: -0.01920243388053101 - sys_corr_30: -0.002069854246516468 - sys_corr_31: 0.008729177514350926 - sys_corr_32: -0.055245605081351526 - sys_corr_33: -0.04327560565425 +- sys_corr_1: -7.85938890e+02 + sys_corr_2: 6.41027069e+01 + sys_corr_3: -1.58717988e+03 + sys_corr_4: -1.57605660e+02 + sys_corr_5: 1.31831556e+02 + sys_corr_6: 1.50467022e+02 + sys_corr_7: -5.04430393e+01 + sys_corr_8: 4.64337258e+01 + sys_corr_9: -6.37915817e+01 + sys_corr_10: -4.91893836e+02 + sys_corr_11: 3.63866015e+02 + sys_corr_12: -5.82155969e+01 + sys_corr_13: 1.22729907e+02 + sys_corr_14: 4.69897293e+01 + sys_corr_15: 1.87413605e+01 + sys_corr_16: -7.22589891e+00 + sys_corr_17: 5.73250927e-01 + sys_corr_18: -2.14629844e-02 + sys_corr_19: -3.53157770e-04 + sys_corr_20: -1.73926120e-05 + sys_corr_21: 9.46825595e-04 + sys_corr_22: 1.52517794e-03 + sys_corr_23: 1.18617337e-02 + sys_corr_24: 1.62613470e-03 + sys_corr_25: 4.21503780e-03 + sys_corr_26: -4.92794490e-03 + sys_corr_27: 3.88016027e-02 + sys_corr_28: 3.85979045e-02 + sys_corr_29: -1.92024339e-02 + sys_corr_30: -2.06985425e-03 + sys_corr_31: 8.72917751e-03 + sys_corr_32: -5.52456051e-02 + sys_corr_33: -4.32756057e-02 stat: 700.0 sys_beam: 1000.0 sys_luminosity: 1800.0 -- sys_corr_1: -487.5566420614936 - sys_corr_2: -42.850348559530325 - sys_corr_3: -399.1369918377916 - sys_corr_4: 905.4930951965185 - sys_corr_5: 173.8970051155466 - sys_corr_6: 95.96826218655993 - sys_corr_7: -39.38891179421488 - sys_corr_8: 6.935016743259113 - sys_corr_9: 13.278444859228738 - sys_corr_10: -139.3821982184661 - sys_corr_11: -449.40032665051325 - sys_corr_12: -415.4741876346124 - sys_corr_13: 175.20994554160765 - sys_corr_14: 68.06431549080844 - sys_corr_15: 22.250874055009252 - sys_corr_16: -12.83919818864458 - sys_corr_17: 0.4672442791007765 - sys_corr_18: 0.030372717441489765 - sys_corr_19: 0.00034764237885214665 - sys_corr_20: 7.736856753305078e-05 - sys_corr_21: -0.000782082645125014 - sys_corr_22: -0.005769072633441289 - sys_corr_23: 0.002413902476935196 - sys_corr_24: -0.005293925095374795 - sys_corr_25: -0.01621861591121672 - sys_corr_26: 0.06016930657782527 - sys_corr_27: 0.026168545016893724 - sys_corr_28: 0.00035332955943481476 - sys_corr_29: 0.0647039012348534 - sys_corr_30: 0.016561886732121608 - sys_corr_31: -0.0704989233685572 - sys_corr_32: -0.062402513348226475 - sys_corr_33: -0.0037129126073784627 +- sys_corr_1: -4.87556642e+02 + sys_corr_2: -4.28503486e+01 + sys_corr_3: -3.99136992e+02 + sys_corr_4: 9.05493095e+02 + sys_corr_5: 1.73897005e+02 + sys_corr_6: 9.59682622e+01 + sys_corr_7: -3.93889118e+01 + sys_corr_8: 6.93501674e+00 + sys_corr_9: 1.32784449e+01 + sys_corr_10: -1.39382198e+02 + sys_corr_11: -4.49400327e+02 + sys_corr_12: -4.15474188e+02 + sys_corr_13: 1.75209946e+02 + sys_corr_14: 6.80643155e+01 + sys_corr_15: 2.22508741e+01 + sys_corr_16: -1.28391982e+01 + sys_corr_17: 4.67244279e-01 + sys_corr_18: 3.03727174e-02 + sys_corr_19: 3.47642379e-04 + sys_corr_20: 7.73685675e-05 + sys_corr_21: -7.82082645e-04 + sys_corr_22: -5.76907263e-03 + sys_corr_23: 2.41390248e-03 + sys_corr_24: -5.29392510e-03 + sys_corr_25: -1.62186159e-02 + sys_corr_26: 6.01693066e-02 + sys_corr_27: 2.61685450e-02 + sys_corr_28: 3.53329559e-04 + sys_corr_29: 6.47039012e-02 + sys_corr_30: 1.65618867e-02 + sys_corr_31: -7.04989234e-02 + sys_corr_32: -6.24025133e-02 + sys_corr_33: -3.71291261e-03 stat: 700.0 sys_beam: 900.0 sys_luminosity: 1600.0 -- sys_corr_1: 725.5903980378135 - sys_corr_2: 674.1142052359097 - sys_corr_3: 313.41709756309024 - sys_corr_4: 158.2176567419597 - sys_corr_5: -890.7824338260235 - sys_corr_6: 117.79266613944671 - sys_corr_7: -5.098346380045623 - sys_corr_8: -7.079723382442154 - sys_corr_9: 22.141846133643362 - sys_corr_10: -0.3808583541323047 - sys_corr_11: 262.6596996926576 - sys_corr_12: -473.17486782060524 - sys_corr_13: -182.93590246367955 - sys_corr_14: -106.29544453845948 - sys_corr_15: 15.430470857099829 - sys_corr_16: 1.8629518449620301 - sys_corr_17: 0.2909265822636571 - sys_corr_18: 0.1681288787554962 - sys_corr_19: -2.3424489289203566e-05 - sys_corr_20: 0.0003056380741288857 - sys_corr_21: 0.0018100186240553968 - sys_corr_22: 0.0010914750324549903 - sys_corr_23: 0.007331286561970521 - sys_corr_24: -0.015092748776591135 - sys_corr_25: -0.0013976210598954399 - sys_corr_26: -0.04725845876992478 - sys_corr_27: 0.026023882548644694 - sys_corr_28: -0.029231585241470754 - sys_corr_29: 0.03355601867927536 - sys_corr_30: -0.01847333776859319 - sys_corr_31: 0.0014583921485359173 - sys_corr_32: 0.03769924678648697 - sys_corr_33: -0.02835194288649977 +- sys_corr_1: 7.25590398e+02 + sys_corr_2: 6.74114205e+02 + sys_corr_3: 3.13417098e+02 + sys_corr_4: 1.58217657e+02 + sys_corr_5: -8.90782434e+02 + sys_corr_6: 1.17792666e+02 + sys_corr_7: -5.09834638e+00 + sys_corr_8: -7.07972338e+00 + sys_corr_9: 2.21418461e+01 + sys_corr_10: -3.80858354e-01 + sys_corr_11: 2.62659700e+02 + sys_corr_12: -4.73174868e+02 + sys_corr_13: -1.82935902e+02 + sys_corr_14: -1.06295445e+02 + sys_corr_15: 1.54304709e+01 + sys_corr_16: 1.86295184e+00 + sys_corr_17: 2.90926582e-01 + sys_corr_18: 1.68128879e-01 + sys_corr_19: -2.34244893e-05 + sys_corr_20: 3.05638074e-04 + sys_corr_21: 1.81001862e-03 + sys_corr_22: 1.09147503e-03 + sys_corr_23: 7.33128656e-03 + sys_corr_24: -1.50927488e-02 + sys_corr_25: -1.39762106e-03 + sys_corr_26: -4.72584588e-02 + sys_corr_27: 2.60238825e-02 + sys_corr_28: -2.92315852e-02 + sys_corr_29: 3.35560187e-02 + sys_corr_30: -1.84733378e-02 + sys_corr_31: 1.45839215e-03 + sys_corr_32: 3.76992468e-02 + sys_corr_33: -2.83519429e-02 stat: 700.0 sys_beam: 800.0 sys_luminosity: 1500.0 -- sys_corr_1: -758.1798133409618 - sys_corr_2: -261.182365685253 - sys_corr_3: -527.2236305983593 - sys_corr_4: 174.8439666285955 - sys_corr_5: -177.3662841460436 - sys_corr_6: -837.8081595822224 - sys_corr_7: -138.501466103545 - sys_corr_8: 66.69263216257815 - sys_corr_9: -42.59250149666806 - sys_corr_10: -122.87358571625315 - sys_corr_11: -111.06379545992968 - sys_corr_12: 15.46693595599618 - sys_corr_13: -444.32532507380427 - sys_corr_14: 156.4122520594954 - sys_corr_15: -3.0084325433826606 - sys_corr_16: 3.83244412428771 - sys_corr_17: 0.31263630253339425 - sys_corr_18: 0.1802198625223089 - sys_corr_19: 0.0003782102293857104 - sys_corr_20: -5.3359509855555834e-05 - sys_corr_21: 0.002000780693370387 - sys_corr_22: 0.0037514166819011766 - sys_corr_23: 0.01080812786756856 - sys_corr_24: -0.0067230090374034955 - sys_corr_25: -0.0213925156504139 - sys_corr_26: 0.01685059039251904 - sys_corr_27: -0.032372343348025426 - sys_corr_28: -0.04935692375711563 - sys_corr_29: -0.01898158734504721 - sys_corr_30: -0.03767798406517066 - sys_corr_31: -0.05157280203479819 - sys_corr_32: 0.03183112541266892 - sys_corr_33: 0.036976375504542976 +- sys_corr_1: -7.58179813e+02 + sys_corr_2: -2.61182366e+02 + sys_corr_3: -5.27223631e+02 + sys_corr_4: 1.74843967e+02 + sys_corr_5: -1.77366284e+02 + sys_corr_6: -8.37808160e+02 + sys_corr_7: -1.38501466e+02 + sys_corr_8: 6.66926322e+01 + sys_corr_9: -4.25925015e+01 + sys_corr_10: -1.22873586e+02 + sys_corr_11: -1.11063795e+02 + sys_corr_12: 1.54669360e+01 + sys_corr_13: -4.44325325e+02 + sys_corr_14: 1.56412252e+02 + sys_corr_15: -3.00843254e+00 + sys_corr_16: 3.83244412e+00 + sys_corr_17: 3.12636303e-01 + sys_corr_18: 1.80219863e-01 + sys_corr_19: 3.78210229e-04 + sys_corr_20: -5.33595099e-05 + sys_corr_21: 2.00078069e-03 + sys_corr_22: 3.75141668e-03 + sys_corr_23: 1.08081279e-02 + sys_corr_24: -6.72300904e-03 + sys_corr_25: -2.13925157e-02 + sys_corr_26: 1.68505904e-02 + sys_corr_27: -3.23723433e-02 + sys_corr_28: -4.93569238e-02 + sys_corr_29: -1.89815873e-02 + sys_corr_30: -3.76779841e-02 + sys_corr_31: -5.15728020e-02 + sys_corr_32: 3.18311254e-02 + sys_corr_33: 3.69763755e-02 stat: 600.0 sys_beam: 700.0 sys_luminosity: 1400.0 -- sys_corr_1: -932.6502014909869 - sys_corr_2: -444.4005886405916 - sys_corr_3: -614.1380061286845 - sys_corr_4: 131.02286830142927 - sys_corr_5: -72.57197028127092 - sys_corr_6: -21.501091829397154 - sys_corr_7: 102.26507466489535 - sys_corr_8: -169.0826785571101 - sys_corr_9: 798.7202483880533 - sys_corr_10: 129.91093924380942 - sys_corr_11: -38.00772180443008 - sys_corr_12: 45.486278830160884 - sys_corr_13: -60.10745132286854 - sys_corr_14: -280.05517738256725 - sys_corr_15: 56.333317978158426 - sys_corr_16: -1.1671578630490325 - sys_corr_17: 0.194888480454483 - sys_corr_18: 0.12653167076835922 - sys_corr_19: -0.00027951148728316984 - sys_corr_20: 0.0002988588455627341 - sys_corr_21: -0.0023778103150700145 - sys_corr_22: 0.0013423620174323222 - sys_corr_23: -0.004404106214015386 - sys_corr_24: -0.004275478568417685 - sys_corr_25: 0.01771193560292471 - sys_corr_26: -0.024446137141605616 - sys_corr_27: -0.012195939075642767 - sys_corr_28: -0.05823941875834722 - sys_corr_29: 0.01434006881668178 - sys_corr_30: -0.008587811147067411 - sys_corr_31: 0.012902487606038597 - sys_corr_32: 0.03469714922785824 - sys_corr_33: 0.03725089162309449 +- sys_corr_1: -9.32650201e+02 + sys_corr_2: -4.44400589e+02 + sys_corr_3: -6.14138006e+02 + sys_corr_4: 1.31022868e+02 + sys_corr_5: -7.25719703e+01 + sys_corr_6: -2.15010918e+01 + sys_corr_7: 1.02265075e+02 + sys_corr_8: -1.69082679e+02 + sys_corr_9: 7.98720248e+02 + sys_corr_10: 1.29910939e+02 + sys_corr_11: -3.80077218e+01 + sys_corr_12: 4.54862788e+01 + sys_corr_13: -6.01074513e+01 + sys_corr_14: -2.80055177e+02 + sys_corr_15: 5.63333180e+01 + sys_corr_16: -1.16715786e+00 + sys_corr_17: 1.94888480e-01 + sys_corr_18: 1.26531671e-01 + sys_corr_19: -2.79511487e-04 + sys_corr_20: 2.98858846e-04 + sys_corr_21: -2.37781032e-03 + sys_corr_22: 1.34236202e-03 + sys_corr_23: -4.40410621e-03 + sys_corr_24: -4.27547857e-03 + sys_corr_25: 1.77119356e-02 + sys_corr_26: -2.44461371e-02 + sys_corr_27: -1.21959391e-02 + sys_corr_28: -5.82394188e-02 + sys_corr_29: 1.43400688e-02 + sys_corr_30: -8.58781115e-03 + sys_corr_31: 1.29024876e-02 + sys_corr_32: 3.46971492e-02 + sys_corr_33: 3.72508916e-02 stat: 600.0 sys_beam: 600.0 sys_luminosity: 1200.0 -- sys_corr_1: -396.8000721375124 - sys_corr_2: -53.51658354306625 - sys_corr_3: -331.4558511117436 - sys_corr_4: 157.70625251295743 - sys_corr_5: -125.17387665020541 - sys_corr_6: -123.01278513050946 - sys_corr_7: 599.5143389945843 - sys_corr_8: -784.3730567738521 - sys_corr_9: -297.931419058863 - sys_corr_10: 77.12695782982071 - sys_corr_11: -0.18887544665769102 - sys_corr_12: -7.916586562810996 - sys_corr_13: 2.316270009449108 - sys_corr_14: -37.18866788403798 - sys_corr_15: -207.85045385564615 - sys_corr_16: 11.296617925420305 - sys_corr_17: 0.13205229496737506 - sys_corr_18: 0.10229739733726523 - sys_corr_19: 0.000273432757767366 - sys_corr_20: 0.0005654626102175798 - sys_corr_21: -0.0017986487220349099 - sys_corr_22: 0.0047527012401154325 - sys_corr_23: 0.0007255705247030492 - sys_corr_24: -0.01550315094142333 - sys_corr_25: -0.02311414294421352 - sys_corr_26: -0.014361186547398423 - sys_corr_27: -0.0037954454033624105 - sys_corr_28: -0.1130500988979579 - sys_corr_29: 0.013517615134348267 - sys_corr_30: -0.033404505603036726 - sys_corr_31: -0.1163811640521026 - sys_corr_32: 0.0716147011514738 - sys_corr_33: -0.022700279972572655 +- sys_corr_1: -3.96800072e+02 + sys_corr_2: -5.35165835e+01 + sys_corr_3: -3.31455851e+02 + sys_corr_4: 1.57706253e+02 + sys_corr_5: -1.25173877e+02 + sys_corr_6: -1.23012785e+02 + sys_corr_7: 5.99514339e+02 + sys_corr_8: -7.84373057e+02 + sys_corr_9: -2.97931419e+02 + sys_corr_10: 7.71269578e+01 + sys_corr_11: -1.88875447e-01 + sys_corr_12: -7.91658656e+00 + sys_corr_13: 2.31627001e+00 + sys_corr_14: -3.71886679e+01 + sys_corr_15: -2.07850454e+02 + sys_corr_16: 1.12966179e+01 + sys_corr_17: 1.32052295e-01 + sys_corr_18: 1.02297397e-01 + sys_corr_19: 2.73432758e-04 + sys_corr_20: 5.65462610e-04 + sys_corr_21: -1.79864872e-03 + sys_corr_22: 4.75270124e-03 + sys_corr_23: 7.25570525e-04 + sys_corr_24: -1.55031509e-02 + sys_corr_25: -2.31141429e-02 + sys_corr_26: -1.43611865e-02 + sys_corr_27: -3.79544540e-03 + sys_corr_28: -1.13050099e-01 + sys_corr_29: 1.35176151e-02 + sys_corr_30: -3.34045056e-02 + sys_corr_31: -1.16381164e-01 + sys_corr_32: 7.16147012e-02 + sys_corr_33: -2.27002800e-02 stat: 700.0 sys_beam: 900.0 sys_luminosity: 1600.0 -- sys_corr_1: -118.04039108905685 - sys_corr_2: 44.89255154510424 - sys_corr_3: -114.07686731035 - sys_corr_4: 88.72082538814078 - sys_corr_5: -73.01875251111075 - sys_corr_6: -113.4345900900432 - sys_corr_7: 948.4935405412984 - sys_corr_8: 695.5046935340648 - sys_corr_9: 0.7178292123331454 - sys_corr_10: 34.13590098554409 - sys_corr_11: -0.7243064790247403 - sys_corr_12: -3.9353206661922835 - sys_corr_13: 11.332993147701298 - sys_corr_14: 4.871279725857381 - sys_corr_15: 4.36128251829597 - sys_corr_16: 15.72501182602384 - sys_corr_17: 0.12400263943951592 - sys_corr_18: 0.05713029250382443 - sys_corr_19: 0.0005777315326635869 - sys_corr_20: 0.001436770291158338 - sys_corr_21: -0.004904587524082127 - sys_corr_22: 0.018524381155862454 - sys_corr_23: -0.0016141267190325685 - sys_corr_24: -0.03116585543022407 - sys_corr_25: -0.05681395516432056 - sys_corr_26: 0.006927373076319159 - sys_corr_27: 0.008883483901875471 - sys_corr_28: -0.02305038082050592 - sys_corr_29: 0.00960886026895908 - sys_corr_30: -0.08633516535935533 - sys_corr_31: -0.08323499885858136 - sys_corr_32: 0.020109645801892756 - sys_corr_33: -0.027140925972899844 +- sys_corr_1: -1.18040391e+02 + sys_corr_2: 4.48925515e+01 + sys_corr_3: -1.14076867e+02 + sys_corr_4: 8.87208254e+01 + sys_corr_5: -7.30187525e+01 + sys_corr_6: -1.13434590e+02 + sys_corr_7: 9.48493541e+02 + sys_corr_8: 6.95504694e+02 + sys_corr_9: 7.17829212e-01 + sys_corr_10: 3.41359010e+01 + sys_corr_11: -7.24306479e-01 + sys_corr_12: -3.93532067e+00 + sys_corr_13: 1.13329931e+01 + sys_corr_14: 4.87127973e+00 + sys_corr_15: 4.36128252e+00 + sys_corr_16: 1.57250118e+01 + sys_corr_17: 1.24002639e-01 + sys_corr_18: 5.71302925e-02 + sys_corr_19: 5.77731533e-04 + sys_corr_20: 1.43677029e-03 + sys_corr_21: -4.90458752e-03 + sys_corr_22: 1.85243812e-02 + sys_corr_23: -1.61412672e-03 + sys_corr_24: -3.11658554e-02 + sys_corr_25: -5.68139552e-02 + sys_corr_26: 6.92737308e-03 + sys_corr_27: 8.88348390e-03 + sys_corr_28: -2.30503808e-02 + sys_corr_29: 9.60886027e-03 + sys_corr_30: -8.63351654e-02 + sys_corr_31: -8.32349989e-02 + sys_corr_32: 2.01096458e-02 + sys_corr_33: -2.71409260e-02 stat: 800.0 sys_beam: 400.0 sys_luminosity: 700.0 diff --git a/nnpdf_data/nnpdf_data/commondata/LHCB_WPWM_8TEV_MUON/filter.py b/nnpdf_data/nnpdf_data/commondata/LHCB_WPWM_8TEV_MUON/filter.py index 87c54145aa..da02de49d8 100644 --- a/nnpdf_data/nnpdf_data/commondata/LHCB_WPWM_8TEV_MUON/filter.py +++ b/nnpdf_data/nnpdf_data/commondata/LHCB_WPWM_8TEV_MUON/filter.py @@ -4,7 +4,9 @@ import pandas as pd import yaml -from nnpdf_data.filter_utils.utils import covmat_to_artunc +from nnpdf_data.filter_utils.utils import covmat_to_artunc, prettify_float + +yaml.add_representer(float, prettify_float) MZ_VALUE = 91.1876 # GeV MW_VALUE = 80.398 # GeV diff --git a/nnpdf_data/nnpdf_data/commondata/LHCB_WPWM_8TEV_MUON/kinematics.yaml b/nnpdf_data/nnpdf_data/commondata/LHCB_WPWM_8TEV_MUON/kinematics.yaml index 334a033392..55ecc4fca2 100644 --- a/nnpdf_data/nnpdf_data/commondata/LHCB_WPWM_8TEV_MUON/kinematics.yaml +++ b/nnpdf_data/nnpdf_data/commondata/LHCB_WPWM_8TEV_MUON/kinematics.yaml @@ -5,7 +5,7 @@ bins: max: 2.25 M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null @@ -17,7 +17,7 @@ bins: max: 2.5 M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null @@ -29,7 +29,7 @@ bins: max: 2.75 M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null @@ -41,7 +41,7 @@ bins: max: 3.0 M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null @@ -53,7 +53,7 @@ bins: max: 3.25 M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null @@ -65,7 +65,7 @@ bins: max: 3.5 M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null @@ -77,7 +77,7 @@ bins: max: 4.0 M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null @@ -89,7 +89,7 @@ bins: max: 4.5 M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null @@ -101,7 +101,7 @@ bins: max: 2.25 M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null @@ -113,7 +113,7 @@ bins: max: 2.5 M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null @@ -125,7 +125,7 @@ bins: max: 2.75 M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null @@ -137,7 +137,7 @@ bins: max: 3.0 M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null @@ -149,7 +149,7 @@ bins: max: 3.25 M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null @@ -161,7 +161,7 @@ bins: max: 3.5 M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null @@ -173,7 +173,7 @@ bins: max: 4.0 M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null @@ -185,7 +185,7 @@ bins: max: 4.5 M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null diff --git a/nnpdf_data/nnpdf_data/commondata/LHCB_WPWM_8TEV_MUON/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/LHCB_WPWM_8TEV_MUON/uncertainties.yaml index b5b6240faf..9761ae6624 100644 --- a/nnpdf_data/nnpdf_data/commondata/LHCB_WPWM_8TEV_MUON/uncertainties.yaml +++ b/nnpdf_data/nnpdf_data/commondata/LHCB_WPWM_8TEV_MUON/uncertainties.yaml @@ -148,595 +148,595 @@ definitions: treatment: MULT type: LHCBLUMI8TEV bins: -- sys_corr_1: -3038.5793019795487 - sys_corr_2: 768.1516197290289 - sys_corr_3: -485.10950751290517 - sys_corr_4: 53.08972426745481 - sys_corr_5: 7.850087868617356 - sys_corr_6: -88.0752030879723 - sys_corr_7: 137.255560716515 - sys_corr_8: 283.5081811025355 - sys_corr_9: -239.42618180677874 - sys_corr_10: -114.92822108914821 - sys_corr_11: 8.422450321818669 - sys_corr_12: 31.986276938757808 - sys_corr_13: 1.5071748439153685 - sys_corr_14: 6.896281410681093 - sys_corr_15: -7.595533001147252 - sys_corr_16: -7.633120097776844 - sys_corr_17: 1.019554927280346 - sys_corr_18: 7.284609808011454e-07 - sys_corr_19: -1.677835558256328e-05 - sys_corr_20: 0.0002553774607160113 - sys_corr_21: -0.0011339103675605186 - sys_corr_22: -0.0034156025741886443 - sys_corr_23: -0.005932843196957185 - sys_corr_24: -0.12807960938018645 - sys_corr_25: -7.564443431047872e-06 - sys_corr_26: 0.016222470669908985 - sys_corr_27: 0.06514473289223874 - sys_corr_28: 0.10371048272557544 - sys_corr_29: 0.06929157468647058 - sys_corr_30: 0.018776298638944915 - sys_corr_31: -0.021881712529177977 - sys_corr_32: -0.03606518967772038 - sys_corr_33: 0.03731793154041575 - sys_corr_34: -0.006212574245309134 +- sys_corr_1: -3.03857930e+03 + sys_corr_2: 7.68151620e+02 + sys_corr_3: -4.85109508e+02 + sys_corr_4: 5.30897243e+01 + sys_corr_5: 7.85008787e+00 + sys_corr_6: -8.80752031e+01 + sys_corr_7: 1.37255561e+02 + sys_corr_8: 2.83508181e+02 + sys_corr_9: -2.39426182e+02 + sys_corr_10: -1.14928221e+02 + sys_corr_11: 8.42245032e+00 + sys_corr_12: 3.19862769e+01 + sys_corr_13: 1.50717484e+00 + sys_corr_14: 6.89628141e+00 + sys_corr_15: -7.59553300e+00 + sys_corr_16: -7.63312010e+00 + sys_corr_17: 1.01955493e+00 + sys_corr_18: 7.28460981e-07 + sys_corr_19: -1.67783556e-05 + sys_corr_20: 2.55377461e-04 + sys_corr_21: -1.13391037e-03 + sys_corr_22: -3.41560257e-03 + sys_corr_23: -5.93284320e-03 + sys_corr_24: -1.28079609e-01 + sys_corr_25: -7.56444343e-06 + sys_corr_26: 1.62224707e-02 + sys_corr_27: 6.51447329e-02 + sys_corr_28: 1.03710483e-01 + sys_corr_29: 6.92915747e-02 + sys_corr_30: 1.87762986e-02 + sys_corr_31: -2.18817125e-02 + sys_corr_32: -3.60651897e-02 + sys_corr_33: 3.73179315e-02 + sys_corr_34: -6.21257425e-03 stat: 1200.0 sys_beam: 2400.0 sys_luminosity: 2700.0 -- sys_corr_1: -757.4168560908336 - sys_corr_2: 75.90309841401579 - sys_corr_3: 1987.0588271704805 - sys_corr_4: 380.5021771497316 - sys_corr_5: 186.65406281191193 - sys_corr_6: -98.9217781759554 - sys_corr_7: 19.38615156561904 - sys_corr_8: 90.24316654080147 - sys_corr_9: 97.8676222890205 - sys_corr_10: 257.88630047369344 - sys_corr_11: 27.805424969230906 - sys_corr_12: 182.17866766562153 - sys_corr_13: -40.106976892909024 - sys_corr_14: 11.344205336323334 - sys_corr_15: -37.39982404709869 - sys_corr_16: -32.34179686209249 - sys_corr_17: 1.0943227332297176 - sys_corr_18: -6.383721004830009e-06 - sys_corr_19: -3.428582414810528e-05 - sys_corr_20: 0.00046593140222122626 - sys_corr_21: 0.001654260439463211 - sys_corr_22: -0.003391244744211278 - sys_corr_23: 0.004148891256764481 - sys_corr_24: -0.009165474667735025 - sys_corr_25: 0.008144508683749125 - sys_corr_26: -0.02615015161099173 - sys_corr_27: -0.06131551104176138 - sys_corr_28: 0.012687205157749074 - sys_corr_29: 0.018693498085537576 - sys_corr_30: 0.014257784246066602 - sys_corr_31: -0.006241271517885556 - sys_corr_32: -0.006706266150284497 - sys_corr_33: 0.025389499587853755 - sys_corr_34: 0.005430933421555999 +- sys_corr_1: -7.57416856e+02 + sys_corr_2: 7.59030984e+01 + sys_corr_3: 1.98705883e+03 + sys_corr_4: 3.80502177e+02 + sys_corr_5: 1.86654063e+02 + sys_corr_6: -9.89217782e+01 + sys_corr_7: 1.93861516e+01 + sys_corr_8: 9.02431665e+01 + sys_corr_9: 9.78676223e+01 + sys_corr_10: 2.57886300e+02 + sys_corr_11: 2.78054250e+01 + sys_corr_12: 1.82178668e+02 + sys_corr_13: -4.01069769e+01 + sys_corr_14: 1.13442053e+01 + sys_corr_15: -3.73998240e+01 + sys_corr_16: -3.23417969e+01 + sys_corr_17: 1.09432273e+00 + sys_corr_18: -6.38372100e-06 + sys_corr_19: -3.42858241e-05 + sys_corr_20: 4.65931402e-04 + sys_corr_21: 1.65426044e-03 + sys_corr_22: -3.39124474e-03 + sys_corr_23: 4.14889126e-03 + sys_corr_24: -9.16547467e-03 + sys_corr_25: 8.14450868e-03 + sys_corr_26: -2.61501516e-02 + sys_corr_27: -6.13155110e-02 + sys_corr_28: 1.26872052e-02 + sys_corr_29: 1.86934981e-02 + sys_corr_30: 1.42577842e-02 + sys_corr_31: -6.24127152e-03 + sys_corr_32: -6.70626615e-03 + sys_corr_33: 2.53894996e-02 + sys_corr_34: 5.43093342e-03 stat: 900.0 sys_beam: 2100.0 sys_luminosity: 2400.0 -- sys_corr_1: -539.1116598566842 - sys_corr_2: -1082.1969538980472 - sys_corr_3: 139.265382634192 - sys_corr_4: 259.0007882801366 - sys_corr_5: -1235.363886047874 - sys_corr_6: -147.89924842514617 - sys_corr_7: -30.971965139081274 - sys_corr_8: 66.12783421118901 - sys_corr_9: 79.27645225016423 - sys_corr_10: 6.108339536541749 - sys_corr_11: 298.8256052265816 - sys_corr_12: -160.330528146026 - sys_corr_13: 123.74448329511154 - sys_corr_14: -32.43971184140428 - sys_corr_15: -11.811037446006932 - sys_corr_16: -23.921899411063883 - sys_corr_17: 0.5767811158596139 - sys_corr_18: -2.877751006037364e-06 - sys_corr_19: -1.7746259062945662e-05 - sys_corr_20: -0.001566867459788378 - sys_corr_21: 0.00047893537624898395 - sys_corr_22: 0.00013796288062966074 - sys_corr_23: 0.015193558356306796 - sys_corr_24: 0.08368951181576086 - sys_corr_25: 0.03252795209784276 - sys_corr_26: 0.012074739801167354 - sys_corr_27: -0.07568283304930938 - sys_corr_28: -0.1083968275524111 - sys_corr_29: -0.0635411547715441 - sys_corr_30: 0.022137948768953673 - sys_corr_31: -0.00040771647322797186 - sys_corr_32: 0.02919091810484506 - sys_corr_33: -0.0453382861834167 - sys_corr_34: 0.009281120601165673 +- sys_corr_1: -5.39111660e+02 + sys_corr_2: -1.08219695e+03 + sys_corr_3: 1.39265383e+02 + sys_corr_4: 2.59000788e+02 + sys_corr_5: -1.23536389e+03 + sys_corr_6: -1.47899248e+02 + sys_corr_7: -3.09719651e+01 + sys_corr_8: 6.61278342e+01 + sys_corr_9: 7.92764523e+01 + sys_corr_10: 6.10833954e+00 + sys_corr_11: 2.98825605e+02 + sys_corr_12: -1.60330528e+02 + sys_corr_13: 1.23744483e+02 + sys_corr_14: -3.24397118e+01 + sys_corr_15: -1.18110374e+01 + sys_corr_16: -2.39218994e+01 + sys_corr_17: 5.76781116e-01 + sys_corr_18: -2.87775101e-06 + sys_corr_19: -1.77462591e-05 + sys_corr_20: -1.56686746e-03 + sys_corr_21: 4.78935376e-04 + sys_corr_22: 1.37962881e-04 + sys_corr_23: 1.51935584e-02 + sys_corr_24: 8.36895118e-02 + sys_corr_25: 3.25279521e-02 + sys_corr_26: 1.20747398e-02 + sys_corr_27: -7.56828330e-02 + sys_corr_28: -1.08396828e-01 + sys_corr_29: -6.35411548e-02 + sys_corr_30: 2.21379488e-02 + sys_corr_31: -4.07716473e-04 + sys_corr_32: 2.91909181e-02 + sys_corr_33: -4.53382862e-02 + sys_corr_34: 9.28112060e-03 stat: 800.0 sys_beam: 1800.0 sys_luminosity: 2100.0 -- sys_corr_1: -346.6272090627615 - sys_corr_2: -1030.1819949549576 - sys_corr_3: 2.390594329861351 - sys_corr_4: -672.78453983986 - sys_corr_5: 431.24137151215854 - sys_corr_6: -736.2297158517026 - sys_corr_7: -0.9211964079143099 - sys_corr_8: 167.18955777019752 - sys_corr_9: 125.27532107231018 - sys_corr_10: 0.6952330910216087 - sys_corr_11: 153.66699423452076 - sys_corr_12: -132.51248962046958 - sys_corr_13: -319.00578860610113 - sys_corr_14: 92.20109904875525 - sys_corr_15: 52.134955258314186 - sys_corr_16: 11.019143373701738 - sys_corr_17: 0.8035534599422479 - sys_corr_18: -1.9494090665221805e-06 - sys_corr_19: 0.00045552923747546543 - sys_corr_20: -0.0005602017511281828 - sys_corr_21: 0.0017116083298726627 - sys_corr_22: -0.001211182521477481 - sys_corr_23: 0.013093740239202718 - sys_corr_24: 0.06633287088027 - sys_corr_25: 0.005741342860065388 - sys_corr_26: -0.005243893280841081 - sys_corr_27: -0.01489857513276601 - sys_corr_28: -0.0783238577473448 - sys_corr_29: -0.008103685999428574 - sys_corr_30: -0.028478571390254122 - sys_corr_31: -0.022098740078604417 - sys_corr_32: 0.06915915493567557 - sys_corr_33: -0.05225712733292187 - sys_corr_34: -0.021446400928380138 +- sys_corr_1: -3.46627209e+02 + sys_corr_2: -1.03018199e+03 + sys_corr_3: 2.39059433e+00 + sys_corr_4: -6.72784540e+02 + sys_corr_5: 4.31241372e+02 + sys_corr_6: -7.36229716e+02 + sys_corr_7: -9.21196408e-01 + sys_corr_8: 1.67189558e+02 + sys_corr_9: 1.25275321e+02 + sys_corr_10: 6.95233091e-01 + sys_corr_11: 1.53666994e+02 + sys_corr_12: -1.32512490e+02 + sys_corr_13: -3.19005789e+02 + sys_corr_14: 9.22010990e+01 + sys_corr_15: 5.21349553e+01 + sys_corr_16: 1.10191434e+01 + sys_corr_17: 8.03553460e-01 + sys_corr_18: -1.94940907e-06 + sys_corr_19: 4.55529237e-04 + sys_corr_20: -5.60201751e-04 + sys_corr_21: 1.71160833e-03 + sys_corr_22: -1.21118252e-03 + sys_corr_23: 1.30937402e-02 + sys_corr_24: 6.63328709e-02 + sys_corr_25: 5.74134286e-03 + sys_corr_26: -5.24389328e-03 + sys_corr_27: -1.48985751e-02 + sys_corr_28: -7.83238577e-02 + sys_corr_29: -8.10368600e-03 + sys_corr_30: -2.84785714e-02 + sys_corr_31: -2.20987401e-02 + sys_corr_32: 6.91591549e-02 + sys_corr_33: -5.22571273e-02 + sys_corr_34: -2.14464009e-02 stat: 700.0 sys_beam: 1500.0 sys_luminosity: 1800.0 -- sys_corr_1: -274.8755548245817 - sys_corr_2: -712.8587225878059 - sys_corr_3: 9.424364874672593 - sys_corr_4: -310.8102674355179 - sys_corr_5: 162.63611732394463 - sys_corr_6: 728.7752580649699 - sys_corr_7: -76.45444548330305 - sys_corr_8: 508.02440851374087 - sys_corr_9: 158.27207582811056 - sys_corr_10: 47.22082110864825 - sys_corr_11: 34.177741491180264 - sys_corr_12: 13.152729580562465 - sys_corr_13: -117.70211626149496 - sys_corr_14: -377.1740405636019 - sys_corr_15: 48.51723655536072 - sys_corr_16: 31.561531289814745 - sys_corr_17: 0.9822152491275199 - sys_corr_18: -2.4619998369937883e-06 - sys_corr_19: 0.0005612970734057122 - sys_corr_20: 0.0005386362464866584 - sys_corr_21: -0.0018154652507260658 - sys_corr_22: -0.006347847483479866 - sys_corr_23: 0.01722710906098292 - sys_corr_24: 0.0971189584262743 - sys_corr_25: 0.03514572275551389 - sys_corr_26: 0.04299205294754353 - sys_corr_27: -0.011167609711055196 - sys_corr_28: -0.0489137872311218 - sys_corr_29: -0.09846940785882753 - sys_corr_30: 0.020639971871378508 - sys_corr_31: -0.03877240980640265 - sys_corr_32: 0.0684835177457142 - sys_corr_33: -0.04952056140310505 - sys_corr_34: -0.003110697814741439 +- sys_corr_1: -2.74875555e+02 + sys_corr_2: -7.12858723e+02 + sys_corr_3: 9.42436487e+00 + sys_corr_4: -3.10810267e+02 + sys_corr_5: 1.62636117e+02 + sys_corr_6: 7.28775258e+02 + sys_corr_7: -7.64544455e+01 + sys_corr_8: 5.08024409e+02 + sys_corr_9: 1.58272076e+02 + sys_corr_10: 4.72208211e+01 + sys_corr_11: 3.41777415e+01 + sys_corr_12: 1.31527296e+01 + sys_corr_13: -1.17702116e+02 + sys_corr_14: -3.77174041e+02 + sys_corr_15: 4.85172366e+01 + sys_corr_16: 3.15615313e+01 + sys_corr_17: 9.82215249e-01 + sys_corr_18: -2.46199984e-06 + sys_corr_19: 5.61297073e-04 + sys_corr_20: 5.38636246e-04 + sys_corr_21: -1.81546525e-03 + sys_corr_22: -6.34784748e-03 + sys_corr_23: 1.72271091e-02 + sys_corr_24: 9.71189584e-02 + sys_corr_25: 3.51457228e-02 + sys_corr_26: 4.29920529e-02 + sys_corr_27: -1.11676097e-02 + sys_corr_28: -4.89137872e-02 + sys_corr_29: -9.84694079e-02 + sys_corr_30: 2.06399719e-02 + sys_corr_31: -3.87724098e-02 + sys_corr_32: 6.84835177e-02 + sys_corr_33: -4.95205614e-02 + sys_corr_34: -3.11069781e-03 stat: 600.0 sys_beam: 1200.0 sys_luminosity: 1400.0 -- sys_corr_1: -167.11074525470343 - sys_corr_2: -569.5733146002262 - sys_corr_3: -47.73246147183727 - sys_corr_4: -61.806638529232345 - sys_corr_5: 100.02781413206905 - sys_corr_6: 138.32754290098384 - sys_corr_7: -68.13641786503455 - sys_corr_8: -175.18878405870794 - sys_corr_9: -517.694932637839 - sys_corr_10: 375.78574105417664 - sys_corr_11: -22.35891354937338 - sys_corr_12: -171.54256789293112 - sys_corr_13: -77.79872639765557 - sys_corr_14: -20.624838123095753 - sys_corr_15: -333.835701074605 - sys_corr_16: 141.4699124882562 - sys_corr_17: 0.48158322751301486 - sys_corr_18: 4.34251599837717e-06 - sys_corr_19: 0.00012465687701771315 - sys_corr_20: 0.00027052987029853483 - sys_corr_21: 0.0015800747762538781 - sys_corr_22: -0.006142676190772772 - sys_corr_23: -0.010540544502370729 - sys_corr_24: 0.0990632567328151 - sys_corr_25: 0.028149024882223508 - sys_corr_26: 0.004982507679249789 - sys_corr_27: 0.02905722572707052 - sys_corr_28: -0.06471540581683867 - sys_corr_29: -0.04520273973785938 - sys_corr_30: 0.05994446708872569 - sys_corr_31: 0.05655868692284677 - sys_corr_32: -0.017598022463204896 - sys_corr_33: 0.03433469192197419 - sys_corr_34: -0.00920311386761883 +- sys_corr_1: -1.67110745e+02 + sys_corr_2: -5.69573315e+02 + sys_corr_3: -4.77324615e+01 + sys_corr_4: -6.18066385e+01 + sys_corr_5: 1.00027814e+02 + sys_corr_6: 1.38327543e+02 + sys_corr_7: -6.81364179e+01 + sys_corr_8: -1.75188784e+02 + sys_corr_9: -5.17694933e+02 + sys_corr_10: 3.75785741e+02 + sys_corr_11: -2.23589135e+01 + sys_corr_12: -1.71542568e+02 + sys_corr_13: -7.77987264e+01 + sys_corr_14: -2.06248381e+01 + sys_corr_15: -3.33835701e+02 + sys_corr_16: 1.41469912e+02 + sys_corr_17: 4.81583228e-01 + sys_corr_18: 4.34251600e-06 + sys_corr_19: 1.24656877e-04 + sys_corr_20: 2.70529870e-04 + sys_corr_21: 1.58007478e-03 + sys_corr_22: -6.14267619e-03 + sys_corr_23: -1.05405445e-02 + sys_corr_24: 9.90632567e-02 + sys_corr_25: 2.81490249e-02 + sys_corr_26: 4.98250768e-03 + sys_corr_27: 2.90572257e-02 + sys_corr_28: -6.47154058e-02 + sys_corr_29: -4.52027397e-02 + sys_corr_30: 5.99444671e-02 + sys_corr_31: 5.65586869e-02 + sys_corr_32: -1.75980225e-02 + sys_corr_33: 3.43346919e-02 + sys_corr_34: -9.20311387e-03 stat: 500.0 sys_beam: 800.0 sys_luminosity: 1000.0 -- sys_corr_1: -188.20228910192097 - sys_corr_2: -777.7968807961518 - sys_corr_3: -83.52314957182645 - sys_corr_4: -219.69021728484898 - sys_corr_5: 118.43402492878249 - sys_corr_6: 252.71378443435947 - sys_corr_7: 294.35554580813175 - sys_corr_8: -370.94543280885694 - sys_corr_9: -209.10455100615619 - sys_corr_10: -130.4239378291688 - sys_corr_11: 365.62822603010704 - sys_corr_12: 480.6203850587957 - sys_corr_13: 20.07994775873992 - sys_corr_14: 67.0668599086105 - sys_corr_15: 65.32932344673436 - sys_corr_16: 87.47120757016629 - sys_corr_17: -0.09826105456671294 - sys_corr_18: 8.386171914254327e-06 - sys_corr_19: -0.0010224700247347138 - sys_corr_20: -0.001994399799692106 - sys_corr_21: 0.008413697309132728 - sys_corr_22: -0.020615943201529086 - sys_corr_23: 0.03529448123666261 - sys_corr_24: 0.1840140486352533 - sys_corr_25: 0.05945090840246413 - sys_corr_26: 0.005920112777465722 - sys_corr_27: 0.03843289571388579 - sys_corr_28: 0.017788911413655146 - sys_corr_29: -0.042356022862622106 - sys_corr_30: 0.019926253823183634 - sys_corr_31: 0.017823211055244922 - sys_corr_32: -0.028407360893866834 - sys_corr_33: -0.015168614204167777 - sys_corr_34: -0.009995764040586337 +- sys_corr_1: -1.88202289e+02 + sys_corr_2: -7.77796881e+02 + sys_corr_3: -8.35231496e+01 + sys_corr_4: -2.19690217e+02 + sys_corr_5: 1.18434025e+02 + sys_corr_6: 2.52713784e+02 + sys_corr_7: 2.94355546e+02 + sys_corr_8: -3.70945433e+02 + sys_corr_9: -2.09104551e+02 + sys_corr_10: -1.30423938e+02 + sys_corr_11: 3.65628226e+02 + sys_corr_12: 4.80620385e+02 + sys_corr_13: 2.00799478e+01 + sys_corr_14: 6.70668599e+01 + sys_corr_15: 6.53293234e+01 + sys_corr_16: 8.74712076e+01 + sys_corr_17: -9.82610546e-02 + sys_corr_18: 8.38617191e-06 + sys_corr_19: -1.02247002e-03 + sys_corr_20: -1.99439980e-03 + sys_corr_21: 8.41369731e-03 + sys_corr_22: -2.06159432e-02 + sys_corr_23: 3.52944812e-02 + sys_corr_24: 1.84014049e-01 + sys_corr_25: 5.94509084e-02 + sys_corr_26: 5.92011278e-03 + sys_corr_27: 3.84328957e-02 + sys_corr_28: 1.77889114e-02 + sys_corr_29: -4.23560229e-02 + sys_corr_30: 1.99262538e-02 + sys_corr_31: 1.78232111e-02 + sys_corr_32: -2.84073609e-02 + sys_corr_33: -1.51686142e-02 + sys_corr_34: -9.99576404e-03 stat: 500.0 sys_beam: 900.0 sys_luminosity: 1000.0 -- sys_corr_1: -20.418282214869066 - sys_corr_2: -294.1283888544421 - sys_corr_3: -58.60919723330274 - sys_corr_4: -198.4189671916063 - sys_corr_5: 53.83653778533482 - sys_corr_6: 94.56972392250577 - sys_corr_7: -235.80701606356038 - sys_corr_8: -98.75510182568121 - sys_corr_9: -143.68649816865553 - sys_corr_10: -129.97796340553992 - sys_corr_11: 34.28747071368873 - sys_corr_12: 106.6323327296142 - sys_corr_13: -66.03659873895785 - sys_corr_14: -27.168441642658404 - sys_corr_15: -173.4434011120551 - sys_corr_16: -444.74631174407733 - sys_corr_17: -0.24157992028810552 - sys_corr_18: -1.9035352315173746e-05 - sys_corr_19: -0.0020680211971279166 - sys_corr_20: -0.0027686819272412073 - sys_corr_21: 0.008251447625954055 - sys_corr_22: -0.01736211565471414 - sys_corr_23: 0.0005594231670010069 - sys_corr_24: 0.0004801766306475359 - sys_corr_25: 0.04177596292425628 - sys_corr_26: -0.0019150653015336523 - sys_corr_27: -0.0348994723514428 - sys_corr_28: 0.16155295845037193 - sys_corr_29: 0.045016400588150714 - sys_corr_30: -0.03105103105077219 - sys_corr_31: 0.007999837636309516 - sys_corr_32: -0.13454097402344453 - sys_corr_33: 0.08854643213837997 - sys_corr_34: -0.035739132455740404 +- sys_corr_1: -2.04182822e+01 + sys_corr_2: -2.94128389e+02 + sys_corr_3: -5.86091972e+01 + sys_corr_4: -1.98418967e+02 + sys_corr_5: 5.38365378e+01 + sys_corr_6: 9.45697239e+01 + sys_corr_7: -2.35807016e+02 + sys_corr_8: -9.87551018e+01 + sys_corr_9: -1.43686498e+02 + sys_corr_10: -1.29977963e+02 + sys_corr_11: 3.42874707e+01 + sys_corr_12: 1.06632333e+02 + sys_corr_13: -6.60365987e+01 + sys_corr_14: -2.71684416e+01 + sys_corr_15: -1.73443401e+02 + sys_corr_16: -4.44746312e+02 + sys_corr_17: -2.41579920e-01 + sys_corr_18: -1.90353523e-05 + sys_corr_19: -2.06802120e-03 + sys_corr_20: -2.76868193e-03 + sys_corr_21: 8.25144763e-03 + sys_corr_22: -1.73621157e-02 + sys_corr_23: 5.59423167e-04 + sys_corr_24: 4.80176631e-04 + sys_corr_25: 4.17759629e-02 + sys_corr_26: -1.91506530e-03 + sys_corr_27: -3.48994724e-02 + sys_corr_28: 1.61552958e-01 + sys_corr_29: 4.50164006e-02 + sys_corr_30: -3.10510311e-02 + sys_corr_31: 7.99983764e-03 + sys_corr_32: -1.34540974e-01 + sys_corr_33: 8.85464321e-02 + sys_corr_34: -3.57391325e-02 stat: 400.0 sys_beam: 200.0 sys_luminosity: 300.0 -- sys_corr_1: -1418.5660286961804 - sys_corr_2: -300.8361897602871 - sys_corr_3: -372.17857782986243 - sys_corr_4: 110.85229077349663 - sys_corr_5: 213.07294567190775 - sys_corr_6: 192.03560835809975 - sys_corr_7: -315.0880721533624 - sys_corr_8: -688.3892318076679 - sys_corr_9: 537.9263076607407 - sys_corr_10: 188.27139649774628 - sys_corr_11: -46.37284914904026 - sys_corr_12: -58.693400527888706 - sys_corr_13: -14.504876419343022 - sys_corr_14: -14.744707792059414 - sys_corr_15: 3.8807055752414983 - sys_corr_16: 8.664528816324074 - sys_corr_17: 0.8337970308503269 - sys_corr_18: -3.098814478224953e-06 - sys_corr_19: -8.957681649048914e-05 - sys_corr_20: -0.00028537172120501696 - sys_corr_21: 0.0010659257978354304 - sys_corr_22: 0.003709249582708049 - sys_corr_23: 0.006878015330545861 - sys_corr_24: -0.19054727226455634 - sys_corr_25: -0.0244866575656111 - sys_corr_26: 0.005353427454552598 - sys_corr_27: 0.08616988285708459 - sys_corr_28: 0.14996497858208055 - sys_corr_29: 0.11390900690941448 - sys_corr_30: -0.03560935114682134 - sys_corr_31: 0.012681825896083541 - sys_corr_32: -0.030896932517204923 - sys_corr_33: 0.05081019719614959 - sys_corr_34: 0.052787600579011086 +- sys_corr_1: -1.41856603e+03 + sys_corr_2: -3.00836190e+02 + sys_corr_3: -3.72178578e+02 + sys_corr_4: 1.10852291e+02 + sys_corr_5: 2.13072946e+02 + sys_corr_6: 1.92035608e+02 + sys_corr_7: -3.15088072e+02 + sys_corr_8: -6.88389232e+02 + sys_corr_9: 5.37926308e+02 + sys_corr_10: 1.88271396e+02 + sys_corr_11: -4.63728491e+01 + sys_corr_12: -5.86934005e+01 + sys_corr_13: -1.45048764e+01 + sys_corr_14: -1.47447078e+01 + sys_corr_15: 3.88070558e+00 + sys_corr_16: 8.66452882e+00 + sys_corr_17: 8.33797031e-01 + sys_corr_18: -3.09881448e-06 + sys_corr_19: -8.95768165e-05 + sys_corr_20: -2.85371721e-04 + sys_corr_21: 1.06592580e-03 + sys_corr_22: 3.70924958e-03 + sys_corr_23: 6.87801533e-03 + sys_corr_24: -1.90547272e-01 + sys_corr_25: -2.44866576e-02 + sys_corr_26: 5.35342745e-03 + sys_corr_27: 8.61698829e-02 + sys_corr_28: 1.49964979e-01 + sys_corr_29: 1.13909007e-01 + sys_corr_30: -3.56093511e-02 + sys_corr_31: 1.26818259e-02 + sys_corr_32: -3.08969325e-02 + sys_corr_33: 5.08101972e-02 + sys_corr_34: 5.27876006e-02 stat: 900.0 sys_beam: 1200.0 sys_luminosity: 1600.0 -- sys_corr_1: -379.7758627502127 - sys_corr_2: -614.7027426318841 - sys_corr_3: 806.9723200388609 - sys_corr_4: 129.3489782687054 - sys_corr_5: 329.5697346931325 - sys_corr_6: 180.10017656486775 - sys_corr_7: -83.25772608031659 - sys_corr_8: -249.97342476735633 - sys_corr_9: -217.19952916877463 - sys_corr_10: -625.1260740967149 - sys_corr_11: -89.05430339409723 - sys_corr_12: -320.1639682551923 - sys_corr_13: 70.13671643344865 - sys_corr_14: -28.02170633911111 - sys_corr_15: 56.04682273598595 - sys_corr_16: 47.58911806040465 - sys_corr_17: 0.45562515462967046 - sys_corr_18: 1.149583961098205e-05 - sys_corr_19: 0.00013258230364433942 - sys_corr_20: 0.00013817399013878702 - sys_corr_21: -0.005874689172630374 - sys_corr_22: 0.0105015002645333 - sys_corr_23: -0.017946231148278636 - sys_corr_24: -0.21644468180012844 - sys_corr_25: -0.03488192226888277 - sys_corr_26: -0.06857859750270756 - sys_corr_27: -0.04922123760254109 - sys_corr_28: 0.07731091052149813 - sys_corr_29: 0.0760439992645911 - sys_corr_30: -0.025643183602308793 - sys_corr_31: -0.027707930572531004 - sys_corr_32: -0.039392965654265095 - sys_corr_33: 0.008744923900430737 - sys_corr_34: 0.005484652229986684 +- sys_corr_1: -3.79775863e+02 + sys_corr_2: -6.14702743e+02 + sys_corr_3: 8.06972320e+02 + sys_corr_4: 1.29348978e+02 + sys_corr_5: 3.29569735e+02 + sys_corr_6: 1.80100177e+02 + sys_corr_7: -8.32577261e+01 + sys_corr_8: -2.49973425e+02 + sys_corr_9: -2.17199529e+02 + sys_corr_10: -6.25126074e+02 + sys_corr_11: -8.90543034e+01 + sys_corr_12: -3.20163968e+02 + sys_corr_13: 7.01367164e+01 + sys_corr_14: -2.80217063e+01 + sys_corr_15: 5.60468227e+01 + sys_corr_16: 4.75891181e+01 + sys_corr_17: 4.55625155e-01 + sys_corr_18: 1.14958396e-05 + sys_corr_19: 1.32582304e-04 + sys_corr_20: 1.38173990e-04 + sys_corr_21: -5.87468917e-03 + sys_corr_22: 1.05015003e-02 + sys_corr_23: -1.79462311e-02 + sys_corr_24: -2.16444682e-01 + sys_corr_25: -3.48819223e-02 + sys_corr_26: -6.85785975e-02 + sys_corr_27: -4.92212376e-02 + sys_corr_28: 7.73109105e-02 + sys_corr_29: 7.60439993e-02 + sys_corr_30: -2.56431836e-02 + sys_corr_31: -2.77079306e-02 + sys_corr_32: -3.93929657e-02 + sys_corr_33: 8.74492390e-03 + sys_corr_34: 5.48465223e-03 stat: 700.0 sys_beam: 1000.0 sys_luminosity: 1400.0 -- sys_corr_1: -239.61349262110903 - sys_corr_2: -678.8206626587207 - sys_corr_3: 43.04893366922303 - sys_corr_4: -55.83800780750276 - sys_corr_5: -634.4991542699746 - sys_corr_6: -25.947554268122953 - sys_corr_7: 41.427904422470746 - sys_corr_8: -54.053308811601546 - sys_corr_9: -16.362379243605634 - sys_corr_10: -129.3827349946374 - sys_corr_11: -592.7873743872756 - sys_corr_12: 256.376068090325 - sys_corr_13: -265.5698980460146 - sys_corr_14: 43.29483884631206 - sys_corr_15: -1.6211538751021453 - sys_corr_16: 48.76481505905352 - sys_corr_17: 0.8098292641352782 - sys_corr_18: -2.8081644488668546e-06 - sys_corr_19: 0.00010808868172042699 - sys_corr_20: 0.0016355893447000552 - sys_corr_21: -0.00017695688461455728 - sys_corr_22: -0.0018627281863201567 - sys_corr_23: -0.007389095578738002 - sys_corr_24: -0.09727117032053997 - sys_corr_25: -0.0042151521006173415 - sys_corr_26: -0.005318909529497028 - sys_corr_27: -0.01322897970468228 - sys_corr_28: 0.0027848674946107585 - sys_corr_29: 0.07434987123379137 - sys_corr_30: -0.033407111180520054 - sys_corr_31: 0.020745837975269153 - sys_corr_32: -0.03494504746870314 - sys_corr_33: 0.04376355950908848 - sys_corr_34: -0.021720614718830137 +- sys_corr_1: -2.39613493e+02 + sys_corr_2: -6.78820663e+02 + sys_corr_3: 4.30489337e+01 + sys_corr_4: -5.58380078e+01 + sys_corr_5: -6.34499154e+02 + sys_corr_6: -2.59475543e+01 + sys_corr_7: 4.14279044e+01 + sys_corr_8: -5.40533088e+01 + sys_corr_9: -1.63623792e+01 + sys_corr_10: -1.29382735e+02 + sys_corr_11: -5.92787374e+02 + sys_corr_12: 2.56376068e+02 + sys_corr_13: -2.65569898e+02 + sys_corr_14: 4.32948388e+01 + sys_corr_15: -1.62115388e+00 + sys_corr_16: 4.87648151e+01 + sys_corr_17: 8.09829264e-01 + sys_corr_18: -2.80816445e-06 + sys_corr_19: 1.08088682e-04 + sys_corr_20: 1.63558934e-03 + sys_corr_21: -1.76956885e-04 + sys_corr_22: -1.86272819e-03 + sys_corr_23: -7.38909558e-03 + sys_corr_24: -9.72711703e-02 + sys_corr_25: -4.21515210e-03 + sys_corr_26: -5.31890953e-03 + sys_corr_27: -1.32289797e-02 + sys_corr_28: 2.78486749e-03 + sys_corr_29: 7.43498712e-02 + sys_corr_30: -3.34071112e-02 + sys_corr_31: 2.07458380e-02 + sys_corr_32: -3.49450475e-02 + sys_corr_33: 4.37635595e-02 + sys_corr_34: -2.17206147e-02 stat: 600.0 sys_beam: 1000.0 sys_luminosity: 1300.0 -- sys_corr_1: -222.80016800556484 - sys_corr_2: -742.5368422506577 - sys_corr_3: -36.82727486026367 - sys_corr_4: -408.1920481982058 - sys_corr_5: 263.33760027407544 - sys_corr_6: -456.73499060811815 - sys_corr_7: -7.855868883316092 - sys_corr_8: 78.72472843090611 - sys_corr_9: 44.689708345204586 - sys_corr_10: 42.113391324895055 - sys_corr_11: -238.17127568567926 - sys_corr_12: 147.62736263903827 - sys_corr_13: 522.6255945867229 - sys_corr_14: -164.03665899925042 - sys_corr_15: -66.0606204633717 - sys_corr_16: 10.446280909012897 - sys_corr_17: 0.7081767021411463 - sys_corr_18: -4.695676677081322e-06 - sys_corr_19: -0.0001868136902926952 - sys_corr_20: 0.0008357494857507038 - sys_corr_21: -0.0014647779094907588 - sys_corr_22: 0.0005052468688521042 - sys_corr_23: 0.015115372379762826 - sys_corr_24: -0.00481328920528963 - sys_corr_25: 0.02460006759209741 - sys_corr_26: 0.028378068729793777 - sys_corr_27: -0.0022542242129545463 - sys_corr_28: -0.05325945713631112 - sys_corr_29: -0.04791596442704287 - sys_corr_30: 0.06819233827443441 - sys_corr_31: 0.044851504994359914 - sys_corr_32: 2.8937518309524204e-05 - sys_corr_33: 0.0024776978181886775 - sys_corr_34: 0.016243543514662586 +- sys_corr_1: -2.22800168e+02 + sys_corr_2: -7.42536842e+02 + sys_corr_3: -3.68272749e+01 + sys_corr_4: -4.08192048e+02 + sys_corr_5: 2.63337600e+02 + sys_corr_6: -4.56734991e+02 + sys_corr_7: -7.85586888e+00 + sys_corr_8: 7.87247284e+01 + sys_corr_9: 4.46897083e+01 + sys_corr_10: 4.21133913e+01 + sys_corr_11: -2.38171276e+02 + sys_corr_12: 1.47627363e+02 + sys_corr_13: 5.22625595e+02 + sys_corr_14: -1.64036659e+02 + sys_corr_15: -6.60606205e+01 + sys_corr_16: 1.04462809e+01 + sys_corr_17: 7.08176702e-01 + sys_corr_18: -4.69567668e-06 + sys_corr_19: -1.86813690e-04 + sys_corr_20: 8.35749486e-04 + sys_corr_21: -1.46477791e-03 + sys_corr_22: 5.05246869e-04 + sys_corr_23: 1.51153724e-02 + sys_corr_24: -4.81328921e-03 + sys_corr_25: 2.46000676e-02 + sys_corr_26: 2.83780687e-02 + sys_corr_27: -2.25422421e-03 + sys_corr_28: -5.32594571e-02 + sys_corr_29: -4.79159644e-02 + sys_corr_30: 6.81923383e-02 + sys_corr_31: 4.48515050e-02 + sys_corr_32: 2.89375183e-05 + sys_corr_33: 2.47769782e-03 + sys_corr_34: 1.62435435e-02 stat: 600.0 sys_beam: 900.0 sys_luminosity: 1200.0 -- sys_corr_1: -221.03406480331822 - sys_corr_2: -598.7026972313603 - sys_corr_3: 7.879832997776759 - sys_corr_4: -218.47633151977286 - sys_corr_5: 119.79805532288626 - sys_corr_6: 540.0535716310892 - sys_corr_7: -14.335697968369436 - sys_corr_8: 370.33754643475294 - sys_corr_9: 156.56323982872613 - sys_corr_10: 48.8508901721728 - sys_corr_11: -72.25805431862459 - sys_corr_12: -60.236085152794395 - sys_corr_13: 166.2409610002786 - sys_corr_14: 496.0419192105175 - sys_corr_15: -42.90701380970428 - sys_corr_16: -16.037262957111544 - sys_corr_17: 0.47852053694841873 - sys_corr_18: -4.710614020133946e-06 - sys_corr_19: -9.20596815878394e-05 - sys_corr_20: -0.0012894448180819224 - sys_corr_21: 0.005305379878285471 - sys_corr_22: -0.004502053808524988 - sys_corr_23: 0.00938338650125305 - sys_corr_24: 0.1241067869379027 - sys_corr_25: 0.036524833276287104 - sys_corr_26: -0.026124954404063743 - sys_corr_27: 0.02700475754557667 - sys_corr_28: -0.022177739727000635 - sys_corr_29: -0.04456292446846311 - sys_corr_30: 0.028757506354543067 - sys_corr_31: 0.05203761053446031 - sys_corr_32: 0.05860786606393608 - sys_corr_33: -0.05914759281178291 - sys_corr_34: 0.0033480429964207943 +- sys_corr_1: -2.21034065e+02 + sys_corr_2: -5.98702697e+02 + sys_corr_3: 7.87983300e+00 + sys_corr_4: -2.18476332e+02 + sys_corr_5: 1.19798055e+02 + sys_corr_6: 5.40053572e+02 + sys_corr_7: -1.43356980e+01 + sys_corr_8: 3.70337546e+02 + sys_corr_9: 1.56563240e+02 + sys_corr_10: 4.88508902e+01 + sys_corr_11: -7.22580543e+01 + sys_corr_12: -6.02360852e+01 + sys_corr_13: 1.66240961e+02 + sys_corr_14: 4.96041919e+02 + sys_corr_15: -4.29070138e+01 + sys_corr_16: -1.60372630e+01 + sys_corr_17: 4.78520537e-01 + sys_corr_18: -4.71061402e-06 + sys_corr_19: -9.20596816e-05 + sys_corr_20: -1.28944482e-03 + sys_corr_21: 5.30537988e-03 + sys_corr_22: -4.50205381e-03 + sys_corr_23: 9.38338650e-03 + sys_corr_24: 1.24106787e-01 + sys_corr_25: 3.65248333e-02 + sys_corr_26: -2.61249544e-02 + sys_corr_27: 2.70047575e-02 + sys_corr_28: -2.21777397e-02 + sys_corr_29: -4.45629245e-02 + sys_corr_30: 2.87575064e-02 + sys_corr_31: 5.20376105e-02 + sys_corr_32: 5.86078661e-02 + sys_corr_33: -5.91475928e-02 + sys_corr_34: 3.34804300e-03 stat: 600.0 sys_beam: 800.0 sys_luminosity: 1100.0 -- sys_corr_1: -175.95234830648135 - sys_corr_2: -458.2971920158765 - sys_corr_3: -25.221580090315616 - sys_corr_4: 34.36989661893115 - sys_corr_5: 36.82367806379523 - sys_corr_6: 68.2313935314736 - sys_corr_7: -45.66847954320388 - sys_corr_8: -111.32792227020762 - sys_corr_9: -424.8650642158528 - sys_corr_10: 408.5006539031902 - sys_corr_11: -128.01638358133124 - sys_corr_12: -105.17863116654289 - sys_corr_13: 49.58952197883074 - sys_corr_14: 17.210940422190852 - sys_corr_15: 392.3340808181993 - sys_corr_16: -123.20759730685332 - sys_corr_17: 0.758099843284734 - sys_corr_18: 5.007363639458017e-06 - sys_corr_19: -0.00036884888231158573 - sys_corr_20: -0.0012978386362298496 - sys_corr_21: 0.0054106947027759795 - sys_corr_22: -0.013313942732976982 - sys_corr_23: 0.051156959887365086 - sys_corr_24: 0.23458858072680083 - sys_corr_25: 0.06360147645469062 - sys_corr_26: 0.013309433725949454 - sys_corr_27: -0.04071310626281232 - sys_corr_28: -0.02817785212289181 - sys_corr_29: -0.17995056171421395 - sys_corr_30: -0.021692423247824093 - sys_corr_31: -0.00700966732790282 - sys_corr_32: 0.037173541238498344 - sys_corr_33: -0.12043966335736828 - sys_corr_34: 0.015433714109959955 +- sys_corr_1: -1.75952348e+02 + sys_corr_2: -4.58297192e+02 + sys_corr_3: -2.52215801e+01 + sys_corr_4: 3.43698966e+01 + sys_corr_5: 3.68236781e+01 + sys_corr_6: 6.82313935e+01 + sys_corr_7: -4.56684795e+01 + sys_corr_8: -1.11327922e+02 + sys_corr_9: -4.24865064e+02 + sys_corr_10: 4.08500654e+02 + sys_corr_11: -1.28016384e+02 + sys_corr_12: -1.05178631e+02 + sys_corr_13: 4.95895220e+01 + sys_corr_14: 1.72109404e+01 + sys_corr_15: 3.92334081e+02 + sys_corr_16: -1.23207597e+02 + sys_corr_17: 7.58099843e-01 + sys_corr_18: 5.00736364e-06 + sys_corr_19: -3.68848882e-04 + sys_corr_20: -1.29783864e-03 + sys_corr_21: 5.41069470e-03 + sys_corr_22: -1.33139427e-02 + sys_corr_23: 5.11569599e-02 + sys_corr_24: 2.34588581e-01 + sys_corr_25: 6.36014765e-02 + sys_corr_26: 1.33094337e-02 + sys_corr_27: -4.07131063e-02 + sys_corr_28: -2.81778521e-02 + sys_corr_29: -1.79950562e-01 + sys_corr_30: -2.16924232e-02 + sys_corr_31: -7.00966733e-03 + sys_corr_32: 3.71735412e-02 + sys_corr_33: -1.20439663e-01 + sys_corr_34: 1.54337141e-02 stat: 500.0 sys_beam: 700.0 sys_luminosity: 900.0 -- sys_corr_1: -183.14713236431768 - sys_corr_2: 567.3613770804153 - sys_corr_3: 468.5631214609907 - sys_corr_4: -942.5696139985935 - sys_corr_5: -309.77329328943574 - sys_corr_6: 193.68459039286734 - sys_corr_7: 711.2139889472825 - sys_corr_8: -281.51288568753813 - sys_corr_9: 108.21391439053173 - sys_corr_10: 77.90499127010344 - sys_corr_11: -58.04127429123355 - sys_corr_12: -198.56395558603836 - sys_corr_13: 23.547862549528542 - sys_corr_14: -43.82890699205807 - sys_corr_15: -20.506574142854802 - sys_corr_16: -67.4337580528403 - sys_corr_17: 1.4190064875049482 - sys_corr_18: -3.892991343558439e-06 - sys_corr_19: -0.0001779767176778534 - sys_corr_20: -0.0017744229331917573 - sys_corr_21: 0.005908187636416397 - sys_corr_22: -0.014350998864710219 - sys_corr_23: 0.027622432692232517 - sys_corr_24: 0.18750360514632944 - sys_corr_25: 0.054626057945292544 - sys_corr_26: 0.01028457841953876 - sys_corr_27: -0.04081526804418747 - sys_corr_28: -0.0392171074296807 - sys_corr_29: -0.1371256172369678 - sys_corr_30: 0.01775950055697494 - sys_corr_31: 0.06695235137986345 - sys_corr_32: -0.0037466924283145976 - sys_corr_33: -0.06196728952533849 - sys_corr_34: -0.019287334660444688 +- sys_corr_1: -1.83147132e+02 + sys_corr_2: 5.67361377e+02 + sys_corr_3: 4.68563121e+02 + sys_corr_4: -9.42569614e+02 + sys_corr_5: -3.09773293e+02 + sys_corr_6: 1.93684590e+02 + sys_corr_7: 7.11213989e+02 + sys_corr_8: -2.81512886e+02 + sys_corr_9: 1.08213914e+02 + sys_corr_10: 7.79049913e+01 + sys_corr_11: -5.80412743e+01 + sys_corr_12: -1.98563956e+02 + sys_corr_13: 2.35478625e+01 + sys_corr_14: -4.38289070e+01 + sys_corr_15: -2.05065741e+01 + sys_corr_16: -6.74337581e+01 + sys_corr_17: 1.41900649e+00 + sys_corr_18: -3.89299134e-06 + sys_corr_19: -1.77976718e-04 + sys_corr_20: -1.77442293e-03 + sys_corr_21: 5.90818764e-03 + sys_corr_22: -1.43509989e-02 + sys_corr_23: 2.76224327e-02 + sys_corr_24: 1.87503605e-01 + sys_corr_25: 5.46260579e-02 + sys_corr_26: 1.02845784e-02 + sys_corr_27: -4.08152680e-02 + sys_corr_28: -3.92171074e-02 + sys_corr_29: -1.37125617e-01 + sys_corr_30: 1.77595006e-02 + sys_corr_31: 6.69523514e-02 + sys_corr_32: -3.74669243e-03 + sys_corr_33: -6.19672895e-02 + sys_corr_34: -1.92873347e-02 stat: 600.0 sys_beam: 1000.0 sys_luminosity: 1400.0 -- sys_corr_1: -108.57118702106705 - sys_corr_2: 839.8291501072298 - sys_corr_3: 459.83908701836526 - sys_corr_4: -925.6968612905123 - sys_corr_5: -400.4040360456139 - sys_corr_6: 42.689179362571416 - sys_corr_7: -752.2174879814357 - sys_corr_8: -53.071081894755764 - sys_corr_9: -128.09208022343665 - sys_corr_10: -32.983572819809304 - sys_corr_11: 74.02432402617757 - sys_corr_12: 78.5267575038791 - sys_corr_13: 36.423576518715215 - sys_corr_14: 39.17038903485127 - sys_corr_15: 53.70701716655172 - sys_corr_16: 94.08338628291769 - sys_corr_17: 0.6888256080273318 - sys_corr_18: 4.136991763901693e-07 - sys_corr_19: -0.0008576650387597874 - sys_corr_20: -0.002692624413594671 - sys_corr_21: 0.00753942440354821 - sys_corr_22: -0.01576189784794326 - sys_corr_23: 0.04972357343845047 - sys_corr_24: 0.14135531791325082 - sys_corr_25: 0.08199691279107578 - sys_corr_26: 0.010188403737671355 - sys_corr_27: 0.023524867407479545 - sys_corr_28: -0.04847116685703295 - sys_corr_29: -0.03684786732397083 - sys_corr_30: -0.007012670525575931 - sys_corr_31: 0.012757665665888493 - sys_corr_32: 0.02273651715658992 - sys_corr_33: -0.041124969668091094 - sys_corr_34: 0.018462409570258135 +- sys_corr_1: -1.08571187e+02 + sys_corr_2: 8.39829150e+02 + sys_corr_3: 4.59839087e+02 + sys_corr_4: -9.25696861e+02 + sys_corr_5: -4.00404036e+02 + sys_corr_6: 4.26891794e+01 + sys_corr_7: -7.52217488e+02 + sys_corr_8: -5.30710819e+01 + sys_corr_9: -1.28092080e+02 + sys_corr_10: -3.29835728e+01 + sys_corr_11: 7.40243240e+01 + sys_corr_12: 7.85267575e+01 + sys_corr_13: 3.64235765e+01 + sys_corr_14: 3.91703890e+01 + sys_corr_15: 5.37070172e+01 + sys_corr_16: 9.40833863e+01 + sys_corr_17: 6.88825608e-01 + sys_corr_18: 4.13699176e-07 + sys_corr_19: -8.57665039e-04 + sys_corr_20: -2.69262441e-03 + sys_corr_21: 7.53942440e-03 + sys_corr_22: -1.57618978e-02 + sys_corr_23: 4.97235734e-02 + sys_corr_24: 1.41355318e-01 + sys_corr_25: 8.19969128e-02 + sys_corr_26: 1.01884037e-02 + sys_corr_27: 2.35248674e-02 + sys_corr_28: -4.84711669e-02 + sys_corr_29: -3.68478673e-02 + sys_corr_30: -7.01267053e-03 + sys_corr_31: 1.27576657e-02 + sys_corr_32: 2.27365172e-02 + sys_corr_33: -4.11249697e-02 + sys_corr_34: 1.84624096e-02 stat: 700.0 sys_beam: 500.0 sys_luminosity: 700.0 diff --git a/nnpdf_data/nnpdf_data/commondata/LHCB_Z0J_13TEV_2022/filter.py b/nnpdf_data/nnpdf_data/commondata/LHCB_Z0J_13TEV_2022/filter.py index 4b3b53da17..d3d0bde4ad 100644 --- a/nnpdf_data/nnpdf_data/commondata/LHCB_Z0J_13TEV_2022/filter.py +++ b/nnpdf_data/nnpdf_data/commondata/LHCB_Z0J_13TEV_2022/filter.py @@ -3,6 +3,10 @@ import numpy as np import yaml +from nnpdf_data.filter_utils.utils import prettify_float + +yaml.add_representer(float, prettify_float) + PRINT_EIGENVALUES = False # Loading tables diff --git a/nnpdf_data/nnpdf_data/commondata/LHCB_Z0J_13TEV_2022/kinematics_dimuon_pT.yaml b/nnpdf_data/nnpdf_data/commondata/LHCB_Z0J_13TEV_2022/kinematics_dimuon_pT.yaml index 40e1ca53f7..b357fcdd8f 100644 --- a/nnpdf_data/nnpdf_data/commondata/LHCB_Z0J_13TEV_2022/kinematics_dimuon_pT.yaml +++ b/nnpdf_data/nnpdf_data/commondata/LHCB_Z0J_13TEV_2022/kinematics_dimuon_pT.yaml @@ -37,7 +37,7 @@ bins: max: null - pT: min: 4.6 - mid: 5.199999999999999 + mid: 5.20000000e+00 max: 5.8 sqrts: min: null @@ -61,7 +61,7 @@ bins: max: null - pT: min: 7.2 - mid: 7.949999999999999 + mid: 7.95000000e+00 max: 8.7 sqrts: min: null @@ -97,7 +97,7 @@ bins: max: null - pT: min: 12.8 - mid: 14.100000000000001 + mid: 1.41000000e+01 max: 15.4 sqrts: min: null diff --git a/nnpdf_data/nnpdf_data/commondata/LHCB_Z0J_13TEV_2022/uncertainties_dimuon_pT.yaml b/nnpdf_data/nnpdf_data/commondata/LHCB_Z0J_13TEV_2022/uncertainties_dimuon_pT.yaml index 6e2fc7415d..90643b971d 100644 --- a/nnpdf_data/nnpdf_data/commondata/LHCB_Z0J_13TEV_2022/uncertainties_dimuon_pT.yaml +++ b/nnpdf_data/nnpdf_data/commondata/LHCB_Z0J_13TEV_2022/uncertainties_dimuon_pT.yaml @@ -171,535 +171,535 @@ definitions: treatment: ADD type: LHCB_LUM bins: -- Stat_corr_1: 0.0045585924293861995 - Stat_corr_2: 0.00635279736864511 - Stat_corr_3: 0.005185330094156083 - Stat_corr_4: 0.004725777479015948 - Stat_corr_5: 0.0011999059207537018 - Stat_corr_6: 0.00020377477380211396 - Stat_corr_7: -0.028074119885969553 - Stat_corr_8: -5.5437402009438926e-05 - Stat_corr_9: 1.9294076977760893e-07 - Stat_corr_10: 7.723501989124924e-07 - Stat_corr_11: -3.091715609481062e-08 - Stat_corr_12: -2.538484001448374e-09 - Stat_corr_13: -4.347024666130285e-12 - Stat_corr_14: -3.015554274449413e-16 - Sys_corr_eff_1: -0.04614344502479586 - Sys_corr_eff_2: -2.7430801029875748e-05 - Sys_corr_eff_3: 0.0004172327425557539 - Sys_corr_eff_4: -0.001123791465821106 - Sys_corr_eff_5: 0.0006103289859037536 - Sys_corr_eff_6: 0.0007913324134868637 - Sys_corr_eff_7: 7.123695668525502e-05 - Sys_corr_eff_8: -1.7999309563995923e-05 - Sys_corr_eff_9: 6.912989591853537e-05 - Sys_corr_eff_10: 3.799486655458465e-05 - Sys_corr_eff_11: 5.304636675674716e-05 - Sys_corr_eff_12: 2.176255289457695e-05 - Sys_corr_eff_13: 4.599654520126996e-06 - Sys_corr_eff_14: -3.0255222999868614e-08 - Sys_back_corr: 0.0020152543263816606 - Sys_back_unc: 0.0020152543263816606 - Sys_fsr_corr: 0.009673220766631971 - Sys_fsr_unc: 0.009673220766631971 - Sys_clos_corr: 0.020152543263816606 - Sys_clos_unc: 0.020152543263816606 - Sys_align_corr: 0.044335595180396536 - Sys_align_unc: 0.044335595180396536 - Sys_unfold: 0.011970000000000001 +- Stat_corr_1: 4.55859243e-03 + Stat_corr_2: 6.35279737e-03 + Stat_corr_3: 5.18533009e-03 + Stat_corr_4: 4.72577748e-03 + Stat_corr_5: 1.19990592e-03 + Stat_corr_6: 2.03774774e-04 + Stat_corr_7: -2.80741199e-02 + Stat_corr_8: -5.54374020e-05 + Stat_corr_9: 1.92940770e-07 + Stat_corr_10: 7.72350199e-07 + Stat_corr_11: -3.09171561e-08 + Stat_corr_12: -2.53848400e-09 + Stat_corr_13: -4.34702467e-12 + Stat_corr_14: -3.01555427e-16 + Sys_corr_eff_1: -4.61434450e-02 + Sys_corr_eff_2: -2.74308010e-05 + Sys_corr_eff_3: 4.17232743e-04 + Sys_corr_eff_4: -1.12379147e-03 + Sys_corr_eff_5: 6.10328986e-04 + Sys_corr_eff_6: 7.91332413e-04 + Sys_corr_eff_7: 7.12369567e-05 + Sys_corr_eff_8: -1.79993096e-05 + Sys_corr_eff_9: 6.91298959e-05 + Sys_corr_eff_10: 3.79948666e-05 + Sys_corr_eff_11: 5.30463668e-05 + Sys_corr_eff_12: 2.17625529e-05 + Sys_corr_eff_13: 4.59965452e-06 + Sys_corr_eff_14: -3.02552230e-08 + Sys_back_corr: 2.01525433e-03 + Sys_back_unc: 2.01525433e-03 + Sys_fsr_corr: 9.67322077e-03 + Sys_fsr_unc: 9.67322077e-03 + Sys_clos_corr: 2.01525433e-02 + Sys_clos_unc: 2.01525433e-02 + Sys_align_corr: 4.43355952e-02 + Sys_align_unc: 4.43355952e-02 + Sys_unfold: 1.19700000e-02 Luminosity: 0.11 -- Stat_corr_1: 0.029641072881166217 - Stat_corr_2: 0.032659112993415666 - Stat_corr_3: 0.018116517161291788 - Stat_corr_4: 0.01362323830989247 - Stat_corr_5: 0.0016999020868603925 - Stat_corr_6: 9.574996118155262e-05 - Stat_corr_7: 0.0061715550925234754 - Stat_corr_8: 3.7314213789368345e-05 - Stat_corr_9: 1.0277105412093954e-06 - Stat_corr_10: -4.524239206047869e-09 - Stat_corr_11: 7.953530005405958e-08 - Stat_corr_12: 9.115315672553264e-09 - Stat_corr_13: 1.681557472247306e-11 - Stat_corr_14: 1.1703155103603592e-15 - Sys_corr_eff_1: -0.09186007647768286 - Sys_corr_eff_2: -0.001345792921269077 - Sys_corr_eff_3: -0.00032811787376207794 - Sys_corr_eff_4: 0.0010863044235414677 - Sys_corr_eff_5: 0.0008252840982902941 - Sys_corr_eff_6: 3.984240010767381e-06 - Sys_corr_eff_7: 0.0001174678485882731 - Sys_corr_eff_8: -0.00016431223613961446 - Sys_corr_eff_9: 9.170336533396939e-05 - Sys_corr_eff_10: -7.993886979286832e-05 - Sys_corr_eff_11: 9.434166404683691e-05 - Sys_corr_eff_12: -1.6450547743483776e-06 - Sys_corr_eff_13: -4.855062941542905e-06 - Sys_corr_eff_14: 8.151561152409017e-08 - Sys_back_corr: 0.006262137654188066 - Sys_back_unc: 0.006262137654188066 - Sys_fsr_corr: 0.052445402853825054 - Sys_fsr_unc: 0.052445402853825054 - Sys_clos_corr: 0.014089809721923146 - Sys_clos_unc: 0.014089809721923146 - Sys_align_corr: 0.06418691095542767 - Sys_align_unc: 0.06418691095542767 +- Stat_corr_1: 2.96410729e-02 + Stat_corr_2: 3.26591130e-02 + Stat_corr_3: 1.81165172e-02 + Stat_corr_4: 1.36232383e-02 + Stat_corr_5: 1.69990209e-03 + Stat_corr_6: 9.57499612e-05 + Stat_corr_7: 6.17155509e-03 + Stat_corr_8: 3.73142138e-05 + Stat_corr_9: 1.02771054e-06 + Stat_corr_10: -4.52423921e-09 + Stat_corr_11: 7.95353001e-08 + Stat_corr_12: 9.11531567e-09 + Stat_corr_13: 1.68155747e-11 + Stat_corr_14: 1.17031551e-15 + Sys_corr_eff_1: -9.18600765e-02 + Sys_corr_eff_2: -1.34579292e-03 + Sys_corr_eff_3: -3.28117874e-04 + Sys_corr_eff_4: 1.08630442e-03 + Sys_corr_eff_5: 8.25284098e-04 + Sys_corr_eff_6: 3.98424001e-06 + Sys_corr_eff_7: 1.17467849e-04 + Sys_corr_eff_8: -1.64312236e-04 + Sys_corr_eff_9: 9.17033653e-05 + Sys_corr_eff_10: -7.99388698e-05 + Sys_corr_eff_11: 9.43416640e-05 + Sys_corr_eff_12: -1.64505477e-06 + Sys_corr_eff_13: -4.85506294e-06 + Sys_corr_eff_14: 8.15156115e-08 + Sys_back_corr: 6.26213765e-03 + Sys_back_unc: 6.26213765e-03 + Sys_fsr_corr: 5.24454029e-02 + Sys_fsr_unc: 5.24454029e-02 + Sys_clos_corr: 1.40898097e-02 + Sys_clos_unc: 1.40898097e-02 + Sys_align_corr: 6.41869110e-02 + Sys_align_unc: 6.41869110e-02 Sys_unfold: 0.036531 Luminosity: 0.22 -- Stat_corr_1: 0.0388995737694654 - Stat_corr_2: 0.00478980464483044 - Stat_corr_3: -0.020867658080595552 - Stat_corr_4: -0.022373239724438734 - Stat_corr_5: -0.004948198293688879 - Stat_corr_6: -0.00043029612931078326 - Stat_corr_7: -0.0017830284089124424 - Stat_corr_8: -0.00010444860655919581 - Stat_corr_9: -1.0508758384794105e-06 - Stat_corr_10: -6.683204914786287e-07 - Stat_corr_11: -2.664979141901447e-09 - Stat_corr_12: -2.1527942599184973e-08 - Stat_corr_13: -5.1069523879208063e-11 - Stat_corr_14: -3.6063635002669985e-15 - Sys_corr_eff_1: -0.08807380913175814 - Sys_corr_eff_2: -0.0009467625823364269 - Sys_corr_eff_3: 0.0010786331823431253 - Sys_corr_eff_4: 0.0002951923446954836 - Sys_corr_eff_5: 0.00020723986972614807 - Sys_corr_eff_6: -0.00010248366532219746 - Sys_corr_eff_7: -0.0004159686404232959 - Sys_corr_eff_8: 0.000308785464999088 - Sys_corr_eff_9: -8.018700295722105e-05 - Sys_corr_eff_10: 0.00010671583128035716 - Sys_corr_eff_11: -0.00011473675344882692 - Sys_corr_eff_12: 6.090381264411863e-06 - Sys_corr_eff_13: 9.5961528539751e-06 - Sys_corr_eff_14: 9.407785504868653e-08 - Sys_back_corr: 0.005662511103741874 - Sys_back_unc: 0.005662511103741874 - Sys_fsr_corr: 0.04125543804154792 - Sys_fsr_unc: 0.04125543804154792 - Sys_clos_corr: 0.036401857095483464 - Sys_clos_unc: 0.036401857095483464 - Sys_align_corr: 0.062287622141160605 - Sys_align_unc: 0.062287622141160605 - Sys_unfold: 0.05834399999999999 +- Stat_corr_1: 3.88995738e-02 + Stat_corr_2: 4.78980464e-03 + Stat_corr_3: -2.08676581e-02 + Stat_corr_4: -2.23732397e-02 + Stat_corr_5: -4.94819829e-03 + Stat_corr_6: -4.30296129e-04 + Stat_corr_7: -1.78302841e-03 + Stat_corr_8: -1.04448607e-04 + Stat_corr_9: -1.05087584e-06 + Stat_corr_10: -6.68320491e-07 + Stat_corr_11: -2.66497914e-09 + Stat_corr_12: -2.15279426e-08 + Stat_corr_13: -5.10695239e-11 + Stat_corr_14: -3.60636350e-15 + Sys_corr_eff_1: -8.80738091e-02 + Sys_corr_eff_2: -9.46762582e-04 + Sys_corr_eff_3: 1.07863318e-03 + Sys_corr_eff_4: 2.95192345e-04 + Sys_corr_eff_5: 2.07239870e-04 + Sys_corr_eff_6: -1.02483665e-04 + Sys_corr_eff_7: -4.15968640e-04 + Sys_corr_eff_8: 3.08785465e-04 + Sys_corr_eff_9: -8.01870030e-05 + Sys_corr_eff_10: 1.06715831e-04 + Sys_corr_eff_11: -1.14736753e-04 + Sys_corr_eff_12: 6.09038126e-06 + Sys_corr_eff_13: 9.59615285e-06 + Sys_corr_eff_14: 9.40778550e-08 + Sys_back_corr: 5.66251110e-03 + Sys_back_unc: 5.66251110e-03 + Sys_fsr_corr: 4.12554380e-02 + Sys_fsr_unc: 4.12554380e-02 + Sys_clos_corr: 3.64018571e-02 + Sys_clos_unc: 3.64018571e-02 + Sys_align_corr: 6.22876221e-02 + Sys_align_unc: 6.22876221e-02 + Sys_unfold: 5.83440000e-02 Luminosity: 0.23 -- Stat_corr_1: 0.030264620533085464 - Stat_corr_2: -0.03372309208614301 - Stat_corr_3: -1.5349252494315476e-05 - Stat_corr_4: 0.017874013797384795 - Stat_corr_5: 0.011180162893411002 - Stat_corr_6: 0.001368836328148159 - Stat_corr_7: 0.000545322930581325 - Stat_corr_8: 0.00039754892194411546 - Stat_corr_9: 4.354092394927685e-06 - Stat_corr_10: 1.6986689136318007e-06 - Stat_corr_11: 7.169567228917708e-08 - Stat_corr_12: 7.347003020870328e-09 - Stat_corr_13: 3.27507761852775e-12 - Stat_corr_14: 1.6262049793125537e-16 - Sys_corr_eff_1: -0.09021803676200943 - Sys_corr_eff_2: -0.0011103593171681463 - Sys_corr_eff_3: -0.0012950506582564373 - Sys_corr_eff_4: -0.00010264888928571794 - Sys_corr_eff_5: -0.0009683176635505432 - Sys_corr_eff_6: 0.0002164953150848625 - Sys_corr_eff_7: 0.0001081794518431224 - Sys_corr_eff_8: 0.00014311689661254359 - Sys_corr_eff_9: 0.00014480958324780894 - Sys_corr_eff_10: 6.364975179583113e-05 - Sys_corr_eff_11: -3.274244826360132e-05 - Sys_corr_eff_12: 3.503322547410509e-06 - Sys_corr_eff_13: 7.209917461577588e-06 - Sys_corr_eff_14: -6.527334977679331e-08 - Sys_back_corr: 0.006380931593427405 - Sys_back_unc: 0.006380931593427405 - Sys_fsr_corr: 0.014357096085211662 - Sys_fsr_unc: 0.014357096085211662 - Sys_clos_corr: 0.024726109924531194 - Sys_clos_unc: 0.024726109924531194 - Sys_align_corr: 0.0685950146293446 - Sys_align_unc: 0.0685950146293446 +- Stat_corr_1: 3.02646205e-02 + Stat_corr_2: -3.37230921e-02 + Stat_corr_3: -1.53492525e-05 + Stat_corr_4: 1.78740138e-02 + Stat_corr_5: 1.11801629e-02 + Stat_corr_6: 1.36883633e-03 + Stat_corr_7: 5.45322931e-04 + Stat_corr_8: 3.97548922e-04 + Stat_corr_9: 4.35409239e-06 + Stat_corr_10: 1.69866891e-06 + Stat_corr_11: 7.16956723e-08 + Stat_corr_12: 7.34700302e-09 + Stat_corr_13: 3.27507762e-12 + Stat_corr_14: 1.62620498e-16 + Sys_corr_eff_1: -9.02180368e-02 + Sys_corr_eff_2: -1.11035932e-03 + Sys_corr_eff_3: -1.29505066e-03 + Sys_corr_eff_4: -1.02648889e-04 + Sys_corr_eff_5: -9.68317664e-04 + Sys_corr_eff_6: 2.16495315e-04 + Sys_corr_eff_7: 1.08179452e-04 + Sys_corr_eff_8: 1.43116897e-04 + Sys_corr_eff_9: 1.44809583e-04 + Sys_corr_eff_10: 6.36497518e-05 + Sys_corr_eff_11: -3.27424483e-05 + Sys_corr_eff_12: 3.50332255e-06 + Sys_corr_eff_13: 7.20991746e-06 + Sys_corr_eff_14: -6.52733498e-08 + Sys_back_corr: 6.38093159e-03 + Sys_back_unc: 6.38093159e-03 + Sys_fsr_corr: 1.43570961e-02 + Sys_fsr_unc: 1.43570961e-02 + Sys_clos_corr: 2.47261099e-02 + Sys_clos_unc: 2.47261099e-02 + Sys_align_corr: 6.85950146e-02 + Sys_align_unc: 6.85950146e-02 Sys_unfold: 0.051888 Luminosity: 0.23 -- Stat_corr_1: 0.008905614930091385 - Stat_corr_2: -0.016604413218117668 - Stat_corr_3: 0.02174361662700741 - Stat_corr_4: -0.00430860831544181 - Stat_corr_5: -0.026996091525548844 - Stat_corr_6: -0.004647089877103741 - Stat_corr_7: -0.0002569058896180513 - Stat_corr_8: -0.0017842446202120722 - Stat_corr_9: -2.1540255632068272e-05 - Stat_corr_10: -1.0922248605281535e-05 - Stat_corr_11: -1.4806373859055793e-09 - Stat_corr_12: 8.289451404019794e-09 - Stat_corr_13: 9.293257877686779e-11 - Stat_corr_14: 6.967512933712583e-15 - Sys_corr_eff_1: -0.07751071743367348 - Sys_corr_eff_2: 0.000390356989317421 - Sys_corr_eff_3: 0.0014828018745010744 - Sys_corr_eff_4: -1.0704327533779854e-05 - Sys_corr_eff_5: -0.0009052405223394692 - Sys_corr_eff_6: -7.522486727265797e-05 - Sys_corr_eff_7: 0.00029293839810846944 - Sys_corr_eff_8: -0.00015118397943722996 - Sys_corr_eff_9: 4.11595733023987e-05 - Sys_corr_eff_10: -9.484886369303563e-05 - Sys_corr_eff_11: 6.3062644859658e-05 - Sys_corr_eff_12: -5.642712988066268e-06 - Sys_corr_eff_13: -4.9513955229560006e-06 - Sys_corr_eff_14: 2.5919745632068447e-08 - Sys_back_corr: 0.004920048983495999 - Sys_back_unc: 0.004920048983495999 - Sys_fsr_corr: 0.01686873937198628 - Sys_fsr_unc: 0.01686873937198628 - Sys_clos_corr: 0.030926022181974842 - Sys_clos_unc: 0.030926022181974842 - Sys_align_corr: 0.04287471257046512 - Sys_align_unc: 0.04287471257046512 +- Stat_corr_1: 8.90561493e-03 + Stat_corr_2: -1.66044132e-02 + Stat_corr_3: 2.17436166e-02 + Stat_corr_4: -4.30860832e-03 + Stat_corr_5: -2.69960915e-02 + Stat_corr_6: -4.64708988e-03 + Stat_corr_7: -2.56905890e-04 + Stat_corr_8: -1.78424462e-03 + Stat_corr_9: -2.15402556e-05 + Stat_corr_10: -1.09222486e-05 + Stat_corr_11: -1.48063739e-09 + Stat_corr_12: 8.28945140e-09 + Stat_corr_13: 9.29325788e-11 + Stat_corr_14: 6.96751293e-15 + Sys_corr_eff_1: -7.75107174e-02 + Sys_corr_eff_2: 3.90356989e-04 + Sys_corr_eff_3: 1.48280187e-03 + Sys_corr_eff_4: -1.07043275e-05 + Sys_corr_eff_5: -9.05240522e-04 + Sys_corr_eff_6: -7.52248673e-05 + Sys_corr_eff_7: 2.92938398e-04 + Sys_corr_eff_8: -1.51183979e-04 + Sys_corr_eff_9: 4.11595733e-05 + Sys_corr_eff_10: -9.48488637e-05 + Sys_corr_eff_11: 6.30626449e-05 + Sys_corr_eff_12: -5.64271299e-06 + Sys_corr_eff_13: -4.95139552e-06 + Sys_corr_eff_14: 2.59197456e-08 + Sys_back_corr: 4.92004898e-03 + Sys_back_unc: 4.92004898e-03 + Sys_fsr_corr: 1.68687394e-02 + Sys_fsr_unc: 1.68687394e-02 + Sys_clos_corr: 3.09260222e-02 + Sys_clos_unc: 3.09260222e-02 + Sys_align_corr: 4.28747126e-02 + Sys_align_unc: 4.28747126e-02 Sys_unfold: 0.01988 Luminosity: 0.2 -- Stat_corr_1: 0.002270367971422007 - Stat_corr_2: -0.006394469646095287 - Stat_corr_3: 0.024725390696247636 - Stat_corr_4: -0.024419552106714832 - Stat_corr_5: 0.015580589433314748 - Stat_corr_6: 0.008488342948238447 - Stat_corr_7: 7.782004082439804e-05 - Stat_corr_8: 0.005609680902491923 - Stat_corr_9: 0.00010787529534482529 - Stat_corr_10: 6.140897318551527e-05 - Stat_corr_11: 1.389122861336519e-07 - Stat_corr_12: -3.555875104817312e-08 - Stat_corr_13: -7.356623516850208e-10 - Stat_corr_14: -5.5759984349401064e-14 - Sys_corr_eff_1: -0.06909335511792715 - Sys_corr_eff_2: -1.9634916544842713e-05 - Sys_corr_eff_3: -0.00040141487060788543 - Sys_corr_eff_4: -0.001112768157889655 - Sys_corr_eff_5: 0.00017617625918556933 - Sys_corr_eff_6: -0.0005641476227991661 - Sys_corr_eff_7: -0.00040311214290693836 - Sys_corr_eff_8: -0.0003186604846557653 - Sys_corr_eff_9: 8.107760827624317e-05 - Sys_corr_eff_10: -6.256032742579629e-05 - Sys_corr_eff_11: -1.6130973590557115e-05 - Sys_corr_eff_12: 4.4708577786510505e-06 - Sys_corr_eff_13: -7.6193837600553e-06 - Sys_corr_eff_14: -5.1260035901966824e-08 - Sys_back_corr: 0.006264966081312811 - Sys_back_unc: 0.006264966081312811 - Sys_fsr_corr: 0.04134877613666456 - Sys_fsr_unc: 0.04134877613666456 - Sys_clos_corr: 0.02067438806833228 - Sys_clos_unc: 0.02067438806833228 - Sys_align_corr: 0.04573425239358352 - Sys_align_unc: 0.04573425239358352 +- Stat_corr_1: 2.27036797e-03 + Stat_corr_2: -6.39446965e-03 + Stat_corr_3: 2.47253907e-02 + Stat_corr_4: -2.44195521e-02 + Stat_corr_5: 1.55805894e-02 + Stat_corr_6: 8.48834295e-03 + Stat_corr_7: 7.78200408e-05 + Stat_corr_8: 5.60968090e-03 + Stat_corr_9: 1.07875295e-04 + Stat_corr_10: 6.14089732e-05 + Stat_corr_11: 1.38912286e-07 + Stat_corr_12: -3.55587510e-08 + Stat_corr_13: -7.35662352e-10 + Stat_corr_14: -5.57599843e-14 + Sys_corr_eff_1: -6.90933551e-02 + Sys_corr_eff_2: -1.96349165e-05 + Sys_corr_eff_3: -4.01414871e-04 + Sys_corr_eff_4: -1.11276816e-03 + Sys_corr_eff_5: 1.76176259e-04 + Sys_corr_eff_6: -5.64147623e-04 + Sys_corr_eff_7: -4.03112143e-04 + Sys_corr_eff_8: -3.18660485e-04 + Sys_corr_eff_9: 8.10776083e-05 + Sys_corr_eff_10: -6.25603274e-05 + Sys_corr_eff_11: -1.61309736e-05 + Sys_corr_eff_12: 4.47085778e-06 + Sys_corr_eff_13: -7.61938376e-06 + Sys_corr_eff_14: -5.12600359e-08 + Sys_back_corr: 6.26496608e-03 + Sys_back_unc: 6.26496608e-03 + Sys_fsr_corr: 4.13487761e-02 + Sys_fsr_unc: 4.13487761e-02 + Sys_clos_corr: 2.06743881e-02 + Sys_clos_unc: 2.06743881e-02 + Sys_align_corr: 4.57342524e-02 + Sys_align_unc: 4.57342524e-02 Sys_unfold: 0.023922 Luminosity: 0.18 -- Stat_corr_1: 0.00030789392457529317 - Stat_corr_2: -0.001033773525479406 - Stat_corr_3: 0.005686152581225388 - Stat_corr_4: -0.0068450469949976125 - Stat_corr_5: 0.010056735476270472 - Stat_corr_6: -0.016683360175460297 - Stat_corr_7: 6.0424572579190566e-05 - Stat_corr_8: -0.02096723924862789 - Stat_corr_9: -0.0006208763143701181 - Stat_corr_10: -0.0004035074088037352 - Stat_corr_11: -6.575868985164359e-07 - Stat_corr_12: -8.599524785111735e-08 - Stat_corr_13: 4.489488426753007e-09 - Stat_corr_14: 3.4548949255311003e-13 - Sys_corr_eff_1: -0.06120476697727278 - Sys_corr_eff_2: 0.0011293802746078151 - Sys_corr_eff_3: -0.00031520827530008745 - Sys_corr_eff_4: -0.00044420997544968575 - Sys_corr_eff_5: 0.0004642861891059813 - Sys_corr_eff_6: -0.00043604460499502463 - Sys_corr_eff_7: 0.0005659201106051737 - Sys_corr_eff_8: 0.0003914223349694958 - Sys_corr_eff_9: -0.00015898166441279243 - Sys_corr_eff_10: 8.599880545160502e-06 - Sys_corr_eff_11: 1.3430277400077e-05 - Sys_corr_eff_12: -1.4524422390908785e-05 - Sys_corr_eff_13: 5.626376689712408e-06 - Sys_corr_eff_14: -1.545675844138686e-08 - Sys_back_corr: 0.004932069798776169 - Sys_back_unc: 0.004932069798776169 - Sys_fsr_corr: 0.027948395526398297 - Sys_fsr_unc: 0.027948395526398297 - Sys_clos_corr: 0.013152186130069785 - Sys_clos_unc: 0.013152186130069785 - Sys_align_corr: 0.032332457569754884 - Sys_align_unc: 0.032332457569754884 +- Stat_corr_1: 3.07893925e-04 + Stat_corr_2: -1.03377353e-03 + Stat_corr_3: 5.68615258e-03 + Stat_corr_4: -6.84504699e-03 + Stat_corr_5: 1.00567355e-02 + Stat_corr_6: -1.66833602e-02 + Stat_corr_7: 6.04245726e-05 + Stat_corr_8: -2.09672392e-02 + Stat_corr_9: -6.20876314e-04 + Stat_corr_10: -4.03507409e-04 + Stat_corr_11: -6.57586899e-07 + Stat_corr_12: -8.59952479e-08 + Stat_corr_13: 4.48948843e-09 + Stat_corr_14: 3.45489493e-13 + Sys_corr_eff_1: -6.12047670e-02 + Sys_corr_eff_2: 1.12938027e-03 + Sys_corr_eff_3: -3.15208275e-04 + Sys_corr_eff_4: -4.44209975e-04 + Sys_corr_eff_5: 4.64286189e-04 + Sys_corr_eff_6: -4.36044605e-04 + Sys_corr_eff_7: 5.65920111e-04 + Sys_corr_eff_8: 3.91422335e-04 + Sys_corr_eff_9: -1.58981664e-04 + Sys_corr_eff_10: 8.59988055e-06 + Sys_corr_eff_11: 1.34302774e-05 + Sys_corr_eff_12: -1.45244224e-05 + Sys_corr_eff_13: 5.62637669e-06 + Sys_corr_eff_14: -1.54567584e-08 + Sys_back_corr: 4.93206980e-03 + Sys_back_unc: 4.93206980e-03 + Sys_fsr_corr: 2.79483955e-02 + Sys_fsr_unc: 2.79483955e-02 + Sys_clos_corr: 1.31521861e-02 + Sys_clos_unc: 1.31521861e-02 + Sys_align_corr: 3.23324576e-02 + Sys_align_unc: 3.23324576e-02 Sys_unfold: 0.0248 Luminosity: 0.15 -- Stat_corr_1: 4.8181846517018556e-05 - Stat_corr_2: -0.0001472028439858881 - Stat_corr_3: 0.0010310135458158332 - Stat_corr_4: -0.001470891340062564 - Stat_corr_5: 0.004308098947984335 - Stat_corr_6: -0.024748277314633135 - Stat_corr_7: -0.00010976918070741982 - Stat_corr_8: 0.01604107625909798 - Stat_corr_9: 0.002262965419339303 - Stat_corr_10: 0.0018064696261709168 - Stat_corr_11: 5.581062693958889e-06 - Stat_corr_12: 8.919749836203809e-08 - Stat_corr_13: 1.1649183602316994e-09 - Stat_corr_14: 8.922814344657695e-14 - Sys_corr_eff_1: -0.049575500678300605 - Sys_corr_eff_2: 0.0006952177261757742 - Sys_corr_eff_3: -0.00047511132157984767 - Sys_corr_eff_4: 0.00012812719909764892 - Sys_corr_eff_5: -0.000252633349350327 - Sys_corr_eff_6: 0.0003083204322295681 - Sys_corr_eff_7: -0.0002963571179885796 - Sys_corr_eff_8: -4.126905296151958e-05 - Sys_corr_eff_9: -0.0005083312208407182 - Sys_corr_eff_10: -6.394523697847696e-05 - Sys_corr_eff_11: 5.069499444954099e-05 - Sys_corr_eff_12: -1.9336797029412914e-05 - Sys_corr_eff_13: -1.233566102822977e-05 - Sys_corr_eff_14: -4.0092703274957875e-08 - Sys_back_corr: 0.004553767670841367 - Sys_back_unc: 0.004553767670841367 - Sys_fsr_corr: 0.019581200984617877 - Sys_fsr_unc: 0.019581200984617877 - Sys_clos_corr: 0.01548281008086065 - Sys_clos_unc: 0.01548281008086065 - Sys_align_corr: 0.01775969391628133 - Sys_align_unc: 0.01775969391628133 +- Stat_corr_1: 4.81818465e-05 + Stat_corr_2: -1.47202844e-04 + Stat_corr_3: 1.03101355e-03 + Stat_corr_4: -1.47089134e-03 + Stat_corr_5: 4.30809895e-03 + Stat_corr_6: -2.47482773e-02 + Stat_corr_7: -1.09769181e-04 + Stat_corr_8: 1.60410763e-02 + Stat_corr_9: 2.26296542e-03 + Stat_corr_10: 1.80646963e-03 + Stat_corr_11: 5.58106269e-06 + Stat_corr_12: 8.91974984e-08 + Stat_corr_13: 1.16491836e-09 + Stat_corr_14: 8.92281434e-14 + Sys_corr_eff_1: -4.95755007e-02 + Sys_corr_eff_2: 6.95217726e-04 + Sys_corr_eff_3: -4.75111322e-04 + Sys_corr_eff_4: 1.28127199e-04 + Sys_corr_eff_5: -2.52633349e-04 + Sys_corr_eff_6: 3.08320432e-04 + Sys_corr_eff_7: -2.96357118e-04 + Sys_corr_eff_8: -4.12690530e-05 + Sys_corr_eff_9: -5.08331221e-04 + Sys_corr_eff_10: -6.39452370e-05 + Sys_corr_eff_11: 5.06949944e-05 + Sys_corr_eff_12: -1.93367970e-05 + Sys_corr_eff_13: -1.23356610e-05 + Sys_corr_eff_14: -4.00927033e-08 + Sys_back_corr: 4.55376767e-03 + Sys_back_unc: 4.55376767e-03 + Sys_fsr_corr: 1.95812010e-02 + Sys_fsr_unc: 1.95812010e-02 + Sys_clos_corr: 1.54828101e-02 + Sys_clos_unc: 1.54828101e-02 + Sys_align_corr: 1.77596939e-02 + Sys_align_unc: 1.77596939e-02 Sys_unfold: 0.01932 Luminosity: 0.13 -- Stat_corr_1: 4.347863216946705e-06 - Stat_corr_2: -9.168014172277114e-06 - Stat_corr_3: 6.834489177212687e-05 - Stat_corr_4: -0.00010050529074668144 - Stat_corr_5: 0.0003879875491634151 - Stat_corr_6: -0.0029364823328893066 - Stat_corr_7: -1.800264338047443e-05 - Stat_corr_8: 0.00312368465929296 - Stat_corr_9: -0.01367309903784049 - Stat_corr_10: -0.0139461713746786 - Stat_corr_11: -6.77718729639997e-05 - Stat_corr_12: -2.3649712551455493e-06 - Stat_corr_13: -2.5597514726936677e-10 - Stat_corr_14: 4.256769942537227e-15 - Sys_corr_eff_1: -0.039694674241334646 - Sys_corr_eff_2: 0.0015687031748932495 - Sys_corr_eff_3: -9.250790255304355e-05 - Sys_corr_eff_4: 0.00040105460912301985 - Sys_corr_eff_5: 7.598050254430054e-05 - Sys_corr_eff_6: -8.226876884747433e-06 - Sys_corr_eff_7: 0.0001803495380462755 - Sys_corr_eff_8: -0.0004947801110515556 - Sys_corr_eff_9: -6.125814872939547e-05 - Sys_corr_eff_10: 0.00020606746745102655 - Sys_corr_eff_11: -6.047715054073005e-05 - Sys_corr_eff_12: 3.443383461470049e-05 - Sys_corr_eff_13: 1.3969345553784259e-05 - Sys_corr_eff_14: 1.3715488566340159e-08 - Sys_back_corr: 0.004013538090014843 - Sys_back_unc: 0.004013538090014843 - Sys_fsr_corr: 0.013135215567321307 - Sys_fsr_unc: 0.013135215567321307 - Sys_clos_corr: 0.008027076180029687 - Sys_clos_unc: 0.008027076180029687 - Sys_align_corr: 0.015689285260967117 - Sys_align_unc: 0.015689285260967117 - Sys_unfold: 0.010320000000000001 +- Stat_corr_1: 4.34786322e-06 + Stat_corr_2: -9.16801417e-06 + Stat_corr_3: 6.83448918e-05 + Stat_corr_4: -1.00505291e-04 + Stat_corr_5: 3.87987549e-04 + Stat_corr_6: -2.93648233e-03 + Stat_corr_7: -1.80026434e-05 + Stat_corr_8: 3.12368466e-03 + Stat_corr_9: -1.36730990e-02 + Stat_corr_10: -1.39461714e-02 + Stat_corr_11: -6.77718730e-05 + Stat_corr_12: -2.36497126e-06 + Stat_corr_13: -2.55975147e-10 + Stat_corr_14: 4.25676994e-15 + Sys_corr_eff_1: -3.96946742e-02 + Sys_corr_eff_2: 1.56870317e-03 + Sys_corr_eff_3: -9.25079026e-05 + Sys_corr_eff_4: 4.01054609e-04 + Sys_corr_eff_5: 7.59805025e-05 + Sys_corr_eff_6: -8.22687688e-06 + Sys_corr_eff_7: 1.80349538e-04 + Sys_corr_eff_8: -4.94780111e-04 + Sys_corr_eff_9: -6.12581487e-05 + Sys_corr_eff_10: 2.06067467e-04 + Sys_corr_eff_11: -6.04771505e-05 + Sys_corr_eff_12: 3.44338346e-05 + Sys_corr_eff_13: 1.39693456e-05 + Sys_corr_eff_14: 1.37154886e-08 + Sys_back_corr: 4.01353809e-03 + Sys_back_unc: 4.01353809e-03 + Sys_fsr_corr: 1.31352156e-02 + Sys_fsr_unc: 1.31352156e-02 + Sys_clos_corr: 8.02707618e-03 + Sys_clos_unc: 8.02707618e-03 + Sys_align_corr: 1.56892853e-02 + Sys_align_unc: 1.56892853e-02 + Sys_unfold: 1.03200000e-02 Luminosity: 0.1 -- Stat_corr_1: 2.1314869719012436e-06 - Stat_corr_2: -9.627599347279846e-07 - Stat_corr_3: 6.9153186733033115e-06 - Stat_corr_4: -8.272760685588917e-06 - Stat_corr_5: 3.305711072900135e-05 - Stat_corr_6: -0.000285436926894738 - Stat_corr_7: -1.3261734751151776e-06 - Stat_corr_8: 0.00046281092934772884 - Stat_corr_9: -0.015653110267106574 - Stat_corr_10: 0.012426786529223896 - Stat_corr_11: 0.0005077980345141598 - Stat_corr_12: 1.9293030560098692e-05 - Stat_corr_13: 2.844146437936057e-08 - Stat_corr_14: 1.9769425810011365e-12 - Sys_corr_eff_1: -0.030981861383277437 - Sys_corr_eff_2: 0.001652140153884083 - Sys_corr_eff_3: -0.00015843927505520378 - Sys_corr_eff_4: 0.0002818742338370798 - Sys_corr_eff_5: 0.00018197453187991885 - Sys_corr_eff_6: 0.0002957130110749252 - Sys_corr_eff_7: 3.7496253465089664e-05 - Sys_corr_eff_8: 3.348025381602195e-05 - Sys_corr_eff_9: 0.000137381391721544 - Sys_corr_eff_10: -0.00016946313195138045 - Sys_corr_eff_11: -0.0002053594604515409 - Sys_corr_eff_12: -8.998468525223063e-06 - Sys_corr_eff_13: -1.3052135011684344e-05 - Sys_corr_eff_14: -3.9881289942945e-08 - Sys_back_corr: 0.003419568393818144 - Sys_back_unc: 0.003419568393818144 - Sys_fsr_corr: 0.014818129706545292 - Sys_fsr_unc: 0.014818129706545292 - Sys_clos_corr: 0.012253453411181683 - Sys_clos_unc: 0.012253453411181683 - Sys_align_corr: 0.010258705181454433 - Sys_align_unc: 0.010258705181454433 +- Stat_corr_1: 2.13148697e-06 + Stat_corr_2: -9.62759935e-07 + Stat_corr_3: 6.91531867e-06 + Stat_corr_4: -8.27276069e-06 + Stat_corr_5: 3.30571107e-05 + Stat_corr_6: -2.85436927e-04 + Stat_corr_7: -1.32617348e-06 + Stat_corr_8: 4.62810929e-04 + Stat_corr_9: -1.56531103e-02 + Stat_corr_10: 1.24267865e-02 + Stat_corr_11: 5.07798035e-04 + Stat_corr_12: 1.92930306e-05 + Stat_corr_13: 2.84414644e-08 + Stat_corr_14: 1.97694258e-12 + Sys_corr_eff_1: -3.09818614e-02 + Sys_corr_eff_2: 1.65214015e-03 + Sys_corr_eff_3: -1.58439275e-04 + Sys_corr_eff_4: 2.81874234e-04 + Sys_corr_eff_5: 1.81974532e-04 + Sys_corr_eff_6: 2.95713011e-04 + Sys_corr_eff_7: 3.74962535e-05 + Sys_corr_eff_8: 3.34802538e-05 + Sys_corr_eff_9: 1.37381392e-04 + Sys_corr_eff_10: -1.69463132e-04 + Sys_corr_eff_11: -2.05359460e-04 + Sys_corr_eff_12: -8.99846853e-06 + Sys_corr_eff_13: -1.30521350e-05 + Sys_corr_eff_14: -3.98812899e-08 + Sys_back_corr: 3.41956839e-03 + Sys_back_unc: 3.41956839e-03 + Sys_fsr_corr: 1.48181297e-02 + Sys_fsr_unc: 1.48181297e-02 + Sys_clos_corr: 1.22534534e-02 + Sys_clos_unc: 1.22534534e-02 + Sys_align_corr: 1.02587052e-02 + Sys_align_unc: 1.02587052e-02 Sys_unfold: 0.003627 Luminosity: 0.08 -- Stat_corr_1: 5.414920353606797e-07 - Stat_corr_2: -8.945318774111936e-08 - Stat_corr_3: 5.592371853468869e-07 - Stat_corr_4: -2.0081258809828295e-07 - Stat_corr_5: 1.0931346761837127e-06 - Stat_corr_6: -7.189443991668774e-06 - Stat_corr_7: 1.3265088244175443e-07 - Stat_corr_8: 1.2811321346057592e-05 - Stat_corr_9: -0.0007047366210342542 - Stat_corr_10: 0.000730506485678399 - Stat_corr_11: -0.009937409896442907 - Stat_corr_12: -0.0004662328892148967 - Stat_corr_13: -5.723297468401877e-07 - Stat_corr_14: -3.869156980163337e-11 - Sys_corr_eff_1: -0.022105172632751382 - Sys_corr_eff_2: 0.0017039867591209256 - Sys_corr_eff_3: -4.0036745977805245e-05 - Sys_corr_eff_4: 0.00022226767734991675 - Sys_corr_eff_5: -4.445188597162309e-06 - Sys_corr_eff_6: 2.1398837960313897e-05 - Sys_corr_eff_7: -0.0002675046501047531 - Sys_corr_eff_8: 0.00014384884675952363 - Sys_corr_eff_9: 0.00021650934875797853 - Sys_corr_eff_10: 0.00010669582972192327 - Sys_corr_eff_11: 9.609318163629128e-05 - Sys_corr_eff_12: -0.00014489499563523497 - Sys_corr_eff_13: -2.2901535546022798e-05 - Sys_corr_eff_14: -5.692380413103813e-08 - Sys_back_corr: 0.0022401142827989827 - Sys_back_unc: 0.0022401142827989827 - Sys_fsr_corr: 0.012626098684866992 - Sys_fsr_unc: 0.012626098684866992 - Sys_clos_corr: 0.009367750637159382 - Sys_clos_unc: 0.009367750637159382 - Sys_align_corr: 0.006516696095415222 - Sys_align_unc: 0.006516696095415222 +- Stat_corr_1: 5.41492035e-07 + Stat_corr_2: -8.94531877e-08 + Stat_corr_3: 5.59237185e-07 + Stat_corr_4: -2.00812588e-07 + Stat_corr_5: 1.09313468e-06 + Stat_corr_6: -7.18944399e-06 + Stat_corr_7: 1.32650882e-07 + Stat_corr_8: 1.28113213e-05 + Stat_corr_9: -7.04736621e-04 + Stat_corr_10: 7.30506486e-04 + Stat_corr_11: -9.93740990e-03 + Stat_corr_12: -4.66232889e-04 + Stat_corr_13: -5.72329747e-07 + Stat_corr_14: -3.86915698e-11 + Sys_corr_eff_1: -2.21051726e-02 + Sys_corr_eff_2: 1.70398676e-03 + Sys_corr_eff_3: -4.00367460e-05 + Sys_corr_eff_4: 2.22267677e-04 + Sys_corr_eff_5: -4.44518860e-06 + Sys_corr_eff_6: 2.13988380e-05 + Sys_corr_eff_7: -2.67504650e-04 + Sys_corr_eff_8: 1.43848847e-04 + Sys_corr_eff_9: 2.16509349e-04 + Sys_corr_eff_10: 1.06695830e-04 + Sys_corr_eff_11: 9.60931816e-05 + Sys_corr_eff_12: -1.44894996e-04 + Sys_corr_eff_13: -2.29015355e-05 + Sys_corr_eff_14: -5.69238041e-08 + Sys_back_corr: 2.24011428e-03 + Sys_back_unc: 2.24011428e-03 + Sys_fsr_corr: 1.26260987e-02 + Sys_fsr_unc: 1.26260987e-02 + Sys_clos_corr: 9.36775064e-03 + Sys_clos_unc: 9.36775064e-03 + Sys_align_corr: 6.51669610e-03 + Sys_align_unc: 6.51669610e-03 Sys_unfold: 0.00432 Luminosity: 0.06 -- Stat_corr_1: 8.713238524819309e-08 - Stat_corr_2: -2.022911022703741e-08 - Stat_corr_3: 1.1242820575981289e-07 - Stat_corr_4: -3.1376207745147956e-07 - Stat_corr_5: 2.648438668637801e-07 - Stat_corr_6: -5.299164090752028e-07 - Stat_corr_7: -1.509326861266659e-08 - Stat_corr_8: 2.021043168768005e-07 - Stat_corr_9: -8.489689913710789e-06 - Stat_corr_10: 9.709379135195864e-06 - Stat_corr_11: -0.000666304745963655 - Stat_corr_12: 0.006968183192165303 - Stat_corr_13: 1.715015848602091e-05 - Stat_corr_14: 1.214286650272374e-09 - Sys_corr_eff_1: -0.013567570244321233 - Sys_corr_eff_2: 0.001497855915620681 - Sys_corr_eff_3: -0.00012293999351091869 - Sys_corr_eff_4: 0.00027178541720825435 - Sys_corr_eff_5: -8.676044646045181e-05 - Sys_corr_eff_6: -4.417634555240872e-05 - Sys_corr_eff_7: -0.0002465318782005693 - Sys_corr_eff_8: 0.0002189414563136914 - Sys_corr_eff_9: 0.00012161808234834849 - Sys_corr_eff_10: -3.477596879228413e-06 - Sys_corr_eff_11: 9.167163911759874e-05 - Sys_corr_eff_12: 0.0001928440930808665 - Sys_corr_eff_13: -5.649582854426917e-06 - Sys_corr_eff_14: -2.2477612803332706e-07 - Sys_back_corr: 0.0010035259438599484 - Sys_back_unc: 0.0010035259438599484 - Sys_fsr_corr: 0.0017561704017549098 - Sys_fsr_unc: 0.0017561704017549098 - Sys_clos_corr: 0.005268511205264728 - Sys_clos_unc: 0.005268511205264728 - Sys_align_corr: 0.0030105778315798444 - Sys_align_unc: 0.0030105778315798444 +- Stat_corr_1: 8.71323852e-08 + Stat_corr_2: -2.02291102e-08 + Stat_corr_3: 1.12428206e-07 + Stat_corr_4: -3.13762077e-07 + Stat_corr_5: 2.64843867e-07 + Stat_corr_6: -5.29916409e-07 + Stat_corr_7: -1.50932686e-08 + Stat_corr_8: 2.02104317e-07 + Stat_corr_9: -8.48968991e-06 + Stat_corr_10: 9.70937914e-06 + Stat_corr_11: -6.66304746e-04 + Stat_corr_12: 6.96818319e-03 + Stat_corr_13: 1.71501585e-05 + Stat_corr_14: 1.21428665e-09 + Sys_corr_eff_1: -1.35675702e-02 + Sys_corr_eff_2: 1.49785592e-03 + Sys_corr_eff_3: -1.22939994e-04 + Sys_corr_eff_4: 2.71785417e-04 + Sys_corr_eff_5: -8.67604465e-05 + Sys_corr_eff_6: -4.41763456e-05 + Sys_corr_eff_7: -2.46531878e-04 + Sys_corr_eff_8: 2.18941456e-04 + Sys_corr_eff_9: 1.21618082e-04 + Sys_corr_eff_10: -3.47759688e-06 + Sys_corr_eff_11: 9.16716391e-05 + Sys_corr_eff_12: 1.92844093e-04 + Sys_corr_eff_13: -5.64958285e-06 + Sys_corr_eff_14: -2.24776128e-07 + Sys_back_corr: 1.00352594e-03 + Sys_back_unc: 1.00352594e-03 + Sys_fsr_corr: 1.75617040e-03 + Sys_fsr_unc: 1.75617040e-03 + Sys_clos_corr: 5.26851121e-03 + Sys_clos_unc: 5.26851121e-03 + Sys_align_corr: 3.01057783e-03 + Sys_align_unc: 3.01057783e-03 Sys_unfold: 0.001774 Luminosity: 0.035 -- Stat_corr_1: 2.1554454052849993e-10 - Stat_corr_2: -9.032953208983102e-10 - Stat_corr_3: 6.850654023218481e-09 - Stat_corr_4: -9.477325430043281e-09 - Stat_corr_5: 2.0642964214213034e-08 - Stat_corr_6: -6.138696799886423e-08 - Stat_corr_7: 6.53220207378257e-12 - Stat_corr_8: -3.563278814845791e-08 - Stat_corr_9: -9.213530722022405e-08 - Stat_corr_10: 5.286346507565815e-08 - Stat_corr_11: -2.8639349179485784e-06 - Stat_corr_12: 5.991336518539956e-05 - Stat_corr_13: -0.001999100334134586 - Stat_corr_14: -1.5403463262605055e-07 - Sys_corr_eff_1: -0.005034981050159996 - Sys_corr_eff_2: 0.0008925685507157025 - Sys_corr_eff_3: -9.647716617375804e-05 - Sys_corr_eff_4: 0.00012474342665877734 - Sys_corr_eff_5: -2.797499491017326e-05 - Sys_corr_eff_6: 2.310896948580479e-05 - Sys_corr_eff_7: -0.00021035741407018284 - Sys_corr_eff_8: 1.8415563952001352e-05 - Sys_corr_eff_9: 5.186302752507903e-05 - Sys_corr_eff_10: -9.393851507371589e-05 - Sys_corr_eff_11: 4.584309019432953e-05 - Sys_corr_eff_12: -4.593146956638414e-05 - Sys_corr_eff_13: 6.905394992929354e-05 - Sys_corr_eff_14: -4.961856818210195e-07 - Sys_back_corr: 0.0003336129793638132 - Sys_back_unc: 0.0003336129793638132 - Sys_fsr_corr: 0.0006195669616756531 - Sys_fsr_unc: 0.0006195669616756531 - Sys_clos_corr: 0.003431447787742078 - Sys_clos_unc: 0.003431447787742078 - Sys_align_corr: 0.0006672259587276264 - Sys_align_unc: 0.0006672259587276264 - Sys_unfold: 0.0002022 +- Stat_corr_1: 2.15544541e-10 + Stat_corr_2: -9.03295321e-10 + Stat_corr_3: 6.85065402e-09 + Stat_corr_4: -9.47732543e-09 + Stat_corr_5: 2.06429642e-08 + Stat_corr_6: -6.13869680e-08 + Stat_corr_7: 6.53220207e-12 + Stat_corr_8: -3.56327881e-08 + Stat_corr_9: -9.21353072e-08 + Stat_corr_10: 5.28634651e-08 + Stat_corr_11: -2.86393492e-06 + Stat_corr_12: 5.99133652e-05 + Stat_corr_13: -1.99910033e-03 + Stat_corr_14: -1.54034633e-07 + Sys_corr_eff_1: -5.03498105e-03 + Sys_corr_eff_2: 8.92568551e-04 + Sys_corr_eff_3: -9.64771662e-05 + Sys_corr_eff_4: 1.24743427e-04 + Sys_corr_eff_5: -2.79749949e-05 + Sys_corr_eff_6: 2.31089695e-05 + Sys_corr_eff_7: -2.10357414e-04 + Sys_corr_eff_8: 1.84155640e-05 + Sys_corr_eff_9: 5.18630275e-05 + Sys_corr_eff_10: -9.39385151e-05 + Sys_corr_eff_11: 4.58430902e-05 + Sys_corr_eff_12: -4.59314696e-05 + Sys_corr_eff_13: 6.90539499e-05 + Sys_corr_eff_14: -4.96185682e-07 + Sys_back_corr: 3.33612979e-04 + Sys_back_unc: 3.33612979e-04 + Sys_fsr_corr: 6.19566962e-04 + Sys_fsr_unc: 6.19566962e-04 + Sys_clos_corr: 3.43144779e-03 + Sys_clos_unc: 3.43144779e-03 + Sys_align_corr: 6.67225959e-04 + Sys_align_unc: 6.67225959e-04 + Sys_unfold: 2.02200000e-04 Luminosity: 0.013 -- Stat_corr_1: 1.9246948768867903e-16 - Stat_corr_2: -1.0650368093204293e-15 - Stat_corr_3: 1.0942260980225726e-14 - Stat_corr_4: -1.7072279102424955e-14 - Stat_corr_5: 5.0525365734944624e-14 - Stat_corr_6: -1.8798145636021036e-13 - Stat_corr_7: 2.399198033435057e-17 - Stat_corr_8: -1.4641517149154278e-13 - Stat_corr_9: -6.41159921110025e-13 - Stat_corr_10: 4.566000359843675e-13 - Stat_corr_11: -8.779288102814776e-11 - Stat_corr_12: 3.746530914452776e-09 - Stat_corr_13: -1.5398033015644419e-06 - Stat_corr_14: 0.00019999407239152937 - Sys_corr_eff_1: -0.00026351326083078513 - Sys_corr_eff_2: 8.194753299180415e-05 - Sys_corr_eff_3: -2.369098911118662e-05 - Sys_corr_eff_4: -5.622009418469893e-06 - Sys_corr_eff_5: -9.812138183145904e-06 - Sys_corr_eff_6: 3.0867865248036336e-06 - Sys_corr_eff_7: -1.2786735141576714e-05 - Sys_corr_eff_8: 4.53349289746852e-06 - Sys_corr_eff_9: 4.821431518785774e-06 - Sys_corr_eff_10: -3.966330397040439e-06 - Sys_corr_eff_11: 3.3224774940697123e-06 - Sys_corr_eff_12: 8.570095865550736e-07 - Sys_corr_eff_13: 2.306203030791135e-06 - Sys_corr_eff_14: 1.3186539138493329e-05 - Sys_back_corr: 2.8079210280917804e-05 - Sys_back_unc: 2.8079210280917804e-05 - Sys_fsr_corr: 9.444825276308714e-05 - Sys_fsr_unc: 9.444825276308714e-05 - Sys_clos_corr: 0.00013784339592450557 - Sys_clos_unc: 0.00013784339592450557 - Sys_align_corr: 6.892169796225279e-05 - Sys_align_unc: 6.892169796225279e-05 - Sys_unfold: 2.166e-05 +- Stat_corr_1: 1.92469488e-16 + Stat_corr_2: -1.06503681e-15 + Stat_corr_3: 1.09422610e-14 + Stat_corr_4: -1.70722791e-14 + Stat_corr_5: 5.05253657e-14 + Stat_corr_6: -1.87981456e-13 + Stat_corr_7: 2.39919803e-17 + Stat_corr_8: -1.46415171e-13 + Stat_corr_9: -6.41159921e-13 + Stat_corr_10: 4.56600036e-13 + Stat_corr_11: -8.77928810e-11 + Stat_corr_12: 3.74653091e-09 + Stat_corr_13: -1.53980330e-06 + Stat_corr_14: 1.99994072e-04 + Sys_corr_eff_1: -2.63513261e-04 + Sys_corr_eff_2: 8.19475330e-05 + Sys_corr_eff_3: -2.36909891e-05 + Sys_corr_eff_4: -5.62200942e-06 + Sys_corr_eff_5: -9.81213818e-06 + Sys_corr_eff_6: 3.08678652e-06 + Sys_corr_eff_7: -1.27867351e-05 + Sys_corr_eff_8: 4.53349290e-06 + Sys_corr_eff_9: 4.82143152e-06 + Sys_corr_eff_10: -3.96633040e-06 + Sys_corr_eff_11: 3.32247749e-06 + Sys_corr_eff_12: 8.57009587e-07 + Sys_corr_eff_13: 2.30620303e-06 + Sys_corr_eff_14: 1.31865391e-05 + Sys_back_corr: 2.80792103e-05 + Sys_back_unc: 2.80792103e-05 + Sys_fsr_corr: 9.44482528e-05 + Sys_fsr_unc: 9.44482528e-05 + Sys_clos_corr: 1.37843396e-04 + Sys_clos_unc: 1.37843396e-04 + Sys_align_corr: 6.89216980e-05 + Sys_align_unc: 6.89216980e-05 + Sys_unfold: 2.16600000e-05 Luminosity: 0.0007 diff --git a/nnpdf_data/nnpdf_data/commondata/LHCB_Z0_13TEV/filter.py b/nnpdf_data/nnpdf_data/commondata/LHCB_Z0_13TEV/filter.py index d7eba548ab..1f2f9a3986 100644 --- a/nnpdf_data/nnpdf_data/commondata/LHCB_Z0_13TEV/filter.py +++ b/nnpdf_data/nnpdf_data/commondata/LHCB_Z0_13TEV/filter.py @@ -4,7 +4,9 @@ import pandas as pd import yaml -from nnpdf_data.filter_utils.utils import covmat_to_artunc +from nnpdf_data.filter_utils.utils import covmat_to_artunc, prettify_float + +yaml.add_representer(float, prettify_float) MZ_VALUE = 91.1876 # GeV SQRT_S = 13_000.0 # GeV diff --git a/nnpdf_data/nnpdf_data/commondata/LHCB_Z0_13TEV/kinematics_dielectron.yaml b/nnpdf_data/nnpdf_data/commondata/LHCB_Z0_13TEV/kinematics_dielectron.yaml index decb74dc35..11968dac3e 100644 --- a/nnpdf_data/nnpdf_data/commondata/LHCB_Z0_13TEV/kinematics_dielectron.yaml +++ b/nnpdf_data/nnpdf_data/commondata/LHCB_Z0_13TEV/kinematics_dielectron.yaml @@ -5,7 +5,7 @@ bins: max: 2.125 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -17,7 +17,7 @@ bins: max: 2.25 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -29,7 +29,7 @@ bins: max: 2.375 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -41,7 +41,7 @@ bins: max: 2.5 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -53,7 +53,7 @@ bins: max: 2.625 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -65,7 +65,7 @@ bins: max: 2.75 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -77,7 +77,7 @@ bins: max: 2.875 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -89,7 +89,7 @@ bins: max: 3.0 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -101,7 +101,7 @@ bins: max: 3.125 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -113,7 +113,7 @@ bins: max: 3.25 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -125,7 +125,7 @@ bins: max: 3.375 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -137,7 +137,7 @@ bins: max: 3.5 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -149,7 +149,7 @@ bins: max: 3.625 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -161,7 +161,7 @@ bins: max: 3.75 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -173,7 +173,7 @@ bins: max: 3.875 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -185,7 +185,7 @@ bins: max: 4.0 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -197,7 +197,7 @@ bins: max: 4.25 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null diff --git a/nnpdf_data/nnpdf_data/commondata/LHCB_Z0_13TEV/kinematics_dimuon.yaml b/nnpdf_data/nnpdf_data/commondata/LHCB_Z0_13TEV/kinematics_dimuon.yaml index 7e018af3fd..5de677e107 100644 --- a/nnpdf_data/nnpdf_data/commondata/LHCB_Z0_13TEV/kinematics_dimuon.yaml +++ b/nnpdf_data/nnpdf_data/commondata/LHCB_Z0_13TEV/kinematics_dimuon.yaml @@ -5,7 +5,7 @@ bins: max: 2.125 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -17,7 +17,7 @@ bins: max: 2.25 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -29,7 +29,7 @@ bins: max: 2.375 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -41,7 +41,7 @@ bins: max: 2.5 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -53,7 +53,7 @@ bins: max: 2.625 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -65,7 +65,7 @@ bins: max: 2.75 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -77,7 +77,7 @@ bins: max: 2.875 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -89,7 +89,7 @@ bins: max: 3.0 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -101,7 +101,7 @@ bins: max: 3.125 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -113,7 +113,7 @@ bins: max: 3.25 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -125,7 +125,7 @@ bins: max: 3.375 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -137,7 +137,7 @@ bins: max: 3.5 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -149,7 +149,7 @@ bins: max: 3.625 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -161,7 +161,7 @@ bins: max: 3.75 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -173,7 +173,7 @@ bins: max: 3.875 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -185,7 +185,7 @@ bins: max: 4.0 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -197,7 +197,7 @@ bins: max: 4.25 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -209,7 +209,7 @@ bins: max: 4.5 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null diff --git a/nnpdf_data/nnpdf_data/commondata/LHCB_Z0_13TEV/uncertainties_dielectron.yaml b/nnpdf_data/nnpdf_data/commondata/LHCB_Z0_13TEV/uncertainties_dielectron.yaml index 226d2d949f..81872241c3 100644 --- a/nnpdf_data/nnpdf_data/commondata/LHCB_Z0_13TEV/uncertainties_dielectron.yaml +++ b/nnpdf_data/nnpdf_data/commondata/LHCB_Z0_13TEV/uncertainties_dielectron.yaml @@ -76,326 +76,326 @@ definitions: treatment: MULT type: LHCBLUMI8TEV bins: -- sys_corr_1: -123.1413677022211 - sys_corr_2: -688.8344088726482 - sys_corr_3: 5.111607941355207 - sys_corr_4: -0.9917238919943479 - sys_corr_5: 0.6828564069433655 - sys_corr_6: 4.327919577318828 - sys_corr_7: -1.7079461940568148 - sys_corr_8: 8.699264406418852 - sys_corr_9: -4.090056687025756 - sys_corr_10: 3.462852718563453 - sys_corr_11: -4.113238870146705 - sys_corr_12: 2.2500897705025498 - sys_corr_13: 3.8446572956531444 - sys_corr_14: -3.560931491609052 - sys_corr_15: 11.241060999460657 - sys_corr_16: -3.731388931772334 - sys_corr_17: 0.09648896732108776 +- sys_corr_1: -1.23141368e+02 + sys_corr_2: -6.88834409e+02 + sys_corr_3: 5.11160794e+00 + sys_corr_4: -9.91723892e-01 + sys_corr_5: 6.82856407e-01 + sys_corr_6: 4.32791958e+00 + sys_corr_7: -1.70794619e+00 + sys_corr_8: 8.69926441e+00 + sys_corr_9: -4.09005669e+00 + sys_corr_10: 3.46285272e+00 + sys_corr_11: -4.11323887e+00 + sys_corr_12: 2.25008977e+00 + sys_corr_13: 3.84465730e+00 + sys_corr_14: -3.56093149e+00 + sys_corr_15: 1.12410610e+01 + sys_corr_16: -3.73138893e+00 + sys_corr_17: 9.64889673e-02 stat: 1300.0 sys_luminosity: 500.0 -- sys_corr_1: -586.8119629487796 - sys_corr_2: 3.1649773132975656 - sys_corr_3: 34.11310532421358 - sys_corr_4: -2.5602985294441667 - sys_corr_5: -16.70042202393104 - sys_corr_6: 22.651412282823895 - sys_corr_7: 11.788653705289713 - sys_corr_8: 41.11840582232482 - sys_corr_9: -1478.9110371182273 - sys_corr_10: 101.0356836564156 - sys_corr_11: -17.425100510187132 - sys_corr_12: 59.20352896251538 - sys_corr_13: 73.17069348425406 - sys_corr_14: -32.44254570439827 - sys_corr_15: 53.70831844758137 - sys_corr_16: -30.00604076539202 - sys_corr_17: 21.531037749880042 +- sys_corr_1: -5.86811963e+02 + sys_corr_2: 3.16497731e+00 + sys_corr_3: 3.41131053e+01 + sys_corr_4: -2.56029853e+00 + sys_corr_5: -1.67004220e+01 + sys_corr_6: 2.26514123e+01 + sys_corr_7: 1.17886537e+01 + sys_corr_8: 4.11184058e+01 + sys_corr_9: -1.47891104e+03 + sys_corr_10: 1.01035684e+02 + sys_corr_11: -1.74251005e+01 + sys_corr_12: 5.92035290e+01 + sys_corr_13: 7.31706935e+01 + sys_corr_14: -3.24425457e+01 + sys_corr_15: 5.37083184e+01 + sys_corr_16: -3.00060408e+01 + sys_corr_17: 2.15310377e+01 stat: 2200.0 sys_luminosity: 1600.0 -- sys_corr_1: -1005.0252359592832 - sys_corr_2: 3.4527567896229385 - sys_corr_3: 51.37601860266696 - sys_corr_4: 3.693912870942832 - sys_corr_5: -11.901658348563668 - sys_corr_6: 40.336133981306844 - sys_corr_7: -12.817606670193243 - sys_corr_8: 62.5138841326434 - sys_corr_9: 95.17593515551508 - sys_corr_10: -24.266468398928577 - sys_corr_11: -50.63497013887663 - sys_corr_12: 1256.5958746123226 - sys_corr_13: 1324.58563988538 - sys_corr_14: -149.44611674050495 - sys_corr_15: 144.3173025501442 - sys_corr_16: -30.5070568669571 - sys_corr_17: 39.426480965301295 +- sys_corr_1: -1.00502524e+03 + sys_corr_2: 3.45275679e+00 + sys_corr_3: 5.13760186e+01 + sys_corr_4: 3.69391287e+00 + sys_corr_5: -1.19016583e+01 + sys_corr_6: 4.03361340e+01 + sys_corr_7: -1.28176067e+01 + sys_corr_8: 6.25138841e+01 + sys_corr_9: 9.51759352e+01 + sys_corr_10: -2.42664684e+01 + sys_corr_11: -5.06349701e+01 + sys_corr_12: 1.25659587e+03 + sys_corr_13: 1.32458564e+03 + sys_corr_14: -1.49446117e+02 + sys_corr_15: 1.44317303e+02 + sys_corr_16: -3.05070569e+01 + sys_corr_17: 3.94264810e+01 stat: 2500.0 sys_luminosity: 2600.0 -- sys_corr_1: -1203.4314525055174 - sys_corr_2: 3.968248949992002 - sys_corr_3: 141.72874333583914 - sys_corr_4: 20.83140519753868 - sys_corr_5: -24.957047619600004 - sys_corr_6: 82.9182199220711 - sys_corr_7: -46.811496352623415 - sys_corr_8: 165.90212624763683 - sys_corr_9: 26.035596821371342 - sys_corr_10: -18.66905922051422 - sys_corr_11: -245.26859042257075 - sys_corr_12: -33.89027809310805 - sys_corr_13: -95.0132413494696 - sys_corr_14: 151.12072109857837 - sys_corr_15: 1520.0412360823464 - sys_corr_16: 271.1277346327914 - sys_corr_17: -1666.0644273735145 +- sys_corr_1: -1.20343145e+03 + sys_corr_2: 3.96824895e+00 + sys_corr_3: 1.41728743e+02 + sys_corr_4: 2.08314052e+01 + sys_corr_5: -2.49570476e+01 + sys_corr_6: 8.29182199e+01 + sys_corr_7: -4.68114964e+01 + sys_corr_8: 1.65902126e+02 + sys_corr_9: 2.60355968e+01 + sys_corr_10: -1.86690592e+01 + sys_corr_11: -2.45268590e+02 + sys_corr_12: -3.38902781e+01 + sys_corr_13: -9.50132413e+01 + sys_corr_14: 1.51120721e+02 + sys_corr_15: 1.52004124e+03 + sys_corr_16: 2.71127735e+02 + sys_corr_17: -1.66606443e+03 stat: 2900.0 sys_luminosity: 3400.0 -- sys_corr_1: -1636.4458778810144 - sys_corr_2: 4.472390301240911 - sys_corr_3: 149.5461408516788 - sys_corr_4: 26.747926028244915 - sys_corr_5: 10.931195798358168 - sys_corr_6: 84.3936913256809 - sys_corr_7: 25.070869947323356 - sys_corr_8: 156.07444501160094 - sys_corr_9: 47.822291676269 - sys_corr_10: -31.3461374054956 - sys_corr_11: -193.77228116374653 - sys_corr_12: -46.00471019680165 - sys_corr_13: -164.68273731683632 - sys_corr_14: 177.32046869895086 - sys_corr_15: 1517.2918324060186 - sys_corr_16: 426.9010272825293 - sys_corr_17: 1587.7028037476753 +- sys_corr_1: -1.63644588e+03 + sys_corr_2: 4.47239030e+00 + sys_corr_3: 1.49546141e+02 + sys_corr_4: 2.67479260e+01 + sys_corr_5: 1.09311958e+01 + sys_corr_6: 8.43936913e+01 + sys_corr_7: 2.50708699e+01 + sys_corr_8: 1.56074445e+02 + sys_corr_9: 4.78222917e+01 + sys_corr_10: -3.13461374e+01 + sys_corr_11: -1.93772281e+02 + sys_corr_12: -4.60047102e+01 + sys_corr_13: -1.64682737e+02 + sys_corr_14: 1.77320469e+02 + sys_corr_15: 1.51729183e+03 + sys_corr_16: 4.26901027e+02 + sys_corr_17: 1.58770280e+03 stat: 3000.0 sys_luminosity: 3700.0 -- sys_corr_1: -2223.9619638248246 - sys_corr_2: 4.612540659434663 - sys_corr_3: 246.38511396869023 - sys_corr_4: 71.42938980141373 - sys_corr_5: -178.00311463937746 - sys_corr_6: 303.3149416146093 - sys_corr_7: -39.08349523805766 - sys_corr_8: 2421.0957212925814 - sys_corr_9: 44.882098462895414 - sys_corr_10: -12.241779160897158 - sys_corr_11: 588.8597264405457 - sys_corr_12: -49.1365283660289 - sys_corr_13: -78.37366157407762 - sys_corr_14: 102.4849060701289 - sys_corr_15: -426.04418035354627 - sys_corr_16: 100.40883407480958 - sys_corr_17: -40.88334367410187 +- sys_corr_1: -2.22396196e+03 + sys_corr_2: 4.61254066e+00 + sys_corr_3: 2.46385114e+02 + sys_corr_4: 7.14293898e+01 + sys_corr_5: -1.78003115e+02 + sys_corr_6: 3.03314942e+02 + sys_corr_7: -3.90834952e+01 + sys_corr_8: 2.42109572e+03 + sys_corr_9: 4.48820985e+01 + sys_corr_10: -1.22417792e+01 + sys_corr_11: 5.88859726e+02 + sys_corr_12: -4.91365284e+01 + sys_corr_13: -7.83736616e+01 + sys_corr_14: 1.02484906e+02 + sys_corr_15: -4.26044180e+02 + sys_corr_16: 1.00408834e+02 + sys_corr_17: -4.08833437e+01 stat: 3300.0 sys_luminosity: 4600.0 -- sys_corr_1: -2543.356806063921 - sys_corr_2: 3.7214814058441315 - sys_corr_3: 429.4445968915442 - sys_corr_4: 128.83215149108852 - sys_corr_5: -512.4115582385482 - sys_corr_6: 1672.6746364045919 - sys_corr_7: -1794.9452845724443 - sys_corr_8: -756.1308547865265 - sys_corr_9: 31.20584840955891 - sys_corr_10: -23.06835522347917 - sys_corr_11: 260.643221278892 - sys_corr_12: -34.41267342212853 - sys_corr_13: -86.10610746631694 - sys_corr_14: 60.0288855424334 - sys_corr_15: -288.49522514157604 - sys_corr_16: 34.03822457256738 - sys_corr_17: -17.393525467788095 +- sys_corr_1: -2.54335681e+03 + sys_corr_2: 3.72148141e+00 + sys_corr_3: 4.29444597e+02 + sys_corr_4: 1.28832151e+02 + sys_corr_5: -5.12411558e+02 + sys_corr_6: 1.67267464e+03 + sys_corr_7: -1.79494528e+03 + sys_corr_8: -7.56130855e+02 + sys_corr_9: 3.12058484e+01 + sys_corr_10: -2.30683552e+01 + sys_corr_11: 2.60643221e+02 + sys_corr_12: -3.44126734e+01 + sys_corr_13: -8.61061075e+01 + sys_corr_14: 6.00288855e+01 + sys_corr_15: -2.88495225e+02 + sys_corr_16: 3.40382246e+01 + sys_corr_17: -1.73935255e+01 stat: 3600.0 sys_luminosity: 5200.0 -- sys_corr_1: -2744.2660952963865 - sys_corr_2: 3.393644258229046 - sys_corr_3: 849.5316126330138 - sys_corr_4: 1668.0625000519335 - sys_corr_5: 1805.8947479601643 - sys_corr_6: -784.4738633567241 - sys_corr_7: -0.4949999164715196 - sys_corr_8: -397.0808492137403 - sys_corr_9: 26.892495179662152 - sys_corr_10: -19.944347740572454 - sys_corr_11: 190.61580891487816 - sys_corr_12: -28.175182879557294 - sys_corr_13: -68.675364973923 - sys_corr_14: 80.62256536182537 - sys_corr_15: -287.40277564012104 - sys_corr_16: 67.93052674215386 - sys_corr_17: -62.02145640431197 +- sys_corr_1: -2.74426610e+03 + sys_corr_2: 3.39364426e+00 + sys_corr_3: 8.49531613e+02 + sys_corr_4: 1.66806250e+03 + sys_corr_5: 1.80589475e+03 + sys_corr_6: -7.84473863e+02 + sys_corr_7: -4.94999916e-01 + sys_corr_8: -3.97080849e+02 + sys_corr_9: 2.68924952e+01 + sys_corr_10: -1.99443477e+01 + sys_corr_11: 1.90615809e+02 + sys_corr_12: -2.81751829e+01 + sys_corr_13: -6.86753650e+01 + sys_corr_14: 8.06225654e+01 + sys_corr_15: -2.87402776e+02 + sys_corr_16: 6.79305267e+01 + sys_corr_17: -6.20214564e+01 stat: 3700.0 sys_luminosity: 5500.0 -- sys_corr_1: -3045.818488278737 - sys_corr_2: 3.2768983496933672 - sys_corr_3: -2853.7964128406575 - sys_corr_4: -104.8460559279366 - sys_corr_5: 243.53188384067732 - sys_corr_6: -244.85278490030265 - sys_corr_7: 0.32551469629009794 - sys_corr_8: -214.15337712285512 - sys_corr_9: 25.72568489772223 - sys_corr_10: -18.755194938633252 - sys_corr_11: 112.29853779704811 - sys_corr_12: -26.68356728532114 - sys_corr_13: -66.52395824477391 - sys_corr_14: 45.33217445247213 - sys_corr_15: -138.12276573105405 - sys_corr_16: 27.397620868857263 - sys_corr_17: -45.435489859127735 +- sys_corr_1: -3.04581849e+03 + sys_corr_2: 3.27689835e+00 + sys_corr_3: -2.85379641e+03 + sys_corr_4: -1.04846056e+02 + sys_corr_5: 2.43531884e+02 + sys_corr_6: -2.44852785e+02 + sys_corr_7: 3.25514696e-01 + sys_corr_8: -2.14153377e+02 + sys_corr_9: 2.57256849e+01 + sys_corr_10: -1.87551949e+01 + sys_corr_11: 1.12298538e+02 + sys_corr_12: -2.66835673e+01 + sys_corr_13: -6.65239582e+01 + sys_corr_14: 4.53321745e+01 + sys_corr_15: -1.38122766e+02 + sys_corr_16: 2.73976209e+01 + sys_corr_17: -4.54354899e+01 stat: 4000.0 sys_luminosity: 5900.0 -- sys_corr_1: -2440.880349983303 - sys_corr_2: 2.5015185410566905 - sys_corr_3: 527.017381020904 - sys_corr_4: 414.3335957405886 - sys_corr_5: -2137.0884888885357 - sys_corr_6: -1544.5305914400665 - sys_corr_7: 148.6309003846202 - sys_corr_8: -447.5385705702457 - sys_corr_9: 31.304602108254702 - sys_corr_10: -13.134521986062706 - sys_corr_11: 247.30376558316024 - sys_corr_12: -26.81394448376033 - sys_corr_13: -61.07497384993346 - sys_corr_14: 56.39272592206775 - sys_corr_15: -187.57803023646386 - sys_corr_16: 38.56854548134826 - sys_corr_17: -30.973555086747904 +- sys_corr_1: -2.44088035e+03 + sys_corr_2: 2.50151854e+00 + sys_corr_3: 5.27017381e+02 + sys_corr_4: 4.14333596e+02 + sys_corr_5: -2.13708849e+03 + sys_corr_6: -1.54453059e+03 + sys_corr_7: 1.48630900e+02 + sys_corr_8: -4.47538571e+02 + sys_corr_9: 3.13046021e+01 + sys_corr_10: -1.31345220e+01 + sys_corr_11: 2.47303766e+02 + sys_corr_12: -2.68139445e+01 + sys_corr_13: -6.10749738e+01 + sys_corr_14: 5.63927259e+01 + sys_corr_15: -1.87578030e+02 + sys_corr_16: 3.85685455e+01 + sys_corr_17: -3.09735551e+01 stat: 3900.0 sys_luminosity: 5200.0 -- sys_corr_1: -2347.4165064493873 - sys_corr_2: 3.302993151300315 - sys_corr_3: 806.6073516026664 - sys_corr_4: -2493.8863207482427 - sys_corr_5: 812.6026620969034 - sys_corr_6: -693.7722807304016 - sys_corr_7: -102.85578038579523 - sys_corr_8: -281.6358679576072 - sys_corr_9: 28.126176469419526 - sys_corr_10: -17.49816857222559 - sys_corr_11: 147.6590186978172 - sys_corr_12: -20.185865336430293 - sys_corr_13: -69.0969674609077 - sys_corr_14: 50.950870839126516 - sys_corr_15: -211.8641479471639 - sys_corr_16: 27.358161031663126 - sys_corr_17: -41.06222588170616 +- sys_corr_1: -2.34741651e+03 + sys_corr_2: 3.30299315e+00 + sys_corr_3: 8.06607352e+02 + sys_corr_4: -2.49388632e+03 + sys_corr_5: 8.12602662e+02 + sys_corr_6: -6.93772281e+02 + sys_corr_7: -1.02855780e+02 + sys_corr_8: -2.81635868e+02 + sys_corr_9: 2.81261765e+01 + sys_corr_10: -1.74981686e+01 + sys_corr_11: 1.47659019e+02 + sys_corr_12: -2.01858653e+01 + sys_corr_13: -6.90969675e+01 + sys_corr_14: 5.09508708e+01 + sys_corr_15: -2.11864148e+02 + sys_corr_16: 2.73581610e+01 + sys_corr_17: -4.10622259e+01 stat: 4100.0 sys_luminosity: 5100.0 -- sys_corr_1: -1988.8104772942393 - sys_corr_2: 2.4546328444825316 - sys_corr_3: 348.9585151235798 - sys_corr_4: -38.85404038816691 - sys_corr_5: -232.1161639721344 - sys_corr_6: 1421.8917679550768 - sys_corr_7: 2225.368311679541 - sys_corr_8: -559.5009169196568 - sys_corr_9: 32.73130079735489 - sys_corr_10: -10.82076635139238 - sys_corr_11: 284.03408066561883 - sys_corr_12: -18.09200528783644 - sys_corr_13: -59.98509925600467 - sys_corr_14: 61.949281593713245 - sys_corr_15: -210.30743331939564 - sys_corr_16: 43.232297322552554 - sys_corr_17: -68.26702057682597 +- sys_corr_1: -1.98881048e+03 + sys_corr_2: 2.45463284e+00 + sys_corr_3: 3.48958515e+02 + sys_corr_4: -3.88540404e+01 + sys_corr_5: -2.32116164e+02 + sys_corr_6: 1.42189177e+03 + sys_corr_7: 2.22536831e+03 + sys_corr_8: -5.59500917e+02 + sys_corr_9: 3.27313008e+01 + sys_corr_10: -1.08207664e+01 + sys_corr_11: 2.84034081e+02 + sys_corr_12: -1.80920053e+01 + sys_corr_13: -5.99850993e+01 + sys_corr_14: 6.19492816e+01 + sys_corr_15: -2.10307433e+02 + sys_corr_16: 4.32322973e+01 + sys_corr_17: -6.82670206e+01 stat: 4000.0 sys_luminosity: 4500.0 -- sys_corr_1: -1445.3875081617427 - sys_corr_2: 2.7486044041981006 - sys_corr_3: 150.07813010802124 - sys_corr_4: 36.17929832172358 - sys_corr_5: -139.10386174678325 - sys_corr_6: 128.36189846268232 - sys_corr_7: 68.62524025969299 - sys_corr_8: 297.66200546715214 - sys_corr_9: 25.27743662595818 - sys_corr_10: -9.486868303807183 - sys_corr_11: -2422.5760753433624 - sys_corr_12: -34.96728336616289 - sys_corr_13: -54.88719117753325 - sys_corr_14: 97.08810707187888 - sys_corr_15: -525.4197829004531 - sys_corr_16: 92.3824135690083 - sys_corr_17: 3.2544025564215695 +- sys_corr_1: -1.44538751e+03 + sys_corr_2: 2.74860440e+00 + sys_corr_3: 1.50078130e+02 + sys_corr_4: 3.61792983e+01 + sys_corr_5: -1.39103862e+02 + sys_corr_6: 1.28361898e+02 + sys_corr_7: 6.86252403e+01 + sys_corr_8: 2.97662005e+02 + sys_corr_9: 2.52774366e+01 + sys_corr_10: -9.48686830e+00 + sys_corr_11: -2.42257608e+03 + sys_corr_12: -3.49672834e+01 + sys_corr_13: -5.48871912e+01 + sys_corr_14: 9.70881071e+01 + sys_corr_15: -5.25419783e+02 + sys_corr_16: 9.23824136e+01 + sys_corr_17: 3.25440256e+00 stat: 3800.0 sys_luminosity: 3600.0 -- sys_corr_1: -810.8945687052399 - sys_corr_2: 2.6351552048315114 - sys_corr_3: 71.83061173087918 - sys_corr_4: 27.212683851246915 - sys_corr_5: 0.6606445897340998 - sys_corr_6: 29.24517412521008 - sys_corr_7: 18.36693717076477 - sys_corr_8: 85.39297705214092 - sys_corr_9: 31.852682398006017 - sys_corr_10: -32.32151789103721 - sys_corr_11: -87.30121323357682 - sys_corr_12: -76.22514120861656 - sys_corr_13: -177.09533184105985 - sys_corr_14: -2022.188511074237 - sys_corr_15: 170.23504064484464 - sys_corr_16: -54.1920072937645 - sys_corr_17: 6.3987817702113565 +- sys_corr_1: -8.10894569e+02 + sys_corr_2: 2.63515520e+00 + sys_corr_3: 7.18306117e+01 + sys_corr_4: 2.72126839e+01 + sys_corr_5: 6.60644590e-01 + sys_corr_6: 2.92451741e+01 + sys_corr_7: 1.83669372e+01 + sys_corr_8: 8.53929771e+01 + sys_corr_9: 3.18526824e+01 + sys_corr_10: -3.23215179e+01 + sys_corr_11: -8.73012132e+01 + sys_corr_12: -7.62251412e+01 + sys_corr_13: -1.77095332e+02 + sys_corr_14: -2.02218851e+03 + sys_corr_15: 1.70235041e+02 + sys_corr_16: -5.41920073e+01 + sys_corr_17: 6.39878177e+00 stat: 3700.0 sys_luminosity: 2500.0 -- sys_corr_1: -859.6114632749402 - sys_corr_2: 3.0407378404426755 - sys_corr_3: 84.77213564256351 - sys_corr_4: 39.914620034862615 - sys_corr_5: 4.416700926309944 - sys_corr_6: 35.07643017762631 - sys_corr_7: 17.07870259213706 - sys_corr_8: 121.94680733622188 - sys_corr_9: 37.23322569450627 - sys_corr_10: -6.011200958492463 - sys_corr_11: -117.1027353711504 - sys_corr_12: -18.013891372861977 - sys_corr_13: -89.60534902880917 - sys_corr_14: 122.27885877211132 - sys_corr_15: 409.6414138267974 - sys_corr_16: -2186.452742205665 - sys_corr_17: 95.09945793069355 +- sys_corr_1: -8.59611463e+02 + sys_corr_2: 3.04073784e+00 + sys_corr_3: 8.47721356e+01 + sys_corr_4: 3.99146200e+01 + sys_corr_5: 4.41670093e+00 + sys_corr_6: 3.50764302e+01 + sys_corr_7: 1.70787026e+01 + sys_corr_8: 1.21946807e+02 + sys_corr_9: 3.72332257e+01 + sys_corr_10: -6.01120096e+00 + sys_corr_11: -1.17102735e+02 + sys_corr_12: -1.80138914e+01 + sys_corr_13: -8.96053490e+01 + sys_corr_14: 1.22278859e+02 + sys_corr_15: 4.09641414e+02 + sys_corr_16: -2.18645274e+03 + sys_corr_17: 9.50994579e+01 stat: 3700.0 sys_luminosity: 2300.0 -- sys_corr_1: -411.37977346235834 - sys_corr_2: 1.1835125096824584 - sys_corr_3: 23.32774771119084 - sys_corr_4: -10.212660184504148 - sys_corr_5: 2.465038779342634 - sys_corr_6: 17.819003658384716 - sys_corr_7: 1.7142382139003414 - sys_corr_8: 0.6109393486364607 - sys_corr_9: 14.468904263589094 - sys_corr_10: 1.9002688832385681 - sys_corr_11: -11.205462268283995 - sys_corr_12: -1343.3615056640872 - sys_corr_13: 1273.8811302826089 - sys_corr_14: -51.41075404020019 - sys_corr_15: 87.37184505552138 - sys_corr_16: -29.54424334788564 - sys_corr_17: 30.13859708328586 +- sys_corr_1: -4.11379773e+02 + sys_corr_2: 1.18351251e+00 + sys_corr_3: 2.33277477e+01 + sys_corr_4: -1.02126602e+01 + sys_corr_5: 2.46503878e+00 + sys_corr_6: 1.78190037e+01 + sys_corr_7: 1.71423821e+00 + sys_corr_8: 6.10939349e-01 + sys_corr_9: 1.44689043e+01 + sys_corr_10: 1.90026888e+00 + sys_corr_11: -1.12054623e+01 + sys_corr_12: -1.34336151e+03 + sys_corr_13: 1.27388113e+03 + sys_corr_14: -5.14107540e+01 + sys_corr_15: 8.73718451e+01 + sys_corr_16: -2.95442433e+01 + sys_corr_17: 3.01385971e+01 stat: 4000.0 sys_luminosity: 1400.0 -- sys_corr_1: -237.6981196100084 - sys_corr_2: 1.8245026924638557 - sys_corr_3: 6.641175090945971 - sys_corr_4: -0.2580001604509204 - sys_corr_5: 6.475114747761547 - sys_corr_6: 6.481172256205805 - sys_corr_7: -11.339100023112435 - sys_corr_8: -3.144524779073437 - sys_corr_9: 100.58005239791778 - sys_corr_10: 1578.2746254708893 - sys_corr_11: -5.4231656556076295 - sys_corr_12: 11.860424849627114 - sys_corr_13: 0.23656553033638555 - sys_corr_14: -30.516256071274192 - sys_corr_15: 30.507897640406384 - sys_corr_16: 7.680322873168182 - sys_corr_17: 8.453972330998774 +- sys_corr_1: -2.37698120e+02 + sys_corr_2: 1.82450269e+00 + sys_corr_3: 6.64117509e+00 + sys_corr_4: -2.58000160e-01 + sys_corr_5: 6.47511475e+00 + sys_corr_6: 6.48117226e+00 + sys_corr_7: -1.13391000e+01 + sys_corr_8: -3.14452478e+00 + sys_corr_9: 1.00580052e+02 + sys_corr_10: 1.57827463e+03 + sys_corr_11: -5.42316566e+00 + sys_corr_12: 1.18604248e+01 + sys_corr_13: 2.36565530e-01 + sys_corr_14: -3.05162561e+01 + sys_corr_15: 3.05078976e+01 + sys_corr_16: 7.68032287e+00 + sys_corr_17: 8.45397233e+00 stat: 3200.0 sys_luminosity: 700.0 diff --git a/nnpdf_data/nnpdf_data/commondata/LHCB_Z0_13TEV/uncertainties_dimuon.yaml b/nnpdf_data/nnpdf_data/commondata/LHCB_Z0_13TEV/uncertainties_dimuon.yaml index 181f179280..6aed37994b 100644 --- a/nnpdf_data/nnpdf_data/commondata/LHCB_Z0_13TEV/uncertainties_dimuon.yaml +++ b/nnpdf_data/nnpdf_data/commondata/LHCB_Z0_13TEV/uncertainties_dimuon.yaml @@ -80,363 +80,363 @@ definitions: treatment: MULT type: LHCBLUMI8TEV bins: -- sys_corr_1: -198.1316756217639 - sys_corr_2: 1.7764096377023284 - sys_corr_3: -443.39548127607674 - sys_corr_4: 15.349906454202694 - sys_corr_5: -43.06104519756403 - sys_corr_6: -77.71919694381799 - sys_corr_7: 6.596413166603836 - sys_corr_8: 0.7953188239955153 - sys_corr_9: -33.09990346386511 - sys_corr_10: -25.510294096056157 - sys_corr_11: 35.14271434066941 - sys_corr_12: -32.36579531370638 - sys_corr_13: -6.552247511484482 - sys_corr_14: 29.576175228164935 - sys_corr_15: -27.386478153255812 - sys_corr_16: 9.628689002584903 - sys_corr_17: -12.528247608395764 - sys_corr_18: 4.531550303410254 +- sys_corr_1: -1.98131676e+02 + sys_corr_2: 1.77640964e+00 + sys_corr_3: -4.43395481e+02 + sys_corr_4: 1.53499065e+01 + sys_corr_5: -4.30610452e+01 + sys_corr_6: -7.77191969e+01 + sys_corr_7: 6.59641317e+00 + sys_corr_8: 7.95318824e-01 + sys_corr_9: -3.30999035e+01 + sys_corr_10: -2.55102941e+01 + sys_corr_11: 3.51427143e+01 + sys_corr_12: -3.23657953e+01 + sys_corr_13: -6.55224751e+00 + sys_corr_14: 2.95761752e+01 + sys_corr_15: -2.73864782e+01 + sys_corr_16: 9.62868900e+00 + sys_corr_17: -1.25282476e+01 + sys_corr_18: 4.53155030e+00 stat: 700.0 sys_luminosity: 600.0 -- sys_corr_1: -701.3388976363788 - sys_corr_2: -0.21920792350833887 - sys_corr_3: 42.28628624368924 - sys_corr_4: -0.7257118083186013 - sys_corr_5: -156.97003998493744 - sys_corr_6: -903.2766999846311 - sys_corr_7: 46.29216096532744 - sys_corr_8: -0.8798902746319858 - sys_corr_9: -155.12216500222266 - sys_corr_10: -120.50547885344324 - sys_corr_11: 145.57167572324204 - sys_corr_12: -147.66091449615075 - sys_corr_13: -41.38868974168419 - sys_corr_14: 96.33685439530743 - sys_corr_15: -95.9408223723134 - sys_corr_16: 27.80787653467673 - sys_corr_17: -26.04146177252069 - sys_corr_18: 20.339915330048928 +- sys_corr_1: -7.01338898e+02 + sys_corr_2: -2.19207924e-01 + sys_corr_3: 4.22862862e+01 + sys_corr_4: -7.25711808e-01 + sys_corr_5: -1.56970040e+02 + sys_corr_6: -9.03276700e+02 + sys_corr_7: 4.62921610e+01 + sys_corr_8: -8.79890275e-01 + sys_corr_9: -1.55122165e+02 + sys_corr_10: -1.20505479e+02 + sys_corr_11: 1.45571676e+02 + sys_corr_12: -1.47660914e+02 + sys_corr_13: -4.13886897e+01 + sys_corr_14: 9.63368544e+01 + sys_corr_15: -9.59408224e+01 + sys_corr_16: 2.78078765e+01 + sys_corr_17: -2.60414618e+01 + sys_corr_18: 2.03399153e+01 stat: 1200.0 sys_luminosity: 1600.0 -- sys_corr_1: -1225.6907755270117 - sys_corr_2: -0.024236209612398803 - sys_corr_3: 12.957165519087859 - sys_corr_4: 0.21464851504790258 - sys_corr_5: -335.3762942154493 - sys_corr_6: 202.26146452098084 - sys_corr_7: -14.569504424978508 - sys_corr_8: -38.0415105815732 - sys_corr_9: -877.8536817599955 - sys_corr_10: -748.3678967598411 - sys_corr_11: 198.23912927052066 - sys_corr_12: -327.5594054257728 - sys_corr_13: -135.50589435619867 - sys_corr_14: 208.97764692699764 - sys_corr_15: -188.7503930577691 - sys_corr_16: 39.816299076077776 - sys_corr_17: -77.10548989466663 - sys_corr_18: -1.2169095769556142 +- sys_corr_1: -1.22569078e+03 + sys_corr_2: -2.42362096e-02 + sys_corr_3: 1.29571655e+01 + sys_corr_4: 2.14648515e-01 + sys_corr_5: -3.35376294e+02 + sys_corr_6: 2.02261465e+02 + sys_corr_7: -1.45695044e+01 + sys_corr_8: -3.80415106e+01 + sys_corr_9: -8.77853682e+02 + sys_corr_10: -7.48367897e+02 + sys_corr_11: 1.98239129e+02 + sys_corr_12: -3.27559405e+02 + sys_corr_13: -1.35505894e+02 + sys_corr_14: 2.08977647e+02 + sys_corr_15: -1.88750393e+02 + sys_corr_16: 3.98162991e+01 + sys_corr_17: -7.71054899e+01 + sys_corr_18: -1.21690958e+00 stat: 1500.0 sys_luminosity: 2500.0 -- sys_corr_1: -1743.8506348463961 - sys_corr_2: -0.3574391852067303 - sys_corr_3: 7.086516489550815 - sys_corr_4: -0.26175005455710715 - sys_corr_5: -249.1914415820547 - sys_corr_6: 89.69901872123148 - sys_corr_7: -3.854863859859779 - sys_corr_8: 31.48605587214432 - sys_corr_9: 336.6882885766404 - sys_corr_10: 316.66414883507076 - sys_corr_11: 368.76575742853026 - sys_corr_12: -1215.178080781601 - sys_corr_13: -291.6892330796121 - sys_corr_14: 406.19704596204605 - sys_corr_15: -284.24337687229684 - sys_corr_16: 111.01068420505946 - sys_corr_17: -9.56720054989609 - sys_corr_18: 90.64789014798508 +- sys_corr_1: -1.74385063e+03 + sys_corr_2: -3.57439185e-01 + sys_corr_3: 7.08651649e+00 + sys_corr_4: -2.61750055e-01 + sys_corr_5: -2.49191442e+02 + sys_corr_6: 8.96990187e+01 + sys_corr_7: -3.85486386e+00 + sys_corr_8: 3.14860559e+01 + sys_corr_9: 3.36688289e+02 + sys_corr_10: 3.16664149e+02 + sys_corr_11: 3.68765757e+02 + sys_corr_12: -1.21517808e+03 + sys_corr_13: -2.91689233e+02 + sys_corr_14: 4.06197046e+02 + sys_corr_15: -2.84243377e+02 + sys_corr_16: 1.11010684e+02 + sys_corr_17: -9.56720055e+00 + sys_corr_18: 9.06478901e+01 stat: 1800.0 sys_luminosity: 3600.0 -- sys_corr_1: -2139.8272487860495 - sys_corr_2: 0.21831288745273755 - sys_corr_3: 5.90177104096512 - sys_corr_4: -0.9627985855644728 - sys_corr_5: -251.56856313658733 - sys_corr_6: 42.450340412353555 - sys_corr_7: -6.697168331030207 - sys_corr_8: 6.253820024400852 - sys_corr_9: 138.23078867656676 - sys_corr_10: 70.28226492712322 - sys_corr_11: 523.5456379586727 - sys_corr_12: 678.6065660255275 - sys_corr_13: 228.3021357789108 - sys_corr_14: 1199.8472764997528 - sys_corr_15: -590.8070096056733 - sys_corr_16: 153.82026458824774 - sys_corr_17: -125.02336784844803 - sys_corr_18: 84.71575361760708 +- sys_corr_1: -2.13982725e+03 + sys_corr_2: 2.18312887e-01 + sys_corr_3: 5.90177104e+00 + sys_corr_4: -9.62798586e-01 + sys_corr_5: -2.51568563e+02 + sys_corr_6: 4.24503404e+01 + sys_corr_7: -6.69716833e+00 + sys_corr_8: 6.25382002e+00 + sys_corr_9: 1.38230789e+02 + sys_corr_10: 7.02822649e+01 + sys_corr_11: 5.23545638e+02 + sys_corr_12: 6.78606566e+02 + sys_corr_13: 2.28302136e+02 + sys_corr_14: 1.19984728e+03 + sys_corr_15: -5.90807010e+02 + sys_corr_16: 1.53820265e+02 + sys_corr_17: -1.25023368e+02 + sys_corr_18: 8.47157536e+01 stat: 2000.0 sys_luminosity: 4200.0 -- sys_corr_1: -2465.7457325268647 - sys_corr_2: 0.42441200623554676 - sys_corr_3: 2.744312660614499 - sys_corr_4: -0.8586284175887835 - sys_corr_5: -408.73894821059815 - sys_corr_6: 31.956062621592952 - sys_corr_7: 6.571299686586631 - sys_corr_8: -9.120206644285634 - sys_corr_9: 54.1514869726253 - sys_corr_10: 72.64357706331515 - sys_corr_11: 554.0009879521115 - sys_corr_12: 198.92821851185485 - sys_corr_13: 61.21857660606679 - sys_corr_14: -1092.675971171717 - sys_corr_15: -1080.6857132813238 - sys_corr_16: 120.44010295176737 - sys_corr_17: 36.54833728157899 - sys_corr_18: 125.55377368514836 +- sys_corr_1: -2.46574573e+03 + sys_corr_2: 4.24412006e-01 + sys_corr_3: 2.74431266e+00 + sys_corr_4: -8.58628418e-01 + sys_corr_5: -4.08738948e+02 + sys_corr_6: 3.19560626e+01 + sys_corr_7: 6.57129969e+00 + sys_corr_8: -9.12020664e+00 + sys_corr_9: 5.41514870e+01 + sys_corr_10: 7.26435771e+01 + sys_corr_11: 5.54000988e+02 + sys_corr_12: 1.98928219e+02 + sys_corr_13: 6.12185766e+01 + sys_corr_14: -1.09267597e+03 + sys_corr_15: -1.08068571e+03 + sys_corr_16: 1.20440103e+02 + sys_corr_17: 3.65483373e+01 + sys_corr_18: 1.25553774e+02 stat: 2100.0 sys_luminosity: 4700.0 -- sys_corr_1: -2790.2606687975026 - sys_corr_2: -0.03598691347358345 - sys_corr_3: 2.1381313568546103 - sys_corr_4: 0.7024269100943327 - sys_corr_5: -264.98368264589664 - sys_corr_6: 23.385194534480952 - sys_corr_7: 3.2330320976934757 - sys_corr_8: -13.336537336643314 - sys_corr_9: 60.004168958254134 - sys_corr_10: -0.5547166230552949 - sys_corr_11: 907.5710723114452 - sys_corr_12: 141.82409505053374 - sys_corr_13: -20.227041068148182 - sys_corr_14: -261.0780017814865 - sys_corr_15: 1171.9191685807489 - sys_corr_16: 518.7716377954223 - sys_corr_17: -562.391407008206 - sys_corr_18: 398.39071871115533 +- sys_corr_1: -2.79026067e+03 + sys_corr_2: -3.59869135e-02 + sys_corr_3: 2.13813136e+00 + sys_corr_4: 7.02426910e-01 + sys_corr_5: -2.64983683e+02 + sys_corr_6: 2.33851945e+01 + sys_corr_7: 3.23303210e+00 + sys_corr_8: -1.33365373e+01 + sys_corr_9: 6.00041690e+01 + sys_corr_10: -5.54716623e-01 + sys_corr_11: 9.07571072e+02 + sys_corr_12: 1.41824095e+02 + sys_corr_13: -2.02270411e+01 + sys_corr_14: -2.61078002e+02 + sys_corr_15: 1.17191917e+03 + sys_corr_16: 5.18771638e+02 + sys_corr_17: -5.62391407e+02 + sys_corr_18: 3.98390719e+02 stat: 2200.0 sys_luminosity: 5300.0 -- sys_corr_1: -2889.331533344995 - sys_corr_2: -0.1186524963715447 - sys_corr_3: 0.5579579793775341 - sys_corr_4: 0.4180897883495383 - sys_corr_5: -631.5666941430794 - sys_corr_6: 12.24676479342741 - sys_corr_7: -0.023955238211115733 - sys_corr_8: 5.734527709089779 - sys_corr_9: 42.33831146950339 - sys_corr_10: 27.22324673214423 - sys_corr_11: -0.792180149620354 - sys_corr_12: 91.69755648808031 - sys_corr_13: -33.30091432427267 - sys_corr_14: 2.7435306017701344 - sys_corr_15: 396.93635825372536 - sys_corr_16: -1482.1304879191414 - sys_corr_17: 653.0268202115295 - sys_corr_18: 141.17706525246888 +- sys_corr_1: -2.88933153e+03 + sys_corr_2: -1.18652496e-01 + sys_corr_3: 5.57957979e-01 + sys_corr_4: 4.18089788e-01 + sys_corr_5: -6.31566694e+02 + sys_corr_6: 1.22467648e+01 + sys_corr_7: -2.39552382e-02 + sys_corr_8: 5.73452771e+00 + sys_corr_9: 4.23383115e+01 + sys_corr_10: 2.72232467e+01 + sys_corr_11: -7.92180150e-01 + sys_corr_12: 9.16975565e+01 + sys_corr_13: -3.33009143e+01 + sys_corr_14: 2.74353060e+00 + sys_corr_15: 3.96936358e+02 + sys_corr_16: -1.48213049e+03 + sys_corr_17: 6.53026820e+02 + sys_corr_18: 1.41177065e+02 stat: 2200.0 sys_luminosity: 5500.0 -- sys_corr_1: -2956.1740789371406 - sys_corr_2: 0.5826072537983766 - sys_corr_3: 1.423453001622124 - sys_corr_4: -1.3999037428575567 - sys_corr_5: -1017.1489236383123 - sys_corr_6: 4.8557973432093045 - sys_corr_7: 18.284614076809657 - sys_corr_8: -21.966081175920635 - sys_corr_9: 62.45876189160606 - sys_corr_10: 31.841320528883497 - sys_corr_11: -1268.153391650317 - sys_corr_12: 70.17905613428861 - sys_corr_13: 2.9706376514945023 - sys_corr_14: 2.342421152246085 - sys_corr_15: 162.50016729101597 - sys_corr_16: 828.3223515153772 - sys_corr_17: 319.7656092421028 - sys_corr_18: -206.776381646463 +- sys_corr_1: -2.95617408e+03 + sys_corr_2: 5.82607254e-01 + sys_corr_3: 1.42345300e+00 + sys_corr_4: -1.39990374e+00 + sys_corr_5: -1.01714892e+03 + sys_corr_6: 4.85579734e+00 + sys_corr_7: 1.82846141e+01 + sys_corr_8: -2.19660812e+01 + sys_corr_9: 6.24587619e+01 + sys_corr_10: 3.18413205e+01 + sys_corr_11: -1.26815339e+03 + sys_corr_12: 7.01790561e+01 + sys_corr_13: 2.97063765e+00 + sys_corr_14: 2.34242115e+00 + sys_corr_15: 1.62500167e+02 + sys_corr_16: 8.28322352e+02 + sys_corr_17: 3.19765609e+02 + sys_corr_18: -2.06776382e+02 stat: 2300.0 sys_luminosity: 5700.0 -- sys_corr_1: -2900.5342386880507 - sys_corr_2: -0.08998743149531278 - sys_corr_3: 0.12853414697675147 - sys_corr_4: -6.093480990284904 - sys_corr_5: 576.2798307198766 - sys_corr_6: -0.14259421734760724 - sys_corr_7: 10.623794080459348 - sys_corr_8: 41.43796513717791 - sys_corr_9: 64.98982845439289 - sys_corr_10: -43.22821117214888 - sys_corr_11: 135.79719814626185 - sys_corr_12: 55.320056263085306 - sys_corr_13: -242.87939572939075 - sys_corr_14: -59.42828796372623 - sys_corr_15: 84.55092786032104 - sys_corr_16: -134.4919894775032 - sys_corr_17: -267.4644734136168 - sys_corr_18: -1620.5078451950535 +- sys_corr_1: -2.90053424e+03 + sys_corr_2: -8.99874315e-02 + sys_corr_3: 1.28534147e-01 + sys_corr_4: -6.09348099e+00 + sys_corr_5: 5.76279831e+02 + sys_corr_6: -1.42594217e-01 + sys_corr_7: 1.06237941e+01 + sys_corr_8: 4.14379651e+01 + sys_corr_9: 6.49898285e+01 + sys_corr_10: -4.32282112e+01 + sys_corr_11: 1.35797198e+02 + sys_corr_12: 5.53200563e+01 + sys_corr_13: -2.42879396e+02 + sys_corr_14: -5.94282880e+01 + sys_corr_15: 8.45509279e+01 + sys_corr_16: -1.34491989e+02 + sys_corr_17: -2.67464473e+02 + sys_corr_18: -1.62050785e+03 stat: 2300.0 sys_luminosity: 5600.0 -- sys_corr_1: -2764.637630687159 - sys_corr_2: -0.16249562858787706 - sys_corr_3: 0.2775075799091809 - sys_corr_4: -7.340982046283694 - sys_corr_5: 604.1439690439453 - sys_corr_6: -6.71469584415275 - sys_corr_7: -0.9277386987865739 - sys_corr_8: 31.64056745743763 - sys_corr_9: 70.75233659901255 - sys_corr_10: -78.14675974999724 - sys_corr_11: -866.8408635407267 - sys_corr_12: 21.895285469106703 - sys_corr_13: -252.5295187975642 - sys_corr_14: -16.723260858212882 - sys_corr_15: -238.3046681442805 - sys_corr_16: -450.9841281665797 - sys_corr_17: -1173.0752845878906 - sys_corr_18: 646.0264902505387 +- sys_corr_1: -2.76463763e+03 + sys_corr_2: -1.62495629e-01 + sys_corr_3: 2.77507580e-01 + sys_corr_4: -7.34098205e+00 + sys_corr_5: 6.04143969e+02 + sys_corr_6: -6.71469584e+00 + sys_corr_7: -9.27738699e-01 + sys_corr_8: 3.16405675e+01 + sys_corr_9: 7.07523366e+01 + sys_corr_10: -7.81467597e+01 + sys_corr_11: -8.66840864e+02 + sys_corr_12: 2.18952855e+01 + sys_corr_13: -2.52529519e+02 + sys_corr_14: -1.67232609e+01 + sys_corr_15: -2.38304668e+02 + sys_corr_16: -4.50984128e+02 + sys_corr_17: -1.17307528e+03 + sys_corr_18: 6.46026490e+02 stat: 2200.0 sys_luminosity: 5300.0 -- sys_corr_1: -2383.56879615187 - sys_corr_2: -0.7021589850968055 - sys_corr_3: -2.0173566808346086 - sys_corr_4: -10.992098437683515 - sys_corr_5: 1169.5946717116537 - sys_corr_6: -8.057979476136333 - sys_corr_7: -12.897289938504631 - sys_corr_8: 75.07165809476872 - sys_corr_9: 69.03793275113436 - sys_corr_10: -197.36193276615793 - sys_corr_11: 31.074451850089353 - sys_corr_12: 139.55518772740623 - sys_corr_13: -599.2936856243632 - sys_corr_14: 32.973725792057635 - sys_corr_15: 18.50910807543177 - sys_corr_16: 417.1286024006565 - sys_corr_17: 1051.7687086160704 - sys_corr_18: 489.5916468344398 +- sys_corr_1: -2.38356880e+03 + sys_corr_2: -7.02158985e-01 + sys_corr_3: -2.01735668e+00 + sys_corr_4: -1.09920984e+01 + sys_corr_5: 1.16959467e+03 + sys_corr_6: -8.05797948e+00 + sys_corr_7: -1.28972899e+01 + sys_corr_8: 7.50716581e+01 + sys_corr_9: 6.90379328e+01 + sys_corr_10: -1.97361933e+02 + sys_corr_11: 3.10744519e+01 + sys_corr_12: 1.39555188e+02 + sys_corr_13: -5.99293686e+02 + sys_corr_14: 3.29737258e+01 + sys_corr_15: 1.85091081e+01 + sys_corr_16: 4.17128602e+02 + sys_corr_17: 1.05176871e+03 + sys_corr_18: 4.89591647e+02 stat: 2100.0 sys_luminosity: 4800.0 -- sys_corr_1: -1835.1865490726564 - sys_corr_2: -1.1029444833980808 - sys_corr_3: -0.13984444148153508 - sys_corr_4: -12.582566343023004 - sys_corr_5: 562.5944975130018 - sys_corr_6: -2.5990546400307597 - sys_corr_7: -15.665162262301113 - sys_corr_8: 122.04383334459763 - sys_corr_9: 224.84576886050445 - sys_corr_10: -389.5492356655221 - sys_corr_11: -95.60997620901263 - sys_corr_12: -338.7841773361912 - sys_corr_13: 1299.8575460500774 - sys_corr_14: -53.01225847469744 - sys_corr_15: 58.08213803641245 - sys_corr_16: 31.505712552072506 - sys_corr_17: 188.4774436445314 - sys_corr_18: 41.48868083991889 +- sys_corr_1: -1.83518655e+03 + sys_corr_2: -1.10294448e+00 + sys_corr_3: -1.39844441e-01 + sys_corr_4: -1.25825663e+01 + sys_corr_5: 5.62594498e+02 + sys_corr_6: -2.59905464e+00 + sys_corr_7: -1.56651623e+01 + sys_corr_8: 1.22043833e+02 + sys_corr_9: 2.24845769e+02 + sys_corr_10: -3.89549236e+02 + sys_corr_11: -9.56099762e+01 + sys_corr_12: -3.38784177e+02 + sys_corr_13: 1.29985755e+03 + sys_corr_14: -5.30122585e+01 + sys_corr_15: 5.80821380e+01 + sys_corr_16: 3.15057126e+01 + sys_corr_17: 1.88477444e+02 + sys_corr_18: 4.14886808e+01 stat: 1900.0 sys_luminosity: 3900.0 -- sys_corr_1: -1265.1098220797437 - sys_corr_2: -2.024982187957199 - sys_corr_3: 0.1068421175456384 - sys_corr_4: -17.251187670362683 - sys_corr_5: 332.1989210867903 - sys_corr_6: 3.4721800374769725 - sys_corr_7: -57.56869149440821 - sys_corr_8: 517.5819133402248 - sys_corr_9: -716.8798358876844 - sys_corr_10: 801.4645046520704 - sys_corr_11: -73.67194406189249 - sys_corr_12: -24.505763562536007 - sys_corr_13: 284.93046637178225 - sys_corr_14: 8.839492908606 - sys_corr_15: 55.46565559801999 - sys_corr_16: 52.87845505952278 - sys_corr_17: 72.98136802591983 - sys_corr_18: 53.56823424595481 +- sys_corr_1: -1.26510982e+03 + sys_corr_2: -2.02498219e+00 + sys_corr_3: 1.06842118e-01 + sys_corr_4: -1.72511877e+01 + sys_corr_5: 3.32198921e+02 + sys_corr_6: 3.47218004e+00 + sys_corr_7: -5.75686915e+01 + sys_corr_8: 5.17581913e+02 + sys_corr_9: -7.16879836e+02 + sys_corr_10: 8.01464505e+02 + sys_corr_11: -7.36719441e+01 + sys_corr_12: -2.45057636e+01 + sys_corr_13: 2.84930466e+02 + sys_corr_14: 8.83949291e+00 + sys_corr_15: 5.54656556e+01 + sys_corr_16: 5.28784551e+01 + sys_corr_17: 7.29813680e+01 + sys_corr_18: 5.35682342e+01 stat: 1700.0 sys_luminosity: 2900.0 -- sys_corr_1: -959.5523036649834 - sys_corr_2: -2.755197960954223 - sys_corr_3: -1.7265105735640398 - sys_corr_4: -26.18161880925965 - sys_corr_5: 301.69596895392993 - sys_corr_6: -26.3077504124041 - sys_corr_7: -580.8110583645623 - sys_corr_8: -844.9100140091189 - sys_corr_9: -220.59884447411392 - sys_corr_10: 304.3787056105809 - sys_corr_11: -47.14664962473652 - sys_corr_12: -52.26075034572314 - sys_corr_13: 183.3239211539608 - sys_corr_14: 10.9923260558336 - sys_corr_15: 17.113347182993323 - sys_corr_16: 12.42926049982413 - sys_corr_17: 71.8387039112742 - sys_corr_18: 5.955808046520381 +- sys_corr_1: -9.59552304e+02 + sys_corr_2: -2.75519796e+00 + sys_corr_3: -1.72651057e+00 + sys_corr_4: -2.61816188e+01 + sys_corr_5: 3.01695969e+02 + sys_corr_6: -2.63077504e+01 + sys_corr_7: -5.80811058e+02 + sys_corr_8: -8.44910014e+02 + sys_corr_9: -2.20598844e+02 + sys_corr_10: 3.04378706e+02 + sys_corr_11: -4.71466496e+01 + sys_corr_12: -5.22607503e+01 + sys_corr_13: 1.83323921e+02 + sys_corr_14: 1.09923261e+01 + sys_corr_15: 1.71133472e+01 + sys_corr_16: 1.24292605e+01 + sys_corr_17: 7.18387039e+01 + sys_corr_18: 5.95580805e+00 stat: 1500.0 sys_luminosity: 2300.0 -- sys_corr_1: -671.8654202371795 - sys_corr_2: -2.209890563332366 - sys_corr_3: 0.02993395585484563 - sys_corr_4: -24.051666945116676 - sys_corr_5: 268.92255546395836 - sys_corr_6: 34.81023884950086 - sys_corr_7: 870.1548890877593 - sys_corr_8: -526.241435156497 - sys_corr_9: -195.5478125445036 - sys_corr_10: 241.08505355639755 - sys_corr_11: -19.89810929919263 - sys_corr_12: -42.14711589898891 - sys_corr_13: 158.0154388710812 - sys_corr_14: 26.51232789942191 - sys_corr_15: 11.883585389959068 - sys_corr_16: 0.1396229963515076 - sys_corr_17: 67.88749955182475 - sys_corr_18: 37.78649142120483 +- sys_corr_1: -6.71865420e+02 + sys_corr_2: -2.20989056e+00 + sys_corr_3: 2.99339559e-02 + sys_corr_4: -2.40516669e+01 + sys_corr_5: 2.68922555e+02 + sys_corr_6: 3.48102388e+01 + sys_corr_7: 8.70154889e+02 + sys_corr_8: -5.26241435e+02 + sys_corr_9: -1.95547813e+02 + sys_corr_10: 2.41085054e+02 + sys_corr_11: -1.98981093e+01 + sys_corr_12: -4.21471159e+01 + sys_corr_13: 1.58015439e+02 + sys_corr_14: 2.65123279e+01 + sys_corr_15: 1.18835854e+01 + sys_corr_16: 1.39622996e-01 + sys_corr_17: 6.78874996e+01 + sys_corr_18: 3.77864914e+01 stat: 1200.0 sys_luminosity: 1600.0 -- sys_corr_1: -303.1555947799991 - sys_corr_2: -14.837753484574094 - sys_corr_3: 13.352234894316188 - sys_corr_4: 501.6190098019197 - sys_corr_5: 92.67212510752537 - sys_corr_6: 1.216509823833827 - sys_corr_7: 8.732431249380516 - sys_corr_8: -45.42000547676677 - sys_corr_9: -34.37283252899498 - sys_corr_10: 40.152964677948155 - sys_corr_11: -22.259205173591276 - sys_corr_12: -7.967729894849778 - sys_corr_13: 39.96036265214321 - sys_corr_14: 0.6705094554280392 - sys_corr_15: -1.2173821573897217 - sys_corr_16: 7.313325792004881 - sys_corr_17: 17.974055326727598 - sys_corr_18: 4.444730020587761 +- sys_corr_1: -3.03155595e+02 + sys_corr_2: -1.48377535e+01 + sys_corr_3: 1.33522349e+01 + sys_corr_4: 5.01619010e+02 + sys_corr_5: 9.26721251e+01 + sys_corr_6: 1.21650982e+00 + sys_corr_7: 8.73243125e+00 + sys_corr_8: -4.54200055e+01 + sys_corr_9: -3.43728325e+01 + sys_corr_10: 4.01529647e+01 + sys_corr_11: -2.22592052e+01 + sys_corr_12: -7.96772989e+00 + sys_corr_13: 3.99603627e+01 + sys_corr_14: 6.70509455e-01 + sys_corr_15: -1.21738216e+00 + sys_corr_16: 7.31332579e+00 + sys_corr_17: 1.79740553e+01 + sys_corr_18: 4.44473002e+00 stat: 600.0 sys_luminosity: 700.0 -- sys_corr_1: -45.071312905700744 - sys_corr_2: 294.1692484849759 - sys_corr_3: 3.3611872196625256 - sys_corr_4: 24.588876780037403 - sys_corr_5: 19.53450594456611 - sys_corr_6: -0.08990753459072345 - sys_corr_7: 1.0028098052534022 - sys_corr_8: -9.845511334893803 - sys_corr_9: -8.995860241962543 - sys_corr_10: 10.394504420301955 - sys_corr_11: -1.147380106628713 - sys_corr_12: -4.578160160584672 - sys_corr_13: 9.474002705577956 - sys_corr_14: 1.3038211198135494 - sys_corr_15: 2.4383484747813036 - sys_corr_16: -0.6881701963942123 - sys_corr_17: 4.718790726230366 - sys_corr_18: 2.4869241433564557 +- sys_corr_1: -4.50713129e+01 + sys_corr_2: 2.94169248e+02 + sys_corr_3: 3.36118722e+00 + sys_corr_4: 2.45888768e+01 + sys_corr_5: 1.95345059e+01 + sys_corr_6: -8.99075346e-02 + sys_corr_7: 1.00280981e+00 + sys_corr_8: -9.84551133e+00 + sys_corr_9: -8.99586024e+00 + sys_corr_10: 1.03945044e+01 + sys_corr_11: -1.14738011e+00 + sys_corr_12: -4.57816016e+00 + sys_corr_13: 9.47400271e+00 + sys_corr_14: 1.30382112e+00 + sys_corr_15: 2.43834847e+00 + sys_corr_16: -6.88170196e-01 + sys_corr_17: 4.71879073e+00 + sys_corr_18: 2.48692414e+00 stat: 200.0 sys_luminosity: 100.0 diff --git a/nnpdf_data/nnpdf_data/commondata/LHCB_Z0_13TEV_2022/filter.py b/nnpdf_data/nnpdf_data/commondata/LHCB_Z0_13TEV_2022/filter.py index 1a5297841b..63179194fe 100644 --- a/nnpdf_data/nnpdf_data/commondata/LHCB_Z0_13TEV_2022/filter.py +++ b/nnpdf_data/nnpdf_data/commondata/LHCB_Z0_13TEV_2022/filter.py @@ -3,6 +3,10 @@ import numpy as np import yaml +from nnpdf_data.filter_utils.utils import prettify_float + +yaml.add_representer(float, prettify_float) + # Loading tables with open('metadata.yaml', 'r') as file: metadata = yaml.safe_load(file) diff --git a/nnpdf_data/nnpdf_data/commondata/LHCB_Z0_13TEV_2022/uncertainties_dimuon_y.yaml b/nnpdf_data/nnpdf_data/commondata/LHCB_Z0_13TEV_2022/uncertainties_dimuon_y.yaml index 023e47f023..f75b52aa21 100644 --- a/nnpdf_data/nnpdf_data/commondata/LHCB_Z0_13TEV_2022/uncertainties_dimuon_y.yaml +++ b/nnpdf_data/nnpdf_data/commondata/LHCB_Z0_13TEV_2022/uncertainties_dimuon_y.yaml @@ -202,813 +202,813 @@ definitions: treatment: ADD type: LHCB_LUM bins: -- Stat_corr_1: 0.19999594778191543 - Stat_corr_2: -0.001273129080240069 - Stat_corr_3: -2.539587614242732e-06 - Stat_corr_4: -2.5901587235359432e-06 - Stat_corr_5: -6.653871605786796e-13 - Stat_corr_6: 9.656824420310091e-12 - Stat_corr_7: 3.9169774285916657e-11 - Stat_corr_8: -7.254013377817582e-11 - Stat_corr_9: -1.148329505276774e-12 - Stat_corr_10: -7.732485438195784e-11 - Stat_corr_11: 4.7886819048003586e-11 - Stat_corr_12: -1.3742816912601677e-11 - Stat_corr_13: 1.4559711013416399e-18 - Stat_corr_14: -8.907798388159137e-19 - Stat_corr_15: -3.226378992410207e-24 - Stat_corr_16: 2.3418241531641683e-24 - Stat_corr_17: 5.7927493937142886e-33 - Stat_corr_18: 5.561455902901476e-33 - Sys_corr_eff_1: -0.024800753239917272 - Sys_corr_eff_2: -0.039658257954941496 - Sys_corr_eff_3: -0.04009935820231585 - Sys_corr_eff_4: -0.02269862744966399 - Sys_corr_eff_5: -0.03546872340926772 - Sys_corr_eff_6: -0.03149305370715921 - Sys_corr_eff_7: 0.024981200101752102 - Sys_corr_eff_8: 0.017280802473531563 - Sys_corr_eff_9: -0.02292137336287788 - Sys_corr_eff_10: 0.004282652955974322 - Sys_corr_eff_11: 0.00012305385321144152 - Sys_corr_eff_12: 7.709706147450375e-05 - Sys_corr_eff_13: -0.0005475739049808745 - Sys_corr_eff_14: 0.0004635508375555374 - Sys_corr_eff_15: -0.0005304149918318098 - Sys_corr_eff_16: -0.00020037516218300068 - Sys_corr_eff_17: 4.196990895780346e-05 - Sys_corr_eff_18: -1.4350793929402428e-05 - Sys_back_corr: 0.03258348047707611 - Sys_back_unc: 0.03258348047707611 - Sys_fsr_corr: 0.010861160159025371 - Sys_fsr_unc: 0.010861160159025371 - Sys_clos_corr: 0.08236379787260907 - Sys_clos_unc: 0.08236379787260907 - Sys_align_corr: 0.024437610357807088 - Sys_align_unc: 0.024437610357807088 +- Stat_corr_1: 1.99995948e-01 + Stat_corr_2: -1.27312908e-03 + Stat_corr_3: -2.53958761e-06 + Stat_corr_4: -2.59015872e-06 + Stat_corr_5: -6.65387161e-13 + Stat_corr_6: 9.65682442e-12 + Stat_corr_7: 3.91697743e-11 + Stat_corr_8: -7.25401338e-11 + Stat_corr_9: -1.14832951e-12 + Stat_corr_10: -7.73248544e-11 + Stat_corr_11: 4.78868190e-11 + Stat_corr_12: -1.37428169e-11 + Stat_corr_13: 1.45597110e-18 + Stat_corr_14: -8.90779839e-19 + Stat_corr_15: -3.22637899e-24 + Stat_corr_16: 2.34182415e-24 + Stat_corr_17: 5.79274939e-33 + Stat_corr_18: 5.56145590e-33 + Sys_corr_eff_1: -2.48007532e-02 + Sys_corr_eff_2: -3.96582580e-02 + Sys_corr_eff_3: -4.00993582e-02 + Sys_corr_eff_4: -2.26986274e-02 + Sys_corr_eff_5: -3.54687234e-02 + Sys_corr_eff_6: -3.14930537e-02 + Sys_corr_eff_7: 2.49812001e-02 + Sys_corr_eff_8: 1.72808025e-02 + Sys_corr_eff_9: -2.29213734e-02 + Sys_corr_eff_10: 4.28265296e-03 + Sys_corr_eff_11: 1.23053853e-04 + Sys_corr_eff_12: 7.70970615e-05 + Sys_corr_eff_13: -5.47573905e-04 + Sys_corr_eff_14: 4.63550838e-04 + Sys_corr_eff_15: -5.30414992e-04 + Sys_corr_eff_16: -2.00375162e-04 + Sys_corr_eff_17: 4.19699090e-05 + Sys_corr_eff_18: -1.43507939e-05 + Sys_back_corr: 3.25834805e-02 + Sys_back_unc: 3.25834805e-02 + Sys_fsr_corr: 1.08611602e-02 + Sys_fsr_unc: 1.08611602e-02 + Sys_clos_corr: 8.23637979e-02 + Sys_clos_unc: 8.23637979e-02 + Sys_align_corr: 2.44376104e-02 + Sys_align_unc: 2.44376104e-02 Luminosity: 0.3 -- Stat_corr_1: -0.0008487457398503512 - Stat_corr_2: -0.2999917875061251 - Stat_corr_3: -0.0014454127773033231 - Stat_corr_4: -0.0014552805356155506 - Stat_corr_5: -6.838718664268844e-10 - Stat_corr_6: 9.793268874575423e-09 - Stat_corr_7: 3.933477942980346e-08 - Stat_corr_8: -7.213733107822695e-08 - Stat_corr_9: -1.0930377694182118e-09 - Stat_corr_10: -7.617826865785778e-08 - Stat_corr_11: 4.670633177251585e-08 - Stat_corr_12: -1.3268276336345878e-08 - Stat_corr_13: 8.456592028097331e-16 - Stat_corr_14: -4.896587721225593e-16 - Stat_corr_15: -7.839554824106457e-22 - Stat_corr_16: 5.337911066209877e-22 - Stat_corr_17: -8.196968875512078e-31 - Stat_corr_18: -7.8568336130261295e-31 - Sys_corr_eff_1: -0.11626243348280045 - Sys_corr_eff_2: -0.1649666915011018 - Sys_corr_eff_3: -0.1446920840484529 - Sys_corr_eff_4: -0.07908389754678626 - Sys_corr_eff_5: -0.07392214462213005 - Sys_corr_eff_6: -0.04255051847825698 - Sys_corr_eff_7: -0.00046910038458965935 - Sys_corr_eff_8: -0.002375566389330638 - Sys_corr_eff_9: 0.015765653873947245 - Sys_corr_eff_10: 0.0008692879263504364 - Sys_corr_eff_11: -0.000991637721745068 - Sys_corr_eff_12: 0.004312124844309284 - Sys_corr_eff_13: -0.00010525663860034778 - Sys_corr_eff_14: 0.00034484549667570565 - Sys_corr_eff_15: 0.00031422591888553315 - Sys_corr_eff_16: 0.00019087079691422438 - Sys_corr_eff_17: 6.657386300751079e-05 - Sys_corr_eff_18: 3.5924326200962425e-05 - Sys_back_corr: 0.07998791908782227 - Sys_back_unc: 0.07998791908782227 - Sys_fsr_corr: 0.05713422791987304 - Sys_fsr_unc: 0.05713422791987304 - Sys_clos_corr: 0.20282650911554928 - Sys_clos_unc: 0.20282650911554928 - Sys_align_corr: 0.06284765071186035 - Sys_align_unc: 0.06284765071186035 +- Stat_corr_1: -8.48745740e-04 + Stat_corr_2: -2.99991788e-01 + Stat_corr_3: -1.44541278e-03 + Stat_corr_4: -1.45528054e-03 + Stat_corr_5: -6.83871866e-10 + Stat_corr_6: 9.79326887e-09 + Stat_corr_7: 3.93347794e-08 + Stat_corr_8: -7.21373311e-08 + Stat_corr_9: -1.09303777e-09 + Stat_corr_10: -7.61782687e-08 + Stat_corr_11: 4.67063318e-08 + Stat_corr_12: -1.32682763e-08 + Stat_corr_13: 8.45659203e-16 + Stat_corr_14: -4.89658772e-16 + Stat_corr_15: -7.83955482e-22 + Stat_corr_16: 5.33791107e-22 + Stat_corr_17: -8.19696888e-31 + Stat_corr_18: -7.85683361e-31 + Sys_corr_eff_1: -1.16262433e-01 + Sys_corr_eff_2: -1.64966692e-01 + Sys_corr_eff_3: -1.44692084e-01 + Sys_corr_eff_4: -7.90838975e-02 + Sys_corr_eff_5: -7.39221446e-02 + Sys_corr_eff_6: -4.25505185e-02 + Sys_corr_eff_7: -4.69100385e-04 + Sys_corr_eff_8: -2.37556639e-03 + Sys_corr_eff_9: 1.57656539e-02 + Sys_corr_eff_10: 8.69287926e-04 + Sys_corr_eff_11: -9.91637722e-04 + Sys_corr_eff_12: 4.31212484e-03 + Sys_corr_eff_13: -1.05256639e-04 + Sys_corr_eff_14: 3.44845497e-04 + Sys_corr_eff_15: 3.14225919e-04 + Sys_corr_eff_16: 1.90870797e-04 + Sys_corr_eff_17: 6.65738630e-05 + Sys_corr_eff_18: 3.59243262e-05 + Sys_back_corr: 7.99879191e-02 + Sys_back_unc: 7.99879191e-02 + Sys_fsr_corr: 5.71342279e-02 + Sys_fsr_unc: 5.71342279e-02 + Sys_clos_corr: 2.02826509e-01 + Sys_clos_unc: 2.02826509e-01 + Sys_align_corr: 6.28476507e-02 + Sys_align_unc: 6.28476507e-02 Luminosity: 0.8 -- Stat_corr_1: 2.5386004186743388e-06 - Stat_corr_2: 0.0015383028619790648 - Stat_corr_3: -0.2850009669304523 - Stat_corr_4: -0.2806636411964914 - Stat_corr_5: -3.202722544614654e-07 - Stat_corr_6: 4.5073652058930515e-06 - Stat_corr_7: 1.787327006559206e-05 - Stat_corr_8: -3.2361892830241126e-05 - Stat_corr_9: -4.6282657553592223e-07 - Stat_corr_10: -3.3756980493838485e-05 - Stat_corr_11: 2.0425783695862002e-05 - Stat_corr_12: -5.725041474256148e-06 - Stat_corr_13: 1.7257784784145117e-13 - Stat_corr_14: -9.091673528106513e-14 - Stat_corr_15: -3.402463514467557e-21 - Stat_corr_16: -2.431277437694646e-21 - Stat_corr_17: 1.8276440211867123e-28 - Stat_corr_18: 1.7507325132706144e-28 - Sys_corr_eff_1: -0.23138641125013987 - Sys_corr_eff_2: -0.2857367478401078 - Sys_corr_eff_3: -0.20541172036469835 - Sys_corr_eff_4: -0.07762132284081279 - Sys_corr_eff_5: -0.005113403117149851 - Sys_corr_eff_6: 0.026273524047473937 - Sys_corr_eff_7: -0.027632285351042025 - Sys_corr_eff_8: -0.008421880374739888 - Sys_corr_eff_9: -0.014334999872472842 - Sys_corr_eff_10: 0.0012322468098282368 - Sys_corr_eff_11: -0.0011664305926004416 - Sys_corr_eff_12: -0.003315967905844102 - Sys_corr_eff_13: 0.0002071809470313218 - Sys_corr_eff_14: 0.0005618852625699393 - Sys_corr_eff_15: 0.0006600489294250309 - Sys_corr_eff_16: 0.00012216646279598296 - Sys_corr_eff_17: 7.137332997556934e-05 - Sys_corr_eff_18: -5.609919437375062e-07 - Sys_back_corr: 0.12908941397341614 - Sys_back_unc: 0.12908941397341614 - Sys_fsr_corr: 0.013831008640008871 - Sys_fsr_unc: 0.013831008640008871 - Sys_clos_corr: 0.26739950037350485 - Sys_clos_unc: 0.26739950037350485 - Sys_align_corr: 0.06454470698670807 - Sys_align_unc: 0.06454470698670807 +- Stat_corr_1: 2.53860042e-06 + Stat_corr_2: 1.53830286e-03 + Stat_corr_3: -2.85000967e-01 + Stat_corr_4: -2.80663641e-01 + Stat_corr_5: -3.20272254e-07 + Stat_corr_6: 4.50736521e-06 + Stat_corr_7: 1.78732701e-05 + Stat_corr_8: -3.23618928e-05 + Stat_corr_9: -4.62826576e-07 + Stat_corr_10: -3.37569805e-05 + Stat_corr_11: 2.04257837e-05 + Stat_corr_12: -5.72504147e-06 + Stat_corr_13: 1.72577848e-13 + Stat_corr_14: -9.09167353e-14 + Stat_corr_15: -3.40246351e-21 + Stat_corr_16: -2.43127744e-21 + Stat_corr_17: 1.82764402e-28 + Stat_corr_18: 1.75073251e-28 + Sys_corr_eff_1: -2.31386411e-01 + Sys_corr_eff_2: -2.85736748e-01 + Sys_corr_eff_3: -2.05411720e-01 + Sys_corr_eff_4: -7.76213228e-02 + Sys_corr_eff_5: -5.11340312e-03 + Sys_corr_eff_6: 2.62735240e-02 + Sys_corr_eff_7: -2.76322854e-02 + Sys_corr_eff_8: -8.42188037e-03 + Sys_corr_eff_9: -1.43349999e-02 + Sys_corr_eff_10: 1.23224681e-03 + Sys_corr_eff_11: -1.16643059e-03 + Sys_corr_eff_12: -3.31596791e-03 + Sys_corr_eff_13: 2.07180947e-04 + Sys_corr_eff_14: 5.61885263e-04 + Sys_corr_eff_15: 6.60048929e-04 + Sys_corr_eff_16: 1.22166463e-04 + Sys_corr_eff_17: 7.13733300e-05 + Sys_corr_eff_18: -5.60991944e-07 + Sys_back_corr: 1.29089414e-01 + Sys_back_unc: 1.29089414e-01 + Sys_fsr_corr: 1.38310086e-02 + Sys_fsr_unc: 1.38310086e-02 + Sys_clos_corr: 2.67399500e-01 + Sys_clos_unc: 2.67399500e-01 + Sys_align_corr: 6.45447070e-02 + Sys_align_unc: 6.45447070e-02 Luminosity: 1.3 -- Stat_corr_1: -1.6391617599556978e-08 - Stat_corr_2: -1.7028559242612858e-05 - Stat_corr_3: -0.282006852442081 - Stat_corr_4: 0.2836054730709123 - Stat_corr_5: -4.0544091786800996e-05 - Stat_corr_6: 0.0005537480471352746 - Stat_corr_7: 0.002147262454334175 - Stat_corr_8: -0.0038013506362665557 - Stat_corr_9: -4.896614363380362e-05 - Stat_corr_10: -0.0038794734306653394 - Stat_corr_11: 0.0022924529532614654 - Stat_corr_12: -0.0006270519911477152 - Stat_corr_13: 7.222819691545724e-13 - Stat_corr_14: 3.9447934047295157e-13 - Stat_corr_15: 3.0091740862852054e-19 - Stat_corr_16: 2.2453544176251242e-19 - Stat_corr_17: -3.538857405420494e-26 - Stat_corr_18: -3.388826575517908e-26 - Sys_corr_eff_1: -0.3740014540316908 - Sys_corr_eff_2: -0.3788654217298305 - Sys_corr_eff_3: -0.18577343984509193 - Sys_corr_eff_4: 0.0041066517886888376 - Sys_corr_eff_5: 0.06701295041408306 - Sys_corr_eff_6: 0.017716048265099194 - Sys_corr_eff_7: 0.01578609745489282 - Sys_corr_eff_8: 0.019595372707456548 - Sys_corr_eff_9: 0.008428596443246962 - Sys_corr_eff_10: -0.0027160344772351385 - Sys_corr_eff_11: 0.003629090637279404 - Sys_corr_eff_12: 0.0012730063321609246 - Sys_corr_eff_13: 0.0006860811630233643 - Sys_corr_eff_14: -0.000274400588770175 - Sys_corr_eff_15: 0.0004968759951501105 - Sys_corr_eff_16: -0.0002342648250938475 - Sys_corr_eff_17: -3.7860005540243814e-05 - Sys_corr_eff_18: -6.139029007834397e-06 - Sys_back_corr: 0.16705397705532185 - Sys_back_unc: 0.16705397705532185 - Sys_fsr_corr: 0.04949747468305833 - Sys_fsr_unc: 0.04949747468305833 - Sys_clos_corr: 0.1299308710430281 - Sys_clos_unc: 0.1299308710430281 - Sys_align_corr: 0.04331029034767604 - Sys_align_unc: 0.04331029034767604 +- Stat_corr_1: -1.63916176e-08 + Stat_corr_2: -1.70285592e-05 + Stat_corr_3: -2.82006852e-01 + Stat_corr_4: 2.83605473e-01 + Stat_corr_5: -4.05440918e-05 + Stat_corr_6: 5.53748047e-04 + Stat_corr_7: 2.14726245e-03 + Stat_corr_8: -3.80135064e-03 + Stat_corr_9: -4.89661436e-05 + Stat_corr_10: -3.87947343e-03 + Stat_corr_11: 2.29245295e-03 + Stat_corr_12: -6.27051991e-04 + Stat_corr_13: 7.22281969e-13 + Stat_corr_14: 3.94479340e-13 + Stat_corr_15: 3.00917409e-19 + Stat_corr_16: 2.24535442e-19 + Stat_corr_17: -3.53885741e-26 + Stat_corr_18: -3.38882658e-26 + Sys_corr_eff_1: -3.74001454e-01 + Sys_corr_eff_2: -3.78865422e-01 + Sys_corr_eff_3: -1.85773440e-01 + Sys_corr_eff_4: 4.10665179e-03 + Sys_corr_eff_5: 6.70129504e-02 + Sys_corr_eff_6: 1.77160483e-02 + Sys_corr_eff_7: 1.57860975e-02 + Sys_corr_eff_8: 1.95953727e-02 + Sys_corr_eff_9: 8.42859644e-03 + Sys_corr_eff_10: -2.71603448e-03 + Sys_corr_eff_11: 3.62909064e-03 + Sys_corr_eff_12: 1.27300633e-03 + Sys_corr_eff_13: 6.86081163e-04 + Sys_corr_eff_14: -2.74400589e-04 + Sys_corr_eff_15: 4.96875995e-04 + Sys_corr_eff_16: -2.34264825e-04 + Sys_corr_eff_17: -3.78600055e-05 + Sys_corr_eff_18: -6.13902901e-06 + Sys_back_corr: 1.67053977e-01 + Sys_back_unc: 1.67053977e-01 + Sys_fsr_corr: 4.94974747e-02 + Sys_fsr_unc: 4.94974747e-02 + Sys_clos_corr: 1.29930871e-01 + Sys_clos_unc: 1.29930871e-01 + Sys_align_corr: 4.33102903e-02 + Sys_align_unc: 4.33102903e-02 Luminosity: 1.7 -- Stat_corr_1: 8.891322051221159e-11 - Stat_corr_2: 1.2123998591500397e-07 - Stat_corr_3: 0.0036013311722216143 - Stat_corr_4: -0.003559873747915276 - Stat_corr_5: -0.0034911651189673356 - Stat_corr_6: 0.046273751747969945 - Stat_corr_7: 0.1754680702062751 - Stat_corr_8: -0.3037194112294961 - Stat_corr_9: -0.00352368816724527 - Stat_corr_10: -0.3032573250870082 - Stat_corr_11: 0.1750048226103612 - Stat_corr_12: -0.04671483088190543 - Stat_corr_13: 1.9400232893033025e-12 - Stat_corr_14: -1.1017806912265502e-12 - Stat_corr_15: -1.8079207600218908e-17 - Stat_corr_16: -1.411954418432405e-17 - Stat_corr_17: 4.66107247026928e-24 - Stat_corr_18: 4.462006785571077e-24 - Sys_corr_eff_1: -0.5363109220497043 - Sys_corr_eff_2: -0.414108450848042 - Sys_corr_eff_3: -0.07727633754155766 - Sys_corr_eff_4: 0.09741574961680317 - Sys_corr_eff_5: 0.03865899010226215 - Sys_corr_eff_6: -0.028070201058778842 - Sys_corr_eff_7: 0.01368008705974208 - Sys_corr_eff_8: -0.01728770573024727 - Sys_corr_eff_9: -0.003916402920353671 - Sys_corr_eff_10: 0.0062369999170919736 - Sys_corr_eff_11: -0.003184097018072542 - Sys_corr_eff_12: 0.00014574414683200156 - Sys_corr_eff_13: 0.0011454113633640184 - Sys_corr_eff_14: -0.0009453642622049191 - Sys_corr_eff_15: -0.00029283444548695934 - Sys_corr_eff_16: 0.0002669445339456612 - Sys_corr_eff_17: -4.021266441783986e-05 - Sys_corr_eff_18: 4.5281275321759114e-05 - Sys_back_corr: 0.165363991848286 - Sys_back_unc: 0.165363991848286 - Sys_fsr_corr: 0.07516545084013002 - Sys_fsr_unc: 0.07516545084013002 - Sys_clos_corr: 0.10523163117618202 - Sys_clos_unc: 0.10523163117618202 - Sys_align_corr: 0.045099270504078 - Sys_align_unc: 0.045099270504078 +- Stat_corr_1: 8.89132205e-11 + Stat_corr_2: 1.21239986e-07 + Stat_corr_3: 3.60133117e-03 + Stat_corr_4: -3.55987375e-03 + Stat_corr_5: -3.49116512e-03 + Stat_corr_6: 4.62737517e-02 + Stat_corr_7: 1.75468070e-01 + Stat_corr_8: -3.03719411e-01 + Stat_corr_9: -3.52368817e-03 + Stat_corr_10: -3.03257325e-01 + Stat_corr_11: 1.75004823e-01 + Stat_corr_12: -4.67148309e-02 + Stat_corr_13: 1.94002329e-12 + Stat_corr_14: -1.10178069e-12 + Stat_corr_15: -1.80792076e-17 + Stat_corr_16: -1.41195442e-17 + Stat_corr_17: 4.66107247e-24 + Stat_corr_18: 4.46200679e-24 + Sys_corr_eff_1: -5.36310922e-01 + Sys_corr_eff_2: -4.14108451e-01 + Sys_corr_eff_3: -7.72763375e-02 + Sys_corr_eff_4: 9.74157496e-02 + Sys_corr_eff_5: 3.86589901e-02 + Sys_corr_eff_6: -2.80702011e-02 + Sys_corr_eff_7: 1.36800871e-02 + Sys_corr_eff_8: -1.72877057e-02 + Sys_corr_eff_9: -3.91640292e-03 + Sys_corr_eff_10: 6.23699992e-03 + Sys_corr_eff_11: -3.18409702e-03 + Sys_corr_eff_12: 1.45744147e-04 + Sys_corr_eff_13: 1.14541136e-03 + Sys_corr_eff_14: -9.45364262e-04 + Sys_corr_eff_15: -2.92834445e-04 + Sys_corr_eff_16: 2.66944534e-04 + Sys_corr_eff_17: -4.02126644e-05 + Sys_corr_eff_18: 4.52812753e-05 + Sys_back_corr: 1.65363992e-01 + Sys_back_unc: 1.65363992e-01 + Sys_fsr_corr: 7.51654508e-02 + Sys_fsr_unc: 7.51654508e-02 + Sys_clos_corr: 1.05231631e-01 + Sys_clos_unc: 1.05231631e-01 + Sys_align_corr: 4.50992705e-02 + Sys_align_unc: 4.50992705e-02 Luminosity: 2.1 -- Stat_corr_1: -7.906267975832574e-13 - Stat_corr_2: -1.4151301444502673e-09 - Stat_corr_3: -7.541621431679993e-05 - Stat_corr_4: 7.32735378060987e-05 - Stat_corr_5: -0.015092504990458023 - Stat_corr_6: 0.12824435653001934 - Stat_corr_7: 0.2885123290384547 - Stat_corr_8: -0.16226290951693081 - Stat_corr_9: 0.015178730415907175 - Stat_corr_10: 0.15770739108074142 - Stat_corr_11: -0.2864213179566168 - Stat_corr_12: 0.12890999962790922 - Stat_corr_13: -9.058575475826847e-11 - Stat_corr_14: 5.485198148340034e-11 - Stat_corr_15: 1.5340318974679847e-15 - Stat_corr_16: 1.2222004113875144e-15 - Stat_corr_17: -5.991923068982838e-22 - Stat_corr_18: -5.734847878713722e-22 - Sys_corr_eff_1: -0.6836619249712568 - Sys_corr_eff_2: -0.392233501227214 - Sys_corr_eff_3: 0.03296237857495699 - Sys_corr_eff_4: 0.10178108762311289 - Sys_corr_eff_5: -0.05138924357372295 - Sys_corr_eff_6: -0.012277765277439392 - Sys_corr_eff_7: -0.020358525812506963 - Sys_corr_eff_8: 0.00629879708681207 - Sys_corr_eff_9: -0.0010784302774110243 - Sys_corr_eff_10: -0.011828962478375915 - Sys_corr_eff_11: 0.002028423429685749 - Sys_corr_eff_12: -0.002080938219324983 - Sys_corr_eff_13: -0.0019725947647171783 - Sys_corr_eff_14: 0.00029370498383602566 - Sys_corr_eff_15: -0.0002717939599717559 - Sys_corr_eff_16: 0.00013270513909386416 - Sys_corr_eff_17: 3.6750011923893616e-06 - Sys_corr_eff_18: 6.170727240084905e-05 - Sys_back_corr: 0.16484780389801987 - Sys_back_unc: 0.16484780389801987 - Sys_fsr_corr: 0.00867620020515894 - Sys_fsr_unc: 0.00867620020515894 - Sys_clos_corr: 0.16484780389801987 - Sys_clos_unc: 0.16484780389801987 - Sys_align_corr: 0.06940960164127152 - Sys_align_unc: 0.06940960164127152 +- Stat_corr_1: -7.90626798e-13 + Stat_corr_2: -1.41513014e-09 + Stat_corr_3: -7.54162143e-05 + Stat_corr_4: 7.32735378e-05 + Stat_corr_5: -1.50925050e-02 + Stat_corr_6: 1.28244357e-01 + Stat_corr_7: 2.88512329e-01 + Stat_corr_8: -1.62262910e-01 + Stat_corr_9: 1.51787304e-02 + Stat_corr_10: 1.57707391e-01 + Stat_corr_11: -2.86421318e-01 + Stat_corr_12: 1.28910000e-01 + Stat_corr_13: -9.05857548e-11 + Stat_corr_14: 5.48519815e-11 + Stat_corr_15: 1.53403190e-15 + Stat_corr_16: 1.22220041e-15 + Stat_corr_17: -5.99192307e-22 + Stat_corr_18: -5.73484788e-22 + Sys_corr_eff_1: -6.83661925e-01 + Sys_corr_eff_2: -3.92233501e-01 + Sys_corr_eff_3: 3.29623786e-02 + Sys_corr_eff_4: 1.01781088e-01 + Sys_corr_eff_5: -5.13892436e-02 + Sys_corr_eff_6: -1.22777653e-02 + Sys_corr_eff_7: -2.03585258e-02 + Sys_corr_eff_8: 6.29879709e-03 + Sys_corr_eff_9: -1.07843028e-03 + Sys_corr_eff_10: -1.18289625e-02 + Sys_corr_eff_11: 2.02842343e-03 + Sys_corr_eff_12: -2.08093822e-03 + Sys_corr_eff_13: -1.97259476e-03 + Sys_corr_eff_14: 2.93704984e-04 + Sys_corr_eff_15: -2.71793960e-04 + Sys_corr_eff_16: 1.32705139e-04 + Sys_corr_eff_17: 3.67500119e-06 + Sys_corr_eff_18: 6.17072724e-05 + Sys_back_corr: 1.64847804e-01 + Sys_back_unc: 1.64847804e-01 + Sys_fsr_corr: 8.67620021e-03 + Sys_fsr_unc: 8.67620021e-03 + Sys_clos_corr: 1.64847804e-01 + Sys_clos_unc: 1.64847804e-01 + Sys_align_corr: 6.94096016e-02 + Sys_align_unc: 6.94096016e-02 Luminosity: 2.5 -- Stat_corr_1: 9.642694375638249e-15 - Stat_corr_2: 2.2656067627495426e-11 - Stat_corr_3: 2.1666447669931026e-06 - Stat_corr_4: -2.0690776111672352e-06 - Stat_corr_5: -0.04496358259426575 - Stat_corr_6: 0.22572035942135704 - Stat_corr_7: 0.21954077048825424 - Stat_corr_8: 0.1570871098830905 - Stat_corr_9: -0.0451498934445848 - Stat_corr_10: 0.16245007360346717 - Stat_corr_11: 0.2124816144167037 - Stat_corr_12: -0.22489355219536425 - Stat_corr_13: 3.1901706706654253e-09 - Stat_corr_14: -2.085429712640692e-09 - Stat_corr_15: -1.0222932328043865e-13 - Stat_corr_16: -8.32255785742252e-14 - Stat_corr_17: 6.318439218977049e-20 - Stat_corr_18: 6.045955145065565e-20 - Sys_corr_eff_1: -0.8105627536286749 - Sys_corr_eff_2: -0.30120120596017197 - Sys_corr_eff_3: 0.09984497290974238 - Sys_corr_eff_4: 0.013964842422409435 - Sys_corr_eff_5: -0.06858045306704184 - Sys_corr_eff_6: 0.03846651456974278 - Sys_corr_eff_7: 0.0035576846012133376 - Sys_corr_eff_8: 0.0035235856568501017 - Sys_corr_eff_9: 0.006731155044596309 - Sys_corr_eff_10: 0.012604894842799785 - Sys_corr_eff_11: -0.0011049394599350788 - Sys_corr_eff_12: -0.0006153457323867975 - Sys_corr_eff_13: 0.000799681266998574 - Sys_corr_eff_14: 0.0002946538169780549 - Sys_corr_eff_15: -0.00027827122446817296 - Sys_corr_eff_16: -0.0005080493782541128 - Sys_corr_eff_17: -6.921056037265543e-05 - Sys_corr_eff_18: -3.07118797526547e-05 - Sys_back_corr: 0.17119055172526318 - Sys_back_unc: 0.17119055172526318 - Sys_fsr_corr: 0.14265879310438598 - Sys_fsr_unc: 0.14265879310438598 - Sys_clos_corr: 0.057063517241754395 - Sys_clos_unc: 0.057063517241754395 - Sys_align_corr: 0.12363762069046785 - Sys_align_unc: 0.12363762069046785 +- Stat_corr_1: 9.64269438e-15 + Stat_corr_2: 2.26560676e-11 + Stat_corr_3: 2.16664477e-06 + Stat_corr_4: -2.06907761e-06 + Stat_corr_5: -4.49635826e-02 + Stat_corr_6: 2.25720359e-01 + Stat_corr_7: 2.19540770e-01 + Stat_corr_8: 1.57087110e-01 + Stat_corr_9: -4.51498934e-02 + Stat_corr_10: 1.62450074e-01 + Stat_corr_11: 2.12481614e-01 + Stat_corr_12: -2.24893552e-01 + Stat_corr_13: 3.19017067e-09 + Stat_corr_14: -2.08542971e-09 + Stat_corr_15: -1.02229323e-13 + Stat_corr_16: -8.32255786e-14 + Stat_corr_17: 6.31843922e-20 + Stat_corr_18: 6.04595515e-20 + Sys_corr_eff_1: -8.10562754e-01 + Sys_corr_eff_2: -3.01201206e-01 + Sys_corr_eff_3: 9.98449729e-02 + Sys_corr_eff_4: 1.39648424e-02 + Sys_corr_eff_5: -6.85804531e-02 + Sys_corr_eff_6: 3.84665146e-02 + Sys_corr_eff_7: 3.55768460e-03 + Sys_corr_eff_8: 3.52358566e-03 + Sys_corr_eff_9: 6.73115504e-03 + Sys_corr_eff_10: 1.26048948e-02 + Sys_corr_eff_11: -1.10493946e-03 + Sys_corr_eff_12: -6.15345732e-04 + Sys_corr_eff_13: 7.99681267e-04 + Sys_corr_eff_14: 2.94653817e-04 + Sys_corr_eff_15: -2.78271224e-04 + Sys_corr_eff_16: -5.08049378e-04 + Sys_corr_eff_17: -6.92105604e-05 + Sys_corr_eff_18: -3.07118798e-05 + Sys_back_corr: 1.71190552e-01 + Sys_back_unc: 1.71190552e-01 + Sys_fsr_corr: 1.42658793e-01 + Sys_fsr_unc: 1.42658793e-01 + Sys_clos_corr: 5.70635172e-02 + Sys_clos_unc: 5.70635172e-02 + Sys_align_corr: 1.23637621e-01 + Sys_align_unc: 1.23637621e-01 Luminosity: 2.7 -- Stat_corr_1: -1.2540950465459448e-16 - Stat_corr_2: -3.961486760939902e-13 - Stat_corr_3: -7.02322695606985e-08 - Stat_corr_4: 6.58748932109689e-08 - Stat_corr_5: -0.10796348196622813 - Stat_corr_6: 0.28034787940827705 - Stat_corr_7: -0.02037124039856631 - Stat_corr_8: 0.19133445176916936 - Stat_corr_9: 0.10791960532039237 - Stat_corr_10: -0.18610365879549381 - Stat_corr_11: 0.029274291633067415 - Stat_corr_12: 0.2749307113139788 - Stat_corr_13: -9.428465484115461e-08 - Stat_corr_14: 6.645600089236095e-08 - Stat_corr_15: 5.6333558551385245e-12 - Stat_corr_16: 4.6828388491056085e-12 - Stat_corr_17: -5.4001557688445924e-18 - Stat_corr_18: -5.166144105511849e-18 - Sys_corr_eff_1: -0.8835275841915565 - Sys_corr_eff_2: -0.14765782779869052 - Sys_corr_eff_3: 0.1109792164166185 - Sys_corr_eff_4: -0.07800150401540201 - Sys_corr_eff_5: -0.0072385271558775485 - Sys_corr_eff_6: 0.022799054177728484 - Sys_corr_eff_7: 0.026727496653901995 - Sys_corr_eff_8: -0.012773170634551008 - Sys_corr_eff_9: -0.007215848161888245 - Sys_corr_eff_10: -0.008948624504015385 - Sys_corr_eff_11: 0.002209102141831233 - Sys_corr_eff_12: 0.004460676238357655 - Sys_corr_eff_13: -0.00032340902630405445 - Sys_corr_eff_14: -0.0002030562771783426 - Sys_corr_eff_15: 6.84546707548104e-05 - Sys_corr_eff_16: 0.00032440538288633244 - Sys_corr_eff_17: -2.440295710987376e-05 - Sys_corr_eff_18: -2.4278153280834863e-05 - Sys_back_corr: 0.1402758432517873 - Sys_back_unc: 0.1402758432517873 - Sys_fsr_corr: 0.030059109268240132 - Sys_fsr_unc: 0.030059109268240132 - Sys_clos_corr: 0.010019703089413377 - Sys_clos_unc: 0.010019703089413377 - Sys_align_corr: 0.10019703089413379 - Sys_align_unc: 0.10019703089413379 +- Stat_corr_1: -1.25409505e-16 + Stat_corr_2: -3.96148676e-13 + Stat_corr_3: -7.02322696e-08 + Stat_corr_4: 6.58748932e-08 + Stat_corr_5: -1.07963482e-01 + Stat_corr_6: 2.80347879e-01 + Stat_corr_7: -2.03712404e-02 + Stat_corr_8: 1.91334452e-01 + Stat_corr_9: 1.07919605e-01 + Stat_corr_10: -1.86103659e-01 + Stat_corr_11: 2.92742916e-02 + Stat_corr_12: 2.74930711e-01 + Stat_corr_13: -9.42846548e-08 + Stat_corr_14: 6.64560009e-08 + Stat_corr_15: 5.63335586e-12 + Stat_corr_16: 4.68283885e-12 + Stat_corr_17: -5.40015577e-18 + Stat_corr_18: -5.16614411e-18 + Sys_corr_eff_1: -8.83527584e-01 + Sys_corr_eff_2: -1.47657828e-01 + Sys_corr_eff_3: 1.10979216e-01 + Sys_corr_eff_4: -7.80015040e-02 + Sys_corr_eff_5: -7.23852716e-03 + Sys_corr_eff_6: 2.27990542e-02 + Sys_corr_eff_7: 2.67274967e-02 + Sys_corr_eff_8: -1.27731706e-02 + Sys_corr_eff_9: -7.21584816e-03 + Sys_corr_eff_10: -8.94862450e-03 + Sys_corr_eff_11: 2.20910214e-03 + Sys_corr_eff_12: 4.46067624e-03 + Sys_corr_eff_13: -3.23409026e-04 + Sys_corr_eff_14: -2.03056277e-04 + Sys_corr_eff_15: 6.84546708e-05 + Sys_corr_eff_16: 3.24405383e-04 + Sys_corr_eff_17: -2.44029571e-05 + Sys_corr_eff_18: -2.42781533e-05 + Sys_back_corr: 1.40275843e-01 + Sys_back_unc: 1.40275843e-01 + Sys_fsr_corr: 3.00591093e-02 + Sys_fsr_unc: 3.00591093e-02 + Sys_clos_corr: 1.00197031e-02 + Sys_clos_unc: 1.00197031e-02 + Sys_align_corr: 1.00197031e-01 + Sys_align_unc: 1.00197031e-01 Luminosity: 2.8 -- Stat_corr_1: 2.0802072592773145e-18 - Stat_corr_2: 8.765054404939595e-15 - Stat_corr_3: 2.8561798663857088e-09 - Stat_corr_4: -2.631811916462984e-09 - Stat_corr_5: -0.19865469386591697 - Stat_corr_6: 0.2089782108594244 - Stat_corr_7: -0.19472873307896107 - Stat_corr_8: -0.07477316753991087 - Stat_corr_9: -0.1967540750351015 - Stat_corr_10: -0.08359639764174102 - Stat_corr_11: -0.19555772763644916 - Stat_corr_12: -0.198521448042755 - Stat_corr_13: 2.199968139127548e-06 - Stat_corr_14: -1.6689489216285003e-06 - Stat_corr_15: -2.4025577115593355e-10 - Stat_corr_16: -2.0374421404232745e-10 - Stat_corr_17: 3.4896977844083e-16 - Stat_corr_18: 3.337792471254096e-16 - Sys_corr_eff_1: -0.9351281112026583 - Sys_corr_eff_2: 0.012544207251757988 - Sys_corr_eff_3: 0.08453633681068617 - Sys_corr_eff_4: -0.08483210936646808 - Sys_corr_eff_5: 0.03628698462465042 - Sys_corr_eff_6: -0.026460814206469837 - Sys_corr_eff_7: 0.0027319878037050066 - Sys_corr_eff_8: 0.004802838905870498 - Sys_corr_eff_9: 0.006149478877560107 - Sys_corr_eff_10: -0.0037936421078335948 - Sys_corr_eff_11: -0.0052475812803048595 - Sys_corr_eff_12: -0.006619309987439169 - Sys_corr_eff_13: -3.954556397768321e-05 - Sys_corr_eff_14: -0.00031734477442854424 - Sys_corr_eff_15: -1.2713146349907807e-05 - Sys_corr_eff_16: -0.00019136334536043814 - Sys_corr_eff_17: -3.376050936401268e-06 - Sys_corr_eff_18: -0.00017109086934355853 - Sys_back_corr: 0.15644737533752365 - Sys_back_unc: 0.15644737533752365 - Sys_fsr_corr: 0.03128947506750473 - Sys_fsr_unc: 0.03128947506750473 - Sys_clos_corr: 0.010429825022501577 - Sys_clos_unc: 0.010429825022501577 - Sys_align_corr: 0.06257895013500946 - Sys_align_unc: 0.06257895013500946 +- Stat_corr_1: 2.08020726e-18 + Stat_corr_2: 8.76505440e-15 + Stat_corr_3: 2.85617987e-09 + Stat_corr_4: -2.63181192e-09 + Stat_corr_5: -1.98654694e-01 + Stat_corr_6: 2.08978211e-01 + Stat_corr_7: -1.94728733e-01 + Stat_corr_8: -7.47731675e-02 + Stat_corr_9: -1.96754075e-01 + Stat_corr_10: -8.35963976e-02 + Stat_corr_11: -1.95557728e-01 + Stat_corr_12: -1.98521448e-01 + Stat_corr_13: 2.19996814e-06 + Stat_corr_14: -1.66894892e-06 + Stat_corr_15: -2.40255771e-10 + Stat_corr_16: -2.03744214e-10 + Stat_corr_17: 3.48969778e-16 + Stat_corr_18: 3.33779247e-16 + Sys_corr_eff_1: -9.35128111e-01 + Sys_corr_eff_2: 1.25442073e-02 + Sys_corr_eff_3: 8.45363368e-02 + Sys_corr_eff_4: -8.48321094e-02 + Sys_corr_eff_5: 3.62869846e-02 + Sys_corr_eff_6: -2.64608142e-02 + Sys_corr_eff_7: 2.73198780e-03 + Sys_corr_eff_8: 4.80283891e-03 + Sys_corr_eff_9: 6.14947888e-03 + Sys_corr_eff_10: -3.79364211e-03 + Sys_corr_eff_11: -5.24758128e-03 + Sys_corr_eff_12: -6.61930999e-03 + Sys_corr_eff_13: -3.95455640e-05 + Sys_corr_eff_14: -3.17344774e-04 + Sys_corr_eff_15: -1.27131463e-05 + Sys_corr_eff_16: -1.91363345e-04 + Sys_corr_eff_17: -3.37605094e-06 + Sys_corr_eff_18: -1.71090869e-04 + Sys_back_corr: 1.56447375e-01 + Sys_back_unc: 1.56447375e-01 + Sys_fsr_corr: 3.12894751e-02 + Sys_fsr_unc: 3.12894751e-02 + Sys_clos_corr: 1.04298250e-02 + Sys_clos_unc: 1.04298250e-02 + Sys_align_corr: 6.25789501e-02 + Sys_align_unc: 6.25789501e-02 Luminosity: 2.9 -- Stat_corr_1: -4.1961895380279253e-20 - Stat_corr_2: -1.623067732925441e-16 - Stat_corr_3: -1.372130998941399e-10 - Stat_corr_4: 1.2426332397919318e-10 - Stat_corr_5: -0.2817229158907531 - Stat_corr_6: 0.010027343119953996 - Stat_corr_7: -0.12301304507666243 - Stat_corr_8: -0.18407243150901625 - Stat_corr_9: 0.27594420546525356 - Stat_corr_10: 0.1802645079427044 - Stat_corr_11: 0.11347343840268735 - Stat_corr_12: -0.000244504056260413 - Stat_corr_13: -4.5098052185490576e-05 - Stat_corr_14: 3.685948361687264e-05 - Stat_corr_15: 9.095422989946742e-09 - Stat_corr_16: 7.872243112016702e-09 - Stat_corr_17: -2.0247722606930666e-14 - Stat_corr_18: -1.936225763473631e-14 - Sys_corr_eff_1: -0.926000174658213 - Sys_corr_eff_2: 0.17262509094290743 - Sys_corr_eff_3: 0.03505932493404931 - Sys_corr_eff_4: -0.03889319580079183 - Sys_corr_eff_5: 0.044347945713104804 - Sys_corr_eff_6: -0.021535770489549983 - Sys_corr_eff_7: -0.025029209692992976 - Sys_corr_eff_8: -0.001503099881209495 - Sys_corr_eff_9: -0.0006860045695676303 - Sys_corr_eff_10: 0.008493600997024333 - Sys_corr_eff_11: 0.007821468277464588 - Sys_corr_eff_12: 0.0014399826774738915 - Sys_corr_eff_13: -0.0007581661192825266 - Sys_corr_eff_14: -0.00014096470048326892 - Sys_corr_eff_15: -0.0008460266083619346 - Sys_corr_eff_16: -1.1699050788888892e-05 - Sys_corr_eff_17: 6.488707675290369e-05 - Sys_corr_eff_18: 4.058812253265245e-05 - Sys_back_corr: 0.11309465858297643 - Sys_back_unc: 0.11309465858297643 - Sys_fsr_corr: 0.04112533039380961 - Sys_fsr_unc: 0.04112533039380961 - Sys_clos_corr: 0.06168799559071441 - Sys_clos_unc: 0.06168799559071441 - Sys_align_corr: 0.07196932818916682 - Sys_align_unc: 0.07196932818916682 +- Stat_corr_1: -4.19618954e-20 + Stat_corr_2: -1.62306773e-16 + Stat_corr_3: -1.37213100e-10 + Stat_corr_4: 1.24263324e-10 + Stat_corr_5: -2.81722916e-01 + Stat_corr_6: 1.00273431e-02 + Stat_corr_7: -1.23013045e-01 + Stat_corr_8: -1.84072432e-01 + Stat_corr_9: 2.75944205e-01 + Stat_corr_10: 1.80264508e-01 + Stat_corr_11: 1.13473438e-01 + Stat_corr_12: -2.44504056e-04 + Stat_corr_13: -4.50980522e-05 + Stat_corr_14: 3.68594836e-05 + Stat_corr_15: 9.09542299e-09 + Stat_corr_16: 7.87224311e-09 + Stat_corr_17: -2.02477226e-14 + Stat_corr_18: -1.93622576e-14 + Sys_corr_eff_1: -9.26000175e-01 + Sys_corr_eff_2: 1.72625091e-01 + Sys_corr_eff_3: 3.50593249e-02 + Sys_corr_eff_4: -3.88931958e-02 + Sys_corr_eff_5: 4.43479457e-02 + Sys_corr_eff_6: -2.15357705e-02 + Sys_corr_eff_7: -2.50292097e-02 + Sys_corr_eff_8: -1.50309988e-03 + Sys_corr_eff_9: -6.86004570e-04 + Sys_corr_eff_10: 8.49360100e-03 + Sys_corr_eff_11: 7.82146828e-03 + Sys_corr_eff_12: 1.43998268e-03 + Sys_corr_eff_13: -7.58166119e-04 + Sys_corr_eff_14: -1.40964700e-04 + Sys_corr_eff_15: -8.46026608e-04 + Sys_corr_eff_16: -1.16990508e-05 + Sys_corr_eff_17: 6.48870768e-05 + Sys_corr_eff_18: 4.05881225e-05 + Sys_back_corr: 1.13094659e-01 + Sys_back_unc: 1.13094659e-01 + Sys_fsr_corr: 4.11253304e-02 + Sys_fsr_unc: 4.11253304e-02 + Sys_clos_corr: 6.16879956e-02 + Sys_clos_unc: 6.16879956e-02 + Sys_align_corr: 7.19693282e-02 + Sys_align_unc: 7.19693282e-02 Luminosity: 2.9 -- Stat_corr_1: 1.2863655482538039e-21 - Stat_corr_2: 1.7565892452605762e-17 - Stat_corr_3: 7.378713134401054e-12 - Stat_corr_4: -6.565423988708316e-12 - Stat_corr_5: -0.29515395918265686 - Stat_corr_6: -0.1738021325685226 - Stat_corr_7: 0.09358752047630631 - Stat_corr_8: 0.02755469078482307 - Stat_corr_9: -0.28388053911844635 - Stat_corr_10: 0.038204226997987714 - Stat_corr_11: 0.1014069873062852 - Stat_corr_12: 0.17557568128245152 - Stat_corr_13: 0.0008064258631360913 - Stat_corr_14: -0.0007095170374011771 - Stat_corr_15: -2.975340571329803e-07 - Stat_corr_16: -2.627168835745595e-07 - Stat_corr_17: 1.0038187298169968e-12 - Stat_corr_18: 9.597240155317563e-13 - Sys_corr_eff_1: -0.820365434834143 - Sys_corr_eff_2: 0.3039857352787898 - Sys_corr_eff_3: -0.012456654932674371 - Sys_corr_eff_4: 0.028182708008579985 - Sys_corr_eff_5: 0.02922737036178337 - Sys_corr_eff_6: 0.005933230770093958 - Sys_corr_eff_7: -0.017237867529966554 - Sys_corr_eff_8: 0.00797551170272473 - Sys_corr_eff_9: -0.003998736607546544 - Sys_corr_eff_10: -0.002539185114900618 - Sys_corr_eff_11: -0.007221078531369528 - Sys_corr_eff_12: 0.0066141482114967995 - Sys_corr_eff_13: 0.0009078912575396411 - Sys_corr_eff_14: 0.0009112782939617954 - Sys_corr_eff_15: -0.00011888867802792844 - Sys_corr_eff_16: -0.00015936718568957062 - Sys_corr_eff_17: 2.3447048284567955e-05 - Sys_corr_eff_18: 0.00012024968825035571 - Sys_back_corr: 0.10484979351434129 - Sys_back_unc: 0.10484979351434129 - Sys_fsr_corr: 0.07625439528315729 - Sys_fsr_unc: 0.07625439528315729 - Sys_clos_corr: 0.37174017700539186 - Sys_clos_unc: 0.37174017700539186 - Sys_align_corr: 0.09531799410394663 - Sys_align_unc: 0.09531799410394663 +- Stat_corr_1: 1.28636555e-21 + Stat_corr_2: 1.75658925e-17 + Stat_corr_3: 7.37871313e-12 + Stat_corr_4: -6.56542399e-12 + Stat_corr_5: -2.95153959e-01 + Stat_corr_6: -1.73802133e-01 + Stat_corr_7: 9.35875205e-02 + Stat_corr_8: 2.75546908e-02 + Stat_corr_9: -2.83880539e-01 + Stat_corr_10: 3.82042270e-02 + Stat_corr_11: 1.01406987e-01 + Stat_corr_12: 1.75575681e-01 + Stat_corr_13: 8.06425863e-04 + Stat_corr_14: -7.09517037e-04 + Stat_corr_15: -2.97534057e-07 + Stat_corr_16: -2.62716884e-07 + Stat_corr_17: 1.00381873e-12 + Stat_corr_18: 9.59724016e-13 + Sys_corr_eff_1: -8.20365435e-01 + Sys_corr_eff_2: 3.03985735e-01 + Sys_corr_eff_3: -1.24566549e-02 + Sys_corr_eff_4: 2.81827080e-02 + Sys_corr_eff_5: 2.92273704e-02 + Sys_corr_eff_6: 5.93323077e-03 + Sys_corr_eff_7: -1.72378675e-02 + Sys_corr_eff_8: 7.97551170e-03 + Sys_corr_eff_9: -3.99873661e-03 + Sys_corr_eff_10: -2.53918511e-03 + Sys_corr_eff_11: -7.22107853e-03 + Sys_corr_eff_12: 6.61414821e-03 + Sys_corr_eff_13: 9.07891258e-04 + Sys_corr_eff_14: 9.11278294e-04 + Sys_corr_eff_15: -1.18888678e-04 + Sys_corr_eff_16: -1.59367186e-04 + Sys_corr_eff_17: 2.34470483e-05 + Sys_corr_eff_18: 1.20249688e-04 + Sys_back_corr: 1.04849794e-01 + Sys_back_unc: 1.04849794e-01 + Sys_fsr_corr: 7.62543953e-02 + Sys_fsr_unc: 7.62543953e-02 + Sys_clos_corr: 3.71740177e-01 + Sys_clos_unc: 3.71740177e-01 + Sys_align_corr: 9.53179941e-02 + Sys_align_unc: 9.53179941e-02 Luminosity: 2.7 -- Stat_corr_1: 1.742107958067651e-22 - Stat_corr_2: 4.851577442331139e-18 - Stat_corr_3: -4.384678771377062e-13 - Stat_corr_4: 3.7282449409790633e-13 - Stat_corr_5: -0.1953214580129439 - Stat_corr_6: -0.18169272373658873 - Stat_corr_7: 0.16902724313167253 - Stat_corr_8: 0.1756120769123402 - Stat_corr_9: 0.18032074212916852 - Stat_corr_10: -0.17366046391203335 - Stat_corr_11: -0.16376977220340205 - Stat_corr_12: -0.17201610407567794 - Stat_corr_13: -0.013458072589523936 - Stat_corr_14: 0.0127572220989652 - Stat_corr_15: 9.162709517072488e-06 - Stat_corr_16: 8.25682332430847e-06 - Stat_corr_17: -4.7296215654466916e-11 - Stat_corr_18: -4.5209140003820656e-11 - Sys_corr_eff_1: -0.6664136569372208 - Sys_corr_eff_2: 0.38166631434788895 - Sys_corr_eff_3: -0.023046020247098835 - Sys_corr_eff_4: 0.05170916708345095 - Sys_corr_eff_5: -0.0012337028592474722 - Sys_corr_eff_6: 0.003793694083914065 - Sys_corr_eff_7: 0.015322377037974198 - Sys_corr_eff_8: 0.0015017003968971255 - Sys_corr_eff_9: 0.0019931234142560035 - Sys_corr_eff_10: 0.005767487071699514 - Sys_corr_eff_11: 0.0005036680546995866 - Sys_corr_eff_12: -0.0018775420119125908 - Sys_corr_eff_13: -0.0023026012237248846 - Sys_corr_eff_14: 0.0008845874700766416 - Sys_corr_eff_15: 0.0017797865322882085 - Sys_corr_eff_16: 0.0007186868320378038 - Sys_corr_eff_17: 0.00019816222336338916 - Sys_corr_eff_18: -1.3043838528065851e-05 - Sys_back_corr: 0.05865450749942412 - Sys_back_unc: 0.05865450749942412 - Sys_fsr_corr: 0.13406744571296944 - Sys_fsr_unc: 0.13406744571296944 - Sys_clos_corr: 0.25137646071181763 - Sys_clos_unc: 0.25137646071181763 - Sys_align_corr: 0.07541293821354529 - Sys_align_unc: 0.07541293821354529 +- Stat_corr_1: 1.74210796e-22 + Stat_corr_2: 4.85157744e-18 + Stat_corr_3: -4.38467877e-13 + Stat_corr_4: 3.72824494e-13 + Stat_corr_5: -1.95321458e-01 + Stat_corr_6: -1.81692724e-01 + Stat_corr_7: 1.69027243e-01 + Stat_corr_8: 1.75612077e-01 + Stat_corr_9: 1.80320742e-01 + Stat_corr_10: -1.73660464e-01 + Stat_corr_11: -1.63769772e-01 + Stat_corr_12: -1.72016104e-01 + Stat_corr_13: -1.34580726e-02 + Stat_corr_14: 1.27572221e-02 + Stat_corr_15: 9.16270952e-06 + Stat_corr_16: 8.25682332e-06 + Stat_corr_17: -4.72962157e-11 + Stat_corr_18: -4.52091400e-11 + Sys_corr_eff_1: -6.66413657e-01 + Sys_corr_eff_2: 3.81666314e-01 + Sys_corr_eff_3: -2.30460202e-02 + Sys_corr_eff_4: 5.17091671e-02 + Sys_corr_eff_5: -1.23370286e-03 + Sys_corr_eff_6: 3.79369408e-03 + Sys_corr_eff_7: 1.53223770e-02 + Sys_corr_eff_8: 1.50170040e-03 + Sys_corr_eff_9: 1.99312341e-03 + Sys_corr_eff_10: 5.76748707e-03 + Sys_corr_eff_11: 5.03668055e-04 + Sys_corr_eff_12: -1.87754201e-03 + Sys_corr_eff_13: -2.30260122e-03 + Sys_corr_eff_14: 8.84587470e-04 + Sys_corr_eff_15: 1.77978653e-03 + Sys_corr_eff_16: 7.18686832e-04 + Sys_corr_eff_17: 1.98162223e-04 + Sys_corr_eff_18: -1.30438385e-05 + Sys_back_corr: 5.86545075e-02 + Sys_back_unc: 5.86545075e-02 + Sys_fsr_corr: 1.34067446e-01 + Sys_fsr_unc: 1.34067446e-01 + Sys_clos_corr: 2.51376461e-01 + Sys_clos_unc: 2.51376461e-01 + Sys_align_corr: 7.54129382e-02 + Sys_align_unc: 7.54129382e-02 Luminosity: 2.4 -- Stat_corr_1: 9.128755327404784e-24 - Stat_corr_2: 1.7874039849354458e-19 - Stat_corr_3: 1.2027939401149128e-13 - Stat_corr_4: 1.2870738413582852e-13 - Stat_corr_5: -0.00830599522465316 - Stat_corr_6: -0.007959526273075206 - Stat_corr_7: 0.007570699185680874 - Stat_corr_8: 0.00804331017196593 - Stat_corr_9: 0.009163135830580656 - Stat_corr_10: -0.008128411938796072 - Stat_corr_11: -0.007847894916882465 - Stat_corr_12: -0.008445284218161878 - Stat_corr_13: 0.2794748203022618 - Stat_corr_14: -0.28523025874527447 - Stat_corr_15: -0.0003483870002050452 - Stat_corr_16: -0.0003202822596324999 - Stat_corr_17: 2.725953808707979e-09 - Stat_corr_18: 2.605131037748569e-09 - Sys_corr_eff_1: -0.5065437925488029 - Sys_corr_eff_2: 0.3900685341113259 - Sys_corr_eff_3: -0.05109729970014348 - Sys_corr_eff_4: 0.033332129676187185 - Sys_corr_eff_5: -0.03643494498425705 - Sys_corr_eff_6: -0.01338936481370671 - Sys_corr_eff_7: 0.004325061734697713 - Sys_corr_eff_8: -0.005726375341641193 - Sys_corr_eff_9: -0.002150546631660021 - Sys_corr_eff_10: -0.00483995598348906 - Sys_corr_eff_11: 0.003997001040944814 - Sys_corr_eff_12: -0.0022261400083735633 - Sys_corr_eff_13: 0.004701658123974357 - Sys_corr_eff_14: 0.00029232469932541334 - Sys_corr_eff_15: 0.0007169076386007492 - Sys_corr_eff_16: -0.00048721614019907024 - Sys_corr_eff_17: -8.880271335833906e-05 - Sys_corr_eff_18: 1.3234307480893514e-05 - Sys_back_corr: 0.049002499936227746 - Sys_back_unc: 0.049002499936227746 - Sys_fsr_corr: 0.0350017856687341 - Sys_fsr_unc: 0.0350017856687341 - Sys_clos_corr: 0.2030103568786578 - Sys_clos_unc: 0.2030103568786578 - Sys_align_corr: 0.0700035713374682 - Sys_align_unc: 0.0700035713374682 +- Stat_corr_1: 9.12875533e-24 + Stat_corr_2: 1.78740398e-19 + Stat_corr_3: 1.20279394e-13 + Stat_corr_4: 1.28707384e-13 + Stat_corr_5: -8.30599522e-03 + Stat_corr_6: -7.95952627e-03 + Stat_corr_7: 7.57069919e-03 + Stat_corr_8: 8.04331017e-03 + Stat_corr_9: 9.16313583e-03 + Stat_corr_10: -8.12841194e-03 + Stat_corr_11: -7.84789492e-03 + Stat_corr_12: -8.44528422e-03 + Stat_corr_13: 2.79474820e-01 + Stat_corr_14: -2.85230259e-01 + Stat_corr_15: -3.48387000e-04 + Stat_corr_16: -3.20282260e-04 + Stat_corr_17: 2.72595381e-09 + Stat_corr_18: 2.60513104e-09 + Sys_corr_eff_1: -5.06543793e-01 + Sys_corr_eff_2: 3.90068534e-01 + Sys_corr_eff_3: -5.10972997e-02 + Sys_corr_eff_4: 3.33321297e-02 + Sys_corr_eff_5: -3.64349450e-02 + Sys_corr_eff_6: -1.33893648e-02 + Sys_corr_eff_7: 4.32506173e-03 + Sys_corr_eff_8: -5.72637534e-03 + Sys_corr_eff_9: -2.15054663e-03 + Sys_corr_eff_10: -4.83995598e-03 + Sys_corr_eff_11: 3.99700104e-03 + Sys_corr_eff_12: -2.22614001e-03 + Sys_corr_eff_13: 4.70165812e-03 + Sys_corr_eff_14: 2.92324699e-04 + Sys_corr_eff_15: 7.16907639e-04 + Sys_corr_eff_16: -4.87216140e-04 + Sys_corr_eff_17: -8.88027134e-05 + Sys_corr_eff_18: 1.32343075e-05 + Sys_back_corr: 4.90024999e-02 + Sys_back_unc: 4.90024999e-02 + Sys_fsr_corr: 3.50017857e-02 + Sys_fsr_unc: 3.50017857e-02 + Sys_clos_corr: 2.03010357e-01 + Sys_clos_unc: 2.03010357e-01 + Sys_align_corr: 7.00035713e-02 + Sys_align_unc: 7.00035713e-02 Luminosity: 2.0 -- Stat_corr_1: 2.553480633307866e-25 - Stat_corr_2: 3.156730172720299e-21 - Stat_corr_3: 5.746458019397644e-13 - Stat_corr_4: -4.948425732501273e-13 - Stat_corr_5: -0.0002799487855000972 - Stat_corr_6: -0.0002764392475335128 - Stat_corr_7: 0.0002688822045371208 - Stat_corr_8: 0.0002921752557062947 - Stat_corr_9: 0.0003695786200653746 - Stat_corr_10: -0.00030179678371524966 - Stat_corr_11: -0.0002983703575275834 - Stat_corr_12: -0.0003290183046733025 - Stat_corr_13: 0.29132553981514936 - Stat_corr_14: 0.2739137656338557 - Stat_corr_15: 0.007203450023561326 - Stat_corr_16: 0.006931937236569042 - Stat_corr_17: -1.2368866961791724e-07 - Stat_corr_18: -1.1816775529939928e-07 - Sys_corr_eff_1: -0.3578697902408213 - Sys_corr_eff_2: 0.35044229461408133 - Sys_corr_eff_3: -0.09670812885188398 - Sys_corr_eff_4: 0.001431967081007703 - Sys_corr_eff_5: -0.04318348568890288 - Sys_corr_eff_6: 0.011228285091139812 - Sys_corr_eff_7: -0.005926406051874989 - Sys_corr_eff_8: 0.005021393343846836 - Sys_corr_eff_9: -0.0029176381282607286 - Sys_corr_eff_10: 2.5370248912964434e-05 - Sys_corr_eff_11: -0.0011147672937447323 - Sys_corr_eff_12: 0.0006320317622124949 - Sys_corr_eff_13: -0.0012443980648907224 - Sys_corr_eff_14: -0.0031253464843930506 - Sys_corr_eff_15: 0.00019137290086906967 - Sys_corr_eff_16: -7.958871523727583e-06 - Sys_corr_eff_17: -0.00017682085765310945 - Sys_corr_eff_18: -8.050781231791048e-06 - Sys_back_corr: 0.05487148622007609 - Sys_back_unc: 0.05487148622007609 - Sys_fsr_corr: 0.09876867519613694 - Sys_fsr_unc: 0.09876867519613694 - Sys_clos_corr: 0.41153614665057064 - Sys_clos_unc: 0.41153614665057064 - Sys_align_corr: 0.09328152657412936 - Sys_align_unc: 0.09328152657412936 +- Stat_corr_1: 2.55348063e-25 + Stat_corr_2: 3.15673017e-21 + Stat_corr_3: 5.74645802e-13 + Stat_corr_4: -4.94842573e-13 + Stat_corr_5: -2.79948786e-04 + Stat_corr_6: -2.76439248e-04 + Stat_corr_7: 2.68882205e-04 + Stat_corr_8: 2.92175256e-04 + Stat_corr_9: 3.69578620e-04 + Stat_corr_10: -3.01796784e-04 + Stat_corr_11: -2.98370358e-04 + Stat_corr_12: -3.29018305e-04 + Stat_corr_13: 2.91325540e-01 + Stat_corr_14: 2.73913766e-01 + Stat_corr_15: 7.20345002e-03 + Stat_corr_16: 6.93193724e-03 + Stat_corr_17: -1.23688670e-07 + Stat_corr_18: -1.18167755e-07 + Sys_corr_eff_1: -3.57869790e-01 + Sys_corr_eff_2: 3.50442295e-01 + Sys_corr_eff_3: -9.67081289e-02 + Sys_corr_eff_4: 1.43196708e-03 + Sys_corr_eff_5: -4.31834857e-02 + Sys_corr_eff_6: 1.12282851e-02 + Sys_corr_eff_7: -5.92640605e-03 + Sys_corr_eff_8: 5.02139334e-03 + Sys_corr_eff_9: -2.91763813e-03 + Sys_corr_eff_10: 2.53702489e-05 + Sys_corr_eff_11: -1.11476729e-03 + Sys_corr_eff_12: 6.32031762e-04 + Sys_corr_eff_13: -1.24439806e-03 + Sys_corr_eff_14: -3.12534648e-03 + Sys_corr_eff_15: 1.91372901e-04 + Sys_corr_eff_16: -7.95887152e-06 + Sys_corr_eff_17: -1.76820858e-04 + Sys_corr_eff_18: -8.05078123e-06 + Sys_back_corr: 5.48714862e-02 + Sys_back_unc: 5.48714862e-02 + Sys_fsr_corr: 9.87686752e-02 + Sys_fsr_unc: 9.87686752e-02 + Sys_clos_corr: 4.11536147e-01 + Sys_clos_unc: 4.11536147e-01 + Sys_align_corr: 9.32815266e-02 + Sys_align_unc: 9.32815266e-02 Luminosity: 1.6 -- Stat_corr_1: 4.849911686302307e-27 - Stat_corr_2: 3.4764689635858045e-23 - Stat_corr_3: 1.8925854289926252e-14 - Stat_corr_4: -1.666277882556152e-14 - Stat_corr_5: -3.880283834203343e-06 - Stat_corr_6: -3.898840193999351e-06 - Stat_corr_7: 3.841197090144474e-06 - Stat_corr_8: 4.22768362761665e-06 - Stat_corr_9: 5.665806803764298e-06 - Stat_corr_10: -4.420954611170157e-06 - Stat_corr_11: -4.428817716299303e-06 - Stat_corr_12: -4.949852258644762e-06 - Stat_corr_13: 0.00927008887049233 - Stat_corr_14: 0.009580786843646886 - Stat_corr_15: -0.2111398768899782 - Stat_corr_16: -0.2127022004653871 - Stat_corr_17: 7.96179245145162e-06 - Stat_corr_18: 7.603925962849241e-06 - Sys_corr_eff_1: -0.2298392281296158 - Sys_corr_eff_2: 0.2817303339404751 - Sys_corr_eff_3: -0.13199714626734094 - Sys_corr_eff_4: -0.006398224468823808 - Sys_corr_eff_5: -0.013344765329848985 - Sys_corr_eff_6: 0.0206114965263546 - Sys_corr_eff_7: 0.013050089088445037 - Sys_corr_eff_8: 0.0012651159585653203 - Sys_corr_eff_9: 0.005698779412560327 - Sys_corr_eff_10: -0.0017066065756194296 - Sys_corr_eff_11: -0.00036446964091697696 - Sys_corr_eff_12: -0.0033277217938821853 - Sys_corr_eff_13: 0.0007275461949015636 - Sys_corr_eff_14: 0.00048780524205380534 - Sys_corr_eff_15: -0.002166872622680249 - Sys_corr_eff_16: 0.0007427991119152884 - Sys_corr_eff_17: 2.2922955990151e-05 - Sys_corr_eff_18: 0.00013116214004003172 - Sys_back_corr: 0.03684733436763099 - Sys_back_unc: 0.03684733436763099 - Sys_fsr_corr: 0.13510689268131365 - Sys_fsr_unc: 0.13510689268131365 - Sys_clos_corr: 0.11054200310289299 - Sys_clos_unc: 0.11054200310289299 - Sys_align_corr: 0.053223927419911436 - Sys_align_unc: 0.053223927419911436 +- Stat_corr_1: 4.84991169e-27 + Stat_corr_2: 3.47646896e-23 + Stat_corr_3: 1.89258543e-14 + Stat_corr_4: -1.66627788e-14 + Stat_corr_5: -3.88028383e-06 + Stat_corr_6: -3.89884019e-06 + Stat_corr_7: 3.84119709e-06 + Stat_corr_8: 4.22768363e-06 + Stat_corr_9: 5.66580680e-06 + Stat_corr_10: -4.42095461e-06 + Stat_corr_11: -4.42881772e-06 + Stat_corr_12: -4.94985226e-06 + Stat_corr_13: 9.27008887e-03 + Stat_corr_14: 9.58078684e-03 + Stat_corr_15: -2.11139877e-01 + Stat_corr_16: -2.12702200e-01 + Stat_corr_17: 7.96179245e-06 + Stat_corr_18: 7.60392596e-06 + Sys_corr_eff_1: -2.29839228e-01 + Sys_corr_eff_2: 2.81730334e-01 + Sys_corr_eff_3: -1.31997146e-01 + Sys_corr_eff_4: -6.39822447e-03 + Sys_corr_eff_5: -1.33447653e-02 + Sys_corr_eff_6: 2.06114965e-02 + Sys_corr_eff_7: 1.30500891e-02 + Sys_corr_eff_8: 1.26511596e-03 + Sys_corr_eff_9: 5.69877941e-03 + Sys_corr_eff_10: -1.70660658e-03 + Sys_corr_eff_11: -3.64469641e-04 + Sys_corr_eff_12: -3.32772179e-03 + Sys_corr_eff_13: 7.27546195e-04 + Sys_corr_eff_14: 4.87805242e-04 + Sys_corr_eff_15: -2.16687262e-03 + Sys_corr_eff_16: 7.42799112e-04 + Sys_corr_eff_17: 2.29229560e-05 + Sys_corr_eff_18: 1.31162140e-04 + Sys_back_corr: 3.68473344e-02 + Sys_back_unc: 3.68473344e-02 + Sys_fsr_corr: 1.35106893e-01 + Sys_fsr_unc: 1.35106893e-01 + Sys_clos_corr: 1.10542003e-01 + Sys_clos_unc: 1.10542003e-01 + Sys_align_corr: 5.32239274e-02 + Sys_align_unc: 5.32239274e-02 Luminosity: 1.2 -- Stat_corr_1: 3.057079295890237e-30 - Stat_corr_2: 9.183334634434956e-22 - Stat_corr_3: 4.269919579824388e-16 - Stat_corr_4: -3.84349989125983e-16 - Stat_corr_5: -3.6858144157064325e-08 - Stat_corr_6: -3.7683818531305225e-08 - Stat_corr_7: 3.76057149821433e-08 - Stat_corr_8: 4.192211866109966e-08 - Stat_corr_9: 5.9524172600672216e-08 - Stat_corr_10: -4.438111227130377e-08 - Stat_corr_11: -4.5050487286492426e-08 - Stat_corr_12: -5.103202421890407e-08 - Stat_corr_13: 0.00020207499311419256 - Stat_corr_14: 0.00022954614299281677 - Stat_corr_15: -0.21662213034340763 - Stat_corr_16: 0.20754386298000202 - Stat_corr_17: -0.00039888516140215274 - Stat_corr_18: -0.00038072260113991644 - Sys_corr_eff_1: -0.13415575201041452 - Sys_corr_eff_2: 0.1941467682346632 - Sys_corr_eff_3: -0.12570009052713516 - Sys_corr_eff_4: 0.013872285787290774 - Sys_corr_eff_5: 0.008463053890364943 - Sys_corr_eff_6: 0.0022265738276946788 - Sys_corr_eff_7: 0.012825953925439925 - Sys_corr_eff_8: -0.014007056721950621 - Sys_corr_eff_9: 0.002441090598974292 - Sys_corr_eff_10: -0.0018801906899054309 - Sys_corr_eff_11: -0.00012908056547432587 - Sys_corr_eff_12: -0.0005201015247175131 - Sys_corr_eff_13: -0.0036309321646268156 - Sys_corr_eff_14: 0.0007565082760974222 - Sys_corr_eff_15: -0.00039091649438614145 - Sys_corr_eff_16: -0.001124796874087644 - Sys_corr_eff_17: -0.00018278038699935445 - Sys_corr_eff_18: 3.6021112546485186e-05 - Sys_back_corr: 0.025137646071181765 - Sys_back_unc: 0.025137646071181765 - Sys_fsr_corr: 0.011172287142747452 - Sys_fsr_unc: 0.011172287142747452 - Sys_clos_corr: 0.20948038392651472 - Sys_clos_unc: 0.20948038392651472 - Sys_align_corr: 0.03630993321392922 - Sys_align_unc: 0.03630993321392922 +- Stat_corr_1: 3.05707930e-30 + Stat_corr_2: 9.18333463e-22 + Stat_corr_3: 4.26991958e-16 + Stat_corr_4: -3.84349989e-16 + Stat_corr_5: -3.68581442e-08 + Stat_corr_6: -3.76838185e-08 + Stat_corr_7: 3.76057150e-08 + Stat_corr_8: 4.19221187e-08 + Stat_corr_9: 5.95241726e-08 + Stat_corr_10: -4.43811123e-08 + Stat_corr_11: -4.50504873e-08 + Stat_corr_12: -5.10320242e-08 + Stat_corr_13: 2.02074993e-04 + Stat_corr_14: 2.29546143e-04 + Stat_corr_15: -2.16622130e-01 + Stat_corr_16: 2.07543863e-01 + Stat_corr_17: -3.98885161e-04 + Stat_corr_18: -3.80722601e-04 + Sys_corr_eff_1: -1.34155752e-01 + Sys_corr_eff_2: 1.94146768e-01 + Sys_corr_eff_3: -1.25700091e-01 + Sys_corr_eff_4: 1.38722858e-02 + Sys_corr_eff_5: 8.46305389e-03 + Sys_corr_eff_6: 2.22657383e-03 + Sys_corr_eff_7: 1.28259539e-02 + Sys_corr_eff_8: -1.40070567e-02 + Sys_corr_eff_9: 2.44109060e-03 + Sys_corr_eff_10: -1.88019069e-03 + Sys_corr_eff_11: -1.29080565e-04 + Sys_corr_eff_12: -5.20101525e-04 + Sys_corr_eff_13: -3.63093216e-03 + Sys_corr_eff_14: 7.56508276e-04 + Sys_corr_eff_15: -3.90916494e-04 + Sys_corr_eff_16: -1.12479687e-03 + Sys_corr_eff_17: -1.82780387e-04 + Sys_corr_eff_18: 3.60211125e-05 + Sys_back_corr: 2.51376461e-02 + Sys_back_unc: 2.51376461e-02 + Sys_fsr_corr: 1.11722871e-02 + Sys_fsr_unc: 1.11722871e-02 + Sys_clos_corr: 2.09480384e-01 + Sys_clos_unc: 2.09480384e-01 + Sys_align_corr: 3.63099332e-02 + Sys_align_unc: 3.63099332e-02 Luminosity: 0.8 -- Stat_corr_1: -4.20493010785787e-31 - Stat_corr_2: 5.059554613800844e-24 - Stat_corr_3: 1.2490427027398749e-18 - Stat_corr_4: -1.1359810231648024e-18 - Stat_corr_5: -6.552418403355323e-11 - Stat_corr_6: -6.778344901879436e-11 - Stat_corr_7: 6.822850464066743e-11 - Stat_corr_8: 7.671373908790388e-11 - Stat_corr_9: 1.1316802894234224e-10 - Stat_corr_10: -8.188213972089839e-11 - Stat_corr_11: -8.384826866719928e-11 - Stat_corr_12: -9.582882936073319e-11 - Stat_corr_13: 5.815617570478429e-07 - Stat_corr_14: 6.903753182192412e-07 - Stat_corr_15: -0.0011713895555181075 - Stat_corr_16: 0.0011680173217524215 - Stat_corr_17: 0.0723496388339437 - Stat_corr_18: 0.0690129940071316 - Sys_corr_eff_1: -0.04542081206058568 - Sys_corr_eff_2: 0.0810805537763011 - Sys_corr_eff_3: -0.0759838250159359 - Sys_corr_eff_4: 0.041523604839238226 - Sys_corr_eff_5: -0.006862316052407366 - Sys_corr_eff_6: 0.0031535528069786805 - Sys_corr_eff_7: -0.005351821008075232 - Sys_corr_eff_8: -0.0017372361683118149 - Sys_corr_eff_9: -0.00027923042916621504 - Sys_corr_eff_10: -0.0006423377300321236 - Sys_corr_eff_11: 0.00040652123432699695 - Sys_corr_eff_12: 0.0023720833711295087 - Sys_corr_eff_13: 0.00010874177081793587 - Sys_corr_eff_14: 0.0003859822672084123 - Sys_corr_eff_15: -0.0006030005673390368 - Sys_corr_eff_16: 0.00014377448242252854 - Sys_corr_eff_17: 2.3335498686995818e-05 - Sys_corr_eff_18: -0.0006145850883856888 - Sys_back_corr: 0.011582409075835649 - Sys_back_unc: 0.011582409075835649 - Sys_fsr_corr: 0.01801708078463323 - Sys_fsr_unc: 0.01801708078463323 - Sys_clos_corr: 0.10424168168252083 - Sys_clos_unc: 0.10424168168252083 - Sys_align_corr: 0.009008540392316616 - Sys_align_unc: 0.009008540392316616 +- Stat_corr_1: -4.20493011e-31 + Stat_corr_2: 5.05955461e-24 + Stat_corr_3: 1.24904270e-18 + Stat_corr_4: -1.13598102e-18 + Stat_corr_5: -6.55241840e-11 + Stat_corr_6: -6.77834490e-11 + Stat_corr_7: 6.82285046e-11 + Stat_corr_8: 7.67137391e-11 + Stat_corr_9: 1.13168029e-10 + Stat_corr_10: -8.18821397e-11 + Stat_corr_11: -8.38482687e-11 + Stat_corr_12: -9.58288294e-11 + Stat_corr_13: 5.81561757e-07 + Stat_corr_14: 6.90375318e-07 + Stat_corr_15: -1.17138956e-03 + Stat_corr_16: 1.16801732e-03 + Stat_corr_17: 7.23496388e-02 + Stat_corr_18: 6.90129940e-02 + Sys_corr_eff_1: -4.54208121e-02 + Sys_corr_eff_2: 8.10805538e-02 + Sys_corr_eff_3: -7.59838250e-02 + Sys_corr_eff_4: 4.15236048e-02 + Sys_corr_eff_5: -6.86231605e-03 + Sys_corr_eff_6: 3.15355281e-03 + Sys_corr_eff_7: -5.35182101e-03 + Sys_corr_eff_8: -1.73723617e-03 + Sys_corr_eff_9: -2.79230429e-04 + Sys_corr_eff_10: -6.42337730e-04 + Sys_corr_eff_11: 4.06521234e-04 + Sys_corr_eff_12: 2.37208337e-03 + Sys_corr_eff_13: 1.08741771e-04 + Sys_corr_eff_14: 3.85982267e-04 + Sys_corr_eff_15: -6.03000567e-04 + Sys_corr_eff_16: 1.43774482e-04 + Sys_corr_eff_17: 2.33354987e-05 + Sys_corr_eff_18: -6.14585088e-04 + Sys_back_corr: 1.15824091e-02 + Sys_back_unc: 1.15824091e-02 + Sys_fsr_corr: 1.80170808e-02 + Sys_fsr_unc: 1.80170808e-02 + Sys_clos_corr: 1.04241682e-01 + Sys_clos_unc: 1.04241682e-01 + Sys_align_corr: 9.00854039e-03 + Sys_align_unc: 9.00854039e-03 Luminosity: 0.4 -- Stat_corr_1: -3.8872720017915496e-34 - Stat_corr_2: 1.5476425563827907e-27 - Stat_corr_3: 2.0277162430705564e-22 - Stat_corr_4: -1.863320599454566e-22 - Stat_corr_5: -6.464606380760136e-15 - Stat_corr_6: -6.7665100405621395e-15 - Stat_corr_7: 6.869896017112816e-15 - Stat_corr_8: 7.790680374191612e-15 - Stat_corr_9: 1.1940608071675173e-14 - Stat_corr_10: -8.384023586298352e-15 - Stat_corr_11: -8.660859907877545e-15 - Stat_corr_12: -9.986697104654409e-15 - Stat_corr_13: 9.28862454087955e-11 - Stat_corr_14: 1.152319239624764e-10 - Stat_corr_15: -3.5153789299082003e-07 - Stat_corr_16: 3.648051332884997e-07 - Stat_corr_17: -0.06884510619364285 - Stat_corr_18: 0.07252827967716714 - Sys_corr_eff_1: -0.003816487184107117 - Sys_corr_eff_2: 0.008873093210236925 - Sys_corr_eff_3: -0.011630070348509748 - Sys_corr_eff_4: 0.010792706767630968 - Sys_corr_eff_5: -0.005931383031274172 - Sys_corr_eff_6: 0.006169244241757349 - Sys_corr_eff_7: 0.0035891076079298608 - Sys_corr_eff_8: -0.002554497947917775 - Sys_corr_eff_9: 0.0007714088043244637 - Sys_corr_eff_10: -0.0018451789522384737 - Sys_corr_eff_11: -0.00019949206715704388 - Sys_corr_eff_12: 1.5479609252780098e-05 - Sys_corr_eff_13: 0.00014083245194798617 - Sys_corr_eff_14: -0.0007148585518036009 - Sys_corr_eff_15: -0.00026098766552087394 - Sys_corr_eff_16: -0.00044880878934384216 - Sys_corr_eff_17: 0.0009984169215522189 - Sys_corr_eff_18: 1.1136702601620011e-05 - Sys_back_corr: 0.004772970773009197 - Sys_back_unc: 0.004772970773009197 - Sys_fsr_corr: 0.0053457272657703005 - Sys_fsr_unc: 0.0053457272657703005 - Sys_clos_corr: 0.05441186681230485 - Sys_clos_unc: 0.05441186681230485 - Sys_align_corr: 0.009355022715098023 - Sys_align_unc: 0.009355022715098023 +- Stat_corr_1: -3.88727200e-34 + Stat_corr_2: 1.54764256e-27 + Stat_corr_3: 2.02771624e-22 + Stat_corr_4: -1.86332060e-22 + Stat_corr_5: -6.46460638e-15 + Stat_corr_6: -6.76651004e-15 + Stat_corr_7: 6.86989602e-15 + Stat_corr_8: 7.79068037e-15 + Stat_corr_9: 1.19406081e-14 + Stat_corr_10: -8.38402359e-15 + Stat_corr_11: -8.66085991e-15 + Stat_corr_12: -9.98669710e-15 + Stat_corr_13: 9.28862454e-11 + Stat_corr_14: 1.15231924e-10 + Stat_corr_15: -3.51537893e-07 + Stat_corr_16: 3.64805133e-07 + Stat_corr_17: -6.88451062e-02 + Stat_corr_18: 7.25282797e-02 + Sys_corr_eff_1: -3.81648718e-03 + Sys_corr_eff_2: 8.87309321e-03 + Sys_corr_eff_3: -1.16300703e-02 + Sys_corr_eff_4: 1.07927068e-02 + Sys_corr_eff_5: -5.93138303e-03 + Sys_corr_eff_6: 6.16924424e-03 + Sys_corr_eff_7: 3.58910761e-03 + Sys_corr_eff_8: -2.55449795e-03 + Sys_corr_eff_9: 7.71408804e-04 + Sys_corr_eff_10: -1.84517895e-03 + Sys_corr_eff_11: -1.99492067e-04 + Sys_corr_eff_12: 1.54796093e-05 + Sys_corr_eff_13: 1.40832452e-04 + Sys_corr_eff_14: -7.14858552e-04 + Sys_corr_eff_15: -2.60987666e-04 + Sys_corr_eff_16: -4.48808789e-04 + Sys_corr_eff_17: 9.98416922e-04 + Sys_corr_eff_18: 1.11367026e-05 + Sys_back_corr: 4.77297077e-03 + Sys_back_unc: 4.77297077e-03 + Sys_fsr_corr: 5.34572727e-03 + Sys_fsr_unc: 5.34572727e-03 + Sys_clos_corr: 5.44118668e-02 + Sys_clos_unc: 5.44118668e-02 + Sys_align_corr: 9.35502272e-03 + Sys_align_unc: 9.35502272e-03 Luminosity: 0.1 diff --git a/nnpdf_data/nnpdf_data/commondata/LHCB_Z0_7TEV_DIELECTRON/filter.py b/nnpdf_data/nnpdf_data/commondata/LHCB_Z0_7TEV_DIELECTRON/filter.py index f875fa3478..e761162753 100644 --- a/nnpdf_data/nnpdf_data/commondata/LHCB_Z0_7TEV_DIELECTRON/filter.py +++ b/nnpdf_data/nnpdf_data/commondata/LHCB_Z0_7TEV_DIELECTRON/filter.py @@ -4,7 +4,9 @@ import pandas as pd import yaml -from nnpdf_data.filter_utils.utils import covmat_to_artunc, percentage_to_absolute +from nnpdf_data.filter_utils.utils import covmat_to_artunc, percentage_to_absolute, prettify_float + +yaml.add_representer(float, prettify_float) MZ_VALUE = 91.1876 # GeV SQRT_S = 7_000.0 # GeV diff --git a/nnpdf_data/nnpdf_data/commondata/LHCB_Z0_7TEV_DIELECTRON/kinematics.yaml b/nnpdf_data/nnpdf_data/commondata/LHCB_Z0_7TEV_DIELECTRON/kinematics.yaml index 6d9e9872df..20f6422a25 100644 --- a/nnpdf_data/nnpdf_data/commondata/LHCB_Z0_7TEV_DIELECTRON/kinematics.yaml +++ b/nnpdf_data/nnpdf_data/commondata/LHCB_Z0_7TEV_DIELECTRON/kinematics.yaml @@ -5,7 +5,7 @@ bins: max: 2.25 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -17,7 +17,7 @@ bins: max: 2.5 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -29,7 +29,7 @@ bins: max: 2.75 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -41,7 +41,7 @@ bins: max: 3.0 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -53,7 +53,7 @@ bins: max: 3.25 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -65,7 +65,7 @@ bins: max: 3.5 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -77,7 +77,7 @@ bins: max: 3.75 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -89,7 +89,7 @@ bins: max: 4.0 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -101,7 +101,7 @@ bins: max: 4.25 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null diff --git a/nnpdf_data/nnpdf_data/commondata/LHCB_Z0_7TEV_DIELECTRON/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/LHCB_Z0_7TEV_DIELECTRON/uncertainties.yaml index 80c4833eae..031f27d10c 100644 --- a/nnpdf_data/nnpdf_data/commondata/LHCB_Z0_7TEV_DIELECTRON/uncertainties.yaml +++ b/nnpdf_data/nnpdf_data/commondata/LHCB_Z0_7TEV_DIELECTRON/uncertainties.yaml @@ -48,111 +48,111 @@ definitions: treatment: MULT type: LHCBLUMI10 bins: -- sys_corr_1: -178.67958311910087 - sys_corr_2: 9.209349869353403 - sys_corr_3: 4.255057663870342 - sys_corr_4: 3.156507170076974 - sys_corr_5: 259.28035757490466 - sys_corr_6: -21.78397184507309 - sys_corr_7: 16.112989707667456 - sys_corr_8: -0.5016969376574413 - sys_corr_9: -0.0027343613560386914 +- sys_corr_1: -1.78679583e+02 + sys_corr_2: 9.20934987e+00 + sys_corr_3: 4.25505766e+00 + sys_corr_4: 3.15650717e+00 + sys_corr_5: 2.59280358e+02 + sys_corr_6: -2.17839718e+01 + sys_corr_7: 1.61129897e+01 + sys_corr_8: -5.01696938e-01 + sys_corr_9: -2.73436136e-03 stat: 700.0 sys_uncorr: 400.0 sys_luminosity: 476.0 -- sys_corr_1: -660.537515055227 - sys_corr_2: 46.752533052608094 - sys_corr_3: 36.96619309695187 - sys_corr_4: 49.53925460732851 - sys_corr_5: -10.94067146480732 - sys_corr_6: 8.840713545084403 - sys_corr_7: 415.42130053328583 - sys_corr_8: -254.77645332953858 - sys_corr_9: -0.007916242946675797 +- sys_corr_1: -6.60537515e+02 + sys_corr_2: 4.67525331e+01 + sys_corr_3: 3.69661931e+01 + sys_corr_4: 4.95392546e+01 + sys_corr_5: -1.09406715e+01 + sys_corr_6: 8.84071355e+00 + sys_corr_7: 4.15421301e+02 + sys_corr_8: -2.54776453e+02 + sys_corr_9: -7.91624295e-03 stat: 1000.0 sys_uncorr: 600.0 sys_luminosity: 1379.0 -- sys_corr_1: -1181.0415793744203 - sys_corr_2: 157.44516686008504 - sys_corr_3: 180.09195319093024 - sys_corr_4: 559.4321728973877 - sys_corr_5: -7.528050808460617 - sys_corr_6: 6.580677086310613 - sys_corr_7: -121.77491169199087 - sys_corr_8: 5.023159897742661 - sys_corr_9: -0.037835413488752134 +- sys_corr_1: -1.18104158e+03 + sys_corr_2: 1.57445167e+02 + sys_corr_3: 1.80091953e+02 + sys_corr_4: 5.59432173e+02 + sys_corr_5: -7.52805081e+00 + sys_corr_6: 6.58067709e+00 + sys_corr_7: -1.21774912e+02 + sys_corr_8: 5.02315990e+00 + sys_corr_9: -3.78354135e-02 stat: 1200.0 sys_uncorr: 700.0 sys_luminosity: 1984.5 -- sys_corr_1: -1392.237751748981 - sys_corr_2: 412.4230536550487 - sys_corr_3: -433.9520896037338 - sys_corr_4: -195.18235191023544 - sys_corr_5: -8.227775516203549 - sys_corr_6: 5.194558891602389 - sys_corr_7: -71.18343302601451 - sys_corr_8: 2.989819301245978 - sys_corr_9: -0.031004558695455833 +- sys_corr_1: -1.39223775e+03 + sys_corr_2: 4.12423054e+02 + sys_corr_3: -4.33952090e+02 + sys_corr_4: -1.95182352e+02 + sys_corr_5: -8.22777552e+00 + sys_corr_6: 5.19455889e+00 + sys_corr_7: -7.11834330e+01 + sys_corr_8: 2.98981930e+00 + sys_corr_9: -3.10045587e-02 stat: 1300.0 sys_uncorr: 800.0 sys_luminosity: 2212.0 -- sys_corr_1: -1491.0612401032242 - sys_corr_2: -640.9019460526737 - sys_corr_3: -85.7220186548979 - sys_corr_4: -77.9880910348474 - sys_corr_5: -6.175566772578514 - sys_corr_6: 5.27408226293231 - sys_corr_7: -49.641550207339215 - sys_corr_8: 4.519833649212316 - sys_corr_9: -0.03178552835193873 +- sys_corr_1: -1.49106124e+03 + sys_corr_2: -6.40901946e+02 + sys_corr_3: -8.57220187e+01 + sys_corr_4: -7.79880910e+01 + sys_corr_5: -6.17556677e+00 + sys_corr_6: 5.27408226e+00 + sys_corr_7: -4.96415502e+01 + sys_corr_8: 4.51983365e+00 + sys_corr_9: -3.17855284e-02 stat: 1400.0 sys_uncorr: 800.0 sys_luminosity: 2096.5 -- sys_corr_1: -889.6527722127311 - sys_corr_2: 170.6976277141195 - sys_corr_3: 546.4828273508045 - sys_corr_4: -356.0764499365865 - sys_corr_5: -5.8896996811759035 - sys_corr_6: 4.820436257056547 - sys_corr_7: -62.27485349485529 - sys_corr_8: 3.203601578536925 - sys_corr_9: -0.019730188108821635 +- sys_corr_1: -8.89652772e+02 + sys_corr_2: 1.70697628e+02 + sys_corr_3: 5.46482827e+02 + sys_corr_4: -3.56076450e+02 + sys_corr_5: -5.88969968e+00 + sys_corr_6: 4.82043626e+00 + sys_corr_7: -6.22748535e+01 + sys_corr_8: 3.20360158e+00 + sys_corr_9: -1.97301881e-02 stat: 1300.0 sys_uncorr: 800.0 sys_luminosity: 1533.0 -- sys_corr_1: -361.54487848243417 - sys_corr_2: 29.755518042937055 - sys_corr_3: 20.543385832216334 - sys_corr_4: 28.89966376864758 - sys_corr_5: -6.233002103389178 - sys_corr_6: 4.621214622243703 - sys_corr_7: 260.26887343520133 - sys_corr_8: 411.51256866458704 - sys_corr_9: -0.04619268918344641 +- sys_corr_1: -3.61544878e+02 + sys_corr_2: 2.97555180e+01 + sys_corr_3: 2.05433858e+01 + sys_corr_4: 2.88996638e+01 + sys_corr_5: -6.23300210e+00 + sys_corr_6: 4.62121462e+00 + sys_corr_7: 2.60268873e+02 + sys_corr_8: 4.11512569e+02 + sys_corr_9: -4.61926892e-02 stat: 1000.0 sys_uncorr: 700.0 sys_luminosity: 717.5 -- sys_corr_1: -103.26938617285883 - sys_corr_2: 3.2594811037377163 - sys_corr_3: 4.839452265632268 - sys_corr_4: 3.4984400708111587 - sys_corr_5: -19.88887726105572 - sys_corr_6: -298.0019071880905 - sys_corr_7: 9.366499108977349 - sys_corr_8: -0.8454294608277066 - sys_corr_9: -0.009913554676058254 +- sys_corr_1: -1.03269386e+02 + sys_corr_2: 3.25948110e+00 + sys_corr_3: 4.83945227e+00 + sys_corr_4: 3.49844007e+00 + sys_corr_5: -1.98888773e+01 + sys_corr_6: -2.98001907e+02 + sys_corr_7: 9.36649911e+00 + sys_corr_8: -8.45429461e-01 + sys_corr_9: -9.91355468e-03 stat: 800.0 sys_uncorr: 500.0 sys_luminosity: 206.5 -- sys_corr_1: -3.9565738189783386 - sys_corr_2: 0.07953042695971321 - sys_corr_3: 0.061019918348014096 - sys_corr_4: 0.1657002006443915 - sys_corr_5: -0.016055168381736016 - sys_corr_6: -0.046192616016123046 - sys_corr_7: 0.13081594546079314 - sys_corr_8: 0.392241776120196 - sys_corr_9: 44.54362648674356 +- sys_corr_1: -3.95657382e+00 + sys_corr_2: 7.95304270e-02 + sys_corr_3: 6.10199183e-02 + sys_corr_4: 1.65700201e-01 + sys_corr_5: -1.60551684e-02 + sys_corr_6: -4.61926160e-02 + sys_corr_7: 1.30815945e-01 + sys_corr_8: 3.92241776e-01 + sys_corr_9: 4.45436265e+01 stat: 440.0 sys_uncorr: 300.0 sys_luminosity: 23.1 diff --git a/nnpdf_data/nnpdf_data/commondata/LHCB_Z0_7TEV_MUON/filter.py b/nnpdf_data/nnpdf_data/commondata/LHCB_Z0_7TEV_MUON/filter.py index 91195801d9..699b2027ba 100644 --- a/nnpdf_data/nnpdf_data/commondata/LHCB_Z0_7TEV_MUON/filter.py +++ b/nnpdf_data/nnpdf_data/commondata/LHCB_Z0_7TEV_MUON/filter.py @@ -4,7 +4,9 @@ import pandas as pd import yaml -from nnpdf_data.filter_utils.utils import covmat_to_artunc +from nnpdf_data.filter_utils.utils import covmat_to_artunc, prettify_float + +yaml.add_representer(float, prettify_float) MZ_VALUE = 91.1876 # GeV MW_VALUE = 80.398 # GeV diff --git a/nnpdf_data/nnpdf_data/commondata/LHCB_Z0_7TEV_MUON/kinematics.yaml b/nnpdf_data/nnpdf_data/commondata/LHCB_Z0_7TEV_MUON/kinematics.yaml index 72c62474ff..b63637d083 100644 --- a/nnpdf_data/nnpdf_data/commondata/LHCB_Z0_7TEV_MUON/kinematics.yaml +++ b/nnpdf_data/nnpdf_data/commondata/LHCB_Z0_7TEV_MUON/kinematics.yaml @@ -5,7 +5,7 @@ bins: max: 2.125 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -17,7 +17,7 @@ bins: max: 2.25 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -29,7 +29,7 @@ bins: max: 2.375 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -41,7 +41,7 @@ bins: max: 2.5 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -53,7 +53,7 @@ bins: max: 2.625 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -65,7 +65,7 @@ bins: max: 2.75 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -77,7 +77,7 @@ bins: max: 2.875 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -89,7 +89,7 @@ bins: max: 3.0 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -101,7 +101,7 @@ bins: max: 3.125 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -113,7 +113,7 @@ bins: max: 3.25 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -125,7 +125,7 @@ bins: max: 3.375 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -137,7 +137,7 @@ bins: max: 3.5 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -149,7 +149,7 @@ bins: max: 3.625 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -161,7 +161,7 @@ bins: max: 3.75 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -173,7 +173,7 @@ bins: max: 3.875 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -185,7 +185,7 @@ bins: max: 4.0 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -197,7 +197,7 @@ bins: max: 4.25 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null diff --git a/nnpdf_data/nnpdf_data/commondata/LHCB_Z0_7TEV_MUON/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/LHCB_Z0_7TEV_MUON/uncertainties.yaml index 540a82691f..0a610f0956 100644 --- a/nnpdf_data/nnpdf_data/commondata/LHCB_Z0_7TEV_MUON/uncertainties.yaml +++ b/nnpdf_data/nnpdf_data/commondata/LHCB_Z0_7TEV_MUON/uncertainties.yaml @@ -144,615 +144,615 @@ definitions: treatment: MULT type: LHCBLUMI7TEV bins: -- sys_corr_1: -5.144425552740034 - sys_corr_2: 6.572983562410863 - sys_corr_3: 1.901231466027203 - sys_corr_4: -0.45189216664871834 - sys_corr_5: 0.055942288021601796 - sys_corr_6: -0.36043044211198694 - sys_corr_7: 0.2843587009221314 - sys_corr_8: -0.21589699461491837 - sys_corr_9: 0.3940396089453557 - sys_corr_10: -0.9963074820242709 - sys_corr_11: -0.27291847084313714 - sys_corr_12: 0.17250031216802095 - sys_corr_13: 0.2412067740456695 - sys_corr_14: -0.16560168888289095 - sys_corr_15: 0.11049364107469214 - sys_corr_16: -0.07783131982592827 - sys_corr_17: -5.551997533965656 - sys_corr_18: -0.11169848098738341 - sys_corr_19: 0.0039045714346296456 - sys_corr_20: 0.016588103163121905 - sys_corr_21: 0.0028952580070134037 - sys_corr_22: 0.06694374851714423 - sys_corr_23: 30.002326016514075 - sys_corr_24: -1.8654453464376475 - sys_corr_25: 0.3731119418282494 - sys_corr_26: -0.5424011750465533 - sys_corr_27: -0.47326824146637403 - sys_corr_28: -0.22682871386901252 - sys_corr_29: 3.378319602378212 - sys_corr_30: -0.1527578158969609 - sys_corr_31: 0.515144394929459 - sys_corr_32: 1.4115605908788966 - sys_corr_33: 0.1757247150533275 +- sys_corr_1: -5.14442555e+00 + sys_corr_2: 6.57298356e+00 + sys_corr_3: 1.90123147e+00 + sys_corr_4: -4.51892167e-01 + sys_corr_5: 5.59422880e-02 + sys_corr_6: -3.60430442e-01 + sys_corr_7: 2.84358701e-01 + sys_corr_8: -2.15896995e-01 + sys_corr_9: 3.94039609e-01 + sys_corr_10: -9.96307482e-01 + sys_corr_11: -2.72918471e-01 + sys_corr_12: 1.72500312e-01 + sys_corr_13: 2.41206774e-01 + sys_corr_14: -1.65601689e-01 + sys_corr_15: 1.10493641e-01 + sys_corr_16: -7.78313198e-02 + sys_corr_17: -5.55199753e+00 + sys_corr_18: -1.11698481e-01 + sys_corr_19: 3.90457143e-03 + sys_corr_20: 1.65881032e-02 + sys_corr_21: 2.89525801e-03 + sys_corr_22: 6.69437485e-02 + sys_corr_23: 3.00023260e+01 + sys_corr_24: -1.86544535e+00 + sys_corr_25: 3.73111942e-01 + sys_corr_26: -5.42401175e-01 + sys_corr_27: -4.73268241e-01 + sys_corr_28: -2.26828714e-01 + sys_corr_29: 3.37831960e+00 + sys_corr_30: -1.52757816e-01 + sys_corr_31: 5.15144395e-01 + sys_corr_32: 1.41156059e+00 + sys_corr_33: 1.75724715e-01 stat: 39.0 sys_beam: 12.0 sys_luminosity: 17.0 -- sys_corr_1: -7.297911572460107 - sys_corr_2: 13.000869127021309 - sys_corr_3: -1.0422124403234008 - sys_corr_4: -1.7354447858638322 - sys_corr_5: 0.4746267757317964 - sys_corr_6: 0.009573237207884 - sys_corr_7: -0.12218007038465588 - sys_corr_8: 0.025430645713995417 - sys_corr_9: 0.5399448945842477 - sys_corr_10: -2.1368483434801204 - sys_corr_11: -0.0008943324781260716 - sys_corr_12: 0.5360948474571062 - sys_corr_13: -0.44439728293227915 - sys_corr_14: 0.3095894348287661 - sys_corr_15: -0.1081782410243901 - sys_corr_16: 0.24206850144893818 - sys_corr_17: -14.241528770783685 - sys_corr_18: -0.217409383588994 - sys_corr_19: 0.0012927871221434435 - sys_corr_20: 0.0059161541606441 - sys_corr_21: -0.034156447425967996 - sys_corr_22: 0.09648547898561297 - sys_corr_23: -2.607404943220818 - sys_corr_24: -0.041223139005774956 - sys_corr_25: -0.3998287194458143 - sys_corr_26: -1.6516389153749202 - sys_corr_27: -1.9634020416001159 - sys_corr_28: -1.539976122969781 - sys_corr_29: 44.80936472075005 - sys_corr_30: -1.184274038184911 - sys_corr_31: 1.4870238354788787 - sys_corr_32: 6.129738977414608 - sys_corr_33: 0.10119973561078824 +- sys_corr_1: -7.29791157e+00 + sys_corr_2: 1.30008691e+01 + sys_corr_3: -1.04221244e+00 + sys_corr_4: -1.73544479e+00 + sys_corr_5: 4.74626776e-01 + sys_corr_6: 9.57323721e-03 + sys_corr_7: -1.22180070e-01 + sys_corr_8: 2.54306457e-02 + sys_corr_9: 5.39944895e-01 + sys_corr_10: -2.13684834e+00 + sys_corr_11: -8.94332478e-04 + sys_corr_12: 5.36094847e-01 + sys_corr_13: -4.44397283e-01 + sys_corr_14: 3.09589435e-01 + sys_corr_15: -1.08178241e-01 + sys_corr_16: 2.42068501e-01 + sys_corr_17: -1.42415288e+01 + sys_corr_18: -2.17409384e-01 + sys_corr_19: 1.29278712e-03 + sys_corr_20: 5.91615416e-03 + sys_corr_21: -3.41564474e-02 + sys_corr_22: 9.64854790e-02 + sys_corr_23: -2.60740494e+00 + sys_corr_24: -4.12231390e-02 + sys_corr_25: -3.99828719e-01 + sys_corr_26: -1.65163892e+00 + sys_corr_27: -1.96340204e+00 + sys_corr_28: -1.53997612e+00 + sys_corr_29: 4.48093647e+01 + sys_corr_30: -1.18427404e+00 + sys_corr_31: 1.48702384e+00 + sys_corr_32: 6.12973898e+00 + sys_corr_33: 1.01199736e-01 stat: 63.0 sys_beam: 36.0 sys_luminosity: 49.0 -- sys_corr_1: -7.699157805059007 - sys_corr_2: 17.71474186844379 - sys_corr_3: -5.635692680353923 - sys_corr_4: -0.5396681593612414 - sys_corr_5: 1.1984639112899278 - sys_corr_6: 0.7177770158019381 - sys_corr_7: -0.4247910820244533 - sys_corr_8: 0.30912149243054166 - sys_corr_9: 0.4698710408470783 - sys_corr_10: -2.605356064191482 - sys_corr_11: -0.40662467349036446 - sys_corr_12: -0.6905443288027894 - sys_corr_13: 1.0655867897808229 - sys_corr_14: 0.41228835106456924 - sys_corr_15: 0.0022229188682831675 - sys_corr_16: 0.21116373713766826 - sys_corr_17: -45.2610037753907 - sys_corr_18: 59.588713813559345 - sys_corr_19: 0.00101429274636337 - sys_corr_20: 0.0050032544839424325 - sys_corr_21: 0.006825287451736368 - sys_corr_22: -0.027693923239105418 - sys_corr_23: -0.6852271010202735 - sys_corr_24: -0.04406223106420677 - sys_corr_25: -0.09996058489381261 - sys_corr_26: 4.3167246393749155 - sys_corr_27: 3.101131179781679 - sys_corr_28: 0.40294242189699037 - sys_corr_29: -3.2313815140449718 - sys_corr_30: 0.04929906955860508 - sys_corr_31: -2.5202264530105762 - sys_corr_32: -4.750051696188027 - sys_corr_33: 0.04819160671261607 +- sys_corr_1: -7.69915781e+00 + sys_corr_2: 1.77147419e+01 + sys_corr_3: -5.63569268e+00 + sys_corr_4: -5.39668159e-01 + sys_corr_5: 1.19846391e+00 + sys_corr_6: 7.17777016e-01 + sys_corr_7: -4.24791082e-01 + sys_corr_8: 3.09121492e-01 + sys_corr_9: 4.69871041e-01 + sys_corr_10: -2.60535606e+00 + sys_corr_11: -4.06624673e-01 + sys_corr_12: -6.90544329e-01 + sys_corr_13: 1.06558679e+00 + sys_corr_14: 4.12288351e-01 + sys_corr_15: 2.22291887e-03 + sys_corr_16: 2.11163737e-01 + sys_corr_17: -4.52610038e+01 + sys_corr_18: 5.95887138e+01 + sys_corr_19: 1.01429275e-03 + sys_corr_20: 5.00325448e-03 + sys_corr_21: 6.82528745e-03 + sys_corr_22: -2.76939232e-02 + sys_corr_23: -6.85227101e-01 + sys_corr_24: -4.40622311e-02 + sys_corr_25: -9.99605849e-02 + sys_corr_26: 4.31672464e+00 + sys_corr_27: 3.10113118e+00 + sys_corr_28: 4.02942422e-01 + sys_corr_29: -3.23138151e+00 + sys_corr_30: 4.92990696e-02 + sys_corr_31: -2.52022645e+00 + sys_corr_32: -4.75005170e+00 + sys_corr_33: 4.81916067e-02 stat: 77.0 sys_beam: 55.0 sys_luminosity: 76.0 -- sys_corr_1: -5.838278576612298 - sys_corr_2: 14.39097310940158 - sys_corr_3: -5.566035904088241 - sys_corr_4: 2.391986214650795 - sys_corr_5: -0.35519219284686376 - sys_corr_6: 0.01737443068755354 - sys_corr_7: -0.32967748848589723 - sys_corr_8: 0.45507369045289436 - sys_corr_9: 0.6014060984871122 - sys_corr_10: -2.095698384752894 - sys_corr_11: -0.8035075574421994 - sys_corr_12: -1.0054240511389962 - sys_corr_13: 0.7408314091397591 - sys_corr_14: 0.5331301450047038 - sys_corr_15: 0.14439003041028053 - sys_corr_16: 0.4857155411279266 - sys_corr_17: -22.53807456374804 - sys_corr_18: -4.141360551493549 - sys_corr_19: -0.00031413186285801637 - sys_corr_20: 0.002563392326889276 - sys_corr_21: -0.010384538709856669 - sys_corr_22: -0.017915032641110377 - sys_corr_23: -0.9487168334097262 - sys_corr_24: -0.03297155395518106 - sys_corr_25: -0.5617137822932491 - sys_corr_26: -3.6776216478564394 - sys_corr_27: -3.4662887879851327 - sys_corr_28: 0.057611600058810546 - sys_corr_29: -7.426141561175894 - sys_corr_30: -2.739325236350733 - sys_corr_31: 10.21972090034545 - sys_corr_32: 50.746468981903575 - sys_corr_33: 4.471619432722373 +- sys_corr_1: -5.83827858e+00 + sys_corr_2: 1.43909731e+01 + sys_corr_3: -5.56603590e+00 + sys_corr_4: 2.39198621e+00 + sys_corr_5: -3.55192193e-01 + sys_corr_6: 1.73744307e-02 + sys_corr_7: -3.29677488e-01 + sys_corr_8: 4.55073690e-01 + sys_corr_9: 6.01406098e-01 + sys_corr_10: -2.09569838e+00 + sys_corr_11: -8.03507557e-01 + sys_corr_12: -1.00542405e+00 + sys_corr_13: 7.40831409e-01 + sys_corr_14: 5.33130145e-01 + sys_corr_15: 1.44390030e-01 + sys_corr_16: 4.85715541e-01 + sys_corr_17: -2.25380746e+01 + sys_corr_18: -4.14136055e+00 + sys_corr_19: -3.14131863e-04 + sys_corr_20: 2.56339233e-03 + sys_corr_21: -1.03845387e-02 + sys_corr_22: -1.79150326e-02 + sys_corr_23: -9.48716833e-01 + sys_corr_24: -3.29715540e-02 + sys_corr_25: -5.61713782e-01 + sys_corr_26: -3.67762165e+00 + sys_corr_27: -3.46628879e+00 + sys_corr_28: 5.76116001e-02 + sys_corr_29: -7.42614156e+00 + sys_corr_30: -2.73932524e+00 + sys_corr_31: 1.02197209e+01 + sys_corr_32: 5.07464690e+01 + sys_corr_33: 4.47161943e+00 stat: 88.0 sys_beam: 73.0 sys_luminosity: 100.0 -- sys_corr_1: -5.996893917218735 - sys_corr_2: 14.843014977290178 - sys_corr_3: -5.26948989529952 - sys_corr_4: 3.5949703372359587 - sys_corr_5: -2.7411872199969576 - sys_corr_6: -1.2469937258108765 - sys_corr_7: -0.4892499106281845 - sys_corr_8: 0.5005765425756845 - sys_corr_9: 0.7965903106529305 - sys_corr_10: -2.5859179064658893 - sys_corr_11: -0.17960228334736852 - sys_corr_12: -0.8595719321260656 - sys_corr_13: 0.5897927826987377 - sys_corr_14: -0.11339892733102595 - sys_corr_15: 0.1249790192329557 - sys_corr_16: 0.5870502811290336 - sys_corr_17: -31.16440970133634 - sys_corr_18: -12.455484431906589 - sys_corr_19: -0.0006272593525352574 - sys_corr_20: 0.001358414400353384 - sys_corr_21: -0.0009692372148536777 - sys_corr_22: 0.05617481071978107 - sys_corr_23: -0.6423520184271446 - sys_corr_24: -0.18306750525331847 - sys_corr_25: -0.7933777125670846 - sys_corr_26: -21.96384251377368 - sys_corr_27: -44.51969291627447 - sys_corr_28: -22.46957677464849 - sys_corr_29: -3.752631298159274 - sys_corr_30: -1.0813662404328324 - sys_corr_31: -11.253680668330848 - sys_corr_32: -8.368031529327054 - sys_corr_33: -0.0610590436712085 +- sys_corr_1: -5.99689392e+00 + sys_corr_2: 1.48430150e+01 + sys_corr_3: -5.26948990e+00 + sys_corr_4: 3.59497034e+00 + sys_corr_5: -2.74118722e+00 + sys_corr_6: -1.24699373e+00 + sys_corr_7: -4.89249911e-01 + sys_corr_8: 5.00576543e-01 + sys_corr_9: 7.96590311e-01 + sys_corr_10: -2.58591791e+00 + sys_corr_11: -1.79602283e-01 + sys_corr_12: -8.59571932e-01 + sys_corr_13: 5.89792783e-01 + sys_corr_14: -1.13398927e-01 + sys_corr_15: 1.24979019e-01 + sys_corr_16: 5.87050281e-01 + sys_corr_17: -3.11644097e+01 + sys_corr_18: -1.24554844e+01 + sys_corr_19: -6.27259353e-04 + sys_corr_20: 1.35841440e-03 + sys_corr_21: -9.69237215e-04 + sys_corr_22: 5.61748107e-02 + sys_corr_23: -6.42352018e-01 + sys_corr_24: -1.83067505e-01 + sys_corr_25: -7.93377713e-01 + sys_corr_26: -2.19638425e+01 + sys_corr_27: -4.45196929e+01 + sys_corr_28: -2.24695768e+01 + sys_corr_29: -3.75263130e+00 + sys_corr_30: -1.08136624e+00 + sys_corr_31: -1.12536807e+01 + sys_corr_32: -8.36803153e+00 + sys_corr_33: -6.10590437e-02 stat: 95.0 sys_beam: 86.0 sys_luminosity: 118.0 -- sys_corr_1: -5.949907003474861 - sys_corr_2: 14.137082558143842 - sys_corr_3: -5.277680065464681 - sys_corr_4: 4.3247956516346715 - sys_corr_5: -3.8817624195466136 - sys_corr_6: -3.0500244245771233 - sys_corr_7: -0.3601690663546049 - sys_corr_8: -0.10590922722384427 - sys_corr_9: 1.365437369674065 - sys_corr_10: -2.0298119047863707 - sys_corr_11: -0.509653317695348 - sys_corr_12: -0.24718679746580352 - sys_corr_13: 0.43157578653055706 - sys_corr_14: 0.2819219297350938 - sys_corr_15: 0.27600508849006183 - sys_corr_16: 0.654096904157463 - sys_corr_17: -32.860485308268515 - sys_corr_18: -17.698228548281413 - sys_corr_19: -0.0012636972811759975 - sys_corr_20: 1.256896515653254e-05 - sys_corr_21: -0.028347299802825965 - sys_corr_22: 0.12649311170157104 - sys_corr_23: -0.5245922592701399 - sys_corr_24: -0.3328874883910953 - sys_corr_25: -0.5689330600897631 - sys_corr_26: -29.22100600363928 - sys_corr_27: 42.386548398332565 - sys_corr_28: -17.09617534086349 - sys_corr_29: -2.2521504379625417 - sys_corr_30: -1.6023600848258446 - sys_corr_31: -8.884046829042811 - sys_corr_32: -4.6951989035270385 - sys_corr_33: -1.5667836238063806 +- sys_corr_1: -5.94990700e+00 + sys_corr_2: 1.41370826e+01 + sys_corr_3: -5.27768007e+00 + sys_corr_4: 4.32479565e+00 + sys_corr_5: -3.88176242e+00 + sys_corr_6: -3.05002442e+00 + sys_corr_7: -3.60169066e-01 + sys_corr_8: -1.05909227e-01 + sys_corr_9: 1.36543737e+00 + sys_corr_10: -2.02981190e+00 + sys_corr_11: -5.09653318e-01 + sys_corr_12: -2.47186797e-01 + sys_corr_13: 4.31575787e-01 + sys_corr_14: 2.81921930e-01 + sys_corr_15: 2.76005088e-01 + sys_corr_16: 6.54096904e-01 + sys_corr_17: -3.28604853e+01 + sys_corr_18: -1.76982285e+01 + sys_corr_19: -1.26369728e-03 + sys_corr_20: 1.25689652e-05 + sys_corr_21: -2.83472998e-02 + sys_corr_22: 1.26493112e-01 + sys_corr_23: -5.24592259e-01 + sys_corr_24: -3.32887488e-01 + sys_corr_25: -5.68933060e-01 + sys_corr_26: -2.92210060e+01 + sys_corr_27: 4.23865484e+01 + sys_corr_28: -1.70961753e+01 + sys_corr_29: -2.25215044e+00 + sys_corr_30: -1.60236008e+00 + sys_corr_31: -8.88404683e+00 + sys_corr_32: -4.69519890e+00 + sys_corr_33: -1.56678362e+00 stat: 100.0 sys_beam: 96.0 sys_luminosity: 132.0 -- sys_corr_1: -5.835444039374021 - sys_corr_2: 13.088285526624283 - sys_corr_3: -5.492704668224828 - sys_corr_4: 4.021133143361567 - sys_corr_5: -3.9121966883069956 - sys_corr_6: -3.4866600736968314 - sys_corr_7: 0.21179248317837016 - sys_corr_8: -0.8777885622212179 - sys_corr_9: 1.8786360127721018 - sys_corr_10: -0.9027896072397511 - sys_corr_11: 1.1830857070798344 - sys_corr_12: -1.1401979030347482 - sys_corr_13: 0.47380537651409055 - sys_corr_14: 0.3155168234500565 - sys_corr_15: 0.644644704437577 - sys_corr_16: 0.5576028659723105 - sys_corr_17: -34.36525962411903 - sys_corr_18: -22.88666792953804 - sys_corr_19: -0.0013478159665670224 - sys_corr_20: -0.0004724214571829234 - sys_corr_21: -0.02537502237640039 - sys_corr_22: 0.11239189427054516 - sys_corr_23: -0.4070390546193248 - sys_corr_24: -0.2853761232434217 - sys_corr_25: -0.9633357122385968 - sys_corr_26: 50.80381634414013 - sys_corr_27: 4.120146803693921 - sys_corr_28: -14.127501802452725 - sys_corr_29: -1.8451783318486372 - sys_corr_30: -1.495579517239746 - sys_corr_31: -9.740693365029998 - sys_corr_32: -2.787873471681524 - sys_corr_33: 0.29920231729136826 +- sys_corr_1: -5.83544404e+00 + sys_corr_2: 1.30882855e+01 + sys_corr_3: -5.49270467e+00 + sys_corr_4: 4.02113314e+00 + sys_corr_5: -3.91219669e+00 + sys_corr_6: -3.48666007e+00 + sys_corr_7: 2.11792483e-01 + sys_corr_8: -8.77788562e-01 + sys_corr_9: 1.87863601e+00 + sys_corr_10: -9.02789607e-01 + sys_corr_11: 1.18308571e+00 + sys_corr_12: -1.14019790e+00 + sys_corr_13: 4.73805377e-01 + sys_corr_14: 3.15516823e-01 + sys_corr_15: 6.44644704e-01 + sys_corr_16: 5.57602866e-01 + sys_corr_17: -3.43652596e+01 + sys_corr_18: -2.28866679e+01 + sys_corr_19: -1.34781597e-03 + sys_corr_20: -4.72421457e-04 + sys_corr_21: -2.53750224e-02 + sys_corr_22: 1.12391894e-01 + sys_corr_23: -4.07039055e-01 + sys_corr_24: -2.85376123e-01 + sys_corr_25: -9.63335712e-01 + sys_corr_26: 5.08038163e+01 + sys_corr_27: 4.12014680e+00 + sys_corr_28: -1.41275018e+01 + sys_corr_29: -1.84517833e+00 + sys_corr_30: -1.49557952e+00 + sys_corr_31: -9.74069337e+00 + sys_corr_32: -2.78787347e+00 + sys_corr_33: 2.99202317e-01 stat: 104.0 sys_beam: 104.0 sys_luminosity: 143.0 -- sys_corr_1: -4.578463173209245 - sys_corr_2: 11.492975402798844 - sys_corr_3: -5.342727368765783 - sys_corr_4: 4.126356809328613 - sys_corr_5: -3.9922608873752963 - sys_corr_6: -3.659835297393161 - sys_corr_7: 1.2417807646456467 - sys_corr_8: -2.207417830905172 - sys_corr_9: 1.5545920211934137 - sys_corr_10: -0.6499439295902983 - sys_corr_11: 0.2024145569787807 - sys_corr_12: -0.7346344891238589 - sys_corr_13: 0.15016606264172364 - sys_corr_14: 0.1871901022181721 - sys_corr_15: 0.9502953125299415 - sys_corr_16: 0.6382116555836846 - sys_corr_17: -28.022841740406594 - sys_corr_18: -15.360370639625762 - sys_corr_19: 0.004262158936466547 - sys_corr_20: 0.010104978715944603 - sys_corr_21: -0.05849862498136131 - sys_corr_22: 0.21426492515897955 - sys_corr_23: -0.40659276863563015 - sys_corr_24: -0.5178959102669797 - sys_corr_25: -1.0548333315489675 - sys_corr_26: -5.178392681782824 - sys_corr_27: -3.8296897150192692 - sys_corr_28: 51.202578657080586 - sys_corr_29: -1.0981054409265378 - sys_corr_30: -3.0388901879220116 - sys_corr_31: -20.301079361133443 - sys_corr_32: -2.839324583945193 - sys_corr_33: 0.4512831009149138 +- sys_corr_1: -4.57846317e+00 + sys_corr_2: 1.14929754e+01 + sys_corr_3: -5.34272737e+00 + sys_corr_4: 4.12635681e+00 + sys_corr_5: -3.99226089e+00 + sys_corr_6: -3.65983530e+00 + sys_corr_7: 1.24178076e+00 + sys_corr_8: -2.20741783e+00 + sys_corr_9: 1.55459202e+00 + sys_corr_10: -6.49943930e-01 + sys_corr_11: 2.02414557e-01 + sys_corr_12: -7.34634489e-01 + sys_corr_13: 1.50166063e-01 + sys_corr_14: 1.87190102e-01 + sys_corr_15: 9.50295313e-01 + sys_corr_16: 6.38211656e-01 + sys_corr_17: -2.80228417e+01 + sys_corr_18: -1.53603706e+01 + sys_corr_19: 4.26215894e-03 + sys_corr_20: 1.01049787e-02 + sys_corr_21: -5.84986250e-02 + sys_corr_22: 2.14264925e-01 + sys_corr_23: -4.06592769e-01 + sys_corr_24: -5.17895910e-01 + sys_corr_25: -1.05483333e+00 + sys_corr_26: -5.17839268e+00 + sys_corr_27: -3.82968972e+00 + sys_corr_28: 5.12025787e+01 + sys_corr_29: -1.09810544e+00 + sys_corr_30: -3.03889019e+00 + sys_corr_31: -2.03010794e+01 + sys_corr_32: -2.83932458e+00 + sys_corr_33: 4.51283101e-01 stat: 103.0 sys_beam: 103.0 sys_luminosity: 142.0 -- sys_corr_1: -3.9460858939786965 - sys_corr_2: 9.331747682825814 - sys_corr_3: -4.502646795676548 - sys_corr_4: 3.52661999217111 - sys_corr_5: -3.639029666607165 - sys_corr_6: -3.22598438653398 - sys_corr_7: 2.1588482361814205 - sys_corr_8: -2.2365351993274634 - sys_corr_9: 1.2136482542488536 - sys_corr_10: -0.2967678491358917 - sys_corr_11: -0.8236260631451637 - sys_corr_12: -0.34840942771361777 - sys_corr_13: 0.08854711601867193 - sys_corr_14: 0.9344478855823343 - sys_corr_15: 1.0533652355015524 - sys_corr_16: -0.08875471213305143 - sys_corr_17: -20.059679842882176 - sys_corr_18: -8.695726652369748 - sys_corr_19: 0.004045355376697582 - sys_corr_20: 0.010423774641023337 - sys_corr_21: -0.06267162582035803 - sys_corr_22: 0.23812793222046488 - sys_corr_23: -0.37549999689656005 - sys_corr_24: -0.6042913104889222 - sys_corr_25: -2.1895278286529707 - sys_corr_26: -0.3262907577161122 - sys_corr_27: -2.6650933964974572 - sys_corr_28: 7.492399150300942 - sys_corr_29: -1.8453471794724177 - sys_corr_30: -6.137185313165999 - sys_corr_31: 34.40405226287594 - sys_corr_32: -8.058504971006268 - sys_corr_33: -38.36148149357813 +- sys_corr_1: -3.94608589e+00 + sys_corr_2: 9.33174768e+00 + sys_corr_3: -4.50264680e+00 + sys_corr_4: 3.52661999e+00 + sys_corr_5: -3.63902967e+00 + sys_corr_6: -3.22598439e+00 + sys_corr_7: 2.15884824e+00 + sys_corr_8: -2.23653520e+00 + sys_corr_9: 1.21364825e+00 + sys_corr_10: -2.96767849e-01 + sys_corr_11: -8.23626063e-01 + sys_corr_12: -3.48409428e-01 + sys_corr_13: 8.85471160e-02 + sys_corr_14: 9.34447886e-01 + sys_corr_15: 1.05336524e+00 + sys_corr_16: -8.87547121e-02 + sys_corr_17: -2.00596798e+01 + sys_corr_18: -8.69572665e+00 + sys_corr_19: 4.04535538e-03 + sys_corr_20: 1.04237746e-02 + sys_corr_21: -6.26716258e-02 + sys_corr_22: 2.38127932e-01 + sys_corr_23: -3.75499997e-01 + sys_corr_24: -6.04291310e-01 + sys_corr_25: -2.18952783e+00 + sys_corr_26: -3.26290758e-01 + sys_corr_27: -2.66509340e+00 + sys_corr_28: 7.49239915e+00 + sys_corr_29: -1.84534718e+00 + sys_corr_30: -6.13718531e+00 + sys_corr_31: 3.44040523e+01 + sys_corr_32: -8.05850497e+00 + sys_corr_33: -3.83614815e+01 stat: 99.0 sys_beam: 97.0 sys_luminosity: 134.0 -- sys_corr_1: -3.3296479921920215 - sys_corr_2: 7.5883943004564935 - sys_corr_3: -3.714550452723452 - sys_corr_4: 3.3550354839323324 - sys_corr_5: -3.6210240893797 - sys_corr_6: -3.3033447678556613 - sys_corr_7: 2.7787312340336414 - sys_corr_8: -1.790874580343591 - sys_corr_9: 0.699173474160956 - sys_corr_10: -0.21168570613123214 - sys_corr_11: 0.4193254329696789 - sys_corr_12: -1.0346646678921523 - sys_corr_13: 0.9249825327151258 - sys_corr_14: 1.1513428890631658 - sys_corr_15: 0.317588777946141 - sys_corr_16: -0.8103817316898109 - sys_corr_17: -17.65115184322894 - sys_corr_18: -8.468050345062014 - sys_corr_19: 0.00346052812594454 - sys_corr_20: 0.02284100993511031 - sys_corr_21: -0.10335762538907334 - sys_corr_22: 0.3639258931234757 - sys_corr_23: -0.42098864047826307 - sys_corr_24: -0.9238706063642331 - sys_corr_25: -2.5413922039810912 - sys_corr_26: -1.4394613946934833 - sys_corr_27: -0.5679517012134454 - sys_corr_28: 6.136048179733384 - sys_corr_29: -1.1936612714029022 - sys_corr_30: -7.9490207960766295 - sys_corr_31: 33.068185465052935 - sys_corr_32: -14.234108302570368 - sys_corr_33: 37.93320406535584 +- sys_corr_1: -3.32964799e+00 + sys_corr_2: 7.58839430e+00 + sys_corr_3: -3.71455045e+00 + sys_corr_4: 3.35503548e+00 + sys_corr_5: -3.62102409e+00 + sys_corr_6: -3.30334477e+00 + sys_corr_7: 2.77873123e+00 + sys_corr_8: -1.79087458e+00 + sys_corr_9: 6.99173474e-01 + sys_corr_10: -2.11685706e-01 + sys_corr_11: 4.19325433e-01 + sys_corr_12: -1.03466467e+00 + sys_corr_13: 9.24982533e-01 + sys_corr_14: 1.15134289e+00 + sys_corr_15: 3.17588778e-01 + sys_corr_16: -8.10381732e-01 + sys_corr_17: -1.76511518e+01 + sys_corr_18: -8.46805035e+00 + sys_corr_19: 3.46052813e-03 + sys_corr_20: 2.28410099e-02 + sys_corr_21: -1.03357625e-01 + sys_corr_22: 3.63925893e-01 + sys_corr_23: -4.20988640e-01 + sys_corr_24: -9.23870606e-01 + sys_corr_25: -2.54139220e+00 + sys_corr_26: -1.43946139e+00 + sys_corr_27: -5.67951701e-01 + sys_corr_28: 6.13604818e+00 + sys_corr_29: -1.19366127e+00 + sys_corr_30: -7.94902080e+00 + sys_corr_31: 3.30681855e+01 + sys_corr_32: -1.42341083e+01 + sys_corr_33: 3.79332041e+01 stat: 96.0 sys_beam: 89.0 sys_luminosity: 122.0 -- sys_corr_1: -2.2644970448024164 - sys_corr_2: 5.303611386017853 - sys_corr_3: -2.9965580164847476 - sys_corr_4: 2.9808073705544844 - sys_corr_5: -2.671718796563147 - sys_corr_6: -2.8203798685914223 - sys_corr_7: 3.0759167612439726 - sys_corr_8: -0.6002068928428987 - sys_corr_9: 0.5652411860655118 - sys_corr_10: 0.1566211518695707 - sys_corr_11: 0.5227061713301702 - sys_corr_12: -0.2012909067865169 - sys_corr_13: -0.005896119165318261 - sys_corr_14: 0.7277698680111875 - sys_corr_15: 0.8209984498228907 - sys_corr_16: -1.1411790598173943 - sys_corr_17: -11.310138887380525 - sys_corr_18: -5.1914445097241035 - sys_corr_19: 0.012243378984850612 - sys_corr_20: 0.027072803141586887 - sys_corr_21: -0.12431963981218651 - sys_corr_22: 0.6384437220312449 - sys_corr_23: -0.23664523396117837 - sys_corr_24: -1.418444272577331 - sys_corr_25: -6.182965470305888 - sys_corr_26: -0.7831071066187173 - sys_corr_27: -0.3367636386135794 - sys_corr_28: 3.6078558439812403 - sys_corr_29: -0.025855777636017364 - sys_corr_30: 45.18748682643025 - sys_corr_31: 8.204394050539062 - sys_corr_32: -0.8109805549897795 - sys_corr_33: 1.6084906420068876 +- sys_corr_1: -2.26449704e+00 + sys_corr_2: 5.30361139e+00 + sys_corr_3: -2.99655802e+00 + sys_corr_4: 2.98080737e+00 + sys_corr_5: -2.67171880e+00 + sys_corr_6: -2.82037987e+00 + sys_corr_7: 3.07591676e+00 + sys_corr_8: -6.00206893e-01 + sys_corr_9: 5.65241186e-01 + sys_corr_10: 1.56621152e-01 + sys_corr_11: 5.22706171e-01 + sys_corr_12: -2.01290907e-01 + sys_corr_13: -5.89611917e-03 + sys_corr_14: 7.27769868e-01 + sys_corr_15: 8.20998450e-01 + sys_corr_16: -1.14117906e+00 + sys_corr_17: -1.13101389e+01 + sys_corr_18: -5.19144451e+00 + sys_corr_19: 1.22433790e-02 + sys_corr_20: 2.70728031e-02 + sys_corr_21: -1.24319640e-01 + sys_corr_22: 6.38443722e-01 + sys_corr_23: -2.36645234e-01 + sys_corr_24: -1.41844427e+00 + sys_corr_25: -6.18296547e+00 + sys_corr_26: -7.83107107e-01 + sys_corr_27: -3.36763639e-01 + sys_corr_28: 3.60785584e+00 + sys_corr_29: -2.58557776e-02 + sys_corr_30: 4.51874868e+01 + sys_corr_31: 8.20439405e+00 + sys_corr_32: -8.10980555e-01 + sys_corr_33: 1.60849064e+00 stat: 87.0 sys_beam: 74.0 sys_luminosity: 101.0 -- sys_corr_1: -1.513515582227595 - sys_corr_2: 3.2044538268193246 - sys_corr_3: -1.799559002830778 - sys_corr_4: 2.038005776686647 - sys_corr_5: -2.137992517157925 - sys_corr_6: -2.256180641108121 - sys_corr_7: 2.6322183178687544 - sys_corr_8: -0.25693000367961655 - sys_corr_9: 0.32904301927027957 - sys_corr_10: 0.4158887653751109 - sys_corr_11: 0.12470724030488785 - sys_corr_12: -0.33814436203047815 - sys_corr_13: 0.3436493649734144 - sys_corr_14: 1.1984378152097308 - sys_corr_15: 0.5030735536072816 - sys_corr_16: -1.151770908762081 - sys_corr_17: -6.947361726463086 - sys_corr_18: -3.100402076835983 - sys_corr_19: 0.015269844074423085 - sys_corr_20: 0.035954345143622696 - sys_corr_21: -0.17357495277799437 - sys_corr_22: 0.7430732660388921 - sys_corr_23: -0.6040761669974669 - sys_corr_24: -2.6663942714164306 - sys_corr_25: 38.966660718356344 - sys_corr_26: -0.030343453690602797 - sys_corr_27: -0.588581390332667 - sys_corr_28: 1.6036788794271175 - sys_corr_29: -0.0700891959002945 - sys_corr_30: 5.872159828056449 - sys_corr_31: 4.2036127810351465 - sys_corr_32: -1.0476413774171527 - sys_corr_33: 0.5798344606427199 +- sys_corr_1: -1.51351558e+00 + sys_corr_2: 3.20445383e+00 + sys_corr_3: -1.79955900e+00 + sys_corr_4: 2.03800578e+00 + sys_corr_5: -2.13799252e+00 + sys_corr_6: -2.25618064e+00 + sys_corr_7: 2.63221832e+00 + sys_corr_8: -2.56930004e-01 + sys_corr_9: 3.29043019e-01 + sys_corr_10: 4.15888765e-01 + sys_corr_11: 1.24707240e-01 + sys_corr_12: -3.38144362e-01 + sys_corr_13: 3.43649365e-01 + sys_corr_14: 1.19843782e+00 + sys_corr_15: 5.03073554e-01 + sys_corr_16: -1.15177091e+00 + sys_corr_17: -6.94736173e+00 + sys_corr_18: -3.10040208e+00 + sys_corr_19: 1.52698441e-02 + sys_corr_20: 3.59543451e-02 + sys_corr_21: -1.73574953e-01 + sys_corr_22: 7.43073266e-01 + sys_corr_23: -6.04076167e-01 + sys_corr_24: -2.66639427e+00 + sys_corr_25: 3.89666607e+01 + sys_corr_26: -3.03434537e-02 + sys_corr_27: -5.88581390e-01 + sys_corr_28: 1.60367888e+00 + sys_corr_29: -7.00891959e-02 + sys_corr_30: 5.87215983e+00 + sys_corr_31: 4.20361278e+00 + sys_corr_32: -1.04764138e+00 + sys_corr_33: 5.79834461e-01 stat: 73.0 sys_beam: 52.0 sys_luminosity: 72.0 -- sys_corr_1: -0.9599677202731437 - sys_corr_2: 1.8901057609022804 - sys_corr_3: -1.0378159791137573 - sys_corr_4: 1.2741208103015023 - sys_corr_5: -1.4757821487500415 - sys_corr_6: -1.4710731576800156 - sys_corr_7: 2.111110656303758 - sys_corr_8: -0.27021399706120286 - sys_corr_9: 0.18836855327544447 - sys_corr_10: 0.4503325027712125 - sys_corr_11: 0.23005160232186697 - sys_corr_12: -0.4381571310578679 - sys_corr_13: 0.10449329455985254 - sys_corr_14: 0.39790648153921765 - sys_corr_15: 0.4820039908599063 - sys_corr_16: -1.2052195926051017 - sys_corr_17: -3.8796395645597612 - sys_corr_18: -1.6008710972005198 - sys_corr_19: 0.021744932392499822 - sys_corr_20: 0.052588206322650835 - sys_corr_21: -0.2841202770322658 - sys_corr_22: 1.9382119201075017 - sys_corr_23: 1.8023127730053656 - sys_corr_24: 28.942691039116013 - sys_corr_25: 3.0285738343293445 - sys_corr_26: -0.1877888611626913 - sys_corr_27: -0.002317626727620177 - sys_corr_28: 1.0370069734244094 - sys_corr_29: 0.08391998313771162 - sys_corr_30: 2.1408681558118405 - sys_corr_31: 1.8730470949490958 - sys_corr_32: -0.7474623468948263 - sys_corr_33: 0.5228886016718449 +- sys_corr_1: -9.59967720e-01 + sys_corr_2: 1.89010576e+00 + sys_corr_3: -1.03781598e+00 + sys_corr_4: 1.27412081e+00 + sys_corr_5: -1.47578215e+00 + sys_corr_6: -1.47107316e+00 + sys_corr_7: 2.11111066e+00 + sys_corr_8: -2.70213997e-01 + sys_corr_9: 1.88368553e-01 + sys_corr_10: 4.50332503e-01 + sys_corr_11: 2.30051602e-01 + sys_corr_12: -4.38157131e-01 + sys_corr_13: 1.04493295e-01 + sys_corr_14: 3.97906482e-01 + sys_corr_15: 4.82003991e-01 + sys_corr_16: -1.20521959e+00 + sys_corr_17: -3.87963956e+00 + sys_corr_18: -1.60087110e+00 + sys_corr_19: 2.17449324e-02 + sys_corr_20: 5.25882063e-02 + sys_corr_21: -2.84120277e-01 + sys_corr_22: 1.93821192e+00 + sys_corr_23: 1.80231277e+00 + sys_corr_24: 2.89426910e+01 + sys_corr_25: 3.02857383e+00 + sys_corr_26: -1.87788861e-01 + sys_corr_27: -2.31762673e-03 + sys_corr_28: 1.03700697e+00 + sys_corr_29: 8.39199831e-02 + sys_corr_30: 2.14086816e+00 + sys_corr_31: 1.87304709e+00 + sys_corr_32: -7.47462347e-01 + sys_corr_33: 5.22888602e-01 stat: 61.0 sys_beam: 36.0 sys_luminosity: 50.0 -- sys_corr_1: -0.6016101755163246 - sys_corr_2: 1.1597183126555877 - sys_corr_3: -0.43963847622759905 - sys_corr_4: 0.6948774891507552 - sys_corr_5: -0.9415241508082652 - sys_corr_6: -0.9991327629540143 - sys_corr_7: 1.5174553736573035 - sys_corr_8: 0.12754784527214505 - sys_corr_9: 0.13648182638956124 - sys_corr_10: 0.04969527771764928 - sys_corr_11: 0.2737254510373512 - sys_corr_12: 0.09215309773617389 - sys_corr_13: 0.019354807163847104 - sys_corr_14: 0.21777740221843647 - sys_corr_15: 0.21606327417540777 - sys_corr_16: -0.973504268016993 - sys_corr_17: -2.0578009542705265 - sys_corr_18: -1.0644875221619896 - sys_corr_19: 0.031740270008775204 - sys_corr_20: 0.08033514707308048 - sys_corr_21: -0.5208458815894645 - sys_corr_22: -22.46423802267437 - sys_corr_23: 0.18610800121244955 - sys_corr_24: 2.308734684641413 - sys_corr_25: 1.2699565268666466 - sys_corr_26: -0.09091516552335618 - sys_corr_27: 0.032674791337999366 - sys_corr_28: 0.6681291423828061 - sys_corr_29: 0.13280508508763325 - sys_corr_30: 1.3989101918131466 - sys_corr_31: 1.09650665474171 - sys_corr_32: -0.5238493042777358 - sys_corr_33: 0.3056880593229055 +- sys_corr_1: -6.01610176e-01 + sys_corr_2: 1.15971831e+00 + sys_corr_3: -4.39638476e-01 + sys_corr_4: 6.94877489e-01 + sys_corr_5: -9.41524151e-01 + sys_corr_6: -9.99132763e-01 + sys_corr_7: 1.51745537e+00 + sys_corr_8: 1.27547845e-01 + sys_corr_9: 1.36481826e-01 + sys_corr_10: 4.96952777e-02 + sys_corr_11: 2.73725451e-01 + sys_corr_12: 9.21530977e-02 + sys_corr_13: 1.93548072e-02 + sys_corr_14: 2.17777402e-01 + sys_corr_15: 2.16063274e-01 + sys_corr_16: -9.73504268e-01 + sys_corr_17: -2.05780095e+00 + sys_corr_18: -1.06448752e+00 + sys_corr_19: 3.17402700e-02 + sys_corr_20: 8.03351471e-02 + sys_corr_21: -5.20845882e-01 + sys_corr_22: -2.24642380e+01 + sys_corr_23: 1.86108001e-01 + sys_corr_24: 2.30873468e+00 + sys_corr_25: 1.26995653e+00 + sys_corr_26: -9.09151655e-02 + sys_corr_27: 3.26747913e-02 + sys_corr_28: 6.68129142e-01 + sys_corr_29: 1.32805085e-01 + sys_corr_30: 1.39891019e+00 + sys_corr_31: 1.09650665e+00 + sys_corr_32: -5.23849304e-01 + sys_corr_33: 3.05688059e-01 stat: 47.0 sys_beam: 22.0 sys_luminosity: 30.0 -- sys_corr_1: -0.30363528921299726 - sys_corr_2: 0.4648760921171039 - sys_corr_3: -0.12477456656605275 - sys_corr_4: 0.2990583911456929 - sys_corr_5: -0.2470346698834696 - sys_corr_6: -0.3700600797043043 - sys_corr_7: 0.7531431717298209 - sys_corr_8: -0.04223931399245429 - sys_corr_9: 0.1371971130066231 - sys_corr_10: 0.051245008464293945 - sys_corr_11: -0.03683431175751741 - sys_corr_12: 0.059475816300766295 - sys_corr_13: 0.1642122107605053 - sys_corr_14: 0.005626317963480155 - sys_corr_15: 0.14988122184898237 - sys_corr_16: -0.4003126761959416 - sys_corr_17: -0.8420927175202827 - sys_corr_18: -0.43628867841145047 - sys_corr_19: 0.03590177446568252 - sys_corr_20: 0.12685717686608483 - sys_corr_21: 13.849144204168123 - sys_corr_22: -0.7806083967775885 - sys_corr_23: 0.011581050126402247 - sys_corr_24: 0.6179383606688502 - sys_corr_25: 0.5014764801040614 - sys_corr_26: -0.025472305630988738 - sys_corr_27: 0.041030923500010766 - sys_corr_28: 0.3260498029402512 - sys_corr_29: 0.08077100472413296 - sys_corr_30: 0.4611880391118003 - sys_corr_31: 0.494711079266706 - sys_corr_32: -0.1691193148183409 - sys_corr_33: 0.15492633000031986 +- sys_corr_1: -3.03635289e-01 + sys_corr_2: 4.64876092e-01 + sys_corr_3: -1.24774567e-01 + sys_corr_4: 2.99058391e-01 + sys_corr_5: -2.47034670e-01 + sys_corr_6: -3.70060080e-01 + sys_corr_7: 7.53143172e-01 + sys_corr_8: -4.22393140e-02 + sys_corr_9: 1.37197113e-01 + sys_corr_10: 5.12450085e-02 + sys_corr_11: -3.68343118e-02 + sys_corr_12: 5.94758163e-02 + sys_corr_13: 1.64212211e-01 + sys_corr_14: 5.62631796e-03 + sys_corr_15: 1.49881222e-01 + sys_corr_16: -4.00312676e-01 + sys_corr_17: -8.42092718e-01 + sys_corr_18: -4.36288678e-01 + sys_corr_19: 3.59017745e-02 + sys_corr_20: 1.26857177e-01 + sys_corr_21: 1.38491442e+01 + sys_corr_22: -7.80608397e-01 + sys_corr_23: 1.15810501e-02 + sys_corr_24: 6.17938361e-01 + sys_corr_25: 5.01476480e-01 + sys_corr_26: -2.54723056e-02 + sys_corr_27: 4.10309235e-02 + sys_corr_28: 3.26049803e-01 + sys_corr_29: 8.07710047e-02 + sys_corr_30: 4.61188039e-01 + sys_corr_31: 4.94711079e-01 + sys_corr_32: -1.69119315e-01 + sys_corr_33: 1.54926330e-01 stat: 32.0 sys_beam: 10.0 sys_luminosity: 14.0 -- sys_corr_1: -0.10547439465572588 - sys_corr_2: 0.18904847960759424 - sys_corr_3: -0.06667300003302946 - sys_corr_4: 0.06995541406089893 - sys_corr_5: -0.07973775749772975 - sys_corr_6: -0.08186155470482534 - sys_corr_7: 0.3604189154263184 - sys_corr_8: -0.00793745841794225 - sys_corr_9: 0.010425630003556688 - sys_corr_10: 0.008489985408124125 - sys_corr_11: 0.014469848807811856 - sys_corr_12: -0.028723535555937235 - sys_corr_13: -0.010975318861684086 - sys_corr_14: 0.009030114418278641 - sys_corr_15: 0.07014820568014873 - sys_corr_16: -0.17204888458433032 - sys_corr_17: -0.3004615413738437 - sys_corr_18: -0.07927931968931957 - sys_corr_19: 0.14502031603626284 - sys_corr_20: -7.961504650895671 - sys_corr_21: 0.20984559058474292 - sys_corr_22: -0.21609606172248594 - sys_corr_23: 0.06734604526810684 - sys_corr_24: 0.19660344960008216 - sys_corr_25: 0.1817441829283297 - sys_corr_26: -0.02387752429915648 - sys_corr_27: -0.021898473105198275 - sys_corr_28: 0.12441629601170437 - sys_corr_29: 0.030633057336847454 - sys_corr_30: 0.17597808154973107 - sys_corr_31: 0.1928278224849192 - sys_corr_32: -0.055130587280906834 - sys_corr_33: 0.07793893164754231 +- sys_corr_1: -1.05474395e-01 + sys_corr_2: 1.89048480e-01 + sys_corr_3: -6.66730000e-02 + sys_corr_4: 6.99554141e-02 + sys_corr_5: -7.97377575e-02 + sys_corr_6: -8.18615547e-02 + sys_corr_7: 3.60418915e-01 + sys_corr_8: -7.93745842e-03 + sys_corr_9: 1.04256300e-02 + sys_corr_10: 8.48998541e-03 + sys_corr_11: 1.44698488e-02 + sys_corr_12: -2.87235356e-02 + sys_corr_13: -1.09753189e-02 + sys_corr_14: 9.03011442e-03 + sys_corr_15: 7.01482057e-02 + sys_corr_16: -1.72048885e-01 + sys_corr_17: -3.00461541e-01 + sys_corr_18: -7.92793197e-02 + sys_corr_19: 1.45020316e-01 + sys_corr_20: -7.96150465e+00 + sys_corr_21: 2.09845591e-01 + sys_corr_22: -2.16096062e-01 + sys_corr_23: 6.73460453e-02 + sys_corr_24: 1.96603450e-01 + sys_corr_25: 1.81744183e-01 + sys_corr_26: -2.38775243e-02 + sys_corr_27: -2.18984731e-02 + sys_corr_28: 1.24416296e-01 + sys_corr_29: 3.06330573e-02 + sys_corr_30: 1.75978082e-01 + sys_corr_31: 1.92827822e-01 + sys_corr_32: -5.51305873e-02 + sys_corr_33: 7.79389316e-02 stat: 20.0 sys_beam: 4.0 sys_luminosity: 6.0 -- sys_corr_1: -0.02431429482113436 - sys_corr_2: 0.09692113929867942 - sys_corr_3: -0.03333161308882767 - sys_corr_4: 0.06107345051605339 - sys_corr_5: -0.0635234920866984 - sys_corr_6: -0.06298347307032187 - sys_corr_7: 0.18466559329976315 - sys_corr_8: 0.018547587471302415 - sys_corr_9: -0.02871769259809767 - sys_corr_10: 0.05370278836507606 - sys_corr_11: -0.05287405830178798 - sys_corr_12: -0.02245687540262259 - sys_corr_13: -0.03088389927423268 - sys_corr_14: 0.061858343774689926 - sys_corr_15: 0.009215479111591185 - sys_corr_16: -0.13719520827944265 - sys_corr_17: -0.11723684260544923 - sys_corr_18: -0.03585346561818685 - sys_corr_19: -5.9821385872786745 - sys_corr_20: -0.19143727469509828 - sys_corr_21: 0.08356906426353942 - sys_corr_22: -0.1183224539940978 - sys_corr_23: 0.025647167839376116 - sys_corr_24: 0.11379847822740553 - sys_corr_25: 0.10881194615859863 - sys_corr_26: -0.011078459290351764 - sys_corr_27: -0.012411815875944492 - sys_corr_28: 0.07756686666277557 - sys_corr_29: 0.012305765288642322 - sys_corr_30: 0.11931735302945229 - sys_corr_31: 0.0805741554695368 - sys_corr_32: -0.026583928354131748 - sys_corr_33: 0.007594828848036096 +- sys_corr_1: -2.43142948e-02 + sys_corr_2: 9.69211393e-02 + sys_corr_3: -3.33316131e-02 + sys_corr_4: 6.10734505e-02 + sys_corr_5: -6.35234921e-02 + sys_corr_6: -6.29834731e-02 + sys_corr_7: 1.84665593e-01 + sys_corr_8: 1.85475875e-02 + sys_corr_9: -2.87176926e-02 + sys_corr_10: 5.37027884e-02 + sys_corr_11: -5.28740583e-02 + sys_corr_12: -2.24568754e-02 + sys_corr_13: -3.08838993e-02 + sys_corr_14: 6.18583438e-02 + sys_corr_15: 9.21547911e-03 + sys_corr_16: -1.37195208e-01 + sys_corr_17: -1.17236843e-01 + sys_corr_18: -3.58534656e-02 + sys_corr_19: -5.98213859e+00 + sys_corr_20: -1.91437275e-01 + sys_corr_21: 8.35690643e-02 + sys_corr_22: -1.18322454e-01 + sys_corr_23: 2.56471678e-02 + sys_corr_24: 1.13798478e-01 + sys_corr_25: 1.08811946e-01 + sys_corr_26: -1.10784593e-02 + sys_corr_27: -1.24118159e-02 + sys_corr_28: 7.75668667e-02 + sys_corr_29: 1.23057653e-02 + sys_corr_30: 1.19317353e-01 + sys_corr_31: 8.05741555e-02 + sys_corr_32: -2.65839284e-02 + sys_corr_33: 7.59482885e-03 stat: 13.0 sys_beam: 1.0 sys_luminosity: 2.0 diff --git a/nnpdf_data/nnpdf_data/commondata/LHCB_Z0_8TEV_DIELECTRON/filter.py b/nnpdf_data/nnpdf_data/commondata/LHCB_Z0_8TEV_DIELECTRON/filter.py index 9bd9881e2e..13aa33a895 100644 --- a/nnpdf_data/nnpdf_data/commondata/LHCB_Z0_8TEV_DIELECTRON/filter.py +++ b/nnpdf_data/nnpdf_data/commondata/LHCB_Z0_8TEV_DIELECTRON/filter.py @@ -4,7 +4,9 @@ import pandas as pd import yaml -from nnpdf_data.filter_utils.utils import covmat_to_artunc +from nnpdf_data.filter_utils.utils import covmat_to_artunc, prettify_float + +yaml.add_representer(float, prettify_float) MZ_VALUE = 91.1876 # GeV SQRT_S = 8_000.0 # GeV diff --git a/nnpdf_data/nnpdf_data/commondata/LHCB_Z0_8TEV_DIELECTRON/kinematics.yaml b/nnpdf_data/nnpdf_data/commondata/LHCB_Z0_8TEV_DIELECTRON/kinematics.yaml index cd51000450..8cf61c52a3 100644 --- a/nnpdf_data/nnpdf_data/commondata/LHCB_Z0_8TEV_DIELECTRON/kinematics.yaml +++ b/nnpdf_data/nnpdf_data/commondata/LHCB_Z0_8TEV_DIELECTRON/kinematics.yaml @@ -5,7 +5,7 @@ bins: max: 2.125 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -17,7 +17,7 @@ bins: max: 2.25 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -29,7 +29,7 @@ bins: max: 2.375 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -41,7 +41,7 @@ bins: max: 2.5 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -53,7 +53,7 @@ bins: max: 2.625 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -65,7 +65,7 @@ bins: max: 2.75 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -77,7 +77,7 @@ bins: max: 2.875 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -89,7 +89,7 @@ bins: max: 3.0 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -101,7 +101,7 @@ bins: max: 3.125 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -113,7 +113,7 @@ bins: max: 3.25 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -125,7 +125,7 @@ bins: max: 3.375 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -137,7 +137,7 @@ bins: max: 3.5 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -149,7 +149,7 @@ bins: max: 3.625 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -161,7 +161,7 @@ bins: max: 3.75 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -173,7 +173,7 @@ bins: max: 3.875 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -185,7 +185,7 @@ bins: max: 4.0 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -197,7 +197,7 @@ bins: max: 4.25 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null diff --git a/nnpdf_data/nnpdf_data/commondata/LHCB_Z0_8TEV_DIELECTRON/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/LHCB_Z0_8TEV_DIELECTRON/uncertainties.yaml index 02e9952730..61268e8c27 100644 --- a/nnpdf_data/nnpdf_data/commondata/LHCB_Z0_8TEV_DIELECTRON/uncertainties.yaml +++ b/nnpdf_data/nnpdf_data/commondata/LHCB_Z0_8TEV_DIELECTRON/uncertainties.yaml @@ -80,343 +80,343 @@ definitions: treatment: MULT type: LHCBLUMI8TEV bins: -- sys_corr_1: 50.496507932630884 - sys_corr_2: 0.04049132840833168 - sys_corr_3: -129.13634405459158 - sys_corr_4: -18.707870049910817 - sys_corr_5: 0.807526743196145 - sys_corr_6: -1.2147983290631617 - sys_corr_7: 2.3048643576534733 - sys_corr_8: -1.2624961788201694 - sys_corr_9: 2.365867252275522 - sys_corr_10: 1.881360968045207 - sys_corr_11: 0.4338779012587676 - sys_corr_12: 1.7161127468308068 - sys_corr_13: -0.33875234788310826 - sys_corr_14: -0.5082787239277523 - sys_corr_15: -1.299090751500243 - sys_corr_16: -0.7195345289257734 - sys_corr_17: 0.19634578620619214 +- sys_corr_1: 5.04965079e+01 + sys_corr_2: 4.04913284e-02 + sys_corr_3: -1.29136344e+02 + sys_corr_4: -1.87078700e+01 + sys_corr_5: 8.07526743e-01 + sys_corr_6: -1.21479833e+00 + sys_corr_7: 2.30486436e+00 + sys_corr_8: -1.26249618e+00 + sys_corr_9: 2.36586725e+00 + sys_corr_10: 1.88136097e+00 + sys_corr_11: 4.33877901e-01 + sys_corr_12: 1.71611275e+00 + sys_corr_13: -3.38752348e-01 + sys_corr_14: -5.08278724e-01 + sys_corr_15: -1.29909075e+00 + sys_corr_16: -7.19534529e-01 + sys_corr_17: 1.96345786e-01 stat: 370.0 sys_uncorr: 210.0 sys_luminosity: 100.0 -- sys_corr_1: 260.8201313481468 - sys_corr_2: 0.004649644494034206 - sys_corr_3: 1.1312004587193225 - sys_corr_4: -0.1746604130507449 - sys_corr_5: -11.47669319671893 - sys_corr_6: 45.11958623260617 - sys_corr_7: 337.3660298581228 - sys_corr_8: -10.42498739630881 - sys_corr_9: 23.390385789874557 - sys_corr_10: 11.102480405594157 - sys_corr_11: -4.966504407390147 - sys_corr_12: 4.159894241068048 - sys_corr_13: 2.1697289679231897 - sys_corr_14: -2.4438544219750074 - sys_corr_15: -5.967884700985522 - sys_corr_16: -3.7347857857640077 - sys_corr_17: -2.635982287415979 +- sys_corr_1: 2.60820131e+02 + sys_corr_2: 4.64964449e-03 + sys_corr_3: 1.13120046e+00 + sys_corr_4: -1.74660413e-01 + sys_corr_5: -1.14766932e+01 + sys_corr_6: 4.51195862e+01 + sys_corr_7: 3.37366030e+02 + sys_corr_8: -1.04249874e+01 + sys_corr_9: 2.33903858e+01 + sys_corr_10: 1.11024804e+01 + sys_corr_11: -4.96650441e+00 + sys_corr_12: 4.15989424e+00 + sys_corr_13: 2.16972897e+00 + sys_corr_14: -2.44385442e+00 + sys_corr_15: -5.96788470e+00 + sys_corr_16: -3.73478579e+00 + sys_corr_17: -2.63598229e+00 stat: 610.0 sys_uncorr: 320.0 sys_luminosity: 320.0 -- sys_corr_1: 433.3301594179667 - sys_corr_2: 0.002152921624907857 - sys_corr_3: 0.9325887546944714 - sys_corr_4: -0.21918029852751442 - sys_corr_5: -5.137681821298785 - sys_corr_6: 10.32970119170905 - sys_corr_7: -22.40589915156305 - sys_corr_8: 138.78109325861305 - sys_corr_9: 419.6656552384307 - sys_corr_10: 17.01064523843662 - sys_corr_11: -7.428287673499487 - sys_corr_12: 15.165580455354759 - sys_corr_13: 3.4681391851686008 - sys_corr_14: -1.9582341135734034 - sys_corr_15: 0.9287610446913239 - sys_corr_16: 1.2163727425459774 - sys_corr_17: 4.091106440480844 +- sys_corr_1: 4.33330159e+02 + sys_corr_2: 2.15292162e-03 + sys_corr_3: 9.32588755e-01 + sys_corr_4: -2.19180299e-01 + sys_corr_5: -5.13768182e+00 + sys_corr_6: 1.03297012e+01 + sys_corr_7: -2.24058992e+01 + sys_corr_8: 1.38781093e+02 + sys_corr_9: 4.19665655e+02 + sys_corr_10: 1.70106452e+01 + sys_corr_11: -7.42828767e+00 + sys_corr_12: 1.51655805e+01 + sys_corr_13: 3.46813919e+00 + sys_corr_14: -1.95823411e+00 + sys_corr_15: 9.28761045e-01 + sys_corr_16: 1.21637274e+00 + sys_corr_17: 4.09110644e+00 stat: 720.0 sys_uncorr: 360.0 sys_luminosity: 490.0 -- sys_corr_1: 490.56773579227905 - sys_corr_2: -0.008587697630627568 - sys_corr_3: 0.573079282776089 - sys_corr_4: -0.29672223619663274 - sys_corr_5: -1.6613963901027071 - sys_corr_6: 2.09228076178561 - sys_corr_7: -6.249880176092601 - sys_corr_8: 3.3673300550585252 - sys_corr_9: -17.357098574855492 - sys_corr_10: -24.514471514853284 - sys_corr_11: 5.219763466857157 - sys_corr_12: -91.73895406632174 - sys_corr_13: 33.38375208522176 - sys_corr_14: 76.52852896944707 - sys_corr_15: -275.1913223404067 - sys_corr_16: -129.80600353687885 - sys_corr_17: 553.6143778548885 +- sys_corr_1: 4.90567736e+02 + sys_corr_2: -8.58769763e-03 + sys_corr_3: 5.73079283e-01 + sys_corr_4: -2.96722236e-01 + sys_corr_5: -1.66139639e+00 + sys_corr_6: 2.09228076e+00 + sys_corr_7: -6.24988018e+00 + sys_corr_8: 3.36733006e+00 + sys_corr_9: -1.73570986e+01 + sys_corr_10: -2.45144715e+01 + sys_corr_11: 5.21976347e+00 + sys_corr_12: -9.17389541e+01 + sys_corr_13: 3.33837521e+01 + sys_corr_14: 7.65285290e+01 + sys_corr_15: -2.75191322e+02 + sys_corr_16: -1.29806004e+02 + sys_corr_17: 5.53614378e+02 stat: 800.0 sys_uncorr: 390.0 sys_luminosity: 640.0 -- sys_corr_1: 827.5691427618733 - sys_corr_2: -0.03578683578818994 - sys_corr_3: 1.1030447176231104 - sys_corr_4: -0.5361180799245236 - sys_corr_5: -3.9177527564985724 - sys_corr_6: 7.744389168459887 - sys_corr_7: -12.582679853316773 - sys_corr_8: 15.2981767074147 - sys_corr_9: -43.68357456169184 - sys_corr_10: -62.74473986270624 - sys_corr_11: -19.06181661483347 - sys_corr_12: 569.6143369188591 - sys_corr_13: -1.0894054255734429 - sys_corr_14: -37.170059414544184 - sys_corr_15: -23.96679811886704 - sys_corr_16: -25.136563059868262 - sys_corr_17: 38.756535779535945 +- sys_corr_1: 8.27569143e+02 + sys_corr_2: -3.57868358e-02 + sys_corr_3: 1.10304472e+00 + sys_corr_4: -5.36118080e-01 + sys_corr_5: -3.91775276e+00 + sys_corr_6: 7.74438917e+00 + sys_corr_7: -1.25826799e+01 + sys_corr_8: 1.52981767e+01 + sys_corr_9: -4.36835746e+01 + sys_corr_10: -6.27447399e+01 + sys_corr_11: -1.90618166e+01 + sys_corr_12: 5.69614337e+02 + sys_corr_13: -1.08940543e+00 + sys_corr_14: -3.71700594e+01 + sys_corr_15: -2.39667981e+01 + sys_corr_16: -2.51365631e+01 + sys_corr_17: 3.87565358e+01 stat: 860.0 sys_uncorr: 400.0 sys_luminosity: 770.0 -- sys_corr_1: 914.4761392261046 - sys_corr_2: -0.0321443044365375 - sys_corr_3: 0.961448583387423 - sys_corr_4: -0.46880783195411896 - sys_corr_5: -3.1414063906445207 - sys_corr_6: 5.817644399212647 - sys_corr_7: -15.133127706642657 - sys_corr_8: 11.431150472806019 - sys_corr_9: -31.202175294147818 - sys_corr_10: -31.123623827452885 - sys_corr_11: -71.67273392042614 - sys_corr_12: -93.29036343105291 - sys_corr_13: 91.80887219546433 - sys_corr_14: 61.843699461938655 - sys_corr_15: -262.93229900214897 - sys_corr_16: -420.8091552307967 - sys_corr_17: -314.768597308241 +- sys_corr_1: 9.14476139e+02 + sys_corr_2: -3.21443044e-02 + sys_corr_3: 9.61448583e-01 + sys_corr_4: -4.68807832e-01 + sys_corr_5: -3.14140639e+00 + sys_corr_6: 5.81764440e+00 + sys_corr_7: -1.51331277e+01 + sys_corr_8: 1.14311505e+01 + sys_corr_9: -3.12021753e+01 + sys_corr_10: -3.11236238e+01 + sys_corr_11: -7.16727339e+01 + sys_corr_12: -9.32903634e+01 + sys_corr_13: 9.18088722e+01 + sys_corr_14: 6.18436995e+01 + sys_corr_15: -2.62932299e+02 + sys_corr_16: -4.20809155e+02 + sys_corr_17: -3.14768597e+02 stat: 930.0 sys_uncorr: 450.0 sys_luminosity: 880.0 -- sys_corr_1: 976.8781165825811 - sys_corr_2: -0.02842468562189049 - sys_corr_3: 0.8223490099417157 - sys_corr_4: -0.4222119328470888 - sys_corr_5: -2.5658106565163625 - sys_corr_6: 4.570169630051814 - sys_corr_7: -12.249747900222717 - sys_corr_8: 4.837121538875827 - sys_corr_9: -33.70502491867205 - sys_corr_10: -42.193759673224925 - sys_corr_11: 41.123250775981 - sys_corr_12: -113.30571068652375 - sys_corr_13: 336.42391729459365 - sys_corr_14: -467.3012170156349 - sys_corr_15: 196.80946209705266 - sys_corr_16: 16.3629553590119 - sys_corr_17: 55.754174644492785 +- sys_corr_1: 9.76878117e+02 + sys_corr_2: -2.84246856e-02 + sys_corr_3: 8.22349010e-01 + sys_corr_4: -4.22211933e-01 + sys_corr_5: -2.56581066e+00 + sys_corr_6: 4.57016963e+00 + sys_corr_7: -1.22497479e+01 + sys_corr_8: 4.83712154e+00 + sys_corr_9: -3.37050249e+01 + sys_corr_10: -4.21937597e+01 + sys_corr_11: 4.11232508e+01 + sys_corr_12: -1.13305711e+02 + sys_corr_13: 3.36423917e+02 + sys_corr_14: -4.67301217e+02 + sys_corr_15: 1.96809462e+02 + sys_corr_16: 1.63629554e+01 + sys_corr_17: 5.57541746e+01 stat: 980.0 sys_uncorr: 470.0 sys_luminosity: 930.0 -- sys_corr_1: 994.1417167069432 - sys_corr_2: -0.02884389238778375 - sys_corr_3: 0.8338868082121943 - sys_corr_4: -0.416626574924146 - sys_corr_5: -2.6158591242214024 - sys_corr_6: 4.674687216554839 - sys_corr_7: -12.28529798418905 - sys_corr_8: 5.138119252550279 - sys_corr_9: -33.75534325766906 - sys_corr_10: -41.50062991845168 - sys_corr_11: -376.6122546152226 - sys_corr_12: -106.79905944412688 - sys_corr_13: -464.47101862600823 - sys_corr_14: -94.0557764230837 - sys_corr_15: 147.78419202283987 - sys_corr_16: 18.096292173602077 - sys_corr_17: 31.98966645114852 +- sys_corr_1: 9.94141717e+02 + sys_corr_2: -2.88438924e-02 + sys_corr_3: 8.33886808e-01 + sys_corr_4: -4.16626575e-01 + sys_corr_5: -2.61585912e+00 + sys_corr_6: 4.67468722e+00 + sys_corr_7: -1.22852980e+01 + sys_corr_8: 5.13811925e+00 + sys_corr_9: -3.37553433e+01 + sys_corr_10: -4.15006299e+01 + sys_corr_11: -3.76612255e+02 + sys_corr_12: -1.06799059e+02 + sys_corr_13: -4.64471019e+02 + sys_corr_14: -9.40557764e+01 + sys_corr_15: 1.47784192e+02 + sys_corr_16: 1.80962922e+01 + sys_corr_17: 3.19896665e+01 stat: 990.0 sys_uncorr: 480.0 sys_luminosity: 950.0 -- sys_corr_1: 986.0194075220559 - sys_corr_2: -0.031542366655043445 - sys_corr_3: 0.8948920924855841 - sys_corr_4: -0.06976746073872711 - sys_corr_5: -3.2463709541005064 - sys_corr_6: 6.183854823233658 - sys_corr_7: -10.001549021449424 - sys_corr_8: 10.486322295070208 - sys_corr_9: -29.557318426414582 - sys_corr_10: -30.08507163591276 - sys_corr_11: 580.4244051069346 - sys_corr_12: -69.04003106402526 - sys_corr_13: -251.03426859840712 - sys_corr_14: 77.86250360948833 - sys_corr_15: 74.44440007039634 - sys_corr_16: 26.0100709562343 - sys_corr_17: -34.19239476260853 +- sys_corr_1: 9.86019408e+02 + sys_corr_2: -3.15423667e-02 + sys_corr_3: 8.94892092e-01 + sys_corr_4: -6.97674607e-02 + sys_corr_5: -3.24637095e+00 + sys_corr_6: 6.18385482e+00 + sys_corr_7: -1.00015490e+01 + sys_corr_8: 1.04863223e+01 + sys_corr_9: -2.95573184e+01 + sys_corr_10: -3.00850716e+01 + sys_corr_11: 5.80424405e+02 + sys_corr_12: -6.90400311e+01 + sys_corr_13: -2.51034269e+02 + sys_corr_14: 7.78625036e+01 + sys_corr_15: 7.44444001e+01 + sys_corr_16: 2.60100710e+01 + sys_corr_17: -3.41923948e+01 stat: 1030.0 sys_uncorr: 510.0 sys_luminosity: 950.0 -- sys_corr_1: 845.5426738945688 - sys_corr_2: -0.007377130909015639 - sys_corr_3: 0.5336197581181955 - sys_corr_4: -0.3846994556865095 - sys_corr_5: -3.6844637080638813 - sys_corr_6: 4.442035600106146 - sys_corr_7: -8.94792296677722 - sys_corr_8: 8.38548215112189 - sys_corr_9: -31.033475353537547 - sys_corr_10: -34.03125596387206 - sys_corr_11: -121.22895502888754 - sys_corr_12: -47.505307195477265 - sys_corr_13: 263.1985414193501 - sys_corr_14: 468.14606326722105 - sys_corr_15: 309.06527463106704 - sys_corr_16: 68.14207040088311 - sys_corr_17: 28.28699369624538 +- sys_corr_1: 8.45542674e+02 + sys_corr_2: -7.37713091e-03 + sys_corr_3: 5.33619758e-01 + sys_corr_4: -3.84699456e-01 + sys_corr_5: -3.68446371e+00 + sys_corr_6: 4.44203560e+00 + sys_corr_7: -8.94792297e+00 + sys_corr_8: 8.38548215e+00 + sys_corr_9: -3.10334754e+01 + sys_corr_10: -3.40312560e+01 + sys_corr_11: -1.21228955e+02 + sys_corr_12: -4.75053072e+01 + sys_corr_13: 2.63198541e+02 + sys_corr_14: 4.68146063e+02 + sys_corr_15: 3.09065275e+02 + sys_corr_16: 6.81420704e+01 + sys_corr_17: 2.82869937e+01 stat: 1020.0 sys_uncorr: 500.0 sys_luminosity: 850.0 -- sys_corr_1: 725.0137462279205 - sys_corr_2: -0.022390578393457657 - sys_corr_3: 0.6346749697558464 - sys_corr_4: -0.2896888556204003 - sys_corr_5: -2.5907724650764985 - sys_corr_6: 3.3584724559683363 - sys_corr_7: -9.550348758889768 - sys_corr_8: 10.81133163602782 - sys_corr_9: -26.307916897434552 - sys_corr_10: -47.50979024130608 - sys_corr_11: -64.19218420769158 - sys_corr_12: -60.1667543661723 - sys_corr_13: 72.38375606366824 - sys_corr_14: 22.19348816124246 - sys_corr_15: -370.4243950214366 - sys_corr_16: 474.1730592913089 - sys_corr_17: -131.34782794934677 +- sys_corr_1: 7.25013746e+02 + sys_corr_2: -2.23905784e-02 + sys_corr_3: 6.34674970e-01 + sys_corr_4: -2.89688856e-01 + sys_corr_5: -2.59077247e+00 + sys_corr_6: 3.35847246e+00 + sys_corr_7: -9.55034876e+00 + sys_corr_8: 1.08113316e+01 + sys_corr_9: -2.63079169e+01 + sys_corr_10: -4.75097902e+01 + sys_corr_11: -6.41921842e+01 + sys_corr_12: -6.01667544e+01 + sys_corr_13: 7.23837561e+01 + sys_corr_14: 2.21934882e+01 + sys_corr_15: -3.70424395e+02 + sys_corr_16: 4.74173059e+02 + sys_corr_17: -1.31347828e+02 stat: 1010.0 sys_uncorr: 510.0 sys_luminosity: 760.0 -- sys_corr_1: 476.93251837265854 - sys_corr_2: -0.015125989165059561 - sys_corr_3: 0.8429306029109884 - sys_corr_4: -0.06761987763604935 - sys_corr_5: -2.2093000275460346 - sys_corr_6: 4.746611000585601 - sys_corr_7: -12.827336957802414 - sys_corr_8: 19.242004983384003 - sys_corr_9: -39.69649438166075 - sys_corr_10: 522.512221097237 - sys_corr_11: -12.918281440183721 - sys_corr_12: 26.932931075842962 - sys_corr_13: 6.144792122699993 - sys_corr_14: -5.547441486203744 - sys_corr_15: -12.615032525985512 - sys_corr_16: 17.5865866350877 - sys_corr_17: 6.956554277314321 +- sys_corr_1: 4.76932518e+02 + sys_corr_2: -1.51259892e-02 + sys_corr_3: 8.42930603e-01 + sys_corr_4: -6.76198776e-02 + sys_corr_5: -2.20930003e+00 + sys_corr_6: 4.74661100e+00 + sys_corr_7: -1.28273370e+01 + sys_corr_8: 1.92420050e+01 + sys_corr_9: -3.96964944e+01 + sys_corr_10: 5.22512221e+02 + sys_corr_11: -1.29182814e+01 + sys_corr_12: 2.69329311e+01 + sys_corr_13: 6.14479212e+00 + sys_corr_14: -5.54744149e+00 + sys_corr_15: -1.26150325e+01 + sys_corr_16: 1.75865866e+01 + sys_corr_17: 6.95655428e+00 stat: 920.0 sys_uncorr: 460.0 sys_luminosity: 560.0 -- sys_corr_1: 308.47890119046457 - sys_corr_2: -0.013363349993863224 - sys_corr_3: 0.8476795120862936 - sys_corr_4: 0.03096777247789691 - sys_corr_5: -3.3263885828081587 - sys_corr_6: 5.352021292608165 - sys_corr_7: -19.14271502500144 - sys_corr_8: -407.74014350071195 - sys_corr_9: 134.6572692794239 - sys_corr_10: 22.931060737663742 - sys_corr_11: 0.7727457890024667 - sys_corr_12: 17.220682941627658 - sys_corr_13: 3.2319732953927702 - sys_corr_14: 5.579593535141808 - sys_corr_15: -8.008139269093487 - sys_corr_16: 2.6075118165466424 - sys_corr_17: -3.7149653502962736 +- sys_corr_1: 3.08478901e+02 + sys_corr_2: -1.33633500e-02 + sys_corr_3: 8.47679512e-01 + sys_corr_4: 3.09677725e-02 + sys_corr_5: -3.32638858e+00 + sys_corr_6: 5.35202129e+00 + sys_corr_7: -1.91427150e+01 + sys_corr_8: -4.07740144e+02 + sys_corr_9: 1.34657269e+02 + sys_corr_10: 2.29310607e+01 + sys_corr_11: 7.72745789e-01 + sys_corr_12: 1.72206829e+01 + sys_corr_13: 3.23197330e+00 + sys_corr_14: 5.57959354e+00 + sys_corr_15: -8.00813927e+00 + sys_corr_16: 2.60751182e+00 + sys_corr_17: -3.71496535e+00 stat: 840.0 sys_uncorr: 410.0 sys_luminosity: 410.0 -- sys_corr_1: 170.9841901664493 - sys_corr_2: -0.026103848890141945 - sys_corr_3: 0.8388935877727252 - sys_corr_4: -0.1585424569194083 - sys_corr_5: -7.686088601496642 - sys_corr_6: -312.8946452815332 - sys_corr_7: 45.64403119417047 - sys_corr_8: -2.353569361878287 - sys_corr_9: 14.661513900337168 - sys_corr_10: 5.310635571265545 - sys_corr_11: 1.122693837638245 - sys_corr_12: 7.53173283603874 - sys_corr_13: -0.026383763879400342 - sys_corr_14: 0.4698909771119435 - sys_corr_15: -1.4929680267537562 - sys_corr_16: -2.4181041842768862 - sys_corr_17: -1.782504225198774 +- sys_corr_1: 1.70984190e+02 + sys_corr_2: -2.61038489e-02 + sys_corr_3: 8.38893588e-01 + sys_corr_4: -1.58542457e-01 + sys_corr_5: -7.68608860e+00 + sys_corr_6: -3.12894645e+02 + sys_corr_7: 4.56440312e+01 + sys_corr_8: -2.35356936e+00 + sys_corr_9: 1.46615139e+01 + sys_corr_10: 5.31063557e+00 + sys_corr_11: 1.12269384e+00 + sys_corr_12: 7.53173284e+00 + sys_corr_13: -2.63837639e-02 + sys_corr_14: 4.69890977e-01 + sys_corr_15: -1.49296803e+00 + sys_corr_16: -2.41810418e+00 + sys_corr_17: -1.78250423e+00 stat: 740.0 sys_uncorr: 370.0 sys_luminosity: 280.0 -- sys_corr_1: 112.4445876097833 - sys_corr_2: -0.020010812079248222 - sys_corr_3: 0.7233944146206855 - sys_corr_4: -0.8221642663149691 - sys_corr_5: 255.7191548662301 - sys_corr_6: -6.580827749250669 - sys_corr_7: 14.670751862204295 - sys_corr_8: -2.0249672511585564 - sys_corr_9: 8.382890165073489 - sys_corr_10: 2.1041028170697427 - sys_corr_11: -0.03768482737589176 - sys_corr_12: 3.7462311416642775 - sys_corr_13: 1.5481265721675506 - sys_corr_14: 2.8876132216832797 - sys_corr_15: -0.7520062422430991 - sys_corr_16: 0.04405391775219709 - sys_corr_17: -0.2278751926595178 +- sys_corr_1: 1.12444588e+02 + sys_corr_2: -2.00108121e-02 + sys_corr_3: 7.23394415e-01 + sys_corr_4: -8.22164266e-01 + sys_corr_5: 2.55719155e+02 + sys_corr_6: -6.58082775e+00 + sys_corr_7: 1.46707519e+01 + sys_corr_8: -2.02496725e+00 + sys_corr_9: 8.38289017e+00 + sys_corr_10: 2.10410282e+00 + sys_corr_11: -3.76848274e-02 + sys_corr_12: 3.74623114e+00 + sys_corr_13: 1.54812657e+00 + sys_corr_14: 2.88761322e+00 + sys_corr_15: -7.52006242e-01 + sys_corr_16: 4.40539178e-02 + sys_corr_17: -2.27875193e-01 stat: 640.0 sys_uncorr: 330.0 sys_luminosity: 170.0 -- sys_corr_1: 29.373965827027657 - sys_corr_2: -0.046515783930044276 - sys_corr_3: -19.279847025417364 - sys_corr_4: 125.12370280021695 - sys_corr_5: 1.6967459971616417 - sys_corr_6: -0.4229692871432171 - sys_corr_7: 0.6655507728609588 - sys_corr_8: 0.34138605823748375 - sys_corr_9: 0.39641219824271445 - sys_corr_10: -0.33171151882763444 - sys_corr_11: -1.6119645040254365 - sys_corr_12: 1.1449137792355444 - sys_corr_13: 0.8152428610292696 - sys_corr_14: -0.16932690079863721 - sys_corr_15: -0.6625284603442823 - sys_corr_16: -0.6594052342456883 - sys_corr_17: 0.39195384025846214 +- sys_corr_1: 2.93739658e+01 + sys_corr_2: -4.65157839e-02 + sys_corr_3: -1.92798470e+01 + sys_corr_4: 1.25123703e+02 + sys_corr_5: 1.69674600e+00 + sys_corr_6: -4.22969287e-01 + sys_corr_7: 6.65550773e-01 + sys_corr_8: 3.41386058e-01 + sys_corr_9: 3.96412198e-01 + sys_corr_10: -3.31711519e-01 + sys_corr_11: -1.61196450e+00 + sys_corr_12: 1.14491378e+00 + sys_corr_13: 8.15242861e-01 + sys_corr_14: -1.69326901e-01 + sys_corr_15: -6.62528460e-01 + sys_corr_16: -6.59405234e-01 + sys_corr_17: 3.91953840e-01 stat: 570.0 sys_uncorr: 280.0 sys_luminosity: 80.0 -- sys_corr_1: 4.745524463989869 - sys_corr_2: 39.7142438730885 - sys_corr_3: 0.11467856265026884 - sys_corr_4: 0.16330339810484787 - sys_corr_5: 0.1097306916273498 - sys_corr_6: -0.1840336463752876 - sys_corr_7: -0.0714056756833497 - sys_corr_8: -0.09011276053279414 - sys_corr_9: -0.14446807093539382 - sys_corr_10: 0.002373457741091191 - sys_corr_11: 0.07884060787827346 - sys_corr_12: 0.18286863484352212 - sys_corr_13: -0.12063463840253372 - sys_corr_14: -0.20610854945214868 - sys_corr_15: -0.14569029972433156 - sys_corr_16: -0.059471901490252665 - sys_corr_17: -0.13249239099771737 +- sys_corr_1: 4.74552446e+00 + sys_corr_2: 3.97142439e+01 + sys_corr_3: 1.14678563e-01 + sys_corr_4: 1.63303398e-01 + sys_corr_5: 1.09730692e-01 + sys_corr_6: -1.84033646e-01 + sys_corr_7: -7.14056757e-02 + sys_corr_8: -9.01127605e-02 + sys_corr_9: -1.44468071e-01 + sys_corr_10: 2.37345774e-03 + sys_corr_11: 7.88406079e-02 + sys_corr_12: 1.82868635e-01 + sys_corr_13: -1.20634638e-01 + sys_corr_14: -2.06108549e-01 + sys_corr_15: -1.45690300e-01 + sys_corr_16: -5.94719015e-02 + sys_corr_17: -1.32492391e-01 stat: 330.0 sys_uncorr: 160.0 sys_luminosity: 20.0 diff --git a/nnpdf_data/nnpdf_data/commondata/LHCB_Z0_8TEV_MUON/filter.py b/nnpdf_data/nnpdf_data/commondata/LHCB_Z0_8TEV_MUON/filter.py index 4ecaf473a7..8587e88221 100644 --- a/nnpdf_data/nnpdf_data/commondata/LHCB_Z0_8TEV_MUON/filter.py +++ b/nnpdf_data/nnpdf_data/commondata/LHCB_Z0_8TEV_MUON/filter.py @@ -4,7 +4,9 @@ import pandas as pd import yaml -from nnpdf_data.filter_utils.utils import covmat_to_artunc +from nnpdf_data.filter_utils.utils import covmat_to_artunc, prettify_float + +yaml.add_representer(float, prettify_float) MZ_VALUE = 91.1876 # GeV MW_VALUE = 80.398 # GeV diff --git a/nnpdf_data/nnpdf_data/commondata/LHCB_Z0_8TEV_MUON/kinematics.yaml b/nnpdf_data/nnpdf_data/commondata/LHCB_Z0_8TEV_MUON/kinematics.yaml index b074170b3b..693d9621a7 100644 --- a/nnpdf_data/nnpdf_data/commondata/LHCB_Z0_8TEV_MUON/kinematics.yaml +++ b/nnpdf_data/nnpdf_data/commondata/LHCB_Z0_8TEV_MUON/kinematics.yaml @@ -5,7 +5,7 @@ bins: max: 2.125 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -17,7 +17,7 @@ bins: max: 2.25 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -29,7 +29,7 @@ bins: max: 2.375 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -41,7 +41,7 @@ bins: max: 2.5 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -53,7 +53,7 @@ bins: max: 2.625 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -65,7 +65,7 @@ bins: max: 2.75 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -77,7 +77,7 @@ bins: max: 2.875 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -89,7 +89,7 @@ bins: max: 3.0 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -101,7 +101,7 @@ bins: max: 3.125 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -113,7 +113,7 @@ bins: max: 3.25 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -125,7 +125,7 @@ bins: max: 3.375 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -137,7 +137,7 @@ bins: max: 3.5 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -149,7 +149,7 @@ bins: max: 3.625 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -161,7 +161,7 @@ bins: max: 3.75 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -173,7 +173,7 @@ bins: max: 3.875 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -185,7 +185,7 @@ bins: max: 4.0 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -197,7 +197,7 @@ bins: max: 4.25 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null @@ -209,7 +209,7 @@ bins: max: 4.5 M2: min: null - mid: 8315.178393760001 + mid: 8.31517839e+03 max: null sqrts: min: null diff --git a/nnpdf_data/nnpdf_data/commondata/LHCB_Z0_8TEV_MUON/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/LHCB_Z0_8TEV_MUON/uncertainties.yaml index 442a5e3f8d..45a37b7278 100644 --- a/nnpdf_data/nnpdf_data/commondata/LHCB_Z0_8TEV_MUON/uncertainties.yaml +++ b/nnpdf_data/nnpdf_data/commondata/LHCB_Z0_8TEV_MUON/uncertainties.yaml @@ -148,669 +148,669 @@ definitions: treatment: MULT type: LHCBLUMI8TEV bins: -- sys_corr_1: -13.129371357446566 - sys_corr_2: 0.6853465481127958 - sys_corr_3: -1.8136153124140044 - sys_corr_4: -1.6378919565260077 - sys_corr_5: 1.0056447881502208 - sys_corr_6: 0.9250488794404468 - sys_corr_7: -0.6130610634103546 - sys_corr_8: -1.0337778710980714 - sys_corr_9: 0.9022978319046373 - sys_corr_10: 0.5049756150293242 - sys_corr_11: -0.8765726686085896 - sys_corr_12: 0.5378206330645783 - sys_corr_13: -0.10895523093283618 - sys_corr_14: -0.48815555181063336 - sys_corr_15: -0.26556805383949933 - sys_corr_16: 0.03401879609859952 - sys_corr_17: -11.515944076989122 - sys_corr_18: -9.944936568212495e-05 - sys_corr_19: -0.007574441556954944 - sys_corr_20: 0.0036078709273934776 - sys_corr_21: 0.05449798823331223 - sys_corr_22: -0.08061168467580225 - sys_corr_23: 0.2232461165908627 - sys_corr_24: 5.565016708385976 - sys_corr_25: 0.2609714050579445 - sys_corr_26: -39.97407191458968 - sys_corr_27: -27.943155261017633 - sys_corr_28: -16.32894214901788 - sys_corr_29: -4.436995222441291 - sys_corr_30: -0.8115865284667331 - sys_corr_31: -0.37556594257327414 - sys_corr_32: 1.9696013567173964 - sys_corr_33: -2.632405659665658 - sys_corr_34: -0.16647209735490842 +- sys_corr_1: -1.31293714e+01 + sys_corr_2: 6.85346548e-01 + sys_corr_3: -1.81361531e+00 + sys_corr_4: -1.63789196e+00 + sys_corr_5: 1.00564479e+00 + sys_corr_6: 9.25048879e-01 + sys_corr_7: -6.13061063e-01 + sys_corr_8: -1.03377787e+00 + sys_corr_9: 9.02297832e-01 + sys_corr_10: 5.04975615e-01 + sys_corr_11: -8.76572669e-01 + sys_corr_12: 5.37820633e-01 + sys_corr_13: -1.08955231e-01 + sys_corr_14: -4.88155552e-01 + sys_corr_15: -2.65568054e-01 + sys_corr_16: 3.40187961e-02 + sys_corr_17: -1.15159441e+01 + sys_corr_18: -9.94493657e-05 + sys_corr_19: -7.57444156e-03 + sys_corr_20: 3.60787093e-03 + sys_corr_21: 5.44979882e-02 + sys_corr_22: -8.06116847e-02 + sys_corr_23: 2.23246117e-01 + sys_corr_24: 5.56501671e+00 + sys_corr_25: 2.60971405e-01 + sys_corr_26: -3.99740719e+01 + sys_corr_27: -2.79431553e+01 + sys_corr_28: -1.63289421e+01 + sys_corr_29: -4.43699522e+00 + sys_corr_30: -8.11586528e-01 + sys_corr_31: -3.75565943e-01 + sys_corr_32: 1.96960136e+00 + sys_corr_33: -2.63240566e+00 + sys_corr_34: -1.66472097e-01 stat: 33.0 sys_beam: 14.0 sys_luminosity: 14.0 -- sys_corr_1: -19.84410989915686 - sys_corr_2: -0.33428052767624017 - sys_corr_3: 2.670922737160205 - sys_corr_4: -1.1222915328655707 - sys_corr_5: 2.2445396406956237 - sys_corr_6: 1.2318412040026738 - sys_corr_7: -0.9643207591596933 - sys_corr_8: -2.290860727968255 - sys_corr_9: 1.1342800899064787 - sys_corr_10: -0.8548057471102758 - sys_corr_11: -1.7962495571776689 - sys_corr_12: -0.07911083910584618 - sys_corr_13: -0.4729515020260823 - sys_corr_14: 0.2558186095239544 - sys_corr_15: -0.3882769649812642 - sys_corr_16: -0.0652189367024966 - sys_corr_17: -20.03065356651135 - sys_corr_18: -5.9389068400393175e-05 - sys_corr_19: -0.005317597654028506 - sys_corr_20: -0.012280961378434697 - sys_corr_21: 0.04723338963266031 - sys_corr_22: 0.08725074045398798 - sys_corr_23: -0.22008265182366893 - sys_corr_24: 10.334303066977842 - sys_corr_25: -1.8910305617960286 - sys_corr_26: 31.412187227654297 - sys_corr_27: -31.612351485476285 - sys_corr_28: -24.076341536265016 - sys_corr_29: -7.556695045725688 - sys_corr_30: 1.0636142561363102 - sys_corr_31: 1.6785623920713753 - sys_corr_32: 3.8317829078782055 - sys_corr_33: -4.904694970048211 - sys_corr_34: -1.4462770770535842 +- sys_corr_1: -1.98441099e+01 + sys_corr_2: -3.34280528e-01 + sys_corr_3: 2.67092274e+00 + sys_corr_4: -1.12229153e+00 + sys_corr_5: 2.24453964e+00 + sys_corr_6: 1.23184120e+00 + sys_corr_7: -9.64320759e-01 + sys_corr_8: -2.29086073e+00 + sys_corr_9: 1.13428009e+00 + sys_corr_10: -8.54805747e-01 + sys_corr_11: -1.79624956e+00 + sys_corr_12: -7.91108391e-02 + sys_corr_13: -4.72951502e-01 + sys_corr_14: 2.55818610e-01 + sys_corr_15: -3.88276965e-01 + sys_corr_16: -6.52189367e-02 + sys_corr_17: -2.00306536e+01 + sys_corr_18: -5.93890684e-05 + sys_corr_19: -5.31759765e-03 + sys_corr_20: -1.22809614e-02 + sys_corr_21: 4.72333896e-02 + sys_corr_22: 8.72507405e-02 + sys_corr_23: -2.20082652e-01 + sys_corr_24: 1.03343031e+01 + sys_corr_25: -1.89103056e+00 + sys_corr_26: 3.14121872e+01 + sys_corr_27: -3.16123515e+01 + sys_corr_28: -2.40763415e+01 + sys_corr_29: -7.55669505e+00 + sys_corr_30: 1.06361426e+00 + sys_corr_31: 1.67856239e+00 + sys_corr_32: 3.83178291e+00 + sys_corr_33: -4.90469497e+00 + sys_corr_34: -1.44627708e+00 stat: 51.0 sys_beam: 38.0 sys_luminosity: 38.0 -- sys_corr_1: -21.06803631144305 - sys_corr_2: -2.8187263609581037 - sys_corr_3: 7.429751053129757 - sys_corr_4: -1.236385409231223 - sys_corr_5: 0.4400202992760449 - sys_corr_6: 0.8285805636546832 - sys_corr_7: -0.18333076844149918 - sys_corr_8: -1.8866832461204062 - sys_corr_9: 1.0748601041254102 - sys_corr_10: -0.9841457536126821 - sys_corr_11: -2.2265738633786056 - sys_corr_12: -0.5655169182096085 - sys_corr_13: -0.4881568704060237 - sys_corr_14: -0.7820357793522866 - sys_corr_15: -0.0591950959516241 - sys_corr_16: -1.1097250976141682 - sys_corr_17: -24.699858197477425 - sys_corr_18: -3.105265933150413e-05 - sys_corr_19: 0.0027633726426110903 - sys_corr_20: -0.01714976905984696 - sys_corr_21: 0.03260600131360796 - sys_corr_22: -0.02846572509880877 - sys_corr_23: -0.14676912642260082 - sys_corr_24: 12.565805182401665 - sys_corr_25: 0.6256157595772878 - sys_corr_26: -3.587946103250402 - sys_corr_27: 31.925361874872813 - sys_corr_28: -40.75747797841242 - sys_corr_29: -8.403699350568834 - sys_corr_30: -2.1525840708785995 - sys_corr_31: 1.1118986638849773 - sys_corr_32: 3.4014199295339713 - sys_corr_33: -4.750919333246441 - sys_corr_34: -1.0948035574690989 +- sys_corr_1: -2.10680363e+01 + sys_corr_2: -2.81872636e+00 + sys_corr_3: 7.42975105e+00 + sys_corr_4: -1.23638541e+00 + sys_corr_5: 4.40020299e-01 + sys_corr_6: 8.28580564e-01 + sys_corr_7: -1.83330768e-01 + sys_corr_8: -1.88668325e+00 + sys_corr_9: 1.07486010e+00 + sys_corr_10: -9.84145754e-01 + sys_corr_11: -2.22657386e+00 + sys_corr_12: -5.65516918e-01 + sys_corr_13: -4.88156870e-01 + sys_corr_14: -7.82035779e-01 + sys_corr_15: -5.91950960e-02 + sys_corr_16: -1.10972510e+00 + sys_corr_17: -2.46998582e+01 + sys_corr_18: -3.10526593e-05 + sys_corr_19: 2.76337264e-03 + sys_corr_20: -1.71497691e-02 + sys_corr_21: 3.26060013e-02 + sys_corr_22: -2.84657251e-02 + sys_corr_23: -1.46769126e-01 + sys_corr_24: 1.25658052e+01 + sys_corr_25: 6.25615760e-01 + sys_corr_26: -3.58794610e+00 + sys_corr_27: 3.19253619e+01 + sys_corr_28: -4.07574780e+01 + sys_corr_29: -8.40369935e+00 + sys_corr_30: -2.15258407e+00 + sys_corr_31: 1.11189866e+00 + sys_corr_32: 3.40141993e+00 + sys_corr_33: -4.75091933e+00 + sys_corr_34: -1.09480356e+00 stat: 62.0 sys_beam: 57.0 sys_luminosity: 58.0 -- sys_corr_1: -23.3387939352119 - sys_corr_2: -5.015020292076104 - sys_corr_3: 8.195207361706753 - sys_corr_4: -3.6167946329495297 - sys_corr_5: -1.5375896951453918 - sys_corr_6: -0.5055645332316405 - sys_corr_7: -0.16566054440242206 - sys_corr_8: -1.3674236995198723 - sys_corr_9: 0.9863174769321807 - sys_corr_10: -0.1168914762976303 - sys_corr_11: -2.7627979637828908 - sys_corr_12: -0.7334770006814376 - sys_corr_13: -0.3971020272104272 - sys_corr_14: -0.95133434205179 - sys_corr_15: -0.5236614050232826 - sys_corr_16: 0.14328103033375855 - sys_corr_17: -33.10807446118345 - sys_corr_18: -1.1676986085192038e-05 - sys_corr_19: -0.005199428393547465 - sys_corr_20: 0.0030204570342204614 - sys_corr_21: 0.04012076569198424 - sys_corr_22: 0.0038033078620872446 - sys_corr_23: 0.13823101139046734 - sys_corr_24: 20.184900578635258 - sys_corr_25: 0.7835344757729851 - sys_corr_26: -1.5428612589179613 - sys_corr_27: 2.9113392297959284 - sys_corr_28: 19.877343744885955 - sys_corr_29: -18.81752249516219 - sys_corr_30: 5.17101146368958 - sys_corr_31: 3.2665481446177567 - sys_corr_32: 45.33543603498056 - sys_corr_33: -6.7621973249488265 - sys_corr_34: -10.777895659172056 +- sys_corr_1: -2.33387939e+01 + sys_corr_2: -5.01502029e+00 + sys_corr_3: 8.19520736e+00 + sys_corr_4: -3.61679463e+00 + sys_corr_5: -1.53758970e+00 + sys_corr_6: -5.05564533e-01 + sys_corr_7: -1.65660544e-01 + sys_corr_8: -1.36742370e+00 + sys_corr_9: 9.86317477e-01 + sys_corr_10: -1.16891476e-01 + sys_corr_11: -2.76279796e+00 + sys_corr_12: -7.33477001e-01 + sys_corr_13: -3.97102027e-01 + sys_corr_14: -9.51334342e-01 + sys_corr_15: -5.23661405e-01 + sys_corr_16: 1.43281030e-01 + sys_corr_17: -3.31080745e+01 + sys_corr_18: -1.16769861e-05 + sys_corr_19: -5.19942839e-03 + sys_corr_20: 3.02045703e-03 + sys_corr_21: 4.01207657e-02 + sys_corr_22: 3.80330786e-03 + sys_corr_23: 1.38231011e-01 + sys_corr_24: 2.01849006e+01 + sys_corr_25: 7.83534476e-01 + sys_corr_26: -1.54286126e+00 + sys_corr_27: 2.91133923e+00 + sys_corr_28: 1.98773437e+01 + sys_corr_29: -1.88175225e+01 + sys_corr_30: 5.17101146e+00 + sys_corr_31: 3.26654814e+00 + sys_corr_32: 4.53354360e+01 + sys_corr_33: -6.76219732e+00 + sys_corr_34: -1.07778957e+01 stat: 70.0 sys_beam: 77.0 sys_luminosity: 78.0 -- sys_corr_1: -23.62879238801978 - sys_corr_2: -6.87193436933576 - sys_corr_3: 8.83823680239778 - sys_corr_4: -5.7537272091857865 - sys_corr_5: -1.5402984336350092 - sys_corr_6: -0.34511927064998793 - sys_corr_7: 0.41310581668467056 - sys_corr_8: 0.5073510714925774 - sys_corr_9: 1.5788941118756097 - sys_corr_10: 0.7607246969862658 - sys_corr_11: -2.673007365634023 - sys_corr_12: -1.2417474817491765 - sys_corr_13: -0.7432869137170354 - sys_corr_14: -0.5989974516236286 - sys_corr_15: -0.06637383592029723 - sys_corr_16: 0.7411626588091698 - sys_corr_17: -36.49951097455011 - sys_corr_18: 5.846611291372814e-06 - sys_corr_19: -0.00017524139523300978 - sys_corr_20: -0.00808526874152184 - sys_corr_21: 0.05044391052297366 - sys_corr_22: -0.15328563391067396 - sys_corr_23: 0.49110134937745753 - sys_corr_24: 17.639144407135866 - sys_corr_25: 1.555577025693582 - sys_corr_26: -0.2941962686942436 - sys_corr_27: 1.4513100444743 - sys_corr_28: 12.997331532179793 - sys_corr_29: -22.221925461567245 - sys_corr_30: 7.42411526075697 - sys_corr_31: -10.124571665101879 - sys_corr_32: -22.849337902785333 - sys_corr_33: -10.788104365353474 - sys_corr_34: 40.44768877782353 +- sys_corr_1: -2.36287924e+01 + sys_corr_2: -6.87193437e+00 + sys_corr_3: 8.83823680e+00 + sys_corr_4: -5.75372721e+00 + sys_corr_5: -1.54029843e+00 + sys_corr_6: -3.45119271e-01 + sys_corr_7: 4.13105817e-01 + sys_corr_8: 5.07351071e-01 + sys_corr_9: 1.57889411e+00 + sys_corr_10: 7.60724697e-01 + sys_corr_11: -2.67300737e+00 + sys_corr_12: -1.24174748e+00 + sys_corr_13: -7.43286914e-01 + sys_corr_14: -5.98997452e-01 + sys_corr_15: -6.63738359e-02 + sys_corr_16: 7.41162659e-01 + sys_corr_17: -3.64995110e+01 + sys_corr_18: 5.84661129e-06 + sys_corr_19: -1.75241395e-04 + sys_corr_20: -8.08526874e-03 + sys_corr_21: 5.04439105e-02 + sys_corr_22: -1.53285634e-01 + sys_corr_23: 4.91101349e-01 + sys_corr_24: 1.76391444e+01 + sys_corr_25: 1.55557703e+00 + sys_corr_26: -2.94196269e-01 + sys_corr_27: 1.45131004e+00 + sys_corr_28: 1.29973315e+01 + sys_corr_29: -2.22219255e+01 + sys_corr_30: 7.42411526e+00 + sys_corr_31: -1.01245717e+01 + sys_corr_32: -2.28493379e+01 + sys_corr_33: -1.07881044e+01 + sys_corr_34: 4.04476888e+01 stat: 76.0 sys_beam: 93.0 sys_luminosity: 94.0 -- sys_corr_1: -23.305638822180896 - sys_corr_2: -7.893736699339743 - sys_corr_3: 9.253795984805567 - sys_corr_4: -7.241905559104666 - sys_corr_5: -1.9123722247234651 - sys_corr_6: 0.5912138549585202 - sys_corr_7: 0.046522493839806764 - sys_corr_8: 0.7199048005799586 - sys_corr_9: 1.828692488405099 - sys_corr_10: 2.1832257020459434 - sys_corr_11: -2.0150365232945977 - sys_corr_12: -1.8353749829105612 - sys_corr_13: 0.001518734723146232 - sys_corr_14: -0.4820989621950967 - sys_corr_15: 1.213798569671235 - sys_corr_16: 1.121115480524444 - sys_corr_17: -36.92425033443776 - sys_corr_18: 1.4188601726670624e-05 - sys_corr_19: -0.008850403418067134 - sys_corr_20: -0.024878253073439608 - sys_corr_21: 0.09023808536291997 - sys_corr_22: -0.21273521070741153 - sys_corr_23: 0.5683465667238542 - sys_corr_24: 9.560426327355785 - sys_corr_25: 1.6835388239352824 - sys_corr_26: -0.6834505876518351 - sys_corr_27: 0.6825047572020109 - sys_corr_28: 7.890847045559323 - sys_corr_29: -14.455305993927523 - sys_corr_30: 10.42790997028791 - sys_corr_31: -2.6562075756908268 - sys_corr_32: -29.801504695845157 - sys_corr_33: 18.833535007792904 - sys_corr_34: -40.25708269143495 +- sys_corr_1: -2.33056388e+01 + sys_corr_2: -7.89373670e+00 + sys_corr_3: 9.25379598e+00 + sys_corr_4: -7.24190556e+00 + sys_corr_5: -1.91237222e+00 + sys_corr_6: 5.91213855e-01 + sys_corr_7: 4.65224938e-02 + sys_corr_8: 7.19904801e-01 + sys_corr_9: 1.82869249e+00 + sys_corr_10: 2.18322570e+00 + sys_corr_11: -2.01503652e+00 + sys_corr_12: -1.83537498e+00 + sys_corr_13: 1.51873472e-03 + sys_corr_14: -4.82098962e-01 + sys_corr_15: 1.21379857e+00 + sys_corr_16: 1.12111548e+00 + sys_corr_17: -3.69242503e+01 + sys_corr_18: 1.41886017e-05 + sys_corr_19: -8.85040342e-03 + sys_corr_20: -2.48782531e-02 + sys_corr_21: 9.02380854e-02 + sys_corr_22: -2.12735211e-01 + sys_corr_23: 5.68346567e-01 + sys_corr_24: 9.56042633e+00 + sys_corr_25: 1.68353882e+00 + sys_corr_26: -6.83450588e-01 + sys_corr_27: 6.82504757e-01 + sys_corr_28: 7.89084705e+00 + sys_corr_29: -1.44553060e+01 + sys_corr_30: 1.04279100e+01 + sys_corr_31: -2.65620758e+00 + sys_corr_32: -2.98015047e+01 + sys_corr_33: 1.88335350e+01 + sys_corr_34: -4.02570827e+01 stat: 79.0 sys_beam: 103.0 sys_luminosity: 105.0 -- sys_corr_1: -23.122870553655485 - sys_corr_2: -8.47299229535122 - sys_corr_3: 9.978884071326535 - sys_corr_4: -8.191892596977446 - sys_corr_5: -2.170985058688854 - sys_corr_6: 1.1927202283582248 - sys_corr_7: 1.027768527951745 - sys_corr_8: 1.3222563308413293 - sys_corr_9: 0.33906685145682963 - sys_corr_10: 2.5599804325752222 - sys_corr_11: -1.6074832724595463 - sys_corr_12: -1.6149874429471522 - sys_corr_13: -0.1816302646114862 - sys_corr_14: -1.3175100328466482 - sys_corr_15: 1.2937203505127026 - sys_corr_16: 0.43723597691800703 - sys_corr_17: -39.00203494074587 - sys_corr_18: 1.5486962829685152e-05 - sys_corr_19: -0.006718922393631411 - sys_corr_20: -0.01818785300696696 - sys_corr_21: 0.05958653229899917 - sys_corr_22: -0.29423833975824465 - sys_corr_23: 0.8058671737702581 - sys_corr_24: 7.740143059282549 - sys_corr_25: 2.2743790555258894 - sys_corr_26: -0.9438822433707657 - sys_corr_27: 0.23546915242928015 - sys_corr_28: 4.6731622857077495 - sys_corr_29: 31.634166617711443 - sys_corr_30: 4.348764566820343 - sys_corr_31: 47.20725640422164 - sys_corr_32: -6.675227803551185 - sys_corr_33: -7.705400923214566 - sys_corr_34: 4.070133302804576 +- sys_corr_1: -2.31228706e+01 + sys_corr_2: -8.47299230e+00 + sys_corr_3: 9.97888407e+00 + sys_corr_4: -8.19189260e+00 + sys_corr_5: -2.17098506e+00 + sys_corr_6: 1.19272023e+00 + sys_corr_7: 1.02776853e+00 + sys_corr_8: 1.32225633e+00 + sys_corr_9: 3.39066851e-01 + sys_corr_10: 2.55998043e+00 + sys_corr_11: -1.60748327e+00 + sys_corr_12: -1.61498744e+00 + sys_corr_13: -1.81630265e-01 + sys_corr_14: -1.31751003e+00 + sys_corr_15: 1.29372035e+00 + sys_corr_16: 4.37235977e-01 + sys_corr_17: -3.90020349e+01 + sys_corr_18: 1.54869628e-05 + sys_corr_19: -6.71892239e-03 + sys_corr_20: -1.81878530e-02 + sys_corr_21: 5.95865323e-02 + sys_corr_22: -2.94238340e-01 + sys_corr_23: 8.05867174e-01 + sys_corr_24: 7.74014306e+00 + sys_corr_25: 2.27437906e+00 + sys_corr_26: -9.43882243e-01 + sys_corr_27: 2.35469152e-01 + sys_corr_28: 4.67316229e+00 + sys_corr_29: 3.16341666e+01 + sys_corr_30: 4.34876457e+00 + sys_corr_31: 4.72072564e+01 + sys_corr_32: -6.67522780e+00 + sys_corr_33: -7.70540092e+00 + sys_corr_34: 4.07013330e+00 stat: 81.0 sys_beam: 110.0 sys_luminosity: 112.0 -- sys_corr_1: -20.85999640061773 - sys_corr_2: -8.242540680871144 - sys_corr_3: 8.96120405655017 - sys_corr_4: -8.61438589895173 - sys_corr_5: -2.3060483600982833 - sys_corr_6: 1.3799189252317385 - sys_corr_7: 1.7631040575653907 - sys_corr_8: 1.2044387625997117 - sys_corr_9: -0.029223529687890985 - sys_corr_10: 3.021580237130118 - sys_corr_11: -1.4142992542157862 - sys_corr_12: -1.1889723630536422 - sys_corr_13: 0.9257611979898691 - sys_corr_14: -0.6372331880602367 - sys_corr_15: 0.32636460339014195 - sys_corr_16: 0.8296699988914852 - sys_corr_17: -34.31148751935037 - sys_corr_18: 2.223371222016921e-05 - sys_corr_19: -0.00407957965719388 - sys_corr_20: -0.04109755671291763 - sys_corr_21: 0.12179926772246472 - sys_corr_22: -0.4318081034915585 - sys_corr_23: 1.238366902774607 - sys_corr_24: -0.5553499113329405 - sys_corr_25: 3.8476635936335404 - sys_corr_26: 1.2145007166214323 - sys_corr_27: -1.0896588789833546 - sys_corr_28: 5.220822383001981 - sys_corr_29: 4.056607732583745 - sys_corr_30: -53.73393248419466 - sys_corr_31: -5.961938629063152 - sys_corr_32: 0.17239047689188644 - sys_corr_33: 13.699964798469713 - sys_corr_34: 2.4339881710835924 +- sys_corr_1: -2.08599964e+01 + sys_corr_2: -8.24254068e+00 + sys_corr_3: 8.96120406e+00 + sys_corr_4: -8.61438590e+00 + sys_corr_5: -2.30604836e+00 + sys_corr_6: 1.37991893e+00 + sys_corr_7: 1.76310406e+00 + sys_corr_8: 1.20443876e+00 + sys_corr_9: -2.92235297e-02 + sys_corr_10: 3.02158024e+00 + sys_corr_11: -1.41429925e+00 + sys_corr_12: -1.18897236e+00 + sys_corr_13: 9.25761198e-01 + sys_corr_14: -6.37233188e-01 + sys_corr_15: 3.26364603e-01 + sys_corr_16: 8.29669999e-01 + sys_corr_17: -3.43114875e+01 + sys_corr_18: 2.22337122e-05 + sys_corr_19: -4.07957966e-03 + sys_corr_20: -4.10975567e-02 + sys_corr_21: 1.21799268e-01 + sys_corr_22: -4.31808103e-01 + sys_corr_23: 1.23836690e+00 + sys_corr_24: -5.55349911e-01 + sys_corr_25: 3.84766359e+00 + sys_corr_26: 1.21450072e+00 + sys_corr_27: -1.08965888e+00 + sys_corr_28: 5.22082238e+00 + sys_corr_29: 4.05660773e+00 + sys_corr_30: -5.37339325e+01 + sys_corr_31: -5.96193863e+00 + sys_corr_32: 1.72390477e-01 + sys_corr_33: 1.36999648e+01 + sys_corr_34: 2.43398817e+00 stat: 82.0 sys_beam: 113.0 sys_luminosity: 115.0 -- sys_corr_1: -20.223983250604604 - sys_corr_2: -8.154175836436291 - sys_corr_3: 9.263273566378606 - sys_corr_4: -9.71875268691994 - sys_corr_5: -2.815203846765317 - sys_corr_6: 1.8702305366092413 - sys_corr_7: 1.642208435163437 - sys_corr_8: -0.16224786719629844 - sys_corr_9: -0.22452711746936563 - sys_corr_10: 3.5727685328730914 - sys_corr_11: -1.807628621364124 - sys_corr_12: -0.9629409377418926 - sys_corr_13: 0.517135664165866 - sys_corr_14: -0.6176549011257119 - sys_corr_15: 0.29396865202352723 - sys_corr_16: 0.19228110231040307 - sys_corr_17: -35.973328851362034 - sys_corr_18: 2.1030318953412103e-05 - sys_corr_19: -0.01573421063352595 - sys_corr_20: -0.039593498418252014 - sys_corr_21: 0.20298279711025685 - sys_corr_22: -0.43673348436206993 - sys_corr_23: 1.2228818908422694 - sys_corr_24: -8.050128059316727 - sys_corr_25: 3.7067801587189875 - sys_corr_26: 0.28564487917183234 - sys_corr_27: 0.31349089275246217 - sys_corr_28: 1.831682047649197 - sys_corr_29: 32.11772042510084 - sys_corr_30: 6.005329354848032 - sys_corr_31: -35.91989545505611 - sys_corr_32: -0.020112060445741164 - sys_corr_33: -30.626315104189313 - sys_corr_34: -10.705014253933214 +- sys_corr_1: -2.02239833e+01 + sys_corr_2: -8.15417584e+00 + sys_corr_3: 9.26327357e+00 + sys_corr_4: -9.71875269e+00 + sys_corr_5: -2.81520385e+00 + sys_corr_6: 1.87023054e+00 + sys_corr_7: 1.64220844e+00 + sys_corr_8: -1.62247867e-01 + sys_corr_9: -2.24527117e-01 + sys_corr_10: 3.57276853e+00 + sys_corr_11: -1.80762862e+00 + sys_corr_12: -9.62940938e-01 + sys_corr_13: 5.17135664e-01 + sys_corr_14: -6.17654901e-01 + sys_corr_15: 2.93968652e-01 + sys_corr_16: 1.92281102e-01 + sys_corr_17: -3.59733289e+01 + sys_corr_18: 2.10303190e-05 + sys_corr_19: -1.57342106e-02 + sys_corr_20: -3.95934984e-02 + sys_corr_21: 2.02982797e-01 + sys_corr_22: -4.36733484e-01 + sys_corr_23: 1.22288189e+00 + sys_corr_24: -8.05012806e+00 + sys_corr_25: 3.70678016e+00 + sys_corr_26: 2.85644879e-01 + sys_corr_27: 3.13490893e-01 + sys_corr_28: 1.83168205e+00 + sys_corr_29: 3.21177204e+01 + sys_corr_30: 6.00532935e+00 + sys_corr_31: -3.59198955e+01 + sys_corr_32: -2.01120604e-02 + sys_corr_33: -3.06263151e+01 + sys_corr_34: -1.07050143e+01 stat: 81.0 sys_beam: 112.0 sys_luminosity: 114.0 -- sys_corr_1: -17.04123512385607 - sys_corr_2: -7.918393116785631 - sys_corr_3: 8.440143768234751 - sys_corr_4: -10.02402010796554 - sys_corr_5: -2.6847034507324383 - sys_corr_6: 2.0671669249447975 - sys_corr_7: 1.8372796873063746 - sys_corr_8: 0.3650568659958692 - sys_corr_9: -0.4904354192348276 - sys_corr_10: 3.05686845689522 - sys_corr_11: -1.0638801573489338 - sys_corr_12: -1.3582456192661916 - sys_corr_13: 0.07169286786152647 - sys_corr_14: -0.21990435577551373 - sys_corr_15: 1.5744304454331313 - sys_corr_16: -0.0013292406671437558 - sys_corr_17: -32.11721511436324 - sys_corr_18: 1.5639254649312342e-05 - sys_corr_19: -0.016025573298138807 - sys_corr_20: -0.06980990577079971 - sys_corr_21: 0.21328595324743183 - sys_corr_22: -0.643522433244859 - sys_corr_23: 1.968944344838717 - sys_corr_24: -12.899652788634423 - sys_corr_25: 5.004417879945517 - sys_corr_26: 0.4905581183344178 - sys_corr_27: -0.6767901157589093 - sys_corr_28: -5.192725175070102 - sys_corr_29: 15.906978752284262 - sys_corr_30: 20.162930666008716 - sys_corr_31: -11.987331589746674 - sys_corr_32: 14.255145302388717 - sys_corr_33: 43.78533938046681 - sys_corr_34: 17.535461369051525 +- sys_corr_1: -1.70412351e+01 + sys_corr_2: -7.91839312e+00 + sys_corr_3: 8.44014377e+00 + sys_corr_4: -1.00240201e+01 + sys_corr_5: -2.68470345e+00 + sys_corr_6: 2.06716692e+00 + sys_corr_7: 1.83727969e+00 + sys_corr_8: 3.65056866e-01 + sys_corr_9: -4.90435419e-01 + sys_corr_10: 3.05686846e+00 + sys_corr_11: -1.06388016e+00 + sys_corr_12: -1.35824562e+00 + sys_corr_13: 7.16928679e-02 + sys_corr_14: -2.19904356e-01 + sys_corr_15: 1.57443045e+00 + sys_corr_16: -1.32924067e-03 + sys_corr_17: -3.21172151e+01 + sys_corr_18: 1.56392546e-05 + sys_corr_19: -1.60255733e-02 + sys_corr_20: -6.98099058e-02 + sys_corr_21: 2.13285953e-01 + sys_corr_22: -6.43522433e-01 + sys_corr_23: 1.96894434e+00 + sys_corr_24: -1.28996528e+01 + sys_corr_25: 5.00441788e+00 + sys_corr_26: 4.90558118e-01 + sys_corr_27: -6.76790116e-01 + sys_corr_28: -5.19272518e+00 + sys_corr_29: 1.59069788e+01 + sys_corr_30: 2.01629307e+01 + sys_corr_31: -1.19873316e+01 + sys_corr_32: 1.42551453e+01 + sys_corr_33: 4.37853394e+01 + sys_corr_34: 1.75354614e+01 stat: 78.0 sys_beam: 104.0 sys_luminosity: 105.0 -- sys_corr_1: -14.949658691661552 - sys_corr_2: -7.165496747473771 - sys_corr_3: 7.808477726717344 - sys_corr_4: -9.563054093266855 - sys_corr_5: -2.670729336856341 - sys_corr_6: 1.8709100130824086 - sys_corr_7: 1.1343784857725923 - sys_corr_8: 0.5731050576348673 - sys_corr_9: -0.8237338552006473 - sys_corr_10: 3.4751925833597106 - sys_corr_11: -0.13851422837760224 - sys_corr_12: -0.1002361602275918 - sys_corr_13: -0.29756675757365736 - sys_corr_14: -0.016500933088201893 - sys_corr_15: 0.6964491524516614 - sys_corr_16: 0.020654173191049223 - sys_corr_17: -29.91414324734268 - sys_corr_18: -2.595663657424141e-06 - sys_corr_19: -0.020768693638998827 - sys_corr_20: -0.05834119476429439 - sys_corr_21: 0.1988462861961116 - sys_corr_22: -0.6436033819980002 - sys_corr_23: 1.6165938253859975 - sys_corr_24: -56.83115477669559 - sys_corr_25: 4.207755805619209 - sys_corr_26: 0.13546165938649402 - sys_corr_27: 0.16794567880708108 - sys_corr_28: -1.2548235252022757 - sys_corr_29: -23.91565302611887 - sys_corr_30: 1.316650496023731 - sys_corr_31: 12.59376213704475 - sys_corr_32: 1.4753796100520011 - sys_corr_33: -11.882612801608257 - sys_corr_34: -0.6558219362974327 +- sys_corr_1: -1.49496587e+01 + sys_corr_2: -7.16549675e+00 + sys_corr_3: 7.80847773e+00 + sys_corr_4: -9.56305409e+00 + sys_corr_5: -2.67072934e+00 + sys_corr_6: 1.87091001e+00 + sys_corr_7: 1.13437849e+00 + sys_corr_8: 5.73105058e-01 + sys_corr_9: -8.23733855e-01 + sys_corr_10: 3.47519258e+00 + sys_corr_11: -1.38514228e-01 + sys_corr_12: -1.00236160e-01 + sys_corr_13: -2.97566758e-01 + sys_corr_14: -1.65009331e-02 + sys_corr_15: 6.96449152e-01 + sys_corr_16: 2.06541732e-02 + sys_corr_17: -2.99141432e+01 + sys_corr_18: -2.59566366e-06 + sys_corr_19: -2.07686936e-02 + sys_corr_20: -5.83411948e-02 + sys_corr_21: 1.98846286e-01 + sys_corr_22: -6.43603382e-01 + sys_corr_23: 1.61659383e+00 + sys_corr_24: -5.68311548e+01 + sys_corr_25: 4.20775581e+00 + sys_corr_26: 1.35461659e-01 + sys_corr_27: 1.67945679e-01 + sys_corr_28: -1.25482353e+00 + sys_corr_29: -2.39156530e+01 + sys_corr_30: 1.31665050e+00 + sys_corr_31: 1.25937621e+01 + sys_corr_32: 1.47537961e+00 + sys_corr_33: -1.18826128e+01 + sys_corr_34: -6.55821936e-01 stat: 72.0 sys_beam: 89.0 sys_luminosity: 90.0 -- sys_corr_1: -9.14904976731458 - sys_corr_2: -4.972284733299384 - sys_corr_3: 4.934501253783764 - sys_corr_4: -7.1467159557128515 - sys_corr_5: -2.4806832426487455 - sys_corr_6: 1.671603651748121 - sys_corr_7: 0.37319250089257 - sys_corr_8: 0.46906925363561475 - sys_corr_9: -1.087081450231521 - sys_corr_10: 2.1864260496234404 - sys_corr_11: -0.08527632330582598 - sys_corr_12: -0.012526363709998182 - sys_corr_13: 0.4243834079319793 - sys_corr_14: -0.13456579621495254 - sys_corr_15: 0.4790045408796148 - sys_corr_16: -0.15340419169045127 - sys_corr_17: -14.879810632978376 - sys_corr_18: -0.0002456468050200248 - sys_corr_19: -0.0454435934292203 - sys_corr_20: -0.12517695573626986 - sys_corr_21: 0.44958793796615887 - sys_corr_22: -1.204788925464909 - sys_corr_23: 6.991666808010446 - sys_corr_24: -5.151973939331509 - sys_corr_25: -45.64159328048806 - sys_corr_26: -1.3784434779208112 - sys_corr_27: 1.5652942658997 - sys_corr_28: 1.409320903180425 - sys_corr_29: 2.3280091228430235 - sys_corr_30: -0.7987670255571896 - sys_corr_31: -1.4925491058413183 - sys_corr_32: 0.16347370237198558 - sys_corr_33: 2.0228973651373496 - sys_corr_34: 1.0080663698904977 +- sys_corr_1: -9.14904977e+00 + sys_corr_2: -4.97228473e+00 + sys_corr_3: 4.93450125e+00 + sys_corr_4: -7.14671596e+00 + sys_corr_5: -2.48068324e+00 + sys_corr_6: 1.67160365e+00 + sys_corr_7: 3.73192501e-01 + sys_corr_8: 4.69069254e-01 + sys_corr_9: -1.08708145e+00 + sys_corr_10: 2.18642605e+00 + sys_corr_11: -8.52763233e-02 + sys_corr_12: -1.25263637e-02 + sys_corr_13: 4.24383408e-01 + sys_corr_14: -1.34565796e-01 + sys_corr_15: 4.79004541e-01 + sys_corr_16: -1.53404192e-01 + sys_corr_17: -1.48798106e+01 + sys_corr_18: -2.45646805e-04 + sys_corr_19: -4.54435934e-02 + sys_corr_20: -1.25176956e-01 + sys_corr_21: 4.49587938e-01 + sys_corr_22: -1.20478893e+00 + sys_corr_23: 6.99166681e+00 + sys_corr_24: -5.15197394e+00 + sys_corr_25: -4.56415933e+01 + sys_corr_26: -1.37844348e+00 + sys_corr_27: 1.56529427e+00 + sys_corr_28: 1.40932090e+00 + sys_corr_29: 2.32800912e+00 + sys_corr_30: -7.98767026e-01 + sys_corr_31: -1.49254911e+00 + sys_corr_32: 1.63473702e-01 + sys_corr_33: 2.02289737e+00 + sys_corr_34: 1.00806637e+00 stat: 63.0 sys_beam: 70.0 sys_luminosity: 71.0 -- sys_corr_1: -6.326085258885516 - sys_corr_2: -3.4394155068830274 - sys_corr_3: 3.3413277376739994 - sys_corr_4: -5.541898966162299 - sys_corr_5: -1.6661764807846726 - sys_corr_6: 0.9793752178741615 - sys_corr_7: 0.0002485455875605596 - sys_corr_8: -0.08187806243712223 - sys_corr_9: -0.43331484389358593 - sys_corr_10: 1.7688356519671558 - sys_corr_11: 0.1673892047971942 - sys_corr_12: 0.11055325680962538 - sys_corr_13: 0.42690581325142396 - sys_corr_14: -0.11388005383860242 - sys_corr_15: 0.9613977606947433 - sys_corr_16: -0.013820528956824979 - sys_corr_17: -9.506358516911606 - sys_corr_18: -0.0003224919588661582 - sys_corr_19: -0.04499426072419495 - sys_corr_20: -0.13755544896320748 - sys_corr_21: 0.5827172665111978 - sys_corr_22: -1.947072274653343 - sys_corr_23: -37.513389438295356 - sys_corr_24: -3.6661471142260784 - sys_corr_25: -7.529167532068023 - sys_corr_26: -0.6017477237229026 - sys_corr_27: 0.16993176961815415 - sys_corr_28: 0.8185166967640874 - sys_corr_29: 1.5139539639483393 - sys_corr_30: -0.23812496924273005 - sys_corr_31: -0.8615737285403586 - sys_corr_32: 0.09807293782506868 - sys_corr_33: 1.5488833831657787 - sys_corr_34: 0.7674261132628126 +- sys_corr_1: -6.32608526e+00 + sys_corr_2: -3.43941551e+00 + sys_corr_3: 3.34132774e+00 + sys_corr_4: -5.54189897e+00 + sys_corr_5: -1.66617648e+00 + sys_corr_6: 9.79375218e-01 + sys_corr_7: 2.48545588e-04 + sys_corr_8: -8.18780624e-02 + sys_corr_9: -4.33314844e-01 + sys_corr_10: 1.76883565e+00 + sys_corr_11: 1.67389205e-01 + sys_corr_12: 1.10553257e-01 + sys_corr_13: 4.26905813e-01 + sys_corr_14: -1.13880054e-01 + sys_corr_15: 9.61397761e-01 + sys_corr_16: -1.38205290e-02 + sys_corr_17: -9.50635852e+00 + sys_corr_18: -3.22491959e-04 + sys_corr_19: -4.49942607e-02 + sys_corr_20: -1.37555449e-01 + sys_corr_21: 5.82717267e-01 + sys_corr_22: -1.94707227e+00 + sys_corr_23: -3.75133894e+01 + sys_corr_24: -3.66614711e+00 + sys_corr_25: -7.52916753e+00 + sys_corr_26: -6.01747724e-01 + sys_corr_27: 1.69931770e-01 + sys_corr_28: 8.18516697e-01 + sys_corr_29: 1.51395396e+00 + sys_corr_30: -2.38124969e-01 + sys_corr_31: -8.61573729e-01 + sys_corr_32: 9.80729378e-02 + sys_corr_33: 1.54888338e+00 + sys_corr_34: 7.67426113e-01 stat: 54.0 sys_beam: 50.0 sys_luminosity: 51.0 -- sys_corr_1: -3.581622334817089 - sys_corr_2: -1.5952014747683114 - sys_corr_3: 1.6964197582238907 - sys_corr_4: -3.14699127645968 - sys_corr_5: -0.8213111707130163 - sys_corr_6: 0.8751706472028297 - sys_corr_7: 0.2206946879338174 - sys_corr_8: -0.1039628140716845 - sys_corr_9: -0.6365967085277067 - sys_corr_10: 0.9100948097625553 - sys_corr_11: 0.13025444043124915 - sys_corr_12: 0.34852058051337664 - sys_corr_13: 0.0009634194008526173 - sys_corr_14: -0.02441540783396363 - sys_corr_15: 0.23683126623681228 - sys_corr_16: -0.21312351825723796 - sys_corr_17: -4.887880950067251 - sys_corr_18: -9.666121426579344e-05 - sys_corr_19: -0.08679639349439601 - sys_corr_20: -0.21795914219999304 - sys_corr_21: 1.590603225066448 - sys_corr_22: 25.605815007759382 - sys_corr_23: -2.280210781651742 - sys_corr_24: -2.064997634263456 - sys_corr_25: -2.190450694893062 - sys_corr_26: -0.31575888365835214 - sys_corr_27: 0.1359336155779555 - sys_corr_28: 0.26453985522407586 - sys_corr_29: 0.7254250538695481 - sys_corr_30: -0.14873611967709635 - sys_corr_31: -0.3472172709889853 - sys_corr_32: -0.06366415037841579 - sys_corr_33: 0.7056752901753416 - sys_corr_34: 0.3418947996262172 +- sys_corr_1: -3.58162233e+00 + sys_corr_2: -1.59520147e+00 + sys_corr_3: 1.69641976e+00 + sys_corr_4: -3.14699128e+00 + sys_corr_5: -8.21311171e-01 + sys_corr_6: 8.75170647e-01 + sys_corr_7: 2.20694688e-01 + sys_corr_8: -1.03962814e-01 + sys_corr_9: -6.36596709e-01 + sys_corr_10: 9.10094810e-01 + sys_corr_11: 1.30254440e-01 + sys_corr_12: 3.48520581e-01 + sys_corr_13: 9.63419401e-04 + sys_corr_14: -2.44154078e-02 + sys_corr_15: 2.36831266e-01 + sys_corr_16: -2.13123518e-01 + sys_corr_17: -4.88788095e+00 + sys_corr_18: -9.66612143e-05 + sys_corr_19: -8.67963935e-02 + sys_corr_20: -2.17959142e-01 + sys_corr_21: 1.59060323e+00 + sys_corr_22: 2.56058150e+01 + sys_corr_23: -2.28021078e+00 + sys_corr_24: -2.06499763e+00 + sys_corr_25: -2.19045069e+00 + sys_corr_26: -3.15758884e-01 + sys_corr_27: 1.35933616e-01 + sys_corr_28: 2.64539855e-01 + sys_corr_29: 7.25425054e-01 + sys_corr_30: -1.48736120e-01 + sys_corr_31: -3.47217271e-01 + sys_corr_32: -6.36641504e-02 + sys_corr_33: 7.05675290e-01 + sys_corr_34: 3.41894800e-01 stat: 42.0 sys_beam: 31.0 sys_luminosity: 32.0 -- sys_corr_1: -1.92704439512093 - sys_corr_2: -0.8906975447977779 - sys_corr_3: 0.9859044565822684 - sys_corr_4: -1.9000065901869836 - sys_corr_5: -0.5000615975386107 - sys_corr_6: 0.46968476717803226 - sys_corr_7: 0.026567509006969116 - sys_corr_8: -0.24644151318863616 - sys_corr_9: -0.25414422874331366 - sys_corr_10: 0.5977450748892512 - sys_corr_11: 0.12461147105305874 - sys_corr_12: 0.22106489547049357 - sys_corr_13: 0.002600996773642191 - sys_corr_14: 0.18567315840945614 - sys_corr_15: 0.11880756529337104 - sys_corr_16: -0.18567999103821872 - sys_corr_17: -2.827258869382252 - sys_corr_18: -0.000199057444015986 - sys_corr_19: -0.11219010309612268 - sys_corr_20: -0.36203400976645245 - sys_corr_21: -19.330648169767073 - sys_corr_22: 1.9792982895274414 - sys_corr_23: -1.0760705803977701 - sys_corr_24: -0.9794399369764406 - sys_corr_25: -1.2690397198592585 - sys_corr_26: -0.11077568336772363 - sys_corr_27: -0.04550177309583325 - sys_corr_28: 0.014709472995865877 - sys_corr_29: 0.33436641955386703 - sys_corr_30: 0.01154124894717594 - sys_corr_31: -0.38390866128957885 - sys_corr_32: 0.06978441016484936 - sys_corr_33: 0.26523110211773226 - sys_corr_34: 0.06515123860033878 +- sys_corr_1: -1.92704440e+00 + sys_corr_2: -8.90697545e-01 + sys_corr_3: 9.85904457e-01 + sys_corr_4: -1.90000659e+00 + sys_corr_5: -5.00061598e-01 + sys_corr_6: 4.69684767e-01 + sys_corr_7: 2.65675090e-02 + sys_corr_8: -2.46441513e-01 + sys_corr_9: -2.54144229e-01 + sys_corr_10: 5.97745075e-01 + sys_corr_11: 1.24611471e-01 + sys_corr_12: 2.21064895e-01 + sys_corr_13: 2.60099677e-03 + sys_corr_14: 1.85673158e-01 + sys_corr_15: 1.18807565e-01 + sys_corr_16: -1.85679991e-01 + sys_corr_17: -2.82725887e+00 + sys_corr_18: -1.99057444e-04 + sys_corr_19: -1.12190103e-01 + sys_corr_20: -3.62034010e-01 + sys_corr_21: -1.93306482e+01 + sys_corr_22: 1.97929829e+00 + sys_corr_23: -1.07607058e+00 + sys_corr_24: -9.79439937e-01 + sys_corr_25: -1.26903972e+00 + sys_corr_26: -1.10775683e-01 + sys_corr_27: -4.55017731e-02 + sys_corr_28: 1.47094730e-02 + sys_corr_29: 3.34366420e-01 + sys_corr_30: 1.15412489e-02 + sys_corr_31: -3.83908661e-01 + sys_corr_32: 6.97844102e-02 + sys_corr_33: 2.65231102e-01 + sys_corr_34: 6.51512386e-02 stat: 32.0 sys_beam: 18.0 sys_luminosity: 19.0 -- sys_corr_1: -0.8296601388639502 - sys_corr_2: -0.38052517227827426 - sys_corr_3: 0.4256454984305276 - sys_corr_4: -0.8640659174103346 - sys_corr_5: -0.3029421108714407 - sys_corr_6: 0.21769504580249685 - sys_corr_7: -0.0513015110494587 - sys_corr_8: -0.1291910301867218 - sys_corr_9: -0.10721047160311574 - sys_corr_10: 0.15298473350908032 - sys_corr_11: 0.17487604901205464 - sys_corr_12: -0.012480190494210718 - sys_corr_13: 0.04226511417816975 - sys_corr_14: 0.0781708848543922 - sys_corr_15: 0.07360831837453956 - sys_corr_16: -0.10963219724160662 - sys_corr_17: -1.2120042253538605 - sys_corr_18: -0.000464890400867854 - sys_corr_19: -0.25803633958642397 - sys_corr_20: 11.79583433423467 - sys_corr_21: -0.5401002869199265 - sys_corr_22: 0.4778721145841973 - sys_corr_23: -0.40128728517884116 - sys_corr_24: -0.4773980799987802 - sys_corr_25: -0.5578977015713456 - sys_corr_26: 0.015910316661923305 - sys_corr_27: 0.0393153400977026 - sys_corr_28: -0.03491699302104453 - sys_corr_29: 0.15079334377679599 - sys_corr_30: -0.025448127463074663 - sys_corr_31: -0.12947869114023533 - sys_corr_32: 0.0030454953508836304 - sys_corr_33: 0.21539792088917062 - sys_corr_34: 0.050432772363266945 +- sys_corr_1: -8.29660139e-01 + sys_corr_2: -3.80525172e-01 + sys_corr_3: 4.25645498e-01 + sys_corr_4: -8.64065917e-01 + sys_corr_5: -3.02942111e-01 + sys_corr_6: 2.17695046e-01 + sys_corr_7: -5.13015110e-02 + sys_corr_8: -1.29191030e-01 + sys_corr_9: -1.07210472e-01 + sys_corr_10: 1.52984734e-01 + sys_corr_11: 1.74876049e-01 + sys_corr_12: -1.24801905e-02 + sys_corr_13: 4.22651142e-02 + sys_corr_14: 7.81708849e-02 + sys_corr_15: 7.36083184e-02 + sys_corr_16: -1.09632197e-01 + sys_corr_17: -1.21200423e+00 + sys_corr_18: -4.64890401e-04 + sys_corr_19: -2.58036340e-01 + sys_corr_20: 1.17958343e+01 + sys_corr_21: -5.40100287e-01 + sys_corr_22: 4.77872115e-01 + sys_corr_23: -4.01287285e-01 + sys_corr_24: -4.77398080e-01 + sys_corr_25: -5.57897702e-01 + sys_corr_26: 1.59103167e-02 + sys_corr_27: 3.93153401e-02 + sys_corr_28: -3.49169930e-02 + sys_corr_29: 1.50793344e-01 + sys_corr_30: -2.54481275e-02 + sys_corr_31: -1.29478691e-01 + sys_corr_32: 3.04549535e-03 + sys_corr_33: 2.15397921e-01 + sys_corr_34: 5.04327724e-02 stat: 22.0 sys_beam: 9.0 sys_luminosity: 9.0 -- sys_corr_1: -0.42393728550091253 - sys_corr_2: -0.1489439685954901 - sys_corr_3: 0.1981748571052783 - sys_corr_4: -0.39930231793851795 - sys_corr_5: -0.11765515578108467 - sys_corr_6: 0.10694488123136295 - sys_corr_7: -0.07370908109912086 - sys_corr_8: -0.13441755182880186 - sys_corr_9: -0.11536049109164451 - sys_corr_10: 0.048759737257209806 - sys_corr_11: 0.045216891531896765 - sys_corr_12: 0.10130389568750048 - sys_corr_13: 0.043221157167921076 - sys_corr_14: 0.02813618535335268 - sys_corr_15: 0.004731362627850262 - sys_corr_16: -0.11516055102018913 - sys_corr_17: -0.6185243817055616 - sys_corr_18: -0.0008188847909314705 - sys_corr_19: 7.911038971966892 - sys_corr_20: 0.3752800559584975 - sys_corr_21: -0.2667253838683477 - sys_corr_22: 0.3020038060076856 - sys_corr_23: -0.2136989781429229 - sys_corr_24: -0.25533032743675527 - sys_corr_25: -0.33152188617643563 - sys_corr_26: -0.031802320460943584 - sys_corr_27: -0.0450265446571122 - sys_corr_28: 0.015861015519048217 - sys_corr_29: 0.06645220360780067 - sys_corr_30: 0.0399015979789204 - sys_corr_31: -0.05325010135931567 - sys_corr_32: 0.028197119479108523 - sys_corr_33: 0.048312568185798266 - sys_corr_34: -0.018283308368153953 +- sys_corr_1: -4.23937286e-01 + sys_corr_2: -1.48943969e-01 + sys_corr_3: 1.98174857e-01 + sys_corr_4: -3.99302318e-01 + sys_corr_5: -1.17655156e-01 + sys_corr_6: 1.06944881e-01 + sys_corr_7: -7.37090811e-02 + sys_corr_8: -1.34417552e-01 + sys_corr_9: -1.15360491e-01 + sys_corr_10: 4.87597373e-02 + sys_corr_11: 4.52168915e-02 + sys_corr_12: 1.01303896e-01 + sys_corr_13: 4.32211572e-02 + sys_corr_14: 2.81361854e-02 + sys_corr_15: 4.73136263e-03 + sys_corr_16: -1.15160551e-01 + sys_corr_17: -6.18524382e-01 + sys_corr_18: -8.18884791e-04 + sys_corr_19: 7.91103897e+00 + sys_corr_20: 3.75280056e-01 + sys_corr_21: -2.66725384e-01 + sys_corr_22: 3.02003806e-01 + sys_corr_23: -2.13698978e-01 + sys_corr_24: -2.55330327e-01 + sys_corr_25: -3.31521886e-01 + sys_corr_26: -3.18023205e-02 + sys_corr_27: -4.50265447e-02 + sys_corr_28: 1.58610155e-02 + sys_corr_29: 6.64522036e-02 + sys_corr_30: 3.99015980e-02 + sys_corr_31: -5.32501014e-02 + sys_corr_32: 2.81971195e-02 + sys_corr_33: 4.83125682e-02 + sys_corr_34: -1.82833084e-02 stat: 16.0 sys_beam: 4.0 sys_luminosity: 4.0 -- sys_corr_1: -0.013414184810947185 - sys_corr_2: -0.0037960802643432707 - sys_corr_3: 0.007050325110555283 - sys_corr_4: -0.012793678842012284 - sys_corr_5: -0.006988237873416502 - sys_corr_6: -0.0011527303922321958 - sys_corr_7: -0.003828274413000623 - sys_corr_8: 0.005803516665110609 - sys_corr_9: 0.010110892923238884 - sys_corr_10: 0.00609970150731563 - sys_corr_11: -0.0027138425737638357 - sys_corr_12: 0.0038844748413529888 - sys_corr_13: -0.0002192947913103354 - sys_corr_14: -5.673249487655088e-05 - sys_corr_15: -0.005283439658330253 - sys_corr_16: -0.01041343514466209 - sys_corr_17: -0.009022711855039067 - sys_corr_18: 0.9993144938300689 - sys_corr_19: 0.006305972548117419 - sys_corr_20: 0.005629159396297987 - sys_corr_21: -0.003870372244989194 - sys_corr_22: 0.002448050388358444 - sys_corr_23: -0.011281196460244286 - sys_corr_24: -0.0016038955252109263 - sys_corr_25: -0.01500122302213559 - sys_corr_26: -0.0028588158298623084 - sys_corr_27: -0.0032024298305996894 - sys_corr_28: -0.0037895822907567595 - sys_corr_29: -0.0012810170229462568 - sys_corr_30: 0.00020952138699364335 - sys_corr_31: -0.0002487670121753776 - sys_corr_32: 0.0015993114173329787 - sys_corr_33: 1.836099161191098e-05 - sys_corr_34: 0.00045379693947543193 +- sys_corr_1: -1.34141848e-02 + sys_corr_2: -3.79608026e-03 + sys_corr_3: 7.05032511e-03 + sys_corr_4: -1.27936788e-02 + sys_corr_5: -6.98823787e-03 + sys_corr_6: -1.15273039e-03 + sys_corr_7: -3.82827441e-03 + sys_corr_8: 5.80351667e-03 + sys_corr_9: 1.01108929e-02 + sys_corr_10: 6.09970151e-03 + sys_corr_11: -2.71384257e-03 + sys_corr_12: 3.88447484e-03 + sys_corr_13: -2.19294791e-04 + sys_corr_14: -5.67324949e-05 + sys_corr_15: -5.28343966e-03 + sys_corr_16: -1.04134351e-02 + sys_corr_17: -9.02271186e-03 + sys_corr_18: 9.99314494e-01 + sys_corr_19: 6.30597255e-03 + sys_corr_20: 5.62915940e-03 + sys_corr_21: -3.87037224e-03 + sys_corr_22: 2.44805039e-03 + sys_corr_23: -1.12811965e-02 + sys_corr_24: -1.60389553e-03 + sys_corr_25: -1.50012230e-02 + sys_corr_26: -2.85881583e-03 + sys_corr_27: -3.20242983e-03 + sys_corr_28: -3.78958229e-03 + sys_corr_29: -1.28101702e-03 + sys_corr_30: 2.09521387e-04 + sys_corr_31: -2.48767012e-04 + sys_corr_32: 1.59931142e-03 + sys_corr_33: 1.83609916e-05 + sys_corr_34: 4.53796939e-04 stat: 3.0 sys_beam: 0.0 sys_luminosity: 0.0 diff --git a/nnpdf_data/nnpdf_data/commondata/PHENIX-2009_SHP_200GEV_PI0/filter.py b/nnpdf_data/nnpdf_data/commondata/PHENIX-2009_SHP_200GEV_PI0/filter.py index 642445b7bc..860f52c8c4 100644 --- a/nnpdf_data/nnpdf_data/commondata/PHENIX-2009_SHP_200GEV_PI0/filter.py +++ b/nnpdf_data/nnpdf_data/commondata/PHENIX-2009_SHP_200GEV_PI0/filter.py @@ -3,6 +3,10 @@ import pandas as pd import yaml +from nnpdf_data.filter_utils.utils import prettify_float + +yaml.add_representer(float, prettify_float) + def read_data(path_rawdata: str) -> pd.DataFrame: data = yaml.safe_load(Path(path_rawdata).read_text()) diff --git a/nnpdf_data/nnpdf_data/commondata/PHENIX-2009_SHP_200GEV_PI0/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/PHENIX-2009_SHP_200GEV_PI0/uncertainties.yaml index c5cc374156..0b497a3057 100644 --- a/nnpdf_data/nnpdf_data/commondata/PHENIX-2009_SHP_200GEV_PI0/uncertainties.yaml +++ b/nnpdf_data/nnpdf_data/commondata/PHENIX-2009_SHP_200GEV_PI0/uncertainties.yaml @@ -14,13 +14,13 @@ definitions: bins: - stat: 0.00085 sys_lumi: 0.00035 - sys_pol: 1.734e-05 + sys_pol: 1.73400000e-05 - stat: 0.00055 sys_lumi: 0.00033 - sys_pol: 3.3600000000000004e-05 + sys_pol: 3.36000000e-05 - stat: 0.00058 sys_lumi: 0.00034 - sys_pol: 1.365e-05 + sys_pol: 1.36500000e-05 - stat: 0.00074 sys_lumi: 0.00036 sys_pol: 7.82e-06 @@ -38,10 +38,10 @@ bins: sys_pol: 7.8e-05 - stat: 0.0061 sys_lumi: 0.00045 - sys_pol: 0.00011309999999999998 + sys_pol: 1.13100000e-04 - stat: 0.0085 sys_lumi: 0.00045 - sys_pol: 0.0002784 + sys_pol: 2.78400000e-04 - stat: 0.018 sys_lumi: 0.00058 sys_pol: 0.000264 diff --git a/nnpdf_data/nnpdf_data/commondata/PHENIX-2013_SHP_510GEV_PI0/filter.py b/nnpdf_data/nnpdf_data/commondata/PHENIX-2013_SHP_510GEV_PI0/filter.py index a92cb51d5d..fe076e6938 100644 --- a/nnpdf_data/nnpdf_data/commondata/PHENIX-2013_SHP_510GEV_PI0/filter.py +++ b/nnpdf_data/nnpdf_data/commondata/PHENIX-2013_SHP_510GEV_PI0/filter.py @@ -3,6 +3,10 @@ import pandas as pd import yaml +from nnpdf_data.filter_utils.utils import prettify_float + +yaml.add_representer(float, prettify_float) + def read_data(path_rawdata: str) -> pd.DataFrame: data = yaml.safe_load(Path(path_rawdata).read_text()) diff --git a/nnpdf_data/nnpdf_data/commondata/PHENIX-2013_SHP_510GEV_PI0/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/PHENIX-2013_SHP_510GEV_PI0/uncertainties.yaml index 8f849fa568..c610460e23 100644 --- a/nnpdf_data/nnpdf_data/commondata/PHENIX-2013_SHP_510GEV_PI0/uncertainties.yaml +++ b/nnpdf_data/nnpdf_data/commondata/PHENIX-2013_SHP_510GEV_PI0/uncertainties.yaml @@ -20,37 +20,37 @@ bins: sys_pol: 5.85e-05 - stat: 0.00076 sys_lumi: 0.00036 - sys_pol: 2.275e-05 + sys_pol: 2.27500000e-05 - stat: 0.00076 sys_lumi: 0.00036 - sys_pol: 3.055e-05 + sys_pol: 3.05500000e-05 - stat: 0.00082 sys_lumi: 0.00036 sys_pol: 7.15e-05 - stat: 0.00093 sys_lumi: 0.00036 - sys_pol: 5.2000000000000004e-05 + sys_pol: 5.20000000e-05 - stat: 0.00083 sys_lumi: 0.00036 - sys_pol: 2.535e-05 + sys_pol: 2.53500000e-05 - stat: 0.00117 sys_lumi: 0.00036 - sys_pol: 0.0001027 + sys_pol: 1.02700000e-04 - stat: 0.00165 sys_lumi: 0.00036 sys_pol: 8.45e-05 - stat: 0.00231 sys_lumi: 0.00036 - sys_pol: 0.00019695000000000002 + sys_pol: 1.96950000e-04 - stat: 0.0032 sys_lumi: 0.00036 - sys_pol: 0.00041600000000000003 + sys_pol: 4.16000000e-04 - stat: 0.0035 sys_lumi: 0.00036 sys_pol: 0.000507 - stat: 0.0055 sys_lumi: 0.00036 - sys_pol: 6.5000000000000004e-06 + sys_pol: 6.50000000e-06 - stat: 0.011 sys_lumi: 0.00036 sys_pol: 0.000559 diff --git a/nnpdf_data/nnpdf_data/commondata/PHENIX_1JET_200GEV/filter.py b/nnpdf_data/nnpdf_data/commondata/PHENIX_1JET_200GEV/filter.py index b3d0cf8306..af4ac865b5 100644 --- a/nnpdf_data/nnpdf_data/commondata/PHENIX_1JET_200GEV/filter.py +++ b/nnpdf_data/nnpdf_data/commondata/PHENIX_1JET_200GEV/filter.py @@ -1,6 +1,10 @@ import pandas as pd import yaml +from nnpdf_data.filter_utils.utils import prettify_float + +yaml.add_representer(float, prettify_float) + POL_UNC = 0.094 diff --git a/nnpdf_data/nnpdf_data/commondata/PHENIX_1JET_200GEV/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/PHENIX_1JET_200GEV/uncertainties.yaml index c0c3d91ac8..db7bf489fc 100644 --- a/nnpdf_data/nnpdf_data/commondata/PHENIX_1JET_200GEV/uncertainties.yaml +++ b/nnpdf_data/nnpdf_data/commondata/PHENIX_1JET_200GEV/uncertainties.yaml @@ -9,14 +9,14 @@ definitions: type: RHIC2005POL bins: - stat: 0.0037 - pol: 0.0001316 + pol: 1.31600000e-04 - stat: 0.0059 - pol: 4.7000000000000004e-05 + pol: 4.70000000e-05 - stat: 0.0089 - pol: 0.0005451999999999999 + pol: 5.45200000e-04 - stat: 0.0132 - pol: 0.00031959999999999996 + pol: 3.19600000e-04 - stat: 0.0152 - pol: 0.0007238 + pol: 7.23800000e-04 - stat: 0.0282 - pol: 0.0017014 + pol: 1.70140000e-03 diff --git a/nnpdf_data/nnpdf_data/commondata/SMCSX_NC_17GEV_MUP/filter.py b/nnpdf_data/nnpdf_data/commondata/SMCSX_NC_17GEV_MUP/filter.py index 2421b152c4..7ac5f13335 100644 --- a/nnpdf_data/nnpdf_data/commondata/SMCSX_NC_17GEV_MUP/filter.py +++ b/nnpdf_data/nnpdf_data/commondata/SMCSX_NC_17GEV_MUP/filter.py @@ -3,6 +3,10 @@ import pandas as pd import yaml +from nnpdf_data.filter_utils.utils import prettify_float + +yaml.add_representer(float, prettify_float) + def read_data(fnames): df = pd.DataFrame() diff --git a/nnpdf_data/nnpdf_data/commondata/SMCSX_NC_24GEV_MUD/filter.py b/nnpdf_data/nnpdf_data/commondata/SMCSX_NC_24GEV_MUD/filter.py index 2421b152c4..7ac5f13335 100644 --- a/nnpdf_data/nnpdf_data/commondata/SMCSX_NC_24GEV_MUD/filter.py +++ b/nnpdf_data/nnpdf_data/commondata/SMCSX_NC_24GEV_MUD/filter.py @@ -3,6 +3,10 @@ import pandas as pd import yaml +from nnpdf_data.filter_utils.utils import prettify_float + +yaml.add_representer(float, prettify_float) + def read_data(fnames): df = pd.DataFrame() diff --git a/nnpdf_data/nnpdf_data/commondata/SMC_NC_NOTFIXED_MUD/filter.py b/nnpdf_data/nnpdf_data/commondata/SMC_NC_NOTFIXED_MUD/filter.py index 7d90ac71ee..a0768f35c6 100644 --- a/nnpdf_data/nnpdf_data/commondata/SMC_NC_NOTFIXED_MUD/filter.py +++ b/nnpdf_data/nnpdf_data/commondata/SMC_NC_NOTFIXED_MUD/filter.py @@ -3,6 +3,10 @@ import pandas as pd import yaml +from nnpdf_data.filter_utils.utils import prettify_float + +yaml.add_representer(float, prettify_float) + def read_data(fnames): df = pd.DataFrame() diff --git a/nnpdf_data/nnpdf_data/commondata/SMC_NC_NOTFIXED_MUP/filter.py b/nnpdf_data/nnpdf_data/commondata/SMC_NC_NOTFIXED_MUP/filter.py index 7d90ac71ee..a0768f35c6 100644 --- a/nnpdf_data/nnpdf_data/commondata/SMC_NC_NOTFIXED_MUP/filter.py +++ b/nnpdf_data/nnpdf_data/commondata/SMC_NC_NOTFIXED_MUP/filter.py @@ -3,6 +3,10 @@ import pandas as pd import yaml +from nnpdf_data.filter_utils.utils import prettify_float + +yaml.add_representer(float, prettify_float) + def read_data(fnames): df = pd.DataFrame() diff --git a/nnpdf_data/nnpdf_data/commondata/STAR-2004_1JET_200GEV/filter.py b/nnpdf_data/nnpdf_data/commondata/STAR-2004_1JET_200GEV/filter.py index f00ae5ed5d..900d0f6ab7 100644 --- a/nnpdf_data/nnpdf_data/commondata/STAR-2004_1JET_200GEV/filter.py +++ b/nnpdf_data/nnpdf_data/commondata/STAR-2004_1JET_200GEV/filter.py @@ -3,6 +3,10 @@ import pandas as pd import yaml +from nnpdf_data.filter_utils.utils import prettify_float + +yaml.add_representer(float, prettify_float) + POL_UNC = 0.25 SQRTS = 200 ETA_MIN = 0.2 diff --git a/nnpdf_data/nnpdf_data/commondata/STAR-2005_1JET_200GEV/data.yaml b/nnpdf_data/nnpdf_data/commondata/STAR-2005_1JET_200GEV/data.yaml index b5bc5e2f36..2bcc2baf9c 100644 --- a/nnpdf_data/nnpdf_data/commondata/STAR-2005_1JET_200GEV/data.yaml +++ b/nnpdf_data/nnpdf_data/commondata/STAR-2005_1JET_200GEV/data.yaml @@ -4,7 +4,7 @@ data_central: - 0.0023 - 0.01465 - -0.00625 -- 0.0031000000000000003 +- 3.10000000e-03 - -0.0142 - -0.0522 - 0.0569 diff --git a/nnpdf_data/nnpdf_data/commondata/STAR-2005_1JET_200GEV/filter.py b/nnpdf_data/nnpdf_data/commondata/STAR-2005_1JET_200GEV/filter.py index 48b06ded90..2843c1b231 100644 --- a/nnpdf_data/nnpdf_data/commondata/STAR-2005_1JET_200GEV/filter.py +++ b/nnpdf_data/nnpdf_data/commondata/STAR-2005_1JET_200GEV/filter.py @@ -5,6 +5,9 @@ import yaml from nnpdf_data.filter_utils.uncertainties import symmetrize_errors as se +from nnpdf_data.filter_utils.utils import prettify_float + +yaml.add_representer(float, prettify_float) POL_UNC = 0.094 diff --git a/nnpdf_data/nnpdf_data/commondata/STAR-2005_1JET_200GEV/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/STAR-2005_1JET_200GEV/uncertainties.yaml index f5afbd72a1..2ed7978250 100644 --- a/nnpdf_data/nnpdf_data/commondata/STAR-2005_1JET_200GEV/uncertainties.yaml +++ b/nnpdf_data/nnpdf_data/commondata/STAR-2005_1JET_200GEV/uncertainties.yaml @@ -12,33 +12,33 @@ definitions: treatment: MULT type: RHIC2005POL bins: -- stat: 0.005900000000000001 +- stat: 5.90000000e-03 sys: 0.0024 - pol: 0.0004982 + pol: 4.98200000e-04 - stat: 0.0054 - sys: 0.0018513508581573619 - pol: 0.0002585 + sys: 1.85135086e-03 + pol: 2.58500000e-04 - stat: 0.0057 - sys: 0.0018055470085267787 - pol: 0.0002162 + sys: 1.80554701e-03 + pol: 2.16200000e-04 - stat: 0.0067 - sys: 0.002597595041572108 - pol: 0.0013771 + sys: 2.59759504e-03 + pol: 1.37710000e-03 - stat: 0.0087 - sys: 0.0022422087324778664 - pol: 0.0005875 + sys: 2.24220873e-03 + pol: 5.87500000e-04 - stat: 0.0127 - sys: 0.002310844001658269 - pol: 0.00029140000000000004 -- stat: 0.020300000000000002 - sys: 0.002660826939130014 - pol: 0.0013348000000000001 + sys: 2.31084400e-03 + pol: 2.91400000e-04 +- stat: 2.03000000e-02 + sys: 2.66082694e-03 + pol: 1.33480000e-03 - stat: 0.035 sys: 0.0029 - pol: 0.0049068 -- stat: 0.06709999999999999 - sys: 0.0040999999999999995 - pol: 0.0053486 + pol: 4.90680000e-03 +- stat: 6.71000000e-02 + sys: 4.10000000e-03 + pol: 5.34860000e-03 - stat: 0.138 - sys: 0.004908156476723211 - pol: 0.013817999999999999 + sys: 4.90815648e-03 + pol: 1.38180000e-02 diff --git a/nnpdf_data/nnpdf_data/commondata/STAR-2006_1JET_200GEV/data.yaml b/nnpdf_data/nnpdf_data/commondata/STAR-2006_1JET_200GEV/data.yaml index 9a5cd41d27..71f999635d 100644 --- a/nnpdf_data/nnpdf_data/commondata/STAR-2006_1JET_200GEV/data.yaml +++ b/nnpdf_data/nnpdf_data/commondata/STAR-2006_1JET_200GEV/data.yaml @@ -5,6 +5,6 @@ data_central: - 0.00135 - 0.00925 - 0.02595 -- 0.026850000000000002 +- 2.68500000e-02 - 0.02375 - 0.0139 diff --git a/nnpdf_data/nnpdf_data/commondata/STAR-2006_1JET_200GEV/filter.py b/nnpdf_data/nnpdf_data/commondata/STAR-2006_1JET_200GEV/filter.py index 11048f64a8..8e63ac368b 100644 --- a/nnpdf_data/nnpdf_data/commondata/STAR-2006_1JET_200GEV/filter.py +++ b/nnpdf_data/nnpdf_data/commondata/STAR-2006_1JET_200GEV/filter.py @@ -5,6 +5,9 @@ import yaml from nnpdf_data.filter_utils.uncertainties import symmetrize_errors as se +from nnpdf_data.filter_utils.utils import prettify_float + +yaml.add_representer(float, prettify_float) POL_UNC = 0.083 diff --git a/nnpdf_data/nnpdf_data/commondata/STAR-2006_1JET_200GEV/kinematics.yaml b/nnpdf_data/nnpdf_data/commondata/STAR-2006_1JET_200GEV/kinematics.yaml index b9f422549d..64b0be3f62 100644 --- a/nnpdf_data/nnpdf_data/commondata/STAR-2006_1JET_200GEV/kinematics.yaml +++ b/nnpdf_data/nnpdf_data/commondata/STAR-2006_1JET_200GEV/kinematics.yaml @@ -9,7 +9,7 @@ bins: max: null eta: min: -0.7 - mid: 0.10000000000000003 + mid: 1.00000000e-01 max: 0.9 - pT: min: 9.5 @@ -21,7 +21,7 @@ bins: max: null eta: min: -0.7 - mid: 0.10000000000000003 + mid: 1.00000000e-01 max: 0.9 - pT: min: 11.3 @@ -33,7 +33,7 @@ bins: max: null eta: min: -0.7 - mid: 0.10000000000000003 + mid: 1.00000000e-01 max: 0.9 - pT: min: 13.4 @@ -45,7 +45,7 @@ bins: max: null eta: min: -0.7 - mid: 0.10000000000000003 + mid: 1.00000000e-01 max: 0.9 - pT: min: 16.1 @@ -57,7 +57,7 @@ bins: max: null eta: min: -0.7 - mid: 0.10000000000000003 + mid: 1.00000000e-01 max: 0.9 - pT: min: 19.2 @@ -69,7 +69,7 @@ bins: max: null eta: min: -0.7 - mid: 0.10000000000000003 + mid: 1.00000000e-01 max: 0.9 - pT: min: 22.9 @@ -81,7 +81,7 @@ bins: max: null eta: min: -0.7 - mid: 0.10000000000000003 + mid: 1.00000000e-01 max: 0.9 - pT: min: 27.6 @@ -93,7 +93,7 @@ bins: max: null eta: min: -0.7 - mid: 0.10000000000000003 + mid: 1.00000000e-01 max: 0.9 - pT: min: 32.0 @@ -105,5 +105,5 @@ bins: max: null eta: min: -0.7 - mid: 0.10000000000000003 + mid: 1.00000000e-01 max: 0.9 diff --git a/nnpdf_data/nnpdf_data/commondata/STAR-2006_1JET_200GEV/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/STAR-2006_1JET_200GEV/uncertainties.yaml index 5d183cf01f..5465b596d7 100644 --- a/nnpdf_data/nnpdf_data/commondata/STAR-2006_1JET_200GEV/uncertainties.yaml +++ b/nnpdf_data/nnpdf_data/commondata/STAR-2006_1JET_200GEV/uncertainties.yaml @@ -13,29 +13,29 @@ definitions: type: STAR2006POL bins: - stat: 0.0053 - sys: 0.00331058907144937 - pol: 0.0002739 + sys: 3.31058907e-03 + pol: 2.73900000e-04 - stat: 0.0043 - sys: 0.002011839953873071 - pol: 0.00030295 -- stat: 0.0040999999999999995 - sys: 0.002011839953873071 - pol: 0.00085075 -- stat: 0.0045000000000000005 - sys: 0.001366565036871645 - pol: 0.00011205000000000001 + sys: 2.01183995e-03 + pol: 3.02950000e-04 +- stat: 4.10000000e-03 + sys: 2.01183995e-03 + pol: 8.50750000e-04 +- stat: 4.50000000e-03 + sys: 1.36656504e-03 + pol: 1.12050000e-04 - stat: 0.0058 - sys: 0.0011521718621802911 - pol: 0.00076775 + sys: 1.15217186e-03 + pol: 7.67750000e-04 - stat: 0.0088 - sys: 0.0015898113095584648 - pol: 0.00215385 + sys: 1.58981131e-03 + pol: 2.15385000e-03 - stat: 0.0154 - sys: 0.0033537292675468 - pol: 0.00222855 + sys: 3.35372927e-03 + pol: 2.22855000e-03 - stat: 0.031 - sys: 0.004576843890717707 - pol: 0.00197125 + sys: 4.57684389e-03 + pol: 1.97125000e-03 - stat: 0.0706 - sys: 0.005853204250664759 - pol: 0.0011537 + sys: 5.85320425e-03 + pol: 1.15370000e-03 diff --git a/nnpdf_data/nnpdf_data/commondata/STAR-2006_SHP_200GEV_PI0/filter.py b/nnpdf_data/nnpdf_data/commondata/STAR-2006_SHP_200GEV_PI0/filter.py index fdd8c754fd..bf84fc9a18 100644 --- a/nnpdf_data/nnpdf_data/commondata/STAR-2006_SHP_200GEV_PI0/filter.py +++ b/nnpdf_data/nnpdf_data/commondata/STAR-2006_SHP_200GEV_PI0/filter.py @@ -3,6 +3,10 @@ import pandas as pd import yaml +from nnpdf_data.filter_utils.utils import prettify_float + +yaml.add_representer(float, prettify_float) + def read_data(path_rawdata: str) -> pd.DataFrame: data = yaml.safe_load(Path(path_rawdata).read_text()) diff --git a/nnpdf_data/nnpdf_data/commondata/STAR-2006_SHP_200GEV_PI0/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/STAR-2006_SHP_200GEV_PI0/uncertainties.yaml index 051f353edd..67b611cfef 100644 --- a/nnpdf_data/nnpdf_data/commondata/STAR-2006_SHP_200GEV_PI0/uncertainties.yaml +++ b/nnpdf_data/nnpdf_data/commondata/STAR-2006_SHP_200GEV_PI0/uncertainties.yaml @@ -14,7 +14,7 @@ definitions: bins: - stat: 0.019 syst: 0.002 - sys_pol: 0.0013800000000000002 + sys_pol: 1.38000000e-03 - stat: 0.021 syst: 0.004 sys_pol: 0.00024 diff --git a/nnpdf_data/nnpdf_data/commondata/STAR-2009_1JET_200GEV/filter.py b/nnpdf_data/nnpdf_data/commondata/STAR-2009_1JET_200GEV/filter.py index 81590f05ba..3d591b7db7 100644 --- a/nnpdf_data/nnpdf_data/commondata/STAR-2009_1JET_200GEV/filter.py +++ b/nnpdf_data/nnpdf_data/commondata/STAR-2009_1JET_200GEV/filter.py @@ -9,6 +9,9 @@ import yaml from nnpdf_data.filter_utils.correlations import compute_covmat +from nnpdf_data.filter_utils.utils import prettify_float + +yaml.add_representer(float, prettify_float) TOPOPLOGY_LIST = ["CC", "CF", "SS", "OS", "A", "B", "C"] POL_UNC = 0.065 diff --git a/nnpdf_data/nnpdf_data/commondata/STAR-2009_1JET_200GEV/kinematics_CC.yaml b/nnpdf_data/nnpdf_data/commondata/STAR-2009_1JET_200GEV/kinematics_CC.yaml index fdf857b07d..5857b6a09f 100644 --- a/nnpdf_data/nnpdf_data/commondata/STAR-2009_1JET_200GEV/kinematics_CC.yaml +++ b/nnpdf_data/nnpdf_data/commondata/STAR-2009_1JET_200GEV/kinematics_CC.yaml @@ -64,7 +64,7 @@ bins: mid: 0.25 min: 0.0 pT: - max: 15.489999999999998 + max: 1.54900000e+01 mid: 14.78 min: 14.07 sqrts: @@ -88,7 +88,7 @@ bins: mid: 0.25 min: 0.0 pT: - max: 21.439999999999998 + max: 2.14400000e+01 mid: 20.56 min: 19.68 sqrts: @@ -102,7 +102,7 @@ bins: pT: max: 24.55 mid: 23.61 - min: 22.669999999999998 + min: 2.26700000e+01 sqrts: max: null mid: 200.0 diff --git a/nnpdf_data/nnpdf_data/commondata/STAR-2009_1JET_200GEV/kinematics_CF.yaml b/nnpdf_data/nnpdf_data/commondata/STAR-2009_1JET_200GEV/kinematics_CF.yaml index a0c92de0c5..8dda9dda28 100644 --- a/nnpdf_data/nnpdf_data/commondata/STAR-2009_1JET_200GEV/kinematics_CF.yaml +++ b/nnpdf_data/nnpdf_data/commondata/STAR-2009_1JET_200GEV/kinematics_CF.yaml @@ -6,7 +6,7 @@ bins: pT: max: 6.42 mid: 5.61 - min: 4.800000000000001 + min: 4.80000000e+00 sqrts: max: null mid: 200.0 @@ -18,7 +18,7 @@ bins: pT: max: 7.43 mid: 6.62 - min: 5.8100000000000005 + min: 5.81000000e+00 sqrts: max: null mid: 200.0 @@ -30,7 +30,7 @@ bins: pT: max: 9.17 mid: 8.48 - min: 7.790000000000001 + min: 7.79000000e+00 sqrts: max: null mid: 200.0 @@ -54,7 +54,7 @@ bins: pT: max: 12.84 mid: 12.2 - min: 11.559999999999999 + min: 1.15600000e+01 sqrts: max: null mid: 200.0 @@ -78,7 +78,7 @@ bins: pT: max: 17.68 mid: 16.99 - min: 16.299999999999997 + min: 1.63000000e+01 sqrts: max: null mid: 200.0 diff --git a/nnpdf_data/nnpdf_data/commondata/STAR-2009_1JET_200GEV/uncertainties_CC.yaml b/nnpdf_data/nnpdf_data/commondata/STAR-2009_1JET_200GEV/uncertainties_CC.yaml index ca1dfe3eb6..8d36a4d1dc 100644 --- a/nnpdf_data/nnpdf_data/commondata/STAR-2009_1JET_200GEV/uncertainties_CC.yaml +++ b/nnpdf_data/nnpdf_data/commondata/STAR-2009_1JET_200GEV/uncertainties_CC.yaml @@ -228,630 +228,630 @@ definitions: treatment: ADD type: STAR2009JETunc54 bins: -- pol: 0.00013000000000000002 +- pol: 1.30000000e-04 lumi: 0.0005 - sys_0: -4.560096605317404e-09 - sys_1: 2.4428412633790994e-08 - sys_2: 1.268460326573468e-06 - sys_3: -1.1014521684598827e-06 - sys_4: -1.0171497575511387e-06 - sys_5: 9.249472202348925e-08 - sys_6: 2.3918110351369195e-06 - sys_7: -3.6263693002988605e-06 - sys_8: 1.0715749640942564e-07 - sys_9: 3.1003545034507687e-06 - sys_10: 6.041925652904772e-07 - sys_11: -4.821952423434104e-07 - sys_12: -1.7137367672335379e-06 - sys_13: 6.888111760595504e-07 - sys_14: -2.4788506067726944e-07 - sys_15: 1.182930515908203e-06 - sys_16: 1.3392613328980006e-06 - sys_17: -2.6767427116744544e-06 - sys_18: 3.7251439923462976e-06 - sys_19: -4.753305868932915e-08 - sys_20: 1.3637527784880648e-06 - sys_21: 9.04140408961788e-06 - sys_22: 6.864649078138722e-06 - sys_23: -2.8837299626801248e-06 - sys_24: -7.82254600305017e-08 - sys_25: 6.2814041386026e-07 - sys_26: -5.1958143540667645e-06 - sys_27: -4.147300398148338e-06 - sys_28: -4.062628064805128e-06 - sys_29: -6.36452015591204e-07 - sys_30: -2.6378195804707558e-06 - sys_31: 7.868407342722966e-06 - sys_32: 9.864676449519128e-06 - sys_33: -3.4777169977951796e-06 - sys_34: 3.4234806730536096e-06 - sys_35: 8.63381007777326e-06 - sys_36: -7.0319000311094224e-06 - sys_37: -3.4908448489503095e-05 - sys_38: -3.411383454024576e-06 - sys_39: 1.0845248742574649e-05 - sys_40: 2.735680791459674e-05 - sys_41: -7.367928527089035e-06 - sys_42: -6.426444846715956e-06 - sys_43: -1.6234555331387914e-06 - sys_44: -1.6953711975131542e-05 - sys_45: 1.8087075350102017e-05 - sys_46: -2.8027152144611764e-05 - sys_47: -3.6049757245097315e-05 - sys_48: 5.32027352444477e-05 - sys_49: 2.460992740657794e-05 - sys_50: -0.0014685792665853356 - sys_51: -4.7677947095669554e-05 - sys_52: -0.0004004891142595236 - sys_53: -0.00010407535221525721 - sys_54: 2.95466388021444e-05 + sys_0: -4.56009661e-09 + sys_1: 2.44284126e-08 + sys_2: 1.26846033e-06 + sys_3: -1.10145217e-06 + sys_4: -1.01714976e-06 + sys_5: 9.24947220e-08 + sys_6: 2.39181104e-06 + sys_7: -3.62636930e-06 + sys_8: 1.07157496e-07 + sys_9: 3.10035450e-06 + sys_10: 6.04192565e-07 + sys_11: -4.82195242e-07 + sys_12: -1.71373677e-06 + sys_13: 6.88811176e-07 + sys_14: -2.47885061e-07 + sys_15: 1.18293052e-06 + sys_16: 1.33926133e-06 + sys_17: -2.67674271e-06 + sys_18: 3.72514399e-06 + sys_19: -4.75330587e-08 + sys_20: 1.36375278e-06 + sys_21: 9.04140409e-06 + sys_22: 6.86464908e-06 + sys_23: -2.88372996e-06 + sys_24: -7.82254600e-08 + sys_25: 6.28140414e-07 + sys_26: -5.19581435e-06 + sys_27: -4.14730040e-06 + sys_28: -4.06262806e-06 + sys_29: -6.36452016e-07 + sys_30: -2.63781958e-06 + sys_31: 7.86840734e-06 + sys_32: 9.86467645e-06 + sys_33: -3.47771700e-06 + sys_34: 3.42348067e-06 + sys_35: 8.63381008e-06 + sys_36: -7.03190003e-06 + sys_37: -3.49084485e-05 + sys_38: -3.41138345e-06 + sys_39: 1.08452487e-05 + sys_40: 2.73568079e-05 + sys_41: -7.36792853e-06 + sys_42: -6.42644485e-06 + sys_43: -1.62345553e-06 + sys_44: -1.69537120e-05 + sys_45: 1.80870754e-05 + sys_46: -2.80271521e-05 + sys_47: -3.60497572e-05 + sys_48: 5.32027352e-05 + sys_49: 2.46099274e-05 + sys_50: -1.46857927e-03 + sys_51: -4.76779471e-05 + sys_52: -4.00489114e-04 + sys_53: -1.04075352e-04 + sys_54: 2.95466388e-05 - pol: 0.000364 lumi: 0.0005 - sys_0: -1.4350515100639531e-08 - sys_1: 6.98388401586883e-08 - sys_2: 2.4812901550253392e-06 - sys_3: -2.4875088413785044e-06 - sys_4: -1.6110971418343143e-06 - sys_5: 2.6063737605456294e-07 - sys_6: 3.533058307933471e-06 - sys_7: -7.542239919875341e-06 - sys_8: 1.9714838426259067e-06 - sys_9: 6.609398167680517e-06 - sys_10: 1.330199616577454e-06 - sys_11: -3.9539810708835064e-07 - sys_12: -4.842948845730754e-06 - sys_13: 3.254617777453274e-07 - sys_14: -1.4934978414371218e-06 - sys_15: 6.737235363180783e-06 - sys_16: 8.328073531006878e-06 - sys_17: -5.074168724230306e-06 - sys_18: 6.927958484506546e-06 - sys_19: 3.0492399451893975e-07 - sys_20: 2.735913753110764e-06 - sys_21: 2.8853393019499008e-05 - sys_22: 1.885665853512117e-05 - sys_23: -6.492905533663924e-06 - sys_24: -1.1138153197801764e-06 - sys_25: 2.2530424338065384e-06 - sys_26: -1.024679877206268e-05 - sys_27: -8.001259644335058e-06 - sys_28: -8.600010351141811e-06 - sys_29: -1.2016967377271363e-06 - sys_30: -4.96742914355443e-06 - sys_31: 1.4995987528441434e-05 - sys_32: 3.22018096949185e-05 - sys_33: -9.56781261954574e-06 - sys_34: 1.2765784125598483e-05 - sys_35: 2.2699716142627395e-05 - sys_36: -1.56423637670359e-05 - sys_37: -7.941486553433978e-05 - sys_38: -7.308212275449042e-06 - sys_39: 1.729845707140665e-05 - sys_40: 7.487656248350527e-05 - sys_41: -3.229061945804604e-05 - sys_42: -1.237352138491847e-05 - sys_43: 2.33896703448458e-06 - sys_44: -3.690959814193032e-05 - sys_45: 2.903161905859546e-05 - sys_46: -6.66439815866999e-05 - sys_47: -8.281289869960347e-05 - sys_48: 0.00032362282889817224 - sys_49: -5.873601484384279e-06 - sys_50: 6.391820997540754e-05 - sys_51: 4.980949144876201e-05 - sys_52: -0.0005412019082525009 - sys_53: 0.0007591695470459624 - sys_54: -0.0013070271436649839 + sys_0: -1.43505151e-08 + sys_1: 6.98388402e-08 + sys_2: 2.48129016e-06 + sys_3: -2.48750884e-06 + sys_4: -1.61109714e-06 + sys_5: 2.60637376e-07 + sys_6: 3.53305831e-06 + sys_7: -7.54223992e-06 + sys_8: 1.97148384e-06 + sys_9: 6.60939817e-06 + sys_10: 1.33019962e-06 + sys_11: -3.95398107e-07 + sys_12: -4.84294885e-06 + sys_13: 3.25461778e-07 + sys_14: -1.49349784e-06 + sys_15: 6.73723536e-06 + sys_16: 8.32807353e-06 + sys_17: -5.07416872e-06 + sys_18: 6.92795848e-06 + sys_19: 3.04923995e-07 + sys_20: 2.73591375e-06 + sys_21: 2.88533930e-05 + sys_22: 1.88566585e-05 + sys_23: -6.49290553e-06 + sys_24: -1.11381532e-06 + sys_25: 2.25304243e-06 + sys_26: -1.02467988e-05 + sys_27: -8.00125964e-06 + sys_28: -8.60001035e-06 + sys_29: -1.20169674e-06 + sys_30: -4.96742914e-06 + sys_31: 1.49959875e-05 + sys_32: 3.22018097e-05 + sys_33: -9.56781262e-06 + sys_34: 1.27657841e-05 + sys_35: 2.26997161e-05 + sys_36: -1.56423638e-05 + sys_37: -7.94148655e-05 + sys_38: -7.30821228e-06 + sys_39: 1.72984571e-05 + sys_40: 7.48765625e-05 + sys_41: -3.22906195e-05 + sys_42: -1.23735214e-05 + sys_43: 2.33896703e-06 + sys_44: -3.69095981e-05 + sys_45: 2.90316191e-05 + sys_46: -6.66439816e-05 + sys_47: -8.28128987e-05 + sys_48: 3.23622829e-04 + sys_49: -5.87360148e-06 + sys_50: 6.39182100e-05 + sys_51: 4.98094914e-05 + sys_52: -5.41201908e-04 + sys_53: 7.59169547e-04 + sys_54: -1.30702714e-03 - pol: 8.45e-05 lumi: 0.0005 - sys_0: -4.894916883679728e-08 - sys_1: 1.635009414588177e-06 - sys_2: 1.2466414086277883e-06 - sys_3: -1.0417493811184328e-06 - sys_4: -1.0519039018451855e-06 - sys_5: 4.98274117212887e-07 - sys_6: 2.148079212051982e-06 - sys_7: -3.451233811238411e-06 - sys_8: 1.3866507194652238e-05 - sys_9: 4.379868907485376e-06 - sys_10: 1.4459921130404472e-06 - sys_11: -1.3467020050288876e-08 - sys_12: -3.1167989223665383e-06 - sys_13: 2.4714727536508403e-06 - sys_14: -3.463803046655693e-06 - sys_15: 2.8901830077938114e-05 - sys_16: 3.724879285646521e-05 - sys_17: -4.016493322931468e-06 - sys_18: 5.391890693245309e-06 - sys_19: 4.2104543817846974e-06 - sys_20: 2.296943704316016e-06 - sys_21: 7.111006057359234e-05 - sys_22: 2.8513298064911328e-05 - sys_23: -6.375634947847607e-06 - sys_24: -1.9309292419168484e-05 - sys_25: 1.3138195740670743e-05 - sys_26: -1.2000818188140862e-05 - sys_27: -3.3885173049548873e-06 - sys_28: -1.7012349886561543e-05 - sys_29: 1.865171790241271e-06 - sys_30: 3.631743056895837e-07 - sys_31: 5.359405085463162e-06 - sys_32: 6.755963744010326e-05 - sys_33: -1.2358249167332467e-05 - sys_34: 4.725875189806998e-05 - sys_35: 6.047347821489727e-05 - sys_36: -3.915521198833676e-05 - sys_37: -0.00019196532913102874 - sys_38: -2.1353137806799894e-05 - sys_39: -8.16260742628535e-06 - sys_40: 0.00017969791105139967 - sys_41: -0.00010095691577827011 - sys_42: 6.600048383399644e-06 - sys_43: 1.4894395627376349e-05 - sys_44: -9.033167684030869e-06 - sys_45: -2.639508203965404e-05 - sys_46: 2.130454956371233e-05 - sys_47: 9.197785885255413e-05 - sys_48: 2.3660777626868528e-05 - sys_49: -0.0013840276379121425 - sys_50: -2.7032097869046795e-05 - sys_51: 0.00022517601119595177 - sys_52: -5.5598169300563666e-05 - sys_53: 0.00014708267515582948 - sys_54: 0.0001276895778245882 -- pol: 0.00032500000000000004 + sys_0: -4.89491688e-08 + sys_1: 1.63500941e-06 + sys_2: 1.24664141e-06 + sys_3: -1.04174938e-06 + sys_4: -1.05190390e-06 + sys_5: 4.98274117e-07 + sys_6: 2.14807921e-06 + sys_7: -3.45123381e-06 + sys_8: 1.38665072e-05 + sys_9: 4.37986891e-06 + sys_10: 1.44599211e-06 + sys_11: -1.34670201e-08 + sys_12: -3.11679892e-06 + sys_13: 2.47147275e-06 + sys_14: -3.46380305e-06 + sys_15: 2.89018301e-05 + sys_16: 3.72487929e-05 + sys_17: -4.01649332e-06 + sys_18: 5.39189069e-06 + sys_19: 4.21045438e-06 + sys_20: 2.29694370e-06 + sys_21: 7.11100606e-05 + sys_22: 2.85132981e-05 + sys_23: -6.37563495e-06 + sys_24: -1.93092924e-05 + sys_25: 1.31381957e-05 + sys_26: -1.20008182e-05 + sys_27: -3.38851730e-06 + sys_28: -1.70123499e-05 + sys_29: 1.86517179e-06 + sys_30: 3.63174306e-07 + sys_31: 5.35940509e-06 + sys_32: 6.75596374e-05 + sys_33: -1.23582492e-05 + sys_34: 4.72587519e-05 + sys_35: 6.04734782e-05 + sys_36: -3.91552120e-05 + sys_37: -1.91965329e-04 + sys_38: -2.13531378e-05 + sys_39: -8.16260743e-06 + sys_40: 1.79697911e-04 + sys_41: -1.00956916e-04 + sys_42: 6.60004838e-06 + sys_43: 1.48943956e-05 + sys_44: -9.03316768e-06 + sys_45: -2.63950820e-05 + sys_46: 2.13045496e-05 + sys_47: 9.19778589e-05 + sys_48: 2.36607776e-05 + sys_49: -1.38402764e-03 + sys_50: -2.70320979e-05 + sys_51: 2.25176011e-04 + sys_52: -5.55981693e-05 + sys_53: 1.47082675e-04 + sys_54: 1.27689578e-04 +- pol: 3.25000000e-04 lumi: 0.0005 - sys_0: -1.8205210440251485e-07 - sys_1: 1.0385015502344598e-05 - sys_2: 1.4468870699885057e-06 - sys_3: -1.1790260617541192e-06 - sys_4: -1.3275342435095335e-06 - sys_5: 2.6624021004101123e-06 - sys_6: 2.146789812209034e-06 - sys_7: -5.538668911703043e-06 - sys_8: 5.377515174843026e-05 - sys_9: 4.356187414382516e-06 - sys_10: 5.292285421841462e-06 - sys_11: 1.176107901256218e-06 - sys_12: -5.057155497555738e-06 - sys_13: 3.7718923475319063e-06 - sys_14: -4.856186564512195e-06 - sys_15: 5.231639973889563e-05 - sys_16: 6.987313924373564e-05 - sys_17: -8.953556731513257e-06 - sys_18: 1.1625633031466262e-05 - sys_19: 1.9994338794498e-05 - sys_20: 8.915563500498892e-06 - sys_21: 6.6408552299569e-05 - sys_22: 7.3901717170000176e-06 - sys_23: -7.764721494269455e-06 - sys_24: -6.200736609570822e-05 - sys_25: 3.585017273477727e-05 - sys_26: -4.062403605703911e-05 - sys_27: 1.5376857717589458e-07 - sys_28: -5.3389423501835475e-05 - sys_29: 6.778808754619891e-06 - sys_30: -3.888758449170634e-08 - sys_31: 4.223759107147009e-06 - sys_32: 5.9160242599705904e-05 - sys_33: -4.869134463077519e-06 - sys_34: 8.269924759179527e-05 - sys_35: 0.00014755987760517914 - sys_36: -9.522514072600372e-05 - sys_37: -0.00015761091676766474 - sys_38: -8.247661392983655e-05 - sys_39: -7.785872565431817e-05 - sys_40: 0.0002075360323946853 - sys_41: -0.0002213407331676131 - sys_42: 6.307021775684483e-05 - sys_43: 3.453977732326453e-05 - sys_44: 4.853309488181672e-05 - sys_45: -0.00012385747740056125 - sys_46: 0.00023780796244168118 - sys_47: 0.00017104749809175484 - sys_48: 5.969430850044747e-05 - sys_49: -0.0002254848620509047 - sys_50: 5.129567479947445e-05 - sys_51: -0.0014219206695253504 - sys_52: 2.9187710718529863e-05 - sys_53: -0.0004710087086883188 - sys_54: -0.0003362438380619445 + sys_0: -1.82052104e-07 + sys_1: 1.03850155e-05 + sys_2: 1.44688707e-06 + sys_3: -1.17902606e-06 + sys_4: -1.32753424e-06 + sys_5: 2.66240210e-06 + sys_6: 2.14678981e-06 + sys_7: -5.53866891e-06 + sys_8: 5.37751517e-05 + sys_9: 4.35618741e-06 + sys_10: 5.29228542e-06 + sys_11: 1.17610790e-06 + sys_12: -5.05715550e-06 + sys_13: 3.77189235e-06 + sys_14: -4.85618656e-06 + sys_15: 5.23163997e-05 + sys_16: 6.98731392e-05 + sys_17: -8.95355673e-06 + sys_18: 1.16256330e-05 + sys_19: 1.99943388e-05 + sys_20: 8.91556350e-06 + sys_21: 6.64085523e-05 + sys_22: 7.39017172e-06 + sys_23: -7.76472149e-06 + sys_24: -6.20073661e-05 + sys_25: 3.58501727e-05 + sys_26: -4.06240361e-05 + sys_27: 1.53768577e-07 + sys_28: -5.33894235e-05 + sys_29: 6.77880875e-06 + sys_30: -3.88875845e-08 + sys_31: 4.22375911e-06 + sys_32: 5.91602426e-05 + sys_33: -4.86913446e-06 + sys_34: 8.26992476e-05 + sys_35: 1.47559878e-04 + sys_36: -9.52251407e-05 + sys_37: -1.57610917e-04 + sys_38: -8.24766139e-05 + sys_39: -7.78587257e-05 + sys_40: 2.07536032e-04 + sys_41: -2.21340733e-04 + sys_42: 6.30702178e-05 + sys_43: 3.45397773e-05 + sys_44: 4.85330949e-05 + sys_45: -1.23857477e-04 + sys_46: 2.37807962e-04 + sys_47: 1.71047498e-04 + sys_48: 5.96943085e-05 + sys_49: -2.25484862e-04 + sys_50: 5.12956748e-05 + sys_51: -1.42192067e-03 + sys_52: 2.91877107e-05 + sys_53: -4.71008709e-04 + sys_54: -3.36243838e-04 - pol: 0.000351 lumi: 0.0005 - sys_0: -7.524403284734668e-07 - sys_1: 6.110429619211831e-05 - sys_2: 3.231697604644064e-06 - sys_3: -3.1185452113675476e-06 - sys_4: -2.480004465288524e-06 - sys_5: 1.868510361201049e-05 - sys_6: 3.831010676911596e-06 - sys_7: -1.1538503271591287e-05 - sys_8: 0.00011922350405679826 - sys_9: 1.227667803646994e-05 - sys_10: 1.5302344697198844e-05 - sys_11: 6.708791630644308e-06 - sys_12: -1.4955516678253635e-05 - sys_13: 1.0391094160616002e-05 - sys_14: -8.846076386765641e-06 - sys_15: 5.3546038559185743e-05 - sys_16: 7.515231705423001e-05 - sys_17: -4.022032578357402e-05 - sys_18: 3.771609461982632e-05 - sys_19: 8.631417440381654e-05 - sys_20: 4.252836910910091e-05 - sys_21: 2.6775617254680904e-05 - sys_22: -6.058255059883739e-06 - sys_23: -1.1388174974747861e-05 - sys_24: -0.0001038319855582612 - sys_25: 6.355405407056844e-05 - sys_26: -0.00016765793977535336 - sys_27: 2.138457768508403e-05 - sys_28: -0.00017187799339848792 - sys_29: 2.865188788787487e-05 - sys_30: 1.943452246626721e-06 - sys_31: -2.0163416396937408e-05 - sys_32: 2.9086197927229134e-05 - sys_33: -1.7110605559728237e-06 - sys_34: 8.818609505121076e-05 - sys_35: 0.0002923806318249369 - sys_36: -0.00019419898299362164 - sys_37: -4.7635889032106905e-05 - sys_38: -0.00015122701052680204 - sys_39: -0.00023706779060026355 - sys_40: 0.00011389683087035301 - sys_41: -0.0002923805776734528 - sys_42: 0.0002017949998995244 - sys_43: 5.704491415207515e-05 - sys_44: 0.000308313859041939 - sys_45: -0.0003528557600017023 - sys_46: -0.0017016876472354169 - sys_47: -0.0007558306207384706 - sys_48: -0.0002299985563924863 - sys_49: -5.9319537873916494e-05 - sys_50: 1.8805482142971063e-05 - sys_51: -0.00017773334686709558 - sys_52: 4.9463119956868356e-05 - sys_53: -4.278752088731618e-05 - sys_54: -2.7912834314212515e-06 + sys_0: -7.52440328e-07 + sys_1: 6.11042962e-05 + sys_2: 3.23169760e-06 + sys_3: -3.11854521e-06 + sys_4: -2.48000447e-06 + sys_5: 1.86851036e-05 + sys_6: 3.83101068e-06 + sys_7: -1.15385033e-05 + sys_8: 1.19223504e-04 + sys_9: 1.22766780e-05 + sys_10: 1.53023447e-05 + sys_11: 6.70879163e-06 + sys_12: -1.49555167e-05 + sys_13: 1.03910942e-05 + sys_14: -8.84607639e-06 + sys_15: 5.35460386e-05 + sys_16: 7.51523171e-05 + sys_17: -4.02203258e-05 + sys_18: 3.77160946e-05 + sys_19: 8.63141744e-05 + sys_20: 4.25283691e-05 + sys_21: 2.67756173e-05 + sys_22: -6.05825506e-06 + sys_23: -1.13881750e-05 + sys_24: -1.03831986e-04 + sys_25: 6.35540541e-05 + sys_26: -1.67657940e-04 + sys_27: 2.13845777e-05 + sys_28: -1.71877993e-04 + sys_29: 2.86518879e-05 + sys_30: 1.94345225e-06 + sys_31: -2.01634164e-05 + sys_32: 2.90861979e-05 + sys_33: -1.71106056e-06 + sys_34: 8.81860951e-05 + sys_35: 2.92380632e-04 + sys_36: -1.94198983e-04 + sys_37: -4.76358890e-05 + sys_38: -1.51227011e-04 + sys_39: -2.37067791e-04 + sys_40: 1.13896831e-04 + sys_41: -2.92380578e-04 + sys_42: 2.01795000e-04 + sys_43: 5.70449142e-05 + sys_44: 3.08313859e-04 + sys_45: -3.52855760e-04 + sys_46: -1.70168765e-03 + sys_47: -7.55830621e-04 + sys_48: -2.29998556e-04 + sys_49: -5.93195379e-05 + sys_50: 1.88054821e-05 + sys_51: -1.77733347e-04 + sys_52: 4.94631200e-05 + sys_53: -4.27875209e-05 + sys_54: -2.79128343e-06 - pol: 0.000741 lumi: 0.0005 - sys_0: -1.960455506442849e-06 - sys_1: 0.00017160773766128622 - sys_2: 6.1683502786197845e-06 - sys_3: -6.299775246142317e-06 - sys_4: -4.70488065587176e-06 - sys_5: 0.00010267586593322884 - sys_6: 6.584792131368732e-06 - sys_7: -2.4596942232008585e-05 - sys_8: 0.00012387129200254593 - sys_9: 3.598925194661181e-05 - sys_10: 2.6782795407959745e-05 - sys_11: 2.9457713903031613e-05 - sys_12: -4.421708007527508e-05 - sys_13: 6.305685280289329e-05 - sys_14: -2.8460806231585872e-05 - sys_15: 1.9776231753111837e-05 - sys_16: 4.277525968079596e-05 - sys_17: -0.00018671818176553074 - sys_18: 4.7847160815514054e-05 - sys_19: 0.00018267581143355187 - sys_20: 0.00019635095578864165 - sys_21: -7.521655225180994e-06 - sys_22: -7.756485434296091e-06 - sys_23: 3.84631917302205e-05 - sys_24: -8.705890763073852e-05 - sys_25: 6.927986245733682e-05 - sys_26: -0.0004389260541713616 - sys_27: 0.00013224534996914526 - sys_28: -0.00037000682588054953 - sys_29: 8.276552995005676e-05 - sys_30: 6.892735336198686e-05 - sys_31: -0.00016422034065490502 - sys_32: -9.244018573004337e-06 - sys_33: -3.4228759020829918e-06 - sys_34: 4.642061467302927e-05 - sys_35: 0.00034376962062937613 - sys_36: -0.00023233118614114125 - sys_37: 1.5131125263055065e-05 - sys_38: -0.00011264049448128318 - sys_39: -0.0006276697596163062 - sys_40: -2.2985894239678425e-05 - sys_41: -0.0001594276310110097 - sys_42: 0.0005069869207118626 - sys_43: 8.691990828817948e-05 - sys_44: -0.0022123274566535987 - sys_45: 0.0008457649840795892 - sys_46: -0.00018485462106998605 - sys_47: -0.000126936601601428 - sys_48: -7.999695234448012e-05 - sys_49: -1.2497023167817581e-05 - sys_50: 1.0176314762854823e-05 - sys_51: -5.216822609528978e-05 - sys_52: 3.471352678465846e-05 - sys_53: -3.135352700130149e-05 - sys_54: -2.026480993011761e-06 -- pol: 0.0007475 + sys_0: -1.96045551e-06 + sys_1: 1.71607738e-04 + sys_2: 6.16835028e-06 + sys_3: -6.29977525e-06 + sys_4: -4.70488066e-06 + sys_5: 1.02675866e-04 + sys_6: 6.58479213e-06 + sys_7: -2.45969422e-05 + sys_8: 1.23871292e-04 + sys_9: 3.59892519e-05 + sys_10: 2.67827954e-05 + sys_11: 2.94577139e-05 + sys_12: -4.42170801e-05 + sys_13: 6.30568528e-05 + sys_14: -2.84608062e-05 + sys_15: 1.97762318e-05 + sys_16: 4.27752597e-05 + sys_17: -1.86718182e-04 + sys_18: 4.78471608e-05 + sys_19: 1.82675811e-04 + sys_20: 1.96350956e-04 + sys_21: -7.52165523e-06 + sys_22: -7.75648543e-06 + sys_23: 3.84631917e-05 + sys_24: -8.70589076e-05 + sys_25: 6.92798625e-05 + sys_26: -4.38926054e-04 + sys_27: 1.32245350e-04 + sys_28: -3.70006826e-04 + sys_29: 8.27655300e-05 + sys_30: 6.89273534e-05 + sys_31: -1.64220341e-04 + sys_32: -9.24401857e-06 + sys_33: -3.42287590e-06 + sys_34: 4.64206147e-05 + sys_35: 3.43769621e-04 + sys_36: -2.32331186e-04 + sys_37: 1.51311253e-05 + sys_38: -1.12640494e-04 + sys_39: -6.27669760e-04 + sys_40: -2.29858942e-05 + sys_41: -1.59427631e-04 + sys_42: 5.06986921e-04 + sys_43: 8.69199083e-05 + sys_44: -2.21232746e-03 + sys_45: 8.45764984e-04 + sys_46: -1.84854621e-04 + sys_47: -1.26936602e-04 + sys_48: -7.99969523e-05 + sys_49: -1.24970232e-05 + sys_50: 1.01763148e-05 + sys_51: -5.21682261e-05 + sys_52: 3.47135268e-05 + sys_53: -3.13535270e-05 + sys_54: -2.02648099e-06 +- pol: 7.47500000e-04 lumi: 0.0005 - sys_0: -2.92549478692864e-06 - sys_1: 0.0002317010479031325 - sys_2: 1.5794472301486974e-05 - sys_3: -1.7206007112067185e-05 - sys_4: -1.4286012281923744e-05 - sys_5: 0.0002928626145028016 - sys_6: 1.68696072876952e-05 - sys_7: -6.401794987400566e-05 - sys_8: 5.575471435743061e-05 - sys_9: 0.00016116409357209402 - sys_10: 5.3938153014081987e-05 - sys_11: 0.0001900081097603855 - sys_12: -0.00011935996680818614 - sys_13: 0.00034460934968512375 - sys_14: -6.85167001448707e-05 - sys_15: -3.566152603670358e-05 - sys_16: 1.3727549952989072e-05 - sys_17: -0.0006531419564800223 - sys_18: -0.0001775399053030592 - sys_19: 0.00023530132606138255 - sys_20: 0.0006357178507885945 - sys_21: -8.025232264749323e-06 - sys_22: -3.7083257159348444e-06 - sys_23: 0.0003338788614012622 - sys_24: -4.455116756448711e-05 - sys_25: 5.991432177419906e-05 - sys_26: -0.0007246118183336491 - sys_27: 0.0005435646600755391 - sys_28: -0.000641518668972409 - sys_29: 0.00018757390439596582 - sys_30: 0.0007586311027336596 - sys_31: -0.0009452765196465023 - sys_32: -0.0002086956171301864 - sys_33: 8.902892302993092e-05 - sys_34: -9.110004761072925e-05 - sys_35: 0.001096473535781146 - sys_36: -0.0006438353478145178 - sys_37: 0.0003238767523782688 - sys_38: -0.0007333017965956018 - sys_39: 0.003025598796020456 - sys_40: 0.00014525397357044952 - sys_41: -0.0002229044147326883 - sys_42: -0.0004459508178380915 - sys_43: -0.00012894487134253976 - sys_44: -0.00019397342096312933 - sys_45: 0.00012389625684547254 - sys_46: -4.943658287455192e-05 - sys_47: -2.7101245158566008e-05 - sys_48: -2.6950037879127177e-05 - sys_49: 9.664388189560458e-07 - sys_50: 4.3195033495901245e-06 - sys_51: -8.453160919562598e-06 - sys_52: 1.4944221889225621e-05 - sys_53: -1.3053544706312316e-05 - sys_54: -2.4143028225900555e-07 + sys_0: -2.92549479e-06 + sys_1: 2.31701048e-04 + sys_2: 1.57944723e-05 + sys_3: -1.72060071e-05 + sys_4: -1.42860123e-05 + sys_5: 2.92862615e-04 + sys_6: 1.68696073e-05 + sys_7: -6.40179499e-05 + sys_8: 5.57547144e-05 + sys_9: 1.61164094e-04 + sys_10: 5.39381530e-05 + sys_11: 1.90008110e-04 + sys_12: -1.19359967e-04 + sys_13: 3.44609350e-04 + sys_14: -6.85167001e-05 + sys_15: -3.56615260e-05 + sys_16: 1.37275500e-05 + sys_17: -6.53141956e-04 + sys_18: -1.77539905e-04 + sys_19: 2.35301326e-04 + sys_20: 6.35717851e-04 + sys_21: -8.02523226e-06 + sys_22: -3.70832572e-06 + sys_23: 3.33878861e-04 + sys_24: -4.45511676e-05 + sys_25: 5.99143218e-05 + sys_26: -7.24611818e-04 + sys_27: 5.43564660e-04 + sys_28: -6.41518669e-04 + sys_29: 1.87573904e-04 + sys_30: 7.58631103e-04 + sys_31: -9.45276520e-04 + sys_32: -2.08695617e-04 + sys_33: 8.90289230e-05 + sys_34: -9.11000476e-05 + sys_35: 1.09647354e-03 + sys_36: -6.43835348e-04 + sys_37: 3.23876752e-04 + sys_38: -7.33301797e-04 + sys_39: 3.02559880e-03 + sys_40: 1.45253974e-04 + sys_41: -2.22904415e-04 + sys_42: -4.45950818e-04 + sys_43: -1.28944871e-04 + sys_44: -1.93973421e-04 + sys_45: 1.23896257e-04 + sys_46: -4.94365829e-05 + sys_47: -2.71012452e-05 + sys_48: -2.69500379e-05 + sys_49: 9.66438819e-07 + sys_50: 4.31950335e-06 + sys_51: -8.45316092e-06 + sys_52: 1.49442219e-05 + sys_53: -1.30535447e-05 + sys_54: -2.41430282e-07 - pol: 0.000858 lumi: 0.0005 - sys_0: -2.0236137649326277e-06 - sys_1: 0.00012288063657801983 - sys_2: 6.145814340100531e-05 - sys_3: -3.9977758937834636e-05 - sys_4: -6.598373410876559e-05 - sys_5: 0.00028498681921190056 - sys_6: 3.846309602647122e-05 - sys_7: -0.0002026241794249424 - sys_8: 7.93591606130369e-06 - sys_9: 0.0006497187406231443 - sys_10: 0.00014812835472718952 - sys_11: 0.0008740692497390611 - sys_12: -0.00011396906177455083 - sys_13: 0.0011303786695121935 - sys_14: 0.0001860391062920528 - sys_15: -6.444703619354252e-05 - sys_16: 2.4441684683204684e-06 - sys_17: -0.0009084892447243394 - sys_18: -0.001247610101688661 - sys_19: 0.0004277488575734601 - sys_20: 0.0012256146803807837 - sys_21: 3.201156452374214e-05 - sys_22: 1.7292903941676116e-05 - sys_23: 0.001040953100551125 - sys_24: -7.065959064865195e-05 - sys_25: -3.120935472393055e-06 - sys_26: -0.0018225840547640324 - sys_27: -0.0038007237347611224 - sys_28: 0.00027959462285835114 - sys_29: -0.0002788652790114636 - sys_30: -0.0024391565412396816 - sys_31: 0.0009061962001091709 - sys_32: 0.00012163400965698659 - sys_33: -7.566945122118249e-05 - sys_34: 6.922915055588197e-05 - sys_35: 4.5253624852263276e-05 - sys_36: -6.799903735282776e-05 - sys_37: 5.366489786171116e-06 - sys_38: -0.0001230909277705915 - sys_39: 0.00044761327592963897 - sys_40: 2.994903172528008e-05 - sys_41: -7.3474546868815e-05 - sys_42: -0.00011221939465734769 - sys_43: -3.2530748138904155e-05 - sys_44: -6.26733818893853e-05 - sys_45: 3.38432037625801e-05 - sys_46: -1.0646597632366186e-05 - sys_47: -1.3849599588955377e-06 - sys_48: -1.1734257454425622e-05 - sys_49: 3.4001469451659907e-06 - sys_50: 2.03956225896235e-06 - sys_51: 2.5441528738712617e-06 - sys_52: 8.405840861896693e-06 - sys_53: -7.1168088966947545e-06 - sys_54: 4.399363244585337e-07 -- pol: 0.0013455000000000001 + sys_0: -2.02361376e-06 + sys_1: 1.22880637e-04 + sys_2: 6.14581434e-05 + sys_3: -3.99777589e-05 + sys_4: -6.59837341e-05 + sys_5: 2.84986819e-04 + sys_6: 3.84630960e-05 + sys_7: -2.02624179e-04 + sys_8: 7.93591606e-06 + sys_9: 6.49718741e-04 + sys_10: 1.48128355e-04 + sys_11: 8.74069250e-04 + sys_12: -1.13969062e-04 + sys_13: 1.13037867e-03 + sys_14: 1.86039106e-04 + sys_15: -6.44470362e-05 + sys_16: 2.44416847e-06 + sys_17: -9.08489245e-04 + sys_18: -1.24761010e-03 + sys_19: 4.27748858e-04 + sys_20: 1.22561468e-03 + sys_21: 3.20115645e-05 + sys_22: 1.72929039e-05 + sys_23: 1.04095310e-03 + sys_24: -7.06595906e-05 + sys_25: -3.12093547e-06 + sys_26: -1.82258405e-03 + sys_27: -3.80072373e-03 + sys_28: 2.79594623e-04 + sys_29: -2.78865279e-04 + sys_30: -2.43915654e-03 + sys_31: 9.06196200e-04 + sys_32: 1.21634010e-04 + sys_33: -7.56694512e-05 + sys_34: 6.92291506e-05 + sys_35: 4.52536249e-05 + sys_36: -6.79990374e-05 + sys_37: 5.36648979e-06 + sys_38: -1.23090928e-04 + sys_39: 4.47613276e-04 + sys_40: 2.99490317e-05 + sys_41: -7.34745469e-05 + sys_42: -1.12219395e-04 + sys_43: -3.25307481e-05 + sys_44: -6.26733819e-05 + sys_45: 3.38432038e-05 + sys_46: -1.06465976e-05 + sys_47: -1.38495996e-06 + sys_48: -1.17342575e-05 + sys_49: 3.40014695e-06 + sys_50: 2.03956226e-06 + sys_51: 2.54415287e-06 + sys_52: 8.40584086e-06 + sys_53: -7.11680890e-06 + sys_54: 4.39936324e-07 +- pol: 1.34550000e-03 lumi: 0.0005 - sys_0: -1.0507706815999367e-06 - sys_1: 3.374785867189366e-05 - sys_2: 0.0004444794995820797 - sys_3: -5.977339354934646e-05 - sys_4: -0.0005307404517739781 - sys_5: 0.00011222941474132937 - sys_6: -0.00019322236503615625 - sys_7: -0.0003953825222330837 - sys_8: 6.414019979797795e-06 - sys_9: 0.001820092047547991 - sys_10: 0.0003905279591489881 - sys_11: 0.003271696612321087 - sys_12: 0.0002207706265955077 - sys_13: 0.004125352917833187 - sys_14: 0.0023086648250417213 - sys_15: 2.9844172286021273e-05 - sys_16: -1.3067931342880856e-06 - sys_17: -0.0021454799995885305 - sys_18: 0.006408649143604257 - sys_19: -0.002009349093768543 - sys_20: -0.0011454495073974205 - sys_21: -7.141138031008427e-05 - sys_22: -3.391663496084953e-05 - sys_23: -0.000900569767331024 - sys_24: 4.707422986286111e-05 - sys_25: 2.747899459531926e-05 - sys_26: -5.5663480939939185e-05 - sys_27: -0.00011049167415091876 - sys_28: -0.00010960067919344939 - sys_29: -0.00018405500936646022 - sys_30: -0.0005046067802955094 - sys_31: 0.00019240838454189093 - sys_32: 3.411585465007484e-05 - sys_33: -6.476981775574936e-05 - sys_34: 3.6796076979263565e-05 - sys_35: 1.640644497668697e-05 - sys_36: -3.08125373523139e-05 - sys_37: 7.280202602333375e-07 - sys_38: -3.940191351198358e-05 - sys_39: 0.00012207596605944652 - sys_40: 7.671794322028229e-06 - sys_41: -1.926981579987347e-05 - sys_42: -2.7551506787971846e-05 - sys_43: -6.6240050623443e-06 - sys_44: -1.3823264594972212e-05 - sys_45: 5.785919398055734e-06 - sys_46: -2.6753452234753334e-07 - sys_47: 2.6343072772341275e-06 - sys_48: -4.030072126283909e-06 - sys_49: 1.8954686337478434e-06 - sys_50: 6.39155094130193e-07 - sys_51: 2.558765519258908e-06 - sys_52: 3.2469400489776135e-06 - sys_53: -2.4220372020906036e-06 - sys_54: 4.927865179189262e-08 + sys_0: -1.05077068e-06 + sys_1: 3.37478587e-05 + sys_2: 4.44479500e-04 + sys_3: -5.97733935e-05 + sys_4: -5.30740452e-04 + sys_5: 1.12229415e-04 + sys_6: -1.93222365e-04 + sys_7: -3.95382522e-04 + sys_8: 6.41401998e-06 + sys_9: 1.82009205e-03 + sys_10: 3.90527959e-04 + sys_11: 3.27169661e-03 + sys_12: 2.20770627e-04 + sys_13: 4.12535292e-03 + sys_14: 2.30866483e-03 + sys_15: 2.98441723e-05 + sys_16: -1.30679313e-06 + sys_17: -2.14548000e-03 + sys_18: 6.40864914e-03 + sys_19: -2.00934909e-03 + sys_20: -1.14544951e-03 + sys_21: -7.14113803e-05 + sys_22: -3.39166350e-05 + sys_23: -9.00569767e-04 + sys_24: 4.70742299e-05 + sys_25: 2.74789946e-05 + sys_26: -5.56634809e-05 + sys_27: -1.10491674e-04 + sys_28: -1.09600679e-04 + sys_29: -1.84055009e-04 + sys_30: -5.04606780e-04 + sys_31: 1.92408385e-04 + sys_32: 3.41158547e-05 + sys_33: -6.47698178e-05 + sys_34: 3.67960770e-05 + sys_35: 1.64064450e-05 + sys_36: -3.08125374e-05 + sys_37: 7.28020260e-07 + sys_38: -3.94019135e-05 + sys_39: 1.22075966e-04 + sys_40: 7.67179432e-06 + sys_41: -1.92698158e-05 + sys_42: -2.75515068e-05 + sys_43: -6.62400506e-06 + sys_44: -1.38232646e-05 + sys_45: 5.78591940e-06 + sys_46: -2.67534522e-07 + sys_47: 2.63430728e-06 + sys_48: -4.03007213e-06 + sys_49: 1.89546863e-06 + sys_50: 6.39155094e-07 + sys_51: 2.55876552e-06 + sys_52: 3.24694005e-06 + sys_53: -2.42203720e-06 + sys_54: 4.92786518e-08 - pol: 0.002119 lumi: 0.0005 - sys_0: -1.0048273146711087e-06 - sys_1: 6.377656067413857e-06 - sys_2: 0.0031983066496396933 - sys_3: 0.0006509136909840488 - sys_4: -0.0029684669305360236 - sys_5: 2.9157174356661747e-05 - sys_6: -0.003086404045376029 - sys_7: 0.000361717802605242 - sys_8: 2.6612428640773394e-05 - sys_9: 0.013909659447480707 - sys_10: 0.003109039979926491 - sys_11: -0.005884189648466794 - sys_12: -0.0008298422943181943 - sys_13: -0.0014709067609793912 - sys_14: -0.0009750494988719224 - sys_15: -4.303044195854392e-05 - sys_16: 1.6663752914306206e-06 - sys_17: -0.00023116812446308648 - sys_18: 0.0005877744170730986 - sys_19: -0.00018327316887118263 - sys_20: -7.256973071946823e-05 - sys_21: -1.508193655387423e-05 - sys_22: -7.498572696681626e-06 - sys_23: -0.00015014074229980926 - sys_24: 1.8219180443198303e-05 - sys_25: 1.0804830595238516e-05 - sys_26: -2.312501637737006e-05 - sys_27: -1.306134027650861e-05 - sys_28: -5.809679362054758e-05 - sys_29: -0.00013835181281428825 - sys_30: -0.00013402018765356063 - sys_31: 4.847989497314026e-05 - sys_32: -4.806973415945683e-06 - sys_33: -8.439963752995349e-05 - sys_34: 2.8329752372910317e-05 - sys_35: 1.0863429013029913e-06 - sys_36: -1.1878320598050664e-05 - sys_37: -6.590382948665042e-07 - sys_38: -1.0813633576272623e-05 - sys_39: 3.05389273009439e-05 - sys_40: 1.8616094220745327e-06 - sys_41: -4.567934235123435e-06 - sys_42: -5.878949296634655e-06 - sys_43: -6.629690320817947e-07 - sys_44: -1.8237499841953693e-06 - sys_45: -3.28743411820747e-07 - sys_46: 1.0533015807108984e-06 - sys_47: 1.7625883474283573e-06 - sys_48: -1.2494581914769496e-06 - sys_49: 9.232072347537593e-07 - sys_50: 2.1043974446906352e-07 - sys_51: 1.3767474695012796e-06 - sys_52: 1.2414675007260361e-06 - sys_53: -9.349209746956092e-07 - sys_54: 1.302383292823807e-07 + sys_0: -1.00482731e-06 + sys_1: 6.37765607e-06 + sys_2: 3.19830665e-03 + sys_3: 6.50913691e-04 + sys_4: -2.96846693e-03 + sys_5: 2.91571744e-05 + sys_6: -3.08640405e-03 + sys_7: 3.61717803e-04 + sys_8: 2.66124286e-05 + sys_9: 1.39096594e-02 + sys_10: 3.10903998e-03 + sys_11: -5.88418965e-03 + sys_12: -8.29842294e-04 + sys_13: -1.47090676e-03 + sys_14: -9.75049499e-04 + sys_15: -4.30304420e-05 + sys_16: 1.66637529e-06 + sys_17: -2.31168124e-04 + sys_18: 5.87774417e-04 + sys_19: -1.83273169e-04 + sys_20: -7.25697307e-05 + sys_21: -1.50819366e-05 + sys_22: -7.49857270e-06 + sys_23: -1.50140742e-04 + sys_24: 1.82191804e-05 + sys_25: 1.08048306e-05 + sys_26: -2.31250164e-05 + sys_27: -1.30613403e-05 + sys_28: -5.80967936e-05 + sys_29: -1.38351813e-04 + sys_30: -1.34020188e-04 + sys_31: 4.84798950e-05 + sys_32: -4.80697342e-06 + sys_33: -8.43996375e-05 + sys_34: 2.83297524e-05 + sys_35: 1.08634290e-06 + sys_36: -1.18783206e-05 + sys_37: -6.59038295e-07 + sys_38: -1.08136336e-05 + sys_39: 3.05389273e-05 + sys_40: 1.86160942e-06 + sys_41: -4.56793424e-06 + sys_42: -5.87894930e-06 + sys_43: -6.62969032e-07 + sys_44: -1.82374998e-06 + sys_45: -3.28743412e-07 + sys_46: 1.05330158e-06 + sys_47: 1.76258835e-06 + sys_48: -1.24945819e-06 + sys_49: 9.23207235e-07 + sys_50: 2.10439744e-07 + sys_51: 1.37674747e-06 + sys_52: 1.24146750e-06 + sys_53: -9.34920975e-07 + sys_54: 1.30238329e-07 - pol: 0.002158 lumi: 0.0005 - sys_0: -1.4333169523571171e-06 - sys_1: 1.6059377043424565e-05 - sys_2: 0.012170805056056005 - sys_3: 0.004113459560476994 - sys_4: -0.014964171468280128 - sys_5: -9.074110994409989e-05 - sys_6: 0.022551020241667427 - sys_7: -0.0026150637720448702 - sys_8: -5.175346701616564e-06 - sys_9: 0.0003759410852683241 - sys_10: 8.98724410740772e-05 - sys_11: -0.0006777942656984104 - sys_12: -0.0001896594826524578 - sys_13: -0.00024146012094826107 - sys_14: -0.00016526289369439857 - sys_15: -9.317445510363507e-06 - sys_16: 3.692105114130771e-07 - sys_17: -5.068696716773491e-05 - sys_18: 0.00013120530325459506 - sys_19: -4.221283018552084e-05 - sys_20: -1.4527058561194829e-05 - sys_21: -3.8139919698245106e-06 - sys_22: -1.9231954806282454e-06 - sys_23: -3.4543891326794705e-05 - sys_24: 5.251909553241262e-06 - sys_25: 3.015389268956318e-06 - sys_26: -5.2911623716932366e-06 - sys_27: 3.45269083884025e-07 - sys_28: -1.7821415362071612e-05 - sys_29: -4.2945398740740096e-05 - sys_30: -2.954440289411319e-05 - sys_31: 9.21312482430691e-06 - sys_32: -7.769480946129696e-06 - sys_33: -4.463099732671751e-05 - sys_34: 1.2783907732400969e-05 - sys_35: -1.0499617759001113e-06 - sys_36: -3.4933874496325388e-06 - sys_37: -5.767766095681412e-07 - sys_38: -2.2577107341157887e-06 - sys_39: 5.9947072609132074e-06 - sys_40: 4.3996874418399476e-07 - sys_41: -1.0173107051718814e-06 - sys_42: -7.247079738921074e-07 - sys_43: 2.7580317450809917e-07 - sys_44: 3.438218059472489e-08 - sys_45: -6.657477954840073e-07 - sys_46: 5.556464230759736e-07 - sys_47: 7.374834382578643e-07 - sys_48: -5.361082830552594e-07 - sys_49: 3.5075721175647734e-07 - sys_50: 1.2824807444841421e-07 - sys_51: 5.788206232273974e-07 - sys_52: 4.279938189670145e-07 - sys_53: -3.5311911477644656e-07 - sys_54: 5.715793737823422e-08 + sys_0: -1.43331695e-06 + sys_1: 1.60593770e-05 + sys_2: 1.21708051e-02 + sys_3: 4.11345956e-03 + sys_4: -1.49641715e-02 + sys_5: -9.07411099e-05 + sys_6: 2.25510202e-02 + sys_7: -2.61506377e-03 + sys_8: -5.17534670e-06 + sys_9: 3.75941085e-04 + sys_10: 8.98724411e-05 + sys_11: -6.77794266e-04 + sys_12: -1.89659483e-04 + sys_13: -2.41460121e-04 + sys_14: -1.65262894e-04 + sys_15: -9.31744551e-06 + sys_16: 3.69210511e-07 + sys_17: -5.06869672e-05 + sys_18: 1.31205303e-04 + sys_19: -4.22128302e-05 + sys_20: -1.45270586e-05 + sys_21: -3.81399197e-06 + sys_22: -1.92319548e-06 + sys_23: -3.45438913e-05 + sys_24: 5.25190955e-06 + sys_25: 3.01538927e-06 + sys_26: -5.29116237e-06 + sys_27: 3.45269084e-07 + sys_28: -1.78214154e-05 + sys_29: -4.29453987e-05 + sys_30: -2.95444029e-05 + sys_31: 9.21312482e-06 + sys_32: -7.76948095e-06 + sys_33: -4.46309973e-05 + sys_34: 1.27839077e-05 + sys_35: -1.04996178e-06 + sys_36: -3.49338745e-06 + sys_37: -5.76776610e-07 + sys_38: -2.25771073e-06 + sys_39: 5.99470726e-06 + sys_40: 4.39968744e-07 + sys_41: -1.01731071e-06 + sys_42: -7.24707974e-07 + sys_43: 2.75803175e-07 + sys_44: 3.43821806e-08 + sys_45: -6.65747795e-07 + sys_46: 5.55646423e-07 + sys_47: 7.37483438e-07 + sys_48: -5.36108283e-07 + sys_49: 3.50757212e-07 + sys_50: 1.28248074e-07 + sys_51: 5.78820623e-07 + sys_52: 4.27993819e-07 + sys_53: -3.53119115e-07 + sys_54: 5.71579374e-08 diff --git a/nnpdf_data/nnpdf_data/commondata/STAR-2009_1JET_200GEV/uncertainties_CF.yaml b/nnpdf_data/nnpdf_data/commondata/STAR-2009_1JET_200GEV/uncertainties_CF.yaml index e55f36f378..c56d45f3c1 100644 --- a/nnpdf_data/nnpdf_data/commondata/STAR-2009_1JET_200GEV/uncertainties_CF.yaml +++ b/nnpdf_data/nnpdf_data/commondata/STAR-2009_1JET_200GEV/uncertainties_CF.yaml @@ -230,628 +230,628 @@ definitions: bins: - pol: 0.000117 lumi: 0.0005 - sys_0: -5.5068210227737366e-09 - sys_1: 2.739252212311623e-08 - sys_2: 1.1137868577459414e-06 - sys_3: -1.2992980376022709e-06 - sys_4: -5.087499552638387e-07 - sys_5: 1.0589525722935463e-07 - sys_6: 9.605686614129738e-07 - sys_7: -3.6379546498117437e-06 - sys_8: 1.3791167702728454e-07 - sys_9: 3.2530494421965074e-06 - sys_10: 6.006400597790555e-07 - sys_11: -3.953712520580469e-07 - sys_12: -1.768104506041108e-06 - sys_13: 7.63994035807679e-07 - sys_14: -3.433164290810318e-07 - sys_15: 2.3258421629776675e-06 - sys_16: 2.7971493764047253e-06 - sys_17: -2.6558896400391096e-06 - sys_18: 4.1577575318210735e-06 - sys_19: -1.7493997308077395e-07 - sys_20: 1.121339404342589e-06 - sys_21: 9.63882945266009e-06 - sys_22: 5.755520798272959e-06 - sys_23: -3.3906501909214435e-06 - sys_24: -8.440681953529427e-07 - sys_25: -1.0938902531035669e-06 - sys_26: -4.623811527781791e-06 - sys_27: -3.722796766162645e-06 - sys_28: -3.4930777311405853e-06 - sys_29: -4.74298514768449e-07 - sys_30: -2.180963231076523e-06 - sys_31: 6.235986392973982e-06 - sys_32: 1.768623707801043e-05 - sys_33: -5.726486843199141e-06 - sys_34: 2.0565394617255574e-06 - sys_35: 3.22569085985605e-06 - sys_36: -1.0601427032312232e-05 - sys_37: -1.9923449041798173e-05 - sys_38: -3.1307184829211135e-06 - sys_39: 9.8000935989021e-06 - sys_40: 2.096099532405093e-05 - sys_41: -9.373740811813869e-06 - sys_42: -7.256731353872264e-06 - sys_43: 2.5433804127131156e-07 - sys_44: -2.171445942285181e-05 - sys_45: 1.608704773668897e-05 - sys_46: -3.895485040473507e-05 - sys_47: -5.4314342461898014e-05 - sys_48: 6.932791109461219e-05 - sys_49: 1.5474831855502068e-05 - sys_50: 0.00037113542493986344 - sys_51: 0.00013359733801590842 - sys_52: -0.0014319964736864798 - sys_53: -0.0006691412348853373 - sys_54: 0.00023226151201865983 -- pol: 0.00026000000000000003 + sys_0: -5.50682102e-09 + sys_1: 2.73925221e-08 + sys_2: 1.11378686e-06 + sys_3: -1.29929804e-06 + sys_4: -5.08749955e-07 + sys_5: 1.05895257e-07 + sys_6: 9.60568661e-07 + sys_7: -3.63795465e-06 + sys_8: 1.37911677e-07 + sys_9: 3.25304944e-06 + sys_10: 6.00640060e-07 + sys_11: -3.95371252e-07 + sys_12: -1.76810451e-06 + sys_13: 7.63994036e-07 + sys_14: -3.43316429e-07 + sys_15: 2.32584216e-06 + sys_16: 2.79714938e-06 + sys_17: -2.65588964e-06 + sys_18: 4.15775753e-06 + sys_19: -1.74939973e-07 + sys_20: 1.12133940e-06 + sys_21: 9.63882945e-06 + sys_22: 5.75552080e-06 + sys_23: -3.39065019e-06 + sys_24: -8.44068195e-07 + sys_25: -1.09389025e-06 + sys_26: -4.62381153e-06 + sys_27: -3.72279677e-06 + sys_28: -3.49307773e-06 + sys_29: -4.74298515e-07 + sys_30: -2.18096323e-06 + sys_31: 6.23598639e-06 + sys_32: 1.76862371e-05 + sys_33: -5.72648684e-06 + sys_34: 2.05653946e-06 + sys_35: 3.22569086e-06 + sys_36: -1.06014270e-05 + sys_37: -1.99234490e-05 + sys_38: -3.13071848e-06 + sys_39: 9.80009360e-06 + sys_40: 2.09609953e-05 + sys_41: -9.37374081e-06 + sys_42: -7.25673135e-06 + sys_43: 2.54338041e-07 + sys_44: -2.17144594e-05 + sys_45: 1.60870477e-05 + sys_46: -3.89548504e-05 + sys_47: -5.43143425e-05 + sys_48: 6.93279111e-05 + sys_49: 1.54748319e-05 + sys_50: 3.71135425e-04 + sys_51: 1.33597338e-04 + sys_52: -1.43199647e-03 + sys_53: -6.69141235e-04 + sys_54: 2.32261512e-04 +- pol: 2.60000000e-04 lumi: 0.0005 - sys_0: -1.671364863114019e-08 - sys_1: 8.507211557666997e-08 - sys_2: 1.9034110932647554e-06 - sys_3: -1.1910558281769236e-06 - sys_4: -2.1058523653446805e-06 - sys_5: 2.9864674166548766e-07 - sys_6: 4.22688420895556e-06 - sys_7: -6.544450063480887e-06 - sys_8: 4.074250963918551e-06 - sys_9: 5.707076639491194e-06 - sys_10: 1.2813744110025008e-06 - sys_11: -2.5559729003320634e-07 - sys_12: -3.783011798718431e-06 - sys_13: 1.437209080312844e-06 - sys_14: -1.1976095739210294e-06 - sys_15: 8.649686031397404e-06 - sys_16: 1.0874700995467436e-05 - sys_17: -5.074088039904608e-06 - sys_18: 7.961320292184038e-06 - sys_19: -1.8905173274743137e-07 - sys_20: 2.1009540827933823e-06 - sys_21: 2.6038125974004828e-05 - sys_22: 1.4481862054347826e-05 - sys_23: -5.7202844020879865e-06 - sys_24: -4.289922931662532e-06 - sys_25: -3.503335925992055e-06 - sys_26: -9.530666773556805e-06 - sys_27: -7.203092318648162e-06 - sys_28: -7.425554777469874e-06 - sys_29: -3.0505796946817687e-07 - sys_30: -2.5722043714576167e-06 - sys_31: 1.3321261063111514e-05 - sys_32: 5.3254230962067344e-05 - sys_33: -1.533057168074273e-05 - sys_34: 1.0519058295031925e-05 - sys_35: 8.759016948120489e-06 - sys_36: -2.4994415130197292e-05 - sys_37: -3.992095199104201e-05 - sys_38: -1.2844149140970216e-05 - sys_39: 1.8730208964985545e-05 - sys_40: 5.8226116590649e-05 - sys_41: -2.92782471616029e-05 - sys_42: -1.0723165962030647e-05 - sys_43: 5.481015891148346e-06 - sys_44: -4.895761555350707e-05 - sys_45: 3.4650890849619166e-05 - sys_46: -0.00014218771934914804 - sys_47: -0.0002719447463241775 - sys_48: 0.0017848888213523224 - sys_49: 8.249064762351028e-06 - sys_50: 1.7663707667552833e-05 - sys_51: 2.6307349222720177e-05 - sys_52: 0.00019834283605354032 - sys_53: -0.00015667196741126808 - sys_54: 0.00019824500389384323 -- pol: 0.0003835 + sys_0: -1.67136486e-08 + sys_1: 8.50721156e-08 + sys_2: 1.90341109e-06 + sys_3: -1.19105583e-06 + sys_4: -2.10585237e-06 + sys_5: 2.98646742e-07 + sys_6: 4.22688421e-06 + sys_7: -6.54445006e-06 + sys_8: 4.07425096e-06 + sys_9: 5.70707664e-06 + sys_10: 1.28137441e-06 + sys_11: -2.55597290e-07 + sys_12: -3.78301180e-06 + sys_13: 1.43720908e-06 + sys_14: -1.19760957e-06 + sys_15: 8.64968603e-06 + sys_16: 1.08747010e-05 + sys_17: -5.07408804e-06 + sys_18: 7.96132029e-06 + sys_19: -1.89051733e-07 + sys_20: 2.10095408e-06 + sys_21: 2.60381260e-05 + sys_22: 1.44818621e-05 + sys_23: -5.72028440e-06 + sys_24: -4.28992293e-06 + sys_25: -3.50333593e-06 + sys_26: -9.53066677e-06 + sys_27: -7.20309232e-06 + sys_28: -7.42555478e-06 + sys_29: -3.05057969e-07 + sys_30: -2.57220437e-06 + sys_31: 1.33212611e-05 + sys_32: 5.32542310e-05 + sys_33: -1.53305717e-05 + sys_34: 1.05190583e-05 + sys_35: 8.75901695e-06 + sys_36: -2.49944151e-05 + sys_37: -3.99209520e-05 + sys_38: -1.28441491e-05 + sys_39: 1.87302090e-05 + sys_40: 5.82261166e-05 + sys_41: -2.92782472e-05 + sys_42: -1.07231660e-05 + sys_43: 5.48101589e-06 + sys_44: -4.89576156e-05 + sys_45: 3.46508908e-05 + sys_46: -1.42187719e-04 + sys_47: -2.71944746e-04 + sys_48: 1.78488882e-03 + sys_49: 8.24906476e-06 + sys_50: 1.76637077e-05 + sys_51: 2.63073492e-05 + sys_52: 1.98342836e-04 + sys_53: -1.56671967e-04 + sys_54: 1.98245004e-04 +- pol: 3.83500000e-04 lumi: 0.0005 - sys_0: -1.0220742150625029e-07 - sys_1: 5.245833161305744e-06 - sys_2: 2.4827013202811917e-06 - sys_3: -2.4906626639954906e-06 - sys_4: -1.6341639050756877e-06 - sys_5: 2.277840266569245e-06 - sys_6: 3.5291193941408417e-06 - sys_7: -7.519784471273229e-06 - sys_8: 2.2293667299888054e-05 - sys_9: 6.571400895634112e-06 - sys_10: 2.6629056871251533e-06 - sys_11: 7.666946773599828e-07 - sys_12: -6.140639749272081e-06 - sys_13: 1.9637233448327388e-06 - sys_14: -4.625236898002353e-06 - sys_15: 3.633669520820309e-05 - sys_16: 3.318054417033743e-05 - sys_17: -5.984213557225449e-06 - sys_18: 9.109220336762655e-06 - sys_19: 3.496504533200007e-06 - sys_20: 2.811492869009652e-06 - sys_21: 6.0866863200140425e-05 - sys_22: 3.0580017474862955e-05 - sys_23: -8.408329117541739e-06 - sys_24: -3.12557019774423e-05 - sys_25: -1.5403455568895343e-05 - sys_26: -1.3950401734361291e-05 - sys_27: -8.108708465424516e-06 - sys_28: -1.7537963646322333e-05 - sys_29: 1.2939342538477447e-06 - sys_30: -1.7353977835784655e-06 - sys_31: 7.685742914905643e-06 - sys_32: 0.00012132797681576782 - sys_33: -2.7019119695544847e-05 - sys_34: 5.143936007942572e-05 - sys_35: 2.909882383963309e-05 - sys_36: -5.2868820018106304e-05 - sys_37: -9.43006801641451e-05 - sys_38: -3.300828640286397e-05 - sys_39: 4.817773562290018e-06 - sys_40: 0.00014096443458231102 - sys_41: -8.301405550411339e-05 - sys_42: 1.9887152331887755e-06 - sys_43: 1.2855954184187937e-05 - sys_44: -3.227446038817525e-05 - sys_45: -1.0584001633713763e-05 - sys_46: -1.453574320022253e-05 - sys_47: 7.265573504437635e-05 - sys_48: 8.630826890836747e-05 - sys_49: 0.00010263349387992378 - sys_50: 6.751309807748284e-05 - sys_51: -0.0005589358672759594 - sys_52: -0.000451042601522821 - sys_53: 0.0011732981269153206 - sys_54: 0.0008542942163522897 -- pol: 0.0001755 + sys_0: -1.02207422e-07 + sys_1: 5.24583316e-06 + sys_2: 2.48270132e-06 + sys_3: -2.49066266e-06 + sys_4: -1.63416391e-06 + sys_5: 2.27784027e-06 + sys_6: 3.52911939e-06 + sys_7: -7.51978447e-06 + sys_8: 2.22936673e-05 + sys_9: 6.57140090e-06 + sys_10: 2.66290569e-06 + sys_11: 7.66694677e-07 + sys_12: -6.14063975e-06 + sys_13: 1.96372334e-06 + sys_14: -4.62523690e-06 + sys_15: 3.63366952e-05 + sys_16: 3.31805442e-05 + sys_17: -5.98421356e-06 + sys_18: 9.10922034e-06 + sys_19: 3.49650453e-06 + sys_20: 2.81149287e-06 + sys_21: 6.08668632e-05 + sys_22: 3.05800175e-05 + sys_23: -8.40832912e-06 + sys_24: -3.12557020e-05 + sys_25: -1.54034556e-05 + sys_26: -1.39504017e-05 + sys_27: -8.10870847e-06 + sys_28: -1.75379636e-05 + sys_29: 1.29393425e-06 + sys_30: -1.73539778e-06 + sys_31: 7.68574291e-06 + sys_32: 1.21327977e-04 + sys_33: -2.70191197e-05 + sys_34: 5.14393601e-05 + sys_35: 2.90988238e-05 + sys_36: -5.28688200e-05 + sys_37: -9.43006802e-05 + sys_38: -3.30082864e-05 + sys_39: 4.81777356e-06 + sys_40: 1.40964435e-04 + sys_41: -8.30140555e-05 + sys_42: 1.98871523e-06 + sys_43: 1.28559542e-05 + sys_44: -3.22744604e-05 + sys_45: -1.05840016e-05 + sys_46: -1.45357432e-05 + sys_47: 7.26557350e-05 + sys_48: 8.63082689e-05 + sys_49: 1.02633494e-04 + sys_50: 6.75130981e-05 + sys_51: -5.58935867e-04 + sys_52: -4.51042602e-04 + sys_53: 1.17329813e-03 + sys_54: 8.54294216e-04 +- pol: 1.75500000e-04 lumi: 0.0005 - sys_0: -3.3065592479679845e-07 - sys_1: 2.396377103892457e-05 - sys_2: 1.3380565868577494e-06 - sys_3: -1.5306657536449497e-06 - sys_4: -7.616651461955015e-07 - sys_5: 4.580367369537146e-06 - sys_6: 8.070289328577026e-07 - sys_7: -6.166209846946555e-06 - sys_8: 6.359328211436801e-05 - sys_9: 4.262908233500091e-06 - sys_10: 1.0834986645776598e-07 - sys_11: 1.1564419849833615e-06 - sys_12: -4.404777773632005e-06 - sys_13: 6.840463722257636e-06 - sys_14: -9.76069765889863e-06 - sys_15: 6.970339964636058e-05 - sys_16: 4.069720580490159e-05 - sys_17: -8.081513893371897e-06 - sys_18: 1.0104979919726966e-05 - sys_19: 1.5067914575674133e-05 - sys_20: 8.507409343407888e-06 - sys_21: 5.8858030603399844e-05 - sys_22: 1.4741402143982799e-05 - sys_23: -6.030363102713861e-06 - sys_24: -8.904584165809853e-05 - sys_25: -9.066841757875989e-06 - sys_26: -2.891210249572574e-05 - sys_27: -1.6907285240351918e-06 - sys_28: -4.819218050471454e-05 - sys_29: 4.945225582290772e-06 - sys_30: 2.1715729519806697e-06 - sys_31: -3.0746430548795483e-06 - sys_32: 0.00013018298326901683 - sys_33: -1.7118741616402055e-05 - sys_34: 0.00011679981375860463 - sys_35: 9.127042092140843e-05 - sys_36: -8.328622085919037e-05 - sys_37: -5.191616757785829e-05 - sys_38: -7.988758311397353e-05 - sys_39: -5.7471926642160653e-05 - sys_40: 0.00016694539728375634 - sys_41: -0.00016626842575256478 - sys_42: 6.278477784928185e-05 - sys_43: 1.0000715315454323e-05 - sys_44: 3.4571825683229327e-05 - sys_45: -0.00015139392983058272 - sys_46: 0.0008941331707266641 - sys_47: -0.0016620260625612026 - sys_48: -0.0001801509997427845 - sys_49: -4.517020911638868e-05 - sys_50: 8.406940708978764e-06 - sys_51: -3.612745226256415e-05 - sys_52: 7.569621418096348e-06 - sys_53: 4.4219488111842596e-05 - sys_54: 3.652372167786713e-05 -- pol: 0.0004485 + sys_0: -3.30655925e-07 + sys_1: 2.39637710e-05 + sys_2: 1.33805659e-06 + sys_3: -1.53066575e-06 + sys_4: -7.61665146e-07 + sys_5: 4.58036737e-06 + sys_6: 8.07028933e-07 + sys_7: -6.16620985e-06 + sys_8: 6.35932821e-05 + sys_9: 4.26290823e-06 + sys_10: 1.08349866e-07 + sys_11: 1.15644198e-06 + sys_12: -4.40477777e-06 + sys_13: 6.84046372e-06 + sys_14: -9.76069766e-06 + sys_15: 6.97033996e-05 + sys_16: 4.06972058e-05 + sys_17: -8.08151389e-06 + sys_18: 1.01049799e-05 + sys_19: 1.50679146e-05 + sys_20: 8.50740934e-06 + sys_21: 5.88580306e-05 + sys_22: 1.47414021e-05 + sys_23: -6.03036310e-06 + sys_24: -8.90458417e-05 + sys_25: -9.06684176e-06 + sys_26: -2.89121025e-05 + sys_27: -1.69072852e-06 + sys_28: -4.81921805e-05 + sys_29: 4.94522558e-06 + sys_30: 2.17157295e-06 + sys_31: -3.07464305e-06 + sys_32: 1.30182983e-04 + sys_33: -1.71187416e-05 + sys_34: 1.16799814e-04 + sys_35: 9.12704209e-05 + sys_36: -8.32862209e-05 + sys_37: -5.19161676e-05 + sys_38: -7.98875831e-05 + sys_39: -5.74719266e-05 + sys_40: 1.66945397e-04 + sys_41: -1.66268426e-04 + sys_42: 6.27847778e-05 + sys_43: 1.00007153e-05 + sys_44: 3.45718257e-05 + sys_45: -1.51393930e-04 + sys_46: 8.94133171e-04 + sys_47: -1.66202606e-03 + sys_48: -1.80151000e-04 + sys_49: -4.51702091e-05 + sys_50: 8.40694071e-06 + sys_51: -3.61274523e-05 + sys_52: 7.56962142e-06 + sys_53: 4.42194881e-05 + sys_54: 3.65237217e-05 +- pol: 4.48500000e-04 lumi: 0.0005 - sys_0: -3.4450545983169497e-06 - sys_1: 8.71506773521692e-05 - sys_2: 3.078977181129096e-06 - sys_3: -3.915549273410983e-06 - sys_4: -1.1582390678892246e-06 - sys_5: 1.3584688173704034e-05 - sys_6: 4.005825250142119e-06 - sys_7: -5.952362822772444e-06 - sys_8: 0.00010757305677835099 - sys_9: 1.3898547256004757e-05 - sys_10: -1.6956733328173845e-05 - sys_11: 4.928219106221356e-06 - sys_12: -1.4276730678549822e-05 - sys_13: 2.077146691608659e-05 - sys_14: -2.4248710471271217e-05 - sys_15: 9.73041209359522e-05 - sys_16: 2.0774368536168418e-05 - sys_17: -2.5614935073415778e-05 - sys_18: 2.7275551097134255e-05 - sys_19: 6.612487599438832e-05 - sys_20: 4.345761944190064e-05 - sys_21: 3.678672232457071e-05 - sys_22: -2.979501881423231e-06 - sys_23: -3.182125088361433e-06 - sys_24: -0.0001712386863086968 - sys_25: 2.586797321418017e-05 - sys_26: -0.0001134191757108351 - sys_27: 1.8943486540077136e-05 - sys_28: -0.00014942605279869494 - sys_29: 1.7841970357197545e-05 - sys_30: 3.288124129979031e-06 - sys_31: -3.272818659055411e-05 - sys_32: 8.564899372004614e-05 - sys_33: -3.2834098590045753e-06 - sys_34: 0.00015755079533047634 - sys_35: 0.00021349838044836515 - sys_36: -0.00014387320408071403 - sys_37: 3.824225891206884e-06 - sys_38: -0.00010443811943392646 - sys_39: -0.0001951762460640621 - sys_40: 9.246888639923771e-05 - sys_41: -0.00022420174286192352 - sys_42: 0.00024048345914627262 - sys_43: -1.6373174761865255e-05 - sys_44: 0.001043616725254663 - sys_45: 0.0021281880832288978 - sys_46: -6.168144227785854e-05 - sys_47: -0.00010852506080968965 - sys_48: -3.3723980990140915e-05 - sys_49: -2.0513206347530766e-05 - sys_50: 7.999391117821867e-06 - sys_51: -5.356832562814267e-05 - sys_52: 9.709891318098457e-06 - sys_53: -8.489135480674867e-06 - sys_54: 3.2947994033064322e-06 -- pol: 0.0005655 + sys_0: -3.44505460e-06 + sys_1: 8.71506774e-05 + sys_2: 3.07897718e-06 + sys_3: -3.91554927e-06 + sys_4: -1.15823907e-06 + sys_5: 1.35846882e-05 + sys_6: 4.00582525e-06 + sys_7: -5.95236282e-06 + sys_8: 1.07573057e-04 + sys_9: 1.38985473e-05 + sys_10: -1.69567333e-05 + sys_11: 4.92821911e-06 + sys_12: -1.42767307e-05 + sys_13: 2.07714669e-05 + sys_14: -2.42487105e-05 + sys_15: 9.73041209e-05 + sys_16: 2.07743685e-05 + sys_17: -2.56149351e-05 + sys_18: 2.72755511e-05 + sys_19: 6.61248760e-05 + sys_20: 4.34576194e-05 + sys_21: 3.67867223e-05 + sys_22: -2.97950188e-06 + sys_23: -3.18212509e-06 + sys_24: -1.71238686e-04 + sys_25: 2.58679732e-05 + sys_26: -1.13419176e-04 + sys_27: 1.89434865e-05 + sys_28: -1.49426053e-04 + sys_29: 1.78419704e-05 + sys_30: 3.28812413e-06 + sys_31: -3.27281866e-05 + sys_32: 8.56489937e-05 + sys_33: -3.28340986e-06 + sys_34: 1.57550795e-04 + sys_35: 2.13498380e-04 + sys_36: -1.43873204e-04 + sys_37: 3.82422589e-06 + sys_38: -1.04438119e-04 + sys_39: -1.95176246e-04 + sys_40: 9.24688864e-05 + sys_41: -2.24201743e-04 + sys_42: 2.40483459e-04 + sys_43: -1.63731748e-05 + sys_44: 1.04361673e-03 + sys_45: 2.12818808e-03 + sys_46: -6.16814423e-05 + sys_47: -1.08525061e-04 + sys_48: -3.37239810e-05 + sys_49: -2.05132063e-05 + sys_50: 7.99939112e-06 + sys_51: -5.35683256e-05 + sys_52: 9.70989132e-06 + sys_53: -8.48913548e-06 + sys_54: 3.29479940e-06 +- pol: 5.65500000e-04 lumi: 0.0005 - sys_0: -3.1177566337896396e-05 - sys_1: 0.0001619051370246658 - sys_2: 2.9871546705192626e-06 - sys_3: -2.440380113310764e-06 - sys_4: -3.3361490734872262e-06 - sys_5: 6.155991880182917e-05 - sys_6: 4.0995033108363136e-06 - sys_7: -1.586452201820974e-05 - sys_8: 0.0001108312539881392 - sys_9: 4.3896581905912874e-05 - sys_10: -6.714477535161308e-05 - sys_11: 2.6894072514314625e-05 - sys_12: -4.5298531959153206e-05 - sys_13: 9.980701969987697e-05 - sys_14: -8.563444542006818e-05 - sys_15: 8.648926008673865e-05 - sys_16: -7.138851026972731e-06 - sys_17: -0.0001239675062645879 - sys_18: 5.355714146199966e-05 - sys_19: 0.00020177960353825135 - sys_20: 0.00017093770792937925 - sys_21: 3.1504929135284954e-06 - sys_22: -1.0944314765150888e-05 - sys_23: 5.543271051337728e-05 - sys_24: -0.00020084459865316997 - sys_25: 7.200259473395435e-05 - sys_26: -0.0003235355039072538 - sys_27: 0.00013276257475589037 - sys_28: -0.00028712631197224786 - sys_29: 4.954048713617621e-05 - sys_30: 5.482959071557191e-05 - sys_31: -0.00019131275247965618 - sys_32: 1.4048159449728687e-05 - sys_33: 4.374271709687488e-06 - sys_34: 0.0001544707967966351 - sys_35: 0.00036784856803094974 - sys_36: -0.0002212770603511594 - sys_37: 3.732958106842321e-05 - sys_38: -2.5674758807243407e-05 - sys_39: -0.000957584315698473 - sys_40: -0.00010694549767640635 - sys_41: -0.0003464987719920674 - sys_42: -0.002788499367492192 - sys_43: -0.001028222529204872 - sys_44: -0.00014291286027106522 - sys_45: 0.00014170081918188495 - sys_46: -5.677794297337344e-05 - sys_47: -4.5800721258054124e-05 - sys_48: -2.033727204322743e-05 - sys_49: -5.009789717874758e-06 - sys_50: 3.3159712072064655e-06 - sys_51: -2.085088344326663e-05 - sys_52: 9.374338576579137e-06 - sys_53: -8.352098432698858e-06 - sys_54: 4.1372552276093813e-07 + sys_0: -3.11775663e-05 + sys_1: 1.61905137e-04 + sys_2: 2.98715467e-06 + sys_3: -2.44038011e-06 + sys_4: -3.33614907e-06 + sys_5: 6.15599188e-05 + sys_6: 4.09950331e-06 + sys_7: -1.58645220e-05 + sys_8: 1.10831254e-04 + sys_9: 4.38965819e-05 + sys_10: -6.71447754e-05 + sys_11: 2.68940725e-05 + sys_12: -4.52985320e-05 + sys_13: 9.98070197e-05 + sys_14: -8.56344454e-05 + sys_15: 8.64892601e-05 + sys_16: -7.13885103e-06 + sys_17: -1.23967506e-04 + sys_18: 5.35571415e-05 + sys_19: 2.01779604e-04 + sys_20: 1.70937708e-04 + sys_21: 3.15049291e-06 + sys_22: -1.09443148e-05 + sys_23: 5.54327105e-05 + sys_24: -2.00844599e-04 + sys_25: 7.20025947e-05 + sys_26: -3.23535504e-04 + sys_27: 1.32762575e-04 + sys_28: -2.87126312e-04 + sys_29: 4.95404871e-05 + sys_30: 5.48295907e-05 + sys_31: -1.91312752e-04 + sys_32: 1.40481594e-05 + sys_33: 4.37427171e-06 + sys_34: 1.54470797e-04 + sys_35: 3.67848568e-04 + sys_36: -2.21277060e-04 + sys_37: 3.73295811e-05 + sys_38: -2.56747588e-05 + sys_39: -9.57584316e-04 + sys_40: -1.06945498e-04 + sys_41: -3.46498772e-04 + sys_42: -2.78849937e-03 + sys_43: -1.02822253e-03 + sys_44: -1.42912860e-04 + sys_45: 1.41700819e-04 + sys_46: -5.67779430e-05 + sys_47: -4.58007213e-05 + sys_48: -2.03372720e-05 + sys_49: -5.00978972e-06 + sys_50: 3.31597121e-06 + sys_51: -2.08508834e-05 + sys_52: 9.37433858e-06 + sys_53: -8.35209843e-06 + sys_54: 4.13725523e-07 - pol: 0.000975 lumi: 0.0005 - sys_0: -0.00011624681538156069 - sys_1: 0.0001749445750697014 - sys_2: 1.175993782934249e-05 - sys_3: -1.2358971115159881e-05 - sys_4: -1.2776712629346073e-05 - sys_5: 0.0002464477057540151 - sys_6: 1.2824434862721912e-05 - sys_7: -4.756292629649519e-05 - sys_8: 7.482616506567217e-05 - sys_9: 0.00015024039271194234 - sys_10: -9.87899444469216e-05 - sys_11: 0.00013435447755523613 - sys_12: -0.0001458643088745315 - sys_13: 0.0003906113451729145 - sys_14: -0.00015553424957054582 - sys_15: 3.0129084176608425e-05 - sys_16: -1.9647054979547407e-05 - sys_17: -0.000430441305550648 - sys_18: -9.405088148638862e-05 - sys_19: 0.00037954093670543326 - sys_20: 0.0004667457944783695 - sys_21: -2.3452696588562655e-05 - sys_22: -1.5663385239762934e-05 - sys_23: 0.00031560734846120003 - sys_24: -0.00018548188993239086 - sys_25: 0.00012344465577657256 - sys_26: -0.0007172534651135145 - sys_27: 0.0007405102190052179 - sys_28: -0.0007895579016721117 - sys_29: 0.00029640620547229037 - sys_30: 0.0015314511239551461 - sys_31: 0.004110566021820336 - sys_32: 0.00022082574240880524 - sys_33: -6.336660338786504e-05 - sys_34: -2.036282784052582e-05 - sys_35: -0.0002410116800164715 - sys_36: 9.56002090105684e-05 - sys_37: -2.8156951876960082e-05 - sys_38: -9.553677303684977e-05 - sys_39: 0.00035840301416627024 - sys_40: 2.5342990711688575e-05 - sys_41: -5.338899022757339e-05 - sys_42: -0.0001280802571777871 - sys_43: -2.1169713519571318e-05 - sys_44: -5.7626172225835386e-05 - sys_45: 4.0562791136135155e-05 - sys_46: -1.5854627537182423e-05 - sys_47: -6.995875523305257e-06 - sys_48: -1.3346745000783275e-05 - sys_49: 2.160672031126361e-06 - sys_50: 2.2370712874279675e-06 - sys_51: -1.0644254391545346e-06 - sys_52: 8.100652819121915e-06 - sys_53: -6.983967661897691e-06 - sys_54: 3.7979550596756256e-07 -- pol: 0.0012675 + sys_0: -1.16246815e-04 + sys_1: 1.74944575e-04 + sys_2: 1.17599378e-05 + sys_3: -1.23589711e-05 + sys_4: -1.27767126e-05 + sys_5: 2.46447706e-04 + sys_6: 1.28244349e-05 + sys_7: -4.75629263e-05 + sys_8: 7.48261651e-05 + sys_9: 1.50240393e-04 + sys_10: -9.87899444e-05 + sys_11: 1.34354478e-04 + sys_12: -1.45864309e-04 + sys_13: 3.90611345e-04 + sys_14: -1.55534250e-04 + sys_15: 3.01290842e-05 + sys_16: -1.96470550e-05 + sys_17: -4.30441306e-04 + sys_18: -9.40508815e-05 + sys_19: 3.79540937e-04 + sys_20: 4.66745794e-04 + sys_21: -2.34526966e-05 + sys_22: -1.56633852e-05 + sys_23: 3.15607348e-04 + sys_24: -1.85481890e-04 + sys_25: 1.23444656e-04 + sys_26: -7.17253465e-04 + sys_27: 7.40510219e-04 + sys_28: -7.89557902e-04 + sys_29: 2.96406205e-04 + sys_30: 1.53145112e-03 + sys_31: 4.11056602e-03 + sys_32: 2.20825742e-04 + sys_33: -6.33666034e-05 + sys_34: -2.03628278e-05 + sys_35: -2.41011680e-04 + sys_36: 9.56002090e-05 + sys_37: -2.81569519e-05 + sys_38: -9.55367730e-05 + sys_39: 3.58403014e-04 + sys_40: 2.53429907e-05 + sys_41: -5.33889902e-05 + sys_42: -1.28080257e-04 + sys_43: -2.11697135e-05 + sys_44: -5.76261722e-05 + sys_45: 4.05627911e-05 + sys_46: -1.58546275e-05 + sys_47: -6.99587552e-06 + sys_48: -1.33467450e-05 + sys_49: 2.16067203e-06 + sys_50: 2.23707129e-06 + sys_51: -1.06442544e-06 + sys_52: 8.10065282e-06 + sys_53: -6.98396766e-06 + sys_54: 3.79795506e-07 +- pol: 1.26750000e-03 lumi: 0.0005 - sys_0: -0.00020697677037853616 - sys_1: 0.00013032665097368262 - sys_2: 4.144395721713675e-05 - sys_3: -3.617061117753066e-05 - sys_4: -7.115973289439512e-05 - sys_5: 0.00044911995003678936 - sys_6: 3.422414084855491e-06 - sys_7: -0.0001312382738529295 - sys_8: 3.404896483250197e-05 - sys_9: 0.0005098932735313515 - sys_10: -6.774937898535542e-06 - sys_11: 0.0006473314042077154 - sys_12: -0.00022757438903579886 - sys_13: 0.0012184291006566244 - sys_14: 2.9866522401070683e-05 - sys_15: -4.250184508949183e-05 - sys_16: -1.7188648497987652e-05 - sys_17: -0.0009566381356044709 - sys_18: -0.0016573617228591879 - sys_19: 0.0009606723743131269 - sys_20: 0.0018190564862724113 - sys_21: -9.404690470107863e-05 - sys_22: -6.631771576925387e-05 - sys_23: -0.006472543534827577 - sys_24: 0.00013669865438824464 - sys_25: -5.7212140978394994e-05 - sys_26: 0.00031241023520181126 - sys_27: -4.2573376585961905e-05 - sys_28: -6.896955049194631e-05 - sys_29: -0.00018368954404154238 - sys_30: -0.0003637874626566548 - sys_31: 0.00019092995134209766 - sys_32: 4.761455636178206e-05 - sys_33: -2.9548608150528873e-05 - sys_34: 2.753056847106391e-05 - sys_35: 6.251945936808891e-07 - sys_36: -2.0982798601596616e-05 - sys_37: 3.7887731368040077e-07 - sys_38: -4.292871500287734e-05 - sys_39: 0.00012349940457800584 - sys_40: 8.043651793060128e-06 - sys_41: -2.1886077821140215e-05 - sys_42: -3.683924517409783e-05 - sys_43: -9.769791142635747e-06 - sys_44: -1.969443820621115e-05 - sys_45: 1.0092791952777675e-05 - sys_46: -2.909636410031567e-06 - sys_47: 2.942918384556667e-07 - sys_48: -3.784305547109871e-06 - sys_49: 1.5563970525558947e-06 - sys_50: 5.577191428653767e-07 - sys_51: 1.3018557417357155e-06 - sys_52: 2.975875674352789e-06 - sys_53: -2.550626656575861e-06 - sys_54: -7.898027953530943e-09 -- pol: 0.0021645 + sys_0: -2.06976770e-04 + sys_1: 1.30326651e-04 + sys_2: 4.14439572e-05 + sys_3: -3.61706112e-05 + sys_4: -7.11597329e-05 + sys_5: 4.49119950e-04 + sys_6: 3.42241408e-06 + sys_7: -1.31238274e-04 + sys_8: 3.40489648e-05 + sys_9: 5.09893274e-04 + sys_10: -6.77493790e-06 + sys_11: 6.47331404e-04 + sys_12: -2.27574389e-04 + sys_13: 1.21842910e-03 + sys_14: 2.98665224e-05 + sys_15: -4.25018451e-05 + sys_16: -1.71886485e-05 + sys_17: -9.56638136e-04 + sys_18: -1.65736172e-03 + sys_19: 9.60672374e-04 + sys_20: 1.81905649e-03 + sys_21: -9.40469047e-05 + sys_22: -6.63177158e-05 + sys_23: -6.47254353e-03 + sys_24: 1.36698654e-04 + sys_25: -5.72121410e-05 + sys_26: 3.12410235e-04 + sys_27: -4.25733766e-05 + sys_28: -6.89695505e-05 + sys_29: -1.83689544e-04 + sys_30: -3.63787463e-04 + sys_31: 1.90929951e-04 + sys_32: 4.76145564e-05 + sys_33: -2.95486082e-05 + sys_34: 2.75305685e-05 + sys_35: 6.25194594e-07 + sys_36: -2.09827986e-05 + sys_37: 3.78877314e-07 + sys_38: -4.29287150e-05 + sys_39: 1.23499405e-04 + sys_40: 8.04365179e-06 + sys_41: -2.18860778e-05 + sys_42: -3.68392452e-05 + sys_43: -9.76979114e-06 + sys_44: -1.96944382e-05 + sys_45: 1.00927920e-05 + sys_46: -2.90963641e-06 + sys_47: 2.94291838e-07 + sys_48: -3.78430555e-06 + sys_49: 1.55639705e-06 + sys_50: 5.57719143e-07 + sys_51: 1.30185574e-06 + sys_52: 2.97587567e-06 + sys_53: -2.55062666e-06 + sys_54: -7.89802795e-09 +- pol: 2.16450000e-03 lumi: 0.0005 - sys_0: -0.0001922682695918198 - sys_1: 8.248379338949827e-05 - sys_2: 0.00027391038713103967 - sys_3: -0.00011431842826849085 - sys_4: -0.0006660182786875591 - sys_5: 0.0003561153556817166 - sys_6: -0.000337561334110933 - sys_7: -0.00021596235640522463 - sys_8: 3.125271423316821e-05 - sys_9: 0.0018603021236223978 - sys_10: 0.0002775431685205406 - sys_11: 0.0070546941392067245 - sys_12: -0.008535335249814303 - sys_13: -0.00504970554447627 - sys_14: -0.0014396878953105508 - sys_15: 2.1486057707781425e-05 - sys_16: 1.4310135745558772e-05 - sys_17: 0.0001092315927476495 - sys_18: 0.0005548352301624554 - sys_19: -0.0002162111818830477 - sys_20: -0.00011740579183421243 - sys_21: -1.2008182778173426e-05 - sys_22: -6.141698742662588e-06 - sys_23: -0.00017082864831847395 - sys_24: 2.3925777516240453e-05 - sys_25: 1.0589689068813695e-05 - sys_26: 1.5539930182588289e-06 - sys_27: 4.654598261266596e-05 - sys_28: -8.287208541220833e-05 - sys_29: -0.00015049120801443518 - sys_30: -0.00020976847756331383 - sys_31: 6.885039895191192e-05 - sys_32: 2.260868343240635e-05 - sys_33: -3.024754160046387e-05 - sys_34: 2.0851185544436817e-05 - sys_35: 4.713581789838866e-07 - sys_36: -1.287459141051737e-05 - sys_37: 5.346321542997796e-07 - sys_38: -1.4300255360083402e-05 - sys_39: 4.1311480473326874e-05 - sys_40: 2.1539718824859296e-06 - sys_41: -5.72490466158545e-06 - sys_42: -8.912710280591576e-06 - sys_43: -1.913862023203563e-06 - sys_44: -3.952857675054201e-06 - sys_45: 6.959301525075621e-07 - sys_46: 6.493784466529925e-07 - sys_47: 1.5404502800721307e-06 - sys_48: -1.2242577211470571e-06 - sys_49: 8.123210815363746e-07 - sys_50: 1.2236700414621582e-07 - sys_51: 1.3759105106235787e-06 - sys_52: 1.166372212130406e-06 - sys_53: -1.1552386626513982e-06 - sys_54: 1.1214667092270596e-08 -- pol: 0.0028405 + sys_0: -1.92268270e-04 + sys_1: 8.24837934e-05 + sys_2: 2.73910387e-04 + sys_3: -1.14318428e-04 + sys_4: -6.66018279e-04 + sys_5: 3.56115356e-04 + sys_6: -3.37561334e-04 + sys_7: -2.15962356e-04 + sys_8: 3.12527142e-05 + sys_9: 1.86030212e-03 + sys_10: 2.77543169e-04 + sys_11: 7.05469414e-03 + sys_12: -8.53533525e-03 + sys_13: -5.04970554e-03 + sys_14: -1.43968790e-03 + sys_15: 2.14860577e-05 + sys_16: 1.43101357e-05 + sys_17: 1.09231593e-04 + sys_18: 5.54835230e-04 + sys_19: -2.16211182e-04 + sys_20: -1.17405792e-04 + sys_21: -1.20081828e-05 + sys_22: -6.14169874e-06 + sys_23: -1.70828648e-04 + sys_24: 2.39257775e-05 + sys_25: 1.05896891e-05 + sys_26: 1.55399302e-06 + sys_27: 4.65459826e-05 + sys_28: -8.28720854e-05 + sys_29: -1.50491208e-04 + sys_30: -2.09768478e-04 + sys_31: 6.88503990e-05 + sys_32: 2.26086834e-05 + sys_33: -3.02475416e-05 + sys_34: 2.08511855e-05 + sys_35: 4.71358179e-07 + sys_36: -1.28745914e-05 + sys_37: 5.34632154e-07 + sys_38: -1.43002554e-05 + sys_39: 4.13114805e-05 + sys_40: 2.15397188e-06 + sys_41: -5.72490466e-06 + sys_42: -8.91271028e-06 + sys_43: -1.91386202e-06 + sys_44: -3.95285768e-06 + sys_45: 6.95930153e-07 + sys_46: 6.49378447e-07 + sys_47: 1.54045028e-06 + sys_48: -1.22425772e-06 + sys_49: 8.12321082e-07 + sys_50: 1.22367004e-07 + sys_51: 1.37591051e-06 + sys_52: 1.16637221e-06 + sys_53: -1.15523866e-06 + sys_54: 1.12146671e-08 +- pol: 2.84050000e-03 lumi: 0.0005 - sys_0: -0.0001209822545067098 - sys_1: 6.078969323686765e-05 - sys_2: 0.0022375170909480794 - sys_3: 0.00023739815901491456 - sys_4: -0.0036887843920609003 - sys_5: 0.00032503038815467016 - sys_6: -0.005344332316351606 - sys_7: -0.02129126984565332 - sys_8: -8.827904845591173e-06 - sys_9: -0.0010693427313493381 - sys_10: -0.000197175344138057 - sys_11: -0.0008914672490030538 - sys_12: -0.00017164616474276835 - sys_13: -0.00033585386710022967 - sys_14: -0.00015012419382282212 - sys_15: -4.4127091315908075e-06 - sys_16: 1.5660065082575968e-07 - sys_17: -3.556612508386909e-05 - sys_18: 0.00012580014177031922 - sys_19: -4.47014745068659e-05 - sys_20: -1.5028621161867484e-05 - sys_21: -5.0922157365785324e-06 - sys_22: -2.49399584771638e-06 - sys_23: -2.8148569231490962e-05 - sys_24: 9.68760384590002e-06 - sys_25: 5.7115156913920625e-06 - sys_26: 1.2312247973859156e-06 - sys_27: 3.1489901032654646e-05 - sys_28: -3.612952884891553e-05 - sys_29: -7.645482870197481e-05 - sys_30: -6.586396964070489e-05 - sys_31: 1.571198298990849e-05 - sys_32: 3.3584386828980966e-06 - sys_33: -2.759994227184871e-05 - sys_34: 1.1581200810957342e-05 - sys_35: -2.1807710616589873e-06 - sys_36: -4.1446596053040435e-06 - sys_37: -1.5591175236329233e-07 - sys_38: -2.9538550688623366e-06 - sys_39: 8.558108846045e-06 - sys_40: 2.8192985483184653e-07 - sys_41: -8.055161363054991e-07 - sys_42: -8.537414357402123e-07 - sys_43: 2.0702845050681153e-07 - sys_44: 5.187001298680236e-07 - sys_45: -8.29438681441218e-07 - sys_46: 7.175736016931112e-07 - sys_47: 1.2673806876239821e-06 - sys_48: -5.75965879768336e-07 - sys_49: 4.1930363729952066e-07 - sys_50: 9.837983690060901e-08 - sys_51: 8.260516473912242e-07 - sys_52: 6.452305132475802e-07 - sys_53: -4.702457411333261e-07 - sys_54: 8.287956405000737e-08 -- pol: 0.0003575 + sys_0: -1.20982255e-04 + sys_1: 6.07896932e-05 + sys_2: 2.23751709e-03 + sys_3: 2.37398159e-04 + sys_4: -3.68878439e-03 + sys_5: 3.25030388e-04 + sys_6: -5.34433232e-03 + sys_7: -2.12912698e-02 + sys_8: -8.82790485e-06 + sys_9: -1.06934273e-03 + sys_10: -1.97175344e-04 + sys_11: -8.91467249e-04 + sys_12: -1.71646165e-04 + sys_13: -3.35853867e-04 + sys_14: -1.50124194e-04 + sys_15: -4.41270913e-06 + sys_16: 1.56600651e-07 + sys_17: -3.55661251e-05 + sys_18: 1.25800142e-04 + sys_19: -4.47014745e-05 + sys_20: -1.50286212e-05 + sys_21: -5.09221574e-06 + sys_22: -2.49399585e-06 + sys_23: -2.81485692e-05 + sys_24: 9.68760385e-06 + sys_25: 5.71151569e-06 + sys_26: 1.23122480e-06 + sys_27: 3.14899010e-05 + sys_28: -3.61295288e-05 + sys_29: -7.64548287e-05 + sys_30: -6.58639696e-05 + sys_31: 1.57119830e-05 + sys_32: 3.35843868e-06 + sys_33: -2.75999423e-05 + sys_34: 1.15812008e-05 + sys_35: -2.18077106e-06 + sys_36: -4.14465961e-06 + sys_37: -1.55911752e-07 + sys_38: -2.95385507e-06 + sys_39: 8.55810885e-06 + sys_40: 2.81929855e-07 + sys_41: -8.05516136e-07 + sys_42: -8.53741436e-07 + sys_43: 2.07028451e-07 + sys_44: 5.18700130e-07 + sys_45: -8.29438681e-07 + sys_46: 7.17573602e-07 + sys_47: 1.26738069e-06 + sys_48: -5.75965880e-07 + sys_49: 4.19303637e-07 + sys_50: 9.83798369e-08 + sys_51: 8.26051647e-07 + sys_52: 6.45230513e-07 + sys_53: -4.70245741e-07 + sys_54: 8.28795641e-08 +- pol: 3.57500000e-04 lumi: 0.0005 - sys_0: -5.8513038886961854e-05 - sys_1: 2.799617843269618e-05 - sys_2: 0.023224629640945342 - sys_3: -0.036237034818124673 - sys_4: 0.008003515837841296 - sys_5: -3.8137401023015235e-05 - sys_6: 0.0016701056177554894 - sys_7: -0.0004076583413788822 - sys_8: -1.773712926286461e-06 - sys_9: 2.039408080953129e-05 - sys_10: 6.787560104918311e-06 - sys_11: -0.0001641059785509819 - sys_12: -4.7088633664107894e-05 - sys_13: -6.224118370277064e-05 - sys_14: -3.08313575523925e-05 - sys_15: -1.8950480174165677e-06 - sys_16: 6.133377871696733e-08 - sys_17: -7.329579428766403e-06 - sys_18: 2.5443810548522056e-05 - sys_19: -9.118589876708825e-06 - sys_20: -4.202039014485079e-06 - sys_21: -1.3592617267465237e-06 - sys_22: -6.758100137683505e-07 - sys_23: -4.793114976627995e-06 - sys_24: 2.5476685910568417e-06 - sys_25: 1.5271941226342892e-06 - sys_26: -1.0671919342240164e-08 - sys_27: 7.6859674379787e-06 - sys_28: -9.222131903998184e-06 - sys_29: -2.0422148006293756e-05 - sys_30: -1.3027245771655708e-05 - sys_31: 2.5986887628489908e-06 - sys_32: -3.5439631001723685e-06 - sys_33: -2.117718633738664e-05 - sys_34: 6.166277657690618e-06 - sys_35: -1.0765348093191296e-06 - sys_36: -1.3504894489868775e-06 - sys_37: -1.2868730738361756e-07 - sys_38: -4.939571900975953e-07 - sys_39: 1.3572335039632588e-06 - sys_40: 4.508836659601512e-08 - sys_41: -1.4209188941056427e-07 - sys_42: -9.782771840937847e-08 - sys_43: 1.2971440338465198e-07 - sys_44: 1.5519327063925116e-07 - sys_45: -4.535140906522522e-07 - sys_46: 2.3119338958953168e-07 - sys_47: 3.2643631158630256e-07 - sys_48: -1.0783881035796993e-07 - sys_49: 1.1462039465247357e-07 - sys_50: 2.587199227068809e-08 - sys_51: 2.120751242402796e-07 - sys_52: 1.7347859435981086e-07 - sys_53: -1.3260584191250557e-07 - sys_54: 2.156141087660562e-08 + sys_0: -5.85130389e-05 + sys_1: 2.79961784e-05 + sys_2: 2.32246296e-02 + sys_3: -3.62370348e-02 + sys_4: 8.00351584e-03 + sys_5: -3.81374010e-05 + sys_6: 1.67010562e-03 + sys_7: -4.07658341e-04 + sys_8: -1.77371293e-06 + sys_9: 2.03940808e-05 + sys_10: 6.78756010e-06 + sys_11: -1.64105979e-04 + sys_12: -4.70886337e-05 + sys_13: -6.22411837e-05 + sys_14: -3.08313576e-05 + sys_15: -1.89504802e-06 + sys_16: 6.13337787e-08 + sys_17: -7.32957943e-06 + sys_18: 2.54438105e-05 + sys_19: -9.11858988e-06 + sys_20: -4.20203901e-06 + sys_21: -1.35926173e-06 + sys_22: -6.75810014e-07 + sys_23: -4.79311498e-06 + sys_24: 2.54766859e-06 + sys_25: 1.52719412e-06 + sys_26: -1.06719193e-08 + sys_27: 7.68596744e-06 + sys_28: -9.22213190e-06 + sys_29: -2.04221480e-05 + sys_30: -1.30272458e-05 + sys_31: 2.59868876e-06 + sys_32: -3.54396310e-06 + sys_33: -2.11771863e-05 + sys_34: 6.16627766e-06 + sys_35: -1.07653481e-06 + sys_36: -1.35048945e-06 + sys_37: -1.28687307e-07 + sys_38: -4.93957190e-07 + sys_39: 1.35723350e-06 + sys_40: 4.50883666e-08 + sys_41: -1.42091889e-07 + sys_42: -9.78277184e-08 + sys_43: 1.29714403e-07 + sys_44: 1.55193271e-07 + sys_45: -4.53514091e-07 + sys_46: 2.31193390e-07 + sys_47: 3.26436312e-07 + sys_48: -1.07838810e-07 + sys_49: 1.14620395e-07 + sys_50: 2.58719923e-08 + sys_51: 2.12075124e-07 + sys_52: 1.73478594e-07 + sys_53: -1.32605842e-07 + sys_54: 2.15614109e-08 diff --git a/nnpdf_data/nnpdf_data/commondata/STAR-2009_2JET_200GEV/kinematics_A.yaml b/nnpdf_data/nnpdf_data/commondata/STAR-2009_2JET_200GEV/kinematics_A.yaml index 9f24498bec..2e3fe01be1 100644 --- a/nnpdf_data/nnpdf_data/commondata/STAR-2009_2JET_200GEV/kinematics_A.yaml +++ b/nnpdf_data/nnpdf_data/commondata/STAR-2009_2JET_200GEV/kinematics_A.yaml @@ -33,7 +33,7 @@ bins: min: 0.8 m_jj: max: 27.59 - mid: 26.310000000000002 + mid: 2.63100000e+01 min: 25.03 - eta_1: max: 1.8 @@ -57,5 +57,5 @@ bins: min: 0.8 m_jj: max: 40.39 - mid: 38.879999999999995 + mid: 3.88800000e+01 min: 37.37 diff --git a/nnpdf_data/nnpdf_data/commondata/STAR-2009_2JET_200GEV/kinematics_B.yaml b/nnpdf_data/nnpdf_data/commondata/STAR-2009_2JET_200GEV/kinematics_B.yaml index 462e9c811c..997b0fb1bd 100644 --- a/nnpdf_data/nnpdf_data/commondata/STAR-2009_2JET_200GEV/kinematics_B.yaml +++ b/nnpdf_data/nnpdf_data/commondata/STAR-2009_2JET_200GEV/kinematics_B.yaml @@ -9,7 +9,7 @@ bins: min: 0.8 m_jj: max: 19.82 - mid: 18.439999999999998 + mid: 1.84400000e+01 min: 17.06 - eta_1: max: 0.0 @@ -81,5 +81,5 @@ bins: min: 0.8 m_jj: max: 67.88 - mid: 65.72999999999999 + mid: 6.57300000e+01 min: 63.58 diff --git a/nnpdf_data/nnpdf_data/commondata/STAR-2009_2JET_200GEV/kinematics_C.yaml b/nnpdf_data/nnpdf_data/commondata/STAR-2009_2JET_200GEV/kinematics_C.yaml index 1351f99837..7fb50db8af 100644 --- a/nnpdf_data/nnpdf_data/commondata/STAR-2009_2JET_200GEV/kinematics_C.yaml +++ b/nnpdf_data/nnpdf_data/commondata/STAR-2009_2JET_200GEV/kinematics_C.yaml @@ -9,7 +9,7 @@ bins: min: 0.8 m_jj: max: 19.71 - mid: 18.509999999999998 + mid: 1.85100000e+01 min: 17.31 - eta_1: max: 0.8 @@ -81,5 +81,5 @@ bins: min: 0.8 m_jj: max: 66.04 - mid: 62.82000000000001 + mid: 6.28200000e+01 min: 59.6 diff --git a/nnpdf_data/nnpdf_data/commondata/STAR-2009_2JET_200GEV/uncertainties_A.yaml b/nnpdf_data/nnpdf_data/commondata/STAR-2009_2JET_200GEV/uncertainties_A.yaml index 004e18d932..3d4e5d01b1 100644 --- a/nnpdf_data/nnpdf_data/commondata/STAR-2009_2JET_200GEV/uncertainties_A.yaml +++ b/nnpdf_data/nnpdf_data/commondata/STAR-2009_2JET_200GEV/uncertainties_A.yaml @@ -228,288 +228,288 @@ definitions: treatment: ADD type: STAR2009JETunc54 bins: -- pol: 0.0001235 +- pol: 1.23500000e-04 lumi: 0.0005 - sys_0: -4.48776452100338e-05 - sys_1: 6.776294327345534e-05 - sys_2: -4.4753751730001365e-08 - sys_3: -7.288127908652446e-08 - sys_4: -1.0323936912961599e-07 - sys_5: 6.772707946976806e-05 - sys_6: 5.007464996775399e-07 - sys_7: 5.929374500772997e-07 - sys_8: 8.472419299650938e-05 - sys_9: 1.6447911154954665e-05 - sys_10: -6.839795439959998e-05 - sys_11: 1.207200685233991e-06 - sys_12: -7.021870472004515e-06 - sys_13: 4.653734692596229e-05 - sys_14: -8.224920326433965e-05 - sys_15: 0.00012536530768976636 - sys_16: 4.3397019510578037e-07 - sys_17: 7.141506342451758e-06 - sys_18: 8.083269445673086e-05 - sys_19: 0.00019512330606996176 - sys_20: -6.338734683925493e-05 - sys_21: 0.0009768590346124453 - sys_22: 0.007204696849904387 - sys_23: -7.494840214629504e-05 - sys_24: 0.00014963393881898393 - sys_25: 6.448416482612821e-05 - sys_26: -7.134181533410133e-06 - sys_27: 4.4684004698275434e-05 - sys_28: -3.086093816650538e-05 - sys_29: -4.066112316128462e-05 - sys_30: -4.577686734397059e-05 - sys_31: 2.091102241678141e-05 - sys_32: -3.5697686226221864e-05 - sys_33: -7.407826135553521e-06 - sys_34: -1.2205305139498918e-05 - sys_35: 9.967646610673101e-06 - sys_36: 1.0804594799410665e-05 - sys_37: 7.805715662876112e-06 - sys_38: -1.7842256334988786e-06 - sys_39: 4.315334182360741e-06 - sys_40: -6.438121316428119e-06 - sys_41: -3.605453282470376e-07 - sys_42: -4.439212748996624e-06 - sys_43: -1.7296876522685965e-06 - sys_44: -1.8241776447345644e-06 - sys_45: 1.9024629962913101e-06 - sys_46: -2.886815684665996e-06 - sys_47: 3.6419719532534782e-06 - sys_48: -5.646766855556793e-06 - sys_49: 6.813857622443639e-06 - sys_50: 7.177985209715245e-07 - sys_51: 4.110707435903107e-06 - sys_52: 5.41269990874739e-06 - sys_53: -6.900525625018093e-06 - sys_54: -9.746578040412145e-07 -- pol: 0.0004485 + sys_0: -4.48776452e-05 + sys_1: 6.77629433e-05 + sys_2: -4.47537517e-08 + sys_3: -7.28812791e-08 + sys_4: -1.03239369e-07 + sys_5: 6.77270795e-05 + sys_6: 5.00746500e-07 + sys_7: 5.92937450e-07 + sys_8: 8.47241930e-05 + sys_9: 1.64479112e-05 + sys_10: -6.83979544e-05 + sys_11: 1.20720069e-06 + sys_12: -7.02187047e-06 + sys_13: 4.65373469e-05 + sys_14: -8.22492033e-05 + sys_15: 1.25365308e-04 + sys_16: 4.33970195e-07 + sys_17: 7.14150634e-06 + sys_18: 8.08326945e-05 + sys_19: 1.95123306e-04 + sys_20: -6.33873468e-05 + sys_21: 9.76859035e-04 + sys_22: 7.20469685e-03 + sys_23: -7.49484021e-05 + sys_24: 1.49633939e-04 + sys_25: 6.44841648e-05 + sys_26: -7.13418153e-06 + sys_27: 4.46840047e-05 + sys_28: -3.08609382e-05 + sys_29: -4.06611232e-05 + sys_30: -4.57768673e-05 + sys_31: 2.09110224e-05 + sys_32: -3.56976862e-05 + sys_33: -7.40782614e-06 + sys_34: -1.22053051e-05 + sys_35: 9.96764661e-06 + sys_36: 1.08045948e-05 + sys_37: 7.80571566e-06 + sys_38: -1.78422563e-06 + sys_39: 4.31533418e-06 + sys_40: -6.43812132e-06 + sys_41: -3.60545328e-07 + sys_42: -4.43921275e-06 + sys_43: -1.72968765e-06 + sys_44: -1.82417764e-06 + sys_45: 1.90246300e-06 + sys_46: -2.88681568e-06 + sys_47: 3.64197195e-06 + sys_48: -5.64676686e-06 + sys_49: 6.81385762e-06 + sys_50: 7.17798521e-07 + sys_51: 4.11070744e-06 + sys_52: 5.41269991e-06 + sys_53: -6.90052563e-06 + sys_54: -9.74657804e-07 +- pol: 4.48500000e-04 lumi: 0.0005 - sys_0: -7.591357043922353e-05 - sys_1: 0.00010691588019715926 - sys_2: -8.001784119586716e-08 - sys_3: -9.802442708826083e-08 - sys_4: -1.5082926966687727e-07 - sys_5: 9.923874518602622e-05 - sys_6: 7.496399690221399e-07 - sys_7: 8.766125878160682e-07 - sys_8: 0.00013025687221271276 - sys_9: 2.624655479790422e-05 - sys_10: -0.00010948465980481573 - sys_11: 1.6202126563578847e-06 - sys_12: -1.0439064079982229e-05 - sys_13: 6.962278212612749e-05 - sys_14: -0.00012294481970626865 - sys_15: 0.000199270395425293 - sys_16: 1.6445259595222887e-06 - sys_17: 9.034181596423737e-06 - sys_18: 0.00013409133044236875 - sys_19: 0.00031664358246412454 - sys_20: -0.00010368147250169353 - sys_21: 0.007310296096863575 - sys_22: -0.0009841167563206714 - sys_23: -7.781681763841958e-05 - sys_24: 0.00024230477849706566 - sys_25: 0.0001420039690343302 - sys_26: -4.922426172288268e-07 - sys_27: 6.348188421475412e-05 - sys_28: -3.837368180823426e-05 - sys_29: -6.106377102479423e-05 - sys_30: -7.069173052615929e-05 - sys_31: 2.6857556389655035e-05 - sys_32: -4.732347734882252e-05 - sys_33: -1.2676361298559677e-05 - sys_34: -4.00369035688541e-05 - sys_35: 4.6608595967517715e-06 - sys_36: 1.250971736100914e-05 - sys_37: 5.322117332404347e-06 - sys_38: 1.5076897108900143e-06 - sys_39: 1.381676779744839e-05 - sys_40: -9.260946565967462e-06 - sys_41: 2.072426562583976e-05 - sys_42: -4.131185927921779e-06 - sys_43: -1.3981520758022036e-06 - sys_44: -7.359252144345648e-06 - sys_45: -3.7465321520229866e-06 - sys_46: -1.6014439878351542e-06 - sys_47: 1.1905280127134358e-05 - sys_48: -6.0498272548736095e-06 - sys_49: 1.3480537489503214e-05 - sys_50: 1.01616506394723e-07 - sys_51: 1.3996075187030834e-05 - sys_52: 6.4899432019709825e-06 - sys_53: -6.990601289143831e-06 - sys_54: -9.524187785732324e-07 + sys_0: -7.59135704e-05 + sys_1: 1.06915880e-04 + sys_2: -8.00178412e-08 + sys_3: -9.80244271e-08 + sys_4: -1.50829270e-07 + sys_5: 9.92387452e-05 + sys_6: 7.49639969e-07 + sys_7: 8.76612588e-07 + sys_8: 1.30256872e-04 + sys_9: 2.62465548e-05 + sys_10: -1.09484660e-04 + sys_11: 1.62021266e-06 + sys_12: -1.04390641e-05 + sys_13: 6.96227821e-05 + sys_14: -1.22944820e-04 + sys_15: 1.99270395e-04 + sys_16: 1.64452596e-06 + sys_17: 9.03418160e-06 + sys_18: 1.34091330e-04 + sys_19: 3.16643582e-04 + sys_20: -1.03681473e-04 + sys_21: 7.31029610e-03 + sys_22: -9.84116756e-04 + sys_23: -7.78168176e-05 + sys_24: 2.42304778e-04 + sys_25: 1.42003969e-04 + sys_26: -4.92242617e-07 + sys_27: 6.34818842e-05 + sys_28: -3.83736818e-05 + sys_29: -6.10637710e-05 + sys_30: -7.06917305e-05 + sys_31: 2.68575564e-05 + sys_32: -4.73234773e-05 + sys_33: -1.26763613e-05 + sys_34: -4.00369036e-05 + sys_35: 4.66085960e-06 + sys_36: 1.25097174e-05 + sys_37: 5.32211733e-06 + sys_38: 1.50768971e-06 + sys_39: 1.38167678e-05 + sys_40: -9.26094657e-06 + sys_41: 2.07242656e-05 + sys_42: -4.13118593e-06 + sys_43: -1.39815208e-06 + sys_44: -7.35925214e-06 + sys_45: -3.74653215e-06 + sys_46: -1.60144399e-06 + sys_47: 1.19052801e-05 + sys_48: -6.04982725e-06 + sys_49: 1.34805375e-05 + sys_50: 1.01616506e-07 + sys_51: 1.39960752e-05 + sys_52: 6.48994320e-06 + sys_53: -6.99060129e-06 + sys_54: -9.52418779e-07 - pol: 0.001378 lumi: 0.0005 - sys_0: -0.00012545248655006203 - sys_1: 0.00018134197418026378 - sys_2: -1.2464526240823842e-07 - sys_3: -1.8349307540557562e-07 - sys_4: -2.823548834746847e-07 - sys_5: 0.00017702230712274535 - sys_6: 1.39536721802433e-06 - sys_7: 1.5250474659799815e-06 - sys_8: 0.00026380826253549294 - sys_9: 5.631703691362923e-05 - sys_10: -0.00023159800959978913 - sys_11: 6.032662154551648e-06 - sys_12: -3.6113575655608134e-05 - sys_13: 0.00035757728729490134 - sys_14: -0.0007156154026702502 - sys_15: 0.0060965978179303125 - sys_16: 0.008024871606708249 - sys_17: 1.367902173797432e-06 - sys_18: -0.00010768135812625725 - sys_19: -0.00031236145334554664 - sys_20: 1.9997551760697748e-05 - sys_21: -0.00010227767393603962 - sys_22: -4.5246539026759446e-05 - sys_23: 3.0188742242180865e-06 - sys_24: 0.00011950035602711875 - sys_25: 2.2847270355230814e-05 - sys_26: 7.772817495163353e-06 - sys_27: 3.0198664357245047e-05 - sys_28: -1.418467310747641e-05 - sys_29: -4.122918393832882e-05 - sys_30: -4.764147798758627e-05 - sys_31: 7.848383185863424e-06 - sys_32: -3.0204867746304615e-05 - sys_33: -9.113907677093164e-06 - sys_34: -1.7637206349011646e-05 - sys_35: -1.220582308723125e-05 - sys_36: 2.1803062009171792e-05 - sys_37: 1.4126396673841553e-06 - sys_38: 7.902542100943938e-06 - sys_39: 1.7468158430681097e-05 - sys_40: -4.30518329877157e-06 - sys_41: 7.566946606553799e-06 - sys_42: 2.7974892641710527e-06 - sys_43: 2.133008737070582e-06 - sys_44: -1.5503058363360472e-06 - sys_45: -1.1733898984346618e-05 - sys_46: 7.39054235775587e-06 - sys_47: 1.6660789448449954e-05 - sys_48: 1.2169146756403318e-07 - sys_49: 8.288850787467652e-06 - sys_50: -8.692005600756834e-07 - sys_51: 1.4984382648851165e-05 - sys_52: 2.0712710300726616e-06 - sys_53: -1.9781074332984837e-06 - sys_54: -8.3758130767185e-07 -- pol: 0.0027949999999999997 + sys_0: -1.25452487e-04 + sys_1: 1.81341974e-04 + sys_2: -1.24645262e-07 + sys_3: -1.83493075e-07 + sys_4: -2.82354883e-07 + sys_5: 1.77022307e-04 + sys_6: 1.39536722e-06 + sys_7: 1.52504747e-06 + sys_8: 2.63808263e-04 + sys_9: 5.63170369e-05 + sys_10: -2.31598010e-04 + sys_11: 6.03266215e-06 + sys_12: -3.61135757e-05 + sys_13: 3.57577287e-04 + sys_14: -7.15615403e-04 + sys_15: 6.09659782e-03 + sys_16: 8.02487161e-03 + sys_17: 1.36790217e-06 + sys_18: -1.07681358e-04 + sys_19: -3.12361453e-04 + sys_20: 1.99975518e-05 + sys_21: -1.02277674e-04 + sys_22: -4.52465390e-05 + sys_23: 3.01887422e-06 + sys_24: 1.19500356e-04 + sys_25: 2.28472704e-05 + sys_26: 7.77281750e-06 + sys_27: 3.01986644e-05 + sys_28: -1.41846731e-05 + sys_29: -4.12291839e-05 + sys_30: -4.76414780e-05 + sys_31: 7.84838319e-06 + sys_32: -3.02048677e-05 + sys_33: -9.11390768e-06 + sys_34: -1.76372063e-05 + sys_35: -1.22058231e-05 + sys_36: 2.18030620e-05 + sys_37: 1.41263967e-06 + sys_38: 7.90254210e-06 + sys_39: 1.74681584e-05 + sys_40: -4.30518330e-06 + sys_41: 7.56694661e-06 + sys_42: 2.79748926e-06 + sys_43: 2.13300874e-06 + sys_44: -1.55030584e-06 + sys_45: -1.17338990e-05 + sys_46: 7.39054236e-06 + sys_47: 1.66607894e-05 + sys_48: 1.21691468e-07 + sys_49: 8.28885079e-06 + sys_50: -8.69200560e-07 + sys_51: 1.49843826e-05 + sys_52: 2.07127103e-06 + sys_53: -1.97810743e-06 + sys_54: -8.37581308e-07 +- pol: 2.79500000e-03 lumi: 0.0005 - sys_0: -0.00044095452565256756 - sys_1: 0.0006989788713221399 - sys_2: -3.78793106293382e-07 - sys_3: -8.408468149688058e-07 - sys_4: -1.7328916050375832e-06 - sys_5: 0.0009185336314958047 - sys_6: 8.505417935230232e-06 - sys_7: 1.552096654632218e-05 - sys_8: 0.019554121628135957 - sys_9: -0.0003539770030497678 - sys_10: 0.0013627337992098412 - sys_11: -3.194044959199856e-05 - sys_12: 4.85445836996727e-05 - sys_13: -0.00011736075128381648 - sys_14: 0.00019147253066689144 - sys_15: -0.000210655304147849 - sys_16: 1.9024055149839983e-06 - sys_17: 6.104777361870734e-06 - sys_18: -3.9547652109548997e-05 - sys_19: -0.00012617936578061681 - sys_20: 3.128774902976084e-06 - sys_21: -4.5604723114932054e-05 - sys_22: -2.097586152527611e-05 - sys_23: 5.279313106887194e-06 - sys_24: 5.546870078478045e-05 - sys_25: 2.630694428719853e-05 - sys_26: 1.846112519360803e-05 - sys_27: 2.161233557688992e-05 - sys_28: -4.7481452531992535e-06 - sys_29: -3.214364234200822e-05 - sys_30: -3.9602076588727776e-05 - sys_31: 5.515390056982518e-06 - sys_32: -2.31689146481671e-05 - sys_33: -7.1021823707305945e-06 - sys_34: -1.2079910384133321e-05 - sys_35: -2.3293496160145028e-06 - sys_36: 1.1753354138824639e-05 - sys_37: -1.3862675193960321e-06 - sys_38: 3.6721008183554897e-06 - sys_39: 3.985338257298709e-06 - sys_40: -1.4417798171308654e-06 - sys_41: 6.153721810382526e-06 - sys_42: 7.319846866996024e-06 - sys_43: 3.7792323954840434e-06 - sys_44: 7.380452317548921e-06 - sys_45: -1.3042609630305448e-05 - sys_46: 8.513084629186071e-06 - sys_47: 9.783984858500651e-06 - sys_48: 2.199299840250533e-06 - sys_49: 1.7840537823148113e-06 - sys_50: -4.292044378167603e-07 - sys_51: 5.56414024175159e-06 - sys_52: -3.790580914870544e-07 - sys_53: 5.534544875234064e-07 - sys_54: 2.974963629551774e-08 + sys_0: -4.40954526e-04 + sys_1: 6.98978871e-04 + sys_2: -3.78793106e-07 + sys_3: -8.40846815e-07 + sys_4: -1.73289161e-06 + sys_5: 9.18533631e-04 + sys_6: 8.50541794e-06 + sys_7: 1.55209665e-05 + sys_8: 1.95541216e-02 + sys_9: -3.53977003e-04 + sys_10: 1.36273380e-03 + sys_11: -3.19404496e-05 + sys_12: 4.85445837e-05 + sys_13: -1.17360751e-04 + sys_14: 1.91472531e-04 + sys_15: -2.10655304e-04 + sys_16: 1.90240551e-06 + sys_17: 6.10477736e-06 + sys_18: -3.95476521e-05 + sys_19: -1.26179366e-04 + sys_20: 3.12877490e-06 + sys_21: -4.56047231e-05 + sys_22: -2.09758615e-05 + sys_23: 5.27931311e-06 + sys_24: 5.54687008e-05 + sys_25: 2.63069443e-05 + sys_26: 1.84611252e-05 + sys_27: 2.16123356e-05 + sys_28: -4.74814525e-06 + sys_29: -3.21436423e-05 + sys_30: -3.96020766e-05 + sys_31: 5.51539006e-06 + sys_32: -2.31689146e-05 + sys_33: -7.10218237e-06 + sys_34: -1.20799104e-05 + sys_35: -2.32934962e-06 + sys_36: 1.17533541e-05 + sys_37: -1.38626752e-06 + sys_38: 3.67210082e-06 + sys_39: 3.98533826e-06 + sys_40: -1.44177982e-06 + sys_41: 6.15372181e-06 + sys_42: 7.31984687e-06 + sys_43: 3.77923240e-06 + sys_44: 7.38045232e-06 + sys_45: -1.30426096e-05 + sys_46: 8.51308463e-06 + sys_47: 9.78398486e-06 + sys_48: 2.19929984e-06 + sys_49: 1.78405378e-06 + sys_50: -4.29204438e-07 + sys_51: 5.56414024e-06 + sys_52: -3.79058091e-07 + sys_53: 5.53454488e-07 + sys_54: 2.97496363e-08 - pol: 0.00507 lumi: 0.0005 - sys_0: -0.0014082583078339087 - sys_1: 0.0504571688973656 - sys_2: -6.126762673379352e-05 - sys_3: 5.935319745793472e-06 - sys_4: 1.3191776067428907e-05 - sys_5: -0.0009883238431349917 - sys_6: 3.055488643282361e-06 - sys_7: 2.3100785068742714e-05 - sys_8: -0.0002793402499156874 - sys_9: -4.223649367688651e-05 - sys_10: 0.00013826991807521814 - sys_11: -1.9939305161420073e-05 - sys_12: 2.2682617067911085e-05 - sys_13: -3.2783546694208317e-05 - sys_14: 4.746950591695253e-05 - sys_15: -5.3296125937737404e-05 - sys_16: 2.8700279429511924e-07 - sys_17: 2.219321791977907e-05 - sys_18: -7.247115755848837e-06 - sys_19: -3.574670902232149e-05 - sys_20: -1.5434141110491413e-05 - sys_21: -1.4285822104275688e-05 - sys_22: -6.2566023536020455e-06 - sys_23: 6.189764710996172e-06 - sys_24: 1.754848396875966e-05 - sys_25: 7.666085241543005e-06 - sys_26: 9.645573167725028e-06 - sys_27: 1.012114859956529e-05 - sys_28: 7.170868749484311e-07 - sys_29: -1.0271223102865592e-05 - sys_30: -1.3211023100717946e-05 - sys_31: -5.409832615315785e-06 - sys_32: -7.504694316470879e-06 - sys_33: -2.471814204234222e-06 - sys_34: -4.113854951258935e-06 - sys_35: -4.198013458085272e-06 - sys_36: 6.18333327519241e-06 - sys_37: -1.7596638424686233e-06 - sys_38: 3.922907472689768e-06 - sys_39: -8.39120734650822e-06 - sys_40: -4.276158694033431e-07 - sys_41: 3.0459436294284387e-06 - sys_42: 7.82976371612579e-06 - sys_43: 3.142947333768832e-06 - sys_44: 6.399062251349906e-06 - sys_45: -6.259728530667122e-06 - sys_46: 2.529652956221653e-06 - sys_47: 1.9737722714828587e-06 - sys_48: 8.69281155316712e-07 - sys_49: 9.728632830886143e-08 - sys_50: -1.051136795924762e-07 - sys_51: 6.263765489982744e-07 - sys_52: -3.336470758834418e-07 - sys_53: 3.210077607322744e-07 - sys_54: 2.611680834994292e-08 + sys_0: -1.40825831e-03 + sys_1: 5.04571689e-02 + sys_2: -6.12676267e-05 + sys_3: 5.93531975e-06 + sys_4: 1.31917761e-05 + sys_5: -9.88323843e-04 + sys_6: 3.05548864e-06 + sys_7: 2.31007851e-05 + sys_8: -2.79340250e-04 + sys_9: -4.22364937e-05 + sys_10: 1.38269918e-04 + sys_11: -1.99393052e-05 + sys_12: 2.26826171e-05 + sys_13: -3.27835467e-05 + sys_14: 4.74695059e-05 + sys_15: -5.32961259e-05 + sys_16: 2.87002794e-07 + sys_17: 2.21932179e-05 + sys_18: -7.24711576e-06 + sys_19: -3.57467090e-05 + sys_20: -1.54341411e-05 + sys_21: -1.42858221e-05 + sys_22: -6.25660235e-06 + sys_23: 6.18976471e-06 + sys_24: 1.75484840e-05 + sys_25: 7.66608524e-06 + sys_26: 9.64557317e-06 + sys_27: 1.01211486e-05 + sys_28: 7.17086875e-07 + sys_29: -1.02712231e-05 + sys_30: -1.32110231e-05 + sys_31: -5.40983262e-06 + sys_32: -7.50469432e-06 + sys_33: -2.47181420e-06 + sys_34: -4.11385495e-06 + sys_35: -4.19801346e-06 + sys_36: 6.18333328e-06 + sys_37: -1.75966384e-06 + sys_38: 3.92290747e-06 + sys_39: -8.39120735e-06 + sys_40: -4.27615869e-07 + sys_41: 3.04594363e-06 + sys_42: 7.82976372e-06 + sys_43: 3.14294733e-06 + sys_44: 6.39906225e-06 + sys_45: -6.25972853e-06 + sys_46: 2.52965296e-06 + sys_47: 1.97377227e-06 + sys_48: 8.69281155e-07 + sys_49: 9.72863283e-08 + sys_50: -1.05113680e-07 + sys_51: 6.26376549e-07 + sys_52: -3.33647076e-07 + sys_53: 3.21007761e-07 + sys_54: 2.61168083e-08 diff --git a/nnpdf_data/nnpdf_data/commondata/STAR-2009_2JET_200GEV/uncertainties_B.yaml b/nnpdf_data/nnpdf_data/commondata/STAR-2009_2JET_200GEV/uncertainties_B.yaml index 18d451aa22..14f3f903d1 100644 --- a/nnpdf_data/nnpdf_data/commondata/STAR-2009_2JET_200GEV/uncertainties_B.yaml +++ b/nnpdf_data/nnpdf_data/commondata/STAR-2009_2JET_200GEV/uncertainties_B.yaml @@ -230,400 +230,400 @@ definitions: bins: - pol: 0.001157 lumi: 0.0005 - sys_0: -0.0001603873805535555 - sys_1: 0.0002358292938915719 - sys_2: 3.226617958826444e-05 - sys_3: -3.983098835151419e-05 - sys_4: -1.9558011225979244e-05 - sys_5: 0.00024492375289262235 - sys_6: -1.066864776712192e-05 - sys_7: -0.00023796394432372037 - sys_8: 0.0003574369649507967 - sys_9: 0.0005620296029499517 - sys_10: -0.00021701917146969285 - sys_11: 0.0010618229981676948 - sys_12: -0.0015206569354742235 - sys_13: 0.005854228817839737 - sys_14: -0.009009031101046432 - sys_15: -0.0013130780394519166 - sys_16: 4.077595042710603e-05 - sys_17: 0.00047990227332937025 - sys_18: -0.00029738266882305847 - sys_19: -0.00025769375735938525 - sys_20: -0.00019678785367995049 - sys_21: -7.400032007232132e-05 - sys_22: -3.479882967760309e-05 - sys_23: 0.0004005670081578329 - sys_24: 8.576811092304322e-05 - sys_25: 3.834964493704987e-05 - sys_26: 0.00014231326273434896 - sys_27: 0.0002149097281502547 - sys_28: 1.8989554017752373e-05 - sys_29: -1.5005375878995074e-06 - sys_30: 3.3556067110908914e-05 - sys_31: -0.0001517528291334545 - sys_32: -3.9363141195042416e-05 - sys_33: 7.103578227626992e-07 - sys_34: -1.8850735251636803e-05 - sys_35: -1.917705795588818e-05 - sys_36: 2.9278374872831615e-05 - sys_37: -9.791266984036231e-06 - sys_38: 2.9514215846685505e-05 - sys_39: -9.886368650499442e-05 - sys_40: -3.987588708290928e-06 - sys_41: 1.4919230917064062e-05 - sys_42: 4.570087202076587e-05 - sys_43: 1.5304751256533736e-05 - sys_44: 2.0248203128020704e-05 - sys_45: -1.323486900921176e-05 - sys_46: 4.020900599975707e-06 - sys_47: 1.3191356681958554e-06 - sys_48: 2.631652114716825e-06 - sys_49: -6.43394143969515e-07 - sys_50: -3.2986638006694104e-07 - sys_51: -3.4983756951287785e-07 - sys_52: -1.682761668974912e-06 - sys_53: 1.5805071146358517e-06 - sys_54: 1.803934861902878e-07 + sys_0: -1.60387381e-04 + sys_1: 2.35829294e-04 + sys_2: 3.22661796e-05 + sys_3: -3.98309884e-05 + sys_4: -1.95580112e-05 + sys_5: 2.44923753e-04 + sys_6: -1.06686478e-05 + sys_7: -2.37963944e-04 + sys_8: 3.57436965e-04 + sys_9: 5.62029603e-04 + sys_10: -2.17019171e-04 + sys_11: 1.06182300e-03 + sys_12: -1.52065694e-03 + sys_13: 5.85422882e-03 + sys_14: -9.00903110e-03 + sys_15: -1.31307804e-03 + sys_16: 4.07759504e-05 + sys_17: 4.79902273e-04 + sys_18: -2.97382669e-04 + sys_19: -2.57693757e-04 + sys_20: -1.96787854e-04 + sys_21: -7.40003201e-05 + sys_22: -3.47988297e-05 + sys_23: 4.00567008e-04 + sys_24: 8.57681109e-05 + sys_25: 3.83496449e-05 + sys_26: 1.42313263e-04 + sys_27: 2.14909728e-04 + sys_28: 1.89895540e-05 + sys_29: -1.50053759e-06 + sys_30: 3.35560671e-05 + sys_31: -1.51752829e-04 + sys_32: -3.93631412e-05 + sys_33: 7.10357823e-07 + sys_34: -1.88507353e-05 + sys_35: -1.91770580e-05 + sys_36: 2.92783749e-05 + sys_37: -9.79126698e-06 + sys_38: 2.95142158e-05 + sys_39: -9.88636865e-05 + sys_40: -3.98758871e-06 + sys_41: 1.49192309e-05 + sys_42: 4.57008720e-05 + sys_43: 1.53047513e-05 + sys_44: 2.02482031e-05 + sys_45: -1.32348690e-05 + sys_46: 4.02090060e-06 + sys_47: 1.31913567e-06 + sys_48: 2.63165211e-06 + sys_49: -6.43394144e-07 + sys_50: -3.29866380e-07 + sys_51: -3.49837570e-07 + sys_52: -1.68276167e-06 + sys_53: 1.58050711e-06 + sys_54: 1.80393486e-07 - pol: 0.000377 lumi: 0.0005 - sys_0: -0.0001231648493603606 - sys_1: 0.00017665580924533031 - sys_2: 0.00015045222696400678 - sys_3: -0.00014778839578276245 - sys_4: -8.219970896926607e-05 - sys_5: 0.00017261205087017243 - sys_6: 9.25619974051332e-05 - sys_7: -0.00042872522227680777 - sys_8: 0.00020844307872614656 - sys_9: 0.00040829924758141467 - sys_10: -7.859887026395225e-05 - sys_11: -2.0694318761752964e-05 - sys_12: -0.0004158890076361518 - sys_13: -0.00018302815935867183 - sys_14: -0.0002466799953014947 - sys_15: 0.00020737227170158237 - sys_16: -4.103620387351486e-06 - sys_17: -0.0001319966770584366 - sys_18: 0.0005735512923050157 - sys_19: 5.7934550427111094e-05 - sys_20: -8.172744872671191e-05 - sys_21: 0.0001351351078450038 - sys_22: 6.41506240538755e-05 - sys_23: -0.0004996911454488815 - sys_24: -0.0003339530740301703 - sys_25: -0.0002148381627633686 - sys_26: -2.607490803487111e-05 - sys_27: -0.0011631798325828448 - sys_28: 0.0014478571250443322 - sys_29: 0.004609492920863482 - sys_30: 0.0008567656362082457 - sys_31: -0.00013389933141344203 - sys_32: -0.0003300325850453368 - sys_33: 7.385790931322742e-05 - sys_34: -0.00018532269124979728 - sys_35: 9.017665354698782e-05 - sys_36: 7.870067229754915e-05 - sys_37: -1.1120363431983029e-05 - sys_38: 1.2245961340532806e-05 - sys_39: -6.160460877861635e-05 - sys_40: 3.481205136546001e-06 - sys_41: -4.740937726724771e-06 - sys_42: -7.507383679955129e-06 - sys_43: -6.176934731487685e-06 - sys_44: -1.9382891185413238e-06 - sys_45: 1.3490333470932838e-05 - sys_46: -4.11750187834287e-06 - sys_47: -9.985270630215019e-06 - sys_48: 1.0427928861105063e-06 - sys_49: -2.86099773176245e-06 - sys_50: 8.713692087713267e-08 - sys_51: -5.5838873276221325e-06 - sys_52: -2.045762992028123e-06 - sys_53: 2.256765094602927e-06 - sys_54: 7.595227493373981e-07 + sys_0: -1.23164849e-04 + sys_1: 1.76655809e-04 + sys_2: 1.50452227e-04 + sys_3: -1.47788396e-04 + sys_4: -8.21997090e-05 + sys_5: 1.72612051e-04 + sys_6: 9.25619974e-05 + sys_7: -4.28725222e-04 + sys_8: 2.08443079e-04 + sys_9: 4.08299248e-04 + sys_10: -7.85988703e-05 + sys_11: -2.06943188e-05 + sys_12: -4.15889008e-04 + sys_13: -1.83028159e-04 + sys_14: -2.46679995e-04 + sys_15: 2.07372272e-04 + sys_16: -4.10362039e-06 + sys_17: -1.31996677e-04 + sys_18: 5.73551292e-04 + sys_19: 5.79345504e-05 + sys_20: -8.17274487e-05 + sys_21: 1.35135108e-04 + sys_22: 6.41506241e-05 + sys_23: -4.99691145e-04 + sys_24: -3.33953074e-04 + sys_25: -2.14838163e-04 + sys_26: -2.60749080e-05 + sys_27: -1.16317983e-03 + sys_28: 1.44785713e-03 + sys_29: 4.60949292e-03 + sys_30: 8.56765636e-04 + sys_31: -1.33899331e-04 + sys_32: -3.30032585e-04 + sys_33: 7.38579093e-05 + sys_34: -1.85322691e-04 + sys_35: 9.01766535e-05 + sys_36: 7.87006723e-05 + sys_37: -1.11203634e-05 + sys_38: 1.22459613e-05 + sys_39: -6.16046088e-05 + sys_40: 3.48120514e-06 + sys_41: -4.74093773e-06 + sys_42: -7.50738368e-06 + sys_43: -6.17693473e-06 + sys_44: -1.93828912e-06 + sys_45: 1.34903335e-05 + sys_46: -4.11750188e-06 + sys_47: -9.98527063e-06 + sys_48: 1.04279289e-06 + sys_49: -2.86099773e-06 + sys_50: 8.71369209e-08 + sys_51: -5.58388733e-06 + sys_52: -2.04576299e-06 + sys_53: 2.25676509e-06 + sys_54: 7.59522749e-07 - pol: 0.000312 lumi: 0.0005 - sys_0: -6.602015465560074e-05 - sys_1: 9.217982467710487e-05 - sys_2: -6.533264459594848e-08 - sys_3: -9.197846139190392e-08 - sys_4: -1.3694570309624634e-07 - sys_5: 8.998643060703975e-05 - sys_6: 6.530666951480633e-07 - sys_7: 7.905770936785168e-07 - sys_8: 0.00010886495850476022 - sys_9: 1.9459244919599936e-05 - sys_10: -8.10447234365702e-05 - sys_11: 1.1973366093558054e-06 - sys_12: -6.905899930253249e-06 - sys_13: 4.238431298155513e-05 - sys_14: -7.30219331179979e-05 - sys_15: 9.80364123353233e-05 - sys_16: -1.7417157941528932e-06 - sys_17: 4.4896451317540335e-06 - sys_18: 3.794599735410324e-05 - sys_19: 9.457756254377213e-05 - sys_20: -1.897049257141799e-05 - sys_21: 6.807944243828659e-05 - sys_22: 4.388119855724406e-05 - sys_23: 1.284274012393511e-05 - sys_24: -0.0001321589837996174 - sys_25: -7.502916154329594e-05 - sys_26: 8.3851537189183e-06 - sys_27: -0.00012982950830254253 - sys_28: 0.00012923187475170168 - sys_29: 0.00019628550403816495 - sys_30: 0.0003039166824061275 - sys_31: -0.0003449980331172546 - sys_32: 0.003907330902964705 - sys_33: -0.0013337680758517534 - sys_34: -0.0009733217979651604 - sys_35: 0.00023962946295106853 - sys_36: 0.00030665264424289805 - sys_37: 0.00014569279202035354 - sys_38: -1.9009378937644718e-05 - sys_39: 6.835433571213477e-05 - sys_40: -5.73846207274946e-05 - sys_41: 4.025613912348559e-06 - sys_42: -1.8412883819887698e-05 - sys_43: -5.0910607327337056e-06 - sys_44: -2.0035221292673805e-05 - sys_45: -1.192941700456156e-05 - sys_46: -1.8218054043915997e-05 - sys_47: 3.575178699911882e-05 - sys_48: -2.0344936100847334e-05 - sys_49: 1.4412328550439749e-05 - sys_50: -1.260719812782649e-06 - sys_51: 1.953164077154254e-05 - sys_52: 1.7446050185260467e-05 - sys_53: -2.6653247341660178e-05 - sys_54: -1.5256109182090561e-05 -- pol: 0.0001105 + sys_0: -6.60201547e-05 + sys_1: 9.21798247e-05 + sys_2: -6.53326446e-08 + sys_3: -9.19784614e-08 + sys_4: -1.36945703e-07 + sys_5: 8.99864306e-05 + sys_6: 6.53066695e-07 + sys_7: 7.90577094e-07 + sys_8: 1.08864959e-04 + sys_9: 1.94592449e-05 + sys_10: -8.10447234e-05 + sys_11: 1.19733661e-06 + sys_12: -6.90589993e-06 + sys_13: 4.23843130e-05 + sys_14: -7.30219331e-05 + sys_15: 9.80364123e-05 + sys_16: -1.74171579e-06 + sys_17: 4.48964513e-06 + sys_18: 3.79459974e-05 + sys_19: 9.45775625e-05 + sys_20: -1.89704926e-05 + sys_21: 6.80794424e-05 + sys_22: 4.38811986e-05 + sys_23: 1.28427401e-05 + sys_24: -1.32158984e-04 + sys_25: -7.50291615e-05 + sys_26: 8.38515372e-06 + sys_27: -1.29829508e-04 + sys_28: 1.29231875e-04 + sys_29: 1.96285504e-04 + sys_30: 3.03916682e-04 + sys_31: -3.44998033e-04 + sys_32: 3.90733090e-03 + sys_33: -1.33376808e-03 + sys_34: -9.73321798e-04 + sys_35: 2.39629463e-04 + sys_36: 3.06652644e-04 + sys_37: 1.45692792e-04 + sys_38: -1.90093789e-05 + sys_39: 6.83543357e-05 + sys_40: -5.73846207e-05 + sys_41: 4.02561391e-06 + sys_42: -1.84128838e-05 + sys_43: -5.09106073e-06 + sys_44: -2.00352213e-05 + sys_45: -1.19294170e-05 + sys_46: -1.82180540e-05 + sys_47: 3.57517870e-05 + sys_48: -2.03449361e-05 + sys_49: 1.44123286e-05 + sys_50: -1.26071981e-06 + sys_51: 1.95316408e-05 + sys_52: 1.74460502e-05 + sys_53: -2.66532473e-05 + sys_54: -1.52561092e-05 +- pol: 1.10500000e-04 lumi: 0.0005 - sys_0: -6.876677407045572e-05 - sys_1: 9.851799333697251e-05 - sys_2: -6.904211471589318e-08 - sys_3: -9.742428294176126e-08 - sys_4: -1.4422783860037013e-07 - sys_5: 9.186318512657023e-05 - sys_6: 6.811224675969542e-07 - sys_7: 7.542538953561055e-07 - sys_8: 0.00011103921106026583 - sys_9: 2.108987485317235e-05 - sys_10: -8.720818824537471e-05 - sys_11: 1.5144433415600866e-06 - sys_12: -7.496562594721876e-06 - sys_13: 4.503370597700229e-05 - sys_14: -7.616777772718111e-05 - sys_15: 0.00010580001309719596 - sys_16: -3.417557679685356e-06 - sys_17: 2.4467389833899467e-06 - sys_18: 3.7951961636799985e-05 - sys_19: 9.889982655184548e-05 - sys_20: -1.5137509894912867e-05 - sys_21: 0.00010102106379032898 - sys_22: 2.9856277745228672e-05 - sys_23: 8.156865978961267e-06 - sys_24: -0.000150177477867689 - sys_25: -9.745061919984808e-05 - sys_26: -7.887885336335221e-06 - sys_27: -0.00010790841366753322 - sys_28: 8.731298048336066e-05 - sys_29: 0.0001912112009104513 - sys_30: 0.0002950759683674972 - sys_31: -0.00014555448994279567 - sys_32: 0.0011365435182670218 - sys_33: 0.0006198018164088397 - sys_34: 0.003918109816553588 - sys_35: 8.145319024973737e-05 - sys_36: 0.0005584919529165075 - sys_37: 5.071291647291463e-05 - sys_38: 3.016786848285902e-05 - sys_39: 0.00017169119768982956 - sys_40: -4.721364115370947e-05 - sys_41: 0.00011901117045189087 - sys_42: 4.376410008344966e-05 - sys_43: 2.365045913339848e-05 - sys_44: -4.084609767400486e-05 - sys_45: -6.240099901439061e-05 - sys_46: -6.171182501182663e-06 - sys_47: 5.8722212364526495e-05 - sys_48: -1.559185468693518e-06 - sys_49: 2.1039685892739865e-05 - sys_50: -1.6784908713605276e-06 - sys_51: 3.4310599096772146e-05 - sys_52: 8.677543356596855e-06 - sys_53: -1.3954676451526897e-05 - sys_54: -6.780253393709694e-06 + sys_0: -6.87667741e-05 + sys_1: 9.85179933e-05 + sys_2: -6.90421147e-08 + sys_3: -9.74242829e-08 + sys_4: -1.44227839e-07 + sys_5: 9.18631851e-05 + sys_6: 6.81122468e-07 + sys_7: 7.54253895e-07 + sys_8: 1.11039211e-04 + sys_9: 2.10898749e-05 + sys_10: -8.72081882e-05 + sys_11: 1.51444334e-06 + sys_12: -7.49656259e-06 + sys_13: 4.50337060e-05 + sys_14: -7.61677777e-05 + sys_15: 1.05800013e-04 + sys_16: -3.41755768e-06 + sys_17: 2.44673898e-06 + sys_18: 3.79519616e-05 + sys_19: 9.88998266e-05 + sys_20: -1.51375099e-05 + sys_21: 1.01021064e-04 + sys_22: 2.98562777e-05 + sys_23: 8.15686598e-06 + sys_24: -1.50177478e-04 + sys_25: -9.74506192e-05 + sys_26: -7.88788534e-06 + sys_27: -1.07908414e-04 + sys_28: 8.73129805e-05 + sys_29: 1.91211201e-04 + sys_30: 2.95075968e-04 + sys_31: -1.45554490e-04 + sys_32: 1.13654352e-03 + sys_33: 6.19801816e-04 + sys_34: 3.91810982e-03 + sys_35: 8.14531902e-05 + sys_36: 5.58491953e-04 + sys_37: 5.07129165e-05 + sys_38: 3.01678685e-05 + sys_39: 1.71691198e-04 + sys_40: -4.72136412e-05 + sys_41: 1.19011170e-04 + sys_42: 4.37641001e-05 + sys_43: 2.36504591e-05 + sys_44: -4.08460977e-05 + sys_45: -6.24009990e-05 + sys_46: -6.17118250e-06 + sys_47: 5.87222124e-05 + sys_48: -1.55918547e-06 + sys_49: 2.10396859e-05 + sys_50: -1.67849087e-06 + sys_51: 3.43105991e-05 + sys_52: 8.67754336e-06 + sys_53: -1.39546765e-05 + sys_54: -6.78025339e-06 - pol: 0.000507 lumi: 0.0005 - sys_0: -7.034102142152537e-05 - sys_1: 0.0001028183194100458 - sys_2: -4.5884499184804874e-08 - sys_3: -1.3002034359166296e-07 - sys_4: -2.32764585598218e-07 - sys_5: 0.00010218528063896663 - sys_6: 7.396117835417637e-07 - sys_7: 5.64037441858069e-07 - sys_8: 0.00012675832188788422 - sys_9: 2.5837143171021676e-05 - sys_10: -9.834813434046201e-05 - sys_11: 8.22424212562371e-06 - sys_12: -1.760911370412403e-05 - sys_13: 6.528931484864781e-05 - sys_14: -0.00010835840180849917 - sys_15: 0.00019809943328746662 - sys_16: 3.381057943783409e-05 - sys_17: -1.5171921027189018e-05 - sys_18: 5.064999579015192e-05 - sys_19: 0.00019422614169077197 - sys_20: 2.035589176154823e-05 - sys_21: 0.00017496565237493523 - sys_22: 8.854308459416342e-05 - sys_23: -0.00011880383764270599 - sys_24: -0.005641509119595464 - sys_25: 0.0025814683968337373 - sys_26: 0.0002786999099596939 - sys_27: 9.547866191137357e-05 - sys_28: 2.1324154983839897e-05 - sys_29: -0.0001589978070388975 - sys_30: -0.00021254827645914115 - sys_31: -8.178888133539586e-05 - sys_32: -8.271948474864291e-05 - sys_33: -1.6740119591305123e-05 - sys_34: -5.295616528795282e-05 - sys_35: -4.746115726043544e-05 - sys_36: 6.48015151873787e-05 - sys_37: -1.7277566548869543e-06 - sys_38: 3.0354992381752028e-05 - sys_39: 4.6376608400381525e-05 - sys_40: -6.624516319099803e-06 - sys_41: 3.125743306375222e-05 - sys_42: 7.044236481038557e-05 - sys_43: 3.077843119541831e-05 - sys_44: 2.837457279893227e-06 - sys_45: -5.984608092844852e-05 - sys_46: 2.2694702636897307e-05 - sys_47: 3.529097948977087e-05 - sys_48: 7.444666731660303e-06 - sys_49: 9.127091914694667e-06 - sys_50: -1.5353302284667998e-06 - sys_51: 2.201165216922385e-05 - sys_52: -8.114787821742963e-07 - sys_53: 2.114353997177055e-06 - sys_54: 4.072363595827309e-07 -- pol: 0.0006435000000000001 + sys_0: -7.03410214e-05 + sys_1: 1.02818319e-04 + sys_2: -4.58844992e-08 + sys_3: -1.30020344e-07 + sys_4: -2.32764586e-07 + sys_5: 1.02185281e-04 + sys_6: 7.39611784e-07 + sys_7: 5.64037442e-07 + sys_8: 1.26758322e-04 + sys_9: 2.58371432e-05 + sys_10: -9.83481343e-05 + sys_11: 8.22424213e-06 + sys_12: -1.76091137e-05 + sys_13: 6.52893148e-05 + sys_14: -1.08358402e-04 + sys_15: 1.98099433e-04 + sys_16: 3.38105794e-05 + sys_17: -1.51719210e-05 + sys_18: 5.06499958e-05 + sys_19: 1.94226142e-04 + sys_20: 2.03558918e-05 + sys_21: 1.74965652e-04 + sys_22: 8.85430846e-05 + sys_23: -1.18803838e-04 + sys_24: -5.64150912e-03 + sys_25: 2.58146840e-03 + sys_26: 2.78699910e-04 + sys_27: 9.54786619e-05 + sys_28: 2.13241550e-05 + sys_29: -1.58997807e-04 + sys_30: -2.12548276e-04 + sys_31: -8.17888813e-05 + sys_32: -8.27194847e-05 + sys_33: -1.67401196e-05 + sys_34: -5.29561653e-05 + sys_35: -4.74611573e-05 + sys_36: 6.48015152e-05 + sys_37: -1.72775665e-06 + sys_38: 3.03549924e-05 + sys_39: 4.63766084e-05 + sys_40: -6.62451632e-06 + sys_41: 3.12574331e-05 + sys_42: 7.04423648e-05 + sys_43: 3.07784312e-05 + sys_44: 2.83745728e-06 + sys_45: -5.98460809e-05 + sys_46: 2.26947026e-05 + sys_47: 3.52909795e-05 + sys_48: 7.44466673e-06 + sys_49: 9.12709191e-06 + sys_50: -1.53533023e-06 + sys_51: 2.20116522e-05 + sys_52: -8.11478782e-07 + sys_53: 2.11435400e-06 + sys_54: 4.07236360e-07 +- pol: 6.43500000e-04 lumi: 0.0005 - sys_0: -0.00015644455446231636 - sys_1: 0.00022899679299133717 - sys_2: 1.737468270907809e-07 - sys_3: -3.1787279826998e-07 - sys_4: -1.4661199093118787e-06 - sys_5: 0.00022508970023871178 - sys_6: -1.765548438200878e-07 - sys_7: -9.352493531382465e-06 - sys_8: 0.0003335365334914582 - sys_9: 7.486667966796291e-05 - sys_10: -0.0002551570567829 - sys_11: 6.161210869997108e-05 - sys_12: -0.00010480357463629507 - sys_13: 0.00020527381453961638 - sys_14: -0.00036238735302634057 - sys_15: 0.0005784026247067035 - sys_16: -9.302719280896688e-06 - sys_17: -0.00022803308647861508 - sys_18: 0.0023438096801774357 - sys_19: 0.008012466368788964 - sys_20: -0.0005325723316376587 - sys_21: -0.00035803593715351173 - sys_22: -0.0001537334587639376 - sys_23: 0.0003448771624320328 - sys_24: 0.00024342093002564747 - sys_25: 9.579740730387158e-05 - sys_26: 0.00013335219466500755 - sys_27: 5.74486777181635e-05 - sys_28: 3.6353096227308764e-05 - sys_29: -0.00010237843103474121 - sys_30: -0.00015310913122770943 - sys_31: -0.00012048154110741753 - sys_32: -6.519539010572091e-05 - sys_33: -1.4931798567148363e-05 - sys_34: -3.2186678741592295e-05 - sys_35: -2.2161878758912375e-05 - sys_36: 4.0581912805607335e-05 - sys_37: -9.591424480646339e-06 - sys_38: 2.4417437246678795e-05 - sys_39: -3.162435518251147e-05 - sys_40: -2.0168812919028504e-06 - sys_41: 2.2980575960025946e-05 - sys_42: 6.410225267269404e-05 - sys_43: 2.5520943828694927e-05 - sys_44: 4.494138831413957e-05 - sys_45: -3.5950797332329555e-05 - sys_46: 2.307434818549954e-05 - sys_47: 1.3867395982305935e-05 - sys_48: 6.1661604669228965e-06 - sys_49: 1.3790228576357533e-06 - sys_50: -7.678776045826031e-07 - sys_51: 6.427784309175381e-06 - sys_52: -2.3992627343193604e-06 - sys_53: 3.0982771177330053e-06 - sys_54: 8.36944380291162e-07 -- pol: 0.0007800000000000001 + sys_0: -1.56444554e-04 + sys_1: 2.28996793e-04 + sys_2: 1.73746827e-07 + sys_3: -3.17872798e-07 + sys_4: -1.46611991e-06 + sys_5: 2.25089700e-04 + sys_6: -1.76554844e-07 + sys_7: -9.35249353e-06 + sys_8: 3.33536533e-04 + sys_9: 7.48666797e-05 + sys_10: -2.55157057e-04 + sys_11: 6.16121087e-05 + sys_12: -1.04803575e-04 + sys_13: 2.05273815e-04 + sys_14: -3.62387353e-04 + sys_15: 5.78402625e-04 + sys_16: -9.30271928e-06 + sys_17: -2.28033086e-04 + sys_18: 2.34380968e-03 + sys_19: 8.01246637e-03 + sys_20: -5.32572332e-04 + sys_21: -3.58035937e-04 + sys_22: -1.53733459e-04 + sys_23: 3.44877162e-04 + sys_24: 2.43420930e-04 + sys_25: 9.57974073e-05 + sys_26: 1.33352195e-04 + sys_27: 5.74486777e-05 + sys_28: 3.63530962e-05 + sys_29: -1.02378431e-04 + sys_30: -1.53109131e-04 + sys_31: -1.20481541e-04 + sys_32: -6.51953901e-05 + sys_33: -1.49317986e-05 + sys_34: -3.21866787e-05 + sys_35: -2.21618788e-05 + sys_36: 4.05819128e-05 + sys_37: -9.59142448e-06 + sys_38: 2.44174372e-05 + sys_39: -3.16243552e-05 + sys_40: -2.01688129e-06 + sys_41: 2.29805760e-05 + sys_42: 6.41022527e-05 + sys_43: 2.55209438e-05 + sys_44: 4.49413883e-05 + sys_45: -3.59507973e-05 + sys_46: 2.30743482e-05 + sys_47: 1.38673960e-05 + sys_48: 6.16616047e-06 + sys_49: 1.37902286e-06 + sys_50: -7.67877605e-07 + sys_51: 6.42778431e-06 + sys_52: -2.39926273e-06 + sys_53: 3.09827712e-06 + sys_54: 8.36944380e-07 +- pol: 7.80000000e-04 lumi: 0.0005 - sys_0: -0.0006406706068774937 - sys_1: 0.0015658855740103594 - sys_2: 3.222603438579745e-05 - sys_3: -5.671908078640392e-05 - sys_4: -5.6592598386523596e-05 - sys_5: 0.03074884018856763 - sys_6: 0.00010500585402405444 - sys_7: 0.00024490317855486765 - sys_8: -0.0006417479048588641 - sys_9: -0.00012789214042075833 - sys_10: 0.0002679040043756427 - sys_11: -0.00011847186053397819 - sys_12: 0.00012178253541324321 - sys_13: -4.288298901820349e-05 - sys_14: 8.755102765106257e-05 - sys_15: -8.811418449756123e-05 - sys_16: 1.6468425265114363e-06 - sys_17: 5.490591192073475e-05 - sys_18: -6.185040661103348e-06 - sys_19: -6.599978587280958e-05 - sys_20: -4.623636920454633e-05 - sys_21: -2.1120824153602745e-05 - sys_22: -1.0186367402491494e-05 - sys_23: 7.85999190012329e-05 - sys_24: 2.7475325866724308e-05 - sys_25: 1.343360824506729e-05 - sys_26: 2.514932070922794e-05 - sys_27: 3.592870260725645e-05 - sys_28: 3.35639729465686e-06 - sys_29: -1.1982531837967048e-05 - sys_30: -6.042402221398781e-06 - sys_31: -2.7187915997512754e-05 - sys_32: -1.3385712776750238e-05 - sys_33: -2.17322434866593e-06 - sys_34: -5.980923451373549e-06 - sys_35: -6.8201600701831215e-06 - sys_36: 1.0308277682797251e-05 - sys_37: -3.68297214506326e-06 - sys_38: 9.191110574427494e-06 - sys_39: -3.231755999956263e-05 - sys_40: -1.2694752633657054e-06 - sys_41: 3.968152635212935e-06 - sys_42: 8.713950847513862e-06 - sys_43: 2.877026372098297e-06 - sys_44: 9.79670128497316e-06 - sys_45: -4.421386004237508e-06 - sys_46: 2.0058023318658502e-06 - sys_47: 6.019257510971038e-07 - sys_48: 9.433696358184004e-07 - sys_49: -2.086812306185243e-07 - sys_50: -1.0853254036276998e-07 - sys_51: 5.930184660589484e-09 - sys_52: -5.505185794149594e-07 - sys_53: 5.246108959389465e-07 - sys_54: 7.008762279488717e-08 + sys_0: -6.40670607e-04 + sys_1: 1.56588557e-03 + sys_2: 3.22260344e-05 + sys_3: -5.67190808e-05 + sys_4: -5.65925984e-05 + sys_5: 3.07488402e-02 + sys_6: 1.05005854e-04 + sys_7: 2.44903179e-04 + sys_8: -6.41747905e-04 + sys_9: -1.27892140e-04 + sys_10: 2.67904004e-04 + sys_11: -1.18471861e-04 + sys_12: 1.21782535e-04 + sys_13: -4.28829890e-05 + sys_14: 8.75510277e-05 + sys_15: -8.81141845e-05 + sys_16: 1.64684253e-06 + sys_17: 5.49059119e-05 + sys_18: -6.18504066e-06 + sys_19: -6.59997859e-05 + sys_20: -4.62363692e-05 + sys_21: -2.11208242e-05 + sys_22: -1.01863674e-05 + sys_23: 7.85999190e-05 + sys_24: 2.74753259e-05 + sys_25: 1.34336082e-05 + sys_26: 2.51493207e-05 + sys_27: 3.59287026e-05 + sys_28: 3.35639729e-06 + sys_29: -1.19825318e-05 + sys_30: -6.04240222e-06 + sys_31: -2.71879160e-05 + sys_32: -1.33857128e-05 + sys_33: -2.17322435e-06 + sys_34: -5.98092345e-06 + sys_35: -6.82016007e-06 + sys_36: 1.03082777e-05 + sys_37: -3.68297215e-06 + sys_38: 9.19111057e-06 + sys_39: -3.23175600e-05 + sys_40: -1.26947526e-06 + sys_41: 3.96815264e-06 + sys_42: 8.71395085e-06 + sys_43: 2.87702637e-06 + sys_44: 9.79670128e-06 + sys_45: -4.42138600e-06 + sys_46: 2.00580233e-06 + sys_47: 6.01925751e-07 + sys_48: 9.43369636e-07 + sys_49: -2.08681231e-07 + sys_50: -1.08532540e-07 + sys_51: 5.93018466e-09 + sys_52: -5.50518579e-07 + sys_53: 5.24610896e-07 + sys_54: 7.00876228e-08 diff --git a/nnpdf_data/nnpdf_data/commondata/STAR-2009_2JET_200GEV/uncertainties_C.yaml b/nnpdf_data/nnpdf_data/commondata/STAR-2009_2JET_200GEV/uncertainties_C.yaml index 55adaec581..32de520b75 100644 --- a/nnpdf_data/nnpdf_data/commondata/STAR-2009_2JET_200GEV/uncertainties_C.yaml +++ b/nnpdf_data/nnpdf_data/commondata/STAR-2009_2JET_200GEV/uncertainties_C.yaml @@ -230,400 +230,400 @@ definitions: bins: - pol: 0.000221 lumi: 0.0005 - sys_0: -9.493291876578634e-05 - sys_1: 0.00013724028386582503 - sys_2: 4.2668429375650193e-05 - sys_3: -5.603849307857661e-05 - sys_4: -1.6306827123015264e-05 - sys_5: 0.00013425040965819266 - sys_6: -1.0445858861834968e-05 - sys_7: -0.00022370106677850764 - sys_8: 0.00016182169120667247 - sys_9: 0.0002452696619204514 - sys_10: -7.917543724434869e-05 - sys_11: 0.00019600608447923118 - sys_12: -0.0003231948429524468 - sys_13: 7.365347948513184e-05 - sys_14: -0.00014433847593545417 - sys_15: 0.00015064160356407103 - sys_16: -6.62637118588291e-06 - sys_17: -0.0001769496805078415 - sys_18: 0.0005263873052195095 - sys_19: 2.4510420915083953e-05 - sys_20: -2.096076280071785e-06 - sys_21: 0.00010695107835044874 - sys_22: 4.975795214328768e-05 - sys_23: -0.00047547735967764696 - sys_24: -0.000266330901671318 - sys_25: -0.0001636565685100275 - sys_26: -0.0004944998637867026 - sys_27: -0.002835038284196695 - sys_28: 0.0006695475329240794 - sys_29: -0.0017278709828212888 - sys_30: 0.0036232325562032745 - sys_31: -0.0005925813209910457 - sys_32: -0.0003086668592252508 - sys_33: 5.1116427730101266e-05 - sys_34: -0.00015393302404085246 - sys_35: -4.8192939633812495e-06 - sys_36: 0.00011566875079663393 - sys_37: -2.8035236820899793e-05 - sys_38: 7.331070587928726e-05 - sys_39: -0.0002633301328545131 - sys_40: -7.927898158787685e-06 - sys_41: 1.925340540308842e-05 - sys_42: 3.725007621778718e-05 - sys_43: 9.298953211318916e-06 - sys_44: 1.7549126900822933e-05 - sys_45: -2.650225533958461e-06 - sys_46: -2.1233096018876003e-07 - sys_47: -5.458716467111442e-06 - sys_48: 3.135748271889683e-06 - sys_49: -2.4726592558900967e-06 - sys_50: -2.763958135903852e-07 - sys_51: -4.03143508020222e-06 - sys_52: -2.9287199483814625e-06 - sys_53: 2.893797804149401e-06 - sys_54: 5.83539862268353e-07 -- pol: 0.0008515 + sys_0: -9.49329188e-05 + sys_1: 1.37240284e-04 + sys_2: 4.26684294e-05 + sys_3: -5.60384931e-05 + sys_4: -1.63068271e-05 + sys_5: 1.34250410e-04 + sys_6: -1.04458589e-05 + sys_7: -2.23701067e-04 + sys_8: 1.61821691e-04 + sys_9: 2.45269662e-04 + sys_10: -7.91754372e-05 + sys_11: 1.96006084e-04 + sys_12: -3.23194843e-04 + sys_13: 7.36534795e-05 + sys_14: -1.44338476e-04 + sys_15: 1.50641604e-04 + sys_16: -6.62637119e-06 + sys_17: -1.76949681e-04 + sys_18: 5.26387305e-04 + sys_19: 2.45104209e-05 + sys_20: -2.09607628e-06 + sys_21: 1.06951078e-04 + sys_22: 4.97579521e-05 + sys_23: -4.75477360e-04 + sys_24: -2.66330902e-04 + sys_25: -1.63656569e-04 + sys_26: -4.94499864e-04 + sys_27: -2.83503828e-03 + sys_28: 6.69547533e-04 + sys_29: -1.72787098e-03 + sys_30: 3.62323256e-03 + sys_31: -5.92581321e-04 + sys_32: -3.08666859e-04 + sys_33: 5.11164277e-05 + sys_34: -1.53933024e-04 + sys_35: -4.81929396e-06 + sys_36: 1.15668751e-04 + sys_37: -2.80352368e-05 + sys_38: 7.33107059e-05 + sys_39: -2.63330133e-04 + sys_40: -7.92789816e-06 + sys_41: 1.92534054e-05 + sys_42: 3.72500762e-05 + sys_43: 9.29895321e-06 + sys_44: 1.75491269e-05 + sys_45: -2.65022553e-06 + sys_46: -2.12330960e-07 + sys_47: -5.45871647e-06 + sys_48: 3.13574827e-06 + sys_49: -2.47265926e-06 + sys_50: -2.76395814e-07 + sys_51: -4.03143508e-06 + sys_52: -2.92871995e-06 + sys_53: 2.89379780e-06 + sys_54: 5.83539862e-07 +- pol: 8.51500000e-04 lumi: 0.0005 - sys_0: -3.072641781267718e-05 - sys_1: 4.8111421809577956e-05 - sys_2: 0.00013859662013706185 - sys_3: -0.00016037228669235783 - sys_4: -5.560253478535892e-05 - sys_5: 4.258414460182608e-05 - sys_6: 0.0002263284483247138 - sys_7: -0.00016181305865518782 - sys_8: 5.392720472921145e-05 - sys_9: 0.00023116804144653478 - sys_10: 1.217625804553578e-05 - sys_11: -0.00015633578691693766 - sys_12: -8.153359986889273e-05 - sys_13: -6.838295668884946e-05 - sys_14: -8.818662557405192e-05 - sys_15: 4.6828528971193826e-05 - sys_16: 1.0924433065256533e-06 - sys_17: -3.603820712574218e-05 - sys_18: 0.00015767084988083392 - sys_19: 3.6825797489504595e-07 - sys_20: -3.085937293348892e-05 - sys_21: 2.4581323379373773e-05 - sys_22: 1.61778504206991e-05 - sys_23: -6.300989106454197e-05 - sys_24: -4.8740765103026755e-05 - sys_25: -3.0351915699359374e-05 - sys_26: -2.2001850254788746e-06 - sys_27: -5.917994323731696e-05 - sys_28: -2.7699773644078097e-06 - sys_29: -5.7351875998983096e-05 - sys_30: -8.732100910405024e-05 - sys_31: 4.872264617600103e-05 - sys_32: 0.0011427286730569016 - sys_33: 0.003968074129155263 - sys_34: -0.0009380536419904073 - sys_35: 0.00013529028277986345 - sys_36: 0.00011690396132941936 - sys_37: -7.587989579232196e-06 - sys_38: 1.01344146327826e-05 - sys_39: -3.907846625713656e-05 - sys_40: 2.008915943173153e-06 - sys_41: -3.0627662807513887e-06 - sys_42: -6.880888278259865e-06 - sys_43: -5.022679587895311e-06 - sys_44: -2.117912311671089e-06 - sys_45: 7.022427772398257e-06 - sys_46: -2.3505111462898028e-06 - sys_47: -4.683978593929536e-06 - sys_48: 6.302917808706064e-07 - sys_49: -1.3319791220352702e-06 - sys_50: -2.479680571886383e-08 - sys_51: -2.60465302946431e-06 - sys_52: -1.0514649421284152e-06 - sys_53: 1.0545369817060096e-06 - sys_54: 2.3978311732892843e-07 -- pol: 0.0001755 + sys_0: -3.07264178e-05 + sys_1: 4.81114218e-05 + sys_2: 1.38596620e-04 + sys_3: -1.60372287e-04 + sys_4: -5.56025348e-05 + sys_5: 4.25841446e-05 + sys_6: 2.26328448e-04 + sys_7: -1.61813059e-04 + sys_8: 5.39272047e-05 + sys_9: 2.31168041e-04 + sys_10: 1.21762580e-05 + sys_11: -1.56335787e-04 + sys_12: -8.15335999e-05 + sys_13: -6.83829567e-05 + sys_14: -8.81866256e-05 + sys_15: 4.68285290e-05 + sys_16: 1.09244331e-06 + sys_17: -3.60382071e-05 + sys_18: 1.57670850e-04 + sys_19: 3.68257975e-07 + sys_20: -3.08593729e-05 + sys_21: 2.45813234e-05 + sys_22: 1.61778504e-05 + sys_23: -6.30098911e-05 + sys_24: -4.87407651e-05 + sys_25: -3.03519157e-05 + sys_26: -2.20018503e-06 + sys_27: -5.91799432e-05 + sys_28: -2.76997736e-06 + sys_29: -5.73518760e-05 + sys_30: -8.73210091e-05 + sys_31: 4.87226462e-05 + sys_32: 1.14272867e-03 + sys_33: 3.96807413e-03 + sys_34: -9.38053642e-04 + sys_35: 1.35290283e-04 + sys_36: 1.16903961e-04 + sys_37: -7.58798958e-06 + sys_38: 1.01344146e-05 + sys_39: -3.90784663e-05 + sys_40: 2.00891594e-06 + sys_41: -3.06276628e-06 + sys_42: -6.88088828e-06 + sys_43: -5.02267959e-06 + sys_44: -2.11791231e-06 + sys_45: 7.02242777e-06 + sys_46: -2.35051115e-06 + sys_47: -4.68397859e-06 + sys_48: 6.30291781e-07 + sys_49: -1.33197912e-06 + sys_50: -2.47968057e-08 + sys_51: -2.60465303e-06 + sys_52: -1.05146494e-06 + sys_53: 1.05453698e-06 + sys_54: 2.39783117e-07 +- pol: 1.75500000e-04 lumi: 0.0005 - sys_0: -5.395028464187758e-05 - sys_1: 7.850916244074643e-05 - sys_2: -5.7996245906245785e-08 - sys_3: -7.373670295676336e-08 - sys_4: -1.0857241842383608e-07 - sys_5: 7.241922335154167e-05 - sys_6: 5.275306095657573e-07 - sys_7: 6.373252576796778e-07 - sys_8: 8.942678456525443e-05 - sys_9: 1.649407107510558e-05 - sys_10: -6.89857985459036e-05 - sys_11: 9.475663575205702e-07 - sys_12: -5.559589963294708e-06 - sys_13: 3.4312603568951674e-05 - sys_14: -5.919756020055182e-05 - sys_15: 8.120597601411704e-05 - sys_16: -6.824213143668038e-08 - sys_17: 3.8335246385070225e-06 - sys_18: 2.9338537212831744e-05 - sys_19: 7.283660248288624e-05 - sys_20: -1.5152837855668593e-05 - sys_21: 5.4416104050067684e-05 - sys_22: 3.430987208015824e-05 - sys_23: 9.84835117156281e-06 - sys_24: -0.00010152866486531814 - sys_25: -5.5500974833691485e-05 - sys_26: 8.761347746991286e-06 - sys_27: -8.984577062026333e-05 - sys_28: 9.110039052029246e-05 - sys_29: 0.00013237028328841533 - sys_30: 0.0001849329087317608 - sys_31: -0.00016344862420825747 - sys_32: 0.0005351526176101838 - sys_33: 0.00013120247600671752 - sys_34: 0.0003440010557465538 - sys_35: -0.002330591683971282 - sys_36: -0.003228019173075793 - sys_37: 0.00021788384009355647 - sys_38: -5.29837280975394e-05 - sys_39: 7.266764483795277e-05 - sys_40: -3.8689422218309735e-05 - sys_41: -1.6827023341015932e-05 - sys_42: -2.209747597402114e-05 - sys_43: -7.455228967014643e-06 - sys_44: -1.416987563366383e-05 - sys_45: -1.2549891057228433e-06 - sys_46: -1.1573178960403804e-05 - sys_47: 1.2961645825956018e-05 - sys_48: -8.583108341430298e-06 - sys_49: -2.6127305057685198e-06 - sys_50: -1.3912417838972878e-06 - sys_51: 2.506817479150544e-06 - sys_52: 5.942783948441394e-06 - sys_53: -9.92734495352662e-06 - sys_54: -1.0390760814784654e-05 + sys_0: -5.39502846e-05 + sys_1: 7.85091624e-05 + sys_2: -5.79962459e-08 + sys_3: -7.37367030e-08 + sys_4: -1.08572418e-07 + sys_5: 7.24192234e-05 + sys_6: 5.27530610e-07 + sys_7: 6.37325258e-07 + sys_8: 8.94267846e-05 + sys_9: 1.64940711e-05 + sys_10: -6.89857985e-05 + sys_11: 9.47566358e-07 + sys_12: -5.55958996e-06 + sys_13: 3.43126036e-05 + sys_14: -5.91975602e-05 + sys_15: 8.12059760e-05 + sys_16: -6.82421314e-08 + sys_17: 3.83352464e-06 + sys_18: 2.93385372e-05 + sys_19: 7.28366025e-05 + sys_20: -1.51528379e-05 + sys_21: 5.44161041e-05 + sys_22: 3.43098721e-05 + sys_23: 9.84835117e-06 + sys_24: -1.01528665e-04 + sys_25: -5.55009748e-05 + sys_26: 8.76134775e-06 + sys_27: -8.98457706e-05 + sys_28: 9.11003905e-05 + sys_29: 1.32370283e-04 + sys_30: 1.84932909e-04 + sys_31: -1.63448624e-04 + sys_32: 5.35152618e-04 + sys_33: 1.31202476e-04 + sys_34: 3.44001056e-04 + sys_35: -2.33059168e-03 + sys_36: -3.22801917e-03 + sys_37: 2.17883840e-04 + sys_38: -5.29837281e-05 + sys_39: 7.26676448e-05 + sys_40: -3.86894222e-05 + sys_41: -1.68270233e-05 + sys_42: -2.20974760e-05 + sys_43: -7.45522897e-06 + sys_44: -1.41698756e-05 + sys_45: -1.25498911e-06 + sys_46: -1.15731790e-05 + sys_47: 1.29616458e-05 + sys_48: -8.58310834e-06 + sys_49: -2.61273051e-06 + sys_50: -1.39124178e-06 + sys_51: 2.50681748e-06 + sys_52: 5.94278395e-06 + sys_53: -9.92734495e-06 + sys_54: -1.03907608e-05 - pol: 0.000429 lumi: 0.0005 - sys_0: -9.500814120454224e-05 - sys_1: 0.00013337280917808208 - sys_2: -9.418465634274295e-08 - sys_3: -1.3402174731154085e-07 - sys_4: -2.0203400166138153e-07 - sys_5: 0.00013199936043199924 - sys_6: 9.629467581805022e-07 - sys_7: 1.1741273002960506e-06 - sys_8: 0.00016497524052058398 - sys_9: 3.042049257987109e-05 - sys_10: -0.00012617175875490614 - sys_11: 2.2809409184395267e-06 - sys_12: -1.186112752771154e-05 - sys_13: 7.560037337111045e-05 - sys_14: -0.0001297557777102173 - sys_15: 0.00018132152129410382 - sys_16: -4.14120702924947e-06 - sys_17: 6.93577769238498e-06 - sys_18: 8.42446092202563e-05 - sys_19: 0.00021777445990506396 - sys_20: -4.2409316595359765e-05 - sys_21: 0.00025710347662074315 - sys_22: 8.88428948427005e-05 - sys_23: 2.877464822735519e-05 - sys_24: -0.002585492713349306 - sys_25: -0.005578296622335688 - sys_26: -2.85200851377119e-05 - sys_27: 0.00023467420527455786 - sys_28: -0.00012972940478551877 - sys_29: -0.00019285117407777933 - sys_30: -0.00020583889587068744 - sys_31: 5.102917990788888e-05 - sys_32: -0.00010119416880399359 - sys_33: -2.9498830314345272e-05 - sys_34: -6.514025596667513e-05 - sys_35: 2.4022414546303166e-05 - sys_36: 2.0480307178745565e-05 - sys_37: -2.2461790325068564e-06 - sys_38: -3.886042334685126e-06 - sys_39: 2.4795783694305362e-05 - sys_40: -1.7456964105810165e-06 - sys_41: 1.393723582061428e-05 - sys_42: 7.630268165508244e-06 - sys_43: 3.6507316557836446e-06 - sys_44: -1.3983916203152918e-05 - sys_45: -1.3493041738743027e-05 - sys_46: -8.75953877563444e-06 - sys_47: 1.0272694999449776e-05 - sys_48: -6.791158058576663e-07 - sys_49: -1.311543797956188e-06 - sys_50: -4.032778521356819e-07 - sys_51: 8.074712728453022e-07 - sys_52: 1.9089495420019774e-06 - sys_53: -5.1169075143747714e-06 - sys_54: -4.394967248290217e-06 -- pol: 0.0013585 + sys_0: -9.50081412e-05 + sys_1: 1.33372809e-04 + sys_2: -9.41846563e-08 + sys_3: -1.34021747e-07 + sys_4: -2.02034002e-07 + sys_5: 1.31999360e-04 + sys_6: 9.62946758e-07 + sys_7: 1.17412730e-06 + sys_8: 1.64975241e-04 + sys_9: 3.04204926e-05 + sys_10: -1.26171759e-04 + sys_11: 2.28094092e-06 + sys_12: -1.18611275e-05 + sys_13: 7.56003734e-05 + sys_14: -1.29755778e-04 + sys_15: 1.81321521e-04 + sys_16: -4.14120703e-06 + sys_17: 6.93577769e-06 + sys_18: 8.42446092e-05 + sys_19: 2.17774460e-04 + sys_20: -4.24093166e-05 + sys_21: 2.57103477e-04 + sys_22: 8.88428948e-05 + sys_23: 2.87746482e-05 + sys_24: -2.58549271e-03 + sys_25: -5.57829662e-03 + sys_26: -2.85200851e-05 + sys_27: 2.34674205e-04 + sys_28: -1.29729405e-04 + sys_29: -1.92851174e-04 + sys_30: -2.05838896e-04 + sys_31: 5.10291799e-05 + sys_32: -1.01194169e-04 + sys_33: -2.94988303e-05 + sys_34: -6.51402560e-05 + sys_35: 2.40224145e-05 + sys_36: 2.04803072e-05 + sys_37: -2.24617903e-06 + sys_38: -3.88604233e-06 + sys_39: 2.47957837e-05 + sys_40: -1.74569641e-06 + sys_41: 1.39372358e-05 + sys_42: 7.63026817e-06 + sys_43: 3.65073166e-06 + sys_44: -1.39839162e-05 + sys_45: -1.34930417e-05 + sys_46: -8.75953878e-06 + sys_47: 1.02726950e-05 + sys_48: -6.79115806e-07 + sys_49: -1.31154380e-06 + sys_50: -4.03277852e-07 + sys_51: 8.07471273e-07 + sys_52: 1.90894954e-06 + sys_53: -5.11690751e-06 + sys_54: -4.39496725e-06 +- pol: 1.35850000e-03 lumi: 0.0005 - sys_0: -0.0001681955299306535 - sys_1: 0.0002466799215604258 - sys_2: -1.510856282761102e-07 - sys_3: -2.6558985790812985e-07 - sys_4: -4.6604076718292607e-07 - sys_5: 0.0002449130176378331 - sys_6: 1.8147282234368388e-06 - sys_7: 2.002468897750861e-06 - sys_8: 0.00036135857756228954 - sys_9: 7.840937246051786e-05 - sys_10: -0.0003146017063629598 - sys_11: 2.1342538900174004e-05 - sys_12: -7.37755478721748e-05 - sys_13: 0.0004862282573727313 - sys_14: -0.0010185594866160318 - sys_15: 0.008052086771584869 - sys_16: -0.006070663134292909 - sys_17: -2.9879350435945138e-06 - sys_18: -0.00013896689861680347 - sys_19: -0.0004280049560891285 - sys_20: 2.6044744860158003e-05 - sys_21: -0.0001298903363943086 - sys_22: -5.861348179233598e-05 - sys_23: 2.3377656774756217e-05 - sys_24: 0.00012518312937655844 - sys_25: 5.075162075151733e-05 - sys_26: 2.864887864114991e-06 - sys_27: 4.394038457062946e-05 - sys_28: -2.7997265865905422e-05 - sys_29: -5.557116186074531e-05 - sys_30: -7.163601748172923e-05 - sys_31: -5.522847405861484e-06 - sys_32: -3.901285098831762e-05 - sys_33: -1.172762935821479e-05 - sys_34: -2.0422395651623936e-05 - sys_35: 7.352332027225731e-06 - sys_36: 1.2222526823489405e-05 - sys_37: -1.950530686282481e-06 - sys_38: -2.554561401085212e-07 - sys_39: 1.5062416145470538e-05 - sys_40: 1.5172920673567082e-06 - sys_41: 1.3342835450867463e-06 - sys_42: 1.7180739902445893e-05 - sys_43: 6.8228223230340295e-06 - sys_44: -8.316341527096566e-06 - sys_45: -1.1098714471921924e-05 - sys_46: -3.28047072201605e-06 - sys_47: 3.617283136530118e-06 - sys_48: 6.820826855856264e-07 - sys_49: -4.796203061535029e-07 - sys_50: -4.6131656347162285e-08 - sys_51: -3.9072792258655145e-07 - sys_52: 2.3719913442793784e-08 - sys_53: -6.690728135667435e-07 - sys_54: -5.987704411921867e-07 + sys_0: -1.68195530e-04 + sys_1: 2.46679922e-04 + sys_2: -1.51085628e-07 + sys_3: -2.65589858e-07 + sys_4: -4.66040767e-07 + sys_5: 2.44913018e-04 + sys_6: 1.81472822e-06 + sys_7: 2.00246890e-06 + sys_8: 3.61358578e-04 + sys_9: 7.84093725e-05 + sys_10: -3.14601706e-04 + sys_11: 2.13425389e-05 + sys_12: -7.37755479e-05 + sys_13: 4.86228257e-04 + sys_14: -1.01855949e-03 + sys_15: 8.05208677e-03 + sys_16: -6.07066313e-03 + sys_17: -2.98793504e-06 + sys_18: -1.38966899e-04 + sys_19: -4.28004956e-04 + sys_20: 2.60447449e-05 + sys_21: -1.29890336e-04 + sys_22: -5.86134818e-05 + sys_23: 2.33776568e-05 + sys_24: 1.25183129e-04 + sys_25: 5.07516208e-05 + sys_26: 2.86488786e-06 + sys_27: 4.39403846e-05 + sys_28: -2.79972659e-05 + sys_29: -5.55711619e-05 + sys_30: -7.16360175e-05 + sys_31: -5.52284741e-06 + sys_32: -3.90128510e-05 + sys_33: -1.17276294e-05 + sys_34: -2.04223957e-05 + sys_35: 7.35233203e-06 + sys_36: 1.22225268e-05 + sys_37: -1.95053069e-06 + sys_38: -2.55456140e-07 + sys_39: 1.50624161e-05 + sys_40: 1.51729207e-06 + sys_41: 1.33428355e-06 + sys_42: 1.71807399e-05 + sys_43: 6.82282232e-06 + sys_44: -8.31634153e-06 + sys_45: -1.10987145e-05 + sys_46: -3.28047072e-06 + sys_47: 3.61728314e-06 + sys_48: 6.82082686e-07 + sys_49: -4.79620306e-07 + sys_50: -4.61316563e-08 + sys_51: -3.90727923e-07 + sys_52: 2.37199134e-08 + sys_53: -6.69072814e-07 + sys_54: -5.98770441e-07 - pol: 0.000715 lumi: 0.0005 - sys_0: -0.0003303127764377617 - sys_1: 0.0005027150173447015 - sys_2: 1.92063140513106e-07 - sys_3: -5.670131178516855e-07 - sys_4: -2.990453945774995e-06 - sys_5: 0.0005823213147965037 - sys_6: -4.444935162071127e-07 - sys_7: -3.0091705593580756e-05 - sys_8: 0.0016317167577876626 - sys_9: 0.0035335041598742447 - sys_10: -0.01599809889318026 - sys_11: -0.00011095679678477047 - sys_12: 0.00011975229729658861 - sys_13: -0.00013294933466489868 - sys_14: 0.0002500347033443251 - sys_15: -0.00026111842227695116 - sys_16: 3.1401063750904468e-06 - sys_17: 7.366846916757277e-06 - sys_18: -3.681342609479008e-05 - sys_19: -0.00014035529519831126 - sys_20: -1.3748492249779508e-06 - sys_21: -5.313500345989163e-05 - sys_22: -2.3393861590728292e-05 - sys_23: 4.26388439002381e-05 - sys_24: 5.7496416287574094e-05 - sys_25: 2.9677327406645697e-05 - sys_26: 4.603175834083862e-06 - sys_27: 2.1343334057655902e-05 - sys_28: -1.225647385188735e-05 - sys_29: -3.240010449594834e-05 - sys_30: -4.58346415965385e-05 - sys_31: -1.9567945939999142e-05 - sys_32: -2.531389098313791e-05 - sys_33: -6.45386530986024e-06 - sys_34: -1.2104813900562938e-05 - sys_35: 9.537130380900384e-06 - sys_36: 5.58829658014589e-06 - sys_37: -1.149725283369117e-06 - sys_38: -1.175298335470555e-06 - sys_39: 5.975268816333162e-06 - sys_40: 1.3166174277115604e-06 - sys_41: 3.188656993478141e-07 - sys_42: 1.160996042755942e-05 - sys_43: 4.1593996271411665e-06 - sys_44: -2.2808686625674884e-06 - sys_45: -1.8956044396094699e-06 - sys_46: -6.463394984536744e-07 - sys_47: -7.669447234469886e-07 - sys_48: 1.6888146737533715e-07 - sys_49: -3.999222202747695e-07 - sys_50: 3.2959446237032695e-08 - sys_51: -7.569157647967791e-07 - sys_52: -2.500108684700541e-07 - sys_53: 3.315078274465136e-07 - sys_54: 1.7192637131549338e-07 + sys_0: -3.30312776e-04 + sys_1: 5.02715017e-04 + sys_2: 1.92063141e-07 + sys_3: -5.67013118e-07 + sys_4: -2.99045395e-06 + sys_5: 5.82321315e-04 + sys_6: -4.44493516e-07 + sys_7: -3.00917056e-05 + sys_8: 1.63171676e-03 + sys_9: 3.53350416e-03 + sys_10: -1.59980989e-02 + sys_11: -1.10956797e-04 + sys_12: 1.19752297e-04 + sys_13: -1.32949335e-04 + sys_14: 2.50034703e-04 + sys_15: -2.61118422e-04 + sys_16: 3.14010638e-06 + sys_17: 7.36684692e-06 + sys_18: -3.68134261e-05 + sys_19: -1.40355295e-04 + sys_20: -1.37484922e-06 + sys_21: -5.31350035e-05 + sys_22: -2.33938616e-05 + sys_23: 4.26388439e-05 + sys_24: 5.74964163e-05 + sys_25: 2.96773274e-05 + sys_26: 4.60317583e-06 + sys_27: 2.13433341e-05 + sys_28: -1.22564739e-05 + sys_29: -3.24001045e-05 + sys_30: -4.58346416e-05 + sys_31: -1.95679459e-05 + sys_32: -2.53138910e-05 + sys_33: -6.45386531e-06 + sys_34: -1.21048139e-05 + sys_35: 9.53713038e-06 + sys_36: 5.58829658e-06 + sys_37: -1.14972528e-06 + sys_38: -1.17529834e-06 + sys_39: 5.97526882e-06 + sys_40: 1.31661743e-06 + sys_41: 3.18865699e-07 + sys_42: 1.16099604e-05 + sys_43: 4.15939963e-06 + sys_44: -2.28086866e-06 + sys_45: -1.89560444e-06 + sys_46: -6.46339498e-07 + sys_47: -7.66944723e-07 + sys_48: 1.68881467e-07 + sys_49: -3.99922220e-07 + sys_50: 3.29594462e-08 + sys_51: -7.56915765e-07 + sys_52: -2.50010868e-07 + sys_53: 3.31507827e-07 + sys_54: 1.71926371e-07 - pol: 0.002015 lumi: 0.0005 - sys_0: -0.09019581935958608 - sys_1: -0.0008075421546924995 - sys_2: -2.070534681322633e-05 - sys_3: 2.3617739272071214e-05 - sys_4: 3.1628431376461965e-06 - sys_5: -0.0002146075210783171 - sys_6: 6.132022268295659e-06 - sys_7: 2.8756943007632404e-05 - sys_8: -9.630046897284554e-05 - sys_9: -1.6206226038367806e-05 - sys_10: 5.0065442994200414e-05 - sys_11: -1.6115376956362948e-05 - sys_12: 2.1412467226707933e-05 - sys_13: -2.7050839276466686e-06 - sys_14: 2.069467686898042e-05 - sys_15: -1.996380298303056e-05 - sys_16: 9.073508073614982e-08 - sys_17: 2.8282164374726847e-06 - sys_18: -1.7053852272410454e-06 - sys_19: -1.3372850311835773e-05 - sys_20: -3.1269070878396943e-06 - sys_21: -5.321230218009187e-06 - sys_22: -2.095354676116955e-06 - sys_23: 1.3701201869507987e-05 - sys_24: 5.881689249181669e-06 - sys_25: 3.45327980755187e-06 - sys_26: -2.817724272461651e-07 - sys_27: 2.121527670356663e-06 - sys_28: -1.2160794814911255e-06 - sys_29: -3.1210190213894163e-06 - sys_30: -4.680123192758483e-06 - sys_31: -3.7243293628963786e-06 - sys_32: -3.1608320406361138e-06 - sys_33: -5.942568995030917e-07 - sys_34: -1.3922357665636199e-06 - sys_35: 1.3149467933968495e-06 - sys_36: 5.533469628176286e-07 - sys_37: -1.171799659020078e-07 - sys_38: -6.281141229081715e-08 - sys_39: 4.105357974935181e-08 - sys_40: 1.2821684120682564e-07 - sys_41: -7.385676250904864e-08 - sys_42: 6.25929418084658e-07 - sys_43: 1.7974643342321065e-07 - sys_44: -6.097475316096333e-08 - sys_45: 2.0875666393894615e-07 - sys_46: -5.8897681210208176e-08 - sys_47: -2.0740468523785513e-07 - sys_48: 1.1489386555474678e-08 - sys_49: -6.18955761929831e-08 - sys_50: 5.489500182381525e-09 - sys_51: -1.1661781533950716e-07 - sys_52: -3.4806557457374356e-08 - sys_53: 4.721529918786495e-08 - sys_54: 2.407156348375864e-08 + sys_0: -9.01958194e-02 + sys_1: -8.07542155e-04 + sys_2: -2.07053468e-05 + sys_3: 2.36177393e-05 + sys_4: 3.16284314e-06 + sys_5: -2.14607521e-04 + sys_6: 6.13202227e-06 + sys_7: 2.87569430e-05 + sys_8: -9.63004690e-05 + sys_9: -1.62062260e-05 + sys_10: 5.00654430e-05 + sys_11: -1.61153770e-05 + sys_12: 2.14124672e-05 + sys_13: -2.70508393e-06 + sys_14: 2.06946769e-05 + sys_15: -1.99638030e-05 + sys_16: 9.07350807e-08 + sys_17: 2.82821644e-06 + sys_18: -1.70538523e-06 + sys_19: -1.33728503e-05 + sys_20: -3.12690709e-06 + sys_21: -5.32123022e-06 + sys_22: -2.09535468e-06 + sys_23: 1.37012019e-05 + sys_24: 5.88168925e-06 + sys_25: 3.45327981e-06 + sys_26: -2.81772427e-07 + sys_27: 2.12152767e-06 + sys_28: -1.21607948e-06 + sys_29: -3.12101902e-06 + sys_30: -4.68012319e-06 + sys_31: -3.72432936e-06 + sys_32: -3.16083204e-06 + sys_33: -5.94256900e-07 + sys_34: -1.39223577e-06 + sys_35: 1.31494679e-06 + sys_36: 5.53346963e-07 + sys_37: -1.17179966e-07 + sys_38: -6.28114123e-08 + sys_39: 4.10535797e-08 + sys_40: 1.28216841e-07 + sys_41: -7.38567625e-08 + sys_42: 6.25929418e-07 + sys_43: 1.79746433e-07 + sys_44: -6.09747532e-08 + sys_45: 2.08756664e-07 + sys_46: -5.88976812e-08 + sys_47: -2.07404685e-07 + sys_48: 1.14893866e-08 + sys_49: -6.18955762e-08 + sys_50: 5.48950018e-09 + sys_51: -1.16617815e-07 + sys_52: -3.48065575e-08 + sys_53: 4.72152992e-08 + sys_54: 2.40715635e-08 diff --git a/nnpdf_data/nnpdf_data/commondata/STAR-2009_2JET_200GEV_MIDRAP/uncertainties_OS.yaml b/nnpdf_data/nnpdf_data/commondata/STAR-2009_2JET_200GEV_MIDRAP/uncertainties_OS.yaml index aab13a6636..fbbdebf4a3 100644 --- a/nnpdf_data/nnpdf_data/commondata/STAR-2009_2JET_200GEV_MIDRAP/uncertainties_OS.yaml +++ b/nnpdf_data/nnpdf_data/commondata/STAR-2009_2JET_200GEV_MIDRAP/uncertainties_OS.yaml @@ -228,402 +228,402 @@ definitions: treatment: ADD type: STAR2009JETunc54 bins: -- pol: 0.0003835 +- pol: 3.83500000e-04 lumi: 0.0005 - sys_0: -2.007069057381171e-09 - sys_1: 2.8611672428620462e-08 - sys_2: 4.289674447263564e-06 - sys_3: 2.8194449826309246e-07 - sys_4: -9.127771282559434e-06 - sys_5: 1.8129696799217203e-08 - sys_6: -7.594486431753425e-06 - sys_7: 3.1006279995653496e-06 - sys_8: 2.808709307257978e-07 - sys_9: 1.7866872519327927e-06 - sys_10: 3.1699066642629825e-07 - sys_11: 7.319951621522258e-06 - sys_12: -9.368502190739362e-06 - sys_13: 2.0625834422421468e-05 - sys_14: 1.6727963772423295e-05 - sys_15: 1.9349825677696426e-06 - sys_16: 1.0760941870098126e-06 - sys_17: -6.5825576891538225e-06 - sys_18: -1.8397504562609504e-05 - sys_19: 7.242341005098025e-06 - sys_20: 2.331456786811331e-05 - sys_21: 5.796552314464641e-06 - sys_22: 1.2677412346490409e-05 - sys_23: 1.6856754808633676e-05 - sys_24: -5.915076633944062e-06 - sys_25: 1.639409553549446e-06 - sys_26: -2.950366437004387e-05 - sys_27: 1.7562473921302588e-05 - sys_28: -8.804804260870792e-05 - sys_29: 3.526730311227508e-05 - sys_30: 4.4233205410535845e-05 - sys_31: -7.703960054809607e-05 - sys_32: 0.00016330396178098776 - sys_33: -3.583984012215044e-05 - sys_34: 3.565376795236101e-05 - sys_35: 0.0002514980735419474 - sys_36: -0.00041972135830692825 - sys_37: -0.003856700421379358 - sys_38: 0.00038334177801923984 - sys_39: 0.00026836657750950194 - sys_40: -0.00021914572680071723 - sys_41: 0.00011906733459582714 - sys_42: -4.1110776351807505e-05 - sys_43: -4.957594709502154e-05 - sys_44: -1.8615101177784423e-05 - sys_45: 2.3230913304591723e-05 - sys_46: -2.628167290912837e-06 - sys_47: 1.545875761737295e-05 - sys_48: -2.7375067733354425e-05 - sys_49: 6.988024116541407e-05 - sys_50: 7.267707936806876e-06 - sys_51: 5.266750364359482e-05 - sys_52: 3.1176479060903605e-05 - sys_53: -2.6115419857040553e-05 - sys_54: 8.322293457786768e-06 + sys_0: -2.00706906e-09 + sys_1: 2.86116724e-08 + sys_2: 4.28967445e-06 + sys_3: 2.81944498e-07 + sys_4: -9.12777128e-06 + sys_5: 1.81296968e-08 + sys_6: -7.59448643e-06 + sys_7: 3.10062800e-06 + sys_8: 2.80870931e-07 + sys_9: 1.78668725e-06 + sys_10: 3.16990666e-07 + sys_11: 7.31995162e-06 + sys_12: -9.36850219e-06 + sys_13: 2.06258344e-05 + sys_14: 1.67279638e-05 + sys_15: 1.93498257e-06 + sys_16: 1.07609419e-06 + sys_17: -6.58255769e-06 + sys_18: -1.83975046e-05 + sys_19: 7.24234101e-06 + sys_20: 2.33145679e-05 + sys_21: 5.79655231e-06 + sys_22: 1.26774123e-05 + sys_23: 1.68567548e-05 + sys_24: -5.91507663e-06 + sys_25: 1.63940955e-06 + sys_26: -2.95036644e-05 + sys_27: 1.75624739e-05 + sys_28: -8.80480426e-05 + sys_29: 3.52673031e-05 + sys_30: 4.42332054e-05 + sys_31: -7.70396005e-05 + sys_32: 1.63303962e-04 + sys_33: -3.58398401e-05 + sys_34: 3.56537680e-05 + sys_35: 2.51498074e-04 + sys_36: -4.19721358e-04 + sys_37: -3.85670042e-03 + sys_38: 3.83341778e-04 + sys_39: 2.68366578e-04 + sys_40: -2.19145727e-04 + sys_41: 1.19067335e-04 + sys_42: -4.11107764e-05 + sys_43: -4.95759471e-05 + sys_44: -1.86151012e-05 + sys_45: 2.32309133e-05 + sys_46: -2.62816729e-06 + sys_47: 1.54587576e-05 + sys_48: -2.73750677e-05 + sys_49: 6.98802412e-05 + sys_50: 7.26770794e-06 + sys_51: 5.26675036e-05 + sys_52: 3.11764791e-05 + sys_53: -2.61154199e-05 + sys_54: 8.32229346e-06 - pol: 0.000624 lumi: 0.0005 - sys_0: -5.284240799333786e-09 - sys_1: 1.1626305235006959e-07 - sys_2: 6.434285946305355e-06 - sys_3: 1.4579093408605375e-06 - sys_4: -9.606350664660594e-06 - sys_5: 1.6213883617354488e-07 - sys_6: -9.130884328595985e-06 - sys_7: 3.7256402328585227e-06 - sys_8: 8.285612232299266e-07 - sys_9: 1.3674957230055456e-06 - sys_10: 1.1772587925602761e-07 - sys_11: 7.788784705056151e-06 - sys_12: -1.0702779924751718e-05 - sys_13: 2.26204242622222e-05 - sys_14: 1.6578150726705635e-05 - sys_15: 3.1026977151674167e-06 - sys_16: 1.7119045587576808e-06 - sys_17: -1.3790813277160685e-05 - sys_18: -1.8511212682176107e-05 - sys_19: 1.1629901177029652e-05 - sys_20: 2.8582204291390413e-05 - sys_21: 2.86080052153602e-05 - sys_22: -2.1714082957376537e-06 - sys_23: 1.9172333541869568e-05 - sys_24: -1.835831273090233e-05 - sys_25: -1.1188240892772766e-05 - sys_26: -4.507226837908609e-05 - sys_27: 2.183820318410955e-05 - sys_28: -9.742131683922546e-05 - sys_29: 3.107043715465447e-05 - sys_30: 3.9644136231335486e-05 - sys_31: -5.159848564311728e-05 - sys_32: 3.552558792645884e-05 - sys_33: 1.1193274256238104e-05 - sys_34: 9.25781523795951e-05 - sys_35: 0.00016476062557997363 - sys_36: -0.00010809337192060538 - sys_37: -0.00015339408073555033 - sys_38: -0.00015765472087719365 - sys_39: -0.00028101022519598886 - sys_40: 0.0004031406671826326 - sys_41: -0.0021853241188163736 - sys_42: -0.0004904637038209187 - sys_43: 0.0022706589511969364 - sys_44: 5.0900226619477446e-05 - sys_45: -0.00011073343864653468 - sys_46: 0.00010445002996953848 - sys_47: 0.000143984477042084 - sys_48: 4.155041770428278e-06 - sys_49: 7.022227734245254e-05 - sys_50: -5.399611177418431e-06 - sys_51: 0.0001260883440769518 - sys_52: 1.5879081689821518e-05 - sys_53: -7.551312923644985e-06 - sys_54: 4.877076924618962e-06 + sys_0: -5.28424080e-09 + sys_1: 1.16263052e-07 + sys_2: 6.43428595e-06 + sys_3: 1.45790934e-06 + sys_4: -9.60635066e-06 + sys_5: 1.62138836e-07 + sys_6: -9.13088433e-06 + sys_7: 3.72564023e-06 + sys_8: 8.28561223e-07 + sys_9: 1.36749572e-06 + sys_10: 1.17725879e-07 + sys_11: 7.78878471e-06 + sys_12: -1.07027799e-05 + sys_13: 2.26204243e-05 + sys_14: 1.65781507e-05 + sys_15: 3.10269772e-06 + sys_16: 1.71190456e-06 + sys_17: -1.37908133e-05 + sys_18: -1.85112127e-05 + sys_19: 1.16299012e-05 + sys_20: 2.85822043e-05 + sys_21: 2.86080052e-05 + sys_22: -2.17140830e-06 + sys_23: 1.91723335e-05 + sys_24: -1.83583127e-05 + sys_25: -1.11882409e-05 + sys_26: -4.50722684e-05 + sys_27: 2.18382032e-05 + sys_28: -9.74213168e-05 + sys_29: 3.10704372e-05 + sys_30: 3.96441362e-05 + sys_31: -5.15984856e-05 + sys_32: 3.55255879e-05 + sys_33: 1.11932743e-05 + sys_34: 9.25781524e-05 + sys_35: 1.64760626e-04 + sys_36: -1.08093372e-04 + sys_37: -1.53394081e-04 + sys_38: -1.57654721e-04 + sys_39: -2.81010225e-04 + sys_40: 4.03140667e-04 + sys_41: -2.18532412e-03 + sys_42: -4.90463704e-04 + sys_43: 2.27065895e-03 + sys_44: 5.09002266e-05 + sys_45: -1.10733439e-04 + sys_46: 1.04450030e-04 + sys_47: 1.43984477e-04 + sys_48: 4.15504177e-06 + sys_49: 7.02222773e-05 + sys_50: -5.39961118e-06 + sys_51: 1.26088344e-04 + sys_52: 1.58790817e-05 + sys_53: -7.55131292e-06 + sys_54: 4.87707692e-06 - pol: 0.000442 lumi: 0.0005 - sys_0: -2.2586118901277178e-08 - sys_1: 3.464646993537248e-07 - sys_2: 4.170734395005033e-06 - sys_3: 2.273673211487993e-07 - sys_4: -8.884633106795049e-06 - sys_5: 9.069892371500597e-07 - sys_6: -7.229313410115936e-06 - sys_7: 2.2238891869110597e-06 - sys_8: 1.7212610540197015e-06 - sys_9: 6.227506360441677e-06 - sys_10: 5.964664749506641e-07 - sys_11: 1.6678107689025874e-05 - sys_12: -1.614153613691297e-05 - sys_13: 3.8403474052087235e-05 - sys_14: 1.6865403962283544e-05 - sys_15: 2.5597773399924936e-05 - sys_16: 1.7912421500759464e-05 - sys_17: -3.6891352930281906e-05 - sys_18: -2.0255175954158316e-05 - sys_19: 2.0888581425726186e-05 - sys_20: 6.337932644561303e-05 - sys_21: 2.89926509139011e-06 - sys_22: -1.8898365600497146e-07 - sys_23: 5.775885850686196e-06 - sys_24: -5.619671562679277e-05 - sys_25: 2.88064070016594e-05 - sys_26: -0.00014991640472052667 - sys_27: -2.114340984866839e-05 - sys_28: -0.00021204080357583446 - sys_29: 4.931822659184348e-05 - sys_30: 5.518732499330571e-05 - sys_31: 9.88837011027189e-05 - sys_32: 3.646569137108443e-05 - sys_33: 4.270319298161878e-06 - sys_34: 0.00011327388260675347 - sys_35: 0.0010139756302363022 - sys_36: -0.0007046010967965646 - sys_37: -0.00025631667369226016 - sys_38: -0.0033168002736032156 - sys_39: -0.0009822974266433168 - sys_40: -0.0002581890726562319 - sys_41: 0.00048149629524202 - sys_42: 0.00026882447548468507 - sys_43: 0.0001019482488269105 - sys_44: 0.00020317794617132065 - sys_45: -0.00021392904168520495 - sys_46: 0.00013768182652745066 - sys_47: 0.0001305189650065176 - sys_48: 3.108504360048268e-05 - sys_49: 2.893832177272401e-05 - sys_50: -5.320887498069449e-06 - sys_51: 7.982870732593972e-05 - sys_52: -5.562301788041207e-06 - sys_53: 1.141776346215646e-05 - sys_54: 3.5307482858847455e-06 -- pol: 0.0009815000000000002 + sys_0: -2.25861189e-08 + sys_1: 3.46464699e-07 + sys_2: 4.17073440e-06 + sys_3: 2.27367321e-07 + sys_4: -8.88463311e-06 + sys_5: 9.06989237e-07 + sys_6: -7.22931341e-06 + sys_7: 2.22388919e-06 + sys_8: 1.72126105e-06 + sys_9: 6.22750636e-06 + sys_10: 5.96466475e-07 + sys_11: 1.66781077e-05 + sys_12: -1.61415361e-05 + sys_13: 3.84034741e-05 + sys_14: 1.68654040e-05 + sys_15: 2.55977734e-05 + sys_16: 1.79124215e-05 + sys_17: -3.68913529e-05 + sys_18: -2.02551760e-05 + sys_19: 2.08885814e-05 + sys_20: 6.33793264e-05 + sys_21: 2.89926509e-06 + sys_22: -1.88983656e-07 + sys_23: 5.77588585e-06 + sys_24: -5.61967156e-05 + sys_25: 2.88064070e-05 + sys_26: -1.49916405e-04 + sys_27: -2.11434098e-05 + sys_28: -2.12040804e-04 + sys_29: 4.93182266e-05 + sys_30: 5.51873250e-05 + sys_31: 9.88837011e-05 + sys_32: 3.64656914e-05 + sys_33: 4.27031930e-06 + sys_34: 1.13273883e-04 + sys_35: 1.01397563e-03 + sys_36: -7.04601097e-04 + sys_37: -2.56316674e-04 + sys_38: -3.31680027e-03 + sys_39: -9.82297427e-04 + sys_40: -2.58189073e-04 + sys_41: 4.81496295e-04 + sys_42: 2.68824475e-04 + sys_43: 1.01948249e-04 + sys_44: 2.03177946e-04 + sys_45: -2.13929042e-04 + sys_46: 1.37681827e-04 + sys_47: 1.30518965e-04 + sys_48: 3.10850436e-05 + sys_49: 2.89383218e-05 + sys_50: -5.32088750e-06 + sys_51: 7.98287073e-05 + sys_52: -5.56230179e-06 + sys_53: 1.14177635e-05 + sys_54: 3.53074829e-06 +- pol: 9.81500000e-04 lumi: 0.0005 - sys_0: -9.367538884145645e-08 - sys_1: 8.9117284343342e-07 - sys_2: 1.2103013722931753e-05 - sys_3: 2.702929289836089e-06 - sys_4: -1.973512534496895e-05 - sys_5: 3.2546923389910085e-06 - sys_6: -1.3875322102808896e-05 - sys_7: -7.556034695797016e-06 - sys_8: 2.4592592583517193e-05 - sys_9: 4.975888581564224e-05 - sys_10: 6.050443840905822e-06 - sys_11: 5.1383160294238785e-05 - sys_12: -6.281747833997564e-05 - sys_13: 8.770156037024289e-05 - sys_14: 3.85255895172948e-05 - sys_15: 2.333952201293493e-06 - sys_16: 2.2968051003328548e-06 - sys_17: -0.00014018899770802228 - sys_18: 2.166845998928802e-05 - sys_19: 6.309983476751469e-05 - sys_20: 0.00019478155622020395 - sys_21: -3.316390095745302e-06 - sys_22: -4.649905646513627e-06 - sys_23: -0.00011955615081118443 - sys_24: -6.89559800838926e-05 - sys_25: 5.0502288068257865e-05 - sys_26: -0.0009594666498420045 - sys_27: -0.0008174796990281748 - sys_28: -0.004617752068900637 - sys_29: 0.0011120996399441338 - sys_30: 0.0003780837126730596 - sys_31: -0.0008331575234705533 - sys_32: -3.168364361317085e-05 - sys_33: 1.3375237599497897e-05 - sys_34: -5.983524129979234e-05 - sys_35: -0.0004649349790021682 - sys_36: 0.0003111819747306886 - sys_37: 1.996566107576078e-05 - sys_38: 0.0002696084033230332 - sys_39: -0.0004202794222831042 - sys_40: -5.25891008618211e-05 - sys_41: 0.000168037112750134 - sys_42: 0.0002126150226470685 - sys_43: 7.119803008087984e-05 - sys_44: 0.00019825604880428465 - sys_45: -0.00015009938119404305 - sys_46: 7.590443592881869e-05 - sys_47: 5.2863251726972856e-05 - sys_48: 2.1881990755796166e-05 - sys_49: 4.566957546324316e-06 - sys_50: -2.992562317644917e-06 - sys_51: 2.1822195447248628e-05 - sys_52: -8.078850282813269e-06 - sys_53: 8.914669144059413e-06 - sys_54: 9.97645665355854e-07 -- pol: 0.0005395 + sys_0: -9.36753888e-08 + sys_1: 8.91172843e-07 + sys_2: 1.21030137e-05 + sys_3: 2.70292929e-06 + sys_4: -1.97351253e-05 + sys_5: 3.25469234e-06 + sys_6: -1.38753221e-05 + sys_7: -7.55603470e-06 + sys_8: 2.45925926e-05 + sys_9: 4.97588858e-05 + sys_10: 6.05044384e-06 + sys_11: 5.13831603e-05 + sys_12: -6.28174783e-05 + sys_13: 8.77015604e-05 + sys_14: 3.85255895e-05 + sys_15: 2.33395220e-06 + sys_16: 2.29680510e-06 + sys_17: -1.40188998e-04 + sys_18: 2.16684600e-05 + sys_19: 6.30998348e-05 + sys_20: 1.94781556e-04 + sys_21: -3.31639010e-06 + sys_22: -4.64990565e-06 + sys_23: -1.19556151e-04 + sys_24: -6.89559801e-05 + sys_25: 5.05022881e-05 + sys_26: -9.59466650e-04 + sys_27: -8.17479699e-04 + sys_28: -4.61775207e-03 + sys_29: 1.11209964e-03 + sys_30: 3.78083713e-04 + sys_31: -8.33157523e-04 + sys_32: -3.16836436e-05 + sys_33: 1.33752376e-05 + sys_34: -5.98352413e-05 + sys_35: -4.64934979e-04 + sys_36: 3.11181975e-04 + sys_37: 1.99656611e-05 + sys_38: 2.69608403e-04 + sys_39: -4.20279422e-04 + sys_40: -5.25891009e-05 + sys_41: 1.68037113e-04 + sys_42: 2.12615023e-04 + sys_43: 7.11980301e-05 + sys_44: 1.98256049e-04 + sys_45: -1.50099381e-04 + sys_46: 7.59044359e-05 + sys_47: 5.28632517e-05 + sys_48: 2.18819908e-05 + sys_49: 4.56695755e-06 + sys_50: -2.99256232e-06 + sys_51: 2.18221954e-05 + sys_52: -8.07885028e-06 + sys_53: 8.91466914e-06 + sys_54: 9.97645665e-07 +- pol: 5.39500000e-04 lumi: 0.0005 - sys_0: -8.738293030024404e-06 - sys_1: 6.602579914035497e-05 - sys_2: 2.981827634347502e-05 - sys_3: -1.6170017742168096e-05 - sys_4: -3.2829887352332164e-05 - sys_5: 4.6254182119924645e-05 - sys_6: 9.999249037299074e-06 - sys_7: -7.284865554789172e-05 - sys_8: -1.5134918578499959e-06 - sys_9: 0.00023507292138491044 - sys_10: 5.14436101957099e-05 - sys_11: 0.00022514374258228304 - sys_12: -0.0002933639413223984 - sys_13: 0.0002945143398955354 - sys_14: 0.0001199965122054402 - sys_15: -1.2476120325056629e-05 - sys_16: 2.2219875205981693e-06 - sys_17: -0.0011403206256308336 - sys_18: 0.0014416867230704223 - sys_19: -5.287225988481247e-05 - sys_20: 0.00735315080289964 - sys_21: 0.00010137154410482915 - sys_22: 5.133899131556196e-05 - sys_23: 0.0014268866270418321 - sys_24: 3.995897251265645e-05 - sys_25: -3.9646292679108765e-05 - sys_26: 0.0006531434484420008 - sys_27: 0.0005562350036035985 - sys_28: 0.0002038921814537988 - sys_29: 4.375325715038657e-05 - sys_30: 0.0002753096941822471 - sys_31: -0.0003552463276119899 - sys_32: -1.885362256558018e-05 - sys_33: 2.1601636416175837e-05 - sys_34: -1.5759901905536423e-05 - sys_35: -0.00013741807534258448 - sys_36: 9.687199883466136e-05 - sys_37: -1.8815432099467513e-05 - sys_38: 0.00011667890959741689 - sys_39: -0.00033624385739658224 - sys_40: -2.1839855665445635e-05 - sys_41: 6.116776760677539e-05 - sys_42: 0.00011651011544321969 - sys_43: 3.7024044611599e-05 - sys_44: 8.455796672605143e-05 - sys_45: -5.09560163238891e-05 - sys_46: 1.8678371240014756e-05 - sys_47: 1.0561422910441485e-05 - sys_48: 8.480435637195893e-06 - sys_49: -5.193246063951591e-07 - sys_50: -1.2226473711689796e-06 - sys_51: 2.7684440324479907e-06 - sys_52: -4.513793959294783e-06 - sys_53: 4.087748499518545e-06 - sys_54: 1.0723921979764977e-07 + sys_0: -8.73829303e-06 + sys_1: 6.60257991e-05 + sys_2: 2.98182763e-05 + sys_3: -1.61700177e-05 + sys_4: -3.28298874e-05 + sys_5: 4.62541821e-05 + sys_6: 9.99924904e-06 + sys_7: -7.28486555e-05 + sys_8: -1.51349186e-06 + sys_9: 2.35072921e-04 + sys_10: 5.14436102e-05 + sys_11: 2.25143743e-04 + sys_12: -2.93363941e-04 + sys_13: 2.94514340e-04 + sys_14: 1.19996512e-04 + sys_15: -1.24761203e-05 + sys_16: 2.22198752e-06 + sys_17: -1.14032063e-03 + sys_18: 1.44168672e-03 + sys_19: -5.28722599e-05 + sys_20: 7.35315080e-03 + sys_21: 1.01371544e-04 + sys_22: 5.13389913e-05 + sys_23: 1.42688663e-03 + sys_24: 3.99589725e-05 + sys_25: -3.96462927e-05 + sys_26: 6.53143448e-04 + sys_27: 5.56235004e-04 + sys_28: 2.03892181e-04 + sys_29: 4.37532572e-05 + sys_30: 2.75309694e-04 + sys_31: -3.55246328e-04 + sys_32: -1.88536226e-05 + sys_33: 2.16016364e-05 + sys_34: -1.57599019e-05 + sys_35: -1.37418075e-04 + sys_36: 9.68719988e-05 + sys_37: -1.88154321e-05 + sys_38: 1.16678910e-04 + sys_39: -3.36243857e-04 + sys_40: -2.18398557e-05 + sys_41: 6.11677676e-05 + sys_42: 1.16510115e-04 + sys_43: 3.70240446e-05 + sys_44: 8.45579667e-05 + sys_45: -5.09560163e-05 + sys_46: 1.86783712e-05 + sys_47: 1.05614229e-05 + sys_48: 8.48043564e-06 + sys_49: -5.19324606e-07 + sys_50: -1.22264737e-06 + sys_51: 2.76844403e-06 + sys_52: -4.51379396e-06 + sys_53: 4.08774850e-06 + sys_54: 1.07239220e-07 - pol: 0.000598 lumi: 0.0005 - sys_0: -9.760510588093472e-07 - sys_1: 3.2982173523019036e-06 - sys_2: 0.0002461648753249557 - sys_3: -0.0001482606656481923 - sys_4: -0.00028721035642905856 - sys_5: 2.5307246977875102e-05 - sys_6: 0.0003329430723853208 - sys_7: -0.0009969834753114448 - sys_8: 1.0859155009486282e-05 - sys_9: 0.0029145841838449996 - sys_10: 0.0006302103891971683 - sys_11: 0.0008385429249778931 - sys_12: -0.005332132548805452 - sys_13: 0.006513836745363074 - sys_14: 0.005372781033024851 - sys_15: 0.00021982626028654027 - sys_16: -9.60803350885145e-06 - sys_17: 0.001990899913060711 - sys_18: -0.002659460858189529 - sys_19: 0.0007641667663534808 - sys_20: -7.733495270017373e-05 - sys_21: 4.158103005843205e-05 - sys_22: 2.20967840790924e-05 - sys_23: 0.0009037313990061125 - sys_24: -2.045248927301445e-05 - sys_25: -1.4541308621168084e-05 - sys_26: 0.00027350533469576584 - sys_27: 0.0004328094545077055 - sys_28: 9.681460494798644e-05 - sys_29: 0.0001554276203008405 - sys_30: 0.00040810455322626797 - sys_31: -0.00024444080808110974 - sys_32: -2.3371907797909463e-05 - sys_33: 5.8339688696584406e-05 - sys_34: -2.8044159776292397e-05 - sys_35: -3.722795409058845e-05 - sys_36: 3.961999914955004e-05 - sys_37: 3.975898056856155e-06 - sys_38: 5.51409209106158e-05 - sys_39: -0.00015982883603593914 - sys_40: -1.280449261976529e-05 - sys_41: 2.8707263772101425e-05 - sys_42: 3.9359486441325155e-05 - sys_43: 7.950298482475454e-06 - sys_44: 2.0125916940924514e-05 - sys_45: -9.68067319800498e-06 - sys_46: 1.7522183443560712e-06 - sys_47: -1.2976108012022412e-06 - sys_48: 3.622327520377898e-06 - sys_49: -1.7846117863937454e-06 - sys_50: -5.712729578136606e-07 - sys_51: -2.074925837105482e-06 - sys_52: -2.8104278658362324e-06 - sys_53: 2.2589700272247006e-06 - sys_54: -1.63313989574311e-07 + sys_0: -9.76051059e-07 + sys_1: 3.29821735e-06 + sys_2: 2.46164875e-04 + sys_3: -1.48260666e-04 + sys_4: -2.87210356e-04 + sys_5: 2.53072470e-05 + sys_6: 3.32943072e-04 + sys_7: -9.96983475e-04 + sys_8: 1.08591550e-05 + sys_9: 2.91458418e-03 + sys_10: 6.30210389e-04 + sys_11: 8.38542925e-04 + sys_12: -5.33213255e-03 + sys_13: 6.51383675e-03 + sys_14: 5.37278103e-03 + sys_15: 2.19826260e-04 + sys_16: -9.60803351e-06 + sys_17: 1.99089991e-03 + sys_18: -2.65946086e-03 + sys_19: 7.64166766e-04 + sys_20: -7.73349527e-05 + sys_21: 4.15810301e-05 + sys_22: 2.20967841e-05 + sys_23: 9.03731399e-04 + sys_24: -2.04524893e-05 + sys_25: -1.45413086e-05 + sys_26: 2.73505335e-04 + sys_27: 4.32809455e-04 + sys_28: 9.68146049e-05 + sys_29: 1.55427620e-04 + sys_30: 4.08104553e-04 + sys_31: -2.44440808e-04 + sys_32: -2.33719078e-05 + sys_33: 5.83396887e-05 + sys_34: -2.80441598e-05 + sys_35: -3.72279541e-05 + sys_36: 3.96199991e-05 + sys_37: 3.97589806e-06 + sys_38: 5.51409209e-05 + sys_39: -1.59828836e-04 + sys_40: -1.28044926e-05 + sys_41: 2.87072638e-05 + sys_42: 3.93594864e-05 + sys_43: 7.95029848e-06 + sys_44: 2.01259169e-05 + sys_45: -9.68067320e-06 + sys_46: 1.75221834e-06 + sys_47: -1.29761080e-06 + sys_48: 3.62232752e-06 + sys_49: -1.78461179e-06 + sys_50: -5.71272958e-07 + sys_51: -2.07492584e-06 + sys_52: -2.81042787e-06 + sys_53: 2.25897003e-06 + sys_54: -1.63313990e-07 - pol: 0.001833 lumi: 0.0005 - sys_0: -3.980543092075599e-06 - sys_1: 1.3970398524005846e-05 - sys_2: 0.006698695525763528 - sys_3: -0.007934126138241137 - sys_4: -0.030445063700132294 - sys_5: -7.702880306315529e-05 - sys_6: -0.010664823694105976 - sys_7: 0.004045701935387928 - sys_8: -2.0809864181007924e-06 - sys_9: -0.0017785203710067741 - sys_10: -0.0003992086403195918 - sys_11: 0.0007148417922962367 - sys_12: 0.0003507484962298627 - sys_13: 0.0002803102500528506 - sys_14: 0.00014604134545651037 - sys_15: 6.137983754673824e-06 - sys_16: -5.34844528153285e-07 - sys_17: 7.909706169156633e-05 - sys_18: -0.00021840547041182312 - sys_19: 6.893762158889163e-05 - sys_20: 2.5984500080679243e-05 - sys_21: 4.335097347110987e-06 - sys_22: 2.1736458644628897e-06 - sys_23: 5.326387141743835e-05 - sys_24: -5.116577685066306e-06 - sys_25: -2.847550462841288e-06 - sys_26: 7.026272363609893e-06 - sys_27: 3.2749443307113157e-06 - sys_28: 1.866191991372346e-05 - sys_29: 3.3765339113064275e-05 - sys_30: 4.092914388632996e-05 - sys_31: -1.3633282072981957e-05 - sys_32: 1.1493360209339038e-06 - sys_33: 2.4010967050597023e-05 - sys_34: -8.18218511486529e-06 - sys_35: -4.814138112930763e-07 - sys_36: 3.6548531854888607e-06 - sys_37: 1.6431846615244383e-06 - sys_38: 3.6461298588735783e-06 - sys_39: -7.848204247780718e-06 - sys_40: -8.640501022415249e-07 - sys_41: 2.112120871211801e-06 - sys_42: 1.3246110468061838e-06 - sys_43: -4.0264779842782594e-07 - sys_44: 1.9977230560798402e-07 - sys_45: 4.404127961441278e-07 - sys_46: -4.842444951624203e-07 - sys_47: -7.365413583613068e-07 - sys_48: 3.7846729672898875e-07 - sys_49: -3.493593304526304e-07 - sys_50: -7.018020041487059e-08 - sys_51: -5.694394543820981e-07 - sys_52: -3.874296694017072e-07 - sys_53: 2.964432619700054e-07 - sys_54: -4.5220944437559427e-08 + sys_0: -3.98054309e-06 + sys_1: 1.39703985e-05 + sys_2: 6.69869553e-03 + sys_3: -7.93412614e-03 + sys_4: -3.04450637e-02 + sys_5: -7.70288031e-05 + sys_6: -1.06648237e-02 + sys_7: 4.04570194e-03 + sys_8: -2.08098642e-06 + sys_9: -1.77852037e-03 + sys_10: -3.99208640e-04 + sys_11: 7.14841792e-04 + sys_12: 3.50748496e-04 + sys_13: 2.80310250e-04 + sys_14: 1.46041345e-04 + sys_15: 6.13798375e-06 + sys_16: -5.34844528e-07 + sys_17: 7.90970617e-05 + sys_18: -2.18405470e-04 + sys_19: 6.89376216e-05 + sys_20: 2.59845001e-05 + sys_21: 4.33509735e-06 + sys_22: 2.17364586e-06 + sys_23: 5.32638714e-05 + sys_24: -5.11657769e-06 + sys_25: -2.84755046e-06 + sys_26: 7.02627236e-06 + sys_27: 3.27494433e-06 + sys_28: 1.86619199e-05 + sys_29: 3.37653391e-05 + sys_30: 4.09291439e-05 + sys_31: -1.36332821e-05 + sys_32: 1.14933602e-06 + sys_33: 2.40109671e-05 + sys_34: -8.18218511e-06 + sys_35: -4.81413811e-07 + sys_36: 3.65485319e-06 + sys_37: 1.64318466e-06 + sys_38: 3.64612986e-06 + sys_39: -7.84820425e-06 + sys_40: -8.64050102e-07 + sys_41: 2.11212087e-06 + sys_42: 1.32461105e-06 + sys_43: -4.02647798e-07 + sys_44: 1.99772306e-07 + sys_45: 4.40412796e-07 + sys_46: -4.84244495e-07 + sys_47: -7.36541358e-07 + sys_48: 3.78467297e-07 + sys_49: -3.49359330e-07 + sys_50: -7.01802004e-08 + sys_51: -5.69439454e-07 + sys_52: -3.87429669e-07 + sys_53: 2.96443262e-07 + sys_54: -4.52209444e-08 diff --git a/nnpdf_data/nnpdf_data/commondata/STAR-2009_2JET_200GEV_MIDRAP/uncertainties_SS.yaml b/nnpdf_data/nnpdf_data/commondata/STAR-2009_2JET_200GEV_MIDRAP/uncertainties_SS.yaml index c751450779..bffb993251 100644 --- a/nnpdf_data/nnpdf_data/commondata/STAR-2009_2JET_200GEV_MIDRAP/uncertainties_SS.yaml +++ b/nnpdf_data/nnpdf_data/commondata/STAR-2009_2JET_200GEV_MIDRAP/uncertainties_SS.yaml @@ -228,402 +228,402 @@ definitions: treatment: ADD type: STAR2009JETunc54 bins: -- pol: 0.0004355 +- pol: 4.35500000e-04 lumi: 0.0005 - sys_0: -1.6580568700697101e-09 - sys_1: 3.1408272670026976e-08 - sys_2: 3.041845795798363e-06 - sys_3: 1.2889224811745212e-06 - sys_4: -2.1920203587299335e-06 - sys_5: 2.996043296666902e-08 - sys_6: -3.0293702301110028e-06 - sys_7: 1.2182611609621066e-06 - sys_8: 3.622899087343914e-07 - sys_9: 7.462720592064682e-08 - sys_10: -4.396534319295198e-08 - sys_11: 1.7490608842972803e-06 - sys_12: -4.41207483993251e-06 - sys_13: 7.608695857573961e-06 - sys_14: 5.8257352351828515e-06 - sys_15: 1.6816151122775612e-06 - sys_16: 1.1905123113722923e-06 - sys_17: -1.8158735573723986e-06 - sys_18: -5.148915516116998e-06 - sys_19: 3.273445683117427e-06 - sys_20: 8.182862372637793e-06 - sys_21: 4.787016215387714e-06 - sys_22: 9.94899383940982e-06 - sys_23: 4.754420081651711e-06 - sys_24: -6.0217894722282335e-06 - sys_25: 1.3949662967510566e-06 - sys_26: -1.4430955466259189e-05 - sys_27: 5.599405127549771e-06 - sys_28: -2.7649396292399235e-05 - sys_29: 1.0659112625499226e-05 - sys_30: 1.25356556061858e-05 - sys_31: -1.9661612783350026e-05 - sys_32: 7.660137858855269e-05 - sys_33: -1.7584596780051523e-05 - sys_34: 2.2881629333914253e-05 - sys_35: 4.9773901299321844e-05 - sys_36: -9.545061238828024e-05 - sys_37: -0.00020299134732535275 - sys_38: -8.255796093878024e-05 - sys_39: -0.00018934111834394704 - sys_40: 0.0033477500546966886 - sys_41: 0.0006051123535269836 - sys_42: -9.131715486244866e-05 - sys_43: -8.076759456482747e-05 - sys_44: -3.967192013547836e-05 - sys_45: -1.6694639790390727e-05 - sys_46: -5.452111055887961e-06 - sys_47: 8.192141576073089e-05 - sys_48: -3.065311394351454e-05 - sys_49: 8.125942823378571e-05 - sys_50: 3.034791275632412e-06 - sys_51: 9.133221855813574e-05 - sys_52: 3.730071017722663e-05 - sys_53: -3.756468461271002e-05 - sys_54: -3.0777332777346497e-07 + sys_0: -1.65805687e-09 + sys_1: 3.14082727e-08 + sys_2: 3.04184580e-06 + sys_3: 1.28892248e-06 + sys_4: -2.19202036e-06 + sys_5: 2.99604330e-08 + sys_6: -3.02937023e-06 + sys_7: 1.21826116e-06 + sys_8: 3.62289909e-07 + sys_9: 7.46272059e-08 + sys_10: -4.39653432e-08 + sys_11: 1.74906088e-06 + sys_12: -4.41207484e-06 + sys_13: 7.60869586e-06 + sys_14: 5.82573524e-06 + sys_15: 1.68161511e-06 + sys_16: 1.19051231e-06 + sys_17: -1.81587356e-06 + sys_18: -5.14891552e-06 + sys_19: 3.27344568e-06 + sys_20: 8.18286237e-06 + sys_21: 4.78701622e-06 + sys_22: 9.94899384e-06 + sys_23: 4.75442008e-06 + sys_24: -6.02178947e-06 + sys_25: 1.39496630e-06 + sys_26: -1.44309555e-05 + sys_27: 5.59940513e-06 + sys_28: -2.76493963e-05 + sys_29: 1.06591126e-05 + sys_30: 1.25356556e-05 + sys_31: -1.96616128e-05 + sys_32: 7.66013786e-05 + sys_33: -1.75845968e-05 + sys_34: 2.28816293e-05 + sys_35: 4.97739013e-05 + sys_36: -9.54506124e-05 + sys_37: -2.02991347e-04 + sys_38: -8.25579609e-05 + sys_39: -1.89341118e-04 + sys_40: 3.34775005e-03 + sys_41: 6.05112354e-04 + sys_42: -9.13171549e-05 + sys_43: -8.07675946e-05 + sys_44: -3.96719201e-05 + sys_45: -1.66946398e-05 + sys_46: -5.45211106e-06 + sys_47: 8.19214158e-05 + sys_48: -3.06531139e-05 + sys_49: 8.12594282e-05 + sys_50: 3.03479128e-06 + sys_51: 9.13322186e-05 + sys_52: 3.73007102e-05 + sys_53: -3.75646846e-05 + sys_54: -3.07773328e-07 - pol: 0.000572 lumi: 0.0005 - sys_0: -8.293881942981595e-09 - sys_1: 1.5750662937964886e-07 - sys_2: 3.2122473951543667e-06 - sys_3: 7.126612500027102e-07 - sys_4: -4.800875992009747e-06 - sys_5: 2.7551233322497e-07 - sys_6: -4.493621540601342e-06 - sys_7: 1.6149106579791428e-06 - sys_8: 1.0251354899901625e-06 - sys_9: 1.921135162356045e-06 - sys_10: 1.2219966859591506e-07 - sys_11: 5.816965990306672e-06 - sys_12: -5.717732609700575e-06 - sys_13: 1.4468511874718806e-05 - sys_14: 8.344732271301762e-06 - sys_15: 3.139430540385609e-06 - sys_16: 1.738122014959058e-06 - sys_17: -1.2493639906319077e-05 - sys_18: -1.154857698059152e-05 - sys_19: 1.1963450974626168e-05 - sys_20: 2.3109897496549588e-05 - sys_21: 2.7887152355422575e-05 - sys_22: -2.632092298104837e-06 - sys_23: 1.0625464275110342e-05 - sys_24: -2.1593721604515485e-05 - sys_25: -9.494656487902106e-06 - sys_26: -5.014406735739763e-05 - sys_27: 2.2673911698772298e-05 - sys_28: -8.495100229926476e-05 - sys_29: 2.4116615168050774e-05 - sys_30: 4.330099787564584e-05 - sys_31: 1.819560262535776e-06 - sys_32: 3.681743663987164e-05 - sys_33: 8.583556178766408e-06 - sys_34: 9.942180425826709e-05 - sys_35: 0.00018853530344046615 - sys_36: -0.00012018777748401934 - sys_37: -8.951922007924695e-05 - sys_38: -0.00015404810165720484 - sys_39: -0.00020457566939625858 - sys_40: 0.0003487572835902785 - sys_41: -0.002230474303850641 - sys_42: 0.0009863174683658505 - sys_43: -0.0020342677899925507 - sys_44: 9.4943783555036e-05 - sys_45: -0.00023917487394886674 - sys_46: 0.00012577107681739706 - sys_47: 0.0001714874567893522 - sys_48: 2.1322014968343812e-05 - sys_49: 6.406641505355171e-05 - sys_50: -5.917488048509352e-06 - sys_51: 0.0001253245840467803 - sys_52: 8.042852039964525e-06 - sys_53: 1.0316853491926672e-07 - sys_54: 5.375286095791396e-06 + sys_0: -8.29388194e-09 + sys_1: 1.57506629e-07 + sys_2: 3.21224740e-06 + sys_3: 7.12661250e-07 + sys_4: -4.80087599e-06 + sys_5: 2.75512333e-07 + sys_6: -4.49362154e-06 + sys_7: 1.61491066e-06 + sys_8: 1.02513549e-06 + sys_9: 1.92113516e-06 + sys_10: 1.22199669e-07 + sys_11: 5.81696599e-06 + sys_12: -5.71773261e-06 + sys_13: 1.44685119e-05 + sys_14: 8.34473227e-06 + sys_15: 3.13943054e-06 + sys_16: 1.73812201e-06 + sys_17: -1.24936399e-05 + sys_18: -1.15485770e-05 + sys_19: 1.19634510e-05 + sys_20: 2.31098975e-05 + sys_21: 2.78871524e-05 + sys_22: -2.63209230e-06 + sys_23: 1.06254643e-05 + sys_24: -2.15937216e-05 + sys_25: -9.49465649e-06 + sys_26: -5.01440674e-05 + sys_27: 2.26739117e-05 + sys_28: -8.49510023e-05 + sys_29: 2.41166152e-05 + sys_30: 4.33009979e-05 + sys_31: 1.81956026e-06 + sys_32: 3.68174366e-05 + sys_33: 8.58355618e-06 + sys_34: 9.94218043e-05 + sys_35: 1.88535303e-04 + sys_36: -1.20187777e-04 + sys_37: -8.95192201e-05 + sys_38: -1.54048102e-04 + sys_39: -2.04575669e-04 + sys_40: 3.48757284e-04 + sys_41: -2.23047430e-03 + sys_42: 9.86317468e-04 + sys_43: -2.03426779e-03 + sys_44: 9.49437836e-05 + sys_45: -2.39174874e-04 + sys_46: 1.25771077e-04 + sys_47: 1.71487457e-04 + sys_48: 2.13220150e-05 + sys_49: 6.40664151e-05 + sys_50: -5.91748805e-06 + sys_51: 1.25324584e-04 + sys_52: 8.04285204e-06 + sys_53: 1.03168535e-07 + sys_54: 5.37528610e-06 - pol: 0.001053 lumi: 0.0005 - sys_0: -3.865289440534974e-08 - sys_1: 4.341057308951254e-07 - sys_2: 3.792729345971024e-06 - sys_3: 1.4601883654654487e-06 - sys_4: -3.2463705417614095e-06 - sys_5: 1.3481694635051145e-06 - sys_6: -4.584460138189326e-06 - sys_7: -3.5440095469689803e-06 - sys_8: 1.974512591822024e-06 - sys_9: 1.0357757245389536e-05 - sys_10: 1.1442017832446915e-06 - sys_11: 1.9659852244729133e-05 - sys_12: -2.154479423475521e-05 - sys_13: 2.8107119348341926e-05 - sys_14: 5.1537905634620805e-06 - sys_15: 2.6613953996413073e-05 - sys_16: 1.8885407369401588e-05 - sys_17: -4.3309529968095126e-05 - sys_18: -2.2454406748628272e-06 - sys_19: 2.1433847460667894e-05 - sys_20: 6.587500016257292e-05 - sys_21: 8.712788235375236e-07 - sys_22: -1.5084968476865572e-06 - sys_23: -4.739382257638949e-05 - sys_24: -5.844501236513604e-05 - sys_25: 3.170716394676703e-05 - sys_26: -0.00019136042775149832 - sys_27: -5.316714236323003e-05 - sys_28: -0.00023700409412191656 - sys_29: 3.670236526973466e-05 - sys_30: 4.3053566414270456e-05 - sys_31: 0.000395866476405573 - sys_32: 6.666785861562653e-05 - sys_33: -1.791843202072775e-05 - sys_34: 0.0002114492860686234 - sys_35: 0.0027788703248082876 - sys_36: -0.0020025892410719774 - sys_37: 0.0005125185988301055 - sys_38: 0.0015603644212928303 - sys_39: -0.0006427853382654707 - sys_40: -0.0001146086842964378 - sys_41: 0.0003302050149460713 - sys_42: 0.0003470972304376815 - sys_43: 0.00015681992297031253 - sys_44: 0.0002197091914357952 - sys_45: -0.0002261003761597628 - sys_46: 0.0001401707814783304 - sys_47: 0.00011420891959342387 - sys_48: 3.2874473232774206e-05 - sys_49: 2.2627240620960828e-05 - sys_50: -5.357705939423041e-06 - sys_51: 6.64199640201388e-05 - sys_52: -8.20656284176338e-06 - sys_53: 1.467184389810303e-05 - sys_54: 5.397479155527593e-06 + sys_0: -3.86528944e-08 + sys_1: 4.34105731e-07 + sys_2: 3.79272935e-06 + sys_3: 1.46018837e-06 + sys_4: -3.24637054e-06 + sys_5: 1.34816946e-06 + sys_6: -4.58446014e-06 + sys_7: -3.54400955e-06 + sys_8: 1.97451259e-06 + sys_9: 1.03577572e-05 + sys_10: 1.14420178e-06 + sys_11: 1.96598522e-05 + sys_12: -2.15447942e-05 + sys_13: 2.81071193e-05 + sys_14: 5.15379056e-06 + sys_15: 2.66139540e-05 + sys_16: 1.88854074e-05 + sys_17: -4.33095300e-05 + sys_18: -2.24544067e-06 + sys_19: 2.14338475e-05 + sys_20: 6.58750002e-05 + sys_21: 8.71278824e-07 + sys_22: -1.50849685e-06 + sys_23: -4.73938226e-05 + sys_24: -5.84450124e-05 + sys_25: 3.17071639e-05 + sys_26: -1.91360428e-04 + sys_27: -5.31671424e-05 + sys_28: -2.37004094e-04 + sys_29: 3.67023653e-05 + sys_30: 4.30535664e-05 + sys_31: 3.95866476e-04 + sys_32: 6.66678586e-05 + sys_33: -1.79184320e-05 + sys_34: 2.11449286e-04 + sys_35: 2.77887032e-03 + sys_36: -2.00258924e-03 + sys_37: 5.12518599e-04 + sys_38: 1.56036442e-03 + sys_39: -6.42785338e-04 + sys_40: -1.14608684e-04 + sys_41: 3.30205015e-04 + sys_42: 3.47097230e-04 + sys_43: 1.56819923e-04 + sys_44: 2.19709191e-04 + sys_45: -2.26100376e-04 + sys_46: 1.40170781e-04 + sys_47: 1.14208920e-04 + sys_48: 3.28744732e-05 + sys_49: 2.26272406e-05 + sys_50: -5.35770594e-06 + sys_51: 6.64199640e-05 + sys_52: -8.20656284e-06 + sys_53: 1.46718439e-05 + sys_54: 5.39747916e-06 - pol: 0.000156 lumi: 0.0005 - sys_0: -1.405235913055423e-07 - sys_1: 1.1094948413398535e-06 - sys_2: 1.1310647417757425e-05 - sys_3: -1.977297494467714e-06 - sys_4: -1.0895389162513192e-05 - sys_5: 4.564382791705543e-06 - sys_6: -1.0758301435197834e-06 - sys_7: -2.7332506963064226e-05 - sys_8: 2.8122781570354513e-05 - sys_9: 7.306218781094857e-05 - sys_10: 9.847956404686636e-06 - sys_11: 6.706803276735116e-05 - sys_12: -9.156598308801091e-05 - sys_13: 7.891925387693812e-05 - sys_14: 1.9516142695781028e-05 - sys_15: 3.816488662943174e-07 - sys_16: 2.1943327104664146e-06 - sys_17: -0.00020045890217959344 - sys_18: 7.910491933922909e-05 - sys_19: 7.874164863772076e-05 - sys_20: 0.00027864739033501407 - sys_21: -1.2138110824381882e-05 - sys_22: -1.0723283203678277e-05 - sys_23: -0.0004339759222401887 - sys_24: -0.0001385745457826346 - sys_25: 0.00012870628255778424 - sys_26: -0.005216209674677443 - sys_27: 0.0017081774289940288 - sys_28: 0.00099796287773583 - sys_29: -4.3681480468513626e-05 - sys_30: 0.00016680257866688174 - sys_31: -0.000619086351983336 - sys_32: -2.199023878821137e-05 - sys_33: 1.913893243941396e-05 - sys_34: -3.1187326662372646e-05 - sys_35: -0.00028855314432241696 - sys_36: 0.0001935279233832351 - sys_37: -3.4316501830728754e-05 - sys_38: 0.00018683444290036805 - sys_39: -0.00041668357501606183 - sys_40: -3.292640815071731e-05 - sys_41: 0.00011034970734723269 - sys_42: 0.0001971404725005824 - sys_43: 7.389329024242267e-05 - sys_44: 0.00018387030549468262 - sys_45: -0.0001159083229662065 - sys_46: 6.165695072644609e-05 - sys_47: 3.725170934247471e-05 - sys_48: 1.7888089072458948e-05 - sys_49: 3.1955624056244507e-06 - sys_50: -2.4310926272423644e-06 - sys_51: 1.5520516259929806e-05 - sys_52: -7.33633087628063e-06 - sys_53: 7.992699050856495e-06 - sys_54: 1.1562017455943079e-06 -- pol: 0.0008449999999999999 + sys_0: -1.40523591e-07 + sys_1: 1.10949484e-06 + sys_2: 1.13106474e-05 + sys_3: -1.97729749e-06 + sys_4: -1.08953892e-05 + sys_5: 4.56438279e-06 + sys_6: -1.07583014e-06 + sys_7: -2.73325070e-05 + sys_8: 2.81227816e-05 + sys_9: 7.30621878e-05 + sys_10: 9.84795640e-06 + sys_11: 6.70680328e-05 + sys_12: -9.15659831e-05 + sys_13: 7.89192539e-05 + sys_14: 1.95161427e-05 + sys_15: 3.81648866e-07 + sys_16: 2.19433271e-06 + sys_17: -2.00458902e-04 + sys_18: 7.91049193e-05 + sys_19: 7.87416486e-05 + sys_20: 2.78647390e-04 + sys_21: -1.21381108e-05 + sys_22: -1.07232832e-05 + sys_23: -4.33975922e-04 + sys_24: -1.38574546e-04 + sys_25: 1.28706283e-04 + sys_26: -5.21620967e-03 + sys_27: 1.70817743e-03 + sys_28: 9.97962878e-04 + sys_29: -4.36814805e-05 + sys_30: 1.66802579e-04 + sys_31: -6.19086352e-04 + sys_32: -2.19902388e-05 + sys_33: 1.91389324e-05 + sys_34: -3.11873267e-05 + sys_35: -2.88553144e-04 + sys_36: 1.93527923e-04 + sys_37: -3.43165018e-05 + sys_38: 1.86834443e-04 + sys_39: -4.16683575e-04 + sys_40: -3.29264082e-05 + sys_41: 1.10349707e-04 + sys_42: 1.97140473e-04 + sys_43: 7.38932902e-05 + sys_44: 1.83870305e-04 + sys_45: -1.15908323e-04 + sys_46: 6.16569507e-05 + sys_47: 3.72517093e-05 + sys_48: 1.78880891e-05 + sys_49: 3.19556241e-06 + sys_50: -2.43109263e-06 + sys_51: 1.55205163e-05 + sys_52: -7.33633088e-06 + sys_53: 7.99269905e-06 + sys_54: 1.15620175e-06 +- pol: 8.45000000e-04 lumi: 0.0005 - sys_0: -1.0133915098325691e-05 - sys_1: 6.773051835709786e-05 - sys_2: 4.323295727813856e-05 - sys_3: -2.4182845029569186e-05 - sys_4: -4.1498214807209226e-05 - sys_5: 5.725238191015757e-05 - sys_6: 2.422993966483933e-05 - sys_7: -0.0001501541609170575 - sys_8: -1.7690079835576604e-06 - sys_9: 0.00038219040525996456 - sys_10: 8.230420676696067e-05 - sys_11: 0.0004213000928882534 - sys_12: -0.000654214532855022 - sys_13: 0.0004292848982143377 - sys_14: 0.00018774966132865793 - sys_15: -3.613660198338829e-05 - sys_16: 3.5862881559985474e-06 - sys_17: -0.008467257224377996 - sys_18: -0.0024046171693680317 - sys_19: 0.0003200981093863899 - sys_20: -0.0011321680199981958 - sys_21: 3.570400915399213e-05 - sys_22: 2.0808257524200106e-05 - sys_23: 0.0009249227258425815 - sys_24: 9.469014317078536e-06 - sys_25: -2.0043300823377155e-05 - sys_26: 0.00043254056615300965 - sys_27: 0.00047652733550902207 - sys_28: 0.00012942137104839815 - sys_29: 6.18897796660081e-05 - sys_30: 0.0002936665917891888 - sys_31: -0.0002877677681897957 - sys_32: -1.7958276816536005e-05 - sys_33: 2.340926952716361e-05 - sys_34: -1.3511535255922879e-05 - sys_35: -9.707241303853776e-05 - sys_36: 7.089722882860405e-05 - sys_37: -1.8287904857561034e-05 - sys_38: 9.144038297167632e-05 - sys_39: -0.00029226179693320214 - sys_40: -1.723778417375497e-05 - sys_41: 4.3952159943920184e-05 - sys_42: 7.645249014529045e-05 - sys_43: 2.2923420667782577e-05 - sys_44: 6.111094066483874e-05 - sys_45: -3.1209786059263144e-05 - sys_46: 1.1651931782875445e-05 - sys_47: 5.57771214020206e-06 - sys_48: 6.23808469145843e-06 - sys_49: -7.686132252713671e-07 - sys_50: -9.202797123789913e-07 - sys_51: 9.716905474337083e-07 - sys_52: -3.600739873218933e-06 - sys_53: 3.1234585149755832e-06 - sys_54: -1.2656808237617336e-08 -- pol: 0.0021839999999999997 + sys_0: -1.01339151e-05 + sys_1: 6.77305184e-05 + sys_2: 4.32329573e-05 + sys_3: -2.41828450e-05 + sys_4: -4.14982148e-05 + sys_5: 5.72523819e-05 + sys_6: 2.42299397e-05 + sys_7: -1.50154161e-04 + sys_8: -1.76900798e-06 + sys_9: 3.82190405e-04 + sys_10: 8.23042068e-05 + sys_11: 4.21300093e-04 + sys_12: -6.54214533e-04 + sys_13: 4.29284898e-04 + sys_14: 1.87749661e-04 + sys_15: -3.61366020e-05 + sys_16: 3.58628816e-06 + sys_17: -8.46725722e-03 + sys_18: -2.40461717e-03 + sys_19: 3.20098109e-04 + sys_20: -1.13216802e-03 + sys_21: 3.57040092e-05 + sys_22: 2.08082575e-05 + sys_23: 9.24922726e-04 + sys_24: 9.46901432e-06 + sys_25: -2.00433008e-05 + sys_26: 4.32540566e-04 + sys_27: 4.76527336e-04 + sys_28: 1.29421371e-04 + sys_29: 6.18897797e-05 + sys_30: 2.93666592e-04 + sys_31: -2.87767768e-04 + sys_32: -1.79582768e-05 + sys_33: 2.34092695e-05 + sys_34: -1.35115353e-05 + sys_35: -9.70724130e-05 + sys_36: 7.08972288e-05 + sys_37: -1.82879049e-05 + sys_38: 9.14403830e-05 + sys_39: -2.92261797e-04 + sys_40: -1.72377842e-05 + sys_41: 4.39521599e-05 + sys_42: 7.64524901e-05 + sys_43: 2.29234207e-05 + sys_44: 6.11109407e-05 + sys_45: -3.12097861e-05 + sys_46: 1.16519318e-05 + sys_47: 5.57771214e-06 + sys_48: 6.23808469e-06 + sys_49: -7.68613225e-07 + sys_50: -9.20279712e-07 + sys_51: 9.71690547e-07 + sys_52: -3.60073987e-06 + sys_53: 3.12345851e-06 + sys_54: -1.26568082e-08 +- pol: 2.18400000e-03 lumi: 0.0005 - sys_0: -1.2412081850304045e-06 - sys_1: 3.801695023493106e-06 - sys_2: 0.0004085957453888504 - sys_3: -0.0003157374416600702 - sys_4: -0.00041571936300042605 - sys_5: 3.207640231245818e-05 - sys_6: 0.0006387832987423138 - sys_7: -0.0019949241316641535 - sys_8: 1.4163331259854938e-05 - sys_9: 0.006626542221657941 - sys_10: 0.0014605997696297492 - sys_11: 0.009053341173744484 - sys_12: 0.006717394910581492 - sys_13: -0.00013128050960880714 - sys_14: 0.00015212409009999524 - sys_15: 5.272225800721423e-05 - sys_16: -3.705004249092373e-06 - sys_17: 0.000890704662308767 - sys_18: -0.0017435636003592023 - sys_19: 0.0005261406691111935 - sys_20: 8.173062303264986e-05 - sys_21: 2.7288579380570152e-05 - sys_22: 1.4014075157361542e-05 - sys_23: 0.0005024643985340286 - sys_24: -1.876261046312825e-05 - sys_25: -1.0351265284111916e-05 - sys_26: 0.00016128310795033129 - sys_27: 0.00029354768061413375 - sys_28: 5.083601687038508e-05 - sys_29: 0.00013306708755348945 - sys_30: 0.0003244891711945663 - sys_31: -0.00014432090680774185 - sys_32: -1.4726062816183811e-05 - sys_33: 5.1756827854363265e-05 - sys_34: -2.344226719546219e-05 - sys_35: -1.9221676467443243e-05 - sys_36: 2.4106441951309986e-05 - sys_37: -3.007456518998841e-06 - sys_38: 3.24777020611302e-05 - sys_39: -0.00010814646187663066 - sys_40: -6.292803107755307e-06 - sys_41: 1.528272630197611e-05 - sys_42: 2.314020261807051e-05 - sys_43: 6.12685807061358e-06 - sys_44: 1.2967948868318734e-05 - sys_45: -5.842824981036497e-06 - sys_46: 1.452427882368861e-06 - sys_47: -6.172948980571621e-07 - sys_48: 2.6173701367277997e-06 - sys_49: -1.0089924858363806e-06 - sys_50: -4.217933535019213e-07 - sys_51: -1.1247354549656646e-06 - sys_52: -1.9918000767169816e-06 - sys_53: 1.615674755565218e-06 - sys_54: -9.06250572506488e-08 -- pol: 0.0049075 + sys_0: -1.24120819e-06 + sys_1: 3.80169502e-06 + sys_2: 4.08595745e-04 + sys_3: -3.15737442e-04 + sys_4: -4.15719363e-04 + sys_5: 3.20764023e-05 + sys_6: 6.38783299e-04 + sys_7: -1.99492413e-03 + sys_8: 1.41633313e-05 + sys_9: 6.62654222e-03 + sys_10: 1.46059977e-03 + sys_11: 9.05334117e-03 + sys_12: 6.71739491e-03 + sys_13: -1.31280510e-04 + sys_14: 1.52124090e-04 + sys_15: 5.27222580e-05 + sys_16: -3.70500425e-06 + sys_17: 8.90704662e-04 + sys_18: -1.74356360e-03 + sys_19: 5.26140669e-04 + sys_20: 8.17306230e-05 + sys_21: 2.72885794e-05 + sys_22: 1.40140752e-05 + sys_23: 5.02464399e-04 + sys_24: -1.87626105e-05 + sys_25: -1.03512653e-05 + sys_26: 1.61283108e-04 + sys_27: 2.93547681e-04 + sys_28: 5.08360169e-05 + sys_29: 1.33067088e-04 + sys_30: 3.24489171e-04 + sys_31: -1.44320907e-04 + sys_32: -1.47260628e-05 + sys_33: 5.17568279e-05 + sys_34: -2.34422672e-05 + sys_35: -1.92216765e-05 + sys_36: 2.41064420e-05 + sys_37: -3.00745652e-06 + sys_38: 3.24777021e-05 + sys_39: -1.08146462e-04 + sys_40: -6.29280311e-06 + sys_41: 1.52827263e-05 + sys_42: 2.31402026e-05 + sys_43: 6.12685807e-06 + sys_44: 1.29679489e-05 + sys_45: -5.84282498e-06 + sys_46: 1.45242788e-06 + sys_47: -6.17294898e-07 + sys_48: 2.61737014e-06 + sys_49: -1.00899249e-06 + sys_50: -4.21793354e-07 + sys_51: -1.12473545e-06 + sys_52: -1.99180008e-06 + sys_53: 1.61567476e-06 + sys_54: -9.06250573e-08 +- pol: 4.90750000e-03 lumi: 0.0005 - sys_0: -3.943045678980971e-06 - sys_1: 4.489839706904813e-05 - sys_2: 0.040456935062387185 - sys_3: 0.02082073324726154 - sys_4: 0.005404044301818967 - sys_5: 9.12518669255938e-06 - sys_6: -0.005442779476393642 - sys_7: 0.0015349519918510823 - sys_8: -5.406384573789755e-07 - sys_9: -0.0009933094958682707 - sys_10: -0.00022419329678915768 - sys_11: 0.0005108274897183756 - sys_12: 0.00012587537248200174 - sys_13: 0.0001395525059891973 - sys_14: 8.67989375836915e-05 - sys_15: 4.318377836122574e-06 - sys_16: -2.1599555590777712e-07 - sys_17: 4.151737572947641e-05 - sys_18: -0.00010956286015040279 - sys_19: 3.4730946107355635e-05 - sys_20: 1.4127739861044956e-05 - sys_21: 2.3135032901661635e-06 - sys_22: 1.1487237089288812e-06 - sys_23: 2.3370786789945632e-05 - sys_24: -2.787077508844793e-06 - sys_25: -1.6488638600524616e-06 - sys_26: 3.917707145945852e-06 - sys_27: 1.0743371749885916e-06 - sys_28: 9.846919502552658e-06 - sys_29: 1.9833094929827618e-05 - sys_30: 2.089928135349402e-05 - sys_31: -6.64973090956831e-06 - sys_32: 1.5755838610601717e-06 - sys_33: 1.6006258232858608e-05 - sys_34: -5.11501672453784e-06 - sys_35: -6.8500301809947e-08 - sys_36: 1.9746487335830316e-06 - sys_37: 5.064178900521212e-07 - sys_38: 1.5364179170257309e-06 - sys_39: -3.8722520427836584e-06 - sys_40: -5.253867234221934e-07 - sys_41: 9.277383719804245e-07 - sys_42: 6.126622792771842e-07 - sys_43: -1.8873070995921852e-07 - sys_44: 5.570752965608901e-08 - sys_45: 2.8043718698980527e-07 - sys_46: -2.753732772711444e-07 - sys_47: -4.019236265125738e-07 - sys_48: 2.1754650250362793e-07 - sys_49: -1.8662544883499682e-07 - sys_50: -4.3191771839060366e-08 - sys_51: -3.0596987859303187e-07 - sys_52: -2.1576141744187017e-07 - sys_53: 1.6553655690840783e-07 - sys_54: -2.6227567542187493e-08 + sys_0: -3.94304568e-06 + sys_1: 4.48983971e-05 + sys_2: 4.04569351e-02 + sys_3: 2.08207332e-02 + sys_4: 5.40404430e-03 + sys_5: 9.12518669e-06 + sys_6: -5.44277948e-03 + sys_7: 1.53495199e-03 + sys_8: -5.40638457e-07 + sys_9: -9.93309496e-04 + sys_10: -2.24193297e-04 + sys_11: 5.10827490e-04 + sys_12: 1.25875372e-04 + sys_13: 1.39552506e-04 + sys_14: 8.67989376e-05 + sys_15: 4.31837784e-06 + sys_16: -2.15995556e-07 + sys_17: 4.15173757e-05 + sys_18: -1.09562860e-04 + sys_19: 3.47309461e-05 + sys_20: 1.41277399e-05 + sys_21: 2.31350329e-06 + sys_22: 1.14872371e-06 + sys_23: 2.33707868e-05 + sys_24: -2.78707751e-06 + sys_25: -1.64886386e-06 + sys_26: 3.91770715e-06 + sys_27: 1.07433717e-06 + sys_28: 9.84691950e-06 + sys_29: 1.98330949e-05 + sys_30: 2.08992814e-05 + sys_31: -6.64973091e-06 + sys_32: 1.57558386e-06 + sys_33: 1.60062582e-05 + sys_34: -5.11501672e-06 + sys_35: -6.85003018e-08 + sys_36: 1.97464873e-06 + sys_37: 5.06417890e-07 + sys_38: 1.53641792e-06 + sys_39: -3.87225204e-06 + sys_40: -5.25386723e-07 + sys_41: 9.27738372e-07 + sys_42: 6.12662279e-07 + sys_43: -1.88730710e-07 + sys_44: 5.57075297e-08 + sys_45: 2.80437187e-07 + sys_46: -2.75373277e-07 + sys_47: -4.01923627e-07 + sys_48: 2.17546503e-07 + sys_49: -1.86625449e-07 + sys_50: -4.31917718e-08 + sys_51: -3.05969879e-07 + sys_52: -2.15761417e-07 + sys_53: 1.65536557e-07 + sys_54: -2.62275675e-08 diff --git a/nnpdf_data/nnpdf_data/commondata/STAR-2012_1JET_510GEV/filter.py b/nnpdf_data/nnpdf_data/commondata/STAR-2012_1JET_510GEV/filter.py index f8da1f3419..462ea12fec 100644 --- a/nnpdf_data/nnpdf_data/commondata/STAR-2012_1JET_510GEV/filter.py +++ b/nnpdf_data/nnpdf_data/commondata/STAR-2012_1JET_510GEV/filter.py @@ -11,6 +11,9 @@ from nnpdf_data.filter_utils.correlations import compute_covmat, upper_triangular_to_symmetric from nnpdf_data.filter_utils.poldata_utils import TOPO_DEF +from nnpdf_data.filter_utils.utils import prettify_float + +yaml.add_representer(float, prettify_float) # values from the paper https://arxiv.org/abs/1906.02740 SQRTS = 510 diff --git a/nnpdf_data/nnpdf_data/commondata/STAR-2012_1JET_510GEV/kinematics.yaml b/nnpdf_data/nnpdf_data/commondata/STAR-2012_1JET_510GEV/kinematics.yaml index 680a8a3950..04f54df151 100644 --- a/nnpdf_data/nnpdf_data/commondata/STAR-2012_1JET_510GEV/kinematics.yaml +++ b/nnpdf_data/nnpdf_data/commondata/STAR-2012_1JET_510GEV/kinematics.yaml @@ -89,7 +89,7 @@ bins: min: -0.9 pT: max: 22.829 - mid: 22.200000000000003 + mid: 2.22000000e+01 min: 21.571 sqrts: max: null @@ -113,7 +113,7 @@ bins: min: -0.9 pT: max: 30.533 - mid: 29.700000000000003 + mid: 2.97000000e+01 min: 28.867 sqrts: max: null diff --git a/nnpdf_data/nnpdf_data/commondata/STAR-2012_1JET_510GEV/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/STAR-2012_1JET_510GEV/uncertainties.yaml index 4eb6979a4b..7c8722b171 100644 --- a/nnpdf_data/nnpdf_data/commondata/STAR-2012_1JET_510GEV/uncertainties.yaml +++ b/nnpdf_data/nnpdf_data/commondata/STAR-2012_1JET_510GEV/uncertainties.yaml @@ -233,814 +233,814 @@ definitions: type: STAR2012JETunc55 bins: - lumi_ue: 0.000364 - pol: 1.1285999999999999e-06 - sys_0: -8.821941748802087e-06 - sys_1: -3.6471330938201644e-05 - sys_2: 1.8167870451173643e-06 - sys_3: 1.7483244936064986e-05 - sys_4: 8.483136631155627e-06 - sys_5: 1.210842966758323e-05 - sys_6: -1.4968639805643237e-05 - sys_7: 1.1807884919822045e-05 - sys_8: 1.4271856486757291e-05 - sys_9: 1.2330190528844079e-05 - sys_10: -8.462775568183555e-06 - sys_11: 1.3673607962117874e-05 - sys_12: -8.748427437423751e-06 - sys_13: 1.1353649503226235e-05 - sys_14: 1.7758882243819434e-05 - sys_15: -5.797017461789923e-06 - sys_16: -1.0949322616311439e-05 - sys_17: 2.1789787484304187e-05 - sys_18: -1.3317032520606704e-05 - sys_19: 9.563470189866473e-06 - sys_20: 8.2209946574795e-06 - sys_21: -5.306887824506822e-06 - sys_22: 1.1767831974258811e-05 - sys_23: -6.819927121924021e-05 - sys_24: 9.995071414962781e-05 - sys_25: -0.00033710720731502025 - sys_26: -0.0012092802633852846 - sys_27: -0.00029667443357127353 - sys_28: -0.00025796784196829766 - sys_29: 5.973614868423521e-05 - sys_30: -2.53493469475536e-05 - sys_31: -5.429956819148038e-07 - sys_32: 4.6734122278134705e-06 - sys_33: -9.400852661148064e-06 - sys_34: 5.545333821995905e-06 - sys_35: -5.899960672922845e-06 - sys_36: -2.8815395311657856e-05 - sys_37: 7.284669141188647e-06 - sys_38: -1.7481194414998095e-05 - sys_39: 3.105042856977531e-05 - sys_40: -2.1203048280662224e-05 - sys_41: -3.665235752857031e-06 - sys_42: -1.0549222513131536e-06 - sys_43: -4.391887800365259e-06 - sys_44: -6.272560538035737e-06 - sys_45: -6.552679474704093e-06 - sys_46: -7.655979819338729e-06 - sys_47: -4.688980440559567e-06 - sys_48: -4.38916272586274e-05 - sys_49: -1.057335862947531e-05 - sys_50: 5.525284765141493e-06 - sys_51: 2.6093085256144784e-05 - sys_52: -4.18316728042053e-06 - sys_53: 4.4216508487533985e-06 - sys_54: 8.713837319862776e-06 - sys_55: -2.2368622285071736e-06 + pol: 1.12860000e-06 + sys_0: -8.82194175e-06 + sys_1: -3.64713309e-05 + sys_2: 1.81678705e-06 + sys_3: 1.74832449e-05 + sys_4: 8.48313663e-06 + sys_5: 1.21084297e-05 + sys_6: -1.49686398e-05 + sys_7: 1.18078849e-05 + sys_8: 1.42718565e-05 + sys_9: 1.23301905e-05 + sys_10: -8.46277557e-06 + sys_11: 1.36736080e-05 + sys_12: -8.74842744e-06 + sys_13: 1.13536495e-05 + sys_14: 1.77588822e-05 + sys_15: -5.79701746e-06 + sys_16: -1.09493226e-05 + sys_17: 2.17897875e-05 + sys_18: -1.33170325e-05 + sys_19: 9.56347019e-06 + sys_20: 8.22099466e-06 + sys_21: -5.30688782e-06 + sys_22: 1.17678320e-05 + sys_23: -6.81992712e-05 + sys_24: 9.99507141e-05 + sys_25: -3.37107207e-04 + sys_26: -1.20928026e-03 + sys_27: -2.96674434e-04 + sys_28: -2.57967842e-04 + sys_29: 5.97361487e-05 + sys_30: -2.53493469e-05 + sys_31: -5.42995682e-07 + sys_32: 4.67341223e-06 + sys_33: -9.40085266e-06 + sys_34: 5.54533382e-06 + sys_35: -5.89996067e-06 + sys_36: -2.88153953e-05 + sys_37: 7.28466914e-06 + sys_38: -1.74811944e-05 + sys_39: 3.10504286e-05 + sys_40: -2.12030483e-05 + sys_41: -3.66523575e-06 + sys_42: -1.05492225e-06 + sys_43: -4.39188780e-06 + sys_44: -6.27256054e-06 + sys_45: -6.55267947e-06 + sys_46: -7.65597982e-06 + sys_47: -4.68898044e-06 + sys_48: -4.38916273e-05 + sys_49: -1.05733586e-05 + sys_50: 5.52528477e-06 + sys_51: 2.60930853e-05 + sys_52: -4.18316728e-06 + sys_53: 4.42165085e-06 + sys_54: 8.71383732e-06 + sys_55: -2.23686223e-06 - lumi_ue: 0.000326 - pol: 0.0001419 - sys_0: -2.465112527017979e-05 - sys_1: -0.00010423248114795045 - sys_2: 6.46177440015652e-06 - sys_3: 5.0755783085368236e-05 - sys_4: 2.5886190090542346e-05 - sys_5: 3.434046556061307e-05 - sys_6: -4.4132822346704604e-05 - sys_7: 3.387356832711956e-05 - sys_8: 1.5140215739696584e-05 - sys_9: 3.455682827493757e-05 - sys_10: -2.7080275958399007e-05 - sys_11: 3.6585919790238944e-05 - sys_12: -2.3358868305795008e-05 - sys_13: 3.1876653879245086e-05 - sys_14: 5.120428587597366e-05 - sys_15: -1.5958499322333716e-05 - sys_16: -3.199654902111568e-05 - sys_17: 3.183182831040715e-05 - sys_18: -3.9814171052099035e-05 - sys_19: 2.7973203300682412e-05 - sys_20: 2.6889826872233542e-05 - sys_21: -1.6113773481993268e-05 - sys_22: 3.300123876565877e-05 - sys_23: -3.6421448414983695e-05 - sys_24: 3.814037112793116e-05 - sys_25: -9.850863580627427e-06 - sys_26: 0.0003605142850158134 - sys_27: -0.0013074999414781044 - sys_28: -0.0005284178908962846 - sys_29: 9.32186444022493e-05 - sys_30: 4.886071775316618e-06 - sys_31: -4.153589459864062e-05 - sys_32: 3.397585369638351e-05 - sys_33: -2.765598121385316e-05 - sys_34: 1.0747903478962816e-05 - sys_35: -3.44458054777625e-05 - sys_36: -7.200073775181613e-05 - sys_37: 1.895339868043524e-05 - sys_38: -4.5880643739783465e-05 - sys_39: 7.738213209570399e-05 - sys_40: -2.559096713680647e-05 - sys_41: -1.9984364037667213e-06 - sys_42: 9.502017315642004e-07 - sys_43: -1.3009563171176047e-05 - sys_44: -1.6781702234244327e-05 - sys_45: -1.8223746714135008e-05 - sys_46: -1.9723821979258355e-05 - sys_47: -1.5381108256621014e-05 - sys_48: -6.447675107626914e-05 - sys_49: -3.910740803460003e-05 - sys_50: 1.179018560714414e-05 - sys_51: 5.2089404623409155e-05 - sys_52: -1.8275180676038584e-05 - sys_53: 2.522371095544315e-05 - sys_54: 3.511244571469996e-05 - sys_55: -6.57254465673745e-06 + pol: 1.41900000e-04 + sys_0: -2.46511253e-05 + sys_1: -1.04232481e-04 + sys_2: 6.46177440e-06 + sys_3: 5.07557831e-05 + sys_4: 2.58861901e-05 + sys_5: 3.43404656e-05 + sys_6: -4.41328223e-05 + sys_7: 3.38735683e-05 + sys_8: 1.51402157e-05 + sys_9: 3.45568283e-05 + sys_10: -2.70802760e-05 + sys_11: 3.65859198e-05 + sys_12: -2.33588683e-05 + sys_13: 3.18766539e-05 + sys_14: 5.12042859e-05 + sys_15: -1.59584993e-05 + sys_16: -3.19965490e-05 + sys_17: 3.18318283e-05 + sys_18: -3.98141711e-05 + sys_19: 2.79732033e-05 + sys_20: 2.68898269e-05 + sys_21: -1.61137735e-05 + sys_22: 3.30012388e-05 + sys_23: -3.64214484e-05 + sys_24: 3.81403711e-05 + sys_25: -9.85086358e-06 + sys_26: 3.60514285e-04 + sys_27: -1.30749994e-03 + sys_28: -5.28417891e-04 + sys_29: 9.32186444e-05 + sys_30: 4.88607178e-06 + sys_31: -4.15358946e-05 + sys_32: 3.39758537e-05 + sys_33: -2.76559812e-05 + sys_34: 1.07479035e-05 + sys_35: -3.44458055e-05 + sys_36: -7.20007378e-05 + sys_37: 1.89533987e-05 + sys_38: -4.58806437e-05 + sys_39: 7.73821321e-05 + sys_40: -2.55909671e-05 + sys_41: -1.99843640e-06 + sys_42: 9.50201732e-07 + sys_43: -1.30095632e-05 + sys_44: -1.67817022e-05 + sys_45: -1.82237467e-05 + sys_46: -1.97238220e-05 + sys_47: -1.53811083e-05 + sys_48: -6.44767511e-05 + sys_49: -3.91074080e-05 + sys_50: 1.17901856e-05 + sys_51: 5.20894046e-05 + sys_52: -1.82751807e-05 + sys_53: 2.52237110e-05 + sys_54: 3.51124457e-05 + sys_55: -6.57254466e-06 - lumi_ue: 0.000311 - pol: 0.00010692 - sys_0: -4.565244424389862e-06 - sys_1: -1.9702655827027287e-05 - sys_2: 1.4432189223237305e-06 - sys_3: 9.75210126900166e-06 - sys_4: 4.75928582711611e-06 - sys_5: 6.603377645517562e-06 - sys_6: -9.374485486263399e-06 - sys_7: 7.325337810630204e-06 - sys_8: 3.047371991636115e-05 - sys_9: 6.924762678464587e-06 - sys_10: -4.452179533828823e-06 - sys_11: 7.276990148032232e-06 - sys_12: -4.912524616049315e-06 - sys_13: 6.881211190342397e-06 - sys_14: 1.220364968603039e-05 - sys_15: -3.630274103091203e-06 - sys_16: -9.41055920925889e-06 - sys_17: 5.319419018056901e-05 - sys_18: -9.072777767894387e-06 - sys_19: 7.174824513939855e-06 - sys_20: 5.369049004698803e-06 - sys_21: -6.505874793392379e-06 - sys_22: 1.3174927383874209e-05 - sys_23: 0.0009871074268235896 - sys_24: -2.9897639758948066e-05 - sys_25: 1.9453073956122136e-07 - sys_26: -7.718987901254721e-05 - sys_27: -5.848787312083316e-05 - sys_28: -7.019631185199645e-05 - sys_29: 1.1902143329597313e-05 - sys_30: -1.80727099986013e-05 - sys_31: 9.751428083466333e-06 - sys_32: -8.200360745741201e-06 - sys_33: -3.670674651851237e-05 - sys_34: 1.0983497582366894e-05 - sys_35: 1.1773302164072572e-05 - sys_36: -9.195299589111415e-05 - sys_37: 9.53317331712329e-06 - sys_38: -1.2399524075551635e-05 - sys_39: 5.7954331211889534e-05 - sys_40: -5.113641686727462e-05 - sys_41: -3.6862981909303215e-05 - sys_42: -7.370686763841932e-06 - sys_43: 8.291203071506233e-08 - sys_44: -1.9068418716000865e-05 - sys_45: -5.562164949871028e-06 - sys_46: -1.4767368809122772e-05 - sys_47: -2.1114610145548863e-05 - sys_48: -0.00010165353074502268 - sys_49: -3.169942609770339e-05 - sys_50: 3.625051248115914e-05 - sys_51: 6.03264034286668e-05 - sys_52: 1.3946708904057536e-05 - sys_53: -2.4763858515751264e-05 - sys_54: 2.0011552224554454e-05 - sys_55: -1.4942396739316259e-05 + pol: 1.06920000e-04 + sys_0: -4.56524442e-06 + sys_1: -1.97026558e-05 + sys_2: 1.44321892e-06 + sys_3: 9.75210127e-06 + sys_4: 4.75928583e-06 + sys_5: 6.60337765e-06 + sys_6: -9.37448549e-06 + sys_7: 7.32533781e-06 + sys_8: 3.04737199e-05 + sys_9: 6.92476268e-06 + sys_10: -4.45217953e-06 + sys_11: 7.27699015e-06 + sys_12: -4.91252462e-06 + sys_13: 6.88121119e-06 + sys_14: 1.22036497e-05 + sys_15: -3.63027410e-06 + sys_16: -9.41055921e-06 + sys_17: 5.31941902e-05 + sys_18: -9.07277777e-06 + sys_19: 7.17482451e-06 + sys_20: 5.36904900e-06 + sys_21: -6.50587479e-06 + sys_22: 1.31749274e-05 + sys_23: 9.87107427e-04 + sys_24: -2.98976398e-05 + sys_25: 1.94530740e-07 + sys_26: -7.71898790e-05 + sys_27: -5.84878731e-05 + sys_28: -7.01963119e-05 + sys_29: 1.19021433e-05 + sys_30: -1.80727100e-05 + sys_31: 9.75142808e-06 + sys_32: -8.20036075e-06 + sys_33: -3.67067465e-05 + sys_34: 1.09834976e-05 + sys_35: 1.17733022e-05 + sys_36: -9.19529959e-05 + sys_37: 9.53317332e-06 + sys_38: -1.23995241e-05 + sys_39: 5.79543312e-05 + sys_40: -5.11364169e-05 + sys_41: -3.68629819e-05 + sys_42: -7.37068676e-06 + sys_43: 8.29120307e-08 + sys_44: -1.90684187e-05 + sys_45: -5.56216495e-06 + sys_46: -1.47673688e-05 + sys_47: -2.11146101e-05 + sys_48: -1.01653531e-04 + sys_49: -3.16994261e-05 + sys_50: 3.62505125e-05 + sys_51: 6.03264034e-05 + sys_52: 1.39467089e-05 + sys_53: -2.47638585e-05 + sys_54: 2.00115522e-05 + sys_55: -1.49423967e-05 - lumi_ue: 0.000284 pol: 3.3e-05 - sys_0: -4.9825699510777715e-06 - sys_1: -1.9165086995194296e-05 - sys_2: 9.969182075250696e-07 - sys_3: 8.9220972071917e-06 - sys_4: 4.532756643052977e-06 - sys_5: 7.339433488404018e-06 - sys_6: -9.053531372362643e-06 - sys_7: 6.80345014320303e-06 - sys_8: 4.491738091777601e-06 - sys_9: 7.132435633509162e-06 - sys_10: -5.271154567036973e-06 - sys_11: 8.504375654800842e-06 - sys_12: -4.762784462967933e-06 - sys_13: 8.006485783619601e-06 - sys_14: 1.2940078905764768e-05 - sys_15: -3.821663727111677e-06 - sys_16: -1.0609754079072808e-05 - sys_17: 3.0796492101805405e-05 - sys_18: -1.1469765808410741e-05 - sys_19: 1.1086966120226894e-05 - sys_20: 7.84063762621425e-06 - sys_21: -1.1332477073041525e-05 - sys_22: 2.040883816806957e-05 - sys_23: -3.569750509939994e-05 - sys_24: -0.0010892600351925358 - sys_25: -7.029038832940129e-05 - sys_26: -8.46702420622185e-05 - sys_27: -6.72631261846358e-05 - sys_28: -3.521815708164245e-05 - sys_29: -3.835252178650734e-06 - sys_30: -1.3039010334060391e-05 - sys_31: 9.75088359005648e-06 - sys_32: -1.0495802766341886e-05 - sys_33: -7.756944638420684e-05 - sys_34: 4.2319041538372926e-05 - sys_35: 2.7173551316465017e-06 - sys_36: -0.00012000761089983391 - sys_37: 2.0043363670874744e-05 - sys_38: -2.0243618390970825e-05 - sys_39: 7.027237278624683e-05 - sys_40: -1.6973007486565e-05 - sys_41: -3.8981141845739275e-05 - sys_42: 3.2916536841557066e-06 - sys_43: -1.91524856121314e-06 - sys_44: -4.338173138354905e-05 - sys_45: -1.1455001587334754e-05 - sys_46: -3.065695694033566e-05 - sys_47: -4.31585114753915e-05 - sys_48: -5.6384372371462184e-05 - sys_49: -7.027976110496705e-05 - sys_50: 3.9092304889269794e-05 - sys_51: 5.214331770888479e-05 - sys_52: 6.007207485923221e-06 - sys_53: -4.206364582148104e-05 - sys_54: 5.3238194383034375e-05 - sys_55: -1.194100865111447e-05 + sys_0: -4.98256995e-06 + sys_1: -1.91650870e-05 + sys_2: 9.96918208e-07 + sys_3: 8.92209721e-06 + sys_4: 4.53275664e-06 + sys_5: 7.33943349e-06 + sys_6: -9.05353137e-06 + sys_7: 6.80345014e-06 + sys_8: 4.49173809e-06 + sys_9: 7.13243563e-06 + sys_10: -5.27115457e-06 + sys_11: 8.50437565e-06 + sys_12: -4.76278446e-06 + sys_13: 8.00648578e-06 + sys_14: 1.29400789e-05 + sys_15: -3.82166373e-06 + sys_16: -1.06097541e-05 + sys_17: 3.07964921e-05 + sys_18: -1.14697658e-05 + sys_19: 1.10869661e-05 + sys_20: 7.84063763e-06 + sys_21: -1.13324771e-05 + sys_22: 2.04088382e-05 + sys_23: -3.56975051e-05 + sys_24: -1.08926004e-03 + sys_25: -7.02903883e-05 + sys_26: -8.46702421e-05 + sys_27: -6.72631262e-05 + sys_28: -3.52181571e-05 + sys_29: -3.83525218e-06 + sys_30: -1.30390103e-05 + sys_31: 9.75088359e-06 + sys_32: -1.04958028e-05 + sys_33: -7.75694464e-05 + sys_34: 4.23190415e-05 + sys_35: 2.71735513e-06 + sys_36: -1.20007611e-04 + sys_37: 2.00433637e-05 + sys_38: -2.02436184e-05 + sys_39: 7.02723728e-05 + sys_40: -1.69730075e-05 + sys_41: -3.89811418e-05 + sys_42: 3.29165368e-06 + sys_43: -1.91524856e-06 + sys_44: -4.33817314e-05 + sys_45: -1.14550016e-05 + sys_46: -3.06569569e-05 + sys_47: -4.31585115e-05 + sys_48: -5.63843724e-05 + sys_49: -7.02797611e-05 + sys_50: 3.90923049e-05 + sys_51: 5.21433177e-05 + sys_52: 6.00720749e-06 + sys_53: -4.20636458e-05 + sys_54: 5.32381944e-05 + sys_55: -1.19410087e-05 - lumi_ue: 0.000272 - pol: 9.768e-05 - sys_0: -5.791863240557983e-06 - sys_1: -2.378144168703413e-05 - sys_2: 1.5157667327289978e-06 - sys_3: 1.1499659903871613e-05 - sys_4: 6.2628313188824185e-06 - sys_5: 8.481116450754227e-06 - sys_6: -1.0509457250797949e-05 - sys_7: 7.921444885306741e-06 - sys_8: 1.3465081747231245e-06 - sys_9: 9.458172074065673e-06 - sys_10: -7.275913211886843e-06 - sys_11: 1.0290329411363868e-05 - sys_12: -7.043114343513344e-06 - sys_13: 9.804339181285863e-06 - sys_14: 1.7795907582833182e-05 - sys_15: -5.121122795228189e-06 - sys_16: -1.533902620044504e-05 - sys_17: 7.113339831240334e-06 - sys_18: -1.846916676384413e-05 - sys_19: 2.1460237334435726e-05 - sys_20: 1.297601314706316e-05 - sys_21: -2.5153295762023065e-05 - sys_22: 3.746786189513048e-05 - sys_23: -2.062910408296418e-05 - sys_24: -3.154936216074723e-05 - sys_25: 0.001200285888177563 - sys_26: -0.0003480730463770223 - sys_27: -0.0001496255894809939 - sys_28: 4.9078833989632725e-05 - sys_29: -2.345497232606815e-05 - sys_30: 9.84973059743724e-06 - sys_31: 3.376061512391438e-06 - sys_32: -1.1564754462223913e-05 - sys_33: -8.956642005875093e-05 - sys_34: 0.00011304805859800024 - sys_35: -2.699187337485425e-05 - sys_36: -0.00011573152502613668 - sys_37: 4.568157404228394e-05 - sys_38: -3.942570246146368e-05 - sys_39: 8.3552790022214e-05 - sys_40: 1.4264233158822676e-05 - sys_41: -3.295865672846852e-05 - sys_42: 3.711617232019222e-05 - sys_43: -7.781468394878475e-06 - sys_44: -5.933402410220659e-05 - sys_45: -3.129306632426336e-05 - sys_46: -6.157672986103799e-05 - sys_47: -6.601357890165222e-05 - sys_48: -3.239302045747321e-05 - sys_49: -0.00010859544936985959 - sys_50: 1.1948553966369052e-05 - sys_51: 2.349915825728008e-05 - sys_52: -1.978319299003441e-06 - sys_53: -4.793707732895873e-05 - sys_54: 6.80248687761614e-05 - sys_55: -6.759040756419024e-06 + pol: 9.76800000e-05 + sys_0: -5.79186324e-06 + sys_1: -2.37814417e-05 + sys_2: 1.51576673e-06 + sys_3: 1.14996599e-05 + sys_4: 6.26283132e-06 + sys_5: 8.48111645e-06 + sys_6: -1.05094573e-05 + sys_7: 7.92144489e-06 + sys_8: 1.34650817e-06 + sys_9: 9.45817207e-06 + sys_10: -7.27591321e-06 + sys_11: 1.02903294e-05 + sys_12: -7.04311434e-06 + sys_13: 9.80433918e-06 + sys_14: 1.77959076e-05 + sys_15: -5.12112280e-06 + sys_16: -1.53390262e-05 + sys_17: 7.11333983e-06 + sys_18: -1.84691668e-05 + sys_19: 2.14602373e-05 + sys_20: 1.29760131e-05 + sys_21: -2.51532958e-05 + sys_22: 3.74678619e-05 + sys_23: -2.06291041e-05 + sys_24: -3.15493622e-05 + sys_25: 1.20028589e-03 + sys_26: -3.48073046e-04 + sys_27: -1.49625589e-04 + sys_28: 4.90788340e-05 + sys_29: -2.34549723e-05 + sys_30: 9.84973060e-06 + sys_31: 3.37606151e-06 + sys_32: -1.15647545e-05 + sys_33: -8.95664201e-05 + sys_34: 1.13048059e-04 + sys_35: -2.69918734e-05 + sys_36: -1.15731525e-04 + sys_37: 4.56815740e-05 + sys_38: -3.94257025e-05 + sys_39: 8.35527900e-05 + sys_40: 1.42642332e-05 + sys_41: -3.29586567e-05 + sys_42: 3.71161723e-05 + sys_43: -7.78146839e-06 + sys_44: -5.93340241e-05 + sys_45: -3.12930663e-05 + sys_46: -6.15767299e-05 + sys_47: -6.60135789e-05 + sys_48: -3.23930205e-05 + sys_49: -1.08595449e-04 + sys_50: 1.19485540e-05 + sys_51: 2.34991583e-05 + sys_52: -1.97831930e-06 + sys_53: -4.79370773e-05 + sys_54: 6.80248688e-05 + sys_55: -6.75904076e-06 - lumi_ue: 0.000256 - pol: 0.00019338 - sys_0: -5.503892459957422e-06 - sys_1: -2.6137479906432208e-05 - sys_2: 1.0216165255867304e-06 - sys_3: 1.3262793344340694e-05 - sys_4: 6.71338046097517e-06 - sys_5: 9.165659379111365e-06 - sys_6: -1.2037152997672278e-05 - sys_7: 1.044329025426136e-05 - sys_8: 1.7333943206563156e-06 - sys_9: 1.1139217237167833e-05 - sys_10: -8.035274914100343e-06 - sys_11: 1.2061605398859313e-05 - sys_12: -9.543216724161173e-06 - sys_13: 1.1622741451098714e-05 - sys_14: 2.4170837772342338e-05 - sys_15: -6.1176659665052106e-06 - sys_16: -3.114835196002155e-05 - sys_17: 4.466208286960775e-06 - sys_18: -3.0020787526023446e-05 - sys_19: 4.4470705088877366e-05 - sys_20: 1.8837663307175122e-05 - sys_21: -6.110137308697796e-05 - sys_22: 7.610608800472524e-05 - sys_23: -1.2916104624287618e-05 - sys_24: -7.163255210137232e-06 - sys_25: 6.662207215769876e-05 - sys_26: 5.2265292923960785e-05 - sys_27: 0.00031166700454722903 - sys_28: -0.0005185251461990411 - sys_29: 0.0014164272834122677 - sys_30: 0.00017095743659376647 - sys_31: -2.691869867459842e-05 - sys_32: -4.109467569448215e-06 - sys_33: -0.00010009440614103453 - sys_34: 0.00016414695740722514 - sys_35: -5.502933836947826e-05 - sys_36: -6.672156673061959e-05 - sys_37: 0.0001185884334749301 - sys_38: -9.409731583462938e-05 - sys_39: 7.836293849506051e-05 - sys_40: 1.1848173619522705e-05 - sys_41: -1.481679725575934e-05 - sys_42: 7.702811349243234e-05 - sys_43: -2.52442718402469e-05 - sys_44: -6.92366408454414e-05 - sys_45: -7.799413370402744e-05 - sys_46: -9.900627905369279e-05 - sys_47: -6.593503585707357e-05 - sys_48: -2.9167122262065046e-05 - sys_49: -0.00011463842698924708 - sys_50: -3.842065410143865e-05 - sys_51: 3.290500401627824e-06 - sys_52: -1.0084081821724015e-05 - sys_53: -4.6370159353557976e-05 - sys_54: 6.445125554986351e-05 - sys_55: 1.421803279867967e-05 + pol: 1.93380000e-04 + sys_0: -5.50389246e-06 + sys_1: -2.61374799e-05 + sys_2: 1.02161653e-06 + sys_3: 1.32627933e-05 + sys_4: 6.71338046e-06 + sys_5: 9.16565938e-06 + sys_6: -1.20371530e-05 + sys_7: 1.04432903e-05 + sys_8: 1.73339432e-06 + sys_9: 1.11392172e-05 + sys_10: -8.03527491e-06 + sys_11: 1.20616054e-05 + sys_12: -9.54321672e-06 + sys_13: 1.16227415e-05 + sys_14: 2.41708378e-05 + sys_15: -6.11766597e-06 + sys_16: -3.11483520e-05 + sys_17: 4.46620829e-06 + sys_18: -3.00207875e-05 + sys_19: 4.44707051e-05 + sys_20: 1.88376633e-05 + sys_21: -6.11013731e-05 + sys_22: 7.61060880e-05 + sys_23: -1.29161046e-05 + sys_24: -7.16325521e-06 + sys_25: 6.66220722e-05 + sys_26: 5.22652929e-05 + sys_27: 3.11667005e-04 + sys_28: -5.18525146e-04 + sys_29: 1.41642728e-03 + sys_30: 1.70957437e-04 + sys_31: -2.69186987e-05 + sys_32: -4.10946757e-06 + sys_33: -1.00094406e-04 + sys_34: 1.64146957e-04 + sys_35: -5.50293384e-05 + sys_36: -6.67215667e-05 + sys_37: 1.18588433e-04 + sys_38: -9.40973158e-05 + sys_39: 7.83629385e-05 + sys_40: 1.18481736e-05 + sys_41: -1.48167973e-05 + sys_42: 7.70281135e-05 + sys_43: -2.52442718e-05 + sys_44: -6.92366408e-05 + sys_45: -7.79941337e-05 + sys_46: -9.90062791e-05 + sys_47: -6.59350359e-05 + sys_48: -2.91671223e-05 + sys_49: -1.14638427e-04 + sys_50: -3.84206541e-05 + sys_51: 3.29050040e-06 + sys_52: -1.00840818e-05 + sys_53: -4.63701594e-05 + sys_54: 6.44512555e-05 + sys_55: 1.42180328e-05 - lumi_ue: 0.000251 - pol: 0.00010428000000000001 - sys_0: -7.3327263558380825e-06 - sys_1: -3.4275452581323526e-05 - sys_2: 1.1986279540967507e-06 - sys_3: 1.5983773838047114e-05 - sys_4: 9.614508010557344e-06 - sys_5: 1.3426983437559383e-05 - sys_6: -1.9144713779557956e-05 - sys_7: 1.2199552191145488e-05 - sys_8: 1.8706933602549008e-06 - sys_9: 1.592296480535784e-05 - sys_10: -1.0367001007464602e-05 - sys_11: 2.281582459078816e-05 - sys_12: -2.9246052246532263e-05 - sys_13: 2.0907257454866716e-05 - sys_14: 4.9440440299999905e-05 - sys_15: -1.0247677523265365e-06 - sys_16: -8.611062166183623e-05 - sys_17: 6.178260198071785e-06 - sys_18: -6.431843043771019e-05 - sys_19: 9.43233699342164e-05 - sys_20: 1.2594441078706455e-05 - sys_21: -8.642278331285357e-05 - sys_22: 0.00013722396598491764 - sys_23: -1.7321542542785463e-05 - sys_24: -1.2881721532154757e-07 - sys_25: 7.577024713074359e-05 - sys_26: 6.00375953202908e-05 - sys_27: 0.0004532328044959585 - sys_28: -0.0012019571657233327 - sys_29: -0.0006640222096547952 - sys_30: 0.0004362036398831557 - sys_31: -0.00011839330244247405 - sys_32: 3.372578160819505e-05 - sys_33: -3.72123542326018e-05 - sys_34: 0.0001477928401653916 - sys_35: -6.596017849524293e-05 - sys_36: -1.3362281560256257e-05 - sys_37: 0.00012275950494662483 - sys_38: -0.00020712802699344597 - sys_39: 6.829850061410594e-05 - sys_40: 1.0919100813998234e-06 - sys_41: 1.6651816005050572e-05 - sys_42: 8.268045467218608e-05 - sys_43: -8.993068703281915e-05 - sys_44: -4.945368391422495e-05 - sys_45: -0.00012877102848774948 - sys_46: -9.423900893851299e-05 - sys_47: -5.190340085540786e-05 - sys_48: -2.7118727201493294e-05 - sys_49: -9.531864273162668e-05 - sys_50: -7.39758241400835e-05 - sys_51: 2.949835214187288e-06 - sys_52: -4.922590619239453e-05 - sys_53: -1.8712398334230333e-05 - sys_54: 2.7333062102753465e-05 - sys_55: 2.7179383849119982e-05 + pol: 1.04280000e-04 + sys_0: -7.33272636e-06 + sys_1: -3.42754526e-05 + sys_2: 1.19862795e-06 + sys_3: 1.59837738e-05 + sys_4: 9.61450801e-06 + sys_5: 1.34269834e-05 + sys_6: -1.91447138e-05 + sys_7: 1.21995522e-05 + sys_8: 1.87069336e-06 + sys_9: 1.59229648e-05 + sys_10: -1.03670010e-05 + sys_11: 2.28158246e-05 + sys_12: -2.92460522e-05 + sys_13: 2.09072575e-05 + sys_14: 4.94404403e-05 + sys_15: -1.02476775e-06 + sys_16: -8.61106217e-05 + sys_17: 6.17826020e-06 + sys_18: -6.43184304e-05 + sys_19: 9.43233699e-05 + sys_20: 1.25944411e-05 + sys_21: -8.64227833e-05 + sys_22: 1.37223966e-04 + sys_23: -1.73215425e-05 + sys_24: -1.28817215e-07 + sys_25: 7.57702471e-05 + sys_26: 6.00375953e-05 + sys_27: 4.53232804e-04 + sys_28: -1.20195717e-03 + sys_29: -6.64022210e-04 + sys_30: 4.36203640e-04 + sys_31: -1.18393302e-04 + sys_32: 3.37257816e-05 + sys_33: -3.72123542e-05 + sys_34: 1.47792840e-04 + sys_35: -6.59601785e-05 + sys_36: -1.33622816e-05 + sys_37: 1.22759505e-04 + sys_38: -2.07128027e-04 + sys_39: 6.82985006e-05 + sys_40: 1.09191008e-06 + sys_41: 1.66518160e-05 + sys_42: 8.26804547e-05 + sys_43: -8.99306870e-05 + sys_44: -4.94536839e-05 + sys_45: -1.28771028e-04 + sys_46: -9.42390089e-05 + sys_47: -5.19034009e-05 + sys_48: -2.71187272e-05 + sys_49: -9.53186427e-05 + sys_50: -7.39758241e-05 + sys_51: 2.94983521e-06 + sys_52: -4.92259062e-05 + sys_53: -1.87123983e-05 + sys_54: 2.73330621e-05 + sys_55: 2.71793838e-05 - lumi_ue: 0.000246 - pol: 0.00029370000000000004 - sys_0: -1.4531320686131926e-05 - sys_1: -5.906649464146684e-05 - sys_2: 1.8354699269196728e-06 - sys_3: 2.996485143895253e-05 - sys_4: 1.677001373338609e-05 - sys_5: 2.7316490991592877e-05 - sys_6: -4.540862534083362e-05 - sys_7: 2.356558224617969e-05 - sys_8: 2.0087167328109575e-06 - sys_9: 2.847372133154413e-05 - sys_10: -1.9367062008141487e-05 - sys_11: 5.8806116202409896e-05 - sys_12: -8.536255913383588e-05 - sys_13: 5.2507019146986626e-05 - sys_14: 0.00011494080613538663 - sys_15: 9.454843313859845e-06 - sys_16: -0.0001758421257169817 - sys_17: 4.960987458171385e-06 - sys_18: -0.00013700076147794236 - sys_19: 0.00014595864850027368 - sys_20: -2.341708689503121e-06 - sys_21: -7.571198004453074e-05 - sys_22: 0.00015961154506649632 - sys_23: -1.324482758953872e-05 - sys_24: 5.128125655173806e-06 - sys_25: 3.524420217818871e-05 - sys_26: 3.5784982917079476e-05 - sys_27: 0.00014490156371423744 - sys_28: -0.0003213605824829193 - sys_29: -2.4927667255856166e-05 - sys_30: -0.0016108287428603038 - sys_31: -0.0004779568758345491 - sys_32: 0.0001389226169479849 - sys_33: 1.747060931935825e-05 - sys_34: 9.594836665965272e-05 - sys_35: -8.901928946062573e-05 - sys_36: 4.547691186391121e-06 - sys_37: 0.00010033667034219226 - sys_38: -0.0002865523748037608 - sys_39: 9.799696235698181e-05 - sys_40: -5.680457420944249e-06 - sys_41: 6.329272705944278e-05 - sys_42: 6.566929783252198e-05 - sys_43: -0.00015857135686855026 - sys_44: -1.793816600477198e-05 - sys_45: -0.00012485585165383548 - sys_46: -7.969712040822871e-05 - sys_47: -2.4230050821186205e-05 - sys_48: -3.326578293538152e-05 - sys_49: -9.098067052196399e-05 - sys_50: -7.714098863909551e-05 - sys_51: 3.169252785690013e-05 - sys_52: -0.0001622750755780895 - sys_53: 2.9684395878555217e-05 - sys_54: -1.0218505438526888e-05 - sys_55: 1.563893729769311e-05 + pol: 2.93700000e-04 + sys_0: -1.45313207e-05 + sys_1: -5.90664946e-05 + sys_2: 1.83546993e-06 + sys_3: 2.99648514e-05 + sys_4: 1.67700137e-05 + sys_5: 2.73164910e-05 + sys_6: -4.54086253e-05 + sys_7: 2.35655822e-05 + sys_8: 2.00871673e-06 + sys_9: 2.84737213e-05 + sys_10: -1.93670620e-05 + sys_11: 5.88061162e-05 + sys_12: -8.53625591e-05 + sys_13: 5.25070191e-05 + sys_14: 1.14940806e-04 + sys_15: 9.45484331e-06 + sys_16: -1.75842126e-04 + sys_17: 4.96098746e-06 + sys_18: -1.37000761e-04 + sys_19: 1.45958649e-04 + sys_20: -2.34170869e-06 + sys_21: -7.57119800e-05 + sys_22: 1.59611545e-04 + sys_23: -1.32448276e-05 + sys_24: 5.12812566e-06 + sys_25: 3.52442022e-05 + sys_26: 3.57849829e-05 + sys_27: 1.44901564e-04 + sys_28: -3.21360582e-04 + sys_29: -2.49276673e-05 + sys_30: -1.61082874e-03 + sys_31: -4.77956876e-04 + sys_32: 1.38922617e-04 + sys_33: 1.74706093e-05 + sys_34: 9.59483667e-05 + sys_35: -8.90192895e-05 + sys_36: 4.54769119e-06 + sys_37: 1.00336670e-04 + sys_38: -2.86552375e-04 + sys_39: 9.79969624e-05 + sys_40: -5.68045742e-06 + sys_41: 6.32927271e-05 + sys_42: 6.56692978e-05 + sys_43: -1.58571357e-04 + sys_44: -1.79381660e-05 + sys_45: -1.24855852e-04 + sys_46: -7.96971204e-05 + sys_47: -2.42300508e-05 + sys_48: -3.32657829e-05 + sys_49: -9.09806705e-05 + sys_50: -7.71409886e-05 + sys_51: 3.16925279e-05 + sys_52: -1.62275076e-04 + sys_53: 2.96843959e-05 + sys_54: -1.02185054e-05 + sys_55: 1.56389373e-05 - lumi_ue: 0.000239 - pol: 0.00032736 - sys_0: -1.2721175867337863e-05 - sys_1: -5.3759908415551784e-05 - sys_2: -1.3472527957308039e-05 - sys_3: 2.5393227188360534e-05 - sys_4: 1.4491889899672195e-05 - sys_5: 4.631359487134997e-05 - sys_6: -9.944452103980808e-05 - sys_7: 3.514896332545032e-05 - sys_8: 2.084842828571797e-06 - sys_9: 3.511232265969395e-05 - sys_10: -2.455029060250201e-05 - sys_11: 0.00013410982108297455 - sys_12: -0.00018932880774263057 - sys_13: 0.00012681038449283095 - sys_14: 0.00020655034953752442 - sys_15: 2.666673222627146e-05 - sys_16: -0.00019253885153976168 - sys_17: 1.9517961879403657e-06 - sys_18: -0.00024424648813223406 - sys_19: 0.0001122092948953139 - sys_20: -1.8456056053044795e-05 - sys_21: -5.022805954379e-05 - sys_22: 0.0001455932367959391 - sys_23: -8.382894936706117e-06 - sys_24: 5.797759530922429e-06 - sys_25: 1.1731757705128178e-05 - sys_26: 1.932162506775638e-05 - sys_27: 3.822311542568705e-05 - sys_28: -0.0001484100069827678 - sys_29: -2.1161616334793084e-05 - sys_30: -0.000329413670730753 - sys_31: 0.0019343502339227154 - sys_32: 0.00044682690867959424 - sys_33: 5.7943979068033526e-05 - sys_34: -1.275124889861698e-05 - sys_35: -0.0001443584044783772 - sys_36: 2.4306983302239594e-05 - sys_37: 5.6802184547351856e-05 - sys_38: -0.00024872615095960317 - sys_39: 0.00014417461860618478 - sys_40: -1.4533630662284744e-05 - sys_41: 0.00017100364566967233 - sys_42: 1.0145135308798986e-05 - sys_43: -0.0001235469246863111 - sys_44: 1.4102055819522456e-05 - sys_45: -8.86506669667826e-05 - sys_46: -4.1340117896395616e-05 - sys_47: 6.9738837693633595e-06 - sys_48: -2.7836357204103206e-05 - sys_49: -6.640619120971576e-05 - sys_50: -6.363751324763913e-05 - sys_51: 6.0665306887490696e-05 - sys_52: -0.00028813925938308194 - sys_53: 8.801391663906484e-05 - sys_54: -3.85413691991664e-05 - sys_55: -4.285495341072438e-07 + pol: 3.27360000e-04 + sys_0: -1.27211759e-05 + sys_1: -5.37599084e-05 + sys_2: -1.34725280e-05 + sys_3: 2.53932272e-05 + sys_4: 1.44918899e-05 + sys_5: 4.63135949e-05 + sys_6: -9.94445210e-05 + sys_7: 3.51489633e-05 + sys_8: 2.08484283e-06 + sys_9: 3.51123227e-05 + sys_10: -2.45502906e-05 + sys_11: 1.34109821e-04 + sys_12: -1.89328808e-04 + sys_13: 1.26810384e-04 + sys_14: 2.06550350e-04 + sys_15: 2.66667322e-05 + sys_16: -1.92538852e-04 + sys_17: 1.95179619e-06 + sys_18: -2.44246488e-04 + sys_19: 1.12209295e-04 + sys_20: -1.84560561e-05 + sys_21: -5.02280595e-05 + sys_22: 1.45593237e-04 + sys_23: -8.38289494e-06 + sys_24: 5.79775953e-06 + sys_25: 1.17317577e-05 + sys_26: 1.93216251e-05 + sys_27: 3.82231154e-05 + sys_28: -1.48410007e-04 + sys_29: -2.11616163e-05 + sys_30: -3.29413671e-04 + sys_31: 1.93435023e-03 + sys_32: 4.46826909e-04 + sys_33: 5.79439791e-05 + sys_34: -1.27512489e-05 + sys_35: -1.44358404e-04 + sys_36: 2.43069833e-05 + sys_37: 5.68021845e-05 + sys_38: -2.48726151e-04 + sys_39: 1.44174619e-04 + sys_40: -1.45336307e-05 + sys_41: 1.71003646e-04 + sys_42: 1.01451353e-05 + sys_43: -1.23546925e-04 + sys_44: 1.41020558e-05 + sys_45: -8.86506670e-05 + sys_46: -4.13401179e-05 + sys_47: 6.97388377e-06 + sys_48: -2.78363572e-05 + sys_49: -6.64061912e-05 + sys_50: -6.36375132e-05 + sys_51: 6.06653069e-05 + sys_52: -2.88139259e-04 + sys_53: 8.80139166e-05 + sys_54: -3.85413692e-05 + sys_55: -4.28549534e-07 - lumi_ue: 0.000234 - pol: 0.0002376 - sys_0: -3.1630558922629954e-05 - sys_1: -0.0001219056704205382 - sys_2: -7.723766765002501e-05 - sys_3: 5.519553672535579e-05 - sys_4: 2.608958657677528e-05 - sys_5: 0.00014795078938444645 - sys_6: -0.000280607481308802 - sys_7: 0.00010934528327043763 - sys_8: -1.0540484335743735e-06 - sys_9: 8.51368746095837e-05 - sys_10: -5.241496380355311e-05 - sys_11: 0.0003095563844676661 - sys_12: -0.00022677513595345468 - sys_13: 0.00033942607030752373 - sys_14: 0.00026608054090523594 - sys_15: -0.0001155409149948779 - sys_16: -0.00016589429796168932 - sys_17: 9.72151287458515e-07 - sys_18: -0.0002421823907015728 - sys_19: 9.038900405338213e-05 - sys_20: 2.062699720925617e-05 - sys_21: -1.052751518332113e-05 - sys_22: 0.00012657100973109266 - sys_23: -4.6980493029875854e-06 - sys_24: 4.421749933671465e-06 - sys_25: 1.0990159914506828e-06 - sys_26: 8.981061418386643e-06 - sys_27: 4.337528682720824e-06 - sys_28: -5.749636685715411e-05 - sys_29: -1.08440967965542e-05 - sys_30: -0.0001212054137620569 - sys_31: 0.0002804760731391937 - sys_32: -0.0024767071448502597 - sys_33: 0.00010672251498169418 - sys_34: -0.00026110867597185306 - sys_35: -0.0004612465823301665 - sys_36: 1.1697674827367565e-05 - sys_37: 9.253323981831886e-06 - sys_38: -0.00017965398833573554 - sys_39: 0.0002732588488254138 - sys_40: -2.6875640361577664e-05 - sys_41: 0.0003751865160568127 - sys_42: -7.11186120860371e-05 - sys_43: -2.9420533418082636e-05 - sys_44: 3.0275893326121353e-05 - sys_45: -3.334595758983587e-05 - sys_46: 2.4104601219031426e-06 - sys_47: 2.3303574700552247e-05 - sys_48: -1.9058664809850555e-05 - sys_49: -3.6385944807434056e-05 - sys_50: -4.132591612080452e-05 - sys_51: 6.721609973330964e-05 - sys_52: -0.00027778621178377934 - sys_53: 0.0002111479735554243 - sys_54: 1.0202354904037047e-05 - sys_55: -3.4992087201647383e-06 + pol: 2.37600000e-04 + sys_0: -3.16305589e-05 + sys_1: -1.21905670e-04 + sys_2: -7.72376677e-05 + sys_3: 5.51955367e-05 + sys_4: 2.60895866e-05 + sys_5: 1.47950789e-04 + sys_6: -2.80607481e-04 + sys_7: 1.09345283e-04 + sys_8: -1.05404843e-06 + sys_9: 8.51368746e-05 + sys_10: -5.24149638e-05 + sys_11: 3.09556384e-04 + sys_12: -2.26775136e-04 + sys_13: 3.39426070e-04 + sys_14: 2.66080541e-04 + sys_15: -1.15540915e-04 + sys_16: -1.65894298e-04 + sys_17: 9.72151287e-07 + sys_18: -2.42182391e-04 + sys_19: 9.03890041e-05 + sys_20: 2.06269972e-05 + sys_21: -1.05275152e-05 + sys_22: 1.26571010e-04 + sys_23: -4.69804930e-06 + sys_24: 4.42174993e-06 + sys_25: 1.09901599e-06 + sys_26: 8.98106142e-06 + sys_27: 4.33752868e-06 + sys_28: -5.74963669e-05 + sys_29: -1.08440968e-05 + sys_30: -1.21205414e-04 + sys_31: 2.80476073e-04 + sys_32: -2.47670714e-03 + sys_33: 1.06722515e-04 + sys_34: -2.61108676e-04 + sys_35: -4.61246582e-04 + sys_36: 1.16976748e-05 + sys_37: 9.25332398e-06 + sys_38: -1.79653988e-04 + sys_39: 2.73258849e-04 + sys_40: -2.68756404e-05 + sys_41: 3.75186516e-04 + sys_42: -7.11186121e-05 + sys_43: -2.94205334e-05 + sys_44: 3.02758933e-05 + sys_45: -3.33459576e-05 + sys_46: 2.41046012e-06 + sys_47: 2.33035747e-05 + sys_48: -1.90586648e-05 + sys_49: -3.63859448e-05 + sys_50: -4.13259161e-05 + sys_51: 6.72160997e-05 + sys_52: -2.77786212e-04 + sys_53: 2.11147974e-04 + sys_54: 1.02023549e-05 + sys_55: -3.49920872e-06 - lumi_ue: 0.000231 - pol: 0.0011154 - sys_0: -0.0001221258119813296 - sys_1: -0.0003303628556244106 - sys_2: -0.0003109562180312403 - sys_3: 0.00015438182401224593 - sys_4: 6.699205092404424e-05 - sys_5: 0.00044210133344476694 - sys_6: -0.00040581641609976926 - sys_7: 0.00043005270918255816 - sys_8: -9.287792081359814e-06 - sys_9: 0.00026598360844224696 - sys_10: -0.00015546125917554048 - sys_11: 0.00031160680868420247 - sys_12: -0.00019514670332643075 - sys_13: 0.0003805315053511701 - sys_14: 0.00042176213967702196 - sys_15: -0.0005274139876770941 - sys_16: -8.625475383004123e-05 - sys_17: -4.817720942921646e-06 - sys_18: -0.00018405109393553306 - sys_19: 6.98977219179869e-05 - sys_20: 0.000220591311478677 - sys_21: 8.04942813020923e-05 - sys_22: 6.731458612450418e-05 - sys_23: -1.8990214549143054e-06 - sys_24: 2.5312022200052537e-06 - sys_25: -1.6732300653937863e-06 - sys_26: 4.060093311450399e-06 - sys_27: -7.88058152620028e-06 - sys_28: -1.94875921780873e-05 - sys_29: -4.689512780980357e-06 - sys_30: -4.1702863562590585e-05 - sys_31: 9.253049994909151e-05 - sys_32: -0.00031459595838990144 - sys_33: -0.0001974154727192351 - sys_34: 0.0012846710729111565 - sys_35: 0.0030463274791514075 - sys_36: 0.0005925529780293722 - sys_37: -0.0001303002005612123 - sys_38: -1.7039395932307743e-05 - sys_39: 0.0002450171109268268 - sys_40: -2.9549069857870015e-05 - sys_41: 0.0004154600463785693 - sys_42: -0.00011262368872626591 - sys_43: 3.790079413755381e-05 - sys_44: 4.341544597905749e-05 - sys_45: 1.7443824761449846e-05 - sys_46: 3.7056071878773474e-05 - sys_47: 2.398571887844324e-05 - sys_48: -1.8001169927202303e-05 - sys_49: -2.5859607088736972e-05 - sys_50: -2.64460248138585e-05 - sys_51: 8.938428236857492e-05 - sys_52: -0.0002183175723708199 - sys_53: 0.0006684626683092056 - sys_54: 0.00021240367634174138 - sys_55: -1.3164680470090226e-07 + pol: 1.11540000e-03 + sys_0: -1.22125812e-04 + sys_1: -3.30362856e-04 + sys_2: -3.10956218e-04 + sys_3: 1.54381824e-04 + sys_4: 6.69920509e-05 + sys_5: 4.42101333e-04 + sys_6: -4.05816416e-04 + sys_7: 4.30052709e-04 + sys_8: -9.28779208e-06 + sys_9: 2.65983608e-04 + sys_10: -1.55461259e-04 + sys_11: 3.11606809e-04 + sys_12: -1.95146703e-04 + sys_13: 3.80531505e-04 + sys_14: 4.21762140e-04 + sys_15: -5.27413988e-04 + sys_16: -8.62547538e-05 + sys_17: -4.81772094e-06 + sys_18: -1.84051094e-04 + sys_19: 6.98977219e-05 + sys_20: 2.20591311e-04 + sys_21: 8.04942813e-05 + sys_22: 6.73145861e-05 + sys_23: -1.89902145e-06 + sys_24: 2.53120222e-06 + sys_25: -1.67323007e-06 + sys_26: 4.06009331e-06 + sys_27: -7.88058153e-06 + sys_28: -1.94875922e-05 + sys_29: -4.68951278e-06 + sys_30: -4.17028636e-05 + sys_31: 9.25304999e-05 + sys_32: -3.14595958e-04 + sys_33: -1.97415473e-04 + sys_34: 1.28467107e-03 + sys_35: 3.04632748e-03 + sys_36: 5.92552978e-04 + sys_37: -1.30300201e-04 + sys_38: -1.70393959e-05 + sys_39: 2.45017111e-04 + sys_40: -2.95490699e-05 + sys_41: 4.15460046e-04 + sys_42: -1.12623689e-04 + sys_43: 3.79007941e-05 + sys_44: 4.34154460e-05 + sys_45: 1.74438248e-05 + sys_46: 3.70560719e-05 + sys_47: 2.39857189e-05 + sys_48: -1.80011699e-05 + sys_49: -2.58596071e-05 + sys_50: -2.64460248e-05 + sys_51: 8.93842824e-05 + sys_52: -2.18317572e-04 + sys_53: 6.68462668e-04 + sys_54: 2.12403676e-04 + sys_55: -1.31646805e-07 - lumi_ue: 0.000229 - pol: 0.00032472 - sys_0: -0.0005338603840331949 - sys_1: -0.0009079395928587093 - sys_2: -0.00041573039276296446 - sys_3: 0.0006152169000324048 - sys_4: 0.00025998218948008523 - sys_5: 0.0004785319770068095 - sys_6: -0.0003435647151625757 - sys_7: 0.0004968537419461066 - sys_8: -1.5648864817982824e-05 - sys_9: 0.0009502542282858696 - sys_10: -0.0005507106508078178 - sys_11: 0.00016633025465127385 - sys_12: -6.365093621447364e-05 - sys_13: 0.0002988359780711704 - sys_14: 0.00032381782446103233 - sys_15: -0.0006081280458023681 - sys_16: 2.362134544354786e-05 - sys_17: -1.854031187816959e-05 - sys_18: -6.336477471971894e-05 - sys_19: 9.093989605933806e-05 - sys_20: 0.0007961553614959379 - sys_21: 0.0003227527467147676 - sys_22: -7.882989956617365e-05 - sys_23: -6.204736050775142e-07 - sys_24: 1.4869535575153995e-06 - sys_25: -1.979287341834535e-06 - sys_26: 1.213040565087568e-06 - sys_27: -1.2049608445550271e-05 - sys_28: -5.441981319141952e-06 - sys_29: -1.0994713221427345e-06 - sys_30: -9.425921128531888e-06 - sys_31: 2.2715960405574874e-05 - sys_32: -9.156579122082208e-05 - sys_33: -4.6854621053721446e-05 - sys_34: 0.00019451586423557707 - sys_35: 0.00032110026246865965 - sys_36: 4.12808038294482e-06 - sys_37: 7.731307644453729e-05 - sys_38: -0.00019586418858759692 - sys_39: 0.0001197414984741586 - sys_40: -3.167654033531275e-05 - sys_41: 0.0005491445113442971 - sys_42: -0.00020664107212567924 - sys_43: 0.00020705075083767138 - sys_44: 0.00012628979035639033 - sys_45: 0.00016663033350420228 - sys_46: 0.0001657887194127647 - sys_47: 8.957468123430775e-05 - sys_48: 0.0003589924966736229 - sys_49: 0.000492933452635615 - sys_50: 8.813130709503241e-05 - sys_51: -0.00042605869293185116 - sys_52: -0.000665493763147121 - sys_53: -0.0041981292084988416 - sys_54: -0.002181846273163527 - sys_55: -2.908543105804516e-05 + pol: 3.24720000e-04 + sys_0: -5.33860384e-04 + sys_1: -9.07939593e-04 + sys_2: -4.15730393e-04 + sys_3: 6.15216900e-04 + sys_4: 2.59982189e-04 + sys_5: 4.78531977e-04 + sys_6: -3.43564715e-04 + sys_7: 4.96853742e-04 + sys_8: -1.56488648e-05 + sys_9: 9.50254228e-04 + sys_10: -5.50710651e-04 + sys_11: 1.66330255e-04 + sys_12: -6.36509362e-05 + sys_13: 2.98835978e-04 + sys_14: 3.23817824e-04 + sys_15: -6.08128046e-04 + sys_16: 2.36213454e-05 + sys_17: -1.85403119e-05 + sys_18: -6.33647747e-05 + sys_19: 9.09398961e-05 + sys_20: 7.96155361e-04 + sys_21: 3.22752747e-04 + sys_22: -7.88298996e-05 + sys_23: -6.20473605e-07 + sys_24: 1.48695356e-06 + sys_25: -1.97928734e-06 + sys_26: 1.21304057e-06 + sys_27: -1.20496084e-05 + sys_28: -5.44198132e-06 + sys_29: -1.09947132e-06 + sys_30: -9.42592113e-06 + sys_31: 2.27159604e-05 + sys_32: -9.15657912e-05 + sys_33: -4.68546211e-05 + sys_34: 1.94515864e-04 + sys_35: 3.21100262e-04 + sys_36: 4.12808038e-06 + sys_37: 7.73130764e-05 + sys_38: -1.95864189e-04 + sys_39: 1.19741498e-04 + sys_40: -3.16765403e-05 + sys_41: 5.49144511e-04 + sys_42: -2.06641072e-04 + sys_43: 2.07050751e-04 + sys_44: 1.26289790e-04 + sys_45: 1.66630334e-04 + sys_46: 1.65788719e-04 + sys_47: 8.95746812e-05 + sys_48: 3.58992497e-04 + sys_49: 4.92933453e-04 + sys_50: 8.81313071e-05 + sys_51: -4.26058693e-04 + sys_52: -6.65493763e-04 + sys_53: -4.19812921e-03 + sys_54: -2.18184627e-03 + sys_55: -2.90854311e-05 - lumi_ue: 0.000227 - pol: 0.0008052000000000001 - sys_0: -0.0011344626809096712 - sys_1: -0.0013792221712864248 - sys_2: -0.000329392242682583 - sys_3: 0.0010126366388589878 - sys_4: 0.001699610366595962 - sys_5: 0.0004525807693516216 - sys_6: -0.0002475217738981166 - sys_7: 0.0005314580758777509 - sys_8: -1.3339236440910894e-05 - sys_9: 0.0012883415936785847 - sys_10: -0.001146815691194514 - sys_11: 2.251356763660468e-05 - sys_12: 3.9203649581893724e-05 - sys_13: 0.00027491501449929606 - sys_14: 0.00044517387566599484 - sys_15: -0.0011878648970476248 - sys_16: 0.0002969220321178239 - sys_17: -0.00012595242780660332 - sys_18: 0.0005172372774229966 - sys_19: -0.0014731320040351087 - sys_20: -0.007175574255665306 - sys_21: -0.0019036532222929403 - sys_22: 0.00016347268221445833 - sys_23: -2.6424785283043983e-07 - sys_24: 5.069163330685366e-07 - sys_25: -7.5706744508251e-07 - sys_26: 2.684891524557832e-07 - sys_27: -4.6448342112758165e-06 - sys_28: -6.508440201594997e-07 - sys_29: -1.2546109887159055e-07 - sys_30: -1.5038197964662278e-06 - sys_31: 4.103745069738131e-06 - sys_32: -2.434726447889671e-05 - sys_33: -1.3723437552812449e-05 - sys_34: 5.2820163497007e-05 - sys_35: 9.054089348220963e-05 - sys_36: 2.916474635474086e-06 - sys_37: 1.5291067041763268e-05 - sys_38: -4.8739629006414746e-05 - sys_39: 2.4720915727312877e-05 - sys_40: 8.03185539049643e-06 - sys_41: -0.00020147390822134424 - sys_42: 8.840807090301046e-05 - sys_43: -0.00010098444581412408 - sys_44: -3.377780668660011e-05 - sys_45: -4.6391929483815514e-05 - sys_46: -3.900749755260896e-05 - sys_47: -1.689972782246231e-05 - sys_48: 6.712962989807728e-07 - sys_49: 9.677953529212902e-06 - sys_50: 2.2456428536710567e-07 - sys_51: -1.9269861593200195e-05 - sys_52: -7.600549678236438e-05 - sys_53: -0.00037396128301101953 - sys_54: -0.00018187543885373906 - sys_55: -1.6607595284847159e-06 + pol: 8.05200000e-04 + sys_0: -1.13446268e-03 + sys_1: -1.37922217e-03 + sys_2: -3.29392243e-04 + sys_3: 1.01263664e-03 + sys_4: 1.69961037e-03 + sys_5: 4.52580769e-04 + sys_6: -2.47521774e-04 + sys_7: 5.31458076e-04 + sys_8: -1.33392364e-05 + sys_9: 1.28834159e-03 + sys_10: -1.14681569e-03 + sys_11: 2.25135676e-05 + sys_12: 3.92036496e-05 + sys_13: 2.74915014e-04 + sys_14: 4.45173876e-04 + sys_15: -1.18786490e-03 + sys_16: 2.96922032e-04 + sys_17: -1.25952428e-04 + sys_18: 5.17237277e-04 + sys_19: -1.47313200e-03 + sys_20: -7.17557426e-03 + sys_21: -1.90365322e-03 + sys_22: 1.63472682e-04 + sys_23: -2.64247853e-07 + sys_24: 5.06916333e-07 + sys_25: -7.57067445e-07 + sys_26: 2.68489152e-07 + sys_27: -4.64483421e-06 + sys_28: -6.50844020e-07 + sys_29: -1.25461099e-07 + sys_30: -1.50381980e-06 + sys_31: 4.10374507e-06 + sys_32: -2.43472645e-05 + sys_33: -1.37234376e-05 + sys_34: 5.28201635e-05 + sys_35: 9.05408935e-05 + sys_36: 2.91647464e-06 + sys_37: 1.52910670e-05 + sys_38: -4.87396290e-05 + sys_39: 2.47209157e-05 + sys_40: 8.03185539e-06 + sys_41: -2.01473908e-04 + sys_42: 8.84080709e-05 + sys_43: -1.00984446e-04 + sys_44: -3.37778067e-05 + sys_45: -4.63919295e-05 + sys_46: -3.90074976e-05 + sys_47: -1.68997278e-05 + sys_48: 6.71296299e-07 + sys_49: 9.67795353e-06 + sys_50: 2.24564285e-07 + sys_51: -1.92698616e-05 + sys_52: -7.60054968e-05 + sys_53: -3.73961283e-04 + sys_54: -1.81875439e-04 + sys_55: -1.66075953e-06 - lumi_ue: 0.000226 - pol: 0.00011682000000000001 - sys_0: -0.0011792988988075731 - sys_1: -0.0015546247617396914 - sys_2: -0.00025096010725788855 - sys_3: 0.0012142135722346382 - sys_4: 0.0031897442521219488 - sys_5: 0.0003916856511898733 - sys_6: -0.00019509320187065246 - sys_7: 0.0006419893362667935 - sys_8: -7.9786442952424e-06 - sys_9: 0.004811853930770773 - sys_10: 0.012190577150071543 - sys_11: 0.0004309839837587566 - sys_12: -0.0003317571983018982 - sys_13: -5.026655400430126e-05 - sys_14: -5.6915537323461034e-05 - sys_15: 0.0002337791787705857 - sys_16: -3.270627013391562e-05 - sys_17: 1.5422448388675863e-06 - sys_18: -1.1648447773508745e-05 - sys_19: -4.025658319218279e-05 - sys_20: -0.0002950878768225368 - sys_21: -9.186854792380637e-05 - sys_22: 1.9978725959354934e-05 - sys_23: -8.16293314557069e-08 - sys_24: 1.2237212123198691e-07 - sys_25: -2.0077488117755247e-07 - sys_26: 8.597832244662063e-08 - sys_27: -1.2533583945317959e-06 - sys_28: 2.70253213596476e-07 - sys_29: 4.623989610307794e-08 - sys_30: 4.0273410889134297e-07 - sys_31: -9.15789829966761e-08 - sys_32: -3.6753963676041357e-06 - sys_33: -3.1819434947697865e-06 - sys_34: 1.1238115884330596e-05 - sys_35: 1.8002818181887514e-05 - sys_36: -4.0514435731218793e-07 - sys_37: 2.4643777793564052e-06 - sys_38: -1.2116912511564803e-05 - sys_39: 1.4063399318466266e-05 - sys_40: -1.81206785361672e-06 - sys_41: -1.2343342922587846e-05 - sys_42: 6.507217148048049e-06 - sys_43: -1.3346961995241039e-05 - sys_44: -3.6840397081867744e-06 - sys_45: -6.742826722031085e-06 - sys_46: -4.98960918939173e-06 - sys_47: -3.2207567685592116e-06 - sys_48: 1.1025377226627197e-06 - sys_49: 1.570631035584556e-06 - sys_50: 1.7425869069719492e-07 - sys_51: -2.4112506769101868e-06 - sys_52: -1.9812639905558676e-05 - sys_53: -7.624997370229335e-05 - sys_54: -3.6212423825549856e-05 - sys_55: -9.090214968964486e-07 + pol: 1.16820000e-04 + sys_0: -1.17929890e-03 + sys_1: -1.55462476e-03 + sys_2: -2.50960107e-04 + sys_3: 1.21421357e-03 + sys_4: 3.18974425e-03 + sys_5: 3.91685651e-04 + sys_6: -1.95093202e-04 + sys_7: 6.41989336e-04 + sys_8: -7.97864430e-06 + sys_9: 4.81185393e-03 + sys_10: 1.21905772e-02 + sys_11: 4.30983984e-04 + sys_12: -3.31757198e-04 + sys_13: -5.02665540e-05 + sys_14: -5.69155373e-05 + sys_15: 2.33779179e-04 + sys_16: -3.27062701e-05 + sys_17: 1.54224484e-06 + sys_18: -1.16484478e-05 + sys_19: -4.02565832e-05 + sys_20: -2.95087877e-04 + sys_21: -9.18685479e-05 + sys_22: 1.99787260e-05 + sys_23: -8.16293315e-08 + sys_24: 1.22372121e-07 + sys_25: -2.00774881e-07 + sys_26: 8.59783224e-08 + sys_27: -1.25335839e-06 + sys_28: 2.70253214e-07 + sys_29: 4.62398961e-08 + sys_30: 4.02734109e-07 + sys_31: -9.15789830e-08 + sys_32: -3.67539637e-06 + sys_33: -3.18194349e-06 + sys_34: 1.12381159e-05 + sys_35: 1.80028182e-05 + sys_36: -4.05144357e-07 + sys_37: 2.46437778e-06 + sys_38: -1.21169125e-05 + sys_39: 1.40633993e-05 + sys_40: -1.81206785e-06 + sys_41: -1.23433429e-05 + sys_42: 6.50721715e-06 + sys_43: -1.33469620e-05 + sys_44: -3.68403971e-06 + sys_45: -6.74282672e-06 + sys_46: -4.98960919e-06 + sys_47: -3.22075677e-06 + sys_48: 1.10253772e-06 + sys_49: 1.57063104e-06 + sys_50: 1.74258691e-07 + sys_51: -2.41125068e-06 + sys_52: -1.98126399e-05 + sys_53: -7.62499737e-05 + sys_54: -3.62124238e-05 + sys_55: -9.09021497e-07 diff --git a/nnpdf_data/nnpdf_data/commondata/STAR-2012_2JET_510GEV/kinematics_A.yaml b/nnpdf_data/nnpdf_data/commondata/STAR-2012_2JET_510GEV/kinematics_A.yaml index 50c243e4c3..d6ade8fff6 100644 --- a/nnpdf_data/nnpdf_data/commondata/STAR-2012_2JET_510GEV/kinematics_A.yaml +++ b/nnpdf_data/nnpdf_data/commondata/STAR-2012_2JET_510GEV/kinematics_A.yaml @@ -33,7 +33,7 @@ bins: min: 0.3 m_jj: max: 27.46 - mid: 26.380000000000003 + mid: 2.63800000e+01 min: 25.3 - abs_eta_1: max: 0.9 @@ -105,7 +105,7 @@ bins: min: 0.3 m_jj: max: 77.76 - mid: 75.55000000000001 + mid: 7.55500000e+01 min: 73.34 - abs_eta_1: max: 0.9 diff --git a/nnpdf_data/nnpdf_data/commondata/STAR-2012_2JET_510GEV/kinematics_D.yaml b/nnpdf_data/nnpdf_data/commondata/STAR-2012_2JET_510GEV/kinematics_D.yaml index 4a58097629..ad3a550b60 100644 --- a/nnpdf_data/nnpdf_data/commondata/STAR-2012_2JET_510GEV/kinematics_D.yaml +++ b/nnpdf_data/nnpdf_data/commondata/STAR-2012_2JET_510GEV/kinematics_D.yaml @@ -81,7 +81,7 @@ bins: min: 0.3 m_jj: max: 55.84 - mid: 54.150000000000006 + mid: 5.41500000e+01 min: 52.46 - abs_eta_1: max: 0.9 diff --git a/nnpdf_data/nnpdf_data/commondata/STAR-2012_2JET_510GEV/uncertainties_A.yaml b/nnpdf_data/nnpdf_data/commondata/STAR-2012_2JET_510GEV/uncertainties_A.yaml index 1fcb43cc36..0b9f8228d8 100644 --- a/nnpdf_data/nnpdf_data/commondata/STAR-2012_2JET_510GEV/uncertainties_A.yaml +++ b/nnpdf_data/nnpdf_data/commondata/STAR-2012_2JET_510GEV/uncertainties_A.yaml @@ -233,582 +233,582 @@ definitions: type: STAR2012JETunc55 bins: - lumi_ue: 0.00025 - pol: 0.0008448 - sys_0: -1.4932704724905255e-05 - sys_1: -6.647759476165108e-05 - sys_2: 1.6304013147643085e-06 - sys_3: 3.267462248739679e-05 - sys_4: 1.8648986103258336e-05 - sys_5: 2.1859553427068562e-05 - sys_6: -2.7642604719951672e-05 - sys_7: 2.411568898779232e-05 - sys_8: -8.852057229839798e-07 - sys_9: 1.9676436951533105e-05 - sys_10: -2.4701369301961126e-05 - sys_11: 3.277322832275976e-05 - sys_12: -1.9051228579495078e-05 - sys_13: 2.8111048267586958e-05 - sys_14: 5.125095098444276e-05 - sys_15: -1.0412074064088851e-05 - sys_16: -4.300065945928981e-05 - sys_17: 1.727949172508465e-05 - sys_18: -7.287847990578479e-05 - sys_19: 4.2395945903595756e-05 - sys_20: 5.826381249558396e-05 - sys_21: -3.533311895189258e-05 - sys_22: 0.00012248966955610155 - sys_23: -9.379346352905975e-06 - sys_24: 5.681445437859451e-06 - sys_25: 9.202584136999965e-07 - sys_26: 4.343627388830994e-06 - sys_27: 9.993231385712352e-06 - sys_28: 4.052711840197391e-06 - sys_29: -9.609466949303551e-07 - sys_30: -6.55275826795239e-07 - sys_31: 2.0825276438609797e-06 - sys_32: -3.8328890450057295e-06 - sys_33: 2.924095588030233e-06 - sys_34: -2.085307795062002e-06 - sys_35: 9.400423076266945e-06 - sys_36: 7.944704158278199e-06 - sys_37: -6.43328679302424e-06 - sys_38: 1.5129964549856419e-05 - sys_39: 0.0012899074899339665 - sys_40: -0.006267890179352214 - sys_41: -0.0015718393759980955 - sys_42: -0.0001813899063373824 - sys_43: 0.0002748939436320759 - sys_44: 5.3513357729678854e-05 - sys_45: 0.0001253506327616919 - sys_46: 3.6915846629124156e-05 - sys_47: 2.9581938993882046e-05 - sys_48: 3.03726014003442e-05 - sys_49: 5.7357326164347856e-05 - sys_50: 1.2606125720048856e-06 - sys_51: -1.6576428176354194e-05 - sys_52: 1.9200241238281744e-05 - sys_53: -2.0752895197594462e-05 - sys_54: -3.0884856723758726e-05 - sys_55: -5.3237605685032924e-06 + pol: 8.44800000e-04 + sys_0: -1.49327047e-05 + sys_1: -6.64775948e-05 + sys_2: 1.63040131e-06 + sys_3: 3.26746225e-05 + sys_4: 1.86489861e-05 + sys_5: 2.18595534e-05 + sys_6: -2.76426047e-05 + sys_7: 2.41156890e-05 + sys_8: -8.85205723e-07 + sys_9: 1.96764370e-05 + sys_10: -2.47013693e-05 + sys_11: 3.27732283e-05 + sys_12: -1.90512286e-05 + sys_13: 2.81110483e-05 + sys_14: 5.12509510e-05 + sys_15: -1.04120741e-05 + sys_16: -4.30006595e-05 + sys_17: 1.72794917e-05 + sys_18: -7.28784799e-05 + sys_19: 4.23959459e-05 + sys_20: 5.82638125e-05 + sys_21: -3.53331190e-05 + sys_22: 1.22489670e-04 + sys_23: -9.37934635e-06 + sys_24: 5.68144544e-06 + sys_25: 9.20258414e-07 + sys_26: 4.34362739e-06 + sys_27: 9.99323139e-06 + sys_28: 4.05271184e-06 + sys_29: -9.60946695e-07 + sys_30: -6.55275827e-07 + sys_31: 2.08252764e-06 + sys_32: -3.83288905e-06 + sys_33: 2.92409559e-06 + sys_34: -2.08530780e-06 + sys_35: 9.40042308e-06 + sys_36: 7.94470416e-06 + sys_37: -6.43328679e-06 + sys_38: 1.51299645e-05 + sys_39: 1.28990749e-03 + sys_40: -6.26789018e-03 + sys_41: -1.57183938e-03 + sys_42: -1.81389906e-04 + sys_43: 2.74893944e-04 + sys_44: 5.35133577e-05 + sys_45: 1.25350633e-04 + sys_46: 3.69158466e-05 + sys_47: 2.95819390e-05 + sys_48: 3.03726014e-05 + sys_49: 5.73573262e-05 + sys_50: 1.26061257e-06 + sys_51: -1.65764282e-05 + sys_52: 1.92002412e-05 + sys_53: -2.07528952e-05 + sys_54: -3.08848567e-05 + sys_55: -5.32376057e-06 - lumi_ue: 0.00058 pol: 0.000594 - sys_0: -1.7448697144571922e-05 - sys_1: -7.071716384626237e-05 - sys_2: 5.646906878226052e-06 - sys_3: 3.8817205571690656e-05 - sys_4: 1.696441321072074e-05 - sys_5: 2.279058467308936e-05 - sys_6: -3.257219731054097e-05 - sys_7: 3.336011307342496e-05 - sys_8: 4.690322197472614e-06 - sys_9: 2.3024912136204683e-05 - sys_10: -2.1094342118636492e-05 - sys_11: 2.857948239326711e-05 - sys_12: -1.8216546513776565e-05 - sys_13: 4.510696651734481e-05 - sys_14: 4.078102228616596e-05 - sys_15: -1.3019619276026074e-05 - sys_16: -3.277024211365993e-05 - sys_17: 9.51306465492233e-06 - sys_18: -8.678525323332635e-05 - sys_19: 2.0441585641252666e-05 - sys_20: 3.178381245934244e-05 - sys_21: -1.5788409751183547e-05 - sys_22: 4.1181816954804246e-05 - sys_23: -9.165767783635116e-06 - sys_24: 1.4816335695786819e-05 - sys_25: -1.4020444450288541e-05 - sys_26: 7.1077799397179436e-06 - sys_27: 1.101602083079386e-05 - sys_28: 6.430719677034122e-06 - sys_29: -9.735382411825231e-06 - sys_30: -3.446802972541058e-06 - sys_31: 4.970156932781896e-06 - sys_32: -8.367314527027635e-06 - sys_33: 8.25212512148589e-06 - sys_34: -4.968461096105256e-06 - sys_35: 2.1803301622732264e-05 - sys_36: 2.050422571999481e-05 - sys_37: -1.4094289852543457e-05 - sys_38: 3.7447124982005454e-05 - sys_39: 0.00011752363784629808 - sys_40: -3.0028086803990483e-05 - sys_41: 2.5759690809526124e-05 - sys_42: 2.16431401608747e-05 - sys_43: -0.00013776566395570867 - sys_44: -3.748260234220551e-05 - sys_45: -0.0001766870602681217 - sys_46: -1.7013876153334286e-05 - sys_47: -1.6647001254631725e-05 - sys_48: -0.0006373704346196151 - sys_49: -0.0031149566780889343 - sys_50: 0.0040129294269093405 - sys_51: -0.000342245527470298 - sys_52: 0.00021945602947119988 - sys_53: 4.546261319796253e-05 - sys_54: -0.0006668489316885729 - sys_55: -0.0003946233239617977 + sys_0: -1.74486971e-05 + sys_1: -7.07171638e-05 + sys_2: 5.64690688e-06 + sys_3: 3.88172056e-05 + sys_4: 1.69644132e-05 + sys_5: 2.27905847e-05 + sys_6: -3.25721973e-05 + sys_7: 3.33601131e-05 + sys_8: 4.69032220e-06 + sys_9: 2.30249121e-05 + sys_10: -2.10943421e-05 + sys_11: 2.85794824e-05 + sys_12: -1.82165465e-05 + sys_13: 4.51069665e-05 + sys_14: 4.07810223e-05 + sys_15: -1.30196193e-05 + sys_16: -3.27702421e-05 + sys_17: 9.51306465e-06 + sys_18: -8.67852532e-05 + sys_19: 2.04415856e-05 + sys_20: 3.17838125e-05 + sys_21: -1.57884098e-05 + sys_22: 4.11818170e-05 + sys_23: -9.16576778e-06 + sys_24: 1.48163357e-05 + sys_25: -1.40204445e-05 + sys_26: 7.10777994e-06 + sys_27: 1.10160208e-05 + sys_28: 6.43071968e-06 + sys_29: -9.73538241e-06 + sys_30: -3.44680297e-06 + sys_31: 4.97015693e-06 + sys_32: -8.36731453e-06 + sys_33: 8.25212512e-06 + sys_34: -4.96846110e-06 + sys_35: 2.18033016e-05 + sys_36: 2.05042257e-05 + sys_37: -1.40942899e-05 + sys_38: 3.74471250e-05 + sys_39: 1.17523638e-04 + sys_40: -3.00280868e-05 + sys_41: 2.57596908e-05 + sys_42: 2.16431402e-05 + sys_43: -1.37765664e-04 + sys_44: -3.74826023e-05 + sys_45: -1.76687060e-04 + sys_46: -1.70138762e-05 + sys_47: -1.66470013e-05 + sys_48: -6.37370435e-04 + sys_49: -3.11495668e-03 + sys_50: 4.01292943e-03 + sys_51: -3.42245527e-04 + sys_52: 2.19456029e-04 + sys_53: 4.54626132e-05 + sys_54: -6.66848932e-04 + sys_55: -3.94623324e-04 - lumi_ue: 0.00062 - pol: 0.0005214000000000001 - sys_0: -2.2851926122450212e-05 - sys_1: -0.00011157815978401777 - sys_2: 5.221142945512799e-06 - sys_3: 5.7090303351431875e-05 - sys_4: 2.619437124428154e-05 - sys_5: 3.823053046442168e-05 - sys_6: -5.149922129912099e-05 - sys_7: 4.9416342833709876e-05 - sys_8: 3.796555649981052e-06 - sys_9: 3.670104658530883e-05 - sys_10: -3.388345807073157e-05 - sys_11: 4.3308939569458314e-05 - sys_12: -3.091524058091447e-05 - sys_13: 6.0125719695630434e-05 - sys_14: 6.78895457687172e-05 - sys_15: -1.835082425436144e-05 - sys_16: -4.452143092340561e-05 - sys_17: 1.6085246666285897e-05 - sys_18: -0.00010386604724175398 - sys_19: 3.7534580763827854e-05 - sys_20: 4.584564863008995e-05 - sys_21: -3.005832317950152e-05 - sys_22: 7.109552827629553e-05 - sys_23: -3.6517075944629166e-06 - sys_24: 1.3598290832216987e-05 - sys_25: -2.016980828465091e-05 - sys_26: 5.541075519536241e-06 - sys_27: -1.732732019737771e-06 - sys_28: 2.9990753025709733e-05 - sys_29: -1.721168843969577e-05 - sys_30: -4.855410306642236e-07 - sys_31: 1.0558079391693992e-05 - sys_32: -1.6495214077089637e-05 - sys_33: 1.4249011390185267e-05 - sys_34: -1.754397376593308e-05 - sys_35: 4.4191097428797754e-05 - sys_36: 4.0403813375933595e-05 - sys_37: -3.731497879222241e-05 - sys_38: 9.593764855402269e-05 - sys_39: 0.00015427411122779437 - sys_40: -2.787027614254852e-05 - sys_41: 3.607027125553098e-05 - sys_42: 2.0716958978091682e-05 - sys_43: -0.0001384459110506078 - sys_44: -4.887669306888362e-05 - sys_45: -0.00018237578495351265 - sys_46: -3.85344771212543e-05 - sys_47: -3.4283846114595465e-05 - sys_48: -0.00032837124127180455 - sys_49: -0.0010815720455086607 - sys_50: 8.477427264166194e-05 - sys_51: 0.00024609070374345123 - sys_52: -0.00044602808046788806 - sys_53: -0.001724025093326953 - sys_54: 0.0031712262544664363 - sys_55: 0.0032289552139118357 + pol: 5.21400000e-04 + sys_0: -2.28519261e-05 + sys_1: -1.11578160e-04 + sys_2: 5.22114295e-06 + sys_3: 5.70903034e-05 + sys_4: 2.61943712e-05 + sys_5: 3.82305305e-05 + sys_6: -5.14992213e-05 + sys_7: 4.94163428e-05 + sys_8: 3.79655565e-06 + sys_9: 3.67010466e-05 + sys_10: -3.38834581e-05 + sys_11: 4.33089396e-05 + sys_12: -3.09152406e-05 + sys_13: 6.01257197e-05 + sys_14: 6.78895458e-05 + sys_15: -1.83508243e-05 + sys_16: -4.45214309e-05 + sys_17: 1.60852467e-05 + sys_18: -1.03866047e-04 + sys_19: 3.75345808e-05 + sys_20: 4.58456486e-05 + sys_21: -3.00583232e-05 + sys_22: 7.10955283e-05 + sys_23: -3.65170759e-06 + sys_24: 1.35982908e-05 + sys_25: -2.01698083e-05 + sys_26: 5.54107552e-06 + sys_27: -1.73273202e-06 + sys_28: 2.99907530e-05 + sys_29: -1.72116884e-05 + sys_30: -4.85541031e-07 + sys_31: 1.05580794e-05 + sys_32: -1.64952141e-05 + sys_33: 1.42490114e-05 + sys_34: -1.75439738e-05 + sys_35: 4.41910974e-05 + sys_36: 4.04038134e-05 + sys_37: -3.73149788e-05 + sys_38: 9.59376486e-05 + sys_39: 1.54274111e-04 + sys_40: -2.78702761e-05 + sys_41: 3.60702713e-05 + sys_42: 2.07169590e-05 + sys_43: -1.38445911e-04 + sys_44: -4.88766931e-05 + sys_45: -1.82375785e-04 + sys_46: -3.85344771e-05 + sys_47: -3.42838461e-05 + sys_48: -3.28371241e-04 + sys_49: -1.08157205e-03 + sys_50: 8.47742726e-05 + sys_51: 2.46090704e-04 + sys_52: -4.46028080e-04 + sys_53: -1.72402509e-03 + sys_54: 3.17122625e-03 + sys_55: 3.22895521e-03 - lumi_ue: 0.00056 pol: 7.92e-05 - sys_0: -2.3623708728190546e-05 - sys_1: -0.00010876906699337702 - sys_2: 9.151279180348206e-06 - sys_3: 5.551935358794661e-05 - sys_4: 2.8444846070866478e-05 - sys_5: 3.986789519658044e-05 - sys_6: -4.844079091091976e-05 - sys_7: 4.729753274318068e-05 - sys_8: 4.1672873884147974e-06 - sys_9: 3.996944038730772e-05 - sys_10: -3.433741645677858e-05 - sys_11: 4.612160873474085e-05 - sys_12: -2.761459219162918e-05 - sys_13: 5.8835972342787336e-05 - sys_14: 6.980237794885908e-05 - sys_15: -2.381458230401356e-05 - sys_16: -5.1680519436975495e-05 - sys_17: 1.725845073219176e-05 - sys_18: -0.00010967456146205191 - sys_19: 4.583108235577271e-05 - sys_20: 5.48632290878771e-05 - sys_21: -2.5241308436592962e-05 - sys_22: 7.656423555870327e-05 - sys_23: -2.334774723849393e-07 - sys_24: 5.1185372387078425e-06 - sys_25: -1.7875169135334e-05 - sys_26: 1.952901577793033e-06 - sys_27: -1.171835943495391e-05 - sys_28: 4.512647379525341e-05 - sys_29: -1.2918838268791889e-05 - sys_30: 2.1790581155091725e-05 - sys_31: -9.699229020759949e-06 - sys_32: -3.573533140268563e-06 - sys_33: 1.0850972808664052e-05 - sys_34: -2.172224083436964e-05 - sys_35: 4.149964496378775e-05 - sys_36: 2.6118171090673512e-05 - sys_37: -3.8175981641945417e-05 - sys_38: 0.00010555994226455577 - sys_39: 0.00018753593454473206 - sys_40: -3.187504462854684e-05 - sys_41: 5.228482459813485e-05 - sys_42: 2.565210734910968e-05 - sys_43: -0.00015544116820487026 - sys_44: -5.8270751411587516e-05 - sys_45: -0.00020146611035755285 - sys_46: -6.206021185913475e-05 - sys_47: -4.714465896165617e-05 - sys_48: -0.0008159488079764945 - sys_49: -0.003768728974603645 - sys_50: -0.003251413414299916 - sys_51: -0.0006138224132431958 - sys_52: 0.0006535156768813012 - sys_53: -0.00017138528974785895 - sys_54: -0.0007568106605238623 - sys_55: -0.0003960197253202623 + sys_0: -2.36237087e-05 + sys_1: -1.08769067e-04 + sys_2: 9.15127918e-06 + sys_3: 5.55193536e-05 + sys_4: 2.84448461e-05 + sys_5: 3.98678952e-05 + sys_6: -4.84407909e-05 + sys_7: 4.72975327e-05 + sys_8: 4.16728739e-06 + sys_9: 3.99694404e-05 + sys_10: -3.43374165e-05 + sys_11: 4.61216087e-05 + sys_12: -2.76145922e-05 + sys_13: 5.88359723e-05 + sys_14: 6.98023779e-05 + sys_15: -2.38145823e-05 + sys_16: -5.16805194e-05 + sys_17: 1.72584507e-05 + sys_18: -1.09674561e-04 + sys_19: 4.58310824e-05 + sys_20: 5.48632291e-05 + sys_21: -2.52413084e-05 + sys_22: 7.65642356e-05 + sys_23: -2.33477472e-07 + sys_24: 5.11853724e-06 + sys_25: -1.78751691e-05 + sys_26: 1.95290158e-06 + sys_27: -1.17183594e-05 + sys_28: 4.51264738e-05 + sys_29: -1.29188383e-05 + sys_30: 2.17905812e-05 + sys_31: -9.69922902e-06 + sys_32: -3.57353314e-06 + sys_33: 1.08509728e-05 + sys_34: -2.17222408e-05 + sys_35: 4.14996450e-05 + sys_36: 2.61181711e-05 + sys_37: -3.81759816e-05 + sys_38: 1.05559942e-04 + sys_39: 1.87535935e-04 + sys_40: -3.18750446e-05 + sys_41: 5.22848246e-05 + sys_42: 2.56521073e-05 + sys_43: -1.55441168e-04 + sys_44: -5.82707514e-05 + sys_45: -2.01466110e-04 + sys_46: -6.20602119e-05 + sys_47: -4.71446590e-05 + sys_48: -8.15948808e-04 + sys_49: -3.76872897e-03 + sys_50: -3.25141341e-03 + sys_51: -6.13822413e-04 + sys_52: 6.53515677e-04 + sys_53: -1.71385290e-04 + sys_54: -7.56810661e-04 + sys_55: -3.96019725e-04 - lumi_ue: 0.00051 - pol: 0.0006666 - sys_0: -2.7891533631211266e-05 - sys_1: -0.00012929392394763224 - sys_2: 1.0710338036597318e-05 - sys_3: 6.633442417451365e-05 - sys_4: 3.4239472998050566e-05 - sys_5: 4.923498103322085e-05 - sys_6: -6.629538233407716e-05 - sys_7: 5.7463279954453305e-05 - sys_8: 5.004736189596036e-06 - sys_9: 5.02852482145784e-05 - sys_10: -4.448168816830277e-05 - sys_11: 6.04176153177957e-05 - sys_12: -4.41879506507135e-05 - sys_13: 7.930802555576968e-05 - sys_14: 9.783427388456047e-05 - sys_15: -3.58644659898346e-05 - sys_16: -7.719856733092557e-05 - sys_17: 2.514408753725819e-05 - sys_18: -0.00016209748434546317 - sys_19: 7.67089237398455e-05 - sys_20: 7.985523616998218e-05 - sys_21: -4.619178599057625e-05 - sys_22: 0.00016676158562573855 - sys_23: 8.248269473218922e-07 - sys_24: 5.934300341964898e-07 - sys_25: -6.361204083204371e-06 - sys_26: -1.4456966382386906e-06 - sys_27: -1.088308924472088e-05 - sys_28: 3.9663450972863385e-05 - sys_29: -6.173677194427815e-07 - sys_30: 2.9262592501511557e-05 - sys_31: -2.2199913350734178e-05 - sys_32: 1.5326353337646e-05 - sys_33: 5.699433722653384e-06 - sys_34: -2.0724471011620857e-05 - sys_35: 1.1935887724340418e-05 - sys_36: 1.0363457523732718e-05 - sys_37: -2.236280890287778e-05 - sys_38: 6.80715274149479e-05 - sys_39: 0.0005023267867951351 - sys_40: -9.41300480685047e-05 - sys_41: 0.00018752809878477643 - sys_42: 7.223232117327516e-05 - sys_43: -0.0005060619730382406 - sys_44: -0.0005102890224236617 - sys_45: -0.005950058684181288 - sys_46: 0.0009089929208653002 - sys_47: 0.0001864585540345746 - sys_48: 0.00013470051519680633 - sys_49: 0.00030841193930427994 - sys_50: 2.8065446442519456e-06 - sys_51: -5.263565860293614e-05 - sys_52: 0.00010180453157592387 - sys_53: -4.089053669825346e-05 - sys_54: -0.00010560183967338022 - sys_55: -6.0370813926021314e-05 + pol: 6.66600000e-04 + sys_0: -2.78915336e-05 + sys_1: -1.29293924e-04 + sys_2: 1.07103380e-05 + sys_3: 6.63344242e-05 + sys_4: 3.42394730e-05 + sys_5: 4.92349810e-05 + sys_6: -6.62953823e-05 + sys_7: 5.74632800e-05 + sys_8: 5.00473619e-06 + sys_9: 5.02852482e-05 + sys_10: -4.44816882e-05 + sys_11: 6.04176153e-05 + sys_12: -4.41879507e-05 + sys_13: 7.93080256e-05 + sys_14: 9.78342739e-05 + sys_15: -3.58644660e-05 + sys_16: -7.71985673e-05 + sys_17: 2.51440875e-05 + sys_18: -1.62097484e-04 + sys_19: 7.67089237e-05 + sys_20: 7.98552362e-05 + sys_21: -4.61917860e-05 + sys_22: 1.66761586e-04 + sys_23: 8.24826947e-07 + sys_24: 5.93430034e-07 + sys_25: -6.36120408e-06 + sys_26: -1.44569664e-06 + sys_27: -1.08830892e-05 + sys_28: 3.96634510e-05 + sys_29: -6.17367719e-07 + sys_30: 2.92625925e-05 + sys_31: -2.21999134e-05 + sys_32: 1.53263533e-05 + sys_33: 5.69943372e-06 + sys_34: -2.07244710e-05 + sys_35: 1.19358877e-05 + sys_36: 1.03634575e-05 + sys_37: -2.23628089e-05 + sys_38: 6.80715274e-05 + sys_39: 5.02326787e-04 + sys_40: -9.41300481e-05 + sys_41: 1.87528099e-04 + sys_42: 7.22323212e-05 + sys_43: -5.06061973e-04 + sys_44: -5.10289022e-04 + sys_45: -5.95005868e-03 + sys_46: 9.08992921e-04 + sys_47: 1.86458554e-04 + sys_48: 1.34700515e-04 + sys_49: 3.08411939e-04 + sys_50: 2.80654464e-06 + sys_51: -5.26356586e-05 + sys_52: 1.01804532e-04 + sys_53: -4.08905367e-05 + sys_54: -1.05601840e-04 + sys_55: -6.03708139e-05 - lumi_ue: 0.00046 pol: 8.58e-05 - sys_0: -4.3579714600736505e-05 - sys_1: -0.00018304764706878 - sys_2: 1.537184860857725e-05 - sys_3: 9.012983267993861e-05 - sys_4: 4.3890855414141954e-05 - sys_5: 6.688085439890568e-05 - sys_6: -8.422569644729845e-05 - sys_7: 7.397521730202956e-05 - sys_8: 4.828952326860572e-06 - sys_9: 7.287853181518538e-05 - sys_10: -6.282384008406175e-05 - sys_11: 8.20929552047318e-05 - sys_12: -5.4478177180569555e-05 - sys_13: 0.00010161893459716087 - sys_14: 0.00015558830236844773 - sys_15: -5.75100797302332e-05 - sys_16: -0.00011905406822319519 - sys_17: 2.8552362645685075e-05 - sys_18: -0.0002372289375058786 - sys_19: 0.00013172051532326777 - sys_20: 0.0001079199168920625 - sys_21: -8.04232252851697e-05 - sys_22: 0.00034141788787900616 - sys_23: 9.351263157408112e-07 - sys_24: -5.478907011462794e-07 - sys_25: -2.630092786281817e-06 - sys_26: -2.062882706948884e-06 - sys_27: -6.205136170089866e-06 - sys_28: 3.223768001083565e-05 - sys_29: 5.660079727221708e-06 - sys_30: 4.6341172032370244e-05 - sys_31: -4.167964269218416e-05 - sys_32: 4.013454566335062e-05 - sys_33: 5.576110913095708e-06 - sys_34: -2.964029276691604e-05 - sys_35: -1.532956641835303e-05 - sys_36: 5.284580787109006e-06 - sys_37: -1.935948803738359e-05 - sys_38: 8.31074704807943e-05 - sys_39: 0.0013246880028472817 - sys_40: -0.00019563173156697292 - sys_41: 0.00081374333611928 - sys_42: 0.00025267562231517585 - sys_43: -0.006148358661351577 - sys_44: 0.00028937176921911074 - sys_45: 0.0006551565954433423 - sys_46: 0.00017905670394166226 - sys_47: 7.77378793527156e-05 - sys_48: 0.00011036105335213397 - sys_49: 0.00022898773777294427 - sys_50: 1.2965981438575961e-05 - sys_51: -5.563606553608756e-05 - sys_52: 0.00012399929125872045 - sys_53: -2.4773837499833655e-05 - sys_54: -6.376119520339386e-05 - sys_55: -4.071355165568995e-05 + sys_0: -4.35797146e-05 + sys_1: -1.83047647e-04 + sys_2: 1.53718486e-05 + sys_3: 9.01298327e-05 + sys_4: 4.38908554e-05 + sys_5: 6.68808544e-05 + sys_6: -8.42256964e-05 + sys_7: 7.39752173e-05 + sys_8: 4.82895233e-06 + sys_9: 7.28785318e-05 + sys_10: -6.28238401e-05 + sys_11: 8.20929552e-05 + sys_12: -5.44781772e-05 + sys_13: 1.01618935e-04 + sys_14: 1.55588302e-04 + sys_15: -5.75100797e-05 + sys_16: -1.19054068e-04 + sys_17: 2.85523626e-05 + sys_18: -2.37228938e-04 + sys_19: 1.31720515e-04 + sys_20: 1.07919917e-04 + sys_21: -8.04232253e-05 + sys_22: 3.41417888e-04 + sys_23: 9.35126316e-07 + sys_24: -5.47890701e-07 + sys_25: -2.63009279e-06 + sys_26: -2.06288271e-06 + sys_27: -6.20513617e-06 + sys_28: 3.22376800e-05 + sys_29: 5.66007973e-06 + sys_30: 4.63411720e-05 + sys_31: -4.16796427e-05 + sys_32: 4.01345457e-05 + sys_33: 5.57611091e-06 + sys_34: -2.96402928e-05 + sys_35: -1.53295664e-05 + sys_36: 5.28458079e-06 + sys_37: -1.93594880e-05 + sys_38: 8.31074705e-05 + sys_39: 1.32468800e-03 + sys_40: -1.95631732e-04 + sys_41: 8.13743336e-04 + sys_42: 2.52675622e-04 + sys_43: -6.14835866e-03 + sys_44: 2.89371769e-04 + sys_45: 6.55156595e-04 + sys_46: 1.79056704e-04 + sys_47: 7.77378794e-05 + sys_48: 1.10361053e-04 + sys_49: 2.28987738e-04 + sys_50: 1.29659814e-05 + sys_51: -5.56360655e-05 + sys_52: 1.23999291e-04 + sys_53: -2.47738375e-05 + sys_54: -6.37611952e-05 + sys_55: -4.07135517e-05 - lumi_ue: 0.00044 - pol: 0.0003168 - sys_0: -6.558975593916475e-05 - sys_1: -0.00027419750594571805 - sys_2: 1.7925707941032374e-05 - sys_3: 0.0001429491872256793 - sys_4: 7.332560030772701e-05 - sys_5: 0.00010458413620829154 - sys_6: -0.00013969190757061103 - sys_7: 0.00012589635814142674 - sys_8: 6.170244340908736e-06 - sys_9: 0.00013612600657839606 - sys_10: -0.00010484319531473604 - sys_11: 0.0001626499338079653 - sys_12: -0.00011512573713771586 - sys_13: 0.0002371368503448036 - sys_14: 0.0004210333366614991 - sys_15: -0.00018646659964331134 - sys_16: -0.0005920693017631945 - sys_17: 0.00015192599600301934 - sys_18: -0.007916613466072829 - sys_19: -0.0015082467792499523 - sys_20: -0.0003280500070578817 - sys_21: 0.00047421468827239533 - sys_22: -0.00025109758877362196 - sys_23: 5.192678675308633e-07 - sys_24: -6.46015042308576e-07 - sys_25: -3.037369575071267e-07 - sys_26: -1.2699918448797966e-06 - sys_27: 1.160795634734256e-06 - sys_28: 1.394966526172249e-05 - sys_29: 2.585677118497177e-06 - sys_30: 2.799514029459209e-05 - sys_31: -5.221225194167945e-05 - sys_32: 5.933976936451208e-05 - sys_33: 6.623662285229615e-06 - sys_34: -3.59855664221483e-05 - sys_35: -4.955565185585112e-05 - sys_36: -3.5398087800133146e-06 - sys_37: -1.196199967127232e-05 - sys_38: 5.735462589527471e-05 - sys_39: -0.00036114468886967326 - sys_40: 2.92550172345161e-05 - sys_41: -0.00016428876410322835 - sys_42: -8.834914528756174e-06 - sys_43: 0.00010660480156959896 - sys_44: 3.233310598431343e-05 - sys_45: 9.165313034390685e-05 - sys_46: 3.763868765089263e-05 - sys_47: 2.030242281260001e-05 - sys_48: 4.053757200081806e-05 - sys_49: 8.414933803686999e-05 - sys_50: 5.860825301686919e-06 - sys_51: -3.2076030102419e-05 - sys_52: 8.820024348764734e-05 - sys_53: 2.3508430430937785e-05 - sys_54: -3.1582293214321525e-06 - sys_55: -1.384776314513629e-05 + pol: 3.16800000e-04 + sys_0: -6.55897559e-05 + sys_1: -2.74197506e-04 + sys_2: 1.79257079e-05 + sys_3: 1.42949187e-04 + sys_4: 7.33256003e-05 + sys_5: 1.04584136e-04 + sys_6: -1.39691908e-04 + sys_7: 1.25896358e-04 + sys_8: 6.17024434e-06 + sys_9: 1.36126007e-04 + sys_10: -1.04843195e-04 + sys_11: 1.62649934e-04 + sys_12: -1.15125737e-04 + sys_13: 2.37136850e-04 + sys_14: 4.21033337e-04 + sys_15: -1.86466600e-04 + sys_16: -5.92069302e-04 + sys_17: 1.51925996e-04 + sys_18: -7.91661347e-03 + sys_19: -1.50824678e-03 + sys_20: -3.28050007e-04 + sys_21: 4.74214688e-04 + sys_22: -2.51097589e-04 + sys_23: 5.19267868e-07 + sys_24: -6.46015042e-07 + sys_25: -3.03736958e-07 + sys_26: -1.26999184e-06 + sys_27: 1.16079563e-06 + sys_28: 1.39496653e-05 + sys_29: 2.58567712e-06 + sys_30: 2.79951403e-05 + sys_31: -5.22122519e-05 + sys_32: 5.93397694e-05 + sys_33: 6.62366229e-06 + sys_34: -3.59855664e-05 + sys_35: -4.95556519e-05 + sys_36: -3.53980878e-06 + sys_37: -1.19619997e-05 + sys_38: 5.73546259e-05 + sys_39: -3.61144689e-04 + sys_40: 2.92550172e-05 + sys_41: -1.64288764e-04 + sys_42: -8.83491453e-06 + sys_43: 1.06604802e-04 + sys_44: 3.23331060e-05 + sys_45: 9.16531303e-05 + sys_46: 3.76386877e-05 + sys_47: 2.03024228e-05 + sys_48: 4.05375720e-05 + sys_49: 8.41493380e-05 + sys_50: 5.86082530e-06 + sys_51: -3.20760301e-05 + sys_52: 8.82002435e-05 + sys_53: 2.35084304e-05 + sys_54: -3.15822932e-06 + sys_55: -1.38477631e-05 - lumi_ue: 0.00037 - pol: 0.0003432 - sys_0: -7.885312401191474e-05 - sys_1: -0.0003495850998516732 - sys_2: 1.2602083202072785e-05 - sys_3: 0.0001792421025779591 - sys_4: 0.00010062620096050389 - sys_5: 0.00016088102901351902 - sys_6: -0.00020845096268410984 - sys_7: 0.00020664874402074733 - sys_8: 1.1790024274249825e-05 - sys_9: 0.0003246084526728007 - sys_10: -9.811568696774639e-05 - sys_11: 0.00044637947301154465 - sys_12: -0.0003525614973095788 - sys_13: 0.010752373556972552 - sys_14: -0.0009654948233122244 - sys_15: 0.0004691344017381502 - sys_16: 0.00016083815136831207 - sys_17: -2.638919945630773e-05 - sys_18: 0.000182130251001699 - sys_19: -4.339852857602376e-05 - sys_20: 0.00013786536039800157 - sys_21: 8.753145462480667e-05 - sys_22: -7.22175246536132e-05 - sys_23: 2.6921771619865665e-07 - sys_24: -3.4808248150004355e-07 - sys_25: 2.482213247828298e-07 - sys_26: -4.7381772695764375e-07 - sys_27: 2.9130707746364692e-06 - sys_28: 5.084596199734529e-06 - sys_29: 7.773355512829216e-07 - sys_30: 1.0452102154570162e-05 - sys_31: -2.5615795108357312e-05 - sys_32: 7.588870610895409e-05 - sys_33: 7.124389524623082e-06 - sys_34: -4.343359745960556e-05 - sys_35: -8.492010024823195e-05 - sys_36: -1.2242234548942557e-05 - sys_37: -4.350345122766119e-06 - sys_38: 3.583640208617523e-05 - sys_39: -0.00013300930324833488 - sys_40: 7.920736959237036e-06 - sys_41: -8.177294543290449e-05 - sys_42: 5.6037184829045365e-06 - sys_43: 2.456289311211907e-05 - sys_44: 8.059639653475102e-06 - sys_45: 2.955573380309824e-05 - sys_46: 1.0150009055520595e-05 - sys_47: 5.013883247978783e-06 - sys_48: 1.1630819343071646e-05 - sys_49: 2.1712840877776783e-05 - sys_50: 2.0028986635555476e-06 - sys_51: -7.256455326087075e-06 - sys_52: 6.356380600426195e-05 - sys_53: 9.474819131895574e-05 - sys_54: 4.597873930350705e-05 - sys_55: -4.878471626359776e-06 + pol: 3.43200000e-04 + sys_0: -7.88531240e-05 + sys_1: -3.49585100e-04 + sys_2: 1.26020832e-05 + sys_3: 1.79242103e-04 + sys_4: 1.00626201e-04 + sys_5: 1.60881029e-04 + sys_6: -2.08450963e-04 + sys_7: 2.06648744e-04 + sys_8: 1.17900243e-05 + sys_9: 3.24608453e-04 + sys_10: -9.81156870e-05 + sys_11: 4.46379473e-04 + sys_12: -3.52561497e-04 + sys_13: 1.07523736e-02 + sys_14: -9.65494823e-04 + sys_15: 4.69134402e-04 + sys_16: 1.60838151e-04 + sys_17: -2.63891995e-05 + sys_18: 1.82130251e-04 + sys_19: -4.33985286e-05 + sys_20: 1.37865360e-04 + sys_21: 8.75314546e-05 + sys_22: -7.22175247e-05 + sys_23: 2.69217716e-07 + sys_24: -3.48082482e-07 + sys_25: 2.48221325e-07 + sys_26: -4.73817727e-07 + sys_27: 2.91307077e-06 + sys_28: 5.08459620e-06 + sys_29: 7.77335551e-07 + sys_30: 1.04521022e-05 + sys_31: -2.56157951e-05 + sys_32: 7.58887061e-05 + sys_33: 7.12438952e-06 + sys_34: -4.34335975e-05 + sys_35: -8.49201002e-05 + sys_36: -1.22422345e-05 + sys_37: -4.35034512e-06 + sys_38: 3.58364021e-05 + sys_39: -1.33009303e-04 + sys_40: 7.92073696e-06 + sys_41: -8.17729454e-05 + sys_42: 5.60371848e-06 + sys_43: 2.45628931e-05 + sys_44: 8.05963965e-06 + sys_45: 2.95557338e-05 + sys_46: 1.01500091e-05 + sys_47: 5.01388325e-06 + sys_48: 1.16308193e-05 + sys_49: 2.17128409e-05 + sys_50: 2.00289866e-06 + sys_51: -7.25645533e-06 + sys_52: 6.35638060e-05 + sys_53: 9.47481913e-05 + sys_54: 4.59787393e-05 + sys_55: -4.87847163e-06 - lumi_ue: 0.00037 - pol: 0.0023958 - sys_0: -0.0001612849660076655 - sys_1: -0.0008665316675798474 - sys_2: 3.416711508184392e-05 - sys_3: 0.0004888399468426496 - sys_4: 0.0003587391644981978 - sys_5: 0.0008710436434961846 - sys_6: -0.0020393671380570617 - sys_7: 0.016573182799637154 - sys_8: -0.00032726213327188093 - sys_9: -0.001300868627055701 - sys_10: -0.00017663104925685967 - sys_11: -0.00033501543228199034 - sys_12: 0.00018806648383498884 - sys_13: -0.0001834427463242982 - sys_14: -0.0001999967683925319 - sys_15: 0.00014024838990904978 - sys_16: 5.058125727302434e-05 - sys_17: -1.1328402855140998e-05 - sys_18: 6.290859116187262e-05 - sys_19: 4.3813391880857e-06 - sys_20: 0.00018682353390755014 - sys_21: 7.797662404899037e-05 - sys_22: -3.99498744399612e-05 - sys_23: 4.349497073666674e-08 - sys_24: -2.2344805853900693e-07 - sys_25: 4.30200867858108e-07 - sys_26: -1.1039055226012914e-07 - sys_27: 3.1983150203514875e-06 - sys_28: 1.4590873570945042e-06 - sys_29: -2.0878075469905623e-08 - sys_30: 1.9920886836629427e-06 - sys_31: -5.020358315315493e-06 - sys_32: 2.342178374199507e-05 - sys_33: 9.025178934615886e-06 - sys_34: -4.233579213715466e-05 - sys_35: -8.289782073710824e-05 - sys_36: -9.744460777358435e-06 - sys_37: -3.6232481611323603e-06 - sys_38: 2.418408063129969e-05 - sys_39: -7.355571483698592e-05 - sys_40: 5.239095749920192e-06 - sys_41: -4.345372987058008e-05 - sys_42: 2.826281955353066e-06 - sys_43: 1.1214076775988116e-05 - sys_44: 6.044502073621258e-06 - sys_45: 1.3205074553313845e-05 - sys_46: 6.682743656005749e-06 - sys_47: 2.3014660920290026e-06 - sys_48: 1.693359311636284e-06 - sys_49: 5.9086348437095315e-06 - sys_50: 4.7191937829183596e-07 - sys_51: -1.9877986441581995e-06 - sys_52: 4.552109706850092e-05 - sys_53: 0.00011224136455724019 - sys_54: 5.45173588721848e-05 - sys_55: -1.2886999446148365e-06 + pol: 2.39580000e-03 + sys_0: -1.61284966e-04 + sys_1: -8.66531668e-04 + sys_2: 3.41671151e-05 + sys_3: 4.88839947e-04 + sys_4: 3.58739164e-04 + sys_5: 8.71043643e-04 + sys_6: -2.03936714e-03 + sys_7: 1.65731828e-02 + sys_8: -3.27262133e-04 + sys_9: -1.30086863e-03 + sys_10: -1.76631049e-04 + sys_11: -3.35015432e-04 + sys_12: 1.88066484e-04 + sys_13: -1.83442746e-04 + sys_14: -1.99996768e-04 + sys_15: 1.40248390e-04 + sys_16: 5.05812573e-05 + sys_17: -1.13284029e-05 + sys_18: 6.29085912e-05 + sys_19: 4.38133919e-06 + sys_20: 1.86823534e-04 + sys_21: 7.79766240e-05 + sys_22: -3.99498744e-05 + sys_23: 4.34949707e-08 + sys_24: -2.23448059e-07 + sys_25: 4.30200868e-07 + sys_26: -1.10390552e-07 + sys_27: 3.19831502e-06 + sys_28: 1.45908736e-06 + sys_29: -2.08780755e-08 + sys_30: 1.99208868e-06 + sys_31: -5.02035832e-06 + sys_32: 2.34217837e-05 + sys_33: 9.02517893e-06 + sys_34: -4.23357921e-05 + sys_35: -8.28978207e-05 + sys_36: -9.74446078e-06 + sys_37: -3.62324816e-06 + sys_38: 2.41840806e-05 + sys_39: -7.35557148e-05 + sys_40: 5.23909575e-06 + sys_41: -4.34537299e-05 + sys_42: 2.82628196e-06 + sys_43: 1.12140768e-05 + sys_44: 6.04450207e-06 + sys_45: 1.32050746e-05 + sys_46: 6.68274366e-06 + sys_47: 2.30146609e-06 + sys_48: 1.69335931e-06 + sys_49: 5.90863484e-06 + sys_50: 4.71919378e-07 + sys_51: -1.98779864e-06 + sys_52: 4.55210971e-05 + sys_53: 1.12241365e-04 + sys_54: 5.45173589e-05 + sys_55: -1.28869994e-06 - lumi_ue: 0.00031 - pol: 0.0014388 - sys_0: -0.0005272695142887969 - sys_1: -0.005731980469885307 - sys_2: 0.00026459620780495155 - sys_3: 0.025966928732279196 - sys_4: -0.0033439045280975253 - sys_5: -0.0006138007127057732 - sys_6: 0.000555976449904973 - sys_7: -0.0003827184020584523 - sys_8: -1.9416252193400445e-05 - sys_9: -0.000510117169603294 - sys_10: -0.00029141834509494404 - sys_11: -0.00017223388028827127 - sys_12: 9.777490236761359e-05 - sys_13: -0.000104922700795684 - sys_14: -0.0001332501398053027 - sys_15: 9.190409894446753e-05 - sys_16: 3.74408953771737e-05 - sys_17: -6.370971440391245e-06 - sys_18: 3.741476489034395e-05 - sys_19: 1.8908853775638904e-05 - sys_20: 0.00021861943575676685 - sys_21: 8.152094423476838e-05 - sys_22: -3.217818200662539e-05 - sys_23: -3.3135694267781083e-08 - sys_24: -1.5050636763076311e-07 - sys_25: 3.697428663173155e-07 - sys_26: 8.433420777039174e-08 - sys_27: 3.045949120475478e-06 - sys_28: 5.012127127015611e-07 - sys_29: -1.6988959030669413e-07 - sys_30: -2.051863228602533e-07 - sys_31: 9.44026832047487e-07 - sys_32: 2.9050124049808724e-06 - sys_33: 4.979941239923255e-06 - sys_34: -1.5188093711896617e-05 - sys_35: -1.7864079865430455e-05 - sys_36: 3.4792518459157777e-06 - sys_37: -6.292547295993531e-06 - sys_38: 2.0532860667767635e-05 - sys_39: -5.6420918818105406e-05 - sys_40: 3.180850932392495e-06 - sys_41: -2.2184937978000978e-05 - sys_42: -1.2803071309906214e-06 - sys_43: 9.696158481974124e-06 - sys_44: 6.828633656818925e-06 - sys_45: 9.62190951822144e-06 - sys_46: 8.21107732187218e-06 - sys_47: 4.522588630807489e-06 - sys_48: 2.4338542460816577e-06 - sys_49: 2.5614497431733193e-06 - sys_50: -2.851921557336855e-07 - sys_51: 3.462668505864587e-07 - sys_52: 3.394804538721935e-05 - sys_53: 0.00010743765255831543 - sys_54: 5.04051634840498e-05 - sys_55: -2.340704353948693e-07 + pol: 1.43880000e-03 + sys_0: -5.27269514e-04 + sys_1: -5.73198047e-03 + sys_2: 2.64596208e-04 + sys_3: 2.59669287e-02 + sys_4: -3.34390453e-03 + sys_5: -6.13800713e-04 + sys_6: 5.55976450e-04 + sys_7: -3.82718402e-04 + sys_8: -1.94162522e-05 + sys_9: -5.10117170e-04 + sys_10: -2.91418345e-04 + sys_11: -1.72233880e-04 + sys_12: 9.77749024e-05 + sys_13: -1.04922701e-04 + sys_14: -1.33250140e-04 + sys_15: 9.19040989e-05 + sys_16: 3.74408954e-05 + sys_17: -6.37097144e-06 + sys_18: 3.74147649e-05 + sys_19: 1.89088538e-05 + sys_20: 2.18619436e-04 + sys_21: 8.15209442e-05 + sys_22: -3.21781820e-05 + sys_23: -3.31356943e-08 + sys_24: -1.50506368e-07 + sys_25: 3.69742866e-07 + sys_26: 8.43342078e-08 + sys_27: 3.04594912e-06 + sys_28: 5.01212713e-07 + sys_29: -1.69889590e-07 + sys_30: -2.05186323e-07 + sys_31: 9.44026832e-07 + sys_32: 2.90501240e-06 + sys_33: 4.97994124e-06 + sys_34: -1.51880937e-05 + sys_35: -1.78640799e-05 + sys_36: 3.47925185e-06 + sys_37: -6.29254730e-06 + sys_38: 2.05328607e-05 + sys_39: -5.64209188e-05 + sys_40: 3.18085093e-06 + sys_41: -2.21849380e-05 + sys_42: -1.28030713e-06 + sys_43: 9.69615848e-06 + sys_44: 6.82863366e-06 + sys_45: 9.62190952e-06 + sys_46: 8.21107732e-06 + sys_47: 4.52258863e-06 + sys_48: 2.43385425e-06 + sys_49: 2.56144974e-06 + sys_50: -2.85192156e-07 + sys_51: 3.46266851e-07 + sys_52: 3.39480454e-05 + sys_53: 1.07437653e-04 + sys_54: 5.04051635e-05 + sys_55: -2.34070435e-07 diff --git a/nnpdf_data/nnpdf_data/commondata/STAR-2012_2JET_510GEV/uncertainties_B.yaml b/nnpdf_data/nnpdf_data/commondata/STAR-2012_2JET_510GEV/uncertainties_B.yaml index d7e800589a..3358c5741a 100644 --- a/nnpdf_data/nnpdf_data/commondata/STAR-2012_2JET_510GEV/uncertainties_B.yaml +++ b/nnpdf_data/nnpdf_data/commondata/STAR-2012_2JET_510GEV/uncertainties_B.yaml @@ -233,640 +233,640 @@ definitions: type: STAR2012JETunc55 bins: - lumi_ue: 0.0004 - pol: 0.0001518 - sys_0: -1.2127084455854705e-05 - sys_1: -5.9576649995082626e-05 - sys_2: 2.779283598355147e-06 - sys_3: 3.089930002645901e-05 - sys_4: 1.947865811179961e-05 - sys_5: 2.2772459389557314e-05 - sys_6: -2.627651195951455e-05 - sys_7: 1.7725753879975665e-05 - sys_8: 5.269626359179122e-06 - sys_9: 2.5996516360248904e-05 - sys_10: -1.8206325716032404e-05 - sys_11: 2.2501476392419223e-05 - sys_12: -1.321003776777237e-05 - sys_13: 2.5910482305002395e-05 - sys_14: 3.75461587915384e-05 - sys_15: -1.8066613647836724e-05 - sys_16: -2.3520144941263705e-05 - sys_17: 9.502132380282752e-06 - sys_18: -3.712929688421793e-05 - sys_19: 3.0890362981923026e-05 - sys_20: 3.3724324884335476e-05 - sys_21: -1.0465883945832855e-05 - sys_22: 4.291257109250977e-05 - sys_23: -1.5331325141184155e-05 - sys_24: 6.315758080066536e-06 - sys_25: 2.8463421287959023e-06 - sys_26: 7.460887848428558e-06 - sys_27: 1.565150415322416e-05 - sys_28: 5.718480314587078e-06 - sys_29: -9.133326565340668e-07 - sys_30: -1.4994537085638042e-06 - sys_31: 4.240110513605544e-06 - sys_32: -5.894847018666193e-06 - sys_33: 1.679806762458882e-05 - sys_34: -1.9064850989000007e-05 - sys_35: 1.8103322234506208e-05 - sys_36: 6.821270567143097e-05 - sys_37: -3.1697704784225153e-05 - sys_38: 8.599594220593402e-05 - sys_39: 0.0001062875808803101 - sys_40: -2.7400731100606475e-06 - sys_41: 3.901502216984652e-05 - sys_42: -1.5407009463262773e-06 - sys_43: -2.6284393163545612e-05 - sys_44: -1.691897548775209e-05 - sys_45: -4.539827614242924e-05 - sys_46: -5.175067844777085e-05 - sys_47: -2.4722066585758837e-05 - sys_48: -0.005142478599469912 - sys_49: 0.00119827993398721 - sys_50: 5.2012127732494404e-05 - sys_51: -0.0002588933145683978 - sys_52: 0.000259543664010537 - sys_53: -0.0001900451217080864 - sys_54: -0.0001582929327679079 - sys_55: -1.2908291549693671e-05 + pol: 1.51800000e-04 + sys_0: -1.21270845e-05 + sys_1: -5.95766500e-05 + sys_2: 2.77928360e-06 + sys_3: 3.08993000e-05 + sys_4: 1.94786581e-05 + sys_5: 2.27724594e-05 + sys_6: -2.62765120e-05 + sys_7: 1.77257539e-05 + sys_8: 5.26962636e-06 + sys_9: 2.59965164e-05 + sys_10: -1.82063257e-05 + sys_11: 2.25014764e-05 + sys_12: -1.32100378e-05 + sys_13: 2.59104823e-05 + sys_14: 3.75461588e-05 + sys_15: -1.80666136e-05 + sys_16: -2.35201449e-05 + sys_17: 9.50213238e-06 + sys_18: -3.71292969e-05 + sys_19: 3.08903630e-05 + sys_20: 3.37243249e-05 + sys_21: -1.04658839e-05 + sys_22: 4.29125711e-05 + sys_23: -1.53313251e-05 + sys_24: 6.31575808e-06 + sys_25: 2.84634213e-06 + sys_26: 7.46088785e-06 + sys_27: 1.56515042e-05 + sys_28: 5.71848031e-06 + sys_29: -9.13332657e-07 + sys_30: -1.49945371e-06 + sys_31: 4.24011051e-06 + sys_32: -5.89484702e-06 + sys_33: 1.67980676e-05 + sys_34: -1.90648510e-05 + sys_35: 1.81033222e-05 + sys_36: 6.82127057e-05 + sys_37: -3.16977048e-05 + sys_38: 8.59959422e-05 + sys_39: 1.06287581e-04 + sys_40: -2.74007311e-06 + sys_41: 3.90150222e-05 + sys_42: -1.54070095e-06 + sys_43: -2.62843932e-05 + sys_44: -1.69189755e-05 + sys_45: -4.53982761e-05 + sys_46: -5.17506784e-05 + sys_47: -2.47220666e-05 + sys_48: -5.14247860e-03 + sys_49: 1.19827993e-03 + sys_50: 5.20121277e-05 + sys_51: -2.58893315e-04 + sys_52: 2.59543664e-04 + sys_53: -1.90045122e-04 + sys_54: -1.58292933e-04 + sys_55: -1.29082915e-05 - lumi_ue: 0.00063 - pol: 0.0002706 - sys_0: -2.0018111992396643e-05 - sys_1: -7.951557999445108e-05 - sys_2: 3.7163714666309537e-06 - sys_3: 4.0781934789008544e-05 - sys_4: 2.2061117285197387e-05 - sys_5: 2.6406968132591267e-05 - sys_6: -3.5111098018506834e-05 - sys_7: 2.6892759289448718e-05 - sys_8: 2.8591049401967645e-06 - sys_9: 3.2492484967022866e-05 - sys_10: -2.6312495806481257e-05 - sys_11: 3.2101701153790074e-05 - sys_12: -1.943795024417533e-05 - sys_13: 2.684494458581381e-05 - sys_14: 5.016842353168606e-05 - sys_15: -2.622207860440853e-05 - sys_16: -2.812794587107436e-05 - sys_17: 9.071065415519903e-06 - sys_18: -3.5652823599917415e-05 - sys_19: 2.9473338462914973e-05 - sys_20: 2.903132748319728e-05 - sys_21: -1.4950911547983121e-05 - sys_22: 3.460265302267149e-05 - sys_23: -2.1654984897236243e-05 - sys_24: 3.161125891095996e-05 - sys_25: -2.2293798296049942e-05 - sys_26: 1.5200100508343681e-05 - sys_27: 3.1574965564851374e-05 - sys_28: 9.044139551418607e-06 - sys_29: -1.3981981745850238e-05 - sys_30: -9.573451542618867e-06 - sys_31: 1.6343689437780285e-05 - sys_32: -3.187489690573438e-05 - sys_33: 0.00027682888265635893 - sys_34: -0.0005756599200745778 - sys_35: 0.0008596928538691195 - sys_36: -0.0034210491945004043 - sys_37: 0.00018774366519766752 - sys_38: -0.00031278443969413286 - sys_39: 7.875943235513586e-05 - sys_40: -2.3164931290472858e-06 - sys_41: 3.566562505145882e-05 - sys_42: 4.359575943826743e-06 - sys_43: -8.32554059321299e-06 - sys_44: -1.4062047357203159e-05 - sys_45: -1.7399139274059398e-05 - sys_46: -2.079951826116602e-05 - sys_47: -1.2749744291476486e-05 - sys_48: -0.00010646905941217005 - sys_49: -3.465834276504503e-05 - sys_50: -8.341589342795909e-06 - sys_51: 5.1823771741001875e-05 - sys_52: -7.670343470468162e-05 - sys_53: 7.150697105873473e-05 - sys_54: 5.0093170217806e-05 - sys_55: 5.932888540145104e-06 + pol: 2.70600000e-04 + sys_0: -2.00181120e-05 + sys_1: -7.95155800e-05 + sys_2: 3.71637147e-06 + sys_3: 4.07819348e-05 + sys_4: 2.20611173e-05 + sys_5: 2.64069681e-05 + sys_6: -3.51110980e-05 + sys_7: 2.68927593e-05 + sys_8: 2.85910494e-06 + sys_9: 3.24924850e-05 + sys_10: -2.63124958e-05 + sys_11: 3.21017012e-05 + sys_12: -1.94379502e-05 + sys_13: 2.68449446e-05 + sys_14: 5.01684235e-05 + sys_15: -2.62220786e-05 + sys_16: -2.81279459e-05 + sys_17: 9.07106542e-06 + sys_18: -3.56528236e-05 + sys_19: 2.94733385e-05 + sys_20: 2.90313275e-05 + sys_21: -1.49509115e-05 + sys_22: 3.46026530e-05 + sys_23: -2.16549849e-05 + sys_24: 3.16112589e-05 + sys_25: -2.22937983e-05 + sys_26: 1.52001005e-05 + sys_27: 3.15749656e-05 + sys_28: 9.04413955e-06 + sys_29: -1.39819817e-05 + sys_30: -9.57345154e-06 + sys_31: 1.63436894e-05 + sys_32: -3.18748969e-05 + sys_33: 2.76828883e-04 + sys_34: -5.75659920e-04 + sys_35: 8.59692854e-04 + sys_36: -3.42104919e-03 + sys_37: 1.87743665e-04 + sys_38: -3.12784440e-04 + sys_39: 7.87594324e-05 + sys_40: -2.31649313e-06 + sys_41: 3.56656251e-05 + sys_42: 4.35957594e-06 + sys_43: -8.32554059e-06 + sys_44: -1.40620474e-05 + sys_45: -1.73991393e-05 + sys_46: -2.07995183e-05 + sys_47: -1.27497443e-05 + sys_48: -1.06469059e-04 + sys_49: -3.46583428e-05 + sys_50: -8.34158934e-06 + sys_51: 5.18237717e-05 + sys_52: -7.67034347e-05 + sys_53: 7.15069711e-05 + sys_54: 5.00931702e-05 + sys_55: 5.93288854e-06 - lumi_ue: 0.00041 - pol: 0.0001056 - sys_0: -2.218134105352023e-05 - sys_1: -9.612587642809682e-05 - sys_2: 5.5969619309732355e-06 - sys_3: 4.739659387857837e-05 - sys_4: 2.705949807634787e-05 - sys_5: 3.068402087386578e-05 - sys_6: -4.130223640461112e-05 - sys_7: 3.238979730375349e-05 - sys_8: 2.2478946479910386e-06 - sys_9: 3.5706758985113684e-05 - sys_10: -2.9661006666890407e-05 - sys_11: 3.496419856301292e-05 - sys_12: -2.2684805015222734e-05 - sys_13: 3.0326081546896918e-05 - sys_14: 5.523387907937131e-05 - sys_15: -2.2270607804599577e-05 - sys_16: -3.251529024667263e-05 - sys_17: 7.756071707943641e-06 - sys_18: -4.265144766699116e-05 - sys_19: 3.0478394986210188e-05 - sys_20: 3.3678391472354646e-05 - sys_21: -1.7381576302531042e-05 - sys_22: 3.532169362347043e-05 - sys_23: -1.1436595872983795e-05 - sys_24: 3.451208089838549e-05 - sys_25: -4.8459105804871264e-05 - sys_26: 1.4511370304429305e-05 - sys_27: 2.1758173318455895e-06 - sys_28: 6.438201666150141e-05 - sys_29: -4.816322574251624e-05 - sys_30: -1.0265417116899815e-05 - sys_31: 3.090118111584992e-05 - sys_32: -5.852609408234706e-05 - sys_33: -0.0031746781946461163 - sys_34: 0.0005850670630774023 - sys_35: -0.0004238615005499892 - sys_36: -0.0005022848370662748 - sys_37: 0.0001081086693199001 - sys_38: -0.00019963943653497819 - sys_39: 7.898873399676587e-05 - sys_40: -3.0726522556604366e-06 - sys_41: 2.8675801968275285e-05 - sys_42: 8.878358414156104e-06 - sys_43: -1.3588075368745881e-05 - sys_44: -1.4764568562390094e-05 - sys_45: -2.4307694190496244e-05 - sys_46: -2.6526990380639217e-05 - sys_47: -1.3266742417151481e-05 - sys_48: -7.19268118181175e-05 - sys_49: -4.555958944423133e-05 - sys_50: -1.1910030940679145e-05 - sys_51: 4.6695810470528925e-05 - sys_52: -5.7894425630085896e-05 - sys_53: 6.762506176550556e-05 - sys_54: 5.4002058232487065e-05 - sys_55: 2.3163622124361968e-07 + pol: 1.05600000e-04 + sys_0: -2.21813411e-05 + sys_1: -9.61258764e-05 + sys_2: 5.59696193e-06 + sys_3: 4.73965939e-05 + sys_4: 2.70594981e-05 + sys_5: 3.06840209e-05 + sys_6: -4.13022364e-05 + sys_7: 3.23897973e-05 + sys_8: 2.24789465e-06 + sys_9: 3.57067590e-05 + sys_10: -2.96610067e-05 + sys_11: 3.49641986e-05 + sys_12: -2.26848050e-05 + sys_13: 3.03260815e-05 + sys_14: 5.52338791e-05 + sys_15: -2.22706078e-05 + sys_16: -3.25152902e-05 + sys_17: 7.75607171e-06 + sys_18: -4.26514477e-05 + sys_19: 3.04783950e-05 + sys_20: 3.36783915e-05 + sys_21: -1.73815763e-05 + sys_22: 3.53216936e-05 + sys_23: -1.14365959e-05 + sys_24: 3.45120809e-05 + sys_25: -4.84591058e-05 + sys_26: 1.45113703e-05 + sys_27: 2.17581733e-06 + sys_28: 6.43820167e-05 + sys_29: -4.81632257e-05 + sys_30: -1.02654171e-05 + sys_31: 3.09011811e-05 + sys_32: -5.85260941e-05 + sys_33: -3.17467819e-03 + sys_34: 5.85067063e-04 + sys_35: -4.23861501e-04 + sys_36: -5.02284837e-04 + sys_37: 1.08108669e-04 + sys_38: -1.99639437e-04 + sys_39: 7.89887340e-05 + sys_40: -3.07265226e-06 + sys_41: 2.86758020e-05 + sys_42: 8.87835841e-06 + sys_43: -1.35880754e-05 + sys_44: -1.47645686e-05 + sys_45: -2.43076942e-05 + sys_46: -2.65269904e-05 + sys_47: -1.32667424e-05 + sys_48: -7.19268118e-05 + sys_49: -4.55595894e-05 + sys_50: -1.19100309e-05 + sys_51: 4.66958105e-05 + sys_52: -5.78944256e-05 + sys_53: 6.76250618e-05 + sys_54: 5.40020582e-05 + sys_55: 2.31636221e-07 - lumi_ue: 0.00043 - pol: 0.0001914 - sys_0: -2.686813426855253e-05 - sys_1: -0.00012028914346191781 - sys_2: 7.1043625443647745e-06 - sys_3: 6.00594460965607e-05 - sys_4: 3.22028426691876e-05 - sys_5: 4.255272440013109e-05 - sys_6: -5.242060715054576e-05 - sys_7: 3.874024759842708e-05 - sys_8: 5.651489102002214e-06 - sys_9: 4.4993779516290385e-05 - sys_10: -3.647595786466625e-05 - sys_11: 4.703790680896011e-05 - sys_12: -2.9218917082870338e-05 - sys_13: 3.915490070408017e-05 - sys_14: 6.861128654615448e-05 - sys_15: -2.819727236317605e-05 - sys_16: -4.3555842482474516e-05 - sys_17: 1.1942109059398943e-05 - sys_18: -5.537330568768192e-05 - sys_19: 4.219490723123284e-05 - sys_20: 3.8575921579256805e-05 - sys_21: -2.419695428508297e-05 - sys_22: 5.0373475531346336e-05 - sys_23: -1.4272288300798164e-06 - sys_24: 1.5448479209793726e-05 - sys_25: -4.818261018831282e-05 - sys_26: 7.111709115162671e-06 - sys_27: -2.3536831213543233e-05 - sys_28: 0.00010835784626834932 - sys_29: -3.550388524118434e-05 - sys_30: 4.655622478312223e-05 - sys_31: -1.2060283887609993e-05 - sys_32: -3.9251308847725424e-05 - sys_33: 0.0007954945660322011 - sys_34: 0.0029953753483943704 - sys_35: -0.00113967336954146 - sys_36: -0.0007650822467188235 - sys_37: 0.00016076248727932833 - sys_38: -0.0002860087548112919 - sys_39: 0.00010589546167657734 - sys_40: -3.873692538941009e-06 - sys_41: 3.6144091955741326e-05 - sys_42: 1.0974888990727702e-05 - sys_43: -2.1070028755497166e-05 - sys_44: -2.1395050833659104e-05 - sys_45: -3.5944662454056054e-05 - sys_46: -3.309615433164787e-05 - sys_47: -2.1466797631546404e-05 - sys_48: -8.623811975203603e-05 - sys_49: -6.443141716151797e-05 - sys_50: -2.1180285778784914e-05 - sys_51: 5.9819532493803864e-05 - sys_52: -8.670694161447683e-05 - sys_53: 8.991925147840501e-05 - sys_54: 6.681785106569658e-05 - sys_55: 4.447608838845952e-06 + pol: 1.91400000e-04 + sys_0: -2.68681343e-05 + sys_1: -1.20289143e-04 + sys_2: 7.10436254e-06 + sys_3: 6.00594461e-05 + sys_4: 3.22028427e-05 + sys_5: 4.25527244e-05 + sys_6: -5.24206072e-05 + sys_7: 3.87402476e-05 + sys_8: 5.65148910e-06 + sys_9: 4.49937795e-05 + sys_10: -3.64759579e-05 + sys_11: 4.70379068e-05 + sys_12: -2.92189171e-05 + sys_13: 3.91549007e-05 + sys_14: 6.86112865e-05 + sys_15: -2.81972724e-05 + sys_16: -4.35558425e-05 + sys_17: 1.19421091e-05 + sys_18: -5.53733057e-05 + sys_19: 4.21949072e-05 + sys_20: 3.85759216e-05 + sys_21: -2.41969543e-05 + sys_22: 5.03734755e-05 + sys_23: -1.42722883e-06 + sys_24: 1.54484792e-05 + sys_25: -4.81826102e-05 + sys_26: 7.11170912e-06 + sys_27: -2.35368312e-05 + sys_28: 1.08357846e-04 + sys_29: -3.55038852e-05 + sys_30: 4.65562248e-05 + sys_31: -1.20602839e-05 + sys_32: -3.92513088e-05 + sys_33: 7.95494566e-04 + sys_34: 2.99537535e-03 + sys_35: -1.13967337e-03 + sys_36: -7.65082247e-04 + sys_37: 1.60762487e-04 + sys_38: -2.86008755e-04 + sys_39: 1.05895462e-04 + sys_40: -3.87369254e-06 + sys_41: 3.61440920e-05 + sys_42: 1.09748890e-05 + sys_43: -2.10700288e-05 + sys_44: -2.13950508e-05 + sys_45: -3.59446625e-05 + sys_46: -3.30961543e-05 + sys_47: -2.14667976e-05 + sys_48: -8.62381198e-05 + sys_49: -6.44314172e-05 + sys_50: -2.11802858e-05 + sys_51: 5.98195325e-05 + sys_52: -8.67069416e-05 + sys_53: 8.99192515e-05 + sys_54: 6.68178511e-05 + sys_55: 4.44760884e-06 - lumi_ue: 0.00035 - pol: 0.0004158 - sys_0: -3.146916369367802e-05 - sys_1: -0.00013152602564072525 - sys_2: 1.0023329812311119e-05 - sys_3: 6.44103317707447e-05 - sys_4: 3.578169129552725e-05 - sys_5: 4.6868330165578694e-05 - sys_6: -5.9212180707533086e-05 - sys_7: 4.3258317126834604e-05 - sys_8: 6.840542615436616e-06 - sys_9: 4.8126877326497054e-05 - sys_10: -3.835014513698503e-05 - sys_11: 4.9814727777050174e-05 - sys_12: -3.390231416791346e-05 - sys_13: 4.564872097787413e-05 - sys_14: 8.046088531480225e-05 - sys_15: -3.146397443609784e-05 - sys_16: -5.227064206662449e-05 - sys_17: 9.87286499721181e-06 - sys_18: -6.890154619281032e-05 - sys_19: 5.0693624476839404e-05 - sys_20: 4.8879913136013334e-05 - sys_21: -2.8037169237992045e-05 - sys_22: 6.265569588730172e-05 - sys_23: 1.6163636796615693e-06 - sys_24: 2.9373576083175327e-06 - sys_25: -1.8225675658202614e-05 - sys_26: -2.3811667378683397e-06 - sys_27: -2.616990703043108e-05 - sys_28: 9.593628382892789e-05 - sys_29: -1.4304540608887433e-05 - sys_30: 6.744200998313115e-05 - sys_31: -5.079375003714075e-05 - sys_32: 3.417716889713503e-05 - sys_33: 6.719625820784566e-05 - sys_34: -0.0001658208252682594 - sys_35: 0.0001142938789906356 - sys_36: 0.0003337022097428351 - sys_37: 0.0037794743930049538 - sys_38: -0.0012706988267081481 - sys_39: 0.00013317327672414178 - sys_40: -7.240454022279862e-06 - sys_41: 4.986375387159887e-05 - sys_42: 1.3017327537564419e-05 - sys_43: -3.0039689296341642e-05 - sys_44: -2.3827529570249456e-05 - sys_45: -4.818785394002912e-05 - sys_46: -4.762144456974974e-05 - sys_47: -2.2707378603664087e-05 - sys_48: -0.00010523387048429488 - sys_49: -9.872357791435451e-05 - sys_50: -3.245492222500986e-05 - sys_51: 8.696530919408512e-05 - sys_52: -0.00015445216067428414 - sys_53: 0.00014551297302658816 - sys_54: 9.224907238194089e-05 - sys_55: 8.851574082847077e-06 + pol: 4.15800000e-04 + sys_0: -3.14691637e-05 + sys_1: -1.31526026e-04 + sys_2: 1.00233298e-05 + sys_3: 6.44103318e-05 + sys_4: 3.57816913e-05 + sys_5: 4.68683302e-05 + sys_6: -5.92121807e-05 + sys_7: 4.32583171e-05 + sys_8: 6.84054262e-06 + sys_9: 4.81268773e-05 + sys_10: -3.83501451e-05 + sys_11: 4.98147278e-05 + sys_12: -3.39023142e-05 + sys_13: 4.56487210e-05 + sys_14: 8.04608853e-05 + sys_15: -3.14639744e-05 + sys_16: -5.22706421e-05 + sys_17: 9.87286500e-06 + sys_18: -6.89015462e-05 + sys_19: 5.06936245e-05 + sys_20: 4.88799131e-05 + sys_21: -2.80371692e-05 + sys_22: 6.26556959e-05 + sys_23: 1.61636368e-06 + sys_24: 2.93735761e-06 + sys_25: -1.82256757e-05 + sys_26: -2.38116674e-06 + sys_27: -2.61699070e-05 + sys_28: 9.59362838e-05 + sys_29: -1.43045406e-05 + sys_30: 6.74420100e-05 + sys_31: -5.07937500e-05 + sys_32: 3.41771689e-05 + sys_33: 6.71962582e-05 + sys_34: -1.65820825e-04 + sys_35: 1.14293879e-04 + sys_36: 3.33702210e-04 + sys_37: 3.77947439e-03 + sys_38: -1.27069883e-03 + sys_39: 1.33173277e-04 + sys_40: -7.24045402e-06 + sys_41: 4.98637539e-05 + sys_42: 1.30173275e-05 + sys_43: -3.00396893e-05 + sys_44: -2.38275296e-05 + sys_45: -4.81878539e-05 + sys_46: -4.76214446e-05 + sys_47: -2.27073786e-05 + sys_48: -1.05233870e-04 + sys_49: -9.87235779e-05 + sys_50: -3.24549222e-05 + sys_51: 8.69653092e-05 + sys_52: -1.54452161e-04 + sys_53: 1.45512973e-04 + sys_54: 9.22490724e-05 + sys_55: 8.85157408e-06 - lumi_ue: 0.00036 pol: 0.000132 - sys_0: -4.638851738241813e-05 - sys_1: -0.00019112540354769875 - sys_2: 1.4498739142808568e-05 - sys_3: 9.306568790614233e-05 - sys_4: 5.08377181835695e-05 - sys_5: 6.685072527938586e-05 - sys_6: -8.692259315614878e-05 - sys_7: 6.688226420879316e-05 - sys_8: 6.241054221820491e-06 - sys_9: 6.829918010968833e-05 - sys_10: -6.1034627130025196e-05 - sys_11: 7.435705791153969e-05 - sys_12: -4.985395939856494e-05 - sys_13: 7.329862519842342e-05 - sys_14: 0.00011705702107071375 - sys_15: -4.724006016135315e-05 - sys_16: -7.662057876477941e-05 - sys_17: 1.509438826202208e-05 - sys_18: -0.00010298193948187479 - sys_19: 7.064187113073787e-05 - sys_20: 6.345326758118853e-05 - sys_21: -4.1552261653607775e-05 - sys_22: 9.598520181668811e-05 - sys_23: 2.221622515326596e-06 - sys_24: -7.901304046523337e-07 - sys_25: -7.860395973327216e-06 - sys_26: -4.9209562546931126e-06 - sys_27: -1.754524216364288e-05 - sys_28: 8.873806358292228e-05 - sys_29: 1.3965910804527167e-05 - sys_30: 0.0001091330313626001 - sys_31: -0.00010194416245258066 - sys_32: 0.00010705626901419021 - sys_33: 6.729239462136325e-05 - sys_34: -0.0002025401382009053 - sys_35: -1.842232823115018e-05 - sys_36: 0.00025664840965542156 - sys_37: -0.0013118952157723483 - sys_38: -0.0038818674636574417 - sys_39: 0.00019615785883928569 - sys_40: -8.642421350325827e-06 - sys_41: 8.63577089769056e-05 - sys_42: 1.5406199373398736e-05 - sys_43: -4.90740400109252e-05 - sys_44: -3.1787633010891655e-05 - sys_45: -6.400262252084931e-05 - sys_46: -6.240311053139105e-05 - sys_47: -2.6136025075505618e-05 - sys_48: -0.0001399917913607326 - sys_49: -0.00013457719124015764 - sys_50: -4.512628657735273e-05 - sys_51: 0.0001294401376708844 - sys_52: -0.0002605875296010245 - sys_53: 0.00015165292649424193 - sys_54: 9.612603348094022e-05 - sys_55: 3.960787381308413e-06 + sys_0: -4.63885174e-05 + sys_1: -1.91125404e-04 + sys_2: 1.44987391e-05 + sys_3: 9.30656879e-05 + sys_4: 5.08377182e-05 + sys_5: 6.68507253e-05 + sys_6: -8.69225932e-05 + sys_7: 6.68822642e-05 + sys_8: 6.24105422e-06 + sys_9: 6.82991801e-05 + sys_10: -6.10346271e-05 + sys_11: 7.43570579e-05 + sys_12: -4.98539594e-05 + sys_13: 7.32986252e-05 + sys_14: 1.17057021e-04 + sys_15: -4.72400602e-05 + sys_16: -7.66205788e-05 + sys_17: 1.50943883e-05 + sys_18: -1.02981939e-04 + sys_19: 7.06418711e-05 + sys_20: 6.34532676e-05 + sys_21: -4.15522617e-05 + sys_22: 9.59852018e-05 + sys_23: 2.22162252e-06 + sys_24: -7.90130405e-07 + sys_25: -7.86039597e-06 + sys_26: -4.92095625e-06 + sys_27: -1.75452422e-05 + sys_28: 8.87380636e-05 + sys_29: 1.39659108e-05 + sys_30: 1.09133031e-04 + sys_31: -1.01944162e-04 + sys_32: 1.07056269e-04 + sys_33: 6.72923946e-05 + sys_34: -2.02540138e-04 + sys_35: -1.84223282e-05 + sys_36: 2.56648410e-04 + sys_37: -1.31189522e-03 + sys_38: -3.88186746e-03 + sys_39: 1.96157859e-04 + sys_40: -8.64242135e-06 + sys_41: 8.63577090e-05 + sys_42: 1.54061994e-05 + sys_43: -4.90740400e-05 + sys_44: -3.17876330e-05 + sys_45: -6.40026225e-05 + sys_46: -6.24031105e-05 + sys_47: -2.61360251e-05 + sys_48: -1.39991791e-04 + sys_49: -1.34577191e-04 + sys_50: -4.51262866e-05 + sys_51: 1.29440138e-04 + sys_52: -2.60587530e-04 + sys_53: 1.51652926e-04 + sys_54: 9.61260335e-05 + sys_55: 3.96078738e-06 - lumi_ue: 0.0003 - pol: 0.0008448 - sys_0: -5.183660718448047e-05 - sys_1: -0.0002300678822795388 - sys_2: 1.5689952454242657e-05 - sys_3: 0.00011135690961012817 - sys_4: 6.074489751402663e-05 - sys_5: 8.557254293659576e-05 - sys_6: -0.00010569729561656198 - sys_7: 8.29978890228316e-05 - sys_8: 7.992279835438193e-06 - sys_9: 9.7935350446577e-05 - sys_10: -6.961633959319253e-05 - sys_11: 0.00010019453603858477 - sys_12: -6.748845366547465e-05 - sys_13: 9.803445495975019e-05 - sys_14: 0.00016640063399366636 - sys_15: -7.387633584622912e-05 - sys_16: -0.00010881412150404262 - sys_17: 2.032763912160254e-05 - sys_18: -0.00015318943415016127 - sys_19: 9.335154973859405e-05 - sys_20: 4.2170885771652956e-05 - sys_21: -7.302945907681088e-05 - sys_22: 0.0001554187036664873 - sys_23: 1.481502607571213e-06 - sys_24: -1.5094199236160897e-06 - sys_25: -1.5856464327101306e-06 - sys_26: -3.1992547458819723e-06 - sys_27: -3.0814805297589847e-07 - sys_28: 4.113474408939248e-05 - sys_29: 7.395451975580669e-06 - sys_30: 8.27476725793579e-05 - sys_31: -0.00013058224024709491 - sys_32: 0.0001589223794813944 - sys_33: 2.768863617511338e-05 - sys_34: -0.00013766334187252551 - sys_35: -0.00016011651807653122 - sys_36: 3.062608373143173e-05 - sys_37: -8.684362909123797e-05 - sys_38: 0.000386980456895338 - sys_39: 0.00033632997747406703 - sys_40: -1.7563236130637465e-05 - sys_41: 0.00017397837590823028 - sys_42: 5.389398149297733e-06 - sys_43: -7.68653916597652e-05 - sys_44: -5.475534068282874e-05 - sys_45: -0.00011953007979451684 - sys_46: -0.00010214357897948255 - sys_47: -5.145654422839359e-05 - sys_48: -0.0004564724152812748 - sys_49: -0.0005877627564231794 - sys_50: -0.00027369693272425843 - sys_51: 0.0011761370688254764 - sys_52: -0.004697523485983049 - sys_53: 0.0007350190529365869 - sys_54: -0.0005844483109360693 - sys_55: 1.667404658053767e-07 + pol: 8.44800000e-04 + sys_0: -5.18366072e-05 + sys_1: -2.30067882e-04 + sys_2: 1.56899525e-05 + sys_3: 1.11356910e-04 + sys_4: 6.07448975e-05 + sys_5: 8.55725429e-05 + sys_6: -1.05697296e-04 + sys_7: 8.29978890e-05 + sys_8: 7.99227984e-06 + sys_9: 9.79353504e-05 + sys_10: -6.96163396e-05 + sys_11: 1.00194536e-04 + sys_12: -6.74884537e-05 + sys_13: 9.80344550e-05 + sys_14: 1.66400634e-04 + sys_15: -7.38763358e-05 + sys_16: -1.08814122e-04 + sys_17: 2.03276391e-05 + sys_18: -1.53189434e-04 + sys_19: 9.33515497e-05 + sys_20: 4.21708858e-05 + sys_21: -7.30294591e-05 + sys_22: 1.55418704e-04 + sys_23: 1.48150261e-06 + sys_24: -1.50941992e-06 + sys_25: -1.58564643e-06 + sys_26: -3.19925475e-06 + sys_27: -3.08148053e-07 + sys_28: 4.11347441e-05 + sys_29: 7.39545198e-06 + sys_30: 8.27476726e-05 + sys_31: -1.30582240e-04 + sys_32: 1.58922379e-04 + sys_33: 2.76886362e-05 + sys_34: -1.37663342e-04 + sys_35: -1.60116518e-04 + sys_36: 3.06260837e-05 + sys_37: -8.68436291e-05 + sys_38: 3.86980457e-04 + sys_39: 3.36329977e-04 + sys_40: -1.75632361e-05 + sys_41: 1.73978376e-04 + sys_42: 5.38939815e-06 + sys_43: -7.68653917e-05 + sys_44: -5.47553407e-05 + sys_45: -1.19530080e-04 + sys_46: -1.02143579e-04 + sys_47: -5.14565442e-05 + sys_48: -4.56472415e-04 + sys_49: -5.87762756e-04 + sys_50: -2.73696933e-04 + sys_51: 1.17613707e-03 + sys_52: -4.69752349e-03 + sys_53: 7.35019053e-04 + sys_54: -5.84448311e-04 + sys_55: 1.66740466e-07 - lumi_ue: 0.00031 - pol: 0.0001452 - sys_0: -7.690335906649857e-05 - sys_1: -0.0003431269756041768 - sys_2: 1.973080074173282e-05 - sys_3: 0.00016932207960146573 - sys_4: 9.876339664444757e-05 - sys_5: 0.00013067476919975126 - sys_6: -0.00016568086257604087 - sys_7: 0.00013756910145646444 - sys_8: 1.0452412001205653e-05 - sys_9: 0.00018686196754934704 - sys_10: -6.822518968672883e-05 - sys_11: 0.00017362476301864443 - sys_12: -0.0001113319956220243 - sys_13: 0.00019342842961960394 - sys_14: 0.00033293631808778515 - sys_15: -0.00018657502882697262 - sys_16: -0.00021431509581689334 - sys_17: 5.090620962717554e-05 - sys_18: -0.00034331178051842274 - sys_19: 0.00016780891892789526 - sys_20: -0.00022630158560487686 - sys_21: -0.0002819012033929795 - sys_22: 0.0007404225384720784 - sys_23: 7.588619475640872e-07 - sys_24: -1.1498530231522651e-06 - sys_25: 5.514196021554904e-07 - sys_26: -1.417420487638262e-06 - sys_27: 7.714749948617448e-06 - sys_28: 1.6037005999772357e-05 - sys_29: 2.4416497156058823e-06 - sys_30: 3.303318566996404e-05 - sys_31: -7.942219172126687e-05 - sys_32: 0.00019685303809552558 - sys_33: 2.587351606240858e-05 - sys_34: -0.00013257945774271886 - sys_35: -0.00022809657087744122 - sys_36: -1.1030139501577082e-05 - sys_37: -3.1315806799136696e-05 - sys_38: 0.00016240340642014427 - sys_39: 0.0038223814790197238 - sys_40: -0.00030810125707198476 - sys_41: 0.004803726261142993 - sys_42: -0.001217152748738582 - sys_43: 0.00147980580924706 - sys_44: 0.00021203997148477524 - sys_45: 0.00034860242410441174 - sys_46: 0.0002159072718954201 - sys_47: 7.981892435826199e-05 - sys_48: 9.971965371774434e-05 - sys_49: 9.10646348442094e-05 - sys_50: 3.819590565581666e-05 - sys_51: -8.659106281303899e-05 - sys_52: 0.00034467886120978036 - sys_53: 0.0003216189999567606 - sys_54: 0.00017201012667467433 - sys_55: 4.202081529988964e-06 + pol: 1.45200000e-04 + sys_0: -7.69033591e-05 + sys_1: -3.43126976e-04 + sys_2: 1.97308007e-05 + sys_3: 1.69322080e-04 + sys_4: 9.87633966e-05 + sys_5: 1.30674769e-04 + sys_6: -1.65680863e-04 + sys_7: 1.37569101e-04 + sys_8: 1.04524120e-05 + sys_9: 1.86861968e-04 + sys_10: -6.82251897e-05 + sys_11: 1.73624763e-04 + sys_12: -1.11331996e-04 + sys_13: 1.93428430e-04 + sys_14: 3.32936318e-04 + sys_15: -1.86575029e-04 + sys_16: -2.14315096e-04 + sys_17: 5.09062096e-05 + sys_18: -3.43311781e-04 + sys_19: 1.67808919e-04 + sys_20: -2.26301586e-04 + sys_21: -2.81901203e-04 + sys_22: 7.40422538e-04 + sys_23: 7.58861948e-07 + sys_24: -1.14985302e-06 + sys_25: 5.51419602e-07 + sys_26: -1.41742049e-06 + sys_27: 7.71474995e-06 + sys_28: 1.60370060e-05 + sys_29: 2.44164972e-06 + sys_30: 3.30331857e-05 + sys_31: -7.94221917e-05 + sys_32: 1.96853038e-04 + sys_33: 2.58735161e-05 + sys_34: -1.32579458e-04 + sys_35: -2.28096571e-04 + sys_36: -1.10301395e-05 + sys_37: -3.13158068e-05 + sys_38: 1.62403406e-04 + sys_39: 3.82238148e-03 + sys_40: -3.08101257e-04 + sys_41: 4.80372626e-03 + sys_42: -1.21715275e-03 + sys_43: 1.47980581e-03 + sys_44: 2.12039971e-04 + sys_45: 3.48602424e-04 + sys_46: 2.15907272e-04 + sys_47: 7.98189244e-05 + sys_48: 9.97196537e-05 + sys_49: 9.10646348e-05 + sys_50: 3.81959057e-05 + sys_51: -8.65910628e-05 + sys_52: 3.44678861e-04 + sys_53: 3.21619000e-04 + sys_54: 1.72010127e-04 + sys_55: 4.20208153e-06 - lumi_ue: 0.00028 pol: 6.6e-05 - sys_0: -0.00010830036565284268 - sys_1: -0.0004615853254683115 - sys_2: 1.6323430404499655e-05 - sys_3: 0.0002408305782100076 - sys_4: 0.00016823904255380178 - sys_5: 0.00021808972279365436 - sys_6: -0.00027053904799923423 - sys_7: 0.0002512567772083005 - sys_8: 2.047782520295539e-05 - sys_9: 0.0005050464927237347 - sys_10: 0.00021700766364687236 - sys_11: 0.00039766886997451956 - sys_12: -0.00027813098211448774 - sys_13: 0.0007778394550956992 - sys_14: 0.004429482222680826 - sys_15: -0.00843195451813812 - sys_16: 0.0004523856770362773 - sys_17: -5.436157727194889e-05 - sys_18: 0.0003269136204794779 - sys_19: 4.349125975048261e-05 - sys_20: 0.0009642296130428131 - sys_21: 0.00037719137185549483 - sys_22: -0.00015638320220880258 - sys_23: 2.797744963064109e-07 - sys_24: -6.574964924843105e-07 - sys_25: 8.036754876903529e-07 - sys_26: -4.607380486876442e-07 - sys_27: 6.645141629324924e-06 - sys_28: 4.635561661431753e-06 - sys_29: 4.1852239121376545e-07 - sys_30: 8.257250306231724e-06 - sys_31: -2.0618980931827866e-05 - sys_32: 8.448755235188124e-05 - sys_33: 2.389454264861748e-05 - sys_34: -0.0001200286651051588 - sys_35: -0.0002392161377310501 - sys_36: -2.7061548748582745e-05 - sys_37: -1.1163287307605065e-05 - sys_38: 6.79501843339599e-05 - sys_39: -0.0002621683797576753 - sys_40: 1.2857741588442294e-05 - sys_41: -0.0001753436122057103 - sys_42: 1.6842185566249032e-05 - sys_43: 2.1765773346558262e-05 - sys_44: 1.0775001472923758e-05 - sys_45: 2.7029415970583684e-05 - sys_46: 2.28453427008528e-05 - sys_47: 8.974974679228194e-06 - sys_48: 2.5696277929687414e-06 - sys_49: -4.260395206298613e-06 - sys_50: 4.125749163826171e-06 - sys_51: -2.351202326964028e-06 - sys_52: 0.00014253763721466575 - sys_53: 0.00033411677678069936 - sys_54: 0.00017721143872265042 - sys_55: 1.9647346512936697e-06 + sys_0: -1.08300366e-04 + sys_1: -4.61585325e-04 + sys_2: 1.63234304e-05 + sys_3: 2.40830578e-04 + sys_4: 1.68239043e-04 + sys_5: 2.18089723e-04 + sys_6: -2.70539048e-04 + sys_7: 2.51256777e-04 + sys_8: 2.04778252e-05 + sys_9: 5.05046493e-04 + sys_10: 2.17007664e-04 + sys_11: 3.97668870e-04 + sys_12: -2.78130982e-04 + sys_13: 7.77839455e-04 + sys_14: 4.42948222e-03 + sys_15: -8.43195452e-03 + sys_16: 4.52385677e-04 + sys_17: -5.43615773e-05 + sys_18: 3.26913620e-04 + sys_19: 4.34912598e-05 + sys_20: 9.64229613e-04 + sys_21: 3.77191372e-04 + sys_22: -1.56383202e-04 + sys_23: 2.79774496e-07 + sys_24: -6.57496492e-07 + sys_25: 8.03675488e-07 + sys_26: -4.60738049e-07 + sys_27: 6.64514163e-06 + sys_28: 4.63556166e-06 + sys_29: 4.18522391e-07 + sys_30: 8.25725031e-06 + sys_31: -2.06189809e-05 + sys_32: 8.44875524e-05 + sys_33: 2.38945426e-05 + sys_34: -1.20028665e-04 + sys_35: -2.39216138e-04 + sys_36: -2.70615487e-05 + sys_37: -1.11632873e-05 + sys_38: 6.79501843e-05 + sys_39: -2.62168380e-04 + sys_40: 1.28577416e-05 + sys_41: -1.75343612e-04 + sys_42: 1.68421856e-05 + sys_43: 2.17657733e-05 + sys_44: 1.07750015e-05 + sys_45: 2.70294160e-05 + sys_46: 2.28453427e-05 + sys_47: 8.97497468e-06 + sys_48: 2.56962779e-06 + sys_49: -4.26039521e-06 + sys_50: 4.12574916e-06 + sys_51: -2.35120233e-06 + sys_52: 1.42537637e-04 + sys_53: 3.34116777e-04 + sys_54: 1.77211439e-04 + sys_55: 1.96473465e-06 - lumi_ue: 0.00026 pol: 0.001056 - sys_0: -0.0001667749516034284 - sys_1: -0.0008153614143477588 - sys_2: 1.4580174709749876e-05 - sys_3: 0.00048453447264043244 - sys_4: 0.00042344441212105157 - sys_5: 0.0005536682896418332 - sys_6: -0.0007740553516750177 - sys_7: 0.001012530860570881 - sys_8: 9.059559012952524e-05 - sys_9: 0.013589845192266753 - sys_10: -0.0042641866321884775 - sys_11: -0.0010417524082603111 - sys_12: 0.000476320272847139 - sys_13: -0.00035393544430039757 - sys_14: -0.00038076140395992277 - sys_15: 0.0003469806801852985 - sys_16: 5.675179899154221e-05 - sys_17: -3.111363064557023e-06 - sys_18: 4.728759223658677e-05 - sys_19: 0.00011408379656309658 - sys_20: 0.0007733538451368929 - sys_21: 0.00023931949794579797 - sys_22: -6.365306310428866e-05 - sys_23: 6.054197873926345e-08 - sys_24: -3.286763598314171e-07 - sys_25: 6.037652338775732e-07 - sys_26: -4.146863009460964e-08 - sys_27: 5.071809055251563e-06 - sys_28: 1.5143889314388533e-06 - sys_29: -6.541216202728392e-08 - sys_30: 1.1746715213122764e-06 - sys_31: -2.5445813549032116e-06 - sys_32: 2.04696306860107e-05 - sys_33: 1.299207742758332e-05 - sys_34: -5.1621221362100795e-05 - sys_35: -8.7000097736531e-05 - sys_36: -2.583821753050224e-06 - sys_37: -1.2077712321838716e-05 - sys_38: 4.3400022419453526e-05 - sys_39: -0.00011091175228940104 - sys_40: 5.001170320403918e-06 - sys_41: -6.501087541725e-05 - sys_42: 4.157333870213965e-06 - sys_43: 1.0307922326470305e-05 - sys_44: 5.261709082126764e-06 - sys_45: 1.0244099194698737e-05 - sys_46: 6.134285883110053e-06 - sys_47: 1.9436805550778034e-06 - sys_48: -1.0152172562154443e-05 - sys_49: -1.876966416738158e-05 - sys_50: -1.9356204163819162e-06 - sys_51: 1.768149324665555e-05 - sys_52: 9.267601807812345e-05 - sys_53: 0.00035369722002467604 - sys_54: 0.00017858852906167723 - sys_55: 2.3870146230003993e-06 + sys_0: -1.66774952e-04 + sys_1: -8.15361414e-04 + sys_2: 1.45801747e-05 + sys_3: 4.84534473e-04 + sys_4: 4.23444412e-04 + sys_5: 5.53668290e-04 + sys_6: -7.74055352e-04 + sys_7: 1.01253086e-03 + sys_8: 9.05955901e-05 + sys_9: 1.35898452e-02 + sys_10: -4.26418663e-03 + sys_11: -1.04175241e-03 + sys_12: 4.76320273e-04 + sys_13: -3.53935444e-04 + sys_14: -3.80761404e-04 + sys_15: 3.46980680e-04 + sys_16: 5.67517990e-05 + sys_17: -3.11136306e-06 + sys_18: 4.72875922e-05 + sys_19: 1.14083797e-04 + sys_20: 7.73353845e-04 + sys_21: 2.39319498e-04 + sys_22: -6.36530631e-05 + sys_23: 6.05419787e-08 + sys_24: -3.28676360e-07 + sys_25: 6.03765234e-07 + sys_26: -4.14686301e-08 + sys_27: 5.07180906e-06 + sys_28: 1.51438893e-06 + sys_29: -6.54121620e-08 + sys_30: 1.17467152e-06 + sys_31: -2.54458135e-06 + sys_32: 2.04696307e-05 + sys_33: 1.29920774e-05 + sys_34: -5.16212214e-05 + sys_35: -8.70000977e-05 + sys_36: -2.58382175e-06 + sys_37: -1.20777123e-05 + sys_38: 4.34000224e-05 + sys_39: -1.10911752e-04 + sys_40: 5.00117032e-06 + sys_41: -6.50108754e-05 + sys_42: 4.15733387e-06 + sys_43: 1.03079223e-05 + sys_44: 5.26170908e-06 + sys_45: 1.02440992e-05 + sys_46: 6.13428588e-06 + sys_47: 1.94368056e-06 + sys_48: -1.01521726e-05 + sys_49: -1.87696642e-05 + sys_50: -1.93562042e-06 + sys_51: 1.76814932e-05 + sys_52: 9.26760181e-05 + sys_53: 3.53697220e-04 + sys_54: 1.78588529e-04 + sys_55: 2.38701462e-06 - lumi_ue: 0.00026 pol: 0.001353 - sys_0: -0.0003367843113215254 - sys_1: -0.0025236706951841685 - sys_2: 7.022843477164621e-05 - sys_3: 0.0029412161222919673 - sys_4: 0.023938218028915725 - sys_5: -0.0006857708214051589 - sys_6: 0.0005043725456326073 - sys_7: -0.0004371914509472524 - sys_8: -2.7034993337813336e-05 - sys_9: -0.001065408986462869 - sys_10: -0.0015071342671947473 - sys_11: -0.0001669306489525776 - sys_12: 0.00010290820287828981 - sys_13: -8.004256690985228e-05 - sys_14: -0.00011196231009972572 - sys_15: 0.00010865509972290826 - sys_16: 1.2443730467349905e-05 - sys_17: 3.9511715446684145e-06 - sys_18: -2.7386431278889803e-06 - sys_19: 9.50007430665733e-05 - sys_20: 0.0005573533000873524 - sys_21: 0.00016543527085081846 - sys_22: -3.208711837604076e-05 - sys_23: 1.0041559010643371e-08 - sys_24: -1.3562247246122338e-07 - sys_25: 2.7511768831485546e-07 - sys_26: 1.5407564663689706e-08 - sys_27: 2.28891221029939e-06 - sys_28: 2.8362920100372474e-07 - sys_29: -7.023135495025891e-08 - sys_30: -2.206000101566021e-07 - sys_31: 7.804648679005436e-07 - sys_32: 2.058979827524908e-06 - sys_33: 4.315572760382107e-06 - sys_34: -1.2252541095415136e-05 - sys_35: -1.4283980219283651e-05 - sys_36: 3.018730941631258e-06 - sys_37: -5.410816927291254e-06 - sys_38: 1.730536154169422e-05 - sys_39: -4.03123817958424e-05 - sys_40: 2.5436070724610294e-06 - sys_41: -2.7761904383467952e-06 - sys_42: -7.864509074117879e-06 - sys_43: 1.2095608963273112e-05 - sys_44: 6.176912699002895e-06 - sys_45: 9.916669923839547e-06 - sys_46: 9.171355003610932e-06 - sys_47: 3.905145532960547e-06 - sys_48: 2.975129611387985e-06 - sys_49: 1.4222083826092772e-06 - sys_50: 4.4363002260449293e-07 - sys_51: 5.355216135285675e-07 - sys_52: 2.678388313633459e-05 - sys_53: 8.862616698716722e-05 - sys_54: 4.206231847260779e-05 - sys_55: 1.6156858141123203e-07 + sys_0: -3.36784311e-04 + sys_1: -2.52367070e-03 + sys_2: 7.02284348e-05 + sys_3: 2.94121612e-03 + sys_4: 2.39382180e-02 + sys_5: -6.85770821e-04 + sys_6: 5.04372546e-04 + sys_7: -4.37191451e-04 + sys_8: -2.70349933e-05 + sys_9: -1.06540899e-03 + sys_10: -1.50713427e-03 + sys_11: -1.66930649e-04 + sys_12: 1.02908203e-04 + sys_13: -8.00425669e-05 + sys_14: -1.11962310e-04 + sys_15: 1.08655100e-04 + sys_16: 1.24437305e-05 + sys_17: 3.95117154e-06 + sys_18: -2.73864313e-06 + sys_19: 9.50007431e-05 + sys_20: 5.57353300e-04 + sys_21: 1.65435271e-04 + sys_22: -3.20871184e-05 + sys_23: 1.00415590e-08 + sys_24: -1.35622472e-07 + sys_25: 2.75117688e-07 + sys_26: 1.54075647e-08 + sys_27: 2.28891221e-06 + sys_28: 2.83629201e-07 + sys_29: -7.02313550e-08 + sys_30: -2.20600010e-07 + sys_31: 7.80464868e-07 + sys_32: 2.05897983e-06 + sys_33: 4.31557276e-06 + sys_34: -1.22525411e-05 + sys_35: -1.42839802e-05 + sys_36: 3.01873094e-06 + sys_37: -5.41081693e-06 + sys_38: 1.73053615e-05 + sys_39: -4.03123818e-05 + sys_40: 2.54360707e-06 + sys_41: -2.77619044e-06 + sys_42: -7.86450907e-06 + sys_43: 1.20956090e-05 + sys_44: 6.17691270e-06 + sys_45: 9.91666992e-06 + sys_46: 9.17135500e-06 + sys_47: 3.90514553e-06 + sys_48: 2.97512961e-06 + sys_49: 1.42220838e-06 + sys_50: 4.43630023e-07 + sys_51: 5.35521614e-07 + sys_52: 2.67838831e-05 + sys_53: 8.86261670e-05 + sys_54: 4.20623185e-05 + sys_55: 1.61568581e-07 diff --git a/nnpdf_data/nnpdf_data/commondata/STAR-2012_2JET_510GEV/uncertainties_C.yaml b/nnpdf_data/nnpdf_data/commondata/STAR-2012_2JET_510GEV/uncertainties_C.yaml index ecd715cce4..f167d9d0c1 100644 --- a/nnpdf_data/nnpdf_data/commondata/STAR-2012_2JET_510GEV/uncertainties_C.yaml +++ b/nnpdf_data/nnpdf_data/commondata/STAR-2012_2JET_510GEV/uncertainties_C.yaml @@ -233,582 +233,582 @@ definitions: type: STAR2012JETunc55 bins: - lumi_ue: 0.00026 - pol: 0.0003828 - sys_0: -1.015283788333557e-05 - sys_1: -6.40136520095839e-05 - sys_2: 6.050958610977575e-06 - sys_3: 2.7729514871357617e-05 - sys_4: 1.057154844739455e-05 - sys_5: 2.14007737633009e-05 - sys_6: -3.089873711945708e-05 - sys_7: 2.7420994060287283e-05 - sys_8: -9.366267256355834e-07 - sys_9: 2.6039540126473047e-05 - sys_10: -2.259314941173036e-05 - sys_11: 4.238658264469578e-05 - sys_12: -2.1767689617537856e-05 - sys_13: 4.017869524894213e-05 - sys_14: 0.00010967515780824536 - sys_15: -2.3990171219211632e-05 - sys_16: -0.00030583677549011833 - sys_17: 0.008487809895745952 - sys_18: 0.00023708266182731125 - sys_19: -0.00020865888331487997 - sys_20: -9.556047814115155e-05 - sys_21: 0.00010467445294252914 - sys_22: -3.998880964436543e-05 - sys_23: -5.561719000921262e-06 - sys_24: 3.4301518231636557e-06 - sys_25: 6.836109888949824e-07 - sys_26: 2.6276031826618346e-06 - sys_27: 5.923855059040049e-06 - sys_28: 2.5760599150706203e-06 - sys_29: -3.6302219432637476e-07 - sys_30: -3.6299178014984573e-07 - sys_31: 1.1553986622683671e-06 - sys_32: -1.235919500679234e-06 - sys_33: 1.2409988789616806e-06 - sys_34: -1.5716731395366432e-06 - sys_35: 3.3355807155877493e-06 - sys_36: 4.929402719236635e-06 - sys_37: -1.4212571475731793e-06 - sys_38: 4.746761941358607e-06 - sys_39: -7.601441286618806e-05 - sys_40: -2.829444770227022e-06 - sys_41: 5.811982444407825e-06 - sys_42: -1.7935508766208508e-05 - sys_43: 3.9043060927871576e-06 - sys_44: 1.633521848282981e-05 - sys_45: 1.062336836046241e-05 - sys_46: 9.975554388649127e-06 - sys_47: 1.2212925523392254e-06 - sys_48: 8.860375721273482e-06 - sys_49: 1.0112152266890835e-05 - sys_50: 1.8081514575795566e-06 - sys_51: -6.07555023597958e-06 - sys_52: 3.8685967431024015e-06 - sys_53: -7.340037791468193e-06 - sys_54: -7.867651899694771e-06 - sys_55: -1.8373881288758406e-06 + pol: 3.82800000e-04 + sys_0: -1.01528379e-05 + sys_1: -6.40136520e-05 + sys_2: 6.05095861e-06 + sys_3: 2.77295149e-05 + sys_4: 1.05715484e-05 + sys_5: 2.14007738e-05 + sys_6: -3.08987371e-05 + sys_7: 2.74209941e-05 + sys_8: -9.36626726e-07 + sys_9: 2.60395401e-05 + sys_10: -2.25931494e-05 + sys_11: 4.23865826e-05 + sys_12: -2.17676896e-05 + sys_13: 4.01786952e-05 + sys_14: 1.09675158e-04 + sys_15: -2.39901712e-05 + sys_16: -3.05836775e-04 + sys_17: 8.48780990e-03 + sys_18: 2.37082662e-04 + sys_19: -2.08658883e-04 + sys_20: -9.55604781e-05 + sys_21: 1.04674453e-04 + sys_22: -3.99888096e-05 + sys_23: -5.56171900e-06 + sys_24: 3.43015182e-06 + sys_25: 6.83610989e-07 + sys_26: 2.62760318e-06 + sys_27: 5.92385506e-06 + sys_28: 2.57605992e-06 + sys_29: -3.63022194e-07 + sys_30: -3.62991780e-07 + sys_31: 1.15539866e-06 + sys_32: -1.23591950e-06 + sys_33: 1.24099888e-06 + sys_34: -1.57167314e-06 + sys_35: 3.33558072e-06 + sys_36: 4.92940272e-06 + sys_37: -1.42125715e-06 + sys_38: 4.74676194e-06 + sys_39: -7.60144129e-05 + sys_40: -2.82944477e-06 + sys_41: 5.81198244e-06 + sys_42: -1.79355088e-05 + sys_43: 3.90430609e-06 + sys_44: 1.63352185e-05 + sys_45: 1.06233684e-05 + sys_46: 9.97555439e-06 + sys_47: 1.22129255e-06 + sys_48: 8.86037572e-06 + sys_49: 1.01121523e-05 + sys_50: 1.80815146e-06 + sys_51: -6.07555024e-06 + sys_52: 3.86859674e-06 + sys_53: -7.34003779e-06 + sys_54: -7.86765190e-06 + sys_55: -1.83738813e-06 - lumi_ue: 0.00063 pol: 3.96e-05 - sys_0: -4.4951133477600836e-05 - sys_1: -0.00019723950108585246 - sys_2: 1.1571645759926264e-05 - sys_3: 9.113051998677082e-05 - sys_4: 4.450028228150857e-05 - sys_5: 8.277593162850083e-05 - sys_6: -9.02733212063279e-05 - sys_7: 6.528945300357008e-05 - sys_8: 5.277623546475968e-06 - sys_9: 7.264109751551682e-05 - sys_10: -6.553074958801738e-05 - sys_11: 0.00010916920164949018 - sys_12: -5.70415164649125e-05 - sys_13: 8.734975822087314e-05 - sys_14: 0.00020424831098701693 - sys_15: -1.7769790096161028e-05 - sys_16: -0.00011510791408295585 - sys_17: 7.019541516786415e-05 - sys_18: -0.00020945663129868808 - sys_19: 0.0002961357863148339 - sys_20: 0.00017437020998266263 - sys_21: -0.00027769549069662537 - sys_22: 0.0004023161847676083 - sys_23: -5.512324400177141e-06 - sys_24: 8.975350970995115e-06 - sys_25: -8.340301483507975e-06 - sys_26: 4.516667085227778e-06 - sys_27: 9.967193912032007e-06 - sys_28: 3.9839578564707325e-06 - sys_29: -5.969676844870713e-06 - sys_30: -3.350988912158168e-06 - sys_31: 6.584811787366252e-06 - sys_32: -1.0816672496249047e-05 - sys_33: 7.13237006333377e-06 - sys_34: -5.955103120147196e-06 - sys_35: 2.935252379080021e-05 - sys_36: 2.2149857879611683e-05 - sys_37: -1.591375917573143e-05 - sys_38: 4.3395734521003896e-05 - sys_39: 0.004214786994180892 - sys_40: 0.001954903790829068 - sys_41: -0.003963239403308998 - sys_42: -0.0023751727455849844 - sys_43: 0.0002777939418561797 - sys_44: 0.0005314956196176084 - sys_45: 0.00012361876658804544 - sys_46: 0.00010119995450965262 - sys_47: 5.362320525171859e-05 - sys_48: 7.14182223054003e-05 - sys_49: 8.207419097469445e-05 - sys_50: 1.4928332225501216e-05 - sys_51: -5.468782807896701e-05 - sys_52: 5.557362399596695e-05 - sys_53: -7.859758395701238e-05 - sys_54: -6.750577321389685e-05 - sys_55: -4.261546175399222e-06 + sys_0: -4.49511335e-05 + sys_1: -1.97239501e-04 + sys_2: 1.15716458e-05 + sys_3: 9.11305200e-05 + sys_4: 4.45002823e-05 + sys_5: 8.27759316e-05 + sys_6: -9.02733212e-05 + sys_7: 6.52894530e-05 + sys_8: 5.27762355e-06 + sys_9: 7.26410975e-05 + sys_10: -6.55307496e-05 + sys_11: 1.09169202e-04 + sys_12: -5.70415165e-05 + sys_13: 8.73497582e-05 + sys_14: 2.04248311e-04 + sys_15: -1.77697901e-05 + sys_16: -1.15107914e-04 + sys_17: 7.01954152e-05 + sys_18: -2.09456631e-04 + sys_19: 2.96135786e-04 + sys_20: 1.74370210e-04 + sys_21: -2.77695491e-04 + sys_22: 4.02316185e-04 + sys_23: -5.51232440e-06 + sys_24: 8.97535097e-06 + sys_25: -8.34030148e-06 + sys_26: 4.51666709e-06 + sys_27: 9.96719391e-06 + sys_28: 3.98395786e-06 + sys_29: -5.96967684e-06 + sys_30: -3.35098891e-06 + sys_31: 6.58481179e-06 + sys_32: -1.08166725e-05 + sys_33: 7.13237006e-06 + sys_34: -5.95510312e-06 + sys_35: 2.93525238e-05 + sys_36: 2.21498579e-05 + sys_37: -1.59137592e-05 + sys_38: 4.33957345e-05 + sys_39: 4.21478699e-03 + sys_40: 1.95490379e-03 + sys_41: -3.96323940e-03 + sys_42: -2.37517275e-03 + sys_43: 2.77793942e-04 + sys_44: 5.31495620e-04 + sys_45: 1.23618767e-04 + sys_46: 1.01199955e-04 + sys_47: 5.36232053e-05 + sys_48: 7.14182223e-05 + sys_49: 8.20741910e-05 + sys_50: 1.49283322e-05 + sys_51: -5.46878281e-05 + sys_52: 5.55736240e-05 + sys_53: -7.85975840e-05 + sys_54: -6.75057732e-05 + sys_55: -4.26154618e-06 - lumi_ue: 0.00074 - pol: 0.0002838 - sys_0: -2.8208423497213675e-05 - sys_1: -0.0001296214494998223 - sys_2: 1.1060763593704212e-05 - sys_3: 6.011371832736353e-05 - sys_4: 2.904922696297027e-05 - sys_5: 5.586325629417797e-05 - sys_6: -5.791649378133646e-05 - sys_7: 4.448209388818118e-05 - sys_8: 5.578229179588772e-06 - sys_9: 4.646367657890054e-05 - sys_10: -4.03465084793993e-05 - sys_11: 7.683853896225896e-05 - sys_12: -3.306467824838348e-05 - sys_13: 5.272382278704908e-05 - sys_14: 0.0001426199206357512 - sys_15: -9.288904297091633e-07 - sys_16: -7.559899960428639e-05 - sys_17: 4.450563708740444e-05 - sys_18: -0.00013055511776438478 - sys_19: 0.0002317805379413199 - sys_20: 9.678505570705449e-05 - sys_21: -0.0002175603839933293 - sys_22: 0.00015738271863395377 - sys_23: -2.4411091328861852e-06 - sys_24: 8.395625833192962e-06 - sys_25: -1.2701550840267733e-05 - sys_26: 3.638258142573997e-06 - sys_27: -4.117118291743786e-07 - sys_28: 1.777282795074516e-05 - sys_29: -1.1171025853352174e-05 - sys_30: -1.1360687025118082e-06 - sys_31: 7.076142839115132e-06 - sys_32: -9.364685785291378e-06 - sys_33: 6.886945040874358e-06 - sys_34: -7.950200272153872e-06 - sys_35: 2.467817805035404e-05 - sys_36: 1.9015145846390734e-05 - sys_37: -1.4357207682141946e-05 - sys_38: 3.68230568589577e-05 - sys_39: 0.0008340815362974678 - sys_40: 0.0001834076548382231 - sys_41: -0.00026489978902198926 - sys_42: 0.0006394194285701132 - sys_43: -3.738922712214019e-05 - sys_44: -0.006055690203220291 - sys_45: 0.0006311207432569425 - sys_46: 0.0002293171612804536 - sys_47: 0.00012698635281516559 - sys_48: 5.489075674835e-05 - sys_49: 8.893099458187995e-05 - sys_50: 1.5300372972044948e-05 - sys_51: -5.045941749137419e-05 - sys_52: 4.4204133415430944e-05 - sys_53: -6.291999267919374e-05 - sys_54: -6.51407831217252e-05 - sys_55: -1.2927391529462794e-06 + pol: 2.83800000e-04 + sys_0: -2.82084235e-05 + sys_1: -1.29621449e-04 + sys_2: 1.10607636e-05 + sys_3: 6.01137183e-05 + sys_4: 2.90492270e-05 + sys_5: 5.58632563e-05 + sys_6: -5.79164938e-05 + sys_7: 4.44820939e-05 + sys_8: 5.57822918e-06 + sys_9: 4.64636766e-05 + sys_10: -4.03465085e-05 + sys_11: 7.68385390e-05 + sys_12: -3.30646782e-05 + sys_13: 5.27238228e-05 + sys_14: 1.42619921e-04 + sys_15: -9.28890430e-07 + sys_16: -7.55989996e-05 + sys_17: 4.45056371e-05 + sys_18: -1.30555118e-04 + sys_19: 2.31780538e-04 + sys_20: 9.67850557e-05 + sys_21: -2.17560384e-04 + sys_22: 1.57382719e-04 + sys_23: -2.44110913e-06 + sys_24: 8.39562583e-06 + sys_25: -1.27015508e-05 + sys_26: 3.63825814e-06 + sys_27: -4.11711829e-07 + sys_28: 1.77728280e-05 + sys_29: -1.11710259e-05 + sys_30: -1.13606870e-06 + sys_31: 7.07614284e-06 + sys_32: -9.36468579e-06 + sys_33: 6.88694504e-06 + sys_34: -7.95020027e-06 + sys_35: 2.46781781e-05 + sys_36: 1.90151458e-05 + sys_37: -1.43572077e-05 + sys_38: 3.68230569e-05 + sys_39: 8.34081536e-04 + sys_40: 1.83407655e-04 + sys_41: -2.64899789e-04 + sys_42: 6.39419429e-04 + sys_43: -3.73892271e-05 + sys_44: -6.05569020e-03 + sys_45: 6.31120743e-04 + sys_46: 2.29317161e-04 + sys_47: 1.26986353e-04 + sys_48: 5.48907567e-05 + sys_49: 8.89309946e-05 + sys_50: 1.53003730e-05 + sys_51: -5.04594175e-05 + sys_52: 4.42041334e-05 + sys_53: -6.29199927e-05 + sys_54: -6.51407831e-05 + sys_55: -1.29273915e-06 - lumi_ue: 0.00078 - pol: 0.0003234 - sys_0: -3.7245732577407394e-05 - sys_1: -0.0001768899683656594 - sys_2: 1.4253649201986061e-05 - sys_3: 7.914405894696515e-05 - sys_4: 4.664856844953674e-05 - sys_5: 7.375864613808609e-05 - sys_6: -7.524290761288462e-05 - sys_7: 5.967094595096685e-05 - sys_8: 5.541273549615986e-06 - sys_9: 6.769749200661751e-05 - sys_10: -5.785021192356815e-05 - sys_11: 0.00010893593641156645 - sys_12: -4.940366896589479e-05 - sys_13: 7.825856963810697e-05 - sys_14: 0.0002004067678082181 - sys_15: -9.60902358120336e-06 - sys_16: -0.00011864756608644401 - sys_17: 6.705161393443894e-05 - sys_18: -0.00019669430558573326 - sys_19: 0.0003149961552391121 - sys_20: 0.00016417189385631195 - sys_21: -0.0003016657421474872 - sys_22: 0.0003546968065238367 - sys_23: -1.473127924321449e-07 - sys_24: 3.2342187151695918e-06 - sys_25: -1.1122597126232044e-05 - sys_26: 1.2913568573435791e-06 - sys_27: -5.2446949684472015e-06 - sys_28: 2.7044368650195376e-05 - sys_29: -9.370284703001637e-06 - sys_30: 1.1469166769391761e-05 - sys_31: -3.4280046371990606e-06 - sys_32: -5.260891711949171e-06 - sys_33: 8.106727032490553e-06 - sys_34: -1.1369320580289852e-05 - sys_35: 3.0298098624475896e-05 - sys_36: 2.08750915991921e-05 - sys_37: -2.0626992196058524e-05 - sys_38: 5.69953441714313e-05 - sys_39: 0.002341728313806769 - sys_40: 0.0005191750716800946 - sys_41: -0.0006372918770125576 - sys_42: 0.005869178899793615 - sys_43: 0.0007245175066399343 - sys_44: 0.0009356990286708484 - sys_45: 0.0001330558941111196 - sys_46: 0.00014674317521562322 - sys_47: 6.717452165254651e-05 - sys_48: 5.948118935309835e-05 - sys_49: 8.661514745695493e-05 - sys_50: 1.6239651181976114e-05 - sys_51: -5.545848166932455e-05 - sys_52: 6.023605591727804e-05 - sys_53: -7.636754501750809e-05 - sys_54: -6.370996316790278e-05 - sys_55: -1.134058389153143e-06 + pol: 3.23400000e-04 + sys_0: -3.72457326e-05 + sys_1: -1.76889968e-04 + sys_2: 1.42536492e-05 + sys_3: 7.91440589e-05 + sys_4: 4.66485684e-05 + sys_5: 7.37586461e-05 + sys_6: -7.52429076e-05 + sys_7: 5.96709460e-05 + sys_8: 5.54127355e-06 + sys_9: 6.76974920e-05 + sys_10: -5.78502119e-05 + sys_11: 1.08935936e-04 + sys_12: -4.94036690e-05 + sys_13: 7.82585696e-05 + sys_14: 2.00406768e-04 + sys_15: -9.60902358e-06 + sys_16: -1.18647566e-04 + sys_17: 6.70516139e-05 + sys_18: -1.96694306e-04 + sys_19: 3.14996155e-04 + sys_20: 1.64171894e-04 + sys_21: -3.01665742e-04 + sys_22: 3.54696807e-04 + sys_23: -1.47312792e-07 + sys_24: 3.23421872e-06 + sys_25: -1.11225971e-05 + sys_26: 1.29135686e-06 + sys_27: -5.24469497e-06 + sys_28: 2.70443687e-05 + sys_29: -9.37028470e-06 + sys_30: 1.14691668e-05 + sys_31: -3.42800464e-06 + sys_32: -5.26089171e-06 + sys_33: 8.10672703e-06 + sys_34: -1.13693206e-05 + sys_35: 3.02980986e-05 + sys_36: 2.08750916e-05 + sys_37: -2.06269922e-05 + sys_38: 5.69953442e-05 + sys_39: 2.34172831e-03 + sys_40: 5.19175072e-04 + sys_41: -6.37291877e-04 + sys_42: 5.86917890e-03 + sys_43: 7.24517507e-04 + sys_44: 9.35699029e-04 + sys_45: 1.33055894e-04 + sys_46: 1.46743175e-04 + sys_47: 6.71745217e-05 + sys_48: 5.94811894e-05 + sys_49: 8.66151475e-05 + sys_50: 1.62396512e-05 + sys_51: -5.54584817e-05 + sys_52: 6.02360559e-05 + sys_53: -7.63675450e-05 + sys_54: -6.37099632e-05 + sys_55: -1.13405839e-06 - lumi_ue: 0.00081 - pol: 0.0003036 - sys_0: -4.472658667203097e-05 - sys_1: -0.00022320498360481306 - sys_2: 1.930965709267514e-05 - sys_3: 0.0001029058717807227 - sys_4: 5.5472378566763054e-05 - sys_5: 9.302606085895745e-05 - sys_6: -0.00010509424138886069 - sys_7: 8.448592848368355e-05 - sys_8: 6.681249469921787e-06 - sys_9: 8.748120209809157e-05 - sys_10: -8.104593924458413e-05 - sys_11: 0.00015016781480677602 - sys_12: -6.988422941957575e-05 - sys_13: 0.00012201760428691107 - sys_14: 0.0003343053167107238 - sys_15: -4.9829441943693325e-05 - sys_16: -0.0002790979397426759 - sys_17: 0.00017522821470439945 - sys_18: -0.0007972545576751336 - sys_19: 0.001705853486645549 - sys_20: 0.001593207306824388 - sys_21: -0.007265290345313723 - sys_22: -0.00034511341919330385 - sys_23: 4.532441645369177e-07 - sys_24: 3.146028072378075e-07 - sys_25: -3.7524967551096944e-06 - sys_26: -9.160440344987183e-07 - sys_27: -5.203502020398029e-06 - sys_28: 2.3953561185320157e-05 - sys_29: -1.6323154238612967e-06 - sys_30: 1.6799444588822865e-05 - sys_31: -1.2268602954708159e-05 - sys_32: 6.169823146186467e-06 - sys_33: 5.073329472477504e-06 - sys_34: -1.2323832101719387e-05 - sys_35: 1.1543073473105702e-05 - sys_36: 1.1037289246099118e-05 - sys_37: -1.4099501198214074e-05 - sys_38: 4.309680777393709e-05 - sys_39: -0.0005812536568989444 - sys_40: -6.329227579912241e-05 - sys_41: 4.479621113274142e-05 - sys_42: -0.0001827808607415242 - sys_43: 3.385297515458926e-05 - sys_44: 0.00015661488963954182 - sys_45: 3.702033113019872e-05 - sys_46: 4.3117150420161706e-05 - sys_47: 2.1857895219185292e-05 - sys_48: 3.1663025407221545e-05 - sys_49: 4.766712611705048e-05 - sys_50: 1.07722209139849e-05 - sys_51: -3.380783394091825e-05 - sys_52: 4.8860629874207706e-05 - sys_53: -4.428702063600286e-05 - sys_54: -3.638587946026271e-05 - sys_55: -4.431089380123702e-06 + pol: 3.03600000e-04 + sys_0: -4.47265867e-05 + sys_1: -2.23204984e-04 + sys_2: 1.93096571e-05 + sys_3: 1.02905872e-04 + sys_4: 5.54723786e-05 + sys_5: 9.30260609e-05 + sys_6: -1.05094241e-04 + sys_7: 8.44859285e-05 + sys_8: 6.68124947e-06 + sys_9: 8.74812021e-05 + sys_10: -8.10459392e-05 + sys_11: 1.50167815e-04 + sys_12: -6.98842294e-05 + sys_13: 1.22017604e-04 + sys_14: 3.34305317e-04 + sys_15: -4.98294419e-05 + sys_16: -2.79097940e-04 + sys_17: 1.75228215e-04 + sys_18: -7.97254558e-04 + sys_19: 1.70585349e-03 + sys_20: 1.59320731e-03 + sys_21: -7.26529035e-03 + sys_22: -3.45113419e-04 + sys_23: 4.53244165e-07 + sys_24: 3.14602807e-07 + sys_25: -3.75249676e-06 + sys_26: -9.16044034e-07 + sys_27: -5.20350202e-06 + sys_28: 2.39535612e-05 + sys_29: -1.63231542e-06 + sys_30: 1.67994446e-05 + sys_31: -1.22686030e-05 + sys_32: 6.16982315e-06 + sys_33: 5.07332947e-06 + sys_34: -1.23238321e-05 + sys_35: 1.15430735e-05 + sys_36: 1.10372892e-05 + sys_37: -1.40995012e-05 + sys_38: 4.30968078e-05 + sys_39: -5.81253657e-04 + sys_40: -6.32922758e-05 + sys_41: 4.47962111e-05 + sys_42: -1.82780861e-04 + sys_43: 3.38529752e-05 + sys_44: 1.56614890e-04 + sys_45: 3.70203311e-05 + sys_46: 4.31171504e-05 + sys_47: 2.18578952e-05 + sys_48: 3.16630254e-05 + sys_49: 4.76671261e-05 + sys_50: 1.07722209e-05 + sys_51: -3.38078339e-05 + sys_52: 4.88606299e-05 + sys_53: -4.42870206e-05 + sys_54: -3.63858795e-05 + sys_55: -4.43108938e-06 - lumi_ue: 0.00052 pol: 0.001023 - sys_0: -3.6851051832564e-05 - sys_1: -0.00018315262229772026 - sys_2: 8.047538974231176e-06 - sys_3: 8.747458576762756e-05 - sys_4: 4.604382030010931e-05 - sys_5: 7.886868574251056e-05 - sys_6: -9.323578490732414e-05 - sys_7: 7.375594648142141e-05 - sys_8: 7.53590845707137e-06 - sys_9: 7.924095423077127e-05 - sys_10: -7.591651260195342e-05 - sys_11: 0.0001261880391621809 - sys_12: -7.129545877318275e-05 - sys_13: 0.00012344133286351479 - sys_14: 0.00030691887992931994 - sys_15: -5.051279960382953e-05 - sys_16: -0.0002803724001675834 - sys_17: 0.00017683354152860429 - sys_18: -0.0012182092438148453 - sys_19: 0.007410783703376743 - sys_20: -0.0019344999026572357 - sys_21: 0.001442637388967993 - sys_22: -0.00023211272579883784 - sys_23: 5.574940428198949e-07 - sys_24: -2.9017686488768436e-07 - sys_25: -1.7061436152827985e-06 - sys_26: -1.315537254585339e-06 - sys_27: -3.997787115229295e-06 - sys_28: 2.0283234061488197e-05 - sys_29: 3.2587125083830866e-06 - sys_30: 2.9517181381465622e-05 - sys_31: -2.6314806322219245e-05 - sys_32: 2.5709121848081288e-05 - sys_33: 2.8060916024566943e-06 - sys_34: -1.736181841698116e-05 - sys_35: -9.26669809341144e-06 - sys_36: 3.8738234836884e-06 - sys_37: -1.1374213908359038e-05 - sys_38: 4.073368249923571e-05 - sys_39: -0.0003673014076511754 - sys_40: -3.424113414049352e-05 - sys_41: -2.6890425008469328e-05 - sys_42: -9.397623269862915e-05 - sys_43: 4.109583047744366e-05 - sys_44: 9.337124566087954e-05 - sys_45: 3.2812171855533395e-05 - sys_46: 3.282456097917641e-05 - sys_47: 1.3752222689707706e-05 - sys_48: 2.562055811471101e-05 - sys_49: 3.2323006494406455e-05 - sys_50: 1.1588531283974242e-05 - sys_51: -2.3778375707027367e-05 - sys_52: 5.206335724507703e-05 - sys_53: -1.7597588331843446e-05 - sys_54: -1.18505553789756e-05 - sys_55: -9.566540397684303e-07 + sys_0: -3.68510518e-05 + sys_1: -1.83152622e-04 + sys_2: 8.04753897e-06 + sys_3: 8.74745858e-05 + sys_4: 4.60438203e-05 + sys_5: 7.88686857e-05 + sys_6: -9.32357849e-05 + sys_7: 7.37559465e-05 + sys_8: 7.53590846e-06 + sys_9: 7.92409542e-05 + sys_10: -7.59165126e-05 + sys_11: 1.26188039e-04 + sys_12: -7.12954588e-05 + sys_13: 1.23441333e-04 + sys_14: 3.06918880e-04 + sys_15: -5.05127996e-05 + sys_16: -2.80372400e-04 + sys_17: 1.76833542e-04 + sys_18: -1.21820924e-03 + sys_19: 7.41078370e-03 + sys_20: -1.93449990e-03 + sys_21: 1.44263739e-03 + sys_22: -2.32112726e-04 + sys_23: 5.57494043e-07 + sys_24: -2.90176865e-07 + sys_25: -1.70614362e-06 + sys_26: -1.31553725e-06 + sys_27: -3.99778712e-06 + sys_28: 2.02832341e-05 + sys_29: 3.25871251e-06 + sys_30: 2.95171814e-05 + sys_31: -2.63148063e-05 + sys_32: 2.57091218e-05 + sys_33: 2.80609160e-06 + sys_34: -1.73618184e-05 + sys_35: -9.26669809e-06 + sys_36: 3.87382348e-06 + sys_37: -1.13742139e-05 + sys_38: 4.07336825e-05 + sys_39: -3.67301408e-04 + sys_40: -3.42411341e-05 + sys_41: -2.68904250e-05 + sys_42: -9.39762327e-05 + sys_43: 4.10958305e-05 + sys_44: 9.33712457e-05 + sys_45: 3.28121719e-05 + sys_46: 3.28245610e-05 + sys_47: 1.37522227e-05 + sys_48: 2.56205581e-05 + sys_49: 3.23230065e-05 + sys_50: 1.15885313e-05 + sys_51: -2.37783757e-05 + sys_52: 5.20633572e-05 + sys_53: -1.75975883e-05 + sys_54: -1.18505554e-05 + sys_55: -9.56654040e-07 - lumi_ue: 0.00053 pol: 0.000297 - sys_0: -8.12748718362083e-05 - sys_1: -0.00038173567351355847 - sys_2: 2.102803834082471e-05 - sys_3: 0.0001867312205842557 - sys_4: 0.00010170773515022121 - sys_5: 0.00016651804853377319 - sys_6: -0.0002141902081839864 - sys_7: 0.0001702995257943224 - sys_8: 2.427726542574997e-05 - sys_9: 0.00021480796741113524 - sys_10: -0.00019903795691271402 - sys_11: 0.00035159399247600517 - sys_12: -0.00022247436613809818 - sys_13: 0.0006153914336301819 - sys_14: 0.00868438318944743 - sys_15: 0.0045481533663459155 - sys_16: 0.00038839839273668115 - sys_17: -8.834479934176649e-05 - sys_18: 0.00033035923383176494 - sys_19: -0.0002398903945124177 - sys_20: -7.237830580567827e-05 - sys_21: 0.00015918690767662333 - sys_22: -0.00011363070983500529 - sys_23: 2.8941323121334443e-07 - sys_24: -4.104267965411893e-07 - sys_25: -1.36829519077312e-07 - sys_26: -7.285139226639097e-07 - sys_27: 1.8899185255828267e-06 - sys_28: 9.263669298432002e-06 - sys_29: 1.626662819834579e-06 - sys_30: 1.8295471301244932e-05 - sys_31: -3.358871861543475e-05 - sys_32: 3.7420379675327023e-05 - sys_33: 5.5021096195008096e-06 - sys_34: -2.3608170499683892e-05 - sys_35: -2.7614733153244657e-05 - sys_36: 1.234558641035004e-06 - sys_37: -9.74974362081029e-06 - sys_38: 4.075575552979908e-05 - sys_39: -0.0002218554127255123 - sys_40: -5.885135981160684e-06 - sys_41: -4.6512116134965995e-05 - sys_42: -3.596688274237884e-05 - sys_43: 2.6743258501470983e-05 - sys_44: 4.302379276180213e-05 - sys_45: 2.6848840906864328e-05 - sys_46: 2.628085690353038e-05 - sys_47: 9.607337554411807e-06 - sys_48: 2.088241362219003e-05 - sys_49: 3.006094624195389e-05 - sys_50: 8.43336644638793e-06 - sys_51: -2.7502235567992615e-05 - sys_52: 5.602358153433234e-05 - sys_53: 6.0501697387150985e-06 - sys_54: -2.7993170250990625e-06 - sys_55: -1.3376849160661355e-06 + sys_0: -8.12748718e-05 + sys_1: -3.81735674e-04 + sys_2: 2.10280383e-05 + sys_3: 1.86731221e-04 + sys_4: 1.01707735e-04 + sys_5: 1.66518049e-04 + sys_6: -2.14190208e-04 + sys_7: 1.70299526e-04 + sys_8: 2.42772654e-05 + sys_9: 2.14807967e-04 + sys_10: -1.99037957e-04 + sys_11: 3.51593992e-04 + sys_12: -2.22474366e-04 + sys_13: 6.15391434e-04 + sys_14: 8.68438319e-03 + sys_15: 4.54815337e-03 + sys_16: 3.88398393e-04 + sys_17: -8.83447993e-05 + sys_18: 3.30359234e-04 + sys_19: -2.39890395e-04 + sys_20: -7.23783058e-05 + sys_21: 1.59186908e-04 + sys_22: -1.13630710e-04 + sys_23: 2.89413231e-07 + sys_24: -4.10426797e-07 + sys_25: -1.36829519e-07 + sys_26: -7.28513923e-07 + sys_27: 1.88991853e-06 + sys_28: 9.26366930e-06 + sys_29: 1.62666282e-06 + sys_30: 1.82954713e-05 + sys_31: -3.35887186e-05 + sys_32: 3.74203797e-05 + sys_33: 5.50210962e-06 + sys_34: -2.36081705e-05 + sys_35: -2.76147332e-05 + sys_36: 1.23455864e-06 + sys_37: -9.74974362e-06 + sys_38: 4.07557555e-05 + sys_39: -2.21855413e-04 + sys_40: -5.88513598e-06 + sys_41: -4.65121161e-05 + sys_42: -3.59668827e-05 + sys_43: 2.67432585e-05 + sys_44: 4.30237928e-05 + sys_45: 2.68488409e-05 + sys_46: 2.62808569e-05 + sys_47: 9.60733755e-06 + sys_48: 2.08824136e-05 + sys_49: 3.00609462e-05 + sys_50: 8.43336645e-06 + sys_51: -2.75022356e-05 + sys_52: 5.60235815e-05 + sys_53: 6.05016974e-06 + sys_54: -2.79931703e-06 + sys_55: -1.33768492e-06 - lumi_ue: 0.00041 - pol: 0.0006864 - sys_0: -0.00010998527336541574 - sys_1: -0.0005050281450117719 - sys_2: 3.352610635674458e-05 - sys_3: 0.00026639817387868927 - sys_4: 0.00015312604690732043 - sys_5: 0.0002717251362922906 - sys_6: -0.0003774560378472882 - sys_7: 0.00034004595459813706 - sys_8: 5.243616773709424e-05 - sys_9: 0.0007453914385457792 - sys_10: -0.0006950184053419128 - sys_11: 0.012565561493561762 - sys_12: 0.0017751303171248747 - sys_13: -0.0004454487326654912 - sys_14: -0.00040819915573635045 - sys_15: 0.00017231693443571822 - sys_16: 0.00010912211637181463 - sys_17: -2.675764578052294e-05 - sys_18: 0.00011447801352126889 - sys_19: -6.402438361002465e-05 - sys_20: 5.980344677990907e-05 - sys_21: 8.26500552011239e-05 - sys_22: -5.517613003674958e-05 - sys_23: 1.8366002413949052e-07 - sys_24: -2.6871783980360285e-07 - sys_25: 3.1707189186518417e-07 - sys_26: -2.1968162945386852e-07 - sys_27: 2.9810128128175382e-06 - sys_28: 3.6310026837641187e-06 - sys_29: 5.002597688923447e-07 - sys_30: 7.008969584751417e-06 - sys_31: -1.6711440884501877e-05 - sys_32: 4.984944175872457e-05 - sys_33: 5.934151121897645e-06 - sys_34: -3.178142340494633e-05 - sys_35: -5.560946891282946e-05 - sys_36: -4.853802447759818e-06 - sys_37: -5.172137600821502e-06 - sys_38: 2.8933635276470506e-05 - sys_39: -0.00011627647586798541 - sys_40: 2.6705842013449187e-06 - sys_41: -4.637143915840714e-05 - sys_42: -9.054721235675195e-06 - sys_43: 1.0706640869244072e-05 - sys_44: 1.5995694852390058e-05 - sys_45: 1.5533856005275514e-05 - sys_46: 1.4271533027693987e-05 - sys_47: 4.937326300459931e-06 - sys_48: 8.623467612208207e-06 - sys_49: 1.2046038193069004e-05 - sys_50: 3.949036001371788e-06 - sys_51: -1.0073681156321853e-05 - sys_52: 4.8211968844691346e-05 - sys_53: 5.895295289400225e-05 - sys_54: 3.0304987280662978e-05 - sys_55: -3.1274990929182215e-07 + pol: 6.86400000e-04 + sys_0: -1.09985273e-04 + sys_1: -5.05028145e-04 + sys_2: 3.35261064e-05 + sys_3: 2.66398174e-04 + sys_4: 1.53126047e-04 + sys_5: 2.71725136e-04 + sys_6: -3.77456038e-04 + sys_7: 3.40045955e-04 + sys_8: 5.24361677e-05 + sys_9: 7.45391439e-04 + sys_10: -6.95018405e-04 + sys_11: 1.25655615e-02 + sys_12: 1.77513032e-03 + sys_13: -4.45448733e-04 + sys_14: -4.08199156e-04 + sys_15: 1.72316934e-04 + sys_16: 1.09122116e-04 + sys_17: -2.67576458e-05 + sys_18: 1.14478014e-04 + sys_19: -6.40243836e-05 + sys_20: 5.98034468e-05 + sys_21: 8.26500552e-05 + sys_22: -5.51761300e-05 + sys_23: 1.83660024e-07 + sys_24: -2.68717840e-07 + sys_25: 3.17071892e-07 + sys_26: -2.19681629e-07 + sys_27: 2.98101281e-06 + sys_28: 3.63100268e-06 + sys_29: 5.00259769e-07 + sys_30: 7.00896958e-06 + sys_31: -1.67114409e-05 + sys_32: 4.98494418e-05 + sys_33: 5.93415112e-06 + sys_34: -3.17814234e-05 + sys_35: -5.56094689e-05 + sys_36: -4.85380245e-06 + sys_37: -5.17213760e-06 + sys_38: 2.89336353e-05 + sys_39: -1.16276476e-04 + sys_40: 2.67058420e-06 + sys_41: -4.63714392e-05 + sys_42: -9.05472124e-06 + sys_43: 1.07066409e-05 + sys_44: 1.59956949e-05 + sys_45: 1.55338560e-05 + sys_46: 1.42715330e-05 + sys_47: 4.93732630e-06 + sys_48: 8.62346761e-06 + sys_49: 1.20460382e-05 + sys_50: 3.94903600e-06 + sys_51: -1.00736812e-05 + sys_52: 4.82119688e-05 + sys_53: 5.89529529e-05 + sys_54: 3.03049873e-05 + sys_55: -3.12749909e-07 - lumi_ue: 0.00041 - pol: 0.0022836 - sys_0: -0.0001661874357168241 - sys_1: -0.0009249049176775947 - sys_2: 2.7262323269280598e-05 - sys_3: 0.0005824076359235197 - sys_4: 0.0005029021770657166 - sys_5: 0.019147024737072138 - sys_6: 0.001801262323961733 - sys_7: -0.0007031967922943187 - sys_8: -2.653157132941509e-05 - sys_9: -0.0005328418069520765 - sys_10: -0.0001294087431071075 - sys_11: -0.0001850866632163268 - sys_12: 0.000103954623813598 - sys_13: -0.00010463465659774159 - sys_14: -0.00013128870111458002 - sys_15: 9.040111510903864e-05 - sys_16: 3.1303124778550294e-05 - sys_17: -5.158218786121246e-06 - sys_18: 3.5769841177415974e-05 - sys_19: 6.680514543497072e-07 - sys_20: 0.00013598700804449442 - sys_21: 5.895928799765774e-05 - sys_22: -2.651439822460141e-05 - sys_23: 5.9530282999703656e-08 - sys_24: -1.3786352742095131e-07 - sys_25: 2.8044347923400414e-07 - sys_26: -5.7505884382875226e-08 - sys_27: 2.2154916860351005e-06 - sys_28: 1.0835977720710646e-06 - sys_29: 1.108808928835767e-07 - sys_30: 1.5753508350226184e-06 - sys_31: -3.7460201591115616e-06 - sys_32: 1.7413662228742723e-05 - sys_33: 5.9071362029909315e-06 - sys_34: -3.049874678587777e-05 - sys_35: -5.9003915928476616e-05 - sys_36: -7.1754908118885375e-06 - sys_37: -3.12536064234354e-06 - sys_38: 1.699363807978617e-05 - sys_39: -5.436409256442066e-05 - sys_40: 8.19115666192217e-07 - sys_41: -2.5756208848249396e-05 - sys_42: -4.789711993568453e-07 - sys_43: 4.8957174920466824e-06 - sys_44: 5.967468367108845e-06 - sys_45: 6.115529416455545e-06 - sys_46: 5.583029698238927e-06 - sys_47: 1.392262436360536e-06 - sys_48: 1.0326865513039524e-06 - sys_49: -2.1645112791244728e-07 - sys_50: 1.1630478545444106e-06 - sys_51: -1.207962694434253e-06 - sys_52: 3.315353334626531e-05 - sys_53: 8.351813914768703e-05 - sys_54: 4.2315034815658444e-05 - sys_55: 8.573807987190183e-07 + pol: 2.28360000e-03 + sys_0: -1.66187436e-04 + sys_1: -9.24904918e-04 + sys_2: 2.72623233e-05 + sys_3: 5.82407636e-04 + sys_4: 5.02902177e-04 + sys_5: 1.91470247e-02 + sys_6: 1.80126232e-03 + sys_7: -7.03196792e-04 + sys_8: -2.65315713e-05 + sys_9: -5.32841807e-04 + sys_10: -1.29408743e-04 + sys_11: -1.85086663e-04 + sys_12: 1.03954624e-04 + sys_13: -1.04634657e-04 + sys_14: -1.31288701e-04 + sys_15: 9.04011151e-05 + sys_16: 3.13031248e-05 + sys_17: -5.15821879e-06 + sys_18: 3.57698412e-05 + sys_19: 6.68051454e-07 + sys_20: 1.35987008e-04 + sys_21: 5.89592880e-05 + sys_22: -2.65143982e-05 + sys_23: 5.95302830e-08 + sys_24: -1.37863527e-07 + sys_25: 2.80443479e-07 + sys_26: -5.75058844e-08 + sys_27: 2.21549169e-06 + sys_28: 1.08359777e-06 + sys_29: 1.10880893e-07 + sys_30: 1.57535084e-06 + sys_31: -3.74602016e-06 + sys_32: 1.74136622e-05 + sys_33: 5.90713620e-06 + sys_34: -3.04987468e-05 + sys_35: -5.90039159e-05 + sys_36: -7.17549081e-06 + sys_37: -3.12536064e-06 + sys_38: 1.69936381e-05 + sys_39: -5.43640926e-05 + sys_40: 8.19115666e-07 + sys_41: -2.57562088e-05 + sys_42: -4.78971199e-07 + sys_43: 4.89571749e-06 + sys_44: 5.96746837e-06 + sys_45: 6.11552942e-06 + sys_46: 5.58302970e-06 + sys_47: 1.39226244e-06 + sys_48: 1.03268655e-06 + sys_49: -2.16451128e-07 + sys_50: 1.16304785e-06 + sys_51: -1.20796269e-06 + sys_52: 3.31535333e-05 + sys_53: 8.35181391e-05 + sys_54: 4.23150348e-05 + sys_55: 8.57380799e-07 - lumi_ue: 0.00041 - pol: 0.0039138 - sys_0: -0.0008926312644736197 - sys_1: -0.028741894205932653 - sys_2: 0.007624272731346688 - sys_3: -0.005355774714251373 - sys_4: -0.0016523081275802332 - sys_5: -0.0005870263850549692 - sys_6: 0.0005623511462446131 - sys_7: -0.0003933410298409222 - sys_8: -2.5868067609435886e-05 - sys_9: -0.00045984363203346596 - sys_10: -0.00020381882101451883 - sys_11: -0.00019128540774674847 - sys_12: 0.00011164386291072065 - sys_13: -0.00011535421157420068 - sys_14: -0.00014947525600426468 - sys_15: 8.341168992129444e-05 - sys_16: 4.7507035841805704e-05 - sys_17: -1.1660869369722017e-05 - sys_18: 4.975082025817095e-05 - sys_19: -1.31686900894645e-06 - sys_20: 0.00016065045437934679 - sys_21: 7.57494002328961e-05 - sys_22: -3.8110444510503736e-05 - sys_23: -5.501731455971632e-08 - sys_24: -1.2265007137040322e-07 - sys_25: 4.009861026122692e-07 - sys_26: 1.5293037476219118e-07 - sys_27: 3.4706504418882523e-06 - sys_28: 4.908787594823468e-07 - sys_29: -1.7326324295917147e-07 - sys_30: -6.172384178453606e-07 - sys_31: 1.827160462221337e-06 - sys_32: 5.22358751988402e-07 - sys_33: 4.87299079197167e-06 - sys_34: -1.2339860709068815e-05 - sys_35: -9.864580168030363e-06 - sys_36: 5.161445456347699e-06 - sys_37: -6.675701664418382e-06 - sys_38: 2.1702989774034213e-05 - sys_39: -6.78973829459819e-05 - sys_40: 2.620808230210623e-06 - sys_41: -2.1233786915053232e-05 - sys_42: -4.795968014839859e-06 - sys_43: 1.2219633401163822e-05 - sys_44: 9.835317240685698e-06 - sys_45: 1.1942924486898265e-05 - sys_46: 1.1074704744930776e-05 - sys_47: 5.805230576899327e-06 - sys_48: 6.755179406199044e-06 - sys_49: 8.339943444766979e-06 - sys_50: 1.251903847511703e-06 - sys_51: -5.484637024705254e-06 - sys_52: 3.153373460964743e-05 - sys_53: 7.338260329569106e-05 - sys_54: 3.1616748234371255e-05 - sys_55: 3.40294127521254e-08 + pol: 3.91380000e-03 + sys_0: -8.92631264e-04 + sys_1: -2.87418942e-02 + sys_2: 7.62427273e-03 + sys_3: -5.35577471e-03 + sys_4: -1.65230813e-03 + sys_5: -5.87026385e-04 + sys_6: 5.62351146e-04 + sys_7: -3.93341030e-04 + sys_8: -2.58680676e-05 + sys_9: -4.59843632e-04 + sys_10: -2.03818821e-04 + sys_11: -1.91285408e-04 + sys_12: 1.11643863e-04 + sys_13: -1.15354212e-04 + sys_14: -1.49475256e-04 + sys_15: 8.34116899e-05 + sys_16: 4.75070358e-05 + sys_17: -1.16608694e-05 + sys_18: 4.97508203e-05 + sys_19: -1.31686901e-06 + sys_20: 1.60650454e-04 + sys_21: 7.57494002e-05 + sys_22: -3.81104445e-05 + sys_23: -5.50173146e-08 + sys_24: -1.22650071e-07 + sys_25: 4.00986103e-07 + sys_26: 1.52930375e-07 + sys_27: 3.47065044e-06 + sys_28: 4.90878759e-07 + sys_29: -1.73263243e-07 + sys_30: -6.17238418e-07 + sys_31: 1.82716046e-06 + sys_32: 5.22358752e-07 + sys_33: 4.87299079e-06 + sys_34: -1.23398607e-05 + sys_35: -9.86458017e-06 + sys_36: 5.16144546e-06 + sys_37: -6.67570166e-06 + sys_38: 2.17029898e-05 + sys_39: -6.78973829e-05 + sys_40: 2.62080823e-06 + sys_41: -2.12337869e-05 + sys_42: -4.79596801e-06 + sys_43: 1.22196334e-05 + sys_44: 9.83531724e-06 + sys_45: 1.19429245e-05 + sys_46: 1.10747047e-05 + sys_47: 5.80523058e-06 + sys_48: 6.75517941e-06 + sys_49: 8.33994344e-06 + sys_50: 1.25190385e-06 + sys_51: -5.48463702e-06 + sys_52: 3.15337346e-05 + sys_53: 7.33826033e-05 + sys_54: 3.16167482e-05 + sys_55: 3.40294128e-08 diff --git a/nnpdf_data/nnpdf_data/commondata/STAR-2012_2JET_510GEV/uncertainties_D.yaml b/nnpdf_data/nnpdf_data/commondata/STAR-2012_2JET_510GEV/uncertainties_D.yaml index b8a1174102..fa426d0025 100644 --- a/nnpdf_data/nnpdf_data/commondata/STAR-2012_2JET_510GEV/uncertainties_D.yaml +++ b/nnpdf_data/nnpdf_data/commondata/STAR-2012_2JET_510GEV/uncertainties_D.yaml @@ -233,640 +233,640 @@ definitions: type: STAR2012JETunc55 bins: - lumi_ue: 0.00131 - pol: 0.00035640000000000004 - sys_0: -2.0062120884862218e-05 - sys_1: -8.342783996468118e-05 - sys_2: -3.5351973334939426e-06 - sys_3: 4.0586484737599114e-05 - sys_4: 4.5045431759577696e-05 - sys_5: 6.163992794116611e-05 - sys_6: -0.00024499387580902973 - sys_7: 0.00029898221175587867 - sys_8: 0.016095360786608205 - sys_9: -0.00011842466768544848 - sys_10: 2.8687993309311487e-05 - sys_11: -5.766516721406502e-05 - sys_12: 5.941926144653147e-05 - sys_13: -1.1665963479960417e-05 - sys_14: -2.3370311079081004e-05 - sys_15: 4.793089869936353e-06 - sys_16: 3.3289673140109204e-05 - sys_17: 8.502033148309577e-07 - sys_18: 3.9394827753006256e-06 - sys_19: -5.4203325777318105e-06 - sys_20: -5.135374720000579e-06 - sys_21: 1.8850443021814505e-06 - sys_22: -1.990669560836769e-05 - sys_23: -1.6993339371484315e-06 - sys_24: 9.886388960781466e-08 - sys_25: 4.463317990119099e-07 - sys_26: 8.704986114725813e-07 - sys_27: 1.6053869432532841e-06 - sys_28: 4.4293888039359793e-07 - sys_29: -1.0423425862567864e-07 - sys_30: -3.0883570826344773e-07 - sys_31: 4.0181321550779894e-07 - sys_32: -6.5645159969551e-07 - sys_33: -3.450189652884701e-08 - sys_34: -1.3946364042169964e-07 - sys_35: 1.1555748796485164e-06 - sys_36: 8.323423288023323e-07 - sys_37: -8.508586380921725e-07 - sys_38: 9.234537273826128e-07 - sys_39: -4.652833427388299e-06 - sys_40: -6.365312371594692e-07 - sys_41: -1.302872667777249e-06 - sys_42: -1.0010914040899962e-06 - sys_43: 1.5321779791596498e-06 - sys_44: 2.849451131159208e-06 - sys_45: 4.8806606957326335e-06 - sys_46: 2.1229661262170867e-05 - sys_47: 1.2719601923802972e-05 - sys_48: 3.128175711168596e-06 - sys_49: 3.048784911989552e-06 - sys_50: -3.9282823781659303e-07 - sys_51: -1.0385296528679144e-05 - sys_52: 7.474055417198249e-09 - sys_53: 3.10360023176149e-06 - sys_54: -1.0883678971145172e-05 - sys_55: 1.3096393844499875e-05 + pol: 3.56400000e-04 + sys_0: -2.00621209e-05 + sys_1: -8.34278400e-05 + sys_2: -3.53519733e-06 + sys_3: 4.05864847e-05 + sys_4: 4.50454318e-05 + sys_5: 6.16399279e-05 + sys_6: -2.44993876e-04 + sys_7: 2.98982212e-04 + sys_8: 1.60953608e-02 + sys_9: -1.18424668e-04 + sys_10: 2.86879933e-05 + sys_11: -5.76651672e-05 + sys_12: 5.94192614e-05 + sys_13: -1.16659635e-05 + sys_14: -2.33703111e-05 + sys_15: 4.79308987e-06 + sys_16: 3.32896731e-05 + sys_17: 8.50203315e-07 + sys_18: 3.93948278e-06 + sys_19: -5.42033258e-06 + sys_20: -5.13537472e-06 + sys_21: 1.88504430e-06 + sys_22: -1.99066956e-05 + sys_23: -1.69933394e-06 + sys_24: 9.88638896e-08 + sys_25: 4.46331799e-07 + sys_26: 8.70498611e-07 + sys_27: 1.60538694e-06 + sys_28: 4.42938880e-07 + sys_29: -1.04234259e-07 + sys_30: -3.08835708e-07 + sys_31: 4.01813216e-07 + sys_32: -6.56451600e-07 + sys_33: -3.45018965e-08 + sys_34: -1.39463640e-07 + sys_35: 1.15557488e-06 + sys_36: 8.32342329e-07 + sys_37: -8.50858638e-07 + sys_38: 9.23453727e-07 + sys_39: -4.65283343e-06 + sys_40: -6.36531237e-07 + sys_41: -1.30287267e-06 + sys_42: -1.00109140e-06 + sys_43: 1.53217798e-06 + sys_44: 2.84945113e-06 + sys_45: 4.88066070e-06 + sys_46: 2.12296613e-05 + sys_47: 1.27196019e-05 + sys_48: 3.12817571e-06 + sys_49: 3.04878491e-06 + sys_50: -3.92828238e-07 + sys_51: -1.03852965e-05 + sys_52: 7.47405542e-09 + sys_53: 3.10360023e-06 + sys_54: -1.08836790e-05 + sys_55: 1.30963938e-05 - lumi_ue: 0.00022 - pol: 0.0002772 - sys_0: -1.70874063505868e-05 - sys_1: -6.973179168523359e-05 - sys_2: 3.922387548225408e-07 - sys_3: 3.2650936460268116e-05 - sys_4: 1.7362687065482565e-05 - sys_5: 2.8071446958031234e-05 - sys_6: -3.635979450999327e-05 - sys_7: 2.623943543005567e-05 - sys_8: 2.1766096325559865e-05 - sys_9: 2.229355005503801e-05 - sys_10: -2.020800493506517e-05 - sys_11: 2.7861914940387996e-05 - sys_12: -2.319046549392396e-05 - sys_13: 2.3847337093475875e-05 - sys_14: 4.904663619497808e-05 - sys_15: -1.5845069913351226e-05 - sys_16: -4.332425827441751e-05 - sys_17: 7.393734212111326e-06 - sys_18: -3.795936734795529e-05 - sys_19: 2.604483801594238e-05 - sys_20: 3.083164796982007e-05 - sys_21: -1.6372295118070882e-05 - sys_22: 6.739370549980851e-05 - sys_23: -1.0829636326316252e-05 - sys_24: 9.569083175175697e-06 - sys_25: -1.6957860239867489e-06 - sys_26: 5.719677228814347e-06 - sys_27: 1.3819530529465288e-05 - sys_28: 4.930234895290191e-06 - sys_29: -1.6693600836803015e-06 - sys_30: -1.15676258297534e-06 - sys_31: 4.222413593764561e-06 - sys_32: -8.284643777659575e-06 - sys_33: 8.334359617680151e-06 - sys_34: -5.576007799419068e-06 - sys_35: 2.4213609637520607e-05 - sys_36: 2.5850841061681355e-05 - sys_37: -1.499188290357635e-05 - sys_38: 4.7293602616478923e-05 - sys_39: 8.236056414110328e-05 - sys_40: -3.5676679734438566e-07 - sys_41: 2.6119346886331507e-05 - sys_42: 1.1731479014365078e-05 - sys_43: -1.907356219382283e-05 - sys_44: -2.759995030943031e-05 - sys_45: -4.130153811002916e-05 - sys_46: -0.0001218270172707945 - sys_47: -7.482227735680671e-05 - sys_48: -0.00020866099453939707 - sys_49: -0.000307227934956961 - sys_50: -4.599829978712185e-05 - sys_51: 0.004763325924955466 - sys_52: 0.0013398750517505749 - sys_53: -0.00020079419836829286 - sys_54: -0.0009985854263692144 - sys_55: 0.0005723924490538507 + pol: 2.77200000e-04 + sys_0: -1.70874064e-05 + sys_1: -6.97317917e-05 + sys_2: 3.92238755e-07 + sys_3: 3.26509365e-05 + sys_4: 1.73626871e-05 + sys_5: 2.80714470e-05 + sys_6: -3.63597945e-05 + sys_7: 2.62394354e-05 + sys_8: 2.17660963e-05 + sys_9: 2.22935501e-05 + sys_10: -2.02080049e-05 + sys_11: 2.78619149e-05 + sys_12: -2.31904655e-05 + sys_13: 2.38473371e-05 + sys_14: 4.90466362e-05 + sys_15: -1.58450699e-05 + sys_16: -4.33242583e-05 + sys_17: 7.39373421e-06 + sys_18: -3.79593673e-05 + sys_19: 2.60448380e-05 + sys_20: 3.08316480e-05 + sys_21: -1.63722951e-05 + sys_22: 6.73937055e-05 + sys_23: -1.08296363e-05 + sys_24: 9.56908318e-06 + sys_25: -1.69578602e-06 + sys_26: 5.71967723e-06 + sys_27: 1.38195305e-05 + sys_28: 4.93023490e-06 + sys_29: -1.66936008e-06 + sys_30: -1.15676258e-06 + sys_31: 4.22241359e-06 + sys_32: -8.28464378e-06 + sys_33: 8.33435962e-06 + sys_34: -5.57600780e-06 + sys_35: 2.42136096e-05 + sys_36: 2.58508411e-05 + sys_37: -1.49918829e-05 + sys_38: 4.72936026e-05 + sys_39: 8.23605641e-05 + sys_40: -3.56766797e-07 + sys_41: 2.61193469e-05 + sys_42: 1.17314790e-05 + sys_43: -1.90735622e-05 + sys_44: -2.75999503e-05 + sys_45: -4.13015381e-05 + sys_46: -1.21827017e-04 + sys_47: -7.48222774e-05 + sys_48: -2.08660995e-04 + sys_49: -3.07227935e-04 + sys_50: -4.59982998e-05 + sys_51: 4.76332592e-03 + sys_52: 1.33987505e-03 + sys_53: -2.00794198e-04 + sys_54: -9.98585426e-04 + sys_55: 5.72392449e-04 - lumi_ue: 0.00072 - pol: 0.00033660000000000005 - sys_0: -2.22411727086367e-05 - sys_1: -8.70467770365966e-05 - sys_2: -4.131599903336925e-07 - sys_3: 3.962083127763794e-05 - sys_4: 1.982746089720204e-05 - sys_5: 3.367010610872303e-05 - sys_6: -5.169337472190848e-05 - sys_7: 2.9355657681939155e-05 - sys_8: 6.546546878933179e-05 - sys_9: 2.8772256672864998e-05 - sys_10: -2.8866658711849817e-05 - sys_11: 3.3324505938841435e-05 - sys_12: -3.8497877161888745e-05 - sys_13: 2.8425444267562764e-05 - sys_14: 5.521766416638294e-05 - sys_15: -1.684831267160179e-05 - sys_16: -7.906411657581114e-05 - sys_17: 6.019394118534705e-06 - sys_18: -4.3242058577538264e-05 - sys_19: 3.4149068310731015e-05 - sys_20: 3.510983212694301e-05 - sys_21: -2.1209292288940975e-05 - sys_22: 0.00012713499642601792 - sys_23: -7.796873059839463e-06 - sys_24: 1.503558022172653e-05 - sys_25: -1.5969004075161716e-05 - sys_26: 6.931768766197947e-06 - sys_27: 8.745810134190899e-06 - sys_28: 1.2202788701782037e-05 - sys_29: -1.32005848054884e-05 - sys_30: -4.84361617616195e-06 - sys_31: 6.822606618435513e-06 - sys_32: -1.093774249813537e-05 - sys_33: 1.3618644824049346e-05 - sys_34: -1.1148877302534558e-05 - sys_35: 3.322718057007343e-05 - sys_36: 2.9954513293431445e-05 - sys_37: -2.0742271060426382e-05 - sys_38: 6.746432719359094e-05 - sys_39: 9.476722601570349e-05 - sys_40: -7.952283377509618e-06 - sys_41: 2.5961702169706037e-05 - sys_42: 1.633688982147863e-05 - sys_43: -2.415466298570768e-05 - sys_44: -4.157983264275406e-05 - sys_45: -6.735480014506527e-05 - sys_46: -0.0002527793087990034 - sys_47: -0.00016465517937011293 - sys_48: -0.00014545743146859185 - sys_49: -0.00026364128982952865 - sys_50: -1.3658755795929021e-05 - sys_51: 0.0010438224669548708 - sys_52: -0.0002696844012683264 - sys_53: -0.001478560948157602 - sys_54: 0.00276023706280401 - sys_55: -0.003723027790532102 + pol: 3.36600000e-04 + sys_0: -2.22411727e-05 + sys_1: -8.70467770e-05 + sys_2: -4.13159990e-07 + sys_3: 3.96208313e-05 + sys_4: 1.98274609e-05 + sys_5: 3.36701061e-05 + sys_6: -5.16933747e-05 + sys_7: 2.93556577e-05 + sys_8: 6.54654688e-05 + sys_9: 2.87722567e-05 + sys_10: -2.88666587e-05 + sys_11: 3.33245059e-05 + sys_12: -3.84978772e-05 + sys_13: 2.84254443e-05 + sys_14: 5.52176642e-05 + sys_15: -1.68483127e-05 + sys_16: -7.90641166e-05 + sys_17: 6.01939412e-06 + sys_18: -4.32420586e-05 + sys_19: 3.41490683e-05 + sys_20: 3.51098321e-05 + sys_21: -2.12092923e-05 + sys_22: 1.27134996e-04 + sys_23: -7.79687306e-06 + sys_24: 1.50355802e-05 + sys_25: -1.59690041e-05 + sys_26: 6.93176877e-06 + sys_27: 8.74581013e-06 + sys_28: 1.22027887e-05 + sys_29: -1.32005848e-05 + sys_30: -4.84361618e-06 + sys_31: 6.82260662e-06 + sys_32: -1.09377425e-05 + sys_33: 1.36186448e-05 + sys_34: -1.11488773e-05 + sys_35: 3.32271806e-05 + sys_36: 2.99545133e-05 + sys_37: -2.07422711e-05 + sys_38: 6.74643272e-05 + sys_39: 9.47672260e-05 + sys_40: -7.95228338e-06 + sys_41: 2.59617022e-05 + sys_42: 1.63368898e-05 + sys_43: -2.41546630e-05 + sys_44: -4.15798326e-05 + sys_45: -6.73548001e-05 + sys_46: -2.52779309e-04 + sys_47: -1.64655179e-04 + sys_48: -1.45457431e-04 + sys_49: -2.63641290e-04 + sys_50: -1.36587558e-05 + sys_51: 1.04382247e-03 + sys_52: -2.69684401e-04 + sys_53: -1.47856095e-03 + sys_54: 2.76023706e-03 + sys_55: -3.72302779e-03 - lumi_ue: 0.00052 - pol: 0.0002046 - sys_0: -2.616905211115417e-05 - sys_1: -9.574374051523027e-05 - sys_2: 3.823612462614318e-06 - sys_3: 4.847393691988594e-05 - sys_4: 2.3805408131105687e-05 - sys_5: 3.30185789716124e-05 - sys_6: -4.954418136894942e-05 - sys_7: 3.05853560607185e-05 - sys_8: 4.665244321880853e-05 - sys_9: 3.140223487698838e-05 - sys_10: -3.2247797417280324e-05 - sys_11: 4.308766932733146e-05 - sys_12: -4.292628754418602e-05 - sys_13: 3.8343253605386205e-05 - sys_14: 6.836144224611308e-05 - sys_15: -2.7213956752578606e-05 - sys_16: -8.603613060566941e-05 - sys_17: 1.016863826446874e-05 - sys_18: -7.302393441671457e-05 - sys_19: 5.953804585219482e-05 - sys_20: 6.338153637521472e-05 - sys_21: -3.574385446215099e-05 - sys_22: 0.00017752268796061762 - sys_23: -2.1918651121675747e-06 - sys_24: 8.819382605125055e-06 - sys_25: -1.7121907461127056e-05 - sys_26: 3.5553725334431283e-06 - sys_27: -5.263840897170535e-06 - sys_28: 2.9183166793215417e-05 - sys_29: -1.2264559295884442e-05 - sys_30: 5.960019708474386e-06 - sys_31: 3.1775325570171913e-06 - sys_32: -9.118499365857524e-06 - sys_33: 7.710200874552966e-06 - sys_34: -1.3898925590142805e-05 - sys_35: 2.3376016787875826e-05 - sys_36: 1.8648535207098707e-05 - sys_37: -1.9743220646588674e-05 - sys_38: 4.442919565372959e-05 - sys_39: 0.0002270497057616799 - sys_40: -1.691659886413472e-05 - sys_41: 5.7417042936747544e-05 - sys_42: 5.758943254165153e-05 - sys_43: -9.184496624140671e-05 - sys_44: -0.00017239489984554674 - sys_45: -0.00034365950479889475 - sys_46: -0.0014145240795938282 - sys_47: -0.005701442117750571 - sys_48: 9.250294028114073e-05 - sys_49: 0.00012790000088302086 - sys_50: 3.0410947196569045e-05 - sys_51: -0.0001549095363897877 - sys_52: 5.457283820490769e-05 - sys_53: -2.0414367883619324e-05 - sys_54: -0.00015132946197549238 - sys_55: 0.00010742503844174504 + pol: 2.04600000e-04 + sys_0: -2.61690521e-05 + sys_1: -9.57437405e-05 + sys_2: 3.82361246e-06 + sys_3: 4.84739369e-05 + sys_4: 2.38054081e-05 + sys_5: 3.30185790e-05 + sys_6: -4.95441814e-05 + sys_7: 3.05853561e-05 + sys_8: 4.66524432e-05 + sys_9: 3.14022349e-05 + sys_10: -3.22477974e-05 + sys_11: 4.30876693e-05 + sys_12: -4.29262875e-05 + sys_13: 3.83432536e-05 + sys_14: 6.83614422e-05 + sys_15: -2.72139568e-05 + sys_16: -8.60361306e-05 + sys_17: 1.01686383e-05 + sys_18: -7.30239344e-05 + sys_19: 5.95380459e-05 + sys_20: 6.33815364e-05 + sys_21: -3.57438545e-05 + sys_22: 1.77522688e-04 + sys_23: -2.19186511e-06 + sys_24: 8.81938261e-06 + sys_25: -1.71219075e-05 + sys_26: 3.55537253e-06 + sys_27: -5.26384090e-06 + sys_28: 2.91831668e-05 + sys_29: -1.22645593e-05 + sys_30: 5.96001971e-06 + sys_31: 3.17753256e-06 + sys_32: -9.11849937e-06 + sys_33: 7.71020087e-06 + sys_34: -1.38989256e-05 + sys_35: 2.33760168e-05 + sys_36: 1.86485352e-05 + sys_37: -1.97432206e-05 + sys_38: 4.44291957e-05 + sys_39: 2.27049706e-04 + sys_40: -1.69165989e-05 + sys_41: 5.74170429e-05 + sys_42: 5.75894325e-05 + sys_43: -9.18449662e-05 + sys_44: -1.72394900e-04 + sys_45: -3.43659505e-04 + sys_46: -1.41452408e-03 + sys_47: -5.70144212e-03 + sys_48: 9.25029403e-05 + sys_49: 1.27900001e-04 + sys_50: 3.04109472e-05 + sys_51: -1.54909536e-04 + sys_52: 5.45728382e-05 + sys_53: -2.04143679e-05 + sys_54: -1.51329462e-04 + sys_55: 1.07425038e-04 - lumi_ue: 0.00054 - pol: 0.0001188 - sys_0: -2.7235542188850968e-05 - sys_1: -0.00012110496214098233 - sys_2: 2.8581553917092373e-06 - sys_3: 5.9654229231112575e-05 - sys_4: 3.453662073901792e-05 - sys_5: 4.761213814847202e-05 - sys_6: -6.355755976090384e-05 - sys_7: 4.260154904289959e-05 - sys_8: 4.731580847809803e-05 - sys_9: 4.29537892036211e-05 - sys_10: -3.8931905160409134e-05 - sys_11: 5.908766798691001e-05 - sys_12: -4.964687040135914e-05 - sys_13: 4.888686436018456e-05 - sys_14: 9.461006835532092e-05 - sys_15: -3.3880943863469154e-05 - sys_16: -0.00011413517006611927 - sys_17: 2.1383905319427662e-05 - sys_18: -9.240468676849756e-05 - sys_19: 7.950916709738497e-05 - sys_20: 8.042887111419012e-05 - sys_21: -4.404197505809386e-05 - sys_22: 0.0002463475263227693 - sys_23: 1.5190881338868047e-07 - sys_24: 3.0517124382270827e-06 - sys_25: -1.1111109822970643e-05 - sys_26: 6.629366496545663e-07 - sys_27: -9.282907716283184e-06 - sys_28: 3.514429593329477e-05 - sys_29: -9.52074158123901e-06 - sys_30: 1.8789368871673413e-05 - sys_31: -1.069793966368871e-05 - sys_32: 1.4020759221279051e-06 - sys_33: 8.194666870898609e-06 - sys_34: -1.419893381023004e-05 - sys_35: 2.4376245030838984e-05 - sys_36: 1.615298457387933e-05 - sys_37: -2.3679412377950968e-05 - sys_38: 6.554501650304189e-05 - sys_39: 0.0003117433490280873 - sys_40: -1.2997567953597368e-05 - sys_41: 0.0001117302534560123 - sys_42: 7.332428762739363e-05 - sys_43: -0.00014383390137335503 - sys_44: -0.00021177295639433725 - sys_45: -0.0007626193641812545 - sys_46: -0.005743421765858597 - sys_47: 0.0014684814238564744 - sys_48: 0.00010847172058823601 - sys_49: 0.00013840851459367723 - sys_50: 3.203134372196382e-05 - sys_51: -0.00015940695939703944 - sys_52: 8.011285754045502e-05 - sys_53: -4.053929092025929e-05 - sys_54: -0.00014686224649498457 - sys_55: 9.784036458539147e-05 + pol: 1.18800000e-04 + sys_0: -2.72355422e-05 + sys_1: -1.21104962e-04 + sys_2: 2.85815539e-06 + sys_3: 5.96542292e-05 + sys_4: 3.45366207e-05 + sys_5: 4.76121381e-05 + sys_6: -6.35575598e-05 + sys_7: 4.26015490e-05 + sys_8: 4.73158085e-05 + sys_9: 4.29537892e-05 + sys_10: -3.89319052e-05 + sys_11: 5.90876680e-05 + sys_12: -4.96468704e-05 + sys_13: 4.88868644e-05 + sys_14: 9.46100684e-05 + sys_15: -3.38809439e-05 + sys_16: -1.14135170e-04 + sys_17: 2.13839053e-05 + sys_18: -9.24046868e-05 + sys_19: 7.95091671e-05 + sys_20: 8.04288711e-05 + sys_21: -4.40419751e-05 + sys_22: 2.46347526e-04 + sys_23: 1.51908813e-07 + sys_24: 3.05171244e-06 + sys_25: -1.11111098e-05 + sys_26: 6.62936650e-07 + sys_27: -9.28290772e-06 + sys_28: 3.51442959e-05 + sys_29: -9.52074158e-06 + sys_30: 1.87893689e-05 + sys_31: -1.06979397e-05 + sys_32: 1.40207592e-06 + sys_33: 8.19466687e-06 + sys_34: -1.41989338e-05 + sys_35: 2.43762450e-05 + sys_36: 1.61529846e-05 + sys_37: -2.36794124e-05 + sys_38: 6.55450165e-05 + sys_39: 3.11743349e-04 + sys_40: -1.29975680e-05 + sys_41: 1.11730253e-04 + sys_42: 7.33242876e-05 + sys_43: -1.43833901e-04 + sys_44: -2.11772956e-04 + sys_45: -7.62619364e-04 + sys_46: -5.74342177e-03 + sys_47: 1.46848142e-03 + sys_48: 1.08471721e-04 + sys_49: 1.38408515e-04 + sys_50: 3.20313437e-05 + sys_51: -1.59406959e-04 + sys_52: 8.01128575e-05 + sys_53: -4.05392909e-05 + sys_54: -1.46862246e-04 + sys_55: 9.78403646e-05 - lumi_ue: 0.00044 pol: 0.000264 - sys_0: -3.9512474152282606e-05 - sys_1: -0.00015905883236881638 - sys_2: 7.1657902628248e-06 - sys_3: 7.544521228637371e-05 - sys_4: 3.9329578117501085e-05 - sys_5: 5.8791450168722476e-05 - sys_6: -8.692432416787199e-05 - sys_7: 6.019323568031288e-05 - sys_8: 4.0944102438229184e-05 - sys_9: 6.140666630017397e-05 - sys_10: -5.759371984752461e-05 - sys_11: 7.783240346049225e-05 - sys_12: -6.682243493685909e-05 - sys_13: 8.440916159761343e-05 - sys_14: 0.00016222913212666522 - sys_15: -6.0339608690281283e-05 - sys_16: -0.000182699687395171 - sys_17: 3.998218272522028e-05 - sys_18: -0.00023217944578009554 - sys_19: 0.00021687294273275377 - sys_20: 0.00019690942805342655 - sys_21: -0.0001418187963464176 - sys_22: 0.006906265512607135 - sys_23: 7.469283299372724e-07 - sys_24: 4.849426546554244e-07 - sys_25: -5.048070124095167e-06 - sys_26: -1.4749024227669684e-06 - sys_27: -8.8463241578485e-06 - sys_28: 3.3918442667557154e-05 - sys_29: 8.925896570189922e-07 - sys_30: 2.865217892772126e-05 - sys_31: -2.3392847721395992e-05 - sys_32: 1.747333152963439e-05 - sys_33: 4.123274962575454e-06 - sys_34: -1.818414862665597e-05 - sys_35: 2.3531855231801845e-06 - sys_36: 8.30444674644335e-06 - sys_37: -1.5238958600439231e-05 - sys_38: 5.452294183360383e-05 - sys_39: -0.0010240053806222088 - sys_40: 1.2218016349780857e-05 - sys_41: -0.00029534702545411083 - sys_42: -8.377154446663558e-05 - sys_43: 0.00013855218261391583 - sys_44: 6.813291945945015e-05 - sys_45: 0.00011244788949801789 - sys_46: 0.00019636345822252645 - sys_47: 8.156821511939272e-05 - sys_48: 4.596405987687974e-05 - sys_49: 6.210033871639133e-05 - sys_50: 1.8616563661322006e-05 - sys_51: -7.209867992381777e-05 - sys_52: 6.980736921363053e-05 - sys_53: -2.8777037059291937e-05 - sys_54: -6.362333023557238e-05 - sys_55: 3.2140926565376244e-05 + sys_0: -3.95124742e-05 + sys_1: -1.59058832e-04 + sys_2: 7.16579026e-06 + sys_3: 7.54452123e-05 + sys_4: 3.93295781e-05 + sys_5: 5.87914502e-05 + sys_6: -8.69243242e-05 + sys_7: 6.01932357e-05 + sys_8: 4.09441024e-05 + sys_9: 6.14066663e-05 + sys_10: -5.75937198e-05 + sys_11: 7.78324035e-05 + sys_12: -6.68224349e-05 + sys_13: 8.44091616e-05 + sys_14: 1.62229132e-04 + sys_15: -6.03396087e-05 + sys_16: -1.82699687e-04 + sys_17: 3.99821827e-05 + sys_18: -2.32179446e-04 + sys_19: 2.16872943e-04 + sys_20: 1.96909428e-04 + sys_21: -1.41818796e-04 + sys_22: 6.90626551e-03 + sys_23: 7.46928330e-07 + sys_24: 4.84942655e-07 + sys_25: -5.04807012e-06 + sys_26: -1.47490242e-06 + sys_27: -8.84632416e-06 + sys_28: 3.39184427e-05 + sys_29: 8.92589657e-07 + sys_30: 2.86521789e-05 + sys_31: -2.33928477e-05 + sys_32: 1.74733315e-05 + sys_33: 4.12327496e-06 + sys_34: -1.81841486e-05 + sys_35: 2.35318552e-06 + sys_36: 8.30444675e-06 + sys_37: -1.52389586e-05 + sys_38: 5.45229418e-05 + sys_39: -1.02400538e-03 + sys_40: 1.22180163e-05 + sys_41: -2.95347025e-04 + sys_42: -8.37715445e-05 + sys_43: 1.38552183e-04 + sys_44: 6.81329195e-05 + sys_45: 1.12447889e-04 + sys_46: 1.96363458e-04 + sys_47: 8.15682151e-05 + sys_48: 4.59640599e-05 + sys_49: 6.21003387e-05 + sys_50: 1.86165637e-05 + sys_51: -7.20986799e-05 + sys_52: 6.98073692e-05 + sys_53: -2.87770371e-05 + sys_54: -6.36233302e-05 + sys_55: 3.21409266e-05 - lumi_ue: 0.00044 - pol: 0.0002244 - sys_0: -5.99813719572337e-05 - sys_1: -0.00024136070594070493 - sys_2: 7.218172899764238e-06 - sys_3: 0.00012320341424675894 - sys_4: 6.629112405322313e-05 - sys_5: 9.128763041251732e-05 - sys_6: -0.00013116696945752893 - sys_7: 9.615965927069474e-05 - sys_8: 5.788608759731656e-05 - sys_9: 0.00011728674987314879 - sys_10: -0.00011007362386709682 - sys_11: 0.00016024122342364277 - sys_12: -0.00012541538523711806 - sys_13: 0.00020407826390029084 - sys_14: 0.0005022894277051667 - sys_15: -0.00022748173434837676 - sys_16: -0.00865755921355267 - sys_17: -0.00034092160429051156 - sys_18: 0.0007043967843735395 - sys_19: -0.0002807327815280082 - sys_20: -0.00015898641901976535 - sys_21: 0.00014898460571335527 - sys_22: -0.0001802890022310897 - sys_23: 5.652473839259512e-07 - sys_24: -3.246284493267579e-07 - sys_25: -1.3735867199475369e-06 - sys_26: -1.4376981781857052e-06 - sys_27: -2.91403631937598e-06 - sys_28: 1.9132026496046845e-05 - sys_29: 3.2776419436069618e-06 - sys_30: 3.081365830413058e-05 - sys_31: -3.1175412660592186e-05 - sys_32: 3.27698145343526e-05 - sys_33: 4.063397325044589e-06 - sys_34: -2.1553216191905468e-05 - sys_35: -1.7685376612215854e-05 - sys_36: 2.1626784891286095e-06 - sys_37: -1.1461485168635613e-05 - sys_38: 4.443392425736607e-05 - sys_39: -0.00020239903678383322 - sys_40: 1.215061970077625e-05 - sys_41: -8.730512995806382e-05 - sys_42: -1.6587564467878796e-05 - sys_43: 3.9956301298584486e-05 - sys_44: 2.5320019275564172e-05 - sys_45: 4.40773042937649e-05 - sys_46: 7.116290210495438e-05 - sys_47: 3.0804886800914106e-05 - sys_48: 2.3460345278825465e-05 - sys_49: 3.541915152284441e-05 - sys_50: 9.951878903651965e-06 - sys_51: -3.9541145963074824e-05 - sys_52: 5.750952144968435e-05 - sys_53: -1.6531008780529594e-06 - sys_54: -1.8309588383718152e-05 - sys_55: 1.69965832238721e-05 + pol: 2.24400000e-04 + sys_0: -5.99813720e-05 + sys_1: -2.41360706e-04 + sys_2: 7.21817290e-06 + sys_3: 1.23203414e-04 + sys_4: 6.62911241e-05 + sys_5: 9.12876304e-05 + sys_6: -1.31166969e-04 + sys_7: 9.61596593e-05 + sys_8: 5.78860876e-05 + sys_9: 1.17286750e-04 + sys_10: -1.10073624e-04 + sys_11: 1.60241223e-04 + sys_12: -1.25415385e-04 + sys_13: 2.04078264e-04 + sys_14: 5.02289428e-04 + sys_15: -2.27481734e-04 + sys_16: -8.65755921e-03 + sys_17: -3.40921604e-04 + sys_18: 7.04396784e-04 + sys_19: -2.80732782e-04 + sys_20: -1.58986419e-04 + sys_21: 1.48984606e-04 + sys_22: -1.80289002e-04 + sys_23: 5.65247384e-07 + sys_24: -3.24628449e-07 + sys_25: -1.37358672e-06 + sys_26: -1.43769818e-06 + sys_27: -2.91403632e-06 + sys_28: 1.91320265e-05 + sys_29: 3.27764194e-06 + sys_30: 3.08136583e-05 + sys_31: -3.11754127e-05 + sys_32: 3.27698145e-05 + sys_33: 4.06339733e-06 + sys_34: -2.15532162e-05 + sys_35: -1.76853766e-05 + sys_36: 2.16267849e-06 + sys_37: -1.14614852e-05 + sys_38: 4.44339243e-05 + sys_39: -2.02399037e-04 + sys_40: 1.21506197e-05 + sys_41: -8.73051300e-05 + sys_42: -1.65875645e-05 + sys_43: 3.99563013e-05 + sys_44: 2.53200193e-05 + sys_45: 4.40773043e-05 + sys_46: 7.11629021e-05 + sys_47: 3.08048868e-05 + sys_48: 2.34603453e-05 + sys_49: 3.54191515e-05 + sys_50: 9.95187890e-06 + sys_51: -3.95411460e-05 + sys_52: 5.75095214e-05 + sys_53: -1.65310088e-06 + sys_54: -1.83095884e-05 + sys_55: 1.69965832e-05 - lumi_ue: 0.00036 pol: 0.00033 - sys_0: -8.923253788311054e-05 - sys_1: -0.00039225996084187037 - sys_2: 1.344335056096918e-05 - sys_3: 0.0001979950540957261 - sys_4: 0.00011454383958913392 - sys_5: 0.00020130678221559964 - sys_6: -0.0002740620692514865 - sys_7: 0.0002511212026662811 - sys_8: 7.836908309509254e-05 - sys_9: 0.0004154867743984298 - sys_10: -0.0006095970305518319 - sys_11: 0.0017106201702929771 - sys_12: -0.012174555773709498 - sys_13: -0.0004536033967569204 - sys_14: -0.00035494924876156757 - sys_15: 0.00015324443040272683 - sys_16: 0.00011600660650962892 - sys_17: -1.8701996227045227e-05 - sys_18: 0.00010795035668091386 - sys_19: -5.4236420728749495e-05 - sys_20: 8.228427274042377e-06 - sys_21: 4.325312366099955e-05 - sys_22: -5.9548033125154224e-05 - sys_23: 3.0000458771849395e-07 - sys_24: -3.797882619676079e-07 - sys_25: -1.541240271391692e-07 - sys_26: -6.103255125881243e-07 - sys_27: 8.114657033523278e-07 - sys_28: 7.5813696642728895e-06 - sys_29: 1.4025380202311258e-06 - sys_30: 1.5606238704899613e-05 - sys_31: -3.0769376147916935e-05 - sys_32: 4.3813767151243256e-05 - sys_33: 3.875428720893273e-06 - sys_34: -2.454117065984285e-05 - sys_35: -4.039737746207829e-05 - sys_36: -4.584172975592812e-06 - sys_37: -5.470864025352013e-06 - sys_38: 2.8393401510968598e-05 - sys_39: -9.153216819621887e-05 - sys_40: 4.602012100645083e-06 - sys_41: -4.65141309885552e-05 - sys_42: -6.32884930363844e-07 - sys_43: 1.4500729297399974e-05 - sys_44: 8.841738742976286e-06 - sys_45: 2.0780367749259356e-05 - sys_46: 2.2230177095227794e-05 - sys_47: 1.140054973190608e-05 - sys_48: 9.368519232375555e-06 - sys_49: 1.4335896534116468e-05 - sys_50: 4.5315706438129605e-06 - sys_51: -1.5961012286250554e-05 - sys_52: 4.2769126005629104e-05 - sys_53: 2.7548117383997472e-05 - sys_54: 9.512822868640107e-06 - sys_55: 3.6999304476466317e-06 + sys_0: -8.92325379e-05 + sys_1: -3.92259961e-04 + sys_2: 1.34433506e-05 + sys_3: 1.97995054e-04 + sys_4: 1.14543840e-04 + sys_5: 2.01306782e-04 + sys_6: -2.74062069e-04 + sys_7: 2.51121203e-04 + sys_8: 7.83690831e-05 + sys_9: 4.15486774e-04 + sys_10: -6.09597031e-04 + sys_11: 1.71062017e-03 + sys_12: -1.21745558e-02 + sys_13: -4.53603397e-04 + sys_14: -3.54949249e-04 + sys_15: 1.53244430e-04 + sys_16: 1.16006607e-04 + sys_17: -1.87019962e-05 + sys_18: 1.07950357e-04 + sys_19: -5.42364207e-05 + sys_20: 8.22842727e-06 + sys_21: 4.32531237e-05 + sys_22: -5.95480331e-05 + sys_23: 3.00004588e-07 + sys_24: -3.79788262e-07 + sys_25: -1.54124027e-07 + sys_26: -6.10325513e-07 + sys_27: 8.11465703e-07 + sys_28: 7.58136966e-06 + sys_29: 1.40253802e-06 + sys_30: 1.56062387e-05 + sys_31: -3.07693761e-05 + sys_32: 4.38137672e-05 + sys_33: 3.87542872e-06 + sys_34: -2.45411707e-05 + sys_35: -4.03973775e-05 + sys_36: -4.58417298e-06 + sys_37: -5.47086403e-06 + sys_38: 2.83934015e-05 + sys_39: -9.15321682e-05 + sys_40: 4.60201210e-06 + sys_41: -4.65141310e-05 + sys_42: -6.32884930e-07 + sys_43: 1.45007293e-05 + sys_44: 8.84173874e-06 + sys_45: 2.07803677e-05 + sys_46: 2.22301771e-05 + sys_47: 1.14005497e-05 + sys_48: 9.36851923e-06 + sys_49: 1.43358965e-05 + sys_50: 4.53157064e-06 + sys_51: -1.59610123e-05 + sys_52: 4.27691260e-05 + sys_53: 2.75481174e-05 + sys_54: 9.51282287e-06 + sys_55: 3.69993045e-06 - lumi_ue: 0.00036 - pol: 0.0003828 - sys_0: -0.00019358960006998603 - sys_1: -0.0010658851640397908 - sys_2: 4.133547023846939e-05 - sys_3: 0.0006295451375995085 - sys_4: 0.0004297349206012285 - sys_5: 0.0017092853342110565 - sys_6: -0.017681188321840253 - sys_7: -0.002133139476344544 - sys_8: -0.00019826882850716005 - sys_9: -0.0007033756673041538 - sys_10: 6.046174605968341e-05 - sys_11: -0.00029271808478213804 - sys_12: 0.00015962278527441946 - sys_13: -0.00014835249844419063 - sys_14: -0.0001827507326031524 - sys_15: 9.678520171422524e-05 - sys_16: 6.254623994626316e-05 - sys_17: -1.2207232862933961e-05 - sys_18: 6.601205709610537e-05 - sys_19: -2.618500877311735e-05 - sys_20: 5.499581288676288e-05 - sys_21: 4.523998772670093e-05 - sys_22: -4.2771471899369374e-05 - sys_23: 7.902142322850497e-08 - sys_24: -2.1357831901121583e-07 - sys_25: 2.8857552453787976e-07 - sys_26: -2.1732284511550222e-07 - sys_27: 2.6823088386196806e-06 - sys_28: 2.5236888550726593e-06 - sys_29: 3.0545736889268434e-07 - sys_30: 4.5175436539411e-06 - sys_31: -1.0926750546689987e-05 - sys_32: 3.5719898775674316e-05 - sys_33: 5.693188194306272e-06 - sys_34: -2.841374863159363e-05 - sys_35: -5.157255926837661e-05 - sys_36: -5.348983800345254e-06 - sys_37: -4.369282668403552e-06 - sys_38: 2.3628216975712928e-05 - sys_39: -7.25150322714681e-05 - sys_40: 2.9208593240851972e-06 - sys_41: -3.767201730453955e-05 - sys_42: 2.0213207066054744e-06 - sys_43: 9.954990604057512e-06 - sys_44: 7.73124169933282e-06 - sys_45: 1.381547840938386e-05 - sys_46: 1.2691851461690721e-05 - sys_47: 5.739308576952768e-06 - sys_48: 6.94534020591468e-06 - sys_49: 8.69468377874454e-06 - sys_50: 2.203210469328429e-06 - sys_51: -9.896368292436205e-06 - sys_52: 3.7376669247772024e-05 - sys_53: 5.25842968216036e-05 - sys_54: 2.313065374960981e-05 - sys_55: 2.2534680644536512e-06 + pol: 3.82800000e-04 + sys_0: -1.93589600e-04 + sys_1: -1.06588516e-03 + sys_2: 4.13354702e-05 + sys_3: 6.29545138e-04 + sys_4: 4.29734921e-04 + sys_5: 1.70928533e-03 + sys_6: -1.76811883e-02 + sys_7: -2.13313948e-03 + sys_8: -1.98268829e-04 + sys_9: -7.03375667e-04 + sys_10: 6.04617461e-05 + sys_11: -2.92718085e-04 + sys_12: 1.59622785e-04 + sys_13: -1.48352498e-04 + sys_14: -1.82750733e-04 + sys_15: 9.67852017e-05 + sys_16: 6.25462399e-05 + sys_17: -1.22072329e-05 + sys_18: 6.60120571e-05 + sys_19: -2.61850088e-05 + sys_20: 5.49958129e-05 + sys_21: 4.52399877e-05 + sys_22: -4.27714719e-05 + sys_23: 7.90214232e-08 + sys_24: -2.13578319e-07 + sys_25: 2.88575525e-07 + sys_26: -2.17322845e-07 + sys_27: 2.68230884e-06 + sys_28: 2.52368886e-06 + sys_29: 3.05457369e-07 + sys_30: 4.51754365e-06 + sys_31: -1.09267505e-05 + sys_32: 3.57198988e-05 + sys_33: 5.69318819e-06 + sys_34: -2.84137486e-05 + sys_35: -5.15725593e-05 + sys_36: -5.34898380e-06 + sys_37: -4.36928267e-06 + sys_38: 2.36282170e-05 + sys_39: -7.25150323e-05 + sys_40: 2.92085932e-06 + sys_41: -3.76720173e-05 + sys_42: 2.02132071e-06 + sys_43: 9.95499060e-06 + sys_44: 7.73124170e-06 + sys_45: 1.38154784e-05 + sys_46: 1.26918515e-05 + sys_47: 5.73930858e-06 + sys_48: 6.94534021e-06 + sys_49: 8.69468378e-06 + sys_50: 2.20321047e-06 + sys_51: -9.89636829e-06 + sys_52: 3.73766692e-05 + sys_53: 5.25842968e-05 + sys_54: 2.31306537e-05 + sys_55: 2.25346806e-06 - lumi_ue: 0.00036 - pol: 0.0019206000000000002 - sys_0: -0.00020162632878324845 - sys_1: -0.007685411945170331 - sys_2: -0.028586313792703634 - sys_3: -0.0012101014856086855 - sys_4: -0.00046235300502023475 - sys_5: -0.00016138007670261898 - sys_6: 0.00014276587407357604 - sys_7: -0.00011547317624555486 - sys_8: -9.01830097282157e-06 - sys_9: -0.00019780075341459065 - sys_10: -0.00014875159677468606 - sys_11: -4.824973744813694e-05 - sys_12: 3.3300226352779256e-05 - sys_13: -3.9075906819437033e-05 - sys_14: -4.7423304985884004e-05 - sys_15: 4.890792282588212e-05 - sys_16: 8.516718315868222e-06 - sys_17: 5.910182232457789e-07 - sys_18: 5.7236751889024096e-06 - sys_19: 1.7763616018281452e-05 - sys_20: 0.0001195032607612046 - sys_21: 3.4493139222132944e-05 - sys_22: -1.0363280409427154e-05 - sys_23: 5.956540836032337e-08 - sys_24: -1.015103387587971e-07 - sys_25: 1.3501290260531837e-07 - sys_26: -6.826941244976467e-08 - sys_27: 9.620296603234222e-07 - sys_28: 7.378407853916891e-07 - sys_29: 7.793563682387158e-08 - sys_30: 1.1453478594710142e-06 - sys_31: -2.9885334909576313e-06 - sys_32: 1.2364478532728065e-05 - sys_33: 3.835511065535514e-06 - sys_34: -2.01723837747414e-05 - sys_35: -4.1527416739877264e-05 - sys_36: -5.656232865195166e-06 - sys_37: -1.2502072244100625e-06 - sys_38: 8.583968601089396e-06 - sys_39: -1.8830609492013037e-05 - sys_40: 1.8744027327814804e-06 - sys_41: -1.5695316603163023e-05 - sys_42: 3.418599534698452e-06 - sys_43: -6.161898712436343e-07 - sys_44: -7.12770083220683e-07 - sys_45: -1.4866829827372383e-08 - sys_46: 8.224592714887047e-07 - sys_47: -1.5380556222976305e-07 - sys_48: -4.131249191201426e-06 - sys_49: -6.395434241102339e-06 - sys_50: -8.440969066172789e-07 - sys_51: 4.051213088591608e-06 - sys_52: 2.115062347454655e-05 - sys_53: 7.998698264123732e-05 - sys_54: 4.103119725181878e-05 - sys_55: 9.0135524579207e-07 + pol: 1.92060000e-03 + sys_0: -2.01626329e-04 + sys_1: -7.68541195e-03 + sys_2: -2.85863138e-02 + sys_3: -1.21010149e-03 + sys_4: -4.62353005e-04 + sys_5: -1.61380077e-04 + sys_6: 1.42765874e-04 + sys_7: -1.15473176e-04 + sys_8: -9.01830097e-06 + sys_9: -1.97800753e-04 + sys_10: -1.48751597e-04 + sys_11: -4.82497374e-05 + sys_12: 3.33002264e-05 + sys_13: -3.90759068e-05 + sys_14: -4.74233050e-05 + sys_15: 4.89079228e-05 + sys_16: 8.51671832e-06 + sys_17: 5.91018223e-07 + sys_18: 5.72367519e-06 + sys_19: 1.77636160e-05 + sys_20: 1.19503261e-04 + sys_21: 3.44931392e-05 + sys_22: -1.03632804e-05 + sys_23: 5.95654084e-08 + sys_24: -1.01510339e-07 + sys_25: 1.35012903e-07 + sys_26: -6.82694124e-08 + sys_27: 9.62029660e-07 + sys_28: 7.37840785e-07 + sys_29: 7.79356368e-08 + sys_30: 1.14534786e-06 + sys_31: -2.98853349e-06 + sys_32: 1.23644785e-05 + sys_33: 3.83551107e-06 + sys_34: -2.01723838e-05 + sys_35: -4.15274167e-05 + sys_36: -5.65623287e-06 + sys_37: -1.25020722e-06 + sys_38: 8.58396860e-06 + sys_39: -1.88306095e-05 + sys_40: 1.87440273e-06 + sys_41: -1.56953166e-05 + sys_42: 3.41859953e-06 + sys_43: -6.16189871e-07 + sys_44: -7.12770083e-07 + sys_45: -1.48668298e-08 + sys_46: 8.22459271e-07 + sys_47: -1.53805562e-07 + sys_48: -4.13124919e-06 + sys_49: -6.39543424e-06 + sys_50: -8.44096907e-07 + sys_51: 4.05121309e-06 + sys_52: 2.11506235e-05 + sys_53: 7.99869826e-05 + sys_54: 4.10311973e-05 + sys_55: 9.01355246e-07 - lumi_ue: 0.00029 pol: 0.000363 - sys_0: -0.04617528060468053 - sys_1: 0.0007798226307564299 - sys_2: -6.772515672857569e-06 - sys_3: -0.0002847982951575241 - sys_4: -0.0002375706642736877 - sys_5: -8.851273565003619e-05 - sys_6: 7.702255838100796e-05 - sys_7: -7.487866853264508e-05 - sys_8: -4.253446346233467e-06 - sys_9: -0.0001888186836280874 - sys_10: -0.0002371988153344005 - sys_11: -3.805347603647276e-05 - sys_12: 2.354972929937533e-05 - sys_13: -2.44447889087296e-05 - sys_14: -3.2163101775378466e-05 - sys_15: 3.723142823712022e-05 - sys_16: 3.1233787008052266e-06 - sys_17: 1.6895587210962816e-06 - sys_18: -9.528448984164402e-07 - sys_19: 2.8403423379136432e-05 - sys_20: 0.000157123700273669 - sys_21: 4.498513026796189e-05 - sys_22: -9.12458171180194e-06 - sys_23: 9.008466211206403e-09 - sys_24: -3.5882060863905376e-08 - sys_25: 9.214285619209532e-08 - sys_26: 7.9803707227494e-09 - sys_27: 7.600813279628025e-07 - sys_28: 1.706604006972182e-07 - sys_29: -1.5058046770423167e-09 - sys_30: 1.471413329505469e-07 - sys_31: -2.3222400863230303e-07 - sys_32: 2.2764239165675865e-06 - sys_33: 1.6855775911153307e-06 - sys_34: -6.3262215205484375e-06 - sys_35: -1.0445643432706864e-05 - sys_36: -6.314024107243673e-08 - sys_37: -1.789659555712456e-06 - sys_38: 6.253365524562876e-06 - sys_39: -1.1914971235426991e-05 - sys_40: 5.958032802839538e-07 - sys_41: -4.084882989852197e-06 - sys_42: -3.066621221401798e-07 - sys_43: 2.57138013119666e-06 - sys_44: 9.808223463885276e-07 - sys_45: 1.2849878091270987e-06 - sys_46: 1.303753392441279e-06 - sys_47: 1.072989499948878e-06 - sys_48: -1.947332071953833e-06 - sys_49: -2.780427570144449e-06 - sys_50: -6.605960073629148e-07 - sys_51: 2.589591173738787e-06 - sys_52: 1.1995123905200442e-05 - sys_53: 5.1101224030181285e-05 - sys_54: 2.5550192779391623e-05 - sys_55: 6.29528932468708e-07 + sys_0: -4.61752806e-02 + sys_1: 7.79822631e-04 + sys_2: -6.77251567e-06 + sys_3: -2.84798295e-04 + sys_4: -2.37570664e-04 + sys_5: -8.85127357e-05 + sys_6: 7.70225584e-05 + sys_7: -7.48786685e-05 + sys_8: -4.25344635e-06 + sys_9: -1.88818684e-04 + sys_10: -2.37198815e-04 + sys_11: -3.80534760e-05 + sys_12: 2.35497293e-05 + sys_13: -2.44447889e-05 + sys_14: -3.21631018e-05 + sys_15: 3.72314282e-05 + sys_16: 3.12337870e-06 + sys_17: 1.68955872e-06 + sys_18: -9.52844898e-07 + sys_19: 2.84034234e-05 + sys_20: 1.57123700e-04 + sys_21: 4.49851303e-05 + sys_22: -9.12458171e-06 + sys_23: 9.00846621e-09 + sys_24: -3.58820609e-08 + sys_25: 9.21428562e-08 + sys_26: 7.98037072e-09 + sys_27: 7.60081328e-07 + sys_28: 1.70660401e-07 + sys_29: -1.50580468e-09 + sys_30: 1.47141333e-07 + sys_31: -2.32224009e-07 + sys_32: 2.27642392e-06 + sys_33: 1.68557759e-06 + sys_34: -6.32622152e-06 + sys_35: -1.04456434e-05 + sys_36: -6.31402411e-08 + sys_37: -1.78965956e-06 + sys_38: 6.25336552e-06 + sys_39: -1.19149712e-05 + sys_40: 5.95803280e-07 + sys_41: -4.08488299e-06 + sys_42: -3.06662122e-07 + sys_43: 2.57138013e-06 + sys_44: 9.80822346e-07 + sys_45: 1.28498781e-06 + sys_46: 1.30375339e-06 + sys_47: 1.07298950e-06 + sys_48: -1.94733207e-06 + sys_49: -2.78042757e-06 + sys_50: -6.60596007e-07 + sys_51: 2.58959117e-06 + sys_52: 1.19951239e-05 + sys_53: 5.11012240e-05 + sys_54: 2.55501928e-05 + sys_55: 6.29528932e-07 diff --git a/nnpdf_data/nnpdf_data/commondata/STAR-2013_1JET_510GEV/filter.py b/nnpdf_data/nnpdf_data/commondata/STAR-2013_1JET_510GEV/filter.py index 310917bc1e..91e3ae97af 100644 --- a/nnpdf_data/nnpdf_data/commondata/STAR-2013_1JET_510GEV/filter.py +++ b/nnpdf_data/nnpdf_data/commondata/STAR-2013_1JET_510GEV/filter.py @@ -10,6 +10,9 @@ from nnpdf_data.filter_utils.correlations import compute_covmat, upper_triangular_to_symmetric from nnpdf_data.filter_utils.poldata_utils import TOPO_DEF +from nnpdf_data.filter_utils.utils import prettify_float + +yaml.add_representer(float, prettify_float) # values from the paper https://arxiv.org/pdf/2110.11020.pdf SQRTS = 510 diff --git a/nnpdf_data/nnpdf_data/commondata/STAR-2013_1JET_510GEV/kinematics.yaml b/nnpdf_data/nnpdf_data/commondata/STAR-2013_1JET_510GEV/kinematics.yaml index dd7cb965e2..514b2a6801 100644 --- a/nnpdf_data/nnpdf_data/commondata/STAR-2013_1JET_510GEV/kinematics.yaml +++ b/nnpdf_data/nnpdf_data/commondata/STAR-2013_1JET_510GEV/kinematics.yaml @@ -16,7 +16,7 @@ bins: mid: 0.0 min: -0.9 pT: - max: 10.209999999999999 + max: 1.02100000e+01 mid: 9.62 min: 9.03 sqrts: @@ -54,7 +54,7 @@ bins: pT: max: 16.3 mid: 15.76 - min: 15.219999999999999 + min: 1.52200000e+01 sqrts: max: null mid: 510.0 @@ -88,7 +88,7 @@ bins: mid: 0.0 min: -0.9 pT: - max: 26.830000000000002 + max: 2.68300000e+01 mid: 25.94 min: 25.05 sqrts: @@ -126,7 +126,7 @@ bins: pT: max: 40.99 mid: 39.59 - min: 38.190000000000005 + min: 3.81900000e+01 sqrts: max: null mid: 510.0 @@ -138,7 +138,7 @@ bins: pT: max: 47.28 mid: 45.76 - min: 44.239999999999995 + min: 4.42400000e+01 sqrts: max: null mid: 510.0 @@ -150,7 +150,7 @@ bins: pT: max: 54.9 mid: 53.17 - min: 51.440000000000005 + min: 5.14400000e+01 sqrts: max: null mid: 510.0 @@ -162,7 +162,7 @@ bins: pT: max: 63.32 mid: 61.37 - min: 59.419999999999995 + min: 5.94200000e+01 sqrts: max: null mid: 510.0 diff --git a/nnpdf_data/nnpdf_data/commondata/STAR-2013_1JET_510GEV/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/STAR-2013_1JET_510GEV/uncertainties.yaml index f97801902f..0766b332dc 100644 --- a/nnpdf_data/nnpdf_data/commondata/STAR-2013_1JET_510GEV/uncertainties.yaml +++ b/nnpdf_data/nnpdf_data/commondata/STAR-2013_1JET_510GEV/uncertainties.yaml @@ -260,913 +260,913 @@ definitions: treatment: ADD type: STAR2013JETunc62 bins: -- pol: 0.00040064 +- pol: 4.00640000e-04 lumi: 0.00047 - sys_0: 1.0149923084218335e-07 - sys_1: -6.454483538693696e-08 - sys_2: -3.737045253494787e-07 - sys_3: -1.5019582664856453e-07 - sys_4: 2.377224760150964e-07 - sys_5: 2.4823625870694025e-07 - sys_6: -7.96450253195909e-07 - sys_7: 3.211867265144163e-07 - sys_8: -1.2963151798799375e-06 - sys_9: 5.797893252200983e-07 - sys_10: -1.8072024158425543e-06 - sys_11: -3.0811145495853427e-06 - sys_12: -2.6211246797788252e-06 - sys_13: -6.010605794047085e-06 - sys_14: -4.416616904141487e-05 - sys_15: 4.003603795604606e-06 - sys_16: -4.758356756375704e-06 - sys_17: -1.1775405116955058e-05 - sys_18: -1.2487308763839741e-05 - sys_19: -6.441360649717394e-05 - sys_20: 5.5738982475575165e-06 - sys_21: -7.355039484211259e-05 - sys_22: -3.2519573208367814e-05 - sys_23: -1.6939967388137693e-05 - sys_24: 2.626410403993313e-05 - sys_25: 3.544112817733747e-05 - sys_26: 1.1094566746458367e-05 - sys_27: -7.673299817378687e-06 - sys_28: 1.2381460688985121e-05 - sys_29: -1.1284038703802794e-05 - sys_30: -3.2045686688109894e-05 - sys_31: 1.440651433940892e-05 - sys_32: 1.8066105412083626e-05 - sys_33: 2.6216181475871664e-05 - sys_34: 4.808617421861655e-06 - sys_35: 9.044689150374201e-07 - sys_36: -2.978415697235311e-06 - sys_37: 4.153713271486627e-05 - sys_38: 9.134760961843418e-07 - sys_39: -3.517254291842421e-05 - sys_40: -1.063557331435929e-05 - sys_41: 6.206664046902483e-05 - sys_42: 2.1195218067999482e-05 - sys_43: -5.669240305134518e-06 - sys_44: 2.553760130029594e-06 - sys_45: -4.8750980315611274e-06 - sys_46: 3.545746294598209e-06 - sys_47: 1.0244454110793118e-05 - sys_48: 5.747136463662861e-06 - sys_49: 7.886387107555071e-05 - sys_50: 0.00030905852550123494 - sys_51: -9.486838476608858e-05 - sys_52: 0.00226125418922026 - sys_53: -0.0009447924882359989 - sys_54: -9.404536909876061e-05 - sys_55: 2.3939044487725958e-05 - sys_56: 6.209089655882174e-05 - sys_57: 4.9179371554582706e-05 - sys_58: -8.648456365676183e-05 - sys_59: -3.837601125358577e-05 - sys_60: -1.253321683506462e-05 - sys_61: -3.0264472901788967e-05 - sys_62: 1.3630113330535423e-05 -- pol: 0.00016512 + sys_0: 1.01499231e-07 + sys_1: -6.45448354e-08 + sys_2: -3.73704525e-07 + sys_3: -1.50195827e-07 + sys_4: 2.37722476e-07 + sys_5: 2.48236259e-07 + sys_6: -7.96450253e-07 + sys_7: 3.21186727e-07 + sys_8: -1.29631518e-06 + sys_9: 5.79789325e-07 + sys_10: -1.80720242e-06 + sys_11: -3.08111455e-06 + sys_12: -2.62112468e-06 + sys_13: -6.01060579e-06 + sys_14: -4.41661690e-05 + sys_15: 4.00360380e-06 + sys_16: -4.75835676e-06 + sys_17: -1.17754051e-05 + sys_18: -1.24873088e-05 + sys_19: -6.44136065e-05 + sys_20: 5.57389825e-06 + sys_21: -7.35503948e-05 + sys_22: -3.25195732e-05 + sys_23: -1.69399674e-05 + sys_24: 2.62641040e-05 + sys_25: 3.54411282e-05 + sys_26: 1.10945667e-05 + sys_27: -7.67329982e-06 + sys_28: 1.23814607e-05 + sys_29: -1.12840387e-05 + sys_30: -3.20456867e-05 + sys_31: 1.44065143e-05 + sys_32: 1.80661054e-05 + sys_33: 2.62161815e-05 + sys_34: 4.80861742e-06 + sys_35: 9.04468915e-07 + sys_36: -2.97841570e-06 + sys_37: 4.15371327e-05 + sys_38: 9.13476096e-07 + sys_39: -3.51725429e-05 + sys_40: -1.06355733e-05 + sys_41: 6.20666405e-05 + sys_42: 2.11952181e-05 + sys_43: -5.66924031e-06 + sys_44: 2.55376013e-06 + sys_45: -4.87509803e-06 + sys_46: 3.54574629e-06 + sys_47: 1.02444541e-05 + sys_48: 5.74713646e-06 + sys_49: 7.88638711e-05 + sys_50: 3.09058526e-04 + sys_51: -9.48683848e-05 + sys_52: 2.26125419e-03 + sys_53: -9.44792488e-04 + sys_54: -9.40453691e-05 + sys_55: 2.39390445e-05 + sys_56: 6.20908966e-05 + sys_57: 4.91793716e-05 + sys_58: -8.64845637e-05 + sys_59: -3.83760113e-05 + sys_60: -1.25332168e-05 + sys_61: -3.02644729e-05 + sys_62: 1.36301133e-05 +- pol: 1.65120000e-04 lumi: 0.00047 - sys_0: 9.284993022443979e-08 - sys_1: -5.1139763495648926e-08 - sys_2: -3.2144071155769563e-07 - sys_3: -1.1536142427141784e-07 - sys_4: 2.2075455823134628e-07 - sys_5: 1.798302185441739e-07 - sys_6: -6.31788624391001e-07 - sys_7: 2.278652557121822e-07 - sys_8: -1.0474684594049416e-06 - sys_9: 5.419035022562226e-07 - sys_10: -1.2712034638358235e-06 - sys_11: -2.2010705861256465e-06 - sys_12: -1.915852250158735e-06 - sys_13: -4.134408378857276e-06 - sys_14: -2.0299144250705636e-05 - sys_15: -1.8776330081022528e-07 - sys_16: 1.502567299447425e-08 - sys_17: -9.191261199065371e-06 - sys_18: -8.480238082144548e-06 - sys_19: -2.7950813957197926e-05 - sys_20: -2.403525044282503e-07 - sys_21: -3.561643322730747e-05 - sys_22: 9.242680903618039e-06 - sys_23: -2.677257579924053e-05 - sys_24: 2.152978105071245e-05 - sys_25: 1.80280410492686e-05 - sys_26: 8.699747727383915e-06 - sys_27: 1.2262083364223311e-05 - sys_28: 2.5136855503566163e-05 - sys_29: 5.77970481391093e-06 - sys_30: -4.8950367121745476e-05 - sys_31: 1.603155885848119e-06 - sys_32: -1.0774661267194971e-05 - sys_33: 4.563180029306079e-05 - sys_34: 5.3937695483946225e-06 - sys_35: 9.225684271030167e-07 - sys_36: -4.787640970172305e-06 - sys_37: 5.260359216952431e-05 - sys_38: -1.1297786393882242e-05 - sys_39: -7.479700500130267e-05 - sys_40: -3.0385784756891517e-05 - sys_41: 0.00010847320762789742 - sys_42: 3.708441699823448e-05 - sys_43: 5.2962469320718734e-05 - sys_44: 4.868112399801969e-06 - sys_45: -7.021767403295156e-06 - sys_46: 4.934651844645401e-06 - sys_47: 2.0750114714844546e-05 - sys_48: 8.579445005098355e-06 - sys_49: 6.706430330334574e-05 - sys_50: 0.0024318070185359664 - sys_51: 0.0006618126162738295 - sys_52: -0.00021595870559119607 - sys_53: 0.00022186709914240533 - sys_54: -9.802118819522454e-05 - sys_55: 2.3814655837374327e-05 - sys_56: 5.52605431509561e-05 - sys_57: 4.4531267686239085e-05 - sys_58: -8.477598543201916e-05 - sys_59: -4.3441489479847286e-05 - sys_60: -2.2372196749845943e-05 - sys_61: -3.3173411613648936e-05 - sys_62: 5.498693086721247e-06 -- pol: 0.00017728 + sys_0: 9.28499302e-08 + sys_1: -5.11397635e-08 + sys_2: -3.21440712e-07 + sys_3: -1.15361424e-07 + sys_4: 2.20754558e-07 + sys_5: 1.79830219e-07 + sys_6: -6.31788624e-07 + sys_7: 2.27865256e-07 + sys_8: -1.04746846e-06 + sys_9: 5.41903502e-07 + sys_10: -1.27120346e-06 + sys_11: -2.20107059e-06 + sys_12: -1.91585225e-06 + sys_13: -4.13440838e-06 + sys_14: -2.02991443e-05 + sys_15: -1.87763301e-07 + sys_16: 1.50256730e-08 + sys_17: -9.19126120e-06 + sys_18: -8.48023808e-06 + sys_19: -2.79508140e-05 + sys_20: -2.40352504e-07 + sys_21: -3.56164332e-05 + sys_22: 9.24268090e-06 + sys_23: -2.67725758e-05 + sys_24: 2.15297811e-05 + sys_25: 1.80280410e-05 + sys_26: 8.69974773e-06 + sys_27: 1.22620834e-05 + sys_28: 2.51368555e-05 + sys_29: 5.77970481e-06 + sys_30: -4.89503671e-05 + sys_31: 1.60315589e-06 + sys_32: -1.07746613e-05 + sys_33: 4.56318003e-05 + sys_34: 5.39376955e-06 + sys_35: 9.22568427e-07 + sys_36: -4.78764097e-06 + sys_37: 5.26035922e-05 + sys_38: -1.12977864e-05 + sys_39: -7.47970050e-05 + sys_40: -3.03857848e-05 + sys_41: 1.08473208e-04 + sys_42: 3.70844170e-05 + sys_43: 5.29624693e-05 + sys_44: 4.86811240e-06 + sys_45: -7.02176740e-06 + sys_46: 4.93465184e-06 + sys_47: 2.07501147e-05 + sys_48: 8.57944501e-06 + sys_49: 6.70643033e-05 + sys_50: 2.43180702e-03 + sys_51: 6.61812616e-04 + sys_52: -2.15958706e-04 + sys_53: 2.21867099e-04 + sys_54: -9.80211882e-05 + sys_55: 2.38146558e-05 + sys_56: 5.52605432e-05 + sys_57: 4.45312677e-05 + sys_58: -8.47759854e-05 + sys_59: -4.34414895e-05 + sys_60: -2.23721967e-05 + sys_61: -3.31734116e-05 + sys_62: 5.49869309e-06 +- pol: 1.77280000e-04 lumi: 0.00047 - sys_0: 8.483931485993028e-08 - sys_1: -4.471607643574021e-08 - sys_2: -3.028752219226872e-07 - sys_3: -1.0419206348855968e-07 - sys_4: 1.9295871932505862e-07 - sys_5: 1.406508777915424e-07 - sys_6: -5.63103581303427e-07 - sys_7: 1.9247059877291513e-07 - sys_8: -8.91181514910058e-07 - sys_9: 4.5597254865125044e-07 - sys_10: -9.462717732523078e-07 - sys_11: -1.73308786249384e-06 - sys_12: -1.442975177430055e-06 - sys_13: -2.662600271800781e-06 - sys_14: -5.144483406145089e-06 - sys_15: -2.706751398610095e-06 - sys_16: 2.8480182652431147e-06 - sys_17: -7.3788631241000315e-06 - sys_18: -5.3999374334452525e-06 - sys_19: -5.551956926438862e-06 - sys_20: -2.90502847590185e-06 - sys_21: -1.823908726672016e-05 - sys_22: 1.7138540358311354e-05 - sys_23: -2.011087748183053e-05 - sys_24: 8.64641380669776e-06 - sys_25: -3.7644135013096838e-06 - sys_26: 1.468540096692078e-06 - sys_27: 2.4383542478147445e-05 - sys_28: 2.316006147932292e-05 - sys_29: 1.393425671726078e-05 - sys_30: -3.644336569063453e-05 - sys_31: -1.085029520298541e-05 - sys_32: -3.170714286109122e-05 - sys_33: 2.717053826071027e-05 - sys_34: 1.1831688663513874e-05 - sys_35: 3.913711680661963e-06 - sys_36: -1.8190690321196453e-05 - sys_37: 2.0170127436830255e-05 - sys_38: -1.1540487695375623e-05 - sys_39: -3.9177346200614266e-05 - sys_40: -1.8748695711212022e-05 - sys_41: 4.554978489555752e-05 - sys_42: 9.572650457678152e-06 - sys_43: 3.401630095555792e-05 - sys_44: 4.565874888498843e-05 - sys_45: -6.233984578000956e-05 - sys_46: 9.463278121598103e-06 - sys_47: 0.000408704922483969 - sys_48: -0.001774968915644072 - sys_49: -3.283269626668942e-05 - sys_50: 3.244782837820394e-05 - sys_51: -4.9565028953994324e-05 - sys_52: 6.133403197730991e-06 - sys_53: -1.777585781638603e-05 - sys_54: 4.229231515728049e-05 - sys_55: -0.00014030856183451198 - sys_56: -7.47677951149363e-05 - sys_57: -4.412640313168434e-05 - sys_58: 0.00012963654959965214 - sys_59: 2.2108391349293855e-05 - sys_60: 3.166523173164569e-05 - sys_61: 3.223002928488443e-05 - sys_62: 1.5608503002483026e-05 + sys_0: 8.48393149e-08 + sys_1: -4.47160764e-08 + sys_2: -3.02875222e-07 + sys_3: -1.04192063e-07 + sys_4: 1.92958719e-07 + sys_5: 1.40650878e-07 + sys_6: -5.63103581e-07 + sys_7: 1.92470599e-07 + sys_8: -8.91181515e-07 + sys_9: 4.55972549e-07 + sys_10: -9.46271773e-07 + sys_11: -1.73308786e-06 + sys_12: -1.44297518e-06 + sys_13: -2.66260027e-06 + sys_14: -5.14448341e-06 + sys_15: -2.70675140e-06 + sys_16: 2.84801827e-06 + sys_17: -7.37886312e-06 + sys_18: -5.39993743e-06 + sys_19: -5.55195693e-06 + sys_20: -2.90502848e-06 + sys_21: -1.82390873e-05 + sys_22: 1.71385404e-05 + sys_23: -2.01108775e-05 + sys_24: 8.64641381e-06 + sys_25: -3.76441350e-06 + sys_26: 1.46854010e-06 + sys_27: 2.43835425e-05 + sys_28: 2.31600615e-05 + sys_29: 1.39342567e-05 + sys_30: -3.64433657e-05 + sys_31: -1.08502952e-05 + sys_32: -3.17071429e-05 + sys_33: 2.71705383e-05 + sys_34: 1.18316887e-05 + sys_35: 3.91371168e-06 + sys_36: -1.81906903e-05 + sys_37: 2.01701274e-05 + sys_38: -1.15404877e-05 + sys_39: -3.91773462e-05 + sys_40: -1.87486957e-05 + sys_41: 4.55497849e-05 + sys_42: 9.57265046e-06 + sys_43: 3.40163010e-05 + sys_44: 4.56587489e-05 + sys_45: -6.23398458e-05 + sys_46: 9.46327812e-06 + sys_47: 4.08704922e-04 + sys_48: -1.77496892e-03 + sys_49: -3.28326963e-05 + sys_50: 3.24478284e-05 + sys_51: -4.95650290e-05 + sys_52: 6.13340320e-06 + sys_53: -1.77758578e-05 + sys_54: 4.22923152e-05 + sys_55: -1.40308562e-04 + sys_56: -7.47677951e-05 + sys_57: -4.41264031e-05 + sys_58: 1.29636550e-04 + sys_59: 2.21083913e-05 + sys_60: 3.16652317e-05 + sys_61: 3.22300293e-05 + sys_62: 1.56085030e-05 - pol: 4.8e-05 lumi: 0.00047 - sys_0: 8.575043133238273e-08 - sys_1: -4.907053832950133e-08 - sys_2: -3.4051896893435574e-07 - sys_3: -1.1357497762526124e-07 - sys_4: 1.7608954534514073e-07 - sys_5: 1.4646797793860585e-07 - sys_6: -6.17562736354189e-07 - sys_7: 2.0283339420867975e-07 - sys_8: -9.394785731395876e-07 - sys_9: 3.8195903980889123e-07 - sys_10: -9.748729340256603e-07 - sys_11: -1.8391332715618388e-06 - sys_12: -1.5209851485094669e-06 - sys_13: -2.2859933992807907e-06 - sys_14: -3.33834578524772e-06 - sys_15: -3.2884786225544526e-06 - sys_16: 3.508780945164332e-06 - sys_17: -7.718910012631491e-06 - sys_18: -5.369498845450796e-06 - sys_19: -3.579532478431477e-06 - sys_20: -2.056952051752331e-06 - sys_21: -1.671564757887325e-05 - sys_22: 1.712198354277504e-05 - sys_23: -1.8194432722424552e-05 - sys_24: 4.243253471622473e-06 - sys_25: -1.1822535702933664e-05 - sys_26: 3.573450361493543e-08 - sys_27: 2.8686405727035884e-05 - sys_28: 2.0696973630882812e-05 - sys_29: 1.7299379775878058e-05 - sys_30: -2.4378452225575552e-05 - sys_31: -2.700758685032666e-05 - sys_32: -5.68636167514065e-05 - sys_33: 2.5268088125033657e-05 - sys_34: 4.453200100468686e-06 - sys_35: 4.57136560743703e-06 - sys_36: -1.2527078073739436e-05 - sys_37: 4.562855666317928e-06 - sys_38: -2.0938090834649083e-05 - sys_39: -2.127450261326606e-05 - sys_40: -1.492339880507648e-05 - sys_41: 3.2073955783332175e-05 - sys_42: -4.387603590788838e-06 - sys_43: 4.8126376724225626e-05 - sys_44: 4.832325607671534e-05 - sys_45: -5.3419650030109225e-05 - sys_46: -2.1152676258854606e-05 - sys_47: 0.00018913990208244214 - sys_48: 0.00018643000014694608 - sys_49: -0.00011016598863017248 - sys_50: 3.796423491982475e-05 - sys_51: -5.378311241924671e-05 - sys_52: 9.843472893063733e-06 - sys_53: -1.7863859217508545e-05 - sys_54: 4.233233900241813e-05 - sys_55: -0.001897507270351284 - sys_56: 0.0001953209043145125 - sys_57: 0.0001713278630504545 - sys_58: 6.282699127759675e-05 - sys_59: -1.6587094091848305e-06 - sys_60: 5.179844846149537e-05 - sys_61: 3.867720669307566e-05 - sys_62: 6.951070811138098e-05 + sys_0: 8.57504313e-08 + sys_1: -4.90705383e-08 + sys_2: -3.40518969e-07 + sys_3: -1.13574978e-07 + sys_4: 1.76089545e-07 + sys_5: 1.46467978e-07 + sys_6: -6.17562736e-07 + sys_7: 2.02833394e-07 + sys_8: -9.39478573e-07 + sys_9: 3.81959040e-07 + sys_10: -9.74872934e-07 + sys_11: -1.83913327e-06 + sys_12: -1.52098515e-06 + sys_13: -2.28599340e-06 + sys_14: -3.33834579e-06 + sys_15: -3.28847862e-06 + sys_16: 3.50878095e-06 + sys_17: -7.71891001e-06 + sys_18: -5.36949885e-06 + sys_19: -3.57953248e-06 + sys_20: -2.05695205e-06 + sys_21: -1.67156476e-05 + sys_22: 1.71219835e-05 + sys_23: -1.81944327e-05 + sys_24: 4.24325347e-06 + sys_25: -1.18225357e-05 + sys_26: 3.57345036e-08 + sys_27: 2.86864057e-05 + sys_28: 2.06969736e-05 + sys_29: 1.72993798e-05 + sys_30: -2.43784522e-05 + sys_31: -2.70075869e-05 + sys_32: -5.68636168e-05 + sys_33: 2.52680881e-05 + sys_34: 4.45320010e-06 + sys_35: 4.57136561e-06 + sys_36: -1.25270781e-05 + sys_37: 4.56285567e-06 + sys_38: -2.09380908e-05 + sys_39: -2.12745026e-05 + sys_40: -1.49233988e-05 + sys_41: 3.20739558e-05 + sys_42: -4.38760359e-06 + sys_43: 4.81263767e-05 + sys_44: 4.83232561e-05 + sys_45: -5.34196500e-05 + sys_46: -2.11526763e-05 + sys_47: 1.89139902e-04 + sys_48: 1.86430000e-04 + sys_49: -1.10165989e-04 + sys_50: 3.79642349e-05 + sys_51: -5.37831124e-05 + sys_52: 9.84347289e-06 + sys_53: -1.78638592e-05 + sys_54: 4.23323390e-05 + sys_55: -1.89750727e-03 + sys_56: 1.95320904e-04 + sys_57: 1.71327863e-04 + sys_58: 6.28269913e-05 + sys_59: -1.65870941e-06 + sys_60: 5.17984485e-05 + sys_61: 3.86772067e-05 + sys_62: 6.95107081e-05 - pol: 5.44e-05 lumi: 0.00047 - sys_0: 1.0148504411785782e-07 - sys_1: -6.153273408950956e-08 - sys_2: -4.2257531202911803e-07 - sys_3: -1.3814787876981547e-07 - sys_4: 2.0129278792998127e-07 - sys_5: 1.885104311697341e-07 - sys_6: -7.723540565758287e-07 - sys_7: 2.433909375907652e-07 - sys_8: -1.1544379823135392e-06 - sys_9: 4.1619197831793816e-07 - sys_10: -1.2476233091405256e-06 - sys_11: -2.30340064101932e-06 - sys_12: -1.968138723219064e-06 - sys_13: -2.5949323907334686e-06 - sys_14: -4.11673181440722e-06 - sys_15: -4.303284034000822e-06 - sys_16: 4.505582228856356e-06 - sys_17: -1.0114718485330793e-05 - sys_18: -7.367838258267563e-06 - sys_19: -4.558099461271406e-06 - sys_20: -3.982806725712293e-06 - sys_21: -2.1552578682216745e-05 - sys_22: 2.285778527813971e-05 - sys_23: -2.096737698118746e-05 - sys_24: 1.1486515743741798e-06 - sys_25: -1.854195965416997e-05 - sys_26: 2.1846275153256213e-06 - sys_27: 3.6751790088825196e-05 - sys_28: 2.515873989150415e-05 - sys_29: 1.934768029723154e-05 - sys_30: 5.0388690671924364e-06 - sys_31: -5.3273870438838815e-05 - sys_32: -9.806916943143558e-05 - sys_33: 1.6194475784698424e-05 - sys_34: -2.560867389835613e-06 - sys_35: 1.2961159259462584e-06 - sys_36: -5.3930908667168675e-06 - sys_37: -1.9044984191196926e-05 - sys_38: -1.833994694082725e-05 - sys_39: 1.957813459071507e-05 - sys_40: -1.0703456953894519e-07 - sys_41: 1.7518498569873226e-05 - sys_42: -1.5024521613228781e-05 - sys_43: 6.937701200374631e-05 - sys_44: 2.7640559381180634e-05 - sys_45: -2.5742018119615785e-05 - sys_46: -3.1547496432729615e-05 - sys_47: 3.588300732449049e-05 - sys_48: 5.21783263008725e-05 - sys_49: -0.00025975746648794495 - sys_50: 5.535846242736365e-05 - sys_51: -3.503288649134042e-05 - sys_52: 2.147903405668496e-05 - sys_53: -2.2434216548039465e-05 - sys_54: 3.507928797690343e-05 - sys_55: 5.961046345898619e-05 - sys_56: -9.836716642501642e-05 - sys_57: -0.0002748425593760812 - sys_58: 3.369690525337607e-05 - sys_59: -0.0002792155091334152 - sys_60: 0.00010186575595570267 - sys_61: 0.0017662429448398454 - sys_62: 0.0012344388150931163 -- pol: 0.00028416000000000004 + sys_0: 1.01485044e-07 + sys_1: -6.15327341e-08 + sys_2: -4.22575312e-07 + sys_3: -1.38147879e-07 + sys_4: 2.01292788e-07 + sys_5: 1.88510431e-07 + sys_6: -7.72354057e-07 + sys_7: 2.43390938e-07 + sys_8: -1.15443798e-06 + sys_9: 4.16191978e-07 + sys_10: -1.24762331e-06 + sys_11: -2.30340064e-06 + sys_12: -1.96813872e-06 + sys_13: -2.59493239e-06 + sys_14: -4.11673181e-06 + sys_15: -4.30328403e-06 + sys_16: 4.50558223e-06 + sys_17: -1.01147185e-05 + sys_18: -7.36783826e-06 + sys_19: -4.55809946e-06 + sys_20: -3.98280673e-06 + sys_21: -2.15525787e-05 + sys_22: 2.28577853e-05 + sys_23: -2.09673770e-05 + sys_24: 1.14865157e-06 + sys_25: -1.85419597e-05 + sys_26: 2.18462752e-06 + sys_27: 3.67517901e-05 + sys_28: 2.51587399e-05 + sys_29: 1.93476803e-05 + sys_30: 5.03886907e-06 + sys_31: -5.32738704e-05 + sys_32: -9.80691694e-05 + sys_33: 1.61944758e-05 + sys_34: -2.56086739e-06 + sys_35: 1.29611593e-06 + sys_36: -5.39309087e-06 + sys_37: -1.90449842e-05 + sys_38: -1.83399469e-05 + sys_39: 1.95781346e-05 + sys_40: -1.07034570e-07 + sys_41: 1.75184986e-05 + sys_42: -1.50245216e-05 + sys_43: 6.93770120e-05 + sys_44: 2.76405594e-05 + sys_45: -2.57420181e-05 + sys_46: -3.15474964e-05 + sys_47: 3.58830073e-05 + sys_48: 5.21783263e-05 + sys_49: -2.59757466e-04 + sys_50: 5.53584624e-05 + sys_51: -3.50328865e-05 + sys_52: 2.14790341e-05 + sys_53: -2.24342165e-05 + sys_54: 3.50792880e-05 + sys_55: 5.96104635e-05 + sys_56: -9.83671664e-05 + sys_57: -2.74842559e-04 + sys_58: 3.36969053e-05 + sys_59: -2.79215509e-04 + sys_60: 1.01865756e-04 + sys_61: 1.76624294e-03 + sys_62: 1.23443882e-03 +- pol: 2.84160000e-04 lumi: 0.00047 - sys_0: 2.1712992840009934e-07 - sys_1: -1.570348257582682e-07 - sys_2: -7.607527746882379e-07 - sys_3: -2.621156437051703e-07 - sys_4: 4.289287024702317e-07 - sys_5: 4.799442109612616e-07 - sys_6: -1.6474140787624859e-06 - sys_7: 1.8981865602971972e-07 - sys_8: -8.321366872995363e-07 - sys_9: 1.006581363164705e-06 - sys_10: -2.3268952012660628e-06 - sys_11: -4.024050902934787e-06 - sys_12: -4.039133844964965e-06 - sys_13: -8.164605952256586e-06 - sys_14: -6.466009349970837e-06 - sys_15: -1.0169249049211523e-05 - sys_16: 3.5646346650552566e-06 - sys_17: -2.1771066707968463e-05 - sys_18: -1.2782149506377236e-05 - sys_19: -7.167104962748464e-06 - sys_20: -1.781016634600106e-05 - sys_21: -3.3052459317883723e-05 - sys_22: 4.1414495011096004e-05 - sys_23: -2.181955137769703e-05 - sys_24: -1.7080173766763256e-05 - sys_25: -2.928037029217904e-05 - sys_26: 2.1659755443973304e-05 - sys_27: 3.918049341883986e-05 - sys_28: 2.0163794926125105e-05 - sys_29: 2.7929160380613287e-05 - sys_30: 4.783230447175259e-05 - sys_31: -7.34692002768938e-05 - sys_32: -7.111032831682077e-05 - sys_33: 2.481582606296297e-06 - sys_34: -0.0008112410755626099 - sys_35: 0.0008810840425737573 - sys_36: -8.809565502690129e-05 - sys_37: -2.6036290300379434e-05 - sys_38: 2.1584280253075935e-06 - sys_39: 2.9893102535489837e-05 - sys_40: 3.595824923155769e-05 - sys_41: -1.2697439493482942e-05 - sys_42: 4.086245118735652e-06 - sys_43: 2.278570460063618e-05 - sys_44: -5.64347408887802e-05 - sys_45: 1.1782746036717868e-05 - sys_46: 9.429578581706153e-05 - sys_47: 4.392507149550076e-06 - sys_48: -1.2545638868140168e-05 - sys_49: -8.15929978789637e-05 - sys_50: -4.691271265757725e-06 - sys_51: 2.6582131918054704e-05 - sys_52: 2.9421303575496842e-06 - sys_53: -3.2220106419256886e-06 - sys_54: -1.7386051926225925e-05 - sys_55: 5.822314777897364e-06 - sys_56: 7.695704371216913e-07 - sys_57: 9.463973607129994e-05 - sys_58: -2.7735938957819304e-05 - sys_59: -6.414380882543368e-05 - sys_60: -4.8527516710197874e-05 - sys_61: -1.6508471078381244e-05 - sys_62: 2.0094045122087518e-05 -- pol: 0.00019711999999999998 + sys_0: 2.17129928e-07 + sys_1: -1.57034826e-07 + sys_2: -7.60752775e-07 + sys_3: -2.62115644e-07 + sys_4: 4.28928702e-07 + sys_5: 4.79944211e-07 + sys_6: -1.64741408e-06 + sys_7: 1.89818656e-07 + sys_8: -8.32136687e-07 + sys_9: 1.00658136e-06 + sys_10: -2.32689520e-06 + sys_11: -4.02405090e-06 + sys_12: -4.03913384e-06 + sys_13: -8.16460595e-06 + sys_14: -6.46600935e-06 + sys_15: -1.01692490e-05 + sys_16: 3.56463467e-06 + sys_17: -2.17710667e-05 + sys_18: -1.27821495e-05 + sys_19: -7.16710496e-06 + sys_20: -1.78101663e-05 + sys_21: -3.30524593e-05 + sys_22: 4.14144950e-05 + sys_23: -2.18195514e-05 + sys_24: -1.70801738e-05 + sys_25: -2.92803703e-05 + sys_26: 2.16597554e-05 + sys_27: 3.91804934e-05 + sys_28: 2.01637949e-05 + sys_29: 2.79291604e-05 + sys_30: 4.78323045e-05 + sys_31: -7.34692003e-05 + sys_32: -7.11103283e-05 + sys_33: 2.48158261e-06 + sys_34: -8.11241076e-04 + sys_35: 8.81084043e-04 + sys_36: -8.80956550e-05 + sys_37: -2.60362903e-05 + sys_38: 2.15842803e-06 + sys_39: 2.98931025e-05 + sys_40: 3.59582492e-05 + sys_41: -1.26974395e-05 + sys_42: 4.08624512e-06 + sys_43: 2.27857046e-05 + sys_44: -5.64347409e-05 + sys_45: 1.17827460e-05 + sys_46: 9.42957858e-05 + sys_47: 4.39250715e-06 + sys_48: -1.25456389e-05 + sys_49: -8.15929979e-05 + sys_50: -4.69127127e-06 + sys_51: 2.65821319e-05 + sys_52: 2.94213036e-06 + sys_53: -3.22201064e-06 + sys_54: -1.73860519e-05 + sys_55: 5.82231478e-06 + sys_56: 7.69570437e-07 + sys_57: 9.46397361e-05 + sys_58: -2.77359390e-05 + sys_59: -6.41438088e-05 + sys_60: -4.85275167e-05 + sys_61: -1.65084711e-05 + sys_62: 2.00940451e-05 +- pol: 1.97120000e-04 lumi: 0.00047 - sys_0: 3.234835103154658e-07 - sys_1: -2.2987713746840348e-07 - sys_2: -1.142728572378879e-06 - sys_3: -3.896566187096933e-07 - sys_4: 7.060478303784839e-07 - sys_5: 7.660824697759094e-07 - sys_6: -2.5793596549983632e-06 - sys_7: 3.317835375490551e-07 - sys_8: -2.4078890583392534e-06 - sys_9: 4.1663058173898635e-06 - sys_10: -6.6434574452439714e-06 - sys_11: -8.566266603859695e-06 - sys_12: -7.806431250627386e-06 - sys_13: -2.372978737345375e-05 - sys_14: -1.0321682568214669e-05 - sys_15: -2.510430479013695e-05 - sys_16: 1.6597485402534056e-06 - sys_17: -4.379522987901279e-05 - sys_18: -2.1677979005343376e-05 - sys_19: -8.590602392154038e-06 - sys_20: -4.214283090869364e-05 - sys_21: -4.545959547510692e-05 - sys_22: 6.83122106327228e-05 - sys_23: -1.5947574707584607e-05 - sys_24: -5.2799192487138134e-05 - sys_25: -4.238351565251109e-05 - sys_26: 4.194342570127262e-05 - sys_27: 4.4410656796577666e-05 - sys_28: -2.2531188872299475e-06 - sys_29: 3.5220697698485084e-05 - sys_30: 8.506553796601932e-05 - sys_31: -9.437326931733414e-05 - sys_32: -5.370195883995678e-05 - sys_33: 1.393992508365677e-06 - sys_34: -0.0008055918258812938 - sys_35: -0.0008338374682772129 - sys_36: -0.0003292506977098348 - sys_37: -2.43251057783279e-05 - sys_38: 4.061363760442145e-06 - sys_39: 2.1749249665019146e-05 - sys_40: 8.210051203702377e-05 - sys_41: -4.3168136615305986e-05 - sys_42: 9.58103574596122e-06 - sys_43: -4.472965253375488e-06 - sys_44: 6.900216363693838e-06 - sys_45: -6.427803527025229e-05 - sys_46: 8.911184653691851e-05 - sys_47: 3.3789105758242656e-05 - sys_48: -5.25771073715636e-06 - sys_49: -5.4172441204507013e-05 - sys_50: -1.1223877898816733e-05 - sys_51: 5.028215909956586e-05 - sys_52: 2.21563141000546e-06 - sys_53: -9.161291843344529e-06 - sys_54: -2.7989992456382713e-05 - sys_55: 1.1963856721902284e-06 - sys_56: -2.504544831644548e-05 - sys_57: 7.861575515821662e-05 - sys_58: -5.498247369384866e-05 - sys_59: -8.437460950105568e-05 - sys_60: -9.238020521056182e-05 - sys_61: -1.736365080237317e-05 - sys_62: 1.6362288472157444e-05 -- pol: 0.00036608 + sys_0: 3.23483510e-07 + sys_1: -2.29877137e-07 + sys_2: -1.14272857e-06 + sys_3: -3.89656619e-07 + sys_4: 7.06047830e-07 + sys_5: 7.66082470e-07 + sys_6: -2.57935965e-06 + sys_7: 3.31783538e-07 + sys_8: -2.40788906e-06 + sys_9: 4.16630582e-06 + sys_10: -6.64345745e-06 + sys_11: -8.56626660e-06 + sys_12: -7.80643125e-06 + sys_13: -2.37297874e-05 + sys_14: -1.03216826e-05 + sys_15: -2.51043048e-05 + sys_16: 1.65974854e-06 + sys_17: -4.37952299e-05 + sys_18: -2.16779790e-05 + sys_19: -8.59060239e-06 + sys_20: -4.21428309e-05 + sys_21: -4.54595955e-05 + sys_22: 6.83122106e-05 + sys_23: -1.59475747e-05 + sys_24: -5.27991925e-05 + sys_25: -4.23835157e-05 + sys_26: 4.19434257e-05 + sys_27: 4.44106568e-05 + sys_28: -2.25311889e-06 + sys_29: 3.52206977e-05 + sys_30: 8.50655380e-05 + sys_31: -9.43732693e-05 + sys_32: -5.37019588e-05 + sys_33: 1.39399251e-06 + sys_34: -8.05591826e-04 + sys_35: -8.33837468e-04 + sys_36: -3.29250698e-04 + sys_37: -2.43251058e-05 + sys_38: 4.06136376e-06 + sys_39: 2.17492497e-05 + sys_40: 8.21005120e-05 + sys_41: -4.31681366e-05 + sys_42: 9.58103575e-06 + sys_43: -4.47296525e-06 + sys_44: 6.90021636e-06 + sys_45: -6.42780353e-05 + sys_46: 8.91118465e-05 + sys_47: 3.37891058e-05 + sys_48: -5.25771074e-06 + sys_49: -5.41724412e-05 + sys_50: -1.12238779e-05 + sys_51: 5.02821591e-05 + sys_52: 2.21563141e-06 + sys_53: -9.16129184e-06 + sys_54: -2.79899925e-05 + sys_55: 1.19638567e-06 + sys_56: -2.50454483e-05 + sys_57: 7.86157552e-05 + sys_58: -5.49824737e-05 + sys_59: -8.43746095e-05 + sys_60: -9.23802052e-05 + sys_61: -1.73636508e-05 + sys_62: 1.63622885e-05 +- pol: 3.66080000e-04 lumi: 0.00047 - sys_0: 6.405405382230645e-07 - sys_1: -4.851736721222099e-07 - sys_2: -2.0690102957372196e-06 - sys_3: -6.970780086604447e-07 - sys_4: 4.2952107943370225e-06 - sys_5: 2.9596497676324386e-06 - sys_6: -5.8316001524647e-06 - sys_7: 1.2316904968725024e-06 - sys_8: -4.076952392673332e-06 - sys_9: 1.9078599414057885e-05 - sys_10: -2.3917902252998325e-05 - sys_11: -2.4588799751661294e-05 - sys_12: -1.6224440552190946e-05 - sys_13: -6.244501504868227e-05 - sys_14: -1.6516539298602953e-05 - sys_15: -6.293222661366254e-05 - sys_16: -1.0552852764021974e-05 - sys_17: -9.786629975386165e-05 - sys_18: -3.390642871646582e-05 - sys_19: -1.4907970809696922e-06 - sys_20: -7.024415217663409e-05 - sys_21: -4.8756229370655646e-05 - sys_22: 9.728923334379537e-05 - sys_23: 1.158350757507308e-05 - sys_24: -0.0001083910910630471 - sys_25: -4.365936689842962e-05 - sys_26: 5.453318345591199e-05 - sys_27: 5.9436176654357813e-05 - sys_28: -7.044123212756637e-05 - sys_29: 3.0129283995807698e-05 - sys_30: 0.00010811556502540831 - sys_31: -9.125421111758822e-05 - sys_32: -2.0070620313360346e-05 - sys_33: 6.173511073640091e-06 - sys_34: -0.00023980537089795766 - sys_35: -0.00013653588199921479 - sys_36: 0.0012534567115363062 - sys_37: -1.61081821329994e-05 - sys_38: -7.478661583158074e-06 - sys_39: -4.614835347432627e-06 - sys_40: 0.00012540952718093502 - sys_41: -8.961094025131271e-05 - sys_42: 3.041650091333961e-06 - sys_43: -4.400393959060446e-05 - sys_44: 0.00014201310911099942 - sys_45: -0.00025722179696309683 - sys_46: 9.903638913798154e-05 - sys_47: 5.807377186768366e-05 - sys_48: -5.806057073415608e-06 - sys_49: -8.78776591805765e-06 - sys_50: -9.59265086753138e-06 - sys_51: 5.62376826370251e-05 - sys_52: -4.441795275057011e-06 - sys_53: -2.1703405522871517e-05 - sys_54: -4.1596001614839914e-05 - sys_55: -9.627653283069333e-06 - sys_56: -5.776870566922534e-05 - sys_57: 2.6037364067307546e-05 - sys_58: -0.00011148176429640172 - sys_59: -8.083637677725456e-05 - sys_60: -0.00011196109546132897 - sys_61: -9.670915674570231e-06 - sys_62: 9.933349366534549e-06 -- pol: 0.00064512 + sys_0: 6.40540538e-07 + sys_1: -4.85173672e-07 + sys_2: -2.06901030e-06 + sys_3: -6.97078009e-07 + sys_4: 4.29521079e-06 + sys_5: 2.95964977e-06 + sys_6: -5.83160015e-06 + sys_7: 1.23169050e-06 + sys_8: -4.07695239e-06 + sys_9: 1.90785994e-05 + sys_10: -2.39179023e-05 + sys_11: -2.45887998e-05 + sys_12: -1.62244406e-05 + sys_13: -6.24450150e-05 + sys_14: -1.65165393e-05 + sys_15: -6.29322266e-05 + sys_16: -1.05528528e-05 + sys_17: -9.78662998e-05 + sys_18: -3.39064287e-05 + sys_19: -1.49079708e-06 + sys_20: -7.02441522e-05 + sys_21: -4.87562294e-05 + sys_22: 9.72892333e-05 + sys_23: 1.15835076e-05 + sys_24: -1.08391091e-04 + sys_25: -4.36593669e-05 + sys_26: 5.45331835e-05 + sys_27: 5.94361767e-05 + sys_28: -7.04412321e-05 + sys_29: 3.01292840e-05 + sys_30: 1.08115565e-04 + sys_31: -9.12542111e-05 + sys_32: -2.00706203e-05 + sys_33: 6.17351107e-06 + sys_34: -2.39805371e-04 + sys_35: -1.36535882e-04 + sys_36: 1.25345671e-03 + sys_37: -1.61081821e-05 + sys_38: -7.47866158e-06 + sys_39: -4.61483535e-06 + sys_40: 1.25409527e-04 + sys_41: -8.96109403e-05 + sys_42: 3.04165009e-06 + sys_43: -4.40039396e-05 + sys_44: 1.42013109e-04 + sys_45: -2.57221797e-04 + sys_46: 9.90363891e-05 + sys_47: 5.80737719e-05 + sys_48: -5.80605707e-06 + sys_49: -8.78776592e-06 + sys_50: -9.59265087e-06 + sys_51: 5.62376826e-05 + sys_52: -4.44179528e-06 + sys_53: -2.17034055e-05 + sys_54: -4.15960016e-05 + sys_55: -9.62765328e-06 + sys_56: -5.77687057e-05 + sys_57: 2.60373641e-05 + sys_58: -1.11481764e-04 + sys_59: -8.08363768e-05 + sys_60: -1.11961095e-04 + sys_61: -9.67091567e-06 + sys_62: 9.93334937e-06 +- pol: 6.45120000e-04 lumi: 0.00047 - sys_0: 3.10217535709407e-06 - sys_1: -9.396296623748636e-07 - sys_2: -4.1049908577932335e-06 - sys_3: -3.0277405963062805e-06 - sys_4: 1.950552532889702e-05 - sys_5: 1.74425546188965e-05 - sys_6: -2.2059302883747373e-05 - sys_7: 8.271110457131332e-06 - sys_8: -1.362229626381981e-05 - sys_9: 6.639186214410858e-05 - sys_10: -8.592927670850357e-05 - sys_11: -7.932772913169096e-05 - sys_12: -4.705728096089299e-05 - sys_13: -0.00013168295908404085 - sys_14: -2.3960049064725492e-05 - sys_15: -0.00013858518325362835 - sys_16: -3.380028916090591e-05 - sys_17: -0.00018890606346630784 - sys_18: -7.053238398706916e-05 - sys_19: 3.4083879794402545e-05 - sys_20: -5.526789411297704e-05 - sys_21: -1.9942494632997806e-05 - sys_22: 9.736891372503485e-05 - sys_23: 5.3163296985793826e-05 - sys_24: -0.0001494786452729128 - sys_25: -4.126051923055375e-05 - sys_26: 3.548776495935536e-05 - sys_27: 7.774631810176326e-05 - sys_28: -0.00019583603237832361 - sys_29: -2.729239932805281e-06 - sys_30: 0.00010973263383638018 - sys_31: -5.8122371397941146e-05 - sys_32: 2.0415962955482277e-05 - sys_33: 8.67264406090575e-06 - sys_34: -6.700488607074843e-05 - sys_35: -5.127334154416995e-05 - sys_36: 0.00017218000808566917 - sys_37: -8.595139257856894e-06 - sys_38: -2.3021031430379433e-05 - sys_39: -3.0599592648490805e-05 - sys_40: 0.0001164787650190826 - sys_41: -0.0001647519331364161 - sys_42: -1.6349032007299316e-05 - sys_43: -9.957332839095819e-05 - sys_44: -0.0001691613582263079 - sys_45: 0.0014519237512463342 - sys_46: -0.0003579622092575297 - sys_47: 0.00035585219512717715 - sys_48: -8.820662551479136e-07 - sys_49: 7.414390106540343e-05 - sys_50: -2.648287986842053e-06 - sys_51: 4.1493392012712395e-05 - sys_52: -1.1416581095194938e-05 - sys_53: -3.676815295673044e-05 - sys_54: -8.142484057667154e-05 - sys_55: -6.980197187492914e-05 - sys_56: -0.00021549549320487563 - sys_57: -0.00012093862747725345 - sys_58: -0.0003213631493970243 - sys_59: -6.639163440179829e-05 - sys_60: -0.00010407878390522963 - sys_61: 3.685382221587825e-06 - sys_62: 2.6516238075292162e-06 -- pol: 0.0006611200000000001 + sys_0: 3.10217536e-06 + sys_1: -9.39629662e-07 + sys_2: -4.10499086e-06 + sys_3: -3.02774060e-06 + sys_4: 1.95055253e-05 + sys_5: 1.74425546e-05 + sys_6: -2.20593029e-05 + sys_7: 8.27111046e-06 + sys_8: -1.36222963e-05 + sys_9: 6.63918621e-05 + sys_10: -8.59292767e-05 + sys_11: -7.93277291e-05 + sys_12: -4.70572810e-05 + sys_13: -1.31682959e-04 + sys_14: -2.39600491e-05 + sys_15: -1.38585183e-04 + sys_16: -3.38002892e-05 + sys_17: -1.88906063e-04 + sys_18: -7.05323840e-05 + sys_19: 3.40838798e-05 + sys_20: -5.52678941e-05 + sys_21: -1.99424946e-05 + sys_22: 9.73689137e-05 + sys_23: 5.31632970e-05 + sys_24: -1.49478645e-04 + sys_25: -4.12605192e-05 + sys_26: 3.54877650e-05 + sys_27: 7.77463181e-05 + sys_28: -1.95836032e-04 + sys_29: -2.72923993e-06 + sys_30: 1.09732634e-04 + sys_31: -5.81223714e-05 + sys_32: 2.04159630e-05 + sys_33: 8.67264406e-06 + sys_34: -6.70048861e-05 + sys_35: -5.12733415e-05 + sys_36: 1.72180008e-04 + sys_37: -8.59513926e-06 + sys_38: -2.30210314e-05 + sys_39: -3.05995926e-05 + sys_40: 1.16478765e-04 + sys_41: -1.64751933e-04 + sys_42: -1.63490320e-05 + sys_43: -9.95733284e-05 + sys_44: -1.69161358e-04 + sys_45: 1.45192375e-03 + sys_46: -3.57962209e-04 + sys_47: 3.55852195e-04 + sys_48: -8.82066255e-07 + sys_49: 7.41439011e-05 + sys_50: -2.64828799e-06 + sys_51: 4.14933920e-05 + sys_52: -1.14165811e-05 + sys_53: -3.67681530e-05 + sys_54: -8.14248406e-05 + sys_55: -6.98019719e-05 + sys_56: -2.15495493e-04 + sys_57: -1.20938627e-04 + sys_58: -3.21363149e-04 + sys_59: -6.63916344e-05 + sys_60: -1.04078784e-04 + sys_61: 3.68538222e-06 + sys_62: 2.65162381e-06 +- pol: 6.61120000e-04 lumi: 0.00047 - sys_0: 1.8117107146026165e-05 - sys_1: -1.305918175777752e-05 - sys_2: -1.0316751377376753e-05 - sys_3: -1.5639832483453734e-05 - sys_4: 8.685238651338595e-05 - sys_5: 8.012840679125508e-05 - sys_6: -9.586824837154987e-05 - sys_7: 3.936685997834781e-05 - sys_8: -4.122025324863063e-05 - sys_9: 0.00017206115116410046 - sys_10: -0.00023150499238046648 - sys_11: -0.00019795993514493514 - sys_12: -0.00015313813661255594 - sys_13: -0.0001687969808894826 - sys_14: -2.2350830839417062e-05 - sys_15: -0.00020790945356527585 - sys_16: -2.6547645925295264e-05 - sys_17: -0.0002611774713496013 - sys_18: -0.0001619432139868494 - sys_19: 0.00010364076291727499 - sys_20: 2.8694852667342186e-05 - sys_21: 5.6185460788608175e-05 - sys_22: 3.9251603637335884e-05 - sys_23: 9.163710672560747e-05 - sys_24: -0.00014188260839904988 - sys_25: -5.772576062799973e-05 - sys_26: -6.035086352089945e-05 - sys_27: 4.5481286071902814e-05 - sys_28: -0.000349364339754937 - sys_29: -6.023438483556622e-05 - sys_30: 0.00010818427319070463 - sys_31: -8.668178859007406e-06 - sys_32: 7.116822958735292e-05 - sys_33: 5.768877472096923e-06 - sys_34: -1.3743435100952651e-05 - sys_35: -2.1607071786214e-05 - sys_36: 6.396043353503673e-05 - sys_37: -5.591168735691984e-06 - sys_38: -5.742601266828547e-05 - sys_39: -6.217136229021315e-05 - sys_40: -3.58892146311166e-06 - sys_41: -0.0003857399674757465 - sys_42: -6.650020958536553e-05 - sys_43: -0.0002716682852908346 - sys_44: -3.395962977609682e-05 - sys_45: 0.00021645507973080676 - sys_46: -3.855963866907943e-05 - sys_47: -7.740846614734716e-05 - sys_48: -4.020418362354627e-06 - sys_49: 0.00041644455602050197 - sys_50: 4.016293410949063e-05 - sys_51: -4.5993158859179315e-05 - sys_52: -5.029786291568653e-05 - sys_53: -0.00011242129480644439 - sys_54: -0.0004262639233058954 - sys_55: 0.00011477245649835762 - sys_56: 0.000576124315519821 - sys_57: 0.0006173240384276609 - sys_58: 0.0015864091305610776 - sys_59: -0.00020518966552357529 - sys_60: -0.00020333822516926129 - sys_61: -0.0002932095213722567 - sys_62: 0.0006628387034526994 -- pol: 0.0007993599999999999 + sys_0: 1.81171071e-05 + sys_1: -1.30591818e-05 + sys_2: -1.03167514e-05 + sys_3: -1.56398325e-05 + sys_4: 8.68523865e-05 + sys_5: 8.01284068e-05 + sys_6: -9.58682484e-05 + sys_7: 3.93668600e-05 + sys_8: -4.12202532e-05 + sys_9: 1.72061151e-04 + sys_10: -2.31504992e-04 + sys_11: -1.97959935e-04 + sys_12: -1.53138137e-04 + sys_13: -1.68796981e-04 + sys_14: -2.23508308e-05 + sys_15: -2.07909454e-04 + sys_16: -2.65476459e-05 + sys_17: -2.61177471e-04 + sys_18: -1.61943214e-04 + sys_19: 1.03640763e-04 + sys_20: 2.86948527e-05 + sys_21: 5.61854608e-05 + sys_22: 3.92516036e-05 + sys_23: 9.16371067e-05 + sys_24: -1.41882608e-04 + sys_25: -5.77257606e-05 + sys_26: -6.03508635e-05 + sys_27: 4.54812861e-05 + sys_28: -3.49364340e-04 + sys_29: -6.02343848e-05 + sys_30: 1.08184273e-04 + sys_31: -8.66817886e-06 + sys_32: 7.11682296e-05 + sys_33: 5.76887747e-06 + sys_34: -1.37434351e-05 + sys_35: -2.16070718e-05 + sys_36: 6.39604335e-05 + sys_37: -5.59116874e-06 + sys_38: -5.74260127e-05 + sys_39: -6.21713623e-05 + sys_40: -3.58892146e-06 + sys_41: -3.85739967e-04 + sys_42: -6.65002096e-05 + sys_43: -2.71668285e-04 + sys_44: -3.39596298e-05 + sys_45: 2.16455080e-04 + sys_46: -3.85596387e-05 + sys_47: -7.74084661e-05 + sys_48: -4.02041836e-06 + sys_49: 4.16444556e-04 + sys_50: 4.01629341e-05 + sys_51: -4.59931589e-05 + sys_52: -5.02978629e-05 + sys_53: -1.12421295e-04 + sys_54: -4.26263923e-04 + sys_55: 1.14772456e-04 + sys_56: 5.76124316e-04 + sys_57: 6.17324038e-04 + sys_58: 1.58640913e-03 + sys_59: -2.05189666e-04 + sys_60: -2.03338225e-04 + sys_61: -2.93209521e-04 + sys_62: 6.62838703e-04 +- pol: 7.99360000e-04 lumi: 0.00047 - sys_0: 0.00010505248159787048 - sys_1: -8.276688131604706e-05 - sys_2: -4.8272390363049375e-05 - sys_3: -9.304553600618975e-05 - sys_4: 0.0002730297516487765 - sys_5: 0.00028386607902136966 - sys_6: -0.0003419427867339642 - sys_7: 8.441952901617702e-05 - sys_8: -0.0001294376933476201 - sys_9: 0.0002504515046951909 - sys_10: -0.00040574246376556887 - sys_11: -0.0003103616599468961 - sys_12: -0.0004123656134851069 - sys_13: -0.00011798667124613287 - sys_14: -4.629495557587256e-06 - sys_15: -0.00022572948911424778 - sys_16: 0.0001172476043141961 - sys_17: -0.00023426485544292673 - sys_18: -0.000251497024591598 - sys_19: 0.00018838620477610733 - sys_20: 0.00016827377687938722 - sys_21: 0.0001898388223674339 - sys_22: -8.588029075267656e-05 - sys_23: 0.0001308850253277414 - sys_24: -9.668824009327403e-05 - sys_25: -0.00015315193111820914 - sys_26: -0.0004207187089726895 - sys_27: -0.00017869975489565013 - sys_28: -0.0007513710002852603 - sys_29: -0.0002111536069413766 - sys_30: 0.00018675311772707958 - sys_31: 7.158740264106901e-05 - sys_32: 0.00063917158387913 - sys_33: -1.832907112064078e-05 - sys_34: 3.6992186989330398e-06 - sys_35: -7.758103111301182e-06 - sys_36: 2.2649603241848973e-05 - sys_37: 0.00018139120806963014 - sys_38: 0.0008343920594466025 - sys_39: 0.0004910812519314006 - sys_40: 0.0015765278884734564 - sys_41: 0.0018558349070949749 - sys_42: 0.0003066444708906393 - sys_43: 0.0005908572275288423 - sys_44: -7.65307757646253e-06 - sys_45: 8.383581397170861e-05 - sys_46: -2.0993361035979e-05 - sys_47: -3.49441806819312e-05 - sys_48: -4.351351928347457e-06 - sys_49: -0.00044826247588759186 - sys_50: -5.881723344454978e-05 - sys_51: 0.00013317732218374136 - sys_52: 2.6076439188672608e-05 - sys_53: 4.060474726178381e-05 - sys_54: 0.00017979831721450106 - sys_55: 3.631286055298863e-05 - sys_56: 0.00016142180310474378 - sys_57: 0.0001412342251417207 - sys_58: 0.00021300616520926127 - sys_59: 9.717205018658573e-06 - sys_60: -3.5093880200024064e-05 - sys_61: 1.4838698142250976e-05 - sys_62: -3.489525229693562e-05 -- pol: 0.0011673599999999999 + sys_0: 1.05052482e-04 + sys_1: -8.27668813e-05 + sys_2: -4.82723904e-05 + sys_3: -9.30455360e-05 + sys_4: 2.73029752e-04 + sys_5: 2.83866079e-04 + sys_6: -3.41942787e-04 + sys_7: 8.44195290e-05 + sys_8: -1.29437693e-04 + sys_9: 2.50451505e-04 + sys_10: -4.05742464e-04 + sys_11: -3.10361660e-04 + sys_12: -4.12365613e-04 + sys_13: -1.17986671e-04 + sys_14: -4.62949556e-06 + sys_15: -2.25729489e-04 + sys_16: 1.17247604e-04 + sys_17: -2.34264855e-04 + sys_18: -2.51497025e-04 + sys_19: 1.88386205e-04 + sys_20: 1.68273777e-04 + sys_21: 1.89838822e-04 + sys_22: -8.58802908e-05 + sys_23: 1.30885025e-04 + sys_24: -9.66882401e-05 + sys_25: -1.53151931e-04 + sys_26: -4.20718709e-04 + sys_27: -1.78699755e-04 + sys_28: -7.51371000e-04 + sys_29: -2.11153607e-04 + sys_30: 1.86753118e-04 + sys_31: 7.15874026e-05 + sys_32: 6.39171584e-04 + sys_33: -1.83290711e-05 + sys_34: 3.69921870e-06 + sys_35: -7.75810311e-06 + sys_36: 2.26496032e-05 + sys_37: 1.81391208e-04 + sys_38: 8.34392059e-04 + sys_39: 4.91081252e-04 + sys_40: 1.57652789e-03 + sys_41: 1.85583491e-03 + sys_42: 3.06644471e-04 + sys_43: 5.90857228e-04 + sys_44: -7.65307758e-06 + sys_45: 8.38358140e-05 + sys_46: -2.09933610e-05 + sys_47: -3.49441807e-05 + sys_48: -4.35135193e-06 + sys_49: -4.48262476e-04 + sys_50: -5.88172334e-05 + sys_51: 1.33177322e-04 + sys_52: 2.60764392e-05 + sys_53: 4.06047473e-05 + sys_54: 1.79798317e-04 + sys_55: 3.63128606e-05 + sys_56: 1.61421803e-04 + sys_57: 1.41234225e-04 + sys_58: 2.13006165e-04 + sys_59: 9.71720502e-06 + sys_60: -3.50938802e-05 + sys_61: 1.48386981e-05 + sys_62: -3.48952523e-05 +- pol: 1.16736000e-03 lumi: 0.00047 - sys_0: 0.0004371716158492832 - sys_1: -0.0003663771373233873 - sys_2: -0.0002691672823332082 - sys_3: -0.0003999261324244481 - sys_4: 0.0004985352966613949 - sys_5: 0.0006128390852799948 - sys_6: -0.0008383677797617891 - sys_7: -6.145317117707907e-05 - sys_8: -0.00038865037798091766 - sys_9: 0.00017121638256527543 - sys_10: -0.0004597289338409847 - sys_11: -0.00031862472809038566 - sys_12: -0.0007361698430586142 - sys_13: 1.3949633925599457e-05 - sys_14: 3.0488921130044897e-05 - sys_15: -0.00023772636961075 - sys_16: 0.000616298573218801 - sys_17: -7.247524675888798e-05 - sys_18: -0.0002613689544295794 - sys_19: 0.00037777306002197885 - sys_20: 0.0005648658317314355 - sys_21: 0.0008754463010697041 - sys_22: -0.0009604178602847062 - sys_23: 0.0011644826017431565 - sys_24: -0.0011021309137968253 - sys_25: 0.0020099619465051 - sys_26: 0.0029691129126865425 - sys_27: 0.000996742287449448 - sys_28: 0.0010482699221215667 - sys_29: 0.00022114983393184756 - sys_30: -0.00011134366300755379 - sys_31: -2.2189699055999113e-05 - sys_32: -8.18711867764466e-05 - sys_33: 4.167789868572913e-06 - sys_34: 5.847023607470077e-06 - sys_35: -2.474269968490509e-06 - sys_36: 5.781950517673334e-06 - sys_37: 7.942458649085212e-06 - sys_38: 1.601205852530427e-05 - sys_39: 1.6187002830544145e-05 - sys_40: 0.0001587297250120736 - sys_41: 0.00020514944882886655 - sys_42: 4.624520715441112e-05 - sys_43: 0.00010332695537576527 - sys_44: 1.498099940307616e-06 - sys_45: 3.2456888522010235e-05 - sys_46: -1.3554145144164124e-05 - sys_47: -1.8944366990717228e-05 - sys_48: -2.700294980249234e-06 - sys_49: -0.00015733538303152865 - sys_50: -2.4603668734068817e-05 - sys_51: 6.79414924600883e-05 - sys_52: 9.26881913867946e-06 - sys_53: 9.92793970782964e-06 - sys_54: 8.178772120127009e-05 - sys_55: 1.9194790622324082e-05 - sys_56: 8.720172961037526e-05 - sys_57: 6.353155008786279e-05 - sys_58: 7.438174831318299e-05 - sys_59: 7.71236660087318e-06 - sys_60: -1.857899051812161e-05 - sys_61: 1.6664704487362227e-05 - sys_62: -3.0021625114088473e-05 -- pol: 0.0014112 + sys_0: 4.37171616e-04 + sys_1: -3.66377137e-04 + sys_2: -2.69167282e-04 + sys_3: -3.99926132e-04 + sys_4: 4.98535297e-04 + sys_5: 6.12839085e-04 + sys_6: -8.38367780e-04 + sys_7: -6.14531712e-05 + sys_8: -3.88650378e-04 + sys_9: 1.71216383e-04 + sys_10: -4.59728934e-04 + sys_11: -3.18624728e-04 + sys_12: -7.36169843e-04 + sys_13: 1.39496339e-05 + sys_14: 3.04889211e-05 + sys_15: -2.37726370e-04 + sys_16: 6.16298573e-04 + sys_17: -7.24752468e-05 + sys_18: -2.61368954e-04 + sys_19: 3.77773060e-04 + sys_20: 5.64865832e-04 + sys_21: 8.75446301e-04 + sys_22: -9.60417860e-04 + sys_23: 1.16448260e-03 + sys_24: -1.10213091e-03 + sys_25: 2.00996195e-03 + sys_26: 2.96911291e-03 + sys_27: 9.96742287e-04 + sys_28: 1.04826992e-03 + sys_29: 2.21149834e-04 + sys_30: -1.11343663e-04 + sys_31: -2.21896991e-05 + sys_32: -8.18711868e-05 + sys_33: 4.16778987e-06 + sys_34: 5.84702361e-06 + sys_35: -2.47426997e-06 + sys_36: 5.78195052e-06 + sys_37: 7.94245865e-06 + sys_38: 1.60120585e-05 + sys_39: 1.61870028e-05 + sys_40: 1.58729725e-04 + sys_41: 2.05149449e-04 + sys_42: 4.62452072e-05 + sys_43: 1.03326955e-04 + sys_44: 1.49809994e-06 + sys_45: 3.24568885e-05 + sys_46: -1.35541451e-05 + sys_47: -1.89443670e-05 + sys_48: -2.70029498e-06 + sys_49: -1.57335383e-04 + sys_50: -2.46036687e-05 + sys_51: 6.79414925e-05 + sys_52: 9.26881914e-06 + sys_53: 9.92793971e-06 + sys_54: 8.17877212e-05 + sys_55: 1.91947906e-05 + sys_56: 8.72017296e-05 + sys_57: 6.35315501e-05 + sys_58: 7.43817483e-05 + sys_59: 7.71236660e-06 + sys_60: -1.85789905e-05 + sys_61: 1.66647045e-05 + sys_62: -3.00216251e-05 +- pol: 1.41120000e-03 lumi: 0.00047 - sys_0: 0.001033419653529039 - sys_1: -0.0010160478295447907 - sys_2: -0.001166743773536037 - sys_3: -0.00075710481775097 - sys_4: 0.0005696815616150449 - sys_5: 0.0008845066079519055 - sys_6: -0.001416329121426991 - sys_7: -0.0005651242405939621 - sys_8: -0.0009933033604057342 - sys_9: -0.00011843678252378996 - sys_10: -0.0004520408870544794 - sys_11: -0.0002721660429013567 - sys_12: -0.001395523783005294 - sys_13: 0.0010007847044199367 - sys_14: 0.0017847400736663802 - sys_15: 0.0014124840455332157 - sys_16: -0.006723225004133467 - sys_17: -0.0003946677647411752 - sys_18: -4.918996053243845e-05 - sys_19: -0.0003029527234895195 - sys_20: -0.0005032192804172647 - sys_21: -0.00030218393520532814 - sys_22: 0.00023678554960765807 - sys_23: -8.031123934124119e-05 - sys_24: -8.459437288613941e-06 - sys_25: 6.316218367949257e-05 - sys_26: 0.00032393561771650964 - sys_27: 0.00018768681178253633 - sys_28: 0.0001950513621724823 - sys_29: 4.517052693754888e-05 - sys_30: -2.959198041517256e-05 - sys_31: 3.7455458862863155e-06 - sys_32: -2.6330089194430162e-05 - sys_33: 6.870226314582729e-07 - sys_34: 3.870869024345384e-06 - sys_35: -5.39837999862165e-07 - sys_36: 6.509398543072439e-07 - sys_37: 5.816369871575662e-06 - sys_38: -8.945930467390872e-06 - sys_39: 1.1949896262886333e-06 - sys_40: 4.7836413827838426e-05 - sys_41: 5.917470782453554e-05 - sys_42: 1.480868612747394e-05 - sys_43: 2.959057762066585e-05 - sys_44: 4.393134538695224e-06 - sys_45: 1.0607260572506946e-05 - sys_46: -8.566309253521036e-06 - sys_47: -7.812965569778146e-06 - sys_48: -1.3600551848471928e-06 - sys_49: -7.433975041721897e-05 - sys_50: -1.3159900275223985e-05 - sys_51: 3.945628402556886e-05 - sys_52: 3.838457687475351e-06 - sys_53: 2.309032724849529e-06 - sys_54: 4.0784181480535347e-05 - sys_55: 1.0005289449786667e-05 - sys_56: 4.8071837807651625e-05 - sys_57: 2.7471512388290937e-05 - sys_58: 2.2134593893178134e-05 - sys_59: 7.486988530250463e-06 - sys_60: -5.872122935370004e-06 - sys_61: 1.177777177669478e-05 - sys_62: -2.0294120687004806e-05 -- pol: 0.00289728 + sys_0: 1.03341965e-03 + sys_1: -1.01604783e-03 + sys_2: -1.16674377e-03 + sys_3: -7.57104818e-04 + sys_4: 5.69681562e-04 + sys_5: 8.84506608e-04 + sys_6: -1.41632912e-03 + sys_7: -5.65124241e-04 + sys_8: -9.93303360e-04 + sys_9: -1.18436783e-04 + sys_10: -4.52040887e-04 + sys_11: -2.72166043e-04 + sys_12: -1.39552378e-03 + sys_13: 1.00078470e-03 + sys_14: 1.78474007e-03 + sys_15: 1.41248405e-03 + sys_16: -6.72322500e-03 + sys_17: -3.94667765e-04 + sys_18: -4.91899605e-05 + sys_19: -3.02952723e-04 + sys_20: -5.03219280e-04 + sys_21: -3.02183935e-04 + sys_22: 2.36785550e-04 + sys_23: -8.03112393e-05 + sys_24: -8.45943729e-06 + sys_25: 6.31621837e-05 + sys_26: 3.23935618e-04 + sys_27: 1.87686812e-04 + sys_28: 1.95051362e-04 + sys_29: 4.51705269e-05 + sys_30: -2.95919804e-05 + sys_31: 3.74554589e-06 + sys_32: -2.63300892e-05 + sys_33: 6.87022631e-07 + sys_34: 3.87086902e-06 + sys_35: -5.39838000e-07 + sys_36: 6.50939854e-07 + sys_37: 5.81636987e-06 + sys_38: -8.94593047e-06 + sys_39: 1.19498963e-06 + sys_40: 4.78364138e-05 + sys_41: 5.91747078e-05 + sys_42: 1.48086861e-05 + sys_43: 2.95905776e-05 + sys_44: 4.39313454e-06 + sys_45: 1.06072606e-05 + sys_46: -8.56630925e-06 + sys_47: -7.81296557e-06 + sys_48: -1.36005518e-06 + sys_49: -7.43397504e-05 + sys_50: -1.31599003e-05 + sys_51: 3.94562840e-05 + sys_52: 3.83845769e-06 + sys_53: 2.30903272e-06 + sys_54: 4.07841815e-05 + sys_55: 1.00052894e-05 + sys_56: 4.80718378e-05 + sys_57: 2.74715124e-05 + sys_58: 2.21345939e-05 + sys_59: 7.48698853e-06 + sys_60: -5.87212294e-06 + sys_61: 1.17777718e-05 + sys_62: -2.02941207e-05 +- pol: 2.89728000e-03 lumi: 0.00047 - sys_0: 0.001687698255433242 - sys_1: -0.0018354248647584376 - sys_2: -0.003033409592948468 - sys_3: -0.0007763094803207736 - sys_4: 0.0005605260758972574 - sys_5: 0.0012893182838419825 - sys_6: -0.0033969025911660742 - sys_7: -0.002280793810049445 - sys_8: 0.012527532393627305 - sys_9: 0.0022823995782646316 - sys_10: 7.147423225771547e-05 - sys_11: 1.6211767140026136e-05 - sys_12: 0.0002838459840671451 - sys_13: -0.00016582805923476106 - sys_14: -7.320144684565495e-05 - sys_15: 5.332824989187221e-06 - sys_16: -0.00030719532089372437 - sys_17: -7.797750923151499e-05 - sys_18: -4.286815465522317e-05 - sys_19: -4.2271016673390264e-05 - sys_20: -0.00010388463430430449 - sys_21: -7.292441121927302e-05 - sys_22: 7.170783247901973e-05 - sys_23: -2.8423116394797648e-05 - sys_24: 5.358659688111875e-06 - sys_25: -6.724952508666536e-07 - sys_26: 8.35638038973951e-05 - sys_27: 5.684878529561151e-05 - sys_28: 5.9364107014549514e-05 - sys_29: 1.0594585399999226e-05 - sys_30: -1.1313849198795777e-05 - sys_31: 4.974930681499073e-06 - sys_32: -8.838720450542993e-06 - sys_33: 3.4521966789329004e-09 - sys_34: 1.4762810637016137e-06 - sys_35: -9.469625226734517e-08 - sys_36: -2.0977365521600465e-07 - sys_37: 3.1973594393441122e-06 - sys_38: -7.961193621501828e-06 - sys_39: -3.732741033062385e-07 - sys_40: 9.289591695053961e-06 - sys_41: 1.3450868403894987e-05 - sys_42: 3.7561727874557285e-06 - sys_43: 5.99799676974249e-06 - sys_44: 2.9404245487695734e-06 - sys_45: 2.6921200700485708e-06 - sys_46: -4.025306210242891e-06 - sys_47: -2.0599636926107224e-06 - sys_48: -4.811815903937815e-07 - sys_49: -2.8510803005346255e-05 - sys_50: -5.50616399368701e-06 - sys_51: 1.718935746072045e-05 - sys_52: 1.229155031717705e-06 - sys_53: 8.934858393280943e-08 - sys_54: 1.5617429310357314e-05 - sys_55: 4.032861694712982e-06 - sys_56: 2.0182878345212627e-05 - sys_57: 9.454324561969585e-06 - sys_58: 4.060126910712855e-06 - sys_59: 4.189152322580988e-06 - sys_60: -7.781355886210332e-07 - sys_61: 5.473359383310016e-06 - sys_62: -9.128472318812736e-06 + sys_0: 1.68769826e-03 + sys_1: -1.83542486e-03 + sys_2: -3.03340959e-03 + sys_3: -7.76309480e-04 + sys_4: 5.60526076e-04 + sys_5: 1.28931828e-03 + sys_6: -3.39690259e-03 + sys_7: -2.28079381e-03 + sys_8: 1.25275324e-02 + sys_9: 2.28239958e-03 + sys_10: 7.14742323e-05 + sys_11: 1.62117671e-05 + sys_12: 2.83845984e-04 + sys_13: -1.65828059e-04 + sys_14: -7.32014468e-05 + sys_15: 5.33282499e-06 + sys_16: -3.07195321e-04 + sys_17: -7.79775092e-05 + sys_18: -4.28681547e-05 + sys_19: -4.22710167e-05 + sys_20: -1.03884634e-04 + sys_21: -7.29244112e-05 + sys_22: 7.17078325e-05 + sys_23: -2.84231164e-05 + sys_24: 5.35865969e-06 + sys_25: -6.72495251e-07 + sys_26: 8.35638039e-05 + sys_27: 5.68487853e-05 + sys_28: 5.93641070e-05 + sys_29: 1.05945854e-05 + sys_30: -1.13138492e-05 + sys_31: 4.97493068e-06 + sys_32: -8.83872045e-06 + sys_33: 3.45219668e-09 + sys_34: 1.47628106e-06 + sys_35: -9.46962523e-08 + sys_36: -2.09773655e-07 + sys_37: 3.19735944e-06 + sys_38: -7.96119362e-06 + sys_39: -3.73274103e-07 + sys_40: 9.28959170e-06 + sys_41: 1.34508684e-05 + sys_42: 3.75617279e-06 + sys_43: 5.99799677e-06 + sys_44: 2.94042455e-06 + sys_45: 2.69212007e-06 + sys_46: -4.02530621e-06 + sys_47: -2.05996369e-06 + sys_48: -4.81181590e-07 + sys_49: -2.85108030e-05 + sys_50: -5.50616399e-06 + sys_51: 1.71893575e-05 + sys_52: 1.22915503e-06 + sys_53: 8.93485839e-08 + sys_54: 1.56174293e-05 + sys_55: 4.03286169e-06 + sys_56: 2.01828783e-05 + sys_57: 9.45432456e-06 + sys_58: 4.06012691e-06 + sys_59: 4.18915232e-06 + sys_60: -7.78135589e-07 + sys_61: 5.47335938e-06 + sys_62: -9.12847232e-06 diff --git a/nnpdf_data/nnpdf_data/commondata/STAR-2013_2JET_510GEV/kinematics_A.yaml b/nnpdf_data/nnpdf_data/commondata/STAR-2013_2JET_510GEV/kinematics_A.yaml index d9f1292209..0a9a82faf7 100644 --- a/nnpdf_data/nnpdf_data/commondata/STAR-2013_2JET_510GEV/kinematics_A.yaml +++ b/nnpdf_data/nnpdf_data/commondata/STAR-2013_2JET_510GEV/kinematics_A.yaml @@ -44,7 +44,7 @@ bins: mid: 0.6 min: 0.3 m_jj: - max: 27.110000000000003 + max: 2.71100000e+01 mid: 26.17 min: 25.23 - abs_eta_1: @@ -106,7 +106,7 @@ bins: m_jj: max: 65.37 mid: 63.64 - min: 61.910000000000004 + min: 6.19100000e+01 - abs_eta_1: max: 0.9 mid: 0.6 @@ -118,7 +118,7 @@ bins: m_jj: max: 77.38 mid: 75.32 - min: 73.25999999999999 + min: 7.32600000e+01 - abs_eta_1: max: 0.9 mid: 0.6 @@ -130,7 +130,7 @@ bins: m_jj: max: 92.17 mid: 89.66 - min: 87.14999999999999 + min: 8.71500000e+01 - abs_eta_1: max: 0.9 mid: 0.6 @@ -142,4 +142,4 @@ bins: m_jj: max: 108.53 mid: 105.63 - min: 102.72999999999999 + min: 1.02730000e+02 diff --git a/nnpdf_data/nnpdf_data/commondata/STAR-2013_2JET_510GEV/kinematics_B.yaml b/nnpdf_data/nnpdf_data/commondata/STAR-2013_2JET_510GEV/kinematics_B.yaml index d38da4d369..35a3209377 100644 --- a/nnpdf_data/nnpdf_data/commondata/STAR-2013_2JET_510GEV/kinematics_B.yaml +++ b/nnpdf_data/nnpdf_data/commondata/STAR-2013_2JET_510GEV/kinematics_B.yaml @@ -22,7 +22,7 @@ bins: m_jj: max: 19.31 mid: 18.48 - min: 17.650000000000002 + min: 1.76500000e+01 - abs_eta_1: max: 0.3 mid: 0.15 @@ -44,7 +44,7 @@ bins: mid: 0.6 min: 0.3 m_jj: - max: 27.580000000000002 + max: 2.75800000e+01 mid: 26.67 min: 25.76 - abs_eta_1: @@ -58,7 +58,7 @@ bins: m_jj: max: 33.15 mid: 32.16 - min: 31.169999999999998 + min: 3.11700000e+01 - abs_eta_1: max: 0.3 mid: 0.15 @@ -68,7 +68,7 @@ bins: mid: 0.6 min: 0.3 m_jj: - max: 39.760000000000005 + max: 3.97600000e+01 mid: 38.59 min: 37.42 - abs_eta_1: @@ -80,7 +80,7 @@ bins: mid: 0.6 min: 0.3 m_jj: - max: 47.06999999999999 + max: 4.70700000e+01 mid: 45.66 min: 44.25 - abs_eta_1: @@ -94,7 +94,7 @@ bins: m_jj: max: 56.0 mid: 54.49 - min: 52.980000000000004 + min: 5.29800000e+01 - abs_eta_1: max: 0.3 mid: 0.15 @@ -106,7 +106,7 @@ bins: m_jj: max: 66.77 mid: 65.02 - min: 63.269999999999996 + min: 6.32700000e+01 - abs_eta_1: max: 0.3 mid: 0.15 @@ -116,7 +116,7 @@ bins: mid: 0.6 min: 0.3 m_jj: - max: 79.22999999999999 + max: 7.92300000e+01 mid: 77.16 min: 75.09 - abs_eta_1: @@ -128,7 +128,7 @@ bins: mid: 0.6 min: 0.3 m_jj: - max: 93.89999999999999 + max: 9.39000000e+01 mid: 91.33 min: 88.76 - abs_eta_1: diff --git a/nnpdf_data/nnpdf_data/commondata/STAR-2013_2JET_510GEV/kinematics_C.yaml b/nnpdf_data/nnpdf_data/commondata/STAR-2013_2JET_510GEV/kinematics_C.yaml index c62299f9ff..92f2dcf17d 100644 --- a/nnpdf_data/nnpdf_data/commondata/STAR-2013_2JET_510GEV/kinematics_C.yaml +++ b/nnpdf_data/nnpdf_data/commondata/STAR-2013_2JET_510GEV/kinematics_C.yaml @@ -20,7 +20,7 @@ bins: mid: 0.15 min: 0.0 m_jj: - max: 19.889999999999997 + max: 1.98900000e+01 mid: 18.9 min: 17.91 - abs_eta_1: @@ -32,7 +32,7 @@ bins: mid: 0.15 min: 0.0 m_jj: - max: 23.259999999999998 + max: 2.32600000e+01 mid: 22.24 min: 21.22 - abs_eta_1: @@ -56,7 +56,7 @@ bins: mid: 0.15 min: 0.0 m_jj: - max: 34.120000000000005 + max: 3.41200000e+01 mid: 33.03 min: 31.94 - abs_eta_1: @@ -104,7 +104,7 @@ bins: mid: 0.15 min: 0.0 m_jj: - max: 68.32000000000001 + max: 6.83200000e+01 mid: 66.39 min: 64.46 - abs_eta_1: diff --git a/nnpdf_data/nnpdf_data/commondata/STAR-2013_2JET_510GEV/kinematics_D.yaml b/nnpdf_data/nnpdf_data/commondata/STAR-2013_2JET_510GEV/kinematics_D.yaml index fed9c68a44..bd4e010530 100644 --- a/nnpdf_data/nnpdf_data/commondata/STAR-2013_2JET_510GEV/kinematics_D.yaml +++ b/nnpdf_data/nnpdf_data/commondata/STAR-2013_2JET_510GEV/kinematics_D.yaml @@ -8,7 +8,7 @@ bins: mid: 0.6 min: 0.3 m_jj: - max: 19.349999999999998 + max: 1.93500000e+01 mid: 18.2 min: 17.05 - abs_eta_1: @@ -22,7 +22,7 @@ bins: m_jj: max: 22.71 mid: 21.67 - min: 20.630000000000003 + min: 2.06300000e+01 - abs_eta_1: max: 0.9 mid: 0.6 @@ -34,7 +34,7 @@ bins: m_jj: max: 27.16 mid: 26.12 - min: 25.080000000000002 + min: 2.50800000e+01 - abs_eta_1: max: 0.9 mid: 0.6 @@ -44,9 +44,9 @@ bins: mid: 0.6 min: 0.3 m_jj: - max: 32.440000000000005 + max: 3.24400000e+01 mid: 31.42 - min: 30.400000000000002 + min: 3.04000000e+01 - abs_eta_1: max: 0.9 mid: 0.6 @@ -104,7 +104,7 @@ bins: mid: 0.6 min: 0.3 m_jj: - max: 77.78999999999999 + max: 7.77900000e+01 mid: 75.52 min: 73.25 - abs_eta_1: @@ -118,7 +118,7 @@ bins: m_jj: max: 92.3 mid: 89.6 - min: 86.89999999999999 + min: 8.69000000e+01 - abs_eta_1: max: 0.9 mid: 0.6 @@ -130,7 +130,7 @@ bins: m_jj: max: 109.83 mid: 106.63 - min: 103.42999999999999 + min: 1.03430000e+02 - abs_eta_1: max: 0.9 mid: 0.6 @@ -142,4 +142,4 @@ bins: m_jj: max: 130.99 mid: 127.17 - min: 123.35000000000001 + min: 1.23350000e+02 diff --git a/nnpdf_data/nnpdf_data/commondata/STAR-2013_2JET_510GEV/uncertainties_A.yaml b/nnpdf_data/nnpdf_data/commondata/STAR-2013_2JET_510GEV/uncertainties_A.yaml index 21020adf94..bf79273f28 100644 --- a/nnpdf_data/nnpdf_data/commondata/STAR-2013_2JET_510GEV/uncertainties_A.yaml +++ b/nnpdf_data/nnpdf_data/commondata/STAR-2013_2JET_510GEV/uncertainties_A.yaml @@ -260,783 +260,783 @@ definitions: treatment: ADD type: STAR2013JETunc62 bins: -- pol: 0.00035072 +- pol: 3.50720000e-04 lumi: 0.00047 - sys_0: 1.6714867251536542e-05 - sys_1: -1.9697169024563068e-05 - sys_2: -1.010421365608584e-05 - sys_3: -1.2746064055782454e-05 - sys_4: 2.5049610259427122e-05 - sys_5: 3.724270341158771e-05 - sys_6: -2.7059424499955034e-05 - sys_7: 1.0808096731856809e-05 - sys_8: -3.7070637283619636e-05 - sys_9: 4.349709208212938e-05 - sys_10: -9.276971501891204e-05 - sys_11: -6.549168043003247e-05 - sys_12: -5.831229768870269e-05 - sys_13: -0.0001678954740481765 - sys_14: -0.0002454681768632715 - sys_15: -0.0002757346263839963 - sys_16: 7.709443879720645e-05 - sys_17: -0.0007131344932908124 - sys_18: -0.0009731350465144748 - sys_19: -0.005920508384835386 - sys_20: 0.0011109324008875582 - sys_21: 0.0006590246446946419 - sys_22: -0.0004349251890638496 - sys_23: 0.00017285854432128752 - sys_24: -5.701804580038649e-05 - sys_25: -6.030328832513235e-07 - sys_26: -3.4638717687115963e-05 - sys_27: -8.304271457101394e-05 - sys_28: -4.655866316754662e-05 - sys_29: -6.146214426295808e-05 - sys_30: -6.3090884938785146e-06 - sys_31: 5.0130153321971434e-05 - sys_32: 6.55093269590113e-05 - sys_33: -1.1919418866230575e-05 - sys_34: -2.7915793127758835e-06 - sys_35: -3.3646777912457853e-08 - sys_36: 8.63749689700465e-07 - sys_37: 1.108398879595191e-05 - sys_38: 1.1583711141540548e-05 - sys_39: 2.2341218586976392e-05 - sys_40: 8.135718470477791e-06 - sys_41: -2.7789334182121886e-06 - sys_42: -1.6902005779176232e-05 - sys_43: -3.971090337384395e-05 - sys_44: -2.2324906960029065e-06 - sys_45: -1.5236463348976242e-06 - sys_46: 3.4417480744522467e-06 - sys_47: 6.3098766691815025e-06 - sys_48: 5.677996062424474e-07 - sys_49: 2.762038476063361e-05 - sys_50: -1.1437928188749564e-05 - sys_51: 7.394939009897081e-07 - sys_52: -2.201294549720551e-05 - sys_53: 7.894977373151509e-06 - sys_54: -1.8472210047783893e-05 - sys_55: -4.771632139803753e-06 - sys_56: -1.579800228752282e-05 - sys_57: -6.825820682240654e-06 - sys_58: -2.470267957444148e-06 - sys_59: -2.042124997939777e-06 - sys_60: -2.820239143823526e-06 - sys_61: -2.9844175809627766e-06 - sys_62: 1.270792356305357e-05 + sys_0: 1.67148673e-05 + sys_1: -1.96971690e-05 + sys_2: -1.01042137e-05 + sys_3: -1.27460641e-05 + sys_4: 2.50496103e-05 + sys_5: 3.72427034e-05 + sys_6: -2.70594245e-05 + sys_7: 1.08080967e-05 + sys_8: -3.70706373e-05 + sys_9: 4.34970921e-05 + sys_10: -9.27697150e-05 + sys_11: -6.54916804e-05 + sys_12: -5.83122977e-05 + sys_13: -1.67895474e-04 + sys_14: -2.45468177e-04 + sys_15: -2.75734626e-04 + sys_16: 7.70944388e-05 + sys_17: -7.13134493e-04 + sys_18: -9.73135047e-04 + sys_19: -5.92050838e-03 + sys_20: 1.11093240e-03 + sys_21: 6.59024645e-04 + sys_22: -4.34925189e-04 + sys_23: 1.72858544e-04 + sys_24: -5.70180458e-05 + sys_25: -6.03032883e-07 + sys_26: -3.46387177e-05 + sys_27: -8.30427146e-05 + sys_28: -4.65586632e-05 + sys_29: -6.14621443e-05 + sys_30: -6.30908849e-06 + sys_31: 5.01301533e-05 + sys_32: 6.55093270e-05 + sys_33: -1.19194189e-05 + sys_34: -2.79157931e-06 + sys_35: -3.36467779e-08 + sys_36: 8.63749690e-07 + sys_37: 1.10839888e-05 + sys_38: 1.15837111e-05 + sys_39: 2.23412186e-05 + sys_40: 8.13571847e-06 + sys_41: -2.77893342e-06 + sys_42: -1.69020058e-05 + sys_43: -3.97109034e-05 + sys_44: -2.23249070e-06 + sys_45: -1.52364633e-06 + sys_46: 3.44174807e-06 + sys_47: 6.30987667e-06 + sys_48: 5.67799606e-07 + sys_49: 2.76203848e-05 + sys_50: -1.14379282e-05 + sys_51: 7.39493901e-07 + sys_52: -2.20129455e-05 + sys_53: 7.89497737e-06 + sys_54: -1.84722100e-05 + sys_55: -4.77163214e-06 + sys_56: -1.57980023e-05 + sys_57: -6.82582068e-06 + sys_58: -2.47026796e-06 + sys_59: -2.04212500e-06 + sys_60: -2.82023914e-06 + sys_61: -2.98441758e-06 + sys_62: 1.27079236e-05 - pol: 7.04e-06 lumi: 0.00047 - sys_0: 3.753604707472954e-05 - sys_1: -1.4537478153461532e-05 - sys_2: -1.6419587478046905e-05 - sys_3: -1.8060547764491067e-05 - sys_4: 5.9896043010498406e-05 - sys_5: 3.260556348840293e-05 - sys_6: -4.199119761188595e-05 - sys_7: 1.8373390653303663e-05 - sys_8: -5.5397113809269034e-05 - sys_9: 8.855337160751962e-05 - sys_10: -7.701893174732472e-05 - sys_11: -8.253201507729093e-05 - sys_12: -5.9803657072004354e-05 - sys_13: -0.00019378741157360073 - sys_14: -0.00021222363443035576 - sys_15: -0.00010137437128763584 - sys_16: 4.2889369944501115e-05 - sys_17: -0.00022622240852291243 - sys_18: -0.0001322632402974858 - sys_19: -0.00010908732138341986 - sys_20: -0.00021309040791941944 - sys_21: -0.0003611640863876949 - sys_22: 0.00035512369625881123 - sys_23: -0.00032377837089966714 - sys_24: 2.6847536177547286e-05 - sys_25: -0.00025195683521423535 - sys_26: 0.00016438852546139403 - sys_27: 0.000385741767015464 - sys_28: 0.00039888114667256766 - sys_29: 0.00012701186388056407 - sys_30: -0.0001613808369666489 - sys_31: -0.0004146551685299072 - sys_32: -0.0007993545734745363 - sys_33: 0.0005403424741243631 - sys_34: -2.7779810901819017e-05 - sys_35: -8.885441823715833e-07 - sys_36: 1.0346811031639365e-05 - sys_37: 0.000533155660317132 - sys_38: -0.0008603255769397525 - sys_39: -0.00026597638745935894 - sys_40: -0.00041604178878563395 - sys_41: 0.0017618610727783836 - sys_42: -0.00015532209726486898 - sys_43: -0.00026808795087722507 - sys_44: -1.3843571286476214e-05 - sys_45: -9.094741858158318e-06 - sys_46: 2.228128191008156e-05 - sys_47: 4.445487099770346e-05 - sys_48: 4.458606094069697e-05 - sys_49: 0.0014367270763027211 - sys_50: -8.444828765139603e-05 - sys_51: -0.00021169417915043267 - sys_52: -1.4267637034057543e-05 - sys_53: 0.00017418247270574637 - sys_54: -0.00021022065955214055 - sys_55: -3.2981156484952907e-05 - sys_56: -0.00021351761243413632 - sys_57: -0.00011174447610213655 - sys_58: 2.523085873835537e-05 - sys_59: -5.5056479921964646e-05 - sys_60: -6.642439229064642e-05 - sys_61: 3.7291017712465e-05 - sys_62: 6.109889171633141e-05 -- pol: 0.0001056 + sys_0: 3.75360471e-05 + sys_1: -1.45374782e-05 + sys_2: -1.64195875e-05 + sys_3: -1.80605478e-05 + sys_4: 5.98960430e-05 + sys_5: 3.26055635e-05 + sys_6: -4.19911976e-05 + sys_7: 1.83733907e-05 + sys_8: -5.53971138e-05 + sys_9: 8.85533716e-05 + sys_10: -7.70189317e-05 + sys_11: -8.25320151e-05 + sys_12: -5.98036571e-05 + sys_13: -1.93787412e-04 + sys_14: -2.12223634e-04 + sys_15: -1.01374371e-04 + sys_16: 4.28893699e-05 + sys_17: -2.26222409e-04 + sys_18: -1.32263240e-04 + sys_19: -1.09087321e-04 + sys_20: -2.13090408e-04 + sys_21: -3.61164086e-04 + sys_22: 3.55123696e-04 + sys_23: -3.23778371e-04 + sys_24: 2.68475362e-05 + sys_25: -2.51956835e-04 + sys_26: 1.64388525e-04 + sys_27: 3.85741767e-04 + sys_28: 3.98881147e-04 + sys_29: 1.27011864e-04 + sys_30: -1.61380837e-04 + sys_31: -4.14655169e-04 + sys_32: -7.99354573e-04 + sys_33: 5.40342474e-04 + sys_34: -2.77798109e-05 + sys_35: -8.88544182e-07 + sys_36: 1.03468110e-05 + sys_37: 5.33155660e-04 + sys_38: -8.60325577e-04 + sys_39: -2.65976387e-04 + sys_40: -4.16041789e-04 + sys_41: 1.76186107e-03 + sys_42: -1.55322097e-04 + sys_43: -2.68087951e-04 + sys_44: -1.38435713e-05 + sys_45: -9.09474186e-06 + sys_46: 2.22812819e-05 + sys_47: 4.44548710e-05 + sys_48: 4.45860609e-05 + sys_49: 1.43672708e-03 + sys_50: -8.44482877e-05 + sys_51: -2.11694179e-04 + sys_52: -1.42676370e-05 + sys_53: 1.74182473e-04 + sys_54: -2.10220660e-04 + sys_55: -3.29811565e-05 + sys_56: -2.13517612e-04 + sys_57: -1.11744476e-04 + sys_58: 2.52308587e-05 + sys_59: -5.50564799e-05 + sys_60: -6.64243923e-05 + sys_61: 3.72910177e-05 + sys_62: 6.10988917e-05 +- pol: 1.05600000e-04 lumi: 0.00047 - sys_0: 9.639113621523742e-06 - sys_1: -5.646454025019942e-06 - sys_2: -9.929843572623726e-06 - sys_3: -6.984035232446947e-06 - sys_4: 1.4815800007166261e-05 - sys_5: 1.1919944504016716e-05 - sys_6: -2.1276886501059485e-05 - sys_7: 5.054540366495724e-06 - sys_8: -1.870981629280105e-05 - sys_9: 2.1552120767874345e-05 - sys_10: -2.840520352452258e-05 - sys_11: -3.4023288809524916e-05 - sys_12: -2.9094614027779935e-05 - sys_13: -4.92584097943831e-05 - sys_14: -5.9600724232063045e-05 - sys_15: -4.3464086587633354e-05 - sys_16: 1.8942329659323598e-05 - sys_17: -9.419553029434548e-05 - sys_18: -5.6028315700762034e-05 - sys_19: -6.611196278189921e-05 - sys_20: -3.625382411363936e-05 - sys_21: -0.0001413916845781397 - sys_22: 9.35738995660229e-05 - sys_23: -9.394145427541252e-05 - sys_24: -1.169152195968395e-05 - sys_25: -4.5014781125111906e-05 - sys_26: 3.185017996541727e-05 - sys_27: 0.00011931734027537336 - sys_28: 4.726533600847278e-05 - sys_29: 6.0976888510461535e-05 - sys_30: -2.217547391804268e-05 - sys_31: -0.00018871326956568653 - sys_32: -0.00028013570612498253 - sys_33: 0.00015445242653340283 - sys_34: -9.68177116918166e-06 - sys_35: -7.219398431057135e-06 - sys_36: 8.696964063597476e-06 - sys_37: 7.663444268221399e-05 - sys_38: -0.00015226998858920872 - sys_39: -0.00011772496507776958 - sys_40: -2.9311436576356976e-05 - sys_41: 0.00025655262727378614 - sys_42: -1.916012823489688e-05 - sys_43: 0.00011303764468135604 - sys_44: 3.715516382933567e-05 - sys_45: 3.6457261205940263e-06 - sys_46: -3.6156617715931036e-05 - sys_47: 6.981443838683528e-05 - sys_48: 5.3284915611574264e-05 - sys_49: -0.0005280496560939855 - sys_50: 0.0004709705546298067 - sys_51: -0.0014480276448114303 - sys_52: -0.0008047347635492148 - sys_53: -0.0016439797573631519 - sys_54: -0.00018731175105596987 - sys_55: 8.363489909483536e-05 - sys_56: 0.00011041387577851778 - sys_57: -2.6482217825560718e-05 - sys_58: -2.7377610780444774e-05 - sys_59: 0.0001412714766918448 - sys_60: 5.642886196762411e-05 - sys_61: -3.509793046327669e-05 - sys_62: -9.586040075921345e-05 -- pol: 8.256e-05 + sys_0: 9.63911362e-06 + sys_1: -5.64645403e-06 + sys_2: -9.92984357e-06 + sys_3: -6.98403523e-06 + sys_4: 1.48158000e-05 + sys_5: 1.19199445e-05 + sys_6: -2.12768865e-05 + sys_7: 5.05454037e-06 + sys_8: -1.87098163e-05 + sys_9: 2.15521208e-05 + sys_10: -2.84052035e-05 + sys_11: -3.40232888e-05 + sys_12: -2.90946140e-05 + sys_13: -4.92584098e-05 + sys_14: -5.96007242e-05 + sys_15: -4.34640866e-05 + sys_16: 1.89423297e-05 + sys_17: -9.41955303e-05 + sys_18: -5.60283157e-05 + sys_19: -6.61119628e-05 + sys_20: -3.62538241e-05 + sys_21: -1.41391685e-04 + sys_22: 9.35738996e-05 + sys_23: -9.39414543e-05 + sys_24: -1.16915220e-05 + sys_25: -4.50147811e-05 + sys_26: 3.18501800e-05 + sys_27: 1.19317340e-04 + sys_28: 4.72653360e-05 + sys_29: 6.09768885e-05 + sys_30: -2.21754739e-05 + sys_31: -1.88713270e-04 + sys_32: -2.80135706e-04 + sys_33: 1.54452427e-04 + sys_34: -9.68177117e-06 + sys_35: -7.21939843e-06 + sys_36: 8.69696406e-06 + sys_37: 7.66344427e-05 + sys_38: -1.52269989e-04 + sys_39: -1.17724965e-04 + sys_40: -2.93114366e-05 + sys_41: 2.56552627e-04 + sys_42: -1.91601282e-05 + sys_43: 1.13037645e-04 + sys_44: 3.71551638e-05 + sys_45: 3.64572612e-06 + sys_46: -3.61566177e-05 + sys_47: 6.98144384e-05 + sys_48: 5.32849156e-05 + sys_49: -5.28049656e-04 + sys_50: 4.70970555e-04 + sys_51: -1.44802764e-03 + sys_52: -8.04734764e-04 + sys_53: -1.64397976e-03 + sys_54: -1.87311751e-04 + sys_55: 8.36348991e-05 + sys_56: 1.10413876e-04 + sys_57: -2.64822178e-05 + sys_58: -2.73776108e-05 + sys_59: 1.41271477e-04 + sys_60: 5.64288620e-05 + sys_61: -3.50979305e-05 + sys_62: -9.58604008e-05 +- pol: 8.25600000e-05 lumi: 0.00047 - sys_0: 1.4953282761122731e-05 - sys_1: -1.4422700023695106e-05 - sys_2: -1.031210650516862e-05 - sys_3: -9.083996259681728e-06 - sys_4: 2.4930409958458823e-05 - sys_5: 2.7875834844154968e-05 - sys_6: -2.5034569364033325e-05 - sys_7: 8.101219529031261e-06 - sys_8: -2.8459271482158324e-05 - sys_9: 3.3489964741335556e-05 - sys_10: -5.98860555025065e-05 - sys_11: -4.202349063735165e-05 - sys_12: -3.695883947595734e-05 - sys_13: -8.04740972026722e-05 - sys_14: -9.629527255893817e-05 - sys_15: -9.150048809894137e-05 - sys_16: 2.449710475031312e-05 - sys_17: -0.0001243433135508336 - sys_18: -7.734389946566012e-05 - sys_19: -8.040217636425463e-05 - sys_20: -6.624148367902257e-05 - sys_21: -0.0002258748350041641 - sys_22: 0.0002056343600165615 - sys_23: -0.0001312854713028219 - sys_24: 3.64285865254159e-05 - sys_25: -1.995239376706434e-05 - sys_26: 4.7752484795419615e-05 - sys_27: 0.00014620594588283644 - sys_28: 8.650202212395912e-05 - sys_29: 0.00012782245824191223 - sys_30: 9.137232812985823e-06 - sys_31: -0.00018828241080392152 - sys_32: -0.0003394546759746146 - sys_33: 0.0001024255053583078 - sys_34: 9.422629483212894e-06 - sys_35: -6.810201742785403e-06 - sys_36: 6.605300606599256e-06 - sys_37: -2.4017599280964192e-05 - sys_38: -0.00012398352590740935 - sys_39: -0.0001620092701363518 - sys_40: -5.561443557730238e-05 - sys_41: 0.00013316657581945675 - sys_42: 0.00010132007981337403 - sys_43: 0.000346643924455378 - sys_44: 1.2840600750422022e-06 - sys_45: -1.415823327127067e-05 - sys_46: 7.244772046638684e-06 - sys_47: 0.00011514355348341789 - sys_48: 5.377236698076374e-05 - sys_49: -0.0003782711742069613 - sys_50: 1.727970212795518e-05 - sys_51: -8.488925055719487e-05 - sys_52: 5.854382141482232e-05 - sys_53: 0.00012562426624058165 - sys_54: 0.0007196867086935159 - sys_55: 5.233116222053629e-05 - sys_56: -0.00022499275134530783 - sys_57: -0.00018915105935643416 - sys_58: -0.0001792661816155936 - sys_59: -0.00038167405310119985 - sys_60: 0.0008854026609531217 - sys_61: -0.001148399762256634 - sys_62: 0.0013240958320458384 -- pol: 0.00015872 + sys_0: 1.49532828e-05 + sys_1: -1.44227000e-05 + sys_2: -1.03121065e-05 + sys_3: -9.08399626e-06 + sys_4: 2.49304100e-05 + sys_5: 2.78758348e-05 + sys_6: -2.50345694e-05 + sys_7: 8.10121953e-06 + sys_8: -2.84592715e-05 + sys_9: 3.34899647e-05 + sys_10: -5.98860555e-05 + sys_11: -4.20234906e-05 + sys_12: -3.69588395e-05 + sys_13: -8.04740972e-05 + sys_14: -9.62952726e-05 + sys_15: -9.15004881e-05 + sys_16: 2.44971048e-05 + sys_17: -1.24343314e-04 + sys_18: -7.73438995e-05 + sys_19: -8.04021764e-05 + sys_20: -6.62414837e-05 + sys_21: -2.25874835e-04 + sys_22: 2.05634360e-04 + sys_23: -1.31285471e-04 + sys_24: 3.64285865e-05 + sys_25: -1.99523938e-05 + sys_26: 4.77524848e-05 + sys_27: 1.46205946e-04 + sys_28: 8.65020221e-05 + sys_29: 1.27822458e-04 + sys_30: 9.13723281e-06 + sys_31: -1.88282411e-04 + sys_32: -3.39454676e-04 + sys_33: 1.02425505e-04 + sys_34: 9.42262948e-06 + sys_35: -6.81020174e-06 + sys_36: 6.60530061e-06 + sys_37: -2.40175993e-05 + sys_38: -1.23983526e-04 + sys_39: -1.62009270e-04 + sys_40: -5.56144356e-05 + sys_41: 1.33166576e-04 + sys_42: 1.01320080e-04 + sys_43: 3.46643924e-04 + sys_44: 1.28406008e-06 + sys_45: -1.41582333e-05 + sys_46: 7.24477205e-06 + sys_47: 1.15143553e-04 + sys_48: 5.37723670e-05 + sys_49: -3.78271174e-04 + sys_50: 1.72797021e-05 + sys_51: -8.48892506e-05 + sys_52: 5.85438214e-05 + sys_53: 1.25624266e-04 + sys_54: 7.19686709e-04 + sys_55: 5.23311622e-05 + sys_56: -2.24992751e-04 + sys_57: -1.89151059e-04 + sys_58: -1.79266182e-04 + sys_59: -3.81674053e-04 + sys_60: 8.85402661e-04 + sys_61: -1.14839976e-03 + sys_62: 1.32409583e-03 +- pol: 1.58720000e-04 lumi: 0.00047 - sys_0: 1.3368369591931781e-05 - sys_1: -1.3304380652413224e-05 - sys_2: -1.1166611075175678e-05 - sys_3: -9.81759257963125e-06 - sys_4: 2.4196733303497507e-05 - sys_5: 2.7772832678650814e-05 - sys_6: -2.69477559665334e-05 - sys_7: 8.47703953603059e-06 - sys_8: -2.845765383647769e-05 - sys_9: 3.344000030606079e-05 - sys_10: -5.6672584694316085e-05 - sys_11: -4.525372524714771e-05 - sys_12: -3.8767951727457426e-05 - sys_13: -7.962683488504509e-05 - sys_14: -9.54246638636894e-05 - sys_15: -8.833598397012015e-05 - sys_16: 2.5226271410961985e-05 - sys_17: -0.00012852732994319242 - sys_18: -7.959169738685854e-05 - sys_19: -7.901267656821761e-05 - sys_20: -6.505213132873776e-05 - sys_21: -0.00023095342242439827 - sys_22: 0.0002001756501864537 - sys_23: -0.00013533988173335143 - sys_24: 2.726480011806469e-05 - sys_25: -2.596152682498695e-05 - sys_26: 4.868914053888213e-05 - sys_27: 0.00015628089328706637 - sys_28: 8.282833993885818e-05 - sys_29: 0.00013280706194855114 - sys_30: 1.0210506473094658e-05 - sys_31: -0.00022406670517245196 - sys_32: -0.0003981706205111968 - sys_33: 0.00013570124103759817 - sys_34: 3.0276388548441715e-05 - sys_35: -1.493760569514728e-06 - sys_36: -8.976136206214422e-06 - sys_37: -1.8002054556169595e-05 - sys_38: -0.0001572529676177184 - sys_39: -0.0001967790656672641 - sys_40: -5.3113217444144163e-05 - sys_41: 0.0001665218361390778 - sys_42: 0.00011215072350611292 - sys_43: 0.0004591032837336777 - sys_44: 1.4795930222691517e-05 - sys_45: -2.6130704587919688e-05 - sys_46: -7.202073429338767e-06 - sys_47: 8.737137963468346e-05 - sys_48: 2.090801082353836e-05 - sys_49: -0.0009690669043740616 - sys_50: -1.5419732211091952e-05 - sys_51: -0.00045923069102127436 - sys_52: 0.00030580185151651856 - sys_53: 0.0009132192530106743 - sys_54: -0.0018481775152794093 - sys_55: 2.5742748637086336e-05 - sys_56: -5.613686970797108e-05 - sys_57: -9.333982835985577e-05 - sys_58: -7.395700470176882e-05 - sys_59: 0.00011800978872186966 - sys_60: 5.775284416297898e-05 - sys_61: -0.00018985343087138284 - sys_62: 0.00011131540388972006 -- pol: 0.00037184 + sys_0: 1.33683696e-05 + sys_1: -1.33043807e-05 + sys_2: -1.11666111e-05 + sys_3: -9.81759258e-06 + sys_4: 2.41967333e-05 + sys_5: 2.77728327e-05 + sys_6: -2.69477560e-05 + sys_7: 8.47703954e-06 + sys_8: -2.84576538e-05 + sys_9: 3.34400003e-05 + sys_10: -5.66725847e-05 + sys_11: -4.52537252e-05 + sys_12: -3.87679517e-05 + sys_13: -7.96268349e-05 + sys_14: -9.54246639e-05 + sys_15: -8.83359840e-05 + sys_16: 2.52262714e-05 + sys_17: -1.28527330e-04 + sys_18: -7.95916974e-05 + sys_19: -7.90126766e-05 + sys_20: -6.50521313e-05 + sys_21: -2.30953422e-04 + sys_22: 2.00175650e-04 + sys_23: -1.35339882e-04 + sys_24: 2.72648001e-05 + sys_25: -2.59615268e-05 + sys_26: 4.86891405e-05 + sys_27: 1.56280893e-04 + sys_28: 8.28283399e-05 + sys_29: 1.32807062e-04 + sys_30: 1.02105065e-05 + sys_31: -2.24066705e-04 + sys_32: -3.98170621e-04 + sys_33: 1.35701241e-04 + sys_34: 3.02763885e-05 + sys_35: -1.49376057e-06 + sys_36: -8.97613621e-06 + sys_37: -1.80020546e-05 + sys_38: -1.57252968e-04 + sys_39: -1.96779066e-04 + sys_40: -5.31132174e-05 + sys_41: 1.66521836e-04 + sys_42: 1.12150724e-04 + sys_43: 4.59103284e-04 + sys_44: 1.47959302e-05 + sys_45: -2.61307046e-05 + sys_46: -7.20207343e-06 + sys_47: 8.73713796e-05 + sys_48: 2.09080108e-05 + sys_49: -9.69066904e-04 + sys_50: -1.54197322e-05 + sys_51: -4.59230691e-04 + sys_52: 3.05801852e-04 + sys_53: 9.13219253e-04 + sys_54: -1.84817752e-03 + sys_55: 2.57427486e-05 + sys_56: -5.61368697e-05 + sys_57: -9.33398284e-05 + sys_58: -7.39570047e-05 + sys_59: 1.18009789e-04 + sys_60: 5.77528442e-05 + sys_61: -1.89853431e-04 + sys_62: 1.11315404e-04 +- pol: 3.71840000e-04 lumi: 0.00047 - sys_0: 1.6154165773266372e-05 - sys_1: -1.3341384769805552e-05 - sys_2: -1.3013951530441968e-05 - sys_3: -1.201972096896838e-05 - sys_4: 2.2815092928283555e-05 - sys_5: 2.4840853063155237e-05 - sys_6: -2.707446348140495e-05 - sys_7: 7.273791092937889e-06 - sys_8: -2.9780067750363563e-05 - sys_9: 3.532503286453586e-05 - sys_10: -5.6105524470108516e-05 - sys_11: -4.868309008069531e-05 - sys_12: -4.078857305119048e-05 - sys_13: -8.308471205677055e-05 - sys_14: -0.00010020067130018869 - sys_15: -8.825190269217912e-05 - sys_16: 2.8865235821549458e-05 - sys_17: -0.00014240344138665914 - sys_18: -9.017761792773562e-05 - sys_19: -8.622484446863928e-05 - sys_20: -7.45025896086232e-05 - sys_21: -0.00026756216950623375 - sys_22: 0.00022864900797113947 - sys_23: -0.00017061914354566055 - sys_24: 1.7453369719677508e-05 - sys_25: -4.731528461981069e-05 - sys_26: 6.677041458246925e-05 - sys_27: 0.00023535436235578113 - sys_28: 0.00010384015303960776 - sys_29: 0.00020263199028318108 - sys_30: 1.4843640627773298e-05 - sys_31: -0.0005115670542192302 - sys_32: -0.0015512633301571076 - sys_33: 0.00110298554696928 - sys_34: 3.2688343200719074e-05 - sys_35: 5.4491470438650414e-06 - sys_36: -1.7383557093407876e-05 - sys_37: 0.0004298950298769317 - sys_38: 0.001879119234662005 - sys_39: 0.0012878421485857476 - sys_40: 4.02946663610326e-05 - sys_41: -0.000406393784437647 - sys_42: -0.00015598717164407272 - sys_43: -0.0003771702928361019 - sys_44: 1.4150112626146768e-05 - sys_45: -2.5558423802399148e-05 - sys_46: -8.6312620075503e-06 - sys_47: 4.2609583598380753e-05 - sys_48: 5.7444942392242915e-06 - sys_49: 0.0001946311058005864 - sys_50: 1.1211560125111994e-05 - sys_51: 3.605871275319027e-05 - sys_52: -5.865468791693393e-06 - sys_53: -2.440205105408693e-05 - sys_54: -9.131554587294663e-05 - sys_55: 9.161361157692501e-07 - sys_56: -2.9929107421214793e-06 - sys_57: -3.906436482709221e-05 - sys_58: -3.162344855651247e-05 - sys_59: 3.246814823451902e-05 - sys_60: 2.8436910923266098e-05 - sys_61: -3.2259334630803424e-05 - sys_62: 1.4713857513553009e-05 -- pol: 0.00042624000000000004 + sys_0: 1.61541658e-05 + sys_1: -1.33413848e-05 + sys_2: -1.30139515e-05 + sys_3: -1.20197210e-05 + sys_4: 2.28150929e-05 + sys_5: 2.48408531e-05 + sys_6: -2.70744635e-05 + sys_7: 7.27379109e-06 + sys_8: -2.97800678e-05 + sys_9: 3.53250329e-05 + sys_10: -5.61055245e-05 + sys_11: -4.86830901e-05 + sys_12: -4.07885731e-05 + sys_13: -8.30847121e-05 + sys_14: -1.00200671e-04 + sys_15: -8.82519027e-05 + sys_16: 2.88652358e-05 + sys_17: -1.42403441e-04 + sys_18: -9.01776179e-05 + sys_19: -8.62248445e-05 + sys_20: -7.45025896e-05 + sys_21: -2.67562170e-04 + sys_22: 2.28649008e-04 + sys_23: -1.70619144e-04 + sys_24: 1.74533697e-05 + sys_25: -4.73152846e-05 + sys_26: 6.67704146e-05 + sys_27: 2.35354362e-04 + sys_28: 1.03840153e-04 + sys_29: 2.02631990e-04 + sys_30: 1.48436406e-05 + sys_31: -5.11567054e-04 + sys_32: -1.55126333e-03 + sys_33: 1.10298555e-03 + sys_34: 3.26883432e-05 + sys_35: 5.44914704e-06 + sys_36: -1.73835571e-05 + sys_37: 4.29895030e-04 + sys_38: 1.87911923e-03 + sys_39: 1.28784215e-03 + sys_40: 4.02946664e-05 + sys_41: -4.06393784e-04 + sys_42: -1.55987172e-04 + sys_43: -3.77170293e-04 + sys_44: 1.41501126e-05 + sys_45: -2.55584238e-05 + sys_46: -8.63126201e-06 + sys_47: 4.26095836e-05 + sys_48: 5.74449424e-06 + sys_49: 1.94631106e-04 + sys_50: 1.12115601e-05 + sys_51: 3.60587128e-05 + sys_52: -5.86546879e-06 + sys_53: -2.44020511e-05 + sys_54: -9.13155459e-05 + sys_55: 9.16136116e-07 + sys_56: -2.99291074e-06 + sys_57: -3.90643648e-05 + sys_58: -3.16234486e-05 + sys_59: 3.24681482e-05 + sys_60: 2.84369109e-05 + sys_61: -3.22593346e-05 + sys_62: 1.47138575e-05 +- pol: 4.26240000e-04 lumi: 0.00047 - sys_0: 1.4143134172743569e-05 - sys_1: -1.1655545717021049e-05 - sys_2: -1.4577835212790384e-05 - sys_3: -1.0038301910621284e-05 - sys_4: 2.5647712178311797e-05 - sys_5: 2.4621535112626956e-05 - sys_6: -3.109237399238276e-05 - sys_7: 7.864866743546035e-06 - sys_8: -3.125606490268286e-05 - sys_9: 3.655069090027219e-05 - sys_10: -6.0183603295124174e-05 - sys_11: -5.225364792798885e-05 - sys_12: -4.784708216781869e-05 - sys_13: -9.119345418007772e-05 - sys_14: -0.00010962987312183876 - sys_15: -9.61125399989413e-05 - sys_16: 3.30626543830728e-05 - sys_17: -0.00016925321232560094 - sys_18: -0.00010649793516673185 - sys_19: -9.43338776922791e-05 - sys_20: -8.445488025952372e-05 - sys_21: -0.0003155418019942209 - sys_22: 0.0002634277254012004 - sys_23: -0.00020817261823893678 - sys_24: 1.0513151408442452e-07 - sys_25: -7.216227285986887e-05 - sys_26: 0.00011052183096565915 - sys_27: 0.00037126911583002165 - sys_28: 0.00014713498014369642 - sys_29: 0.0003605424439772941 - sys_30: 4.688227320697843e-05 - sys_31: -0.003135231707096805 - sys_32: 0.001352734835292863 - sys_33: -0.0003227119057160734 - sys_34: 3.34058202722467e-05 - sys_35: 1.413706792633159e-05 - sys_36: -3.3644159142753546e-05 - sys_37: -2.4341432207763702e-05 - sys_38: 0.00017651625762462477 - sys_39: 0.00018975062414604865 - sys_40: -6.613291522213188e-05 - sys_41: -0.00013647821245892186 - sys_42: -5.24305041185361e-05 - sys_43: -0.00014292977371920237 - sys_44: 1.562459767379019e-05 - sys_45: -4.448558074430808e-05 - sys_46: -4.823180046060712e-06 - sys_47: 3.135127282749619e-05 - sys_48: 4.12687794385338e-06 - sys_49: 0.00012019514475400788 - sys_50: 9.224726636827021e-06 - sys_51: 6.300853634689636e-06 - sys_52: -1.687230960388438e-06 - sys_53: -7.400530201017035e-06 - sys_54: -5.001627219075438e-05 - sys_55: -3.985805532634233e-06 - sys_56: -2.259823710816094e-06 - sys_57: -4.1359516755843616e-05 - sys_58: -4.038806440207988e-05 - sys_59: 3.1185112815337916e-05 - sys_60: 3.6464479778014736e-05 - sys_61: -3.3242868119870392e-06 - sys_62: 8.576634439946964e-06 -- pol: 0.0007296000000000001 + sys_0: 1.41431342e-05 + sys_1: -1.16555457e-05 + sys_2: -1.45778352e-05 + sys_3: -1.00383019e-05 + sys_4: 2.56477122e-05 + sys_5: 2.46215351e-05 + sys_6: -3.10923740e-05 + sys_7: 7.86486674e-06 + sys_8: -3.12560649e-05 + sys_9: 3.65506909e-05 + sys_10: -6.01836033e-05 + sys_11: -5.22536479e-05 + sys_12: -4.78470822e-05 + sys_13: -9.11934542e-05 + sys_14: -1.09629873e-04 + sys_15: -9.61125400e-05 + sys_16: 3.30626544e-05 + sys_17: -1.69253212e-04 + sys_18: -1.06497935e-04 + sys_19: -9.43338777e-05 + sys_20: -8.44548803e-05 + sys_21: -3.15541802e-04 + sys_22: 2.63427725e-04 + sys_23: -2.08172618e-04 + sys_24: 1.05131514e-07 + sys_25: -7.21622729e-05 + sys_26: 1.10521831e-04 + sys_27: 3.71269116e-04 + sys_28: 1.47134980e-04 + sys_29: 3.60542444e-04 + sys_30: 4.68822732e-05 + sys_31: -3.13523171e-03 + sys_32: 1.35273484e-03 + sys_33: -3.22711906e-04 + sys_34: 3.34058203e-05 + sys_35: 1.41370679e-05 + sys_36: -3.36441591e-05 + sys_37: -2.43414322e-05 + sys_38: 1.76516258e-04 + sys_39: 1.89750624e-04 + sys_40: -6.61329152e-05 + sys_41: -1.36478212e-04 + sys_42: -5.24305041e-05 + sys_43: -1.42929774e-04 + sys_44: 1.56245977e-05 + sys_45: -4.44855807e-05 + sys_46: -4.82318005e-06 + sys_47: 3.13512728e-05 + sys_48: 4.12687794e-06 + sys_49: 1.20195145e-04 + sys_50: 9.22472664e-06 + sys_51: 6.30085363e-06 + sys_52: -1.68723096e-06 + sys_53: -7.40053020e-06 + sys_54: -5.00162722e-05 + sys_55: -3.98580553e-06 + sys_56: -2.25982371e-06 + sys_57: -4.13595168e-05 + sys_58: -4.03880644e-05 + sys_59: 3.11851128e-05 + sys_60: 3.64644798e-05 + sys_61: -3.32428681e-06 + sys_62: 8.57663444e-06 +- pol: 7.29600000e-04 lumi: 0.00047 - sys_0: 1.917014053054788e-05 - sys_1: -1.5898783638515104e-05 - sys_2: -1.9409570871455895e-05 - sys_3: -1.3662977967393158e-05 - sys_4: 3.529149526578308e-05 - sys_5: 2.9454934686830717e-05 - sys_6: -4.0891265131692214e-05 - sys_7: 6.702082665163187e-06 - sys_8: -4.3521776356383314e-05 - sys_9: 5.246719324063398e-05 - sys_10: -7.783085109204788e-05 - sys_11: -7.352022983835657e-05 - sys_12: -7.683195004689304e-05 - sys_13: -0.0001350918474778608 - sys_14: -0.0001630167059190749 - sys_15: -0.00014701568649844895 - sys_16: 4.20676147403996e-05 - sys_17: -0.00029658072029691213 - sys_18: -0.00020616915564261183 - sys_19: -0.000143897066157754 - sys_20: -0.0001820672873320523 - sys_21: -0.0008641004777775113 - sys_22: 0.0009196073389449249 - sys_23: -0.0015592322317149862 - sys_24: -0.004170862451926457 - sys_25: 0.0005465463735475531 - sys_26: -0.0004826674142186869 - sys_27: -0.0006120889169081339 - sys_28: -7.951606686138476e-05 - sys_29: -0.00013909868932254258 - sys_30: -1.441808556478103e-05 - sys_31: 0.00017378179230115114 - sys_32: 0.0001531574203265652 - sys_33: -5.5383453131541466e-05 - sys_34: 1.504970621813952e-05 - sys_35: 1.2061700210999487e-05 - sys_36: -3.164348550746137e-05 - sys_37: -8.96327254446447e-06 - sys_38: 3.35131623688263e-05 - sys_39: 4.5100087814577386e-05 - sys_40: -6.154263944397791e-05 - sys_41: -5.291378016683098e-05 - sys_42: -1.6754289674950177e-05 - sys_43: -4.6541427394734276e-05 - sys_44: 1.3589700079917484e-05 - sys_45: -5.1761347131422255e-05 - sys_46: 2.2712230931096147e-06 - sys_47: 1.8391498387709385e-05 - sys_48: 3.955160560220924e-06 - sys_49: 5.599942237168416e-05 - sys_50: 5.482378899313552e-06 - sys_51: -9.224643104508042e-06 - sys_52: -6.259762293922373e-07 - sys_53: 6.412766797847182e-07 - sys_54: -2.165693894658639e-05 - sys_55: -4.236601503632278e-06 - sys_56: -9.514185638556414e-06 - sys_57: -3.6641275423630074e-05 - sys_58: -5.028372352937293e-05 - sys_59: 1.9230971654674513e-05 - sys_60: 3.0082299577977074e-05 - sys_61: 4.283672670633457e-06 - sys_62: -3.586467040759892e-07 -- pol: 0.0011686399999999999 + sys_0: 1.91701405e-05 + sys_1: -1.58987836e-05 + sys_2: -1.94095709e-05 + sys_3: -1.36629780e-05 + sys_4: 3.52914953e-05 + sys_5: 2.94549347e-05 + sys_6: -4.08912651e-05 + sys_7: 6.70208267e-06 + sys_8: -4.35217764e-05 + sys_9: 5.24671932e-05 + sys_10: -7.78308511e-05 + sys_11: -7.35202298e-05 + sys_12: -7.68319500e-05 + sys_13: -1.35091847e-04 + sys_14: -1.63016706e-04 + sys_15: -1.47015686e-04 + sys_16: 4.20676147e-05 + sys_17: -2.96580720e-04 + sys_18: -2.06169156e-04 + sys_19: -1.43897066e-04 + sys_20: -1.82067287e-04 + sys_21: -8.64100478e-04 + sys_22: 9.19607339e-04 + sys_23: -1.55923223e-03 + sys_24: -4.17086245e-03 + sys_25: 5.46546374e-04 + sys_26: -4.82667414e-04 + sys_27: -6.12088917e-04 + sys_28: -7.95160669e-05 + sys_29: -1.39098689e-04 + sys_30: -1.44180856e-05 + sys_31: 1.73781792e-04 + sys_32: 1.53157420e-04 + sys_33: -5.53834531e-05 + sys_34: 1.50497062e-05 + sys_35: 1.20617002e-05 + sys_36: -3.16434855e-05 + sys_37: -8.96327254e-06 + sys_38: 3.35131624e-05 + sys_39: 4.51000878e-05 + sys_40: -6.15426394e-05 + sys_41: -5.29137802e-05 + sys_42: -1.67542897e-05 + sys_43: -4.65414274e-05 + sys_44: 1.35897001e-05 + sys_45: -5.17613471e-05 + sys_46: 2.27122309e-06 + sys_47: 1.83914984e-05 + sys_48: 3.95516056e-06 + sys_49: 5.59994224e-05 + sys_50: 5.48237890e-06 + sys_51: -9.22464310e-06 + sys_52: -6.25976229e-07 + sys_53: 6.41276680e-07 + sys_54: -2.16569389e-05 + sys_55: -4.23660150e-06 + sys_56: -9.51418564e-06 + sys_57: -3.66412754e-05 + sys_58: -5.02837235e-05 + sys_59: 1.92309717e-05 + sys_60: 3.00822996e-05 + sys_61: 4.28367267e-06 + sys_62: -3.58646704e-07 +- pol: 1.16864000e-03 lumi: 0.00047 - sys_0: 3.5152276480816104e-05 - sys_1: -2.3127635721675325e-05 - sys_2: -2.897592861123267e-05 - sys_3: -2.0517252225769798e-05 - sys_4: 5.490746838020999e-05 - sys_5: 4.888153572326478e-05 - sys_6: -7.720589772772276e-05 - sys_7: 1.3569176118255284e-05 - sys_8: -6.251588340005299e-05 - sys_9: 9.97300099403308e-05 - sys_10: -0.00015182244963307787 - sys_11: -0.00016721553355141872 - sys_12: -0.00017801021516976936 - sys_13: -0.0003585606546508881 - sys_14: -0.0004679294465497222 - sys_15: -0.00046949646463947644 - sys_16: -3.697376084254456e-05 - sys_17: -0.0059008756144961795 - sys_18: 0.0027583076339894046 - sys_19: 0.0004578553316186921 - sys_20: 0.000504637836881203 - sys_21: 0.0005787891648180797 - sys_22: -0.0002912744198068469 - sys_23: 0.0001421606996423475 - sys_24: 2.6833516566340323e-05 - sys_25: 2.2465825636827653e-05 - sys_26: -0.00015450639961992575 - sys_27: -0.00017765390086334662 - sys_28: -2.970944528009332e-05 - sys_29: -3.603776914614996e-05 - sys_30: -3.7321520848504265e-07 - sys_31: 4.837327889246176e-05 - sys_32: 4.774173697040918e-05 - sys_33: -2.2234291467913272e-05 - sys_34: 1.9884635132761855e-06 - sys_35: 5.364758833535565e-06 - sys_36: -1.7454541590708772e-05 - sys_37: -1.0139078125651384e-05 - sys_38: 6.476349540117927e-06 - sys_39: 1.7260827046582915e-05 - sys_40: -7.5754271747252e-05 - sys_41: -5.615077901421417e-05 - sys_42: -1.289705716581864e-05 - sys_43: -2.75559316593229e-05 - sys_44: 1.251264665747719e-05 - sys_45: -4.557899167963197e-05 - sys_46: 3.598707439305195e-06 - sys_47: 1.7651383641125274e-05 - sys_48: 3.909573983297505e-06 - sys_49: 5.018885106109934e-05 - sys_50: 5.751841953114733e-06 - sys_51: -1.8439404559431515e-05 - sys_52: -1.3355144224420531e-06 - sys_53: 1.7781734862275719e-06 - sys_54: -1.8992848439051583e-05 - sys_55: -4.9117244173456545e-06 - sys_56: -2.037354878529677e-05 - sys_57: -3.9049630971505416e-05 - sys_58: -6.212201623034708e-05 - sys_59: 1.3499278403651784e-05 - sys_60: 2.6421444551547358e-05 - sys_61: 3.5022740798835676e-06 - sys_62: -4.371540606762748e-06 -- pol: 0.00155584 + sys_0: 3.51522765e-05 + sys_1: -2.31276357e-05 + sys_2: -2.89759286e-05 + sys_3: -2.05172522e-05 + sys_4: 5.49074684e-05 + sys_5: 4.88815357e-05 + sys_6: -7.72058977e-05 + sys_7: 1.35691761e-05 + sys_8: -6.25158834e-05 + sys_9: 9.97300099e-05 + sys_10: -1.51822450e-04 + sys_11: -1.67215534e-04 + sys_12: -1.78010215e-04 + sys_13: -3.58560655e-04 + sys_14: -4.67929447e-04 + sys_15: -4.69496465e-04 + sys_16: -3.69737608e-05 + sys_17: -5.90087561e-03 + sys_18: 2.75830763e-03 + sys_19: 4.57855332e-04 + sys_20: 5.04637837e-04 + sys_21: 5.78789165e-04 + sys_22: -2.91274420e-04 + sys_23: 1.42160700e-04 + sys_24: 2.68335166e-05 + sys_25: 2.24658256e-05 + sys_26: -1.54506400e-04 + sys_27: -1.77653901e-04 + sys_28: -2.97094453e-05 + sys_29: -3.60377691e-05 + sys_30: -3.73215208e-07 + sys_31: 4.83732789e-05 + sys_32: 4.77417370e-05 + sys_33: -2.22342915e-05 + sys_34: 1.98846351e-06 + sys_35: 5.36475883e-06 + sys_36: -1.74545416e-05 + sys_37: -1.01390781e-05 + sys_38: 6.47634954e-06 + sys_39: 1.72608270e-05 + sys_40: -7.57542717e-05 + sys_41: -5.61507790e-05 + sys_42: -1.28970572e-05 + sys_43: -2.75559317e-05 + sys_44: 1.25126467e-05 + sys_45: -4.55789917e-05 + sys_46: 3.59870744e-06 + sys_47: 1.76513836e-05 + sys_48: 3.90957398e-06 + sys_49: 5.01888511e-05 + sys_50: 5.75184195e-06 + sys_51: -1.84394046e-05 + sys_52: -1.33551442e-06 + sys_53: 1.77817349e-06 + sys_54: -1.89928484e-05 + sys_55: -4.91172442e-06 + sys_56: -2.03735488e-05 + sys_57: -3.90496310e-05 + sys_58: -6.21220162e-05 + sys_59: 1.34992784e-05 + sys_60: 2.64214446e-05 + sys_61: 3.50227408e-06 + sys_62: -4.37154061e-06 +- pol: 1.55584000e-03 lumi: 0.00047 - sys_0: 7.59337412011452e-05 - sys_1: -4.350299877735776e-05 - sys_2: -6.0356827239713514e-05 - sys_3: -5.155115836867098e-05 - sys_4: 0.00014718036214627915 - sys_5: 0.00012062415030207478 - sys_6: -0.00024396997965703428 - sys_7: 1.3303722998571556e-05 - sys_8: -8.215996767748529e-05 - sys_9: 0.0004606324059618876 - sys_10: -0.001691958115718114 - sys_11: -0.010254757581879879 - sys_12: 0.001264326905440343 - sys_13: 0.00045866255563369415 - sys_14: 0.0003124066324611222 - sys_15: 0.0001594696780978081 - sys_16: 0.00017223686246809156 - sys_17: 0.00025326257814429104 - sys_18: 0.0001818174387235403 - sys_19: 3.399283411127429e-05 - sys_20: 0.00010129836262156346 - sys_21: 0.00015612281735494297 - sys_22: -7.504292288411505e-05 - sys_23: 3.127151065708203e-05 - sys_24: 1.7554619374380955e-05 - sys_25: -1.3170827444828847e-05 - sys_26: -0.00013484006173787225 - sys_27: -0.00011061976549523992 - sys_28: -3.782779063890187e-05 - sys_29: -1.3389646184887743e-05 - sys_30: 7.078844583247275e-06 - sys_31: 9.864455189822537e-06 - sys_32: 1.4717866238040821e-05 - sys_33: -1.059452617764229e-05 - sys_34: -2.6899814310737513e-06 - sys_35: 1.5711920996420757e-06 - sys_36: -4.4651023584780825e-06 - sys_37: -9.92471348102534e-06 - sys_38: -2.428110922453599e-06 - sys_39: 3.1254553948329952e-06 - sys_40: -6.737830318046281e-05 - sys_41: -5.527369557278214e-05 - sys_42: -1.0222374995727693e-05 - sys_43: -2.1886908268741756e-05 - sys_44: 8.119883335231914e-06 - sys_45: -2.044735306301566e-05 - sys_46: -7.38118853730898e-08 - sys_47: 1.7474979235561625e-05 - sys_48: 3.3922464326926843e-06 - sys_49: 5.056936835183729e-05 - sys_50: 6.55024535652336e-06 - sys_51: -2.3275272644016355e-05 - sys_52: -1.999065015724099e-06 - sys_53: 1.1865673416190763e-06 - sys_54: -2.236459552784483e-05 - sys_55: -4.381151274351809e-06 - sys_56: -2.0109150615269073e-05 - sys_57: -3.0176688658339854e-05 - sys_58: -4.320544448583784e-05 - sys_59: 5.765616383291894e-06 - sys_60: 1.806454278051554e-05 - sys_61: -2.0966816541105157e-06 - sys_62: 3.5216327119040163e-06 -- pol: 0.00232832 + sys_0: 7.59337412e-05 + sys_1: -4.35029988e-05 + sys_2: -6.03568272e-05 + sys_3: -5.15511584e-05 + sys_4: 1.47180362e-04 + sys_5: 1.20624150e-04 + sys_6: -2.43969980e-04 + sys_7: 1.33037230e-05 + sys_8: -8.21599677e-05 + sys_9: 4.60632406e-04 + sys_10: -1.69195812e-03 + sys_11: -1.02547576e-02 + sys_12: 1.26432691e-03 + sys_13: 4.58662556e-04 + sys_14: 3.12406632e-04 + sys_15: 1.59469678e-04 + sys_16: 1.72236862e-04 + sys_17: 2.53262578e-04 + sys_18: 1.81817439e-04 + sys_19: 3.39928341e-05 + sys_20: 1.01298363e-04 + sys_21: 1.56122817e-04 + sys_22: -7.50429229e-05 + sys_23: 3.12715107e-05 + sys_24: 1.75546194e-05 + sys_25: -1.31708274e-05 + sys_26: -1.34840062e-04 + sys_27: -1.10619765e-04 + sys_28: -3.78277906e-05 + sys_29: -1.33896462e-05 + sys_30: 7.07884458e-06 + sys_31: 9.86445519e-06 + sys_32: 1.47178662e-05 + sys_33: -1.05945262e-05 + sys_34: -2.68998143e-06 + sys_35: 1.57119210e-06 + sys_36: -4.46510236e-06 + sys_37: -9.92471348e-06 + sys_38: -2.42811092e-06 + sys_39: 3.12545539e-06 + sys_40: -6.73783032e-05 + sys_41: -5.52736956e-05 + sys_42: -1.02223750e-05 + sys_43: -2.18869083e-05 + sys_44: 8.11988334e-06 + sys_45: -2.04473531e-05 + sys_46: -7.38118854e-08 + sys_47: 1.74749792e-05 + sys_48: 3.39224643e-06 + sys_49: 5.05693684e-05 + sys_50: 6.55024536e-06 + sys_51: -2.32752726e-05 + sys_52: -1.99906502e-06 + sys_53: 1.18656734e-06 + sys_54: -2.23645955e-05 + sys_55: -4.38115127e-06 + sys_56: -2.01091506e-05 + sys_57: -3.01766887e-05 + sys_58: -4.32054445e-05 + sys_59: 5.76561638e-06 + sys_60: 1.80645428e-05 + sys_61: -2.09668165e-06 + sys_62: 3.52163271e-06 +- pol: 2.32832000e-03 lumi: 0.00047 - sys_0: 0.00013606621997905275 - sys_1: -0.00010358840884831291 - sys_2: -0.00015049917907913033 - sys_3: -0.00011702420200315656 - sys_4: 0.0005814684615487819 - sys_5: 0.0008968593946695551 - sys_6: -0.011199604949980747 - sys_7: 0.011890042229853175 - sys_8: -0.0004574819491622129 - sys_9: -0.0004990460412426516 - sys_10: 0.00022466943163361368 - sys_11: 0.00017914451699654782 - sys_12: 0.00022815588895921005 - sys_13: 0.00010552716237190548 - sys_14: 5.479032810523092e-05 - sys_15: 1.9503801677926195e-05 - sys_16: 0.00024268529734222175 - sys_17: 0.00010724707228588233 - sys_18: 8.950228109723454e-05 - sys_19: 1.4170111100285062e-05 - sys_20: 5.431707364617395e-05 - sys_21: 7.135681504874769e-05 - sys_22: -2.6697705855875196e-05 - sys_23: -2.266143211606176e-06 - sys_24: 2.2947121166859666e-05 - sys_25: -4.2277778624638664e-05 - sys_26: -0.00013109665023134404 - sys_27: -8.103722643831474e-05 - sys_28: -4.571181580750123e-05 - sys_29: -1.1575520659692545e-05 - sys_30: 7.458483932630948e-06 - sys_31: 3.0122910843477746e-06 - sys_32: 1.0004842444865198e-05 - sys_33: -4.870248883685201e-06 - sys_34: -2.3887520709286025e-06 - sys_35: 4.630933651210596e-07 - sys_36: -8.032355515593338e-07 - sys_37: -5.224100553474219e-06 - sys_38: -1.0038819359284648e-06 - sys_39: 1.6894373163244923e-06 - sys_40: -4.2066688969518745e-05 - sys_41: -3.7659015913341384e-05 - sys_42: -7.752969426695324e-06 - sys_43: -1.769988014181613e-05 - sys_44: 4.039344356908243e-06 - sys_45: -7.124119297390877e-06 - sys_46: -8.508621435034575e-07 - sys_47: 1.1762369354180194e-05 - sys_48: 2.118692986206912e-06 - sys_49: 3.7577111307435175e-05 - sys_50: 4.866702472340792e-06 - sys_51: -1.674340574047444e-05 - sys_52: -2.0317551752853797e-06 - sys_53: -5.122704136633999e-07 - sys_54: -1.9804356080548587e-05 - sys_55: -2.669143100603781e-06 - sys_56: -1.1963566866055229e-05 - sys_57: -1.620741249885397e-05 - sys_58: -1.8588119877259563e-05 - sys_59: 1.2387489174364305e-06 - sys_60: 9.635613495356664e-06 - sys_61: -4.470882691950794e-06 - sys_62: 8.35657443274673e-06 -- pol: 0.0005049599999999999 + sys_0: 1.36066220e-04 + sys_1: -1.03588409e-04 + sys_2: -1.50499179e-04 + sys_3: -1.17024202e-04 + sys_4: 5.81468462e-04 + sys_5: 8.96859395e-04 + sys_6: -1.11996049e-02 + sys_7: 1.18900422e-02 + sys_8: -4.57481949e-04 + sys_9: -4.99046041e-04 + sys_10: 2.24669432e-04 + sys_11: 1.79144517e-04 + sys_12: 2.28155889e-04 + sys_13: 1.05527162e-04 + sys_14: 5.47903281e-05 + sys_15: 1.95038017e-05 + sys_16: 2.42685297e-04 + sys_17: 1.07247072e-04 + sys_18: 8.95022811e-05 + sys_19: 1.41701111e-05 + sys_20: 5.43170736e-05 + sys_21: 7.13568150e-05 + sys_22: -2.66977059e-05 + sys_23: -2.26614321e-06 + sys_24: 2.29471212e-05 + sys_25: -4.22777786e-05 + sys_26: -1.31096650e-04 + sys_27: -8.10372264e-05 + sys_28: -4.57118158e-05 + sys_29: -1.15755207e-05 + sys_30: 7.45848393e-06 + sys_31: 3.01229108e-06 + sys_32: 1.00048424e-05 + sys_33: -4.87024888e-06 + sys_34: -2.38875207e-06 + sys_35: 4.63093365e-07 + sys_36: -8.03235552e-07 + sys_37: -5.22410055e-06 + sys_38: -1.00388194e-06 + sys_39: 1.68943732e-06 + sys_40: -4.20666890e-05 + sys_41: -3.76590159e-05 + sys_42: -7.75296943e-06 + sys_43: -1.76998801e-05 + sys_44: 4.03934436e-06 + sys_45: -7.12411930e-06 + sys_46: -8.50862144e-07 + sys_47: 1.17623694e-05 + sys_48: 2.11869299e-06 + sys_49: 3.75771113e-05 + sys_50: 4.86670247e-06 + sys_51: -1.67434057e-05 + sys_52: -2.03175518e-06 + sys_53: -5.12270414e-07 + sys_54: -1.98043561e-05 + sys_55: -2.66914310e-06 + sys_56: -1.19635669e-05 + sys_57: -1.62074125e-05 + sys_58: -1.85881199e-05 + sys_59: 1.23874892e-06 + sys_60: 9.63561350e-06 + sys_61: -4.47088269e-06 + sys_62: 8.35657443e-06 +- pol: 5.04960000e-04 lumi: 0.00047 - sys_0: 0.0010587748784990545 - sys_1: -0.0008859452713964232 - sys_2: -0.004533730225872676 - sys_3: -0.028859666920578165 - sys_4: -0.00029973627884146206 - sys_5: -0.00023460214448150498 - sys_6: 0.0003664940249242015 - sys_7: 0.0001400498017037763 - sys_8: -0.0004630592632493332 - sys_9: -0.00019538587632700517 - sys_10: 7.53741042325427e-05 - sys_11: 5.268483374424259e-05 - sys_12: 9.634371309374659e-05 - sys_13: 3.908400180803576e-05 - sys_14: 4.223138979866801e-06 - sys_15: -1.6336922240473158e-05 - sys_16: 0.00021497770865932308 - sys_17: 5.133358392776373e-05 - sys_18: 4.272160915391691e-05 - sys_19: 1.4481767049482488e-05 - sys_20: 4.3258819290747764e-05 - sys_21: 4.353896918546207e-05 - sys_22: -2.2574218269975673e-05 - sys_23: 6.8911780815559405e-06 - sys_24: 5.6000523850999265e-06 - sys_25: -1.4200216409729661e-05 - sys_26: -6.80148781177288e-05 - sys_27: -4.455198172701431e-05 - sys_28: -3.3363259745197226e-05 - sys_29: -6.987074598615151e-06 - sys_30: 7.048940502158685e-06 - sys_31: -6.869935990442724e-07 - sys_32: 8.435317509954436e-06 - sys_33: -2.3033030702484995e-06 - sys_34: -1.364928557566323e-06 - sys_35: 1.271285360413968e-07 - sys_36: -1.9712940848965645e-08 - sys_37: -2.2961781382246347e-06 - sys_38: 5.5295325629475405e-06 - sys_39: 3.1918452241606278e-06 - sys_40: -1.1853509086621852e-05 - sys_41: -8.82371866237748e-06 - sys_42: -2.0608947618669933e-06 - sys_43: -4.806545959354898e-06 - sys_44: 1.4822670533694917e-06 - sys_45: -2.327024609224276e-06 - sys_46: -2.494262725253789e-07 - sys_47: 5.856034471108824e-06 - sys_48: 1.149763555224016e-06 - sys_49: 2.066862732875235e-05 - sys_50: 2.9323436285470496e-06 - sys_51: -1.0449824985150534e-05 - sys_52: -1.0744044575312174e-06 - sys_53: -1.9773533550788318e-08 - sys_54: -1.156942197390786e-05 - sys_55: -1.3257801138360633e-06 - sys_56: -6.36815562246077e-06 - sys_57: -7.191915284787057e-06 - sys_58: -4.712862381587074e-06 - sys_59: -3.3767792774660474e-07 - sys_60: 4.458953030043589e-06 - sys_61: -3.5566692965379292e-06 - sys_62: 6.464743605381946e-06 + sys_0: 1.05877488e-03 + sys_1: -8.85945271e-04 + sys_2: -4.53373023e-03 + sys_3: -2.88596669e-02 + sys_4: -2.99736279e-04 + sys_5: -2.34602144e-04 + sys_6: 3.66494025e-04 + sys_7: 1.40049802e-04 + sys_8: -4.63059263e-04 + sys_9: -1.95385876e-04 + sys_10: 7.53741042e-05 + sys_11: 5.26848337e-05 + sys_12: 9.63437131e-05 + sys_13: 3.90840018e-05 + sys_14: 4.22313898e-06 + sys_15: -1.63369222e-05 + sys_16: 2.14977709e-04 + sys_17: 5.13335839e-05 + sys_18: 4.27216092e-05 + sys_19: 1.44817670e-05 + sys_20: 4.32588193e-05 + sys_21: 4.35389692e-05 + sys_22: -2.25742183e-05 + sys_23: 6.89117808e-06 + sys_24: 5.60005239e-06 + sys_25: -1.42002164e-05 + sys_26: -6.80148781e-05 + sys_27: -4.45519817e-05 + sys_28: -3.33632597e-05 + sys_29: -6.98707460e-06 + sys_30: 7.04894050e-06 + sys_31: -6.86993599e-07 + sys_32: 8.43531751e-06 + sys_33: -2.30330307e-06 + sys_34: -1.36492856e-06 + sys_35: 1.27128536e-07 + sys_36: -1.97129408e-08 + sys_37: -2.29617814e-06 + sys_38: 5.52953256e-06 + sys_39: 3.19184522e-06 + sys_40: -1.18535091e-05 + sys_41: -8.82371866e-06 + sys_42: -2.06089476e-06 + sys_43: -4.80654596e-06 + sys_44: 1.48226705e-06 + sys_45: -2.32702461e-06 + sys_46: -2.49426273e-07 + sys_47: 5.85603447e-06 + sys_48: 1.14976356e-06 + sys_49: 2.06686273e-05 + sys_50: 2.93234363e-06 + sys_51: -1.04498250e-05 + sys_52: -1.07440446e-06 + sys_53: -1.97735336e-08 + sys_54: -1.15694220e-05 + sys_55: -1.32578011e-06 + sys_56: -6.36815562e-06 + sys_57: -7.19191528e-06 + sys_58: -4.71286238e-06 + sys_59: -3.37677928e-07 + sys_60: 4.45895303e-06 + sys_61: -3.55666930e-06 + sys_62: 6.46474361e-06 diff --git a/nnpdf_data/nnpdf_data/commondata/STAR-2013_2JET_510GEV/uncertainties_B.yaml b/nnpdf_data/nnpdf_data/commondata/STAR-2013_2JET_510GEV/uncertainties_B.yaml index 51b6896168..68cf658d80 100644 --- a/nnpdf_data/nnpdf_data/commondata/STAR-2013_2JET_510GEV/uncertainties_B.yaml +++ b/nnpdf_data/nnpdf_data/commondata/STAR-2013_2JET_510GEV/uncertainties_B.yaml @@ -260,848 +260,848 @@ definitions: treatment: ADD type: STAR2013JETunc62 bins: -- pol: 0.00024384 +- pol: 2.43840000e-04 lumi: 0.00047 - sys_0: 2.281088562555093e-05 - sys_1: -1.9009016467638153e-05 - sys_2: -2.290860702617086e-05 - sys_3: -0.00010391962674271929 - sys_4: 2.844036050670943e-05 - sys_5: 4.05484004707621e-05 - sys_6: -9.941057349868903e-05 - sys_7: 9.058659586486365e-05 - sys_8: -4.9745775955219545e-05 - sys_9: 3.533291822229683e-05 - sys_10: -9.939475339108247e-05 - sys_11: -0.00017118589772840794 - sys_12: -1.700255593154738e-05 - sys_13: -0.00012146477447909021 - sys_14: -0.00015620762336058811 - sys_15: -0.00019517879139180276 - sys_16: 8.955356424854727e-05 - sys_17: -0.00040623807156525216 - sys_18: -0.00010073883799032912 - sys_19: -0.00022527741668393813 - sys_20: -0.00023768994350903676 - sys_21: -0.0042812599867439564 - sys_22: -0.003075860058246729 - sys_23: 0.0005883267522291614 - sys_24: -1.4101473966404579e-05 - sys_25: 3.311557582710953e-05 - sys_26: 1.9935378423979788e-06 - sys_27: -0.00011502699197618604 - sys_28: -7.161039098941259e-05 - sys_29: -0.00010803177246685584 - sys_30: -2.293682360508611e-05 - sys_31: 9.55293211552586e-05 - sys_32: 9.970483579118567e-05 - sys_33: -1.7916442154489555e-05 - sys_34: -3.841052149454467e-06 - sys_35: -4.4543286296345656e-07 - sys_36: 2.2276329362213294e-06 - sys_37: 1.7345229203085016e-05 - sys_38: 1.5604907747246208e-05 - sys_39: 2.8623607645919103e-05 - sys_40: 2.5294427418422292e-05 - sys_41: -2.2207022164510338e-06 - sys_42: -2.0279883701977568e-05 - sys_43: -4.961085453873265e-05 - sys_44: -4.2100929161400915e-06 - sys_45: 1.1647539521717345e-06 - sys_46: 4.520167563621568e-06 - sys_47: 5.110314830468133e-06 - sys_48: -5.7366360249152466e-08 - sys_49: 2.4850029682736257e-05 - sys_50: -1.4020236882863136e-05 - sys_51: 6.018363316227379e-06 - sys_52: -3.526321545363415e-05 - sys_53: 8.968915368250622e-06 - sys_54: -1.8249475385666512e-05 - sys_55: -5.923272067305604e-06 - sys_56: -1.8268545328056995e-05 - sys_57: -5.003770196167806e-06 - sys_58: 2.5397199255836957e-06 - sys_59: -2.1275260439851053e-06 - sys_60: -6.357995523590748e-06 - sys_61: -3.260733019949886e-06 - sys_62: 1.6115774284623058e-05 -- pol: 0.00019136 + sys_0: 2.28108856e-05 + sys_1: -1.90090165e-05 + sys_2: -2.29086070e-05 + sys_3: -1.03919627e-04 + sys_4: 2.84403605e-05 + sys_5: 4.05484005e-05 + sys_6: -9.94105735e-05 + sys_7: 9.05865959e-05 + sys_8: -4.97457760e-05 + sys_9: 3.53329182e-05 + sys_10: -9.93947534e-05 + sys_11: -1.71185898e-04 + sys_12: -1.70025559e-05 + sys_13: -1.21464774e-04 + sys_14: -1.56207623e-04 + sys_15: -1.95178791e-04 + sys_16: 8.95535642e-05 + sys_17: -4.06238072e-04 + sys_18: -1.00738838e-04 + sys_19: -2.25277417e-04 + sys_20: -2.37689944e-04 + sys_21: -4.28125999e-03 + sys_22: -3.07586006e-03 + sys_23: 5.88326752e-04 + sys_24: -1.41014740e-05 + sys_25: 3.31155758e-05 + sys_26: 1.99353784e-06 + sys_27: -1.15026992e-04 + sys_28: -7.16103910e-05 + sys_29: -1.08031772e-04 + sys_30: -2.29368236e-05 + sys_31: 9.55293212e-05 + sys_32: 9.97048358e-05 + sys_33: -1.79164422e-05 + sys_34: -3.84105215e-06 + sys_35: -4.45432863e-07 + sys_36: 2.22763294e-06 + sys_37: 1.73452292e-05 + sys_38: 1.56049077e-05 + sys_39: 2.86236076e-05 + sys_40: 2.52944274e-05 + sys_41: -2.22070222e-06 + sys_42: -2.02798837e-05 + sys_43: -4.96108545e-05 + sys_44: -4.21009292e-06 + sys_45: 1.16475395e-06 + sys_46: 4.52016756e-06 + sys_47: 5.11031483e-06 + sys_48: -5.73663602e-08 + sys_49: 2.48500297e-05 + sys_50: -1.40202369e-05 + sys_51: 6.01836332e-06 + sys_52: -3.52632155e-05 + sys_53: 8.96891537e-06 + sys_54: -1.82494754e-05 + sys_55: -5.92327207e-06 + sys_56: -1.82685453e-05 + sys_57: -5.00377020e-06 + sys_58: 2.53971993e-06 + sys_59: -2.12752604e-06 + sys_60: -6.35799552e-06 + sys_61: -3.26073302e-06 + sys_62: 1.61157743e-05 +- pol: 1.91360000e-04 lumi: 0.00047 - sys_0: 3.0137940757252382e-05 - sys_1: -1.5120549745651123e-05 - sys_2: -2.557964310222969e-05 - sys_3: -9.285397279651187e-05 - sys_4: 4.368352912528854e-05 - sys_5: 2.5829337568216713e-05 - sys_6: -8.479975895062287e-05 - sys_7: 7.487832016047915e-05 - sys_8: -5.009150576113181e-05 - sys_9: 5.78522633795336e-05 - sys_10: -6.058431637988804e-05 - sys_11: -0.00012764711261527154 - sys_12: -2.280444090154844e-05 - sys_13: -0.0001200625835541077 - sys_14: -0.00012067297943446773 - sys_15: -7.014340926142276e-05 - sys_16: 4.948009254258603e-05 - sys_17: -0.0001677845909195769 - sys_18: -5.3013335381508076e-05 - sys_19: -6.578261566427298e-05 - sys_20: -0.00011623308884420348 - sys_21: -0.00017910466573516393 - sys_22: 0.0001900722163956406 - sys_23: -0.0001683654192050016 - sys_24: 7.662335127722742e-07 - sys_25: -0.00014130084134790174 - sys_26: 4.585905739260322e-05 - sys_27: 0.0001483031027192508 - sys_28: 0.00015840440982937203 - sys_29: 4.4169089734707346e-05 - sys_30: -4.904154442641391e-05 - sys_31: -0.00012620119418906822 - sys_32: -0.0001838103212001275 - sys_33: 9.321096031597597e-05 - sys_34: -3.9826375548751285e-05 - sys_35: -4.021883112529636e-06 - sys_36: 2.3326102257294968e-05 - sys_37: 8.279188336135578e-05 - sys_38: -0.00013923270094574363 - sys_39: -3.376073981281172e-05 - sys_40: -8.0881301701413e-05 - sys_41: 3.873952653605315e-05 - sys_42: -1.104385218519674e-05 - sys_43: -1.3143084769335881e-05 - sys_44: -3.2937043747192893e-05 - sys_45: 1.1709824598181123e-05 - sys_46: 4.2970440339061475e-05 - sys_47: 8.270270613009119e-05 - sys_48: 0.00016364909376342056 - sys_49: -0.000620798361826963 - sys_50: 0.00010533907448112074 - sys_51: 0.00026278617548181673 - sys_52: 0.00013148229489967354 - sys_53: -0.00010382845231461798 - sys_54: 0.000283046736461747 - sys_55: -9.840267007222173e-05 - sys_56: -0.0011470635481529272 - sys_57: -0.0007904985782110617 - sys_58: 0.0012064959869820544 - sys_59: 0.00017242272455992495 - sys_60: 0.0001648846315096238 - sys_61: 5.4063730744902306e-05 - sys_62: -0.0005361766479740741 -- pol: 7.424000000000001e-05 + sys_0: 3.01379408e-05 + sys_1: -1.51205497e-05 + sys_2: -2.55796431e-05 + sys_3: -9.28539728e-05 + sys_4: 4.36835291e-05 + sys_5: 2.58293376e-05 + sys_6: -8.47997590e-05 + sys_7: 7.48783202e-05 + sys_8: -5.00915058e-05 + sys_9: 5.78522634e-05 + sys_10: -6.05843164e-05 + sys_11: -1.27647113e-04 + sys_12: -2.28044409e-05 + sys_13: -1.20062584e-04 + sys_14: -1.20672979e-04 + sys_15: -7.01434093e-05 + sys_16: 4.94800925e-05 + sys_17: -1.67784591e-04 + sys_18: -5.30133354e-05 + sys_19: -6.57826157e-05 + sys_20: -1.16233089e-04 + sys_21: -1.79104666e-04 + sys_22: 1.90072216e-04 + sys_23: -1.68365419e-04 + sys_24: 7.66233513e-07 + sys_25: -1.41300841e-04 + sys_26: 4.58590574e-05 + sys_27: 1.48303103e-04 + sys_28: 1.58404410e-04 + sys_29: 4.41690897e-05 + sys_30: -4.90415444e-05 + sys_31: -1.26201194e-04 + sys_32: -1.83810321e-04 + sys_33: 9.32109603e-05 + sys_34: -3.98263755e-05 + sys_35: -4.02188311e-06 + sys_36: 2.33261023e-05 + sys_37: 8.27918834e-05 + sys_38: -1.39232701e-04 + sys_39: -3.37607398e-05 + sys_40: -8.08813017e-05 + sys_41: 3.87395265e-05 + sys_42: -1.10438522e-05 + sys_43: -1.31430848e-05 + sys_44: -3.29370437e-05 + sys_45: 1.17098246e-05 + sys_46: 4.29704403e-05 + sys_47: 8.27027061e-05 + sys_48: 1.63649094e-04 + sys_49: -6.20798362e-04 + sys_50: 1.05339074e-04 + sys_51: 2.62786175e-04 + sys_52: 1.31482295e-04 + sys_53: -1.03828452e-04 + sys_54: 2.83046736e-04 + sys_55: -9.84026701e-05 + sys_56: -1.14706355e-03 + sys_57: -7.90498578e-04 + sys_58: 1.20649599e-03 + sys_59: 1.72422725e-04 + sys_60: 1.64884632e-04 + sys_61: 5.40637307e-05 + sys_62: -5.36176648e-04 +- pol: 7.42400000e-05 lumi: 0.00047 - sys_0: 1.198880522733749e-05 - sys_1: -1.012281118015365e-05 - sys_2: -2.225709094995538e-05 - sys_3: -9.200738156652607e-05 - sys_4: 1.720874178965039e-05 - sys_5: 1.6879612958822146e-05 - sys_6: -7.937037015496456e-05 - sys_7: 7.12410575006473e-05 - sys_8: -2.998590263008001e-05 - sys_9: 1.58776873000348e-05 - sys_10: -3.8978440508918925e-05 - sys_11: -0.00011748547577655859 - sys_12: -9.800050301702452e-06 - sys_13: -4.044556374760464e-05 - sys_14: -4.8710147704977446e-05 - sys_15: -4.350131958787017e-05 - sys_16: 3.900853094650076e-05 - sys_17: -0.0001303105058083281 - sys_18: -1.0980702587437976e-05 - sys_19: -4.3806514813320026e-05 - sys_20: -1.9424023501152185e-05 - sys_21: -0.00010130872285487033 - sys_22: 8.049102204735408e-05 - sys_23: -8.49769866295639e-05 - sys_24: -4.6738133904603875e-05 - sys_25: -3.6400657442517985e-05 - sys_26: -1.633105823603487e-05 - sys_27: 5.7438780082535875e-05 - sys_28: 1.496207429893287e-05 - sys_29: 3.945878867597357e-05 - sys_30: -4.310759251069271e-06 - sys_31: -0.00014725416135456126 - sys_32: -0.00013488905896865487 - sys_33: 7.220803998572469e-05 - sys_34: -4.5798166039574896e-05 - sys_35: -2.0574182661213578e-05 - sys_36: 5.178882382625915e-05 - sys_37: 2.5355377311821998e-05 - sys_38: -2.8918402130646673e-05 - sys_39: -2.946559770008753e-05 - sys_40: -3.528879680480083e-05 - sys_41: 1.5802229847888768e-05 - sys_42: -8.710504180170198e-06 - sys_43: 3.095238630145849e-05 - sys_44: 0.00014600919892498462 - sys_45: 0.0002147829696480067 - sys_46: -0.00032132992109171546 - sys_47: -0.0016072854733851678 - sys_48: -0.00038762771350970936 - sys_49: -0.000102708445676174 - sys_50: 6.857235125426427e-05 - sys_51: -9.112623557609605e-05 - sys_52: 1.0362276062998164e-05 - sys_53: -1.6003934064817103e-05 - sys_54: -2.815447467533875e-05 - sys_55: -0.00025429294518087696 - sys_56: -0.0002451996988063259 - sys_57: -2.596597975380621e-05 - sys_58: -7.498319042749523e-05 - sys_59: -4.970900450449785e-05 - sys_60: 2.3832314737576182e-05 - sys_61: -3.46742695200294e-05 - sys_62: 7.984266041481372e-05 -- pol: 0.00021504 + sys_0: 1.19888052e-05 + sys_1: -1.01228112e-05 + sys_2: -2.22570909e-05 + sys_3: -9.20073816e-05 + sys_4: 1.72087418e-05 + sys_5: 1.68796130e-05 + sys_6: -7.93703702e-05 + sys_7: 7.12410575e-05 + sys_8: -2.99859026e-05 + sys_9: 1.58776873e-05 + sys_10: -3.89784405e-05 + sys_11: -1.17485476e-04 + sys_12: -9.80005030e-06 + sys_13: -4.04455637e-05 + sys_14: -4.87101477e-05 + sys_15: -4.35013196e-05 + sys_16: 3.90085309e-05 + sys_17: -1.30310506e-04 + sys_18: -1.09807026e-05 + sys_19: -4.38065148e-05 + sys_20: -1.94240235e-05 + sys_21: -1.01308723e-04 + sys_22: 8.04910220e-05 + sys_23: -8.49769866e-05 + sys_24: -4.67381339e-05 + sys_25: -3.64006574e-05 + sys_26: -1.63310582e-05 + sys_27: 5.74387801e-05 + sys_28: 1.49620743e-05 + sys_29: 3.94587887e-05 + sys_30: -4.31075925e-06 + sys_31: -1.47254161e-04 + sys_32: -1.34889059e-04 + sys_33: 7.22080400e-05 + sys_34: -4.57981660e-05 + sys_35: -2.05741827e-05 + sys_36: 5.17888238e-05 + sys_37: 2.53553773e-05 + sys_38: -2.89184021e-05 + sys_39: -2.94655977e-05 + sys_40: -3.52887968e-05 + sys_41: 1.58022298e-05 + sys_42: -8.71050418e-06 + sys_43: 3.09523863e-05 + sys_44: 1.46009199e-04 + sys_45: 2.14782970e-04 + sys_46: -3.21329921e-04 + sys_47: -1.60728547e-03 + sys_48: -3.87627714e-04 + sys_49: -1.02708446e-04 + sys_50: 6.85723513e-05 + sys_51: -9.11262356e-05 + sys_52: 1.03622761e-05 + sys_53: -1.60039341e-05 + sys_54: -2.81544747e-05 + sys_55: -2.54292945e-04 + sys_56: -2.45199699e-04 + sys_57: -2.59659798e-05 + sys_58: -7.49831904e-05 + sys_59: -4.97090045e-05 + sys_60: 2.38323147e-05 + sys_61: -3.46742695e-05 + sys_62: 7.98426604e-05 +- pol: 2.15040000e-04 lumi: 0.00047 - sys_0: 1.6980791646539273e-05 - sys_1: -1.7109036972399807e-05 - sys_2: -2.3080843436824275e-05 - sys_3: -8.968532766930604e-05 - sys_4: 2.3248835291498948e-05 - sys_5: 2.9915140725999773e-05 - sys_6: -7.830834321021942e-05 - sys_7: 7.065886566605514e-05 - sys_8: -3.7166270840696167e-05 - sys_9: 2.6403450313065633e-05 - sys_10: -6.452790050231355e-05 - sys_11: -0.00011570402039971308 - sys_12: -1.671940485679445e-05 - sys_13: -6.338476318864657e-05 - sys_14: -7.46441248359434e-05 - sys_15: -8.114614294772858e-05 - sys_16: 4.1683243669210935e-05 - sys_17: -0.00014191742416220216 - sys_18: -3.077585024322008e-05 - sys_19: -5.347461993752074e-05 - sys_20: -4.238172232093285e-05 - sys_21: -0.0001591098094470426 - sys_22: 0.0001617903709525879 - sys_23: -0.00010341713047829035 - sys_24: -3.67339129456103e-06 - sys_25: -1.9102534713104867e-05 - sys_26: -1.8527163101784903e-06 - sys_27: 7.412095984564919e-05 - sys_28: 4.132652672152309e-05 - sys_29: 8.585549689697947e-05 - sys_30: 1.8928705109806984e-05 - sys_31: -0.00013539705786753836 - sys_32: -0.00018139355567593389 - sys_33: 4.572113933320499e-05 - sys_34: 1.0062440257150285e-05 - sys_35: -4.72257925058055e-05 - sys_36: 0.00010726275521543558 - sys_37: -2.9190111943479053e-05 - sys_38: -4.022581413786071e-05 - sys_39: -6.676529954286538e-05 - sys_40: -4.7575618057376346e-05 - sys_41: -2.561917162065725e-06 - sys_42: 4.3250002101027015e-05 - sys_43: 0.000141408610182992 - sys_44: -0.0014719174004210554 - sys_45: -0.00017320020895235163 - sys_46: -3.84374685553272e-05 - sys_47: -0.00016222358542000945 - sys_48: -8.510937354571355e-05 - sys_49: -0.00012745514958643816 - sys_50: 1.8666298782119536e-05 - sys_51: -3.75699212460625e-05 - sys_52: 1.165806221849543e-05 - sys_53: 1.514022351187339e-05 - sys_54: 9.665081055338447e-05 - sys_55: -5.7133646608964604e-05 - sys_56: 0.0001202469665335999 - sys_57: 4.7077735986498264e-05 - sys_58: -1.6864767897526714e-05 - sys_59: -8.232148541657705e-06 - sys_60: 2.9371047200179062e-05 - sys_61: 7.859657328328138e-05 - sys_62: -5.357062958052559e-05 + sys_0: 1.69807916e-05 + sys_1: -1.71090370e-05 + sys_2: -2.30808434e-05 + sys_3: -8.96853277e-05 + sys_4: 2.32488353e-05 + sys_5: 2.99151407e-05 + sys_6: -7.83083432e-05 + sys_7: 7.06588657e-05 + sys_8: -3.71662708e-05 + sys_9: 2.64034503e-05 + sys_10: -6.45279005e-05 + sys_11: -1.15704020e-04 + sys_12: -1.67194049e-05 + sys_13: -6.33847632e-05 + sys_14: -7.46441248e-05 + sys_15: -8.11461429e-05 + sys_16: 4.16832437e-05 + sys_17: -1.41917424e-04 + sys_18: -3.07758502e-05 + sys_19: -5.34746199e-05 + sys_20: -4.23817223e-05 + sys_21: -1.59109809e-04 + sys_22: 1.61790371e-04 + sys_23: -1.03417130e-04 + sys_24: -3.67339129e-06 + sys_25: -1.91025347e-05 + sys_26: -1.85271631e-06 + sys_27: 7.41209598e-05 + sys_28: 4.13265267e-05 + sys_29: 8.58554969e-05 + sys_30: 1.89287051e-05 + sys_31: -1.35397058e-04 + sys_32: -1.81393556e-04 + sys_33: 4.57211393e-05 + sys_34: 1.00624403e-05 + sys_35: -4.72257925e-05 + sys_36: 1.07262755e-04 + sys_37: -2.91901119e-05 + sys_38: -4.02258141e-05 + sys_39: -6.67652995e-05 + sys_40: -4.75756181e-05 + sys_41: -2.56191716e-06 + sys_42: 4.32500021e-05 + sys_43: 1.41408610e-04 + sys_44: -1.47191740e-03 + sys_45: -1.73200209e-04 + sys_46: -3.84374686e-05 + sys_47: -1.62223585e-04 + sys_48: -8.51093735e-05 + sys_49: -1.27455150e-04 + sys_50: 1.86662988e-05 + sys_51: -3.75699212e-05 + sys_52: 1.16580622e-05 + sys_53: 1.51402235e-05 + sys_54: 9.66508106e-05 + sys_55: -5.71336466e-05 + sys_56: 1.20246967e-04 + sys_57: 4.70777360e-05 + sys_58: -1.68647679e-05 + sys_59: -8.23214854e-06 + sys_60: 2.93710472e-05 + sys_61: 7.85965733e-05 + sys_62: -5.35706296e-05 - pol: 3.84e-05 lumi: 0.00047 - sys_0: 1.7509244516699438e-05 - sys_1: -1.6177556341652778e-05 - sys_2: -2.3170840780124833e-05 - sys_3: -8.811731297020835e-05 - sys_4: 2.2587464877020097e-05 - sys_5: 2.817381972070832e-05 - sys_6: -7.960566166503656e-05 - sys_7: 6.830291732147209e-05 - sys_8: -3.729126707717029e-05 - sys_9: 2.6109619025804036e-05 - sys_10: -6.183989159427118e-05 - sys_11: -0.00011559448551939127 - sys_12: -1.7808095178926118e-05 - sys_13: -6.042821118909034e-05 - sys_14: -7.284862734313028e-05 - sys_15: -7.825467467977667e-05 - sys_16: 4.2080378974717836e-05 - sys_17: -0.00014124377862542205 - sys_18: -3.1880483578511415e-05 - sys_19: -5.079060403743926e-05 - sys_20: -4.069963879969916e-05 - sys_21: -0.0001537486747274057 - sys_22: 0.00015577108454248247 - sys_23: -0.00010345724052218234 - sys_24: -7.263183536867447e-06 - sys_25: -2.312234126992885e-05 - sys_26: -1.749800273054541e-06 - sys_27: 7.783616454144878e-05 - sys_28: 3.343765241906373e-05 - sys_29: 8.177795546736858e-05 - sys_30: 1.7256028927059e-05 - sys_31: -0.0001400194769992688 - sys_32: -0.00018274107493844989 - sys_33: 5.1598024119015815e-05 - sys_34: 9.021681071496408e-05 - sys_35: -1.8197312917903664e-05 - sys_36: 5.455124321522237e-06 - sys_37: -2.489878894506861e-05 - sys_38: -4.3343322039426926e-05 - sys_39: -6.923654639650492e-05 - sys_40: -3.809953937726139e-05 - sys_41: -8.947076967409804e-06 - sys_42: 3.68136749176258e-05 - sys_43: 0.0001306925482077864 - sys_44: -1.7618732491540997e-05 - sys_45: 0.00043392041532598207 - sys_46: 0.0015127635485662678 - sys_47: -0.00026179336081914466 - sys_48: -6.940478373466075e-05 - sys_49: -0.00013383235839904212 - sys_50: 8.328379950285405e-06 - sys_51: -4.5915642013375605e-05 - sys_52: 4.658996164346626e-06 - sys_53: 1.4956532380821154e-05 - sys_54: 9.222135439521719e-05 - sys_55: -5.681292776335175e-05 - sys_56: 7.957929980908956e-05 - sys_57: 7.036517587634817e-05 - sys_58: -3.531733979781321e-05 - sys_59: -2.9849151072023694e-05 - sys_60: 4.001036950813125e-06 - sys_61: 8.690885261703851e-05 - sys_62: -3.3911972901044674e-05 -- pol: 9.855999999999999e-05 + sys_0: 1.75092445e-05 + sys_1: -1.61775563e-05 + sys_2: -2.31708408e-05 + sys_3: -8.81173130e-05 + sys_4: 2.25874649e-05 + sys_5: 2.81738197e-05 + sys_6: -7.96056617e-05 + sys_7: 6.83029173e-05 + sys_8: -3.72912671e-05 + sys_9: 2.61096190e-05 + sys_10: -6.18398916e-05 + sys_11: -1.15594486e-04 + sys_12: -1.78080952e-05 + sys_13: -6.04282112e-05 + sys_14: -7.28486273e-05 + sys_15: -7.82546747e-05 + sys_16: 4.20803790e-05 + sys_17: -1.41243779e-04 + sys_18: -3.18804836e-05 + sys_19: -5.07906040e-05 + sys_20: -4.06996388e-05 + sys_21: -1.53748675e-04 + sys_22: 1.55771085e-04 + sys_23: -1.03457241e-04 + sys_24: -7.26318354e-06 + sys_25: -2.31223413e-05 + sys_26: -1.74980027e-06 + sys_27: 7.78361645e-05 + sys_28: 3.34376524e-05 + sys_29: 8.17779555e-05 + sys_30: 1.72560289e-05 + sys_31: -1.40019477e-04 + sys_32: -1.82741075e-04 + sys_33: 5.15980241e-05 + sys_34: 9.02168107e-05 + sys_35: -1.81973129e-05 + sys_36: 5.45512432e-06 + sys_37: -2.48987889e-05 + sys_38: -4.33433220e-05 + sys_39: -6.92365464e-05 + sys_40: -3.80995394e-05 + sys_41: -8.94707697e-06 + sys_42: 3.68136749e-05 + sys_43: 1.30692548e-04 + sys_44: -1.76187325e-05 + sys_45: 4.33920415e-04 + sys_46: 1.51276355e-03 + sys_47: -2.61793361e-04 + sys_48: -6.94047837e-05 + sys_49: -1.33832358e-04 + sys_50: 8.32837995e-06 + sys_51: -4.59156420e-05 + sys_52: 4.65899616e-06 + sys_53: 1.49565324e-05 + sys_54: 9.22213544e-05 + sys_55: -5.68129278e-05 + sys_56: 7.95792998e-05 + sys_57: 7.03651759e-05 + sys_58: -3.53173398e-05 + sys_59: -2.98491511e-05 + sys_60: 4.00103695e-06 + sys_61: 8.69088526e-05 + sys_62: -3.39119729e-05 +- pol: 9.85600000e-05 lumi: 0.00047 - sys_0: 1.6067577762474904e-05 - sys_1: -1.535709856071793e-05 - sys_2: -2.3410022719246112e-05 - sys_3: -8.861865680388343e-05 - sys_4: 2.2835447299179433e-05 - sys_5: 2.7612399796742433e-05 - sys_6: -7.934601102286422e-05 - sys_7: 6.796930221888001e-05 - sys_8: -3.725279006594708e-05 - sys_9: 2.6953010323753148e-05 - sys_10: -5.977744796231354e-05 - sys_11: -0.00011661158695191928 - sys_12: -2.1078109853061696e-05 - sys_13: -6.39471630877445e-05 - sys_14: -7.493167604829274e-05 - sys_15: -7.752282425148757e-05 - sys_16: 4.289228876395554e-05 - sys_17: -0.00014753390765327463 - sys_18: -3.68031044950442e-05 - sys_19: -5.159110969003688e-05 - sys_20: -4.360666625607254e-05 - sys_21: -0.0001585294314448396 - sys_22: 0.00015780902226735785 - sys_23: -0.00011162860767022273 - sys_24: -1.3402957195105765e-05 - sys_25: -3.310955645998204e-05 - sys_26: -1.3181163354902485e-06 - sys_27: 9.44183162983823e-05 - sys_28: 2.895596717458176e-05 - sys_29: 8.503522978769481e-05 - sys_30: 1.902969664455748e-05 - sys_31: -0.00016395116682093442 - sys_32: -0.000215189696375523 - sys_33: 6.4955419301289e-05 - sys_34: 8.607368565228504e-05 - sys_35: 7.447815921500445e-06 - sys_36: -3.335444328100414e-05 - sys_37: -2.1569370489268367e-05 - sys_38: -5.609614295089939e-05 - sys_39: -8.380851625267854e-05 - sys_40: -2.7390422020381996e-05 - sys_41: -1.876013710169719e-05 - sys_42: 4.0369289659802904e-05 - sys_43: 0.0001551248242506367 - sys_44: 7.4022106859839784e-06 - sys_45: -4.698944461172202e-05 - sys_46: -3.1877270239690956e-05 - sys_47: 0.00011113469809396684 - sys_48: 3.6595551085875295e-05 - sys_49: -0.00021692947317828189 - sys_50: 3.986863790071127e-06 - sys_51: -6.628739386948111e-05 - sys_52: 8.033055463317493e-08 - sys_53: 1.591865939392256e-05 - sys_54: 0.00013958545308137167 - sys_55: 6.501625806318908e-05 - sys_56: -0.0010914520978035846 - sys_57: 0.0016491224248438878 - sys_58: -0.00012471953914481207 - sys_59: -0.00011374126059098531 - sys_60: -6.505122360427344e-05 - sys_61: 0.00018422255263654785 - sys_62: -2.7700641731925424e-05 -- pol: 0.0003968 + sys_0: 1.60675778e-05 + sys_1: -1.53570986e-05 + sys_2: -2.34100227e-05 + sys_3: -8.86186568e-05 + sys_4: 2.28354473e-05 + sys_5: 2.76123998e-05 + sys_6: -7.93460110e-05 + sys_7: 6.79693022e-05 + sys_8: -3.72527901e-05 + sys_9: 2.69530103e-05 + sys_10: -5.97774480e-05 + sys_11: -1.16611587e-04 + sys_12: -2.10781099e-05 + sys_13: -6.39471631e-05 + sys_14: -7.49316760e-05 + sys_15: -7.75228243e-05 + sys_16: 4.28922888e-05 + sys_17: -1.47533908e-04 + sys_18: -3.68031045e-05 + sys_19: -5.15911097e-05 + sys_20: -4.36066663e-05 + sys_21: -1.58529431e-04 + sys_22: 1.57809022e-04 + sys_23: -1.11628608e-04 + sys_24: -1.34029572e-05 + sys_25: -3.31095565e-05 + sys_26: -1.31811634e-06 + sys_27: 9.44183163e-05 + sys_28: 2.89559672e-05 + sys_29: 8.50352298e-05 + sys_30: 1.90296966e-05 + sys_31: -1.63951167e-04 + sys_32: -2.15189696e-04 + sys_33: 6.49554193e-05 + sys_34: 8.60736857e-05 + sys_35: 7.44781592e-06 + sys_36: -3.33544433e-05 + sys_37: -2.15693705e-05 + sys_38: -5.60961430e-05 + sys_39: -8.38085163e-05 + sys_40: -2.73904220e-05 + sys_41: -1.87601371e-05 + sys_42: 4.03692897e-05 + sys_43: 1.55124824e-04 + sys_44: 7.40221069e-06 + sys_45: -4.69894446e-05 + sys_46: -3.18772702e-05 + sys_47: 1.11134698e-04 + sys_48: 3.65955511e-05 + sys_49: -2.16929473e-04 + sys_50: 3.98686379e-06 + sys_51: -6.62873939e-05 + sys_52: 8.03305546e-08 + sys_53: 1.59186594e-05 + sys_54: 1.39585453e-04 + sys_55: 6.50162581e-05 + sys_56: -1.09145210e-03 + sys_57: 1.64912242e-03 + sys_58: -1.24719539e-04 + sys_59: -1.13741261e-04 + sys_60: -6.50512236e-05 + sys_61: 1.84222553e-04 + sys_62: -2.77006417e-05 +- pol: 3.96800000e-04 lumi: 0.00047 - sys_0: 1.7262416045985896e-05 - sys_1: -1.4426774920439827e-05 - sys_2: -2.4601232269485106e-05 - sys_3: -8.890525552761963e-05 - sys_4: 2.5068828776474154e-05 - sys_5: 2.7988657970210173e-05 - sys_6: -8.063469154534933e-05 - sys_7: 6.645641551374069e-05 - sys_8: -3.9319608664774555e-05 - sys_9: 3.0425767659196187e-05 - sys_10: -6.065810700046324e-05 - sys_11: -0.00011913538521447768 - sys_12: -2.6230719373863255e-05 - sys_13: -7.130049164368381e-05 - sys_14: -7.878858784216459e-05 - sys_15: -7.964835543949139e-05 - sys_16: 4.61310655459893e-05 - sys_17: -0.0001576081198552432 - sys_18: -4.563668861360691e-05 - sys_19: -5.0683133477337116e-05 - sys_20: -4.7684161212990283e-05 - sys_21: -0.0001665030090421197 - sys_22: 0.00016968669418689493 - sys_23: -0.00011846171665547088 - sys_24: -1.8045404400560477e-05 - sys_25: -4.357342376637061e-05 - sys_26: 8.288195850307002e-06 - sys_27: 0.00011413329740820192 - sys_28: 2.6764208290543166e-05 - sys_29: 8.631837047335358e-05 - sys_30: 2.3536648361200892e-05 - sys_31: -0.0001855789769573595 - sys_32: -0.00024061792534397312 - sys_33: 8.089559952690036e-05 - sys_34: 9.475649771369896e-05 - sys_35: 3.042971647202121e-05 - sys_36: -7.65008608684066e-05 - sys_37: -1.9472787826502866e-05 - sys_38: -6.967590460170088e-05 - sys_39: -0.00010109642807396044 - sys_40: 1.4944823760872967e-05 - sys_41: -1.0002773567678882e-05 - sys_42: 4.5500360676152615e-05 - sys_43: 0.0001858283263348497 - sys_44: 5.599511790124221e-06 - sys_45: -0.0001059375880797751 - sys_46: -2.8013639061857464e-06 - sys_47: 4.177197814675559e-05 - sys_48: 7.189533610724911e-06 - sys_49: -0.00037137211267912137 - sys_50: -1.6001054519984645e-05 - sys_51: -5.92026537733015e-05 - sys_52: -6.036257414714269e-06 - sys_53: 5.186615454202725e-06 - sys_54: 0.00026189733509764503 - sys_55: -3.926489867288773e-05 - sys_56: -0.00013652651883573519 - sys_57: -0.0002996079266957647 - sys_58: -0.0001064192485596623 - sys_59: -0.0009675673996598508 - sys_60: -0.0018773687760410425 - sys_61: -0.00033288495340538446 - sys_62: 0.00024394712251612417 -- pol: 0.0005536 + sys_0: 1.72624160e-05 + sys_1: -1.44267749e-05 + sys_2: -2.46012323e-05 + sys_3: -8.89052555e-05 + sys_4: 2.50688288e-05 + sys_5: 2.79886580e-05 + sys_6: -8.06346915e-05 + sys_7: 6.64564155e-05 + sys_8: -3.93196087e-05 + sys_9: 3.04257677e-05 + sys_10: -6.06581070e-05 + sys_11: -1.19135385e-04 + sys_12: -2.62307194e-05 + sys_13: -7.13004916e-05 + sys_14: -7.87885878e-05 + sys_15: -7.96483554e-05 + sys_16: 4.61310655e-05 + sys_17: -1.57608120e-04 + sys_18: -4.56366886e-05 + sys_19: -5.06831335e-05 + sys_20: -4.76841612e-05 + sys_21: -1.66503009e-04 + sys_22: 1.69686694e-04 + sys_23: -1.18461717e-04 + sys_24: -1.80454044e-05 + sys_25: -4.35734238e-05 + sys_26: 8.28819585e-06 + sys_27: 1.14133297e-04 + sys_28: 2.67642083e-05 + sys_29: 8.63183705e-05 + sys_30: 2.35366484e-05 + sys_31: -1.85578977e-04 + sys_32: -2.40617925e-04 + sys_33: 8.08955995e-05 + sys_34: 9.47564977e-05 + sys_35: 3.04297165e-05 + sys_36: -7.65008609e-05 + sys_37: -1.94727878e-05 + sys_38: -6.96759046e-05 + sys_39: -1.01096428e-04 + sys_40: 1.49448238e-05 + sys_41: -1.00027736e-05 + sys_42: 4.55003607e-05 + sys_43: 1.85828326e-04 + sys_44: 5.59951179e-06 + sys_45: -1.05937588e-04 + sys_46: -2.80136391e-06 + sys_47: 4.17719781e-05 + sys_48: 7.18953361e-06 + sys_49: -3.71372113e-04 + sys_50: -1.60010545e-05 + sys_51: -5.92026538e-05 + sys_52: -6.03625741e-06 + sys_53: 5.18661545e-06 + sys_54: 2.61897335e-04 + sys_55: -3.92648987e-05 + sys_56: -1.36526519e-04 + sys_57: -2.99607927e-04 + sys_58: -1.06419249e-04 + sys_59: -9.67567400e-04 + sys_60: -1.87736878e-03 + sys_61: -3.32884953e-04 + sys_62: 2.43947123e-04 +- pol: 5.53600000e-04 lumi: 0.00047 - sys_0: 2.175313028375492e-05 - sys_1: -1.819708807827175e-05 - sys_2: -2.7441203294125437e-05 - sys_3: -8.699397414790279e-05 - sys_4: 3.2833878383815996e-05 - sys_5: 3.0420641636799187e-05 - sys_6: -8.796740154114992e-05 - sys_7: 6.456003049540894e-05 - sys_8: -4.716492376631433e-05 - sys_9: 3.904095560781794e-05 - sys_10: -7.216301219776293e-05 - sys_11: -0.00012777301639210891 - sys_12: -4.099995699473134e-05 - sys_13: -9.103177012742078e-05 - sys_14: -9.924490404087241e-05 - sys_15: -9.854967840364288e-05 - sys_16: 4.996842167125875e-05 - sys_17: -0.0001904298408644177 - sys_18: -7.533410297921872e-05 - sys_19: -5.435363672024995e-05 - sys_20: -7.121708472254303e-05 - sys_21: -0.00020659394787006407 - sys_22: 0.0002316141873488352 - sys_23: -0.0001498681314526342 - sys_24: -2.4730922030662915e-05 - sys_25: -6.700727744214607e-05 - sys_26: 6.143286510480737e-05 - sys_27: 0.00021899506457521804 - sys_28: 2.7219793446767685e-05 - sys_29: 0.00013528860014898176 - sys_30: 4.7841440068259846e-05 - sys_31: -0.0003406246102928935 - sys_32: -0.0006537046351273356 - sys_33: 0.0002895745346835615 - sys_34: 4.790720784220696e-05 - sys_35: 2.9190662012549116e-05 - sys_36: -7.557835888633401e-05 - sys_37: -3.7596194283405015e-05 - sys_38: -0.0004480548542085499 - sys_39: -0.001106161879836314 - sys_40: 0.0023607532455268213 - sys_41: -0.0007762612943848109 - sys_42: -0.00048062779592213773 - sys_43: -0.0004972776501498274 - sys_44: 2.597377397088823e-06 - sys_45: -0.00011572611788334584 - sys_46: 2.2346672571637492e-05 - sys_47: -2.669988087302134e-07 - sys_48: 2.2894077732991193e-06 - sys_49: 0.00031752625781050883 - sys_50: 3.087164985313282e-05 - sys_51: -4.118512025433484e-05 - sys_52: 5.128668099922126e-06 - sys_53: 1.4508318364952105e-05 - sys_54: -6.944508987419666e-05 - sys_55: -2.3542992138529192e-05 - sys_56: -9.065074949246495e-05 - sys_57: -0.00010528369452931478 - sys_58: -0.00010334060395955328 - sys_59: 5.5629930422357065e-05 - sys_60: 7.612522594561319e-05 - sys_61: 1.3847857237984632e-05 - sys_62: -1.144790850000392e-05 -- pol: 0.0005158399999999999 + sys_0: 2.17531303e-05 + sys_1: -1.81970881e-05 + sys_2: -2.74412033e-05 + sys_3: -8.69939741e-05 + sys_4: 3.28338784e-05 + sys_5: 3.04206416e-05 + sys_6: -8.79674015e-05 + sys_7: 6.45600305e-05 + sys_8: -4.71649238e-05 + sys_9: 3.90409556e-05 + sys_10: -7.21630122e-05 + sys_11: -1.27773016e-04 + sys_12: -4.09999570e-05 + sys_13: -9.10317701e-05 + sys_14: -9.92449040e-05 + sys_15: -9.85496784e-05 + sys_16: 4.99684217e-05 + sys_17: -1.90429841e-04 + sys_18: -7.53341030e-05 + sys_19: -5.43536367e-05 + sys_20: -7.12170847e-05 + sys_21: -2.06593948e-04 + sys_22: 2.31614187e-04 + sys_23: -1.49868131e-04 + sys_24: -2.47309220e-05 + sys_25: -6.70072774e-05 + sys_26: 6.14328651e-05 + sys_27: 2.18995065e-04 + sys_28: 2.72197934e-05 + sys_29: 1.35288600e-04 + sys_30: 4.78414401e-05 + sys_31: -3.40624610e-04 + sys_32: -6.53704635e-04 + sys_33: 2.89574535e-04 + sys_34: 4.79072078e-05 + sys_35: 2.91906620e-05 + sys_36: -7.55783589e-05 + sys_37: -3.75961943e-05 + sys_38: -4.48054854e-04 + sys_39: -1.10616188e-03 + sys_40: 2.36075325e-03 + sys_41: -7.76261294e-04 + sys_42: -4.80627796e-04 + sys_43: -4.97277650e-04 + sys_44: 2.59737740e-06 + sys_45: -1.15726118e-04 + sys_46: 2.23466726e-05 + sys_47: -2.66998809e-07 + sys_48: 2.28940777e-06 + sys_49: 3.17526258e-04 + sys_50: 3.08716499e-05 + sys_51: -4.11851203e-05 + sys_52: 5.12866810e-06 + sys_53: 1.45083184e-05 + sys_54: -6.94450899e-05 + sys_55: -2.35429921e-05 + sys_56: -9.06507495e-05 + sys_57: -1.05283695e-04 + sys_58: -1.03340604e-04 + sys_59: 5.56299304e-05 + sys_60: 7.61252259e-05 + sys_61: 1.38478572e-05 + sys_62: -1.14479085e-05 +- pol: 5.15840000e-04 lumi: 0.00047 - sys_0: 3.33195702490518e-05 - sys_1: -2.0269934304716464e-05 - sys_2: -3.397381868516458e-05 - sys_3: -8.683560660622073e-05 - sys_4: 5.1227038440085685e-05 - sys_5: 4.3958535455545464e-05 - sys_6: -0.00010356307367101545 - sys_7: 5.907963915384479e-05 - sys_8: -5.887818842103967e-05 - sys_9: 6.935380820120256e-05 - sys_10: -0.00010130112262428144 - sys_11: -0.00014819834927284068 - sys_12: -9.048007823160822e-05 - sys_13: -0.0001496490360647497 - sys_14: -0.0001497205285284818 - sys_15: -0.00013750472709222778 - sys_16: 2.227133514602775e-05 - sys_17: -0.00029524722269124636 - sys_18: -0.0001911309816717763 - sys_19: -6.416738022172892e-05 - sys_20: -0.00014760240188694686 - sys_21: -0.00035665629687677035 - sys_22: 0.0004845059335461944 - sys_23: -0.000310982517300744 - sys_24: -0.00011112671012977319 - sys_25: -0.00014190155106011266 - sys_26: 0.0008575000809477216 - sys_27: 0.0024766211939857585 - sys_28: -0.0029656834721886217 - sys_29: -0.0005513387477058596 - sys_30: -9.855191733054162e-05 - sys_31: 0.0002753724571182623 - sys_32: 0.00016518675021696537 - sys_33: -5.967010292334511e-05 - sys_34: 1.3835919397560322e-05 - sys_35: 1.4958397699104773e-05 - sys_36: -4.678080081563745e-05 - sys_37: -2.7203866518703508e-05 - sys_38: -3.6433706918878873e-06 - sys_39: 1.790355210244903e-05 - sys_40: -0.0002305399873305886 - sys_41: -0.00015619552921604453 - sys_42: -5.131740877191466e-05 - sys_43: -8.103231804117862e-05 - sys_44: -2.4762450889291374e-07 - sys_45: -0.0001072894768892987 - sys_46: 3.200724574184332e-05 - sys_47: -3.506972019972703e-06 - sys_48: 1.9551707595887487e-06 - sys_49: 0.00012685546725989174 - sys_50: 2.1559924094013612e-05 - sys_51: -5.881491370320182e-05 - sys_52: 1.7426084362154976e-06 - sys_53: 1.213985902664855e-05 - sys_54: -3.1244720693656704e-05 - sys_55: -2.3294200571951528e-05 - sys_56: -0.00010714321322819339 - sys_57: -9.172211561422875e-05 - sys_58: -0.00013004021041491994 - sys_59: 2.052566953359922e-05 - sys_60: 3.9205691362029246e-05 - sys_61: 1.1904562939187798e-05 - sys_62: -1.984196745594663e-05 -- pol: 0.00155392 + sys_0: 3.33195702e-05 + sys_1: -2.02699343e-05 + sys_2: -3.39738187e-05 + sys_3: -8.68356066e-05 + sys_4: 5.12270384e-05 + sys_5: 4.39585355e-05 + sys_6: -1.03563074e-04 + sys_7: 5.90796392e-05 + sys_8: -5.88781884e-05 + sys_9: 6.93538082e-05 + sys_10: -1.01301123e-04 + sys_11: -1.48198349e-04 + sys_12: -9.04800782e-05 + sys_13: -1.49649036e-04 + sys_14: -1.49720529e-04 + sys_15: -1.37504727e-04 + sys_16: 2.22713351e-05 + sys_17: -2.95247223e-04 + sys_18: -1.91130982e-04 + sys_19: -6.41673802e-05 + sys_20: -1.47602402e-04 + sys_21: -3.56656297e-04 + sys_22: 4.84505934e-04 + sys_23: -3.10982517e-04 + sys_24: -1.11126710e-04 + sys_25: -1.41901551e-04 + sys_26: 8.57500081e-04 + sys_27: 2.47662119e-03 + sys_28: -2.96568347e-03 + sys_29: -5.51338748e-04 + sys_30: -9.85519173e-05 + sys_31: 2.75372457e-04 + sys_32: 1.65186750e-04 + sys_33: -5.96701029e-05 + sys_34: 1.38359194e-05 + sys_35: 1.49583977e-05 + sys_36: -4.67808008e-05 + sys_37: -2.72038665e-05 + sys_38: -3.64337069e-06 + sys_39: 1.79035521e-05 + sys_40: -2.30539987e-04 + sys_41: -1.56195529e-04 + sys_42: -5.13174088e-05 + sys_43: -8.10323180e-05 + sys_44: -2.47624509e-07 + sys_45: -1.07289477e-04 + sys_46: 3.20072457e-05 + sys_47: -3.50697202e-06 + sys_48: 1.95517076e-06 + sys_49: 1.26855467e-04 + sys_50: 2.15599241e-05 + sys_51: -5.88149137e-05 + sys_52: 1.74260844e-06 + sys_53: 1.21398590e-05 + sys_54: -3.12447207e-05 + sys_55: -2.32942006e-05 + sys_56: -1.07143213e-04 + sys_57: -9.17221156e-05 + sys_58: -1.30040210e-04 + sys_59: 2.05256695e-05 + sys_60: 3.92056914e-05 + sys_61: 1.19045629e-05 + sys_62: -1.98419675e-05 +- pol: 1.55392000e-03 lumi: 0.00047 - sys_0: 6.139011568272508e-05 - sys_1: -3.4185486211394726e-05 - sys_2: -5.80293405940178e-05 - sys_3: -8.663360256961539e-05 - sys_4: 9.646623094033114e-05 - sys_5: 7.606166831572315e-05 - sys_6: -0.00016575779103327585 - sys_7: 3.282174475193526e-05 - sys_8: -4.0540070203886034e-05 - sys_9: 0.00016125172850523834 - sys_10: -0.00020025574055511768 - sys_11: -0.0002377575559367851 - sys_12: -0.000281157366874405 - sys_13: -0.0004429565882476286 - sys_14: -0.0004089821991368072 - sys_15: -0.00035949618225867305 - sys_16: -0.00047599084498729647 - sys_17: -0.002126496030741046 - sys_18: -0.005379055352518832 - sys_19: 0.0015642683770976786 - sys_20: 0.0016150987588571014 - sys_21: 0.0005432745511484932 - sys_22: -0.0004955923953678252 - sys_23: 0.00011102124234995092 - sys_24: 9.441289014443767e-05 - sys_25: -4.918440722883872e-05 - sys_26: -0.0004340095714947622 - sys_27: -0.0003038492314444565 - sys_28: -0.0001310781350430956 - sys_29: -3.407563868412241e-05 - sys_30: 4.68891166138885e-06 - sys_31: 1.4829001622695413e-05 - sys_32: 5.061328100380999e-06 - sys_33: -9.59366981885579e-06 - sys_34: -4.934353313047879e-07 - sys_35: 4.381940990904801e-06 - sys_36: -1.4308805980678375e-05 - sys_37: -2.4212526457126138e-05 - sys_38: -2.5830614876854136e-05 - sys_39: -2.1784148183658164e-05 - sys_40: -0.00014590181210275165 - sys_41: -0.0001479317081536163 - sys_42: -3.385549622139266e-05 - sys_43: -5.1867207933584796e-05 - sys_44: -4.6971737290000775e-06 - sys_45: -5.288765095433412e-05 - sys_46: 2.241832614120492e-05 - sys_47: 3.4146225622021395e-06 - sys_48: 1.5209260353566648e-06 - sys_49: 9.94185339978485e-05 - sys_50: 1.8833517997928074e-05 - sys_51: -5.623992674187161e-05 - sys_52: -1.3303523908455791e-06 - sys_53: 5.219914120893969e-06 - sys_54: -3.397677990192548e-05 - sys_55: -1.949696763565897e-05 - sys_56: -9.53108779368897e-05 - sys_57: -6.636098407180715e-05 - sys_58: -9.507827427535796e-05 - sys_59: 9.279264333889731e-07 - sys_60: 1.772712201089395e-05 - sys_61: 7.770488021388353e-08 - sys_62: -4.936707933947749e-06 -- pol: 0.0006803200000000001 + sys_0: 6.13901157e-05 + sys_1: -3.41854862e-05 + sys_2: -5.80293406e-05 + sys_3: -8.66336026e-05 + sys_4: 9.64662309e-05 + sys_5: 7.60616683e-05 + sys_6: -1.65757791e-04 + sys_7: 3.28217448e-05 + sys_8: -4.05400702e-05 + sys_9: 1.61251729e-04 + sys_10: -2.00255741e-04 + sys_11: -2.37757556e-04 + sys_12: -2.81157367e-04 + sys_13: -4.42956588e-04 + sys_14: -4.08982199e-04 + sys_15: -3.59496182e-04 + sys_16: -4.75990845e-04 + sys_17: -2.12649603e-03 + sys_18: -5.37905535e-03 + sys_19: 1.56426838e-03 + sys_20: 1.61509876e-03 + sys_21: 5.43274551e-04 + sys_22: -4.95592395e-04 + sys_23: 1.11021242e-04 + sys_24: 9.44128901e-05 + sys_25: -4.91844072e-05 + sys_26: -4.34009571e-04 + sys_27: -3.03849231e-04 + sys_28: -1.31078135e-04 + sys_29: -3.40756387e-05 + sys_30: 4.68891166e-06 + sys_31: 1.48290016e-05 + sys_32: 5.06132810e-06 + sys_33: -9.59366982e-06 + sys_34: -4.93435331e-07 + sys_35: 4.38194099e-06 + sys_36: -1.43088060e-05 + sys_37: -2.42125265e-05 + sys_38: -2.58306149e-05 + sys_39: -2.17841482e-05 + sys_40: -1.45901812e-04 + sys_41: -1.47931708e-04 + sys_42: -3.38554962e-05 + sys_43: -5.18672079e-05 + sys_44: -4.69717373e-06 + sys_45: -5.28876510e-05 + sys_46: 2.24183261e-05 + sys_47: 3.41462256e-06 + sys_48: 1.52092604e-06 + sys_49: 9.94185340e-05 + sys_50: 1.88335180e-05 + sys_51: -5.62399267e-05 + sys_52: -1.33035239e-06 + sys_53: 5.21991412e-06 + sys_54: -3.39767799e-05 + sys_55: -1.94969676e-05 + sys_56: -9.53108779e-05 + sys_57: -6.63609841e-05 + sys_58: -9.50782743e-05 + sys_59: 9.27926433e-07 + sys_60: 1.77271220e-05 + sys_61: 7.77048802e-08 + sys_62: -4.93670793e-06 +- pol: 6.80320000e-04 lumi: 0.00047 - sys_0: 9.608542661026645e-05 - sys_1: -6.64321598249499e-05 - sys_2: -9.623739029659754e-05 - sys_3: -0.00010804939063241 - sys_4: 0.000177172689644486 - sys_5: 0.00018225386444830773 - sys_6: -0.0003777774222383486 - sys_7: -4.7532964458123775e-05 - sys_8: 0.0004179077835855241 - sys_9: 0.0004734928421227293 - sys_10: -0.0008170279142312073 - sys_11: -0.0010037323631446621 - sys_12: -0.009353639810785625 - sys_13: 0.0006460541145013732 - sys_14: 0.000137578840686238 - sys_15: 6.202290310354084e-05 - sys_16: 0.0011296728797818897 - sys_17: 0.00035262542639551554 - sys_18: 0.0002568240635315549 - sys_19: 3.360820780055529e-05 - sys_20: 0.00015265329853260943 - sys_21: 8.009561016823237e-05 - sys_22: -9.391537588894451e-05 - sys_23: -2.7176408375103396e-05 - sys_24: 8.367470579952393e-05 - sys_25: -0.0001306850954495585 - sys_26: -0.00034165963201746225 - sys_27: -0.00017734109474647645 - sys_28: -0.00012609508164140032 - sys_29: -2.665707909170313e-05 - sys_30: 1.0361347665308788e-05 - sys_31: -7.584757415128892e-07 - sys_32: -1.3914582578247175e-06 - sys_33: -2.5789538224691527e-06 - sys_34: -2.5020145154188347e-06 - sys_35: 1.2752823705752572e-06 - sys_36: -3.421793347246788e-06 - sys_37: -1.3565673369320941e-05 - sys_38: -2.2701612295111845e-05 - sys_39: -1.8459529733310965e-05 - sys_40: -9.822031670516472e-05 - sys_41: -0.00011371231921398762 - sys_42: -2.5546137304643582e-05 - sys_43: -4.379070386114988e-05 - sys_44: -5.301075769651353e-06 - sys_45: -1.9516037888867598e-05 - sys_46: 1.2082416060690136e-05 - sys_47: 5.081659111991232e-06 - sys_48: 9.832979228605034e-07 - sys_49: 7.42214782777268e-05 - sys_50: 1.349405352609855e-05 - sys_51: -3.915763918677453e-05 - sys_52: -2.6950865438054693e-06 - sys_53: -2.67047519532542e-07 - sys_54: -3.3440915614687264e-05 - sys_55: -1.250799001232248e-05 - sys_56: -6.062182294228672e-05 - sys_57: -3.752695578168338e-05 - sys_58: -4.6064681779413366e-05 - sys_59: -4.217062209114723e-06 - sys_60: 6.988389415647484e-06 - sys_61: -6.1917684819950825e-06 - sys_62: 8.79324988293237e-06 -- pol: 0.00079872 + sys_0: 9.60854266e-05 + sys_1: -6.64321598e-05 + sys_2: -9.62373903e-05 + sys_3: -1.08049391e-04 + sys_4: 1.77172690e-04 + sys_5: 1.82253864e-04 + sys_6: -3.77777422e-04 + sys_7: -4.75329645e-05 + sys_8: 4.17907784e-04 + sys_9: 4.73492842e-04 + sys_10: -8.17027914e-04 + sys_11: -1.00373236e-03 + sys_12: -9.35363981e-03 + sys_13: 6.46054115e-04 + sys_14: 1.37578841e-04 + sys_15: 6.20229031e-05 + sys_16: 1.12967288e-03 + sys_17: 3.52625426e-04 + sys_18: 2.56824064e-04 + sys_19: 3.36082078e-05 + sys_20: 1.52653299e-04 + sys_21: 8.00956102e-05 + sys_22: -9.39153759e-05 + sys_23: -2.71764084e-05 + sys_24: 8.36747058e-05 + sys_25: -1.30685095e-04 + sys_26: -3.41659632e-04 + sys_27: -1.77341095e-04 + sys_28: -1.26095082e-04 + sys_29: -2.66570791e-05 + sys_30: 1.03613477e-05 + sys_31: -7.58475742e-07 + sys_32: -1.39145826e-06 + sys_33: -2.57895382e-06 + sys_34: -2.50201452e-06 + sys_35: 1.27528237e-06 + sys_36: -3.42179335e-06 + sys_37: -1.35656734e-05 + sys_38: -2.27016123e-05 + sys_39: -1.84595297e-05 + sys_40: -9.82203167e-05 + sys_41: -1.13712319e-04 + sys_42: -2.55461373e-05 + sys_43: -4.37907039e-05 + sys_44: -5.30107577e-06 + sys_45: -1.95160379e-05 + sys_46: 1.20824161e-05 + sys_47: 5.08165911e-06 + sys_48: 9.83297923e-07 + sys_49: 7.42214783e-05 + sys_50: 1.34940535e-05 + sys_51: -3.91576392e-05 + sys_52: -2.69508654e-06 + sys_53: -2.67047520e-07 + sys_54: -3.34409156e-05 + sys_55: -1.25079900e-05 + sys_56: -6.06218229e-05 + sys_57: -3.75269558e-05 + sys_58: -4.60646818e-05 + sys_59: -4.21706221e-06 + sys_60: 6.98838942e-06 + sys_61: -6.19176848e-06 + sys_62: 8.79324988e-06 +- pol: 7.98720000e-04 lumi: 0.00047 - sys_0: 0.00020828164634531613 - sys_1: -0.0001629983691797907 - sys_2: -0.00026097907674231573 - sys_3: -0.00017728187348293014 - sys_4: 0.0007318139604624546 - sys_5: 0.001336016870607773 - sys_6: -0.011341897194376463 - sys_7: -0.01089388716083571 - sys_8: -0.0031601605735609942 - sys_9: -0.001025911661043361 - sys_10: 0.0002576465553384494 - sys_11: 0.00018362860920218468 - sys_12: 0.00030263095575456584 - sys_13: 5.8053091568673076e-05 - sys_14: -6.976800013811566e-05 - sys_15: -7.739527738737715e-05 - sys_16: 0.0006968570021638776 - sys_17: 0.00011896926818818836 - sys_18: 8.330615024466176e-05 - sys_19: 2.987354929665822e-05 - sys_20: 9.412806431740994e-05 - sys_21: 4.551327880787219e-05 - sys_22: -4.5548108696745566e-05 - sys_23: -1.0829086772317412e-05 - sys_24: 3.658549282056332e-05 - sys_25: -6.894012452827184e-05 - sys_26: -0.0001945504764081444 - sys_27: -9.7160965466301e-05 - sys_28: -9.311411457146567e-05 - sys_29: -1.695490299475834e-05 - sys_30: 1.3063807580547728e-05 - sys_31: -3.8689771445202e-06 - sys_32: 6.8160583515424205e-06 - sys_33: -4.1817359180364543e-07 - sys_34: -1.7469072258648266e-06 - sys_35: 2.7469060411095443e-07 - sys_36: -4.111629279048478e-07 - sys_37: -6.30753434507192e-06 - sys_38: 4.457137810008553e-07 - sys_39: -5.260693974905045e-06 - sys_40: -3.122279097331721e-05 - sys_41: -4.0101127124578104e-05 - sys_42: -9.405993291975754e-06 - sys_43: -1.5652508785806023e-05 - sys_44: -4.0038681713132274e-06 - sys_45: -5.625627435294636e-06 - sys_46: 5.873651827865267e-06 - sys_47: 2.6406083421702737e-06 - sys_48: 5.811778751836584e-07 - sys_49: 4.150449167021374e-05 - sys_50: 7.713000919091289e-06 - sys_51: -2.3165476173916675e-05 - sys_52: -1.6357571627449205e-06 - sys_53: -2.1393302736939653e-07 - sys_54: -2.0878274272225664e-05 - sys_55: -6.051742935503869e-06 - sys_56: -2.9823423334173047e-05 - sys_57: -1.532958871404336e-05 - sys_58: -1.1344355075455355e-05 - sys_59: -4.801231116594149e-06 - sys_60: 1.5328014661216898e-06 - sys_61: -6.21403777451771e-06 - sys_62: 1.0322582318220276e-05 -- pol: 0.00322368 + sys_0: 2.08281646e-04 + sys_1: -1.62998369e-04 + sys_2: -2.60979077e-04 + sys_3: -1.77281873e-04 + sys_4: 7.31813960e-04 + sys_5: 1.33601687e-03 + sys_6: -1.13418972e-02 + sys_7: -1.08938872e-02 + sys_8: -3.16016057e-03 + sys_9: -1.02591166e-03 + sys_10: 2.57646555e-04 + sys_11: 1.83628609e-04 + sys_12: 3.02630956e-04 + sys_13: 5.80530916e-05 + sys_14: -6.97680001e-05 + sys_15: -7.73952774e-05 + sys_16: 6.96857002e-04 + sys_17: 1.18969268e-04 + sys_18: 8.33061502e-05 + sys_19: 2.98735493e-05 + sys_20: 9.41280643e-05 + sys_21: 4.55132788e-05 + sys_22: -4.55481087e-05 + sys_23: -1.08290868e-05 + sys_24: 3.65854928e-05 + sys_25: -6.89401245e-05 + sys_26: -1.94550476e-04 + sys_27: -9.71609655e-05 + sys_28: -9.31141146e-05 + sys_29: -1.69549030e-05 + sys_30: 1.30638076e-05 + sys_31: -3.86897714e-06 + sys_32: 6.81605835e-06 + sys_33: -4.18173592e-07 + sys_34: -1.74690723e-06 + sys_35: 2.74690604e-07 + sys_36: -4.11162928e-07 + sys_37: -6.30753435e-06 + sys_38: 4.45713781e-07 + sys_39: -5.26069397e-06 + sys_40: -3.12227910e-05 + sys_41: -4.01011271e-05 + sys_42: -9.40599329e-06 + sys_43: -1.56525088e-05 + sys_44: -4.00386817e-06 + sys_45: -5.62562744e-06 + sys_46: 5.87365183e-06 + sys_47: 2.64060834e-06 + sys_48: 5.81177875e-07 + sys_49: 4.15044917e-05 + sys_50: 7.71300092e-06 + sys_51: -2.31654762e-05 + sys_52: -1.63575716e-06 + sys_53: -2.13933027e-07 + sys_54: -2.08782743e-05 + sys_55: -6.05174294e-06 + sys_56: -2.98234233e-05 + sys_57: -1.53295887e-05 + sys_58: -1.13443551e-05 + sys_59: -4.80123112e-06 + sys_60: 1.53280147e-06 + sys_61: -6.21403777e-06 + sys_62: 1.03225823e-05 +- pol: 3.22368000e-03 lumi: 0.00047 - sys_0: 0.0033924900105812865 - sys_1: -0.0028028988787757434 - sys_2: -0.029151398757084886 - sys_3: 0.004745491566422673 - sys_4: -0.0007869933756340149 - sys_5: -0.000433861696266657 - sys_6: 0.0005899715224549843 - sys_7: 0.0002828612972663543 - sys_8: -0.0011340102775581325 - sys_9: -0.0005184520047096283 - sys_10: 0.00012999578902163865 - sys_11: 6.201448659967911e-05 - sys_12: 9.33463608775845e-05 - sys_13: 0.00016695809292151207 - sys_14: 8.448031918754158e-05 - sys_15: -4.374439585736681e-06 - sys_16: 0.00027510299019308854 - sys_17: 7.910356449242864e-05 - sys_18: 6.597560721570523e-05 - sys_19: 3.713490651837707e-05 - sys_20: 0.00012869074452446483 - sys_21: 7.701098320069474e-05 - sys_22: -9.280021270892203e-05 - sys_23: 4.914444960446199e-05 - sys_24: -2.2308769976330495e-05 - sys_25: 3.718039682970421e-05 - sys_26: -7.67892408245297e-05 - sys_27: -6.099559903098298e-05 - sys_28: -7.82508744262776e-05 - sys_29: -5.116497921899015e-06 - sys_30: 1.6894466728065055e-05 - sys_31: -1.3031895449970527e-05 - sys_32: 7.14507958387361e-06 - sys_33: 1.291778971874901e-07 - sys_34: -1.5038476361208436e-06 - sys_35: 7.14274873324868e-08 - sys_36: 1.1980789982894148e-07 - sys_37: -8.519897129217026e-06 - sys_38: 1.7188860268738263e-05 - sys_39: -1.2144482553550461e-06 - sys_40: -6.052003214011705e-07 - sys_41: -8.451580206093078e-06 - sys_42: -2.24470772774026e-06 - sys_43: 2.0217710211987013e-06 - sys_44: -6.489165299677059e-06 - sys_45: -3.0998064690581408e-06 - sys_46: 7.605833129393726e-06 - sys_47: 1.330910520459328e-07 - sys_48: 5.393777959808106e-07 - sys_49: 4.102499093238151e-05 - sys_50: 8.874819823684823e-06 - sys_51: -2.889011600747787e-05 - sys_52: -9.367763922619733e-07 - sys_53: 2.1121176873112884e-06 - sys_54: -2.0002495422165426e-05 - sys_55: -6.268854935306007e-06 - sys_56: -3.3140127259812366e-05 - sys_57: -1.2663278438855735e-05 - sys_58: -6.315720022858525e-07 - sys_59: -7.844151169494692e-06 - sys_60: -1.3178086868409697e-06 - sys_61: -8.182821651826988e-06 - sys_62: 1.2705398803363362e-05 + sys_0: 3.39249001e-03 + sys_1: -2.80289888e-03 + sys_2: -2.91513988e-02 + sys_3: 4.74549157e-03 + sys_4: -7.86993376e-04 + sys_5: -4.33861696e-04 + sys_6: 5.89971522e-04 + sys_7: 2.82861297e-04 + sys_8: -1.13401028e-03 + sys_9: -5.18452005e-04 + sys_10: 1.29995789e-04 + sys_11: 6.20144866e-05 + sys_12: 9.33463609e-05 + sys_13: 1.66958093e-04 + sys_14: 8.44803192e-05 + sys_15: -4.37443959e-06 + sys_16: 2.75102990e-04 + sys_17: 7.91035645e-05 + sys_18: 6.59756072e-05 + sys_19: 3.71349065e-05 + sys_20: 1.28690745e-04 + sys_21: 7.70109832e-05 + sys_22: -9.28002127e-05 + sys_23: 4.91444496e-05 + sys_24: -2.23087700e-05 + sys_25: 3.71803968e-05 + sys_26: -7.67892408e-05 + sys_27: -6.09955990e-05 + sys_28: -7.82508744e-05 + sys_29: -5.11649792e-06 + sys_30: 1.68944667e-05 + sys_31: -1.30318954e-05 + sys_32: 7.14507958e-06 + sys_33: 1.29177897e-07 + sys_34: -1.50384764e-06 + sys_35: 7.14274873e-08 + sys_36: 1.19807900e-07 + sys_37: -8.51989713e-06 + sys_38: 1.71888603e-05 + sys_39: -1.21444826e-06 + sys_40: -6.05200321e-07 + sys_41: -8.45158021e-06 + sys_42: -2.24470773e-06 + sys_43: 2.02177102e-06 + sys_44: -6.48916530e-06 + sys_45: -3.09980647e-06 + sys_46: 7.60583313e-06 + sys_47: 1.33091052e-07 + sys_48: 5.39377796e-07 + sys_49: 4.10249909e-05 + sys_50: 8.87481982e-06 + sys_51: -2.88901160e-05 + sys_52: -9.36776392e-07 + sys_53: 2.11211769e-06 + sys_54: -2.00024954e-05 + sys_55: -6.26885494e-06 + sys_56: -3.31401273e-05 + sys_57: -1.26632784e-05 + sys_58: -6.31572002e-07 + sys_59: -7.84415117e-06 + sys_60: -1.31780869e-06 + sys_61: -8.18282165e-06 + sys_62: 1.27053988e-05 diff --git a/nnpdf_data/nnpdf_data/commondata/STAR-2013_2JET_510GEV/uncertainties_C.yaml b/nnpdf_data/nnpdf_data/commondata/STAR-2013_2JET_510GEV/uncertainties_C.yaml index 7308752eba..a26300d1b4 100644 --- a/nnpdf_data/nnpdf_data/commondata/STAR-2013_2JET_510GEV/uncertainties_C.yaml +++ b/nnpdf_data/nnpdf_data/commondata/STAR-2013_2JET_510GEV/uncertainties_C.yaml @@ -260,783 +260,783 @@ definitions: treatment: ADD type: STAR2013JETunc62 bins: -- pol: 0.0007392 +- pol: 7.39200000e-04 lumi: 0.00047 - sys_0: 7.00160637523013e-05 - sys_1: -6.909280714576145e-05 - sys_2: -0.0004953053378852813 - sys_3: -9.841261829745107e-05 - sys_4: 1.9113870441860434e-05 - sys_5: 5.582293966839562e-05 - sys_6: -0.00023002943336768075 - sys_7: 4.9852163715832317e-05 - sys_8: -0.0002730782989353135 - sys_9: -8.41654967426027e-06 - sys_10: -0.00019070318634097812 - sys_11: -0.00039645335433868037 - sys_12: -0.0003797411506518624 - sys_13: -0.0004925070153427521 - sys_14: -0.007467886137490424 - sys_15: 0.0017317404403193858 - sys_16: -0.0014217567592266836 - sys_17: 0.0005549960885445169 - sys_18: 0.0002854136241417549 - sys_19: 8.335951976511158e-05 - sys_20: -3.0324229645947552e-05 - sys_21: 0.00019145263482990538 - sys_22: -0.00015360939724363428 - sys_23: 8.613534611894741e-05 - sys_24: -2.254564939613342e-05 - sys_25: 7.207497200675414e-06 - sys_26: 4.208759280918397e-05 - sys_27: -3.1148499600688586e-05 - sys_28: 2.2627827077918992e-05 - sys_29: -3.607165760527424e-05 - sys_30: -8.446337864466793e-06 - sys_31: 4.288555756311873e-05 - sys_32: 5.673156947572987e-05 - sys_33: -1.571530888312848e-05 - sys_34: -1.4681957338210225e-06 - sys_35: -4.3433405580868966e-07 - sys_36: 1.595668677911625e-06 - sys_37: 6.559213587377168e-06 - sys_38: 1.8279144825330706e-05 - sys_39: 2.463580235540852e-05 - sys_40: 2.014579714334959e-05 - sys_41: -8.548076286542674e-06 - sys_42: -7.299561606073921e-06 - sys_43: -2.2413448895054744e-05 - sys_44: -2.693584519664945e-07 - sys_45: 3.344915736223142e-06 - sys_46: -7.120787229252764e-07 - sys_47: -3.310476395264898e-07 - sys_48: -2.1258420075091096e-06 - sys_49: -1.4288118953242572e-05 - sys_50: -7.772899951808624e-06 - sys_51: 1.0021104236357634e-05 - sys_52: -1.3995949274471482e-05 - sys_53: -3.2910658149641124e-06 - sys_54: -6.951957115464093e-06 - sys_55: -6.085161415647004e-07 - sys_56: 9.109542961035052e-06 - sys_57: 8.285583767299357e-06 - sys_58: -3.449151151980571e-06 - sys_59: -7.729892262479967e-08 - sys_60: -3.1662731447459557e-06 - sys_61: -1.585032502481095e-06 - sys_62: 9.587184177680814e-06 + sys_0: 7.00160638e-05 + sys_1: -6.90928071e-05 + sys_2: -4.95305338e-04 + sys_3: -9.84126183e-05 + sys_4: 1.91138704e-05 + sys_5: 5.58229397e-05 + sys_6: -2.30029433e-04 + sys_7: 4.98521637e-05 + sys_8: -2.73078299e-04 + sys_9: -8.41654967e-06 + sys_10: -1.90703186e-04 + sys_11: -3.96453354e-04 + sys_12: -3.79741151e-04 + sys_13: -4.92507015e-04 + sys_14: -7.46788614e-03 + sys_15: 1.73174044e-03 + sys_16: -1.42175676e-03 + sys_17: 5.54996089e-04 + sys_18: 2.85413624e-04 + sys_19: 8.33595198e-05 + sys_20: -3.03242296e-05 + sys_21: 1.91452635e-04 + sys_22: -1.53609397e-04 + sys_23: 8.61353461e-05 + sys_24: -2.25456494e-05 + sys_25: 7.20749720e-06 + sys_26: 4.20875928e-05 + sys_27: -3.11484996e-05 + sys_28: 2.26278271e-05 + sys_29: -3.60716576e-05 + sys_30: -8.44633786e-06 + sys_31: 4.28855576e-05 + sys_32: 5.67315695e-05 + sys_33: -1.57153089e-05 + sys_34: -1.46819573e-06 + sys_35: -4.34334056e-07 + sys_36: 1.59566868e-06 + sys_37: 6.55921359e-06 + sys_38: 1.82791448e-05 + sys_39: 2.46358024e-05 + sys_40: 2.01457971e-05 + sys_41: -8.54807629e-06 + sys_42: -7.29956161e-06 + sys_43: -2.24134489e-05 + sys_44: -2.69358452e-07 + sys_45: 3.34491574e-06 + sys_46: -7.12078723e-07 + sys_47: -3.31047640e-07 + sys_48: -2.12584201e-06 + sys_49: -1.42881190e-05 + sys_50: -7.77289995e-06 + sys_51: 1.00211042e-05 + sys_52: -1.39959493e-05 + sys_53: -3.29106581e-06 + sys_54: -6.95195712e-06 + sys_55: -6.08516142e-07 + sys_56: 9.10954296e-06 + sys_57: 8.28558377e-06 + sys_58: -3.44915115e-06 + sys_59: -7.72989226e-08 + sys_60: -3.16627314e-06 + sys_61: -1.58503250e-06 + sys_62: 9.58718418e-06 - pol: 4.8e-05 lumi: 0.00047 - sys_0: 0.00013143172933847673 - sys_1: -8.281985671881321e-05 - sys_2: -0.0005250547965538272 - sys_3: -9.46968171119514e-05 - sys_4: 0.00010770368041230355 - sys_5: 6.450352918349111e-05 - sys_6: -0.0002045691672117633 - sys_7: 3.618925396028875e-05 - sys_8: -0.0002705651614929617 - sys_9: 0.00012832203541596467 - sys_10: -0.00016340076024126606 - sys_11: -0.00023364378402806343 - sys_12: -0.0002059740511516441 - sys_13: -0.00035818821108478215 - sys_14: -0.00019378727664783822 - sys_15: -0.00030447123179438995 - sys_16: 0.00033953204556268473 - sys_17: -0.00046155846036732286 - sys_18: -0.00040848144792726373 - sys_19: -0.00015079736641775322 - sys_20: -0.00038297791493495864 - sys_21: -0.0007016071587140195 - sys_22: 0.0008810606501881322 - sys_23: -0.000797314493192856 - sys_24: 0.00037333187160303326 - sys_25: -0.0009028711204651842 - sys_26: 0.00019031954928144763 - sys_27: 0.001234844090741873 - sys_28: 0.0015031528536107162 - sys_29: 0.000604151514674611 - sys_30: -0.001946965777016101 - sys_31: 0.0010310453509008025 - sys_32: 0.001108138642095662 - sys_33: -0.0003390949705625729 - sys_34: -1.7245843537258824e-05 - sys_35: -2.287886271336097e-06 - sys_36: 1.0582691888375089e-05 - sys_37: -0.00025270228093650333 - sys_38: 0.0006799332225195791 - sys_39: 0.00023371413945578328 - sys_40: 0.00032246835499421584 - sys_41: -0.00013747124654967107 - sys_42: -4.5960513854898144e-07 - sys_43: 3.139140035628263e-05 - sys_44: -4.1700722060941695e-05 - sys_45: 3.836440592804847e-06 - sys_46: 4.2992943463212866e-05 - sys_47: -7.89902897007156e-06 - sys_48: 8.792590939304309e-06 - sys_49: 0.0003909753757535917 - sys_50: 4.994687340138396e-05 - sys_51: -0.00027495301357656607 - sys_52: -4.5288054910053484e-05 - sys_53: -8.632300816981857e-07 - sys_54: -0.00021752747336919087 - sys_55: -3.6793560196026386e-05 - sys_56: -0.00019253229828759724 - sys_57: -4.559913877317194e-05 - sys_58: -1.4109038480302656e-06 - sys_59: -7.425875842101469e-05 - sys_60: -3.3968812383608827e-05 - sys_61: -7.048671922539622e-05 - sys_62: 0.00015260044915104494 -- pol: 0.00018752 + sys_0: 1.31431729e-04 + sys_1: -8.28198567e-05 + sys_2: -5.25054797e-04 + sys_3: -9.46968171e-05 + sys_4: 1.07703680e-04 + sys_5: 6.45035292e-05 + sys_6: -2.04569167e-04 + sys_7: 3.61892540e-05 + sys_8: -2.70565161e-04 + sys_9: 1.28322035e-04 + sys_10: -1.63400760e-04 + sys_11: -2.33643784e-04 + sys_12: -2.05974051e-04 + sys_13: -3.58188211e-04 + sys_14: -1.93787277e-04 + sys_15: -3.04471232e-04 + sys_16: 3.39532046e-04 + sys_17: -4.61558460e-04 + sys_18: -4.08481448e-04 + sys_19: -1.50797366e-04 + sys_20: -3.82977915e-04 + sys_21: -7.01607159e-04 + sys_22: 8.81060650e-04 + sys_23: -7.97314493e-04 + sys_24: 3.73331872e-04 + sys_25: -9.02871120e-04 + sys_26: 1.90319549e-04 + sys_27: 1.23484409e-03 + sys_28: 1.50315285e-03 + sys_29: 6.04151515e-04 + sys_30: -1.94696578e-03 + sys_31: 1.03104535e-03 + sys_32: 1.10813864e-03 + sys_33: -3.39094971e-04 + sys_34: -1.72458435e-05 + sys_35: -2.28788627e-06 + sys_36: 1.05826919e-05 + sys_37: -2.52702281e-04 + sys_38: 6.79933223e-04 + sys_39: 2.33714139e-04 + sys_40: 3.22468355e-04 + sys_41: -1.37471247e-04 + sys_42: -4.59605139e-07 + sys_43: 3.13914004e-05 + sys_44: -4.17007221e-05 + sys_45: 3.83644059e-06 + sys_46: 4.29929435e-05 + sys_47: -7.89902897e-06 + sys_48: 8.79259094e-06 + sys_49: 3.90975376e-04 + sys_50: 4.99468734e-05 + sys_51: -2.74953014e-04 + sys_52: -4.52880549e-05 + sys_53: -8.63230082e-07 + sys_54: -2.17527473e-04 + sys_55: -3.67935602e-05 + sys_56: -1.92532298e-04 + sys_57: -4.55991388e-05 + sys_58: -1.41090385e-06 + sys_59: -7.42587584e-05 + sys_60: -3.39688124e-05 + sys_61: -7.04867192e-05 + sys_62: 1.52600449e-04 +- pol: 1.87520000e-04 lumi: 0.00047 - sys_0: 6.258816803452586e-05 - sys_1: -5.2350254375660305e-05 - sys_2: -0.0005106609744399047 - sys_3: -8.920342220415045e-05 - sys_4: -7.811430781168402e-06 - sys_5: 1.0881194427764151e-05 - sys_6: -0.000192858316731044 - sys_7: 2.914174607732803e-05 - sys_8: -0.00018539211355771105 - sys_9: -4.2257132498815026e-05 - sys_10: -4.3686805440052004e-05 - sys_11: -0.00019751142310154334 - sys_12: -0.00015608004142468317 - sys_13: -1.1158334653853544e-05 - sys_14: -0.00011242974087338977 - sys_15: -6.999470506332918e-05 - sys_16: 0.00022392757666138565 - sys_17: -0.0002360283853331663 - sys_18: -0.00016842569692892471 - sys_19: -2.6518783472871272e-05 - sys_20: 0.00010243120515731501 - sys_21: -0.00017197261236627477 - sys_22: 0.00010357967421803294 - sys_23: -0.00023910032230967923 - sys_24: -4.1600431249255586e-05 - sys_25: -0.0002550690221295962 - sys_26: -0.00023514573651719977 - sys_27: 0.00039937002446806887 - sys_28: 7.14083294827765e-05 - sys_29: 0.00028523896178933177 - sys_30: -0.0009380511500879842 - sys_31: -7.196898734372205e-05 - sys_32: 0.0005621080353052738 - sys_33: 0.0023840682573135668 - sys_34: -1.7006892328900114e-06 - sys_35: -6.3105942510317525e-06 - sys_36: 1.1853049360265366e-05 - sys_37: 0.00026931617457945774 - sys_38: -0.001097404029101728 - sys_39: 0.00026466168558884575 - sys_40: -2.684723245831247e-05 - sys_41: -0.00015877277241536103 - sys_42: 0.0002691698222654151 - sys_43: 9.103154427900766e-05 - sys_44: 6.376469660391325e-05 - sys_45: 4.5469662819107286e-05 - sys_46: -8.027004788956909e-05 - sys_47: 8.189603588398125e-06 - sys_48: -2.1414148123248065e-06 - sys_49: -0.0006265828031488922 - sys_50: -0.00015061588301256286 - sys_51: 0.00045801083440538524 - sys_52: 9.166914552728668e-06 - sys_53: -4.4319949754358066e-05 - sys_54: 0.0002549572153316408 - sys_55: 8.343670522767642e-05 - sys_56: 0.0004004159458674995 - sys_57: 0.00016225705630739566 - sys_58: -1.2970848013356474e-05 - sys_59: 0.00010557948584019492 - sys_60: 1.527180149637088e-05 - sys_61: 8.973505877771258e-05 - sys_62: -0.00013812753045245221 -- pol: 1.1520000000000002e-05 + sys_0: 6.25881680e-05 + sys_1: -5.23502544e-05 + sys_2: -5.10660974e-04 + sys_3: -8.92034222e-05 + sys_4: -7.81143078e-06 + sys_5: 1.08811944e-05 + sys_6: -1.92858317e-04 + sys_7: 2.91417461e-05 + sys_8: -1.85392114e-04 + sys_9: -4.22571325e-05 + sys_10: -4.36868054e-05 + sys_11: -1.97511423e-04 + sys_12: -1.56080041e-04 + sys_13: -1.11583347e-05 + sys_14: -1.12429741e-04 + sys_15: -6.99947051e-05 + sys_16: 2.23927577e-04 + sys_17: -2.36028385e-04 + sys_18: -1.68425697e-04 + sys_19: -2.65187835e-05 + sys_20: 1.02431205e-04 + sys_21: -1.71972612e-04 + sys_22: 1.03579674e-04 + sys_23: -2.39100322e-04 + sys_24: -4.16004312e-05 + sys_25: -2.55069022e-04 + sys_26: -2.35145737e-04 + sys_27: 3.99370024e-04 + sys_28: 7.14083295e-05 + sys_29: 2.85238962e-04 + sys_30: -9.38051150e-04 + sys_31: -7.19689873e-05 + sys_32: 5.62108035e-04 + sys_33: 2.38406826e-03 + sys_34: -1.70068923e-06 + sys_35: -6.31059425e-06 + sys_36: 1.18530494e-05 + sys_37: 2.69316175e-04 + sys_38: -1.09740403e-03 + sys_39: 2.64661686e-04 + sys_40: -2.68472325e-05 + sys_41: -1.58772772e-04 + sys_42: 2.69169822e-04 + sys_43: 9.10315443e-05 + sys_44: 6.37646966e-05 + sys_45: 4.54696628e-05 + sys_46: -8.02700479e-05 + sys_47: 8.18960359e-06 + sys_48: -2.14141481e-06 + sys_49: -6.26582803e-04 + sys_50: -1.50615883e-04 + sys_51: 4.58010834e-04 + sys_52: 9.16691455e-06 + sys_53: -4.43199498e-05 + sys_54: 2.54957215e-04 + sys_55: 8.34367052e-05 + sys_56: 4.00415946e-04 + sys_57: 1.62257056e-04 + sys_58: -1.29708480e-05 + sys_59: 1.05579486e-04 + sys_60: 1.52718015e-05 + sys_61: 8.97350588e-05 + sys_62: -1.38127530e-04 +- pol: 1.15200000e-05 lumi: 0.00047 - sys_0: 7.418936223885892e-05 - sys_1: -6.763828877847458e-05 - sys_2: -0.000523411556606443 - sys_3: -8.822246852368655e-05 - sys_4: 8.450858364842163e-06 - sys_5: 3.4235025348358e-05 - sys_6: -0.00019379428224564315 - sys_7: 2.7546682636798664e-05 - sys_8: -0.00020349318386983354 - sys_9: -1.6913763639900773e-05 - sys_10: -9.387091031349958e-05 - sys_11: -0.0001980470480974747 - sys_12: -0.0001641035811072406 - sys_13: -6.472913460435408e-05 - sys_14: -0.0001359331217962012 - sys_15: -0.000157684093971202 - sys_16: 0.00023387241375634102 - sys_17: -0.00026904655482092943 - sys_18: -0.00020283282760981985 - sys_19: -5.072262485482017e-05 - sys_20: 3.368801582746196e-05 - sys_21: -0.0003083786380794307 - sys_22: 0.00030039475786320215 - sys_23: -0.00027374804279721963 - sys_24: 7.159792175352404e-05 - sys_25: -0.00016863194554886008 - sys_26: -0.00015696403712824175 - sys_27: 0.00035889706470096735 - sys_28: 0.00012120056910284649 - sys_29: 0.0003485597914587549 - sys_30: -0.00048240128510680154 - sys_31: -9.277638733253948e-05 - sys_32: -0.0003842499836305953 - sys_33: -0.00024561102133120185 - sys_34: 8.427975253091591e-06 - sys_35: -7.112025673563961e-06 - sys_36: 1.2779513465806585e-05 - sys_37: -0.0005877830973147435 - sys_38: 0.0006101750557217228 - sys_39: -0.0011463159025833511 - sys_40: -0.0005436842451235582 - sys_41: 0.0008560826816331103 - sys_42: -0.0009324494589830638 - sys_43: -0.0013515502630616668 - sys_44: 3.580339868377561e-05 - sys_45: 4.60359803356146e-05 - sys_46: -5.332481556897155e-05 - sys_47: 3.616570069331408e-06 - sys_48: -1.3511713497037968e-05 - sys_49: -0.000960358168624108 - sys_50: -0.00017396524547785293 - sys_51: 0.0006420036090434448 - sys_52: -2.277881307773414e-05 - sys_53: -0.0001573441318573008 - sys_54: 0.00010623666126013494 - sys_55: 6.897731178989653e-05 - sys_56: 0.0003418268782324149 - sys_57: 0.00017889995573543252 - sys_58: -5.339705827425121e-05 - sys_59: 9.407513773916869e-05 - sys_60: -6.9867324213508674e-06 - sys_61: 4.26235534548004e-06 - sys_62: -2.221944259808132e-05 -- pol: 0.00041920000000000005 + sys_0: 7.41893622e-05 + sys_1: -6.76382888e-05 + sys_2: -5.23411557e-04 + sys_3: -8.82224685e-05 + sys_4: 8.45085836e-06 + sys_5: 3.42350253e-05 + sys_6: -1.93794282e-04 + sys_7: 2.75466826e-05 + sys_8: -2.03493184e-04 + sys_9: -1.69137636e-05 + sys_10: -9.38709103e-05 + sys_11: -1.98047048e-04 + sys_12: -1.64103581e-04 + sys_13: -6.47291346e-05 + sys_14: -1.35933122e-04 + sys_15: -1.57684094e-04 + sys_16: 2.33872414e-04 + sys_17: -2.69046555e-04 + sys_18: -2.02832828e-04 + sys_19: -5.07226249e-05 + sys_20: 3.36880158e-05 + sys_21: -3.08378638e-04 + sys_22: 3.00394758e-04 + sys_23: -2.73748043e-04 + sys_24: 7.15979218e-05 + sys_25: -1.68631946e-04 + sys_26: -1.56964037e-04 + sys_27: 3.58897065e-04 + sys_28: 1.21200569e-04 + sys_29: 3.48559791e-04 + sys_30: -4.82401285e-04 + sys_31: -9.27763873e-05 + sys_32: -3.84249984e-04 + sys_33: -2.45611021e-04 + sys_34: 8.42797525e-06 + sys_35: -7.11202567e-06 + sys_36: 1.27795135e-05 + sys_37: -5.87783097e-04 + sys_38: 6.10175056e-04 + sys_39: -1.14631590e-03 + sys_40: -5.43684245e-04 + sys_41: 8.56082682e-04 + sys_42: -9.32449459e-04 + sys_43: -1.35155026e-03 + sys_44: 3.58033987e-05 + sys_45: 4.60359803e-05 + sys_46: -5.33248156e-05 + sys_47: 3.61657007e-06 + sys_48: -1.35117135e-05 + sys_49: -9.60358169e-04 + sys_50: -1.73965245e-04 + sys_51: 6.42003609e-04 + sys_52: -2.27788131e-05 + sys_53: -1.57344132e-04 + sys_54: 1.06236661e-04 + sys_55: 6.89773118e-05 + sys_56: 3.41826878e-04 + sys_57: 1.78899956e-04 + sys_58: -5.33970583e-05 + sys_59: 9.40751377e-05 + sys_60: -6.98673242e-06 + sys_61: 4.26235535e-06 + sys_62: -2.22194426e-05 +- pol: 4.19200000e-04 lumi: 0.00047 - sys_0: 7.266269256871186e-05 - sys_1: -6.66875286373122e-05 - sys_2: -0.0005290635403767686 - sys_3: -8.507247074800555e-05 - sys_4: 6.7964342003009095e-06 - sys_5: 3.072996476059488e-05 - sys_6: -0.0001968485772302453 - sys_7: 2.461441606866256e-05 - sys_8: -0.0002048029199724041 - sys_9: -2.1741428159734572e-05 - sys_10: -8.53171238307111e-05 - sys_11: -0.00019789642636519657 - sys_12: -0.00016777896057665892 - sys_13: -5.4210368516178386e-05 - sys_14: -0.0001343983076763288 - sys_15: -0.0001466422881882011 - sys_16: 0.00024155336974717419 - sys_17: -0.0002726645412126161 - sys_18: -0.00021045361315292894 - sys_19: -4.8425986314298814e-05 - sys_20: 5.53323292061553e-05 - sys_21: -0.0003017538893579765 - sys_22: 0.00028203086806765206 - sys_23: -0.0002946596212300883 - sys_24: 5.516199518007646e-05 - sys_25: -0.00020759647232387377 - sys_26: -0.00019788882368529964 - sys_27: 0.0004328110355681593 - sys_28: 0.00011590124390913482 - sys_29: 0.0004239860892892686 - sys_30: -0.0007213678992483864 - sys_31: -0.0001498682362297 - sys_32: -0.000843993425846057 - sys_33: -0.001531485333350309 - sys_34: 1.9454963244178458e-05 - sys_35: -3.299760551611009e-06 - sys_36: 2.9515786860950822e-06 - sys_37: 0.00166842757156217 - sys_38: -0.0010066425777023043 - sys_39: 0.0010216689494093158 - sys_40: 0.0002700641892668675 - sys_41: -0.00011391011484363909 - sys_42: 6.580331094721292e-05 - sys_43: -0.00024636748000420034 - sys_44: 3.7094927582617196e-05 - sys_45: 3.145162117352435e-05 - sys_46: -5.022559623059131e-05 - sys_47: 3.9313220047729435e-06 - sys_48: -1.5785304320543366e-05 - sys_49: -0.0005186515652460096 - sys_50: -8.452637006808781e-05 - sys_51: 0.0003822017253553622 - sys_52: -4.804844208723589e-07 - sys_53: -8.51352160369708e-05 - sys_54: 0.00010524967650998477 - sys_55: 5.319208418878765e-05 - sys_56: 0.00028599106819133683 - sys_57: 0.0001329402435864803 - sys_58: -3.401893015541966e-05 - sys_59: 7.908848077159331e-05 - sys_60: 4.370532277441508e-06 - sys_61: 1.577984302698698e-05 - sys_62: -4.724021431847485e-05 -- pol: 0.00062016 + sys_0: 7.26626926e-05 + sys_1: -6.66875286e-05 + sys_2: -5.29063540e-04 + sys_3: -8.50724707e-05 + sys_4: 6.79643420e-06 + sys_5: 3.07299648e-05 + sys_6: -1.96848577e-04 + sys_7: 2.46144161e-05 + sys_8: -2.04802920e-04 + sys_9: -2.17414282e-05 + sys_10: -8.53171238e-05 + sys_11: -1.97896426e-04 + sys_12: -1.67778961e-04 + sys_13: -5.42103685e-05 + sys_14: -1.34398308e-04 + sys_15: -1.46642288e-04 + sys_16: 2.41553370e-04 + sys_17: -2.72664541e-04 + sys_18: -2.10453613e-04 + sys_19: -4.84259863e-05 + sys_20: 5.53323292e-05 + sys_21: -3.01753889e-04 + sys_22: 2.82030868e-04 + sys_23: -2.94659621e-04 + sys_24: 5.51619952e-05 + sys_25: -2.07596472e-04 + sys_26: -1.97888824e-04 + sys_27: 4.32811036e-04 + sys_28: 1.15901244e-04 + sys_29: 4.23986089e-04 + sys_30: -7.21367899e-04 + sys_31: -1.49868236e-04 + sys_32: -8.43993426e-04 + sys_33: -1.53148533e-03 + sys_34: 1.94549632e-05 + sys_35: -3.29976055e-06 + sys_36: 2.95157869e-06 + sys_37: 1.66842757e-03 + sys_38: -1.00664258e-03 + sys_39: 1.02166895e-03 + sys_40: 2.70064189e-04 + sys_41: -1.13910115e-04 + sys_42: 6.58033109e-05 + sys_43: -2.46367480e-04 + sys_44: 3.70949276e-05 + sys_45: 3.14516212e-05 + sys_46: -5.02255962e-05 + sys_47: 3.93132200e-06 + sys_48: -1.57853043e-05 + sys_49: -5.18651565e-04 + sys_50: -8.45263701e-05 + sys_51: 3.82201725e-04 + sys_52: -4.80484421e-07 + sys_53: -8.51352160e-05 + sys_54: 1.05249677e-04 + sys_55: 5.31920842e-05 + sys_56: 2.85991068e-04 + sys_57: 1.32940244e-04 + sys_58: -3.40189302e-05 + sys_59: 7.90884808e-05 + sys_60: 4.37053228e-06 + sys_61: 1.57798430e-05 + sys_62: -4.72402143e-05 +- pol: 6.20160000e-04 lumi: 0.00047 - sys_0: 7.297252897007153e-05 - sys_1: -6.401858779153633e-05 - sys_2: -0.0005353022233538143 - sys_3: -8.688549026654908e-05 - sys_4: 4.732419036869896e-06 - sys_5: 2.7022077691728074e-05 - sys_6: -0.00020205518760866545 - sys_7: 2.8084467748586826e-05 - sys_8: -0.00021063444161512594 - sys_9: -2.5632781688072267e-05 - sys_10: -8.280294267496762e-05 - sys_11: -0.00021198510714174574 - sys_12: -0.00018295432012624757 - sys_13: -5.568474741631035e-05 - sys_14: -0.0001460822446420467 - sys_15: -0.00015606862018564086 - sys_16: 0.0002786746775355727 - sys_17: -0.0003259989550701233 - sys_18: -0.00025829812051440473 - sys_19: -5.185681526339756e-05 - sys_20: 7.354725844115951e-05 - sys_21: -0.00040564952652236055 - sys_22: 0.0003967558602955758 - sys_23: -0.0004988140521713013 - sys_24: 6.962937123044618e-05 - sys_25: -0.0004988959085724942 - sys_26: -0.000546744393497255 - sys_27: 0.001795708095021386 - sys_28: 0.0017364122135015096 - sys_29: -0.002242047537615649 - sys_30: 0.0017788210781797115 - sys_31: 0.00011650677698651571 - sys_32: 0.00010433186766659846 - sys_33: 3.6543516708690583e-05 - sys_34: 2.056940177771897e-05 - sys_35: 1.6176845303969558e-06 - sys_36: -5.5280558825686085e-06 - sys_37: 8.193995869177309e-05 - sys_38: -9.797705656938847e-05 - sys_39: 0.00010955103507907105 - sys_40: 2.0783803577374165e-05 - sys_41: -2.4337788041698822e-05 - sys_42: 2.4730710253049373e-05 - sys_43: -4.079914505711017e-05 - sys_44: 2.4242630237281395e-05 - sys_45: 1.1170616563448966e-05 - sys_46: -3.026185703951881e-05 - sys_47: 1.5594575328058065e-06 - sys_48: -1.0200032845524347e-05 - sys_49: -0.00018919308043155857 - sys_50: -2.9102743887366274e-05 - sys_51: 0.00014424937177043548 - sys_52: 1.4508022064097487e-06 - sys_53: -2.901111574679972e-05 - sys_54: 5.618862156072565e-05 - sys_55: 2.312327808019939e-05 - sys_56: 0.00015214267640145578 - sys_57: 6.440794781186611e-05 - sys_58: -1.7989523421883147e-05 - sys_59: 4.0460511287460065e-05 - sys_60: 8.679759113390924e-06 - sys_61: 1.6647413205691053e-05 - sys_62: -3.0723850358214146e-05 -- pol: 0.00052288 + sys_0: 7.29725290e-05 + sys_1: -6.40185878e-05 + sys_2: -5.35302223e-04 + sys_3: -8.68854903e-05 + sys_4: 4.73241904e-06 + sys_5: 2.70220777e-05 + sys_6: -2.02055188e-04 + sys_7: 2.80844677e-05 + sys_8: -2.10634442e-04 + sys_9: -2.56327817e-05 + sys_10: -8.28029427e-05 + sys_11: -2.11985107e-04 + sys_12: -1.82954320e-04 + sys_13: -5.56847474e-05 + sys_14: -1.46082245e-04 + sys_15: -1.56068620e-04 + sys_16: 2.78674678e-04 + sys_17: -3.25998955e-04 + sys_18: -2.58298121e-04 + sys_19: -5.18568153e-05 + sys_20: 7.35472584e-05 + sys_21: -4.05649527e-04 + sys_22: 3.96755860e-04 + sys_23: -4.98814052e-04 + sys_24: 6.96293712e-05 + sys_25: -4.98895909e-04 + sys_26: -5.46744393e-04 + sys_27: 1.79570810e-03 + sys_28: 1.73641221e-03 + sys_29: -2.24204754e-03 + sys_30: 1.77882108e-03 + sys_31: 1.16506777e-04 + sys_32: 1.04331868e-04 + sys_33: 3.65435167e-05 + sys_34: 2.05694018e-05 + sys_35: 1.61768453e-06 + sys_36: -5.52805588e-06 + sys_37: 8.19399587e-05 + sys_38: -9.79770566e-05 + sys_39: 1.09551035e-04 + sys_40: 2.07838036e-05 + sys_41: -2.43377880e-05 + sys_42: 2.47307103e-05 + sys_43: -4.07991451e-05 + sys_44: 2.42426302e-05 + sys_45: 1.11706166e-05 + sys_46: -3.02618570e-05 + sys_47: 1.55945753e-06 + sys_48: -1.02000328e-05 + sys_49: -1.89193080e-04 + sys_50: -2.91027439e-05 + sys_51: 1.44249372e-04 + sys_52: 1.45080221e-06 + sys_53: -2.90111157e-05 + sys_54: 5.61886216e-05 + sys_55: 2.31232781e-05 + sys_56: 1.52142676e-04 + sys_57: 6.44079478e-05 + sys_58: -1.79895234e-05 + sys_59: 4.04605113e-05 + sys_60: 8.67975911e-06 + sys_61: 1.66474132e-05 + sys_62: -3.07238504e-05 +- pol: 5.22880000e-04 lumi: 0.00047 - sys_0: 7.546837473361129e-05 - sys_1: -6.615372118784039e-05 - sys_2: -0.0005388539375312827 - sys_3: -8.438776023374642e-05 - sys_4: 7.95384585453445e-06 - sys_5: 2.6323783754122788e-05 - sys_6: -0.00020747926006464752 - sys_7: 2.7706832710594728e-05 - sys_8: -0.00021863309129712752 - sys_9: -2.1456395007669758e-05 - sys_10: -8.857645871788048e-05 - sys_11: -0.00022398244551281187 - sys_12: -0.00019403785753487342 - sys_13: -7.04875255023904e-05 - sys_14: -0.00015938978327634454 - sys_15: -0.0001746275908763435 - sys_16: 0.00031394112723781407 - sys_17: -0.0003855953594007192 - sys_18: -0.00030894200493864323 - sys_19: -5.998642555114707e-05 - sys_20: 8.211171639482549e-05 - sys_21: -0.000574550325384802 - sys_22: 0.0006350772385115216 - sys_23: -0.0010102460383303532 - sys_24: 0.00014910124623322875 - sys_25: -0.0026357812921172594 - sys_26: 0.0028485189939411373 - sys_27: -0.0015317867768089072 - sys_28: -0.0001426729101235551 - sys_29: -0.0003890472113759452 - sys_30: 0.0005199321195880391 - sys_31: 5.568233937933466e-05 - sys_32: 5.0708805573919796e-05 - sys_33: 2.0517991931586667e-05 - sys_34: 2.185767088242166e-05 - sys_35: 7.013982018951416e-06 - sys_36: -1.5480612853027947e-05 - sys_37: 4.937600112527797e-05 - sys_38: -6.621039858870782e-05 - sys_39: 6.404150602078749e-05 - sys_40: -4.895737047341887e-06 - sys_41: -2.0328687430544328e-05 - sys_42: 1.5849616857137896e-05 - sys_43: -2.687529577194353e-05 - sys_44: 1.943112478513482e-05 - sys_45: -5.108425709431371e-06 - sys_46: -2.1014411465380914e-05 - sys_47: -1.6294627039067148e-06 - sys_48: -8.856276313700571e-06 - sys_49: -0.00013285211389147292 - sys_50: -2.029181170968596e-05 - sys_51: 0.00010002211203854213 - sys_52: 1.6672489508639387e-06 - sys_53: -1.8658880673170626e-05 - sys_54: 4.417421733375441e-05 - sys_55: 1.4460789101882573e-05 - sys_56: 0.00011042902329575379 - sys_57: 4.262718141168879e-05 - sys_58: -2.33193013563378e-05 - sys_59: 3.1304856701311044e-05 - sys_60: 1.1031841493880792e-05 - sys_61: 1.9904638086717546e-05 - sys_62: -2.2863187622002957e-05 -- pol: 0.00084288 + sys_0: 7.54683747e-05 + sys_1: -6.61537212e-05 + sys_2: -5.38853938e-04 + sys_3: -8.43877602e-05 + sys_4: 7.95384585e-06 + sys_5: 2.63237838e-05 + sys_6: -2.07479260e-04 + sys_7: 2.77068327e-05 + sys_8: -2.18633091e-04 + sys_9: -2.14563950e-05 + sys_10: -8.85764587e-05 + sys_11: -2.23982446e-04 + sys_12: -1.94037858e-04 + sys_13: -7.04875255e-05 + sys_14: -1.59389783e-04 + sys_15: -1.74627591e-04 + sys_16: 3.13941127e-04 + sys_17: -3.85595359e-04 + sys_18: -3.08942005e-04 + sys_19: -5.99864256e-05 + sys_20: 8.21117164e-05 + sys_21: -5.74550325e-04 + sys_22: 6.35077239e-04 + sys_23: -1.01024604e-03 + sys_24: 1.49101246e-04 + sys_25: -2.63578129e-03 + sys_26: 2.84851899e-03 + sys_27: -1.53178678e-03 + sys_28: -1.42672910e-04 + sys_29: -3.89047211e-04 + sys_30: 5.19932120e-04 + sys_31: 5.56823394e-05 + sys_32: 5.07088056e-05 + sys_33: 2.05179919e-05 + sys_34: 2.18576709e-05 + sys_35: 7.01398202e-06 + sys_36: -1.54806129e-05 + sys_37: 4.93760011e-05 + sys_38: -6.62103986e-05 + sys_39: 6.40415060e-05 + sys_40: -4.89573705e-06 + sys_41: -2.03286874e-05 + sys_42: 1.58496169e-05 + sys_43: -2.68752958e-05 + sys_44: 1.94311248e-05 + sys_45: -5.10842571e-06 + sys_46: -2.10144115e-05 + sys_47: -1.62946270e-06 + sys_48: -8.85627631e-06 + sys_49: -1.32852114e-04 + sys_50: -2.02918117e-05 + sys_51: 1.00022112e-04 + sys_52: 1.66724895e-06 + sys_53: -1.86588807e-05 + sys_54: 4.41742173e-05 + sys_55: 1.44607891e-05 + sys_56: 1.10429023e-04 + sys_57: 4.26271814e-05 + sys_58: -2.33193014e-05 + sys_59: 3.13048567e-05 + sys_60: 1.10318415e-05 + sys_61: 1.99046381e-05 + sys_62: -2.28631876e-05 +- pol: 8.42880000e-04 lumi: 0.00047 - sys_0: 7.780187677349526e-05 - sys_1: -6.824939709807209e-05 - sys_2: -0.0005562701942240217 - sys_3: -8.798465384491834e-05 - sys_4: 1.970075062750134e-05 - sys_5: 3.8888648133952755e-05 - sys_6: -0.00022473241781567296 - sys_7: 2.6808007441539726e-05 - sys_8: -0.000252690717024443 - sys_9: -1.3827104734730393e-05 - sys_10: -0.00011649243296396077 - sys_11: -0.0002726515430083863 - sys_12: -0.00026640453359394364 - sys_13: -0.00014188540876097362 - sys_14: -0.0002647620377759735 - sys_15: -0.00035486826949832404 - sys_16: 0.0005719813358456584 - sys_17: -0.0011392362345071915 - sys_18: -0.0014497831282711815 - sys_19: -0.0005542580286439786 - sys_20: -0.0055719305663143 - sys_21: 0.0008434783578743272 - sys_22: -0.0004857654953059599 - sys_23: 0.0002927799049697272 - sys_24: -1.4060432278694845e-05 - sys_25: 0.0001259084004187116 - sys_26: 7.629037708364417e-05 - sys_27: -0.00019144904761182998 - sys_28: -1.29846299502497e-05 - sys_29: -0.00010070287895551267 - sys_30: 0.00012318371605143702 - sys_31: 1.777509584206737e-05 - sys_32: 1.6647657496711324e-05 - sys_33: 9.62859866459906e-06 - sys_34: 1.1086810926465325e-05 - sys_35: 6.161144493816911e-06 - sys_36: -1.684926494859773e-05 - sys_37: 2.3539066329563603e-05 - sys_38: -3.509382591664068e-05 - sys_39: 2.665227744677769e-05 - sys_40: -1.988499144943824e-05 - sys_41: -1.9504303782924192e-05 - sys_42: -3.4377047449045414e-07 - sys_43: -2.132259954345957e-05 - sys_44: 1.0342032985161039e-05 - sys_45: -1.940198679393599e-05 - sys_46: -5.641989699797608e-06 - sys_47: -3.418908716526218e-06 - sys_48: -4.389803064173134e-06 - sys_49: -6.165053905238378e-05 - sys_50: -8.657082156137144e-06 - sys_51: 4.381825404485891e-05 - sys_52: 4.612656097900979e-07 - sys_53: -8.849244789682256e-06 - sys_54: 2.0377042931550606e-05 - sys_55: 4.6919902689894005e-06 - sys_56: 4.593993741029805e-05 - sys_57: 1.281417232104495e-05 - sys_58: -2.934326201819757e-05 - sys_59: 1.6708164239202133e-05 - sys_60: 9.07435750161912e-06 - sys_61: 1.2494299545530244e-05 - sys_62: -1.3269064697206324e-05 -- pol: 0.00119424 + sys_0: 7.78018768e-05 + sys_1: -6.82493971e-05 + sys_2: -5.56270194e-04 + sys_3: -8.79846538e-05 + sys_4: 1.97007506e-05 + sys_5: 3.88886481e-05 + sys_6: -2.24732418e-04 + sys_7: 2.68080074e-05 + sys_8: -2.52690717e-04 + sys_9: -1.38271047e-05 + sys_10: -1.16492433e-04 + sys_11: -2.72651543e-04 + sys_12: -2.66404534e-04 + sys_13: -1.41885409e-04 + sys_14: -2.64762038e-04 + sys_15: -3.54868269e-04 + sys_16: 5.71981336e-04 + sys_17: -1.13923623e-03 + sys_18: -1.44978313e-03 + sys_19: -5.54258029e-04 + sys_20: -5.57193057e-03 + sys_21: 8.43478358e-04 + sys_22: -4.85765495e-04 + sys_23: 2.92779905e-04 + sys_24: -1.40604323e-05 + sys_25: 1.25908400e-04 + sys_26: 7.62903771e-05 + sys_27: -1.91449048e-04 + sys_28: -1.29846300e-05 + sys_29: -1.00702879e-04 + sys_30: 1.23183716e-04 + sys_31: 1.77750958e-05 + sys_32: 1.66476575e-05 + sys_33: 9.62859866e-06 + sys_34: 1.10868109e-05 + sys_35: 6.16114449e-06 + sys_36: -1.68492649e-05 + sys_37: 2.35390663e-05 + sys_38: -3.50938259e-05 + sys_39: 2.66522774e-05 + sys_40: -1.98849914e-05 + sys_41: -1.95043038e-05 + sys_42: -3.43770474e-07 + sys_43: -2.13225995e-05 + sys_44: 1.03420330e-05 + sys_45: -1.94019868e-05 + sys_46: -5.64198970e-06 + sys_47: -3.41890872e-06 + sys_48: -4.38980306e-06 + sys_49: -6.16505391e-05 + sys_50: -8.65708216e-06 + sys_51: 4.38182540e-05 + sys_52: 4.61265610e-07 + sys_53: -8.84924479e-06 + sys_54: 2.03770429e-05 + sys_55: 4.69199027e-06 + sys_56: 4.59399374e-05 + sys_57: 1.28141723e-05 + sys_58: -2.93432620e-05 + sys_59: 1.67081642e-05 + sys_60: 9.07435750e-06 + sys_61: 1.24942995e-05 + sys_62: -1.32690647e-05 +- pol: 1.19424000e-03 lumi: 0.00047 - sys_0: 9.927344527115935e-05 - sys_1: -7.847212664307698e-05 - sys_2: -0.0005847193644162445 - sys_3: -8.919994203837157e-05 - sys_4: 5.299972757871072e-05 - sys_5: 5.547540642346338e-05 - sys_6: -0.00027381730477573843 - sys_7: 3.04756447846921e-05 - sys_8: -0.00033203818568723007 - sys_9: 5.1034613707590416e-05 - sys_10: -0.00025998304549573563 - sys_11: -0.0005130978711355355 - sys_12: -0.0006936450110524788 - sys_13: -0.00819747033810977 - sys_14: 0.0009052657708894879 - sys_15: 0.0006795032891183008 - sys_16: -0.00053431882942793 - sys_17: 0.00045261254014248876 - sys_18: 0.00029129908849463584 - sys_19: 3.1214663556780015e-05 - sys_20: -2.6857686724332585e-05 - sys_21: 0.00015409604948562886 - sys_22: -0.00012827212910886384 - sys_23: 6.0830458079969266e-05 - sys_24: 1.2862641061816355e-06 - sys_25: -1.7141387874135823e-06 - sys_26: -1.2051125522011544e-05 - sys_27: -7.996689121613636e-05 - sys_28: -2.51767696120739e-06 - sys_29: -5.014732838943628e-05 - sys_30: 3.9685753301208464e-05 - sys_31: 7.523267873940016e-06 - sys_32: 6.204096087965103e-06 - sys_33: 7.055084387983939e-06 - sys_34: 3.5439313032131552e-06 - sys_35: 3.016223901169375e-06 - sys_36: -9.821547850867365e-06 - sys_37: 1.5087052434722239e-05 - sys_38: -2.743736483953124e-05 - sys_39: 1.0543781553075767e-05 - sys_40: -3.215131300955826e-05 - sys_41: -3.144428515830036e-05 - sys_42: -9.450883561143435e-06 - sys_43: -2.8620363355247878e-05 - sys_44: 5.1108234920375375e-06 - sys_45: -2.1668181085394682e-05 - sys_46: 2.053597997689677e-06 - sys_47: -1.7497365632820454e-06 - sys_48: -2.2103589722804648e-06 - sys_49: -2.6950170636831014e-05 - sys_50: -3.0942967932285073e-06 - sys_51: 1.8360972498701062e-05 - sys_52: -6.760275606411273e-07 - sys_53: -5.5394689438554395e-06 - sys_54: 6.277916583967612e-06 - sys_55: -3.3111592672496693e-07 - sys_56: 8.656526426387972e-06 - sys_57: -3.622504822476828e-06 - sys_58: -3.7319821859619605e-05 - sys_59: 9.439524185352675e-06 - sys_60: 7.582323320711006e-06 - sys_61: 6.700197678791074e-06 - sys_62: -8.86557801670163e-06 -- pol: 0.00109568 + sys_0: 9.92734453e-05 + sys_1: -7.84721266e-05 + sys_2: -5.84719364e-04 + sys_3: -8.91999420e-05 + sys_4: 5.29997276e-05 + sys_5: 5.54754064e-05 + sys_6: -2.73817305e-04 + sys_7: 3.04756448e-05 + sys_8: -3.32038186e-04 + sys_9: 5.10346137e-05 + sys_10: -2.59983045e-04 + sys_11: -5.13097871e-04 + sys_12: -6.93645011e-04 + sys_13: -8.19747034e-03 + sys_14: 9.05265771e-04 + sys_15: 6.79503289e-04 + sys_16: -5.34318829e-04 + sys_17: 4.52612540e-04 + sys_18: 2.91299088e-04 + sys_19: 3.12146636e-05 + sys_20: -2.68576867e-05 + sys_21: 1.54096049e-04 + sys_22: -1.28272129e-04 + sys_23: 6.08304581e-05 + sys_24: 1.28626411e-06 + sys_25: -1.71413879e-06 + sys_26: -1.20511255e-05 + sys_27: -7.99668912e-05 + sys_28: -2.51767696e-06 + sys_29: -5.01473284e-05 + sys_30: 3.96857533e-05 + sys_31: 7.52326787e-06 + sys_32: 6.20409609e-06 + sys_33: 7.05508439e-06 + sys_34: 3.54393130e-06 + sys_35: 3.01622390e-06 + sys_36: -9.82154785e-06 + sys_37: 1.50870524e-05 + sys_38: -2.74373648e-05 + sys_39: 1.05437816e-05 + sys_40: -3.21513130e-05 + sys_41: -3.14442852e-05 + sys_42: -9.45088356e-06 + sys_43: -2.86203634e-05 + sys_44: 5.11082349e-06 + sys_45: -2.16681811e-05 + sys_46: 2.05359800e-06 + sys_47: -1.74973656e-06 + sys_48: -2.21035897e-06 + sys_49: -2.69501706e-05 + sys_50: -3.09429679e-06 + sys_51: 1.83609725e-05 + sys_52: -6.76027561e-07 + sys_53: -5.53946894e-06 + sys_54: 6.27791658e-06 + sys_55: -3.31115927e-07 + sys_56: 8.65652643e-06 + sys_57: -3.62250482e-06 + sys_58: -3.73198219e-05 + sys_59: 9.43952419e-06 + sys_60: 7.58232332e-06 + sys_61: 6.70019768e-06 + sys_62: -8.86557802e-06 +- pol: 1.09568000e-03 lumi: 0.00047 - sys_0: 0.00015507225321138233 - sys_1: -0.00010768041577369137 - sys_2: -0.0006753671991897031 - sys_3: -0.00010774731037321972 - sys_4: 0.00019956854307788367 - sys_5: 0.000192168197661584 - sys_6: -0.0006067655233311863 - sys_7: 1.2835525110816663e-05 - sys_8: -0.0025983564007618035 - sys_9: 0.012685926488874372 - sys_10: 0.0005038230592798146 - sys_11: 0.00041172501506800505 - sys_12: 0.0003031910733029738 - sys_13: 8.263681745529842e-05 - sys_14: 4.436469096121996e-05 - sys_15: 0.00010424822273473832 - sys_16: 3.089781486324964e-05 - sys_17: 0.00011051023977465995 - sys_18: 7.938258219981086e-05 - sys_19: 7.877173710864375e-06 - sys_20: -1.0175275917105048e-05 - sys_21: 5.591582424306875e-05 - sys_22: -5.6720757929615424e-05 - sys_23: 3.0289754820412127e-06 - sys_24: 9.028840408270502e-06 - sys_25: -4.619690288367529e-05 - sys_26: -5.073232908126332e-05 - sys_27: -4.404968783843914e-05 - sys_28: -8.847693193040822e-06 - sys_29: -2.9587636210169616e-05 - sys_30: 7.889164499677775e-06 - sys_31: 2.9642387714924676e-06 - sys_32: 3.7389781976200532e-06 - sys_33: 5.883558139657074e-06 - sys_34: 3.0733596972778044e-07 - sys_35: 8.695365442229043e-07 - sys_36: -3.0187044001070767e-06 - sys_37: 1.0155587975838521e-05 - sys_38: -2.135263534107809e-05 - sys_39: 2.957996121047133e-06 - sys_40: -3.2008344989309346e-05 - sys_41: -3.530344171076047e-05 - sys_42: -1.3703130804562762e-05 - sys_43: -3.103872380714446e-05 - sys_44: 2.1589203644047615e-07 - sys_45: -1.0307561375431087e-05 - sys_46: 3.1694925931383455e-06 - sys_47: 4.555246500004095e-07 - sys_48: -1.0550781884488139e-06 - sys_49: -4.609300720752301e-06 - sys_50: 9.923434723576879e-08 - sys_51: 4.560809757851225e-06 - sys_52: -1.4983735865875129e-06 - sys_53: -4.3491019706960414e-06 - sys_54: -5.227717181288062e-06 - sys_55: -2.5643075536724526e-06 - sys_56: -8.273256602775e-06 - sys_57: -7.57495487186678e-06 - sys_58: -2.755879197800997e-05 - sys_59: 2.732362915486237e-06 - sys_60: 3.4762956031215233e-06 - sys_61: 2.0923155335224116e-07 - sys_62: -4.0690784856954306e-07 -- pol: 0.00086848 + sys_0: 1.55072253e-04 + sys_1: -1.07680416e-04 + sys_2: -6.75367199e-04 + sys_3: -1.07747310e-04 + sys_4: 1.99568543e-04 + sys_5: 1.92168198e-04 + sys_6: -6.06765523e-04 + sys_7: 1.28355251e-05 + sys_8: -2.59835640e-03 + sys_9: 1.26859265e-02 + sys_10: 5.03823059e-04 + sys_11: 4.11725015e-04 + sys_12: 3.03191073e-04 + sys_13: 8.26368175e-05 + sys_14: 4.43646910e-05 + sys_15: 1.04248223e-04 + sys_16: 3.08978149e-05 + sys_17: 1.10510240e-04 + sys_18: 7.93825822e-05 + sys_19: 7.87717371e-06 + sys_20: -1.01752759e-05 + sys_21: 5.59158242e-05 + sys_22: -5.67207579e-05 + sys_23: 3.02897548e-06 + sys_24: 9.02884041e-06 + sys_25: -4.61969029e-05 + sys_26: -5.07323291e-05 + sys_27: -4.40496878e-05 + sys_28: -8.84769319e-06 + sys_29: -2.95876362e-05 + sys_30: 7.88916450e-06 + sys_31: 2.96423877e-06 + sys_32: 3.73897820e-06 + sys_33: 5.88355814e-06 + sys_34: 3.07335970e-07 + sys_35: 8.69536544e-07 + sys_36: -3.01870440e-06 + sys_37: 1.01555880e-05 + sys_38: -2.13526353e-05 + sys_39: 2.95799612e-06 + sys_40: -3.20083450e-05 + sys_41: -3.53034417e-05 + sys_42: -1.37031308e-05 + sys_43: -3.10387238e-05 + sys_44: 2.15892036e-07 + sys_45: -1.03075614e-05 + sys_46: 3.16949259e-06 + sys_47: 4.55524650e-07 + sys_48: -1.05507819e-06 + sys_49: -4.60930072e-06 + sys_50: 9.92343472e-08 + sys_51: 4.56080976e-06 + sys_52: -1.49837359e-06 + sys_53: -4.34910197e-06 + sys_54: -5.22771718e-06 + sys_55: -2.56430755e-06 + sys_56: -8.27325660e-06 + sys_57: -7.57495487e-06 + sys_58: -2.75587920e-05 + sys_59: 2.73236292e-06 + sys_60: 3.47629560e-06 + sys_61: 2.09231553e-07 + sys_62: -4.06907849e-07 +- pol: 8.68480000e-04 lumi: 0.00047 - sys_0: 0.0002832532369953569 - sys_1: -0.000203880679789432 - sys_2: -0.001003775849748161 - sys_3: -0.0001633201545342034 - sys_4: 0.019640572845225666 - sys_5: -0.0009150003803185539 - sys_6: 0.0009025775531572245 - sys_7: 0.00013048877024790932 - sys_8: -0.0001839253723077586 - sys_9: -0.00018090463462041648 - sys_10: 0.00012064762183522902 - sys_11: 9.340368089487594e-05 - sys_12: 0.00012109911760896734 - sys_13: 1.0803339507235938e-05 - sys_14: -1.8916144760717824e-05 - sys_15: 2.251283180799642e-05 - sys_16: 0.00015017398604343505 - sys_17: 5.138251885566594e-05 - sys_18: 3.775960469629578e-05 - sys_19: 5.281593098241862e-06 - sys_20: 1.7286097460945029e-06 - sys_21: 2.3400183825633517e-05 - sys_22: -2.3169685755980387e-05 - sys_23: -1.2180506817955517e-05 - sys_24: 1.53440514175885e-05 - sys_25: -5.225392632616773e-05 - sys_26: -6.862036488087527e-05 - sys_27: -3.570563030702775e-05 - sys_28: -2.1140144524752006e-05 - sys_29: -1.9455265260927714e-05 - sys_30: 2.8850181938195185e-06 - sys_31: 1.1142060697981752e-06 - sys_32: 3.203106830304877e-06 - sys_33: 3.45554167591105e-06 - sys_34: -3.0314457202994157e-07 - sys_35: 2.4016309765314654e-07 - sys_36: -7.516037930956108e-07 - sys_37: 5.523551279581969e-06 - sys_38: -1.2195673213363337e-05 - sys_39: 8.237605911719675e-07 - sys_40: -2.1983084608842772e-05 - sys_41: -2.614238299776883e-05 - sys_42: -1.0064686450519534e-05 - sys_43: -2.1836241280475643e-05 - sys_44: -8.363182985188434e-07 - sys_45: -3.647442861853924e-06 - sys_46: 2.1069919220739096e-06 - sys_47: 1.1000298537019028e-06 - sys_48: -4.123196967760267e-07 - sys_49: 4.190174397986812e-06 - sys_50: 1.103880536338901e-06 - sys_51: -5.251947940483592e-07 - sys_52: -1.387370161065635e-06 - sys_53: -3.13364223685003e-06 - sys_54: -7.5827321923127425e-06 - sys_55: -1.9701443416396715e-06 - sys_56: -7.705577878040401e-06 - sys_57: -4.684916012534735e-06 - sys_58: -1.2462149567864277e-05 - sys_59: -2.9171318517399487e-08 - sys_60: 1.161852056979768e-06 - sys_61: -1.8679202925640308e-06 - sys_62: 3.308603850081044e-06 + sys_0: 2.83253237e-04 + sys_1: -2.03880680e-04 + sys_2: -1.00377585e-03 + sys_3: -1.63320155e-04 + sys_4: 1.96405728e-02 + sys_5: -9.15000380e-04 + sys_6: 9.02577553e-04 + sys_7: 1.30488770e-04 + sys_8: -1.83925372e-04 + sys_9: -1.80904635e-04 + sys_10: 1.20647622e-04 + sys_11: 9.34036809e-05 + sys_12: 1.21099118e-04 + sys_13: 1.08033395e-05 + sys_14: -1.89161448e-05 + sys_15: 2.25128318e-05 + sys_16: 1.50173986e-04 + sys_17: 5.13825189e-05 + sys_18: 3.77596047e-05 + sys_19: 5.28159310e-06 + sys_20: 1.72860975e-06 + sys_21: 2.34001838e-05 + sys_22: -2.31696858e-05 + sys_23: -1.21805068e-05 + sys_24: 1.53440514e-05 + sys_25: -5.22539263e-05 + sys_26: -6.86203649e-05 + sys_27: -3.57056303e-05 + sys_28: -2.11401445e-05 + sys_29: -1.94552653e-05 + sys_30: 2.88501819e-06 + sys_31: 1.11420607e-06 + sys_32: 3.20310683e-06 + sys_33: 3.45554168e-06 + sys_34: -3.03144572e-07 + sys_35: 2.40163098e-07 + sys_36: -7.51603793e-07 + sys_37: 5.52355128e-06 + sys_38: -1.21956732e-05 + sys_39: 8.23760591e-07 + sys_40: -2.19830846e-05 + sys_41: -2.61423830e-05 + sys_42: -1.00646865e-05 + sys_43: -2.18362413e-05 + sys_44: -8.36318299e-07 + sys_45: -3.64744286e-06 + sys_46: 2.10699192e-06 + sys_47: 1.10002985e-06 + sys_48: -4.12319697e-07 + sys_49: 4.19017440e-06 + sys_50: 1.10388054e-06 + sys_51: -5.25194794e-07 + sys_52: -1.38737016e-06 + sys_53: -3.13364224e-06 + sys_54: -7.58273219e-06 + sys_55: -1.97014434e-06 + sys_56: -7.70557788e-06 + sys_57: -4.68491601e-06 + sys_58: -1.24621496e-05 + sys_59: -2.91713185e-08 + sys_60: 1.16185206e-06 + sys_61: -1.86792029e-06 + sys_62: 3.30860385e-06 - pol: 0.000368 lumi: 0.00047 - sys_0: 0.03301878375019251 - sys_1: 0.0029349858900296357 - sys_2: 0.0031222461843361084 - sys_3: 0.0004769622308680131 - sys_4: -0.00014161052708153504 - sys_5: -0.0001609734263169067 - sys_6: 0.00024895066206183933 - sys_7: 0.0001034615114393519 - sys_8: -0.00037660117241407207 - sys_9: -0.00010385593794536584 - sys_10: 5.3019159930389626e-05 - sys_11: 3.073049775783198e-05 - sys_12: 5.1991296022774575e-05 - sys_13: -6.424567023080291e-06 - sys_14: -2.840701021120833e-05 - sys_15: -5.032566573992856e-06 - sys_16: 0.00015442252175829882 - sys_17: 2.6724244540244506e-05 - sys_18: 1.617561236455418e-05 - sys_19: 8.096278717093823e-06 - sys_20: 8.921534611332613e-06 - sys_21: 1.855020596282728e-05 - sys_22: -1.755909909476712e-05 - sys_23: -4.587069577702391e-06 - sys_24: 4.721562617887075e-06 - sys_25: -2.8206562335082413e-05 - sys_26: -3.990896934924954e-05 - sys_27: -1.9743472379806085e-05 - sys_28: -1.6589586777486568e-05 - sys_29: -1.1578514101374068e-05 - sys_30: 9.955843384620958e-07 - sys_31: 5.747962467488692e-07 - sys_32: 5.58900921717712e-06 - sys_33: 1.8063581141830359e-06 - sys_34: -2.3238011852612083e-07 - sys_35: 6.185467361318402e-08 - sys_36: -1.1897995841420081e-07 - sys_37: 4.2000655875730885e-06 - sys_38: -2.730286561327032e-06 - sys_39: 2.378002751383709e-06 - sys_40: -5.552046434887174e-06 - sys_41: -7.697910149702216e-06 - sys_42: -5.057037602091274e-06 - sys_43: -1.1155402417394049e-05 - sys_44: -1.062363840684966e-06 - sys_45: -1.1077130116190747e-06 - sys_46: 1.385635583215018e-06 - sys_47: 3.9460506562291634e-07 - sys_48: -2.0209659567348963e-07 - sys_49: 2.9779943876508053e-06 - sys_50: 8.33998231683751e-07 - sys_51: -1.2802816436822387e-06 - sys_52: -8.546640953497282e-07 - sys_53: -1.7004315513534896e-06 - sys_54: -5.6158506787234855e-06 - sys_55: -1.1430167637106135e-06 - sys_56: -4.93752595657772e-06 - sys_57: -1.8300507246703332e-06 - sys_58: -3.726778057078419e-06 - sys_59: -8.220950510438933e-07 - sys_60: 4.0338177486294784e-08 - sys_61: -2.1574866014211546e-06 - sys_62: 3.703475343128006e-06 + sys_0: 3.30187838e-02 + sys_1: 2.93498589e-03 + sys_2: 3.12224618e-03 + sys_3: 4.76962231e-04 + sys_4: -1.41610527e-04 + sys_5: -1.60973426e-04 + sys_6: 2.48950662e-04 + sys_7: 1.03461511e-04 + sys_8: -3.76601172e-04 + sys_9: -1.03855938e-04 + sys_10: 5.30191599e-05 + sys_11: 3.07304978e-05 + sys_12: 5.19912960e-05 + sys_13: -6.42456702e-06 + sys_14: -2.84070102e-05 + sys_15: -5.03256657e-06 + sys_16: 1.54422522e-04 + sys_17: 2.67242445e-05 + sys_18: 1.61756124e-05 + sys_19: 8.09627872e-06 + sys_20: 8.92153461e-06 + sys_21: 1.85502060e-05 + sys_22: -1.75590991e-05 + sys_23: -4.58706958e-06 + sys_24: 4.72156262e-06 + sys_25: -2.82065623e-05 + sys_26: -3.99089693e-05 + sys_27: -1.97434724e-05 + sys_28: -1.65895868e-05 + sys_29: -1.15785141e-05 + sys_30: 9.95584338e-07 + sys_31: 5.74796247e-07 + sys_32: 5.58900922e-06 + sys_33: 1.80635811e-06 + sys_34: -2.32380119e-07 + sys_35: 6.18546736e-08 + sys_36: -1.18979958e-07 + sys_37: 4.20006559e-06 + sys_38: -2.73028656e-06 + sys_39: 2.37800275e-06 + sys_40: -5.55204643e-06 + sys_41: -7.69791015e-06 + sys_42: -5.05703760e-06 + sys_43: -1.11554024e-05 + sys_44: -1.06236384e-06 + sys_45: -1.10771301e-06 + sys_46: 1.38563558e-06 + sys_47: 3.94605066e-07 + sys_48: -2.02096596e-07 + sys_49: 2.97799439e-06 + sys_50: 8.33998232e-07 + sys_51: -1.28028164e-06 + sys_52: -8.54664095e-07 + sys_53: -1.70043155e-06 + sys_54: -5.61585068e-06 + sys_55: -1.14301676e-06 + sys_56: -4.93752596e-06 + sys_57: -1.83005072e-06 + sys_58: -3.72677806e-06 + sys_59: -8.22095051e-07 + sys_60: 4.03381775e-08 + sys_61: -2.15748660e-06 + sys_62: 3.70347534e-06 diff --git a/nnpdf_data/nnpdf_data/commondata/STAR-2013_2JET_510GEV/uncertainties_D.yaml b/nnpdf_data/nnpdf_data/commondata/STAR-2013_2JET_510GEV/uncertainties_D.yaml index fcc3178e5a..afe13f877a 100644 --- a/nnpdf_data/nnpdf_data/commondata/STAR-2013_2JET_510GEV/uncertainties_D.yaml +++ b/nnpdf_data/nnpdf_data/commondata/STAR-2013_2JET_510GEV/uncertainties_D.yaml @@ -260,783 +260,783 @@ definitions: treatment: ADD type: STAR2013JETunc62 bins: -- pol: 0.00067072 +- pol: 6.70720000e-04 lumi: 0.00047 - sys_0: 0.00017110498195708319 - sys_1: -6.311373164095956e-05 - sys_2: -0.00031536737656073246 - sys_3: -8.636027741101918e-05 - sys_4: 0.00014262552000925396 - sys_5: 8.386188817700165e-05 - sys_6: -0.0001746881074822699 - sys_7: 4.5685927432658056e-05 - sys_8: -0.00021365875368912858 - sys_9: 0.00013812464666267715 - sys_10: -0.00019083514383715804 - sys_11: -0.00020999855267816637 - sys_12: -0.00018526109292796812 - sys_13: -0.00025062306421832944 - sys_14: -0.00035107962006441655 - sys_15: -0.00035728221080363713 - sys_16: 0.0002553008630885582 - sys_17: -0.000507765878043401 - sys_18: -0.0003738790921184401 - sys_19: -0.00032673217975896486 - sys_20: -0.00012647900689652825 - sys_21: -0.0014532266196153895 - sys_22: 0.001739804037632798 - sys_23: -0.0017885285953076124 - sys_24: 0.00181545784360149 - sys_25: 0.0028811660454171354 - sys_26: 0.0005359253468314564 - sys_27: -0.0010219009930926511 - sys_28: -0.00020743973985513464 - sys_29: -0.0005972306503400584 - sys_30: 7.915056471605151e-05 - sys_31: 0.00019976074993633002 - sys_32: 0.0003061050235727998 - sys_33: 7.564165613496463e-05 - sys_34: -1.1531652352514988e-05 - sys_35: -1.6440741913336706e-06 - sys_36: 7.477716783250659e-06 - sys_37: 0.0001325521060697054 - sys_38: -3.126456637480761e-05 - sys_39: 0.00012044137880464951 - sys_40: 5.1583663288906334e-05 - sys_41: 1.993899033270464e-05 - sys_42: -3.365288351674385e-05 - sys_43: -0.0001422236326639423 - sys_44: 1.1261960249233807e-05 - sys_45: 1.1581695568807308e-05 - sys_46: -1.2419403715529986e-05 - sys_47: 4.05409212835654e-06 - sys_48: -2.8773256515420106e-07 - sys_49: -4.295931518153983e-06 - sys_50: -3.0126868217648623e-05 - sys_51: 3.745677543770516e-05 - sys_52: -4.1636428989491336e-05 - sys_53: -2.822418178495704e-05 - sys_54: -2.8066671079364172e-05 - sys_55: -5.288087696866735e-06 - sys_56: 1.0811759310022688e-05 - sys_57: 4.107195291124582e-06 - sys_58: 9.129828459491694e-06 - sys_59: 2.096404647072958e-05 - sys_60: -1.4761367660564807e-05 - sys_61: 6.603609794742002e-06 - sys_62: 2.2376145654092913e-05 -- pol: 0.00018944 + sys_0: 1.71104982e-04 + sys_1: -6.31137316e-05 + sys_2: -3.15367377e-04 + sys_3: -8.63602774e-05 + sys_4: 1.42625520e-04 + sys_5: 8.38618882e-05 + sys_6: -1.74688107e-04 + sys_7: 4.56859274e-05 + sys_8: -2.13658754e-04 + sys_9: 1.38124647e-04 + sys_10: -1.90835144e-04 + sys_11: -2.09998553e-04 + sys_12: -1.85261093e-04 + sys_13: -2.50623064e-04 + sys_14: -3.51079620e-04 + sys_15: -3.57282211e-04 + sys_16: 2.55300863e-04 + sys_17: -5.07765878e-04 + sys_18: -3.73879092e-04 + sys_19: -3.26732180e-04 + sys_20: -1.26479007e-04 + sys_21: -1.45322662e-03 + sys_22: 1.73980404e-03 + sys_23: -1.78852860e-03 + sys_24: 1.81545784e-03 + sys_25: 2.88116605e-03 + sys_26: 5.35925347e-04 + sys_27: -1.02190099e-03 + sys_28: -2.07439740e-04 + sys_29: -5.97230650e-04 + sys_30: 7.91505647e-05 + sys_31: 1.99760750e-04 + sys_32: 3.06105024e-04 + sys_33: 7.56416561e-05 + sys_34: -1.15316524e-05 + sys_35: -1.64407419e-06 + sys_36: 7.47771678e-06 + sys_37: 1.32552106e-04 + sys_38: -3.12645664e-05 + sys_39: 1.20441379e-04 + sys_40: 5.15836633e-05 + sys_41: 1.99389903e-05 + sys_42: -3.36528835e-05 + sys_43: -1.42223633e-04 + sys_44: 1.12619602e-05 + sys_45: 1.15816956e-05 + sys_46: -1.24194037e-05 + sys_47: 4.05409213e-06 + sys_48: -2.87732565e-07 + sys_49: -4.29593152e-06 + sys_50: -3.01268682e-05 + sys_51: 3.74567754e-05 + sys_52: -4.16364290e-05 + sys_53: -2.82241818e-05 + sys_54: -2.80666711e-05 + sys_55: -5.28808770e-06 + sys_56: 1.08117593e-05 + sys_57: 4.10719529e-06 + sys_58: 9.12982846e-06 + sys_59: 2.09640465e-05 + sys_60: -1.47613677e-05 + sys_61: 6.60360979e-06 + sys_62: 2.23761457e-05 +- pol: 1.89440000e-04 lumi: 0.00047 - sys_0: 0.0001477618946365316 - sys_1: -2.5314223425450696e-05 - sys_2: -0.0002738845698831279 - sys_3: -7.264038944317416e-05 - sys_4: 0.00011701860177737997 - sys_5: 1.2313334220879609e-05 - sys_6: -0.00014846297697447517 - sys_7: 3.481131120107229e-05 - sys_8: -0.00016012922882365174 - sys_9: 0.00010864109721717574 - sys_10: -5.1365254772172516e-05 - sys_11: -0.00016496243770687893 - sys_12: -0.00013947266345208566 - sys_13: -0.00015378501696568545 - sys_14: -0.00018887848542511006 - sys_15: -6.738785315520459e-05 - sys_16: 0.00016575896483856384 - sys_17: -0.00026886034279674764 - sys_18: -0.00018120128404502904 - sys_19: -0.00013500932997745544 - sys_20: -4.933849280694114e-05 - sys_21: -0.00033053231557054146 - sys_22: 0.00020054285150836857 - sys_23: -0.0003838518385670247 - sys_24: 7.8114629771704e-05 - sys_25: -5.983122955795414e-05 - sys_26: -2.9741504749851326e-05 - sys_27: 0.00023522666983763637 - sys_28: 7.689571246664482e-05 - sys_29: -2.860913763268198e-05 - sys_30: -0.00039586841712268455 - sys_31: -0.0003140079554426757 - sys_32: -0.00042215329230923615 - sys_33: -7.34861788318562e-05 - sys_34: -2.3976689944116862e-05 - sys_35: -4.2969693071786454e-06 - sys_36: 1.7570517767488117e-05 - sys_37: 0.001116954131810299 - sys_38: 0.0008988678481572558 - sys_39: -0.0017731404978628903 - sys_40: -0.00033586967292462345 - sys_41: -0.000244289207138703 - sys_42: 0.0012839964812853938 - sys_43: 0.0009218880776214652 - sys_44: 8.972196674543195e-05 - sys_45: 4.3959216350127284e-05 - sys_46: -9.879566213507316e-05 - sys_47: 1.706014954760103e-05 - sys_48: 2.8423517750557687e-05 - sys_49: 0.00011494651970052965 - sys_50: -0.0001325008036577117 - sys_51: 0.00019110071994682203 - sys_52: -1.7889293617184898e-05 - sys_53: -2.4869164136451398e-05 - sys_54: 0.00022588949811879348 - sys_55: 5.486661973819387e-05 - sys_56: 0.00026071807461442413 - sys_57: 3.666897390503444e-05 - sys_58: 9.264066241704257e-05 - sys_59: 0.0001163458672941402 - sys_60: 7.312827454901296e-06 - sys_61: 0.00016607825794307828 - sys_62: -0.00019269670225166528 -- pol: 0.00019648 + sys_0: 1.47761895e-04 + sys_1: -2.53142234e-05 + sys_2: -2.73884570e-04 + sys_3: -7.26403894e-05 + sys_4: 1.17018602e-04 + sys_5: 1.23133342e-05 + sys_6: -1.48462977e-04 + sys_7: 3.48113112e-05 + sys_8: -1.60129229e-04 + sys_9: 1.08641097e-04 + sys_10: -5.13652548e-05 + sys_11: -1.64962438e-04 + sys_12: -1.39472663e-04 + sys_13: -1.53785017e-04 + sys_14: -1.88878485e-04 + sys_15: -6.73878532e-05 + sys_16: 1.65758965e-04 + sys_17: -2.68860343e-04 + sys_18: -1.81201284e-04 + sys_19: -1.35009330e-04 + sys_20: -4.93384928e-05 + sys_21: -3.30532316e-04 + sys_22: 2.00542852e-04 + sys_23: -3.83851839e-04 + sys_24: 7.81146298e-05 + sys_25: -5.98312296e-05 + sys_26: -2.97415047e-05 + sys_27: 2.35226670e-04 + sys_28: 7.68957125e-05 + sys_29: -2.86091376e-05 + sys_30: -3.95868417e-04 + sys_31: -3.14007955e-04 + sys_32: -4.22153292e-04 + sys_33: -7.34861788e-05 + sys_34: -2.39766899e-05 + sys_35: -4.29696931e-06 + sys_36: 1.75705178e-05 + sys_37: 1.11695413e-03 + sys_38: 8.98867848e-04 + sys_39: -1.77314050e-03 + sys_40: -3.35869673e-04 + sys_41: -2.44289207e-04 + sys_42: 1.28399648e-03 + sys_43: 9.21888078e-04 + sys_44: 8.97219667e-05 + sys_45: 4.39592164e-05 + sys_46: -9.87956621e-05 + sys_47: 1.70601495e-05 + sys_48: 2.84235178e-05 + sys_49: 1.14946520e-04 + sys_50: -1.32500804e-04 + sys_51: 1.91100720e-04 + sys_52: -1.78892936e-05 + sys_53: -2.48691641e-05 + sys_54: 2.25889498e-04 + sys_55: 5.48666197e-05 + sys_56: 2.60718075e-04 + sys_57: 3.66689739e-05 + sys_58: 9.26406624e-05 + sys_59: 1.16345867e-04 + sys_60: 7.31282745e-06 + sys_61: 1.66078258e-04 + sys_62: -1.92696702e-04 +- pol: 1.96480000e-04 lumi: 0.00047 - sys_0: 0.00014542150293966815 - sys_1: -5.519242689507821e-05 - sys_2: -0.00026572774013565995 - sys_3: -7.162698150688517e-05 - sys_4: 0.00011462194906994946 - sys_5: 6.867821185698758e-05 - sys_6: -0.00014024789519000603 - sys_7: 3.531656812575814e-05 - sys_8: -0.0001659508817890205 - sys_9: 0.00010588638724016048 - sys_10: -0.00014668567251617005 - sys_11: -0.00014675557276967716 - sys_12: -0.00013254009541633293 - sys_13: -0.00016188152143435425 - sys_14: -0.00021336607070801083 - sys_15: -0.00021560087944470785 - sys_16: 0.00014560167393865172 - sys_17: -0.000252722838182063 - sys_18: -0.00017741601984980776 - sys_19: -0.00013637048544032408 - sys_20: -5.100301222894912e-05 - sys_21: -0.0004156808109852215 - sys_22: 0.00037267156249826334 - sys_23: -0.00018082389422941262 - sys_24: 8.125762262662335e-05 - sys_25: -6.633248113870246e-05 - sys_26: -6.612975239229542e-05 - sys_27: 0.0002398430152684786 - sys_28: 7.365124551595647e-05 - sys_29: 0.0003550490388576687 - sys_30: -2.0027852109478168e-06 - sys_31: -0.00016923346722442272 - sys_32: -0.0004696609251837543 - sys_33: -0.00014839957311239704 - sys_34: -3.99979576002866e-05 - sys_35: -1.5221383149949526e-05 - sys_36: 4.0312291496464156e-05 - sys_37: -0.0006148057919702007 - sys_38: -0.0001451025184425242 - sys_39: 0.00010556734394727276 - sys_40: -5.861630563524067e-05 - sys_41: -1.6786243761134573e-05 - sys_42: -0.00027618009490790267 - sys_43: 0.00039291510511448214 - sys_44: 7.936693007985032e-05 - sys_45: 8.060298463235335e-05 - sys_46: -9.715925824290737e-05 - sys_47: 1.9055784458035757e-05 - sys_48: 3.115820542367707e-05 - sys_49: -9.916133731560974e-05 - sys_50: 0.00026691115162750183 - sys_51: -0.0008716473700958799 - sys_52: 0.0003419914775779854 - sys_53: 0.0008127730978596243 - sys_54: 0.0009022874790462247 - sys_55: 7.887542199973608e-05 - sys_56: 0.00025558829070201265 - sys_57: 7.663978736636034e-05 - sys_58: 0.00014950101671736135 - sys_59: 0.0014010377377339789 - sys_60: -0.0005383585339182688 - sys_61: 7.75209702077153e-05 - sys_62: 0.00015076270108817615 -- pol: 4.6080000000000006e-05 + sys_0: 1.45421503e-04 + sys_1: -5.51924269e-05 + sys_2: -2.65727740e-04 + sys_3: -7.16269815e-05 + sys_4: 1.14621949e-04 + sys_5: 6.86782119e-05 + sys_6: -1.40247895e-04 + sys_7: 3.53165681e-05 + sys_8: -1.65950882e-04 + sys_9: 1.05886387e-04 + sys_10: -1.46685673e-04 + sys_11: -1.46755573e-04 + sys_12: -1.32540095e-04 + sys_13: -1.61881521e-04 + sys_14: -2.13366071e-04 + sys_15: -2.15600879e-04 + sys_16: 1.45601674e-04 + sys_17: -2.52722838e-04 + sys_18: -1.77416020e-04 + sys_19: -1.36370485e-04 + sys_20: -5.10030122e-05 + sys_21: -4.15680811e-04 + sys_22: 3.72671562e-04 + sys_23: -1.80823894e-04 + sys_24: 8.12576226e-05 + sys_25: -6.63324811e-05 + sys_26: -6.61297524e-05 + sys_27: 2.39843015e-04 + sys_28: 7.36512455e-05 + sys_29: 3.55049039e-04 + sys_30: -2.00278521e-06 + sys_31: -1.69233467e-04 + sys_32: -4.69660925e-04 + sys_33: -1.48399573e-04 + sys_34: -3.99979576e-05 + sys_35: -1.52213831e-05 + sys_36: 4.03122915e-05 + sys_37: -6.14805792e-04 + sys_38: -1.45102518e-04 + sys_39: 1.05567344e-04 + sys_40: -5.86163056e-05 + sys_41: -1.67862438e-05 + sys_42: -2.76180095e-04 + sys_43: 3.92915105e-04 + sys_44: 7.93669301e-05 + sys_45: 8.06029846e-05 + sys_46: -9.71592582e-05 + sys_47: 1.90557845e-05 + sys_48: 3.11582054e-05 + sys_49: -9.91613373e-05 + sys_50: 2.66911152e-04 + sys_51: -8.71647370e-04 + sys_52: 3.41991478e-04 + sys_53: 8.12773098e-04 + sys_54: 9.02287479e-04 + sys_55: 7.88754220e-05 + sys_56: 2.55588291e-04 + sys_57: 7.66397874e-05 + sys_58: 1.49501017e-04 + sys_59: 1.40103774e-03 + sys_60: -5.38358534e-04 + sys_61: 7.75209702e-05 + sys_62: 1.50762701e-04 +- pol: 4.60800000e-05 lumi: 0.00047 - sys_0: 0.00013504495145453917 - sys_1: -4.504759924651163e-05 - sys_2: -0.0002509490866681172 - sys_3: -6.62217391540971e-05 - sys_4: 0.00010586939209480816 - sys_5: 5.04269225215414e-05 - sys_6: -0.00013324705449066648 - sys_7: 3.0856643860159643e-05 - sys_8: -0.0001531407224331434 - sys_9: 9.764029995094844e-05 - sys_10: -0.00011034170796955109 - sys_11: -0.0001400364769608117 - sys_12: -0.00012644696012349495 - sys_13: -0.00014627252553300136 - sys_14: -0.00018963310896638453 - sys_15: -0.00016307026528392837 - sys_16: 0.00013979017149812006 - sys_17: -0.00023478402652087326 - sys_18: -0.00016318086595530797 - sys_19: -0.00012299238933550282 - sys_20: -4.577120655887944e-05 - sys_21: -0.00036365582423900723 - sys_22: 0.00030371094847827655 - sys_23: -0.00020972111501907218 - sys_24: 8.123346950800324e-05 - sys_25: -4.0121263506200507e-05 - sys_26: -4.7263188727336654e-05 - sys_27: 0.00020149726381438754 - sys_28: 5.745991822358535e-05 - sys_29: 0.00023708407177588827 - sys_30: -5.586963740455549e-05 - sys_31: -0.00015551858599027423 - sys_32: -0.00036046773146380007 - sys_33: -0.00011149108476751762 - sys_34: -7.211528268867812e-06 - sys_35: -1.1052606023359232e-05 - sys_36: 2.62573786348465e-05 - sys_37: -0.00039485190682833523 - sys_38: -8.459294538999842e-05 - sys_39: 5.611490131769669e-05 - sys_40: -3.651113780917613e-05 - sys_41: -1.2764429921272065e-05 - sys_42: -0.00026690985515617495 - sys_43: 0.0001774591623773706 - sys_44: 0.00010511406854458342 - sys_45: 7.230564479289692e-05 - sys_46: -0.0001274352783718181 - sys_47: 2.8306155067526073e-05 - sys_48: 1.2648313043004042e-05 - sys_49: -0.0001402969098303204 - sys_50: 0.00019760441308790426 - sys_51: -0.0008416260208751062 - sys_52: 0.00024530722965121975 - sys_53: 0.0007042362489058487 - sys_54: 0.0005234422589486562 - sys_55: 9.228980595960812e-05 - sys_56: 0.0004380039752888148 - sys_57: 8.776783716429844e-05 - sys_58: 0.00021436136691890947 - sys_59: -0.0013736378628989756 - sys_60: 0.0006055673213174772 - sys_61: 0.00031849452099052427 - sys_62: -0.0008496935078666962 -- pol: 0.00010816000000000001 + sys_0: 1.35044951e-04 + sys_1: -4.50475992e-05 + sys_2: -2.50949087e-04 + sys_3: -6.62217392e-05 + sys_4: 1.05869392e-04 + sys_5: 5.04269225e-05 + sys_6: -1.33247054e-04 + sys_7: 3.08566439e-05 + sys_8: -1.53140722e-04 + sys_9: 9.76403000e-05 + sys_10: -1.10341708e-04 + sys_11: -1.40036477e-04 + sys_12: -1.26446960e-04 + sys_13: -1.46272526e-04 + sys_14: -1.89633109e-04 + sys_15: -1.63070265e-04 + sys_16: 1.39790171e-04 + sys_17: -2.34784027e-04 + sys_18: -1.63180866e-04 + sys_19: -1.22992389e-04 + sys_20: -4.57712066e-05 + sys_21: -3.63655824e-04 + sys_22: 3.03710948e-04 + sys_23: -2.09721115e-04 + sys_24: 8.12334695e-05 + sys_25: -4.01212635e-05 + sys_26: -4.72631887e-05 + sys_27: 2.01497264e-04 + sys_28: 5.74599182e-05 + sys_29: 2.37084072e-04 + sys_30: -5.58696374e-05 + sys_31: -1.55518586e-04 + sys_32: -3.60467731e-04 + sys_33: -1.11491085e-04 + sys_34: -7.21152827e-06 + sys_35: -1.10526060e-05 + sys_36: 2.62573786e-05 + sys_37: -3.94851907e-04 + sys_38: -8.45929454e-05 + sys_39: 5.61149013e-05 + sys_40: -3.65111378e-05 + sys_41: -1.27644299e-05 + sys_42: -2.66909855e-04 + sys_43: 1.77459162e-04 + sys_44: 1.05114069e-04 + sys_45: 7.23056448e-05 + sys_46: -1.27435278e-04 + sys_47: 2.83061551e-05 + sys_48: 1.26483130e-05 + sys_49: -1.40296910e-04 + sys_50: 1.97604413e-04 + sys_51: -8.41626021e-04 + sys_52: 2.45307230e-04 + sys_53: 7.04236249e-04 + sys_54: 5.23442259e-04 + sys_55: 9.22898060e-05 + sys_56: 4.38003975e-04 + sys_57: 8.77678372e-05 + sys_58: 2.14361367e-04 + sys_59: -1.37363786e-03 + sys_60: 6.05567321e-04 + sys_61: 3.18494521e-04 + sys_62: -8.49693508e-04 +- pol: 1.08160000e-04 lumi: 0.00047 - sys_0: 0.00013116395294354897 - sys_1: -3.796892293028003e-05 - sys_2: -0.0002437983710344848 - sys_3: -6.257617969003719e-05 - sys_4: 0.000101366710779752 - sys_5: 3.9160664003604993e-05 - sys_6: -0.0001298872243186154 - sys_7: 3.070179159639141e-05 - sys_8: -0.0001478124835333721 - sys_9: 9.522667829618408e-05 - sys_10: -9.337329125839052e-05 - sys_11: -0.00014158943027076364 - sys_12: -0.0001247612695141652 - sys_13: -0.00014533303634708676 - sys_14: -0.00018442196072814332 - sys_15: -0.00014166880508778627 - sys_16: 0.00014334237854262083 - sys_17: -0.00024140582866744286 - sys_18: -0.0001722334161056606 - sys_19: -0.00012751847927896742 - sys_20: -4.458447869337505e-05 - sys_21: -0.0003752856800581001 - sys_22: 0.00030462931557091814 - sys_23: -0.0002696834833643524 - sys_24: 9.35641457342036e-05 - sys_25: -2.8504142821504443e-05 - sys_26: -4.536601187181772e-05 - sys_27: 0.00022922313802363692 - sys_28: 6.085639546267669e-05 - sys_29: 0.00023391851631056034 - sys_30: -0.00012198178741219405 - sys_31: -0.00024050467821687705 - sys_32: -0.0005815710136673041 - sys_33: -0.00017727040047005798 - sys_34: 1.6306254191635432e-05 - sys_35: -2.5036473224437457e-06 - sys_36: 1.2077838708896887e-06 - sys_37: -0.0006952608097820436 - sys_38: -0.0001446697680490323 - sys_39: 9.026570250189009e-05 - sys_40: -7.179948747088631e-05 - sys_41: -6.126697553008706e-05 - sys_42: -0.0013966670341302306 - sys_43: 0.0018507890736842504 - sys_44: 6.134991471085612e-05 - sys_45: 1.846024563476774e-05 - sys_46: -6.5747627857577e-05 - sys_47: 1.1956311795471234e-05 - sys_48: -3.308555400230397e-06 - sys_49: 0.00023989220483075014 - sys_50: -0.0002333089746185622 - sys_51: 0.0008722263304545685 - sys_52: -0.00016531400090614144 - sys_53: -0.000565071611405331 - sys_54: -0.0002101549517312244 - sys_55: 2.6393258688655806e-05 - sys_56: 0.00014536873698986404 - sys_57: 1.2653911941364346e-05 - sys_58: 3.557166793906079e-05 - sys_59: -9.985500061006e-06 - sys_60: 5.569449810069082e-05 - sys_61: 3.690651875347892e-05 - sys_62: -0.00010078081521474912 -- pol: 0.00032063999999999997 + sys_0: 1.31163953e-04 + sys_1: -3.79689229e-05 + sys_2: -2.43798371e-04 + sys_3: -6.25761797e-05 + sys_4: 1.01366711e-04 + sys_5: 3.91606640e-05 + sys_6: -1.29887224e-04 + sys_7: 3.07017916e-05 + sys_8: -1.47812484e-04 + sys_9: 9.52266783e-05 + sys_10: -9.33732913e-05 + sys_11: -1.41589430e-04 + sys_12: -1.24761270e-04 + sys_13: -1.45333036e-04 + sys_14: -1.84421961e-04 + sys_15: -1.41668805e-04 + sys_16: 1.43342379e-04 + sys_17: -2.41405829e-04 + sys_18: -1.72233416e-04 + sys_19: -1.27518479e-04 + sys_20: -4.45844787e-05 + sys_21: -3.75285680e-04 + sys_22: 3.04629316e-04 + sys_23: -2.69683483e-04 + sys_24: 9.35641457e-05 + sys_25: -2.85041428e-05 + sys_26: -4.53660119e-05 + sys_27: 2.29223138e-04 + sys_28: 6.08563955e-05 + sys_29: 2.33918516e-04 + sys_30: -1.21981787e-04 + sys_31: -2.40504678e-04 + sys_32: -5.81571014e-04 + sys_33: -1.77270400e-04 + sys_34: 1.63062542e-05 + sys_35: -2.50364732e-06 + sys_36: 1.20778387e-06 + sys_37: -6.95260810e-04 + sys_38: -1.44669768e-04 + sys_39: 9.02657025e-05 + sys_40: -7.17994875e-05 + sys_41: -6.12669755e-05 + sys_42: -1.39666703e-03 + sys_43: 1.85078907e-03 + sys_44: 6.13499147e-05 + sys_45: 1.84602456e-05 + sys_46: -6.57476279e-05 + sys_47: 1.19563118e-05 + sys_48: -3.30855540e-06 + sys_49: 2.39892205e-04 + sys_50: -2.33308975e-04 + sys_51: 8.72226330e-04 + sys_52: -1.65314001e-04 + sys_53: -5.65071611e-04 + sys_54: -2.10154952e-04 + sys_55: 2.63932587e-05 + sys_56: 1.45368737e-04 + sys_57: 1.26539119e-05 + sys_58: 3.55716679e-05 + sys_59: -9.98550006e-06 + sys_60: 5.56944981e-05 + sys_61: 3.69065188e-05 + sys_62: -1.00780815e-04 +- pol: 3.20640000e-04 lumi: 0.00047 - sys_0: 0.00012841212567495553 - sys_1: -3.640775904997375e-05 - sys_2: -0.0002415229052577813 - sys_3: -6.0674470068524086e-05 - sys_4: 9.933497923600452e-05 - sys_5: 3.58842244367947e-05 - sys_6: -0.00012807653476298213 - sys_7: 2.6276685056649924e-05 - sys_8: -0.00014625598817317027 - sys_9: 9.196939857268286e-05 - sys_10: -8.574179639443365e-05 - sys_11: -0.00013977163294851547 - sys_12: -0.00012739031196052288 - sys_13: -0.00014237193921262366 - sys_14: -0.0001845856316916442 - sys_15: -0.00013260127117336538 - sys_16: 0.00014758827656529506 - sys_17: -0.0002486095825511312 - sys_18: -0.00017778630456208807 - sys_19: -0.00012896203498822848 - sys_20: -4.567287368232772e-05 - sys_21: -0.00038660187870290165 - sys_22: 0.00030960128284761193 - sys_23: -0.0002982885224247654 - sys_24: 0.0001020894085509252 - sys_25: -2.301202826000909e-05 - sys_26: -4.3697719096270734e-05 - sys_27: 0.00025789189307023403 - sys_28: 5.7309667297612915e-05 - sys_29: 0.00024404579046294472 - sys_30: -0.00016707370612662422 - sys_31: -0.0003314785988047721 - sys_32: -0.000941658291419002 - sys_33: -0.0003690647739351505 - sys_34: 3.247394059731268e-05 - sys_35: 5.910446669208224e-06 - sys_36: -1.6281948627489734e-05 - sys_37: -0.0018731782186002057 - sys_38: -0.00042249206574003007 - sys_39: 0.00043415500343277347 - sys_40: 0.00020825310326654054 - sys_41: 0.0001365915579100604 - sys_42: 0.0018027489741760843 - sys_43: -0.00021161706723385416 - sys_44: 5.034720657383537e-05 - sys_45: -5.118835721798232e-06 - sys_46: -4.988129375354729e-05 - sys_47: 5.9226170677198594e-06 - sys_48: -7.68312812759602e-06 - sys_49: 0.0001063525500723392 - sys_50: -0.00010929569296165719 - sys_51: 0.0004691025173129039 - sys_52: -9.721202871361031e-05 - sys_53: -0.0003230917871973758 - sys_54: -0.0001273925441424505 - sys_55: 6.846359985992183e-06 - sys_56: 0.00010140191123513978 - sys_57: -3.913189493762565e-06 - sys_58: 6.801612084412341e-06 - sys_59: -2.005437616126913e-06 - sys_60: 5.1875902185225067e-05 - sys_61: 3.713699847700864e-05 - sys_62: -7.176861305763625e-05 -- pol: 0.00028352 + sys_0: 1.28412126e-04 + sys_1: -3.64077590e-05 + sys_2: -2.41522905e-04 + sys_3: -6.06744701e-05 + sys_4: 9.93349792e-05 + sys_5: 3.58842244e-05 + sys_6: -1.28076535e-04 + sys_7: 2.62766851e-05 + sys_8: -1.46255988e-04 + sys_9: 9.19693986e-05 + sys_10: -8.57417964e-05 + sys_11: -1.39771633e-04 + sys_12: -1.27390312e-04 + sys_13: -1.42371939e-04 + sys_14: -1.84585632e-04 + sys_15: -1.32601271e-04 + sys_16: 1.47588277e-04 + sys_17: -2.48609583e-04 + sys_18: -1.77786305e-04 + sys_19: -1.28962035e-04 + sys_20: -4.56728737e-05 + sys_21: -3.86601879e-04 + sys_22: 3.09601283e-04 + sys_23: -2.98288522e-04 + sys_24: 1.02089409e-04 + sys_25: -2.30120283e-05 + sys_26: -4.36977191e-05 + sys_27: 2.57891893e-04 + sys_28: 5.73096673e-05 + sys_29: 2.44045790e-04 + sys_30: -1.67073706e-04 + sys_31: -3.31478599e-04 + sys_32: -9.41658291e-04 + sys_33: -3.69064774e-04 + sys_34: 3.24739406e-05 + sys_35: 5.91044667e-06 + sys_36: -1.62819486e-05 + sys_37: -1.87317822e-03 + sys_38: -4.22492066e-04 + sys_39: 4.34155003e-04 + sys_40: 2.08253103e-04 + sys_41: 1.36591558e-04 + sys_42: 1.80274897e-03 + sys_43: -2.11617067e-04 + sys_44: 5.03472066e-05 + sys_45: -5.11883572e-06 + sys_46: -4.98812938e-05 + sys_47: 5.92261707e-06 + sys_48: -7.68312813e-06 + sys_49: 1.06352550e-04 + sys_50: -1.09295693e-04 + sys_51: 4.69102517e-04 + sys_52: -9.72120287e-05 + sys_53: -3.23091787e-04 + sys_54: -1.27392544e-04 + sys_55: 6.84635999e-06 + sys_56: 1.01401911e-04 + sys_57: -3.91318949e-06 + sys_58: 6.80161208e-06 + sys_59: -2.00543762e-06 + sys_60: 5.18759022e-05 + sys_61: 3.71369985e-05 + sys_62: -7.17686131e-05 +- pol: 2.83520000e-04 lumi: 0.00047 - sys_0: 0.0001224854415855307 - sys_1: -3.4357942270368546e-05 - sys_2: -0.00023765880116288483 - sys_3: -6.0301564520731645e-05 - sys_4: 9.995524578494128e-05 - sys_5: 3.4364906732318316e-05 - sys_6: -0.00012534956536635472 - sys_7: 2.6676032025224994e-05 - sys_8: -0.00014619952757578968 - sys_9: 9.186852784178643e-05 - sys_10: -9.05586566203973e-05 - sys_11: -0.0001453552320528314 - sys_12: -0.00013218383245239035 - sys_13: -0.00015362867292192283 - sys_14: -0.00019813149751098143 - sys_15: -0.0001516024108186261 - sys_16: 0.0001636005333130091 - sys_17: -0.0002910339933829496 - sys_18: -0.00021293357785114647 - sys_19: -0.00014968918858470864 - sys_20: -5.6669222139941345e-05 - sys_21: -0.0005201202044566027 - sys_22: 0.0004397428173820297 - sys_23: -0.00046152738105858176 - sys_24: 0.0001688909831748639 - sys_25: -1.936622400888346e-06 - sys_26: -5.756616184509884e-05 - sys_27: 0.0006992701775183079 - sys_28: 0.00013049568755151095 - sys_29: 0.0027882205075596997 - sys_30: 0.0022399975026018565 - sys_31: 0.0006535648670677159 - sys_32: 0.00044192308444771 - sys_33: 9.87753786319789e-05 - sys_34: 2.6186575711127554e-05 - sys_35: 1.1859117526538744e-05 - sys_36: -2.7891598480275667e-05 - sys_37: 0.0002586154229774747 - sys_38: 1.784022507429243e-05 - sys_39: -2.9512289410323707e-05 - sys_40: -5.197485688944121e-05 - sys_41: -9.40302521721393e-06 - sys_42: 0.0001655750699473686 - sys_43: -4.332134770735631e-05 - sys_44: 2.7576179475250252e-05 - sys_45: -2.7976070007301437e-05 - sys_46: -2.0422226854710427e-05 - sys_47: -1.3550366065546877e-06 - sys_48: -4.613702544253135e-06 - sys_49: 2.888333801584551e-05 - sys_50: -3.2153379010973785e-05 - sys_51: 0.00014406491662888977 - sys_52: -3.228824908758744e-05 - sys_53: -0.00010524656080995307 - sys_54: -4.090375959635114e-05 - sys_55: -2.7222406676806437e-06 - sys_56: 3.89781061160368e-05 - sys_57: -1.3850441701720223e-05 - sys_58: -1.934687846029127e-05 - sys_59: 4.257450955670183e-06 - sys_60: 3.101893747803526e-05 - sys_61: 2.6361006245700375e-05 - sys_62: -3.129260361836981e-05 -- pol: 0.00056768 + sys_0: 1.22485442e-04 + sys_1: -3.43579423e-05 + sys_2: -2.37658801e-04 + sys_3: -6.03015645e-05 + sys_4: 9.99552458e-05 + sys_5: 3.43649067e-05 + sys_6: -1.25349565e-04 + sys_7: 2.66760320e-05 + sys_8: -1.46199528e-04 + sys_9: 9.18685278e-05 + sys_10: -9.05586566e-05 + sys_11: -1.45355232e-04 + sys_12: -1.32183832e-04 + sys_13: -1.53628673e-04 + sys_14: -1.98131498e-04 + sys_15: -1.51602411e-04 + sys_16: 1.63600533e-04 + sys_17: -2.91033993e-04 + sys_18: -2.12933578e-04 + sys_19: -1.49689189e-04 + sys_20: -5.66692221e-05 + sys_21: -5.20120204e-04 + sys_22: 4.39742817e-04 + sys_23: -4.61527381e-04 + sys_24: 1.68890983e-04 + sys_25: -1.93662240e-06 + sys_26: -5.75661618e-05 + sys_27: 6.99270178e-04 + sys_28: 1.30495688e-04 + sys_29: 2.78822051e-03 + sys_30: 2.23999750e-03 + sys_31: 6.53564867e-04 + sys_32: 4.41923084e-04 + sys_33: 9.87753786e-05 + sys_34: 2.61865757e-05 + sys_35: 1.18591175e-05 + sys_36: -2.78915985e-05 + sys_37: 2.58615423e-04 + sys_38: 1.78402251e-05 + sys_39: -2.95122894e-05 + sys_40: -5.19748569e-05 + sys_41: -9.40302522e-06 + sys_42: 1.65575070e-04 + sys_43: -4.33213477e-05 + sys_44: 2.75761795e-05 + sys_45: -2.79760700e-05 + sys_46: -2.04222269e-05 + sys_47: -1.35503661e-06 + sys_48: -4.61370254e-06 + sys_49: 2.88833380e-05 + sys_50: -3.21533790e-05 + sys_51: 1.44064917e-04 + sys_52: -3.22882491e-05 + sys_53: -1.05246561e-04 + sys_54: -4.09037596e-05 + sys_55: -2.72224067e-06 + sys_56: 3.89781061e-05 + sys_57: -1.38504417e-05 + sys_58: -1.93468785e-05 + sys_59: 4.25745096e-06 + sys_60: 3.10189375e-05 + sys_61: 2.63610062e-05 + sys_62: -3.12926036e-05 +- pol: 5.67680000e-04 lumi: 0.00047 - sys_0: 0.00012060344512765617 - sys_1: -3.518380570036654e-05 - sys_2: -0.00023252458290258954 - sys_3: -5.6127042593324985e-05 - sys_4: 9.882198147047589e-05 - sys_5: 3.799054662681284e-05 - sys_6: -0.00013280623916606555 - sys_7: 2.7952038564599216e-05 - sys_8: -0.00015477239956304556 - sys_9: 9.919200120850535e-05 - sys_10: -0.00010745945450041411 - sys_11: -0.00016215335932282839 - sys_12: -0.00015750455766178309 - sys_13: -0.00018347731392150514 - sys_14: -0.00024223273542036498 - sys_15: -0.00021163613369099671 - sys_16: 0.00018201429359365675 - sys_17: -0.0004459159975498253 - sys_18: -0.0003614939517424867 - sys_19: -0.00024772172619978114 - sys_20: -9.606683284569619e-05 - sys_21: -0.001619217922909569 - sys_22: 0.0029435127427043938 - sys_23: 0.0036462679750503407 - sys_24: -0.00034239158854358924 - sys_25: -0.00011780209473000418 - sys_26: -5.908534225391166e-05 - sys_27: -0.0003402424233113569 - sys_28: -4.83178314089448e-07 - sys_29: -0.00014008973127934188 - sys_30: 5.3425115575672626e-05 - sys_31: 9.606196102383014e-05 - sys_32: 9.813380829842673e-05 - sys_33: 2.970606991259497e-05 - sys_34: 1.288247786292481e-05 - sys_35: 1.0011272758565039e-05 - sys_36: -2.7355379419018405e-05 - sys_37: 8.280763847916863e-05 - sys_38: -1.0467499760867646e-05 - sys_39: -1.8194079524311394e-05 - sys_40: -6.141677462494235e-05 - sys_41: -3.3484029708071005e-05 - sys_42: 5.402335157359868e-05 - sys_43: -2.485796437637887e-05 - sys_44: 1.688055547992839e-05 - sys_45: -4.232753470266291e-05 - sys_46: -3.612489114130077e-06 - sys_47: -3.919124344296112e-06 - sys_48: -1.938781238105004e-06 - sys_49: 1.1728697947380304e-05 - sys_50: -1.3256952353924332e-05 - sys_51: 5.947806274561518e-05 - sys_52: -1.4118366235851307e-05 - sys_53: -4.513240244573518e-05 - sys_54: -1.4341076855325339e-05 - sys_55: -4.141952892280118e-06 - sys_56: 5.123427540822324e-06 - sys_57: -2.09263813079136e-05 - sys_58: -4.2300978366527453e-05 - sys_59: 6.072533779221483e-06 - sys_60: 2.2700113219265837e-05 - sys_61: 1.9837039850398595e-05 - sys_62: -2.4610015835099277e-05 -- pol: 0.0006303999999999999 + sys_0: 1.20603445e-04 + sys_1: -3.51838057e-05 + sys_2: -2.32524583e-04 + sys_3: -5.61270426e-05 + sys_4: 9.88219815e-05 + sys_5: 3.79905466e-05 + sys_6: -1.32806239e-04 + sys_7: 2.79520386e-05 + sys_8: -1.54772400e-04 + sys_9: 9.91920012e-05 + sys_10: -1.07459455e-04 + sys_11: -1.62153359e-04 + sys_12: -1.57504558e-04 + sys_13: -1.83477314e-04 + sys_14: -2.42232735e-04 + sys_15: -2.11636134e-04 + sys_16: 1.82014294e-04 + sys_17: -4.45915998e-04 + sys_18: -3.61493952e-04 + sys_19: -2.47721726e-04 + sys_20: -9.60668328e-05 + sys_21: -1.61921792e-03 + sys_22: 2.94351274e-03 + sys_23: 3.64626798e-03 + sys_24: -3.42391589e-04 + sys_25: -1.17802095e-04 + sys_26: -5.90853423e-05 + sys_27: -3.40242423e-04 + sys_28: -4.83178314e-07 + sys_29: -1.40089731e-04 + sys_30: 5.34251156e-05 + sys_31: 9.60619610e-05 + sys_32: 9.81338083e-05 + sys_33: 2.97060699e-05 + sys_34: 1.28824779e-05 + sys_35: 1.00112728e-05 + sys_36: -2.73553794e-05 + sys_37: 8.28076385e-05 + sys_38: -1.04674998e-05 + sys_39: -1.81940795e-05 + sys_40: -6.14167746e-05 + sys_41: -3.34840297e-05 + sys_42: 5.40233516e-05 + sys_43: -2.48579644e-05 + sys_44: 1.68805555e-05 + sys_45: -4.23275347e-05 + sys_46: -3.61248911e-06 + sys_47: -3.91912434e-06 + sys_48: -1.93878124e-06 + sys_49: 1.17286979e-05 + sys_50: -1.32569524e-05 + sys_51: 5.94780627e-05 + sys_52: -1.41183662e-05 + sys_53: -4.51324024e-05 + sys_54: -1.43410769e-05 + sys_55: -4.14195289e-06 + sys_56: 5.12342754e-06 + sys_57: -2.09263813e-05 + sys_58: -4.23009784e-05 + sys_59: 6.07253378e-06 + sys_60: 2.27001132e-05 + sys_61: 1.98370399e-05 + sys_62: -2.46100158e-05 +- pol: 6.30400000e-04 lumi: 0.00047 - sys_0: 0.00012524497467057298 - sys_1: -4.8015397058166226e-05 - sys_2: -0.00023754394824966458 - sys_3: -5.956735792894266e-05 - sys_4: 0.00011492471086616659 - sys_5: 6.984231690248995e-05 - sys_6: -0.0001618071134915834 - sys_7: 2.331713913806026e-05 - sys_8: -0.00017119401912876907 - sys_9: 0.00012877114389682655 - sys_10: -0.00021733609964711087 - sys_11: -0.00025952405361505745 - sys_12: -0.00033087105335896156 - sys_13: -0.0005387495223513188 - sys_14: -0.0012024961988339813 - sys_15: -0.007071555694092261 - sys_16: -0.0018496576301854834 - sys_17: 0.0008856890747542383 - sys_18: 0.00043458435763207344 - sys_19: 0.00016300480527958012 - sys_20: 3.8805802839782514e-05 - sys_21: 0.00025147622604637654 - sys_22: -0.00015644698239879523 - sys_23: 7.377917329102599e-05 - sys_24: 1.038559550344117e-05 - sys_25: -6.442620376734635e-05 - sys_26: -7.766374254364412e-05 - sys_27: -8.548048508768271e-05 - sys_28: -2.3330211925606983e-07 - sys_29: -3.308485583537062e-05 - sys_30: 8.046865875848361e-06 - sys_31: 2.3718844002167196e-05 - sys_32: 1.5738393250698475e-05 - sys_33: 1.0775729865191936e-05 - sys_34: 2.6905074200394905e-06 - sys_35: 3.997978755678076e-06 - sys_36: -1.2619401554534248e-05 - sys_37: 2.25028371168207e-05 - sys_38: -2.075372881346379e-05 - sys_39: -1.5895585549972624e-05 - sys_40: -5.955664081250554e-05 - sys_41: -4.9589548757150034e-05 - sys_42: 1.1891171731642438e-05 - sys_43: -1.9875918793368317e-05 - sys_44: 8.362063841114631e-06 - sys_45: -3.154902874470723e-05 - sys_46: 2.3786569482114464e-06 - sys_47: -1.247701696211914e-06 - sys_48: -6.563858718843679e-07 - sys_49: 1.0418627816019044e-05 - sys_50: -3.5329379790548334e-06 - sys_51: 1.7551685738483072e-05 - sys_52: -5.1824356532658356e-06 - sys_53: -1.582379200655698e-05 - sys_54: -4.36910140291293e-06 - sys_55: -4.38773254339282e-06 - sys_56: -1.1726622184270726e-05 - sys_57: -2.1832618448087152e-05 - sys_58: -4.654065395491069e-05 - sys_59: 4.63361497246823e-06 - sys_60: 1.3043473495884488e-05 - sys_61: 1.158931424732893e-05 - sys_62: -1.793788615385206e-05 -- pol: 0.00022464000000000002 + sys_0: 1.25244975e-04 + sys_1: -4.80153971e-05 + sys_2: -2.37543948e-04 + sys_3: -5.95673579e-05 + sys_4: 1.14924711e-04 + sys_5: 6.98423169e-05 + sys_6: -1.61807113e-04 + sys_7: 2.33171391e-05 + sys_8: -1.71194019e-04 + sys_9: 1.28771144e-04 + sys_10: -2.17336100e-04 + sys_11: -2.59524054e-04 + sys_12: -3.30871053e-04 + sys_13: -5.38749522e-04 + sys_14: -1.20249620e-03 + sys_15: -7.07155569e-03 + sys_16: -1.84965763e-03 + sys_17: 8.85689075e-04 + sys_18: 4.34584358e-04 + sys_19: 1.63004805e-04 + sys_20: 3.88058028e-05 + sys_21: 2.51476226e-04 + sys_22: -1.56446982e-04 + sys_23: 7.37791733e-05 + sys_24: 1.03855955e-05 + sys_25: -6.44262038e-05 + sys_26: -7.76637425e-05 + sys_27: -8.54804851e-05 + sys_28: -2.33302119e-07 + sys_29: -3.30848558e-05 + sys_30: 8.04686588e-06 + sys_31: 2.37188440e-05 + sys_32: 1.57383933e-05 + sys_33: 1.07757299e-05 + sys_34: 2.69050742e-06 + sys_35: 3.99797876e-06 + sys_36: -1.26194016e-05 + sys_37: 2.25028371e-05 + sys_38: -2.07537288e-05 + sys_39: -1.58955855e-05 + sys_40: -5.95566408e-05 + sys_41: -4.95895488e-05 + sys_42: 1.18911717e-05 + sys_43: -1.98759188e-05 + sys_44: 8.36206384e-06 + sys_45: -3.15490287e-05 + sys_46: 2.37865695e-06 + sys_47: -1.24770170e-06 + sys_48: -6.56385872e-07 + sys_49: 1.04186278e-05 + sys_50: -3.53293798e-06 + sys_51: 1.75516857e-05 + sys_52: -5.18243565e-06 + sys_53: -1.58237920e-05 + sys_54: -4.36910140e-06 + sys_55: -4.38773254e-06 + sys_56: -1.17266222e-05 + sys_57: -2.18326184e-05 + sys_58: -4.65406540e-05 + sys_59: 4.63361497e-06 + sys_60: 1.30434735e-05 + sys_61: 1.15893142e-05 + sys_62: -1.79378862e-05 +- pol: 2.24640000e-04 lumi: 0.00047 - sys_0: 0.00013797818090967678 - sys_1: -6.253508756556424e-05 - sys_2: -0.00026949908887210025 - sys_3: -6.780898983950155e-05 - sys_4: 0.00014422280181522704 - sys_5: 0.00014414274125750215 - sys_6: -0.00028392451203420216 - sys_7: -3.307841119470947e-06 - sys_8: -5.7720957101306713e-05 - sys_9: 0.0004123695679652289 - sys_10: -0.010800293076634179 - sys_11: 0.0018237175654648278 - sys_12: 0.0007181163532439831 - sys_13: 0.00011919863115660023 - sys_14: 5.821784844838493e-05 - sys_15: 9.039745708610971e-05 - sys_16: 0.00021622423625029593 - sys_17: 0.0001488569681825774 - sys_18: 9.583605560780358e-05 - sys_19: 2.502200792959727e-05 - sys_20: 9.641516930687437e-07 - sys_21: 4.966802869192107e-05 - sys_22: -2.487942129401874e-05 - sys_23: -9.992878298829953e-06 - sys_24: 3.607248809372361e-05 - sys_25: -7.67943587177112e-05 - sys_26: -0.00011069036364125145 - sys_27: -6.054878516142335e-05 - sys_28: -1.75360280306939e-05 - sys_29: -1.5651088031250417e-05 - sys_30: 3.2930193631772214e-06 - sys_31: 8.193321492195966e-06 - sys_32: -3.332050710131893e-06 - sys_33: 5.038633265839062e-06 - sys_34: -4.207853878309827e-07 - sys_35: 1.3084020138102038e-06 - sys_36: -4.108092216977815e-06 - sys_37: 5.7197023567624755e-06 - sys_38: -2.4010219633949485e-05 - sys_39: -1.584440321613753e-05 - sys_40: -5.8332729478843735e-05 - sys_41: -5.986642710966737e-05 - sys_42: -1.9454928131891576e-06 - sys_43: -2.1598519762810054e-05 - sys_44: 3.881243483446068e-06 - sys_45: -1.5110921536116216e-05 - sys_46: 1.6583183888715445e-06 - sys_47: 2.123910778056876e-06 - sys_48: -5.1415140479049104e-08 - sys_49: 1.6521650825846036e-05 - sys_50: 2.7784709748739363e-07 - sys_51: 2.756455435077026e-06 - sys_52: -2.929014478493486e-06 - sys_53: -7.599476653718229e-06 - sys_54: -7.140793353352922e-06 - sys_55: -4.019952395573206e-06 - sys_56: -1.5101912799862426e-05 - sys_57: -1.7504171365872353e-05 - sys_58: -3.485729785494415e-05 - sys_59: 1.6562046785409497e-06 - sys_60: 7.493554122870202e-06 - sys_61: 5.133246062037376e-06 - sys_62: -8.765238452690356e-06 -- pol: 0.00201024 + sys_0: 1.37978181e-04 + sys_1: -6.25350876e-05 + sys_2: -2.69499089e-04 + sys_3: -6.78089898e-05 + sys_4: 1.44222802e-04 + sys_5: 1.44142741e-04 + sys_6: -2.83924512e-04 + sys_7: -3.30784112e-06 + sys_8: -5.77209571e-05 + sys_9: 4.12369568e-04 + sys_10: -1.08002931e-02 + sys_11: 1.82371757e-03 + sys_12: 7.18116353e-04 + sys_13: 1.19198631e-04 + sys_14: 5.82178484e-05 + sys_15: 9.03974571e-05 + sys_16: 2.16224236e-04 + sys_17: 1.48856968e-04 + sys_18: 9.58360556e-05 + sys_19: 2.50220079e-05 + sys_20: 9.64151693e-07 + sys_21: 4.96680287e-05 + sys_22: -2.48794213e-05 + sys_23: -9.99287830e-06 + sys_24: 3.60724881e-05 + sys_25: -7.67943587e-05 + sys_26: -1.10690364e-04 + sys_27: -6.05487852e-05 + sys_28: -1.75360280e-05 + sys_29: -1.56510880e-05 + sys_30: 3.29301936e-06 + sys_31: 8.19332149e-06 + sys_32: -3.33205071e-06 + sys_33: 5.03863327e-06 + sys_34: -4.20785388e-07 + sys_35: 1.30840201e-06 + sys_36: -4.10809222e-06 + sys_37: 5.71970236e-06 + sys_38: -2.40102196e-05 + sys_39: -1.58444032e-05 + sys_40: -5.83327295e-05 + sys_41: -5.98664271e-05 + sys_42: -1.94549281e-06 + sys_43: -2.15985198e-05 + sys_44: 3.88124348e-06 + sys_45: -1.51109215e-05 + sys_46: 1.65831839e-06 + sys_47: 2.12391078e-06 + sys_48: -5.14151405e-08 + sys_49: 1.65216508e-05 + sys_50: 2.77847097e-07 + sys_51: 2.75645544e-06 + sys_52: -2.92901448e-06 + sys_53: -7.59947665e-06 + sys_54: -7.14079335e-06 + sys_55: -4.01995240e-06 + sys_56: -1.51019128e-05 + sys_57: -1.75041714e-05 + sys_58: -3.48572979e-05 + sys_59: 1.65620468e-06 + sys_60: 7.49355412e-06 + sys_61: 5.13324606e-06 + sys_62: -8.76523845e-06 +- pol: 2.01024000e-03 lumi: 0.00047 - sys_0: 0.00021070369155553494 - sys_1: -0.00014799060488164512 - sys_2: -0.00041740242477003277 - sys_3: -0.00012642523781634712 - sys_4: 0.0007946991625921378 - sys_5: 0.017870389456176073 - sys_6: 0.0018550535328726691 - sys_7: 0.00042603327869730886 - sys_8: -0.0005966647284964444 - sys_9: -0.00024721021611277035 - sys_10: 0.00013208430337978172 - sys_11: 8.84596051424264e-05 - sys_12: 0.00014852348179902593 - sys_13: -1.107629136599137e-05 - sys_14: -4.6688762073667684e-05 - sys_15: -2.2350827392856314e-05 - sys_16: 0.00027987944437208933 - sys_17: 5.468185041913925e-05 - sys_18: 3.4876143131959196e-05 - sys_19: 1.0928250682937673e-05 - sys_20: 8.974232209960603e-06 - sys_21: 8.757515034957617e-06 - sys_22: 2.213267304741555e-06 - sys_23: -2.202241253720261e-05 - sys_24: 3.1251217672764975e-05 - sys_25: -6.516080622780227e-05 - sys_26: -0.00010184423555507363 - sys_27: -4.461500061402381e-05 - sys_28: -3.0811641542871677e-05 - sys_29: -1.0248935229576339e-05 - sys_30: 4.124942157792563e-06 - sys_31: 2.1972734532740163e-06 - sys_32: -5.03886785508994e-07 - sys_33: 1.5067079734057024e-06 - sys_34: -7.054438721630491e-07 - sys_35: 3.117580843299495e-07 - sys_36: -7.75737507985434e-07 - sys_37: 1.2361466638981447e-06 - sys_38: -1.0741631903409914e-05 - sys_39: -7.90381085258355e-06 - sys_40: -2.964597564825255e-05 - sys_41: -3.385852416185781e-05 - sys_42: -3.4175365722683815e-06 - sys_43: -1.335032801409027e-05 - sys_44: 8.990038325014787e-07 - sys_45: -4.230011655920476e-06 - sys_46: 7.927931231619316e-07 - sys_47: 1.9002829563847734e-06 - sys_48: 1.0283742217216271e-07 - sys_49: 1.4129992894860476e-05 - sys_50: 1.3526588590628508e-06 - sys_51: -2.2769051754179875e-06 - sys_52: -1.5934731915502956e-06 - sys_53: -3.4880514613645766e-06 - sys_54: -7.183521651839259e-06 - sys_55: -2.118386890171709e-06 - sys_56: -8.379662474439505e-06 - sys_57: -7.643518688907937e-06 - sys_58: -1.2008737531921299e-05 - sys_59: -3.4950666816709794e-07 - sys_60: 2.7205072908019886e-06 - sys_61: 2.5600118157769925e-07 - sys_62: 1.5353520352388247e-08 -- pol: 0.00071296 + sys_0: 2.10703692e-04 + sys_1: -1.47990605e-04 + sys_2: -4.17402425e-04 + sys_3: -1.26425238e-04 + sys_4: 7.94699163e-04 + sys_5: 1.78703895e-02 + sys_6: 1.85505353e-03 + sys_7: 4.26033279e-04 + sys_8: -5.96664728e-04 + sys_9: -2.47210216e-04 + sys_10: 1.32084303e-04 + sys_11: 8.84596051e-05 + sys_12: 1.48523482e-04 + sys_13: -1.10762914e-05 + sys_14: -4.66887621e-05 + sys_15: -2.23508274e-05 + sys_16: 2.79879444e-04 + sys_17: 5.46818504e-05 + sys_18: 3.48761431e-05 + sys_19: 1.09282507e-05 + sys_20: 8.97423221e-06 + sys_21: 8.75751503e-06 + sys_22: 2.21326730e-06 + sys_23: -2.20224125e-05 + sys_24: 3.12512177e-05 + sys_25: -6.51608062e-05 + sys_26: -1.01844236e-04 + sys_27: -4.46150006e-05 + sys_28: -3.08116415e-05 + sys_29: -1.02489352e-05 + sys_30: 4.12494216e-06 + sys_31: 2.19727345e-06 + sys_32: -5.03886786e-07 + sys_33: 1.50670797e-06 + sys_34: -7.05443872e-07 + sys_35: 3.11758084e-07 + sys_36: -7.75737508e-07 + sys_37: 1.23614666e-06 + sys_38: -1.07416319e-05 + sys_39: -7.90381085e-06 + sys_40: -2.96459756e-05 + sys_41: -3.38585242e-05 + sys_42: -3.41753657e-06 + sys_43: -1.33503280e-05 + sys_44: 8.99003833e-07 + sys_45: -4.23001166e-06 + sys_46: 7.92793123e-07 + sys_47: 1.90028296e-06 + sys_48: 1.02837422e-07 + sys_49: 1.41299929e-05 + sys_50: 1.35265886e-06 + sys_51: -2.27690518e-06 + sys_52: -1.59347319e-06 + sys_53: -3.48805146e-06 + sys_54: -7.18352165e-06 + sys_55: -2.11838689e-06 + sys_56: -8.37966247e-06 + sys_57: -7.64351869e-06 + sys_58: -1.20087375e-05 + sys_59: -3.49506668e-07 + sys_60: 2.72050729e-06 + sys_61: 2.56001182e-07 + sys_62: 1.53535204e-08 +- pol: 7.12960000e-04 lumi: 0.00047 - sys_0: 0.0025851905702849857 - sys_1: -0.031665608226896735 - sys_2: 0.0032402058275893147 - sys_3: 0.0005126219912549749 - sys_4: -0.000132032071809247 - sys_5: -0.00017163699167319443 - sys_6: 0.00030452681602834034 - sys_7: 0.00014443547173137588 - sys_8: -0.0005739181751028004 - sys_9: -0.00012787127099239876 - sys_10: 3.33646600552409e-05 - sys_11: 2.5552537729918395e-05 - sys_12: 5.166604665055542e-05 - sys_13: -1.4540162447786215e-05 - sys_14: -4.1535012447673515e-05 - sys_15: -3.0402055135406977e-05 - sys_16: 0.00020114142668918152 - sys_17: 2.4368027323647943e-05 - sys_18: 1.1934358396073606e-05 - sys_19: 9.611888394609517e-06 - sys_20: 1.3332753847871027e-05 - sys_21: 8.713494134392738e-06 - sys_22: -4.32725598073241e-06 - sys_23: -5.86734414146228e-06 - sys_24: 1.1028425603278865e-05 - sys_25: -2.380835837804749e-05 - sys_26: -4.471703421863611e-05 - sys_27: -2.0249370295485263e-05 - sys_28: -1.837076388296796e-05 - sys_29: -5.106475223636746e-06 - sys_30: 2.8909895801029114e-06 - sys_31: 4.5176469149220353e-07 - sys_32: 2.1331885649506553e-06 - sys_33: 5.861813631934867e-07 - sys_34: -3.669348415077824e-07 - sys_35: 6.439305399227466e-08 - sys_36: -8.605320767015985e-08 - sys_37: 5.680693746224145e-07 - sys_38: -1.4129079568065195e-06 - sys_39: -1.523292020964936e-06 - sys_40: -7.474502324711585e-06 - sys_41: -8.732740289118567e-06 - sys_42: -9.510412086783731e-07 - sys_43: -4.024341687956879e-06 - sys_44: 3.3075036580181055e-08 - sys_45: -9.500328563700852e-07 - sys_46: 3.7081007129116923e-07 - sys_47: 7.883853709538953e-07 - sys_48: 6.61775002629149e-08 - sys_49: 6.2796655601392715e-06 - sys_50: 7.745577303762858e-07 - sys_51: -1.8784142519920393e-06 - sys_52: -6.105101109916233e-07 - sys_53: -1.122819934491939e-06 - sys_54: -3.6508076465717267e-06 - sys_55: -8.270562802481833e-07 - sys_56: -3.432031663760935e-06 - sys_57: -2.438266732148044e-06 - sys_58: -2.6653924487530153e-06 - sys_59: -5.654915820305617e-07 - sys_60: 6.253765161472277e-07 - sys_61: -5.827141581067721e-07 - sys_62: 1.256122755412822e-06 + sys_0: 2.58519057e-03 + sys_1: -3.16656082e-02 + sys_2: 3.24020583e-03 + sys_3: 5.12621991e-04 + sys_4: -1.32032072e-04 + sys_5: -1.71636992e-04 + sys_6: 3.04526816e-04 + sys_7: 1.44435472e-04 + sys_8: -5.73918175e-04 + sys_9: -1.27871271e-04 + sys_10: 3.33646601e-05 + sys_11: 2.55525377e-05 + sys_12: 5.16660467e-05 + sys_13: -1.45401624e-05 + sys_14: -4.15350124e-05 + sys_15: -3.04020551e-05 + sys_16: 2.01141427e-04 + sys_17: 2.43680273e-05 + sys_18: 1.19343584e-05 + sys_19: 9.61188839e-06 + sys_20: 1.33327538e-05 + sys_21: 8.71349413e-06 + sys_22: -4.32725598e-06 + sys_23: -5.86734414e-06 + sys_24: 1.10284256e-05 + sys_25: -2.38083584e-05 + sys_26: -4.47170342e-05 + sys_27: -2.02493703e-05 + sys_28: -1.83707639e-05 + sys_29: -5.10647522e-06 + sys_30: 2.89098958e-06 + sys_31: 4.51764691e-07 + sys_32: 2.13318856e-06 + sys_33: 5.86181363e-07 + sys_34: -3.66934842e-07 + sys_35: 6.43930540e-08 + sys_36: -8.60532077e-08 + sys_37: 5.68069375e-07 + sys_38: -1.41290796e-06 + sys_39: -1.52329202e-06 + sys_40: -7.47450232e-06 + sys_41: -8.73274029e-06 + sys_42: -9.51041209e-07 + sys_43: -4.02434169e-06 + sys_44: 3.30750366e-08 + sys_45: -9.50032856e-07 + sys_46: 3.70810071e-07 + sys_47: 7.88385371e-07 + sys_48: 6.61775003e-08 + sys_49: 6.27966556e-06 + sys_50: 7.74557730e-07 + sys_51: -1.87841425e-06 + sys_52: -6.10510111e-07 + sys_53: -1.12281993e-06 + sys_54: -3.65080765e-06 + sys_55: -8.27056280e-07 + sys_56: -3.43203166e-06 + sys_57: -2.43826673e-06 + sys_58: -2.66539245e-06 + sys_59: -5.65491582e-07 + sys_60: 6.25376516e-07 + sys_61: -5.82714158e-07 + sys_62: 1.25612276e-06 diff --git a/nnpdf_data/nnpdf_data/commondata/STAR-2013_SHP_510GEV_PI0/filter.py b/nnpdf_data/nnpdf_data/commondata/STAR-2013_SHP_510GEV_PI0/filter.py index 1d1f8e6017..6f37213312 100644 --- a/nnpdf_data/nnpdf_data/commondata/STAR-2013_SHP_510GEV_PI0/filter.py +++ b/nnpdf_data/nnpdf_data/commondata/STAR-2013_SHP_510GEV_PI0/filter.py @@ -3,6 +3,10 @@ import pandas as pd import yaml +from nnpdf_data.filter_utils.utils import prettify_float + +yaml.add_representer(float, prettify_float) + def read_data(path_rawdata: str) -> pd.DataFrame: data = yaml.safe_load(Path(path_rawdata).read_text()) diff --git a/nnpdf_data/nnpdf_data/commondata/STAR-2013_SHP_510GEV_PI0/uncertainties_highrap.yaml b/nnpdf_data/nnpdf_data/commondata/STAR-2013_SHP_510GEV_PI0/uncertainties_highrap.yaml index 432e675bc9..6d739bc132 100644 --- a/nnpdf_data/nnpdf_data/commondata/STAR-2013_SHP_510GEV_PI0/uncertainties_highrap.yaml +++ b/nnpdf_data/nnpdf_data/commondata/STAR-2013_SHP_510GEV_PI0/uncertainties_highrap.yaml @@ -14,13 +14,13 @@ definitions: bins: - stat: 0.0022 syst: 0.00034 - sys_pol: 0.00012797 + sys_pol: 1.27970000e-04 - stat: 0.0024 syst: 0.00032 - sys_pol: 5.6949999999999995e-05 + sys_pol: 5.69500000e-05 - stat: 0.0025 syst: 0.00031 - sys_pol: 0.00011859000000000001 + sys_pol: 1.18590000e-04 - stat: 0.0024 syst: 0.00029 - sys_pol: 1.005e-05 + sys_pol: 1.00500000e-05 diff --git a/nnpdf_data/nnpdf_data/commondata/STAR-2013_SHP_510GEV_PI0/uncertainties_lowrap.yaml b/nnpdf_data/nnpdf_data/commondata/STAR-2013_SHP_510GEV_PI0/uncertainties_lowrap.yaml index 96adb7298c..8803f3b67f 100644 --- a/nnpdf_data/nnpdf_data/commondata/STAR-2013_SHP_510GEV_PI0/uncertainties_lowrap.yaml +++ b/nnpdf_data/nnpdf_data/commondata/STAR-2013_SHP_510GEV_PI0/uncertainties_lowrap.yaml @@ -14,13 +14,13 @@ definitions: bins: - stat: 0.0022 syst: 0.00021 - sys_pol: 0.00010317999999999998 + sys_pol: 1.03180000e-04 - stat: 0.0021 syst: 0.00021 - sys_pol: 0.0001407 + sys_pol: 1.40700000e-04 - stat: 0.0022 syst: 0.00021 - sys_pol: 9.379999999999999e-05 + sys_pol: 9.38000000e-05 - stat: 0.0023 syst: 0.00021 - sys_pol: 5.092e-05 + sys_pol: 5.09200000e-05 diff --git a/nnpdf_data/nnpdf_data/commondata/STAR-2015_1JET_200GEV/filter.py b/nnpdf_data/nnpdf_data/commondata/STAR-2015_1JET_200GEV/filter.py index 22a9a7ae03..55ba64d12c 100644 --- a/nnpdf_data/nnpdf_data/commondata/STAR-2015_1JET_200GEV/filter.py +++ b/nnpdf_data/nnpdf_data/commondata/STAR-2015_1JET_200GEV/filter.py @@ -9,6 +9,9 @@ import yaml from nnpdf_data.filter_utils.correlations import compute_covmat, upper_triangular_to_symmetric +from nnpdf_data.filter_utils.utils import prettify_float + +yaml.add_representer(float, prettify_float) # values from the paper SQRTS = 200 diff --git a/nnpdf_data/nnpdf_data/commondata/STAR-2015_1JET_200GEV/kinematics_CC.yaml b/nnpdf_data/nnpdf_data/commondata/STAR-2015_1JET_200GEV/kinematics_CC.yaml index 978f9b6214..e948b6c2b8 100644 --- a/nnpdf_data/nnpdf_data/commondata/STAR-2015_1JET_200GEV/kinematics_CC.yaml +++ b/nnpdf_data/nnpdf_data/commondata/STAR-2015_1JET_200GEV/kinematics_CC.yaml @@ -16,7 +16,7 @@ bins: mid: 0.25 min: 0.0 pT: - max: 7.529999999999999 + max: 7.53000000e+00 mid: 7.31 min: 7.09 sqrts: @@ -90,7 +90,7 @@ bins: pT: max: 21.93 mid: 21.49 - min: 21.049999999999997 + min: 2.10500000e+01 sqrts: max: null mid: 200.0 @@ -100,7 +100,7 @@ bins: mid: 0.25 min: 0.0 pT: - max: 25.610000000000003 + max: 2.56100000e+01 mid: 25.1 min: 24.59 sqrts: @@ -114,7 +114,7 @@ bins: pT: max: 29.73 mid: 29.17 - min: 28.610000000000003 + min: 2.86100000e+01 sqrts: max: null mid: 200.0 @@ -126,7 +126,7 @@ bins: pT: max: 34.43 mid: 33.81 - min: 33.190000000000005 + min: 3.31900000e+01 sqrts: max: null mid: 200.0 diff --git a/nnpdf_data/nnpdf_data/commondata/STAR-2015_1JET_200GEV/kinematics_CF.yaml b/nnpdf_data/nnpdf_data/commondata/STAR-2015_1JET_200GEV/kinematics_CF.yaml index 9cc95b9f2a..dfffecb02f 100644 --- a/nnpdf_data/nnpdf_data/commondata/STAR-2015_1JET_200GEV/kinematics_CF.yaml +++ b/nnpdf_data/nnpdf_data/commondata/STAR-2015_1JET_200GEV/kinematics_CF.yaml @@ -4,7 +4,7 @@ bins: mid: 0.75 min: 0.5 pT: - max: 6.340000000000001 + max: 6.34000000e+00 mid: 6.15 min: 5.96 sqrts: @@ -66,7 +66,7 @@ bins: pT: max: 15.83 mid: 15.47 - min: 15.110000000000001 + min: 1.51100000e+01 sqrts: max: null mid: 200.0 @@ -114,7 +114,7 @@ bins: pT: max: 29.09 mid: 28.56 - min: 28.029999999999998 + min: 2.80300000e+01 sqrts: max: null mid: 200.0 diff --git a/nnpdf_data/nnpdf_data/commondata/STAR-2015_1JET_200GEV/uncertainties_CC.yaml b/nnpdf_data/nnpdf_data/commondata/STAR-2015_1JET_200GEV/uncertainties_CC.yaml index 6155f79212..5cf054f6cc 100644 --- a/nnpdf_data/nnpdf_data/commondata/STAR-2015_1JET_200GEV/uncertainties_CC.yaml +++ b/nnpdf_data/nnpdf_data/commondata/STAR-2015_1JET_200GEV/uncertainties_CC.yaml @@ -154,419 +154,419 @@ definitions: bins: - lumi: 0.0007 pol: 1.22e-05 - sys_0: 2.80995943775724e-05 - sys_1: -7.185392731626597e-06 - sys_2: 2.032057491627907e-05 - sys_3: 1.981936900902636e-05 - sys_4: -2.3648716758595145e-05 - sys_5: 8.650219323298458e-05 - sys_6: -2.1740347662703536e-05 - sys_7: 4.01938295699787e-05 - sys_8: -2.6847481352732856e-05 - sys_9: 6.102559860998713e-05 - sys_10: 9.151332020141466e-05 - sys_11: -9.403203974284099e-05 - sys_12: 3.8256347871638106e-05 - sys_13: -0.00012603378487527413 - sys_14: 0.0002021242202943228 - sys_15: -0.0003717807941914082 - sys_16: 0.00011658862522783647 - sys_17: -0.00022963676192106167 - sys_18: 5.6743176030735854e-05 - sys_19: -0.00013123021240879786 - sys_20: -0.00047533128427407315 - sys_21: -0.0011933124320179104 - sys_22: -0.0004372565456283144 - sys_23: -0.0002021157871700649 - sys_24: -0.0008139502948908743 - sys_25: 0.0001183891773222148 - sys_26: 0.00013248180517322534 - sys_27: -0.0004960975183387517 - sys_28: 1.496557473447323e-05 - sys_29: 0.0005578784953858462 - sys_30: -9.311393813484636e-05 - sys_31: -0.0008378635705710963 - sys_32: 8.273770777402966e-06 - sys_33: -0.00016155422445120464 - sys_34: 0.0001504920702204098 - sys_35: 1.55966877772973e-05 + sys_0: 2.80995944e-05 + sys_1: -7.18539273e-06 + sys_2: 2.03205749e-05 + sys_3: 1.98193690e-05 + sys_4: -2.36487168e-05 + sys_5: 8.65021932e-05 + sys_6: -2.17403477e-05 + sys_7: 4.01938296e-05 + sys_8: -2.68474814e-05 + sys_9: 6.10255986e-05 + sys_10: 9.15133202e-05 + sys_11: -9.40320397e-05 + sys_12: 3.82563479e-05 + sys_13: -1.26033785e-04 + sys_14: 2.02124220e-04 + sys_15: -3.71780794e-04 + sys_16: 1.16588625e-04 + sys_17: -2.29636762e-04 + sys_18: 5.67431760e-05 + sys_19: -1.31230212e-04 + sys_20: -4.75331284e-04 + sys_21: -1.19331243e-03 + sys_22: -4.37256546e-04 + sys_23: -2.02115787e-04 + sys_24: -8.13950295e-04 + sys_25: 1.18389177e-04 + sys_26: 1.32481805e-04 + sys_27: -4.96097518e-04 + sys_28: 1.49655747e-05 + sys_29: 5.57878495e-04 + sys_30: -9.31139381e-05 + sys_31: -8.37863571e-04 + sys_32: 8.27377078e-06 + sys_33: -1.61554224e-04 + sys_34: 1.50492070e-04 + sys_35: 1.55966878e-05 - lumi: 0.0007 - pol: 3.6599999999999995e-05 - sys_0: 1.8149426066360363e-05 - sys_1: -4.423934412531871e-06 - sys_2: 1.439568994890462e-05 - sys_3: 1.835581129046264e-05 - sys_4: -1.7155939576200484e-05 - sys_5: 6.472329017652687e-05 - sys_6: -2.1783930014801445e-05 - sys_7: 2.6439683484473698e-05 - sys_8: -1.950005320207322e-05 - sys_9: 4.717063750854188e-05 - sys_10: 7.310665766034944e-05 - sys_11: -8.053564639802036e-05 - sys_12: 3.080501817988164e-05 - sys_13: -0.00010226700621847664 - sys_14: 0.00017087625983496413 - sys_15: -0.0003423310799906096 - sys_16: 8.414996352566921e-05 - sys_17: -0.00021135630918569834 - sys_18: 3.086366974430738e-05 - sys_19: -0.00010611478007237756 - sys_20: -0.00042982184062896297 - sys_21: -0.001123647736598416 - sys_22: -0.00041255768415915156 - sys_23: -0.00018380857519314467 - sys_24: -0.0008244448704981766 - sys_25: 0.00013322279840740213 - sys_26: 5.596533746237144e-05 - sys_27: -0.00016213820574111857 - sys_28: 1.4607266255734693e-05 - sys_29: 1.0545156724204793e-05 - sys_30: -2.1767514740500437e-05 - sys_31: 0.0012116679252942757 - sys_32: -1.7984430129067274e-05 - sys_33: -0.00028625916889096905 - sys_34: 0.0003965529449374936 - sys_35: 2.4350602387986883e-05 + pol: 3.66000000e-05 + sys_0: 1.81494261e-05 + sys_1: -4.42393441e-06 + sys_2: 1.43956899e-05 + sys_3: 1.83558113e-05 + sys_4: -1.71559396e-05 + sys_5: 6.47232902e-05 + sys_6: -2.17839300e-05 + sys_7: 2.64396835e-05 + sys_8: -1.95000532e-05 + sys_9: 4.71706375e-05 + sys_10: 7.31066577e-05 + sys_11: -8.05356464e-05 + sys_12: 3.08050182e-05 + sys_13: -1.02267006e-04 + sys_14: 1.70876260e-04 + sys_15: -3.42331080e-04 + sys_16: 8.41499635e-05 + sys_17: -2.11356309e-04 + sys_18: 3.08636697e-05 + sys_19: -1.06114780e-04 + sys_20: -4.29821841e-04 + sys_21: -1.12364774e-03 + sys_22: -4.12557684e-04 + sys_23: -1.83808575e-04 + sys_24: -8.24444870e-04 + sys_25: 1.33222798e-04 + sys_26: 5.59653375e-05 + sys_27: -1.62138206e-04 + sys_28: 1.46072663e-05 + sys_29: 1.05451567e-05 + sys_30: -2.17675147e-05 + sys_31: 1.21166793e-03 + sys_32: -1.79844301e-05 + sys_33: -2.86259169e-04 + sys_34: 3.96552945e-04 + sys_35: 2.43506024e-05 - lumi: 0.0007 - pol: 0.00020739999999999997 - sys_0: 2.3737686267901027e-05 - sys_1: -5.134840227485604e-06 - sys_2: 1.8188519894303968e-05 - sys_3: 1.4426767055525588e-05 - sys_4: -2.0070817798979522e-05 - sys_5: 6.950843350960302e-05 - sys_6: -1.4275043443783726e-05 - sys_7: 3.57288580105617e-05 - sys_8: -1.9971486427864994e-05 - sys_9: 4.998563734082696e-05 - sys_10: 7.098032635183603e-05 - sys_11: -6.78766558071562e-05 - sys_12: 3.3818185104715403e-05 - sys_13: -0.00010174629867209477 - sys_14: 0.00016139138632720497 - sys_15: -0.0003196402599757823 - sys_16: 1.3638917412910627e-05 - sys_17: -0.00021876164340394694 - sys_18: 5.075424891491933e-06 - sys_19: -8.077638899249846e-05 - sys_20: -0.00033638390508749887 - sys_21: -0.0007709327327588983 - sys_22: -0.00021863260662754644 - sys_23: -5.852975230342034e-05 - sys_24: -0.0004583804805378727 - sys_25: 7.743209692137518e-05 - sys_26: -0.0008559543252754199 - sys_27: 0.0004828690214645595 - sys_28: -2.2686660436514938e-05 - sys_29: 1.2458681910951727e-05 - sys_30: 7.272391214423745e-06 - sys_31: -0.00021019887964113774 - sys_32: -7.112999163617277e-06 - sys_33: -6.357098171173509e-05 - sys_34: 7.504460058414369e-05 - sys_35: 5.6087155375965646e-06 + pol: 2.07400000e-04 + sys_0: 2.37376863e-05 + sys_1: -5.13484023e-06 + sys_2: 1.81885199e-05 + sys_3: 1.44267671e-05 + sys_4: -2.00708178e-05 + sys_5: 6.95084335e-05 + sys_6: -1.42750434e-05 + sys_7: 3.57288580e-05 + sys_8: -1.99714864e-05 + sys_9: 4.99856373e-05 + sys_10: 7.09803264e-05 + sys_11: -6.78766558e-05 + sys_12: 3.38181851e-05 + sys_13: -1.01746299e-04 + sys_14: 1.61391386e-04 + sys_15: -3.19640260e-04 + sys_16: 1.36389174e-05 + sys_17: -2.18761643e-04 + sys_18: 5.07542489e-06 + sys_19: -8.07763890e-05 + sys_20: -3.36383905e-04 + sys_21: -7.70932733e-04 + sys_22: -2.18632607e-04 + sys_23: -5.85297523e-05 + sys_24: -4.58380481e-04 + sys_25: 7.74320969e-05 + sys_26: -8.55954325e-04 + sys_27: 4.82869021e-04 + sys_28: -2.26866604e-05 + sys_29: 1.24586819e-05 + sys_30: 7.27239121e-06 + sys_31: -2.10198880e-04 + sys_32: -7.11299916e-06 + sys_33: -6.35709817e-05 + sys_34: 7.50446006e-05 + sys_35: 5.60871554e-06 - lumi: 0.0007 - pol: 0.0002501 - sys_0: 1.9376830407666145e-05 - sys_1: -5.3966691606661926e-06 - sys_2: 1.4897495063306011e-05 - sys_3: 1.1518787349511025e-05 - sys_4: -1.7337277017990022e-05 - sys_5: 5.794060749042457e-05 - sys_6: -1.223237481305029e-05 - sys_7: 3.225134943572197e-05 - sys_8: -1.585807484895997e-05 - sys_9: 4.425655649481079e-05 - sys_10: 6.467836680619511e-05 - sys_11: -5.4885613291428385e-05 - sys_12: 3.5335917342188586e-05 - sys_13: -0.00010487122828378667 - sys_14: 0.00016092565898699883 - sys_15: -0.0002758904992668378 - sys_16: -1.6256712441579895e-06 - sys_17: -0.00024287672965100896 - sys_18: 5.97724582443825e-06 - sys_19: -0.00010533773300395862 - sys_20: -0.00032304788307972883 - sys_21: -0.0006188374129024623 - sys_22: -0.00011506105345362744 - sys_23: 1.0925562213506195e-05 - sys_24: -0.0003608059886809504 - sys_25: 9.228803433472818e-05 - sys_26: 0.000561551233314192 - sys_27: 0.0008946172755379665 - sys_28: -6.221841553726705e-05 - sys_29: 0.00010171308643276757 - sys_30: 3.8460913908614735e-05 - sys_31: -0.00018672735494979973 - sys_32: -2.170012654470431e-05 - sys_33: -5.015401758616723e-05 - sys_34: 0.00010863419134062401 - sys_35: 1.407110032503964e-05 + pol: 2.50100000e-04 + sys_0: 1.93768304e-05 + sys_1: -5.39666916e-06 + sys_2: 1.48974951e-05 + sys_3: 1.15187873e-05 + sys_4: -1.73372770e-05 + sys_5: 5.79406075e-05 + sys_6: -1.22323748e-05 + sys_7: 3.22513494e-05 + sys_8: -1.58580748e-05 + sys_9: 4.42565565e-05 + sys_10: 6.46783668e-05 + sys_11: -5.48856133e-05 + sys_12: 3.53359173e-05 + sys_13: -1.04871228e-04 + sys_14: 1.60925659e-04 + sys_15: -2.75890499e-04 + sys_16: -1.62567124e-06 + sys_17: -2.42876730e-04 + sys_18: 5.97724582e-06 + sys_19: -1.05337733e-04 + sys_20: -3.23047883e-04 + sys_21: -6.18837413e-04 + sys_22: -1.15061053e-04 + sys_23: 1.09255622e-05 + sys_24: -3.60805989e-04 + sys_25: 9.22880343e-05 + sys_26: 5.61551233e-04 + sys_27: 8.94617276e-04 + sys_28: -6.22184155e-05 + sys_29: 1.01713086e-04 + sys_30: 3.84609139e-05 + sys_31: -1.86727355e-04 + sys_32: -2.17001265e-05 + sys_33: -5.01540176e-05 + sys_34: 1.08634191e-04 + sys_35: 1.40711003e-05 - lumi: 0.0007 pol: 0.000427 - sys_0: 2.3645902335624553e-05 - sys_1: -6.989083842173196e-06 - sys_2: 1.5776530766099907e-05 - sys_3: 1.0806213249645555e-05 - sys_4: -2.2968318026920063e-05 - sys_5: 6.585398427655643e-05 - sys_6: -9.203591558497847e-06 - sys_7: 4.295215472850925e-05 - sys_8: -1.6009509022849426e-05 - sys_9: 6.251039803372303e-05 - sys_10: 9.081987982910386e-05 - sys_11: -4.453339358037767e-05 - sys_12: 5.6697285717909404e-05 - sys_13: -0.00018443063466224953 - sys_14: 0.00023346207132726016 - sys_15: -0.00020760742932153617 - sys_16: 1.707546390260684e-05 - sys_17: -0.0002683983921085116 - sys_18: 6.057868529515533e-05 - sys_19: -0.00020966691121133418 - sys_20: -0.0003698122689759604 - sys_21: -0.0005131595411738454 - sys_22: -4.7303922406263144e-05 - sys_23: 4.7202271836592095e-05 - sys_24: -0.00035866863422051354 - sys_25: 0.00014247372087741644 - sys_26: 9.0738804807692e-05 - sys_27: -0.00016072566223238448 - sys_28: 1.7649773076634863e-05 - sys_29: -0.0012033885410498405 - sys_30: 0.00021447275867129563 - sys_31: -0.00039673560909604135 - sys_32: -2.0432565551696945e-05 - sys_33: -9.61357390227947e-05 - sys_34: 0.0002645747926533195 - sys_35: 6.29515414360039e-05 + sys_0: 2.36459023e-05 + sys_1: -6.98908384e-06 + sys_2: 1.57765308e-05 + sys_3: 1.08062132e-05 + sys_4: -2.29683180e-05 + sys_5: 6.58539843e-05 + sys_6: -9.20359156e-06 + sys_7: 4.29521547e-05 + sys_8: -1.60095090e-05 + sys_9: 6.25103980e-05 + sys_10: 9.08198798e-05 + sys_11: -4.45333936e-05 + sys_12: 5.66972857e-05 + sys_13: -1.84430635e-04 + sys_14: 2.33462071e-04 + sys_15: -2.07607429e-04 + sys_16: 1.70754639e-05 + sys_17: -2.68398392e-04 + sys_18: 6.05786853e-05 + sys_19: -2.09666911e-04 + sys_20: -3.69812269e-04 + sys_21: -5.13159541e-04 + sys_22: -4.73039224e-05 + sys_23: 4.72022718e-05 + sys_24: -3.58668634e-04 + sys_25: 1.42473721e-04 + sys_26: 9.07388048e-05 + sys_27: -1.60725662e-04 + sys_28: 1.76497731e-05 + sys_29: -1.20338854e-03 + sys_30: 2.14472759e-04 + sys_31: -3.96735609e-04 + sys_32: -2.04325656e-05 + sys_33: -9.61357390e-05 + sys_34: 2.64574793e-04 + sys_35: 6.29515414e-05 - lumi: 0.0007 - pol: 0.00027449999999999995 - sys_0: 2.5388244750565224e-05 - sys_1: -9.648660022558868e-06 - sys_2: 1.725728266673642e-05 - sys_3: 1.2119343249860988e-05 - sys_4: -3.2570697008759474e-05 - sys_5: 8.397396786222551e-05 - sys_6: -6.161059928620838e-06 - sys_7: 7.249369654381132e-05 - sys_8: -2.2507596571033614e-05 - sys_9: 0.0001622585142699082 - sys_10: 0.00019784780836575649 - sys_11: 6.811866455365323e-06 - sys_12: 6.92393878074204e-05 - sys_13: -0.00036441914716563113 - sys_14: 0.0003488601882700348 - sys_15: -7.988413081926767e-05 - sys_16: -1.950369654016297e-05 - sys_17: -0.00022838473752982572 - sys_18: 5.84204215094155e-05 - sys_19: -0.0003198526740891854 - sys_20: -0.0003852658496261645 - sys_21: -0.00043169781248049893 - sys_22: -6.091793201368411e-05 - sys_23: 2.641666520260508e-05 - sys_24: -0.0005977485448930409 - sys_25: 0.0003311727367679111 - sys_26: 3.324413346199163e-05 - sys_27: -4.785144767856636e-05 - sys_28: -1.4782237528023345e-06 - sys_29: -9.612033210241071e-05 - sys_30: 3.693806521272244e-07 - sys_31: 0.00015512094758820874 - sys_32: -3.9186489101900806e-05 - sys_33: 0.0009757032091717645 - sys_34: -0.0013284682158814377 - sys_35: -0.00018495674223530063 + pol: 2.74500000e-04 + sys_0: 2.53882448e-05 + sys_1: -9.64866002e-06 + sys_2: 1.72572827e-05 + sys_3: 1.21193432e-05 + sys_4: -3.25706970e-05 + sys_5: 8.39739679e-05 + sys_6: -6.16105993e-06 + sys_7: 7.24936965e-05 + sys_8: -2.25075966e-05 + sys_9: 1.62258514e-04 + sys_10: 1.97847808e-04 + sys_11: 6.81186646e-06 + sys_12: 6.92393878e-05 + sys_13: -3.64419147e-04 + sys_14: 3.48860188e-04 + sys_15: -7.98841308e-05 + sys_16: -1.95036965e-05 + sys_17: -2.28384738e-04 + sys_18: 5.84204215e-05 + sys_19: -3.19852674e-04 + sys_20: -3.85265850e-04 + sys_21: -4.31697812e-04 + sys_22: -6.09179320e-05 + sys_23: 2.64166652e-05 + sys_24: -5.97748545e-04 + sys_25: 3.31172737e-04 + sys_26: 3.32441335e-05 + sys_27: -4.78514477e-05 + sys_28: -1.47822375e-06 + sys_29: -9.61203321e-05 + sys_30: 3.69380652e-07 + sys_31: 1.55120948e-04 + sys_32: -3.91864891e-05 + sys_33: 9.75703209e-04 + sys_34: -1.32846822e-03 + sys_35: -1.84956742e-04 - lumi: 0.0007 - pol: 0.0011102 - sys_0: 4.632403094116583e-05 - sys_1: -2.2335164477385147e-05 - sys_2: 3.0393390967324916e-05 - sys_3: 2.2710258501588896e-05 - sys_4: -7.93294511043521e-05 - sys_5: 0.0002284809577398553 - sys_6: 3.277659799820353e-05 - sys_7: 0.0002274772639078593 - sys_8: -0.00013807805635517145 - sys_9: 0.0005026636252844588 - sys_10: 0.00044877241869687796 - sys_11: 0.00021573821555987855 - sys_12: -2.7545708803117248e-05 - sys_13: -0.0005705489319652081 - sys_14: 0.00044853710412762774 - sys_15: 0.00011561411669471102 - sys_16: -0.00021610015495933588 - sys_17: -0.00026098760789823616 - sys_18: -7.303606145754738e-05 - sys_19: -0.0006082000076467769 - sys_20: -0.000716959362988909 - sys_21: -0.0012395471118820832 - sys_22: -0.0007684668314692384 - sys_23: -0.0006420510158603939 - sys_24: 0.0018279160465978813 - sys_25: -0.0006280977961080321 - sys_26: 1.2473128169373334e-05 - sys_27: -2.130248570939634e-05 - sys_28: -6.478227399489372e-06 - sys_29: -2.1128005414492813e-05 - sys_30: 1.2925159699880384e-05 - sys_31: 4.075025187179833e-05 - sys_32: -3.1562230950501664e-05 - sys_33: 8.113143316254796e-05 - sys_34: -0.0001159991818682614 - sys_35: -3.17551794245446e-05 + pol: 1.11020000e-03 + sys_0: 4.63240309e-05 + sys_1: -2.23351645e-05 + sys_2: 3.03933910e-05 + sys_3: 2.27102585e-05 + sys_4: -7.93294511e-05 + sys_5: 2.28480958e-04 + sys_6: 3.27765980e-05 + sys_7: 2.27477264e-04 + sys_8: -1.38078056e-04 + sys_9: 5.02663625e-04 + sys_10: 4.48772419e-04 + sys_11: 2.15738216e-04 + sys_12: -2.75457088e-05 + sys_13: -5.70548932e-04 + sys_14: 4.48537104e-04 + sys_15: 1.15614117e-04 + sys_16: -2.16100155e-04 + sys_17: -2.60987608e-04 + sys_18: -7.30360615e-05 + sys_19: -6.08200008e-04 + sys_20: -7.16959363e-04 + sys_21: -1.23954711e-03 + sys_22: -7.68466831e-04 + sys_23: -6.42051016e-04 + sys_24: 1.82791605e-03 + sys_25: -6.28097796e-04 + sys_26: 1.24731282e-05 + sys_27: -2.13024857e-05 + sys_28: -6.47822740e-06 + sys_29: -2.11280054e-05 + sys_30: 1.29251597e-05 + sys_31: 4.07502519e-05 + sys_32: -3.15622310e-05 + sys_33: 8.11314332e-05 + sys_34: -1.15999182e-04 + sys_35: -3.17551794e-05 - lumi: 0.0007 - pol: 0.0013419999999999999 - sys_0: 8.011012824062189e-05 - sys_1: -5.796013995422083e-05 - sys_2: 6.397314012512855e-05 - sys_3: 5.2969442825092175e-05 - sys_4: -0.00020724154008688452 - sys_5: 0.0007635092953233643 - sys_6: 0.0003154819573537216 - sys_7: 0.0006101871457360713 - sys_8: -0.0006646965157433573 - sys_9: 0.0008143388034978537 - sys_10: 0.00051614665737715 - sys_11: 0.0009152868619020557 - sys_12: -0.000548321157991898 - sys_13: -0.0008898470322617223 - sys_14: 0.0010609488723206503 - sys_15: -0.002714328702068985 - sys_16: 0.002372118424256473 - sys_17: 0.00033039606666009156 - sys_18: 0.00032156629377202295 - sys_19: 0.0005823407624898825 - sys_20: 0.00029672906544411256 - sys_21: 0.00023434658986783898 - sys_22: 4.5896350795248436e-05 - sys_23: -2.2072093590785134e-05 - sys_24: 0.0002379518069776743 - sys_25: -8.673254562211265e-05 - sys_26: 4.486033911322083e-06 - sys_27: -9.56370070315303e-06 - sys_28: -3.3174779236943185e-06 - sys_29: -3.0393613874214026e-06 - sys_30: 7.241756378687175e-06 - sys_31: 1.610118469397973e-05 - sys_32: -1.3921079553079039e-05 - sys_33: 2.8146228439124104e-05 - sys_34: -3.0201002256393603e-05 - sys_35: -9.506727341717496e-06 + pol: 1.34200000e-03 + sys_0: 8.01101282e-05 + sys_1: -5.79601400e-05 + sys_2: 6.39731401e-05 + sys_3: 5.29694428e-05 + sys_4: -2.07241540e-04 + sys_5: 7.63509295e-04 + sys_6: 3.15481957e-04 + sys_7: 6.10187146e-04 + sys_8: -6.64696516e-04 + sys_9: 8.14338803e-04 + sys_10: 5.16146657e-04 + sys_11: 9.15286862e-04 + sys_12: -5.48321158e-04 + sys_13: -8.89847032e-04 + sys_14: 1.06094887e-03 + sys_15: -2.71432870e-03 + sys_16: 2.37211842e-03 + sys_17: 3.30396067e-04 + sys_18: 3.21566294e-04 + sys_19: 5.82340762e-04 + sys_20: 2.96729065e-04 + sys_21: 2.34346590e-04 + sys_22: 4.58963508e-05 + sys_23: -2.20720936e-05 + sys_24: 2.37951807e-04 + sys_25: -8.67325456e-05 + sys_26: 4.48603391e-06 + sys_27: -9.56370070e-06 + sys_28: -3.31747792e-06 + sys_29: -3.03936139e-06 + sys_30: 7.24175638e-06 + sys_31: 1.61011847e-05 + sys_32: -1.39210796e-05 + sys_33: 2.81462284e-05 + sys_34: -3.02010023e-05 + sys_35: -9.50672734e-06 - lumi: 0.0007 - pol: 0.0011955999999999998 - sys_0: 0.00037277127588957793 - sys_1: -0.0002064281215827454 - sys_2: 0.000412859817936706 - sys_3: -6.531368769915262e-05 - sys_4: -0.0004152642414604709 - sys_5: 0.0020329539525521527 - sys_6: 0.0012809104864390135 - sys_7: 0.0015878694717210327 - sys_8: -0.002750688437951097 - sys_9: 0.0010408234292963463 - sys_10: 0.0019297968539493087 - sys_11: -0.005568439811563944 - sys_12: 0.0008270809822493772 - sys_13: 0.0002605378559872354 - sys_14: -2.8772311655454653e-05 - sys_15: -0.0001671842993113482 - sys_16: 0.0001917058511950118 - sys_17: 4.859487340273498e-05 - sys_18: 5.132169309899932e-05 - sys_19: 9.010428786676046e-05 - sys_20: 6.575546387418572e-05 - sys_21: 6.902180941527694e-05 - sys_22: 1.0618847109918386e-05 - sys_23: -8.776136943731906e-06 - sys_24: 6.807872007100159e-05 - sys_25: -1.8561843884852826e-05 - sys_26: 1.3463601880383381e-06 - sys_27: -3.3547985639218e-06 - sys_28: -1.8551466900077103e-06 - sys_29: 8.91234838101371e-07 - sys_30: 3.6412448299252283e-06 - sys_31: 5.859390331088542e-06 - sys_32: -6.942833054242388e-06 - sys_33: 8.71017121522254e-06 - sys_34: -4.678041920994381e-06 - sys_35: -3.1853700402374773e-06 + pol: 1.19560000e-03 + sys_0: 3.72771276e-04 + sys_1: -2.06428122e-04 + sys_2: 4.12859818e-04 + sys_3: -6.53136877e-05 + sys_4: -4.15264241e-04 + sys_5: 2.03295395e-03 + sys_6: 1.28091049e-03 + sys_7: 1.58786947e-03 + sys_8: -2.75068844e-03 + sys_9: 1.04082343e-03 + sys_10: 1.92979685e-03 + sys_11: -5.56843981e-03 + sys_12: 8.27080982e-04 + sys_13: 2.60537856e-04 + sys_14: -2.87723117e-05 + sys_15: -1.67184299e-04 + sys_16: 1.91705851e-04 + sys_17: 4.85948734e-05 + sys_18: 5.13216931e-05 + sys_19: 9.01042879e-05 + sys_20: 6.57554639e-05 + sys_21: 6.90218094e-05 + sys_22: 1.06188471e-05 + sys_23: -8.77613694e-06 + sys_24: 6.80787201e-05 + sys_25: -1.85618439e-05 + sys_26: 1.34636019e-06 + sys_27: -3.35479856e-06 + sys_28: -1.85514669e-06 + sys_29: 8.91234838e-07 + sys_30: 3.64124483e-06 + sys_31: 5.85939033e-06 + sys_32: -6.94283305e-06 + sys_33: 8.71017122e-06 + sys_34: -4.67804192e-06 + sys_35: -3.18537004e-06 - lumi: 0.0007 - pol: 0.0021227999999999998 - sys_0: 0.0024930277547264485 - sys_1: -0.0003769892285984366 - sys_2: 0.002411679854519576 - sys_3: -0.001857920919530756 - sys_4: 0.0001248453030927399 - sys_5: 0.009158745309111328 - sys_6: -0.007463776468033799 - sys_7: -0.00202877533892031 - sys_8: 0.0019254670610033256 - sys_9: 2.183023538046474e-05 - sys_10: 0.00012512845677837455 - sys_11: -0.0003942030543926417 - sys_12: 0.00013086711070995564 - sys_13: 3.12748277092078e-05 - sys_14: 1.9043439541970062e-06 - sys_15: -3.940421011277323e-05 - sys_16: 4.52363027263313e-05 - sys_17: 1.2030522753580046e-05 - sys_18: 1.0979819996922811e-05 - sys_19: 2.1023865007009595e-05 - sys_20: 1.7750191578559468e-05 - sys_21: 2.1588540440092523e-05 - sys_22: 4.157127569815935e-06 - sys_23: -1.5467075000608854e-06 - sys_24: 1.8343540966029124e-05 - sys_25: -3.5793611409389615e-06 - sys_26: 3.2149881077404887e-07 - sys_27: -9.802830173551532e-07 - sys_28: -5.674484518727084e-07 - sys_29: 5.808389272410415e-07 - sys_30: 1.0201953969670571e-06 - sys_31: 1.539101450425797e-06 - sys_32: -1.8362641411307748e-06 - sys_33: 2.1177790813190935e-06 - sys_34: -4.3959865737219664e-07 - sys_35: -8.151484736739112e-07 + pol: 2.12280000e-03 + sys_0: 2.49302775e-03 + sys_1: -3.76989229e-04 + sys_2: 2.41167985e-03 + sys_3: -1.85792092e-03 + sys_4: 1.24845303e-04 + sys_5: 9.15874531e-03 + sys_6: -7.46377647e-03 + sys_7: -2.02877534e-03 + sys_8: 1.92546706e-03 + sys_9: 2.18302354e-05 + sys_10: 1.25128457e-04 + sys_11: -3.94203054e-04 + sys_12: 1.30867111e-04 + sys_13: 3.12748277e-05 + sys_14: 1.90434395e-06 + sys_15: -3.94042101e-05 + sys_16: 4.52363027e-05 + sys_17: 1.20305228e-05 + sys_18: 1.09798200e-05 + sys_19: 2.10238650e-05 + sys_20: 1.77501916e-05 + sys_21: 2.15885404e-05 + sys_22: 4.15712757e-06 + sys_23: -1.54670750e-06 + sys_24: 1.83435410e-05 + sys_25: -3.57936114e-06 + sys_26: 3.21498811e-07 + sys_27: -9.80283017e-07 + sys_28: -5.67448452e-07 + sys_29: 5.80838927e-07 + sys_30: 1.02019540e-06 + sys_31: 1.53910145e-06 + sys_32: -1.83626414e-06 + sys_33: 2.11777908e-06 + sys_34: -4.39598657e-07 + sys_35: -8.15148474e-07 - lumi: 0.0007 - pol: 0.0031414999999999998 - sys_0: 0.008930830278231647 - sys_1: -0.0005044354604341264 - sys_2: 0.01058720018655507 - sys_3: 0.01943810448788214 - sys_4: -0.0017367920892883062 - sys_5: -0.00010201992715171016 - sys_6: -0.0006085662253752192 - sys_7: -0.0001864372705490988 - sys_8: 0.00027695682740620347 - sys_9: 1.0414908581755689e-05 - sys_10: 2.6125335174242617e-05 - sys_11: -8.182525906402164e-05 - sys_12: 2.638300327262265e-05 - sys_13: 7.524233509328955e-06 - sys_14: -3.7876535581127035e-07 - sys_15: -5.304077803906611e-06 - sys_16: 7.431396223608733e-06 - sys_17: 2.9288297063761633e-06 - sys_18: 1.614757220531549e-06 - sys_19: 4.507411135769223e-06 - sys_20: 4.548242760813683e-06 - sys_21: 6.080764607827587e-06 - sys_22: 1.6910536500653058e-06 - sys_23: 1.4595716631903928e-07 - sys_24: 3.812365408182648e-06 - sys_25: -4.95062620358534e-07 - sys_26: 8.349609149518181e-08 - sys_27: -2.3467452087212967e-07 - sys_28: -1.0211679139057507e-07 - sys_29: 1.7650550093627162e-07 - sys_30: 1.5912010984403555e-07 - sys_31: 3.0564213124633436e-07 - sys_32: -3.4046291644328057e-07 - sys_33: 4.20478112253572e-07 - sys_34: 9.813384612620248e-08 - sys_35: -1.1323072132202326e-07 + pol: 3.14150000e-03 + sys_0: 8.93083028e-03 + sys_1: -5.04435460e-04 + sys_2: 1.05872002e-02 + sys_3: 1.94381045e-02 + sys_4: -1.73679209e-03 + sys_5: -1.02019927e-04 + sys_6: -6.08566225e-04 + sys_7: -1.86437271e-04 + sys_8: 2.76956827e-04 + sys_9: 1.04149086e-05 + sys_10: 2.61253352e-05 + sys_11: -8.18252591e-05 + sys_12: 2.63830033e-05 + sys_13: 7.52423351e-06 + sys_14: -3.78765356e-07 + sys_15: -5.30407780e-06 + sys_16: 7.43139622e-06 + sys_17: 2.92882971e-06 + sys_18: 1.61475722e-06 + sys_19: 4.50741114e-06 + sys_20: 4.54824276e-06 + sys_21: 6.08076461e-06 + sys_22: 1.69105365e-06 + sys_23: 1.45957166e-07 + sys_24: 3.81236541e-06 + sys_25: -4.95062620e-07 + sys_26: 8.34960915e-08 + sys_27: -2.34674521e-07 + sys_28: -1.02116791e-07 + sys_29: 1.76505501e-07 + sys_30: 1.59120110e-07 + sys_31: 3.05642131e-07 + sys_32: -3.40462916e-07 + sys_33: 4.20478112e-07 + sys_34: 9.81338461e-08 + sys_35: -1.13230721e-07 diff --git a/nnpdf_data/nnpdf_data/commondata/STAR-2015_1JET_200GEV/uncertainties_CF.yaml b/nnpdf_data/nnpdf_data/commondata/STAR-2015_1JET_200GEV/uncertainties_CF.yaml index 642f63269f..1b56831706 100644 --- a/nnpdf_data/nnpdf_data/commondata/STAR-2015_1JET_200GEV/uncertainties_CF.yaml +++ b/nnpdf_data/nnpdf_data/commondata/STAR-2015_1JET_200GEV/uncertainties_CF.yaml @@ -153,420 +153,420 @@ definitions: type: STAR2015JETunc35 bins: - lumi: 0.0007 - pol: 1.2810000000000001e-05 - sys_0: 1.285223974365425e-05 - sys_1: -3.862854872078117e-06 - sys_2: 8.150376962433006e-06 - sys_3: -3.483254100886335e-07 - sys_4: -1.2377366797702224e-05 - sys_5: 2.386427223662906e-05 - sys_6: 3.3887678604083003e-06 - sys_7: 2.1277189305953037e-05 - sys_8: -2.1956287907345646e-06 - sys_9: 1.615036594896166e-05 - sys_10: 1.9206362798194395e-05 - sys_11: -3.332902170213143e-06 - sys_12: 2.0127948125866066e-05 - sys_13: -2.3169161505743398e-05 - sys_14: 3.133870227729763e-05 - sys_15: -4.006345232157947e-05 - sys_16: -2.32715181732292e-05 - sys_17: -5.25977574899953e-05 - sys_18: 1.828308394529651e-05 - sys_19: 1.3356998325157842e-06 - sys_20: -3.784512079836223e-05 - sys_21: -3.481321287736769e-05 - sys_22: 2.1170572301418623e-05 - sys_23: 3.512718207175899e-05 - sys_24: -7.483870489012726e-06 - sys_25: -6.92480596918241e-05 - sys_26: -7.787584626609216e-07 - sys_27: -5.7623636225593675e-06 - sys_28: -8.049679826648327e-05 - sys_29: 2.7459018004440603e-05 - sys_30: 0.00015385993712531306 - sys_31: 3.1234383302966616e-05 - sys_32: 0.0003963790680388795 - sys_33: -0.00029764661021316064 - sys_34: -0.0004491161211108686 - sys_35: 0.001597572757561847 + pol: 1.28100000e-05 + sys_0: 1.28522397e-05 + sys_1: -3.86285487e-06 + sys_2: 8.15037696e-06 + sys_3: -3.48325410e-07 + sys_4: -1.23773668e-05 + sys_5: 2.38642722e-05 + sys_6: 3.38876786e-06 + sys_7: 2.12771893e-05 + sys_8: -2.19562879e-06 + sys_9: 1.61503659e-05 + sys_10: 1.92063628e-05 + sys_11: -3.33290217e-06 + sys_12: 2.01279481e-05 + sys_13: -2.31691615e-05 + sys_14: 3.13387023e-05 + sys_15: -4.00634523e-05 + sys_16: -2.32715182e-05 + sys_17: -5.25977575e-05 + sys_18: 1.82830839e-05 + sys_19: 1.33569983e-06 + sys_20: -3.78451208e-05 + sys_21: -3.48132129e-05 + sys_22: 2.11705723e-05 + sys_23: 3.51271821e-05 + sys_24: -7.48387049e-06 + sys_25: -6.92480597e-05 + sys_26: -7.78758463e-07 + sys_27: -5.76236362e-06 + sys_28: -8.04967983e-05 + sys_29: 2.74590180e-05 + sys_30: 1.53859937e-04 + sys_31: 3.12343833e-05 + sys_32: 3.96379068e-04 + sys_33: -2.97646610e-04 + sys_34: -4.49116121e-04 + sys_35: 1.59757276e-03 - lumi: 0.0007 - pol: 5.5509999999999995e-05 - sys_0: 1.605768409213924e-05 - sys_1: -3.6014916855259418e-06 - sys_2: 8.941219814439465e-06 - sys_3: -1.0096349204976158e-06 - sys_4: -1.3812508453407755e-05 - sys_5: 2.821972792931317e-05 - sys_6: 5.3797688345802175e-06 - sys_7: 2.5269444185676706e-05 - sys_8: -4.880100598849406e-06 - sys_9: 2.042895458419912e-05 - sys_10: 2.3601614203361426e-05 - sys_11: -3.096741481476684e-06 - sys_12: 2.205147619886348e-05 - sys_13: -3.0133145799157514e-05 - sys_14: 4.022730728401946e-05 - sys_15: -5.778205434989477e-05 - sys_16: -3.357367852559977e-05 - sys_17: -7.763446256767994e-05 - sys_18: 7.80622414491192e-06 - sys_19: 1.9476867958187256e-06 - sys_20: -5.282210817371119e-05 - sys_21: -4.9302011781991523e-05 - sys_22: 3.5238855771847155e-05 - sys_23: 6.337092894010316e-05 - sys_24: -1.0902155396045449e-07 - sys_25: -7.618710144405468e-05 - sys_26: 7.668845439617866e-07 - sys_27: -1.6733089006817563e-06 - sys_28: -4.3625408740782774e-05 - sys_29: 1.194294512880187e-05 - sys_30: 7.379911532079029e-05 - sys_31: 1.1097213340752093e-05 - sys_32: 0.0018560916981537922 - sys_33: 0.0003881392362047054 - sys_34: 0.0002710295600311507 - sys_35: -0.00024561832143299347 + pol: 5.55100000e-05 + sys_0: 1.60576841e-05 + sys_1: -3.60149169e-06 + sys_2: 8.94121981e-06 + sys_3: -1.00963492e-06 + sys_4: -1.38125085e-05 + sys_5: 2.82197279e-05 + sys_6: 5.37976883e-06 + sys_7: 2.52694442e-05 + sys_8: -4.88010060e-06 + sys_9: 2.04289546e-05 + sys_10: 2.36016142e-05 + sys_11: -3.09674148e-06 + sys_12: 2.20514762e-05 + sys_13: -3.01331458e-05 + sys_14: 4.02273073e-05 + sys_15: -5.77820543e-05 + sys_16: -3.35736785e-05 + sys_17: -7.76344626e-05 + sys_18: 7.80622414e-06 + sys_19: 1.94768680e-06 + sys_20: -5.28221082e-05 + sys_21: -4.93020118e-05 + sys_22: 3.52388558e-05 + sys_23: 6.33709289e-05 + sys_24: -1.09021554e-07 + sys_25: -7.61871014e-05 + sys_26: 7.66884544e-07 + sys_27: -1.67330890e-06 + sys_28: -4.36254087e-05 + sys_29: 1.19429451e-05 + sys_30: 7.37991153e-05 + sys_31: 1.10972133e-05 + sys_32: 1.85609170e-03 + sys_33: 3.88139236e-04 + sys_34: 2.71029560e-04 + sys_35: -2.45618321e-04 - lumi: 0.0007 - pol: 5.1240000000000004e-05 - sys_0: 1.5425709267569802e-05 - sys_1: -4.525850117947736e-06 - sys_2: 9.321142600835638e-06 - sys_3: -5.046417309826598e-07 - sys_4: -1.4267413573603533e-05 - sys_5: 2.9799551825637462e-05 - sys_6: 4.6344251815212054e-06 - sys_7: 2.5176603670614403e-05 - sys_8: -5.306106059813175e-06 - sys_9: 2.0095286279758258e-05 - sys_10: 2.339356815630141e-05 - sys_11: -3.718298956372065e-06 - sys_12: 2.2665826195248945e-05 - sys_13: -3.291872850725276e-05 - sys_14: 4.777054039345101e-05 - sys_15: -7.612380828085063e-05 - sys_16: -5.82883552812844e-05 - sys_17: -9.948326080512078e-05 - sys_18: -1.2138761832333364e-05 - sys_19: 2.299318521169206e-06 - sys_20: -5.723459159215584e-05 - sys_21: -3.0062025310340034e-05 - sys_22: 6.220369833320872e-05 - sys_23: 7.933720901677051e-05 - sys_24: 2.101350855360264e-05 - sys_25: -3.054640020655742e-05 - sys_26: 1.0959273342595142e-05 - sys_27: 6.470017074573437e-05 - sys_28: 0.0012234169769303426 - sys_29: -7.99130677006742e-06 - sys_30: -0.00016968182524960414 - sys_31: -9.782656031604351e-06 - sys_32: 0.00011571574736372943 - sys_33: -5.0729221131862524e-05 - sys_34: -5.364670582418755e-05 - sys_35: 9.605675830598353e-05 + pol: 5.12400000e-05 + sys_0: 1.54257093e-05 + sys_1: -4.52585012e-06 + sys_2: 9.32114260e-06 + sys_3: -5.04641731e-07 + sys_4: -1.42674136e-05 + sys_5: 2.97995518e-05 + sys_6: 4.63442518e-06 + sys_7: 2.51766037e-05 + sys_8: -5.30610606e-06 + sys_9: 2.00952863e-05 + sys_10: 2.33935682e-05 + sys_11: -3.71829896e-06 + sys_12: 2.26658262e-05 + sys_13: -3.29187285e-05 + sys_14: 4.77705404e-05 + sys_15: -7.61238083e-05 + sys_16: -5.82883553e-05 + sys_17: -9.94832608e-05 + sys_18: -1.21387618e-05 + sys_19: 2.29931852e-06 + sys_20: -5.72345916e-05 + sys_21: -3.00620253e-05 + sys_22: 6.22036983e-05 + sys_23: 7.93372090e-05 + sys_24: 2.10135086e-05 + sys_25: -3.05464002e-05 + sys_26: 1.09592733e-05 + sys_27: 6.47001707e-05 + sys_28: 1.22341698e-03 + sys_29: -7.99130677e-06 + sys_30: -1.69681825e-04 + sys_31: -9.78265603e-06 + sys_32: 1.15715747e-04 + sys_33: -5.07292211e-05 + sys_34: -5.36467058e-05 + sys_35: 9.60567583e-05 - lumi: 0.0007 - pol: 0.00020313 - sys_0: 2.1118355042605413e-05 - sys_1: -5.9618239517503064e-06 - sys_2: 1.182721805884206e-05 - sys_3: -1.1063497502432896e-06 - sys_4: -1.93389989606135e-05 - sys_5: 3.886403148319478e-05 - sys_6: 6.10151504368539e-06 - sys_7: 3.3131121425617504e-05 - sys_8: -7.4812558694239075e-06 - sys_9: 2.7903072755437492e-05 - sys_10: 3.532930715754019e-05 - sys_11: -5.243136020513049e-06 - sys_12: 3.0085972236894332e-05 - sys_13: -5.73075499764169e-05 - sys_14: 8.286276024217566e-05 - sys_15: -7.4147206837537e-05 - sys_16: -4.320332026622727e-05 - sys_17: -0.0001570886725759144 - sys_18: -8.571674791876224e-07 - sys_19: -3.485022089130146e-05 - sys_20: -0.000104772652421791 - sys_21: -2.30610493831558e-05 - sys_22: 0.00011610726534474569 - sys_23: 0.00011244827057188982 - sys_24: 3.50865846668436e-05 - sys_25: -1.53402500521221e-05 - sys_26: 1.349395497157182e-05 - sys_27: 2.4495848656003868e-05 - sys_28: -0.00016626157785701496 - sys_29: -0.0002097267052656219 - sys_30: -0.001384406821235927 - sys_31: -2.072866739532398e-05 - sys_32: 0.00013249632379304683 - sys_33: -6.601013085581552e-05 - sys_34: -3.264599926226974e-05 - sys_35: 0.00013577252574687975 + pol: 2.03130000e-04 + sys_0: 2.11183550e-05 + sys_1: -5.96182395e-06 + sys_2: 1.18272181e-05 + sys_3: -1.10634975e-06 + sys_4: -1.93389990e-05 + sys_5: 3.88640315e-05 + sys_6: 6.10151504e-06 + sys_7: 3.31311214e-05 + sys_8: -7.48125587e-06 + sys_9: 2.79030728e-05 + sys_10: 3.53293072e-05 + sys_11: -5.24313602e-06 + sys_12: 3.00859722e-05 + sys_13: -5.73075500e-05 + sys_14: 8.28627602e-05 + sys_15: -7.41472068e-05 + sys_16: -4.32033203e-05 + sys_17: -1.57088673e-04 + sys_18: -8.57167479e-07 + sys_19: -3.48502209e-05 + sys_20: -1.04772652e-04 + sys_21: -2.30610494e-05 + sys_22: 1.16107265e-04 + sys_23: 1.12448271e-04 + sys_24: 3.50865847e-05 + sys_25: -1.53402501e-05 + sys_26: 1.34939550e-05 + sys_27: 2.44958487e-05 + sys_28: -1.66261578e-04 + sys_29: -2.09726705e-04 + sys_30: -1.38440682e-03 + sys_31: -2.07286674e-05 + sys_32: 1.32496324e-04 + sys_33: -6.60101309e-05 + sys_34: -3.26459993e-05 + sys_35: 1.35772526e-04 - lumi: 0.0007 - pol: 0.00014518 - sys_0: 2.0675202260269965e-05 - sys_1: -6.696986196434508e-06 - sys_2: 1.2047029347954507e-05 - sys_3: 1.0390605388743065e-06 - sys_4: -1.9623194068498517e-05 - sys_5: 4.1854442433159414e-05 - sys_6: 5.537119119515142e-06 - sys_7: 3.9582612584964506e-05 - sys_8: -6.757720790115838e-06 - sys_9: 4.1739420202983135e-05 - sys_10: 6.573454165523883e-05 - sys_11: 2.292337359810639e-06 - sys_12: 4.36104086727027e-05 - sys_13: -0.00011655307280171142 - sys_14: 0.00015094395183116064 - sys_15: -3.9579376642465895e-05 - sys_16: -3.6074427982854825e-05 - sys_17: -0.00017629469902999647 - sys_18: 4.084930729870203e-05 - sys_19: -0.00012757117739128053 - sys_20: -0.00014138674155569195 - sys_21: 2.8948824527276775e-05 - sys_22: 0.00017808726122148423 - sys_23: 0.00012019840598521243 - sys_24: 2.5819475504669532e-05 - sys_25: 3.313872788004203e-05 - sys_26: 9.152542915005384e-06 - sys_27: 4.990310897979278e-06 - sys_28: -3.827996210006819e-05 - sys_29: -4.5171819951343597e-05 - sys_30: 6.42152927365379e-05 - sys_31: 4.34555042835732e-06 - sys_32: 0.00038255052594694306 - sys_33: -0.0014099698476644387 - sys_34: -0.000880433869080645 - sys_35: -0.0005597635335845974 + pol: 1.45180000e-04 + sys_0: 2.06752023e-05 + sys_1: -6.69698620e-06 + sys_2: 1.20470293e-05 + sys_3: 1.03906054e-06 + sys_4: -1.96231941e-05 + sys_5: 4.18544424e-05 + sys_6: 5.53711912e-06 + sys_7: 3.95826126e-05 + sys_8: -6.75772079e-06 + sys_9: 4.17394202e-05 + sys_10: 6.57345417e-05 + sys_11: 2.29233736e-06 + sys_12: 4.36104087e-05 + sys_13: -1.16553073e-04 + sys_14: 1.50943952e-04 + sys_15: -3.95793766e-05 + sys_16: -3.60744280e-05 + sys_17: -1.76294699e-04 + sys_18: 4.08493073e-05 + sys_19: -1.27571177e-04 + sys_20: -1.41386742e-04 + sys_21: 2.89488245e-05 + sys_22: 1.78087261e-04 + sys_23: 1.20198406e-04 + sys_24: 2.58194755e-05 + sys_25: 3.31387279e-05 + sys_26: 9.15254292e-06 + sys_27: 4.99031090e-06 + sys_28: -3.82799621e-05 + sys_29: -4.51718200e-05 + sys_30: 6.42152927e-05 + sys_31: 4.34555043e-06 + sys_32: 3.82550526e-04 + sys_33: -1.40996985e-03 + sys_34: -8.80433869e-04 + sys_35: -5.59763534e-04 - lumi: 0.0007 - pol: 0.00013054 - sys_0: 2.2686915457829103e-05 - sys_1: -7.317597007040176e-06 - sys_2: 1.316065051762562e-05 - sys_3: 2.941973560510285e-06 - sys_4: -2.970974239772201e-05 - sys_5: 6.442485470375717e-05 - sys_6: 1.6067626688563252e-06 - sys_7: 7.351757258941647e-05 - sys_8: -2.4074885678268695e-05 - sys_9: 0.0001162554665645195 - sys_10: 0.0001740769203881286 - sys_11: 4.7337814982013635e-05 - sys_12: 4.950354140433494e-05 - sys_13: -0.0002754299049465644 - sys_14: 0.00024799705743984603 - sys_15: 3.8658934569817824e-05 - sys_16: -8.872601657046054e-05 - sys_17: -0.00018132785595951955 - sys_18: 5.4985251451250016e-05 - sys_19: -0.0002782262224667809 - sys_20: -0.00017766561084092474 - sys_21: 0.00019091657045968515 - sys_22: 0.0003567793439730108 - sys_23: 0.00025898116061938637 - sys_24: -0.0007217929457675391 - sys_25: -0.002299955113082273 - sys_26: 4.878361475830774e-06 - sys_27: -2.0012981211203283e-06 - sys_28: -1.4360961016360143e-05 - sys_29: -1.613067131047073e-05 - sys_30: 2.0994115907795632e-05 - sys_31: 5.207927631191714e-06 - sys_32: -8.543982251030727e-05 - sys_33: 5.716764400498473e-05 - sys_34: -5.131268732893389e-05 - sys_35: -4.855251906395387e-05 + pol: 1.30540000e-04 + sys_0: 2.26869155e-05 + sys_1: -7.31759701e-06 + sys_2: 1.31606505e-05 + sys_3: 2.94197356e-06 + sys_4: -2.97097424e-05 + sys_5: 6.44248547e-05 + sys_6: 1.60676267e-06 + sys_7: 7.35175726e-05 + sys_8: -2.40748857e-05 + sys_9: 1.16255467e-04 + sys_10: 1.74076920e-04 + sys_11: 4.73378150e-05 + sys_12: 4.95035414e-05 + sys_13: -2.75429905e-04 + sys_14: 2.47997057e-04 + sys_15: 3.86589346e-05 + sys_16: -8.87260166e-05 + sys_17: -1.81327856e-04 + sys_18: 5.49852515e-05 + sys_19: -2.78226222e-04 + sys_20: -1.77665611e-04 + sys_21: 1.90916570e-04 + sys_22: 3.56779344e-04 + sys_23: 2.58981161e-04 + sys_24: -7.21792946e-04 + sys_25: -2.29995511e-03 + sys_26: 4.87836148e-06 + sys_27: -2.00129812e-06 + sys_28: -1.43609610e-05 + sys_29: -1.61306713e-05 + sys_30: 2.09941159e-05 + sys_31: 5.20792763e-06 + sys_32: -8.54398225e-05 + sys_33: 5.71676440e-05 + sys_34: -5.13126873e-05 + sys_35: -4.85525191e-05 - lumi: 0.0007 - pol: 0.0006960099999999999 - sys_0: 3.5738555944694166e-05 - sys_1: -1.5917190927379325e-05 - sys_2: 2.3353095663832858e-05 - sys_3: 8.050417843946688e-06 - sys_4: -5.8638268739692334e-05 - sys_5: 0.00017224115563288845 - sys_6: 1.47999452271549e-05 - sys_7: 0.0002224568387753603 - sys_8: -0.00014458009654551814 - sys_9: 0.00037229409262537326 - sys_10: 0.00035447945114719034 - sys_11: 0.0002358061821784018 - sys_12: -3.2209350400686707e-05 - sys_13: -0.0005509990029404648 - sys_14: 0.00041114541854045264 - sys_15: 0.0005281660859472634 - sys_16: -0.0006764297525016573 - sys_17: -0.0012963519828601208 - sys_18: 0.0025631381820355762 - sys_19: 0.0019919938086019467 - sys_20: 0.0002200661399116749 - sys_21: -0.00012995831793883095 - sys_22: -8.365614770035553e-05 - sys_23: -5.539597688405109e-05 - sys_24: 7.952820623372617e-05 - sys_25: -4.821871975511289e-05 - sys_26: 1.923886869335309e-06 - sys_27: -2.9584699181567973e-06 - sys_28: -6.585697484856081e-06 - sys_29: -3.3154750912700136e-06 - sys_30: 1.067048339520938e-05 - sys_31: 4.4327593079874075e-06 - sys_32: -2.5762040277921645e-05 - sys_33: 2.1849375777797446e-05 - sys_34: -1.5576571169806704e-05 - sys_35: -1.4910863267383944e-05 + pol: 6.96010000e-04 + sys_0: 3.57385559e-05 + sys_1: -1.59171909e-05 + sys_2: 2.33530957e-05 + sys_3: 8.05041784e-06 + sys_4: -5.86382687e-05 + sys_5: 1.72241156e-04 + sys_6: 1.47999452e-05 + sys_7: 2.22456839e-04 + sys_8: -1.44580097e-04 + sys_9: 3.72294093e-04 + sys_10: 3.54479451e-04 + sys_11: 2.35806182e-04 + sys_12: -3.22093504e-05 + sys_13: -5.50999003e-04 + sys_14: 4.11145419e-04 + sys_15: 5.28166086e-04 + sys_16: -6.76429753e-04 + sys_17: -1.29635198e-03 + sys_18: 2.56313818e-03 + sys_19: 1.99199381e-03 + sys_20: 2.20066140e-04 + sys_21: -1.29958318e-04 + sys_22: -8.36561477e-05 + sys_23: -5.53959769e-05 + sys_24: 7.95282062e-05 + sys_25: -4.82187198e-05 + sys_26: 1.92388687e-06 + sys_27: -2.95846992e-06 + sys_28: -6.58569748e-06 + sys_29: -3.31547509e-06 + sys_30: 1.06704834e-05 + sys_31: 4.43275931e-06 + sys_32: -2.57620403e-05 + sys_33: 2.18493758e-05 + sys_34: -1.55765712e-05 + sys_35: -1.49108633e-05 - lumi: 0.0007 - pol: 0.0007490799999999998 - sys_0: 5.207549015037209e-05 - sys_1: -4.57351281999985e-05 - sys_2: 6.781126356853156e-05 - sys_3: 2.018470666470658e-05 - sys_4: -0.0001479092787615561 - sys_5: 0.0005858399070605125 - sys_6: 0.00021026504049236376 - sys_7: 0.0006181087873216809 - sys_8: -0.0006802530789416212 - sys_9: 0.0007946133564753258 - sys_10: 0.000502201668031051 - sys_11: 0.0016969370201710293 - sys_12: 0.0052799050103256905 - sys_13: 0.001007390876774481 - sys_14: -7.178092021343579e-05 - sys_15: -0.00018741636363927918 - sys_16: 0.00017028298495093568 - sys_17: 2.628399995394365e-05 - sys_18: 3.9042964667243984e-05 - sys_19: 8.295811103181243e-05 - sys_20: 2.1905897820509206e-05 - sys_21: -9.266624789252104e-06 - sys_22: -9.887124941424848e-06 - sys_23: -1.4123803872499952e-05 - sys_24: 3.242916985385037e-05 - sys_25: -1.310896425098671e-05 - sys_26: 4.80064131169305e-07 - sys_27: -1.5612227850029427e-06 - sys_28: -2.5348937610252706e-06 - sys_29: 6.023984114972951e-07 - sys_30: 3.680159803083643e-06 - sys_31: 2.2035080622287997e-06 - sys_32: -8.929407400705521e-06 - sys_33: 7.468356069773913e-06 - sys_34: -2.7366473166164798e-06 - sys_35: -4.156174717466407e-06 + pol: 7.49080000e-04 + sys_0: 5.20754902e-05 + sys_1: -4.57351282e-05 + sys_2: 6.78112636e-05 + sys_3: 2.01847067e-05 + sys_4: -1.47909279e-04 + sys_5: 5.85839907e-04 + sys_6: 2.10265040e-04 + sys_7: 6.18108787e-04 + sys_8: -6.80253079e-04 + sys_9: 7.94613356e-04 + sys_10: 5.02201668e-04 + sys_11: 1.69693702e-03 + sys_12: 5.27990501e-03 + sys_13: 1.00739088e-03 + sys_14: -7.17809202e-05 + sys_15: -1.87416364e-04 + sys_16: 1.70282985e-04 + sys_17: 2.62840000e-05 + sys_18: 3.90429647e-05 + sys_19: 8.29581110e-05 + sys_20: 2.19058978e-05 + sys_21: -9.26662479e-06 + sys_22: -9.88712494e-06 + sys_23: -1.41238039e-05 + sys_24: 3.24291699e-05 + sys_25: -1.31089643e-05 + sys_26: 4.80064131e-07 + sys_27: -1.56122279e-06 + sys_28: -2.53489376e-06 + sys_29: 6.02398411e-07 + sys_30: 3.68015980e-06 + sys_31: 2.20350806e-06 + sys_32: -8.92940740e-06 + sys_33: 7.46835607e-06 + sys_34: -2.73664732e-06 + sys_35: -4.15617472e-06 - lumi: 0.0007 - pol: 0.00125477 - sys_0: 0.0002621698363592482 - sys_1: -0.0002308425005531836 - sys_2: 0.0005439942971856751 - sys_3: -0.00016293063531683442 - sys_4: -0.00028199019506223083 - sys_5: 0.002115699071514147 - sys_6: 0.0021510708522019775 - sys_7: 0.006930618425928515 - sys_8: 0.006387557377611006 - sys_9: -0.000576291516998698 - sys_10: 4.429631913764765e-05 - sys_11: -0.0004367117349764832 - sys_12: 0.00012134745525109495 - sys_13: 6.307630965107234e-05 - sys_14: -8.76856675694051e-06 - sys_15: -3.842712006714657e-05 - sys_16: 4.696816241725661e-05 - sys_17: 1.4920052703246294e-05 - sys_18: 8.61686737732992e-06 - sys_19: 2.0292261029837205e-05 - sys_20: 1.2462477026507061e-05 - sys_21: 6.699286211773016e-06 - sys_22: -2.4794910666041854e-06 - sys_23: -5.325156751393005e-06 - sys_24: 9.94733493287659e-06 - sys_25: -7.561531945858447e-07 - sys_26: 1.5885613200729426e-07 - sys_27: -7.65545578063384e-07 - sys_28: -1.138039331534725e-06 - sys_29: 1.0318226570137676e-06 - sys_30: 1.956347839173551e-06 - sys_31: 1.261577993502586e-06 - sys_32: -4.266799513880226e-06 - sys_33: 2.5331824587245035e-06 - sys_34: 1.5038675121652686e-06 - sys_35: -1.3996797265161917e-06 + pol: 1.25477000e-03 + sys_0: 2.62169836e-04 + sys_1: -2.30842501e-04 + sys_2: 5.43994297e-04 + sys_3: -1.62930635e-04 + sys_4: -2.81990195e-04 + sys_5: 2.11569907e-03 + sys_6: 2.15107085e-03 + sys_7: 6.93061843e-03 + sys_8: 6.38755738e-03 + sys_9: -5.76291517e-04 + sys_10: 4.42963191e-05 + sys_11: -4.36711735e-04 + sys_12: 1.21347455e-04 + sys_13: 6.30763097e-05 + sys_14: -8.76856676e-06 + sys_15: -3.84271201e-05 + sys_16: 4.69681624e-05 + sys_17: 1.49200527e-05 + sys_18: 8.61686738e-06 + sys_19: 2.02922610e-05 + sys_20: 1.24624770e-05 + sys_21: 6.69928621e-06 + sys_22: -2.47949107e-06 + sys_23: -5.32515675e-06 + sys_24: 9.94733493e-06 + sys_25: -7.56153195e-07 + sys_26: 1.58856132e-07 + sys_27: -7.65545578e-07 + sys_28: -1.13803933e-06 + sys_29: 1.03182266e-06 + sys_30: 1.95634784e-06 + sys_31: 1.26157799e-06 + sys_32: -4.26679951e-06 + sys_33: 2.53318246e-06 + sys_34: 1.50386751e-06 + sys_35: -1.39967973e-06 - lumi: 0.0007 - pol: 0.00324154 - sys_0: 0.0016949798445246487 - sys_1: -0.0007059136103654441 - sys_2: 0.002921005256194743 - sys_3: -0.0033275445745681257 - sys_4: -0.017325010555937898 - sys_5: -0.001379421901651102 - sys_6: -0.0006795894636556389 - sys_7: -0.00026766442754230216 - sys_8: 0.0003362914969659064 - sys_9: -2.3949354547413554e-05 - sys_10: 2.1202729166135642e-05 - sys_11: -8.054948910198362e-05 - sys_12: 2.5339733559674653e-05 - sys_13: 1.1838807003138596e-05 - sys_14: -2.9212397902011036e-06 - sys_15: -5.974423571246437e-06 - sys_16: 1.0278365429950582e-05 - sys_17: 5.013015002834394e-06 - sys_18: 1.2956403304494964e-06 - sys_19: 4.62617224607526e-06 - sys_20: 4.485530735432537e-06 - sys_21: 3.194135932857439e-06 - sys_22: -6.758811659400517e-07 - sys_23: -1.1124446186484954e-06 - sys_24: 1.9249169829711055e-06 - sys_25: 6.363479203913714e-07 - sys_26: 1.958383414366244e-08 - sys_27: -1.3403880105139756e-07 - sys_28: -3.4479990031988763e-07 - sys_29: 3.860757286008906e-07 - sys_30: 6.825781647556634e-07 - sys_31: 2.638830971438065e-07 - sys_32: -1.2209453736175507e-06 - sys_33: 4.786839287194112e-07 - sys_34: 7.647153417040683e-07 - sys_35: -3.9219511488116233e-07 + pol: 3.24154000e-03 + sys_0: 1.69497984e-03 + sys_1: -7.05913610e-04 + sys_2: 2.92100526e-03 + sys_3: -3.32754457e-03 + sys_4: -1.73250106e-02 + sys_5: -1.37942190e-03 + sys_6: -6.79589464e-04 + sys_7: -2.67664428e-04 + sys_8: 3.36291497e-04 + sys_9: -2.39493545e-05 + sys_10: 2.12027292e-05 + sys_11: -8.05494891e-05 + sys_12: 2.53397336e-05 + sys_13: 1.18388070e-05 + sys_14: -2.92123979e-06 + sys_15: -5.97442357e-06 + sys_16: 1.02783654e-05 + sys_17: 5.01301500e-06 + sys_18: 1.29564033e-06 + sys_19: 4.62617225e-06 + sys_20: 4.48553074e-06 + sys_21: 3.19413593e-06 + sys_22: -6.75881166e-07 + sys_23: -1.11244462e-06 + sys_24: 1.92491698e-06 + sys_25: 6.36347920e-07 + sys_26: 1.95838341e-08 + sys_27: -1.34038801e-07 + sys_28: -3.44799900e-07 + sys_29: 3.86075729e-07 + sys_30: 6.82578165e-07 + sys_31: 2.63883097e-07 + sys_32: -1.22094537e-06 + sys_33: 4.78683929e-07 + sys_34: 7.64715342e-07 + sys_35: -3.92195115e-07 - lumi: 0.0007 - pol: 0.0014127599999999999 - sys_0: 0.01233102060767463 - sys_1: -0.0315295566622906 - sys_2: -0.011371028884111813 - sys_3: 0.0012226741838805638 - sys_4: -0.00024518806955624393 - sys_5: -4.9386986222863484e-05 - sys_6: -0.00013843454492743097 - sys_7: -4.256767028385626e-05 - sys_8: 6.361724154609255e-05 - sys_9: -1.7190192735100465e-06 - sys_10: 2.877064234224524e-06 - sys_11: -1.1885539536238817e-05 - sys_12: 4.041053649290594e-06 - sys_13: 2.3431644451367475e-06 - sys_14: -6.173035258738987e-07 - sys_15: -3.972663091469297e-08 - sys_16: 7.51363531170469e-07 - sys_17: 7.548770803458654e-07 - sys_18: -1.5940795046532096e-07 - sys_19: 5.362392802180081e-07 - sys_20: 8.207005250568439e-07 - sys_21: 9.119120642733117e-07 - sys_22: 1.0242785585528281e-07 - sys_23: -1.0127228138336724e-07 - sys_24: 1.2423244954537165e-07 - sys_25: 2.0616022769449678e-07 - sys_26: -2.7187395489446802e-08 - sys_27: -1.5800123346962088e-09 - sys_28: -5.974589535178393e-08 - sys_29: 9.891048794500645e-08 - sys_30: 1.2165107953881113e-07 - sys_31: 6.430903619981192e-08 - sys_32: -1.878138496450809e-07 - sys_33: 8.320391742762343e-08 - sys_34: 2.307249812342545e-07 - sys_35: -2.888560403486991e-08 + pol: 1.41276000e-03 + sys_0: 1.23310206e-02 + sys_1: -3.15295567e-02 + sys_2: -1.13710289e-02 + sys_3: 1.22267418e-03 + sys_4: -2.45188070e-04 + sys_5: -4.93869862e-05 + sys_6: -1.38434545e-04 + sys_7: -4.25676703e-05 + sys_8: 6.36172415e-05 + sys_9: -1.71901927e-06 + sys_10: 2.87706423e-06 + sys_11: -1.18855395e-05 + sys_12: 4.04105365e-06 + sys_13: 2.34316445e-06 + sys_14: -6.17303526e-07 + sys_15: -3.97266309e-08 + sys_16: 7.51363531e-07 + sys_17: 7.54877080e-07 + sys_18: -1.59407950e-07 + sys_19: 5.36239280e-07 + sys_20: 8.20700525e-07 + sys_21: 9.11912064e-07 + sys_22: 1.02427856e-07 + sys_23: -1.01272281e-07 + sys_24: 1.24232450e-07 + sys_25: 2.06160228e-07 + sys_26: -2.71873955e-08 + sys_27: -1.58001233e-09 + sys_28: -5.97458954e-08 + sys_29: 9.89104879e-08 + sys_30: 1.21651080e-07 + sys_31: 6.43090362e-08 + sys_32: -1.87813850e-07 + sys_33: 8.32039174e-08 + sys_34: 2.30724981e-07 + sys_35: -2.88856040e-08 diff --git a/nnpdf_data/nnpdf_data/commondata/STAR-2015_2JET_200GEV_MIDRAP/kinematics_OS.yaml b/nnpdf_data/nnpdf_data/commondata/STAR-2015_2JET_200GEV_MIDRAP/kinematics_OS.yaml index 4e30f535e0..c6be4de289 100644 --- a/nnpdf_data/nnpdf_data/commondata/STAR-2015_2JET_200GEV_MIDRAP/kinematics_OS.yaml +++ b/nnpdf_data/nnpdf_data/commondata/STAR-2015_2JET_200GEV_MIDRAP/kinematics_OS.yaml @@ -56,7 +56,7 @@ bins: mid: 0.4 min: 0.0 m_jj: - max: 42.300000000000004 + max: 4.23000000e+01 mid: 41.38 min: 40.46 - abs_eta_1: @@ -82,4 +82,4 @@ bins: m_jj: max: 71.27 mid: 69.96 - min: 68.64999999999999 + min: 6.86500000e+01 diff --git a/nnpdf_data/nnpdf_data/commondata/STAR-2015_2JET_200GEV_MIDRAP/kinematics_SS.yaml b/nnpdf_data/nnpdf_data/commondata/STAR-2015_2JET_200GEV_MIDRAP/kinematics_SS.yaml index c185447fb1..3d58ba4a2b 100644 --- a/nnpdf_data/nnpdf_data/commondata/STAR-2015_2JET_200GEV_MIDRAP/kinematics_SS.yaml +++ b/nnpdf_data/nnpdf_data/commondata/STAR-2015_2JET_200GEV_MIDRAP/kinematics_SS.yaml @@ -10,7 +10,7 @@ bins: m_jj: max: 20.82 mid: 20.29 - min: 19.759999999999998 + min: 1.97600000e+01 - abs_eta_1: max: 0.8 mid: 0.4 diff --git a/nnpdf_data/nnpdf_data/commondata/STAR-2015_2JET_200GEV_MIDRAP/uncertainties_OS.yaml b/nnpdf_data/nnpdf_data/commondata/STAR-2015_2JET_200GEV_MIDRAP/uncertainties_OS.yaml index 9b341bbbf6..c6f7869c55 100644 --- a/nnpdf_data/nnpdf_data/commondata/STAR-2015_2JET_200GEV_MIDRAP/uncertainties_OS.yaml +++ b/nnpdf_data/nnpdf_data/commondata/STAR-2015_2JET_200GEV_MIDRAP/uncertainties_OS.yaml @@ -153,268 +153,268 @@ definitions: type: STAR2015JETunc35 bins: - lumi: 0.0007 - pol: 0.00040869999999999996 - sys_0: 2.4205120959673395e-05 - sys_1: -5.444190877463432e-06 - sys_2: 1.5722791645984022e-05 - sys_3: -6.001361119505859e-07 - sys_4: -2.1523535174842797e-05 - sys_5: 4.927704250451057e-05 - sys_6: 8.726953624518775e-06 - sys_7: 4.1525230041097905e-05 - sys_8: -1.554948658764242e-05 - sys_9: 3.88644799983978e-05 - sys_10: 5.071407727323446e-05 - sys_11: -1.6060393426230232e-05 - sys_12: 3.870221739165716e-05 - sys_13: -0.00010852752234012462 - sys_14: 0.00026973875187533315 - sys_15: -0.0024825800314651762 - sys_16: -0.0030871425533249247 - sys_17: 0.0006173926551777453 - sys_18: -8.851627347014498e-05 - sys_19: 7.787109442314548e-05 - sys_20: 0.00018280281734248674 - sys_21: 0.00016234822259027635 - sys_22: 7.300832313234506e-06 - sys_23: -2.014553836726263e-05 - sys_24: 4.755662212091294e-05 - sys_25: 5.529234832499775e-06 - sys_26: 6.53287741133436e-06 - sys_27: -2.7450159355471855e-05 - sys_28: -1.723345564388487e-05 - sys_29: 6.436491656599863e-06 - sys_30: 1.566619909507975e-05 - sys_31: 6.089033121512196e-06 - sys_32: -2.8380376407134468e-05 - sys_33: 1.4515999587258324e-05 - sys_34: -4.431790318337851e-06 - sys_35: -1.1143495479760304e-05 + pol: 4.08700000e-04 + sys_0: 2.42051210e-05 + sys_1: -5.44419088e-06 + sys_2: 1.57227916e-05 + sys_3: -6.00136112e-07 + sys_4: -2.15235352e-05 + sys_5: 4.92770425e-05 + sys_6: 8.72695362e-06 + sys_7: 4.15252300e-05 + sys_8: -1.55494866e-05 + sys_9: 3.88644800e-05 + sys_10: 5.07140773e-05 + sys_11: -1.60603934e-05 + sys_12: 3.87022174e-05 + sys_13: -1.08527522e-04 + sys_14: 2.69738752e-04 + sys_15: -2.48258003e-03 + sys_16: -3.08714255e-03 + sys_17: 6.17392655e-04 + sys_18: -8.85162735e-05 + sys_19: 7.78710944e-05 + sys_20: 1.82802817e-04 + sys_21: 1.62348223e-04 + sys_22: 7.30083231e-06 + sys_23: -2.01455384e-05 + sys_24: 4.75566221e-05 + sys_25: 5.52923483e-06 + sys_26: 6.53287741e-06 + sys_27: -2.74501594e-05 + sys_28: -1.72334556e-05 + sys_29: 6.43649166e-06 + sys_30: 1.56661991e-05 + sys_31: 6.08903312e-06 + sys_32: -2.83803764e-05 + sys_33: 1.45159996e-05 + sys_34: -4.43179032e-06 + sys_35: -1.11434955e-05 - lumi: 0.0007 - pol: 0.00014639999999999998 - sys_0: 2.2711268975888905e-05 - sys_1: -5.0740551997708974e-06 - sys_2: 1.2522827433063679e-05 - sys_3: -1.0245977596976228e-06 - sys_4: -1.6983266711966907e-05 - sys_5: 4.066738752219947e-05 - sys_6: 6.920553447400737e-06 - sys_7: 3.341492965856669e-05 - sys_8: -1.154528965340443e-05 - sys_9: 3.1598870923805416e-05 - sys_10: 3.815133765234944e-05 - sys_11: -8.494818690307764e-06 - sys_12: 2.397595802413145e-05 - sys_13: -6.256980103844028e-05 - sys_14: 9.302160530608788e-05 - sys_15: -0.00010990752732367692 - sys_16: -2.9784393927927433e-05 - sys_17: -0.00016348127045161598 - sys_18: 4.1405737996473585e-05 - sys_19: -8.039901847645473e-05 - sys_20: -0.00029098967485254945 - sys_21: -0.0005905563323203839 - sys_22: 2.5539979523998246e-05 - sys_23: 0.002606137754088261 - sys_24: 0.00045136082408345365 - sys_25: 0.00010751631316425498 - sys_26: -9.373605061657046e-06 - sys_27: -5.414635363984193e-05 - sys_28: -2.7591089002936467e-05 - sys_29: 8.441434905690504e-05 - sys_30: 5.376353060002814e-05 - sys_31: 3.722547053819513e-05 - sys_32: -8.679986426792247e-05 - sys_33: 4.656417629840996e-05 - sys_34: 7.93522213473566e-05 - sys_35: 3.68682462116063e-06 + pol: 1.46400000e-04 + sys_0: 2.27112690e-05 + sys_1: -5.07405520e-06 + sys_2: 1.25228274e-05 + sys_3: -1.02459776e-06 + sys_4: -1.69832667e-05 + sys_5: 4.06673875e-05 + sys_6: 6.92055345e-06 + sys_7: 3.34149297e-05 + sys_8: -1.15452897e-05 + sys_9: 3.15988709e-05 + sys_10: 3.81513377e-05 + sys_11: -8.49481869e-06 + sys_12: 2.39759580e-05 + sys_13: -6.25698010e-05 + sys_14: 9.30216053e-05 + sys_15: -1.09907527e-04 + sys_16: -2.97843939e-05 + sys_17: -1.63481270e-04 + sys_18: 4.14057380e-05 + sys_19: -8.03990185e-05 + sys_20: -2.90989675e-04 + sys_21: -5.90556332e-04 + sys_22: 2.55399795e-05 + sys_23: 2.60613775e-03 + sys_24: 4.51360824e-04 + sys_25: 1.07516313e-04 + sys_26: -9.37360506e-06 + sys_27: -5.41463536e-05 + sys_28: -2.75910890e-05 + sys_29: 8.44143491e-05 + sys_30: 5.37635306e-05 + sys_31: 3.72254705e-05 + sys_32: -8.67998643e-05 + sys_33: 4.65641763e-05 + sys_34: 7.93522213e-05 + sys_35: 3.68682462e-06 - lumi: 0.0007 - pol: 0.00031719999999999996 - sys_0: 2.7734786152907586e-05 - sys_1: -7.155066555136528e-06 - sys_2: 1.8948378945677377e-05 - sys_3: 1.3477200517111487e-07 - sys_4: -2.42063040428487e-05 - sys_5: 5.6821759692811104e-05 - sys_6: 1.022341245285996e-05 - sys_7: 4.9413546909098985e-05 - sys_8: -2.121483053391873e-05 - sys_9: 5.166668106698272e-05 - sys_10: 7.100198281326169e-05 - sys_11: -6.213846782997355e-06 - sys_12: 5.7648645170735305e-05 - sys_13: -0.00013084958131465648 - sys_14: 0.0002175269274164996 - sys_15: -0.00026465156102285043 - sys_16: -1.4971526449120435e-05 - sys_17: -0.0004760637418264511 - sys_18: 0.0003301068595766246 - sys_19: -0.00017294103247517896 - sys_20: -0.0028546908805488743 - sys_21: 0.0013554652046465529 - sys_22: 4.779267253839943e-05 - sys_23: -4.6190769083996124e-05 - sys_24: 1.0799700071333282e-05 - sys_25: 0.00022884762900159385 - sys_26: -1.6298982379823307e-05 - sys_27: -1.9668496646142362e-05 - sys_28: -9.24264846911501e-06 - sys_29: 9.112921034844865e-05 - sys_30: 2.9310856412719806e-05 - sys_31: 2.478872295799476e-05 - sys_32: -4.232693392362707e-05 - sys_33: 9.146922149680233e-07 - sys_34: 0.00015494175016604527 - sys_35: 3.08206598576493e-05 + pol: 3.17200000e-04 + sys_0: 2.77347862e-05 + sys_1: -7.15506656e-06 + sys_2: 1.89483789e-05 + sys_3: 1.34772005e-07 + sys_4: -2.42063040e-05 + sys_5: 5.68217597e-05 + sys_6: 1.02234125e-05 + sys_7: 4.94135469e-05 + sys_8: -2.12148305e-05 + sys_9: 5.16666811e-05 + sys_10: 7.10019828e-05 + sys_11: -6.21384678e-06 + sys_12: 5.76486452e-05 + sys_13: -1.30849581e-04 + sys_14: 2.17526927e-04 + sys_15: -2.64651561e-04 + sys_16: -1.49715264e-05 + sys_17: -4.76063742e-04 + sys_18: 3.30106860e-04 + sys_19: -1.72941032e-04 + sys_20: -2.85469088e-03 + sys_21: 1.35546520e-03 + sys_22: 4.77926725e-05 + sys_23: -4.61907691e-05 + sys_24: 1.07997001e-05 + sys_25: 2.28847629e-04 + sys_26: -1.62989824e-05 + sys_27: -1.96684966e-05 + sys_28: -9.24264847e-06 + sys_29: 9.11292103e-05 + sys_30: 2.93108564e-05 + sys_31: 2.47887230e-05 + sys_32: -4.23269339e-05 + sys_33: 9.14692215e-07 + sys_34: 1.54941750e-04 + sys_35: 3.08206599e-05 - lumi: 0.0007 - pol: 0.0006709999999999999 - sys_0: 2.736110895744098e-05 - sys_1: -6.356888748829968e-06 - sys_2: 1.867927794184371e-05 - sys_3: -2.012830229899959e-06 - sys_4: -3.091646319084978e-05 - sys_5: 8.138542500025108e-05 - sys_6: 9.394240186590562e-06 - sys_7: 9.310798960488894e-05 - sys_8: -2.692217474984866e-05 - sys_9: 0.00010475490885647937 - sys_10: 0.00016694870660816208 - sys_11: -4.4946726159889184e-05 - sys_12: 0.0002839518714078959 - sys_13: -0.0004369660740580176 - sys_14: 0.004199561319661221 - sys_15: 0.0010631651303513805 - sys_16: -0.00037796795876863864 - sys_17: 0.00047653724900460504 - sys_18: -0.0004467802496566161 - sys_19: -7.458946160562013e-05 - sys_20: 0.00021646776414987028 - sys_21: 0.000244589312960703 - sys_22: 6.224491474382285e-05 - sys_23: 3.7746330399285135e-05 - sys_24: -0.0001104284956959943 - sys_25: 0.0001833228274019823 - sys_26: -8.24425802203882e-06 - sys_27: 2.409149899372602e-06 - sys_28: -5.848463200993562e-07 - sys_29: 4.465861352573006e-05 - sys_30: 3.903838389895191e-06 - sys_31: 2.9549822699274018e-08 - sys_32: -7.496550795349934e-06 - sys_33: -3.696141330967871e-05 - sys_34: 0.00012472245522345815 - sys_35: 2.7545015288181682e-05 + pol: 6.71000000e-04 + sys_0: 2.73611090e-05 + sys_1: -6.35688875e-06 + sys_2: 1.86792779e-05 + sys_3: -2.01283023e-06 + sys_4: -3.09164632e-05 + sys_5: 8.13854250e-05 + sys_6: 9.39424019e-06 + sys_7: 9.31079896e-05 + sys_8: -2.69221747e-05 + sys_9: 1.04754909e-04 + sys_10: 1.66948707e-04 + sys_11: -4.49467262e-05 + sys_12: 2.83951871e-04 + sys_13: -4.36966074e-04 + sys_14: 4.19956132e-03 + sys_15: 1.06316513e-03 + sys_16: -3.77967959e-04 + sys_17: 4.76537249e-04 + sys_18: -4.46780250e-04 + sys_19: -7.45894616e-05 + sys_20: 2.16467764e-04 + sys_21: 2.44589313e-04 + sys_22: 6.22449147e-05 + sys_23: 3.77463304e-05 + sys_24: -1.10428496e-04 + sys_25: 1.83322827e-04 + sys_26: -8.24425802e-06 + sys_27: 2.40914990e-06 + sys_28: -5.84846320e-07 + sys_29: 4.46586135e-05 + sys_30: 3.90383839e-06 + sys_31: 2.95498227e-08 + sys_32: -7.49655080e-06 + sys_33: -3.69614133e-05 + sys_34: 1.24722455e-04 + sys_35: 2.75450153e-05 - lumi: 0.0007 - pol: 0.0012261 - sys_0: 4.2168961318558204e-05 - sys_1: -1.8040493430368857e-05 - sys_2: 3.182290304501388e-05 - sys_3: 1.944051016858795e-05 - sys_4: -8.745117826864289e-05 - sys_5: 0.00026105854374047256 - sys_6: -1.0945440875737611e-05 - sys_7: 0.00035422095852351293 - sys_8: -4.4945869056989645e-05 - sys_9: 0.0005677870951485476 - sys_10: 0.006458487768253893 - sys_11: 0.0018601075392524113 - sys_12: -0.0009297368553190402 - sys_13: 0.0002708965176418788 - sys_14: -0.00030254913301022533 - sys_15: 0.00037062328234621557 - sys_16: -0.00025611219330773377 - sys_17: 0.00010714558521826997 - sys_18: -0.00020947552671966437 - sys_19: -0.00012417322910214466 - sys_20: 4.2759548373172556e-05 - sys_21: 9.322582932203931e-05 - sys_22: 4.4639883979303606e-05 - sys_23: 4.029473541951788e-05 - sys_24: -0.0001324315817092541 - sys_25: 0.00010415723797969555 - sys_26: -2.6672433141110522e-06 - sys_27: 3.4502402372833535e-06 - sys_28: 4.982372516721413e-07 - sys_29: 9.708698430656364e-06 - sys_30: -8.162402795339463e-07 - sys_31: -5.505172877858669e-06 - sys_32: 1.6191637505963263e-06 - sys_33: -2.37026431309315e-05 - sys_34: 4.737214959208821e-05 - sys_35: 1.0296247714812524e-05 + pol: 1.22610000e-03 + sys_0: 4.21689613e-05 + sys_1: -1.80404934e-05 + sys_2: 3.18229030e-05 + sys_3: 1.94405102e-05 + sys_4: -8.74511783e-05 + sys_5: 2.61058544e-04 + sys_6: -1.09454409e-05 + sys_7: 3.54220959e-04 + sys_8: -4.49458691e-05 + sys_9: 5.67787095e-04 + sys_10: 6.45848777e-03 + sys_11: 1.86010754e-03 + sys_12: -9.29736855e-04 + sys_13: 2.70896518e-04 + sys_14: -3.02549133e-04 + sys_15: 3.70623282e-04 + sys_16: -2.56112193e-04 + sys_17: 1.07145585e-04 + sys_18: -2.09475527e-04 + sys_19: -1.24173229e-04 + sys_20: 4.27595484e-05 + sys_21: 9.32258293e-05 + sys_22: 4.46398840e-05 + sys_23: 4.02947354e-05 + sys_24: -1.32431582e-04 + sys_25: 1.04157238e-04 + sys_26: -2.66724331e-06 + sys_27: 3.45024024e-06 + sys_28: 4.98237252e-07 + sys_29: 9.70869843e-06 + sys_30: -8.16240280e-07 + sys_31: -5.50517288e-06 + sys_32: 1.61916375e-06 + sys_33: -2.37026431e-05 + sys_34: 4.73721496e-05 + sys_35: 1.02962477e-05 - lumi: 0.0007 pol: 0.001464 - sys_0: 0.00019557361566372117 - sys_1: -0.00017992091700051686 - sys_2: 0.00017927202791609146 - sys_3: 0.0003660294110554336 - sys_4: -0.0009134945244900577 - sys_5: 0.0025166224149706542 - sys_6: -0.0025785168718412523 - sys_7: 0.006736367214253594 - sys_8: -0.005562702794277904 - sys_9: -0.0010377240162833684 - sys_10: -0.0009700188775559409 - sys_11: 0.0015414514424924412 - sys_12: -0.0007315456355418763 - sys_13: -8.63527924786546e-07 - sys_14: -0.00014772164726384118 - sys_15: 0.0003244455808859207 - sys_16: -0.00026003872055944494 - sys_17: 1.6298737034181806e-05 - sys_18: -0.00010820559562812042 - sys_19: -0.00010586240264626461 - sys_20: -1.838690173134584e-05 - sys_21: 1.6343146856171537e-06 - sys_22: 7.517258227384989e-06 - sys_23: 1.405195475987047e-05 - sys_24: -7.304342492511419e-05 - sys_25: 3.597358058795095e-05 - sys_26: -8.689527685366952e-07 - sys_27: 1.8504891935101645e-06 - sys_28: 4.189338003087993e-08 - sys_29: 1.5724603720757114e-06 - sys_30: -1.8280220445048968e-07 - sys_31: -2.7061516624401956e-06 - sys_32: 1.0475923836073082e-06 - sys_33: -7.158030457432252e-06 - sys_34: 1.1124019132298561e-05 - sys_35: 2.430920338692411e-06 + sys_0: 1.95573616e-04 + sys_1: -1.79920917e-04 + sys_2: 1.79272028e-04 + sys_3: 3.66029411e-04 + sys_4: -9.13494524e-04 + sys_5: 2.51662241e-03 + sys_6: -2.57851687e-03 + sys_7: 6.73636721e-03 + sys_8: -5.56270279e-03 + sys_9: -1.03772402e-03 + sys_10: -9.70018878e-04 + sys_11: 1.54145144e-03 + sys_12: -7.31545636e-04 + sys_13: -8.63527925e-07 + sys_14: -1.47721647e-04 + sys_15: 3.24445581e-04 + sys_16: -2.60038721e-04 + sys_17: 1.62987370e-05 + sys_18: -1.08205596e-04 + sys_19: -1.05862403e-04 + sys_20: -1.83869017e-05 + sys_21: 1.63431469e-06 + sys_22: 7.51725823e-06 + sys_23: 1.40519548e-05 + sys_24: -7.30434249e-05 + sys_25: 3.59735806e-05 + sys_26: -8.68952769e-07 + sys_27: 1.85048919e-06 + sys_28: 4.18933800e-08 + sys_29: 1.57246037e-06 + sys_30: -1.82802204e-07 + sys_31: -2.70615166e-06 + sys_32: 1.04759238e-06 + sys_33: -7.15803046e-06 + sys_34: 1.11240191e-05 + sys_35: 2.43092034e-06 - lumi: 0.0007 - pol: 0.005697399999999999 - sys_0: 0.0039442492874979165 - sys_1: -0.012501134347021584 - sys_2: 0.026444938040907535 - sys_3: -0.0069717368900084386 - sys_4: 0.0025953504800179305 - sys_5: -0.0008799128088274792 - sys_6: 0.0008517681118486099 - sys_7: 7.844082965393336e-05 - sys_8: -0.00034231166977442324 - sys_9: -1.7210986341492456e-05 - sys_10: -5.450341955938031e-05 - sys_11: 0.00014216921525600116 - sys_12: -4.2882155736305356e-05 - sys_13: -5.6289812994658646e-06 - sys_14: -4.39119060592738e-06 - sys_15: 1.3679684584657506e-05 - sys_16: -1.0929965747917453e-05 - sys_17: 3.248069246702191e-07 - sys_18: -3.6970779578646213e-06 - sys_19: -4.823180645610463e-06 - sys_20: -1.8777073287706295e-06 - sys_21: -3.0587485928711057e-06 - sys_22: -1.16556898715983e-06 - sys_23: -1.5037257067520498e-07 - sys_24: -4.0219050757625154e-06 - sys_25: 1.1889694206987488e-06 - sys_26: -2.7774194054760118e-08 - sys_27: 1.1264401806579679e-07 - sys_28: -4.187989741645852e-08 - sys_29: -3.1900853225776895e-08 - sys_30: 7.527460311727573e-08 - sys_31: -1.3181370397902035e-07 - sys_32: -1.308938691597432e-07 - sys_33: -2.3655852829045197e-07 - sys_34: 3.8323216754639093e-07 - sys_35: 6.289476894024717e-10 + pol: 5.69740000e-03 + sys_0: 3.94424929e-03 + sys_1: -1.25011343e-02 + sys_2: 2.64449380e-02 + sys_3: -6.97173689e-03 + sys_4: 2.59535048e-03 + sys_5: -8.79912809e-04 + sys_6: 8.51768112e-04 + sys_7: 7.84408297e-05 + sys_8: -3.42311670e-04 + sys_9: -1.72109863e-05 + sys_10: -5.45034196e-05 + sys_11: 1.42169215e-04 + sys_12: -4.28821557e-05 + sys_13: -5.62898130e-06 + sys_14: -4.39119061e-06 + sys_15: 1.36796846e-05 + sys_16: -1.09299657e-05 + sys_17: 3.24806925e-07 + sys_18: -3.69707796e-06 + sys_19: -4.82318065e-06 + sys_20: -1.87770733e-06 + sys_21: -3.05874859e-06 + sys_22: -1.16556899e-06 + sys_23: -1.50372571e-07 + sys_24: -4.02190508e-06 + sys_25: 1.18896942e-06 + sys_26: -2.77741941e-08 + sys_27: 1.12644018e-07 + sys_28: -4.18798974e-08 + sys_29: -3.19008532e-08 + sys_30: 7.52746031e-08 + sys_31: -1.31813704e-07 + sys_32: -1.30893869e-07 + sys_33: -2.36558528e-07 + sys_34: 3.83232168e-07 + sys_35: 6.28947689e-10 diff --git a/nnpdf_data/nnpdf_data/commondata/STAR-2015_2JET_200GEV_MIDRAP/uncertainties_SS.yaml b/nnpdf_data/nnpdf_data/commondata/STAR-2015_2JET_200GEV_MIDRAP/uncertainties_SS.yaml index bcc8a67ff3..f06372019f 100644 --- a/nnpdf_data/nnpdf_data/commondata/STAR-2015_2JET_200GEV_MIDRAP/uncertainties_SS.yaml +++ b/nnpdf_data/nnpdf_data/commondata/STAR-2015_2JET_200GEV_MIDRAP/uncertainties_SS.yaml @@ -153,268 +153,268 @@ definitions: type: STAR2015JETunc35 bins: - lumi: 0.0007 - pol: 0.0004331 - sys_0: 2.566966489574668e-05 - sys_1: -3.697387391271956e-06 - sys_2: 1.4226288147547051e-05 - sys_3: -1.587696093123796e-06 - sys_4: -2.063129836644584e-05 - sys_5: 5.4808114603772904e-05 - sys_6: 2.074330490821976e-05 - sys_7: 3.6235693904010194e-05 - sys_8: -1.686162755152075e-05 - sys_9: 6.557213744945281e-05 - sys_10: 3.7639299874812675e-05 - sys_11: -2.6943224667762313e-06 - sys_12: 3.699717309378812e-05 - sys_13: -0.0001791243805086342 - sys_14: 0.00013638219558771608 - sys_15: -0.0003437538964889519 - sys_16: -0.0001515268018695477 - sys_17: -0.0026647775496261078 - sys_18: -0.002242046456090777 - sys_19: 0.0011310034859324178 - sys_20: 0.0002415601538107008 - sys_21: 0.00024789879393943685 - sys_22: -0.00017370082147642038 - sys_23: -1.3106478019233967e-05 - sys_24: 4.991447434008557e-05 - sys_25: -1.8038727104448173e-05 - sys_26: 2.5625710216625103e-06 - sys_27: -3.0538329417589186e-05 - sys_28: -1.80465405678748e-05 - sys_29: 1.283612113054203e-05 - sys_30: 3.209764127503353e-05 - sys_31: 8.522508272710321e-06 - sys_32: -3.6197012358371534e-05 - sys_33: 2.9209993229847754e-05 - sys_34: -6.659931374164751e-06 - sys_35: -8.570177027127835e-06 + pol: 4.33100000e-04 + sys_0: 2.56696649e-05 + sys_1: -3.69738739e-06 + sys_2: 1.42262881e-05 + sys_3: -1.58769609e-06 + sys_4: -2.06312984e-05 + sys_5: 5.48081146e-05 + sys_6: 2.07433049e-05 + sys_7: 3.62356939e-05 + sys_8: -1.68616276e-05 + sys_9: 6.55721374e-05 + sys_10: 3.76392999e-05 + sys_11: -2.69432247e-06 + sys_12: 3.69971731e-05 + sys_13: -1.79124381e-04 + sys_14: 1.36382196e-04 + sys_15: -3.43753896e-04 + sys_16: -1.51526802e-04 + sys_17: -2.66477755e-03 + sys_18: -2.24204646e-03 + sys_19: 1.13100349e-03 + sys_20: 2.41560154e-04 + sys_21: 2.47898794e-04 + sys_22: -1.73700821e-04 + sys_23: -1.31064780e-05 + sys_24: 4.99144743e-05 + sys_25: -1.80387271e-05 + sys_26: 2.56257102e-06 + sys_27: -3.05383294e-05 + sys_28: -1.80465406e-05 + sys_29: 1.28361211e-05 + sys_30: 3.20976413e-05 + sys_31: 8.52250827e-06 + sys_32: -3.61970124e-05 + sys_33: 2.92099932e-05 + sys_34: -6.65993137e-06 + sys_35: -8.57017703e-06 - lumi: 0.0007 - pol: 0.00029889999999999995 - sys_0: 2.6591504401058166e-05 - sys_1: -4.36964136128504e-06 - sys_2: 1.3190507389668528e-05 - sys_3: -2.2007684696551453e-06 - sys_4: -2.1884649199892404e-05 - sys_5: 5.2342634743839624e-05 - sys_6: 1.8925736846189386e-05 - sys_7: 3.466559918529136e-05 - sys_8: -1.5270726921585217e-05 - sys_9: 6.055928873197284e-05 - sys_10: 3.8481417491246374e-05 - sys_11: 1.5523799342321533e-06 - sys_12: 3.294809036857975e-05 - sys_13: -0.00013390232352248783 - sys_14: 0.0001025586671442542 - sys_15: -0.000127402135883074 - sys_16: -5.724112396431139e-05 - sys_17: -0.00044704359399625225 - sys_18: -2.8641515431410144e-05 - sys_19: -0.0001518119649285223 - sys_20: -0.000271193574334644 - sys_21: -0.0008693132822396311 - sys_22: 0.0026373703908254735 - sys_23: -0.00033214340712353017 - sys_24: 0.0002924793344150888 - sys_25: 0.00018349645342314726 - sys_26: -1.1576204701356659e-05 - sys_27: -4.2933746504493824e-05 - sys_28: -1.820110468457177e-05 - sys_29: 8.362367791353124e-05 - sys_30: 4.8392156138508766e-05 - sys_31: 3.360724217356118e-05 - sys_32: -6.644264483764e-05 - sys_33: 5.753547605714686e-05 - sys_34: 0.00010370806390433971 - sys_35: 2.0353476471146734e-05 + pol: 2.98900000e-04 + sys_0: 2.65915044e-05 + sys_1: -4.36964136e-06 + sys_2: 1.31905074e-05 + sys_3: -2.20076847e-06 + sys_4: -2.18846492e-05 + sys_5: 5.23426347e-05 + sys_6: 1.89257368e-05 + sys_7: 3.46655992e-05 + sys_8: -1.52707269e-05 + sys_9: 6.05592887e-05 + sys_10: 3.84814175e-05 + sys_11: 1.55237993e-06 + sys_12: 3.29480904e-05 + sys_13: -1.33902324e-04 + sys_14: 1.02558667e-04 + sys_15: -1.27402136e-04 + sys_16: -5.72411240e-05 + sys_17: -4.47043594e-04 + sys_18: -2.86415154e-05 + sys_19: -1.51811965e-04 + sys_20: -2.71193574e-04 + sys_21: -8.69313282e-04 + sys_22: 2.63737039e-03 + sys_23: -3.32143407e-04 + sys_24: 2.92479334e-04 + sys_25: 1.83496453e-04 + sys_26: -1.15762047e-05 + sys_27: -4.29337465e-05 + sys_28: -1.82011047e-05 + sys_29: 8.36236779e-05 + sys_30: 4.83921561e-05 + sys_31: 3.36072422e-05 + sys_32: -6.64426448e-05 + sys_33: 5.75354761e-05 + sys_34: 1.03708064e-04 + sys_35: 2.03534765e-05 - lumi: 0.0007 - pol: 0.00010369999999999999 - sys_0: 3.3705793397645024e-05 - sys_1: -5.572095760395687e-06 - sys_2: 1.7736395742336986e-05 - sys_3: 7.861900165996692e-07 - sys_4: -2.8669697074327313e-05 - sys_5: 7.346232207308176e-05 - sys_6: 2.222914788953527e-05 - sys_7: 6.256606659189976e-05 - sys_8: -2.301344785729789e-05 - sys_9: 8.52417716915156e-05 - sys_10: 8.239984878925952e-05 - sys_11: 4.229658533069495e-06 - sys_12: 0.00010783530257733871 - sys_13: -0.0002350591916116572 - sys_14: 0.0003137680885807154 - sys_15: -0.00047196800507249973 - sys_16: -2.066147121384525e-05 - sys_17: -0.0019243124252554986 - sys_18: 0.0011186116690490413 - sys_19: -0.002502362651504459 - sys_20: 0.000923454991641968 - sys_21: 0.0005656226587210358 - sys_22: -0.00010428946984759036 - sys_23: 8.200380368829056e-06 - sys_24: -1.5051785061027255e-05 - sys_25: 0.0002154377367999784 - sys_26: -1.455807223296598e-05 - sys_27: -1.0273045941919985e-05 - sys_28: -3.140659290373624e-06 - sys_29: 7.633639769076748e-05 - sys_30: 1.5232676481138204e-05 - sys_31: 1.7642083990228643e-05 - sys_32: -2.6042857530990728e-05 - sys_33: -6.907519529268795e-06 - sys_34: 0.00014131733018019627 - sys_35: 3.17700877096571e-05 + pol: 1.03700000e-04 + sys_0: 3.37057934e-05 + sys_1: -5.57209576e-06 + sys_2: 1.77363957e-05 + sys_3: 7.86190017e-07 + sys_4: -2.86696971e-05 + sys_5: 7.34623221e-05 + sys_6: 2.22291479e-05 + sys_7: 6.25660666e-05 + sys_8: -2.30134479e-05 + sys_9: 8.52417717e-05 + sys_10: 8.23998488e-05 + sys_11: 4.22965853e-06 + sys_12: 1.07835303e-04 + sys_13: -2.35059192e-04 + sys_14: 3.13768089e-04 + sys_15: -4.71968005e-04 + sys_16: -2.06614712e-05 + sys_17: -1.92431243e-03 + sys_18: 1.11861167e-03 + sys_19: -2.50236265e-03 + sys_20: 9.23454992e-04 + sys_21: 5.65622659e-04 + sys_22: -1.04289470e-04 + sys_23: 8.20038037e-06 + sys_24: -1.50517851e-05 + sys_25: 2.15437737e-04 + sys_26: -1.45580722e-05 + sys_27: -1.02730459e-05 + sys_28: -3.14065929e-06 + sys_29: 7.63363977e-05 + sys_30: 1.52326765e-05 + sys_31: 1.76420840e-05 + sys_32: -2.60428575e-05 + sys_33: -6.90751953e-06 + sys_34: 1.41317330e-04 + sys_35: 3.17700877e-05 - lumi: 0.0007 - pol: 0.0008356999999999999 - sys_0: 3.404479651201234e-05 - sys_1: -1.2355804507632997e-05 - sys_2: 2.175803535373425e-05 - sys_3: 2.8673525082337993e-06 - sys_4: -4.500086700329217e-05 - sys_5: 0.00011660353715517645 - sys_6: 2.3670615807233838e-05 - sys_7: 0.0001365409182090625 - sys_8: -2.1338729048704342e-05 - sys_9: 0.00018600095090144704 - sys_10: 0.0002847662785624824 - sys_11: -4.505609870055931e-05 - sys_12: 0.0011124363919218427 - sys_13: -0.004920999210457798 - sys_14: -0.0008069098617898535 - sys_15: 0.00045103059700188754 - sys_16: -0.00018989455585764512 - sys_17: 0.00035653799441311504 - sys_18: -0.00029336336509346576 - sys_19: -9.251741184978314e-05 - sys_20: 0.00011950286802132251 - sys_21: 0.0001825180984202018 - sys_22: 3.100269465541296e-05 - sys_23: 4.5268594884221596e-05 - sys_24: -0.00011831061665908989 - sys_25: 0.00014926715557952042 - sys_26: -5.845042505503723e-06 - sys_27: 4.571630777899279e-06 - sys_28: 4.860552522653371e-07 - sys_29: 2.9802330985576475e-05 - sys_30: -1.2789117464637234e-06 - sys_31: -3.4403598351760967e-06 - sys_32: -5.481509591697848e-07 - sys_33: -4.256851831817424e-05 - sys_34: 9.532895492683928e-05 - sys_35: 1.969159257057692e-05 + pol: 8.35700000e-04 + sys_0: 3.40447965e-05 + sys_1: -1.23558045e-05 + sys_2: 2.17580354e-05 + sys_3: 2.86735251e-06 + sys_4: -4.50008670e-05 + sys_5: 1.16603537e-04 + sys_6: 2.36706158e-05 + sys_7: 1.36540918e-04 + sys_8: -2.13387290e-05 + sys_9: 1.86000951e-04 + sys_10: 2.84766279e-04 + sys_11: -4.50560987e-05 + sys_12: 1.11243639e-03 + sys_13: -4.92099921e-03 + sys_14: -8.06909862e-04 + sys_15: 4.51030597e-04 + sys_16: -1.89894556e-04 + sys_17: 3.56537994e-04 + sys_18: -2.93363365e-04 + sys_19: -9.25174118e-05 + sys_20: 1.19502868e-04 + sys_21: 1.82518098e-04 + sys_22: 3.10026947e-05 + sys_23: 4.52685949e-05 + sys_24: -1.18310617e-04 + sys_25: 1.49267156e-04 + sys_26: -5.84504251e-06 + sys_27: 4.57163078e-06 + sys_28: 4.86055252e-07 + sys_29: 2.98023310e-05 + sys_30: -1.27891175e-06 + sys_31: -3.44035984e-06 + sys_32: -5.48150959e-07 + sys_33: -4.25685183e-05 + sys_34: 9.53289549e-05 + sys_35: 1.96915926e-05 - lumi: 0.0007 - pol: 0.0019276000000000002 - sys_0: 5.464114054645167e-05 - sys_1: -3.0620954891859995e-05 - sys_2: 4.0415840571797475e-05 - sys_3: 1.532742742634746e-05 - sys_4: -0.00017872619670486635 - sys_5: 0.0004437652493603823 - sys_6: 5.4980238005319185e-06 - sys_7: 0.000886937198728706 - sys_8: 0.00018793036610370158 - sys_9: 0.00798135211666991 - sys_10: -0.0010314352699320136 - sys_11: 0.0005351754359914419 - sys_12: -0.0006518098322777591 - sys_13: 0.0001469770726412067 - sys_14: -0.00021063058929365956 - sys_15: 0.0003206195984885657 - sys_16: -0.00023312036984819205 - sys_17: 7.918357935504453e-05 - sys_18: -0.00014539092960515665 - sys_19: -0.00010207566860980935 - sys_20: 1.6632069293137227e-05 - sys_21: 6.385683411940295e-05 - sys_22: 2.784384855735369e-05 - sys_23: 3.464264672499842e-05 - sys_24: -0.00011620766744040155 - sys_25: 6.444844243918978e-05 - sys_26: -1.591277681462906e-06 - sys_27: 2.8556250400605273e-06 - sys_28: 3.6434866929503136e-07 - sys_29: 4.992327569534718e-06 - sys_30: -9.889262034960041e-07 - sys_31: -4.677827812804312e-06 - sys_32: 2.1810152788053887e-06 - sys_33: -1.8515677888562326e-05 - sys_34: 2.9284153306521377e-05 - sys_35: 5.83734458534303e-06 + pol: 1.92760000e-03 + sys_0: 5.46411405e-05 + sys_1: -3.06209549e-05 + sys_2: 4.04158406e-05 + sys_3: 1.53274274e-05 + sys_4: -1.78726197e-04 + sys_5: 4.43765249e-04 + sys_6: 5.49802380e-06 + sys_7: 8.86937199e-04 + sys_8: 1.87930366e-04 + sys_9: 7.98135212e-03 + sys_10: -1.03143527e-03 + sys_11: 5.35175436e-04 + sys_12: -6.51809832e-04 + sys_13: 1.46977073e-04 + sys_14: -2.10630589e-04 + sys_15: 3.20619598e-04 + sys_16: -2.33120370e-04 + sys_17: 7.91835794e-05 + sys_18: -1.45390930e-04 + sys_19: -1.02075669e-04 + sys_20: 1.66320693e-05 + sys_21: 6.38568341e-05 + sys_22: 2.78438486e-05 + sys_23: 3.46426467e-05 + sys_24: -1.16207667e-04 + sys_25: 6.44484424e-05 + sys_26: -1.59127768e-06 + sys_27: 2.85562504e-06 + sys_28: 3.64348669e-07 + sys_29: 4.99232757e-06 + sys_30: -9.88926203e-07 + sys_31: -4.67782781e-06 + sys_32: 2.18101528e-06 + sys_33: -1.85156779e-05 + sys_34: 2.92841533e-05 + sys_35: 5.83734459e-06 - lumi: 0.0007 - pol: 0.0014151999999999997 - sys_0: 0.00030710211313679894 - sys_1: -0.00035077514334488664 - sys_2: 0.0002562772739118633 - sys_3: 0.0006696767213729979 - sys_4: -0.0020704231381368753 - sys_5: 0.008849667525284951 - sys_6: 0.007606687954749023 - sys_7: -0.0020343884304422953 - sys_8: -0.0011899493886719688 - sys_9: -0.00040555205669531847 - sys_10: -0.0005602587449578526 - sys_11: 0.001077961761088935 - sys_12: -0.0004106205988530096 - sys_13: 3.227927534993302e-07 - sys_14: -8.847654536710597e-05 - sys_15: 0.00022386635784994784 - sys_16: -0.0001812973941667103 - sys_17: 4.996441530855965e-06 - sys_18: -5.112819029925054e-05 - sys_19: -5.866590347958458e-05 - sys_20: -1.622401769882936e-05 - sys_21: -6.884067616954685e-06 - sys_22: -1.842909404577852e-06 - sys_23: 7.308359196850772e-06 - sys_24: -4.661654866142108e-05 - sys_25: 1.861016291820023e-05 - sys_26: -4.3726589029258293e-07 - sys_27: 1.4200305711980435e-06 - sys_28: -8.067098550157468e-08 - sys_29: 5.766010834360413e-07 - sys_30: 3.63352063487532e-08 - sys_31: -1.8040159269668269e-06 - sys_32: 3.0226959538025414e-07 - sys_33: -4.149713509881106e-06 - sys_34: 6.091466180921278e-06 - sys_35: 1.1407411378472316e-06 + pol: 1.41520000e-03 + sys_0: 3.07102113e-04 + sys_1: -3.50775143e-04 + sys_2: 2.56277274e-04 + sys_3: 6.69676721e-04 + sys_4: -2.07042314e-03 + sys_5: 8.84966753e-03 + sys_6: 7.60668795e-03 + sys_7: -2.03438843e-03 + sys_8: -1.18994939e-03 + sys_9: -4.05552057e-04 + sys_10: -5.60258745e-04 + sys_11: 1.07796176e-03 + sys_12: -4.10620599e-04 + sys_13: 3.22792753e-07 + sys_14: -8.84765454e-05 + sys_15: 2.23866358e-04 + sys_16: -1.81297394e-04 + sys_17: 4.99644153e-06 + sys_18: -5.11281903e-05 + sys_19: -5.86659035e-05 + sys_20: -1.62240177e-05 + sys_21: -6.88406762e-06 + sys_22: -1.84290940e-06 + sys_23: 7.30835920e-06 + sys_24: -4.66165487e-05 + sys_25: 1.86101629e-05 + sys_26: -4.37265890e-07 + sys_27: 1.42003057e-06 + sys_28: -8.06709855e-08 + sys_29: 5.76601083e-07 + sys_30: 3.63352063e-08 + sys_31: -1.80401593e-06 + sys_32: 3.02269595e-07 + sys_33: -4.14971351e-06 + sys_34: 6.09146618e-06 + sys_35: 1.14074114e-06 - lumi: 0.0007 - pol: 0.0013908000000000002 - sys_0: 0.04021217259960857 - sys_1: 0.011067171099206099 - sys_2: -0.0017416865031044753 - sys_3: -0.0037582018101186268 - sys_4: 0.0009561788929469973 - sys_5: -0.0005023331365971161 - sys_6: 0.0005129899620712557 - sys_7: 0.0001020334616947074 - sys_8: -0.00015850575517120758 - sys_9: -1.4026407568519962e-05 - sys_10: -2.8151115451099387e-05 - sys_11: 6.754193200190864e-05 - sys_12: -1.9254775640780332e-05 - sys_13: -5.358580547333217e-08 - sys_14: -3.8833274459761175e-06 - sys_15: 7.623114440322249e-06 - sys_16: -4.5260519880558666e-06 - sys_17: 2.202499168198994e-06 - sys_18: -2.0861615029363296e-06 - sys_19: -1.739063786039995e-06 - sys_20: -2.5119089326369435e-07 - sys_21: -1.0150398803147086e-06 - sys_22: -1.152432718790942e-06 - sys_23: -4.857978881876611e-07 - sys_24: -2.0738794703058585e-06 - sys_25: 8.080610887024622e-07 - sys_26: 1.0213905463558677e-08 - sys_27: 6.84561518545065e-08 - sys_28: -9.363925936513953e-08 - sys_29: 2.1710453159201195e-08 - sys_30: 2.0820040688301527e-07 - sys_31: 1.1228233543209973e-08 - sys_32: -3.968246531722725e-07 - sys_33: -6.644355314976771e-10 - sys_34: 2.7920664968774416e-07 - sys_35: -6.980638791208676e-08 + pol: 1.39080000e-03 + sys_0: 4.02121726e-02 + sys_1: 1.10671711e-02 + sys_2: -1.74168650e-03 + sys_3: -3.75820181e-03 + sys_4: 9.56178893e-04 + sys_5: -5.02333137e-04 + sys_6: 5.12989962e-04 + sys_7: 1.02033462e-04 + sys_8: -1.58505755e-04 + sys_9: -1.40264076e-05 + sys_10: -2.81511155e-05 + sys_11: 6.75419320e-05 + sys_12: -1.92547756e-05 + sys_13: -5.35858055e-08 + sys_14: -3.88332745e-06 + sys_15: 7.62311444e-06 + sys_16: -4.52605199e-06 + sys_17: 2.20249917e-06 + sys_18: -2.08616150e-06 + sys_19: -1.73906379e-06 + sys_20: -2.51190893e-07 + sys_21: -1.01503988e-06 + sys_22: -1.15243272e-06 + sys_23: -4.85797888e-07 + sys_24: -2.07387947e-06 + sys_25: 8.08061089e-07 + sys_26: 1.02139055e-08 + sys_27: 6.84561519e-08 + sys_28: -9.36392594e-08 + sys_29: 2.17104532e-08 + sys_30: 2.08200407e-07 + sys_31: 1.12282335e-08 + sys_32: -3.96824653e-07 + sys_33: -6.64435531e-10 + sys_34: 2.79206650e-07 + sys_35: -6.98063879e-08 diff --git a/nnpdf_data/nnpdf_data/commondata/STAR_WMWP_510GEV/filter.py b/nnpdf_data/nnpdf_data/commondata/STAR_WMWP_510GEV/filter.py index 425d311b46..d07f25da46 100644 --- a/nnpdf_data/nnpdf_data/commondata/STAR_WMWP_510GEV/filter.py +++ b/nnpdf_data/nnpdf_data/commondata/STAR_WMWP_510GEV/filter.py @@ -9,6 +9,10 @@ import pandas as pd import yaml +from nnpdf_data.filter_utils.utils import prettify_float + +yaml.add_representer(float, prettify_float) + ECM = 510 MW = 80.398 POL_UNC = 0.033 diff --git a/nnpdf_data/nnpdf_data/commondata/STAR_WMWP_510GEV/kinematics_wm.yaml b/nnpdf_data/nnpdf_data/commondata/STAR_WMWP_510GEV/kinematics_wm.yaml index ed2bb8fb8f..f5042a012f 100644 --- a/nnpdf_data/nnpdf_data/commondata/STAR_WMWP_510GEV/kinematics_wm.yaml +++ b/nnpdf_data/nnpdf_data/commondata/STAR_WMWP_510GEV/kinematics_wm.yaml @@ -5,7 +5,7 @@ bins: max: null M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null @@ -17,7 +17,7 @@ bins: max: null M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null @@ -29,7 +29,7 @@ bins: max: null M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null @@ -41,7 +41,7 @@ bins: max: null M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null @@ -53,7 +53,7 @@ bins: max: null M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null @@ -65,7 +65,7 @@ bins: max: null M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null diff --git a/nnpdf_data/nnpdf_data/commondata/STAR_WMWP_510GEV/kinematics_wp.yaml b/nnpdf_data/nnpdf_data/commondata/STAR_WMWP_510GEV/kinematics_wp.yaml index bc0b9b5201..080c21a07a 100644 --- a/nnpdf_data/nnpdf_data/commondata/STAR_WMWP_510GEV/kinematics_wp.yaml +++ b/nnpdf_data/nnpdf_data/commondata/STAR_WMWP_510GEV/kinematics_wp.yaml @@ -5,7 +5,7 @@ bins: max: null M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null @@ -17,7 +17,7 @@ bins: max: null M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null @@ -29,7 +29,7 @@ bins: max: null M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null @@ -41,7 +41,7 @@ bins: max: null M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null @@ -53,7 +53,7 @@ bins: max: null M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null @@ -65,7 +65,7 @@ bins: max: null M2: min: null - mid: 6463.838403999999 + mid: 6.46383840e+03 max: null sqrts: min: null diff --git a/nnpdf_data/nnpdf_data/commondata/STAR_WMWP_510GEV/uncertainties_wm.yaml b/nnpdf_data/nnpdf_data/commondata/STAR_WMWP_510GEV/uncertainties_wm.yaml index 9361ba7be4..7c9e5d1023 100644 --- a/nnpdf_data/nnpdf_data/commondata/STAR_WMWP_510GEV/uncertainties_wm.yaml +++ b/nnpdf_data/nnpdf_data/commondata/STAR_WMWP_510GEV/uncertainties_wm.yaml @@ -20,13 +20,13 @@ bins: pol: 0.00858 - stat: 0.056 sys: 0.001 - pol: 0.009273000000000002 + pol: 9.27300000e-03 - stat: 0.056 sys: 0.002 pol: 0.007887 - stat: 0.051 sys: 0.004 - pol: 0.012705000000000001 + pol: 1.27050000e-02 - stat: 0.148 sys: 0.002 pol: 0.006765 diff --git a/nnpdf_data/nnpdf_data/commondata/STAR_WMWP_510GEV/uncertainties_wp.yaml b/nnpdf_data/nnpdf_data/commondata/STAR_WMWP_510GEV/uncertainties_wp.yaml index b0904888ff..c8b800408b 100644 --- a/nnpdf_data/nnpdf_data/commondata/STAR_WMWP_510GEV/uncertainties_wp.yaml +++ b/nnpdf_data/nnpdf_data/commondata/STAR_WMWP_510GEV/uncertainties_wp.yaml @@ -14,7 +14,7 @@ definitions: bins: - stat: 0.145 sys: 0.012 - pol: 0.010296000000000001 + pol: 1.02960000e-02 - stat: 0.03 sys: 0.011 pol: 0.008283 @@ -26,7 +26,7 @@ bins: pol: 0.013596 - stat: 0.029 sys: 0.013 - pol: 0.017622000000000002 + pol: 1.76220000e-02 - stat: 0.14 sys: 0.014 pol: 0.015906 diff --git a/nnpdf_data/nnpdf_data/commondata/ZEUS_1JET_300GEV_38P6PB-1_DIF/data_q2_et.yaml b/nnpdf_data/nnpdf_data/commondata/ZEUS_1JET_300GEV_38P6PB-1_DIF/data_q2_et.yaml index b4ca3edf55..4f67ef1238 100644 --- a/nnpdf_data/nnpdf_data/commondata/ZEUS_1JET_300GEV_38P6PB-1_DIF/data_q2_et.yaml +++ b/nnpdf_data/nnpdf_data/commondata/ZEUS_1JET_300GEV_38P6PB-1_DIF/data_q2_et.yaml @@ -3,17 +3,17 @@ data_central: - 12.91 - 3.73 - 0.929 -- 0.019799999999999998 +- 1.98000000e-02 - 17.165 - 8.525 - 3.475 -- 0.9754999999999999 +- 9.75500000e-01 - 0.02785 - 7.6 - 3.805 - 1.81 - 0.6755 -- 0.027549999999999998 +- 2.75500000e-02 - 2.77 - 1.865 - 1.0345 @@ -23,9 +23,9 @@ data_central: - 0.7615 - 0.309 - 0.1915 -- 0.015399999999999999 +- 1.54000000e-02 - 0.2555 - 0.1505 - 0.106 - 0.0625 -- 0.0039499999999999995 +- 3.95000000e-03 diff --git a/nnpdf_data/nnpdf_data/commondata/ZEUS_1JET_300GEV_38P6PB-1_DIF/filter.py b/nnpdf_data/nnpdf_data/commondata/ZEUS_1JET_300GEV_38P6PB-1_DIF/filter.py index 66c931644a..c6497ca740 100644 --- a/nnpdf_data/nnpdf_data/commondata/ZEUS_1JET_300GEV_38P6PB-1_DIF/filter.py +++ b/nnpdf_data/nnpdf_data/commondata/ZEUS_1JET_300GEV_38P6PB-1_DIF/filter.py @@ -1,7 +1,10 @@ import yaml +from nnpdf_data.filter_utils.utils import prettify_float from nnpdf_data.filter_utils.utils import symmetrize_errors as se +yaml.add_representer(float, prettify_float) + def processData(): with open('metadata.yaml', 'r') as file: diff --git a/nnpdf_data/nnpdf_data/commondata/ZEUS_1JET_300GEV_38P6PB-1_DIF/uncertainties_q2_et.yaml b/nnpdf_data/nnpdf_data/commondata/ZEUS_1JET_300GEV_38P6PB-1_DIF/uncertainties_q2_et.yaml index 3b85d4a9ca..b056b58e9b 100644 --- a/nnpdf_data/nnpdf_data/commondata/ZEUS_1JET_300GEV_38P6PB-1_DIF/uncertainties_q2_et.yaml +++ b/nnpdf_data/nnpdf_data/commondata/ZEUS_1JET_300GEV_38P6PB-1_DIF/uncertainties_q2_et.yaml @@ -13,92 +13,92 @@ definitions: type: CORR bins: - stat: 0.71 - sys: 1.415017667734223 - jet_es: 1.3651648252134245 + sys: 1.41501767e+00 + jet_es: 1.36516483e+00 - stat: 0.32 - sys: 0.3023243291566195 - jet_es: 0.7105631569396207 + sys: 3.02324329e-01 + jet_es: 7.10563157e-01 - stat: 0.16 - sys: 0.049749371855330994 - jet_es: 0.23510635891017495 + sys: 4.97493719e-02 + jet_es: 2.35106359e-01 - stat: 0.059 - sys: 0.058455110982701924 - jet_es: 0.05367494760127857 + sys: 5.84551110e-02 + jet_es: 5.36749476e-02 - stat: 0.0027 - sys: 0.00017320508075688773 + sys: 1.73205081e-04 jet_es: 0.0008 - stat: 0.52 - sys: 0.447744346697979 - jet_es: 0.621449917531574 + sys: 4.47744347e-01 + jet_es: 6.21449918e-01 - stat: 0.28 - sys: 0.20414455662593603 - jet_es: 0.3545419580247167 + sys: 2.04144557e-01 + jet_es: 3.54541958e-01 - stat: 0.18 - sys: 0.28478061731796284 - jet_es: 0.16635804759614123 + sys: 2.84780617e-01 + jet_es: 1.66358048e-01 - stat: 0.072 - sys: 0.07742577090349181 - jet_es: 0.0596992462263972 + sys: 7.74257709e-02 + jet_es: 5.96992462e-02 - stat: 0.0036 - sys: 0.0027184554438136376 - jet_es: 0.0012519984025548912 + sys: 2.71845544e-03 + jet_es: 1.25199840e-03 - stat: 0.36 - sys: 0.45063843599941633 - jet_es: 0.23764469276632288 + sys: 4.50638436e-01 + jet_es: 2.37644693e-01 - stat: 0.18 - sys: 0.082915619758885 - jet_es: 0.1307669683062202 + sys: 8.29156198e-02 + jet_es: 1.30766968e-01 - stat: 0.13 - sys: 0.11661903789690602 + sys: 1.16619038e-01 jet_es: 0.06 - stat: 0.062 - sys: 0.07139327699440613 - jet_es: 0.029508473359359 + sys: 7.13932770e-02 + jet_es: 2.95084734e-02 - stat: 0.0037 - sys: 0.0009273618495495704 - jet_es: 0.0012519984025548912 + sys: 9.27361850e-04 + jet_es: 1.25199840e-03 - stat: 0.22 - sys: 0.04898979485566356 - jet_es: 0.06164414002968977 + sys: 4.89897949e-02 + jet_es: 6.16441400e-02 - stat: 0.14 - sys: 0.04092676385936225 - jet_es: 0.042426406871192854 + sys: 4.09267639e-02 + jet_es: 4.24264069e-02 - stat: 0.099 - sys: 0.0653356717268599 - jet_es: 0.028035691537752375 + sys: 6.53356717e-02 + jet_es: 2.80356915e-02 - stat: 0.037 - sys: 0.025357444666211936 - jet_es: 0.009733961166965892 + sys: 2.53574447e-02 + jet_es: 9.73396117e-03 - stat: 0.003 - sys: 0.003623189202898463 + sys: 3.62318920e-03 jet_es: 0.0006 - stat: 0.15 - sys: 0.0852936105461599 - jet_es: 0.016583123951777 + sys: 8.52936105e-02 + jet_es: 1.65831240e-02 - stat: 0.081 - sys: 0.10141005867269774 - jet_es: 0.014517231140957975 + sys: 1.01410059e-01 + jet_es: 1.45172311e-02 - stat: 0.051 - sys: 0.023680160472429237 - jet_es: 0.008529361054615991 + sys: 2.36801605e-02 + jet_es: 8.52936105e-03 - stat: 0.035 - sys: 0.03412843389316304 + sys: 3.41284339e-02 jet_es: 0.002 - stat: 0.0032 - sys: 0.0036041642581880204 + sys: 3.60416426e-03 jet_es: 0.0007 - stat: 0.073 - sys: 0.028508770580296865 - jet_es: 0.007348469228349534 + sys: 2.85087706e-02 + jet_es: 7.34846923e-03 - stat: 0.042 - sys: 0.02801338965566288 - jet_es: 0.005744562646538029 + sys: 2.80133897e-02 + jet_es: 5.74456265e-03 - stat: 0.032 - sys: 0.004974937185533101 - jet_es: 0.004330127018922193 + sys: 4.97493719e-03 + jet_es: 4.33012702e-03 - stat: 0.018 - sys: 0.01299038105676658 + sys: 1.29903811e-02 jet_es: 0.001 - stat: 0.0014 - sys: 0.000606217782649107 + sys: 6.06217783e-04 jet_es: 0.0001 diff --git a/nnpdf_data/nnpdf_data/commondata/ZEUS_1JET_319GEV_82PB-1_DIF/data_q2_et.yaml b/nnpdf_data/nnpdf_data/commondata/ZEUS_1JET_319GEV_82PB-1_DIF/data_q2_et.yaml index 78fbf5814e..293dea82cc 100644 --- a/nnpdf_data/nnpdf_data/commondata/ZEUS_1JET_319GEV_82PB-1_DIF/data_q2_et.yaml +++ b/nnpdf_data/nnpdf_data/commondata/ZEUS_1JET_319GEV_82PB-1_DIF/data_q2_et.yaml @@ -4,28 +4,28 @@ data_central: - 3.73 - 0.833 - 0.01595 -- 18.439999999999998 +- 1.84400000e+01 - 8.73 - 3.32 -- 0.8865000000000001 +- 8.86500000e-01 - 0.02425 -- 8.844999999999999 -- 4.680000000000001 +- 8.84500000e+00 +- 4.68000000e+00 - 2.2475 - 0.701 - 0.0335 -- 3.3049999999999997 +- 3.30500000e+00 - 1.975 - 1.128 - 0.4875 - 0.02665 - 1.2975 -- 0.8584999999999999 +- 8.58500000e-01 - 0.615 - 0.2435 -- 0.018449999999999998 +- 1.84500000e-02 - 0.2275 - 0.2585 - 0.121 -- 0.07050000000000001 +- 7.05000000e-02 - 0.0115 diff --git a/nnpdf_data/nnpdf_data/commondata/ZEUS_1JET_319GEV_82PB-1_DIF/filter.py b/nnpdf_data/nnpdf_data/commondata/ZEUS_1JET_319GEV_82PB-1_DIF/filter.py index 9ecf7b5024..07dbfab35b 100644 --- a/nnpdf_data/nnpdf_data/commondata/ZEUS_1JET_319GEV_82PB-1_DIF/filter.py +++ b/nnpdf_data/nnpdf_data/commondata/ZEUS_1JET_319GEV_82PB-1_DIF/filter.py @@ -1,7 +1,10 @@ import yaml +from nnpdf_data.filter_utils.utils import prettify_float from nnpdf_data.filter_utils.utils import symmetrize_errors as se +yaml.add_representer(float, prettify_float) + def processData(): with open('metadata.yaml', 'r') as file: diff --git a/nnpdf_data/nnpdf_data/commondata/ZEUS_1JET_319GEV_82PB-1_DIF/uncertainties_q2_et.yaml b/nnpdf_data/nnpdf_data/commondata/ZEUS_1JET_319GEV_82PB-1_DIF/uncertainties_q2_et.yaml index 58b428814f..9a7b9a05b7 100644 --- a/nnpdf_data/nnpdf_data/commondata/ZEUS_1JET_319GEV_82PB-1_DIF/uncertainties_q2_et.yaml +++ b/nnpdf_data/nnpdf_data/commondata/ZEUS_1JET_319GEV_82PB-1_DIF/uncertainties_q2_et.yaml @@ -14,43 +14,43 @@ definitions: bins: - stat: 0.49 sys: 1.21 - jet_es: 1.7520559351801528 + jet_es: 1.75205594e+00 - stat: 0.22 sys: 0.19 - jet_es: 0.7705193054038296 + jet_es: 7.70519305e-01 - stat: 0.11 sys: 0.15 - jet_es: 0.2615339366124404 + jet_es: 2.61533937e-01 - stat: 0.037 - sys: 0.012519984025548917 - jet_es: 0.05361669516111563 + sys: 1.25199840e-02 + jet_es: 5.36166952e-02 - stat: 0.0014 sys: 0.0027 - jet_es: 0.0010523782589924595 + jet_es: 1.05237826e-03 - stat: 0.38 sys: 0.74 - jet_es: 0.6424951361683604 + jet_es: 6.42495136e-01 - stat: 0.19 sys: 0.3 - jet_es: 0.3402939905434711 + jet_es: 3.40293991e-01 - stat: 0.11 sys: 0.15 - jet_es: 0.16248076809271922 + jet_es: 1.62480768e-01 - stat: 0.042 sys: 0.041 - jet_es: 0.05461455849862745 + jet_es: 5.46145585e-02 - stat: 0.002 sys: 0.0005 - jet_es: 0.0011521718621802911 + jet_es: 1.15217186e-03 - stat: 0.26 sys: 0.34 - jet_es: 0.219260119492807 + jet_es: 2.19260119e-01 - stat: 0.14 sys: 0.19 - jet_es: 0.12083045973594572 + jet_es: 1.20830460e-01 - stat: 0.093 sys: 0.137 - jet_es: 0.0833711580823968 + jet_es: 8.33711581e-02 - stat: 0.039 sys: 0.051 jet_es: 0.026 @@ -59,46 +59,46 @@ bins: jet_es: 0.0019 - stat: 0.16 sys: 0.14 - jet_es: 0.0852936105461599 + jet_es: 8.52936105e-02 - stat: 0.091 sys: 0.077 - jet_es: 0.03047950130825634 + jet_es: 3.04795013e-02 - stat: 0.069 sys: 0.056 - jet_es: 0.02791057147390573 + jet_es: 2.79105715e-02 - stat: 0.034 sys: 0.039 - jet_es: 0.014924811556599298 + jet_es: 1.49248116e-02 - stat: 0.0026 sys: 0.0043 - jet_es: 0.0017226433176952215 + jet_es: 1.72264332e-03 - stat: 0.095 sys: 0.12 - jet_es: 0.028578838324886474 + jet_es: 2.85788383e-02 - stat: 0.06 sys: 0.024 - jet_es: 0.006538348415311011 + jet_es: 6.53834842e-03 - stat: 0.052 sys: 0.07 - jet_es: 0.020445048300260872 + jet_es: 2.04450483e-02 - stat: 0.024 sys: 0.028 - jet_es: 0.007794228634059948 + jet_es: 7.79422863e-03 - stat: 0.0021 sys: 0.0023 - jet_es: 0.00045552167895721496 + jet_es: 4.55521679e-04 - stat: 0.037 sys: 0.091 - jet_es: 0.009205976319760984 + jet_es: 9.20597632e-03 - stat: 0.037 - sys: 0.022511108368980855 - jet_es: 0.0157797338380595 + sys: 2.25111084e-02 + jet_es: 1.57797338e-02 - stat: 0.024 sys: 0.017 - jet_es: 0.004242640687119285 + jet_es: 4.24264069e-03 - stat: 0.013 sys: 0.019 - jet_es: 0.0008660254037844387 + jet_es: 8.66025404e-04 - stat: 0.0022 sys: 0.0042 - jet_es: 0.0002449489742783178 + jet_es: 2.44948974e-04 diff --git a/nnpdf_data/nnpdf_data/commondata/ZEUS_2JET_319GEV_374PB-1_DIF/data_q2_et.yaml b/nnpdf_data/nnpdf_data/commondata/ZEUS_2JET_319GEV_374PB-1_DIF/data_q2_et.yaml index d09e874d52..0a2b789bf9 100644 --- a/nnpdf_data/nnpdf_data/commondata/ZEUS_2JET_319GEV_374PB-1_DIF/data_q2_et.yaml +++ b/nnpdf_data/nnpdf_data/commondata/ZEUS_2JET_319GEV_374PB-1_DIF/data_q2_et.yaml @@ -9,15 +9,15 @@ data_central: - 0.0197 - 1.5085 - 0.6295 -- 0.16720000000000002 +- 1.67200000e-01 - 0.01925 -- 0.7024999999999999 +- 7.02500000e-01 - 0.3525 - 0.09425 - 0.0135 - 0.3485 - 0.1195 -- 0.010409999999999999 -- 0.09985000000000001 -- 0.035250000000000004 +- 1.04100000e-02 +- 9.98500000e-02 +- 3.52500000e-02 - 0.00366 diff --git a/nnpdf_data/nnpdf_data/commondata/ZEUS_2JET_319GEV_374PB-1_DIF/filter.py b/nnpdf_data/nnpdf_data/commondata/ZEUS_2JET_319GEV_374PB-1_DIF/filter.py index 3ab3b10a21..39dd81f9b7 100644 --- a/nnpdf_data/nnpdf_data/commondata/ZEUS_2JET_319GEV_374PB-1_DIF/filter.py +++ b/nnpdf_data/nnpdf_data/commondata/ZEUS_2JET_319GEV_374PB-1_DIF/filter.py @@ -1,7 +1,10 @@ import yaml +from nnpdf_data.filter_utils.utils import prettify_float from nnpdf_data.filter_utils.utils import symmetrize_errors as se +yaml.add_representer(float, prettify_float) + def processData(): with open('metadata.yaml', 'r') as file: diff --git a/nnpdf_data/nnpdf_data/commondata/ZEUS_2JET_319GEV_374PB-1_DIF/uncertainties_q2_et.yaml b/nnpdf_data/nnpdf_data/commondata/ZEUS_2JET_319GEV_374PB-1_DIF/uncertainties_q2_et.yaml index 69f8ad52d8..6b326f7b84 100644 --- a/nnpdf_data/nnpdf_data/commondata/ZEUS_2JET_319GEV_374PB-1_DIF/uncertainties_q2_et.yaml +++ b/nnpdf_data/nnpdf_data/commondata/ZEUS_2JET_319GEV_374PB-1_DIF/uncertainties_q2_et.yaml @@ -13,68 +13,68 @@ definitions: type: CORR bins: - stat: 0.057 - sys: 0.07050354601011215 - jet_es: 0.293667754443691 + sys: 7.05035460e-02 + jet_es: 2.93667754e-01 - stat: 0.028 - sys: 0.0375066660741794 - jet_es: 0.06250399987200819 + sys: 3.75066661e-02 + jet_es: 6.25039999e-02 - stat: 0.012 - sys: 0.012519984025548917 - jet_es: 0.009526279441628824 + sys: 1.25199840e-02 + jet_es: 9.52627944e-03 - stat: 0.0016 - sys: 0.0008529361054615991 - jet_es: 0.0010523782589924595 + sys: 8.52936105e-04 + jet_es: 1.05237826e-03 - stat: 0.046 sys: 0.076 - jet_es: 0.14354354739938677 + jet_es: 1.43543547e-01 - stat: 0.026 sys: 0.011 - jet_es: 0.03766629793329841 + jet_es: 3.76662979e-02 - stat: 0.011 sys: 0.008 - jet_es: 0.0071414284285428505 + jet_es: 7.14142843e-03 - stat: 0.0016 sys: 0.0015 - jet_es: 0.000848528137423857 + jet_es: 8.48528137e-04 - stat: 0.031 - sys: 0.05450458696293368 - jet_es: 0.05861740355901138 + sys: 5.45045870e-02 + jet_es: 5.86174036e-02 - stat: 0.019 - sys: 0.008529361054615991 - jet_es: 0.0220454076850486 + sys: 8.52936105e-03 + jet_es: 2.20454077e-02 - stat: 0.0089 sys: 0.0041 - jet_es: 0.004803123983409131 + jet_es: 4.80312398e-03 - stat: 0.0015 sys: 0.001 - jet_es: 0.0008760707733967616 + jet_es: 8.76070773e-04 - stat: 0.02 sys: 0.017 - jet_es: 0.023595550427993835 + jet_es: 2.35955504e-02 - stat: 0.014 - sys: 0.012519984025548917 - jet_es: 0.010099504938362076 + sys: 1.25199840e-02 + jet_es: 1.00995049e-02 - stat: 0.0064 sys: 0.0063 - jet_es: 0.0025509802037648197 + jet_es: 2.55098020e-03 - stat: 0.0012 - sys: 0.0003570714214271425 - jet_es: 0.000653834841531101 + sys: 3.57071421e-04 + jet_es: 6.53834842e-04 - stat: 0.013 sys: 0.009 - jet_es: 0.005894913061275798 + jet_es: 5.89491306e-03 - stat: 0.0058 - sys: 0.002251110836898086 - jet_es: 0.0026958301133417142 + sys: 2.25111084e-03 + jet_es: 2.69583011e-03 - stat: 0.00097 - sys: 0.0005107837115648855 - jet_es: 0.0004502221673796171 + sys: 5.10783712e-04 + jet_es: 4.50222167e-04 - stat: 0.0076 sys: 0.0092 - jet_es: 0.0009836157786453001 + jet_es: 9.83615779e-04 - stat: 0.0031 - sys: 0.00220454076850486 - jet_es: 0.000653834841531101 + sys: 2.20454077e-03 + jet_es: 6.53834842e-04 - stat: 0.00053 - sys: 0.00019824227601599012 - jet_es: 0.00014282856857085702 + sys: 1.98242276e-04 + jet_es: 1.42828569e-04 diff --git a/nnpdf_data/nnpdf_data/filter_utils/poldata_utils.py b/nnpdf_data/nnpdf_data/filter_utils/poldata_utils.py index 22f8cae683..8e9e7246e6 100644 --- a/nnpdf_data/nnpdf_data/filter_utils/poldata_utils.py +++ b/nnpdf_data/nnpdf_data/filter_utils/poldata_utils.py @@ -5,6 +5,10 @@ import pandas as pd import yaml +from nnpdf_data.filter_utils.utils import prettify_float + +yaml.add_representer(float, prettify_float) + # Definition of various topologies used in Polarized Dijets # NOTE: the observable is symmetric for jet1 and jet2, # so 1 and 2 are not ordered in pT. From 8a27d30c28f88bca31c9477bf2839e3a3850584d Mon Sep 17 00:00:00 2001 From: "Juan M. Cruz-Martinez" Date: Fri, 1 Nov 2024 15:21:04 +0100 Subject: [PATCH 12/22] Update fitbot.yml --- .github/workflows/fitbot.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/fitbot.yml b/.github/workflows/fitbot.yml index 35fa73f78c..0840e9d99d 100644 --- a/.github/workflows/fitbot.yml +++ b/.github/workflows/fitbot.yml @@ -10,7 +10,7 @@ on: env: N3FIT_MAXNREP: 20 # total number of replicas to fit POSTFIT_NREP: 16 # requested replicas for postfit - REFERENCE_SET: NNBOT-da9fed01b-2024-10-23 # reference set for exact results + REFERENCE_SET: NNBOT-b848e128d-2024-11-01 # reference set for exact results STABLE_REFERENCE_SET: NNBOT-c0f99b7b3-2024-02-28 # reference set for last tag CONDA_PY: 312 PYTHONHASHSEED: "0" From 69f42f4f0481fe172493428734f7786355826c49 Mon Sep 17 00:00:00 2001 From: "Juan M. Cruz-Martinez" Date: Fri, 1 Nov 2024 15:23:31 +0100 Subject: [PATCH 13/22] Update check_newcd.yml --- .github/workflows/check_newcd.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/check_newcd.yml b/.github/workflows/check_newcd.yml index f3c07e817e..5c33db7023 100644 --- a/.github/workflows/check_newcd.yml +++ b/.github/workflows/check_newcd.yml @@ -20,7 +20,7 @@ jobs: shell: bash -l {0} run: | here=$PWD - readarray -d '' array < <(find ./nnpdf_data/nnpdf_data/new_commondata -name "filter.py" -print0) + readarray -d '' array < <(find ./nnpdf_data/nnpdf_data/commondata -name "filter.py" -print0) for datname in "${array[@]}"; do dirpath=${datname%/*}; cd $dirpath; python filter.py || exit $?; cd $here; done - name: Check for modified files 🛎️ uses: tj-actions/verify-changed-files@v20 From 8512ddf5c9b75220257971aebe1fc428013c4f3e Mon Sep 17 00:00:00 2001 From: Radonirinaunimi Date: Fri, 1 Nov 2024 17:27:26 +0100 Subject: [PATCH 14/22] Fix Yaml dumping of the EIC Pseudodata --- .../commondata/ATHENA_NC_105GEV_EP/data.yaml | 246 +++--- .../commondata/ATHENA_NC_105GEV_EP/filter.py | 4 + .../ATHENA_NC_105GEV_EP/uncertainties.yaml | 738 +++++++++--------- .../commondata/ATHENA_NC_140GEV_EP/filter.py | 4 + .../commondata/ATHENA_NC_29GEV_EP/data.yaml | 152 ++-- .../commondata/ATHENA_NC_29GEV_EP/filter.py | 4 + .../ATHENA_NC_29GEV_EP/uncertainties.yaml | 456 +++++------ .../commondata/ATHENA_NC_45GEV_EP/data.yaml | 184 ++--- .../commondata/ATHENA_NC_45GEV_EP/filter.py | 4 + .../ATHENA_NC_45GEV_EP/uncertainties.yaml | 552 ++++++------- .../commondata/ATHENA_NC_63GEV_EP/data.yaml | 182 ++--- .../commondata/ATHENA_NC_63GEV_EP/filter.py | 4 + .../ATHENA_NC_63GEV_EP/uncertainties.yaml | 546 ++++++------- .../commondata/EICC_NC_15GEV_EP/data.yaml | 40 +- .../commondata/EICC_NC_15GEV_EP/filter.py | 4 + .../EICC_NC_15GEV_EP/kinematics.yaml | 22 +- .../EICC_NC_15GEV_EP/uncertainties.yaml | 36 +- .../commondata/EICC_NC_22GEV_EP/data.yaml | 40 +- .../commondata/EICC_NC_22GEV_EP/filter.py | 4 + .../EICC_NC_22GEV_EP/kinematics.yaml | 32 +- .../EICC_NC_22GEV_EP/uncertainties.yaml | 36 +- .../commondata/EIC_NC_211GEV_EP/data.yaml | 22 +- .../commondata/EIC_NC_211GEV_EP/filter.py | 4 + .../EIC_NC_211GEV_EP/kinematics.yaml | 20 +- .../EIC_NC_211GEV_EP/uncertainties.yaml | 22 +- .../commondata/EIC_NC_43GEV_EP/data.yaml | 20 +- .../commondata/EIC_NC_43GEV_EP/filter.py | 4 + .../EIC_NC_43GEV_EP/kinematics.yaml | 18 +- .../EIC_NC_43GEV_EP/uncertainties.yaml | 20 +- .../commondata/EIC_NC_67GEV_EP/data.yaml | 20 +- .../commondata/EIC_NC_67GEV_EP/filter.py | 4 + .../EIC_NC_67GEV_EP/kinematics.yaml | 18 +- .../EIC_NC_67GEV_EP/uncertainties.yaml | 20 +- 33 files changed, 1761 insertions(+), 1721 deletions(-) diff --git a/nnpdf_data/nnpdf_data/commondata/ATHENA_NC_105GEV_EP/data.yaml b/nnpdf_data/nnpdf_data/commondata/ATHENA_NC_105GEV_EP/data.yaml index 386b699f8d..00df4830bb 100644 --- a/nnpdf_data/nnpdf_data/commondata/ATHENA_NC_105GEV_EP/data.yaml +++ b/nnpdf_data/nnpdf_data/commondata/ATHENA_NC_105GEV_EP/data.yaml @@ -1,124 +1,124 @@ data_central: -- 0.0030232492667256476 -- 0.002555546843002419 -- 0.0057601463999422215 -- 0.002034588868637695 -- 0.004558456269590243 -- 0.008532582308076646 -- 0.0017279908038945128 -- 0.0033703961980815203 -- 0.006451277170582645 -- 0.010466932984758447 -- 0.0013265331758707064 -- 0.0025590501051209586 -- 0.004795570413674596 -- 0.007735791204031044 -- 0.012224836425224874 -- 0.0010846226765217652 -- 0.0020756968013515716 -- 0.00342249795999119 -- 0.005817355761132647 -- 0.008906418989800935 -- 0.013295759775211337 -- 0.0007582303616102364 -- 0.0014982502854730636 -- 0.002529556455526126 -- 0.004164636624241837 -- 0.006414662909968195 -- 0.010045125193224206 -- 0.014795141156436245 -- 0.0005484376931462637 -- 0.0011719339995933972 -- 0.0019621855490396457 -- 0.0031074112503655248 -- 0.004775355943674676 -- 0.007139891622980082 -- 0.011098209407376257 -- 0.016710878682833046 -- 0.0008882210489093715 -- 0.0015473672218736204 -- 0.002395998266516214 -- 0.0035801901290965304 -- 0.005469990877244589 -- 0.008553882831584961 -- 0.013045288348511439 -- 0.019741213268127285 -- 0.0011170555572520596 -- 0.001732180172703438 -- 0.0029422565201887834 -- 0.0045222497096678695 -- 0.006781903696060579 -- 0.010664131110250361 -- 0.016369598420864023 -- 0.025067783739548977 -- 0.0015564819085647536 -- 0.002393155719935957 -- 0.0034183817956831186 -- 0.0055710852657673655 -- 0.008880682302329709 -- 0.013546789665405769 -- 0.02257514160897749 -- 0.03567920543503588 -- 0.0020013377586011573 -- 0.0031760568752588225 -- 0.004826183395098619 -- 0.007801274867260488 -- 0.01188377690593458 -- 0.0196364088034342 -- 0.03213925202754847 -- 0.051712309848685876 -- 0.0025897154812055444 -- 0.004529742794075346 -- 0.0071350779994061135 -- 0.010636358498966613 -- 0.01793554991512172 -- 0.028207549466742785 -- 0.04751995403767628 -- 0.078399292226318 -- 0.003797811136504016 -- 0.006106445193975674 -- 0.008956449990185172 -- 0.015409760938497722 -- 0.024702970460839312 -- 0.04276543913975987 -- 0.07121694430149718 -- 0.11587349188568133 -- 0.005325119381510992 -- 0.008739860667078495 -- 0.013811984097920824 -- 0.022547749486510168 -- 0.036418678415793396 -- 0.061092464889775336 -- 0.10120334768295079 -- 0.16729706489332236 -- 0.007314426129897138 -- 0.012310565849337556 -- 0.01880548673319385 -- 0.03150322613317545 -- 0.050248794571101964 -- 0.08528986456786831 -- 0.14002591134881992 -- 0.22685366247561983 -- 0.010412613343060003 -- 0.01585900025047944 -- 0.02639526782013252 -- 0.041523343993664856 -- 0.06939374238598457 -- 0.10990318552454333 -- 0.18248513590443896 -- 0.29672896478109023 -- 0.013143953495619778 -- 0.019441475337021664 -- 0.03717737735144933 -- 0.056289104982429596 -- 0.08183214001645585 -- 0.1415165136560526 -- 0.22888822225339417 -- 0.35549348132337844 -- 0.008547674684558856 -- 0.03108709490324683 -- 0.03640459562611305 -- 0.07940695861152511 -- 0.11371150089179818 -- 0.17430883944275216 -- 0.2547218362841646 +- 3.02324927e-03 +- 2.55554684e-03 +- 5.76014640e-03 +- 2.03458887e-03 +- 4.55845627e-03 +- 8.53258231e-03 +- 1.72799080e-03 +- 3.37039620e-03 +- 6.45127717e-03 +- 1.04669330e-02 +- 1.32653318e-03 +- 2.55905011e-03 +- 4.79557041e-03 +- 7.73579120e-03 +- 1.22248364e-02 +- 1.08462268e-03 +- 2.07569680e-03 +- 3.42249796e-03 +- 5.81735576e-03 +- 8.90641899e-03 +- 1.32957598e-02 +- 7.58230362e-04 +- 1.49825029e-03 +- 2.52955646e-03 +- 4.16463662e-03 +- 6.41466291e-03 +- 1.00451252e-02 +- 1.47951412e-02 +- 5.48437693e-04 +- 1.17193400e-03 +- 1.96218555e-03 +- 3.10741125e-03 +- 4.77535594e-03 +- 7.13989162e-03 +- 1.10982094e-02 +- 1.67108787e-02 +- 8.88221049e-04 +- 1.54736722e-03 +- 2.39599827e-03 +- 3.58019013e-03 +- 5.46999088e-03 +- 8.55388283e-03 +- 1.30452883e-02 +- 1.97412133e-02 +- 1.11705556e-03 +- 1.73218017e-03 +- 2.94225652e-03 +- 4.52224971e-03 +- 6.78190370e-03 +- 1.06641311e-02 +- 1.63695984e-02 +- 2.50677837e-02 +- 1.55648191e-03 +- 2.39315572e-03 +- 3.41838180e-03 +- 5.57108527e-03 +- 8.88068230e-03 +- 1.35467897e-02 +- 2.25751416e-02 +- 3.56792054e-02 +- 2.00133776e-03 +- 3.17605688e-03 +- 4.82618340e-03 +- 7.80127487e-03 +- 1.18837769e-02 +- 1.96364088e-02 +- 3.21392520e-02 +- 5.17123098e-02 +- 2.58971548e-03 +- 4.52974279e-03 +- 7.13507800e-03 +- 1.06363585e-02 +- 1.79355499e-02 +- 2.82075495e-02 +- 4.75199540e-02 +- 7.83992922e-02 +- 3.79781114e-03 +- 6.10644519e-03 +- 8.95644999e-03 +- 1.54097609e-02 +- 2.47029705e-02 +- 4.27654391e-02 +- 7.12169443e-02 +- 1.15873492e-01 +- 5.32511938e-03 +- 8.73986067e-03 +- 1.38119841e-02 +- 2.25477495e-02 +- 3.64186784e-02 +- 6.10924649e-02 +- 1.01203348e-01 +- 1.67297065e-01 +- 7.31442613e-03 +- 1.23105658e-02 +- 1.88054867e-02 +- 3.15032261e-02 +- 5.02487946e-02 +- 8.52898646e-02 +- 1.40025911e-01 +- 2.26853662e-01 +- 1.04126133e-02 +- 1.58590003e-02 +- 2.63952678e-02 +- 4.15233440e-02 +- 6.93937424e-02 +- 1.09903186e-01 +- 1.82485136e-01 +- 2.96728965e-01 +- 1.31439535e-02 +- 1.94414753e-02 +- 3.71773774e-02 +- 5.62891050e-02 +- 8.18321400e-02 +- 1.41516514e-01 +- 2.28888222e-01 +- 3.55493481e-01 +- 8.54767468e-03 +- 3.10870949e-02 +- 3.64045956e-02 +- 7.94069586e-02 +- 1.13711501e-01 +- 1.74308839e-01 +- 2.54721836e-01 diff --git a/nnpdf_data/nnpdf_data/commondata/ATHENA_NC_105GEV_EP/filter.py b/nnpdf_data/nnpdf_data/commondata/ATHENA_NC_105GEV_EP/filter.py index 0ed2862570..327558998f 100644 --- a/nnpdf_data/nnpdf_data/commondata/ATHENA_NC_105GEV_EP/filter.py +++ b/nnpdf_data/nnpdf_data/commondata/ATHENA_NC_105GEV_EP/filter.py @@ -1,6 +1,7 @@ from pathlib import Path import numpy as np +import yaml from nnpdf_data.filter_utils.poldata_utils import ( fluctuate_data, @@ -8,6 +9,9 @@ read_excel, write_data, ) +from nnpdf_data.filter_utils.utils import prettify_float + +yaml.add_representer(float, prettify_float) np.random.seed(1234567890) diff --git a/nnpdf_data/nnpdf_data/commondata/ATHENA_NC_105GEV_EP/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/ATHENA_NC_105GEV_EP/uncertainties.yaml index 79d394b0a8..6d2e6af5b2 100644 --- a/nnpdf_data/nnpdf_data/commondata/ATHENA_NC_105GEV_EP/uncertainties.yaml +++ b/nnpdf_data/nnpdf_data/commondata/ATHENA_NC_105GEV_EP/uncertainties.yaml @@ -16,495 +16,495 @@ definitions: treatment: MULT type: CORR bins: -- stat: 7.013938298803503e-08 - sys: 4.534873900088472e-05 +- stat: 7.01393830e-08 + sys: 4.53487390e-05 shift_lumi: 0.0001 - norm: 0.0001511624633362824 -- stat: 5.67331399146537e-08 - sys: 3.8333202645036284e-05 + norm: 1.51162463e-04 +- stat: 5.67331399e-08 + sys: 3.83332026e-05 shift_lumi: 0.0001 - norm: 0.00012777734215012093 -- stat: 1.65892216318336e-07 - sys: 8.640219599913332e-05 + norm: 1.27777342e-04 +- stat: 1.65892216e-07 + sys: 8.64021960e-05 shift_lumi: 0.0001 - norm: 0.00028800731999711107 -- stat: 4.4354037336301756e-08 - sys: 3.051883302956543e-05 + norm: 2.88007320e-04 +- stat: 4.43540373e-08 + sys: 3.05188330e-05 shift_lumi: 0.0001 - norm: 0.00010172944343188476 -- stat: 1.258133930406907e-07 - sys: 6.837684404385365e-05 + norm: 1.01729443e-04 +- stat: 1.25813393e-07 + sys: 6.83768440e-05 shift_lumi: 0.0001 - norm: 0.00022792281347951214 -- stat: 2.95227347859452e-07 - sys: 0.00012798873462114971 + norm: 2.27922813e-04 +- stat: 2.95227348e-07 + sys: 1.27988735e-04 shift_lumi: 0.0001 - norm: 0.0004266291154038323 -- stat: 3.767019952490038e-08 - sys: 2.5919862058417692e-05 + norm: 4.26629115e-04 +- stat: 3.76701995e-08 + sys: 2.59198621e-05 shift_lumi: 0.0001 - norm: 8.639954019472565e-05 -- stat: 9.133773696800921e-08 - sys: 5.05559429712228e-05 + norm: 8.63995402e-05 +- stat: 9.13377370e-08 + sys: 5.05559430e-05 shift_lumi: 0.0001 - norm: 0.00016851980990407602 -- stat: 2.1289214662922732e-07 - sys: 9.676915755873969e-05 + norm: 1.68519810e-04 +- stat: 2.12892147e-07 + sys: 9.67691576e-05 shift_lumi: 0.0001 - norm: 0.0003225638585291323 -- stat: 4.3856449206137894e-07 - sys: 0.0001570039947713767 + norm: 3.22563859e-04 +- stat: 4.38564492e-07 + sys: 1.57003995e-04 shift_lumi: 0.0001 - norm: 0.0005233466492379224 -- stat: 2.9449036504329683e-08 - sys: 1.9897997638060595e-05 + norm: 5.23346649e-04 +- stat: 2.94490365e-08 + sys: 1.98979976e-05 shift_lumi: 0.0001 - norm: 6.632665879353532e-05 -- stat: 6.960616285929008e-08 - sys: 3.838575157681438e-05 + norm: 6.63266588e-05 +- stat: 6.96061629e-08 + sys: 3.83857516e-05 shift_lumi: 0.0001 - norm: 0.00012795250525604794 -- stat: 1.5585603844442437e-07 - sys: 7.193355620511894e-05 + norm: 1.27952505e-04 +- stat: 1.55856038e-07 + sys: 7.19335562e-05 shift_lumi: 0.0001 - norm: 0.00023977852068372984 -- stat: 3.10978806402048e-07 - sys: 0.00011603686806046567 + norm: 2.39778521e-04 +- stat: 3.10978806e-07 + sys: 1.16036868e-04 shift_lumi: 0.0001 - norm: 0.00038678956020155226 -- stat: 6.308015595416033e-07 - sys: 0.0001833725463783731 + norm: 3.86789560e-04 +- stat: 6.30801560e-07 + sys: 1.83372546e-04 shift_lumi: 0.0001 - norm: 0.0006112418212612437 -- stat: 2.462093475704407e-08 - sys: 1.6269340147826477e-05 + norm: 6.11241821e-04 +- stat: 2.46209348e-08 + sys: 1.62693401e-05 shift_lumi: 0.0001 - norm: 5.423113382608826e-05 -- stat: 5.728923171730337e-08 - sys: 3.113545202027357e-05 + norm: 5.42311338e-05 +- stat: 5.72892317e-08 + sys: 3.11354520e-05 shift_lumi: 0.0001 - norm: 0.00010378484006757859 -- stat: 1.1157343349571278e-07 - sys: 5.1337469399867845e-05 + norm: 1.03784840e-04 +- stat: 1.11573433e-07 + sys: 5.13374694e-05 shift_lumi: 0.0001 - norm: 0.00017112489799955952 -- stat: 2.3036728814085282e-07 - sys: 8.726033641698971e-05 + norm: 1.71124898e-04 +- stat: 2.30367288e-07 + sys: 8.72603364e-05 shift_lumi: 0.0001 - norm: 0.00029086778805663237 -- stat: 4.4175838189412635e-07 - sys: 0.00013359628484701402 + norm: 2.90867788e-04 +- stat: 4.41758382e-07 + sys: 1.33596285e-04 shift_lumi: 0.0001 - norm: 0.0004453209494900468 -- stat: 8.53587777568568e-07 - sys: 0.00019943639662817005 + norm: 4.45320949e-04 +- stat: 8.53587778e-07 + sys: 1.99436397e-04 shift_lumi: 0.0001 - norm: 0.0006647879887605668 -- stat: 1.774259046167953e-08 - sys: 1.1373455424153545e-05 + norm: 6.64787989e-04 +- stat: 1.77425905e-08 + sys: 1.13734554e-05 shift_lumi: 0.0001 - norm: 3.791151808051182e-05 -- stat: 4.24004830788877e-08 - sys: 2.2473754282095957e-05 + norm: 3.79115181e-05 +- stat: 4.24004831e-08 + sys: 2.24737543e-05 shift_lumi: 0.0001 - norm: 7.491251427365318e-05 -- stat: 8.372831867791477e-08 - sys: 3.7943346832891894e-05 + norm: 7.49125143e-05 +- stat: 8.37283187e-08 + sys: 3.79433468e-05 shift_lumi: 0.0001 - norm: 0.0001264778227763063 -- stat: 1.6575253764482514e-07 - sys: 6.246954936362756e-05 + norm: 1.26477823e-04 +- stat: 1.65752538e-07 + sys: 6.24695494e-05 shift_lumi: 0.0001 - norm: 0.00020823183121209188 -- stat: 3.136770162974448e-07 - sys: 9.621994364952292e-05 + norm: 2.08231831e-04 +- stat: 3.13677016e-07 + sys: 9.62199436e-05 shift_lumi: 0.0001 - norm: 0.0003207331454984098 -- stat: 6.248067870185457e-07 - sys: 0.0001506768778983631 + norm: 3.20733145e-04 +- stat: 6.24806787e-07 + sys: 1.50676878e-04 shift_lumi: 0.0001 - norm: 0.0005022562596612103 -- stat: 1.2087630324808412e-06 - sys: 0.0002219271173465437 + norm: 5.02256260e-04 +- stat: 1.20876303e-06 + sys: 2.21927117e-04 shift_lumi: 0.0001 - norm: 0.0007397570578218123 -- stat: 1.3217348404824955e-08 - sys: 8.226565397193957e-06 + norm: 7.39757058e-04 +- stat: 1.32173484e-08 + sys: 8.22656540e-06 shift_lumi: 0.0001 - norm: 2.7421884657313185e-05 -- stat: 3.42204727881272e-08 - sys: 1.757900999390096e-05 + norm: 2.74218847e-05 +- stat: 3.42204728e-08 + sys: 1.75790100e-05 shift_lumi: 0.0001 - norm: 5.859669997966987e-05 -- stat: 6.671430866734796e-08 - sys: 2.943278323559469e-05 + norm: 5.85967000e-05 +- stat: 6.67143087e-08 + sys: 2.94327832e-05 shift_lumi: 0.0001 - norm: 9.810927745198228e-05 -- stat: 1.2616089676484032e-07 - sys: 4.661116875548287e-05 + norm: 9.81092775e-05 +- stat: 1.26160897e-07 + sys: 4.66111688e-05 shift_lumi: 0.0001 - norm: 0.00015537056251827623 -- stat: 2.363801192118965e-07 - sys: 7.163033915512014e-05 + norm: 1.55370563e-04 +- stat: 2.36380119e-07 + sys: 7.16303392e-05 shift_lumi: 0.0001 - norm: 0.0002387677971837338 -- stat: 4.4053131313787106e-07 - sys: 0.00010709837434470123 + norm: 2.38767797e-04 +- stat: 4.40531313e-07 + sys: 1.07098374e-04 shift_lumi: 0.0001 - norm: 0.0003569945811490041 -- stat: 8.811978269456747e-07 - sys: 0.00016647314111064386 + norm: 3.56994581e-04 +- stat: 8.81197827e-07 + sys: 1.66473141e-04 shift_lumi: 0.0001 - norm: 0.0005549104703688128 -- stat: 1.7546422616974698e-06 - sys: 0.00025066318024249566 + norm: 5.54910470e-04 +- stat: 1.75464226e-06 + sys: 2.50663180e-04 shift_lumi: 0.0001 - norm: 0.0008355439341416524 -- stat: 2.655780936239021e-08 - sys: 1.3323315733640571e-05 + norm: 8.35543934e-04 +- stat: 2.65578094e-08 + sys: 1.33233157e-05 shift_lumi: 0.0001 - norm: 4.4411052445468574e-05 -- stat: 5.4157852765576714e-08 - sys: 2.3210508328104307e-05 + norm: 4.44110524e-05 +- stat: 5.41578528e-08 + sys: 2.32105083e-05 shift_lumi: 0.0001 - norm: 7.736836109368102e-05 -- stat: 9.991312771372612e-08 - sys: 3.593997399774321e-05 + norm: 7.73683611e-05 +- stat: 9.99131277e-08 + sys: 3.59399740e-05 shift_lumi: 0.0001 - norm: 0.00011979991332581069 -- stat: 1.8115762053228446e-07 - sys: 5.370285193644796e-05 + norm: 1.19799913e-04 +- stat: 1.81157621e-07 + sys: 5.37028519e-05 shift_lumi: 0.0001 - norm: 0.00017900950645482653 -- stat: 3.424214289155113e-07 - sys: 8.204986315866882e-05 + norm: 1.79009506e-04 +- stat: 3.42421429e-07 + sys: 8.20498632e-05 shift_lumi: 0.0001 - norm: 0.00027349954386222947 -- stat: 6.766121319783705e-07 - sys: 0.00012830824247377442 + norm: 2.73499544e-04 +- stat: 6.76612132e-07 + sys: 1.28308242e-04 shift_lumi: 0.0001 - norm: 0.00042769414157924806 -- stat: 1.330619411548167e-06 - sys: 0.0001956793252276716 + norm: 4.27694142e-04 +- stat: 1.33061941e-06 + sys: 1.95679325e-04 shift_lumi: 0.0001 - norm: 0.0006522644174255719 -- stat: 2.6848050044653104e-06 - sys: 0.0002961181990219093 + norm: 6.52264417e-04 +- stat: 2.68480500e-06 + sys: 2.96118199e-04 shift_lumi: 0.0001 - norm: 0.0009870606634063642 -- stat: 4.0214000061074145e-08 - sys: 1.6755833358780896e-05 + norm: 9.87060663e-04 +- stat: 4.02140001e-08 + sys: 1.67558334e-05 shift_lumi: 0.0001 - norm: 5.585277786260298e-05 -- stat: 7.448374742624783e-08 - sys: 2.598270259055157e-05 + norm: 5.58527779e-05 +- stat: 7.44837474e-08 + sys: 2.59827026e-05 shift_lumi: 0.0001 - norm: 8.660900863517189e-05 -- stat: 1.5358579035385451e-07 - sys: 4.413384780283175e-05 + norm: 8.66090086e-05 +- stat: 1.53585790e-07 + sys: 4.41338478e-05 shift_lumi: 0.0001 - norm: 0.00014711282600943918 -- stat: 2.8987620638971044e-07 - sys: 6.783374564501805e-05 + norm: 1.47112826e-04 +- stat: 2.89876206e-07 + sys: 6.78337456e-05 shift_lumi: 0.0001 - norm: 0.00022611248548339347 -- stat: 5.459432475328766e-07 - sys: 0.00010172855544090868 + norm: 2.26112485e-04 +- stat: 5.45943248e-07 + sys: 1.01728555e-04 shift_lumi: 0.0001 - norm: 0.0003390951848030289 -- stat: 1.0984055043557873e-06 - sys: 0.00015996196665375544 + norm: 3.39095185e-04 +- stat: 1.09840550e-06 + sys: 1.59961967e-04 shift_lumi: 0.0001 - norm: 0.0005332065555125181 -- stat: 2.193526188395779e-06 - sys: 0.00024554397631296036 + norm: 5.33206556e-04 +- stat: 2.19352619e-06 + sys: 2.45543976e-04 shift_lumi: 0.0001 - norm: 0.0008184799210432012 -- stat: 4.537268856858366e-06 - sys: 0.0003760167560932347 + norm: 8.18479921e-04 +- stat: 4.53726886e-06 + sys: 3.76016756e-04 shift_lumi: 0.0001 - norm: 0.0012533891869774489 -- stat: 6.895214854941858e-08 - sys: 2.3347228628471307e-05 + norm: 1.25338919e-03 +- stat: 6.89521485e-08 + sys: 2.33472286e-05 shift_lumi: 0.0001 - norm: 7.782409542823768e-05 -- stat: 1.2875177773255448e-07 - sys: 3.589733579903935e-05 + norm: 7.78240954e-05 +- stat: 1.28751778e-07 + sys: 3.58973358e-05 shift_lumi: 0.0001 - norm: 0.00011965778599679785 -- stat: 2.2629687487422246e-07 - sys: 5.1275726935246786e-05 + norm: 1.19657786e-04 +- stat: 2.26296875e-07 + sys: 5.12757269e-05 shift_lumi: 0.0001 - norm: 0.00017091908978415595 -- stat: 4.6184296853211465e-07 - sys: 8.356627898651048e-05 + norm: 1.70919090e-04 +- stat: 4.61842969e-07 + sys: 8.35662790e-05 shift_lumi: 0.0001 - norm: 0.0002785542632883683 -- stat: 9.324716417446195e-07 - sys: 0.00013321023453494562 + norm: 2.78554263e-04 +- stat: 9.32471642e-07 + sys: 1.33210235e-04 shift_lumi: 0.0001 - norm: 0.00044403411511648546 -- stat: 1.8288166048297787e-06 - sys: 0.00020320184498108653 + norm: 4.44034115e-04 +- stat: 1.82881660e-06 + sys: 2.03201845e-04 shift_lumi: 0.0001 - norm: 0.0006773394832702884 -- stat: 3.995800064789016e-06 - sys: 0.0003386271241346624 + norm: 6.77339483e-04 +- stat: 3.99580006e-06 + sys: 3.38627124e-04 shift_lumi: 0.0001 - norm: 0.0011287570804488745 -- stat: 8.527330098973576e-06 - sys: 0.0005351880815255382 + norm: 1.12875708e-03 +- stat: 8.52733010e-06 + sys: 5.35188082e-04 shift_lumi: 0.0001 - norm: 0.001783960271751794 -- stat: 1.1167464692994457e-07 - sys: 3.002006637901736e-05 + norm: 1.78396027e-03 +- stat: 1.11674647e-07 + sys: 3.00200664e-05 shift_lumi: 0.0001 - norm: 0.00010006688793005786 -- stat: 2.1819510733028112e-07 - sys: 4.764085312888234e-05 + norm: 1.00066888e-04 +- stat: 2.18195107e-07 + sys: 4.76408531e-05 shift_lumi: 0.0001 - norm: 0.00015880284376294112 -- stat: 4.136039169599516e-07 - sys: 7.239275092647929e-05 + norm: 1.58802844e-04 +- stat: 4.13603917e-07 + sys: 7.23927509e-05 shift_lumi: 0.0001 - norm: 0.00024130916975493094 -- stat: 8.425376856641328e-07 - sys: 0.00011701912300890731 + norm: 2.41309170e-04 +- stat: 8.42537686e-07 + sys: 1.17019123e-04 shift_lumi: 0.0001 - norm: 0.0003900637433630244 -- stat: 1.6280774361130374e-06 - sys: 0.00017825665358901872 + norm: 3.90063743e-04 +- stat: 1.62807744e-06 + sys: 1.78256654e-04 shift_lumi: 0.0001 - norm: 0.0005941888452967289 -- stat: 3.495280767011287e-06 - sys: 0.000294546132051513 + norm: 5.94188845e-04 +- stat: 3.49528077e-06 + sys: 2.94546132e-04 shift_lumi: 0.0001 - norm: 0.00098182044017171 -- stat: 7.617002730528987e-06 - sys: 0.0004820887804132271 + norm: 9.81820440e-04 +- stat: 7.61700273e-06 + sys: 4.82088780e-04 shift_lumi: 0.0001 - norm: 0.0016069626013774235 -- stat: 1.665136377127685e-05 - sys: 0.0007756846477302881 + norm: 1.60696260e-03 +- stat: 1.66513638e-05 + sys: 7.75684648e-04 shift_lumi: 0.0001 - norm: 0.0025856154924342937 -- stat: 1.8464671380995531e-07 - sys: 3.884573221808317e-05 + norm: 2.58561549e-03 +- stat: 1.84646714e-07 + sys: 3.88457322e-05 shift_lumi: 0.0001 - norm: 0.0001294857740602772 -- stat: 4.0405305723152094e-07 - sys: 6.794614191113019e-05 + norm: 1.29485774e-04 +- stat: 4.04053057e-07 + sys: 6.79461419e-05 shift_lumi: 0.0001 - norm: 0.00022648713970376731 -- stat: 8.062638139328908e-07 - sys: 0.00010702616999109171 + norm: 2.26487140e-04 +- stat: 8.06263814e-07 + sys: 1.07026170e-04 shift_lumi: 0.0001 - norm: 0.0003567538999703057 -- stat: 1.5209992653522256e-06 - sys: 0.00015954537748449918 + norm: 3.56753900e-04 +- stat: 1.52099927e-06 + sys: 1.59545377e-04 shift_lumi: 0.0001 - norm: 0.0005318179249483307 -- stat: 3.282205634467275e-06 - sys: 0.00026903324872682577 + norm: 5.31817925e-04 +- stat: 3.28220563e-06 + sys: 2.69033249e-04 shift_lumi: 0.0001 - norm: 0.000896777495756086 -- stat: 6.713396773084784e-06 - sys: 0.0004231132420011418 + norm: 8.96777496e-04 +- stat: 6.71339677e-06 + sys: 4.23113242e-04 shift_lumi: 0.0001 - norm: 0.0014103774733371394 -- stat: 1.5016305475905706e-05 - sys: 0.0007127993105651442 + norm: 1.41037747e-03 +- stat: 1.50163055e-05 + sys: 7.12799311e-04 shift_lumi: 0.0001 - norm: 0.002375997701883814 -- stat: 3.402529282622201e-05 - sys: 0.00117598938339477 + norm: 2.37599770e-03 +- stat: 3.40252928e-05 + sys: 1.17598938e-03 shift_lumi: 0.0001 - norm: 0.0039199646113159 -- stat: 3.524368734675727e-07 - sys: 5.696716704756024e-05 + norm: 3.91996461e-03 +- stat: 3.52436873e-07 + sys: 5.69671670e-05 shift_lumi: 0.0001 - norm: 0.00018989055682520082 -- stat: 7.083476425011782e-07 - sys: 9.159667790963512e-05 + norm: 1.89890557e-04 +- stat: 7.08347643e-07 + sys: 9.15966779e-05 shift_lumi: 0.0001 - norm: 0.0003053222596987837 -- stat: 1.3255545985474055e-06 - sys: 0.00013434674985277759 + norm: 3.05322260e-04 +- stat: 1.32555460e-06 + sys: 1.34346750e-04 shift_lumi: 0.0001 - norm: 0.0004478224995092586 -- stat: 2.9124448173760696e-06 - sys: 0.00023114641407746586 + norm: 4.47822500e-04 +- stat: 2.91244482e-06 + sys: 2.31146414e-04 shift_lumi: 0.0001 - norm: 0.0007704880469248861 -- stat: 6.002821821983953e-06 - sys: 0.00037054455691258966 + norm: 7.70488047e-04 +- stat: 6.00282182e-06 + sys: 3.70544557e-04 shift_lumi: 0.0001 - norm: 0.0012351485230419656 -- stat: 1.3727705963862919e-05 - sys: 0.000641481587096398 + norm: 1.23514852e-03 +- stat: 1.37277060e-05 + sys: 6.41481587e-04 shift_lumi: 0.0001 - norm: 0.002138271956987994 -- stat: 3.076571993824678e-05 - sys: 0.0010682541645224578 + norm: 2.13827196e-03 +- stat: 3.07657199e-05 + sys: 1.06825416e-03 shift_lumi: 0.0001 - norm: 0.0035608472150748588 -- stat: 6.790186624500926e-05 - sys: 0.00173810237828522 + norm: 3.56084722e-03 +- stat: 6.79018662e-05 + sys: 1.73810238e-03 shift_lumi: 0.0001 - norm: 0.005793674594284066 -- stat: 6.54989683925852e-07 - sys: 7.987679072266487e-05 + norm: 5.79367459e-03 +- stat: 6.54989684e-07 + sys: 7.98767907e-05 shift_lumi: 0.0001 - norm: 0.0002662559690755496 -- stat: 1.3634182640642452e-06 - sys: 0.00013109791000617742 + norm: 2.66255969e-04 +- stat: 1.36341826e-06 + sys: 1.31097910e-04 shift_lumi: 0.0001 - norm: 0.00043699303335392476 -- stat: 2.7347728513883235e-06 - sys: 0.00020717976146881236 + norm: 4.36993033e-04 +- stat: 2.73477285e-06 + sys: 2.07179761e-04 shift_lumi: 0.0001 - norm: 0.0006905992048960412 -- stat: 5.794771618033113e-06 - sys: 0.0003382162422976525 + norm: 6.90599205e-04 +- stat: 5.79477162e-06 + sys: 3.38216242e-04 shift_lumi: 0.0001 - norm: 0.0011273874743255084 -- stat: 1.190890784196444e-05 - sys: 0.000546280176236901 + norm: 1.12738747e-03 +- stat: 1.19089078e-05 + sys: 5.46280176e-04 shift_lumi: 0.0001 - norm: 0.0018209339207896696 -- stat: 2.6819592086611373e-05 - sys: 0.0009163869733466301 + norm: 1.82093392e-03 +- stat: 2.68195921e-05 + sys: 9.16386973e-04 shift_lumi: 0.0001 - norm: 0.0030546232444887667 -- stat: 5.879914500379441e-05 - sys: 0.0015180502152442618 + norm: 3.05462324e-03 +- stat: 5.87991450e-05 + sys: 1.51805022e-03 shift_lumi: 0.0001 - norm: 0.005060167384147539 -- stat: 0.0001324992753955113 - sys: 0.002509455973399836 + norm: 5.06016738e-03 +- stat: 1.32499275e-04 + sys: 2.50945597e-03 shift_lumi: 0.0001 - norm: 0.008364853244666117 -- stat: 1.2288235898227192e-06 - sys: 0.00010971639194845708 + norm: 8.36485324e-03 +- stat: 1.22882359e-06 + sys: 1.09716392e-04 shift_lumi: 0.0001 - norm: 0.0003657213064948569 -- stat: 2.622150525908899e-06 - sys: 0.00018465848774006335 + norm: 3.65721306e-04 +- stat: 2.62215053e-06 + sys: 1.84658488e-04 shift_lumi: 0.0001 - norm: 0.0006155282924668778 -- stat: 5.190314338361503e-06 - sys: 0.00028208230099790776 + norm: 6.15528292e-04 +- stat: 5.19031434e-06 + sys: 2.82082301e-04 shift_lumi: 0.0001 - norm: 0.0009402743366596925 -- stat: 1.1404167860209515e-05 - sys: 0.00047254839199763177 + norm: 9.40274337e-04 +- stat: 1.14041679e-05 + sys: 4.72548392e-04 shift_lumi: 0.0001 - norm: 0.0015751613066587729 -- stat: 2.29636991189936e-05 - sys: 0.0007537319185665295 + norm: 1.57516131e-03 +- stat: 2.29636991e-05 + sys: 7.53731919e-04 shift_lumi: 0.0001 - norm: 0.002512439728555098 -- stat: 5.270913630294262e-05 - sys: 0.0012793479685180248 + norm: 2.51243973e-03 +- stat: 5.27091363e-05 + sys: 1.27934797e-03 shift_lumi: 0.0001 - norm: 0.004264493228393416 -- stat: 0.00011622150641952053 - sys: 0.002100388670232299 + norm: 4.26449323e-03 +- stat: 1.16221506e-04 + sys: 2.10038867e-03 shift_lumi: 0.0001 - norm: 0.007001295567440996 -- stat: 0.00024953902872318183 - sys: 0.0034028049371342974 + norm: 7.00129557e-03 +- stat: 2.49539029e-04 + sys: 3.40280494e-03 shift_lumi: 0.0001 - norm: 0.011342683123780992 -- stat: 2.6343911757941806e-06 - sys: 0.00015618920014590003 + norm: 1.13426831e-02 +- stat: 2.63439118e-06 + sys: 1.56189200e-04 shift_lumi: 0.0001 - norm: 0.0005206306671530002 -- stat: 5.217611082407736e-06 - sys: 0.00023788500375719162 + norm: 5.20630667e-04 +- stat: 5.21761108e-06 + sys: 2.37885004e-04 shift_lumi: 0.0001 - norm: 0.000792950012523972 -- stat: 1.1244384091376454e-05 - sys: 0.00039592901730198786 + norm: 7.92950013e-04 +- stat: 1.12443841e-05 + sys: 3.95929017e-04 shift_lumi: 0.0001 - norm: 0.0013197633910066262 -- stat: 2.3170025948464992e-05 - sys: 0.0006228501599049728 + norm: 1.31976339e-03 +- stat: 2.31700259e-05 + sys: 6.22850160e-04 shift_lumi: 0.0001 - norm: 0.002076167199683243 -- stat: 5.086561316892669e-05 - sys: 0.0010409061357897686 + norm: 2.07616720e-03 +- stat: 5.08656132e-05 + sys: 1.04090614e-03 shift_lumi: 0.0001 - norm: 0.0034696871192992284 -- stat: 0.00010363870394964436 - sys: 0.00164854778286815 + norm: 3.46968712e-03 +- stat: 1.03638704e-04 + sys: 1.64854778e-03 shift_lumi: 0.0001 - norm: 0.0054951592762271665 -- stat: 0.0002463549334709926 - sys: 0.0027372770385665846 + norm: 5.49515928e-03 +- stat: 2.46354933e-04 + sys: 2.73727704e-03 shift_lumi: 0.0001 - norm: 0.009124256795221948 -- stat: 0.0005697196123796933 - sys: 0.004450934471716354 + norm: 9.12425680e-03 +- stat: 5.69719612e-04 + sys: 4.45093447e-03 shift_lumi: 0.0001 - norm: 0.014836448239054513 -- stat: 6.532544887323029e-06 - sys: 0.00019715930243429666 + norm: 1.48364482e-02 +- stat: 6.53254489e-06 + sys: 1.97159302e-04 shift_lumi: 0.0001 - norm: 0.0006571976747809889 -- stat: 1.263695896906408e-05 - sys: 0.00029162213005532497 + norm: 6.57197675e-04 +- stat: 1.26369590e-05 + sys: 2.91622130e-04 shift_lumi: 0.0001 - norm: 0.0009720737668510831 -- stat: 3.1972544522246424e-05 - sys: 0.00055766066027174 + norm: 9.72073767e-04 +- stat: 3.19725445e-05 + sys: 5.57660660e-04 shift_lumi: 0.0001 - norm: 0.0018588688675724666 -- stat: 6.360668863014545e-05 - sys: 0.000844336574736444 + norm: 1.85886887e-03 +- stat: 6.36066886e-05 + sys: 8.44336575e-04 shift_lumi: 0.0001 - norm: 0.00281445524912148 -- stat: 0.00011947492442402553 - sys: 0.0012274821002468377 + norm: 2.81445525e-03 +- stat: 1.19474924e-04 + sys: 1.22748210e-03 shift_lumi: 0.0001 - norm: 0.004091607000822792 -- stat: 0.00029435434840458945 - sys: 0.0021227477048407894 + norm: 4.09160700e-03 +- stat: 2.94354348e-04 + sys: 2.12274770e-03 shift_lumi: 0.0001 - norm: 0.00707582568280263 -- stat: 0.0006775091378700466 - sys: 0.003433323333800913 + norm: 7.07582568e-03 +- stat: 6.77509138e-04 + sys: 3.43332333e-03 shift_lumi: 0.0001 - norm: 0.011444411112669708 -- stat: 0.001464633143052319 - sys: 0.005332402219850676 + norm: 1.14444111e-02 +- stat: 1.46463314e-03 + sys: 5.33240222e-03 shift_lumi: 0.0001 - norm: 0.017774674066168922 -- stat: 1.906131454656625e-05 - sys: 0.00012821512026838284 + norm: 1.77746741e-02 +- stat: 1.90613145e-05 + sys: 1.28215120e-04 shift_lumi: 0.0001 - norm: 0.0004273837342279428 -- stat: 9.139605901554568e-05 - sys: 0.00046630642354870245 + norm: 4.27383734e-04 +- stat: 9.13960590e-05 + sys: 4.66306424e-04 shift_lumi: 0.0001 - norm: 0.0015543547451623415 -- stat: 0.00013214868212279036 - sys: 0.0005460689343916958 + norm: 1.55435475e-03 +- stat: 1.32148682e-04 + sys: 5.46068934e-04 shift_lumi: 0.0001 - norm: 0.0018202297813056524 -- stat: 0.00040338734974654754 - sys: 0.0011911043791728766 + norm: 1.82022978e-03 +- stat: 4.03387350e-04 + sys: 1.19110438e-03 shift_lumi: 0.0001 - norm: 0.003970347930576256 -- stat: 0.0008005289662782591 - sys: 0.001705672513376973 + norm: 3.97034793e-03 +- stat: 8.00528966e-04 + sys: 1.70567251e-03 shift_lumi: 0.0001 - norm: 0.005685575044589909 -- stat: 0.0024577546361428055 - sys: 0.002614632591641283 + norm: 5.68557504e-03 +- stat: 2.45775464e-03 + sys: 2.61463259e-03 shift_lumi: 0.0001 - norm: 0.008715441972137607 -- stat: 0.003591577891606721 - sys: 0.0038208275442624695 + norm: 8.71544197e-03 +- stat: 3.59157789e-03 + sys: 3.82082754e-03 shift_lumi: 0.0001 - norm: 0.01273609181420823 + norm: 1.27360918e-02 diff --git a/nnpdf_data/nnpdf_data/commondata/ATHENA_NC_140GEV_EP/filter.py b/nnpdf_data/nnpdf_data/commondata/ATHENA_NC_140GEV_EP/filter.py index df7ea62f4f..69e2798903 100644 --- a/nnpdf_data/nnpdf_data/commondata/ATHENA_NC_140GEV_EP/filter.py +++ b/nnpdf_data/nnpdf_data/commondata/ATHENA_NC_140GEV_EP/filter.py @@ -1,8 +1,12 @@ from pathlib import Path import numpy as np +import yaml from nnpdf_data.filter_utils.poldata_utils import read_excel, write_data +from nnpdf_data.filter_utils.utils import prettify_float + +yaml.add_representer(float, prettify_float) np.random.seed(1234567890) diff --git a/nnpdf_data/nnpdf_data/commondata/ATHENA_NC_29GEV_EP/data.yaml b/nnpdf_data/nnpdf_data/commondata/ATHENA_NC_29GEV_EP/data.yaml index a5992c14ca..e8af4dc218 100644 --- a/nnpdf_data/nnpdf_data/commondata/ATHENA_NC_29GEV_EP/data.yaml +++ b/nnpdf_data/nnpdf_data/commondata/ATHENA_NC_29GEV_EP/data.yaml @@ -1,77 +1,77 @@ data_central: -- 0.012809394511625948 -- 0.009418662409048165 -- 0.01806460082055432 -- 0.0065694263387909785 -- 0.01360459047339885 -- 0.02384616923323372 -- 0.0055862894829189925 -- 0.009796991764000932 -- 0.017928025684194424 -- 0.02930362462096865 -- 0.004466823784889146 -- 0.007958763075533495 -- 0.014551039219778555 -- 0.02312190333192727 -- 0.03844380399834426 -- 0.004313514416043816 -- 0.007467543592397761 -- 0.011377352026628701 -- 0.020061969906322343 -- 0.03106597228702225 -- 0.04878876618165684 -- 0.003448508766943426 -- 0.005845529447754025 -- 0.009525276071306613 -- 0.015952181058944286 -- 0.025496355553516484 -- 0.04281332344558378 -- 0.06820178754388044 -- 0.0028092966871974966 -- 0.005060055108028309 -- 0.008293622598933997 -- 0.013225284135263657 -- 0.021436710275863805 -- 0.03424847475736489 -- 0.05805000951438039 -- 0.09501802323547184 -- 0.00414518646409684 -- 0.007140656519582914 -- 0.011171720989274549 -- 0.017630989536653263 -- 0.029169798801374863 -- 0.04964613499085929 -- 0.08096556372466782 -- 0.1347498096619069 -- 0.005450307938844511 -- 0.008565099913202976 -- 0.01563957344406665 -- 0.025779851621330143 -- 0.04149595206086526 -- 0.06904048482612761 -- 0.11310365029103706 -- 0.18689180047597323 -- 0.008083065095496991 -- 0.012956754058056956 -- 0.01919404234489798 -- 0.03350587514672228 -- 0.05595918713400959 -- 0.08892207869185634 -- 0.15518958275014433 -- 0.2576014859650089 -- 0.010560136061448372 -- 0.017687516525875017 -- 0.027309363916693218 -- 0.046316307863957386 -- 0.07036890359790095 -- 0.12152787780609264 -- 0.20256802362951826 -- 0.3334440608473117 -- 0.00843064405083789 -- 0.027185758895653448 -- 0.04261141556382719 -- 0.04545811313925797 -- 0.1015866547735202 -- 0.12939174575949897 -- 0.24349832238575325 -- 0.42731839924200893 +- 1.28093945e-02 +- 9.41866241e-03 +- 1.80646008e-02 +- 6.56942634e-03 +- 1.36045905e-02 +- 2.38461692e-02 +- 5.58628948e-03 +- 9.79699176e-03 +- 1.79280257e-02 +- 2.93036246e-02 +- 4.46682378e-03 +- 7.95876308e-03 +- 1.45510392e-02 +- 2.31219033e-02 +- 3.84438040e-02 +- 4.31351442e-03 +- 7.46754359e-03 +- 1.13773520e-02 +- 2.00619699e-02 +- 3.10659723e-02 +- 4.87887662e-02 +- 3.44850877e-03 +- 5.84552945e-03 +- 9.52527607e-03 +- 1.59521811e-02 +- 2.54963556e-02 +- 4.28133234e-02 +- 6.82017875e-02 +- 2.80929669e-03 +- 5.06005511e-03 +- 8.29362260e-03 +- 1.32252841e-02 +- 2.14367103e-02 +- 3.42484748e-02 +- 5.80500095e-02 +- 9.50180232e-02 +- 4.14518646e-03 +- 7.14065652e-03 +- 1.11717210e-02 +- 1.76309895e-02 +- 2.91697988e-02 +- 4.96461350e-02 +- 8.09655637e-02 +- 1.34749810e-01 +- 5.45030794e-03 +- 8.56509991e-03 +- 1.56395734e-02 +- 2.57798516e-02 +- 4.14959521e-02 +- 6.90404848e-02 +- 1.13103650e-01 +- 1.86891800e-01 +- 8.08306510e-03 +- 1.29567541e-02 +- 1.91940423e-02 +- 3.35058751e-02 +- 5.59591871e-02 +- 8.89220787e-02 +- 1.55189583e-01 +- 2.57601486e-01 +- 1.05601361e-02 +- 1.76875165e-02 +- 2.73093639e-02 +- 4.63163079e-02 +- 7.03689036e-02 +- 1.21527878e-01 +- 2.02568024e-01 +- 3.33444061e-01 +- 8.43064405e-03 +- 2.71857589e-02 +- 4.26114156e-02 +- 4.54581131e-02 +- 1.01586655e-01 +- 1.29391746e-01 +- 2.43498322e-01 +- 4.27318399e-01 diff --git a/nnpdf_data/nnpdf_data/commondata/ATHENA_NC_29GEV_EP/filter.py b/nnpdf_data/nnpdf_data/commondata/ATHENA_NC_29GEV_EP/filter.py index 6aa66c5845..e7ad5e8986 100644 --- a/nnpdf_data/nnpdf_data/commondata/ATHENA_NC_29GEV_EP/filter.py +++ b/nnpdf_data/nnpdf_data/commondata/ATHENA_NC_29GEV_EP/filter.py @@ -1,6 +1,7 @@ from pathlib import Path import numpy as np +import yaml from nnpdf_data.filter_utils.poldata_utils import ( fluctuate_data, @@ -8,6 +9,9 @@ read_excel, write_data, ) +from nnpdf_data.filter_utils.utils import prettify_float + +yaml.add_representer(float, prettify_float) np.random.seed(1234567890) diff --git a/nnpdf_data/nnpdf_data/commondata/ATHENA_NC_29GEV_EP/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/ATHENA_NC_29GEV_EP/uncertainties.yaml index ff79b67684..a46482a139 100644 --- a/nnpdf_data/nnpdf_data/commondata/ATHENA_NC_29GEV_EP/uncertainties.yaml +++ b/nnpdf_data/nnpdf_data/commondata/ATHENA_NC_29GEV_EP/uncertainties.yaml @@ -16,307 +16,307 @@ definitions: treatment: MULT type: CORR bins: -- stat: 1.7476354374983829e-06 - sys: 0.0001921409176743892 +- stat: 1.74763544e-06 + sys: 1.92140918e-04 shift_lumi: 0.0001 - norm: 0.0006404697255812975 -- stat: 1.2268081009768969e-06 - sys: 0.00014127993613572248 + norm: 6.40469726e-04 +- stat: 1.22680810e-06 + sys: 1.41279936e-04 shift_lumi: 0.0001 - norm: 0.00047093312045240823 -- stat: 3.0773753767062357e-06 - sys: 0.00027096901230831477 + norm: 4.70933120e-04 +- stat: 3.07737538e-06 + sys: 2.70969012e-04 shift_lumi: 0.0001 - norm: 0.0009032300410277159 -- stat: 8.368696501969296e-07 - sys: 9.854139508186469e-05 + norm: 9.03230041e-04 +- stat: 8.36869650e-07 + sys: 9.85413951e-05 shift_lumi: 0.0001 - norm: 0.000328471316939549 -- stat: 2.2150467176747332e-06 - sys: 0.00020406885710098276 + norm: 3.28471317e-04 +- stat: 2.21504672e-06 + sys: 2.04068857e-04 shift_lumi: 0.0001 - norm: 0.0006802295236699426 -- stat: 4.8891255730080144e-06 - sys: 0.0003576925384985058 + norm: 6.80229524e-04 +- stat: 4.88912557e-06 + sys: 3.57692538e-04 shift_lumi: 0.0001 - norm: 0.001192308461661686 -- stat: 7.057341246889251e-07 - sys: 8.37943422437849e-05 + norm: 1.19230846e-03 +- stat: 7.05734125e-07 + sys: 8.37943422e-05 shift_lumi: 0.0001 - norm: 0.0002793144741459496 -- stat: 1.5507996837801284e-06 - sys: 0.000146954876460014 + norm: 2.79314474e-04 +- stat: 1.55079968e-06 + sys: 1.46954876e-04 shift_lumi: 0.0001 - norm: 0.0004898495882000466 -- stat: 3.486549518634661e-06 - sys: 0.00026892038526291637 + norm: 4.89849588e-04 +- stat: 3.48654952e-06 + sys: 2.68920385e-04 shift_lumi: 0.0001 - norm: 0.0008964012842097212 -- stat: 7.377538342492713e-06 - sys: 0.00043955436931452974 + norm: 8.96401284e-04 +- stat: 7.37753834e-06 + sys: 4.39554369e-04 shift_lumi: 0.0001 - norm: 0.0014651812310484324 -- stat: 5.670019771023957e-07 - sys: 6.70023567733372e-05 + norm: 1.46518123e-03 +- stat: 5.67001977e-07 + sys: 6.70023568e-05 shift_lumi: 0.0001 - norm: 0.0002233411892444573 -- stat: 1.2478218251615798e-06 - sys: 0.00011938144613300242 + norm: 2.23341189e-04 +- stat: 1.24782183e-06 + sys: 1.19381446e-04 shift_lumi: 0.0001 - norm: 0.0003979381537766748 -- stat: 2.7640011421002987e-06 - sys: 0.0002182655882966783 + norm: 3.97938154e-04 +- stat: 2.76400114e-06 + sys: 2.18265588e-04 shift_lumi: 0.0001 - norm: 0.0007275519609889278 -- stat: 5.57721293024517e-06 - sys: 0.0003468285499789091 + norm: 7.27551961e-04 +- stat: 5.57721293e-06 + sys: 3.46828550e-04 shift_lumi: 0.0001 - norm: 0.0011560951665963634 -- stat: 1.2112848970764898e-05 - sys: 0.0005766570599751639 + norm: 1.15609517e-03 +- stat: 1.21128490e-05 + sys: 5.76657060e-04 shift_lumi: 0.0001 - norm: 0.001922190199917213 -- stat: 5.527437508606987e-07 - sys: 6.470271624065724e-05 + norm: 1.92219020e-03 +- stat: 5.52743751e-07 + sys: 6.47027162e-05 shift_lumi: 0.0001 - norm: 0.00021567572080219077 -- stat: 1.1708055368031942e-06 - sys: 0.00011201315388596642 + norm: 2.15675721e-04 +- stat: 1.17080554e-06 + sys: 1.12013154e-04 shift_lumi: 0.0001 - norm: 0.00037337717961988807 -- stat: 2.144000442052102e-06 - sys: 0.00017066028039943053 + norm: 3.73377180e-04 +- stat: 2.14400044e-06 + sys: 1.70660280e-04 shift_lumi: 0.0001 - norm: 0.0005688676013314351 -- stat: 4.718150986640426e-06 - sys: 0.00030092954859483516 + norm: 5.68867601e-04 +- stat: 4.71815099e-06 + sys: 3.00929549e-04 shift_lumi: 0.0001 - norm: 0.0010030984953161171 -- stat: 9.366743074875621e-06 - sys: 0.00046598958430533376 + norm: 1.00309850e-03 +- stat: 9.36674307e-06 + sys: 4.65989584e-04 shift_lumi: 0.0001 - norm: 0.0015532986143511123 -- stat: 1.9564787433989562e-05 - sys: 0.0007318314927248526 + norm: 1.55329861e-03 +- stat: 1.95647874e-05 + sys: 7.31831493e-04 shift_lumi: 0.0001 - norm: 0.002439438309082842 -- stat: 4.4657885923945215e-07 - sys: 5.172763150415139e-05 + norm: 2.43943831e-03 +- stat: 4.46578859e-07 + sys: 5.17276315e-05 shift_lumi: 0.0001 - norm: 0.0001724254383471713 -- stat: 9.164965906518386e-07 - sys: 8.768294171631039e-05 + norm: 1.72425438e-04 +- stat: 9.16496591e-07 + sys: 8.76829417e-05 shift_lumi: 0.0001 - norm: 0.0002922764723877012 -- stat: 1.8093466413124542e-06 - sys: 0.0001428791410695992 + norm: 2.92276472e-04 +- stat: 1.80934664e-06 + sys: 1.42879141e-04 shift_lumi: 0.0001 - norm: 0.00047626380356533064 -- stat: 3.7516155768235756e-06 - sys: 0.0002392827158841643 + norm: 4.76263804e-04 +- stat: 3.75161558e-06 + sys: 2.39282716e-04 shift_lumi: 0.0001 - norm: 0.0007976090529472143 -- stat: 7.572128838101883e-06 - sys: 0.0003824453333027473 + norm: 7.97609053e-04 +- stat: 7.57212884e-06 + sys: 3.82445333e-04 shift_lumi: 0.0001 - norm: 0.0012748177776758243 -- stat: 1.6587682992528045e-05 - sys: 0.0006421998516837567 + norm: 1.27481778e-03 +- stat: 1.65876830e-05 + sys: 6.42199852e-04 shift_lumi: 0.0001 - norm: 0.002140666172279189 -- stat: 3.547223184706007e-05 - sys: 0.0010230268131582066 + norm: 2.14066617e-03 +- stat: 3.54722318e-05 + sys: 1.02302681e-03 shift_lumi: 0.0001 - norm: 0.0034100893771940224 -- stat: 3.786245651992241e-07 - sys: 4.213945030796245e-05 + norm: 3.41008938e-03 +- stat: 3.78624565e-07 + sys: 4.21394503e-05 shift_lumi: 0.0001 - norm: 0.00014046483435987484 -- stat: 8.009736101110781e-07 - sys: 7.590082662042465e-05 + norm: 1.40464834e-04 +- stat: 8.00973610e-07 + sys: 7.59008266e-05 shift_lumi: 0.0001 - norm: 0.00025300275540141547 -- stat: 1.5878945262779485e-06 - sys: 0.00012440433898400994 + norm: 2.53002755e-04 +- stat: 1.58789453e-06 + sys: 1.24404339e-04 shift_lumi: 0.0001 - norm: 0.00041468112994669985 -- stat: 3.130244963606354e-06 - sys: 0.00019837926202895484 + norm: 4.14681130e-04 +- stat: 3.13024496e-06 + sys: 1.98379262e-04 shift_lumi: 0.0001 - norm: 0.0006612642067631828 -- stat: 6.366460168520662e-06 - sys: 0.0003215506541379571 + norm: 6.61264207e-04 +- stat: 6.36646017e-06 + sys: 3.21550654e-04 shift_lumi: 0.0001 - norm: 0.0010718355137931902 -- stat: 1.3062774147395812e-05 - sys: 0.0005137271213604733 + norm: 1.07183551e-03 +- stat: 1.30627741e-05 + sys: 5.13727121e-04 shift_lumi: 0.0001 - norm: 0.0017124237378682444 -- stat: 2.914205614168562e-05 - sys: 0.0008707501427157059 + norm: 1.71242374e-03 +- stat: 2.91420561e-05 + sys: 8.70750143e-04 shift_lumi: 0.0001 - norm: 0.00290250047571902 -- stat: 6.460352193563292e-05 - sys: 0.0014252703485320777 + norm: 2.90250048e-03 +- stat: 6.46035219e-05 + sys: 1.42527035e-03 shift_lumi: 0.0001 - norm: 0.004750901161773592 -- stat: 6.749032019303074e-07 - sys: 6.217779696145261e-05 + norm: 4.75090116e-03 +- stat: 6.74903202e-07 + sys: 6.21777970e-05 shift_lumi: 0.0001 - norm: 0.00020725932320484202 -- stat: 1.3994428164518218e-06 - sys: 0.0001071098477937437 + norm: 2.07259323e-04 +- stat: 1.39944282e-06 + sys: 1.07109848e-04 shift_lumi: 0.0001 - norm: 0.00035703282597914567 -- stat: 2.6778784902954154e-06 - sys: 0.00016757581483911824 + norm: 3.57032826e-04 +- stat: 2.67787849e-06 + sys: 1.67575815e-04 shift_lumi: 0.0001 - norm: 0.0005585860494637274 -- stat: 5.315943361432807e-06 - sys: 0.000264464843049799 + norm: 5.58586049e-04 +- stat: 5.31594336e-06 + sys: 2.64464843e-04 shift_lumi: 0.0001 - norm: 0.0008815494768326632 -- stat: 1.1169682077235024e-05 - sys: 0.00043754698202062294 + norm: 8.81549477e-04 +- stat: 1.11696821e-05 + sys: 4.37546982e-04 shift_lumi: 0.0001 - norm: 0.0014584899400687432 -- stat: 2.4773484672973103e-05 - sys: 0.0007446920248628894 + norm: 1.45848994e-03 +- stat: 2.47734847e-05 + sys: 7.44692025e-04 shift_lumi: 0.0001 - norm: 0.0024823067495429647 -- stat: 5.358441898295103e-05 - sys: 0.0012144834558700172 + norm: 2.48230675e-03 +- stat: 5.35844190e-05 + sys: 1.21448346e-03 shift_lumi: 0.0001 - norm: 0.0040482781862333905 -- stat: 0.00012168264589681401 - sys: 0.0020212471449286033 + norm: 4.04827819e-03 +- stat: 1.21682646e-04 + sys: 2.02124714e-03 shift_lumi: 0.0001 - norm: 0.006737490483095345 -- stat: 1.1174641790026303e-06 - sys: 8.175461908266767e-05 + norm: 6.73749048e-03 +- stat: 1.11746418e-06 + sys: 8.17546191e-05 shift_lumi: 0.0001 - norm: 0.0002725153969422256 -- stat: 2.169278824669081e-06 - sys: 0.00012847649869804465 + norm: 2.72515397e-04 +- stat: 2.16927882e-06 + sys: 1.28476499e-04 shift_lumi: 0.0001 - norm: 0.0004282549956601488 -- stat: 4.927706714541665e-06 - sys: 0.00023459360166099973 + norm: 4.28254996e-04 +- stat: 4.92770671e-06 + sys: 2.34593602e-04 shift_lumi: 0.0001 - norm: 0.0007819786722033324 -- stat: 1.0337980574732111e-05 - sys: 0.00038669777431995215 + norm: 7.81978672e-04 +- stat: 1.03379806e-05 + sys: 3.86697774e-04 shift_lumi: 0.0001 - norm: 0.001288992581066507 -- stat: 2.1519780516698157e-05 - sys: 0.0006224392809129789 + norm: 1.28899258e-03 +- stat: 2.15197805e-05 + sys: 6.22439281e-04 shift_lumi: 0.0001 - norm: 0.002074797603043263 -- stat: 4.673301872595832e-05 - sys: 0.0010356072723919142 + norm: 2.07479760e-03 +- stat: 4.67330187e-05 + sys: 1.03560727e-03 shift_lumi: 0.0001 - norm: 0.003452024241306381 -- stat: 0.0001028176315328498 - sys: 0.0016965547543655558 + norm: 3.45202424e-03 +- stat: 1.02817632e-04 + sys: 1.69655475e-03 shift_lumi: 0.0001 - norm: 0.005655182514551853 -- stat: 0.00023300724194530865 - sys: 0.0028033770071395985 + norm: 5.65518251e-03 +- stat: 2.33007242e-04 + sys: 2.80337701e-03 shift_lumi: 0.0001 - norm: 0.00934459002379866 -- stat: 2.327464713116507e-06 - sys: 0.00012124597643245485 + norm: 9.34459002e-03 +- stat: 2.32746471e-06 + sys: 1.21245976e-04 shift_lumi: 0.0001 - norm: 0.0004041532547748496 -- stat: 4.687930004889778e-06 - sys: 0.00019435131087085434 + norm: 4.04153255e-04 +- stat: 4.68793000e-06 + sys: 1.94351311e-04 shift_lumi: 0.0001 - norm: 0.0006478377029028479 -- stat: 8.8255128108214e-06 - sys: 0.0002879106351734697 + norm: 6.47837703e-04 +- stat: 8.82551281e-06 + sys: 2.87910635e-04 shift_lumi: 0.0001 - norm: 0.000959702117244899 -- stat: 1.9901730889483523e-05 - sys: 0.0005025881272008342 + norm: 9.59702117e-04 +- stat: 1.99017309e-05 + sys: 5.02588127e-04 shift_lumi: 0.0001 - norm: 0.0016752937573361138 -- stat: 4.32775258196613e-05 - sys: 0.0008393878070101437 + norm: 1.67529376e-03 +- stat: 4.32775258e-05 + sys: 8.39387807e-04 shift_lumi: 0.0001 - norm: 0.0027979593567004795 -- stat: 9.062123242052582e-05 - sys: 0.0013338311803778452 + norm: 2.79795936e-03 +- stat: 9.06212324e-05 + sys: 1.33383118e-03 shift_lumi: 0.0001 - norm: 0.004446103934592817 -- stat: 0.00021407074539952093 - sys: 0.002327843741252165 + norm: 4.44610393e-03 +- stat: 2.14070745e-04 + sys: 2.32784374e-03 shift_lumi: 0.0001 - norm: 0.007759479137507217 -- stat: 0.00048543606499087337 - sys: 0.0038640222894751343 + norm: 7.75947914e-03 +- stat: 4.85436065e-04 + sys: 3.86402229e-03 shift_lumi: 0.0001 - norm: 0.012880074298250445 -- stat: 5.603841448148112e-06 - sys: 0.0001584020409217256 + norm: 1.28800743e-02 +- stat: 5.60384145e-06 + sys: 1.58402041e-04 shift_lumi: 0.0001 - norm: 0.0005280068030724186 -- stat: 1.19458906335059e-05 - sys: 0.00026531274788812526 + norm: 5.28006803e-04 +- stat: 1.19458906e-05 + sys: 2.65312748e-04 shift_lumi: 0.0001 - norm: 0.0008843758262937509 -- stat: 2.3878840798848338e-05 - sys: 0.00040964045875039825 + norm: 8.84375826e-04 +- stat: 2.38788408e-05 + sys: 4.09640459e-04 shift_lumi: 0.0001 - norm: 0.0013654681958346609 -- stat: 5.2926941665170476e-05 - sys: 0.0006947446179593608 + norm: 1.36546820e-03 +- stat: 5.29269417e-05 + sys: 6.94744618e-04 shift_lumi: 0.0001 - norm: 0.0023158153931978694 -- stat: 0.00010566077324652538 - sys: 0.0010555335539685143 + norm: 2.31581539e-03 +- stat: 1.05660773e-04 + sys: 1.05553355e-03 shift_lumi: 0.0001 - norm: 0.0035184451798950475 -- stat: 0.00024366952504263105 - sys: 0.0018229181670913897 + norm: 3.51844518e-03 +- stat: 2.43669525e-04 + sys: 1.82291817e-03 shift_lumi: 0.0001 - norm: 0.006076393890304632 -- stat: 0.0005496890145569661 - sys: 0.003038520354442774 + norm: 6.07639389e-03 +- stat: 5.49689015e-04 + sys: 3.03852035e-03 shift_lumi: 0.0001 - norm: 0.010128401181475913 -- stat: 0.001286875739232545 - sys: 0.005001660912709676 + norm: 1.01284012e-02 +- stat: 1.28687574e-03 + sys: 5.00166091e-03 shift_lumi: 0.0001 - norm: 0.016672203042365587 -- stat: 1.7793543763972594e-05 - sys: 0.00012645966076256835 + norm: 1.66722030e-02 +- stat: 1.77935438e-05 + sys: 1.26459661e-04 shift_lumi: 0.0001 - norm: 0.0004215322025418945 -- stat: 7.295165099015878e-05 - sys: 0.00040778638343480175 + norm: 4.21532203e-04 +- stat: 7.29516510e-05 + sys: 4.07786383e-04 shift_lumi: 0.0001 - norm: 0.0013592879447826725 -- stat: 0.00015288911989203542 - sys: 0.0006391712334574079 + norm: 1.35928794e-03 +- stat: 1.52889120e-04 + sys: 6.39171233e-04 shift_lumi: 0.0001 - norm: 0.00213057077819136 -- stat: 0.00021450104114826735 - sys: 0.0006818716970888696 + norm: 2.13057078e-03 +- stat: 2.14501041e-04 + sys: 6.81871697e-04 shift_lumi: 0.0001 - norm: 0.0022729056569628986 -- stat: 0.0006493460120847287 - sys: 0.001523799821602803 + norm: 2.27290566e-03 +- stat: 6.49346012e-04 + sys: 1.52379982e-03 shift_lumi: 0.0001 - norm: 0.00507933273867601 -- stat: 0.001107971450450383 - sys: 0.0019408761863924846 + norm: 5.07933274e-03 +- stat: 1.10797145e-03 + sys: 1.94087619e-03 shift_lumi: 0.0001 - norm: 0.006469587287974948 -- stat: 0.0028926497594473537 - sys: 0.0036524748357862993 + norm: 6.46958729e-03 +- stat: 2.89264976e-03 + sys: 3.65247484e-03 shift_lumi: 0.0001 - norm: 0.012174916119287662 -- stat: 0.006699749946150337 - sys: 0.006409775988630135 + norm: 1.21749161e-02 +- stat: 6.69974995e-03 + sys: 6.40977599e-03 shift_lumi: 0.0001 - norm: 0.02136591996210045 + norm: 2.13659200e-02 diff --git a/nnpdf_data/nnpdf_data/commondata/ATHENA_NC_45GEV_EP/data.yaml b/nnpdf_data/nnpdf_data/commondata/ATHENA_NC_45GEV_EP/data.yaml index 324bce6c21..2bdcf2cb23 100644 --- a/nnpdf_data/nnpdf_data/commondata/ATHENA_NC_45GEV_EP/data.yaml +++ b/nnpdf_data/nnpdf_data/commondata/ATHENA_NC_45GEV_EP/data.yaml @@ -1,93 +1,93 @@ data_central: -- 0.008495537894920734 -- 0.0064749989207337506 -- 0.012555472679858693 -- 0.004679610105705653 -- 0.009222896426919458 -- 0.01648488730927256 -- 0.0035409828979633 -- 0.00656466698565836 -- 0.011772580805258993 -- 0.01927999673274046 -- 0.0025724849239145927 -- 0.004922506382419332 -- 0.0087322949634807 -- 0.01420344960974076 -- 0.02286107086698205 -- 0.002132420007442807 -- 0.004058119165465245 -- 0.006661144634259548 -- 0.011277873447911205 -- 0.01762188531613362 -- 0.027405489110444662 -- 0.0017546456955652618 -- 0.003262961669672007 -- 0.005497393956632017 -- 0.009044040291180645 -- 0.014217314878625313 -- 0.022824387134530718 -- 0.03575207204486389 -- 0.0015824072010941033 -- 0.00282884114402215 -- 0.0047644324445340145 -- 0.007522611661650216 -- 0.011906791469828431 -- 0.018639894599060312 -- 0.030225114607253262 -- 0.04868507629962767 -- 0.0023736532609833776 -- 0.004050589474957798 -- 0.006311573979299005 -- 0.00985114298069296 -- 0.015845293452690822 -- 0.0258642652549809 -- 0.04193173500352452 -- 0.0687537954853826 -- 0.003177131890109135 -- 0.004987797430772481 -- 0.008426228850321153 -- 0.013643255104071009 -- 0.022057870876805667 -- 0.0362532060929738 -- 0.05959963111030635 -- 0.09874454769167333 -- 0.004393365920378955 -- 0.007091632794178253 -- 0.011153672404571697 -- 0.018687077421495148 -- 0.030995801236110516 -- 0.050403293515249505 -- 0.08563126196128086 -- 0.14309458337457048 -- 0.006106216709007802 -- 0.009996164481448265 -- 0.01607100678420103 -- 0.02645644463939984 -- 0.042729465532558575 -- 0.07129084880012726 -- 0.1190276010658528 -- 0.1985071136038613 -- 0.008243383886894351 -- 0.014036813750560248 -- 0.02256710889817846 -- 0.035237953660068135 -- 0.05919518395127921 -- 0.09510671227378309 -- 0.15950975579018511 -- 0.26657396284220236 -- 0.011446865411932848 -- 0.018367057276144544 -- 0.027348897424633593 -- 0.04656491442037939 -- 0.07483484691103826 -- 0.12786150992886278 -- 0.2109133081473551 -- 0.34508100318896745 -- 0.013531719682799577 -- 0.023005904549581103 -- 0.03479710196565216 -- 0.057459105355798276 -- 0.08990497805052745 -- 0.15596522398696214 -- 0.2507284378330005 -- 0.42636135401495795 +- 8.49553789e-03 +- 6.47499892e-03 +- 1.25554727e-02 +- 4.67961011e-03 +- 9.22289643e-03 +- 1.64848873e-02 +- 3.54098290e-03 +- 6.56466699e-03 +- 1.17725808e-02 +- 1.92799967e-02 +- 2.57248492e-03 +- 4.92250638e-03 +- 8.73229496e-03 +- 1.42034496e-02 +- 2.28610709e-02 +- 2.13242001e-03 +- 4.05811917e-03 +- 6.66114463e-03 +- 1.12778734e-02 +- 1.76218853e-02 +- 2.74054891e-02 +- 1.75464570e-03 +- 3.26296167e-03 +- 5.49739396e-03 +- 9.04404029e-03 +- 1.42173149e-02 +- 2.28243871e-02 +- 3.57520720e-02 +- 1.58240720e-03 +- 2.82884114e-03 +- 4.76443244e-03 +- 7.52261166e-03 +- 1.19067915e-02 +- 1.86398946e-02 +- 3.02251146e-02 +- 4.86850763e-02 +- 2.37365326e-03 +- 4.05058947e-03 +- 6.31157398e-03 +- 9.85114298e-03 +- 1.58452935e-02 +- 2.58642653e-02 +- 4.19317350e-02 +- 6.87537955e-02 +- 3.17713189e-03 +- 4.98779743e-03 +- 8.42622885e-03 +- 1.36432551e-02 +- 2.20578709e-02 +- 3.62532061e-02 +- 5.95996311e-02 +- 9.87445477e-02 +- 4.39336592e-03 +- 7.09163279e-03 +- 1.11536724e-02 +- 1.86870774e-02 +- 3.09958012e-02 +- 5.04032935e-02 +- 8.56312620e-02 +- 1.43094583e-01 +- 6.10621671e-03 +- 9.99616448e-03 +- 1.60710068e-02 +- 2.64564446e-02 +- 4.27294655e-02 +- 7.12908488e-02 +- 1.19027601e-01 +- 1.98507114e-01 +- 8.24338389e-03 +- 1.40368138e-02 +- 2.25671089e-02 +- 3.52379537e-02 +- 5.91951840e-02 +- 9.51067123e-02 +- 1.59509756e-01 +- 2.66573963e-01 +- 1.14468654e-02 +- 1.83670573e-02 +- 2.73488974e-02 +- 4.65649144e-02 +- 7.48348469e-02 +- 1.27861510e-01 +- 2.10913308e-01 +- 3.45081003e-01 +- 1.35317197e-02 +- 2.30059045e-02 +- 3.47971020e-02 +- 5.74591054e-02 +- 8.99049781e-02 +- 1.55965224e-01 +- 2.50728438e-01 +- 4.26361354e-01 diff --git a/nnpdf_data/nnpdf_data/commondata/ATHENA_NC_45GEV_EP/filter.py b/nnpdf_data/nnpdf_data/commondata/ATHENA_NC_45GEV_EP/filter.py index ff71e98d05..34c103f7ce 100644 --- a/nnpdf_data/nnpdf_data/commondata/ATHENA_NC_45GEV_EP/filter.py +++ b/nnpdf_data/nnpdf_data/commondata/ATHENA_NC_45GEV_EP/filter.py @@ -1,6 +1,7 @@ from pathlib import Path import numpy as np +import yaml from nnpdf_data.filter_utils.poldata_utils import ( fluctuate_data, @@ -8,6 +9,9 @@ read_excel, write_data, ) +from nnpdf_data.filter_utils.utils import prettify_float + +yaml.add_representer(float, prettify_float) np.random.seed(1234567890) diff --git a/nnpdf_data/nnpdf_data/commondata/ATHENA_NC_45GEV_EP/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/ATHENA_NC_45GEV_EP/uncertainties.yaml index dea33194c6..b52721d3d7 100644 --- a/nnpdf_data/nnpdf_data/commondata/ATHENA_NC_45GEV_EP/uncertainties.yaml +++ b/nnpdf_data/nnpdf_data/commondata/ATHENA_NC_45GEV_EP/uncertainties.yaml @@ -16,371 +16,371 @@ definitions: treatment: MULT type: CORR bins: -- stat: 2.906582623515438e-07 - sys: 0.000127433068423811 +- stat: 2.90658262e-07 + sys: 1.27433068e-04 shift_lumi: 0.0001 - norm: 0.0004247768947460367 -- stat: 2.1209151994654362e-07 - sys: 9.712498381100627e-05 + norm: 4.24776895e-04 +- stat: 2.12091520e-07 + sys: 9.71249838e-05 shift_lumi: 0.0001 - norm: 0.00032374994603668754 -- stat: 5.388576032889534e-07 - sys: 0.0001883320901978804 + norm: 3.23749946e-04 +- stat: 5.38857603e-07 + sys: 1.88332090e-04 shift_lumi: 0.0001 - norm: 0.0006277736339929346 -- stat: 1.506301405481431e-07 - sys: 7.01941515855848e-05 + norm: 6.27773634e-04 +- stat: 1.50630141e-07 + sys: 7.01941516e-05 shift_lumi: 0.0001 - norm: 0.00023398050528528267 -- stat: 3.771584027216592e-07 - sys: 0.00013834344640379186 + norm: 2.33980505e-04 +- stat: 3.77158403e-07 + sys: 1.38343446e-04 shift_lumi: 0.0001 - norm: 0.0004611448213459729 -- stat: 8.476660433434479e-07 - sys: 0.0002472733096390884 + norm: 4.61144821e-04 +- stat: 8.47666043e-07 + sys: 2.47273310e-04 shift_lumi: 0.0001 - norm: 0.0008242443654636279 -- stat: 1.1397931441947618e-07 - sys: 5.3114743469449504e-05 + norm: 8.24244365e-04 +- stat: 1.13979314e-07 + sys: 5.31147435e-05 shift_lumi: 0.0001 - norm: 0.00017704914489816498 -- stat: 2.628718454573844e-07 - sys: 9.84700047848754e-05 + norm: 1.77049145e-04 +- stat: 2.62871845e-07 + sys: 9.84700048e-05 shift_lumi: 0.0001 - norm: 0.000328233349282918 -- stat: 5.767560155136511e-07 - sys: 0.0001765887120788849 + norm: 3.28233349e-04 +- stat: 5.76756016e-07 + sys: 1.76588712e-04 shift_lumi: 0.0001 - norm: 0.0005886290402629496 -- stat: 1.2099675875077547e-06 - sys: 0.0002891999509911069 + norm: 5.88629040e-04 +- stat: 1.20996759e-06 + sys: 2.89199951e-04 shift_lumi: 0.0001 - norm: 0.000963999836637023 -- stat: 8.353380978523867e-08 - sys: 3.8587273858718893e-05 + norm: 9.63999837e-04 +- stat: 8.35338098e-08 + sys: 3.85872739e-05 shift_lumi: 0.0001 - norm: 0.00012862424619572964 -- stat: 1.9691478018970823e-07 - sys: 7.383759573628999e-05 + norm: 1.28624246e-04 +- stat: 1.96914780e-07 + sys: 7.38375957e-05 shift_lumi: 0.0001 - norm: 0.0002461253191209666 -- stat: 4.207367432892503e-07 - sys: 0.0001309844244522105 + norm: 2.46125319e-04 +- stat: 4.20736743e-07 + sys: 1.30984424e-04 shift_lumi: 0.0001 - norm: 0.000436614748174035 -- stat: 8.568704889138486e-07 - sys: 0.0002130517441461114 + norm: 4.36614748e-04 +- stat: 8.56870489e-07 + sys: 2.13051744e-04 shift_lumi: 0.0001 - norm: 0.000710172480487038 -- stat: 1.7864421678152981e-06 - sys: 0.00034291606300473074 + norm: 7.10172480e-04 +- stat: 1.78644217e-06 + sys: 3.42916063e-04 shift_lumi: 0.0001 - norm: 0.0011430535433491025 -- stat: 7.019373903230296e-08 - sys: 3.198630011164211e-05 + norm: 1.14305354e-03 +- stat: 7.01937390e-08 + sys: 3.19863001e-05 shift_lumi: 0.0001 - norm: 0.00010662100037214036 -- stat: 1.6381551693517266e-07 - sys: 6.087178748197867e-05 + norm: 1.06621000e-04 +- stat: 1.63815517e-07 + sys: 6.08717875e-05 shift_lumi: 0.0001 - norm: 0.00020290595827326222 -- stat: 3.209452167749396e-07 - sys: 9.991716951389321e-05 + norm: 2.02905958e-04 +- stat: 3.20945217e-07 + sys: 9.99171695e-05 shift_lumi: 0.0001 - norm: 0.00033305723171297736 -- stat: 6.666765130196395e-07 - sys: 0.0001691681017186681 + norm: 3.33057232e-04 +- stat: 6.66676513e-07 + sys: 1.69168102e-04 shift_lumi: 0.0001 - norm: 0.0005638936723955602 -- stat: 1.3270900628583136e-06 - sys: 0.0002643282797420043 + norm: 5.63893672e-04 +- stat: 1.32709006e-06 + sys: 2.64328280e-04 shift_lumi: 0.0001 - norm: 0.000881094265806681 -- stat: 2.71855875883023e-06 - sys: 0.00041108233665666994 + norm: 8.81094266e-04 +- stat: 2.71855876e-06 + sys: 4.11082337e-04 shift_lumi: 0.0001 - norm: 0.0013702744555222333 -- stat: 5.87529973301235e-08 - sys: 2.631968543347893e-05 + norm: 1.37027446e-03 +- stat: 5.87529973e-08 + sys: 2.63196854e-05 shift_lumi: 0.0001 - norm: 8.77322847782631e-05 -- stat: 1.33434590882264e-07 - sys: 4.894442504508011e-05 + norm: 8.77322848e-05 +- stat: 1.33434591e-07 + sys: 4.89444250e-05 shift_lumi: 0.0001 - norm: 0.00016314808348360035 -- stat: 2.6709957022495356e-07 - sys: 8.246090934948027e-05 + norm: 1.63148083e-04 +- stat: 2.67099570e-07 + sys: 8.24609093e-05 shift_lumi: 0.0001 - norm: 0.00027486969783160084 -- stat: 5.346264322597238e-07 - sys: 0.00013566060436770967 + norm: 2.74869698e-04 +- stat: 5.34626432e-07 + sys: 1.35660604e-04 shift_lumi: 0.0001 - norm: 0.0004522020145590323 -- stat: 1.0534253236681345e-06 - sys: 0.0002132597231793797 + norm: 4.52202015e-04 +- stat: 1.05342532e-06 + sys: 2.13259723e-04 shift_lumi: 0.0001 - norm: 0.0007108657439312657 -- stat: 2.190193841607403e-06 - sys: 0.0003423658070179608 + norm: 7.10865744e-04 +- stat: 2.19019384e-06 + sys: 3.42365807e-04 shift_lumi: 0.0001 - norm: 0.0011412193567265359 -- stat: 4.574286708091571e-06 - sys: 0.0005362810806729584 + norm: 1.14121936e-03 +- stat: 4.57428671e-06 + sys: 5.36281081e-04 shift_lumi: 0.0001 - norm: 0.0017876036022431946 -- stat: 5.3946767227943324e-08 - sys: 2.3736108016411548e-05 + norm: 1.78760360e-03 +- stat: 5.39467672e-08 + sys: 2.37361080e-05 shift_lumi: 0.0001 - norm: 7.912036005470517e-05 -- stat: 1.1682715861353452e-07 - sys: 4.243261716033225e-05 + norm: 7.91203601e-05 +- stat: 1.16827159e-07 + sys: 4.24326172e-05 shift_lumi: 0.0001 - norm: 0.00014144205720110752 -- stat: 2.33416539529367e-07 - sys: 7.146648666801022e-05 + norm: 1.41442057e-04 +- stat: 2.33416540e-07 + sys: 7.14664867e-05 shift_lumi: 0.0001 - norm: 0.00023822162222670071 -- stat: 4.507808319901849e-07 - sys: 0.00011283917492475324 + norm: 2.38221622e-04 +- stat: 4.50780832e-07 + sys: 1.12839175e-04 shift_lumi: 0.0001 - norm: 0.00037613058308251084 -- stat: 8.870490868591825e-07 - sys: 0.00017860187204742645 + norm: 3.76130583e-04 +- stat: 8.87049087e-07 + sys: 1.78601872e-04 shift_lumi: 0.0001 - norm: 0.0005953395734914216 -- stat: 1.766015016871816e-06 - sys: 0.0002795984189859047 + norm: 5.95339573e-04 +- stat: 1.76601502e-06 + sys: 2.79598419e-04 shift_lumi: 0.0001 - norm: 0.0009319947299530157 -- stat: 3.732526313849551e-06 - sys: 0.00045337671910879895 + norm: 9.31994730e-04 +- stat: 3.73252631e-06 + sys: 4.53376719e-04 shift_lumi: 0.0001 - norm: 0.0015112557303626631 -- stat: 8.06221258497037e-06 - sys: 0.000730276144494415 + norm: 1.51125573e-03 +- stat: 8.06221258e-06 + sys: 7.30276144e-04 shift_lumi: 0.0001 - norm: 0.0024342538149813835 -- stat: 9.89896036800113e-08 - sys: 3.5604798914750666e-05 + norm: 2.43425381e-03 +- stat: 9.89896037e-08 + sys: 3.56047989e-05 shift_lumi: 0.0001 - norm: 0.00011868266304916887 -- stat: 2.0172439602569908e-07 - sys: 6.075884212436697e-05 + norm: 1.18682663e-04 +- stat: 2.01724396e-07 + sys: 6.07588421e-05 shift_lumi: 0.0001 - norm: 0.00020252947374788991 -- stat: 3.858777227030162e-07 - sys: 9.467360968948508e-05 + norm: 2.02529474e-04 +- stat: 3.85877723e-07 + sys: 9.46736097e-05 shift_lumi: 0.0001 - norm: 0.00031557869896495027 -- stat: 7.458702954260066e-07 - sys: 0.0001477671447103944 + norm: 3.15578699e-04 +- stat: 7.45870295e-07 + sys: 1.47767145e-04 shift_lumi: 0.0001 - norm: 0.0004925571490346479 -- stat: 1.5076593709705373e-06 - sys: 0.00023767940179036232 + norm: 4.92557149e-04 +- stat: 1.50765937e-06 + sys: 2.37679402e-04 shift_lumi: 0.0001 - norm: 0.0007922646726345412 -- stat: 3.1730568748443006e-06 - sys: 0.0003879639788247135 + norm: 7.92264673e-04 +- stat: 3.17305687e-06 + sys: 3.87963979e-04 shift_lumi: 0.0001 - norm: 0.001293213262749045 -- stat: 6.791065297837775e-06 - sys: 0.0006289760250528678 + norm: 1.29321326e-03 +- stat: 6.79106530e-06 + sys: 6.28976025e-04 shift_lumi: 0.0001 - norm: 0.002096586750176226 -- stat: 1.5060140570483718e-05 - sys: 0.001031306932280739 + norm: 2.09658675e-03 +- stat: 1.50601406e-05 + sys: 1.03130693e-03 shift_lumi: 0.0001 - norm: 0.0034376897742691304 -- stat: 1.6208427075541962e-07 - sys: 4.765697835163702e-05 + norm: 3.43768977e-03 +- stat: 1.62084271e-07 + sys: 4.76569784e-05 shift_lumi: 0.0001 - norm: 0.00015885659450545674 -- stat: 3.1100302303584085e-07 - sys: 7.481696146158721e-05 + norm: 1.58856595e-04 +- stat: 3.11003023e-07 + sys: 7.48169615e-05 shift_lumi: 0.0001 - norm: 0.0002493898715386241 -- stat: 6.516309445256035e-07 - sys: 0.00012639343275481729 + norm: 2.49389872e-04 +- stat: 6.51630945e-07 + sys: 1.26393433e-04 shift_lumi: 0.0001 - norm: 0.00042131144251605766 -- stat: 1.3257582059843262e-06 - sys: 0.00020464882656106513 + norm: 4.21311443e-04 +- stat: 1.32575821e-06 + sys: 2.04648827e-04 shift_lumi: 0.0001 - norm: 0.0006821627552035505 -- stat: 2.723946113852462e-06 - sys: 0.000330868063152085 + norm: 6.82162755e-04 +- stat: 2.72394611e-06 + sys: 3.30868063e-04 shift_lumi: 0.0001 - norm: 0.0011028935438402833 -- stat: 5.827362155156865e-06 - sys: 0.0005437980913946069 + norm: 1.10289354e-03 +- stat: 5.82736216e-06 + sys: 5.43798091e-04 shift_lumi: 0.0001 - norm: 0.00181266030464869 -- stat: 1.2741265827977549e-05 - sys: 0.0008939944666545951 + norm: 1.81266030e-03 +- stat: 1.27412658e-05 + sys: 8.93994467e-04 shift_lumi: 0.0001 - norm: 0.0029799815555153174 -- stat: 2.878595908377846e-05 - sys: 0.0014811682153750999 + norm: 2.97998156e-03 +- stat: 2.87859591e-05 + sys: 1.48116822e-03 shift_lumi: 0.0001 - norm: 0.004937227384583667 -- stat: 2.810538548388693e-07 - sys: 6.590048880568433e-05 + norm: 4.93722738e-03 +- stat: 2.81053855e-07 + sys: 6.59004888e-05 shift_lumi: 0.0001 - norm: 0.00021966829601894778 -- stat: 5.627783651465195e-07 - sys: 0.00010637449191267381 + norm: 2.19668296e-04 +- stat: 5.62778365e-07 + sys: 1.06374492e-04 shift_lumi: 0.0001 - norm: 0.00035458163970891266 -- stat: 1.1154495186123015e-06 - sys: 0.00016730508606857544 + norm: 3.54581640e-04 +- stat: 1.11544952e-06 + sys: 1.67305086e-04 shift_lumi: 0.0001 - norm: 0.0005576836202285849 -- stat: 2.3682132407671025e-06 - sys: 0.00028030616132242723 + norm: 5.57683620e-04 +- stat: 2.36821324e-06 + sys: 2.80306161e-04 shift_lumi: 0.0001 - norm: 0.0009343538710747573 -- stat: 5.0701325675384004e-06 - sys: 0.0004649370185416578 + norm: 9.34353871e-04 +- stat: 5.07013257e-06 + sys: 4.64937019e-04 shift_lumi: 0.0001 - norm: 0.0015497900618055259 -- stat: 1.0795671726677161e-05 - sys: 0.0007560494027287427 + norm: 1.54979006e-03 +- stat: 1.07956717e-05 + sys: 7.56049403e-04 shift_lumi: 0.0001 - norm: 0.002520164675762475 -- stat: 2.472048326974577e-05 - sys: 0.001284468929419213 + norm: 2.52016468e-03 +- stat: 2.47204833e-05 + sys: 1.28446893e-03 shift_lumi: 0.0001 - norm: 0.004281563098064043 -- stat: 5.5561873861602714e-05 - sys: 0.002146418750618557 + norm: 4.28156310e-03 +- stat: 5.55618739e-05 + sys: 2.14641875e-03 shift_lumi: 0.0001 - norm: 0.0071547291687285245 -- stat: 5.117733199423929e-07 - sys: 9.159325063511705e-05 + norm: 7.15472917e-03 +- stat: 5.11773320e-07 + sys: 9.15932506e-05 shift_lumi: 0.0001 - norm: 0.0003053108354503901 -- stat: 1.0523054606547603e-06 - sys: 0.00014994246722172398 + norm: 3.05310835e-04 +- stat: 1.05230546e-06 + sys: 1.49942467e-04 shift_lumi: 0.0001 - norm: 0.0004998082240724132 -- stat: 2.1668178291824635e-06 - sys: 0.00024106510176301544 + norm: 4.99808224e-04 +- stat: 2.16681783e-06 + sys: 2.41065102e-04 shift_lumi: 0.0001 - norm: 0.0008035503392100515 -- stat: 4.584693767030418e-06 - sys: 0.0003968466695909977 + norm: 8.03550339e-04 +- stat: 4.58469377e-06 + sys: 3.96846670e-04 shift_lumi: 0.0001 - norm: 0.001322822231969992 -- stat: 9.601863466575638e-06 - sys: 0.0006409419829883786 + norm: 1.32282223e-03 +- stat: 9.60186347e-06 + sys: 6.40941983e-04 shift_lumi: 0.0001 - norm: 0.0021364732766279287 -- stat: 2.118677858343148e-05 - sys: 0.0010693627320019089 + norm: 2.13647328e-03 +- stat: 2.11867786e-05 + sys: 1.06936273e-03 shift_lumi: 0.0001 - norm: 0.003564542440006363 -- stat: 4.7084431049770434e-05 - sys: 0.0017854140159877922 + norm: 3.56454244e-03 +- stat: 4.70844310e-05 + sys: 1.78541402e-03 shift_lumi: 0.0001 - norm: 0.005951380053292641 -- stat: 0.00010770006251892446 - sys: 0.00297760670405792 + norm: 5.95138005e-03 +- stat: 1.07700063e-04 + sys: 2.97760670e-03 shift_lumi: 0.0001 - norm: 0.009925355680193065 -- stat: 1.0079698699799828e-06 - sys: 0.00012365075830341528 + norm: 9.92535568e-03 +- stat: 1.00796987e-06 + sys: 1.23650758e-04 shift_lumi: 0.0001 - norm: 0.00041216919434471756 -- stat: 2.1824024690560554e-06 - sys: 0.00021055220625840372 + norm: 4.12169194e-04 +- stat: 2.18240247e-06 + sys: 2.10552206e-04 shift_lumi: 0.0001 - norm: 0.0007018406875280124 -- stat: 4.532029035326099e-06 - sys: 0.0003385066334726769 + norm: 7.01840688e-04 +- stat: 4.53202904e-06 + sys: 3.38506633e-04 shift_lumi: 0.0001 - norm: 0.001128355444908923 -- stat: 9.188225176912424e-06 - sys: 0.0005285693049010221 + norm: 1.12835544e-03 +- stat: 9.18822518e-06 + sys: 5.28569305e-04 shift_lumi: 0.0001 - norm: 0.0017618976830034068 -- stat: 2.0156608135631914e-05 - sys: 0.0008879277592691882 + norm: 1.76189768e-03 +- stat: 2.01566081e-05 + sys: 8.87927759e-04 shift_lumi: 0.0001 - norm: 0.0029597591975639606 -- stat: 4.3128492086649834e-05 - sys: 0.0014266006841067464 + norm: 2.95975920e-03 +- stat: 4.31284921e-05 + sys: 1.42660068e-03 shift_lumi: 0.0001 - norm: 0.0047553356136891545 -- stat: 9.881292687370604e-05 - sys: 0.0023926463368527766 + norm: 4.75533561e-03 +- stat: 9.88129269e-05 + sys: 2.39264634e-03 shift_lumi: 0.0001 - norm: 0.007975487789509256 -- stat: 0.00022449989676567368 - sys: 0.0039986094426330355 + norm: 7.97548779e-03 +- stat: 2.24499897e-04 + sys: 3.99860944e-03 shift_lumi: 0.0001 - norm: 0.013328698142110119 -- stat: 2.646413889950843e-06 - sys: 0.0001717029811789927 + norm: 1.33286981e-02 +- stat: 2.64641389e-06 + sys: 1.71702981e-04 shift_lumi: 0.0001 - norm: 0.0005723432705966424 -- stat: 5.46590402719389e-06 - sys: 0.00027550585914216816 + norm: 5.72343271e-04 +- stat: 5.46590403e-06 + sys: 2.75505859e-04 shift_lumi: 0.0001 - norm: 0.0009183528638072272 -- stat: 1.063031509966051e-05 - sys: 0.00041023346136950394 + norm: 9.18352864e-04 +- stat: 1.06303151e-05 + sys: 4.10233461e-04 shift_lumi: 0.0001 - norm: 0.0013674448712316797 -- stat: 2.4132585929235264e-05 - sys: 0.0006984737163056909 + norm: 1.36744487e-03 +- stat: 2.41325859e-05 + sys: 6.98473716e-04 shift_lumi: 0.0001 - norm: 0.0023282457210189694 -- stat: 4.969157991491966e-05 - sys: 0.0011225227036655739 + norm: 2.32824572e-03 +- stat: 4.96915799e-05 + sys: 1.12252270e-03 shift_lumi: 0.0001 - norm: 0.0037417423455519128 -- stat: 0.00011544623507368242 - sys: 0.0019179226489329415 + norm: 3.74174235e-03 +- stat: 1.15446235e-04 + sys: 1.91792265e-03 shift_lumi: 0.0001 - norm: 0.006393075496443139 -- stat: 0.0002596047590793393 - sys: 0.0031636996222103265 + norm: 6.39307550e-03 +- stat: 2.59604759e-04 + sys: 3.16369962e-03 shift_lumi: 0.0001 - norm: 0.010545665407367755 -- stat: 0.0006105729660033536 - sys: 0.005176215047834511 + norm: 1.05456654e-02 +- stat: 6.10572966e-04 + sys: 5.17621505e-03 shift_lumi: 0.0001 - norm: 0.017254050159448375 -- stat: 1.2710892914666807e-05 - sys: 0.00020297579524199364 + norm: 1.72540502e-02 +- stat: 1.27108929e-05 + sys: 2.02975795e-04 shift_lumi: 0.0001 - norm: 0.0006765859841399788 -- stat: 2.7665010883530222e-05 - sys: 0.0003450885682437166 + norm: 6.76585984e-04 +- stat: 2.76650109e-05 + sys: 3.45088568e-04 shift_lumi: 0.0001 - norm: 0.001150295227479055 -- stat: 5.480595623703129e-05 - sys: 0.0005219565294847824 + norm: 1.15029523e-03 +- stat: 5.48059562e-05 + sys: 5.21956529e-04 shift_lumi: 0.0001 - norm: 0.001739855098282608 -- stat: 0.00012027752567093754 - sys: 0.0008618865803369741 + norm: 1.73985510e-03 +- stat: 1.20277526e-04 + sys: 8.61886580e-04 shift_lumi: 0.0001 - norm: 0.002872955267789914 -- stat: 0.000263546581949871 - sys: 0.0013485746707579118 + norm: 2.87295527e-03 +- stat: 2.63546582e-04 + sys: 1.34857467e-03 shift_lumi: 0.0001 - norm: 0.0044952489025263725 -- stat: 0.0006030679205674428 - sys: 0.002339478359804432 + norm: 4.49524890e-03 +- stat: 6.03067921e-04 + sys: 2.33947836e-03 shift_lumi: 0.0001 - norm: 0.0077982611993481065 -- stat: 0.0014618444706712768 - sys: 0.003760926567495007 + norm: 7.79826120e-03 +- stat: 1.46184447e-03 + sys: 3.76092657e-03 shift_lumi: 0.0001 - norm: 0.012536421891650025 -- stat: 0.0034007847259558107 - sys: 0.006395420310224369 + norm: 1.25364219e-02 +- stat: 3.40078473e-03 + sys: 6.39542031e-03 shift_lumi: 0.0001 - norm: 0.021318067700747897 + norm: 2.13180677e-02 diff --git a/nnpdf_data/nnpdf_data/commondata/ATHENA_NC_63GEV_EP/data.yaml b/nnpdf_data/nnpdf_data/commondata/ATHENA_NC_63GEV_EP/data.yaml index 88978e7778..75f0103680 100644 --- a/nnpdf_data/nnpdf_data/commondata/ATHENA_NC_63GEV_EP/data.yaml +++ b/nnpdf_data/nnpdf_data/commondata/ATHENA_NC_63GEV_EP/data.yaml @@ -1,92 +1,92 @@ data_central: -- 0.0050924929643912644 -- 0.0040098330922943215 -- 0.00793067222782162 -- 0.0029934797368306723 -- 0.005927420394400698 -- 0.010738620208166271 -- 0.0023217133920093525 -- 0.004231825662972791 -- 0.007640586075234136 -- 0.012432429810721094 -- 0.0016616086727887062 -- 0.0031181071486205904 -- 0.005581688046097754 -- 0.008930431265129523 -- 0.014340649202378876 -- 0.001319251268070941 -- 0.0025402790266655325 -- 0.004040956327103089 -- 0.006938148559584291 -- 0.010629220878520146 -- 0.016302700553267865 -- 0.0009807102534289522 -- 0.001933453787760163 -- 0.0032210161110523034 -- 0.005329585386045322 -- 0.008317672090524272 -- 0.013182254282681325 -- 0.020246209268747466 -- 0.0015333472621698939 -- 0.0028105003499530852 -- 0.004415580668436827 -- 0.006858381743538397 -- 0.010706414874867197 -- 0.016599733329791193 -- 0.026888834108561563 -- 0.0022895984491328675 -- 0.003705161980254377 -- 0.005862109319394846 -- 0.009051786459600383 -- 0.014137368969262964 -- 0.022789878670216264 -- 0.0374193125645718 -- 0.00308263932198742 -- 0.004774938415189225 -- 0.007544327144542761 -- 0.011891234478257105 -- 0.019935707420153062 -- 0.032583257219759645 -- 0.053393055117918684 -- 0.004255233864950322 -- 0.006574600155110878 -- 0.010361048566695454 -- 0.01720049890685464 -- 0.02810867686770197 -- 0.045504045760349714 -- 0.07712260458001062 -- 0.005729152998050519 -- 0.008920388285110794 -- 0.015179306678442372 -- 0.024575405257098493 -- 0.040031812144506414 -- 0.06668955693358139 -- 0.11106321914668706 -- 0.00808125365383763 -- 0.01253129253591181 -- 0.02092997505877906 -- 0.03413382279345473 -- 0.05585562964920291 -- 0.09200426494812665 -- 0.15635844991715583 -- 0.011338310815878059 -- 0.017094547282195973 -- 0.028869447870093927 -- 0.045132930888056234 -- 0.07512741865990763 -- 0.12468304617621734 -- 0.20599259785177707 -- 0.014663702216926417 -- 0.02097733618094315 -- 0.03646596332499243 -- 0.057509075726280834 -- 0.10009595747055573 -- 0.1633279033431 -- 0.2651206858585046 -- 0.017576870447045645 -- 0.030005569516483695 -- 0.044430093204549034 -- 0.07332181357660923 -- 0.11302429403560434 -- 0.1985418814172436 -- 0.3147568992050972 +- 5.09249296e-03 +- 4.00983309e-03 +- 7.93067223e-03 +- 2.99347974e-03 +- 5.92742039e-03 +- 1.07386202e-02 +- 2.32171339e-03 +- 4.23182566e-03 +- 7.64058608e-03 +- 1.24324298e-02 +- 1.66160867e-03 +- 3.11810715e-03 +- 5.58168805e-03 +- 8.93043127e-03 +- 1.43406492e-02 +- 1.31925127e-03 +- 2.54027903e-03 +- 4.04095633e-03 +- 6.93814856e-03 +- 1.06292209e-02 +- 1.63027006e-02 +- 9.80710253e-04 +- 1.93345379e-03 +- 3.22101611e-03 +- 5.32958539e-03 +- 8.31767209e-03 +- 1.31822543e-02 +- 2.02462093e-02 +- 1.53334726e-03 +- 2.81050035e-03 +- 4.41558067e-03 +- 6.85838174e-03 +- 1.07064149e-02 +- 1.65997333e-02 +- 2.68888341e-02 +- 2.28959845e-03 +- 3.70516198e-03 +- 5.86210932e-03 +- 9.05178646e-03 +- 1.41373690e-02 +- 2.27898787e-02 +- 3.74193126e-02 +- 3.08263932e-03 +- 4.77493842e-03 +- 7.54432714e-03 +- 1.18912345e-02 +- 1.99357074e-02 +- 3.25832572e-02 +- 5.33930551e-02 +- 4.25523386e-03 +- 6.57460016e-03 +- 1.03610486e-02 +- 1.72004989e-02 +- 2.81086769e-02 +- 4.55040458e-02 +- 7.71226046e-02 +- 5.72915300e-03 +- 8.92038829e-03 +- 1.51793067e-02 +- 2.45754053e-02 +- 4.00318121e-02 +- 6.66895569e-02 +- 1.11063219e-01 +- 8.08125365e-03 +- 1.25312925e-02 +- 2.09299751e-02 +- 3.41338228e-02 +- 5.58556296e-02 +- 9.20042649e-02 +- 1.56358450e-01 +- 1.13383108e-02 +- 1.70945473e-02 +- 2.88694479e-02 +- 4.51329309e-02 +- 7.51274187e-02 +- 1.24683046e-01 +- 2.05992598e-01 +- 1.46637022e-02 +- 2.09773362e-02 +- 3.64659633e-02 +- 5.75090757e-02 +- 1.00095957e-01 +- 1.63327903e-01 +- 2.65120686e-01 +- 1.75768704e-02 +- 3.00055695e-02 +- 4.44300932e-02 +- 7.33218136e-02 +- 1.13024294e-01 +- 1.98541881e-01 +- 3.14756899e-01 diff --git a/nnpdf_data/nnpdf_data/commondata/ATHENA_NC_63GEV_EP/filter.py b/nnpdf_data/nnpdf_data/commondata/ATHENA_NC_63GEV_EP/filter.py index 23b28e453f..d31038f71f 100644 --- a/nnpdf_data/nnpdf_data/commondata/ATHENA_NC_63GEV_EP/filter.py +++ b/nnpdf_data/nnpdf_data/commondata/ATHENA_NC_63GEV_EP/filter.py @@ -1,6 +1,7 @@ from pathlib import Path import numpy as np +import yaml from nnpdf_data.filter_utils.poldata_utils import ( fluctuate_data, @@ -8,6 +9,9 @@ read_excel, write_data, ) +from nnpdf_data.filter_utils.utils import prettify_float + +yaml.add_representer(float, prettify_float) np.random.seed(1234567890) diff --git a/nnpdf_data/nnpdf_data/commondata/ATHENA_NC_63GEV_EP/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/ATHENA_NC_63GEV_EP/uncertainties.yaml index d534c20cd6..faa810a492 100644 --- a/nnpdf_data/nnpdf_data/commondata/ATHENA_NC_63GEV_EP/uncertainties.yaml +++ b/nnpdf_data/nnpdf_data/commondata/ATHENA_NC_63GEV_EP/uncertainties.yaml @@ -16,367 +16,367 @@ definitions: treatment: MULT type: CORR bins: -- stat: 1.4077901130724413e-07 - sys: 7.638739446586896e-05 +- stat: 1.40779011e-07 + sys: 7.63873945e-05 shift_lumi: 0.0001 - norm: 0.0002546246482195632 -- stat: 1.0785357509227954e-07 - sys: 6.014749638441482e-05 + norm: 2.54624648e-04 +- stat: 1.07853575e-07 + sys: 6.01474964e-05 shift_lumi: 0.0001 - norm: 0.00020049165461471607 -- stat: 2.7313151437311854e-07 - sys: 0.0001189600834173243 + norm: 2.00491655e-04 +- stat: 2.73131514e-07 + sys: 1.18960083e-04 shift_lumi: 0.0001 - norm: 0.00039653361139108107 -- stat: 8.019693180728625e-08 - sys: 4.490219605246008e-05 + norm: 3.96533611e-04 +- stat: 8.01969318e-08 + sys: 4.49021961e-05 shift_lumi: 0.0001 - norm: 0.00014967398684153364 -- stat: 1.9907841700460948e-07 - sys: 8.891130591601046e-05 + norm: 1.49673987e-04 +- stat: 1.99078417e-07 + sys: 8.89113059e-05 shift_lumi: 0.0001 - norm: 0.00029637101972003493 -- stat: 4.4319303495686526e-07 - sys: 0.00016107930312249407 + norm: 2.96371020e-04 +- stat: 4.43193035e-07 + sys: 1.61079303e-04 shift_lumi: 0.0001 - norm: 0.0005369310104083136 -- stat: 6.286077305066028e-08 - sys: 3.482570088014029e-05 + norm: 5.36931010e-04 +- stat: 6.28607731e-08 + sys: 3.48257009e-05 shift_lumi: 0.0001 - norm: 0.00011608566960046761 -- stat: 1.4152790431648236e-07 - sys: 6.347738494459187e-05 + norm: 1.16085670e-04 +- stat: 1.41527904e-07 + sys: 6.34773849e-05 shift_lumi: 0.0001 - norm: 0.00021159128314863953 -- stat: 3.071790341178461e-07 - sys: 0.00011460879112851205 + norm: 2.11591283e-04 +- stat: 3.07179034e-07 + sys: 1.14608791e-04 shift_lumi: 0.0001 - norm: 0.0003820293037617068 -- stat: 6.281029234144336e-07 - sys: 0.0001864864471608164 + norm: 3.82029304e-04 +- stat: 6.28102923e-07 + sys: 1.86486447e-04 shift_lumi: 0.0001 - norm: 0.0006216214905360547 -- stat: 4.5756854881176895e-08 - sys: 2.4924130091830595e-05 + norm: 6.21621491e-04 +- stat: 4.57568549e-08 + sys: 2.49241301e-05 shift_lumi: 0.0001 - norm: 8.308043363943531e-05 -- stat: 1.0505759830437421e-07 - sys: 4.677160722930886e-05 + norm: 8.30804336e-05 +- stat: 1.05057598e-07 + sys: 4.67716072e-05 shift_lumi: 0.0001 - norm: 0.0001559053574310295 -- stat: 2.2440392999497687e-07 - sys: 8.372532069146632e-05 + norm: 1.55905357e-04 +- stat: 2.24403930e-07 + sys: 8.37253207e-05 shift_lumi: 0.0001 - norm: 0.00027908440230488767 -- stat: 4.4164537501808335e-07 - sys: 0.00013395646897694285 + norm: 2.79084402e-04 +- stat: 4.41645375e-07 + sys: 1.33956469e-04 shift_lumi: 0.0001 - norm: 0.0004465215632564762 -- stat: 9.030848008282235e-07 - sys: 0.00021510973803568316 + norm: 4.46521563e-04 +- stat: 9.03084801e-07 + sys: 2.15109738e-04 shift_lumi: 0.0001 - norm: 0.0007170324601189439 -- stat: 3.7080114449154025e-08 - sys: 1.9788769021064115e-05 + norm: 7.17032460e-04 +- stat: 3.70801144e-08 + sys: 1.97887690e-05 shift_lumi: 0.0001 - norm: 6.596256340354704e-05 -- stat: 8.69446670983276e-08 - sys: 3.810418539998299e-05 + norm: 6.59625634e-05 +- stat: 8.69446671e-08 + sys: 3.81041854e-05 shift_lumi: 0.0001 - norm: 0.00012701395133327663 -- stat: 1.6389868249486226e-07 - sys: 6.061434490654632e-05 + norm: 1.27013951e-04 +- stat: 1.63898682e-07 + sys: 6.06143449e-05 shift_lumi: 0.0001 - norm: 0.00020204781635515444 -- stat: 3.40650582161212e-07 - sys: 0.00010407222839376438 + norm: 2.02047816e-04 +- stat: 3.40650582e-07 + sys: 1.04072228e-04 shift_lumi: 0.0001 - norm: 0.00034690742797921454 -- stat: 6.542353243098144e-07 - sys: 0.0001594383131778022 + norm: 3.46907428e-04 +- stat: 6.54235324e-07 + sys: 1.59438313e-04 shift_lumi: 0.0001 - norm: 0.0005314610439260073 -- stat: 1.2934536447679556e-06 - sys: 0.00024454050829901796 + norm: 5.31461044e-04 +- stat: 1.29345364e-06 + sys: 2.44540508e-04 shift_lumi: 0.0001 - norm: 0.0008151350276633933 -- stat: 2.822771291607899e-08 - sys: 1.4710653801434281e-05 + norm: 8.15135028e-04 +- stat: 2.82277129e-08 + sys: 1.47106538e-05 shift_lumi: 0.0001 - norm: 4.903551267144761e-05 -- stat: 6.748220394050924e-08 - sys: 2.9001806816402447e-05 + norm: 4.90355127e-05 +- stat: 6.74822039e-08 + sys: 2.90018068e-05 shift_lumi: 0.0001 - norm: 9.667268938800814e-05 -- stat: 1.3293438805263375e-07 - sys: 4.831524166578455e-05 + norm: 9.66726894e-05 +- stat: 1.32934388e-07 + sys: 4.83152417e-05 shift_lumi: 0.0001 - norm: 0.00016105080555261518 -- stat: 2.6546539396105573e-07 - sys: 7.994378079067984e-05 + norm: 1.61050806e-04 +- stat: 2.65465394e-07 + sys: 7.99437808e-05 shift_lumi: 0.0001 - norm: 0.0002664792693022661 -- stat: 5.119580221202876e-07 - sys: 0.00012476508135786407 + norm: 2.66479269e-04 +- stat: 5.11958022e-07 + sys: 1.24765081e-04 shift_lumi: 0.0001 - norm: 0.0004158836045262136 -- stat: 1.0271177961992067e-06 - sys: 0.00019773381424021988 + norm: 4.15883605e-04 +- stat: 1.02711780e-06 + sys: 1.97733814e-04 shift_lumi: 0.0001 - norm: 0.0006591127141340662 -- stat: 2.0601375069600838e-06 - sys: 0.000303693139031212 + norm: 6.59112714e-04 +- stat: 2.06013751e-06 + sys: 3.03693139e-04 shift_lumi: 0.0001 - norm: 0.0010123104634373733 -- stat: 5.455404736640154e-08 - sys: 2.3000208932548407e-05 + norm: 1.01231046e-03 +- stat: 5.45540474e-08 + sys: 2.30002089e-05 shift_lumi: 0.0001 - norm: 7.66673631084947e-05 -- stat: 1.1799187577198397e-07 - sys: 4.215750524929628e-05 + norm: 7.66673631e-05 +- stat: 1.17991876e-07 + sys: 4.21575052e-05 shift_lumi: 0.0001 - norm: 0.00014052501749765425 -- stat: 2.2465201335482773e-07 - sys: 6.62337100265524e-05 + norm: 1.40525017e-04 +- stat: 2.24652013e-07 + sys: 6.62337100e-05 shift_lumi: 0.0001 - norm: 0.00022077903342184138 -- stat: 4.2701797597868763e-07 - sys: 0.00010287572615307595 + norm: 2.20779033e-04 +- stat: 4.27017976e-07 + sys: 1.02875726e-04 shift_lumi: 0.0001 - norm: 0.00034291908717691983 -- stat: 8.380177230295913e-07 - sys: 0.00016059622312300796 + norm: 3.42919087e-04 +- stat: 8.38017723e-07 + sys: 1.60596223e-04 shift_lumi: 0.0001 - norm: 0.0005353207437433599 -- stat: 1.6713753823019586e-06 - sys: 0.0002489959999468679 + norm: 5.35320744e-04 +- stat: 1.67137538e-06 + sys: 2.48996000e-04 shift_lumi: 0.0001 - norm: 0.0008299866664895597 -- stat: 3.568348459834222e-06 - sys: 0.00040333251162842345 + norm: 8.29986666e-04 +- stat: 3.56834846e-06 + sys: 4.03332512e-04 shift_lumi: 0.0001 - norm: 0.0013444417054280784 -- stat: 9.775230855450747e-08 - sys: 3.4343976736993016e-05 + norm: 1.34444171e-03 +- stat: 9.77523086e-08 + sys: 3.43439767e-05 shift_lumi: 0.0001 - norm: 0.00011447992245664336 -- stat: 1.924626712099241e-07 - sys: 5.557742970381566e-05 + norm: 1.14479922e-04 +- stat: 1.92462671e-07 + sys: 5.55774297e-05 shift_lumi: 0.0001 - norm: 0.00018525809901271883 -- stat: 3.733304368080732e-07 - sys: 8.793163979092268e-05 + norm: 1.85258099e-04 +- stat: 3.73330437e-07 + sys: 8.79316398e-05 shift_lumi: 0.0001 - norm: 0.00029310546596974233 -- stat: 7.213877656872519e-07 - sys: 0.00013577679689400575 + norm: 2.93105466e-04 +- stat: 7.21387766e-07 + sys: 1.35776797e-04 shift_lumi: 0.0001 - norm: 0.0004525893229800192 -- stat: 1.4284774439386169e-06 - sys: 0.00021206053453894447 + norm: 4.52589323e-04 +- stat: 1.42847744e-06 + sys: 2.12060535e-04 shift_lumi: 0.0001 - norm: 0.0007068684484631483 -- stat: 2.9838451837580575e-06 - sys: 0.000341848180053244 + norm: 7.06868448e-04 +- stat: 2.98384518e-06 + sys: 3.41848180e-04 shift_lumi: 0.0001 - norm: 0.0011394939335108132 -- stat: 6.523465037637568e-06 - sys: 0.000561289688468577 + norm: 1.13949393e-03 +- stat: 6.52346504e-06 + sys: 5.61289688e-04 shift_lumi: 0.0001 - norm: 0.0018709656282285903 -- stat: 1.6451307776222489e-07 - sys: 4.62395898298113e-05 + norm: 1.87096563e-03 +- stat: 1.64513078e-07 + sys: 4.62395898e-05 shift_lumi: 0.0001 - norm: 0.00015413196609937103 -- stat: 3.125878202134478e-07 - sys: 7.162407622783838e-05 + norm: 1.54131966e-04 +- stat: 3.12587820e-07 + sys: 7.16240762e-05 shift_lumi: 0.0001 - norm: 0.0002387469207594613 -- stat: 6.146706113797428e-07 - sys: 0.00011316490716814142 + norm: 2.38746921e-04 +- stat: 6.14670611e-07 + sys: 1.13164907e-04 shift_lumi: 0.0001 - norm: 0.0003772163572271381 -- stat: 1.2311370074359897e-06 - sys: 0.0001783685171738566 + norm: 3.77216357e-04 +- stat: 1.23113701e-06 + sys: 1.78368517e-04 shift_lumi: 0.0001 - norm: 0.0005945617239128552 -- stat: 2.6385239794114235e-06 - sys: 0.00029903561130229596 + norm: 5.94561724e-04 +- stat: 2.63852398e-06 + sys: 2.99035611e-04 shift_lumi: 0.0001 - norm: 0.000996785371007653 -- stat: 5.64559750401114e-06 - sys: 0.0004887488582963947 + norm: 9.96785371e-04 +- stat: 5.64559750e-06 + sys: 4.88748858e-04 shift_lumi: 0.0001 - norm: 0.0016291628609879823 -- stat: 1.2480632506939747e-05 - sys: 0.0008008958267687802 + norm: 1.62916286e-03 +- stat: 1.24806325e-05 + sys: 8.00895827e-04 shift_lumi: 0.0001 - norm: 0.002669652755895934 -- stat: 2.8613546662988145e-07 - sys: 6.382850797425484e-05 + norm: 2.66965276e-03 +- stat: 2.86135467e-07 + sys: 6.38285080e-05 shift_lumi: 0.0001 - norm: 0.00021276169324751612 -- stat: 5.543756495275042e-07 - sys: 9.861900232666317e-05 + norm: 2.12761693e-04 +- stat: 5.54375650e-07 + sys: 9.86190023e-05 shift_lumi: 0.0001 - norm: 0.00032873000775554393 -- stat: 1.0985161037494836e-06 - sys: 0.00015541572850043183 + norm: 3.28730008e-04 +- stat: 1.09851610e-06 + sys: 1.55415729e-04 shift_lumi: 0.0001 - norm: 0.0005180524283347727 -- stat: 2.325471894016401e-06 - sys: 0.0002580074836028196 + norm: 5.18052428e-04 +- stat: 2.32547189e-06 + sys: 2.58007484e-04 shift_lumi: 0.0001 - norm: 0.0008600249453427321 -- stat: 4.910303650035758e-06 - sys: 0.00042163015301552954 + norm: 8.60024945e-04 +- stat: 4.91030365e-06 + sys: 4.21630153e-04 shift_lumi: 0.0001 - norm: 0.0014054338433850985 -- stat: 1.0523248411250499e-05 - sys: 0.0006825606864052457 + norm: 1.40543384e-03 +- stat: 1.05232484e-05 + sys: 6.82560686e-04 shift_lumi: 0.0001 - norm: 0.0022752022880174858 -- stat: 2.3762166491905715e-05 - sys: 0.0011568390687001593 + norm: 2.27520229e-03 +- stat: 2.37621665e-05 + sys: 1.15683907e-03 shift_lumi: 0.0001 - norm: 0.0038561302290005314 -- stat: 4.993935847106427e-07 - sys: 8.59372949707578e-05 + norm: 3.85613023e-03 +- stat: 4.99393585e-07 + sys: 8.59372950e-05 shift_lumi: 0.0001 - norm: 0.00028645764990252595 -- stat: 9.838568345348468e-07 - sys: 0.00013380582427666192 + norm: 2.86457650e-04 +- stat: 9.83856835e-07 + sys: 1.33805824e-04 shift_lumi: 0.0001 - norm: 0.00044601941425553973 -- stat: 2.117017542564903e-06 - sys: 0.00022768960017663557 + norm: 4.46019414e-04 +- stat: 2.11701754e-06 + sys: 2.27689600e-04 shift_lumi: 0.0001 - norm: 0.0007589653339221186 -- stat: 4.424229624258676e-06 - sys: 0.0003686310788564774 + norm: 7.58965334e-04 +- stat: 4.42422962e-06 + sys: 3.68631079e-04 shift_lumi: 0.0001 - norm: 0.0012287702628549246 -- stat: 9.314712453418234e-06 - sys: 0.0006004771821675963 + norm: 1.22877026e-03 +- stat: 9.31471245e-06 + sys: 6.00477182e-04 shift_lumi: 0.0001 - norm: 0.0020015906072253205 -- stat: 2.05476508963485e-05 - sys: 0.0010003433540037208 + norm: 2.00159061e-03 +- stat: 2.05476509e-05 + sys: 1.00034335e-03 shift_lumi: 0.0001 - norm: 0.0033344778466790695 -- stat: 4.623198849307251e-05 - sys: 0.0016659482872003058 + norm: 3.33447785e-03 +- stat: 4.62319885e-05 + sys: 1.66594829e-03 shift_lumi: 0.0001 - norm: 0.005553160957334353 -- stat: 9.488097367837494e-07 - sys: 0.00012121880480756445 + norm: 5.55316096e-03 +- stat: 9.48809737e-07 + sys: 1.21218805e-04 shift_lumi: 0.0001 - norm: 0.00040406268269188155 -- stat: 1.877000631136558e-06 - sys: 0.00018796938803867716 + norm: 4.04062683e-04 +- stat: 1.87700063e-06 + sys: 1.87969388e-04 shift_lumi: 0.0001 - norm: 0.0006265646267955905 -- stat: 4.0062444095390775e-06 - sys: 0.00031394962588168594 + norm: 6.26564627e-04 +- stat: 4.00624441e-06 + sys: 3.13949626e-04 shift_lumi: 0.0001 - norm: 0.001046498752938953 -- stat: 8.476699867837146e-06 - sys: 0.000512007341901821 + norm: 1.04649875e-03 +- stat: 8.47669987e-06 + sys: 5.12007342e-04 shift_lumi: 0.0001 - norm: 0.0017066911396727365 -- stat: 1.830261045375895e-05 - sys: 0.0008378344447380437 + norm: 1.70669114e-03 +- stat: 1.83026105e-05 + sys: 8.37834445e-04 shift_lumi: 0.0001 - norm: 0.0027927814824601454 -- stat: 3.8953041692186295e-05 - sys: 0.0013800639742219 + norm: 2.79278148e-03 +- stat: 3.89530417e-05 + sys: 1.38006397e-03 shift_lumi: 0.0001 - norm: 0.004600213247406332 -- stat: 9.178923596796214e-05 - sys: 0.0023453767487573375 + norm: 4.60021325e-03 +- stat: 9.17892360e-05 + sys: 2.34537675e-03 shift_lumi: 0.0001 - norm: 0.007817922495857792 -- stat: 1.9847230578355628e-06 - sys: 0.0001700746622381709 + norm: 7.81792250e-03 +- stat: 1.98472306e-06 + sys: 1.70074662e-04 shift_lumi: 0.0001 - norm: 0.0005669155407939029 -- stat: 3.819475265082504e-06 - sys: 0.0002564182092329396 + norm: 5.66915541e-04 +- stat: 3.81947527e-06 + sys: 2.56418209e-04 shift_lumi: 0.0001 - norm: 0.0008547273641097987 -- stat: 8.44299923547366e-06 - sys: 0.00043304171805140886 + norm: 8.54727364e-04 +- stat: 8.44299924e-06 + sys: 4.33041718e-04 shift_lumi: 0.0001 - norm: 0.0014434723935046964 -- stat: 1.7021030765889628e-05 - sys: 0.0006769939633208435 + norm: 1.44347239e-03 +- stat: 1.70210308e-05 + sys: 6.76993963e-04 shift_lumi: 0.0001 - norm: 0.0022566465444028116 -- stat: 3.768808181068049e-05 - sys: 0.0011269112798986145 + norm: 2.25664654e-03 +- stat: 3.76880818e-05 + sys: 1.12691128e-03 shift_lumi: 0.0001 - norm: 0.0037563709329953817 -- stat: 8.295364333108811e-05 - sys: 0.00187024569264326 + norm: 3.75637093e-03 +- stat: 8.29536433e-05 + sys: 1.87024569e-03 shift_lumi: 0.0001 - norm: 0.006234152308810867 -- stat: 0.00018688663719462447 - sys: 0.0030898889677766564 + norm: 6.23415231e-03 +- stat: 1.86886637e-04 + sys: 3.08988897e-03 shift_lumi: 0.0001 - norm: 0.010299629892588853 -- stat: 4.992775342340548e-06 - sys: 0.00021995553325389626 + norm: 1.02996299e-02 +- stat: 4.99277534e-06 + sys: 2.19955533e-04 shift_lumi: 0.0001 - norm: 0.0007331851108463209 -- stat: 9.105349559370387e-06 - sys: 0.00031466004271414724 + norm: 7.33185111e-04 +- stat: 9.10534956e-06 + sys: 3.14660043e-04 shift_lumi: 0.0001 - norm: 0.0010488668090471575 -- stat: 2.0758412026539914e-05 - sys: 0.0005469894498748865 + norm: 1.04886681e-03 +- stat: 2.07584120e-05 + sys: 5.46989450e-04 shift_lumi: 0.0001 - norm: 0.0018232981662496218 -- stat: 4.3376919158332094e-05 - sys: 0.0008626361358942125 + norm: 1.82329817e-03 +- stat: 4.33769192e-05 + sys: 8.62636136e-04 shift_lumi: 0.0001 - norm: 0.0028754537863140417 -- stat: 0.00010185187436469215 - sys: 0.001501439362058336 + norm: 2.87545379e-03 +- stat: 1.01851874e-04 + sys: 1.50143936e-03 shift_lumi: 0.0001 - norm: 0.005004797873527787 -- stat: 0.00021732938126630864 - sys: 0.0024499185501464997 + norm: 5.00479787e-03 +- stat: 2.17329381e-04 + sys: 2.44991855e-03 shift_lumi: 0.0001 - norm: 0.008166395167155 -- stat: 0.00048106110556924483 - sys: 0.003976810287877569 + norm: 8.16639517e-03 +- stat: 4.81061106e-04 + sys: 3.97681029e-03 shift_lumi: 0.0001 - norm: 0.013256034292925233 -- stat: 2.55145650436825e-05 - sys: 0.00026365305670568467 + norm: 1.32560343e-02 +- stat: 2.55145650e-05 + sys: 2.63653057e-04 shift_lumi: 0.0001 - norm: 0.0008788435223522822 -- stat: 5.786122381835189e-05 - sys: 0.00045008354274725544 + norm: 8.78843522e-04 +- stat: 5.78612238e-05 + sys: 4.50083543e-04 shift_lumi: 0.0001 - norm: 0.0015002784758241846 -- stat: 0.00010480384280392099 - sys: 0.0006664513980682355 + norm: 1.50027848e-03 +- stat: 1.04803843e-04 + sys: 6.66451398e-04 shift_lumi: 0.0001 - norm: 0.0022215046602274517 -- stat: 0.00022956322907347605 - sys: 0.0010998272036491386 + norm: 2.22150466e-03 +- stat: 2.29563229e-04 + sys: 1.09982720e-03 shift_lumi: 0.0001 - norm: 0.0036660906788304613 -- stat: 0.000510695438011313 - sys: 0.001695364410534065 + norm: 3.66609068e-03 +- stat: 5.10695438e-04 + sys: 1.69536441e-03 shift_lumi: 0.0001 - norm: 0.005651214701780217 -- stat: 0.001306803580637546 - sys: 0.0029781282212586542 + norm: 5.65121470e-03 +- stat: 1.30680358e-03 + sys: 2.97812822e-03 shift_lumi: 0.0001 - norm: 0.00992709407086218 -- stat: 0.002620460212475177 - sys: 0.004721353488076458 + norm: 9.92709407e-03 +- stat: 2.62046021e-03 + sys: 4.72135349e-03 shift_lumi: 0.0001 - norm: 0.01573784496025486 + norm: 1.57378450e-02 diff --git a/nnpdf_data/nnpdf_data/commondata/EICC_NC_15GEV_EP/data.yaml b/nnpdf_data/nnpdf_data/commondata/EICC_NC_15GEV_EP/data.yaml index ebeaff7258..ab16168423 100644 --- a/nnpdf_data/nnpdf_data/commondata/EICC_NC_15GEV_EP/data.yaml +++ b/nnpdf_data/nnpdf_data/commondata/EICC_NC_15GEV_EP/data.yaml @@ -1,21 +1,21 @@ data_central: -- 0.028752536850912856 -- 0.11568706061804443 -- 0.17844536683656656 -- 0.21318446913040082 -- 0.3047908293137794 -- 0.36254691759476054 -- 0.40618149963926686 -- 0.4171399804244003 -- 0.48999487985235063 -- 0.5206809711013558 -- 0.5665869991056949 -- 0.5996527775301302 -- 0.6754620629478063 -- 0.69124681516166 -- 0.7867842832642818 -- 0.827410800327948 -- 0.9043448851250105 -- 0.8145577736761249 -- 0.9128153924039215 -- 0.6331589029324559 +- 2.87525369e-02 +- 1.15687061e-01 +- 1.78445367e-01 +- 2.13184469e-01 +- 3.04790829e-01 +- 3.62546918e-01 +- 4.06181500e-01 +- 4.17139980e-01 +- 4.89994880e-01 +- 5.20680971e-01 +- 5.66586999e-01 +- 5.99652778e-01 +- 6.75462063e-01 +- 6.91246815e-01 +- 7.86784283e-01 +- 8.27410800e-01 +- 9.04344885e-01 +- 8.14557774e-01 +- 9.12815392e-01 +- 6.33158903e-01 diff --git a/nnpdf_data/nnpdf_data/commondata/EICC_NC_15GEV_EP/filter.py b/nnpdf_data/nnpdf_data/commondata/EICC_NC_15GEV_EP/filter.py index 5de3374346..c3584a8356 100644 --- a/nnpdf_data/nnpdf_data/commondata/EICC_NC_15GEV_EP/filter.py +++ b/nnpdf_data/nnpdf_data/commondata/EICC_NC_15GEV_EP/filter.py @@ -1,6 +1,7 @@ from pathlib import Path import numpy as np +import yaml from nnpdf_data.filter_utils.poldata_utils import ( fluctuate_data, @@ -8,6 +9,9 @@ read_txt_data, write_data, ) +from nnpdf_data.filter_utils.utils import prettify_float + +yaml.add_representer(float, prettify_float) np.random.seed(1234567890) diff --git a/nnpdf_data/nnpdf_data/commondata/EICC_NC_15GEV_EP/kinematics.yaml b/nnpdf_data/nnpdf_data/commondata/EICC_NC_15GEV_EP/kinematics.yaml index 4c4bdfe899..fcc2209f86 100644 --- a/nnpdf_data/nnpdf_data/commondata/EICC_NC_15GEV_EP/kinematics.yaml +++ b/nnpdf_data/nnpdf_data/commondata/EICC_NC_15GEV_EP/kinematics.yaml @@ -1,7 +1,7 @@ bins: - x: min: null - mid: 0.0118543 + mid: 1.18543000e-02 max: null Q2: min: null @@ -9,7 +9,7 @@ bins: max: null - x: min: null - mid: 0.0147498 + mid: 1.47498000e-02 max: null Q2: min: null @@ -17,7 +17,7 @@ bins: max: null - x: min: null - mid: 0.0170879 + mid: 1.70879000e-02 max: null Q2: min: null @@ -25,7 +25,7 @@ bins: max: null - x: min: null - mid: 0.0193576 + mid: 1.93576000e-02 max: null Q2: min: null @@ -33,7 +33,7 @@ bins: max: null - x: min: null - mid: 0.0216843 + mid: 2.16843000e-02 max: null Q2: min: null @@ -65,7 +65,7 @@ bins: max: null - x: min: null - mid: 0.0327378 + mid: 3.27378000e-02 max: null Q2: min: null @@ -81,7 +81,7 @@ bins: max: null - x: min: null - mid: 0.0401922 + mid: 4.01922000e-02 max: null Q2: min: null @@ -89,7 +89,7 @@ bins: max: null - x: min: null - mid: 0.0447057 + mid: 4.47057000e-02 max: null Q2: min: null @@ -97,7 +97,7 @@ bins: max: null - x: min: null - mid: 0.0498705 + mid: 4.98705000e-02 max: null Q2: min: null @@ -105,7 +105,7 @@ bins: max: null - x: min: null - mid: 0.0559157 + mid: 5.59157000e-02 max: null Q2: min: null @@ -121,7 +121,7 @@ bins: max: null - x: min: null - mid: 0.0719283 + mid: 7.19283000e-02 max: null Q2: min: null diff --git a/nnpdf_data/nnpdf_data/commondata/EICC_NC_15GEV_EP/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/EICC_NC_15GEV_EP/uncertainties.yaml index 941789bd9a..67206264f9 100644 --- a/nnpdf_data/nnpdf_data/commondata/EICC_NC_15GEV_EP/uncertainties.yaml +++ b/nnpdf_data/nnpdf_data/commondata/EICC_NC_15GEV_EP/uncertainties.yaml @@ -8,43 +8,43 @@ definitions: treatment: ADD type: UNCORR bins: -- stat: 0.0131741 +- stat: 1.31741000e-02 sys: 0.0 -- stat: 0.0137443 +- stat: 1.37443000e-02 sys: 0.0 -- stat: 0.0145816 +- stat: 1.45816000e-02 sys: 0.0 -- stat: 0.0148745 +- stat: 1.48745000e-02 sys: 0.0 -- stat: 0.0154729 +- stat: 1.54729000e-02 sys: 0.0 -- stat: 0.0163357 +- stat: 1.63357000e-02 sys: 0.0 -- stat: 0.0166505 +- stat: 1.66505000e-02 sys: 0.0 -- stat: 0.0173117 +- stat: 1.73117000e-02 sys: 0.0 -- stat: 0.0177981 +- stat: 1.77981000e-02 sys: 0.0 -- stat: 0.0184076 +- stat: 1.84076000e-02 sys: 0.0 -- stat: 0.0196155 +- stat: 1.96155000e-02 sys: 0.0 -- stat: 0.0201606 +- stat: 2.01606000e-02 sys: 0.0 -- stat: 0.0206674 +- stat: 2.06674000e-02 sys: 0.0 -- stat: 0.0224443 +- stat: 2.24443000e-02 sys: 0.0 -- stat: 0.0235975 +- stat: 2.35975000e-02 sys: 0.0 -- stat: 0.0249343 +- stat: 2.49343000e-02 sys: 0.0 - stat: 0.028093 sys: 0.0 -- stat: 0.0294843 +- stat: 2.94843000e-02 sys: 0.0 - stat: 0.03264 sys: 0.0 -- stat: 0.0412479 +- stat: 4.12479000e-02 sys: 0.0 diff --git a/nnpdf_data/nnpdf_data/commondata/EICC_NC_22GEV_EP/data.yaml b/nnpdf_data/nnpdf_data/commondata/EICC_NC_22GEV_EP/data.yaml index faa319c9c4..f169944f38 100644 --- a/nnpdf_data/nnpdf_data/commondata/EICC_NC_22GEV_EP/data.yaml +++ b/nnpdf_data/nnpdf_data/commondata/EICC_NC_22GEV_EP/data.yaml @@ -1,21 +1,21 @@ data_central: -- 0.028410350030637896 -- 0.053949708486563094 -- 0.07194127121328957 -- 0.07521904482145485 -- 0.12166021006378017 -- 0.14760044208935755 -- 0.16631652447017 -- 0.1636371208703117 -- 0.20767820900152353 -- 0.2279363767574925 -- 0.26022782871750655 -- 0.28451580310664837 -- 0.34258842800631895 -- 0.3562698920241001 -- 0.4389981141059839 -- 0.4891750588140542 -- 0.5723154347450254 -- 0.5595837507085588 -- 0.7172734276507937 -- 0.6075154941525787 +- 2.84103500e-02 +- 5.39497085e-02 +- 7.19412712e-02 +- 7.52190448e-02 +- 1.21660210e-01 +- 1.47600442e-01 +- 1.66316524e-01 +- 1.63637121e-01 +- 2.07678209e-01 +- 2.27936377e-01 +- 2.60227829e-01 +- 2.84515803e-01 +- 3.42588428e-01 +- 3.56269892e-01 +- 4.38998114e-01 +- 4.89175059e-01 +- 5.72315435e-01 +- 5.59583751e-01 +- 7.17273428e-01 +- 6.07515494e-01 diff --git a/nnpdf_data/nnpdf_data/commondata/EICC_NC_22GEV_EP/filter.py b/nnpdf_data/nnpdf_data/commondata/EICC_NC_22GEV_EP/filter.py index 771429f086..219ef95b56 100644 --- a/nnpdf_data/nnpdf_data/commondata/EICC_NC_22GEV_EP/filter.py +++ b/nnpdf_data/nnpdf_data/commondata/EICC_NC_22GEV_EP/filter.py @@ -1,6 +1,7 @@ from pathlib import Path import numpy as np +import yaml from nnpdf_data.filter_utils.poldata_utils import ( fluctuate_data, @@ -8,6 +9,9 @@ read_txt_data, write_data, ) +from nnpdf_data.filter_utils.utils import prettify_float + +yaml.add_representer(float, prettify_float) np.random.seed(1234567890) diff --git a/nnpdf_data/nnpdf_data/commondata/EICC_NC_22GEV_EP/kinematics.yaml b/nnpdf_data/nnpdf_data/commondata/EICC_NC_22GEV_EP/kinematics.yaml index 268a3f4c83..49ab94897e 100644 --- a/nnpdf_data/nnpdf_data/commondata/EICC_NC_22GEV_EP/kinematics.yaml +++ b/nnpdf_data/nnpdf_data/commondata/EICC_NC_22GEV_EP/kinematics.yaml @@ -1,7 +1,7 @@ bins: - x: min: null - mid: 0.0068164 + mid: 6.81640000e-03 max: null Q2: min: null @@ -9,7 +9,7 @@ bins: max: null - x: min: null - mid: 0.00867301 + mid: 8.67301000e-03 max: null Q2: min: null @@ -17,7 +17,7 @@ bins: max: null - x: min: null - mid: 0.0101997 + mid: 1.01997000e-02 max: null Q2: min: null @@ -25,7 +25,7 @@ bins: max: null - x: min: null - mid: 0.0116997 + mid: 1.16997000e-02 max: null Q2: min: null @@ -33,7 +33,7 @@ bins: max: null - x: min: null - mid: 0.0132466 + mid: 1.32466000e-02 max: null Q2: min: null @@ -41,7 +41,7 @@ bins: max: null - x: min: null - mid: 0.0148812 + mid: 1.48812000e-02 max: null Q2: min: null @@ -65,7 +65,7 @@ bins: max: null - x: min: null - mid: 0.0207568 + mid: 2.07568000e-02 max: null Q2: min: null @@ -73,7 +73,7 @@ bins: max: null - x: min: null - mid: 0.0232027 + mid: 2.32027000e-02 max: null Q2: min: null @@ -81,7 +81,7 @@ bins: max: null - x: min: null - mid: 0.0260104 + mid: 2.60104000e-02 max: null Q2: min: null @@ -89,7 +89,7 @@ bins: max: null - x: min: null - mid: 0.0292666 + mid: 2.92666000e-02 max: null Q2: min: null @@ -97,7 +97,7 @@ bins: max: null - x: min: null - mid: 0.0330757 + mid: 3.30757000e-02 max: null Q2: min: null @@ -105,7 +105,7 @@ bins: max: null - x: min: null - mid: 0.0377102 + mid: 3.77102000e-02 max: null Q2: min: null @@ -113,7 +113,7 @@ bins: max: null - x: min: null - mid: 0.0434833 + mid: 4.34833000e-02 max: null Q2: min: null @@ -121,7 +121,7 @@ bins: max: null - x: min: null - mid: 0.0507568 + mid: 5.07568000e-02 max: null Q2: min: null @@ -129,7 +129,7 @@ bins: max: null - x: min: null - mid: 0.0604552 + mid: 6.04552000e-02 max: null Q2: min: null @@ -137,7 +137,7 @@ bins: max: null - x: min: null - mid: 0.0743193 + mid: 7.43193000e-02 max: null Q2: min: null diff --git a/nnpdf_data/nnpdf_data/commondata/EICC_NC_22GEV_EP/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/EICC_NC_22GEV_EP/uncertainties.yaml index c4cd8c3422..4e837e9a1f 100644 --- a/nnpdf_data/nnpdf_data/commondata/EICC_NC_22GEV_EP/uncertainties.yaml +++ b/nnpdf_data/nnpdf_data/commondata/EICC_NC_22GEV_EP/uncertainties.yaml @@ -8,43 +8,43 @@ definitions: treatment: ADD type: UNCORR bins: -- stat: 0.00858772 +- stat: 8.58772000e-03 sys: 0.0 -- stat: 0.00918325 +- stat: 9.18325000e-03 sys: 0.0 -- stat: 0.00989902 +- stat: 9.89902000e-03 sys: 0.0 -- stat: 0.0105122 +- stat: 1.05122000e-02 sys: 0.0 - stat: 0.010999 sys: 0.0 -- stat: 0.0115985 +- stat: 1.15985000e-02 sys: 0.0 -- stat: 0.0119657 +- stat: 1.19657000e-02 sys: 0.0 - stat: 0.01256 sys: 0.0 -- stat: 0.0129563 +- stat: 1.29563000e-02 sys: 0.0 -- stat: 0.0135662 +- stat: 1.35662000e-02 sys: 0.0 -- stat: 0.0141511 +- stat: 1.41511000e-02 sys: 0.0 -- stat: 0.0149317 +- stat: 1.49317000e-02 sys: 0.0 -- stat: 0.0155973 +- stat: 1.55973000e-02 sys: 0.0 -- stat: 0.0165588 +- stat: 1.65588000e-02 sys: 0.0 -- stat: 0.0174989 +- stat: 1.74989000e-02 sys: 0.0 -- stat: 0.0188441 +- stat: 1.88441000e-02 sys: 0.0 -- stat: 0.0205689 +- stat: 2.05689000e-02 sys: 0.0 -- stat: 0.0232922 +- stat: 2.32922000e-02 sys: 0.0 -- stat: 0.0266716 +- stat: 2.66716000e-02 sys: 0.0 -- stat: 0.0342092 +- stat: 3.42092000e-02 sys: 0.0 diff --git a/nnpdf_data/nnpdf_data/commondata/EIC_NC_211GEV_EP/data.yaml b/nnpdf_data/nnpdf_data/commondata/EIC_NC_211GEV_EP/data.yaml index f9a017701f..025c6d5605 100644 --- a/nnpdf_data/nnpdf_data/commondata/EIC_NC_211GEV_EP/data.yaml +++ b/nnpdf_data/nnpdf_data/commondata/EIC_NC_211GEV_EP/data.yaml @@ -1,12 +1,12 @@ data_central: -- 0.016445858019663116 -- 0.021713472659388673 -- 0.02460492341794608 -- 0.02006473607837474 -- 0.03376694497953609 -- 0.0377956470796024 -- 0.03700618918435565 -- 0.020428523014687353 -- 0.029580576189799077 -- 0.023239103323950242 -- 0.03595220464820044 +- 1.64458580e-02 +- 2.17134727e-02 +- 2.46049234e-02 +- 2.00647361e-02 +- 3.37669450e-02 +- 3.77956471e-02 +- 3.70061892e-02 +- 2.04285230e-02 +- 2.95805762e-02 +- 2.32391033e-02 +- 3.59522046e-02 diff --git a/nnpdf_data/nnpdf_data/commondata/EIC_NC_211GEV_EP/filter.py b/nnpdf_data/nnpdf_data/commondata/EIC_NC_211GEV_EP/filter.py index 06b204f401..6a36f56c7e 100644 --- a/nnpdf_data/nnpdf_data/commondata/EIC_NC_211GEV_EP/filter.py +++ b/nnpdf_data/nnpdf_data/commondata/EIC_NC_211GEV_EP/filter.py @@ -1,6 +1,7 @@ from pathlib import Path import numpy as np +import yaml from nnpdf_data.filter_utils.poldata_utils import ( fluctuate_data, @@ -8,6 +9,9 @@ read_txt_data, write_data, ) +from nnpdf_data.filter_utils.utils import prettify_float + +yaml.add_representer(float, prettify_float) np.random.seed(1234567890) diff --git a/nnpdf_data/nnpdf_data/commondata/EIC_NC_211GEV_EP/kinematics.yaml b/nnpdf_data/nnpdf_data/commondata/EIC_NC_211GEV_EP/kinematics.yaml index 392830128d..76fd7fa5e6 100644 --- a/nnpdf_data/nnpdf_data/commondata/EIC_NC_211GEV_EP/kinematics.yaml +++ b/nnpdf_data/nnpdf_data/commondata/EIC_NC_211GEV_EP/kinematics.yaml @@ -1,7 +1,7 @@ bins: - x: min: null - mid: 0.000240225 + mid: 2.40225000e-04 max: null Q2: min: null @@ -9,7 +9,7 @@ bins: max: null - x: min: null - mid: 0.000393498 + mid: 3.93498000e-04 max: null Q2: min: null @@ -17,7 +17,7 @@ bins: max: null - x: min: null - mid: 0.000556682 + mid: 5.56682000e-04 max: null Q2: min: null @@ -25,7 +25,7 @@ bins: max: null - x: min: null - mid: 0.000760131 + mid: 7.60131000e-04 max: null Q2: min: null @@ -41,7 +41,7 @@ bins: max: null - x: min: null - mid: 0.00135955 + mid: 1.35955000e-03 max: null Q2: min: null @@ -49,7 +49,7 @@ bins: max: null - x: min: null - mid: 0.00182221 + mid: 1.82221000e-03 max: null Q2: min: null @@ -57,7 +57,7 @@ bins: max: null - x: min: null - mid: 0.00247674 + mid: 2.47674000e-03 max: null Q2: min: null @@ -65,7 +65,7 @@ bins: max: null - x: min: null - mid: 0.0035644 + mid: 3.56440000e-03 max: null Q2: min: null @@ -73,7 +73,7 @@ bins: max: null - x: min: null - mid: 0.00577839 + mid: 5.77839000e-03 max: null Q2: min: null @@ -81,7 +81,7 @@ bins: max: null - x: min: null - mid: 0.0182267 + mid: 1.82267000e-02 max: null Q2: min: null diff --git a/nnpdf_data/nnpdf_data/commondata/EIC_NC_211GEV_EP/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/EIC_NC_211GEV_EP/uncertainties.yaml index 1c59b5709e..ab3520defd 100644 --- a/nnpdf_data/nnpdf_data/commondata/EIC_NC_211GEV_EP/uncertainties.yaml +++ b/nnpdf_data/nnpdf_data/commondata/EIC_NC_211GEV_EP/uncertainties.yaml @@ -8,25 +8,25 @@ definitions: treatment: ADD type: UNCORR bins: -- stat: 0.00260049 +- stat: 2.60049000e-03 sys: 0.0 -- stat: 0.0032644 +- stat: 3.26440000e-03 sys: 0.0 -- stat: 0.00393122 +- stat: 3.93122000e-03 sys: 0.0 -- stat: 0.00450892 +- stat: 4.50892000e-03 sys: 0.0 -- stat: 0.00525977 +- stat: 5.25977000e-03 sys: 0.0 -- stat: 0.00597521 +- stat: 5.97521000e-03 sys: 0.0 -- stat: 0.00679294 +- stat: 6.79294000e-03 sys: 0.0 -- stat: 0.00758583 +- stat: 7.58583000e-03 sys: 0.0 -- stat: 0.00805148 +- stat: 8.05148000e-03 sys: 0.0 -- stat: 0.00877917 +- stat: 8.77917000e-03 sys: 0.0 -- stat: 0.0101136 +- stat: 1.01136000e-02 sys: 0.0 diff --git a/nnpdf_data/nnpdf_data/commondata/EIC_NC_43GEV_EP/data.yaml b/nnpdf_data/nnpdf_data/commondata/EIC_NC_43GEV_EP/data.yaml index 5b10ec884d..cad39d8652 100644 --- a/nnpdf_data/nnpdf_data/commondata/EIC_NC_43GEV_EP/data.yaml +++ b/nnpdf_data/nnpdf_data/commondata/EIC_NC_43GEV_EP/data.yaml @@ -1,11 +1,11 @@ data_central: -- 0.042418105535867626 -- 0.059897116735966593 -- 0.07542505283725452 -- 0.08311241514955363 -- 0.13363863607400564 -- 0.17520168850150403 -- 0.21643029584685092 -- 0.25142119909910743 -- 0.3690026175583383 -- 0.5038176573748027 +- 4.24181055e-02 +- 5.98971167e-02 +- 7.54250528e-02 +- 8.31124151e-02 +- 1.33638636e-01 +- 1.75201689e-01 +- 2.16430296e-01 +- 2.51421199e-01 +- 3.69002618e-01 +- 5.03817657e-01 diff --git a/nnpdf_data/nnpdf_data/commondata/EIC_NC_43GEV_EP/filter.py b/nnpdf_data/nnpdf_data/commondata/EIC_NC_43GEV_EP/filter.py index 51b8bc0074..24292a6a9f 100644 --- a/nnpdf_data/nnpdf_data/commondata/EIC_NC_43GEV_EP/filter.py +++ b/nnpdf_data/nnpdf_data/commondata/EIC_NC_43GEV_EP/filter.py @@ -1,6 +1,7 @@ from pathlib import Path import numpy as np +import yaml from nnpdf_data.filter_utils.poldata_utils import ( fluctuate_data, @@ -8,6 +9,9 @@ read_txt_data, write_data, ) +from nnpdf_data.filter_utils.utils import prettify_float + +yaml.add_representer(float, prettify_float) np.random.seed(1234567890) diff --git a/nnpdf_data/nnpdf_data/commondata/EIC_NC_43GEV_EP/kinematics.yaml b/nnpdf_data/nnpdf_data/commondata/EIC_NC_43GEV_EP/kinematics.yaml index bf8df566c5..302ff0bad5 100644 --- a/nnpdf_data/nnpdf_data/commondata/EIC_NC_43GEV_EP/kinematics.yaml +++ b/nnpdf_data/nnpdf_data/commondata/EIC_NC_43GEV_EP/kinematics.yaml @@ -1,7 +1,7 @@ bins: - x: min: null - mid: 0.0048499 + mid: 4.84990000e-03 max: null Q2: min: null @@ -9,7 +9,7 @@ bins: max: null - x: min: null - mid: 0.00703289 + mid: 7.03289000e-03 max: null Q2: min: null @@ -17,7 +17,7 @@ bins: max: null - x: min: null - mid: 0.00920086 + mid: 9.20086000e-03 max: null Q2: min: null @@ -25,7 +25,7 @@ bins: max: null - x: min: null - mid: 0.0117715 + mid: 1.17715000e-02 max: null Q2: min: null @@ -33,7 +33,7 @@ bins: max: null - x: min: null - mid: 0.0149141 + mid: 1.49141000e-02 max: null Q2: min: null @@ -41,7 +41,7 @@ bins: max: null - x: min: null - mid: 0.0190106 + mid: 1.90106000e-02 max: null Q2: min: null @@ -49,7 +49,7 @@ bins: max: null - x: min: null - mid: 0.0246448 + mid: 2.46448000e-02 max: null Q2: min: null @@ -57,7 +57,7 @@ bins: max: null - x: min: null - mid: 0.0332428 + mid: 3.32428000e-02 max: null Q2: min: null @@ -65,7 +65,7 @@ bins: max: null - x: min: null - mid: 0.0489573 + mid: 4.89573000e-02 max: null Q2: min: null diff --git a/nnpdf_data/nnpdf_data/commondata/EIC_NC_43GEV_EP/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/EIC_NC_43GEV_EP/uncertainties.yaml index cddd6430ed..c2ed44fcc6 100644 --- a/nnpdf_data/nnpdf_data/commondata/EIC_NC_43GEV_EP/uncertainties.yaml +++ b/nnpdf_data/nnpdf_data/commondata/EIC_NC_43GEV_EP/uncertainties.yaml @@ -8,23 +8,23 @@ definitions: treatment: ADD type: UNCORR bins: -- stat: 0.00672086 +- stat: 6.72086000e-03 sys: 0.0 -- stat: 0.00767392 +- stat: 7.67392000e-03 sys: 0.0 -- stat: 0.00822064 +- stat: 8.22064000e-03 sys: 0.0 -- stat: 0.00935268 +- stat: 9.35268000e-03 sys: 0.0 -- stat: 0.00979612 +- stat: 9.79612000e-03 sys: 0.0 -- stat: 0.0110492 +- stat: 1.10492000e-02 sys: 0.0 -- stat: 0.0118684 +- stat: 1.18684000e-02 sys: 0.0 -- stat: 0.0134677 +- stat: 1.34677000e-02 sys: 0.0 -- stat: 0.0156306 +- stat: 1.56306000e-02 sys: 0.0 -- stat: 0.0205952 +- stat: 2.05952000e-02 sys: 0.0 diff --git a/nnpdf_data/nnpdf_data/commondata/EIC_NC_67GEV_EP/data.yaml b/nnpdf_data/nnpdf_data/commondata/EIC_NC_67GEV_EP/data.yaml index abf475cab6..9d66f66090 100644 --- a/nnpdf_data/nnpdf_data/commondata/EIC_NC_67GEV_EP/data.yaml +++ b/nnpdf_data/nnpdf_data/commondata/EIC_NC_67GEV_EP/data.yaml @@ -1,11 +1,11 @@ data_central: -- 0.0443981248147512 -- 0.05032651537285408 -- 0.05255892003804129 -- 0.04569909540525989 -- 0.06801606008348796 -- 0.08043204764516268 -- 0.09278792276471445 -- 0.09569170285417186 -- 0.1531694684173874 -- 0.2550024245863873 +- 4.43981248e-02 +- 5.03265154e-02 +- 5.25589200e-02 +- 4.56990954e-02 +- 6.80160601e-02 +- 8.04320476e-02 +- 9.27879228e-02 +- 9.56917029e-02 +- 1.53169468e-01 +- 2.55002425e-01 diff --git a/nnpdf_data/nnpdf_data/commondata/EIC_NC_67GEV_EP/filter.py b/nnpdf_data/nnpdf_data/commondata/EIC_NC_67GEV_EP/filter.py index d7975b25bf..1d8a7a3b5d 100644 --- a/nnpdf_data/nnpdf_data/commondata/EIC_NC_67GEV_EP/filter.py +++ b/nnpdf_data/nnpdf_data/commondata/EIC_NC_67GEV_EP/filter.py @@ -1,6 +1,7 @@ from pathlib import Path import numpy as np +import yaml from nnpdf_data.filter_utils.poldata_utils import ( fluctuate_data, @@ -8,6 +9,9 @@ read_txt_data, write_data, ) +from nnpdf_data.filter_utils.utils import prettify_float + +yaml.add_representer(float, prettify_float) np.random.seed(1234567890) diff --git a/nnpdf_data/nnpdf_data/commondata/EIC_NC_67GEV_EP/kinematics.yaml b/nnpdf_data/nnpdf_data/commondata/EIC_NC_67GEV_EP/kinematics.yaml index 66202b44b8..c757ed7348 100644 --- a/nnpdf_data/nnpdf_data/commondata/EIC_NC_67GEV_EP/kinematics.yaml +++ b/nnpdf_data/nnpdf_data/commondata/EIC_NC_67GEV_EP/kinematics.yaml @@ -1,7 +1,7 @@ bins: - x: min: null - mid: 0.00210275 + mid: 2.10275000e-03 max: null Q2: min: null @@ -9,7 +9,7 @@ bins: max: null - x: min: null - mid: 0.00318165 + mid: 3.18165000e-03 max: null Q2: min: null @@ -17,7 +17,7 @@ bins: max: null - x: min: null - mid: 0.00431087 + mid: 4.31087000e-03 max: null Q2: min: null @@ -25,7 +25,7 @@ bins: max: null - x: min: null - mid: 0.00563938 + mid: 5.63938000e-03 max: null Q2: min: null @@ -33,7 +33,7 @@ bins: max: null - x: min: null - mid: 0.0073065 + mid: 7.30650000e-03 max: null Q2: min: null @@ -41,7 +41,7 @@ bins: max: null - x: min: null - mid: 0.00951243 + mid: 9.51243000e-03 max: null Q2: min: null @@ -57,7 +57,7 @@ bins: max: null - x: min: null - mid: 0.0174056 + mid: 1.74056000e-02 max: null Q2: min: null @@ -65,7 +65,7 @@ bins: max: null - x: min: null - mid: 0.0260694 + mid: 2.60694000e-02 max: null Q2: min: null @@ -73,7 +73,7 @@ bins: max: null - x: min: null - mid: 0.0627151 + mid: 6.27151000e-02 max: null Q2: min: null diff --git a/nnpdf_data/nnpdf_data/commondata/EIC_NC_67GEV_EP/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/EIC_NC_67GEV_EP/uncertainties.yaml index 3cdde3fad7..4cdf510f72 100644 --- a/nnpdf_data/nnpdf_data/commondata/EIC_NC_67GEV_EP/uncertainties.yaml +++ b/nnpdf_data/nnpdf_data/commondata/EIC_NC_67GEV_EP/uncertainties.yaml @@ -8,23 +8,23 @@ definitions: treatment: ADD type: UNCORR bins: -- stat: 0.0044181 +- stat: 4.41810000e-03 sys: 0.0 -- stat: 0.00523863 +- stat: 5.23863000e-03 sys: 0.0 -- stat: 0.00594865 +- stat: 5.94865000e-03 sys: 0.0 -- stat: 0.00659991 +- stat: 6.59991000e-03 sys: 0.0 -- stat: 0.00739964 +- stat: 7.39964000e-03 sys: 0.0 -- stat: 0.00834399 +- stat: 8.34399000e-03 sys: 0.0 -- stat: 0.00923507 +- stat: 9.23507000e-03 sys: 0.0 -- stat: 0.0103193 +- stat: 1.03193000e-02 sys: 0.0 -- stat: 0.0115804 +- stat: 1.15804000e-02 sys: 0.0 -- stat: 0.0135544 +- stat: 1.35544000e-02 sys: 0.0 From fbe9d97178c3ab77111574bc197f51c1b6b98802 Mon Sep 17 00:00:00 2001 From: Radonirinaunimi Date: Fri, 1 Nov 2024 18:10:54 +0100 Subject: [PATCH 15/22] Try if this fixes the CMS uncs (using `numpy-2.1.2`) --- .../CMS_1JET_8TEV/uncertainties.yaml | 58948 ++++++++-------- .../CMS_Z0_7TEV_DIMUON/uncertainties.yaml | 15846 ++--- 2 files changed, 37397 insertions(+), 37397 deletions(-) diff --git a/nnpdf_data/nnpdf_data/commondata/CMS_1JET_8TEV/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/CMS_1JET_8TEV/uncertainties.yaml index daffcd05d3..844dcc730c 100644 --- a/nnpdf_data/nnpdf_data/commondata/CMS_1JET_8TEV/uncertainties.yaml +++ b/nnpdf_data/nnpdf_data/commondata/CMS_1JET_8TEV/uncertainties.yaml @@ -4022,191 +4022,191 @@ bins: RelativeStatFSR-: -2.65151356e+05 luminosity_uncertainty: 975.9256 uncorrelated_uncertainty: 375.356 -- art_sys_1: 1.89429546e-30 - art_sys_2: 2.91460031e-18 - art_sys_3: -2.72981079e-19 - art_sys_4: 2.13872286e+02 - art_sys_5: 4.93487723e-15 - art_sys_6: -2.06066294e-15 - art_sys_7: -4.32504440e+01 - art_sys_8: -7.97663834e-15 - art_sys_9: -1.59603845e+01 - art_sys_10: -1.60786045e-15 - art_sys_11: 1.28597514e-15 +- art_sys_1: -1.10820807e-28 + art_sys_2: 4.17339306e-17 + art_sys_3: 4.80009693e-18 + art_sys_4: -2.13872286e+02 + art_sys_5: -3.24617037e-15 + art_sys_6: -1.36579165e-15 + art_sys_7: 4.32504440e+01 + art_sys_8: 1.21825465e-15 + art_sys_9: 1.59603845e+01 + art_sys_10: -2.98223071e-16 + art_sys_11: -7.42972837e-16 art_sys_12: 2.59780643e+00 - art_sys_13: -1.93157273e-17 + art_sys_13: -5.51000935e-16 art_sys_14: -3.88515743e-02 - art_sys_15: -2.02551771e-17 - art_sys_16: 1.41001692e-02 - art_sys_17: 3.86546429e-16 - art_sys_18: -7.60239308e-17 + art_sys_15: -4.87993046e-16 + art_sys_16: -1.41001692e-02 + art_sys_17: 2.93330603e-16 + art_sys_18: 2.15356281e-16 art_sys_19: -8.26532790e-03 - art_sys_20: 6.60016172e-18 - art_sys_21: 1.76642688e-17 - art_sys_22: -1.58893902e-03 - art_sys_23: 6.59251277e-18 - art_sys_24: 3.13770265e-17 - art_sys_25: 1.07195851e-17 - art_sys_26: -1.07715331e-18 - art_sys_27: -6.54132677e-20 - art_sys_28: 4.62562783e-06 - art_sys_29: -1.76953379e-06 - art_sys_30: 9.51413120e-21 - art_sys_31: 2.18642761e-19 - art_sys_32: -2.38066422e-19 - art_sys_33: 1.56433748e-19 - art_sys_34: 4.47861361e-18 - art_sys_35: 1.89884212e-17 - art_sys_36: 1.38197975e-16 - art_sys_37: -7.83468545e-07 - art_sys_38: 5.64598470e-19 - art_sys_39: -5.77158275e-17 - art_sys_40: -1.35342861e-16 - art_sys_41: -3.53930208e-08 - art_sys_42: -2.50452301e-08 - art_sys_43: 1.05283626e-19 - art_sys_44: 3.94177817e-20 - art_sys_45: -1.18379640e-20 - art_sys_46: -6.87110771e-17 - art_sys_47: -7.04313798e-18 - art_sys_48: 5.06334255e-09 - art_sys_49: 5.63320272e-20 - art_sys_50: -1.60426208e-21 - art_sys_51: -1.61424809e-21 - art_sys_52: 7.39244164e-23 - art_sys_53: 1.04290420e-22 - art_sys_54: -3.64451298e-23 - art_sys_55: -2.72230149e-19 - art_sys_56: 2.64553491e-21 - art_sys_57: 1.33302407e-17 - art_sys_58: 2.71674609e-23 - art_sys_59: -7.14119108e-24 - art_sys_60: -4.34584121e-10 - art_sys_61: 5.30421187e-18 - art_sys_62: 3.90453853e-17 - art_sys_63: -4.87261992e-19 - art_sys_64: -1.96636902e-10 - art_sys_65: -6.00358264e-26 - art_sys_66: -9.12697639e-25 - art_sys_67: 1.24546983e-18 - art_sys_68: -2.89958741e-20 - art_sys_69: 8.87061214e-20 - art_sys_70: -4.02406103e-11 - art_sys_71: -1.09425475e-17 - art_sys_72: 9.96414448e-20 - art_sys_73: 9.18201988e-24 - art_sys_74: 1.27016392e-23 - art_sys_75: -3.07492868e-24 - art_sys_76: -8.26112687e-27 - art_sys_77: 5.06852514e-20 - art_sys_78: -7.47927659e-21 - art_sys_79: 9.54175952e-25 - art_sys_80: 3.65693417e-21 - art_sys_81: -3.60622558e-25 - art_sys_82: -3.83288149e-25 - art_sys_83: -9.34442258e-24 - art_sys_84: -2.56405024e-25 - art_sys_85: -1.56203487e-25 - art_sys_86: -1.26300391e-23 - art_sys_87: 5.80107007e-19 - art_sys_88: -2.36890681e-24 - art_sys_89: -1.53521120e-26 - art_sys_90: 3.91581492e-13 - art_sys_91: 9.69296096e-20 - art_sys_92: -1.01980640e-13 - art_sys_93: -2.92942005e-21 - art_sys_94: 8.51605032e-14 - art_sys_95: -3.70378786e-21 - art_sys_96: -3.16151638e-25 - art_sys_97: 2.05684528e-20 - art_sys_98: -4.01586259e-14 - art_sys_99: 2.12903508e-19 - art_sys_100: 1.03576125e-20 - art_sys_101: -1.95302676e-14 - art_sys_102: 8.26947154e-15 - art_sys_103: -4.35573775e-22 - art_sys_104: 3.44567367e-19 - art_sys_105: 3.19934100e-15 - art_sys_106: -3.88134894e-20 - art_sys_107: -2.11671053e-25 - art_sys_108: 1.13585447e-26 - art_sys_109: 5.29281912e-26 - art_sys_110: -1.93740292e-21 - art_sys_111: -1.17708694e-15 - art_sys_112: -5.46630473e-23 - art_sys_113: 8.54720434e-28 - art_sys_114: 4.07002852e-16 - art_sys_115: 3.45750918e-23 - art_sys_116: -1.78401219e-21 - art_sys_117: -1.70263648e-16 - art_sys_118: -1.23866142e-22 - art_sys_119: 6.11896983e-17 - art_sys_120: 3.11158967e-21 - art_sys_121: -9.22592098e-24 - art_sys_122: 2.04570349e-17 - art_sys_123: 6.79862641e-18 - art_sys_124: 7.34186608e-24 - art_sys_125: 8.81027993e-22 - art_sys_126: -2.08467079e-23 - art_sys_127: -2.21312696e-18 - art_sys_128: -2.46076234e-23 - art_sys_129: 5.74314586e-19 - art_sys_130: -3.91093176e-23 - art_sys_131: 1.56869089e-22 - art_sys_132: -1.96289900e-19 - art_sys_133: -4.59709774e-22 - art_sys_134: -9.38269034e-25 - art_sys_135: 3.33884554e-20 - art_sys_136: -9.17854407e-23 - art_sys_137: 1.01447654e-26 - art_sys_138: 7.49574115e-21 - art_sys_139: -3.24261435e-21 - art_sys_140: -4.78421651e-22 - art_sys_141: 7.34434299e-23 - art_sys_142: 6.17051104e-24 - art_sys_143: 3.39002749e-27 - art_sys_144: 6.05509046e-27 - art_sys_145: 2.48146034e-28 - art_sys_146: 0.0 - art_sys_147: 2.52954722e-25 - art_sys_148: 8.53728459e-25 - art_sys_149: 8.53728459e-25 - art_sys_150: -1.85907676e-24 - art_sys_151: -1.85907676e-24 - art_sys_152: 3.38007412e-23 - art_sys_153: -1.81324899e-24 - art_sys_154: 2.81211709e-28 - art_sys_155: -9.54285357e-36 - art_sys_156: 3.79104172e-40 - art_sys_157: 1.57442550e-38 - art_sys_158: -0.0 - art_sys_159: -2.05792151e-26 - art_sys_160: -9.89402888e-28 - art_sys_161: 5.20099389e-28 - art_sys_162: -1.21145418e-30 - art_sys_163: 4.36466348e-26 - art_sys_164: 2.59292327e-26 - art_sys_165: -3.92657127e-27 - art_sys_166: 2.37268485e-34 - art_sys_167: -5.96085270e-35 - art_sys_168: -4.17404510e-35 - art_sys_169: -3.26723714e-34 - art_sys_170: 2.80904288e-34 - art_sys_171: 2.06536494e-33 - art_sys_172: -3.92799312e-32 - art_sys_173: -2.50925474e-33 - art_sys_174: -1.35069440e-33 - art_sys_175: 1.33094783e-39 - art_sys_176: -2.42226946e-34 - art_sys_177: 3.95843865e-35 - art_sys_178: -1.20568538e-35 - art_sys_179: 1.92317256e-36 - art_sys_180: 1.50334318e-35 - art_sys_181: 1.15775633e-37 - art_sys_182: 2.35075272e-38 - art_sys_183: -7.59154008e-40 - art_sys_184: 6.89282649e-42 - art_sys_185: 1.83677020e-42 + art_sys_20: 1.28301462e-16 + art_sys_21: 2.36421386e-16 + art_sys_22: -4.44623687e-17 + art_sys_23: -1.58893902e-03 + art_sys_24: 3.29064220e-16 + art_sys_25: -4.62562783e-06 + art_sys_26: -1.76953379e-06 + art_sys_27: -6.48342833e-18 + art_sys_28: 7.59436757e-18 + art_sys_29: 1.55908559e-18 + art_sys_30: 7.83468545e-07 + art_sys_31: -2.09582786e-17 + art_sys_32: -1.06900367e-18 + art_sys_33: -3.53930210e-08 + art_sys_34: -2.50452301e-08 + art_sys_35: 1.92725043e-17 + art_sys_36: -9.94994330e-17 + art_sys_37: -9.12280624e-18 + art_sys_38: 1.03930482e-19 + art_sys_39: 2.38685200e-20 + art_sys_40: 2.36761833e-20 + art_sys_41: -1.93478784e-20 + art_sys_42: 1.40604013e-19 + art_sys_43: 9.57365860e-19 + art_sys_44: -1.74453708e-18 + art_sys_45: 3.17912075e-19 + art_sys_46: -4.11083580e-20 + art_sys_47: 6.79355279e-18 + art_sys_48: -5.06334251e-09 + art_sys_49: 6.06522116e-17 + art_sys_50: -2.87023699e-20 + art_sys_51: -5.68510974e-21 + art_sys_52: -1.35571739e-17 + art_sys_53: -4.34584123e-10 + art_sys_54: 1.56021145e-18 + art_sys_55: -1.96636910e-10 + art_sys_56: 9.92886055e-21 + art_sys_57: -5.06536674e-20 + art_sys_58: -1.34836479e-21 + art_sys_59: 4.02406089e-11 + art_sys_60: 6.35240989e-18 + art_sys_61: 1.36551827e-21 + art_sys_62: 3.50728982e-19 + art_sys_63: -4.28475503e-19 + art_sys_64: 1.18518814e-19 + art_sys_65: -9.78394284e-21 + art_sys_66: -2.78913887e-21 + art_sys_67: -1.45905998e-21 + art_sys_68: 2.78583023e-24 + art_sys_69: 5.76486954e-24 + art_sys_70: -3.19391006e-24 + art_sys_71: -5.43710278e-25 + art_sys_72: -2.79462130e-26 + art_sys_73: -3.86761603e-26 + art_sys_74: 5.75011554e-22 + art_sys_75: -4.23882747e-25 + art_sys_76: 2.79442275e-23 + art_sys_77: 6.50741794e-24 + art_sys_78: -3.21625199e-24 + art_sys_79: 3.75370596e-24 + art_sys_80: 5.12986783e-25 + art_sys_81: -5.42106392e-22 + art_sys_82: 1.43485629e-18 + art_sys_83: -1.01017820e-24 + art_sys_84: -1.53463749e-25 + art_sys_85: -2.66218742e-25 + art_sys_86: 6.59963291e-26 + art_sys_87: 4.26823186e-23 + art_sys_88: -2.09175821e-23 + art_sys_89: 2.25420875e-26 + art_sys_90: 5.12855977e-23 + art_sys_91: -3.91581147e-13 + art_sys_92: -1.42397547e-27 + art_sys_93: 2.84324295e-27 + art_sys_94: -1.82577263e-24 + art_sys_95: -4.86600714e-20 + art_sys_96: 1.01982036e-13 + art_sys_97: 2.52320461e-20 + art_sys_98: -7.82816989e-21 + art_sys_99: 8.51603903e-14 + art_sys_100: -6.99208435e-20 + art_sys_101: -4.01584007e-14 + art_sys_102: 5.35375527e-22 + art_sys_103: -1.55018497e-20 + art_sys_104: 1.95305849e-14 + art_sys_105: 6.78617373e-27 + art_sys_106: -8.26936866e-15 + art_sys_107: -4.01343291e-22 + art_sys_108: -8.57532795e-26 + art_sys_109: 1.18636630e-26 + art_sys_110: -6.89601861e-21 + art_sys_111: 3.19949325e-15 + art_sys_112: 1.12670710e-21 + art_sys_113: 1.02175703e-19 + art_sys_114: 2.12444053e-27 + art_sys_115: -1.17711006e-15 + art_sys_116: 3.07608921e-22 + art_sys_117: 2.11882051e-26 + art_sys_118: 4.07017265e-16 + art_sys_119: 1.35378462e-22 + art_sys_120: -1.38818297e-21 + art_sys_121: 3.67329647e-27 + art_sys_122: -1.70252467e-16 + art_sys_123: -1.73353062e-23 + art_sys_124: 6.12519425e-17 + art_sys_125: -9.05581466e-28 + art_sys_126: -3.94599948e-22 + art_sys_127: 8.17830547e-25 + art_sys_128: -2.04577534e-17 + art_sys_129: 6.81494840e-29 + art_sys_130: -7.73574856e-24 + art_sys_131: -8.44163348e-27 + art_sys_132: -6.79149941e-18 + art_sys_133: 1.48516394e-23 + art_sys_134: -6.30691135e-23 + art_sys_135: 2.21527145e-18 + art_sys_136: 1.51530433e-27 + art_sys_137: -5.78987247e-25 + art_sys_138: 5.75565904e-19 + art_sys_139: 1.25547183e-23 + art_sys_140: -1.30590985e-27 + art_sys_141: 3.94131743e-24 + art_sys_142: 1.94674373e-19 + art_sys_143: 3.58423992e-24 + art_sys_144: -6.11829337e-26 + art_sys_145: 3.26807385e-20 + art_sys_146: -1.99533845e-24 + art_sys_147: 2.26287347e-26 + art_sys_148: -7.79533892e-28 + art_sys_149: -3.30482581e-21 + art_sys_150: 9.51238013e-23 + art_sys_151: 5.14214283e-24 + art_sys_152: -8.98591442e-26 + art_sys_153: 1.31166175e-23 + art_sys_154: -8.25186711e-23 + art_sys_155: -4.79916204e-26 + art_sys_156: 0.0 + art_sys_157: -3.66452841e-23 + art_sys_158: 0.0 + art_sys_159: 5.83054350e-24 + art_sys_160: -7.58248555e-25 + art_sys_161: -6.52232196e-25 + art_sys_162: -6.52232196e-25 + art_sys_163: -6.73458724e-25 + art_sys_164: -6.73458724e-25 + art_sys_165: 7.59627451e-39 + art_sys_166: -2.52138177e-39 + art_sys_167: -0.0 + art_sys_168: -4.78552379e-34 + art_sys_169: 3.98590341e-33 + art_sys_170: -9.17635284e-33 + art_sys_171: -1.02855843e-31 + art_sys_172: -2.34770549e-33 + art_sys_173: -1.00646434e-33 + art_sys_174: 2.97555884e-34 + art_sys_175: -1.22452131e-34 + art_sys_176: 6.76477851e-36 + art_sys_177: 4.44865163e-38 + art_sys_178: -6.14986200e-38 + art_sys_179: 1.46223520e-38 + art_sys_180: 1.51634374e-37 + art_sys_181: -3.51548024e-37 + art_sys_182: 5.40503294e-36 + art_sys_183: 3.83013813e-38 + art_sys_184: 4.51303779e-40 + art_sys_185: -2.56358429e-41 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -4313,191 +4313,191 @@ bins: RelativeStatFSR-: -7.14236536e+00 luminosity_uncertainty: 975.9256 uncorrelated_uncertainty: 375.356 -- art_sys_1: 9.68258387e-31 - art_sys_2: 1.49926785e-18 - art_sys_3: 1.05046562e-18 - art_sys_4: 1.10015716e+02 - art_sys_5: 2.55672925e-15 - art_sys_6: -1.05918186e-15 - art_sys_7: 7.94684215e+01 - art_sys_8: -7.22426486e-15 - art_sys_9: 2.76420107e+01 - art_sys_10: -9.49849248e-16 - art_sys_11: -4.82367064e-15 +- art_sys_1: -5.70095765e-29 + art_sys_2: 2.14678973e-17 + art_sys_3: 3.87656932e-18 + art_sys_4: -1.10015716e+02 + art_sys_5: -1.59360751e-15 + art_sys_6: -6.96706861e-16 + art_sys_7: -7.94684215e+01 + art_sys_8: 2.16004538e-15 + art_sys_9: -2.76420107e+01 + art_sys_10: 1.45388066e-15 + art_sys_11: -4.92240876e-16 art_sys_12: -7.40958162e+00 - art_sys_13: 1.74452282e-16 + art_sys_13: 8.29794439e-17 art_sys_14: 1.27844108e-01 - art_sys_15: -4.38023590e-16 - art_sys_16: -4.68621367e-02 - art_sys_17: 1.68556594e-16 - art_sys_18: 4.13454501e-16 + art_sys_15: 5.09237314e-16 + art_sys_16: 4.68621367e-02 + art_sys_17: -9.80273932e-17 + art_sys_18: 1.42203602e-16 art_sys_19: 3.06526079e-02 - art_sys_20: 3.09043851e-18 - art_sys_21: 9.94674587e-17 - art_sys_22: 6.35192413e-03 - art_sys_23: 1.75136153e-17 - art_sys_24: -1.34654208e-17 - art_sys_25: -2.94654126e-17 - art_sys_26: 5.77431340e-18 - art_sys_27: 2.91372727e-19 - art_sys_28: -2.64716142e-05 - art_sys_29: 1.10167488e-05 - art_sys_30: 4.63480181e-21 - art_sys_31: 1.87202074e-19 - art_sys_32: -1.94502461e-19 - art_sys_33: 7.79638848e-20 - art_sys_34: -1.19855074e-17 - art_sys_35: -7.04691996e-17 - art_sys_36: -7.88554947e-16 - art_sys_37: 4.46250602e-06 - art_sys_38: -4.87255390e-19 - art_sys_39: 2.06179290e-16 - art_sys_40: 1.27781561e-15 - art_sys_41: 3.35534776e-07 - art_sys_42: 1.58782566e-07 - art_sys_43: 7.08382321e-20 - art_sys_44: 8.01442323e-21 - art_sys_45: 8.26334170e-20 - art_sys_46: 3.28465259e-16 - art_sys_47: 5.56532381e-17 - art_sys_48: -3.81972021e-08 - art_sys_49: -3.35476516e-19 - art_sys_50: 1.87039398e-20 - art_sys_51: 5.83371202e-21 - art_sys_52: 5.75780896e-22 - art_sys_53: -5.60905671e-22 - art_sys_54: 1.70420144e-22 - art_sys_55: 3.97508084e-19 - art_sys_56: -1.58050647e-19 - art_sys_57: -1.01196651e-16 - art_sys_58: -2.05017197e-22 - art_sys_59: 4.79845948e-23 - art_sys_60: 2.92226896e-09 - art_sys_61: -3.58376460e-17 - art_sys_62: -2.64284698e-16 - art_sys_63: 3.36879003e-18 - art_sys_64: 1.33373123e-09 - art_sys_65: 4.91388409e-25 - art_sys_66: 6.29114696e-24 - art_sys_67: -6.42365476e-18 - art_sys_68: 6.93638374e-21 - art_sys_69: 2.33326935e-21 - art_sys_70: 2.77656631e-10 - art_sys_71: 7.45931429e-17 - art_sys_72: -1.84994811e-19 - art_sys_73: -6.87524033e-23 - art_sys_74: -5.78881163e-23 - art_sys_75: 9.65911728e-24 - art_sys_76: 5.03303708e-26 - art_sys_77: 1.49231097e-19 - art_sys_78: 3.08080709e-20 - art_sys_79: -4.50061711e-24 - art_sys_80: -2.11207931e-20 - art_sys_81: 1.40372581e-24 - art_sys_82: 1.75450852e-24 - art_sys_83: 5.45607947e-23 - art_sys_84: 1.19296100e-24 - art_sys_85: 6.14266402e-25 - art_sys_86: 7.43938929e-23 - art_sys_87: -3.47338570e-18 - art_sys_88: 1.38554167e-23 - art_sys_89: 1.01507820e-25 - art_sys_90: -1.61621562e-12 - art_sys_91: -5.37014576e-19 - art_sys_92: 6.44907830e-13 - art_sys_93: -7.91540281e-20 - art_sys_94: -4.41280319e-13 - art_sys_95: 1.54172090e-20 - art_sys_96: 1.86593668e-24 - art_sys_97: -1.17441645e-19 - art_sys_98: 2.18615592e-13 - art_sys_99: -1.36717269e-18 - art_sys_100: -6.05614019e-20 - art_sys_101: 1.09588808e-13 - art_sys_102: -4.63817637e-14 - art_sys_103: 2.58022901e-21 - art_sys_104: -2.04575321e-18 - art_sys_105: -1.83560730e-14 - art_sys_106: 2.25444455e-19 - art_sys_107: 1.25350539e-24 - art_sys_108: -7.69655627e-26 - art_sys_109: -3.19759927e-25 - art_sys_110: 1.10369721e-20 - art_sys_111: 6.77675169e-15 - art_sys_112: 3.32874697e-22 - art_sys_113: -3.08417654e-27 - art_sys_114: -2.36548069e-15 - art_sys_115: -1.98163014e-22 - art_sys_116: 1.05666308e-20 - art_sys_117: 9.94409991e-16 - art_sys_118: 7.31671893e-22 - art_sys_119: -3.58671191e-16 - art_sys_120: -1.81453699e-20 - art_sys_121: 5.48529208e-23 - art_sys_122: -1.20432459e-16 - art_sys_123: -4.00947257e-17 - art_sys_124: -4.34675612e-23 - art_sys_125: -5.19270897e-21 - art_sys_126: 1.23418733e-22 - art_sys_127: 1.30765846e-17 - art_sys_128: 1.45837978e-22 - art_sys_129: -3.39823242e-18 - art_sys_130: 2.31677516e-22 - art_sys_131: -9.29275848e-22 - art_sys_132: 1.16214433e-18 - art_sys_133: 2.72175740e-21 - art_sys_134: 5.55505181e-24 - art_sys_135: -1.97862542e-19 - art_sys_136: 5.43753459e-22 - art_sys_137: -6.00963114e-26 - art_sys_138: -4.15359673e-20 - art_sys_139: 1.92273517e-20 - art_sys_140: 2.83674702e-21 - art_sys_141: -4.35363016e-22 - art_sys_142: -3.65909089e-23 - art_sys_143: -2.01042497e-26 - art_sys_144: -3.58978576e-26 - art_sys_145: -1.45492970e-27 - art_sys_146: -0.0 - art_sys_147: -1.49303259e-24 - art_sys_148: -5.12444219e-24 - art_sys_149: -5.12444219e-24 - art_sys_150: 1.10658250e-23 - art_sys_151: 1.10658250e-23 - art_sys_152: -1.99688950e-22 - art_sys_153: 1.06987687e-23 - art_sys_154: -1.65299413e-27 - art_sys_155: 5.63507233e-35 - art_sys_156: -2.24655910e-39 - art_sys_157: -9.27578741e-38 - art_sys_158: 0.0 - art_sys_159: 1.16669279e-25 - art_sys_160: 5.63279324e-27 - art_sys_161: -3.38125617e-27 - art_sys_162: 5.79814058e-29 - art_sys_163: -2.59385945e-25 - art_sys_164: -1.53664374e-25 - art_sys_165: 2.34078685e-26 - art_sys_166: -1.06564041e-33 - art_sys_167: 3.21953469e-34 - art_sys_168: 2.26462625e-34 - art_sys_169: 1.73537158e-33 - art_sys_170: -1.05570534e-33 - art_sys_171: -1.11448604e-32 - art_sys_172: 1.97812166e-31 - art_sys_173: 9.98918700e-33 - art_sys_174: 6.78641392e-33 - art_sys_175: -7.89992339e-39 - art_sys_176: 1.46595615e-33 - art_sys_177: -3.05013649e-34 - art_sys_178: 8.79093779e-35 - art_sys_179: -1.10586832e-35 - art_sys_180: -7.55165414e-35 - art_sys_181: -5.67610302e-37 - art_sys_182: -1.87727094e-37 - art_sys_183: 3.14330251e-39 - art_sys_184: -3.71103086e-41 - art_sys_185: -1.08891376e-41 + art_sys_20: 1.85767415e-17 + art_sys_21: -4.74999540e-16 + art_sys_22: 2.00855939e-17 + art_sys_23: 6.35192413e-03 + art_sys_24: -9.96946570e-16 + art_sys_25: 2.64716142e-05 + art_sys_26: 1.10167488e-05 + art_sys_27: 2.24938654e-17 + art_sys_28: -3.00087740e-19 + art_sys_29: -1.22241510e-18 + art_sys_30: -4.46250602e-06 + art_sys_31: 9.95240601e-17 + art_sys_32: 4.52061924e-18 + art_sys_33: 3.35534777e-07 + art_sys_34: 1.58782566e-07 + art_sys_35: -7.78867568e-17 + art_sys_36: -1.21002844e-17 + art_sys_37: 5.38994049e-18 + art_sys_38: -2.62339785e-19 + art_sys_39: -3.58935625e-20 + art_sys_40: -2.87750117e-19 + art_sys_41: -6.19181909e-19 + art_sys_42: -2.58469644e-19 + art_sys_43: 9.73241930e-19 + art_sys_44: -1.25346437e-18 + art_sys_45: 8.59098930e-19 + art_sys_46: 8.57413300e-21 + art_sys_47: -5.03847860e-17 + art_sys_48: 3.81972019e-08 + art_sys_49: -4.57276601e-16 + art_sys_50: -9.24843553e-20 + art_sys_51: -3.32984197e-19 + art_sys_52: 1.05419517e-16 + art_sys_53: 2.92226894e-09 + art_sys_54: -1.11833285e-17 + art_sys_55: 1.33373127e-09 + art_sys_56: -3.19163464e-18 + art_sys_57: -1.56871871e-19 + art_sys_58: -6.17476516e-22 + art_sys_59: -2.77656628e-10 + art_sys_60: -4.42626829e-17 + art_sys_61: 1.02124862e-20 + art_sys_62: -1.68671661e-18 + art_sys_63: 1.81103094e-18 + art_sys_64: -1.50490651e-19 + art_sys_65: 2.49362803e-20 + art_sys_66: 1.67541106e-20 + art_sys_67: 9.77258613e-21 + art_sys_68: -1.69488676e-23 + art_sys_69: 9.70467544e-24 + art_sys_70: 3.13623096e-24 + art_sys_71: 7.76402334e-25 + art_sys_72: 2.17065375e-25 + art_sys_73: 1.31265856e-27 + art_sys_74: 5.91597115e-22 + art_sys_75: 6.02380547e-25 + art_sys_76: -1.28537817e-22 + art_sys_77: -3.94513638e-23 + art_sys_78: 1.66584125e-23 + art_sys_79: -1.54779674e-24 + art_sys_80: -3.37191460e-24 + art_sys_81: 3.43624950e-21 + art_sys_82: -7.73756265e-18 + art_sys_83: 3.91520974e-24 + art_sys_84: 7.44528085e-25 + art_sys_85: 1.18038941e-24 + art_sys_86: -3.04247430e-25 + art_sys_87: -2.35583283e-22 + art_sys_88: 1.20139285e-22 + art_sys_89: -6.94607488e-26 + art_sys_90: -3.02635939e-22 + art_sys_91: 1.61621501e-12 + art_sys_92: 1.19875784e-26 + art_sys_93: -1.58180863e-26 + art_sys_94: 1.08774989e-23 + art_sys_95: 2.45995988e-19 + art_sys_96: -6.44913941e-13 + art_sys_97: -1.73142726e-19 + art_sys_98: 3.88276622e-20 + art_sys_99: -4.41279664e-13 + art_sys_100: 3.81603147e-19 + art_sys_101: 2.18613893e-13 + art_sys_102: -2.84333855e-21 + art_sys_103: 9.38863107e-20 + art_sys_104: -1.09590226e-13 + art_sys_105: -9.90849394e-26 + art_sys_106: 4.63813100e-14 + art_sys_107: 2.82329694e-21 + art_sys_108: 5.34170324e-25 + art_sys_109: -6.53291044e-26 + art_sys_110: 4.03223728e-20 + art_sys_111: -1.83568185e-14 + art_sys_112: -6.93608724e-21 + art_sys_113: -5.81625633e-19 + art_sys_114: -5.58927485e-27 + art_sys_115: 6.77681409e-15 + art_sys_116: -1.81104740e-21 + art_sys_117: -1.18537318e-25 + art_sys_118: -2.36550357e-15 + art_sys_119: -8.03931536e-22 + art_sys_120: 8.14323017e-21 + art_sys_121: -2.16143132e-26 + art_sys_122: 9.94310549e-16 + art_sys_123: 1.08765775e-22 + art_sys_124: -3.59017033e-16 + art_sys_125: 3.20668946e-27 + art_sys_126: 2.34068387e-21 + art_sys_127: -4.66918561e-24 + art_sys_128: 1.20429566e-16 + art_sys_129: -8.67858770e-28 + art_sys_130: 4.58853491e-23 + art_sys_131: 5.06873322e-26 + art_sys_132: 4.00497220e-17 + art_sys_133: -8.80470682e-23 + art_sys_134: 3.67779902e-22 + art_sys_135: -1.30880084e-17 + art_sys_136: -8.84278512e-27 + art_sys_137: 3.42999203e-24 + art_sys_138: -3.40525393e-18 + art_sys_139: -7.44167968e-23 + art_sys_140: 7.63421418e-27 + art_sys_141: -2.31022219e-23 + art_sys_142: -1.15244016e-18 + art_sys_143: -2.12391440e-23 + art_sys_144: 3.62174517e-25 + art_sys_145: -1.93648219e-19 + art_sys_146: 1.18257772e-23 + art_sys_147: -1.34087068e-25 + art_sys_148: 4.57106522e-27 + art_sys_149: 1.95953345e-20 + art_sys_150: -5.64013325e-22 + art_sys_151: -3.04746490e-23 + art_sys_152: 5.32731841e-25 + art_sys_153: -7.77489876e-23 + art_sys_154: 4.79160914e-22 + art_sys_155: 2.84520086e-25 + art_sys_156: -0.0 + art_sys_157: 2.17317826e-22 + art_sys_158: -0.0 + art_sys_159: -3.45557121e-23 + art_sys_160: 4.49768041e-24 + art_sys_161: 3.86672610e-24 + art_sys_162: 3.86672610e-24 + art_sys_163: 3.99202229e-24 + art_sys_164: 3.99202229e-24 + art_sys_165: -4.50288221e-38 + art_sys_166: 1.49461885e-38 + art_sys_167: 0.0 + art_sys_168: 3.74513723e-33 + art_sys_169: -9.67278268e-33 + art_sys_170: -1.58402751e-34 + art_sys_171: 2.81957734e-31 + art_sys_172: -3.10056381e-32 + art_sys_173: -3.37852026e-33 + art_sys_174: 1.98070767e-33 + art_sys_175: -1.42120678e-35 + art_sys_176: 1.59827174e-35 + art_sys_177: -2.01772885e-37 + art_sys_178: -2.49540837e-37 + art_sys_179: -8.66934191e-38 + art_sys_180: -8.98731695e-37 + art_sys_181: -5.87021485e-37 + art_sys_182: -2.36661179e-36 + art_sys_183: -1.49638321e-37 + art_sys_184: 1.04697279e-39 + art_sys_185: 1.70079165e-40 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -4604,191 +4604,191 @@ bins: RelativeStatFSR-: -3.87533944e+00 luminosity_uncertainty: 4.93402000e+02 uncorrelated_uncertainty: 189.77 -- art_sys_1: 8.04840293e-32 - art_sys_2: 1.26943538e-19 - art_sys_3: 2.87385985e-19 - art_sys_4: 9.31506862e+00 - art_sys_5: 1.14197941e-14 - art_sys_6: -8.91932768e-17 - art_sys_7: 7.79292603e+01 - art_sys_8: 1.52306587e-17 - art_sys_9: -2.67856473e+01 - art_sys_10: 4.33145920e-16 - art_sys_11: 7.58853377e-15 +- art_sys_1: -4.82797852e-30 + art_sys_2: 1.81769426e-18 + art_sys_3: 6.12449966e-19 + art_sys_4: -9.31506862e+00 + art_sys_5: -3.20052311e-15 + art_sys_6: -5.99034093e-17 + art_sys_7: -7.79292603e+01 + art_sys_8: 1.47065956e-16 + art_sys_9: 2.67856473e+01 + art_sys_10: 1.14142003e-15 + art_sys_11: -3.64221873e-16 art_sys_12: 1.13989659e+01 - art_sys_13: 3.56813067e-16 + art_sys_13: -2.02004877e-16 art_sys_14: -4.38121108e-01 - art_sys_15: 1.08064544e-16 - art_sys_16: 1.22818175e-01 - art_sys_17: -3.50219939e-16 - art_sys_18: -1.45939112e-15 + art_sys_15: -8.17515981e-16 + art_sys_16: -1.22818175e-01 + art_sys_17: -1.02112981e-16 + art_sys_18: -2.14759246e-16 art_sys_19: -9.58547906e-02 - art_sys_20: 3.79223127e-17 - art_sys_21: -3.39851831e-17 - art_sys_22: -2.09371166e-02 - art_sys_23: -4.69114245e-17 - art_sys_24: -1.07902026e-16 - art_sys_25: 2.64008827e-17 - art_sys_26: -1.83512339e-17 - art_sys_27: -1.87830521e-18 - art_sys_28: 7.64966903e-05 - art_sys_29: -4.05814976e-05 - art_sys_30: -9.52677389e-20 - art_sys_31: -3.57845241e-19 - art_sys_32: -5.22464212e-20 - art_sys_33: 8.39162860e-20 - art_sys_34: 2.85408706e-17 - art_sys_35: 1.72100492e-16 - art_sys_36: 2.75971692e-15 - art_sys_37: -1.55809470e-05 - art_sys_38: -8.25259762e-19 - art_sys_39: -5.46495970e-16 - art_sys_40: -4.84616225e-15 - art_sys_41: -1.27380061e-06 - art_sys_42: -6.04373986e-07 - art_sys_43: 3.07421041e-20 - art_sys_44: -1.40838906e-20 - art_sys_45: 2.53661132e-19 - art_sys_46: -1.11968159e-15 - art_sys_47: -2.12463429e-16 - art_sys_48: 1.45843388e-07 - art_sys_49: 9.77458134e-19 - art_sys_50: -9.36620736e-20 - art_sys_51: -2.84589715e-20 - art_sys_52: 1.01460195e-21 - art_sys_53: 2.15234526e-21 - art_sys_54: -6.48926170e-22 - art_sys_55: -1.48980546e-19 - art_sys_56: 6.90251091e-19 - art_sys_57: 3.86354019e-16 - art_sys_58: 8.71188033e-22 - art_sys_59: -1.87872590e-22 - art_sys_60: -1.21792599e-08 - art_sys_61: 1.10956875e-16 - art_sys_62: 1.03379161e-15 - art_sys_63: -1.36605152e-17 - art_sys_64: -5.23360472e-09 - art_sys_65: -2.02993780e-24 - art_sys_66: -2.54543937e-23 - art_sys_67: 2.38219189e-17 - art_sys_68: 2.27623985e-20 - art_sys_69: -6.18490500e-20 - art_sys_70: -1.12523249e-09 - art_sys_71: -3.02128354e-16 - art_sys_72: 3.60035428e-19 - art_sys_73: 2.40255086e-22 - art_sys_74: 2.21149161e-22 - art_sys_75: -3.74752805e-23 - art_sys_76: -1.91182407e-25 - art_sys_77: -1.85639961e-19 - art_sys_78: -1.43198143e-19 - art_sys_79: 1.67428485e-23 - art_sys_80: 8.06768758e-20 - art_sys_81: -5.44487258e-24 - art_sys_82: -6.78342092e-24 - art_sys_83: -2.13562355e-22 - art_sys_84: -4.52579661e-24 - art_sys_85: -2.40883200e-24 - art_sys_86: -2.91186371e-22 - art_sys_87: 1.27746225e-17 - art_sys_88: -5.44188018e-23 - art_sys_89: -4.81754452e-25 - art_sys_90: 6.36670478e-12 - art_sys_91: 2.08757669e-18 - art_sys_92: -2.34299319e-12 - art_sys_93: 2.26396997e-19 - art_sys_94: 1.74611948e-12 - art_sys_95: -6.16274784e-20 - art_sys_96: -7.31410227e-24 - art_sys_97: 4.56022152e-19 - art_sys_98: -8.37721882e-13 - art_sys_99: 5.34929398e-18 - art_sys_100: 2.37302997e-19 - art_sys_101: -4.26892610e-13 - art_sys_102: 1.80293857e-13 - art_sys_103: -1.01970122e-20 - art_sys_104: 8.08709507e-18 - art_sys_105: 7.15400971e-14 - art_sys_106: -8.79434265e-19 - art_sys_107: -4.91620792e-24 - art_sys_108: 3.15340257e-25 - art_sys_109: 1.25975712e-24 - art_sys_110: -4.26170807e-20 - art_sys_111: -2.64874878e-14 - art_sys_112: -1.34773877e-21 - art_sys_113: 8.43169609e-27 - art_sys_114: 9.24502304e-15 - art_sys_115: 7.66234286e-22 - art_sys_116: -4.16523859e-20 - art_sys_117: -3.89420380e-15 - art_sys_118: -2.87031065e-21 - art_sys_119: 1.40510324e-15 - art_sys_120: 7.09912546e-20 - art_sys_121: -2.16010618e-22 - art_sys_122: 4.72164402e-16 - art_sys_123: 1.57279185e-16 - art_sys_124: 1.70609478e-22 - art_sys_125: 2.03058052e-20 - art_sys_126: -4.84425464e-22 - art_sys_127: -5.13032740e-17 - art_sys_128: -5.72562636e-22 - art_sys_129: 1.33377214e-17 - art_sys_130: -9.09401040e-22 - art_sys_131: 3.64789018e-21 - art_sys_132: -4.56151612e-18 - art_sys_133: -1.06831592e-20 - art_sys_134: -2.18040723e-23 - art_sys_135: 7.76758290e-19 - art_sys_136: -2.13452410e-21 - art_sys_137: 2.35931844e-25 - art_sys_138: 1.61591010e-19 - art_sys_139: -7.54881680e-20 - art_sys_140: -1.11372114e-20 - art_sys_141: 1.70917253e-21 - art_sys_142: 1.43611398e-22 - art_sys_143: 7.89331284e-26 - art_sys_144: 1.40934545e-25 - art_sys_145: 5.73190187e-27 - art_sys_146: 0.0 - art_sys_147: 5.85548361e-24 - art_sys_148: 2.01566025e-23 - art_sys_149: 2.01566025e-23 - art_sys_150: -4.35346271e-23 - art_sys_151: -4.35346271e-23 - art_sys_152: 7.82717706e-22 - art_sys_153: -4.19127135e-23 - art_sys_154: 6.45966542e-27 - art_sys_155: -2.20871233e-34 - art_sys_156: 8.81886213e-39 - art_sys_157: 3.63796913e-37 - art_sys_158: -0.0 - art_sys_159: -4.54067941e-25 - art_sys_160: -2.17287879e-26 - art_sys_161: 1.30497606e-26 - art_sys_162: -4.61952094e-28 - art_sys_163: 1.02005772e-24 - art_sys_164: 6.03000013e-25 - art_sys_165: -9.15038376e-26 - art_sys_166: 3.18778946e-33 - art_sys_167: -9.61348352e-34 - art_sys_168: -7.18614308e-34 - art_sys_169: -6.08972611e-33 - art_sys_170: 3.28873923e-33 - art_sys_171: 3.63432489e-32 - art_sys_172: -6.51623420e-31 - art_sys_173: -3.10083576e-32 - art_sys_174: -2.33782204e-32 - art_sys_175: 3.09969060e-38 - art_sys_176: -5.21666428e-33 - art_sys_177: 1.12980157e-33 - art_sys_178: -3.18730237e-34 - art_sys_179: 4.10859294e-35 - art_sys_180: 2.84687096e-34 - art_sys_181: 1.62716507e-36 - art_sys_182: 6.63543577e-37 - art_sys_183: -1.07437557e-38 - art_sys_184: 1.38700710e-40 - art_sys_185: 4.27684088e-41 + art_sys_20: 8.03026883e-17 + art_sys_21: 7.81512348e-16 + art_sys_22: 1.01515724e-17 + art_sys_23: -2.09371166e-02 + art_sys_24: 1.96914065e-15 + art_sys_25: -7.64966903e-05 + art_sys_26: -4.05814976e-05 + art_sys_27: -3.94908585e-17 + art_sys_28: -7.38354160e-17 + art_sys_29: 7.99382089e-19 + art_sys_30: 1.55809470e-05 + art_sys_31: -3.43249509e-16 + art_sys_32: -5.82653887e-18 + art_sys_33: -1.27380061e-06 + art_sys_34: -6.04373986e-07 + art_sys_35: 2.47339907e-16 + art_sys_36: 2.15215430e-16 + art_sys_37: 3.53753152e-18 + art_sys_38: -3.91629556e-19 + art_sys_39: 1.02006311e-20 + art_sys_40: -6.93914667e-20 + art_sys_41: -2.62238451e-19 + art_sys_42: 1.57472276e-20 + art_sys_43: -3.75796501e-19 + art_sys_44: 2.08069397e-18 + art_sys_45: -8.76722247e-19 + art_sys_46: 1.13079316e-19 + art_sys_47: 1.91379585e-16 + art_sys_48: -1.45843387e-07 + art_sys_49: 1.74603641e-15 + art_sys_50: 9.20488191e-20 + art_sys_51: 6.87763919e-19 + art_sys_52: -4.03609738e-16 + art_sys_53: -1.21792598e-08 + art_sys_54: 4.62666134e-17 + art_sys_55: -5.23360485e-09 + art_sys_56: 1.54571231e-17 + art_sys_57: -7.32530632e-20 + art_sys_58: -6.81786514e-21 + art_sys_59: 1.12523248e-09 + art_sys_60: 1.79274784e-16 + art_sys_61: -4.51996033e-20 + art_sys_62: 6.04680547e-18 + art_sys_63: -7.81126140e-18 + art_sys_64: 3.69376436e-19 + art_sys_65: -9.28407843e-20 + art_sys_66: -2.79360196e-20 + art_sys_67: -3.34838724e-20 + art_sys_68: 4.93050990e-23 + art_sys_69: -1.74349900e-23 + art_sys_70: -1.06465077e-23 + art_sys_71: -4.20031471e-24 + art_sys_72: -4.58739742e-25 + art_sys_73: -4.25633010e-25 + art_sys_74: -8.07799684e-22 + art_sys_75: -1.93358673e-24 + art_sys_76: 5.14227300e-22 + art_sys_77: 1.50293608e-22 + art_sys_78: -6.22268431e-23 + art_sys_79: 7.83127228e-24 + art_sys_80: 1.15614921e-23 + art_sys_81: -1.24778762e-20 + art_sys_82: 2.91123236e-17 + art_sys_83: -1.55385784e-23 + art_sys_84: -2.60067667e-24 + art_sys_85: -4.76998149e-24 + art_sys_86: 1.16165370e-24 + art_sys_87: 9.06962165e-22 + art_sys_88: -4.68066124e-22 + art_sys_89: 2.99640701e-25 + art_sys_90: 1.18853364e-21 + art_sys_91: -6.36670718e-12 + art_sys_92: -2.58113738e-26 + art_sys_93: 5.95244111e-26 + art_sys_94: -4.26299599e-23 + art_sys_95: -9.79506959e-19 + art_sys_96: 2.34301249e-12 + art_sys_97: 8.28218786e-19 + art_sys_98: -1.44173901e-19 + art_sys_99: 1.74611696e-12 + art_sys_100: -1.46381067e-18 + art_sys_101: -8.37714979e-13 + art_sys_102: 1.09197768e-20 + art_sys_103: -3.81961867e-19 + art_sys_104: 4.26897648e-13 + art_sys_105: 3.93223706e-25 + art_sys_106: -1.80292498e-13 + art_sys_107: -1.09957041e-20 + art_sys_108: -2.08666371e-24 + art_sys_109: 2.52581703e-25 + art_sys_110: -1.57931480e-19 + art_sys_111: 7.15428376e-14 + art_sys_112: 2.67596353e-20 + art_sys_113: 2.26421615e-18 + art_sys_114: 1.90010047e-26 + art_sys_115: -2.64875914e-14 + art_sys_116: 7.10122728e-21 + art_sys_117: 4.91373254e-25 + art_sys_118: 9.24495358e-15 + art_sys_119: 3.14552582e-21 + art_sys_120: -3.19146212e-20 + art_sys_121: 7.63105656e-26 + art_sys_122: -3.89372191e-15 + art_sys_123: -4.34194412e-22 + art_sys_124: 1.40640357e-15 + art_sys_125: -1.52432456e-26 + art_sys_126: -9.18574304e-21 + art_sys_127: 1.80676729e-23 + art_sys_128: -4.72129039e-16 + art_sys_129: 1.05291237e-26 + art_sys_130: -1.80103318e-22 + art_sys_131: -1.99095731e-25 + art_sys_132: -1.57093297e-16 + art_sys_133: 3.45657563e-22 + art_sys_134: -1.44216962e-21 + art_sys_135: 5.13448463e-17 + art_sys_136: 3.50652680e-26 + art_sys_137: -1.34704303e-23 + art_sys_138: 1.33642493e-17 + art_sys_139: 2.92143992e-22 + art_sys_140: -2.99822025e-26 + art_sys_141: 9.07903278e-23 + art_sys_142: 4.52308892e-18 + art_sys_143: 8.33668597e-23 + art_sys_144: -1.42137499e-24 + art_sys_145: 7.60159762e-19 + art_sys_146: -4.64190811e-23 + art_sys_147: 5.26376513e-25 + art_sys_148: -1.79173748e-26 + art_sys_149: -7.69284622e-20 + art_sys_150: 2.21422484e-21 + art_sys_151: 1.19649359e-22 + art_sys_152: -2.09137478e-24 + art_sys_153: 3.05232285e-22 + art_sys_154: -1.89205190e-21 + art_sys_155: -1.11687241e-24 + art_sys_156: 0.0 + art_sys_157: -8.53173474e-22 + art_sys_158: 0.0 + art_sys_159: 1.35669698e-22 + art_sys_160: -1.76564706e-23 + art_sys_161: -1.51792477e-23 + art_sys_162: -1.51792477e-23 + art_sys_163: -1.56722625e-23 + art_sys_164: -1.56722625e-23 + art_sys_165: 1.76776653e-37 + art_sys_166: -5.86764631e-38 + art_sys_167: -0.0 + art_sys_168: -1.37991383e-32 + art_sys_169: 3.87927959e-32 + art_sys_170: -8.95961170e-33 + art_sys_171: -9.37437355e-31 + art_sys_172: 9.49773595e-32 + art_sys_173: 7.60525690e-33 + art_sys_174: -8.33265115e-33 + art_sys_175: 1.63826000e-35 + art_sys_176: -9.51254518e-35 + art_sys_177: 9.87208739e-37 + art_sys_178: 8.77973112e-37 + art_sys_179: 3.40293428e-37 + art_sys_180: 3.52846789e-36 + art_sys_181: 4.57450867e-36 + art_sys_182: 6.14270692e-36 + art_sys_183: 4.16388656e-37 + art_sys_184: -3.29181079e-39 + art_sys_185: -6.60089432e-40 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -4895,191 +4895,191 @@ bins: RelativeStatFSR-: -1.92086065e+00 luminosity_uncertainty: 2.24647540e+02 uncorrelated_uncertainty: 86.4029 -- art_sys_1: -1.15781078e-31 - art_sys_2: -1.77832590e-19 - art_sys_3: 5.08179510e-20 - art_sys_4: -1.30492895e+01 - art_sys_5: 4.80939840e-15 - art_sys_6: 1.25832104e-16 - art_sys_7: 1.69691686e+01 - art_sys_8: 5.69046080e-15 - art_sys_9: -4.73628524e+01 - art_sys_10: 6.36157839e-16 - art_sys_11: -6.06236925e-15 +- art_sys_1: 6.76188607e-30 + art_sys_2: -2.54637079e-18 + art_sys_3: -4.08972061e-19 + art_sys_4: 1.30492895e+01 + art_sys_5: -1.47489371e-15 + art_sys_6: 8.23637276e-17 + art_sys_7: -1.69691686e+01 + art_sys_8: 1.22797639e-14 + art_sys_9: 4.73628524e+01 + art_sys_10: 1.30708470e-16 + art_sys_11: -4.76378697e-16 art_sys_12: -1.14751957e+01 - art_sys_13: 7.55557412e-16 + art_sys_13: 1.97183640e-16 art_sys_14: 4.10769516e-01 - art_sys_15: -1.57101941e-16 - art_sys_16: -2.65060630e-01 - art_sys_17: 5.70713217e-16 - art_sys_18: 2.43524449e-15 + art_sys_15: 1.05824724e-15 + art_sys_16: 2.65060630e-01 + art_sys_17: -4.89144981e-16 + art_sys_18: 1.96555912e-16 art_sys_19: 1.86916404e-01 - art_sys_20: -4.07269697e-18 - art_sys_21: 9.22966939e-17 - art_sys_22: 4.93383896e-02 - art_sys_23: -1.87936010e-17 - art_sys_24: 2.41320984e-16 - art_sys_25: -9.40013596e-17 - art_sys_26: 6.08799842e-17 - art_sys_27: 4.07718505e-18 - art_sys_28: -2.74527893e-04 - art_sys_29: 1.18775915e-04 - art_sys_30: 3.07046573e-19 - art_sys_31: 1.27099845e-18 - art_sys_32: 5.82109207e-20 - art_sys_33: 1.61318820e-19 - art_sys_34: -5.43501875e-17 - art_sys_35: -2.06713589e-16 - art_sys_36: -9.12691244e-15 - art_sys_37: 5.14524319e-05 - art_sys_38: -4.81339029e-19 - art_sys_39: 1.33829779e-15 - art_sys_40: 1.63810169e-14 - art_sys_41: 4.30821299e-06 - art_sys_42: 1.98048140e-06 - art_sys_43: -5.31277664e-20 - art_sys_44: -1.42707702e-20 - art_sys_45: 2.35356107e-19 - art_sys_46: 3.40661461e-15 - art_sys_47: 7.34639517e-16 - art_sys_48: -5.04535564e-07 - art_sys_49: -3.29127256e-18 - art_sys_50: 2.55266877e-19 - art_sys_51: 9.48672496e-20 - art_sys_52: -2.60356817e-21 - art_sys_53: -7.25067478e-21 - art_sys_54: 2.15909982e-21 - art_sys_55: -1.13551182e-19 - art_sys_56: -2.56274351e-18 - art_sys_57: -1.33628300e-15 - art_sys_58: -2.76215344e-21 - art_sys_59: 6.49579372e-22 - art_sys_60: 3.86240918e-08 - art_sys_61: -4.13757365e-16 - art_sys_62: -3.55139409e-15 - art_sys_63: 4.59231885e-17 - art_sys_64: 1.79167838e-08 - art_sys_65: 7.00403270e-24 - art_sys_66: 8.56999597e-23 - art_sys_67: -7.85882886e-17 - art_sys_68: -1.43918298e-20 - art_sys_69: 6.94259211e-20 - art_sys_70: 3.78340209e-09 - art_sys_71: 1.01612876e-15 - art_sys_72: -1.82332464e-18 - art_sys_73: -9.62047394e-22 - art_sys_74: -7.86191740e-22 - art_sys_75: 1.24593673e-22 - art_sys_76: 6.92976868e-25 - art_sys_77: 5.78511539e-19 - art_sys_78: 5.23978054e-19 - art_sys_79: -6.08520202e-23 - art_sys_80: -2.97087893e-19 - art_sys_81: 1.87107180e-23 - art_sys_82: 2.39873391e-23 - art_sys_83: 7.78348068e-22 - art_sys_84: 1.62462280e-23 - art_sys_85: 8.27086801e-24 - art_sys_86: 1.06067168e-21 - art_sys_87: -4.76615121e-17 - art_sys_88: 1.98530310e-22 - art_sys_89: 2.07281612e-24 - art_sys_90: -2.18813044e-11 - art_sys_91: -7.57660112e-18 - art_sys_92: 8.96460053e-12 - art_sys_93: -1.20901070e-18 - art_sys_94: -6.14482114e-12 - art_sys_95: 2.26586425e-19 - art_sys_96: 2.66420689e-23 - art_sys_97: -1.65785138e-18 - art_sys_98: 3.05403061e-12 - art_sys_99: -1.84631759e-17 - art_sys_100: -8.63401625e-19 - art_sys_101: 1.54416267e-12 - art_sys_102: -6.54571479e-13 - art_sys_103: 3.75372505e-20 - art_sys_104: -2.79791027e-17 - art_sys_105: -2.60305512e-13 - art_sys_106: 3.20002914e-18 - art_sys_107: 1.79094384e-23 - art_sys_108: -1.13913594e-24 - art_sys_109: -4.59545456e-24 - art_sys_110: 1.55071893e-19 - art_sys_111: 9.62734512e-14 - art_sys_112: 4.86640588e-21 - art_sys_113: -1.93632125e-26 - art_sys_114: -3.36788777e-14 - art_sys_115: -2.75863204e-21 - art_sys_116: 1.51885302e-19 - art_sys_117: 1.41756592e-14 - art_sys_118: 1.04585343e-20 - art_sys_119: -5.11842908e-15 - art_sys_120: -2.58511699e-19 - art_sys_121: 7.87889418e-22 - art_sys_122: -1.72023732e-15 - art_sys_123: -5.73013872e-16 - art_sys_124: -6.21757662e-22 - art_sys_125: -7.39785037e-20 - art_sys_126: 1.76546122e-21 - art_sys_127: 1.86961034e-16 - art_sys_128: 2.08669478e-21 - art_sys_129: -4.86033819e-17 - art_sys_130: 3.31455074e-21 - art_sys_131: -1.32953767e-20 - art_sys_132: 1.66242010e-17 - art_sys_133: 3.89342338e-20 - art_sys_134: 7.94638379e-23 - art_sys_135: -2.83098879e-18 - art_sys_136: 7.77940660e-21 - art_sys_137: -8.60017821e-25 - art_sys_138: -5.84016597e-19 - art_sys_139: 2.75129778e-19 - art_sys_140: 4.05914564e-20 - art_sys_141: -6.22924562e-21 - art_sys_142: -5.23529627e-22 - art_sys_143: -2.87691361e-25 - art_sys_144: -5.13650891e-25 - art_sys_145: -2.07981447e-26 - art_sys_146: -0.0 - art_sys_147: -2.13316455e-23 - art_sys_148: -7.35964564e-23 - art_sys_149: -7.35964564e-23 - art_sys_150: 1.58639495e-22 - art_sys_151: 1.58639495e-22 - art_sys_152: -2.85290534e-21 - art_sys_153: 1.52766574e-22 - art_sys_154: -2.35550754e-26 - art_sys_155: 8.05009534e-34 - art_sys_156: -3.21397887e-38 - art_sys_157: -1.32533215e-36 - art_sys_158: 0.0 - art_sys_159: 1.65239777e-24 - art_sys_160: 7.76609138e-26 - art_sys_161: -4.79547279e-26 - art_sys_162: 2.07748322e-27 - art_sys_163: -3.72833479e-24 - art_sys_164: -2.19754521e-24 - art_sys_165: 3.32979479e-25 - art_sys_166: -1.08756563e-32 - art_sys_167: 3.11300416e-33 - art_sys_168: 2.41055908e-33 - art_sys_169: 2.04088570e-32 - art_sys_170: -1.00601875e-32 - art_sys_171: -1.22610149e-31 - art_sys_172: 2.13896025e-30 - art_sys_173: 1.03536849e-31 - art_sys_174: 7.69353315e-32 - art_sys_175: -1.13039596e-37 - art_sys_176: 1.69189327e-32 - art_sys_177: -3.78254100e-33 - art_sys_178: 1.04559646e-33 - art_sys_179: -1.33823039e-34 - art_sys_180: -9.23570846e-34 - art_sys_181: -5.12012338e-36 - art_sys_182: -2.25410507e-36 - art_sys_183: 3.48753514e-38 - art_sys_184: -4.86594263e-40 - art_sys_185: -1.55950225e-40 + art_sys_20: -2.69303302e-16 + art_sys_21: -6.65801099e-16 + art_sys_22: 3.35492493e-17 + art_sys_23: 4.93383896e-02 + art_sys_24: -2.53110246e-15 + art_sys_25: 2.74527893e-04 + art_sys_26: 1.18775915e-04 + art_sys_27: 5.63783030e-17 + art_sys_28: 2.45478990e-16 + art_sys_29: 3.47682878e-18 + art_sys_30: -5.14524319e-05 + art_sys_31: 9.00276766e-16 + art_sys_32: 7.20046269e-18 + art_sys_33: 4.30821300e-06 + art_sys_34: 1.98048140e-06 + art_sys_35: -6.09387494e-16 + art_sys_36: 1.79162638e-16 + art_sys_37: 9.07783381e-19 + art_sys_38: 2.74217538e-19 + art_sys_39: 1.34363183e-19 + art_sys_40: 6.17959870e-23 + art_sys_41: 1.82140731e-19 + art_sys_42: 6.44081842e-20 + art_sys_43: -1.65178661e-20 + art_sys_44: -2.02021323e-19 + art_sys_45: 1.81557845e-19 + art_sys_46: 2.30624357e-20 + art_sys_47: -6.61840362e-16 + art_sys_48: 5.04535563e-07 + art_sys_49: -6.04038150e-15 + art_sys_50: 2.65841933e-19 + art_sys_51: 1.14103335e-18 + art_sys_52: 1.41194379e-15 + art_sys_53: 3.86240912e-08 + art_sys_54: -1.47994337e-16 + art_sys_55: 1.79167842e-08 + art_sys_56: -6.03207996e-17 + art_sys_57: -1.06921357e-18 + art_sys_58: 2.35902303e-20 + art_sys_59: -3.78340209e-09 + art_sys_60: -6.02549573e-16 + art_sys_61: 5.42755528e-20 + art_sys_62: -1.77019975e-17 + art_sys_63: 2.58645335e-17 + art_sys_64: -7.71179511e-19 + art_sys_65: 2.20601254e-19 + art_sys_66: 1.23445303e-19 + art_sys_67: 1.05507257e-19 + art_sys_68: -1.56702879e-22 + art_sys_69: 9.94632939e-24 + art_sys_70: 9.80859455e-24 + art_sys_71: 1.19131623e-23 + art_sys_72: 1.59585630e-24 + art_sys_73: 1.17570378e-24 + art_sys_74: -3.57695443e-21 + art_sys_75: 5.25955835e-24 + art_sys_76: -1.76776268e-21 + art_sys_77: -5.54056780e-22 + art_sys_78: 2.30039428e-22 + art_sys_79: -1.81214024e-23 + art_sys_80: -4.56716199e-23 + art_sys_81: 4.77586785e-20 + art_sys_82: -1.07290071e-16 + art_sys_83: 5.28341220e-23 + art_sys_84: 1.04108293e-23 + art_sys_85: 1.62177738e-23 + art_sys_86: -4.15586343e-24 + art_sys_87: -3.30943916e-21 + art_sys_88: 1.70062880e-21 + art_sys_89: -9.22091442e-25 + art_sys_90: -4.32778073e-21 + art_sys_91: 2.18813181e-11 + art_sys_92: 5.85235538e-26 + art_sys_93: -2.17663049e-25 + art_sys_94: 1.55212786e-22 + art_sys_95: 3.41040605e-18 + art_sys_96: -8.96466090e-12 + art_sys_97: -2.17128487e-18 + art_sys_98: 5.27433836e-19 + art_sys_99: -6.14481113e-12 + art_sys_100: 5.33557785e-18 + art_sys_101: 3.05400527e-12 + art_sys_102: -4.01335443e-20 + art_sys_103: 1.35468346e-18 + art_sys_104: -1.54418032e-12 + art_sys_105: -1.46576901e-24 + art_sys_106: 6.54567668e-13 + art_sys_107: 4.00725380e-20 + art_sys_108: 7.57940081e-24 + art_sys_109: -9.08583075e-25 + art_sys_110: 5.74965520e-19 + art_sys_111: -2.60315121e-13 + art_sys_112: -9.69380160e-20 + art_sys_113: -8.29692535e-18 + art_sys_114: -6.45859089e-26 + art_sys_115: 9.62734945e-14 + art_sys_116: -2.58724505e-20 + art_sys_117: -1.79919249e-24 + art_sys_118: -3.36783059e-14 + art_sys_119: -1.14744584e-20 + art_sys_120: 1.16268775e-19 + art_sys_121: -2.49949013e-25 + art_sys_122: 1.41737201e-14 + art_sys_123: 1.60298194e-21 + art_sys_124: -5.12306404e-15 + art_sys_125: 5.25910806e-26 + art_sys_126: 3.34797538e-20 + art_sys_127: -6.55376078e-23 + art_sys_128: 1.72006348e-15 + art_sys_129: -4.14315499e-26 + art_sys_130: 6.56385066e-22 + art_sys_131: 7.27753428e-25 + art_sys_132: 5.72318464e-16 + art_sys_133: -1.25974587e-21 + art_sys_134: 5.25133659e-21 + art_sys_135: -1.87105870e-16 + art_sys_136: -1.27316902e-25 + art_sys_137: 4.90970668e-23 + art_sys_138: -4.86980634e-17 + art_sys_139: -1.06470045e-21 + art_sys_140: 1.09300852e-25 + art_sys_141: -3.30743339e-22 + art_sys_142: -1.64834459e-17 + art_sys_143: -3.03832877e-22 + art_sys_144: 5.18009499e-24 + art_sys_145: -2.77035690e-18 + art_sys_146: 1.69170135e-22 + art_sys_147: -1.91837125e-24 + art_sys_148: 6.52963888e-26 + art_sys_149: 2.80362925e-19 + art_sys_150: -8.06968039e-21 + art_sys_151: -4.36008545e-22 + art_sys_152: 7.62198833e-24 + art_sys_153: -1.11237896e-21 + art_sys_154: 6.89642708e-21 + art_sys_155: 4.07075818e-24 + art_sys_156: -0.0 + art_sys_157: 3.10846125e-21 + art_sys_158: -0.0 + art_sys_159: -4.94395983e-22 + art_sys_160: 6.43302801e-23 + art_sys_161: 5.53202107e-23 + art_sys_162: 5.53202107e-23 + art_sys_163: 5.71130454e-23 + art_sys_164: 5.71130454e-23 + art_sys_165: -6.44217885e-37 + art_sys_166: 2.13831877e-37 + art_sys_167: 0.0 + art_sys_168: 4.38654399e-32 + art_sys_169: -1.36763124e-31 + art_sys_170: 5.52437472e-32 + art_sys_171: 3.14423047e-30 + art_sys_172: -3.18332670e-31 + art_sys_173: -2.70992982e-32 + art_sys_174: 2.91740630e-32 + art_sys_175: -1.68074724e-34 + art_sys_176: 3.62753039e-34 + art_sys_177: -3.41630893e-36 + art_sys_178: -2.44429889e-36 + art_sys_179: -1.24038776e-36 + art_sys_180: -1.28582223e-35 + art_sys_181: -1.36614584e-35 + art_sys_182: -5.12060838e-35 + art_sys_183: -1.78396247e-36 + art_sys_184: 1.02647065e-38 + art_sys_185: 2.38964124e-39 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -5186,191 +5186,191 @@ bins: RelativeStatFSR-: -9.31152783e-01 luminosity_uncertainty: 99.26956 uncorrelated_uncertainty: 38.1806 -- art_sys_1: -1.00674349e-32 - art_sys_2: -1.56305602e-20 - art_sys_3: -1.19711156e-20 - art_sys_4: -1.14696466e+00 - art_sys_5: -2.40933096e-16 - art_sys_6: 1.10302963e-17 - art_sys_7: -2.89837769e+00 - art_sys_8: 1.15851085e-16 - art_sys_9: -2.25816673e+00 - art_sys_10: 2.32010106e-17 - art_sys_11: 3.99866010e-15 +- art_sys_1: 5.94465810e-31 + art_sys_2: -2.23812745e-19 + art_sys_3: -7.41855728e-20 + art_sys_4: 1.14696466e+00 + art_sys_5: 1.87579354e-16 + art_sys_6: 7.29860950e-18 + art_sys_7: 2.89837769e+00 + art_sys_8: 1.37496359e-15 + art_sys_9: 2.25816673e+00 + art_sys_10: -2.63387805e-17 + art_sys_11: -7.85680553e-16 art_sys_12: -2.83752156e+00 - art_sys_13: -2.86087827e-17 + art_sys_13: -1.25134702e-15 art_sys_14: -4.35183622e+00 - art_sys_15: -1.85348753e-15 - art_sys_16: 8.49440649e-01 - art_sys_17: -6.79560100e-16 - art_sys_18: -1.11522932e-14 + art_sys_15: -3.04546578e-15 + art_sys_16: -8.49440649e-01 + art_sys_17: -1.73328736e-16 + art_sys_18: -1.10347818e-15 art_sys_19: -1.02874539e+00 - art_sys_20: -7.75137104e-17 - art_sys_21: -4.70826800e-16 - art_sys_22: -2.59103126e-01 - art_sys_23: -9.98758205e-17 - art_sys_24: -1.57660365e-15 - art_sys_25: 5.78569086e-16 - art_sys_26: -3.47118530e-16 - art_sys_27: -3.24328458e-17 - art_sys_28: 1.49271725e-03 - art_sys_29: -7.50764047e-04 - art_sys_30: -2.12684832e-18 - art_sys_31: -7.24560806e-18 - art_sys_32: 4.06284100e-19 - art_sys_33: 7.53559136e-19 - art_sys_34: 2.13199728e-16 - art_sys_35: 7.13443372e-16 - art_sys_36: 5.29476755e-14 - art_sys_37: -2.98182053e-04 - art_sys_38: -1.47794268e-18 - art_sys_39: -6.77410635e-15 - art_sys_40: -1.04628212e-13 - art_sys_41: -2.75212673e-05 - art_sys_42: -1.21436058e-05 - art_sys_43: 2.07101866e-20 - art_sys_44: 1.93969765e-20 - art_sys_45: 2.97685421e-19 - art_sys_46: -2.01688806e-14 - art_sys_47: -4.48975561e-15 - art_sys_48: 3.08287720e-06 - art_sys_49: 1.89405260e-17 - art_sys_50: -1.95836325e-18 - art_sys_51: -5.41982198e-19 - art_sys_52: 1.86868330e-20 - art_sys_53: 4.21257827e-20 - art_sys_54: -1.25275648e-20 - art_sys_55: -2.26038256e-19 - art_sys_56: 1.59637078e-17 - art_sys_57: 8.16517489e-15 - art_sys_58: 1.85189441e-20 - art_sys_59: -3.87407516e-21 - art_sys_60: -2.52964692e-07 - art_sys_61: 2.21570985e-15 - art_sys_62: 2.14951862e-14 - art_sys_63: -2.87358727e-16 - art_sys_64: -1.08805178e-07 - art_sys_65: -4.76937895e-23 - art_sys_66: -5.35616979e-22 - art_sys_67: 4.72822053e-16 - art_sys_68: 1.02920929e-20 - art_sys_69: -3.70654064e-19 - art_sys_70: -2.36754073e-08 - art_sys_71: -6.34060008e-15 - art_sys_72: 2.93335239e-18 - art_sys_73: 5.37274287e-21 - art_sys_74: 3.98052609e-21 - art_sys_75: -5.08674448e-22 - art_sys_76: -3.69411206e-24 - art_sys_77: -6.27916539e-18 - art_sys_78: -2.81884139e-18 - art_sys_79: 3.06608226e-22 - art_sys_80: 1.63492562e-18 - art_sys_81: -8.89863884e-23 - art_sys_82: -1.22693390e-22 - art_sys_83: -4.34522167e-21 - art_sys_84: -8.24944796e-23 - art_sys_85: -3.98887038e-23 - art_sys_86: -5.94831198e-21 - art_sys_87: 2.55637549e-16 - art_sys_88: -1.11272708e-21 - art_sys_89: -1.09488487e-23 - art_sys_90: 1.08226966e-10 - art_sys_91: 4.17736853e-17 - art_sys_92: -4.91613862e-11 - art_sys_93: 5.61553170e-18 - art_sys_94: 3.35318773e-11 - art_sys_95: -1.25964864e-18 - art_sys_96: -1.49547720e-22 - art_sys_97: 9.19806006e-18 - art_sys_98: -1.65460580e-11 - art_sys_99: 1.09438125e-16 - art_sys_100: 4.82374005e-18 - art_sys_101: -8.51993193e-12 - art_sys_102: 3.60782077e-12 - art_sys_103: -2.10079717e-19 - art_sys_104: 1.61943848e-16 - art_sys_105: 1.44404586e-12 - art_sys_106: -1.78090679e-17 - art_sys_107: -1.00622507e-22 - art_sys_108: 6.41228156e-24 - art_sys_109: 2.60371631e-23 - art_sys_110: -8.68628594e-19 - art_sys_111: -5.35910411e-13 - art_sys_112: -2.75606212e-20 - art_sys_113: 1.31349251e-25 - art_sys_114: 1.87776309e-13 - art_sys_115: 1.54874626e-20 - art_sys_116: -8.51998009e-19 - art_sys_117: -7.92632715e-14 - art_sys_118: -5.87009499e-20 - art_sys_119: 2.86462173e-14 - art_sys_120: 1.44996577e-18 - art_sys_121: -4.42503236e-21 - art_sys_122: 9.64314736e-15 - art_sys_123: 3.21465383e-15 - art_sys_124: 3.49274064e-21 - art_sys_125: 4.15256773e-19 - art_sys_126: -9.91727242e-21 - art_sys_127: -1.04943027e-15 - art_sys_128: -1.17267576e-20 - art_sys_129: 2.72984904e-16 - art_sys_130: -1.86224461e-20 - art_sys_131: 7.46912243e-20 - art_sys_132: -9.33869140e-17 - art_sys_133: -2.18714596e-19 - art_sys_134: -4.46390414e-22 - art_sys_135: 1.59083303e-17 - art_sys_136: -4.37104236e-20 - art_sys_137: 4.83167676e-24 - art_sys_138: 3.19096112e-18 - art_sys_139: -1.54637065e-18 - art_sys_140: -2.28142001e-19 - art_sys_141: 3.50083381e-20 - art_sys_142: 2.94170420e-21 - art_sys_143: 1.61703695e-24 - art_sys_144: 2.88684319e-24 - art_sys_145: 1.17074165e-25 - art_sys_146: 0.0 - art_sys_147: 1.19747597e-22 - art_sys_148: 4.14629052e-22 - art_sys_149: 4.14629052e-22 - art_sys_150: -8.93195393e-22 - art_sys_151: -8.93195393e-22 - art_sys_152: 1.60101002e-20 - art_sys_153: -8.56869116e-22 - art_sys_154: 1.31842487e-25 - art_sys_155: -4.51693562e-33 - art_sys_156: 1.80611049e-37 - art_sys_157: 7.43256519e-36 - art_sys_158: -0.0 - art_sys_159: -9.12422741e-24 - art_sys_160: -4.34014229e-25 - art_sys_161: 2.68736358e-25 - art_sys_162: -1.15160438e-26 - art_sys_163: 2.09258764e-23 - art_sys_164: 1.23454214e-23 - art_sys_165: -1.87175932e-24 - art_sys_166: 6.26106952e-32 - art_sys_167: -1.81047933e-32 - art_sys_168: -1.40113404e-32 - art_sys_169: -1.19868641e-31 - art_sys_170: 5.80982619e-32 - art_sys_171: 7.23599178e-31 - art_sys_172: -1.24874096e-29 - art_sys_173: -5.79244247e-31 - art_sys_174: -4.41131870e-31 - art_sys_175: 6.35090054e-37 - art_sys_176: -9.87207201e-32 - art_sys_177: 2.22405636e-32 - art_sys_178: -6.11209297e-33 - art_sys_179: 7.85521700e-34 - art_sys_180: 5.42496098e-33 - art_sys_181: 2.86669312e-35 - art_sys_182: 1.30080171e-35 - art_sys_183: -2.03796377e-37 - art_sys_184: 2.78183134e-39 - art_sys_185: 8.75846527e-40 + art_sys_20: 1.06870595e-16 + art_sys_21: 8.06904753e-16 + art_sys_22: 5.78532459e-17 + art_sys_23: -2.59103126e-01 + art_sys_24: 8.67693253e-15 + art_sys_25: -1.49271725e-03 + art_sys_26: -7.50764047e-04 + art_sys_27: -2.16820224e-16 + art_sys_28: -1.34768756e-15 + art_sys_29: 1.32764098e-17 + art_sys_30: 2.98182053e-04 + art_sys_31: -4.47753691e-15 + art_sys_32: -1.58288092e-17 + art_sys_33: -2.75212674e-05 + art_sys_34: -1.21436058e-05 + art_sys_35: 2.96379114e-15 + art_sys_36: -1.55098302e-17 + art_sys_37: 1.36673953e-18 + art_sys_38: 1.28516628e-19 + art_sys_39: -2.51395806e-19 + art_sys_40: 1.28774468e-19 + art_sys_41: -5.82566560e-19 + art_sys_42: -6.01246652e-19 + art_sys_43: -7.55059663e-19 + art_sys_44: -5.47709542e-19 + art_sys_45: 3.73003784e-19 + art_sys_46: 8.16260232e-20 + art_sys_47: 4.04211732e-15 + art_sys_48: -3.08287719e-06 + art_sys_49: 3.69094908e-14 + art_sys_50: -2.56797269e-20 + art_sys_51: -9.59493508e-20 + art_sys_52: -8.67779925e-15 + art_sys_53: -2.52964689e-07 + art_sys_54: 9.61687241e-16 + art_sys_55: -1.08805181e-07 + art_sys_56: 3.86048980e-16 + art_sys_57: 2.63700627e-21 + art_sys_58: 4.24022555e-21 + art_sys_59: 2.36754072e-08 + art_sys_60: 3.77663076e-15 + art_sys_61: 5.33346628e-21 + art_sys_62: 1.11756775e-16 + art_sys_63: -1.55045439e-16 + art_sys_64: 6.33371608e-18 + art_sys_65: -1.87151697e-18 + art_sys_66: -4.27703574e-19 + art_sys_67: -6.73355470e-19 + art_sys_68: 1.38105801e-21 + art_sys_69: -1.78360195e-22 + art_sys_70: -1.48606767e-22 + art_sys_71: -8.47648604e-23 + art_sys_72: -5.37083112e-24 + art_sys_73: -9.01554695e-24 + art_sys_74: 9.66897352e-20 + art_sys_75: -3.08852080e-23 + art_sys_76: 9.30248768e-21 + art_sys_77: 3.09033388e-21 + art_sys_78: -1.20597127e-21 + art_sys_79: 1.32866999e-22 + art_sys_80: 2.29859778e-22 + art_sys_81: -2.61882517e-19 + art_sys_82: 5.69731684e-16 + art_sys_83: -2.55524670e-22 + art_sys_84: -4.86794037e-23 + art_sys_85: -8.49595176e-23 + art_sys_86: 2.10647069e-23 + art_sys_87: 1.80963561e-20 + art_sys_88: -9.43773882e-21 + art_sys_89: 4.11261968e-24 + art_sys_90: 2.43082770e-20 + art_sys_91: -1.08227015e-10 + art_sys_92: -1.97826053e-25 + art_sys_93: 1.19162327e-24 + art_sys_94: -8.70842588e-22 + art_sys_95: -1.84963918e-17 + art_sys_96: 4.91616963e-11 + art_sys_97: 1.66700320e-17 + art_sys_98: -2.72340858e-18 + art_sys_99: 3.35318217e-11 + art_sys_100: -2.89601162e-17 + art_sys_101: -1.65459164e-11 + art_sys_102: 2.12617539e-19 + art_sys_103: -7.45812014e-18 + art_sys_104: 8.52002888e-12 + art_sys_105: 8.17182209e-24 + art_sys_106: -3.60780087e-12 + art_sys_107: -2.24586339e-19 + art_sys_108: -4.26932861e-23 + art_sys_109: 5.10798592e-24 + art_sys_110: -3.21613080e-18 + art_sys_111: 1.44409805e-12 + art_sys_112: 5.40982806e-19 + art_sys_113: 4.55495738e-17 + art_sys_114: 3.70136081e-25 + art_sys_115: -5.35910125e-13 + art_sys_116: 1.45053323e-19 + art_sys_117: 1.00829352e-23 + art_sys_118: 1.87772569e-13 + art_sys_119: 6.45349921e-20 + art_sys_120: -6.52613888e-19 + art_sys_121: 1.43584305e-24 + art_sys_122: -7.92520966e-14 + art_sys_123: -8.97035168e-21 + art_sys_124: 2.86719499e-14 + art_sys_125: -3.01226761e-25 + art_sys_126: -1.87939687e-19 + art_sys_127: 3.69043361e-22 + art_sys_128: -9.64209797e-15 + art_sys_129: 2.27016917e-25 + art_sys_130: -3.68893251e-21 + art_sys_131: -4.07802460e-24 + art_sys_132: -3.21072793e-15 + art_sys_133: 7.08031986e-21 + art_sys_134: -2.95203100e-20 + art_sys_135: 1.05023211e-15 + art_sys_136: 7.17771319e-25 + art_sys_137: -2.76014069e-22 + art_sys_138: 2.73513683e-16 + art_sys_139: 5.98371365e-21 + art_sys_140: -6.14313665e-25 + art_sys_141: 1.85802056e-21 + art_sys_142: 9.25955055e-17 + art_sys_143: 1.70713838e-21 + art_sys_144: -2.90962078e-23 + art_sys_145: 1.55678148e-17 + art_sys_146: -9.50627769e-22 + art_sys_147: 1.07799745e-23 + art_sys_148: -3.65617794e-25 + art_sys_149: -1.57583693e-18 + art_sys_150: 4.53569971e-20 + art_sys_151: 2.45060109e-21 + art_sys_152: -4.28387482e-23 + art_sys_153: 6.25194047e-21 + art_sys_154: -3.80574287e-20 + art_sys_155: -2.28778478e-23 + art_sys_156: 0.0 + art_sys_157: -1.74731471e-20 + art_sys_158: 0.0 + art_sys_159: 2.77874577e-21 + art_sys_160: -3.61611562e-22 + art_sys_161: -3.10912776e-22 + art_sys_162: -3.10912776e-22 + art_sys_163: -3.21000056e-22 + art_sys_164: -3.21000056e-22 + art_sys_165: 3.62076566e-36 + art_sys_166: -1.20182100e-36 + art_sys_167: -0.0 + art_sys_168: -2.53374122e-31 + art_sys_169: 8.02931313e-31 + art_sys_170: -3.34343339e-31 + art_sys_171: -1.82417889e-29 + art_sys_172: 1.86830431e-30 + art_sys_173: 1.49743980e-31 + art_sys_174: -1.63437340e-31 + art_sys_175: 1.83915316e-33 + art_sys_176: -2.16601314e-33 + art_sys_177: 1.76020970e-35 + art_sys_178: 1.14785374e-35 + art_sys_179: 6.97076994e-36 + art_sys_180: 7.22693257e-35 + art_sys_181: 9.90794168e-35 + art_sys_182: 4.50023428e-34 + art_sys_183: 9.78178911e-36 + art_sys_184: -6.86207323e-38 + art_sys_185: -1.34879503e-38 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -5477,191 +5477,191 @@ bins: RelativeStatFSR-: -4.53259919e-01 luminosity_uncertainty: 4.41487800e+01 uncorrelated_uncertainty: 16.9803 -- art_sys_1: 4.62166585e-33 - art_sys_2: 7.08841117e-21 - art_sys_3: -2.96993489e-21 - art_sys_4: 5.20144986e-01 - art_sys_5: -2.65770018e-16 - art_sys_6: -5.01762277e-18 - art_sys_7: -1.00579421e+00 - art_sys_8: -1.69169752e-16 - art_sys_9: 2.41574390e+00 - art_sys_10: -3.15717343e-17 - art_sys_11: 2.19035583e-15 +- art_sys_1: -2.69541071e-31 + art_sys_2: 1.01498400e-19 + art_sys_3: 1.98328450e-20 + art_sys_4: -5.20144986e-01 + art_sys_5: 5.42095151e-17 + art_sys_6: -3.27844416e-18 + art_sys_7: 1.00579421e+00 + art_sys_8: -9.03434947e-16 + art_sys_9: -2.41574390e+00 + art_sys_10: -2.43318980e-18 + art_sys_11: 2.66732011e-15 art_sys_12: 6.61875562e-01 - art_sys_13: -9.39158413e-17 + art_sys_13: -7.66837929e-16 art_sys_14: -2.60188112e+00 - art_sys_15: 2.18045981e-15 - art_sys_16: -2.10082911e+00 - art_sys_17: -6.91085725e-16 - art_sys_18: 1.25891416e-14 + art_sys_15: 4.63140609e-15 + art_sys_16: 2.10082911e+00 + art_sys_17: 2.62830270e-17 + art_sys_18: 4.81370336e-16 art_sys_19: 1.21418133e+00 - art_sys_20: 1.34773848e-16 - art_sys_21: 3.29194437e-16 - art_sys_22: 5.29279814e-01 - art_sys_23: 3.17209470e-17 - art_sys_24: 2.21614787e-15 - art_sys_25: -1.33231281e-15 - art_sys_26: 8.21546175e-16 - art_sys_27: 1.23045658e-16 - art_sys_28: -3.47482996e-03 - art_sys_29: 1.93114766e-03 - art_sys_30: 7.10283466e-18 - art_sys_31: 2.17731082e-17 - art_sys_32: 8.99246709e-19 - art_sys_33: 2.33672853e-20 - art_sys_34: -2.61230483e-16 - art_sys_35: 1.23085513e-16 - art_sys_36: -1.61638082e-13 - art_sys_37: 9.09939592e-04 - art_sys_38: -1.48724345e-19 - art_sys_39: 1.69205059e-14 - art_sys_40: 3.09234431e-13 - art_sys_41: 8.13484624e-05 - art_sys_42: 3.93824473e-05 - art_sys_43: -8.79505950e-20 - art_sys_44: -4.82602708e-20 - art_sys_45: -4.95656082e-19 - art_sys_46: 6.26520360e-14 - art_sys_47: 1.49821272e-14 - art_sys_48: -1.02849356e-05 - art_sys_49: -5.80974719e-17 - art_sys_50: 6.29496625e-18 - art_sys_51: 1.68109099e-18 - art_sys_52: -1.09888764e-19 - art_sys_53: -1.39603709e-19 - art_sys_54: 4.00062729e-20 - art_sys_55: -5.09150012e-19 - art_sys_56: -5.44876801e-17 - art_sys_57: -2.72403104e-14 - art_sys_58: -6.30494820e-20 - art_sys_59: 1.40241613e-20 - art_sys_60: 8.43660075e-07 - art_sys_61: -7.16258555e-15 - art_sys_62: -7.62349564e-14 - art_sys_63: 1.01147101e-15 - art_sys_64: 3.84869492e-07 - art_sys_65: 1.59665224e-22 - art_sys_66: 1.88543661e-21 - art_sys_67: -1.55165536e-15 - art_sys_68: -1.48430319e-19 - art_sys_69: 1.80207442e-18 - art_sys_70: 8.33331592e-08 - art_sys_71: 2.24178983e-14 - art_sys_72: -1.97745455e-17 - art_sys_73: -1.98793968e-20 - art_sys_74: -1.86024766e-20 - art_sys_75: 3.28274846e-21 - art_sys_76: 1.52098291e-23 - art_sys_77: 5.02717964e-18 - art_sys_78: 1.21516276e-17 - art_sys_79: -1.39898868e-21 - art_sys_80: -6.79444347e-18 - art_sys_81: 4.62302859e-22 - art_sys_82: 5.72753378e-22 - art_sys_83: 1.81803276e-20 - art_sys_84: 3.81753349e-22 - art_sys_85: 2.06046820e-22 - art_sys_86: 2.47370142e-20 - art_sys_87: -1.06458465e-15 - art_sys_88: 4.64963845e-21 - art_sys_89: 6.39602616e-23 - art_sys_90: -5.39782195e-10 - art_sys_91: -1.76361397e-16 - art_sys_92: 1.94244599e-10 - art_sys_93: -2.49109341e-17 - art_sys_94: -1.45500386e-10 - art_sys_95: 5.27003299e-18 - art_sys_96: 6.21616036e-22 - art_sys_97: -3.86098468e-17 - art_sys_98: 7.05411727e-11 - art_sys_99: -4.04945866e-16 - art_sys_100: -2.01330494e-17 - art_sys_101: 3.59338669e-11 - art_sys_102: -1.52345452e-11 - art_sys_103: 8.78320845e-19 - art_sys_104: -6.31136056e-16 - art_sys_105: -6.05803401e-12 - art_sys_106: 7.45864898e-17 - art_sys_107: 4.17717556e-22 - art_sys_108: -2.64424997e-23 - art_sys_109: -1.07098866e-22 - art_sys_110: 3.61377871e-18 - art_sys_111: 2.24468143e-12 - art_sys_112: 1.14203759e-19 - art_sys_113: -2.59075931e-26 - art_sys_114: -7.84947623e-13 - art_sys_115: -6.44268841e-20 - art_sys_116: 3.54415578e-18 - art_sys_117: 3.30642296e-13 - art_sys_118: 2.44071964e-19 - art_sys_119: -1.19408662e-13 - art_sys_120: -6.03313661e-18 - art_sys_121: 1.83880539e-20 - art_sys_122: -4.01366293e-14 - art_sys_123: -1.33731482e-14 - art_sys_124: -1.45119020e-20 - art_sys_125: -1.72623768e-18 - art_sys_126: 4.12080662e-20 - art_sys_127: 4.36325209e-15 - art_sys_128: 4.87098737e-20 - art_sys_129: -1.13445445e-15 - art_sys_130: 7.73668603e-20 - art_sys_131: -3.10329560e-19 - art_sys_132: 3.88031791e-16 - art_sys_133: 9.08779518e-19 - art_sys_134: 1.85479383e-21 - art_sys_135: -6.60812790e-17 - art_sys_136: 1.81586489e-19 - art_sys_137: -2.00803770e-23 - art_sys_138: -1.36219491e-17 - art_sys_139: 6.42212323e-18 - art_sys_140: 9.47490079e-19 - art_sys_141: -1.45403024e-19 - art_sys_142: -1.22175558e-20 - art_sys_143: -6.71540923e-24 - art_sys_144: -1.19897478e-23 - art_sys_145: -4.87286491e-25 - art_sys_146: -0.0 - art_sys_147: -4.97928209e-22 - art_sys_148: -1.71676501e-21 - art_sys_149: -1.71676501e-21 - art_sys_150: 3.70530826e-21 - art_sys_151: 3.70530826e-21 - art_sys_152: -6.65626348e-20 - art_sys_153: 3.56377871e-21 - art_sys_154: -5.49003781e-25 - art_sys_155: 1.87821759e-32 - art_sys_156: -7.50207744e-37 - art_sys_157: -3.09296658e-35 - art_sys_158: 0.0 - art_sys_159: 3.85197348e-23 - art_sys_160: 1.76463676e-24 - art_sys_161: -1.11183731e-24 - art_sys_162: 7.02583060e-26 - art_sys_163: -8.74456364e-23 - art_sys_164: -5.12758767e-23 - art_sys_165: 7.74783087e-24 - art_sys_166: -1.97400896e-31 - art_sys_167: 4.61447727e-32 - art_sys_168: 4.28755737e-32 - art_sys_169: 3.64294200e-31 - art_sys_170: -1.79904300e-31 - art_sys_171: -2.19416401e-30 - art_sys_172: 3.77871777e-29 - art_sys_173: 1.77958938e-30 - art_sys_174: 1.33981841e-30 - art_sys_175: -2.63718789e-36 - art_sys_176: 3.00356633e-31 - art_sys_177: -6.76769885e-32 - art_sys_178: 1.85752628e-32 - art_sys_179: -2.36142564e-33 - art_sys_180: -1.65084272e-32 - art_sys_181: -8.76564199e-35 - art_sys_182: -3.98733017e-35 - art_sys_183: 6.15684402e-37 - art_sys_184: -1.05466862e-38 - art_sys_185: -3.64355376e-39 + art_sys_20: -2.48021625e-16 + art_sys_21: -3.34236859e-16 + art_sys_22: -7.20648657e-17 + art_sys_23: 5.29279814e-01 + art_sys_24: -1.01243667e-14 + art_sys_25: 3.47482996e-03 + art_sys_26: 1.93114766e-03 + art_sys_27: 3.00978523e-16 + art_sys_28: 2.97457910e-15 + art_sys_29: -1.32484576e-18 + art_sys_30: -9.09939592e-04 + art_sys_31: 1.00571266e-14 + art_sys_32: 1.76784713e-17 + art_sys_33: 8.13484627e-05 + art_sys_34: 3.93824473e-05 + art_sys_35: -6.52063784e-15 + art_sys_36: 1.62440305e-16 + art_sys_37: -4.92709068e-18 + art_sys_38: -5.05548013e-20 + art_sys_39: 7.94095093e-19 + art_sys_40: -3.94911633e-19 + art_sys_41: 1.68472842e-18 + art_sys_42: 1.14498533e-18 + art_sys_43: 1.78199407e-18 + art_sys_44: 3.56497608e-19 + art_sys_45: -2.76719784e-19 + art_sys_46: -3.03324279e-19 + art_sys_47: -1.34835454e-14 + art_sys_48: 1.02849355e-05 + art_sys_49: -1.23135937e-13 + art_sys_50: 1.04428259e-19 + art_sys_51: 5.23774791e-19 + art_sys_52: 2.92078413e-14 + art_sys_53: 8.43660062e-07 + art_sys_54: -3.22463438e-15 + art_sys_55: 3.84869500e-07 + art_sys_56: -1.33674905e-15 + art_sys_57: -3.03472004e-19 + art_sys_58: 1.03854967e-21 + art_sys_59: -8.33331591e-08 + art_sys_60: -1.32587524e-14 + art_sys_61: -3.47684690e-21 + art_sys_62: -3.61831833e-16 + art_sys_63: 5.88392111e-16 + art_sys_64: -1.90373948e-17 + art_sys_65: 5.38610346e-18 + art_sys_66: 1.36484669e-18 + art_sys_67: 2.01868192e-18 + art_sys_68: -3.20171499e-21 + art_sys_69: 4.22302782e-22 + art_sys_70: 5.82092082e-22 + art_sys_71: 2.35913104e-22 + art_sys_72: 3.47358966e-23 + art_sys_73: 2.67316956e-23 + art_sys_74: -3.83118921e-19 + art_sys_75: 9.82413413e-23 + art_sys_76: -4.30282361e-20 + art_sys_77: -1.25041854e-20 + art_sys_78: 5.25795419e-21 + art_sys_79: -3.80851510e-22 + art_sys_80: -9.57442198e-22 + art_sys_81: 1.03481168e-18 + art_sys_82: -2.42990501e-15 + art_sys_83: 1.33019544e-21 + art_sys_84: 2.95348837e-22 + art_sys_85: 4.00949523e-22 + art_sys_86: -9.81627736e-23 + art_sys_87: -7.65753671e-20 + art_sys_88: 3.95636519e-20 + art_sys_89: -2.58745597e-23 + art_sys_90: -1.01081426e-19 + art_sys_91: 5.39782715e-10 + art_sys_92: 1.69608127e-24 + art_sys_93: -4.96368087e-24 + art_sys_94: 3.61348675e-21 + art_sys_95: 8.11673172e-17 + art_sys_96: -1.94245954e-10 + art_sys_97: -4.65597691e-17 + art_sys_98: 1.20025664e-17 + art_sys_99: -1.45500170e-10 + art_sys_100: 1.23317249e-16 + art_sys_101: 7.05405738e-11 + art_sys_102: -9.12841915e-19 + art_sys_103: 3.13731716e-17 + art_sys_104: -3.59342777e-11 + art_sys_105: -3.35502287e-23 + art_sys_106: 1.52344645e-11 + art_sys_107: 9.34416909e-19 + art_sys_108: 1.73371618e-22 + art_sys_109: -2.09084012e-23 + art_sys_110: 1.34115980e-17 + art_sys_111: -6.05825376e-12 + art_sys_112: -2.25728300e-18 + art_sys_113: -1.94713108e-16 + art_sys_114: -1.43320775e-24 + art_sys_115: 2.24467852e-12 + art_sys_116: -6.03692791e-19 + art_sys_117: -4.21189435e-23 + art_sys_118: -7.84930656e-13 + art_sys_119: -2.68437440e-19 + art_sys_120: 2.71440194e-18 + art_sys_121: -4.41985797e-24 + art_sys_122: 3.30594786e-13 + art_sys_123: 3.72643677e-20 + art_sys_124: -1.19515595e-13 + art_sys_125: 1.09671600e-24 + art_sys_126: 7.81427233e-19 + art_sys_127: -1.53246642e-21 + art_sys_128: 4.01320824e-14 + art_sys_129: -1.00559175e-24 + art_sys_130: 1.53186845e-20 + art_sys_131: 1.69197779e-23 + art_sys_132: 1.33567320e-14 + art_sys_133: -2.94055895e-20 + art_sys_134: 1.22594386e-19 + art_sys_135: -4.36655845e-15 + art_sys_136: -3.00015561e-24 + art_sys_137: 1.14640547e-21 + art_sys_138: -1.13664229e-15 + art_sys_139: -2.48530371e-20 + art_sys_140: 2.55084012e-24 + art_sys_141: -7.72067220e-21 + art_sys_142: -3.84739060e-16 + art_sys_143: -7.09193434e-21 + art_sys_144: 1.20904343e-22 + art_sys_145: -6.46651064e-17 + art_sys_146: 3.94858129e-21 + art_sys_147: -4.47795772e-23 + art_sys_148: 1.52385559e-24 + art_sys_149: 6.54425962e-18 + art_sys_150: -1.88362891e-19 + art_sys_151: -1.01783050e-20 + art_sys_152: 1.77911672e-22 + art_sys_153: -2.59657764e-20 + art_sys_154: 1.64531325e-19 + art_sys_155: 9.50124135e-23 + art_sys_156: -0.0 + art_sys_157: 7.25754033e-20 + art_sys_158: -0.0 + art_sys_159: -1.15411231e-20 + art_sys_160: 1.50195240e-21 + art_sys_161: 1.29128514e-21 + art_sys_162: 1.29128514e-21 + art_sys_163: 1.33320921e-21 + art_sys_164: 1.33320921e-21 + art_sys_165: -1.50380757e-35 + art_sys_166: 4.99150359e-36 + art_sys_167: 0.0 + art_sys_168: 7.50200816e-31 + art_sys_169: -2.45091144e-30 + art_sys_170: 1.02429534e-30 + art_sys_171: 5.51988887e-29 + art_sys_172: -5.67560490e-30 + art_sys_173: -4.57713797e-31 + art_sys_174: 4.96561839e-31 + art_sys_175: -5.92587999e-33 + art_sys_176: 6.62480001e-33 + art_sys_177: -5.87454312e-35 + art_sys_178: -3.06522988e-35 + art_sys_179: -2.89490912e-35 + art_sys_180: -3.00159233e-34 + art_sys_181: -6.90973163e-35 + art_sys_182: -1.27927573e-33 + art_sys_183: -2.91610167e-35 + art_sys_184: 2.14503035e-37 + art_sys_185: 5.57201017e-38 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -5768,191 +5768,191 @@ bins: RelativeStatFSR-: -2.39462637e-01 luminosity_uncertainty: 2.13919680e+01 uncorrelated_uncertainty: 8.22768 -- art_sys_1: 1.19746506e-33 - art_sys_2: 1.84939330e-21 - art_sys_3: 4.48236039e-22 - art_sys_4: 1.35707790e-01 - art_sys_5: 2.17975135e-19 - art_sys_6: -1.30655097e-18 - art_sys_7: 1.10760699e-01 - art_sys_8: -4.18259538e-17 - art_sys_9: 2.85151985e-01 - art_sys_10: -3.67065902e-18 - art_sys_11: -6.38121444e-15 +- art_sys_1: -7.03370488e-32 + art_sys_2: 2.64813156e-20 + art_sys_3: 8.84949203e-21 + art_sys_4: -1.35707790e-01 + art_sys_5: -2.03511692e-17 + art_sys_6: -8.64928535e-19 + art_sys_7: -1.10760699e-01 + art_sys_8: -1.33008585e-16 + art_sys_9: -2.85151985e-01 + art_sys_10: 2.72527941e-18 + art_sys_11: 2.21747752e-16 art_sys_12: 3.48360297e-01 - art_sys_13: 7.34155372e-19 + art_sys_13: 1.13435843e-16 art_sys_14: 3.98927913e-01 - art_sys_15: 5.02401240e-15 - art_sys_16: -2.96340400e+00 - art_sys_17: -1.38708014e-16 - art_sys_18: -5.07210636e-15 + art_sys_15: 5.95326398e-15 + art_sys_16: 2.96340400e+00 + art_sys_17: 9.66637463e-17 + art_sys_18: -2.17686831e-16 art_sys_19: -7.60760248e-01 - art_sys_20: -4.09125160e-16 - art_sys_21: -4.08492786e-18 - art_sys_22: -6.20121551e-01 - art_sys_23: -5.46224100e-17 - art_sys_24: -2.10511355e-15 - art_sys_25: 6.07273159e-15 - art_sys_26: -3.28321536e-15 - art_sys_27: -2.09327607e-16 - art_sys_28: 1.56178637e-02 - art_sys_29: -6.16500852e-03 - art_sys_30: -2.34835180e-17 - art_sys_31: -7.37340128e-17 - art_sys_32: -3.26749341e-18 - art_sys_33: 3.80544813e-18 - art_sys_34: 3.08380492e-16 - art_sys_35: -8.96236750e-15 - art_sys_36: 5.39757044e-13 - art_sys_37: -3.03805484e-03 - art_sys_38: -5.85657067e-18 - art_sys_39: -4.21776617e-14 - art_sys_40: -1.09767581e-12 - art_sys_41: -2.88771408e-04 - art_sys_42: -1.29400990e-04 - art_sys_43: -1.61054225e-19 - art_sys_44: 1.14095157e-19 - art_sys_45: 1.45022548e-18 - art_sys_46: -1.98012834e-13 - art_sys_47: -5.03090998e-14 - art_sys_48: 3.45359101e-05 - art_sys_49: 1.92729486e-16 - art_sys_50: -1.75544393e-17 - art_sys_51: -5.54839646e-18 - art_sys_52: 3.01782646e-19 - art_sys_53: 4.56410931e-19 - art_sys_54: -1.28260066e-19 - art_sys_55: 2.23375625e-19 - art_sys_56: 1.78855494e-16 - art_sys_57: 9.14694805e-14 - art_sys_58: 2.07231982e-19 - art_sys_59: -4.49664283e-20 - art_sys_60: -2.77904212e-06 - art_sys_61: 2.42333284e-14 - art_sys_62: 2.46041125e-13 - art_sys_63: -3.30503879e-15 - art_sys_64: -1.24319184e-06 - art_sys_65: -5.30418609e-22 - art_sys_66: -6.17166264e-21 - art_sys_67: 5.06765934e-15 - art_sys_68: 3.15291783e-19 - art_sys_69: -5.36201932e-18 - art_sys_70: -2.72297056e-07 - art_sys_71: -7.29307178e-14 - art_sys_72: 2.58691481e-17 - art_sys_73: 7.03096497e-20 - art_sys_74: 4.75769364e-20 - art_sys_75: -5.44229500e-21 - art_sys_76: -4.44851320e-23 - art_sys_77: -7.98483529e-17 - art_sys_78: -3.42100135e-17 - art_sys_79: 3.70728115e-21 - art_sys_80: 2.04177419e-17 - art_sys_81: -1.01846093e-21 - art_sys_82: -1.46740313e-21 - art_sys_83: -5.42156127e-20 - art_sys_84: -9.95739896e-22 - art_sys_85: -4.60326736e-22 - art_sys_86: -7.42449426e-20 - art_sys_87: 3.18994257e-15 - art_sys_88: -1.39354222e-20 - art_sys_89: -1.74490911e-22 - art_sys_90: 1.25633056e-09 - art_sys_91: 5.17236319e-16 - art_sys_92: -6.24202956e-10 - art_sys_93: 8.51244082e-17 - art_sys_94: 4.02080903e-10 - art_sys_95: -1.56831854e-17 - art_sys_96: -1.86747599e-21 - art_sys_97: 1.14280182e-16 - art_sys_98: -2.04631026e-10 - art_sys_99: 1.26582439e-15 - art_sys_100: 6.01177312e-17 - art_sys_101: -1.04929103e-10 - art_sys_102: 4.46915322e-11 - art_sys_103: -2.61723949e-18 - art_sys_104: 1.88713642e-15 - art_sys_105: 1.79325390e-11 - art_sys_106: -2.21499043e-16 - art_sys_107: -1.25645570e-21 - art_sys_108: 7.96823578e-23 - art_sys_109: 3.26343913e-22 - art_sys_110: -1.08445425e-17 - art_sys_111: -6.66250034e-12 - art_sys_112: -3.45194287e-19 - art_sys_113: 5.63702542e-25 - art_sys_114: 2.33968057e-12 - art_sys_115: 1.93508080e-19 - art_sys_116: -1.06361262e-17 - art_sys_117: -9.87897417e-13 - art_sys_118: -7.33186244e-19 - art_sys_119: 3.57393317e-13 - art_sys_120: 1.81028977e-17 - art_sys_121: -5.52892899e-20 - art_sys_122: 1.20373819e-13 - art_sys_123: 4.01400727e-14 - art_sys_124: 4.36393243e-20 - art_sys_125: 5.18777727e-18 - art_sys_126: -1.23914680e-19 - art_sys_127: -1.31086919e-14 - art_sys_128: -1.46544525e-19 - art_sys_129: 3.41037311e-15 - art_sys_130: -2.32720063e-19 - art_sys_131: 9.33334292e-19 - art_sys_132: -1.16687372e-15 - art_sys_133: -2.73285329e-18 - art_sys_134: -5.57766701e-21 - art_sys_135: 1.98799339e-16 - art_sys_136: -5.46209166e-19 - art_sys_137: 6.03909550e-23 - art_sys_138: 3.91635373e-17 - art_sys_139: -1.93251595e-17 - art_sys_140: -2.85110098e-18 - art_sys_141: 4.37485431e-19 - art_sys_142: 3.67626289e-20 - art_sys_143: 2.02089225e-23 - art_sys_144: 3.60763180e-23 - art_sys_145: 1.46123757e-24 - art_sys_146: 0.0 - art_sys_147: 1.49559485e-21 - art_sys_148: 5.18963166e-21 - art_sys_149: 5.18963166e-21 - art_sys_150: -1.11682179e-20 - art_sys_151: -1.11682179e-20 - art_sys_152: 1.99978794e-19 - art_sys_153: -1.07011058e-20 - art_sys_154: 1.64563033e-24 - art_sys_155: -5.64160797e-32 - art_sys_156: 2.25688661e-36 - art_sys_157: 9.27924606e-35 - art_sys_158: -0.0 - art_sys_159: -1.13302128e-22 - art_sys_160: -5.31248179e-24 - art_sys_161: 3.35255341e-24 - art_sys_162: -1.96047329e-25 - art_sys_163: 2.62520046e-22 - art_sys_164: 1.54235312e-22 - art_sys_165: -2.33244372e-23 - art_sys_166: 6.46832190e-31 - art_sys_167: -1.63359092e-31 - art_sys_168: -1.42716574e-31 - art_sys_169: -1.21704827e-30 - art_sys_170: 6.01992346e-31 - art_sys_171: 7.35319840e-30 - art_sys_172: -1.26665020e-28 - art_sys_173: -5.92591006e-30 - art_sys_174: -4.48138366e-30 - art_sys_175: 7.93759978e-36 - art_sys_176: -1.00303733e-30 - art_sys_177: 2.25641600e-31 - art_sys_178: -6.19379226e-32 - art_sys_179: 7.91757402e-33 - art_sys_180: 5.51793541e-32 - art_sys_181: 2.93768143e-34 - art_sys_182: 1.32587447e-34 - art_sys_183: -2.06361897e-36 - art_sys_184: 3.26497201e-38 - art_sys_185: 1.09530193e-38 + art_sys_20: -2.53073525e-16 + art_sys_21: -1.40645146e-16 + art_sys_22: 1.62047630e-16 + art_sys_23: -6.20121551e-01 + art_sys_24: 9.44807877e-15 + art_sys_25: -1.56178637e-02 + art_sys_26: -6.16500852e-03 + art_sys_27: -3.05242866e-16 + art_sys_28: 6.03545637e-16 + art_sys_29: 3.03017598e-17 + art_sys_30: 3.03805484e-03 + art_sys_31: -1.04161666e-14 + art_sys_32: -1.59782345e-17 + art_sys_33: -2.88771409e-04 + art_sys_34: -1.29400990e-04 + art_sys_35: 6.85862089e-15 + art_sys_36: -5.35599810e-17 + art_sys_37: 2.79411055e-17 + art_sys_38: 1.71205652e-18 + art_sys_39: -2.80859245e-18 + art_sys_40: 1.75733233e-18 + art_sys_41: -5.01180121e-18 + art_sys_42: -2.62385711e-18 + art_sys_43: -3.46875152e-18 + art_sys_44: 1.15001125e-19 + art_sys_45: 7.18900469e-19 + art_sys_46: 1.04799141e-18 + art_sys_47: 4.52734094e-14 + art_sys_48: -3.45359100e-05 + art_sys_49: 4.13478381e-13 + art_sys_50: -3.06156193e-20 + art_sys_51: 3.30911366e-20 + art_sys_52: -9.92406287e-14 + art_sys_53: -2.77904208e-06 + art_sys_54: 1.06023980e-14 + art_sys_55: -1.24319187e-06 + art_sys_56: 4.69915998e-15 + art_sys_57: 2.68609025e-19 + art_sys_58: 5.37849319e-21 + art_sys_59: 2.72297055e-07 + art_sys_60: 4.34348430e-14 + art_sys_61: 1.72578954e-20 + art_sys_62: 1.15327448e-15 + art_sys_63: -1.76053195e-15 + art_sys_64: 6.60216780e-17 + art_sys_65: -1.86774712e-17 + art_sys_66: -4.40085696e-18 + art_sys_67: -6.76673328e-18 + art_sys_68: 1.33465265e-20 + art_sys_69: -1.62100021e-21 + art_sys_70: -1.65137190e-21 + art_sys_71: -8.28203706e-22 + art_sys_72: -7.15178579e-23 + art_sys_73: -7.82918530e-23 + art_sys_74: 1.25249179e-18 + art_sys_75: -3.17147462e-22 + art_sys_76: 1.08882796e-19 + art_sys_77: 3.84318038e-20 + art_sys_78: -1.49728776e-20 + art_sys_79: 1.29185330e-21 + art_sys_80: 3.24699712e-21 + art_sys_81: -3.32611479e-18 + art_sys_82: 7.04115082e-15 + art_sys_83: -2.91398461e-21 + art_sys_84: -7.38619927e-22 + art_sys_85: -9.83498884e-22 + art_sys_86: 2.52908052e-22 + art_sys_87: 2.24383332e-19 + art_sys_88: -1.17054556e-19 + art_sys_89: 4.17327504e-23 + art_sys_90: 3.03616274e-19 + art_sys_91: -1.25633112e-09 + art_sys_92: -7.58445395e-24 + art_sys_93: 1.46483730e-23 + art_sys_94: -1.08539227e-20 + art_sys_95: -2.18995108e-16 + art_sys_96: 6.24206577e-10 + art_sys_97: 1.56927803e-16 + art_sys_98: -3.33587023e-17 + art_sys_99: 4.02080178e-10 + art_sys_100: -3.58298622e-16 + art_sys_101: -2.04629275e-10 + art_sys_102: 2.59534564e-18 + art_sys_103: -9.04187205e-17 + art_sys_104: 1.04930313e-10 + art_sys_105: 1.01018672e-22 + art_sys_106: -4.46913081e-11 + art_sys_107: -2.80366880e-18 + art_sys_108: -5.25314519e-22 + art_sys_109: 6.27941668e-23 + art_sys_110: -4.00923527e-17 + art_sys_111: 1.79331759e-11 + art_sys_112: 6.74132507e-18 + art_sys_113: 5.71055211e-16 + art_sys_114: 4.43007179e-24 + art_sys_115: -6.66249002e-12 + art_sys_116: 1.81068237e-18 + art_sys_117: 1.25008755e-22 + art_sys_118: 2.33962855e-12 + art_sys_119: 8.05972588e-19 + art_sys_120: -8.15019320e-18 + art_sys_121: 1.46272836e-23 + art_sys_122: -9.87754791e-13 + art_sys_123: -1.12075918e-19 + art_sys_124: 3.57712294e-13 + art_sys_125: -3.45508539e-24 + art_sys_126: -2.34757315e-18 + art_sys_127: 4.61339577e-21 + art_sys_128: -1.20359958e-13 + art_sys_129: 2.98775440e-24 + art_sys_130: -4.60983079e-20 + art_sys_131: -5.09271081e-23 + art_sys_132: -4.00907749e-14 + art_sys_133: 8.84851369e-20 + art_sys_134: -3.68969471e-19 + art_sys_135: 1.31185986e-14 + art_sys_136: 9.00631645e-24 + art_sys_137: -3.45034185e-21 + art_sys_138: 3.41695081e-15 + art_sys_139: 7.47782530e-20 + art_sys_140: -7.67714369e-24 + art_sys_141: 2.32137057e-20 + art_sys_142: 1.15697670e-15 + art_sys_143: 2.13329298e-20 + art_sys_144: -3.63553195e-22 + art_sys_145: 1.94543957e-16 + art_sys_146: -1.18792581e-20 + art_sys_147: 1.34717426e-22 + art_sys_148: -4.56585722e-24 + art_sys_149: -1.96934750e-17 + art_sys_150: 5.66833273e-19 + art_sys_151: 3.06242133e-20 + art_sys_152: -5.35358466e-22 + art_sys_153: 7.81298390e-20 + art_sys_154: -4.80541996e-19 + art_sys_155: -2.85909863e-22 + art_sys_156: 0.0 + art_sys_157: -2.18350827e-19 + art_sys_158: 0.0 + art_sys_159: 3.47250178e-20 + art_sys_160: -4.51886533e-21 + art_sys_161: -3.88548004e-21 + art_sys_162: -3.88548004e-21 + art_sys_163: -4.01146511e-21 + art_sys_164: -4.01146511e-21 + art_sys_165: 4.52480098e-35 + art_sys_166: -1.50189316e-35 + art_sys_167: -0.0 + art_sys_168: -2.48798847e-30 + art_sys_169: 8.04104291e-30 + art_sys_170: -3.12088767e-30 + art_sys_171: -1.83068049e-28 + art_sys_172: 1.90694618e-29 + art_sys_173: 1.54696645e-30 + art_sys_174: -1.66527394e-30 + art_sys_175: 1.67150974e-32 + art_sys_176: -2.15655242e-32 + art_sys_177: 1.85342348e-34 + art_sys_178: 1.10470063e-34 + art_sys_179: 8.71167769e-35 + art_sys_180: 9.03126935e-34 + art_sys_181: 5.23749046e-34 + art_sys_182: 4.39245799e-33 + art_sys_183: 9.88298366e-35 + art_sys_184: -7.05653747e-37 + art_sys_185: -1.67901320e-37 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -6059,191 +6059,191 @@ bins: RelativeStatFSR-: -1.27827394e-01 luminosity_uncertainty: 1.05101880e+01 uncorrelated_uncertainty: 4.04238 -- art_sys_1: -9.27070244e-35 - art_sys_2: -1.39835254e-22 - art_sys_3: 2.79433524e-22 - art_sys_4: -1.02610600e-02 - art_sys_5: 2.06246067e-17 - art_sys_6: 9.94827736e-20 - art_sys_7: 9.31355577e-02 - art_sys_8: 1.72601425e-17 - art_sys_9: -1.44278694e-01 - art_sys_10: 1.83688034e-18 - art_sys_11: -7.82658142e-17 +- art_sys_1: 5.31809343e-33 + art_sys_2: -2.00229013e-21 + art_sys_3: -6.19464518e-22 + art_sys_4: 1.02610600e-02 + art_sys_5: -2.90612480e-18 + art_sys_6: 6.45578923e-20 + art_sys_7: -9.31355577e-02 + art_sys_8: 5.24447131e-17 + art_sys_9: 1.44278694e-01 + art_sys_10: 9.85378186e-19 + art_sys_11: -2.98066506e-17 art_sys_12: -1.47170196e-02 - art_sys_13: 1.53962078e-17 + art_sys_13: 1.80935918e-16 art_sys_14: 6.17935173e-01 - art_sys_15: 2.66190633e-15 - art_sys_16: -6.77278892e-01 - art_sys_17: 1.10049724e-16 - art_sys_18: -1.82201372e-14 + art_sys_15: 4.14664631e-16 + art_sys_16: 6.77278892e-01 + art_sys_17: 3.54067252e-17 + art_sys_18: -4.43558207e-16 art_sys_19: -1.83199525e+00 - art_sys_20: 3.28945954e-16 - art_sys_21: -3.46446506e-16 - art_sys_22: 7.48590970e-01 - art_sys_23: 6.68656820e-17 - art_sys_24: 1.79679468e-15 - art_sys_25: -4.82953074e-15 - art_sys_26: 3.64023689e-15 - art_sys_27: 1.57921680e-15 - art_sys_28: -1.18745823e-02 - art_sys_29: 1.39495047e-02 - art_sys_30: 8.21589157e-17 - art_sys_31: 1.75975216e-16 - art_sys_32: 1.77831721e-18 - art_sys_33: -7.88303634e-18 - art_sys_34: -3.19492846e-16 - art_sys_35: 3.29163857e-14 - art_sys_36: -1.25117744e-12 - art_sys_37: 7.04200288e-03 - art_sys_38: 9.79577144e-18 - art_sys_39: 7.50960719e-14 - art_sys_40: 2.92135511e-12 - art_sys_41: 7.68546396e-04 - art_sys_42: 3.67068330e-04 - art_sys_43: 1.40930386e-18 - art_sys_44: -5.15529310e-20 - art_sys_45: -3.05256837e-18 - art_sys_46: 5.41830822e-13 - art_sys_47: 1.47735200e-13 - art_sys_48: -1.01416353e-04 - art_sys_49: -4.48207314e-16 - art_sys_50: 7.05952445e-17 - art_sys_51: 1.33282344e-17 - art_sys_52: -1.66119183e-18 - art_sys_53: -1.24061661e-18 - art_sys_54: 3.26000293e-19 - art_sys_55: -3.70162593e-19 - art_sys_56: -5.69233685e-16 - art_sys_57: -2.68606714e-13 - art_sys_58: -6.90958184e-19 - art_sys_59: 1.43183652e-19 - art_sys_60: 8.84117247e-06 - art_sys_61: -5.91789509e-14 - art_sys_62: -7.77800315e-13 - art_sys_63: 1.06685497e-14 - art_sys_64: 3.93103200e-06 - art_sys_65: 1.73667282e-21 - art_sys_66: 1.98655694e-20 - art_sys_67: -1.47654767e-14 - art_sys_68: -1.41531524e-18 - art_sys_69: 1.78119997e-17 - art_sys_70: 8.78959825e-07 - art_sys_71: 2.36336424e-13 - art_sys_72: 2.10438106e-17 - art_sys_73: -2.00190482e-19 - art_sys_74: -1.88127403e-19 - art_sys_75: 3.16664258e-20 - art_sys_76: 1.47768513e-22 - art_sys_77: 6.82742467e-17 - art_sys_78: 1.27312734e-16 - art_sys_79: -1.39074811e-20 - art_sys_80: -7.11524790e-17 - art_sys_81: 4.61384351e-21 - art_sys_82: 5.85694209e-21 - art_sys_83: 1.94463898e-19 - art_sys_84: 3.86051292e-21 - art_sys_85: 2.07941598e-21 - art_sys_86: 2.64970514e-19 - art_sys_87: -1.08248735e-14 - art_sys_88: 4.99646470e-20 - art_sys_89: 8.23260177e-22 - art_sys_90: -5.50655037e-09 - art_sys_91: -1.86346817e-15 - art_sys_92: 1.97272730e-09 - art_sys_93: -2.39847008e-16 - art_sys_94: -1.52859473e-09 - art_sys_95: 5.61749106e-17 - art_sys_96: 6.66195236e-21 - art_sys_97: -4.10315200e-16 - art_sys_98: 7.34585166e-10 - art_sys_99: -4.16075264e-15 - art_sys_100: -2.15067054e-16 - art_sys_101: 3.79298350e-10 - art_sys_102: -1.60972253e-10 - art_sys_103: 9.37121065e-18 - art_sys_104: -6.54343293e-15 - art_sys_105: -6.43221346e-11 - art_sys_106: 7.94337423e-16 - art_sys_107: 4.47818799e-21 - art_sys_108: -2.81690223e-22 - art_sys_109: -1.15410467e-21 - art_sys_110: 3.87191122e-17 - art_sys_111: 2.39031219e-11 - art_sys_112: 1.22818566e-18 - art_sys_113: 3.78960088e-24 - art_sys_114: -8.37284272e-12 - art_sys_115: -6.90666934e-19 - art_sys_116: 3.79758881e-17 - art_sys_117: 3.53368964e-12 - art_sys_118: 2.61658954e-18 - art_sys_119: -1.27744572e-12 - art_sys_120: -6.46432217e-17 - art_sys_121: 1.97256697e-19 - art_sys_122: -4.29859570e-13 - art_sys_123: -1.43319591e-13 - art_sys_124: -1.55673069e-19 - art_sys_125: -1.85105117e-17 - art_sys_126: 4.42063703e-19 - art_sys_127: 4.67799406e-14 - art_sys_128: 5.22703587e-19 - art_sys_129: -1.21683315e-14 - art_sys_130: 8.30088830e-19 - art_sys_131: -3.32934135e-18 - art_sys_132: 4.16273425e-15 - art_sys_133: 9.74924372e-18 - art_sys_134: 1.98978816e-20 - art_sys_135: -7.09077085e-16 - art_sys_136: 1.94833915e-18 - art_sys_137: -2.15500709e-22 - art_sys_138: -1.43220084e-16 - art_sys_139: 6.89212162e-17 - art_sys_140: 1.01682238e-17 - art_sys_141: -1.56034939e-18 - art_sys_142: -1.31086956e-19 - art_sys_143: -7.20713495e-23 - art_sys_144: -1.28668148e-22 - art_sys_145: -5.24053490e-24 - art_sys_146: -0.0 - art_sys_147: -5.34099380e-21 - art_sys_148: -1.84350221e-20 - art_sys_149: -1.84350221e-20 - art_sys_150: 3.97990727e-20 - art_sys_151: 3.97990727e-20 - art_sys_152: -7.13766617e-19 - art_sys_153: 3.82058066e-20 - art_sys_154: -5.87889042e-24 - art_sys_155: 2.01380828e-31 - art_sys_156: -8.05049693e-36 - art_sys_157: -3.31383289e-34 - art_sys_158: 0.0 - art_sys_159: 4.08436664e-22 - art_sys_160: 1.84761159e-23 - art_sys_161: -1.19181645e-23 - art_sys_162: 9.86165177e-25 - art_sys_163: -9.42162456e-22 - art_sys_164: -5.49990127e-22 - art_sys_165: 8.28852545e-23 - art_sys_166: -1.56602753e-30 - art_sys_167: 2.33895236e-31 - art_sys_168: 3.34417688e-31 - art_sys_169: 2.85329687e-30 - art_sys_170: -1.40021592e-30 - art_sys_171: -1.71127580e-29 - art_sys_172: 2.94791188e-28 - art_sys_173: 1.45653385e-29 - art_sys_174: 1.05406744e-29 - art_sys_175: -2.82904809e-35 - art_sys_176: 2.34902635e-30 - art_sys_177: -5.25009904e-31 - art_sys_178: 1.43634722e-31 - art_sys_179: -1.80533348e-32 - art_sys_180: -1.29280288e-31 - art_sys_181: -7.14755597e-34 - art_sys_182: -3.13652794e-34 - art_sys_183: 4.73362510e-36 - art_sys_184: -1.05197463e-37 - art_sys_185: -3.91214473e-38 + art_sys_20: 1.13542360e-16 + art_sys_21: -4.07999730e-16 + art_sys_22: -1.84480282e-17 + art_sys_23: 7.48590970e-01 + art_sys_24: -9.09775435e-15 + art_sys_25: 1.18745823e-02 + art_sys_26: 1.39495047e-02 + art_sys_27: 2.06472165e-16 + art_sys_28: -6.35358593e-15 + art_sys_29: -7.44608391e-17 + art_sys_30: -7.04200288e-03 + art_sys_31: 1.26290087e-14 + art_sys_32: 1.95783917e-17 + art_sys_33: 7.68546398e-04 + art_sys_34: 3.67068330e-04 + art_sys_35: -8.65085570e-15 + art_sys_36: 2.98545257e-16 + art_sys_37: -7.94832180e-17 + art_sys_38: -5.22644355e-18 + art_sys_39: 8.08512574e-18 + art_sys_40: -5.71008894e-18 + art_sys_41: 1.25524380e-17 + art_sys_42: 4.69842077e-18 + art_sys_43: 7.30654928e-18 + art_sys_44: -1.17981105e-18 + art_sys_45: -5.58505241e-19 + art_sys_46: -2.32486881e-18 + art_sys_47: -1.32947641e-13 + art_sys_48: 1.01416353e-04 + art_sys_49: -1.21421810e-12 + art_sys_50: 5.07612177e-20 + art_sys_51: -1.91397949e-19 + art_sys_52: 2.92276714e-13 + art_sys_53: 8.84117234e-06 + art_sys_54: -3.37112182e-14 + art_sys_55: 3.93103209e-06 + art_sys_56: -1.39894749e-14 + art_sys_57: -2.87657036e-19 + art_sys_58: -1.67350505e-20 + art_sys_59: -8.78959824e-07 + art_sys_60: -1.39886129e-13 + art_sys_61: -2.27406539e-20 + art_sys_62: -3.63629475e-15 + art_sys_63: 6.17887445e-15 + art_sys_64: -1.69717454e-16 + art_sys_65: 4.13804671e-17 + art_sys_66: 1.03098962e-17 + art_sys_67: 1.56031653e-17 + art_sys_68: -2.11439652e-20 + art_sys_69: 2.72904103e-21 + art_sys_70: 5.42918563e-21 + art_sys_71: 7.33436806e-22 + art_sys_72: 4.08230167e-22 + art_sys_73: 1.41032483e-22 + art_sys_74: -3.85954270e-18 + art_sys_75: 7.79211438e-22 + art_sys_76: -4.48488470e-19 + art_sys_77: -1.30660838e-19 + art_sys_78: 5.27461989e-20 + art_sys_79: -2.83332877e-21 + art_sys_80: -9.76115378e-21 + art_sys_81: 1.05114061e-17 + art_sys_82: -2.47200026e-14 + art_sys_83: 1.36403778e-20 + art_sys_84: 1.92492045e-21 + art_sys_85: 4.20725190e-21 + art_sys_86: -9.97058843e-22 + art_sys_87: -8.02314382e-19 + art_sys_88: 4.19816194e-19 + art_sys_89: -2.67891869e-22 + art_sys_90: -1.08442863e-18 + art_sys_91: 5.50655571e-09 + art_sys_92: 4.47602316e-23 + art_sys_93: -5.08477196e-23 + art_sys_94: 3.86537327e-20 + art_sys_95: 8.49162660e-16 + art_sys_96: -1.97274123e-09 + art_sys_97: -4.99559138e-16 + art_sys_98: 1.20105892e-16 + art_sys_99: -1.52859257e-09 + art_sys_100: 1.28610906e-15 + art_sys_101: 7.34578841e-10 + art_sys_102: -9.43095314e-18 + art_sys_103: 3.28362124e-16 + art_sys_104: -3.79302708e-10 + art_sys_105: -3.55757597e-22 + art_sys_106: 1.60971424e-10 + art_sys_107: 1.00110833e-17 + art_sys_108: 1.83001347e-21 + art_sys_109: -2.20281297e-22 + art_sys_110: 1.43380321e-16 + art_sys_111: -6.43244410e-11 + art_sys_112: -2.41175697e-17 + art_sys_113: -2.07493137e-15 + art_sys_114: -1.46973674e-23 + art_sys_115: 2.39030835e-11 + art_sys_116: -6.46572711e-18 + art_sys_117: -4.46577554e-22 + art_sys_118: -8.37265518e-12 + art_sys_119: -2.87736526e-18 + art_sys_120: 2.90975898e-17 + art_sys_121: -3.47811352e-23 + art_sys_122: 3.53317845e-12 + art_sys_123: 3.99786317e-19 + art_sys_124: -1.27858629e-12 + art_sys_125: 1.06453562e-23 + art_sys_126: 8.37729804e-18 + art_sys_127: -1.64528486e-20 + art_sys_128: 4.29809952e-13 + art_sys_129: -1.13396662e-23 + art_sys_130: 1.64386886e-19 + art_sys_131: 1.81440458e-22 + art_sys_132: 1.43143457e-13 + art_sys_133: -3.15578495e-19 + art_sys_134: 1.31582125e-18 + art_sys_135: -4.68152717e-14 + art_sys_136: -3.23342607e-23 + art_sys_137: 1.23054925e-20 + art_sys_138: -1.21917762e-14 + art_sys_139: -2.66711414e-19 + art_sys_140: 2.73764106e-23 + art_sys_141: -8.28207479e-20 + art_sys_142: -4.12741201e-15 + art_sys_143: -7.60961562e-20 + art_sys_144: 1.29696524e-21 + art_sys_145: -6.93889685e-16 + art_sys_146: 4.23684072e-20 + art_sys_147: -4.80526774e-22 + art_sys_148: 1.63157146e-23 + art_sys_149: 7.02333973e-17 + art_sys_150: -2.02151405e-18 + art_sys_151: -1.09234456e-19 + art_sys_152: 1.90929646e-21 + art_sys_153: -2.78657223e-19 + art_sys_154: 1.77660918e-18 + art_sys_155: 1.01959284e-21 + art_sys_156: -0.0 + art_sys_157: 7.78913453e-19 + art_sys_158: -0.0 + art_sys_159: -1.23859357e-19 + art_sys_160: 1.61194281e-20 + art_sys_161: 1.38573636e-20 + art_sys_162: 1.38573636e-20 + art_sys_163: 1.43077346e-20 + art_sys_164: 1.43077346e-20 + art_sys_165: -1.61384886e-34 + art_sys_166: 5.35675314e-35 + art_sys_167: 0.0 + art_sys_168: 5.49992434e-30 + art_sys_169: -1.83256639e-29 + art_sys_170: 6.09912410e-30 + art_sys_171: 4.16200041e-28 + art_sys_172: -4.49097086e-29 + art_sys_173: -3.64207048e-30 + art_sys_174: 3.91281672e-30 + art_sys_175: -3.18959923e-32 + art_sys_176: 4.86641026e-32 + art_sys_177: -4.81341456e-34 + art_sys_178: -2.20120195e-34 + art_sys_179: -3.10647288e-34 + art_sys_180: -3.22129363e-33 + art_sys_181: 1.97728748e-33 + art_sys_182: -9.85948441e-33 + art_sys_183: -2.31714587e-34 + art_sys_184: 1.79589392e-36 + art_sys_185: 5.95789754e-37 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -6350,191 +6350,191 @@ bins: RelativeStatFSR-: -7.11901949e-02 luminosity_uncertainty: 5.39606600e+00 uncorrelated_uncertainty: 2.07541000e+00 -- art_sys_1: -4.81744444e-35 - art_sys_2: -7.39958266e-23 - art_sys_3: 2.04329500e-23 - art_sys_4: -5.42978630e-03 - art_sys_5: 2.34737715e-18 - art_sys_6: 5.23614665e-20 - art_sys_7: 7.55363663e-03 - art_sys_8: 4.31448447e-18 - art_sys_9: -2.52008319e-02 - art_sys_10: 3.24134582e-19 - art_sys_11: 4.68003818e-18 +- art_sys_1: 2.81349202e-33 + art_sys_2: -1.05954039e-21 + art_sys_3: -1.37084131e-22 + art_sys_4: 5.42978630e-03 + art_sys_5: -9.27510643e-19 + art_sys_6: 3.46678946e-20 + art_sys_7: -7.55363663e-03 + art_sys_8: 1.24047826e-17 + art_sys_9: 2.52008319e-02 + art_sys_10: 6.56181301e-20 + art_sys_11: -8.67163520e-18 art_sys_12: -1.69847070e-02 - art_sys_13: 8.68584888e-19 + art_sys_13: 4.61366692e-18 art_sys_14: 1.52033765e-02 - art_sys_15: -2.25489120e-15 - art_sys_16: 1.30679939e-01 - art_sys_17: 1.58370309e-17 - art_sys_18: -1.18768064e-15 + art_sys_15: 1.25377702e-16 + art_sys_16: -1.30679939e-01 + art_sys_17: -2.83230326e-18 + art_sys_18: -2.39658965e-16 art_sys_19: -9.96196228e-02 - art_sys_20: 7.52633541e-17 - art_sys_21: -2.29752387e-16 - art_sys_22: 1.50400337e-01 - art_sys_23: 3.29343693e-17 - art_sys_24: 7.34654240e-16 - art_sys_25: 7.03999271e-14 - art_sys_26: -3.42579431e-14 - art_sys_27: -1.85185191e-15 - art_sys_28: 1.79909351e-01 - art_sys_29: -5.52519844e-02 - art_sys_30: -3.58877477e-16 - art_sys_31: -9.56056512e-16 - art_sys_32: 1.92125768e-17 - art_sys_33: 2.61099121e-17 - art_sys_34: 9.23319135e-16 - art_sys_35: -1.94605737e-13 - art_sys_36: 6.86681839e-12 - art_sys_37: -3.86479995e-02 - art_sys_38: -2.61235236e-17 - art_sys_39: -3.93002445e-13 - art_sys_40: -1.39442207e-11 - art_sys_41: -3.66843286e-03 - art_sys_42: -1.82187495e-03 - art_sys_43: -4.99217935e-18 - art_sys_44: 1.22858586e-18 - art_sys_45: 1.78048428e-17 - art_sys_46: -2.68218892e-12 - art_sys_47: -7.49861212e-13 - art_sys_48: 5.14758900e-04 - art_sys_49: 2.45823300e-15 - art_sys_50: -3.26054081e-16 - art_sys_51: -7.23076146e-17 - art_sys_52: 8.02023638e-18 - art_sys_53: 6.70417749e-18 - art_sys_54: -1.74700570e-18 - art_sys_55: 2.96164850e-18 - art_sys_56: 2.75552982e-15 - art_sys_57: 1.36335895e-12 - art_sys_58: 3.31155894e-18 - art_sys_59: -7.34405922e-19 - art_sys_60: -4.28015404e-05 - art_sys_61: 3.31273914e-13 - art_sys_62: 3.94139119e-12 - art_sys_63: -5.39923642e-14 - art_sys_64: -1.98817090e-05 - art_sys_65: -8.78649281e-21 - art_sys_66: -1.00886764e-19 - art_sys_67: 7.47317822e-14 - art_sys_68: 6.38303951e-18 - art_sys_69: -9.90025990e-17 - art_sys_70: -4.44832009e-06 - art_sys_71: -1.19407869e-12 - art_sys_72: 6.17441215e-16 - art_sys_73: 1.25669721e-18 - art_sys_74: 9.11669366e-19 - art_sys_75: -1.17634407e-19 - art_sys_76: -7.65251621e-22 - art_sys_77: -9.18095681e-16 - art_sys_78: -6.40161749e-16 - art_sys_79: 7.01664613e-20 - art_sys_80: 3.80899261e-16 - art_sys_81: -2.03475621e-20 - art_sys_82: -2.82459289e-20 - art_sys_83: -1.02165522e-18 - art_sys_84: -1.90670395e-20 - art_sys_85: -9.26414762e-21 - art_sys_86: -1.39641149e-18 - art_sys_87: 5.88367199e-14 - art_sys_88: -2.63393671e-19 - art_sys_89: -4.31356139e-21 - art_sys_90: 2.47675324e-08 - art_sys_91: 9.71451879e-15 - art_sys_92: -1.13249319e-08 - art_sys_93: 1.64808323e-15 - art_sys_94: 7.50987330e-09 - art_sys_95: -2.94912878e-16 - art_sys_96: -3.51357811e-20 - art_sys_97: 2.14798731e-15 - art_sys_98: -3.84033112e-09 - art_sys_99: 2.09914632e-14 - art_sys_100: 1.13069547e-15 - art_sys_101: -1.96131055e-09 - art_sys_102: 8.39735510e-10 - art_sys_103: -4.92203916e-17 - art_sys_104: 3.24759811e-14 - art_sys_105: 3.36613815e-10 - art_sys_106: -4.16437430e-15 - art_sys_107: -2.36278722e-20 - art_sys_108: 1.48925225e-21 - art_sys_109: 6.13703476e-21 - art_sys_110: -2.04063138e-16 - art_sys_111: -1.25242808e-10 - art_sys_112: -6.50212845e-18 - art_sys_113: -1.80454274e-23 - art_sys_114: 4.40050693e-11 - art_sys_115: 3.64209123e-18 - art_sys_116: -2.00126320e-16 - art_sys_117: -1.85798204e-11 - art_sys_118: -1.37985798e-17 - art_sys_119: 6.72522003e-12 - art_sys_120: 3.40677412e-16 - art_sys_121: -1.04070532e-18 - art_sys_122: 2.26501737e-12 - art_sys_123: 7.55430249e-13 - art_sys_124: 8.21348786e-19 - art_sys_125: 9.76419585e-17 - art_sys_126: -2.33237764e-18 - art_sys_127: -2.46719822e-13 - art_sys_128: -2.75840550e-18 - art_sys_129: 6.41871827e-14 - art_sys_130: -4.38065505e-18 - art_sys_131: 1.75683401e-17 - art_sys_132: -2.19637023e-14 - art_sys_133: -5.14397198e-17 - art_sys_134: -1.04986600e-19 - art_sys_135: 3.74195517e-15 - art_sys_136: -1.02812139e-17 - art_sys_137: 1.13712667e-21 - art_sys_138: 7.33405287e-16 - art_sys_139: -3.63740287e-16 - art_sys_140: -5.36636816e-17 - art_sys_141: 8.23441625e-18 - art_sys_142: 6.91861820e-19 - art_sys_143: 3.80379926e-22 - art_sys_144: 6.79035291e-22 - art_sys_145: 2.75713353e-23 - art_sys_146: 0.0 - art_sys_147: 2.81570384e-20 - art_sys_148: 9.75817172e-20 - art_sys_149: 9.75817172e-20 - art_sys_150: -2.10223534e-19 - art_sys_151: -2.10223534e-19 - art_sys_152: 3.76390771e-18 - art_sys_153: -2.01412166e-19 - art_sys_154: 3.09667160e-23 - art_sys_155: -1.06183076e-30 - art_sys_156: 4.24798115e-35 - art_sys_157: 1.74628777e-33 - art_sys_158: -0.0 - art_sys_159: -2.13146125e-21 - art_sys_160: -9.72590884e-23 - art_sys_161: 6.29445501e-23 - art_sys_162: -4.98692499e-24 - art_sys_163: 4.96956749e-21 - art_sys_164: 2.90214876e-21 - art_sys_165: -4.37371297e-22 - art_sys_166: 8.63671534e-30 - art_sys_167: -1.43151226e-30 - art_sys_168: -1.82338275e-30 - art_sys_169: -1.54258405e-29 - art_sys_170: 7.80527301e-30 - art_sys_171: 9.27387823e-29 - art_sys_172: -1.59397024e-27 - art_sys_173: -7.68150798e-29 - art_sys_174: -5.67860656e-29 - art_sys_175: 1.49352977e-34 - art_sys_176: -1.27226263e-29 - art_sys_177: 2.85812693e-30 - art_sys_178: -7.82851245e-31 - art_sys_179: 9.84453590e-32 - art_sys_180: 7.00222868e-31 - art_sys_181: 3.77513718e-33 - art_sys_182: 1.69931881e-33 - art_sys_183: -2.58566036e-35 - art_sys_184: 5.57771937e-37 - art_sys_185: 2.06410148e-37 + art_sys_20: 2.82635992e-17 + art_sys_21: -1.78067178e-17 + art_sys_22: -6.92422829e-18 + art_sys_23: 1.50400337e-01 + art_sys_24: -1.46423238e-15 + art_sys_25: -1.79909351e-01 + art_sys_26: -5.52519844e-02 + art_sys_27: -3.48921650e-16 + art_sys_28: 5.13630167e-14 + art_sys_29: 4.77898523e-16 + art_sys_30: 3.86479995e-02 + art_sys_31: -3.54483933e-14 + art_sys_32: -2.91608625e-17 + art_sys_33: -3.66843287e-03 + art_sys_34: -1.82187495e-03 + art_sys_35: 2.41629895e-14 + art_sys_36: -1.08302475e-15 + art_sys_37: 4.50285919e-16 + art_sys_38: -1.36195352e-17 + art_sys_39: -4.16347302e-17 + art_sys_40: 2.18829597e-17 + art_sys_41: -6.94295240e-17 + art_sys_42: -2.90569433e-17 + art_sys_43: -4.11521025e-17 + art_sys_44: -9.57363258e-18 + art_sys_45: 4.80399172e-18 + art_sys_46: 1.39691143e-17 + art_sys_47: 6.74799510e-13 + art_sys_48: -5.14758899e-04 + art_sys_49: 6.16295017e-12 + art_sys_50: -6.65266570e-19 + art_sys_51: -8.72911744e-19 + art_sys_52: -1.48515495e-12 + art_sys_53: -4.28015398e-05 + art_sys_54: 1.63865083e-13 + art_sys_55: -1.98817095e-05 + art_sys_56: 7.11916379e-14 + art_sys_57: 3.34184925e-18 + art_sys_58: 5.97625483e-20 + art_sys_59: 4.44832009e-06 + art_sys_60: 7.08671953e-13 + art_sys_61: -2.75808213e-20 + art_sys_62: 1.75019799e-14 + art_sys_63: -2.96612008e-14 + art_sys_64: 8.50834126e-16 + art_sys_65: -2.21482034e-16 + art_sys_66: -5.85153394e-17 + art_sys_67: -8.43704253e-17 + art_sys_68: 1.27000392e-19 + art_sys_69: -1.41092675e-20 + art_sys_70: -2.80653389e-20 + art_sys_71: -7.03327430e-21 + art_sys_72: -1.74672662e-21 + art_sys_73: -7.40158465e-22 + art_sys_74: 2.25610763e-17 + art_sys_75: -4.24288842e-21 + art_sys_76: 2.07562399e-18 + art_sys_77: 7.04026442e-19 + art_sys_78: -2.78662815e-19 + art_sys_79: 1.51802522e-20 + art_sys_80: 5.60076540e-20 + art_sys_81: -6.03586276e-17 + art_sys_82: 1.30862531e-13 + art_sys_83: -5.89347277e-20 + art_sys_84: -1.17607760e-20 + art_sys_85: -1.89383289e-20 + art_sys_86: 4.84923353e-21 + art_sys_87: 4.20877225e-18 + art_sys_88: -2.19518732e-18 + art_sys_89: 9.27259444e-22 + art_sys_90: 5.71708596e-18 + art_sys_91: -2.47675489e-08 + art_sys_92: -1.66686411e-22 + art_sys_93: 2.69885208e-22 + art_sys_94: -2.03761805e-19 + art_sys_95: -4.08069218e-15 + art_sys_96: 1.13250000e-08 + art_sys_97: 1.80541471e-15 + art_sys_98: -6.25481812e-16 + art_sys_99: 7.50986013e-09 + art_sys_100: -6.72498044e-15 + art_sys_101: -3.84029842e-09 + art_sys_102: 4.82360185e-17 + art_sys_103: -1.66402664e-15 + art_sys_104: 1.96133327e-09 + art_sys_105: 1.87418864e-21 + art_sys_106: -8.39731488e-10 + art_sys_107: -5.27604807e-17 + art_sys_108: -9.66861998e-21 + art_sys_109: 1.15813525e-21 + art_sys_110: -7.54088727e-16 + art_sys_111: 3.36625737e-10 + art_sys_112: 1.26787832e-16 + art_sys_113: 1.08941607e-14 + art_sys_114: 7.78374265e-23 + art_sys_115: -1.25242603e-10 + art_sys_116: 3.40702422e-17 + art_sys_117: 2.34010733e-21 + art_sys_118: 4.40040812e-11 + art_sys_119: 1.51699161e-17 + art_sys_120: -1.53400621e-16 + art_sys_121: 1.87216756e-22 + art_sys_122: -1.85771314e-11 + art_sys_123: -2.10972255e-18 + art_sys_124: 6.73121586e-12 + art_sys_125: -5.66083146e-23 + art_sys_126: -4.41835621e-17 + art_sys_127: 8.68554529e-20 + art_sys_128: -2.26475514e-12 + art_sys_129: 5.96872555e-23 + art_sys_130: -8.67606794e-19 + art_sys_131: -9.57601417e-22 + art_sys_132: -7.54502129e-13 + art_sys_133: 1.66554560e-18 + art_sys_134: -6.94553987e-18 + art_sys_135: 2.46906093e-13 + art_sys_136: 1.70606702e-22 + art_sys_137: -6.49555415e-20 + art_sys_138: 6.43109333e-14 + art_sys_139: 1.40754331e-18 + art_sys_140: -1.44490893e-22 + art_sys_141: 4.36941105e-19 + art_sys_142: 2.17774116e-14 + art_sys_143: 4.01555791e-19 + art_sys_144: -6.84303415e-21 + art_sys_145: 3.66186208e-15 + art_sys_146: -2.23591587e-19 + art_sys_147: 2.53587944e-21 + art_sys_148: -8.59955407e-23 + art_sys_149: -3.70673677e-16 + art_sys_150: 1.06690250e-17 + art_sys_151: 5.76454444e-19 + art_sys_152: -1.00766504e-20 + art_sys_153: 1.47061507e-18 + art_sys_154: -9.32715044e-18 + art_sys_155: -5.38128838e-21 + art_sys_156: 0.0 + art_sys_157: -4.11031508e-18 + art_sys_158: 0.0 + art_sys_159: 6.53639682e-19 + art_sys_160: -8.50636918e-20 + art_sys_161: -7.31340432e-20 + art_sys_162: -7.31340432e-20 + art_sys_163: -7.55077022e-20 + art_sys_164: -7.55077022e-20 + art_sys_165: 8.51698427e-34 + art_sys_166: -2.82699521e-34 + art_sys_167: -0.0 + art_sys_168: -2.94238709e-29 + art_sys_169: 1.02106807e-28 + art_sys_170: -3.90320957e-29 + art_sys_171: -2.30041129e-27 + art_sys_172: 2.41633532e-28 + art_sys_173: 1.98105334e-29 + art_sys_174: -2.11208561e-29 + art_sys_175: 2.20880687e-31 + art_sys_176: -2.76051749e-31 + art_sys_177: 2.67845472e-33 + art_sys_178: 1.12926914e-33 + art_sys_179: 1.63962554e-33 + art_sys_180: 1.69997587e-32 + art_sys_181: -8.39645327e-33 + art_sys_182: 5.14277483e-32 + art_sys_183: 1.23272100e-33 + art_sys_184: -9.52883951e-36 + art_sys_185: -3.14378447e-36 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -6641,191 +6641,191 @@ bins: RelativeStatFSR-: -4.08621452e-02 luminosity_uncertainty: 2.861872 uncorrelated_uncertainty: 1.10072 -- art_sys_1: -8.34459912e-36 - art_sys_2: -1.28945778e-23 - art_sys_3: -3.52363565e-24 - art_sys_4: -9.46199306e-04 - art_sys_5: -1.94676946e-19 - art_sys_6: 9.10639681e-21 - art_sys_7: -1.27277464e-03 - art_sys_8: -1.22741854e-19 - art_sys_9: -1.81268226e-05 - art_sys_10: 3.93521342e-21 - art_sys_11: 1.04728619e-17 +- art_sys_1: 4.90417872e-34 + art_sys_2: -1.84636434e-22 + art_sys_3: -6.28013665e-23 + art_sys_4: 9.46199306e-04 + art_sys_5: 2.04272088e-19 + art_sys_6: 6.02008919e-21 + art_sys_7: 1.27277464e-03 + art_sys_8: 3.65599552e-19 + art_sys_9: 1.81268226e-05 + art_sys_10: -2.06229478e-20 + art_sys_11: 1.76208894e-18 art_sys_12: -2.00627235e-03 - art_sys_13: -6.76894450e-19 + art_sys_13: -9.52284762e-18 art_sys_14: -3.26013776e-02 - art_sys_15: 6.25507809e-16 - art_sys_16: 4.82708788e-02 - art_sys_17: -5.20415391e-18 - art_sys_18: 1.04884581e-15 + art_sys_15: -1.63664990e-15 + art_sys_16: -4.82708788e-02 + art_sys_17: -2.41366597e-18 + art_sys_18: -1.31232368e-16 art_sys_19: 1.12088467e-01 - art_sys_20: -2.22037839e-17 - art_sys_21: 1.77771071e-16 - art_sys_22: -5.10416145e-02 - art_sys_23: -4.29651674e-18 - art_sys_24: -3.36886512e-16 - art_sys_25: 4.52425178e-14 - art_sys_26: -1.23782719e-14 - art_sys_27: 2.04581166e-14 - art_sys_28: 1.23529853e-01 - art_sys_29: 9.01553811e-02 - art_sys_30: 1.28301458e-15 - art_sys_31: 1.39477555e-15 - art_sys_32: 1.36150167e-17 - art_sys_33: -1.53139615e-16 - art_sys_34: -1.65713052e-16 - art_sys_35: 3.14025286e-13 - art_sys_36: -9.17668229e-12 - art_sys_37: 5.16480003e-02 - art_sys_38: 3.99892046e-17 - art_sys_39: 3.77001224e-13 - art_sys_40: 3.57884720e-11 - art_sys_41: 9.41530790e-03 - art_sys_42: 4.24003911e-03 - art_sys_43: 3.85460612e-18 - art_sys_44: -8.11708123e-19 - art_sys_45: -2.31884772e-17 - art_sys_46: 6.10350212e-12 - art_sys_47: 2.02483400e-12 - art_sys_48: -1.38999235e-03 - art_sys_49: -3.23966880e-15 - art_sys_50: 1.12111458e-15 - art_sys_51: 1.07079074e-16 - art_sys_52: -3.58904113e-17 - art_sys_53: -1.46177635e-17 - art_sys_54: 3.69436310e-18 - art_sys_55: -9.39578533e-18 - art_sys_56: -8.20214393e-15 - art_sys_57: -3.68149498e-12 - art_sys_58: -1.06309722e-17 - art_sys_59: 2.14176795e-18 - art_sys_60: 1.27410759e-04 - art_sys_61: -7.02148994e-13 - art_sys_62: -1.13871600e-11 - art_sys_63: 1.64423820e-13 - art_sys_64: 5.75089620e-05 - art_sys_65: 2.62504040e-20 - art_sys_66: 3.06740614e-19 - art_sys_67: -2.02061602e-13 - art_sys_68: -2.05286522e-17 - art_sys_69: 2.86177434e-16 - art_sys_70: 1.35464673e-05 - art_sys_71: 3.63841383e-12 - art_sys_72: 2.92991129e-16 - art_sys_73: -3.41983398e-18 - art_sys_74: -2.75806513e-18 - art_sys_75: 3.68968399e-19 - art_sys_76: 2.09654095e-21 - art_sys_77: 2.08795007e-15 - art_sys_78: 2.01838705e-15 - art_sys_79: -2.02647673e-19 - art_sys_80: -1.17197704e-15 - art_sys_81: 6.25905395e-20 - art_sys_82: 8.73738749e-20 - art_sys_83: 3.28033257e-18 - art_sys_84: 5.72825581e-20 - art_sys_85: 2.93096852e-20 - art_sys_86: 4.48438286e-18 - art_sys_87: -1.71412464e-13 - art_sys_88: 8.49951028e-19 - art_sys_89: 1.74974305e-20 - art_sys_90: -7.86693816e-08 - art_sys_91: -3.06626170e-14 - art_sys_92: 3.22243866e-08 - art_sys_93: -4.28680195e-15 - art_sys_94: -2.40138710e-08 - art_sys_95: 9.41532094e-16 - art_sys_96: 1.12906781e-19 - art_sys_97: -6.83253685e-15 - art_sys_98: 1.18278129e-08 - art_sys_99: -6.20880683e-14 - art_sys_100: -3.61950738e-15 - art_sys_101: 6.20013628e-09 - art_sys_102: -2.64984022e-09 - art_sys_103: 1.57336125e-16 - art_sys_104: -9.91410175e-14 - art_sys_105: -1.06963376e-09 - art_sys_106: 1.32818246e-14 - art_sys_107: 7.59378171e-20 - art_sys_108: -4.73095668e-21 - art_sys_109: -1.98145507e-20 - art_sys_110: 6.55549366e-16 - art_sys_111: 3.99424910e-10 - art_sys_112: 2.09697700e-17 - art_sys_113: 1.67487128e-22 - art_sys_114: -1.40599641e-10 - art_sys_115: -1.17079372e-17 - art_sys_116: 6.42977107e-16 - art_sys_117: 5.95131000e-11 - art_sys_118: 4.43575894e-17 - art_sys_119: -2.15664546e-11 - art_sys_120: -1.09452155e-15 - art_sys_121: 3.34807273e-18 - art_sys_122: -7.27269106e-12 - art_sys_123: -2.42766045e-12 - art_sys_124: -2.64225860e-18 - art_sys_125: -3.13960476e-16 - art_sys_126: 7.50357985e-18 - art_sys_127: 7.93172971e-13 - art_sys_128: 8.87750746e-18 - art_sys_129: -2.06474176e-13 - art_sys_130: 1.40951691e-17 - art_sys_131: -5.65231394e-17 - art_sys_132: 7.06614708e-14 - art_sys_133: 1.65491976e-16 - art_sys_134: 3.37761947e-19 - art_sys_135: -1.20419811e-14 - art_sys_136: 3.30828963e-17 - art_sys_137: -3.66035474e-21 - art_sys_138: -2.31655535e-15 - art_sys_139: 1.17074938e-15 - art_sys_140: 1.72722338e-16 - art_sys_141: -2.65018751e-17 - art_sys_142: -2.22616897e-18 - art_sys_143: -1.22435740e-21 - art_sys_144: -2.18549942e-21 - art_sys_145: -8.90412221e-23 - art_sys_146: -0.0 - art_sys_147: -9.05868796e-20 - art_sys_148: -3.14142309e-19 - art_sys_149: -3.14142309e-19 - art_sys_150: 6.77278394e-19 - art_sys_151: 6.77278394e-19 - art_sys_152: -1.21039075e-17 - art_sys_153: 6.47525785e-19 - art_sys_154: -9.94222509e-23 - art_sys_155: 3.41413142e-30 - art_sys_156: -1.36719826e-34 - art_sys_157: -5.61017945e-33 - art_sys_158: 0.0 - art_sys_159: 6.76660276e-21 - art_sys_160: 3.01459288e-22 - art_sys_161: -2.02159459e-22 - art_sys_162: 2.24282766e-23 - art_sys_163: -1.60948722e-20 - art_sys_164: -9.33441824e-21 - art_sys_165: 1.40089026e-21 - art_sys_166: -1.30920366e-29 - art_sys_167: -2.32710067e-30 - art_sys_168: 2.53962227e-30 - art_sys_169: 2.16920131e-29 - art_sys_170: -1.09201767e-29 - art_sys_171: -1.28848794e-28 - art_sys_172: 2.22371794e-27 - art_sys_173: 1.28244133e-28 - art_sys_174: 8.19533854e-29 - art_sys_175: -4.80431554e-34 - art_sys_176: 1.79093101e-29 - art_sys_177: -3.88049435e-30 - art_sys_178: 1.05033305e-30 - art_sys_179: -1.24689352e-31 - art_sys_180: -9.91904252e-31 - art_sys_181: -6.19079229e-33 - art_sys_182: -2.45557454e-33 - art_sys_183: 3.40151029e-35 - art_sys_184: -1.58586647e-36 - art_sys_185: -6.64953870e-37 + art_sys_20: -6.34831755e-18 + art_sys_21: -1.02879652e-15 + art_sys_22: 5.34358795e-18 + art_sys_23: -5.10416145e-02 + art_sys_24: 3.38918805e-16 + art_sys_25: -1.23529853e-01 + art_sys_26: 9.01553811e-02 + art_sys_27: -1.25055735e-15 + art_sys_28: -7.80139315e-14 + art_sys_29: -6.50143025e-16 + art_sys_30: -5.16480003e-02 + art_sys_31: 1.17534428e-14 + art_sys_32: 1.62745161e-17 + art_sys_33: 9.41530793e-03 + art_sys_34: 4.24003911e-03 + art_sys_35: -1.91177997e-14 + art_sys_36: 3.14904431e-15 + art_sys_37: -1.21917177e-15 + art_sys_38: -1.15948541e-16 + art_sys_39: 1.09061778e-16 + art_sys_40: -7.05771417e-17 + art_sys_41: 1.68181675e-16 + art_sys_42: 4.32950041e-17 + art_sys_43: 5.12778760e-17 + art_sys_44: -2.10741124e-18 + art_sys_45: -7.37597927e-18 + art_sys_46: -1.82209421e-17 + art_sys_47: -1.82214477e-12 + art_sys_48: 1.38999235e-03 + art_sys_49: -1.66420019e-11 + art_sys_50: 7.27327736e-19 + art_sys_51: -1.26246900e-18 + art_sys_52: 4.01255065e-12 + art_sys_53: 1.27410757e-04 + art_sys_54: -4.86442993e-13 + art_sys_55: 5.75089633e-05 + art_sys_56: -1.93233264e-13 + art_sys_57: -5.45038205e-18 + art_sys_58: -1.02058231e-19 + art_sys_59: -1.35464673e-05 + art_sys_60: -2.15733306e-12 + art_sys_61: 1.68915248e-19 + art_sys_62: -5.21157043e-14 + art_sys_63: 9.24236812e-14 + art_sys_64: -1.82819334e-15 + art_sys_65: 3.03396492e-16 + art_sys_66: 6.96009248e-17 + art_sys_67: 1.16131924e-16 + art_sys_68: -3.77126038e-20 + art_sys_69: -4.73989438e-21 + art_sys_70: 7.03238205e-20 + art_sys_71: -8.38762666e-21 + art_sys_72: 7.20685216e-21 + art_sys_73: -1.44303671e-21 + art_sys_74: -6.36765373e-17 + art_sys_75: 6.17214925e-21 + art_sys_76: -6.73415421e-18 + art_sys_77: -2.14756285e-18 + art_sys_78: 8.22517818e-19 + art_sys_79: -1.75912883e-20 + art_sys_80: -1.78978968e-19 + art_sys_81: 1.71780061e-16 + art_sys_82: -3.85582513e-13 + art_sys_83: 1.89293093e-19 + art_sys_84: 3.75093317e-20 + art_sys_85: 6.26739709e-20 + art_sys_86: -1.47688095e-20 + art_sys_87: -1.30709499e-17 + art_sys_88: 6.96950487e-18 + art_sys_89: -3.44699742e-21 + art_sys_90: -1.83969606e-17 + art_sys_91: 7.86694453e-08 + art_sys_92: 2.46410669e-22 + art_sys_93: -8.06125329e-22 + art_sys_94: 6.52966678e-19 + art_sys_95: 1.30621423e-14 + art_sys_96: -3.22245993e-08 + art_sys_97: -5.69703064e-15 + art_sys_98: 1.79755017e-15 + art_sys_99: -2.40138354e-08 + art_sys_100: 2.07622844e-14 + art_sys_101: 1.18277097e-08 + art_sys_102: -1.47974739e-16 + art_sys_103: 5.19565651e-15 + art_sys_104: -6.20020816e-09 + art_sys_105: -5.92417734e-21 + art_sys_106: 2.64982744e-09 + art_sys_107: 1.69495730e-16 + art_sys_108: 3.03172676e-20 + art_sys_109: -3.62975972e-21 + art_sys_110: 2.41635706e-15 + art_sys_111: -1.06967124e-09 + art_sys_112: -4.06010852e-16 + art_sys_113: -3.48968239e-14 + art_sys_114: -2.32096502e-22 + art_sys_115: 3.99424247e-10 + art_sys_116: -1.09400124e-16 + art_sys_117: -7.41859437e-21 + art_sys_118: -1.40596465e-10 + art_sys_119: -4.87623356e-17 + art_sys_120: 4.93128501e-16 + art_sys_121: -2.74371773e-22 + art_sys_122: 5.95044899e-11 + art_sys_123: 6.78709957e-18 + art_sys_124: -2.15856512e-11 + art_sys_125: 1.53400886e-22 + art_sys_126: 1.42028363e-16 + art_sys_127: -2.79685726e-19 + art_sys_128: 7.27184697e-12 + art_sys_129: -2.04493638e-22 + art_sys_130: 2.79221023e-18 + art_sys_131: 3.07832252e-21 + art_sys_132: 2.42468041e-12 + art_sys_133: -5.36083378e-18 + art_sys_134: 2.23581035e-17 + art_sys_135: -7.93771883e-13 + art_sys_136: -5.52974048e-22 + art_sys_137: 2.09123706e-19 + art_sys_138: -2.06872432e-13 + art_sys_139: -4.53029299e-18 + art_sys_140: 4.65090689e-22 + art_sys_141: -1.40562161e-18 + art_sys_142: -7.00623841e-14 + art_sys_143: -1.29220382e-18 + art_sys_144: 2.20138974e-20 + art_sys_145: -1.17844384e-14 + art_sys_146: 7.19505410e-19 + art_sys_147: -8.16134662e-21 + art_sys_148: 2.75991516e-22 + art_sys_149: 1.19309716e-15 + art_sys_150: -3.43404926e-17 + art_sys_151: -1.85548666e-18 + art_sys_152: 3.24326314e-20 + art_sys_153: -4.73333906e-18 + art_sys_154: 3.04674860e-17 + art_sys_155: 1.73188656e-20 + art_sys_156: -0.0 + art_sys_157: 1.32309399e-17 + art_sys_158: -0.0 + art_sys_159: -2.10390373e-18 + art_sys_160: 2.73810210e-19 + art_sys_161: 2.35381429e-19 + art_sys_162: 2.35381429e-19 + art_sys_163: 2.43033300e-19 + art_sys_164: 2.43033300e-19 + art_sys_165: -2.74130465e-33 + art_sys_166: 9.09904865e-34 + art_sys_167: 0.0 + art_sys_168: 2.46176272e-29 + art_sys_169: -1.20137256e-28 + art_sys_170: -1.09376070e-30 + art_sys_171: 2.82408172e-27 + art_sys_172: -3.57130968e-28 + art_sys_173: -2.99425964e-29 + art_sys_174: 3.12359276e-29 + art_sys_175: 8.37326001e-32 + art_sys_176: 3.10266405e-31 + art_sys_177: -4.77227511e-33 + art_sys_178: -8.56514282e-34 + art_sys_179: -5.27662856e-33 + art_sys_180: -5.47175714e-32 + art_sys_181: 9.70309980e-32 + art_sys_182: -6.96053311e-32 + art_sys_183: -1.85007250e-33 + art_sys_184: 1.79827959e-35 + art_sys_185: 1.00656324e-35 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -6932,191 +6932,191 @@ bins: RelativeStatFSR-: -2.48652081e-02 luminosity_uncertainty: 1.61163860e+00 uncorrelated_uncertainty: 0.619861 -- art_sys_1: -3.58258806e-37 - art_sys_2: -5.75859121e-25 - art_sys_3: -2.15523885e-24 - art_sys_4: -4.22563180e-05 - art_sys_5: -2.01752349e-19 - art_sys_6: 4.01531360e-22 - art_sys_7: -8.33547537e-04 - art_sys_8: -1.49042530e-19 - art_sys_9: 1.52303670e-03 - art_sys_10: -1.73292960e-20 - art_sys_11: 2.75321842e-19 +- art_sys_1: 2.19042990e-35 + art_sys_2: -8.24567910e-24 + art_sys_3: -3.45678292e-24 + art_sys_4: 4.22563180e-05 + art_sys_5: 5.80546317e-20 + art_sys_6: 2.64790896e-22 + art_sys_7: 8.33547537e-04 + art_sys_8: -6.44496158e-19 + art_sys_9: -1.52303670e-03 + art_sys_10: -1.05972271e-20 + art_sys_11: 6.48006791e-19 art_sys_12: 6.64353231e-04 - art_sys_13: -1.28528118e-19 + art_sys_13: -1.40122705e-18 art_sys_14: -4.76520781e-03 - art_sys_15: -3.16045543e-15 - art_sys_16: -8.12310928e-03 - art_sys_17: -1.92176942e-18 - art_sys_18: 2.80647454e-16 + art_sys_15: -2.38103727e-15 + art_sys_16: 8.12310928e-03 + art_sys_17: 6.52156403e-20 + art_sys_18: -1.86649184e-16 art_sys_19: 1.46300221e-02 - art_sys_20: -8.50347029e-18 - art_sys_21: -1.74995112e-16 - art_sys_22: -1.76095183e-02 - art_sys_23: -4.48164642e-18 - art_sys_24: -1.48787050e-16 - art_sys_25: -1.82834717e-14 - art_sys_26: 3.92878370e-14 - art_sys_27: 4.25098741e-15 - art_sys_28: -5.51699265e-03 - art_sys_29: 1.46420507e-01 - art_sys_30: -1.78506921e-15 - art_sys_31: -1.39726321e-15 - art_sys_32: 2.32236457e-17 - art_sys_33: 1.79547986e-16 - art_sys_34: -2.94557791e-15 - art_sys_35: -2.92326454e-13 - art_sys_36: 8.02988374e-12 - art_sys_37: -4.51935724e-02 - art_sys_38: 3.33417147e-17 - art_sys_39: -3.19272835e-13 - art_sys_40: -2.46047278e-11 - art_sys_41: -6.47305483e-03 - art_sys_42: -6.01059947e-03 - art_sys_43: -8.03442860e-19 - art_sys_44: 4.76353786e-18 - art_sys_45: 1.92990357e-17 - art_sys_46: -8.58242259e-12 - art_sys_47: -3.29520423e-12 - art_sys_48: 2.26207184e-03 - art_sys_49: 2.92531778e-15 - art_sys_50: -2.21509660e-15 - art_sys_51: -1.26439842e-16 - art_sys_52: 1.04040724e-16 - art_sys_53: 2.59249124e-17 - art_sys_54: -5.71876726e-18 - art_sys_55: 1.26287169e-17 - art_sys_56: 1.54590585e-14 - art_sys_57: 5.99140801e-12 - art_sys_58: 2.10473480e-17 - art_sys_59: -4.49596432e-18 - art_sys_60: -2.40148135e-04 - art_sys_61: 6.35752120e-13 - art_sys_62: 2.28612785e-11 - art_sys_63: -3.49071545e-13 - art_sys_64: -1.15149960e-04 - art_sys_65: -5.12102500e-20 - art_sys_66: -6.52315828e-19 - art_sys_67: 3.40769141e-13 - art_sys_68: 5.54481567e-17 - art_sys_69: -7.55646564e-16 - art_sys_70: -2.87588480e-05 - art_sys_71: -7.75429276e-12 - art_sys_72: 3.80668602e-15 - art_sys_73: 8.99732242e-18 - art_sys_74: 7.46214193e-18 - art_sys_75: -1.10346755e-18 - art_sys_76: -5.17390574e-21 - art_sys_77: -5.11775665e-16 - art_sys_78: -5.29442591e-15 - art_sys_79: 5.48201374e-19 - art_sys_80: 3.12068699e-15 - art_sys_81: -1.74619886e-19 - art_sys_82: -2.36723530e-19 - art_sys_83: -8.74522728e-18 - art_sys_84: -1.55767495e-19 - art_sys_85: -8.15038654e-20 - art_sys_86: -1.19437946e-17 - art_sys_87: 4.53970755e-13 - art_sys_88: -2.27260824e-18 - art_sys_89: -5.25918378e-20 - art_sys_90: 2.15002880e-07 - art_sys_91: 8.15548489e-14 - art_sys_92: -8.45502106e-08 - art_sys_93: 1.21829708e-14 - art_sys_94: 6.23124568e-08 - art_sys_95: -2.50658309e-15 - art_sys_96: -3.00877097e-19 - art_sys_97: 1.81797666e-14 - art_sys_98: -3.15857668e-08 - art_sys_99: 1.34346937e-13 - art_sys_100: 9.63820139e-15 - art_sys_101: -1.63258819e-08 - art_sys_102: 7.05424086e-09 - art_sys_103: -4.18900375e-16 - art_sys_104: 2.28552407e-13 - art_sys_105: 2.83956615e-09 - art_sys_106: -3.53517129e-14 - art_sys_107: -2.02318026e-19 - art_sys_108: 1.25885651e-20 - art_sys_109: 5.29360057e-20 - art_sys_110: -1.74685498e-15 - art_sys_111: -1.06290611e-09 - art_sys_112: -5.59701168e-17 - art_sys_113: -5.92664672e-22 - art_sys_114: 3.74419330e-10 - art_sys_115: 3.12080105e-17 - art_sys_116: -1.71315474e-15 - art_sys_117: -1.58463989e-10 - art_sys_118: -1.18230353e-16 - art_sys_119: 5.74696897e-11 - art_sys_120: 2.91693894e-15 - art_sys_121: -8.92570055e-18 - art_sys_122: 1.93791066e-11 - art_sys_123: 6.47022869e-12 - art_sys_124: 7.04361051e-18 - art_sys_125: 8.36937974e-16 - art_sys_126: -2.00035046e-17 - art_sys_127: -2.11430313e-12 - art_sys_128: -2.36672838e-17 - art_sys_129: 5.50363302e-13 - art_sys_130: -3.75808946e-17 - art_sys_131: 1.50696099e-16 - art_sys_132: -1.88379835e-13 - art_sys_133: -4.41193967e-16 - art_sys_134: -9.00455066e-19 - art_sys_135: 3.21033832e-14 - art_sys_136: -8.81982461e-17 - art_sys_137: 9.76048922e-21 - art_sys_138: 6.09083428e-15 - art_sys_139: -3.12096898e-15 - art_sys_140: -4.60440297e-16 - art_sys_141: 7.06485866e-17 - art_sys_142: 5.93333088e-18 - art_sys_143: 3.26392738e-21 - art_sys_144: 5.82611244e-21 - art_sys_145: 2.38237675e-22 - art_sys_146: 0.0 - art_sys_147: 2.41569923e-19 - art_sys_148: 8.36193230e-19 - art_sys_149: 8.36193230e-19 - art_sys_150: -1.80571360e-18 - art_sys_151: -1.80571360e-18 - art_sys_152: 3.22643361e-17 - art_sys_153: -1.72605296e-18 - art_sys_154: 2.64925824e-22 - art_sys_155: -9.10066809e-30 - art_sys_156: 3.64465244e-34 - art_sys_157: 1.49515403e-32 - art_sys_158: -0.0 - art_sys_159: -1.79802282e-20 - art_sys_160: -7.88070093e-22 - art_sys_161: 5.38144031e-22 - art_sys_162: -6.36932695e-23 - art_sys_163: 4.30582533e-20 - art_sys_164: 2.48772460e-20 - art_sys_165: -3.72564289e-21 - art_sys_166: 1.94019895e-29 - art_sys_167: 1.42517616e-29 - art_sys_168: -2.43391838e-30 - art_sys_169: -1.82127034e-29 - art_sys_170: 1.19427757e-29 - art_sys_171: 9.85906070e-29 - art_sys_172: -1.65672462e-27 - art_sys_173: -1.35010982e-28 - art_sys_174: -6.87815016e-29 - art_sys_175: 1.28008604e-33 - art_sys_176: -1.53206193e-29 - art_sys_177: 3.31917865e-30 - art_sys_178: -8.73892159e-31 - art_sys_179: 7.32247037e-32 - art_sys_180: 8.42431043e-31 - art_sys_181: 5.79702903e-33 - art_sys_182: 2.40483843e-33 - art_sys_183: -2.36784170e-35 - art_sys_184: 3.91976520e-36 - art_sys_185: 1.77408023e-36 + art_sys_20: -2.79233419e-18 + art_sys_21: -8.06385474e-16 + art_sys_22: 6.33930230e-19 + art_sys_23: -1.76095183e-02 + art_sys_24: 3.03361927e-16 + art_sys_25: 5.51699265e-03 + art_sys_26: 1.46420507e-01 + art_sys_27: 1.94196161e-15 + art_sys_28: 7.40166964e-14 + art_sys_29: 6.37018817e-16 + art_sys_30: 4.51935724e-02 + art_sys_31: -4.53726632e-15 + art_sys_32: -1.47226220e-17 + art_sys_33: -6.47305487e-03 + art_sys_34: -6.01059947e-03 + art_sys_35: 3.42391774e-15 + art_sys_36: -5.10097661e-15 + art_sys_37: 2.02427041e-15 + art_sys_38: 2.43615721e-16 + art_sys_39: -1.59037173e-16 + art_sys_40: 1.25579276e-16 + art_sys_41: -2.44830573e-16 + art_sys_42: -1.92577684e-17 + art_sys_43: 4.65006861e-18 + art_sys_44: -2.24148557e-18 + art_sys_45: 5.83321696e-19 + art_sys_46: 1.58877181e-17 + art_sys_47: 2.96535619e-12 + art_sys_48: -2.26207183e-03 + art_sys_49: 2.70840610e-11 + art_sys_50: -9.97221096e-19 + art_sys_51: 5.63971139e-19 + art_sys_52: -6.53132932e-12 + art_sys_53: -2.40148131e-04 + art_sys_54: 9.22028161e-13 + art_sys_55: -1.15149962e-04 + art_sys_56: 3.16321871e-13 + art_sys_57: 9.19234725e-18 + art_sys_58: 1.33578722e-19 + art_sys_59: 2.87588479e-05 + art_sys_60: 4.57001410e-12 + art_sys_61: -3.71440151e-19 + art_sys_62: 9.78014916e-14 + art_sys_63: -2.04928842e-13 + art_sys_64: 1.54415219e-15 + art_sys_65: -7.63719992e-18 + art_sys_66: -1.07075603e-16 + art_sys_67: -8.35933872e-17 + art_sys_68: -7.59730454e-19 + art_sys_69: 1.43186023e-19 + art_sys_70: -1.63708854e-19 + art_sys_71: 7.44392487e-20 + art_sys_72: -2.05330598e-20 + art_sys_73: 5.84384430e-21 + art_sys_74: 1.66603232e-16 + art_sys_75: -9.09770004e-21 + art_sys_76: 1.76760566e-17 + art_sys_77: 5.57527012e-18 + art_sys_78: -2.20244591e-18 + art_sys_79: -1.09150692e-22 + art_sys_80: 4.43436460e-19 + art_sys_81: -4.50798112e-16 + art_sys_82: 1.02480010e-12 + art_sys_83: -5.24080745e-19 + art_sys_84: -1.01084568e-19 + art_sys_85: -1.65290466e-19 + art_sys_86: 3.99491823e-20 + art_sys_87: 3.48329829e-17 + art_sys_88: -1.84912310e-17 + art_sys_89: 9.69181941e-21 + art_sys_90: 4.90699953e-17 + art_sys_91: -2.15003090e-07 + art_sys_92: -1.15168272e-21 + art_sys_93: 2.10665721e-21 + art_sys_94: -1.73770329e-18 + art_sys_95: -3.35923414e-14 + art_sys_96: 8.45507712e-08 + art_sys_97: 1.49734048e-15 + art_sys_98: -4.86080002e-15 + art_sys_99: 6.23123608e-08 + art_sys_100: -5.54312570e-14 + art_sys_101: -3.15854956e-08 + art_sys_102: 3.86341716e-16 + art_sys_103: -1.33514587e-14 + art_sys_104: 1.63260727e-08 + art_sys_105: 1.56208370e-20 + art_sys_106: -7.05420977e-09 + art_sys_107: -4.51705866e-16 + art_sys_108: -7.96366712e-20 + art_sys_109: 9.53463452e-21 + art_sys_110: -6.43462800e-15 + art_sys_111: 2.83966533e-09 + art_sys_112: 1.08113131e-15 + art_sys_113: 9.45398270e-14 + art_sys_114: 5.84826577e-22 + art_sys_115: -1.06290435e-09 + art_sys_116: 2.91508556e-16 + art_sys_117: 1.96812499e-20 + art_sys_118: 3.74410868e-10 + art_sys_119: 1.29977517e-16 + art_sys_120: -1.31447036e-15 + art_sys_121: 2.62721284e-22 + art_sys_122: -1.58441050e-10 + art_sys_123: -1.80965811e-17 + art_sys_124: 5.75207996e-11 + art_sys_125: -3.61497248e-22 + art_sys_126: -3.78598332e-16 + art_sys_127: 7.45818662e-19 + art_sys_128: -1.93768553e-11 + art_sys_129: 5.60509355e-22 + art_sys_130: -7.44347904e-18 + art_sys_131: -8.20189783e-21 + art_sys_132: -6.46228785e-12 + art_sys_133: 1.42917290e-17 + art_sys_134: -5.96110490e-17 + art_sys_135: 2.11589951e-12 + art_sys_136: 1.48107786e-21 + art_sys_137: -5.57516776e-19 + art_sys_138: 5.51424999e-13 + art_sys_139: 1.20772267e-17 + art_sys_140: -1.23976391e-21 + art_sys_141: 3.74723001e-18 + art_sys_142: 1.86782973e-13 + art_sys_143: 3.44500018e-18 + art_sys_144: -5.86871937e-20 + art_sys_145: 3.14169169e-14 + art_sys_146: -1.91811962e-18 + art_sys_147: 2.17584069e-20 + art_sys_148: -7.36573937e-22 + art_sys_149: -3.18056242e-15 + art_sys_150: 9.15449976e-17 + art_sys_151: 4.94689154e-18 + art_sys_152: -8.64598533e-20 + art_sys_153: 1.26187233e-17 + art_sys_154: -8.42544281e-17 + art_sys_155: -4.61669485e-20 + art_sys_156: 0.0 + art_sys_157: -3.52777550e-17 + art_sys_158: 0.0 + art_sys_159: 5.60911928e-18 + art_sys_160: -7.30051207e-19 + art_sys_161: -6.27495338e-19 + art_sys_162: -6.27495338e-19 + art_sys_163: -6.47924167e-19 + art_sys_164: -6.47924167e-19 + art_sys_165: 7.30824115e-33 + art_sys_166: -2.42577813e-33 + art_sys_167: -0.0 + art_sys_168: 7.80779736e-30 + art_sys_169: 1.29481124e-28 + art_sys_170: -3.46321932e-29 + art_sys_171: -2.45802692e-27 + art_sys_172: 2.95484577e-28 + art_sys_173: 2.70505214e-29 + art_sys_174: -2.66948055e-29 + art_sys_175: 3.89781773e-31 + art_sys_176: -3.97703238e-31 + art_sys_177: 1.04848729e-32 + art_sys_178: -4.32017097e-33 + art_sys_179: 1.40652364e-32 + art_sys_180: 1.45879075e-31 + art_sys_181: -3.39534840e-31 + art_sys_182: -9.61041297e-33 + art_sys_183: 1.15561966e-33 + art_sys_184: -2.68770961e-35 + art_sys_185: -2.67308101e-35 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -7223,191 +7223,191 @@ bins: RelativeStatFSR-: -1.47270705e-02 luminosity_uncertainty: 8.85250600e-01 uncorrelated_uncertainty: 0.340481 -- art_sys_1: 1.45561206e-37 - art_sys_2: 2.21869672e-25 - art_sys_3: -1.03370068e-25 - art_sys_4: 1.62807157e-05 - art_sys_5: -4.01706127e-20 - art_sys_6: -1.57828260e-22 - art_sys_7: -1.41548636e-04 - art_sys_8: -7.40124126e-20 - art_sys_9: 3.26385127e-04 - art_sys_10: -3.93066462e-21 - art_sys_11: -7.27125696e-19 +- art_sys_1: -8.43631565e-36 + art_sys_2: 3.17693456e-24 + art_sys_3: 5.25626224e-25 + art_sys_4: -1.62807157e-05 + art_sys_5: 9.37563351e-21 + art_sys_6: -1.02527665e-22 + art_sys_7: 1.41548636e-04 + art_sys_8: -1.32901196e-19 + art_sys_9: -3.26385127e-04 + art_sys_10: -7.81765115e-22 + art_sys_11: 1.88572331e-20 art_sys_12: 2.02432443e-04 - art_sys_13: 2.49116623e-20 + art_sys_13: 4.21468768e-19 art_sys_14: 1.44630472e-03 - art_sys_15: -8.18796565e-17 - art_sys_16: -4.59113554e-03 - art_sys_17: 7.46470602e-20 - art_sys_18: -1.45582389e-16 + art_sys_15: 4.95983882e-17 + art_sys_16: 4.59113554e-03 + art_sys_17: 1.77984260e-19 + art_sys_18: 2.39577394e-17 art_sys_19: -6.42948723e-03 - art_sys_20: 8.86734340e-19 - art_sys_21: -7.24352767e-18 - art_sys_22: 2.26209936e-03 - art_sys_23: -1.38025502e-19 - art_sys_24: -2.77491537e-17 - art_sys_25: 6.48673997e-14 - art_sys_26: -3.73162161e-14 - art_sys_27: -7.03833192e-15 - art_sys_28: -1.51148241e-02 - art_sys_29: 8.34449412e-03 - art_sys_30: 6.44676952e-15 - art_sys_31: 3.50111221e-16 - art_sys_32: 1.09892856e-16 - art_sys_33: -1.01574554e-15 - art_sys_34: -4.52827954e-16 - art_sys_35: -1.60093666e-13 - art_sys_36: 5.33800390e-12 - art_sys_37: -3.00433775e-02 - art_sys_38: -1.53572784e-17 - art_sys_39: -7.78056034e-13 - art_sys_40: 1.27298277e-10 - art_sys_41: 3.34903184e-02 - art_sys_42: 1.32871390e-02 - art_sys_43: -2.58712751e-17 - art_sys_44: 8.10193231e-18 - art_sys_45: 2.00683666e-17 - art_sys_46: 1.88040037e-11 - art_sys_47: 1.07201514e-11 - art_sys_48: -7.35909624e-03 - art_sys_49: 2.81507290e-15 - art_sys_50: 7.28602660e-15 - art_sys_51: 8.49269862e-17 - art_sys_52: -3.26805291e-16 - art_sys_53: -7.14384200e-17 - art_sys_54: 1.00072634e-17 - art_sys_55: -4.46693988e-17 - art_sys_56: -4.75667666e-14 - art_sys_57: -1.94914289e-11 - art_sys_58: -6.79936961e-17 - art_sys_59: 1.49817232e-17 - art_sys_60: 7.38948614e-04 - art_sys_61: -2.70738544e-12 - art_sys_62: -7.45347646e-11 - art_sys_63: 1.19664737e-12 - art_sys_64: 3.74558009e-04 - art_sys_65: 1.91311823e-19 - art_sys_66: 2.24318037e-18 - art_sys_67: -1.10702459e-12 - art_sys_68: -1.63171187e-16 - art_sys_69: 2.62206959e-15 - art_sys_70: 9.85876397e-05 - art_sys_71: 2.65149049e-11 - art_sys_72: -2.86861004e-14 - art_sys_73: -3.35972966e-17 - art_sys_74: -2.28050900e-17 - art_sys_75: 2.18327379e-18 - art_sys_76: 1.69646102e-20 - art_sys_77: 1.67011553e-14 - art_sys_78: 1.81818003e-14 - art_sys_79: -1.65588737e-18 - art_sys_80: -1.11664781e-14 - art_sys_81: 4.68570232e-19 - art_sys_82: 7.42270701e-19 - art_sys_83: 3.22085464e-17 - art_sys_84: 4.84266026e-19 - art_sys_85: 2.33517427e-19 - art_sys_86: 4.41619370e-17 - art_sys_87: -1.55016852e-12 - art_sys_88: 8.41284544e-18 - art_sys_89: 2.03613949e-19 - art_sys_90: -6.31219259e-07 - art_sys_91: -2.91870751e-13 - art_sys_92: 3.00627879e-07 - art_sys_93: -4.84770859e-14 - art_sys_94: -2.12256989e-07 - art_sys_95: 9.16711799e-15 - art_sys_96: 1.11387704e-18 - art_sys_97: -6.59955326e-14 - art_sys_98: 1.09899085e-07 - art_sys_99: -4.44354383e-13 - art_sys_100: -3.54074573e-14 - art_sys_101: 5.82288786e-08 - art_sys_102: -2.52481270e-08 - art_sys_103: 1.53485806e-15 - art_sys_104: -7.62686434e-13 - art_sys_105: -1.03055936e-08 - art_sys_106: 1.28917323e-13 - art_sys_107: 7.49822456e-19 - art_sys_108: -4.63198200e-20 - art_sys_109: -1.98945318e-19 - art_sys_110: 6.45862566e-15 - art_sys_111: 3.87315993e-09 - art_sys_112: 2.08702774e-16 - art_sys_113: 2.50688235e-21 - art_sys_114: -1.37228478e-09 - art_sys_115: -1.15524423e-16 - art_sys_116: 6.33419163e-15 - art_sys_117: 5.82586540e-10 - art_sys_118: 4.37715075e-16 - art_sys_119: -2.11814509e-10 - art_sys_120: -1.07848592e-14 - art_sys_121: 3.30852006e-17 - art_sys_122: -7.15954085e-11 - art_sys_123: -2.39329138e-11 - art_sys_124: -2.61108560e-17 - art_sys_125: -3.10010448e-15 - art_sys_126: 7.41535859e-17 - art_sys_127: 7.82875967e-12 - art_sys_128: 8.77895110e-17 - art_sys_129: -2.03955293e-12 - art_sys_130: 1.39363463e-16 - art_sys_131: -5.58736044e-16 - art_sys_132: 6.98358852e-13 - art_sys_133: 1.63559450e-15 - art_sys_134: 3.33815579e-18 - art_sys_135: -1.19073543e-13 - art_sys_136: 3.27077412e-16 - art_sys_137: -3.61969807e-20 - art_sys_138: -2.14795779e-14 - art_sys_139: 1.15793119e-14 - art_sys_140: 1.70827824e-15 - art_sys_141: -2.62079217e-16 - art_sys_142: -2.20107073e-17 - art_sys_143: -1.21106553e-20 - art_sys_144: -2.16139787e-20 - art_sys_145: -8.81513603e-22 - art_sys_146: -0.0 - art_sys_147: -8.94455197e-19 - art_sys_148: -3.11722213e-18 - art_sys_149: -3.11722213e-18 - art_sys_150: 6.71250064e-18 - art_sys_151: 6.71250064e-18 - art_sys_152: -1.19481086e-16 - art_sys_153: 6.38786556e-18 - art_sys_154: -9.78316415e-22 - art_sys_155: 3.36924520e-29 - art_sys_156: -1.35185468e-33 - art_sys_157: -5.52726309e-32 - art_sys_158: 0.0 - art_sys_159: 6.48230636e-20 - art_sys_160: 2.86786269e-21 - art_sys_161: -1.99787004e-21 - art_sys_162: 2.61529220e-22 - art_sys_163: -1.59906781e-19 - art_sys_164: -9.22383057e-20 - art_sys_165: 1.37910826e-20 - art_sys_166: -2.92269440e-29 - art_sys_167: -7.22850906e-29 - art_sys_168: 4.83370612e-32 - art_sys_169: -6.05740661e-30 - art_sys_170: -6.99195095e-30 - art_sys_171: 5.30921683e-29 - art_sys_172: -8.57707971e-28 - art_sys_173: 1.79410192e-28 - art_sys_174: 3.26411403e-30 - art_sys_175: -4.74978346e-33 - art_sys_176: -2.39170567e-30 - art_sys_177: 1.81631425e-30 - art_sys_178: -6.15410461e-31 - art_sys_179: 2.22077441e-31 - art_sys_180: 8.08112463e-32 - art_sys_181: -6.31957364e-33 - art_sys_182: -8.69954381e-34 - art_sys_183: -2.84696600e-35 - art_sys_184: -1.40345339e-35 - art_sys_185: -6.57923938e-36 + art_sys_20: 1.75949087e-19 + art_sys_21: -1.07941532e-16 + art_sys_22: -3.22948563e-19 + art_sys_23: 2.26209936e-03 + art_sys_24: -2.10925871e-19 + art_sys_25: 1.51148241e-02 + art_sys_26: 8.34449412e-03 + art_sys_27: 5.32205979e-16 + art_sys_28: 4.05908908e-14 + art_sys_29: 3.40002789e-16 + art_sys_30: 3.00433775e-02 + art_sys_31: -1.62688334e-13 + art_sys_32: -2.67453018e-17 + art_sys_33: 3.34903185e-02 + art_sys_34: 1.32871390e-02 + art_sys_35: 4.92595937e-14 + art_sys_36: 1.61511539e-14 + art_sys_37: -6.66130022e-15 + art_sys_38: -8.85694190e-16 + art_sys_39: 5.38437907e-16 + art_sys_40: -4.17620902e-16 + art_sys_41: 7.82110741e-16 + art_sys_42: 3.82834068e-17 + art_sys_43: -5.27609175e-17 + art_sys_44: -1.62326691e-17 + art_sys_45: -3.27747554e-17 + art_sys_46: 1.46814564e-18 + art_sys_47: -9.64705851e-12 + art_sys_48: 7.35909623e-03 + art_sys_49: -8.81102110e-11 + art_sys_50: 4.67875229e-18 + art_sys_51: 2.23591820e-18 + art_sys_52: 2.12441982e-11 + art_sys_53: 7.38948602e-04 + art_sys_54: -2.85257102e-12 + art_sys_55: 3.74558018e-04 + art_sys_56: -1.02618036e-12 + art_sys_57: -3.29894512e-17 + art_sys_58: -4.33824187e-19 + art_sys_59: -9.85876395e-05 + art_sys_60: -1.56898943e-11 + art_sys_61: 1.21598169e-18 + art_sys_62: -2.99901881e-13 + art_sys_63: 6.63356938e-13 + art_sys_64: -4.91626634e-15 + art_sys_65: -1.83444274e-16 + art_sys_66: -7.98233504e-17 + art_sys_67: -2.99243758e-17 + art_sys_68: 2.50959414e-18 + art_sys_69: -5.73701631e-19 + art_sys_70: 4.91522837e-19 + art_sys_71: -2.82563522e-19 + art_sys_72: 7.03029228e-20 + art_sys_73: -4.10206336e-20 + art_sys_74: -6.00260147e-16 + art_sys_75: 5.59634799e-21 + art_sys_76: -5.64300797e-17 + art_sys_77: -2.00779124e-17 + art_sys_78: 7.21879193e-18 + art_sys_79: 4.64587240e-20 + art_sys_80: -1.55774325e-18 + art_sys_81: 1.60317899e-15 + art_sys_82: -3.42912130e-12 + art_sys_83: 1.49478566e-18 + art_sys_84: 3.13100966e-19 + art_sys_85: 5.19533941e-19 + art_sys_86: -1.24268996e-19 + art_sys_87: -1.22960890e-16 + art_sys_88: 6.70217173e-17 + art_sys_89: -2.35596832e-20 + art_sys_90: -1.81699225e-16 + art_sys_91: 6.31219706e-07 + art_sys_92: 5.90809327e-22 + art_sys_93: -7.23840205e-21 + art_sys_94: 6.42309891e-18 + art_sys_95: 1.11446094e-13 + art_sys_96: -3.00629709e-07 + art_sys_97: 9.31617757e-15 + art_sys_98: 1.52137953e-14 + art_sys_99: -2.12256646e-07 + art_sys_100: 1.93520003e-13 + art_sys_101: 1.09898120e-07 + art_sys_102: -1.31453198e-15 + art_sys_103: 4.59981188e-14 + art_sys_104: -5.82295642e-08 + art_sys_105: -5.73776374e-20 + art_sys_106: 2.52480209e-08 + art_sys_107: 1.66993806e-15 + art_sys_108: 2.93451353e-19 + art_sys_109: -3.48622081e-20 + art_sys_110: 2.36733954e-14 + art_sys_111: -1.03059440e-08 + art_sys_112: -3.97261246e-15 + art_sys_113: -3.45271234e-13 + art_sys_114: -2.13793159e-21 + art_sys_115: 3.87315334e-09 + art_sys_116: -1.07706932e-15 + art_sys_117: -7.15729183e-20 + art_sys_118: -1.37225358e-09 + art_sys_119: -4.80986397e-16 + art_sys_120: 4.86463797e-15 + art_sys_121: -1.46076137e-22 + art_sys_122: 5.82502261e-10 + art_sys_123: 6.70930560e-17 + art_sys_124: -2.12002317e-10 + art_sys_125: 1.30102766e-21 + art_sys_126: 1.40173036e-15 + art_sys_127: -2.76876794e-18 + art_sys_128: 7.15870556e-11 + art_sys_129: -2.10134863e-21 + art_sys_130: 2.76163877e-17 + art_sys_131: 3.04146277e-20 + art_sys_132: 2.39035812e-11 + art_sys_133: -5.30247542e-17 + art_sys_134: 2.21218163e-16 + art_sys_135: -7.83467108e-12 + art_sys_136: -5.50476817e-21 + art_sys_137: 2.06917731e-18 + art_sys_138: -2.04349262e-12 + art_sys_139: -4.48039135e-17 + art_sys_140: 4.60085097e-21 + art_sys_141: -1.38890620e-17 + art_sys_142: -6.92444199e-13 + art_sys_143: -1.27762030e-17 + art_sys_144: 2.17546424e-19 + art_sys_145: -1.16531347e-13 + art_sys_146: 7.11448113e-18 + art_sys_147: -8.07078445e-20 + art_sys_148: 2.71882341e-21 + art_sys_149: 1.18010179e-14 + art_sys_150: -3.39662635e-16 + art_sys_151: -1.83516637e-17 + art_sys_152: 3.20777223e-19 + art_sys_153: -4.68144467e-17 + art_sys_154: 3.10178213e-16 + art_sys_155: 1.71285870e-19 + art_sys_156: -0.0 + art_sys_157: 1.30864496e-16 + art_sys_158: -0.0 + art_sys_159: -2.08085272e-17 + art_sys_160: 2.70819190e-18 + art_sys_161: 2.32797399e-18 + art_sys_162: 2.32797399e-18 + art_sys_163: 2.40368860e-18 + art_sys_164: 2.40368860e-18 + art_sys_165: -2.71124524e-32 + art_sys_166: 8.99927111e-33 + art_sys_167: 0.0 + art_sys_168: -2.16195732e-28 + art_sys_169: 1.45286660e-28 + art_sys_170: -4.06166593e-28 + art_sys_171: -2.99004409e-27 + art_sys_172: -1.09341248e-28 + art_sys_173: -2.68330765e-29 + art_sys_174: 1.54679184e-29 + art_sys_175: 2.48293864e-30 + art_sys_176: -2.66140691e-31 + art_sys_177: -2.49581393e-32 + art_sys_178: 1.99753205e-32 + art_sys_179: -5.21856774e-32 + art_sys_180: -5.41179775e-31 + art_sys_181: 1.39654031e-30 + art_sys_182: 1.38247854e-31 + art_sys_183: -6.54622382e-35 + art_sys_184: 7.53094653e-35 + art_sys_185: 9.90800465e-35 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -7514,191 +7514,191 @@ bins: RelativeStatFSR-: -8.93267573e-03 luminosity_uncertainty: 4.98937400e-01 uncorrelated_uncertainty: 1.91899000e-01 -- art_sys_1: 3.28974371e-38 - art_sys_2: 5.03653189e-26 - art_sys_3: -1.43917911e-26 - art_sys_4: 3.69578857e-06 - art_sys_5: -5.42522848e-21 - art_sys_6: -3.57443758e-23 - art_sys_7: -1.86157521e-05 - art_sys_8: -4.35183174e-21 - art_sys_9: 4.51006397e-05 - art_sys_10: -5.44930806e-22 - art_sys_11: -1.08597832e-19 +- art_sys_1: -1.91509191e-36 + art_sys_2: 7.21177048e-25 + art_sys_3: 1.20996621e-25 + art_sys_4: -3.69578857e-06 + art_sys_5: 1.30332333e-21 + art_sys_6: -2.32476930e-23 + art_sys_7: 1.86157521e-05 + art_sys_8: -1.30177475e-20 + art_sys_9: -4.51006397e-05 + art_sys_10: -1.80165047e-22 + art_sys_11: -1.72715183e-20 art_sys_12: 2.12328423e-05 - art_sys_13: 8.96340893e-21 + art_sys_13: 1.33709671e-19 art_sys_14: 4.57284220e-04 - art_sys_15: 2.07149290e-18 - art_sys_16: -4.72403197e-04 - art_sys_17: 9.41214336e-20 - art_sys_18: 1.41838910e-16 + art_sys_15: 3.04152312e-18 + art_sys_16: 4.72403197e-04 + art_sys_17: 2.95373556e-20 + art_sys_18: 1.24819252e-15 art_sys_19: -1.74535513e-03 - art_sys_20: 5.84956130e-19 - art_sys_21: 5.73636755e-18 - art_sys_22: 1.30039188e-03 - art_sys_23: 3.17758574e-19 - art_sys_24: -4.19781070e-19 - art_sys_25: -5.14921660e-14 - art_sys_26: -2.50215686e-14 - art_sys_27: 2.01197501e-14 - art_sys_28: -6.93468702e-04 - art_sys_29: -1.35642782e-02 - art_sys_30: -4.53026216e-15 - art_sys_31: -1.39485228e-15 - art_sys_32: 6.34733242e-16 - art_sys_33: 1.92878142e-16 - art_sys_34: 2.66615750e-16 - art_sys_35: 2.08350833e-14 - art_sys_36: -4.48209245e-13 - art_sys_37: 2.52256748e-03 - art_sys_38: 7.03633840e-16 - art_sys_39: -2.69782537e-13 - art_sys_40: 1.09477729e-10 - art_sys_41: 2.88018840e-02 - art_sys_42: -1.72128100e-02 - art_sys_43: 2.50701399e-17 - art_sys_44: -4.79410844e-18 - art_sys_45: -3.08028991e-18 - art_sys_46: -2.42748520e-11 - art_sys_47: -1.38271776e-11 - art_sys_48: 9.49217945e-03 - art_sys_49: -1.38394540e-15 - art_sys_50: -1.53958933e-14 - art_sys_51: -4.87580356e-16 - art_sys_52: 9.94394576e-16 - art_sys_53: 1.64407189e-16 - art_sys_54: -1.83444460e-17 - art_sys_55: 7.61648883e-17 - art_sys_56: 1.17059623e-13 - art_sys_57: 2.51447238e-11 - art_sys_58: 1.71596800e-16 - art_sys_59: -3.49606922e-17 - art_sys_60: -1.81858124e-03 - art_sys_61: -9.75957673e-12 - art_sys_62: 1.66556330e-10 - art_sys_63: -3.14073586e-12 - art_sys_64: -8.39999645e-04 - art_sys_65: -4.80036849e-19 - art_sys_66: -5.89243780e-18 - art_sys_67: 1.64189307e-12 - art_sys_68: 5.99851621e-16 - art_sys_69: -7.87442992e-15 - art_sys_70: -2.58750531e-04 - art_sys_71: -7.00250250e-11 - art_sys_72: -1.53740026e-14 - art_sys_73: 9.09897414e-17 - art_sys_74: 7.82834572e-17 - art_sys_75: -1.07079315e-17 - art_sys_76: -5.83032583e-20 - art_sys_77: 3.22187227e-14 - art_sys_78: -6.01013673e-14 - art_sys_79: 5.41046840e-18 - art_sys_80: 3.58536785e-14 - art_sys_81: -1.79316809e-18 - art_sys_82: -2.58293396e-18 - art_sys_83: -1.06190793e-16 - art_sys_84: -1.64463371e-18 - art_sys_85: -8.90614040e-19 - art_sys_86: -1.45563841e-16 - art_sys_87: 4.75399197e-12 - art_sys_88: -2.77561511e-17 - art_sys_89: -6.77541219e-19 - art_sys_90: 2.34692285e-06 - art_sys_91: 9.59426352e-13 - art_sys_92: -8.73668536e-07 - art_sys_93: 1.14402691e-13 - art_sys_94: 7.07350075e-07 - art_sys_95: -3.01685981e-14 - art_sys_96: -3.67337614e-18 - art_sys_97: 2.17109986e-13 - art_sys_98: -3.58466061e-07 - art_sys_99: 1.15163281e-12 - art_sys_100: 1.16614365e-13 - art_sys_101: -1.90091734e-07 - art_sys_102: 8.30444587e-08 - art_sys_103: -5.05343607e-15 - art_sys_104: 2.21005735e-12 - art_sys_105: 3.37860504e-08 - art_sys_106: -4.24460285e-13 - art_sys_107: -2.47334745e-18 - art_sys_108: 1.53022854e-19 - art_sys_109: 6.58829374e-19 - art_sys_110: -2.12930730e-14 - art_sys_111: -1.27557186e-08 - art_sys_112: -6.88547197e-16 - art_sys_113: -8.12637042e-21 - art_sys_114: 4.51546696e-09 - art_sys_115: 3.80958989e-16 - art_sys_116: -2.08837945e-14 - art_sys_117: -1.91923658e-09 - art_sys_118: -1.44343766e-15 - art_sys_119: 6.98136962e-10 - art_sys_120: 3.55625584e-14 - art_sys_121: -1.09136134e-16 - art_sys_122: 2.36000173e-10 - art_sys_123: 7.89260836e-11 - art_sys_124: 8.61287650e-17 - art_sys_125: 1.02239567e-14 - art_sys_126: -2.44598254e-16 - art_sys_127: -2.58180246e-11 - art_sys_128: -2.89617358e-16 - art_sys_129: 6.72718234e-12 - art_sys_130: -4.59741737e-16 - art_sys_131: 1.84312821e-15 - art_sys_132: -2.30366429e-12 - art_sys_133: -5.39532112e-15 - art_sys_134: -1.10115060e-17 - art_sys_135: 3.92799308e-13 - art_sys_136: -1.07896024e-15 - art_sys_137: 1.19403550e-19 - art_sys_138: 7.00181337e-14 - art_sys_139: -3.81965042e-14 - art_sys_140: -5.63505668e-15 - art_sys_141: 8.64528440e-16 - art_sys_142: 7.25712111e-17 - art_sys_143: 3.99493350e-20 - art_sys_144: 7.12990469e-20 - art_sys_145: 2.93461295e-21 - art_sys_146: 0.0 - art_sys_147: 2.95357264e-18 - art_sys_148: 1.02405654e-17 - art_sys_149: 1.02405654e-17 - art_sys_150: -2.21445458e-17 - art_sys_151: -2.21445458e-17 - art_sys_152: 3.94132614e-16 - art_sys_153: -2.10729971e-17 - art_sys_154: 3.22524325e-21 - art_sys_155: -1.11139440e-28 - art_sys_156: 4.45975906e-33 - art_sys_157: 1.82265727e-31 - art_sys_158: -0.0 - art_sys_159: -2.12218836e-19 - art_sys_160: -9.43165038e-21 - art_sys_161: 6.59326093e-21 - art_sys_162: -8.14850047e-22 - art_sys_163: 5.27507876e-19 - art_sys_164: 3.04184576e-19 - art_sys_165: -4.54887417e-20 - art_sys_166: 1.50424420e-28 - art_sys_167: 2.25884683e-28 - art_sys_168: -4.47061080e-30 - art_sys_169: 7.69122151e-30 - art_sys_170: 2.89182903e-29 - art_sys_171: -1.62516052e-28 - art_sys_172: 2.97580300e-27 - art_sys_173: -3.24591442e-28 - art_sys_174: -3.27420505e-30 - art_sys_175: 1.56483755e-32 - art_sys_176: -4.13497196e-30 - art_sys_177: 1.44904543e-30 - art_sys_178: -1.79834139e-31 - art_sys_179: -5.31833612e-31 - art_sys_180: -8.47360431e-32 - art_sys_181: 2.92267000e-33 - art_sys_182: 5.04781323e-33 - art_sys_183: 5.24367822e-35 - art_sys_184: 4.62773222e-35 - art_sys_185: 2.17026206e-35 + art_sys_20: 1.52156424e-19 + art_sys_21: 6.38605544e-17 + art_sys_22: -4.89686476e-20 + art_sys_23: 1.30039188e-03 + art_sys_24: 9.22178703e-16 + art_sys_25: 6.93468702e-04 + art_sys_26: -1.35642782e-02 + art_sys_27: -1.66875860e-16 + art_sys_28: -5.09123953e-15 + art_sys_29: -4.83814465e-17 + art_sys_30: -2.52256748e-03 + art_sys_31: -7.81904409e-14 + art_sys_32: -7.15064432e-18 + art_sys_33: 2.88018839e-02 + art_sys_34: -1.72128100e-02 + art_sys_35: -8.90427833e-14 + art_sys_36: -2.28679924e-14 + art_sys_37: 9.74269109e-15 + art_sys_38: 9.28273523e-16 + art_sys_39: -2.86405201e-16 + art_sys_40: 8.45287483e-16 + art_sys_41: -9.60156512e-16 + art_sys_42: -9.03050876e-18 + art_sys_43: 4.86606144e-17 + art_sys_44: 1.35472801e-17 + art_sys_45: 4.90725381e-17 + art_sys_46: 7.59082005e-18 + art_sys_47: 1.24433357e-11 + art_sys_48: -9.49217944e-03 + art_sys_49: 1.13672956e-10 + art_sys_50: -1.00402436e-18 + art_sys_51: -3.22461259e-18 + art_sys_52: -2.73942324e-11 + art_sys_53: -1.81858121e-03 + art_sys_54: 6.95437974e-12 + art_sys_55: -8.39999665e-04 + art_sys_56: 1.36629626e-12 + art_sys_57: 4.25455151e-17 + art_sys_58: 9.81318851e-19 + art_sys_59: 2.58750531e-04 + art_sys_60: 4.10311389e-11 + art_sys_61: -3.87793882e-18 + art_sys_62: 7.43156350e-13 + art_sys_63: -1.93176582e-12 + art_sys_64: -2.62962143e-15 + art_sys_65: 2.38957804e-15 + art_sys_66: -5.09421821e-16 + art_sys_67: 6.97315538e-17 + art_sys_68: -1.19884654e-17 + art_sys_69: 2.32102727e-18 + art_sys_70: -1.71874318e-18 + art_sys_71: 1.02872855e-18 + art_sys_72: -2.41254705e-19 + art_sys_73: 8.97859483e-20 + art_sys_74: 1.71254990e-15 + art_sys_75: -5.15123233e-20 + art_sys_76: 1.98473729e-16 + art_sys_77: 6.21884150e-17 + art_sys_78: -2.34053878e-17 + art_sys_79: -9.12304304e-20 + art_sys_80: 4.94379968e-18 + art_sys_81: -4.65812795e-15 + art_sys_82: 1.07856147e-11 + art_sys_83: -5.78912320e-18 + art_sys_84: -8.28272552e-19 + art_sys_85: -1.89072870e-18 + art_sys_86: 4.26120700e-19 + art_sys_87: 4.00479187e-16 + art_sys_88: -2.19947632e-16 + art_sys_89: 1.14372329e-19 + art_sys_90: 6.00147456e-16 + art_sys_91: -2.34692545e-06 + art_sys_92: -1.71252346e-20 + art_sys_93: 2.26261166e-20 + art_sys_94: -2.11841924e-17 + art_sys_95: -3.73487835e-13 + art_sys_96: 8.73674691e-07 + art_sys_97: -9.84904348e-14 + art_sys_98: -4.89415429e-14 + art_sys_99: 7.07349114e-07 + art_sys_100: -6.31635559e-13 + art_sys_101: -3.58462920e-07 + art_sys_102: 4.20058491e-15 + art_sys_103: -1.48215025e-13 + art_sys_104: 1.90093985e-07 + art_sys_105: 1.88749306e-19 + art_sys_106: -8.30441321e-08 + art_sys_107: -5.50650188e-15 + art_sys_108: -9.67650685e-19 + art_sys_109: 1.14699423e-19 + art_sys_110: -7.79978046e-14 + art_sys_111: 3.37871996e-08 + art_sys_112: 1.30881997e-14 + art_sys_113: 1.15140830e-12 + art_sys_114: 6.98307773e-21 + art_sys_115: -1.27556970e-08 + art_sys_116: 3.55038012e-15 + art_sys_117: 2.35071024e-19 + art_sys_118: 4.51536404e-09 + art_sys_119: 1.58623609e-15 + art_sys_120: -1.60455751e-14 + art_sys_121: 4.21733525e-22 + art_sys_122: -1.91895892e-09 + art_sys_123: -2.21326701e-16 + art_sys_124: 6.98755512e-10 + art_sys_125: -4.24171272e-21 + art_sys_126: -4.62239172e-15 + art_sys_127: 9.13647060e-18 + art_sys_128: -2.35972625e-10 + art_sys_129: 6.91745897e-21 + art_sys_130: -9.11049603e-17 + art_sys_131: -1.00352786e-19 + art_sys_132: -7.88293939e-11 + art_sys_133: 1.74920329e-16 + art_sys_134: -7.29794334e-16 + art_sys_135: 2.58375230e-11 + art_sys_136: 1.81730013e-20 + art_sys_137: -6.82357596e-18 + art_sys_138: 6.74017658e-12 + art_sys_139: 1.47796025e-16 + art_sys_140: -1.51771724e-20 + art_sys_141: 4.58152921e-17 + art_sys_142: 2.28415661e-12 + art_sys_143: 4.21454240e-17 + art_sys_144: -7.17569287e-19 + art_sys_145: 3.84414924e-13 + art_sys_146: -2.34686937e-17 + art_sys_147: 2.66237184e-19 + art_sys_148: -8.97397869e-21 + art_sys_149: -3.89281046e-14 + art_sys_150: 1.12044348e-15 + art_sys_151: 6.05501444e-17 + art_sys_152: -1.05814535e-18 + art_sys_153: 1.54437405e-16 + art_sys_154: -1.06108029e-15 + art_sys_155: -5.64942266e-19 + art_sys_156: 0.0 + art_sys_157: -4.31860526e-16 + art_sys_158: 0.0 + art_sys_159: 6.86543369e-17 + art_sys_160: -8.93679097e-18 + art_sys_161: -7.67930410e-18 + art_sys_162: -7.67930410e-18 + art_sys_163: -7.93005934e-18 + art_sys_164: -7.93005934e-18 + art_sys_165: 8.94456803e-32 + art_sys_166: -2.96890715e-32 + art_sys_167: -0.0 + art_sys_168: 4.32968708e-28 + art_sys_169: 5.72593907e-28 + art_sys_170: -7.24391035e-28 + art_sys_171: -4.12783772e-27 + art_sys_172: -7.11645992e-29 + art_sys_173: 1.29410794e-29 + art_sys_174: -5.42332938e-30 + art_sys_175: 7.65576838e-30 + art_sys_176: -2.36849617e-30 + art_sys_177: 1.02529218e-31 + art_sys_178: -9.08376535e-32 + art_sys_179: 1.72099601e-31 + art_sys_180: 1.78550429e-30 + art_sys_181: -4.39796038e-30 + art_sys_182: -7.00666489e-31 + art_sys_183: -5.63237097e-33 + art_sys_184: -2.34398565e-34 + art_sys_185: -3.26610038e-34 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -7805,191 +7805,191 @@ bins: RelativeStatFSR-: -5.52135761e-03 luminosity_uncertainty: 2.86829400e-01 uncorrelated_uncertainty: 0.110319 -- art_sys_1: 3.86677062e-39 - art_sys_2: 5.91987491e-27 - art_sys_3: -1.58284886e-27 - art_sys_4: 4.34398244e-07 - art_sys_5: -6.26283868e-22 - art_sys_6: -4.20012569e-24 - art_sys_7: -2.23039720e-06 - art_sys_8: -1.17273507e-21 - art_sys_9: 4.60379320e-06 - art_sys_10: -5.67167378e-23 - art_sys_11: 1.31094207e-20 +- art_sys_1: -2.25094264e-37 + art_sys_2: 8.47662243e-26 + art_sys_3: 1.33155015e-26 + art_sys_4: -4.34398244e-07 + art_sys_5: 1.52771280e-22 + art_sys_6: -2.75123373e-24 + art_sys_7: 2.23039720e-06 + art_sys_8: -1.32174722e-21 + art_sys_9: -4.60379320e-06 + art_sys_10: -1.08644899e-23 + art_sys_11: -5.42734080e-21 art_sys_12: -1.71120699e-06 - art_sys_13: 5.31704538e-22 + art_sys_13: 8.52263448e-21 art_sys_14: 2.89841913e-05 - art_sys_15: -2.34964995e-18 - art_sys_16: 1.42868628e-04 - art_sys_17: 1.64451863e-20 - art_sys_18: -6.14985078e-16 + art_sys_15: -2.92211707e-19 + art_sys_16: -1.42868628e-04 + art_sys_17: -2.99435705e-21 + art_sys_18: 3.40858235e-17 art_sys_19: 3.02736511e-06 - art_sys_20: 4.61161202e-20 - art_sys_21: 2.03923119e-16 - art_sys_22: 8.75701453e-05 - art_sys_23: 4.75181118e-20 - art_sys_24: 3.52461471e-16 - art_sys_25: -6.07656410e-14 - art_sys_26: 1.76571797e-14 - art_sys_27: 1.97570179e-14 - art_sys_28: 1.29084350e-03 - art_sys_29: -1.84058779e-03 - art_sys_30: -5.73678078e-15 - art_sys_31: -3.76352863e-16 - art_sys_32: 9.57404413e-16 - art_sys_33: -1.96381680e-16 - art_sys_34: 6.64196066e-17 - art_sys_35: 2.41046080e-14 - art_sys_36: -8.28198856e-13 - art_sys_37: 4.66127896e-03 - art_sys_38: 3.10775218e-16 - art_sys_39: 8.47982473e-14 - art_sys_40: 5.73365265e-12 - art_sys_41: 1.50838315e-03 - art_sys_42: -2.57894941e-02 - art_sys_43: -2.52717168e-17 - art_sys_44: 6.29850664e-18 - art_sys_45: -4.27029370e-18 - art_sys_46: -3.71458809e-11 - art_sys_47: 1.52156875e-11 - art_sys_48: -1.04452737e-02 - art_sys_49: 1.11651008e-14 - art_sys_50: 1.27648401e-14 - art_sys_51: 5.92654485e-16 - art_sys_52: -1.19063251e-15 - art_sys_53: -2.90524289e-16 - art_sys_54: -2.09699841e-18 - art_sys_55: -7.12671626e-17 - art_sys_56: -9.61076432e-14 - art_sys_57: -2.76684309e-11 - art_sys_58: -1.79723949e-16 - art_sys_59: 6.91880821e-17 - art_sys_60: 1.49317507e-03 - art_sys_61: 2.96973436e-12 - art_sys_62: -2.81675667e-10 - art_sys_63: 6.03436537e-12 - art_sys_64: 1.39001682e-03 - art_sys_65: 6.50244388e-19 - art_sys_66: 1.14720824e-17 - art_sys_67: -2.07795342e-12 - art_sys_68: -1.45282542e-15 - art_sys_69: 2.26534457e-14 - art_sys_70: 4.97140055e-04 - art_sys_71: 1.35328097e-10 - art_sys_72: -5.55893130e-13 - art_sys_73: -2.86817259e-16 - art_sys_74: -2.00769146e-16 - art_sys_75: 1.94171412e-17 - art_sys_76: 1.62949923e-19 - art_sys_77: -1.02636398e-13 - art_sys_78: 1.65427191e-13 - art_sys_79: -1.39061622e-17 - art_sys_80: -1.04358876e-13 - art_sys_81: 4.12094039e-18 - art_sys_82: 6.75663800e-18 - art_sys_83: 3.14056737e-16 - art_sys_84: 4.32157949e-18 - art_sys_85: 2.16595083e-18 - art_sys_86: 4.31224575e-16 - art_sys_87: -1.34728410e-11 - art_sys_88: 8.22216932e-17 - art_sys_89: 2.00816621e-18 - art_sys_90: -5.78589116e-06 - art_sys_91: -2.77118962e-12 - art_sys_92: 2.57584091e-06 - art_sys_93: -4.66986549e-13 - art_sys_94: -1.90731104e-06 - art_sys_95: 8.86628706e-14 - art_sys_96: 1.08921732e-17 - art_sys_97: -6.34232912e-13 - art_sys_98: 1.01945328e-06 - art_sys_99: -2.42845240e-12 - art_sys_100: -3.43747320e-13 - art_sys_101: 5.44406864e-07 - art_sys_102: -2.40003428e-07 - art_sys_103: 1.48685458e-14 - art_sys_104: -5.20067545e-12 - art_sys_105: -9.86739199e-08 - art_sys_106: 1.24392821e-12 - art_sys_107: 7.34016488e-18 - art_sys_108: -4.51393318e-19 - art_sys_109: -1.97901764e-18 - art_sys_110: 6.30630758e-14 - art_sys_111: 3.73425129e-08 - art_sys_112: 2.05350907e-15 - art_sys_113: 2.44905337e-20 - art_sys_114: -1.32982457e-08 - art_sys_115: -1.12941271e-15 - art_sys_116: 6.18406050e-14 - art_sys_117: 5.65894407e-09 - art_sys_118: 4.27967680e-15 - art_sys_119: -2.06353863e-09 - art_sys_120: -1.05329809e-13 - art_sys_121: 3.23850564e-16 - art_sys_122: -6.98633819e-10 - art_sys_123: -2.33838919e-10 - art_sys_124: -2.55598087e-16 - art_sys_125: -3.03261067e-14 - art_sys_126: 7.25871171e-16 - art_sys_127: 7.65593395e-11 - art_sys_128: 8.59817855e-16 - art_sys_129: -1.99574925e-11 - art_sys_130: 1.36478458e-15 - art_sys_131: -5.47066550e-15 - art_sys_132: 6.83666692e-12 - art_sys_133: 1.60119458e-14 - art_sys_134: 3.26792729e-17 - art_sys_135: -1.16611908e-12 - art_sys_136: 3.20279821e-15 - art_sys_137: -3.54420838e-19 - art_sys_138: -1.98509936e-13 - art_sys_139: 1.13414081e-13 - art_sys_140: 1.67315456e-14 - art_sys_141: -2.56669609e-15 - art_sys_142: -2.15489606e-16 - art_sys_143: -1.18626222e-19 - art_sys_144: -2.11688577e-19 - art_sys_145: -8.67356108e-21 - art_sys_146: -0.0 - art_sys_147: -8.75414299e-18 - art_sys_148: -3.05501047e-17 - art_sys_149: -3.05501047e-17 - art_sys_150: 6.58462038e-17 - art_sys_151: 6.58462038e-17 - art_sys_152: -1.16863202e-15 - art_sys_153: 6.24522434e-17 - art_sys_154: -9.54446794e-21 - art_sys_155: 3.29474281e-28 - art_sys_156: -1.32386618e-32 - art_sys_157: -5.39783709e-31 - art_sys_158: 0.0 - art_sys_159: 6.16230815e-19 - art_sys_160: 2.77790867e-20 - art_sys_161: -1.95941473e-20 - art_sys_162: 2.48140783e-21 - art_sys_163: -1.56550965e-18 - art_sys_164: -9.02906493e-19 - art_sys_165: 1.34929624e-19 - art_sys_166: -4.27603637e-28 - art_sys_167: -6.90788259e-28 - art_sys_168: 1.07969995e-29 - art_sys_169: -3.64202182e-29 - art_sys_170: -9.07872424e-29 - art_sys_171: 1.78404646e-28 - art_sys_172: -2.65595275e-27 - art_sys_173: 2.44714318e-28 - art_sys_174: 1.43307140e-29 - art_sys_175: -4.64836673e-32 - art_sys_176: 9.13794096e-30 - art_sys_177: -4.83633201e-31 - art_sys_178: 1.53961713e-31 - art_sys_179: 1.53308952e-30 - art_sys_180: -2.27154803e-31 - art_sys_181: 5.75337377e-33 - art_sys_182: -1.18441633e-32 - art_sys_183: 4.64022034e-35 - art_sys_184: -1.37955791e-34 - art_sys_185: -6.44083708e-35 + art_sys_20: 1.73488771e-20 + art_sys_21: -1.09797447e-15 + art_sys_22: 5.20186066e-21 + art_sys_23: 8.75701453e-05 + art_sys_24: 3.72416515e-17 + art_sys_25: -1.29084350e-03 + art_sys_26: -1.84058779e-03 + art_sys_27: -6.90801085e-17 + art_sys_28: -6.04360887e-15 + art_sys_29: -5.45934067e-17 + art_sys_30: -4.66127896e-03 + art_sys_31: 1.65383799e-14 + art_sys_32: 6.74984794e-18 + art_sys_33: 1.50838299e-03 + art_sys_34: -2.57894941e-02 + art_sys_35: 1.24028517e-13 + art_sys_36: 2.02621885e-14 + art_sys_37: -1.23425616e-14 + art_sys_38: 1.03991632e-15 + art_sys_39: 1.81121556e-16 + art_sys_40: -7.85421921e-16 + art_sys_41: 9.35987162e-16 + art_sys_42: -1.47229402e-16 + art_sys_43: -1.86232737e-16 + art_sys_44: -8.26435865e-18 + art_sys_45: -5.01461140e-17 + art_sys_46: -5.70540872e-18 + art_sys_47: -1.36927443e-11 + art_sys_48: 1.04452736e-02 + art_sys_49: -1.25072974e-10 + art_sys_50: 2.52127525e-18 + art_sys_51: -3.07526353e-18 + art_sys_52: 3.01322639e-11 + art_sys_53: 1.49317503e-03 + art_sys_54: -6.24839250e-12 + art_sys_55: 1.39001685e-03 + art_sys_56: -1.47816895e-12 + art_sys_57: -4.63922711e-17 + art_sys_58: -1.04915225e-18 + art_sys_59: -4.97140055e-04 + art_sys_60: -7.85842642e-11 + art_sys_61: 8.54012140e-18 + art_sys_62: -5.68890565e-13 + art_sys_63: 3.74232056e-12 + art_sys_64: 3.23055656e-15 + art_sys_65: 1.23014947e-15 + art_sys_66: 4.19492420e-17 + art_sys_67: -1.92146310e-17 + art_sys_68: 2.07022912e-17 + art_sys_69: -4.59916047e-18 + art_sys_70: 5.18431965e-18 + art_sys_71: -2.72005958e-18 + art_sys_72: 6.44419680e-19 + art_sys_73: -3.20918125e-19 + art_sys_74: -5.11889425e-15 + art_sys_75: 6.42654683e-20 + art_sys_76: -5.06664932e-16 + art_sys_77: -1.79466718e-16 + art_sys_78: 6.39277466e-17 + art_sys_79: 3.96411981e-20 + art_sys_80: -1.44812933e-17 + art_sys_81: 1.37350233e-14 + art_sys_82: -2.99488465e-11 + art_sys_83: 1.40596967e-17 + art_sys_84: 2.41988616e-18 + art_sys_85: 4.75768649e-18 + art_sys_86: -1.11569835e-18 + art_sys_87: -1.14908716e-15 + art_sys_88: 6.41347346e-16 + art_sys_89: -2.39105221e-19 + art_sys_90: -1.77868871e-15 + art_sys_91: 5.78589707e-06 + art_sys_92: 2.59434713e-20 + art_sys_93: -6.31992449e-20 + art_sys_94: 6.27567212e-17 + art_sys_95: 9.71752315e-13 + art_sys_96: -2.57585717e-06 + art_sys_97: 7.68038304e-13 + art_sys_98: 1.28644233e-13 + art_sys_99: -1.90730808e-06 + art_sys_100: 1.80039664e-12 + art_sys_101: 1.01944430e-06 + art_sys_102: -1.15980804e-14 + art_sys_103: 4.03894539e-13 + art_sys_104: -5.44413380e-07 + art_sys_105: -5.57377281e-19 + art_sys_106: 2.40002580e-07 + art_sys_107: 1.63068264e-14 + art_sys_108: 2.87231021e-18 + art_sys_109: -3.38023758e-19 + art_sys_110: 2.30106603e-13 + art_sys_111: -9.86771942e-08 + art_sys_112: -3.85747510e-14 + art_sys_113: -3.41726835e-12 + art_sys_114: -2.08562542e-20 + art_sys_115: 3.73424485e-08 + art_sys_116: -1.05108548e-14 + art_sys_117: -6.88094290e-19 + art_sys_118: -1.32979416e-08 + art_sys_119: -4.70127427e-15 + art_sys_120: 4.75590595e-14 + art_sys_121: -1.30570337e-21 + art_sys_122: 5.65812525e-09 + art_sys_123: 6.56949542e-16 + art_sys_124: -2.06536195e-09 + art_sys_125: 1.28928167e-20 + art_sys_126: 1.37066952e-14 + art_sys_127: -2.71403953e-17 + art_sys_128: 6.98551980e-10 + art_sys_129: -2.06333361e-20 + art_sys_130: 2.70523841e-16 + art_sys_131: 2.97906840e-19 + art_sys_132: 2.33552724e-10 + art_sys_133: -5.19391791e-16 + art_sys_134: 2.16742157e-15 + art_sys_135: -7.66171557e-11 + art_sys_136: -5.39354046e-20 + art_sys_137: 2.02669630e-17 + art_sys_138: -1.99960835e-11 + art_sys_139: -4.38809888e-16 + art_sys_140: 4.50764593e-20 + art_sys_141: -1.35946386e-16 + art_sys_142: -6.77881369e-12 + art_sys_143: -1.25107530e-16 + art_sys_144: 2.12948414e-18 + art_sys_145: -1.14125668e-12 + art_sys_146: 6.96740392e-17 + art_sys_147: -7.90411756e-19 + art_sys_148: 2.65705583e-20 + art_sys_149: 1.15590731e-13 + art_sys_150: -3.32697143e-15 + art_sys_151: -1.79764085e-16 + art_sys_152: 3.14190185e-18 + art_sys_153: -4.58538630e-16 + art_sys_154: 3.14101842e-15 + art_sys_155: 1.67754516e-18 + art_sys_156: -0.0 + art_sys_157: 1.28202388e-15 + art_sys_158: -0.0 + art_sys_159: -2.03827209e-16 + art_sys_160: 2.65305261e-17 + art_sys_161: 2.28012675e-17 + art_sys_162: 2.28012675e-17 + art_sys_163: 2.35443115e-17 + art_sys_164: 2.35443115e-17 + art_sys_165: -2.65566199e-31 + art_sys_166: 8.81476439e-32 + art_sys_167: 0.0 + art_sys_168: -1.49211559e-27 + art_sys_169: -4.58939531e-28 + art_sys_170: -1.91307987e-28 + art_sys_171: 9.23701356e-28 + art_sys_172: -3.38614585e-28 + art_sys_173: -1.76110053e-28 + art_sys_174: 5.70214551e-29 + art_sys_175: -3.20378471e-31 + art_sys_176: 2.39013116e-30 + art_sys_177: -2.32341090e-31 + art_sys_178: 2.59970507e-31 + art_sys_179: -5.11065841e-31 + art_sys_180: -5.30101574e-30 + art_sys_181: 1.28845815e-29 + art_sys_182: 6.64273120e-31 + art_sys_183: 5.54286764e-33 + art_sys_184: 7.13686594e-34 + art_sys_185: 9.70009916e-34 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -8096,191 +8096,191 @@ bins: RelativeStatFSR-: -3.46741023e-03 luminosity_uncertainty: 1.67845080e-01 uncorrelated_uncertainty: 6.45558000e-02 -- art_sys_1: 1.90752546e-40 - art_sys_2: 2.90381446e-28 - art_sys_3: -9.41226865e-29 - art_sys_4: 2.13080852e-08 - art_sys_5: -6.00396980e-23 - art_sys_6: -2.06836216e-25 - art_sys_7: -2.32125048e-07 - art_sys_8: -4.93120623e-23 - art_sys_9: 3.26803189e-07 - art_sys_10: -4.18630039e-24 - art_sys_11: 7.62854358e-21 +- art_sys_1: -1.10401564e-38 + art_sys_2: 4.15794943e-27 + art_sys_3: 3.44659339e-28 + art_sys_4: -2.13080852e-08 + art_sys_5: 1.52212317e-23 + art_sys_6: -1.36023090e-25 + art_sys_7: 2.32125048e-07 + art_sys_8: -2.96228662e-23 + art_sys_9: -3.26803189e-07 + art_sys_10: -1.89458856e-24 + art_sys_11: -9.95161173e-22 art_sys_12: -8.30529809e-07 - art_sys_13: -2.45870961e-22 + art_sys_13: -3.22785850e-21 art_sys_14: -1.10680276e-05 - art_sys_15: -2.60099442e-19 - art_sys_16: 5.37568605e-05 - art_sys_17: -1.39576825e-24 - art_sys_18: -7.81057827e-17 + art_sys_15: -5.84318885e-20 + art_sys_16: -5.37568605e-05 + art_sys_17: -1.93799109e-21 + art_sys_18: 7.64915557e-17 art_sys_19: 7.89375462e-05 - art_sys_20: -2.00400652e-20 - art_sys_21: -1.72168936e-15 - art_sys_22: -4.80404336e-05 - art_sys_23: -9.76098685e-21 - art_sys_24: -8.36771311e-17 - art_sys_25: 6.26407892e-14 - art_sys_26: 5.41323413e-14 - art_sys_27: 2.78632261e-15 - art_sys_28: 2.10807808e-04 - art_sys_29: 7.96774297e-04 - art_sys_30: -3.80153038e-15 - art_sys_31: 5.67762815e-16 - art_sys_32: 1.41671339e-15 - art_sys_33: -1.16126374e-16 - art_sys_34: -5.38826102e-18 - art_sys_35: 4.46777501e-16 - art_sys_36: -3.66137739e-14 - art_sys_37: 2.06063268e-04 - art_sys_38: -3.58803869e-16 - art_sys_39: 3.69444120e-14 - art_sys_40: -1.11695974e-11 - art_sys_41: -2.93855389e-03 - art_sys_42: -1.59211395e-03 - art_sys_43: -7.81434444e-17 - art_sys_44: 1.08348790e-17 - art_sys_45: 6.94919651e-17 - art_sys_46: -2.43356408e-12 - art_sys_47: 9.18999264e-12 - art_sys_48: -6.30697302e-03 - art_sys_49: -3.65562260e-14 - art_sys_50: -6.75952933e-14 - art_sys_51: -1.60736907e-15 - art_sys_52: 3.60585846e-15 - art_sys_53: 4.40958605e-16 - art_sys_54: 1.17612334e-16 - art_sys_55: 3.32697020e-16 - art_sys_56: 4.46189592e-13 - art_sys_57: -1.66735472e-11 - art_sys_58: 7.62064255e-16 - art_sys_59: -1.40951510e-16 - art_sys_60: -6.93214824e-03 - art_sys_61: -1.18130627e-10 - art_sys_62: 5.46676903e-10 - art_sys_63: -1.79998773e-11 - art_sys_64: -2.77231367e-03 - art_sys_65: -1.93381109e-18 - art_sys_66: -3.43219430e-17 - art_sys_67: 9.18640559e-13 - art_sys_68: 4.03351284e-15 - art_sys_69: -6.57033931e-14 - art_sys_70: -1.48290203e-03 - art_sys_71: -4.02836898e-10 - art_sys_72: -4.99816183e-13 - art_sys_73: 8.43127895e-16 - art_sys_74: 5.38461292e-16 - art_sys_75: -1.95151627e-17 - art_sys_76: -5.07711032e-19 - art_sys_77: 1.59632283e-13 - art_sys_78: -5.25652286e-13 - art_sys_79: 3.34348251e-17 - art_sys_80: 3.40775751e-13 - art_sys_81: -9.59306916e-18 - art_sys_82: -1.94663740e-17 - art_sys_83: -1.08207231e-15 - art_sys_84: -1.18236228e-17 - art_sys_85: -5.89856707e-18 - art_sys_86: -1.49616117e-15 - art_sys_87: 3.89181175e-11 - art_sys_88: -2.85369331e-16 - art_sys_89: -6.97514980e-18 - art_sys_90: 1.59605672e-05 - art_sys_91: 9.23880434e-12 - art_sys_92: -7.52258893e-06 - art_sys_93: 9.63660324e-13 - art_sys_94: 6.04693740e-06 - art_sys_95: -3.03211101e-13 - art_sys_96: -3.78520851e-17 - art_sys_97: 2.15045390e-12 - art_sys_98: -3.24965523e-06 - art_sys_99: 6.37096033e-12 - art_sys_100: 1.18279717e-12 - art_sys_101: -1.79232858e-06 - art_sys_102: 8.00799916e-07 - art_sys_103: -5.09869488e-14 - art_sys_104: 1.51500430e-11 - art_sys_105: 3.32979220e-07 - art_sys_106: -4.24460286e-12 - art_sys_107: -2.55548977e-17 - art_sys_108: 1.56889251e-18 - art_sys_109: 7.02429496e-18 - art_sys_110: -2.18792366e-13 - art_sys_111: -1.27392112e-07 - art_sys_112: -7.19385352e-15 - art_sys_113: -8.37398867e-20 - art_sys_114: 4.55663404e-08 - art_sys_115: 3.92435213e-15 - art_sys_116: -2.14594432e-13 - art_sys_117: -1.94975536e-08 - art_sys_118: -1.48729070e-14 - art_sys_119: 7.13080716e-09 - art_sys_120: 3.65492307e-13 - art_sys_121: -1.12735664e-15 - art_sys_122: 2.42124858e-09 - art_sys_123: 8.11897434e-10 - art_sys_124: 8.89845983e-16 - art_sys_125: 1.05457098e-13 - art_sys_126: -2.52695261e-15 - art_sys_127: -2.66117271e-10 - art_sys_128: -2.99582540e-15 - art_sys_129: 6.94502656e-11 - art_sys_130: -4.75352823e-15 - art_sys_131: 1.90498942e-14 - art_sys_132: -2.38026203e-11 - art_sys_133: -5.57477790e-14 - art_sys_134: -1.13776506e-16 - art_sys_135: 4.06243304e-12 - art_sys_136: -1.11555068e-14 - art_sys_137: 1.23432513e-18 - art_sys_138: 6.34894679e-13 - art_sys_139: -3.95224451e-13 - art_sys_140: -5.83045804e-14 - art_sys_141: 8.94312536e-15 - art_sys_142: 7.50343078e-16 - art_sys_143: 4.13420885e-19 - art_sys_144: 7.37640044e-19 - art_sys_145: 3.05052901e-20 - art_sys_146: 0.0 - art_sys_147: 3.04813321e-17 - art_sys_148: 1.06427874e-16 - art_sys_149: 1.06427874e-16 - art_sys_150: -2.29969036e-16 - art_sys_151: -2.29969036e-16 - art_sys_152: 4.06415109e-15 - art_sys_153: -2.17058593e-16 - art_sys_154: 3.30641360e-20 - art_sys_155: -1.14544636e-27 - art_sys_156: 4.61259197e-32 - art_sys_157: 1.87278890e-30 - art_sys_158: -0.0 - art_sys_159: -2.05720185e-18 - art_sys_160: -9.52989614e-20 - art_sys_161: 6.84390635e-20 - art_sys_162: -8.57952407e-21 - art_sys_163: 5.45203489e-18 - art_sys_164: 3.14326198e-18 - art_sys_165: -4.69725048e-19 - art_sys_166: 1.51657254e-27 - art_sys_167: 2.40015794e-27 - art_sys_168: -3.83730040e-29 - art_sys_169: 7.61633448e-29 - art_sys_170: 6.86989371e-29 - art_sys_171: -4.76661860e-28 - art_sys_172: 6.84943283e-27 - art_sys_173: -1.03671842e-27 - art_sys_174: -1.63410233e-28 - art_sys_175: 1.61731969e-31 - art_sys_176: -3.65706980e-29 - art_sys_177: 8.51410587e-30 - art_sys_178: -1.76738297e-30 - art_sys_179: -5.26438839e-30 - art_sys_180: -6.11443406e-31 - art_sys_181: 1.08998886e-32 - art_sys_182: 3.99825794e-32 - art_sys_183: -1.57562239e-34 - art_sys_184: 4.80400240e-34 - art_sys_185: 2.24241563e-34 + art_sys_20: -3.17821956e-21 + art_sys_21: -1.50888970e-15 + art_sys_22: 2.33996076e-21 + art_sys_23: -4.80404336e-05 + art_sys_24: 3.29257304e-16 + art_sys_25: -2.10807808e-04 + art_sys_26: 7.96774297e-04 + art_sys_27: 8.46118360e-18 + art_sys_28: -1.20954895e-16 + art_sys_29: 2.62155233e-18 + art_sys_30: -2.06063268e-04 + art_sys_31: 9.93331604e-15 + art_sys_32: 1.58148138e-18 + art_sys_33: -2.93855390e-03 + art_sys_34: -1.59211395e-03 + art_sys_35: 5.36605786e-14 + art_sys_36: -9.05572148e-15 + art_sys_37: 8.22177223e-15 + art_sys_38: -1.92887184e-15 + art_sys_39: 4.41487466e-15 + art_sys_40: 1.91503857e-15 + art_sys_41: 1.36535335e-15 + art_sys_42: 5.53973344e-16 + art_sys_43: 3.30571999e-17 + art_sys_44: -3.43955543e-17 + art_sys_45: 5.44385286e-17 + art_sys_46: -4.63716944e-18 + art_sys_47: -8.26772496e-12 + art_sys_48: 6.30697300e-03 + art_sys_49: -7.53085181e-11 + art_sys_50: -9.83456945e-18 + art_sys_51: -5.34850694e-18 + art_sys_52: 1.82635023e-11 + art_sys_53: -6.93214815e-03 + art_sys_54: 2.61376311e-11 + art_sys_55: -2.77231373e-03 + art_sys_56: -4.99724805e-13 + art_sys_57: -2.90356308e-17 + art_sys_58: 3.55472148e-18 + art_sys_59: 1.48290203e-03 + art_sys_60: 2.34684967e-10 + art_sys_61: -2.19330919e-17 + art_sys_62: 2.85884647e-12 + art_sys_63: -1.08263049e-11 + art_sys_64: -5.46490167e-15 + art_sys_65: 1.16213916e-16 + art_sys_66: -4.43181817e-16 + art_sys_67: 1.22131850e-16 + art_sys_68: -6.28089309e-17 + art_sys_69: 1.47776687e-17 + art_sys_70: -1.50403479e-17 + art_sys_71: 8.45760469e-18 + art_sys_72: -1.93128100e-18 + art_sys_73: 1.10046455e-18 + art_sys_74: 1.49933400e-14 + art_sys_75: -2.16763922e-19 + art_sys_76: 1.53298782e-15 + art_sys_77: 5.71859192e-16 + art_sys_78: -1.82009314e-16 + art_sys_79: 3.08884476e-19 + art_sys_80: 4.20422980e-17 + art_sys_81: -4.01137194e-14 + art_sys_82: 8.59594849e-11 + art_sys_83: -3.78142954e-17 + art_sys_84: -8.56068173e-18 + art_sys_85: -1.46035535e-17 + art_sys_86: 3.06873164e-18 + art_sys_87: 3.73055014e-15 + art_sys_88: -2.16538581e-15 + art_sys_89: 6.59297028e-19 + art_sys_90: 6.19554985e-15 + art_sys_91: -1.59605822e-05 + art_sys_92: -4.52480513e-20 + art_sys_93: 1.89083726e-19 + art_sys_94: -2.17905210e-16 + art_sys_95: -2.98141467e-12 + art_sys_96: 7.52263748e-06 + art_sys_97: -2.31388379e-12 + art_sys_98: -3.36492384e-13 + art_sys_99: 6.04692905e-06 + art_sys_100: -5.76963295e-12 + art_sys_101: -3.24962585e-06 + art_sys_102: 3.44976074e-14 + art_sys_103: -1.27822566e-12 + art_sys_104: 1.79235036e-06 + art_sys_105: 1.93019046e-18 + art_sys_106: -8.00797533e-07 + art_sys_107: -5.65835096e-14 + art_sys_108: -1.00091124e-17 + art_sys_109: 1.16117463e-18 + art_sys_110: -7.93538448e-13 + art_sys_111: 3.32989938e-07 + art_sys_112: 1.32848347e-13 + art_sys_113: 1.16259650e-11 + art_sys_114: 7.30950559e-20 + art_sys_115: -1.27391890e-07 + art_sys_116: 3.64319301e-14 + art_sys_117: 2.33110115e-18 + art_sys_118: 4.55652881e-08 + art_sys_119: 1.63306451e-14 + art_sys_120: -1.65247064e-13 + art_sys_121: -5.01216892e-22 + art_sys_122: -1.94947356e-08 + art_sys_123: -2.28747136e-15 + art_sys_124: 7.13708364e-09 + art_sys_125: -4.48642747e-20 + art_sys_126: -4.76351538e-14 + art_sys_127: 9.46741758e-17 + art_sys_128: -2.42096357e-09 + art_sys_129: 7.24237024e-20 + art_sys_130: -9.42818593e-16 + art_sys_131: -1.03837967e-18 + art_sys_132: -8.10905740e-10 + art_sys_133: 1.81005049e-15 + art_sys_134: -7.55543463e-15 + art_sys_135: 2.66318299e-10 + art_sys_136: 1.87919214e-19 + art_sys_137: -7.06185392e-17 + art_sys_138: 6.95847536e-11 + art_sys_139: 1.52898729e-15 + art_sys_140: -1.57120697e-19 + art_sys_141: 4.73214229e-16 + art_sys_142: 2.36014250e-11 + art_sys_143: 4.35770862e-16 + art_sys_144: -7.41264899e-18 + art_sys_145: 3.97598853e-12 + art_sys_146: -2.42721524e-16 + art_sys_147: 2.75367856e-18 + art_sys_148: -9.20988428e-20 + art_sys_149: -4.02835275e-13 + art_sys_150: 1.15944037e-14 + art_sys_151: 6.26545982e-16 + art_sys_152: -1.09487003e-17 + art_sys_153: 1.59793373e-15 + art_sys_154: -1.08985790e-14 + art_sys_155: -5.84472075e-18 + art_sys_156: 0.0 + art_sys_157: -4.46922444e-15 + art_sys_158: 0.0 + art_sys_159: 7.10393017e-16 + art_sys_160: -9.24827894e-17 + art_sys_161: -7.94521002e-17 + art_sys_162: -7.94521002e-17 + art_sys_163: -8.20525141e-17 + art_sys_164: -8.20525141e-17 + art_sys_165: 9.25486999e-31 + art_sys_166: -3.07189830e-31 + art_sys_167: -0.0 + art_sys_168: 5.78944900e-27 + art_sys_169: 1.86087264e-27 + art_sys_170: 4.76310940e-28 + art_sys_171: 8.30922889e-27 + art_sys_172: 1.36341527e-27 + art_sys_173: 1.22685917e-28 + art_sys_174: -1.59055560e-29 + art_sys_175: -6.41770249e-30 + art_sys_176: -4.14273912e-31 + art_sys_177: 6.53587898e-31 + art_sys_178: -9.29853106e-31 + art_sys_179: 1.78036250e-30 + art_sys_180: 1.84751401e-29 + art_sys_181: -4.40772244e-29 + art_sys_182: 2.23248757e-31 + art_sys_183: -9.87488691e-33 + art_sys_184: -2.54180591e-33 + art_sys_185: -3.37867589e-33 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -8387,191 +8387,191 @@ bins: RelativeStatFSR-: -2.16472218e-03 luminosity_uncertainty: 9.78437200e-02 uncorrelated_uncertainty: 3.76322000e-02 -- art_sys_1: -2.98240600e-42 - art_sys_2: -5.44718228e-30 - art_sys_3: -7.57499465e-29 - art_sys_4: -3.99711849e-10 - art_sys_5: -6.72547977e-24 - art_sys_6: 3.64888264e-27 - art_sys_7: -3.00131198e-08 - art_sys_8: -6.19929045e-24 - art_sys_9: 3.27344527e-08 - art_sys_10: -4.24445843e-25 - art_sys_11: 1.64568795e-21 +- art_sys_1: 2.07307289e-40 + art_sys_2: -7.79977005e-29 + art_sys_3: -5.91380751e-29 + art_sys_4: 3.99711849e-10 + art_sys_5: 1.81666115e-24 + art_sys_6: 2.54093127e-27 + art_sys_7: 3.00131198e-08 + art_sys_8: 3.67788540e-24 + art_sys_9: -3.27344527e-08 + art_sys_10: -3.00718187e-25 + art_sys_11: 4.80656869e-24 art_sys_12: -1.45372251e-07 - art_sys_13: -7.54603052e-23 + art_sys_13: -1.01087574e-21 art_sys_14: -3.46008028e-06 - art_sys_15: -4.80951359e-20 - art_sys_16: 1.04157296e-05 - art_sys_17: -3.73245101e-22 - art_sys_18: -2.73382513e-18 + art_sys_15: -2.51302458e-20 + art_sys_16: -1.04157296e-05 + art_sys_17: -4.24408866e-22 + art_sys_18: -7.49026638e-20 art_sys_19: 2.01616146e-05 - art_sys_20: -6.09879099e-21 - art_sys_21: -6.17467782e-17 - art_sys_22: -1.40530360e-05 - art_sys_23: -4.49213201e-21 - art_sys_24: 3.07727708e-16 - art_sys_25: 2.02070520e-14 - art_sys_26: -1.42648684e-14 - art_sys_27: -4.88933615e-15 - art_sys_28: -3.73143119e-05 - art_sys_29: 2.31083490e-04 - art_sys_30: 1.64901792e-15 - art_sys_31: 3.56357372e-16 - art_sys_32: -3.32928181e-16 - art_sys_33: -5.80860270e-17 - art_sys_34: -3.23329343e-18 - art_sys_35: -1.78964661e-15 - art_sys_36: 6.11785739e-14 - art_sys_37: -3.44330162e-04 - art_sys_38: -4.01221733e-16 - art_sys_39: -4.55073431e-15 - art_sys_40: -1.35670928e-12 - art_sys_41: -3.56924391e-04 - art_sys_42: 2.58033497e-03 - art_sys_43: 5.15781195e-17 - art_sys_44: -1.20916350e-18 - art_sys_45: -2.01786267e-18 - art_sys_46: 3.71226426e-12 - art_sys_47: -1.04972014e-12 - art_sys_48: 7.21954691e-04 - art_sys_49: -6.49660012e-15 - art_sys_50: -7.48747068e-14 - art_sys_51: 1.65184387e-15 - art_sys_52: -1.50004368e-15 - art_sys_53: -7.33970226e-16 - art_sys_54: -2.20511023e-16 - art_sys_55: 2.74350580e-16 - art_sys_56: 3.87816436e-13 - art_sys_57: 1.92722712e-12 - art_sys_58: 1.52539058e-16 - art_sys_59: 2.72190068e-16 - art_sys_60: -6.02625009e-03 - art_sys_61: -9.08216370e-11 - art_sys_62: -7.61277349e-10 - art_sys_63: 2.43189973e-11 - art_sys_64: 3.56096815e-03 - art_sys_65: 1.00766553e-19 - art_sys_66: 4.78896898e-17 - art_sys_67: -1.98013115e-12 - art_sys_68: -1.77438461e-14 - art_sys_69: 2.16230698e-13 - art_sys_70: 2.00349948e-03 - art_sys_71: 5.75517439e-10 - art_sys_72: -5.21408393e-12 - art_sys_73: -2.39872977e-15 - art_sys_74: -2.22953449e-15 - art_sys_75: 2.99872076e-16 - art_sys_76: 1.84956924e-18 - art_sys_77: -4.72254117e-12 - art_sys_78: 1.83090844e-12 - art_sys_79: -1.40972104e-16 - art_sys_80: -1.13625549e-12 - art_sys_81: 5.11313240e-17 - art_sys_82: 7.77192151e-17 - art_sys_83: 3.62436564e-15 - art_sys_84: 4.77739308e-17 - art_sys_85: 2.74856754e-17 - art_sys_86: 4.98050398e-15 - art_sys_87: -1.32181046e-10 - art_sys_88: 9.49722714e-16 - art_sys_89: 2.32081609e-17 - art_sys_90: -7.13454907e-05 - art_sys_91: -3.12438812e-11 - art_sys_92: 2.35476811e-05 - art_sys_93: -3.88549035e-12 - art_sys_94: -2.12302291e-05 - art_sys_95: 1.01518853e-12 - art_sys_96: 1.25911733e-16 - art_sys_97: -7.22421243e-12 - art_sys_98: 1.11790407e-05 - art_sys_99: -1.73184733e-11 - art_sys_100: -3.94942735e-12 - art_sys_101: 6.06682248e-06 - art_sys_102: -2.70825487e-06 - art_sys_103: 1.70507923e-13 - art_sys_104: -4.80990493e-11 - art_sys_105: -1.11932720e-06 - art_sys_106: 1.42210552e-11 - art_sys_107: 8.49484730e-17 - art_sys_108: -5.20913636e-18 - art_sys_109: -2.32026113e-17 - art_sys_110: 7.28177096e-13 - art_sys_111: 4.26739645e-07 - art_sys_112: 2.38529158e-14 - art_sys_113: 2.80810683e-19 - art_sys_114: -1.52474861e-07 - art_sys_115: -1.30551511e-14 - art_sys_116: 7.14032695e-13 - art_sys_117: 6.50564701e-08 - art_sys_118: 4.94735188e-14 - art_sys_119: -2.37805819e-08 - art_sys_120: -1.21657003e-12 - art_sys_121: 3.74765436e-15 - art_sys_122: -8.06214411e-09 - art_sys_123: -2.70190571e-09 - art_sys_124: -2.95796938e-15 - art_sys_125: -3.50716773e-13 - art_sys_126: 8.40002401e-15 - art_sys_127: 8.85175911e-10 - art_sys_128: 9.95522856e-15 - art_sys_129: -2.30892304e-10 - art_sys_130: 1.57993299e-14 - art_sys_131: -6.33208714e-14 - art_sys_132: 7.91229415e-11 - art_sys_133: 1.85312495e-13 - art_sys_134: 3.78207596e-16 - art_sys_135: -1.35002842e-11 - art_sys_136: 3.70755701e-14 - art_sys_137: -4.10251739e-18 - art_sys_138: -2.16687372e-12 - art_sys_139: 1.31315417e-12 - art_sys_140: 1.93721930e-13 - art_sys_141: -2.97160913e-14 - art_sys_142: -2.49356108e-15 - art_sys_143: -1.37357338e-18 - art_sys_144: -2.45093982e-18 - art_sys_145: -1.01234474e-19 - art_sys_146: -0.0 - art_sys_147: -1.01348844e-16 - art_sys_148: -3.53183151e-16 - art_sys_149: -3.53183151e-16 - art_sys_150: 7.63338028e-16 - art_sys_151: 7.63338028e-16 - art_sys_152: -1.35160125e-14 - art_sys_153: 7.22079892e-16 - art_sys_154: -1.10134118e-19 - art_sys_155: 3.80992312e-27 - art_sys_156: -1.53272318e-31 - art_sys_157: -6.23435800e-30 - art_sys_158: 0.0 - art_sys_159: 6.94415059e-18 - art_sys_160: 3.18337914e-19 - art_sys_161: -2.27195495e-19 - art_sys_162: 2.83380608e-20 - art_sys_163: -1.81219339e-17 - art_sys_164: -1.04479561e-17 - art_sys_165: 1.56135274e-18 - art_sys_166: -5.05569872e-27 - art_sys_167: -7.84990226e-27 - art_sys_168: 1.17114055e-28 - art_sys_169: -3.24478649e-28 - art_sys_170: -4.49626061e-28 - art_sys_171: 7.22882191e-28 - art_sys_172: -6.44344443e-27 - art_sys_173: 5.18337203e-28 - art_sys_174: -2.14491386e-28 - art_sys_175: -5.37526657e-31 - art_sys_176: -6.14964871e-30 - art_sys_177: 1.98200593e-29 - art_sys_178: -6.36905411e-30 - art_sys_179: 1.85284201e-29 - art_sys_180: -1.98918689e-31 - art_sys_181: -2.72847369e-32 - art_sys_182: -1.38821075e-31 - art_sys_183: 1.20755550e-33 - art_sys_184: -1.59866494e-33 - art_sys_185: -7.45397594e-34 + art_sys_20: -1.24433670e-21 + art_sys_21: 9.59494949e-18 + art_sys_22: 6.55211649e-22 + art_sys_23: -1.40530360e-05 + art_sys_24: -1.44403230e-15 + art_sys_25: 3.73143119e-05 + art_sys_26: 2.31083490e-04 + art_sys_27: 8.71619014e-18 + art_sys_28: 4.46139509e-16 + art_sys_29: 2.48115845e-18 + art_sys_30: 3.44330162e-04 + art_sys_31: -7.87933343e-16 + art_sys_32: -7.04027432e-19 + art_sys_33: -3.56924375e-04 + art_sys_34: 2.58033497e-03 + art_sys_35: -1.09158279e-14 + art_sys_36: -4.53335276e-14 + art_sys_37: -1.09245225e-14 + art_sys_38: -1.50168613e-14 + art_sys_39: -1.73366954e-15 + art_sys_40: -1.29270645e-16 + art_sys_41: -8.32904512e-16 + art_sys_42: -7.54765193e-16 + art_sys_43: -8.75737198e-17 + art_sys_44: -3.57627256e-17 + art_sys_45: 1.66087845e-17 + art_sys_46: 8.50770756e-18 + art_sys_47: 9.46494340e-13 + art_sys_48: -7.21954690e-04 + art_sys_49: 8.80459478e-12 + art_sys_50: -2.73725130e-17 + art_sys_51: 4.91620275e-18 + art_sys_52: -2.15509966e-12 + art_sys_53: -6.02625020e-03 + art_sys_54: 1.81842940e-11 + art_sys_55: 3.56096823e-03 + art_sys_56: 3.94994025e-13 + art_sys_57: -1.08443886e-19 + art_sys_58: 2.04346558e-18 + art_sys_59: -2.00349948e-03 + art_sys_60: -3.06628015e-10 + art_sys_61: 8.90073317e-17 + art_sys_62: 2.83817564e-12 + art_sys_63: 2.52024606e-11 + art_sys_64: 2.01498345e-14 + art_sys_65: 5.21008528e-15 + art_sys_66: -2.61193135e-16 + art_sys_67: -3.41721247e-16 + art_sys_68: 2.52687517e-16 + art_sys_69: -4.42573216e-17 + art_sys_70: 6.17880575e-17 + art_sys_71: -2.90112831e-17 + art_sys_72: 7.89833391e-18 + art_sys_73: -2.93098138e-18 + art_sys_74: -4.56390734e-14 + art_sys_75: 9.63062326e-19 + art_sys_76: -5.94406597e-15 + art_sys_77: -1.84262511e-15 + art_sys_78: 6.54436858e-16 + art_sys_79: -3.83364783e-19 + art_sys_80: -1.18716748e-16 + art_sys_81: 1.25525666e-13 + art_sys_82: -3.03134710e-10 + art_sys_83: 1.81205228e-16 + art_sys_84: 2.54342487e-17 + art_sys_85: 5.76879040e-17 + art_sys_86: -1.25684659e-17 + art_sys_87: -1.26755016e-14 + art_sys_88: 7.27633895e-15 + art_sys_89: -3.89186063e-18 + art_sys_90: -2.05929092e-14 + art_sys_91: 7.13455971e-05 + art_sys_92: 5.52670274e-19 + art_sys_93: -6.35325104e-19 + art_sys_94: 7.25162295e-16 + art_sys_95: 1.06924809e-11 + art_sys_96: -2.35478615e-05 + art_sys_97: 1.01770766e-11 + art_sys_98: 1.26150841e-12 + art_sys_99: -2.12302033e-05 + art_sys_100: 1.98059728e-11 + art_sys_101: 1.11789411e-05 + art_sys_102: -1.21131007e-13 + art_sys_103: 4.37220206e-12 + art_sys_104: -6.06689602e-06 + art_sys_105: -6.42870902e-18 + art_sys_106: 2.70824668e-06 + art_sys_107: 1.88311969e-13 + art_sys_108: 3.32547208e-17 + art_sys_109: -3.87617622e-18 + art_sys_110: 2.64691608e-12 + art_sys_111: -1.11936369e-06 + art_sys_112: -4.43360354e-13 + art_sys_113: -3.93962240e-11 + art_sys_114: -2.42260277e-19 + art_sys_115: 4.26738906e-07 + art_sys_116: -1.21301627e-13 + art_sys_117: -7.82420409e-18 + art_sys_118: -1.52471352e-07 + art_sys_119: -5.43361838e-14 + art_sys_120: 5.49832737e-13 + art_sys_121: -4.43848886e-21 + art_sys_122: 6.50470551e-08 + art_sys_123: 7.60394376e-15 + art_sys_124: -2.38015314e-08 + art_sys_125: 1.48923008e-19 + art_sys_126: 1.58456777e-13 + art_sys_127: -3.14465715e-16 + art_sys_128: 8.06119660e-09 + art_sys_129: -2.40384585e-19 + art_sys_130: 3.13259567e-15 + art_sys_131: 3.44997833e-18 + art_sys_132: 2.69860336e-09 + art_sys_133: -6.01413256e-15 + art_sys_134: 2.51017962e-14 + art_sys_135: -8.85844547e-10 + art_sys_136: -6.24475007e-19 + art_sys_137: 2.34627952e-16 + art_sys_138: -2.31339106e-10 + art_sys_139: -5.08051141e-15 + art_sys_140: 5.22012322e-19 + art_sys_141: -1.57315288e-15 + art_sys_142: -7.84538580e-11 + art_sys_143: -1.44825149e-15 + art_sys_144: 2.46423485e-17 + art_sys_145: -1.32127848e-11 + art_sys_146: 8.06612597e-16 + art_sys_147: -9.15082829e-18 + art_sys_148: 3.07055718e-19 + art_sys_149: 1.33840699e-12 + art_sys_150: -3.85222284e-14 + art_sys_151: -2.08176335e-15 + art_sys_152: 3.63783360e-17 + art_sys_153: -5.30940377e-15 + art_sys_154: 3.58255228e-14 + art_sys_155: 1.94206802e-17 + art_sys_156: -0.0 + art_sys_157: 1.48490434e-14 + art_sys_158: -0.0 + art_sys_159: -2.36036245e-15 + art_sys_160: 3.07277715e-16 + art_sys_161: 2.63998222e-16 + art_sys_162: 2.63998222e-16 + art_sys_163: 2.72632239e-16 + art_sys_164: 2.72632239e-16 + art_sys_165: -3.07508475e-30 + art_sys_166: 1.02068996e-30 + art_sys_167: 0.0 + art_sys_168: -1.99972227e-26 + art_sys_169: -6.41028318e-27 + art_sys_170: 1.36335064e-27 + art_sys_171: -7.03940139e-27 + art_sys_172: -9.27141459e-28 + art_sys_173: -6.59685547e-29 + art_sys_174: 1.24006652e-28 + art_sys_175: 1.25673851e-29 + art_sys_176: 7.32407181e-30 + art_sys_177: -2.28122651e-30 + art_sys_178: 3.10408027e-30 + art_sys_179: -5.91586840e-30 + art_sys_180: -6.13859721e-29 + art_sys_181: 1.47983941e-28 + art_sys_182: -3.11024924e-32 + art_sys_183: 1.66234559e-32 + art_sys_184: 8.49743534e-33 + art_sys_185: 1.12288203e-32 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -8678,191 +8678,191 @@ bins: RelativeStatFSR-: -1.37911322e-03 luminosity_uncertainty: 5.82197200e-02 uncorrelated_uncertainty: 2.23922000e-02 -- art_sys_1: -1.62231312e-42 - art_sys_2: -2.60671261e-30 - art_sys_3: -9.52950182e-30 - art_sys_4: -1.91279555e-10 - art_sys_5: -8.63884697e-25 - art_sys_6: 1.81762052e-27 - art_sys_7: -3.80688606e-09 - art_sys_8: -2.93003154e-25 - art_sys_9: 4.55354621e-09 - art_sys_10: -5.52404101e-26 - art_sys_11: 2.60387276e-22 +- art_sys_1: 9.91582208e-41 + art_sys_2: -3.73253021e-29 + art_sys_3: -1.68694010e-29 + art_sys_4: 1.91279555e-10 + art_sys_5: 2.64307462e-25 + art_sys_6: 1.21162369e-27 + art_sys_7: 3.80688606e-09 + art_sys_8: -1.70470578e-25 + art_sys_9: -4.55354621e-09 + art_sys_10: -3.57510566e-26 + art_sys_11: 2.47589102e-23 art_sys_12: -1.69737452e-08 - art_sys_13: -1.20407322e-23 + art_sys_13: -1.61337071e-22 art_sys_14: -5.51941416e-07 - art_sys_15: -2.87107430e-21 - art_sys_16: 1.43419679e-06 - art_sys_17: -6.69200137e-23 - art_sys_18: -8.56268348e-20 + art_sys_15: -2.20663714e-21 + art_sys_16: -1.43419679e-06 + art_sys_17: -6.03534283e-23 + art_sys_18: -2.83523442e-19 art_sys_19: 2.91782533e-06 - art_sys_20: -6.89083477e-22 - art_sys_21: 3.78243353e-19 - art_sys_22: -1.59872924e-06 - art_sys_23: -4.04094195e-22 - art_sys_24: 6.03594254e-17 - art_sys_25: 3.44088168e-14 - art_sys_26: 6.62681587e-15 - art_sys_27: -3.18624861e-15 - art_sys_28: -1.73337631e-05 - art_sys_29: -1.12211817e-05 - art_sys_30: -1.74349162e-16 - art_sys_31: -3.35517327e-16 - art_sys_32: -1.09082523e-15 - art_sys_33: 1.77802149e-16 - art_sys_34: -8.75496824e-18 - art_sys_35: -2.39447176e-16 - art_sys_36: 9.46651903e-15 - art_sys_37: -5.32583361e-05 - art_sys_38: -9.19915699e-17 - art_sys_39: -3.71875798e-15 - art_sys_40: 9.26676543e-13 - art_sys_41: 2.43794843e-04 - art_sys_42: 3.45108961e-04 - art_sys_43: -3.67329089e-17 - art_sys_44: 1.50551034e-17 - art_sys_45: -4.93816408e-17 - art_sys_46: 5.17561133e-13 - art_sys_47: -1.50201560e-12 - art_sys_48: 1.03114433e-03 - art_sys_49: 4.77558933e-14 - art_sys_50: 3.82291667e-14 - art_sys_51: 2.39474104e-15 - art_sys_52: -8.85403694e-18 - art_sys_53: -1.85320131e-15 - art_sys_54: 1.03184822e-15 - art_sys_55: 6.16551397e-18 - art_sys_56: 2.08574676e-14 - art_sys_57: 2.72336236e-12 - art_sys_58: 5.42304141e-16 - art_sys_59: 8.49201697e-17 - art_sys_60: -3.25260445e-04 - art_sys_61: -2.97660223e-12 - art_sys_62: -1.10339490e-09 - art_sys_63: -2.72496003e-11 - art_sys_64: 5.34803441e-03 - art_sys_65: 2.29252888e-18 - art_sys_66: -6.13262617e-17 - art_sys_67: -2.95201614e-12 - art_sys_68: 1.12768543e-14 - art_sys_69: -4.32322273e-13 - art_sys_70: -2.24493509e-03 - art_sys_71: -6.22189427e-10 - art_sys_72: -4.39500654e-12 - art_sys_73: 7.06112676e-15 - art_sys_74: 1.83313680e-15 - art_sys_75: 7.79245820e-16 - art_sys_76: -3.82903233e-18 - art_sys_77: -2.79799961e-12 - art_sys_78: -3.39993255e-12 - art_sys_79: 7.24536692e-17 - art_sys_80: 2.64475160e-12 - art_sys_81: 1.25815643e-17 - art_sys_82: -9.01487207e-17 - art_sys_83: -9.12092142e-15 - art_sys_84: -4.96514911e-17 - art_sys_85: -1.38391050e-17 - art_sys_86: -1.27658545e-14 - art_sys_87: 2.43462515e-10 - art_sys_88: -2.43730420e-15 - art_sys_89: -5.98328712e-17 - art_sys_90: 4.51949913e-05 - art_sys_91: 7.16891433e-11 - art_sys_92: -5.33480955e-05 - art_sys_93: 7.50773446e-12 - art_sys_94: 3.64969591e-05 - art_sys_95: -2.50583176e-12 - art_sys_96: -3.24205851e-16 - art_sys_97: 1.73902263e-11 - art_sys_98: -2.31732390e-05 - art_sys_99: 2.14746113e-11 - art_sys_100: 9.90288994e-12 - art_sys_101: -1.33633161e-05 - art_sys_102: 6.23070805e-06 - art_sys_103: -4.23647964e-13 - art_sys_104: 7.09797254e-11 - art_sys_105: 2.67266846e-06 - art_sys_106: -3.48115020e-11 - art_sys_107: -2.19729867e-16 - art_sys_108: 1.34843208e-17 - art_sys_109: 6.29891631e-17 - art_sys_110: -1.86633611e-12 - art_sys_111: -1.04244498e-06 - art_sys_112: -6.28833664e-14 - art_sys_113: -7.02267293e-19 - art_sys_114: 3.78943249e-07 - art_sys_115: 3.36013920e-14 - art_sys_116: -1.83025565e-12 - art_sys_117: -1.63575554e-07 - art_sys_118: -1.27388614e-13 - art_sys_119: 6.03223133e-08 - art_sys_120: 3.11882246e-12 - art_sys_121: -9.69122625e-15 - art_sys_122: 2.06093227e-08 - art_sys_123: 6.93707501e-09 - art_sys_124: 7.65134902e-15 - art_sys_125: 9.04686243e-13 - art_sys_126: -2.17265246e-14 - art_sys_127: -2.28059986e-09 - art_sys_128: -2.58039571e-14 - art_sys_129: 5.96473958e-10 - art_sys_130: -4.09225648e-14 - art_sys_131: 1.63903564e-13 - art_sys_132: -2.04698249e-10 - art_sys_133: -4.79428784e-13 - art_sys_134: -9.78458179e-16 - art_sys_135: 3.49831698e-11 - art_sys_136: -9.60233730e-14 - art_sys_137: 1.06222526e-17 - art_sys_138: 4.30444040e-12 - art_sys_139: -3.40557207e-12 - art_sys_140: -5.02372849e-13 - art_sys_141: 7.70329532e-14 - art_sys_142: 6.45881039e-15 - art_sys_143: 3.56313721e-18 - art_sys_144: 6.35483780e-18 - art_sys_145: 2.64440391e-19 - art_sys_146: 0.0 - art_sys_147: 2.61641454e-16 - art_sys_148: 9.23155184e-16 - art_sys_149: 9.23155184e-16 - art_sys_150: -1.99202182e-15 - art_sys_151: -1.99202182e-15 - art_sys_152: 3.48457901e-14 - art_sys_153: -1.85805748e-15 - art_sys_154: 2.81082986e-19 - art_sys_155: -9.81382840e-27 - art_sys_156: 3.97192827e-31 - art_sys_157: 1.59750136e-29 - art_sys_158: -0.0 - art_sys_159: -1.60885151e-17 - art_sys_160: -7.93974758e-19 - art_sys_161: 5.92567342e-19 - art_sys_162: -7.29926608e-20 - art_sys_163: 4.69056840e-17 - art_sys_164: 2.70336105e-17 - art_sys_165: -4.03844260e-18 - art_sys_166: 1.33517634e-26 - art_sys_167: 2.10704798e-26 - art_sys_168: -3.71089129e-28 - art_sys_169: 1.05564636e-27 - art_sys_170: 1.70085988e-27 - art_sys_171: -6.44591682e-28 - art_sys_172: -9.54595891e-27 - art_sys_173: 1.46702654e-27 - art_sys_174: 8.67981058e-29 - art_sys_175: 1.39144985e-30 - art_sys_176: 2.10523425e-29 - art_sys_177: -9.84351429e-30 - art_sys_178: 6.32843583e-30 - art_sys_179: -4.40206439e-29 - art_sys_180: 2.97741374e-31 - art_sys_181: 1.45025572e-31 - art_sys_182: 3.52785811e-31 - art_sys_183: -3.72201950e-33 - art_sys_184: 4.13070004e-33 - art_sys_185: 1.92851870e-33 + art_sys_20: -1.58777875e-22 + art_sys_21: 1.12574643e-17 + art_sys_22: 5.42765996e-23 + art_sys_23: -1.59872925e-06 + art_sys_24: -1.14521553e-15 + art_sys_25: 1.73337631e-05 + art_sys_26: -1.12211817e-05 + art_sys_27: -1.02619981e-18 + art_sys_28: 5.93504311e-17 + art_sys_29: -1.11590296e-18 + art_sys_30: 5.32583361e-05 + art_sys_31: -9.61170662e-16 + art_sys_32: -2.66677919e-18 + art_sys_33: 2.43794845e-04 + art_sys_34: 3.45108960e-04 + art_sys_35: -8.25266408e-15 + art_sys_36: -3.34118496e-14 + art_sys_37: 3.50143581e-14 + art_sys_38: -7.91473468e-15 + art_sys_39: -2.58479538e-16 + art_sys_40: -6.67385551e-16 + art_sys_41: 8.62142298e-16 + art_sys_42: -5.26224834e-16 + art_sys_43: 5.03467616e-17 + art_sys_44: 3.75271421e-17 + art_sys_45: 5.31376003e-17 + art_sys_46: -1.25091709e-17 + art_sys_47: 1.35173387e-12 + art_sys_48: -1.03114433e-03 + art_sys_49: 1.23514879e-11 + art_sys_50: 1.36640721e-17 + art_sys_51: 1.95792814e-18 + art_sys_52: -3.07521083e-12 + art_sys_53: -3.25260614e-04 + art_sys_54: -3.25436788e-12 + art_sys_55: 5.34803453e-03 + art_sys_56: 1.57295598e-13 + art_sys_57: 1.53107251e-17 + art_sys_58: -2.78080617e-18 + art_sys_59: 2.24493509e-03 + art_sys_60: 3.52076837e-10 + art_sys_61: -4.43979147e-17 + art_sys_62: 4.70122199e-13 + art_sys_63: -5.37777356e-12 + art_sys_64: 1.67404113e-14 + art_sys_65: -1.30440825e-14 + art_sys_66: -1.32175498e-15 + art_sys_67: 5.81826840e-16 + art_sys_68: -2.41387625e-16 + art_sys_69: 1.04288550e-16 + art_sys_70: -9.22326109e-17 + art_sys_71: 3.87256370e-17 + art_sys_72: -9.53297735e-18 + art_sys_73: 9.85669556e-18 + art_sys_74: 1.10414718e-13 + art_sys_75: -4.41019080e-19 + art_sys_76: 6.92930279e-15 + art_sys_77: 4.18874692e-15 + art_sys_78: -1.05211961e-15 + art_sys_79: 9.38179874e-19 + art_sys_80: 3.52029343e-16 + art_sys_81: -2.84604339e-13 + art_sys_82: 4.99595760e-10 + art_sys_83: -8.60852129e-17 + art_sys_84: -4.42562766e-17 + art_sys_85: -6.52661471e-17 + art_sys_86: 1.27269362e-17 + art_sys_87: 2.77187779e-14 + art_sys_88: -1.73413732e-14 + art_sys_89: -8.99297875e-19 + art_sys_90: 5.31409864e-14 + art_sys_91: -4.51949668e-05 + art_sys_92: -1.82079310e-19 + art_sys_93: 1.17390183e-18 + art_sys_94: -1.86190625e-15 + art_sys_95: -1.48564162e-11 + art_sys_96: 5.33483467e-05 + art_sys_97: -2.45790927e-11 + art_sys_98: -1.19425033e-12 + art_sys_99: 3.64968946e-05 + art_sys_100: -4.16429575e-11 + art_sys_101: -2.31730226e-05 + art_sys_102: 1.91175992e-13 + art_sys_103: -8.37216110e-12 + art_sys_104: 1.33634862e-05 + art_sys_105: 1.63982862e-17 + art_sys_106: -6.23070026e-06 + art_sys_107: -4.82657337e-13 + art_sys_108: -8.62558263e-17 + art_sys_109: 9.68795122e-18 + art_sys_110: -6.67171910e-12 + art_sys_111: 2.67274725e-06 + art_sys_112: 1.11331950e-12 + art_sys_113: 9.47631288e-11 + art_sys_114: 6.38673027e-19 + art_sys_115: -1.04244308e-06 + art_sys_116: 3.10182408e-13 + art_sys_117: 1.88751824e-17 + art_sys_118: 3.78934325e-07 + art_sys_119: 1.39704391e-13 + art_sys_120: -1.41429513e-12 + art_sys_121: -8.73519832e-20 + art_sys_122: -1.63551919e-07 + art_sys_123: -1.96816932e-14 + art_sys_124: 6.03748816e-08 + art_sys_125: -3.89928475e-19 + art_sys_126: -4.08125050e-13 + art_sys_127: 8.17438773e-16 + art_sys_128: -2.06068668e-08 + art_sys_129: 6.27725011e-19 + art_sys_130: -8.12599335e-15 + art_sys_131: -8.94895715e-18 + art_sys_132: -6.92863745e-09 + art_sys_133: 1.55988953e-14 + art_sys_134: -6.51599715e-14 + art_sys_135: 2.28232307e-09 + art_sys_136: 1.61900639e-18 + art_sys_137: -6.08737037e-16 + art_sys_138: 5.97633332e-10 + art_sys_139: 1.31716827e-14 + art_sys_140: -1.35459666e-18 + art_sys_141: 4.06731268e-15 + art_sys_142: 2.02972703e-10 + art_sys_143: 3.75125618e-15 + art_sys_144: -6.37279302e-17 + art_sys_145: 3.42421397e-11 + art_sys_146: -2.09020856e-15 + art_sys_147: 2.37152360e-17 + art_sys_148: -7.84927795e-19 + art_sys_149: -3.47166456e-12 + art_sys_150: 9.99196777e-14 + art_sys_151: 5.39918231e-15 + art_sys_152: -9.43431745e-17 + art_sys_153: 1.37686726e-14 + art_sys_154: -8.65491442e-14 + art_sys_155: -5.03541594e-17 + art_sys_156: 0.0 + art_sys_157: -3.85195171e-14 + art_sys_158: 0.0 + art_sys_159: 6.12158940e-15 + art_sys_160: -7.97074334e-16 + art_sys_161: -6.84557210e-16 + art_sys_162: -6.84557210e-16 + art_sys_163: -7.07030518e-16 + art_sys_164: -7.07030518e-16 + art_sys_165: 7.97463240e-30 + art_sys_166: -2.64695302e-30 + art_sys_167: -0.0 + art_sys_168: 4.24000673e-26 + art_sys_169: 1.79565184e-26 + art_sys_170: -5.74333172e-27 + art_sys_171: 1.22478971e-28 + art_sys_172: -1.74363391e-27 + art_sys_173: -2.98430210e-28 + art_sys_174: -2.46876640e-29 + art_sys_175: -5.61205190e-29 + art_sys_176: -9.45793919e-30 + art_sys_177: 5.05416620e-30 + art_sys_178: -8.10659161e-30 + art_sys_179: 1.53369298e-29 + art_sys_180: 1.59201971e-28 + art_sys_181: -3.53454510e-28 + art_sys_182: 4.74555946e-30 + art_sys_183: -3.65149060e-32 + art_sys_184: -2.19106036e-32 + art_sys_185: -2.90834096e-32 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -8969,191 +8969,191 @@ bins: RelativeStatFSR-: -8.72828422e-04 luminosity_uncertainty: 3.44572800e-02 uncorrelated_uncertainty: 1.32528000e-02 -- art_sys_1: -8.83629690e-44 - art_sys_2: -1.43657484e-31 - art_sys_3: -6.67842579e-31 - art_sys_4: -1.05415295e-11 - art_sys_5: -6.28046778e-26 - art_sys_6: 9.97493245e-29 - art_sys_7: -2.68461037e-10 - art_sys_8: -5.36059247e-26 - art_sys_9: 3.72996198e-10 - art_sys_10: -4.43250207e-27 - art_sys_11: 2.03984134e-23 +- art_sys_1: 5.46500473e-42 + art_sys_2: -2.05701948e-30 + art_sys_3: -1.00839044e-30 + art_sys_4: 1.05415295e-11 + art_sys_5: 1.91291558e-26 + art_sys_6: 6.60871815e-29 + art_sys_7: 2.68461037e-10 + art_sys_8: 4.17879979e-26 + art_sys_9: -3.72996198e-10 + art_sys_10: -3.82965631e-27 + art_sys_11: 1.41091318e-24 art_sys_12: -1.04893981e-09 - art_sys_13: -8.39873189e-25 + art_sys_13: -1.11806766e-23 art_sys_14: -3.82468976e-08 - art_sys_15: 6.66761550e-23 - art_sys_16: 1.08764212e-07 - art_sys_17: -2.94696459e-24 - art_sys_18: 5.77899128e-19 - art_sys_19: 1.79974662e-07 - art_sys_20: 9.19685834e-24 - art_sys_21: 3.97059272e-18 - art_sys_22: 1.50784267e-08 - art_sys_23: 5.25540650e-23 - art_sys_24: -4.89184702e-16 - art_sys_25: 5.04242443e-14 - art_sys_26: -1.18831772e-14 - art_sys_27: -6.31566648e-15 - art_sys_28: -1.15433600e-06 - art_sys_29: -1.07708406e-05 - art_sys_30: 4.76033904e-15 - art_sys_31: -7.80634646e-16 - art_sys_32: -8.46154306e-16 - art_sys_33: -8.29874607e-17 - art_sys_34: -1.47967654e-19 - art_sys_35: 5.65812665e-17 - art_sys_36: -1.88211793e-15 - art_sys_37: 1.05965779e-05 - art_sys_38: 3.32309024e-16 - art_sys_39: -1.28167915e-16 - art_sys_40: 1.61397987e-13 - art_sys_41: 4.24609810e-05 - art_sys_42: -1.22854998e-04 - art_sys_43: 4.76224896e-17 - art_sys_44: 2.18491810e-17 - art_sys_45: 3.53792754e-17 - art_sys_46: -1.75693012e-13 - art_sys_47: -2.76357961e-14 - art_sys_48: 1.88756223e-05 - art_sys_49: 4.21189364e-14 - art_sys_50: -1.03661007e-14 - art_sys_51: 1.33671520e-14 - art_sys_52: 1.40898654e-15 - art_sys_53: 1.86753882e-15 - art_sys_54: 9.84277803e-16 - art_sys_55: -1.50031958e-17 - art_sys_56: -2.70441755e-14 - art_sys_57: 4.82190539e-14 - art_sys_58: -1.34504727e-16 - art_sys_59: 5.38370160e-17 - art_sys_60: 4.20346538e-04 - art_sys_61: 6.45862115e-12 - art_sys_62: -3.76367005e-11 - art_sys_63: -6.84548892e-12 - art_sys_64: 1.93100592e-04 - art_sys_65: -7.58943664e-17 - art_sys_66: 8.93991192e-18 - art_sys_67: -6.14802535e-14 - art_sys_68: -1.58847066e-13 - art_sys_69: 1.43690181e-12 - art_sys_70: -5.63956345e-04 - art_sys_71: 2.50300394e-10 - art_sys_72: 9.30967581e-14 - art_sys_73: -1.25916815e-14 - art_sys_74: -1.66827578e-14 - art_sys_75: 2.14241625e-15 - art_sys_76: 1.86751507e-17 - art_sys_77: -6.10500714e-11 - art_sys_78: 1.68440321e-11 - art_sys_79: -7.65730302e-16 - art_sys_80: -1.09476388e-11 - art_sys_81: 3.83010180e-16 - art_sys_82: 6.67444295e-16 - art_sys_83: 4.04989112e-14 - art_sys_84: 3.68665041e-16 - art_sys_85: 2.48321722e-16 - art_sys_86: 5.63893527e-14 - art_sys_87: -9.14841439e-10 - art_sys_88: 1.07654092e-14 - art_sys_89: 2.64541420e-16 - art_sys_90: -6.35760329e-04 - art_sys_91: -3.18425983e-10 - art_sys_92: 1.45999291e-04 - art_sys_93: -1.41035849e-11 - art_sys_94: -1.95142361e-04 - art_sys_95: 1.10565768e-11 - art_sys_96: 1.43253041e-15 - art_sys_97: -7.68094477e-11 - art_sys_98: 1.02907822e-04 - art_sys_99: -1.28866622e-10 - art_sys_100: -4.36975337e-11 - art_sys_101: 5.98477593e-05 - art_sys_102: -2.76586988e-05 - art_sys_103: 1.86935789e-12 - art_sys_104: -4.14862921e-10 - art_sys_105: -1.17887107e-05 - art_sys_106: 1.53747419e-10 - art_sys_107: 9.71424839e-16 - art_sys_108: -5.96262918e-17 - art_sys_109: -2.77875717e-16 - art_sys_110: 8.24240521e-12 - art_sys_111: 4.60501019e-06 - art_sys_112: 2.77999154e-13 - art_sys_113: 3.11363066e-18 - art_sys_114: -1.67184534e-06 - art_sys_115: -1.48463616e-13 - art_sys_116: 8.08116571e-12 - art_sys_117: 7.21756846e-07 - art_sys_118: 5.62873808e-13 - art_sys_119: -2.66416000e-07 - art_sys_120: -1.37801375e-11 - art_sys_121: 4.28447763e-14 - art_sys_122: -9.09950651e-08 - art_sys_123: -3.06549237e-08 - art_sys_124: -3.38269823e-14 - art_sys_125: -3.99785890e-12 - art_sys_126: 9.60510781e-14 - art_sys_127: 1.00776825e-08 - art_sys_128: 1.14109345e-13 - art_sys_129: -2.63670378e-09 - art_sys_130: 1.80945803e-13 - art_sys_131: -7.24665580e-13 - art_sys_132: 9.05013199e-10 - art_sys_133: 2.11966507e-12 - art_sys_134: 4.32596245e-15 - art_sys_135: -1.54690006e-10 - art_sys_136: 4.24586204e-13 - art_sys_137: -4.69666054e-17 - art_sys_138: -1.94607912e-11 - art_sys_139: 1.50589090e-11 - art_sys_140: 2.22139877e-12 - art_sys_141: -3.40624254e-13 - art_sys_142: -2.85417588e-14 - art_sys_143: -1.57559639e-17 - art_sys_144: -2.81003052e-17 - art_sys_145: -1.18206284e-18 - art_sys_146: -0.0 - art_sys_147: -1.15810809e-15 - art_sys_148: -4.06383573e-15 - art_sys_149: -4.06383573e-15 - art_sys_150: 8.81153785e-15 - art_sys_151: 8.81153785e-15 - art_sys_152: -1.54043332e-13 - art_sys_153: 8.21390011e-15 - art_sys_154: -1.24116733e-18 - art_sys_155: 4.33819077e-26 - art_sys_156: -1.75646413e-30 - art_sys_157: -7.05837737e-29 - art_sys_158: 0.0 - art_sys_159: 7.09443331e-17 - art_sys_160: 3.50293081e-18 - art_sys_161: -2.62192905e-18 - art_sys_162: 3.22649850e-19 - art_sys_163: -2.07411688e-16 - art_sys_164: -1.19491843e-16 - art_sys_165: 1.78541173e-17 - art_sys_166: -5.90429630e-26 - art_sys_167: -9.27838681e-26 - art_sys_168: 1.65204445e-27 - art_sys_169: -4.13226503e-27 - art_sys_170: -6.65737310e-27 - art_sys_171: 4.66363348e-27 - art_sys_172: 2.37105692e-27 - art_sys_173: -3.72772334e-28 - art_sys_174: -1.55044749e-28 - art_sys_175: -6.14311748e-30 - art_sys_176: -7.39538163e-30 - art_sys_177: 6.38747247e-29 - art_sys_178: -3.18590311e-29 - art_sys_179: 1.93946596e-28 - art_sys_180: -3.35126543e-30 - art_sys_181: -5.11885581e-31 - art_sys_182: -1.59406677e-30 - art_sys_183: 1.50492345e-32 - art_sys_184: -1.82526854e-32 - art_sys_185: -8.52610901e-33 + art_sys_15: 2.08636567e-22 + art_sys_16: -1.08764212e-07 + art_sys_17: -4.25251367e-24 + art_sys_18: -1.68132979e-21 + art_sys_19: 1.79974661e-07 + art_sys_20: -1.88878958e-24 + art_sys_21: -1.76316298e-20 + art_sys_22: 1.42458415e-23 + art_sys_23: 1.50784266e-08 + art_sys_24: 1.49471382e-18 + art_sys_25: 1.15433600e-06 + art_sys_26: -1.07708406e-05 + art_sys_27: -2.10634384e-18 + art_sys_28: -1.43380309e-17 + art_sys_29: 7.71524087e-19 + art_sys_30: -1.05965779e-05 + art_sys_31: -5.04921124e-17 + art_sys_32: 9.73927761e-19 + art_sys_33: 4.24609803e-05 + art_sys_34: -1.22854998e-04 + art_sys_35: 1.61743923e-16 + art_sys_36: -5.23361101e-14 + art_sys_37: 1.39331547e-14 + art_sys_38: 2.14058444e-15 + art_sys_39: 4.35100933e-15 + art_sys_40: 1.76667726e-15 + art_sys_41: 1.12598528e-15 + art_sys_42: -4.03221109e-16 + art_sys_43: 1.88423380e-17 + art_sys_44: -2.70648264e-17 + art_sys_45: 6.50717345e-17 + art_sys_46: 1.75725926e-17 + art_sys_47: 2.47382857e-14 + art_sys_48: -1.88756222e-05 + art_sys_49: 2.14573371e-13 + art_sys_50: 1.16684045e-19 + art_sys_51: -3.09865183e-17 + art_sys_52: -5.74661932e-14 + art_sys_53: 4.20346532e-04 + art_sys_54: -1.64905877e-12 + art_sys_55: 1.93100597e-04 + art_sys_56: -1.84727160e-14 + art_sys_57: -5.68803110e-17 + art_sys_58: 1.84817334e-17 + art_sys_59: 5.63956254e-04 + art_sys_60: 2.24789870e-10 + art_sys_61: 7.53223670e-16 + art_sys_62: -1.57637144e-13 + art_sys_63: 1.43835299e-10 + art_sys_64: 1.68071482e-14 + art_sys_65: 6.83675467e-14 + art_sys_66: 2.88812896e-16 + art_sys_67: -3.33559544e-15 + art_sys_68: 2.32168619e-15 + art_sys_69: -3.16853005e-16 + art_sys_70: 5.48445006e-16 + art_sys_71: -2.99447109e-16 + art_sys_72: 7.55841562e-17 + art_sys_73: -2.26786200e-17 + art_sys_74: -2.70324696e-13 + art_sys_75: 9.03909771e-18 + art_sys_76: -5.46076624e-14 + art_sys_77: -1.58285568e-14 + art_sys_78: 4.74359234e-15 + art_sys_79: -5.60671856e-18 + art_sys_80: -1.06226988e-15 + art_sys_81: 7.77903423e-13 + art_sys_82: -2.18898126e-09 + art_sys_83: 1.69544459e-15 + art_sys_84: 1.71370805e-16 + art_sys_85: 5.59498306e-16 + art_sys_86: -1.02057856e-16 + art_sys_87: -1.20950535e-13 + art_sys_88: 7.65411183e-14 + art_sys_89: -4.39836575e-17 + art_sys_90: -2.34518336e-13 + art_sys_91: 6.35761496e-04 + art_sys_92: 6.44771501e-18 + art_sys_93: -4.83788061e-18 + art_sys_94: 8.22804651e-15 + art_sys_95: 9.08049228e-11 + art_sys_96: -1.46000841e-04 + art_sys_97: 6.50137443e-11 + art_sys_98: 5.66706742e-12 + art_sys_99: -1.95142224e-04 + art_sys_100: 1.84835791e-10 + art_sys_101: 1.02906852e-04 + art_sys_102: -8.29160227e-13 + art_sys_103: 4.04736782e-11 + art_sys_104: -5.98485147e-05 + art_sys_105: -7.23860878e-17 + art_sys_106: 2.76586556e-05 + art_sys_107: 2.13132081e-12 + art_sys_108: 3.81437759e-16 + art_sys_109: -4.28913996e-17 + art_sys_110: 2.94427823e-11 + art_sys_111: -1.17890663e-05 + art_sys_112: -4.91426457e-12 + art_sys_113: -4.16946839e-10 + art_sys_114: -2.81953963e-18 + art_sys_115: 4.60500193e-06 + art_sys_116: -1.36954059e-12 + art_sys_117: -8.32912219e-17 + art_sys_118: -1.67180566e-06 + art_sys_119: -6.17361658e-13 + art_sys_120: 6.25211362e-12 + art_sys_121: 4.05812697e-19 + art_sys_122: 7.21652331e-07 + art_sys_123: 8.70177599e-14 + art_sys_124: -2.66647868e-07 + art_sys_125: 1.72503810e-18 + art_sys_126: 1.80321880e-12 + art_sys_127: -3.61522173e-15 + art_sys_128: 9.09842123e-08 + art_sys_129: -2.77561705e-18 + art_sys_130: 3.59344947e-14 + art_sys_131: 3.95756134e-17 + art_sys_132: 3.06176688e-08 + art_sys_133: -6.89800945e-14 + art_sys_134: 2.88164631e-13 + art_sys_135: -1.00852999e-08 + art_sys_136: -7.15813965e-18 + art_sys_137: 2.69135955e-15 + art_sys_138: -2.64182859e-09 + art_sys_139: -5.82437936e-14 + art_sys_140: 5.99059680e-18 + art_sys_141: -1.79814618e-14 + art_sys_142: -8.97386261e-10 + art_sys_143: -1.65866828e-14 + art_sys_144: 2.81729693e-16 + art_sys_145: -1.51414886e-10 + art_sys_146: 9.24230332e-15 + art_sys_147: -1.04864918e-16 + art_sys_148: 3.47097947e-18 + art_sys_149: 1.53513978e-11 + art_sys_150: -4.41833745e-13 + art_sys_151: -2.38807012e-14 + art_sys_152: 4.17171560e-16 + art_sys_153: -6.08879222e-14 + art_sys_154: 3.71506661e-13 + art_sys_155: 2.22621178e-16 + art_sys_156: -0.0 + art_sys_157: 1.70410845e-13 + art_sys_158: -0.0 + art_sys_159: -2.70749717e-14 + art_sys_160: 3.52607395e-15 + art_sys_161: 3.02700634e-15 + art_sys_162: 3.02700634e-15 + art_sys_163: 3.12685375e-15 + art_sys_164: 3.12685375e-15 + art_sys_165: -3.52671874e-29 + art_sys_166: 1.17059005e-29 + art_sys_167: 0.0 + art_sys_168: -1.93783070e-25 + art_sys_169: -7.63403254e-26 + art_sys_170: 2.14020847e-26 + art_sys_171: -3.94207539e-26 + art_sys_172: 1.15689085e-27 + art_sys_173: 8.53483545e-28 + art_sys_174: 7.39951116e-28 + art_sys_175: 1.98164202e-28 + art_sys_176: 5.18237470e-29 + art_sys_177: -2.23356685e-29 + art_sys_178: 3.56971042e-29 + art_sys_179: -6.77960795e-29 + art_sys_180: -7.04114693e-28 + art_sys_181: 1.55772942e-27 + art_sys_182: -1.54005233e-29 + art_sys_183: 1.64516210e-31 + art_sys_184: 9.69875842e-32 + art_sys_185: 1.28594399e-31 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -9260,191 +9260,191 @@ bins: RelativeStatFSR-: -5.58758717e-04 luminosity_uncertainty: 2.06693240e-02 uncorrelated_uncertainty: 7.94974000e-03 -- art_sys_1: 1.39713977e-45 - art_sys_2: 1.60903654e-33 - art_sys_3: -4.84321558e-32 - art_sys_4: 1.18070732e-13 - art_sys_5: -4.49619859e-27 - art_sys_6: -1.26612658e-30 - art_sys_7: -1.91812392e-11 - art_sys_8: -4.38808594e-27 - art_sys_9: 2.68130690e-11 - art_sys_10: -3.26320601e-28 - art_sys_11: 1.97742349e-24 +- art_sys_1: -6.10942601e-44 + art_sys_2: 2.30397115e-32 + art_sys_3: -1.64413257e-32 + art_sys_4: -1.18070732e-13 + art_sys_5: 1.25510570e-27 + art_sys_6: -7.58142486e-31 + art_sys_7: 1.91812392e-11 + art_sys_8: -7.65336206e-27 + art_sys_9: -2.68130690e-11 + art_sys_10: -2.77096964e-28 + art_sys_11: 4.28849469e-26 art_sys_12: -8.92162203e-11 - art_sys_13: -5.53426989e-26 + art_sys_13: -7.22445751e-25 art_sys_14: -2.47302405e-09 - art_sys_15: 3.39534544e-23 - art_sys_16: 1.08812644e-08 - art_sys_17: 2.25401899e-25 - art_sys_18: 1.60928987e-19 - art_sys_19: 9.90529110e-09 - art_sys_20: 9.69776069e-24 - art_sys_21: 1.09506643e-18 - art_sys_22: 2.08494092e-08 - art_sys_23: 1.74750703e-23 - art_sys_24: -2.03454549e-16 - art_sys_25: 1.82264323e-14 - art_sys_26: 3.08661691e-14 - art_sys_27: 4.73658521e-15 - art_sys_28: 1.30841204e-07 - art_sys_29: -2.03456234e-06 - art_sys_30: -2.43194292e-15 - art_sys_31: -1.35118599e-15 - art_sys_32: -8.84238720e-16 - art_sys_33: 1.08108196e-15 - art_sys_34: 8.80163975e-18 - art_sys_35: 1.92932288e-17 - art_sys_36: -7.02918611e-16 - art_sys_37: 3.95714784e-06 - art_sys_38: -1.46196694e-16 - art_sys_39: 1.48079913e-16 - art_sys_40: -1.83094340e-14 - art_sys_41: -4.81681405e-06 - art_sys_42: -3.52910637e-05 - art_sys_43: -6.30147125e-17 - art_sys_44: 1.65994664e-17 - art_sys_45: -2.87571081e-17 - art_sys_46: -5.20141011e-14 - art_sys_47: 9.30403189e-14 - art_sys_48: -6.38783747e-05 - art_sys_49: -7.29742051e-15 - art_sys_50: -1.10384036e-14 - art_sys_51: 1.39867070e-14 - art_sys_52: 2.26078645e-16 - art_sys_53: 8.37540551e-17 - art_sys_54: 7.92391293e-17 - art_sys_55: -2.88194054e-17 - art_sys_56: -2.73824757e-15 - art_sys_57: -1.68674712e-13 - art_sys_58: -8.85053663e-16 - art_sys_59: -5.21993629e-17 - art_sys_60: 4.23106088e-05 - art_sys_61: 5.12546235e-13 - art_sys_62: 8.30378687e-11 - art_sys_63: 2.35053461e-12 - art_sys_64: -4.02278019e-04 - art_sys_65: -3.98717243e-18 - art_sys_66: -8.99482235e-17 - art_sys_67: 2.64106826e-13 - art_sys_68: -1.16628424e-13 - art_sys_69: -2.32384771e-12 - art_sys_70: 1.93642742e-04 - art_sys_71: 3.54735449e-10 - art_sys_72: 4.12463246e-13 - art_sys_73: 5.84226926e-14 - art_sys_74: -1.12739152e-14 - art_sys_75: 1.42195096e-14 - art_sys_76: -1.96786298e-17 - art_sys_77: -1.04342450e-10 - art_sys_78: -1.61036417e-11 - art_sys_79: -1.34038872e-15 - art_sys_80: 2.04039074e-11 - art_sys_81: 9.66378198e-16 - art_sys_82: -2.60399659e-17 - art_sys_83: -8.50429216e-14 - art_sys_84: 5.63355493e-17 - art_sys_85: 2.10416138e-16 - art_sys_86: -1.23220320e-13 - art_sys_87: 1.15709633e-09 - art_sys_88: -2.35876135e-14 - art_sys_89: -5.85955145e-16 - art_sys_90: -4.67160702e-04 - art_sys_91: 5.47742603e-10 - art_sys_92: -3.32465465e-04 - art_sys_93: 6.60399106e-11 - art_sys_94: 1.30018778e-04 - art_sys_95: -2.22381079e-11 - art_sys_96: -3.16303937e-15 - art_sys_97: 1.45922418e-10 - art_sys_98: -1.45096189e-04 - art_sys_99: 9.99247704e-11 - art_sys_100: 9.09416331e-11 - art_sys_101: -9.14734625e-05 - art_sys_102: 4.79330741e-05 - art_sys_103: -3.81129972e-12 - art_sys_104: 2.31256982e-10 - art_sys_105: 2.20102266e-05 - art_sys_106: -3.03640078e-10 - art_sys_107: -2.16763609e-15 - art_sys_108: 1.33308396e-16 - art_sys_109: 6.74933461e-16 - art_sys_110: -1.80055531e-11 - art_sys_111: -9.04515732e-06 - art_sys_112: -6.46936120e-13 - art_sys_113: -6.54070113e-18 - art_sys_114: 3.41857485e-06 - art_sys_115: 3.27505315e-13 - art_sys_116: -1.76409125e-11 - art_sys_117: -1.50984522e-06 - art_sys_118: -1.24286362e-12 - art_sys_119: 5.69294608e-07 - art_sys_120: 3.01306668e-11 - art_sys_121: -9.55466739e-14 - art_sys_122: 1.97623440e-07 - art_sys_123: 6.72478860e-08 - art_sys_124: 7.54868731e-14 - art_sys_125: 8.86484016e-12 - art_sys_126: -2.14303570e-13 - art_sys_127: -2.22861529e-08 - art_sys_128: -2.55821576e-13 - art_sys_129: 5.86497062e-09 - art_sys_130: -4.05132836e-13 - art_sys_131: 1.61991631e-12 - art_sys_132: -2.02043484e-09 - art_sys_133: -4.73235126e-12 - art_sys_134: -9.65769120e-15 - art_sys_135: 3.46621660e-10 - art_sys_136: -9.50280267e-13 - art_sys_137: 1.05049525e-16 - art_sys_138: 2.05178020e-11 - art_sys_139: -3.38015371e-11 - art_sys_140: -4.98548251e-12 - art_sys_141: 7.63818294e-13 - art_sys_142: 6.38698721e-14 - art_sys_143: 3.53867602e-17 - art_sys_144: 6.30410902e-17 - art_sys_145: 2.70666291e-18 - art_sys_146: 0.0 - art_sys_147: 2.57380402e-15 - art_sys_148: 9.26632688e-15 - art_sys_149: 9.26632688e-15 - art_sys_150: -2.00569223e-14 - art_sys_151: -2.00569223e-14 - art_sys_152: 3.41119682e-13 - art_sys_153: -1.81096368e-14 - art_sys_154: 2.68316507e-18 - art_sys_155: -9.58771152e-26 - art_sys_156: 3.93520139e-30 - art_sys_157: 1.54134679e-28 - art_sys_158: -0.0 - art_sys_159: -1.22341940e-16 - art_sys_160: -7.23318788e-18 - art_sys_161: 5.95899692e-18 - art_sys_162: -7.15852971e-19 - art_sys_163: 4.63535227e-16 - art_sys_164: 2.66811006e-16 - art_sys_165: -3.98356796e-17 - art_sys_166: 1.41110227e-25 - art_sys_167: 2.23338730e-25 - art_sys_168: -5.53929753e-27 - art_sys_169: 1.04252063e-26 - art_sys_170: 1.58455876e-26 - art_sys_171: -1.07980454e-26 - art_sys_172: -4.79286314e-27 - art_sys_173: 1.46897364e-27 - art_sys_174: 3.78932509e-28 - art_sys_175: 1.37228667e-29 - art_sys_176: 3.79687520e-29 - art_sys_177: -1.60923889e-28 - art_sys_178: 6.97702579e-29 - art_sys_179: -3.68414693e-28 - art_sys_180: 4.80473838e-30 - art_sys_181: 1.16987000e-30 - art_sys_182: 3.88737515e-30 - art_sys_183: -3.38611319e-32 - art_sys_184: 4.05537120e-32 - art_sys_185: 1.90368553e-32 + art_sys_15: 3.54650690e-23 + art_sys_16: -1.08812644e-08 + art_sys_17: -3.54372085e-25 + art_sys_18: 8.04405419e-20 + art_sys_19: 9.90529183e-09 + art_sys_20: 1.38823679e-24 + art_sys_21: -6.21729979e-19 + art_sys_22: 1.85723967e-24 + art_sys_23: 2.08494092e-08 + art_sys_24: 1.27993360e-16 + art_sys_25: -1.30841204e-07 + art_sys_26: -2.03456234e-06 + art_sys_27: -5.43229313e-18 + art_sys_28: -4.88873291e-18 + art_sys_29: 3.66297776e-18 + art_sys_30: -3.95714784e-06 + art_sys_31: 3.44546387e-17 + art_sys_32: 2.24251722e-18 + art_sys_33: -4.81681427e-06 + art_sys_34: -3.52910636e-05 + art_sys_35: 7.27103964e-16 + art_sys_36: 8.36231600e-15 + art_sys_37: -4.36461711e-15 + art_sys_38: 3.19919429e-15 + art_sys_39: -3.65861783e-15 + art_sys_40: 1.79114145e-15 + art_sys_41: -1.38161441e-15 + art_sys_42: 5.94622705e-17 + art_sys_43: -1.77364728e-16 + art_sys_44: 7.82123725e-17 + art_sys_45: -1.04733129e-16 + art_sys_46: -6.33391891e-17 + art_sys_47: -8.37395319e-14 + art_sys_48: 6.38783746e-05 + art_sys_49: -7.65755774e-13 + art_sys_50: -2.88676232e-17 + art_sys_51: 4.96005483e-17 + art_sys_52: 1.67392884e-13 + art_sys_53: 4.23106215e-05 + art_sys_54: 1.80722068e-13 + art_sys_55: -4.02278028e-04 + art_sys_56: -1.04470140e-13 + art_sys_57: 9.40581715e-17 + art_sys_58: -3.84390793e-17 + art_sys_59: -1.93642814e-04 + art_sys_60: 8.21267737e-11 + art_sys_61: 5.94693243e-16 + art_sys_62: 1.16716066e-13 + art_sys_63: 2.95951355e-10 + art_sys_64: -1.14887641e-14 + art_sys_65: -1.20635348e-14 + art_sys_66: -1.47398773e-15 + art_sys_67: 4.56126855e-16 + art_sys_68: 4.98235391e-16 + art_sys_69: 8.23274662e-16 + art_sys_70: -3.42626403e-16 + art_sys_71: 1.89465180e-17 + art_sys_72: -1.98513752e-17 + art_sys_73: 8.34719253e-17 + art_sys_74: 7.33728622e-13 + art_sys_75: 4.35180640e-18 + art_sys_76: -7.82756295e-15 + art_sys_77: 2.67112571e-14 + art_sys_78: -3.61716676e-15 + art_sys_79: 1.68612286e-18 + art_sys_80: 2.58961899e-15 + art_sys_81: -1.77510129e-12 + art_sys_82: 1.91418665e-09 + art_sys_83: 1.47636322e-15 + art_sys_84: -2.04130561e-16 + art_sys_85: 1.08896038e-16 + art_sys_86: -9.25317511e-18 + art_sys_87: 1.90060559e-13 + art_sys_88: -1.41930449e-13 + art_sys_89: -6.73767641e-17 + art_sys_90: 5.16087832e-13 + art_sys_91: 4.67162566e-04 + art_sys_92: 1.07369695e-17 + art_sys_93: 5.16314343e-18 + art_sys_94: -1.80529406e-14 + art_sys_95: 5.98343238e-12 + art_sys_96: 3.32465915e-04 + art_sys_97: -1.46129485e-10 + art_sys_98: 1.39236652e-11 + art_sys_99: 1.30018272e-04 + art_sys_100: -2.70223911e-10 + art_sys_101: -1.45094746e-04 + art_sys_102: -4.74881546e-13 + art_sys_103: -4.46590410e-11 + art_sys_104: 9.14747821e-05 + art_sys_105: 1.56209618e-16 + art_sys_106: -4.79332261e-05 + art_sys_107: -4.65300725e-12 + art_sys_108: -8.56522008e-16 + art_sys_109: 8.95029801e-17 + art_sys_110: -6.19421447e-11 + art_sys_111: 2.20107536e-05 + art_sys_112: 1.02634884e-11 + art_sys_113: 7.78442630e-10 + art_sys_114: 6.50961832e-18 + art_sys_115: -9.04513952e-06 + art_sys_116: 2.97636074e-12 + art_sys_117: 1.59650994e-16 + art_sys_118: 3.41848856e-06 + art_sys_119: 1.35875939e-12 + art_sys_120: -1.37749751e-11 + art_sys_121: -2.91081397e-18 + art_sys_122: -1.50962602e-06 + art_sys_123: -1.94542309e-13 + art_sys_124: 5.69777349e-07 + art_sys_125: -3.94953316e-18 + art_sys_126: -3.98517399e-12 + art_sys_127: 8.15266186e-15 + art_sys_128: -1.97599126e-07 + art_sys_129: 6.29970425e-18 + art_sys_130: -8.07039918e-14 + art_sys_131: -8.88504916e-17 + art_sys_132: -6.71670620e-08 + art_sys_133: 1.54886965e-13 + art_sys_134: -6.48310903e-13 + art_sys_135: 2.23030062e-08 + art_sys_136: 1.60578931e-17 + art_sys_137: -6.04891354e-15 + art_sys_138: 5.87648723e-09 + art_sys_139: 1.30644536e-13 + art_sys_140: -1.34658303e-17 + art_sys_141: 4.00811360e-14 + art_sys_142: 2.00353378e-09 + art_sys_143: 3.71303535e-14 + art_sys_144: -6.28427286e-16 + art_sys_145: 3.39373694e-10 + art_sys_146: -2.07105642e-14 + art_sys_147: 2.35036514e-16 + art_sys_148: -7.55555320e-18 + art_sys_149: -3.44717634e-11 + art_sys_150: 9.92093867e-13 + art_sys_151: 5.36170189e-14 + art_sys_152: -9.36391554e-16 + art_sys_153: 1.36661270e-13 + art_sys_154: -6.97593286e-13 + art_sys_155: -4.99428311e-16 + art_sys_156: 0.0 + art_sys_157: -3.82829040e-13 + art_sys_158: 0.0 + art_sys_159: 6.07846527e-14 + art_sys_160: -7.92071397e-15 + art_sys_161: -6.79262803e-15 + art_sys_162: -6.79262803e-15 + art_sys_163: -7.01891875e-15 + art_sys_164: -7.01891875e-15 + art_sys_165: 7.91614917e-29 + art_sys_166: -2.62751277e-29 + art_sys_167: -0.0 + art_sys_168: 3.92440147e-25 + art_sys_169: 1.62403683e-25 + art_sys_170: -4.55852290e-26 + art_sys_171: 8.34574080e-26 + art_sys_172: -1.67364267e-27 + art_sys_173: -1.79170953e-27 + art_sys_174: -1.54805141e-27 + art_sys_175: -3.87599840e-28 + art_sys_176: -1.41158833e-28 + art_sys_177: 3.56303508e-29 + art_sys_178: -7.93936057e-29 + art_sys_179: 1.52045237e-28 + art_sys_180: 1.58071498e-27 + art_sys_181: -2.89003802e-27 + art_sys_182: 3.29337168e-29 + art_sys_183: -3.53452673e-31 + art_sys_184: -2.15985865e-31 + art_sys_185: -2.87852377e-31 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -9551,191 +9551,191 @@ bins: RelativeStatFSR-: -3.66056269e-04 luminosity_uncertainty: 1.26978540e-02 uncorrelated_uncertainty: 4.88379000e-03 -- art_sys_1: 1.23612280e-45 - art_sys_2: 1.89001109e-33 - art_sys_3: -7.16156509e-34 - art_sys_4: 1.38688319e-13 - art_sys_5: -1.47718542e-28 - art_sys_6: -1.34086291e-30 - art_sys_7: -7.30758562e-13 - art_sys_8: -7.82595367e-29 - art_sys_9: -6.68587790e-15 - art_sys_10: -2.94843334e-30 - art_sys_11: 1.92176237e-25 +- art_sys_1: -7.18597319e-44 + art_sys_2: 2.70629206e-32 + art_sys_3: 2.87580045e-33 + art_sys_4: -1.38688319e-13 + art_sys_5: 4.76475747e-29 + art_sys_6: -8.81379460e-31 + art_sys_7: 7.30758562e-13 + art_sys_8: 9.48905755e-28 + art_sys_9: 6.68587790e-15 + art_sys_10: -9.29128639e-30 + art_sys_11: -8.81504916e-27 art_sys_12: -1.07733305e-11 - art_sys_13: -3.53765852e-27 + art_sys_13: -4.49796210e-26 art_sys_14: -1.54279124e-10 - art_sys_15: 2.64065943e-24 - art_sys_16: 1.18062496e-09 - art_sys_17: 5.31769109e-26 - art_sys_18: 1.85675598e-22 + art_sys_15: 3.72469517e-24 + art_sys_16: -1.18062496e-09 + art_sys_17: -3.49108181e-26 + art_sys_18: 3.63420787e-23 art_sys_19: 7.61106745e-10 - art_sys_20: 1.08245873e-24 - art_sys_21: 3.08304229e-21 - art_sys_22: 2.31910336e-09 - art_sys_23: 1.65491927e-24 - art_sys_24: 1.08781424e-18 - art_sys_25: -7.95854681e-15 - art_sys_26: 1.38024571e-14 - art_sys_27: 5.88211286e-15 - art_sys_28: 2.08411151e-08 - art_sys_29: -9.34220179e-08 - art_sys_30: -6.22868070e-15 - art_sys_31: -1.12418914e-15 - art_sys_32: 1.15142177e-15 - art_sys_33: 1.17182734e-15 - art_sys_34: 5.58421457e-18 - art_sys_35: 1.06145423e-18 - art_sys_36: -4.30734122e-17 - art_sys_37: 2.42096798e-07 - art_sys_38: 2.19577674e-16 - art_sys_39: 3.40400343e-17 - art_sys_40: -1.24520127e-14 - art_sys_41: -3.27591654e-06 - art_sys_42: 2.24332608e-06 - art_sys_43: -7.95596141e-17 - art_sys_44: -1.34971148e-17 - art_sys_45: 1.83237240e-17 - art_sys_46: 3.04420219e-15 - art_sys_47: 1.17535461e-14 - art_sys_48: -8.06152091e-06 - art_sys_49: -9.61474299e-14 - art_sys_50: 5.12281388e-15 - art_sys_51: 2.45632611e-14 - art_sys_52: 1.15994768e-15 - art_sys_53: 4.00800959e-16 - art_sys_54: -1.32432144e-15 - art_sys_55: -5.71220874e-18 - art_sys_56: 2.19984094e-15 - art_sys_57: -2.11826878e-14 - art_sys_58: 2.79832681e-17 - art_sys_59: -8.20660643e-17 - art_sys_60: -3.41898065e-05 - art_sys_61: -5.38792228e-13 - art_sys_62: 5.90462986e-12 - art_sys_63: 7.40976544e-13 - art_sys_64: -2.95507068e-05 - art_sys_65: 7.18359824e-18 - art_sys_66: -3.89469491e-17 - art_sys_67: 1.57256434e-14 - art_sys_68: 2.13532210e-14 - art_sys_69: -4.22339373e-12 - art_sys_70: 6.10463132e-05 - art_sys_71: -2.59735948e-11 - art_sys_72: 1.02795696e-14 - art_sys_73: 6.99079908e-14 - art_sys_74: 3.73333217e-14 - art_sys_75: -8.98625297e-15 - art_sys_76: 2.49637358e-17 - art_sys_77: -6.11799146e-11 - art_sys_78: 9.37596606e-12 - art_sys_79: 5.22867771e-15 - art_sys_80: -1.81581579e-11 - art_sys_81: -1.02880646e-15 - art_sys_82: -2.76029492e-16 - art_sys_83: 1.50324758e-13 - art_sys_84: -5.89377608e-16 - art_sys_85: -2.88218691e-17 - art_sys_86: 2.27791141e-13 - art_sys_87: 2.28648928e-09 - art_sys_88: 4.37563787e-14 - art_sys_89: 1.10744242e-15 - art_sys_90: 8.52202650e-05 - art_sys_91: -6.70030785e-10 - art_sys_92: -5.44951525e-04 - art_sys_93: 9.30583905e-11 - art_sys_94: -9.58607275e-05 - art_sys_95: 3.60260875e-11 - art_sys_96: 5.93932348e-15 - art_sys_97: -2.14314190e-10 - art_sys_98: 6.70709420e-05 - art_sys_99: -2.20143766e-11 - art_sys_100: -1.55937283e-10 - art_sys_101: 9.64583401e-05 - art_sys_102: -5.89930104e-05 - art_sys_103: 6.31736948e-12 - art_sys_104: -1.95397553e-10 - art_sys_105: -3.15435876e-05 - art_sys_106: 4.79457531e-10 - art_sys_107: 4.13783240e-15 - art_sys_108: -2.55035262e-16 - art_sys_109: -1.40020786e-15 - art_sys_110: 3.32670639e-11 - art_sys_111: 1.41848638e-05 - art_sys_112: 1.30121199e-12 - art_sys_113: 1.16632339e-17 - art_sys_114: -5.68275795e-06 - art_sys_115: -6.13926685e-13 - art_sys_116: 3.25462324e-11 - art_sys_117: 2.61130348e-06 - art_sys_118: 2.33372231e-12 - art_sys_119: -1.01700788e-06 - art_sys_120: -5.58011350e-11 - art_sys_121: 1.82221095e-13 - art_sys_122: -3.61630181e-07 - art_sys_123: -1.25155595e-07 - art_sys_124: -1.44112200e-13 - art_sys_125: -1.67446735e-11 - art_sys_126: 4.08995959e-13 - art_sys_127: 4.19353141e-08 - art_sys_128: 4.91950383e-13 - art_sys_129: -1.11460074e-08 - art_sys_130: 7.77036938e-13 - art_sys_131: -3.09962109e-12 - art_sys_132: 3.85946598e-09 - art_sys_133: 9.04048573e-12 - art_sys_134: 1.84482859e-14 - art_sys_135: -6.65976471e-10 - art_sys_136: 1.82247028e-12 - art_sys_137: -2.01256353e-16 - art_sys_138: -3.09551071e-12 - art_sys_139: 6.51246549e-11 - art_sys_140: 9.60329096e-12 - art_sys_141: -1.46950346e-12 - art_sys_142: -1.22343400e-13 - art_sys_143: -6.82363467e-17 - art_sys_144: -1.21368897e-16 - art_sys_145: -5.48335159e-18 - art_sys_146: -0.0 - art_sys_147: -4.89988596e-15 - art_sys_148: -1.80699246e-14 - art_sys_149: -1.80699246e-14 - art_sys_150: 3.94274984e-14 - art_sys_151: 3.94274984e-14 - art_sys_152: -6.44159308e-13 - art_sys_153: 3.39778590e-14 - art_sys_154: -4.87300788e-18 - art_sys_155: 1.80504633e-25 - art_sys_156: -7.56349959e-30 - art_sys_157: -2.84831826e-28 - art_sys_158: 0.0 - art_sys_159: 1.45972137e-16 - art_sys_160: 1.23302826e-17 - art_sys_161: -1.16955693e-17 - art_sys_162: 1.35347819e-18 - art_sys_163: -8.87190747e-16 - art_sys_164: -5.09653963e-16 - art_sys_165: 7.60335573e-17 - art_sys_166: -2.87358181e-25 - art_sys_167: -4.49311083e-25 - art_sys_168: 1.39148665e-26 - art_sys_169: -2.00889874e-26 - art_sys_170: -3.29799998e-26 - art_sys_171: 2.11209712e-26 - art_sys_172: 6.73626270e-27 - art_sys_173: -3.62380460e-27 - art_sys_174: -8.79940060e-28 - art_sys_175: -2.61648453e-29 - art_sys_176: -5.54144492e-29 - art_sys_177: 3.08839304e-28 - art_sys_178: -1.23908980e-28 - art_sys_179: 5.45969368e-28 - art_sys_180: -2.03875338e-30 - art_sys_181: -2.30523684e-30 - art_sys_182: -8.09277911e-30 - art_sys_183: 6.53895799e-32 - art_sys_184: -7.69336062e-32 - art_sys_185: -3.63689694e-32 + art_sys_20: 1.83171953e-25 + art_sys_21: -1.10159509e-21 + art_sys_22: 4.46573904e-25 + art_sys_23: 2.31910387e-09 + art_sys_24: -3.48209084e-19 + art_sys_25: -2.08411151e-08 + art_sys_26: -9.34220179e-08 + art_sys_27: 1.32936235e-18 + art_sys_28: -2.72389770e-19 + art_sys_29: 2.45660867e-19 + art_sys_30: -2.42096798e-07 + art_sys_31: 8.96733551e-18 + art_sys_32: 1.84901472e-18 + art_sys_33: -3.27591653e-06 + art_sys_34: 2.24332607e-06 + art_sys_35: 4.91950585e-17 + art_sys_36: 4.85356745e-14 + art_sys_37: 1.69450395e-14 + art_sys_38: -4.49097827e-15 + art_sys_39: 4.92415178e-15 + art_sys_40: 2.21500475e-16 + art_sys_41: -2.39247452e-16 + art_sys_42: -9.28798477e-16 + art_sys_43: 9.98093460e-18 + art_sys_44: -9.13681973e-17 + art_sys_45: 1.31425009e-16 + art_sys_46: 6.54120752e-17 + art_sys_47: -1.05678485e-14 + art_sys_48: 8.06152089e-06 + art_sys_49: -9.55722468e-14 + art_sys_50: 3.81221237e-17 + art_sys_51: -6.65205069e-17 + art_sys_52: 2.37536626e-14 + art_sys_53: -3.41898055e-05 + art_sys_54: 1.45450195e-13 + art_sys_55: -2.95507075e-05 + art_sys_56: 9.63832894e-17 + art_sys_57: -1.31988892e-16 + art_sys_58: 5.11725817e-17 + art_sys_59: -6.10463093e-05 + art_sys_60: -9.86591085e-12 + art_sys_61: -1.43537021e-16 + art_sys_62: 1.96397748e-14 + art_sys_63: 2.20512937e-10 + art_sys_64: -4.00872628e-14 + art_sys_65: 2.68049278e-14 + art_sys_66: -7.28370906e-15 + art_sys_67: 6.88024568e-16 + art_sys_68: 1.06851671e-15 + art_sys_69: 2.74501938e-16 + art_sys_70: 3.72368795e-16 + art_sys_71: -1.30139422e-16 + art_sys_72: 6.32593560e-17 + art_sys_73: 1.18840454e-17 + art_sys_74: 1.16014189e-12 + art_sys_75: 1.69168291e-17 + art_sys_76: -1.49770323e-14 + art_sys_77: -3.35585727e-15 + art_sys_78: -1.05653073e-14 + art_sys_79: -6.70747331e-18 + art_sys_80: 7.37182698e-16 + art_sys_81: -2.90795955e-12 + art_sys_82: 4.48837445e-09 + art_sys_83: 4.81230436e-16 + art_sys_84: -5.71510526e-16 + art_sys_85: 3.80105706e-16 + art_sys_86: 6.14200339e-17 + art_sys_87: -1.43075520e-13 + art_sys_88: 2.01334444e-13 + art_sys_89: -8.17327767e-17 + art_sys_90: -9.55349700e-13 + art_sys_91: -8.52191193e-05 + art_sys_92: 1.34083745e-17 + art_sys_93: 7.15541261e-18 + art_sys_94: 3.36141284e-14 + art_sys_95: -8.03500835e-11 + art_sys_96: 5.44951856e-04 + art_sys_97: -2.38820765e-10 + art_sys_98: -9.21359212e-11 + art_sys_99: -9.58614947e-05 + art_sys_100: 1.62534926e-10 + art_sys_101: 6.70695115e-05 + art_sys_102: 6.38209944e-12 + art_sys_103: 3.08780980e-11 + art_sys_104: -9.64600393e-05 + art_sys_105: -2.82154289e-16 + art_sys_106: 5.89935451e-05 + art_sys_107: 8.57991720e-12 + art_sys_108: 1.65142332e-15 + art_sys_109: -1.58702969e-16 + art_sys_110: 1.08117532e-10 + art_sys_111: -3.15440877e-05 + art_sys_112: -1.77378004e-11 + art_sys_113: -1.11523579e-09 + art_sys_114: -1.28947708e-17 + art_sys_115: 1.41848334e-05 + art_sys_116: -5.45214383e-12 + art_sys_117: -2.40811898e-16 + art_sys_118: -5.68259553e-06 + art_sys_119: -2.54032015e-12 + art_sys_120: 2.58149824e-11 + art_sys_121: 1.05489785e-17 + art_sys_122: 2.61092049e-06 + art_sys_123: 3.72189793e-13 + art_sys_124: -1.01783541e-06 + art_sys_125: 7.78728457e-18 + art_sys_126: 7.48831271e-12 + art_sys_127: -1.57987956e-14 + art_sys_128: 3.61583727e-07 + art_sys_129: -1.23083747e-17 + art_sys_130: 1.55593083e-13 + art_sys_131: 1.71124400e-16 + art_sys_132: 1.25007912e-07 + art_sys_133: -2.98543413e-13 + art_sys_134: 1.25293392e-12 + art_sys_135: -4.19670880e-08 + art_sys_136: -3.09109593e-17 + art_sys_137: 1.16756312e-14 + art_sys_138: -1.11682011e-08 + art_sys_139: -2.51448793e-13 + art_sys_140: 2.59993140e-17 + art_sys_141: -7.63857832e-14 + art_sys_142: -3.82753124e-09 + art_sys_143: -7.12306954e-14 + art_sys_144: 1.19868710e-15 + art_sys_145: -6.52310366e-10 + art_sys_146: 3.97914034e-14 + art_sys_147: -4.51755513e-16 + art_sys_148: 1.38288115e-17 + art_sys_149: 6.64551089e-11 + art_sys_150: -1.91239967e-12 + art_sys_151: -1.03387098e-13 + art_sys_152: 1.80398568e-15 + art_sys_153: -2.63292241e-13 + art_sys_154: 1.03520999e-12 + art_sys_155: 9.61024638e-16 + art_sys_156: -0.0 + art_sys_157: 7.39135960e-13 + art_sys_158: -0.0 + art_sys_159: -1.17188742e-13 + art_sys_160: 1.52889265e-14 + art_sys_161: 1.30802240e-14 + art_sys_162: 1.30802240e-14 + art_sys_163: 1.35267289e-14 + art_sys_164: 1.35267289e-14 + art_sys_165: -1.52541471e-28 + art_sys_166: 5.06303349e-29 + art_sys_167: 0.0 + art_sys_168: -8.31340518e-25 + art_sys_169: -2.94296566e-25 + art_sys_170: 8.05246751e-26 + art_sys_171: -1.52014517e-25 + art_sys_172: 4.39310219e-27 + art_sys_173: 3.43028460e-27 + art_sys_174: 2.79573193e-27 + art_sys_175: 6.32582331e-28 + art_sys_176: 3.23596872e-28 + art_sys_177: -3.42674434e-29 + art_sys_178: 1.51059511e-28 + art_sys_179: -2.92343312e-28 + art_sys_180: -3.04721080e-27 + art_sys_181: 4.08893524e-27 + art_sys_182: -6.16686763e-29 + art_sys_183: 6.30211694e-31 + art_sys_184: 4.11282829e-31 + art_sys_185: 5.52147168e-31 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -9842,191 +9842,191 @@ bins: RelativeStatFSR-: -2.35768380e-04 luminosity_uncertainty: 7.67176800e-03 uncorrelated_uncertainty: 2.95068000e-03 -- art_sys_1: 1.55375464e-46 - art_sys_2: 2.40178426e-34 - art_sys_3: 6.30335071e-35 - art_sys_4: 1.76242029e-14 - art_sys_5: 1.92313963e-29 - art_sys_6: -1.69498755e-31 - art_sys_7: 4.47899417e-14 - art_sys_8: 5.85733832e-29 - art_sys_9: -3.03444680e-13 - art_sys_10: 3.08815718e-30 - art_sys_11: 1.37286643e-26 +- art_sys_1: -9.13473569e-45 + art_sys_2: 3.43909571e-33 + art_sys_3: 1.17797226e-33 + art_sys_4: -1.76242029e-14 + art_sys_5: -8.36736780e-30 + art_sys_6: -1.10536292e-31 + art_sys_7: -4.47899417e-14 + art_sys_8: 1.84948720e-28 + art_sys_9: 3.03444680e-13 + art_sys_10: -2.27717315e-31 + art_sys_11: -6.32156702e-28 art_sys_12: -1.27367644e-12 - art_sys_13: -4.43993694e-28 + art_sys_13: -5.99200458e-27 art_sys_14: -2.05283480e-11 - art_sys_15: -1.16129656e-24 - art_sys_16: 8.42897222e-11 - art_sys_17: -1.19172163e-27 - art_sys_18: 5.68905826e-24 + art_sys_15: -6.80189127e-25 + art_sys_16: -8.42897222e-11 + art_sys_17: -3.23889271e-27 + art_sys_18: -8.91246205e-24 art_sys_19: 1.42907549e-10 - art_sys_20: -5.81595718e-26 - art_sys_21: 6.92918550e-24 - art_sys_22: -1.35032400e-10 - art_sys_23: -1.89471431e-25 - art_sys_24: -2.91542749e-22 - art_sys_25: 1.81440800e-14 - art_sys_26: -5.10618209e-15 - art_sys_27: 8.38674526e-15 - art_sys_28: -8.99308637e-09 - art_sys_29: 3.20141638e-08 - art_sys_30: 4.57291711e-15 - art_sys_31: 5.47348256e-16 - art_sys_32: 1.08521841e-15 - art_sys_33: -4.91597454e-16 - art_sys_34: 4.23646563e-19 - art_sys_35: -5.96908015e-19 - art_sys_36: 2.24234366e-17 - art_sys_37: -1.23104123e-07 - art_sys_38: -1.15194895e-16 - art_sys_39: -5.46888779e-19 - art_sys_40: -1.57332716e-15 - art_sys_41: -4.13883356e-07 - art_sys_42: 2.54782799e-06 - art_sys_43: 1.10700260e-16 - art_sys_44: 6.37541770e-18 - art_sys_45: 7.04601722e-17 - art_sys_46: 3.71497757e-15 - art_sys_47: -4.49334447e-15 - art_sys_48: 3.08644440e-06 - art_sys_49: 6.85784447e-14 - art_sys_50: -4.81585959e-14 - art_sys_51: 1.71269093e-15 - art_sys_52: -7.82483327e-15 - art_sys_53: 1.02843097e-15 - art_sys_54: 2.51998366e-17 - art_sys_55: 3.81773404e-17 - art_sys_56: 6.33239810e-16 - art_sys_57: 8.15765622e-15 - art_sys_58: 1.16858916e-15 - art_sys_59: -1.42507461e-17 - art_sys_60: -8.70142303e-06 - art_sys_61: -1.27064518e-13 - art_sys_62: -6.06165338e-12 - art_sys_63: -1.37009737e-13 - art_sys_64: 2.92482337e-05 - art_sys_65: -4.81854276e-17 - art_sys_66: 2.31083022e-17 - art_sys_67: -1.67230753e-14 - art_sys_68: 3.56132257e-14 - art_sys_69: -7.18453504e-13 - art_sys_70: -1.12792957e-05 - art_sys_71: -9.17786816e-11 - art_sys_72: -2.99605854e-14 - art_sys_73: 5.45076466e-14 - art_sys_74: -1.34468003e-14 - art_sys_75: -9.93207643e-15 - art_sys_76: -7.91815744e-18 - art_sys_77: 9.65037555e-12 - art_sys_78: 1.80770627e-11 - art_sys_79: 4.61519161e-16 - art_sys_80: 3.35943059e-11 - art_sys_81: 2.38645918e-17 - art_sys_82: -4.89603775e-17 - art_sys_83: -2.87498129e-13 - art_sys_84: -2.69571636e-16 - art_sys_85: -2.35242786e-16 - art_sys_86: -4.81355886e-13 - art_sys_87: 4.12265381e-10 - art_sys_88: -9.29325888e-14 - art_sys_89: -2.40895760e-15 - art_sys_90: 1.42663577e-04 - art_sys_91: 8.23590775e-10 - art_sys_92: -8.52794452e-05 - art_sys_93: 1.22356907e-11 - art_sys_94: -3.92482618e-04 - art_sys_95: -6.35226781e-11 - art_sys_96: -1.28312469e-14 - art_sys_97: 3.23928094e-10 - art_sys_98: -4.08739709e-05 - art_sys_99: -2.30906078e-10 - art_sys_100: 2.97502106e-10 - art_sys_101: -5.40739336e-05 - art_sys_102: 7.45045175e-05 - art_sys_103: -1.14505248e-11 - art_sys_104: -9.81272903e-10 - art_sys_105: 4.60110140e-05 - art_sys_106: -8.17930575e-10 - art_sys_107: -9.14872967e-15 - art_sys_108: 5.65325603e-16 - art_sys_109: 3.33901286e-15 - art_sys_110: -7.02725280e-11 - art_sys_111: -2.39311673e-05 - art_sys_112: -3.08971830e-12 - art_sys_113: -2.47203184e-17 - art_sys_114: 1.04289513e-05 - art_sys_115: 1.32320071e-12 - art_sys_116: -6.84581928e-11 - art_sys_117: -5.02934000e-06 - art_sys_118: -5.04171502e-12 - art_sys_119: 2.05311301e-06 - art_sys_120: 1.18234347e-10 - art_sys_121: -4.02357497e-13 - art_sys_122: 7.53927861e-07 - art_sys_123: 2.66821213e-07 - art_sys_124: 3.18671031e-13 - art_sys_125: 3.64924614e-11 - art_sys_126: -9.04002607e-13 - art_sys_127: -9.09100227e-08 - art_sys_128: -1.09839116e-12 - art_sys_129: 2.44668213e-08 - art_sys_130: -1.73084076e-12 - art_sys_131: 6.87960472e-12 - art_sys_132: -8.54244350e-09 - art_sys_133: -2.00121550e-11 - art_sys_134: -4.08329948e-14 - art_sys_135: 1.48593558e-09 - art_sys_136: -4.05621175e-12 - art_sys_137: 4.47284226e-16 - art_sys_138: -5.90602245e-11 - art_sys_139: -1.45823661e-10 - art_sys_140: -2.14965657e-11 - art_sys_141: 3.28385913e-12 - art_sys_142: 2.71724289e-13 - art_sys_143: 1.52976539e-16 - art_sys_144: 2.71481470e-16 - art_sys_145: 1.31204447e-17 - art_sys_146: 0.0 - art_sys_147: 1.07900193e-14 - art_sys_148: 4.11178182e-14 - art_sys_149: 4.11178182e-14 - art_sys_150: -9.07202203e-14 - art_sys_151: -9.07202203e-14 - art_sys_152: 1.40186744e-12 - art_sys_153: -7.32500126e-14 - art_sys_154: 9.99083715e-18 - art_sys_155: -3.91171304e-25 - art_sys_156: 1.68671240e-29 - art_sys_157: 6.00939824e-28 - art_sys_158: -0.0 - art_sys_159: -1.27315332e-16 - art_sys_160: -2.36357462e-17 - art_sys_161: 2.68205575e-17 - art_sys_162: -2.95565602e-18 - art_sys_163: 1.96866450e-15 - art_sys_164: 1.12783542e-15 - art_sys_165: -1.68055786e-16 - art_sys_166: 6.85845159e-25 - art_sys_167: 1.07344826e-24 - art_sys_168: -3.95304478e-26 - art_sys_169: 4.74843796e-26 - art_sys_170: 7.42485881e-26 - art_sys_171: -4.86389044e-26 - art_sys_172: -1.65236465e-26 - art_sys_173: 7.48085711e-27 - art_sys_174: 1.87670692e-27 - art_sys_175: 5.77288616e-29 - art_sys_176: 1.28074343e-28 - art_sys_177: -7.33943945e-28 - art_sys_178: 2.64573260e-28 - art_sys_179: -8.49959914e-28 - art_sys_180: -1.42168964e-29 - art_sys_181: 5.31871107e-30 - art_sys_182: 1.95599126e-29 - art_sys_183: -1.46755758e-31 - art_sys_184: 1.68377011e-31 - art_sys_185: 8.05107922e-32 + art_sys_20: -9.75617640e-27 + art_sys_21: 4.27173763e-23 + art_sys_22: -7.42694776e-26 + art_sys_23: -1.35032400e-10 + art_sys_24: -9.62411440e-22 + art_sys_25: 8.99308637e-09 + art_sys_26: 3.20141638e-08 + art_sys_27: -1.12360850e-19 + art_sys_28: 1.49422993e-19 + art_sys_29: -2.65373762e-19 + art_sys_30: 1.23104123e-07 + art_sys_31: -2.08454185e-20 + art_sys_32: -2.14363705e-19 + art_sys_33: -4.13883341e-07 + art_sys_34: 2.54782798e-06 + art_sys_35: -2.72080315e-17 + art_sys_36: -4.24098175e-14 + art_sys_37: 1.23332651e-15 + art_sys_38: -5.59227824e-16 + art_sys_39: 7.43297308e-15 + art_sys_40: -3.03546565e-16 + art_sys_41: 2.10504391e-16 + art_sys_42: -1.12660593e-16 + art_sys_43: 1.42640060e-16 + art_sys_44: 1.96609673e-17 + art_sys_45: -9.69961673e-17 + art_sys_46: -1.05480763e-16 + art_sys_47: 4.04595311e-15 + art_sys_48: -3.08644439e-06 + art_sys_49: 3.71786712e-14 + art_sys_50: -5.00054593e-17 + art_sys_51: 1.29210619e-16 + art_sys_52: -9.38127834e-15 + art_sys_53: -8.70142395e-06 + art_sys_54: 7.09744852e-15 + art_sys_55: 2.92482344e-05 + art_sys_56: 1.44484829e-15 + art_sys_57: 1.77173813e-16 + art_sys_58: -7.56230445e-17 + art_sys_59: 1.12793149e-05 + art_sys_60: -2.61816028e-11 + art_sys_61: -1.11946398e-16 + art_sys_62: 8.97131686e-16 + art_sys_63: 2.03991044e-14 + art_sys_64: 6.05727777e-14 + art_sys_65: 2.21829500e-15 + art_sys_66: 5.51063051e-17 + art_sys_67: 6.50883569e-16 + art_sys_68: 4.66283442e-16 + art_sys_69: 1.29836433e-15 + art_sys_70: -8.49439514e-16 + art_sys_71: -2.77548271e-17 + art_sys_72: -1.20649259e-16 + art_sys_73: -7.33057209e-18 + art_sys_74: 1.82239263e-13 + art_sys_75: -1.64410094e-17 + art_sys_76: -1.17316818e-13 + art_sys_77: -5.70926438e-15 + art_sys_78: -1.58486244e-15 + art_sys_79: 4.65273800e-18 + art_sys_80: 2.85698009e-15 + art_sys_81: -4.54813702e-13 + art_sys_82: 9.50434330e-10 + art_sys_83: -1.23392635e-15 + art_sys_84: -1.06689157e-16 + art_sys_85: 1.29741007e-15 + art_sys_86: 1.99665902e-16 + art_sys_87: 1.33039789e-13 + art_sys_88: -2.85315075e-13 + art_sys_89: 1.95866782e-18 + art_sys_90: 1.98177979e-12 + art_sys_91: -1.42663644e-04 + art_sys_92: 2.13637971e-17 + art_sys_93: -2.06048708e-18 + art_sys_94: -7.17124435e-14 + art_sys_95: 5.09414983e-10 + art_sys_96: 8.52779939e-05 + art_sys_97: -3.60856118e-11 + art_sys_98: 1.66355238e-10 + art_sys_99: -3.92483527e-04 + art_sys_100: -1.58527435e-10 + art_sys_101: -4.08733155e-05 + art_sys_102: -2.58826370e-11 + art_sys_103: 2.32524470e-11 + art_sys_104: 5.40760927e-05 + art_sys_105: 5.73009847e-16 + art_sys_106: -7.45064746e-05 + art_sys_107: -1.80494032e-11 + art_sys_108: -3.70274126e-15 + art_sys_109: 3.25515756e-16 + art_sys_110: -2.11035636e-10 + art_sys_111: 4.60113021e-05 + art_sys_112: 3.43081251e-11 + art_sys_113: 1.62657255e-09 + art_sys_114: 2.93824668e-17 + art_sys_115: -2.39311122e-05 + art_sys_116: 1.13820184e-11 + art_sys_117: 3.89711032e-16 + art_sys_118: 1.04285974e-05 + art_sys_119: 5.45304029e-12 + art_sys_120: -5.55388990e-11 + art_sys_121: -3.55242908e-17 + art_sys_122: -5.02858209e-06 + art_sys_123: -8.26540556e-13 + art_sys_124: 2.05468659e-06 + art_sys_125: -1.78815198e-17 + art_sys_126: -1.62121974e-11 + art_sys_127: 3.56060648e-14 + art_sys_128: -7.53825532e-07 + art_sys_129: 2.79933331e-17 + art_sys_130: -3.48729598e-13 + art_sys_131: -3.82719626e-16 + art_sys_132: -2.66513952e-07 + art_sys_133: 6.68993362e-13 + art_sys_134: -2.81873968e-12 + art_sys_135: 9.09789582e-08 + art_sys_136: 6.91760203e-17 + art_sys_137: -2.62351090e-14 + art_sys_138: 2.45165814e-08 + art_sys_139: 5.62224063e-13 + art_sys_140: -5.83953990e-17 + art_sys_141: 1.68466074e-13 + art_sys_142: 8.47289331e-09 + art_sys_143: 1.58592116e-13 + art_sys_144: -2.64796838e-15 + art_sys_145: 1.45626112e-09 + art_sys_146: -8.87834397e-14 + art_sys_147: 1.00848150e-15 + art_sys_148: -2.88953611e-17 + art_sys_149: -1.48924949e-10 + art_sys_150: 4.28516110e-12 + art_sys_151: 2.31788956e-13 + art_sys_152: -4.03926777e-15 + art_sys_153: 5.89587245e-13 + art_sys_154: -1.69506641e-12 + art_sys_155: -2.14833829e-15 + art_sys_156: 0.0 + art_sys_157: -1.66040696e-12 + art_sys_158: 0.0 + art_sys_159: 2.62672373e-13 + art_sys_160: -3.43353752e-14 + art_sys_161: -2.92716655e-14 + art_sys_162: -2.92716655e-14 + art_sys_163: -3.03039546e-14 + art_sys_164: -3.03039546e-14 + art_sys_165: 3.41686348e-28 + art_sys_166: -1.13406944e-28 + art_sys_167: -0.0 + art_sys_168: 1.61573974e-24 + art_sys_169: 6.13533553e-25 + art_sys_170: -1.72162958e-25 + art_sys_171: 3.05202071e-25 + art_sys_172: -8.93162791e-27 + art_sys_173: -6.67289968e-27 + art_sys_174: -5.60670352e-27 + art_sys_175: -1.20478694e-27 + art_sys_176: -7.92319668e-28 + art_sys_177: -6.90923502e-30 + art_sys_178: -3.32608804e-28 + art_sys_179: 6.52800054e-28 + art_sys_180: 6.82929004e-27 + art_sys_181: -5.79427316e-27 + art_sys_182: 1.25948316e-28 + art_sys_183: -1.35076207e-30 + art_sys_184: -9.05220255e-31 + art_sys_185: -1.22915102e-30 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -10133,191 +10133,191 @@ bins: RelativeStatFSR-: -1.51798396e-04 luminosity_uncertainty: 4.63970000e-03 uncorrelated_uncertainty: 1.78450000e-03 -- art_sys_1: 1.26367400e-47 - art_sys_2: 1.96919336e-35 - art_sys_3: 1.90048170e-35 - art_sys_4: 1.44498664e-15 - art_sys_5: 3.48644510e-30 - art_sys_6: -1.38552415e-32 - art_sys_7: 9.84542604e-15 - art_sys_8: 7.63921580e-30 - art_sys_9: -4.62614807e-14 - art_sys_10: 4.89920697e-31 - art_sys_11: 4.07351443e-28 +- art_sys_1: -7.48986441e-46 + art_sys_2: 2.81967212e-34 + art_sys_3: 1.05870096e-34 + art_sys_4: -1.44498664e-15 + art_sys_5: -1.30379249e-30 + art_sys_6: -9.21668126e-33 + art_sys_7: -9.84542604e-15 + art_sys_8: 1.85693996e-29 + art_sys_9: 4.62614807e-14 + art_sys_10: -7.53417191e-33 + art_sys_11: 9.73077829e-29 art_sys_12: -1.29320945e-13 - art_sys_13: -6.63163939e-29 + art_sys_13: -9.55476631e-28 art_sys_14: -3.26708601e-12 - art_sys_15: -2.26235622e-25 - art_sys_16: -6.06558782e-13 - art_sys_17: -1.22671114e-27 - art_sys_18: 1.80070941e-24 + art_sys_15: -1.21509408e-25 + art_sys_16: 6.06558782e-13 + art_sys_17: -1.52285087e-28 + art_sys_18: -1.05307248e-24 art_sys_19: 1.66561900e-11 - art_sys_20: -2.23791963e-26 - art_sys_21: 9.38884491e-24 - art_sys_22: -4.95638193e-11 - art_sys_23: -5.98291524e-26 - art_sys_24: -2.36832931e-24 - art_sys_25: 1.33091873e-14 - art_sys_26: 3.33218777e-14 - art_sys_27: -1.91897537e-14 - art_sys_28: -2.87426906e-09 - art_sys_29: 5.91681553e-09 - art_sys_30: 1.06016586e-15 - art_sys_31: -6.70973863e-16 - art_sys_32: 6.07097493e-16 - art_sys_33: -1.01043128e-15 - art_sys_34: 8.81943268e-18 - art_sys_35: -1.40364980e-19 - art_sys_36: 5.06249046e-18 - art_sys_37: -2.97631652e-08 - art_sys_38: 8.24505582e-17 - art_sys_39: -9.44766060e-19 - art_sys_40: -7.73604658e-18 - art_sys_41: -2.32279552e-09 - art_sys_42: 4.66778557e-07 - art_sys_43: 2.36838347e-17 - art_sys_44: 2.11118282e-17 - art_sys_45: -2.51962207e-16 - art_sys_46: 6.87775988e-16 - art_sys_47: -1.34987440e-15 - art_sys_48: 9.26748775e-07 - art_sys_49: 2.21752662e-16 - art_sys_50: 1.61130450e-15 - art_sys_51: 3.37402611e-14 - art_sys_52: 1.62884345e-15 - art_sys_53: 5.33351930e-16 - art_sys_54: 1.30505931e-15 - art_sys_55: -9.53435506e-17 - art_sys_56: -1.84701056e-16 - art_sys_57: 2.44351829e-15 - art_sys_58: -1.52904857e-16 - art_sys_59: -1.97477937e-16 - art_sys_60: 3.13522274e-07 - art_sys_61: 6.61104759e-15 - art_sys_62: -1.28635135e-12 - art_sys_63: -7.32188063e-14 - art_sys_64: 6.26591308e-06 - art_sys_65: 1.19520973e-16 - art_sys_66: 3.38224524e-17 - art_sys_67: -3.54361204e-15 - art_sys_68: 2.26467758e-15 - art_sys_69: 7.63777678e-13 - art_sys_70: -6.05119984e-06 - art_sys_71: -9.47822983e-12 - art_sys_72: -5.01719367e-15 - art_sys_73: 5.12219930e-15 - art_sys_74: 2.64712547e-14 - art_sys_75: 4.06808142e-15 - art_sys_76: 2.13951683e-17 - art_sys_77: 1.61612843e-11 - art_sys_78: -1.09969827e-11 - art_sys_79: -3.25637748e-15 - art_sys_80: -1.98908435e-11 - art_sys_81: 3.04882842e-17 - art_sys_82: -1.10702993e-15 - art_sys_83: 5.12641700e-13 - art_sys_84: -4.35321886e-16 - art_sys_85: -5.18576008e-16 - art_sys_86: 9.79210837e-13 - art_sys_87: -3.98677501e-10 - art_sys_88: 1.90273711e-13 - art_sys_89: 5.09914586e-15 - art_sys_90: 8.78278816e-06 - art_sys_91: -4.81795870e-10 - art_sys_92: 9.97589834e-05 - art_sys_93: -1.74801899e-11 - art_sys_94: -1.30210751e-04 - art_sys_95: 9.94319743e-11 - art_sys_96: 2.69000396e-14 - art_sys_97: -3.64895899e-10 - art_sys_98: -2.79210970e-04 - art_sys_99: -8.45980923e-11 - art_sys_100: -5.26708626e-10 - art_sys_101: 2.58113990e-05 - art_sys_102: -4.22105489e-05 - art_sys_103: 1.86130089e-11 - art_sys_104: -4.80287979e-10 - art_sys_105: -5.78784266e-05 - art_sys_106: 1.20764343e-09 - art_sys_107: 1.97843478e-14 - art_sys_108: -1.22446198e-15 - art_sys_109: -7.48874696e-15 - art_sys_110: 1.43106544e-10 - art_sys_111: 3.47121792e-05 - art_sys_112: 7.22091330e-12 - art_sys_113: 5.20886907e-17 - art_sys_114: -1.74250413e-05 - art_sys_115: -2.76179175e-12 - art_sys_116: 1.38358030e-10 - art_sys_117: 9.02368189e-06 - art_sys_118: 1.05661576e-11 - art_sys_119: -3.91296521e-06 - art_sys_120: -2.41612318e-10 - art_sys_121: 8.68259210e-13 - art_sys_122: -1.50606979e-06 - art_sys_123: -5.49231173e-07 - art_sys_124: -6.89173159e-13 - art_sys_125: -7.72941489e-11 - art_sys_126: 1.95421085e-12 - art_sys_127: 1.91258217e-07 - art_sys_128: 2.40653604e-12 - art_sys_129: -5.24441049e-08 - art_sys_130: 3.77580376e-12 - art_sys_131: -1.49389641e-11 - art_sys_132: 1.84916932e-08 - art_sys_133: 4.33257536e-11 - art_sys_134: 8.83911236e-14 - art_sys_135: -3.25441256e-09 - art_sys_136: 8.85062519e-12 - art_sys_137: -9.73996171e-16 - art_sys_138: 6.05296538e-11 - art_sys_139: 3.21296586e-10 - art_sys_140: 4.73441820e-11 - art_sys_141: -7.21437462e-12 - art_sys_142: -5.93549520e-13 - art_sys_143: -3.37591161e-16 - art_sys_144: -5.97220286e-16 - art_sys_145: -3.01989896e-17 - art_sys_146: -0.0 - art_sys_147: -2.30818482e-14 - art_sys_148: -9.45080369e-14 - art_sys_149: -9.45080369e-14 - art_sys_150: 2.07049614e-13 - art_sys_151: 2.07049614e-13 - art_sys_152: -2.96641234e-12 - art_sys_153: 1.52792287e-13 - art_sys_154: -1.93350228e-17 - art_sys_155: 8.22726215e-25 - art_sys_156: -3.69372312e-29 - art_sys_157: -1.21845644e-27 - art_sys_158: 0.0 - art_sys_159: -7.45103312e-17 - art_sys_160: 4.42749061e-17 - art_sys_161: -6.08427877e-17 - art_sys_162: 6.33878695e-18 - art_sys_163: -4.27480402e-15 - art_sys_164: -2.44604325e-15 - art_sys_165: 3.63276513e-16 - art_sys_166: -1.53411060e-24 - art_sys_167: -2.35253307e-24 - art_sys_168: 9.20679342e-26 - art_sys_169: -1.10293565e-25 - art_sys_170: -1.67565173e-25 - art_sys_171: 1.08035028e-25 - art_sys_172: 3.59361025e-26 - art_sys_173: -1.66773603e-26 - art_sys_174: -4.18373112e-27 - art_sys_175: -1.25503531e-28 - art_sys_176: -2.90632733e-28 - art_sys_177: 1.63731261e-27 - art_sys_178: -5.57564007e-28 - art_sys_179: 1.21477274e-27 - art_sys_180: 5.93894775e-29 - art_sys_181: -1.17983674e-29 - art_sys_182: -4.40366169e-29 - art_sys_183: 3.29613618e-31 - art_sys_184: -3.59684819e-31 - art_sys_185: -1.74364883e-31 + art_sys_20: -3.90025470e-27 + art_sys_21: 1.63770205e-23 + art_sys_22: -1.68554271e-26 + art_sys_23: -4.95638193e-11 + art_sys_24: -1.11378865e-22 + art_sys_25: 2.87426900e-09 + art_sys_26: 5.91681548e-09 + art_sys_27: 3.23317084e-17 + art_sys_28: 3.52464738e-20 + art_sys_29: -7.04928147e-18 + art_sys_30: 2.97631653e-08 + art_sys_31: -2.26178345e-19 + art_sys_32: -1.17873078e-17 + art_sys_33: -2.32279263e-09 + art_sys_34: 4.66778557e-07 + art_sys_35: -7.30174793e-18 + art_sys_36: -4.10205552e-14 + art_sys_37: 1.81002857e-14 + art_sys_38: 7.70103874e-15 + art_sys_39: 3.20095870e-15 + art_sys_40: 1.12537180e-15 + art_sys_41: -2.14623935e-16 + art_sys_42: 5.15215006e-16 + art_sys_43: -1.86727115e-16 + art_sys_44: -3.93280403e-17 + art_sys_45: 1.56532176e-16 + art_sys_46: 1.35271318e-16 + art_sys_47: 1.21342365e-15 + art_sys_48: -9.26748773e-07 + art_sys_49: 1.10856278e-14 + art_sys_50: 4.94142002e-17 + art_sys_51: -1.34465262e-16 + art_sys_52: -2.77319670e-15 + art_sys_53: 3.13522076e-07 + art_sys_54: -6.19253964e-15 + art_sys_55: 6.26591323e-06 + art_sys_56: 2.68599144e-16 + art_sys_57: -2.32652752e-16 + art_sys_58: 9.76288418e-17 + art_sys_59: 6.05120269e-06 + art_sys_60: -4.39149792e-12 + art_sys_61: -9.11463708e-17 + art_sys_62: -1.07695728e-15 + art_sys_63: -5.05647390e-11 + art_sys_64: -3.62113710e-15 + art_sys_65: -7.35112357e-15 + art_sys_66: -1.79053457e-15 + art_sys_67: 5.63263792e-15 + art_sys_68: -1.13845229e-15 + art_sys_69: -6.51966402e-16 + art_sys_70: -5.68638936e-16 + art_sys_71: 2.39883574e-16 + art_sys_72: -1.26021491e-16 + art_sys_73: -1.01143637e-17 + art_sys_74: -2.10480848e-13 + art_sys_75: 7.91419277e-18 + art_sys_76: -6.09306554e-14 + art_sys_77: -1.52111126e-14 + art_sys_78: -1.12975751e-14 + art_sys_79: -1.98003191e-17 + art_sys_80: -3.76539723e-15 + art_sys_81: 5.32384404e-13 + art_sys_82: -7.19208058e-10 + art_sys_83: -1.76548930e-15 + art_sys_84: -1.66121113e-17 + art_sys_85: 2.27033686e-16 + art_sys_86: -3.07270040e-16 + art_sys_87: 1.60586961e-13 + art_sys_88: 3.26959929e-13 + art_sys_89: -2.22729794e-17 + art_sys_90: -3.79390053e-12 + art_sys_91: -8.78305314e-06 + art_sys_92: -1.12154826e-17 + art_sys_93: -1.12210923e-17 + art_sys_94: 1.47869488e-13 + art_sys_95: -1.66606730e-10 + art_sys_96: -9.97597849e-05 + art_sys_97: 4.42273272e-11 + art_sys_98: -3.77339906e-10 + art_sys_99: -1.30210988e-04 + art_sys_100: -3.14822067e-10 + art_sys_101: -2.79211432e-04 + art_sys_102: 7.14575099e-11 + art_sys_103: -2.42054543e-11 + art_sys_104: -2.58133445e-05 + art_sys_105: -1.08219241e-15 + art_sys_106: 4.22123917e-05 + art_sys_107: 3.64002844e-11 + art_sys_108: 8.17085129e-15 + art_sys_109: -6.90318750e-16 + art_sys_110: 3.86222313e-10 + art_sys_111: -5.78781618e-05 + art_sys_112: -6.21577084e-11 + art_sys_113: -2.04434790e-09 + art_sys_114: -6.53742119e-17 + art_sys_115: 3.47120824e-05 + art_sys_116: -2.27823661e-11 + art_sys_117: -5.90493558e-16 + art_sys_118: -1.74242966e-05 + art_sys_119: -1.13249868e-11 + art_sys_120: 1.15612792e-10 + art_sys_121: 1.01271011e-16 + art_sys_122: 9.02226653e-06 + art_sys_123: 1.79500279e-12 + art_sys_124: -3.91573761e-06 + art_sys_125: 3.99993239e-17 + art_sys_126: 3.40391665e-11 + art_sys_127: -7.87676658e-14 + art_sys_128: 1.50585295e-06 + art_sys_129: -6.23887882e-17 + art_sys_130: 7.68460771e-13 + art_sys_131: 8.38769835e-16 + art_sys_132: 5.48619297e-07 + art_sys_133: -1.47438169e-12 + art_sys_134: 6.23923225e-12 + art_sys_135: -1.91403441e-07 + art_sys_136: -1.52500849e-16 + art_sys_137: 5.82202054e-14 + art_sys_138: -5.25537561e-08 + art_sys_139: -1.23594428e-12 + art_sys_140: 1.29076244e-16 + art_sys_141: -3.62860958e-13 + art_sys_142: -1.83442373e-08 + art_sys_143: -3.46294278e-13 + art_sys_144: 5.71763123e-15 + art_sys_145: -3.19176362e-09 + art_sys_146: 1.94472875e-13 + art_sys_147: -2.21044489e-15 + art_sys_148: 5.59554218e-17 + art_sys_149: 3.28479049e-10 + art_sys_150: -9.45014663e-12 + art_sys_151: -5.10719932e-13 + art_sys_152: 8.89734386e-15 + art_sys_153: -1.29816466e-12 + art_sys_154: 2.47247320e-12 + art_sys_155: 4.72486077e-15 + art_sys_156: -0.0 + art_sys_157: 3.66422899e-12 + art_sys_158: -0.0 + art_sys_159: -5.78703593e-13 + art_sys_160: 7.57590608e-14 + art_sys_161: 6.44150522e-14 + art_sys_162: 6.44150522e-14 + art_sys_163: 6.67403740e-14 + art_sys_164: 6.67403740e-14 + art_sys_165: -7.52432702e-28 + art_sys_166: 2.49730661e-28 + art_sys_167: 0.0 + art_sys_168: -2.80348145e-24 + art_sys_169: -1.29724624e-24 + art_sys_170: 3.74520615e-25 + art_sys_171: -6.54161439e-25 + art_sys_172: 1.90699727e-26 + art_sys_173: 1.40973042e-26 + art_sys_174: 1.18111626e-26 + art_sys_175: 2.47987006e-27 + art_sys_176: 1.84000378e-27 + art_sys_177: 1.56225546e-28 + art_sys_178: 7.16682614e-28 + art_sys_179: -1.43455082e-27 + art_sys_180: -1.50445705e-26 + art_sys_181: 6.85272210e-27 + art_sys_182: -2.67099314e-28 + art_sys_183: 2.89814125e-30 + art_sys_184: 1.95007505e-30 + art_sys_185: 2.68372323e-30 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -10424,191 +10424,191 @@ bins: RelativeStatFSR-: -9.85431923e-05 luminosity_uncertainty: 2.83298600e-03 uncorrelated_uncertainty: 1.08961000e-03 -- art_sys_1: 7.71237079e-49 - art_sys_2: 1.21123604e-36 - art_sys_3: 1.97141822e-36 - art_sys_4: 8.88800380e-17 - art_sys_5: 3.51706041e-31 - art_sys_6: -8.49681397e-34 - art_sys_7: 9.98804067e-16 - art_sys_8: 4.36182920e-31 - art_sys_9: -4.59688577e-15 - art_sys_10: 4.92363403e-32 - art_sys_11: -1.21319864e-28 +- art_sys_1: -4.60732387e-47 + art_sys_2: 1.73435904e-35 + art_sys_3: 7.33326662e-36 + art_sys_4: -8.88800380e-17 + art_sys_5: -1.30719054e-31 + art_sys_6: -5.66387256e-34 + art_sys_7: -9.98804067e-16 + art_sys_8: 1.83192589e-30 + art_sys_9: 4.59688577e-15 + art_sys_10: 2.75269224e-33 + art_sys_11: 4.77195638e-29 art_sys_12: -9.68301842e-15 - art_sys_13: -5.09754352e-30 + art_sys_13: -8.23891011e-29 art_sys_14: -2.81251674e-13 - art_sys_15: -1.37715735e-26 - art_sys_16: -1.45119116e-12 - art_sys_17: -1.63746633e-28 - art_sys_18: 1.67099330e-25 + art_sys_15: 5.61415965e-27 + art_sys_16: 1.45119116e-12 + art_sys_17: 3.03331218e-29 + art_sys_18: -6.02155253e-26 art_sys_19: -3.92602550e-13 - art_sys_20: -1.36276283e-27 - art_sys_21: 1.74482254e-24 - art_sys_22: -2.91829722e-12 - art_sys_23: -5.11794417e-27 - art_sys_24: -6.98063787e-24 - art_sys_25: -3.18551685e-15 - art_sys_26: 1.89720502e-15 - art_sys_27: -9.27751358e-15 - art_sys_28: -3.35382039e-10 - art_sys_29: 2.49670423e-10 - art_sys_30: -3.58340297e-16 - art_sys_31: 1.42303976e-16 - art_sys_32: -4.51996649e-16 - art_sys_33: -9.18023786e-17 - art_sys_34: -2.60295789e-17 - art_sys_35: -1.02487805e-20 - art_sys_36: 2.55689915e-18 - art_sys_37: -2.16082231e-09 - art_sys_38: -9.47299365e-17 - art_sys_39: -8.24223915e-20 - art_sys_40: 1.79551911e-17 - art_sys_41: 2.52780507e-09 - art_sys_42: 2.00616710e-08 - art_sys_43: -7.01430467e-18 - art_sys_44: -2.49516388e-16 - art_sys_45: 5.06763375e-16 - art_sys_46: 2.96953150e-17 - art_sys_47: -7.26175621e-17 - art_sys_48: 5.13424812e-08 - art_sys_49: 1.72452996e-14 - art_sys_50: 1.46751374e-14 - art_sys_51: 1.39637633e-14 - art_sys_52: -7.49636085e-15 - art_sys_53: 1.21602642e-16 - art_sys_54: -6.18762986e-16 - art_sys_55: 2.45452574e-16 - art_sys_56: 3.25854233e-16 - art_sys_57: 1.35777663e-16 - art_sys_58: 1.45584668e-15 - art_sys_59: 5.14193144e-17 - art_sys_60: 5.11283579e-07 - art_sys_61: 7.91722591e-15 - art_sys_62: 9.93633860e-14 - art_sys_63: -2.97453834e-15 - art_sys_64: -4.71049740e-07 - art_sys_65: 7.12548948e-17 - art_sys_66: 6.85972871e-17 - art_sys_67: 3.08603114e-16 - art_sys_68: -4.99714488e-15 - art_sys_69: 2.32966324e-13 - art_sys_70: -2.00388885e-07 - art_sys_71: 1.15091919e-11 - art_sys_72: 9.28978748e-16 - art_sys_73: -3.98713013e-14 - art_sys_74: -1.33546430e-14 - art_sys_75: 3.16415151e-15 - art_sys_76: 6.15627665e-18 - art_sys_77: 1.34253610e-12 - art_sys_78: -1.04636733e-11 - art_sys_79: 2.40415629e-15 - art_sys_80: 2.41865678e-11 - art_sys_81: -2.32697085e-15 - art_sys_82: -4.65323731e-16 - art_sys_83: -7.42416639e-13 - art_sys_84: 4.85271250e-16 - art_sys_85: -2.35913146e-16 - art_sys_86: -1.92378759e-12 - art_sys_87: -1.24615447e-10 - art_sys_88: -3.77677927e-13 - art_sys_89: -1.06053758e-14 - art_sys_90: -1.92288835e-05 - art_sys_91: 1.98201139e-10 - art_sys_92: 2.92585165e-05 - art_sys_93: -4.73183508e-12 - art_sys_94: 6.11140084e-05 - art_sys_95: -1.30546153e-10 - art_sys_96: -5.51673374e-14 - art_sys_97: 1.83185972e-10 - art_sys_98: -1.14785856e-04 - art_sys_99: 3.51524980e-11 - art_sys_100: 8.46560864e-10 - art_sys_101: 2.07987431e-04 - art_sys_102: 2.36901610e-05 - art_sys_103: -2.55417780e-11 - art_sys_104: 7.27544712e-11 - art_sys_105: 3.33890171e-05 - art_sys_106: -1.52363438e-09 - art_sys_107: -4.24728336e-14 - art_sys_108: 2.63403837e-15 - art_sys_109: 1.67906731e-14 - art_sys_110: -2.81750180e-10 - art_sys_111: -4.37301187e-05 - art_sys_112: -1.69645689e-11 - art_sys_113: -1.14924658e-16 - art_sys_114: 2.51354083e-05 - art_sys_115: 5.62778005e-12 - art_sys_116: -2.68345300e-10 - art_sys_117: -1.48011521e-05 - art_sys_118: -2.16621940e-11 - art_sys_119: 7.02814186e-06 - art_sys_120: 4.79214461e-10 - art_sys_121: -1.85933573e-12 - art_sys_122: 2.87984465e-06 - art_sys_123: 1.09932902e-06 - art_sys_124: 1.47979325e-12 - art_sys_125: 1.60914080e-10 - art_sys_126: -4.19211937e-12 - art_sys_127: -3.94680755e-07 - art_sys_128: -5.25938324e-12 - art_sys_129: 1.11014797e-07 - art_sys_130: -8.21616545e-12 - art_sys_131: 3.22819909e-11 - art_sys_132: -3.97696670e-08 - art_sys_133: -9.31998317e-11 - art_sys_134: -1.90099841e-13 - art_sys_135: 7.11196529e-09 - art_sys_136: -1.92471571e-11 - art_sys_137: 2.11187293e-15 - art_sys_138: -2.10456401e-10 - art_sys_139: -7.07232947e-10 - art_sys_140: -1.04153222e-10 - art_sys_141: 1.58244186e-11 - art_sys_142: 1.28170622e-12 - art_sys_143: 7.44637529e-16 - art_sys_144: 1.31233319e-15 - art_sys_145: 7.79957820e-17 - art_sys_146: 0.0 - art_sys_147: 4.97905526e-14 - art_sys_148: 2.06318962e-13 - art_sys_149: 2.06318962e-13 - art_sys_150: -4.76132200e-13 - art_sys_151: -4.76132200e-13 - art_sys_152: 6.19108010e-12 - art_sys_153: -3.12923966e-13 - art_sys_154: 3.45819004e-17 - art_sys_155: -1.70284104e-24 - art_sys_156: 8.06728108e-29 - art_sys_157: 2.38324147e-27 - art_sys_158: -0.0 - art_sys_159: 8.75149832e-16 - art_sys_160: -7.69810738e-17 - art_sys_161: 1.39483121e-16 - art_sys_162: -1.32598692e-17 - art_sys_163: 9.25082692e-15 - art_sys_164: 5.25437324e-15 - art_sys_165: -7.79227990e-16 - art_sys_166: 3.41202944e-24 - art_sys_167: 5.07830415e-24 - art_sys_168: -2.12846370e-25 - art_sys_169: 2.12067186e-25 - art_sys_170: 3.86043482e-25 - art_sys_171: -2.39096458e-25 - art_sys_172: -7.67745716e-26 - art_sys_173: 3.69093954e-26 - art_sys_174: 9.33924020e-27 - art_sys_175: 2.65707936e-28 - art_sys_176: 6.13756623e-28 - art_sys_177: -3.66951573e-27 - art_sys_178: 1.23088893e-27 - art_sys_179: -1.22897980e-27 - art_sys_180: -2.08335450e-28 - art_sys_181: 2.61033754e-29 - art_sys_182: 9.85955479e-29 - art_sys_183: -7.36779753e-31 - art_sys_184: 7.56557604e-31 - art_sys_185: 3.75027859e-31 + art_sys_20: -2.60220525e-28 + art_sys_21: 1.34655039e-24 + art_sys_22: -1.85188351e-27 + art_sys_23: -2.91829722e-12 + art_sys_24: 1.33889649e-23 + art_sys_25: 3.35382069e-10 + art_sys_26: 2.49670406e-10 + art_sys_27: 1.98587719e-17 + art_sys_28: 2.57337640e-21 + art_sys_29: 4.66591671e-18 + art_sys_30: 2.16082231e-09 + art_sys_31: -1.99040219e-20 + art_sys_32: 6.84604284e-18 + art_sys_33: 2.52780520e-09 + art_sys_34: 2.00616710e-08 + art_sys_35: -3.53977848e-19 + art_sys_36: -2.95589058e-14 + art_sys_37: 8.98421085e-15 + art_sys_38: 1.73304945e-15 + art_sys_39: -1.13716870e-15 + art_sys_40: 7.59764028e-16 + art_sys_41: -6.96057518e-16 + art_sys_42: 4.81760458e-16 + art_sys_43: -1.10168592e-16 + art_sys_44: 4.37015344e-17 + art_sys_45: 3.64042130e-17 + art_sys_46: -1.44346124e-16 + art_sys_47: 6.69321783e-17 + art_sys_48: -5.13424811e-08 + art_sys_49: 6.02066033e-16 + art_sys_50: -7.10166639e-17 + art_sys_51: 1.04750008e-16 + art_sys_52: -1.43067340e-16 + art_sys_53: 5.11283594e-07 + art_sys_54: -1.48784986e-15 + art_sys_55: -4.71049750e-07 + art_sys_56: -6.33883510e-17 + art_sys_57: 1.98851820e-16 + art_sys_58: -8.78364328e-17 + art_sys_59: 2.00386604e-07 + art_sys_60: 3.12412948e-12 + art_sys_61: 9.35037036e-17 + art_sys_62: 1.91025295e-16 + art_sys_63: -1.05276336e-11 + art_sys_64: 2.62958657e-14 + art_sys_65: 1.13065766e-14 + art_sys_66: 4.51770452e-15 + art_sys_67: -1.01833354e-15 + art_sys_68: -8.46382623e-16 + art_sys_69: -1.10163544e-16 + art_sys_70: -4.57628872e-16 + art_sys_71: -4.10829533e-17 + art_sys_72: -5.16606440e-17 + art_sys_73: 5.42362098e-17 + art_sys_74: -6.27703792e-14 + art_sys_75: -6.60558419e-20 + art_sys_76: -9.15233277e-15 + art_sys_77: -2.80134235e-14 + art_sys_78: -7.52112772e-15 + art_sys_79: 2.01909000e-17 + art_sys_80: 1.52948526e-15 + art_sys_81: 1.56097941e-13 + art_sys_82: -2.51816454e-10 + art_sys_83: 1.14669796e-15 + art_sys_84: 2.85144799e-17 + art_sys_85: -7.64019575e-16 + art_sys_86: -6.52702184e-16 + art_sys_87: 6.93263184e-14 + art_sys_88: -1.35016431e-13 + art_sys_89: -4.78095613e-17 + art_sys_90: 6.81473618e-12 + art_sys_91: 1.92288389e-05 + art_sys_92: 4.05208469e-17 + art_sys_93: 4.77805173e-17 + art_sys_94: -2.96559009e-13 + art_sys_95: 9.30281382e-11 + art_sys_96: -2.92583551e-05 + art_sys_97: 1.26261816e-11 + art_sys_98: 8.58488295e-11 + art_sys_99: 6.11139770e-05 + art_sys_100: -3.75904810e-10 + art_sys_101: -1.14790204e-04 + art_sys_102: -1.84004001e-10 + art_sys_103: 5.40390752e-12 + art_sys_104: -2.07986693e-04 + art_sys_105: 1.83858332e-15 + art_sys_106: -2.36952325e-05 + art_sys_107: -7.07675732e-11 + art_sys_108: -1.80334281e-14 + art_sys_109: 1.43475535e-15 + art_sys_110: -6.54377099e-10 + art_sys_111: 3.33883170e-05 + art_sys_112: 1.05428483e-10 + art_sys_113: 1.17948862e-09 + art_sys_114: 1.42952413e-16 + art_sys_115: -4.37299962e-05 + art_sys_116: 4.36810945e-11 + art_sys_117: 7.44602019e-16 + art_sys_118: 2.51339446e-05 + art_sys_119: 2.29554139e-11 + art_sys_120: -2.35143667e-10 + art_sys_121: -2.75469851e-16 + art_sys_122: -1.47986646e-05 + art_sys_123: -3.88447393e-12 + art_sys_124: 7.03254792e-06 + art_sys_125: -8.99429326e-17 + art_sys_126: -7.00498791e-11 + art_sys_127: 1.74589239e-13 + art_sys_128: -2.87940407e-06 + art_sys_129: 1.39716209e-16 + art_sys_130: -1.69331800e-12 + art_sys_131: -1.83925569e-15 + art_sys_132: -1.09816459e-06 + art_sys_133: 3.24872226e-12 + art_sys_134: -1.38302833e-11 + art_sys_135: 3.94980924e-07 + art_sys_136: 3.35359889e-16 + art_sys_137: -1.28908986e-13 + art_sys_138: 1.11255851e-07 + art_sys_139: 2.71271126e-12 + art_sys_140: -2.85671188e-16 + art_sys_141: 7.74803882e-13 + art_sys_142: 3.94621152e-08 + art_sys_143: 7.53610712e-13 + art_sys_144: -1.22427670e-14 + art_sys_145: 6.98212082e-09 + art_sys_146: -4.24876408e-13 + art_sys_147: 4.83502095e-15 + art_sys_148: -1.02960813e-16 + art_sys_149: -7.24084925e-10 + art_sys_150: 2.08260384e-11 + art_sys_151: 1.12825772e-12 + art_sys_152: -1.95777622e-14 + art_sys_153: 2.85821743e-12 + art_sys_154: -3.69903647e-12 + art_sys_155: -1.03529676e-14 + art_sys_156: 0.0 + art_sys_157: -8.13678869e-12 + art_sys_158: 0.0 + art_sys_159: 1.27766224e-12 + art_sys_160: -1.68084002e-13 + art_sys_161: -1.41577473e-13 + art_sys_162: -1.41577473e-13 + art_sys_163: -1.47134330e-13 + art_sys_164: -1.47134330e-13 + art_sys_165: 1.65808920e-27 + art_sys_166: -5.50277445e-28 + art_sys_167: -0.0 + art_sys_168: 5.50050519e-24 + art_sys_169: 2.68718811e-24 + art_sys_170: -7.19479744e-25 + art_sys_171: 1.37082554e-24 + art_sys_172: -4.01282510e-26 + art_sys_173: -2.90209697e-26 + art_sys_174: -2.40785953e-26 + art_sys_175: -4.82389610e-27 + art_sys_176: -3.85238333e-27 + art_sys_177: -7.11383633e-28 + art_sys_178: -1.54098934e-27 + art_sys_179: 3.13364388e-27 + art_sys_180: 3.32031958e-26 + art_sys_181: -2.17702522e-27 + art_sys_182: 5.54787990e-28 + art_sys_183: -6.10767439e-30 + art_sys_184: -4.15150502e-30 + art_sys_185: -5.83782340e-30 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -10715,191 +10715,191 @@ bins: RelativeStatFSR-: -6.33945030e-05 luminosity_uncertainty: 1.71522260e-03 uncorrelated_uncertainty: 6.59701000e-04 -- art_sys_1: 4.19364250e-50 - art_sys_2: 6.64940544e-38 - art_sys_3: 1.59374066e-37 - art_sys_4: 4.87930795e-18 - art_sys_5: 3.00418481e-32 - art_sys_6: -4.64335699e-35 - art_sys_7: 8.38878518e-17 - art_sys_8: 9.65640007e-32 - art_sys_9: -3.88349498e-16 - art_sys_10: 4.16597728e-33 - art_sys_11: -2.83241438e-29 +- art_sys_1: -2.52967599e-48 + art_sys_2: 9.52122890e-37 + art_sys_3: 4.84070622e-37 + art_sys_4: -4.87930795e-18 + art_sys_5: -1.15502219e-32 + art_sys_6: -3.09370109e-35 + art_sys_7: -8.38878518e-17 + art_sys_8: 1.23488852e-31 + art_sys_9: 3.88349498e-16 + art_sys_10: 3.09994029e-34 + art_sys_11: 5.23967726e-30 art_sys_12: -5.09390967e-16 - art_sys_13: 1.49922732e-31 + art_sys_13: 6.62951561e-32 art_sys_14: 2.93744641e-16 - art_sys_15: 2.92059941e-27 - art_sys_16: -2.77124502e-13 - art_sys_17: -7.93998156e-30 - art_sys_18: -2.14592466e-26 + art_sys_15: 2.61159463e-27 + art_sys_16: 2.77124502e-13 + art_sys_17: 9.19938825e-30 + art_sys_18: -6.39204722e-27 art_sys_19: -4.59708123e-13 - art_sys_20: 2.50387924e-28 - art_sys_21: 2.41260563e-26 - art_sys_22: 5.73769709e-13 - art_sys_23: 2.42660301e-28 - art_sys_24: -2.20678609e-24 - art_sys_25: 2.78267497e-16 - art_sys_26: -3.22366351e-14 - art_sys_27: 2.25377611e-15 - art_sys_28: -1.83724239e-12 - art_sys_29: -5.50828425e-11 - art_sys_30: -4.47891781e-16 - art_sys_31: 1.17728231e-16 - art_sys_32: -6.81279005e-16 - art_sys_33: 1.00215437e-16 - art_sys_34: 2.76296959e-17 - art_sys_35: 1.15604758e-21 - art_sys_36: -3.76080593e-18 - art_sys_37: 2.69587792e-10 - art_sys_38: 1.70220531e-16 - art_sys_39: 1.96862820e-20 - art_sys_40: 1.87238047e-18 - art_sys_41: -8.87790288e-10 - art_sys_42: -6.90615233e-09 - art_sys_43: 1.75211148e-18 - art_sys_44: 5.48660717e-17 - art_sys_45: -3.27619732e-16 - art_sys_46: -1.03437869e-17 - art_sys_47: 3.01459518e-17 - art_sys_48: -2.07936013e-08 - art_sys_49: -9.11311475e-14 - art_sys_50: 2.69989519e-14 - art_sys_51: -5.44371643e-15 - art_sys_52: -3.22645740e-15 - art_sys_53: -1.57919300e-15 - art_sys_54: 1.25206093e-15 - art_sys_55: -1.57743906e-16 - art_sys_56: -2.18582232e-16 - art_sys_57: -5.45437381e-17 - art_sys_58: 1.15415196e-15 - art_sys_59: -2.88365277e-16 - art_sys_60: 1.09269175e-07 - art_sys_61: 1.62963909e-15 - art_sys_62: 8.25285925e-14 - art_sys_63: 4.26835613e-15 - art_sys_64: -3.99294605e-07 - art_sys_65: 2.52502665e-17 - art_sys_66: 3.15865647e-17 - art_sys_67: 2.29997561e-16 - art_sys_68: -7.32202922e-16 - art_sys_69: -7.58188109e-14 - art_sys_70: 3.22692069e-07 - art_sys_71: 2.51481264e-12 - art_sys_72: 4.24505947e-16 - art_sys_73: 9.89920126e-14 - art_sys_74: 1.36275429e-14 - art_sys_75: 9.76965154e-16 - art_sys_76: -4.22754202e-19 - art_sys_77: -2.17351887e-12 - art_sys_78: 9.50745709e-13 - art_sys_79: -6.91616076e-15 - art_sys_80: 8.17799764e-11 - art_sys_81: 6.62453227e-16 - art_sys_82: -4.36023280e-16 - art_sys_83: 1.09563262e-12 - art_sys_84: -6.52096335e-17 - art_sys_85: -7.50071391e-17 - art_sys_86: 3.61587418e-12 - art_sys_87: 3.71139401e-11 - art_sys_88: 7.19279606e-13 - art_sys_89: 2.15382992e-14 - art_sys_90: -3.44144220e-06 - art_sys_91: 1.60699481e-09 - art_sys_92: -1.00425245e-05 - art_sys_93: 1.80610396e-12 - art_sys_94: 3.11507472e-05 - art_sys_95: 1.29994001e-10 - art_sys_96: 1.10237156e-13 - art_sys_97: 6.39241643e-10 - art_sys_98: 3.88854856e-05 - art_sys_99: 1.93916861e-11 - art_sys_100: -1.19173342e-09 - art_sys_101: 8.52182318e-05 - art_sys_102: 1.58239697e-04 - art_sys_103: 2.47764213e-11 - art_sys_104: 8.85353823e-11 - art_sys_105: -1.92125948e-05 - art_sys_106: 1.07712856e-09 - art_sys_107: 9.00970874e-14 - art_sys_108: -5.59030231e-15 - art_sys_109: -3.56513263e-14 - art_sys_110: 5.32706012e-10 - art_sys_111: 2.60663358e-05 - art_sys_112: 3.98589529e-11 - art_sys_113: 2.46024142e-16 - art_sys_114: -3.22523181e-05 - art_sys_115: -1.11148981e-11 - art_sys_116: 4.90685474e-10 - art_sys_117: 2.10261206e-05 - art_sys_118: 4.32394308e-11 - art_sys_119: -1.16501637e-05 - art_sys_120: -9.13393956e-10 - art_sys_121: 3.92761375e-12 - art_sys_122: -5.22736740e-06 - art_sys_123: -2.11448473e-06 - art_sys_124: -3.13900527e-12 - art_sys_125: -3.27467466e-10 - art_sys_126: 8.88698024e-12 - art_sys_127: 7.93976779e-07 - art_sys_128: 1.14057789e-11 - art_sys_129: -2.31084288e-07 - art_sys_130: 1.77260280e-11 - art_sys_131: -6.90018269e-11 - art_sys_132: 8.45013089e-08 - art_sys_133: 1.98079223e-10 - art_sys_134: 4.03924741e-13 - art_sys_135: -1.54619336e-08 - art_sys_136: 4.15444947e-11 - art_sys_137: -4.54068481e-15 - art_sys_138: -3.02547818e-10 - art_sys_139: 1.55544552e-09 - art_sys_140: 2.28896769e-10 - art_sys_141: -3.46165051e-11 - art_sys_142: -2.77908447e-12 - art_sys_143: -1.64238116e-15 - art_sys_144: -2.87775568e-15 - art_sys_145: -1.78924377e-16 - art_sys_146: -0.0 - art_sys_147: -1.03242059e-13 - art_sys_148: -4.91936742e-13 - art_sys_149: -4.91936742e-13 - art_sys_150: 1.10654083e-12 - art_sys_151: 1.10654083e-12 - art_sys_152: -1.25817879e-11 - art_sys_153: 6.15466469e-13 - art_sys_154: -5.37833460e-17 - art_sys_155: 3.41807884e-24 - art_sys_156: -1.74926240e-28 - art_sys_157: -4.42250248e-27 - art_sys_158: 0.0 - art_sys_159: -2.31443163e-15 - art_sys_160: 1.44909204e-16 - art_sys_161: -3.21075326e-16 - art_sys_162: 2.79412305e-17 - art_sys_163: -1.97696891e-14 - art_sys_164: -1.12235533e-14 - art_sys_165: 1.65086536e-15 - art_sys_166: -7.18103765e-24 - art_sys_167: -1.08986521e-23 - art_sys_168: 4.01414613e-25 - art_sys_169: -4.97453943e-25 - art_sys_170: -7.98006030e-25 - art_sys_171: 5.13595481e-25 - art_sys_172: 1.63378154e-25 - art_sys_173: -7.97697942e-26 - art_sys_174: -2.00654920e-26 - art_sys_175: -5.72444610e-28 - art_sys_176: -1.35688053e-27 - art_sys_177: 7.82262452e-27 - art_sys_178: -2.62567802e-27 - art_sys_179: 1.85724031e-27 - art_sys_180: 4.88321361e-28 - art_sys_181: -5.61831739e-29 - art_sys_182: -2.04738863e-28 - art_sys_183: 1.69877570e-30 - art_sys_184: -1.56312503e-30 - art_sys_185: -7.97751893e-31 + art_sys_20: 4.01710220e-29 + art_sys_21: -1.06999971e-25 + art_sys_22: -9.11397460e-30 + art_sys_23: 5.73769709e-13 + art_sys_24: 6.72164084e-24 + art_sys_25: 1.83723678e-12 + art_sys_26: -5.50828239e-11 + art_sys_27: 2.00483871e-20 + art_sys_28: -2.91927211e-22 + art_sys_29: 8.03384020e-18 + art_sys_30: -2.69587789e-10 + art_sys_31: 5.20098673e-21 + art_sys_32: -1.12383221e-17 + art_sys_33: -8.87790327e-10 + art_sys_34: -6.90615233e-09 + art_sys_35: 1.63279709e-19 + art_sys_36: -7.64788504e-15 + art_sys_37: 2.86465502e-14 + art_sys_38: 8.00804970e-15 + art_sys_39: -2.41006615e-15 + art_sys_40: 7.17010110e-16 + art_sys_41: -1.59088841e-15 + art_sys_42: 4.96311873e-16 + art_sys_43: -1.02419922e-16 + art_sys_44: 4.22321351e-17 + art_sys_45: 1.14203856e-16 + art_sys_46: -6.05315957e-17 + art_sys_47: -2.07635915e-17 + art_sys_48: 2.07936013e-08 + art_sys_49: -2.54133655e-16 + art_sys_50: -2.26894706e-17 + art_sys_51: 6.15075891e-18 + art_sys_52: 6.57837800e-17 + art_sys_53: 1.09269188e-07 + art_sys_54: -8.92270280e-17 + art_sys_55: -3.99294614e-07 + art_sys_56: -2.57507580e-17 + art_sys_57: -4.88412341e-17 + art_sys_58: 3.22099146e-17 + art_sys_59: -3.22692728e-07 + art_sys_60: 1.04613125e-12 + art_sys_61: -2.83674520e-17 + art_sys_62: 8.95437510e-17 + art_sys_63: 6.02913245e-12 + art_sys_64: 5.38910162e-14 + art_sys_65: 2.76733785e-14 + art_sys_66: -7.82500709e-15 + art_sys_67: -2.60161125e-15 + art_sys_68: 6.53139562e-16 + art_sys_69: 4.19471935e-18 + art_sys_70: 6.70625729e-16 + art_sys_71: 2.68919789e-16 + art_sys_72: -6.79856384e-17 + art_sys_73: 3.75370697e-17 + art_sys_74: 2.10036921e-14 + art_sys_75: -1.40886707e-18 + art_sys_76: -2.72090246e-14 + art_sys_77: -1.19919365e-14 + art_sys_78: -8.60249873e-17 + art_sys_79: -3.73679700e-18 + art_sys_80: -3.15319238e-15 + art_sys_81: -5.36041983e-14 + art_sys_82: 5.88765439e-11 + art_sys_83: 2.59265546e-16 + art_sys_84: -3.13217157e-16 + art_sys_85: 3.87896769e-16 + art_sys_86: -3.21862802e-16 + art_sys_87: 1.36849313e-13 + art_sys_88: -2.21851183e-13 + art_sys_89: 8.03300676e-18 + art_sys_90: -9.96815144e-12 + art_sys_91: 3.44147383e-06 + art_sys_92: -5.87953437e-17 + art_sys_93: -2.68919195e-19 + art_sys_94: 5.73116278e-13 + art_sys_95: -1.17938705e-10 + art_sys_96: 1.00427034e-05 + art_sys_97: -4.51525215e-12 + art_sys_98: -5.84746457e-11 + art_sys_99: 3.11506259e-05 + art_sys_100: 2.41860338e-10 + art_sys_101: 3.88822900e-05 + art_sys_102: 3.38858673e-10 + art_sys_103: 1.38407382e-11 + art_sys_104: -8.52165495e-05 + art_sys_105: -2.44488668e-15 + art_sys_106: -1.58244620e-04 + art_sys_107: 1.29951381e-10 + art_sys_108: 3.97750156e-14 + art_sys_109: -3.22501917e-15 + art_sys_110: 9.86743931e-10 + art_sys_111: -1.92114385e-05 + art_sys_112: -1.59620652e-10 + art_sys_113: -6.73781385e-10 + art_sys_114: -3.15027847e-16 + art_sys_115: 2.60660810e-05 + art_sys_116: -7.95901544e-11 + art_sys_117: -1.29893692e-15 + art_sys_118: -3.22497236e-05 + art_sys_119: -4.49711707e-11 + art_sys_120: 4.61220707e-10 + art_sys_121: 6.66184657e-16 + art_sys_122: 2.10220702e-05 + art_sys_123: 8.32427329e-12 + art_sys_124: -1.16561738e-05 + art_sys_125: 1.98640251e-16 + art_sys_126: 1.40574268e-10 + art_sys_127: -3.84260883e-13 + art_sys_128: 5.22651865e-06 + art_sys_129: -3.09039246e-16 + art_sys_130: 3.72170238e-12 + art_sys_131: 3.99607990e-15 + art_sys_132: 2.11239070e-06 + art_sys_133: -7.14523057e-12 + art_sys_134: 3.06170626e-11 + art_sys_135: -7.94579500e-07 + art_sys_136: -7.39554654e-16 + art_sys_137: 2.87905421e-13 + art_sys_138: -2.31612972e-07 + art_sys_139: -5.93924713e-12 + art_sys_140: 6.31524299e-16 + art_sys_141: -1.62872603e-12 + art_sys_142: -8.38737793e-08 + art_sys_143: -1.62893635e-12 + art_sys_144: 2.58883631e-14 + art_sys_145: -1.51993863e-08 + art_sys_146: 9.23983368e-13 + art_sys_147: -1.05268673e-14 + art_sys_148: 1.55822823e-16 + art_sys_149: 1.59539752e-09 + art_sys_150: -4.58739123e-11 + art_sys_151: -2.47870176e-12 + art_sys_152: 4.30294971e-14 + art_sys_153: -6.27524589e-12 + art_sys_154: 4.40892953e-12 + art_sys_155: 2.27017417e-14 + art_sys_156: -0.0 + art_sys_157: 1.79175192e-11 + art_sys_158: -0.0 + art_sys_159: -2.80677323e-12 + art_sys_160: 3.70097111e-13 + art_sys_161: 3.10609754e-13 + art_sys_162: 3.10609754e-13 + art_sys_163: 3.23112413e-13 + art_sys_164: 3.23112413e-13 + art_sys_165: -3.64072911e-27 + art_sys_166: 1.20824016e-27 + art_sys_167: 0.0 + art_sys_168: -1.46807703e-23 + art_sys_169: -5.99626914e-24 + art_sys_170: 1.49067754e-24 + art_sys_171: -3.02831567e-24 + art_sys_172: 8.93240690e-26 + art_sys_173: 6.46067690e-26 + art_sys_174: 5.40919436e-26 + art_sys_175: 1.12459830e-26 + art_sys_176: 8.53898827e-27 + art_sys_177: 1.83834728e-27 + art_sys_178: 3.28383493e-27 + art_sys_179: -6.86450181e-27 + art_sys_180: -7.29350161e-26 + art_sys_181: -2.54202780e-27 + art_sys_182: -1.23438802e-27 + art_sys_183: 1.35434792e-29 + art_sys_184: 8.74385187e-30 + art_sys_185: 1.26183436e-29 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -11006,191 +11006,191 @@ bins: RelativeStatFSR-: -4.06774286e-05 luminosity_uncertainty: 1.03723360e-03 uncorrelated_uncertainty: 3.98936000e-04 -- art_sys_1: 2.07426069e-51 - art_sys_2: 3.33493237e-39 - art_sys_3: 1.14351134e-38 - art_sys_4: 2.44716017e-19 - art_sys_5: 2.37930562e-33 - art_sys_6: -2.31351399e-36 - art_sys_7: 6.54221980e-18 - art_sys_8: 8.21312790e-33 - art_sys_9: -2.97484535e-17 - art_sys_10: 3.20960561e-34 - art_sys_11: -3.77648700e-30 +- art_sys_1: -1.26905003e-49 + art_sys_2: 4.77526166e-38 + art_sys_3: 3.15106719e-38 + art_sys_4: -2.44716017e-19 + art_sys_5: -9.40082076e-34 + art_sys_6: -1.54113893e-36 + art_sys_7: -6.54221980e-18 + art_sys_8: 1.21958209e-32 + art_sys_9: 2.97484535e-17 + art_sys_10: 2.27995906e-35 + art_sys_11: 5.54005141e-31 art_sys_12: -1.11983491e-17 - art_sys_13: 9.90501332e-32 + art_sys_13: 1.12582295e-30 art_sys_14: 3.85491213e-15 - art_sys_15: 6.22534875e-28 - art_sys_16: -3.40565093e-14 - art_sys_17: 8.04576209e-31 - art_sys_18: -5.88944633e-27 + art_sys_15: 4.67540382e-28 + art_sys_16: 3.40565093e-14 + art_sys_17: 1.39419212e-30 + art_sys_18: -9.89118152e-29 art_sys_19: -8.74978744e-14 - art_sys_20: 7.14333756e-29 - art_sys_21: -5.06171749e-26 - art_sys_22: 1.60684756e-13 - art_sys_23: 1.24927369e-28 - art_sys_24: 2.26161472e-26 - art_sys_25: -2.99782171e-15 - art_sys_26: -3.81952048e-14 - art_sys_27: -1.24112715e-14 - art_sys_28: 5.94240197e-12 - art_sys_29: -1.10456660e-11 - art_sys_30: -3.30201717e-15 - art_sys_31: -5.62277334e-16 - art_sys_32: 3.48367000e-16 - art_sys_33: -2.41616648e-16 - art_sys_34: 7.09684393e-19 - art_sys_35: 4.02739998e-22 - art_sys_36: 1.62668448e-17 - art_sys_37: 9.20561548e-11 - art_sys_38: 5.94051003e-16 - art_sys_39: 6.73742236e-21 - art_sys_40: 3.66773975e-18 - art_sys_41: -3.69920347e-10 - art_sys_42: -1.63232525e-09 - art_sys_43: -6.93282086e-17 - art_sys_44: 6.71330502e-17 - art_sys_45: -3.09188581e-18 - art_sys_46: -2.45604579e-18 - art_sys_47: 8.13720962e-18 - art_sys_48: -5.56416369e-09 - art_sys_49: 6.09270740e-14 - art_sys_50: -5.59808109e-15 - art_sys_51: -3.51538926e-15 - art_sys_52: -3.19563354e-15 - art_sys_53: 9.74639972e-16 - art_sys_54: -2.32977378e-16 - art_sys_55: 2.01291555e-17 - art_sys_56: -3.32188265e-17 - art_sys_57: -1.46385858e-17 - art_sys_58: 1.42769356e-17 - art_sys_59: 2.15271252e-16 - art_sys_60: 1.12459898e-08 - art_sys_61: 1.61133469e-16 - art_sys_62: 1.46135055e-14 - art_sys_63: 8.70838900e-16 - art_sys_64: -7.08300909e-08 - art_sys_65: 5.19386795e-17 - art_sys_66: -4.63443713e-18 - art_sys_67: 3.79854856e-17 - art_sys_68: 4.18108362e-16 - art_sys_69: -3.62474935e-14 - art_sys_70: 6.63899916e-08 - art_sys_71: -8.58701995e-13 - art_sys_72: 4.87084421e-17 - art_sys_73: 3.18350430e-14 - art_sys_74: -1.02038095e-14 - art_sys_75: -2.01205225e-15 - art_sys_76: 9.61735043e-18 - art_sys_77: -4.72501556e-13 - art_sys_78: 1.93430524e-12 - art_sys_79: 1.10799203e-15 - art_sys_80: 2.84873004e-11 - art_sys_81: 1.01754779e-16 - art_sys_82: 7.02168561e-16 - art_sys_83: -4.89542865e-13 - art_sys_84: 8.95697430e-16 - art_sys_85: 8.66583364e-17 - art_sys_86: -6.31885693e-12 - art_sys_87: 1.85676945e-11 - art_sys_88: -1.28108568e-12 - art_sys_89: -4.18599485e-14 - art_sys_90: 1.54661848e-06 - art_sys_91: 6.80838618e-10 - art_sys_92: -4.63365075e-06 - art_sys_93: 7.76558664e-13 - art_sys_94: -4.75042831e-06 - art_sys_95: -2.79407723e-11 - art_sys_96: -2.09354527e-13 - art_sys_97: -2.00500191e-09 - art_sys_98: 2.60781876e-05 - art_sys_99: -2.60976531e-12 - art_sys_100: 1.34488422e-09 - art_sys_101: -2.93567040e-05 - art_sys_102: 6.36229785e-05 - art_sys_103: 6.50897771e-13 - art_sys_104: 2.13722837e-12 - art_sys_105: -1.20879097e-04 - art_sys_106: -2.30988852e-10 - art_sys_107: -1.86248320e-13 - art_sys_108: 1.15671526e-14 - art_sys_109: 7.53012612e-14 - art_sys_110: -9.46996586e-10 - art_sys_111: -1.62121197e-05 - art_sys_112: -8.99418863e-11 - art_sys_113: -5.33159088e-16 - art_sys_114: 1.85192732e-05 - art_sys_115: 2.06982511e-11 - art_sys_116: -8.36459050e-10 - art_sys_117: -2.55904685e-05 - art_sys_118: -8.19885524e-11 - art_sys_119: 1.65536984e-05 - art_sys_120: 1.63911870e-09 - art_sys_121: -8.08375931e-12 - art_sys_122: 8.67533799e-06 - art_sys_123: 3.82703041e-06 - art_sys_124: 6.49029060e-12 - art_sys_125: 6.35801159e-10 - art_sys_126: -1.83451901e-11 - art_sys_127: -1.52124608e-06 - art_sys_128: -2.42666638e-11 - art_sys_129: 4.65685889e-07 - art_sys_130: -3.74311273e-11 - art_sys_131: 1.43918267e-10 - art_sys_132: -1.75015424e-07 - art_sys_133: -4.10393341e-10 - art_sys_134: -8.36580520e-13 - art_sys_135: 3.30334761e-08 - art_sys_136: -8.79163639e-11 - art_sys_137: 9.55433242e-15 - art_sys_138: -5.97307527e-11 - art_sys_139: -3.37557969e-09 - art_sys_140: -4.96268120e-10 - art_sys_141: 7.46827986e-11 - art_sys_142: 5.82547761e-12 - art_sys_143: 3.57480461e-15 - art_sys_144: 6.22760055e-15 - art_sys_145: 4.86762287e-16 - art_sys_146: 0.0 - art_sys_147: 2.17814436e-13 - art_sys_148: 1.03318686e-12 - art_sys_149: 1.03318686e-12 - art_sys_150: -2.54996345e-12 - art_sys_151: -2.54996345e-12 - art_sys_152: 2.47810753e-11 - art_sys_153: -1.16247133e-12 - art_sys_154: 5.68710905e-17 - art_sys_155: -6.62065999e-24 - art_sys_156: 3.73498375e-28 - art_sys_157: 7.55489908e-27 - art_sys_158: -0.0 - art_sys_159: 5.86699053e-15 - art_sys_160: -2.40157896e-16 - art_sys_161: 7.41936439e-16 - art_sys_162: -5.51855148e-17 - art_sys_163: 4.15188758e-14 - art_sys_164: 2.32559515e-14 - art_sys_165: -3.40561710e-15 - art_sys_166: 1.46182412e-23 - art_sys_167: 2.29357887e-23 - art_sys_168: -6.81913463e-25 - art_sys_169: 1.00309838e-24 - art_sys_170: 1.60642847e-24 - art_sys_171: -1.07752936e-24 - art_sys_172: -3.48889556e-25 - art_sys_173: 1.67096977e-25 - art_sys_174: 4.15401818e-26 - art_sys_175: 1.15343838e-27 - art_sys_176: 2.84980554e-27 - art_sys_177: -1.65560544e-26 - art_sys_178: 5.68619874e-27 - art_sys_179: -1.35775320e-27 - art_sys_180: -1.21316595e-27 - art_sys_181: 1.17933668e-28 - art_sys_182: 4.08360757e-28 - art_sys_183: -3.83064687e-30 - art_sys_184: 3.11323945e-30 - art_sys_185: 1.65264657e-30 + art_sys_20: 1.17613761e-29 + art_sys_21: -5.65927785e-26 + art_sys_22: 3.66785823e-29 + art_sys_23: 1.60684756e-13 + art_sys_24: 1.22949466e-24 + art_sys_25: -5.94240227e-12 + art_sys_26: -1.10456675e-11 + art_sys_27: 1.90012883e-19 + art_sys_28: -1.01609055e-22 + art_sys_29: -7.63135963e-18 + art_sys_30: -9.20561623e-11 + art_sys_31: 1.76210714e-21 + art_sys_32: -3.10845588e-18 + art_sys_33: -3.69920352e-10 + art_sys_34: -1.63232525e-09 + art_sys_35: 4.18703999e-20 + art_sys_36: -2.01354670e-15 + art_sys_37: 5.01551345e-14 + art_sys_38: -3.86463250e-15 + art_sys_39: 3.73018882e-15 + art_sys_40: 1.25054171e-15 + art_sys_41: -1.28339089e-15 + art_sys_42: 2.03474185e-16 + art_sys_43: -3.41214331e-17 + art_sys_44: -9.58827823e-17 + art_sys_45: -5.99018983e-17 + art_sys_46: 1.67845560e-16 + art_sys_47: -7.15799032e-18 + art_sys_48: 5.56416368e-09 + art_sys_49: -6.70390634e-17 + art_sys_50: 9.07028777e-17 + art_sys_51: -1.12672560e-16 + art_sys_52: 1.73518037e-17 + art_sys_53: 1.12459920e-08 + art_sys_54: 2.25673803e-17 + art_sys_55: -7.08300925e-08 + art_sys_56: -1.94007139e-18 + art_sys_57: -1.30843406e-16 + art_sys_58: 4.01821397e-17 + art_sys_59: -6.63898488e-08 + art_sys_60: -1.70348053e-13 + art_sys_61: -3.24178149e-17 + art_sys_62: -6.49280094e-17 + art_sys_63: 2.26351057e-12 + art_sys_64: 5.33276529e-14 + art_sys_65: -3.65712727e-14 + art_sys_66: 1.58101652e-14 + art_sys_67: 1.88897135e-15 + art_sys_68: -5.62327602e-16 + art_sys_69: -9.00070145e-16 + art_sys_70: 7.12194792e-16 + art_sys_71: -1.36009117e-16 + art_sys_72: 6.02709421e-20 + art_sys_73: 6.78854236e-17 + art_sys_74: 9.92526822e-15 + art_sys_75: 1.25033474e-18 + art_sys_76: 4.70129429e-14 + art_sys_77: -1.76798744e-14 + art_sys_78: -1.05750815e-14 + art_sys_79: 2.76489192e-19 + art_sys_80: -7.81956992e-15 + art_sys_81: -2.47297659e-14 + art_sys_82: 3.46568949e-11 + art_sys_83: 2.08542208e-16 + art_sys_84: -2.78360167e-16 + art_sys_85: 9.93697591e-17 + art_sys_86: -3.46232252e-16 + art_sys_87: 6.14135320e-14 + art_sys_88: 8.52506616e-13 + art_sys_89: 2.61271806e-18 + art_sys_90: 1.35174986e-11 + art_sys_91: -1.54660786e-06 + art_sys_92: 2.22769400e-18 + art_sys_93: -2.19475852e-17 + art_sys_94: -1.04192249e-12 + art_sys_95: -5.51251814e-10 + art_sys_96: 4.63365066e-06 + art_sys_97: -2.01747542e-12 + art_sys_98: -4.90609696e-10 + art_sys_99: -4.75037655e-06 + art_sys_100: -7.18339208e-11 + art_sys_101: 2.60776438e-05 + art_sys_102: -6.12214228e-10 + art_sys_103: 2.83194059e-13 + art_sys_104: 2.93549316e-05 + art_sys_105: 8.78200397e-16 + art_sys_106: -6.36219042e-05 + art_sys_107: -2.24095260e-10 + art_sys_108: -8.65632534e-14 + art_sys_109: 6.84597800e-15 + art_sys_110: -1.32952372e-09 + art_sys_111: -1.20876974e-04 + art_sys_112: 2.27634013e-10 + art_sys_113: -4.26596965e-09 + art_sys_114: 6.75921313e-16 + art_sys_115: -1.62119319e-05 + art_sys_116: 1.32908213e-10 + art_sys_117: 1.94526373e-15 + art_sys_118: 1.85155413e-05 + art_sys_119: 8.33216952e-11 + art_sys_120: -8.53785318e-10 + art_sys_121: -1.56679198e-15 + art_sys_122: -2.55849883e-05 + art_sys_123: -1.74285888e-11 + art_sys_124: 1.65603555e-05 + art_sys_125: -4.35212129e-16 + art_sys_126: -2.68058137e-10 + art_sys_127: 8.38643017e-13 + art_sys_128: -8.67391670e-06 + art_sys_129: 6.81490685e-16 + art_sys_130: -8.07273968e-12 + art_sys_131: -8.61106378e-15 + art_sys_132: -3.82361250e-06 + art_sys_133: 1.55018844e-11 + art_sys_134: -6.68296648e-11 + art_sys_135: 1.52240054e-06 + art_sys_136: 1.60011164e-15 + art_sys_137: -6.29338805e-13 + art_sys_138: 4.66822228e-07 + art_sys_139: 1.28093231e-11 + art_sys_140: -1.38054520e-15 + art_sys_141: 3.32661670e-12 + art_sys_142: 1.73783963e-07 + art_sys_143: 3.45354057e-12 + art_sys_144: -5.31171766e-14 + art_sys_145: 3.25252023e-08 + art_sys_146: -1.97255593e-12 + art_sys_147: 2.25280641e-14 + art_sys_148: -1.32864591e-16 + art_sys_149: -3.46982427e-09 + art_sys_150: 9.97191167e-11 + art_sys_151: 5.40686737e-12 + art_sys_152: -9.32349710e-14 + art_sys_153: 1.36072337e-11 + art_sys_154: -7.26537166e-12 + art_sys_155: -4.87993120e-14 + art_sys_156: 0.0 + art_sys_157: -3.94330320e-11 + art_sys_158: 0.0 + art_sys_159: 6.11610004e-12 + art_sys_160: -8.13199493e-13 + art_sys_161: -6.71289239e-13 + art_sys_162: -6.71289239e-13 + art_sys_163: -7.02195075e-13 + art_sys_164: -7.02195075e-13 + art_sys_165: 7.90598150e-27 + art_sys_166: -2.62340440e-27 + art_sys_167: -0.0 + art_sys_168: 3.11757384e-23 + art_sys_169: 1.27943610e-23 + art_sys_170: -3.29701298e-24 + art_sys_171: 6.43230273e-24 + art_sys_172: -1.89570369e-25 + art_sys_173: -1.37872469e-25 + art_sys_174: -1.14307514e-25 + art_sys_175: -2.33668586e-26 + art_sys_176: -1.70628504e-26 + art_sys_177: -4.94888572e-27 + art_sys_178: -6.97450983e-27 + art_sys_179: 1.46719060e-26 + art_sys_180: 1.58821576e-25 + art_sys_181: 2.82631454e-26 + art_sys_182: 2.62529968e-27 + art_sys_183: -2.90151677e-29 + art_sys_184: -1.78341985e-29 + art_sys_185: -2.67280506e-29 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -11297,191 +11297,191 @@ bins: RelativeStatFSR-: -2.62440138e-05 luminosity_uncertainty: 6.31118800e-04 uncorrelated_uncertainty: 2.42738000e-04 -- art_sys_1: 1.07721626e-52 - art_sys_2: 1.76018577e-40 - art_sys_3: 7.95120965e-40 - art_sys_4: 1.29161716e-20 - art_sys_5: 1.84835743e-34 - art_sys_6: -1.21078561e-37 - art_sys_7: 5.03223889e-19 - art_sys_8: 7.41624082e-34 - art_sys_9: -2.21616843e-18 - art_sys_10: 2.40657973e-35 - art_sys_11: -4.15577769e-31 +- art_sys_1: -6.70009475e-51 + art_sys_2: 2.52039485e-39 + art_sys_3: 2.11939110e-39 + art_sys_4: -1.29161716e-20 + art_sys_5: -7.25407026e-35 + art_sys_6: -8.12689483e-38 + art_sys_7: -5.03223889e-19 + art_sys_8: 1.09769075e-33 + art_sys_9: 2.21616843e-18 + art_sys_10: -2.39575981e-37 + art_sys_11: 3.92738198e-32 art_sys_12: 6.67365220e-19 - art_sys_13: 1.45997499e-32 + art_sys_13: 1.78861277e-31 art_sys_14: 6.11833352e-16 - art_sys_15: 7.46526321e-29 - art_sys_16: -3.15603809e-15 - art_sys_17: 1.95906380e-31 - art_sys_18: -6.51835782e-28 + art_sys_15: 4.04049373e-29 + art_sys_16: 3.15603809e-15 + art_sys_17: 1.47292329e-31 + art_sys_18: -5.03786430e-28 art_sys_19: -1.02704062e-14 - art_sys_20: 9.34114431e-30 - art_sys_21: -4.36930316e-27 - art_sys_22: 2.08965162e-14 - art_sys_23: 1.75957563e-29 - art_sys_24: 9.98312190e-26 - art_sys_25: -8.56816165e-15 - art_sys_26: -5.52445750e-15 - art_sys_27: -4.55527935e-15 - art_sys_28: 1.07602897e-12 - art_sys_29: -8.45443356e-13 - art_sys_30: -1.05502716e-15 - art_sys_31: -3.37559735e-16 - art_sys_32: 6.18488377e-17 - art_sys_33: 1.58348441e-16 - art_sys_34: 7.47708018e-20 - art_sys_35: 5.26328795e-23 - art_sys_36: 4.70534289e-18 - art_sys_37: 1.20897804e-11 - art_sys_38: 7.29807544e-17 - art_sys_39: 9.51576990e-22 - art_sys_40: -6.56891849e-18 - art_sys_41: -5.82310299e-11 - art_sys_42: -1.78567542e-10 - art_sys_43: 1.73983047e-17 - art_sys_44: 1.46752097e-16 - art_sys_45: -1.84706702e-16 - art_sys_46: -2.68943342e-19 - art_sys_47: 9.92339210e-19 - art_sys_48: -6.06422963e-10 - art_sys_49: 6.88272845e-14 - art_sys_50: -8.72204892e-15 - art_sys_51: -3.68045024e-15 - art_sys_52: -3.14927191e-15 - art_sys_53: 2.24288088e-15 - art_sys_54: 3.48128139e-16 - art_sys_55: -1.03218449e-16 - art_sys_56: -1.30960722e-16 - art_sys_57: -1.58345341e-18 - art_sys_58: 2.87019857e-16 - art_sys_59: 4.56030149e-17 - art_sys_60: 9.83274941e-10 - art_sys_61: 1.39067629e-17 - art_sys_62: 9.28188668e-16 - art_sys_63: 2.32626222e-16 - art_sys_64: -4.44419170e-09 - art_sys_65: 8.69989627e-18 - art_sys_66: 7.36909820e-18 - art_sys_67: 1.35105438e-18 - art_sys_68: 2.13460311e-16 - art_sys_69: 3.19918215e-15 - art_sys_70: -2.06119591e-09 - art_sys_71: -3.22256221e-13 - art_sys_72: 1.04005660e-17 - art_sys_73: -1.16154006e-13 - art_sys_74: -6.44963302e-14 - art_sys_75: -9.85874973e-15 - art_sys_76: -7.31257119e-18 - art_sys_77: 1.70618134e-13 - art_sys_78: 4.63331226e-14 - art_sys_79: -7.64364756e-15 - art_sys_80: -1.22939094e-11 - art_sys_81: 7.81266732e-16 - art_sys_82: 1.61735820e-16 - art_sys_83: 9.60170887e-13 - art_sys_84: -8.73290506e-16 - art_sys_85: 2.73412304e-16 - art_sys_86: 9.99488371e-12 - art_sys_87: -1.07799357e-12 - art_sys_88: 2.09508187e-12 - art_sys_89: 7.83504767e-14 - art_sys_90: 4.87074873e-07 - art_sys_91: -1.52324442e-10 - art_sys_92: 4.27083074e-07 - art_sys_93: -8.27353580e-14 - art_sys_94: -4.18785662e-06 - art_sys_95: -7.83576691e-11 - art_sys_96: 3.79239500e-13 - art_sys_97: 3.40095301e-09 - art_sys_98: -2.43866449e-06 - art_sys_99: -2.55256704e-12 - art_sys_100: -8.01377611e-10 - art_sys_101: -1.88815243e-05 - art_sys_102: -2.26105840e-05 - art_sys_103: -6.88690500e-11 - art_sys_104: -9.84480641e-12 - art_sys_105: -4.59433370e-05 - art_sys_106: -2.48569746e-09 - art_sys_107: 3.79698593e-13 - art_sys_108: -2.35763508e-14 - art_sys_109: -1.52554593e-13 - art_sys_110: 1.53027703e-09 - art_sys_111: -9.21744793e-05 - art_sys_112: 2.01055012e-10 - art_sys_113: 1.06492367e-15 - art_sys_114: -1.37231339e-05 - art_sys_115: -3.61724120e-11 - art_sys_116: 1.17636193e-09 - art_sys_117: 1.26948266e-05 - art_sys_118: 1.48091382e-10 - art_sys_119: -2.04955527e-05 - art_sys_120: -2.74202753e-09 - art_sys_121: 1.63735364e-11 - art_sys_122: -1.25984817e-05 - art_sys_123: -6.43929352e-06 - art_sys_124: -1.32322148e-11 - art_sys_125: -1.18669689e-09 - art_sys_126: 3.73419132e-11 - art_sys_127: 2.79188922e-06 - art_sys_128: 5.12204076e-11 - art_sys_129: -9.12308505e-07 - art_sys_130: 7.86924148e-11 - art_sys_131: -2.97033792e-10 - art_sys_132: 3.57738212e-07 - art_sys_133: 8.39297351e-10 - art_sys_134: 1.71001569e-12 - art_sys_135: -7.04833108e-08 - art_sys_136: 1.85195374e-10 - art_sys_137: -1.99755920e-14 - art_sys_138: 5.18088163e-11 - art_sys_139: 7.34813050e-09 - art_sys_140: 1.07897910e-09 - art_sys_141: -1.61257006e-10 - art_sys_142: -1.22407594e-11 - art_sys_143: -7.81452371e-15 - art_sys_144: -1.34997997e-14 - art_sys_145: -1.22966007e-15 - art_sys_146: -0.0 - art_sys_147: -4.45269755e-13 - art_sys_148: -2.31147724e-12 - art_sys_149: -2.31147724e-12 - art_sys_150: 5.94769392e-12 - art_sys_151: 5.94769392e-12 - art_sys_152: -4.69671253e-11 - art_sys_153: 2.04753290e-12 - art_sys_154: 3.35509452e-17 - art_sys_155: 1.22405420e-23 - art_sys_156: -7.91381035e-28 - art_sys_157: -1.14480841e-26 - art_sys_158: 0.0 - art_sys_159: -9.52237075e-15 - art_sys_160: 4.47345588e-16 - art_sys_161: -1.73373373e-15 - art_sys_162: 1.08403833e-16 - art_sys_163: -8.62383354e-14 - art_sys_164: -4.78099679e-14 - art_sys_165: 6.91828719e-15 - art_sys_166: -2.76498489e-23 - art_sys_167: -4.37404280e-23 - art_sys_168: 6.88176652e-25 - art_sys_169: -2.00965304e-24 - art_sys_170: -3.16109414e-24 - art_sys_171: 2.20146611e-24 - art_sys_172: 7.27180650e-25 - art_sys_173: -3.41668471e-25 - art_sys_174: -8.34514276e-26 - art_sys_175: -2.33876717e-27 - art_sys_176: -6.14709827e-27 - art_sys_177: 3.39168529e-26 - art_sys_178: -1.14002628e-26 - art_sys_179: 7.28078621e-27 - art_sys_180: 2.34950678e-27 - art_sys_181: -2.41419377e-28 - art_sys_182: -7.43481158e-28 - art_sys_183: 8.87315584e-30 - art_sys_184: -5.98993882e-30 - art_sys_185: -3.38236996e-30 + art_sys_20: 1.56319756e-30 + art_sys_21: -8.58867079e-27 + art_sys_22: 5.83685496e-30 + art_sys_23: 2.08965162e-14 + art_sys_24: 9.57007675e-26 + art_sys_25: -1.07602898e-12 + art_sys_26: -8.45443476e-13 + art_sys_27: 2.86271831e-20 + art_sys_28: -1.32863419e-23 + art_sys_29: -2.50346400e-18 + art_sys_30: -1.20897788e-11 + art_sys_31: 2.49022874e-22 + art_sys_32: -1.80919746e-18 + art_sys_33: -5.82310327e-11 + art_sys_34: -1.78567542e-10 + art_sys_35: 4.60814339e-21 + art_sys_36: 2.75144002e-15 + art_sys_37: 9.33336631e-15 + art_sys_38: -5.73852210e-15 + art_sys_39: 1.72433036e-15 + art_sys_40: 3.24296830e-17 + art_sys_41: -7.41017832e-17 + art_sys_42: -2.51158233e-16 + art_sys_43: -3.01604500e-16 + art_sys_44: 2.59198055e-17 + art_sys_45: -7.24882460e-16 + art_sys_46: -1.10535107e-15 + art_sys_47: -6.94324411e-19 + art_sys_48: 6.06422962e-10 + art_sys_49: -7.34844149e-18 + art_sys_50: -5.45698948e-16 + art_sys_51: 9.55490405e-16 + art_sys_52: 1.90480097e-18 + art_sys_53: 9.83275081e-10 + art_sys_54: 4.68987929e-18 + art_sys_55: -4.44419179e-09 + art_sys_56: 8.89760811e-19 + art_sys_57: 1.27874010e-15 + art_sys_58: -4.75089953e-16 + art_sys_59: 2.06127331e-09 + art_sys_60: -1.20337969e-13 + art_sys_61: 3.65638972e-16 + art_sys_62: -1.64297538e-17 + art_sys_63: -3.74488802e-13 + art_sys_64: -3.62154822e-14 + art_sys_65: -1.87484498e-14 + art_sys_66: -1.23395378e-14 + art_sys_67: 5.54547826e-17 + art_sys_68: 1.63241949e-15 + art_sys_69: 9.55311242e-16 + art_sys_70: 7.79301025e-16 + art_sys_71: -1.00795614e-16 + art_sys_72: -2.13658873e-17 + art_sys_73: -1.13567784e-17 + art_sys_74: -1.20936008e-15 + art_sys_75: 2.83060360e-18 + art_sys_76: -3.10059728e-14 + art_sys_77: 1.93034750e-15 + art_sys_78: 5.35812779e-15 + art_sys_79: -2.04709745e-17 + art_sys_80: -2.71064305e-15 + art_sys_81: 2.28888881e-15 + art_sys_82: -3.87265191e-13 + art_sys_83: 8.71574751e-16 + art_sys_84: 7.19562532e-16 + art_sys_85: -3.85165772e-17 + art_sys_86: 1.43431057e-16 + art_sys_87: -2.04348160e-14 + art_sys_88: -8.21914064e-13 + art_sys_89: -2.19097905e-17 + art_sys_90: -5.83373617e-12 + art_sys_91: -4.87076800e-07 + art_sys_92: -1.69943588e-17 + art_sys_93: -1.49242906e-17 + art_sys_94: 1.77216413e-12 + art_sys_95: -2.18438673e-10 + art_sys_96: -4.27106958e-07 + art_sys_97: 2.01933822e-13 + art_sys_98: -1.94739124e-10 + art_sys_99: -4.18780204e-06 + art_sys_100: -1.49530351e-10 + art_sys_101: -2.43822487e-06 + art_sys_102: 6.51732577e-10 + art_sys_103: -2.44050207e-12 + art_sys_104: 1.88802483e-05 + art_sys_105: 1.03775955e-14 + art_sys_106: 2.26127373e-05 + art_sys_107: 3.33716331e-10 + art_sys_108: 1.89215723e-13 + art_sys_109: -1.52664285e-14 + art_sys_110: 1.12087053e-09 + art_sys_111: -4.59426208e-05 + art_sys_112: -2.19028760e-10 + art_sys_113: -1.62292616e-09 + art_sys_114: -1.49188973e-15 + art_sys_115: -9.21750946e-05 + art_sys_116: -1.94654873e-10 + art_sys_117: -6.12198550e-15 + art_sys_118: -1.37191825e-05 + art_sys_119: -1.45435595e-10 + art_sys_120: 1.49724666e-09 + art_sys_121: 3.42461605e-15 + art_sys_122: 1.26877330e-05 + art_sys_123: 3.63571394e-11 + art_sys_124: -2.04976272e-05 + art_sys_125: 9.55618269e-16 + art_sys_126: 4.89542980e-10 + art_sys_127: -1.82724974e-12 + art_sys_128: 1.25964347e-05 + art_sys_129: -1.49185137e-15 + art_sys_130: 1.75550445e-11 + art_sys_131: 1.85200664e-14 + art_sys_132: 6.43452691e-06 + art_sys_133: -3.37351387e-11 + art_sys_134: 1.46414789e-10 + art_sys_135: -2.79399993e-06 + art_sys_136: -3.48347496e-15 + art_sys_137: 1.39236420e-12 + art_sys_138: -9.14729370e-07 + art_sys_139: -2.76607587e-11 + art_sys_140: 3.03131779e-15 + art_sys_141: -6.65249962e-12 + art_sys_142: -3.55404965e-07 + art_sys_143: -7.29196748e-12 + art_sys_144: 1.07300074e-13 + art_sys_145: -6.95409815e-08 + art_sys_146: 4.20709785e-12 + art_sys_147: -4.81742613e-14 + art_sys_148: -2.69459340e-16 + art_sys_149: 7.57333447e-09 + art_sys_150: -2.17528708e-10 + art_sys_151: -1.17957281e-11 + art_sys_152: 2.02600778e-13 + art_sys_153: -2.95570348e-11 + art_sys_154: 3.83552980e-12 + art_sys_155: 1.05290684e-13 + art_sys_156: -0.0 + art_sys_157: 8.66819602e-11 + art_sys_158: -0.0 + art_sys_159: -1.33334838e-11 + art_sys_160: 1.78568846e-12 + art_sys_161: 1.45415902e-12 + art_sys_162: 1.45415902e-12 + art_sys_163: 1.52778250e-12 + art_sys_164: 1.52778250e-12 + art_sys_165: -1.71907383e-26 + art_sys_166: 5.70375712e-27 + art_sys_167: 0.0 + art_sys_168: -7.95889930e-23 + art_sys_169: -2.85735098e-23 + art_sys_170: 8.03724067e-24 + art_sys_171: -1.44700626e-23 + art_sys_172: 4.22047541e-25 + art_sys_173: 3.09974006e-25 + art_sys_174: 2.57581116e-25 + art_sys_175: 5.29604096e-26 + art_sys_176: 3.95320790e-26 + art_sys_177: 1.04144310e-26 + art_sys_178: 1.48123529e-26 + art_sys_179: -3.15106865e-26 + art_sys_180: -3.46069530e-25 + art_sys_181: -1.93842363e-26 + art_sys_182: -5.89538444e-27 + art_sys_183: 6.45245894e-29 + art_sys_184: 3.57105389e-29 + art_sys_185: 5.63991024e-29 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -11588,191 +11588,191 @@ bins: RelativeStatFSR-: -1.67481095e-05 luminosity_uncertainty: 3.79901600e-04 uncorrelated_uncertainty: 1.46116000e-04 -- art_sys_1: 5.65331623e-54 - art_sys_2: 9.41187376e-42 - art_sys_3: 5.39394307e-41 - art_sys_4: 6.90639352e-22 - art_sys_5: 1.35221260e-35 - art_sys_6: -6.40736426e-39 - art_sys_7: 3.66497948e-20 - art_sys_8: 4.74893819e-35 - art_sys_9: -1.57529571e-19 - art_sys_10: 1.71919474e-36 - art_sys_11: -3.50252181e-32 +- art_sys_1: -3.58359480e-52 + art_sys_2: 1.34767787e-40 + art_sys_3: 1.35793516e-40 + art_sys_4: -6.90639352e-22 + art_sys_5: -5.13584596e-36 + art_sys_6: -4.36672625e-39 + art_sys_7: -3.66497948e-20 + art_sys_8: 8.40786723e-35 + art_sys_9: 1.57529571e-19 + art_sys_10: 1.01484257e-37 + art_sys_11: 3.85984971e-33 art_sys_12: 9.41233636e-20 - art_sys_13: 1.40092394e-33 + art_sys_13: 1.75395956e-32 art_sys_14: 5.99799190e-17 - art_sys_15: 3.33302090e-30 - art_sys_16: -2.46695300e-16 - art_sys_17: 2.08435919e-32 - art_sys_18: -5.50407300e-29 + art_sys_15: 6.74137529e-31 + art_sys_16: 2.46695300e-16 + art_sys_17: 1.23333941e-32 + art_sys_18: -4.38050389e-29 art_sys_19: -9.03172557e-16 - art_sys_20: 8.38998343e-31 - art_sys_21: -2.42523605e-28 - art_sys_22: 1.87438485e-15 - art_sys_23: 1.61380712e-30 - art_sys_24: -4.21258535e-27 - art_sys_25: -2.40853095e-15 - art_sys_26: 1.29772867e-14 - art_sys_27: 4.22537720e-15 - art_sys_28: 1.10289971e-13 - art_sys_29: -2.00311214e-14 - art_sys_30: 1.27894697e-15 - art_sys_31: -4.51427139e-17 - art_sys_32: -1.92523699e-16 - art_sys_33: -5.68673479e-17 - art_sys_34: -6.80076142e-21 - art_sys_35: 4.34534993e-24 - art_sys_36: 1.62801370e-18 - art_sys_37: 1.00272964e-12 - art_sys_38: 2.75082110e-17 - art_sys_39: 7.45327143e-23 - art_sys_40: -4.04197935e-18 - art_sys_41: -4.15949771e-12 - art_sys_42: -1.61026863e-11 - art_sys_43: -2.50441813e-17 - art_sys_44: 4.43227282e-16 - art_sys_45: -5.80481515e-16 - art_sys_46: -2.39034953e-20 - art_sys_47: -5.31675415e-19 - art_sys_48: -3.35542379e-11 - art_sys_49: -6.92239782e-14 - art_sys_50: 1.10629760e-14 - art_sys_51: -1.70505429e-14 - art_sys_52: 2.78468349e-16 - art_sys_53: 2.69677658e-15 - art_sys_54: 1.43723345e-15 - art_sys_55: -2.70814421e-16 - art_sys_56: -5.26321202e-16 - art_sys_57: -7.98594592e-20 - art_sys_58: -1.60714709e-16 - art_sys_59: -3.48575343e-17 - art_sys_60: 3.01020753e-10 - art_sys_61: 4.55531407e-18 - art_sys_62: 3.16021267e-17 - art_sys_63: 8.16860781e-16 - art_sys_64: -1.38045104e-10 - art_sys_65: -3.75440706e-17 - art_sys_66: 2.87435453e-17 - art_sys_67: -9.08701921e-19 - art_sys_68: 3.11934201e-16 - art_sys_69: 3.66868536e-15 - art_sys_70: -2.00124990e-09 - art_sys_71: 2.45719562e-14 - art_sys_72: 2.27920255e-17 - art_sys_73: 5.07368392e-15 - art_sys_74: -1.25220147e-14 - art_sys_75: 1.77887603e-14 - art_sys_76: -3.92393421e-18 - art_sys_77: 6.33831685e-14 - art_sys_78: -2.19003279e-13 - art_sys_79: 1.82385846e-16 - art_sys_80: -6.59937383e-12 - art_sys_81: -1.28102274e-15 - art_sys_82: -1.16403506e-15 - art_sys_83: 3.41292834e-12 - art_sys_84: 4.01042453e-16 - art_sys_85: 5.71735459e-16 - art_sys_86: -1.40317105e-11 - art_sys_87: -1.66295275e-12 - art_sys_88: -3.04712054e-12 - art_sys_89: -1.37129299e-13 - art_sys_90: -5.59244416e-08 - art_sys_91: -9.89396715e-11 - art_sys_92: 4.38261827e-07 - art_sys_93: -7.45309799e-14 - art_sys_94: -2.00444538e-08 - art_sys_95: 3.39240911e-10 - art_sys_96: -6.43027020e-13 - art_sys_97: -3.26548180e-09 - art_sys_98: -3.34937280e-06 - art_sys_99: -3.50520599e-14 - art_sys_100: -4.93768242e-11 - art_sys_101: 1.91947527e-06 - art_sys_102: -1.40388189e-05 - art_sys_103: 1.87562474e-10 - art_sys_104: -1.48082225e-12 - art_sys_105: 1.77808720e-05 - art_sys_106: 1.69176282e-09 - art_sys_107: -7.49763553e-13 - art_sys_108: 4.66310649e-14 - art_sys_109: 3.09440846e-13 - art_sys_110: -2.36139896e-09 - art_sys_111: -3.32912005e-05 - art_sys_112: -4.28108480e-10 - art_sys_113: -2.15765180e-15 - art_sys_114: -7.04399699e-05 - art_sys_115: 5.69682716e-11 - art_sys_116: -1.61225206e-09 - art_sys_117: -6.17027124e-06 - art_sys_118: -2.49575031e-10 - art_sys_119: 1.13922121e-05 - art_sys_120: 4.12650834e-09 - art_sys_121: -3.20864795e-11 - art_sys_122: 1.62127883e-05 - art_sys_123: 9.56514666e-06 - art_sys_124: 2.61269037e-11 - art_sys_125: 2.06666555e-09 - art_sys_126: -7.35894755e-11 - art_sys_127: -4.77055805e-06 - art_sys_128: -1.05209124e-10 - art_sys_129: 1.71215356e-06 - art_sys_130: -1.60542590e-10 - art_sys_131: 5.92378181e-10 - art_sys_132: -7.06072706e-07 - art_sys_133: -1.65718480e-09 - art_sys_134: -3.37505289e-12 - art_sys_135: 1.47775236e-07 - art_sys_136: -3.81192042e-10 - art_sys_137: 4.06839778e-14 - art_sys_138: 1.75366869e-11 - art_sys_139: -1.59235599e-08 - art_sys_140: -2.33491119e-09 - art_sys_141: 3.46109074e-10 - art_sys_142: 2.54045782e-11 - art_sys_143: 1.69945488e-14 - art_sys_144: 2.91121678e-14 - art_sys_145: 3.09864830e-15 - art_sys_146: 0.0 - art_sys_147: 8.95659462e-13 - art_sys_148: 5.12517545e-12 - art_sys_149: 5.12517545e-12 - art_sys_150: -1.38373576e-11 - art_sys_151: -1.38373576e-11 - art_sys_152: 8.46996511e-11 - art_sys_153: -3.25906959e-12 - art_sys_154: -4.56076073e-16 - art_sys_155: -2.12514471e-23 - art_sys_156: 1.65003263e-27 - art_sys_157: 1.34794547e-26 - art_sys_158: -0.0 - art_sys_159: 1.92644181e-14 - art_sys_160: -7.73138016e-16 - art_sys_161: 4.08508940e-15 - art_sys_162: -2.02149357e-16 - art_sys_163: 1.75066968e-13 - art_sys_164: 9.58103805e-14 - art_sys_165: -1.35813621e-14 - art_sys_166: 5.23412647e-23 - art_sys_167: 8.37402382e-23 - art_sys_168: 1.72616524e-26 - art_sys_169: 3.77021325e-24 - art_sys_170: 7.09210930e-24 - art_sys_171: -4.48611424e-24 - art_sys_172: -1.50990443e-24 - art_sys_173: 6.96819611e-25 - art_sys_174: 1.67418727e-25 - art_sys_175: 4.62904745e-27 - art_sys_176: 1.31422776e-26 - art_sys_177: -6.95362715e-26 - art_sys_178: 2.31544466e-26 - art_sys_179: -1.36273863e-26 - art_sys_180: -4.85850275e-27 - art_sys_181: 4.91901429e-28 - art_sys_182: 1.33309858e-27 - art_sys_183: -2.06917558e-29 - art_sys_184: 1.09965857e-29 - art_sys_185: 6.68930609e-30 + art_sys_20: 1.41755853e-31 + art_sys_21: -5.50985951e-28 + art_sys_22: 4.38001589e-31 + art_sys_23: 1.87438485e-15 + art_sys_24: 6.14786078e-27 + art_sys_25: -1.10289970e-13 + art_sys_26: -2.00311145e-14 + art_sys_27: -5.74142506e-21 + art_sys_28: -1.09552329e-24 + art_sys_29: 6.61604429e-18 + art_sys_30: -1.00271231e-12 + art_sys_31: 1.94581565e-23 + art_sys_32: -1.60935537e-18 + art_sys_33: -4.15950008e-12 + art_sys_34: -1.61026870e-11 + art_sys_35: 3.06327222e-22 + art_sys_36: 3.10279743e-15 + art_sys_37: -1.20902103e-14 + art_sys_38: 4.02264174e-15 + art_sys_39: -1.42262064e-15 + art_sys_40: -4.27146857e-16 + art_sys_41: 3.86687415e-16 + art_sys_42: 5.01682953e-17 + art_sys_43: 1.33050414e-16 + art_sys_44: 2.46569515e-17 + art_sys_45: 2.72941063e-16 + art_sys_46: 3.82348401e-16 + art_sys_47: 1.86336900e-19 + art_sys_48: 3.35542367e-11 + art_sys_49: -1.27771892e-19 + art_sys_50: 1.80338078e-16 + art_sys_51: -3.21131599e-16 + art_sys_52: 1.00386373e-19 + art_sys_53: 3.01020757e-10 + art_sys_54: -4.28471387e-19 + art_sys_55: -1.38045105e-10 + art_sys_56: -3.39736506e-19 + art_sys_57: -4.84374029e-16 + art_sys_58: 1.87041169e-16 + art_sys_59: 2.00124967e-09 + art_sys_60: -4.68721957e-15 + art_sys_61: -1.50423298e-16 + art_sys_62: -1.03490454e-17 + art_sys_63: -2.58534230e-13 + art_sys_64: -4.37944293e-14 + art_sys_65: 1.05997482e-14 + art_sys_66: 1.31182393e-14 + art_sys_67: 1.83005907e-15 + art_sys_68: -1.01699678e-16 + art_sys_69: -2.07715497e-15 + art_sys_70: -2.68173976e-16 + art_sys_71: -3.25233432e-16 + art_sys_72: 8.79898650e-18 + art_sys_73: -3.21721282e-17 + art_sys_74: -7.71837826e-16 + art_sys_75: -3.68326883e-18 + art_sys_76: 1.81343084e-14 + art_sys_77: -3.60164828e-14 + art_sys_78: -1.90893900e-14 + art_sys_79: -1.00751426e-17 + art_sys_80: -1.49590075e-15 + art_sys_81: 2.35666748e-15 + art_sys_82: -2.81259520e-12 + art_sys_83: -2.40335264e-16 + art_sys_84: -9.87510860e-16 + art_sys_85: 6.46263042e-16 + art_sys_86: -1.11407654e-16 + art_sys_87: -1.43905514e-14 + art_sys_88: -1.51587566e-12 + art_sys_89: 4.41306839e-17 + art_sys_90: 2.84590452e-12 + art_sys_91: 5.59231993e-08 + art_sys_92: 4.43987849e-17 + art_sys_93: 1.01249481e-17 + art_sys_94: -2.65959922e-12 + art_sys_95: 7.23048815e-11 + art_sys_96: -4.38264320e-07 + art_sys_97: 1.92134336e-13 + art_sys_98: 7.16661100e-11 + art_sys_99: -2.00592105e-08 + art_sys_100: 1.22786624e-10 + art_sys_101: -3.34914276e-06 + art_sys_102: -4.09849852e-10 + art_sys_103: -2.21252795e-13 + art_sys_104: -1.91924834e-06 + art_sys_105: -5.36623528e-14 + art_sys_106: 1.40391709e-05 + art_sys_107: -4.76369658e-10 + art_sys_108: -4.09806907e-13 + art_sys_109: 3.30934071e-14 + art_sys_110: -1.19950781e-09 + art_sys_111: 1.77806481e-05 + art_sys_112: 2.92099340e-10 + art_sys_113: 6.27289211e-10 + art_sys_114: 3.23189985e-15 + art_sys_115: -3.32912493e-05 + art_sys_116: 2.55229340e-10 + art_sys_117: 1.28765305e-14 + art_sys_118: -7.04421341e-05 + art_sys_119: 2.28984714e-10 + art_sys_120: -2.26681350e-09 + art_sys_121: -7.42035973e-15 + art_sys_122: -6.16693941e-06 + art_sys_123: -7.35701136e-11 + art_sys_124: 1.13919289e-05 + art_sys_125: -2.06042983e-15 + art_sys_126: -8.34502965e-10 + art_sys_127: 3.96280140e-12 + art_sys_128: -1.62108298e-05 + art_sys_129: 3.26425980e-15 + art_sys_130: -3.78146505e-11 + art_sys_131: -3.96907515e-14 + art_sys_132: -9.55961937e-06 + art_sys_133: 7.27079979e-11 + art_sys_134: -3.16106523e-10 + art_sys_135: 4.77406029e-06 + art_sys_136: 7.49761405e-15 + art_sys_137: -3.04299880e-12 + art_sys_138: 1.71725620e-06 + art_sys_139: 5.91385920e-11 + art_sys_140: -6.60819654e-15 + art_sys_141: 1.27426844e-11 + art_sys_142: 7.01892357e-07 + art_sys_143: 1.50845296e-11 + art_sys_144: -2.07700106e-13 + art_sys_145: 1.46142284e-07 + art_sys_146: -8.81140238e-12 + art_sys_147: 1.01326632e-13 + art_sys_148: 2.54864301e-15 + art_sys_149: -1.64568671e-08 + art_sys_150: 4.72287829e-10 + art_sys_151: 2.55470335e-11 + art_sys_152: -4.37133707e-13 + art_sys_153: 6.36762714e-11 + art_sys_154: -3.49241628e-12 + art_sys_155: -2.24909048e-13 + art_sys_156: 0.0 + art_sys_157: -1.89462886e-10 + art_sys_158: 0.0 + art_sys_159: 2.88534483e-11 + art_sys_160: -3.89742812e-12 + art_sys_161: -3.12055673e-12 + art_sys_162: -3.12055673e-12 + art_sys_163: -3.29743126e-12 + art_sys_164: -3.29743126e-12 + art_sys_165: 3.70734311e-26 + art_sys_166: -1.22990917e-26 + art_sys_167: -0.0 + art_sys_168: 1.60181612e-22 + art_sys_169: 6.20205086e-23 + art_sys_170: -1.46380080e-23 + art_sys_171: 3.14674266e-23 + art_sys_172: -9.13998446e-25 + art_sys_173: -6.79884744e-25 + art_sys_174: -5.59736821e-25 + art_sys_175: -1.15049478e-25 + art_sys_176: -8.59102179e-26 + art_sys_177: -2.32705713e-26 + art_sys_178: -3.18652508e-26 + art_sys_179: 6.69036069e-26 + art_sys_180: 7.48397400e-25 + art_sys_181: 5.37087865e-26 + art_sys_182: 1.28080898e-26 + art_sys_183: -1.40009783e-28 + art_sys_184: -6.90866979e-29 + art_sys_185: -1.16523302e-28 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -11879,191 +11879,191 @@ bins: RelativeStatFSR-: -1.06082556e-05 luminosity_uncertainty: 2.27175780e-04 uncorrelated_uncertainty: 8.73753000e-05 -- art_sys_1: 2.35689284e-55 - art_sys_2: 4.08797678e-43 - art_sys_3: 3.47472153e-42 - art_sys_4: 2.99973924e-23 - art_sys_5: 8.82183525e-37 - art_sys_6: -2.72862236e-40 - art_sys_7: 2.40916530e-21 - art_sys_8: 3.01338800e-36 - art_sys_9: -1.00047901e-20 - art_sys_10: 1.09566019e-37 - art_sys_11: -2.48508165e-33 +- art_sys_1: -1.55726537e-53 + art_sys_2: 5.85353583e-42 + art_sys_3: 7.61403515e-42 + art_sys_4: -2.99973924e-23 + art_sys_5: -3.22912752e-37 + art_sys_6: -1.89361623e-40 + art_sys_7: -2.40916530e-21 + art_sys_8: 6.03587211e-36 + art_sys_9: 1.00047901e-20 + art_sys_10: 3.07348730e-39 + art_sys_11: 2.64162260e-34 art_sys_12: 1.06215860e-20 - art_sys_13: 1.14353567e-34 + art_sys_13: 1.43680728e-33 art_sys_14: 4.91334680e-18 - art_sys_15: -1.77595463e-31 - art_sys_16: -1.95142099e-17 - art_sys_17: 1.69717661e-33 - art_sys_18: -2.81397262e-30 + art_sys_15: -3.60877531e-31 + art_sys_16: 1.95142099e-17 + art_sys_17: 9.79575970e-34 + art_sys_18: -9.02618220e-31 art_sys_19: -7.24015382e-17 - art_sys_20: 6.60018916e-32 - art_sys_21: 5.96799438e-29 - art_sys_22: 1.47361559e-16 - art_sys_23: 1.18771575e-31 - art_sys_24: -3.40648719e-27 - art_sys_25: -4.00286627e-15 - art_sys_26: 3.00431639e-15 - art_sys_27: 1.67813961e-15 - art_sys_28: 8.58978794e-15 - art_sys_29: -5.93186067e-16 - art_sys_30: 2.04383100e-15 - art_sys_31: 1.26488741e-16 - art_sys_32: -6.86074377e-17 - art_sys_33: 6.55968489e-17 - art_sys_34: 5.80489492e-22 - art_sys_35: 3.67690222e-25 - art_sys_36: 7.26946357e-19 - art_sys_37: 8.50212744e-14 - art_sys_38: -6.06930660e-17 - art_sys_39: 3.47476642e-24 - art_sys_40: 8.82415639e-18 - art_sys_41: 8.99646940e-14 - art_sys_42: -3.06991436e-12 - art_sys_43: 6.87941022e-17 - art_sys_44: 1.20750727e-17 - art_sys_45: -1.42917316e-17 - art_sys_46: -4.53605418e-21 - art_sys_47: 1.94092026e-19 - art_sys_48: -5.92425726e-12 - art_sys_49: -3.14947245e-14 - art_sys_50: 3.31402367e-14 - art_sys_51: -1.33736761e-14 - art_sys_52: -5.66630892e-16 - art_sys_53: -1.30002801e-15 - art_sys_54: -7.65450577e-17 - art_sys_55: -7.95524372e-18 - art_sys_56: -4.43570968e-19 - art_sys_57: -3.90951717e-19 - art_sys_58: 3.85836882e-16 - art_sys_59: 1.81972749e-16 - art_sys_60: 8.32957490e-11 - art_sys_61: 1.26033829e-18 - art_sys_62: 4.12701165e-17 - art_sys_63: -3.84861344e-17 - art_sys_64: -1.99506874e-10 - art_sys_65: -4.10802479e-17 - art_sys_66: -2.75142997e-17 - art_sys_67: 1.48975982e-19 - art_sys_68: 1.13117017e-17 - art_sys_69: 2.20225061e-16 - art_sys_70: 3.83677653e-11 - art_sys_71: 2.61453092e-14 - art_sys_72: 3.53450425e-19 - art_sys_73: 1.58914924e-14 - art_sys_74: 2.07582090e-14 - art_sys_75: 1.70922233e-14 - art_sys_76: -9.43719471e-19 - art_sys_77: -6.24782058e-15 - art_sys_78: -2.76044417e-14 - art_sys_79: 3.48892062e-15 - art_sys_80: 1.04658805e-12 - art_sys_81: 1.10971873e-15 - art_sys_82: -5.14483292e-17 - art_sys_83: 1.73090449e-12 - art_sys_84: -6.38065080e-16 - art_sys_85: 9.43144079e-17 - art_sys_86: 1.25980196e-11 - art_sys_87: -1.79870661e-13 - art_sys_88: 3.11478781e-12 - art_sys_89: 1.96908132e-13 - art_sys_90: -4.16525459e-08 - art_sys_91: 1.60137522e-11 - art_sys_92: 2.60891840e-08 - art_sys_93: -3.76632304e-15 - art_sys_94: 3.80474514e-07 - art_sys_95: 2.84836141e-10 - art_sys_96: 8.77577879e-13 - art_sys_97: -5.64407237e-09 - art_sys_98: -1.48159549e-07 - art_sys_99: 2.28417400e-13 - art_sys_100: 2.12586433e-09 - art_sys_101: 2.63217944e-06 - art_sys_102: 1.73118094e-06 - art_sys_103: -2.00841770e-10 - art_sys_104: 6.45190116e-13 - art_sys_105: 1.13198717e-05 - art_sys_106: 3.39668096e-09 - art_sys_107: 1.30741415e-12 - art_sys_108: -8.11425520e-14 - art_sys_109: -5.21527242e-13 - art_sys_110: 2.42935810e-09 - art_sys_111: 1.61185517e-05 - art_sys_112: 7.24848004e-10 - art_sys_113: 3.61319652e-15 - art_sys_114: -2.98453609e-05 - art_sys_115: -6.49362544e-11 - art_sys_116: 4.94155321e-10 - art_sys_117: -5.69164764e-05 - art_sys_118: 3.36641963e-10 - art_sys_119: -4.56213306e-06 - art_sys_120: -5.07190804e-09 - art_sys_121: 5.55617120e-11 - art_sys_122: -8.76165214e-06 - art_sys_123: -1.14218421e-05 - art_sys_124: -4.55821739e-11 - art_sys_125: -2.88707372e-09 - art_sys_126: 1.27762440e-10 - art_sys_127: 6.56661974e-06 - art_sys_128: 1.92997972e-10 - art_sys_129: -2.76452697e-06 - art_sys_130: 2.92529564e-10 - art_sys_131: -1.04228684e-09 - art_sys_132: 1.23159069e-06 - art_sys_133: 2.89297658e-09 - art_sys_134: 5.88648097e-12 - art_sys_135: -2.79570737e-07 - art_sys_136: 7.04918076e-10 - art_sys_137: -7.41112927e-14 - art_sys_138: -5.45495791e-12 - art_sys_139: 3.12716560e-08 - art_sys_140: 4.57766295e-09 - art_sys_141: -6.73531269e-10 - art_sys_142: -4.53305335e-11 - art_sys_143: -3.34947484e-14 - art_sys_144: -5.69604670e-14 - art_sys_145: -8.70879557e-15 - art_sys_146: -0.0 - art_sys_147: -1.84296131e-12 - art_sys_148: -7.30515921e-12 - art_sys_149: -7.30515921e-12 - art_sys_150: 2.88868214e-11 - art_sys_151: 2.88868214e-11 - art_sys_152: -1.35946357e-10 - art_sys_153: 4.41214019e-12 - art_sys_154: 1.69720574e-15 - art_sys_155: 3.25137307e-23 - art_sys_156: -3.10741660e-27 - art_sys_157: -8.26307407e-27 - art_sys_158: 0.0 - art_sys_159: -3.06271863e-14 - art_sys_160: 6.39211667e-16 - art_sys_161: -8.89148542e-15 - art_sys_162: 2.86385554e-16 - art_sys_163: -3.21620123e-13 - art_sys_164: -1.66958256e-13 - art_sys_165: 2.34614489e-14 - art_sys_166: -6.98696575e-23 - art_sys_167: -1.25019508e-22 - art_sys_168: -6.60500253e-24 - art_sys_169: -7.81336245e-24 - art_sys_170: -1.07276976e-23 - art_sys_171: 7.64043655e-24 - art_sys_172: 2.69177094e-24 - art_sys_173: -1.18900352e-24 - art_sys_174: -2.72449249e-25 - art_sys_175: -6.91843944e-27 - art_sys_176: -2.51756277e-26 - art_sys_177: 1.20174128e-25 - art_sys_178: -3.90008033e-26 - art_sys_179: 2.23735597e-26 - art_sys_180: 8.14790283e-27 - art_sys_181: -8.33659345e-28 - art_sys_182: -1.42225177e-27 - art_sys_183: 4.27770837e-29 - art_sys_184: -1.70009584e-29 - art_sys_185: -1.16570143e-29 + art_sys_20: 1.14189455e-32 + art_sys_21: 7.78599563e-30 + art_sys_22: 3.39737546e-32 + art_sys_23: 1.47361559e-16 + art_sys_24: 3.70804028e-27 + art_sys_25: -8.58978793e-15 + art_sys_26: -5.93185876e-16 + art_sys_27: -1.41725754e-22 + art_sys_28: -9.17423924e-26 + art_sys_29: 3.42892124e-19 + art_sys_30: -8.50195578e-14 + art_sys_31: 9.15181109e-25 + art_sys_32: -1.38401715e-17 + art_sys_33: 8.99647851e-14 + art_sys_34: -3.06991527e-12 + art_sys_35: 5.46269778e-23 + art_sys_36: 1.71963283e-14 + art_sys_37: -3.23476036e-15 + art_sys_38: 9.45653097e-16 + art_sys_39: -1.71434200e-15 + art_sys_40: 1.89287649e-16 + art_sys_41: 1.01575533e-16 + art_sys_42: -1.29882343e-17 + art_sys_43: -9.62205726e-18 + art_sys_44: 3.32311010e-17 + art_sys_45: -1.81636592e-16 + art_sys_46: -1.16698406e-16 + art_sys_47: -8.22657827e-19 + art_sys_48: 5.92425715e-12 + art_sys_49: -5.34386280e-19 + art_sys_50: -1.04507514e-16 + art_sys_51: 8.33245709e-17 + art_sys_52: 1.81637119e-20 + art_sys_53: 8.32957553e-11 + art_sys_54: -6.70105249e-19 + art_sys_55: -1.99506879e-10 + art_sys_56: -2.05028807e-20 + art_sys_57: 2.28138948e-16 + art_sys_58: -7.75596048e-17 + art_sys_59: -3.83733442e-11 + art_sys_60: 8.03984420e-15 + art_sys_61: 8.19149780e-17 + art_sys_62: 1.13879450e-18 + art_sys_63: -3.98491257e-16 + art_sys_64: 6.06838794e-14 + art_sys_65: 1.91416726e-14 + art_sys_66: 1.87660936e-15 + art_sys_67: -3.60228921e-15 + art_sys_68: -2.25558121e-16 + art_sys_69: -2.54032388e-16 + art_sys_70: -5.32754773e-16 + art_sys_71: -1.53821363e-16 + art_sys_72: -1.01348180e-17 + art_sys_73: -2.66997532e-17 + art_sys_74: -1.60311520e-16 + art_sys_75: -2.45758197e-18 + art_sys_76: -3.25350061e-14 + art_sys_77: 2.02202869e-14 + art_sys_78: -9.55370580e-15 + art_sys_79: -1.59147953e-17 + art_sys_80: 1.92282350e-15 + art_sys_81: 1.36659535e-16 + art_sys_82: -4.84106746e-13 + art_sys_83: 5.99937919e-18 + art_sys_84: -1.42351942e-15 + art_sys_85: -1.77643556e-16 + art_sys_86: 3.68422659e-17 + art_sys_87: 1.55106051e-15 + art_sys_88: -2.94394630e-13 + art_sys_89: 2.76695526e-17 + art_sys_90: 2.68918307e-11 + art_sys_91: 4.16525361e-08 + art_sys_92: 2.08170234e-17 + art_sys_93: -3.00556859e-17 + art_sys_94: 3.25527290e-12 + art_sys_95: 5.16351763e-11 + art_sys_96: -2.60869592e-08 + art_sys_97: 1.01311798e-14 + art_sys_98: 4.73997912e-11 + art_sys_99: 3.80464076e-07 + art_sys_100: 6.52346484e-11 + art_sys_101: -1.48189911e-07 + art_sys_102: 2.41699028e-10 + art_sys_103: 2.89713479e-13 + art_sys_104: -2.63188042e-06 + art_sys_105: 1.77256861e-13 + art_sys_106: -1.73151343e-06 + art_sys_107: 3.25551212e-10 + art_sys_108: 8.05407918e-13 + art_sys_109: -6.53519493e-14 + art_sys_110: -8.94528659e-10 + art_sys_111: 1.13199366e-05 + art_sys_112: 6.11996536e-11 + art_sys_113: 3.99754249e-10 + art_sys_114: -6.35879387e-15 + art_sys_115: 1.61189308e-05 + art_sys_116: -1.47851077e-10 + art_sys_117: -2.52872731e-14 + art_sys_118: -2.98499159e-05 + art_sys_119: -2.90748116e-10 + art_sys_120: 3.04037781e-09 + art_sys_121: 1.47348621e-14 + art_sys_122: -5.69201050e-05 + art_sys_123: 1.33138066e-10 + art_sys_124: -4.54431010e-06 + art_sys_125: 4.16316236e-15 + art_sys_126: 1.11682110e-09 + art_sys_127: -7.82127221e-12 + art_sys_128: 8.76263196e-06 + art_sys_129: -6.50738715e-15 + art_sys_130: 7.39582839e-11 + art_sys_131: 7.81521284e-14 + art_sys_132: 1.14208475e-05 + art_sys_133: -1.42133211e-10 + art_sys_134: 6.16141222e-10 + art_sys_135: -6.57159037e-06 + art_sys_136: -1.44570178e-14 + art_sys_137: 5.91677091e-12 + art_sys_138: -2.77367090e-06 + art_sys_139: -1.14433425e-10 + art_sys_140: 1.31165254e-14 + art_sys_141: -2.12766173e-11 + art_sys_142: -1.22516131e-06 + art_sys_143: -2.80356319e-11 + art_sys_144: 3.49526516e-13 + art_sys_145: -2.77213608e-07 + art_sys_146: 1.66030580e-11 + art_sys_147: -1.92282553e-13 + art_sys_148: -9.19218314e-15 + art_sys_149: 3.24116170e-08 + art_sys_150: -9.28991951e-10 + art_sys_151: -5.09273722e-11 + art_sys_152: 8.53486960e-13 + art_sys_153: -1.24765914e-10 + art_sys_154: -1.68014977e-11 + art_sys_155: 4.29244906e-13 + art_sys_156: -0.0 + art_sys_157: 3.86012858e-10 + art_sys_158: -0.0 + art_sys_159: -5.73437429e-11 + art_sys_160: 7.90315454e-12 + art_sys_161: 6.05466103e-12 + art_sys_162: 6.05466103e-12 + art_sys_163: 6.50214455e-12 + art_sys_164: 6.50214455e-12 + art_sys_165: -7.29425494e-26 + art_sys_166: 2.41896888e-26 + art_sys_167: 0.0 + art_sys_168: -3.08349467e-22 + art_sys_169: -1.23040355e-22 + art_sys_170: 3.51542533e-23 + art_sys_171: -6.18554877e-23 + art_sys_172: 1.79233176e-24 + art_sys_173: 1.33113170e-24 + art_sys_174: 1.11041075e-24 + art_sys_175: 2.28073573e-25 + art_sys_176: 1.70372611e-25 + art_sys_177: 4.56130222e-26 + art_sys_178: 6.28067879e-26 + art_sys_179: -1.25423490e-25 + art_sys_180: -1.48442060e-24 + art_sys_181: -1.13007177e-25 + art_sys_182: -2.54081844e-26 + art_sys_183: 2.78738669e-28 + art_sys_184: 1.15525291e-28 + art_sys_185: 2.15787487e-28 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -12170,191 +12170,191 @@ bins: RelativeStatFSR-: -6.57304439e-06 luminosity_uncertainty: 1.32941640e-04 uncorrelated_uncertainty: 5.11314000e-05 -- art_sys_1: 2.13972264e-57 - art_sys_2: 5.30493130e-45 - art_sys_3: 1.58224338e-43 - art_sys_4: 3.89272708e-25 - art_sys_5: 3.31307589e-38 - art_sys_6: -3.09351078e-42 - art_sys_7: 9.78770047e-23 - art_sys_8: 1.04505891e-37 - art_sys_9: -3.35433203e-22 - art_sys_10: 3.73694635e-39 - art_sys_11: -1.34040818e-34 +- art_sys_1: -2.02778311e-55 + art_sys_2: 7.59606597e-44 + art_sys_3: 2.56917810e-43 + art_sys_4: -3.89272708e-25 + art_sys_5: -1.21659319e-38 + art_sys_6: -2.41961807e-42 + art_sys_7: -9.78770047e-23 + art_sys_8: 1.99427724e-37 + art_sys_9: 3.35433203e-22 + art_sys_10: 5.02165989e-40 + art_sys_11: 1.96068559e-35 art_sys_12: 1.41766220e-21 - art_sys_13: 7.86850779e-36 + art_sys_13: 9.83912508e-35 art_sys_14: 3.36523380e-19 - art_sys_15: -9.05790198e-32 - art_sys_16: -1.44616198e-18 - art_sys_17: 1.14357555e-34 - art_sys_18: -8.15903140e-31 + art_sys_15: -6.96161472e-32 + art_sys_16: 1.44616198e-18 + art_sys_17: 7.03914838e-35 + art_sys_18: 3.87433185e-31 art_sys_19: -5.16005187e-18 - art_sys_20: 4.73633792e-33 - art_sys_21: 4.02274374e-30 - art_sys_22: 1.05828150e-17 - art_sys_23: 8.20964341e-33 - art_sys_24: -4.34908942e-28 - art_sys_25: -2.01280310e-15 - art_sys_26: 4.08292921e-15 - art_sys_27: 3.65387464e-16 - art_sys_28: 6.04304873e-16 - art_sys_29: -6.27652824e-16 - art_sys_30: -2.20721788e-16 - art_sys_31: -6.86898814e-17 - art_sys_32: 2.25186306e-17 - art_sys_33: -1.14462500e-16 - art_sys_34: 2.78505194e-24 - art_sys_35: 4.86769624e-26 - art_sys_36: 1.09509119e-20 - art_sys_37: 1.13987823e-14 - art_sys_38: -8.23780162e-17 - art_sys_39: 3.50993914e-25 - art_sys_40: 1.61380242e-18 - art_sys_41: 3.95119773e-14 - art_sys_42: -6.34141921e-13 - art_sys_43: 4.19548879e-20 - art_sys_44: -2.72111212e-16 - art_sys_45: 3.77625594e-16 - art_sys_46: -9.51087706e-22 - art_sys_47: 9.99748657e-19 - art_sys_48: -2.15581857e-12 - art_sys_49: 2.56220246e-14 - art_sys_50: -1.11626777e-14 - art_sys_51: -7.83328806e-15 - art_sys_52: 3.05995227e-15 - art_sys_53: 5.41760236e-16 - art_sys_54: 3.73280178e-16 - art_sys_55: 2.18618595e-16 - art_sys_56: 2.78471332e-16 - art_sys_57: -1.08132890e-19 - art_sys_58: 1.29079729e-16 - art_sys_59: 9.50670700e-17 - art_sys_60: 8.06837437e-12 - art_sys_61: 1.18777318e-19 - art_sys_62: 1.26741921e-17 - art_sys_63: -4.41703360e-16 - art_sys_64: -6.21976030e-11 - art_sys_65: -5.75236086e-17 - art_sys_66: -1.86613086e-17 - art_sys_67: 3.37540460e-20 - art_sys_68: -1.60344275e-16 - art_sys_69: -3.37512887e-16 - art_sys_70: 1.20509671e-10 - art_sys_71: 1.66667207e-15 - art_sys_72: 1.93902497e-19 - art_sys_73: 2.34222066e-14 - art_sys_74: 2.23196766e-14 - art_sys_75: 5.40499141e-15 - art_sys_76: 1.48069000e-17 - art_sys_77: -5.20670440e-15 - art_sys_78: 1.71280919e-14 - art_sys_79: -8.29677248e-15 - art_sys_80: 9.49347958e-13 - art_sys_81: -3.39567763e-16 - art_sys_82: 1.41114607e-16 - art_sys_83: -4.11515914e-13 - art_sys_84: 3.01259177e-16 - art_sys_85: -4.62663077e-16 - art_sys_86: -7.28314946e-12 - art_sys_87: 8.87464683e-14 - art_sys_88: -2.18860191e-12 - art_sys_89: -2.76947407e-13 - art_sys_90: -1.52067959e-09 - art_sys_91: 1.08939409e-11 - art_sys_92: -2.60064654e-08 - art_sys_93: 4.54273897e-15 - art_sys_94: 4.82910922e-08 - art_sys_95: -3.59362575e-11 - art_sys_96: -1.22885944e-12 - art_sys_97: 7.00539622e-10 - art_sys_98: 2.90470479e-07 - art_sys_99: 3.03414142e-14 - art_sys_100: 6.26458144e-10 - art_sys_101: 9.36921498e-08 - art_sys_102: 1.96256446e-06 - art_sys_103: 1.58719289e-10 - art_sys_104: 1.98337545e-13 - art_sys_105: -1.35166579e-06 - art_sys_106: 6.05017058e-10 - art_sys_107: -2.36704464e-12 - art_sys_108: 1.47719014e-13 - art_sys_109: 1.03082173e-12 - art_sys_110: -3.12160359e-09 - art_sys_111: 8.60633129e-06 - art_sys_112: -1.45185522e-09 - art_sys_113: -7.14114375e-15 - art_sys_114: 1.07806977e-05 - art_sys_115: 5.44011847e-11 - art_sys_116: -2.27538838e-10 - art_sys_117: -2.33795228e-05 - art_sys_118: -4.58357807e-10 - art_sys_119: -4.23813218e-05 - art_sys_120: 4.47154149e-09 - art_sys_121: -9.95384137e-11 - art_sys_122: 5.92111440e-06 - art_sys_123: 7.85409122e-06 - art_sys_124: 8.24602169e-11 - art_sys_125: 4.03451328e-09 - art_sys_126: -2.30588492e-10 - art_sys_127: -8.99119603e-06 - art_sys_128: -3.63082073e-10 - art_sys_129: 4.36606231e-06 - art_sys_130: -5.61164437e-10 - art_sys_131: 1.90693219e-09 - art_sys_132: -2.20955946e-06 - art_sys_133: -5.19033864e-09 - art_sys_134: -1.05600690e-11 - art_sys_135: 5.62182286e-07 - art_sys_136: -1.37197060e-09 - art_sys_137: 1.41498333e-13 - art_sys_138: -2.82437636e-12 - art_sys_139: -6.66688338e-08 - art_sys_140: -9.74340290e-09 - art_sys_141: 1.41824635e-09 - art_sys_142: 9.21082342e-11 - art_sys_143: 7.15919337e-14 - art_sys_144: 1.20659539e-13 - art_sys_145: 1.98592288e-14 - art_sys_146: 0.0 - art_sys_147: 3.50513597e-12 - art_sys_148: 1.72659322e-11 - art_sys_149: 1.72659322e-11 - art_sys_150: -6.58304007e-11 - art_sys_151: -6.58304007e-11 - art_sys_152: 2.08208185e-10 - art_sys_153: -3.77092710e-12 - art_sys_154: -5.36544575e-15 - art_sys_155: -4.50995674e-23 - art_sys_156: 6.08694862e-27 - art_sys_157: -2.08737293e-26 + art_sys_20: 7.97947912e-34 + art_sys_21: -5.23394499e-30 + art_sys_22: 2.56359424e-33 + art_sys_23: 1.05828150e-17 + art_sys_24: 8.98800775e-28 + art_sys_25: -6.04304873e-16 + art_sys_26: -6.27652825e-16 + art_sys_27: 1.15709346e-24 + art_sys_28: -1.20057721e-26 + art_sys_29: -8.48208821e-21 + art_sys_30: -1.13988025e-14 + art_sys_31: 9.82276685e-26 + art_sys_32: 2.67316825e-18 + art_sys_33: 3.95226164e-14 + art_sys_34: -6.34139803e-13 + art_sys_35: 1.58423684e-23 + art_sys_36: -1.87566913e-15 + art_sys_37: 3.16998802e-16 + art_sys_38: 4.69649665e-16 + art_sys_39: 1.40428079e-16 + art_sys_40: 2.17564722e-16 + art_sys_41: -1.43198831e-16 + art_sys_42: -3.20051618e-17 + art_sys_43: 6.46034856e-17 + art_sys_44: -3.15243014e-17 + art_sys_45: 8.62746055e-17 + art_sys_46: 3.50019488e-17 + art_sys_47: 4.63913372e-20 + art_sys_48: 2.15581881e-12 + art_sys_49: 1.01247336e-19 + art_sys_50: 3.44053148e-17 + art_sys_51: -8.54283896e-17 + art_sys_52: 6.68105181e-21 + art_sys_53: 8.06837590e-12 + art_sys_54: -3.37256414e-19 + art_sys_55: -6.21976048e-11 + art_sys_56: -7.64545691e-21 + art_sys_57: -4.63144956e-17 + art_sys_58: 7.70683007e-18 + art_sys_59: -1.20510383e-10 + art_sys_60: 1.38627246e-15 + art_sys_61: 8.27805176e-18 + art_sys_62: 1.35661740e-19 + art_sys_63: 1.89594391e-14 + art_sys_64: -2.02147528e-14 + art_sys_65: 6.71594674e-15 + art_sys_66: -1.02719064e-14 + art_sys_67: -2.33169222e-15 + art_sys_68: -1.66844607e-16 + art_sys_69: 6.40317342e-16 + art_sys_70: -6.53664411e-16 + art_sys_71: 1.15269909e-16 + art_sys_72: 1.60820819e-17 + art_sys_73: 6.42907300e-17 + art_sys_74: 3.16139605e-17 + art_sys_75: 1.97102034e-18 + art_sys_76: -2.91955459e-15 + art_sys_77: -6.71890417e-15 + art_sys_78: 3.39536395e-14 + art_sys_79: 4.52947105e-18 + art_sys_80: -4.29684769e-15 + art_sys_81: -1.42285147e-16 + art_sys_82: 1.18367126e-13 + art_sys_83: -1.10067187e-15 + art_sys_84: 1.96004532e-16 + art_sys_85: -1.06110932e-16 + art_sys_86: 1.34715787e-16 + art_sys_87: 2.06184267e-15 + art_sys_88: 2.97184927e-13 + art_sys_89: -3.33198937e-17 + art_sys_90: 1.06806914e-11 + art_sys_91: 1.52076902e-09 + art_sys_92: 9.71099462e-17 + art_sys_93: 1.16879387e-17 + art_sys_94: -2.37368305e-12 + art_sys_95: -4.13671755e-12 + art_sys_96: 2.60068945e-08 + art_sys_97: -1.15922626e-14 + art_sys_98: -5.35434150e-12 + art_sys_99: 4.82930700e-08 + art_sys_100: -3.27171347e-11 + art_sys_101: 2.90430772e-07 + art_sys_102: 1.32854847e-09 + art_sys_103: 4.89496247e-14 + art_sys_104: -9.36976017e-08 + art_sys_105: -5.31687458e-13 + art_sys_106: -1.96266917e-06 + art_sys_107: -3.10848880e-10 + art_sys_108: -1.70283373e-12 + art_sys_109: 1.37874063e-13 + art_sys_110: -1.72358918e-09 + art_sys_111: -1.35163004e-06 + art_sys_112: 2.34405979e-10 + art_sys_113: -4.76433739e-11 + art_sys_114: 1.34350477e-14 + art_sys_115: 8.60623054e-06 + art_sys_116: 1.14279534e-10 + art_sys_117: 5.35216994e-14 + art_sys_118: 1.07830507e-05 + art_sys_119: 2.85410582e-10 + art_sys_120: -2.05601721e-09 + art_sys_121: -3.11179591e-14 + art_sys_122: -2.33932254e-05 + art_sys_123: -2.57932073e-10 + art_sys_124: -4.23669434e-05 + art_sys_125: -8.73668049e-15 + art_sys_126: -1.58474085e-09 + art_sys_127: 1.65246079e-11 + art_sys_128: -5.92452674e-06 + art_sys_129: 1.38361893e-14 + art_sys_130: -1.55256137e-10 + art_sys_131: -1.64609151e-13 + art_sys_132: -7.85836606e-06 + art_sys_133: 2.98631173e-10 + art_sys_134: -1.28486725e-09 + art_sys_135: 8.99651278e-06 + art_sys_136: 3.03556385e-14 + art_sys_137: -1.26213482e-11 + art_sys_138: 4.38431738e-06 + art_sys_139: 2.37734088e-10 + art_sys_140: -2.79879896e-14 + art_sys_141: 3.53959600e-11 + art_sys_142: 2.20012835e-06 + art_sys_143: 5.51928083e-11 + art_sys_144: -5.97082448e-13 + art_sys_145: 5.59118685e-07 + art_sys_146: -3.33188655e-11 + art_sys_147: 3.88755851e-13 + art_sys_148: 3.30492707e-14 + art_sys_149: -6.92788915e-08 + art_sys_150: 1.98322161e-09 + art_sys_151: 1.07544471e-10 + art_sys_152: -1.80358507e-12 + art_sys_153: 2.62392828e-10 + art_sys_154: -5.79803153e-12 + art_sys_155: -8.95566388e-13 + art_sys_156: 0.0 + art_sys_157: -8.23571454e-10 art_sys_158: 0.0 - art_sys_159: 5.72373787e-14 - art_sys_160: -6.66663255e-16 - art_sys_161: 2.07753572e-14 - art_sys_162: -4.60133482e-16 - art_sys_163: 6.14558082e-13 - art_sys_164: 3.14573457e-13 - art_sys_165: -4.16486325e-14 - art_sys_166: 1.20790241e-22 - art_sys_167: 2.30031579e-22 - art_sys_168: 1.94442731e-23 - art_sys_169: 1.34663434e-23 - art_sys_170: 2.50888560e-23 - art_sys_171: -1.52139432e-23 - art_sys_172: -5.47806124e-24 - art_sys_173: 2.36873209e-24 - art_sys_174: 5.30195975e-25 - art_sys_175: 1.31768128e-26 - art_sys_176: 5.28304552e-26 - art_sys_177: -2.41219567e-25 - art_sys_178: 7.73810518e-26 - art_sys_179: -4.48686277e-26 - art_sys_180: -1.57420116e-26 - art_sys_181: 1.65808603e-27 - art_sys_182: 2.02729445e-27 - art_sys_183: -1.00271796e-28 - art_sys_184: 2.50358310e-29 - art_sys_185: 2.10213874e-29 + art_sys_159: 1.21034006e-10 + art_sys_160: -1.68485116e-11 + art_sys_161: -1.26773763e-11 + art_sys_162: -1.26773763e-11 + art_sys_163: -1.36931139e-11 + art_sys_164: -1.36931139e-11 + art_sys_165: 1.53491438e-25 + art_sys_166: -5.08955512e-26 + art_sys_167: -0.0 + art_sys_168: 5.94922837e-22 + art_sys_169: 2.59013417e-22 + art_sys_170: -6.65595926e-23 + art_sys_171: 1.30677460e-22 + art_sys_172: -3.78596359e-24 + art_sys_173: -2.82385321e-24 + art_sys_174: -2.34322492e-24 + art_sys_175: -4.81218340e-25 + art_sys_176: -3.59590043e-25 + art_sys_177: -9.62370567e-26 + art_sys_178: -1.33887257e-25 + art_sys_179: 2.59957828e-25 + art_sys_180: 3.13144379e-24 + art_sys_181: 2.35322314e-25 + art_sys_182: 5.36122226e-26 + art_sys_183: -5.88510504e-28 + art_sys_184: -1.98072572e-28 + art_sys_185: -4.23825696e-28 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -12461,191 +12461,191 @@ bins: RelativeStatFSR-: -4.07512454e-06 luminosity_uncertainty: 7.79201800e-05 uncorrelated_uncertainty: 2.99693000e-05 -- art_sys_1: -3.16601782e-58 - art_sys_2: -4.43992236e-46 - art_sys_3: 4.69283899e-45 - art_sys_4: -3.25799893e-26 - art_sys_5: -4.63431652e-40 - art_sys_6: 3.16486214e-43 - art_sys_7: 3.90328855e-25 - art_sys_8: -4.39792768e-39 - art_sys_9: 1.34819129e-23 - art_sys_10: -1.33424222e-40 - art_sys_11: -6.46324558e-36 +- art_sys_1: 1.68665635e-56 + art_sys_2: -6.35749044e-45 + art_sys_3: 2.63923043e-45 + art_sys_4: 3.25799893e-26 + art_sys_5: 4.17628714e-41 + art_sys_6: 2.07026289e-43 + art_sys_7: -3.90328855e-25 + art_sys_8: -1.04123750e-38 + art_sys_9: -1.34819129e-23 + art_sys_10: 3.49683820e-41 + art_sys_11: 6.41570376e-37 art_sys_12: 1.89777820e-22 - art_sys_13: 6.34883045e-37 + art_sys_13: 8.03207815e-36 art_sys_14: 2.74707867e-20 - art_sys_15: -1.45593529e-32 - art_sys_16: -1.05843179e-19 - art_sys_17: 1.01703222e-35 - art_sys_18: -3.85120199e-31 + art_sys_15: -8.87206073e-33 + art_sys_16: 1.05843179e-19 + art_sys_17: 5.40114671e-36 + art_sys_18: 2.76584497e-31 art_sys_19: -4.09513788e-19 - art_sys_20: 4.11169801e-34 - art_sys_21: -2.90039691e-30 - art_sys_22: 9.18080203e-19 - art_sys_23: 7.73911747e-34 - art_sys_24: 7.26248020e-29 - art_sys_25: 2.68538314e-15 - art_sys_26: 7.14556879e-15 - art_sys_27: 9.21937829e-16 - art_sys_28: 7.73775006e-17 - art_sys_29: -6.85140234e-17 - art_sys_30: 7.90798122e-16 - art_sys_31: -1.76024501e-16 - art_sys_32: -1.27559652e-16 - art_sys_33: -2.04078209e-17 - art_sys_34: 6.88452863e-26 - art_sys_35: 6.84079207e-27 - art_sys_36: 3.67015620e-22 - art_sys_37: 1.63216975e-15 - art_sys_38: -7.35813278e-17 - art_sys_39: 9.44511434e-26 - art_sys_40: 1.19862479e-19 - art_sys_41: 1.23569485e-16 - art_sys_42: -8.28609631e-14 - art_sys_43: 3.41901926e-18 - art_sys_44: -3.19014306e-16 - art_sys_45: 2.72615638e-16 - art_sys_46: -1.25770869e-22 - art_sys_47: -7.38860384e-19 - art_sys_48: -3.77536464e-13 - art_sys_49: 1.25586634e-14 - art_sys_50: 2.04454444e-14 - art_sys_51: 3.12746534e-14 - art_sys_52: -3.78895589e-15 - art_sys_53: -3.70616181e-16 - art_sys_54: 5.95475993e-17 - art_sys_55: 1.12260123e-16 - art_sys_56: 2.79449032e-16 - art_sys_57: -1.76573526e-20 - art_sys_58: 5.02584580e-16 - art_sys_59: 1.60646905e-16 - art_sys_60: -9.00440435e-13 - art_sys_61: -1.45102492e-20 - art_sys_62: 1.26043929e-18 - art_sys_63: -5.02264361e-16 - art_sys_64: -6.09620576e-12 - art_sys_65: 1.28402421e-17 - art_sys_66: 2.52974319e-17 - art_sys_67: 2.71172552e-21 - art_sys_68: -1.81501903e-16 - art_sys_69: -1.98067945e-16 - art_sys_70: 1.88648589e-11 - art_sys_71: -1.13988873e-15 - art_sys_72: 3.37991891e-20 - art_sys_73: -5.97018509e-14 - art_sys_74: -5.17051107e-14 - art_sys_75: -1.56701721e-14 - art_sys_76: 1.22219477e-18 - art_sys_77: -1.90958173e-16 - art_sys_78: 3.95579617e-15 - art_sys_79: 4.13921471e-15 - art_sys_80: 6.55258526e-15 - art_sys_81: 5.55984129e-16 - art_sys_82: -1.68090161e-15 - art_sys_83: -3.84260098e-13 - art_sys_84: 3.39287475e-16 - art_sys_85: 4.68194737e-17 - art_sys_86: -1.21648219e-11 - art_sys_87: 2.26627875e-14 - art_sys_88: -1.73798928e-12 - art_sys_89: 2.17143709e-13 - art_sys_90: 1.94455201e-09 - art_sys_91: -1.04476757e-12 - art_sys_92: -4.48066380e-09 - art_sys_93: 7.58312471e-16 - art_sys_94: -1.73847075e-08 - art_sys_95: -6.46418023e-11 - art_sys_96: 1.30964252e-12 - art_sys_97: 1.57509948e-09 - art_sys_98: 4.59626402e-08 - art_sys_99: -1.01762948e-14 - art_sys_100: -4.10278791e-10 - art_sys_101: -2.08146574e-07 - art_sys_102: 5.25724090e-08 - art_sys_103: 4.67951957e-10 - art_sys_104: -7.46541903e-15 - art_sys_105: -1.45038437e-06 - art_sys_106: -5.88205144e-10 - art_sys_107: 3.94473303e-12 - art_sys_108: -2.45004374e-13 - art_sys_109: -1.59384923e-12 - art_sys_110: 1.32701337e-09 - art_sys_111: -1.22894600e-06 - art_sys_112: 1.40977723e-09 - art_sys_113: 1.08347096e-14 - art_sys_114: 6.63296887e-06 - art_sys_115: 6.84138146e-11 - art_sys_116: -4.92980152e-09 - art_sys_117: 7.57947333e-06 - art_sys_118: 4.43858909e-10 - art_sys_119: -1.62648728e-05 - art_sys_120: -5.24802383e-09 - art_sys_121: 1.65041801e-10 - art_sys_122: 3.14478175e-05 - art_sys_123: -6.45799560e-06 - art_sys_124: -1.37456472e-10 - art_sys_125: -2.72425524e-09 - art_sys_126: 3.80404759e-10 - art_sys_127: 6.63893629e-06 - art_sys_128: 6.45328831e-10 - art_sys_129: -6.41972768e-06 - art_sys_130: 9.56690061e-10 - art_sys_131: -3.02135092e-09 - art_sys_132: 3.57024318e-06 - art_sys_133: 8.38274031e-09 - art_sys_134: 1.70553250e-11 - art_sys_135: -1.08359874e-06 - art_sys_136: 2.52418662e-09 - art_sys_137: -2.52096655e-13 - art_sys_138: 1.91933327e-13 - art_sys_139: 1.39897930e-07 - art_sys_140: 2.04134727e-08 - art_sys_141: -2.95499654e-09 - art_sys_142: -1.64460313e-10 - art_sys_143: -1.49803171e-13 - art_sys_144: -2.52809093e-13 - art_sys_145: -6.03167406e-14 - art_sys_146: -0.0 - art_sys_147: -8.91371874e-12 - art_sys_148: -9.51841628e-12 - art_sys_149: -9.51841628e-12 - art_sys_150: 1.41528954e-10 - art_sys_151: 1.41528954e-10 - art_sys_152: -3.63381746e-10 - art_sys_153: 3.94867714e-12 - art_sys_154: 1.38745056e-14 - art_sys_155: 7.38489064e-23 - art_sys_156: -1.20612567e-26 - art_sys_157: 5.40006858e-26 - art_sys_158: 0.0 - art_sys_159: -7.01956128e-14 - art_sys_160: -4.47332194e-15 - art_sys_161: -4.90446786e-14 - art_sys_162: 2.63782449e-16 - art_sys_163: -1.15669104e-12 - art_sys_164: -5.27287294e-13 - art_sys_165: 6.75793436e-14 - art_sys_166: -3.40074738e-23 - art_sys_167: -2.04733924e-22 - art_sys_168: -8.46874613e-23 - art_sys_169: -2.48096447e-23 - art_sys_170: -3.58309252e-23 - art_sys_171: 2.42031360e-23 - art_sys_172: 9.66784285e-24 - art_sys_173: -3.78741921e-24 - art_sys_174: -7.40569263e-25 - art_sys_175: -1.29728784e-26 - art_sys_176: -1.06879788e-25 - art_sys_177: 3.97975912e-25 - art_sys_178: -1.19343065e-25 - art_sys_179: 6.98154845e-26 - art_sys_180: 2.47462102e-26 - art_sys_181: -2.60298147e-27 - art_sys_182: 3.69992814e-27 - art_sys_183: 2.22842063e-28 - art_sys_184: -3.39432564e-29 - art_sys_185: -3.38534026e-29 + art_sys_20: 6.87118110e-35 + art_sys_21: -3.90358456e-30 + art_sys_22: 2.41199333e-34 + art_sys_23: 9.18080202e-19 + art_sys_24: 1.13142624e-28 + art_sys_25: -7.73775006e-17 + art_sys_26: -6.85140235e-17 + art_sys_27: -2.70339781e-26 + art_sys_28: -1.68363487e-27 + art_sys_29: -4.43911619e-23 + art_sys_30: -1.63216931e-15 + art_sys_31: 2.63038486e-26 + art_sys_32: -1.80353468e-20 + art_sys_33: 1.21755434e-16 + art_sys_34: -8.28481677e-14 + art_sys_35: 2.45381581e-24 + art_sys_36: 4.49510318e-15 + art_sys_37: 3.57583491e-15 + art_sys_38: -3.68512224e-16 + art_sys_39: 6.91581766e-16 + art_sys_40: 1.28073501e-16 + art_sys_41: -2.38603050e-17 + art_sys_42: 1.70043824e-16 + art_sys_43: -3.78290875e-17 + art_sys_44: 1.51012280e-17 + art_sys_45: 1.17309079e-16 + art_sys_46: 2.26481548e-16 + art_sys_47: 1.90463226e-19 + art_sys_48: 3.77535906e-13 + art_sys_49: -1.02394127e-19 + art_sys_50: 9.80015713e-17 + art_sys_51: -1.84818540e-16 + art_sys_52: 1.21086051e-21 + art_sys_53: -9.00441273e-13 + art_sys_54: -8.73215315e-19 + art_sys_55: -6.09620567e-12 + art_sys_56: 2.51433553e-22 + art_sys_57: -2.26755989e-16 + art_sys_58: 8.16634990e-17 + art_sys_59: -1.88646565e-11 + art_sys_60: -2.50384351e-16 + art_sys_61: -6.10646287e-17 + art_sys_62: -3.19473037e-20 + art_sys_63: 2.02703839e-15 + art_sys_64: 1.90370556e-14 + art_sys_65: 2.27980475e-15 + art_sys_66: 2.66763792e-15 + art_sys_67: -2.33338816e-15 + art_sys_68: 8.49919599e-17 + art_sys_69: 3.00858794e-16 + art_sys_70: 8.43425313e-16 + art_sys_71: 1.76413960e-16 + art_sys_72: -3.86079454e-17 + art_sys_73: 5.11205996e-18 + art_sys_74: 6.02017603e-17 + art_sys_75: 7.70892907e-18 + art_sys_76: 2.98370993e-14 + art_sys_77: 4.26543944e-14 + art_sys_78: 5.31710497e-15 + art_sys_79: 1.74616821e-18 + art_sys_80: -1.84204565e-15 + art_sys_81: -3.20348944e-17 + art_sys_82: 4.77974991e-14 + art_sys_83: 7.02511448e-16 + art_sys_84: 6.18918653e-16 + art_sys_85: 9.10262126e-17 + art_sys_86: 2.39139887e-16 + art_sys_87: 7.17586011e-17 + art_sys_88: 8.86594050e-14 + art_sys_89: 1.19302430e-16 + art_sys_90: -3.75731246e-12 + art_sys_91: -1.94454117e-09 + art_sys_92: 1.03383025e-17 + art_sys_93: 3.73455718e-17 + art_sys_94: 2.08810246e-12 + art_sys_95: -6.33577000e-12 + art_sys_96: 4.48055595e-09 + art_sys_97: -1.91386981e-15 + art_sys_98: -6.04370697e-12 + art_sys_99: -1.73835603e-08 + art_sys_100: -1.30156571e-11 + art_sys_101: 4.59617862e-08 + art_sys_102: 3.85280791e-10 + art_sys_103: -1.92952830e-14 + art_sys_104: 2.08129979e-07 + art_sys_105: 1.43562496e-12 + art_sys_106: -5.25132575e-08 + art_sys_107: -7.10208684e-10 + art_sys_108: 3.49648453e-12 + art_sys_109: -2.88862132e-13 + art_sys_110: 1.39541752e-09 + art_sys_111: -1.45028760e-06 + art_sys_112: 4.60135432e-10 + art_sys_113: -5.12057685e-11 + art_sys_114: -2.77556398e-14 + art_sys_115: -1.22908755e-06 + art_sys_116: 4.38371127e-10 + art_sys_117: -1.13514619e-13 + art_sys_118: 6.63483988e-06 + art_sys_119: -1.85100099e-10 + art_sys_120: 2.79234775e-09 + art_sys_121: 6.59788579e-14 + art_sys_122: 7.57633746e-06 + art_sys_123: 4.36236360e-10 + art_sys_124: -1.62625627e-05 + art_sys_125: 1.84847954e-14 + art_sys_126: 8.31193673e-10 + art_sys_127: -3.43543444e-11 + art_sys_128: -3.14320923e-05 + art_sys_129: -2.91633416e-14 + art_sys_130: 3.17744244e-10 + art_sys_131: 3.47386060e-13 + art_sys_132: 6.48414669e-06 + art_sys_133: -6.10117638e-10 + art_sys_134: 2.52764772e-09 + art_sys_135: -6.64484647e-06 + art_sys_136: -6.02369201e-14 + art_sys_137: 2.47373637e-11 + art_sys_138: -6.44857919e-06 + art_sys_139: -4.83448015e-10 + art_sys_140: 5.84471514e-14 + art_sys_141: -5.14165200e-11 + art_sys_142: -3.55676051e-06 + art_sys_143: -1.03435675e-10 + art_sys_144: 8.46095194e-13 + art_sys_145: -1.08023294e-06 + art_sys_146: 6.35147320e-11 + art_sys_147: -7.53711732e-13 + art_sys_148: -1.07729804e-13 + art_sys_149: 1.45519146e-07 + art_sys_150: -4.15571509e-09 + art_sys_151: -2.29338454e-10 + art_sys_152: 3.72123638e-12 + art_sys_153: -5.43621476e-10 + art_sys_154: 2.52503730e-12 + art_sys_155: 1.76892986e-12 + art_sys_156: -0.0 + art_sys_157: 1.81044241e-09 + art_sys_158: -0.0 + art_sys_159: -2.56847090e-10 + art_sys_160: 3.67224370e-11 + art_sys_161: 2.57674238e-11 + art_sys_162: 2.57674238e-11 + art_sys_163: 2.86527665e-11 + art_sys_164: 2.86527665e-11 + art_sys_165: -3.19935361e-25 + art_sys_166: 1.06016046e-25 + art_sys_167: 0.0 + art_sys_168: -1.38910425e-21 + art_sys_169: -5.48683882e-22 + art_sys_170: 1.46589626e-22 + art_sys_171: -2.74037119e-22 + art_sys_172: 8.02097383e-24 + art_sys_173: 6.00965066e-24 + art_sys_174: 4.96869482e-24 + art_sys_175: 1.01973015e-24 + art_sys_176: 7.63704862e-25 + art_sys_177: 2.04010517e-25 + art_sys_178: 2.82039542e-25 + art_sys_179: -4.95746624e-25 + art_sys_180: -6.62154017e-24 + art_sys_181: -4.99143308e-25 + art_sys_182: -1.13643917e-25 + art_sys_183: 1.25755216e-27 + art_sys_184: 3.12721104e-28 + art_sys_185: 7.86480075e-28 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -12752,191 +12752,191 @@ bins: RelativeStatFSR-: -2.52378817e-06 luminosity_uncertainty: 4.56461200e-05 uncorrelated_uncertainty: 1.75562000e-05 -- art_sys_1: 4.58326303e-60 - art_sys_2: 2.88830824e-48 - art_sys_3: -1.22487505e-46 - art_sys_4: 2.11948986e-28 - art_sys_5: -2.67218400e-40 - art_sys_6: -5.35481146e-45 - art_sys_7: -4.93733653e-25 - art_sys_8: -1.34826386e-39 - art_sys_9: 4.15004698e-24 - art_sys_10: -4.35158828e-41 - art_sys_11: -2.19914590e-37 +- art_sys_1: -1.07941213e-58 + art_sys_2: 4.13586332e-47 + art_sys_3: -3.67004134e-46 + art_sys_4: -2.11948986e-28 + art_sys_5: 7.17887596e-41 + art_sys_6: -1.51551414e-45 + art_sys_7: 4.93733653e-25 + art_sys_8: -2.84776820e-39 + art_sys_9: -4.15004698e-24 + art_sys_10: 2.93170556e-42 + art_sys_11: 2.02022206e-38 art_sys_12: 1.91675083e-23 - art_sys_13: 4.91659404e-38 + art_sys_13: 6.56128238e-37 art_sys_14: 2.24247519e-21 - art_sys_15: -1.40697418e-33 - art_sys_16: -3.34556484e-21 - art_sys_17: 9.70833619e-37 - art_sys_18: -8.92214986e-32 + art_sys_15: -7.93865670e-34 + art_sys_16: 3.34556484e-21 + art_sys_17: 2.66138268e-37 + art_sys_18: 5.30080455e-32 art_sys_19: -2.39484535e-20 - art_sys_20: 2.70769173e-35 - art_sys_21: -8.28981676e-31 - art_sys_22: 6.00461090e-20 - art_sys_23: 4.88187474e-35 - art_sys_24: 3.41757340e-29 - art_sys_25: -7.87137889e-17 - art_sys_26: 1.05540473e-15 - art_sys_27: 5.89605516e-16 - art_sys_28: 1.07388360e-17 - art_sys_29: 1.15988749e-17 - art_sys_30: 1.75538827e-16 - art_sys_31: 2.81617643e-17 - art_sys_32: -3.54535304e-17 - art_sys_33: -2.65823844e-17 - art_sys_34: -2.68885609e-26 - art_sys_35: 4.42407356e-28 - art_sys_36: 2.34425888e-24 - art_sys_37: 1.09334288e-16 - art_sys_38: -4.25531922e-17 - art_sys_39: 9.81106346e-27 - art_sys_40: 1.53314928e-21 - art_sys_41: -4.45321538e-16 - art_sys_42: -4.23595680e-15 - art_sys_43: 4.35877573e-20 - art_sys_44: -8.76887537e-17 - art_sys_45: 6.95487345e-17 - art_sys_46: -6.43530769e-24 - art_sys_47: 1.04933834e-18 - art_sys_48: -2.09837536e-14 - art_sys_49: 1.02492352e-13 - art_sys_50: -2.94676846e-14 - art_sys_51: -2.02276432e-14 - art_sys_52: 6.19259744e-16 - art_sys_53: 1.21735823e-15 - art_sys_54: -1.46094493e-15 - art_sys_55: 4.01955474e-17 - art_sys_56: 6.08771356e-17 - art_sys_57: 6.20419100e-20 - art_sys_58: -3.50925883e-16 - art_sys_59: -1.06478871e-16 - art_sys_60: -3.91568170e-13 - art_sys_61: -6.01050659e-21 - art_sys_62: -1.19441459e-20 - art_sys_63: -9.68162461e-17 - art_sys_64: 7.77173790e-13 - art_sys_65: 7.24600777e-17 - art_sys_66: -2.15113055e-17 - art_sys_67: -7.46969099e-22 - art_sys_68: -2.90311050e-17 - art_sys_69: -2.04509978e-17 - art_sys_70: -9.64123280e-13 - art_sys_71: -2.26687892e-16 - art_sys_72: 2.34022668e-21 - art_sys_73: 3.53075317e-14 - art_sys_74: -1.49764358e-14 - art_sys_75: 8.12594630e-15 - art_sys_76: -9.28761549e-19 - art_sys_77: 2.49073917e-16 - art_sys_78: -5.85161901e-16 - art_sys_79: 2.84994075e-16 - art_sys_80: -7.70917275e-14 - art_sys_81: 1.14895180e-15 - art_sys_82: -4.84754974e-16 - art_sys_83: 8.85793173e-15 - art_sys_84: 2.30621048e-16 - art_sys_85: -8.50396482e-17 - art_sys_86: 2.78155518e-11 - art_sys_87: -1.55641900e-15 - art_sys_88: 5.65207914e-12 - art_sys_89: -1.09069221e-13 - art_sys_90: 3.20216230e-10 - art_sys_91: -6.60795326e-13 - art_sys_92: 7.42849437e-10 - art_sys_93: -1.32556960e-16 - art_sys_94: -4.69492413e-09 - art_sys_95: -1.05634292e-12 - art_sys_96: -1.72422399e-12 - art_sys_97: -2.48798887e-11 - art_sys_98: -1.21772095e-08 - art_sys_99: -2.84882242e-15 - art_sys_100: -1.36514096e-10 - art_sys_101: -3.22308854e-08 - art_sys_102: -1.54998765e-07 - art_sys_103: 1.41516559e-10 - art_sys_104: -1.03290042e-14 - art_sys_105: -3.58394197e-08 - art_sys_106: -1.84916694e-10 - art_sys_107: -5.99799299e-12 - art_sys_108: 3.64447169e-13 - art_sys_109: 1.56507705e-12 - art_sys_110: -2.39837427e-09 - art_sys_111: -1.10763420e-06 - art_sys_112: -3.29687888e-09 - art_sys_113: -9.76528843e-15 - art_sys_114: -6.88080548e-07 - art_sys_115: -2.76810998e-10 - art_sys_116: 2.13536333e-09 - art_sys_117: 4.75551085e-06 - art_sys_118: -5.11899993e-10 - art_sys_119: 5.75532248e-06 - art_sys_120: -5.54836261e-09 - art_sys_121: -2.54672611e-10 - art_sys_122: 1.07361577e-05 - art_sys_123: -2.38267125e-05 - art_sys_124: 2.09327379e-10 - art_sys_125: 1.79466564e-09 - art_sys_126: -5.67275158e-10 - art_sys_127: -5.69214294e-06 - art_sys_128: -9.76876000e-10 - art_sys_129: 5.20263893e-06 - art_sys_130: -1.64831388e-09 - art_sys_131: 4.65183863e-09 - art_sys_132: -5.21391742e-06 - art_sys_133: -1.21932886e-08 - art_sys_134: -2.48717162e-11 - art_sys_135: 1.93717406e-06 - art_sys_136: -4.30011165e-09 - art_sys_137: 4.12893138e-13 - art_sys_138: 2.52622008e-13 - art_sys_139: -2.71643320e-07 - art_sys_140: -3.95870547e-08 - art_sys_141: 5.72614835e-09 - art_sys_142: 2.42480655e-10 - art_sys_143: 2.89218445e-13 - art_sys_144: 4.92159438e-13 - art_sys_145: 1.71287521e-13 - art_sys_146: 0.0 - art_sys_147: 2.24727253e-11 - art_sys_148: -6.09883754e-11 - art_sys_149: -6.09883754e-11 - art_sys_150: -2.84506252e-10 - art_sys_151: -2.84506252e-10 - art_sys_152: 5.73585869e-10 - art_sys_153: -1.26977471e-12 - art_sys_154: -3.33759713e-14 - art_sys_155: -1.10250370e-22 - art_sys_156: 2.05951135e-26 - art_sys_157: -1.61203892e-25 - art_sys_158: -0.0 - art_sys_159: 5.12846822e-15 - art_sys_160: 2.51076167e-14 - art_sys_161: 1.06000360e-13 - art_sys_162: 1.23412698e-15 - art_sys_163: 2.09836964e-12 - art_sys_164: 7.57654782e-13 - art_sys_165: -9.47981224e-14 - art_sys_166: -5.35526948e-22 - art_sys_167: -3.79136510e-22 - art_sys_168: 2.86556576e-22 - art_sys_169: 3.41546722e-23 - art_sys_170: 3.94692118e-23 - art_sys_171: -2.61097156e-23 - art_sys_172: -1.38079769e-23 - art_sys_173: 4.16890056e-24 - art_sys_174: 4.30440546e-25 - art_sys_175: -1.58746236e-26 - art_sys_176: 1.97985094e-25 - art_sys_177: -4.80539624e-25 - art_sys_178: 1.14609875e-25 - art_sys_179: -6.88207775e-26 - art_sys_180: -2.74449292e-26 - art_sys_181: 2.66832571e-27 - art_sys_182: -2.91733503e-26 - art_sys_183: -4.37602271e-28 - art_sys_184: 6.96810067e-30 - art_sys_185: 4.83082418e-29 + art_sys_20: 4.62640002e-36 + art_sys_21: -9.83888539e-31 + art_sys_22: 1.99830439e-35 + art_sys_23: 6.00461090e-20 + art_sys_24: -9.23071620e-30 + art_sys_25: -1.07388360e-17 + art_sys_26: 1.15988749e-17 + art_sys_27: -1.12399481e-27 + art_sys_28: -1.08215288e-28 + art_sys_29: -1.79714562e-24 + art_sys_30: -1.09334295e-16 + art_sys_31: 2.73465345e-27 + art_sys_32: 2.89229645e-21 + art_sys_33: -4.45291210e-16 + art_sys_34: -4.23616621e-15 + art_sys_35: 1.00943812e-25 + art_sys_36: -4.65310524e-16 + art_sys_37: 1.50626841e-15 + art_sys_38: -1.56839438e-16 + art_sys_39: -5.50378877e-18 + art_sys_40: 3.36004375e-17 + art_sys_41: 4.27501901e-17 + art_sys_42: 5.41637591e-17 + art_sys_43: 2.64106308e-18 + art_sys_44: -2.50992274e-17 + art_sys_45: 8.10888032e-17 + art_sys_46: 1.01120516e-16 + art_sys_47: 1.64409243e-19 + art_sys_48: 2.09839018e-14 + art_sys_49: -8.19379183e-20 + art_sys_50: 5.13778382e-17 + art_sys_51: -1.01270770e-16 + art_sys_52: 7.66639080e-23 + art_sys_53: -3.91568575e-13 + art_sys_54: -2.53629345e-19 + art_sys_55: 7.77173890e-13 + art_sys_56: 4.11910692e-22 + art_sys_57: -1.48036971e-16 + art_sys_58: 6.21770718e-17 + art_sys_59: 9.64185387e-13 + art_sys_60: -1.03883625e-16 + art_sys_61: -4.88003194e-17 + art_sys_62: -1.30759653e-20 + art_sys_63: -7.76656074e-16 + art_sys_64: 2.18270307e-14 + art_sys_65: -4.31677085e-15 + art_sys_66: 2.56444465e-14 + art_sys_67: 1.66046144e-15 + art_sys_68: 4.29413545e-16 + art_sys_69: -5.45952394e-16 + art_sys_70: -4.17511258e-16 + art_sys_71: 3.10994279e-16 + art_sys_72: -1.87103034e-17 + art_sys_73: -1.97509768e-17 + art_sys_74: 4.91681214e-17 + art_sys_75: -6.02880330e-18 + art_sys_76: -1.09189631e-14 + art_sys_77: -3.45701307e-14 + art_sys_78: 4.49079068e-15 + art_sys_79: 1.73048721e-18 + art_sys_80: 1.93410492e-15 + art_sys_81: -3.82745780e-18 + art_sys_82: 5.24272669e-16 + art_sys_83: -7.26195210e-16 + art_sys_84: 1.69274029e-16 + art_sys_85: -5.44053355e-16 + art_sys_86: -4.69604867e-16 + art_sys_87: -1.61081190e-16 + art_sys_88: -2.89892599e-14 + art_sys_89: -4.70635299e-17 + art_sys_90: -2.19749350e-12 + art_sys_91: -3.20219673e-10 + art_sys_92: -8.80674383e-17 + art_sys_93: 1.47318538e-17 + art_sys_94: 6.36177836e-12 + art_sys_95: -3.97760973e-13 + art_sys_96: -7.42885166e-10 + art_sys_97: 3.39904653e-16 + art_sys_98: -1.68218675e-13 + art_sys_99: -4.69500914e-09 + art_sys_100: 3.90155297e-12 + art_sys_101: -1.21740154e-08 + art_sys_102: -2.18949843e-10 + art_sys_103: -5.54394559e-15 + art_sys_104: 3.22224905e-08 + art_sys_105: -3.29360732e-12 + art_sys_106: 1.55002978e-07 + art_sys_107: 4.24011702e-13 + art_sys_108: -6.66748503e-12 + art_sys_109: 5.67883354e-13 + art_sys_110: 2.83096847e-09 + art_sys_111: -3.58756900e-08 + art_sys_112: 9.76490022e-11 + art_sys_113: -1.27389758e-12 + art_sys_114: 5.34139395e-14 + art_sys_115: -1.10761228e-06 + art_sys_116: 1.49358437e-10 + art_sys_117: 2.27257862e-13 + art_sys_118: -6.88456912e-07 + art_sys_119: -2.83527265e-10 + art_sys_120: 6.56766095e-09 + art_sys_121: -1.32097185e-13 + art_sys_122: 4.75817337e-06 + art_sys_123: -8.08603319e-10 + art_sys_124: 5.75377762e-06 + art_sys_125: -3.69125539e-14 + art_sys_126: -1.24426656e-09 + art_sys_127: 6.68458888e-11 + art_sys_128: -1.07225494e-05 + art_sys_129: 5.83500245e-14 + art_sys_130: -6.04405867e-10 + art_sys_131: -6.95829712e-13 + art_sys_132: 2.38074503e-05 + art_sys_133: 1.15729062e-09 + art_sys_134: -4.70796944e-09 + art_sys_135: 5.68675372e-06 + art_sys_136: 1.08653834e-13 + art_sys_137: -4.29117608e-11 + art_sys_138: 5.25042603e-06 + art_sys_139: 8.97109735e-10 + art_sys_140: -1.13814228e-13 + art_sys_141: 5.94362485e-11 + art_sys_142: 5.20344762e-06 + art_sys_143: 1.80285595e-10 + art_sys_144: -9.42174385e-13 + art_sys_145: 1.93759042e-06 + art_sys_146: -1.11713742e-10 + art_sys_147: 1.35607720e-12 + art_sys_148: 2.76122377e-13 + art_sys_149: -2.82921967e-07 + art_sys_150: 8.05751859e-09 + art_sys_151: 4.63412075e-10 + art_sys_152: -7.10492882e-12 + art_sys_153: 1.05093370e-09 + art_sys_154: 1.25062013e-12 + art_sys_155: -3.15787838e-12 + art_sys_156: 0.0 + art_sys_157: -3.86186613e-09 + art_sys_158: 0.0 + art_sys_159: 5.15107307e-10 + art_sys_160: -7.77085005e-11 + art_sys_161: -4.85667449e-11 + art_sys_162: -4.85667449e-11 + art_sys_163: -5.64130794e-11 + art_sys_164: -5.64130794e-11 + art_sys_165: 6.26349420e-25 + art_sys_166: -2.07355761e-25 + art_sys_167: -0.0 + art_sys_168: 2.65778023e-21 + art_sys_169: 1.09818299e-21 + art_sys_170: -3.11455266e-22 + art_sys_171: 5.54084668e-22 + art_sys_172: -1.58761332e-23 + art_sys_173: -1.21121630e-23 + art_sys_174: -9.95384220e-24 + art_sys_175: -2.04023522e-24 + art_sys_176: -1.53330808e-24 + art_sys_177: -4.08015068e-25 + art_sys_178: -5.61445668e-25 + art_sys_179: 8.28456963e-25 + art_sys_180: 1.32199100e-23 + art_sys_181: 1.00234763e-24 + art_sys_182: 2.27491233e-25 + art_sys_183: -2.54660281e-27 + art_sys_184: -3.19929369e-28 + art_sys_185: -1.34836228e-27 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -13043,191 +13043,191 @@ bins: RelativeStatFSR-: -1.53302069e-06 luminosity_uncertainty: 2.62301000e-05 uncorrelated_uncertainty: 1.00885000e-05 -- art_sys_1: 6.26404988e-60 - art_sys_2: 8.92436963e-48 - art_sys_3: -3.29102148e-47 - art_sys_4: 6.54867769e-28 - art_sys_5: -3.55653844e-41 - art_sys_6: -6.77827525e-45 - art_sys_7: -6.98133765e-26 - art_sys_8: -1.73290369e-40 - art_sys_9: 5.26970765e-25 - art_sys_10: -5.61331189e-42 - art_sys_11: 3.23453127e-39 +- art_sys_1: -3.39119703e-58 + art_sys_2: 1.27787507e-46 + art_sys_3: -1.82659239e-47 + art_sys_4: -6.54867769e-28 + art_sys_5: 9.56973580e-42 + art_sys_6: -4.15183921e-45 + art_sys_7: 6.98133765e-26 + art_sys_8: -3.46803402e-40 + art_sys_9: -5.26970765e-25 + art_sys_10: 4.31686491e-43 + art_sys_11: -1.68094982e-39 art_sys_12: 1.36237408e-24 - art_sys_13: 2.26714174e-39 + art_sys_13: 3.70183314e-38 art_sys_14: 1.26202602e-22 - art_sys_15: -1.59869048e-34 - art_sys_16: 8.00814264e-22 - art_sys_17: 6.43667286e-38 - art_sys_18: -1.22448924e-32 - art_sys_19: 7.81666749e-22 - art_sys_20: -7.45133590e-37 - art_sys_21: -1.91173787e-31 - art_sys_22: -1.77065447e-21 - art_sys_23: -4.53588035e-36 - art_sys_24: 5.18887154e-30 - art_sys_25: 5.18766795e-16 - art_sys_26: -1.06815757e-15 - art_sys_27: -2.05766918e-15 - art_sys_28: 9.97142671e-19 - art_sys_29: 4.47820767e-18 - art_sys_30: -1.46996968e-15 - art_sys_31: -5.40315334e-17 - art_sys_32: 2.62092813e-16 - art_sys_33: 1.55230111e-16 - art_sys_34: -1.73736031e-27 - art_sys_35: -4.17760769e-29 - art_sys_36: -1.86499110e-26 - art_sys_37: -9.43836613e-18 - art_sys_38: 1.70404745e-16 - art_sys_39: -8.92254659e-28 - art_sys_40: 3.40167648e-23 - art_sys_41: 5.51820701e-17 - art_sys_42: 3.75009993e-16 - art_sys_43: -2.66621546e-17 - art_sys_44: 2.94508663e-16 - art_sys_45: -1.35239141e-16 - art_sys_46: 6.10072274e-25 - art_sys_47: 2.98368299e-19 - art_sys_48: 3.84313183e-15 - art_sys_49: 1.32016397e-14 - art_sys_50: -1.48173309e-14 - art_sys_51: 1.71445143e-14 - art_sys_52: 6.81723189e-15 - art_sys_53: -1.52996254e-15 - art_sys_54: 5.02136537e-16 - art_sys_55: -1.36385428e-16 - art_sys_56: -1.24617847e-16 - art_sys_57: -8.62240004e-19 - art_sys_58: 2.94831035e-16 - art_sys_59: 1.46583278e-17 - art_sys_60: -5.47505532e-14 - art_sys_61: -8.26119639e-22 - art_sys_62: -4.85664810e-19 - art_sys_63: 1.36765951e-16 - art_sys_64: 3.14764847e-13 - art_sys_65: -7.41212321e-17 - art_sys_66: 3.22012252e-17 - art_sys_67: -1.76126110e-22 - art_sys_68: -1.16703886e-18 - art_sys_69: -7.64144246e-18 - art_sys_70: -7.32722398e-13 - art_sys_71: 1.96764033e-17 - art_sys_72: -4.90488616e-21 - art_sys_73: -9.70711530e-15 - art_sys_74: 4.24700648e-14 - art_sys_75: -2.10293936e-16 - art_sys_76: -7.69948790e-18 - art_sys_77: 3.69889102e-17 - art_sys_78: -2.56404116e-16 - art_sys_79: -2.31748519e-16 - art_sys_80: -9.67242604e-15 - art_sys_81: -1.02915067e-15 - art_sys_82: 1.02878300e-16 - art_sys_83: 4.82212605e-14 - art_sys_84: -6.98074979e-16 - art_sys_85: -4.43809828e-17 - art_sys_86: -7.40912506e-12 - art_sys_87: -1.39591915e-15 - art_sys_88: -8.24760649e-12 - art_sys_89: -1.04766329e-12 - art_sys_90: -4.20890378e-11 - art_sys_91: 1.01709952e-13 - art_sys_92: 3.05044618e-10 - art_sys_93: -5.37863924e-17 - art_sys_94: 3.26627029e-10 - art_sys_95: 8.35332002e-12 - art_sys_96: 3.89981802e-12 - art_sys_97: -2.30016661e-10 - art_sys_98: -3.96825563e-09 - art_sys_99: 1.72833169e-16 - art_sys_100: 4.57021241e-11 - art_sys_101: 9.18980595e-09 - art_sys_102: -2.21747478e-08 - art_sys_103: -7.56153333e-11 - art_sys_104: -1.09869771e-15 - art_sys_105: 1.18211543e-07 - art_sys_106: 5.77878786e-11 - art_sys_107: 6.86040513e-12 - art_sys_108: -4.44742327e-13 - art_sys_109: -4.76129729e-12 - art_sys_110: 5.17018996e-09 - art_sys_111: 1.55836167e-09 - art_sys_112: -1.97101317e-09 - art_sys_113: 3.23787130e-14 - art_sys_114: -8.40634501e-07 - art_sys_115: 7.33426559e-10 - art_sys_116: -2.36159951e-09 - art_sys_117: -5.16258046e-07 - art_sys_118: 1.06355421e-09 - art_sys_119: 3.36220069e-06 - art_sys_120: -8.10038446e-09 - art_sys_121: 2.82461249e-10 - art_sys_122: -4.66139370e-06 - art_sys_123: -7.37393318e-06 - art_sys_124: -2.36271835e-10 - art_sys_125: 1.07683535e-08 - art_sys_126: 6.43479944e-10 - art_sys_127: -1.82208142e-05 - art_sys_128: 1.18111736e-09 - art_sys_129: -5.38608080e-06 - art_sys_130: 1.55199778e-09 - art_sys_131: -2.90634256e-09 - art_sys_132: 4.29799891e-06 - art_sys_133: 9.77769739e-09 - art_sys_134: 2.04510043e-11 - art_sys_135: -3.02480090e-06 - art_sys_136: 5.90112952e-09 - art_sys_137: -5.20002298e-13 - art_sys_138: 1.67144499e-14 - art_sys_139: 5.21697496e-07 - art_sys_140: 7.60353232e-08 - art_sys_141: -1.08738151e-08 - art_sys_142: -5.55828836e-10 - art_sys_143: -5.47751914e-13 - art_sys_144: -9.37764645e-13 - art_sys_145: -2.49396950e-13 - art_sys_146: -0.0 - art_sys_147: -3.25226511e-11 - art_sys_148: -1.38495323e-11 - art_sys_149: -1.38495323e-11 - art_sys_150: 5.41145756e-10 - art_sys_151: 5.41145756e-10 - art_sys_152: -8.97479815e-10 - art_sys_153: -1.43790285e-11 - art_sys_154: 6.12752440e-14 - art_sys_155: 1.53532144e-22 - art_sys_156: -3.61201111e-26 - art_sys_157: 7.67990716e-26 - art_sys_158: 0.0 - art_sys_159: -1.39742261e-13 - art_sys_160: -2.64906196e-14 - art_sys_161: -2.18311490e-13 - art_sys_162: -1.45582557e-15 - art_sys_163: -2.96123958e-12 - art_sys_164: -1.23439560e-12 - art_sys_165: 9.61800416e-14 - art_sys_166: 2.81130573e-22 - art_sys_167: -2.09084168e-22 - art_sys_168: -3.94270846e-22 - art_sys_169: -8.44009102e-23 - art_sys_170: -1.12719381e-22 - art_sys_171: 7.49031138e-23 - art_sys_172: 3.23312399e-23 - art_sys_173: -1.17627329e-23 - art_sys_174: -2.03741155e-24 - art_sys_175: -2.46068903e-26 - art_sys_176: -3.86410751e-25 - art_sys_177: 1.26993634e-24 - art_sys_178: -3.63116327e-25 - art_sys_179: 2.15584371e-25 - art_sys_180: 6.55947376e-26 - art_sys_181: -8.04362411e-27 - art_sys_182: 2.83361062e-26 - art_sys_183: 1.01224383e-27 - art_sys_184: -2.20468377e-29 - art_sys_185: -4.23735464e-29 + art_sys_15: -8.17880654e-35 + art_sys_16: -8.00814264e-22 + art_sys_17: -2.01256114e-38 + art_sys_18: 4.86422676e-33 + art_sys_19: 7.81666747e-22 + art_sys_20: -7.82462767e-38 + art_sys_21: -1.07124243e-31 + art_sys_22: 9.72091609e-38 + art_sys_23: -1.77065450e-21 + art_sys_24: -5.59839887e-30 + art_sys_25: -9.97142670e-19 + art_sys_26: 4.47820767e-18 + art_sys_27: 1.77351603e-27 + art_sys_28: 1.04366343e-29 + art_sys_29: -2.08255276e-26 + art_sys_30: 9.43836608e-18 + art_sys_31: -2.40091904e-28 + art_sys_32: 1.01222793e-22 + art_sys_33: 5.51847499e-17 + art_sys_34: 3.74950837e-16 + art_sys_35: -2.93328734e-26 + art_sys_36: 4.60147853e-15 + art_sys_37: -4.64628221e-15 + art_sys_38: 2.99829139e-15 + art_sys_39: -3.79901186e-16 + art_sys_40: -1.48502762e-16 + art_sys_41: -2.82054095e-16 + art_sys_42: -5.17987375e-17 + art_sys_43: -2.54201127e-17 + art_sys_44: 5.17216591e-17 + art_sys_45: -1.82833231e-16 + art_sys_46: -1.90573576e-16 + art_sys_47: 6.69000641e-18 + art_sys_48: -3.84095934e-15 + art_sys_49: -2.05862134e-20 + art_sys_50: -8.60614489e-17 + art_sys_51: 2.11190754e-16 + art_sys_52: -1.04163522e-23 + art_sys_53: -5.47503536e-14 + art_sys_54: -8.89451951e-20 + art_sys_55: 3.14764645e-13 + art_sys_56: 1.75627536e-22 + art_sys_57: 3.08896335e-16 + art_sys_58: -1.09719696e-16 + art_sys_59: 7.32722141e-13 + art_sys_60: -3.06764232e-18 + art_sys_61: 7.98286636e-17 + art_sys_62: 1.04999867e-20 + art_sys_63: -1.85150113e-16 + art_sys_64: 3.99271405e-14 + art_sys_65: 1.02399943e-14 + art_sys_66: 3.45228682e-15 + art_sys_67: 1.49486961e-15 + art_sys_68: -1.09817231e-15 + art_sys_69: -2.67371425e-16 + art_sys_70: -4.30604378e-16 + art_sys_71: 4.01358794e-16 + art_sys_72: 1.20638745e-18 + art_sys_73: -9.61927675e-19 + art_sys_74: -7.31777419e-17 + art_sys_75: 1.41968342e-17 + art_sys_76: -1.82828091e-14 + art_sys_77: -9.20659696e-15 + art_sys_78: 1.22325561e-14 + art_sys_79: -8.44362366e-18 + art_sys_80: 9.42726233e-16 + art_sys_81: -5.69285127e-18 + art_sys_82: -2.52048373e-15 + art_sys_83: 6.72908907e-16 + art_sys_84: 1.15889744e-15 + art_sys_85: -3.88066291e-16 + art_sys_86: -4.40744543e-16 + art_sys_87: -3.62461948e-17 + art_sys_88: -1.29779440e-14 + art_sys_89: 5.72675183e-17 + art_sys_90: 2.79379969e-13 + art_sys_91: 4.20880738e-11 + art_sys_92: -1.50461729e-17 + art_sys_93: -2.54737802e-17 + art_sys_94: 1.32234381e-12 + art_sys_95: 4.82998347e-13 + art_sys_96: -3.05041502e-10 + art_sys_97: 1.36714011e-16 + art_sys_98: 4.92032113e-13 + art_sys_99: 3.26627203e-10 + art_sys_100: 1.65204067e-12 + art_sys_101: -3.96655905e-09 + art_sys_102: -8.53672869e-11 + art_sys_103: 6.40009998e-16 + art_sys_104: -9.14836065e-09 + art_sys_105: 6.82184139e-12 + art_sys_106: 2.22373458e-08 + art_sys_107: 1.75560194e-10 + art_sys_108: 1.17801059e-11 + art_sys_109: -1.00313268e-12 + art_sys_110: 4.63561527e-10 + art_sys_111: 1.18461137e-07 + art_sys_112: -8.51839478e-11 + art_sys_113: 4.18176323e-12 + art_sys_114: -9.44882051e-14 + art_sys_115: 1.56416222e-09 + art_sys_116: -2.93536603e-10 + art_sys_117: -4.00711964e-13 + art_sys_118: -8.41041462e-07 + art_sys_119: 5.24460716e-10 + art_sys_120: 1.27800946e-09 + art_sys_121: 2.32900925e-13 + art_sys_122: -5.15377992e-07 + art_sys_123: 7.47153874e-10 + art_sys_124: 3.36162248e-06 + art_sys_125: 6.50386170e-14 + art_sys_126: -4.75788655e-09 + art_sys_127: -1.18287734e-10 + art_sys_128: 4.66345569e-06 + art_sys_129: -1.02916368e-13 + art_sys_130: 1.06199679e-09 + art_sys_131: 1.22675256e-12 + art_sys_132: 7.39886123e-06 + art_sys_133: -2.03661966e-09 + art_sys_134: 7.34755394e-09 + art_sys_135: 1.82267305e-05 + art_sys_136: -1.96285756e-13 + art_sys_137: 7.74967585e-11 + art_sys_138: -5.42738284e-06 + art_sys_139: -1.61535041e-09 + art_sys_140: 2.03878135e-13 + art_sys_141: -9.41500353e-12 + art_sys_142: -4.28129929e-06 + art_sys_143: -2.69065620e-10 + art_sys_144: -1.05221689e-13 + art_sys_145: -3.02714786e-06 + art_sys_146: 1.72936990e-10 + art_sys_147: -2.16035451e-12 + art_sys_148: -8.12059658e-13 + art_sys_149: 5.41389838e-07 + art_sys_150: -1.53843319e-08 + art_sys_151: -8.11975597e-10 + art_sys_152: 1.31981984e-11 + art_sys_153: -1.88835662e-09 + art_sys_154: -2.11769681e-13 + art_sys_155: 5.90130455e-12 + art_sys_156: -0.0 + art_sys_157: 6.57942924e-09 + art_sys_158: -0.0 + art_sys_159: -9.07392439e-10 + art_sys_160: 1.32481474e-10 + art_sys_161: 8.72777843e-11 + art_sys_162: 8.72777843e-11 + art_sys_163: 9.99201775e-11 + art_sys_164: 9.99201775e-11 + art_sys_165: -1.11147120e-24 + art_sys_166: 3.68070750e-25 + art_sys_167: 0.0 + art_sys_168: -5.12668760e-21 + art_sys_169: -1.94144420e-21 + art_sys_170: 4.88682091e-22 + art_sys_171: -9.74512505e-22 + art_sys_172: 2.82371429e-23 + art_sys_173: 2.13452394e-23 + art_sys_174: 1.75440693e-23 + art_sys_175: 3.59866931e-24 + art_sys_176: 2.69943568e-24 + art_sys_177: 7.20130555e-25 + art_sys_178: 9.89898076e-25 + art_sys_179: -1.59526516e-24 + art_sys_180: -2.33160610e-23 + art_sys_181: -1.76523495e-24 + art_sys_182: -4.01190907e-25 + art_sys_183: 4.48958213e-27 + art_sys_184: 4.92972267e-28 + art_sys_185: 1.99205634e-27 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -13334,191 +13334,191 @@ bins: RelativeStatFSR-: -9.79673311e-07 luminosity_uncertainty: 1.58757820e-05 uncorrelated_uncertainty: 6.10607000e-06 -- art_sys_1: 9.60670482e-61 - art_sys_2: 1.40913820e-48 - art_sys_3: -3.37233340e-48 - art_sys_4: 1.03402116e-28 - art_sys_5: -3.32830234e-42 - art_sys_6: -1.04038163e-45 - art_sys_7: -6.60632087e-27 - art_sys_8: -1.59657483e-41 - art_sys_9: 4.82859348e-26 - art_sys_10: -5.15274284e-43 - art_sys_11: 2.20437005e-39 +- art_sys_1: -5.35665515e-59 + art_sys_2: 2.01773537e-47 + art_sys_3: 1.31994668e-48 + art_sys_4: -1.03402116e-28 + art_sys_5: 8.80883348e-43 + art_sys_6: -6.54307162e-46 + art_sys_7: 6.60632087e-27 + art_sys_8: -3.01426948e-41 + art_sys_9: -4.82859348e-26 + art_sys_10: 4.16016510e-44 + art_sys_11: -3.93241115e-40 art_sys_12: 2.73981593e-26 - art_sys_13: -2.34397778e-40 - art_sys_14: -5.98149019e-24 - art_sys_15: -1.02057533e-35 - art_sys_16: 2.09855615e-22 - art_sys_17: -1.90886424e-39 - art_sys_18: -9.47727399e-34 + art_sys_13: -1.73132140e-39 + art_sys_14: -5.98149020e-24 + art_sys_15: -5.07144116e-36 + art_sys_16: -2.09855615e-22 + art_sys_17: -8.05947313e-39 + art_sys_18: 6.21163567e-34 art_sys_19: 5.27543607e-22 - art_sys_20: -5.96603039e-37 - art_sys_21: -1.64268605e-32 - art_sys_22: -1.34769808e-21 - art_sys_23: -1.77324300e-36 - art_sys_24: -6.66855498e-32 - art_sys_25: 4.72283314e-15 - art_sys_26: -7.31783698e-15 - art_sys_27: -5.77387432e-16 - art_sys_28: 1.15990795e-20 - art_sys_29: 6.04713027e-19 - art_sys_30: -7.81091818e-16 - art_sys_31: -5.79211460e-17 - art_sys_32: 1.46486754e-16 - art_sys_33: -1.31416551e-16 - art_sys_34: 1.69034673e-28 - art_sys_35: -1.29219916e-29 - art_sys_36: -1.22873521e-26 - art_sys_37: -3.06958457e-18 - art_sys_38: -8.96755555e-17 - art_sys_39: -4.17678762e-28 - art_sys_40: 9.91010705e-25 - art_sys_41: 3.50528047e-17 - art_sys_42: 5.94771512e-17 - art_sys_43: -1.67072152e-17 - art_sys_44: -2.97658079e-16 - art_sys_45: 3.32242774e-16 - art_sys_46: 1.00753052e-25 - art_sys_47: -5.43291554e-19 - art_sys_48: 8.60412764e-16 - art_sys_49: -5.23922412e-14 - art_sys_50: 1.62403670e-14 - art_sys_51: -1.95513454e-14 - art_sys_52: 1.43157420e-15 - art_sys_53: -8.05501243e-16 - art_sys_54: 1.55293018e-16 - art_sys_55: 1.81042935e-16 - art_sys_56: 2.64520807e-16 - art_sys_57: 3.29468732e-19 - art_sys_58: -5.71343123e-16 - art_sys_59: -2.45206375e-16 - art_sys_60: -3.23421965e-15 - art_sys_61: -4.75712296e-23 - art_sys_62: 3.33491487e-19 - art_sys_63: -4.62196824e-16 - art_sys_64: 3.91214538e-14 - art_sys_65: 8.73915957e-17 - art_sys_66: -5.70636072e-17 - art_sys_67: -3.97788950e-23 - art_sys_68: -1.90658477e-16 - art_sys_69: -1.72088927e-16 - art_sys_70: -9.26497960e-14 - art_sys_71: 1.13357137e-17 - art_sys_72: 2.31050744e-21 - art_sys_73: 2.14786082e-14 - art_sys_74: -2.58460934e-14 - art_sys_75: 8.76655678e-16 - art_sys_76: -2.48000059e-17 - art_sys_77: -6.47212604e-18 - art_sys_78: 2.11701897e-16 - art_sys_79: -1.88238034e-15 - art_sys_80: 3.54039872e-15 - art_sys_81: -1.60547701e-17 - art_sys_82: -4.96513862e-16 - art_sys_83: 3.84125480e-15 - art_sys_84: 6.91485229e-16 - art_sys_85: 1.36471754e-16 - art_sys_86: -1.51049713e-11 - art_sys_87: -1.24004514e-16 - art_sys_88: -1.49114298e-11 - art_sys_89: 9.36274381e-13 - art_sys_90: -1.76404305e-11 - art_sys_91: 2.41109802e-14 - art_sys_92: 8.51669273e-12 - art_sys_93: -3.23641931e-19 - art_sys_94: 2.51567911e-10 - art_sys_95: 6.94405951e-13 - art_sys_96: -7.20007141e-12 - art_sys_97: -6.19957171e-12 - art_sys_98: 1.67912738e-10 - art_sys_99: 1.57644004e-16 - art_sys_100: 1.64995713e-11 - art_sys_101: 2.68528467e-09 - art_sys_102: 6.81835926e-09 - art_sys_103: -3.08489136e-11 - art_sys_104: 2.70800970e-16 - art_sys_105: 1.51914981e-08 - art_sys_106: 2.64314791e-11 - art_sys_107: -8.85535732e-12 - art_sys_108: 3.04691413e-13 - art_sys_109: -2.24980205e-11 - art_sys_110: 2.61631475e-09 - art_sys_111: 8.82832010e-08 - art_sys_112: -4.81859629e-09 - art_sys_113: 1.73150593e-13 - art_sys_114: -1.67771587e-08 - art_sys_115: -8.00886265e-10 - art_sys_116: -2.07640130e-09 - art_sys_117: -5.45900329e-07 - art_sys_118: -2.12533898e-09 - art_sys_119: -4.11530036e-07 - art_sys_120: -1.13530562e-08 - art_sys_121: -5.01518915e-10 - art_sys_122: -2.09521412e-06 - art_sys_123: 3.35802186e-06 - art_sys_124: 3.23071240e-10 - art_sys_125: -3.76646974e-09 - art_sys_126: -6.54484703e-10 - art_sys_127: -4.04416014e-06 - art_sys_128: -1.21342119e-09 - art_sys_129: -1.29364424e-05 - art_sys_130: -2.68300062e-09 - art_sys_131: 4.09943957e-09 - art_sys_132: -4.43388263e-06 - art_sys_133: -9.24865805e-09 - art_sys_134: -2.04548481e-11 - art_sys_135: 4.01803985e-06 - art_sys_136: -7.47415847e-09 - art_sys_137: 5.63867805e-13 - art_sys_138: -1.30042136e-14 - art_sys_139: -7.85687353e-07 - art_sys_140: -1.14555521e-07 - art_sys_141: 1.75327564e-08 - art_sys_142: -6.23381086e-10 - art_sys_143: 7.81789107e-13 - art_sys_144: 1.50485942e-12 - art_sys_145: 1.55838844e-12 - art_sys_146: -0.0 - art_sys_147: 2.02729547e-10 - art_sys_148: -1.97256800e-09 - art_sys_149: -1.97256800e-09 - art_sys_150: -7.48786139e-10 - art_sys_151: -7.48786139e-10 - art_sys_152: 4.28624042e-09 - art_sys_153: -2.42291746e-10 - art_sys_154: -1.17145544e-13 - art_sys_155: -1.12694062e-21 - art_sys_156: 5.73554496e-26 - art_sys_157: -1.40926573e-26 - art_sys_158: -0.0 - art_sys_159: -2.24496732e-12 - art_sys_160: 3.74040280e-13 - art_sys_161: 4.18185262e-13 - art_sys_162: 3.11560938e-14 - art_sys_163: 7.43917928e-12 - art_sys_164: -8.33526110e-13 - art_sys_165: -7.47913906e-14 - art_sys_166: -1.24321628e-20 - art_sys_167: -1.48517142e-20 - art_sys_168: 3.05853118e-21 - art_sys_169: -2.01687687e-22 - art_sys_170: -4.37924279e-22 - art_sys_171: 2.95665380e-22 - art_sys_172: 4.72780212e-23 - art_sys_173: -4.44881350e-23 - art_sys_174: -1.67671357e-23 - art_sys_175: -8.11421334e-25 - art_sys_176: 4.30183799e-25 - art_sys_177: 3.79785487e-24 - art_sys_178: -1.76450459e-24 - art_sys_179: 1.00065667e-24 - art_sys_180: 2.50371829e-25 - art_sys_181: -3.49871752e-26 - art_sys_182: -4.83346801e-25 - art_sys_183: -8.19954416e-28 - art_sys_184: -2.37339506e-28 - art_sys_185: 7.96420305e-30 + art_sys_20: -9.25151695e-38 + art_sys_21: -1.94228159e-32 + art_sys_22: -2.62798970e-37 + art_sys_23: -1.34769808e-21 + art_sys_24: -9.62104182e-31 + art_sys_25: -1.15990795e-20 + art_sys_26: 6.04713026e-19 + art_sys_27: 1.12192725e-28 + art_sys_28: 3.17165933e-30 + art_sys_29: -9.37627513e-27 + art_sys_30: 3.06958454e-18 + art_sys_31: -1.14920470e-28 + art_sys_32: 1.22918597e-24 + art_sys_33: 3.50528479e-17 + art_sys_34: 5.94750328e-17 + art_sys_35: -5.26617213e-27 + art_sys_36: -7.89707208e-15 + art_sys_37: 2.06627500e-15 + art_sys_38: -8.57979696e-16 + art_sys_39: 4.35289769e-17 + art_sys_40: -3.58652123e-16 + art_sys_41: 9.53863287e-17 + art_sys_42: -2.03073288e-18 + art_sys_43: -1.23361115e-16 + art_sys_44: 2.60916050e-17 + art_sys_45: -8.91329992e-19 + art_sys_46: 5.32477465e-17 + art_sys_47: 1.29029107e-18 + art_sys_48: -8.70894482e-16 + art_sys_49: 4.55159034e-21 + art_sys_50: 3.34793214e-17 + art_sys_51: 2.03422933e-17 + art_sys_52: -3.04809146e-24 + art_sys_53: -3.23423066e-15 + art_sys_54: 1.01421154e-18 + art_sys_55: 3.91214174e-14 + art_sys_56: -6.75087846e-24 + art_sys_57: -7.20457977e-17 + art_sys_58: 2.47820085e-17 + art_sys_59: 9.26470567e-14 + art_sys_60: 3.82153528e-18 + art_sys_61: -4.69390662e-17 + art_sys_62: -8.66232313e-22 + art_sys_63: 1.19305824e-17 + art_sys_64: -1.05800400e-13 + art_sys_65: -1.49091528e-14 + art_sys_66: -8.20730767e-15 + art_sys_67: -3.80620427e-15 + art_sys_68: 3.16315267e-16 + art_sys_69: 3.97434090e-16 + art_sys_70: -4.37951448e-16 + art_sys_71: 2.98821024e-16 + art_sys_72: 5.32806472e-17 + art_sys_73: -1.66315231e-18 + art_sys_74: 7.39357365e-17 + art_sys_75: -1.11000090e-17 + art_sys_76: 1.32908488e-14 + art_sys_77: 2.90691836e-14 + art_sys_78: -9.91527061e-17 + art_sys_79: -1.10157402e-17 + art_sys_80: -6.89321876e-16 + art_sys_81: -2.36993439e-18 + art_sys_82: -3.77734205e-16 + art_sys_83: 2.57859503e-16 + art_sys_84: 4.08926984e-16 + art_sys_85: -2.52113508e-16 + art_sys_86: -8.16485783e-17 + art_sys_87: 1.45077220e-17 + art_sys_88: 1.39901261e-15 + art_sys_89: -5.11745215e-17 + art_sys_90: 2.54671045e-13 + art_sys_91: 1.76404701e-11 + art_sys_92: 1.85900797e-17 + art_sys_93: 1.53788288e-17 + art_sys_94: -1.10487140e-12 + art_sys_95: 8.38837492e-14 + art_sys_96: -8.51518042e-12 + art_sys_97: 2.51912442e-18 + art_sys_98: 6.31928168e-14 + art_sys_99: 2.51426376e-10 + art_sys_100: -2.71091668e-13 + art_sys_101: 1.66919541e-10 + art_sys_102: 2.02952717e-11 + art_sys_103: 3.54954179e-16 + art_sys_104: -2.71852673e-09 + art_sys_105: -1.06164355e-11 + art_sys_106: -6.86919420e-09 + art_sys_107: 8.07466573e-12 + art_sys_108: -1.69297811e-11 + art_sys_109: 1.84835094e-12 + art_sys_110: -4.89407311e-10 + art_sys_111: 1.49928498e-08 + art_sys_112: -2.28954488e-11 + art_sys_113: 5.29768706e-13 + art_sys_114: 1.47509368e-13 + art_sys_115: 8.82942868e-08 + art_sys_116: -2.11268892e-10 + art_sys_117: 8.25764420e-13 + art_sys_118: -1.66798049e-08 + art_sys_119: 7.23923836e-11 + art_sys_120: -1.12569886e-09 + art_sys_121: -4.80222410e-13 + art_sys_122: -5.46246015e-07 + art_sys_123: -1.54917366e-09 + art_sys_124: -4.11376577e-07 + art_sys_125: -1.31833375e-13 + art_sys_126: -1.90864685e-09 + art_sys_127: 2.07280676e-10 + art_sys_128: 2.09308316e-06 + art_sys_129: 2.11823734e-13 + art_sys_130: -1.59225156e-09 + art_sys_131: -2.50658738e-12 + art_sys_132: -3.34962294e-06 + art_sys_133: 2.94850149e-09 + art_sys_134: -1.01315797e-08 + art_sys_135: 4.02159271e-06 + art_sys_136: 1.56101414e-13 + art_sys_137: -9.20800280e-12 + art_sys_138: -1.29053255e-05 + art_sys_139: 2.18199351e-09 + art_sys_140: -3.22721020e-13 + art_sys_141: -5.11192139e-13 + art_sys_142: 4.44298607e-06 + art_sys_143: 3.61667720e-10 + art_sys_144: 2.95543603e-12 + art_sys_145: 4.03474502e-06 + art_sys_146: -1.96546842e-10 + art_sys_147: 2.86414700e-12 + art_sys_148: 1.44887397e-12 + art_sys_149: -8.13535936e-07 + art_sys_150: 2.28415220e-08 + art_sys_151: 1.77320332e-09 + art_sys_152: -1.88488716e-11 + art_sys_153: 3.13593494e-09 + art_sys_154: -1.49088385e-13 + art_sys_155: -4.41853073e-12 + art_sys_156: 0.0 + art_sys_157: -1.80172912e-08 + art_sys_158: 0.0 + art_sys_159: 1.89712251e-09 + art_sys_160: -3.49534338e-10 + art_sys_161: -1.21334049e-10 + art_sys_162: -1.21334049e-10 + art_sys_163: -1.87656086e-10 + art_sys_164: -1.87656086e-10 + art_sys_165: 2.01758218e-24 + art_sys_166: -6.64220620e-25 + art_sys_167: -0.0 + art_sys_168: 1.13930648e-20 + art_sys_169: 3.99411099e-21 + art_sys_170: -1.15933504e-21 + art_sys_171: 2.01034923e-21 + art_sys_172: -5.25783567e-23 + art_sys_173: -4.41531311e-23 + art_sys_174: -3.64328426e-23 + art_sys_175: -7.42267397e-24 + art_sys_176: -5.67887603e-24 + art_sys_177: -1.48078020e-24 + art_sys_178: -1.99059163e-24 + art_sys_179: 1.14139526e-26 + art_sys_180: 4.75296019e-23 + art_sys_181: 3.70843348e-24 + art_sys_182: 8.29859793e-25 + art_sys_183: -9.88070000e-27 + art_sys_184: 1.18961426e-27 + art_sys_185: -2.28767335e-27 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -13625,191 +13625,191 @@ bins: RelativeStatFSR-: -5.34148296e-07 luminosity_uncertainty: 8.20058200e-06 uncorrelated_uncertainty: 3.15407000e-06 -- art_sys_1: 8.62046908e-62 - art_sys_2: 1.27643072e-49 - art_sys_3: -2.48697169e-49 - art_sys_4: 9.36640690e-30 - art_sys_5: -2.39778397e-43 - art_sys_6: -9.34365795e-47 - art_sys_7: -4.78144862e-28 - art_sys_8: -1.15636530e-42 - art_sys_9: 3.40400120e-27 - art_sys_10: -3.65543412e-44 - art_sys_11: 3.11802306e-40 +- art_sys_1: -4.85278763e-60 + art_sys_2: 1.82771215e-48 + art_sys_3: 2.46590431e-49 + art_sys_4: -9.36640690e-30 + art_sys_5: 6.25905967e-44 + art_sys_6: -5.87338452e-47 + art_sys_7: 4.78144862e-28 + art_sys_8: -1.96833632e-42 + art_sys_9: -3.40400120e-27 + art_sys_10: 3.34833263e-45 + art_sys_11: -4.64671463e-41 art_sys_12: -7.02301892e-27 - art_sys_13: -6.59567655e-41 + art_sys_13: -7.04848958e-40 art_sys_14: -2.41686020e-24 - art_sys_15: -7.48909022e-37 - art_sys_16: 2.83913082e-23 - art_sys_17: -1.08333121e-39 - art_sys_18: -8.05489287e-35 + art_sys_15: -2.18989518e-37 + art_sys_16: -2.83913082e-23 + art_sys_17: -1.21487385e-39 + art_sys_18: 5.78263022e-35 art_sys_19: 8.62537450e-23 - art_sys_20: -9.72593126e-38 - art_sys_21: -1.72864006e-33 - art_sys_22: -2.18675276e-22 - art_sys_23: -2.44681913e-37 - art_sys_24: -1.84786952e-31 - art_sys_25: -4.92687589e-15 - art_sys_26: -1.22115383e-14 - art_sys_27: -1.13634473e-15 - art_sys_28: -1.14050340e-20 - art_sys_29: 2.66799907e-20 - art_sys_30: -3.23490644e-16 - art_sys_31: -6.22407209e-17 - art_sys_32: -9.15663812e-17 - art_sys_33: -1.53816620e-16 - art_sys_34: 6.40940367e-29 - art_sys_35: -1.09094290e-30 - art_sys_36: -1.71824175e-27 - art_sys_37: -2.64942424e-19 - art_sys_38: -1.87783188e-16 - art_sys_39: -5.50602815e-29 - art_sys_40: 1.97000643e-26 - art_sys_41: 5.79735280e-18 - art_sys_42: -4.07035538e-18 - art_sys_43: -9.91445393e-17 - art_sys_44: 1.74180497e-16 - art_sys_45: -3.45180857e-16 - art_sys_46: -5.09432067e-27 - art_sys_47: 2.47875135e-20 - art_sys_48: 4.44499659e-17 - art_sys_49: -2.44575472e-14 - art_sys_50: -3.54053589e-14 - art_sys_51: 2.69855112e-15 - art_sys_52: -2.83272409e-15 - art_sys_53: 8.54755393e-16 - art_sys_54: 9.38979654e-16 - art_sys_55: -1.39947772e-16 - art_sys_56: -3.71595247e-16 - art_sys_57: 6.68046323e-18 - art_sys_58: 1.36796455e-15 - art_sys_59: 4.26955776e-16 - art_sys_60: -1.87089536e-16 - art_sys_61: -2.79844723e-24 - art_sys_62: 2.65456601e-19 - art_sys_63: 5.90723214e-16 - art_sys_64: 1.56955669e-15 - art_sys_65: 1.92824389e-17 - art_sys_66: 7.25315758e-18 - art_sys_67: -4.90906202e-26 - art_sys_68: 2.60992774e-16 - art_sys_69: 2.15978507e-16 - art_sys_70: 5.35699932e-16 - art_sys_71: 6.05674759e-19 - art_sys_72: 5.14556248e-23 - art_sys_73: -3.06416091e-14 - art_sys_74: -3.75485098e-14 - art_sys_75: -8.71801188e-16 - art_sys_76: 3.50267674e-18 - art_sys_77: -1.33775476e-18 - art_sys_78: -2.13795329e-16 - art_sys_79: 9.74503266e-16 - art_sys_80: 7.72507925e-16 - art_sys_81: -4.43575133e-16 - art_sys_82: -1.80018430e-16 - art_sys_83: -3.45405023e-15 - art_sys_84: -2.09233218e-16 - art_sys_85: -2.00421776e-16 - art_sys_86: -2.45098049e-12 - art_sys_87: 4.41801061e-17 - art_sys_88: 5.22275698e-13 - art_sys_89: -3.94409798e-12 - art_sys_90: -7.02942346e-13 - art_sys_91: -1.35799037e-14 - art_sys_92: -9.34692108e-12 - art_sys_93: 1.64064963e-18 - art_sys_94: 1.49504450e-11 - art_sys_95: -6.45401908e-13 - art_sys_96: 3.43549838e-11 - art_sys_97: 2.06039482e-11 - art_sys_98: 1.86343145e-10 - art_sys_99: 9.10161508e-18 - art_sys_100: -2.97567344e-12 - art_sys_101: -1.86844164e-10 - art_sys_102: 1.68485425e-09 - art_sys_103: 4.89624899e-12 - art_sys_104: 9.83865491e-17 - art_sys_105: -5.13361995e-09 - art_sys_106: -2.41254126e-12 - art_sys_107: 3.43756474e-12 - art_sys_108: -5.52275603e-13 - art_sys_109: -3.74447870e-11 - art_sys_110: 4.18113295e-10 - art_sys_111: 7.89542613e-09 - art_sys_112: 1.26971291e-09 - art_sys_113: 2.73219468e-13 - art_sys_114: 6.11746250e-08 - art_sys_115: 3.04847846e-12 - art_sys_116: -4.19237368e-10 - art_sys_117: -1.52301900e-09 - art_sys_118: 1.16177045e-08 - art_sys_119: -3.66324000e-07 - art_sys_120: 1.27382294e-09 - art_sys_121: 5.22623369e-11 - art_sys_122: 3.81375865e-07 - art_sys_123: 1.40459797e-06 - art_sys_124: -8.61832585e-11 - art_sys_125: -5.26460800e-09 - art_sys_126: 4.01272236e-10 - art_sys_127: 2.70793077e-06 - art_sys_128: -4.13588520e-12 - art_sys_129: -3.28473395e-06 - art_sys_130: -1.65990380e-09 - art_sys_131: 1.29552269e-08 - art_sys_132: -9.31286571e-06 - art_sys_133: -2.45666259e-08 - art_sys_134: -4.46719799e-11 - art_sys_135: -4.61241031e-06 - art_sys_136: 4.95829171e-09 - art_sys_137: -2.28899311e-13 - art_sys_138: -1.97901999e-15 - art_sys_139: 1.34983930e-06 - art_sys_140: 1.97394506e-07 - art_sys_141: -2.75286031e-08 - art_sys_142: -2.71110481e-09 - art_sys_143: -1.37045793e-12 - art_sys_144: -2.37360409e-12 - art_sys_145: 3.57351720e-13 - art_sys_146: -0.0 - art_sys_147: 4.34854189e-11 - art_sys_148: -1.71453745e-09 - art_sys_149: -1.71453745e-09 - art_sys_150: 1.43461557e-09 - art_sys_151: 1.43461557e-09 - art_sys_152: -2.98427763e-10 - art_sys_153: -2.29193190e-10 - art_sys_154: 1.27904584e-13 - art_sys_155: -2.11511325e-22 - art_sys_156: -6.77242070e-26 - art_sys_157: -9.77751746e-26 - art_sys_158: 0.0 - art_sys_159: -2.37799894e-12 - art_sys_160: 2.17390199e-13 - art_sys_161: -5.66841565e-13 - art_sys_162: 1.78097096e-14 - art_sys_163: -2.29696598e-12 - art_sys_164: -4.25868281e-12 - art_sys_165: -2.58072836e-14 - art_sys_166: -9.45331898e-21 - art_sys_167: -1.34588870e-20 - art_sys_168: 1.06329757e-21 - art_sys_169: -4.25999037e-22 - art_sys_170: -8.25635015e-22 - art_sys_171: 5.42092284e-22 - art_sys_172: 1.65703493e-22 - art_sys_173: -8.35298181e-23 - art_sys_174: -2.21678407e-23 - art_sys_175: -7.90394827e-25 - art_sys_176: -1.13187051e-24 - art_sys_177: 8.16727265e-24 - art_sys_178: -2.91735841e-24 - art_sys_179: 1.69717109e-24 - art_sys_180: 4.39827131e-25 - art_sys_181: -6.11708106e-26 - art_sys_182: -3.00842551e-25 - art_sys_183: 3.68297024e-27 - art_sys_184: -1.89270962e-28 - art_sys_185: 5.41195197e-29 + art_sys_20: -1.56102406e-38 + art_sys_21: -1.44407145e-33 + art_sys_22: -4.89748760e-38 + art_sys_23: -2.18675276e-22 + art_sys_24: -7.36418650e-32 + art_sys_25: 1.14050340e-20 + art_sys_26: 2.66799906e-20 + art_sys_27: -1.93684343e-29 + art_sys_28: 2.58816671e-31 + art_sys_29: -1.68332584e-27 + art_sys_30: 2.64942418e-19 + art_sys_31: -1.53866461e-29 + art_sys_32: 1.74696104e-26 + art_sys_33: 5.79735241e-18 + art_sys_34: -4.07032540e-18 + art_sys_35: -9.08932101e-29 + art_sys_36: -3.95636267e-15 + art_sys_37: 3.33498537e-15 + art_sys_38: -4.29134224e-15 + art_sys_39: 1.92992687e-16 + art_sys_40: 2.09968257e-16 + art_sys_41: 1.25496231e-17 + art_sys_42: -5.81091413e-17 + art_sys_43: 3.72809810e-17 + art_sys_44: -4.09606690e-17 + art_sys_45: 2.22492508e-16 + art_sys_46: 2.35417961e-16 + art_sys_47: -4.08666435e-20 + art_sys_48: -4.36512138e-17 + art_sys_49: 8.69936333e-18 + art_sys_50: 1.55346887e-16 + art_sys_51: -1.96420114e-16 + art_sys_52: -2.75689434e-25 + art_sys_53: -1.87590810e-16 + art_sys_54: 8.28980609e-19 + art_sys_55: 1.57000576e-15 + art_sys_56: -2.21617262e-24 + art_sys_57: -3.12971828e-16 + art_sys_58: 9.50391974e-17 + art_sys_59: -5.35812847e-16 + art_sys_60: 2.97452838e-19 + art_sys_61: -8.00419651e-17 + art_sys_62: 1.65218280e-23 + art_sys_63: 7.46608552e-18 + art_sys_64: 6.25258000e-14 + art_sys_65: 2.68096603e-14 + art_sys_66: 2.01552234e-15 + art_sys_67: 4.84099429e-15 + art_sys_68: 2.46069853e-16 + art_sys_69: -1.63843643e-17 + art_sys_70: 2.32365951e-16 + art_sys_71: -4.23396606e-16 + art_sys_72: 8.67636794e-18 + art_sys_73: -4.93383636e-17 + art_sys_74: 5.97364424e-17 + art_sys_75: 1.24722421e-17 + art_sys_76: 2.78274169e-14 + art_sys_77: -1.21457453e-15 + art_sys_78: -6.77593192e-16 + art_sys_79: 2.09332796e-17 + art_sys_80: 2.87378589e-15 + art_sys_81: -6.69069921e-18 + art_sys_82: 5.58725475e-17 + art_sys_83: 1.47676337e-15 + art_sys_84: -4.87193495e-16 + art_sys_85: 2.20345215e-16 + art_sys_86: 2.94916098e-16 + art_sys_87: -1.18372190e-17 + art_sys_88: 1.05722345e-15 + art_sys_89: 1.05154573e-16 + art_sys_90: -3.05997086e-15 + art_sys_91: 7.02986118e-13 + art_sys_92: 2.25295265e-17 + art_sys_93: 1.74678759e-17 + art_sys_94: -2.71175657e-13 + art_sys_95: -1.86297368e-14 + art_sys_96: 9.34654135e-12 + art_sys_97: -4.09610539e-18 + art_sys_98: -2.19434765e-14 + art_sys_99: 1.49432713e-11 + art_sys_100: -1.31898876e-13 + art_sys_101: 1.85389781e-10 + art_sys_102: 9.67438959e-12 + art_sys_103: 5.56360075e-18 + art_sys_104: 1.61269759e-10 + art_sys_105: 1.63029904e-11 + art_sys_106: -1.73004341e-09 + art_sys_107: -2.11877181e-11 + art_sys_108: 2.48245316e-11 + art_sys_109: -1.96587149e-12 + art_sys_110: -1.01903544e-10 + art_sys_111: -5.30419251e-09 + art_sys_112: 8.55570502e-12 + art_sys_113: -1.87141830e-13 + art_sys_114: -1.95595022e-13 + art_sys_115: 7.90433244e-09 + art_sys_116: -1.25961873e-09 + art_sys_117: -7.52357941e-13 + art_sys_118: 6.12643664e-08 + art_sys_119: 1.49744808e-10 + art_sys_120: -2.69208040e-10 + art_sys_121: 4.37160417e-13 + art_sys_122: -1.67104899e-09 + art_sys_123: -7.65503563e-10 + art_sys_124: -3.66219320e-07 + art_sys_125: 1.22545530e-13 + art_sys_126: 5.15267874e-10 + art_sys_127: -2.36383832e-10 + art_sys_128: -3.81573101e-07 + art_sys_129: -1.93767784e-13 + art_sys_130: 2.19772189e-09 + art_sys_131: 2.31752246e-12 + art_sys_132: -1.40123961e-06 + art_sys_133: -4.26353311e-09 + art_sys_134: 1.14025468e-08 + art_sys_135: -2.70430524e-06 + art_sys_136: -4.91702121e-13 + art_sys_137: 2.03517903e-10 + art_sys_138: -3.28672245e-06 + art_sys_139: -3.55859557e-09 + art_sys_140: 4.31831697e-13 + art_sys_141: 3.31165024e-10 + art_sys_142: 9.36191781e-06 + art_sys_143: -3.79229831e-10 + art_sys_144: -6.09942195e-12 + art_sys_145: -4.60850912e-06 + art_sys_146: 2.70841482e-10 + art_sys_147: -3.58047842e-12 + art_sys_148: -3.41549779e-12 + art_sys_149: 1.38808696e-06 + art_sys_150: -3.93923581e-08 + art_sys_151: -1.45580003e-09 + art_sys_152: 3.22406545e-11 + art_sys_153: -4.07931728e-09 + art_sys_154: 6.05903876e-15 + art_sys_155: 1.63186914e-11 + art_sys_156: -0.0 + art_sys_157: 9.51248258e-09 + art_sys_158: -0.0 + art_sys_159: -1.69076221e-09 + art_sys_160: 1.99684862e-10 + art_sys_161: 1.99753961e-10 + art_sys_162: 1.99753961e-10 + art_sys_163: 1.99275157e-10 + art_sys_164: 1.99275157e-10 + art_sys_165: -2.25875701e-24 + art_sys_166: 7.50385970e-25 + art_sys_167: 0.0 + art_sys_168: -1.06944313e-20 + art_sys_169: -3.66399383e-21 + art_sys_170: 9.24381669e-22 + art_sys_171: -1.83934082e-21 + art_sys_172: 5.68391030e-23 + art_sys_173: 3.91996431e-23 + art_sys_174: 3.28670125e-23 + art_sys_175: 6.77299856e-24 + art_sys_176: 5.00688479e-24 + art_sys_177: 1.36068737e-24 + art_sys_178: 1.87996600e-24 + art_sys_179: -5.16174388e-24 + art_sys_180: -4.41937442e-23 + art_sys_181: -3.27949594e-24 + art_sys_182: -7.53790876e-25 + art_sys_183: 8.21365690e-27 + art_sys_184: 1.40337508e-27 + art_sys_185: 2.84149643e-27 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -13916,191 +13916,191 @@ bins: RelativeStatFSR-: -3.27886810e-07 luminosity_uncertainty: 4.77097400e-06 uncorrelated_uncertainty: 1.83499000e-06 -- art_sys_1: 1.22217408e-63 - art_sys_2: 1.81372950e-51 - art_sys_3: -3.41447886e-51 - art_sys_4: 1.33090872e-31 - art_sys_5: -3.12673118e-45 - art_sys_6: -1.32479963e-48 - art_sys_7: -6.29779359e-30 - art_sys_8: -1.47022716e-44 - art_sys_9: 4.29638954e-29 - art_sys_10: -4.67604841e-46 - art_sys_11: 7.00871391e-42 +- art_sys_1: -6.89579695e-62 + art_sys_2: 2.59706638e-50 + art_sys_3: 4.11902534e-51 + art_sys_4: -1.33090872e-31 + art_sys_5: 8.11540842e-46 + art_sys_6: -8.45945329e-49 + art_sys_7: 6.29779359e-30 + art_sys_8: -2.22738440e-44 + art_sys_9: -4.29638954e-29 + art_sys_10: 1.88837789e-47 + art_sys_11: -8.84719903e-43 art_sys_12: -2.58088389e-28 - art_sys_13: -1.91607572e-42 + art_sys_13: -2.18357016e-41 art_sys_14: -7.47915044e-26 - art_sys_15: -5.58111478e-39 - art_sys_16: 6.30548225e-25 - art_sys_17: -3.47082253e-41 - art_sys_18: -1.09127387e-36 + art_sys_15: -2.41528799e-39 + art_sys_16: -6.30548225e-25 + art_sys_17: -2.86059040e-41 + art_sys_18: 1.12559957e-36 art_sys_19: 2.11661720e-24 - art_sys_20: -2.27162172e-39 - art_sys_21: -2.73244878e-35 - art_sys_22: -5.08930212e-24 - art_sys_23: -4.44894549e-39 - art_sys_24: -6.11226471e-33 - art_sys_25: 6.41957593e-16 - art_sys_26: 9.33077699e-16 - art_sys_27: -7.93248173e-16 - art_sys_28: -4.64984245e-22 - art_sys_29: -9.72562592e-22 - art_sys_30: -1.73894707e-16 - art_sys_31: 1.01973787e-16 - art_sys_32: -1.34099972e-16 - art_sys_33: 8.65734945e-17 - art_sys_34: -4.07114996e-30 - art_sys_35: 2.18197065e-33 - art_sys_36: -9.70881969e-30 - art_sys_37: 3.94180657e-22 - art_sys_38: 5.23457011e-17 - art_sys_39: -5.83581082e-31 - art_sys_40: -9.70095642e-28 - art_sys_41: 8.48565759e-20 - art_sys_42: -2.51195644e-19 - art_sys_43: 1.48901434e-17 - art_sys_44: -8.94276169e-18 - art_sys_45: 1.09827739e-16 - art_sys_46: -3.78525097e-28 - art_sys_47: 3.99960255e-23 - art_sys_48: -9.44346141e-19 - art_sys_49: 4.37127318e-14 - art_sys_50: -4.93243394e-14 - art_sys_51: 1.94963174e-14 - art_sys_52: -9.25102881e-15 - art_sys_53: -5.07704166e-15 - art_sys_54: 4.82067326e-16 - art_sys_55: 5.93833415e-17 - art_sys_56: 8.02390394e-17 - art_sys_57: 1.03667773e-20 - art_sys_58: 3.72589321e-15 - art_sys_59: 7.21547073e-16 - art_sys_60: -2.62011294e-17 - art_sys_61: -4.17076348e-25 - art_sys_62: -9.64775586e-20 - art_sys_63: -8.71208536e-17 - art_sys_64: 1.79030143e-17 - art_sys_65: -2.87226929e-17 - art_sys_66: -1.07040313e-16 - art_sys_67: 4.52743941e-26 - art_sys_68: -2.68909112e-17 - art_sys_69: -1.89390364e-17 - art_sys_70: 2.11196209e-16 - art_sys_71: -5.34926355e-20 - art_sys_72: -6.75162299e-25 - art_sys_73: 2.56774108e-14 - art_sys_74: -4.60363273e-14 - art_sys_75: -1.76227141e-15 - art_sys_76: -2.65444318e-16 - art_sys_77: 6.10049299e-21 - art_sys_78: 1.43616779e-17 - art_sys_79: -2.29061049e-15 - art_sys_80: 1.51404868e-16 - art_sys_81: -1.67879739e-16 - art_sys_82: -3.43312330e-16 - art_sys_83: 1.29712484e-16 - art_sys_84: 8.97391255e-16 - art_sys_85: 6.54859892e-16 - art_sys_86: 8.77712890e-13 - art_sys_87: 1.73820246e-18 - art_sys_88: -7.95197162e-13 - art_sys_89: -1.85963180e-12 - art_sys_90: 9.45167573e-14 - art_sys_91: -2.16863551e-16 - art_sys_92: -2.41702329e-13 - art_sys_93: 3.52224010e-20 - art_sys_94: -1.61436262e-12 - art_sys_95: -1.17159276e-14 - art_sys_96: 2.82803633e-12 - art_sys_97: 6.91582160e-14 - art_sys_98: 1.58538096e-12 - art_sys_99: -1.11737164e-18 - art_sys_100: -2.24173478e-13 - art_sys_101: -2.67968155e-11 - art_sys_102: -4.90466776e-11 - art_sys_103: 1.20618311e-12 - art_sys_104: 4.95223067e-18 - art_sys_105: -2.12591656e-10 - art_sys_106: -4.51022123e-13 - art_sys_107: -7.32496884e-11 - art_sys_108: -5.96350205e-12 - art_sys_109: -1.08831457e-09 - art_sys_110: -4.39686597e-10 - art_sys_111: -9.63708890e-10 - art_sys_112: -1.54502925e-09 - art_sys_113: 8.17328674e-12 - art_sys_114: 6.88834269e-10 - art_sys_115: 8.10304543e-10 - art_sys_116: 2.63531127e-10 - art_sys_117: 7.76040965e-09 - art_sys_118: 5.44021896e-09 - art_sys_119: 4.15382391e-09 - art_sys_120: -9.75062500e-10 - art_sys_121: -8.16283394e-09 - art_sys_122: 3.87374498e-08 - art_sys_123: -4.35353671e-08 - art_sys_124: 3.27968558e-09 - art_sys_125: -3.05968728e-09 - art_sys_126: -3.24771002e-10 - art_sys_127: 1.59040519e-07 - art_sys_128: -9.05422252e-09 - art_sys_129: 7.33353483e-08 - art_sys_130: -5.11034303e-09 - art_sys_131: 1.07754877e-09 - art_sys_132: -1.09438739e-06 - art_sys_133: 3.49425509e-08 - art_sys_134: 1.96460959e-11 - art_sys_135: -2.76821854e-06 - art_sys_136: 1.57073172e-08 - art_sys_137: -4.56730657e-12 - art_sys_138: 1.02112970e-16 - art_sys_139: -3.86546943e-06 - art_sys_140: -5.73912965e-07 - art_sys_141: 1.33333146e-07 - art_sys_142: -5.08594902e-08 - art_sys_143: 1.94065774e-12 - art_sys_144: 1.09334569e-11 - art_sys_145: 4.73023747e-11 - art_sys_146: -0.0 - art_sys_147: 6.32986719e-09 - art_sys_148: -7.75579560e-08 - art_sys_149: -7.75579560e-08 - art_sys_150: -3.29054411e-10 - art_sys_151: -3.29054411e-10 - art_sys_152: 1.45210220e-07 - art_sys_153: -1.18104486e-08 - art_sys_154: -9.06509329e-13 - art_sys_155: -4.16636248e-20 - art_sys_156: 8.22994814e-25 - art_sys_157: -4.93313584e-25 + art_sys_20: -3.68921632e-40 + art_sys_21: -2.77812109e-35 + art_sys_22: -6.29321332e-40 + art_sys_23: -5.08930210e-24 + art_sys_24: -1.43483701e-34 + art_sys_25: 4.64984245e-22 + art_sys_26: -9.72562590e-22 + art_sys_27: -1.80194101e-30 + art_sys_28: -1.10085672e-33 + art_sys_29: -5.56547205e-30 + art_sys_30: -3.94180755e-22 + art_sys_31: -1.76533960e-31 + art_sys_32: 4.96318972e-28 + art_sys_33: 8.48565706e-20 + art_sys_34: -2.51195588e-19 + art_sys_35: 1.43007367e-29 + art_sys_36: -9.05234154e-15 + art_sys_37: -3.83718649e-16 + art_sys_38: -2.00969579e-15 + art_sys_39: -2.91609224e-17 + art_sys_40: -3.30414615e-17 + art_sys_41: -9.15123304e-19 + art_sys_42: 2.86550769e-17 + art_sys_43: -7.23251452e-17 + art_sys_44: 1.69819164e-17 + art_sys_45: -8.79523249e-17 + art_sys_46: -1.36551416e-16 + art_sys_47: -1.18433350e-22 + art_sys_48: 9.46390322e-19 + art_sys_49: 2.24938670e-20 + art_sys_50: -6.61624902e-17 + art_sys_51: 1.18747254e-16 + art_sys_52: -5.01945495e-27 + art_sys_53: -2.66308207e-17 + art_sys_54: 1.56362720e-19 + art_sys_55: 1.77660458e-17 + art_sys_56: -9.73971607e-26 + art_sys_57: 2.09327634e-16 + art_sys_58: -8.47258823e-17 + art_sys_59: -2.11329374e-16 + art_sys_60: 1.90336143e-20 + art_sys_61: 7.29017452e-17 + art_sys_62: 3.83349201e-24 + art_sys_63: 2.67495522e-20 + art_sys_64: -2.41046306e-14 + art_sys_65: 2.24750745e-14 + art_sys_66: 1.40597421e-14 + art_sys_67: -5.31006338e-15 + art_sys_68: 1.23567760e-15 + art_sys_69: 7.72258097e-16 + art_sys_70: -1.09366330e-15 + art_sys_71: -5.28497285e-16 + art_sys_72: -1.00899088e-16 + art_sys_73: -3.88612477e-17 + art_sys_74: -8.17692494e-17 + art_sys_75: 5.29021888e-17 + art_sys_76: -3.34730666e-14 + art_sys_77: 4.71494734e-14 + art_sys_78: -1.94242863e-14 + art_sys_79: 4.28551640e-17 + art_sys_80: 2.71339073e-15 + art_sys_81: -3.61271812e-17 + art_sys_82: 3.76843608e-18 + art_sys_83: 1.94797700e-16 + art_sys_84: -4.79589907e-16 + art_sys_85: -9.63998513e-16 + art_sys_86: -1.05243932e-16 + art_sys_87: -2.92158116e-17 + art_sys_88: -1.92218467e-17 + art_sys_89: -3.13999006e-17 + art_sys_90: -3.64384177e-15 + art_sys_91: -9.45154019e-14 + art_sys_92: 1.27785700e-17 + art_sys_93: 1.46310140e-18 + art_sys_94: 1.90570422e-14 + art_sys_95: -1.20495870e-15 + art_sys_96: 2.41647372e-13 + art_sys_97: -8.60967140e-20 + art_sys_98: -9.51218927e-16 + art_sys_99: -1.63308104e-12 + art_sys_100: 3.25663790e-15 + art_sys_101: 1.53007458e-12 + art_sys_102: -2.69538881e-13 + art_sys_103: -2.33349732e-18 + art_sys_104: 2.38133605e-11 + art_sys_105: -1.90865481e-11 + art_sys_106: 4.51062673e-11 + art_sys_107: -2.29229764e-13 + art_sys_108: -3.03436368e-11 + art_sys_109: 1.93425081e-11 + art_sys_110: 8.84257820e-12 + art_sys_111: -2.29073455e-10 + art_sys_112: 4.58951527e-13 + art_sys_113: -8.07919505e-15 + art_sys_114: 7.32539614e-13 + art_sys_115: -9.62472312e-10 + art_sys_116: -1.27314214e-09 + art_sys_117: 1.12951301e-11 + art_sys_118: 6.92670756e-10 + art_sys_119: 2.45470138e-10 + art_sys_120: 1.94824644e-11 + art_sys_121: -6.57766014e-12 + art_sys_122: 7.76013190e-09 + art_sys_123: 1.13497496e-09 + art_sys_124: 4.15128543e-09 + art_sys_125: -1.74191208e-12 + art_sys_126: 1.44067031e-10 + art_sys_127: 1.89649271e-09 + art_sys_128: -3.88768301e-08 + art_sys_129: 2.89863684e-12 + art_sys_130: -5.89436727e-09 + art_sys_131: -3.38236573e-11 + art_sys_132: 3.99502401e-08 + art_sys_133: 6.91016086e-09 + art_sys_134: 1.23378120e-08 + art_sys_135: -1.63448469e-07 + art_sys_136: -4.40055827e-12 + art_sys_137: 3.95073134e-09 + art_sys_138: 6.98546821e-08 + art_sys_139: 2.46290593e-09 + art_sys_140: -1.67878288e-12 + art_sys_141: 2.14574115e-09 + art_sys_142: 1.10548008e-06 + art_sys_143: 3.74817879e-10 + art_sys_144: 9.28228769e-11 + art_sys_145: -2.81222114e-06 + art_sys_146: 1.47273301e-09 + art_sys_147: -1.88216246e-12 + art_sys_148: 1.67876681e-11 + art_sys_149: -3.84273065e-06 + art_sys_150: 9.81207059e-08 + art_sys_151: 2.68279222e-08 + art_sys_152: -5.20221039e-11 + art_sys_153: 2.41161096e-08 + art_sys_154: 1.37899215e-15 + art_sys_155: 1.33404933e-10 + art_sys_156: 0.0 + art_sys_157: -3.56393094e-07 art_sys_158: -0.0 - art_sys_159: -9.18264911e-11 - art_sys_160: 1.29169115e-11 - art_sys_161: 4.78557910e-12 - art_sys_162: 1.09754985e-12 - art_sys_163: 1.50482764e-10 - art_sys_164: -8.67948457e-11 - art_sys_165: -9.44552297e-14 - art_sys_166: -4.58481520e-19 - art_sys_167: -5.73200980e-19 - art_sys_168: 9.67710861e-20 - art_sys_169: -1.09931881e-20 - art_sys_170: -2.32108368e-20 - art_sys_171: 1.49150533e-20 - art_sys_172: 3.38022568e-21 - art_sys_173: -2.26919327e-21 - art_sys_174: -7.37391499e-22 - art_sys_175: -3.21705666e-23 - art_sys_176: -2.64531417e-24 - art_sys_177: 2.06794991e-22 - art_sys_178: -8.49344709e-23 - art_sys_179: 4.86683782e-23 - art_sys_180: 1.26044541e-23 - art_sys_181: -1.72587047e-24 - art_sys_182: -1.69678893e-23 - art_sys_183: 2.06728847e-26 - art_sys_184: -3.35888961e-27 - art_sys_185: -1.42995498e-27 + art_sys_159: 2.67187830e-08 + art_sys_160: -6.64524156e-09 + art_sys_161: -1.82818532e-10 + art_sys_162: -1.82818532e-10 + art_sys_163: -2.10885746e-09 + art_sys_164: -2.10885746e-09 + art_sys_165: 2.07375851e-23 + art_sys_166: -6.71459501e-24 + art_sys_167: -0.0 + art_sys_168: 1.43292092e-19 + art_sys_169: 5.51914619e-20 + art_sys_170: -1.67746356e-20 + art_sys_171: 2.81933773e-20 + art_sys_172: -6.09445687e-22 + art_sys_173: -6.47901881e-22 + art_sys_174: -5.06717398e-22 + art_sys_175: -1.02038008e-22 + art_sys_176: -8.08501983e-23 + art_sys_177: -2.02421830e-23 + art_sys_178: -2.59930132e-23 + art_sys_179: -8.19470651e-23 + art_sys_180: 6.38666473e-22 + art_sys_181: 5.26811517e-23 + art_sys_182: 1.14676672e-23 + art_sys_183: -1.52422068e-25 + art_sys_184: 4.86615285e-26 + art_sys_185: 1.27621022e-26 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -14207,191 +14207,191 @@ bins: RelativeStatFSR-: -1.39470547e-07 luminosity_uncertainty: 1.87299840e-06 uncorrelated_uncertainty: 7.20384000e-07 -- art_sys_1: 5.12133818e-67 - art_sys_2: 7.55338296e-55 - art_sys_3: -1.77425354e-54 - art_sys_4: 5.54264783e-35 - art_sys_5: -1.41161997e-48 - art_sys_6: -5.53432878e-52 - art_sys_7: -2.91529823e-33 - art_sys_8: -6.19527080e-48 - art_sys_9: 1.82960081e-32 - art_sys_10: -2.03981694e-49 - art_sys_11: 5.58567676e-45 +- art_sys_1: -2.87168878e-65 + art_sys_2: 1.08156360e-53 + art_sys_3: 1.50778153e-54 + art_sys_4: -5.54264783e-35 + art_sys_5: 3.69467840e-49 + art_sys_6: -3.54584755e-52 + art_sys_7: 2.91529823e-33 + art_sys_8: -7.41318783e-48 + art_sys_9: -1.82960081e-32 + art_sys_10: -7.35551175e-51 + art_sys_11: -5.67709341e-46 art_sys_12: -2.40410061e-31 - art_sys_13: -1.76218905e-45 + art_sys_13: -2.06840852e-44 art_sys_14: -7.08121482e-29 - art_sys_15: -3.42770634e-42 - art_sys_16: 4.93175329e-28 - art_sys_17: -3.22484992e-44 - art_sys_18: -6.29741670e-40 + art_sys_15: -1.04697564e-42 + art_sys_16: -4.93175329e-28 + art_sys_17: -2.31642098e-44 + art_sys_18: 1.02731290e-39 art_sys_19: 1.75920251e-27 - art_sys_20: -1.64356122e-42 - art_sys_21: -1.91354840e-38 - art_sys_22: -3.66835274e-27 - art_sys_23: -1.55810430e-42 - art_sys_24: -9.65322625e-36 - art_sys_25: 2.34451754e-15 - art_sys_26: 6.13051698e-15 - art_sys_27: 3.49135030e-16 - art_sys_28: -6.01526411e-25 - art_sys_29: -2.44949321e-24 - art_sys_30: 2.66388592e-16 - art_sys_31: 2.43877809e-16 - art_sys_32: -2.37293670e-16 - art_sys_33: 8.81088927e-17 - art_sys_34: -1.87545854e-32 - art_sys_35: 4.83313851e-34 - art_sys_36: 7.62311955e-32 - art_sys_37: 2.73506151e-24 - art_sys_38: 4.27764826e-17 - art_sys_39: 1.81070828e-33 - art_sys_40: 3.53578754e-30 - art_sys_41: -1.36862479e-22 - art_sys_42: 6.87901061e-22 - art_sys_43: 5.77850986e-17 - art_sys_44: -1.55431292e-16 - art_sys_45: 3.47974831e-16 - art_sys_46: 1.01830927e-30 - art_sys_47: 3.51861404e-24 - art_sys_48: 2.17601379e-21 - art_sys_49: 1.07163174e-13 - art_sys_50: -3.53388951e-15 - art_sys_51: 1.35659304e-14 - art_sys_52: -3.98895177e-14 - art_sys_53: -1.27268615e-14 - art_sys_54: 8.14999024e-15 - art_sys_55: 2.04166473e-16 - art_sys_56: 2.95265168e-16 - art_sys_57: 1.05640564e-20 - art_sys_58: 1.16514744e-14 - art_sys_59: 5.67805021e-15 - art_sys_60: -1.67273090e-18 - art_sys_61: -6.33993676e-26 - art_sys_62: -4.11901923e-19 - art_sys_63: -3.28106233e-16 - art_sys_64: 3.68177435e-19 - art_sys_65: -5.84320980e-16 - art_sys_66: 2.78653690e-16 - art_sys_67: 2.36778569e-26 - art_sys_68: -1.11682434e-16 - art_sys_69: -6.83263621e-17 - art_sys_70: -1.24754232e-18 - art_sys_71: -4.05266104e-21 - art_sys_72: -9.40713644e-24 - art_sys_73: -3.06386795e-14 - art_sys_74: -1.94629346e-14 - art_sys_75: -1.34676171e-14 - art_sys_76: 6.22716144e-17 - art_sys_77: 3.94485439e-20 - art_sys_78: 7.78721088e-17 - art_sys_79: 2.02142296e-15 - art_sys_80: 1.15845137e-16 - art_sys_81: -5.38468246e-16 - art_sys_82: 1.00558416e-15 - art_sys_83: 1.86200345e-16 - art_sys_84: 1.16073822e-15 - art_sys_85: -2.43263514e-16 - art_sys_86: 1.84889682e-12 - art_sys_87: -1.05205090e-18 - art_sys_88: -2.88439667e-12 - art_sys_89: -1.03013361e-12 - art_sys_90: 1.34290677e-16 - art_sys_91: 8.00162480e-17 - art_sys_92: 8.41361085e-16 - art_sys_93: -3.67373993e-20 - art_sys_94: -7.70561492e-15 - art_sys_95: 3.84438593e-15 - art_sys_96: 1.99666608e-11 - art_sys_97: -2.43057947e-13 - art_sys_98: 9.01333398e-15 - art_sys_99: -1.10636649e-18 - art_sys_100: 5.58407185e-14 - art_sys_101: -7.42852600e-13 - art_sys_102: -2.85664669e-12 - art_sys_103: 1.82477798e-12 - art_sys_104: 3.12479429e-17 - art_sys_105: 8.97687131e-12 - art_sys_106: -1.15380648e-13 - art_sys_107: 3.36823588e-11 - art_sys_108: -2.77617774e-11 - art_sys_109: -2.74357838e-09 - art_sys_110: -1.13488025e-09 - art_sys_111: -1.42909296e-11 - art_sys_112: -3.68704378e-09 - art_sys_113: 2.05240699e-11 - art_sys_114: -7.03342330e-11 - art_sys_115: 1.01527487e-09 - art_sys_116: 6.61736551e-10 - art_sys_117: 1.22865866e-10 - art_sys_118: 4.69420736e-09 - art_sys_119: 1.19328904e-09 - art_sys_120: -3.14089657e-09 - art_sys_121: -1.09836805e-08 - art_sys_122: -1.07634595e-09 - art_sys_123: -2.44301708e-08 - art_sys_124: 6.71554372e-10 - art_sys_125: 3.70756510e-09 - art_sys_126: 1.81521972e-08 - art_sys_127: -4.84836935e-08 - art_sys_128: 6.83732344e-09 - art_sys_129: 7.60349179e-08 - art_sys_130: 2.30282401e-08 - art_sys_131: -6.46350759e-09 - art_sys_132: 4.20537856e-07 - art_sys_133: -1.86720620e-08 - art_sys_134: 3.92278262e-11 - art_sys_135: 8.72958008e-07 - art_sys_136: -2.33342957e-08 - art_sys_137: -3.33395878e-12 - art_sys_138: -1.12999251e-16 - art_sys_139: 1.33652048e-06 - art_sys_140: 2.07632688e-07 - art_sys_141: 7.27626248e-08 - art_sys_142: -1.35695736e-07 - art_sys_143: -3.61966417e-12 - art_sys_144: 5.51956856e-12 - art_sys_145: 1.09000879e-10 - art_sys_146: -0.0 - art_sys_147: 1.56930176e-08 - art_sys_148: -1.98654360e-07 - art_sys_149: -1.98654360e-07 - art_sys_150: 2.60407170e-08 - art_sys_151: 2.60407170e-08 - art_sys_152: 5.03493168e-07 - art_sys_153: -4.17906711e-08 - art_sys_154: 3.39955028e-12 - art_sys_155: -1.43924452e-19 - art_sys_156: 1.45345600e-24 - art_sys_157: -1.48704314e-24 - art_sys_158: -0.0 - art_sys_159: -2.25740488e-10 - art_sys_160: 3.06712488e-11 - art_sys_161: 6.91683300e-12 - art_sys_162: 2.63590493e-12 - art_sys_163: 2.87390705e-10 - art_sys_164: -2.41256439e-10 - art_sys_165: 1.88592811e-12 - art_sys_166: -1.10419620e-18 - art_sys_167: -1.41734854e-18 - art_sys_168: 2.25272927e-19 - art_sys_169: -2.43984712e-20 - art_sys_170: -5.80667564e-20 - art_sys_171: 3.78423943e-20 - art_sys_172: 8.93220444e-21 - art_sys_173: -5.76508685e-21 - art_sys_174: -1.83460568e-21 - art_sys_175: -7.85673303e-23 - art_sys_176: -1.50416314e-23 - art_sys_177: 5.29942233e-22 - art_sys_178: -2.14067312e-22 - art_sys_179: 1.22812054e-22 - art_sys_180: 3.20041141e-23 - art_sys_181: -4.36177192e-24 - art_sys_182: -4.04479546e-23 - art_sys_183: 7.21080326e-26 - art_sys_184: -7.57222268e-27 - art_sys_185: -3.08569831e-27 + art_sys_20: -2.80003066e-43 + art_sys_21: -1.98779648e-38 + art_sys_22: 2.38780051e-43 + art_sys_23: -3.66835267e-27 + art_sys_24: 2.92823507e-36 + art_sys_25: 6.01526410e-25 + art_sys_26: -2.44949322e-24 + art_sys_27: -3.12813684e-34 + art_sys_28: -3.94704888e-36 + art_sys_29: 4.52364105e-32 + art_sys_30: -2.73506078e-24 + art_sys_31: 2.02759159e-34 + art_sys_32: -1.62654015e-30 + art_sys_33: -1.36862476e-22 + art_sys_34: 6.87901694e-22 + art_sys_35: -6.47950762e-34 + art_sys_36: -3.79977672e-15 + art_sys_37: -1.79329159e-16 + art_sys_38: 1.32107058e-15 + art_sys_39: -8.34976247e-16 + art_sys_40: -1.63501006e-16 + art_sys_41: -6.06445224e-17 + art_sys_42: -1.72601534e-17 + art_sys_43: -1.06678659e-17 + art_sys_44: -2.50043116e-17 + art_sys_45: -5.40884481e-17 + art_sys_46: -2.64837785e-16 + art_sys_47: -7.53193909e-24 + art_sys_48: -1.76399588e-21 + art_sys_49: 1.54423272e-20 + art_sys_50: -1.12073853e-16 + art_sys_51: 2.00910032e-16 + art_sys_52: 3.51383157e-29 + art_sys_53: 1.79317739e-18 + art_sys_54: 5.60755624e-19 + art_sys_55: 2.72638091e-19 + art_sys_56: 1.17311677e-26 + art_sys_57: 2.58132698e-16 + art_sys_58: -1.00011260e-16 + art_sys_59: 3.12533979e-19 + art_sys_60: 7.00231964e-20 + art_sys_61: 7.38098292e-17 + art_sys_62: 6.17271978e-24 + art_sys_63: 1.97900012e-20 + art_sys_64: -3.62748044e-14 + art_sys_65: -6.88309012e-15 + art_sys_66: -1.22585523e-15 + art_sys_67: 2.36459521e-15 + art_sys_68: -5.18676278e-16 + art_sys_69: -1.55445765e-15 + art_sys_70: -1.12771958e-15 + art_sys_71: -7.14104838e-16 + art_sys_72: -1.95730241e-17 + art_sys_73: -4.03519550e-17 + art_sys_74: -6.94671367e-17 + art_sys_75: 5.34781602e-17 + art_sys_76: -8.78460801e-15 + art_sys_77: 1.18116736e-14 + art_sys_78: 5.76848589e-15 + art_sys_79: 3.70803503e-17 + art_sys_80: 2.81651684e-15 + art_sys_81: -2.67456770e-17 + art_sys_82: 3.60675909e-19 + art_sys_83: 1.12540322e-16 + art_sys_84: -3.65744086e-16 + art_sys_85: 3.95844888e-16 + art_sys_86: 2.59620649e-16 + art_sys_87: -2.18297429e-17 + art_sys_88: -8.10374184e-18 + art_sys_89: -2.48384714e-17 + art_sys_90: -4.83986927e-17 + art_sys_91: -1.32943857e-16 + art_sys_92: -3.76690524e-17 + art_sys_93: 1.29007019e-17 + art_sys_94: 4.90045052e-15 + art_sys_95: -2.03057963e-16 + art_sys_96: -9.36588047e-16 + art_sys_97: 2.45171107e-20 + art_sys_98: -1.68852461e-16 + art_sys_99: -3.77295872e-14 + art_sys_100: 1.44464454e-16 + art_sys_101: -2.16036036e-13 + art_sys_102: -3.07042376e-14 + art_sys_103: 1.67501701e-18 + art_sys_104: -7.58087622e-12 + art_sys_105: -5.56593423e-13 + art_sys_106: -1.00757483e-11 + art_sys_107: 2.04993601e-13 + art_sys_108: -1.19008938e-12 + art_sys_109: 1.05305971e-11 + art_sys_110: 2.27863923e-12 + art_sys_111: -4.19800170e-11 + art_sys_112: -4.65611952e-14 + art_sys_113: -1.46181599e-15 + art_sys_114: 3.14096196e-13 + art_sys_115: -1.09086993e-11 + art_sys_116: 4.72337715e-09 + art_sys_117: 6.42453843e-12 + art_sys_118: -5.64659624e-11 + art_sys_119: -4.83755875e-11 + art_sys_120: 4.91092352e-12 + art_sys_121: -3.74012888e-12 + art_sys_122: 1.10238140e-10 + art_sys_123: -3.62195468e-09 + art_sys_124: 1.18774612e-09 + art_sys_125: -9.95064908e-13 + art_sys_126: -3.16244186e-10 + art_sys_127: 1.00213492e-09 + art_sys_128: 5.90314914e-10 + art_sys_129: 1.63052030e-12 + art_sys_130: -2.06166405e-09 + art_sys_131: -1.89484264e-11 + art_sys_132: 1.49260558e-08 + art_sys_133: 1.25212712e-09 + art_sys_134: 9.39721499e-09 + art_sys_135: 3.75961032e-08 + art_sys_136: -3.75287883e-12 + art_sys_137: 2.56362035e-09 + art_sys_138: 1.27054197e-07 + art_sys_139: -6.80947159e-10 + art_sys_140: -6.47366925e-13 + art_sys_141: 1.09202339e-09 + art_sys_142: -4.71201038e-07 + art_sys_143: -1.98302052e-11 + art_sys_144: 5.51101888e-11 + art_sys_145: 8.61813828e-07 + art_sys_146: 8.21231437e-10 + art_sys_147: -1.45894166e-12 + art_sys_148: -3.97651531e-12 + art_sys_149: 1.41146015e-06 + art_sys_150: -4.76425063e-08 + art_sys_151: 1.62266209e-08 + art_sys_152: 6.10645109e-11 + art_sys_153: 1.10857818e-09 + art_sys_154: -2.04858747e-15 + art_sys_155: 2.29299498e-10 + art_sys_156: 0.0 + art_sys_157: -9.90156732e-07 + art_sys_158: 0.0 + art_sys_159: 1.51193402e-08 + art_sys_160: -2.32313958e-08 + art_sys_161: -1.07467296e-09 + art_sys_162: -1.07467296e-09 + art_sys_163: -2.52401955e-09 + art_sys_164: -2.52401955e-09 + art_sys_165: 2.60703556e-23 + art_sys_166: -8.60043241e-24 + art_sys_167: -0.0 + art_sys_168: 8.84844703e-20 + art_sys_169: 3.10072108e-20 + art_sys_170: -9.00293749e-21 + art_sys_171: 1.57781767e-20 + art_sys_172: -2.82893681e-22 + art_sys_173: -3.76519053e-22 + art_sys_174: -2.87766708e-22 + art_sys_175: -5.79163879e-23 + art_sys_176: -4.62148149e-23 + art_sys_177: -1.13685335e-23 + art_sys_178: -1.46607430e-23 + art_sys_179: -1.30466261e-22 + art_sys_180: 4.66087394e-22 + art_sys_181: 3.01506562e-23 + art_sys_182: 6.46034013e-24 + art_sys_183: -8.73482426e-26 + art_sys_184: 3.05127834e-26 + art_sys_185: 9.55435641e-27 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -14498,191 +14498,191 @@ bins: RelativeStatFSR-: -3.33428908e-08 luminosity_uncertainty: 3.92446600e-07 uncorrelated_uncertainty: 1.50941000e-07 -- art_sys_1: 6.69764515e-71 - art_sys_2: 9.61300100e-59 - art_sys_3: -4.09713201e-58 - art_sys_4: 7.05399113e-39 - art_sys_5: -2.59458761e-52 - art_sys_6: -7.17166045e-56 - art_sys_7: -5.59801509e-37 - art_sys_8: -1.01479662e-51 - art_sys_9: 3.06976053e-36 - art_sys_10: -3.55516901e-53 - art_sys_11: 1.74838826e-48 +- art_sys_1: -3.65394628e-69 + art_sys_2: 1.37647931e-57 + art_sys_3: 3.36939929e-59 + art_sys_4: -7.05399113e-39 + art_sys_5: 6.97087046e-53 + art_sys_6: -4.55268177e-56 + art_sys_7: 5.59801509e-37 + art_sys_8: -7.42088780e-52 + art_sys_9: -3.06976053e-36 + art_sys_10: 9.11223803e-55 + art_sys_11: -1.40403742e-49 art_sys_12: -7.68168717e-35 - art_sys_13: -5.85489941e-49 + art_sys_13: -6.96922764e-48 art_sys_14: -2.38535367e-32 - art_sys_15: -7.20462097e-46 - art_sys_16: 1.50058273e-31 - art_sys_17: -1.01857174e-47 - art_sys_18: 1.27908228e-42 - art_sys_19: 5.46666881e-31 - art_sys_20: -3.97709485e-46 - art_sys_21: 1.44136770e-41 - art_sys_22: -8.81109595e-31 - art_sys_23: 4.69720011e-47 - art_sys_24: -1.04031995e-38 - art_sys_25: -1.51788581e-14 - art_sys_26: 3.24700527e-15 - art_sys_27: 1.00741275e-16 - art_sys_28: -3.96789777e-28 - art_sys_29: -1.07506891e-27 - art_sys_30: -2.35495599e-15 - art_sys_31: -9.38481039e-17 - art_sys_32: -7.80956141e-17 - art_sys_33: -1.26189573e-16 - art_sys_34: 2.65354970e-33 - art_sys_35: -1.95970292e-33 - art_sys_36: -5.69561278e-33 - art_sys_37: -8.46878559e-27 - art_sys_38: -1.38672754e-16 - art_sys_39: 9.63523679e-35 - art_sys_40: -4.76549993e-31 - art_sys_41: -2.02362548e-25 - art_sys_42: 2.12790590e-24 - art_sys_43: 1.14506329e-17 - art_sys_44: -3.32959428e-16 - art_sys_45: 1.87189895e-16 - art_sys_46: -2.06194385e-33 - art_sys_47: -1.54017834e-26 - art_sys_48: 1.54833006e-23 - art_sys_49: 5.73275157e-14 - art_sys_50: 9.89335811e-15 - art_sys_51: -2.01582055e-14 - art_sys_52: 8.81781855e-14 - art_sys_53: 2.83746101e-14 - art_sys_54: -1.55090441e-14 - art_sys_55: 1.15297290e-16 - art_sys_56: 1.85054683e-16 - art_sys_57: -1.06035325e-22 - art_sys_58: -2.10768709e-14 - art_sys_59: -1.00838342e-14 - art_sys_60: 5.78663716e-20 - art_sys_61: -2.27638976e-26 - art_sys_62: 4.56597475e-19 - art_sys_63: -2.98180799e-16 - art_sys_64: 2.17077991e-18 - art_sys_65: 9.32111857e-16 - art_sys_66: -3.50698356e-16 - art_sys_67: 4.64235301e-27 - art_sys_68: -9.98094508e-17 - art_sys_69: -8.56050802e-17 - art_sys_70: -3.27777267e-19 - art_sys_71: -2.29142748e-21 - art_sys_72: -2.36134343e-25 - art_sys_73: 1.34654887e-14 - art_sys_74: 8.86007975e-15 - art_sys_75: 6.20772521e-15 - art_sys_76: 2.13731743e-16 - art_sys_77: 1.20152275e-19 - art_sys_78: 1.00136753e-16 - art_sys_79: 2.85129754e-15 - art_sys_80: -4.37216419e-16 - art_sys_81: 6.00166004e-16 - art_sys_82: 1.29455094e-16 - art_sys_83: -5.14887256e-16 - art_sys_84: 6.63690730e-16 - art_sys_85: 5.10251995e-18 - art_sys_86: 9.73240030e-13 - art_sys_87: -3.41875521e-19 - art_sys_88: -1.60323626e-12 - art_sys_89: -8.76699549e-13 - art_sys_90: -1.75570618e-17 - art_sys_91: -6.28820923e-17 - art_sys_92: -8.41215946e-17 - art_sys_93: -8.54303533e-22 - art_sys_94: -1.87704206e-14 - art_sys_95: 1.10245081e-15 - art_sys_96: 1.03120103e-11 - art_sys_97: -8.39091762e-14 - art_sys_98: 2.24152541e-13 - art_sys_99: -3.66067232e-20 - art_sys_100: 2.45537400e-14 - art_sys_101: -4.26579267e-12 - art_sys_102: -9.47719446e-12 - art_sys_103: 9.91610159e-13 - art_sys_104: 1.18040184e-18 - art_sys_105: 3.39092011e-11 - art_sys_106: -2.62154666e-14 - art_sys_107: 1.61786189e-11 - art_sys_108: 5.26306287e-11 - art_sys_109: 5.69741632e-09 - art_sys_110: -6.12582263e-10 - art_sys_111: 6.64053324e-13 - art_sys_112: -2.08232814e-09 - art_sys_113: -4.26263344e-11 - art_sys_114: 6.65396157e-13 - art_sys_115: 6.41318520e-10 - art_sys_116: 3.55310616e-10 - art_sys_117: -1.78019312e-11 - art_sys_118: 3.35369260e-09 - art_sys_119: -2.21956870e-10 - art_sys_120: -1.74254697e-09 - art_sys_121: 2.66935642e-08 - art_sys_122: -1.83081574e-10 - art_sys_123: -2.24792730e-09 - art_sys_124: -4.38683420e-09 - art_sys_125: 1.13684235e-09 - art_sys_126: -3.02616274e-08 - art_sys_127: -3.95440678e-10 - art_sys_128: -2.70391221e-09 - art_sys_129: -3.06342703e-08 - art_sys_130: -3.42496839e-08 - art_sys_131: 1.42741035e-08 - art_sys_132: -9.00376456e-08 - art_sys_133: -1.61813348e-09 - art_sys_134: -8.71104814e-11 - art_sys_135: -1.51577014e-07 - art_sys_136: 2.84556790e-08 - art_sys_137: 9.54802042e-12 - art_sys_138: -2.33704680e-17 - art_sys_139: -2.81719704e-07 - art_sys_140: -8.78809035e-08 - art_sys_141: -1.51997605e-07 - art_sys_142: 2.85860118e-07 - art_sys_143: 4.93669219e-12 - art_sys_144: -1.42196525e-11 - art_sys_145: -2.20704145e-10 - art_sys_146: 0.0 - art_sys_147: -2.32371874e-08 - art_sys_148: 3.27379027e-07 - art_sys_149: 3.27379027e-07 - art_sys_150: 4.64266111e-08 - art_sys_151: 4.64266111e-08 - art_sys_152: 2.83218875e-07 - art_sys_153: -1.11171615e-08 - art_sys_154: 2.35470107e-11 - art_sys_155: -5.95777474e-20 - art_sys_156: -1.01411010e-24 - art_sys_157: 2.29902850e-24 + art_sys_15: -8.40416094e-47 + art_sys_16: -1.50058273e-31 + art_sys_17: -7.11366936e-48 + art_sys_18: 9.26696722e-44 + art_sys_19: 5.46666879e-31 + art_sys_20: -7.38842962e-47 + art_sys_21: -3.51056234e-42 + art_sys_22: 2.25932946e-46 + art_sys_23: -8.81109584e-31 + art_sys_24: 1.80426329e-39 + art_sys_25: 3.96788168e-28 + art_sys_26: -1.07506738e-27 + art_sys_27: 1.08849222e-35 + art_sys_28: 7.59643514e-39 + art_sys_29: -1.40936446e-33 + art_sys_30: 8.46877797e-27 + art_sys_31: 6.90269771e-38 + art_sys_32: -1.62671600e-31 + art_sys_33: -2.02356929e-25 + art_sys_34: 2.12782174e-24 + art_sys_35: -8.20720055e-35 + art_sys_36: 7.45462257e-15 + art_sys_37: 4.34194130e-15 + art_sys_38: -1.96741037e-16 + art_sys_39: 7.10870433e-16 + art_sys_40: 6.26893206e-17 + art_sys_41: -5.95374385e-17 + art_sys_42: 4.47981499e-17 + art_sys_43: 4.05593732e-17 + art_sys_44: -3.57716535e-17 + art_sys_45: -1.20919779e-16 + art_sys_46: -1.58663416e-16 + art_sys_47: -2.58292189e-26 + art_sys_48: -1.44982540e-23 + art_sys_49: 1.61448795e-22 + art_sys_50: -6.00000808e-17 + art_sys_51: 8.90072135e-17 + art_sys_52: 1.56558521e-29 + art_sys_53: 7.54980488e-20 + art_sys_54: -8.48743929e-20 + art_sys_55: -1.22456733e-18 + art_sys_56: -5.41178843e-28 + art_sys_57: 2.00575738e-16 + art_sys_58: -7.35734740e-17 + art_sys_59: 1.73357174e-19 + art_sys_60: 2.40397830e-20 + art_sys_61: 7.73521393e-17 + art_sys_62: -2.05121292e-25 + art_sys_63: 8.36255553e-20 + art_sys_64: -2.91450116e-14 + art_sys_65: -5.56225611e-15 + art_sys_66: -7.08764696e-15 + art_sys_67: 4.04075826e-14 + art_sys_68: -1.14146221e-14 + art_sys_69: 1.17470298e-14 + art_sys_70: 1.49058942e-14 + art_sys_71: 1.05583596e-14 + art_sys_72: 9.53817479e-16 + art_sys_73: 6.06191281e-16 + art_sys_74: -1.00499492e-16 + art_sys_75: -1.16575905e-15 + art_sys_76: -3.66481396e-14 + art_sys_77: -7.19189062e-15 + art_sys_78: -1.65584646e-14 + art_sys_79: -5.99546229e-16 + art_sys_80: -1.56301247e-15 + art_sys_81: 5.33870101e-16 + art_sys_82: 2.47965749e-18 + art_sys_83: 1.34372548e-15 + art_sys_84: 5.35964989e-16 + art_sys_85: -5.05448843e-16 + art_sys_86: 4.40657158e-17 + art_sys_87: 4.43294745e-16 + art_sys_88: 1.84191311e-16 + art_sys_89: -5.05706959e-17 + art_sys_90: 1.95972542e-16 + art_sys_91: 1.33461267e-17 + art_sys_92: 3.43590542e-17 + art_sys_93: -1.47429926e-17 + art_sys_94: -1.78958344e-16 + art_sys_95: 3.86178253e-16 + art_sys_96: 2.43390675e-16 + art_sys_97: -1.10463302e-21 + art_sys_98: 3.79733326e-16 + art_sys_99: 6.78646128e-14 + art_sys_100: 3.28570771e-17 + art_sys_101: 3.67462892e-13 + art_sys_102: 6.52643506e-15 + art_sys_103: -1.94528277e-18 + art_sys_104: 1.51612122e-11 + art_sys_105: -1.99846715e-11 + art_sys_106: 2.18311267e-11 + art_sys_107: -1.76263804e-14 + art_sys_108: -3.24964075e-11 + art_sys_109: -1.86858632e-10 + art_sys_110: -8.90456812e-14 + art_sys_111: 8.78705997e-11 + art_sys_112: 2.73657215e-14 + art_sys_113: 3.10032744e-15 + art_sys_114: -5.31219442e-12 + art_sys_115: -3.18779534e-12 + art_sys_116: 1.46555689e-10 + art_sys_117: -1.14879152e-10 + art_sys_118: -1.41592976e-11 + art_sys_119: 1.90419091e-11 + art_sys_120: -3.58403263e-13 + art_sys_121: 6.69024695e-11 + art_sys_122: -3.55189920e-12 + art_sys_123: -6.98518578e-11 + art_sys_124: -2.37291565e-10 + art_sys_125: 1.76443374e-11 + art_sys_126: -8.39109922e-12 + art_sys_127: -1.76170408e-08 + art_sys_128: -7.86002612e-11 + art_sys_129: -2.94028273e-11 + art_sys_130: 3.27724075e-08 + art_sys_131: 3.42148161e-10 + art_sys_132: -2.94594055e-09 + art_sys_133: -1.40246474e-08 + art_sys_134: 1.56484220e-09 + art_sys_135: -6.74886358e-09 + art_sys_136: 5.82098982e-11 + art_sys_137: -4.67603363e-08 + art_sys_138: -1.85993961e-08 + art_sys_139: 1.80530567e-08 + art_sys_140: 1.23446369e-11 + art_sys_141: -1.95483516e-08 + art_sys_142: 8.40853377e-08 + art_sys_143: 8.57668832e-10 + art_sys_144: -9.86482695e-10 + art_sys_145: -1.69919698e-07 + art_sys_146: -1.54072160e-08 + art_sys_147: 3.21219609e-11 + art_sys_148: 7.44491032e-12 + art_sys_149: -2.60061258e-07 + art_sys_150: 1.15767863e-07 + art_sys_151: -2.78828716e-07 + art_sys_152: -2.38637829e-10 + art_sys_153: -2.16655030e-07 + art_sys_154: -5.46602679e-17 + art_sys_155: -1.47762377e-09 + art_sys_156: -0.0 + art_sys_157: 2.05623735e-09 art_sys_158: 0.0 - art_sys_159: 4.68306185e-10 - art_sys_160: -6.36639739e-11 - art_sys_161: -1.37946969e-11 - art_sys_162: -5.45350762e-12 - art_sys_163: -6.11385825e-10 - art_sys_164: 4.95617584e-10 - art_sys_165: -3.07133316e-12 - art_sys_166: 2.29080845e-18 - art_sys_167: 2.92892866e-18 - art_sys_168: -4.67576109e-19 - art_sys_169: 4.40615581e-20 - art_sys_170: 1.17859196e-19 - art_sys_171: -7.84823261e-20 - art_sys_172: -1.85236040e-20 - art_sys_173: 1.19577481e-20 - art_sys_174: 3.79039084e-21 - art_sys_175: 1.61011759e-22 - art_sys_176: 3.25199509e-23 - art_sys_177: -1.09860335e-21 - art_sys_178: 4.43478334e-22 - art_sys_179: -2.54472129e-22 - art_sys_180: -6.71832091e-23 - art_sys_181: 9.05906538e-24 - art_sys_182: 8.39349106e-23 - art_sys_183: -1.51704290e-25 - art_sys_184: 1.60603663e-26 - art_sys_185: 6.56829225e-27 + art_sys_159: -2.73629387e-07 + art_sys_160: -2.56312756e-08 + art_sys_161: -9.74751169e-09 + art_sys_162: -9.74751169e-09 + art_sys_163: 1.23374025e-08 + art_sys_164: 1.23374025e-08 + art_sys_165: -1.04388306e-22 + art_sys_166: 3.23045053e-23 + art_sys_167: 0.0 + art_sys_168: -1.51620689e-18 + art_sys_169: -5.58662149e-19 + art_sys_170: 1.73550894e-19 + art_sys_171: -2.83002378e-19 + art_sys_172: 5.77043644e-21 + art_sys_173: 6.69532629e-21 + art_sys_174: 5.15501397e-21 + art_sys_175: 1.03271032e-21 + art_sys_176: 8.29414770e-22 + art_sys_177: 2.04588230e-22 + art_sys_178: 2.60651359e-22 + art_sys_179: 7.77776148e-22 + art_sys_180: -5.86150408e-21 + art_sys_181: -5.39341701e-22 + art_sys_182: -1.16531536e-22 + art_sys_183: 1.57574082e-24 + art_sys_184: -5.54023945e-25 + art_sys_185: -1.76226268e-25 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -17432,167 +17432,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: 2.30114783e+02 - art_sys_26: 4.54626915e+01 - art_sys_27: -1.71049626e+01 - art_sys_28: -2.25067705e-17 - art_sys_29: 3.47252907e-17 - art_sys_30: -2.60546159e+00 - art_sys_31: -4.22559009e-02 - art_sys_32: -1.48247833e-02 - art_sys_33: 8.59232927e-03 - art_sys_34: -1.10618095e-17 - art_sys_35: -1.74961332e-18 - art_sys_36: -3.90917029e-18 - art_sys_37: 4.26117400e-19 - art_sys_38: 1.64569667e-03 - art_sys_39: 3.23155208e-19 - art_sys_40: 2.16978594e-18 - art_sys_41: -3.73171450e-18 - art_sys_42: -5.16653554e-18 - art_sys_43: 4.98612036e-06 - art_sys_44: -2.00633842e-06 - art_sys_45: -8.26712093e-07 - art_sys_46: -2.78884422e-18 - art_sys_47: 2.57776410e-18 - art_sys_48: -6.40398011e-19 - art_sys_49: -3.01681316e-15 - art_sys_50: -1.80768451e-16 - art_sys_51: 1.88741940e-16 - art_sys_52: -1.89274617e-17 - art_sys_53: -6.35227841e-19 - art_sys_54: 1.86678439e-19 - art_sys_55: -4.03452088e-08 - art_sys_56: -2.77149510e-08 - art_sys_57: -3.85935546e-18 - art_sys_58: -2.16403522e-20 - art_sys_59: 2.50161354e-20 - art_sys_60: -2.08554651e-18 - art_sys_61: 2.59843167e-18 - art_sys_62: 1.28622844e-18 - art_sys_63: 5.44845890e-09 - art_sys_64: 1.12826082e-18 - art_sys_65: 7.91486027e-23 - art_sys_66: -3.84874501e-23 - art_sys_67: -3.71910583e-19 - art_sys_68: 5.09129194e-10 - art_sys_69: 2.21828369e-10 - art_sys_70: -7.33400726e-19 - art_sys_71: -7.83085469e-19 - art_sys_72: -1.44641260e-19 - art_sys_73: -8.45385196e-23 - art_sys_74: -1.04495927e-22 - art_sys_75: -2.38143141e-24 - art_sys_76: 4.20686068e-21 - art_sys_77: -1.70466219e-18 - art_sys_78: -4.00235687e-11 - art_sys_79: 2.20170066e-24 - art_sys_80: -4.89629166e-20 - art_sys_81: 3.31157220e-26 - art_sys_82: 6.63762918e-25 - art_sys_83: -1.08207852e-21 - art_sys_84: -3.05111233e-25 - art_sys_85: 1.10024359e-25 - art_sys_86: 1.19696269e-20 - art_sys_87: 3.24800019e-21 - art_sys_88: 4.70472077e-21 - art_sys_89: 3.94397152e-22 - art_sys_90: -6.99404053e-20 - art_sys_91: 4.24577087e-13 - art_sys_92: 5.79237235e-21 - art_sys_93: 2.15598765e-19 - art_sys_94: -2.38781355e-19 - art_sys_95: -1.18081076e-13 - art_sys_96: -3.29664407e-23 - art_sys_97: -8.91952765e-14 - art_sys_98: 2.46959095e-20 - art_sys_99: -6.60016913e-21 - art_sys_100: 4.06993494e-14 - art_sys_101: 8.40743642e-20 - art_sys_102: -7.14867940e-20 - art_sys_103: 1.96151231e-14 - art_sys_104: -1.93781779e-20 - art_sys_105: 4.94077595e-20 - art_sys_106: 4.81346630e-20 - art_sys_107: -1.14784283e-21 - art_sys_108: -4.05119733e-23 - art_sys_109: 3.91584653e-22 - art_sys_110: 8.63534592e-15 - art_sys_111: 9.46824731e-20 - art_sys_112: 3.26765571e-15 - art_sys_113: -1.76431391e-23 - art_sys_114: -2.80865374e-19 - art_sys_115: 1.19680921e-15 - art_sys_116: -1.57384778e-19 - art_sys_117: 1.55671151e-20 - art_sys_118: 4.28355378e-16 - art_sys_119: -4.02367070e-20 - art_sys_120: -1.31895440e-20 - art_sys_121: -1.41768382e-16 - art_sys_122: -2.31241897e-20 - art_sys_123: 1.45440472e-20 - art_sys_124: 5.01732339e-17 - art_sys_125: 2.72907296e-20 - art_sys_126: 1.62911449e-17 - art_sys_127: 6.31591851e-22 - art_sys_128: 5.33438278e-18 - art_sys_129: 1.02727680e-20 - art_sys_130: 1.63018051e-18 - art_sys_131: 2.25363684e-22 - art_sys_132: -9.33944366e-21 - art_sys_133: 4.68651346e-19 - art_sys_134: 2.09715119e-24 - art_sys_135: -8.25929284e-21 - art_sys_136: -1.58384782e-19 - art_sys_137: -6.33681383e-25 - art_sys_138: -2.87972155e-22 - art_sys_139: 4.40872359e-23 - art_sys_140: 2.22757498e-20 - art_sys_141: 5.57489630e-21 - art_sys_142: 9.41565713e-22 - art_sys_143: -1.02314776e-25 - art_sys_144: -1.58198454e-25 - art_sys_145: -1.30377911e-24 - art_sys_146: 0.0 - art_sys_147: -2.65353693e-23 - art_sys_148: 3.20251796e-22 - art_sys_149: 3.20251796e-22 - art_sys_150: -1.37423592e-22 - art_sys_151: -1.37423592e-22 - art_sys_152: 6.00682434e-22 - art_sys_153: -7.52001179e-24 - art_sys_154: -3.44899253e-26 - art_sys_155: -1.29828538e-34 - art_sys_156: -1.49034256e-37 - art_sys_157: -9.66777369e-38 + art_sys_25: 1.05359498e-72 + art_sys_26: 5.51921205e-67 + art_sys_27: -3.46651558e-60 + art_sys_28: 2.07398145e-59 + art_sys_29: 7.96588525e-49 + art_sys_30: 6.47452834e-46 + art_sys_31: 3.02855763e-43 + art_sys_32: -3.61777529e-35 + art_sys_33: -1.08417389e-29 + art_sys_34: -1.09310478e-22 + art_sys_35: -7.66289654e-24 + art_sys_36: 2.30114783e+02 + art_sys_37: 4.54626915e+01 + art_sys_38: -1.71049626e+01 + art_sys_39: -2.60546159e+00 + art_sys_40: 4.22559009e-02 + art_sys_41: -1.48247833e-02 + art_sys_42: 8.59232927e-03 + art_sys_43: -1.64569667e-03 + art_sys_44: -4.98612036e-06 + art_sys_45: 2.00633842e-06 + art_sys_46: -8.26712093e-07 + art_sys_47: -1.33604046e-18 + art_sys_48: -1.50450689e-19 + art_sys_49: 2.63421930e-19 + art_sys_50: -4.03452088e-08 + art_sys_51: 2.77149510e-08 + art_sys_52: -8.81518545e-19 + art_sys_53: 2.53782791e-18 + art_sys_54: 5.12569950e-19 + art_sys_55: -5.49797976e-20 + art_sys_56: 1.86813558e-19 + art_sys_57: 5.44845891e-09 + art_sys_58: -5.09129213e-10 + art_sys_59: 4.95566353e-19 + art_sys_60: -1.81851678e-20 + art_sys_61: 2.21828369e-10 + art_sys_62: -7.54602682e-20 + art_sys_63: 5.02859285e-20 + art_sys_64: -3.88620682e-15 + art_sys_65: -2.02718898e-16 + art_sys_66: -1.71713477e-16 + art_sys_67: 1.17421064e-17 + art_sys_68: -7.55637540e-19 + art_sys_69: 3.41522977e-19 + art_sys_70: 8.50179672e-20 + art_sys_71: 3.04969846e-21 + art_sys_72: -7.90366223e-22 + art_sys_73: 1.75798750e-21 + art_sys_74: -4.00235685e-11 + art_sys_75: -4.29920194e-21 + art_sys_76: 4.54483221e-23 + art_sys_77: -1.31772564e-24 + art_sys_78: -2.49139909e-24 + art_sys_79: 5.45053996e-20 + art_sys_80: 6.21730236e-24 + art_sys_81: 4.61391165e-20 + art_sys_82: -3.22617632e-19 + art_sys_83: -5.33975355e-25 + art_sys_84: -5.04780324e-25 + art_sys_85: 1.02668645e-25 + art_sys_86: -9.06139692e-26 + art_sys_87: 9.39604740e-21 + art_sys_88: 1.49651393e-21 + art_sys_89: 3.70943244e-26 + art_sys_90: 1.76999558e-22 + art_sys_91: 6.21349883e-20 + art_sys_92: -3.13549775e-26 + art_sys_93: 4.31129399e-28 + art_sys_94: 9.26375174e-22 + art_sys_95: -4.24577153e-13 + art_sys_96: -9.13532287e-20 + art_sys_97: 5.71343747e-21 + art_sys_98: 1.18081122e-13 + art_sys_99: 1.54061483e-19 + art_sys_100: -8.91947133e-14 + art_sys_101: -1.41049432e-20 + art_sys_102: 4.06995747e-14 + art_sys_103: -8.21960837e-20 + art_sys_104: -2.09389537e-19 + art_sys_105: 1.34427695e-22 + art_sys_106: 5.55578380e-19 + art_sys_107: -1.96151442e-14 + art_sys_108: 7.51862589e-24 + art_sys_109: 4.52221716e-22 + art_sys_110: 8.63565278e-15 + art_sys_111: 6.36189864e-20 + art_sys_112: -1.78278262e-19 + art_sys_113: 2.48684673e-20 + art_sys_114: 2.25001807e-22 + art_sys_115: 4.05196983e-21 + art_sys_116: 3.26765530e-15 + art_sys_117: 6.91727603e-22 + art_sys_118: -8.66907853e-21 + art_sys_119: -1.19677819e-15 + art_sys_120: -2.47726561e-20 + art_sys_121: -1.33252645e-22 + art_sys_122: -3.65420463e-20 + art_sys_123: -4.28335001e-16 + art_sys_124: 1.34714901e-20 + art_sys_125: 1.11971731e-22 + art_sys_126: 5.54321146e-21 + art_sys_127: 1.41819214e-16 + art_sys_128: -2.38354679e-20 + art_sys_129: 4.11886697e-23 + art_sys_130: -5.01501071e-17 + art_sys_131: -6.68140538e-23 + art_sys_132: 7.79727694e-20 + art_sys_133: -1.62347410e-17 + art_sys_134: -3.46857388e-20 + art_sys_135: -6.64615304e-21 + art_sys_136: -8.79580766e-24 + art_sys_137: -5.33440644e-18 + art_sys_138: -5.03600218e-21 + art_sys_139: -1.61010653e-18 + art_sys_140: -1.68057774e-24 + art_sys_141: -1.08479122e-20 + art_sys_142: 5.17670684e-21 + art_sys_143: -4.93559603e-19 + art_sys_144: 2.32067572e-23 + art_sys_145: 4.25948360e-21 + art_sys_146: -1.65763924e-19 + art_sys_147: 3.89601732e-24 + art_sys_148: 3.48845916e-25 + art_sys_149: -1.35956610e-21 + art_sys_150: -2.09029513e-20 + art_sys_151: 8.47788819e-22 + art_sys_152: -1.02665672e-24 + art_sys_153: 2.37511555e-21 + art_sys_154: -2.77785571e-21 + art_sys_155: 1.01021756e-24 + art_sys_156: 0.0 + art_sys_157: 1.39615792e-21 art_sys_158: 0.0 - art_sys_159: -5.25110456e-21 - art_sys_160: -1.56368878e-22 - art_sys_161: -1.65223671e-21 - art_sys_162: -4.46347475e-23 - art_sys_163: 8.37444992e-24 - art_sys_164: 6.73970860e-23 - art_sys_165: 1.22050954e-24 - art_sys_166: -7.08858801e-30 - art_sys_167: 4.00927438e-31 - art_sys_168: 8.91993114e-32 - art_sys_169: -5.91428346e-30 - art_sys_170: -3.52688298e-29 - art_sys_171: -6.08939287e-29 - art_sys_172: 1.30920267e-27 - art_sys_173: 1.54506660e-28 - art_sys_174: 4.31715509e-29 - art_sys_175: 4.16317566e-37 - art_sys_176: 1.56562863e-31 - art_sys_177: -3.51924258e-31 - art_sys_178: 4.23839448e-31 - art_sys_179: -2.36380904e-32 - art_sys_180: 3.34694078e-32 - art_sys_181: 1.40312113e-33 - art_sys_182: 1.99995330e-33 - art_sys_183: -1.62125458e-35 - art_sys_184: 2.04404398e-38 - art_sys_185: 3.33809206e-39 + art_sys_159: 2.17950890e-22 + art_sys_160: 4.78493267e-23 + art_sys_161: -1.01221912e-23 + art_sys_162: -1.01221912e-23 + art_sys_163: -1.71805583e-23 + art_sys_164: -1.71805583e-23 + art_sys_165: 1.84366451e-37 + art_sys_166: -6.06657963e-38 + art_sys_167: -0.0 + art_sys_168: -3.97148362e-31 + art_sys_169: -5.29282476e-29 + art_sys_170: 1.63170078e-28 + art_sys_171: 1.08325906e-27 + art_sys_172: 2.88732298e-29 + art_sys_173: 1.00552761e-29 + art_sys_174: 1.22611706e-29 + art_sys_175: -3.34477527e-30 + art_sys_176: 4.07265398e-31 + art_sys_177: -1.70536002e-33 + art_sys_178: -7.96782301e-34 + art_sys_179: -3.14389982e-37 + art_sys_180: 5.01427954e-36 + art_sys_181: -2.84807718e-32 + art_sys_182: 8.01459854e-33 + art_sys_183: 6.20834207e-35 + art_sys_184: 2.08414303e-36 + art_sys_185: -6.88816369e-39 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -17723,167 +17723,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: 1.16855503e+02 - art_sys_26: -8.38645307e+01 - art_sys_27: 3.03338079e+01 - art_sys_28: 4.88550757e-17 - art_sys_29: -3.71095874e-18 - art_sys_30: 7.69466219e+00 - art_sys_31: 1.43335780e-01 - art_sys_32: 5.09411189e-02 - art_sys_33: -3.29568334e-02 - art_sys_34: 1.76134612e-18 - art_sys_35: 4.77944654e-18 - art_sys_36: 7.30625014e-18 - art_sys_37: -1.27145700e-17 - art_sys_38: -6.83247670e-03 - art_sys_39: -4.57100653e-18 - art_sys_40: -8.58581476e-18 - art_sys_41: -4.03661705e-18 - art_sys_42: -5.22606816e-18 - art_sys_43: -2.94756994e-05 - art_sys_44: 1.27260784e-05 - art_sys_45: 4.87358331e-06 - art_sys_46: 7.16854637e-18 - art_sys_47: 1.12509351e-18 - art_sys_48: 7.83739990e-19 - art_sys_49: 7.98016905e-16 - art_sys_50: 7.02604214e-17 - art_sys_51: -9.28212391e-17 - art_sys_52: 4.14032061e-17 - art_sys_53: -4.21164203e-19 - art_sys_54: -1.89813938e-19 - art_sys_55: 3.79938190e-07 - art_sys_56: 1.81621939e-07 - art_sys_57: 2.38977252e-17 - art_sys_58: -2.43670525e-19 - art_sys_59: 1.08394892e-20 - art_sys_60: 4.04737195e-18 - art_sys_61: -2.36223789e-17 - art_sys_62: 6.23785283e-19 - art_sys_63: -4.19193226e-08 - art_sys_64: 8.48903127e-19 - art_sys_65: -3.28065593e-22 - art_sys_66: -6.91218388e-23 - art_sys_67: 8.53018436e-20 - art_sys_68: -3.50278966e-09 - art_sys_69: -1.54649961e-09 - art_sys_70: 8.14702341e-18 - art_sys_71: -9.94257838e-20 - art_sys_72: 1.89441382e-19 - art_sys_73: 4.19908074e-22 - art_sys_74: 7.33071313e-22 - art_sys_75: 8.02656737e-24 - art_sys_76: -2.80381060e-20 - art_sys_77: 9.52209153e-18 - art_sys_78: 2.82167445e-10 - art_sys_79: -9.11097485e-24 - art_sys_80: 2.22422972e-19 - art_sys_81: -3.43632627e-25 - art_sys_82: -3.17143482e-24 - art_sys_83: 2.22517556e-21 - art_sys_84: 1.33487770e-24 - art_sys_85: -5.54999510e-25 - art_sys_86: 9.61604345e-21 - art_sys_87: -6.16791479e-20 - art_sys_88: 6.72280379e-22 - art_sys_89: 1.03667555e-22 - art_sys_90: -2.66345306e-21 - art_sys_91: -1.84321866e-12 - art_sys_92: 2.02741093e-20 - art_sys_93: -1.33014935e-18 - art_sys_94: 1.26157413e-18 - art_sys_95: 7.66141291e-13 - art_sys_96: -1.49552073e-22 - art_sys_97: 4.80620975e-13 - art_sys_98: -2.07627316e-19 - art_sys_99: 1.31067862e-20 - art_sys_100: -2.30564972e-13 - art_sys_101: -3.50527039e-19 - art_sys_102: 5.22517351e-19 - art_sys_103: -1.14059413e-13 - art_sys_104: 5.39893212e-20 - art_sys_105: -1.10447492e-19 - art_sys_106: -2.76003419e-19 - art_sys_107: 6.04568955e-21 - art_sys_108: -3.71712339e-22 - art_sys_109: -2.12015159e-21 - art_sys_110: -5.02334505e-14 - art_sys_111: -5.44112224e-19 - art_sys_112: -1.93975400e-14 - art_sys_113: 5.98046318e-22 - art_sys_114: 1.53305643e-18 - art_sys_115: -7.12738309e-15 - art_sys_116: 9.16320646e-19 - art_sys_117: -8.75008302e-20 - art_sys_118: -2.57368130e-15 - art_sys_119: 2.29811920e-19 - art_sys_120: 7.74901939e-20 - art_sys_121: 8.56092808e-16 - art_sys_122: 1.23724665e-19 - art_sys_123: -7.02938325e-20 - art_sys_124: -3.03869120e-16 - art_sys_125: -1.63855569e-19 - art_sys_126: -9.90122984e-17 - art_sys_127: -1.45484387e-20 - art_sys_128: -3.24605430e-17 - art_sys_129: -5.68349111e-20 - art_sys_130: -9.93592465e-18 - art_sys_131: -1.14250255e-21 - art_sys_132: 5.74894896e-20 - art_sys_133: -2.85904425e-18 - art_sys_134: -1.49662287e-23 - art_sys_135: 5.23438978e-20 - art_sys_136: 9.66591278e-19 - art_sys_137: 2.63381945e-24 - art_sys_138: 1.90153999e-21 - art_sys_139: -1.34829530e-21 - art_sys_140: -1.36204838e-19 - art_sys_141: -3.36704811e-20 - art_sys_142: -5.71886231e-21 - art_sys_143: 6.20295389e-25 - art_sys_144: 9.76380735e-25 - art_sys_145: 8.07295746e-24 - art_sys_146: -0.0 - art_sys_147: 1.71843762e-22 - art_sys_148: -2.08754275e-21 - art_sys_149: -2.08754275e-21 - art_sys_150: 8.16420442e-22 - art_sys_151: 8.16420442e-22 - art_sys_152: -3.64247780e-21 - art_sys_153: 4.22741179e-23 - art_sys_154: 2.01274022e-25 - art_sys_155: 7.80667253e-34 - art_sys_156: 8.85710843e-37 - art_sys_157: 5.75943617e-37 + art_sys_25: 5.34939307e-73 + art_sys_26: 2.80225659e-67 + art_sys_27: -1.76004582e-60 + art_sys_28: 1.05301773e-59 + art_sys_29: 4.04450023e-49 + art_sys_30: 3.28729709e-46 + art_sys_31: 1.53768246e-43 + art_sys_32: -1.83684456e-35 + art_sys_33: -5.50465066e-30 + art_sys_34: -5.54999527e-23 + art_sys_35: -3.89066449e-24 + art_sys_36: 1.16855503e+02 + art_sys_37: -8.38645307e+01 + art_sys_38: 3.03338079e+01 + art_sys_39: 7.69466219e+00 + art_sys_40: -1.43335780e-01 + art_sys_41: 5.09411189e-02 + art_sys_42: -3.29568334e-02 + art_sys_43: 6.83247670e-03 + art_sys_44: 2.94756994e-05 + art_sys_45: -1.27260784e-05 + art_sys_46: 4.87358331e-06 + art_sys_47: -3.66065105e-19 + art_sys_48: -4.40917735e-19 + art_sys_49: -1.94505101e-18 + art_sys_50: 3.79938190e-07 + art_sys_51: -1.81621939e-07 + art_sys_52: 1.76433521e-19 + art_sys_53: 1.95463449e-18 + art_sys_54: -8.76301533e-21 + art_sys_55: 7.69637038e-19 + art_sys_56: 4.70532785e-19 + art_sys_57: -4.19193226e-08 + art_sys_58: 3.50278979e-09 + art_sys_59: 7.15703480e-20 + art_sys_60: -3.27031886e-19 + art_sys_61: -1.54649961e-09 + art_sys_62: 2.55079522e-20 + art_sys_63: 8.66188335e-20 + art_sys_64: 1.35858649e-16 + art_sys_65: 1.28215909e-15 + art_sys_66: -2.67215290e-16 + art_sys_67: 1.43315261e-18 + art_sys_68: -9.47102002e-19 + art_sys_69: -7.80816425e-20 + art_sys_70: 1.18709737e-20 + art_sys_71: -1.61199050e-21 + art_sys_72: 3.10703272e-21 + art_sys_73: -4.61412520e-21 + art_sys_74: 2.82167443e-10 + art_sys_75: -9.58052020e-21 + art_sys_76: -2.03910671e-22 + art_sys_77: 1.96792331e-23 + art_sys_78: -1.53235481e-23 + art_sys_79: 5.15099384e-20 + art_sys_80: -2.13739850e-23 + art_sys_81: 3.35250468e-20 + art_sys_82: -6.62272799e-20 + art_sys_83: 2.81667329e-24 + art_sys_84: 2.22360429e-24 + art_sys_85: -3.22631999e-25 + art_sys_86: 3.69078440e-25 + art_sys_87: -6.63874207e-20 + art_sys_88: -4.07214197e-21 + art_sys_89: -1.77240496e-25 + art_sys_90: -1.25256997e-22 + art_sys_91: -3.68993711e-20 + art_sys_92: 1.68008703e-25 + art_sys_93: -1.68439342e-26 + art_sys_94: -4.52468179e-21 + art_sys_95: 1.84321892e-12 + art_sys_96: 6.88242222e-20 + art_sys_97: -4.16810121e-20 + art_sys_98: -7.66141587e-13 + art_sys_99: -4.03396560e-20 + art_sys_100: 4.80617963e-13 + art_sys_101: 4.92279663e-19 + art_sys_102: -2.30566229e-13 + art_sys_103: 3.93544928e-19 + art_sys_104: 8.12116773e-19 + art_sys_105: -3.84746330e-22 + art_sys_106: -3.20100370e-18 + art_sys_107: 1.14059531e-13 + art_sys_108: -5.46692511e-22 + art_sys_109: -2.68022264e-21 + art_sys_110: -5.02352321e-14 + art_sys_111: -1.05484709e-19 + art_sys_112: 1.03021015e-18 + art_sys_113: -1.13066928e-19 + art_sys_114: -1.30905062e-21 + art_sys_115: 5.19861630e-21 + art_sys_116: -1.93975819e-14 + art_sys_117: -4.90957651e-21 + art_sys_118: 1.30070097e-19 + art_sys_119: 7.12721028e-15 + art_sys_120: 1.44772853e-19 + art_sys_121: 7.45370604e-22 + art_sys_122: 1.49542358e-19 + art_sys_123: 2.57355460e-15 + art_sys_124: -6.24608834e-20 + art_sys_125: -6.84580756e-22 + art_sys_126: -3.49665636e-20 + art_sys_127: -8.56399980e-16 + art_sys_128: 1.18865193e-19 + art_sys_129: 1.30902609e-23 + art_sys_130: 3.03729046e-16 + art_sys_131: 4.40614440e-22 + art_sys_132: -4.52781221e-19 + art_sys_133: 9.86714933e-17 + art_sys_134: 2.04886375e-19 + art_sys_135: 3.20383607e-20 + art_sys_136: 4.00221703e-23 + art_sys_137: 3.24614267e-17 + art_sys_138: 3.30642942e-20 + art_sys_139: 9.81442466e-18 + art_sys_140: 9.76898301e-24 + art_sys_141: 6.61282853e-20 + art_sys_142: -3.15271776e-20 + art_sys_143: 3.00990541e-18 + art_sys_144: -1.39309594e-22 + art_sys_145: -2.52857089e-20 + art_sys_146: 1.01143776e-18 + art_sys_147: -2.45441095e-23 + art_sys_148: -2.11192871e-24 + art_sys_149: 8.19276413e-21 + art_sys_150: 1.27595964e-19 + art_sys_151: -4.98371993e-21 + art_sys_152: 6.42637968e-24 + art_sys_153: -1.43815481e-20 + art_sys_154: 1.64885806e-20 + art_sys_155: -5.50040472e-24 + art_sys_156: -0.0 + art_sys_157: -7.95526265e-21 art_sys_158: -0.0 - art_sys_159: 3.18645375e-20 - art_sys_160: 1.01274580e-21 - art_sys_161: 1.00640350e-20 - art_sys_162: 2.47779719e-22 - art_sys_163: -1.56572900e-22 - art_sys_164: -4.75687274e-22 - art_sys_165: -4.86184233e-24 - art_sys_166: -6.33884127e-31 - art_sys_167: 2.67561596e-30 - art_sys_168: 1.31676495e-30 - art_sys_169: -2.08470007e-30 - art_sys_170: -2.36880636e-29 - art_sys_171: -5.41274245e-29 - art_sys_172: 9.58692874e-28 - art_sys_173: 1.30225523e-28 - art_sys_174: 2.18795035e-29 - art_sys_175: -2.60094370e-36 - art_sys_176: 4.06261186e-30 - art_sys_177: -3.84263884e-30 - art_sys_178: 4.51506793e-31 - art_sys_179: -1.47478979e-32 - art_sys_180: 1.81763227e-32 - art_sys_181: -7.18337542e-33 - art_sys_182: -2.01468271e-33 - art_sys_183: 8.95703638e-36 - art_sys_184: -9.06336608e-38 - art_sys_185: -1.98937301e-38 + art_sys_159: -1.18605816e-21 + art_sys_160: -2.65109822e-22 + art_sys_161: 6.65317529e-23 + art_sys_162: 6.65317529e-23 + art_sys_163: 9.85005788e-23 + art_sys_164: 9.85005788e-23 + art_sys_165: -1.07087409e-36 + art_sys_166: 3.53387753e-37 + art_sys_167: 0.0 + art_sys_168: 2.54699110e-29 + art_sys_169: -9.05185019e-30 + art_sys_170: -4.40344068e-29 + art_sys_171: -9.16373513e-29 + art_sys_172: 1.45612248e-28 + art_sys_173: 1.63368967e-29 + art_sys_174: -3.44760020e-29 + art_sys_175: 4.11963161e-30 + art_sys_176: -5.28890853e-31 + art_sys_177: 8.32977701e-33 + art_sys_178: -1.43470140e-33 + art_sys_179: 1.57939373e-36 + art_sys_180: -2.75481108e-35 + art_sys_181: 4.26977156e-32 + art_sys_182: -4.78441495e-32 + art_sys_183: 2.65268401e-33 + art_sys_184: -8.25737273e-36 + art_sys_185: -3.09874006e-38 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -18014,167 +18014,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: 1.10868380e+01 - art_sys_26: -8.34872430e+01 - art_sys_27: -2.81430208e+01 - art_sys_28: 2.73408567e-17 - art_sys_29: 7.04431894e-18 - art_sys_30: -1.18005223e+01 - art_sys_31: -4.78281847e-01 - art_sys_32: -1.31187661e-01 - art_sys_33: 1.01370950e-01 - art_sys_34: 1.40306745e-17 - art_sys_35: -1.57161984e-17 - art_sys_36: 1.99433518e-18 - art_sys_37: 1.81719754e-17 - art_sys_38: 2.22256904e-02 - art_sys_39: -9.12223565e-19 - art_sys_40: -2.15378581e-18 - art_sys_41: -1.67706512e-18 - art_sys_42: -5.66287578e-18 - art_sys_43: 8.54896383e-05 - art_sys_44: -4.60926146e-05 - art_sys_45: -1.68766902e-05 - art_sys_46: 4.96373987e-19 - art_sys_47: 1.11372158e-18 - art_sys_48: -4.16330191e-19 - art_sys_49: -3.89471901e-15 - art_sys_50: -1.21411896e-16 - art_sys_51: -2.15448963e-17 - art_sys_52: -4.99627251e-18 - art_sys_53: 2.50337038e-19 - art_sys_54: -2.27555889e-19 - art_sys_55: -1.42846036e-06 - art_sys_56: -6.81980901e-07 - art_sys_57: -1.09817529e-16 - art_sys_58: 2.15674168e-20 - art_sys_59: -1.96024228e-20 - art_sys_60: -1.72695565e-17 - art_sys_61: 8.70342254e-17 - art_sys_62: 3.61233551e-18 - art_sys_63: 1.58174324e-07 - art_sys_64: 7.13342022e-19 - art_sys_65: -6.27880043e-22 - art_sys_66: 4.15651187e-22 - art_sys_67: -3.02210744e-18 - art_sys_68: 1.42506514e-08 - art_sys_69: 5.97313361e-09 - art_sys_70: -3.13555127e-17 - art_sys_71: -2.98036508e-19 - art_sys_72: -3.28212073e-19 - art_sys_73: -1.61934238e-21 - art_sys_74: -2.90444084e-21 - art_sys_75: -2.69233133e-23 - art_sys_76: 1.11045354e-19 - art_sys_77: -3.90395507e-17 - art_sys_78: -1.12200825e-09 - art_sys_79: 3.39242073e-23 - art_sys_80: -8.41076571e-19 - art_sys_81: 1.24091130e-24 - art_sys_82: 1.20090185e-23 - art_sys_83: -1.14805565e-20 - art_sys_84: -5.17378176e-24 - art_sys_85: 2.02140705e-24 - art_sys_86: -1.61234462e-20 - art_sys_87: 5.83289080e-19 - art_sys_88: -4.72107110e-21 - art_sys_89: -7.90980987e-22 - art_sys_90: -1.23305493e-19 - art_sys_91: 6.98563247e-12 - art_sys_92: 1.44173347e-19 - art_sys_93: 5.74612467e-18 - art_sys_94: -4.97883643e-18 - art_sys_95: -2.75772607e-12 - art_sys_96: 9.81844431e-22 - art_sys_97: -1.84615901e-12 - art_sys_98: 6.70063255e-19 - art_sys_99: -3.80228156e-20 - art_sys_100: 8.62033381e-13 - art_sys_101: 1.65824509e-18 - art_sys_102: -1.68339992e-18 - art_sys_103: 4.33100935e-13 - art_sys_104: -2.22533591e-19 - art_sys_105: 1.60367562e-19 - art_sys_106: 1.01337923e-18 - art_sys_107: -2.32425261e-20 - art_sys_108: 1.54619367e-21 - art_sys_109: 8.14598119e-21 - art_sys_110: 1.90414041e-13 - art_sys_111: 2.10788201e-18 - art_sys_112: 7.37537442e-14 - art_sys_113: -2.29820145e-21 - art_sys_114: -5.82909663e-18 - art_sys_115: 2.71720702e-14 - art_sys_116: -3.47271884e-18 - art_sys_117: 2.48439557e-19 - art_sys_118: 9.81618677e-15 - art_sys_119: -8.49734831e-19 - art_sys_120: -2.95522270e-19 - art_sys_121: -3.27180597e-15 - art_sys_122: -4.41904090e-19 - art_sys_123: 2.51313746e-19 - art_sys_124: 1.16169736e-15 - art_sys_125: 6.25868533e-19 - art_sys_126: 3.78813003e-16 - art_sys_127: 7.59814252e-20 - art_sys_128: 1.24245785e-16 - art_sys_129: 2.06056084e-19 - art_sys_130: 3.80378743e-17 - art_sys_131: 4.51125404e-21 - art_sys_132: -2.26466256e-19 - art_sys_133: 1.09489292e-17 - art_sys_134: 5.70082136e-23 - art_sys_135: -2.03735008e-19 - art_sys_136: -3.70177385e-18 - art_sys_137: -1.08791299e-23 - art_sys_138: -6.55724837e-21 - art_sys_139: 7.31363604e-21 - art_sys_140: 5.21987946e-19 - art_sys_141: 1.28550785e-19 - art_sys_142: 2.20304791e-20 - art_sys_143: -2.37731722e-24 - art_sys_144: -3.75843890e-24 - art_sys_145: -3.11149859e-23 - art_sys_146: 0.0 - art_sys_147: -6.77003496e-22 - art_sys_148: 8.25608299e-21 - art_sys_149: 8.25608299e-21 - art_sys_150: -3.07691946e-21 - art_sys_151: -3.07691946e-21 - art_sys_152: 1.41273978e-20 - art_sys_153: -1.69337256e-22 - art_sys_154: -7.49952116e-25 - art_sys_155: -3.02576799e-33 - art_sys_156: -3.37791329e-36 - art_sys_157: -2.19136398e-36 + art_sys_25: 5.06889612e-74 + art_sys_26: 2.65531947e-68 + art_sys_27: -1.66775732e-61 + art_sys_28: 9.97802452e-61 + art_sys_29: 3.83242572e-50 + art_sys_30: 3.11492673e-47 + art_sys_31: 1.45705365e-44 + art_sys_32: -1.74052910e-36 + art_sys_33: -5.21601275e-31 + art_sys_34: -5.25897970e-24 + art_sys_35: -3.68665640e-25 + art_sys_36: 1.10868380e+01 + art_sys_37: -8.34872430e+01 + art_sys_38: -2.81430208e+01 + art_sys_39: -1.18005223e+01 + art_sys_40: 4.78281847e-01 + art_sys_41: -1.31187661e-01 + art_sys_42: 1.01370950e-01 + art_sys_43: -2.22256904e-02 + art_sys_44: -8.54896383e-05 + art_sys_45: 4.60926146e-05 + art_sys_46: -1.68766902e-05 + art_sys_47: -8.74006583e-19 + art_sys_48: -5.27779951e-19 + art_sys_49: 9.35762689e-19 + art_sys_50: -1.42846036e-06 + art_sys_51: 6.81980901e-07 + art_sys_52: 4.77510395e-19 + art_sys_53: 8.14347020e-19 + art_sys_54: 8.61923985e-19 + art_sys_55: -7.40464079e-19 + art_sys_56: -7.12739342e-20 + art_sys_57: 1.58174324e-07 + art_sys_58: -1.42506519e-08 + art_sys_59: -2.56585977e-19 + art_sys_60: -1.19790195e-19 + art_sys_61: 5.97313361e-09 + art_sys_62: 2.40685362e-19 + art_sys_63: 2.57724036e-19 + art_sys_64: -5.66928329e-16 + art_sys_65: -4.75197529e-16 + art_sys_66: 3.92094465e-17 + art_sys_67: -4.27039901e-17 + art_sys_68: 3.44653793e-19 + art_sys_69: -2.22425631e-20 + art_sys_70: 7.45566928e-20 + art_sys_71: -2.56609003e-20 + art_sys_72: -7.42158355e-21 + art_sys_73: 9.97271183e-21 + art_sys_74: -1.12200824e-09 + art_sys_75: -1.80801213e-21 + art_sys_76: 7.72929138e-22 + art_sys_77: -5.82995006e-23 + art_sys_78: 4.25642571e-23 + art_sys_79: -1.01384572e-19 + art_sys_80: 8.18284690e-23 + art_sys_81: -2.88120853e-19 + art_sys_82: -1.60950777e-19 + art_sys_83: -1.07595935e-23 + art_sys_84: -8.60375573e-24 + art_sys_85: 1.14834327e-24 + art_sys_86: -1.41895905e-24 + art_sys_87: 2.44352590e-19 + art_sys_88: 9.51202770e-21 + art_sys_89: 6.55331365e-25 + art_sys_90: -1.36743092e-21 + art_sys_91: -4.85171833e-20 + art_sys_92: -6.17249048e-25 + art_sys_93: 5.38485686e-26 + art_sys_94: 1.51149781e-20 + art_sys_95: -6.98563354e-12 + art_sys_96: -8.31227951e-20 + art_sys_97: 4.11414155e-20 + art_sys_98: 2.75772720e-12 + art_sys_99: 1.12638427e-19 + art_sys_100: -1.84614742e-12 + art_sys_101: -1.88434742e-18 + art_sys_102: 8.62038053e-13 + art_sys_103: -1.40989681e-18 + art_sys_104: -2.69462615e-18 + art_sys_105: 1.55481024e-21 + art_sys_106: 1.17167750e-17 + art_sys_107: -4.33101389e-13 + art_sys_108: 2.58094040e-21 + art_sys_109: 1.01399412e-20 + art_sys_110: 1.90420783e-13 + art_sys_111: 3.22473855e-19 + art_sys_112: -3.90995107e-18 + art_sys_113: 3.86105447e-19 + art_sys_114: 5.03296755e-21 + art_sys_115: -5.43499832e-20 + art_sys_116: 7.37538899e-14 + art_sys_117: 1.79777777e-20 + art_sys_118: -6.38488820e-19 + art_sys_119: -2.71714089e-14 + art_sys_120: -5.46643367e-19 + art_sys_121: -2.59597337e-21 + art_sys_122: -4.84420986e-19 + art_sys_123: -9.81570716e-15 + art_sys_124: 2.28986984e-19 + art_sys_125: 2.61853165e-21 + art_sys_126: 1.32257833e-19 + art_sys_127: 3.27297984e-15 + art_sys_128: -4.03656565e-19 + art_sys_129: -7.98826167e-23 + art_sys_130: -1.16116309e-15 + art_sys_131: -1.65830653e-21 + art_sys_132: 1.71020632e-18 + art_sys_133: -3.77510672e-16 + art_sys_134: -7.82057089e-19 + art_sys_135: -1.12487666e-19 + art_sys_136: -1.67813544e-22 + art_sys_137: -1.24249355e-16 + art_sys_138: -1.31418529e-19 + art_sys_139: -3.75733940e-17 + art_sys_140: -3.81425307e-23 + art_sys_141: -2.52934095e-19 + art_sys_142: 1.20766373e-19 + art_sys_143: -1.15255978e-17 + art_sys_144: 5.31669087e-22 + art_sys_145: 9.35151122e-20 + art_sys_146: -3.87331007e-18 + art_sys_147: 9.42075886e-23 + art_sys_148: 8.08602840e-24 + art_sys_149: -3.13035150e-20 + art_sys_150: -4.88641709e-19 + art_sys_151: 1.88022595e-20 + art_sys_152: -2.47894438e-23 + art_sys_153: 5.49252377e-20 + art_sys_154: -6.28008983e-20 + art_sys_155: 2.01534539e-23 + art_sys_156: 0.0 + art_sys_157: 2.96724695e-20 art_sys_158: 0.0 - art_sys_159: -1.21911876e-19 - art_sys_160: -3.85242025e-21 - art_sys_161: -3.85309275e-20 - art_sys_162: -8.99915391e-22 - art_sys_163: 5.46450949e-22 - art_sys_164: 1.79469402e-21 - art_sys_165: 2.24600414e-23 - art_sys_166: -1.31450120e-31 - art_sys_167: -5.41749630e-30 - art_sys_168: 7.86589054e-31 - art_sys_169: 6.87386863e-30 - art_sys_170: 2.51872555e-29 - art_sys_171: -4.11825361e-29 - art_sys_172: 1.24188396e-27 - art_sys_173: -8.30850985e-29 - art_sys_174: -2.69729594e-29 - art_sys_175: 1.00882704e-35 - art_sys_176: -4.57934474e-30 - art_sys_177: -1.18881241e-31 - art_sys_178: -3.61614927e-31 - art_sys_179: 3.27659921e-32 - art_sys_180: -1.89883281e-32 - art_sys_181: -3.62749858e-33 - art_sys_182: 1.73593221e-33 - art_sys_183: 3.27982444e-35 - art_sys_184: -9.58763269e-39 - art_sys_185: 7.77453250e-38 + art_sys_159: 4.32607622e-21 + art_sys_160: 9.76447397e-22 + art_sys_161: -2.63523526e-22 + art_sys_162: -2.63523526e-22 + art_sys_163: -3.67609951e-22 + art_sys_164: -3.67609951e-22 + art_sys_165: 4.02149964e-36 + art_sys_166: -1.32878118e-36 + art_sys_167: -0.0 + art_sys_168: -5.18227960e-30 + art_sys_169: -4.33603252e-29 + art_sys_170: 5.51827414e-29 + art_sys_171: -8.80123030e-28 + art_sys_172: 4.65119151e-28 + art_sys_173: 5.07168024e-29 + art_sys_174: 1.66466784e-29 + art_sys_175: -2.83129840e-30 + art_sys_176: 9.33598065e-31 + art_sys_177: -2.70612120e-33 + art_sys_178: 1.28423161e-33 + art_sys_179: -5.56929832e-36 + art_sys_180: 1.00914030e-34 + art_sys_181: -3.85183549e-32 + art_sys_182: -4.98670062e-32 + art_sys_183: 4.28490692e-33 + art_sys_184: -7.82233968e-36 + art_sys_185: -1.22387825e-37 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -18305,167 +18305,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: -1.38300030e+01 - art_sys_26: -1.93283491e+01 - art_sys_27: -5.05245959e+01 - art_sys_28: -8.83182156e-18 - art_sys_29: 1.66991910e-17 - art_sys_30: 1.18890768e+01 - art_sys_31: 4.55413650e-01 - art_sys_32: 2.82448384e-01 - art_sys_33: -1.97899849e-01 - art_sys_34: -1.74357171e-17 - art_sys_35: 1.21136227e-17 - art_sys_36: 3.61084492e-18 - art_sys_37: 7.63306518e-18 - art_sys_38: -5.24979136e-02 - art_sys_39: -8.88060966e-18 - art_sys_40: -9.73495678e-19 - art_sys_41: -4.21266804e-18 - art_sys_42: 7.40443608e-18 - art_sys_43: -2.99902824e-04 - art_sys_44: 1.34610509e-04 - art_sys_45: 5.51993532e-05 - art_sys_46: 3.92411344e-18 - art_sys_47: -1.89079929e-18 - art_sys_48: 3.14955039e-19 - art_sys_49: 1.13766591e-16 - art_sys_50: -1.22245600e-16 - art_sys_51: 1.11769191e-16 - art_sys_52: 7.32747143e-19 - art_sys_53: 9.00867587e-19 - art_sys_54: 4.09357289e-19 - art_sys_55: 4.77421574e-06 - art_sys_56: 2.22113652e-06 - art_sys_57: 3.59810071e-16 - art_sys_58: 2.03625381e-20 - art_sys_59: -4.28845885e-20 - art_sys_60: 5.51403749e-17 - art_sys_61: -2.83497350e-16 - art_sys_62: -1.09870144e-17 - art_sys_63: -5.41512028e-07 - art_sys_64: -1.01216899e-18 - art_sys_65: 6.15365164e-22 - art_sys_66: -3.65221904e-22 - art_sys_67: 9.41219672e-18 - art_sys_68: -4.51941201e-08 - art_sys_69: -2.02558388e-08 - art_sys_70: 1.05241018e-16 - art_sys_71: 5.78816876e-19 - art_sys_72: 5.80925033e-19 - art_sys_73: 5.51736345e-21 - art_sys_74: 9.71572687e-21 - art_sys_75: 1.07030290e-22 - art_sys_76: -3.71353940e-19 - art_sys_77: 1.22712640e-16 - art_sys_78: 3.74366548e-09 - art_sys_79: -1.35722434e-22 - art_sys_80: 2.92329968e-18 - art_sys_81: -4.74286479e-24 - art_sys_82: -4.20906630e-23 - art_sys_83: -1.97856603e-21 - art_sys_84: 1.79096051e-23 - art_sys_85: -7.27196794e-24 - art_sys_86: -3.06506726e-20 - art_sys_87: -1.63846147e-18 - art_sys_88: 6.05759852e-21 - art_sys_89: -9.09853673e-22 - art_sys_90: 9.58453101e-19 - art_sys_91: -2.41747241e-11 - art_sys_92: -5.94385349e-19 - art_sys_93: -1.82107268e-17 - art_sys_94: 1.67792378e-17 - art_sys_95: 1.03346031e-11 - art_sys_96: -3.48008818e-21 - art_sys_97: 6.48255907e-12 - art_sys_98: -2.10265641e-18 - art_sys_99: 1.43510598e-19 - art_sys_100: -3.12269630e-12 - art_sys_101: -6.17729663e-18 - art_sys_102: 5.45811125e-18 - art_sys_103: -1.55748077e-12 - art_sys_104: 7.07028026e-19 - art_sys_105: -7.50163949e-20 - art_sys_106: -3.72252434e-18 - art_sys_107: 8.37747394e-20 - art_sys_108: -5.93809456e-21 - art_sys_109: -2.93299687e-20 - art_sys_110: -6.87161443e-13 - art_sys_111: -7.50016200e-18 - art_sys_112: -2.66589051e-13 - art_sys_113: 7.99087683e-21 - art_sys_114: 2.05854846e-17 - art_sys_115: -9.81324314e-14 - art_sys_116: 1.25335028e-17 - art_sys_117: -1.03721757e-18 - art_sys_118: -3.55126566e-14 - art_sys_119: 3.14837499e-18 - art_sys_120: 1.06368490e-18 - art_sys_121: 1.18292026e-14 - art_sys_122: 1.55346171e-18 - art_sys_123: -8.77381937e-19 - art_sys_124: -4.20257193e-15 - art_sys_125: -2.25590905e-18 - art_sys_126: -1.37042999e-15 - art_sys_127: -3.02122223e-19 - art_sys_128: -4.49476155e-16 - art_sys_129: -7.29612540e-19 - art_sys_130: -1.37629628e-16 - art_sys_131: -1.63297006e-20 - art_sys_132: 8.28534574e-19 - art_sys_133: -3.96127126e-17 - art_sys_134: -2.06510174e-22 - art_sys_135: 7.44880317e-19 - art_sys_136: 1.33935792e-17 - art_sys_137: 4.02179819e-23 - art_sys_138: 2.43576704e-20 - art_sys_139: -3.03763649e-20 - art_sys_140: -1.88922056e-18 - art_sys_141: -4.64548680e-19 - art_sys_142: -8.00315337e-20 - art_sys_143: 8.61403613e-24 - art_sys_144: 1.36311132e-23 - art_sys_145: 1.12910959e-22 - art_sys_146: -0.0 - art_sys_147: 2.48346315e-21 - art_sys_148: -3.03441916e-20 - art_sys_149: -3.03441916e-20 - art_sys_150: 1.10317376e-20 - art_sys_151: 1.10317376e-20 - art_sys_152: -5.16275843e-20 - art_sys_153: 6.39403569e-22 - art_sys_154: 2.67202512e-24 - art_sys_155: 1.10642401e-32 - art_sys_156: 1.21841877e-35 - art_sys_157: 7.92265562e-36 + art_sys_25: -6.33356162e-74 + art_sys_26: -3.31780906e-68 + art_sys_27: 2.08385485e-61 + art_sys_28: -1.24674942e-60 + art_sys_29: -4.78859772e-50 + art_sys_30: -3.89208615e-47 + art_sys_31: -1.82058161e-44 + art_sys_32: 2.17478283e-36 + art_sys_33: 6.51738313e-31 + art_sys_34: 6.57107013e-24 + art_sys_35: 4.60645964e-25 + art_sys_36: -1.38300030e+01 + art_sys_37: -1.93283491e+01 + art_sys_38: -5.05245959e+01 + art_sys_39: 1.18890768e+01 + art_sys_40: -4.55413650e-01 + art_sys_41: 2.82448384e-01 + art_sys_42: -1.97899849e-01 + art_sys_43: 5.24979136e-02 + art_sys_44: 2.99902824e-04 + art_sys_45: -1.34610509e-04 + art_sys_46: 5.51993532e-05 + art_sys_47: 8.85310978e-20 + art_sys_48: -6.13025746e-19 + art_sys_49: -6.52195303e-19 + art_sys_50: 4.77421574e-06 + art_sys_51: -2.22113652e-06 + art_sys_52: 1.01523920e-19 + art_sys_53: -1.55519193e-19 + art_sys_54: 7.68834863e-20 + art_sys_55: -1.01909268e-18 + art_sys_56: 3.57026867e-19 + art_sys_57: -5.41512029e-07 + art_sys_58: 4.51941217e-08 + art_sys_59: 1.03620479e-19 + art_sys_60: 8.30512223e-20 + art_sys_61: -2.02558388e-08 + art_sys_62: 2.04267997e-19 + art_sys_63: 1.17997785e-19 + art_sys_64: 5.57020017e-15 + art_sys_65: 4.46617686e-16 + art_sys_66: 2.84265876e-16 + art_sys_67: 1.53051590e-17 + art_sys_68: 1.16370415e-18 + art_sys_69: -4.63250706e-19 + art_sys_70: -6.64094481e-20 + art_sys_71: -6.64864711e-21 + art_sys_72: 3.12470526e-21 + art_sys_73: -6.46452249e-21 + art_sys_74: 3.74366546e-09 + art_sys_75: -3.58753609e-21 + art_sys_76: -2.67464571e-21 + art_sys_77: 2.57149010e-22 + art_sys_78: -1.77902714e-22 + art_sys_79: -8.11841292e-20 + art_sys_80: -2.92038731e-22 + art_sys_81: -1.06747601e-19 + art_sys_82: 9.06357986e-21 + art_sys_83: 3.74884364e-23 + art_sys_84: 2.95198874e-23 + art_sys_85: -4.04996228e-24 + art_sys_86: 4.79094315e-24 + art_sys_87: -9.42078648e-19 + art_sys_88: -4.51559664e-20 + art_sys_89: -2.32990887e-24 + art_sys_90: 2.11212920e-21 + art_sys_91: 1.74140982e-20 + art_sys_92: 2.23354890e-24 + art_sys_93: -2.42636351e-25 + art_sys_94: -4.60954464e-20 + art_sys_95: 2.41747277e-11 + art_sys_96: -1.33944100e-20 + art_sys_97: -4.73674102e-20 + art_sys_98: -1.03346072e-11 + art_sys_99: -3.25826255e-20 + art_sys_100: 6.48251841e-12 + art_sys_101: 6.47439692e-18 + art_sys_102: -3.12271323e-12 + art_sys_103: 4.89866196e-18 + art_sys_104: 8.94432154e-18 + art_sys_105: -5.79946263e-21 + art_sys_106: -4.17423586e-17 + art_sys_107: 1.55748239e-12 + art_sys_108: -9.41492482e-21 + art_sys_109: -3.68868754e-20 + art_sys_110: -6.87185784e-13 + art_sys_111: -8.58180843e-20 + art_sys_112: 1.41099693e-17 + art_sys_113: -1.36846069e-18 + art_sys_114: -1.81640950e-20 + art_sys_115: 1.82756718e-19 + art_sys_116: -2.66589560e-13 + art_sys_117: -6.48040520e-20 + art_sys_118: 2.53814054e-18 + art_sys_119: 9.81300453e-14 + art_sys_120: 1.96096936e-18 + art_sys_121: 9.48453484e-21 + art_sys_122: 1.63224951e-18 + art_sys_123: 3.55109200e-14 + art_sys_124: -7.91407491e-19 + art_sys_125: -9.50314195e-21 + art_sys_126: -4.80773307e-19 + art_sys_127: -1.18334493e-14 + art_sys_128: 1.34694713e-18 + art_sys_129: -9.40913137e-23 + art_sys_130: 4.20064069e-15 + art_sys_131: 6.00098799e-21 + art_sys_132: -6.16271986e-18 + art_sys_133: 1.36572097e-15 + art_sys_134: 2.82339820e-18 + art_sys_135: 3.74042289e-19 + art_sys_136: 5.92202386e-22 + art_sys_137: 4.49489598e-16 + art_sys_138: 4.76707316e-19 + art_sys_139: 1.35949641e-16 + art_sys_140: 1.37715683e-22 + art_sys_141: 9.14998492e-19 + art_sys_142: -4.36667909e-19 + art_sys_143: 4.16982204e-17 + art_sys_144: -1.91882437e-21 + art_sys_145: -3.31528530e-19 + art_sys_146: 1.40141074e-17 + art_sys_147: -3.42248124e-22 + art_sys_148: -2.92076899e-23 + art_sys_149: 1.12195066e-19 + art_sys_150: 1.76785234e-18 + art_sys_151: -6.75051719e-20 + art_sys_152: 9.00956378e-23 + art_sys_153: -1.98300739e-19 + art_sys_154: 2.27407750e-19 + art_sys_155: -7.08134745e-23 + art_sys_156: -0.0 + art_sys_157: -1.05499148e-19 art_sys_158: -0.0 - art_sys_159: 4.41033766e-19 - art_sys_160: 1.39261247e-20 - art_sys_161: 1.39401138e-19 - art_sys_162: 3.27666623e-21 - art_sys_163: -1.94940869e-21 - art_sys_164: -6.49196478e-21 - art_sys_165: -7.80974578e-23 - art_sys_166: 8.49202033e-30 - art_sys_167: 1.56314147e-29 - art_sys_168: -2.98857030e-30 - art_sys_169: 6.03779158e-30 - art_sys_170: 2.30325029e-29 - art_sys_171: 2.50412854e-30 - art_sys_172: -5.21445987e-28 - art_sys_173: -2.05786758e-28 - art_sys_174: -4.55651347e-29 - art_sys_175: -3.67314320e-35 - art_sys_176: -7.22753845e-30 - art_sys_177: 2.26468036e-30 - art_sys_178: -4.69532468e-31 - art_sys_179: 2.82902567e-32 - art_sys_180: -9.81765309e-32 - art_sys_181: 4.36591694e-34 - art_sys_182: -1.81343632e-33 - art_sys_183: -5.02623501e-35 - art_sys_184: 3.84267833e-38 - art_sys_185: -2.81053270e-37 + art_sys_159: -1.52209788e-20 + art_sys_160: -3.44664725e-21 + art_sys_161: 9.68917695e-22 + art_sys_162: 9.68917695e-22 + art_sys_163: 1.31322345e-21 + art_sys_164: 1.31322345e-21 + art_sys_165: -1.44107472e-35 + art_sys_166: 4.76503603e-36 + art_sys_167: 0.0 + art_sys_168: 2.69224383e-29 + art_sys_169: -1.18030871e-28 + art_sys_170: 7.17306338e-29 + art_sys_171: -5.41594594e-28 + art_sys_172: -5.26901218e-29 + art_sys_173: 2.75379301e-31 + art_sys_174: 5.29901145e-31 + art_sys_175: 3.76464298e-30 + art_sys_176: -3.84380652e-31 + art_sys_177: 7.50818850e-32 + art_sys_178: -6.18478439e-33 + art_sys_179: 1.90812425e-35 + art_sys_180: -3.56099283e-34 + art_sys_181: 7.65198610e-33 + art_sys_182: 8.78265193e-32 + art_sys_183: -2.73663945e-33 + art_sys_184: 1.89019647e-35 + art_sys_185: 1.80063065e-37 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -18596,167 +18596,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: -1.29952067e+00 - art_sys_26: 3.01317656e+00 - art_sys_27: -2.48796212e+00 - art_sys_28: -2.18801198e-18 - art_sys_29: 9.90297018e-19 - art_sys_30: 3.01983922e+00 - art_sys_31: -4.63153544e+00 - art_sys_32: -8.83091587e-01 - art_sys_33: 1.06656367e+00 - art_sys_34: 1.18741079e-17 - art_sys_35: -3.68353602e-18 - art_sys_36: 4.13794428e-18 - art_sys_37: -7.40470921e-19 - art_sys_38: 2.71044122e-01 - art_sys_39: -8.62454531e-18 - art_sys_40: 5.62752833e-18 - art_sys_41: 1.91538369e-18 - art_sys_42: 7.28061826e-19 - art_sys_43: 1.60629334e-03 - art_sys_44: -8.27297281e-04 - art_sys_45: -3.13362645e-04 - art_sys_46: -7.66725106e-19 - art_sys_47: -6.85231102e-19 - art_sys_48: -4.13198115e-18 - art_sys_49: 2.58989276e-15 - art_sys_50: -1.99312888e-17 - art_sys_51: 4.33083990e-17 - art_sys_52: -3.82069166e-17 - art_sys_53: -1.21463230e-18 - art_sys_54: 1.68388931e-19 - art_sys_55: -2.97507106e-05 - art_sys_56: -1.32950180e-05 - art_sys_57: -2.25571936e-15 - art_sys_58: -2.43407152e-19 - art_sys_59: 5.43363828e-20 - art_sys_60: -3.31095109e-16 - art_sys_61: 1.69870220e-15 - art_sys_62: 8.04026899e-17 - art_sys_63: 3.23234398e-06 - art_sys_64: -7.00048537e-19 - art_sys_65: -1.96442890e-21 - art_sys_66: 2.07101307e-21 - art_sys_67: -5.70917715e-17 - art_sys_68: 2.86397855e-07 - art_sys_69: 1.20173977e-07 - art_sys_70: -6.25253645e-16 - art_sys_71: -5.02378276e-18 - art_sys_72: -5.18524020e-18 - art_sys_73: -2.90170362e-20 - art_sys_74: -5.90876373e-20 - art_sys_75: -5.89162547e-22 - art_sys_76: 2.26228732e-18 - art_sys_77: -7.76404332e-16 - art_sys_78: -2.28126127e-08 - art_sys_79: 7.26877336e-22 - art_sys_80: -1.39741477e-17 - art_sys_81: 2.48482989e-23 - art_sys_82: 2.09469500e-22 - art_sys_83: -4.99147579e-21 - art_sys_84: -8.51846672e-23 - art_sys_85: 3.61002127e-23 - art_sys_86: 1.32177434e-19 - art_sys_87: 9.74787766e-18 - art_sys_88: -4.13978495e-20 - art_sys_89: 4.04412693e-22 - art_sys_90: -4.69025547e-18 - art_sys_91: 1.15574216e-10 - art_sys_92: 3.91770354e-18 - art_sys_93: 1.14885369e-16 - art_sys_94: -1.01589769e-16 - art_sys_95: -5.55799617e-11 - art_sys_96: 1.88196120e-20 - art_sys_97: -3.43458975e-11 - art_sys_98: 1.27425386e-17 - art_sys_99: -8.03149687e-19 - art_sys_100: 1.64798933e-11 - art_sys_101: 3.04269123e-17 - art_sys_102: -2.55127353e-17 - art_sys_103: 8.35875302e-12 - art_sys_104: -4.22264223e-18 - art_sys_105: -2.00230358e-19 - art_sys_106: 1.95838882e-17 - art_sys_107: -4.56243348e-19 - art_sys_108: 2.81741133e-20 - art_sys_109: 1.59624767e-19 - art_sys_110: 3.68479028e-12 - art_sys_111: 3.95946750e-17 - art_sys_112: 1.43871202e-12 - art_sys_113: -4.37881268e-20 - art_sys_114: -1.09005857e-16 - art_sys_115: 5.31257603e-13 - art_sys_116: -6.72050436e-17 - art_sys_117: 5.30010055e-18 - art_sys_118: 1.92631982e-13 - art_sys_119: -1.65774224e-17 - art_sys_120: -5.70910040e-18 - art_sys_121: -6.43523738e-14 - art_sys_122: -8.22617222e-18 - art_sys_123: 4.66128682e-18 - art_sys_124: 2.28799853e-14 - art_sys_125: 1.21948440e-17 - art_sys_126: 7.47172212e-15 - art_sys_127: 1.67468762e-18 - art_sys_128: 2.45205031e-15 - art_sys_129: 3.87887479e-18 - art_sys_130: 7.51202340e-16 - art_sys_131: 9.46794469e-20 - art_sys_132: -4.49706441e-18 - art_sys_133: 2.16313003e-16 - art_sys_134: 1.13317457e-21 - art_sys_135: -4.05263189e-18 - art_sys_136: -7.31457435e-17 - art_sys_137: -2.18115092e-22 - art_sys_138: -1.17717612e-19 - art_sys_139: 1.71328995e-19 - art_sys_140: 1.03223348e-17 - art_sys_141: 2.52972107e-18 - art_sys_142: 4.33705943e-19 - art_sys_143: -4.72441904e-23 - art_sys_144: -7.45417049e-23 - art_sys_145: -6.17254748e-22 - art_sys_146: 0.0 - art_sys_147: -1.35775990e-20 - art_sys_148: 1.65811569e-19 - art_sys_149: 1.65811569e-19 - art_sys_150: -5.98753200e-20 - art_sys_151: -5.98753200e-20 - art_sys_152: 2.80686300e-19 - art_sys_153: -3.45638171e-21 - art_sys_154: -1.45200647e-23 - art_sys_155: -6.01177233e-32 - art_sys_156: -6.59444169e-35 - art_sys_157: -4.28493061e-35 + art_sys_25: -5.94715558e-75 + art_sys_26: -3.11539192e-69 + art_sys_27: 1.95672036e-62 + art_sys_28: -1.17068614e-61 + art_sys_29: -4.49644882e-51 + art_sys_30: -3.65463277e-48 + art_sys_31: -1.70950924e-45 + art_sys_32: 2.04210090e-37 + art_sys_33: 6.11976228e-32 + art_sys_34: 6.17017387e-25 + art_sys_35: 4.32542285e-26 + art_sys_36: -1.29952067e+00 + art_sys_37: 3.01317656e+00 + art_sys_38: -2.48796212e+00 + art_sys_39: 3.01983922e+00 + art_sys_40: 4.63153544e+00 + art_sys_41: -8.83091587e-01 + art_sys_42: 1.06656367e+00 + art_sys_43: -2.71044122e-01 + art_sys_44: -1.60629334e-03 + art_sys_45: 8.27297281e-04 + art_sys_46: -3.13362645e-04 + art_sys_47: 1.35572567e-18 + art_sys_48: 4.05944951e-19 + art_sys_49: -2.31449291e-20 + art_sys_50: -2.97507106e-05 + art_sys_51: 1.32950180e-05 + art_sys_52: 5.36960224e-19 + art_sys_53: 4.78776112e-19 + art_sys_54: -9.47816504e-19 + art_sys_55: 1.42181649e-18 + art_sys_56: -5.93011160e-20 + art_sys_57: 3.23234398e-06 + art_sys_58: -2.86397865e-07 + art_sys_59: 2.31610889e-19 + art_sys_60: -3.25744582e-19 + art_sys_61: 1.20173977e-07 + art_sys_62: -1.25528888e-19 + art_sys_63: 1.45568969e-19 + art_sys_64: 5.75582848e-15 + art_sys_65: -1.41911450e-15 + art_sys_66: 2.38680552e-16 + art_sys_67: -7.04086762e-17 + art_sys_68: 1.94616936e-18 + art_sys_69: -3.03615256e-19 + art_sys_70: -1.18539391e-19 + art_sys_71: -1.27864615e-20 + art_sys_72: 3.88825660e-22 + art_sys_73: -4.34124605e-21 + art_sys_74: -2.28126126e-08 + art_sys_75: -2.29818131e-21 + art_sys_76: 1.30098948e-20 + art_sys_77: -1.43924002e-21 + art_sys_78: 1.05316356e-21 + art_sys_79: 5.73619544e-20 + art_sys_80: 1.47424033e-21 + art_sys_81: 9.82297649e-20 + art_sys_82: 2.90748853e-19 + art_sys_83: -1.86873164e-22 + art_sys_84: -1.47480185e-22 + art_sys_85: 1.58997149e-23 + art_sys_86: -2.21849671e-23 + art_sys_87: 4.99430770e-18 + art_sys_88: 2.47870615e-19 + art_sys_89: 1.14581511e-23 + art_sys_90: -1.03047932e-20 + art_sys_91: 5.60439594e-21 + art_sys_92: -1.14253288e-23 + art_sys_93: 1.50062768e-24 + art_sys_94: 2.46940072e-19 + art_sys_95: -1.15574233e-10 + art_sys_96: -1.56795313e-19 + art_sys_97: 1.04177556e-19 + art_sys_98: 5.55799836e-11 + art_sys_99: 8.59355399e-19 + art_sys_100: -3.43456822e-11 + art_sys_101: -3.45613766e-17 + art_sys_102: 1.64799826e-11 + art_sys_103: -2.60995481e-17 + art_sys_104: -4.19101948e-17 + art_sys_105: 3.16787006e-20 + art_sys_106: 2.19011567e-16 + art_sys_107: -8.35876172e-12 + art_sys_108: 5.22923830e-20 + art_sys_109: 2.00924937e-19 + art_sys_110: 3.68492082e-12 + art_sys_111: -3.14122122e-18 + art_sys_112: -7.56451897e-17 + art_sys_113: 7.18238423e-18 + art_sys_114: 9.90196695e-20 + art_sys_115: -1.00404421e-18 + art_sys_116: 1.43871481e-12 + art_sys_117: 3.53059235e-19 + art_sys_118: -1.38523641e-17 + art_sys_119: -5.31244707e-13 + art_sys_120: -1.05006172e-17 + art_sys_121: -5.19250314e-20 + art_sys_122: -8.28797525e-18 + art_sys_123: -1.92622556e-13 + art_sys_124: 4.13869782e-18 + art_sys_125: 5.18253609e-20 + art_sys_126: 2.61008498e-18 + art_sys_127: 6.43754762e-14 + art_sys_128: -7.09438659e-18 + art_sys_129: 3.12709917e-22 + art_sys_130: -2.28694842e-14 + art_sys_131: -3.27772307e-20 + art_sys_132: 3.30379883e-17 + art_sys_133: -7.44609046e-15 + art_sys_134: -1.52846488e-17 + art_sys_135: -1.97172902e-18 + art_sys_136: -3.21332552e-21 + art_sys_137: -2.45213712e-15 + art_sys_138: -2.58926309e-18 + art_sys_139: -7.42055413e-16 + art_sys_140: -7.50403557e-22 + art_sys_141: -4.98981640e-18 + art_sys_142: 2.36569261e-18 + art_sys_143: -2.27668030e-16 + art_sys_144: 1.04393878e-20 + art_sys_145: 1.79319805e-18 + art_sys_146: -7.65291700e-17 + art_sys_147: 1.86945346e-21 + art_sys_148: 1.59465053e-22 + art_sys_149: -6.04042796e-19 + art_sys_150: -9.65675865e-18 + art_sys_151: 3.65653197e-19 + art_sys_152: -4.93077142e-22 + art_sys_153: 1.08233159e-18 + art_sys_154: -1.22177737e-18 + art_sys_155: 3.85076622e-22 + art_sys_156: 0.0 + art_sys_157: 5.67931812e-19 art_sys_158: 0.0 - art_sys_159: -2.40379692e-18 - art_sys_160: -7.58694866e-20 - art_sys_161: -7.60753012e-19 - art_sys_162: -1.78809633e-20 - art_sys_163: 1.09365363e-20 - art_sys_164: 3.54604127e-20 - art_sys_165: 4.39947887e-22 - art_sys_166: -7.66671848e-29 - art_sys_167: -8.53288413e-29 - art_sys_168: 1.53769500e-29 - art_sys_169: 5.33521125e-30 - art_sys_170: 2.09716475e-29 - art_sys_171: 6.02164535e-29 - art_sys_172: -4.33536484e-28 - art_sys_173: 1.15413803e-28 - art_sys_174: 2.26279139e-29 - art_sys_175: 2.00530541e-34 - art_sys_176: 2.69432626e-31 - art_sys_177: 1.00737388e-30 - art_sys_178: 7.84967056e-32 - art_sys_179: -8.19033343e-33 - art_sys_180: 1.39640688e-31 - art_sys_181: 7.78154981e-33 - art_sys_182: 1.56947618e-32 - art_sys_183: 2.57749856e-34 - art_sys_184: 1.76321349e-37 - art_sys_185: 1.53381697e-36 + art_sys_159: 8.19506714e-20 + art_sys_160: 1.85380851e-20 + art_sys_161: -5.33307489e-21 + art_sys_162: -5.33307489e-21 + art_sys_163: -7.10040016e-21 + art_sys_164: -7.10040016e-21 + art_sys_165: 7.80728068e-35 + art_sys_166: -2.58232174e-35 + art_sys_167: -0.0 + art_sys_168: -1.80358845e-29 + art_sys_169: 1.79567661e-28 + art_sys_170: -8.64006333e-29 + art_sys_171: -1.13417578e-28 + art_sys_172: -2.06193839e-28 + art_sys_173: -1.21322425e-29 + art_sys_174: -1.37407882e-29 + art_sys_175: -1.26085958e-30 + art_sys_176: 1.92969246e-32 + art_sys_177: -4.12503390e-31 + art_sys_178: 2.79364541e-32 + art_sys_179: -1.03226803e-34 + art_sys_180: 1.91897977e-33 + art_sys_181: 2.19472588e-32 + art_sys_182: -8.26802388e-32 + art_sys_183: -2.17685221e-33 + art_sys_184: -2.89266105e-35 + art_sys_185: -5.93419864e-37 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -18887,167 +18887,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: 5.47294573e-01 - art_sys_26: 1.13898951e+00 - art_sys_27: 2.58247733e+00 - art_sys_28: 3.82686638e-19 - art_sys_29: -8.62197457e-19 - art_sys_30: -6.79556819e-01 - art_sys_31: -2.73763425e+00 - art_sys_32: 2.21566859e+00 - art_sys_33: -1.26807733e+00 - art_sys_34: 5.35673105e-19 - art_sys_35: 2.87278955e-19 - art_sys_36: 2.53665138e-17 - art_sys_37: 1.52258690e-18 - art_sys_38: -5.56702667e-01 - art_sys_39: -9.76952075e-18 - art_sys_40: 1.64705214e-18 - art_sys_41: -1.52553678e-18 - art_sys_42: -1.79010068e-18 - art_sys_43: -3.73157574e-03 - art_sys_44: 2.12658092e-03 - art_sys_45: 9.54438016e-04 - art_sys_46: -9.43255379e-19 - art_sys_47: 8.52972044e-19 - art_sys_48: 2.13064656e-17 - art_sys_49: 1.51366833e-16 - art_sys_50: 1.00432728e-16 - art_sys_51: -1.65391213e-16 - art_sys_52: -2.56662614e-17 - art_sys_53: 5.08083591e-18 - art_sys_54: -9.34641985e-19 - art_sys_55: 8.79516336e-05 - art_sys_56: 4.29643582e-05 - art_sys_57: 6.66570094e-15 - art_sys_58: 8.18162473e-20 - art_sys_59: -9.64125047e-21 - art_sys_60: 1.06940353e-15 - art_sys_61: -5.49118186e-15 - art_sys_62: -2.55252899e-16 - art_sys_63: -1.07414560e-05 - art_sys_64: 1.71607535e-18 - art_sys_65: 6.85671017e-21 - art_sys_66: -7.35303952e-21 - art_sys_67: 1.90824311e-16 - art_sys_68: -9.53829619e-07 - art_sys_69: -4.21457781e-07 - art_sys_70: 2.07850982e-15 - art_sys_71: 1.69171136e-17 - art_sys_72: 1.58052637e-17 - art_sys_73: 1.25536914e-19 - art_sys_74: 2.08084924e-19 - art_sys_75: 2.13867278e-21 - art_sys_76: -7.91145580e-18 - art_sys_77: 2.59196779e-15 - art_sys_78: 7.97728186e-08 - art_sys_79: -2.84229682e-21 - art_sys_80: 6.89518370e-17 - art_sys_81: -9.84628935e-23 - art_sys_82: -9.73622203e-22 - art_sys_83: 4.43838851e-20 - art_sys_84: 4.19511665e-22 - art_sys_85: -1.58888681e-22 - art_sys_86: -5.61144008e-19 - art_sys_87: -3.40836936e-17 - art_sys_88: 1.92017738e-19 - art_sys_89: -1.66467007e-21 - art_sys_90: 1.73681160e-17 - art_sys_91: -5.70421999e-10 - art_sys_92: -1.39739869e-17 - art_sys_93: -3.83369801e-16 - art_sys_94: 3.55416842e-16 - art_sys_95: 2.17215452e-10 - art_sys_96: -7.78763237e-20 - art_sys_97: 1.47391471e-10 - art_sys_98: -4.40857042e-17 - art_sys_99: 2.65115715e-18 - art_sys_100: -6.93955663e-11 - art_sys_101: -1.48938174e-16 - art_sys_102: 1.26903971e-16 - art_sys_103: -3.48770484e-11 - art_sys_104: 1.47792123e-17 - art_sys_105: 1.99126378e-18 - art_sys_106: -8.18087138e-17 - art_sys_107: 1.88422861e-18 - art_sys_108: -1.18137876e-19 - art_sys_109: -6.59119901e-19 - art_sys_110: -1.53936238e-11 - art_sys_111: -1.70133774e-16 - art_sys_112: -5.97453745e-12 - art_sys_113: 1.81197804e-19 - art_sys_114: 4.65036282e-16 - art_sys_115: -2.20332289e-12 - art_sys_116: 2.80736876e-16 - art_sys_117: -2.08153189e-17 - art_sys_118: -7.97280683e-13 - art_sys_119: 6.96432846e-17 - art_sys_120: 2.38312055e-17 - art_sys_121: 2.65798166e-13 - art_sys_122: 3.41652831e-17 - art_sys_123: -1.94299026e-17 - art_sys_124: -9.44493848e-14 - art_sys_125: -5.06566606e-17 - art_sys_126: -3.08042110e-14 - art_sys_127: -7.06462013e-18 - art_sys_128: -1.01057583e-14 - art_sys_129: -1.61373809e-17 - art_sys_130: -3.09439656e-15 - art_sys_131: -3.71182763e-19 - art_sys_132: 1.87208143e-17 - art_sys_133: -8.90752600e-16 - art_sys_134: -4.64953675e-21 - art_sys_135: 1.67725589e-17 - art_sys_136: 3.01176692e-16 - art_sys_137: 8.99900053e-22 - art_sys_138: 5.59214820e-19 - art_sys_139: -7.15011464e-19 - art_sys_140: -4.24887860e-17 - art_sys_141: -1.04371153e-17 - art_sys_142: -1.80103775e-18 - art_sys_143: 1.93810427e-22 - art_sys_144: 3.06859943e-22 - art_sys_145: 2.54278645e-21 - art_sys_146: -0.0 - art_sys_147: 5.61977881e-20 - art_sys_148: -6.87227620e-19 - art_sys_149: -6.87227620e-19 - art_sys_150: 2.47044990e-19 - art_sys_151: 2.47044990e-19 - art_sys_152: -1.16418963e-18 - art_sys_153: 1.45247432e-20 - art_sys_154: 5.96702450e-23 - art_sys_155: 2.49459515e-31 - art_sys_156: 2.73487042e-34 - art_sys_157: 1.77725957e-34 + art_sys_25: 2.50669743e-75 + art_sys_26: 1.31312268e-69 + art_sys_27: -8.24748204e-63 + art_sys_28: 4.93438566e-62 + art_sys_29: 1.89523151e-51 + art_sys_30: 1.54041011e-48 + art_sys_31: 7.20549906e-46 + art_sys_32: -8.60735689e-38 + art_sys_33: -2.57945031e-32 + art_sys_34: -2.60069856e-25 + art_sys_35: -1.82314489e-26 + art_sys_36: 5.47294573e-01 + art_sys_37: 1.13898951e+00 + art_sys_38: 2.58247733e+00 + art_sys_39: -6.79556819e-01 + art_sys_40: 2.73763425e+00 + art_sys_41: 2.21566859e+00 + art_sys_42: -1.26807733e+00 + art_sys_43: 5.56702667e-01 + art_sys_44: 3.73157574e-03 + art_sys_45: -2.12658092e-03 + art_sys_46: 9.54438016e-04 + art_sys_47: -9.73589736e-19 + art_sys_48: -2.45852247e-19 + art_sys_49: -3.61578386e-18 + art_sys_50: 8.79516336e-05 + art_sys_51: -4.29643582e-05 + art_sys_52: -2.55002102e-19 + art_sys_53: 2.27465080e-19 + art_sys_54: 2.71556746e-19 + art_sys_55: 1.79024795e-18 + art_sys_56: -7.50775506e-19 + art_sys_57: -1.07414560e-05 + art_sys_58: 9.53829653e-07 + art_sys_59: 2.39403305e-19 + art_sys_60: 7.10430618e-20 + art_sys_61: -4.21457781e-07 + art_sys_62: 2.04098582e-19 + art_sys_63: -1.25519856e-19 + art_sys_64: -1.37052574e-15 + art_sys_65: 3.97258610e-16 + art_sys_66: -1.75275019e-16 + art_sys_67: -2.16686037e-17 + art_sys_68: -4.61182140e-19 + art_sys_69: 1.01996157e-19 + art_sys_70: 7.60121002e-20 + art_sys_71: 1.67112459e-20 + art_sys_72: 7.81549069e-22 + art_sys_73: -3.30034073e-21 + art_sys_74: 7.97728182e-08 + art_sys_75: -3.87514387e-21 + art_sys_76: -6.30357662e-20 + art_sys_77: 4.69442968e-21 + art_sys_78: -3.62580100e-21 + art_sys_79: 3.47900846e-20 + art_sys_80: -6.55999073e-21 + art_sys_81: 7.51684871e-20 + art_sys_82: -1.17643050e-18 + art_sys_83: 8.76706664e-22 + art_sys_84: 6.96140680e-22 + art_sys_85: -9.70418448e-23 + art_sys_86: 1.14791214e-22 + art_sys_87: -2.13206611e-17 + art_sys_88: -1.02013813e-18 + art_sys_89: -5.28899937e-23 + art_sys_90: 4.57859429e-20 + art_sys_91: 2.11553804e-19 + art_sys_92: 4.97194359e-23 + art_sys_93: -3.93949626e-24 + art_sys_94: -1.02015558e-18 + art_sys_95: 5.70422085e-10 + art_sys_96: 1.14816051e-18 + art_sys_97: -5.79196018e-19 + art_sys_98: -2.17215542e-10 + art_sys_99: 5.23493207e-19 + art_sys_100: 1.47390545e-10 + art_sys_101: 1.49408727e-16 + art_sys_102: -6.93959424e-11 + art_sys_103: 1.11469041e-16 + art_sys_104: 2.10170480e-16 + art_sys_105: -1.32335196e-19 + art_sys_106: -9.21122623e-16 + art_sys_107: 3.48770848e-11 + art_sys_108: -2.14458958e-19 + art_sys_109: -8.29032407e-19 + art_sys_110: -1.53941691e-11 + art_sys_111: -6.39418184e-18 + art_sys_112: 3.16015782e-16 + art_sys_113: -3.02204380e-17 + art_sys_114: -4.08348163e-19 + art_sys_115: 4.10106206e-18 + art_sys_116: -5.97454904e-12 + art_sys_117: -1.45572687e-18 + art_sys_118: 5.87132003e-17 + art_sys_119: 2.20326939e-12 + art_sys_120: 4.37800715e-17 + art_sys_121: 2.13105965e-19 + art_sys_122: 3.46562780e-17 + art_sys_123: 7.97241675e-13 + art_sys_124: -1.73159029e-17 + art_sys_125: -2.13447789e-19 + art_sys_126: -1.08454033e-17 + art_sys_127: -2.65893596e-13 + art_sys_128: 2.89775079e-17 + art_sys_129: -1.18158422e-21 + art_sys_130: 9.44059900e-14 + art_sys_131: 1.35181649e-19 + art_sys_132: -1.37983262e-16 + art_sys_133: 3.06983911e-14 + art_sys_134: 6.33828651e-17 + art_sys_135: 8.02069410e-18 + art_sys_136: 1.31784031e-20 + art_sys_137: 1.01060700e-14 + art_sys_138: 1.07191206e-17 + art_sys_139: 3.05664387e-15 + art_sys_140: 3.10174283e-21 + art_sys_141: 2.05691450e-17 + art_sys_142: -9.78963340e-18 + art_sys_143: 9.37620453e-16 + art_sys_144: -4.31023970e-20 + art_sys_145: -7.41616916e-18 + art_sys_146: 3.15125637e-16 + art_sys_147: -7.69949285e-21 + art_sys_148: -6.56840158e-22 + art_sys_149: 2.49883674e-18 + art_sys_150: 3.97535907e-17 + art_sys_151: -1.51247519e-18 + art_sys_152: 2.02869294e-21 + art_sys_153: -4.45578320e-18 + art_sys_154: 5.08376300e-18 + art_sys_155: -1.57576142e-21 + art_sys_156: -0.0 + art_sys_157: -2.34718127e-18 art_sys_158: -0.0 - art_sys_159: 9.91303689e-18 - art_sys_160: 3.12984970e-19 - art_sys_161: 3.13431785e-18 - art_sys_162: 7.36913986e-20 - art_sys_163: -4.39477081e-20 - art_sys_164: -1.46077954e-19 - art_sys_165: -1.82531387e-21 - art_sys_166: 3.09927701e-28 - art_sys_167: 3.56422147e-28 - art_sys_168: -5.96201810e-29 - art_sys_169: 2.18514864e-29 - art_sys_170: 1.08773617e-29 - art_sys_171: 3.27803202e-29 - art_sys_172: -8.80503139e-28 - art_sys_173: 1.76131978e-28 - art_sys_174: 6.20473407e-29 - art_sys_175: -8.28302505e-34 - art_sys_176: 2.77756977e-30 - art_sys_177: -3.38924267e-30 - art_sys_178: 7.40782274e-32 - art_sys_179: 1.61852018e-32 - art_sys_180: 4.20740981e-31 - art_sys_181: 2.75836051e-33 - art_sys_182: -6.57749526e-32 - art_sys_183: -1.16753178e-33 - art_sys_184: -5.52328693e-37 - art_sys_185: -6.31662645e-36 + art_sys_159: -3.38019941e-19 + art_sys_160: -7.65016504e-20 + art_sys_161: 2.19609971e-20 + art_sys_162: 2.19609971e-20 + art_sys_163: 2.93596044e-20 + art_sys_164: 2.93596044e-20 + art_sys_165: -3.22665504e-34 + art_sys_166: 1.06726675e-34 + art_sys_167: 0.0 + art_sys_168: -1.32196619e-28 + art_sys_169: 3.52364959e-29 + art_sys_170: -1.29086270e-28 + art_sys_171: -5.12684091e-28 + art_sys_172: -1.99030991e-28 + art_sys_173: -4.77642011e-29 + art_sys_174: -4.00758043e-29 + art_sys_175: 2.89237434e-31 + art_sys_176: -3.30423306e-31 + art_sys_177: 1.68992341e-30 + art_sys_178: -9.05830326e-32 + art_sys_179: 4.20442874e-34 + art_sys_180: -7.91870134e-33 + art_sys_181: -1.60679573e-31 + art_sys_182: -3.95813397e-32 + art_sys_183: 1.34006892e-33 + art_sys_184: 7.21134712e-35 + art_sys_185: 2.42334475e-36 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -19178,167 +19178,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: 1.48475353e-01 - art_sys_26: -1.06743364e-01 - art_sys_27: 3.09605307e-01 - art_sys_28: 1.54094621e-19 - art_sys_29: -1.08706082e-19 - art_sys_30: -3.73471351e-01 - art_sys_31: 4.12275208e-01 - art_sys_32: 3.13582620e+00 - art_sys_33: 7.61332956e-01 - art_sys_34: -1.24744879e-17 - art_sys_35: -2.26068069e-18 - art_sys_36: 1.00027054e-17 - art_sys_37: 1.01366152e-19 - art_sys_38: 6.46028916e-01 - art_sys_39: 6.48038315e-18 - art_sys_40: -5.66562364e-18 - art_sys_41: -4.31031483e-18 - art_sys_42: -1.49918809e-21 - art_sys_43: 1.61879527e-02 - art_sys_44: -6.61953534e-03 - art_sys_45: -3.09982033e-03 - art_sys_46: -1.65235085e-18 - art_sys_47: 3.62106892e-18 - art_sys_48: -6.83528334e-17 - art_sys_49: -1.80473428e-15 - art_sys_50: 1.89993564e-16 - art_sys_51: -1.97137936e-16 - art_sys_52: 2.29973958e-17 - art_sys_53: -1.15138979e-17 - art_sys_54: 2.11627959e-18 - art_sys_55: -3.03159843e-04 - art_sys_56: -1.37667499e-04 - art_sys_57: -2.29773982e-14 - art_sys_58: -8.73409800e-19 - art_sys_59: 2.06716392e-19 - art_sys_60: -3.42642021e-15 - art_sys_61: 1.75923047e-14 - art_sys_62: 8.21887326e-16 - art_sys_63: 3.51462624e-05 - art_sys_64: -2.39734311e-20 - art_sys_65: -2.58540646e-20 - art_sys_66: 2.51396408e-20 - art_sys_67: -6.22767723e-16 - art_sys_68: 3.05811663e-06 - art_sys_69: 1.32969525e-06 - art_sys_70: -6.80179964e-15 - art_sys_71: -5.45540415e-17 - art_sys_72: -5.19382865e-17 - art_sys_73: -3.24178556e-19 - art_sys_74: -6.59906837e-19 - art_sys_75: -7.08129288e-21 - art_sys_76: 2.52043583e-17 - art_sys_77: -8.30828621e-15 - art_sys_78: -2.54137882e-07 - art_sys_79: 8.79087392e-21 - art_sys_80: -1.57369175e-16 - art_sys_81: 3.01899220e-22 - art_sys_82: 2.40497653e-21 - art_sys_83: -8.97568952e-20 - art_sys_84: -9.71201237e-22 - art_sys_85: 4.03205340e-22 - art_sys_86: 1.65402347e-18 - art_sys_87: 1.08403490e-16 - art_sys_88: -5.40424769e-19 - art_sys_89: 8.32654977e-21 - art_sys_90: -5.49722031e-17 - art_sys_91: 1.30177901e-09 - art_sys_92: 4.45671854e-17 - art_sys_93: 1.22829525e-15 - art_sys_94: -1.13198744e-15 - art_sys_95: -6.77106339e-10 - art_sys_96: 2.27288554e-19 - art_sys_97: -3.98490841e-10 - art_sys_98: 1.43497846e-16 - art_sys_99: -8.58357641e-18 - art_sys_100: 1.96942670e-10 - art_sys_101: 3.38492326e-16 - art_sys_102: -2.88936591e-16 - art_sys_103: 9.95407894e-11 - art_sys_104: -4.69874910e-17 - art_sys_105: -2.94308865e-18 - art_sys_106: 2.37188504e-16 - art_sys_107: -5.49906896e-18 - art_sys_108: 3.46097267e-19 - art_sys_109: 1.92582143e-18 - art_sys_110: 4.41353695e-11 - art_sys_111: 4.60537547e-16 - art_sys_112: 1.72761500e-11 - art_sys_113: -5.30087553e-19 - art_sys_114: -1.27374373e-15 - art_sys_115: 6.38774813e-12 - art_sys_116: -8.04870732e-16 - art_sys_117: 7.40139134e-17 - art_sys_118: 2.32105473e-12 - art_sys_119: -2.01975534e-16 - art_sys_120: -6.83863511e-17 - art_sys_121: -7.75796682e-13 - art_sys_122: -9.78074639e-17 - art_sys_123: 5.57666559e-17 - art_sys_124: 2.76085414e-13 - art_sys_125: 1.46405426e-16 - art_sys_126: 9.01985297e-14 - art_sys_127: 2.04493761e-17 - art_sys_128: 2.96090807e-14 - art_sys_129: 4.60918126e-17 - art_sys_130: 9.07372576e-15 - art_sys_131: 1.18068964e-18 - art_sys_132: -5.43780237e-17 - art_sys_133: 2.61307950e-15 - art_sys_134: 1.37233174e-20 - art_sys_135: -4.87992950e-17 - art_sys_136: -8.83700027e-16 - art_sys_137: -2.62908644e-21 - art_sys_138: -1.32065832e-18 - art_sys_139: 2.11295931e-18 - art_sys_140: 1.24731472e-16 - art_sys_141: 3.05083868e-17 - art_sys_142: 5.22452846e-18 - art_sys_143: -5.71858650e-22 - art_sys_144: -9.01543571e-22 - art_sys_145: -7.46469129e-21 - art_sys_146: 0.0 - art_sys_147: -1.64627512e-19 - art_sys_148: 2.01056450e-18 - art_sys_149: 2.01056450e-18 - art_sys_150: -7.19942539e-19 - art_sys_151: -7.19942539e-19 - art_sys_152: 3.38547718e-18 - art_sys_153: -4.15655025e-20 - art_sys_154: -1.74498035e-22 - art_sys_155: -7.24749682e-31 - art_sys_156: -7.91397865e-34 - art_sys_157: -5.15563795e-34 + art_sys_25: 6.79687852e-76 + art_sys_26: 3.56051563e-70 + art_sys_27: -2.23629438e-63 + art_sys_28: 1.33795246e-62 + art_sys_29: 5.13889639e-52 + art_sys_30: 4.17680261e-49 + art_sys_31: 1.95376200e-46 + art_sys_32: -2.33387399e-38 + art_sys_33: -6.99414706e-33 + art_sys_34: -7.05176141e-26 + art_sys_35: -4.94343443e-27 + art_sys_36: 1.48475353e-01 + art_sys_37: -1.06743364e-01 + art_sys_38: 3.09605307e-01 + art_sys_39: -3.73471351e-01 + art_sys_40: -4.12275208e-01 + art_sys_41: 3.13582620e+00 + art_sys_42: 7.61332956e-01 + art_sys_43: -6.46028916e-01 + art_sys_44: -1.61879527e-02 + art_sys_45: 6.61953534e-03 + art_sys_46: -3.09982033e-03 + art_sys_47: 2.35277747e-18 + art_sys_48: -9.55722967e-19 + art_sys_49: -2.38515526e-18 + art_sys_50: -3.03159843e-04 + art_sys_51: 1.37667499e-04 + art_sys_52: 1.67418534e-18 + art_sys_53: 2.48443315e-19 + art_sys_54: 7.69291001e-19 + art_sys_55: -1.83959901e-19 + art_sys_56: 2.73341079e-19 + art_sys_57: 3.51462624e-05 + art_sys_58: -3.05811674e-06 + art_sys_59: 7.48804032e-20 + art_sys_60: 2.50688438e-19 + art_sys_61: 1.32969525e-06 + art_sys_62: -8.33245637e-20 + art_sys_63: -1.11374912e-19 + art_sys_64: -4.04259001e-15 + art_sys_65: -9.29370824e-16 + art_sys_66: -2.38745821e-16 + art_sys_67: 3.68464996e-17 + art_sys_68: -1.34134234e-18 + art_sys_69: 7.05674546e-19 + art_sys_70: 2.29776120e-20 + art_sys_71: -2.61321087e-20 + art_sys_72: -3.14953877e-21 + art_sys_73: 7.19555738e-21 + art_sys_74: -2.54137881e-07 + art_sys_75: 1.84125176e-20 + art_sys_76: 1.47216223e-19 + art_sys_77: -1.89938346e-20 + art_sys_78: 1.31529931e-20 + art_sys_79: -7.86460023e-20 + art_sys_80: 1.71133019e-20 + art_sys_81: -7.98972777e-20 + art_sys_82: 3.35607282e-18 + art_sys_83: -2.12016065e-21 + art_sys_84: -1.66372707e-21 + art_sys_85: 1.74584482e-22 + art_sys_86: -2.50898331e-22 + art_sys_87: 5.75357362e-17 + art_sys_88: 2.90951098e-18 + art_sys_89: 1.32388509e-22 + art_sys_90: -1.31498647e-19 + art_sys_91: -1.66656853e-19 + art_sys_92: -1.34695219e-22 + art_sys_93: 1.98788783e-23 + art_sys_94: 2.95962343e-18 + art_sys_95: -1.30177921e-09 + art_sys_96: -3.08924414e-18 + art_sys_97: 8.26590850e-19 + art_sys_98: 6.77106596e-10 + art_sys_99: 1.21279898e-17 + art_sys_100: -3.98488346e-10 + art_sys_101: -4.02939522e-16 + art_sys_102: 1.96943738e-10 + art_sys_103: -3.03612300e-16 + art_sys_104: -4.77692324e-16 + art_sys_105: 3.86762109e-19 + art_sys_106: 2.59967043e-15 + art_sys_107: -9.95408938e-11 + art_sys_108: 6.26914878e-19 + art_sys_109: 2.42332567e-18 + art_sys_110: 4.41369325e-11 + art_sys_111: -7.92822618e-17 + art_sys_112: -9.06036150e-16 + art_sys_113: 8.56754613e-17 + art_sys_114: 1.19483778e-18 + art_sys_115: -1.08638505e-17 + art_sys_116: 1.72761837e-11 + art_sys_117: 4.26226327e-18 + art_sys_118: -1.67361998e-16 + art_sys_119: -6.38759308e-12 + art_sys_120: -1.25561126e-16 + art_sys_121: -6.23603637e-19 + art_sys_122: -9.68959675e-17 + art_sys_123: -2.32094116e-12 + art_sys_124: 4.90234838e-17 + art_sys_125: 6.25385516e-19 + art_sys_126: 3.14156281e-17 + art_sys_127: 7.76075375e-13 + art_sys_128: -8.25026495e-17 + art_sys_129: 3.74329236e-21 + art_sys_130: -2.75958884e-13 + art_sys_131: -3.96290466e-19 + art_sys_132: 3.95512389e-16 + art_sys_133: -8.98894451e-14 + art_sys_134: -1.83791050e-16 + art_sys_135: -2.27836956e-17 + art_sys_136: -3.86595875e-20 + art_sys_137: -2.96102390e-14 + art_sys_138: -3.11583781e-17 + art_sys_139: -8.96338610e-15 + art_sys_140: -9.06198005e-21 + art_sys_141: -6.02468261e-17 + art_sys_142: 2.83390099e-17 + art_sys_143: -2.75004689e-15 + art_sys_144: 1.25879310e-19 + art_sys_145: 2.15439751e-17 + art_sys_146: -9.24543506e-16 + art_sys_147: 2.25869167e-20 + art_sys_148: 1.92558820e-21 + art_sys_149: -7.19429640e-18 + art_sys_150: -1.16674354e-16 + art_sys_151: 4.39608664e-18 + art_sys_152: -5.96494828e-21 + art_sys_153: 1.30659910e-17 + art_sys_154: -1.46544489e-17 + art_sys_155: 4.62932601e-21 + art_sys_156: 0.0 + art_sys_157: 6.78509498e-18 art_sys_158: 0.0 - art_sys_159: -2.90154113e-17 - art_sys_160: -9.15563922e-19 - art_sys_161: -9.18773869e-18 - art_sys_162: -2.15942573e-19 - art_sys_163: 1.33222038e-19 - art_sys_164: 4.28479418e-19 - art_sys_165: 5.30101610e-21 - art_sys_166: -9.18176195e-28 - art_sys_167: -1.03279825e-27 - art_sys_168: 1.79740285e-28 - art_sys_169: -6.78188169e-29 - art_sys_170: -6.30263480e-29 - art_sys_171: -9.88566478e-31 - art_sys_172: 5.31350822e-28 - art_sys_173: 6.39188158e-29 - art_sys_174: 2.86923019e-29 - art_sys_175: 2.42526976e-33 - art_sys_176: 2.74010267e-30 - art_sys_177: 2.00630711e-30 - art_sys_178: -3.44991116e-31 - art_sys_179: -2.23112616e-32 - art_sys_180: -7.81655429e-31 - art_sys_181: 3.64091863e-34 - art_sys_182: 1.90828949e-31 - art_sys_183: 3.42946897e-33 - art_sys_184: 1.30333127e-36 - art_sys_185: 1.85347288e-35 + art_sys_159: 9.80174993e-19 + art_sys_160: 2.21327998e-19 + art_sys_161: -6.47270257e-20 + art_sys_162: -6.47270257e-20 + art_sys_163: -8.52579135e-20 + art_sys_164: -8.52579135e-20 + art_sys_165: 9.38588745e-34 + art_sys_166: -3.10512965e-34 + art_sys_167: -0.0 + art_sys_168: 3.98593166e-28 + art_sys_169: 4.71678608e-28 + art_sys_170: -1.54858865e-28 + art_sys_171: -3.37152586e-29 + art_sys_172: -2.65533216e-29 + art_sys_173: -1.26800089e-29 + art_sys_174: 4.88488664e-29 + art_sys_175: -7.45908351e-30 + art_sys_176: 1.33552949e-30 + art_sys_177: -4.96281698e-30 + art_sys_178: 2.67614444e-31 + art_sys_179: -1.23527143e-33 + art_sys_180: 2.29709625e-32 + art_sys_181: 4.64478104e-31 + art_sys_182: 9.90051404e-32 + art_sys_183: -1.01026067e-34 + art_sys_184: -2.61288080e-34 + art_sys_185: -7.29066803e-36 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -19469,167 +19469,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: -9.86779758e-03 - art_sys_26: -1.03627747e-01 - art_sys_27: -1.54657118e-01 - art_sys_28: -7.00945811e-21 - art_sys_29: 5.20567890e-20 - art_sys_30: 1.27783178e-02 - art_sys_31: 6.58143998e-01 - art_sys_32: 7.35546721e-01 - art_sys_33: 1.96312639e+00 - art_sys_34: -5.28869313e-18 - art_sys_35: -4.76547487e-18 - art_sys_36: -4.97673590e-18 - art_sys_37: -1.15971325e-18 - art_sys_38: -7.52009988e-01 - art_sys_39: 1.62795165e-18 - art_sys_40: 1.84307690e-18 - art_sys_41: 3.89077375e-18 - art_sys_42: 7.16459086e-20 - art_sys_43: -1.22387258e-02 - art_sys_44: 1.45993958e-02 - art_sys_45: 7.16458547e-03 - art_sys_46: 1.86727331e-18 - art_sys_47: 1.54190684e-18 - art_sys_48: 1.73372181e-16 - art_sys_49: -8.35192674e-15 - art_sys_50: -1.96671961e-16 - art_sys_51: -1.67196737e-16 - art_sys_52: 3.16629697e-17 - art_sys_53: 3.21957071e-17 - art_sys_54: -8.68235048e-18 - art_sys_55: 8.02417357e-04 - art_sys_56: 3.87875802e-04 - art_sys_57: 6.08173880e-14 - art_sys_58: 1.08106203e-18 - art_sys_59: -7.76384893e-19 - art_sys_60: 9.65125040e-15 - art_sys_61: -4.95699594e-14 - art_sys_62: -2.30973810e-15 - art_sys_63: -1.02615750e-04 - art_sys_64: 8.87651415e-19 - art_sys_65: 8.21770801e-20 - art_sys_66: -7.96311400e-20 - art_sys_67: 1.81893326e-15 - art_sys_68: -9.63739157e-06 - art_sys_69: -4.16411990e-06 - art_sys_70: 1.98594452e-14 - art_sys_71: 1.59829853e-16 - art_sys_72: 1.51314517e-16 - art_sys_73: 1.24335405e-18 - art_sys_74: 2.10310128e-18 - art_sys_75: 2.15664392e-20 - art_sys_76: -8.06568399e-17 - art_sys_77: 2.61954585e-14 - art_sys_78: 8.13268171e-07 - art_sys_79: -2.82604779e-20 - art_sys_80: 6.75327196e-16 - art_sys_81: -9.53729168e-22 - art_sys_82: -9.63186917e-21 - art_sys_83: 3.09372210e-19 - art_sys_84: 4.08964939e-21 - art_sys_85: -1.53251882e-21 - art_sys_86: -5.89201998e-18 - art_sys_87: -3.40276947e-16 - art_sys_88: 1.92683057e-18 - art_sys_89: -2.57580077e-20 - art_sys_90: 1.72231184e-16 - art_sys_91: -5.58636768e-09 - art_sys_92: -1.41186668e-16 - art_sys_93: -3.87021270e-15 - art_sys_94: 3.62239652e-15 - art_sys_95: 2.13439054e-09 - art_sys_96: -8.04354720e-19 - art_sys_97: 1.49059162e-09 - art_sys_98: -4.52131154e-16 - art_sys_99: 2.68640637e-17 - art_sys_100: -6.96760137e-10 - art_sys_101: -1.45056103e-15 - art_sys_102: 1.24663254e-15 - art_sys_103: -3.54983834e-10 - art_sys_104: 1.50568898e-16 - art_sys_105: 1.63540433e-17 - art_sys_106: -8.18976514e-16 - art_sys_107: 1.94434132e-17 - art_sys_108: -1.22494088e-18 - art_sys_109: -6.80645812e-18 - art_sys_110: -1.56908081e-10 - art_sys_111: -1.71183991e-15 - art_sys_112: -6.12135591e-11 - art_sys_113: 1.87241616e-18 - art_sys_114: 4.69561423e-15 - art_sys_115: -2.26436774e-11 - art_sys_116: 2.86142355e-15 - art_sys_117: -2.03473147e-16 - art_sys_118: -8.21010326e-12 - art_sys_119: 6.97783245e-16 - art_sys_120: 2.43057042e-16 - art_sys_121: 2.74308924e-12 - art_sys_122: 3.45804602e-16 - art_sys_123: -1.98115670e-16 - art_sys_124: -9.75639033e-13 - art_sys_125: -5.19767148e-16 - art_sys_126: -3.18526430e-13 - art_sys_127: -7.26045995e-17 - art_sys_128: -1.04556446e-13 - art_sys_129: -1.63866795e-16 - art_sys_130: -3.20280173e-14 - art_sys_131: -4.05364415e-18 - art_sys_132: 1.92686828e-16 - art_sys_133: -9.22294149e-15 - art_sys_134: -4.83295164e-20 - art_sys_135: 1.72653223e-16 - art_sys_136: 3.11871338e-15 - art_sys_137: 9.29225394e-21 - art_sys_138: 5.49732340e-18 - art_sys_139: -7.45120375e-18 - art_sys_140: -4.40115106e-16 - art_sys_141: -1.07810539e-16 - art_sys_142: -1.85174027e-17 - art_sys_143: 2.01423844e-21 - art_sys_144: 3.18043826e-21 - art_sys_145: 2.63447811e-20 - art_sys_146: -0.0 - art_sys_147: 5.81793555e-19 - art_sys_148: -7.10969462e-18 - art_sys_149: -7.10969462e-18 - art_sys_150: 2.54680344e-18 - art_sys_151: 2.54680344e-18 - art_sys_152: -1.19854824e-17 - art_sys_153: 1.47743075e-19 - art_sys_154: 6.16261518e-22 - art_sys_155: 2.56624441e-30 - art_sys_156: 2.80745971e-33 - art_sys_157: 1.82573658e-33 + art_sys_25: -4.52666822e-77 + art_sys_26: -2.37127571e-71 + art_sys_27: 1.48935466e-64 + art_sys_28: -8.91065929e-64 + art_sys_29: -3.42246501e-53 + art_sys_30: -2.78171804e-50 + art_sys_31: -1.30119029e-47 + art_sys_32: 1.55434192e-39 + art_sys_33: 4.65804752e-34 + art_sys_34: 4.69641823e-27 + art_sys_35: 3.29228886e-28 + art_sys_36: -9.86779758e-03 + art_sys_37: -1.03627747e-01 + art_sys_38: -1.54657118e-01 + art_sys_39: 1.27783178e-02 + art_sys_40: -6.58143998e-01 + art_sys_41: 7.35546721e-01 + art_sys_42: 1.96312639e+00 + art_sys_43: 7.52009988e-01 + art_sys_44: 1.22387258e-02 + art_sys_45: -1.45993958e-02 + art_sys_46: 7.16458547e-03 + art_sys_47: 1.04586516e-18 + art_sys_48: 1.00918333e-18 + art_sys_49: -2.74170645e-18 + art_sys_50: 8.02417357e-04 + art_sys_51: -3.87875802e-04 + art_sys_52: -1.13354036e-18 + art_sys_53: -5.34536425e-19 + art_sys_54: -4.94352026e-20 + art_sys_55: -1.99831585e-19 + art_sys_56: -3.74433207e-19 + art_sys_57: -1.02615750e-04 + art_sys_58: 9.63739191e-06 + art_sys_59: -4.67155718e-20 + art_sys_60: -2.75235645e-19 + art_sys_61: -4.16411990e-06 + art_sys_62: 2.95802232e-19 + art_sys_63: 3.50697465e-19 + art_sys_64: -1.50942934e-15 + art_sys_65: 4.18389331e-16 + art_sys_66: 2.15574196e-16 + art_sys_67: 2.31096932e-17 + art_sys_68: -1.14570617e-18 + art_sys_69: 3.53709596e-19 + art_sys_70: 1.28817215e-19 + art_sys_71: 1.09761147e-19 + art_sys_72: -1.08756992e-20 + art_sys_73: 1.82161168e-20 + art_sys_74: 8.13268167e-07 + art_sys_75: 6.69309178e-21 + art_sys_76: -6.19500726e-19 + art_sys_77: 4.39185628e-20 + art_sys_78: -3.65306023e-20 + art_sys_79: -1.08156489e-20 + art_sys_80: -6.51043031e-20 + art_sys_81: -5.20832425e-20 + art_sys_82: -1.12282939e-17 + art_sys_83: 8.69250392e-21 + art_sys_84: 6.95847619e-21 + art_sys_85: -8.77787413e-22 + art_sys_86: 1.10563958e-21 + art_sys_87: -2.15606670e-16 + art_sys_88: -1.03875421e-17 + art_sys_89: -5.13860168e-22 + art_sys_90: 4.67325362e-19 + art_sys_91: 7.10901005e-19 + art_sys_92: 4.84146919e-22 + art_sys_93: -3.80154555e-23 + art_sys_94: -1.04899699e-17 + art_sys_95: 5.58636852e-09 + art_sys_96: 1.23215413e-17 + art_sys_97: -4.57133130e-18 + art_sys_98: -2.13439146e-09 + art_sys_99: 6.56696876e-18 + art_sys_100: 1.49058224e-09 + art_sys_101: 1.51414038e-15 + art_sys_102: -6.96763913e-10 + art_sys_103: 1.12554661e-15 + art_sys_104: 2.06625441e-15 + art_sys_105: -1.36665547e-18 + art_sys_106: -9.22623918e-15 + art_sys_107: 3.54984204e-10 + art_sys_108: -2.21650334e-18 + art_sys_109: -8.56387699e-18 + art_sys_110: -1.56913638e-10 + art_sys_111: -3.75590473e-17 + art_sys_112: 3.22112426e-15 + art_sys_113: -3.03089653e-16 + art_sys_114: -4.22061274e-18 + art_sys_115: 4.18765365e-17 + art_sys_116: -6.12136784e-11 + art_sys_117: -1.50514553e-17 + art_sys_118: 5.96240881e-16 + art_sys_119: 2.26431278e-11 + art_sys_120: 4.46146510e-16 + art_sys_121: 2.20236635e-18 + art_sys_122: 3.40250052e-16 + art_sys_123: 8.20970157e-12 + art_sys_124: -1.73176896e-16 + art_sys_125: -2.20828544e-18 + art_sys_126: -1.11439529e-16 + art_sys_127: -2.74407443e-12 + art_sys_128: 2.92620464e-16 + art_sys_129: -1.29819945e-20 + art_sys_130: 9.75191427e-13 + art_sys_131: 1.39888754e-18 + art_sys_132: -1.40607085e-15 + art_sys_133: 3.17433842e-13 + art_sys_134: 6.51474795e-16 + art_sys_135: 8.07705245e-17 + art_sys_136: 1.36484873e-19 + art_sys_137: 1.04560201e-13 + art_sys_138: 1.10218664e-16 + art_sys_139: 3.16380958e-14 + art_sys_140: 3.20308075e-20 + art_sys_141: 2.12746336e-16 + art_sys_142: -1.00325252e-16 + art_sys_143: 9.70699971e-15 + art_sys_144: -4.44977854e-19 + art_sys_145: -7.63791367e-17 + art_sys_146: 3.26295325e-15 + art_sys_147: -7.97199917e-20 + art_sys_148: -6.79914816e-21 + art_sys_149: 2.54861764e-17 + art_sys_150: 4.11724692e-16 + art_sys_151: -1.55667354e-17 + art_sys_152: 2.10318072e-20 + art_sys_153: -4.61217430e-17 + art_sys_154: 5.18749365e-17 + art_sys_155: -1.63235993e-20 + art_sys_156: -0.0 + art_sys_157: -2.40373054e-17 art_sys_158: -0.0 - art_sys_159: 1.02480573e-16 - art_sys_160: 3.23482500e-18 - art_sys_161: 3.24371946e-17 - art_sys_162: 7.62470608e-19 - art_sys_163: -4.64890382e-19 - art_sys_164: -1.51226987e-18 - art_sys_165: -1.87380947e-20 - art_sys_166: 3.24484824e-27 - art_sys_167: 3.68722557e-27 - art_sys_168: -6.35530481e-28 - art_sys_169: 1.88879315e-28 - art_sys_170: 5.17039512e-29 - art_sys_171: -1.74909503e-28 - art_sys_172: 2.69548148e-28 - art_sys_173: -8.97501486e-29 - art_sys_174: -2.41707090e-29 - art_sys_175: -8.56902924e-33 - art_sys_176: -7.13987683e-30 - art_sys_177: 1.63296343e-30 - art_sys_178: 7.30740137e-33 - art_sys_179: 1.33021180e-31 - art_sys_180: 2.66052752e-30 - art_sys_181: -2.26189886e-32 - art_sys_182: -6.67888222e-31 - art_sys_183: -1.20285203e-32 - art_sys_184: -4.76527387e-36 - art_sys_185: -6.54143289e-35 + art_sys_159: -3.47080138e-18 + art_sys_160: -7.83859782e-19 + art_sys_161: 2.28232392e-19 + art_sys_162: 2.28232392e-19 + art_sys_163: 3.01944006e-19 + art_sys_164: 3.01944006e-19 + art_sys_165: -3.32235664e-33 + art_sys_166: 1.09908673e-33 + art_sys_167: 0.0 + art_sys_168: -1.37125454e-27 + art_sys_169: -1.39145482e-27 + art_sys_170: 2.95904428e-29 + art_sys_171: -1.34818327e-27 + art_sys_172: -9.93879016e-29 + art_sys_173: -7.89516224e-30 + art_sys_174: 1.81713466e-29 + art_sys_175: 5.06975398e-31 + art_sys_176: -2.37874257e-31 + art_sys_177: 1.75229313e-29 + art_sys_178: -9.57120412e-31 + art_sys_179: 4.35336832e-33 + art_sys_180: -8.13407277e-32 + art_sys_181: -1.87574609e-30 + art_sys_182: 3.98536820e-32 + art_sys_183: -6.53648020e-34 + art_sys_184: 9.57585295e-34 + art_sys_185: 2.56938249e-35 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -19760,167 +19760,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: -5.67305623e-03 - art_sys_26: -8.85964103e-03 - art_sys_27: -2.68773801e-02 - art_sys_28: -5.29985410e-21 - art_sys_29: 9.15446058e-21 - art_sys_30: 1.78411342e-02 - art_sys_31: 1.75259929e-02 - art_sys_32: -1.34345944e-01 - art_sys_33: 1.11377876e-01 - art_sys_34: 3.76680650e-19 - art_sys_35: -2.60236249e-19 - art_sys_36: -1.04236534e-18 - art_sys_37: -9.41397615e-20 - art_sys_38: -1.54332737e-01 - art_sys_39: -5.43365919e-19 - art_sys_40: 6.82260652e-19 - art_sys_41: 7.46934942e-19 - art_sys_42: 3.45112917e-18 - art_sys_43: 1.86275580e-01 - art_sys_44: -5.97840953e-02 - art_sys_45: -3.97699986e-02 - art_sys_46: -2.55952552e-18 - art_sys_47: 3.09321829e-18 - art_sys_48: -8.41037392e-16 - art_sys_49: -3.10802861e-15 - art_sys_50: 1.99371932e-15 - art_sys_51: 2.76679674e-16 - art_sys_52: 2.40707081e-16 - art_sys_53: -1.56100501e-16 - art_sys_54: 4.07986346e-17 - art_sys_55: -3.89194564e-03 - art_sys_56: -1.95752722e-03 - art_sys_57: -2.94980440e-13 - art_sys_58: -7.04332848e-18 - art_sys_59: 3.68299354e-18 - art_sys_60: -4.87060951e-14 - art_sys_61: 2.50167136e-13 - art_sys_62: 1.16593693e-14 - art_sys_63: 5.30203399e-04 - art_sys_64: -2.01792124e-18 - art_sys_65: -4.14776301e-19 - art_sys_66: 3.93828371e-19 - art_sys_67: -9.40065802e-15 - art_sys_68: 4.76445064e-05 - art_sys_69: 2.14607026e-05 - art_sys_70: -1.02609913e-13 - art_sys_71: -8.25640081e-16 - art_sys_72: -7.84005071e-16 - art_sys_73: -5.98292942e-18 - art_sys_74: -1.09140970e-17 - art_sys_75: -1.28881699e-19 - art_sys_76: 4.16237239e-16 - art_sys_77: -1.29695747e-13 - art_sys_78: -4.19695799e-06 - art_sys_79: 1.61020100e-19 - art_sys_80: -3.14176127e-15 - art_sys_81: 5.59611231e-21 - art_sys_82: 4.69258194e-20 - art_sys_83: -1.69636496e-18 - art_sys_84: -1.91924015e-20 - art_sys_85: 8.15065389e-21 - art_sys_86: 3.14156325e-17 - art_sys_87: 1.71711210e-15 - art_sys_88: -1.03325757e-17 - art_sys_89: 1.46035654e-19 - art_sys_90: -8.85852818e-16 - art_sys_91: 2.59890456e-08 - art_sys_92: 7.27081660e-16 - art_sys_93: 1.91636223e-14 - art_sys_94: -1.86941858e-14 - art_sys_95: -1.23789342e-08 - art_sys_96: 4.33555611e-18 - art_sys_97: -7.52773323e-09 - art_sys_98: 2.34828125e-15 - art_sys_99: -1.36029948e-16 - art_sys_100: 3.73649396e-09 - art_sys_101: 6.74068589e-15 - art_sys_102: -5.78446984e-15 - art_sys_103: 1.88350915e-09 - art_sys_104: -7.76723851e-16 - art_sys_105: -5.97015648e-17 - art_sys_106: 4.51741173e-15 - art_sys_107: -1.04867784e-16 - art_sys_108: 6.61041350e-18 - art_sys_109: 3.67453213e-17 - art_sys_110: 8.39762986e-10 - art_sys_111: 8.71562366e-15 - art_sys_112: 3.28586984e-10 - art_sys_113: -1.01159425e-17 - art_sys_114: -2.40674766e-14 - art_sys_115: 1.21710524e-10 - art_sys_116: -1.53129361e-14 - art_sys_117: 1.43855076e-15 - art_sys_118: 4.42541516e-11 - art_sys_119: -3.84390670e-15 - art_sys_120: -1.30104306e-15 - art_sys_121: -1.47949197e-11 - art_sys_122: -1.86043419e-15 - art_sys_123: 1.06135274e-15 - art_sys_124: 5.26818534e-12 - art_sys_125: 2.78795645e-15 - art_sys_126: 1.72112815e-12 - art_sys_127: 3.89566499e-16 - art_sys_128: 5.65113739e-13 - art_sys_129: 8.75873684e-16 - art_sys_130: 1.73189841e-13 - art_sys_131: 2.28341498e-17 - art_sys_132: -1.03676667e-15 - art_sys_133: 4.98774539e-14 - art_sys_134: 2.62229568e-19 - art_sys_135: -9.30141111e-16 - art_sys_136: -1.68686033e-14 - art_sys_137: -5.01518487e-20 - art_sys_138: -2.58044266e-17 - art_sys_139: 4.03737426e-17 - art_sys_140: 2.38101855e-15 - art_sys_141: 5.81931165e-16 - art_sys_142: 9.95489638e-17 - art_sys_143: -1.09252273e-20 - art_sys_144: -1.72133012e-20 - art_sys_145: -1.42503383e-19 - art_sys_146: 0.0 - art_sys_147: -3.14248938e-18 - art_sys_148: 3.83727253e-17 - art_sys_149: 3.83727253e-17 - art_sys_150: -1.37209246e-17 - art_sys_151: -1.37209246e-17 - art_sys_152: 6.45513286e-17 - art_sys_153: -7.91851676e-19 - art_sys_154: -3.32703622e-21 - art_sys_155: -1.38179201e-29 - art_sys_156: -1.50541454e-32 - art_sys_157: -9.82453559e-33 + art_sys_25: -2.59810074e-77 + art_sys_26: -1.36100392e-71 + art_sys_27: 8.54821528e-65 + art_sys_28: -5.11431133e-64 + art_sys_29: -1.96433855e-53 + art_sys_30: -1.59657907e-50 + art_sys_31: -7.46823779e-48 + art_sys_32: 8.92121247e-40 + art_sys_33: 2.67350647e-34 + art_sys_34: 2.69552950e-27 + art_sys_35: 1.88962339e-28 + art_sys_36: -5.67305623e-03 + art_sys_37: -8.85964103e-03 + art_sys_38: -2.68773801e-02 + art_sys_39: 1.78411342e-02 + art_sys_40: -1.75259929e-02 + art_sys_41: -1.34345944e-01 + art_sys_42: 1.11377876e-01 + art_sys_43: 1.54332737e-01 + art_sys_44: -1.86275580e-01 + art_sys_45: 5.97840953e-02 + art_sys_46: -3.97699986e-02 + art_sys_47: 1.94420536e-18 + art_sys_48: -3.66380883e-19 + art_sys_49: -1.45804293e-18 + art_sys_50: -3.89194564e-03 + art_sys_51: 1.95752722e-03 + art_sys_52: -2.76369044e-19 + art_sys_53: 1.68839987e-18 + art_sys_54: -4.06775350e-19 + art_sys_55: -1.82821377e-20 + art_sys_56: 4.25295076e-19 + art_sys_57: 5.30203399e-04 + art_sys_58: -4.76445081e-05 + art_sys_59: 4.54167388e-19 + art_sys_60: -3.75237580e-19 + art_sys_61: 2.14607026e-05 + art_sys_62: -1.58102985e-19 + art_sys_63: 3.41340634e-19 + art_sys_64: 8.94483368e-16 + art_sys_65: -6.67429556e-16 + art_sys_66: 9.84103906e-19 + art_sys_67: -3.92152562e-17 + art_sys_68: 1.99572113e-19 + art_sys_69: -1.39041885e-18 + art_sys_70: -1.15262531e-18 + art_sys_71: -5.61413821e-19 + art_sys_72: 3.18243843e-20 + art_sys_73: -4.09888938e-20 + art_sys_74: -4.19695797e-06 + art_sys_75: -2.31517997e-21 + art_sys_76: 2.90436498e-18 + art_sys_77: -3.34072158e-19 + art_sys_78: 2.32644278e-19 + art_sys_79: 1.66474370e-20 + art_sys_80: 3.29359602e-19 + art_sys_81: -4.88051691e-20 + art_sys_82: 5.82630165e-17 + art_sys_83: -4.17008434e-20 + art_sys_84: -3.26091356e-20 + art_sys_85: 3.85491359e-21 + art_sys_86: -5.04965640e-21 + art_sys_87: 1.08775188e-15 + art_sys_88: 5.51129938e-17 + art_sys_89: 2.55984492e-21 + art_sys_90: -2.49937374e-18 + art_sys_91: -3.27650276e-18 + art_sys_92: -2.53692742e-21 + art_sys_93: 3.35977515e-22 + art_sys_94: 5.63770944e-17 + art_sys_95: -2.59890495e-08 + art_sys_96: -5.73497907e-17 + art_sys_97: 2.05725455e-17 + art_sys_98: 1.23789390e-08 + art_sys_99: 1.53101586e-16 + art_sys_100: -7.52768604e-09 + art_sys_101: -7.62325744e-15 + art_sys_102: 3.73651422e-09 + art_sys_103: -5.72478757e-15 + art_sys_104: -9.57366842e-15 + art_sys_105: 7.38080802e-18 + art_sys_106: 4.93350976e-14 + art_sys_107: -1.88351113e-09 + art_sys_108: 1.19658914e-17 + art_sys_109: 4.62419171e-17 + art_sys_110: 8.39792717e-10 + art_sys_111: -1.05400730e-15 + art_sys_112: -1.72387204e-14 + art_sys_113: 1.62538831e-15 + art_sys_114: 2.27990558e-17 + art_sys_115: -1.95984467e-16 + art_sys_116: 3.28587626e-10 + art_sys_117: 8.13284582e-17 + art_sys_118: -3.17761987e-15 + art_sys_119: -1.21707570e-10 + art_sys_120: -2.38866844e-15 + art_sys_121: -1.18969412e-17 + art_sys_122: -1.82973369e-15 + art_sys_123: -4.42519863e-11 + art_sys_124: 9.29261661e-16 + art_sys_125: 1.19355339e-17 + art_sys_126: 5.98849436e-16 + art_sys_127: 1.48002374e-11 + art_sys_128: -1.56304439e-15 + art_sys_129: 7.18406065e-20 + art_sys_130: -5.26577270e-12 + art_sys_131: -7.56378863e-18 + art_sys_132: 7.52484658e-15 + art_sys_133: -1.71523308e-12 + art_sys_134: -3.50212105e-15 + art_sys_135: -4.31893361e-16 + art_sys_136: -7.37918820e-19 + art_sys_137: -5.65136790e-13 + art_sys_138: -5.93489388e-16 + art_sys_139: -1.71084977e-13 + art_sys_140: -1.72906030e-19 + art_sys_141: -1.14978270e-15 + art_sys_142: 5.39254949e-16 + art_sys_143: -5.24901767e-14 + art_sys_144: 2.40114206e-18 + art_sys_145: 4.11024848e-16 + art_sys_146: -1.76479414e-14 + art_sys_147: 4.31135203e-19 + art_sys_148: 3.67486181e-20 + art_sys_149: -1.36593335e-16 + art_sys_150: -2.22717419e-15 + art_sys_151: 8.37880079e-17 + art_sys_152: -1.13896127e-19 + art_sys_153: 2.49338397e-16 + art_sys_154: -2.78543822e-16 + art_sys_155: 8.83154821e-20 + art_sys_156: 0.0 + art_sys_157: 1.29076880e-16 art_sys_158: 0.0 - art_sys_159: -5.53651170e-16 - art_sys_160: -1.74692417e-17 - art_sys_161: -1.75360861e-16 - art_sys_162: -4.12150511e-18 - art_sys_163: 2.55775808e-18 - art_sys_164: 8.17854407e-18 - art_sys_165: 1.01209214e-19 - art_sys_166: -1.76535149e-26 - art_sys_167: -1.98230610e-26 - art_sys_168: 3.44263170e-27 - art_sys_169: -1.04023142e-27 - art_sys_170: -3.54396491e-28 - art_sys_171: 5.60154857e-28 - art_sys_172: -2.90524140e-27 - art_sys_173: 3.02554250e-28 - art_sys_174: -1.01147322e-29 - art_sys_175: 4.62844138e-32 - art_sys_176: 3.23017104e-29 - art_sys_177: 9.22554215e-31 - art_sys_178: -1.03549567e-30 - art_sys_179: -5.47683058e-31 - art_sys_180: -1.32012096e-29 - art_sys_181: 6.38999812e-32 - art_sys_182: 3.61594169e-30 - art_sys_183: 6.51581777e-32 - art_sys_184: 2.54818784e-35 - art_sys_185: 3.53794783e-34 + art_sys_159: 1.86628617e-17 + art_sys_160: 4.21091776e-18 + art_sys_161: -1.23566862e-18 + art_sys_162: -1.23566862e-18 + art_sys_163: -1.62439390e-18 + art_sys_164: -1.62439390e-18 + art_sys_165: 1.78866714e-32 + art_sys_166: -5.91766348e-33 + art_sys_167: -0.0 + art_sys_168: 5.17257274e-27 + art_sys_169: 6.54532849e-27 + art_sys_170: 4.31968677e-28 + art_sys_171: 2.23567943e-27 + art_sys_172: 3.72867074e-28 + art_sys_173: 6.80577062e-30 + art_sys_174: 2.75499010e-30 + art_sys_175: -1.96398092e-30 + art_sys_176: 3.51508836e-30 + art_sys_177: -9.47394323e-29 + art_sys_178: 5.14293396e-30 + art_sys_179: -2.35553325e-32 + art_sys_180: 4.37437642e-31 + art_sys_181: 1.00563395e-29 + art_sys_182: 4.39422547e-31 + art_sys_183: 1.24454990e-32 + art_sys_184: -5.06846625e-33 + art_sys_185: -1.38704200e-34 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -20051,167 +20051,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: -1.04046512e-03 - art_sys_26: 1.27321525e-03 - art_sys_27: -1.77953259e-04 - art_sys_28: -6.35364527e-22 - art_sys_29: 2.90848951e-23 - art_sys_30: 2.30380582e-03 - art_sys_31: -3.41186608e-02 - art_sys_32: -5.23935428e-02 - art_sys_33: -1.18339460e-01 - art_sys_34: 3.29965103e-19 - art_sys_35: 2.95452356e-19 - art_sys_36: 3.20157503e-19 - art_sys_37: 6.79387113e-20 - art_sys_38: 5.01272356e-02 - art_sys_39: -6.77853221e-20 - art_sys_40: -1.23623875e-19 - art_sys_41: -2.42624109e-19 - art_sys_42: 2.26053717e-18 - art_sys_43: 1.30876649e-01 - art_sys_44: 9.07651704e-02 - art_sys_45: 5.32094854e-02 - art_sys_46: -1.41428744e-18 - art_sys_47: 1.34148678e-18 - art_sys_48: 2.13115273e-15 - art_sys_49: 8.39289175e-15 - art_sys_50: -4.58064728e-15 - art_sys_51: -3.04854314e-16 - art_sys_52: -4.61405814e-16 - art_sys_53: 3.87894749e-16 - art_sys_54: -1.05179893e-16 - art_sys_55: 9.87293354e-03 - art_sys_56: 4.54523682e-03 - art_sys_57: 7.48302595e-13 - art_sys_58: 2.16018567e-17 - art_sys_59: -9.56395232e-18 - art_sys_60: 1.13091477e-13 - art_sys_61: -5.80854279e-13 - art_sys_62: -2.70723685e-14 - art_sys_63: -1.42928271e-03 - art_sys_64: 3.66291443e-18 - art_sys_65: 1.22027733e-18 - art_sys_66: -1.16067481e-18 - art_sys_67: 2.53403412e-14 - art_sys_68: -1.40735378e-04 - art_sys_69: -6.18706285e-05 - art_sys_70: 2.76607986e-13 - art_sys_71: 2.22375916e-15 - art_sys_72: 2.10139932e-15 - art_sys_73: 1.84128404e-17 - art_sys_74: 3.30355912e-17 - art_sys_75: 3.67153281e-19 - art_sys_76: -1.26415979e-15 - art_sys_77: 3.83467767e-13 - art_sys_78: 1.27466533e-05 - art_sys_79: -4.71569416e-19 - art_sys_80: 9.79299501e-15 - art_sys_81: -1.55161725e-20 - art_sys_82: -1.45891698e-19 - art_sys_83: 5.12482824e-18 - art_sys_84: 6.08149263e-20 - art_sys_85: -2.34598040e-20 - art_sys_86: -9.88288430e-17 - art_sys_87: -5.01202827e-15 - art_sys_88: 3.26419359e-17 - art_sys_89: -4.70838457e-19 - art_sys_90: 2.55742910e-15 - art_sys_91: -8.10087866e-08 - art_sys_92: -2.14608138e-15 - art_sys_93: -5.65540825e-14 - art_sys_94: 5.67762139e-14 - art_sys_95: 3.53674757e-08 - art_sys_96: -1.38248528e-17 - art_sys_97: 2.38331378e-08 - art_sys_98: -7.12139119e-15 - art_sys_99: 3.96176046e-16 - art_sys_100: -1.14457058e-08 - art_sys_101: -2.10066026e-14 - art_sys_102: 1.80545803e-14 - art_sys_103: -5.92424993e-09 - art_sys_104: 2.36046403e-15 - art_sys_105: 1.98040069e-16 - art_sys_106: -1.36564468e-14 - art_sys_107: 3.35380274e-16 - art_sys_108: -2.11402113e-17 - art_sys_109: -1.17616106e-16 - art_sys_110: -2.63990128e-09 - art_sys_111: -2.73397144e-14 - art_sys_112: -1.04094488e-09 - art_sys_113: 3.24158220e-17 - art_sys_114: 7.55623643e-14 - art_sys_115: -3.87134967e-10 - art_sys_116: 4.81383597e-14 - art_sys_117: -3.84124981e-15 - art_sys_118: -1.41112797e-10 - art_sys_119: 1.15760108e-14 - art_sys_120: 4.09441835e-15 - art_sys_121: 4.73163353e-11 - art_sys_122: 5.80327455e-15 - art_sys_123: -3.33649941e-15 - art_sys_124: -1.68676787e-11 - art_sys_125: -8.84992268e-15 - art_sys_126: -5.51772621e-12 - art_sys_127: -1.22772308e-15 - art_sys_128: -1.81308818e-12 - art_sys_129: -2.74909757e-15 - art_sys_130: -5.55896864e-13 - art_sys_131: -7.79344791e-17 - art_sys_132: 3.29269489e-15 - art_sys_133: -1.60174999e-13 - art_sys_134: -8.46302655e-19 - art_sys_135: 2.96635246e-15 - art_sys_136: 5.41762959e-14 - art_sys_137: 1.60489634e-19 - art_sys_138: 8.02724591e-17 - art_sys_139: -1.30071315e-16 - art_sys_140: -7.65001547e-15 - art_sys_141: -1.86335238e-15 - art_sys_142: -3.16638187e-16 - art_sys_143: 3.52503806e-20 - art_sys_144: 5.53330422e-20 - art_sys_145: 4.57827842e-19 - art_sys_146: -0.0 - art_sys_147: 1.00716936e-17 - art_sys_148: -1.22853894e-16 - art_sys_149: -1.22853894e-16 - art_sys_150: 4.38486505e-17 - art_sys_151: 4.38486505e-17 - art_sys_152: -2.05744567e-16 - art_sys_153: 2.48731446e-18 - art_sys_154: 1.06643828e-20 - art_sys_155: 4.40066169e-29 - art_sys_156: 4.78235150e-32 - art_sys_157: 3.12309675e-32 + art_sys_25: -4.76257754e-78 + art_sys_26: -2.49485579e-72 + art_sys_27: 1.56697304e-65 + art_sys_28: -9.37504226e-65 + art_sys_29: -3.60082830e-54 + art_sys_30: -2.92668852e-51 + art_sys_31: -1.36900240e-48 + art_sys_32: 1.63534714e-40 + art_sys_33: 4.90080375e-35 + art_sys_34: 4.94117416e-28 + art_sys_35: 3.46386797e-29 + art_sys_36: -1.04046512e-03 + art_sys_37: 1.27321525e-03 + art_sys_38: -1.77953259e-04 + art_sys_39: 2.30380582e-03 + art_sys_40: 3.41186608e-02 + art_sys_41: -5.23935428e-02 + art_sys_42: -1.18339460e-01 + art_sys_43: -5.01272356e-02 + art_sys_44: -1.30876649e-01 + art_sys_45: -9.07651704e-02 + art_sys_46: 5.32094854e-02 + art_sys_47: 3.57728032e-18 + art_sys_48: 7.16133485e-19 + art_sys_49: 1.98176311e-18 + art_sys_50: 9.87293354e-03 + art_sys_51: -4.54523682e-03 + art_sys_52: -6.72985297e-19 + art_sys_53: -1.21675870e-18 + art_sys_54: -1.29872938e-18 + art_sys_55: -5.51257103e-19 + art_sys_56: -6.24032618e-20 + art_sys_57: -1.42928271e-03 + art_sys_58: 1.40735383e-04 + art_sys_59: -4.93618279e-20 + art_sys_60: 2.64566739e-19 + art_sys_61: -6.18706285e-05 + art_sys_62: 3.28051470e-19 + art_sys_63: 2.48455079e-19 + art_sys_64: -6.90172194e-15 + art_sys_65: 3.56769266e-16 + art_sys_66: -3.77124650e-17 + art_sys_67: 1.65809552e-17 + art_sys_68: 8.41185180e-19 + art_sys_69: 1.99154683e-18 + art_sys_70: 3.32222861e-18 + art_sys_71: 1.69308745e-18 + art_sys_72: -1.03771668e-19 + art_sys_73: 1.28333435e-19 + art_sys_74: 1.27466532e-05 + art_sys_75: -3.62224749e-21 + art_sys_76: -9.11500662e-18 + art_sys_77: 8.13848638e-19 + art_sys_78: -6.68862808e-19 + art_sys_79: 2.31369678e-20 + art_sys_80: -1.00133545e-18 + art_sys_81: 2.87867709e-20 + art_sys_82: -1.76736708e-16 + art_sys_83: 1.30418676e-19 + art_sys_84: 1.04858932e-19 + art_sys_85: -1.03871163e-20 + art_sys_86: 1.55954252e-20 + art_sys_87: -3.44355181e-15 + art_sys_88: -1.73510927e-16 + art_sys_89: -7.60607921e-21 + art_sys_90: 7.85828884e-18 + art_sys_91: 9.93927565e-18 + art_sys_92: 7.60758265e-21 + art_sys_93: -8.14454825e-22 + art_sys_94: -1.79320005e-16 + art_sys_95: 8.10087988e-08 + art_sys_96: 1.78551582e-16 + art_sys_97: -6.49496016e-17 + art_sys_98: -3.53674908e-08 + art_sys_99: -2.34262376e-16 + art_sys_100: 2.38329879e-08 + art_sys_101: 2.41960222e-14 + art_sys_102: -1.14457678e-08 + art_sys_103: 1.80278142e-14 + art_sys_104: 2.99067004e-14 + art_sys_105: -2.36320284e-17 + art_sys_106: -1.51168476e-13 + art_sys_107: 5.92425618e-09 + art_sys_108: -3.83135248e-17 + art_sys_109: -1.48055903e-16 + art_sys_110: -2.63999475e-09 + art_sys_111: 1.67420667e-15 + art_sys_112: 5.41908255e-14 + art_sys_113: -4.97890215e-15 + art_sys_114: -7.30497935e-17 + art_sys_115: 6.56330501e-16 + art_sys_116: -1.04094692e-09 + art_sys_117: -2.60719864e-16 + art_sys_118: 9.89016316e-15 + art_sys_119: 3.87125577e-10 + art_sys_120: 7.51365205e-15 + art_sys_121: 3.81149061e-17 + art_sys_122: 5.44377108e-15 + art_sys_123: 1.41105893e-10 + art_sys_124: -2.83922176e-15 + art_sys_125: -3.82907764e-17 + art_sys_126: -1.90362790e-15 + art_sys_127: -4.73333488e-11 + art_sys_128: 4.91036708e-15 + art_sys_129: -2.38946328e-19 + art_sys_130: 1.68599675e-11 + art_sys_131: 2.42770997e-17 + art_sys_132: -2.36504185e-14 + art_sys_133: 5.49886182e-12 + art_sys_134: 1.11414958e-14 + art_sys_135: 1.35582129e-15 + art_sys_136: 2.37047941e-18 + art_sys_137: 1.81317343e-12 + art_sys_138: 1.88990546e-15 + art_sys_139: 5.49158733e-13 + art_sys_140: 5.53530051e-19 + art_sys_141: 3.68730579e-15 + art_sys_142: -1.71193077e-15 + art_sys_143: 1.68538835e-13 + art_sys_144: -7.68306503e-18 + art_sys_145: -1.31147769e-15 + art_sys_146: 5.66748151e-14 + art_sys_147: -1.38444449e-18 + art_sys_148: -1.17982699e-19 + art_sys_149: 4.31537333e-16 + art_sys_150: 7.15456685e-15 + art_sys_151: -2.67220642e-16 + art_sys_152: 3.66205416e-19 + art_sys_153: -8.00555551e-16 + art_sys_154: 8.75865544e-16 + art_sys_155: -2.84531796e-19 + art_sys_156: -0.0 + art_sys_157: -4.09541063e-16 art_sys_158: -0.0 - art_sys_159: 1.77442499e-15 - art_sys_160: 5.59709854e-17 - art_sys_161: 5.62803167e-16 - art_sys_162: 1.32246997e-17 - art_sys_163: -8.42719149e-18 - art_sys_164: -2.62602212e-17 - art_sys_165: -3.24222371e-19 - art_sys_166: 5.67186926e-26 - art_sys_167: 6.34597207e-26 - art_sys_168: -1.10710644e-26 - art_sys_169: 3.37109837e-27 - art_sys_170: 1.30465312e-27 - art_sys_171: -1.64077932e-27 - art_sys_172: 1.01713773e-26 - art_sys_173: -1.03832689e-27 - art_sys_174: -1.10032637e-28 - art_sys_175: -1.48361762e-31 - art_sys_176: -7.69077232e-29 - art_sys_177: -1.04695909e-29 - art_sys_178: 6.37671933e-30 - art_sys_179: 1.55353824e-30 - art_sys_180: 4.25591072e-29 - art_sys_181: -2.24116468e-31 - art_sys_182: -1.16060120e-29 - art_sys_183: -2.09145027e-31 - art_sys_184: -8.20364082e-35 - art_sys_185: -1.13636442e-33 + art_sys_159: -5.94579432e-17 + art_sys_160: -1.33782087e-17 + art_sys_161: 3.97983515e-18 + art_sys_162: 3.97983515e-18 + art_sys_163: 5.17770331e-18 + art_sys_164: 5.17770331e-18 + art_sys_165: -5.70821862e-32 + art_sys_166: 1.88874660e-32 + art_sys_167: 0.0 + art_sys_168: -1.90739770e-26 + art_sys_169: -2.10270913e-26 + art_sys_170: -1.45665989e-27 + art_sys_171: -1.15602008e-26 + art_sys_172: -1.36948992e-27 + art_sys_173: -3.83714902e-29 + art_sys_174: -5.43196256e-29 + art_sys_175: 1.21162123e-29 + art_sys_176: -1.23744942e-29 + art_sys_177: 3.03964432e-28 + art_sys_178: -1.64588396e-29 + art_sys_179: 7.60256710e-32 + art_sys_180: -1.39389068e-30 + art_sys_181: -3.21720922e-29 + art_sys_182: -1.60116015e-30 + art_sys_183: -3.93454881e-32 + art_sys_184: 1.62484389e-32 + art_sys_185: 4.45507387e-34 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -20342,167 +20342,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: -6.25260902e-05 - art_sys_26: 9.27358711e-04 - art_sys_27: 1.60894948e-03 - art_sys_28: 1.36859051e-22 - art_sys_29: -5.68820148e-22 - art_sys_30: -6.72756584e-04 - art_sys_31: -5.44724727e-03 - art_sys_32: 7.90026173e-03 - art_sys_33: -1.72286726e-02 - art_sys_34: -6.19201363e-21 - art_sys_35: 4.07166630e-20 - art_sys_36: 1.10577648e-19 - art_sys_37: 1.26858766e-20 - art_sys_38: 1.88381027e-02 - art_sys_39: 4.91195377e-20 - art_sys_40: -7.20015077e-20 - art_sys_41: -8.65356915e-20 - art_sys_42: -6.52967660e-20 - art_sys_43: -1.99107516e-03 - art_sys_44: 1.53721278e-01 - art_sys_45: -4.54216246e-02 - art_sys_46: 1.72533931e-18 - art_sys_47: 2.95412785e-19 - art_sys_48: -1.46162124e-15 - art_sys_49: -1.09693734e-14 - art_sys_50: 8.20985120e-15 - art_sys_51: 1.05438252e-15 - art_sys_52: 9.05776743e-16 - art_sys_53: -4.41761897e-16 - art_sys_54: 1.38845647e-16 - art_sys_55: -6.78022102e-03 - art_sys_56: -6.32350215e-03 - art_sys_57: -5.13890344e-13 - art_sys_58: -4.02710235e-17 - art_sys_59: 1.38105353e-17 - art_sys_60: -1.57337047e-13 - art_sys_61: 8.08253289e-13 - art_sys_62: 3.76651353e-14 - art_sys_63: 2.31400006e-03 - art_sys_64: -3.22491255e-18 - art_sys_65: -2.35613536e-18 - art_sys_66: 2.17377462e-18 - art_sys_67: -4.10250672e-14 - art_sys_68: 2.62143331e-04 - art_sys_69: 1.22267370e-04 - art_sys_70: -4.47826893e-13 - art_sys_71: -3.59598182e-15 - art_sys_72: -3.37023476e-15 - art_sys_73: -4.57099241e-17 - art_sys_74: -6.98493612e-17 - art_sys_75: -1.10879855e-18 - art_sys_76: 2.66203012e-15 - art_sys_77: -7.17602710e-13 - art_sys_78: -2.68416328e-05 - art_sys_79: 1.21310350e-18 - art_sys_80: -2.66707737e-14 - art_sys_81: 4.09753055e-20 - art_sys_82: 3.90882383e-19 - art_sys_83: -1.37149922e-17 - art_sys_84: -1.61014901e-19 - art_sys_85: 6.24990170e-20 - art_sys_86: 2.61445644e-16 - art_sys_87: 9.61193859e-15 - art_sys_88: -8.65135919e-17 - art_sys_89: 1.24997085e-18 - art_sys_90: -5.03969941e-15 - art_sys_91: 2.20623694e-07 - art_sys_92: 4.36925508e-15 - art_sys_93: 1.05584710e-13 - art_sys_94: -1.19558376e-13 - art_sys_95: -9.14156255e-08 - art_sys_96: 3.67581173e-17 - art_sys_97: -6.15423459e-08 - art_sys_98: 1.47318549e-14 - art_sys_99: -7.63421339e-16 - art_sys_100: 3.03839956e-08 - art_sys_101: 5.72039139e-14 - art_sys_102: -4.92105206e-14 - art_sys_103: 1.55447903e-08 - art_sys_104: -4.97615919e-15 - art_sys_105: -5.72105471e-16 - art_sys_106: 3.68155099e-14 - art_sys_107: -8.91931710e-16 - art_sys_108: 5.62264591e-17 - art_sys_109: 3.13048717e-16 - art_sys_110: 7.00446534e-09 - art_sys_111: 7.10720577e-14 - art_sys_112: 2.75721846e-09 - art_sys_113: -8.62854503e-17 - art_sys_114: -1.96209445e-13 - art_sys_115: 1.02835778e-09 - art_sys_116: -1.27708666e-13 - art_sys_117: 1.15439189e-14 - art_sys_118: 3.75193890e-10 - art_sys_119: -3.11324099e-14 - art_sys_120: -1.08599361e-14 - art_sys_121: -1.25836257e-10 - art_sys_122: -1.54602954e-14 - art_sys_123: 8.85784629e-15 - art_sys_124: 4.48983467e-11 - art_sys_125: 2.34883934e-14 - art_sys_126: 1.46870954e-11 - art_sys_127: 3.25308923e-15 - art_sys_128: 4.82748876e-12 - art_sys_129: 7.29088051e-15 - art_sys_130: 1.48031896e-12 - art_sys_131: 2.11217195e-16 - art_sys_132: -8.74717915e-15 - art_sys_133: 4.26542739e-13 - art_sys_134: 2.25747825e-18 - art_sys_135: -7.88423949e-15 - art_sys_136: -1.44285161e-13 - art_sys_137: -4.26982258e-19 - art_sys_138: -2.13379669e-16 - art_sys_139: 3.45984642e-16 - art_sys_140: 2.03746109e-14 - art_sys_141: 4.95720566e-15 - art_sys_142: 8.40779098e-16 - art_sys_143: -9.39997529e-20 - art_sys_144: -1.47403846e-19 - art_sys_145: -1.21927149e-18 - art_sys_146: 0.0 - art_sys_147: -2.68020925e-17 - art_sys_148: 3.26824648e-16 - art_sys_149: 3.26824648e-16 - art_sys_150: -1.16512843e-16 - art_sys_151: -1.16512843e-16 - art_sys_152: 5.47119749e-16 - art_sys_153: -6.61969205e-18 - art_sys_154: -2.83635984e-20 - art_sys_155: -1.17030188e-28 - art_sys_156: -1.26690918e-31 - art_sys_157: -8.29725013e-32 + art_sys_25: -2.85481662e-79 + art_sys_26: -1.49548343e-73 + art_sys_27: 9.39285639e-67 + art_sys_28: -5.61965163e-66 + art_sys_29: -2.15843300e-55 + art_sys_30: -1.75433555e-52 + art_sys_31: -8.20616737e-50 + art_sys_32: 9.80270911e-42 + art_sys_33: 2.93767314e-36 + art_sys_34: 2.96187224e-29 + art_sys_35: 2.07633531e-30 + art_sys_36: -6.25260902e-05 + art_sys_37: 9.27358711e-04 + art_sys_38: 1.60894948e-03 + art_sys_39: -6.72756584e-04 + art_sys_40: 5.44724727e-03 + art_sys_41: 7.90026173e-03 + art_sys_42: -1.72286726e-02 + art_sys_43: -1.88381027e-02 + art_sys_44: 1.99107516e-03 + art_sys_45: -1.53721278e-01 + art_sys_46: -4.54216246e-02 + art_sys_47: -9.18272385e-20 + art_sys_48: 4.65724278e-19 + art_sys_49: 2.50429925e-18 + art_sys_50: -6.78022102e-03 + art_sys_51: 6.32350215e-03 + art_sys_52: 4.33767323e-19 + art_sys_53: -2.01700203e-18 + art_sys_54: -7.85019316e-20 + art_sys_55: 7.05087276e-19 + art_sys_56: 4.85366437e-21 + art_sys_57: 2.31400006e-03 + art_sys_58: -2.62143341e-04 + art_sys_59: -9.20250851e-19 + art_sys_60: 2.34508367e-19 + art_sys_61: 1.22267370e-04 + art_sys_62: 2.98827425e-20 + art_sys_63: -1.09659743e-19 + art_sys_64: -4.54279755e-16 + art_sys_65: -1.98646126e-16 + art_sys_66: 1.87884818e-16 + art_sys_67: 5.28005530e-17 + art_sys_68: -1.10484550e-18 + art_sys_69: -6.86767008e-18 + art_sys_70: -6.76711514e-18 + art_sys_71: -3.55563836e-18 + art_sys_72: 2.05456970e-19 + art_sys_73: -2.62563645e-19 + art_sys_74: -2.68416326e-05 + art_sys_75: 2.48432291e-20 + art_sys_76: 2.44492506e-17 + art_sys_77: -2.13625768e-18 + art_sys_78: 1.67951263e-18 + art_sys_79: -1.10097969e-19 + art_sys_80: 2.62165202e-18 + art_sys_81: -8.31114037e-20 + art_sys_82: 3.72725596e-16 + art_sys_83: -3.51682730e-19 + art_sys_84: -2.78109829e-19 + art_sys_85: 3.25686326e-20 + art_sys_86: -4.25243667e-20 + art_sys_87: 8.89642062e-15 + art_sys_88: 4.55562089e-16 + art_sys_89: 2.04445127e-20 + art_sys_90: -2.08633847e-17 + art_sys_91: -2.11068084e-17 + art_sys_92: -1.99155664e-20 + art_sys_93: 1.94779895e-21 + art_sys_94: 4.76334949e-16 + art_sys_95: -2.20623728e-07 + art_sys_96: -4.81378745e-16 + art_sys_97: 1.91061202e-16 + art_sys_98: 9.14156638e-08 + art_sys_99: 2.68335140e-16 + art_sys_100: -6.15419587e-08 + art_sys_101: -6.24797013e-14 + art_sys_102: 3.03841603e-08 + art_sys_103: -4.65542650e-14 + art_sys_104: -8.15383790e-14 + art_sys_105: 6.29025419e-17 + art_sys_106: 4.01479238e-13 + art_sys_107: -1.55448069e-08 + art_sys_108: 1.01979079e-16 + art_sys_109: 3.94095801e-16 + art_sys_110: 7.00471318e-09 + art_sys_111: -2.10265002e-15 + art_sys_112: -1.43778575e-13 + art_sys_113: 1.32173277e-14 + art_sys_114: 1.94438277e-16 + art_sys_115: -1.53764061e-15 + art_sys_116: 2.75722391e-09 + art_sys_117: 6.93973424e-16 + art_sys_118: -2.61389096e-14 + art_sys_119: -1.02833285e-09 + art_sys_120: -1.99376300e-14 + art_sys_121: -1.01427022e-16 + art_sys_122: -1.44699123e-14 + art_sys_123: -3.75175531e-10 + art_sys_124: 7.54187674e-15 + art_sys_125: 1.01947762e-16 + art_sys_126: 5.05981657e-15 + art_sys_127: 1.25881540e-10 + art_sys_128: -1.29975328e-14 + art_sys_129: 6.43444996e-19 + art_sys_130: -4.48778443e-11 + art_sys_131: -6.46478294e-17 + art_sys_132: 6.27519623e-14 + art_sys_133: -1.46369180e-11 + art_sys_134: -2.95985653e-14 + art_sys_135: -3.59727073e-15 + art_sys_136: -6.31202003e-18 + art_sys_137: -4.82772783e-12 + art_sys_138: -5.01840857e-15 + art_sys_139: -1.46239097e-12 + art_sys_140: -1.47311336e-18 + art_sys_141: -9.81712283e-15 + art_sys_142: 4.54098802e-15 + art_sys_143: -4.48794748e-13 + art_sys_144: 2.04402293e-17 + art_sys_145: 3.49112195e-15 + art_sys_146: -1.50935453e-13 + art_sys_147: 3.68688883e-18 + art_sys_148: 3.14090039e-19 + art_sys_149: -1.14140121e-15 + art_sys_150: -1.90546409e-14 + art_sys_151: 7.10157408e-16 + art_sys_152: -9.75708602e-19 + art_sys_153: 2.13123190e-15 + art_sys_154: -2.32264100e-15 + art_sys_155: 7.57679622e-19 + art_sys_156: 0.0 + art_sys_157: 1.08605875e-15 art_sys_158: 0.0 - art_sys_159: -4.72304940e-15 - art_sys_160: -1.48961278e-16 - art_sys_161: -1.49859356e-15 - art_sys_162: -3.52113549e-17 - art_sys_163: 2.26320241e-17 - art_sys_164: 6.99298569e-17 - art_sys_165: 8.62664245e-19 - art_sys_166: -1.50994197e-25 - art_sys_167: -1.69665934e-25 - art_sys_168: 2.94924057e-26 - art_sys_169: -8.96450274e-27 - art_sys_170: -3.40137562e-27 - art_sys_171: 4.76108653e-27 - art_sys_172: -3.12414236e-26 - art_sys_173: 3.23326962e-27 - art_sys_174: 3.84796393e-28 - art_sys_175: 3.94852792e-31 - art_sys_176: 1.98200885e-28 - art_sys_177: 2.26506832e-29 - art_sys_178: -1.63172931e-29 - art_sys_179: -4.20889304e-30 - art_sys_180: -1.13794764e-28 - art_sys_181: 6.29987790e-31 - art_sys_182: 3.09133274e-29 - art_sys_183: 5.56803442e-31 - art_sys_184: 2.19055548e-34 - art_sys_185: 3.02625357e-33 + art_sys_159: 1.57890772e-16 + art_sys_160: 3.54894921e-17 + art_sys_161: -1.05942502e-17 + art_sys_162: -1.05942502e-17 + art_sys_163: -1.37550792e-17 + art_sys_164: -1.37550792e-17 + art_sys_165: 1.51679985e-31 + art_sys_166: -5.01897659e-32 + art_sys_167: -0.0 + art_sys_168: 4.29083188e-26 + art_sys_169: 5.55445259e-26 + art_sys_170: 4.29057459e-27 + art_sys_171: 3.59583377e-26 + art_sys_172: 5.03176850e-27 + art_sys_173: 2.98302467e-28 + art_sys_174: 1.96046461e-28 + art_sys_175: -3.32113711e-29 + art_sys_176: 3.34640978e-29 + art_sys_177: -8.09295429e-28 + art_sys_178: 4.38044825e-29 + art_sys_179: -2.02464305e-31 + art_sys_180: 3.70185884e-30 + art_sys_181: 8.56299451e-29 + art_sys_182: 4.86288348e-30 + art_sys_183: 1.04342835e-31 + art_sys_184: -4.33184439e-32 + art_sys_185: -1.18662432e-33 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -20633,167 +20633,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: 1.55800211e-05 - art_sys_26: 1.62703973e-04 - art_sys_27: 3.55604768e-04 - art_sys_28: 4.92590441e-23 - art_sys_29: -1.24986276e-22 - art_sys_30: -2.23323412e-04 - art_sys_31: 1.46059140e-03 - art_sys_32: 4.95002921e-03 - art_sys_33: 6.61681903e-03 - art_sys_34: -2.44832900e-20 - art_sys_35: -1.71088579e-20 - art_sys_36: -4.06705364e-21 - art_sys_37: -3.39052102e-21 - art_sys_38: -2.03289127e-03 - art_sys_39: 7.14707671e-21 - art_sys_40: 2.65170835e-21 - art_sys_41: 9.21276254e-21 - art_sys_42: -2.84105081e-19 - art_sys_43: -1.56411332e-02 - art_sys_44: 9.96604937e-03 - art_sys_45: -3.14408475e-02 - art_sys_46: 5.22870874e-19 - art_sys_47: 4.34250243e-20 - art_sys_48: 7.33042270e-15 - art_sys_49: 3.44209577e-14 - art_sys_50: -2.01278208e-14 - art_sys_51: -4.15744743e-15 - art_sys_52: -2.23094617e-15 - art_sys_53: 1.36894822e-15 - art_sys_54: -4.50085180e-16 - art_sys_55: 3.39522923e-02 - art_sys_56: 1.41063609e-02 - art_sys_57: 2.57334711e-12 - art_sys_58: 1.29576533e-16 - art_sys_59: -4.51063472e-17 - art_sys_60: 3.50973946e-13 - art_sys_61: -1.80264150e-12 - art_sys_62: -8.40219078e-14 - art_sys_63: -7.52329299e-03 - art_sys_64: 6.48210893e-18 - art_sys_65: 7.57942674e-18 - art_sys_66: -6.74916626e-18 - art_sys_67: 1.33382170e-13 - art_sys_68: -8.12547916e-04 - art_sys_69: -4.00400981e-04 - art_sys_70: 1.45597777e-12 - art_sys_71: 1.16970699e-14 - art_sys_72: 1.09944211e-14 - art_sys_73: 1.41333182e-16 - art_sys_74: 2.41957149e-16 - art_sys_75: 3.95351327e-18 - art_sys_76: -9.22840244e-15 - art_sys_77: 2.23488619e-12 - art_sys_78: 9.30516943e-05 - art_sys_79: -4.40743688e-18 - art_sys_80: 7.95139269e-14 - art_sys_81: -1.42393025e-19 - art_sys_82: -1.24683414e-18 - art_sys_83: 4.87738862e-17 - art_sys_84: 4.85345288e-19 - art_sys_85: -1.97093133e-19 - art_sys_86: -9.54423516e-16 - art_sys_87: -3.06357878e-14 - art_sys_88: 3.19360675e-16 - art_sys_89: -4.77843533e-18 - art_sys_90: 1.64627911e-14 - art_sys_91: -6.57748743e-07 - art_sys_92: -1.47079799e-14 - art_sys_93: -3.28015761e-13 - art_sys_94: 4.14469490e-13 - art_sys_95: 3.29068940e-07 - art_sys_96: -1.37713413e-16 - art_sys_97: 2.13195438e-07 - art_sys_98: -5.16350595e-14 - art_sys_99: 2.44344771e-15 - art_sys_100: -1.07808867e-07 - art_sys_101: -1.70403936e-13 - art_sys_102: 1.46331119e-13 - art_sys_103: -5.65485050e-08 - art_sys_104: 1.72493292e-14 - art_sys_105: 1.30079868e-15 - art_sys_106: -1.32245439e-13 - art_sys_107: 3.35399093e-15 - art_sys_108: -2.11463929e-16 - art_sys_109: -1.17926322e-15 - art_sys_110: -2.56063487e-08 - art_sys_111: -2.45346037e-13 - art_sys_112: -1.02208328e-08 - art_sys_113: 3.25671970e-16 - art_sys_114: 6.83930321e-13 - art_sys_115: -3.82963251e-09 - art_sys_116: 4.66855132e-13 - art_sys_117: -4.48405403e-14 - art_sys_118: -1.40565419e-09 - art_sys_119: 1.11165843e-13 - art_sys_120: 3.97699483e-14 - art_sys_121: 4.73195333e-10 - art_sys_122: 5.62667685e-14 - art_sys_123: -3.24130412e-14 - art_sys_124: -1.69224134e-10 - art_sys_125: -8.70685003e-14 - art_sys_126: -5.54742722e-11 - art_sys_127: -1.19729365e-14 - art_sys_128: -1.82525055e-11 - art_sys_129: -2.65742190e-14 - art_sys_130: -5.60235557e-12 - art_sys_131: -8.78280088e-16 - art_sys_132: 3.25563931e-14 - art_sys_133: -1.61531009e-12 - art_sys_134: -8.62086621e-18 - art_sys_135: 2.95290930e-14 - art_sys_136: 5.46532177e-13 - art_sys_137: 1.60778845e-18 - art_sys_138: 6.43799798e-16 - art_sys_139: -1.31819949e-15 - art_sys_140: -7.72261372e-14 - art_sys_141: -1.86800317e-14 - art_sys_142: -3.13249468e-15 - art_sys_143: 3.58761608e-19 - art_sys_144: 5.59222098e-19 - art_sys_145: 4.62029783e-18 - art_sys_146: -0.0 - art_sys_147: 1.01152420e-16 - art_sys_148: -1.23105721e-15 - art_sys_149: -1.23105721e-15 - art_sys_150: 4.37363503e-16 - art_sys_151: 4.37363503e-16 - art_sys_152: -2.04631910e-15 - art_sys_153: 2.42102303e-17 - art_sys_154: 1.07048318e-19 - art_sys_155: 4.37202613e-28 - art_sys_156: 4.70244618e-31 - art_sys_157: 3.09288702e-31 + art_sys_25: 7.14696040e-80 + art_sys_26: 3.74390451e-74 + art_sys_27: -2.35147756e-67 + art_sys_28: 1.40686540e-66 + art_sys_29: 5.40358177e-56 + art_sys_30: 4.39193413e-53 + art_sys_31: 2.05439299e-50 + art_sys_32: -2.45408313e-42 + art_sys_33: -7.35438948e-37 + art_sys_34: -7.41497132e-30 + art_sys_35: -5.19805229e-31 + art_sys_36: 1.55800211e-05 + art_sys_37: 1.62703973e-04 + art_sys_38: 3.55604768e-04 + art_sys_39: -2.23323412e-04 + art_sys_40: -1.46059140e-03 + art_sys_41: 4.95002921e-03 + art_sys_42: 6.61681903e-03 + art_sys_43: 2.03289127e-03 + art_sys_44: 1.56411332e-02 + art_sys_45: -9.96604937e-03 + art_sys_46: -3.14408475e-02 + art_sys_47: -7.93291410e-19 + art_sys_48: 5.89896919e-19 + art_sys_49: -2.11777226e-20 + art_sys_50: 3.39522923e-02 + art_sys_51: -1.41063609e-02 + art_sys_52: -6.32055501e-19 + art_sys_53: 5.21762478e-19 + art_sys_54: -1.51850699e-20 + art_sys_55: -9.85146897e-19 + art_sys_56: 1.18422682e-19 + art_sys_57: -7.52329300e-03 + art_sys_58: 8.12547945e-04 + art_sys_59: -1.51610145e-19 + art_sys_60: 6.01250337e-19 + art_sys_61: -4.00400981e-04 + art_sys_62: -1.57761365e-19 + art_sys_63: 1.11151715e-19 + art_sys_64: 2.18586112e-16 + art_sys_65: -4.51400663e-16 + art_sys_66: 4.18176859e-17 + art_sys_67: -4.11131822e-17 + art_sys_68: 4.00340143e-18 + art_sys_69: 1.99931159e-17 + art_sys_70: 2.40423704e-17 + art_sys_71: 1.22799538e-17 + art_sys_72: -7.51132536e-19 + art_sys_73: 9.37890468e-19 + art_sys_74: 9.30516938e-05 + art_sys_75: -4.72664475e-20 + art_sys_76: -7.46133637e-17 + art_sys_77: 8.60188769e-18 + art_sys_78: -6.80590836e-18 + art_sys_79: -1.82351580e-20 + art_sys_80: -8.65344086e-18 + art_sys_81: -7.17959858e-20 + art_sys_82: -1.29162695e-15 + art_sys_83: 1.12053227e-18 + art_sys_84: 8.83855280e-19 + art_sys_85: -6.53454887e-20 + art_sys_86: 1.19515308e-19 + art_sys_87: -3.07757400e-14 + art_sys_88: -1.65886396e-15 + art_sys_89: -6.31120728e-20 + art_sys_90: 7.61968580e-17 + art_sys_91: 7.30071197e-17 + art_sys_92: 6.62829206e-20 + art_sys_93: -9.22031766e-21 + art_sys_94: -1.77387735e-15 + art_sys_95: 6.57748841e-07 + art_sys_96: 1.44356071e-15 + art_sys_97: -5.45781206e-16 + art_sys_98: -3.29069078e-07 + art_sys_99: -5.04655632e-15 + art_sys_100: 2.13194098e-07 + art_sys_101: 2.16255430e-13 + art_sys_102: -1.07809451e-07 + art_sys_103: 1.61588098e-13 + art_sys_104: 2.42206881e-13 + art_sys_105: -2.37079477e-16 + art_sys_106: -1.42032572e-12 + art_sys_107: 5.65485658e-08 + art_sys_108: -3.84352750e-16 + art_sys_109: -1.48533970e-15 + art_sys_110: -2.56072545e-08 + art_sys_111: 3.42940322e-14 + art_sys_112: 5.25588800e-13 + art_sys_113: -4.68963503e-14 + art_sys_114: -7.33736936e-16 + art_sys_115: 5.33971743e-15 + art_sys_116: -1.02208532e-08 + art_sys_117: -2.62107602e-15 + art_sys_118: 9.40246004e-14 + art_sys_119: 3.82953972e-09 + art_sys_120: 7.29806258e-14 + art_sys_121: 3.82773019e-16 + art_sys_122: 4.96073245e-14 + art_sys_123: 1.40558541e-09 + art_sys_124: -2.66950465e-14 + art_sys_125: -3.85446943e-16 + art_sys_126: -1.88155378e-14 + art_sys_127: -4.73365800e-10 + art_sys_128: 4.74671948e-14 + art_sys_129: -2.57669736e-18 + art_sys_130: 1.69147140e-10 + art_sys_131: 2.44629002e-16 + art_sys_132: -2.29339835e-13 + art_sys_133: 5.52853956e-11 + art_sys_134: 1.10259359e-13 + art_sys_135: 1.31308488e-14 + art_sys_136: 2.39064032e-17 + art_sys_137: 1.82536186e-11 + art_sys_138: 1.87640600e-14 + art_sys_139: 5.53481111e-12 + art_sys_140: 5.54964139e-18 + art_sys_141: 3.70986444e-14 + art_sys_142: -1.68914230e-14 + art_sys_143: 1.69913441e-12 + art_sys_144: -7.69400847e-17 + art_sys_145: -1.30499102e-14 + art_sys_146: 5.71649717e-13 + art_sys_147: -1.39612409e-17 + art_sys_148: -1.18845757e-18 + art_sys_149: 4.21417514e-15 + art_sys_150: 7.22016817e-14 + art_sys_151: -2.65686175e-15 + art_sys_152: 3.70485100e-18 + art_sys_153: -8.06668194e-15 + art_sys_154: 8.52637745e-15 + art_sys_155: -2.88067773e-18 + art_sys_156: -0.0 + art_sys_157: -4.03284939e-15 art_sys_158: -0.0 - art_sys_159: 1.78305880e-14 - art_sys_160: 5.61954205e-16 - art_sys_161: 5.66948920e-15 - art_sys_162: 1.33162404e-16 - art_sys_163: -8.93685128e-17 - art_sys_164: -2.64788428e-16 - art_sys_165: -3.25362967e-18 - art_sys_166: 5.71714205e-25 - art_sys_167: 6.44891426e-25 - art_sys_168: -1.11792954e-25 - art_sys_169: 3.34987046e-26 - art_sys_170: 1.20961698e-26 - art_sys_171: -1.79808569e-26 - art_sys_172: 1.15782205e-25 - art_sys_173: -1.26075679e-26 - art_sys_174: -1.42558203e-27 - art_sys_175: -1.49044569e-30 - art_sys_176: -7.39309538e-28 - art_sys_177: -8.55249013e-29 - art_sys_178: 6.23561613e-29 - art_sys_179: 1.58323389e-29 - art_sys_180: 4.28719551e-28 - art_sys_181: -2.31517655e-30 - art_sys_182: -1.16967635e-28 - art_sys_183: -2.10617760e-30 - art_sys_184: -8.38259488e-34 - art_sys_185: -1.14635353e-32 + art_sys_159: -5.89546401e-16 + art_sys_160: -1.32022731e-16 + art_sys_161: 4.02921949e-17 + art_sys_162: 4.02921949e-17 + art_sys_163: 5.14048931e-17 + art_sys_164: 5.14048931e-17 + art_sys_165: -5.68025161e-31 + art_sys_166: 1.87994565e-31 + art_sys_167: 0.0 + art_sys_168: -1.88365865e-25 + art_sys_169: -2.10686089e-25 + art_sys_170: -2.76450883e-26 + art_sys_171: -1.29316364e-25 + art_sys_172: -1.81307679e-26 + art_sys_173: -9.62116559e-28 + art_sys_174: -5.56992076e-28 + art_sys_175: 1.10039833e-28 + art_sys_176: -1.23219496e-28 + art_sys_177: 3.06044247e-27 + art_sys_178: -1.65141755e-28 + art_sys_179: 7.71334679e-31 + art_sys_180: -1.38265581e-29 + art_sys_181: -3.23818984e-28 + art_sys_182: -1.77985418e-29 + art_sys_183: -3.84803835e-31 + art_sys_184: 1.63934382e-31 + art_sys_185: 4.49311474e-33 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -20924,167 +20924,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: 4.01159843e-06 - art_sys_26: 2.23763094e-05 - art_sys_27: 5.17594766e-05 - art_sys_28: 7.76923506e-24 - art_sys_29: -1.80771543e-23 - art_sys_30: -2.61466724e-05 - art_sys_31: 5.02693029e-04 - art_sys_32: 5.82487091e-04 - art_sys_33: 1.96147319e-03 - art_sys_34: -4.26226077e-21 - art_sys_35: -4.92099250e-21 - art_sys_36: -5.47725247e-21 - art_sys_37: -1.17710068e-21 - art_sys_38: -1.36753960e-03 - art_sys_39: -1.64735260e-21 - art_sys_40: 4.16331743e-21 - art_sys_41: 5.97359812e-21 - art_sys_42: -1.98247471e-20 - art_sys_43: -1.20479416e-03 - art_sys_44: -1.41060448e-02 - art_sys_45: 2.02009903e-03 - art_sys_46: -1.25543035e-19 - art_sys_47: -2.77972614e-20 - art_sys_48: 6.59798173e-15 - art_sys_49: -3.47550704e-14 - art_sys_50: 4.14668589e-14 - art_sys_51: 9.39713273e-15 - art_sys_52: 4.50252921e-15 - art_sys_53: -6.80566636e-16 - art_sys_54: 3.60946433e-16 - art_sys_55: 3.05628833e-02 - art_sys_56: -1.68818519e-02 - art_sys_57: 2.31648600e-12 - art_sys_58: -2.73473691e-16 - art_sys_59: 2.73756507e-17 - art_sys_60: -4.20085266e-13 - art_sys_61: 2.15881926e-12 - art_sys_62: 1.00551900e-13 - art_sys_63: 9.55145502e-03 - art_sys_64: -9.32547128e-18 - art_sys_65: -1.76046269e-17 - art_sys_66: 1.58332922e-17 - art_sys_67: -1.69339931e-13 - art_sys_68: 1.92531162e-03 - art_sys_69: 8.80199393e-04 - art_sys_70: -1.84848763e-12 - art_sys_71: -1.47403344e-14 - art_sys_72: -1.31166492e-14 - art_sys_73: -4.65263508e-16 - art_sys_74: -6.35140407e-16 - art_sys_75: -1.18425572e-17 - art_sys_76: 2.40319862e-14 - art_sys_77: -5.31840223e-12 - art_sys_78: -2.42320555e-04 - art_sys_79: 1.31397908e-17 - art_sys_80: -2.91404753e-13 - art_sys_81: 4.13243112e-19 - art_sys_82: 4.35124001e-18 - art_sys_83: -1.58556473e-16 - art_sys_84: -1.79373387e-18 - art_sys_85: 6.35156548e-19 - art_sys_86: 3.13805849e-15 - art_sys_87: 6.98951059e-14 - art_sys_88: -1.05142965e-15 - art_sys_89: 1.57805607e-17 - art_sys_90: -3.63460203e-14 - art_sys_91: 2.41053388e-06 - art_sys_92: 3.52614712e-14 - art_sys_93: 7.74850904e-13 - art_sys_94: -1.07934015e-12 - art_sys_95: -9.60054883e-07 - art_sys_96: 4.55459656e-16 - art_sys_97: -7.06844865e-07 - art_sys_98: 1.30784751e-13 - art_sys_99: -5.54044947e-15 - art_sys_100: 3.51082060e-07 - art_sys_101: 6.25012539e-13 - art_sys_102: -5.37971553e-13 - art_sys_103: 1.84808486e-07 - art_sys_104: -4.50223292e-14 - art_sys_105: -6.39341146e-15 - art_sys_106: 4.28864666e-13 - art_sys_107: -1.11102087e-14 - art_sys_108: 7.00509112e-16 - art_sys_109: 3.90865232e-15 - art_sys_110: 8.43809746e-08 - art_sys_111: 8.12108769e-13 - art_sys_112: 3.36369739e-08 - art_sys_113: -1.07973044e-15 - art_sys_114: -2.25403825e-12 - art_sys_115: 1.26660026e-08 - art_sys_116: -1.53826092e-12 - art_sys_117: 1.37515254e-13 - art_sys_118: 4.64898842e-09 - art_sys_119: -3.59166202e-13 - art_sys_120: -1.31031429e-13 - art_sys_121: -1.56748193e-09 - art_sys_122: -1.85147360e-13 - art_sys_123: 1.06829791e-13 - art_sys_124: 5.60943912e-10 - art_sys_125: 2.87879323e-13 - art_sys_126: 1.83934485e-10 - art_sys_127: 3.93471859e-14 - art_sys_128: 6.05510070e-11 - art_sys_129: 8.75504247e-14 - art_sys_130: 1.85868038e-11 - art_sys_131: 2.97692235e-15 - art_sys_132: -1.07517682e-13 - art_sys_133: 5.36019590e-12 - art_sys_134: 2.86682901e-17 - art_sys_135: -9.76661903e-14 - art_sys_136: -1.81372208e-12 - art_sys_137: -5.32717353e-18 - art_sys_138: -2.29761284e-15 - art_sys_139: 4.36682604e-15 - art_sys_140: 2.56307432e-13 - art_sys_141: 6.19084552e-14 - art_sys_142: 1.03516882e-14 - art_sys_143: -1.19284467e-18 - art_sys_144: -1.85640205e-18 - art_sys_145: -1.53345165e-17 - art_sys_146: 0.0 - art_sys_147: -3.35325174e-16 - art_sys_148: 4.07948633e-15 - art_sys_149: 4.07948633e-15 - art_sys_150: -1.44791080e-15 - art_sys_151: -1.44791080e-15 - art_sys_152: 6.77366909e-15 - art_sys_153: -7.99314281e-17 - art_sys_154: -3.54797693e-19 - art_sys_155: -1.44699793e-27 - art_sys_156: -1.55223516e-30 - art_sys_157: -1.02151713e-30 + art_sys_25: 1.83856745e-80 + art_sys_26: 9.63125665e-75 + art_sys_27: -6.04921515e-68 + art_sys_28: 3.61918466e-67 + art_sys_29: 1.39008040e-56 + art_sys_30: 1.12983237e-53 + art_sys_31: 5.28496016e-51 + art_sys_32: -6.31316970e-43 + art_sys_33: -1.89192893e-37 + art_sys_34: -1.90751371e-30 + art_sys_35: -1.33720760e-31 + art_sys_36: 4.01159843e-06 + art_sys_37: 2.23763094e-05 + art_sys_38: 5.17594766e-05 + art_sys_39: -2.61466724e-05 + art_sys_40: -5.02693029e-04 + art_sys_41: 5.82487091e-04 + art_sys_42: 1.96147319e-03 + art_sys_43: 1.36753960e-03 + art_sys_44: 1.20479416e-03 + art_sys_45: 1.41060448e-02 + art_sys_46: 2.02009903e-03 + art_sys_47: -5.38024262e-20 + art_sys_48: 6.39911674e-19 + art_sys_49: -2.56208605e-19 + art_sys_50: 3.05628833e-02 + art_sys_51: 1.68818519e-02 + art_sys_52: -1.33045353e-19 + art_sys_53: -6.41552658e-19 + art_sys_54: -8.46235409e-19 + art_sys_55: -4.62767124e-19 + art_sys_56: 2.93711612e-19 + art_sys_57: 9.55145502e-03 + art_sys_58: -1.92531169e-03 + art_sys_59: 6.64670804e-19 + art_sys_60: -4.43599980e-19 + art_sys_61: 8.80199393e-04 + art_sys_62: -1.05110300e-19 + art_sys_63: -3.27679664e-19 + art_sys_64: -2.39424914e-15 + art_sys_65: 1.54648966e-15 + art_sys_66: -6.18459930e-16 + art_sys_67: 1.07036316e-16 + art_sys_68: -1.41155535e-17 + art_sys_69: -7.77104095e-17 + art_sys_70: -6.20279036e-17 + art_sys_71: -3.20847775e-17 + art_sys_72: 1.99658515e-18 + art_sys_73: -2.41945554e-18 + art_sys_74: -2.42320554e-04 + art_sys_75: 1.67882971e-19 + art_sys_76: 2.68961154e-16 + art_sys_77: -2.00802486e-17 + art_sys_78: 1.86739744e-17 + art_sys_79: 2.09108402e-20 + art_sys_80: 2.89023567e-17 + art_sys_81: -1.54414935e-20 + art_sys_82: 3.36374439e-15 + art_sys_83: -3.93276951e-18 + art_sys_84: -3.16669682e-18 + art_sys_85: 2.89727450e-19 + art_sys_86: -4.53936540e-19 + art_sys_87: 1.02134989e-13 + art_sys_88: 5.42740088e-15 + art_sys_89: 2.13298482e-19 + art_sys_90: -2.51361166e-16 + art_sys_91: -1.90267032e-16 + art_sys_92: -2.04154135e-19 + art_sys_93: 1.78312893e-20 + art_sys_94: 5.86685327e-15 + art_sys_95: -2.41053425e-06 + art_sys_96: -5.22511914e-15 + art_sys_97: 2.17921180e-15 + art_sys_98: 9.60055326e-07 + art_sys_99: 1.83936770e-17 + art_sys_100: -7.06840405e-07 + art_sys_101: -7.18989005e-13 + art_sys_102: 3.51083963e-07 + art_sys_103: -5.32420939e-13 + art_sys_104: -8.91826672e-13 + art_sys_105: 7.85871539e-16 + art_sys_106: 4.63471459e-12 + art_sys_107: -1.84808687e-07 + art_sys_108: 1.27404742e-15 + art_sys_109: 4.92360048e-15 + art_sys_110: 8.43839582e-08 + art_sys_111: -2.54479441e-15 + art_sys_112: -1.73190535e-12 + art_sys_113: 1.52722003e-13 + art_sys_114: 2.43245870e-15 + art_sys_115: -1.70981937e-14 + art_sys_116: 3.36370415e-08 + art_sys_117: 8.69037514e-15 + art_sys_118: -3.08007573e-13 + art_sys_119: -1.26656959e-08 + art_sys_120: -2.40507702e-13 + art_sys_121: -1.26855486e-15 + art_sys_122: -1.59247863e-13 + art_sys_123: -4.64876092e-09 + art_sys_124: 8.68499990e-14 + art_sys_125: 1.27856761e-15 + art_sys_126: 6.22812370e-14 + art_sys_127: 1.56804686e-09 + art_sys_128: -1.56083595e-13 + art_sys_129: 8.66360120e-18 + art_sys_130: -5.60688908e-10 + art_sys_131: -8.11626756e-16 + art_sys_132: 7.55724697e-13 + art_sys_133: -1.83308676e-10 + art_sys_134: -3.64714767e-13 + art_sys_135: -4.32534984e-14 + art_sys_136: -7.93511830e-17 + art_sys_137: -6.05548501e-11 + art_sys_138: -6.19667338e-14 + art_sys_139: -1.83629747e-11 + art_sys_140: -1.83948217e-17 + art_sys_141: -1.23042018e-13 + art_sys_142: 5.56838802e-14 + art_sys_143: -5.63797813e-12 + art_sys_144: 2.54940374e-16 + art_sys_145: 4.33117564e-14 + art_sys_146: -1.89700577e-12 + art_sys_147: 4.63289806e-17 + art_sys_148: 3.94348436e-18 + art_sys_149: -1.38388010e-14 + art_sys_150: -2.39624657e-13 + art_sys_151: 8.79294941e-15 + art_sys_152: -1.22976200e-17 + art_sys_153: 2.67645073e-14 + art_sys_154: -2.80416680e-14 + art_sys_155: 9.57308662e-18 + art_sys_156: 0.0 + art_sys_157: 1.33002673e-14 art_sys_158: 0.0 - art_sys_159: -5.91158766e-14 - art_sys_160: -1.86300782e-15 - art_sys_161: -1.88095675e-14 - art_sys_162: -4.41750019e-16 - art_sys_163: 2.99644352e-16 - art_sys_164: 8.78575336e-16 - art_sys_165: 1.07854772e-17 - art_sys_166: -1.89602767e-24 - art_sys_167: -2.12316109e-24 - art_sys_168: 3.71075877e-25 - art_sys_169: -1.11860219e-25 - art_sys_170: -4.07010691e-26 - art_sys_171: 5.95117215e-26 - art_sys_172: -3.81036849e-25 - art_sys_173: 4.09153456e-26 - art_sys_174: 4.64599632e-27 - art_sys_175: 4.94210475e-30 - art_sys_176: 2.47715033e-27 - art_sys_177: 2.74943700e-28 - art_sys_178: -2.05984152e-28 - art_sys_179: -5.27528209e-29 - art_sys_180: -1.42307099e-27 - art_sys_181: 7.70978051e-30 - art_sys_182: 3.88074258e-28 - art_sys_183: 6.98730399e-30 - art_sys_184: 2.78684418e-33 - art_sys_185: 3.80431263e-32 + art_sys_159: 1.94980464e-15 + art_sys_160: 4.35764237e-16 + art_sys_161: -1.33789900e-16 + art_sys_162: -1.33789900e-16 + art_sys_163: -1.70076268e-16 + art_sys_164: -1.70076268e-16 + art_sys_165: 1.88014707e-30 + art_sys_166: -6.22285413e-31 + art_sys_167: -0.0 + art_sys_168: 8.86347833e-25 + art_sys_169: 6.99146438e-25 + art_sys_170: 6.12368450e-26 + art_sys_171: 4.30875331e-25 + art_sys_172: 5.93098489e-26 + art_sys_173: 3.06909540e-27 + art_sys_174: 1.84640402e-27 + art_sys_175: -3.36334271e-28 + art_sys_176: 4.07890896e-28 + art_sys_177: -1.01515167e-26 + art_sys_178: 5.47414397e-28 + art_sys_179: -2.56574877e-30 + art_sys_180: 4.57340633e-29 + art_sys_181: 1.07399611e-27 + art_sys_182: 5.84795703e-29 + art_sys_183: 1.30146369e-30 + art_sys_184: -5.44014956e-31 + art_sys_185: -1.49143830e-32 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -21215,167 +21215,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: 5.07350415e-07 - art_sys_26: 2.73762663e-06 - art_sys_27: 5.53841394e-06 - art_sys_28: 6.81426428e-25 - art_sys_29: -1.90521058e-24 - art_sys_30: 1.54160714e-06 - art_sys_31: 3.86106380e-05 - art_sys_32: -1.41268021e-04 - art_sys_33: 3.10602343e-05 - art_sys_34: 3.98672093e-22 - art_sys_35: -4.06441671e-23 - art_sys_36: -9.05854388e-22 - art_sys_37: -5.42830261e-23 - art_sys_38: -1.15803797e-04 - art_sys_39: -4.51381505e-22 - art_sys_40: 5.04940381e-22 - art_sys_41: 5.34172770e-22 - art_sys_42: 2.41004308e-20 - art_sys_43: 1.30149254e-03 - art_sys_44: -2.17037072e-03 - art_sys_45: 4.90390377e-03 - art_sys_46: -7.08031998e-20 - art_sys_47: -2.23938857e-20 - art_sys_48: 5.12949821e-16 - art_sys_49: -4.86046572e-14 - art_sys_50: 3.92033464e-15 - art_sys_51: -1.98497294e-14 - art_sys_52: -9.11739804e-16 - art_sys_53: -5.01253454e-16 - art_sys_54: -3.12980704e-16 - art_sys_55: 2.37640067e-03 - art_sys_56: -2.67082659e-02 - art_sys_57: 1.80144591e-13 - art_sys_58: 3.49283889e-16 - art_sys_59: 3.12997287e-19 - art_sys_60: -6.64568595e-13 - art_sys_61: 3.41443379e-12 - art_sys_62: 1.59081253e-13 - art_sys_63: -1.02872212e-02 - art_sys_64: -1.50555105e-17 - art_sys_65: 2.32030293e-17 - art_sys_66: -1.38588086e-17 - art_sys_67: 1.82385431e-13 - art_sys_68: -1.62036938e-03 - art_sys_69: -1.44971633e-03 - art_sys_70: 1.99087833e-12 - art_sys_71: 1.59318805e-14 - art_sys_72: 1.45513266e-14 - art_sys_73: 1.08198976e-15 - art_sys_74: 1.26220409e-15 - art_sys_75: 3.83822040e-17 - art_sys_76: -4.72896478e-14 - art_sys_77: 4.76971444e-12 - art_sys_78: 4.76844948e-04 - art_sys_79: -3.88742885e-17 - art_sys_80: 7.38105913e-13 - art_sys_81: -1.21617341e-18 - art_sys_82: -1.15768409e-17 - art_sys_83: 4.67856455e-16 - art_sys_84: 4.49519887e-18 - art_sys_85: -1.72454253e-18 - art_sys_86: -9.31143352e-15 - art_sys_87: -8.67047265e-14 - art_sys_88: 3.15173338e-15 - art_sys_89: -4.86756177e-17 - art_sys_90: 5.84180703e-14 - art_sys_91: -6.10570106e-06 - art_sys_92: -6.41059150e-14 - art_sys_93: -6.76680465e-13 - art_sys_94: 2.12395586e-12 - art_sys_95: 2.85274717e-06 - art_sys_96: -1.38178235e-15 - art_sys_97: 1.95707445e-06 - art_sys_98: -2.50142532e-13 - art_sys_99: 7.22633076e-15 - art_sys_100: -1.02499008e-06 - art_sys_101: -1.58194013e-12 - art_sys_102: 1.35992567e-12 - art_sys_103: -5.44335677e-07 - art_sys_104: 8.87366162e-14 - art_sys_105: 1.33521555e-14 - art_sys_106: -1.28426181e-12 - art_sys_107: 3.37694199e-14 - art_sys_108: -2.12947618e-15 - art_sys_109: -1.19024261e-14 - art_sys_110: -2.51059677e-07 - art_sys_111: -2.25984318e-12 - art_sys_112: -1.01139360e-07 - art_sys_113: 3.29220683e-15 - art_sys_114: 6.32080347e-12 - art_sys_115: -3.82056139e-08 - art_sys_116: 4.57641896e-12 - art_sys_117: -4.82294685e-13 - art_sys_118: -1.41039625e-08 - art_sys_119: 1.06941548e-12 - art_sys_120: 3.90341467e-13 - art_sys_121: 4.76437852e-09 - art_sys_122: 5.51158482e-13 - art_sys_123: -3.18243350e-13 - art_sys_124: -1.70884415e-09 - art_sys_125: -8.64563158e-13 - art_sys_126: -5.61078609e-10 - art_sys_127: -1.17789840e-13 - art_sys_128: -1.84842890e-10 - art_sys_129: -2.59787728e-13 - art_sys_130: -5.67824484e-11 - art_sys_131: -9.70175844e-15 - art_sys_132: 3.24533891e-13 - art_sys_133: -1.63810659e-11 - art_sys_134: -8.81749419e-17 - art_sys_135: 2.96112445e-13 - art_sys_136: 5.54405390e-12 - art_sys_137: 1.62121832e-17 - art_sys_138: 5.71789030e-15 - art_sys_139: -1.34059820e-14 - art_sys_140: -7.83804396e-13 - art_sys_141: -1.88468325e-13 - art_sys_142: -3.12434230e-14 - art_sys_143: 3.66637127e-18 - art_sys_144: 5.68138370e-18 - art_sys_145: 4.68819218e-17 - art_sys_146: -0.0 - art_sys_147: 1.02211179e-15 - art_sys_148: -1.24157443e-14 - art_sys_149: -1.24157443e-14 - art_sys_150: 4.39280464e-15 - art_sys_151: 4.39280464e-15 - art_sys_152: -2.05130932e-14 - art_sys_153: 2.38560030e-16 - art_sys_154: 1.08101507e-18 - art_sys_155: 4.37893112e-27 - art_sys_156: 4.66183621e-30 - art_sys_157: 3.08756948e-30 + art_sys_25: 2.32517467e-81 + art_sys_26: 1.21803277e-75 + art_sys_27: -7.65023976e-69 + art_sys_28: 4.57706160e-68 + art_sys_29: 1.75798812e-57 + art_sys_30: 1.42886115e-54 + art_sys_31: 6.68371208e-52 + art_sys_32: -7.98405423e-44 + art_sys_33: -2.39265915e-38 + art_sys_34: -2.41236870e-31 + art_sys_35: -1.69112166e-32 + art_sys_36: 5.07350415e-07 + art_sys_37: 2.73762663e-06 + art_sys_38: 5.53841394e-06 + art_sys_39: 1.54160714e-06 + art_sys_40: -3.86106380e-05 + art_sys_41: -1.41268021e-04 + art_sys_42: 3.10602343e-05 + art_sys_43: 1.15803797e-04 + art_sys_44: -1.30149254e-03 + art_sys_45: 2.17037072e-03 + art_sys_46: 4.90390377e-03 + art_sys_47: 1.02249955e-19 + art_sys_48: 8.49873663e-20 + art_sys_49: 5.53376417e-21 + art_sys_50: 2.37640067e-03 + art_sys_51: 2.67082659e-02 + art_sys_52: 4.82086768e-19 + art_sys_53: -1.11440202e-18 + art_sys_54: -6.91411832e-19 + art_sys_55: 4.46989945e-19 + art_sys_56: 2.72611534e-19 + art_sys_57: -1.02872212e-02 + art_sys_58: 1.62036944e-03 + art_sys_59: 1.23174486e-19 + art_sys_60: 1.92770607e-19 + art_sys_61: -1.44971633e-03 + art_sys_62: -1.59172566e-19 + art_sys_63: -9.10121654e-20 + art_sys_64: 1.85092301e-15 + art_sys_65: -3.30074054e-15 + art_sys_66: 6.81995696e-16 + art_sys_67: -2.94340792e-16 + art_sys_68: 2.97191481e-17 + art_sys_69: 1.18095495e-16 + art_sys_70: 1.23319926e-16 + art_sys_71: 6.34294603e-17 + art_sys_72: -3.38761840e-18 + art_sys_73: 4.70845818e-18 + art_sys_74: 4.76844945e-04 + art_sys_75: -4.41209615e-19 + art_sys_76: -6.85179323e-16 + art_sys_77: 7.10085156e-17 + art_sys_78: -6.03422707e-17 + art_sys_79: -4.74989159e-20 + art_sys_80: -7.81754055e-17 + art_sys_81: 2.03492688e-19 + art_sys_82: -6.61960168e-15 + art_sys_83: 1.04211034e-17 + art_sys_84: 8.25041698e-18 + art_sys_85: -5.84312026e-19 + art_sys_86: 1.09195371e-18 + art_sys_87: -2.82543307e-13 + art_sys_88: -1.60009093e-14 + art_sys_89: -5.55059072e-19 + art_sys_90: 7.47410149e-16 + art_sys_91: 3.74361003e-16 + art_sys_92: 5.76442929e-19 + art_sys_93: -7.26163890e-20 + art_sys_94: -1.76967094e-14 + art_sys_95: 6.10570197e-06 + art_sys_96: 1.31451352e-14 + art_sys_97: -5.76815293e-15 + art_sys_98: -2.85274843e-06 + art_sys_99: -3.16924498e-14 + art_sys_100: 1.95706212e-06 + art_sys_101: 1.98773385e-12 + art_sys_102: -1.02499563e-06 + art_sys_103: 1.47909116e-12 + art_sys_104: 2.25235027e-12 + art_sys_105: -2.39395930e-15 + art_sys_106: -1.34997752e-11 + art_sys_107: 5.44336276e-07 + art_sys_108: -3.88097544e-15 + art_sys_109: -1.49989785e-14 + art_sys_110: -2.51068549e-07 + art_sys_111: 2.14693449e-13 + art_sys_112: 5.15266691e-12 + art_sys_113: -4.45866884e-13 + art_sys_114: -7.41572801e-15 + art_sys_115: 4.25190514e-14 + art_sys_116: -1.01139565e-07 + art_sys_117: -2.65084941e-14 + art_sys_118: 9.03443538e-13 + art_sys_119: 3.82046891e-08 + art_sys_120: 7.16387688e-13 + art_sys_121: 3.86721903e-15 + art_sys_122: 4.54482181e-13 + art_sys_123: 1.41032723e-08 + art_sys_124: -2.53271989e-13 + art_sys_125: -3.90298084e-15 + art_sys_126: -1.87657316e-13 + art_sys_127: -4.76609816e-09 + art_sys_128: 4.63571605e-13 + art_sys_129: -2.75752004e-17 + art_sys_130: 1.70806996e-09 + art_sys_131: 2.47919328e-15 + art_sys_132: -2.24810080e-12 + art_sys_133: 5.59175008e-10 + art_sys_134: 1.10040953e-12 + art_sys_135: 1.28574991e-13 + art_sys_136: 2.42452493e-16 + art_sys_137: 1.84856374e-10 + art_sys_138: 1.87661044e-13 + art_sys_139: 5.61009901e-11 + art_sys_140: 5.60098017e-17 + art_sys_141: 3.75494328e-13 + art_sys_142: -1.67937331e-13 + art_sys_143: 1.72266301e-11 + art_sys_144: -7.75645037e-16 + art_sys_145: -1.30996753e-13 + art_sys_146: 5.79807859e-12 + art_sys_147: -1.41580489e-16 + art_sys_148: -1.20407922e-17 + art_sys_149: 4.14791249e-14 + art_sys_150: 7.32627917e-13 + art_sys_151: -2.66216898e-14 + art_sys_152: 3.76678419e-17 + art_sys_153: -8.17411157e-14 + art_sys_154: 8.36863923e-14 + art_sys_155: -2.93067371e-17 + art_sys_156: -0.0 + art_sys_157: -4.00376168e-14 art_sys_158: -0.0 - art_sys_159: 1.80270285e-13 - art_sys_160: 5.67769971e-15 - art_sys_161: 5.74441710e-14 - art_sys_162: 1.34871200e-15 - art_sys_163: -9.44297690e-16 - art_sys_164: -2.68485003e-15 - art_sys_165: -3.28557802e-17 - art_sys_166: 5.79485792e-24 - art_sys_167: 6.48074783e-24 - art_sys_168: -1.13396503e-24 - art_sys_169: 3.40931135e-25 - art_sys_170: 1.23976487e-25 - art_sys_171: -1.81932370e-25 - art_sys_172: 1.16529523e-24 - art_sys_173: -1.25204713e-25 - art_sys_174: -1.42907340e-26 - art_sys_175: -1.50653671e-29 - art_sys_176: -7.54620686e-27 - art_sys_177: -8.38951374e-28 - art_sys_178: 6.29269464e-28 - art_sys_179: 1.62614279e-28 - art_sys_180: 4.35113472e-27 - art_sys_181: -2.36642258e-29 - art_sys_182: -1.18531696e-27 - art_sys_183: -2.13365697e-29 - art_sys_184: -8.59574271e-33 - art_sys_185: -1.16285141e-31 + art_sys_159: -5.89164989e-15 + art_sys_160: -1.31334169e-15 + art_sys_161: 4.09719312e-16 + art_sys_162: 4.09719312e-16 + art_sys_163: 5.14365389e-16 + art_sys_164: 5.14365389e-16 + art_sys_165: -5.69470653e-30 + art_sys_166: 1.88511664e-30 + art_sys_167: 0.0 + art_sys_168: -1.43630592e-24 + art_sys_169: -2.13633099e-24 + art_sys_170: -1.13554593e-25 + art_sys_171: -1.31661187e-24 + art_sys_172: -1.81552301e-25 + art_sys_173: -9.46083780e-27 + art_sys_174: -5.69578097e-27 + art_sys_175: 1.02736092e-27 + art_sys_176: -1.24559319e-27 + art_sys_177: 3.09941278e-26 + art_sys_178: -1.66741202e-27 + art_sys_179: 7.86137460e-30 + art_sys_180: -1.38229412e-28 + art_sys_181: -3.27761614e-27 + art_sys_182: -1.78441176e-28 + art_sys_183: -3.98389761e-30 + art_sys_184: 1.66194560e-30 + art_sys_185: 4.55677027e-32 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -21506,167 +21506,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: 2.79278704e-08 - art_sys_26: 2.88219018e-07 - art_sys_27: 4.10270950e-07 - art_sys_28: 1.27609305e-26 - art_sys_29: -1.37109602e-25 - art_sys_30: 9.68138409e-07 - art_sys_31: -1.11414178e-05 - art_sys_32: -5.95711075e-05 - art_sys_33: -8.36840280e-05 - art_sys_34: 2.81871143e-22 - art_sys_35: 2.20773236e-22 - art_sys_36: 6.27597252e-23 - art_sys_37: 4.09982663e-23 - art_sys_38: 4.75168139e-05 - art_sys_39: 3.13417155e-23 - art_sys_40: -1.14783573e-22 - art_sys_41: -1.87156528e-22 - art_sys_42: 4.67551423e-21 - art_sys_43: 2.59402519e-04 - art_sys_44: 8.01168626e-04 - art_sys_45: 3.08603433e-04 - art_sys_46: 1.71947705e-21 - art_sys_47: 7.43212345e-22 - art_sys_48: -6.52966834e-16 - art_sys_49: 4.02472338e-14 - art_sys_50: 1.99112850e-14 - art_sys_51: -2.80487105e-15 - art_sys_52: -4.39291670e-15 - art_sys_53: -2.09164468e-15 - art_sys_54: -6.80417459e-17 - art_sys_55: -3.02458530e-03 - art_sys_56: -1.97513945e-03 - art_sys_57: -2.29241778e-13 - art_sys_58: -8.17351574e-16 - art_sys_59: -3.12312722e-16 - art_sys_60: -4.91439683e-14 - art_sys_61: 2.52438028e-13 - art_sys_62: 1.17645292e-14 - art_sys_63: -6.58299911e-03 - art_sys_64: -1.30060380e-18 - art_sys_65: -6.59490258e-17 - art_sys_66: 5.47184643e-17 - art_sys_67: 1.16712030e-13 - art_sys_68: 6.96170980e-03 - art_sys_69: 2.88352982e-03 - art_sys_70: 1.27399357e-12 - art_sys_71: 1.11908478e-14 - art_sys_72: 1.68478396e-14 - art_sys_73: -2.98026782e-15 - art_sys_74: -3.70259601e-15 - art_sys_75: -1.21799512e-16 - art_sys_76: 1.40593458e-13 - art_sys_77: -1.98052325e-11 - art_sys_78: -1.41768694e-03 - art_sys_79: 1.19521320e-16 - art_sys_80: -2.04499790e-12 - art_sys_81: 3.39028333e-18 - art_sys_82: 3.41922420e-17 - art_sys_83: -1.50734234e-15 - art_sys_84: -1.25554255e-17 - art_sys_85: 4.01967169e-18 - art_sys_86: 3.13263877e-14 - art_sys_87: 2.40962192e-13 - art_sys_88: -1.07333345e-14 - art_sys_89: 1.70976994e-16 - art_sys_90: -1.20065585e-13 - art_sys_91: 1.69164794e-05 - art_sys_92: 1.63902397e-13 - art_sys_93: 2.79141172e-12 - art_sys_94: -6.31454623e-12 - art_sys_95: -8.43765629e-06 - art_sys_96: 4.79566732e-15 - art_sys_97: -6.24972516e-06 - art_sys_98: 7.50205473e-13 - art_sys_99: -1.89262096e-14 - art_sys_100: 3.30494370e-06 - art_sys_101: 4.38166504e-12 - art_sys_102: -3.76421884e-12 - art_sys_103: 1.81282238e-06 - art_sys_104: -2.64192628e-13 - art_sys_105: -3.20931704e-14 - art_sys_106: 4.17859227e-12 - art_sys_107: -1.17881589e-13 - art_sys_108: 7.43458345e-15 - art_sys_109: 4.16298065e-14 - art_sys_110: 8.47756233e-07 - art_sys_111: 7.15914244e-12 - art_sys_112: 3.45628440e-07 - art_sys_113: -1.15405995e-14 - art_sys_114: -2.02157972e-11 - art_sys_115: 1.31939078e-07 - art_sys_116: -1.54510684e-11 - art_sys_117: 1.60767483e-12 - art_sys_118: 4.89509578e-08 - art_sys_119: -3.44391654e-12 - art_sys_120: -1.32003075e-12 - art_sys_121: -1.66316399e-08 - art_sys_122: -1.84949257e-12 - art_sys_123: 1.07585677e-12 - art_sys_124: 5.98048873e-09 - art_sys_125: 2.97276249e-12 - art_sys_126: 1.96847035e-09 - art_sys_127: 3.98881737e-13 - art_sys_128: 6.49463160e-10 - art_sys_129: 8.74498546e-13 - art_sys_130: 1.99707197e-10 - art_sys_131: 3.73932412e-14 - art_sys_132: -1.11770742e-12 - art_sys_133: 5.76630254e-11 - art_sys_134: 3.13388699e-16 - art_sys_135: -1.02762444e-12 - art_sys_136: -1.95210993e-11 - art_sys_137: -5.66741234e-17 - art_sys_138: -1.58962295e-14 - art_sys_139: 4.73402725e-14 - art_sys_140: 2.76183912e-12 - art_sys_141: 6.59555372e-13 - art_sys_142: 1.07804982e-13 - art_sys_143: -1.30246315e-17 - art_sys_144: -2.00392071e-17 - art_sys_145: -1.65164735e-16 - art_sys_146: 0.0 - art_sys_147: -3.58269613e-15 - art_sys_148: 4.34246652e-14 - art_sys_149: 4.34246652e-14 - art_sys_150: -1.53026060e-14 - art_sys_151: -1.53026060e-14 - art_sys_152: 7.11785572e-14 - art_sys_153: -8.06353191e-16 - art_sys_154: -3.78940014e-18 - art_sys_155: -1.51739662e-26 - art_sys_156: -1.60269733e-29 - art_sys_157: -1.06464748e-29 + art_sys_25: 1.28109607e-82 + art_sys_26: 6.71096675e-77 + art_sys_27: -4.21503477e-70 + art_sys_28: 2.52181296e-69 + art_sys_29: 9.68594618e-59 + art_sys_30: 7.87256294e-56 + art_sys_31: 3.68250927e-53 + art_sys_32: -4.39895575e-45 + art_sys_33: -1.31827783e-39 + art_sys_34: -1.32913716e-32 + art_sys_35: -9.31753360e-34 + art_sys_36: 2.79278704e-08 + art_sys_37: 2.88219018e-07 + art_sys_38: 4.10270950e-07 + art_sys_39: 9.68138409e-07 + art_sys_40: 1.11414178e-05 + art_sys_41: -5.95711075e-05 + art_sys_42: -8.36840280e-05 + art_sys_43: -4.75168139e-05 + art_sys_44: -2.59402519e-04 + art_sys_45: -8.01168626e-04 + art_sys_46: 3.08603433e-04 + art_sys_47: 1.41416028e-20 + art_sys_48: -6.16411418e-20 + art_sys_49: 1.68689383e-20 + art_sys_50: -3.02458530e-03 + art_sys_51: 1.97513945e-03 + art_sys_52: 8.31913510e-20 + art_sys_53: -8.19612379e-20 + art_sys_54: -5.59166942e-22 + art_sys_55: 1.15160419e-19 + art_sys_56: 1.20668692e-20 + art_sys_57: -6.58299911e-03 + art_sys_58: -6.96171005e-03 + art_sys_59: -2.13931396e-19 + art_sys_60: -8.77593398e-19 + art_sys_61: 2.88352982e-03 + art_sys_62: 1.31764057e-19 + art_sys_63: -2.24953788e-19 + art_sys_64: -2.39381165e-15 + art_sys_65: 1.02564664e-14 + art_sys_66: -2.16576312e-15 + art_sys_67: 7.91674114e-16 + art_sys_68: -1.00435060e-16 + art_sys_69: -3.33473459e-16 + art_sys_70: -3.64956027e-16 + art_sys_71: -1.88687278e-16 + art_sys_72: 1.07091827e-17 + art_sys_73: -1.42809318e-17 + art_sys_74: -1.41768693e-03 + art_sys_75: 1.64871338e-18 + art_sys_76: 1.94416636e-15 + art_sys_77: -2.00084949e-16 + art_sys_78: 1.98251243e-16 + art_sys_79: 5.07282769e-19 + art_sys_80: 2.29499664e-16 + art_sys_81: -6.61733555e-19 + art_sys_82: 1.96803262e-14 + art_sys_83: -3.11062349e-17 + art_sys_84: -2.50338367e-17 + art_sys_85: 5.11329402e-19 + art_sys_86: -2.76798790e-18 + art_sys_87: 9.01276444e-13 + art_sys_88: 5.34031920e-14 + art_sys_89: 1.47415917e-18 + art_sys_90: -2.52399988e-15 + art_sys_91: -1.11351030e-15 + art_sys_92: -1.60237616e-18 + art_sys_93: 2.16558997e-19 + art_sys_94: 6.11133250e-14 + art_sys_95: -1.69164819e-05 + art_sys_96: -3.64835290e-14 + art_sys_97: 1.58063606e-14 + art_sys_98: 8.43766041e-06 + art_sys_99: 1.27916640e-13 + art_sys_100: -6.24968566e-06 + art_sys_101: -6.35787734e-12 + art_sys_102: 3.30496161e-06 + art_sys_103: -4.70627093e-12 + art_sys_104: -6.23496154e-12 + art_sys_105: 8.37824090e-15 + art_sys_106: 4.34386232e-11 + art_sys_107: -1.81282441e-06 + art_sys_108: 1.35822835e-14 + art_sys_109: 5.24912504e-14 + art_sys_110: 8.47786169e-07 + art_sys_111: -8.46534795e-13 + art_sys_112: -1.73974402e-11 + art_sys_113: 1.43760268e-12 + art_sys_114: 2.59887869e-14 + art_sys_115: -1.33934360e-13 + art_sys_116: 3.45629150e-07 + art_sys_117: 9.29951317e-14 + art_sys_118: -2.98123311e-12 + art_sys_119: -1.31935889e-07 + art_sys_120: -2.42223929e-12 + art_sys_121: -1.35505167e-14 + art_sys_122: -1.37702854e-12 + art_sys_123: -4.89485620e-08 + art_sys_124: 8.13294470e-13 + art_sys_125: 1.37119097e-14 + art_sys_126: 6.47835905e-13 + art_sys_127: 1.66376493e-08 + art_sys_128: -1.56020737e-12 + art_sys_129: 1.02885627e-16 + art_sys_130: -5.97778987e-09 + art_sys_131: -8.71867619e-15 + art_sys_132: 7.58880020e-12 + art_sys_133: -1.96181723e-09 + art_sys_134: -3.80175343e-12 + art_sys_135: -4.33267035e-13 + art_sys_136: -8.53951991e-16 + art_sys_137: -6.49518747e-10 + art_sys_138: -6.49080614e-13 + art_sys_139: -1.97323439e-10 + art_sys_140: -1.95930956e-16 + art_sys_141: -1.31832936e-12 + art_sys_142: 5.76864981e-13 + art_sys_143: -6.06206725e-11 + art_sys_144: 2.71061687e-15 + art_sys_145: 4.55859090e-13 + art_sys_146: -2.04123406e-11 + art_sys_147: 4.98352313e-16 + art_sys_148: 4.23547604e-17 + art_sys_149: -1.40819864e-13 + art_sys_150: -2.58072867e-12 + art_sys_151: 9.23821071e-14 + art_sys_152: -1.32945960e-16 + art_sys_153: 2.87606274e-13 + art_sys_154: -2.83486885e-13 + art_sys_155: 1.03763412e-16 + art_sys_156: 0.0 + art_sys_157: 1.37409872e-13 art_sys_158: 0.0 - art_sys_159: -6.32093445e-13 - art_sys_160: -1.98932640e-14 - art_sys_161: -2.01969864e-13 - art_sys_162: -4.73992702e-15 - art_sys_163: 3.47742840e-15 - art_sys_164: 9.44867421e-15 - art_sys_165: 1.15101575e-16 - art_sys_166: -2.03783292e-23 - art_sys_167: -2.27428100e-23 - art_sys_168: 3.99370771e-24 - art_sys_169: -1.20566050e-24 - art_sys_170: -4.41536836e-25 - art_sys_171: 6.38358700e-25 - art_sys_172: -4.09511107e-24 - art_sys_173: 4.39423157e-25 - art_sys_174: 4.99091819e-26 - art_sys_175: 5.28323896e-29 - art_sys_176: 2.65136904e-26 - art_sys_177: 2.92371407e-27 - art_sys_178: -2.20901354e-27 - art_sys_179: -5.80477962e-28 - art_sys_180: -1.53285338e-26 - art_sys_181: 8.39802782e-29 - art_sys_182: 4.16805357e-27 - art_sys_183: 7.50001157e-29 - art_sys_184: 3.06080688e-32 - art_sys_185: 4.09473204e-31 + art_sys_159: 2.03977539e-14 + art_sys_160: 4.52014179e-15 + art_sys_161: -1.44997470e-15 + art_sys_162: -1.44997470e-15 + art_sys_163: -1.78281661e-15 + art_sys_164: -1.78281661e-15 + art_sys_165: 1.97881722e-29 + art_sys_166: -6.55213046e-30 + art_sys_167: -0.0 + art_sys_168: 6.32112097e-24 + art_sys_169: 7.52010782e-24 + art_sys_170: 1.00515010e-24 + art_sys_171: 4.61955710e-24 + art_sys_172: 6.36877548e-25 + art_sys_173: 3.29112810e-26 + art_sys_174: 1.97939952e-26 + art_sys_175: -3.59478735e-27 + art_sys_176: 4.37989919e-27 + art_sys_177: -1.08906350e-25 + art_sys_178: 5.83804444e-27 + art_sys_179: -2.79219925e-29 + art_sys_180: 4.78766307e-28 + art_sys_181: 1.15094234e-26 + art_sys_182: 6.28562816e-28 + art_sys_183: 1.40267503e-29 + art_sys_184: -5.84621505e-30 + art_sys_185: -1.60449891e-31 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -21797,167 +21797,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: -3.51032666e-10 - art_sys_26: 3.67526173e-08 - art_sys_27: 3.85795824e-08 - art_sys_28: -3.08791910e-27 - art_sys_29: -1.26471655e-26 - art_sys_30: 1.84063241e-07 - art_sys_31: -3.86401432e-06 - art_sys_32: -1.21875230e-05 - art_sys_33: -2.30503909e-05 - art_sys_34: 6.44543442e-23 - art_sys_35: 5.97945025e-23 - art_sys_36: 3.80961142e-23 - art_sys_37: 1.22752935e-23 - art_sys_38: 1.54587071e-05 - art_sys_39: 1.94390850e-23 - art_sys_40: -4.31258882e-23 - art_sys_41: -6.30605301e-23 - art_sys_42: -5.59785916e-22 - art_sys_43: -2.90627656e-05 - art_sys_44: 2.63677623e-04 - art_sys_45: -3.56042049e-04 - art_sys_46: 5.21549694e-21 - art_sys_47: 2.52748099e-21 - art_sys_48: -1.07174495e-16 - art_sys_49: 4.39344667e-14 - art_sys_50: -2.59986403e-14 - art_sys_51: -5.81359702e-15 - art_sys_52: -2.22042426e-15 - art_sys_53: -1.68621145e-15 - art_sys_54: -7.97870125e-16 - art_sys_55: -4.96469086e-04 - art_sys_56: 2.64395106e-03 - art_sys_57: -3.76319926e-14 - art_sys_58: 1.07772324e-16 - art_sys_59: 2.52225919e-16 - art_sys_60: 6.57883737e-14 - art_sys_61: -3.38013055e-13 - art_sys_62: -1.57480303e-14 - art_sys_63: 5.13012830e-04 - art_sys_64: 1.48252992e-18 - art_sys_65: 1.20569270e-17 - art_sys_66: 5.45518182e-17 - art_sys_67: -9.09562303e-15 - art_sys_68: 6.25085435e-03 - art_sys_69: -3.42399317e-03 - art_sys_70: -9.92912844e-14 - art_sys_71: -2.53705270e-17 - art_sys_72: 5.05878119e-15 - art_sys_73: 1.09153464e-14 - art_sys_74: 5.42513811e-15 - art_sys_75: 3.75916110e-16 - art_sys_76: -1.93240563e-13 - art_sys_77: -1.43274231e-11 - art_sys_78: 1.94874430e-03 - art_sys_79: -3.72699824e-16 - art_sys_80: 8.87301585e-12 - art_sys_81: -1.10380700e-17 - art_sys_82: -1.33533747e-16 - art_sys_83: 5.14097962e-15 - art_sys_84: 5.29693937e-17 - art_sys_85: -1.74243618e-17 - art_sys_86: -1.05371541e-13 - art_sys_87: -2.01123621e-14 - art_sys_88: 3.59943915e-14 - art_sys_89: -5.70032178e-16 - art_sys_90: 1.28769776e-13 - art_sys_91: -7.33986231e-05 - art_sys_92: -2.15202809e-13 - art_sys_93: 2.29810840e-12 - art_sys_94: 8.68052257e-12 - art_sys_95: 2.63256249e-05 - art_sys_96: -1.60127327e-14 - art_sys_97: 2.16209615e-05 - art_sys_98: -7.66334023e-13 - art_sys_99: 4.75006190e-15 - art_sys_100: -1.12554867e-05 - art_sys_101: -1.90337764e-11 - art_sys_102: 1.64032205e-11 - art_sys_103: -6.09517017e-06 - art_sys_104: 3.66373260e-13 - art_sys_105: 2.12435600e-13 - art_sys_106: -1.41595077e-11 - art_sys_107: 3.92720669e-13 - art_sys_108: -2.47682718e-14 - art_sys_109: -1.38698363e-13 - art_sys_110: -2.85199090e-06 - art_sys_111: -2.49112260e-11 - art_sys_112: -1.15758128e-06 - art_sys_113: 3.84158998e-14 - art_sys_114: 6.95540460e-11 - art_sys_115: -4.40874807e-07 - art_sys_116: 5.19786993e-11 - art_sys_117: -5.24484893e-12 - art_sys_118: -1.63444518e-07 - art_sys_119: 1.16826826e-11 - art_sys_120: 4.43839233e-12 - art_sys_121: 5.54077502e-08 - art_sys_122: 6.23510446e-12 - art_sys_123: -3.61851414e-12 - art_sys_124: -1.99214436e-08 - art_sys_125: -9.94057174e-12 - art_sys_126: -6.55007015e-09 - art_sys_127: -1.34058351e-12 - art_sys_128: -2.16050884e-09 - art_sys_129: -2.94413672e-12 - art_sys_130: -6.64123078e-10 - art_sys_131: -1.21513495e-13 - art_sys_132: 3.73957484e-12 - art_sys_133: -1.91701320e-10 - art_sys_134: -1.03945843e-15 - art_sys_135: 3.43037534e-12 - art_sys_136: 6.48947841e-11 - art_sys_137: 1.88760103e-16 - art_sys_138: 6.63369484e-14 - art_sys_139: -1.57152206e-13 - art_sys_140: -9.17893961e-12 - art_sys_141: -2.19576253e-12 - art_sys_142: -3.60277347e-13 - art_sys_143: 4.31951722e-17 - art_sys_144: 6.65871105e-17 - art_sys_145: 5.48936084e-16 - art_sys_146: -0.0 - art_sys_147: 1.19232329e-14 - art_sys_148: -1.44601193e-13 - art_sys_149: -1.44601193e-13 - art_sys_150: 5.09840469e-14 - art_sys_151: 5.09840469e-14 - art_sys_152: -2.37638640e-13 - art_sys_153: 2.72041806e-15 - art_sys_154: 1.26048152e-17 - art_sys_155: 5.06885333e-26 - art_sys_156: 5.35035609e-29 - art_sys_157: 3.56158756e-29 + art_sys_25: -1.57594330e-84 + art_sys_26: -8.25551140e-79 + art_sys_27: 5.18513494e-72 + art_sys_28: -3.10221417e-71 + art_sys_29: -1.19151896e-60 + art_sys_30: -9.68445192e-58 + art_sys_31: -4.53004750e-55 + art_sys_32: 5.41138584e-47 + art_sys_33: 1.62168260e-41 + art_sys_34: 1.63504123e-34 + art_sys_35: 1.14619861e-35 + art_sys_36: -3.51032666e-10 + art_sys_37: 3.67526173e-08 + art_sys_38: 3.85795824e-08 + art_sys_39: 1.84063241e-07 + art_sys_40: 3.86401432e-06 + art_sys_41: -1.21875230e-05 + art_sys_42: -2.30503909e-05 + art_sys_43: -1.54587071e-05 + art_sys_44: 2.90627656e-05 + art_sys_45: -2.63677623e-04 + art_sys_46: -3.56042049e-04 + art_sys_47: -5.81003086e-21 + art_sys_48: -1.39811620e-20 + art_sys_49: 1.79240234e-21 + art_sys_50: -4.96469086e-04 + art_sys_51: -2.64395106e-03 + art_sys_52: -4.43309840e-20 + art_sys_53: 1.10415063e-19 + art_sys_54: 6.73477703e-20 + art_sys_55: -3.81673305e-20 + art_sys_56: -2.78326156e-20 + art_sys_57: 5.13012830e-04 + art_sys_58: -6.25085457e-03 + art_sys_59: -9.35817169e-20 + art_sys_60: -5.30671960e-19 + art_sys_61: -3.42399317e-03 + art_sys_62: 1.07022949e-19 + art_sys_63: -5.66871788e-19 + art_sys_64: -9.82958376e-15 + art_sys_65: -1.16627341e-14 + art_sys_66: 2.09369746e-15 + art_sys_67: -1.58174737e-15 + art_sys_68: 1.55251855e-16 + art_sys_69: 6.35457835e-16 + art_sys_70: 5.14699600e-16 + art_sys_71: 2.66721485e-16 + art_sys_72: -1.32349113e-17 + art_sys_73: 1.79062389e-17 + art_sys_74: 1.94874429e-03 + art_sys_75: -4.74823180e-18 + art_sys_76: -8.15223894e-15 + art_sys_77: 4.81787143e-16 + art_sys_78: -5.40705892e-16 + art_sys_79: -1.28932350e-18 + art_sys_80: -8.49781427e-16 + art_sys_81: 2.26076716e-18 + art_sys_82: -2.70522065e-14 + art_sys_83: 1.22776713e-16 + art_sys_84: 9.82938195e-17 + art_sys_85: -7.84240538e-18 + art_sys_86: 1.29681415e-17 + art_sys_87: -3.12404884e-12 + art_sys_88: -1.79549728e-13 + art_sys_89: -5.98133807e-18 + art_sys_90: 8.49773527e-15 + art_sys_91: 1.53046950e-15 + art_sys_92: 5.88821612e-18 + art_sys_93: -3.56054387e-19 + art_sys_94: -2.04210903e-13 + art_sys_95: 7.33986343e-05 + art_sys_96: 1.55532342e-13 + art_sys_97: -7.61961304e-14 + art_sys_98: -2.63256383e-05 + art_sys_99: 2.17565080e-13 + art_sys_100: 2.16208244e-05 + art_sys_101: 2.20387945e-11 + art_sys_102: -1.12555477e-05 + art_sys_103: 1.62088312e-11 + art_sys_104: 2.72149039e-11 + art_sys_105: -2.79077144e-14 + art_sys_106: -1.48473517e-10 + art_sys_107: 6.09517699e-06 + art_sys_108: -4.52418699e-14 + art_sys_109: -1.74854307e-13 + art_sys_110: -2.85209160e-06 + art_sys_111: -1.42206073e-12 + art_sys_112: 5.85283420e-11 + art_sys_113: -4.89614842e-12 + art_sys_114: -8.65152587e-14 + art_sys_115: 4.28758899e-13 + art_sys_116: -1.15758365e-06 + art_sys_117: -3.09443027e-13 + art_sys_118: 1.00789763e-11 + art_sys_119: 4.40864146e-07 + art_sys_120: 8.14572410e-12 + art_sys_121: 4.50981360e-14 + art_sys_122: 4.77215707e-12 + art_sys_123: 1.63436519e-07 + art_sys_124: -2.77331164e-12 + art_sys_125: -4.56134019e-14 + art_sys_126: -2.16545928e-12 + art_sys_127: -5.54277791e-08 + art_sys_128: 5.24858903e-12 + art_sys_129: -3.37215608e-16 + art_sys_130: 1.99124496e-08 + art_sys_131: 2.89953212e-14 + art_sys_132: -2.55328572e-11 + art_sys_133: 6.52791276e-09 + art_sys_134: 1.27025442e-11 + art_sys_135: 1.45867705e-12 + art_sys_136: 2.83808262e-15 + art_sys_137: 2.16068795e-09 + art_sys_138: 2.16836281e-12 + art_sys_139: 6.56184767e-10 + art_sys_140: 6.52679575e-16 + art_sys_141: 4.38651824e-12 + art_sys_142: -1.93022007e-12 + art_sys_143: 2.01550391e-10 + art_sys_144: -9.02985601e-15 + art_sys_145: -1.52074980e-12 + art_sys_146: 6.78602070e-11 + art_sys_147: -1.65682200e-15 + art_sys_148: -1.40813840e-16 + art_sys_149: 4.72352408e-13 + art_sys_150: 8.57790563e-12 + art_sys_151: -3.08325370e-13 + art_sys_152: 4.41707269e-16 + art_sys_153: -9.56029699e-13 + art_sys_154: 9.49816106e-13 + art_sys_155: -3.44090758e-16 + art_sys_156: -0.0 + art_sys_157: -4.59788441e-13 art_sys_158: -0.0 - art_sys_159: 2.10375663e-12 - art_sys_160: 6.62253669e-14 - art_sys_161: 6.71716204e-13 - art_sys_162: 1.57658344e-14 - art_sys_163: -1.14359414e-14 - art_sys_164: -3.14139915e-14 - art_sys_165: -3.83089454e-16 - art_sys_166: 6.77013424e-23 - art_sys_167: 7.64115709e-23 - art_sys_168: -1.32844355e-23 - art_sys_169: 3.97915702e-24 - art_sys_170: 1.45219250e-24 - art_sys_171: -2.12436323e-24 - art_sys_172: 1.36230470e-23 - art_sys_173: -1.46204427e-24 - art_sys_174: -1.66152384e-25 - art_sys_175: -1.75808714e-28 - art_sys_176: -8.82146787e-26 - art_sys_177: -9.76497390e-27 - art_sys_178: 7.35062411e-27 - art_sys_179: 1.92137672e-27 - art_sys_180: 5.09451963e-26 - art_sys_181: -2.78462075e-28 - art_sys_182: -1.38621419e-26 - art_sys_183: -2.49457975e-28 - art_sys_184: -1.01466843e-31 - art_sys_185: -1.36117596e-30 + art_sys_159: -6.80815524e-14 + art_sys_160: -1.51114225e-14 + art_sys_161: 4.80674589e-15 + art_sys_162: 4.80674589e-15 + art_sys_163: 5.95002216e-15 + art_sys_164: 5.95002216e-15 + art_sys_165: -6.59871559e-29 + art_sys_166: 2.18476150e-29 + art_sys_167: 0.0 + art_sys_168: -1.01697797e-23 + art_sys_169: -2.49970076e-23 + art_sys_170: -2.58042500e-24 + art_sys_171: -1.53786439e-23 + art_sys_172: -2.11880671e-24 + art_sys_173: -1.09477078e-25 + art_sys_174: -6.59338421e-26 + art_sys_175: 1.19640988e-26 + art_sys_176: -1.45684873e-26 + art_sys_177: 3.62254135e-25 + art_sys_178: -1.94372284e-26 + art_sys_179: 9.24701618e-29 + art_sys_180: -1.59785361e-27 + art_sys_181: -3.82878004e-26 + art_sys_182: -2.08873298e-27 + art_sys_183: -4.66348970e-29 + art_sys_184: 1.94402459e-29 + art_sys_185: 5.33357793e-31 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -22088,167 +22088,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: -2.66562795e-10 - art_sys_26: 4.87868611e-09 - art_sys_27: 5.31346452e-09 - art_sys_28: -3.47841976e-28 - art_sys_29: -1.77691483e-27 - art_sys_30: 2.38294428e-08 - art_sys_31: -6.71789689e-07 - art_sys_32: -1.80287584e-06 - art_sys_33: -3.63678586e-06 - art_sys_34: 9.90193042e-24 - art_sys_35: 9.36810114e-24 - art_sys_36: 6.07278044e-24 - art_sys_37: 1.97732068e-24 - art_sys_38: 1.99825287e-06 - art_sys_39: 8.78668548e-25 - art_sys_40: -5.45610412e-24 - art_sys_41: -8.71657172e-24 - art_sys_42: -3.60504927e-22 - art_sys_43: -1.93477493e-05 - art_sys_44: -4.60600348e-06 - art_sys_45: -6.73436113e-05 - art_sys_46: 6.72403538e-22 - art_sys_47: 2.95230512e-22 - art_sys_48: 5.13994015e-17 - art_sys_49: 3.06488021e-15 - art_sys_50: -2.35995851e-14 - art_sys_51: -2.39853606e-15 - art_sys_52: 1.14220075e-15 - art_sys_53: -3.98019579e-16 - art_sys_54: -5.46040834e-16 - art_sys_55: 2.38080265e-04 - art_sys_56: 4.35894620e-04 - art_sys_57: 1.80444684e-14 - art_sys_58: 9.99776316e-16 - art_sys_59: 7.25526684e-17 - art_sys_60: 1.08459479e-14 - art_sys_61: -5.57197326e-14 - art_sys_62: -2.59630592e-15 - art_sys_63: 1.08855471e-03 - art_sys_64: 2.81411450e-19 - art_sys_65: 4.79243117e-17 - art_sys_66: -4.17349306e-17 - art_sys_67: -1.92996738e-14 - art_sys_68: 5.79389724e-04 - art_sys_69: -5.45550149e-03 - art_sys_70: -2.10668466e-13 - art_sys_71: -1.63403295e-15 - art_sys_72: -1.13713478e-15 - art_sys_73: -5.66058464e-15 - art_sys_74: -5.96093479e-15 - art_sys_75: -1.03602176e-15 - art_sys_76: 2.08745219e-13 - art_sys_77: -3.73498119e-12 - art_sys_78: -2.10561724e-03 - art_sys_79: 8.16807088e-16 - art_sys_80: -5.82991861e-12 - art_sys_81: 2.08086246e-17 - art_sys_82: 1.55434669e-16 - art_sys_83: -1.08424350e-14 - art_sys_84: -3.62473945e-17 - art_sys_85: 1.31119989e-17 - art_sys_86: 2.38313349e-13 - art_sys_87: -2.03966981e-13 - art_sys_88: -8.44880886e-14 - art_sys_89: 1.46762818e-15 - art_sys_90: 2.11121111e-13 - art_sys_91: 4.82261592e-05 - art_sys_92: 6.12497068e-14 - art_sys_93: 3.50445168e-14 - art_sys_94: -9.37841032e-12 - art_sys_95: -5.59102267e-05 - art_sys_96: 3.94983512e-14 - art_sys_97: -3.72039984e-05 - art_sys_98: 9.90667502e-13 - art_sys_99: 1.91677450e-14 - art_sys_100: 2.31540131e-05 - art_sys_101: 1.24105316e-11 - art_sys_102: -1.05207265e-11 - art_sys_103: 1.33563774e-05 - art_sys_104: -3.94625488e-13 - art_sys_105: 1.37365699e-13 - art_sys_106: 3.14096413e-11 - art_sys_107: -9.80991063e-13 - art_sys_108: 6.18956654e-14 - art_sys_109: 3.48479197e-13 - art_sys_110: 6.52221290e-06 - art_sys_111: 4.28789478e-11 - art_sys_112: 2.74556866e-06 - art_sys_113: -9.70856879e-14 - art_sys_114: -1.25428031e-10 - art_sys_115: 1.06925280e-06 - art_sys_116: -1.18824722e-10 - art_sys_117: 1.63094681e-11 - art_sys_118: 4.03173937e-07 - art_sys_119: -2.52914381e-11 - art_sys_120: -1.01943653e-11 - art_sys_121: -1.38409543e-07 - art_sys_122: -1.41787321e-11 - art_sys_123: 8.31114599e-12 - art_sys_124: 5.01350000e-08 - art_sys_125: 2.37721929e-11 - art_sys_126: 1.65885639e-08 - art_sys_127: 3.11162349e-12 - art_sys_128: 5.49077986e-09 - art_sys_129: 6.66547694e-12 - art_sys_130: 1.69270699e-09 - art_sys_131: 3.81284856e-13 - art_sys_132: -9.04298371e-12 - art_sys_133: 4.89563236e-10 - art_sys_134: 2.72114340e-15 - art_sys_135: -8.45091372e-12 - art_sys_136: -1.65865547e-10 - art_sys_137: -4.73504459e-16 - art_sys_138: -4.33329468e-14 - art_sys_139: 4.05724064e-13 - art_sys_140: 2.35045809e-11 - art_sys_141: 5.52167403e-12 - art_sys_142: 8.72195168e-13 - art_sys_143: -1.12926560e-16 - art_sys_144: -1.70973493e-16 - art_sys_145: -1.40473240e-15 - art_sys_146: 0.0 - art_sys_147: -3.01154062e-14 - art_sys_148: 3.63069018e-13 - art_sys_149: 3.63069018e-13 - art_sys_150: -1.26544644e-13 - art_sys_151: -1.26544644e-13 - art_sys_152: 5.84525961e-13 - art_sys_153: -6.24886640e-15 - art_sys_154: -3.18216532e-17 - art_sys_155: -1.24265606e-25 - art_sys_156: -1.27818167e-28 - art_sys_157: -8.63672855e-29 + art_sys_25: -1.21628518e-84 + art_sys_26: -6.37145768e-79 + art_sys_27: 4.00179539e-72 + art_sys_28: -2.39423398e-71 + art_sys_29: -9.19593239e-61 + art_sys_30: -7.47428855e-58 + art_sys_31: -3.49621046e-55 + art_sys_32: 4.17641178e-47 + art_sys_33: 1.25158592e-41 + art_sys_34: 1.26189587e-34 + art_sys_35: 8.84615789e-36 + art_sys_36: -2.66562795e-10 + art_sys_37: 4.87868611e-09 + art_sys_38: 5.31346452e-09 + art_sys_39: 2.38294428e-08 + art_sys_40: 6.71789689e-07 + art_sys_41: -1.80287584e-06 + art_sys_42: -3.63678586e-06 + art_sys_43: -1.99825287e-06 + art_sys_44: 1.93477493e-05 + art_sys_45: 4.60600348e-06 + art_sys_46: -6.73436113e-05 + art_sys_47: -1.60744466e-21 + art_sys_48: 4.13228449e-21 + art_sys_49: -6.75352221e-22 + art_sys_50: 2.38080265e-04 + art_sys_51: -4.35894620e-04 + art_sys_52: -1.21408671e-20 + art_sys_53: 1.73035458e-20 + art_sys_54: 5.86725747e-21 + art_sys_55: -1.43773245e-20 + art_sys_56: -2.59443339e-21 + art_sys_57: 1.08855472e-03 + art_sys_58: -5.79389745e-04 + art_sys_59: 1.17807075e-20 + art_sys_60: -7.97091180e-20 + art_sys_61: -5.45550149e-03 + art_sys_62: -1.81831953e-20 + art_sys_63: 3.27162094e-19 + art_sys_64: 1.21741923e-15 + art_sys_65: 8.60748876e-15 + art_sys_66: -1.95026997e-15 + art_sys_67: 1.52633299e-15 + art_sys_68: -2.28361926e-16 + art_sys_69: -4.24521224e-16 + art_sys_70: -5.65382015e-16 + art_sys_71: -2.91879413e-16 + art_sys_72: 5.12869644e-18 + art_sys_73: -2.47539294e-17 + art_sys_74: -2.10561723e-03 + art_sys_75: 1.54422500e-17 + art_sys_76: 6.35839126e-15 + art_sys_77: -1.90193805e-15 + art_sys_78: 1.72430912e-15 + art_sys_79: 5.37342822e-18 + art_sys_80: 1.12887839e-15 + art_sys_81: -6.89176177e-18 + art_sys_82: 2.92299025e-14 + art_sys_83: -1.41336958e-16 + art_sys_84: -1.09198339e-16 + art_sys_85: -2.01767101e-17 + art_sys_86: -1.09130615e-18 + art_sys_87: 5.34359885e-12 + art_sys_88: 3.95339005e-13 + art_sys_89: 4.36784714e-18 + art_sys_90: -1.94088949e-14 + art_sys_91: -1.65365987e-15 + art_sys_92: -7.79674227e-18 + art_sys_93: 2.38897635e-18 + art_sys_94: 4.95266583e-13 + art_sys_95: -4.82261657e-05 + art_sys_96: -1.02734941e-13 + art_sys_97: 4.85689760e-14 + art_sys_98: 5.59102538e-05 + art_sys_99: 2.75874186e-12 + art_sys_100: -3.72037631e-05 + art_sys_101: -3.77611569e-11 + art_sys_102: 2.31541386e-05 + art_sys_103: -2.81606094e-11 + art_sys_104: -1.73110222e-11 + art_sys_105: 7.02301752e-14 + art_sys_106: 3.01988887e-10 + art_sys_107: -1.33563931e-05 + art_sys_108: 1.13846389e-13 + art_sys_109: 4.40021375e-13 + art_sys_110: 6.52244269e-06 + art_sys_111: -1.80233747e-11 + art_sys_112: -1.33815331e-10 + art_sys_113: 1.00710201e-11 + art_sys_114: 2.18504340e-13 + art_sys_115: -4.74810949e-13 + art_sys_116: 2.74557449e-06 + art_sys_117: 7.83565418e-13 + art_sys_118: -2.16805607e-11 + art_sys_119: -1.06922702e-06 + art_sys_120: -1.87047233e-11 + art_sys_121: -1.13877760e-13 + art_sys_122: -8.32574711e-12 + art_sys_123: -4.03154200e-07 + art_sys_124: 5.65536924e-12 + art_sys_125: 1.15902948e-13 + art_sys_126: 5.24096301e-12 + art_sys_127: 1.38459761e-07 + art_sys_128: -1.19023395e-11 + art_sys_129: 9.91177066e-16 + art_sys_130: -5.01126251e-08 + art_sys_131: -7.38784942e-14 + art_sys_132: 5.83417558e-11 + art_sys_133: -1.65330372e-08 + art_sys_134: -3.08411374e-11 + art_sys_135: -3.31930081e-12 + art_sys_136: -7.25436052e-15 + art_sys_137: -5.49142443e-09 + art_sys_138: -5.30463012e-12 + art_sys_139: -1.67275975e-09 + art_sys_140: -1.63991200e-15 + art_sys_141: -1.11299082e-11 + art_sys_142: 4.64007262e-12 + art_sys_143: -5.14303648e-10 + art_sys_144: 2.26291168e-14 + art_sys_145: 3.74926839e-12 + art_sys_146: -1.73375345e-10 + art_sys_147: 4.23079723e-15 + art_sys_148: 3.58708948e-16 + art_sys_149: -1.10196332e-12 + art_sys_150: -2.19475394e-11 + art_sys_151: 7.57638400e-13 + art_sys_152: -1.13713924e-15 + art_sys_153: 2.43790377e-12 + art_sys_154: -2.20066058e-12 + art_sys_155: 8.89306612e-16 + art_sys_156: 0.0 + art_sys_157: 1.10035341e-12 art_sys_158: 0.0 - art_sys_159: -5.32007063e-12 - art_sys_160: -1.67091541e-13 - art_sys_161: -1.71021237e-12 - art_sys_162: -4.00946715e-14 - art_sys_163: 3.26170420e-14 - art_sys_164: 8.01898771e-14 - art_sys_165: 9.65995766e-16 - art_sys_166: -1.72755175e-22 - art_sys_167: -1.93707214e-22 - art_sys_168: 3.39852444e-23 - art_sys_169: -1.02180700e-23 - art_sys_170: -3.55489275e-24 - art_sys_171: 5.38461603e-24 - art_sys_172: -3.46475707e-23 - art_sys_173: 3.71398729e-24 - art_sys_174: 4.21687082e-25 - art_sys_175: 4.44531817e-28 - art_sys_176: 2.23925933e-25 - art_sys_177: 2.42957154e-26 - art_sys_178: -1.86326977e-26 - art_sys_179: -5.08931570e-27 - art_sys_180: -1.30390983e-25 - art_sys_181: 7.26457339e-28 - art_sys_182: 3.53072580e-26 - art_sys_183: 6.34765131e-28 - art_sys_184: 2.67637584e-31 - art_sys_185: 3.47911299e-30 + art_sys_159: 1.66164005e-13 + art_sys_160: 3.64015141e-14 + art_sys_161: -1.24251375e-14 + art_sys_162: -1.24251375e-14 + art_sys_163: -1.45655184e-14 + art_sys_164: -1.45655184e-14 + art_sys_165: 1.62638639e-28 + art_sys_166: -5.38846991e-29 + art_sys_167: -0.0 + art_sys_168: 8.25438168e-23 + art_sys_169: 6.38055714e-23 + art_sys_170: 2.84131790e-24 + art_sys_171: 3.89317060e-23 + art_sys_172: 5.38741598e-24 + art_sys_173: 2.76477469e-25 + art_sys_174: 1.65793161e-25 + art_sys_175: -3.05160281e-26 + art_sys_176: 3.71489597e-26 + art_sys_177: -9.21018501e-25 + art_sys_178: 4.89515117e-26 + art_sys_179: -2.40424932e-28 + art_sys_180: 3.90388849e-27 + art_sys_181: 9.71767288e-26 + art_sys_182: 5.32874919e-27 + art_sys_183: 1.18973050e-28 + art_sys_184: -4.95617246e-29 + art_sys_185: -1.36218524e-30 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -22379,167 +22379,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: -1.84169019e-11 - art_sys_26: 3.60132157e-10 - art_sys_27: 4.52659684e-10 - art_sys_28: -5.16127995e-30 - art_sys_29: -1.54209896e-28 - art_sys_30: 1.56536859e-09 - art_sys_31: -4.97487637e-08 - art_sys_32: -1.40638580e-07 - art_sys_33: -2.40485602e-07 - art_sys_34: 7.46324540e-25 - art_sys_35: 6.16085540e-25 - art_sys_36: 2.74920694e-25 - art_sys_37: 1.28776783e-25 - art_sys_38: 3.29250718e-09 - art_sys_39: -5.71176865e-25 - art_sys_40: 8.30338511e-26 - art_sys_41: -1.59360642e-25 - art_sys_42: -3.32276253e-23 - art_sys_43: -1.78673663e-06 - art_sys_44: -1.15583117e-05 - art_sys_45: 9.76673846e-06 - art_sys_46: -1.48478193e-22 - art_sys_47: -1.07068441e-22 - art_sys_48: 1.12080626e-17 - art_sys_49: 4.82133967e-14 - art_sys_50: -1.38011531e-14 - art_sys_51: -1.33658510e-14 - art_sys_52: -4.98887693e-15 - art_sys_53: 7.27923045e-16 - art_sys_54: -1.14392235e-15 - art_sys_55: 5.19172387e-05 - art_sys_56: -1.19587896e-04 - art_sys_57: 3.93511886e-15 - art_sys_58: -9.96652807e-16 - art_sys_59: 1.44506215e-15 - art_sys_60: -2.97568279e-15 - art_sys_61: 1.52892063e-14 - art_sys_62: 7.12295651e-16 - art_sys_63: 4.39685025e-05 - art_sys_64: -6.36765424e-20 - art_sys_65: -1.66807145e-16 - art_sys_66: 1.92818694e-16 - art_sys_67: -7.79546525e-16 - art_sys_68: -4.21270018e-04 - art_sys_69: -2.50775340e-04 - art_sys_70: -8.50868222e-15 - art_sys_71: -1.21391668e-16 - art_sys_72: -4.59683750e-16 - art_sys_73: 8.19413444e-14 - art_sys_74: 2.24003432e-15 - art_sys_75: 3.14586159e-15 - art_sys_76: 5.73126881e-14 - art_sys_77: 4.96799519e-13 - art_sys_78: -5.74256361e-04 - art_sys_79: -2.61203653e-15 - art_sys_80: 7.49281933e-11 - art_sys_81: -6.22023348e-17 - art_sys_82: -1.14219261e-15 - art_sys_83: 4.62427088e-14 - art_sys_84: 4.58040139e-16 - art_sys_85: -1.04143480e-16 - art_sys_86: -1.04590495e-12 - art_sys_87: -1.75869367e-14 - art_sys_88: 3.69600718e-13 - art_sys_89: -6.44197196e-15 - art_sys_90: 9.85421459e-15 - art_sys_91: -6.19814896e-04 - art_sys_92: 3.98481438e-14 - art_sys_93: -1.71557235e-13 - art_sys_94: -2.55005876e-12 - art_sys_95: 1.61636191e-04 - art_sys_96: -1.73268732e-13 - art_sys_97: 1.90776979e-04 - art_sys_98: 3.61347260e-12 - art_sys_99: 2.02255527e-15 - art_sys_100: -1.00986365e-04 - art_sys_101: -1.60868230e-10 - art_sys_102: 1.38929932e-10 - art_sys_103: -5.88037272e-05 - art_sys_104: -6.84542114e-14 - art_sys_105: 2.14445009e-12 - art_sys_106: -1.29609194e-10 - art_sys_107: 4.30893620e-12 - art_sys_108: -2.71899434e-13 - art_sys_109: -1.53280017e-12 - art_sys_110: -2.85938148e-05 - art_sys_111: -2.17832586e-10 - art_sys_112: -1.20006049e-05 - art_sys_113: 4.27205879e-13 - art_sys_114: 6.13874706e-10 - art_sys_115: -4.68848733e-06 - art_sys_116: 5.20927459e-10 - art_sys_117: -5.02250916e-11 - art_sys_118: -1.76863298e-06 - art_sys_119: 1.04245178e-10 - art_sys_120: 4.46834625e-11 - art_sys_121: 6.07956709e-07 - art_sys_122: 6.17067876e-11 - art_sys_123: -3.64072965e-11 - art_sys_124: -2.20557594e-07 - art_sys_125: -1.04182700e-10 - art_sys_126: -7.30005619e-08 - art_sys_127: -1.36164090e-11 - art_sys_128: -2.41890995e-08 - art_sys_129: -2.92240279e-11 - art_sys_130: -7.45881688e-09 - art_sys_131: -1.71969785e-12 - art_sys_132: 3.96526302e-11 - art_sys_133: -2.15825814e-09 - art_sys_134: -1.20448260e-14 - art_sys_135: 3.70578668e-11 - art_sys_136: 7.31350298e-10 - art_sys_137: 2.08041809e-15 - art_sys_138: 5.49901960e-13 - art_sys_139: -1.78506130e-12 - art_sys_140: -1.03663489e-10 - art_sys_141: -2.42785608e-11 - art_sys_142: -3.80905212e-12 - art_sys_143: 4.99949617e-16 - art_sys_144: 7.54319672e-16 - art_sys_145: 6.19564255e-15 - art_sys_146: -0.0 - art_sys_147: 1.32474819e-13 - art_sys_148: -1.59601969e-12 - art_sys_149: -1.59601969e-12 - art_sys_150: 5.54969722e-13 - art_sys_151: 5.54969722e-13 - art_sys_152: -2.56603790e-12 - art_sys_153: 2.74045360e-14 - art_sys_154: 1.39872004e-16 - art_sys_155: 5.45492635e-25 - art_sys_156: 5.56730074e-28 - art_sys_157: 3.77983187e-28 + art_sys_25: -8.40139435e-86 + art_sys_26: -4.40103437e-80 + art_sys_27: 2.76420874e-73 + art_sys_28: -1.65379833e-72 + art_sys_29: -6.35201810e-62 + art_sys_30: -5.16280613e-59 + art_sys_31: -2.41497992e-56 + art_sys_32: 2.88482365e-48 + art_sys_33: 8.64523147e-43 + art_sys_34: 8.71644664e-36 + art_sys_35: 6.11041411e-37 + art_sys_36: -1.84169019e-11 + art_sys_37: 3.60132157e-10 + art_sys_38: 4.52659684e-10 + art_sys_39: 1.56536859e-09 + art_sys_40: 4.97487637e-08 + art_sys_41: -1.40638580e-07 + art_sys_42: -2.40485602e-07 + art_sys_43: -3.29250718e-09 + art_sys_44: 1.78673663e-06 + art_sys_45: 1.15583117e-05 + art_sys_46: 9.76673846e-06 + art_sys_47: 9.39028596e-23 + art_sys_48: 1.17470689e-21 + art_sys_49: -9.09453415e-23 + art_sys_50: 5.19172387e-05 + art_sys_51: 1.19587896e-04 + art_sys_52: 1.60612685e-21 + art_sys_53: -5.09855251e-21 + art_sys_54: -3.47158203e-21 + art_sys_55: 1.01286030e-21 + art_sys_56: 2.03682700e-21 + art_sys_57: 4.39685025e-05 + art_sys_58: 4.21270033e-04 + art_sys_59: 7.26434142e-21 + art_sys_60: 3.75177982e-20 + art_sys_61: -2.50775340e-04 + art_sys_62: -9.61284718e-21 + art_sys_63: 1.05374554e-19 + art_sys_64: -6.57596765e-14 + art_sys_65: 1.95497272e-14 + art_sys_66: -5.36968032e-15 + art_sys_67: -5.83077657e-15 + art_sys_68: 1.08069919e-16 + art_sys_69: 5.11489008e-17 + art_sys_70: 1.49218401e-17 + art_sys_71: -3.18351206e-18 + art_sys_72: 3.81419321e-17 + art_sys_73: -1.25215565e-17 + art_sys_74: -5.74256358e-04 + art_sys_75: -6.75342035e-17 + art_sys_76: -6.86699074e-14 + art_sys_77: 4.07084156e-16 + art_sys_78: -3.85506382e-15 + art_sys_79: -1.73134491e-17 + art_sys_80: -6.74084699e-15 + art_sys_81: 2.62971843e-17 + art_sys_82: 7.97181421e-15 + art_sys_83: 1.09249490e-15 + art_sys_84: 8.88591746e-16 + art_sys_85: -3.35990804e-17 + art_sys_86: 1.04385191e-16 + art_sys_87: -2.75578306e-11 + art_sys_88: -1.74179223e-12 + art_sys_89: -4.06273984e-17 + art_sys_90: 8.52915682e-14 + art_sys_91: -4.50946079e-16 + art_sys_92: 4.00657831e-17 + art_sys_93: 1.18347597e-18 + art_sys_94: -2.17164869e-12 + art_sys_95: 6.19814992e-04 + art_sys_96: 1.30218565e-12 + art_sys_97: -6.74297353e-13 + art_sys_98: -1.61636309e-04 + art_sys_99: 6.39540414e-12 + art_sys_100: 1.90775760e-04 + art_sys_101: 1.95540557e-10 + art_sys_102: -1.00986912e-04 + art_sys_103: 1.41229333e-10 + art_sys_104: 2.31009051e-10 + art_sys_105: -3.08951576e-13 + art_sys_106: -1.33112821e-09 + art_sys_107: 5.88037962e-05 + art_sys_108: -5.00817058e-13 + art_sys_109: -1.93577882e-12 + art_sys_110: -2.85948225e-05 + art_sys_111: -4.30046745e-11 + art_sys_112: 5.86662022e-10 + art_sys_113: -4.39279022e-11 + art_sys_114: -9.61343954e-13 + art_sys_115: 3.16317925e-12 + art_sys_116: -1.20006305e-05 + art_sys_117: -3.44798563e-12 + art_sys_118: 9.56043692e-11 + art_sys_119: 4.68837432e-06 + art_sys_120: 8.19735965e-11 + art_sys_121: 5.00647177e-13 + art_sys_122: 3.58905759e-11 + art_sys_123: 1.76854640e-06 + art_sys_124: -2.46376928e-11 + art_sys_125: -5.10514155e-13 + art_sys_126: -2.29996356e-11 + art_sys_127: -6.08177551e-07 + art_sys_128: 5.21984206e-11 + art_sys_129: -4.46126233e-15 + art_sys_130: 2.20459354e-07 + art_sys_131: 3.25597935e-13 + art_sys_132: -2.55769725e-10 + art_sys_133: 7.27565429e-08 + art_sys_134: 1.35245642e-10 + art_sys_135: 1.45530916e-11 + art_sys_136: 3.20069948e-14 + art_sys_137: 2.41920512e-08 + art_sys_138: 2.32424777e-11 + art_sys_139: 7.37113240e-09 + art_sys_140: 7.21122177e-15 + art_sys_141: 4.90172737e-11 + art_sys_142: -2.03096197e-11 + art_sys_143: 2.26701925e-09 + art_sys_144: -9.94667332e-14 + art_sys_145: -1.64752249e-11 + art_sys_146: 7.64400769e-10 + art_sys_147: -1.86519118e-14 + art_sys_148: -1.58091746e-15 + art_sys_149: 4.80668380e-12 + art_sys_150: 9.67928005e-11 + art_sys_151: -3.32140086e-12 + art_sys_152: 5.02077123e-15 + art_sys_153: -1.07464667e-11 + art_sys_154: 9.55230774e-12 + art_sys_155: -3.92358183e-15 + art_sys_156: -0.0 + art_sys_157: -4.81631896e-12 art_sys_158: -0.0 - art_sys_159: 2.34090059e-11 - art_sys_160: 7.35048972e-13 - art_sys_161: 7.53583739e-12 - art_sys_162: 1.76639471e-13 - art_sys_163: -1.46408494e-13 - art_sys_164: -3.53448714e-13 - art_sys_165: -4.24955643e-15 - art_sys_166: 7.61312815e-22 - art_sys_167: 8.52774537e-22 - art_sys_168: -1.49812761e-22 - art_sys_169: 4.42466995e-23 - art_sys_170: 1.58642332e-23 - art_sys_171: -2.37094252e-23 - art_sys_172: 1.52646753e-22 - art_sys_173: -1.63636139e-23 - art_sys_174: -1.85760233e-24 - art_sys_175: -1.95684308e-27 - art_sys_176: -9.86263668e-25 - art_sys_177: -1.06730351e-25 - art_sys_178: 8.20602642e-26 - art_sys_179: 2.25456261e-26 - art_sys_180: 5.75000714e-25 - art_sys_181: -3.21262820e-27 - art_sys_182: -1.55590211e-25 - art_sys_183: -2.79675797e-27 - art_sys_184: -1.18390193e-30 - art_sys_185: -1.53403670e-29 + art_sys_159: -7.27317789e-13 + art_sys_160: -1.59371297e-13 + art_sys_161: 5.47406959e-14 + art_sys_162: 5.47406959e-14 + art_sys_163: 6.37587606e-14 + art_sys_164: 6.37587606e-14 + art_sys_165: -7.12524288e-28 + art_sys_166: 2.36089474e-28 + art_sys_167: 0.0 + art_sys_168: -2.28223817e-22 + art_sys_169: -2.81186481e-22 + art_sys_170: -1.79926194e-23 + art_sys_171: -1.71371798e-22 + art_sys_172: -2.37213998e-23 + art_sys_173: -1.21040296e-24 + art_sys_174: -7.28694045e-25 + art_sys_175: 1.34496691e-25 + art_sys_176: -1.63739077e-25 + art_sys_177: 4.05659636e-24 + art_sys_178: -2.15294607e-25 + art_sys_179: 1.06064059e-27 + art_sys_180: -1.70882394e-26 + art_sys_181: -4.27839193e-25 + art_sys_182: -2.34868623e-26 + art_sys_183: -5.24213824e-28 + art_sys_184: 2.18416964e-28 + art_sys_185: 6.00663763e-30 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -22670,167 +22670,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: -4.76819712e-13 - art_sys_26: 2.91916793e-11 - art_sys_27: 3.81846546e-11 - art_sys_28: 1.02522876e-31 - art_sys_29: -1.29602876e-29 - art_sys_30: 1.37435402e-10 - art_sys_31: -3.62784507e-09 - art_sys_32: -1.45766719e-08 - art_sys_33: -1.47673737e-08 - art_sys_34: 6.88678842e-26 - art_sys_35: 3.77206309e-26 - art_sys_36: -4.32968115e-28 - art_sys_37: 7.08180113e-27 - art_sys_38: -2.49468354e-08 - art_sys_39: -1.57431177e-25 - art_sys_40: 9.32059503e-26 - art_sys_41: 7.33651403e-26 - art_sys_42: 9.14075436e-25 - art_sys_43: 4.99845581e-08 - art_sys_44: -2.55462954e-06 - art_sys_45: 4.59701409e-06 - art_sys_46: -5.52810777e-23 - art_sys_47: -3.81920469e-23 - art_sys_48: -5.55754882e-19 - art_sys_49: -6.89346518e-14 - art_sys_50: -1.05483682e-15 - art_sys_51: 1.20448748e-14 - art_sys_52: 4.90139899e-15 - art_sys_53: -1.20116782e-15 - art_sys_54: -1.21714321e-15 - art_sys_55: -2.57390653e-06 - art_sys_56: -4.20271378e-05 - art_sys_57: -1.95039860e-16 - art_sys_58: -1.05673361e-15 - art_sys_59: -2.41285626e-15 - art_sys_60: -1.04573662e-15 - art_sys_61: 5.37269322e-15 - art_sys_62: 2.50324280e-16 - art_sys_63: -6.62528367e-05 - art_sys_64: -2.57664141e-20 - art_sys_65: 3.20201551e-16 - art_sys_66: -4.67313594e-16 - art_sys_67: 1.17464428e-15 - art_sys_68: -6.85977935e-05 - art_sys_69: 4.11031693e-04 - art_sys_70: 1.28219923e-14 - art_sys_71: 9.52852790e-17 - art_sys_72: 3.74352812e-17 - art_sys_73: 8.47406036e-14 - art_sys_74: -5.17097619e-15 - art_sys_75: -8.30258596e-15 - art_sys_76: -1.81999308e-14 - art_sys_77: 3.64337742e-13 - art_sys_78: 1.75022211e-04 - art_sys_79: 4.44708328e-15 - art_sys_80: 5.92730835e-11 - art_sys_81: 1.32852983e-16 - art_sys_82: -5.06887030e-17 - art_sys_83: -6.84800316e-14 - art_sys_84: 3.69933032e-16 - art_sys_85: -9.51646793e-17 - art_sys_86: 1.72249791e-12 - art_sys_87: 1.49104549e-14 - art_sys_88: -6.64416877e-13 - art_sys_89: 1.42788877e-14 - art_sys_90: -1.58727894e-14 - art_sys_91: -4.90308077e-04 - art_sys_92: -5.88507539e-15 - art_sys_93: -1.22846829e-14 - art_sys_94: 7.85500252e-13 - art_sys_95: -3.00643263e-04 - art_sys_96: 3.49303787e-13 - art_sys_97: -1.22216123e-04 - art_sys_98: 2.46757503e-12 - art_sys_99: -9.69836292e-16 - art_sys_100: 1.36475605e-04 - art_sys_101: -1.28323402e-10 - art_sys_102: 1.12746780e-10 - art_sys_103: 8.81150380e-05 - art_sys_104: 9.12741674e-14 - art_sys_105: 4.77807805e-12 - art_sys_106: 2.15899332e-10 - art_sys_107: -8.92480354e-12 - art_sys_108: 5.63794823e-13 - art_sys_109: 3.22353184e-12 - art_sys_110: 4.85550149e-05 - art_sys_111: 1.50840781e-10 - art_sys_112: 2.20432127e-05 - art_sys_113: -9.10447008e-13 - art_sys_114: -4.99992956e-10 - art_sys_115: 9.07409084e-06 - art_sys_116: -8.83607523e-10 - art_sys_117: 1.70635992e-10 - art_sys_118: 3.56560407e-06 - art_sys_119: -1.65785121e-10 - art_sys_120: -7.65752025e-11 - art_sys_121: -1.25930750e-06 - art_sys_122: -1.05008160e-10 - art_sys_123: 6.25574708e-11 - art_sys_124: 4.65635606e-07 - art_sys_125: 1.94622559e-10 - art_sys_126: 1.56290659e-07 - art_sys_127: 2.40088855e-11 - art_sys_128: 5.22395551e-08 - art_sys_129: 4.82652437e-11 - art_sys_130: 1.62215008e-08 - art_sys_131: 5.25758420e-12 - art_sys_132: -7.67159081e-11 - art_sys_133: 4.71526833e-09 - art_sys_134: 2.78009842e-14 - art_sys_135: -7.43162065e-11 - art_sys_136: -1.60147463e-09 - art_sys_137: -4.35154611e-15 - art_sys_138: 4.44456900e-13 - art_sys_139: 3.96452400e-12 - art_sys_140: 2.27966340e-10 - art_sys_141: 5.11257127e-11 - art_sys_142: 7.24408550e-12 - art_sys_143: -1.15238850e-15 - art_sys_144: -1.66877623e-15 - art_sys_145: -1.36058849e-14 - art_sys_146: 0.0 - art_sys_147: -2.81687990e-13 - art_sys_148: 3.34680551e-12 - art_sys_149: 3.34680551e-12 - art_sys_150: -1.12844486e-12 - art_sys_151: -1.12844486e-12 - art_sys_152: 5.14397447e-12 - art_sys_153: -4.68957090e-14 - art_sys_154: -2.96438853e-16 - art_sys_155: -1.08604222e-24 - art_sys_156: -1.01772771e-27 - art_sys_157: -7.29380470e-28 + art_sys_25: -2.15827372e-87 + art_sys_26: -1.13060243e-81 + art_sys_27: 7.10110597e-75 + art_sys_28: -4.24852039e-74 + art_sys_29: -1.63179984e-63 + art_sys_30: -1.32629758e-60 + art_sys_31: -6.20395565e-58 + art_sys_32: 7.41095932e-50 + art_sys_33: 2.22091423e-44 + art_sys_34: 2.23920903e-37 + art_sys_35: 1.56973306e-38 + art_sys_36: -4.76819712e-13 + art_sys_37: 2.91916793e-11 + art_sys_38: 3.81846546e-11 + art_sys_39: 1.37435402e-10 + art_sys_40: 3.62784507e-09 + art_sys_41: -1.45766719e-08 + art_sys_42: -1.47673737e-08 + art_sys_43: 2.49468354e-08 + art_sys_44: -4.99845581e-08 + art_sys_45: 2.55462954e-06 + art_sys_46: 4.59701409e-06 + art_sys_47: 7.38081358e-23 + art_sys_48: -7.26752290e-23 + art_sys_49: 2.39571463e-26 + art_sys_50: -2.57390653e-06 + art_sys_51: 4.20271378e-05 + art_sys_52: 8.68875238e-22 + art_sys_53: -1.71543100e-21 + art_sys_54: -9.55470827e-22 + art_sys_55: 8.77589880e-22 + art_sys_56: 2.79848033e-22 + art_sys_57: -6.62528367e-05 + art_sys_58: 6.85977960e-05 + art_sys_59: -8.23181075e-23 + art_sys_60: 6.39106289e-21 + art_sys_61: 4.11031692e-04 + art_sys_62: 8.63301086e-22 + art_sys_63: -2.55449250e-20 + art_sys_64: -1.22294912e-13 + art_sys_65: -1.55682177e-14 + art_sys_66: 2.06846945e-15 + art_sys_67: -3.56126831e-15 + art_sys_68: 1.76174935e-16 + art_sys_69: 3.00441892e-16 + art_sys_70: -3.21250120e-17 + art_sys_71: 2.85563212e-17 + art_sys_72: -9.32635359e-17 + art_sys_73: -8.61097642e-17 + art_sys_74: 1.75022210e-04 + art_sys_75: 1.60353947e-16 + art_sys_76: -4.39770261e-14 + art_sys_77: -1.83174068e-14 + art_sys_78: 1.38053580e-14 + art_sys_79: 6.81256811e-17 + art_sys_80: 9.35597371e-16 + art_sys_81: -7.22860634e-17 + art_sys_82: -2.42959552e-15 + art_sys_83: 2.36234006e-17 + art_sys_84: 1.84320986e-16 + art_sys_85: -3.47507706e-16 + art_sys_86: 1.90774631e-16 + art_sys_87: 1.72820531e-11 + art_sys_88: 2.64165316e-12 + art_sys_89: -4.16271958e-17 + art_sys_90: -1.44829427e-13 + art_sys_91: 1.37506676e-16 + art_sys_92: -7.96761891e-18 + art_sys_93: 2.35607725e-17 + art_sys_94: 4.20290020e-12 + art_sys_95: 4.90308163e-04 + art_sys_96: 1.03051153e-12 + art_sys_97: -5.32266699e-13 + art_sys_98: 3.00643385e-04 + art_sys_99: 3.72611227e-11 + art_sys_100: -1.22215352e-04 + art_sys_101: -1.22262703e-10 + art_sys_102: 1.36476345e-04 + art_sys_103: -9.54786052e-11 + art_sys_104: 1.88693362e-10 + art_sys_105: 6.52112983e-13 + art_sys_106: 1.75422079e-09 + art_sys_107: -8.81151576e-05 + art_sys_108: 1.05693304e-12 + art_sys_109: 4.08631468e-12 + art_sys_110: 4.85567157e-05 + art_sys_111: -2.42985998e-10 + art_sys_112: -9.95620578e-10 + art_sys_113: 5.93531012e-11 + art_sys_114: 2.04551377e-12 + art_sys_115: 4.63176148e-12 + art_sys_116: 2.20432638e-05 + art_sys_117: 7.37892778e-12 + art_sys_118: -1.42040972e-10 + art_sys_119: -9.07387352e-06 + art_sys_120: -1.40544162e-10 + art_sys_121: -1.06382447e-12 + art_sys_122: -2.61005071e-11 + art_sys_123: -3.56542943e-06 + art_sys_124: 3.26630383e-11 + art_sys_125: 1.10203094e-12 + art_sys_126: 4.43872614e-11 + art_sys_127: 1.25976972e-06 + art_sys_128: -8.67689386e-11 + art_sys_129: 1.26602100e-14 + art_sys_130: -4.65434203e-07 + art_sys_131: -7.07846889e-13 + art_sys_132: 4.33429937e-10 + art_sys_133: -1.55781187e-07 + art_sys_134: -2.62431149e-10 + art_sys_135: -2.44463323e-11 + art_sys_136: -7.01691518e-14 + art_sys_137: -5.22500692e-08 + art_sys_138: -4.59368191e-11 + art_sys_139: -1.60372469e-08 + art_sys_140: -1.51466843e-14 + art_sys_141: -1.05513360e-10 + art_sys_142: 3.86020580e-11 + art_sys_143: -4.94366340e-09 + art_sys_144: 2.07753186e-13 + art_sys_145: 3.30634110e-11 + art_sys_146: -1.67223764e-09 + art_sys_147: 4.07512291e-14 + art_sys_148: 3.43201835e-15 + art_sys_149: -8.44458633e-12 + art_sys_150: -2.12494645e-10 + art_sys_151: 6.59722893e-12 + art_sys_152: -1.12008508e-14 + art_sys_153: 2.34117043e-11 + art_sys_154: -1.65873558e-11 + art_sys_155: 8.76101224e-15 + art_sys_156: 0.0 + art_sys_157: 9.03957816e-12 art_sys_158: 0.0 - art_sys_159: -4.99499019e-11 - art_sys_160: -1.55915798e-12 - art_sys_161: -1.63458130e-11 - art_sys_162: -3.82124275e-13 - art_sys_163: 3.97154663e-13 - art_sys_164: 7.71458613e-13 - art_sys_165: 9.00879931e-15 - art_sys_166: -1.65859182e-21 - art_sys_167: -1.85198731e-21 - art_sys_168: 3.29512860e-22 - art_sys_169: -9.52135011e-23 - art_sys_170: -3.44317322e-23 - art_sys_171: 5.08941310e-23 - art_sys_172: -3.30308720e-22 - art_sys_173: 3.53250194e-23 - art_sys_174: 4.00147632e-24 - art_sys_175: 4.17742592e-27 - art_sys_176: 2.12303034e-24 - art_sys_177: 2.18938705e-25 - art_sys_178: -1.76231248e-25 - art_sys_179: -5.33431310e-26 - art_sys_180: -1.26271800e-24 - art_sys_181: 7.36406299e-27 - art_sys_182: 3.37818476e-25 - art_sys_183: 6.05852985e-27 - art_sys_184: 2.77898713e-30 - art_sys_185: 3.35828158e-29 + art_sys_159: 1.41777532e-12 + art_sys_160: 3.03371673e-13 + art_sys_161: -1.22213123e-13 + art_sys_162: -1.22213123e-13 + art_sys_163: -1.25056504e-13 + art_sys_164: -1.25056504e-13 + art_sys_165: 1.42247607e-27 + art_sys_166: -4.72144467e-28 + art_sys_167: -0.0 + art_sys_168: 6.12218128e-22 + art_sys_169: 6.13724296e-22 + art_sys_170: 6.11596476e-23 + art_sys_171: 3.66250216e-22 + art_sys_172: 5.12538284e-23 + art_sys_173: 2.54352096e-24 + art_sys_174: 1.53336038e-24 + art_sys_175: -2.93315721e-25 + art_sys_176: 3.56657836e-25 + art_sys_177: -8.76880286e-24 + art_sys_178: 4.54935804e-25 + art_sys_179: -2.38855873e-27 + art_sys_180: 3.33844276e-26 + art_sys_181: 9.20788038e-25 + art_sys_182: 5.12278501e-26 + art_sys_183: 1.14232100e-27 + art_sys_184: -4.75256731e-28 + art_sys_185: -1.31219111e-29 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -22961,167 +22961,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: 1.40644714e-13 - art_sys_26: 1.50443611e-12 - art_sys_27: 8.96264410e-13 - art_sys_28: -3.55824016e-31 - art_sys_29: -2.38587898e-31 - art_sys_30: 1.55579318e-11 - art_sys_31: -2.33346837e-10 - art_sys_32: -1.63280322e-09 - art_sys_33: -1.02209831e-09 - art_sys_34: 6.98803669e-27 - art_sys_35: 2.66810404e-27 - art_sys_36: -3.05383995e-27 - art_sys_37: 3.81032018e-28 - art_sys_38: -3.51619695e-09 - art_sys_39: -1.95369804e-26 - art_sys_40: 1.28838789e-26 - art_sys_41: 1.11940933e-26 - art_sys_42: 4.69306583e-25 - art_sys_43: 2.55552477e-08 - art_sys_44: -1.82136188e-07 - art_sys_45: 4.43470704e-07 - art_sys_46: -5.01905005e-24 - art_sys_47: -3.39607989e-24 - art_sys_48: -7.83608200e-19 - art_sys_49: -1.32082194e-14 - art_sys_50: 1.40689202e-15 - art_sys_51: 1.36759290e-14 - art_sys_52: 2.54261090e-15 - art_sys_53: 1.02620249e-15 - art_sys_54: -3.81881474e-17 - art_sys_55: -3.62967094e-06 - art_sys_56: 6.44777277e-07 - art_sys_57: -2.75106187e-16 - art_sys_58: 1.45923236e-15 - art_sys_59: 4.19017659e-15 - art_sys_60: 1.60464173e-17 - art_sys_61: -8.25048031e-17 - art_sys_62: -3.84039676e-18 - art_sys_63: -1.14166053e-05 - art_sys_64: -8.70903647e-23 - art_sys_65: -6.15286284e-16 - art_sys_66: 9.68814520e-16 - art_sys_67: 2.02411326e-16 - art_sys_68: 3.25255374e-05 - art_sys_69: 4.37590541e-05 - art_sys_70: 2.20940971e-15 - art_sys_71: 2.19486070e-17 - art_sys_72: 4.78114538e-17 - art_sys_73: -2.92816895e-16 - art_sys_74: 1.55036303e-14 - art_sys_75: 1.43854194e-15 - art_sys_76: -5.30904232e-15 - art_sys_77: -1.29524284e-14 - art_sys_78: 6.83328647e-05 - art_sys_79: 5.04798567e-15 - art_sys_80: -5.88817138e-12 - art_sys_81: 1.80475621e-16 - art_sys_82: -4.31406170e-17 - art_sys_83: 2.78687793e-14 - art_sys_84: -2.78668208e-17 - art_sys_85: 4.09337959e-16 - art_sys_86: -1.98793540e-12 - art_sys_87: 2.31759622e-15 - art_sys_88: 8.96250030e-13 - art_sys_89: -2.64248456e-14 - art_sys_90: -1.69887378e-15 - art_sys_91: 4.87038665e-05 - art_sys_92: -4.48131206e-15 - art_sys_93: 1.40906677e-14 - art_sys_94: 3.03746548e-13 - art_sys_95: -5.49372277e-04 - art_sys_96: -5.72342404e-13 - art_sys_97: 6.87395237e-05 - art_sys_98: -3.20410670e-13 - art_sys_99: -2.46725603e-16 - art_sys_100: -5.78239783e-05 - art_sys_101: 1.13047839e-11 - art_sys_102: -7.35089993e-12 - art_sys_103: -8.85764181e-05 - art_sys_104: 4.46298490e-14 - art_sys_105: 2.91455994e-12 - art_sys_106: -1.00227899e-10 - art_sys_107: 1.53165239e-11 - art_sys_108: -9.69273905e-13 - art_sys_109: -5.66428079e-12 - art_sys_110: -5.82472805e-05 - art_sys_111: -6.30709513e-11 - art_sys_112: -3.09327127e-05 - art_sys_113: 1.63277774e-12 - art_sys_114: 2.32157334e-10 - art_sys_115: -1.39820223e-05 - art_sys_116: 1.05835652e-09 - art_sys_117: -6.64944310e-11 - art_sys_118: -5.84307695e-06 - art_sys_119: 5.02526323e-11 - art_sys_120: 9.39270592e-11 - art_sys_121: 2.16144131e-06 - art_sys_122: 1.16114644e-10 - art_sys_123: -7.63326935e-11 - art_sys_124: -8.23067644e-07 - art_sys_125: -2.82677314e-10 - art_sys_126: -2.82226361e-07 - art_sys_127: -3.12342304e-11 - art_sys_128: -9.57479225e-08 - art_sys_129: -5.42373710e-11 - art_sys_130: -3.00322507e-08 - art_sys_131: -1.37045424e-11 - art_sys_132: 1.18157738e-10 - art_sys_133: -8.79947161e-09 - art_sys_134: -5.59324974e-14 - art_sys_135: 1.20761974e-10 - art_sys_136: 2.99878790e-09 - art_sys_137: 7.56744879e-15 - art_sys_138: -3.19326404e-14 - art_sys_139: -7.51628537e-12 - art_sys_140: -4.29620621e-10 - art_sys_141: -9.01643927e-11 - art_sys_142: -1.05160359e-11 - art_sys_143: 2.32186414e-15 - art_sys_144: 3.16964443e-15 - art_sys_145: 2.56106095e-14 - art_sys_146: -0.0 - art_sys_147: 5.03680413e-13 - art_sys_148: -5.86019921e-12 - art_sys_149: -5.86019921e-12 - art_sys_150: 1.87740511e-12 - art_sys_151: 1.87740511e-12 - art_sys_152: -8.38746824e-12 - art_sys_153: 5.51331706e-14 - art_sys_154: 5.27160343e-16 - art_sys_155: 1.75070995e-24 - art_sys_156: 1.37401714e-27 - art_sys_157: 1.10099039e-27 + art_sys_25: 6.45205493e-88 + art_sys_26: 3.37988127e-82 + art_sys_27: -2.12284125e-75 + art_sys_28: 1.27007460e-74 + art_sys_29: 4.87818660e-64 + art_sys_30: 3.96490238e-61 + art_sys_31: 1.85464249e-58 + art_sys_32: -2.21547039e-50 + art_sys_33: -6.63931550e-45 + art_sys_34: -6.69400691e-38 + art_sys_35: -4.69264093e-39 + art_sys_36: 1.40644714e-13 + art_sys_37: 1.50443611e-12 + art_sys_38: 8.96264410e-13 + art_sys_39: 1.55579318e-11 + art_sys_40: 2.33346837e-10 + art_sys_41: -1.63280322e-09 + art_sys_42: -1.02209831e-09 + art_sys_43: 3.51619695e-09 + art_sys_44: -2.55552477e-08 + art_sys_45: 1.82136188e-07 + art_sys_46: 4.43470704e-07 + art_sys_47: 7.79224381e-24 + art_sys_48: -7.93109974e-23 + art_sys_49: -1.42188787e-24 + art_sys_50: -3.62967094e-06 + art_sys_51: -6.44777277e-07 + art_sys_52: 4.08968425e-23 + art_sys_53: 4.42020241e-23 + art_sys_54: 7.13758167e-23 + art_sys_55: 7.66773416e-23 + art_sys_56: -2.56273105e-23 + art_sys_57: -1.14166053e-05 + art_sys_58: -3.25255386e-05 + art_sys_59: -6.18629143e-22 + art_sys_60: -1.47513618e-21 + art_sys_61: 4.37590541e-05 + art_sys_62: 8.43505346e-22 + art_sys_63: -1.17658073e-20 + art_sys_64: -4.42784386e-14 + art_sys_65: 2.08089596e-16 + art_sys_66: -3.20220330e-15 + art_sys_67: 3.25529348e-16 + art_sys_68: -3.70844556e-16 + art_sys_69: -5.36284105e-16 + art_sys_70: 3.11066547e-17 + art_sys_71: -4.02697015e-16 + art_sys_72: 3.25082333e-17 + art_sys_73: 1.77472297e-16 + art_sys_74: 6.83328644e-05 + art_sys_75: -2.71300923e-16 + art_sys_76: 3.00906168e-15 + art_sys_77: -3.36043255e-14 + art_sys_78: 5.37245825e-15 + art_sys_79: -1.18378587e-16 + art_sys_80: 4.49531056e-15 + art_sys_81: 1.21555842e-16 + art_sys_82: -9.48590880e-16 + art_sys_83: 6.23582411e-16 + art_sys_84: 4.15363467e-16 + art_sys_85: 3.61911074e-16 + art_sys_86: -7.45442685e-17 + art_sys_87: -9.84793056e-12 + art_sys_88: -2.74340111e-12 + art_sys_89: 1.06063787e-16 + art_sys_90: 1.75399413e-13 + art_sys_91: 5.36745259e-17 + art_sys_92: -9.44050420e-17 + art_sys_93: 4.09411886e-17 + art_sys_94: -6.47568631e-12 + art_sys_95: -4.87038618e-05 + art_sys_96: -1.02312842e-13 + art_sys_97: 5.30267704e-14 + art_sys_98: 5.49372242e-04 + art_sys_99: 3.98276360e-11 + art_sys_100: 6.87389891e-05 + art_sys_101: 7.97156509e-11 + art_sys_102: -5.78242914e-05 + art_sys_103: 3.54611043e-11 + art_sys_104: -7.47875622e-12 + art_sys_105: -1.15233393e-12 + art_sys_106: -7.51200430e-10 + art_sys_107: 8.85765659e-05 + art_sys_108: -1.86728161e-12 + art_sys_109: -7.22184070e-12 + art_sys_110: -5.82493058e-05 + art_sys_111: -2.70010166e-10 + art_sys_112: 1.19325372e-09 + art_sys_113: -2.51303540e-11 + art_sys_114: -3.65869321e-12 + art_sys_115: -4.94428212e-12 + art_sys_116: -3.09327954e-05 + art_sys_117: -1.33147374e-11 + art_sys_118: 1.28218765e-10 + art_sys_119: 1.39816910e-05 + art_sys_120: 1.71830615e-10 + art_sys_121: 1.89571472e-12 + art_sys_122: -7.61146081e-11 + art_sys_123: 5.84279056e-06 + art_sys_124: -1.09044664e-11 + art_sys_125: -2.01787452e-12 + art_sys_126: -6.81620258e-11 + art_sys_127: -2.16224711e-06 + art_sys_128: 1.01204330e-10 + art_sys_129: -3.15616290e-14 + art_sys_130: 8.22727466e-07 + art_sys_131: 1.31101686e-12 + art_sys_132: -5.17234616e-10 + art_sys_133: 2.81340357e-07 + art_sys_134: 4.06065284e-10 + art_sys_135: 2.85780477e-11 + art_sys_136: 1.32148310e-13 + art_sys_137: 9.57779102e-08 + art_sys_138: 7.30237366e-11 + art_sys_139: 2.97090433e-08 + art_sys_140: 2.65357505e-14 + art_sys_141: 1.92417448e-10 + art_sys_142: -5.76183555e-11 + art_sys_143: 9.20006037e-09 + art_sys_144: -3.61333545e-13 + art_sys_145: -5.39596073e-11 + art_sys_146: 3.12666994e-09 + art_sys_147: -7.60536101e-14 + art_sys_148: -6.35163985e-15 + art_sys_149: 1.07677704e-11 + art_sys_150: 3.99587021e-10 + art_sys_151: -1.05313223e-11 + art_sys_152: 2.15698186e-14 + art_sys_153: -4.36034651e-11 + art_sys_154: 1.97874643e-11 + art_sys_155: -1.68580898e-14 + art_sys_156: -0.0 + art_sys_157: -1.32090612e-11 art_sys_158: -0.0 - art_sys_159: 8.97391972e-11 - art_sys_160: 2.77563749e-12 - art_sys_161: 3.01609111e-11 - art_sys_162: 7.02288909e-13 - art_sys_163: -9.55293712e-13 - art_sys_164: -1.43687545e-12 - art_sys_165: -1.60623516e-14 - art_sys_166: 3.08231053e-21 - art_sys_167: 3.41030249e-21 - art_sys_168: -6.21201943e-22 - art_sys_169: 1.71979061e-22 - art_sys_170: 6.17359714e-23 - art_sys_171: -9.24523506e-23 - art_sys_172: 6.07234864e-22 - art_sys_173: -6.46988343e-23 - art_sys_174: -7.29868854e-24 - art_sys_175: -7.53383257e-27 - art_sys_176: -3.87183307e-24 - art_sys_177: -3.68931192e-25 - art_sys_178: 3.20654195e-25 - art_sys_179: 1.10850264e-25 - art_sys_180: 2.37465729e-24 - art_sys_181: -1.47302031e-26 - art_sys_182: -6.24192507e-25 - art_sys_183: -1.11558153e-26 - art_sys_184: -5.67372581e-30 - art_sys_185: -6.28674655e-29 + art_sys_159: -2.18710593e-12 + art_sys_160: -4.54139274e-13 + art_sys_161: 2.34301919e-13 + art_sys_162: 2.34301919e-13 + art_sys_163: 1.94320311e-13 + art_sys_164: 1.94320311e-13 + art_sys_165: -2.28502977e-27 + art_sys_166: 7.60785805e-28 + art_sys_167: 0.0 + art_sys_168: -9.54884850e-22 + art_sys_169: -1.14435245e-21 + art_sys_170: -1.16274905e-22 + art_sys_171: -6.59634815e-22 + art_sys_172: -9.39176407e-23 + art_sys_173: -4.44590316e-24 + art_sys_174: -2.68532688e-24 + art_sys_175: 5.46016905e-25 + art_sys_176: -6.61674573e-25 + art_sys_177: 1.60828799e-23 + art_sys_178: -8.05732044e-25 + art_sys_179: 4.63739539e-27 + art_sys_180: -5.16597660e-26 + art_sys_181: -1.67724396e-24 + art_sys_182: -9.54809422e-26 + art_sys_183: -2.12133352e-27 + art_sys_184: 8.80917765e-28 + art_sys_185: 2.45019174e-29 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -23252,167 +23252,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: 2.44942889e-14 - art_sys_26: -2.99826674e-14 - art_sys_27: -3.38720262e-13 - art_sys_28: -1.01344963e-31 - art_sys_29: 1.30851661e-31 - art_sys_30: 1.84461428e-12 - art_sys_31: -2.69171659e-11 - art_sys_32: -1.36339122e-10 - art_sys_33: -1.89819955e-10 - art_sys_34: 6.48818567e-28 - art_sys_35: 4.99055267e-28 - art_sys_36: 8.67426205e-29 - art_sys_37: 9.38813456e-29 - art_sys_38: 8.71482329e-11 - art_sys_39: -3.07217737e-29 - art_sys_40: -1.90867406e-28 - art_sys_41: -3.59942966e-28 - art_sys_42: -1.38843922e-25 - art_sys_43: -7.52180847e-09 - art_sys_44: 3.47079233e-08 - art_sys_45: -1.21506716e-07 - art_sys_46: 1.24244521e-24 - art_sys_47: 9.31911204e-25 - art_sys_48: -1.38114442e-19 - art_sys_49: 5.48820225e-14 - art_sys_50: -5.06071786e-14 - art_sys_51: 1.24020633e-16 - art_sys_52: -3.85721251e-15 - art_sys_53: -8.46769210e-16 - art_sys_54: -1.43263419e-15 - art_sys_55: -6.39759902e-07 - art_sys_56: 2.79280609e-06 - art_sys_57: -4.84926563e-17 - art_sys_58: -3.45130821e-15 - art_sys_59: -8.70804669e-15 - art_sys_60: 6.94923947e-17 - art_sys_61: -3.57045689e-16 - art_sys_62: -1.66346397e-17 - art_sys_63: 2.79855429e-06 - art_sys_64: 1.65802679e-21 - art_sys_65: 1.35818877e-15 - art_sys_66: -1.91298214e-15 - art_sys_67: -4.96184102e-17 - art_sys_68: 1.12840771e-05 - art_sys_69: -2.90563569e-05 - art_sys_70: -5.41619773e-16 - art_sys_71: -2.97787852e-18 - art_sys_72: 6.31516608e-18 - art_sys_73: -8.91479943e-14 - art_sys_74: -4.09010654e-14 - art_sys_75: -6.16996635e-15 - art_sys_76: -2.16391490e-15 - art_sys_77: -3.84413511e-14 - art_sys_78: -8.41069828e-06 - art_sys_79: -2.24874633e-15 - art_sys_80: -1.72634744e-11 - art_sys_81: 7.53477680e-16 - art_sys_82: -4.39933486e-16 - art_sys_83: -3.17672466e-14 - art_sys_84: 3.42377433e-16 - art_sys_85: 2.12169310e-16 - art_sys_86: 2.05485745e-12 - art_sys_87: -9.36098828e-16 - art_sys_88: -1.21170552e-12 - art_sys_89: 5.49248059e-14 - art_sys_90: 1.11821348e-15 - art_sys_91: 1.42816916e-04 - art_sys_92: 1.08720502e-16 - art_sys_93: 3.35626222e-15 - art_sys_94: -3.92049810e-14 - art_sys_95: -1.17718940e-04 - art_sys_96: 1.02635363e-12 - art_sys_97: 3.81918759e-04 - art_sys_98: -7.52657997e-13 - art_sys_99: -3.83106130e-17 - art_sys_100: 1.61831861e-05 - art_sys_101: 3.68673799e-11 - art_sys_102: -3.14753757e-11 - art_sys_103: 4.34177206e-05 - art_sys_104: -5.26495532e-15 - art_sys_105: -1.07839190e-12 - art_sys_106: 1.42601914e-10 - art_sys_107: -2.91706144e-11 - art_sys_108: 1.85104222e-12 - art_sys_109: 1.11789251e-11 - art_sys_110: 6.82725828e-05 - art_sys_111: -3.29349854e-10 - art_sys_112: 4.35525344e-05 - art_sys_113: -3.31666321e-12 - art_sys_114: 9.23205857e-10 - art_sys_115: 2.28961678e-05 - art_sys_116: -1.23473846e-09 - art_sys_117: 3.25685725e-10 - art_sys_118: 1.04799131e-05 - art_sys_119: -8.17316625e-11 - art_sys_120: -1.12490698e-10 - art_sys_121: -4.11710531e-06 - art_sys_122: -1.48245167e-10 - art_sys_123: 9.37592578e-11 - art_sys_124: 1.63830670e-06 - art_sys_125: 4.18490917e-10 - art_sys_126: 5.78538905e-07 - art_sys_127: 4.18728706e-11 - art_sys_128: 2.00349814e-07 - art_sys_129: 5.41402330e-11 - art_sys_130: 6.38184051e-08 - art_sys_131: 3.93551377e-11 - art_sys_132: -1.98834250e-10 - art_sys_133: 1.88940375e-08 - art_sys_134: 1.31328408e-13 - art_sys_135: -2.12142216e-10 - art_sys_136: -6.47628387e-09 - art_sys_137: -1.46730578e-14 - art_sys_138: -1.25156863e-13 - art_sys_139: 1.60994547e-11 - art_sys_140: 9.35682942e-10 - art_sys_141: 1.79106546e-10 - art_sys_142: 1.40671811e-11 - art_sys_143: -5.49038772e-15 - art_sys_144: -6.96488222e-15 - art_sys_145: -5.57106211e-14 - art_sys_146: 0.0 - art_sys_147: -1.01689522e-12 - art_sys_148: 1.14887828e-11 - art_sys_149: 1.14887828e-11 - art_sys_150: -3.37396705e-12 - art_sys_151: -3.37396705e-12 - art_sys_152: 1.50399990e-11 - art_sys_153: -5.66089632e-14 - art_sys_154: -1.05072512e-15 - art_sys_155: -3.09930617e-24 - art_sys_156: -1.51315499e-27 - art_sys_157: -1.70064698e-27 + art_sys_25: 1.12119230e-88 + art_sys_26: 5.87331771e-83 + art_sys_27: -3.68892282e-76 + art_sys_28: 2.20704547e-75 + art_sys_29: 8.47696635e-65 + art_sys_30: 6.88992588e-62 + art_sys_31: 3.22286606e-59 + art_sys_32: -3.84988717e-51 + art_sys_33: -1.15373311e-45 + art_sys_34: -1.16323700e-38 + art_sys_35: -8.15453828e-40 + art_sys_36: 2.44942889e-14 + art_sys_37: -2.99826674e-14 + art_sys_38: -3.38720262e-13 + art_sys_39: 1.84461428e-12 + art_sys_40: 2.69171659e-11 + art_sys_41: -1.36339122e-10 + art_sys_42: -1.89819955e-10 + art_sys_43: -8.71482329e-11 + art_sys_44: 7.52180847e-09 + art_sys_45: -3.47079233e-08 + art_sys_46: -1.21506716e-07 + art_sys_47: -2.22260662e-24 + art_sys_48: -1.27407841e-23 + art_sys_49: -1.60167000e-24 + art_sys_50: -6.39759902e-07 + art_sys_51: -2.79280609e-06 + art_sys_52: -4.63212848e-23 + art_sys_53: 1.17671118e-22 + art_sys_54: 7.43234452e-23 + art_sys_55: -3.87844107e-23 + art_sys_56: -3.93841808e-23 + art_sys_57: 2.79855429e-06 + art_sys_58: -1.12840775e-05 + art_sys_59: -1.07221910e-22 + art_sys_60: -1.80086843e-21 + art_sys_61: -2.90563569e-05 + art_sys_62: 5.38913771e-23 + art_sys_63: 8.96918607e-22 + art_sys_64: -7.07844944e-15 + art_sys_65: -1.31014635e-14 + art_sys_66: 1.88250348e-15 + art_sys_67: -2.01938764e-15 + art_sys_68: 1.47631674e-15 + art_sys_69: 2.55852943e-16 + art_sys_70: 4.70551478e-16 + art_sys_71: 5.48926677e-16 + art_sys_72: -1.12386683e-16 + art_sys_73: -2.09418669e-16 + art_sys_74: -8.41069823e-06 + art_sys_75: 5.13019790e-16 + art_sys_76: -9.25690552e-15 + art_sys_77: -3.12522043e-14 + art_sys_78: -7.03627977e-16 + art_sys_79: 2.34237411e-16 + art_sys_80: -2.19110056e-15 + art_sys_81: -2.45631975e-16 + art_sys_82: 1.16744228e-16 + art_sys_83: -3.63550023e-16 + art_sys_84: 1.49966952e-15 + art_sys_85: 5.64489705e-16 + art_sys_86: -2.85583231e-17 + art_sys_87: -5.46695941e-11 + art_sys_88: 1.53011535e-12 + art_sys_89: -2.77248937e-17 + art_sys_90: -2.11410471e-13 + art_sys_91: -6.61565347e-18 + art_sys_92: 5.07320647e-18 + art_sys_93: -9.12347935e-19 + art_sys_94: 1.06033993e-11 + art_sys_95: -1.42816936e-04 + art_sys_96: -3.00141198e-13 + art_sys_97: 1.55115648e-13 + art_sys_98: 1.17718655e-04 + art_sys_99: 4.57367992e-12 + art_sys_100: 3.81916310e-04 + art_sys_101: 3.98178667e-10 + art_sys_102: 1.61832747e-05 + art_sys_103: 2.71525338e-10 + art_sys_104: -5.14245059e-11 + art_sys_105: 2.29226565e-12 + art_sys_106: 2.14322579e-10 + art_sys_107: -4.34179055e-05 + art_sys_108: 3.71311010e-12 + art_sys_109: 1.43715870e-11 + art_sys_110: 6.82749037e-05 + art_sys_111: -3.52592923e-11 + art_sys_112: -1.39619843e-09 + art_sys_113: 7.02464918e-12 + art_sys_114: 7.40281663e-12 + art_sys_115: 3.88150657e-11 + art_sys_116: 4.35526794e-05 + art_sys_117: 2.72647651e-11 + art_sys_118: -1.10760437e-10 + art_sys_119: -2.28956337e-05 + art_sys_120: -2.07573808e-10 + art_sys_121: -3.81301626e-12 + art_sys_122: 1.39581126e-10 + art_sys_123: -1.04793989e-05 + art_sys_124: 7.30770218e-13 + art_sys_125: 4.21838363e-12 + art_sys_126: 1.12340654e-10 + art_sys_127: 4.11867752e-06 + art_sys_128: -1.10547740e-10 + art_sys_129: 9.00932254e-14 + art_sys_130: -1.63767532e-06 + art_sys_131: -2.79022765e-12 + art_sys_132: 6.00791858e-10 + art_sys_133: -5.76816611e-07 + art_sys_134: -6.69154713e-10 + art_sys_135: -3.23975547e-11 + art_sys_136: -2.88551641e-13 + art_sys_137: -2.00441165e-07 + art_sys_138: -1.25037351e-10 + art_sys_139: -6.31827699e-08 + art_sys_140: -5.18762378e-14 + art_sys_141: -4.00825030e-10 + art_sys_142: 9.07555687e-11 + art_sys_143: -1.96823254e-08 + art_sys_144: 7.02344458e-13 + art_sys_145: 9.55227006e-11 + art_sys_146: -6.73893585e-09 + art_sys_147: 1.63469312e-13 + art_sys_148: 1.34616580e-14 + art_sys_149: -1.20715815e-11 + art_sys_150: -8.68236272e-10 + art_sys_151: 1.76444604e-11 + art_sys_152: -4.85807512e-14 + art_sys_153: 9.36884426e-11 + art_sys_154: -2.31346429e-11 + art_sys_155: 3.71897306e-14 + art_sys_156: 0.0 + art_sys_157: 1.99549624e-11 art_sys_158: 0.0 - art_sys_159: -1.82652038e-10 - art_sys_160: -5.56074665e-12 - art_sys_161: -6.37436947e-11 - art_sys_162: -1.47643863e-12 - art_sys_163: 2.66196363e-12 - art_sys_164: 3.07922325e-12 - art_sys_165: 3.24181667e-14 - art_sys_166: -6.59780551e-21 - art_sys_167: -7.30913941e-21 - art_sys_168: 1.35503869e-21 - art_sys_169: -3.62023507e-22 - art_sys_170: -1.23935563e-22 - art_sys_171: 1.91406472e-22 - art_sys_172: -1.27642165e-21 - art_sys_173: 1.35350226e-22 - art_sys_174: 1.51996086e-23 - art_sys_175: 1.54656672e-26 - art_sys_176: 8.03330724e-24 - art_sys_177: 6.79018838e-25 - art_sys_178: -6.65718074e-25 - art_sys_179: -2.70920195e-25 - art_sys_180: -5.15369842e-24 - art_sys_181: 3.45449545e-26 - art_sys_182: 1.32179742e-24 - art_sys_183: 2.35141562e-26 - art_sys_184: 1.36227761e-29 - art_sys_185: 1.35555433e-28 + art_sys_159: 3.43215802e-12 + art_sys_160: 7.07751128e-13 + art_sys_161: -5.15716069e-13 + art_sys_162: -5.15716069e-13 + art_sys_163: -3.06635004e-13 + art_sys_164: -3.06635004e-13 + art_sys_165: 3.85187089e-27 + art_sys_166: -1.28977046e-27 + art_sys_167: -0.0 + art_sys_168: 2.46446116e-21 + art_sys_169: 2.45764506e-21 + art_sys_170: 1.67950074e-22 + art_sys_171: 1.34704256e-21 + art_sys_172: 1.96745147e-22 + art_sys_173: 8.71255896e-24 + art_sys_174: 5.23733442e-24 + art_sys_175: -1.16983346e-24 + art_sys_176: 1.41014567e-24 + art_sys_177: -3.37137948e-23 + art_sys_178: 1.60737083e-24 + art_sys_179: -1.02280365e-26 + art_sys_180: 8.13686172e-26 + art_sys_181: 3.48091607e-24 + art_sys_182: 2.05345943e-25 + art_sys_183: 4.52736164e-27 + art_sys_184: -1.87397645e-27 + art_sys_185: -5.25900575e-29 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -23543,167 +23543,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: 2.40470508e-15 - art_sys_26: -1.36851745e-14 - art_sys_27: -6.40076687e-14 - art_sys_28: -1.56550416e-32 - art_sys_29: 2.40031044e-32 - art_sys_30: 2.05538946e-13 - art_sys_31: -4.66158910e-12 - art_sys_32: -4.02978104e-12 - art_sys_33: -2.89364483e-11 - art_sys_34: 3.93836926e-29 - art_sys_35: 7.45502329e-29 - art_sys_36: 8.69375560e-29 - art_sys_37: 1.72278945e-29 - art_sys_38: 7.04253291e-11 - art_sys_39: 2.70208459e-28 - art_sys_40: -2.30951109e-28 - art_sys_41: -2.46867754e-28 - art_sys_42: -5.90548773e-26 - art_sys_43: -3.20236087e-09 - art_sys_44: 8.74566646e-09 - art_sys_45: -3.79072572e-08 - art_sys_46: 3.79976733e-25 - art_sys_47: 2.78586736e-25 - art_sys_48: -8.00163966e-21 - art_sys_49: -1.77643941e-13 - art_sys_50: -5.35857510e-14 - art_sys_51: 1.06816259e-14 - art_sys_52: 2.79136695e-15 - art_sys_53: 5.12854984e-15 - art_sys_54: 3.69361603e-15 - art_sys_55: -3.70664342e-08 - art_sys_56: 6.16399893e-07 - art_sys_57: -2.81006152e-18 - art_sys_58: 5.99514188e-15 - art_sys_59: 1.78467491e-14 - art_sys_60: 1.53375619e-17 - art_sys_61: -7.88013144e-17 - art_sys_62: -3.67143470e-18 - art_sys_63: 1.10268596e-06 - art_sys_64: 3.92698056e-22 - art_sys_65: -2.60190396e-15 - art_sys_66: 3.87820031e-15 - art_sys_67: -1.95503778e-17 - art_sys_68: 3.14835182e-07 - art_sys_69: -7.66249814e-06 - art_sys_70: -2.13403208e-16 - art_sys_71: -1.68874929e-18 - art_sys_72: -1.36730656e-18 - art_sys_73: -2.04438117e-14 - art_sys_74: 5.41593754e-15 - art_sys_75: -2.84540686e-16 - art_sys_76: 6.60335449e-15 - art_sys_77: -7.83475213e-15 - art_sys_78: -6.62341453e-06 - art_sys_79: 4.46526998e-16 - art_sys_80: -2.30190963e-12 - art_sys_81: -9.81090803e-16 - art_sys_82: 7.18786626e-16 - art_sys_83: -1.62233583e-13 - art_sys_84: 2.50666813e-16 - art_sys_85: -1.11951563e-16 - art_sys_86: -9.36164592e-13 - art_sys_87: -2.95652964e-16 - art_sys_88: 1.26388892e-12 - art_sys_89: -1.09172363e-13 - art_sys_90: 2.94850625e-16 - art_sys_91: 1.90181846e-05 - art_sys_92: 3.70365796e-16 - art_sys_93: -1.43676218e-16 - art_sys_94: -2.97316205e-14 - art_sys_95: 9.10326599e-05 - art_sys_96: -1.68398070e-12 - art_sys_97: 1.53031021e-04 - art_sys_98: -9.24457961e-14 - art_sys_99: 1.04041720e-17 - art_sys_100: 2.63799130e-04 - art_sys_101: 5.17525042e-12 - art_sys_102: -4.89978349e-12 - art_sys_103: -4.76274987e-06 - art_sys_104: -8.67192971e-15 - art_sys_105: -1.27782899e-12 - art_sys_106: 5.47413643e-10 - art_sys_107: 5.23601598e-11 - art_sys_108: -3.33454096e-12 - art_sys_109: -2.09908141e-11 - art_sys_110: -3.36843825e-05 - art_sys_111: -5.58017677e-11 - art_sys_112: -5.16240350e-05 - art_sys_113: 6.49919111e-12 - art_sys_114: 2.43860103e-11 - art_sys_115: -3.23886177e-05 - art_sys_116: 6.07853935e-10 - art_sys_117: 6.28446148e-10 - art_sys_118: -1.72009004e-05 - art_sys_119: -4.66345036e-10 - art_sys_120: 6.80816783e-11 - art_sys_121: 7.39152603e-06 - art_sys_122: 3.46353498e-11 - art_sys_123: -5.44208719e-11 - art_sys_124: -3.11417763e-06 - art_sys_125: -4.80926510e-10 - art_sys_126: -1.14882228e-06 - art_sys_127: -4.60060702e-11 - art_sys_128: -4.09117238e-07 - art_sys_129: 4.52907018e-12 - art_sys_130: -1.33090151e-07 - art_sys_131: -1.06465991e-10 - art_sys_132: 3.01286962e-10 - art_sys_133: -4.00185913e-08 - art_sys_134: -3.06353887e-13 - art_sys_135: 3.37635103e-10 - art_sys_136: 1.38213848e-08 - art_sys_137: 2.68037822e-14 - art_sys_138: -1.89216742e-14 - art_sys_139: -3.45102116e-11 - art_sys_140: -2.02004724e-09 - art_sys_141: -3.42948428e-10 - art_sys_142: -7.39642702e-12 - art_sys_143: 1.30193874e-14 - art_sys_144: 1.51584142e-14 - art_sys_145: 1.20292536e-13 - art_sys_146: -0.0 - art_sys_147: 1.98375011e-12 - art_sys_148: -2.15450677e-11 - art_sys_149: -2.15450677e-11 - art_sys_150: 5.52665614e-12 - art_sys_151: 5.52665614e-12 - art_sys_152: -2.45730506e-11 - art_sys_153: -2.68696542e-14 - art_sys_154: 2.01994272e-15 - art_sys_155: 4.94799719e-24 - art_sys_156: -1.27769956e-28 - art_sys_157: 2.01134574e-27 + art_sys_25: 1.09980917e-89 + art_sys_26: 5.76130310e-84 + art_sys_27: -3.61856851e-77 + art_sys_28: 2.16495319e-76 + art_sys_29: 8.31529554e-66 + art_sys_30: 6.75852275e-63 + art_sys_31: 3.16140028e-60 + art_sys_32: -3.77646298e-52 + art_sys_33: -1.13172937e-46 + art_sys_34: -1.14105200e-39 + art_sys_35: -7.99901675e-41 + art_sys_36: 2.40470508e-15 + art_sys_37: -1.36851745e-14 + art_sys_38: -6.40076687e-14 + art_sys_39: 2.05538946e-13 + art_sys_40: 4.66158910e-12 + art_sys_41: -4.02978104e-12 + art_sys_42: -2.89364483e-11 + art_sys_43: -7.04253291e-11 + art_sys_44: 3.20236087e-09 + art_sys_45: -8.74566646e-09 + art_sys_46: -3.79072572e-08 + art_sys_47: -7.18178978e-25 + art_sys_48: -6.08388147e-25 + art_sys_49: -3.87069519e-25 + art_sys_50: -3.70664342e-08 + art_sys_51: -6.16399893e-07 + art_sys_52: -1.17685028e-23 + art_sys_53: 2.55984033e-23 + art_sys_54: 1.47808898e-23 + art_sys_55: -1.11371674e-23 + art_sys_56: -7.92899679e-24 + art_sys_57: 1.10268596e-06 + art_sys_58: -3.14835193e-07 + art_sys_59: 1.09288399e-23 + art_sys_60: -4.25556121e-23 + art_sys_61: -7.66249814e-06 + art_sys_62: -3.42550954e-23 + art_sys_63: 9.90969299e-22 + art_sys_64: 4.72157533e-14 + art_sys_65: -7.75254970e-16 + art_sys_66: -4.14931844e-15 + art_sys_67: -1.37722999e-15 + art_sys_68: -1.62458949e-15 + art_sys_69: -8.77757124e-16 + art_sys_70: 2.55932481e-16 + art_sys_71: -9.99543076e-16 + art_sys_72: 3.11843837e-16 + art_sys_73: 5.19534935e-16 + art_sys_74: -6.62341450e-06 + art_sys_75: -9.54302144e-16 + art_sys_76: -5.91663896e-14 + art_sys_77: -2.87744326e-14 + art_sys_78: 1.56628515e-15 + art_sys_79: -4.20917476e-16 + art_sys_80: -4.87122432e-15 + art_sys_81: 4.74109029e-16 + art_sys_82: 9.19433798e-17 + art_sys_83: 1.48918441e-15 + art_sys_84: -9.09816791e-17 + art_sys_85: 5.74458644e-16 + art_sys_86: 2.85652802e-16 + art_sys_87: -2.19483929e-11 + art_sys_88: -3.75537895e-13 + art_sys_89: 5.28477508e-17 + art_sys_90: 1.09277808e-13 + art_sys_91: -5.20567748e-18 + art_sys_92: 2.61675203e-17 + art_sys_93: 1.85404226e-17 + art_sys_94: -1.49966518e-11 + art_sys_95: -1.90181896e-05 + art_sys_96: -3.99708939e-14 + art_sys_97: 2.06460254e-14 + art_sys_98: -9.10327766e-05 + art_sys_99: -7.41005279e-12 + art_sys_100: 1.53030128e-04 + art_sys_101: 1.57440157e-10 + art_sys_102: 2.63800562e-04 + art_sys_103: 1.12306103e-10 + art_sys_104: -1.11067091e-11 + art_sys_105: -4.35386613e-12 + art_sys_106: 3.42562657e-09 + art_sys_107: 4.76284697e-06 + art_sys_108: -7.04942309e-12 + art_sys_109: -2.73073644e-11 + art_sys_110: -3.36855140e-05 + art_sys_111: 7.19608142e-11 + art_sys_112: 6.87010248e-10 + art_sys_113: 1.14850565e-10 + art_sys_114: -1.44251768e-11 + art_sys_115: 5.54555689e-11 + art_sys_116: -5.16242533e-05 + art_sys_117: -5.40586215e-11 + art_sys_118: -1.44949375e-11 + art_sys_119: 3.23878744e-05 + art_sys_120: 1.21539130e-10 + art_sys_121: 7.37144160e-12 + art_sys_122: -3.48836411e-10 + art_sys_123: 1.72000553e-05 + art_sys_124: 7.10098502e-11 + art_sys_125: -8.60711737e-12 + art_sys_126: -1.57320888e-10 + art_sys_127: -7.39442374e-06 + art_sys_128: 5.80824244e-11 + art_sys_129: -2.47489078e-13 + art_sys_130: 3.11308840e-06 + art_sys_131: 5.84334991e-12 + art_sys_132: -2.76043547e-10 + art_sys_133: 1.14563104e-06 + art_sys_134: 9.55108391e-10 + art_sys_135: 1.25345818e-11 + art_sys_136: 6.29991531e-13 + art_sys_137: 4.09369899e-07 + art_sys_138: 1.96254025e-10 + art_sys_139: 1.31898922e-07 + art_sys_140: 9.54831847e-14 + art_sys_141: 8.15311610e-10 + art_sys_142: -1.28260499e-10 + art_sys_143: 4.15013111e-08 + art_sys_144: -1.29663212e-12 + art_sys_145: -1.46185509e-10 + art_sys_146: 1.43453631e-08 + art_sys_147: -3.46746033e-13 + art_sys_148: -2.80656337e-14 + art_sys_149: 6.85936845e-12 + art_sys_150: 1.87012263e-09 + art_sys_151: -2.47164627e-11 + art_sys_152: 1.09654828e-13 + art_sys_153: -2.00168622e-10 + art_sys_154: 1.14354335e-11 + art_sys_155: -8.10509327e-14 + art_sys_156: -0.0 + art_sys_157: -2.58050513e-11 art_sys_158: -0.0 - art_sys_159: 3.59021767e-10 - art_sys_160: 1.06641964e-11 - art_sys_161: 1.32048828e-10 - art_sys_162: 3.03854088e-12 - art_sys_163: -7.22931700e-12 - art_sys_164: -6.50547555e-12 - art_sys_165: -6.35158874e-14 - art_sys_166: 1.39675261e-20 - art_sys_167: 1.54315763e-20 - art_sys_168: -2.94380263e-21 - art_sys_169: 7.50314075e-22 - art_sys_170: 2.46506646e-22 - art_sys_171: -3.86520983e-22 - art_sys_172: 2.62365376e-21 - art_sys_173: -2.76186722e-22 - art_sys_174: -3.08006561e-23 - art_sys_175: -3.10189738e-26 - art_sys_176: -1.62018452e-23 - art_sys_177: -1.12870041e-24 - art_sys_178: 1.35180707e-24 - art_sys_179: 6.64250958e-25 - art_sys_180: 1.10721872e-23 - art_sys_181: -8.15803286e-26 - art_sys_182: -2.74384775e-24 - art_sys_183: -4.85269993e-26 - art_sys_184: -3.23048577e-29 - art_sys_185: -2.88682260e-28 + art_sys_159: -4.16868454e-12 + art_sys_160: -9.49819427e-13 + art_sys_161: 1.12223764e-12 + art_sys_162: 1.12223764e-12 + art_sys_163: 3.66354423e-13 + art_sys_164: 3.66354423e-13 + art_sys_165: -5.45677855e-27 + art_sys_166: 1.85007331e-27 + art_sys_167: 0.0 + art_sys_168: -5.66506694e-21 + art_sys_169: -5.20751047e-21 + art_sys_170: -2.16687730e-22 + art_sys_171: -2.66243223e-21 + art_sys_172: -4.02583973e-22 + art_sys_173: -1.59510586e-23 + art_sys_174: -9.52960470e-24 + art_sys_175: 2.47766821e-24 + art_sys_176: -2.94717874e-24 + art_sys_177: 6.90385724e-23 + art_sys_178: -3.07773891e-24 + art_sys_179: 2.20926850e-26 + art_sys_180: -9.90610700e-26 + art_sys_181: -7.03447358e-24 + art_sys_182: -4.38477877e-25 + art_sys_183: -9.51514065e-27 + art_sys_184: 3.91464843e-27 + art_sys_185: 1.11137944e-28 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -23834,167 +23834,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: 1.72685773e-16 - art_sys_26: -1.63984776e-15 - art_sys_27: -7.24560386e-15 - art_sys_28: -1.73365949e-33 - art_sys_29: 2.70072298e-33 - art_sys_30: 1.78684731e-14 - art_sys_31: -5.11476579e-13 - art_sys_32: 1.46347879e-12 - art_sys_33: -1.05153403e-12 - art_sys_34: -3.54319621e-30 - art_sys_35: 2.33061193e-30 - art_sys_36: 1.20530439e-29 - art_sys_37: 9.78102143e-31 - art_sys_38: 7.04828103e-12 - art_sys_39: 3.08403192e-29 - art_sys_40: -2.42620712e-29 - art_sys_41: -2.43103036e-29 - art_sys_42: -8.87140390e-27 - art_sys_43: -4.81022244e-10 - art_sys_44: 6.41675609e-10 - art_sys_45: -3.84238151e-09 - art_sys_46: 3.83925854e-26 - art_sys_47: 2.59968414e-26 - art_sys_48: 4.11330664e-22 - art_sys_49: 7.32283393e-14 - art_sys_50: 7.49964169e-15 - art_sys_51: 1.03318549e-15 - art_sys_52: 5.92134288e-16 - art_sys_53: -4.94725340e-15 - art_sys_54: -6.67143448e-15 - art_sys_55: 1.90505265e-09 - art_sys_56: 4.46553944e-08 - art_sys_57: 1.44342335e-19 - art_sys_58: -1.40276018e-14 - art_sys_59: -3.47512766e-14 - art_sys_60: 1.11113614e-18 - art_sys_61: -5.70870380e-18 - art_sys_62: -2.65979133e-19 - art_sys_63: 1.05098199e-07 - art_sys_64: 2.86562462e-23 - art_sys_65: 4.99172215e-15 - art_sys_66: -7.48806534e-15 - art_sys_67: -1.86330661e-18 - art_sys_68: -5.38398808e-07 - art_sys_69: 1.59571097e-07 - art_sys_70: -2.03388555e-17 - art_sys_71: -2.31926126e-19 - art_sys_72: -6.65516906e-19 - art_sys_73: 8.18767120e-14 - art_sys_74: 1.49613301e-14 - art_sys_75: -1.01502171e-14 - art_sys_76: -1.12891361e-14 - art_sys_77: 8.12410554e-16 - art_sys_78: -5.64883633e-07 - art_sys_79: 9.04227080e-16 - art_sys_80: 2.10726442e-12 - art_sys_81: 1.32412338e-15 - art_sys_82: 3.03100118e-16 - art_sys_83: -6.64371943e-14 - art_sys_84: 3.19015434e-16 - art_sys_85: -6.22513427e-16 - art_sys_86: -7.23458518e-13 - art_sys_87: -3.59382737e-18 - art_sys_88: -6.15822749e-13 - art_sys_89: 1.79334477e-13 - art_sys_90: -6.04261617e-18 - art_sys_91: -1.73874740e-05 - art_sys_92: 4.68018893e-17 - art_sys_93: -2.02631428e-16 - art_sys_94: -2.30329013e-15 - art_sys_95: 3.59214913e-05 - art_sys_96: 2.38992894e-12 - art_sys_97: -4.84916334e-05 - art_sys_98: 9.34899691e-14 - art_sys_99: 1.59895029e-17 - art_sys_100: 1.32292928e-04 - art_sys_101: -4.43468239e-12 - art_sys_102: 3.68862962e-12 - art_sys_103: -1.90086219e-04 - art_sys_104: -1.06109035e-15 - art_sys_105: -1.13395376e-13 - art_sys_106: 2.37193736e-10 - art_sys_107: -8.61831765e-11 - art_sys_108: 5.52070974e-12 - art_sys_109: 3.70331493e-11 - art_sys_110: 5.31962462e-06 - art_sys_111: 8.35666354e-11 - art_sys_112: 2.70059919e-05 - art_sys_113: -1.21606938e-11 - art_sys_114: -3.01023836e-10 - art_sys_115: 3.86734039e-05 - art_sys_116: -7.57891200e-11 - art_sys_117: 2.20361025e-10 - art_sys_118: 2.44407801e-05 - art_sys_119: -2.20783179e-10 - art_sys_120: -1.14542341e-11 - art_sys_121: -1.21698106e-05 - art_sys_122: -7.31655222e-11 - art_sys_123: 2.54249733e-11 - art_sys_124: 5.59019104e-06 - art_sys_125: 3.83239269e-10 - art_sys_126: 2.18501563e-06 - art_sys_127: 3.79815818e-11 - art_sys_128: 8.12033729e-07 - art_sys_129: -6.18080475e-11 - art_sys_130: 2.72023877e-07 - art_sys_131: 2.71511214e-10 - art_sys_132: -4.09680174e-10 - art_sys_133: 8.35609038e-08 - art_sys_134: 7.09086613e-13 - art_sys_135: -4.49338311e-10 - art_sys_136: -2.92187986e-08 - art_sys_137: -4.46404336e-14 - art_sys_138: 1.47830751e-14 - art_sys_139: 6.89571136e-11 - art_sys_140: 4.33116065e-09 - art_sys_141: 6.27302266e-10 - art_sys_142: -4.25110336e-11 - art_sys_143: -3.10320360e-14 - art_sys_144: -3.26896221e-14 - art_sys_145: -2.58597391e-13 - art_sys_146: 0.0 - art_sys_147: -3.68452391e-12 - art_sys_148: 3.79576018e-11 - art_sys_149: 3.79576018e-11 - art_sys_150: -7.44909221e-12 - art_sys_151: -7.44909221e-12 - art_sys_152: 3.69666435e-11 - art_sys_153: 1.78067514e-13 - art_sys_154: -3.63458998e-15 - art_sys_155: -7.29312885e-24 - art_sys_156: 7.93410970e-27 - art_sys_157: -6.19769802e-28 + art_sys_25: 7.89233709e-91 + art_sys_26: 4.13436690e-85 + art_sys_27: -2.59671981e-78 + art_sys_28: 1.55359138e-77 + art_sys_29: 5.96713662e-67 + art_sys_30: 4.84998139e-64 + art_sys_31: 2.26865146e-61 + art_sys_32: -2.71002641e-53 + art_sys_33: -8.12139960e-48 + art_sys_34: -8.18829970e-41 + art_sys_35: -5.74017190e-42 + art_sys_36: 1.72685773e-16 + art_sys_37: -1.63984776e-15 + art_sys_38: -7.24560386e-15 + art_sys_39: 1.78684731e-14 + art_sys_40: 5.11476579e-13 + art_sys_41: 1.46347879e-12 + art_sys_42: -1.05153403e-12 + art_sys_43: -7.04828103e-12 + art_sys_44: 4.81022244e-10 + art_sys_45: -6.41675609e-10 + art_sys_46: -3.84238151e-09 + art_sys_47: -7.66463838e-26 + art_sys_48: 3.64473402e-26 + art_sys_49: -3.44542651e-26 + art_sys_50: 1.90505265e-09 + art_sys_51: -4.46553944e-08 + art_sys_52: -9.15337865e-25 + art_sys_53: 1.84581022e-24 + art_sys_54: 1.01137632e-24 + art_sys_55: -9.18248847e-25 + art_sys_56: -5.89122134e-25 + art_sys_57: 1.05098200e-07 + art_sys_58: 5.38398827e-07 + art_sys_59: 7.64747559e-24 + art_sys_60: 4.69399048e-23 + art_sys_61: 1.59571097e-07 + art_sys_62: -8.54210285e-24 + art_sys_63: 1.06141145e-22 + art_sys_64: -7.44788485e-14 + art_sys_65: -1.16719708e-14 + art_sys_66: -8.31981777e-15 + art_sys_67: 3.69000784e-15 + art_sys_68: 3.42007265e-15 + art_sys_69: 2.25224629e-16 + art_sys_70: -9.32465251e-16 + art_sys_71: 1.87285589e-15 + art_sys_72: -5.42202429e-16 + art_sys_73: -8.75781201e-16 + art_sys_74: -5.64883630e-07 + art_sys_75: 1.70895366e-15 + art_sys_76: 9.68544300e-16 + art_sys_77: -6.59082277e-14 + art_sys_78: -1.95509154e-14 + art_sys_79: 7.48801954e-16 + art_sys_80: 3.26083930e-15 + art_sys_81: -8.50204157e-16 + art_sys_82: 7.84303896e-18 + art_sys_83: -1.34481337e-15 + art_sys_84: 1.08895482e-16 + art_sys_85: 1.12427550e-15 + art_sys_86: 1.73642391e-16 + art_sys_87: 6.92375860e-12 + art_sys_88: -5.31813061e-12 + art_sys_89: -4.31019401e-17 + art_sys_90: -5.08359921e-14 + art_sys_91: -4.42903701e-19 + art_sys_92: -9.23911550e-18 + art_sys_93: -2.58242032e-18 + art_sys_94: 1.79022216e-11 + art_sys_95: 1.73874760e-05 + art_sys_96: 3.65403208e-14 + art_sys_97: -1.88876709e-14 + art_sys_98: -3.59214557e-05 + art_sys_99: -2.17926341e-12 + art_sys_100: -4.84912837e-05 + art_sys_101: -5.08757283e-11 + art_sys_102: 1.32293647e-04 + art_sys_103: -3.39426328e-11 + art_sys_104: 4.66612031e-12 + art_sys_105: 7.80541416e-12 + art_sys_106: 1.71701370e-09 + art_sys_107: 1.90086170e-04 + art_sys_108: 1.26294409e-11 + art_sys_109: 4.89926477e-11 + art_sys_110: 5.31963548e-06 + art_sys_111: 3.91147305e-11 + art_sys_112: -1.02348510e-10 + art_sys_113: 5.77029967e-11 + art_sys_114: 2.67512532e-11 + art_sys_115: 2.01682983e-11 + art_sys_116: 2.70063001e-05 + art_sys_117: 1.02557415e-10 + art_sys_118: -5.52290733e-11 + art_sys_119: -3.86725571e-05 + art_sys_120: -3.62070040e-11 + art_sys_121: -1.34122858e-11 + art_sys_122: -1.22515267e-10 + art_sys_123: -2.44395783e-05 + art_sys_124: 4.27282950e-11 + art_sys_125: 1.70634925e-11 + art_sys_126: 2.01845552e-10 + art_sys_127: 1.21747763e-05 + art_sys_128: 1.31190321e-11 + art_sys_129: 6.58091864e-13 + art_sys_130: -5.58851144e-06 + art_sys_131: -1.20637554e-11 + art_sys_132: 1.30818474e-11 + art_sys_133: -2.17948041e-06 + art_sys_134: -1.15952067e-09 + art_sys_135: -2.71498030e-13 + art_sys_136: -1.38809822e-12 + art_sys_137: -8.12675003e-07 + art_sys_138: -2.50244222e-10 + art_sys_139: -2.69940236e-07 + art_sys_140: -1.59975903e-13 + art_sys_141: -1.61749251e-09 + art_sys_142: 1.35873333e-10 + art_sys_143: -8.61832818e-08 + art_sys_144: 2.23213253e-12 + art_sys_145: 2.09744315e-10 + art_sys_146: -3.02256807e-08 + art_sys_147: 7.27087567e-13 + art_sys_148: 5.72908472e-14 + art_sys_149: 2.32137593e-11 + art_sys_150: -4.00622395e-09 + art_sys_151: 2.08968151e-11 + art_sys_152: -2.49373269e-13 + art_sys_153: 4.27117215e-10 + art_sys_154: -1.81875326e-12 + art_sys_155: 1.73050853e-13 + art_sys_156: 0.0 + art_sys_157: 2.29283149e-11 art_sys_158: 0.0 - art_sys_159: -6.73496405e-10 - art_sys_160: -1.91739697e-11 - art_sys_161: -2.67524831e-10 - art_sys_162: -6.10628391e-12 - art_sys_163: 1.92329878e-11 - art_sys_164: 1.35497990e-11 - art_sys_165: 1.20200113e-13 - art_sys_166: -2.93188799e-20 - art_sys_167: -3.20858519e-20 - art_sys_168: 6.39268994e-21 - art_sys_169: -1.44963396e-21 - art_sys_170: -4.59285923e-22 - art_sys_171: 7.59074064e-22 - art_sys_172: -5.25747349e-21 - art_sys_173: 5.48369021e-22 - art_sys_174: 6.06319745e-23 - art_sys_175: 6.08000172e-26 - art_sys_176: 3.15134514e-23 - art_sys_177: 1.56549631e-24 - art_sys_178: -2.68349853e-24 - art_sys_179: -1.62328500e-24 - art_sys_180: -2.35523501e-23 - art_sys_181: 1.93245398e-25 - art_sys_182: 5.57500253e-24 - art_sys_183: 9.78494032e-26 - art_sys_184: 7.57278994e-29 - art_sys_185: 6.07068219e-28 + art_sys_159: 1.39554758e-12 + art_sys_160: 8.84906154e-13 + art_sys_161: -2.37679638e-12 + art_sys_162: -2.37679638e-12 + art_sys_163: -7.71964035e-14 + art_sys_164: -7.71964035e-14 + art_sys_165: 4.76728225e-27 + art_sys_166: -1.69666820e-27 + art_sys_167: -0.0 + art_sys_168: 5.61633857e-21 + art_sys_169: 1.09264676e-20 + art_sys_170: 3.91742637e-22 + art_sys_171: 5.02576354e-21 + art_sys_172: 8.01547387e-22 + art_sys_173: 2.64031018e-23 + art_sys_174: 1.53675018e-23 + art_sys_175: -5.18787643e-24 + art_sys_176: 6.04308707e-24 + art_sys_177: -1.37489135e-22 + art_sys_178: 5.58269931e-24 + art_sys_179: -4.60746087e-26 + art_sys_180: 3.26873333e-26 + art_sys_181: 1.37362230e-23 + art_sys_182: 9.33538768e-25 + art_sys_183: 1.96576854e-26 + art_sys_184: -8.01874028e-27 + art_sys_185: -2.31585245e-28 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -24125,167 +24125,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: 1.03774000e-17 - art_sys_26: -1.50695451e-16 - art_sys_27: -6.67817965e-16 - art_sys_28: -1.60065194e-34 - art_sys_29: 2.48337313e-34 - art_sys_30: 1.12660823e-15 - art_sys_31: -1.88515760e-14 - art_sys_32: 3.75752230e-13 - art_sys_33: 4.84528447e-13 - art_sys_34: -1.52988065e-30 - art_sys_35: -1.34539305e-30 - art_sys_36: 2.01942287e-31 - art_sys_37: -2.13532163e-31 - art_sys_38: -3.82553310e-13 - art_sys_39: -8.67984732e-31 - art_sys_40: 1.06419537e-30 - art_sys_41: 1.39395738e-30 - art_sys_42: -4.06179557e-28 - art_sys_43: -2.20535508e-11 - art_sys_44: -5.57666815e-11 - art_sys_45: 1.93101376e-10 - art_sys_46: -1.51211043e-27 - art_sys_47: -1.98707672e-27 - art_sys_48: -9.20869187e-23 - art_sys_49: -1.89125552e-13 - art_sys_50: -3.99230580e-16 - art_sys_51: 1.13874198e-14 - art_sys_52: -3.37289861e-15 - art_sys_53: 9.03937283e-15 - art_sys_54: 1.28767535e-14 - art_sys_55: -4.26537697e-10 - art_sys_56: -6.72284257e-09 - art_sys_57: -3.23215402e-20 - art_sys_58: 2.59007059e-14 - art_sys_59: 6.38741137e-14 - art_sys_60: -1.67280638e-19 - art_sys_61: 8.59438718e-19 - art_sys_62: 4.00428085e-20 - art_sys_63: -1.75762656e-08 - art_sys_64: -4.52660506e-24 - art_sys_65: -9.28094427e-15 - art_sys_66: 1.37788759e-14 - art_sys_67: 3.11644802e-19 - art_sys_68: -1.51304792e-07 - art_sys_69: 4.29765044e-07 - art_sys_70: 3.40176631e-18 - art_sys_71: 8.63865384e-21 - art_sys_72: -1.17677824e-19 - art_sys_73: 2.77370880e-14 - art_sys_74: 1.44075245e-14 - art_sys_75: 8.48997490e-15 - art_sys_76: 2.05825953e-14 - art_sys_77: 7.31396021e-16 - art_sys_78: 3.15990476e-07 - art_sys_79: 2.51987224e-15 - art_sys_80: 5.87924771e-13 - art_sys_81: 2.59235915e-16 - art_sys_82: -8.09701889e-16 - art_sys_83: 7.56876985e-15 - art_sys_84: -3.17476418e-16 - art_sys_85: -5.55752001e-16 - art_sys_86: 3.43453178e-12 - art_sys_87: 1.41328965e-17 - art_sys_88: -3.82696340e-13 - art_sys_89: -3.16701148e-13 - art_sys_90: -1.64413954e-17 - art_sys_91: -4.94320990e-06 - art_sys_92: -1.64680060e-17 - art_sys_93: -4.36126959e-17 - art_sys_94: 1.46774759e-15 - art_sys_95: -7.23811444e-06 - art_sys_96: -2.84925528e-12 - art_sys_97: -3.50741497e-05 - art_sys_98: 2.55568704e-14 - art_sys_99: 3.12406642e-18 - art_sys_100: -2.73189373e-05 - art_sys_101: -1.30423649e-12 - art_sys_102: 1.16446874e-12 - art_sys_103: -1.00561548e-04 - art_sys_104: 9.22805719e-16 - art_sys_105: 1.84434571e-13 - art_sys_106: -6.21482772e-11 - art_sys_107: 1.22197203e-10 - art_sys_108: -7.91093148e-12 - art_sys_109: -5.89179035e-11 - art_sys_110: 1.42770320e-04 - art_sys_111: 2.29077782e-11 - art_sys_112: -6.17417810e-06 - art_sys_113: 2.12182997e-11 - art_sys_114: -5.22844248e-11 - art_sys_115: -2.05905209e-05 - art_sys_116: -2.55696039e-09 - art_sys_117: -7.36933019e-11 - art_sys_118: -2.91557745e-05 - art_sys_119: 8.54619577e-11 - art_sys_120: -1.98827389e-10 - art_sys_121: 1.72608526e-05 - art_sys_122: -3.36089363e-10 - art_sys_123: 1.71579730e-10 - art_sys_124: -9.14499019e-06 - art_sys_125: 5.16480747e-10 - art_sys_126: -3.90059504e-06 - art_sys_127: -7.39782889e-11 - art_sys_128: -1.53288267e-06 - art_sys_129: 2.71944812e-10 - art_sys_130: -5.36673840e-07 - art_sys_131: -6.48795267e-10 - art_sys_132: 4.71715148e-10 - art_sys_133: -1.69718136e-07 - art_sys_134: -1.59754384e-12 - art_sys_135: 4.60741636e-10 - art_sys_136: 6.03978999e-08 - art_sys_137: 6.23368233e-14 - art_sys_138: 4.57186967e-15 - art_sys_139: -1.44700659e-10 - art_sys_140: -9.12825535e-09 - art_sys_141: -1.07439267e-09 - art_sys_142: 2.27656695e-10 - art_sys_143: 7.31326138e-14 - art_sys_144: 6.90319912e-14 - art_sys_145: 5.47733778e-13 - art_sys_146: -0.0 - art_sys_147: 6.41586899e-12 - art_sys_148: -6.11769959e-11 - art_sys_149: -6.11769959e-11 - art_sys_150: 6.01034321e-12 - art_sys_151: 6.01034321e-12 - art_sys_152: -4.39952581e-11 - art_sys_153: -5.70947443e-13 - art_sys_154: 6.03171016e-15 - art_sys_155: 8.28703425e-24 - art_sys_156: -3.20885295e-26 - art_sys_157: -5.06214336e-27 + art_sys_25: 4.73841062e-92 + art_sys_26: 2.48219606e-86 + art_sys_27: -1.55902169e-79 + art_sys_28: 9.32747019e-79 + art_sys_29: 3.58255650e-68 + art_sys_30: 2.91183753e-65 + art_sys_31: 1.36205563e-62 + art_sys_32: -1.62704885e-54 + art_sys_33: -4.87593545e-49 + art_sys_34: -4.91610100e-42 + art_sys_35: -3.44629115e-43 + art_sys_36: 1.03774000e-17 + art_sys_37: -1.50695451e-16 + art_sys_38: -6.67817965e-16 + art_sys_39: 1.12660823e-15 + art_sys_40: 1.88515760e-14 + art_sys_41: 3.75752230e-13 + art_sys_42: 4.84528447e-13 + art_sys_43: 3.82553310e-13 + art_sys_44: 2.20535508e-11 + art_sys_45: 5.57666815e-11 + art_sys_46: 1.93101376e-10 + art_sys_47: 2.96291571e-27 + art_sys_48: -9.89101595e-27 + art_sys_49: 3.77880873e-27 + art_sys_50: -4.26537697e-10 + art_sys_51: 6.72284257e-09 + art_sys_52: 1.41863847e-25 + art_sys_53: -2.74657609e-25 + art_sys_54: -1.43457268e-25 + art_sys_55: 1.43303777e-25 + art_sys_56: 5.19188818e-26 + art_sys_57: -1.75762656e-08 + art_sys_58: 1.51304798e-07 + art_sys_59: 1.44037373e-24 + art_sys_60: 1.71601827e-23 + art_sys_61: 4.29765044e-07 + art_sys_62: -3.28152168e-25 + art_sys_63: -4.02272924e-23 + art_sys_64: 1.51187362e-13 + art_sys_65: -2.51792933e-14 + art_sys_66: -1.02408559e-14 + art_sys_67: -6.96024133e-15 + art_sys_68: -7.47819335e-15 + art_sys_69: 2.13161120e-15 + art_sys_70: 3.36605155e-15 + art_sys_71: -1.85290463e-15 + art_sys_72: 6.55061040e-16 + art_sys_73: 1.33606342e-15 + art_sys_74: 3.15990475e-07 + art_sys_75: -2.71022821e-15 + art_sys_76: 2.85016000e-14 + art_sys_77: -1.36661893e-14 + art_sys_78: -6.28400835e-15 + art_sys_79: -1.23857693e-15 + art_sys_80: -1.89022890e-16 + art_sys_81: 1.40114038e-15 + art_sys_82: -4.38607623e-18 + art_sys_83: 1.75084367e-16 + art_sys_84: -2.79427365e-16 + art_sys_85: 7.56799702e-16 + art_sys_86: 7.56829732e-17 + art_sys_87: 5.02762158e-12 + art_sys_88: -2.11203283e-12 + art_sys_89: 2.66466429e-17 + art_sys_90: -4.78296164e-13 + art_sys_91: 2.48790819e-19 + art_sys_92: 1.07128870e-17 + art_sys_93: -2.22662412e-17 + art_sys_94: -9.52373410e-12 + art_sys_95: 4.94321084e-06 + art_sys_96: 1.03884658e-14 + art_sys_97: -5.36885708e-15 + art_sys_98: 7.23814081e-06 + art_sys_99: 6.91840861e-13 + art_sys_100: -3.50739343e-05 + art_sys_101: -3.62923581e-11 + art_sys_102: -2.73190850e-05 + art_sys_103: -2.53942070e-11 + art_sys_104: 2.21666006e-12 + art_sys_105: -1.27328978e-11 + art_sys_106: -3.54841761e-10 + art_sys_107: 1.00561125e-04 + art_sys_108: -2.05758189e-11 + art_sys_109: -8.00729567e-11 + art_sys_110: 1.42775000e-04 + art_sys_111: 4.36522414e-14 + art_sys_112: -2.91246379e-09 + art_sys_113: -1.18356764e-11 + art_sys_114: -4.60494630e-11 + art_sys_115: -3.14082414e-12 + art_sys_116: -6.17435191e-06 + art_sys_117: -1.82432141e-10 + art_sys_118: -2.56801916e-10 + art_sys_119: 2.05900867e-05 + art_sys_120: -3.78837754e-10 + art_sys_121: 2.24698110e-11 + art_sys_122: 3.58244286e-10 + art_sys_123: 2.91543351e-05 + art_sys_124: -2.15970045e-11 + art_sys_125: -3.22426007e-11 + art_sys_126: -9.66571893e-11 + art_sys_127: -1.72683586e-05 + art_sys_128: -1.65109773e-10 + art_sys_129: -1.66504990e-12 + art_sys_130: 9.14293439e-06 + art_sys_131: 2.42487561e-11 + art_sys_132: 1.32725136e-09 + art_sys_133: 3.89194570e-06 + art_sys_134: 6.58414520e-10 + art_sys_135: -6.40202353e-11 + art_sys_136: 3.04823772e-12 + art_sys_137: 1.53437778e-06 + art_sys_138: 2.87720901e-10 + art_sys_139: 5.33409086e-07 + art_sys_140: 2.20621052e-13 + art_sys_141: 3.08547305e-09 + art_sys_142: -1.42564915e-10 + art_sys_143: 1.73933222e-07 + art_sys_144: -3.43586650e-12 + art_sys_145: -1.34976964e-10 + art_sys_146: 6.22285131e-08 + art_sys_147: -1.48648834e-12 + art_sys_148: -1.11941779e-13 + art_sys_149: -5.98862417e-11 + art_sys_150: 8.44708176e-09 + art_sys_151: 2.88832517e-11 + art_sys_152: 5.69809847e-13 + art_sys_153: -9.03693163e-10 + art_sys_154: -4.84634231e-11 + art_sys_155: -3.49233298e-13 + art_sys_156: -0.0 + art_sys_157: -1.00363596e-11 art_sys_158: -0.0 - art_sys_159: 1.17837571e-09 - art_sys_160: 3.09179935e-11 - art_sys_161: 5.21047988e-10 - art_sys_162: 1.17766994e-11 - art_sys_163: -4.91973374e-11 - art_sys_164: -2.75225030e-11 - art_sys_165: -2.16792348e-13 - art_sys_166: 6.05373610e-20 - art_sys_167: 6.55478394e-20 - art_sys_168: -1.37455975e-20 - art_sys_169: 2.76366913e-21 - art_sys_170: 8.14314269e-22 - art_sys_171: -1.42520216e-21 - art_sys_172: 1.00738814e-20 - art_sys_173: -1.03763113e-21 - art_sys_174: -1.13901538e-22 - art_sys_175: -1.15180360e-25 - art_sys_176: -5.74878419e-23 - art_sys_177: -1.14790099e-24 - art_sys_178: 5.11861921e-24 - art_sys_179: 3.91528712e-24 - art_sys_180: 4.90065872e-23 - art_sys_181: -4.54850545e-25 - art_sys_182: -1.08947067e-23 - art_sys_183: -1.89426182e-25 - art_sys_184: -1.72566040e-28 - art_sys_185: -1.24397096e-27 + art_sys_159: 1.32480666e-11 + art_sys_160: -1.50847924e-13 + art_sys_161: 4.80505655e-12 + art_sys_162: 4.80505655e-12 + art_sys_163: -1.41960204e-12 + art_sys_164: -1.41960204e-12 + art_sys_165: 5.66606805e-27 + art_sys_166: -1.58122750e-27 + art_sys_167: -0.0 + art_sys_168: -1.14552162e-20 + art_sys_169: -2.24301218e-20 + art_sys_170: 3.46488891e-24 + art_sys_171: -8.85368558e-21 + art_sys_172: -1.52798896e-21 + art_sys_173: -3.55123416e-23 + art_sys_174: -1.90484924e-23 + art_sys_175: 1.06092130e-23 + art_sys_176: -1.19805479e-23 + art_sys_177: 2.61751663e-22 + art_sys_178: -9.28845062e-24 + art_sys_179: 8.76245926e-26 + art_sys_180: 3.21379707e-25 + art_sys_181: -2.54320694e-23 + art_sys_182: -1.96924302e-24 + art_sys_183: -3.95408410e-26 + art_sys_184: 1.58386045e-26 + art_sys_185: 4.63138344e-28 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -24416,167 +24416,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: 5.81616300e-19 - art_sys_26: -1.25325767e-17 - art_sys_27: -5.50202164e-17 - art_sys_28: -1.31398696e-35 - art_sys_29: 2.04229255e-35 - art_sys_30: 4.00719425e-17 - art_sys_31: 4.07530615e-15 - art_sys_32: 5.43926034e-14 - art_sys_33: 1.24253770e-13 - art_sys_34: -2.62826255e-31 - art_sys_35: -3.35126819e-31 - art_sys_36: -1.72216190e-31 - art_sys_37: -6.39448814e-32 - art_sys_38: -2.12998392e-13 - art_sys_39: -7.60513304e-31 - art_sys_40: 6.79742929e-31 - art_sys_41: 7.50837133e-31 - art_sys_42: 1.00816280e-28 - art_sys_43: 5.46455676e-12 - art_sys_44: -1.91790643e-11 - art_sys_45: 1.20839044e-10 - art_sys_46: -1.06524720e-27 - art_sys_47: -9.62079656e-28 - art_sys_48: -7.31337391e-23 - art_sys_49: -1.43020864e-13 - art_sys_50: 1.02550432e-14 - art_sys_51: -1.11912610e-14 - art_sys_52: 3.98960961e-15 - art_sys_53: -1.07719556e-14 - art_sys_54: -2.28396387e-14 - art_sys_55: -3.38750858e-10 - art_sys_56: -2.24719092e-09 - art_sys_57: -2.56726902e-20 - art_sys_58: -4.41170871e-14 - art_sys_59: -1.07793765e-13 - art_sys_60: -5.59153658e-20 - art_sys_61: 2.87273609e-19 - art_sys_62: 1.33848266e-20 - art_sys_63: -6.78083609e-09 - art_sys_64: -1.53275621e-24 - art_sys_65: 1.55411423e-14 - art_sys_66: -2.33572715e-14 - art_sys_67: 1.20225991e-19 - art_sys_68: -2.01177895e-08 - art_sys_69: 9.39930782e-08 - art_sys_70: 1.31232675e-18 - art_sys_71: 8.11130809e-21 - art_sys_72: -9.13405539e-21 - art_sys_73: -4.24583710e-14 - art_sys_74: 3.73921599e-14 - art_sys_75: -2.99263427e-15 - art_sys_76: -3.47739187e-14 - art_sys_77: 1.48057819e-16 - art_sys_78: 8.99524311e-08 - art_sys_79: 3.98344695e-15 - art_sys_80: -1.13282567e-13 - art_sys_81: 1.65492934e-15 - art_sys_82: 6.92106017e-18 - art_sys_83: 3.29877813e-14 - art_sys_84: -1.13890504e-16 - art_sys_85: 2.50527200e-16 - art_sys_86: 2.04058476e-12 - art_sys_87: 3.32884999e-18 - art_sys_88: 2.10895126e-12 - art_sys_89: 1.84110051e-13 - art_sys_90: -3.59607896e-18 - art_sys_91: 1.07181004e-06 - art_sys_92: -5.21870583e-18 - art_sys_93: -4.52217061e-18 - art_sys_94: 3.87519538e-16 - art_sys_95: -5.24922712e-06 - art_sys_96: 1.57762874e-12 - art_sys_97: 1.61443963e-06 - art_sys_98: -5.92432798e-15 - art_sys_99: -1.30002701e-18 - art_sys_100: -2.81946264e-05 - art_sys_101: 2.65804435e-13 - art_sys_102: -2.07232751e-13 - art_sys_103: 1.81358438e-05 - art_sys_104: 2.73172607e-16 - art_sys_105: 4.65632512e-14 - art_sys_106: -5.30494743e-11 - art_sys_107: -1.49842426e-10 - art_sys_108: 9.82090267e-12 - art_sys_109: 8.12902690e-11 - art_sys_110: 7.25252497e-05 - art_sys_111: -1.01244911e-11 - art_sys_112: -1.07434282e-04 - art_sys_113: -3.41463788e-11 - art_sys_114: 4.17364391e-11 - art_sys_115: 5.70175787e-06 - art_sys_116: -1.30298886e-09 - art_sys_117: -5.04216658e-11 - art_sys_118: 1.64362451e-05 - art_sys_119: 6.99958520e-11 - art_sys_120: -3.51176997e-11 - art_sys_121: -2.11830818e-05 - art_sys_122: -1.52924682e-10 - art_sys_123: 6.75210559e-11 - art_sys_124: 1.31969219e-05 - art_sys_125: -5.63302787e-10 - art_sys_126: 6.49470018e-06 - art_sys_127: 1.49403522e-11 - art_sys_128: 2.77840539e-06 - art_sys_129: 1.74297557e-11 - art_sys_130: 1.03133081e-06 - art_sys_131: 1.42248716e-09 - art_sys_132: -3.20926916e-10 - art_sys_133: 3.40689814e-07 - art_sys_134: 3.48852762e-12 - art_sys_135: -1.34197688e-10 - art_sys_136: -1.24359811e-07 - art_sys_137: -6.01531048e-14 - art_sys_138: -8.47482626e-16 - art_sys_139: 2.76689316e-10 - art_sys_140: 1.92568126e-08 - art_sys_141: 1.81528319e-09 - art_sys_142: -7.62150814e-10 - art_sys_143: -1.71793823e-13 - art_sys_144: -1.44153430e-13 - art_sys_145: -1.17086258e-12 - art_sys_146: 0.0 - art_sys_147: -1.06315039e-11 - art_sys_148: 9.33494458e-11 - art_sys_149: 9.33494458e-11 - art_sys_150: 2.88978598e-12 - art_sys_151: 2.88978598e-12 - art_sys_152: 4.80593629e-11 - art_sys_153: 7.16777073e-13 - art_sys_154: -9.51289365e-15 - art_sys_155: -8.59673561e-24 - art_sys_156: 8.00533857e-26 - art_sys_157: 2.17448577e-26 + art_sys_25: 2.65224624e-93 + art_sys_26: 1.38936781e-87 + art_sys_27: -8.72636369e-81 + art_sys_28: 5.22089575e-80 + art_sys_29: 2.00527620e-69 + art_sys_30: 1.62985245e-66 + art_sys_31: 7.62387905e-64 + art_sys_32: -9.10713433e-56 + art_sys_33: -2.72922348e-50 + art_sys_34: -2.75170548e-43 + art_sys_35: -1.92900395e-44 + art_sys_36: 5.81616300e-19 + art_sys_37: -1.25325767e-17 + art_sys_38: -5.50202164e-17 + art_sys_39: 4.00719425e-17 + art_sys_40: -4.07530615e-15 + art_sys_41: 5.43926034e-14 + art_sys_42: 1.24253770e-13 + art_sys_43: 2.12998392e-13 + art_sys_44: -5.46455676e-12 + art_sys_45: 1.91790643e-11 + art_sys_46: 1.20839044e-10 + art_sys_47: 2.25480066e-27 + art_sys_48: -4.72145334e-27 + art_sys_49: 1.56336499e-27 + art_sys_50: -3.38750858e-10 + art_sys_51: 2.24719092e-09 + art_sys_52: 5.01355986e-26 + art_sys_53: -9.16194658e-26 + art_sys_54: -4.72197929e-26 + art_sys_55: 5.26226641e-26 + art_sys_56: 9.96433310e-27 + art_sys_57: -6.78083609e-09 + art_sys_58: 2.01177902e-08 + art_sys_59: 1.18386178e-25 + art_sys_60: 4.77608445e-25 + art_sys_61: 9.39930782e-08 + art_sys_62: 1.58259131e-25 + art_sys_63: -1.23916756e-23 + art_sys_64: 4.28511789e-14 + art_sys_65: 6.17809965e-15 + art_sys_66: -1.49316967e-14 + art_sys_67: 8.45205255e-15 + art_sys_68: 1.25332170e-14 + art_sys_69: -2.75520655e-15 + art_sys_70: -8.56060287e-15 + art_sys_71: -1.62733738e-15 + art_sys_72: -3.76296273e-16 + art_sys_73: -1.27135597e-15 + art_sys_74: 8.99524307e-08 + art_sys_75: 3.30723466e-15 + art_sys_76: 9.17379841e-15 + art_sys_77: 4.74085439e-14 + art_sys_78: 1.88979932e-16 + art_sys_79: 1.55706416e-15 + art_sys_80: 1.62999625e-15 + art_sys_81: -1.81119989e-15 + art_sys_82: -1.24878184e-18 + art_sys_83: -1.26690725e-15 + art_sys_84: 3.63333153e-16 + art_sys_85: -2.07424411e-16 + art_sys_86: -1.65142240e-16 + art_sys_87: -2.28788506e-13 + art_sys_88: 8.61538842e-13 + art_sys_89: -1.07562263e-17 + art_sys_90: -2.30049424e-13 + art_sys_91: 7.06719582e-20 + art_sys_92: -6.37212087e-19 + art_sys_93: -2.73542726e-17 + art_sys_94: 2.62300659e-12 + art_sys_95: -1.07181009e-06 + art_sys_96: -2.25243357e-15 + art_sys_97: 1.16438449e-15 + art_sys_98: 5.24922603e-06 + art_sys_99: 3.62408145e-13 + art_sys_100: 1.61442107e-06 + art_sys_101: 1.75557473e-12 + art_sys_102: -2.81947796e-05 + art_sys_103: 1.02715142e-12 + art_sys_104: -5.40501602e-14 + art_sys_105: 1.83431456e-11 + art_sys_106: -3.66011028e-10 + art_sys_107: -1.81360458e-05 + art_sys_108: 2.96183379e-11 + art_sys_109: 1.15331956e-10 + art_sys_110: 7.25276848e-05 + art_sys_111: -6.06416998e-12 + art_sys_112: -1.48194235e-09 + art_sys_113: -1.22849860e-11 + art_sys_114: 7.24399389e-11 + art_sys_115: -3.46745201e-12 + art_sys_116: -1.07434083e-04 + art_sys_117: 3.01920170e-10 + art_sys_118: -1.24740136e-10 + art_sys_119: -5.70176402e-06 + art_sys_120: -1.26000594e-10 + art_sys_121: -3.34388171e-11 + art_sys_122: 1.95718728e-10 + art_sys_123: -1.64354390e-05 + art_sys_124: -2.73157179e-11 + art_sys_125: 5.85803055e-11 + art_sys_126: 9.45133991e-11 + art_sys_127: 2.11922738e-05 + art_sys_128: -5.41768593e-11 + art_sys_129: 3.95662541e-12 + art_sys_130: -1.31950167e-05 + art_sys_131: -4.83593865e-11 + art_sys_132: 6.56109094e-10 + art_sys_133: -6.48209816e-06 + art_sys_134: -2.30579609e-10 + art_sys_135: -5.94333903e-11 + art_sys_136: -6.93910228e-12 + art_sys_137: -2.78128941e-06 + art_sys_138: -8.03193713e-11 + art_sys_139: -1.02689308e-06 + art_sys_140: -1.78860804e-13 + art_sys_141: -5.73641598e-09 + art_sys_142: -2.10155737e-11 + art_sys_143: -3.46905743e-07 + art_sys_144: 4.72152240e-12 + art_sys_145: 1.54103312e-10 + art_sys_146: -1.27538719e-07 + art_sys_147: 3.02157205e-12 + art_sys_148: 2.14368440e-13 + art_sys_149: 1.73327032e-10 + art_sys_150: -1.79072588e-08 + art_sys_151: -1.87398531e-10 + art_sys_152: -1.30941413e-12 + art_sys_153: 1.96728442e-09 + art_sys_154: -2.46147816e-11 + art_sys_155: 7.09350198e-13 + art_sys_156: 0.0 + art_sys_157: -1.97116528e-11 art_sys_158: 0.0 - art_sys_159: -1.90305557e-09 - art_sys_160: -4.23624426e-11 - art_sys_161: -9.88253611e-10 - art_sys_162: -2.21198680e-11 - art_sys_163: 1.20361416e-10 - art_sys_164: 5.54426580e-11 - art_sys_165: 3.91875316e-13 - art_sys_166: -1.26345551e-19 - art_sys_167: -1.35793152e-19 - art_sys_168: 3.00643963e-20 - art_sys_169: -5.27807218e-21 - art_sys_170: -1.46460825e-21 - art_sys_171: 2.61660646e-21 - art_sys_172: -1.86591149e-20 - art_sys_173: 1.88234984e-21 - art_sys_174: 2.04303002e-22 - art_sys_175: 2.20612447e-25 - art_sys_176: 9.85592448e-23 - art_sys_177: -2.21272975e-24 - art_sys_178: -9.67673752e-24 - art_sys_179: -9.28523575e-24 - art_sys_180: -1.01417742e-22 - art_sys_181: 1.07113140e-24 - art_sys_182: 2.07311182e-23 - art_sys_183: 3.56540573e-25 - art_sys_184: 3.69762901e-28 - art_sys_185: 2.52378592e-27 + art_sys_159: -5.02613081e-11 + art_sys_160: -1.66727443e-12 + art_sys_161: -9.68763434e-12 + art_sys_162: -9.68763434e-12 + art_sys_163: 5.37644883e-12 + art_sys_164: 5.37644883e-12 + art_sys_165: -3.58411525e-26 + art_sys_166: 1.12044416e-26 + art_sys_167: 0.0 + art_sys_168: 6.63580064e-20 + art_sys_169: 4.59419698e-20 + art_sys_170: 7.49626016e-22 + art_sys_171: 1.44545725e-20 + art_sys_172: 2.81761218e-21 + art_sys_173: 2.47907592e-23 + art_sys_174: 4.56568468e-24 + art_sys_175: -2.17622164e-23 + art_sys_176: 2.30660273e-23 + art_sys_177: -4.79437768e-22 + art_sys_178: 1.42322737e-23 + art_sys_179: -1.67367225e-25 + art_sys_180: -1.22584403e-24 + art_sys_181: 4.48198633e-23 + art_sys_182: 4.25401855e-24 + art_sys_183: 7.86770087e-26 + art_sys_184: -3.05419277e-26 + art_sys_185: -9.15595620e-28 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -24707,167 +24707,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: 3.31485043e-20 - art_sys_26: -1.00060269e-18 - art_sys_27: -4.25850607e-18 - art_sys_28: -1.00372269e-36 - art_sys_29: 1.57758454e-36 - art_sys_30: -8.70347860e-19 - art_sys_31: 9.29308083e-16 - art_sys_32: 5.81596334e-15 - art_sys_33: 1.74778628e-14 - art_sys_34: -3.12324581e-32 - art_sys_35: -4.67323990e-32 - art_sys_36: -3.40994453e-32 - art_sys_37: -9.38913057e-33 - art_sys_38: -3.46667439e-14 - art_sys_39: -1.29064588e-31 - art_sys_40: 1.12420367e-31 - art_sys_41: 1.21848731e-31 - art_sys_42: 2.59783317e-29 - art_sys_43: 1.40762252e-12 - art_sys_44: -2.27740325e-12 - art_sys_45: 1.96665448e-11 - art_sys_46: -1.72657857e-28 - art_sys_47: -1.49169163e-28 - art_sys_48: -1.51676706e-23 - art_sys_49: 4.84493002e-14 - art_sys_50: 3.30164646e-14 - art_sys_51: -3.70089781e-14 - art_sys_52: -2.65376976e-14 - art_sys_53: 9.43780218e-15 - art_sys_54: 3.88843821e-14 - art_sys_55: -7.02560566e-11 - art_sys_56: -3.01482438e-10 - art_sys_57: -5.32462713e-21 - art_sys_58: 7.46206680e-14 - art_sys_59: 1.72445962e-13 - art_sys_60: -7.50157393e-21 - art_sys_61: 3.85400179e-20 - art_sys_62: 1.79570593e-21 - art_sys_63: -9.32691868e-10 - art_sys_64: -2.06456366e-25 - art_sys_65: -2.47832219e-14 - art_sys_66: 3.70537336e-14 - art_sys_67: 1.65365324e-20 - art_sys_68: -1.76530863e-09 - art_sys_69: 8.30286157e-09 - art_sys_70: 1.80506336e-19 - art_sys_71: 1.24134595e-21 - art_sys_72: -2.22669270e-22 - art_sys_73: 5.59581659e-14 - art_sys_74: 7.56902512e-15 - art_sys_75: -9.85364369e-15 - art_sys_76: 5.50408299e-14 - art_sys_77: 6.92351565e-18 - art_sys_78: 2.18801968e-09 - art_sys_79: -2.67206379e-17 - art_sys_80: -9.72809748e-14 - art_sys_81: -9.25018889e-16 - art_sys_82: -1.08060065e-15 - art_sys_83: -2.71870974e-14 - art_sys_84: -9.09371030e-16 - art_sys_85: 1.36777769e-16 - art_sys_86: -2.69391983e-13 - art_sys_87: 2.94221545e-19 - art_sys_88: 1.23871145e-12 - art_sys_89: -4.00714978e-13 - art_sys_90: -3.21062976e-19 - art_sys_91: 5.91312365e-07 - art_sys_92: -1.44455805e-20 - art_sys_93: -3.94829155e-19 - art_sys_94: 2.52032178e-18 - art_sys_95: -5.19877176e-08 - art_sys_96: -4.49073112e-13 - art_sys_97: 4.33809975e-06 - art_sys_98: -3.11971772e-15 - art_sys_99: -5.68288119e-19 - art_sys_100: -2.86977268e-07 - art_sys_101: 1.53727458e-13 - art_sys_102: -1.33197921e-13 - art_sys_103: 2.05761297e-05 - art_sys_104: -4.31975850e-17 - art_sys_105: -1.37252573e-14 - art_sys_106: 7.06013434e-13 - art_sys_107: 8.60162571e-11 - art_sys_108: -6.22865299e-12 - art_sys_109: -9.22419282e-11 - art_sys_110: -1.40624756e-05 - art_sys_111: -3.96429070e-12 - art_sys_112: -5.29032672e-05 - art_sys_113: 4.83533322e-11 - art_sys_114: 1.14629202e-11 - art_sys_115: 8.04895262e-05 - art_sys_116: 2.52548611e-10 - art_sys_117: 2.14380780e-12 - art_sys_118: -4.63307177e-06 - art_sys_119: -2.56604619e-12 - art_sys_120: 7.42666661e-11 - art_sys_121: 1.21711905e-05 - art_sys_122: 3.66607138e-11 - art_sys_123: 2.86358478e-13 - art_sys_124: -1.62146662e-05 - art_sys_125: 3.19719097e-09 - art_sys_126: -9.45074287e-06 - art_sys_127: -3.90151411e-10 - art_sys_128: -4.65631288e-06 - art_sys_129: 1.25706479e-10 - art_sys_130: -1.88919171e-06 - art_sys_131: -2.92223466e-09 - art_sys_132: 3.06438796e-10 - art_sys_133: -6.60676020e-07 - art_sys_134: -7.38581898e-12 - art_sys_135: -3.32540104e-10 - art_sys_136: 2.50991706e-07 - art_sys_137: -4.23553810e-14 - art_sys_138: -5.27407034e-16 - art_sys_139: -5.89283722e-10 - art_sys_140: -4.01296565e-08 - art_sys_141: -2.79162433e-09 - art_sys_142: 2.22007835e-09 - art_sys_143: 3.99711945e-13 - art_sys_144: 2.95650784e-13 - art_sys_145: 2.48194246e-12 - art_sys_146: -0.0 - art_sys_147: 1.59718008e-11 - art_sys_148: -1.23079255e-10 - art_sys_149: -1.23079255e-10 - art_sys_150: -4.00807592e-11 - art_sys_151: -4.00807592e-11 - art_sys_152: -2.86067707e-11 - art_sys_153: 9.57814143e-13 - art_sys_154: 1.17901688e-14 - art_sys_155: 5.57392177e-24 - art_sys_156: -2.01288395e-25 - art_sys_157: -4.69168686e-26 + art_sys_25: 1.50918737e-94 + art_sys_26: 7.90581325e-89 + art_sys_27: -4.96549591e-82 + art_sys_28: 2.97080633e-81 + art_sys_29: 1.14104696e-70 + art_sys_30: 9.27422462e-68 + art_sys_31: 4.33815752e-65 + art_sys_32: -5.18216292e-57 + art_sys_33: -1.55298914e-51 + art_sys_34: -1.56578190e-44 + art_sys_35: -1.09764635e-45 + art_sys_36: 3.31485043e-20 + art_sys_37: -1.00060269e-18 + art_sys_38: -4.25850607e-18 + art_sys_39: -8.70347860e-19 + art_sys_40: -9.29308083e-16 + art_sys_41: 5.81596334e-15 + art_sys_42: 1.74778628e-14 + art_sys_43: 3.46667439e-14 + art_sys_44: -1.40762252e-12 + art_sys_45: 2.27740325e-12 + art_sys_46: 1.96665448e-11 + art_sys_47: 3.79895402e-28 + art_sys_48: -1.49475631e-27 + art_sys_49: 2.30545558e-28 + art_sys_50: -7.02560566e-11 + art_sys_51: 3.01482438e-10 + art_sys_52: 7.08109272e-27 + art_sys_53: -1.22196249e-26 + art_sys_54: -5.63349220e-27 + art_sys_55: 7.67212613e-27 + art_sys_56: 4.46030338e-27 + art_sys_57: -9.32691868e-10 + art_sys_58: 1.76530870e-09 + art_sys_59: 4.79775969e-27 + art_sys_60: 2.45590531e-25 + art_sys_61: 8.30286157e-09 + art_sys_62: 1.25642753e-26 + art_sys_63: -3.08013940e-25 + art_sys_64: 5.36880665e-14 + art_sys_65: 2.26663082e-14 + art_sys_66: 2.52638268e-14 + art_sys_67: -1.26236676e-14 + art_sys_68: -2.20153017e-14 + art_sys_69: 5.28652407e-15 + art_sys_70: 1.53156184e-14 + art_sys_71: 8.98392726e-15 + art_sys_72: -1.65029604e-16 + art_sys_73: 7.80984748e-16 + art_sys_74: 2.18801966e-09 + art_sys_75: -3.64450959e-15 + art_sys_76: 5.05142907e-14 + art_sys_77: -1.72843010e-15 + art_sys_78: -2.46160376e-15 + art_sys_79: -1.79490411e-15 + art_sys_80: -2.25234698e-15 + art_sys_81: 2.18812793e-15 + art_sys_82: -3.04261040e-20 + art_sys_83: -1.09663706e-16 + art_sys_84: -6.23056068e-17 + art_sys_85: 8.30427994e-16 + art_sys_86: 3.97591736e-17 + art_sys_87: -6.19398328e-13 + art_sys_88: 5.07518584e-13 + art_sys_89: -3.24388049e-17 + art_sys_90: 5.09150025e-14 + art_sys_91: 1.66553291e-21 + art_sys_92: 7.08682669e-18 + art_sys_93: -1.43136867e-17 + art_sys_94: 3.72381111e-11 + art_sys_95: -5.91312458e-07 + art_sys_96: -1.24266205e-15 + art_sys_97: 6.42300727e-16 + art_sys_98: 5.19844852e-08 + art_sys_99: -1.37858165e-14 + art_sys_100: 4.33807199e-06 + art_sys_101: 4.50320643e-12 + art_sys_102: -2.86978975e-07 + art_sys_103: 3.11680069e-12 + art_sys_104: -2.16409675e-13 + art_sys_105: -2.22313540e-11 + art_sys_106: -3.70726060e-12 + art_sys_107: -2.05760861e-05 + art_sys_108: -3.57051466e-11 + art_sys_109: -1.41395638e-10 + art_sys_110: -1.40629292e-05 + art_sys_111: -1.35340562e-12 + art_sys_112: 2.86494752e-10 + art_sys_113: -1.36775752e-13 + art_sys_114: -9.81400336e-11 + art_sys_115: -3.05156810e-13 + art_sys_116: -5.29024748e-05 + art_sys_117: -4.33990390e-10 + art_sys_118: 2.63069558e-11 + art_sys_119: -8.04878605e-05 + art_sys_120: 7.05181652e-11 + art_sys_121: 3.77950927e-11 + art_sys_122: -3.26603995e-11 + art_sys_123: 4.63282827e-06 + art_sys_124: -4.51562603e-12 + art_sys_125: -9.88107181e-11 + art_sys_126: 4.70833501e-10 + art_sys_127: -1.21792578e-05 + art_sys_128: 3.85314193e-11 + art_sys_129: -9.05607518e-12 + art_sys_130: 1.62157581e-05 + art_sys_131: 9.47954026e-11 + art_sys_132: -2.07736890e-10 + art_sys_133: 9.43692186e-06 + art_sys_134: -2.31402833e-09 + art_sys_135: 8.24444436e-11 + art_sys_136: 1.57754087e-11 + art_sys_137: 4.66141485e-06 + art_sys_138: 7.03342629e-11 + art_sys_139: 1.88524161e-06 + art_sys_140: -2.94443632e-13 + art_sys_141: 1.03140637e-08 + art_sys_142: -1.32332667e-10 + art_sys_143: 6.67862796e-07 + art_sys_144: -4.94747868e-12 + art_sys_145: 4.58284229e-10 + art_sys_146: 2.55977244e-07 + art_sys_147: -5.98380017e-12 + art_sys_148: -3.72240619e-13 + art_sys_149: -1.79044165e-10 + art_sys_150: 3.76805264e-08 + art_sys_151: 6.31017009e-10 + art_sys_152: 3.07775266e-12 + art_sys_153: -4.25835911e-09 + art_sys_154: 4.77400485e-12 + art_sys_155: -1.21467346e-12 + art_sys_156: -0.0 + art_sys_157: 1.92753691e-11 art_sys_158: -0.0 - art_sys_159: 2.65641236e-09 - art_sys_160: 3.52833771e-11 - art_sys_161: 1.77640873e-09 - art_sys_162: 3.92785123e-11 - art_sys_163: -2.88899241e-10 - art_sys_164: -1.09345134e-10 - art_sys_165: -6.75072008e-13 - art_sys_166: 2.61364914e-19 - art_sys_167: 2.79067892e-19 - art_sys_168: -6.55065611e-20 - art_sys_169: 9.27066242e-21 - art_sys_170: 2.69179239e-21 - art_sys_171: -4.53660322e-21 - art_sys_172: 3.24232839e-20 - art_sys_173: -3.20892902e-21 - art_sys_174: -3.52338056e-22 - art_sys_175: -4.14484218e-25 - art_sys_176: -1.47590214e-22 - art_sys_177: 1.47210207e-23 - art_sys_178: 1.73804342e-23 - art_sys_179: 2.14032288e-23 - art_sys_180: 2.04026217e-22 - art_sys_181: -2.46369954e-24 - art_sys_182: -3.75469750e-23 - art_sys_183: -6.36308118e-25 - art_sys_184: -7.54114677e-28 - art_sys_185: -4.96136076e-27 + art_sys_159: 1.46423056e-10 + art_sys_160: 5.42454972e-12 + art_sys_161: 1.64524019e-11 + art_sys_162: 1.64524019e-11 + art_sys_163: -1.54633687e-11 + art_sys_164: -1.54633687e-11 + art_sys_165: 1.22377099e-25 + art_sys_166: -3.91983180e-26 + art_sys_167: -0.0 + art_sys_168: -9.46887535e-20 + art_sys_169: -9.20839043e-20 + art_sys_170: 5.74897061e-21 + art_sys_171: -1.99344881e-20 + art_sys_172: -4.88479723e-21 + art_sys_173: 5.85058395e-23 + art_sys_174: 7.25417679e-23 + art_sys_175: 4.28836052e-23 + art_sys_176: -4.33536347e-23 + art_sys_177: 8.17841331e-22 + art_sys_178: -1.77294123e-23 + art_sys_179: 2.25627364e-25 + art_sys_180: 3.57503523e-24 + art_sys_181: -7.11457593e-23 + art_sys_182: -9.16474586e-24 + art_sys_183: -1.52032790e-25 + art_sys_184: 5.58799340e-26 + art_sys_185: 1.68042879e-27 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -24998,167 +24998,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: 2.07360648e-21 - art_sys_26: -7.78541478e-20 - art_sys_27: -3.20507614e-19 - art_sys_28: -7.44291629e-38 - art_sys_29: 1.18535657e-37 - art_sys_30: -2.55796041e-19 - art_sys_31: 1.11160223e-16 - art_sys_32: 5.12601756e-16 - art_sys_33: 1.78944666e-15 - art_sys_34: -2.93785935e-33 - art_sys_35: -4.76623940e-33 - art_sys_36: -3.89455863e-33 - art_sys_37: -9.79135530e-34 - art_sys_38: -3.70207262e-15 - art_sys_39: -1.39284855e-32 - art_sys_40: 1.20768825e-32 - art_sys_41: 1.30258793e-32 - art_sys_42: 3.30088353e-30 - art_sys_43: 1.78915522e-13 - art_sys_44: -1.46727718e-13 - art_sys_45: 1.93778207e-12 - art_sys_46: -1.68437712e-29 - art_sys_47: -1.41304992e-29 - art_sys_48: -1.49639513e-24 - art_sys_49: 2.55310174e-15 - art_sys_50: 1.26112425e-14 - art_sys_51: 2.44509212e-14 - art_sys_52: 2.38944403e-14 - art_sys_53: -1.27135044e-14 - art_sys_54: -4.71088488e-14 - art_sys_55: -6.93124683e-12 - art_sys_56: -2.75761600e-11 - art_sys_57: -5.25313652e-22 - art_sys_58: -8.93375270e-14 - art_sys_59: -2.12325338e-13 - art_sys_60: -6.86156962e-22 - art_sys_61: 3.52518911e-21 - art_sys_62: 1.64250933e-22 - art_sys_63: -6.06860050e-11 - art_sys_64: -1.81051755e-26 - art_sys_65: 3.07439340e-14 - art_sys_66: -4.61949508e-14 - art_sys_67: 1.07592579e-21 - art_sys_68: -3.35235505e-10 - art_sys_69: 1.77757648e-10 - art_sys_70: 1.17449587e-20 - art_sys_71: 5.33811224e-23 - art_sys_72: -1.96914707e-22 - art_sys_73: -1.64720976e-14 - art_sys_74: -2.70053076e-14 - art_sys_75: 1.36338529e-14 - art_sys_76: -6.90007320e-14 - art_sys_77: -1.90942263e-18 - art_sys_78: -2.62219541e-09 - art_sys_79: 5.39029388e-16 - art_sys_80: 3.16130265e-14 - art_sys_81: -1.69961557e-15 - art_sys_82: 2.55078297e-16 - art_sys_83: 3.21293525e-14 - art_sys_84: 3.87861310e-16 - art_sys_85: 3.64747735e-17 - art_sys_86: -4.29917291e-13 - art_sys_87: 8.28802986e-22 - art_sys_88: -1.91736618e-13 - art_sys_89: -1.01263649e-12 - art_sys_90: -8.15908995e-21 - art_sys_91: 6.69316804e-09 - art_sys_92: 2.06725973e-19 - art_sys_93: -1.23452797e-19 - art_sys_94: -1.17596256e-17 - art_sys_95: 4.37694630e-07 - art_sys_96: -5.97221096e-12 - art_sys_97: 4.70415608e-07 - art_sys_98: -1.51516216e-17 - art_sys_99: -6.26865330e-21 - art_sys_100: 3.31715759e-06 - art_sys_101: 2.83212641e-15 - art_sys_102: -4.41525943e-15 - art_sys_103: 5.09616460e-07 - art_sys_104: -2.94971971e-17 - art_sys_105: -6.81055314e-15 - art_sys_106: 6.42828709e-12 - art_sys_107: -3.16857347e-11 - art_sys_108: 2.32995408e-12 - art_sys_109: 3.37120145e-11 - art_sys_110: -1.49391240e-05 - art_sys_111: 6.06879674e-13 - art_sys_112: 1.07743591e-05 - art_sys_113: -5.43725539e-11 - art_sys_114: -3.19757863e-12 - art_sys_115: 3.93291693e-05 - art_sys_116: 2.68352573e-10 - art_sys_117: 6.15867330e-12 - art_sys_118: -5.99066824e-05 - art_sys_119: -1.01074932e-11 - art_sys_120: 2.61264711e-11 - art_sys_121: -4.53227687e-06 - art_sys_122: 3.32077440e-11 - art_sys_123: 6.99358125e-12 - art_sys_124: 9.65992977e-06 - art_sys_125: 4.16473317e-09 - art_sys_126: 1.17688723e-05 - art_sys_127: -5.48661790e-10 - art_sys_128: 6.81203246e-06 - art_sys_129: 3.03020726e-10 - art_sys_130: 3.19801714e-06 - art_sys_131: 5.02214031e-09 - art_sys_132: 8.88377266e-10 - art_sys_133: 1.21780647e-06 - art_sys_134: 1.39433510e-11 - art_sys_135: 1.17052629e-09 - art_sys_136: -4.88537170e-07 - art_sys_137: 3.60295761e-13 - art_sys_138: -1.55607387e-17 - art_sys_139: 1.15789929e-09 - art_sys_140: 8.19373460e-08 - art_sys_141: 5.07185820e-09 - art_sys_142: -5.33800621e-09 - art_sys_143: -8.82523200e-13 - art_sys_144: -5.79145241e-13 - art_sys_145: -5.21317736e-12 - art_sys_146: 0.0 - art_sys_147: -2.53956127e-11 - art_sys_148: 2.00333710e-10 - art_sys_149: 2.00333710e-10 - art_sys_150: 6.95912730e-11 - art_sys_151: 6.95912730e-11 - art_sys_152: 3.30481560e-11 - art_sys_153: -8.43863476e-13 - art_sys_154: -1.99710343e-14 - art_sys_155: -2.93345886e-24 - art_sys_156: 2.40554369e-25 - art_sys_157: 8.93947760e-26 - art_sys_158: -0.0 - art_sys_159: -3.00098306e-09 - art_sys_160: 2.82514117e-11 - art_sys_161: -2.94040700e-09 - art_sys_162: -6.46311713e-11 - art_sys_163: 6.23219705e-10 - art_sys_164: 2.10981920e-10 - art_sys_165: 1.30729293e-12 - art_sys_166: -5.44382555e-19 - art_sys_167: -5.82923441e-19 - art_sys_168: 1.42732919e-19 - art_sys_169: -1.62501116e-20 - art_sys_170: -4.61030340e-21 - art_sys_171: 7.59076706e-21 - art_sys_172: -5.05103292e-20 - art_sys_173: 4.70148489e-21 - art_sys_174: 5.35933222e-22 - art_sys_175: 8.20855922e-25 - art_sys_176: 1.68066677e-22 - art_sys_177: -4.81286688e-23 - art_sys_178: -3.01900656e-23 - art_sys_179: -4.69335706e-23 - art_sys_180: -3.95657043e-22 - art_sys_181: 5.48432582e-24 - art_sys_182: 6.25243641e-23 - art_sys_183: 1.04497077e-24 - art_sys_184: 1.28387942e-27 - art_sys_185: 9.27724196e-27 + art_sys_25: 9.42778659e-96 + art_sys_26: 4.93870555e-90 + art_sys_27: -3.10191013e-83 + art_sys_28: 1.85584168e-82 + art_sys_29: 7.12803958e-72 + art_sys_30: 5.79354244e-69 + art_sys_31: 2.71001628e-66 + art_sys_32: -3.23726048e-58 + art_sys_33: -9.70141318e-53 + art_sys_34: -9.78132865e-46 + art_sys_35: -6.85691901e-47 + art_sys_36: 2.07360648e-21 + art_sys_37: -7.78541478e-20 + art_sys_38: -3.20507614e-19 + art_sys_39: -2.55796041e-19 + art_sys_40: -1.11160223e-16 + art_sys_41: 5.12601756e-16 + art_sys_42: 1.78944666e-15 + art_sys_43: 3.70207262e-15 + art_sys_44: -1.78915522e-13 + art_sys_45: 1.46727718e-13 + art_sys_46: 1.93778207e-12 + art_sys_47: 3.84969904e-29 + art_sys_48: -1.75160627e-28 + art_sys_49: 2.29211759e-29 + art_sys_50: -6.93124683e-12 + art_sys_51: 2.75761600e-11 + art_sys_52: 6.54399101e-28 + art_sys_53: -1.11524805e-27 + art_sys_54: -5.11548140e-28 + art_sys_55: 7.13870194e-28 + art_sys_56: 2.87431494e-28 + art_sys_57: -6.06860050e-11 + art_sys_58: 3.35235517e-10 + art_sys_59: 2.85414285e-27 + art_sys_60: 3.85998545e-26 + art_sys_61: 1.77757648e-10 + art_sys_62: -5.29524792e-27 + art_sys_63: 3.75376401e-25 + art_sys_64: -4.67633849e-15 + art_sys_65: 1.70618714e-14 + art_sys_66: -1.65902781e-14 + art_sys_67: -1.76724346e-15 + art_sys_68: 3.14392655e-14 + art_sys_69: -1.64273266e-14 + art_sys_70: -3.73890236e-14 + art_sys_71: -4.46142350e-14 + art_sys_72: 5.21208232e-15 + art_sys_73: 5.50301222e-15 + art_sys_74: -2.62219540e-09 + art_sys_75: -4.31731666e-15 + art_sys_76: -5.87552647e-14 + art_sys_77: -1.09652004e-14 + art_sys_78: 5.42030158e-15 + art_sys_79: -1.65914960e-15 + art_sys_80: -2.47125899e-15 + art_sys_81: 1.28304240e-15 + art_sys_82: 3.63985605e-20 + art_sys_83: -7.42253156e-17 + art_sys_84: -7.93045809e-16 + art_sys_85: 3.77074303e-16 + art_sys_86: 1.39254017e-16 + art_sys_87: -6.72441306e-14 + art_sys_88: -5.82486150e-14 + art_sys_89: 5.19567020e-17 + art_sys_90: 4.83281972e-14 + art_sys_91: -2.07036256e-21 + art_sys_92: -5.90583877e-17 + art_sys_93: 2.86445330e-17 + art_sys_94: 1.82007641e-11 + art_sys_95: -6.69317894e-09 + art_sys_96: -1.40636790e-17 + art_sys_97: 7.26574138e-18 + art_sys_98: -4.37694991e-07 + art_sys_99: -3.30928086e-14 + art_sys_100: 4.70413553e-07 + art_sys_101: 4.81564662e-13 + art_sys_102: 3.31717560e-06 + art_sys_103: 3.49235716e-13 + art_sys_104: -3.98366465e-14 + art_sys_105: 1.32569779e-11 + art_sys_106: 4.30655293e-11 + art_sys_107: -5.09574071e-07 + art_sys_108: 2.13313948e-11 + art_sys_109: 8.23615474e-11 + art_sys_110: -1.49396222e-05 + art_sys_111: 4.64947791e-13 + art_sys_112: 3.05115011e-10 + art_sys_113: 1.44383337e-12 + art_sys_114: 1.01140174e-10 + art_sys_115: 3.10740869e-13 + art_sys_116: 1.07746964e-05 + art_sys_117: 5.31518771e-10 + art_sys_118: 2.65436153e-11 + art_sys_119: -3.93282876e-05 + art_sys_120: 3.29838319e-11 + art_sys_121: -3.06657889e-11 + art_sys_122: -3.78601351e-11 + art_sys_123: 5.99036833e-05 + art_sys_124: 3.66698403e-12 + art_sys_125: 1.49330969e-10 + art_sys_126: 2.08478403e-10 + art_sys_127: 4.52556700e-06 + art_sys_128: 1.66307305e-11 + art_sys_129: 1.79873457e-11 + art_sys_130: -9.66316071e-06 + art_sys_131: -1.79411282e-10 + art_sys_132: -1.73470392e-10 + art_sys_133: -1.17513207e-05 + art_sys_134: -9.60877224e-10 + art_sys_135: 1.17747735e-10 + art_sys_136: -3.60504640e-11 + art_sys_137: -6.81616423e-06 + art_sys_138: 5.47997745e-10 + art_sys_139: -3.19760134e-06 + art_sys_140: 2.09067037e-12 + art_sys_141: -1.74295767e-08 + art_sys_142: -2.39359734e-10 + art_sys_143: -1.22547202e-06 + art_sys_144: 4.38458995e-12 + art_sys_145: 2.34926385e-10 + art_sys_146: -4.95901418e-07 + art_sys_147: 1.14145407e-11 + art_sys_148: 5.91585947e-13 + art_sys_149: 4.30847588e-10 + art_sys_150: -7.80546405e-08 + art_sys_151: -1.43262444e-09 + art_sys_152: -7.00727301e-12 + art_sys_153: 9.47381635e-09 + art_sys_154: 5.07052356e-12 + art_sys_155: 2.12541005e-12 + art_sys_156: 0.0 + art_sys_157: 2.48733871e-11 + art_sys_158: 0.0 + art_sys_159: -2.41519011e-10 + art_sys_160: -7.04263659e-12 + art_sys_161: -3.11711147e-11 + art_sys_162: -3.11711147e-11 + art_sys_163: 2.73531419e-11 + art_sys_164: 2.73531419e-11 + art_sys_165: -2.13157450e-25 + art_sys_166: 6.83613694e-26 + art_sys_167: 0.0 + art_sys_168: 2.29093573e-19 + art_sys_169: 1.79685362e-19 + art_sys_170: 3.21721283e-21 + art_sys_171: 2.19772176e-20 + art_sys_172: 7.98059231e-21 + art_sys_173: -3.67980154e-22 + art_sys_174: -3.36127008e-22 + art_sys_175: -8.41592175e-23 + art_sys_176: 7.44128501e-23 + art_sys_177: -1.26254759e-21 + art_sys_178: 1.76700911e-23 + art_sys_179: -3.07237944e-25 + art_sys_180: -5.96428977e-24 + art_sys_181: 1.00212183e-22 + art_sys_182: 2.02573391e-23 + art_sys_183: 2.90878457e-25 + art_sys_184: -9.45143983e-26 + art_sys_185: -2.86314874e-27 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -25289,167 +25289,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: 1.12489355e-22 - art_sys_26: -5.31379748e-21 - art_sys_27: -2.11580575e-20 - art_sys_28: -4.83704653e-39 - art_sys_29: 7.81197097e-39 - art_sys_30: -2.82332336e-20 - art_sys_31: 9.75789715e-18 - art_sys_32: 4.02943960e-17 - art_sys_33: 1.48413920e-16 - art_sys_34: -2.36916060e-34 - art_sys_35: -3.94717357e-34 - art_sys_36: -3.51978726e-34 - art_sys_37: -8.17142660e-35 - art_sys_38: -3.04767719e-16 - art_sys_39: -1.14389892e-33 - art_sys_40: 9.96296649e-34 - art_sys_41: 1.07561801e-33 - art_sys_42: 2.80857384e-31 - art_sys_43: 1.52166445e-14 - art_sys_44: -6.59423827e-15 - art_sys_45: 1.48124723e-13 - art_sys_46: -1.26575570e-30 - art_sys_47: -1.06013656e-30 - art_sys_48: -8.60179251e-27 - art_sys_49: -2.92036682e-14 - art_sys_50: -9.10315954e-15 - art_sys_51: 8.99527096e-15 - art_sys_52: -7.10704817e-14 - art_sys_53: 1.27655850e-14 - art_sys_54: 6.17340500e-14 - art_sys_55: -3.98352832e-14 - art_sys_56: -3.62951697e-12 - art_sys_57: -3.01532780e-24 - art_sys_58: 1.16740806e-13 - art_sys_59: 2.74707079e-13 - art_sys_60: -9.03113799e-23 - art_sys_61: 4.63996399e-22 - art_sys_62: 2.16182993e-23 - art_sys_63: -4.60741144e-12 - art_sys_64: -2.29242359e-27 - art_sys_65: -4.02500681e-14 - art_sys_66: 6.05653964e-14 - art_sys_67: 8.16953275e-23 - art_sys_68: -9.99933969e-11 - art_sys_69: 1.41906119e-10 - art_sys_70: 8.91813557e-22 - art_sys_71: -5.25618087e-24 - art_sys_72: -8.46915545e-23 - art_sys_73: -2.75900427e-14 - art_sys_74: -1.30007083e-14 - art_sys_75: -2.30056169e-14 - art_sys_76: 9.08150958e-14 - art_sys_77: 6.94986418e-21 - art_sys_78: -2.39730404e-10 - art_sys_79: -2.01563935e-15 - art_sys_80: -3.79902377e-14 - art_sys_81: 7.42010002e-16 - art_sys_82: 2.41965866e-16 - art_sys_83: -4.50274624e-14 - art_sys_84: -5.77396207e-16 - art_sys_85: 4.87759124e-16 - art_sys_86: 1.75266126e-14 - art_sys_87: 3.74747499e-21 - art_sys_88: -2.21664414e-13 - art_sys_89: -3.37917945e-13 - art_sys_90: -5.58310042e-21 - art_sys_91: -3.81676201e-08 - art_sys_92: 2.12566945e-20 - art_sys_93: -3.37506408e-20 - art_sys_94: -6.01464222e-19 - art_sys_95: 7.00295323e-08 - art_sys_96: -2.87448307e-12 - art_sys_97: -3.00714002e-07 - art_sys_98: 2.04254647e-16 - art_sys_99: 3.44866188e-20 - art_sys_100: 5.01635149e-07 - art_sys_101: -9.75648312e-15 - art_sys_102: 8.15473530e-15 - art_sys_103: -2.33100442e-06 - art_sys_104: -1.56741164e-18 - art_sys_105: 1.06695894e-16 - art_sys_106: 8.66667595e-13 - art_sys_107: -3.15287939e-10 - art_sys_108: 1.85058142e-11 - art_sys_109: 3.27927275e-12 - art_sys_110: -2.27063414e-07 - art_sys_111: 4.24799827e-13 - art_sys_112: 1.06823470e-05 - art_sys_113: 3.73444956e-11 - art_sys_114: -1.44529154e-12 - art_sys_115: -7.98556484e-06 - art_sys_116: 3.97569648e-12 - art_sys_117: 7.35532433e-13 - art_sys_118: -2.75252107e-05 - art_sys_119: -1.08525538e-12 - art_sys_120: -8.20645886e-12 - art_sys_121: -4.45967685e-05 - art_sys_122: -1.52876740e-13 - art_sys_123: 3.89466197e-12 - art_sys_124: -3.38180566e-06 - art_sys_125: 9.52209920e-10 - art_sys_126: -7.37164537e-06 - art_sys_127: -1.45471111e-10 - art_sys_128: -8.74719845e-06 - art_sys_129: 1.41075504e-10 - art_sys_130: -4.86319953e-06 - art_sys_131: -7.80709875e-09 - art_sys_132: 8.18072300e-10 - art_sys_133: -2.12578449e-06 - art_sys_134: -2.55885648e-11 - art_sys_135: -2.97750936e-10 - art_sys_136: 9.26089303e-07 - art_sys_137: -1.38982891e-12 - art_sys_138: 3.32207016e-17 - art_sys_139: -2.32731624e-09 - art_sys_140: -1.65263086e-07 - art_sys_141: -8.12396211e-09 - art_sys_142: 1.28296946e-08 - art_sys_143: 1.94037529e-12 - art_sys_144: 1.12121134e-12 - art_sys_145: 1.09322617e-11 - art_sys_146: -0.0 - art_sys_147: 3.89026601e-11 - art_sys_148: -3.40314211e-10 - art_sys_149: -3.40314211e-10 - art_sys_150: -1.76353640e-10 - art_sys_151: -1.76353640e-10 - art_sys_152: -1.10732257e-10 - art_sys_153: 1.13595053e-11 - art_sys_154: 1.50787532e-14 - art_sys_155: 2.37412321e-23 - art_sys_156: -4.71116189e-25 - art_sys_157: -7.54237285e-26 - art_sys_158: -0.0 - art_sys_159: 1.50619539e-09 - art_sys_160: -2.23645891e-10 - art_sys_161: 4.49968408e-09 - art_sys_162: 9.80502983e-11 - art_sys_163: -1.37319191e-09 - art_sys_164: -4.00712774e-10 - art_sys_165: -2.42458886e-12 - art_sys_166: 1.12457833e-18 - art_sys_167: 1.20232995e-18 - art_sys_168: -3.08058866e-19 - art_sys_169: 2.78266990e-20 - art_sys_170: 7.68190724e-21 - art_sys_171: -1.18804409e-20 - art_sys_172: 7.18682314e-20 - art_sys_173: -6.39870489e-21 - art_sys_174: -8.43328113e-22 - art_sys_175: -1.62062492e-24 - art_sys_176: -9.57418046e-23 - art_sys_177: 1.20621257e-22 - art_sys_178: 4.80398659e-23 - art_sys_179: 9.52560781e-23 - art_sys_180: 7.27524381e-22 - art_sys_181: -1.13933524e-23 - art_sys_182: -9.84152641e-23 - art_sys_183: -1.60417383e-24 - art_sys_184: -1.58097119e-27 - art_sys_185: -1.65477705e-26 + art_sys_25: 5.10515379e-97 + art_sys_26: 2.67431291e-91 + art_sys_27: -1.67968676e-84 + art_sys_28: 1.00493972e-83 + art_sys_29: 3.85983900e-73 + art_sys_30: 3.13720776e-70 + art_sys_31: 1.46747593e-67 + art_sys_32: -1.75297908e-59 + art_sys_33: -5.25332282e-54 + art_sys_34: -5.29659711e-47 + art_sys_35: -3.71302700e-48 + art_sys_36: 1.12489355e-22 + art_sys_37: -5.31379748e-21 + art_sys_38: -2.11580575e-20 + art_sys_39: -2.82332336e-20 + art_sys_40: -9.75789715e-18 + art_sys_41: 4.02943960e-17 + art_sys_42: 1.48413920e-16 + art_sys_43: 3.04767719e-16 + art_sys_44: -1.52166445e-14 + art_sys_45: 6.59423827e-15 + art_sys_46: 1.48124723e-13 + art_sys_47: 2.99190925e-30 + art_sys_48: 7.62376371e-31 + art_sys_49: 2.71349123e-30 + art_sys_50: -3.98352832e-14 + art_sys_51: 3.62951697e-12 + art_sys_52: 7.35306626e-29 + art_sys_53: -1.49707576e-28 + art_sys_54: -7.85092445e-29 + art_sys_55: 7.24142968e-29 + art_sys_56: 4.77117384e-29 + art_sys_57: -4.60741144e-12 + art_sys_58: 9.99934005e-11 + art_sys_59: 1.07870040e-27 + art_sys_60: 5.48395496e-27 + art_sys_61: 1.41906119e-10 + art_sys_62: -1.02211699e-27 + art_sys_63: 3.66165552e-26 + art_sys_64: -1.07133488e-13 + art_sys_65: 2.58877816e-14 + art_sys_66: 1.35319824e-14 + art_sys_67: 7.48489305e-15 + art_sys_68: -4.40748658e-14 + art_sys_69: 2.43429211e-14 + art_sys_70: 5.10818347e-14 + art_sys_71: 5.55257776e-14 + art_sys_72: -6.54597560e-15 + art_sys_73: -6.53921602e-15 + art_sys_74: -2.39730403e-10 + art_sys_75: 4.45970556e-15 + art_sys_76: 5.83210927e-14 + art_sys_77: 2.67848976e-15 + art_sys_78: -9.94977129e-17 + art_sys_79: 1.45670992e-15 + art_sys_80: -8.13275714e-16 + art_sys_81: -9.39732447e-16 + art_sys_82: 3.33099475e-21 + art_sys_83: -1.34805319e-16 + art_sys_84: -2.52737875e-16 + art_sys_85: 3.88852688e-16 + art_sys_86: -1.32148885e-16 + art_sys_87: 4.29083362e-14 + art_sys_88: -6.61972905e-14 + art_sys_89: 7.31492484e-17 + art_sys_90: 2.52849015e-16 + art_sys_91: -1.86440093e-22 + art_sys_92: 6.36364934e-18 + art_sys_93: 9.03158860e-18 + art_sys_94: -3.69345710e-12 + art_sys_95: 3.81676245e-08 + art_sys_96: 8.02110281e-17 + art_sys_97: -4.14589260e-17 + art_sys_98: -7.00293103e-08 + art_sys_99: -4.12061370e-15 + art_sys_100: -3.00711940e-07 + art_sys_101: -3.13171199e-13 + art_sys_102: 5.01637890e-07 + art_sys_103: -2.14367965e-13 + art_sys_104: 8.42944765e-15 + art_sys_105: -3.18195848e-12 + art_sys_106: 6.51138090e-12 + art_sys_107: 2.33100463e-06 + art_sys_108: -4.34435007e-12 + art_sys_109: -2.82130821e-11 + art_sys_110: -2.27072663e-07 + art_sys_111: 2.30126556e-13 + art_sys_112: 4.72056787e-12 + art_sys_113: 2.19730743e-13 + art_sys_114: -4.27728719e-11 + art_sys_115: 9.67421239e-14 + art_sys_116: 1.06822612e-05 + art_sys_117: -2.89996392e-10 + art_sys_118: 2.40078695e-13 + art_sys_119: 7.98541873e-06 + art_sys_120: -6.05227702e-12 + art_sys_121: -5.85088338e-11 + art_sys_122: -9.53606132e-13 + art_sys_123: 2.75238254e-05 + art_sys_124: 1.33083401e-12 + art_sys_125: -1.96363032e-10 + art_sys_126: -5.06733545e-11 + art_sys_127: 4.46117703e-05 + art_sys_128: -3.79051704e-12 + art_sys_129: -3.48170019e-11 + art_sys_130: 3.39187076e-06 + art_sys_131: 3.38652494e-10 + art_sys_132: 6.52370993e-12 + art_sys_133: 7.36648746e-06 + art_sys_134: 2.92166495e-10 + art_sys_135: 2.81987863e-11 + art_sys_136: 8.14260626e-11 + art_sys_137: 8.74628162e-06 + art_sys_138: 2.54391092e-10 + art_sys_139: 4.87700339e-06 + art_sys_140: -6.85468006e-12 + art_sys_141: 2.90373809e-08 + art_sys_142: -1.98505257e-10 + art_sys_143: 2.12679787e-06 + art_sys_144: -3.09850788e-12 + art_sys_145: -2.00393644e-10 + art_sys_146: 9.34123359e-07 + art_sys_147: -2.10316139e-11 + art_sys_148: -7.40028385e-13 + art_sys_149: -9.47993604e-10 + art_sys_150: 1.61068709e-07 + art_sys_151: 2.86146201e-09 + art_sys_152: 1.61735285e-11 + art_sys_153: -2.05442385e-08 + art_sys_154: 7.69563446e-14 + art_sys_155: -2.06110650e-12 + art_sys_156: -0.0 + art_sys_157: 2.94740576e-11 + art_sys_158: 0.0 + art_sys_159: 4.02933596e-10 + art_sys_160: 1.92535249e-11 + art_sys_161: 2.87492391e-11 + art_sys_162: 2.87492391e-11 + art_sys_163: -4.44284221e-11 + art_sys_164: -4.44284221e-11 + art_sys_165: 3.83843646e-25 + art_sys_166: -1.24678038e-25 + art_sys_167: -0.0 + art_sys_168: -5.87748949e-20 + art_sys_169: -3.38319175e-19 + art_sys_170: 1.20160627e-20 + art_sys_171: -2.28943362e-21 + art_sys_172: -1.17935750e-20 + art_sys_173: 1.10159904e-21 + art_sys_174: 1.01378884e-21 + art_sys_175: 1.48857037e-22 + art_sys_176: -1.28748586e-22 + art_sys_177: 1.63351635e-21 + art_sys_178: -1.51824191e-25 + art_sys_179: -3.13736908e-25 + art_sys_180: 9.87277777e-24 + art_sys_181: -9.45513510e-23 + art_sys_182: -4.35186833e-23 + art_sys_183: -5.29481277e-25 + art_sys_184: 1.43989551e-25 + art_sys_185: 4.33593385e-27 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -25580,167 +25580,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: 4.53731186e-24 - art_sys_26: -2.89285522e-22 - art_sys_27: -1.05725815e-21 - art_sys_28: -2.31269066e-40 - art_sys_29: 3.88827739e-40 - art_sys_30: -3.04681657e-21 - art_sys_31: 7.24121425e-19 - art_sys_32: 3.14358216e-18 - art_sys_33: 1.12030282e-17 - art_sys_34: -1.82212497e-35 - art_sys_35: -2.98125383e-35 - art_sys_36: -2.53545199e-35 - art_sys_37: -6.14767201e-36 - art_sys_38: -2.25194584e-17 - art_sys_39: -8.40386742e-35 - art_sys_40: 7.35413186e-35 - art_sys_41: 7.96041019e-35 - art_sys_42: 1.92318322e-32 - art_sys_43: 1.04198711e-15 - art_sys_44: -9.90029664e-16 - art_sys_45: 1.58573504e-14 - art_sys_46: -1.30084330e-31 - art_sys_47: -1.22334463e-31 - art_sys_48: 1.77432371e-26 - art_sys_49: -7.42917282e-15 - art_sys_50: -5.95906354e-15 - art_sys_51: -1.25182628e-14 - art_sys_52: -4.16444992e-14 - art_sys_53: -5.15415624e-14 - art_sys_54: -9.41226329e-15 - art_sys_55: 8.21882918e-14 - art_sys_56: -8.12229309e-13 - art_sys_57: 6.23021578e-24 - art_sys_58: -2.87137160e-14 - art_sys_59: -1.36199756e-13 - art_sys_60: -2.02103152e-23 - art_sys_61: 1.03837057e-22 - art_sys_62: 4.83781718e-24 - art_sys_63: -2.10866669e-12 - art_sys_64: -5.43780432e-28 - art_sys_65: 2.24355980e-14 - art_sys_66: -3.58772925e-14 - art_sys_67: 3.73902141e-23 - art_sys_68: -1.67922873e-11 - art_sys_69: 7.04432475e-11 - art_sys_70: 4.08118703e-22 - art_sys_71: 1.20269206e-24 - art_sys_72: -1.34715804e-23 - art_sys_73: -3.44544267e-14 - art_sys_74: -2.01476725e-14 - art_sys_75: 3.45067229e-15 - art_sys_76: -5.67333336e-14 - art_sys_77: 1.58929306e-19 - art_sys_78: 1.08278767e-10 - art_sys_79: -2.08652250e-16 - art_sys_80: 2.78318515e-14 - art_sys_81: 8.30172299e-16 - art_sys_82: -4.79332257e-17 - art_sys_83: 2.88636712e-14 - art_sys_84: -7.46824342e-16 - art_sys_85: 1.38599478e-16 - art_sys_86: 2.20534915e-14 - art_sys_87: 2.46370496e-21 - art_sys_88: -1.87904792e-14 - art_sys_89: 1.09262866e-13 - art_sys_90: -2.66933267e-21 - art_sys_91: -6.11110826e-09 - art_sys_92: -7.08037349e-21 - art_sys_93: -4.05319626e-21 - art_sys_94: 5.56832310e-19 - art_sys_95: -1.68014627e-08 - art_sys_96: 5.70930911e-13 - art_sys_97: -8.08799130e-08 - art_sys_98: 3.14276546e-17 - art_sys_99: 5.34489698e-21 - art_sys_100: -2.09715615e-07 - art_sys_101: -1.63195857e-15 - art_sys_102: 1.49141387e-15 - art_sys_103: -3.88619673e-07 - art_sys_104: 1.59881468e-18 - art_sys_105: 5.26043450e-16 - art_sys_106: -4.20542899e-13 - art_sys_107: -1.47286700e-10 - art_sys_108: 5.60575482e-12 - art_sys_109: -2.43307286e-10 - art_sys_110: 1.69308730e-06 - art_sys_111: 7.22527182e-15 - art_sys_112: 9.99483591e-08 - art_sys_113: -6.83646189e-13 - art_sys_114: 6.59597889e-14 - art_sys_115: -7.91564198e-06 - art_sys_116: -3.04244992e-11 - art_sys_117: -3.95991222e-13 - art_sys_118: 6.24869877e-06 - art_sys_119: 8.46050863e-13 - art_sys_120: -4.75638793e-12 - art_sys_121: -2.07697554e-05 - art_sys_122: -3.89293838e-12 - art_sys_123: -1.52165342e-12 - art_sys_124: -3.26942245e-05 - art_sys_125: -5.66030345e-10 - art_sys_126: 3.28627457e-06 - art_sys_127: 7.09641400e-11 - art_sys_128: 5.71549664e-06 - art_sys_129: -6.84544638e-11 - art_sys_130: 6.35943488e-06 - art_sys_131: 9.07451001e-09 - art_sys_132: -5.34099204e-10 - art_sys_133: 3.23876099e-06 - art_sys_134: 3.68158105e-11 - art_sys_135: 1.31706085e-09 - art_sys_136: -1.61858768e-06 - art_sys_137: 3.16852597e-12 - art_sys_138: 4.49975304e-18 - art_sys_139: 4.73523769e-09 - art_sys_140: 3.21742606e-07 - art_sys_141: 1.91958721e-08 - art_sys_142: -2.60284786e-08 - art_sys_143: -3.86428413e-12 - art_sys_144: -2.05759346e-12 - art_sys_145: -2.20333643e-11 - art_sys_146: 0.0 - art_sys_147: -9.27083728e-11 - art_sys_148: 9.60466513e-10 - art_sys_149: 9.60466513e-10 - art_sys_150: 7.38018052e-11 - art_sys_151: 7.38018052e-11 - art_sys_152: 1.95228308e-10 - art_sys_153: 2.17730254e-11 - art_sys_154: -6.09848570e-14 - art_sys_155: 6.14992858e-24 - art_sys_156: -1.71203458e-25 - art_sys_157: 3.86520197e-26 + art_sys_25: 2.05282799e-98 + art_sys_26: 1.07536514e-92 + art_sys_27: -6.75417068e-86 + art_sys_28: 4.04095249e-85 + art_sys_29: 1.55207578e-74 + art_sys_30: 1.26149930e-71 + art_sys_31: 5.90085199e-69 + art_sys_32: -7.04888567e-61 + art_sys_33: -2.11240810e-55 + art_sys_34: -2.12980908e-48 + art_sys_35: -1.49304137e-49 + art_sys_36: 4.53731186e-24 + art_sys_37: -2.89285522e-22 + art_sys_38: -1.05725815e-21 + art_sys_39: -3.04681657e-21 + art_sys_40: -7.24121425e-19 + art_sys_41: 3.14358216e-18 + art_sys_42: 1.12030282e-17 + art_sys_43: 2.25194584e-17 + art_sys_44: -1.04198711e-15 + art_sys_45: 9.90029664e-16 + art_sys_46: 1.58573504e-14 + art_sys_47: 3.09081742e-31 + art_sys_48: 1.89298105e-30 + art_sys_49: 5.21586742e-31 + art_sys_50: 8.21882918e-14 + art_sys_51: 8.12229309e-13 + art_sys_52: 1.51767016e-29 + art_sys_53: -3.37992230e-29 + art_sys_54: -2.01533450e-29 + art_sys_55: 1.39776682e-29 + art_sys_56: 6.74287333e-30 + art_sys_57: -2.10866669e-12 + art_sys_58: 1.67922879e-11 + art_sys_59: 1.58611159e-28 + art_sys_60: 1.83265302e-27 + art_sys_61: 7.04432475e-11 + art_sys_62: 1.00982330e-28 + art_sys_63: -1.47777158e-26 + art_sys_64: -6.81473414e-14 + art_sys_65: -9.72559108e-15 + art_sys_66: -8.39958251e-15 + art_sys_67: -8.10004465e-14 + art_sys_68: 6.61567069e-14 + art_sys_69: -5.12070859e-14 + art_sys_70: -1.00591363e-13 + art_sys_71: -1.49616967e-13 + art_sys_72: 2.22116401e-14 + art_sys_73: 2.72001618e-14 + art_sys_74: 1.08278766e-10 + art_sys_75: -3.37201569e-14 + art_sys_76: 2.11596590e-14 + art_sys_77: -6.16766125e-15 + art_sys_78: -3.70561228e-15 + art_sys_79: -1.46732505e-14 + art_sys_80: -4.65447461e-15 + art_sys_81: 1.45872284e-14 + art_sys_82: -1.50249706e-21 + art_sys_83: 1.23168101e-15 + art_sys_84: -6.40712981e-17 + art_sys_85: -4.52374426e-16 + art_sys_86: -1.91091288e-16 + art_sys_87: 2.17299801e-14 + art_sys_88: 1.53537269e-15 + art_sys_89: -4.05472955e-17 + art_sys_90: -1.38440939e-15 + art_sys_91: 8.59951718e-23 + art_sys_92: 1.91493972e-18 + art_sys_93: -1.38013579e-17 + art_sys_94: -3.66001954e-12 + art_sys_95: 6.11110960e-09 + art_sys_96: 1.28426208e-17 + art_sys_97: -6.63783562e-18 + art_sys_98: 1.68015232e-08 + art_sys_99: 1.44548577e-15 + art_sys_100: -8.08794553e-08 + art_sys_101: -8.36874556e-14 + art_sys_102: -2.09716751e-07 + art_sys_103: -5.85610893e-14 + art_sys_104: 4.42540951e-15 + art_sys_105: -4.41957080e-11 + art_sys_106: -2.72279796e-12 + art_sys_107: 3.88614809e-07 + art_sys_108: -7.03233454e-11 + art_sys_109: -2.94070530e-10 + art_sys_110: 1.69314353e-06 + art_sys_111: -4.75310775e-16 + art_sys_112: -3.45681463e-11 + art_sys_113: -9.10757353e-14 + art_sys_114: -4.03072492e-11 + art_sys_115: -4.77681773e-15 + art_sys_116: 9.98774069e-08 + art_sys_117: 1.06866495e-10 + art_sys_118: -3.06354118e-12 + art_sys_119: 7.91546980e-06 + art_sys_120: -4.55517280e-12 + art_sys_121: 3.83256358e-11 + art_sys_122: 4.13115613e-12 + art_sys_123: -6.24830932e-06 + art_sys_124: -2.24883442e-13 + art_sys_125: 1.84751473e-10 + art_sys_126: -4.34670241e-11 + art_sys_127: 2.07093155e-05 + art_sys_128: -2.49257087e-12 + art_sys_129: 5.49640064e-11 + art_sys_130: 3.26969556e-05 + art_sys_131: -5.94587985e-10 + art_sys_132: 2.30701696e-11 + art_sys_133: -3.26133701e-06 + art_sys_134: 2.14087496e-10 + art_sys_135: -1.57081204e-11 + art_sys_136: -1.70246340e-10 + art_sys_137: -5.69132745e-06 + art_sys_138: -6.05656528e-11 + art_sys_139: -6.38619608e-06 + art_sys_140: 1.89311865e-11 + art_sys_141: -4.30410369e-08 + art_sys_142: 1.55420734e-10 + art_sys_143: -3.24284885e-06 + art_sys_144: 1.21148399e-11 + art_sys_145: 1.44299729e-10 + art_sys_146: -1.62923461e-06 + art_sys_147: 3.56082197e-11 + art_sys_148: 4.77184868e-13 + art_sys_149: 1.88694290e-09 + art_sys_150: -3.18475701e-07 + art_sys_151: -5.01535790e-09 + art_sys_152: -3.53608530e-11 + art_sys_153: 4.39688507e-08 + art_sys_154: -5.74670961e-13 + art_sys_155: 7.34304394e-13 + art_sys_156: 0.0 + art_sys_157: -2.00418274e-10 art_sys_158: -0.0 - art_sys_159: 2.90478550e-10 - art_sys_160: 6.00773671e-10 - art_sys_161: -5.51555371e-09 - art_sys_162: -1.21756874e-10 - art_sys_163: 2.62841162e-09 - art_sys_164: 7.59139597e-10 - art_sys_165: 5.42443565e-12 - art_sys_166: -2.28918076e-18 - art_sys_167: -2.47264699e-18 - art_sys_168: 6.39006933e-19 - art_sys_169: -4.72473596e-20 - art_sys_170: -1.53525039e-20 - art_sys_171: 1.77243486e-20 - art_sys_172: -6.96422992e-20 - art_sys_173: 4.08958890e-21 - art_sys_174: 1.15624082e-21 - art_sys_175: 3.25225269e-24 - art_sys_176: -3.39007893e-22 - art_sys_177: -2.69722168e-22 - art_sys_178: -6.03570150e-23 - art_sys_179: -1.83132982e-22 - art_sys_180: -1.23131752e-21 - art_sys_181: 2.19578722e-23 - art_sys_182: 1.27941201e-22 - art_sys_183: 2.03720916e-24 - art_sys_184: 9.88349743e-28 - art_sys_185: 2.57685878e-26 + art_sys_159: -1.51285230e-10 + art_sys_160: -2.20548669e-11 + art_sys_161: -5.41567900e-11 + art_sys_162: -5.41567900e-11 + art_sys_163: 2.15840424e-11 + art_sys_164: 2.15840424e-11 + art_sys_165: -1.22381318e-25 + art_sys_166: 3.86290679e-26 + art_sys_167: 0.0 + art_sys_168: 9.01410342e-19 + art_sys_169: 5.97321658e-19 + art_sys_170: -3.12996688e-20 + art_sys_171: -3.09815583e-20 + art_sys_172: 1.80635376e-20 + art_sys_173: -2.80160123e-21 + art_sys_174: -2.44481343e-21 + art_sys_175: -2.60258047e-22 + art_sys_176: 1.92951924e-22 + art_sys_177: -1.67933814e-21 + art_sys_178: -2.59810639e-23 + art_sys_179: 1.91310825e-24 + art_sys_180: -3.57285776e-24 + art_sys_181: 4.75314796e-23 + art_sys_182: 9.30118513e-23 + art_sys_183: 1.01978519e-24 + art_sys_184: -1.81140706e-25 + art_sys_185: -4.96672773e-27 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -25871,167 +25871,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: 8.10606026e-26 - art_sys_26: -9.28682551e-24 - art_sys_27: -1.46799097e-23 - art_sys_28: -8.92461733e-43 - art_sys_29: 5.08736127e-42 - art_sys_30: -3.84986226e-22 - art_sys_31: 5.77868369e-20 - art_sys_32: 2.59627848e-19 - art_sys_33: 9.18605772e-19 - art_sys_34: -1.49676093e-36 - art_sys_35: -2.44612691e-36 - art_sys_36: -2.03606313e-36 - art_sys_37: -5.03289548e-37 - art_sys_38: -1.92392281e-18 - art_sys_39: -7.26082887e-36 - art_sys_40: 6.27831507e-36 - art_sys_41: 6.76210089e-36 - art_sys_42: 1.98335113e-33 - art_sys_43: 1.07511785e-16 - art_sys_44: -1.84313112e-16 - art_sys_45: 2.64520084e-15 - art_sys_46: -2.09688786e-32 - art_sys_47: -2.13829610e-32 - art_sys_48: 1.98701467e-27 - art_sys_49: -1.76618630e-14 - art_sys_50: 2.12437685e-14 - art_sys_51: 2.82165860e-15 - art_sys_52: 6.52711576e-15 - art_sys_53: 1.19789847e-13 - art_sys_54: 2.71998328e-14 - art_sys_55: 9.20408277e-15 - art_sys_56: -1.45308429e-13 - art_sys_57: 6.97766699e-25 - art_sys_58: 4.86668904e-14 - art_sys_59: 2.42210340e-13 - art_sys_60: -3.61564261e-24 - art_sys_61: 1.85764111e-23 - art_sys_62: 8.65488291e-25 - art_sys_63: -5.63572239e-13 - art_sys_64: -1.02823317e-28 - art_sys_65: -4.04755892e-14 - art_sys_66: 6.22788672e-14 - art_sys_67: 9.99264728e-24 - art_sys_68: -5.38984443e-13 - art_sys_69: 1.23383224e-11 - art_sys_70: 1.09069886e-22 - art_sys_71: 8.14501404e-25 - art_sys_72: 8.82970000e-26 - art_sys_73: 6.12006772e-14 - art_sys_74: 1.36348670e-15 - art_sys_75: 2.29920004e-14 - art_sys_76: 9.90556346e-14 - art_sys_77: 3.51361308e-20 - art_sys_78: 3.17596417e-11 - art_sys_79: -6.92037271e-15 - art_sys_80: -4.64022084e-14 - art_sys_81: 1.67715348e-15 - art_sys_82: 1.00874960e-15 - art_sys_83: -4.90867843e-14 - art_sys_84: 4.86704421e-17 - art_sys_85: -3.05157214e-16 - art_sys_86: 4.53528370e-14 - art_sys_87: 4.75621489e-22 - art_sys_88: 4.19877425e-14 - art_sys_89: 9.46254377e-14 - art_sys_90: -4.62331925e-22 - art_sys_91: 1.13805937e-09 - art_sys_92: -2.23293729e-21 - art_sys_93: 2.19184659e-22 - art_sys_94: 1.27544588e-19 - art_sys_95: -6.43564044e-09 - art_sys_96: 5.55070945e-13 - art_sys_97: 6.87486221e-09 - art_sys_98: -6.28949475e-18 - art_sys_99: -1.08469956e-21 - art_sys_100: -6.94472011e-08 - art_sys_101: 2.80065434e-16 - art_sys_102: -2.14313550e-16 - art_sys_103: 1.41778111e-07 - art_sys_104: 3.34141370e-19 - art_sys_105: 7.66898619e-17 - art_sys_106: -1.29873824e-13 - art_sys_107: 3.10763222e-11 - art_sys_108: -4.57285206e-12 - art_sys_109: -2.45256721e-10 - art_sys_110: 2.66262035e-07 - art_sys_111: -2.78065093e-14 - art_sys_112: -1.21022320e-06 - art_sys_113: -7.62056219e-11 - art_sys_114: 1.10278962e-13 - art_sys_115: -7.22952411e-08 - art_sys_116: -4.76486566e-12 - art_sys_117: -1.18166280e-13 - art_sys_118: 5.56820421e-06 - art_sys_119: 2.11592348e-13 - art_sys_120: 2.99526324e-13 - art_sys_121: 4.44951131e-06 - art_sys_122: -5.52915572e-13 - art_sys_123: -8.21808148e-13 - art_sys_124: -1.45837784e-05 - art_sys_125: -2.46964740e-10 - art_sys_126: 2.42365795e-05 - art_sys_127: 3.55557807e-11 - art_sys_128: -2.73076821e-06 - art_sys_129: -6.67376442e-13 - art_sys_130: -4.56725912e-06 - art_sys_131: -7.01532122e-09 - art_sys_132: 3.12092997e-10 - art_sys_133: -4.33066479e-06 - art_sys_134: -4.96455013e-11 - art_sys_135: -2.33327701e-09 - art_sys_136: 2.51700018e-06 - art_sys_137: -7.87719698e-12 - art_sys_138: 1.35239559e-18 - art_sys_139: -8.45893345e-09 - art_sys_140: -5.88526503e-07 - art_sys_141: -3.25363906e-08 - art_sys_142: 5.52837862e-08 - art_sys_143: 7.41277252e-12 - art_sys_144: 3.60481925e-12 - art_sys_145: 4.35719405e-11 - art_sys_146: -0.0 - art_sys_147: 2.05936340e-10 - art_sys_148: -2.37357120e-09 - art_sys_149: -2.37357120e-09 - art_sys_150: -1.68962394e-10 - art_sys_151: -1.68962394e-10 - art_sys_152: -2.92542927e-10 - art_sys_153: -6.00659338e-11 - art_sys_154: 4.79444136e-14 - art_sys_155: -4.07411782e-23 - art_sys_156: -1.74288582e-25 - art_sys_157: 8.28260236e-26 - art_sys_158: -0.0 - art_sys_159: -5.82668135e-09 - art_sys_160: -8.95879829e-10 - art_sys_161: 5.94500684e-09 - art_sys_162: 1.34276032e-10 - art_sys_163: -5.17298019e-09 - art_sys_164: -1.35070345e-09 - art_sys_165: -1.05977926e-11 - art_sys_166: 4.40593881e-18 - art_sys_167: 4.77012344e-18 - art_sys_168: -1.25719049e-18 - art_sys_169: 7.62884099e-20 - art_sys_170: 2.58697389e-20 - art_sys_171: -2.48859954e-20 - art_sys_172: 6.21915202e-20 - art_sys_173: -4.99262611e-22 - art_sys_174: -1.83000115e-21 - art_sys_175: -6.24201738e-24 - art_sys_176: 7.26666431e-22 - art_sys_177: 4.50447812e-22 - art_sys_178: 4.99081049e-23 - art_sys_179: 2.80884589e-22 - art_sys_180: 1.81201732e-21 - art_sys_181: -3.54751327e-23 - art_sys_182: -1.61822883e-22 - art_sys_183: -2.44255945e-24 - art_sys_184: 6.98452951e-27 - art_sys_185: -3.61028329e-26 + art_sys_25: 3.63240753e-100 + art_sys_26: 1.90282112e-94 + art_sys_27: -1.19512696e-87 + art_sys_28: 7.15032462e-87 + art_sys_29: 2.74634402e-76 + art_sys_30: 2.23217906e-73 + art_sys_31: 1.04413520e-70 + art_sys_32: -1.24727576e-62 + art_sys_33: -3.73783253e-57 + art_sys_34: -3.76862296e-50 + art_sys_35: -2.64188469e-51 + art_sys_36: 8.10606026e-26 + art_sys_37: -9.28682551e-24 + art_sys_38: -1.46799097e-23 + art_sys_39: -3.84986226e-22 + art_sys_40: -5.77868369e-20 + art_sys_41: 2.59627848e-19 + art_sys_42: 9.18605772e-19 + art_sys_43: 1.92392281e-18 + art_sys_44: -1.07511785e-16 + art_sys_45: 1.84313112e-16 + art_sys_46: 2.64520084e-15 + art_sys_47: 5.03582620e-32 + art_sys_48: 1.70233082e-31 + art_sys_49: 9.26011265e-32 + art_sys_50: 9.20408277e-15 + art_sys_51: 1.45308429e-13 + art_sys_52: 2.79885224e-30 + art_sys_53: -6.01223548e-30 + art_sys_54: -3.39706514e-30 + art_sys_55: 2.63941996e-30 + art_sys_56: 7.91257092e-31 + art_sys_57: -5.63572239e-13 + art_sys_58: 5.38984462e-13 + art_sys_59: -3.03471457e-30 + art_sys_60: 7.54641592e-29 + art_sys_61: 1.23383224e-11 + art_sys_62: 6.07737556e-29 + art_sys_63: -4.47510318e-27 + art_sys_64: -4.01728167e-15 + art_sys_65: 1.71923557e-15 + art_sys_66: -3.09914292e-14 + art_sys_67: 3.47779007e-15 + art_sys_68: -8.53444252e-14 + art_sys_69: -2.57469141e-15 + art_sys_70: 1.18100174e-14 + art_sys_71: -5.00088579e-14 + art_sys_72: 7.48177026e-15 + art_sys_73: 1.36146140e-14 + art_sys_74: 3.17596416e-11 + art_sys_75: -2.56033586e-14 + art_sys_76: 3.35391091e-14 + art_sys_77: 5.02640109e-15 + art_sys_78: 1.00066737e-14 + art_sys_79: -1.20192546e-14 + art_sys_80: -4.16533741e-15 + art_sys_81: 1.33567862e-14 + art_sys_82: -4.40953517e-22 + art_sys_83: -6.93223347e-16 + art_sys_84: 6.52521402e-16 + art_sys_85: 3.43248561e-16 + art_sys_86: -5.84000602e-17 + art_sys_87: 9.74615208e-15 + art_sys_88: 9.92530359e-15 + art_sys_89: 8.23748957e-18 + art_sys_90: 4.03745415e-15 + art_sys_91: 2.49904258e-23 + art_sys_92: -3.38352196e-18 + art_sys_93: 9.97730964e-18 + art_sys_94: -3.00889137e-14 + art_sys_95: -1.13805940e-09 + art_sys_96: -2.39170793e-18 + art_sys_97: 1.23623992e-18 + art_sys_98: 6.43563548e-09 + art_sys_99: 4.49580250e-16 + art_sys_100: 6.87479895e-09 + art_sys_101: 7.23330917e-15 + art_sys_102: -6.94475793e-08 + art_sys_103: 4.77808936e-15 + art_sys_104: 3.11601064e-16 + art_sys_105: -1.89088844e-11 + art_sys_106: -9.01562011e-13 + art_sys_107: -1.41778839e-07 + art_sys_108: -3.02718204e-11 + art_sys_109: -1.34539783e-10 + art_sys_110: 2.66271011e-07 + art_sys_111: -1.85452460e-14 + art_sys_112: -5.44355014e-12 + art_sys_113: -3.03156842e-14 + art_sys_114: 2.03925937e-10 + art_sys_115: -8.99715896e-15 + art_sys_116: -1.21022224e-06 + art_sys_117: 1.27101070e-09 + art_sys_118: -4.68861972e-13 + art_sys_119: 7.22897486e-08 + art_sys_120: 4.50441435e-14 + art_sys_121: -3.25702257e-10 + art_sys_122: 6.77343890e-13 + art_sys_123: -5.56791736e-06 + art_sys_124: -1.78027950e-13 + art_sys_125: -1.15360772e-10 + art_sys_126: 4.47080410e-13 + art_sys_127: -4.48393297e-06 + art_sys_128: 9.83398444e-14 + art_sys_129: -7.98248035e-11 + art_sys_130: 1.45614524e-05 + art_sys_131: 9.77601430e-10 + art_sys_132: 2.35591520e-12 + art_sys_133: -2.42292930e-05 + art_sys_134: -1.75140807e-11 + art_sys_135: -7.17459059e-12 + art_sys_136: 3.44450458e-10 + art_sys_137: 2.68648093e-06 + art_sys_138: -5.03730452e-11 + art_sys_139: 4.62622792e-06 + art_sys_140: -3.97725680e-11 + art_sys_141: 5.67715864e-08 + art_sys_142: -1.41204467e-10 + art_sys_143: 4.32265307e-06 + art_sys_144: -4.74997450e-11 + art_sys_145: -1.35403532e-10 + art_sys_146: 2.51919798e-06 + art_sys_147: -5.38310604e-11 + art_sys_148: -2.36120503e-13 + art_sys_149: -3.81989111e-09 + art_sys_150: 5.95873040e-07 + art_sys_151: 6.41227790e-09 + art_sys_152: 6.99501320e-11 + art_sys_153: -8.76063661e-08 + art_sys_154: -9.03649129e-14 + art_sys_155: 5.64151800e-12 + art_sys_156: -0.0 + art_sys_157: 4.47754576e-10 + art_sys_158: 0.0 + art_sys_159: -3.19619990e-10 + art_sys_160: 4.29034472e-11 + art_sys_161: -4.77605059e-11 + art_sys_162: -4.77605059e-11 + art_sys_163: 3.36193036e-11 + art_sys_164: 3.36193036e-11 + art_sys_165: -2.36097435e-25 + art_sys_166: 7.24443015e-26 + art_sys_167: 0.0 + art_sys_168: -4.85004066e-19 + art_sys_169: -9.16488413e-19 + art_sys_170: 7.25297063e-20 + art_sys_171: 1.35631538e-19 + art_sys_172: -2.43297973e-20 + art_sys_173: 5.46198279e-21 + art_sys_174: 4.87493661e-21 + art_sys_175: 3.44412795e-22 + art_sys_176: -2.71463686e-22 + art_sys_177: 1.92745079e-22 + art_sys_178: 9.08154164e-23 + art_sys_179: -6.59093275e-24 + art_sys_180: -8.51780144e-24 + art_sys_181: 2.08069832e-22 + art_sys_182: -1.73798973e-22 + art_sys_183: -1.66439900e-24 + art_sys_184: 1.51005961e-25 + art_sys_185: 5.96869256e-27 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -26162,167 +26162,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: -3.45845938e-27 - art_sys_26: 5.34551977e-25 - art_sys_27: 5.64548878e-24 - art_sys_28: 1.67960226e-42 - art_sys_29: -2.13404167e-42 - art_sys_30: -4.29973547e-23 - art_sys_31: 4.87860419e-21 - art_sys_32: 1.62458361e-20 - art_sys_33: 6.90829894e-20 - art_sys_34: -1.01974736e-37 - art_sys_35: -1.83321610e-37 - art_sys_36: -1.73788903e-37 - art_sys_37: -3.85242898e-38 - art_sys_38: -1.60488798e-19 - art_sys_39: -6.20800876e-37 - art_sys_40: 5.26049016e-37 - art_sys_41: 5.60153147e-37 - art_sys_42: 3.08577470e-34 - art_sys_43: 1.67274544e-17 - art_sys_44: -5.91693550e-18 - art_sys_45: 3.08128012e-16 - art_sys_46: -2.35605577e-33 - art_sys_47: -2.43265993e-33 - art_sys_48: -5.73591364e-30 - art_sys_49: -2.03664828e-15 - art_sys_50: 3.46529318e-15 - art_sys_51: -2.78677874e-16 - art_sys_52: 3.09066047e-14 - art_sys_53: -2.19562491e-14 - art_sys_54: -5.93958883e-14 - art_sys_55: -2.65519013e-17 - art_sys_56: -1.43191210e-14 - art_sys_57: -1.99697365e-27 - art_sys_58: -1.21109392e-13 - art_sys_59: -2.99853695e-13 - art_sys_60: -3.56295055e-25 - art_sys_61: 1.83055541e-24 - art_sys_62: 8.52878139e-26 - art_sys_63: -6.72824031e-14 - art_sys_64: -1.10445483e-29 - art_sys_65: 4.54688616e-14 - art_sys_66: -6.79758763e-14 - art_sys_67: 1.19288471e-24 - art_sys_68: 3.99351497e-13 - art_sys_69: 1.70142488e-13 - art_sys_70: 1.30206172e-23 - art_sys_71: 1.55233500e-25 - art_sys_72: 4.64914181e-25 - art_sys_73: -2.43777646e-15 - art_sys_74: 2.07727673e-14 - art_sys_75: 1.11284312e-15 - art_sys_76: -1.01728325e-13 - art_sys_77: 8.21832239e-22 - art_sys_78: 1.75953574e-12 - art_sys_79: -3.54183557e-15 - art_sys_80: 4.77554704e-14 - art_sys_81: -8.02055543e-16 - art_sys_82: 2.24704941e-16 - art_sys_83: 5.01103075e-14 - art_sys_84: 4.90231498e-16 - art_sys_85: -2.59157868e-17 - art_sys_86: -4.07498832e-14 - art_sys_87: 1.40211227e-23 - art_sys_88: -1.21303768e-14 - art_sys_89: -2.09167281e-14 - art_sys_90: -5.99158435e-24 - art_sys_91: 4.67293816e-10 - art_sys_92: -1.33348749e-22 - art_sys_93: 1.60363242e-22 - art_sys_94: 2.13233971e-21 - art_sys_95: -5.83360022e-11 - art_sys_96: 1.67762773e-14 - art_sys_97: 5.49907331e-09 - art_sys_98: -2.46609127e-18 - art_sys_99: -4.28156016e-22 - art_sys_100: 3.12506901e-09 - art_sys_101: 1.21440066e-16 - art_sys_102: -1.05129252e-16 - art_sys_103: 4.90754976e-08 - art_sys_104: -3.29964867e-20 - art_sys_105: -1.89177526e-17 - art_sys_106: 7.43185618e-15 - art_sys_107: 2.86028257e-11 - art_sys_108: -1.33202189e-12 - art_sys_109: 3.46784983e-11 - art_sys_110: -1.03631204e-07 - art_sys_111: -3.96883900e-15 - art_sys_112: -1.75264357e-07 - art_sys_113: -3.81246529e-11 - art_sys_114: 1.07195860e-14 - art_sys_115: 8.76321552e-07 - art_sys_116: 1.86551165e-12 - art_sys_117: 5.79298639e-15 - art_sys_118: -6.46647132e-08 - art_sys_119: -3.32399610e-14 - art_sys_120: 5.04964453e-13 - art_sys_121: 4.03998230e-06 - art_sys_122: 2.48751499e-13 - art_sys_123: 1.59119962e-13 - art_sys_124: 3.47935957e-06 - art_sys_125: 3.69215383e-11 - art_sys_126: 1.01464647e-05 - art_sys_127: -2.99415119e-12 - art_sys_128: -1.77241676e-05 - art_sys_129: -3.23634535e-12 - art_sys_130: 2.59278405e-06 - art_sys_131: 9.35844372e-09 - art_sys_132: -4.99897084e-10 - art_sys_133: 3.25016088e-06 - art_sys_134: 3.81419515e-11 - art_sys_135: 3.13008980e-09 - art_sys_136: -3.50187412e-06 - art_sys_137: 1.29284600e-11 - art_sys_138: -4.70507342e-18 - art_sys_139: 1.50724133e-08 - art_sys_140: 1.05191367e-06 - art_sys_141: 6.22383366e-08 - art_sys_142: -1.08426365e-07 - art_sys_143: -1.27825096e-11 - art_sys_144: -6.38774243e-12 - art_sys_145: -8.16872112e-11 - art_sys_146: 0.0 - art_sys_147: -4.87917265e-10 - art_sys_148: 4.52577500e-09 - art_sys_149: 4.52577500e-09 - art_sys_150: 1.04682611e-09 - art_sys_151: 1.04682611e-09 - art_sys_152: 8.40936254e-10 - art_sys_153: -7.52457909e-12 - art_sys_154: -4.32572528e-14 - art_sys_155: -1.17848690e-22 - art_sys_156: 5.43245688e-25 - art_sys_157: -1.06988810e-25 - art_sys_158: 0.0 - art_sys_159: -4.51906397e-09 - art_sys_160: 1.13117065e-09 - art_sys_161: -1.65779214e-09 - art_sys_162: -5.12145638e-11 - art_sys_163: 9.37261003e-09 - art_sys_164: 2.50785261e-09 - art_sys_165: 2.04639186e-11 - art_sys_166: -8.18138445e-18 - art_sys_167: -8.85342024e-18 - art_sys_168: 2.31167472e-18 - art_sys_169: -1.56693058e-19 - art_sys_170: -4.98660113e-20 - art_sys_171: 3.15223228e-20 - art_sys_172: 6.26558440e-20 - art_sys_173: -2.03978994e-20 - art_sys_174: 4.01045398e-21 - art_sys_175: 1.05336824e-23 - art_sys_176: -2.14722639e-21 - art_sys_177: -6.84794744e-22 - art_sys_178: 9.92749085e-23 - art_sys_179: -4.16687089e-22 - art_sys_180: -2.22421005e-21 - art_sys_181: 4.67185342e-23 - art_sys_182: 1.53004060e-22 - art_sys_183: 2.12270805e-24 - art_sys_184: -1.27035159e-26 - art_sys_185: 3.04187824e-26 + art_sys_25: -1.53830016e-101 + art_sys_26: -8.05831951e-96 + art_sys_27: 5.06128236e-89 + art_sys_28: -3.02811443e-88 + art_sys_29: -1.16305824e-77 + art_sys_30: -9.45312833e-75 + art_sys_31: -4.42184243e-72 + art_sys_32: 5.28212905e-64 + art_sys_33: 1.58294696e-58 + art_sys_34: 1.59598650e-51 + art_sys_35: 1.11882042e-52 + art_sys_36: -3.45845938e-27 + art_sys_37: 5.34551977e-25 + art_sys_38: 5.64548878e-24 + art_sys_39: -4.29973547e-23 + art_sys_40: -4.87860419e-21 + art_sys_41: 1.62458361e-20 + art_sys_42: 6.90829894e-20 + art_sys_43: 1.60488798e-19 + art_sys_44: -1.67274544e-17 + art_sys_45: 5.91693550e-18 + art_sys_46: 3.08128012e-16 + art_sys_47: 6.01530741e-33 + art_sys_48: -1.99239410e-33 + art_sys_49: 9.59554499e-33 + art_sys_50: -2.65519013e-17 + art_sys_51: 1.43191210e-14 + art_sys_52: 2.89518782e-31 + art_sys_53: -5.89253170e-31 + art_sys_54: -3.22628193e-31 + art_sys_55: 2.83516508e-31 + art_sys_56: 1.84398326e-31 + art_sys_57: -6.72824031e-14 + art_sys_58: -3.99351511e-13 + art_sys_59: -5.64546316e-30 + art_sys_60: -2.91683455e-29 + art_sys_61: 1.70142488e-13 + art_sys_62: 8.11361090e-30 + art_sys_63: -2.65741683e-28 + art_sys_64: 2.52380987e-14 + art_sys_65: 7.66729522e-15 + art_sys_66: 1.97243911e-14 + art_sys_67: 2.26624260e-14 + art_sys_68: -7.93998098e-15 + art_sys_69: 2.94868681e-14 + art_sys_70: 6.06623357e-14 + art_sys_71: 1.21186925e-13 + art_sys_72: -2.15877560e-14 + art_sys_73: -2.94686481e-14 + art_sys_74: 1.75953573e-12 + art_sys_75: 4.66359705e-14 + art_sys_76: -2.08340518e-14 + art_sys_77: 9.64109417e-16 + art_sys_78: 1.48166294e-14 + art_sys_79: 2.26791226e-14 + art_sys_80: -4.11770321e-15 + art_sys_81: -2.40367673e-14 + art_sys_82: -2.44728043e-23 + art_sys_83: 2.22042571e-15 + art_sys_84: -1.88086591e-16 + art_sys_85: 6.28712580e-16 + art_sys_86: 1.24209886e-16 + art_sys_87: -2.00565324e-14 + art_sys_88: -7.48857501e-15 + art_sys_89: -2.23506484e-17 + art_sys_90: -8.20002666e-15 + art_sys_91: 1.34125829e-24 + art_sys_92: -1.04888453e-17 + art_sys_93: -2.30114859e-19 + art_sys_94: 3.99253418e-13 + art_sys_95: -4.67293889e-10 + art_sys_96: -9.82033205e-19 + art_sys_97: 5.07588211e-19 + art_sys_98: 5.83319187e-11 + art_sys_99: -9.59941511e-18 + art_sys_100: 5.49903906e-09 + art_sys_101: 5.70825303e-15 + art_sys_102: 3.12508562e-09 + art_sys_103: 3.95111951e-15 + art_sys_104: -1.99254938e-16 + art_sys_105: 5.76759751e-12 + art_sys_106: 4.05834601e-14 + art_sys_107: -4.90751953e-08 + art_sys_108: 9.18106651e-12 + art_sys_109: 1.54693787e-11 + art_sys_110: -1.03634630e-07 + art_sys_111: -3.04337666e-15 + art_sys_112: 2.11498562e-12 + art_sys_113: 1.33218189e-15 + art_sys_114: 1.89899207e-10 + art_sys_115: -1.71508527e-15 + art_sys_116: -1.75256283e-07 + art_sys_117: 6.42167001e-10 + art_sys_118: 1.90691382e-13 + art_sys_119: -8.76302968e-07 + art_sys_120: 3.83112945e-13 + art_sys_121: -5.39692073e-10 + art_sys_122: -2.44244016e-13 + art_sys_123: 6.46433797e-08 + art_sys_124: -7.11164742e-15 + art_sys_125: -1.21680370e-10 + art_sys_126: 4.92764227e-12 + art_sys_127: -4.03403825e-06 + art_sys_128: 2.30787656e-13 + art_sys_129: 1.12484451e-10 + art_sys_130: -3.51666811e-06 + art_sys_131: -1.46241595e-09 + art_sys_132: -1.80465845e-12 + art_sys_133: -1.01996604e-05 + art_sys_134: -3.66092611e-11 + art_sys_135: 1.18561524e-12 + art_sys_136: -6.12861548e-10 + art_sys_137: 1.77347322e-05 + art_sys_138: 1.82229338e-12 + art_sys_139: -2.62689637e-06 + art_sys_140: 8.63592771e-11 + art_sys_141: -5.36828492e-08 + art_sys_142: 1.39798996e-10 + art_sys_143: -3.25380434e-06 + art_sys_144: 6.94014973e-11 + art_sys_145: -2.04320885e-10 + art_sys_146: -3.51733730e-06 + art_sys_147: 7.20459631e-11 + art_sys_148: -7.63774377e-13 + art_sys_149: 7.30458410e-09 + art_sys_150: -1.06241796e-06 + art_sys_151: -1.69738360e-08 + art_sys_152: -1.33072298e-10 + art_sys_153: 1.64464071e-07 + art_sys_154: 3.51743204e-14 + art_sys_155: -1.74925249e-11 + art_sys_156: 0.0 + art_sys_157: -6.84145009e-10 + art_sys_158: -0.0 + art_sys_159: 2.54196907e-10 + art_sys_160: -1.37318752e-10 + art_sys_161: -4.42068524e-11 + art_sys_162: -4.42068524e-11 + art_sys_163: -7.05372998e-11 + art_sys_164: -7.05372998e-11 + art_sys_165: 7.34415154e-25 + art_sys_166: -2.41810097e-25 + art_sys_167: -0.0 + art_sys_168: 2.20111375e-18 + art_sys_169: 1.27470892e-18 + art_sys_170: -1.18374038e-19 + art_sys_171: -1.56463527e-19 + art_sys_172: 4.93101171e-20 + art_sys_173: -9.82233633e-21 + art_sys_174: -7.72720910e-21 + art_sys_175: -4.54990079e-22 + art_sys_176: 3.66528147e-22 + art_sys_177: 1.43958928e-21 + art_sys_178: -1.60660168e-22 + art_sys_179: 1.56092644e-23 + art_sys_180: 1.02564943e-23 + art_sys_181: -3.98226653e-22 + art_sys_182: 3.05352236e-22 + art_sys_183: 3.15352743e-24 + art_sys_184: -5.17921637e-26 + art_sys_185: -7.62246927e-27 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -26453,167 +26453,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: 2.73963393e-28 - art_sys_26: 1.26257371e-25 - art_sys_27: 9.40195404e-25 - art_sys_28: 2.63352168e-43 - art_sys_29: -3.53095055e-43 - art_sys_30: -3.82134416e-24 - art_sys_31: 3.87583470e-22 - art_sys_32: -1.34793103e-24 - art_sys_33: 2.97903274e-21 - art_sys_34: -2.30773059e-39 - art_sys_35: -7.71349565e-39 - art_sys_36: -1.12431372e-38 - art_sys_37: -1.82379988e-39 - art_sys_38: -7.73945229e-21 - art_sys_39: -3.04762001e-38 - art_sys_40: 2.59155973e-38 - art_sys_41: 2.73594091e-38 - art_sys_42: 4.10457254e-35 - art_sys_43: 2.22514264e-18 - art_sys_44: 4.16219887e-18 - art_sys_45: 1.07453675e-17 - art_sys_46: -6.41624851e-35 - art_sys_47: -6.21475432e-35 - art_sys_48: -7.02944434e-30 - art_sys_49: 2.66271287e-15 - art_sys_50: -1.67108538e-15 - art_sys_51: 7.89175985e-15 - art_sys_52: 5.60516090e-14 - art_sys_53: 2.84132769e-14 - art_sys_54: -2.96818258e-14 - art_sys_55: -3.25602369e-17 - art_sys_56: -3.42054994e-16 - art_sys_57: -2.46747486e-27 - art_sys_58: -4.80693877e-14 - art_sys_59: -6.29406756e-14 - art_sys_60: -8.51117809e-27 - art_sys_61: 4.37278123e-26 - art_sys_62: 2.03741456e-27 - art_sys_63: -7.00077806e-16 - art_sys_64: -3.52186554e-31 - art_sys_65: 5.76366405e-15 - art_sys_66: -7.45066343e-15 - art_sys_67: 1.23888448e-26 - art_sys_68: 9.46961624e-14 - art_sys_69: -3.16461685e-13 - art_sys_70: 1.35324744e-25 - art_sys_71: 1.29513345e-26 - art_sys_72: 9.61703432e-26 - art_sys_73: -7.88033539e-14 - art_sys_74: 7.21448965e-15 - art_sys_75: 9.24867873e-15 - art_sys_76: -8.47795010e-15 - art_sys_77: -9.59720035e-22 - art_sys_78: -6.69926779e-13 - art_sys_79: 4.60465707e-15 - art_sys_80: 3.49546752e-15 - art_sys_81: -3.27389920e-16 - art_sys_82: -8.28905717e-16 - art_sys_83: 3.59529470e-15 - art_sys_84: 5.20787785e-16 - art_sys_85: -8.60231624e-16 - art_sys_86: -3.43557233e-15 - art_sys_87: -1.07158311e-23 - art_sys_88: -2.46442387e-15 - art_sys_89: -9.75003906e-15 - art_sys_90: 1.18652363e-23 - art_sys_91: 2.29701095e-11 - art_sys_92: 4.60507717e-23 - art_sys_93: 2.56521978e-23 - art_sys_94: -3.26376337e-21 - art_sys_95: 2.78346732e-10 - art_sys_96: -5.72496372e-14 - art_sys_97: 4.43489208e-10 - art_sys_98: -1.08831440e-19 - art_sys_99: -1.99496328e-23 - art_sys_100: 4.05732413e-09 - art_sys_101: 6.67107728e-18 - art_sys_102: -7.03217624e-18 - art_sys_103: -1.18064796e-09 - art_sys_104: -2.00529865e-20 - art_sys_105: -6.52388914e-18 - art_sys_106: 7.81919354e-15 - art_sys_107: -1.23716386e-13 - art_sys_108: -1.00174247e-12 - art_sys_109: -1.08684517e-10 - art_sys_110: -3.28387943e-08 - art_sys_111: 8.66903500e-16 - art_sys_112: 6.84198301e-08 - art_sys_113: -9.32719486e-11 - art_sys_114: -4.13695282e-15 - art_sys_115: 1.25814982e-07 - art_sys_116: 5.88692540e-13 - art_sys_117: 6.80091096e-15 - art_sys_118: -5.83117943e-07 - art_sys_119: -1.72139902e-14 - art_sys_120: 4.47080753e-14 - art_sys_121: 1.35478509e-09 - art_sys_122: 7.35351258e-14 - art_sys_123: 1.06221893e-13 - art_sys_124: 2.69264726e-06 - art_sys_125: 2.80877324e-11 - art_sys_126: -2.28995895e-06 - art_sys_127: -2.52696227e-12 - art_sys_128: -6.94373017e-06 - art_sys_129: -6.96779893e-11 - art_sys_130: 1.24329974e-05 - art_sys_131: 6.57986343e-09 - art_sys_132: -7.06778954e-12 - art_sys_133: -2.33820824e-06 - art_sys_134: -1.69114581e-11 - art_sys_135: -3.18005744e-09 - art_sys_136: 3.16486257e-06 - art_sys_137: -2.94188855e-11 - art_sys_138: 7.36984464e-18 - art_sys_139: -2.40668084e-08 - art_sys_140: -1.74175890e-06 - art_sys_141: -1.07527326e-07 - art_sys_142: 2.20990376e-07 - art_sys_143: 2.12079330e-11 - art_sys_144: 1.02883813e-11 - art_sys_145: 1.60737339e-10 - art_sys_146: -0.0 - art_sys_147: 1.16970170e-09 - art_sys_148: -1.18463691e-08 - art_sys_149: -1.18463691e-08 - art_sys_150: -1.29280834e-09 - art_sys_151: -1.29280834e-09 - art_sys_152: -1.81865058e-09 - art_sys_153: -1.61124702e-10 - art_sys_154: 4.12249308e-14 - art_sys_155: 6.18516471e-23 - art_sys_156: -8.95641446e-25 - art_sys_157: -1.15672034e-25 + art_sys_25: 1.36110741e-102 + art_sys_26: 7.13010233e-97 + art_sys_27: -4.47828589e-90 + art_sys_28: 2.67931337e-89 + art_sys_29: 1.02908842e-78 + art_sys_30: 8.36424564e-76 + art_sys_31: 3.91250115e-73 + art_sys_32: -4.67369346e-65 + art_sys_33: -1.40061115e-59 + art_sys_34: -1.41214869e-52 + art_sys_35: -9.89946203e-54 + art_sys_36: 2.73963393e-28 + art_sys_37: 1.26257371e-25 + art_sys_38: 9.40195404e-25 + art_sys_39: -3.82134416e-24 + art_sys_40: -3.87583470e-22 + art_sys_41: -1.34793103e-24 + art_sys_42: 2.97903274e-21 + art_sys_43: 7.73945229e-21 + art_sys_44: -2.22514264e-18 + art_sys_45: -4.16219887e-18 + art_sys_46: 1.07453675e-17 + art_sys_47: 2.59369297e-34 + art_sys_48: -6.16155462e-34 + art_sys_49: 3.31638471e-34 + art_sys_50: -3.25602369e-17 + art_sys_51: 3.42054994e-16 + art_sys_52: 7.38178475e-33 + art_sys_53: -1.40000410e-32 + art_sys_54: -7.09546693e-33 + art_sys_55: 7.56966527e-33 + art_sys_56: 5.57991498e-33 + art_sys_57: -7.00077806e-16 + art_sys_58: -9.46961659e-14 + art_sys_59: -1.08044646e-30 + art_sys_60: -1.29412119e-29 + art_sys_61: -3.16461685e-13 + art_sys_62: -1.21946965e-31 + art_sys_63: 9.03514760e-29 + art_sys_64: 7.29344019e-15 + art_sys_65: 1.04019299e-14 + art_sys_66: -7.77699182e-15 + art_sys_67: 8.90933341e-14 + art_sys_68: -2.91990921e-14 + art_sys_69: 1.87153257e-14 + art_sys_70: 2.19102776e-14 + art_sys_71: 6.59476321e-15 + art_sys_72: -1.63499226e-15 + art_sys_73: 8.57697893e-16 + art_sys_74: -6.69926775e-13 + art_sys_75: -2.57338475e-15 + art_sys_76: -4.02640119e-14 + art_sys_77: 2.66472701e-14 + art_sys_78: 4.70248269e-15 + art_sys_79: -2.00481552e-15 + art_sys_80: 9.45456718e-16 + art_sys_81: 2.21317790e-15 + art_sys_82: 9.29714112e-24 + art_sys_83: 5.28038155e-16 + art_sys_84: -9.43746709e-16 + art_sys_85: -1.17587050e-15 + art_sys_86: -4.20317594e-16 + art_sys_87: 2.06624798e-15 + art_sys_88: 8.04408007e-16 + art_sys_89: 2.88082464e-17 + art_sys_90: 1.13196764e-15 + art_sys_91: -5.34889565e-25 + art_sys_92: 5.07858041e-17 + art_sys_93: -2.69058080e-17 + art_sys_94: 5.90381066e-14 + art_sys_95: -2.29701194e-11 + art_sys_96: -4.82703800e-20 + art_sys_97: 2.49495784e-20 + art_sys_98: -2.78347068e-10 + art_sys_99: -2.16049171e-17 + art_sys_100: 4.43487499e-10 + art_sys_101: 4.56047194e-16 + art_sys_102: 4.05734617e-09 + art_sys_103: 3.25836336e-16 + art_sys_104: -4.95457557e-17 + art_sys_105: 4.44529313e-12 + art_sys_106: 5.26744120e-14 + art_sys_107: 1.18074068e-09 + art_sys_108: 7.12838752e-12 + art_sys_109: 3.03691914e-11 + art_sys_110: -3.28398899e-08 + art_sys_111: 5.63855746e-16 + art_sys_112: 6.70794497e-13 + art_sys_113: 1.76704133e-15 + art_sys_114: -1.34886801e-11 + art_sys_115: 1.76131721e-16 + art_sys_116: 6.84208671e-08 + art_sys_117: -4.45958707e-11 + art_sys_118: 5.93586819e-14 + art_sys_119: -1.25811941e-07 + art_sys_120: 4.46155602e-14 + art_sys_121: 4.30717433e-12 + art_sys_122: -7.95625153e-14 + art_sys_123: 5.83045284e-07 + art_sys_124: 1.19145048e-14 + art_sys_125: -5.86595038e-11 + art_sys_126: 6.37226065e-13 + art_sys_127: 2.04322053e-08 + art_sys_128: 2.14500246e-14 + art_sys_129: -1.01739300e-10 + art_sys_130: -2.71954464e-06 + art_sys_131: 1.68915617e-09 + art_sys_132: -4.08587262e-13 + art_sys_133: 2.30129926e-06 + art_sys_134: -1.50819701e-11 + art_sys_135: 1.00707687e-12 + art_sys_136: 1.18014664e-09 + art_sys_137: 7.00667019e-06 + art_sys_138: -2.06540273e-12 + art_sys_139: -1.24050021e-05 + art_sys_140: -1.48270012e-10 + art_sys_141: -2.01761040e-10 + art_sys_142: -6.34049845e-11 + art_sys_143: 2.34278571e-06 + art_sys_144: -1.91443191e-10 + art_sys_145: 1.28225785e-10 + art_sys_146: 3.17047104e-06 + art_sys_147: -6.64342753e-11 + art_sys_148: -8.57962338e-12 + art_sys_149: -1.21026685e-08 + art_sys_150: 1.76560631e-06 + art_sys_151: 1.74234496e-08 + art_sys_152: 2.03454847e-10 + art_sys_153: -3.16978553e-07 + art_sys_154: 1.11489074e-14 + art_sys_155: -8.16385903e-12 + art_sys_156: -0.0 + art_sys_157: 1.61910439e-09 art_sys_158: 0.0 - art_sys_159: 7.47987625e-09 - art_sys_160: 1.13508494e-09 - art_sys_161: 2.18720200e-09 - art_sys_162: 8.47309516e-11 - art_sys_163: -1.65411789e-08 - art_sys_164: -4.13092730e-09 - art_sys_165: -4.06373186e-11 - art_sys_166: 1.49138694e-17 - art_sys_167: 1.62462297e-17 - art_sys_168: -4.24785461e-18 - art_sys_169: 2.75270758e-19 - art_sys_170: 7.46232012e-20 - art_sys_171: -5.61811502e-20 - art_sys_172: 8.99426772e-21 - art_sys_173: 3.15772069e-20 - art_sys_174: -5.44461459e-21 - art_sys_175: -2.04338409e-23 - art_sys_176: -5.35130855e-22 - art_sys_177: 9.52695930e-22 - art_sys_178: -3.05396132e-22 - art_sys_179: 4.43017665e-22 - art_sys_180: 2.55903600e-21 - art_sys_181: -5.72532267e-23 - art_sys_182: -2.34567833e-22 - art_sys_183: -3.53611257e-24 - art_sys_184: 5.35762707e-26 - art_sys_185: -2.91636771e-26 + art_sys_159: -2.03631030e-09 + art_sys_160: 6.19986904e-11 + art_sys_161: 1.42153553e-10 + art_sys_162: 1.42153553e-10 + art_sys_163: 1.99963530e-10 + art_sys_164: 1.99963530e-10 + art_sys_165: -2.14821112e-24 + art_sys_166: 7.03699014e-25 + art_sys_167: 0.0 + art_sys_168: -1.52028031e-18 + art_sys_169: -1.17722223e-18 + art_sys_170: 1.58400069e-19 + art_sys_171: 1.97262098e-19 + art_sys_172: -8.77843288e-20 + art_sys_173: 1.77238354e-20 + art_sys_174: 1.03352203e-20 + art_sys_175: 4.01654576e-22 + art_sys_176: -9.54481985e-23 + art_sys_177: -5.89635934e-21 + art_sys_178: 2.12673701e-22 + art_sys_179: -1.34225096e-23 + art_sys_180: -5.19712064e-23 + art_sys_181: 7.10153023e-22 + art_sys_182: -4.24093640e-22 + art_sys_183: -4.14552826e-24 + art_sys_184: -1.80164625e-25 + art_sys_185: 1.61692550e-26 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -26744,167 +26744,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: 1.33919756e-28 - art_sys_26: 1.52808715e-26 - art_sys_27: 1.07716143e-25 - art_sys_28: 2.98142509e-44 - art_sys_29: -4.03938137e-44 - art_sys_30: -2.26955421e-25 - art_sys_31: 1.60884049e-23 - art_sys_32: -2.43359680e-22 - art_sys_33: -4.17446253e-22 - art_sys_34: 1.02517738e-39 - art_sys_35: 1.15510213e-39 - art_sys_36: 1.89132528e-40 - art_sys_37: 1.96711028e-40 - art_sys_38: 1.03573016e-21 - art_sys_39: 4.12035947e-39 - art_sys_40: -3.27563406e-39 - art_sys_41: -3.44256324e-39 - art_sys_42: 3.35859983e-36 - art_sys_43: 1.82116329e-19 - art_sys_44: 1.05863740e-18 - art_sys_45: -3.43012312e-18 - art_sys_46: 3.03845098e-35 - art_sys_47: 3.21007817e-35 - art_sys_48: 5.37134341e-30 - art_sys_49: -6.66324675e-15 - art_sys_50: 1.78808071e-15 - art_sys_51: 5.44559669e-15 - art_sys_52: 4.76703221e-14 - art_sys_53: -3.12060813e-14 - art_sys_54: -7.46290907e-14 - art_sys_55: 2.48800195e-17 - art_sys_56: 1.04753648e-16 - art_sys_57: 1.88561290e-27 - art_sys_58: -1.44463297e-13 - art_sys_59: -3.56401698e-13 - art_sys_60: 2.60609547e-27 - art_sys_61: -1.33909572e-26 - art_sys_62: -6.24413115e-28 - art_sys_63: 1.10376361e-15 - art_sys_64: -5.13612861e-31 - art_sys_65: 5.16218744e-14 - art_sys_66: -7.91357185e-14 - art_sys_67: -1.95738527e-26 - art_sys_68: 1.12072266e-14 - art_sys_69: -6.99702119e-14 - art_sys_70: -2.13633316e-25 - art_sys_71: -3.22856707e-28 - art_sys_72: 1.03968228e-26 - art_sys_73: -5.01780692e-15 - art_sys_74: -2.34869197e-14 - art_sys_75: 7.12342266e-15 - art_sys_76: -1.20395944e-13 - art_sys_77: -2.16373614e-22 - art_sys_78: -1.76075953e-13 - art_sys_79: 2.44381752e-15 - art_sys_80: 5.70173009e-14 - art_sys_81: -5.79490095e-16 - art_sys_82: 8.48157585e-16 - art_sys_83: 6.02030022e-14 - art_sys_84: 5.43831543e-16 - art_sys_85: 3.91922189e-17 - art_sys_86: -4.64211935e-14 - art_sys_87: -2.54771090e-24 - art_sys_88: -2.06485089e-14 - art_sys_89: -2.12470617e-14 - art_sys_90: 2.61652134e-24 - art_sys_91: -1.49835149e-11 - art_sys_92: 1.23529940e-23 - art_sys_93: 1.90721185e-24 - art_sys_94: -6.01319192e-22 - art_sys_95: 4.65329005e-11 - art_sys_96: 6.25198884e-15 - art_sys_97: -1.88749602e-10 - art_sys_98: 8.10399396e-20 - art_sys_99: 1.39311341e-23 - art_sys_100: 4.17873648e-10 - art_sys_101: -3.78243992e-18 - art_sys_102: 3.07439453e-18 - art_sys_103: -2.77485660e-09 - art_sys_104: -1.86961654e-21 - art_sys_105: -9.11557286e-20 - art_sys_106: 7.42499628e-16 - art_sys_107: -3.19845857e-12 - art_sys_108: -1.31594008e-12 - art_sys_109: -1.58606686e-10 - art_sys_110: 1.37387299e-09 - art_sys_111: 3.00445852e-16 - art_sys_112: 2.18732384e-08 - art_sys_113: -2.45901085e-11 - art_sys_114: -1.07153660e-15 - art_sys_115: -5.03558441e-08 - art_sys_116: -2.51904919e-14 - art_sys_117: 7.26466644e-16 - art_sys_118: -7.29381679e-08 - art_sys_119: -5.39323030e-16 - art_sys_120: -2.92744331e-14 - art_sys_121: -4.24751621e-07 - art_sys_122: -4.14898207e-15 - art_sys_123: -3.71523406e-15 - art_sys_124: -6.61467272e-08 - art_sys_125: -5.53038664e-13 - art_sys_126: -1.79599402e-06 - art_sys_127: 4.82681636e-13 - art_sys_128: 1.81446528e-06 - art_sys_129: -3.22494712e-11 - art_sys_130: 4.44832118e-06 - art_sys_131: -3.07996763e-09 - art_sys_132: 4.11752531e-10 - art_sys_133: -9.08761221e-06 - art_sys_134: -7.26200906e-11 - art_sys_135: 2.29390222e-09 - art_sys_136: -2.09593862e-06 - art_sys_137: 2.24123188e-11 - art_sys_138: -9.21744096e-18 - art_sys_139: 2.92280218e-08 - art_sys_140: 2.12062736e-06 - art_sys_141: 1.33620802e-07 - art_sys_142: -3.43962341e-07 - art_sys_143: -2.28066360e-11 - art_sys_144: -1.33258550e-11 - art_sys_145: -2.42628742e-10 - art_sys_146: 0.0 - art_sys_147: -2.02371795e-09 - art_sys_148: 1.78637946e-08 - art_sys_149: 1.78637946e-08 - art_sys_150: 5.68308174e-09 - art_sys_151: 5.68308174e-09 - art_sys_152: 3.40187115e-09 - art_sys_153: -2.72483298e-10 - art_sys_154: 3.05485628e-13 - art_sys_155: -7.55701084e-22 - art_sys_156: 3.22624065e-24 - art_sys_157: 2.23849213e-26 + art_sys_25: 6.26066347e-103 + art_sys_26: 3.27962163e-97 + art_sys_27: -2.05986999e-90 + art_sys_28: 1.23239951e-89 + art_sys_29: 4.73348164e-79 + art_sys_30: 3.84728879e-76 + art_sys_31: 1.79962697e-73 + art_sys_32: -2.14975138e-65 + art_sys_33: -6.44236895e-60 + art_sys_34: -6.49543801e-53 + art_sys_35: -4.55343992e-54 + art_sys_36: 1.33919756e-28 + art_sys_37: 1.52808715e-26 + art_sys_38: 1.07716143e-25 + art_sys_39: -2.26955421e-25 + art_sys_40: -1.60884049e-23 + art_sys_41: -2.43359680e-22 + art_sys_42: -4.17446253e-22 + art_sys_43: -1.03573016e-21 + art_sys_44: -1.82116329e-19 + art_sys_45: -1.05863740e-18 + art_sys_46: -3.43012312e-18 + art_sys_47: -5.57717008e-35 + art_sys_48: 5.88765596e-34 + art_sys_49: -5.87596713e-35 + art_sys_50: 2.48800195e-17 + art_sys_51: -1.04753648e-16 + art_sys_52: -2.48265354e-33 + art_sys_53: 4.19702801e-33 + art_sys_54: 1.92834257e-33 + art_sys_55: -2.69017741e-33 + art_sys_56: -8.64146319e-34 + art_sys_57: 1.10376361e-15 + art_sys_58: -1.12072270e-14 + art_sys_59: -1.06769732e-31 + art_sys_60: -1.08556864e-30 + art_sys_61: -6.99702119e-14 + art_sys_62: -2.09725012e-31 + art_sys_63: 2.43575283e-29 + art_sys_64: 2.06118419e-15 + art_sys_65: 4.99748207e-15 + art_sys_66: -7.90945290e-15 + art_sys_67: 6.24394022e-14 + art_sys_68: -6.76459895e-15 + art_sys_69: -2.28395646e-16 + art_sys_70: -1.50524485e-14 + art_sys_71: -5.00706147e-14 + art_sys_72: 9.05132978e-15 + art_sys_73: 1.25912540e-14 + art_sys_74: -1.76075952e-13 + art_sys_75: -1.74615164e-14 + art_sys_76: 3.97078799e-14 + art_sys_77: -1.51152287e-17 + art_sys_78: 8.65418596e-15 + art_sys_79: -8.01170289e-15 + art_sys_80: -5.88085119e-15 + art_sys_81: 8.17741134e-15 + art_sys_82: 2.44739319e-24 + art_sys_83: 1.70237588e-15 + art_sys_84: 7.88744966e-17 + art_sys_85: -4.04801733e-16 + art_sys_86: -3.65968635e-16 + art_sys_87: 5.99364246e-15 + art_sys_88: 2.47817352e-15 + art_sys_89: -5.73224960e-17 + art_sys_90: 2.53706653e-15 + art_sys_91: -1.38298762e-25 + art_sys_92: 1.77543803e-17 + art_sys_93: -6.15983450e-18 + art_sys_94: -2.14983817e-14 + art_sys_95: 1.49835162e-11 + art_sys_96: 3.14886726e-20 + art_sys_97: -1.62757258e-20 + art_sys_98: -4.65327616e-11 + art_sys_99: -3.04851945e-18 + art_sys_100: -1.88748280e-10 + art_sys_101: -1.96607871e-16 + art_sys_102: 4.17875938e-10 + art_sys_103: -1.34487209e-16 + art_sys_104: 9.56600599e-19 + art_sys_105: 3.78354642e-13 + art_sys_106: 5.42464567e-15 + art_sys_107: 2.77485220e-09 + art_sys_108: 6.27645285e-13 + art_sys_109: 1.25734106e-11 + art_sys_110: 1.37391725e-09 + art_sys_111: 2.45532096e-16 + art_sys_112: -2.79638257e-14 + art_sys_113: 1.83523532e-16 + art_sys_114: -7.15074189e-11 + art_sys_115: 1.29617752e-16 + art_sys_116: 2.18727590e-08 + art_sys_117: -6.22576462e-11 + art_sys_118: -2.68354060e-15 + art_sys_119: 5.03548257e-08 + art_sys_120: -1.71311981e-14 + art_sys_121: 2.58882032e-10 + art_sys_122: 2.92063529e-15 + art_sys_123: 7.28979133e-08 + art_sys_124: 2.30858306e-15 + art_sys_125: -8.60651324e-11 + art_sys_126: -2.92231718e-13 + art_sys_127: 4.39990772e-07 + art_sys_128: -1.19402587e-14 + art_sys_129: 1.20608080e-10 + art_sys_130: 5.45669643e-08 + art_sys_131: -1.64680270e-09 + art_sys_132: 6.34879784e-14 + art_sys_133: 1.81995771e-06 + art_sys_134: -6.22833378e-12 + art_sys_135: 5.01290407e-14 + art_sys_136: -1.73035177e-09 + art_sys_137: -1.78301982e-06 + art_sys_138: -5.09022480e-12 + art_sys_139: -4.39401537e-06 + art_sys_140: 2.35362345e-10 + art_sys_141: 8.77790351e-08 + art_sys_142: -3.15895288e-10 + art_sys_143: 9.10760418e-06 + art_sys_144: -6.44523087e-11 + art_sys_145: -1.57265408e-09 + art_sys_146: -2.12839996e-06 + art_sys_147: 5.40495327e-11 + art_sys_148: 2.77402081e-11 + art_sys_149: 1.65040581e-08 + art_sys_150: -2.15563270e-06 + art_sys_151: -2.98991253e-08 + art_sys_152: -2.09572184e-10 + art_sys_153: 4.52680821e-07 + art_sys_154: -4.69867266e-16 + art_sys_155: 9.86592841e-11 + art_sys_156: 0.0 + art_sys_157: -1.70363926e-09 art_sys_158: -0.0 - art_sys_159: 2.79978939e-09 - art_sys_160: 3.81602551e-10 - art_sys_161: 7.01623997e-09 - art_sys_162: 7.76051821e-11 - art_sys_163: 2.16577688e-08 - art_sys_164: 5.04568574e-09 - art_sys_165: 5.07470196e-11 - art_sys_166: -2.04206070e-17 - art_sys_167: -2.22801452e-17 - art_sys_168: 5.70309179e-18 - art_sys_169: -4.34240798e-19 - art_sys_170: -1.34684825e-19 - art_sys_171: 8.50797523e-20 - art_sys_172: 1.41682691e-19 - art_sys_173: -4.25239199e-20 - art_sys_174: 1.49756744e-20 - art_sys_175: 2.87557536e-23 - art_sys_176: -4.23653691e-22 - art_sys_177: 5.63672477e-22 - art_sys_178: 5.55692272e-22 - art_sys_179: -5.51303098e-23 - art_sys_180: -5.43217494e-22 - art_sys_181: -1.21856866e-23 - art_sys_182: 3.07100306e-22 - art_sys_183: 5.21015343e-24 - art_sys_184: -1.39828612e-26 - art_sys_185: -5.94573607e-26 + art_sys_159: 2.14478939e-09 + art_sys_160: 7.99304617e-11 + art_sys_161: -1.10505117e-09 + art_sys_162: -1.10505117e-09 + art_sys_163: -1.70109034e-10 + art_sys_164: -1.70109034e-10 + art_sys_165: 3.48425036e-24 + art_sys_166: -1.19279818e-24 + art_sys_167: -0.0 + art_sys_168: 3.17340466e-18 + art_sys_169: 9.49830564e-19 + art_sys_170: -1.00620543e-18 + art_sys_171: -2.64994665e-19 + art_sys_172: 1.24824994e-19 + art_sys_173: -1.90242899e-20 + art_sys_174: -7.70096272e-21 + art_sys_175: -2.36139264e-22 + art_sys_176: 1.50368175e-22 + art_sys_177: 3.44278312e-21 + art_sys_178: -8.94287911e-23 + art_sys_179: -1.29016905e-23 + art_sys_180: 5.37511547e-23 + art_sys_181: -5.64235953e-22 + art_sys_182: 3.98916306e-22 + art_sys_183: 4.15684062e-24 + art_sys_184: -1.92499556e-25 + art_sys_185: -9.99674955e-26 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -27035,167 +27035,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: 1.78692266e-29 - art_sys_26: 1.27093896e-27 - art_sys_27: 8.74606783e-27 - art_sys_28: 2.40759782e-45 - art_sys_29: -3.27726661e-45 - art_sys_30: 1.73766005e-27 - art_sys_31: -2.07100625e-24 - art_sys_32: -4.62429891e-23 - art_sys_33: -1.23872245e-22 - art_sys_34: 2.27745276e-40 - art_sys_35: 3.35408246e-40 - art_sys_36: 2.02823581e-40 - art_sys_37: 6.44683713e-41 - art_sys_38: 3.18836892e-22 - art_sys_39: 1.26999858e-39 - art_sys_40: -1.03088026e-39 - art_sys_41: -1.08261014e-39 - art_sys_42: -3.25507247e-38 - art_sys_43: -1.76052766e-21 - art_sys_44: 1.12688396e-19 - art_sys_45: -6.53941319e-19 - art_sys_46: 5.46625930e-36 - art_sys_47: 5.60763469e-36 - art_sys_48: 1.66540561e-30 - art_sys_49: -1.11785500e-14 - art_sys_50: -6.40123363e-16 - art_sys_51: -1.13681270e-14 - art_sys_52: 4.09150693e-14 - art_sys_53: 2.92218283e-14 - art_sys_54: -1.94643559e-14 - art_sys_55: 7.71414326e-18 - art_sys_56: 8.77537465e-18 - art_sys_57: 5.84684327e-28 - art_sys_58: -3.92024208e-14 - art_sys_59: -5.77043388e-14 - art_sys_60: 2.18281671e-28 - art_sys_61: -1.12164837e-27 - art_sys_62: -5.23546947e-29 - art_sys_63: 1.52652431e-16 - art_sys_64: -9.99571626e-32 - art_sys_65: 1.04243268e-14 - art_sys_66: -1.21862251e-14 - art_sys_67: -2.70684022e-27 - art_sys_68: 6.58749879e-16 - art_sys_69: -6.29802390e-15 - art_sys_70: -2.95442878e-26 - art_sys_71: -1.56275257e-28 - art_sys_72: 4.99897910e-28 - art_sys_73: 3.81291474e-15 - art_sys_74: -3.17533942e-14 - art_sys_75: 1.62224533e-14 - art_sys_76: -1.55831848e-14 - art_sys_77: -1.57771455e-23 - art_sys_78: -1.32354012e-14 - art_sys_79: -2.63417957e-16 - art_sys_80: 6.63482726e-15 - art_sys_81: 9.32215091e-16 - art_sys_82: 1.16242696e-15 - art_sys_83: 6.58317984e-15 - art_sys_84: -2.18897476e-16 - art_sys_85: -5.09796522e-18 - art_sys_86: -4.38544251e-15 - art_sys_87: -2.35733308e-25 - art_sys_88: -1.81156963e-15 - art_sys_89: -1.26752485e-15 - art_sys_90: 2.37402968e-25 - art_sys_91: -2.86789448e-12 - art_sys_92: 9.09045880e-25 - art_sys_93: 3.61714047e-26 - art_sys_94: -2.39571321e-23 - art_sys_95: -3.50846964e-12 - art_sys_96: 4.48478789e-15 - art_sys_97: -4.29213299e-11 - art_sys_98: 1.49717034e-20 - art_sys_99: 2.64350842e-24 - art_sys_100: -1.25059495e-10 - art_sys_101: -7.54970286e-19 - art_sys_102: 6.70742923e-19 - art_sys_103: -2.69928735e-10 - art_sys_104: 4.53332773e-22 - art_sys_105: 2.56277024e-19 - art_sys_106: -2.48814751e-16 - art_sys_107: 2.10218654e-13 - art_sys_108: 2.98415487e-12 - art_sys_109: 3.16306715e-10 - art_sys_110: 1.79297139e-09 - art_sys_111: -4.47690193e-19 - art_sys_112: -1.18790271e-09 - art_sys_113: 5.44703839e-11 - art_sys_114: 4.56686119e-17 - art_sys_115: -1.39912600e-08 - art_sys_116: -3.21977798e-14 - art_sys_117: -1.98261026e-16 - art_sys_118: 3.41848653e-08 - art_sys_119: 7.47250080e-16 - art_sys_120: -6.13383225e-15 - art_sys_121: -2.63857569e-08 - art_sys_122: -4.17554643e-15 - art_sys_123: -5.87896980e-15 - art_sys_124: -2.75808814e-07 - art_sys_125: 9.04523836e-13 - art_sys_126: 4.93784158e-08 - art_sys_127: -1.24445478e-12 - art_sys_128: 1.20419359e-06 - art_sys_129: 2.46927157e-11 - art_sys_130: -1.35919424e-06 - art_sys_131: 1.16718341e-08 - art_sys_132: -5.87818079e-10 - art_sys_133: -3.20374853e-06 - art_sys_134: -1.03880112e-11 - art_sys_135: 4.04657151e-09 - art_sys_136: -5.77459613e-06 - art_sys_137: -6.96144228e-11 - art_sys_138: 9.97010894e-18 - art_sys_139: -2.97100380e-08 - art_sys_140: -2.54347033e-06 - art_sys_141: -1.45431718e-07 - art_sys_142: 5.53097744e-07 - art_sys_143: 2.83464481e-11 - art_sys_144: 1.57377963e-11 - art_sys_145: 3.79750291e-10 - art_sys_146: -0.0 - art_sys_147: 3.91153839e-09 - art_sys_148: -4.11607099e-08 - art_sys_149: -4.11607099e-08 - art_sys_150: -1.81774313e-09 - art_sys_151: -1.81774313e-09 - art_sys_152: -5.75518499e-09 - art_sys_153: -8.55044837e-10 - art_sys_154: -1.19225371e-13 - art_sys_155: -2.85994989e-22 - art_sys_156: -3.55255525e-24 - art_sys_157: -1.79913661e-25 + art_sys_25: 8.28878117e-104 + art_sys_26: 4.34204239e-98 + art_sys_27: -2.72715694e-91 + art_sys_28: 1.63163059e-90 + art_sys_29: 6.26687479e-80 + art_sys_30: 5.09360318e-77 + art_sys_31: 2.38260919e-74 + art_sys_32: -2.84615507e-66 + art_sys_33: -8.52934958e-61 + art_sys_34: -8.59961016e-54 + art_sys_35: -6.02850926e-55 + art_sys_36: 1.78692266e-29 + art_sys_37: 1.27093896e-27 + art_sys_38: 8.74606783e-27 + art_sys_39: 1.73766005e-27 + art_sys_40: 2.07100625e-24 + art_sys_41: -4.62429891e-23 + art_sys_42: -1.23872245e-22 + art_sys_43: -3.18836892e-22 + art_sys_44: 1.76052766e-21 + art_sys_45: -1.12688396e-19 + art_sys_46: -6.53941319e-19 + art_sys_47: -1.16942471e-35 + art_sys_48: 1.79087450e-34 + art_sys_49: -6.21654971e-36 + art_sys_50: 7.71414326e-18 + art_sys_51: -8.77537465e-18 + art_sys_52: -2.90139123e-34 + art_sys_53: 3.22167297e-34 + art_sys_54: 7.37389013e-35 + art_sys_55: -3.65771827e-34 + art_sys_56: -2.01187291e-35 + art_sys_57: 1.52652431e-16 + art_sys_58: -6.58749902e-16 + art_sys_59: -4.59634586e-33 + art_sys_60: -5.89138639e-32 + art_sys_61: -6.29802390e-15 + art_sys_62: -2.46063286e-32 + art_sys_63: 1.85556721e-30 + art_sys_64: -2.60419371e-15 + art_sys_65: 4.02692788e-15 + art_sys_66: -3.76520187e-14 + art_sys_67: -2.09832797e-14 + art_sys_68: -6.83210362e-14 + art_sys_69: 5.55140711e-15 + art_sys_70: 3.33466903e-14 + art_sys_71: 2.44585818e-14 + art_sys_72: 9.07937921e-16 + art_sys_73: 2.77620757e-17 + art_sys_74: -1.32354011e-14 + art_sys_75: -7.03373051e-15 + art_sys_76: -5.62248493e-14 + art_sys_77: -4.42027555e-14 + art_sys_78: 6.22301183e-15 + art_sys_79: -3.16793032e-15 + art_sys_80: -6.63347498e-15 + art_sys_81: 4.09446981e-15 + art_sys_82: 1.85004247e-25 + art_sys_83: 1.49710797e-16 + art_sys_84: 3.75329014e-16 + art_sys_85: -5.59862081e-17 + art_sys_86: 1.58734181e-16 + art_sys_87: 3.72864126e-15 + art_sys_88: 1.58070615e-15 + art_sys_89: 2.07254139e-17 + art_sys_90: 1.72929666e-15 + art_sys_91: -1.01807547e-26 + art_sys_92: -2.54219232e-19 + art_sys_93: 3.21217230e-17 + art_sys_94: -5.22026094e-15 + art_sys_95: 2.86789501e-12 + art_sys_96: 6.02693713e-21 + art_sys_97: -3.11519718e-21 + art_sys_98: 3.50850156e-12 + art_sys_99: 3.49482671e-19 + art_sys_100: -4.29210899e-11 + art_sys_101: -4.44936579e-17 + art_sys_102: -1.25060172e-10 + art_sys_103: -3.09398961e-17 + art_sys_104: 2.22819423e-18 + art_sys_105: -1.35321630e-13 + art_sys_106: -1.62363266e-15 + art_sys_107: 2.69923612e-10 + art_sys_108: -2.06746429e-13 + art_sys_109: 7.94171596e-12 + art_sys_110: 1.79303101e-09 + art_sys_111: 5.77475169e-18 + art_sys_112: -3.66131011e-14 + art_sys_113: -5.42889777e-17 + art_sys_114: -2.14454495e-11 + art_sys_115: 1.09038344e-17 + art_sys_116: -1.18802654e-09 + art_sys_117: 1.95067305e-11 + art_sys_118: -3.27323856e-15 + art_sys_119: 1.39909428e-08 + art_sys_120: -4.00209459e-15 + art_sys_121: 9.11758724e-11 + art_sys_122: 4.26520259e-15 + art_sys_123: -3.42241492e-08 + art_sys_124: -3.51008238e-16 + art_sys_125: -1.35960682e-10 + art_sys_126: -7.52733232e-14 + art_sys_127: 6.25917969e-08 + art_sys_128: -2.40664349e-15 + art_sys_129: -5.49428054e-12 + art_sys_130: 2.68837965e-07 + art_sys_131: -1.64516902e-10 + art_sys_132: 2.90376933e-14 + art_sys_133: -6.73973956e-08 + art_sys_134: -4.22615816e-12 + art_sys_135: -5.83621093e-14 + art_sys_136: 2.50842551e-09 + art_sys_137: -1.19565834e-06 + art_sys_138: -1.59896752e-12 + art_sys_139: 1.32581535e-06 + art_sys_140: -3.39794246e-10 + art_sys_141: 5.11263056e-08 + art_sys_142: -1.42894648e-10 + art_sys_143: 3.21413627e-06 + art_sys_144: -5.46209351e-10 + art_sys_145: -3.15829881e-10 + art_sys_146: -5.76536606e-06 + art_sys_147: 1.38546563e-10 + art_sys_148: -2.29300909e-11 + art_sys_149: -1.83319842e-08 + art_sys_150: 2.55380585e-06 + art_sys_151: 2.19094413e-08 + art_sys_152: 3.08079840e-10 + art_sys_153: -6.95198822e-07 + art_sys_154: -6.02256234e-16 + art_sys_155: -8.45518251e-11 + art_sys_156: -0.0 + art_sys_157: 3.24624858e-09 art_sys_158: 0.0 - art_sys_159: -5.26181507e-09 - art_sys_160: 8.54189273e-10 - art_sys_161: 3.63184526e-09 - art_sys_162: 1.03787040e-10 - art_sys_163: -2.86609513e-08 - art_sys_164: -5.49330789e-09 - art_sys_165: -6.94784043e-11 - art_sys_166: 2.88579833e-17 - art_sys_167: 3.16610440e-17 - art_sys_168: -8.33949448e-18 - art_sys_169: 4.46991010e-19 - art_sys_170: 1.35605957e-19 - art_sys_171: -9.82726393e-20 - art_sys_172: 9.92547707e-20 - art_sys_173: 1.88164702e-20 - art_sys_174: -1.18986201e-20 - art_sys_175: -4.62675596e-23 - art_sys_176: -3.58295060e-21 - art_sys_177: 4.24958858e-21 - art_sys_178: -6.51937499e-22 - art_sys_179: 9.88322490e-22 - art_sys_180: 3.27171620e-21 - art_sys_181: -1.35904643e-22 - art_sys_182: 2.23610125e-23 - art_sys_183: -3.69190888e-24 - art_sys_184: 2.71551400e-26 - art_sys_185: -3.98987605e-26 + art_sys_159: -4.69377845e-09 + art_sys_160: 2.31927730e-11 + art_sys_161: 1.24241696e-09 + art_sys_162: 1.24241696e-09 + art_sys_163: 4.79235392e-10 + art_sys_164: 4.79235392e-10 + art_sys_165: -6.67946388e-24 + art_sys_166: 2.24358877e-24 + art_sys_167: 0.0 + art_sys_168: 8.26216271e-20 + art_sys_169: 1.50260682e-18 + art_sys_170: 1.08360164e-18 + art_sys_171: 2.17550026e-19 + art_sys_172: -1.71116283e-19 + art_sys_173: 3.45239799e-20 + art_sys_174: -3.37686492e-21 + art_sys_175: -3.81552211e-22 + art_sys_176: 1.07199278e-21 + art_sys_177: -1.01322618e-21 + art_sys_178: 5.05419952e-23 + art_sys_179: -6.11509563e-24 + art_sys_180: -1.21430961e-22 + art_sys_181: -2.53177317e-22 + art_sys_182: -5.07229058e-23 + art_sys_183: -6.75715532e-25 + art_sys_184: -3.40989837e-25 + art_sys_185: -1.77730040e-25 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -27326,167 +27326,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: 4.10643620e-31 - art_sys_26: 2.33285124e-29 - art_sys_27: 1.55879646e-28 - art_sys_28: 4.26137856e-47 - art_sys_29: -5.83607592e-47 - art_sys_30: 5.53385931e-28 - art_sys_31: -1.42815778e-25 - art_sys_32: -1.55068644e-24 - art_sys_33: -4.85437340e-24 - art_sys_34: 8.13618768e-42 - art_sys_35: 1.30759675e-41 - art_sys_36: 9.15321914e-42 - art_sys_37: 2.58578912e-42 - art_sys_38: 1.22409168e-23 - art_sys_39: 4.85094016e-41 - art_sys_40: -3.98127797e-41 - art_sys_41: -4.19129291e-41 - art_sys_42: -1.33487203e-38 - art_sys_43: -7.23637866e-22 - art_sys_44: 7.37550849e-22 - art_sys_45: -1.16579048e-20 - art_sys_46: 9.51506458e-38 - art_sys_47: 8.98892284e-38 - art_sys_48: 5.97489905e-32 - art_sys_49: 7.96948784e-15 - art_sys_50: -1.83330803e-14 - art_sys_51: -8.30966583e-15 - art_sys_52: 1.03207968e-14 - art_sys_53: -5.30707839e-14 - art_sys_54: -1.74726735e-15 - art_sys_55: 2.76788098e-19 - art_sys_56: -3.15701488e-19 - art_sys_57: 2.09546912e-29 - art_sys_58: 1.52630484e-15 - art_sys_59: -5.29635136e-14 - art_sys_60: -7.92430812e-30 - art_sys_61: 4.03966777e-29 - art_sys_62: 1.82499405e-30 - art_sys_63: 6.70905462e-19 - art_sys_64: -6.97282034e-32 - art_sys_65: 1.14473807e-14 - art_sys_66: -1.62094074e-14 - art_sys_67: -1.18714591e-29 - art_sys_68: 2.38658461e-17 - art_sys_69: -5.11782790e-17 - art_sys_70: -1.29819775e-28 - art_sys_71: 1.86850528e-30 - art_sys_72: 1.87256855e-29 - art_sys_73: -1.79421204e-14 - art_sys_74: 3.97287288e-14 - art_sys_75: -2.53377062e-14 - art_sys_76: -2.63268261e-14 - art_sys_77: 2.21472068e-25 - art_sys_78: 2.66938818e-16 - art_sys_79: 1.49529034e-15 - art_sys_80: 1.17560896e-14 - art_sys_81: 2.74172628e-16 - art_sys_82: -1.54751635e-15 - art_sys_83: 1.24792756e-14 - art_sys_84: -1.13867296e-15 - art_sys_85: 7.60294917e-16 - art_sys_86: -9.21144027e-15 - art_sys_87: -1.56376522e-27 - art_sys_88: -3.90546789e-15 - art_sys_89: -3.92772699e-15 - art_sys_90: 2.14182891e-27 - art_sys_91: 2.42812550e-14 - art_sys_92: -2.14472948e-26 - art_sys_93: 7.54316609e-27 - art_sys_94: 8.96323420e-25 - art_sys_95: -5.20486066e-13 - art_sys_96: 2.93330908e-15 - art_sys_97: 4.36573998e-13 - art_sys_98: -1.50223419e-22 - art_sys_99: -2.19411591e-26 - art_sys_100: -8.37612032e-12 - art_sys_101: 5.01668218e-21 - art_sys_102: -2.02831068e-21 - art_sys_103: 2.53712511e-11 - art_sys_104: 3.19734754e-23 - art_sys_105: 9.33345693e-21 - art_sys_106: -1.57973589e-17 - art_sys_107: 6.58271132e-13 - art_sys_108: 3.38379421e-12 - art_sys_109: 3.64335565e-10 - art_sys_110: 2.63915349e-11 - art_sys_111: -3.02136574e-18 - art_sys_112: -3.16523702e-10 - art_sys_113: -1.01199021e-11 - art_sys_114: 1.24542511e-17 - art_sys_115: 4.15832865e-10 - art_sys_116: -4.66538466e-16 - art_sys_117: -1.47872714e-17 - art_sys_118: 1.89296093e-09 - art_sys_119: 2.49175309e-17 - art_sys_120: 1.71823652e-16 - art_sys_121: 2.90154199e-08 - art_sys_122: -5.56878845e-17 - art_sys_123: 2.41079894e-15 - art_sys_124: -2.32000886e-09 - art_sys_125: 2.92853756e-12 - art_sys_126: 4.34490490e-08 - art_sys_127: -1.40072529e-12 - art_sys_128: -1.51249679e-08 - art_sys_129: 1.75112426e-11 - art_sys_130: -1.42914692e-07 - art_sys_131: 1.12297678e-08 - art_sys_132: -5.48362632e-10 - art_sys_133: 4.45267759e-08 - art_sys_134: 8.00440252e-10 - art_sys_135: -4.60389387e-10 - art_sys_136: -5.93956679e-07 - art_sys_137: -2.73219469e-10 - art_sys_138: -6.55556599e-18 - art_sys_139: -1.41813251e-08 - art_sys_140: -1.34536366e-06 - art_sys_141: 8.81674150e-08 - art_sys_142: -1.94781926e-06 - art_sys_143: 8.79359186e-11 - art_sys_144: -2.00929486e-11 - art_sys_145: -1.40046913e-09 - art_sys_146: 0.0 - art_sys_147: -2.10983978e-08 - art_sys_148: 1.70784009e-07 - art_sys_149: 1.70784009e-07 - art_sys_150: 9.68018107e-08 - art_sys_151: 9.68018107e-08 - art_sys_152: 3.75507765e-08 - art_sys_153: -8.09893873e-09 - art_sys_154: 8.90038295e-12 - art_sys_155: -1.36818988e-20 - art_sys_156: 6.24995139e-24 - art_sys_157: -2.54218303e-25 - art_sys_158: 0.0 - art_sys_159: 8.58498785e-10 - art_sys_160: -3.38922834e-10 - art_sys_161: -6.02898076e-10 - art_sys_162: 4.30416625e-11 - art_sys_163: 2.41126910e-08 - art_sys_164: -6.59743497e-09 - art_sys_165: 5.05727844e-11 - art_sys_166: -4.60679829e-17 - art_sys_167: -5.29305675e-17 - art_sys_168: 1.43122845e-17 - art_sys_169: 4.20927472e-19 - art_sys_170: -5.25362530e-19 - art_sys_171: 4.55002277e-19 - art_sys_172: 2.66110171e-20 - art_sys_173: -3.61888026e-20 - art_sys_174: -5.37817461e-20 - art_sys_175: 1.69252835e-22 - art_sys_176: 4.55564170e-22 - art_sys_177: 1.29837809e-20 - art_sys_178: -4.62962856e-21 - art_sys_179: 2.71627045e-21 - art_sys_180: 2.06521374e-21 - art_sys_181: -1.17026000e-22 - art_sys_182: -9.14084200e-22 - art_sys_183: 8.38082100e-25 - art_sys_184: -1.95982571e-25 - art_sys_185: -9.91235433e-26 + art_sys_25: 1.89983132e-105 + art_sys_26: 9.95218471e-100 + art_sys_27: -6.25078412e-93 + art_sys_28: 3.73978133e-92 + art_sys_29: 1.43639997e-81 + art_sys_30: 1.16748008e-78 + art_sys_31: 5.46106297e-76 + art_sys_32: -6.52353399e-68 + art_sys_33: -1.95497085e-62 + art_sys_34: -1.97107493e-55 + art_sys_35: -1.38176537e-56 + art_sys_36: 4.10643620e-31 + art_sys_37: 2.33285124e-29 + art_sys_38: 1.55879646e-28 + art_sys_39: 5.53385931e-28 + art_sys_40: 1.42815778e-25 + art_sys_41: -1.55068644e-24 + art_sys_42: -4.85437340e-24 + art_sys_43: -1.22409168e-23 + art_sys_44: 7.23637866e-22 + art_sys_45: -7.37550849e-22 + art_sys_46: -1.16579048e-20 + art_sys_47: -2.26475157e-37 + art_sys_48: 6.27450078e-36 + art_sys_49: 1.27894344e-37 + art_sys_50: 2.76788098e-19 + art_sys_51: 3.15701488e-19 + art_sys_52: 2.34064439e-36 + art_sys_53: -1.40637099e-35 + art_sys_54: -1.16267655e-35 + art_sys_55: -6.65341418e-37 + art_sys_56: 4.28360581e-36 + art_sys_57: 6.70905462e-19 + art_sys_58: -2.38658470e-17 + art_sys_59: -2.51916914e-34 + art_sys_60: -2.08972916e-33 + art_sys_61: -5.11782790e-17 + art_sys_62: 1.36422390e-34 + art_sys_63: -3.71564169e-32 + art_sys_64: -6.64245642e-16 + art_sys_65: 5.69782991e-15 + art_sys_66: 1.88673823e-15 + art_sys_67: -5.31216962e-14 + art_sys_68: 6.26225999e-14 + art_sys_69: -4.31233342e-14 + art_sys_70: -9.18025907e-14 + art_sys_71: -1.42543570e-13 + art_sys_72: 1.81551073e-14 + art_sys_73: 2.58404262e-14 + art_sys_74: 2.66938817e-16 + art_sys_75: -3.33976210e-14 + art_sys_76: -3.87009891e-14 + art_sys_77: 3.03704495e-14 + art_sys_78: 2.84768138e-15 + art_sys_79: -1.56956997e-14 + art_sys_80: 1.75851009e-15 + art_sys_81: 1.58594694e-14 + art_sys_82: 1.75584196e-28 + art_sys_83: 4.61456856e-17 + art_sys_84: -6.80024435e-16 + art_sys_85: 1.12084645e-15 + art_sys_86: 2.58926633e-16 + art_sys_87: 1.16923973e-14 + art_sys_88: 5.00034873e-15 + art_sys_89: 1.95369407e-17 + art_sys_90: 4.96522954e-15 + art_sys_91: -3.40696195e-28 + art_sys_92: -2.03753676e-17 + art_sys_93: -2.47720925e-17 + art_sys_94: 3.68831549e-15 + art_sys_95: -2.42812470e-14 + art_sys_96: -5.10323696e-23 + art_sys_97: 2.63750478e-23 + art_sys_98: 5.20485755e-13 + art_sys_99: 3.83872377e-20 + art_sys_100: 4.36568910e-13 + art_sys_101: 4.61038476e-19 + art_sys_102: -8.37616599e-12 + art_sys_103: 3.00583470e-19 + art_sys_104: 7.50561622e-20 + art_sys_105: 1.22579943e-13 + art_sys_106: -1.08741430e-16 + art_sys_107: -2.53713212e-11 + art_sys_108: 2.00495082e-13 + art_sys_109: 7.39818728e-12 + art_sys_110: 2.63924273e-11 + art_sys_111: -2.69080565e-18 + art_sys_112: -5.39962864e-16 + art_sys_113: -3.66120467e-18 + art_sys_114: 4.48103821e-12 + art_sys_115: -1.39525558e-18 + art_sys_116: -3.16519571e-10 + art_sys_117: -5.66061257e-14 + art_sys_118: -4.59992227e-17 + art_sys_119: -4.15825999e-10 + art_sys_120: 1.25262451e-16 + art_sys_121: -1.96591581e-11 + art_sys_122: 6.71385695e-17 + art_sys_123: -1.92712599e-09 + art_sys_124: -3.88408236e-17 + art_sys_125: 9.68691031e-11 + art_sys_126: 2.63915698e-15 + art_sys_127: 4.93869709e-09 + art_sys_128: 1.02893172e-16 + art_sys_129: 8.54537672e-11 + art_sys_130: -1.76969463e-09 + art_sys_131: -1.41933953e-09 + art_sys_132: -3.34529604e-16 + art_sys_133: -3.62699315e-08 + art_sys_134: -3.23996776e-12 + art_sys_135: 8.14961950e-15 + art_sys_136: -5.24350259e-09 + art_sys_137: 1.00472108e-08 + art_sys_138: -6.55431529e-13 + art_sys_139: 1.78259904e-07 + art_sys_140: 8.65380304e-10 + art_sys_141: 1.15952035e-08 + art_sys_142: -1.76514812e-11 + art_sys_143: -1.15498427e-07 + art_sys_144: -8.32916285e-09 + art_sys_145: 3.20289480e-10 + art_sys_146: -6.46225324e-07 + art_sys_147: 4.41460337e-10 + art_sys_148: 5.21974463e-10 + art_sys_149: -9.66000114e-09 + art_sys_150: 1.76278798e-06 + art_sys_151: 1.79423167e-07 + art_sys_152: 1.74832340e-09 + art_sys_153: 2.03182686e-06 + art_sys_154: -4.36209498e-17 + art_sys_155: 3.54640571e-09 + art_sys_156: 0.0 + art_sys_157: -2.23096627e-08 + art_sys_158: -0.0 + art_sys_159: 7.52000063e-08 + art_sys_160: 1.35703013e-08 + art_sys_161: -2.03077439e-08 + art_sys_162: -2.03077439e-08 + art_sys_163: -5.73624081e-10 + art_sys_164: -5.73624081e-10 + art_sys_165: 4.07117508e-23 + art_sys_166: -1.39789268e-23 + art_sys_167: -0.0 + art_sys_168: 2.91062352e-18 + art_sys_169: 5.01696110e-18 + art_sys_170: 2.96147456e-20 + art_sys_171: -1.94395389e-18 + art_sys_172: 1.41933618e-19 + art_sys_173: 1.31690076e-19 + art_sys_174: 3.60972032e-20 + art_sys_175: 8.89295159e-21 + art_sys_176: 6.55300455e-21 + art_sys_177: 1.23886083e-20 + art_sys_178: 1.76546630e-21 + art_sys_179: -1.29472466e-21 + art_sys_180: 1.46140168e-21 + art_sys_181: -6.31756068e-21 + art_sys_182: 1.30195214e-21 + art_sys_183: 2.69380747e-24 + art_sys_184: -5.13287995e-24 + art_sys_185: -1.83787031e-24 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -27617,167 +27617,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: 7.73113125e-35 - art_sys_26: 4.24705910e-33 - art_sys_27: 2.65041875e-32 - art_sys_28: 7.12231709e-51 - art_sys_29: -9.90591574e-51 - art_sys_30: 2.75521701e-31 - art_sys_31: -6.78034752e-29 - art_sys_32: -5.31792209e-28 - art_sys_33: -1.84214528e-27 - art_sys_34: 2.91662100e-45 - art_sys_35: 4.94724021e-45 - art_sys_36: 3.85012662e-45 - art_sys_37: 9.94145611e-46 - art_sys_38: 4.17701990e-27 - art_sys_39: 1.61754752e-44 - art_sys_40: -1.36542106e-44 - art_sys_41: -1.45316261e-44 - art_sys_42: -9.15980639e-42 - art_sys_43: -4.96479948e-25 - art_sys_44: -1.58806274e-24 - art_sys_45: 3.14623460e-24 - art_sys_46: -2.90779372e-41 - art_sys_47: -3.41136593e-41 - art_sys_48: -3.64142657e-36 - art_sys_49: -3.83358567e-16 - art_sys_50: -1.20971224e-14 - art_sys_51: -9.39544939e-16 - art_sys_52: -6.85974397e-14 - art_sys_53: -4.99410865e-14 - art_sys_54: 1.11295750e-14 - art_sys_55: -1.82663240e-23 - art_sys_56: 9.24457087e-24 - art_sys_57: -2.19330234e-32 - art_sys_58: 1.38328779e-14 - art_sys_59: -2.92215298e-14 - art_sys_60: -3.92678591e-32 - art_sys_61: 1.23092953e-32 - art_sys_62: -3.77896115e-32 - art_sys_63: -9.84555951e-22 - art_sys_64: -3.27959048e-32 - art_sys_65: 6.56732975e-15 - art_sys_66: -1.12781290e-14 - art_sys_67: 4.39351145e-32 - art_sys_68: 5.41565660e-20 - art_sys_69: -9.90944211e-20 - art_sys_70: 2.32095686e-31 - art_sys_71: -2.92016400e-32 - art_sys_72: -1.55984874e-31 - art_sys_73: -2.75097030e-14 - art_sys_74: -1.15749635e-14 - art_sys_75: -1.58283054e-14 - art_sys_76: -1.95092723e-14 - art_sys_77: -8.04583769e-29 - art_sys_78: 6.76262923e-20 - art_sys_79: 1.52339961e-15 - art_sys_80: 9.42041286e-15 - art_sys_81: 8.57362804e-16 - art_sys_82: -1.06830273e-15 - art_sys_83: 1.00547302e-14 - art_sys_84: 1.27083577e-15 - art_sys_85: -7.00056971e-17 - art_sys_86: -7.80468968e-15 - art_sys_87: 6.57886189e-30 - art_sys_88: -3.37461432e-15 - art_sys_89: -3.41146809e-15 - art_sys_90: 1.20965323e-29 - art_sys_91: 1.34368692e-16 - art_sys_92: 1.88516461e-28 - art_sys_93: 8.28340761e-29 - art_sys_94: 1.39082879e-27 - art_sys_95: -2.73570906e-17 - art_sys_96: 2.42157159e-15 - art_sys_97: 2.90416430e-15 - art_sys_98: -7.09451941e-25 - art_sys_99: -9.90346464e-29 - art_sys_100: 4.54599567e-15 - art_sys_101: 3.48559158e-23 - art_sys_102: -3.01418250e-23 - art_sys_103: 5.03011957e-14 - art_sys_104: -7.42332291e-27 - art_sys_105: -1.19076431e-23 - art_sys_106: 9.32204428e-21 - art_sys_107: -2.31982641e-13 - art_sys_108: -1.28769006e-12 - art_sys_109: -1.37388059e-10 - art_sys_110: -2.08626950e-13 - art_sys_111: -1.23272784e-21 - art_sys_112: -3.78468530e-13 - art_sys_113: -1.88132413e-11 - art_sys_114: 3.25354872e-21 - art_sys_115: 4.96185371e-12 - art_sys_116: 3.76358849e-18 - art_sys_117: 2.07579720e-21 - art_sys_118: -3.68672125e-13 - art_sys_119: -3.08941547e-20 - art_sys_120: 3.78079395e-17 - art_sys_121: -8.51044147e-09 - art_sys_122: 3.12640601e-18 - art_sys_123: -1.01113598e-15 - art_sys_124: 5.66499244e-09 - art_sys_125: -1.20860708e-12 - art_sys_126: -3.51599798e-09 - art_sys_127: 5.82484157e-13 - art_sys_128: -8.51260305e-09 - art_sys_129: -7.60346244e-12 - art_sys_130: 2.32791581e-08 - art_sys_131: -5.40810352e-09 - art_sys_132: 2.73910263e-10 - art_sys_133: 2.43593534e-08 - art_sys_134: 1.64711953e-09 - art_sys_135: 6.61808626e-10 - art_sys_136: 1.85604120e-07 - art_sys_137: -5.08363788e-10 - art_sys_138: -1.16133338e-17 - art_sys_139: 1.49936650e-08 - art_sys_140: 3.15948244e-07 - art_sys_141: 1.62175555e-07 - art_sys_142: 3.55760193e-07 - art_sys_143: 1.53497912e-10 - art_sys_144: -7.67466872e-11 - art_sys_145: -1.85745295e-10 - art_sys_146: 0.0 - art_sys_147: 5.08312574e-09 - art_sys_148: -2.84959766e-07 - art_sys_149: -2.84959766e-07 - art_sys_150: 4.73356317e-07 - art_sys_151: 4.73356317e-07 - art_sys_152: 3.16407120e-09 - art_sys_153: -6.66161991e-08 - art_sys_154: 4.85601018e-11 - art_sys_155: -7.32006516e-20 - art_sys_156: 2.03575783e-25 - art_sys_157: -1.42105817e-24 - art_sys_158: 0.0 - art_sys_159: 2.06731251e-09 - art_sys_160: -5.98520705e-10 - art_sys_161: -5.96111405e-10 - art_sys_162: -2.91065454e-12 - art_sys_163: -1.30211239e-08 - art_sys_164: 4.77189066e-09 - art_sys_165: -9.73912170e-11 - art_sys_166: 2.01837525e-17 - art_sys_167: 2.47918356e-17 - art_sys_168: -7.69604112e-18 - art_sys_169: 2.24944291e-19 - art_sys_170: -1.66912327e-18 - art_sys_171: 1.04501097e-18 - art_sys_172: 2.06208650e-19 - art_sys_173: -2.94059068e-19 - art_sys_174: -1.24179354e-19 - art_sys_175: 3.93042428e-23 - art_sys_176: 3.02939572e-21 - art_sys_177: 1.30253376e-20 - art_sys_178: -7.79580207e-21 - art_sys_179: 4.26219577e-21 - art_sys_180: -8.63077387e-21 - art_sys_181: -8.20131347e-23 - art_sys_182: -8.40071689e-22 - art_sys_183: -1.54363096e-23 - art_sys_184: -2.34911919e-25 - art_sys_185: -1.89052309e-25 + art_sys_25: 3.57557039e-109 + art_sys_26: 1.87304718e-103 + art_sys_27: -1.17642648e-96 + art_sys_28: 7.03844140e-96 + art_sys_29: 2.70337117e-85 + art_sys_30: 2.19725149e-82 + art_sys_31: 1.02779730e-79 + art_sys_32: -1.22775926e-71 + art_sys_33: -3.67934553e-66 + art_sys_34: -3.70965417e-59 + art_sys_35: -2.60054631e-60 + art_sys_36: 7.73113125e-35 + art_sys_37: 4.24705910e-33 + art_sys_38: 2.65041875e-32 + art_sys_39: 2.75521701e-31 + art_sys_40: 6.78034752e-29 + art_sys_41: -5.31792209e-28 + art_sys_42: -1.84214528e-27 + art_sys_43: -4.17701990e-27 + art_sys_44: 4.96479948e-25 + art_sys_45: 1.58806274e-24 + art_sys_46: 3.14623460e-24 + art_sys_47: 4.25297455e-41 + art_sys_48: -3.71220210e-40 + art_sys_49: -1.64628765e-41 + art_sys_50: -1.82663241e-23 + art_sys_51: -9.24457090e-24 + art_sys_52: 7.51635238e-41 + art_sys_53: 4.66298852e-40 + art_sys_54: 4.83631284e-40 + art_sys_55: 2.63318615e-40 + art_sys_56: -1.66343310e-40 + art_sys_57: -9.84555952e-22 + art_sys_58: -5.41565679e-20 + art_sys_59: -6.31467079e-37 + art_sys_60: -2.44873425e-36 + art_sys_61: -9.90944211e-20 + art_sys_62: 4.09852575e-37 + art_sys_63: -1.10248391e-35 + art_sys_64: 1.15236300e-14 + art_sys_65: 1.56006041e-15 + art_sys_66: 1.49877598e-14 + art_sys_67: 4.47860679e-14 + art_sys_68: -4.18053171e-14 + art_sys_69: 4.50313448e-14 + art_sys_70: 9.40154017e-14 + art_sys_71: 1.62063004e-13 + art_sys_72: -2.39676226e-14 + art_sys_73: -3.36639002e-14 + art_sys_74: 6.76262950e-20 + art_sys_75: 4.87183051e-14 + art_sys_76: -3.30374606e-14 + art_sys_77: 3.40674602e-14 + art_sys_78: 1.64015885e-14 + art_sys_79: 2.34676856e-14 + art_sys_80: -5.20333137e-15 + art_sys_81: -2.44054728e-14 + art_sys_82: -5.97315494e-27 + art_sys_83: 3.04100443e-16 + art_sys_84: 8.05041854e-17 + art_sys_85: 7.12252948e-16 + art_sys_86: -1.50740200e-16 + art_sys_87: -1.90364532e-14 + art_sys_88: -8.22568753e-15 + art_sys_89: -3.01652551e-17 + art_sys_90: -8.33491639e-15 + art_sys_91: 8.43559095e-28 + art_sys_92: 1.20431010e-17 + art_sys_93: 2.39862906e-18 + art_sys_94: -6.01962046e-15 + art_sys_95: -1.34368713e-16 + art_sys_96: -2.82491516e-25 + art_sys_97: 1.45973859e-25 + art_sys_98: 2.73549404e-17 + art_sys_99: -1.95946034e-24 + art_sys_100: 2.90414699e-15 + art_sys_101: 3.01466593e-21 + art_sys_102: 4.54601998e-15 + art_sys_103: 2.08724003e-21 + art_sys_104: -8.87179468e-23 + art_sys_105: -1.17776159e-13 + art_sys_106: 5.90196147e-20 + art_sys_107: -5.03005660e-14 + art_sys_108: -1.91737196e-13 + art_sys_109: -5.74840770e-12 + art_sys_110: -2.08633892e-13 + art_sys_111: -3.04815126e-21 + art_sys_112: 4.25959238e-18 + art_sys_113: 1.94995754e-21 + art_sys_114: -2.30542901e-12 + art_sys_115: -3.42860443e-21 + art_sys_116: -3.78423600e-13 + art_sys_117: 1.39797580e-13 + art_sys_118: 3.83994428e-19 + art_sys_119: -4.96148116e-12 + art_sys_120: 7.82704974e-19 + art_sys_121: 1.06920250e-11 + art_sys_122: -4.90004215e-19 + art_sys_123: 2.16534241e-11 + art_sys_124: -7.64507343e-21 + art_sys_125: -6.56607368e-11 + art_sys_126: -5.30788669e-17 + art_sys_127: -9.07626661e-09 + art_sys_128: 1.74357175e-19 + art_sys_129: 5.59951824e-12 + art_sys_130: 1.38638488e-08 + art_sys_131: 4.28674481e-11 + art_sys_132: 8.64733120e-17 + art_sys_133: 6.64715134e-09 + art_sys_134: 2.53048747e-12 + art_sys_135: -8.12996021e-15 + art_sys_136: -4.45261182e-10 + art_sys_137: -1.14713090e-08 + art_sys_138: 5.91308726e-13 + art_sys_139: 7.39739051e-09 + art_sys_140: 5.61578369e-10 + art_sys_141: -9.55396326e-09 + art_sys_142: 1.69698553e-11 + art_sys_143: -2.96463731e-08 + art_sys_144: -3.77404074e-08 + art_sys_145: -2.66943011e-10 + art_sys_146: 1.76444297e-07 + art_sys_147: 2.22338557e-09 + art_sys_148: 2.79930470e-09 + art_sys_149: 1.82042078e-09 + art_sys_150: -3.32609633e-07 + art_sys_151: -7.06073913e-08 + art_sys_152: 7.94921051e-09 + art_sys_153: -4.22144684e-07 + art_sys_154: -2.44599822e-17 + art_sys_155: 1.22527261e-08 + art_sys_156: -0.0 + art_sys_157: -2.54815792e-08 + art_sys_158: -0.0 + art_sys_159: 1.91443779e-07 + art_sys_160: 4.74672118e-08 + art_sys_161: -6.85998015e-08 + art_sys_162: -6.85998015e-08 + art_sys_163: 3.28817238e-09 + art_sys_164: 3.28817238e-09 + art_sys_165: 8.75687564e-23 + art_sys_166: -3.12193508e-23 + art_sys_167: -0.0 + art_sys_168: -5.19548813e-18 + art_sys_169: -2.31935065e-18 + art_sys_170: 7.51309590e-18 + art_sys_171: -7.72605180e-18 + art_sys_172: -3.80790615e-19 + art_sys_173: 5.88026906e-19 + art_sys_174: 1.83918111e-19 + art_sys_175: 2.92867307e-20 + art_sys_176: 4.03631000e-20 + art_sys_177: 1.77643346e-20 + art_sys_178: 4.31386636e-21 + art_sys_179: -4.86076874e-21 + art_sys_180: 3.39055513e-21 + art_sys_181: -2.81855233e-20 + art_sys_182: 1.22971532e-21 + art_sys_183: 1.27196462e-23 + art_sys_184: -2.60369578e-23 + art_sys_185: -9.42814493e-24 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -27908,167 +27908,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: 1.31170418e-38 - art_sys_26: 9.08579461e-37 - art_sys_27: 5.09717781e-36 - art_sys_28: 1.32932458e-54 - art_sys_29: -1.89990193e-54 - art_sys_30: 1.05673022e-34 - art_sys_31: -2.72250845e-32 - art_sys_32: -1.85504436e-31 - art_sys_33: -6.69603715e-31 - art_sys_34: 1.03821552e-48 - art_sys_35: 1.79558778e-48 - art_sys_36: 1.46214862e-48 - art_sys_37: 3.63316252e-49 - art_sys_38: 1.26206691e-30 - art_sys_39: 4.66117269e-48 - art_sys_40: -4.14583327e-48 - art_sys_41: -4.50693246e-48 - art_sys_42: -5.67509299e-45 - art_sys_43: -3.07623325e-28 - art_sys_44: -1.10645273e-27 - art_sys_45: -1.30835908e-27 - art_sys_46: 2.74705986e-45 - art_sys_47: 4.75904466e-45 - art_sys_48: 2.97287722e-37 - art_sys_49: -4.12636072e-16 - art_sys_50: -7.90972210e-15 - art_sys_51: -1.55043805e-15 - art_sys_52: -7.10641002e-15 - art_sys_53: -3.95921592e-14 - art_sys_54: 4.09264699e-15 - art_sys_55: -1.29147049e-25 - art_sys_56: 9.46165267e-25 - art_sys_57: -1.76802386e-32 - art_sys_58: 1.02747453e-14 - art_sys_59: -2.01853494e-14 - art_sys_60: -2.82640964e-32 - art_sys_61: 1.26535374e-32 - art_sys_62: -1.36603560e-32 - art_sys_63: 6.32141821e-24 - art_sys_64: -1.85829577e-32 - art_sys_65: 5.72423660e-15 - art_sys_66: -8.48670017e-15 - art_sys_67: 3.96922057e-33 - art_sys_68: 8.98078193e-23 - art_sys_69: -7.13801197e-22 - art_sys_70: 3.08097797e-32 - art_sys_71: -2.93042112e-32 - art_sys_72: -1.68538938e-31 - art_sys_73: 6.27226830e-14 - art_sys_74: -3.58674245e-14 - art_sys_75: -2.77084772e-14 - art_sys_76: -1.58130349e-14 - art_sys_77: -1.43077850e-29 - art_sys_78: -5.13095032e-21 - art_sys_79: 5.44503918e-15 - art_sys_80: 7.44708642e-15 - art_sys_81: 3.02112728e-15 - art_sys_82: -6.00189516e-16 - art_sys_83: 8.13803211e-15 - art_sys_84: -5.32522875e-16 - art_sys_85: 8.47041680e-17 - art_sys_86: -6.41726227e-15 - art_sys_87: 7.65947758e-30 - art_sys_88: -2.78098048e-15 - art_sys_89: -2.84591631e-15 - art_sys_90: 6.40278894e-30 - art_sys_91: -4.43282457e-18 - art_sys_92: 1.55021987e-28 - art_sys_93: 5.16523984e-29 - art_sys_94: 2.23814320e-27 - art_sys_95: 1.60084987e-17 - art_sys_96: 2.03431516e-15 - art_sys_97: -1.45155196e-16 - art_sys_98: 2.38806106e-26 - art_sys_99: 2.34772330e-29 - art_sys_100: 3.34086716e-16 - art_sys_101: -1.13954720e-24 - art_sys_102: 8.91786952e-25 - art_sys_103: -6.14222545e-15 - art_sys_104: -9.80831040e-28 - art_sys_105: -3.54932273e-27 - art_sys_106: 6.06812554e-22 - art_sys_107: 5.05452032e-14 - art_sys_108: 2.78570509e-13 - art_sys_109: 2.98640527e-11 - art_sys_110: 1.49966892e-14 - art_sys_111: 2.41224142e-22 - art_sys_112: 9.60596926e-14 - art_sys_113: 1.54221588e-12 - art_sys_114: -9.96365148e-22 - art_sys_115: -7.15691201e-13 - art_sys_116: -2.73014359e-19 - art_sys_117: 1.18166949e-21 - art_sys_118: -7.49706081e-13 - art_sys_119: -4.41977420e-21 - art_sys_120: -7.95573768e-18 - art_sys_121: 1.84060396e-09 - art_sys_122: -6.04995134e-19 - art_sys_123: 1.91500580e-16 - art_sys_124: 2.28620140e-09 - art_sys_125: 2.50606943e-13 - art_sys_126: -6.82772369e-09 - art_sys_127: -1.19379601e-13 - art_sys_128: -8.41210551e-09 - art_sys_129: 1.55812098e-12 - art_sys_130: -1.40028704e-08 - art_sys_131: 1.02751601e-09 - art_sys_132: -5.14016211e-11 - art_sys_133: 1.86803789e-08 - art_sys_134: 2.41828821e-09 - art_sys_135: -1.35794771e-10 - art_sys_136: 3.27866028e-10 - art_sys_137: 6.89348069e-10 - art_sys_138: 2.44377903e-18 - art_sys_139: -2.10573892e-09 - art_sys_140: -5.11189066e-08 - art_sys_141: -3.50976864e-08 - art_sys_142: -4.81422672e-08 - art_sys_143: -2.08777084e-10 - art_sys_144: 1.06529522e-10 - art_sys_145: 7.48880700e-10 - art_sys_146: -0.0 - art_sys_147: 3.25241539e-08 - art_sys_148: -3.37004334e-07 - art_sys_149: -3.37004334e-07 - art_sys_150: 1.57643934e-07 - art_sys_151: 1.57643934e-07 - art_sys_152: -7.41485709e-08 - art_sys_153: -2.71605923e-08 - art_sys_154: 4.24403093e-11 - art_sys_155: -1.46849204e-20 - art_sys_156: -1.89411447e-23 - art_sys_157: 1.96003664e-24 - art_sys_158: 0.0 - art_sys_159: -1.76364265e-10 - art_sys_160: 5.01202359e-11 - art_sys_161: 4.81591454e-11 - art_sys_162: 1.84685873e-12 - art_sys_163: 3.82657109e-09 - art_sys_164: -6.21167399e-10 - art_sys_165: -8.49785773e-10 - art_sys_166: -6.44716065e-17 - art_sys_167: -2.37138798e-17 - art_sys_168: -1.10961988e-17 - art_sys_169: -1.86659005e-17 - art_sys_170: -8.10393307e-18 - art_sys_171: 4.83434861e-18 - art_sys_172: 1.97623457e-18 - art_sys_173: -1.40245928e-18 - art_sys_174: 4.01536576e-19 - art_sys_175: -1.51127738e-22 - art_sys_176: -1.39397996e-20 - art_sys_177: -1.46269293e-20 - art_sys_178: 9.10884546e-21 - art_sys_179: -4.89982053e-21 - art_sys_180: 1.10412273e-20 - art_sys_181: -1.88048260e-22 - art_sys_182: 2.69553609e-22 - art_sys_183: -2.68039196e-23 - art_sys_184: 6.65905403e-25 - art_sys_185: 2.25357272e-25 + art_sys_25: 6.08244803e-113 + art_sys_26: 3.18626426e-107 + art_sys_27: -2.00123396e-100 + art_sys_28: 1.19731817e-99 + art_sys_29: 4.59873889e-89 + art_sys_30: 3.73777230e-86 + art_sys_31: 1.74839899e-83 + art_sys_32: -2.08855681e-75 + art_sys_33: -6.25898121e-70 + art_sys_34: -6.31053962e-63 + art_sys_35: -4.42382222e-64 + art_sys_36: 1.31170418e-38 + art_sys_37: 9.08579461e-37 + art_sys_38: 5.09717781e-36 + art_sys_39: 1.05673022e-34 + art_sys_40: 2.72250845e-32 + art_sys_41: -1.85504436e-31 + art_sys_42: -6.69603715e-31 + art_sys_43: -1.26206691e-30 + art_sys_44: 3.07623325e-28 + art_sys_45: 1.10645273e-27 + art_sys_46: -1.30835908e-27 + art_sys_47: -3.52480842e-44 + art_sys_48: -2.82159696e-42 + art_sys_49: -5.56229721e-43 + art_sys_50: -1.29147098e-25 + art_sys_51: -9.46165279e-25 + art_sys_52: -1.72169925e-41 + art_sys_53: 3.93733210e-41 + art_sys_54: 2.35211212e-41 + art_sys_55: -1.55090324e-41 + art_sys_56: -9.55666527e-42 + art_sys_57: 6.32141821e-24 + art_sys_58: -8.98078225e-23 + art_sys_59: -9.06923003e-40 + art_sys_60: -7.54562714e-39 + art_sys_61: -7.13801197e-22 + art_sys_62: -2.47630086e-39 + art_sys_63: 7.05457199e-37 + art_sys_64: -2.82498256e-15 + art_sys_65: -1.47413522e-14 + art_sys_66: 3.45832148e-14 + art_sys_67: 8.99847767e-14 + art_sys_68: -6.27188150e-14 + art_sys_69: 5.47697955e-14 + art_sys_70: 9.48854730e-14 + art_sys_71: 1.25426222e-13 + art_sys_72: -1.49270987e-14 + art_sys_73: -1.65645826e-14 + art_sys_74: -5.13094782e-21 + art_sys_75: 1.57349283e-14 + art_sys_76: -3.39417671e-14 + art_sys_77: 7.57380626e-16 + art_sys_78: -1.44335617e-15 + art_sys_79: 5.30501021e-15 + art_sys_80: 1.11374973e-15 + art_sys_81: -4.70263432e-15 + art_sys_82: -1.15095314e-27 + art_sys_83: 3.53569288e-16 + art_sys_84: 7.26534693e-16 + art_sys_85: 1.62258354e-16 + art_sys_86: -9.80746906e-17 + art_sys_87: -1.93371369e-15 + art_sys_88: -5.89237247e-16 + art_sys_89: -6.69411083e-17 + art_sys_90: -4.77770769e-16 + art_sys_91: 1.93826481e-28 + art_sys_92: 1.46691174e-17 + art_sys_93: 2.17302627e-18 + art_sys_94: -1.12510813e-16 + art_sys_95: 4.43282479e-18 + art_sys_96: 9.29981663e-27 + art_sys_97: -4.81564283e-27 + art_sys_98: -1.60083916e-17 + art_sys_99: -1.06965569e-24 + art_sys_100: -1.45154178e-16 + art_sys_101: -1.50888862e-22 + art_sys_102: 3.34088577e-16 + art_sys_103: -1.03877663e-22 + art_sys_104: -1.67528854e-24 + art_sys_105: -4.56960001e-13 + art_sys_106: 4.33718715e-21 + art_sys_107: 6.14218209e-15 + art_sys_108: -7.49440785e-13 + art_sys_109: -2.59649362e-11 + art_sys_110: 1.49971776e-14 + art_sys_111: 4.54443995e-22 + art_sys_112: -3.06102072e-19 + art_sys_113: 1.48988371e-22 + art_sys_114: -5.18699217e-12 + art_sys_115: 4.10232664e-22 + art_sys_116: 9.60530652e-14 + art_sys_117: -7.82649025e-12 + art_sys_118: -2.78137020e-20 + art_sys_119: 7.15296811e-13 + art_sys_120: -9.42022166e-20 + art_sys_121: 2.79505803e-11 + art_sys_122: 3.50487784e-20 + art_sys_123: 7.47566828e-11 + art_sys_124: 4.64652915e-20 + art_sys_125: -1.30600646e-10 + art_sys_126: -3.74770163e-16 + art_sys_127: -4.16275061e-08 + art_sys_128: -2.23920894e-18 + art_sys_129: 4.79305326e-11 + art_sys_130: -1.39973859e-08 + art_sys_131: -4.67723530e-10 + art_sys_132: 4.39991223e-16 + art_sys_133: -1.08089943e-09 + art_sys_134: 1.19060167e-11 + art_sys_135: -3.79358195e-14 + art_sys_136: -5.29096701e-09 + art_sys_137: -2.23237879e-08 + art_sys_138: 2.81926691e-12 + art_sys_139: 2.12709827e-08 + art_sys_140: 4.24295697e-10 + art_sys_141: -4.57382132e-08 + art_sys_142: 7.94034014e-11 + art_sys_143: 1.60197559e-08 + art_sys_144: 1.37578029e-08 + art_sys_145: -1.74614256e-09 + art_sys_146: -7.54945187e-08 + art_sys_147: -6.17297252e-10 + art_sys_148: -8.00599129e-10 + art_sys_149: 3.18791983e-09 + art_sys_150: 1.84510974e-07 + art_sys_151: -5.60023370e-08 + art_sys_152: -2.31170876e-09 + art_sys_153: -1.15410189e-07 + art_sys_154: -8.11868576e-17 + art_sys_155: -3.52044811e-09 + art_sys_156: -0.0 + art_sys_157: -8.04693408e-08 + art_sys_158: -0.0 + art_sys_159: 5.68960753e-07 + art_sys_160: 9.17536322e-09 + art_sys_161: 7.38663217e-09 + art_sys_162: 7.38663217e-09 + art_sys_163: -6.72456649e-08 + art_sys_164: -6.72456649e-08 + art_sys_165: 6.38298078e-22 + art_sys_166: -2.09134063e-22 + art_sys_167: -0.0 + art_sys_168: 1.08989632e-17 + art_sys_169: 2.16605222e-18 + art_sys_170: -2.55957695e-18 + art_sys_171: 2.48527967e-18 + art_sys_172: 2.35988442e-19 + art_sys_173: -1.51671966e-19 + art_sys_174: -6.57919847e-20 + art_sys_175: -1.64670448e-20 + art_sys_176: -8.27400950e-21 + art_sys_177: -3.04393284e-21 + art_sys_178: -3.81614249e-21 + art_sys_179: 1.29537430e-21 + art_sys_180: 1.44647599e-20 + art_sys_181: 7.50826687e-21 + art_sys_182: 2.97908417e-22 + art_sys_183: -1.70900880e-23 + art_sys_184: 7.33740450e-24 + art_sys_185: 2.65010814e-24 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -30836,149 +30836,149 @@ bins: art_sys_40: 0.0 art_sys_41: 0.0 art_sys_42: 0.0 - art_sys_43: -2.40766468e-171 - art_sys_44: 1.47473683e-163 - art_sys_45: -9.75573459e-37 - art_sys_46: 5.93176951e-33 - art_sys_47: -1.46977911e-27 - art_sys_48: 1.70834655e-19 - art_sys_49: -2.16787412e+02 - art_sys_50: 4.37790419e+01 - art_sys_51: 1.67063222e+01 - art_sys_52: -1.65771551e+00 - art_sys_53: -5.96340175e-02 - art_sys_54: 2.49903218e-02 - art_sys_55: -1.43983401e-18 - art_sys_56: 6.64426382e-19 - art_sys_57: 3.27489075e-19 - art_sys_58: 1.15349606e-02 - art_sys_59: 1.40806357e-03 - art_sys_60: -2.18610177e-19 - art_sys_61: -8.41801550e-19 - art_sys_62: -3.70041700e-19 - art_sys_63: -1.76498960e-18 - art_sys_64: 2.72979978e-19 - art_sys_65: -6.69009329e-06 - art_sys_66: 5.60438486e-06 - art_sys_67: 2.39208178e-19 - art_sys_68: 5.84476701e-19 - art_sys_69: -6.63402911e-19 - art_sys_70: 2.32669723e-19 - art_sys_71: 3.71703138e-19 - art_sys_72: 1.50031069e-19 - art_sys_73: 4.05470439e-19 - art_sys_74: -2.86186773e-19 - art_sys_75: 3.28191302e-19 - art_sys_76: 8.94736478e-07 - art_sys_77: 2.80565643e-19 - art_sys_78: 3.34556140e-19 - art_sys_79: -2.12727324e-20 - art_sys_80: -1.28202767e-07 - art_sys_81: 9.61895716e-22 - art_sys_82: -1.72363925e-22 - art_sys_83: -7.21304953e-08 - art_sys_84: -6.32593940e-22 - art_sys_85: 5.43269117e-23 - art_sys_86: 7.33233487e-09 - art_sys_87: -1.37272951e-19 + art_sys_43: 0.0 + art_sys_44: 1.36115420e-203 + art_sys_45: 6.86475408e-197 + art_sys_46: 7.85781685e-147 + art_sys_47: 4.35061903e-152 + art_sys_48: -2.34538973e-144 + art_sys_49: 2.00116980e-135 + art_sys_50: -8.58014680e-128 + art_sys_51: 3.56003142e-117 + art_sys_52: 3.95534849e-134 + art_sys_53: 1.26323980e-130 + art_sys_54: 1.49468448e-125 + art_sys_55: 3.68559318e-122 + art_sys_56: 5.94361651e-119 + art_sys_57: 2.11815837e-40 + art_sys_58: 1.04958410e-26 + art_sys_59: -4.02762764e-38 + art_sys_60: 4.86963774e-35 + art_sys_61: 1.91967639e-20 + art_sys_62: -5.32868957e-35 + art_sys_63: -9.00106835e-25 + art_sys_64: -2.16787412e+02 + art_sys_65: -4.37790419e+01 + art_sys_66: 1.67063222e+01 + art_sys_67: -1.65771551e+00 + art_sys_68: 5.96340175e-02 + art_sys_69: -2.49903218e-02 + art_sys_70: -1.15349606e-02 + art_sys_71: -1.40806357e-03 + art_sys_72: 6.69009329e-06 + art_sys_73: 5.60438486e-06 + art_sys_74: 9.42122663e-20 + art_sys_75: -8.94736478e-07 + art_sys_76: 8.96837063e-20 + art_sys_77: -1.04004457e-19 + art_sys_78: -1.23421769e-22 + art_sys_79: -1.28202766e-07 + art_sys_80: -1.37887257e-20 + art_sys_81: 7.21304953e-08 + art_sys_82: 9.36529611e-20 + art_sys_83: -9.03909508e-22 + art_sys_84: 8.32541424e-22 + art_sys_85: -1.83221143e-22 + art_sys_86: -2.43828275e-22 + art_sys_87: 7.33233485e-09 art_sys_88: 1.47671462e-09 - art_sys_89: 6.82245379e-10 - art_sys_90: 2.35431549e-21 - art_sys_91: 1.70645170e-18 - art_sys_92: 8.37859277e-20 - art_sys_93: 1.75498378e-20 - art_sys_94: 5.93620160e-21 - art_sys_95: 1.55659739e-20 - art_sys_96: -5.60659531e-11 - art_sys_97: 9.40603884e-20 - art_sys_98: -2.91279265e-20 - art_sys_99: 4.93409264e-22 - art_sys_100: -5.40460475e-20 - art_sys_101: 4.68587885e-19 - art_sys_102: 3.44255912e-20 - art_sys_103: 7.50514135e-21 - art_sys_104: -6.02260526e-21 - art_sys_105: -1.84304874e-20 - art_sys_106: -5.77048809e-20 - art_sys_107: -9.55318180e-13 - art_sys_108: 3.81953015e-13 - art_sys_109: -1.87843293e-13 - art_sys_110: -4.85083091e-19 - art_sys_111: -3.15290342e-20 - art_sys_112: -1.36610151e-20 - art_sys_113: 7.10476185e-14 - art_sys_114: -2.38204731e-20 - art_sys_115: -1.71728759e-20 - art_sys_116: -1.53122573e-19 - art_sys_117: -2.15667347e-21 - art_sys_118: 3.34063524e-20 - art_sys_119: -3.59517503e-21 - art_sys_120: 1.37882968e-20 - art_sys_121: 5.27924243e-19 - art_sys_122: -2.21537030e-21 - art_sys_123: -2.07010975e-20 - art_sys_124: -2.30076968e-20 - art_sys_125: 1.12444335e-20 - art_sys_126: -2.32962115e-19 - art_sys_127: -6.83645585e-22 - art_sys_128: 2.76482636e-20 - art_sys_129: 3.30927819e-21 - art_sys_130: -3.89547395e-20 - art_sys_131: -6.44415668e-20 - art_sys_132: 2.68309424e-21 - art_sys_133: -2.30399602e-20 - art_sys_134: -2.54120041e-17 - art_sys_135: 6.14652947e-21 - art_sys_136: 2.57523015e-20 - art_sys_137: -8.31615964e-18 - art_sys_138: -4.30158663e-21 - art_sys_139: 2.23612322e-21 - art_sys_140: -3.67270993e-20 - art_sys_141: 2.61308727e-21 - art_sys_142: -3.76743092e-20 - art_sys_143: 2.54425356e-18 - art_sys_144: -7.11529407e-19 - art_sys_145: -1.96676007e-19 - art_sys_146: -0.0 - art_sys_147: -3.19446523e-20 - art_sys_148: 1.46525862e-20 - art_sys_149: 1.46525862e-20 - art_sys_150: -2.70552947e-21 - art_sys_151: -2.70552947e-21 - art_sys_152: 1.70026690e-21 - art_sys_153: -7.13608843e-21 - art_sys_154: 2.49421543e-21 - art_sys_155: -8.99124134e-33 - art_sys_156: 6.97741356e-36 - art_sys_157: -4.42317748e-35 - art_sys_158: -0.0 - art_sys_159: 3.23567660e-14 - art_sys_160: -1.38021708e-14 - art_sys_161: 5.37830111e-15 - art_sys_162: 1.98072106e-15 - art_sys_163: -7.30455095e-16 - art_sys_164: 2.38017390e-16 - art_sys_165: -7.85011370e-17 - art_sys_166: 1.70445975e-27 - art_sys_167: -8.88386907e-28 - art_sys_168: -1.82040809e-27 - art_sys_169: -1.67985560e-28 - art_sys_170: 6.79052560e-29 - art_sys_171: 8.05361368e-27 - art_sys_172: 3.49556942e-26 - art_sys_173: 1.60138608e-26 - art_sys_174: 5.05602651e-27 - art_sys_175: 5.99830123e-32 - art_sys_176: -8.47404096e-29 - art_sys_177: 2.57514276e-28 - art_sys_178: -4.91197275e-29 - art_sys_179: -5.69832553e-31 - art_sys_180: -2.07980061e-29 - art_sys_181: 4.76037967e-31 - art_sys_182: -2.26016056e-31 - art_sys_183: -3.76485364e-33 - art_sys_184: 5.26567894e-33 - art_sys_185: -1.19811195e-33 + art_sys_89: -5.16436867e-24 + art_sys_90: 6.82245378e-10 + art_sys_91: -6.12642427e-20 + art_sys_92: -1.91253860e-25 + art_sys_93: -4.74160326e-25 + art_sys_94: 5.60659518e-11 + art_sys_95: -1.50409249e-19 + art_sys_96: -3.46589518e-20 + art_sys_97: 4.32072918e-20 + art_sys_98: 7.04229071e-22 + art_sys_99: -1.04513019e-20 + art_sys_100: -9.95905892e-19 + art_sys_101: -2.48387678e-20 + art_sys_102: 1.04725982e-19 + art_sys_103: -1.93660778e-19 + art_sys_104: 2.51874208e-20 + art_sys_105: 9.55312826e-13 + art_sys_106: 4.59944572e-20 + art_sys_107: -8.32603193e-21 + art_sys_108: 3.81954669e-13 + art_sys_109: 1.87842970e-13 + art_sys_110: -4.56908532e-20 + art_sys_111: -1.76187383e-20 + art_sys_112: -5.00348398e-21 + art_sys_113: 1.93021675e-21 + art_sys_114: -7.10477154e-14 + art_sys_115: -1.11039638e-20 + art_sys_116: -1.27254075e-21 + art_sys_117: -3.23567387e-14 + art_sys_118: 1.27476866e-20 + art_sys_119: 1.56993126e-20 + art_sys_120: 3.25829192e-21 + art_sys_121: -1.38018157e-14 + art_sys_122: 2.31677245e-20 + art_sys_123: 1.10443928e-20 + art_sys_124: -3.43161862e-22 + art_sys_125: -5.37748618e-15 + art_sys_126: -8.01175541e-22 + art_sys_127: 1.20251662e-19 + art_sys_128: 5.51981730e-21 + art_sys_129: 1.98077065e-15 + art_sys_130: -1.35790392e-20 + art_sys_131: -7.30519453e-16 + art_sys_132: -2.52433941e-20 + art_sys_133: 5.53664052e-20 + art_sys_134: 1.07222014e-21 + art_sys_135: 9.43872816e-23 + art_sys_136: -2.37709006e-16 + art_sys_137: 9.87917823e-20 + art_sys_138: 1.58628315e-22 + art_sys_139: -1.00781401e-20 + art_sys_140: 7.85290703e-17 + art_sys_141: -2.27695042e-20 + art_sys_142: 1.31224798e-21 + art_sys_143: 2.26471053e-20 + art_sys_144: -2.53522351e-17 + art_sys_145: 5.85473438e-22 + art_sys_146: -2.10692388e-20 + art_sys_147: 8.31904799e-18 + art_sys_148: 2.45112778e-18 + art_sys_149: -7.63586026e-23 + art_sys_150: -1.00502515e-20 + art_sys_151: -5.08249674e-21 + art_sys_152: -8.63019837e-19 + art_sys_153: 1.38823897e-20 + art_sys_154: -7.56561914e-23 + art_sys_155: 1.77922339e-19 + art_sys_156: 0.0 + art_sys_157: -6.80974677e-22 + art_sys_158: 0.0 + art_sys_159: 3.29041200e-21 + art_sys_160: -3.41667397e-20 + art_sys_161: 2.69500030e-22 + art_sys_162: 2.69500030e-22 + art_sys_163: -6.61138280e-22 + art_sys_164: -6.61138280e-22 + art_sys_165: 1.08804407e-34 + art_sys_166: -5.40388211e-35 + art_sys_167: -0.0 + art_sys_168: 2.21472602e-28 + art_sys_169: -3.18359699e-27 + art_sys_170: 1.28035150e-27 + art_sys_171: -7.63496562e-26 + art_sys_172: -6.63773547e-27 + art_sys_173: 1.91354883e-28 + art_sys_174: 4.54639631e-28 + art_sys_175: -2.46841040e-28 + art_sys_176: 2.17486139e-29 + art_sys_177: -5.83328084e-31 + art_sys_178: -2.51691922e-32 + art_sys_179: -8.94379283e-33 + art_sys_180: 8.86327532e-34 + art_sys_181: -1.40696929e-30 + art_sys_182: 1.45431699e-29 + art_sys_183: -1.66521029e-31 + art_sys_184: 9.89157403e-34 + art_sys_185: 9.90190209e-34 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -31127,149 +31127,149 @@ bins: art_sys_40: 0.0 art_sys_41: 0.0 art_sys_42: 0.0 - art_sys_43: -1.29751609e-171 - art_sys_44: 7.94751357e-164 - art_sys_45: -5.25747057e-37 - art_sys_46: 3.19669455e-33 - art_sys_47: -7.92079809e-28 - art_sys_48: 9.20646376e-20 - art_sys_49: -1.16829074e+02 - art_sys_50: -7.20190727e+01 - art_sys_51: -2.96178110e+01 - art_sys_52: 5.21590718e+00 - art_sys_53: 2.01750628e-01 - art_sys_54: -8.71248165e-02 - art_sys_55: 2.49650230e-18 - art_sys_56: 6.84051642e-20 - art_sys_57: -8.87431784e-20 - art_sys_58: -4.37592898e-02 - art_sys_59: -5.84608620e-03 - art_sys_60: -1.84087553e-19 - art_sys_61: 9.28614390e-19 - art_sys_62: 1.12095131e-18 - art_sys_63: 4.34094242e-18 - art_sys_64: 7.45944842e-19 - art_sys_65: 3.84425099e-05 - art_sys_66: -3.05136106e-05 - art_sys_67: -1.03582520e-18 - art_sys_68: -4.27951380e-19 - art_sys_69: 1.21754793e-18 - art_sys_70: -4.76996801e-19 - art_sys_71: -7.94025953e-20 - art_sys_72: 1.88686283e-19 - art_sys_73: -2.25551619e-18 - art_sys_74: 1.56060020e-18 - art_sys_75: -1.79838823e-18 - art_sys_76: -4.97968490e-06 - art_sys_77: 2.73518110e-19 - art_sys_78: -1.20562461e-18 - art_sys_79: 1.48827748e-19 - art_sys_80: 8.71994167e-07 - art_sys_81: -6.35501299e-21 - art_sys_82: 1.23725376e-21 - art_sys_83: 4.42884148e-07 - art_sys_84: 1.98187398e-21 - art_sys_85: -3.95056190e-22 - art_sys_86: -5.16165865e-08 - art_sys_87: 1.68968871e-19 + art_sys_43: 0.0 + art_sys_44: 7.38907743e-204 + art_sys_45: 3.72655789e-197 + art_sys_46: 4.23504235e-147 + art_sys_47: 2.34480597e-152 + art_sys_48: -1.26406927e-144 + art_sys_49: 1.07854879e-135 + art_sys_50: -4.62434869e-128 + art_sys_51: 1.91871154e-117 + art_sys_52: 2.13177129e-134 + art_sys_53: 6.80834660e-131 + art_sys_54: 8.05573888e-126 + art_sys_55: 1.98638419e-122 + art_sys_56: 3.20336655e-119 + art_sys_57: 1.14149839e-40 + art_sys_58: 5.65632189e-27 + art_sys_59: -2.17053198e-38 + art_sys_60: 2.62430030e-35 + art_sys_61: 1.03453431e-20 + art_sys_62: -2.87171478e-35 + art_sys_63: -4.85077281e-25 + art_sys_64: -1.16829074e+02 + art_sys_65: 7.20190727e+01 + art_sys_66: -2.96178110e+01 + art_sys_67: 5.21590718e+00 + art_sys_68: -2.01750628e-01 + art_sys_69: 8.71248165e-02 + art_sys_70: 4.37592898e-02 + art_sys_71: 5.84608620e-03 + art_sys_72: -3.84425099e-05 + art_sys_73: -3.05136106e-05 + art_sys_74: -2.34663213e-19 + art_sys_75: 4.97968490e-06 + art_sys_76: -6.47359711e-19 + art_sys_77: 7.22360641e-19 + art_sys_78: 2.22609336e-20 + art_sys_79: 8.71994167e-07 + art_sys_80: 8.65811138e-20 + art_sys_81: -4.42884148e-07 + art_sys_82: -3.06769305e-19 + art_sys_83: 6.18777539e-21 + art_sys_84: -5.93381310e-21 + art_sys_85: 1.40190969e-21 + art_sys_86: 1.70121205e-21 + art_sys_87: -5.16165863e-08 art_sys_88: -9.48635852e-09 - art_sys_89: -4.53990276e-09 - art_sys_90: 8.06542391e-21 - art_sys_91: -1.15213405e-17 - art_sys_92: 7.89461180e-20 - art_sys_93: 5.66532405e-20 - art_sys_94: 9.36296983e-20 - art_sys_95: 5.25289612e-20 - art_sys_96: 3.72932817e-10 - art_sys_97: -1.44317416e-20 - art_sys_98: -5.11123905e-20 - art_sys_99: 8.55050321e-22 - art_sys_100: 9.90210462e-20 - art_sys_101: -3.12007233e-18 - art_sys_102: -1.85270769e-19 - art_sys_103: -3.32764960e-20 - art_sys_104: 8.42251807e-21 - art_sys_105: -2.22019292e-21 - art_sys_106: 3.35836888e-19 - art_sys_107: 5.00374675e-12 - art_sys_108: -2.58441687e-12 - art_sys_109: 1.13057205e-12 - art_sys_110: 3.28148430e-18 - art_sys_111: 8.39507061e-20 - art_sys_112: 1.41136349e-19 - art_sys_113: -4.54211794e-13 - art_sys_114: 1.28956513e-19 - art_sys_115: 1.11150399e-20 - art_sys_116: 1.08869420e-18 - art_sys_117: 2.28395204e-20 - art_sys_118: -2.55144348e-19 - art_sys_119: -5.03266861e-21 - art_sys_120: -6.84087253e-20 - art_sys_121: -2.51176687e-18 - art_sys_122: 4.60009010e-20 - art_sys_123: 1.32075881e-19 - art_sys_124: 1.81167502e-19 - art_sys_125: -7.31651484e-20 - art_sys_126: 1.35252928e-18 - art_sys_127: 1.11338791e-20 - art_sys_128: -1.66195050e-19 - art_sys_129: -3.40564613e-20 - art_sys_130: 2.48700147e-19 - art_sys_131: 3.44915970e-19 - art_sys_132: -3.08359250e-20 - art_sys_133: 1.32185822e-19 - art_sys_134: 1.70443767e-16 - art_sys_135: -4.31631459e-20 - art_sys_136: -1.63871947e-19 - art_sys_137: 5.58225140e-17 - art_sys_138: 2.50822151e-20 - art_sys_139: -1.23963172e-20 - art_sys_140: 2.38080272e-19 - art_sys_141: -8.48755871e-21 - art_sys_142: 2.68073994e-19 - art_sys_143: -1.70909809e-17 - art_sys_144: 4.78085468e-18 - art_sys_145: 1.32173852e-18 - art_sys_146: 0.0 - art_sys_147: 2.13945396e-19 - art_sys_148: -8.69570504e-20 - art_sys_149: -8.69570504e-20 - art_sys_150: 1.72237476e-20 - art_sys_151: 1.72237476e-20 - art_sys_152: -1.06562841e-20 - art_sys_153: 4.84807832e-20 - art_sys_154: -1.67633005e-20 - art_sys_155: 6.15833240e-32 - art_sys_156: -4.05093220e-35 - art_sys_157: 2.72641310e-34 - art_sys_158: 0.0 - art_sys_159: -2.08212816e-13 - art_sys_160: 8.95525614e-14 - art_sys_161: -3.53842043e-14 - art_sys_162: -1.30814338e-14 - art_sys_163: 4.86171824e-15 - art_sys_164: -1.58892276e-15 - art_sys_165: 5.25627742e-16 - art_sys_166: -1.09105595e-26 - art_sys_167: 5.37527078e-27 - art_sys_168: 1.20477674e-26 - art_sys_169: -1.40937456e-27 - art_sys_170: 1.10366407e-26 - art_sys_171: 8.02814625e-28 - art_sys_172: 6.42469662e-26 - art_sys_173: -3.56164368e-27 - art_sys_174: -3.16290564e-27 - art_sys_175: -4.03097592e-31 - art_sys_176: 2.53890037e-28 - art_sys_177: 8.91375192e-28 - art_sys_178: -7.56954921e-29 - art_sys_179: 6.80989951e-30 - art_sys_180: 1.48787153e-29 - art_sys_181: -1.08805830e-30 - art_sys_182: -1.98613711e-31 - art_sys_183: 2.93321861e-32 - art_sys_184: -3.54227675e-32 - art_sys_185: 8.05911240e-33 + art_sys_89: 3.43259502e-23 + art_sys_90: -4.53990275e-09 + art_sys_91: -7.27503417e-20 + art_sys_92: 1.29198037e-24 + art_sys_93: 3.15137939e-24 + art_sys_94: -3.72932809e-10 + art_sys_95: -4.78125842e-20 + art_sys_96: -5.57980852e-20 + art_sys_97: -4.76416601e-20 + art_sys_98: 4.31667808e-19 + art_sys_99: 1.85971226e-20 + art_sys_100: 7.04943339e-18 + art_sys_101: 2.13843686e-19 + art_sys_102: -2.45749185e-19 + art_sys_103: 1.34120119e-18 + art_sys_104: -1.06775435e-19 + art_sys_105: -5.00370969e-12 + art_sys_106: -6.30035389e-20 + art_sys_107: 1.96873359e-20 + art_sys_108: -2.58442701e-12 + art_sys_109: -1.13057006e-12 + art_sys_110: 3.06250020e-19 + art_sys_111: 9.52532728e-20 + art_sys_112: 6.79466047e-20 + art_sys_113: -3.39127394e-20 + art_sys_114: 4.54212386e-13 + art_sys_115: -1.42826735e-20 + art_sys_116: -3.48247991e-21 + art_sys_117: 2.08212630e-13 + art_sys_118: 2.36703278e-20 + art_sys_119: -9.94721134e-20 + art_sys_120: -1.12431808e-20 + art_sys_121: 8.95502735e-14 + art_sys_122: -1.67858358e-19 + art_sys_123: 2.71983705e-21 + art_sys_124: 6.34267054e-21 + art_sys_125: 3.53788465e-14 + art_sys_126: 1.59757544e-20 + art_sys_127: -3.64064177e-19 + art_sys_128: 4.37268286e-22 + art_sys_129: -1.30817582e-14 + art_sys_130: 7.00878108e-21 + art_sys_131: 4.86215021e-15 + art_sys_132: 1.45323433e-19 + art_sys_133: -4.03541441e-19 + art_sys_134: -9.88924556e-22 + art_sys_135: -7.06679920e-21 + art_sys_136: 1.58687148e-15 + art_sys_137: -5.48910335e-19 + art_sys_138: -2.75566163e-22 + art_sys_139: 3.13668322e-20 + art_sys_140: -5.25815622e-16 + art_sys_141: 1.82764950e-19 + art_sys_142: -1.99374183e-21 + art_sys_143: -1.23949058e-19 + art_sys_144: 1.70042577e-16 + art_sys_145: 9.17710123e-22 + art_sys_146: 1.19126381e-19 + art_sys_147: -5.58419600e-17 + art_sys_148: -1.64657063e-17 + art_sys_149: -7.72275255e-22 + art_sys_150: 6.65444941e-20 + art_sys_151: 4.37226807e-20 + art_sys_152: 5.79830456e-18 + art_sys_153: -8.91293234e-20 + art_sys_154: -3.18528183e-22 + art_sys_155: -1.19587208e-18 + art_sys_156: -0.0 + art_sys_157: 3.81094792e-21 + art_sys_158: -0.0 + art_sys_159: -1.85024539e-20 + art_sys_160: 2.29653545e-19 + art_sys_161: -1.80943272e-21 + art_sys_162: -1.80943272e-21 + art_sys_163: 4.14495452e-21 + art_sys_164: 4.14495452e-21 + art_sys_165: -7.28285954e-34 + art_sys_166: 3.62203271e-34 + art_sys_167: 0.0 + art_sys_168: -1.08460071e-28 + art_sys_169: 6.68881862e-27 + art_sys_170: -1.24928809e-26 + art_sys_171: -4.99860880e-26 + art_sys_172: -8.27578988e-27 + art_sys_173: -2.50099880e-27 + art_sys_174: -8.97783686e-28 + art_sys_175: 1.11765174e-28 + art_sys_176: -1.17961683e-29 + art_sys_177: -3.37583495e-32 + art_sys_178: -8.47304786e-32 + art_sys_179: 6.01475192e-32 + art_sys_180: -5.87028541e-33 + art_sys_181: 1.64258000e-30 + art_sys_182: -1.67390048e-29 + art_sys_183: -9.08325248e-33 + art_sys_184: -7.08339900e-33 + art_sys_185: -6.65055568e-33 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -31418,149 +31418,149 @@ bins: art_sys_40: 0.0 art_sys_41: 0.0 art_sys_42: 0.0 - art_sys_43: -1.96957767e-172 - art_sys_44: 1.20640086e-164 - art_sys_45: -7.98064130e-38 - art_sys_46: 4.85246132e-34 - art_sys_47: -1.20234716e-28 - art_sys_48: 1.39750635e-20 - art_sys_49: -1.77342112e+01 - art_sys_50: -7.93233911e+01 - art_sys_51: 2.09716342e+01 - art_sys_52: -8.34994666e+00 - art_sys_53: -5.61705271e-01 - art_sys_54: 2.11673834e-01 - art_sys_55: -1.44057897e-18 - art_sys_56: -6.83428122e-18 - art_sys_57: -1.32781194e-18 - art_sys_58: 1.23598004e-01 - art_sys_59: 1.82633582e-02 - art_sys_60: -9.94603720e-20 - art_sys_61: 1.98406377e-19 - art_sys_62: -1.37613056e-18 - art_sys_63: -1.39408575e-18 - art_sys_64: -8.85823937e-19 - art_sys_65: -1.19068463e-04 - art_sys_66: 1.06131427e-04 - art_sys_67: 1.48370601e-18 - art_sys_68: -1.42194481e-19 - art_sys_69: 1.03250798e-18 - art_sys_70: 6.73564037e-20 - art_sys_71: 1.27235186e-19 - art_sys_72: -8.39412224e-20 - art_sys_73: 8.11215840e-18 - art_sys_74: -5.78850265e-18 - art_sys_75: 6.36294936e-18 - art_sys_76: 1.76867829e-05 - art_sys_77: -1.96677009e-19 - art_sys_78: 2.39296372e-18 - art_sys_79: -5.77605913e-19 - art_sys_80: -3.35520488e-06 - art_sys_81: 2.30920344e-20 - art_sys_82: -5.05267504e-21 - art_sys_83: -1.69406650e-06 - art_sys_84: -3.79852396e-21 - art_sys_85: 1.53048279e-21 - art_sys_86: 2.05501345e-07 - art_sys_87: -1.09340813e-19 + art_sys_43: 0.0 + art_sys_44: 1.15905966e-204 + art_sys_45: 5.84552381e-198 + art_sys_46: 6.43135188e-148 + art_sys_47: 3.56083151e-153 + art_sys_48: -1.91962054e-145 + art_sys_49: 1.63788841e-136 + art_sys_50: -7.02255401e-129 + art_sys_51: 2.91376284e-118 + art_sys_52: 3.23731622e-135 + art_sys_53: 1.03391818e-131 + art_sys_54: 1.22334766e-126 + art_sys_55: 3.01653081e-123 + art_sys_56: 4.86464497e-120 + art_sys_57: 1.73275137e-41 + art_sys_58: 8.58608263e-28 + art_sys_59: -3.29478542e-39 + art_sys_60: 3.98358859e-36 + art_sys_61: 1.57038394e-21 + art_sys_62: -4.35915848e-36 + art_sys_63: -7.36328961e-26 + art_sys_64: -1.77342112e+01 + art_sys_65: 7.93233911e+01 + art_sys_66: 2.09716342e+01 + art_sys_67: -8.34994666e+00 + art_sys_68: 5.61705271e-01 + art_sys_69: -2.11673834e-01 + art_sys_70: -1.23598004e-01 + art_sys_71: -1.82633582e-02 + art_sys_72: 1.19068463e-04 + art_sys_73: 1.06131427e-04 + art_sys_74: 3.55991238e-19 + art_sys_75: -1.76867829e-05 + art_sys_76: 2.51502281e-18 + art_sys_77: -2.77627724e-18 + art_sys_78: -2.56411313e-19 + art_sys_79: -3.35520488e-06 + art_sys_80: -3.31706434e-19 + art_sys_81: 1.69406650e-06 + art_sys_82: 4.82843710e-19 + art_sys_83: -2.48049057e-20 + art_sys_84: 2.35594262e-20 + art_sys_85: -5.22111888e-21 + art_sys_86: -6.77836929e-21 + art_sys_87: 2.05501344e-07 art_sys_88: 3.86714058e-08 - art_sys_89: 1.83591280e-08 - art_sys_90: 1.06013973e-20 - art_sys_91: 4.42865998e-17 - art_sys_92: -8.56324032e-20 - art_sys_93: -5.19057914e-20 - art_sys_94: -4.57990816e-19 - art_sys_95: 2.30644755e-20 - art_sys_96: -1.54258675e-09 - art_sys_97: 5.36998986e-19 - art_sys_98: 9.43694441e-20 - art_sys_99: 3.54821411e-21 - art_sys_100: -5.43297150e-20 - art_sys_101: 1.21132626e-17 - art_sys_102: 6.19022023e-19 - art_sys_103: 1.24719027e-19 - art_sys_104: 5.35496671e-21 - art_sys_105: -1.27475591e-20 - art_sys_106: -1.30307982e-18 - art_sys_107: -1.82962626e-11 - art_sys_108: 1.02027122e-11 - art_sys_109: -4.40283201e-12 - art_sys_110: -1.30773595e-17 - art_sys_111: -3.74006778e-19 - art_sys_112: -5.57537853e-19 - art_sys_113: 1.77790954e-12 - art_sys_114: -4.37377581e-19 - art_sys_115: 1.84317616e-21 - art_sys_116: -4.34295656e-18 - art_sys_117: -6.04354251e-20 - art_sys_118: 1.13200480e-18 - art_sys_119: 1.53153276e-20 - art_sys_120: 2.85667062e-19 - art_sys_121: 8.49364020e-18 - art_sys_122: -1.77318531e-19 - art_sys_123: -5.38071480e-19 - art_sys_124: -7.85472746e-19 - art_sys_125: 3.10539847e-19 - art_sys_126: -5.07490950e-18 - art_sys_127: -4.37168981e-20 - art_sys_128: 6.47173022e-19 - art_sys_129: 1.35889766e-19 - art_sys_130: -9.76825483e-19 - art_sys_131: -1.28567642e-18 - art_sys_132: 1.25074112e-19 - art_sys_133: -4.87174432e-19 - art_sys_134: -6.88046548e-16 - art_sys_135: 1.72687849e-19 - art_sys_136: 6.31825080e-19 - art_sys_137: -2.25447946e-16 - art_sys_138: -9.64698953e-20 - art_sys_139: 5.07800126e-20 - art_sys_140: -9.43259026e-19 - art_sys_141: 1.63442299e-20 - art_sys_142: -1.10867422e-18 - art_sys_143: 6.90508585e-17 - art_sys_144: -1.93190789e-17 - art_sys_145: -5.34154572e-18 - art_sys_146: -0.0 - art_sys_147: -8.63403596e-19 - art_sys_148: 3.31994942e-19 - art_sys_149: 3.31994942e-19 - art_sys_150: -6.78849460e-20 - art_sys_151: -6.78849460e-20 - art_sys_152: 4.10561492e-20 - art_sys_153: -1.96782930e-19 - art_sys_154: 6.77475969e-20 - art_sys_155: -2.50378960e-31 - art_sys_156: 1.52047248e-34 - art_sys_157: -1.06839890e-33 - art_sys_158: -0.0 - art_sys_159: 8.23896499e-13 - art_sys_160: -3.55107300e-13 - art_sys_161: 1.41247018e-13 - art_sys_162: 5.23869229e-14 - art_sys_163: -1.95329871e-14 - art_sys_164: 6.39862919e-15 - art_sys_165: -2.11958199e-15 - art_sys_166: 5.83071934e-26 - art_sys_167: -2.36162154e-26 - art_sys_168: -4.94580946e-26 - art_sys_169: 1.39964441e-26 - art_sys_170: -1.11199309e-27 - art_sys_171: 4.30709526e-27 - art_sys_172: 9.81329118e-27 - art_sys_173: 2.77667813e-26 - art_sys_174: 2.69379186e-27 - art_sys_175: 1.62901780e-30 - art_sys_176: -5.68549410e-28 - art_sys_177: -1.33058657e-28 - art_sys_178: 1.69454878e-29 - art_sys_179: 6.38640842e-31 - art_sys_180: -1.64071911e-29 - art_sys_181: 1.00648886e-30 - art_sys_182: 1.43556446e-30 - art_sys_183: -1.17482269e-31 - art_sys_184: 1.43180961e-31 - art_sys_185: -3.25856945e-32 + art_sys_89: -1.39223033e-22 + art_sys_90: 1.83591280e-08 + art_sys_91: -9.00349738e-20 + art_sys_92: -5.38282385e-24 + art_sys_93: -1.30150063e-23 + art_sys_94: 1.54258672e-09 + art_sys_95: 1.38623479e-19 + art_sys_96: 5.19790818e-20 + art_sys_97: -7.22297866e-20 + art_sys_98: -1.54970363e-18 + art_sys_99: -5.49464081e-20 + art_sys_100: -2.82064110e-17 + art_sys_101: -8.88676969e-19 + art_sys_102: 1.39873939e-19 + art_sys_103: -5.31525365e-18 + art_sys_104: 3.30399343e-19 + art_sys_105: 1.82961154e-11 + art_sys_106: 2.40698028e-19 + art_sys_107: -6.85282102e-21 + art_sys_108: 1.02027514e-11 + art_sys_109: 4.40282422e-12 + art_sys_110: -1.27633997e-18 + art_sys_111: -3.58291399e-19 + art_sys_112: -2.59967836e-19 + art_sys_113: 1.22379442e-19 + art_sys_114: -1.77791188e-12 + art_sys_115: 9.65829048e-20 + art_sys_116: 1.19628563e-20 + art_sys_117: -8.23895733e-13 + art_sys_118: -9.78586980e-20 + art_sys_119: 4.00065799e-19 + art_sys_120: 8.29592628e-21 + art_sys_121: -3.55098236e-13 + art_sys_122: 6.85779395e-19 + art_sys_123: 7.92268291e-22 + art_sys_124: -1.20588546e-20 + art_sys_125: -1.41225649e-13 + art_sys_126: -8.10690518e-20 + art_sys_127: 6.41157352e-19 + art_sys_128: 6.31795290e-21 + art_sys_129: 5.23882207e-14 + art_sys_130: 1.63078967e-19 + art_sys_131: -1.95347439e-14 + art_sys_132: -5.85128116e-19 + art_sys_133: 1.64308809e-18 + art_sys_134: 1.84591236e-21 + art_sys_135: 1.76207779e-20 + art_sys_136: -6.39038720e-15 + art_sys_137: 2.02324842e-18 + art_sys_138: 2.94561126e-22 + art_sys_139: -7.68330073e-20 + art_sys_140: 2.12033977e-15 + art_sys_141: -7.88840068e-19 + art_sys_142: -4.78555181e-22 + art_sys_143: 4.36629526e-19 + art_sys_144: -6.86427153e-16 + art_sys_145: -4.73332558e-21 + art_sys_146: -4.35750116e-19 + art_sys_147: 2.25526843e-16 + art_sys_148: 6.65252407e-17 + art_sys_149: 6.10240779e-21 + art_sys_150: -2.64374624e-19 + art_sys_151: -1.96019313e-19 + art_sys_152: -2.34294100e-17 + art_sys_153: 3.50588938e-19 + art_sys_154: 6.58367353e-22 + art_sys_155: 4.83322124e-18 + art_sys_156: 0.0 + art_sys_157: -1.47583671e-20 + art_sys_158: 0.0 + art_sys_159: 6.79702921e-20 + art_sys_160: -9.28198321e-19 + art_sys_161: 7.16482467e-21 + art_sys_162: 7.16482467e-21 + art_sys_163: -1.62303767e-20 + art_sys_164: -1.62303767e-20 + art_sys_165: 2.93832075e-33 + art_sys_166: -1.46216752e-33 + art_sys_167: -0.0 + art_sys_168: -1.64089886e-27 + art_sys_169: -1.10773800e-26 + art_sys_170: 8.40894663e-27 + art_sys_171: 8.14224217e-26 + art_sys_172: 3.18311151e-27 + art_sys_173: 1.28842254e-27 + art_sys_174: -8.22919896e-28 + art_sys_175: -1.86807212e-28 + art_sys_176: -2.45405736e-29 + art_sys_177: -3.28398307e-31 + art_sys_178: 1.43195780e-30 + art_sys_179: -2.43160898e-31 + art_sys_180: 2.35643715e-32 + art_sys_181: -2.48894622e-30 + art_sys_182: 3.88857281e-31 + art_sys_183: -1.90986651e-31 + art_sys_184: 3.11154888e-32 + art_sys_185: 2.69043229e-32 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -31709,149 +31709,149 @@ bins: art_sys_40: 0.0 art_sys_41: 0.0 art_sys_42: 0.0 - art_sys_43: 1.34020476e-172 - art_sys_44: -8.20898918e-165 - art_sys_45: 5.43043748e-38 - art_sys_46: -3.30186345e-34 - art_sys_47: 8.18138651e-29 - art_sys_48: -9.50934964e-21 - art_sys_49: 1.20672664e+01 - art_sys_50: -2.75971364e+01 - art_sys_51: 4.36120968e+01 - art_sys_52: 7.95268450e+00 - art_sys_53: 5.52125017e-01 - art_sys_54: -3.52165304e-01 - art_sys_55: -2.21017353e-18 - art_sys_56: -4.05368734e-19 - art_sys_57: -1.24489251e-18 - art_sys_58: -2.20183996e-01 - art_sys_59: -4.03383715e-02 - art_sys_60: -1.70286935e-19 - art_sys_61: 8.60759053e-19 - art_sys_62: 1.49982830e-18 - art_sys_63: -1.16874268e-18 - art_sys_64: -3.31120125e-19 - art_sys_65: 3.45210108e-04 - art_sys_66: -2.81291270e-04 - art_sys_67: 8.10870010e-19 - art_sys_68: -6.07317960e-19 - art_sys_69: -3.75159358e-19 - art_sys_70: -4.23157008e-19 - art_sys_71: 1.51725836e-19 - art_sys_72: 5.83371359e-20 - art_sys_73: -2.36717748e-17 - art_sys_74: 1.63083863e-17 - art_sys_75: -1.84319887e-17 - art_sys_76: -5.14588090e-05 - art_sys_77: 1.18686281e-20 - art_sys_78: -8.21057692e-18 - art_sys_79: 1.71320773e-18 - art_sys_80: 9.91087093e-06 - art_sys_81: -7.48380864e-20 - art_sys_82: 1.59900762e-20 - art_sys_83: 5.03384868e-06 - art_sys_84: -1.38722824e-20 - art_sys_85: -4.74556699e-21 - art_sys_86: -6.39629983e-07 - art_sys_87: -2.11851296e-20 + art_sys_43: 0.0 + art_sys_44: -7.44544274e-205 + art_sys_45: -3.75498486e-198 + art_sys_46: -4.37298032e-148 + art_sys_47: -2.42117776e-153 + art_sys_48: 1.30524080e-145 + art_sys_49: -1.11367780e-136 + art_sys_50: 4.77496661e-129 + art_sys_51: -1.98120517e-118 + art_sys_52: -2.20120442e-135 + art_sys_53: -7.03009870e-132 + art_sys_54: -8.31811932e-127 + art_sys_55: -2.05108197e-123 + art_sys_56: -3.30770219e-120 + art_sys_57: -1.17905284e-41 + art_sys_58: -5.84241064e-28 + art_sys_59: 2.24194085e-39 + art_sys_60: -2.71063782e-36 + art_sys_61: -1.06856971e-21 + art_sys_62: 2.96619713e-36 + art_sys_63: 5.01035961e-26 + art_sys_64: 1.20672664e+01 + art_sys_65: 2.75971364e+01 + art_sys_66: 4.36120968e+01 + art_sys_67: 7.95268450e+00 + art_sys_68: -5.52125017e-01 + art_sys_69: 3.52165304e-01 + art_sys_70: 2.20183996e-01 + art_sys_71: 4.03383715e-02 + art_sys_72: -3.45210108e-04 + art_sys_73: -2.81291270e-04 + art_sys_74: 8.12144267e-20 + art_sys_75: 5.14588090e-05 + art_sys_76: -7.46946356e-18 + art_sys_77: 8.21771488e-18 + art_sys_78: 7.01026237e-20 + art_sys_79: 9.91087092e-06 + art_sys_80: 9.80185157e-19 + art_sys_81: -5.03384868e-06 + art_sys_82: -1.38653961e-18 + art_sys_83: 7.77685928e-20 + art_sys_84: -7.35596101e-20 + art_sys_85: 1.65670564e-20 + art_sys_86: 2.10886220e-20 + art_sys_87: -6.39629981e-07 art_sys_88: -1.17285080e-07 - art_sys_89: -5.72723905e-08 - art_sys_90: 1.17524796e-19 - art_sys_91: -1.30905854e-16 - art_sys_92: 1.66747015e-19 - art_sys_93: 5.60487361e-20 - art_sys_94: 1.24756647e-18 - art_sys_95: -1.21363583e-19 - art_sys_96: 4.83203478e-09 - art_sys_97: -1.36822535e-18 - art_sys_98: -1.66341813e-19 - art_sys_99: 7.80388010e-21 - art_sys_100: 2.60430452e-19 - art_sys_101: -3.57799185e-17 - art_sys_102: -1.91350556e-18 - art_sys_103: -3.68452398e-19 - art_sys_104: 1.17383113e-20 - art_sys_105: 8.14444907e-20 - art_sys_106: 3.87929331e-18 - art_sys_107: 6.23120209e-11 - art_sys_108: -3.43316795e-11 - art_sys_109: 1.48153322e-11 - art_sys_110: 4.06391352e-17 - art_sys_111: 1.17994131e-18 - art_sys_112: 1.66729145e-18 - art_sys_113: -6.07222776e-12 - art_sys_114: 1.34485143e-18 - art_sys_115: -5.38768462e-20 - art_sys_116: 1.35335472e-17 - art_sys_117: 1.87265444e-19 - art_sys_118: -3.56433388e-18 - art_sys_119: -5.95260797e-20 - art_sys_120: -8.73383791e-19 - art_sys_121: -2.71578087e-17 - art_sys_122: 5.55299622e-19 - art_sys_123: 1.66299699e-18 - art_sys_124: 2.87819147e-18 - art_sys_125: -9.76631042e-19 - art_sys_126: 1.65901212e-17 - art_sys_127: 1.27466135e-19 - art_sys_128: -2.23025955e-18 - art_sys_129: -4.30004547e-19 - art_sys_130: 3.33152813e-18 - art_sys_131: 4.45751496e-18 - art_sys_132: -4.19321297e-19 - art_sys_133: 1.62741118e-18 - art_sys_134: 2.38368030e-15 - art_sys_135: -5.56804972e-19 - art_sys_136: -2.13539088e-18 - art_sys_137: 7.81229769e-16 - art_sys_138: 2.86027282e-19 - art_sys_139: -1.96036151e-19 - art_sys_140: 3.23453484e-18 - art_sys_141: -2.97592507e-20 - art_sys_142: 3.90769229e-18 - art_sys_143: -2.39303555e-16 - art_sys_144: 6.69560875e-17 - art_sys_145: 1.85133982e-17 - art_sys_146: 0.0 - art_sys_147: 2.98957953e-18 - art_sys_148: -1.10492453e-18 - art_sys_149: -1.10492453e-18 - art_sys_150: 2.33013756e-19 - art_sys_151: 2.33013756e-19 - art_sys_152: -1.40301174e-19 - art_sys_153: 6.84018864e-19 - art_sys_154: -2.34809355e-19 - art_sys_155: 8.72111192e-31 - art_sys_156: -4.96054361e-34 - art_sys_157: 3.61950011e-33 - art_sys_158: 0.0 - art_sys_159: -2.81422297e-12 - art_sys_160: 1.22026616e-12 - art_sys_161: -4.86650995e-13 - art_sys_162: -1.80854623e-13 - art_sys_163: 6.75553287e-14 - art_sys_164: -2.21444195e-14 - art_sys_165: 7.34138802e-15 - art_sys_166: -1.99767118e-25 - art_sys_167: 8.54453814e-26 - art_sys_168: 1.71061955e-25 - art_sys_169: -4.21449720e-26 - art_sys_170: 1.80556640e-26 - art_sys_171: -2.20075485e-26 - art_sys_172: -6.51309774e-26 - art_sys_173: -1.83057969e-26 - art_sys_174: -3.48051192e-27 - art_sys_175: -5.64601416e-30 - art_sys_176: -9.19642871e-29 - art_sys_177: 4.91363306e-29 - art_sys_178: -5.13663836e-29 - art_sys_179: 2.56792331e-30 - art_sys_180: 2.74432856e-29 - art_sys_181: -4.04510419e-30 - art_sys_182: -4.29279781e-30 - art_sys_183: 3.96101012e-31 - art_sys_184: -4.96238611e-31 - art_sys_185: 1.12959599e-31 + art_sys_89: 4.34037668e-22 + art_sys_90: -5.72723904e-08 + art_sys_91: 2.23643306e-19 + art_sys_92: 1.68198374e-23 + art_sys_93: 4.09061566e-23 + art_sys_94: -4.83203468e-09 + art_sys_95: -4.46731866e-19 + art_sys_96: -6.98547916e-20 + art_sys_97: 1.22841000e-21 + art_sys_98: 4.82546830e-18 + art_sys_99: 2.08632610e-19 + art_sys_100: 8.75218063e-17 + art_sys_101: 2.76018447e-18 + art_sys_102: -1.15475148e-18 + art_sys_103: 1.64795594e-17 + art_sys_104: -1.07726126e-18 + art_sys_105: -6.23115260e-11 + art_sys_106: -6.73989007e-19 + art_sys_107: 1.26322427e-19 + art_sys_108: -3.43318118e-11 + art_sys_109: -1.48153061e-11 + art_sys_110: 3.97386452e-18 + art_sys_111: 1.13064357e-18 + art_sys_112: 8.17233576e-19 + art_sys_113: -3.75118188e-19 + art_sys_114: 6.07223571e-12 + art_sys_115: -2.45101406e-19 + art_sys_116: -9.13428927e-21 + art_sys_117: 2.81422030e-12 + art_sys_118: 2.45185539e-19 + art_sys_119: -1.29116756e-18 + art_sys_120: -2.20316285e-20 + art_sys_121: 1.22023511e-12 + art_sys_122: -2.13472249e-18 + art_sys_123: 1.02804590e-20 + art_sys_124: 4.27761692e-20 + art_sys_125: 4.86577402e-13 + art_sys_126: 2.39379521e-19 + art_sys_127: -8.26279927e-19 + art_sys_128: -3.30911203e-20 + art_sys_129: -1.80859099e-13 + art_sys_130: -1.08111627e-18 + art_sys_131: 6.75614202e-14 + art_sys_132: 1.84021499e-18 + art_sys_133: -5.62054131e-18 + art_sys_134: -3.27151716e-21 + art_sys_135: -4.94502083e-20 + art_sys_136: 2.21159133e-14 + art_sys_137: -6.51138600e-18 + art_sys_138: -2.38611676e-21 + art_sys_139: 1.71189538e-19 + art_sys_140: -7.34401233e-15 + art_sys_141: 2.75009504e-18 + art_sys_142: -4.68285514e-21 + art_sys_143: -1.39051776e-18 + art_sys_144: 2.37807029e-15 + art_sys_145: 2.00898844e-20 + art_sys_146: 1.40312255e-18 + art_sys_147: -7.81503267e-16 + art_sys_148: -2.30551365e-16 + art_sys_149: -2.36381311e-20 + art_sys_150: 9.05818551e-19 + art_sys_151: 7.24137490e-19 + art_sys_152: 8.12005528e-17 + art_sys_153: -1.19082116e-18 + art_sys_154: -2.52092727e-21 + art_sys_155: -1.67519868e-17 + art_sys_156: -0.0 + art_sys_157: 4.62482884e-20 + art_sys_158: -0.0 + art_sys_159: -2.19321848e-19 + art_sys_160: 3.21760324e-18 + art_sys_161: -2.44727855e-20 + art_sys_162: -2.44727855e-20 + art_sys_163: 5.50180653e-20 + art_sys_164: 5.50180653e-20 + art_sys_165: -1.01725662e-32 + art_sys_166: 5.06406256e-33 + art_sys_167: 0.0 + art_sys_168: 1.73682058e-26 + art_sys_169: 1.30592358e-26 + art_sys_170: -6.09144097e-28 + art_sys_171: 1.17332091e-25 + art_sys_172: 1.69481121e-26 + art_sys_173: -1.18042042e-27 + art_sys_174: 1.01818535e-27 + art_sys_175: 1.28731638e-28 + art_sys_176: 9.59419066e-29 + art_sys_177: -5.50418955e-30 + art_sys_178: -5.35631968e-30 + art_sys_179: 8.42872979e-31 + art_sys_180: -8.12929493e-32 + art_sys_181: 4.30267255e-32 + art_sys_182: 1.23559044e-29 + art_sys_183: 4.02526696e-31 + art_sys_184: -1.07899487e-31 + art_sys_185: -9.32554267e-32 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -32000,149 +32000,149 @@ bins: art_sys_40: 0.0 art_sys_41: 0.0 art_sys_42: 0.0 - art_sys_43: 2.14405047e-173 - art_sys_44: -1.31326851e-165 - art_sys_45: 8.68758688e-39 - art_sys_46: -5.28230473e-35 - art_sys_47: 1.30885415e-29 - art_sys_48: -1.52130103e-21 - art_sys_49: 1.93051528e+00 - art_sys_50: 1.91473892e+00 - art_sys_51: 3.26468412e+00 - art_sys_52: 2.99327304e+00 - art_sys_53: -3.66641440e+00 - art_sys_54: 1.10523007e+00 - art_sys_55: 4.77199106e-18 - art_sys_56: 6.39598000e-19 - art_sys_57: -1.76237123e-18 - art_sys_58: 1.02159751e+00 - art_sys_59: 1.99410627e-01 - art_sys_60: 4.54143052e-20 - art_sys_61: 1.72781082e-19 - art_sys_62: 1.93025335e-18 - art_sys_63: -2.55524886e-18 - art_sys_64: 1.74232253e-18 - art_sys_65: -1.93753230e-03 - art_sys_66: 1.66268257e-03 - art_sys_67: -5.19183510e-19 - art_sys_68: -8.72596191e-20 - art_sys_69: 8.70579646e-19 - art_sys_70: 2.76425110e-19 - art_sys_71: -3.25910539e-19 - art_sys_72: -9.42691756e-20 - art_sys_73: 1.40721582e-16 - art_sys_74: -1.00169547e-16 - art_sys_75: 1.08240798e-16 - art_sys_76: 3.03675240e-04 - art_sys_77: 3.80696819e-20 - art_sys_78: 4.75692955e-17 - art_sys_79: -1.08320866e-17 - art_sys_80: -6.24035646e-05 - art_sys_81: 4.52844349e-19 - art_sys_82: -1.01800588e-19 - art_sys_83: -3.12283671e-05 - art_sys_84: 6.96543764e-21 - art_sys_85: 2.95293198e-20 - art_sys_86: 4.03856583e-06 - art_sys_87: -9.23428748e-20 + art_sys_43: 0.0 + art_sys_44: -1.22550997e-205 + art_sys_45: -6.18065497e-199 + art_sys_46: -6.99838737e-149 + art_sys_47: -3.87478072e-154 + art_sys_48: 2.08886847e-146 + art_sys_49: -1.78229676e-137 + art_sys_50: 7.64171425e-130 + art_sys_51: -3.17066170e-119 + art_sys_52: -3.52274197e-136 + art_sys_53: -1.12507604e-132 + art_sys_54: -1.33120702e-127 + art_sys_55: -3.28249045e-124 + art_sys_56: -5.29354800e-121 + art_sys_57: -1.88624289e-42 + art_sys_58: -9.34665962e-29 + art_sys_59: 3.58664588e-40 + art_sys_60: -4.33646498e-37 + art_sys_61: -1.70949253e-22 + art_sys_62: 4.74531735e-37 + art_sys_63: 8.01554849e-27 + art_sys_64: 1.93051528e+00 + art_sys_65: -1.91473892e+00 + art_sys_66: 3.26468412e+00 + art_sys_67: 2.99327304e+00 + art_sys_68: 3.66641440e+00 + art_sys_69: -1.10523007e+00 + art_sys_70: -1.02159751e+00 + art_sys_71: -1.99410627e-01 + art_sys_72: 1.93753230e-03 + art_sys_73: 1.66268257e-03 + art_sys_74: -2.41179386e-19 + art_sys_75: -3.03675240e-04 + art_sys_76: 4.74303202e-17 + art_sys_77: -5.17454148e-17 + art_sys_78: -1.57855931e-18 + art_sys_79: -6.24035646e-05 + art_sys_80: -6.26986551e-18 + art_sys_81: 3.12283671e-05 + art_sys_82: 7.65249578e-18 + art_sys_83: -4.94175099e-19 + art_sys_84: 4.63630893e-19 + art_sys_85: -1.04755666e-19 + art_sys_86: -1.33231633e-19 + art_sys_87: 4.03856582e-06 art_sys_88: 7.52664846e-07 - art_sys_89: 3.62309416e-07 - art_sys_90: -1.40813677e-19 - art_sys_91: 8.24279909e-16 - art_sys_92: -1.30345327e-18 - art_sys_93: -5.08460821e-19 - art_sys_94: -8.44761750e-18 - art_sys_95: 7.91463532e-20 - art_sys_96: -3.09370353e-08 - art_sys_97: 8.21740208e-18 - art_sys_98: 7.92392864e-19 - art_sys_99: -8.32520736e-21 - art_sys_100: -1.43913460e-18 - art_sys_101: 2.25451369e-16 - art_sys_102: 1.20390347e-17 - art_sys_103: 2.39204896e-18 - art_sys_104: -6.36776944e-20 - art_sys_105: -4.49974007e-19 - art_sys_106: -2.40501087e-17 - art_sys_107: -3.38641116e-10 - art_sys_108: 2.08164767e-10 - art_sys_109: -8.69629080e-11 - art_sys_110: -2.56418439e-16 - art_sys_111: -7.36973426e-18 - art_sys_112: -1.07287082e-17 - art_sys_113: 3.60079345e-11 - art_sys_114: -8.33040752e-18 - art_sys_115: 2.23901957e-19 - art_sys_116: -8.54755983e-17 - art_sys_117: -1.06795771e-18 - art_sys_118: 2.27748676e-17 - art_sys_119: 4.14081222e-19 - art_sys_120: 5.55223421e-18 - art_sys_121: 1.45623296e-16 - art_sys_122: -3.52474836e-18 - art_sys_123: -1.05618659e-17 - art_sys_124: -1.75571584e-17 - art_sys_125: 6.24242305e-18 - art_sys_126: -9.75814450e-17 - art_sys_127: -8.47186914e-19 - art_sys_128: 1.32706808e-17 - art_sys_129: 2.72872716e-18 - art_sys_130: -1.98103223e-17 - art_sys_131: -2.43444574e-17 - art_sys_132: 2.51927922e-18 - art_sys_133: -9.69811728e-18 - art_sys_134: -1.43829342e-14 - art_sys_135: 3.44728777e-18 - art_sys_136: 1.26995207e-17 - art_sys_137: -4.71514480e-15 - art_sys_138: -1.79679295e-18 - art_sys_139: 1.04267660e-18 - art_sys_140: -1.94320613e-17 - art_sys_141: 1.56613595e-19 - art_sys_142: -2.36583119e-17 - art_sys_143: 1.44470862e-15 - art_sys_144: -4.04267898e-16 - art_sys_145: -1.11787759e-16 - art_sys_146: -0.0 - art_sys_147: -1.80418046e-17 - art_sys_148: 6.53624568e-18 - art_sys_149: 6.53624568e-18 - art_sys_150: -1.40397641e-18 - art_sys_151: -1.40397641e-18 - art_sys_152: 8.27309229e-19 - art_sys_153: -4.13415402e-18 - art_sys_154: 1.41785571e-18 - art_sys_155: -5.27896235e-30 - art_sys_156: 2.85913096e-33 - art_sys_157: -2.13693323e-32 - art_sys_158: -0.0 - art_sys_159: 1.67826982e-11 - art_sys_160: -7.28184317e-12 - art_sys_161: 2.91674943e-12 - art_sys_162: 1.08573952e-12 - art_sys_163: -4.06410133e-13 - art_sys_164: 1.33410639e-13 - art_sys_165: -4.42653776e-14 - art_sys_166: 1.20074383e-24 - art_sys_167: -4.97227402e-25 - art_sys_168: -1.03284422e-24 - art_sys_169: 2.56934182e-25 - art_sys_170: -1.12769833e-25 - art_sys_171: 1.03791768e-25 - art_sys_172: 2.13946475e-25 - art_sys_173: -1.86240397e-26 - art_sys_174: -1.00655305e-26 - art_sys_175: 3.40915858e-29 - art_sys_176: -7.71482487e-28 - art_sys_177: 5.31072902e-28 - art_sys_178: 2.23052216e-28 - art_sys_179: -1.36895558e-29 - art_sys_180: -1.43134715e-28 - art_sys_181: 2.41972593e-29 - art_sys_182: 2.63538171e-29 - art_sys_183: -2.39984896e-30 - art_sys_184: 2.99713558e-30 - art_sys_185: -6.82293465e-31 + art_sys_89: -2.74500763e-21 + art_sys_90: 3.62309415e-07 + art_sys_91: -1.37667097e-18 + art_sys_92: -1.11125355e-22 + art_sys_93: -2.60575655e-22 + art_sys_94: 3.09370346e-08 + art_sys_95: 3.02826580e-18 + art_sys_96: 1.15796412e-19 + art_sys_97: -5.32691904e-20 + art_sys_98: -3.04719801e-17 + art_sys_99: -1.31026152e-18 + art_sys_100: -5.52460290e-16 + art_sys_101: -1.71658888e-17 + art_sys_102: 6.68004941e-18 + art_sys_103: -1.04171145e-16 + art_sys_104: 6.77345267e-18 + art_sys_105: 3.38638091e-10 + art_sys_106: 4.26679304e-18 + art_sys_107: -6.68024341e-19 + art_sys_108: 2.08165543e-10 + art_sys_109: 8.69627538e-11 + art_sys_110: -2.52700531e-17 + art_sys_111: -7.28752951e-18 + art_sys_112: -5.29446213e-18 + art_sys_113: 2.36992867e-18 + art_sys_114: -3.60079817e-11 + art_sys_115: 1.56469818e-18 + art_sys_116: 7.07361700e-20 + art_sys_117: -1.67826821e-11 + art_sys_118: -1.61120528e-18 + art_sys_119: 8.23466038e-18 + art_sys_120: 9.73223432e-20 + art_sys_121: -7.28165789e-12 + art_sys_122: 1.34826681e-17 + art_sys_123: -1.21530497e-20 + art_sys_124: -2.75237808e-19 + art_sys_125: -2.91630851e-12 + art_sys_126: -1.55373827e-18 + art_sys_127: 2.25436722e-18 + art_sys_128: 2.20033317e-19 + art_sys_129: 1.08576635e-12 + art_sys_130: 7.43599202e-18 + art_sys_131: -4.06446984e-13 + art_sys_132: -1.17755141e-17 + art_sys_133: 3.35754501e-17 + art_sys_134: -8.43297277e-21 + art_sys_135: 3.13366585e-19 + art_sys_136: -1.33239164e-13 + art_sys_137: 3.82385451e-17 + art_sys_138: 1.31731464e-20 + art_sys_139: -8.61736892e-19 + art_sys_140: 4.42812044e-14 + art_sys_141: -1.69365020e-17 + art_sys_142: 2.32421048e-20 + art_sys_143: 8.11312515e-18 + art_sys_144: -1.43490860e-14 + art_sys_145: -1.19518424e-19 + art_sys_146: -8.25269600e-18 + art_sys_147: 4.71679564e-15 + art_sys_148: 1.39187932e-15 + art_sys_149: 1.53870415e-19 + art_sys_150: -5.44974807e-18 + art_sys_151: -4.45478756e-18 + art_sys_152: -4.90258342e-16 + art_sys_153: 7.13231152e-18 + art_sys_154: 1.61529353e-20 + art_sys_155: 1.01156385e-16 + art_sys_156: 0.0 + art_sys_157: -2.69898997e-19 + art_sys_158: 0.0 + art_sys_159: 1.29139585e-18 + art_sys_160: -1.94261002e-17 + art_sys_161: 1.46814938e-19 + art_sys_162: 1.46814938e-19 + art_sys_163: -3.29629532e-19 + art_sys_164: -3.29629532e-19 + art_sys_165: 6.13990569e-32 + art_sys_166: -3.05694136e-32 + art_sys_167: -0.0 + art_sys_168: -1.16137016e-25 + art_sys_169: -6.19928288e-26 + art_sys_170: 8.07470155e-27 + art_sys_171: -8.65322809e-26 + art_sys_172: -1.85975380e-26 + art_sys_173: -5.40640596e-28 + art_sys_174: 3.21304971e-28 + art_sys_175: -1.89882335e-28 + art_sys_176: -5.21486874e-28 + art_sys_177: 5.47210882e-29 + art_sys_178: 2.98542946e-29 + art_sys_179: -5.09065372e-30 + art_sys_180: 4.90074784e-31 + art_sys_181: -1.44922296e-30 + art_sys_182: 2.33806722e-29 + art_sys_183: -2.95865243e-31 + art_sys_184: 6.40885082e-31 + art_sys_185: 5.63167694e-31 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -32291,149 +32291,149 @@ bins: art_sys_40: 0.0 art_sys_41: 0.0 art_sys_42: 0.0 - art_sys_43: -3.81458917e-174 - art_sys_44: 2.33650276e-166 - art_sys_45: -1.54564961e-39 - art_sys_46: 9.39799782e-36 - art_sys_47: -2.32864423e-30 - art_sys_48: 2.70661851e-22 - art_sys_49: -3.43467092e-01 - art_sys_50: 1.66166898e+00 - art_sys_51: -2.11306803e+00 - art_sys_52: -2.11876220e-01 - art_sys_53: -3.04260091e+00 - art_sys_54: -1.37019594e+00 - art_sys_55: 4.17098959e-18 - art_sys_56: -4.59852108e-18 - art_sys_57: -1.34724956e-18 - art_sys_58: -1.02688199e+00 - art_sys_59: -3.79530747e-01 - art_sys_60: -3.55646312e-19 - art_sys_61: 3.90883651e-19 - art_sys_62: -1.16011417e-18 - art_sys_63: -2.13570570e-18 - art_sys_64: -7.14952155e-19 - art_sys_65: 4.02416382e-03 - art_sys_66: -3.88907768e-03 - art_sys_67: -1.98021556e-19 - art_sys_68: -1.00116457e-18 - art_sys_69: -1.22151504e-18 - art_sys_70: -3.91491149e-19 - art_sys_71: -3.19633967e-19 - art_sys_72: -2.06016305e-19 - art_sys_73: -4.05528019e-16 - art_sys_74: 2.76019388e-16 - art_sys_75: -3.03848674e-16 - art_sys_76: -8.58045518e-04 - art_sys_77: -1.44493368e-19 - art_sys_78: -1.34320545e-16 - art_sys_79: 3.06665844e-17 - art_sys_80: 1.76849771e-04 - art_sys_81: -1.54145645e-18 - art_sys_82: 3.30703179e-19 - art_sys_83: 9.34564264e-05 - art_sys_84: 5.35147030e-19 - art_sys_85: -8.88417840e-20 - art_sys_86: -1.26499244e-05 - art_sys_87: 1.45660870e-19 + art_sys_43: 0.0 + art_sys_44: 2.07221869e-206 + art_sys_45: 1.04508895e-199 + art_sys_46: 1.24432057e-149 + art_sys_47: 6.88940051e-155 + art_sys_48: -3.71402991e-147 + art_sys_49: 3.16894221e-138 + art_sys_50: -1.35870476e-130 + art_sys_51: 5.63746955e-120 + art_sys_52: 6.26347186e-137 + art_sys_53: 2.00039693e-133 + art_sys_54: 2.36689996e-128 + art_sys_55: 5.83630223e-125 + art_sys_56: 9.41198352e-122 + art_sys_57: 3.35590373e-43 + art_sys_58: 1.66290832e-29 + art_sys_59: -6.38117092e-41 + art_sys_60: 7.71520939e-38 + art_sys_61: 3.04143884e-23 + art_sys_62: -8.44253232e-38 + art_sys_63: -1.42608406e-27 + art_sys_64: -3.43467092e-01 + art_sys_65: -1.66166898e+00 + art_sys_66: -2.11306803e+00 + art_sys_67: -2.11876220e-01 + art_sys_68: 3.04260091e+00 + art_sys_69: 1.37019594e+00 + art_sys_70: 1.02688199e+00 + art_sys_71: 3.79530747e-01 + art_sys_72: -4.02416382e-03 + art_sys_73: -3.88907768e-03 + art_sys_74: 2.23947414e-19 + art_sys_75: 8.58045518e-04 + art_sys_76: -1.33450461e-16 + art_sys_77: 1.45519631e-16 + art_sys_78: -1.28369657e-17 + art_sys_79: 1.76849771e-04 + art_sys_80: 1.83914037e-17 + art_sys_81: -9.34564265e-05 + art_sys_82: -2.28156292e-17 + art_sys_83: 1.53278472e-18 + art_sys_84: -1.44910717e-18 + art_sys_85: 3.54684137e-19 + art_sys_86: 4.19224368e-19 + art_sys_87: -1.26499243e-05 art_sys_88: -2.40036983e-06 - art_sys_89: -1.18019739e-06 - art_sys_90: 6.79236009e-20 - art_sys_91: -2.33556792e-15 - art_sys_92: 3.67915821e-18 - art_sys_93: 1.20482124e-18 - art_sys_94: 2.52915346e-17 - art_sys_95: -4.68557622e-19 - art_sys_96: 1.02841389e-07 - art_sys_97: -2.46365908e-17 - art_sys_98: -2.52820988e-18 - art_sys_99: -7.76819480e-21 - art_sys_100: 4.13680539e-18 - art_sys_101: -6.38776666e-16 - art_sys_102: -3.40757348e-17 - art_sys_103: -7.46092041e-18 - art_sys_104: 1.91562801e-19 - art_sys_105: 1.23065023e-18 - art_sys_106: 7.20174934e-17 - art_sys_107: 1.34545585e-09 - art_sys_108: -7.35251271e-10 - art_sys_109: 3.23760427e-10 - art_sys_110: 8.03185872e-16 - art_sys_111: 2.21269429e-17 - art_sys_112: 3.42149147e-17 - art_sys_113: -1.32728556e-10 - art_sys_114: 2.49301843e-17 - art_sys_115: -8.13570353e-19 - art_sys_116: 2.67602937e-16 - art_sys_117: 3.24388370e-18 - art_sys_118: -7.55611148e-17 - art_sys_119: -1.30290616e-18 - art_sys_120: -1.76688537e-17 - art_sys_121: -5.66275788e-16 - art_sys_122: 1.10802824e-17 - art_sys_123: 3.32660367e-17 - art_sys_124: 6.58792134e-17 - art_sys_125: -2.06958206e-17 - art_sys_126: 3.55906187e-16 - art_sys_127: 2.89600048e-18 - art_sys_128: -4.99669853e-17 - art_sys_129: -8.62437556e-18 - art_sys_130: 7.38121000e-17 - art_sys_131: 9.70541227e-17 - art_sys_132: -9.18546581e-18 - art_sys_133: 3.62574129e-17 - art_sys_134: 5.38445448e-14 - art_sys_135: -1.18423718e-17 - art_sys_136: -4.71490618e-17 - art_sys_137: 1.76555186e-14 - art_sys_138: 5.09213925e-18 - art_sys_139: -4.42569365e-18 - art_sys_140: 7.25568096e-17 - art_sys_141: -4.83334369e-19 - art_sys_142: 8.88950850e-17 - art_sys_143: -5.40980633e-15 - art_sys_144: 1.51390334e-15 - art_sys_145: 4.18630896e-16 - art_sys_146: 0.0 - art_sys_147: 6.75415470e-17 - art_sys_148: -2.41619051e-17 - art_sys_149: -2.41619051e-17 - art_sys_150: 5.25286169e-18 - art_sys_151: 5.25286169e-18 - art_sys_152: -3.12270274e-18 - art_sys_153: 1.54957095e-17 - art_sys_154: -5.30964559e-18 - art_sys_155: 1.97975504e-29 - art_sys_156: -1.01884749e-32 - art_sys_157: 7.95325433e-32 - art_sys_158: 0.0 - art_sys_159: -6.21640828e-11 - art_sys_160: 2.70937312e-11 - art_sys_161: -1.08669875e-11 - art_sys_162: -4.05520924e-12 - art_sys_163: 1.51922501e-12 - art_sys_164: -4.99110858e-13 - art_sys_165: 1.65686019e-13 - art_sys_166: -4.49469588e-24 - art_sys_167: 1.83100822e-24 - art_sys_168: 3.86799887e-24 - art_sys_169: -9.62674889e-25 - art_sys_170: 4.04559218e-25 - art_sys_171: -4.32736949e-25 - art_sys_172: -4.22903035e-25 - art_sys_173: 4.84112638e-26 - art_sys_174: 3.02346082e-26 - art_sys_175: -1.27668276e-28 - art_sys_176: 2.77788747e-28 - art_sys_177: -1.19167834e-27 - art_sys_178: -1.06974055e-27 - art_sys_179: 5.59552200e-29 - art_sys_180: 1.70341717e-28 - art_sys_181: -7.85034758e-29 - art_sys_182: -9.54267648e-29 - art_sys_183: 8.72897501e-30 - art_sys_184: -1.12228943e-29 - art_sys_185: 2.55541252e-30 + art_sys_89: 8.95676295e-21 + art_sys_90: -1.18019739e-06 + art_sys_91: 4.28701125e-18 + art_sys_92: 3.59834847e-22 + art_sys_93: 8.66491553e-22 + art_sys_94: -1.02841387e-07 + art_sys_95: -9.42742840e-18 + art_sys_96: -2.83884238e-19 + art_sys_97: -4.73571697e-20 + art_sys_98: 9.51941714e-17 + art_sys_99: 4.23503396e-18 + art_sys_100: 1.73032152e-15 + art_sys_101: 5.37893602e-17 + art_sys_102: -2.12098096e-17 + art_sys_103: 3.26353830e-16 + art_sys_104: -2.11778231e-17 + art_sys_105: -1.34544526e-09 + art_sys_106: -1.34369885e-17 + art_sys_107: 2.09880070e-18 + art_sys_108: -7.35254114e-10 + art_sys_109: -3.23759862e-10 + art_sys_110: 8.21162832e-17 + art_sys_111: 2.31519682e-17 + art_sys_112: 1.68915254e-17 + art_sys_113: -7.92870245e-18 + art_sys_114: 1.32728731e-10 + art_sys_115: -4.92902668e-18 + art_sys_116: -2.01446006e-19 + art_sys_117: 6.21640224e-11 + art_sys_118: 5.17738863e-18 + art_sys_119: -2.75046902e-17 + art_sys_120: -3.31038367e-19 + art_sys_121: 2.70930433e-11 + art_sys_122: -4.38955999e-17 + art_sys_123: 7.61540488e-20 + art_sys_124: 9.22659746e-19 + art_sys_125: 1.08653456e-11 + art_sys_126: 5.13499389e-18 + art_sys_127: -5.84518087e-18 + art_sys_128: -7.33667554e-19 + art_sys_129: -4.05530924e-12 + art_sys_130: -3.14685422e-17 + art_sys_131: 1.51936325e-12 + art_sys_132: 3.91400848e-17 + art_sys_133: -1.23360307e-16 + art_sys_134: 1.97600592e-20 + art_sys_135: -1.05296087e-18 + art_sys_136: 4.98469880e-13 + art_sys_137: -1.39164821e-16 + art_sys_138: -5.94065525e-20 + art_sys_139: 3.02097202e-18 + art_sys_140: -1.65745260e-13 + art_sys_141: 5.97995712e-17 + art_sys_142: -9.00521604e-20 + art_sys_143: -2.98167533e-17 + art_sys_144: 5.37178323e-14 + art_sys_145: 4.27561033e-19 + art_sys_146: 3.00814713e-17 + art_sys_147: -1.76617002e-14 + art_sys_148: -5.21198765e-15 + art_sys_149: -5.57589460e-19 + art_sys_150: 2.03454052e-17 + art_sys_151: 1.69360915e-17 + art_sys_152: 1.83589902e-15 + art_sys_153: -2.65590885e-17 + art_sys_154: -5.26212067e-20 + art_sys_155: -3.78821093e-16 + art_sys_156: 0.0 + art_sys_157: 9.83650329e-19 + art_sys_158: -0.0 + art_sys_159: -4.72157962e-18 + art_sys_160: 7.27506165e-17 + art_sys_161: -5.45810147e-19 + art_sys_162: -5.45810147e-19 + art_sys_163: 1.22528786e-18 + art_sys_164: 1.22528786e-18 + art_sys_165: -2.29848034e-31 + art_sys_166: 1.14451182e-31 + art_sys_167: 0.0 + art_sys_168: 3.97967519e-25 + art_sys_169: 2.38294232e-25 + art_sys_170: -1.86095378e-26 + art_sys_171: 5.75349859e-26 + art_sys_172: 2.28508390e-26 + art_sys_173: -1.28038815e-28 + art_sys_174: -3.47362165e-27 + art_sys_175: -3.17202844e-28 + art_sys_176: 2.11420263e-27 + art_sys_177: -3.21618691e-28 + art_sys_178: -1.12043498e-28 + art_sys_179: 1.90648568e-29 + art_sys_180: -1.83259629e-30 + art_sys_181: -9.79253100e-29 + art_sys_182: -1.31043430e-28 + art_sys_183: 8.37757528e-31 + art_sys_184: -2.39745174e-30 + art_sys_185: -2.10912562e-30 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -32582,149 +32582,149 @@ bins: art_sys_40: 0.0 art_sys_41: 0.0 art_sys_42: 0.0 - art_sys_43: -2.32335016e-174 - art_sys_44: 1.42309271e-166 - art_sys_45: -9.41409560e-40 - art_sys_46: 5.72404309e-36 - art_sys_47: -1.41830847e-30 - art_sys_48: 1.64852145e-22 - art_sys_49: -2.09195669e-01 - art_sys_50: 9.72117903e-02 - art_sys_51: -5.21203204e-01 - art_sys_52: -4.67999087e-01 - art_sys_53: -2.99150030e-01 - art_sys_54: -2.93428211e+00 - art_sys_55: 7.03438103e-19 - art_sys_56: -2.07762855e-18 - art_sys_57: -1.94854828e-19 - art_sys_58: 2.69479787e-01 - art_sys_59: 4.34233441e-01 - art_sys_60: 2.07382836e-19 - art_sys_61: 3.32735903e-19 - art_sys_62: 8.04242265e-19 - art_sys_63: -3.15155719e-18 - art_sys_64: 5.21781522e-19 - art_sys_65: -1.40853718e-02 - art_sys_66: 1.07149593e-02 - art_sys_67: -9.09624504e-19 - art_sys_68: -7.13922710e-20 - art_sys_69: 1.51850034e-18 - art_sys_70: -4.90289440e-19 - art_sys_71: 4.18505177e-19 - art_sys_72: 4.88402576e-20 - art_sys_73: 1.18053388e-15 - art_sys_74: -8.36833795e-16 - art_sys_75: 8.81595401e-16 - art_sys_76: 2.49775653e-03 - art_sys_77: 1.24412056e-18 - art_sys_78: 3.90655933e-16 - art_sys_79: -9.33101022e-17 - art_sys_80: -5.35255119e-04 - art_sys_81: 4.04883221e-18 - art_sys_82: -1.01183869e-18 - art_sys_83: -2.77838279e-04 - art_sys_84: -8.13130472e-19 - art_sys_85: 2.78378783e-19 - art_sys_86: 3.85738760e-05 - art_sys_87: -3.01978072e-19 + art_sys_43: 0.0 + art_sys_44: 1.31141852e-206 + art_sys_45: 6.61392047e-200 + art_sys_46: 7.58242420e-150 + art_sys_47: 4.19814302e-155 + art_sys_48: -2.26319093e-147 + art_sys_49: 1.93103487e-138 + art_sys_50: -8.27943868e-131 + art_sys_51: 3.43526312e-120 + art_sys_52: 3.81672551e-137 + art_sys_53: 1.21896708e-133 + art_sys_54: 1.44230032e-128 + art_sys_55: 3.55642432e-125 + art_sys_56: 5.73531077e-122 + art_sys_57: 2.04398195e-43 + art_sys_58: 1.01282839e-29 + art_sys_59: -3.88658294e-41 + art_sys_60: 4.69910645e-38 + art_sys_61: 1.85245066e-23 + art_sys_62: -5.14213966e-38 + art_sys_63: -8.68585723e-28 + art_sys_64: -2.09195669e-01 + art_sys_65: -9.72117903e-02 + art_sys_66: -5.21203204e-01 + art_sys_67: -4.67999087e-01 + art_sys_68: 2.99150030e-01 + art_sys_69: 2.93428211e+00 + art_sys_70: -2.69479787e-01 + art_sys_71: -4.34233441e-01 + art_sys_72: 1.40853718e-02 + art_sys_73: 1.07149593e-02 + art_sys_74: -1.61730433e-19 + art_sys_75: -2.49775653e-03 + art_sys_76: 4.07945364e-16 + art_sys_77: -4.42105543e-16 + art_sys_78: -1.17612945e-18 + art_sys_79: -5.35255119e-04 + art_sys_80: -5.51071676e-17 + art_sys_81: 2.77838279e-04 + art_sys_82: 6.82830992e-17 + art_sys_83: -4.35527412e-18 + art_sys_84: 4.42575354e-18 + art_sys_85: -1.03795546e-18 + art_sys_86: -1.27578954e-18 + art_sys_87: 3.85738759e-05 art_sys_88: 7.23534616e-06 - art_sys_89: 3.56211446e-06 - art_sys_90: -6.98071902e-19 - art_sys_91: 7.06928642e-15 - art_sys_92: -1.11560580e-17 - art_sys_93: -3.72622491e-18 - art_sys_94: -7.52844541e-17 - art_sys_95: 1.54068428e-18 - art_sys_96: -3.11993625e-07 - art_sys_97: 7.31972603e-17 - art_sys_98: 7.43520125e-18 - art_sys_99: 5.85143491e-20 - art_sys_100: -1.22787672e-17 - art_sys_101: 1.93345480e-15 - art_sys_102: 1.03144889e-16 - art_sys_103: 2.26607758e-17 - art_sys_104: -5.96699471e-19 - art_sys_105: -3.80758079e-18 - art_sys_106: -2.14118629e-16 - art_sys_107: -3.59664046e-09 - art_sys_108: 2.21653263e-09 - art_sys_109: -9.29495544e-10 - art_sys_110: -2.44914298e-15 - art_sys_111: -6.57877038e-17 - art_sys_112: -1.03095215e-16 - art_sys_113: 3.90861642e-10 - art_sys_114: -7.41571495e-17 - art_sys_115: 2.44472280e-18 - art_sys_116: -8.16266398e-16 - art_sys_117: -9.65077415e-18 - art_sys_118: 2.29479940e-16 - art_sys_119: 3.90822398e-18 - art_sys_120: 5.33726960e-17 - art_sys_121: 1.51418990e-15 - art_sys_122: -3.37350626e-17 - art_sys_123: -1.01046885e-16 - art_sys_124: -1.97679025e-16 - art_sys_125: 6.28337852e-17 - art_sys_126: -1.04062206e-15 - art_sys_127: -8.64452837e-18 - art_sys_128: 1.47917882e-16 - art_sys_129: 2.63858298e-17 - art_sys_130: -2.18470323e-16 - art_sys_131: -2.60172833e-16 - art_sys_132: 2.65228276e-17 - art_sys_133: -1.08652008e-16 - art_sys_134: -1.60746755e-13 - art_sys_135: 3.49403375e-17 - art_sys_136: 1.39622659e-16 - art_sys_137: -5.27216528e-14 - art_sys_138: -1.54106133e-17 - art_sys_139: 1.14566376e-17 - art_sys_140: -2.16147333e-16 - art_sys_141: 1.82690477e-18 - art_sys_142: -2.65583461e-16 - art_sys_143: 1.61580043e-14 - art_sys_144: -4.52209075e-15 - art_sys_145: -1.25054635e-15 - art_sys_146: -0.0 - art_sys_147: -2.01669327e-16 - art_sys_148: 7.10302613e-17 - art_sys_149: 7.10302613e-17 - art_sys_150: -1.57328568e-17 - art_sys_151: -1.57328568e-17 - art_sys_152: 9.18373537e-18 - art_sys_153: -4.63125083e-17 - art_sys_154: 1.58613823e-17 - art_sys_155: -5.93177218e-29 - art_sys_156: 2.85945046e-32 - art_sys_157: -2.30624892e-31 - art_sys_158: -0.0 - art_sys_159: 1.83072998e-10 - art_sys_160: -8.00887403e-11 - art_sys_161: 3.22419619e-11 - art_sys_162: 1.20508033e-11 - art_sys_163: -4.52439693e-12 - art_sys_164: 1.48793733e-12 - art_sys_165: -4.94370787e-13 - art_sys_166: 1.34236262e-23 - art_sys_167: -5.46967186e-24 - art_sys_168: -1.15529321e-23 - art_sys_169: 2.87338498e-24 - art_sys_170: -1.22202152e-24 - art_sys_171: 1.24973287e-24 - art_sys_172: 1.35581022e-24 - art_sys_173: -1.33331432e-25 - art_sys_174: -1.00678461e-25 - art_sys_175: 3.81372166e-28 - art_sys_176: -2.10402510e-27 - art_sys_177: 3.28375438e-27 - art_sys_178: 3.04709761e-27 - art_sys_179: -1.74039413e-28 - art_sys_180: -9.07029702e-28 - art_sys_181: 2.46260104e-28 - art_sys_182: 2.77365983e-28 - art_sys_183: -2.56416601e-29 - art_sys_184: 3.35295758e-29 - art_sys_185: -7.63567965e-30 + art_sys_89: -2.70593986e-20 + art_sys_90: 3.56211446e-06 + art_sys_91: -1.27631671e-17 + art_sys_92: -1.10307959e-21 + art_sys_93: -2.63691351e-21 + art_sys_94: 3.11993618e-07 + art_sys_95: 2.87517049e-17 + art_sys_96: 8.04629135e-19 + art_sys_97: 2.56482705e-19 + art_sys_98: -2.90422400e-16 + art_sys_99: -1.29873510e-17 + art_sys_100: -5.27627553e-15 + art_sys_101: -1.63942862e-16 + art_sys_102: 6.43685193e-17 + art_sys_103: -9.95150426e-16 + art_sys_104: 6.46680858e-17 + art_sys_105: 3.59660824e-09 + art_sys_106: 4.09764081e-17 + art_sys_107: -6.17164536e-18 + art_sys_108: 2.21654089e-09 + art_sys_109: 9.29493910e-10 + art_sys_110: -2.47847990e-16 + art_sys_111: -6.96969755e-17 + art_sys_112: -5.08410832e-17 + art_sys_113: 2.39994174e-17 + art_sys_114: -3.90862153e-10 + art_sys_115: 1.48599787e-17 + art_sys_116: 5.78317204e-19 + art_sys_117: -1.83072818e-10 + art_sys_118: -1.55560569e-17 + art_sys_119: 8.33705476e-17 + art_sys_120: 1.01414474e-18 + art_sys_121: -8.00867105e-11 + art_sys_122: 1.32513084e-16 + art_sys_123: -1.81641062e-19 + art_sys_124: -2.75608161e-18 + art_sys_125: -3.22370923e-11 + art_sys_126: -1.55966197e-17 + art_sys_127: 1.56986446e-17 + art_sys_128: 2.19833462e-18 + art_sys_129: 1.20511000e-11 + art_sys_130: 9.68905785e-17 + art_sys_131: -4.52481036e-12 + art_sys_132: -1.18750579e-16 + art_sys_133: 3.62565675e-16 + art_sys_134: -6.56368896e-20 + art_sys_135: 3.17432288e-18 + art_sys_136: -1.48602854e-12 + art_sys_137: 4.09430620e-16 + art_sys_138: 1.38073191e-19 + art_sys_139: -9.04382648e-18 + art_sys_140: 4.94547568e-13 + art_sys_141: -1.81138555e-16 + art_sys_142: 2.63827492e-19 + art_sys_143: 8.81895978e-17 + art_sys_144: -1.60368487e-13 + art_sys_145: -1.29185576e-18 + art_sys_146: -8.87287864e-17 + art_sys_147: 5.27401130e-14 + art_sys_148: 1.55672438e-14 + art_sys_149: 1.70030223e-18 + art_sys_150: -6.06805271e-17 + art_sys_151: -5.08416566e-17 + art_sys_152: -5.48377578e-15 + art_sys_153: 7.90690987e-17 + art_sys_154: 1.58788826e-19 + art_sys_155: 1.13166651e-15 + art_sys_156: -0.0 + art_sys_157: -2.89686392e-18 + art_sys_158: 0.0 + art_sys_159: 1.39548644e-17 + art_sys_160: -2.17287971e-16 + art_sys_161: 1.62351252e-18 + art_sys_162: 1.62351252e-18 + art_sys_163: -3.64642314e-18 + art_sys_164: -3.64642314e-18 + art_sys_165: 6.86473331e-31 + art_sys_166: -3.41844691e-31 + art_sys_167: -0.0 + art_sys_168: -1.27020647e-24 + art_sys_169: -7.01390804e-25 + art_sys_170: 8.17490264e-26 + art_sys_171: -2.40215492e-25 + art_sys_172: -6.05797749e-26 + art_sys_173: 2.11651220e-27 + art_sys_174: 1.39548872e-26 + art_sys_175: 6.80031290e-28 + art_sys_176: -6.20561461e-27 + art_sys_177: 1.30769378e-27 + art_sys_178: 3.31599693e-28 + art_sys_179: -5.69628528e-29 + art_sys_180: 5.47049935e-30 + art_sys_181: 2.90667365e-28 + art_sys_182: 3.91889370e-28 + art_sys_183: -3.00319968e-30 + art_sys_184: 7.16148210e-30 + art_sys_185: 6.30131675e-30 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -32873,149 +32873,149 @@ bins: art_sys_40: 0.0 art_sys_41: 0.0 art_sys_42: 0.0 - art_sys_43: -2.24433873e-175 - art_sys_44: 1.37469683e-167 - art_sys_45: -9.09396676e-41 - art_sys_46: 5.52939547e-37 - art_sys_47: -1.37007851e-31 - art_sys_48: 1.59246304e-23 - art_sys_49: -2.02081914e-02 - art_sys_50: -1.27852765e-01 - art_sys_51: 9.67815616e-02 - art_sys_52: -7.67061301e-02 - art_sys_53: 5.64323162e-01 - art_sys_54: -1.17849762e+00 - art_sys_55: -6.00824697e-19 - art_sys_56: 1.85751944e-18 - art_sys_57: 2.20418418e-19 - art_sys_58: 1.57544816e+00 - art_sys_59: -4.43368543e-01 - art_sys_60: -1.09057717e-18 - art_sys_61: 6.62905045e-19 - art_sys_62: 8.00193495e-19 - art_sys_63: -3.87896456e-19 - art_sys_64: -7.22772216e-20 - art_sys_65: 9.98240157e-03 - art_sys_66: -1.83320775e-02 - art_sys_67: 6.92721153e-19 - art_sys_68: 1.19232310e-18 - art_sys_69: 2.63309167e-19 - art_sys_70: 6.82346300e-20 - art_sys_71: -2.29008660e-19 - art_sys_72: 2.02731004e-20 - art_sys_73: -2.74766787e-15 - art_sys_74: 1.75518974e-15 - art_sys_75: -1.95628154e-15 - art_sys_76: -5.56820294e-03 - art_sys_77: -2.99474712e-18 - art_sys_78: -8.71175337e-16 - art_sys_79: 2.29096941e-16 - art_sys_80: 1.31042981e-03 - art_sys_81: -1.26871374e-17 - art_sys_82: 2.91025229e-18 - art_sys_83: 7.17362607e-04 - art_sys_84: 2.11715628e-18 - art_sys_85: -7.25452934e-19 - art_sys_86: -1.06025508e-04 - art_sys_87: 6.47218066e-19 + art_sys_43: 0.0 + art_sys_44: 1.34018205e-207 + art_sys_45: 6.75898427e-201 + art_sys_46: 7.33003406e-151 + art_sys_47: 4.05840277e-156 + art_sys_48: -2.18785789e-148 + art_sys_49: 1.86675805e-139 + art_sys_50: -8.00384757e-132 + art_sys_51: 3.32091624e-121 + art_sys_52: 3.68968122e-138 + art_sys_53: 1.17839229e-134 + art_sys_54: 1.39429162e-129 + art_sys_55: 3.43804444e-126 + art_sys_56: 5.54440404e-123 + art_sys_57: 1.97447585e-44 + art_sys_58: 9.78386920e-31 + art_sys_59: -3.75441875e-42 + art_sys_60: 4.53931221e-39 + art_sys_61: 1.78945763e-24 + art_sys_62: -4.96718871e-39 + art_sys_63: -8.39049255e-29 + art_sys_64: -2.02081914e-02 + art_sys_65: 1.27852765e-01 + art_sys_66: 9.67815616e-02 + art_sys_67: -7.67061301e-02 + art_sys_68: -5.64323162e-01 + art_sys_69: 1.17849762e+00 + art_sys_70: -1.57544816e+00 + art_sys_71: 4.43368543e-01 + art_sys_72: -9.98240157e-03 + art_sys_73: -1.83320775e-02 + art_sys_74: 1.09751024e-19 + art_sys_75: 5.56820294e-03 + art_sys_76: -9.98265144e-16 + art_sys_77: 1.07094765e-15 + art_sys_78: 1.15140847e-17 + art_sys_79: 1.31042981e-03 + art_sys_80: 1.37965308e-16 + art_sys_81: -7.17362607e-04 + art_sys_82: -1.75744653e-16 + art_sys_83: 1.23212870e-17 + art_sys_84: -1.21009122e-17 + art_sys_85: 2.96239845e-18 + art_sys_86: 3.53112965e-18 + art_sys_87: -1.06025508e-04 art_sys_88: -2.07734355e-05 - art_sys_89: -1.02949171e-05 - art_sys_90: 1.59914224e-18 - art_sys_91: -1.73058492e-14 - art_sys_92: 2.72613956e-17 - art_sys_93: 9.09565222e-18 - art_sys_94: 1.94561942e-16 - art_sys_95: -3.78167863e-18 - art_sys_96: 9.28972897e-07 - art_sys_97: -1.88883009e-16 - art_sys_98: -1.86899184e-17 - art_sys_99: 8.54940916e-22 - art_sys_100: 3.15976680e-17 - art_sys_101: -4.73341742e-15 - art_sys_102: -2.52526678e-16 - art_sys_103: -6.24073390e-17 - art_sys_104: 1.51236292e-18 - art_sys_105: 9.31486080e-18 - art_sys_106: 5.52855829e-16 - art_sys_107: 1.17982893e-08 - art_sys_108: -6.65475977e-09 - art_sys_109: 2.94359152e-09 - art_sys_110: 6.73206890e-15 - art_sys_111: 1.69918155e-16 - art_sys_112: 2.95938789e-16 - art_sys_113: -1.21616877e-09 - art_sys_114: 1.91432165e-16 - art_sys_115: -7.17260360e-18 - art_sys_116: 2.24111003e-15 - art_sys_117: 2.50200987e-17 - art_sys_118: -6.81887251e-16 - art_sys_119: -1.05829707e-17 - art_sys_120: -1.51892125e-16 - art_sys_121: -4.93745510e-15 - art_sys_122: 9.32536038e-17 - art_sys_123: 2.81813940e-16 - art_sys_124: 6.18281141e-16 - art_sys_125: -1.86486152e-16 - art_sys_126: 3.26440169e-15 - art_sys_127: 2.74365408e-17 - art_sys_128: -4.66443209e-16 - art_sys_129: -7.34401478e-17 - art_sys_130: 6.89736441e-16 - art_sys_131: 8.52531585e-16 - art_sys_132: -8.38761354e-17 - art_sys_133: 3.43308663e-16 - art_sys_134: 5.11437110e-13 - art_sys_135: -1.05541902e-16 - art_sys_136: -4.39750006e-16 - art_sys_137: 1.67785805e-13 - art_sys_138: 3.77290550e-17 - art_sys_139: -3.84341654e-17 - art_sys_140: 6.86395498e-16 - art_sys_141: -5.12376262e-18 - art_sys_142: 8.43541862e-16 - art_sys_143: -5.14290381e-14 - art_sys_144: 1.43947824e-14 - art_sys_145: 3.98090374e-15 - art_sys_146: 0.0 - art_sys_147: 6.41867978e-16 - art_sys_148: -2.24901165e-16 - art_sys_149: -2.24901165e-16 - art_sys_150: 5.00312344e-17 - art_sys_151: 5.00312344e-17 - art_sys_152: -2.93162851e-17 - art_sys_153: 1.47471258e-16 - art_sys_154: -5.04920111e-17 - art_sys_155: 1.88924941e-28 - art_sys_156: -8.61418659e-32 - art_sys_157: 7.29223328e-31 - art_sys_158: 0.0 - art_sys_159: -5.75757207e-10 - art_sys_160: 2.52405492e-10 - art_sys_161: -1.01921855e-10 - art_sys_162: -3.81979371e-11 - art_sys_163: 1.43598883e-11 - art_sys_164: -4.72895338e-12 - art_sys_165: 1.57218880e-12 - art_sys_166: -4.27134850e-23 - art_sys_167: 1.74989412e-23 - art_sys_168: 3.67730008e-23 - art_sys_169: -9.14493747e-24 - art_sys_170: 3.93369035e-24 - art_sys_171: -4.00472335e-24 - art_sys_172: -3.52425246e-24 - art_sys_173: 4.26862710e-25 - art_sys_174: 3.32363154e-25 - art_sys_175: -1.21403002e-27 - art_sys_176: 4.82686310e-27 - art_sys_177: -9.56699635e-27 - art_sys_178: -9.93760026e-27 - art_sys_179: 4.56133814e-28 - art_sys_180: 1.29052004e-27 - art_sys_181: -7.10260633e-28 - art_sys_182: -8.72013845e-28 - art_sys_183: 8.10182951e-29 - art_sys_184: -1.06747378e-28 - art_sys_185: 2.43122307e-29 + art_sys_89: 7.83563034e-20 + art_sys_90: -1.02949171e-05 + art_sys_91: 3.29477480e-17 + art_sys_92: 3.29123652e-21 + art_sys_93: 7.85882782e-21 + art_sys_94: -9.28972877e-07 + art_sys_95: -7.94966847e-17 + art_sys_96: -1.97852697e-18 + art_sys_97: -6.63051432e-19 + art_sys_98: 7.98379886e-16 + art_sys_99: 3.58269820e-17 + art_sys_100: 1.45022629e-14 + art_sys_101: 4.50652024e-16 + art_sys_102: -1.78026516e-16 + art_sys_103: 2.73540085e-15 + art_sys_104: -1.77858046e-16 + art_sys_105: -1.17981932e-08 + art_sys_106: -1.12615118e-16 + art_sys_107: 1.77518723e-17 + art_sys_108: -6.65478528e-09 + art_sys_109: -2.94358641e-09 + art_sys_110: 7.15978351e-16 + art_sys_111: 2.00063663e-16 + art_sys_112: 1.45741307e-16 + art_sys_113: -6.99493585e-17 + art_sys_114: 1.21617039e-09 + art_sys_115: -4.26884095e-17 + art_sys_116: -1.68883396e-18 + art_sys_117: 5.75756635e-10 + art_sys_118: 4.46789258e-17 + art_sys_119: -2.48231976e-16 + art_sys_120: -2.96019678e-18 + art_sys_121: 2.52399101e-10 + art_sys_122: -3.82997253e-16 + art_sys_123: 6.20028932e-19 + art_sys_124: 7.99714574e-18 + art_sys_125: 1.01906471e-10 + art_sys_126: 4.64402990e-17 + art_sys_127: -4.54528236e-17 + art_sys_128: -6.55402197e-18 + art_sys_129: -3.81988755e-11 + art_sys_130: -3.11000712e-16 + art_sys_131: 1.43612078e-11 + art_sys_132: 3.53586509e-16 + art_sys_133: -1.13977300e-15 + art_sys_134: 2.02470880e-19 + art_sys_135: -9.47534085e-18 + art_sys_136: 4.72289542e-12 + art_sys_137: -1.28923878e-15 + art_sys_138: -5.02792872e-19 + art_sys_139: 2.80144878e-17 + art_sys_140: -1.57275104e-12 + art_sys_141: 5.42565491e-16 + art_sys_142: -8.22715165e-19 + art_sys_143: -2.78730747e-16 + art_sys_144: 5.10233642e-13 + art_sys_145: 3.87808020e-18 + art_sys_146: 2.80471555e-16 + art_sys_147: -1.67844555e-13 + art_sys_148: -4.95488600e-14 + art_sys_149: -5.16825775e-18 + art_sys_150: 1.92773318e-16 + art_sys_151: 1.62167203e-16 + art_sys_152: 1.74556382e-14 + art_sys_153: -2.51172607e-16 + art_sys_154: -4.59623950e-19 + art_sys_155: -3.60254737e-15 + art_sys_156: 0.0 + art_sys_157: 9.17569551e-18 + art_sys_158: -0.0 + art_sys_159: -4.41803245e-17 + art_sys_160: 6.91627510e-16 + art_sys_161: -5.14771050e-18 + art_sys_162: -5.14771050e-18 + art_sys_163: 1.15847955e-17 + art_sys_164: 1.15847955e-17 + art_sys_165: -2.18504312e-30 + art_sys_166: 1.08812123e-30 + art_sys_167: 0.0 + art_sys_168: 3.88034609e-24 + art_sys_169: 2.19783065e-24 + art_sys_170: -2.01088801e-25 + art_sys_171: 6.48669954e-25 + art_sys_172: 2.16560694e-25 + art_sys_173: 5.58920377e-27 + art_sys_174: -3.67125689e-26 + art_sys_175: -2.68025918e-27 + art_sys_176: 1.98553311e-26 + art_sys_177: -4.36251632e-27 + art_sys_178: -1.04318437e-27 + art_sys_179: 1.81355179e-28 + art_sys_180: -1.74084552e-29 + art_sys_181: -1.16654037e-27 + art_sys_182: -1.22910297e-27 + art_sys_183: 9.59004422e-30 + art_sys_184: -2.28028794e-29 + art_sys_185: -2.00621364e-29 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -33164,149 +33164,149 @@ bins: art_sys_40: 0.0 art_sys_41: 0.0 art_sys_42: 0.0 - art_sys_43: 4.89229175e-176 - art_sys_44: -2.99661449e-168 - art_sys_45: 1.98232855e-41 - art_sys_46: -1.20531323e-37 - art_sys_47: 2.98653581e-32 - art_sys_48: -3.47129588e-24 - art_sys_49: 4.40503860e-03 - art_sys_50: -2.10391499e-02 - art_sys_51: 3.26755347e-02 - art_sys_52: 1.63308905e-02 - art_sys_53: 6.86244571e-02 - art_sys_54: 7.21227374e-02 - art_sys_55: -9.65711975e-20 - art_sys_56: 3.40489719e-19 - art_sys_57: 3.18016573e-20 - art_sys_58: 1.57999570e-01 - art_sys_59: -1.30758121e-01 - art_sys_60: -2.01748316e-19 - art_sys_61: 7.81427795e-20 - art_sys_62: -2.73336600e-20 - art_sys_63: 2.44938623e-19 - art_sys_64: -1.19271253e-19 - art_sys_65: -1.28530691e-01 - art_sys_66: 8.43869071e-02 - art_sys_67: 5.49713320e-19 - art_sys_68: -1.52436401e-19 - art_sys_69: -6.44139761e-20 - art_sys_70: -5.36159009e-19 - art_sys_71: 2.17275784e-19 - art_sys_72: 4.01610103e-19 - art_sys_73: 1.40681472e-14 - art_sys_74: -9.66428444e-15 - art_sys_75: 1.00517954e-14 - art_sys_76: 2.87023061e-02 - art_sys_77: 1.56445079e-17 - art_sys_78: 4.48993860e-15 - art_sys_79: -1.11812158e-15 - art_sys_80: -6.38049702e-03 - art_sys_81: 6.45314529e-17 - art_sys_82: -1.54179487e-17 - art_sys_83: -3.59234340e-03 - art_sys_84: -2.31523339e-17 - art_sys_85: 3.65805941e-18 - art_sys_86: 5.51489661e-04 - art_sys_87: -3.39564078e-18 + art_sys_43: 0.0 + art_sys_44: -2.66018419e-208 + art_sys_45: -1.34161955e-201 + art_sys_46: -1.59587855e-151 + art_sys_47: -8.83586337e-157 + art_sys_48: 4.76335507e-149 + art_sys_49: -4.06426369e-140 + art_sys_50: 1.74257972e-132 + art_sys_51: -7.23022426e-122 + art_sys_52: -8.03309113e-139 + art_sys_53: -2.56556923e-135 + art_sys_54: -3.03562039e-130 + art_sys_55: -7.48523315e-127 + art_sys_56: -1.20711520e-123 + art_sys_57: -4.30401801e-45 + art_sys_58: -2.13271533e-31 + art_sys_59: 8.18398761e-43 + art_sys_60: -9.89492042e-40 + art_sys_61: -3.90071008e-25 + art_sys_62: 1.08277242e-39 + art_sys_63: 1.82898317e-29 + art_sys_64: 4.40503860e-03 + art_sys_65: 2.10391499e-02 + art_sys_66: 3.26755347e-02 + art_sys_67: 1.63308905e-02 + art_sys_68: -6.86244571e-02 + art_sys_69: -7.21227374e-02 + art_sys_70: -1.57999570e-01 + art_sys_71: 1.30758121e-01 + art_sys_72: 1.28530691e-01 + art_sys_73: 8.43869071e-02 + art_sys_74: -1.86117864e-19 + art_sys_75: -2.87023061e-02 + art_sys_76: 4.85916462e-15 + art_sys_77: -5.22401098e-15 + art_sys_78: -4.82395872e-17 + art_sys_79: -6.38049702e-03 + art_sys_80: -7.18165656e-16 + art_sys_81: 3.59234340e-03 + art_sys_82: 8.79969268e-16 + art_sys_83: -6.46259686e-17 + art_sys_84: 6.30343925e-17 + art_sys_85: -1.45102894e-17 + art_sys_86: -1.83414597e-17 + art_sys_87: 5.51489660e-04 art_sys_88: 1.06965420e-04 - art_sys_89: 5.41250666e-05 - art_sys_90: -7.89028800e-18 - art_sys_91: 8.42576283e-14 - art_sys_92: -1.32809632e-16 - art_sys_93: -4.39348297e-17 - art_sys_94: -9.74029747e-16 - art_sys_95: 1.86614124e-17 - art_sys_96: -4.95539037e-06 - art_sys_97: 9.46324608e-16 - art_sys_98: 9.23422942e-17 - art_sys_99: -6.23275260e-19 - art_sys_100: -1.58443987e-16 - art_sys_101: 2.30466824e-14 - art_sys_102: 1.22955857e-15 - art_sys_103: 3.24948072e-16 - art_sys_104: -7.46651227e-18 - art_sys_105: -4.53270018e-17 - art_sys_106: -2.76849682e-15 - art_sys_107: -6.32980908e-08 - art_sys_108: 3.74910770e-08 - art_sys_109: -1.61526797e-08 - art_sys_110: -3.50165294e-14 - art_sys_111: -8.50839177e-16 - art_sys_112: -1.52286764e-15 - art_sys_113: 6.84541764e-09 - art_sys_114: -9.58706431e-16 - art_sys_115: 3.79269371e-17 - art_sys_116: -1.16601911e-14 - art_sys_117: -1.25679581e-16 - art_sys_118: 3.63497886e-15 - art_sys_119: 5.44124055e-17 - art_sys_120: 7.84602217e-16 - art_sys_121: 2.65276305e-14 - art_sys_122: -4.84403859e-16 - art_sys_123: -1.46040239e-15 - art_sys_124: -3.51932016e-15 - art_sys_125: 9.93950915e-16 - art_sys_126: -1.82819623e-14 - art_sys_127: -1.44458432e-16 - art_sys_128: 2.62906591e-15 - art_sys_129: 3.85464153e-16 - art_sys_130: -3.90706895e-15 - art_sys_131: -4.58141817e-15 - art_sys_132: 4.53421389e-16 - art_sys_133: -1.95303695e-15 - art_sys_134: -2.91700311e-12 - art_sys_135: 5.61054754e-16 - art_sys_136: 2.48682709e-15 - art_sys_137: -9.57217057e-13 - art_sys_138: -1.83701808e-16 - art_sys_139: 2.02715897e-16 - art_sys_140: -3.90591704e-15 - art_sys_141: 3.46611671e-17 - art_sys_142: -4.80786382e-15 - art_sys_143: 2.93447450e-13 - art_sys_144: -8.21403730e-14 - art_sys_145: -2.27172411e-14 - art_sys_146: -0.0 - art_sys_147: -3.66158159e-15 - art_sys_148: 1.26833893e-15 - art_sys_149: 1.26833893e-15 - art_sys_150: -2.86134229e-16 - art_sys_151: -2.86134229e-16 - art_sys_152: 1.66627973e-16 - art_sys_153: -8.41907740e-16 - art_sys_154: 2.88137370e-16 - art_sys_155: -1.08132447e-27 - art_sys_156: 4.52488924e-31 - art_sys_157: -4.04265849e-30 - art_sys_158: -0.0 - art_sys_159: 3.23317529e-09 - art_sys_160: -1.42715568e-09 - art_sys_161: 5.77743854e-10 - art_sys_162: 2.17014018e-10 - art_sys_163: -8.17335487e-11 - art_sys_164: 2.69396283e-11 - art_sys_165: -8.96389000e-12 - art_sys_166: 2.43688360e-22 - art_sys_167: -1.01611256e-22 - art_sys_168: -2.09837999e-22 - art_sys_169: 5.21535878e-23 - art_sys_170: -2.20916180e-23 - art_sys_171: 2.29129965e-23 - art_sys_172: 1.90123528e-23 - art_sys_173: -2.39977572e-24 - art_sys_174: -1.87414423e-24 - art_sys_175: 6.92789461e-27 - art_sys_176: -2.52864768e-26 - art_sys_177: 4.90052700e-26 - art_sys_178: 5.77056985e-26 - art_sys_179: -2.79339881e-27 - art_sys_180: -6.34928128e-27 - art_sys_181: 3.97904455e-27 - art_sys_182: 5.21051599e-27 - art_sys_183: -4.57178803e-28 - art_sys_184: 6.09225702e-28 - art_sys_185: -1.38769640e-28 + art_sys_89: -4.12301065e-19 + art_sys_90: 5.41250665e-05 + art_sys_91: -1.64738080e-16 + art_sys_92: -1.76288652e-20 + art_sys_93: -4.19419948e-20 + art_sys_94: 4.95539026e-06 + art_sys_95: 4.13053125e-16 + art_sys_96: 9.35895358e-18 + art_sys_97: 2.87024154e-18 + art_sys_98: -4.15236719e-15 + art_sys_99: -1.86186836e-16 + art_sys_100: -7.54334131e-14 + art_sys_101: -2.34400240e-15 + art_sys_102: 9.24380130e-16 + art_sys_103: -1.42281034e-14 + art_sys_104: 9.25149326e-16 + art_sys_105: 6.32975474e-08 + art_sys_106: 5.85818281e-16 + art_sys_107: -9.09636864e-17 + art_sys_108: 3.74912185e-08 + art_sys_109: 1.61526517e-08 + art_sys_110: -3.75818123e-15 + art_sys_111: -1.02864434e-15 + art_sys_112: -7.47528086e-16 + art_sys_113: 3.77410015e-16 + art_sys_114: -6.84542663e-09 + art_sys_115: 2.19773689e-16 + art_sys_116: 9.12219077e-18 + art_sys_117: -3.23317199e-09 + art_sys_118: -2.30037737e-16 + art_sys_119: 1.32401400e-15 + art_sys_120: 1.55517618e-17 + art_sys_121: -1.42711966e-09 + art_sys_122: 2.01360098e-15 + art_sys_123: -3.28567014e-18 + art_sys_124: -4.20517665e-17 + art_sys_125: -5.77656691e-10 + art_sys_126: -2.47702723e-16 + art_sys_127: 2.53105761e-16 + art_sys_128: 3.49865426e-17 + art_sys_129: 2.17019340e-10 + art_sys_130: 1.77579932e-15 + art_sys_131: -8.17410856e-11 + art_sys_132: -1.88612741e-15 + art_sys_133: 6.40720118e-15 + art_sys_134: -1.13944284e-18 + art_sys_135: 5.05678702e-17 + art_sys_136: -2.69051493e-11 + art_sys_137: 7.29516953e-15 + art_sys_138: 2.72739197e-18 + art_sys_139: -1.60540591e-16 + art_sys_140: 8.96709580e-12 + art_sys_141: -3.06225873e-15 + art_sys_142: 4.60935343e-18 + art_sys_143: 1.58445635e-15 + art_sys_144: -2.91013927e-12 + art_sys_145: -2.19044245e-17 + art_sys_146: -1.59434366e-15 + art_sys_147: 9.57552235e-13 + art_sys_148: 2.82720429e-13 + art_sys_149: 2.92892824e-17 + art_sys_150: -1.09804907e-15 + art_sys_151: -9.26001393e-16 + art_sys_152: -9.96046156e-14 + art_sys_153: 1.43102300e-15 + art_sys_154: 2.42925208e-18 + art_sys_155: 2.05586661e-14 + art_sys_156: -0.0 + art_sys_157: -5.21723144e-17 + art_sys_158: 0.0 + art_sys_159: 2.51387120e-16 + art_sys_160: -3.94625832e-15 + art_sys_161: 2.92990973e-17 + art_sys_162: 2.92990973e-17 + art_sys_163: -6.60186053e-17 + art_sys_164: -6.60186053e-17 + art_sys_165: 1.24681510e-29 + art_sys_166: -6.20908050e-30 + art_sys_167: -0.0 + art_sys_168: -2.18366922e-23 + art_sys_169: -1.24599220e-23 + art_sys_170: 1.23173787e-24 + art_sys_171: -2.94562360e-24 + art_sys_172: -1.17193110e-24 + art_sys_173: -1.60842742e-26 + art_sys_174: 1.94294790e-25 + art_sys_175: 1.65190114e-26 + art_sys_176: -1.13715867e-25 + art_sys_177: 2.76098105e-26 + art_sys_178: 5.89904531e-27 + art_sys_179: -1.03507243e-27 + art_sys_180: 9.93191578e-29 + art_sys_181: 6.98930527e-27 + art_sys_182: 7.09789245e-27 + art_sys_183: -6.10488798e-29 + art_sys_184: 1.30139146e-28 + art_sys_185: 1.14496770e-28 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -33455,149 +33455,149 @@ bins: art_sys_40: 0.0 art_sys_41: 0.0 art_sys_42: 0.0 - art_sys_43: 2.10933922e-176 - art_sys_44: -1.29200726e-168 - art_sys_45: 8.54693384e-42 - art_sys_46: -5.19678360e-38 - art_sys_47: 1.28766365e-32 - art_sys_48: -1.49667099e-24 - art_sys_49: 1.89926002e-03 - art_sys_50: -1.15514208e-03 - art_sys_51: 4.47839131e-03 - art_sys_52: 7.03394410e-03 - art_sys_53: -2.28529119e-02 - art_sys_54: 8.49182234e-02 - art_sys_55: 1.99274508e-20 - art_sys_56: -8.80641885e-20 - art_sys_57: -8.21761914e-21 - art_sys_58: -9.10314569e-02 - art_sys_59: 2.25408899e-02 - art_sys_60: 6.06968454e-20 - art_sys_61: -3.99197679e-20 - art_sys_62: -5.08419493e-20 - art_sys_63: 4.64185612e-20 - art_sys_64: -2.42346041e-22 - art_sys_65: -1.42578380e-01 - art_sys_66: -3.39918644e-02 - art_sys_67: 3.52161029e-19 - art_sys_68: -2.51039979e-19 - art_sys_69: -4.00338379e-19 - art_sys_70: -4.69052897e-19 - art_sys_71: 3.02085908e-19 - art_sys_72: -1.66199781e-19 - art_sys_73: -1.84592836e-14 - art_sys_74: 1.28504945e-14 - art_sys_75: -1.05983317e-14 - art_sys_76: -3.25418310e-02 - art_sys_77: -1.78748521e-17 - art_sys_78: -5.08996828e-15 - art_sys_79: 2.06079703e-15 - art_sys_80: 1.14093504e-02 - art_sys_81: -1.33769185e-16 - art_sys_82: 3.82623517e-17 - art_sys_83: 6.73714533e-03 - art_sys_84: 6.79580019e-17 - art_sys_85: -7.62095742e-18 - art_sys_86: -1.25652506e-03 - art_sys_87: 6.32994378e-18 + art_sys_43: 0.0 + art_sys_44: -1.18906337e-208 + art_sys_45: -5.99684271e-202 + art_sys_46: -6.88387502e-152 + art_sys_47: -3.81137894e-157 + art_sys_48: 2.05468899e-149 + art_sys_49: -1.75313361e-140 + art_sys_50: 7.51667536e-133 + art_sys_51: -3.11878119e-122 + art_sys_52: -3.46510045e-139 + art_sys_53: -1.10666679e-135 + art_sys_54: -1.30942491e-130 + art_sys_55: -3.22878012e-127 + art_sys_56: -5.20693139e-124 + art_sys_57: -1.85570438e-45 + art_sys_58: -9.19533606e-32 + art_sys_59: 3.52857764e-43 + art_sys_60: -4.26625704e-40 + art_sys_61: -1.68181564e-25 + art_sys_62: 4.66846226e-40 + art_sys_63: 7.88577578e-30 + art_sys_64: 1.89926002e-03 + art_sys_65: 1.15514208e-03 + art_sys_66: 4.47839131e-03 + art_sys_67: 7.03394410e-03 + art_sys_68: 2.28529119e-02 + art_sys_69: -8.49182234e-02 + art_sys_70: 9.10314569e-02 + art_sys_71: -2.25408899e-02 + art_sys_72: 1.42578380e-01 + art_sys_73: -3.39918644e-02 + art_sys_74: -2.18209571e-19 + art_sys_75: 3.25418310e-02 + art_sys_76: -9.07487666e-15 + art_sys_77: 9.26967382e-15 + art_sys_78: 6.09682485e-16 + art_sys_79: 1.14093504e-02 + art_sys_80: 1.34641119e-15 + art_sys_81: -6.73714534e-03 + art_sys_82: -1.65012244e-15 + art_sys_83: 1.41712096e-16 + art_sys_84: -1.42604673e-16 + art_sys_85: 3.36693463e-17 + art_sys_86: 4.22419414e-17 + art_sys_87: -1.25652505e-03 art_sys_88: -2.58648401e-04 - art_sys_89: -1.32979077e-04 - art_sys_90: 1.39619261e-17 - art_sys_91: -1.50653276e-13 - art_sys_92: 2.37493282e-16 - art_sys_93: 7.86359826e-17 - art_sys_94: 1.82695594e-15 - art_sys_95: -3.34173195e-17 - art_sys_96: 1.29318179e-05 - art_sys_97: -1.77482043e-15 - art_sys_98: -1.69367448e-16 - art_sys_99: 2.56977395e-18 - art_sys_100: 2.96212832e-16 - art_sys_101: -4.12109113e-14 - art_sys_102: -2.19865341e-15 - art_sys_103: -7.40254159e-16 - art_sys_104: 1.38705081e-17 - art_sys_105: 8.09923841e-17 - art_sys_106: 5.19228343e-15 - art_sys_107: 1.63253417e-07 - art_sys_108: -9.78176231e-08 - art_sys_109: 4.33800688e-08 - art_sys_110: 7.97859623e-14 - art_sys_111: 1.59574285e-15 - art_sys_112: 3.68088312e-15 - art_sys_113: -1.83925500e-08 - art_sys_114: 1.79864379e-15 - art_sys_115: -9.59573113e-17 - art_sys_116: 2.65242318e-14 - art_sys_117: 2.39827759e-16 - art_sys_118: -9.46621770e-15 - art_sys_119: -1.18598141e-16 - art_sys_120: -1.87610377e-15 - art_sys_121: -6.84272680e-14 - art_sys_122: 1.11236817e-15 - art_sys_123: 3.39528667e-15 - art_sys_124: 9.67837254e-15 - art_sys_125: -2.58288684e-15 - art_sys_126: 4.99705045e-14 - art_sys_127: 4.05031909e-16 - art_sys_128: -7.20111964e-15 - art_sys_129: -9.06287880e-16 - art_sys_130: 1.08154221e-14 - art_sys_131: 1.18045084e-14 - art_sys_132: -1.21832569e-15 - art_sys_133: 5.45714720e-15 - art_sys_134: 8.25746097e-12 - art_sys_135: -1.44184960e-15 - art_sys_136: -6.86677837e-15 - art_sys_137: 2.71148883e-12 - art_sys_138: 3.28488565e-16 - art_sys_139: -5.05056405e-16 - art_sys_140: 1.10032576e-14 - art_sys_141: -1.02462624e-16 - art_sys_142: 1.35415204e-14 - art_sys_143: -8.31608784e-13 - art_sys_144: 2.32836406e-13 - art_sys_145: 6.44026531e-14 - art_sys_146: 0.0 - art_sys_147: 1.03742455e-14 - art_sys_148: -3.52751957e-15 - art_sys_149: -3.52751957e-15 - art_sys_150: 8.11803539e-16 - art_sys_151: 8.11803539e-16 - art_sys_152: -4.66959175e-16 - art_sys_153: 2.38821611e-15 - art_sys_154: -8.16875598e-16 - art_sys_155: 3.07626467e-27 - art_sys_156: -1.06825787e-30 - art_sys_157: 1.09613792e-29 - art_sys_158: 0.0 - art_sys_159: -8.85596077e-09 - art_sys_160: 3.93551748e-09 - art_sys_161: -1.60849931e-09 - art_sys_162: -6.07666333e-10 - art_sys_163: 2.29897325e-10 - art_sys_164: -7.60174616e-11 - art_sys_165: 2.53421091e-11 - art_sys_166: -6.90257302e-22 - art_sys_167: 2.80728592e-22 - art_sys_168: 5.94755468e-22 - art_sys_169: -1.47908386e-22 - art_sys_170: 6.27400877e-23 - art_sys_171: -6.51178471e-23 - art_sys_172: -4.78371633e-23 - art_sys_173: 6.88027665e-24 - art_sys_174: 5.33202416e-24 - art_sys_175: -1.96401496e-26 - art_sys_176: 9.58022865e-26 - art_sys_177: -1.42050467e-25 - art_sys_178: -1.63342204e-25 - art_sys_179: 6.93504780e-27 - art_sys_180: -2.20476253e-27 - art_sys_181: -9.99463018e-27 - art_sys_182: -1.52694406e-26 - art_sys_183: 1.28982417e-27 - art_sys_184: -1.72789053e-27 - art_sys_185: 3.93653029e-28 + art_sys_89: 1.01714066e-18 + art_sys_90: -1.32979077e-04 + art_sys_91: 3.04964167e-16 + art_sys_92: 4.62089064e-20 + art_sys_93: 1.09411188e-19 + art_sys_94: -1.29318176e-05 + art_sys_95: -9.49352664e-16 + art_sys_96: -1.83607023e-17 + art_sys_97: -4.79758892e-18 + art_sys_98: 9.45966143e-15 + art_sys_99: 4.23915149e-16 + art_sys_100: 1.71865656e-13 + art_sys_101: 5.34075276e-15 + art_sys_102: -2.12606983e-15 + art_sys_103: 3.24178214e-14 + art_sys_104: -2.10880658e-15 + art_sys_105: -1.63251998e-07 + art_sys_106: -1.33451469e-15 + art_sys_107: 2.18939094e-16 + art_sys_108: -9.78179919e-08 + art_sys_109: -4.33799945e-08 + art_sys_110: 9.22235872e-15 + art_sys_111: 2.48432968e-15 + art_sys_112: 1.80202900e-15 + art_sys_113: -9.44677307e-16 + art_sys_114: 1.83925745e-08 + art_sys_115: -5.31504515e-16 + art_sys_116: -2.38393338e-17 + art_sys_117: 8.85595150e-09 + art_sys_118: 5.56651397e-16 + art_sys_119: -3.45521491e-15 + art_sys_120: -3.82739257e-17 + art_sys_121: 3.93541846e-09 + art_sys_122: -4.94706693e-15 + art_sys_123: 8.46320104e-18 + art_sys_124: 1.03314177e-16 + art_sys_125: 1.60825694e-09 + art_sys_126: 6.46423192e-16 + art_sys_127: -6.54757459e-16 + art_sys_128: -9.12819896e-17 + art_sys_129: -6.07681158e-10 + art_sys_130: -4.85251625e-15 + art_sys_131: 2.29918801e-10 + art_sys_132: 4.92213957e-15 + art_sys_133: -1.76023275e-14 + art_sys_134: 2.95822214e-18 + art_sys_135: -1.31916053e-16 + art_sys_136: 7.59204938e-11 + art_sys_137: -2.02609248e-14 + art_sys_138: -6.95765012e-18 + art_sys_139: 4.46048807e-16 + art_sys_140: -2.53511746e-11 + art_sys_141: 7.99131591e-15 + art_sys_142: -1.19736623e-17 + art_sys_143: -4.44068322e-15 + art_sys_144: 8.23803276e-12 + art_sys_145: 5.72336980e-17 + art_sys_146: 4.48001349e-15 + art_sys_147: -2.71243836e-12 + art_sys_148: -8.01217533e-13 + art_sys_149: -7.78160579e-17 + art_sys_150: 3.09440720e-15 + art_sys_151: 2.62576284e-15 + art_sys_152: 2.82323973e-13 + art_sys_153: -4.03945218e-15 + art_sys_154: -5.99144771e-18 + art_sys_155: -5.82873947e-14 + art_sys_156: 0.0 + art_sys_157: 1.47108590e-16 + art_sys_158: -0.0 + art_sys_159: -7.08424792e-16 + art_sys_160: 1.11831323e-14 + art_sys_161: -8.24627832e-17 + art_sys_162: -8.24627832e-17 + art_sys_163: 1.86527097e-16 + art_sys_164: 1.86527097e-16 + art_sys_165: -3.53399304e-29 + art_sys_166: 1.75998685e-29 + art_sys_167: 0.0 + art_sys_168: 5.88207600e-23 + art_sys_169: 3.47711470e-23 + art_sys_170: -3.64673986e-24 + art_sys_171: 4.00485621e-24 + art_sys_172: 2.85419927e-24 + art_sys_173: 1.83554055e-27 + art_sys_174: -5.10744905e-25 + art_sys_175: -6.19917188e-26 + art_sys_176: 3.24448657e-25 + art_sys_177: -7.25448465e-26 + art_sys_178: -1.64792978e-26 + art_sys_179: 2.93565132e-27 + art_sys_180: -2.81431856e-28 + art_sys_181: -2.25269244e-26 + art_sys_182: -1.97867729e-26 + art_sys_183: 1.87343422e-28 + art_sys_184: -3.69090138e-28 + art_sys_185: -3.24716930e-28 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -33746,149 +33746,149 @@ bins: art_sys_40: 0.0 art_sys_41: 0.0 art_sys_42: 0.0 - art_sys_43: 4.77587885e-177 - art_sys_44: -2.92530955e-169 - art_sys_45: 1.93516378e-42 - art_sys_46: -1.17663569e-38 - art_sys_47: 2.91547833e-33 - art_sys_48: -3.38870469e-25 - art_sys_49: 4.30023124e-04 - art_sys_50: 1.19311629e-03 - art_sys_51: -1.12973738e-03 - art_sys_52: 3.65079577e-04 - art_sys_53: -1.14984477e-02 - art_sys_54: 6.00041474e-03 - art_sys_55: 1.41803288e-20 - art_sys_56: -4.88259470e-20 - art_sys_57: -5.01268288e-21 - art_sys_58: -3.02971354e-02 - art_sys_59: 2.18635288e-02 - art_sys_60: 3.64398229e-20 - art_sys_61: -1.67505699e-20 - art_sys_62: 5.57648519e-22 - art_sys_63: -2.62755563e-20 - art_sys_64: 2.00277647e-20 - art_sys_65: -5.11831117e-02 - art_sys_66: -1.26694346e-01 - art_sys_67: 5.30141154e-20 - art_sys_68: 3.33054420e-20 - art_sys_69: -5.51913854e-19 - art_sys_70: -3.28088661e-20 - art_sys_71: 8.46713842e-20 - art_sys_72: 3.75773346e-19 - art_sys_73: 1.74383835e-14 - art_sys_74: -1.17430939e-14 - art_sys_75: 7.52577384e-15 - art_sys_76: 2.40447666e-02 - art_sys_77: 1.29916579e-17 - art_sys_78: 3.76129327e-15 - art_sys_79: -1.46781938e-15 - art_sys_80: -7.69164210e-03 - art_sys_81: 2.11639847e-16 - art_sys_82: -6.62548610e-17 - art_sys_83: -7.65701046e-03 - art_sys_84: 3.80651996e-17 - art_sys_85: 8.73190590e-18 - art_sys_86: 1.89016022e-03 - art_sys_87: -7.18059232e-18 + art_sys_43: 0.0 + art_sys_44: -2.76892450e-209 + art_sys_45: -1.39646084e-202 + art_sys_46: -1.55919819e-152 + art_sys_47: -8.63277605e-158 + art_sys_48: 4.65387205e-150 + art_sys_49: -3.97084889e-141 + art_sys_50: 1.70252751e-133 + art_sys_51: -7.06404165e-123 + art_sys_52: -7.84845502e-140 + art_sys_53: -2.50660107e-136 + art_sys_54: -2.96584838e-131 + art_sys_55: -7.31318930e-128 + art_sys_56: -1.17937034e-124 + art_sys_57: -4.20161431e-46 + art_sys_58: -2.08197253e-32 + art_sys_59: 7.98926942e-44 + art_sys_60: -9.65949473e-41 + art_sys_61: -3.80790212e-26 + art_sys_62: 1.05701097e-40 + art_sys_63: 1.78546694e-30 + art_sys_64: 4.30023124e-04 + art_sys_65: -1.19311629e-03 + art_sys_66: -1.12973738e-03 + art_sys_67: 3.65079577e-04 + art_sys_68: 1.14984477e-02 + art_sys_69: -6.00041474e-03 + art_sys_70: 3.02971354e-02 + art_sys_71: -2.18635288e-02 + art_sys_72: 5.11831117e-02 + art_sys_73: -1.26694346e-01 + art_sys_74: -6.18835071e-20 + art_sys_75: -2.40447666e-02 + art_sys_76: 6.17745507e-15 + art_sys_77: -5.87216449e-15 + art_sys_78: -1.92223854e-15 + art_sys_79: -7.69164209e-03 + art_sys_80: -1.60758211e-15 + art_sys_81: 7.65701046e-03 + art_sys_82: 1.87385976e-15 + art_sys_83: -2.09710581e-16 + art_sys_84: 2.11756095e-16 + art_sys_85: -5.21953897e-17 + art_sys_86: -6.47736038e-17 + art_sys_87: 1.89016022e-03 art_sys_88: 4.29204135e-04 - art_sys_89: 2.33864374e-04 - art_sys_90: -7.20078982e-18 - art_sys_91: 1.01436864e-13 - art_sys_92: -1.59780202e-16 - art_sys_93: -5.33678809e-17 - art_sys_94: -2.07665028e-15 - art_sys_95: 2.25322647e-17 - art_sys_96: -2.49728445e-05 - art_sys_97: 2.01704478e-15 - art_sys_98: 1.56872225e-16 - art_sys_99: -1.65034652e-17 - art_sys_100: -3.34949197e-16 - art_sys_101: 2.77792487e-14 - art_sys_102: 1.48177644e-15 - art_sys_103: 1.11359381e-15 - art_sys_104: -1.48955360e-17 - art_sys_105: -5.41460288e-17 - art_sys_106: -5.90150874e-15 - art_sys_107: -3.73565202e-07 - art_sys_108: 2.13265738e-07 - art_sys_109: -9.72645973e-08 - art_sys_110: -1.20029622e-13 - art_sys_111: -1.81379394e-15 - art_sys_112: -6.09810425e-15 - art_sys_113: 4.20176665e-08 - art_sys_114: -2.04555694e-15 - art_sys_115: 1.76956653e-16 - art_sys_116: -3.97851129e-14 - art_sys_117: -2.81045877e-16 - art_sys_118: 1.81851297e-14 - art_sys_119: 1.69939714e-16 - art_sys_120: 3.06573105e-15 - art_sys_121: 1.56222919e-13 - art_sys_122: -1.69629668e-15 - art_sys_123: -5.28706438e-15 - art_sys_124: -2.24809459e-14 - art_sys_125: 4.95044882e-15 - art_sys_126: -1.14512264e-13 - art_sys_127: -8.44163221e-16 - art_sys_128: 1.66579898e-14 - art_sys_129: 1.45448998e-15 - art_sys_130: -2.52997788e-14 - art_sys_131: -2.70211557e-14 - art_sys_132: 2.64648286e-15 - art_sys_133: -1.27913026e-14 - art_sys_134: -1.96198268e-11 - art_sys_135: 2.84462409e-15 - art_sys_136: 1.59739388e-14 - art_sys_137: -6.44623744e-12 - art_sys_138: -2.21447034e-16 - art_sys_139: 1.15498635e-15 - art_sys_140: -2.60186742e-14 - art_sys_141: 2.63537133e-16 - art_sys_142: -3.20654173e-14 - art_sys_143: 1.97761957e-12 - art_sys_144: -5.53800599e-13 - art_sys_145: -1.53196224e-13 - art_sys_146: -0.0 - art_sys_147: -2.46640556e-14 - art_sys_148: 8.23957053e-15 - art_sys_149: 8.23957053e-15 - art_sys_150: -1.93392745e-15 - art_sys_151: -1.93392745e-15 - art_sys_152: 1.11188363e-15 - art_sys_153: -5.68504663e-15 - art_sys_154: 1.94313231e-15 - art_sys_155: -7.34777403e-27 - art_sys_156: 2.02274603e-30 - art_sys_157: -2.49138994e-29 - art_sys_158: -0.0 - art_sys_159: 2.03614024e-08 - art_sys_160: -9.16714242e-09 - art_sys_161: 3.76784818e-09 - art_sys_162: 1.43197900e-09 - art_sys_163: -5.43603648e-10 - art_sys_164: 1.80177941e-10 - art_sys_165: -6.01637312e-11 - art_sys_166: 1.64094464e-21 - art_sys_167: -6.84544694e-22 - art_sys_168: -1.41458323e-21 - art_sys_169: 3.51413422e-22 - art_sys_170: -1.47820263e-22 - art_sys_171: 1.56260646e-22 - art_sys_172: 9.21910719e-23 - art_sys_173: -1.63009527e-23 - art_sys_174: -1.26057985e-23 - art_sys_175: 4.67181144e-26 - art_sys_176: -2.63940144e-25 - art_sys_177: 3.16496702e-25 - art_sys_178: 3.92329063e-25 - art_sys_179: -1.47209470e-26 - art_sys_180: 8.40838378e-26 - art_sys_181: 1.99930036e-26 - art_sys_182: 4.06400668e-26 - art_sys_183: -3.02207736e-27 - art_sys_184: 4.11127851e-27 - art_sys_185: -9.36831570e-28 + art_sys_89: -1.80138249e-18 + art_sys_90: 2.33864373e-04 + art_sys_91: -3.38447182e-16 + art_sys_92: -8.77878639e-20 + art_sys_93: -2.12620561e-19 + art_sys_94: 2.49728439e-05 + art_sys_95: 1.45198409e-15 + art_sys_96: 2.22018692e-17 + art_sys_97: 4.24121080e-18 + art_sys_98: -1.42262042e-14 + art_sys_99: -6.37911745e-16 + art_sys_100: -2.58521416e-13 + art_sys_101: -8.03413130e-15 + art_sys_102: 3.25187792e-15 + art_sys_103: -4.87662180e-14 + art_sys_104: 3.17617714e-15 + art_sys_105: 3.73562119e-07 + art_sys_106: 2.00655765e-15 + art_sys_107: -3.56769931e-16 + art_sys_108: 2.13266555e-07 + art_sys_109: 9.72644339e-08 + art_sys_110: -1.61508615e-14 + art_sys_111: -4.10415687e-15 + art_sys_112: -2.95542288e-15 + art_sys_113: 1.76974582e-15 + art_sys_114: -4.20177224e-08 + art_sys_115: 8.82458130e-16 + art_sys_116: 4.61660690e-17 + art_sys_117: -2.03613800e-08 + art_sys_118: -9.24288682e-16 + art_sys_119: 6.67244222e-15 + art_sys_120: 6.73832637e-17 + art_sys_121: -9.16691323e-09 + art_sys_122: 8.69954820e-15 + art_sys_123: -1.90540546e-17 + art_sys_124: -1.81672557e-16 + art_sys_125: -3.76728122e-09 + art_sys_126: -1.24835281e-15 + art_sys_127: 1.41907487e-15 + art_sys_128: 1.76221325e-16 + art_sys_129: 1.43201375e-09 + art_sys_130: 1.14195290e-14 + art_sys_131: -5.43654920e-10 + art_sys_132: -9.50517482e-15 + art_sys_133: 4.06080418e-14 + art_sys_134: -6.59989987e-18 + art_sys_135: 2.56069233e-16 + art_sys_136: -1.79948682e-10 + art_sys_137: 4.73691609e-14 + art_sys_138: 1.86314112e-17 + art_sys_139: -1.04046335e-15 + art_sys_140: 6.01852561e-11 + art_sys_141: -1.74046022e-14 + art_sys_142: 2.72336080e-17 + art_sys_143: 1.04702043e-14 + art_sys_144: -1.95736680e-11 + art_sys_145: -1.24799150e-16 + art_sys_146: -1.05877949e-14 + art_sys_147: 6.44849491e-12 + art_sys_148: 1.90536004e-12 + art_sys_149: 1.72978636e-16 + art_sys_150: -7.32740140e-15 + art_sys_151: -6.24769772e-15 + art_sys_152: -6.71478132e-13 + art_sys_153: 9.57868852e-15 + art_sys_154: 1.06784996e-17 + art_sys_155: 1.38656599e-13 + art_sys_156: -0.0 + art_sys_157: -3.48691078e-16 + art_sys_158: 0.0 + art_sys_159: 1.67780665e-15 + art_sys_160: -2.65942692e-14 + art_sys_161: 1.95015343e-16 + art_sys_162: 1.95015343e-16 + art_sys_163: -4.42672414e-16 + art_sys_164: -4.42672414e-16 + art_sys_165: 8.40532384e-29 + art_sys_166: -4.18610564e-29 + art_sys_167: -0.0 + art_sys_168: -1.53057526e-22 + art_sys_169: -8.13158213e-23 + art_sys_170: 8.51845788e-24 + art_sys_171: 2.06237251e-24 + art_sys_172: -5.59332307e-24 + art_sys_173: 1.66827136e-25 + art_sys_174: 1.12274288e-24 + art_sys_175: 1.93109802e-25 + art_sys_176: -7.80916292e-25 + art_sys_177: 1.78805036e-25 + art_sys_178: 3.79071229e-26 + art_sys_179: -6.98519853e-27 + art_sys_180: 6.69216518e-28 + art_sys_181: 5.77708868e-26 + art_sys_182: 4.66405487e-26 + art_sys_183: -4.80193940e-28 + art_sys_184: 8.78201494e-28 + art_sys_185: 7.72604297e-28 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -34037,149 +34037,149 @@ bins: art_sys_40: 0.0 art_sys_41: 0.0 art_sys_42: 0.0 - art_sys_43: 3.02886067e-178 - art_sys_44: -1.85523027e-170 - art_sys_45: 1.22728462e-43 - art_sys_46: -7.46224635e-40 - art_sys_47: 1.84900201e-34 - art_sys_48: -2.14912309e-26 - art_sys_49: 2.72721499e-05 - art_sys_50: 3.60285269e-04 - art_sys_51: -5.23186009e-04 - art_sys_52: -3.81528105e-04 - art_sys_53: -2.32361333e-04 - art_sys_54: -6.27790428e-03 - art_sys_55: 1.02664636e-21 - art_sys_56: 2.51174220e-22 - art_sys_57: -2.60236120e-22 - art_sys_58: 3.40802396e-03 - art_sys_59: 7.72761699e-04 - art_sys_60: -5.03819612e-22 - art_sys_61: 1.24612190e-21 - art_sys_62: 3.94961378e-21 - art_sys_63: -7.32634595e-21 - art_sys_64: 2.30906782e-21 - art_sys_65: 1.01361971e-02 - art_sys_66: -2.00420601e-02 - art_sys_67: -3.38880834e-20 - art_sys_68: 3.98433230e-20 - art_sys_69: -5.52826112e-20 - art_sys_70: 6.01494863e-20 - art_sys_71: -2.65125856e-20 - art_sys_72: 3.43086143e-19 - art_sys_73: 2.28542984e-15 - art_sys_74: 2.52767872e-15 - art_sys_75: 1.76656024e-14 - art_sys_76: 3.29315067e-02 - art_sys_77: 1.79543687e-17 - art_sys_78: 5.15124978e-15 - art_sys_79: 4.21917444e-15 - art_sys_80: 1.87526498e-02 - art_sys_81: -5.91270731e-16 - art_sys_82: 1.99651705e-16 - art_sys_83: 1.35410373e-02 - art_sys_84: -3.02748178e-17 - art_sys_85: -2.08663668e-17 - art_sys_86: -5.21288119e-03 - art_sys_87: 1.28833271e-17 + art_sys_43: 0.0 + art_sys_44: -1.90553233e-210 + art_sys_45: -9.61023367e-204 + art_sys_46: -9.89976917e-154 + art_sys_47: -5.48118198e-159 + art_sys_48: 2.95486868e-151 + art_sys_49: -2.52119889e-142 + art_sys_50: 1.08098056e-134 + art_sys_51: -4.48515026e-124 + art_sys_52: -4.98319544e-141 + art_sys_53: -1.59150852e-137 + art_sys_54: -1.88309700e-132 + art_sys_55: -4.64334082e-129 + art_sys_56: -7.48813985e-126 + art_sys_57: -2.66467205e-47 + art_sys_58: -1.32039107e-33 + art_sys_59: 5.06681038e-45 + art_sys_60: -6.12607054e-42 + art_sys_61: -2.41497901e-27 + art_sys_62: 6.70368098e-42 + art_sys_63: 1.13234664e-31 + art_sys_64: 2.72721499e-05 + art_sys_65: -3.60285269e-04 + art_sys_66: -5.23186009e-04 + art_sys_67: -3.81528105e-04 + art_sys_68: 2.32361333e-04 + art_sys_69: 6.27790428e-03 + art_sys_70: -3.40802396e-03 + art_sys_71: -7.72761699e-04 + art_sys_72: -1.01361971e-02 + art_sys_73: -2.00420601e-02 + art_sys_74: 1.91496469e-20 + art_sys_75: -3.29315067e-02 + art_sys_76: -2.03375973e-14 + art_sys_77: 1.66306104e-14 + art_sys_78: 6.23605561e-15 + art_sys_79: 1.87526498e-02 + art_sys_80: 3.23582529e-15 + art_sys_81: -1.35410373e-02 + art_sys_82: -3.31546220e-15 + art_sys_83: 5.68676598e-16 + art_sys_84: -5.84145626e-16 + art_sys_85: 1.47056398e-16 + art_sys_86: 1.79607781e-16 + art_sys_87: -5.21288118e-03 art_sys_88: -1.19457306e-03 - art_sys_89: -6.88435723e-04 - art_sys_90: 2.13666827e-17 - art_sys_91: -2.47516705e-13 - art_sys_92: 3.90088740e-16 - art_sys_93: 1.29416772e-16 - art_sys_94: 3.67216229e-15 - art_sys_95: -5.46529523e-17 - art_sys_96: 8.03338529e-05 - art_sys_97: -3.56709592e-15 - art_sys_98: -3.12188611e-16 - art_sys_99: 1.58700007e-17 - art_sys_100: 5.84901720e-16 - art_sys_101: -6.77324941e-14 - art_sys_102: -3.61334455e-15 - art_sys_103: -3.07111174e-15 - art_sys_104: 2.72011134e-17 - art_sys_105: 1.32786357e-16 - art_sys_106: 1.04379468e-14 - art_sys_107: 1.14243847e-06 - art_sys_108: -7.21294151e-07 - art_sys_109: 3.27764653e-07 - art_sys_110: 3.31032753e-13 - art_sys_111: 3.20810126e-15 - art_sys_112: 1.69430853e-14 - art_sys_113: -1.45453672e-07 - art_sys_114: 3.62297953e-15 - art_sys_115: -5.45986585e-16 - art_sys_116: 1.09693086e-13 - art_sys_117: 5.32229286e-16 - art_sys_118: -5.83711657e-14 - art_sys_119: -4.37173579e-16 - art_sys_120: -8.54668898e-15 - art_sys_121: -4.79801602e-13 - art_sys_122: 4.68482336e-15 - art_sys_123: 1.46146228e-14 - art_sys_124: 8.06703532e-14 - art_sys_125: -1.58669633e-14 - art_sys_126: 4.03076886e-13 - art_sys_127: 2.69316953e-15 - art_sys_128: -5.88610315e-14 - art_sys_129: -4.26556327e-15 - art_sys_130: 9.07733277e-14 - art_sys_131: 8.26882341e-14 - art_sys_132: -8.60388544e-15 - art_sys_133: 4.65481565e-14 - art_sys_134: 7.23466212e-11 - art_sys_135: -8.88807696e-15 - art_sys_136: -5.71789011e-14 - art_sys_137: 2.37880822e-11 - art_sys_138: 5.39907674e-16 - art_sys_139: -3.21323292e-15 - art_sys_140: 9.53748952e-14 - art_sys_141: -1.12876535e-15 - art_sys_142: 1.17617185e-13 - art_sys_143: -7.30171164e-12 - art_sys_144: 2.04525861e-12 - art_sys_145: 5.65859035e-13 - art_sys_146: 0.0 - art_sys_147: 9.10295777e-14 - art_sys_148: -2.96307290e-14 - art_sys_149: -2.96307290e-14 - art_sys_150: 7.16146804e-15 - art_sys_151: 7.16146804e-15 - art_sys_152: -4.04354992e-15 - art_sys_153: 2.10154093e-14 - art_sys_154: -7.17751350e-15 - art_sys_155: 2.72848027e-26 - art_sys_156: -5.15799773e-30 - art_sys_157: 8.57932413e-29 - art_sys_158: 0.0 - art_sys_159: -7.19038273e-08 - art_sys_160: 3.27346927e-08 - art_sys_161: -1.36216405e-08 - art_sys_162: -5.21115928e-09 - art_sys_163: 1.98991035e-09 - art_sys_164: -6.61855191e-10 - art_sys_165: 2.21526709e-10 - art_sys_166: -6.05549494e-21 - art_sys_167: 2.54227455e-21 - art_sys_168: 5.22385653e-21 - art_sys_169: -1.29792726e-21 - art_sys_170: 5.58233485e-22 - art_sys_171: -5.78772896e-22 - art_sys_172: -2.99677129e-22 - art_sys_173: 5.93856266e-23 - art_sys_174: 4.62937100e-23 - art_sys_175: -1.72559870e-25 - art_sys_176: 1.15109789e-24 - art_sys_177: -1.10781154e-24 - art_sys_178: -1.45560954e-24 - art_sys_179: 5.60589221e-26 - art_sys_180: -3.66673448e-25 - art_sys_181: -6.87612941e-26 - art_sys_182: -1.60272362e-25 - art_sys_183: 1.10335635e-26 - art_sys_184: -1.51931077e-26 - art_sys_185: 3.46284597e-27 + art_sys_89: 5.34606369e-18 + art_sys_90: -6.88435721e-04 + art_sys_91: 5.64581015e-16 + art_sys_92: 2.93400903e-19 + art_sys_93: 6.85013336e-19 + art_sys_94: -8.03338511e-05 + art_sys_95: -4.00986648e-15 + art_sys_96: -4.51272863e-17 + art_sys_97: -2.52639453e-18 + art_sys_98: 3.92336270e-14 + art_sys_99: 1.75933885e-15 + art_sys_100: 7.12964085e-13 + art_sys_101: 2.21576653e-14 + art_sys_102: -8.98389709e-15 + art_sys_103: 1.34493653e-13 + art_sys_104: -8.76684405e-15 + art_sys_105: -1.14242797e-06 + art_sys_106: -5.53284828e-15 + art_sys_107: 9.74496142e-16 + art_sys_108: -7.21296838e-07 + art_sys_109: -3.27764109e-07 + art_sys_110: 4.73610596e-14 + art_sys_111: 1.13706326e-14 + art_sys_112: 8.12631597e-15 + art_sys_113: -5.50227124e-15 + art_sys_114: 1.45453867e-07 + art_sys_115: -2.45741894e-15 + art_sys_116: -1.48799297e-16 + art_sys_117: 7.19037452e-08 + art_sys_118: 2.57482913e-15 + art_sys_119: -2.14642560e-14 + art_sys_120: -1.98553432e-16 + art_sys_121: 3.27338785e-08 + art_sys_122: -2.56075431e-14 + art_sys_123: 6.03152335e-17 + art_sys_124: 5.34715185e-16 + art_sys_125: 1.36195938e-08 + art_sys_126: 4.01573720e-15 + art_sys_127: -4.80341344e-15 + art_sys_128: -5.66735398e-16 + art_sys_129: -5.21128503e-09 + art_sys_130: -4.02230088e-14 + art_sys_131: 1.99010065e-09 + art_sys_132: 3.05766832e-14 + art_sys_133: -1.44078329e-13 + art_sys_134: 2.25291685e-17 + art_sys_135: -8.22412212e-16 + art_sys_136: 6.61016104e-10 + art_sys_137: -1.70820978e-13 + art_sys_138: -5.52483301e-17 + art_sys_139: 3.81000886e-15 + art_sys_140: -2.21605987e-10 + art_sys_141: 5.90297740e-14 + art_sys_142: -8.99171198e-17 + art_sys_143: -3.82105819e-14 + art_sys_144: 7.21764334e-11 + art_sys_145: 4.23893015e-16 + art_sys_146: 3.87436903e-14 + art_sys_147: -2.37964136e-11 + art_sys_148: -7.03500502e-12 + art_sys_149: -5.99309066e-16 + art_sys_150: 2.68787766e-14 + art_sys_151: 2.30752431e-14 + art_sys_152: 2.47969260e-12 + art_sys_153: -3.52095266e-14 + art_sys_154: -3.18153012e-17 + art_sys_155: -5.12198454e-13 + art_sys_156: 0.0 + art_sys_157: 1.28006673e-15 + art_sys_158: -0.0 + art_sys_159: -6.15895989e-15 + art_sys_160: 9.81847926e-14 + art_sys_161: -7.14662851e-16 + art_sys_162: -7.14662851e-16 + art_sys_163: 1.62890464e-15 + art_sys_164: 1.62890464e-15 + art_sys_165: -3.10399232e-28 + art_sys_166: 1.54595508e-28 + art_sys_167: 0.0 + art_sys_168: 5.28863839e-22 + art_sys_169: 2.95662757e-22 + art_sys_170: -3.26479382e-23 + art_sys_171: -4.60955036e-23 + art_sys_172: 1.63552883e-23 + art_sys_173: -1.28010285e-24 + art_sys_174: -3.75331000e-24 + art_sys_175: -8.11048170e-25 + art_sys_176: 2.89849497e-24 + art_sys_177: -5.48186969e-25 + art_sys_178: -1.41405687e-25 + art_sys_179: 2.58142098e-26 + art_sys_180: -2.47056062e-27 + art_sys_181: -2.47080036e-25 + art_sys_182: -1.69033121e-25 + art_sys_183: 1.90965088e-27 + art_sys_184: -3.24467862e-27 + art_sys_185: -2.85492152e-27 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -34328,149 +34328,149 @@ bins: art_sys_40: 0.0 art_sys_41: 0.0 art_sys_42: 0.0 - art_sys_43: -2.00161265e-179 - art_sys_44: 1.22602285e-171 - art_sys_45: -8.11031729e-45 - art_sys_46: 4.93130808e-41 - art_sys_47: -1.22188389e-35 - art_sys_48: 1.42021417e-27 - art_sys_49: -1.80223711e-06 - art_sys_50: 7.41697073e-05 - art_sys_51: -1.19884608e-04 - art_sys_52: -1.10552010e-04 - art_sys_53: 5.04522270e-04 - art_sys_54: -1.83365138e-03 - art_sys_55: -4.37711334e-22 - art_sys_56: 2.66633385e-21 - art_sys_57: 1.82433261e-22 - art_sys_58: 2.46062640e-03 - art_sys_59: -1.35657430e-03 - art_sys_60: -2.55343604e-21 - art_sys_61: 1.39755299e-21 - art_sys_62: 5.36364196e-22 - art_sys_63: 1.85043592e-22 - art_sys_64: -1.05525056e-21 - art_sys_65: 6.71641193e-03 - art_sys_66: 1.05094191e-02 - art_sys_67: -1.21291513e-20 - art_sys_68: 9.05459250e-22 - art_sys_69: 5.10704395e-20 - art_sys_70: 1.13900449e-20 - art_sys_71: -1.19574284e-20 - art_sys_72: 5.03257105e-20 - art_sys_73: 1.58978149e-14 - art_sys_74: -1.52951000e-14 - art_sys_75: 4.54777670e-15 - art_sys_76: 6.08926013e-03 - art_sys_77: 3.33266760e-18 - art_sys_78: 9.52486820e-16 - art_sys_79: 4.15580148e-15 - art_sys_80: 2.96369593e-02 - art_sys_81: 8.42528958e-16 - art_sys_82: -3.37702421e-16 - art_sys_83: -6.14096465e-03 - art_sys_84: 5.42098321e-18 - art_sys_85: -7.98572333e-18 - art_sys_86: 5.92172254e-03 - art_sys_87: -5.37061349e-18 + art_sys_43: 0.0 + art_sys_44: 7.44500417e-212 + art_sys_45: 3.75476500e-205 + art_sys_46: 6.50319282e-155 + art_sys_47: 3.60060751e-160 + art_sys_48: -1.94106352e-152 + art_sys_49: 1.65618432e-143 + art_sys_50: -7.10099893e-136 + art_sys_51: 2.94631082e-125 + art_sys_52: 3.27347841e-142 + art_sys_53: 1.04546748e-138 + art_sys_54: 1.23701297e-133 + art_sys_55: 3.05022674e-130 + art_sys_56: 4.91898512e-127 + art_sys_57: 1.76090622e-48 + art_sys_58: 8.72559476e-35 + art_sys_59: -3.34832119e-46 + art_sys_60: 4.04831646e-43 + art_sys_61: 1.59590054e-28 + art_sys_62: -4.42996692e-43 + art_sys_63: -7.48293302e-33 + art_sys_64: -1.80223711e-06 + art_sys_65: -7.41697073e-05 + art_sys_66: -1.19884608e-04 + art_sys_67: -1.10552010e-04 + art_sys_68: -5.04522270e-04 + art_sys_69: 1.83365138e-03 + art_sys_70: -2.46062640e-03 + art_sys_71: 1.35657430e-03 + art_sys_72: -6.71641193e-03 + art_sys_73: 1.05094191e-02 + art_sys_74: 9.02840986e-21 + art_sys_75: -6.08926013e-03 + art_sys_76: -1.82046868e-14 + art_sys_77: 2.49737430e-14 + art_sys_78: -1.33486838e-14 + art_sys_79: 2.96369593e-02 + art_sys_80: -1.93668212e-15 + art_sys_81: 6.14096465e-03 + art_sys_82: 1.49144958e-15 + art_sys_83: -5.36808723e-16 + art_sys_84: 6.12743963e-16 + art_sys_85: -1.79523325e-16 + art_sys_86: -2.22857370e-16 + art_sys_87: 5.92172252e-03 art_sys_88: 2.10768907e-03 - art_sys_89: 1.28843390e-03 - art_sys_90: 5.33646406e-17 - art_sys_91: -3.92296741e-13 - art_sys_92: 6.18689884e-16 - art_sys_93: 2.02266202e-16 - art_sys_94: -1.66748685e-15 - art_sys_95: -8.72667386e-17 - art_sys_96: -1.87903014e-04 - art_sys_97: 1.61769333e-15 - art_sys_98: -1.15994588e-16 - art_sys_99: -1.05259261e-16 - art_sys_100: -2.51212655e-16 - art_sys_101: -1.07073952e-13 - art_sys_102: -5.71445509e-15 - art_sys_103: 3.48863402e-15 - art_sys_104: -6.17183922e-18 - art_sys_105: 2.13674689e-16 - art_sys_106: -4.73626116e-15 - art_sys_107: -3.29292266e-06 - art_sys_108: 1.90888890e-06 - art_sys_109: -9.31096579e-07 - art_sys_110: -3.76224707e-13 - art_sys_111: -1.45605950e-15 - art_sys_112: -2.98415745e-14 - art_sys_113: 4.16404844e-07 - art_sys_114: -1.65315238e-15 - art_sys_115: 1.15674738e-15 - art_sys_116: -1.22460754e-13 - art_sys_117: -3.02281326e-16 - art_sys_118: 1.35322186e-13 - art_sys_119: 4.95483021e-16 - art_sys_120: 1.41699340e-14 - art_sys_121: 1.37757605e-12 - art_sys_122: -5.74828640e-15 - art_sys_123: -1.99991021e-14 - art_sys_124: -2.36560893e-13 - art_sys_125: 3.66217852e-14 - art_sys_126: -1.17123239e-12 - art_sys_127: -7.27515351e-15 - art_sys_128: 1.72548443e-13 - art_sys_129: 6.42108660e-15 - art_sys_130: -2.70132553e-13 - art_sys_131: -2.37988765e-13 - art_sys_132: 2.32901807e-14 - art_sys_133: -1.38981542e-13 - art_sys_134: -2.20194207e-10 - art_sys_135: 2.14424323e-14 - art_sys_136: 1.68973772e-13 - art_sys_137: -7.24559233e-11 - art_sys_138: 8.53315703e-16 - art_sys_139: 9.10379906e-15 - art_sys_140: -2.88578980e-13 - art_sys_141: 3.49012013e-15 - art_sys_142: -3.56011720e-13 - art_sys_143: 2.22492856e-11 - art_sys_144: -6.23381309e-12 - art_sys_145: -1.72491901e-12 - art_sys_146: -0.0 - art_sys_147: -2.77313803e-13 - art_sys_148: 8.84258948e-14 - art_sys_149: 8.84258948e-14 - art_sys_150: -2.18383673e-14 - art_sys_151: -2.18383673e-14 - art_sys_152: 1.23014652e-14 - art_sys_153: -6.41111520e-14 - art_sys_154: 2.18795442e-14 - art_sys_155: -8.35045607e-26 - art_sys_156: 8.87760945e-30 - art_sys_157: -2.47600631e-28 - art_sys_158: -0.0 - art_sys_159: 2.09651553e-07 - art_sys_160: -9.68641522e-08 - art_sys_161: 4.06618295e-08 - art_sys_162: 1.56833465e-08 - art_sys_163: -6.01520453e-09 - art_sys_164: 2.00784150e-09 - art_sys_165: -6.73396568e-10 - art_sys_166: 1.84439474e-20 - art_sys_167: -7.88241930e-21 - art_sys_168: -1.59206370e-20 - art_sys_169: 3.95434305e-21 - art_sys_170: -1.66014561e-21 - art_sys_171: 1.77781677e-21 - art_sys_172: 7.24305457e-22 - art_sys_173: -1.80195358e-22 - art_sys_174: -1.40510933e-22 - art_sys_175: 5.26011740e-25 - art_sys_176: -3.67010743e-24 - art_sys_177: 3.20442279e-24 - art_sys_178: 4.46445914e-24 - art_sys_179: -1.51612189e-25 - art_sys_180: 1.94958860e-24 - art_sys_181: 1.75485202e-25 - art_sys_182: 5.37231633e-25 - art_sys_183: -3.33417365e-26 - art_sys_184: 4.63326517e-26 - art_sys_185: -1.05626475e-26 + art_sys_89: -1.02191580e-17 + art_sys_90: 1.28843390e-03 + art_sys_91: -1.91998195e-16 + art_sys_92: -6.94295703e-19 + art_sys_93: -1.62187165e-18 + art_sys_94: 1.87903010e-04 + art_sys_95: 5.00177448e-15 + art_sys_96: 3.13797274e-17 + art_sys_97: -8.05065678e-18 + art_sys_98: -4.45009258e-14 + art_sys_99: -2.00167260e-15 + art_sys_100: -8.09728769e-13 + art_sys_101: -2.51749439e-14 + art_sys_102: 1.12055310e-14 + art_sys_103: -1.52794882e-13 + art_sys_104: 1.00115641e-14 + art_sys_105: 3.29289503e-06 + art_sys_106: 6.27091761e-15 + art_sys_107: -1.68630168e-15 + art_sys_108: 1.90889621e-06 + art_sys_109: 9.31095080e-07 + art_sys_110: -8.82999680e-14 + art_sys_111: -1.99587447e-14 + art_sys_112: -1.41400971e-14 + art_sys_113: 1.08312896e-14 + art_sys_114: -4.16405408e-07 + art_sys_115: 4.33867628e-15 + art_sys_116: 3.49681117e-16 + art_sys_117: -2.09651301e-07 + art_sys_118: -4.56821683e-15 + art_sys_119: 5.02054980e-14 + art_sys_120: 3.72755849e-16 + art_sys_121: -9.68617593e-08 + art_sys_122: 4.79231834e-14 + art_sys_123: -1.68725550e-16 + art_sys_124: -1.00043877e-15 + art_sys_125: -4.06557314e-08 + art_sys_126: -9.39335511e-15 + art_sys_127: 1.26676430e-14 + art_sys_128: 1.32483402e-15 + art_sys_129: 1.56837222e-08 + art_sys_130: 1.19158683e-13 + art_sys_131: -6.01578792e-09 + art_sys_132: -7.15190920e-14 + art_sys_133: 4.22142950e-13 + art_sys_134: -6.06089976e-17 + art_sys_135: 1.93779110e-15 + art_sys_136: -2.00530545e-09 + art_sys_137: 5.08774604e-13 + art_sys_138: 1.84194871e-16 + art_sys_139: -1.12611109e-14 + art_sys_140: 6.73637612e-10 + art_sys_141: -1.55863966e-13 + art_sys_142: 2.49700388e-16 + art_sys_143: 1.15000820e-13 + art_sys_144: -2.19676273e-10 + art_sys_145: -1.12159288e-15 + art_sys_146: -1.17077666e-13 + art_sys_147: 7.24813014e-11 + art_sys_148: 2.14367992e-11 + art_sys_149: 1.64283572e-15 + art_sys_150: -8.14094579e-14 + art_sys_151: -7.03463220e-14 + art_sys_152: -7.55747780e-12 + art_sys_153: 1.06868471e-13 + art_sys_154: 6.02433177e-17 + art_sys_155: 1.56145230e-12 + art_sys_156: -0.0 + art_sys_157: -3.88533384e-15 + art_sys_158: 0.0 + art_sys_159: 1.86679342e-14 + art_sys_160: -2.99184317e-13 + art_sys_161: 2.16154685e-15 + art_sys_162: 2.16154685e-15 + art_sys_163: -4.94948417e-15 + art_sys_164: -4.94948417e-15 + art_sys_165: 9.46023392e-28 + art_sys_166: -4.71188629e-28 + art_sys_167: -0.0 + art_sys_168: -1.59495035e-21 + art_sys_169: -8.86824609e-22 + art_sys_170: 9.66499856e-23 + art_sys_171: 2.33075939e-22 + art_sys_172: -4.27815843e-23 + art_sys_173: 3.77809399e-24 + art_sys_174: 1.05874131e-23 + art_sys_175: 2.81131411e-24 + art_sys_176: -8.91257803e-24 + art_sys_177: 1.59305658e-24 + art_sys_178: 4.22131752e-25 + art_sys_179: -7.87224699e-26 + art_sys_180: 7.52770752e-27 + art_sys_181: 8.26334515e-25 + art_sys_182: 5.00511063e-25 + art_sys_183: -6.02870839e-27 + art_sys_184: 9.89413431e-27 + art_sys_185: 8.70597439e-27 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -34619,149 +34619,149 @@ bins: art_sys_40: 0.0 art_sys_41: 0.0 art_sys_42: 0.0 - art_sys_43: -9.49512232e-180 - art_sys_44: 5.81592893e-172 - art_sys_45: -3.84735620e-45 - art_sys_46: 2.33930412e-41 - art_sys_47: -5.79634849e-36 - art_sys_48: 6.73718377e-28 - art_sys_49: -8.54941660e-07 - art_sys_50: 1.23406385e-05 - art_sys_51: -1.94181186e-05 - art_sys_52: -1.10803930e-05 - art_sys_53: 1.51113552e-04 - art_sys_54: -8.65548323e-05 - art_sys_55: -1.84252366e-22 - art_sys_56: 6.35045013e-22 - art_sys_57: 6.68780295e-23 - art_sys_58: 3.97357328e-04 - art_sys_59: -3.65017462e-04 - art_sys_60: -5.78729236e-22 - art_sys_61: 2.61652454e-22 - art_sys_62: -9.65539499e-23 - art_sys_63: 4.64318833e-22 - art_sys_64: -3.80756512e-22 - art_sys_65: 1.15567069e-04 - art_sys_66: 4.08567374e-03 - art_sys_67: 1.11823749e-21 - art_sys_68: -3.92635453e-21 - art_sys_69: 1.54812807e-20 - art_sys_70: -4.50404281e-21 - art_sys_71: 7.09087631e-22 - art_sys_72: -5.05013121e-20 - art_sys_73: 5.13848663e-14 - art_sys_74: 8.61718524e-15 - art_sys_75: 2.72453394e-15 - art_sys_76: -4.61979406e-03 - art_sys_77: -2.51677190e-18 - art_sys_78: -7.22643993e-16 - art_sys_79: 6.11047314e-15 - art_sys_80: 1.12023691e-02 - art_sys_81: -6.55883078e-16 - art_sys_82: 4.78329207e-16 - art_sys_83: -2.09967849e-02 - art_sys_84: -1.67081609e-16 - art_sys_85: 4.03182431e-17 - art_sys_86: -5.14716403e-03 - art_sys_87: -1.92564439e-17 + art_sys_43: 0.0 + art_sys_44: 4.72926047e-212 + art_sys_45: 2.38512384e-205 + art_sys_46: 3.09404421e-155 + art_sys_47: 1.71307220e-160 + art_sys_48: -9.23505811e-153 + art_sys_49: 7.87967952e-144 + art_sys_50: -3.37846428e-136 + art_sys_51: 1.40177543e-125 + art_sys_52: 1.55743300e-142 + art_sys_53: 4.97405309e-139 + art_sys_54: 5.88537498e-134 + art_sys_55: 1.45121584e-130 + art_sys_56: 2.34032081e-127 + art_sys_57: 8.35335280e-49 + art_sys_58: 4.13923073e-35 + art_sys_59: -1.58837012e-46 + art_sys_60: 1.92043251e-43 + art_sys_61: 7.57060204e-29 + art_sys_62: -2.10149226e-43 + art_sys_63: -3.54973927e-33 + art_sys_64: -8.54941660e-07 + art_sys_65: -1.23406385e-05 + art_sys_66: -1.94181186e-05 + art_sys_67: -1.10803930e-05 + art_sys_68: -1.51113552e-04 + art_sys_69: 8.65548323e-05 + art_sys_70: -3.97357328e-04 + art_sys_71: 3.65017462e-04 + art_sys_72: -1.15567069e-04 + art_sys_73: 4.08567374e-03 + art_sys_74: -5.26675898e-22 + art_sys_75: 4.61979406e-03 + art_sys_76: -4.44978082e-14 + art_sys_77: 2.88617812e-14 + art_sys_78: -3.00769838e-15 + art_sys_79: 1.12023691e-02 + art_sys_80: -2.80125061e-15 + art_sys_81: 2.09967849e-02 + art_sys_82: 5.12811851e-15 + art_sys_83: 2.98522647e-16 + art_sys_84: -5.56063097e-16 + art_sys_85: 1.51278776e-16 + art_sys_86: 1.96538553e-16 + art_sys_87: -5.14716401e-03 art_sys_88: -1.68271984e-03 - art_sys_89: -1.69869052e-03 - art_sys_90: 3.31745378e-17 - art_sys_91: -1.49040715e-13 - art_sys_92: 2.35265800e-16 - art_sys_93: 7.47489186e-17 - art_sys_94: -5.69644020e-15 - art_sys_95: -3.44106329e-17 - art_sys_96: 3.44065184e-04 - art_sys_97: 5.53093506e-15 - art_sys_98: 2.12566853e-16 - art_sys_99: -1.28164250e-16 - art_sys_100: -9.59066849e-16 - art_sys_101: -4.04912524e-14 - art_sys_102: -2.16243627e-15 - art_sys_103: -3.03226881e-15 - art_sys_104: -3.57454750e-17 - art_sys_105: 8.32723196e-17 - art_sys_106: -1.61748170e-14 - art_sys_107: 7.53178330e-06 - art_sys_108: -4.66367929e-06 - art_sys_109: 2.29967865e-06 - art_sys_110: 3.26979211e-13 - art_sys_111: -4.97094130e-15 - art_sys_112: 2.32998932e-14 - art_sys_113: -1.07851072e-06 - art_sys_114: -5.57901857e-15 - art_sys_115: -1.88011087e-15 - art_sys_116: 1.06871761e-13 - art_sys_117: -5.79919455e-16 - art_sys_118: -2.45129403e-13 - art_sys_119: -3.12091274e-16 - art_sys_120: -1.19386817e-14 - art_sys_121: -3.15937792e-12 - art_sys_122: 4.90245005e-15 - art_sys_123: 1.64049756e-14 - art_sys_124: 6.39015042e-13 - art_sys_125: -6.63534793e-14 - art_sys_126: 3.07774501e-12 - art_sys_127: 1.14209888e-14 - art_sys_128: -4.57736402e-13 - art_sys_129: -9.30251829e-15 - art_sys_130: 7.30189349e-13 - art_sys_131: 5.45386497e-13 - art_sys_132: -4.93386990e-14 - art_sys_133: 3.80345568e-13 - art_sys_134: 6.12160300e-10 - art_sys_135: -4.07819979e-14 - art_sys_136: -4.54746939e-13 - art_sys_137: 2.01592516e-10 - art_sys_138: 3.22570102e-16 - art_sys_139: -1.82142923e-14 - art_sys_140: 7.97014814e-13 - art_sys_141: -1.12107365e-14 - art_sys_142: 9.84946825e-13 - art_sys_143: -6.19339432e-11 - art_sys_144: 1.73569339e-11 - art_sys_145: 4.80343790e-12 - art_sys_146: 0.0 - art_sys_147: 7.71604673e-13 - art_sys_148: -2.39001185e-13 - art_sys_149: -2.39001185e-13 - art_sys_150: 6.10029080e-14 - art_sys_151: 6.10029080e-14 - art_sys_152: -3.40353598e-14 - art_sys_153: 1.78706622e-13 - art_sys_154: -6.09299785e-14 - art_sys_155: 2.33976562e-25 - art_sys_156: -3.09819488e-30 - art_sys_157: 6.32379541e-28 - art_sys_158: 0.0 - art_sys_159: -5.53644073e-07 - art_sys_160: 2.60309051e-07 - art_sys_161: -1.10697527e-07 - art_sys_162: -4.30198711e-08 - art_sys_163: 1.66034216e-08 - art_sys_164: -5.56063245e-09 - art_sys_165: 1.86965635e-09 - art_sys_166: -5.13144712e-20 - art_sys_167: 2.10544308e-20 - art_sys_168: 4.43263746e-20 - art_sys_169: -1.10028598e-20 - art_sys_170: 4.72192258e-21 - art_sys_171: -4.97355245e-21 - art_sys_172: -1.67410038e-21 - art_sys_173: 4.79414777e-22 - art_sys_174: 3.84512103e-22 - art_sys_175: -1.46478262e-24 - art_sys_176: 1.17540596e-23 - art_sys_177: -8.33248863e-24 - art_sys_178: -1.25028371e-23 - art_sys_179: 4.94836277e-25 - art_sys_180: -5.80085700e-24 - art_sys_181: -4.65127714e-25 - art_sys_182: -1.64062706e-24 - art_sys_183: 9.12043511e-26 - art_sys_184: -1.29080900e-25 - art_sys_185: 2.94344181e-26 + art_sys_89: 1.40883855e-17 + art_sys_90: -1.69869052e-03 + art_sys_91: -1.11386140e-15 + art_sys_92: 1.32899018e-18 + art_sys_93: 3.01758620e-18 + art_sys_94: -3.44065177e-04 + art_sys_95: -4.25872125e-15 + art_sys_96: 2.92208785e-17 + art_sys_97: 3.85652838e-17 + art_sys_98: 3.86936459e-14 + art_sys_99: 1.73915411e-15 + art_sys_100: 7.03651460e-13 + art_sys_101: 2.18836647e-14 + art_sys_102: -9.55986157e-15 + art_sys_103: 1.32826832e-13 + art_sys_104: -8.81259103e-15 + art_sys_105: -7.53171550e-06 + art_sys_106: -5.43725318e-15 + art_sys_107: 1.01630381e-15 + art_sys_108: -4.66369687e-06 + art_sys_109: -2.29967506e-06 + art_sys_110: 1.13505285e-13 + art_sys_111: 1.50029340e-14 + art_sys_112: 9.51636746e-15 + art_sys_113: -1.89450508e-14 + art_sys_114: 1.07851219e-06 + art_sys_115: -3.48780036e-15 + art_sys_116: -6.43621144e-16 + art_sys_117: 5.53643369e-07 + art_sys_118: 3.68928257e-15 + art_sys_119: -9.19303059e-14 + art_sys_120: -4.94300227e-16 + art_sys_121: 2.60302672e-07 + art_sys_122: -6.31555979e-14 + art_sys_123: 3.94897862e-16 + art_sys_124: 1.31788575e-15 + art_sys_125: 1.10680954e-07 + art_sys_126: 1.72013094e-14 + art_sys_127: -3.09853949e-14 + art_sys_128: -2.42427350e-15 + art_sys_129: -4.30208951e-08 + art_sys_130: -3.19231210e-13 + art_sys_131: 1.66050530e-08 + art_sys_132: 1.30955764e-13 + art_sys_133: -1.12181688e-12 + art_sys_134: 1.53446351e-16 + art_sys_135: -3.58270910e-15 + art_sys_136: 5.55363354e-09 + art_sys_137: -1.38116426e-12 + art_sys_138: -4.76550322e-16 + art_sys_139: 3.09870335e-14 + art_sys_140: -1.87032575e-09 + art_sys_141: 3.81636729e-13 + art_sys_142: -6.21443926e-16 + art_sys_143: -3.16507910e-13 + art_sys_144: 6.10720541e-10 + art_sys_145: 2.75330103e-15 + art_sys_146: 3.23074539e-13 + art_sys_147: -2.01663131e-10 + art_sys_148: -5.96729653e-11 + art_sys_149: -4.17993353e-15 + art_sys_150: 2.25172808e-13 + art_sys_151: 1.95901158e-13 + art_sys_152: 2.10411349e-11 + art_sys_153: -2.96220281e-13 + art_sys_154: -8.54655842e-17 + art_sys_155: -4.34857919e-12 + art_sys_156: 0.0 + art_sys_157: 1.07589198e-14 + art_sys_158: -0.0 + art_sys_159: -5.16737988e-14 + art_sys_160: 8.32777615e-13 + art_sys_161: -5.97131329e-15 + art_sys_162: -5.97131329e-15 + art_sys_163: 1.37343199e-14 + art_sys_164: 1.37343199e-14 + art_sys_165: -2.63390351e-27 + art_sys_166: 1.31193227e-27 + art_sys_167: 0.0 + art_sys_168: 4.62316860e-21 + art_sys_169: 2.42318882e-21 + art_sys_170: -2.81488165e-22 + art_sys_171: -1.00611833e-21 + art_sys_172: 8.02324975e-23 + art_sys_173: -1.79620282e-23 + art_sys_174: -2.57652581e-23 + art_sys_175: -8.84948569e-24 + art_sys_176: 2.49733641e-23 + art_sys_177: -3.73384073e-24 + art_sys_178: -1.19321348e-24 + art_sys_179: 2.19325871e-25 + art_sys_180: -2.09518700e-26 + art_sys_181: -2.54985511e-24 + art_sys_182: -1.36075598e-24 + art_sys_183: 1.84328777e-26 + art_sys_184: -2.75575267e-26 + art_sys_185: -2.42527008e-26 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -34910,149 +34910,149 @@ bins: art_sys_40: 0.0 art_sys_41: 0.0 art_sys_42: 0.0 - art_sys_43: -9.13998264e-181 - art_sys_44: 5.59839965e-173 - art_sys_45: -3.70345414e-46 - art_sys_46: 2.25180750e-42 - art_sys_47: -5.57954858e-37 - art_sys_48: 6.48519395e-29 - art_sys_49: -8.22964411e-08 - art_sys_50: 1.31486126e-06 - art_sys_51: -1.64162720e-06 - art_sys_52: 1.98844325e-06 - art_sys_53: 1.19840938e-05 - art_sys_54: 7.97949859e-05 - art_sys_55: -2.45455199e-23 - art_sys_56: -2.90915953e-24 - art_sys_57: 7.72073960e-24 - art_sys_58: -4.71002667e-05 - art_sys_59: 1.20878237e-05 - art_sys_60: 3.55200486e-23 - art_sys_61: -2.85943961e-23 - art_sys_62: -2.95320994e-23 - art_sys_63: 6.68094646e-23 - art_sys_64: -2.53150193e-25 - art_sys_65: -5.43849868e-04 - art_sys_66: -2.61461457e-04 - art_sys_67: 1.65603748e-21 - art_sys_68: -5.98552223e-22 - art_sys_69: -1.95022125e-21 - art_sys_70: -1.63008958e-21 - art_sys_71: 1.08245714e-21 - art_sys_72: -1.34365054e-20 - art_sys_73: 5.39135012e-14 - art_sys_74: 4.88012764e-15 - art_sys_75: -3.57582127e-15 - art_sys_76: -1.36089260e-03 - art_sys_77: -7.42751493e-19 - art_sys_78: -2.12874225e-16 - art_sys_79: -7.29536682e-17 - art_sys_80: -1.60862686e-03 - art_sys_81: 1.25178163e-15 - art_sys_82: -6.81382329e-16 - art_sys_83: -3.82796475e-03 - art_sys_84: -7.86296738e-17 - art_sys_85: -1.84039550e-16 - art_sys_86: -6.64913179e-03 - art_sys_87: -3.47672992e-18 + art_sys_43: 0.0 + art_sys_44: 4.47792614e-213 + art_sys_45: 2.25836759e-206 + art_sys_46: 2.97781309e-156 + art_sys_47: 1.64871879e-161 + art_sys_48: -8.88813314e-154 + art_sys_49: 7.58367082e-145 + art_sys_50: -3.25154861e-137 + art_sys_51: 1.34911622e-126 + art_sys_52: 1.49892633e-143 + art_sys_53: 4.78719739e-140 + art_sys_54: 5.66428449e-135 + art_sys_55: 1.39669934e-131 + art_sys_56: 2.25240412e-128 + art_sys_57: 8.04091361e-50 + art_sys_58: 3.98441171e-36 + art_sys_59: -1.52896055e-47 + art_sys_60: 1.84860287e-44 + art_sys_61: 7.28743996e-30 + art_sys_62: -2.02290073e-44 + art_sys_63: -3.41696891e-34 + art_sys_64: -8.22964411e-08 + art_sys_65: -1.31486126e-06 + art_sys_66: -1.64162720e-06 + art_sys_67: 1.98844325e-06 + art_sys_68: -1.19840938e-05 + art_sys_69: -7.97949859e-05 + art_sys_70: 4.71002667e-05 + art_sys_71: -1.20878237e-05 + art_sys_72: 5.43849868e-04 + art_sys_73: -2.61461457e-04 + art_sys_74: -8.33617174e-22 + art_sys_75: 1.36089260e-03 + art_sys_76: 1.53714717e-14 + art_sys_77: 8.75110611e-15 + art_sys_78: 7.79413718e-15 + art_sys_79: -1.60862686e-03 + art_sys_80: -3.03796197e-15 + art_sys_81: 3.82796475e-03 + art_sys_82: 9.36074592e-16 + art_sys_83: 1.50419083e-15 + art_sys_84: -1.05535213e-15 + art_sys_85: 9.80758411e-17 + art_sys_86: 1.38825349e-16 + art_sys_87: -6.64913177e-03 art_sys_88: 3.51227705e-03 - art_sys_89: 2.70987297e-03 - art_sys_90: -1.07337616e-19 - art_sys_91: 2.11240159e-14 - art_sys_92: -3.32368572e-17 - art_sys_93: -1.14418531e-17 - art_sys_94: -1.03829284e-15 - art_sys_95: 4.10840684e-18 - art_sys_96: -8.97300885e-04 - art_sys_97: 1.00823348e-15 - art_sys_98: 6.35870295e-17 - art_sys_99: -1.40278305e-17 - art_sys_100: -1.97365685e-16 - art_sys_101: 5.80764914e-15 - art_sys_102: 3.09643753e-16 - art_sys_103: -3.91766340e-15 - art_sys_104: -7.12988697e-18 - art_sys_105: -1.10271500e-17 - art_sys_106: -2.94447945e-15 - art_sys_107: -1.97316209e-05 - art_sys_108: 1.32942967e-05 - art_sys_109: -6.98657150e-06 - art_sys_110: 4.21041070e-13 - art_sys_111: -9.04678275e-16 - art_sys_112: -4.93146843e-14 - art_sys_113: 3.37852905e-06 - art_sys_114: -9.97812155e-16 - art_sys_115: 4.22745083e-15 - art_sys_116: 1.54335979e-13 - art_sys_117: 4.43890207e-17 - art_sys_118: 6.34802428e-13 - art_sys_119: -2.13181607e-16 - art_sys_120: 1.91674080e-14 - art_sys_121: 8.30733346e-12 - art_sys_122: 3.13194795e-15 - art_sys_123: -3.87483844e-15 - art_sys_124: -2.10669802e-12 - art_sys_125: 1.70942743e-13 - art_sys_126: -9.93809200e-12 - art_sys_127: -3.54141308e-14 - art_sys_128: 1.49185866e-12 - art_sys_129: 1.20596423e-14 - art_sys_130: -2.43943653e-12 - art_sys_131: -1.42598270e-12 - art_sys_132: 1.32536540e-13 - art_sys_133: -1.28788022e-12 - art_sys_134: -2.12195370e-09 - art_sys_135: 1.04771996e-13 - art_sys_136: 1.50783065e-12 - art_sys_137: -6.99535354e-10 - art_sys_138: -4.63089696e-17 - art_sys_139: 3.47498327e-14 - art_sys_140: -2.74038686e-12 - art_sys_141: 4.16294814e-14 - art_sys_142: -3.38607489e-12 - art_sys_143: 2.15060268e-10 - art_sys_144: -6.02937428e-11 - art_sys_145: -1.66892814e-11 - art_sys_146: -0.0 - art_sys_147: -2.67837751e-12 - art_sys_148: 8.02825624e-13 - art_sys_149: 8.02825624e-13 - art_sys_150: -2.12158890e-13 - art_sys_151: -2.12158890e-13 - art_sys_152: 1.16217347e-13 - art_sys_153: -6.21499531e-13 - art_sys_154: 2.11703494e-13 - art_sys_155: -8.17473019e-25 - art_sys_156: -7.77032691e-29 - art_sys_157: -1.99373853e-27 - art_sys_158: -0.0 - art_sys_159: 1.79732969e-06 - art_sys_160: -8.62373318e-07 - art_sys_161: 3.72734183e-07 - art_sys_162: 1.46510699e-07 - art_sys_163: -5.69560519e-08 - art_sys_164: 1.91776971e-08 - art_sys_165: -6.46770468e-09 - art_sys_166: 1.78057203e-19 - art_sys_167: -7.38072003e-20 - art_sys_168: -1.53959091e-19 - art_sys_169: 3.82355795e-20 - art_sys_170: -1.63629751e-20 - art_sys_171: 1.73481362e-20 - art_sys_172: 4.85991622e-21 - art_sys_173: -1.64637409e-21 - art_sys_174: -1.32926509e-21 - art_sys_175: 5.08922010e-24 - art_sys_176: -4.21717004e-23 - art_sys_177: 2.66721752e-23 - art_sys_178: 4.34949481e-23 - art_sys_179: -1.57040699e-24 - art_sys_180: 2.35119594e-23 - art_sys_181: 1.48711947e-24 - art_sys_182: 5.86970232e-24 - art_sys_183: -3.17667996e-25 - art_sys_184: 4.48810171e-25 - art_sys_185: -1.02368876e-25 + art_sys_89: -2.44743992e-17 + art_sys_90: 2.70987296e-03 + art_sys_91: -3.05547008e-16 + art_sys_92: -3.63889453e-18 + art_sys_93: -7.97073503e-18 + art_sys_94: 8.97300865e-04 + art_sys_95: -2.11915094e-15 + art_sys_96: -1.23121766e-17 + art_sys_97: 2.33216808e-17 + art_sys_98: 5.04970634e-14 + art_sys_99: 2.22311798e-15 + art_sys_100: 9.10685828e-13 + art_sys_101: 2.82334616e-14 + art_sys_102: -4.74538003e-15 + art_sys_103: 1.71457052e-13 + art_sys_104: -1.07956174e-14 + art_sys_105: 1.97314266e-05 + art_sys_106: -7.16212992e-15 + art_sys_107: -2.58589225e-15 + art_sys_108: 1.32943460e-05 + art_sys_109: 6.98656102e-06 + art_sys_110: -1.83300581e-13 + art_sys_111: -3.24673604e-14 + art_sys_112: -2.20271149e-14 + art_sys_113: 2.66484230e-14 + art_sys_114: -3.37853372e-06 + art_sys_115: 7.25183130e-15 + art_sys_116: 1.68704429e-15 + art_sys_117: -1.79732725e-06 + art_sys_118: -7.99583581e-15 + art_sys_119: 2.39748571e-13 + art_sys_120: 7.99505250e-16 + art_sys_121: -8.62352377e-07 + art_sys_122: 1.00784295e-13 + art_sys_123: -1.06717135e-15 + art_sys_124: -2.10069209e-15 + art_sys_125: -3.72678528e-07 + art_sys_126: -4.48610026e-14 + art_sys_127: 8.84708979e-14 + art_sys_128: 6.31818207e-15 + art_sys_129: 1.46514152e-07 + art_sys_130: 1.03740231e-12 + art_sys_131: -5.69617649e-08 + art_sys_132: -3.41523266e-13 + art_sys_133: 3.67081427e-12 + art_sys_134: -4.40885034e-16 + art_sys_135: 9.34593819e-15 + art_sys_136: -1.91536937e-08 + art_sys_137: 4.63485320e-12 + art_sys_138: 1.26160332e-15 + art_sys_139: -1.05084864e-13 + art_sys_140: 6.47002125e-09 + art_sys_141: -1.09010485e-12 + art_sys_142: 1.74203411e-15 + art_sys_143: 1.07924202e-12 + art_sys_144: -2.11696379e-09 + art_sys_145: -7.89959391e-15 + art_sys_146: -1.10782793e-12 + art_sys_147: 6.99780420e-10 + art_sys_148: 2.07212544e-10 + art_sys_149: 1.27254334e-14 + art_sys_150: -7.74764673e-13 + art_sys_151: -6.80524767e-13 + art_sys_152: -7.30849042e-11 + art_sys_153: 1.02236951e-12 + art_sys_154: 1.31703441e-16 + art_sys_155: 1.51106042e-11 + art_sys_156: -0.0 + art_sys_157: -3.70900977e-14 + art_sys_158: 0.0 + art_sys_159: 1.78018329e-13 + art_sys_160: -2.89164947e-12 + art_sys_161: 2.05163410e-14 + art_sys_162: 2.05163410e-14 + art_sys_163: -4.74732540e-14 + art_sys_164: -4.74732540e-14 + art_sys_165: 9.14864582e-27 + art_sys_166: -4.55717632e-27 + art_sys_167: -0.0 + art_sys_168: -1.64914157e-20 + art_sys_169: -8.27267279e-21 + art_sys_170: 9.48602426e-22 + art_sys_171: 3.41237833e-21 + art_sys_172: -3.24553439e-22 + art_sys_173: 4.12802418e-23 + art_sys_174: 9.26843203e-23 + art_sys_175: 3.21374331e-23 + art_sys_176: -8.69379360e-23 + art_sys_177: 1.20336222e-23 + art_sys_178: 4.10089324e-24 + art_sys_179: -7.62542695e-25 + art_sys_180: 7.27460403e-26 + art_sys_181: 9.16249342e-24 + art_sys_182: 4.64626607e-24 + art_sys_183: -6.48548875e-26 + art_sys_184: 9.57785586e-26 + art_sys_185: 8.43137390e-26 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -35201,149 +35201,149 @@ bins: art_sys_40: 0.0 art_sys_41: 0.0 art_sys_42: 0.0 - art_sys_43: 1.21265559e-182 - art_sys_44: -7.42772815e-175 - art_sys_45: 4.91385408e-48 - art_sys_46: -2.98776576e-44 - art_sys_47: 7.40311248e-39 - art_sys_48: -8.60474993e-31 - art_sys_49: 1.09193388e-09 - art_sys_50: 1.50647605e-07 - art_sys_51: -9.03857021e-08 - art_sys_52: 9.50919604e-07 - art_sys_53: -1.79941395e-06 - art_sys_54: 2.97311694e-05 - art_sys_55: -1.09601474e-24 - art_sys_56: -2.74755937e-23 - art_sys_57: 1.57061735e-26 - art_sys_58: -3.22684082e-05 - art_sys_59: 2.14998368e-05 - art_sys_60: 3.88090078e-23 - art_sys_61: -2.15758301e-23 - art_sys_62: -3.40019708e-24 - art_sys_63: -6.23557084e-25 - art_sys_64: 1.89139754e-23 - art_sys_65: -1.35453796e-04 - art_sys_66: -3.49825553e-04 - art_sys_67: 3.32537998e-22 - art_sys_68: 1.47501233e-22 - art_sys_69: -1.56078115e-21 - art_sys_70: -6.18993424e-23 - art_sys_71: 1.99099000e-22 - art_sys_72: 2.38021227e-21 - art_sys_73: -5.83153161e-14 - art_sys_74: 2.44990120e-14 - art_sys_75: 9.60696414e-15 - art_sys_76: 1.95607850e-04 - art_sys_77: 1.06356351e-19 - art_sys_78: 3.05980909e-17 - art_sys_79: 1.35861070e-15 - art_sys_80: -1.42949133e-03 - art_sys_81: 9.83947146e-16 - art_sys_82: 9.91249331e-16 - art_sys_83: 1.81873912e-03 - art_sys_84: 3.09859928e-16 - art_sys_85: -8.58343054e-17 - art_sys_86: -1.28084866e-03 - art_sys_87: 1.70884102e-18 + art_sys_43: 0.0 + art_sys_44: -1.50492835e-214 + art_sys_45: -7.58985163e-208 + art_sys_46: -4.01784340e-158 + art_sys_47: -2.22454993e-163 + art_sys_48: 1.19924005e-155 + art_sys_49: -1.02323419e-146 + art_sys_50: 4.38718373e-139 + art_sys_51: -1.82030824e-128 + art_sys_52: -2.02244099e-145 + art_sys_53: -6.45917282e-142 + art_sys_54: -7.64259117e-137 + art_sys_55: -1.88451023e-133 + art_sys_56: -3.03907826e-130 + art_sys_57: -1.06689319e-51 + art_sys_58: -5.28664023e-38 + art_sys_59: 2.02867197e-49 + art_sys_60: -2.45278324e-46 + art_sys_61: -9.66919988e-32 + art_sys_62: 2.68404624e-46 + art_sys_63: 4.53373963e-36 + art_sys_64: 1.09193388e-09 + art_sys_65: -1.50647605e-07 + art_sys_66: -9.03857021e-08 + art_sys_67: 9.50919604e-07 + art_sys_68: 1.79941395e-06 + art_sys_69: -2.97311694e-05 + art_sys_70: 3.22684082e-05 + art_sys_71: -2.14998368e-05 + art_sys_72: 1.35453796e-04 + art_sys_73: -3.49825553e-04 + art_sys_74: -1.49082580e-22 + art_sys_75: -1.95607850e-04 + art_sys_76: -4.03806191e-14 + art_sys_77: 2.40541315e-14 + art_sys_78: 2.48786478e-15 + art_sys_79: -1.42949132e-03 + art_sys_80: 1.66716515e-15 + art_sys_81: -1.81873912e-03 + art_sys_82: -4.44052346e-16 + art_sys_83: -5.88837265e-16 + art_sys_84: -6.62892251e-16 + art_sys_85: -5.05732730e-17 + art_sys_86: -1.31406732e-16 + art_sys_87: -1.28084866e-03 art_sys_88: 5.87034349e-03 - art_sys_89: -1.05892414e-03 - art_sys_90: -3.63555960e-18 - art_sys_91: 1.89835271e-14 - art_sys_92: -3.00648420e-17 - art_sys_93: -9.61281439e-18 - art_sys_94: 4.93470266e-16 - art_sys_95: 4.20288240e-18 - art_sys_96: 1.15825126e-03 - art_sys_97: -4.79101546e-16 - art_sys_98: -1.51888635e-17 - art_sys_99: 1.22772501e-17 - art_sys_100: 7.62548005e-17 - art_sys_101: 5.16615401e-15 - art_sys_102: 2.75830263e-16 - art_sys_103: -7.55191405e-16 - art_sys_104: 3.00788615e-18 - art_sys_105: -1.04707569e-17 - art_sys_106: 1.40238477e-15 - art_sys_107: 6.40572765e-05 - art_sys_108: -3.50910512e-05 - art_sys_109: 2.00884728e-05 - art_sys_110: 7.98716967e-14 - art_sys_111: 4.31043693e-16 - art_sys_112: -8.67793157e-14 - art_sys_113: -9.85896795e-06 - art_sys_114: 4.91320781e-16 - art_sys_115: -4.60581063e-15 - art_sys_116: 4.45908992e-14 - art_sys_117: 1.33344196e-16 - art_sys_118: -7.88689874e-13 - art_sys_119: 2.07355401e-16 - art_sys_120: 3.07487639e-14 - art_sys_121: -2.67223441e-11 - art_sys_122: -2.43945361e-15 - art_sys_123: -2.68297140e-14 - art_sys_124: 6.24482832e-12 - art_sys_125: -2.15525435e-13 - art_sys_126: 2.91953844e-11 - art_sys_127: 2.25439324e-14 - art_sys_128: -4.42166267e-12 - art_sys_129: -2.15536424e-14 - art_sys_130: 7.29962774e-12 - art_sys_131: 4.62994612e-12 - art_sys_132: -2.86912497e-13 - art_sys_133: 3.85164669e-12 - art_sys_134: 6.43175739e-09 - art_sys_135: -2.04455711e-13 - art_sys_136: -4.49025632e-12 - art_sys_137: 2.12123799e-09 - art_sys_138: -4.11606933e-17 - art_sys_139: -1.27803587e-13 - art_sys_140: 8.27562459e-12 - art_sys_141: -1.25342704e-13 - art_sys_142: 1.02374794e-11 - art_sys_143: -6.52257911e-10 - art_sys_144: 1.82887431e-10 - art_sys_145: 5.06265389e-11 - art_sys_146: 0.0 - art_sys_147: 8.12207275e-12 - art_sys_148: -2.40575171e-12 - art_sys_149: -2.40575171e-12 - art_sys_150: 6.43693077e-13 - art_sys_151: 6.43693077e-13 - art_sys_152: -3.56349585e-13 - art_sys_153: 1.88635426e-12 - art_sys_154: -6.42198950e-13 - art_sys_155: 2.48623495e-24 - art_sys_156: 3.49972110e-28 - art_sys_157: 5.82599542e-27 - art_sys_158: 0.0 - art_sys_159: -5.29585627e-06 - art_sys_160: 2.57190577e-06 - art_sys_161: -1.11784490e-06 - art_sys_162: -4.41329674e-07 - art_sys_163: 1.72072926e-07 - art_sys_164: -5.80252511e-08 - art_sys_165: 1.95945425e-08 - art_sys_166: -5.39910073e-19 - art_sys_167: 2.26021224e-19 - art_sys_168: 4.66990385e-19 - art_sys_169: -1.15936478e-19 - art_sys_170: 4.92122593e-20 - art_sys_171: -5.26970310e-20 - art_sys_172: -1.44457699e-20 - art_sys_173: 4.89181878e-21 - art_sys_174: 3.98963825e-21 - art_sys_175: -1.54379336e-23 - art_sys_176: 1.42476095e-22 - art_sys_177: -7.73535003e-23 - art_sys_178: -1.31838741e-22 - art_sys_179: 4.98678476e-24 - art_sys_180: -7.12354054e-23 - art_sys_181: -4.46238283e-24 - art_sys_182: -1.81060466e-23 - art_sys_183: 9.56405402e-25 - art_sys_184: -1.36174534e-24 - art_sys_185: 3.10631330e-25 + art_sys_89: 1.38796872e-17 + art_sys_90: -1.05892414e-03 + art_sys_91: 6.53382734e-17 + art_sys_92: 4.92745087e-18 + art_sys_93: 1.12954542e-17 + art_sys_94: -1.15825124e-03 + art_sys_95: 2.68147349e-15 + art_sys_96: -7.95445894e-18 + art_sys_97: 2.49738873e-18 + art_sys_98: 1.01953985e-14 + art_sys_99: 4.06826761e-16 + art_sys_100: 1.75188351e-13 + art_sys_101: 5.42772482e-15 + art_sys_102: 5.86344902e-15 + art_sys_103: 3.30887599e-14 + art_sys_104: -2.62141708e-15 + art_sys_105: -6.40567707e-05 + art_sys_106: -1.34954080e-15 + art_sys_107: -6.94480414e-15 + art_sys_108: -3.50911896e-05 + art_sys_109: -2.00884440e-05 + art_sys_110: 5.24062761e-14 + art_sys_111: -6.20541159e-14 + art_sys_112: -5.17160141e-14 + art_sys_113: -4.13100422e-14 + art_sys_114: 9.85898164e-06 + art_sys_115: 1.19175973e-14 + art_sys_116: -2.19073274e-15 + art_sys_117: 5.29584882e-06 + art_sys_118: -1.21537165e-14 + art_sys_119: -3.09473283e-13 + art_sys_120: -3.40901106e-16 + art_sys_121: 2.57184367e-06 + art_sys_122: -3.92085130e-14 + art_sys_123: 3.22207781e-15 + art_sys_124: 8.13704880e-16 + art_sys_125: 1.11767816e-06 + art_sys_126: 5.79366844e-14 + art_sys_127: -2.32006905e-13 + art_sys_128: -8.15010966e-15 + art_sys_129: -4.41340036e-07 + art_sys_130: -3.13025301e-12 + art_sys_131: 1.72090285e-07 + art_sys_132: 4.40822295e-13 + art_sys_133: -1.08587133e-11 + art_sys_134: 1.21542275e-15 + art_sys_135: -1.29457166e-14 + art_sys_136: 5.79527395e-08 + art_sys_137: -1.38793485e-11 + art_sys_138: -5.08664021e-15 + art_sys_139: 3.12222346e-13 + art_sys_140: -1.96015612e-08 + art_sys_141: 2.86227955e-12 + art_sys_142: -5.14984889e-15 + art_sys_143: -3.25409744e-12 + art_sys_144: 6.41663325e-09 + art_sys_145: 2.08116348e-14 + art_sys_146: 3.34641269e-12 + art_sys_147: -2.12198112e-09 + art_sys_148: -6.28459155e-10 + art_sys_149: -3.52080010e-14 + art_sys_150: 2.34286287e-12 + art_sys_151: 2.06460364e-12 + art_sys_152: 2.21680400e-10 + art_sys_153: -3.09511010e-12 + art_sys_154: -9.11112333e-17 + art_sys_155: -4.58391254e-11 + art_sys_156: 0.0 + art_sys_157: 1.12328627e-13 + art_sys_158: -0.0 + art_sys_159: -5.38560576e-13 + art_sys_160: 8.77014256e-12 + art_sys_161: -6.19788303e-14 + art_sys_162: -6.19788303e-14 + art_sys_163: 1.43802193e-13 + art_sys_164: 1.43802193e-13 + art_sys_165: -2.77500534e-26 + art_sys_166: 1.38232391e-26 + art_sys_167: 0.0 + art_sys_168: 4.57821255e-20 + art_sys_169: 2.48745486e-20 + art_sys_170: -3.06758595e-21 + art_sys_171: -1.04724687e-20 + art_sys_172: 9.49266881e-22 + art_sys_173: -1.88817876e-22 + art_sys_174: -2.71843280e-22 + art_sys_175: -9.98060328e-23 + art_sys_176: 2.64238353e-22 + art_sys_177: -3.91414313e-23 + art_sys_178: -1.24582401e-23 + art_sys_179: 2.31360851e-24 + art_sys_180: -2.20625318e-25 + art_sys_181: -2.80139898e-23 + art_sys_182: -1.37862767e-23 + art_sys_183: 2.05311079e-25 + art_sys_184: -2.90539722e-25 + art_sys_185: -2.55802734e-25 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -35492,149 +35492,149 @@ bins: art_sys_40: 0.0 art_sys_41: 0.0 art_sys_42: 0.0 - art_sys_43: 2.53748825e-182 - art_sys_44: -1.55425605e-174 - art_sys_45: 1.02818042e-47 - art_sys_46: -6.25163505e-44 - art_sys_47: 1.54903567e-38 - art_sys_48: -1.80046766e-30 - art_sys_49: 2.28477486e-09 - art_sys_50: 1.94321300e-08 - art_sys_51: 1.93851388e-09 - art_sys_52: 2.28727294e-07 - art_sys_53: -9.28098509e-07 - art_sys_54: 6.89577051e-06 - art_sys_55: 4.02037766e-25 - art_sys_56: -8.31618965e-24 - art_sys_57: -2.28775941e-25 - art_sys_58: -8.54355185e-06 - art_sys_59: 5.57429402e-06 - art_sys_60: 1.00286476e-23 - art_sys_61: -5.45315942e-24 - art_sys_62: -9.79854285e-25 - art_sys_63: -1.01807117e-24 - art_sys_64: 4.84523724e-24 - art_sys_65: 5.28427859e-06 - art_sys_66: -6.23799733e-05 - art_sys_67: -3.66114395e-23 - art_sys_68: 7.07137380e-23 - art_sys_69: -2.26872147e-22 - art_sys_70: 9.46753576e-23 - art_sys_71: -2.58750817e-23 - art_sys_72: 1.81748360e-21 - art_sys_73: 3.98412962e-14 - art_sys_74: 1.93538413e-14 - art_sys_75: -7.68314675e-15 - art_sys_76: 1.71697195e-04 - art_sys_77: 9.36020179e-20 - art_sys_78: 2.68574220e-17 - art_sys_79: -2.50151565e-15 - art_sys_80: -7.58483236e-05 - art_sys_81: 1.26994633e-15 - art_sys_82: -7.31648446e-16 - art_sys_83: 8.04361074e-04 - art_sys_84: 2.32001672e-16 - art_sys_85: 7.30716351e-16 - art_sys_86: 9.53422967e-04 - art_sys_87: 7.43215356e-19 + art_sys_43: 0.0 + art_sys_44: -1.54513130e-214 + art_sys_45: -7.79261141e-208 + art_sys_46: -8.28945055e-158 + art_sys_47: -4.58960065e-163 + art_sys_48: 2.47422313e-155 + art_sys_49: -2.11109503e-146 + art_sys_50: 9.05145844e-139 + art_sys_51: -3.75558568e-128 + art_sys_52: -4.17261773e-145 + art_sys_53: -1.33263018e-141 + art_sys_54: -1.57678823e-136 + art_sys_55: -3.88804460e-133 + art_sys_56: -6.27010225e-130 + art_sys_57: -2.23237831e-51 + art_sys_58: -1.10618205e-37 + art_sys_59: 4.24481413e-49 + art_sys_60: -5.13222896e-46 + art_sys_61: -2.02319335e-31 + art_sys_62: 5.61612976e-46 + art_sys_63: 9.48644351e-36 + art_sys_64: 2.28477486e-09 + art_sys_65: -1.94321300e-08 + art_sys_66: 1.93851388e-09 + art_sys_67: 2.28727294e-07 + art_sys_68: 9.28098509e-07 + art_sys_69: -6.89577051e-06 + art_sys_70: 8.54355185e-06 + art_sys_71: -5.57429402e-06 + art_sys_72: -5.28427859e-06 + art_sys_73: -6.23799733e-05 + art_sys_74: 1.95541673e-23 + art_sys_75: -1.71697195e-04 + art_sys_76: 5.30733649e-14 + art_sys_77: -2.69904217e-16 + art_sys_78: -6.01188427e-15 + art_sys_79: -7.58483236e-05 + art_sys_80: 2.43761679e-15 + art_sys_81: -8.04361074e-04 + art_sys_82: -1.96563911e-16 + art_sys_83: -1.15835622e-15 + art_sys_84: 4.21569519e-17 + art_sys_85: 1.95412711e-17 + art_sys_86: 2.89683953e-16 + art_sys_87: 9.53422964e-04 art_sys_88: 2.44731943e-03 - art_sys_89: -4.02898285e-03 - art_sys_90: -6.28707706e-19 - art_sys_91: 1.03600019e-15 - art_sys_92: -1.79039331e-18 - art_sys_93: -3.86692930e-19 - art_sys_94: 2.18186836e-16 - art_sys_95: 3.20223548e-19 - art_sys_96: -1.07511273e-03 - art_sys_97: -2.11844358e-16 - art_sys_98: -1.05937545e-17 - art_sys_99: 3.98806983e-18 - art_sys_100: 3.97343081e-17 - art_sys_101: 2.74798296e-16 - art_sys_102: 1.47294567e-17 - art_sys_103: 5.61430967e-16 - art_sys_104: 1.43637485e-18 - art_sys_105: -6.51585588e-19 - art_sys_106: 6.19030414e-16 - art_sys_107: -4.45835368e-05 - art_sys_108: 5.63709859e-05 - art_sys_109: -3.27423844e-05 - art_sys_110: -6.10750247e-14 - art_sys_111: 1.90226819e-16 - art_sys_112: -3.89819551e-14 - art_sys_113: 1.87585811e-05 - art_sys_114: 2.12582415e-16 - art_sys_115: 2.18440054e-15 - art_sys_116: -1.36916137e-14 - art_sys_117: 2.61510914e-17 - art_sys_118: 7.27359611e-13 - art_sys_119: 1.74812058e-16 - art_sys_120: 1.05603476e-14 - art_sys_121: 1.95346227e-11 - art_sys_122: -2.23039041e-15 - art_sys_123: -1.37197162e-14 - art_sys_124: -1.34744110e-11 - art_sys_125: 1.96375625e-13 - art_sys_126: -5.89120823e-11 - art_sys_127: -3.61564527e-14 - art_sys_128: 9.13064960e-12 - art_sys_129: 1.51845135e-14 - art_sys_130: -1.59614338e-11 - art_sys_131: -3.22742481e-12 - art_sys_132: 2.18762683e-13 - art_sys_133: -8.71336929e-12 - art_sys_134: -1.52066827e-08 - art_sys_135: 1.48248770e-13 - art_sys_136: 9.67988977e-12 - art_sys_137: -5.02643616e-09 - art_sys_138: -2.18522577e-18 - art_sys_139: -1.66934431e-13 - art_sys_140: -1.92410054e-11 - art_sys_141: 3.55820879e-13 - art_sys_142: -2.38106819e-11 - art_sys_143: 1.54785772e-09 - art_sys_144: -4.34344932e-10 - art_sys_145: -1.20287160e-10 - art_sys_146: -0.0 - art_sys_147: -1.92605137e-11 - art_sys_148: 5.31114258e-12 - art_sys_149: 5.31114258e-12 - art_sys_150: -1.53234350e-12 - art_sys_151: -1.53234350e-12 - art_sys_152: 8.07225802e-13 - art_sys_153: -4.48986959e-12 - art_sys_154: 1.52595341e-12 - art_sys_155: -5.97351179e-24 - art_sys_156: -2.03640531e-27 - art_sys_157: -1.08674029e-26 - art_sys_158: -0.0 - art_sys_159: 1.08393820e-05 - art_sys_160: -5.52338951e-06 - art_sys_161: 2.48939667e-06 - art_sys_162: 1.00523339e-06 - art_sys_163: -3.98287880e-07 - art_sys_164: 1.35726413e-07 - art_sys_165: -4.61358777e-08 - art_sys_166: 1.27932183e-18 - art_sys_167: -5.36771682e-19 - art_sys_168: -1.10879494e-18 - art_sys_169: 2.75335068e-19 - art_sys_170: -1.16845996e-19 - art_sys_171: 1.25459952e-19 - art_sys_172: 3.02247053e-20 - art_sys_173: -1.13342176e-20 - art_sys_174: -9.38774892e-21 - art_sys_175: 3.66787088e-23 - art_sys_176: -3.73813273e-22 - art_sys_177: 1.50794698e-22 - art_sys_178: 3.14348958e-22 - art_sys_179: -1.25420011e-23 - art_sys_180: 1.65583356e-22 - art_sys_181: 1.04513367e-23 - art_sys_182: 4.25970673e-23 - art_sys_183: -2.28709183e-24 - art_sys_184: 3.24055862e-24 - art_sys_185: -7.39587731e-25 + art_sys_89: 2.51470161e-17 + art_sys_90: -4.02898284e-03 + art_sys_91: 5.59413120e-17 + art_sys_92: -8.09407016e-18 + art_sys_93: -1.19188951e-17 + art_sys_94: 1.07511271e-03 + art_sys_95: 2.05909777e-15 + art_sys_96: 1.13630838e-18 + art_sys_97: -3.00245299e-18 + art_sys_98: -6.97533109e-15 + art_sys_99: -3.30993054e-16 + art_sys_100: -1.31534392e-13 + art_sys_101: -4.04476216e-15 + art_sys_102: 4.45413389e-15 + art_sys_103: -2.44703442e-14 + art_sys_104: 7.52483141e-16 + art_sys_105: 4.45826890e-05 + art_sys_106: 1.06955799e-15 + art_sys_107: -4.98387911e-15 + art_sys_108: 5.63711731e-05 + art_sys_109: 3.27423425e-05 + art_sys_110: 2.51939046e-13 + art_sys_111: -3.08136854e-14 + art_sys_112: -3.07610573e-14 + art_sys_113: -7.23192633e-14 + art_sys_114: -1.87586077e-05 + art_sys_115: 4.84694737e-15 + art_sys_116: 2.05795360e-15 + art_sys_117: -1.08393644e-05 + art_sys_118: -6.98545342e-15 + art_sys_119: 2.87258814e-13 + art_sys_120: -1.10962397e-15 + art_sys_121: -5.52325892e-06 + art_sys_122: -1.49556949e-13 + art_sys_123: -3.20622700e-15 + art_sys_124: 3.13312251e-15 + art_sys_125: -2.48902733e-06 + art_sys_126: -5.37883750e-14 + art_sys_127: 3.78828927e-13 + art_sys_128: 7.55287382e-15 + art_sys_129: 1.00525653e-06 + art_sys_130: 6.37539667e-12 + art_sys_131: -3.98329674e-07 + art_sys_132: -4.09184837e-13 + art_sys_133: 2.26492873e-11 + art_sys_134: -2.00190102e-15 + art_sys_135: 1.16885364e-14 + art_sys_136: -1.35558657e-07 + art_sys_137: 3.06888843e-11 + art_sys_138: 3.69260193e-15 + art_sys_139: -7.33669521e-13 + art_sys_140: 4.61524166e-08 + art_sys_141: -4.67748962e-12 + art_sys_142: 6.94006689e-15 + art_sys_143: 7.44352871e-12 + art_sys_144: -1.51709360e-08 + art_sys_145: -3.45175413e-14 + art_sys_146: -7.73982613e-12 + art_sys_147: 5.02819756e-09 + art_sys_148: 1.49143336e-09 + art_sys_149: 6.76248108e-14 + art_sys_150: -5.45720350e-12 + art_sys_151: -4.90145537e-12 + art_sys_152: -5.26373561e-10 + art_sys_153: 7.25352279e-12 + art_sys_154: -2.38804968e-16 + art_sys_155: 1.08938866e-10 + art_sys_156: -0.0 + art_sys_157: -2.62087283e-13 + art_sys_158: 0.0 + art_sys_159: 1.25794532e-12 + art_sys_160: -2.08096023e-11 + art_sys_161: 1.44035132e-13 + art_sys_162: 1.44035132e-13 + art_sys_163: -3.37926901e-13 + art_sys_164: -3.37926901e-13 + art_sys_165: 6.58916515e-26 + art_sys_166: -3.28273149e-26 + art_sys_167: -0.0 + art_sys_168: -1.01898995e-19 + art_sys_169: -5.71014462e-20 + art_sys_170: 6.81015995e-21 + art_sys_171: 1.96355696e-20 + art_sys_172: -2.83239738e-21 + art_sys_173: 9.48044734e-23 + art_sys_174: 7.13046126e-22 + art_sys_175: 2.37000324e-22 + art_sys_176: -6.26754922e-22 + art_sys_177: 8.07944085e-23 + art_sys_178: 2.92369822e-23 + art_sys_179: -5.50492709e-24 + art_sys_180: 5.23447742e-25 + art_sys_181: 7.27408533e-23 + art_sys_182: 3.20214557e-23 + art_sys_183: -4.85455835e-25 + art_sys_184: 6.90628869e-25 + art_sys_185: 6.08495147e-25 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -35783,149 +35783,149 @@ bins: art_sys_40: 0.0 art_sys_41: 0.0 art_sys_42: 0.0 - art_sys_43: 3.26710311e-183 - art_sys_44: -2.00115795e-175 - art_sys_45: 1.32381595e-48 - art_sys_46: -8.04918483e-45 - art_sys_47: 1.99443415e-39 - art_sys_48: -2.31816107e-31 - art_sys_49: 2.94172244e-10 - art_sys_50: 1.48965673e-09 - art_sys_51: 6.46668990e-10 - art_sys_52: 2.19833606e-08 - art_sys_53: -1.08570479e-07 - art_sys_54: 6.57746631e-07 - art_sys_55: 6.41084741e-26 - art_sys_56: -7.83592800e-25 - art_sys_57: -3.09153304e-26 - art_sys_58: -7.99237837e-07 - art_sys_59: 2.93598887e-07 - art_sys_60: 6.47829625e-25 - art_sys_61: -3.91344542e-25 - art_sys_62: -3.35466518e-25 - art_sys_63: 2.58634925e-25 - art_sys_64: 1.14513941e-25 - art_sys_65: 6.89006760e-06 - art_sys_66: 7.04723181e-06 - art_sys_67: -1.93939066e-23 - art_sys_68: 2.51089706e-24 - art_sys_69: 3.88352832e-23 - art_sys_70: 1.62387125e-23 - art_sys_71: -1.24435759e-23 - art_sys_72: 1.04473487e-22 - art_sys_73: -8.42175395e-14 - art_sys_74: 2.33705794e-14 - art_sys_75: 2.28126665e-14 - art_sys_76: 1.11328733e-05 - art_sys_77: 6.08088938e-21 - art_sys_78: 1.74142370e-18 - art_sys_79: 1.68276126e-15 - art_sys_80: 8.02009625e-05 - art_sys_81: 4.82502238e-16 - art_sys_82: -6.73222733e-16 - art_sys_83: -2.91268251e-05 - art_sys_84: 7.09517055e-16 - art_sys_85: 1.48615495e-16 - art_sys_86: 1.94380679e-04 - art_sys_87: -2.89867019e-20 + art_sys_43: 0.0 + art_sys_44: -1.93405307e-215 + art_sys_45: -9.75407357e-209 + art_sys_46: -1.06689161e-158 + art_sys_47: -5.90703377e-164 + art_sys_48: 3.18444255e-156 + art_sys_49: -2.71707946e-147 + art_sys_50: 1.16496564e-139 + art_sys_51: -4.83361694e-129 + art_sys_52: -5.37035695e-146 + art_sys_53: -1.71515826e-142 + art_sys_54: -2.02940125e-137 + art_sys_55: -5.00409786e-134 + art_sys_56: -8.06991906e-131 + art_sys_57: -2.87426013e-52 + art_sys_58: -1.42424559e-38 + art_sys_59: 5.46533711e-50 + art_sys_60: -6.60791270e-47 + art_sys_61: -2.60492764e-32 + art_sys_62: 7.23096602e-47 + art_sys_63: 1.22141065e-36 + art_sys_64: 2.94172244e-10 + art_sys_65: -1.48965673e-09 + art_sys_66: 6.46668990e-10 + art_sys_67: 2.19833606e-08 + art_sys_68: 1.08570479e-07 + art_sys_69: -6.57746631e-07 + art_sys_70: 7.99237837e-07 + art_sys_71: -2.93598887e-07 + art_sys_72: -6.89006760e-06 + art_sys_73: 7.04723181e-06 + art_sys_74: 9.82709938e-24 + art_sys_75: -1.11328733e-05 + art_sys_76: -1.10399022e-13 + art_sys_77: 2.79167479e-14 + art_sys_78: 1.26676950e-14 + art_sys_79: 8.02009625e-05 + art_sys_80: 4.57325043e-15 + art_sys_81: 2.91268252e-05 + art_sys_82: 7.09330152e-18 + art_sys_83: -1.26986963e-15 + art_sys_84: 4.23006796e-16 + art_sys_85: -4.01081321e-17 + art_sys_86: -2.52537616e-17 + art_sys_87: 1.94380679e-04 art_sys_88: -1.86357750e-04 - art_sys_89: -4.45125467e-04 - art_sys_90: 1.59952609e-19 - art_sys_91: -1.06209985e-15 - art_sys_92: 1.66483422e-18 - art_sys_93: 5.53255976e-19 - art_sys_94: -7.90989316e-18 - art_sys_95: -2.23307617e-19 - art_sys_96: -4.38054949e-04 - art_sys_97: 7.67688292e-18 - art_sys_98: -1.64567403e-19 - art_sys_99: -3.48541737e-19 - art_sys_100: -5.31657600e-19 - art_sys_101: -2.89781033e-16 - art_sys_102: -1.54653549e-17 - art_sys_103: 1.14558814e-16 - art_sys_104: -3.10866521e-20 - art_sys_105: 5.89911130e-19 - art_sys_106: -2.25595369e-17 - art_sys_107: 3.99962072e-04 - art_sys_108: -1.80195139e-04 - art_sys_109: 1.41396640e-04 - art_sys_110: -1.22888383e-14 - art_sys_111: -6.94492072e-18 - art_sys_112: 2.38059037e-15 - art_sys_113: -7.56384966e-05 - art_sys_114: -8.43569243e-18 - art_sys_115: 1.38042871e-15 - art_sys_116: -4.75195152e-15 - art_sys_117: -6.52211497e-18 - art_sys_118: 5.65475199e-13 - art_sys_119: 2.37296410e-18 - art_sys_120: -1.29041356e-15 - art_sys_121: -1.65574075e-10 - art_sys_122: -4.97812127e-17 - art_sys_123: 8.26927080e-16 - art_sys_124: 5.47556367e-11 - art_sys_125: 1.30288843e-13 - art_sys_126: 2.43490318e-10 - art_sys_127: -2.61179205e-14 - art_sys_128: -3.80430295e-11 - art_sys_129: 7.44952702e-14 - art_sys_130: 6.77506241e-11 - art_sys_131: 2.86638356e-11 - art_sys_132: -1.08787739e-12 - art_sys_133: 3.67505586e-11 - art_sys_134: 6.69064495e-08 - art_sys_135: -6.87905331e-13 - art_sys_136: -4.05972008e-11 - art_sys_137: 2.21491976e-08 - art_sys_138: 2.30889482e-18 - art_sys_139: -3.29573595e-13 - art_sys_140: 8.38382509e-11 - art_sys_141: -1.24034931e-12 - art_sys_142: 1.03501091e-10 - art_sys_143: -6.82641479e-09 - art_sys_144: 1.91661822e-09 - art_sys_145: 5.30938236e-10 - art_sys_146: 0.0 - art_sys_147: 8.49654978e-11 - art_sys_148: -2.30580709e-11 - art_sys_149: -2.30580709e-11 - art_sys_150: 6.69773424e-12 - art_sys_151: 6.69773424e-12 - art_sys_152: -3.56396708e-12 - art_sys_153: 1.98285557e-11 - art_sys_154: -6.73568048e-12 - art_sys_155: 2.63780328e-23 - art_sys_156: 1.08013608e-26 - art_sys_157: 4.67612662e-26 - art_sys_158: 0.0 - art_sys_159: -4.49251007e-05 - art_sys_160: 2.32673890e-05 - art_sys_161: -1.06196755e-05 - art_sys_162: -4.33812459e-06 - art_sys_163: 1.73178979e-06 - art_sys_164: -5.93515458e-07 - art_sys_165: 2.02529980e-07 - art_sys_166: -5.63739525e-18 - art_sys_167: 2.31831727e-18 - art_sys_168: 4.89168002e-18 - art_sys_169: -1.21415934e-18 - art_sys_170: 5.08042573e-19 - art_sys_171: -5.53308547e-19 - art_sys_172: -1.35459915e-19 - art_sys_173: 4.95173785e-20 - art_sys_174: 4.12764661e-20 - art_sys_175: -1.61893236e-22 - art_sys_176: 1.75974754e-21 - art_sys_177: -6.25396905e-22 - art_sys_178: -1.38471194e-21 - art_sys_179: 5.62851109e-23 - art_sys_180: -6.69886605e-22 - art_sys_181: -4.72141001e-23 - art_sys_182: -1.82309009e-22 - art_sys_183: 1.01267809e-23 - art_sys_184: -1.43185360e-23 - art_sys_185: 3.26894875e-24 + art_sys_89: -9.13197647e-18 + art_sys_90: -4.45125466e-04 + art_sys_91: 2.04208367e-18 + art_sys_92: 6.81768636e-18 + art_sys_93: 9.59855347e-18 + art_sys_94: 4.38054940e-04 + art_sys_95: 1.21181295e-17 + art_sys_96: 6.59947661e-19 + art_sys_97: -5.16623938e-19 + art_sys_98: -1.48384204e-15 + art_sys_99: -6.46575731e-17 + art_sys_100: -2.67352725e-14 + art_sys_101: -8.23786253e-16 + art_sys_102: 1.84305597e-17 + art_sys_103: -5.00182477e-15 + art_sys_104: 2.54746906e-16 + art_sys_105: -3.99959516e-04 + art_sys_106: 2.10151172e-16 + art_sys_107: -8.21850860e-17 + art_sys_108: -1.80195916e-04 + art_sys_109: -1.41396469e-04 + art_sys_110: 2.90272464e-14 + art_sys_111: 1.31355901e-15 + art_sys_112: 4.35581716e-16 + art_sys_113: -6.03933140e-15 + art_sys_114: 7.56386079e-05 + art_sys_115: -3.94014309e-16 + art_sys_116: 8.22435413e-16 + art_sys_117: 4.49250247e-05 + art_sys_118: -2.98898063e-17 + art_sys_119: 1.17024731e-13 + art_sys_120: -1.69763072e-16 + art_sys_121: 2.32668427e-05 + art_sys_122: -1.65114509e-14 + art_sys_123: 1.89625697e-14 + art_sys_124: 3.64143210e-16 + art_sys_125: 1.06181044e-05 + art_sys_126: -2.15628591e-14 + art_sys_127: -1.17959383e-12 + art_sys_128: 3.07411546e-15 + art_sys_129: -4.33822348e-06 + art_sys_130: -2.65321461e-11 + art_sys_131: 1.73197535e-06 + art_sys_132: -1.66934203e-13 + art_sys_133: -9.45626376e-11 + art_sys_134: 6.48840611e-15 + art_sys_135: -4.80409759e-15 + art_sys_136: 5.92786249e-07 + art_sys_137: -1.30590888e-10 + art_sys_138: -3.60571577e-14 + art_sys_139: 3.11074152e-12 + art_sys_140: -2.02602615e-07 + art_sys_141: 1.45736480e-11 + art_sys_142: -2.92138442e-14 + art_sys_143: -3.20208401e-11 + art_sys_144: 6.67491981e-08 + art_sys_145: 1.09247088e-13 + art_sys_146: 3.36368403e-11 + art_sys_147: -2.21569602e-08 + art_sys_148: -6.57769803e-09 + art_sys_149: -2.50883829e-13 + art_sys_150: 2.38114731e-11 + art_sys_151: 2.16103424e-11 + art_sys_152: 2.32241598e-09 + art_sys_153: -3.17691598e-11 + art_sys_154: -2.08121533e-17 + art_sys_155: -4.80916211e-10 + art_sys_156: -0.0 + art_sys_157: 1.14708691e-12 + art_sys_158: -0.0 + art_sys_159: -5.50228120e-12 + art_sys_160: 9.17761416e-11 + art_sys_161: -6.27527464e-13 + art_sys_162: -6.27527464e-13 + art_sys_163: 1.48170382e-12 + art_sys_164: 1.48170382e-12 + art_sys_165: -2.90724675e-25 + art_sys_166: 1.44851163e-25 + art_sys_167: 0.0 + art_sys_168: 4.74015470e-19 + art_sys_169: 2.48978562e-19 + art_sys_170: -3.11279406e-20 + art_sys_171: -8.82285156e-20 + art_sys_172: 1.31818408e-20 + art_sys_173: -8.65815300e-22 + art_sys_174: -3.21678593e-21 + art_sys_175: -1.01936053e-21 + art_sys_176: 2.76522610e-21 + art_sys_177: -3.32439314e-22 + art_sys_178: -1.27559386e-22 + art_sys_179: 2.43192194e-23 + art_sys_180: -2.30870038e-24 + art_sys_181: -3.21936791e-22 + art_sys_182: -1.35859044e-22 + art_sys_183: 2.11792189e-24 + art_sys_184: -3.04917466e-24 + art_sys_185: -2.68785464e-24 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -36074,149 +36074,149 @@ bins: art_sys_40: 0.0 art_sys_41: 0.0 art_sys_42: 0.0 - art_sys_43: 4.41223712e-184 - art_sys_44: -2.70257261e-176 - art_sys_45: 1.78781898e-49 - art_sys_46: -1.08704578e-45 - art_sys_47: 2.69349167e-40 - art_sys_48: -3.13068622e-32 - art_sys_49: 3.97280847e-11 - art_sys_50: 1.82872138e-10 - art_sys_51: 7.44974278e-11 - art_sys_52: 2.74757708e-09 - art_sys_53: -1.29677462e-08 - art_sys_54: 8.27378828e-08 - art_sys_55: 7.17621619e-27 - art_sys_56: -6.87305615e-26 - art_sys_57: -3.57224584e-27 - art_sys_58: -8.09328000e-08 - art_sys_59: -4.75944715e-08 - art_sys_60: -3.17696348e-26 - art_sys_61: -1.70267924e-27 - art_sys_62: -1.23033824e-25 - art_sys_63: 1.58885575e-25 - art_sys_64: -1.03838391e-25 - art_sys_65: 1.98541534e-06 - art_sys_66: 4.60540502e-06 - art_sys_67: -3.51811803e-24 - art_sys_68: -1.93168215e-24 - art_sys_69: 2.09623399e-23 - art_sys_70: 1.56112285e-24 - art_sys_71: -2.92844687e-24 - art_sys_72: -6.29186359e-23 - art_sys_73: -1.16899057e-13 - art_sys_74: 3.14193536e-15 - art_sys_75: 9.53385129e-15 - art_sys_76: -5.58268033e-06 - art_sys_77: -3.04029022e-21 - art_sys_78: -8.73268985e-19 - art_sys_79: -2.39109826e-15 - art_sys_80: 2.37495904e-05 - art_sys_81: -5.52187917e-16 - art_sys_82: -5.89296124e-16 - art_sys_83: -5.46848577e-05 - art_sys_84: -3.29038905e-16 - art_sys_85: 6.81562224e-17 - art_sys_86: -3.65957876e-05 - art_sys_87: -4.99720550e-20 + art_sys_43: 0.0 + art_sys_44: -2.60157323e-216 + art_sys_45: -1.31206000e-209 + art_sys_46: -1.44076880e-159 + art_sys_47: -7.97707081e-165 + art_sys_48: 4.30038572e-157 + art_sys_49: -3.66924181e-148 + art_sys_50: 1.57321149e-140 + art_sys_51: -6.52749012e-130 + art_sys_52: -7.25232313e-147 + art_sys_53: -2.31621140e-143 + art_sys_54: -2.74057642e-138 + art_sys_55: -6.75771369e-135 + art_sys_56: -1.08979089e-131 + art_sys_57: -3.88170033e-53 + art_sys_58: -1.92344962e-39 + art_sys_59: 7.38096062e-51 + art_sys_60: -8.92401377e-48 + art_sys_61: -3.51796568e-33 + art_sys_62: 9.76529689e-48 + art_sys_63: 1.64952019e-37 + art_sys_64: 3.97280847e-11 + art_sys_65: -1.82872138e-10 + art_sys_66: 7.44974278e-11 + art_sys_67: 2.74757708e-09 + art_sys_68: 1.29677462e-08 + art_sys_69: -8.27378828e-08 + art_sys_70: 8.09328000e-08 + art_sys_71: 4.75944715e-08 + art_sys_72: -1.98541534e-06 + art_sys_73: 4.60540502e-06 + art_sys_74: 2.32733468e-24 + art_sys_75: 5.58268033e-06 + art_sys_76: 4.27742433e-14 + art_sys_77: -1.92997795e-14 + art_sys_78: 3.17705730e-15 + art_sys_79: 2.37495903e-05 + art_sys_80: 6.30562560e-15 + art_sys_81: 5.46848577e-05 + art_sys_82: 1.33575877e-17 + art_sys_83: 1.24785201e-15 + art_sys_84: 7.88040113e-16 + art_sys_85: 4.83626895e-17 + art_sys_86: -7.48610897e-17 + art_sys_87: -3.65957874e-05 art_sys_88: -2.15961586e-04 - art_sys_89: 2.78780939e-04 - art_sys_90: 7.38721271e-20 - art_sys_91: -3.16386765e-16 - art_sys_92: 5.10365640e-19 - art_sys_93: 1.53668354e-19 - art_sys_94: -1.48347523e-17 - art_sys_95: -7.43020472e-20 - art_sys_96: 5.50229471e-05 - art_sys_97: 1.44025470e-17 - art_sys_98: 5.93105538e-19 - art_sys_99: -3.18981883e-19 - art_sys_100: -2.59021237e-18 - art_sys_101: -8.58533976e-17 - art_sys_102: -4.58596720e-18 - art_sys_103: -2.15077068e-17 - art_sys_104: -8.23602009e-20 - art_sys_105: 1.59794745e-19 - art_sys_106: -4.20886844e-17 - art_sys_107: 4.57131436e-04 - art_sys_108: 1.07420329e-04 - art_sys_109: -6.30984391e-05 - art_sys_110: 2.37330627e-15 - art_sys_111: -1.29419594e-17 - art_sys_112: 3.37995881e-15 - art_sys_113: 7.96890605e-05 - art_sys_114: -1.45725854e-17 - art_sys_115: -8.23519534e-17 - art_sys_116: 1.76551546e-16 - art_sys_117: -2.78303644e-18 - art_sys_118: 2.37050948e-13 - art_sys_119: -1.26357739e-17 - art_sys_120: -9.74587951e-16 - art_sys_121: -1.80190644e-10 - art_sys_122: 1.58921273e-16 - art_sys_123: 1.24812005e-15 - art_sys_124: -8.03248671e-11 - art_sys_125: 4.14673141e-14 - art_sys_126: -2.97800790e-10 - art_sys_127: -1.22906288e-14 - art_sys_128: 5.04150600e-11 - art_sys_129: 7.27557456e-14 - art_sys_130: -1.06554928e-10 - art_sys_131: 3.29469142e-11 - art_sys_132: -1.31537291e-12 - art_sys_133: -6.17398309e-11 - art_sys_134: -1.28988455e-07 - art_sys_135: -1.10886160e-12 - art_sys_136: 6.08563890e-11 - art_sys_137: -4.29770428e-08 - art_sys_138: 6.83545449e-19 - art_sys_139: -4.25124125e-12 - art_sys_140: -1.54594197e-10 - art_sys_141: 2.62941282e-12 - art_sys_142: -1.90118187e-10 - art_sys_143: 1.33006929e-08 - art_sys_144: -3.74290334e-09 - art_sys_145: -1.03821675e-09 - art_sys_146: -0.0 - art_sys_147: -1.65468648e-10 - art_sys_148: 3.83559595e-11 - art_sys_149: 3.83559595e-11 - art_sys_150: -1.28751943e-11 - art_sys_151: -1.28751943e-11 - art_sys_152: 6.21628760e-12 - art_sys_153: -3.88988420e-11 - art_sys_154: 1.31741864e-11 - art_sys_155: -5.24847668e-23 - art_sys_156: -4.07380395e-26 - art_sys_157: -4.85077706e-26 - art_sys_158: -0.0 - art_sys_159: 5.76907347e-05 - art_sys_160: -3.47517209e-05 - art_sys_161: 1.74447295e-05 - art_sys_162: 7.57058999e-06 - art_sys_163: -3.15441861e-06 - art_sys_164: 1.11109165e-06 - art_sys_165: -3.86152534e-07 - art_sys_166: 1.09407801e-17 - art_sys_167: -4.62821912e-18 - art_sys_168: -9.54508032e-18 - art_sys_169: 2.36757021e-18 - art_sys_170: -1.00732020e-18 - art_sys_171: 1.08209497e-18 - art_sys_172: 2.23977015e-19 - art_sys_173: -9.21554349e-20 - art_sys_174: -7.95950055e-20 - art_sys_175: 3.16538048e-22 - art_sys_176: -3.93773241e-21 - art_sys_177: 9.00024244e-22 - art_sys_178: 2.72629130e-21 - art_sys_179: -1.45551077e-22 - art_sys_180: 8.56465737e-22 - art_sys_181: 9.88755206e-23 - art_sys_182: 3.40146540e-22 - art_sys_183: -2.01801780e-23 - art_sys_184: 2.81281682e-23 - art_sys_185: -6.43104061e-24 + art_sys_89: 3.50305884e-17 + art_sys_90: 2.78780939e-04 + art_sys_91: -3.29506425e-18 + art_sys_92: -3.93991976e-17 + art_sys_93: -8.92183268e-18 + art_sys_94: -5.50229459e-05 + art_sys_95: -1.51620415e-16 + art_sys_96: 1.05174807e-20 + art_sys_97: 1.16537427e-19 + art_sys_98: 2.56752239e-16 + art_sys_99: 1.32089167e-17 + art_sys_100: 5.08023328e-15 + art_sys_101: 1.55197132e-16 + art_sys_102: -3.27799154e-16 + art_sys_103: 9.35282312e-16 + art_sys_104: -6.97522760e-19 + art_sys_105: -4.57133379e-04 + art_sys_106: -4.28206452e-17 + art_sys_107: 3.94327587e-16 + art_sys_108: 1.07420356e-04 + art_sys_109: 6.30984399e-05 + art_sys_110: -1.73099118e-14 + art_sys_111: 2.61349272e-15 + art_sys_112: 2.51837826e-15 + art_sys_113: 5.20310375e-15 + art_sys_114: -7.96891840e-05 + art_sys_115: -4.30277819e-16 + art_sys_116: -1.16743550e-16 + art_sys_117: -5.76905946e-05 + art_sys_118: 5.69974953e-16 + art_sys_119: -1.47217255e-14 + art_sys_120: 1.46487670e-17 + art_sys_121: -3.47509541e-05 + art_sys_122: 1.03632817e-14 + art_sys_123: 1.22017197e-14 + art_sys_124: -1.98657570e-16 + art_sys_125: -1.74421880e-05 + art_sys_126: 2.86741618e-15 + art_sys_127: 7.75547665e-13 + art_sys_128: -3.93144143e-16 + art_sys_129: 7.57075386e-06 + art_sys_130: 3.27513435e-11 + art_sys_131: -3.15479077e-06 + art_sys_132: 2.07062778e-14 + art_sys_133: 1.29327419e-10 + art_sys_134: -4.14861373e-15 + art_sys_135: -1.08633226e-14 + art_sys_136: -1.10976527e-06 + art_sys_137: 2.10858179e-10 + art_sys_138: -3.77573643e-14 + art_sys_139: -6.13807657e-12 + art_sys_140: 3.86291326e-07 + art_sys_141: -9.55299403e-12 + art_sys_142: -8.82527391e-16 + art_sys_143: 5.59681477e-11 + art_sys_144: -1.28685548e-07 + art_sys_145: -8.13035614e-14 + art_sys_146: -6.11392037e-11 + art_sys_147: 4.29921163e-08 + art_sys_148: 1.28173351e-08 + art_sys_149: 3.46326856e-13 + art_sys_150: -4.41388514e-11 + art_sys_151: -4.20462465e-11 + art_sys_152: -4.53285497e-09 + art_sys_153: 5.98665181e-11 + art_sys_154: 2.00392725e-17 + art_sys_155: 9.41046505e-10 + art_sys_156: 0.0 + art_sys_157: -2.13143308e-12 + art_sys_158: 0.0 + art_sys_159: 1.03001613e-11 + art_sys_160: -1.78764316e-10 + art_sys_161: 1.15840465e-12 + art_sys_162: 1.15840465e-12 + art_sys_163: -2.80680630e-12 + art_sys_164: -2.80680630e-12 + art_sys_165: 5.67443749e-25 + art_sys_166: -2.82834046e-25 + art_sys_167: -0.0 + art_sys_168: -8.84477714e-19 + art_sys_169: -4.41729253e-19 + art_sys_170: 6.28471062e-20 + art_sys_171: 1.22733686e-19 + art_sys_172: -3.02348243e-20 + art_sys_173: -6.73280580e-22 + art_sys_174: 7.29531293e-21 + art_sys_175: 1.92524204e-21 + art_sys_176: -5.38346542e-21 + art_sys_177: 4.78028522e-22 + art_sys_178: 2.39861473e-22 + art_sys_179: -4.77478593e-23 + art_sys_180: 4.49774015e-24 + art_sys_181: 7.01657259e-22 + art_sys_182: 2.38663211e-22 + art_sys_183: -4.02332817e-24 + art_sys_184: 5.96819374e-24 + art_sys_185: 5.27315016e-24 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -36365,149 +36365,149 @@ bins: art_sys_40: 0.0 art_sys_41: 0.0 art_sys_42: 0.0 - art_sys_43: 4.14802138e-185 - art_sys_44: -2.54073584e-177 - art_sys_45: 1.68076018e-50 - art_sys_46: -1.02195092e-46 - art_sys_47: 2.53219905e-41 - art_sys_48: -2.94321337e-33 - art_sys_49: 3.73490735e-12 - art_sys_50: 1.87768726e-11 - art_sys_51: 7.09997194e-12 - art_sys_52: 2.86618160e-10 - art_sys_53: -8.70284781e-10 - art_sys_54: 9.09601305e-09 - art_sys_55: 7.30816447e-29 - art_sys_56: -9.59597205e-28 - art_sys_57: -1.39946979e-28 - art_sys_58: -4.74935554e-09 - art_sys_59: -1.98117235e-08 - art_sys_60: -2.32272948e-26 - art_sys_61: 8.10764635e-27 - art_sys_62: -2.65773707e-26 - art_sys_63: 3.92652725e-26 - art_sys_64: -3.12607346e-26 - art_sys_65: 2.97435975e-07 - art_sys_66: 9.72435787e-07 - art_sys_67: -5.30738853e-25 - art_sys_68: -6.07739747e-25 - art_sys_69: 4.20901137e-24 - art_sys_70: -1.08068729e-25 - art_sys_71: -3.65776670e-25 - art_sys_72: -2.41205349e-23 - art_sys_73: 1.23490787e-14 - art_sys_74: 4.56962644e-15 - art_sys_75: -2.39776080e-14 - art_sys_76: -2.23147652e-06 - art_sys_77: -1.21615129e-21 - art_sys_78: -3.49056029e-19 - art_sys_79: 9.80628835e-17 - art_sys_80: -2.14553170e-07 - art_sys_81: 8.08310017e-16 - art_sys_82: 2.55520311e-16 - art_sys_83: -1.03667596e-05 - art_sys_84: -2.41030479e-16 - art_sys_85: 8.38785826e-17 - art_sys_86: -2.53627059e-05 - art_sys_87: -9.34848430e-21 + art_sys_43: 0.0 + art_sys_44: -2.45457986e-217 + art_sys_45: -1.23792635e-210 + art_sys_46: -1.35455517e-160 + art_sys_47: -7.49973382e-166 + art_sys_48: 4.04305653e-158 + art_sys_49: -3.44967940e-149 + art_sys_50: 1.47907267e-141 + art_sys_51: -6.13689406e-131 + art_sys_52: -6.81835409e-148 + art_sys_53: -2.17761248e-144 + art_sys_54: -2.57658409e-139 + art_sys_55: -6.35334136e-136 + art_sys_56: -1.02457929e-132 + art_sys_57: -3.64925499e-54 + art_sys_58: -1.80826894e-40 + art_sys_59: 6.93897136e-52 + art_sys_60: -8.38962286e-49 + art_sys_61: -3.30730163e-34 + art_sys_62: 9.18054836e-49 + art_sys_63: 1.55074304e-38 + art_sys_64: 3.73490735e-12 + art_sys_65: -1.87768726e-11 + art_sys_66: 7.09997194e-12 + art_sys_67: 2.86618160e-10 + art_sys_68: 8.70284781e-10 + art_sys_69: -9.09601305e-09 + art_sys_70: 4.74935554e-09 + art_sys_71: 1.98117235e-08 + art_sys_72: -2.97435975e-07 + art_sys_73: 9.72435787e-07 + art_sys_74: 2.91350514e-25 + art_sys_75: 2.23147652e-06 + art_sys_76: 6.06537558e-15 + art_sys_77: -1.87319760e-14 + art_sys_78: 8.00328141e-16 + art_sys_79: -2.14553170e-07 + art_sys_80: -2.28225853e-15 + art_sys_81: 1.03667596e-05 + art_sys_82: 2.53372326e-18 + art_sys_83: -4.74162780e-16 + art_sys_84: -8.32685976e-16 + art_sys_85: 6.13380551e-16 + art_sys_86: -4.48344528e-16 + art_sys_87: -2.53627059e-05 art_sys_88: -1.26647670e-05 - art_sys_89: 8.41642395e-05 - art_sys_90: 5.67759018e-21 - art_sys_91: 2.41676193e-18 - art_sys_92: -1.10271422e-21 - art_sys_93: -3.67301319e-21 - art_sys_94: -2.81163014e-18 - art_sys_95: -1.71748727e-21 - art_sys_96: 6.97502467e-05 - art_sys_97: 2.73014644e-18 - art_sys_98: 1.46652456e-19 - art_sys_99: -4.76446328e-20 - art_sys_100: -5.64303172e-19 - art_sys_101: 7.66647909e-19 - art_sys_102: 3.99297908e-20 - art_sys_103: -1.49337782e-17 - art_sys_104: -1.09011346e-20 - art_sys_105: -4.18582237e-20 - art_sys_106: -7.96582533e-18 - art_sys_107: 1.04139179e-04 - art_sys_108: 4.13735675e-04 - art_sys_109: -1.54895086e-05 - art_sys_110: 1.61229710e-15 - art_sys_111: -2.45903213e-18 - art_sys_112: 2.51248668e-16 - art_sys_113: -1.61535094e-05 - art_sys_114: -2.68263806e-18 - art_sys_115: -2.14180535e-16 - art_sys_116: 5.14264512e-16 - art_sys_117: 7.80699134e-20 - art_sys_118: -5.48969553e-15 - art_sys_119: -2.08316015e-18 - art_sys_120: -1.27846159e-17 - art_sys_121: -2.89547276e-11 - art_sys_122: 2.84835377e-17 - art_sys_123: 1.00645684e-16 - art_sys_124: 6.22532416e-11 - art_sys_125: -4.87251418e-15 - art_sys_126: 2.15852639e-10 - art_sys_127: -1.53828762e-16 - art_sys_128: -4.13405781e-11 - art_sys_129: 9.76691996e-15 - art_sys_130: 1.25633254e-10 - art_sys_131: 5.63381541e-12 - art_sys_132: -2.33207179e-13 - art_sys_133: 7.66075978e-11 - art_sys_134: 2.15054467e-07 - art_sys_135: -1.25442472e-13 - art_sys_136: -6.43131691e-11 - art_sys_137: 7.24338338e-08 - art_sys_138: -6.25006767e-21 - art_sys_139: 1.59938455e-12 - art_sys_140: 2.40773204e-10 - art_sys_141: -3.43193392e-13 - art_sys_142: 2.89459548e-10 - art_sys_143: -2.25692390e-08 - art_sys_144: 6.37672212e-09 - art_sys_145: 1.77272884e-09 - art_sys_146: 0.0 - art_sys_147: 2.81341493e-10 - art_sys_148: -5.59850532e-11 - art_sys_149: -5.59850532e-11 - art_sys_150: 2.04778592e-11 - art_sys_151: 2.04778592e-11 - art_sys_152: -9.61951229e-12 - art_sys_153: 6.66004205e-11 - art_sys_154: -2.25035316e-11 - art_sys_155: 8.99887582e-23 - art_sys_156: 9.86882522e-26 - art_sys_157: 4.95191889e-26 - art_sys_158: 0.0 - art_sys_159: -4.62548935e-05 - art_sys_160: 3.70635253e-05 - art_sys_161: -2.22890341e-05 - art_sys_162: -1.07466953e-05 - art_sys_163: 4.79274138e-06 - art_sys_164: -1.76690022e-06 - art_sys_165: 6.32245775e-07 - art_sys_166: -1.84549641e-17 - art_sys_167: 7.94885546e-18 - art_sys_168: 1.62350711e-17 - art_sys_169: -4.02317660e-18 - art_sys_170: 1.71795205e-18 - art_sys_171: -1.84132255e-18 - art_sys_172: -3.33950854e-19 - art_sys_173: 1.47898973e-19 - art_sys_174: 1.33843134e-19 - art_sys_175: -5.40386087e-22 - art_sys_176: 7.62909835e-21 - art_sys_177: -6.76627242e-22 - art_sys_178: -4.62701023e-21 - art_sys_179: 2.57787967e-22 - art_sys_180: -1.02109298e-21 - art_sys_181: -1.70298279e-22 - art_sys_182: -5.16017962e-22 - art_sys_183: 3.59609758e-23 - art_sys_184: -4.84027008e-23 - art_sys_185: 1.10931445e-23 + art_sys_89: -2.65974346e-17 + art_sys_90: 8.41642393e-05 + art_sys_91: -9.53381945e-19 + art_sys_92: 8.64236868e-19 + art_sys_93: 4.04270374e-18 + art_sys_94: -6.97502452e-05 + art_sys_95: -2.35778266e-17 + art_sys_96: -5.48400795e-20 + art_sys_97: 7.75423740e-20 + art_sys_98: 1.90282281e-16 + art_sys_99: 8.58965223e-18 + art_sys_100: 3.49452167e-15 + art_sys_101: 1.07512007e-16 + art_sys_102: -5.02541338e-17 + art_sys_103: 6.51770076e-16 + art_sys_104: -2.67534161e-17 + art_sys_105: -1.04145656e-04 + art_sys_106: -2.76068958e-17 + art_sys_107: 6.71872340e-17 + art_sys_108: 4.13736649e-04 + art_sys_109: 1.54893253e-05 + art_sys_110: -5.36189235e-15 + art_sys_111: 2.46080441e-16 + art_sys_112: 3.17468677e-16 + art_sys_113: 1.34630733e-15 + art_sys_114: 1.61535957e-05 + art_sys_115: -2.30235606e-17 + art_sys_116: -1.35081522e-16 + art_sys_117: 4.62547007e-05 + art_sys_118: 1.00311882e-16 + art_sys_119: -1.86405175e-14 + art_sys_120: 7.70926455e-18 + art_sys_121: 3.70627848e-05 + art_sys_122: 3.12720752e-15 + art_sys_123: -8.85703039e-15 + art_sys_124: -6.09226699e-17 + art_sys_125: 2.22858819e-05 + art_sys_126: 3.45070132e-15 + art_sys_127: 2.85227638e-12 + art_sys_128: -4.96500806e-16 + art_sys_129: -1.07469082e-05 + art_sys_130: -1.75070922e-11 + art_sys_131: 4.79339648e-06 + art_sys_132: 2.65001969e-14 + art_sys_133: -1.21788888e-10 + art_sys_134: -1.52223146e-14 + art_sys_135: -2.93743851e-15 + art_sys_136: 1.76488988e-06 + art_sys_137: -2.62458945e-10 + art_sys_138: -4.70875924e-15 + art_sys_139: 9.20509869e-12 + art_sys_140: -6.32473878e-07 + art_sys_141: -3.56248216e-11 + art_sys_142: 4.57610140e-14 + art_sys_143: -7.75386455e-11 + art_sys_144: 2.14550141e-07 + art_sys_145: -2.29867055e-13 + art_sys_146: 9.25475735e-11 + art_sys_147: -7.24592690e-08 + art_sys_148: -2.17524627e-08 + art_sys_149: -1.71375815e-13 + art_sys_150: 6.90654929e-11 + art_sys_151: 7.09207766e-11 + art_sys_152: 7.71524407e-09 + art_sys_153: -9.63471192e-11 + art_sys_154: 5.33728234e-18 + art_sys_155: -1.60860112e-09 + art_sys_156: -0.0 + art_sys_157: 3.37965150e-12 + art_sys_158: -0.0 + art_sys_159: -1.64449384e-11 + art_sys_160: 3.03267215e-10 + art_sys_161: -1.80376007e-12 + art_sys_162: -1.80376007e-12 + art_sys_163: 4.54103422e-12 + art_sys_164: 4.54103422e-12 + art_sys_165: -9.65848417e-25 + art_sys_166: 4.81721778e-25 + art_sys_167: 0.0 + art_sys_168: 1.28275622e-18 + art_sys_169: 6.57826746e-19 + art_sys_170: -1.18149697e-19 + art_sys_171: -1.41867346e-19 + art_sys_172: 6.11247305e-20 + art_sys_173: 6.67161076e-21 + art_sys_174: -1.46041562e-20 + art_sys_175: -2.93880114e-21 + art_sys_176: 9.14822850e-21 + art_sys_177: -4.33588681e-22 + art_sys_178: -3.89459735e-22 + art_sys_179: 8.20676720e-23 + art_sys_180: -7.63745125e-24 + art_sys_181: -1.31338894e-21 + art_sys_182: -3.41899205e-22 + art_sys_183: 6.22651767e-24 + art_sys_184: -1.02060354e-23 + art_sys_185: -9.05356046e-24 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -36656,149 +36656,149 @@ bins: art_sys_40: 0.0 art_sys_41: 0.0 art_sys_42: 0.0 - art_sys_43: 1.81766301e-186 - art_sys_44: -1.11335047e-178 - art_sys_45: 7.36509543e-52 - art_sys_46: -4.47819158e-48 - art_sys_47: 1.10961028e-42 - art_sys_48: -1.28971686e-34 - art_sys_49: 1.63663737e-13 - art_sys_50: 1.08903284e-12 - art_sys_51: 1.25469566e-12 - art_sys_52: 2.43125422e-11 - art_sys_53: -1.73873544e-11 - art_sys_54: 8.96794487e-10 - art_sys_55: -8.12957942e-29 - art_sys_56: 1.63228162e-28 - art_sys_57: 1.72995820e-29 - art_sys_58: -3.27223802e-10 - art_sys_59: -2.00122274e-09 - art_sys_60: -2.38804072e-27 - art_sys_61: 8.42980597e-28 - art_sys_62: -2.56698530e-27 - art_sys_63: 3.93931069e-27 - art_sys_64: -3.08660533e-27 - art_sys_65: 1.12711098e-08 - art_sys_66: 3.87396780e-08 - art_sys_67: -1.45759134e-26 - art_sys_68: -2.46653265e-26 - art_sys_69: 1.64070661e-25 - art_sys_70: -6.39410924e-27 - art_sys_71: -1.40289212e-26 - art_sys_72: -2.14748326e-24 - art_sys_73: 2.13560748e-14 - art_sys_74: 2.98932697e-14 - art_sys_75: 7.63989708e-15 - art_sys_76: -2.02808024e-07 - art_sys_77: -1.10572229e-22 - art_sys_78: -3.17239273e-20 - art_sys_79: 2.03763706e-15 - art_sys_80: -1.74445234e-06 - art_sys_81: -1.41892317e-15 - art_sys_82: -3.35002940e-16 - art_sys_83: 1.71311996e-06 - art_sys_84: 7.87935969e-17 - art_sys_85: -1.05231999e-17 - art_sys_86: -2.23340809e-06 - art_sys_87: 1.60023442e-21 + art_sys_43: 0.0 + art_sys_44: -1.09205306e-218 + art_sys_45: -5.50758710e-212 + art_sys_46: -5.93672432e-162 + art_sys_47: -3.28697223e-167 + art_sys_48: 1.77198483e-159 + art_sys_49: -1.51192038e-150 + art_sys_50: 6.48245781e-143 + art_sys_51: -2.68966884e-132 + art_sys_52: -2.98833814e-149 + art_sys_53: -9.54400773e-146 + art_sys_54: -1.12926146e-140 + art_sys_55: -2.78453304e-137 + art_sys_56: -4.49051096e-134 + art_sys_57: -1.59910449e-55 + art_sys_58: -7.92383921e-42 + art_sys_59: 3.04065906e-53 + art_sys_60: -3.67633492e-50 + art_sys_61: -1.44926043e-35 + art_sys_62: 4.02289241e-50 + art_sys_63: 6.79536005e-40 + art_sys_64: 1.63663737e-13 + art_sys_65: -1.08903284e-12 + art_sys_66: 1.25469566e-12 + art_sys_67: 2.43125422e-11 + art_sys_68: 1.73873544e-11 + art_sys_69: -8.96794487e-10 + art_sys_70: 3.27223802e-10 + art_sys_71: 2.00122274e-09 + art_sys_72: -1.12711098e-08 + art_sys_73: 3.87396780e-08 + art_sys_74: 1.10532651e-26 + art_sys_75: 2.02808024e-07 + art_sys_76: -7.30670505e-14 + art_sys_77: -3.94359757e-14 + art_sys_78: 3.20707473e-14 + art_sys_79: -1.74445234e-06 + art_sys_80: 2.84921907e-15 + art_sys_81: -1.71311996e-06 + art_sys_82: -4.18138711e-19 + art_sys_83: 6.33539897e-16 + art_sys_84: 3.69249488e-16 + art_sys_85: -1.60935460e-16 + art_sys_86: -1.55321311e-16 + art_sys_87: -2.23340808e-06 art_sys_88: 1.87565112e-05 - art_sys_89: -1.22526251e-05 - art_sys_90: -3.96078988e-21 - art_sys_91: 2.31455954e-17 - art_sys_92: -3.71148513e-20 - art_sys_93: -1.16374823e-20 - art_sys_94: 4.64819748e-19 - art_sys_95: 5.04349036e-21 - art_sys_96: 6.78926915e-06 - art_sys_97: -4.51161431e-19 - art_sys_98: -1.14174453e-20 - art_sys_99: 1.26531635e-20 - art_sys_100: 6.77127563e-20 - art_sys_101: 6.30413495e-18 - art_sys_102: 3.36544140e-19 - art_sys_103: -1.32325749e-18 - art_sys_104: 9.17803644e-22 - art_sys_105: -2.85409119e-20 - art_sys_106: 1.33141826e-18 - art_sys_107: -8.66235043e-05 - art_sys_108: 1.87157692e-04 - art_sys_109: 2.47213324e-04 - art_sys_110: 1.37283286e-16 - art_sys_111: 3.97667074e-19 - art_sys_112: -2.84190745e-16 - art_sys_113: -3.71716616e-05 - art_sys_114: 4.80118839e-19 - art_sys_115: -2.90989795e-17 - art_sys_116: 1.02124925e-16 - art_sys_117: 2.49876355e-19 - art_sys_118: -6.76462874e-14 - art_sys_119: 7.89124860e-19 - art_sys_120: 9.19108278e-17 - art_sys_121: 4.13201544e-11 - art_sys_122: -9.43216463e-18 - art_sys_123: -1.21024593e-16 - art_sys_124: -2.23525507e-11 - art_sys_125: -1.39262936e-14 - art_sys_126: 5.56409589e-11 - art_sys_127: 3.76653966e-15 - art_sys_128: 6.63803425e-12 - art_sys_129: -1.95400915e-14 - art_sys_130: -1.35977450e-10 - art_sys_131: -9.98211052e-12 - art_sys_132: 4.18128495e-13 - art_sys_133: -9.10081287e-11 - art_sys_134: -3.97656959e-07 - art_sys_135: 4.29268639e-13 - art_sys_136: 5.45571153e-11 - art_sys_137: -1.36280418e-07 - art_sys_138: -5.01415468e-20 - art_sys_139: -1.07633077e-12 - art_sys_140: -4.01268612e-10 - art_sys_141: -3.60379378e-12 - art_sys_142: -4.66475867e-10 - art_sys_143: 4.29382941e-08 - art_sys_144: -1.22110477e-08 - art_sys_145: -3.40776571e-09 - art_sys_146: -0.0 - art_sys_147: -5.37721988e-10 - art_sys_148: 8.53383456e-11 - art_sys_149: 8.53383456e-11 - art_sys_150: -3.44392380e-11 - art_sys_151: -3.44392380e-11 - art_sys_152: 1.56741421e-11 - art_sys_153: -1.28379570e-10 - art_sys_154: 4.32936510e-11 - art_sys_155: -1.73664081e-22 - art_sys_156: -2.23039710e-25 - art_sys_157: -4.46187432e-26 - art_sys_158: -0.0 - art_sys_159: 4.17785481e-06 - art_sys_160: -3.20167991e-05 - art_sys_161: 2.66948316e-05 - art_sys_162: 1.54425510e-05 - art_sys_163: -7.68131139e-06 - art_sys_164: 3.03287194e-06 - art_sys_165: -1.13682577e-06 - art_sys_166: 3.48202367e-17 - art_sys_167: -1.54748193e-17 - art_sys_168: -3.10007206e-17 - art_sys_169: 7.68026211e-18 - art_sys_170: -3.23218983e-18 - art_sys_171: 3.51101067e-18 - art_sys_172: 5.84706773e-19 - art_sys_173: -2.69993399e-19 - art_sys_174: -2.52556262e-19 - art_sys_175: 1.03849447e-21 - art_sys_176: -1.48407417e-20 - art_sys_177: -2.52051395e-22 - art_sys_178: 8.84461295e-21 - art_sys_179: -5.77728195e-22 - art_sys_180: 7.31755323e-22 - art_sys_181: 3.52305899e-22 - art_sys_182: 7.96713560e-22 - art_sys_183: -7.40232278e-23 - art_sys_184: 9.42405829e-23 - art_sys_185: -2.16819858e-23 + art_sys_89: -1.75446066e-18 + art_sys_90: -1.22526251e-05 + art_sys_91: 4.21683563e-20 + art_sys_92: 1.25956727e-17 + art_sys_93: 8.88597796e-18 + art_sys_94: -6.78926900e-06 + art_sys_95: 9.74455875e-18 + art_sys_96: -1.09462105e-20 + art_sys_97: 7.60781153e-21 + art_sys_98: 1.85451554e-17 + art_sys_99: 6.74370339e-19 + art_sys_100: 3.02761647e-16 + art_sys_101: 9.47439077e-18 + art_sys_102: 2.11330486e-17 + art_sys_103: 5.80254770e-17 + art_sys_104: -6.84755149e-18 + art_sys_105: 8.66206617e-05 + art_sys_106: -2.11207965e-18 + art_sys_107: -2.65069653e-17 + art_sys_108: 1.87158061e-04 + art_sys_109: -2.47212989e-04 + art_sys_110: 7.36813212e-16 + art_sys_111: -2.10642799e-16 + art_sys_112: -1.88747128e-16 + art_sys_113: -2.68274107e-16 + art_sys_114: 3.71716956e-05 + art_sys_115: 3.77722850e-17 + art_sys_116: -1.06768110e-17 + art_sys_117: -4.17758794e-06 + art_sys_118: -3.78324937e-17 + art_sys_119: -1.80988592e-15 + art_sys_120: 8.32424678e-18 + art_sys_121: -3.20163433e-05 + art_sys_122: -4.57808548e-16 + art_sys_123: -8.40378754e-15 + art_sys_124: 6.56763200e-18 + art_sys_125: -2.66912832e-05 + art_sys_126: 5.04334098e-16 + art_sys_127: 1.27246551e-12 + art_sys_128: -5.28033940e-17 + art_sys_129: 1.54428147e-05 + art_sys_130: -1.31834741e-11 + art_sys_131: -7.68259021e-06 + art_sys_132: 2.64282033e-15 + art_sys_133: 6.26685931e-11 + art_sys_134: -7.94125764e-15 + art_sys_135: 1.91012657e-15 + art_sys_136: -3.02966367e-06 + art_sys_137: 3.02573649e-10 + art_sys_138: 9.16955083e-15 + art_sys_139: -1.72655756e-11 + art_sys_140: 1.13723845e-06 + art_sys_141: -1.42830399e-11 + art_sys_142: 1.88135464e-14 + art_sys_143: 1.04107662e-10 + art_sys_144: -3.96726335e-07 + art_sys_145: -1.43422897e-13 + art_sys_146: -1.47496636e-10 + art_sys_147: 1.36328373e-07 + art_sys_148: 4.13949346e-08 + art_sys_149: 8.99173440e-13 + art_sys_150: -1.16162554e-10 + art_sys_151: -1.32660737e-10 + art_sys_152: -1.47517437e-08 + art_sys_153: 1.69025662e-10 + art_sys_154: -1.51502667e-18 + art_sys_155: 3.09785574e-09 + art_sys_156: 0.0 + art_sys_157: -5.74190124e-12 + art_sys_158: 0.0 + art_sys_159: 2.86594304e-11 + art_sys_160: -5.76745150e-10 + art_sys_161: 3.04277415e-12 + art_sys_162: 3.04277415e-12 + art_sys_163: -7.96116373e-12 + art_sys_164: -7.96116373e-12 + art_sys_165: 1.84689921e-24 + art_sys_166: -9.22121849e-25 + art_sys_167: -0.0 + art_sys_168: -1.79857465e-18 + art_sys_169: -9.91350894e-19 + art_sys_170: 2.83492177e-19 + art_sys_171: 1.49413234e-19 + art_sys_172: -1.26268156e-19 + art_sys_173: -2.65158604e-20 + art_sys_174: 3.20413867e-20 + art_sys_175: 5.42570496e-21 + art_sys_176: -1.75026028e-20 + art_sys_177: 5.14850600e-22 + art_sys_178: 6.98376938e-22 + art_sys_179: -1.59449356e-22 + art_sys_180: 1.45637881e-23 + art_sys_181: 2.58806595e-21 + art_sys_182: 4.55138110e-22 + art_sys_183: -1.05507016e-23 + art_sys_184: 1.96354821e-23 + art_sys_185: 1.75522048e-23 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -36947,149 +36947,149 @@ bins: art_sys_40: 0.0 art_sys_41: 0.0 art_sys_42: 0.0 - art_sys_43: -7.27729712e-188 - art_sys_44: 4.45747210e-180 - art_sys_45: -2.94872547e-53 - art_sys_46: 1.79291058e-49 - art_sys_47: -4.44248973e-44 - art_sys_48: 5.16357321e-36 - art_sys_49: -6.55252105e-15 - art_sys_50: -9.86402064e-15 - art_sys_51: 3.01274945e-13 - art_sys_52: 2.46897008e-12 - art_sys_53: -5.39384338e-12 - art_sys_54: 1.02621537e-10 - art_sys_55: -4.97818381e-30 - art_sys_56: -1.02269274e-28 - art_sys_57: 4.26084734e-31 - art_sys_58: -1.16533470e-10 - art_sys_59: 1.32340574e-10 - art_sys_60: 2.09670962e-28 - art_sys_61: -1.05986752e-28 - art_sys_62: 4.87721568e-29 - art_sys_63: -9.16442013e-29 - art_sys_64: 1.51189641e-28 - art_sys_65: -2.58232574e-09 - art_sys_66: -1.98914848e-08 - art_sys_67: 2.20649728e-27 - art_sys_68: 1.80435492e-26 - art_sys_69: -8.08859878e-26 - art_sys_70: 1.47882382e-26 - art_sys_71: -8.83702321e-29 - art_sys_72: 4.10343387e-25 - art_sys_73: 4.73233639e-14 - art_sys_74: 4.86157028e-14 - art_sys_75: -2.09670263e-14 - art_sys_76: 3.80519460e-08 - art_sys_77: 2.07380970e-23 - art_sys_78: 5.95222974e-21 - art_sys_79: -1.53955658e-15 - art_sys_80: -4.91989196e-07 - art_sys_81: 1.10767001e-15 - art_sys_82: -5.32732620e-16 - art_sys_83: 1.01696352e-06 - art_sys_84: 8.77384129e-16 - art_sys_85: -1.09011880e-16 - art_sys_86: 9.75064197e-07 - art_sys_87: 9.58193188e-22 + art_sys_43: 0.0 + art_sys_44: 4.12165827e-220 + art_sys_45: 2.07868967e-213 + art_sys_46: 2.37550788e-163 + art_sys_47: 1.31524188e-168 + art_sys_48: -7.09038131e-161 + art_sys_49: 6.04976512e-152 + art_sys_50: -2.59387648e-144 + art_sys_51: 1.07623820e-133 + art_sys_52: 1.19574707e-150 + art_sys_53: 3.81891836e-147 + art_sys_54: 4.51860208e-142 + art_sys_55: 1.11419696e-138 + art_sys_56: 1.79682323e-135 + art_sys_57: 6.40225247e-57 + art_sys_58: 3.17242678e-43 + art_sys_59: -1.21737304e-54 + art_sys_60: 1.47187532e-51 + art_sys_61: 5.80232952e-37 + art_sys_62: -1.61063890e-51 + art_sys_63: -2.72062338e-41 + art_sys_64: -6.55252105e-15 + art_sys_65: 9.86402064e-15 + art_sys_66: 3.01274945e-13 + art_sys_67: 2.46897008e-12 + art_sys_68: 5.39384338e-12 + art_sys_69: -1.02621537e-10 + art_sys_70: 1.16533470e-10 + art_sys_71: -1.32340574e-10 + art_sys_72: 2.58232574e-09 + art_sys_73: -1.98914848e-08 + art_sys_74: -1.45736287e-28 + art_sys_75: -3.80519460e-08 + art_sys_76: 9.36555299e-15 + art_sys_77: -1.19999673e-15 + art_sys_78: 1.46329542e-14 + art_sys_79: -4.91989196e-07 + art_sys_80: -3.48155629e-15 + art_sys_81: -1.01696352e-06 + art_sys_82: -2.48392195e-19 + art_sys_83: 4.72821826e-16 + art_sys_84: -6.76761236e-16 + art_sys_85: 2.84200684e-16 + art_sys_86: -1.10346121e-16 + art_sys_87: 9.75064194e-07 art_sys_88: 5.32752229e-06 - art_sys_89: -8.71977396e-06 - art_sys_90: -1.41527121e-21 - art_sys_91: 6.54948668e-18 - art_sys_92: -1.06600801e-20 - art_sys_93: -3.15498965e-21 - art_sys_94: 2.75861663e-19 - art_sys_95: 1.59141719e-21 - art_sys_96: -5.38539535e-06 - art_sys_97: -2.67835499e-19 - art_sys_98: -1.08623200e-20 - art_sys_99: 5.99947177e-21 - art_sys_100: 4.93619686e-20 - art_sys_101: 1.77829334e-18 - art_sys_102: 9.49924735e-20 - art_sys_103: 5.71080262e-19 - art_sys_104: -1.32087036e-21 - art_sys_105: 5.98167144e-22 - art_sys_106: 7.91770890e-19 - art_sys_107: -4.36628927e-05 - art_sys_108: -2.91407347e-05 - art_sys_109: 1.69616224e-04 - art_sys_110: -6.31332240e-17 - art_sys_111: 2.38559988e-19 - art_sys_112: -8.48223962e-17 - art_sys_113: 1.49782619e-04 - art_sys_114: 2.49478032e-19 - art_sys_115: 1.56415357e-17 - art_sys_116: -5.92908571e-18 - art_sys_117: 5.89518329e-20 - art_sys_118: -2.19889111e-14 - art_sys_119: 3.17741392e-19 - art_sys_120: 2.25935295e-17 - art_sys_121: 1.71267375e-11 - art_sys_122: -4.02159723e-18 - art_sys_123: -3.83789944e-17 - art_sys_124: -9.58953204e-11 - art_sys_125: -4.46724334e-15 - art_sys_126: -2.28577023e-10 - art_sys_127: 1.40319464e-15 - art_sys_128: 7.04189532e-11 - art_sys_129: -9.48120346e-15 - art_sys_130: 6.86325646e-11 - art_sys_131: -4.59234075e-12 - art_sys_132: 1.95335138e-13 - art_sys_133: 8.26663881e-11 - art_sys_134: 7.19936981e-07 - art_sys_135: 2.93957226e-13 - art_sys_136: -1.48015359e-11 - art_sys_137: 2.53220996e-07 - art_sys_138: -1.48985544e-20 - art_sys_139: 7.33280430e-12 - art_sys_140: 6.30391656e-10 - art_sys_141: 1.70504976e-11 - art_sys_142: 6.77630177e-10 - art_sys_143: -8.11757786e-08 - art_sys_144: 2.33257489e-08 - art_sys_145: 6.54940961e-09 - art_sys_146: 0.0 - art_sys_147: 1.02714178e-09 - art_sys_148: -1.32765405e-10 - art_sys_149: -1.32765405e-10 - art_sys_150: 5.11268901e-11 - art_sys_151: 5.11268901e-11 - art_sys_152: -2.42144432e-11 - art_sys_153: 2.46800069e-10 - art_sys_154: -8.33292539e-11 - art_sys_155: 3.29665919e-22 - art_sys_156: 3.71157628e-25 - art_sys_157: 1.70300173e-25 - art_sys_158: 0.0 - art_sys_159: 3.54575515e-05 - art_sys_160: 1.56600500e-06 - art_sys_161: -2.34259140e-05 - art_sys_162: -1.86789348e-05 - art_sys_163: 1.11689011e-05 - art_sys_164: -4.91031737e-06 - art_sys_165: 1.97063578e-06 - art_sys_166: -6.51524153e-17 - art_sys_167: 3.03640269e-17 - art_sys_168: 5.89174743e-17 - art_sys_169: -1.45768216e-17 - art_sys_170: 6.24979515e-18 - art_sys_171: -6.65669060e-18 - art_sys_172: -1.00770268e-18 - art_sys_173: 4.92296090e-19 - art_sys_174: 4.78269724e-19 - art_sys_175: -1.99500854e-21 - art_sys_176: 2.63204280e-20 - art_sys_177: 2.83290772e-21 - art_sys_178: -1.65516117e-20 - art_sys_179: 8.78514872e-22 - art_sys_180: -1.86187941e-21 - art_sys_181: -6.88009542e-22 - art_sys_182: -9.88605651e-22 - art_sys_183: 1.56247738e-22 - art_sys_184: -1.84681015e-22 - art_sys_185: 4.27371386e-23 + art_sys_89: -1.62999024e-17 + art_sys_90: -8.71977394e-06 + art_sys_91: 6.62834511e-20 + art_sys_92: -3.78108412e-17 + art_sys_93: 2.00542565e-17 + art_sys_94: 5.38539523e-06 + art_sys_95: 3.78558683e-18 + art_sys_96: 6.49575611e-22 + art_sys_97: -2.52688223e-21 + art_sys_98: -6.87986042e-18 + art_sys_99: -3.50298559e-19 + art_sys_100: -1.35760896e-16 + art_sys_101: -4.12905514e-18 + art_sys_102: 8.13894316e-18 + art_sys_103: -2.48829451e-17 + art_sys_104: -1.87841708e-19 + art_sys_105: 4.36633753e-05 + art_sys_106: 1.11138098e-18 + art_sys_107: -1.12015654e-17 + art_sys_108: -2.91408828e-05 + art_sys_109: -1.69615613e-04 + art_sys_110: 5.44979999e-16 + art_sys_111: -6.69756588e-17 + art_sys_112: -6.64771174e-17 + art_sys_113: -1.56628113e-16 + art_sys_114: -1.49782669e-04 + art_sys_115: 1.05800862e-17 + art_sys_116: 1.13128629e-17 + art_sys_117: -3.54576663e-05 + art_sys_118: -1.77307344e-17 + art_sys_119: 1.44083180e-15 + art_sys_120: 3.69715390e-18 + art_sys_121: 1.56613423e-06 + art_sys_122: -3.25076790e-16 + art_sys_123: -5.19125071e-16 + art_sys_124: 5.12167391e-18 + art_sys_125: 2.34232514e-05 + art_sys_126: -1.24556903e-16 + art_sys_127: -2.39228145e-13 + art_sys_128: 3.60441990e-17 + art_sys_129: -1.86791854e-05 + art_sys_130: 8.08666735e-11 + art_sys_131: 1.11713302e-05 + art_sys_132: -2.01999951e-15 + art_sys_133: 1.53384515e-12 + art_sys_134: -2.39930292e-16 + art_sys_135: 1.00659335e-15 + art_sys_136: 4.90568804e-06 + art_sys_137: -2.49345244e-10 + art_sys_138: 3.86503272e-15 + art_sys_139: 2.06380827e-11 + art_sys_140: -1.97135880e-06 + art_sys_141: -1.14859821e-12 + art_sys_142: 4.87551928e-15 + art_sys_143: -1.03666080e-10 + art_sys_144: 7.18257346e-07 + art_sys_145: 4.02201818e-14 + art_sys_146: 2.12725848e-10 + art_sys_147: -2.53310412e-07 + art_sys_148: -7.82885473e-08 + art_sys_149: -1.21453206e-12 + art_sys_150: 1.82491819e-10 + art_sys_151: 2.41729017e-10 + art_sys_152: 2.81123368e-08 + art_sys_153: -2.83509436e-10 + art_sys_154: -8.09439348e-19 + art_sys_155: -5.97007025e-09 + art_sys_156: -0.0 + art_sys_157: 9.43212052e-12 + art_sys_158: -0.0 + art_sys_159: -4.78433898e-11 + art_sys_160: 1.09026399e-09 + art_sys_161: -4.88151460e-12 + art_sys_162: -4.88151460e-12 + art_sys_163: 1.31117565e-11 + art_sys_164: 1.31117565e-11 + art_sys_165: -3.51987786e-24 + art_sys_166: 1.76024493e-24 + art_sys_167: 0.0 + art_sys_168: 2.68088370e-18 + art_sys_169: 1.30048587e-18 + art_sys_170: -6.75568729e-19 + art_sys_171: -9.55708379e-20 + art_sys_172: 2.55890006e-19 + art_sys_173: 8.32814498e-20 + art_sys_174: -6.51880505e-20 + art_sys_175: -1.02854391e-20 + art_sys_176: 3.36151529e-20 + art_sys_177: -4.56865888e-22 + art_sys_178: -1.20666412e-21 + art_sys_179: 3.11343549e-22 + art_sys_180: -2.76968433e-23 + art_sys_181: -5.21034661e-21 + art_sys_182: -4.42985564e-22 + art_sys_183: 1.68480160e-23 + art_sys_184: -3.77601853e-23 + art_sys_185: -3.41696624e-23 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -37238,149 +37238,149 @@ bins: art_sys_40: 0.0 art_sys_41: 0.0 art_sys_42: 0.0 - art_sys_43: -2.45998768e-188 - art_sys_44: 1.50678559e-180 - art_sys_45: -9.96776622e-54 - art_sys_46: 6.06069089e-50 - art_sys_47: -1.50172336e-44 - art_sys_48: 1.74547584e-36 - art_sys_49: -2.21499081e-15 - art_sys_50: -1.33157173e-14 - art_sys_51: 5.65367001e-14 - art_sys_52: 3.05109246e-13 - art_sys_53: -2.46858353e-12 - art_sys_54: 1.05130764e-11 - art_sys_55: 1.95828433e-30 - art_sys_56: -3.34055354e-29 - art_sys_57: -8.29050910e-31 - art_sys_58: -2.63616333e-11 - art_sys_59: 7.06652002e-11 - art_sys_60: 9.83020649e-29 - art_sys_61: -4.30821845e-29 - art_sys_62: 5.78335144e-29 - art_sys_63: -9.53398147e-29 - art_sys_64: 9.42728066e-29 - art_sys_65: -3.31832410e-10 - art_sys_66: -4.93151385e-09 - art_sys_67: -3.37082501e-28 - art_sys_68: 4.83262652e-27 - art_sys_69: -1.94490006e-26 - art_sys_70: 4.77451733e-27 - art_sys_71: -6.53531768e-28 - art_sys_72: 1.47622823e-25 - art_sys_73: -9.02412127e-14 - art_sys_74: 2.29568724e-14 - art_sys_75: 2.52528003e-15 - art_sys_76: 1.38698670e-08 - art_sys_77: 7.56087031e-24 - art_sys_78: 2.16957194e-21 - art_sys_79: 3.05933227e-15 - art_sys_80: -6.98739637e-08 - art_sys_81: 4.10495549e-17 - art_sys_82: 1.48658743e-15 - art_sys_83: 1.92571106e-07 - art_sys_84: -9.80781123e-17 - art_sys_85: 6.25437689e-16 - art_sys_86: 3.62393194e-07 - art_sys_87: 1.73622390e-22 + art_sys_43: 0.0 + art_sys_44: 1.45676285e-220 + art_sys_45: 7.34694026e-214 + art_sys_46: 8.03405836e-164 + art_sys_47: 4.44819825e-169 + art_sys_48: -2.39799404e-161 + art_sys_49: 2.04605367e-152 + art_sys_50: -8.77258932e-145 + art_sys_51: 3.63987870e-134 + art_sys_52: 4.04406229e-151 + art_sys_53: 1.29157277e-147 + art_sys_54: 1.52820848e-142 + art_sys_55: 3.76825666e-139 + art_sys_56: 6.07692477e-136 + art_sys_57: 2.16419459e-57 + art_sys_58: 1.07239584e-43 + art_sys_59: -4.11516441e-55 + art_sys_60: 4.97547484e-52 + art_sys_61: 1.96139878e-37 + art_sys_62: -5.44453840e-52 + art_sys_63: -9.19669825e-42 + art_sys_64: -2.21499081e-15 + art_sys_65: 1.33157173e-14 + art_sys_66: 5.65367001e-14 + art_sys_67: 3.05109246e-13 + art_sys_68: 2.46858353e-12 + art_sys_69: -1.05130764e-11 + art_sys_70: 2.63616333e-11 + art_sys_71: -7.06652002e-11 + art_sys_72: 3.31832410e-10 + art_sys_73: -4.93151385e-09 + art_sys_74: 4.37005286e-28 + art_sys_75: -1.38698670e-08 + art_sys_76: -1.74477288e-14 + art_sys_77: 3.56243303e-14 + art_sys_78: 6.27737201e-15 + art_sys_79: -6.98739637e-08 + art_sys_80: -3.56657596e-15 + art_sys_81: -1.92571106e-07 + art_sys_82: -4.70425954e-20 + art_sys_83: -9.00488026e-16 + art_sys_84: -2.93362470e-16 + art_sys_85: 2.40748417e-17 + art_sys_86: 2.97249716e-16 + art_sys_87: 3.62393193e-07 art_sys_88: 1.63998589e-07 - art_sys_89: -1.27930564e-06 - art_sys_90: -2.32160445e-22 - art_sys_91: 9.32141979e-19 - art_sys_92: -1.51109371e-21 - art_sys_93: -4.41674371e-22 - art_sys_94: 5.22340794e-20 - art_sys_95: 2.41463769e-22 - art_sys_96: -1.83953406e-06 - art_sys_97: -5.07226661e-20 - art_sys_98: -2.25019044e-21 - art_sys_99: 1.06633901e-21 - art_sys_100: 1.00560569e-20 - art_sys_101: 2.52572835e-19 - art_sys_102: 1.34975350e-20 - art_sys_103: 2.13612857e-19 - art_sys_104: -2.01835023e-22 - art_sys_105: 3.39361346e-21 - art_sys_106: 1.48648294e-19 - art_sys_107: 2.16484457e-06 - art_sys_108: -4.03493298e-05 - art_sys_109: 3.20905176e-06 - art_sys_110: -2.30386921e-17 - art_sys_111: 4.64762814e-20 - art_sys_112: -3.40566584e-18 - art_sys_113: 1.35626611e-04 - art_sys_114: 3.10357799e-20 - art_sys_115: 6.01457720e-18 - art_sys_116: -7.39825129e-18 - art_sys_117: 3.79290862e-21 - art_sys_118: 4.57384134e-15 - art_sys_119: 2.91712832e-20 - art_sys_120: 4.33482765e-20 - art_sys_121: -2.12117229e-12 - art_sys_122: -3.96138865e-19 - art_sys_123: 2.20261762e-18 - art_sys_124: 1.02595378e-10 - art_sys_125: 1.02757112e-15 - art_sys_126: 5.66995830e-10 - art_sys_127: -2.28415639e-16 - art_sys_128: -1.23014688e-10 - art_sys_129: 9.60814664e-16 - art_sys_130: 7.14157046e-12 - art_sys_131: 4.59022665e-13 - art_sys_132: -1.84076231e-14 - art_sys_133: -2.88391273e-11 - art_sys_134: -1.24976620e-06 - art_sys_135: -3.56392196e-15 - art_sys_136: -2.83523915e-11 - art_sys_137: -4.57921489e-07 - art_sys_138: -1.48621621e-21 - art_sys_139: -7.76416427e-12 - art_sys_140: -8.52019337e-10 - art_sys_141: -4.80077545e-12 - art_sys_142: -8.49740820e-10 - art_sys_143: 1.50707793e-07 - art_sys_144: -4.40224851e-08 - art_sys_145: -1.24840549e-08 - art_sys_146: -0.0 - art_sys_147: -1.93980516e-09 - art_sys_148: 1.56886132e-10 - art_sys_149: 1.56886132e-10 - art_sys_150: -6.37302070e-11 - art_sys_151: -6.37302070e-11 - art_sys_152: 3.30038004e-11 - art_sys_153: -4.70157561e-10 - art_sys_154: 1.59248817e-10 - art_sys_155: -6.27725326e-22 - art_sys_156: -5.34377179e-25 - art_sys_157: -2.62749369e-25 - art_sys_158: -0.0 - art_sys_159: -9.46285404e-05 - art_sys_160: 2.53224466e-05 - art_sys_161: 2.55089713e-06 - art_sys_162: 1.66282902e-05 - art_sys_163: -1.36476753e-05 - art_sys_164: 7.18158424e-06 - art_sys_165: -3.20780674e-06 - art_sys_166: 1.19545153e-16 - art_sys_167: -5.73537238e-17 - art_sys_168: -1.10227622e-16 - art_sys_169: 2.72569766e-17 - art_sys_170: -1.16719511e-17 - art_sys_171: 1.24079785e-17 - art_sys_172: 1.94064291e-18 - art_sys_173: -8.75078511e-19 - art_sys_174: -8.82562688e-19 - art_sys_175: 3.80015286e-21 - art_sys_176: -4.48496217e-20 - art_sys_177: -5.18195209e-21 - art_sys_178: 3.04067764e-20 - art_sys_179: -9.01757187e-22 - art_sys_180: 3.52480800e-21 - art_sys_181: 1.38849545e-21 - art_sys_182: 9.64973618e-22 - art_sys_183: -3.35326253e-22 - art_sys_184: 3.62596696e-22 - art_sys_185: -8.46239051e-23 + art_sys_89: -6.17916542e-17 + art_sys_90: -1.27930564e-06 + art_sys_91: 1.57775208e-20 + art_sys_92: 6.84461619e-17 + art_sys_93: -1.92008768e-18 + art_sys_94: 1.83953402e-06 + art_sys_95: 3.26706230e-19 + art_sys_96: 6.85199088e-22 + art_sys_97: -1.11946625e-21 + art_sys_98: -2.72045815e-18 + art_sys_99: -1.22690013e-19 + art_sys_100: -4.99547754e-17 + art_sys_101: -1.53584491e-18 + art_sys_102: 6.93055728e-19 + art_sys_103: -9.31055173e-18 + art_sys_104: 3.69499086e-19 + art_sys_105: -2.16422029e-06 + art_sys_106: 3.83722375e-19 + art_sys_107: -1.08434857e-18 + art_sys_108: -4.03494329e-05 + art_sys_109: -3.20877606e-06 + art_sys_110: 8.15219676e-17 + art_sys_111: -3.43315676e-18 + art_sys_112: -4.50033577e-18 + art_sys_113: -2.03373805e-17 + art_sys_114: -1.35626434e-04 + art_sys_115: 3.06512694e-19 + art_sys_116: 3.45357622e-18 + art_sys_117: 9.46285824e-05 + art_sys_118: -2.12543416e-18 + art_sys_119: 4.91336383e-16 + art_sys_120: -6.01182838e-19 + art_sys_121: 2.53216265e-05 + art_sys_122: -4.73740480e-17 + art_sys_123: 1.28394513e-15 + art_sys_124: 1.01909804e-18 + art_sys_125: -2.55188941e-06 + art_sys_126: -8.17103194e-17 + art_sys_127: -3.03615779e-13 + art_sys_128: 1.33298797e-17 + art_sys_129: 1.66283716e-05 + art_sys_130: 7.09950930e-11 + art_sys_131: -1.36519882e-05 + art_sys_132: -7.01733499e-16 + art_sys_133: -1.43720814e-10 + art_sys_134: 8.98882142e-16 + art_sys_135: -3.91388125e-17 + art_sys_136: -7.17601923e-06 + art_sys_137: 4.40410978e-12 + art_sys_138: -3.14986362e-16 + art_sys_139: -1.24968601e-11 + art_sys_140: 3.20900403e-06 + art_sys_141: 1.29902532e-12 + art_sys_142: -2.23677999e-15 + art_sys_143: 2.97906531e-11 + art_sys_144: -1.24686302e-06 + art_sys_145: -4.39678987e-14 + art_sys_146: -2.56663789e-10 + art_sys_147: 4.58084080e-07 + art_sys_148: 1.45431169e-07 + art_sys_149: 1.68681439e-12 + art_sys_150: -2.56434092e-10 + art_sys_151: -4.18620016e-10 + art_sys_152: -5.28650185e-08 + art_sys_153: 4.40451106e-10 + art_sys_154: -5.47752241e-20 + art_sys_155: 1.14255402e-08 + art_sys_156: 0.0 + art_sys_157: -1.42898669e-11 + art_sys_158: 0.0 + art_sys_159: 7.40548510e-11 + art_sys_160: -2.02663697e-09 + art_sys_161: 7.31740583e-12 + art_sys_162: 7.31740583e-12 + art_sys_163: -1.89427716e-11 + art_sys_164: -1.89427716e-11 + art_sys_165: 6.62135526e-24 + art_sys_166: -3.31929674e-24 + art_sys_167: -0.0 + art_sys_168: -2.50979641e-18 + art_sys_169: -1.06016689e-18 + art_sys_170: 1.65048030e-18 + art_sys_171: -2.11561233e-19 + art_sys_172: -5.18116948e-19 + art_sys_173: -2.10020102e-19 + art_sys_174: 1.25916687e-19 + art_sys_175: 2.07580988e-20 + art_sys_176: -6.42975415e-20 + art_sys_177: 2.06777071e-21 + art_sys_178: 1.96886974e-21 + art_sys_179: -6.07232811e-22 + art_sys_180: 5.21003953e-23 + art_sys_181: 9.63396155e-21 + art_sys_182: -5.50745326e-23 + art_sys_183: -2.95160972e-23 + art_sys_184: 7.17840333e-23 + art_sys_185: 6.63242578e-23 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -37529,149 +37529,149 @@ bins: art_sys_40: 0.0 art_sys_41: 0.0 art_sys_42: 0.0 - art_sys_43: -2.98241287e-189 - art_sys_44: 1.82678018e-181 - art_sys_45: -1.20846203e-54 - art_sys_46: 7.34779955e-51 - art_sys_47: -1.82064428e-45 - art_sys_48: 2.11616247e-37 - art_sys_49: -2.68538831e-16 - art_sys_50: -2.20737114e-15 - art_sys_51: 8.16888279e-15 - art_sys_52: 3.62963266e-14 - art_sys_53: -4.94003260e-13 - art_sys_54: 4.34811439e-13 - art_sys_55: 5.87557209e-31 - art_sys_56: -4.43652830e-30 - art_sys_57: -2.12936029e-31 - art_sys_58: -2.95152120e-12 - art_sys_59: 9.75849279e-12 - art_sys_60: 1.32957912e-29 - art_sys_61: -5.65171941e-30 - art_sys_62: 8.59531649e-30 - art_sys_63: -1.42937408e-29 - art_sys_64: 1.33439941e-29 - art_sys_65: 4.94496708e-11 - art_sys_66: -4.51854033e-10 - art_sys_67: -2.76231663e-28 - art_sys_68: 5.73232677e-28 - art_sys_69: -1.64002857e-27 - art_sys_70: 7.24379978e-28 - art_sys_71: -2.27153694e-28 - art_sys_72: 1.52057541e-26 - art_sys_73: 5.31728059e-14 - art_sys_74: -4.31345759e-15 - art_sys_75: 2.88120385e-15 - art_sys_76: 1.44051399e-09 - art_sys_77: 7.85365305e-25 - art_sys_78: 2.25330089e-22 - art_sys_79: 3.80608430e-15 - art_sys_80: -3.47883648e-09 - art_sys_81: -1.24236455e-15 - art_sys_82: 7.86884766e-17 - art_sys_83: 1.14978580e-08 - art_sys_84: 5.56372272e-16 - art_sys_85: -6.53930932e-16 - art_sys_86: 4.94589996e-08 - art_sys_87: 8.29694707e-24 + art_sys_43: 0.0 + art_sys_44: 1.79659907e-221 + art_sys_45: 9.06084740e-215 + art_sys_46: 9.74260548e-165 + art_sys_47: 5.39416553e-170 + art_sys_48: -2.90795870e-162 + art_sys_49: 2.48117362e-153 + art_sys_50: -1.06381947e-145 + art_sys_51: 4.41394631e-135 + art_sys_52: 4.90408479e-152 + art_sys_53: 1.56624254e-148 + art_sys_54: 1.85320191e-143 + art_sys_55: 4.56962551e-140 + art_sys_56: 7.36926195e-137 + art_sys_57: 2.62380452e-58 + art_sys_58: 1.30014050e-44 + art_sys_59: -4.98910174e-56 + art_sys_60: 6.03211629e-53 + art_sys_61: 2.37794097e-38 + art_sys_62: -6.60074652e-53 + art_sys_63: -1.11498008e-42 + art_sys_64: -2.68538831e-16 + art_sys_65: 2.20737114e-15 + art_sys_66: 8.16888279e-15 + art_sys_67: 3.62963266e-14 + art_sys_68: 4.94003260e-13 + art_sys_69: -4.34811439e-13 + art_sys_70: 2.95152120e-12 + art_sys_71: -9.75849279e-12 + art_sys_72: -4.94496708e-11 + art_sys_73: -4.51854033e-10 + art_sys_74: 1.67155942e-28 + art_sys_75: -1.44051399e-09 + art_sys_76: 7.64416489e-14 + art_sys_77: -4.48328270e-14 + art_sys_78: -2.76948180e-14 + art_sys_79: -3.47883648e-09 + art_sys_80: 1.55083421e-15 + art_sys_81: -1.14978580e-08 + art_sys_82: -2.80898236e-21 + art_sys_83: -1.78728153e-15 + art_sys_84: 1.21865772e-15 + art_sys_85: 1.04093435e-16 + art_sys_86: -9.00723860e-16 + art_sys_87: 4.94589995e-08 art_sys_88: -2.64989259e-07 - art_sys_89: 2.00388817e-07 - art_sys_90: -1.54472429e-23 - art_sys_91: 4.64872718e-20 - art_sys_92: -6.42156726e-23 - art_sys_93: -2.49719232e-23 - art_sys_94: 3.11940666e-21 - art_sys_95: 1.42326470e-23 - art_sys_96: 9.42880280e-09 - art_sys_97: -3.02949187e-21 - art_sys_98: -1.36083481e-22 - art_sys_99: 6.41090203e-23 - art_sys_100: 7.08777590e-22 - art_sys_101: 1.25769581e-20 - art_sys_102: 6.71828368e-22 - art_sys_103: 2.95513225e-20 - art_sys_104: 3.83391264e-22 - art_sys_105: 2.48619813e-22 - art_sys_106: 7.32976717e-21 - art_sys_107: 6.05349430e-06 - art_sys_108: -5.12470871e-06 - art_sys_109: -2.95201123e-05 - art_sys_110: -3.07662352e-18 - art_sys_111: 3.33958479e-21 - art_sys_112: 4.03566564e-18 - art_sys_113: 1.60966802e-05 - art_sys_114: 5.06582228e-22 - art_sys_115: 4.16253774e-20 - art_sys_116: -1.83097741e-18 - art_sys_117: -1.68475794e-21 - art_sys_118: 4.02861702e-15 - art_sys_119: -1.02666664e-20 - art_sys_120: -1.25912328e-18 - art_sys_121: -2.68348857e-12 - art_sys_122: 1.21784314e-19 - art_sys_123: 5.09224597e-18 - art_sys_124: 1.47552817e-10 - art_sys_125: 9.98206920e-16 - art_sys_126: 8.00777641e-10 - art_sys_127: -2.94261993e-16 - art_sys_128: 1.21954770e-10 - art_sys_129: 2.99407643e-15 - art_sys_130: -2.70654592e-10 - art_sys_131: 5.24331967e-13 - art_sys_132: -2.55492280e-14 - art_sys_133: -3.48802880e-12 - art_sys_134: 2.07206054e-06 - art_sys_135: -2.45242257e-14 - art_sys_136: -6.23252657e-12 - art_sys_137: 8.05089211e-07 - art_sys_138: 2.92407024e-21 - art_sys_139: 8.19440976e-12 - art_sys_140: 9.54032155e-10 - art_sys_141: -4.41569276e-11 - art_sys_142: 8.39976190e-10 - art_sys_143: -2.75805334e-07 - art_sys_144: 8.25410965e-08 - art_sys_145: 2.37683346e-08 - art_sys_146: 0.0 - art_sys_147: 3.65341572e-09 - art_sys_148: -1.41555144e-10 - art_sys_149: -1.41555144e-10 - art_sys_150: 5.72926252e-11 - art_sys_151: 5.72926252e-11 - art_sys_152: -4.03026322e-11 - art_sys_153: 8.88715124e-10 - art_sys_154: -3.04679887e-10 - art_sys_155: 1.18454887e-21 - art_sys_156: 3.53176831e-25 - art_sys_157: 4.03349881e-25 - art_sys_158: 0.0 - art_sys_159: -9.69272952e-05 - art_sys_160: -6.53939774e-05 - art_sys_161: 1.75219530e-05 - art_sys_162: -2.57489968e-06 - art_sys_163: 1.27155465e-05 - art_sys_164: -9.05849378e-06 - art_sys_165: 4.82049305e-06 - art_sys_166: -2.16389818e-16 - art_sys_167: 1.11044982e-16 - art_sys_168: 2.03877145e-16 - art_sys_169: -5.04360098e-17 - art_sys_170: 2.13583534e-17 - art_sys_171: -2.28528115e-17 - art_sys_172: -3.29760737e-18 - art_sys_173: 1.62182927e-18 - art_sys_174: 1.62946480e-18 - art_sys_175: -7.22809110e-21 - art_sys_176: 7.27332979e-20 - art_sys_177: 8.46660986e-21 - art_sys_178: -5.45939992e-20 - art_sys_179: -3.76666438e-22 - art_sys_180: -7.51492487e-21 - art_sys_181: -2.91239375e-21 - art_sys_182: -2.52087534e-22 - art_sys_183: 7.29293226e-22 - art_sys_184: -7.19691011e-22 - art_sys_185: 1.69854833e-22 + art_sys_89: -8.02953024e-17 + art_sys_90: 2.00388816e-07 + art_sys_91: 1.46489404e-21 + art_sys_92: -4.68574340e-17 + art_sys_93: 1.33932030e-17 + art_sys_94: -9.42880260e-09 + art_sys_95: -1.26324791e-19 + art_sys_96: 1.33745744e-22 + art_sys_97: -2.03615544e-22 + art_sys_98: -3.97123414e-19 + art_sys_99: -1.55499936e-20 + art_sys_100: -6.71911427e-18 + art_sys_101: -2.10039543e-19 + art_sys_102: -2.72773925e-19 + art_sys_103: -1.28248779e-18 + art_sys_104: 1.31276310e-19 + art_sys_105: -6.05341929e-06 + art_sys_106: 4.98548071e-20 + art_sys_107: 4.02422975e-19 + art_sys_108: -5.12470723e-06 + art_sys_109: 2.95200886e-05 + art_sys_110: -1.21560836e-17 + art_sys_111: 3.01505546e-18 + art_sys_112: 2.72453846e-18 + art_sys_113: 4.20870115e-18 + art_sys_114: -1.60964920e-05 + art_sys_115: -5.31220219e-19 + art_sys_116: -1.53355324e-19 + art_sys_117: 9.69281295e-05 + art_sys_118: 6.23491858e-19 + art_sys_119: -2.81124651e-18 + art_sys_120: -7.72536059e-19 + art_sys_121: -6.53937152e-05 + art_sys_122: 7.66314711e-18 + art_sys_123: 3.43626201e-16 + art_sys_124: 5.46061686e-20 + art_sys_125: -1.75185101e-05 + art_sys_126: -2.37700686e-17 + art_sys_127: -3.70542018e-14 + art_sys_128: 3.90906324e-19 + art_sys_129: -2.57479587e-06 + art_sys_130: 9.94246812e-12 + art_sys_131: 1.27222583e-05 + art_sys_132: -9.53790438e-19 + art_sys_133: -1.43552057e-10 + art_sys_134: 2.10047946e-16 + art_sys_135: -1.30506805e-16 + art_sys_136: 9.05352772e-06 + art_sys_137: 2.02241757e-10 + art_sys_138: -5.81782253e-16 + art_sys_139: -1.19346303e-11 + art_sys_140: -4.82234661e-06 + art_sys_141: 7.61502101e-13 + art_sys_142: -2.63089815e-15 + art_sys_143: 7.71788628e-11 + art_sys_144: 2.06727637e-06 + art_sys_145: 4.28165288e-15 + art_sys_146: 2.36342954e-10 + art_sys_147: -8.05377797e-07 + art_sys_148: -2.66374259e-07 + art_sys_149: -1.86639965e-12 + art_sys_150: 3.12139550e-10 + art_sys_151: 6.73218153e-10 + art_sys_152: 9.86072315e-08 + art_sys_153: -6.21510712e-10 + art_sys_154: 8.31113368e-20 + art_sys_155: -2.18766955e-08 + art_sys_156: -0.0 + art_sys_157: 1.98802696e-11 + art_sys_158: -0.0 + art_sys_159: -1.04628802e-10 + art_sys_160: 3.72019641e-09 + art_sys_161: -1.07799991e-11 + art_sys_162: -1.07799991e-11 + art_sys_163: 2.02453718e-11 + art_sys_164: 2.02453718e-11 + art_sys_165: -1.23560807e-23 + art_sys_166: 6.21579374e-24 + art_sys_167: 0.0 + art_sys_168: 9.84906943e-19 + art_sys_169: -4.39058985e-19 + art_sys_170: -3.93182975e-18 + art_sys_171: 1.06575593e-18 + art_sys_172: 9.92514621e-19 + art_sys_173: 5.89731280e-19 + art_sys_174: -2.42007660e-19 + art_sys_175: -4.51993384e-20 + art_sys_176: 1.23371738e-19 + art_sys_177: -6.58447689e-21 + art_sys_178: -2.91899357e-21 + art_sys_179: 1.19287416e-21 + art_sys_180: -9.77687360e-23 + art_sys_181: -1.85849593e-20 + art_sys_182: 1.57830449e-21 + art_sys_183: 5.29306511e-23 + art_sys_184: -1.35371227e-22 + art_sys_185: -1.29345817e-22 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -37820,149 +37820,149 @@ bins: art_sys_40: 0.0 art_sys_41: 0.0 art_sys_42: 0.0 - art_sys_43: -2.61995225e-190 - art_sys_44: 1.60476670e-182 - art_sys_45: -1.06159535e-55 - art_sys_46: 6.45480753e-52 - art_sys_47: -1.59937793e-46 - art_sys_48: 1.85898123e-38 - art_sys_49: -2.35902797e-17 - art_sys_50: -2.54129500e-16 - art_sys_51: 9.28334207e-16 - art_sys_52: 3.20866718e-15 - art_sys_53: -5.86549202e-14 - art_sys_54: -1.29029798e-13 - art_sys_55: 9.11352886e-32 - art_sys_56: -1.40072318e-31 - art_sys_57: -3.04038214e-32 - art_sys_58: -3.53848435e-15 - art_sys_59: 2.81517318e-13 - art_sys_60: 3.48299507e-31 - art_sys_61: -1.22617708e-31 - art_sys_62: 3.29337071e-31 - art_sys_63: -5.80463205e-31 - art_sys_64: 4.20432668e-31 - art_sys_65: 2.19238637e-11 - art_sys_66: 3.16627441e-11 - art_sys_67: -5.21859660e-29 - art_sys_68: -8.20753138e-31 - art_sys_69: 1.59873982e-28 - art_sys_70: 4.04619025e-29 - art_sys_71: -3.73060984e-29 - art_sys_72: -1.59048837e-27 - art_sys_73: 2.65026571e-14 - art_sys_74: 2.01868518e-14 - art_sys_75: -1.59932946e-15 - art_sys_76: -1.48607705e-10 - art_sys_77: -8.10105337e-26 - art_sys_78: -2.32457354e-23 - art_sys_79: 4.51277211e-15 - art_sys_80: 7.53248561e-10 - art_sys_81: 2.88341347e-15 - art_sys_82: 1.59736338e-15 - art_sys_83: -3.14910429e-09 - art_sys_84: -7.84144803e-16 - art_sys_85: 1.21133823e-15 - art_sys_86: -6.91832722e-10 - art_sys_87: -3.06618066e-24 + art_sys_43: 0.0 + art_sys_44: 1.60778711e-222 + art_sys_45: 8.10860573e-216 + art_sys_46: 8.56095755e-166 + art_sys_47: 4.73992529e-171 + art_sys_48: -2.55526214e-163 + art_sys_49: 2.18024040e-154 + art_sys_50: -9.34792372e-147 + art_sys_51: 3.87859356e-136 + art_sys_52: 4.30928479e-153 + art_sys_53: 1.37627824e-149 + art_sys_54: 1.62843327e-144 + art_sys_55: 4.01539096e-141 + art_sys_56: 6.47546889e-138 + art_sys_57: 2.30492860e-59 + art_sys_58: 1.14213197e-45 + art_sys_59: -4.38276678e-57 + art_sys_60: 5.29902178e-54 + art_sys_61: 2.08894531e-39 + art_sys_62: -5.79859038e-54 + art_sys_63: -9.79474441e-44 + art_sys_64: -2.35902797e-17 + art_sys_65: 2.54129500e-16 + art_sys_66: 9.28334207e-16 + art_sys_67: 3.20866718e-15 + art_sys_68: 5.86549202e-14 + art_sys_69: 1.29029798e-13 + art_sys_70: 3.53848435e-15 + art_sys_71: -2.81517318e-13 + art_sys_72: -2.19238637e-11 + art_sys_73: 3.16627441e-11 + art_sys_74: 2.88171221e-29 + art_sys_75: 1.48607705e-10 + art_sys_76: -1.39045126e-14 + art_sys_77: -2.68050659e-14 + art_sys_78: -1.22612702e-14 + art_sys_79: 7.53248561e-10 + art_sys_80: -1.66444552e-16 + art_sys_81: 3.14910429e-09 + art_sys_82: 7.69411037e-22 + art_sys_83: -6.59657618e-17 + art_sys_84: 1.41946038e-15 + art_sys_85: -9.93730431e-16 + art_sys_86: 9.51656229e-16 + art_sys_87: -6.91832720e-10 art_sys_88: -8.53019343e-08 - art_sys_89: 1.21813744e-07 - art_sys_90: 2.11078010e-24 - art_sys_91: -1.00921369e-20 - art_sys_92: 2.05752876e-23 - art_sys_93: 3.30905289e-24 - art_sys_94: -8.53813270e-22 - art_sys_95: -2.32443926e-24 - art_sys_96: 1.32152219e-07 - art_sys_97: 8.29369238e-22 - art_sys_98: 4.19931835e-23 - art_sys_99: -1.47574742e-23 - art_sys_100: -1.44613619e-22 - art_sys_101: -2.72161025e-21 - art_sys_102: -1.45832413e-22 - art_sys_103: -3.26989621e-22 - art_sys_104: 1.45529595e-22 - art_sys_105: -4.10321700e-22 - art_sys_106: -2.86442911e-21 - art_sys_107: 1.11817578e-06 - art_sys_108: 3.74090164e-06 - art_sys_109: -7.35838723e-06 - art_sys_110: 6.46050215e-20 - art_sys_111: -7.40533951e-22 - art_sys_112: 1.34463059e-18 - art_sys_113: -2.00775398e-05 - art_sys_114: 1.94075398e-21 - art_sys_115: -4.20638286e-19 - art_sys_116: -2.28672247e-19 - art_sys_117: -9.39586716e-22 - art_sys_118: 4.30761571e-16 - art_sys_119: -4.33844073e-21 - art_sys_120: -3.69252025e-19 - art_sys_121: -3.55045153e-13 - art_sys_122: 5.25493512e-20 - art_sys_123: 1.29948505e-18 - art_sys_124: 3.88845569e-11 - art_sys_125: 1.57183369e-16 - art_sys_126: 2.69094570e-10 - art_sys_127: -6.51982370e-17 - art_sys_128: 1.88713772e-10 - art_sys_129: 1.24843445e-15 - art_sys_130: -1.91247486e-10 - art_sys_131: -5.12122007e-14 - art_sys_132: -2.53166893e-15 - art_sys_133: 1.25177423e-10 - art_sys_134: -3.14914017e-06 - art_sys_135: -3.17681596e-14 - art_sys_136: 3.73285401e-11 - art_sys_137: -1.34036963e-06 - art_sys_138: -8.92898029e-21 - art_sys_139: -5.64577126e-12 - art_sys_140: -6.82020696e-10 - art_sys_141: 1.35126920e-10 - art_sys_142: -3.30942723e-10 - art_sys_143: 4.87163503e-07 - art_sys_144: -1.51476511e-07 - art_sys_145: -4.46674542e-08 - art_sys_146: -0.0 - art_sys_147: -6.77905250e-09 - art_sys_148: 2.33611000e-11 - art_sys_149: 2.33611000e-11 - art_sys_150: -7.51947891e-12 - art_sys_151: -7.51947891e-12 - art_sys_152: 4.00788019e-11 - art_sys_153: -1.64257800e-09 - art_sys_154: 5.77475585e-10 - art_sys_155: -2.17998016e-21 - art_sys_156: -1.19414942e-25 - art_sys_157: -7.03761042e-25 - art_sys_158: -0.0 - art_sys_159: -1.57467479e-05 - art_sys_160: -6.80393281e-05 - art_sys_161: -4.70140088e-05 - art_sys_162: -1.12536021e-05 - art_sys_163: -3.02253816e-06 - art_sys_164: 8.79843719e-06 - art_sys_165: -6.23664760e-06 - art_sys_166: 3.80613727e-16 - art_sys_167: -2.05217950e-16 - art_sys_168: -3.65639870e-16 - art_sys_169: 9.06631161e-17 - art_sys_170: -3.82081334e-17 - art_sys_171: 4.07679228e-17 - art_sys_172: 6.12244524e-18 - art_sys_173: -2.85722285e-18 - art_sys_174: -2.87326670e-18 - art_sys_175: 1.35656381e-20 - art_sys_176: -1.20749730e-19 - art_sys_177: 3.11358292e-21 - art_sys_178: 9.32368508e-20 - art_sys_179: 7.64736979e-21 - art_sys_180: 1.87135264e-20 - art_sys_181: 6.09100417e-21 - art_sys_182: 2.41645449e-22 - art_sys_183: -1.61003363e-21 - art_sys_184: 1.43372305e-21 - art_sys_185: -3.43186698e-22 + art_sys_89: 5.12199170e-17 + art_sys_90: 1.21813743e-07 + art_sys_91: -1.55602437e-22 + art_sys_92: 5.38594665e-17 + art_sys_93: 1.64289669e-17 + art_sys_94: -1.32152216e-07 + art_sys_95: -5.11647233e-20 + art_sys_96: 7.40717708e-24 + art_sys_97: -1.82193932e-23 + art_sys_98: -2.44196173e-21 + art_sys_99: 5.89192267e-22 + art_sys_100: 1.27059904e-19 + art_sys_101: 2.77413407e-21 + art_sys_102: -1.09666060e-19 + art_sys_103: 1.40362434e-20 + art_sys_104: 2.47244196e-20 + art_sys_105: -1.11823464e-06 + art_sys_106: -8.80149254e-22 + art_sys_107: 1.75508338e-19 + art_sys_108: 3.74091465e-06 + art_sys_109: 7.35833397e-06 + art_sys_110: -7.58089820e-18 + art_sys_111: 1.04747189e-18 + art_sys_112: 1.01237469e-18 + art_sys_113: 2.23415562e-18 + art_sys_114: 2.00775749e-05 + art_sys_115: -1.71529960e-19 + art_sys_116: -2.77114359e-19 + art_sys_117: 1.57473773e-05 + art_sys_118: 3.21136812e-19 + art_sys_119: -3.53566395e-17 + art_sys_120: -1.22433888e-19 + art_sys_121: -6.80387199e-05 + art_sys_122: 4.56943065e-18 + art_sys_123: -7.74376747e-17 + art_sys_124: -6.32103002e-20 + art_sys_125: 4.70063663e-05 + art_sys_126: -3.55593215e-19 + art_sys_127: 2.99263403e-14 + art_sys_128: -8.64916617e-19 + art_sys_129: -1.12539978e-05 + art_sys_130: -9.46915173e-12 + art_sys_131: -3.03169400e-06 + art_sys_132: 4.94439991e-17 + art_sys_133: -1.70788940e-10 + art_sys_134: 1.04157483e-16 + art_sys_135: -3.13277655e-17 + art_sys_136: -8.79786319e-06 + art_sys_137: -4.81468349e-10 + art_sys_138: 8.30669058e-17 + art_sys_139: 4.02823400e-11 + art_sys_140: 6.23918607e-06 + art_sys_141: -2.59202410e-12 + art_sys_142: 8.04105740e-15 + art_sys_143: -2.20068981e-10 + art_sys_144: -3.14193219e-06 + art_sys_145: 2.60845982e-14 + art_sys_146: -5.14790414e-11 + art_sys_147: 1.34085744e-06 + art_sys_148: 4.71057382e-07 + art_sys_149: 1.55089891e-12 + art_sys_150: -2.76508044e-10 + art_sys_151: -9.47210283e-10 + art_sys_152: -1.79591426e-07 + art_sys_153: 7.26508682e-10 + art_sys_154: -1.25406189e-20 + art_sys_155: 4.14247880e-08 + art_sys_156: 0.0 + art_sys_157: -2.21861849e-11 + art_sys_158: 0.0 + art_sys_159: 1.18615748e-10 + art_sys_160: -6.64435552e-09 + art_sys_161: 1.54216932e-11 + art_sys_162: 1.54216932e-11 + art_sys_163: 2.04165845e-12 + art_sys_164: 2.04165845e-12 + art_sys_165: 2.25158415e-23 + art_sys_166: -1.13828132e-23 + art_sys_167: -0.0 + art_sys_168: 4.81627854e-18 + art_sys_169: 5.10565549e-18 + art_sys_170: 8.97765607e-18 + art_sys_171: -3.24895192e-18 + art_sys_172: -1.93092027e-18 + art_sys_173: -1.40972015e-18 + art_sys_174: 4.37170333e-19 + art_sys_175: 1.03071743e-19 + art_sys_176: -2.34937811e-19 + art_sys_177: 2.09244505e-20 + art_sys_178: 3.59099537e-21 + art_sys_179: -2.33354189e-21 + art_sys_180: 1.81622899e-22 + art_sys_181: 3.65019713e-20 + art_sys_182: -4.00799825e-21 + art_sys_183: -1.14269821e-22 + art_sys_184: 2.49021175e-22 + art_sys_185: 2.50779169e-22 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -38111,149 +38111,149 @@ bins: art_sys_40: 0.0 art_sys_41: 0.0 art_sys_42: 0.0 - art_sys_43: -1.96918620e-191 - art_sys_44: 1.20616108e-183 - art_sys_45: -7.97908006e-57 - art_sys_46: 4.85151204e-53 - art_sys_47: -1.20211195e-47 - art_sys_48: 1.39723296e-39 - art_sys_49: -1.77307418e-18 - art_sys_50: -2.39221073e-17 - art_sys_51: 8.71534268e-17 - art_sys_52: 1.64769873e-16 - art_sys_53: -4.06652585e-15 - art_sys_54: -3.74959397e-14 - art_sys_55: 9.70972737e-33 - art_sys_56: 6.00170618e-32 - art_sys_57: -2.91997367e-33 - art_sys_58: 6.03079124e-14 - art_sys_59: -1.42407827e-13 - art_sys_60: -2.01608368e-31 - art_sys_61: 9.13390944e-32 - art_sys_62: -1.08957916e-31 - art_sys_63: 1.70823076e-31 - art_sys_64: -1.86517272e-31 - art_sys_65: 3.67348290e-12 - art_sys_66: 1.66336433e-11 - art_sys_67: -5.56307498e-30 - art_sys_68: -1.24163681e-29 - art_sys_69: 7.01140276e-29 - art_sys_70: -6.92672984e-30 - art_sys_71: -3.15080884e-30 - art_sys_72: -8.03257930e-28 - art_sys_73: 4.22759662e-14 - art_sys_74: 1.19348840e-15 - art_sys_75: 2.75764420e-14 - art_sys_76: -7.58073353e-11 - art_sys_77: -4.13299606e-26 - art_sys_78: -1.18580691e-23 - art_sys_79: -6.00318444e-15 - art_sys_80: 1.96359933e-10 - art_sys_81: -2.99857068e-15 - art_sys_82: -4.90290052e-16 - art_sys_83: -9.81752275e-10 - art_sys_84: 1.25099212e-15 - art_sys_85: -2.82208924e-15 - art_sys_86: -1.35164566e-09 - art_sys_87: -9.34905513e-25 + art_sys_43: 0.0 + art_sys_44: 1.23197978e-223 + art_sys_45: 6.21328421e-217 + art_sys_46: 6.43643304e-167 + art_sys_47: 3.56364478e-172 + art_sys_48: -1.92113716e-164 + art_sys_49: 1.63918244e-155 + art_sys_50: -7.02810226e-148 + art_sys_51: 2.91606489e-137 + art_sys_52: 3.23987391e-154 + art_sys_53: 1.03473504e-150 + art_sys_54: 1.22431418e-145 + art_sys_55: 3.01891405e-142 + art_sys_56: 4.86848833e-139 + art_sys_57: 1.73241246e-60 + art_sys_58: 8.58440325e-47 + art_sys_59: -3.29414099e-58 + art_sys_60: 3.98280943e-55 + art_sys_61: 1.57007678e-40 + art_sys_62: -4.35828507e-55 + art_sys_63: -7.36184940e-45 + art_sys_64: -1.77307418e-18 + art_sys_65: 2.39221073e-17 + art_sys_66: 8.71534268e-17 + art_sys_67: 1.64769873e-16 + art_sys_68: 4.06652585e-15 + art_sys_69: 3.74959397e-14 + art_sys_70: -6.03079124e-14 + art_sys_71: 1.42407827e-13 + art_sys_72: -3.67348290e-12 + art_sys_73: 1.66336433e-11 + art_sys_74: 2.52167582e-30 + art_sys_75: 7.58073353e-11 + art_sys_76: 3.02595765e-14 + art_sys_77: -2.70637172e-14 + art_sys_78: -7.59479017e-15 + art_sys_79: 1.96359933e-10 + art_sys_80: -9.05950401e-15 + art_sys_81: 9.81752275e-10 + art_sys_82: 2.39880181e-22 + art_sys_83: -1.48112107e-15 + art_sys_84: -2.72797003e-15 + art_sys_85: 2.14617334e-15 + art_sys_86: -1.87642159e-15 + art_sys_87: -1.35164566e-09 art_sys_88: -1.39177891e-08 - art_sys_89: 2.31601952e-08 - art_sys_90: 7.42225224e-25 - art_sys_91: -2.63740958e-21 - art_sys_92: 5.01942493e-24 - art_sys_93: 9.48724965e-25 - art_sys_94: -2.66227951e-22 - art_sys_95: -7.12505464e-25 - art_sys_96: 2.85828873e-08 - art_sys_97: 2.58593813e-22 - art_sys_98: 1.30317718e-23 - art_sys_99: -4.71150158e-24 - art_sys_100: -4.94480453e-23 - art_sys_101: -7.09716504e-22 - art_sys_102: -3.80221047e-23 - art_sys_103: -8.14528228e-22 - art_sys_104: -1.04592406e-23 - art_sys_105: -1.12746232e-22 - art_sys_106: -6.47515288e-22 - art_sys_107: -3.11280909e-07 - art_sys_108: 1.30860882e-06 - art_sys_109: 1.94748343e-06 - art_sys_110: 8.93325995e-20 - art_sys_111: -3.03820471e-22 - art_sys_112: 2.22088904e-19 - art_sys_113: -6.85498423e-06 - art_sys_114: 6.96814429e-22 - art_sys_115: -9.16266697e-20 - art_sys_116: -1.03986713e-20 - art_sys_117: -3.11859716e-22 - art_sys_118: -2.78605101e-16 - art_sys_119: -7.73083662e-22 - art_sys_120: -5.87207569e-20 - art_sys_121: 1.71225085e-13 - art_sys_122: 9.45468767e-21 - art_sys_123: -2.22446093e-19 - art_sys_124: -1.46706302e-11 - art_sys_125: -6.93804097e-17 - art_sys_126: -6.07316169e-11 - art_sys_127: 2.36366815e-17 - art_sys_128: -6.98340979e-11 - art_sys_129: 1.74143098e-16 - art_sys_130: -5.58427428e-11 - art_sys_131: -1.26508823e-13 - art_sys_132: 4.63129161e-15 - art_sys_133: 3.27854966e-11 - art_sys_134: 4.19888977e-06 - art_sys_135: -3.93612574e-14 - art_sys_136: 4.72606828e-11 - art_sys_137: 2.07777459e-06 - art_sys_138: 5.37603532e-21 - art_sys_139: -2.36069669e-13 - art_sys_140: -8.80389967e-12 - art_sys_141: -8.86635750e-11 - art_sys_142: -3.48639915e-10 - art_sys_143: -8.28589307e-07 - art_sys_144: 2.72928154e-07 - art_sys_145: 8.36104734e-08 - art_sys_146: -0.0 - art_sys_147: 1.25120402e-08 - art_sys_148: 1.15102618e-10 - art_sys_149: 1.15102618e-10 - art_sys_150: -5.83712020e-11 - art_sys_151: -5.83712020e-11 - art_sys_152: -4.91437264e-11 - art_sys_153: 2.97429913e-09 - art_sys_154: -1.09877039e-09 - art_sys_155: 3.94168012e-21 - art_sys_156: -1.25793465e-24 - art_sys_157: 1.24366713e-24 - art_sys_158: 0.0 - art_sys_159: 1.26605656e-05 - art_sys_160: -1.11226984e-05 - art_sys_161: -4.64245126e-05 - art_sys_162: 3.38440809e-05 - art_sys_163: -7.92460370e-06 - art_sys_164: -2.71167056e-06 - art_sys_165: 6.40652555e-06 - art_sys_166: -6.51824180e-16 - art_sys_167: 3.68284872e-16 - art_sys_168: 6.37019774e-16 - art_sys_169: -1.58703677e-16 - art_sys_170: 6.72367185e-17 - art_sys_171: -7.04615985e-17 - art_sys_172: -1.05494018e-17 - art_sys_173: 4.97400736e-18 - art_sys_174: 4.91404938e-18 - art_sys_175: -2.53471860e-20 - art_sys_176: 2.06531242e-19 - art_sys_177: -3.75334710e-20 - art_sys_178: -1.48686560e-19 - art_sys_179: -2.96097995e-20 - art_sys_180: -3.12642578e-20 - art_sys_181: -1.38989571e-20 - art_sys_182: -1.30530214e-21 - art_sys_183: 3.65483253e-21 - art_sys_184: -2.90473108e-21 - art_sys_185: 7.06498591e-22 + art_sys_89: -1.06837090e-16 + art_sys_90: 2.31601951e-08 + art_sys_91: -7.01581236e-23 + art_sys_92: -3.17946138e-17 + art_sys_93: -5.74181513e-17 + art_sys_94: -2.85828867e-08 + art_sys_95: -9.13122419e-21 + art_sys_96: -1.55694863e-24 + art_sys_97: 3.33051388e-25 + art_sys_98: 8.95154252e-21 + art_sys_99: 5.13237476e-22 + art_sys_100: 1.91192989e-19 + art_sys_101: 5.70467618e-21 + art_sys_102: -1.95149333e-20 + art_sys_103: 3.41493672e-20 + art_sys_104: 2.56875442e-21 + art_sys_105: 3.11260862e-07 + art_sys_106: -1.42206536e-21 + art_sys_107: 3.11781756e-20 + art_sys_108: 1.30861107e-06 + art_sys_109: -1.94749315e-06 + art_sys_110: -1.44679275e-18 + art_sys_111: 1.74959078e-19 + art_sys_112: 1.73182389e-19 + art_sys_113: 4.14924959e-19 + art_sys_114: 6.85496085e-06 + art_sys_115: -2.82954224e-20 + art_sys_116: -4.84066625e-20 + art_sys_117: -1.26605068e-05 + art_sys_118: 5.93648281e-20 + art_sys_119: -7.61938745e-18 + art_sys_120: 4.74925845e-20 + art_sys_121: -1.11225969e-05 + art_sys_122: 8.49273028e-19 + art_sys_123: -4.81666950e-17 + art_sys_124: -3.62479097e-20 + art_sys_125: 4.64130227e-05 + art_sys_126: 2.94503808e-18 + art_sys_127: 9.89956814e-15 + art_sys_128: -2.39665801e-19 + art_sys_129: 3.38437503e-05 + art_sys_130: -3.54455518e-12 + art_sys_131: -7.91928980e-06 + art_sys_132: 1.11559994e-17 + art_sys_133: -9.98048637e-11 + art_sys_134: 9.29679170e-17 + art_sys_135: 5.30779595e-21 + art_sys_136: 2.71598838e-06 + art_sys_137: -4.91635272e-10 + art_sys_138: 1.88131826e-16 + art_sys_139: 2.39652688e-11 + art_sys_140: -6.40943158e-06 + art_sys_141: -2.42054811e-12 + art_sys_142: 7.58784864e-15 + art_sys_143: -2.09819467e-10 + art_sys_144: 4.18938535e-06 + art_sys_145: 1.75518912e-14 + art_sys_146: -1.37208428e-10 + art_sys_147: -2.07855148e-06 + art_sys_148: -8.02547579e-07 + art_sys_149: -7.99041978e-13 + art_sys_150: 1.56815766e-10 + art_sys_151: 1.02724436e-09 + art_sys_152: 3.20157470e-07 + art_sys_153: -6.58994266e-10 + art_sys_154: 2.15432574e-20 + art_sys_155: -7.83210739e-08 + art_sys_156: -0.0 + art_sys_157: 1.95741591e-11 + art_sys_158: -0.0 + art_sys_159: -9.94016633e-11 + art_sys_160: 1.15878007e-08 + art_sys_161: -2.42584524e-11 + art_sys_162: -2.42584524e-11 + art_sys_163: -9.99762420e-11 + art_sys_164: -9.99762420e-11 + art_sys_165: -4.01993432e-23 + art_sys_166: 2.04592115e-23 + art_sys_167: 0.0 + art_sys_168: -1.48411022e-17 + art_sys_169: -1.40469261e-17 + art_sys_170: -2.00773949e-17 + art_sys_171: 7.48184263e-18 + art_sys_172: 3.70245667e-18 + art_sys_173: 3.38088301e-18 + art_sys_174: -8.22440924e-19 + art_sys_175: -2.30172209e-19 + art_sys_176: 4.48248147e-19 + art_sys_177: -5.11324295e-20 + art_sys_178: -1.87988588e-21 + art_sys_179: 4.59139886e-21 + art_sys_180: -3.39978651e-22 + art_sys_181: -7.15745761e-20 + art_sys_182: 8.95346119e-21 + art_sys_183: 2.33300100e-22 + art_sys_184: -4.39656571e-22 + art_sys_185: -4.86143600e-22 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -38402,149 +38402,149 @@ bins: art_sys_40: 0.0 art_sys_41: 0.0 art_sys_42: 0.0 - art_sys_43: -1.42440754e-192 - art_sys_44: 8.72474599e-185 - art_sys_45: -5.77165868e-58 - art_sys_46: 3.50933583e-54 - art_sys_47: -8.69546342e-49 - art_sys_48: 1.01068690e-40 - art_sys_49: -1.28255124e-19 - art_sys_50: -2.01674009e-18 - art_sys_51: 7.14610663e-18 - art_sys_52: -4.49356031e-18 - art_sys_53: -4.09662878e-17 - art_sys_54: -6.18275584e-15 - art_sys_55: 7.88009539e-34 - art_sys_56: 1.50885022e-32 - art_sys_57: -1.94685075e-34 - art_sys_58: 1.31230127e-14 - art_sys_59: -3.48551495e-14 - art_sys_60: -4.86221414e-32 - art_sys_61: 2.15135785e-32 - art_sys_62: -2.82213937e-32 - art_sys_63: 4.53389120e-32 - art_sys_64: -4.63292485e-32 - art_sys_65: 3.78360604e-13 - art_sys_66: 2.94029784e-12 - art_sys_67: -1.44084462e-31 - art_sys_68: -2.60616531e-30 - art_sys_69: 1.19156123e-29 - art_sys_70: -2.19812412e-30 - art_sys_71: 1.14570660e-32 - art_sys_72: -1.48415208e-28 - art_sys_73: 1.06491034e-13 - art_sys_74: 1.60671163e-14 - art_sys_75: 9.10646646e-16 - art_sys_76: -1.40456897e-11 - art_sys_77: -7.65797973e-27 - art_sys_78: -2.19707127e-24 - art_sys_79: 6.33006538e-15 - art_sys_80: 2.45084184e-11 - art_sys_81: 1.59907060e-15 - art_sys_82: -1.75987616e-16 - art_sys_83: -1.47004730e-10 - art_sys_84: -2.66359292e-15 - art_sys_85: 4.70885407e-15 - art_sys_86: -1.95622703e-10 - art_sys_87: -1.35208700e-25 + art_sys_43: 0.0 + art_sys_44: 9.05473198e-225 + art_sys_45: 4.56660278e-218 + art_sys_46: 4.65692313e-168 + art_sys_47: 2.57838771e-173 + art_sys_48: -1.38999163e-165 + art_sys_49: 1.18599022e-156 + art_sys_50: -5.08501087e-149 + art_sys_51: 2.10984717e-138 + art_sys_52: 2.34413124e-155 + art_sys_53: 7.48657136e-152 + art_sys_54: 8.85822469e-147 + art_sys_55: 2.18426116e-143 + art_sys_56: 3.52247523e-140 + art_sys_57: 1.25313864e-61 + art_sys_58: 6.20951859e-48 + art_sys_59: -2.38281324e-59 + art_sys_60: 2.88096079e-56 + art_sys_61: 1.13571330e-41 + art_sys_62: -3.15258766e-56 + art_sys_63: -5.32518562e-46 + art_sys_64: -1.28255124e-19 + art_sys_65: 2.01674009e-18 + art_sys_66: 7.14610663e-18 + art_sys_67: -4.49356031e-18 + art_sys_68: 4.09662878e-17 + art_sys_69: 6.18275584e-15 + art_sys_70: -1.31230127e-14 + art_sys_71: 3.48551495e-14 + art_sys_72: -3.78360604e-13 + art_sys_73: 2.94029784e-12 + art_sys_74: 2.94385765e-32 + art_sys_75: 1.40456897e-11 + art_sys_76: 1.59741284e-14 + art_sys_77: 3.51801613e-14 + art_sys_78: 1.12163414e-14 + art_sys_79: 2.45084184e-11 + art_sys_80: 1.20734786e-14 + art_sys_81: 1.47004730e-10 + art_sys_82: 3.59205401e-23 + art_sys_83: 7.19256764e-16 + art_sys_84: 1.17978027e-15 + art_sys_85: -2.11800939e-15 + art_sys_86: 3.33108537e-15 + art_sys_87: -1.95622702e-10 art_sys_88: -1.44654575e-09 - art_sys_89: 1.84421450e-09 - art_sys_90: 1.19027110e-25 - art_sys_91: -3.30171573e-22 - art_sys_92: 5.93916810e-25 - art_sys_93: 1.28843684e-25 - art_sys_94: -3.98733503e-23 - art_sys_95: -9.08446765e-26 - art_sys_96: -6.42921545e-10 - art_sys_97: 3.87013445e-23 - art_sys_98: 1.83818601e-24 - art_sys_99: -7.68278991e-25 - art_sys_100: -7.33623494e-24 - art_sys_101: -8.87125343e-23 - art_sys_102: -4.74472955e-24 - art_sys_103: -1.25122270e-22 - art_sys_104: -1.64609752e-23 - art_sys_105: 1.24046274e-23 - art_sys_106: -4.84210690e-23 - art_sys_107: -1.57724805e-07 - art_sys_108: -4.51916023e-08 - art_sys_109: 1.18392740e-06 - art_sys_110: 1.27748169e-20 - art_sys_111: -5.27530832e-23 - art_sys_112: 2.26197398e-20 - art_sys_113: 9.43619492e-07 - art_sys_114: -1.70284769e-22 - art_sys_115: 3.11160400e-21 - art_sys_116: 9.21693963e-23 - art_sys_117: 7.62015373e-24 - art_sys_118: -9.69428802e-17 - art_sys_119: -6.67012506e-23 - art_sys_120: -5.25353788e-21 - art_sys_121: 6.47693737e-14 - art_sys_122: 1.07060087e-21 - art_sys_123: -2.10489160e-19 - art_sys_124: -9.25523733e-12 - art_sys_125: -3.52726789e-17 - art_sys_126: -5.90527118e-11 - art_sys_127: 1.94958198e-17 - art_sys_128: -1.20358624e-10 - art_sys_129: -7.09804802e-18 - art_sys_130: -8.64229159e-12 - art_sys_131: -4.46228531e-14 - art_sys_132: 1.91909202e-15 - art_sys_133: 1.93029177e-11 - art_sys_134: -4.30932240e-06 - art_sys_135: -3.98135976e-14 - art_sys_136: 4.58876049e-11 - art_sys_137: -2.71957875e-06 - art_sys_138: -3.91085701e-21 - art_sys_139: 7.80695359e-12 - art_sys_140: 9.05538045e-10 - art_sys_141: 7.26237924e-11 - art_sys_142: 1.35957161e-09 - art_sys_143: 1.26810171e-06 - art_sys_144: -4.58235411e-07 - art_sys_145: -1.48979562e-07 - art_sys_146: 0.0 - art_sys_147: -2.20004416e-08 - art_sys_148: -2.80202874e-10 - art_sys_149: -2.80202874e-10 - art_sys_150: 1.42711626e-10 - art_sys_151: 1.42711626e-10 - art_sys_152: 6.55540479e-11 - art_sys_153: -5.07122000e-09 - art_sys_154: 2.01871358e-09 - art_sys_155: -6.70841919e-21 - art_sys_156: 3.80282846e-24 - art_sys_157: -2.35015022e-24 - art_sys_158: -0.0 - art_sys_159: 5.20202866e-06 - art_sys_160: 8.88839693e-06 - art_sys_161: -7.35970613e-06 - art_sys_162: 3.33086068e-05 - art_sys_163: 2.43105337e-05 - art_sys_164: -4.38005855e-06 - art_sys_165: -2.45634130e-06 - art_sys_166: 1.03816977e-15 - art_sys_167: -5.86657430e-16 - art_sys_168: -1.01257310e-15 - art_sys_169: 2.54792357e-16 - art_sys_170: -1.06494319e-16 - art_sys_171: 1.10865086e-16 - art_sys_172: 1.74355922e-17 - art_sys_173: -7.61602528e-18 - art_sys_174: -7.46275168e-18 - art_sys_175: 4.50741549e-20 - art_sys_176: -2.40307364e-19 - art_sys_177: 1.13374561e-19 - art_sys_178: 2.02910855e-19 - art_sys_179: 9.03707787e-20 - art_sys_180: 3.65291473e-20 - art_sys_181: 3.08139627e-20 - art_sys_182: 1.21847916e-20 - art_sys_183: -8.10935491e-21 - art_sys_184: 5.72788708e-21 - art_sys_185: -1.41565036e-21 + art_sys_89: 2.97583360e-16 + art_sys_90: 1.84421450e-09 + art_sys_91: -1.05180319e-23 + art_sys_92: 1.19830893e-16 + art_sys_93: 1.22513172e-16 + art_sys_94: 6.42921531e-10 + art_sys_95: -9.84359784e-22 + art_sys_96: -2.51125738e-25 + art_sys_97: 4.32839379e-25 + art_sys_98: 1.34608453e-21 + art_sys_99: 7.17829355e-23 + art_sys_100: 2.72485380e-20 + art_sys_101: 8.29266089e-22 + art_sys_102: -2.11280290e-21 + art_sys_103: 4.98819619e-21 + art_sys_104: 8.06132956e-23 + art_sys_105: 1.57725632e-07 + art_sys_106: -2.47437539e-22 + art_sys_107: 2.49589288e-21 + art_sys_108: -4.51923320e-08 + art_sys_109: -1.18392333e-06 + art_sys_110: -1.14382371e-19 + art_sys_111: 1.73501318e-20 + art_sys_112: 1.70044829e-20 + art_sys_113: 3.44769269e-20 + art_sys_114: -9.43630111e-07 + art_sys_115: -2.83580317e-21 + art_sys_116: 4.44602198e-21 + art_sys_117: -5.20212024e-06 + art_sys_118: 2.86957506e-21 + art_sys_119: 1.79564128e-19 + art_sys_120: 2.18939119e-20 + art_sys_121: 8.88830615e-06 + art_sys_122: 6.10497527e-20 + art_sys_123: -3.24803490e-18 + art_sys_124: -7.46597519e-21 + art_sys_125: 7.35543375e-06 + art_sys_126: 1.02093086e-18 + art_sys_127: -8.51617161e-16 + art_sys_128: -1.13527319e-20 + art_sys_129: 3.33085008e-05 + art_sys_130: 3.46876189e-13 + art_sys_131: 2.43086528e-05 + art_sys_132: -1.04797347e-19 + art_sys_133: -6.14196965e-12 + art_sys_134: 1.09755265e-17 + art_sys_135: 2.31976884e-18 + art_sys_136: 4.36911441e-06 + art_sys_137: -7.94760739e-11 + art_sys_138: 3.19335907e-17 + art_sys_139: -9.05623409e-12 + art_sys_140: 2.45835262e-06 + art_sys_141: -3.86818983e-13 + art_sys_142: 1.10362928e-15 + art_sys_143: -2.65299498e-11 + art_sys_144: -4.29979925e-06 + art_sys_145: 5.76896735e-14 + art_sys_146: 4.52721243e-10 + art_sys_147: 2.72065414e-06 + art_sys_148: 1.23128371e-06 + art_sys_149: -1.21211921e-12 + art_sys_150: 1.50701899e-10 + art_sys_151: -4.73067165e-10 + art_sys_152: -5.29387978e-07 + art_sys_153: 7.88807668e-11 + art_sys_154: 2.48921081e-21 + art_sys_155: 1.41319089e-07 + art_sys_156: 0.0 + art_sys_157: 3.98123955e-12 + art_sys_158: 0.0 + art_sys_159: -5.26077933e-11 + art_sys_160: -1.88708540e-08 + art_sys_161: 3.64233976e-11 + art_sys_162: 3.64233976e-11 + art_sys_163: 3.98311924e-10 + art_sys_164: 3.98311924e-10 + art_sys_165: 6.63473508e-23 + art_sys_166: -3.40855347e-23 + art_sys_167: -0.0 + art_sys_168: 3.53739891e-17 + art_sys_169: 2.97635531e-17 + art_sys_170: 4.07629759e-17 + art_sys_171: -1.47292882e-17 + art_sys_172: -6.49573518e-18 + art_sys_173: -7.26435487e-18 + art_sys_174: 1.41295766e-18 + art_sys_175: 4.99786270e-19 + art_sys_176: -8.20475464e-19 + art_sys_177: 1.06751137e-19 + art_sys_178: -5.86491775e-21 + art_sys_179: -8.65250544e-21 + art_sys_180: 6.24064834e-22 + art_sys_181: 1.38867256e-19 + art_sys_182: -1.27659774e-20 + art_sys_183: -4.77536046e-22 + art_sys_184: 6.99326095e-22 + art_sys_185: 9.01687794e-22 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -38693,149 +38693,149 @@ bins: art_sys_40: 0.0 art_sys_41: 0.0 art_sys_42: 0.0 - art_sys_43: -9.75493542e-194 - art_sys_44: 5.97506901e-186 - art_sys_45: -3.95267303e-59 - art_sys_46: 2.40333981e-55 - art_sys_47: -5.95501668e-50 - art_sys_48: 6.92160622e-42 - art_sys_49: -8.78344678e-21 - art_sys_50: -1.44901701e-19 - art_sys_51: 4.82086974e-19 - art_sys_52: -2.09907885e-18 - art_sys_53: 3.06089000e-17 - art_sys_54: -7.13436485e-16 - art_sys_55: 4.53180424e-35 - art_sys_56: 2.02923008e-33 - art_sys_57: -6.37541693e-36 - art_sys_58: 1.69047730e-15 - art_sys_59: -4.56264222e-15 - art_sys_60: -6.34820702e-33 - art_sys_61: 2.79280511e-33 - art_sys_62: -3.72579227e-33 - art_sys_63: 6.04112589e-33 - art_sys_64: -6.07222442e-33 - art_sys_65: 1.98145605e-14 - art_sys_66: 3.10646793e-13 - art_sys_67: 1.91322120e-32 - art_sys_68: -3.07593675e-31 - art_sys_69: 1.22308966e-30 - art_sys_70: -3.04679032e-31 - art_sys_71: 4.34022175e-32 - art_sys_72: -1.56319238e-29 - art_sys_73: -5.79793302e-14 - art_sys_74: 2.05961446e-14 - art_sys_75: 2.93231539e-14 - art_sys_76: -1.48145740e-12 - art_sys_77: -8.07732798e-28 - art_sys_78: -2.31734561e-25 - art_sys_79: -7.97452501e-15 - art_sys_80: 2.25168496e-12 - art_sys_81: -4.33022526e-15 - art_sys_82: 7.97307656e-16 - art_sys_83: -1.31213614e-11 - art_sys_84: 3.90867121e-15 - art_sys_85: -5.44408726e-15 - art_sys_86: 3.83982387e-12 - art_sys_87: -1.27413359e-26 + art_sys_43: 0.0 + art_sys_44: 6.23986386e-226 + art_sys_45: 3.14697106e-219 + art_sys_46: 3.18952546e-169 + art_sys_47: 1.76593708e-174 + art_sys_48: -9.52004914e-167 + art_sys_49: 8.12284398e-158 + art_sys_50: -3.48272264e-150 + art_sys_51: 1.44503379e-139 + art_sys_52: 1.60549488e-156 + art_sys_53: 5.12755081e-153 + art_sys_54: 6.06699582e-148 + art_sys_55: 1.49599991e-144 + art_sys_56: 2.41254238e-141 + art_sys_57: 8.58201702e-63 + art_sys_58: 4.25253781e-49 + art_sys_59: -1.63185007e-60 + art_sys_60: 1.97300232e-57 + art_sys_61: 7.77783928e-43 + art_sys_62: -2.15898969e-57 + art_sys_63: -3.64690963e-47 + art_sys_64: -8.78344678e-21 + art_sys_65: 1.44901701e-19 + art_sys_66: 4.82086974e-19 + art_sys_67: -2.09907885e-18 + art_sys_68: -3.06089000e-17 + art_sys_69: 7.13436485e-16 + art_sys_70: -1.69047730e-15 + art_sys_71: 4.56264222e-15 + art_sys_72: -1.98145605e-14 + art_sys_73: 3.10646793e-13 + art_sys_74: -2.90913592e-32 + art_sys_75: 1.48145740e-12 + art_sys_76: -4.77958445e-14 + art_sys_77: 2.85188180e-14 + art_sys_78: 9.18444343e-15 + art_sys_79: 2.25168496e-12 + art_sys_80: -1.99224990e-14 + art_sys_81: 1.31213614e-11 + art_sys_82: 3.20618901e-24 + art_sys_83: 6.10962088e-16 + art_sys_84: -2.36634943e-15 + art_sys_85: 4.15197729e-15 + art_sys_86: -6.07647426e-15 + art_sys_87: 3.83982386e-12 art_sys_88: -1.42885919e-10 - art_sys_89: -5.89754172e-11 - art_sys_90: 1.29732384e-26 - art_sys_91: -3.03161934e-23 - art_sys_92: 4.79946139e-26 - art_sys_93: 1.48254577e-26 - art_sys_94: -3.56086716e-24 - art_sys_95: -6.03049683e-27 - art_sys_96: -1.34104087e-09 - art_sys_97: 3.44805116e-24 - art_sys_98: 1.19334770e-25 - art_sys_99: -8.80445195e-26 - art_sys_100: -5.61122457e-25 - art_sys_101: -8.18386367e-24 - art_sys_102: -4.34898232e-25 - art_sys_103: 1.55651011e-24 - art_sys_104: -2.51552913e-24 - art_sys_105: 1.09440039e-23 - art_sys_106: -5.72947375e-24 - art_sys_107: -1.12969742e-08 - art_sys_108: -1.06567245e-07 - art_sys_109: 7.54830980e-08 - art_sys_110: -2.25312917e-22 - art_sys_111: -1.39563833e-24 - art_sys_112: 2.02798231e-21 - art_sys_113: 8.77189328e-07 - art_sys_114: -1.25821366e-22 - art_sys_115: 4.65921684e-21 - art_sys_116: -4.98508574e-22 - art_sys_117: 2.33817819e-23 - art_sys_118: -1.09632867e-18 - art_sys_119: 1.16267490e-24 - art_sys_120: 5.37917532e-22 - art_sys_121: 1.29331189e-15 - art_sys_122: 1.51026160e-22 - art_sys_123: -2.69817955e-20 - art_sys_124: -2.58560318e-13 - art_sys_125: -2.30480890e-18 - art_sys_126: -6.04982610e-12 - art_sys_127: 2.54927749e-18 - art_sys_128: -2.21144800e-11 - art_sys_129: -2.76770350e-17 - art_sys_130: 5.64429792e-12 - art_sys_131: 1.28515288e-14 - art_sys_132: -1.49434512e-15 - art_sys_133: 5.72734535e-11 - art_sys_134: 1.96929849e-06 - art_sys_135: -5.49122652e-14 - art_sys_136: 4.88329009e-11 - art_sys_137: 3.01876112e-06 - art_sys_138: -2.78979820e-20 - art_sys_139: -6.33440616e-12 - art_sys_140: -7.47517484e-10 - art_sys_141: 4.04889173e-10 - art_sys_142: 9.00606149e-10 - art_sys_143: -1.80814062e-06 - art_sys_144: 7.62273163e-07 - art_sys_145: 2.72290206e-07 - art_sys_146: 0.0 - art_sys_147: 3.99066134e-08 - art_sys_148: -3.13958125e-10 - art_sys_149: -3.13958125e-10 - art_sys_150: 1.49403913e-12 - art_sys_151: 1.49403913e-12 - art_sys_152: -2.15783956e-10 - art_sys_153: 8.79381706e-09 - art_sys_154: -3.89256715e-09 - art_sys_155: 1.16537508e-20 - art_sys_156: -9.22626337e-24 - art_sys_157: 4.72533969e-24 - art_sys_158: 0.0 - art_sys_159: -3.93260091e-07 - art_sys_160: 3.44336449e-06 - art_sys_161: 5.73727255e-06 - art_sys_162: 4.80819697e-06 - art_sys_163: 2.12872198e-05 - art_sys_164: 1.77156763e-05 - art_sys_165: -2.75837259e-06 - art_sys_166: -1.60452790e-15 - art_sys_167: 9.29242278e-16 - art_sys_168: 1.56053481e-15 - art_sys_169: -3.96544457e-16 - art_sys_170: 1.61376466e-16 - art_sys_171: -1.66642415e-16 - art_sys_172: -2.52216697e-17 - art_sys_173: 1.07534841e-17 - art_sys_174: 1.05356170e-17 - art_sys_175: -8.22210283e-20 - art_sys_176: 1.72231651e-19 - art_sys_177: -3.27467023e-19 - art_sys_178: -2.13461179e-19 - art_sys_179: -2.51858516e-19 - art_sys_180: -8.75221372e-21 - art_sys_181: -7.08357604e-20 - art_sys_182: -2.87678364e-20 - art_sys_183: 1.87952239e-20 - art_sys_184: -1.18278239e-20 - art_sys_185: 2.95981701e-21 + art_sys_89: -4.49076490e-16 + art_sys_90: -5.89754170e-11 + art_sys_91: -5.74723420e-25 + art_sys_92: -1.89712677e-16 + art_sys_93: -8.66190061e-17 + art_sys_94: 1.34104084e-09 + art_sys_95: -8.27162675e-23 + art_sys_96: 3.76140307e-26 + art_sys_97: 1.40299084e-26 + art_sys_98: -4.19966322e-23 + art_sys_99: -7.45784747e-25 + art_sys_100: -5.49206544e-22 + art_sys_101: -1.56411737e-23 + art_sys_102: -1.83351780e-22 + art_sys_103: -9.77079735e-23 + art_sys_104: 3.83135795e-24 + art_sys_105: 1.12986350e-08 + art_sys_106: -1.36993770e-23 + art_sys_107: -3.42843089e-23 + art_sys_108: -1.06567546e-07 + art_sys_109: -7.54812558e-08 + art_sys_110: 4.07846257e-21 + art_sys_111: 1.40661956e-21 + art_sys_112: 1.19286030e-21 + art_sys_113: -2.94117436e-22 + art_sys_114: -8.77188817e-07 + art_sys_115: -2.06999419e-22 + art_sys_116: 2.89473290e-21 + art_sys_117: 3.93231702e-07 + art_sys_118: -9.28890294e-22 + art_sys_119: 3.58613369e-19 + art_sys_120: 1.63786161e-21 + art_sys_121: 3.44333428e-06 + art_sys_122: -3.12487228e-21 + art_sys_123: 2.78128558e-18 + art_sys_124: 8.18229398e-22 + art_sys_125: -5.73664135e-06 + art_sys_126: 1.15413516e-20 + art_sys_127: -9.45536620e-16 + art_sys_128: 9.14278180e-21 + art_sys_129: 4.80818242e-06 + art_sys_130: 4.21236026e-13 + art_sys_131: 2.12609933e-05 + art_sys_132: -5.02597470e-19 + art_sys_133: 1.52059489e-11 + art_sys_134: -1.52990868e-17 + art_sys_135: 1.07483561e-18 + art_sys_136: -1.77247943e-05 + art_sys_137: 6.10736748e-11 + art_sys_138: -2.22089477e-17 + art_sys_139: -8.91128933e-12 + art_sys_140: 2.75837818e-06 + art_sys_141: 2.94586510e-13 + art_sys_142: -9.91901086e-16 + art_sys_143: 3.03454422e-11 + art_sys_144: 1.96510520e-06 + art_sys_145: 4.11561495e-14 + art_sys_146: 3.91322339e-10 + art_sys_147: -3.02008041e-06 + art_sys_148: -1.76101687e-06 + art_sys_149: -4.27053794e-13 + art_sys_150: 2.29180491e-11 + art_sys_151: -6.86586020e-10 + art_sys_152: 8.62882265e-07 + art_sys_153: 2.51806133e-10 + art_sys_154: -1.19679346e-20 + art_sys_155: -2.61658913e-07 + art_sys_156: 0.0 + art_sys_157: -1.28886567e-11 + art_sys_158: -0.0 + art_sys_159: 1.29560893e-10 + art_sys_160: 3.14990862e-08 + art_sys_161: -3.98526035e-11 + art_sys_162: -3.98526035e-11 + art_sys_163: -1.14472428e-09 + art_sys_164: -1.14472428e-09 + art_sys_165: -1.07591011e-22 + art_sys_166: 5.58758239e-23 + art_sys_167: 0.0 + art_sys_168: -6.34208486e-17 + art_sys_169: -5.12375353e-17 + art_sys_170: -8.50544025e-17 + art_sys_171: 2.64966784e-17 + art_sys_172: 1.25273984e-17 + art_sys_173: 1.51315844e-17 + art_sys_174: -2.51896702e-18 + art_sys_175: -1.13025769e-18 + art_sys_176: 1.55906047e-18 + art_sys_177: -2.33454921e-19 + art_sys_178: 2.69084004e-20 + art_sys_179: 1.66103059e-20 + art_sys_180: -1.25366399e-21 + art_sys_181: -2.83029588e-19 + art_sys_182: 2.79535427e-20 + art_sys_183: 7.23483534e-22 + art_sys_184: -9.76662327e-22 + art_sys_185: -1.69773957e-21 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -38984,149 +38984,149 @@ bins: art_sys_40: 0.0 art_sys_41: 0.0 art_sys_42: 0.0 - art_sys_43: -6.57551325e-195 - art_sys_44: 4.02761718e-187 - art_sys_45: -2.66437951e-60 - art_sys_46: 1.62002000e-56 - art_sys_47: -4.01409990e-51 - art_sys_48: 4.66564921e-43 - art_sys_49: -5.92066063e-22 - art_sys_50: -9.51577016e-21 - art_sys_51: 2.87793198e-20 - art_sys_52: -2.70545254e-19 - art_sys_53: 4.43295628e-18 - art_sys_54: -6.67668516e-17 - art_sys_55: 2.21611510e-36 - art_sys_56: 1.99890027e-34 - art_sys_57: 1.17271877e-37 - art_sys_58: 1.64150633e-16 - art_sys_59: -4.28305986e-16 - art_sys_60: -5.97329212e-34 - art_sys_61: 2.62890669e-34 - art_sys_62: -3.45121145e-34 - art_sys_63: 5.66143146e-34 - art_sys_64: -5.69900740e-34 - art_sys_65: 3.66411013e-17 - art_sys_66: 2.25923695e-14 - art_sys_67: 5.79741977e-33 - art_sys_68: -2.47921145e-32 - art_sys_69: 8.64003171e-32 - art_sys_70: -2.72062596e-32 - art_sys_71: 6.07715370e-33 - art_sys_72: -9.56413944e-31 - art_sys_73: 6.57064813e-14 - art_sys_74: -1.30054331e-14 - art_sys_75: 3.11833018e-14 - art_sys_76: -9.05762821e-14 - art_sys_77: -4.93832498e-29 - art_sys_78: -1.41682147e-26 - art_sys_79: 2.02174965e-14 - art_sys_80: 3.97791468e-13 - art_sys_81: 4.00682725e-15 - art_sys_82: -3.51380545e-16 - art_sys_83: -1.14483058e-12 - art_sys_84: -5.12364314e-15 - art_sys_85: 7.82347428e-15 - art_sys_86: 4.40485787e-12 - art_sys_87: -1.34975202e-27 + art_sys_43: 0.0 + art_sys_44: 4.19883277e-227 + art_sys_45: 2.11761113e-220 + art_sys_46: 2.14986512e-170 + art_sys_47: 1.19031078e-175 + art_sys_48: -6.41688609e-168 + art_sys_49: 5.47511508e-159 + art_sys_50: -2.34749151e-151 + art_sys_51: 9.74009387e-141 + art_sys_52: 1.08216645e-157 + art_sys_53: 3.45617013e-154 + art_sys_54: 4.08939288e-149 + art_sys_55: 1.00836255e-145 + art_sys_56: 1.62614808e-142 + art_sys_57: 5.78488280e-64 + art_sys_58: 2.86650944e-50 + art_sys_59: -1.09998167e-61 + art_sys_60: 1.32994228e-58 + art_sys_61: 5.24281048e-44 + art_sys_62: -1.45531261e-58 + art_sys_63: -2.45827348e-48 + art_sys_64: -5.92066063e-22 + art_sys_65: 9.51577016e-21 + art_sys_66: 2.87793198e-20 + art_sys_67: -2.70545254e-19 + art_sys_68: -4.43295628e-18 + art_sys_69: 6.67668516e-17 + art_sys_70: -1.64150633e-16 + art_sys_71: 4.28305986e-16 + art_sys_72: -3.66411013e-17 + art_sys_73: 2.25923695e-14 + art_sys_74: -4.35188619e-33 + art_sys_75: 9.05762821e-14 + art_sys_76: 2.15412961e-15 + art_sys_77: -2.50141717e-14 + art_sys_78: -1.17542237e-14 + art_sys_79: 3.97791468e-13 + art_sys_80: 1.91276989e-14 + art_sys_81: 1.14483058e-12 + art_sys_82: 2.79676122e-25 + art_sys_83: -4.59681060e-15 + art_sys_84: 6.16401208e-15 + art_sys_85: -8.66672118e-15 + art_sys_86: 1.14937073e-14 + art_sys_87: 4.40485786e-12 art_sys_88: -3.78421880e-11 - art_sys_89: 9.29289626e-12 - art_sys_90: 1.33312939e-27 - art_sys_91: -5.30818909e-24 - art_sys_92: 9.13028098e-27 - art_sys_93: 2.51118612e-27 - art_sys_94: -3.10716393e-25 - art_sys_95: -7.96409108e-28 - art_sys_96: -1.93531809e-10 - art_sys_97: 3.00272073e-25 - art_sys_98: 5.76985073e-27 - art_sys_99: -9.26828531e-27 - art_sys_100: -3.23275759e-26 - art_sys_101: -1.44362570e-24 - art_sys_102: -7.67582394e-26 - art_sys_103: 3.03157936e-24 - art_sys_104: 5.93418979e-25 - art_sys_105: 1.49477260e-24 - art_sys_106: -4.97686706e-24 - art_sys_107: 6.80713183e-09 - art_sys_108: -1.96233312e-08 - art_sys_109: -7.00393019e-08 - art_sys_110: -2.75370963e-22 - art_sys_111: 1.38556458e-24 - art_sys_112: 5.57853931e-22 - art_sys_113: 1.05872820e-07 - art_sys_114: -1.51505533e-23 - art_sys_115: 6.65693767e-22 - art_sys_116: -2.04194816e-22 - art_sys_117: 2.55941355e-24 - art_sys_118: 5.40161678e-18 - art_sys_119: -6.88583509e-25 - art_sys_120: 1.36334948e-22 - art_sys_121: -3.46780203e-15 - art_sys_122: 3.50779691e-23 - art_sys_123: 1.50182200e-20 - art_sys_124: 8.49744249e-13 - art_sys_125: 2.33938692e-18 - art_sys_126: 4.82235906e-12 - art_sys_127: -1.62670942e-18 - art_sys_128: 1.29381341e-11 - art_sys_129: -1.90079225e-17 - art_sys_130: 4.69962178e-12 - art_sys_131: 1.30262652e-14 - art_sys_132: -1.12445622e-15 - art_sys_133: 3.05249761e-11 - art_sys_134: 1.48209960e-06 - art_sys_135: -3.11150668e-14 - art_sys_136: 2.39325784e-11 - art_sys_137: -1.45194372e-06 - art_sys_138: -1.75569948e-20 - art_sys_139: -8.54787293e-12 - art_sys_140: -9.95416622e-10 - art_sys_141: 2.58955992e-10 - art_sys_142: 9.94073484e-12 - art_sys_143: 2.05127674e-06 - art_sys_144: -1.11003193e-06 - art_sys_145: -4.62440569e-07 - art_sys_146: -0.0 - art_sys_147: -6.85504571e-08 - art_sys_148: 2.74111440e-10 - art_sys_149: 2.74111440e-10 - art_sys_150: -4.23974785e-12 - art_sys_151: -4.23974785e-12 - art_sys_152: 2.64650494e-10 - art_sys_153: -1.45179683e-08 - art_sys_154: 7.32839992e-09 - art_sys_155: -1.92546452e-20 - art_sys_156: 1.49343992e-23 - art_sys_157: -9.22115052e-24 + art_sys_89: 5.53848982e-16 + art_sys_90: 9.29289625e-12 + art_sys_91: 2.41944749e-26 + art_sys_92: 2.36183465e-16 + art_sys_93: 1.12298119e-16 + art_sys_94: 1.93531805e-10 + art_sys_95: -1.97442576e-23 + art_sys_96: 1.61086542e-26 + art_sys_97: -1.08065578e-26 + art_sys_98: -3.66721896e-23 + art_sys_99: -1.33244728e-24 + art_sys_100: -6.01583201e-22 + art_sys_101: -1.86290656e-23 + art_sys_102: -4.38311766e-23 + art_sys_103: -1.13998768e-22 + art_sys_104: 1.06726533e-23 + art_sys_105: -6.80683356e-09 + art_sys_106: 1.75732559e-24 + art_sys_107: 2.43827014e-23 + art_sys_108: -1.96233415e-08 + art_sys_109: 7.00393742e-08 + art_sys_110: -5.18543799e-22 + art_sys_111: 4.14913490e-22 + art_sys_112: 3.56169273e-22 + art_sys_113: 3.05755123e-22 + art_sys_114: -1.05871687e-07 + art_sys_115: -6.09617572e-23 + art_sys_116: 2.77558659e-22 + art_sys_117: 5.78823735e-07 + art_sys_118: -9.20846753e-23 + art_sys_119: 5.12916157e-20 + art_sys_120: -8.82289973e-22 + art_sys_121: -2.48203945e-07 + art_sys_122: 6.71466217e-22 + art_sys_123: 7.49295686e-19 + art_sys_124: 5.58842782e-22 + art_sys_125: -2.23001346e-06 + art_sys_126: -7.08549898e-20 + art_sys_127: -1.14808647e-16 + art_sys_128: 2.43055651e-21 + art_sys_129: -3.89975548e-06 + art_sys_130: 6.20325304e-14 + art_sys_131: 2.84690523e-06 + art_sys_132: -8.12458300e-20 + art_sys_133: 4.53383094e-12 + art_sys_134: -5.21757867e-18 + art_sys_135: 1.78810366e-19 + art_sys_136: -1.46249928e-05 + art_sys_137: 2.38412153e-11 + art_sys_138: -8.14090376e-18 + art_sys_139: -8.36661861e-13 + art_sys_140: -1.20338974e-05 + art_sys_141: 1.16694746e-13 + art_sys_142: -3.69501894e-16 + art_sys_143: 1.05158467e-11 + art_sys_144: 1.47823369e-06 + art_sys_145: 4.96971561e-15 + art_sys_146: 5.49583416e-11 + art_sys_147: 1.45302355e-06 + art_sys_148: 2.01033382e-06 + art_sys_149: -2.26978519e-12 + art_sys_150: 4.04840106e-10 + art_sys_151: 1.88526610e-09 + art_sys_152: -1.22292557e-06 + art_sys_153: -1.54796167e-09 + art_sys_154: 7.27227076e-20 + art_sys_155: 4.51691626e-07 + art_sys_156: -0.0 + art_sys_157: 6.59186796e-11 art_sys_158: -0.0 - art_sys_159: -5.78819879e-07 - art_sys_160: -2.48208396e-07 - art_sys_161: 2.23076489e-06 - art_sys_162: -3.89976142e-06 - art_sys_163: 2.86444549e-06 - art_sys_164: 1.46259813e-05 - art_sys_165: 1.20307351e-05 - art_sys_166: 2.20470425e-15 - art_sys_167: -1.21500846e-15 - art_sys_168: -2.05097316e-15 - art_sys_169: 5.29701358e-16 - art_sys_170: -2.04307208e-16 - art_sys_171: 2.09728496e-16 - art_sys_172: 3.03974878e-17 - art_sys_173: -1.22006967e-17 - art_sys_174: -1.15598528e-17 - art_sys_175: 1.39606051e-19 - art_sys_176: 1.97796853e-19 - art_sys_177: 8.43512013e-19 - art_sys_178: 3.77940177e-20 - art_sys_179: 6.02427475e-19 - art_sys_180: -8.03609150e-20 - art_sys_181: 1.50132787e-19 - art_sys_182: 6.88652405e-20 - art_sys_183: -4.00803841e-20 - art_sys_184: 2.29634676e-20 - art_sys_185: -5.77272551e-21 + art_sys_159: -4.52036878e-10 + art_sys_160: -4.97135795e-08 + art_sys_161: 3.54092005e-11 + art_sys_162: 3.54092005e-11 + art_sys_163: 2.81351842e-09 + art_sys_164: 2.81351842e-09 + art_sys_165: 1.45415313e-22 + art_sys_166: -7.68962190e-23 + art_sys_167: -0.0 + art_sys_168: 1.71673858e-16 + art_sys_169: 1.01636370e-16 + art_sys_170: 1.60860056e-16 + art_sys_171: -4.12980502e-17 + art_sys_172: -2.23431188e-17 + art_sys_173: -2.81792485e-17 + art_sys_174: 4.12905387e-18 + art_sys_175: 2.31849576e-18 + art_sys_176: -2.79491023e-18 + art_sys_177: 4.79739620e-19 + art_sys_178: -7.15231260e-20 + art_sys_179: -2.93708793e-20 + art_sys_180: 2.55158740e-21 + art_sys_181: 5.62339049e-19 + art_sys_182: -4.85020438e-20 + art_sys_183: -3.03456968e-22 + art_sys_184: 7.66684898e-22 + art_sys_185: 2.93291260e-21 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -39275,149 +39275,149 @@ bins: art_sys_40: 0.0 art_sys_41: 0.0 art_sys_42: 0.0 - art_sys_43: -4.18179152e-196 - art_sys_44: 2.56142064e-188 - art_sys_45: -1.69444976e-61 - art_sys_46: 1.03027459e-57 - art_sys_47: -2.55282350e-52 - art_sys_48: 2.96718548e-44 - art_sys_49: -3.76532772e-23 - art_sys_50: -5.78354577e-22 - art_sys_51: 1.52023090e-21 - art_sys_52: -2.58532840e-20 - art_sys_53: 3.93258845e-19 - art_sys_54: -5.65994534e-18 - art_sys_55: 1.65075395e-37 - art_sys_56: 1.65587610e-35 - art_sys_57: 1.79037230e-38 - art_sys_58: 1.36499601e-17 - art_sys_59: -3.28877015e-17 - art_sys_60: -4.61919346e-35 - art_sys_61: 2.04407329e-35 - art_sys_62: -2.56263162e-35 - art_sys_63: 4.26986590e-35 - art_sys_64: -4.31060249e-35 - art_sys_65: -2.41137039e-17 - art_sys_66: 1.39559268e-15 - art_sys_67: 4.19568763e-34 - art_sys_68: -1.57730509e-33 - art_sys_69: 5.28191799e-33 - art_sys_70: -1.77552533e-33 - art_sys_71: 4.27675922e-34 - art_sys_72: -3.14472660e-32 - art_sys_73: 4.64122823e-14 - art_sys_74: -2.70936313e-14 - art_sys_75: -7.01905612e-15 - art_sys_76: -2.94588761e-15 - art_sys_77: -1.60574860e-30 - art_sys_78: -4.60806170e-28 - art_sys_79: -3.40774591e-14 - art_sys_80: 1.08022736e-13 - art_sys_81: -1.19901687e-15 - art_sys_82: 1.59419733e-15 - art_sys_83: -2.52222204e-13 - art_sys_84: 3.53470518e-15 - art_sys_85: -6.35163734e-15 - art_sys_86: 2.52909342e-13 - art_sys_87: -2.58827688e-28 + art_sys_43: 0.0 + art_sys_44: 2.66102653e-228 + art_sys_45: 1.34204425e-221 + art_sys_46: 1.36713111e-171 + art_sys_47: 7.56936275e-177 + art_sys_48: -4.08059302e-169 + art_sys_49: 3.48170687e-160 + art_sys_50: -1.49280466e-152 + art_sys_51: 6.19387013e-142 + art_sys_52: 6.88165691e-159 + art_sys_53: 2.19782984e-155 + art_sys_54: 2.60050557e-150 + art_sys_55: 6.41232697e-147 + art_sys_56: 1.03409168e-143 + art_sys_57: 3.67897788e-65 + art_sys_58: 1.82299715e-51 + art_sys_59: -6.99548872e-63 + art_sys_60: 8.45795568e-60 + art_sys_61: 3.33423933e-45 + art_sys_62: -9.25527955e-60 + art_sys_63: -1.56337372e-49 + art_sys_64: -3.76532772e-23 + art_sys_65: 5.78354577e-22 + art_sys_66: 1.52023090e-21 + art_sys_67: -2.58532840e-20 + art_sys_68: -3.93258845e-19 + art_sys_69: 5.65994534e-18 + art_sys_70: -1.36499601e-17 + art_sys_71: 3.28877015e-17 + art_sys_72: 2.41137039e-17 + art_sys_73: 1.39559268e-15 + art_sys_74: -3.08530242e-34 + art_sys_75: 2.94588761e-15 + art_sys_76: -2.73419951e-14 + art_sys_77: 9.02109284e-15 + art_sys_78: 1.85862719e-14 + art_sys_79: 1.08022736e-13 + art_sys_80: -4.32106095e-16 + art_sys_81: 2.52222204e-13 + art_sys_82: 6.16097138e-26 + art_sys_83: 1.25179577e-14 + art_sys_84: -1.15892998e-14 + art_sys_85: 1.39222710e-14 + art_sys_86: -1.80528728e-14 + art_sys_87: 2.52909341e-13 art_sys_88: -1.04500086e-11 - art_sys_89: 1.62539919e-11 - art_sys_90: 1.84542260e-28 - art_sys_91: -1.43922262e-24 - art_sys_92: 2.87883233e-27 - art_sys_93: 5.12500918e-28 - art_sys_94: -6.83550439e-26 - art_sys_95: -3.36962049e-28 - art_sys_96: 2.39033560e-11 - art_sys_97: 6.64688125e-26 - art_sys_98: 3.41193004e-27 - art_sys_99: -1.10013427e-27 - art_sys_100: -1.04745418e-26 - art_sys_101: -3.89969861e-25 - art_sys_102: -2.08940019e-26 - art_sys_103: 2.76346206e-25 - art_sys_104: 2.70323374e-25 - art_sys_105: -2.91194760e-25 - art_sys_106: -1.36908254e-24 - art_sys_107: 1.98429394e-09 - art_sys_108: 1.74686518e-09 - art_sys_109: -1.98285146e-08 - art_sys_110: -1.37512632e-23 - art_sys_111: 2.05338135e-25 - art_sys_112: 1.66172785e-22 - art_sys_113: -4.07444695e-08 - art_sys_114: 5.56629152e-24 - art_sys_115: -7.87141679e-23 - art_sys_116: -3.50654019e-23 - art_sys_117: -4.59379233e-25 - art_sys_118: 1.16447608e-18 - art_sys_119: -9.12051098e-25 - art_sys_120: -8.52605076e-23 - art_sys_121: -7.64632836e-16 - art_sys_122: 2.89687397e-24 - art_sys_123: 6.52749460e-21 - art_sys_124: 2.08104245e-13 - art_sys_125: 7.12088955e-19 - art_sys_126: 1.63817581e-12 - art_sys_127: -6.26694075e-19 - art_sys_128: 5.40703915e-12 - art_sys_129: -2.54125921e-18 - art_sys_130: 6.54902483e-13 - art_sys_131: 1.55475760e-15 - art_sys_132: -6.60833680e-17 - art_sys_133: -1.49653214e-13 - art_sys_134: -8.36394490e-06 - art_sys_135: -1.82533622e-15 - art_sys_136: 4.24028090e-13 - art_sys_137: -9.85121434e-07 - art_sys_138: -7.28967887e-22 - art_sys_139: -1.73121513e-12 - art_sys_140: -1.99935953e-10 - art_sys_141: 2.02393816e-11 - art_sys_142: -1.40838587e-10 - art_sys_143: -1.10046019e-06 - art_sys_144: 1.31365372e-06 - art_sys_145: 7.01397876e-07 - art_sys_146: -0.0 - art_sys_147: 1.11427788e-07 - art_sys_148: -3.87632000e-10 - art_sys_149: -3.87632000e-10 - art_sys_150: 2.48370738e-11 - art_sys_151: 2.48370738e-11 - art_sys_152: -3.73800751e-10 - art_sys_153: 2.32126265e-08 - art_sys_154: -1.31754219e-08 - art_sys_155: 3.11718776e-20 - art_sys_156: -2.81096134e-23 - art_sys_157: 1.73970016e-23 + art_sys_89: -7.46835193e-16 + art_sys_90: 1.62539918e-11 + art_sys_91: -6.38362092e-27 + art_sys_92: -2.51528937e-16 + art_sys_93: 8.13227927e-18 + art_sys_94: -2.39033555e-11 + art_sys_95: -6.05340639e-24 + art_sys_96: 1.69589597e-27 + art_sys_97: -4.09306064e-27 + art_sys_98: -2.84660772e-24 + art_sys_99: -4.12090183e-26 + art_sys_100: -3.02377361e-23 + art_sys_101: -1.09980858e-24 + art_sys_102: -1.30723834e-23 + art_sys_103: -7.02850447e-24 + art_sys_104: 3.75304991e-24 + art_sys_105: -1.98432273e-09 + art_sys_106: 3.32132264e-25 + art_sys_107: 2.32031016e-23 + art_sys_108: 1.74688019e-09 + art_sys_109: 1.98283986e-08 + art_sys_110: -1.01605110e-21 + art_sys_111: 1.32264800e-22 + art_sys_112: 1.25117724e-22 + art_sys_113: 2.94705323e-22 + art_sys_114: 4.07446709e-08 + art_sys_115: -2.35846607e-23 + art_sys_116: -8.48165779e-23 + art_sys_117: 9.09415304e-08 + art_sys_118: 5.09830521e-23 + art_sys_119: -6.48572597e-21 + art_sys_120: -2.65919035e-22 + art_sys_121: -3.74973572e-07 + art_sys_122: 7.47777344e-22 + art_sys_123: 5.26390047e-21 + art_sys_124: -4.90096861e-24 + art_sys_125: 1.40631466e-07 + art_sys_126: -1.67068842e-20 + art_sys_127: 3.41494683e-17 + art_sys_128: 1.14811206e-22 + art_sys_129: -1.48028364e-06 + art_sys_130: -1.63531194e-14 + art_sys_131: -2.46694765e-06 + art_sys_132: 7.08921904e-21 + art_sys_133: -6.67829587e-13 + art_sys_134: 5.91617802e-19 + art_sys_135: -6.31402419e-20 + art_sys_136: -1.76566247e-06 + art_sys_137: -1.52093349e-12 + art_sys_138: 8.10129328e-19 + art_sys_139: 9.39494497e-13 + art_sys_140: -9.56916355e-06 + art_sys_141: -6.63469103e-15 + art_sys_142: 2.95784208e-17 + art_sys_143: -1.16234330e-12 + art_sys_144: -8.34657188e-06 + art_sys_145: -4.65941347e-15 + art_sys_146: -4.27050650e-11 + art_sys_147: 9.84958274e-07 + art_sys_148: -1.08613996e-06 + art_sys_149: -1.82913557e-12 + art_sys_150: 3.37820011e-10 + art_sys_151: 1.76099027e-09 + art_sys_152: 1.39162898e-06 + art_sys_153: -1.43073954e-09 + art_sys_154: 8.23059248e-20 + art_sys_155: -6.90135379e-07 + art_sys_156: 0.0 + art_sys_157: 7.95843952e-11 art_sys_158: 0.0 - art_sys_159: -9.09380451e-08 - art_sys_160: -3.74977152e-07 - art_sys_161: -1.40527416e-07 - art_sys_162: -1.48028886e-06 - art_sys_163: -2.46559236e-06 - art_sys_164: 1.76823463e-06 - art_sys_165: 9.56991894e-06 - art_sys_166: -2.14997551e-15 - art_sys_167: 1.38234202e-15 - art_sys_168: 2.00963883e-15 - art_sys_169: -5.20473446e-16 - art_sys_170: 1.75020709e-16 - art_sys_171: -1.71917853e-16 - art_sys_172: -2.06013437e-17 - art_sys_173: 5.33559365e-18 - art_sys_174: 5.06450802e-18 - art_sys_175: -2.12743472e-19 - art_sys_176: -1.32280504e-18 - art_sys_177: -1.84058454e-18 - art_sys_178: 5.95647208e-19 - art_sys_179: -1.21533637e-18 - art_sys_180: 3.20092930e-19 - art_sys_181: -2.83248227e-19 - art_sys_182: -1.42112993e-19 - art_sys_183: 7.60774854e-20 - art_sys_184: -4.00340090e-20 - art_sys_185: 9.98838454e-21 + art_sys_159: -6.60810166e-10 + art_sys_160: 8.37072430e-08 + art_sys_161: 1.42973386e-10 + art_sys_162: 1.42973386e-10 + art_sys_163: -5.11830962e-09 + art_sys_164: -5.11830962e-09 + art_sys_165: -1.30936612e-22 + art_sys_166: 7.11135507e-23 + art_sys_167: 0.0 + art_sys_168: -3.65401839e-16 + art_sys_169: -1.77781996e-16 + art_sys_170: -2.85885722e-16 + art_sys_171: 6.94761768e-17 + art_sys_172: 3.96232540e-17 + art_sys_173: 4.41649054e-17 + art_sys_174: -5.98992366e-18 + art_sys_175: -4.10322227e-18 + art_sys_176: 4.53147528e-18 + art_sys_177: -8.88798642e-19 + art_sys_178: 1.34414165e-19 + art_sys_179: 4.29578346e-20 + art_sys_180: -5.46372645e-21 + art_sys_181: -9.97154549e-19 + art_sys_182: 8.54574758e-20 + art_sys_183: -6.18358321e-22 + art_sys_184: 6.10153764e-22 + art_sys_185: -4.46032407e-21 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -39566,149 +39566,149 @@ bins: art_sys_40: 0.0 art_sys_41: 0.0 art_sys_42: 0.0 - art_sys_43: -2.14174354e-197 - art_sys_44: 1.31185547e-189 - art_sys_45: -8.67828012e-63 - art_sys_46: 5.27664595e-59 - art_sys_47: -1.30745201e-53 - art_sys_48: 1.51967130e-45 - art_sys_49: -1.92844718e-24 - art_sys_50: -2.80855432e-23 - art_sys_51: 4.98485813e-23 - art_sys_52: -2.17899558e-21 - art_sys_53: 2.65850980e-20 - art_sys_54: -4.65479165e-19 - art_sys_55: 2.09734391e-38 - art_sys_56: 1.27177963e-36 - art_sys_57: -1.14293718e-39 - art_sys_58: 1.06517513e-18 - art_sys_59: -2.38288278e-18 - art_sys_60: -3.37218169e-36 - art_sys_61: 1.50286227e-36 - art_sys_62: -1.79372075e-36 - art_sys_63: 3.02133194e-36 - art_sys_64: -3.09783541e-36 - art_sys_65: 1.11157644e-17 - art_sys_66: 1.47545602e-16 - art_sys_67: 6.12231078e-36 - art_sys_68: -1.45087098e-34 - art_sys_69: 5.83572643e-34 - art_sys_70: -1.38583845e-34 - art_sys_71: 1.68832449e-35 - art_sys_72: -6.14717383e-33 - art_sys_73: -1.13121444e-14 - art_sys_74: 1.51315974e-14 - art_sys_75: 2.02593639e-15 - art_sys_76: -5.81048954e-16 - art_sys_77: -3.16789432e-31 - art_sys_78: -9.08896873e-29 - art_sys_79: 3.20744613e-14 - art_sys_80: 2.27462793e-14 - art_sys_81: 2.91012239e-15 - art_sys_82: -2.15664418e-16 - art_sys_83: -6.60475718e-14 - art_sys_84: -2.37869157e-15 - art_sys_85: 4.76116926e-15 - art_sys_86: -1.63993395e-13 - art_sys_87: -7.03247288e-29 + art_sys_43: 0.0 + art_sys_44: 1.35939464e-229 + art_sys_45: 6.85587961e-223 + art_sys_46: 7.00128284e-173 + art_sys_47: 3.87638385e-178 + art_sys_48: -2.08973271e-170 + art_sys_49: 1.78303415e-161 + art_sys_50: -7.64487589e-154 + art_sys_51: 3.17197351e-143 + art_sys_52: 3.52419943e-160 + art_sys_53: 1.12554153e-156 + art_sys_54: 1.33175779e-151 + art_sys_55: 3.28384853e-148 + art_sys_56: 5.29573812e-145 + art_sys_57: 1.88422231e-66 + art_sys_58: 9.33664732e-53 + art_sys_59: -3.58280380e-64 + art_sys_60: 4.33181967e-61 + art_sys_61: 1.70766130e-46 + art_sys_62: -4.74023825e-61 + art_sys_63: -8.00696209e-51 + art_sys_64: -1.92844718e-24 + art_sys_65: 2.80855432e-23 + art_sys_66: 4.98485813e-23 + art_sys_67: -2.17899558e-21 + art_sys_68: -2.65850980e-20 + art_sys_69: 4.65479165e-19 + art_sys_70: -1.06517513e-18 + art_sys_71: 2.38288278e-18 + art_sys_72: -1.11157644e-17 + art_sys_73: 1.47545602e-16 + art_sys_74: -1.12620869e-35 + art_sys_75: 5.81048954e-16 + art_sys_76: -5.91457109e-14 + art_sys_77: 3.96734356e-14 + art_sys_78: -1.81048541e-15 + art_sys_79: 2.27462793e-14 + art_sys_80: -1.32062232e-14 + art_sys_81: 6.60475718e-14 + art_sys_82: 1.61349206e-26 + art_sys_83: -1.93466224e-14 + art_sys_84: 1.44997284e-14 + art_sys_85: -1.70735030e-14 + art_sys_86: 2.11518852e-14 + art_sys_87: -1.63993394e-13 art_sys_88: -1.71191400e-12 - art_sys_89: 4.51453374e-12 - art_sys_90: 3.64867740e-29 - art_sys_91: -3.03598231e-25 - art_sys_92: 6.32823026e-28 - art_sys_93: 9.19753957e-29 - art_sys_94: -1.78917682e-26 - art_sys_95: -9.84845374e-29 - art_sys_96: 1.40753348e-11 - art_sys_97: 1.74522115e-26 - art_sys_98: 1.28791861e-27 - art_sys_99: -1.61245674e-28 - art_sys_100: -3.69975099e-27 - art_sys_101: -8.18876633e-26 - art_sys_102: -4.40633870e-27 - art_sys_103: -9.21281849e-26 - art_sys_104: 2.20213178e-26 - art_sys_105: -1.35179954e-25 - art_sys_106: -6.14579674e-26 - art_sys_107: 6.71883480e-11 - art_sys_108: 1.36709903e-09 - art_sys_109: -1.72935540e-10 - art_sys_110: 1.10312892e-23 - art_sys_111: -5.79422313e-26 - art_sys_112: 2.88975561e-23 - art_sys_113: -1.56789924e-08 - art_sys_114: 2.15876353e-24 - art_sys_115: -4.64022617e-23 - art_sys_116: -1.24359216e-24 - art_sys_117: -4.07041476e-25 - art_sys_118: -3.13780520e-20 - art_sys_119: -2.71030206e-25 - art_sys_120: -4.59936430e-23 - art_sys_121: 1.23544356e-17 - art_sys_122: -1.14363772e-24 - art_sys_123: 2.78614982e-22 - art_sys_124: -1.91435239e-14 - art_sys_125: -1.02902206e-20 - art_sys_126: -2.70489918e-14 - art_sys_127: 1.94997270e-20 - art_sys_128: -2.87985985e-13 - art_sys_129: 2.08851187e-18 - art_sys_130: -4.63060803e-13 - art_sys_131: -1.27530233e-15 - art_sys_132: 1.38424847e-16 - art_sys_133: -4.41551064e-12 - art_sys_134: -6.35603509e-06 - art_sys_135: 4.30473600e-15 - art_sys_136: -3.55404659e-12 - art_sys_137: 5.86334461e-06 - art_sys_138: 1.91810006e-21 - art_sys_139: 8.86633462e-13 - art_sys_140: 1.03509783e-10 - art_sys_141: -3.38404898e-11 - art_sys_142: -4.33273092e-11 - art_sys_143: -5.09632534e-07 - art_sys_144: -8.85856712e-07 - art_sys_145: -8.81419069e-07 - art_sys_146: -0.0 - art_sys_147: -1.67311859e-07 - art_sys_148: 1.44037978e-10 - art_sys_149: 1.44037978e-10 - art_sys_150: 1.13066653e-10 - art_sys_151: 1.13066653e-10 - art_sys_152: 3.89591926e-10 - art_sys_153: -3.48531390e-08 - art_sys_154: 2.29687328e-08 - art_sys_155: -4.80507470e-20 - art_sys_156: 4.71386558e-23 - art_sys_157: -3.31143226e-23 - art_sys_158: -0.0 - art_sys_159: 2.32541479e-08 - art_sys_160: -5.84392542e-08 - art_sys_161: -2.39508214e-07 - art_sys_162: 1.11582665e-07 - art_sys_163: -8.92042086e-07 - art_sys_164: -1.75891980e-06 - art_sys_165: 9.41769736e-07 - art_sys_166: 1.49291417e-15 - art_sys_167: -1.03082578e-15 - art_sys_168: -1.32639495e-15 - art_sys_169: 3.20750908e-16 - art_sys_170: -7.22552523e-17 - art_sys_171: 6.53053131e-17 - art_sys_172: -1.44809286e-18 - art_sys_173: 3.94059976e-18 - art_sys_174: 5.95164967e-18 - art_sys_175: 2.71957770e-19 - art_sys_176: 2.52235503e-18 - art_sys_177: 2.62783194e-18 - art_sys_178: -1.45960651e-18 - art_sys_179: 1.79659805e-18 - art_sys_180: -6.20026401e-19 - art_sys_181: 4.13966025e-19 - art_sys_182: 2.22972202e-19 - art_sys_183: -1.12952613e-19 - art_sys_184: 5.73009247e-20 - art_sys_185: -1.38094634e-20 + art_sys_89: 5.53240786e-16 + art_sys_90: 4.51453373e-12 + art_sys_91: -5.78577193e-27 + art_sys_92: -8.51502905e-17 + art_sys_93: -5.87130608e-16 + art_sys_94: -1.40753345e-11 + art_sys_95: -1.12053762e-24 + art_sys_96: -2.55219426e-28 + art_sys_97: -4.23295418e-28 + art_sys_98: 1.08518045e-24 + art_sys_99: 6.27099248e-26 + art_sys_100: 2.37024881e-23 + art_sys_101: 6.86048916e-25 + art_sys_102: -2.35615251e-24 + art_sys_103: 4.09315109e-24 + art_sys_104: 6.09584963e-25 + art_sys_105: -6.72095858e-11 + art_sys_106: -5.13832271e-26 + art_sys_107: 5.97489129e-24 + art_sys_108: 1.36710245e-09 + art_sys_109: 1.72905095e-10 + art_sys_110: -2.84146945e-22 + art_sys_111: 2.36962256e-23 + art_sys_112: 2.43768641e-23 + art_sys_113: 7.66747338e-23 + art_sys_114: 1.56789514e-08 + art_sys_115: -5.08774104e-24 + art_sys_116: -3.17150051e-23 + art_sys_117: -2.32537189e-08 + art_sys_118: 1.84746923e-23 + art_sys_119: -3.75841491e-21 + art_sys_120: -1.16481967e-23 + art_sys_121: -5.84389534e-08 + art_sys_122: 1.78658858e-22 + art_sys_123: -3.54164558e-20 + art_sys_124: -4.65861159e-23 + art_sys_125: 2.39454478e-07 + art_sys_126: 5.27957597e-22 + art_sys_127: 1.11391925e-17 + art_sys_128: -9.42597010e-23 + art_sys_129: 1.11583579e-07 + art_sys_130: -7.58740723e-15 + art_sys_131: -8.89786879e-07 + art_sys_132: 5.37233526e-21 + art_sys_133: -5.88144893e-13 + art_sys_134: 6.47460647e-19 + art_sys_135: -3.63163304e-20 + art_sys_136: 1.75940290e-06 + art_sys_137: -2.56233382e-12 + art_sys_138: 9.12486764e-19 + art_sys_139: 2.77284694e-13 + art_sys_140: -9.39779023e-07 + art_sys_141: -1.24422110e-14 + art_sys_142: 4.14773678e-17 + art_sys_143: -1.25734927e-12 + art_sys_144: -6.34276210e-06 + art_sys_145: -1.64352167e-15 + art_sys_146: -1.59084387e-11 + art_sys_147: -5.86453975e-06 + art_sys_148: -4.64713186e-07 + art_sys_149: -2.52626102e-13 + art_sys_150: 4.80981105e-11 + art_sys_151: 3.01836779e-10 + art_sys_152: -8.83149401e-07 + art_sys_153: -2.75800255e-10 + art_sys_154: 2.37368547e-20 + art_sys_155: 8.90632549e-07 + art_sys_156: 0.0 + art_sys_157: 2.53441098e-11 + art_sys_158: 0.0 + art_sys_159: -2.47575322e-10 + art_sys_160: -1.31622640e-07 + art_sys_161: 5.49977145e-11 + art_sys_162: 5.49977145e-11 + art_sys_163: 8.56833668e-09 + art_sys_164: 8.56833668e-09 + art_sys_165: -6.61635396e-23 + art_sys_166: 2.75371766e-23 + art_sys_167: 0.0 + art_sys_168: 6.48571342e-16 + art_sys_169: 3.15354474e-16 + art_sys_170: 4.58154115e-16 + art_sys_171: -1.05311119e-16 + art_sys_172: -5.93677469e-17 + art_sys_173: -6.41890975e-17 + art_sys_174: 7.66318435e-18 + art_sys_175: 6.21748000e-18 + art_sys_176: -6.42726174e-18 + art_sys_177: 1.38731795e-18 + art_sys_178: -2.23473837e-19 + art_sys_179: -4.98592255e-20 + art_sys_180: 1.08575103e-20 + art_sys_181: 1.66145018e-18 + art_sys_182: -1.39166705e-19 + art_sys_183: 9.01618979e-21 + art_sys_184: -5.37085508e-21 + art_sys_185: 5.38810151e-21 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -39857,149 +39857,149 @@ bins: art_sys_40: 0.0 art_sys_41: 0.0 art_sys_42: 0.0 - art_sys_43: -5.42575220e-199 - art_sys_44: 3.32336837e-191 - art_sys_45: -2.19849371e-64 - art_sys_46: 1.33674792e-60 - art_sys_47: -3.31220584e-55 - art_sys_48: 3.84982709e-47 - art_sys_49: -4.88539080e-26 - art_sys_50: -4.10946629e-25 - art_sys_51: -3.18773093e-24 - art_sys_52: -1.76557990e-22 - art_sys_53: 1.92859028e-21 - art_sys_54: -3.74634878e-20 - art_sys_55: 1.95962266e-39 - art_sys_56: 1.02251414e-37 - art_sys_57: -1.87358167e-40 - art_sys_58: 8.57572565e-20 - art_sys_59: -2.10149065e-19 - art_sys_60: -2.94903444e-37 - art_sys_61: 1.30653272e-37 - art_sys_62: -1.64795573e-37 - art_sys_63: 2.72075350e-37 - art_sys_64: -2.77259725e-37 - art_sys_65: 7.84425669e-19 - art_sys_66: 2.35246880e-17 - art_sys_67: 3.33852485e-36 - art_sys_68: -2.45250018e-35 - art_sys_69: 9.16496777e-35 - art_sys_70: -2.56395087e-35 - art_sys_71: 4.87772926e-36 - art_sys_72: -2.11505637e-33 - art_sys_73: 9.73670958e-15 - art_sys_74: 2.27329954e-14 - art_sys_75: 4.70476627e-15 - art_sys_76: -2.01482105e-16 - art_sys_77: -1.09867429e-31 - art_sys_78: -3.15163636e-29 - art_sys_79: -3.33317508e-14 - art_sys_80: 3.08402115e-15 - art_sys_81: 6.13541342e-15 - art_sys_82: 8.83513962e-16 - art_sys_83: -1.10605696e-14 - art_sys_84: -3.09866268e-15 - art_sys_85: 2.88756733e-15 - art_sys_86: -4.92392207e-14 - art_sys_87: -9.78834911e-30 + art_sys_43: 0.0 + art_sys_44: 3.35733306e-231 + art_sys_45: 1.69321473e-224 + art_sys_46: 1.77246937e-174 + art_sys_47: 9.81358960e-180 + art_sys_48: -5.29044077e-172 + art_sys_49: 4.51399193e-163 + art_sys_50: -1.93540365e-155 + art_sys_51: 8.03027963e-145 + art_sys_52: 8.92198713e-162 + art_sys_53: 2.84946048e-158 + art_sys_54: 3.37152483e-153 + art_sys_55: 8.31350635e-150 + art_sys_56: 1.34068768e-146 + art_sys_57: 4.77335455e-68 + art_sys_58: 2.36527971e-54 + art_sys_59: -9.07641986e-66 + art_sys_60: 1.09739232e-62 + art_sys_61: 4.32606746e-48 + art_sys_62: -1.20085224e-62 + art_sys_63: -2.02842673e-52 + art_sys_64: -4.88539080e-26 + art_sys_65: 4.10946629e-25 + art_sys_66: -3.18773093e-24 + art_sys_67: -1.76557990e-22 + art_sys_68: -1.92859028e-21 + art_sys_69: 3.74634878e-20 + art_sys_70: -8.57572565e-20 + art_sys_71: 2.10149065e-19 + art_sys_72: -7.84425669e-19 + art_sys_73: 2.35246880e-17 + art_sys_74: -3.40843800e-36 + art_sys_75: 2.01482105e-16 + art_sys_76: -4.55511796e-14 + art_sys_77: 2.97718662e-14 + art_sys_78: -6.44525320e-15 + art_sys_79: 3.08402114e-15 + art_sys_80: 5.84255844e-14 + art_sys_81: 1.10605697e-14 + art_sys_82: 2.70223162e-27 + art_sys_83: 2.94654073e-14 + art_sys_84: -1.78601117e-14 + art_sys_85: 2.35910237e-14 + art_sys_86: -2.44346682e-14 + art_sys_87: -4.92392206e-14 art_sys_88: -7.89733277e-14 - art_sys_89: 5.01172577e-13 - art_sys_90: 7.38917546e-30 - art_sys_91: -4.12492633e-26 - art_sys_92: 8.07770889e-29 - art_sys_93: 1.35067825e-29 - art_sys_94: -2.99708745e-27 - art_sys_95: -1.52291174e-29 - art_sys_96: 2.05039364e-12 - art_sys_97: 2.92228381e-27 - art_sys_98: 2.01958762e-28 - art_sys_99: -2.95479232e-29 - art_sys_100: -7.05574529e-28 - art_sys_101: -1.10987372e-26 - art_sys_102: -5.97111960e-28 - art_sys_103: -3.37648844e-26 - art_sys_104: -8.82670528e-27 - art_sys_105: -1.17385180e-26 - art_sys_106: 4.79038245e-26 - art_sys_107: -7.50092070e-11 - art_sys_108: 1.76272892e-10 - art_sys_109: 9.36567906e-10 - art_sys_110: 3.19435109e-24 - art_sys_111: -2.20245623e-26 - art_sys_112: 1.58095385e-24 - art_sys_113: -8.30585386e-10 - art_sys_114: 1.13511637e-25 - art_sys_115: -4.57224651e-24 - art_sys_116: 8.46719965e-25 - art_sys_117: -3.83130566e-26 - art_sys_118: -5.77754895e-20 - art_sys_119: -9.06127511e-26 - art_sys_120: -2.41336549e-23 - art_sys_121: 3.45059525e-17 - art_sys_122: -1.87627462e-25 - art_sys_123: -8.49731630e-22 - art_sys_124: -1.71087026e-14 - art_sys_125: -4.56481642e-20 - art_sys_126: -1.16578852e-13 - art_sys_127: 5.20001139e-20 - art_sys_128: -5.15769398e-13 - art_sys_129: 7.74426350e-19 - art_sys_130: -1.69985955e-13 - art_sys_131: -3.93910988e-16 - art_sys_132: 3.30647865e-17 - art_sys_133: -8.66421260e-13 - art_sys_134: -5.07896486e-07 - art_sys_135: 1.13868305e-15 - art_sys_136: -8.25232914e-13 - art_sys_137: 4.03307026e-06 - art_sys_138: 1.43317019e-22 - art_sys_139: 3.74865198e-13 - art_sys_140: 4.35429072e-11 - art_sys_141: -9.66739603e-12 - art_sys_142: 3.83143039e-12 - art_sys_143: 3.93536799e-06 - art_sys_144: 4.75490921e-08 - art_sys_145: 8.26766084e-07 - art_sys_146: 0.0 - art_sys_147: 2.70714010e-07 - art_sys_148: -7.97329342e-10 - art_sys_149: -7.97329342e-10 - art_sys_150: -1.05868825e-10 - art_sys_151: -1.05868825e-10 - art_sys_152: -1.02593030e-09 - art_sys_153: 5.98948425e-08 - art_sys_154: -3.93955278e-08 - art_sys_155: 8.82118209e-20 - art_sys_156: -7.05792390e-23 - art_sys_157: 6.04937255e-23 + art_sys_89: -6.43631238e-16 + art_sys_90: 5.01172576e-13 + art_sys_91: -1.38133220e-27 + art_sys_92: 2.23302727e-16 + art_sys_93: 5.99488877e-16 + art_sys_94: -2.05039360e-12 + art_sys_95: -7.79101873e-26 + art_sys_96: -1.16246335e-28 + art_sys_97: 4.87930057e-29 + art_sys_98: 3.64738539e-25 + art_sys_99: 1.69626784e-26 + art_sys_100: 6.88220615e-24 + art_sys_101: 2.07675077e-25 + art_sys_102: -1.52559879e-25 + art_sys_103: 1.25518293e-24 + art_sys_104: 1.35205796e-26 + art_sys_105: 7.50065442e-11 + art_sys_106: -3.15220352e-26 + art_sys_107: 5.94071280e-25 + art_sys_108: 1.76272807e-10 + art_sys_109: -9.36567709e-10 + art_sys_110: -3.16786192e-23 + art_sys_111: 1.36366348e-24 + art_sys_112: 1.80131539e-24 + art_sys_113: 8.00802156e-24 + art_sys_114: 8.30564720e-10 + art_sys_115: -3.48143133e-25 + art_sys_116: -3.38004568e-24 + art_sys_117: -1.01640281e-08 + art_sys_118: 2.10449093e-24 + art_sys_119: -5.42786460e-22 + art_sys_120: 9.37633239e-24 + art_sys_121: 1.45443477e-08 + art_sys_122: 1.25486955e-23 + art_sys_123: -6.74907598e-21 + art_sys_124: -7.33294926e-24 + art_sys_125: 3.50302244e-08 + art_sys_126: 9.46092432e-22 + art_sys_127: -1.02911772e-19 + art_sys_128: -2.72195234e-23 + art_sys_129: 1.51969349e-07 + art_sys_130: -6.45985739e-16 + art_sys_131: 8.15466767e-08 + art_sys_132: 8.84794400e-22 + art_sys_133: -6.42828583e-14 + art_sys_134: 8.30873388e-20 + art_sys_135: -3.43586625e-21 + art_sys_136: 5.55448855e-07 + art_sys_137: -3.70196171e-13 + art_sys_138: 9.71010048e-20 + art_sys_139: -3.37806474e-14 + art_sys_140: 1.14954267e-06 + art_sys_141: -1.88052548e-15 + art_sys_142: 5.52850567e-18 + art_sys_143: -1.39672528e-13 + art_sys_144: -5.06941478e-07 + art_sys_145: 1.43545975e-16 + art_sys_146: 1.20405645e-12 + art_sys_147: -4.03236847e-06 + art_sys_148: 3.90645573e-06 + art_sys_149: 2.05624945e-13 + art_sys_150: -3.74234039e-11 + art_sys_151: -1.76196623e-10 + art_sys_152: -4.82704182e-08 + art_sys_153: 1.34402946e-10 + art_sys_154: -5.53587303e-21 + art_sys_155: -8.26292461e-07 + art_sys_156: 0.0 + art_sys_157: -5.28287045e-12 art_sys_158: 0.0 - art_sys_159: 1.01638726e-08 - art_sys_160: 1.45445361e-08 - art_sys_161: -3.50499860e-08 - art_sys_162: 1.51969758e-07 - art_sys_163: 8.09314000e-08 - art_sys_164: -5.55673870e-07 - art_sys_165: -1.14910702e-06 - art_sys_166: 8.11103006e-16 - art_sys_167: -1.35754841e-16 - art_sys_168: -8.11655856e-16 - art_sys_169: 2.35771478e-16 - art_sys_170: -1.65020503e-16 - art_sys_171: 2.12161595e-16 - art_sys_172: 4.61504528e-17 - art_sys_173: -2.96692364e-17 - art_sys_174: -2.69116393e-17 - art_sys_175: -2.75180672e-19 - art_sys_176: -3.75611136e-18 - art_sys_177: -3.14733153e-18 - art_sys_178: 2.53325245e-18 - art_sys_179: -1.93467794e-18 - art_sys_180: 9.09137860e-19 - art_sys_181: -4.39339844e-19 - art_sys_182: -2.66407162e-19 - art_sys_183: 1.24755078e-19 - art_sys_184: -5.78433318e-20 - art_sys_185: 1.24642030e-20 + art_sys_159: 2.92811904e-11 + art_sys_160: 2.87092749e-07 + art_sys_161: -2.32836013e-12 + art_sys_162: -2.32836013e-12 + art_sys_163: -8.44131408e-09 + art_sys_164: -8.44131408e-09 + art_sys_165: 6.80979935e-22 + art_sys_166: -3.48418209e-22 + art_sys_167: -0.0 + art_sys_168: -7.68756742e-16 + art_sys_169: -3.27383306e-16 + art_sys_170: -5.05570139e-16 + art_sys_171: 1.12049777e-16 + art_sys_172: 6.22339913e-17 + art_sys_173: 6.55987840e-17 + art_sys_174: -6.68643840e-18 + art_sys_175: -6.01203739e-18 + art_sys_176: 6.76692436e-18 + art_sys_177: -1.43291189e-18 + art_sys_178: 1.76362405e-19 + art_sys_179: 1.31140942e-20 + art_sys_180: -2.39060178e-20 + art_sys_181: -1.58095653e-18 + art_sys_182: 1.32365854e-19 + art_sys_183: 5.52457091e-21 + art_sys_184: 3.00625307e-21 + art_sys_185: -7.45257879e-21 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -40148,149 +40148,149 @@ bins: art_sys_40: 0.0 art_sys_41: 0.0 art_sys_42: 0.0 - art_sys_43: 2.98742476e-200 - art_sys_44: -1.82985005e-192 - art_sys_45: 1.21050581e-65 - art_sys_46: -7.36022631e-62 - art_sys_47: 1.82372340e-56 - art_sys_48: -2.11974137e-48 - art_sys_49: 2.68992989e-27 - art_sys_50: 1.05202758e-25 - art_sys_51: -7.81142500e-25 - art_sys_52: -1.27999187e-23 - art_sys_53: 2.02928855e-22 - art_sys_54: -2.42751732e-21 - art_sys_55: 2.66177625e-41 - art_sys_56: 7.77636958e-39 - art_sys_57: 2.33632413e-41 - art_sys_58: 6.28895478e-21 - art_sys_59: -1.88434804e-20 - art_sys_60: -2.59854947e-38 - art_sys_61: 1.13299278e-38 - art_sys_62: -1.59899333e-38 - art_sys_63: 2.56665794e-38 - art_sys_64: -2.54854330e-38 - art_sys_65: -4.28236886e-19 - art_sys_66: 1.97412070e-18 - art_sys_67: 1.86006774e-36 - art_sys_68: -2.84105377e-36 - art_sys_69: 6.84867138e-36 - art_sys_70: -3.92651421e-36 - art_sys_71: 1.45470087e-36 - art_sys_72: -2.70981464e-34 - art_sys_73: 9.46703066e-15 - art_sys_74: 1.58025010e-14 - art_sys_75: -1.00493902e-14 - art_sys_76: -2.58065164e-17 - art_sys_77: -1.41149980e-32 - art_sys_78: -4.03663681e-30 - art_sys_79: -1.26448776e-13 - art_sys_80: 2.29073936e-16 - art_sys_81: 2.52241306e-14 - art_sys_82: 2.28251168e-14 - art_sys_83: -9.50612920e-16 - art_sys_84: -2.10025466e-14 - art_sys_85: 2.02410301e-14 - art_sys_86: -5.73965253e-15 - art_sys_87: -6.87739894e-31 + art_sys_43: 0.0 + art_sys_44: -2.13373496e-232 + art_sys_45: -1.07611364e-225 + art_sys_46: -9.79197057e-176 + art_sys_47: -5.42149738e-181 + art_sys_48: 2.92269311e-173 + art_sys_49: -2.49374555e-164 + art_sys_50: 1.06920976e-156 + art_sys_51: -4.43631146e-146 + art_sys_52: -4.92893342e-163 + art_sys_53: -1.57417858e-159 + art_sys_54: -1.86259195e-154 + art_sys_55: -4.59277947e-151 + art_sys_56: -7.40660148e-148 + art_sys_57: -2.62824228e-69 + art_sys_58: -1.30233949e-55 + art_sys_59: 4.99754003e-67 + art_sys_60: -6.04231864e-64 + art_sys_61: -2.38196289e-49 + art_sys_62: 6.61199559e-64 + art_sys_63: 1.11686589e-53 + art_sys_64: 2.68992989e-27 + art_sys_65: -1.05202758e-25 + art_sys_66: -7.81142500e-25 + art_sys_67: -1.27999187e-23 + art_sys_68: -2.02928855e-22 + art_sys_69: 2.42751732e-21 + art_sys_70: -6.28895478e-21 + art_sys_71: 1.88434804e-20 + art_sys_72: 4.28236886e-19 + art_sys_73: 1.97412070e-18 + art_sys_74: -1.08749023e-36 + art_sys_75: 2.58065164e-17 + art_sys_76: 3.95787230e-15 + art_sys_77: 8.01645522e-16 + art_sys_78: 1.98871606e-14 + art_sys_79: 2.29073936e-16 + art_sys_80: -4.00723630e-14 + art_sys_81: 9.50612920e-16 + art_sys_82: 2.32256587e-28 + art_sys_83: -7.47502385e-15 + art_sys_84: 3.42415275e-17 + art_sys_85: 5.23103260e-16 + art_sys_86: -4.01505720e-15 + art_sys_87: -5.73965252e-15 art_sys_88: 2.31819662e-14 - art_sys_89: -1.39614180e-14 - art_sys_90: 1.13664920e-30 - art_sys_91: -3.06901082e-27 - art_sys_92: 4.14182621e-30 - art_sys_93: 1.61484875e-30 - art_sys_94: -2.57877724e-28 - art_sys_95: -1.16286393e-30 - art_sys_96: -1.16753989e-14 - art_sys_97: 2.50342553e-28 - art_sys_98: 1.13739004e-29 - art_sys_99: -5.33493141e-30 - art_sys_100: -6.50428902e-29 - art_sys_101: -8.28583814e-28 - art_sys_102: -4.42484689e-29 - art_sys_103: -4.27133549e-27 - art_sys_104: -2.04283299e-27 - art_sys_105: 2.52373574e-27 - art_sys_106: 8.14354887e-27 - art_sys_107: -1.39575259e-11 - art_sys_108: -1.67269845e-11 - art_sys_109: 1.46702500e-10 - art_sys_110: 3.59571791e-25 - art_sys_111: -1.99590549e-27 - art_sys_112: -3.55960963e-25 - art_sys_113: 4.41898380e-10 - art_sys_114: -6.13223315e-26 - art_sys_115: -2.20211627e-25 - art_sys_116: 1.89301489e-25 - art_sys_117: 1.09809700e-26 - art_sys_118: -8.01304906e-21 - art_sys_119: -1.78194439e-26 - art_sys_120: -1.11433523e-23 - art_sys_121: 5.10100088e-18 - art_sys_122: -1.15269723e-24 - art_sys_123: 4.74256678e-22 - art_sys_124: -1.94521736e-15 - art_sys_125: -7.19129013e-21 - art_sys_126: -1.76344799e-14 - art_sys_127: 6.75304443e-21 - art_sys_128: -5.99945878e-14 - art_sys_129: -4.55745571e-21 - art_sys_130: 1.71630002e-15 - art_sys_131: 2.35869112e-17 - art_sys_132: -4.67046736e-18 - art_sys_133: 1.81453729e-13 - art_sys_134: 5.62307101e-07 - art_sys_135: -1.40998246e-16 - art_sys_136: 1.33107026e-13 - art_sys_137: 2.87757555e-07 - art_sys_138: -1.37320553e-22 - art_sys_139: -9.14962889e-15 - art_sys_140: -1.09366299e-12 - art_sys_141: 9.04049614e-13 - art_sys_142: 2.69461115e-12 - art_sys_143: 2.37992681e-06 - art_sys_144: 2.56281943e-06 - art_sys_145: -2.48099773e-07 - art_sys_146: 0.0 - art_sys_147: -4.38172970e-07 - art_sys_148: 1.08844305e-09 - art_sys_149: 1.08844305e-09 - art_sys_150: 1.85933377e-10 - art_sys_151: 1.85933377e-10 - art_sys_152: 1.49755151e-09 - art_sys_153: -9.66357508e-08 - art_sys_154: 7.61537063e-08 - art_sys_155: -1.52160226e-19 - art_sys_156: 1.29039527e-22 - art_sys_157: -1.26667155e-22 + art_sys_89: -3.00623707e-16 + art_sys_90: -1.39614179e-14 + art_sys_91: -1.50583878e-28 + art_sys_92: -1.20029411e-15 + art_sys_93: -1.99171767e-15 + art_sys_94: 1.16753986e-14 + art_sys_95: 1.01558383e-26 + art_sys_96: -1.61815479e-29 + art_sys_97: 2.19990982e-29 + art_sys_98: 4.54031381e-26 + art_sys_99: 1.83544362e-27 + art_sys_100: 7.82169023e-25 + art_sys_101: 2.43657051e-26 + art_sys_102: 2.30910148e-26 + art_sys_103: 1.48524187e-25 + art_sys_104: -1.26618142e-26 + art_sys_105: 1.39577975e-11 + art_sys_106: -6.00503843e-27 + art_sys_107: -3.46093656e-26 + art_sys_108: -1.67271050e-11 + art_sys_109: -1.46701373e-10 + art_sys_110: 8.52622816e-25 + art_sys_111: -2.75603018e-25 + art_sys_112: -2.15548411e-25 + art_sys_113: -3.18667826e-25 + art_sys_114: -4.41899982e-10 + art_sys_115: 7.97384225e-26 + art_sys_116: 2.87593985e-25 + art_sys_117: -6.55225992e-10 + art_sys_118: -1.23425962e-25 + art_sys_119: 3.81967900e-24 + art_sys_120: 1.88819711e-24 + art_sys_121: 4.92405870e-09 + art_sys_122: -1.95180893e-24 + art_sys_123: 2.17801302e-23 + art_sys_124: 1.16026158e-24 + art_sys_125: -6.61747272e-09 + art_sys_126: 1.28872510e-22 + art_sys_127: -3.53906830e-19 + art_sys_128: -2.51917025e-24 + art_sys_129: 1.71468858e-08 + art_sys_130: 1.66528677e-16 + art_sys_131: 6.95768577e-08 + art_sys_132: 9.80497851e-24 + art_sys_133: 1.99537821e-14 + art_sys_134: -1.97368412e-20 + art_sys_135: 1.27588724e-21 + art_sys_136: -4.39047291e-08 + art_sys_137: 7.18568030e-14 + art_sys_138: -3.22452780e-20 + art_sys_139: -2.09192970e-14 + art_sys_140: 2.67679002e-07 + art_sys_141: 3.37620601e-16 + art_sys_142: -1.27259330e-18 + art_sys_143: 4.41142446e-14 + art_sys_144: 5.61100952e-07 + art_sys_145: 1.27197546e-16 + art_sys_146: 1.19052816e-12 + art_sys_147: -2.86567094e-07 + art_sys_148: 2.43550595e-06 + art_sys_149: 5.73918961e-14 + art_sys_150: -1.05791479e-11 + art_sys_151: -5.65520695e-11 + art_sys_152: 2.52556246e-06 + art_sys_153: 4.82778681e-11 + art_sys_154: -2.94660114e-21 + art_sys_155: 4.05843539e-07 + art_sys_156: -0.0 + art_sys_157: -2.53840207e-12 art_sys_158: -0.0 - art_sys_159: 6.55181952e-10 - art_sys_160: 4.92409848e-09 - art_sys_161: 6.61718267e-09 - art_sys_162: 1.71470342e-08 - art_sys_163: 6.96455476e-08 - art_sys_164: 4.38348424e-08 - art_sys_165: -2.67813420e-07 - art_sys_166: 4.58527565e-16 - art_sys_167: 3.85732705e-16 - art_sys_168: -4.00288540e-16 - art_sys_169: -1.69839798e-16 - art_sys_170: -1.04917910e-16 - art_sys_171: 6.55996416e-17 - art_sys_172: 2.15515479e-17 - art_sys_173: -2.44299858e-17 - art_sys_174: -1.22785041e-17 - art_sys_175: 1.47721707e-19 - art_sys_176: -2.24131094e-18 - art_sys_177: -2.00460131e-18 - art_sys_178: -2.33602588e-19 - art_sys_179: -4.81469278e-19 - art_sys_180: -1.31425284e-19 - art_sys_181: -2.89304803e-21 - art_sys_182: 8.25862434e-20 - art_sys_183: -1.74847073e-20 - art_sys_184: 1.32631744e-20 - art_sys_185: 2.86855289e-21 + art_sys_159: 3.08167739e-11 + art_sys_160: -4.73429351e-07 + art_sys_161: -1.07215122e-11 + art_sys_162: -1.07215122e-11 + art_sys_163: 1.10563367e-08 + art_sys_164: 1.10563367e-08 + art_sys_165: -2.23407637e-21 + art_sys_166: 1.14913152e-21 + art_sys_167: 0.0 + art_sys_168: 9.20023420e-16 + art_sys_169: 4.47851544e-16 + art_sys_170: 5.60263967e-16 + art_sys_171: -1.20343064e-16 + art_sys_172: -6.47836798e-17 + art_sys_173: -5.98064911e-17 + art_sys_174: 5.98161898e-18 + art_sys_175: 4.92010611e-18 + art_sys_176: -5.88317832e-18 + art_sys_177: 1.36439716e-18 + art_sys_178: -2.29516624e-19 + art_sys_179: 6.23559546e-20 + art_sys_180: 4.73369183e-20 + art_sys_181: 1.57248106e-18 + art_sys_182: -1.31779865e-19 + art_sys_183: 8.76180581e-21 + art_sys_184: -3.33984147e-21 + art_sys_185: 8.39862425e-21 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -40439,149 +40439,149 @@ bins: art_sys_40: 0.0 art_sys_41: 0.0 art_sys_42: 0.0 - art_sys_43: 5.42545815e-201 - art_sys_44: -3.32318826e-193 - art_sys_45: 2.19839710e-66 - art_sys_46: -1.33668918e-62 - art_sys_47: 3.31206030e-57 - art_sys_48: -3.84965792e-49 - art_sys_49: 4.88517613e-28 - art_sys_50: 1.85361059e-26 - art_sys_51: -1.10305955e-25 - art_sys_52: -1.08795800e-24 - art_sys_53: 2.99808523e-23 - art_sys_54: -1.37111886e-22 - art_sys_55: -2.23456778e-41 - art_sys_56: 6.35559676e-40 - art_sys_57: 9.74234802e-42 - art_sys_58: 4.77718831e-22 - art_sys_59: -1.63180738e-21 - art_sys_60: -2.22563904e-39 - art_sys_61: 9.57020498e-40 - art_sys_62: -1.44375003e-39 - art_sys_63: 2.31214328e-39 - art_sys_64: -2.23698850e-39 - art_sys_65: -1.42181339e-19 - art_sys_66: -1.87062431e-20 - art_sys_67: 3.85715536e-37 - art_sys_68: -2.03303412e-37 - art_sys_69: -3.16560911e-37 - art_sys_70: -4.88197775e-37 - art_sys_71: 2.94843313e-37 - art_sys_72: -1.54145994e-35 - art_sys_73: 8.87316395e-15 - art_sys_74: -1.58425020e-14 - art_sys_75: 1.88912492e-14 - art_sys_76: -1.36728215e-18 - art_sys_77: -6.77367553e-34 - art_sys_78: -2.13970011e-31 - art_sys_79: 3.94742957e-14 - art_sys_80: 1.06453686e-17 - art_sys_81: 3.39686584e-15 - art_sys_82: 5.23194855e-15 - art_sys_83: -3.70690699e-17 - art_sys_84: -9.62150568e-15 - art_sys_85: 1.46295973e-14 - art_sys_86: -3.63332720e-16 - art_sys_87: -4.68514947e-33 + art_sys_43: 0.0 + art_sys_44: -3.90000745e-233 + art_sys_45: -1.96690364e-226 + art_sys_46: -1.77809757e-176 + art_sys_47: -9.84475112e-182 + art_sys_48: 5.30723974e-174 + art_sys_49: -4.52832540e-165 + art_sys_50: 1.94154922e-157 + art_sys_51: -8.05577853e-147 + art_sys_52: -8.95031749e-164 + art_sys_53: -2.85850850e-160 + art_sys_54: -3.38223058e-155 + art_sys_55: -8.33990459e-152 + art_sys_56: -1.34494482e-148 + art_sys_57: -4.77314536e-70 + art_sys_58: -2.36517605e-56 + art_sys_59: 9.07602208e-68 + art_sys_60: -1.09734423e-64 + art_sys_61: -4.32587786e-50 + art_sys_62: 1.20079214e-64 + art_sys_63: 2.02833783e-54 + art_sys_64: 4.88517613e-28 + art_sys_65: -1.85361059e-26 + art_sys_66: -1.10305955e-25 + art_sys_67: -1.08795800e-24 + art_sys_68: -2.99808523e-23 + art_sys_69: 1.37111886e-22 + art_sys_70: -4.77718831e-22 + art_sys_71: 1.63180738e-21 + art_sys_72: 1.42181339e-19 + art_sys_73: -1.87062431e-20 + art_sys_74: -2.21893775e-37 + art_sys_75: 1.36728215e-18 + art_sys_76: -1.86062489e-15 + art_sys_77: 3.80379500e-15 + art_sys_78: 4.48062736e-15 + art_sys_79: 1.06453686e-17 + art_sys_80: 5.16177870e-14 + art_sys_81: 3.70690699e-17 + art_sys_82: 9.05620070e-30 + art_sys_83: 3.15060807e-14 + art_sys_84: -2.01405210e-14 + art_sys_85: 3.03749513e-14 + art_sys_86: -3.36984508e-14 + art_sys_87: -3.63332719e-16 art_sys_88: 6.94831521e-15 - art_sys_89: -1.39992319e-14 - art_sys_90: 1.82260353e-31 - art_sys_91: -1.42277411e-28 - art_sys_92: -2.74397581e-31 - art_sys_93: 2.40525015e-31 - art_sys_94: -1.01307079e-29 - art_sys_95: -3.33660272e-32 - art_sys_96: -5.17222117e-14 - art_sys_97: 9.52496294e-30 - art_sys_98: -1.16983420e-30 - art_sys_99: -9.85830379e-31 - art_sys_100: -2.70844935e-30 - art_sys_101: -3.97899992e-29 - art_sys_102: -2.00943783e-30 - art_sys_103: -2.55596597e-28 - art_sys_104: -1.14150395e-28 - art_sys_105: 8.81690357e-28 - art_sys_106: -1.79701870e-28 - art_sys_107: -6.40173466e-13 - art_sys_108: -9.04521425e-12 - art_sys_109: -2.44216304e-12 - art_sys_110: 1.98872738e-26 - art_sys_111: 2.66836657e-28 - art_sys_112: -1.14902710e-25 - art_sys_113: 1.17142902e-10 - art_sys_114: -1.62493403e-26 - art_sys_115: -3.10215479e-24 - art_sys_116: 2.71942267e-26 - art_sys_117: 2.64079884e-27 - art_sys_118: 1.36497773e-22 - art_sys_119: 1.68729440e-25 - art_sys_120: 5.56230428e-23 - art_sys_121: 8.60865313e-20 - art_sys_122: 2.47082034e-24 - art_sys_123: -3.36798906e-22 - art_sys_124: 2.72559023e-16 - art_sys_125: 9.77163706e-22 - art_sys_126: 1.14910274e-15 - art_sys_127: -1.22594803e-21 - art_sys_128: 1.42422516e-14 - art_sys_129: -4.67835572e-20 - art_sys_130: 1.03133254e-14 - art_sys_131: 2.83971151e-17 - art_sys_132: -3.10239905e-18 - art_sys_133: 9.77305025e-14 - art_sys_134: 1.77749132e-07 - art_sys_135: -1.10284075e-16 - art_sys_136: 8.75131848e-14 - art_sys_137: -3.49730509e-07 - art_sys_138: -2.36297288e-23 - art_sys_139: -2.71983267e-14 - art_sys_140: -3.17021733e-12 - art_sys_141: 8.77103254e-13 - art_sys_142: 4.67194039e-14 - art_sys_143: 3.25231009e-07 - art_sys_144: 1.32954547e-06 - art_sys_145: -1.30855431e-06 - art_sys_146: -0.0 - art_sys_147: 5.38870722e-07 - art_sys_148: -1.30938145e-09 - art_sys_149: -1.30938145e-09 - art_sys_150: -2.07709834e-10 - art_sys_151: -2.07709834e-10 - art_sys_152: -1.75355129e-09 - art_sys_153: 1.12874176e-07 - art_sys_154: -7.82735297e-08 - art_sys_155: 2.01643698e-19 - art_sys_156: -1.05661647e-22 - art_sys_157: 1.43175049e-22 - art_sys_158: 0.0 - art_sys_159: -2.57599355e-10 - art_sys_160: 4.10143401e-10 - art_sys_161: 3.05321155e-09 - art_sys_162: -4.29460594e-09 - art_sys_163: 1.03049592e-08 - art_sys_164: 4.67221496e-08 - art_sys_165: 2.83016316e-08 - art_sys_166: 2.54310133e-15 - art_sys_167: -1.80711514e-15 - art_sys_168: -2.58644909e-15 - art_sys_169: 6.76580723e-16 - art_sys_170: -2.24825925e-16 - art_sys_171: 2.26100607e-16 - art_sys_172: 2.01882032e-17 - art_sys_173: 6.28409705e-19 - art_sys_174: 3.72825548e-18 - art_sys_175: 2.59906581e-19 - art_sys_176: 5.67293926e-18 - art_sys_177: 5.11997358e-18 - art_sys_178: -3.02764668e-18 - art_sys_179: 3.86328008e-18 - art_sys_180: -1.20431597e-18 - art_sys_181: 1.00772659e-18 - art_sys_182: 4.10367210e-19 - art_sys_183: -2.43669958e-19 - art_sys_184: 1.42587010e-19 - art_sys_185: -4.19063874e-20 + art_sys_89: -6.44477871e-15 + art_sys_90: -1.39992318e-14 + art_sys_91: -9.49819276e-30 + art_sys_92: -3.52011216e-15 + art_sys_93: -7.29725227e-15 + art_sys_94: 5.17222105e-14 + art_sys_95: 3.89743774e-27 + art_sys_96: -1.42387912e-30 + art_sys_97: 4.12102246e-30 + art_sys_98: 3.36175522e-27 + art_sys_99: 9.19017619e-29 + art_sys_100: 4.58596235e-26 + art_sys_101: 1.57224431e-27 + art_sys_102: 8.25727312e-27 + art_sys_103: 9.80282545e-27 + art_sys_104: -3.40878588e-27 + art_sys_105: 6.40314006e-13 + art_sys_106: -8.92526429e-28 + art_sys_107: -2.11614783e-26 + art_sys_108: -9.04523453e-12 + art_sys_109: 2.44238253e-12 + art_sys_110: 8.75772576e-25 + art_sys_111: -8.99231573e-26 + art_sys_112: -8.84060418e-26 + art_sys_113: -2.44954002e-25 + art_sys_114: -1.17142429e-10 + art_sys_115: 2.79824592e-26 + art_sys_116: 1.49908233e-25 + art_sys_117: 2.57596673e-10 + art_sys_118: -7.77354577e-26 + art_sys_119: 1.37980106e-23 + art_sys_120: 1.14396533e-25 + art_sys_121: 4.10143698e-10 + art_sys_122: -5.96673305e-25 + art_sys_123: 2.02199580e-22 + art_sys_124: 5.43512334e-25 + art_sys_125: -3.05227465e-09 + art_sys_126: -5.94362359e-24 + art_sys_127: -4.07829650e-20 + art_sys_128: 2.66507087e-25 + art_sys_129: -4.29461669e-09 + art_sys_130: 5.57625249e-17 + art_sys_131: 1.02486435e-08 + art_sys_132: -2.00643119e-23 + art_sys_133: 7.40442650e-15 + art_sys_134: -8.18994052e-21 + art_sys_135: 4.56643983e-22 + art_sys_136: -4.67210648e-08 + art_sys_137: 3.25897229e-14 + art_sys_138: -1.11372033e-20 + art_sys_139: -2.51863427e-15 + art_sys_140: -2.83697488e-08 + art_sys_141: 1.61097880e-16 + art_sys_142: -5.31044277e-19 + art_sys_143: 1.58441099e-14 + art_sys_144: 1.77383444e-07 + art_sys_145: 2.03611091e-17 + art_sys_146: 1.92065873e-13 + art_sys_147: 3.49334844e-07 + art_sys_148: 2.09912373e-07 + art_sys_149: -2.93371819e-15 + art_sys_150: 4.99528610e-13 + art_sys_151: 5.46888889e-13 + art_sys_152: 1.15099841e-06 + art_sys_153: 1.00564977e-12 + art_sys_154: -3.75700486e-22 + art_sys_155: 1.24082648e-06 + art_sys_156: -0.0 + art_sys_157: -1.46467519e-12 + art_sys_158: -0.0 + art_sys_159: 1.93621348e-12 + art_sys_160: 7.04701443e-07 + art_sys_161: -1.80866891e-11 + art_sys_162: -1.80866891e-11 + art_sys_163: 2.41716246e-09 + art_sys_164: 2.41716246e-09 + art_sys_165: 3.66050113e-21 + art_sys_166: -1.89931101e-21 + art_sys_167: -0.0 + art_sys_168: 2.08991448e-15 + art_sys_169: 1.10221452e-15 + art_sys_170: 1.26090625e-15 + art_sys_171: -2.52556195e-16 + art_sys_172: -1.36887249e-16 + art_sys_173: -1.37053723e-16 + art_sys_174: 1.14605466e-17 + art_sys_175: 1.93258013e-17 + art_sys_176: -1.16723955e-17 + art_sys_177: 3.40189676e-18 + art_sys_178: -1.35223243e-18 + art_sys_179: -2.41300955e-19 + art_sys_180: -6.49992269e-20 + art_sys_181: 7.05245691e-18 + art_sys_182: -6.31575400e-19 + art_sys_183: 2.56455758e-19 + art_sys_184: -1.05750302e-19 + art_sys_185: -3.08116041e-20 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -40730,149 +40730,149 @@ bins: art_sys_40: 0.0 art_sys_41: 0.0 art_sys_42: 0.0 - art_sys_43: 4.23035177e-204 - art_sys_44: -2.59116465e-196 - art_sys_45: 1.71414615e-69 - art_sys_46: -1.04225056e-65 - art_sys_47: 2.58249768e-60 - art_sys_48: -3.00167623e-52 - art_sys_49: 3.80909612e-31 - art_sys_50: 1.86010871e-29 - art_sys_51: -1.04737674e-28 - art_sys_52: -6.11669721e-28 - art_sys_53: 3.15066711e-26 - art_sys_54: 2.94781022e-26 - art_sys_55: -4.40851607e-44 - art_sys_56: 1.98500953e-43 - art_sys_57: 1.51606097e-44 - art_sys_58: 1.03498373e-25 - art_sys_59: -3.25068340e-25 - art_sys_60: -4.39986344e-43 - art_sys_61: 1.80385840e-43 - art_sys_62: -2.86799425e-43 - art_sys_63: 5.16791279e-43 - art_sys_64: -4.39528869e-43 - art_sys_65: -2.13326673e-22 - art_sys_66: -3.83623345e-22 - art_sys_67: 4.07365151e-40 - art_sys_68: 8.93376707e-41 - art_sys_69: -1.84166826e-39 - art_sys_70: -3.02397712e-40 - art_sys_71: 3.42973255e-40 - art_sys_72: 2.64464532e-37 - art_sys_73: -1.59901216e-15 - art_sys_74: -6.79578813e-15 - art_sys_75: 8.10916650e-15 - art_sys_76: 2.28059340e-21 - art_sys_77: 3.06865765e-35 - art_sys_78: 3.16744475e-34 - art_sys_79: 1.44226119e-16 - art_sys_80: -8.74768233e-22 - art_sys_81: 5.66554389e-15 - art_sys_82: 6.16506080e-15 - art_sys_83: 5.21314259e-20 - art_sys_84: -7.28872709e-15 - art_sys_85: 9.19013673e-15 - art_sys_86: 1.85205421e-19 - art_sys_87: 1.00237274e-33 + art_sys_43: 0.0 + art_sys_44: -3.23653832e-236 + art_sys_45: -1.63229404e-229 + art_sys_46: -1.38807295e-179 + art_sys_47: -7.68531092e-185 + art_sys_48: 4.14309991e-177 + art_sys_49: -3.53503997e-168 + art_sys_50: 1.51567158e-160 + art_sys_51: -6.28874838e-150 + art_sys_52: -6.98707074e-167 + art_sys_53: -2.23149639e-163 + art_sys_54: -2.64034035e-158 + art_sys_55: -6.51055156e-155 + art_sys_56: -1.04993199e-151 + art_sys_57: -3.72174304e-73 + art_sys_58: -1.84418802e-59 + art_sys_59: 7.07680564e-71 + art_sys_60: -8.55627255e-68 + art_sys_61: -3.37299718e-53 + art_sys_62: 9.36286484e-68 + art_sys_63: 1.58154668e-57 + art_sys_64: 3.80909612e-31 + art_sys_65: -1.86010871e-29 + art_sys_66: -1.04737674e-28 + art_sys_67: -6.11669721e-28 + art_sys_68: -3.15066711e-26 + art_sys_69: -2.94781022e-26 + art_sys_70: -1.03498373e-25 + art_sys_71: 3.25068340e-25 + art_sys_72: 2.13326673e-22 + art_sys_73: -3.83623345e-22 + art_sys_74: -2.62728448e-40 + art_sys_75: -2.28059340e-21 + art_sys_76: -4.10201080e-15 + art_sys_77: -2.82901401e-15 + art_sys_78: 2.56053730e-15 + art_sys_79: -8.74768233e-22 + art_sys_80: 2.44296120e-15 + art_sys_81: -5.21314259e-20 + art_sys_82: -1.27500950e-32 + art_sys_83: -8.44346836e-15 + art_sys_84: 5.57418721e-15 + art_sys_85: -5.73837798e-15 + art_sys_86: 4.48201302e-15 + art_sys_87: 1.85205421e-19 art_sys_88: 9.30766121e-18 - art_sys_89: -2.37463829e-17 - art_sys_90: 1.50141565e-33 - art_sys_91: 1.34892034e-32 - art_sys_92: -2.11238522e-33 - art_sys_93: -4.23021019e-34 - art_sys_94: 1.37184451e-32 - art_sys_95: -1.49185553e-34 - art_sys_96: -9.09109543e-17 - art_sys_97: -1.42024462e-32 - art_sys_98: -3.25666693e-33 - art_sys_99: -1.23908536e-33 - art_sys_100: 3.61203772e-33 - art_sys_101: 1.22772685e-33 - art_sys_102: 3.13098771e-34 - art_sys_103: 2.76587793e-31 - art_sys_104: 4.32529950e-31 - art_sys_105: 9.81262089e-31 - art_sys_106: -3.30637836e-30 - art_sys_107: 2.65113068e-15 - art_sys_108: -1.30246254e-14 - art_sys_109: -5.40965572e-14 - art_sys_110: -1.73316395e-29 - art_sys_111: 1.23949684e-30 - art_sys_112: -1.57876332e-28 - art_sys_113: 1.13389184e-13 - art_sys_114: -1.57429652e-29 - art_sys_115: -1.54928724e-25 - art_sys_116: 2.74226182e-29 - art_sys_117: 6.10313042e-30 - art_sys_118: -2.74728675e-22 - art_sys_119: 1.04816170e-26 - art_sys_120: 3.90747112e-24 - art_sys_121: -2.17263980e-21 - art_sys_122: 2.55367711e-25 - art_sys_123: -8.10705925e-23 - art_sys_124: 1.68633326e-18 - art_sys_125: 5.75025359e-22 - art_sys_126: 1.33744644e-17 - art_sys_127: 1.06264442e-22 - art_sys_128: 1.58078330e-16 - art_sys_129: -1.74726946e-22 - art_sys_130: 9.79230776e-17 - art_sys_131: 2.95340815e-19 - art_sys_132: -3.30909896e-20 - art_sys_133: 1.19810530e-15 - art_sys_134: -1.04428228e-09 - art_sys_135: -1.67198275e-18 - art_sys_136: 1.28172166e-15 - art_sys_137: -2.62195085e-08 - art_sys_138: 6.57132239e-25 - art_sys_139: -5.32143940e-16 - art_sys_140: -6.42751064e-14 - art_sys_141: 4.45386589e-14 - art_sys_142: 5.49915008e-13 - art_sys_143: -3.06106914e-08 - art_sys_144: -1.68734742e-07 - art_sys_145: -8.05629773e-08 - art_sys_146: 0.0 - art_sys_147: 3.90738086e-07 - art_sys_148: -9.87699826e-10 - art_sys_149: -9.87699826e-10 - art_sys_150: -1.38933515e-10 - art_sys_151: -1.38933515e-10 - art_sys_152: -3.11792396e-09 - art_sys_153: 3.46753371e-07 - art_sys_154: 2.63301110e-07 - art_sys_155: 5.02115822e-19 - art_sys_156: 6.10154932e-22 - art_sys_157: -5.21933626e-22 - art_sys_158: -0.0 - art_sys_159: -1.00129072e-12 - art_sys_160: -1.17902144e-12 - art_sys_161: 9.31149285e-12 - art_sys_162: -4.31865425e-11 - art_sys_163: 1.68962860e-12 - art_sys_164: 6.74444232e-10 - art_sys_165: 2.67280947e-09 - art_sys_166: 3.23280269e-16 - art_sys_167: -2.93339217e-16 - art_sys_168: -8.33487203e-16 - art_sys_169: 2.03028418e-16 - art_sys_170: -2.03505047e-16 - art_sys_171: 1.99845954e-16 - art_sys_172: 5.01152748e-17 - art_sys_173: -2.48994753e-17 - art_sys_174: -2.27039519e-17 - art_sys_175: -7.31469400e-20 - art_sys_176: -3.14602936e-18 - art_sys_177: -2.34318857e-18 - art_sys_178: 1.24974973e-18 - art_sys_179: 3.08907433e-19 - art_sys_180: -1.05799824e-19 - art_sys_181: 2.70829977e-19 - art_sys_182: 6.80948301e-20 - art_sys_183: -8.25017922e-20 - art_sys_184: 2.68411206e-20 - art_sys_185: -1.53056134e-20 + art_sys_89: -3.16853804e-15 + art_sys_90: -2.37463829e-17 + art_sys_91: 3.72933508e-33 + art_sys_92: -2.05100715e-15 + art_sys_93: -4.84251662e-15 + art_sys_94: 9.09109523e-17 + art_sys_95: 5.64390101e-30 + art_sys_96: 1.70127951e-34 + art_sys_97: 9.52879313e-33 + art_sys_98: -5.75812102e-31 + art_sys_99: -1.04899543e-31 + art_sys_100: -3.19836568e-29 + art_sys_101: -7.32162328e-31 + art_sys_102: 1.15713488e-29 + art_sys_103: -4.05104584e-30 + art_sys_104: -4.46950087e-30 + art_sys_105: -2.65093179e-15 + art_sys_106: -7.18021778e-31 + art_sys_107: -3.34009909e-29 + art_sys_108: -1.30246263e-14 + art_sys_109: 5.40966723e-14 + art_sys_110: 1.48528354e-27 + art_sys_111: -1.21044511e-28 + art_sys_112: -1.32653140e-28 + art_sys_113: -4.03839237e-28 + art_sys_114: -1.13387154e-13 + art_sys_115: 4.26951734e-29 + art_sys_116: 2.43023984e-28 + art_sys_117: 1.00130414e-12 + art_sys_118: -1.18347209e-28 + art_sys_119: 2.40061692e-26 + art_sys_120: -2.66841081e-28 + art_sys_121: -1.17899335e-12 + art_sys_122: -4.99279200e-28 + art_sys_123: 2.93684814e-25 + art_sys_124: 1.57852587e-27 + art_sys_125: -9.30599659e-12 + art_sys_126: -5.89902574e-26 + art_sys_127: 3.05166093e-22 + art_sys_128: 7.29958861e-28 + art_sys_129: -4.31865025e-11 + art_sys_130: 6.48208578e-20 + art_sys_131: 9.09643005e-13 + art_sys_132: -4.42148936e-26 + art_sys_133: 2.09261786e-17 + art_sys_134: -2.46101944e-23 + art_sys_135: 1.26725876e-24 + art_sys_136: -6.74018658e-10 + art_sys_137: 9.77399803e-17 + art_sys_138: -2.63548533e-23 + art_sys_139: 6.22672418e-18 + art_sys_140: -2.67306662e-09 + art_sys_141: 5.14738747e-19 + art_sys_142: -1.57509334e-21 + art_sys_143: 4.50926573e-17 + art_sys_144: -1.04070311e-09 + art_sys_145: 1.46044332e-19 + art_sys_146: 8.41411621e-16 + art_sys_147: 2.58209046e-08 + art_sys_148: -1.02896036e-07 + art_sys_149: -5.29992602e-16 + art_sys_150: 9.58619367e-14 + art_sys_151: 4.62250762e-13 + art_sys_152: -2.23973260e-07 + art_sys_153: -3.74560757e-13 + art_sys_154: -2.69154060e-23 + art_sys_155: 2.76426827e-08 + art_sys_156: 0.0 + art_sys_157: -4.94103607e-13 + art_sys_158: 0.0 + art_sys_159: -5.82304753e-12 + art_sys_160: 3.82650404e-07 + art_sys_161: -1.92814650e-11 + art_sys_162: -1.92814650e-11 + art_sys_163: 6.43393901e-08 + art_sys_164: 6.43393901e-08 + art_sys_165: -5.10680084e-21 + art_sys_166: 2.52786574e-21 + art_sys_167: 0.0 + art_sys_168: 1.71614580e-15 + art_sys_169: 9.21798158e-16 + art_sys_170: 1.10509202e-15 + art_sys_171: -2.29972913e-16 + art_sys_172: -1.31603501e-16 + art_sys_173: -1.12571582e-16 + art_sys_174: 1.25019933e-17 + art_sys_175: 5.81593324e-18 + art_sys_176: -2.05832196e-18 + art_sys_177: 8.96977771e-19 + art_sys_178: -1.06734650e-18 + art_sys_179: -7.05169431e-20 + art_sys_180: 4.77371209e-20 + art_sys_181: 4.24666312e-18 + art_sys_182: -3.39243113e-19 + art_sys_183: 1.82768550e-19 + art_sys_184: -3.46735093e-20 + art_sys_185: 6.45838941e-21 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -41021,149 +41021,149 @@ bins: art_sys_40: 0.0 art_sys_41: 0.0 art_sys_42: 0.0 - art_sys_43: 6.05762241e-207 - art_sys_44: -3.71039995e-199 - art_sys_45: 2.45458916e-72 - art_sys_46: -1.49246138e-68 - art_sys_47: 3.69803403e-63 - art_sys_48: -4.29828105e-55 - art_sys_49: 5.45447424e-34 - art_sys_50: 4.56269778e-32 - art_sys_51: -2.46717240e-31 - art_sys_52: 4.91848043e-31 - art_sys_53: 6.49182809e-29 - art_sys_54: 8.65467716e-28 - art_sys_55: -1.86445928e-46 - art_sys_56: -2.11186413e-45 - art_sys_57: 5.40358032e-47 - art_sys_58: -1.86437845e-27 - art_sys_59: 7.43743559e-27 - art_sys_60: 1.00857853e-44 - art_sys_61: -4.36719322e-45 - art_sys_62: 6.80726202e-45 - art_sys_63: -1.03452067e-44 - art_sys_64: 1.03415718e-44 - art_sys_65: -5.20483772e-25 - art_sys_66: -2.15165829e-24 - art_sys_67: 9.44571012e-43 - art_sys_68: 1.57696622e-42 - art_sys_69: -9.16430340e-42 - art_sys_70: 7.32759861e-43 - art_sys_71: 4.97472488e-43 - art_sys_72: 1.85985249e-36 - art_sys_73: -1.23769027e-14 - art_sys_74: 1.37692563e-14 - art_sys_75: 3.56004468e-15 - art_sys_76: 2.30580093e-23 - art_sys_77: 3.41248286e-36 - art_sys_78: 8.58274829e-35 - art_sys_79: -7.48658299e-14 - art_sys_80: 3.33328364e-23 - art_sys_81: 2.80315146e-14 - art_sys_82: 2.30353404e-14 - art_sys_83: 2.95882213e-22 - art_sys_84: -2.76526642e-14 - art_sys_85: 3.19006173e-14 - art_sys_86: 1.14805924e-21 - art_sys_87: 3.15493186e-33 + art_sys_43: 0.0 + art_sys_44: -5.50997800e-239 + art_sys_45: -2.77886533e-232 + art_sys_46: -1.99519457e-182 + art_sys_47: -1.10467470e-187 + art_sys_48: 5.95522770e-180 + art_sys_49: -5.08121175e-171 + art_sys_50: 2.17860287e-163 + art_sys_51: -9.03934962e-153 + art_sys_52: -1.00431074e-169 + art_sys_53: -3.20751838e-166 + art_sys_54: -3.79518436e-161 + art_sys_55: -9.35816607e-158 + art_sys_56: -1.50915599e-154 + art_sys_57: -5.32938883e-76 + art_sys_58: -2.64080431e-62 + art_sys_59: 1.01337058e-73 + art_sys_60: -1.22522439e-70 + art_sys_61: -4.82999856e-56 + art_sys_62: 1.34075170e-70 + art_sys_63: 2.26471229e-60 + art_sys_64: 5.45447424e-34 + art_sys_65: -4.56269778e-32 + art_sys_66: -2.46717240e-31 + art_sys_67: 4.91848043e-31 + art_sys_68: -6.49182809e-29 + art_sys_69: -8.65467716e-28 + art_sys_70: 1.86437845e-27 + art_sys_71: -7.43743559e-27 + art_sys_72: 5.20483772e-25 + art_sys_73: -2.15165829e-24 + art_sys_74: -4.21880553e-43 + art_sys_75: -2.30580093e-23 + art_sys_76: 1.10544832e-14 + art_sys_77: 1.49964250e-15 + art_sys_78: 5.74057670e-16 + art_sys_79: 3.33328364e-23 + art_sys_80: -2.87116441e-14 + art_sys_81: -2.95882213e-22 + art_sys_82: -7.55565512e-35 + art_sys_83: 3.78232254e-15 + art_sys_84: 2.83250497e-15 + art_sys_85: 1.79339083e-15 + art_sys_86: -3.00024410e-15 + art_sys_87: 1.14805924e-21 art_sys_88: 4.03433081e-20 - art_sys_89: -9.24222296e-20 - art_sys_90: 4.31346930e-33 - art_sys_91: -1.80931162e-33 - art_sys_92: -4.48114321e-33 - art_sys_93: -2.90661761e-33 - art_sys_94: -8.22428001e-34 - art_sys_95: -1.44617826e-33 - art_sys_96: 6.76270774e-20 - art_sys_97: -6.29199203e-34 - art_sys_98: 1.81373121e-33 - art_sys_99: -4.10364200e-34 - art_sys_100: -3.61063300e-34 - art_sys_101: 1.10678957e-33 - art_sys_102: 4.30710052e-34 - art_sys_103: 2.79940237e-33 - art_sys_104: 2.25580559e-33 - art_sys_105: -3.36648737e-32 - art_sys_106: 1.66182622e-32 - art_sys_107: 3.00032241e-17 - art_sys_108: 3.54745698e-16 - art_sys_109: 2.41161332e-16 - art_sys_110: -1.95666200e-32 - art_sys_111: -1.63431560e-32 - art_sys_112: -6.37687645e-31 - art_sys_113: -1.16794065e-14 - art_sys_114: 1.61171810e-30 - art_sys_115: -1.54024873e-25 - art_sys_116: -5.13803953e-30 - art_sys_117: -7.27572631e-30 - art_sys_118: -4.06408570e-23 - art_sys_119: -7.80359357e-26 - art_sys_120: -3.58154595e-23 - art_sys_121: 5.06015040e-21 - art_sys_122: -3.08453011e-24 - art_sys_123: 1.15563586e-21 - art_sys_124: -7.98980166e-20 - art_sys_125: -1.11535628e-21 - art_sys_126: -7.15046400e-19 - art_sys_127: -4.30814856e-22 - art_sys_128: -1.61819080e-17 - art_sys_129: -8.00612825e-23 - art_sys_130: -1.21603640e-17 - art_sys_131: -3.94212939e-20 - art_sys_132: 5.29492949e-21 - art_sys_133: -1.69523984e-16 - art_sys_134: 1.35350869e-10 - art_sys_135: 2.34219342e-19 - art_sys_136: -1.81227065e-16 - art_sys_137: 2.95727106e-09 - art_sys_138: -1.61843884e-24 - art_sys_139: 4.99823245e-17 - art_sys_140: 5.18458098e-15 - art_sys_141: 1.84226882e-14 - art_sys_142: 7.94795880e-13 - art_sys_143: 1.60612334e-07 - art_sys_144: -4.04318891e-08 - art_sys_145: 2.75628976e-08 - art_sys_146: 0.0 - art_sys_147: -3.32976445e-07 - art_sys_148: 1.30409990e-09 - art_sys_149: 1.30409990e-09 - art_sys_150: 5.83162147e-10 - art_sys_151: 5.83162147e-10 - art_sys_152: 4.47858908e-09 - art_sys_153: -4.19243647e-07 - art_sys_154: -9.18494202e-09 - art_sys_155: -5.31372396e-19 - art_sys_156: -8.69889263e-23 - art_sys_157: 1.17109310e-22 + art_sys_89: -2.80851979e-15 + art_sys_90: -9.24222294e-20 + art_sys_91: -3.92496271e-34 + art_sys_92: -1.59978202e-15 + art_sys_93: -3.97251435e-15 + art_sys_94: -6.76270759e-20 + art_sys_95: 2.47031741e-32 + art_sys_96: 1.21672870e-33 + art_sys_97: 3.67442482e-33 + art_sys_98: -9.15577351e-33 + art_sys_99: -1.76830087e-33 + art_sys_100: -1.84802273e-31 + art_sys_101: -6.00303816e-33 + art_sys_102: 5.05659667e-32 + art_sys_103: -2.69094404e-32 + art_sys_104: -1.70195276e-32 + art_sys_105: -3.00087347e-17 + art_sys_106: 4.05746740e-33 + art_sys_107: -1.01025809e-31 + art_sys_108: 3.54746384e-16 + art_sys_109: -2.41201731e-16 + art_sys_110: 5.86038216e-30 + art_sys_111: -5.72873551e-31 + art_sys_112: -6.20901449e-31 + art_sys_113: -1.52476949e-30 + art_sys_114: 1.16793005e-14 + art_sys_115: -1.84872790e-30 + art_sys_116: -8.29778397e-30 + art_sys_117: -5.37036360e-14 + art_sys_118: 1.70888740e-30 + art_sys_119: -1.09464344e-29 + art_sys_120: -8.74188470e-30 + art_sys_121: -8.22152093e-15 + art_sys_122: -4.33214878e-30 + art_sys_123: 8.30781053e-27 + art_sys_124: -1.84987201e-28 + art_sys_125: 1.06604785e-12 + art_sys_126: 9.77503568e-28 + art_sys_127: -3.62967739e-23 + art_sys_128: 9.63023625e-29 + art_sys_129: 4.21900653e-12 + art_sys_130: -4.57304694e-21 + art_sys_131: -2.97060070e-12 + art_sys_132: 5.29240958e-28 + art_sys_133: -2.56481746e-18 + art_sys_134: 2.92320259e-24 + art_sys_135: -1.53064095e-25 + art_sys_136: 9.28219759e-11 + art_sys_137: -1.12507080e-17 + art_sys_138: 3.40239240e-24 + art_sys_139: -4.04839322e-20 + art_sys_140: 3.64711587e-10 + art_sys_141: -5.89981616e-20 + art_sys_142: 1.89319652e-22 + art_sys_143: -5.84952852e-18 + art_sys_144: 1.34919042e-10 + art_sys_145: -2.62933660e-20 + art_sys_146: -1.68349835e-16 + art_sys_147: -3.19634830e-09 + art_sys_148: 1.09113478e-07 + art_sys_149: 6.65095680e-17 + art_sys_150: -1.20047636e-14 + art_sys_151: -3.83848739e-14 + art_sys_152: -7.75280482e-08 + art_sys_153: 4.81174824e-15 + art_sys_154: 3.71381801e-23 + art_sys_155: 2.32077282e-07 + art_sys_156: 0.0 + art_sys_157: -2.21295051e-13 art_sys_158: 0.0 - art_sys_159: 5.37035057e-14 - art_sys_160: -8.21963891e-15 - art_sys_161: -1.06661355e-12 - art_sys_162: 4.21900288e-12 - art_sys_163: -3.07880532e-12 - art_sys_164: -9.28782259e-11 - art_sys_165: -3.64673930e-10 - art_sys_166: 2.74327632e-15 - art_sys_167: -1.96617887e-15 - art_sys_168: -2.51192859e-15 - art_sys_169: 4.47405070e-16 - art_sys_170: -1.22854607e-16 - art_sys_171: 8.92104294e-17 - art_sys_172: -1.12043452e-17 - art_sys_173: 5.84621180e-19 - art_sys_174: 5.04027611e-18 - art_sys_175: 4.27950457e-20 - art_sys_176: -1.91380543e-18 - art_sys_177: 1.63579358e-18 - art_sys_178: 7.05918776e-19 - art_sys_179: -4.26780417e-19 - art_sys_180: 3.57456523e-19 - art_sys_181: -2.77461003e-19 - art_sys_182: -8.73643331e-20 - art_sys_183: 5.80882487e-20 - art_sys_184: -2.31766174e-20 - art_sys_185: 9.81814104e-21 + art_sys_159: -5.85638878e-12 + art_sys_160: 2.37744496e-07 + art_sys_161: -1.88166711e-10 + art_sys_162: -1.88166711e-10 + art_sys_163: 1.32787558e-07 + art_sys_164: 1.32787558e-07 + art_sys_165: 8.96151617e-21 + art_sys_166: -4.86657483e-21 + art_sys_167: -0.0 + art_sys_168: 1.25818505e-15 + art_sys_169: 7.39434092e-16 + art_sys_170: 8.92799174e-16 + art_sys_171: -1.87981813e-16 + art_sys_172: -1.11259554e-16 + art_sys_173: -1.15457375e-16 + art_sys_174: 1.67409326e-17 + art_sys_175: 1.28999241e-17 + art_sys_176: -9.37481612e-18 + art_sys_177: 2.16962897e-18 + art_sys_178: -7.50830759e-19 + art_sys_179: -9.24582163e-20 + art_sys_180: -5.79435659e-20 + art_sys_181: 4.55601634e-18 + art_sys_182: -3.83755290e-19 + art_sys_183: 1.56673745e-19 + art_sys_184: -6.60161450e-20 + art_sys_185: -2.18638424e-20 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -43946,134 +43946,134 @@ bins: art_sys_55: 0.0 art_sys_56: 0.0 art_sys_57: 0.0 - art_sys_58: 3.90479952e-295 - art_sys_59: -8.24808719e-216 - art_sys_60: -9.05410872e-212 - art_sys_61: 5.36903964e-209 - art_sys_62: -2.65416645e-203 - art_sys_63: -4.10614889e-194 - art_sys_64: 1.26302777e-195 - art_sys_65: -1.36748700e-68 - art_sys_66: -2.55458309e-56 - art_sys_67: 9.44655277e-53 - art_sys_68: 1.24664579e-50 - art_sys_69: 1.62765976e-36 - art_sys_70: -3.56952564e-39 - art_sys_71: 4.09470227e-33 - art_sys_72: 2.69261962e-20 - art_sys_73: -1.79211144e+02 - art_sys_74: 3.83863567e+01 - art_sys_75: 1.36807570e+01 - art_sys_76: 3.04033899e-18 - art_sys_77: 3.10327545e-20 - art_sys_78: 2.53473706e-19 - art_sys_79: 2.26473660e+00 - art_sys_80: 8.61401972e-18 - art_sys_81: -3.64301698e-02 - art_sys_82: -1.13971321e-02 - art_sys_83: 3.52400174e-18 - art_sys_84: 6.14263486e-03 - art_sys_85: -1.49833498e-03 - art_sys_86: -9.71401239e-19 - art_sys_87: 6.02900786e-21 - art_sys_88: 1.91982708e-19 - art_sys_89: -3.94282434e-19 - art_sys_90: 7.79039794e-20 - art_sys_91: -7.33539841e-20 - art_sys_92: 3.75534807e-21 - art_sys_93: -5.19532078e-20 - art_sys_94: 8.44558425e-20 - art_sys_95: 1.68269128e-20 - art_sys_96: 8.18262362e-20 - art_sys_97: -7.48773263e-20 - art_sys_98: 2.93313656e-20 - art_sys_99: 1.31827493e-20 - art_sys_100: 2.54399113e-20 - art_sys_101: -1.32102904e-20 - art_sys_102: -1.12141587e-20 - art_sys_103: 1.75356311e-20 - art_sys_104: -1.51225989e-23 - art_sys_105: 2.94488380e-21 - art_sys_106: -1.64796860e-20 - art_sys_107: -6.94788914e-21 - art_sys_108: -2.73434058e-20 - art_sys_109: -5.14945669e-20 - art_sys_110: -2.04434560e-21 - art_sys_111: 1.48030736e-20 - art_sys_112: -7.02842079e-21 - art_sys_113: 2.34974089e-20 - art_sys_114: 4.17727205e-21 - art_sys_115: 8.56073059e-21 - art_sys_116: 1.82661156e-20 - art_sys_117: 2.84348314e-21 - art_sys_118: -2.95253882e-21 - art_sys_119: 2.17355992e-21 - art_sys_120: 4.64056305e-21 - art_sys_121: -7.69213278e-21 - art_sys_122: -6.08229338e-21 - art_sys_123: 7.52695883e-22 - art_sys_124: -5.50219226e-21 - art_sys_125: -2.13059636e-21 - art_sys_126: -2.90673847e-21 - art_sys_127: -2.19234038e-21 - art_sys_128: -2.43016108e-21 - art_sys_129: 1.69360097e-21 - art_sys_130: -4.13735121e-23 - art_sys_131: -1.41872971e-21 - art_sys_132: 9.29720041e-22 - art_sys_133: -3.44585990e-22 - art_sys_134: 5.95829938e-22 - art_sys_135: -8.89165223e-23 - art_sys_136: 2.36425975e-22 - art_sys_137: -6.46719980e-23 - art_sys_138: 3.79535855e-22 - art_sys_139: -1.79865201e-22 - art_sys_140: 2.41224571e-22 - art_sys_141: -2.05657079e-22 - art_sys_142: -1.87665846e-22 - art_sys_143: -3.93648031e-21 - art_sys_144: 5.80437686e-22 - art_sys_145: 1.52685938e-22 - art_sys_146: -0.0 - art_sys_147: 1.84507800e-22 - art_sys_148: -1.96316865e-23 - art_sys_149: -1.96316865e-23 - art_sys_150: -4.94689286e-23 - art_sys_151: -4.94689286e-23 - art_sys_152: 2.13435217e-23 - art_sys_153: 1.38305470e-22 - art_sys_154: -1.21906554e-23 - art_sys_155: -2.84771419e-24 - art_sys_156: 3.30887872e-26 - art_sys_157: 2.70660132e-27 + art_sys_58: 0.0 + art_sys_59: 0.0 + art_sys_60: 0.0 + art_sys_61: 0.0 + art_sys_62: 0.0 + art_sys_63: 0.0 + art_sys_64: 0.0 + art_sys_65: 0.0 + art_sys_66: 0.0 + art_sys_67: 0.0 + art_sys_68: 0.0 + art_sys_69: 0.0 + art_sys_70: 0.0 + art_sys_71: 0.0 + art_sys_72: 1.55472742e-188 + art_sys_73: -9.63676516e-180 + art_sys_74: -3.00403639e-181 + art_sys_75: -1.47554440e-65 + art_sys_76: -1.79211144e+02 + art_sys_77: 3.83863567e+01 + art_sys_78: 1.36807570e+01 + art_sys_79: -1.28670842e-17 + art_sys_80: -2.26473660e+00 + art_sys_81: 4.00973278e-18 + art_sys_82: -1.39205744e-19 + art_sys_83: -3.64301698e-02 + art_sys_84: 1.13971321e-02 + art_sys_85: -6.14263486e-03 + art_sys_86: 1.49833498e-03 + art_sys_87: -1.67591942e-19 + art_sys_88: -4.32451501e-20 + art_sys_89: 3.23104452e-06 + art_sys_90: -2.75639663e-19 + art_sys_91: 1.82663129e-20 + art_sys_92: 5.81535322e-07 + art_sys_93: 5.44945876e-07 + art_sys_94: 3.53252269e-20 + art_sys_95: 2.74646926e-20 + art_sys_96: -9.96519529e-20 + art_sys_97: -6.77831678e-20 + art_sys_98: 7.40029331e-21 + art_sys_99: -1.24709142e-19 + art_sys_100: 8.04397652e-20 + art_sys_101: -1.68411460e-20 + art_sys_102: 3.32202332e-20 + art_sys_103: 1.65802585e-20 + art_sys_104: 3.65197410e-20 + art_sys_105: 1.08356579e-19 + art_sys_106: 9.28937680e-21 + art_sys_107: 1.47503349e-20 + art_sys_108: -3.15424594e-20 + art_sys_109: 4.17451967e-20 + art_sys_110: -2.72326738e-21 + art_sys_111: 7.33444208e-21 + art_sys_112: 1.30811447e-20 + art_sys_113: 7.93440801e-22 + art_sys_114: -5.14153583e-21 + art_sys_115: -2.00083417e-23 + art_sys_116: 9.81960388e-21 + art_sys_117: 9.84654194e-21 + art_sys_118: 1.54509821e-21 + art_sys_119: 8.97057970e-21 + art_sys_120: 1.41886219e-21 + art_sys_121: -1.28682867e-21 + art_sys_122: -5.06138974e-21 + art_sys_123: -5.72424204e-22 + art_sys_124: -8.52003374e-21 + art_sys_125: -3.18386295e-21 + art_sys_126: -5.25657619e-21 + art_sys_127: -4.99429475e-21 + art_sys_128: 3.27113567e-21 + art_sys_129: 7.09941697e-22 + art_sys_130: -3.85260288e-21 + art_sys_131: -1.50648377e-21 + art_sys_132: 3.66228828e-23 + art_sys_133: -3.80816400e-22 + art_sys_134: 9.14282173e-23 + art_sys_135: -5.77012924e-21 + art_sys_136: 2.82768313e-21 + art_sys_137: -4.89602468e-22 + art_sys_138: 4.20303073e-22 + art_sys_139: -2.84979287e-22 + art_sys_140: -2.63152436e-21 + art_sys_141: -1.92631722e-23 + art_sys_142: -1.32304895e-22 + art_sys_143: 2.85060348e-22 + art_sys_144: 3.24909423e-21 + art_sys_145: 7.27402119e-22 + art_sys_146: 1.02335016e-21 + art_sys_147: -8.96294935e-22 + art_sys_148: 4.73683160e-21 + art_sys_149: -8.91585750e-23 + art_sys_150: -1.21739239e-22 + art_sys_151: 2.54838681e-22 + art_sys_152: -2.17515259e-21 + art_sys_153: -4.79495833e-24 + art_sys_154: 1.33851569e-23 + art_sys_155: -3.93282631e-22 + art_sys_156: 0.0 + art_sys_157: 1.58889476e-23 art_sys_158: 0.0 - art_sys_159: 6.07720797e-21 - art_sys_160: -2.33722552e-21 - art_sys_161: -5.43307759e-22 - art_sys_162: 5.84392073e-21 - art_sys_163: 7.96165055e-21 - art_sys_164: -5.73467914e-21 - art_sys_165: -9.54483159e-22 - art_sys_166: -3.23104452e-06 - art_sys_167: 5.81535322e-07 - art_sys_168: 5.44945876e-07 - art_sys_169: -7.53591434e-09 - art_sys_170: 5.64255371e-09 - art_sys_171: -1.61016227e-09 - art_sys_172: -5.33931570e-11 - art_sys_173: 1.80782662e-11 - art_sys_174: 5.37550728e-12 - art_sys_175: 3.37793381e-22 - art_sys_176: 3.13593905e-14 - art_sys_177: 6.46715159e-15 - art_sys_178: -2.50868968e-15 - art_sys_179: 7.90074142e-16 - art_sys_180: -1.19105606e-16 - art_sys_181: 2.90754787e-17 - art_sys_182: 4.54930062e-18 - art_sys_183: -6.91821301e-19 - art_sys_184: 1.24257494e-19 - art_sys_185: -1.08623448e-20 + art_sys_159: -4.36991253e-23 + art_sys_160: -4.61196370e-22 + art_sys_161: 6.13483853e-24 + art_sys_162: 6.13483853e-24 + art_sys_163: -4.39911602e-23 + art_sys_164: -4.39911602e-23 + art_sys_165: -3.30885453e-26 + art_sys_166: -2.70659867e-27 + art_sys_167: -0.0 + art_sys_168: -7.53591434e-09 + art_sys_169: -5.64255371e-09 + art_sys_170: -1.61016227e-09 + art_sys_171: 5.33931568e-11 + art_sys_172: 1.80782662e-11 + art_sys_173: 5.37550729e-12 + art_sys_174: -3.13593714e-14 + art_sys_175: -6.46715461e-15 + art_sys_176: 2.50869041e-15 + art_sys_177: -1.19105751e-16 + art_sys_178: 2.90756311e-17 + art_sys_179: 3.37793392e-22 + art_sys_180: 2.84771342e-24 + art_sys_181: -7.90074157e-16 + art_sys_182: 4.54755228e-18 + art_sys_183: -6.91830178e-19 + art_sys_184: 1.24257570e-19 + art_sys_185: 1.08623450e-20 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -44237,134 +44237,134 @@ bins: art_sys_55: 0.0 art_sys_56: 0.0 art_sys_57: 0.0 - art_sys_58: 2.12035639e-295 - art_sys_59: -4.47887699e-216 - art_sys_60: -4.91656287e-212 - art_sys_61: 2.91549635e-209 - art_sys_62: -1.44126569e-203 - art_sys_63: -2.22972131e-194 - art_sys_64: 6.85849446e-196 - art_sys_65: -7.42572904e-69 - art_sys_66: -1.38718992e-56 - art_sys_67: 5.12966787e-53 - art_sys_68: 6.76953699e-51 - art_sys_69: 8.83851939e-37 - art_sys_70: -1.93832411e-39 - art_sys_71: 2.22350556e-33 - art_sys_72: 1.46214653e-20 - art_sys_73: -9.73152501e+01 - art_sys_74: -6.56877066e+01 - art_sys_75: -2.29836532e+01 - art_sys_76: 2.31181855e-18 - art_sys_77: -1.88950199e-20 - art_sys_78: -3.64762142e-19 - art_sys_79: -6.21644206e+00 - art_sys_80: 4.95732712e-18 - art_sys_81: 1.14070556e-01 - art_sys_82: 3.64296223e-02 - art_sys_83: 7.84025343e-19 - art_sys_84: -2.17062190e-02 - art_sys_85: 5.60326851e-03 - art_sys_86: 9.65912036e-20 - art_sys_87: -7.61807283e-20 - art_sys_88: -1.73486874e-19 - art_sys_89: 6.41094267e-19 - art_sys_90: -1.24937490e-19 - art_sys_91: 4.22201753e-21 - art_sys_92: -6.44281522e-20 - art_sys_93: -1.50913573e-20 - art_sys_94: 7.86994223e-20 - art_sys_95: -3.25163891e-20 - art_sys_96: -3.66521006e-20 - art_sys_97: -6.90515516e-20 - art_sys_98: -5.16025562e-20 - art_sys_99: -2.34066941e-20 - art_sys_100: 2.08943744e-20 - art_sys_101: -3.18552788e-20 - art_sys_102: 1.49740796e-20 - art_sys_103: -5.54333942e-21 - art_sys_104: -2.81514308e-21 - art_sys_105: 2.96572920e-20 - art_sys_106: 9.52129770e-21 - art_sys_107: -4.28788584e-20 - art_sys_108: -3.69431814e-20 - art_sys_109: 3.75993614e-21 - art_sys_110: -3.02218852e-20 - art_sys_111: 1.64958594e-21 - art_sys_112: -1.33739768e-21 - art_sys_113: 3.40625528e-21 - art_sys_114: 8.07423858e-22 - art_sys_115: 1.10664376e-20 - art_sys_116: 4.33384529e-21 - art_sys_117: -5.23342764e-22 - art_sys_118: -4.42829893e-21 - art_sys_119: 6.17351166e-22 - art_sys_120: 2.85766151e-22 - art_sys_121: 3.08272631e-21 - art_sys_122: 2.50515412e-21 - art_sys_123: 6.00478960e-21 - art_sys_124: -3.70433306e-21 - art_sys_125: -3.96502800e-21 - art_sys_126: -2.40786200e-22 - art_sys_127: 3.85718155e-21 - art_sys_128: 8.68965605e-22 - art_sys_129: 8.18854334e-22 - art_sys_130: 1.18980829e-21 - art_sys_131: 6.48430828e-22 - art_sys_132: -8.92142080e-22 - art_sys_133: -3.66022325e-22 - art_sys_134: -2.22494319e-21 - art_sys_135: -5.79887225e-22 - art_sys_136: 9.90826514e-22 - art_sys_137: 1.29802309e-21 - art_sys_138: -3.85978735e-22 - art_sys_139: -9.62279033e-23 - art_sys_140: 1.96257107e-22 - art_sys_141: -2.47973934e-22 - art_sys_142: -5.78650740e-23 - art_sys_143: 1.13976459e-20 - art_sys_144: -1.55171908e-21 - art_sys_145: -4.42458413e-22 - art_sys_146: -0.0 - art_sys_147: -4.51000637e-22 - art_sys_148: 2.61430406e-23 - art_sys_149: 2.61430406e-23 - art_sys_150: -4.69636312e-23 - art_sys_151: -4.69636312e-23 - art_sys_152: -5.25921572e-23 - art_sys_153: -3.08161439e-22 - art_sys_154: 2.51698491e-23 - art_sys_155: 1.91403227e-23 - art_sys_156: -1.67625687e-25 - art_sys_157: -1.40917645e-26 + art_sys_58: 0.0 + art_sys_59: 0.0 + art_sys_60: 0.0 + art_sys_61: 0.0 + art_sys_62: 0.0 + art_sys_63: 0.0 + art_sys_64: 0.0 + art_sys_65: 0.0 + art_sys_66: 0.0 + art_sys_67: 0.0 + art_sys_68: 0.0 + art_sys_69: 0.0 + art_sys_70: 0.0 + art_sys_71: 0.0 + art_sys_72: 8.44247689e-189 + art_sys_73: -5.23295376e-180 + art_sys_74: -1.63125108e-181 + art_sys_75: -8.01250243e-66 + art_sys_76: -9.73152501e+01 + art_sys_77: -6.56877066e+01 + art_sys_78: -2.29836532e+01 + art_sys_79: -1.75001018e-20 + art_sys_80: 6.21644206e+00 + art_sys_81: -2.93594113e-19 + art_sys_82: 1.31743477e-19 + art_sys_83: 1.14070556e-01 + art_sys_84: -3.64296223e-02 + art_sys_85: 2.17062190e-02 + art_sys_86: -5.60326851e-03 + art_sys_87: 2.69211777e-19 + art_sys_88: 8.84252054e-20 + art_sys_89: -1.73133584e-05 + art_sys_90: 7.55159889e-19 + art_sys_91: -1.17950000e-19 + art_sys_92: -3.84173046e-06 + art_sys_93: -2.96674061e-06 + art_sys_94: 1.88990619e-19 + art_sys_95: 1.20977909e-19 + art_sys_96: 9.51387139e-20 + art_sys_97: -1.67647467e-20 + art_sys_98: -2.50331841e-20 + art_sys_99: 3.46417173e-20 + art_sys_100: 8.13356875e-20 + art_sys_101: 2.43894197e-20 + art_sys_102: 3.94904740e-20 + art_sys_103: -6.53094959e-21 + art_sys_104: 2.67657604e-20 + art_sys_105: 7.22054399e-20 + art_sys_106: 2.38782388e-20 + art_sys_107: -3.15898887e-20 + art_sys_108: 2.89817581e-20 + art_sys_109: -3.05872977e-20 + art_sys_110: 4.05565479e-20 + art_sys_111: -3.50266941e-20 + art_sys_112: 1.56120980e-20 + art_sys_113: -1.14299902e-20 + art_sys_114: 1.21917543e-20 + art_sys_115: 7.85319696e-21 + art_sys_116: -1.85938017e-20 + art_sys_117: 1.95153978e-20 + art_sys_118: 5.60044390e-21 + art_sys_119: -4.41920684e-21 + art_sys_120: -1.43138408e-21 + art_sys_121: 1.83269982e-21 + art_sys_122: 6.05491500e-21 + art_sys_123: -1.01417884e-20 + art_sys_124: 7.49887725e-21 + art_sys_125: 1.79318081e-21 + art_sys_126: -5.48754588e-21 + art_sys_127: 2.49332893e-22 + art_sys_128: -5.95320437e-21 + art_sys_129: -1.42598422e-21 + art_sys_130: 8.83869911e-21 + art_sys_131: 2.66993875e-21 + art_sys_132: 1.28704029e-21 + art_sys_133: -7.10084263e-21 + art_sys_134: 2.69130064e-22 + art_sys_135: -4.14262494e-21 + art_sys_136: -8.50712164e-22 + art_sys_137: 1.31664249e-21 + art_sys_138: 4.97295384e-22 + art_sys_139: 1.31347374e-21 + art_sys_140: -1.14947459e-21 + art_sys_141: -8.37701242e-22 + art_sys_142: 7.80223584e-22 + art_sys_143: -2.02511400e-21 + art_sys_144: -2.13689359e-21 + art_sys_145: -4.92487727e-22 + art_sys_146: 1.29700888e-21 + art_sys_147: -2.00818884e-21 + art_sys_148: -1.11218536e-20 + art_sys_149: -1.85520275e-22 + art_sys_150: -8.22870278e-23 + art_sys_151: 1.27921800e-22 + art_sys_152: 5.19850758e-21 + art_sys_153: -1.51066026e-22 + art_sys_154: 1.18190031e-22 + art_sys_155: 3.25482161e-22 + art_sys_156: -0.0 + art_sys_157: -1.54540775e-22 art_sys_158: -0.0 - art_sys_159: 9.95352272e-21 - art_sys_160: 2.42731365e-21 - art_sys_161: -7.00345068e-22 - art_sys_162: 3.25519381e-22 - art_sys_163: 5.77251037e-22 - art_sys_164: -2.07891909e-21 - art_sys_165: 1.81240780e-21 - art_sys_166: 1.73133584e-05 - art_sys_167: -3.84173046e-06 - art_sys_168: -2.96674061e-06 - art_sys_169: 1.00536705e-07 - art_sys_170: -3.26340826e-08 - art_sys_171: 1.26781678e-08 - art_sys_172: 3.89420894e-10 - art_sys_173: -1.14734360e-10 - art_sys_174: -3.95916883e-11 - art_sys_175: -1.83312536e-21 - art_sys_176: -1.13766681e-13 - art_sys_177: -3.30507888e-14 - art_sys_178: 1.28728254e-14 - art_sys_179: -3.64597544e-15 - art_sys_180: 6.80927641e-16 - art_sys_181: -1.41410864e-16 - art_sys_182: -2.43950591e-17 - art_sys_183: 3.69687588e-18 - art_sys_184: -6.38879118e-19 - art_sys_185: 5.84571907e-20 + art_sys_159: -1.30045445e-23 + art_sys_160: 1.00932237e-21 + art_sys_161: 8.29443085e-25 + art_sys_162: 8.29443085e-25 + art_sys_163: 8.01405861e-23 + art_sys_164: 8.01405861e-23 + art_sys_165: 1.67624247e-25 + art_sys_166: 1.40917485e-26 + art_sys_167: 0.0 + art_sys_168: 1.00536705e-07 + art_sys_169: 3.26340826e-08 + art_sys_170: 1.26781678e-08 + art_sys_171: -3.89420894e-10 + art_sys_172: -1.14734360e-10 + art_sys_173: -3.95916883e-11 + art_sys_174: 1.13766669e-13 + art_sys_175: 3.30507866e-14 + art_sys_176: -1.28728253e-14 + art_sys_177: 6.80927833e-16 + art_sys_178: -1.41410806e-16 + art_sys_179: -1.83312542e-21 + art_sys_180: -1.91403183e-23 + art_sys_181: 3.64597505e-15 + art_sys_182: -2.43941557e-17 + art_sys_183: 3.69687174e-18 + art_sys_184: -6.38879149e-19 + art_sys_185: -5.84571906e-20 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -44528,134 +44528,134 @@ bins: art_sys_55: 0.0 art_sys_56: 0.0 art_sys_57: 0.0 - art_sys_58: 2.13434425e-296 - art_sys_59: -4.50882838e-217 - art_sys_60: -4.94944118e-213 - art_sys_61: 2.93499302e-210 - art_sys_62: -1.45090380e-204 - art_sys_63: -2.24463203e-195 - art_sys_64: 6.90435896e-197 - art_sys_65: -7.47538679e-70 - art_sys_66: -1.39646642e-57 - art_sys_67: 5.16397127e-54 - art_sys_68: 6.81480662e-52 - art_sys_69: 8.89762484e-38 - art_sys_70: -1.95128618e-40 - art_sys_71: 2.23837472e-34 - art_sys_72: 1.47192428e-21 - art_sys_73: -9.79660221e+00 - art_sys_74: -6.54564256e+01 - art_sys_75: 2.22022920e+01 - art_sys_76: 4.61319000e-18 - art_sys_77: 1.10894077e-19 - art_sys_78: -3.81656733e-19 - art_sys_79: 9.61246934e+00 - art_sys_80: -7.67434596e-19 - art_sys_81: -3.85474990e-01 - art_sys_82: -9.48794213e-02 - art_sys_83: 3.95400133e-19 - art_sys_84: 6.75969295e-02 - art_sys_85: -1.81977130e-02 - art_sys_86: 9.70383614e-20 - art_sys_87: 8.05636120e-20 - art_sys_88: -2.46691296e-19 - art_sys_89: 5.51749472e-19 - art_sys_90: 3.49028472e-20 - art_sys_91: 2.23140509e-20 - art_sys_92: -2.50082089e-20 - art_sys_93: 7.03448237e-20 - art_sys_94: -2.18606132e-20 - art_sys_95: 6.64503957e-20 - art_sys_96: -4.55710068e-20 - art_sys_97: 4.56789097e-20 - art_sys_98: -8.93793924e-20 - art_sys_99: -2.75371927e-20 - art_sys_100: 3.35730344e-20 - art_sys_101: 5.16490726e-22 - art_sys_102: -1.67895070e-20 - art_sys_103: -2.11447000e-20 - art_sys_104: 7.56697561e-24 - art_sys_105: 1.73102627e-20 - art_sys_106: -1.45984496e-20 - art_sys_107: 1.12199317e-19 - art_sys_108: 2.74715604e-20 - art_sys_109: 1.35014324e-20 - art_sys_110: -7.98024186e-21 - art_sys_111: -1.29449403e-20 - art_sys_112: 2.02371354e-20 - art_sys_113: -2.32410217e-21 - art_sys_114: -5.40431107e-21 - art_sys_115: 3.41235422e-21 - art_sys_116: 3.03722170e-21 - art_sys_117: 1.05125544e-20 - art_sys_118: -8.83402320e-21 - art_sys_119: 1.39179167e-22 - art_sys_120: 5.33879884e-21 - art_sys_121: -1.81964929e-21 - art_sys_122: -4.37654705e-21 - art_sys_123: -1.54438570e-21 - art_sys_124: 1.34880969e-21 - art_sys_125: 4.57326889e-21 - art_sys_126: -1.89317085e-23 - art_sys_127: -3.86684181e-22 - art_sys_128: -4.19066545e-21 - art_sys_129: -3.00489998e-21 - art_sys_130: -1.14955904e-22 - art_sys_131: 1.17849476e-21 - art_sys_132: -1.54933326e-21 - art_sys_133: 2.69370207e-22 - art_sys_134: -1.57031618e-21 - art_sys_135: 2.66117842e-22 - art_sys_136: -6.78706753e-22 - art_sys_137: 2.64499261e-22 - art_sys_138: -3.34309610e-22 - art_sys_139: -7.33012699e-22 - art_sys_140: 3.40486815e-23 - art_sys_141: -2.96820901e-22 - art_sys_142: -4.68319205e-23 - art_sys_143: -1.47183026e-20 - art_sys_144: 1.67226722e-21 - art_sys_145: 2.47348683e-22 - art_sys_146: 0.0 - art_sys_147: 4.35804677e-22 - art_sys_148: 3.90177236e-24 - art_sys_149: 3.90177236e-24 - art_sys_150: -2.70671489e-23 - art_sys_151: -2.70671489e-23 - art_sys_152: 1.03592927e-23 - art_sys_153: 5.35978190e-22 - art_sys_154: -8.00934481e-23 - art_sys_155: -7.14652718e-23 - art_sys_156: 6.93387583e-25 - art_sys_157: 5.81034875e-26 - art_sys_158: 0.0 - art_sys_159: 1.13062979e-21 - art_sys_160: -3.02637724e-21 - art_sys_161: -6.85964130e-21 - art_sys_162: 2.86297275e-21 - art_sys_163: -6.50240423e-22 - art_sys_164: -1.20609918e-21 - art_sys_165: 8.98010099e-22 - art_sys_166: -4.96831583e-05 - art_sys_167: 1.53406808e-05 - art_sys_168: 1.03079106e-05 - art_sys_169: -3.85313393e-07 - art_sys_170: 1.28012802e-07 - art_sys_171: -4.82793484e-08 - art_sys_172: -1.75598667e-09 - art_sys_173: 4.47802284e-10 - art_sys_174: 1.65565254e-10 - art_sys_175: 7.61066591e-21 - art_sys_176: 5.72967465e-13 - art_sys_177: 1.15487230e-13 - art_sys_178: -5.93919168e-14 - art_sys_179: 1.45570736e-14 - art_sys_180: -2.88961513e-15 - art_sys_181: 5.99282401e-16 - art_sys_182: 9.95629930e-17 - art_sys_183: -1.57405944e-17 - art_sys_184: 2.64478111e-18 - art_sys_185: -2.51045321e-19 + art_sys_58: 0.0 + art_sys_59: 0.0 + art_sys_60: 0.0 + art_sys_61: 0.0 + art_sys_62: 0.0 + art_sys_63: 0.0 + art_sys_64: 0.0 + art_sys_65: 0.0 + art_sys_66: 0.0 + art_sys_67: 0.0 + art_sys_68: 0.0 + art_sys_69: 0.0 + art_sys_70: 0.0 + art_sys_71: 0.0 + art_sys_72: 8.49889814e-190 + art_sys_73: -5.26792570e-181 + art_sys_74: -1.64215276e-182 + art_sys_75: -8.06608408e-67 + art_sys_76: -9.79660221e+00 + art_sys_77: -6.54564256e+01 + art_sys_78: 2.22022920e+01 + art_sys_79: 2.31926784e-18 + art_sys_80: -9.61246934e+00 + art_sys_81: -4.81967074e-18 + art_sys_82: -4.13748773e-20 + art_sys_83: -3.85474990e-01 + art_sys_84: 9.48794213e-02 + art_sys_85: -6.75969295e-02 + art_sys_86: 1.81977130e-02 + art_sys_87: -3.06023000e-19 + art_sys_88: -1.00151609e-19 + art_sys_89: 4.96831583e-05 + art_sys_90: -5.41178846e-19 + art_sys_91: 1.98314435e-21 + art_sys_92: 1.53406808e-05 + art_sys_93: 1.03079106e-05 + art_sys_94: 1.16562224e-19 + art_sys_95: -9.65021789e-20 + art_sys_96: -7.63186588e-20 + art_sys_97: 2.17978761e-20 + art_sys_98: 1.33804536e-19 + art_sys_99: 2.79295543e-20 + art_sys_100: 3.73737034e-21 + art_sys_101: -4.64949074e-20 + art_sys_102: 2.33912673e-20 + art_sys_103: -2.17742536e-20 + art_sys_104: 9.60955797e-21 + art_sys_105: -1.93905981e-20 + art_sys_106: -1.51029507e-20 + art_sys_107: 3.52975173e-20 + art_sys_108: 3.98150262e-20 + art_sys_109: -1.24001362e-20 + art_sys_110: 8.93625333e-21 + art_sys_111: 4.27041621e-20 + art_sys_112: 6.63567060e-21 + art_sys_113: 3.03717121e-21 + art_sys_114: 1.07403563e-20 + art_sys_115: 9.22097428e-21 + art_sys_116: 5.74025901e-21 + art_sys_117: -2.51412642e-20 + art_sys_118: 7.14136161e-21 + art_sys_119: 5.19994718e-21 + art_sys_120: 2.75602259e-21 + art_sys_121: -4.61593853e-21 + art_sys_122: 4.59803747e-21 + art_sys_123: 6.51284434e-21 + art_sys_124: -7.99875900e-21 + art_sys_125: 1.28880615e-20 + art_sys_126: -4.57499220e-21 + art_sys_127: -2.63047405e-21 + art_sys_128: -6.38725236e-21 + art_sys_129: -5.56865294e-22 + art_sys_130: -1.59899349e-21 + art_sys_131: 6.24201839e-21 + art_sys_132: -3.42689866e-22 + art_sys_133: -1.82632764e-21 + art_sys_134: 1.59261552e-21 + art_sys_135: -1.64425126e-21 + art_sys_136: 1.07872114e-22 + art_sys_137: 1.97568441e-21 + art_sys_138: -6.59294060e-22 + art_sys_139: -1.37839062e-22 + art_sys_140: -3.34953706e-21 + art_sys_141: 8.30166726e-22 + art_sys_142: -7.87262515e-22 + art_sys_143: 2.53460923e-21 + art_sys_144: -3.19473481e-21 + art_sys_145: -5.10680319e-22 + art_sys_146: -8.75318264e-24 + art_sys_147: -1.99629749e-21 + art_sys_148: 1.66640207e-20 + art_sys_149: -3.82565166e-23 + art_sys_150: 6.97012658e-23 + art_sys_151: 1.86026209e-23 + art_sys_152: -9.17813827e-21 + art_sys_153: -6.62429676e-24 + art_sys_154: -2.07155075e-22 + art_sys_155: 2.24145506e-22 + art_sys_156: -0.0 + art_sys_157: -1.08794865e-22 + art_sys_158: -0.0 + art_sys_159: -5.51424009e-24 + art_sys_160: -1.55426149e-21 + art_sys_161: 2.02396791e-23 + art_sys_162: 2.02396791e-23 + art_sys_163: -1.18635282e-22 + art_sys_164: -1.18635282e-22 + art_sys_165: -6.93381563e-25 + art_sys_166: -5.81034158e-26 + art_sys_167: -0.0 + art_sys_168: -3.85313393e-07 + art_sys_169: -1.28012802e-07 + art_sys_170: -4.82793484e-08 + art_sys_171: 1.75598667e-09 + art_sys_172: 4.47802284e-10 + art_sys_173: 1.65565254e-10 + art_sys_174: -5.72967453e-13 + art_sys_175: -1.15487229e-13 + art_sys_176: 5.93919167e-14 + art_sys_177: -2.88961712e-15 + art_sys_178: 5.99282368e-16 + art_sys_179: 7.61066617e-21 + art_sys_180: 7.14652547e-23 + art_sys_181: -1.45570738e-14 + art_sys_182: 9.95641545e-17 + art_sys_183: -1.57405855e-17 + art_sys_184: 2.64478104e-18 + art_sys_185: 2.51045321e-19 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -44819,134 +44819,134 @@ bins: art_sys_55: 0.0 art_sys_56: 0.0 art_sys_57: 0.0 - art_sys_58: -2.33949564e-296 - art_sys_59: 4.94161981e-217 - art_sys_60: 5.42452596e-213 - art_sys_61: -3.21671583e-210 - art_sys_62: 1.59017251e-204 - art_sys_63: 2.46008878e-195 - art_sys_64: -7.56709152e-197 - art_sys_65: 8.19293091e-70 - art_sys_66: 1.53050982e-57 - art_sys_67: -5.65964826e-54 - art_sys_68: -7.46894326e-52 - art_sys_69: -9.75168611e-38 - art_sys_70: 2.13858537e-40 - art_sys_71: -2.45323084e-34 - art_sys_72: -1.61321069e-21 - art_sys_73: 1.07369541e+01 - art_sys_74: -1.45718422e+01 - art_sys_75: 4.00754141e+01 - art_sys_76: 3.84359266e-18 - art_sys_77: 1.32879882e-19 - art_sys_78: -8.99924188e-20 - art_sys_79: -9.54766392e+00 - art_sys_80: 3.59270815e-18 - art_sys_81: 3.48278746e-01 - art_sys_82: 2.07018675e-01 - art_sys_83: -1.19993633e-18 - art_sys_84: -1.29071419e-01 - art_sys_85: 4.14218804e-02 - art_sys_86: 1.60490114e-18 - art_sys_87: 1.12145639e-19 - art_sys_88: -4.86856743e-21 - art_sys_89: 2.37739961e-19 - art_sys_90: 1.26676839e-20 - art_sys_91: -1.97786603e-20 - art_sys_92: 1.58962617e-20 - art_sys_93: -4.77028890e-20 - art_sys_94: -3.47080601e-20 - art_sys_95: -5.45754993e-20 - art_sys_96: 4.77998950e-19 - art_sys_97: -3.95285313e-20 - art_sys_98: -5.96864596e-20 - art_sys_99: -1.02235948e-20 - art_sys_100: 2.89915795e-20 - art_sys_101: 3.33527098e-20 - art_sys_102: 2.58251427e-20 - art_sys_103: -4.54884712e-20 - art_sys_104: -1.94986448e-20 - art_sys_105: 1.08435471e-20 - art_sys_106: 1.04930764e-20 - art_sys_107: -2.71945544e-20 - art_sys_108: 2.81149650e-20 - art_sys_109: -2.49053922e-20 - art_sys_110: -2.15461121e-20 - art_sys_111: 2.27710911e-21 - art_sys_112: -1.53254017e-20 - art_sys_113: 7.92869887e-21 - art_sys_114: 1.78559149e-20 - art_sys_115: 2.28667732e-21 - art_sys_116: 2.24445503e-21 - art_sys_117: -7.41775143e-21 - art_sys_118: -7.51311736e-21 - art_sys_119: 7.87722925e-22 - art_sys_120: 1.24401629e-21 - art_sys_121: -2.06276075e-21 - art_sys_122: -3.01835806e-21 - art_sys_123: -3.47066288e-21 - art_sys_124: 4.73143555e-21 - art_sys_125: -4.92219320e-21 - art_sys_126: 5.65489377e-21 - art_sys_127: 1.13812143e-21 - art_sys_128: -1.38951726e-21 - art_sys_129: -1.02693680e-21 - art_sys_130: -1.15007511e-21 - art_sys_131: 5.27994066e-22 - art_sys_132: -2.57382427e-22 - art_sys_133: 3.34863228e-22 - art_sys_134: 1.92811746e-21 - art_sys_135: 3.64011279e-22 - art_sys_136: -7.33518077e-22 - art_sys_137: -6.26114785e-22 - art_sys_138: 1.32877681e-22 - art_sys_139: -8.53397175e-23 - art_sys_140: -2.71958794e-22 - art_sys_141: -7.32731729e-23 - art_sys_142: -8.82917246e-23 - art_sys_143: 1.25421099e-20 - art_sys_144: 1.95029116e-21 - art_sys_145: 3.57670392e-22 - art_sys_146: 0.0 - art_sys_147: -9.32602889e-23 - art_sys_148: -4.35728214e-23 - art_sys_149: -4.35728214e-23 - art_sys_150: -1.29944705e-23 - art_sys_151: -1.29944705e-23 - art_sys_152: -2.16880724e-23 - art_sys_153: -7.38486949e-22 - art_sys_154: 1.97385358e-22 - art_sys_155: 2.81217042e-22 - art_sys_156: -2.40373872e-24 - art_sys_157: -2.02420650e-25 - art_sys_158: -0.0 - art_sys_159: 8.05101381e-21 - art_sys_160: 1.25036844e-20 - art_sys_161: 7.85774360e-22 - art_sys_162: 3.92822005e-21 - art_sys_163: 4.73774474e-21 - art_sys_164: 1.21558245e-21 - art_sys_165: -3.54668331e-21 - art_sys_166: 1.83916672e-04 - art_sys_167: -4.31992767e-05 - art_sys_168: -3.44811731e-05 - art_sys_169: 1.37271019e-06 - art_sys_170: -4.14285433e-07 - art_sys_171: 1.72150319e-07 - art_sys_172: 5.27663509e-09 - art_sys_173: -1.58040056e-09 - art_sys_174: -5.51536963e-10 - art_sys_175: -2.64730733e-20 - art_sys_176: -1.57421385e-12 - art_sys_177: -4.59481376e-13 - art_sys_178: 1.85722356e-13 - art_sys_179: -5.09824627e-14 - art_sys_180: 9.91269386e-15 - art_sys_181: -2.00790579e-15 - art_sys_182: -3.51856412e-16 - art_sys_183: 5.32727919e-17 - art_sys_184: -9.16883739e-18 - art_sys_185: 8.43183790e-19 + art_sys_58: 0.0 + art_sys_59: 0.0 + art_sys_60: 0.0 + art_sys_61: 0.0 + art_sys_62: 0.0 + art_sys_63: 0.0 + art_sys_64: 0.0 + art_sys_65: 0.0 + art_sys_66: 0.0 + art_sys_67: 0.0 + art_sys_68: 0.0 + art_sys_69: 0.0 + art_sys_70: 0.0 + art_sys_71: 0.0 + art_sys_72: -9.31473905e-190 + art_sys_73: 5.77361353e-181 + art_sys_74: 1.79978913e-182 + art_sys_75: 8.84032779e-67 + art_sys_76: 1.07369541e+01 + art_sys_77: -1.45718422e+01 + art_sys_78: 4.00754141e+01 + art_sys_79: -1.12089726e-18 + art_sys_80: 9.54766392e+00 + art_sys_81: 2.00501301e-18 + art_sys_82: -1.56024322e-19 + art_sys_83: 3.48278746e-01 + art_sys_84: -2.07018675e-01 + art_sys_85: 1.29071419e-01 + art_sys_86: -4.14218804e-02 + art_sys_87: -4.88001364e-19 + art_sys_88: -4.73163566e-20 + art_sys_89: -1.83916672e-04 + art_sys_90: 4.16692254e-19 + art_sys_91: 5.53279059e-20 + art_sys_92: -4.31992767e-05 + art_sys_93: -3.44811731e-05 + art_sys_94: 1.94084453e-20 + art_sys_95: 1.08276399e-19 + art_sys_96: -7.18369087e-21 + art_sys_97: 9.85686357e-21 + art_sys_98: -1.33375915e-20 + art_sys_99: 4.43843080e-20 + art_sys_100: 2.28677346e-20 + art_sys_101: -2.36252701e-20 + art_sys_102: -4.39592715e-21 + art_sys_103: -1.58902993e-20 + art_sys_104: 7.46440241e-21 + art_sys_105: -1.18065285e-21 + art_sys_106: -1.57190452e-20 + art_sys_107: -3.35214379e-20 + art_sys_108: 9.99332395e-21 + art_sys_109: 5.09523221e-20 + art_sys_110: 1.54042169e-20 + art_sys_111: 8.79377473e-21 + art_sys_112: 1.40426505e-20 + art_sys_113: 1.33982575e-20 + art_sys_114: 2.77602091e-21 + art_sys_115: -8.17228846e-22 + art_sys_116: -1.85563735e-21 + art_sys_117: 3.48618376e-20 + art_sys_118: -9.62853675e-21 + art_sys_119: -1.46894072e-21 + art_sys_120: 5.40025226e-21 + art_sys_121: 3.88369837e-21 + art_sys_122: 1.86599750e-21 + art_sys_123: 6.81572808e-21 + art_sys_124: -1.14364383e-20 + art_sys_125: -1.25152296e-20 + art_sys_126: -3.85515868e-21 + art_sys_127: 1.49999999e-21 + art_sys_128: -2.50659304e-21 + art_sys_129: 1.24659525e-21 + art_sys_130: -1.26474434e-21 + art_sys_131: -2.69109471e-21 + art_sys_132: -2.89773724e-22 + art_sys_133: 1.11376865e-21 + art_sys_134: 1.05860745e-21 + art_sys_135: -6.68052335e-22 + art_sys_136: 1.60823246e-21 + art_sys_137: 6.87580934e-22 + art_sys_138: -3.04064729e-21 + art_sys_139: 1.66196495e-21 + art_sys_140: 5.99060713e-22 + art_sys_141: -1.36003475e-21 + art_sys_142: -1.70078125e-21 + art_sys_143: 5.64686443e-22 + art_sys_144: 6.21904166e-22 + art_sys_145: -2.71181149e-22 + art_sys_146: -6.90274154e-23 + art_sys_147: -3.12175205e-21 + art_sys_148: -1.52191955e-20 + art_sys_149: 4.14120800e-22 + art_sys_150: 1.24420706e-22 + art_sys_151: 7.27928019e-23 + art_sys_152: 1.18684089e-20 + art_sys_153: 1.14140274e-22 + art_sys_154: 7.26684296e-23 + art_sys_155: -1.20389046e-21 + art_sys_156: -0.0 + art_sys_157: 8.86539475e-23 + art_sys_158: 0.0 + art_sys_159: -1.56620431e-23 + art_sys_160: 1.28427854e-21 + art_sys_161: 2.36135147e-23 + art_sys_162: 2.36135147e-23 + art_sys_163: 1.29101036e-22 + art_sys_164: 1.29101036e-22 + art_sys_165: 2.40371957e-24 + art_sys_166: 2.02420426e-25 + art_sys_167: 0.0 + art_sys_168: 1.37271019e-06 + art_sys_169: 4.14285433e-07 + art_sys_170: 1.72150319e-07 + art_sys_171: -5.27663509e-09 + art_sys_172: -1.58040056e-09 + art_sys_173: -5.51536963e-10 + art_sys_174: 1.57421385e-12 + art_sys_175: 4.59481376e-13 + art_sys_176: -1.85722356e-13 + art_sys_177: 9.91269433e-15 + art_sys_178: -2.00790581e-15 + art_sys_179: -2.64730741e-20 + art_sys_180: -2.81216987e-22 + art_sys_181: 5.09824629e-14 + art_sys_182: -3.51856575e-16 + art_sys_183: 5.32727692e-17 + art_sys_184: -9.16883733e-18 + art_sys_185: -8.43183790e-19 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -45110,134 +45110,134 @@ bins: art_sys_55: 0.0 art_sys_56: 0.0 art_sys_57: 0.0 - art_sys_58: -2.07294557e-297 - art_sys_59: 4.37885679e-218 - art_sys_60: 4.80676847e-214 - art_sys_61: -2.85038884e-211 - art_sys_62: 1.40908001e-205 - art_sys_63: 2.17992821e-196 - art_sys_64: -6.70533375e-198 - art_sys_65: 7.25990111e-71 - art_sys_66: 1.35621184e-58 - art_sys_67: -5.01511451e-55 - art_sys_68: -6.61836284e-53 - art_sys_69: -8.64114169e-39 - art_sys_70: 1.89503836e-41 - art_sys_71: -2.17385127e-35 - art_sys_72: -1.42949455e-22 - art_sys_73: 9.51420511e-01 - art_sys_74: 2.48584661e+00 - art_sys_75: 1.55320620e+00 - art_sys_76: 2.25087143e-20 - art_sys_77: 3.21253156e-21 - art_sys_78: 1.42107760e-20 - art_sys_79: -2.26076306e+00 - art_sys_80: 5.56701969e-19 - art_sys_81: -3.89979444e+00 - art_sys_82: -6.58564307e-01 - art_sys_83: 2.14024738e-18 - art_sys_84: 7.33558540e-01 - art_sys_85: -2.17859452e-01 - art_sys_86: 8.01838299e-19 - art_sys_87: -1.92672174e-19 - art_sys_88: -8.67743817e-19 - art_sys_89: -9.61680003e-20 - art_sys_90: -1.57648378e-19 - art_sys_91: 1.16902039e-19 - art_sys_92: 7.23504649e-20 - art_sys_93: 2.24608680e-20 - art_sys_94: 7.03920843e-21 - art_sys_95: 1.87076340e-20 - art_sys_96: -1.25938097e-19 - art_sys_97: -1.47818199e-20 - art_sys_98: 1.45592714e-20 - art_sys_99: 2.97976328e-20 - art_sys_100: 1.68683973e-20 - art_sys_101: -7.05453037e-20 - art_sys_102: -1.80584982e-20 - art_sys_103: 1.23221433e-20 - art_sys_104: 1.08609820e-22 - art_sys_105: -8.77836439e-21 - art_sys_106: -1.89095414e-20 - art_sys_107: 1.22059134e-20 - art_sys_108: 6.34117552e-21 - art_sys_109: 9.50202063e-21 - art_sys_110: 5.14463842e-21 - art_sys_111: -1.28750125e-20 - art_sys_112: -1.10688733e-20 - art_sys_113: -3.37570728e-20 - art_sys_114: -3.19951437e-21 - art_sys_115: -3.37053825e-21 - art_sys_116: -1.44479455e-20 - art_sys_117: 8.53221368e-21 - art_sys_118: 2.77241647e-21 - art_sys_119: -6.73175046e-21 - art_sys_120: 4.11545637e-21 - art_sys_121: -2.07460683e-22 - art_sys_122: -8.98000177e-22 - art_sys_123: -3.23570647e-22 - art_sys_124: -7.54480425e-21 - art_sys_125: 1.01718578e-21 - art_sys_126: -3.69197901e-21 - art_sys_127: -1.49341212e-21 - art_sys_128: -1.71970454e-21 - art_sys_129: 2.27152881e-21 - art_sys_130: 2.84583383e-21 - art_sys_131: 6.81101613e-22 - art_sys_132: 2.84591179e-22 - art_sys_133: 4.94100485e-22 - art_sys_134: -1.53419390e-21 - art_sys_135: 1.76555048e-21 - art_sys_136: -4.61757087e-22 - art_sys_137: -6.27204010e-22 - art_sys_138: 1.35141986e-22 - art_sys_139: -4.43417917e-22 - art_sys_140: 7.62424612e-22 - art_sys_141: 3.98951730e-22 - art_sys_142: -2.25660303e-22 - art_sys_143: -3.05863080e-21 - art_sys_144: -2.05078360e-20 - art_sys_145: -7.83516614e-21 - art_sys_146: 0.0 - art_sys_147: -2.80620051e-21 - art_sys_148: 6.30057789e-24 - art_sys_149: 6.30057789e-24 - art_sys_150: 8.00352887e-23 - art_sys_151: 8.00352887e-23 - art_sys_152: 9.15494147e-23 - art_sys_153: 2.49668676e-21 - art_sys_154: -8.34099734e-22 - art_sys_155: -1.48215859e-21 - art_sys_156: 1.29275615e-23 - art_sys_157: 1.09728496e-24 - art_sys_158: 0.0 - art_sys_159: 8.19229697e-21 - art_sys_160: 1.03500496e-20 - art_sys_161: -2.10224290e-20 - art_sys_162: -5.39653728e-21 - art_sys_163: 2.28571180e-21 - art_sys_164: 1.02583729e-21 - art_sys_165: 5.86231218e-22 - art_sys_166: -9.55886479e-04 - art_sys_167: 2.85774007e-04 - art_sys_168: 1.93413205e-04 - art_sys_169: -8.67287171e-06 - art_sys_170: 2.49206367e-06 - art_sys_171: -1.01580368e-06 - art_sys_172: -3.67763054e-08 - art_sys_173: 8.94994579e-09 - art_sys_174: 3.47726667e-09 - art_sys_175: 1.45916891e-19 - art_sys_176: 8.98965315e-12 - art_sys_177: 2.19571390e-12 - art_sys_178: -1.09752767e-12 - art_sys_179: 2.61832907e-13 - art_sys_180: -5.59470967e-14 - art_sys_181: 1.10310189e-14 - art_sys_182: 1.89542368e-15 - art_sys_183: -3.00135070e-16 + art_sys_58: 0.0 + art_sys_59: 0.0 + art_sys_60: 0.0 + art_sys_61: 0.0 + art_sys_62: 0.0 + art_sys_63: 0.0 + art_sys_64: 0.0 + art_sys_65: 0.0 + art_sys_66: 0.0 + art_sys_67: 0.0 + art_sys_68: 0.0 + art_sys_69: 0.0 + art_sys_70: 0.0 + art_sys_71: 0.0 + art_sys_72: -8.25393221e-191 + art_sys_73: 5.11608692e-182 + art_sys_74: 1.59482057e-183 + art_sys_75: 7.83357095e-68 + art_sys_76: 9.51420511e-01 + art_sys_77: 2.48584661e+00 + art_sys_78: 1.55320620e+00 + art_sys_79: -1.87968737e-19 + art_sys_80: 2.26076306e+00 + art_sys_81: 6.62380318e-19 + art_sys_82: -8.43247044e-21 + art_sys_83: -3.89979444e+00 + art_sys_84: 6.58564307e-01 + art_sys_85: -7.33558540e-01 + art_sys_86: 2.17859452e-01 + art_sys_87: 7.52851680e-19 + art_sys_88: -4.32803524e-19 + art_sys_89: 9.55886479e-04 + art_sys_90: 4.60632201e-19 + art_sys_91: 1.19859990e-19 + art_sys_92: 2.85774007e-04 + art_sys_93: 1.93413205e-04 + art_sys_94: -6.81170913e-20 + art_sys_95: 7.08808261e-20 + art_sys_96: -7.78135342e-20 + art_sys_97: 4.70338200e-21 + art_sys_98: -4.66076449e-20 + art_sys_99: 6.96931000e-20 + art_sys_100: 7.84034895e-21 + art_sys_101: 5.37481748e-20 + art_sys_102: -4.81106113e-21 + art_sys_103: 6.05288822e-20 + art_sys_104: 2.12549180e-20 + art_sys_105: -2.13661668e-20 + art_sys_106: 6.18078777e-21 + art_sys_107: 1.83464965e-20 + art_sys_108: 2.44019250e-20 + art_sys_109: -4.06417306e-21 + art_sys_110: -5.33505543e-21 + art_sys_111: 1.45361709e-20 + art_sys_112: -1.81720103e-21 + art_sys_113: -2.18501449e-20 + art_sys_114: 4.77540532e-20 + art_sys_115: 2.07317401e-20 + art_sys_116: 1.89782226e-21 + art_sys_117: 1.51704351e-20 + art_sys_118: -3.51530227e-21 + art_sys_119: -1.64640884e-20 + art_sys_120: 9.39949329e-22 + art_sys_121: -1.17625846e-23 + art_sys_122: -9.27280018e-21 + art_sys_123: 8.37646849e-22 + art_sys_124: -1.43920068e-21 + art_sys_125: 3.56148866e-21 + art_sys_126: -3.34405568e-22 + art_sys_127: -6.14368581e-21 + art_sys_128: -2.05027884e-21 + art_sys_129: -9.38377319e-23 + art_sys_130: 3.71056655e-21 + art_sys_131: -2.42765301e-21 + art_sys_132: 2.55931387e-21 + art_sys_133: 2.44409545e-22 + art_sys_134: -1.42636692e-21 + art_sys_135: 6.46601080e-21 + art_sys_136: -2.15466944e-21 + art_sys_137: -2.22639166e-21 + art_sys_138: -2.89631701e-21 + art_sys_139: 6.37384039e-22 + art_sys_140: 2.41453618e-22 + art_sys_141: 1.19566423e-21 + art_sys_142: 2.15869354e-22 + art_sys_143: -1.87365486e-21 + art_sys_144: 3.11388135e-22 + art_sys_145: -3.66163519e-22 + art_sys_146: -4.90316069e-23 + art_sys_147: -7.31579787e-23 + art_sys_148: 1.93343589e-20 + art_sys_149: -1.91444143e-22 + art_sys_150: 9.70794350e-22 + art_sys_151: -7.27944482e-22 + art_sys_152: -4.54614304e-20 + art_sys_153: -3.50266816e-22 + art_sys_154: -8.86453527e-23 + art_sys_155: 1.26188142e-20 + art_sys_156: -0.0 + art_sys_157: -7.71877473e-23 + art_sys_158: -0.0 + art_sys_159: 2.58421149e-23 + art_sys_160: -5.49564801e-23 + art_sys_161: 6.19383058e-23 + art_sys_162: 6.19383058e-23 + art_sys_163: -2.75280503e-22 + art_sys_164: -2.75280503e-22 + art_sys_165: -1.29274425e-23 + art_sys_166: -1.09728353e-24 + art_sys_167: -0.0 + art_sys_168: -8.67287171e-06 + art_sys_169: -2.49206367e-06 + art_sys_170: -1.01580368e-06 + art_sys_171: 3.67763054e-08 + art_sys_172: 8.94994579e-09 + art_sys_173: 3.47726667e-09 + art_sys_174: -8.98965312e-12 + art_sys_175: -2.19571391e-12 + art_sys_176: 1.09752767e-12 + art_sys_177: -5.59470915e-14 + art_sys_178: 1.10310188e-14 + art_sys_179: 1.45916896e-19 + art_sys_180: 1.48215825e-21 + art_sys_181: -2.61832908e-13 + art_sys_182: 1.89542430e-15 + art_sys_183: -3.00135081e-16 art_sys_184: 4.96406112e-17 - art_sys_185: -4.80290338e-18 + art_sys_185: 4.80290338e-18 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -45401,134 +45401,134 @@ bins: art_sys_55: 0.0 art_sys_56: 0.0 art_sys_57: 0.0 - art_sys_58: 9.04238320e-298 - art_sys_59: -1.90997087e-218 - art_sys_60: -2.09661750e-214 - art_sys_61: 1.24328333e-211 - art_sys_62: -6.14612880e-206 - art_sys_63: -9.50841644e-197 - art_sys_64: 2.92473419e-198 - art_sys_65: -3.16662552e-71 - art_sys_66: -5.91552827e-59 - art_sys_67: 2.18749393e-55 - art_sys_68: 2.88679919e-53 - art_sys_69: 3.76909538e-39 - art_sys_70: -8.26578313e-42 - art_sys_71: 9.48191002e-36 - art_sys_72: 6.23517298e-23 - art_sys_73: -4.14990841e-01 - art_sys_74: 7.71322404e-01 - art_sys_75: -1.95915411e+00 - art_sys_76: -1.92187017e-19 - art_sys_77: -6.52468860e-21 - art_sys_78: 4.72650998e-21 - art_sys_79: 5.65278531e-01 - art_sys_80: -2.03827087e-19 - art_sys_81: -1.93699114e+00 - art_sys_82: 1.99323586e+00 - art_sys_83: -4.52295400e-18 - art_sys_84: -9.71138353e-01 - art_sys_85: 4.72301328e-01 - art_sys_86: 2.07386774e-18 - art_sys_87: -1.32302959e-19 - art_sys_88: -4.16736563e-19 - art_sys_89: 1.08718205e-19 - art_sys_90: 3.26691660e-22 - art_sys_91: -1.43162375e-20 - art_sys_92: -9.00919680e-20 - art_sys_93: 1.36906121e-21 - art_sys_94: -8.69982567e-21 - art_sys_95: -5.28750693e-20 - art_sys_96: 3.09217261e-19 - art_sys_97: -6.07853361e-23 - art_sys_98: 3.72674003e-20 - art_sys_99: -2.48599987e-20 - art_sys_100: -1.67827700e-20 - art_sys_101: 5.08515075e-21 - art_sys_102: -5.72442312e-21 - art_sys_103: 2.43111371e-20 - art_sys_104: -2.85070228e-20 - art_sys_105: -1.88894915e-22 - art_sys_106: -1.34528247e-20 - art_sys_107: -1.56475215e-20 - art_sys_108: -2.50240521e-21 - art_sys_109: 6.19291117e-20 - art_sys_110: 1.45738598e-22 - art_sys_111: 3.24969916e-21 - art_sys_112: 1.22787757e-20 - art_sys_113: 2.43373934e-20 - art_sys_114: -1.59022806e-20 - art_sys_115: 1.22388163e-20 - art_sys_116: -2.23788914e-20 - art_sys_117: -6.61383411e-21 - art_sys_118: -5.34905908e-21 - art_sys_119: -7.95962356e-23 - art_sys_120: 6.04053911e-21 - art_sys_121: -1.04803414e-20 - art_sys_122: 4.83641223e-21 - art_sys_123: 2.55878087e-21 - art_sys_124: -9.37106869e-22 - art_sys_125: -6.69298807e-22 - art_sys_126: 9.19892790e-22 - art_sys_127: 4.20719400e-21 - art_sys_128: -3.64922935e-21 - art_sys_129: -1.39738611e-21 - art_sys_130: -1.77182221e-21 - art_sys_131: 1.79760935e-21 - art_sys_132: 1.35069329e-21 - art_sys_133: 4.22336225e-22 - art_sys_134: -3.91248199e-22 - art_sys_135: -3.64049178e-23 - art_sys_136: -1.84927748e-21 - art_sys_137: 3.69155284e-22 - art_sys_138: 4.13120672e-22 - art_sys_139: -2.06136742e-22 - art_sys_140: -1.06171109e-23 - art_sys_141: -6.33291566e-22 - art_sys_142: 4.47561360e-22 - art_sys_143: -3.21721931e-22 - art_sys_144: 6.47116558e-20 - art_sys_145: 1.02649965e-20 - art_sys_146: 0.0 - art_sys_147: 2.70485341e-21 - art_sys_148: -6.87504265e-23 - art_sys_149: -6.87504265e-23 - art_sys_150: 2.73095669e-23 - art_sys_151: 2.73095669e-23 - art_sys_152: 1.70269815e-23 - art_sys_153: -5.79514590e-21 - art_sys_154: 2.29780814e-21 - art_sys_155: 6.15188719e-21 - art_sys_156: -5.83240016e-23 - art_sys_157: -4.86966560e-24 - art_sys_158: -0.0 - art_sys_159: -1.59497126e-20 - art_sys_160: 4.46376426e-20 - art_sys_161: 1.56205583e-20 - art_sys_162: -2.86143656e-22 - art_sys_163: -1.40681709e-21 - art_sys_164: -3.23106640e-21 - art_sys_165: -1.13246936e-21 - art_sys_166: 2.37697775e-03 - art_sys_167: -7.79906198e-04 - art_sys_168: -6.06904599e-04 - art_sys_169: 2.55091632e-05 - art_sys_170: -8.50277782e-06 - art_sys_171: 3.44112666e-06 - art_sys_172: 1.17126754e-07 - art_sys_173: -3.40780338e-08 - art_sys_174: -1.19915646e-08 - art_sys_175: -6.34565973e-19 - art_sys_176: -4.63254393e-11 - art_sys_177: -9.93457523e-12 - art_sys_178: 4.79041716e-12 - art_sys_179: -1.22531339e-12 - art_sys_180: 2.39099472e-13 - art_sys_181: -4.95016137e-14 - art_sys_182: -8.38840469e-15 - art_sys_183: 1.29643003e-15 + art_sys_58: 0.0 + art_sys_59: 0.0 + art_sys_60: 0.0 + art_sys_61: 0.0 + art_sys_62: 0.0 + art_sys_63: 0.0 + art_sys_64: 0.0 + art_sys_65: 0.0 + art_sys_66: 0.0 + art_sys_67: 0.0 + art_sys_68: 0.0 + art_sys_69: 0.0 + art_sys_70: 0.0 + art_sys_71: 0.0 + art_sys_72: 3.60021353e-191 + art_sys_73: -2.23154309e-182 + art_sys_74: -6.95631422e-184 + art_sys_75: -3.41684897e-68 + art_sys_76: -4.14990841e-01 + art_sys_77: 7.71322404e-01 + art_sys_78: -1.95915411e+00 + art_sys_79: -1.60943542e-20 + art_sys_80: -5.65278531e-01 + art_sys_81: -1.20769764e-19 + art_sys_82: 7.59635334e-21 + art_sys_83: -1.93699114e+00 + art_sys_84: -1.99323586e+00 + art_sys_85: 9.71138353e-01 + art_sys_86: -4.72301328e-01 + art_sys_87: 4.49220631e-19 + art_sys_88: 2.96400142e-20 + art_sys_89: -2.37697775e-03 + art_sys_90: 4.59749044e-20 + art_sys_91: -5.49903454e-20 + art_sys_92: -7.79906198e-04 + art_sys_93: -6.06904599e-04 + art_sys_94: 1.18958531e-19 + art_sys_95: 7.11188987e-20 + art_sys_96: 4.63464240e-20 + art_sys_97: 4.82698622e-20 + art_sys_98: -8.34924029e-20 + art_sys_99: 4.08683850e-21 + art_sys_100: 7.34911192e-20 + art_sys_101: 4.95326017e-20 + art_sys_102: -1.04942920e-20 + art_sys_103: -2.07910123e-20 + art_sys_104: -9.55116685e-21 + art_sys_105: 4.07252704e-20 + art_sys_106: -2.76999024e-20 + art_sys_107: 1.33541422e-20 + art_sys_108: 3.09508046e-21 + art_sys_109: 3.26198048e-20 + art_sys_110: -6.19122441e-21 + art_sys_111: -3.24347671e-20 + art_sys_112: 1.91085583e-20 + art_sys_113: 3.10997972e-20 + art_sys_114: 5.39208914e-20 + art_sys_115: -4.71297358e-21 + art_sys_116: -1.53738518e-20 + art_sys_117: -3.20463045e-20 + art_sys_118: 5.29080387e-21 + art_sys_119: 1.14106298e-21 + art_sys_120: -3.73829441e-21 + art_sys_121: 4.73015364e-21 + art_sys_122: 1.05427240e-22 + art_sys_123: 5.13512872e-22 + art_sys_124: 1.24651067e-21 + art_sys_125: 4.92664472e-21 + art_sys_126: -2.13458449e-21 + art_sys_127: 1.26563091e-20 + art_sys_128: 9.53024274e-22 + art_sys_129: -1.99266127e-21 + art_sys_130: 3.86408126e-21 + art_sys_131: 2.54527023e-21 + art_sys_132: 3.97393071e-21 + art_sys_133: 1.53883987e-21 + art_sys_134: 7.21035614e-21 + art_sys_135: -1.76852492e-21 + art_sys_136: 5.03625162e-21 + art_sys_137: 1.46735933e-21 + art_sys_138: 1.75322496e-21 + art_sys_139: -8.25727152e-22 + art_sys_140: -1.16674478e-21 + art_sys_141: -2.80388572e-21 + art_sys_142: -4.36520033e-22 + art_sys_143: -5.27267588e-22 + art_sys_144: 5.56555149e-22 + art_sys_145: -5.12735695e-22 + art_sys_146: -6.70720975e-22 + art_sys_147: 8.02951187e-22 + art_sys_148: -1.73375859e-20 + art_sys_149: 3.35329573e-23 + art_sys_150: -7.49770565e-22 + art_sys_151: -2.23145011e-22 + art_sys_152: 5.87766333e-20 + art_sys_153: -2.93172925e-23 + art_sys_154: -1.22219238e-22 + art_sys_155: -1.34706272e-20 + art_sys_156: -0.0 + art_sys_157: -1.04823922e-24 + art_sys_158: 0.0 + art_sys_159: 9.40736199e-23 + art_sys_160: -1.14687406e-21 + art_sys_161: 5.25088547e-25 + art_sys_162: 5.25088547e-25 + art_sys_163: 7.23204413e-22 + art_sys_164: 7.23204413e-22 + art_sys_165: 5.83235801e-23 + art_sys_166: 4.86966035e-24 + art_sys_167: 0.0 + art_sys_168: 2.55091632e-05 + art_sys_169: 8.50277782e-06 + art_sys_170: 3.44112666e-06 + art_sys_171: -1.17126754e-07 + art_sys_172: -3.40780338e-08 + art_sys_173: -1.19915646e-08 + art_sys_174: 4.63254393e-11 + art_sys_175: 9.93457524e-12 + art_sys_176: -4.79041716e-12 + art_sys_177: 2.39099469e-13 + art_sys_178: -4.95016138e-14 + art_sys_179: -6.34565991e-19 + art_sys_180: -6.15188607e-21 + art_sys_181: 1.22531339e-12 + art_sys_182: -8.38840495e-15 + art_sys_183: 1.29643002e-15 art_sys_184: -2.21721161e-16 - art_sys_185: 2.05790113e-17 + art_sys_185: -2.05790113e-17 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -45692,134 +45692,134 @@ bins: art_sys_55: 0.0 art_sys_56: 0.0 art_sys_57: 0.0 - art_sys_58: 1.90175772e-298 - art_sys_59: -4.01716090e-219 - art_sys_60: -4.40972686e-215 - art_sys_61: 2.61494522e-212 - art_sys_62: -1.29268926e-206 - art_sys_63: -1.99986499e-197 - art_sys_64: 6.15146964e-199 - art_sys_65: -6.66022944e-72 - art_sys_66: -1.24418803e-59 - art_sys_67: 4.60086340e-56 - art_sys_68: 6.07168257e-54 - art_sys_69: 7.92737881e-40 - art_sys_70: -1.73850719e-42 - art_sys_71: 1.99429001e-36 - art_sys_72: 1.31141755e-23 - art_sys_73: -8.72832674e-02 - art_sys_74: -1.09606082e-01 - art_sys_75: -1.29949206e-01 - art_sys_76: -5.49936939e-21 - art_sys_77: -3.27882602e-22 - art_sys_78: -6.13264370e-22 - art_sys_79: 2.33708687e-01 - art_sys_80: -5.65806126e-20 - art_sys_81: 4.73613539e-01 - art_sys_82: 2.26881092e+00 - art_sys_83: 1.21943635e-18 - art_sys_84: 9.14928319e-01 - art_sys_85: -5.61238569e-01 - art_sys_86: 2.67589501e-19 - art_sys_87: -1.72125293e-19 - art_sys_88: 1.26183715e-19 - art_sys_89: -1.59554058e-19 - art_sys_90: -1.04171917e-19 - art_sys_91: 1.92211286e-20 - art_sys_92: 3.33376830e-20 - art_sys_93: 1.08538604e-19 - art_sys_94: 1.88729424e-20 - art_sys_95: 4.83377984e-20 - art_sys_96: 7.51594198e-20 - art_sys_97: 2.40431485e-21 - art_sys_98: -3.65571780e-20 - art_sys_99: -3.73257221e-20 - art_sys_100: -5.05571017e-21 - art_sys_101: -1.54131433e-20 - art_sys_102: -3.98616890e-21 - art_sys_103: -1.07306259e-21 - art_sys_104: 1.25652195e-20 - art_sys_105: -2.66173014e-20 - art_sys_106: -1.57520673e-21 - art_sys_107: 3.91776933e-20 - art_sys_108: 2.48543060e-21 - art_sys_109: 2.74373292e-20 - art_sys_110: 9.29022786e-21 - art_sys_111: -3.79334976e-22 - art_sys_112: 1.81312650e-20 - art_sys_113: -2.97094814e-20 - art_sys_114: -9.90293863e-21 - art_sys_115: -2.15882406e-20 - art_sys_116: -4.84818053e-21 - art_sys_117: -5.59176943e-21 - art_sys_118: -2.13007037e-21 - art_sys_119: 6.51847891e-22 - art_sys_120: 1.09629280e-21 - art_sys_121: -5.13971347e-21 - art_sys_122: 3.43722791e-21 - art_sys_123: -1.04596036e-21 - art_sys_124: 1.73859335e-21 - art_sys_125: -8.66316213e-22 - art_sys_126: 7.80866941e-21 - art_sys_127: -1.08744027e-21 - art_sys_128: 2.43534854e-21 - art_sys_129: -4.28716744e-21 - art_sys_130: 1.62551873e-21 - art_sys_131: 1.11517745e-21 - art_sys_132: 1.62291647e-21 - art_sys_133: -8.67705773e-22 - art_sys_134: -3.67966008e-21 - art_sys_135: -2.02163068e-24 - art_sys_136: 7.30721196e-22 - art_sys_137: -1.23929620e-21 - art_sys_138: -5.26436480e-22 - art_sys_139: -4.47575291e-22 - art_sys_140: 5.19610294e-23 - art_sys_141: -2.62379844e-22 - art_sys_142: 1.06665280e-22 - art_sys_143: 8.99267134e-21 - art_sys_144: -8.84974727e-20 - art_sys_145: -1.47360008e-20 - art_sys_146: -0.0 - art_sys_147: -3.87809971e-21 - art_sys_148: 4.40289842e-23 - art_sys_149: 4.40289842e-23 - art_sys_150: -1.61687106e-22 - art_sys_151: -1.61687106e-22 - art_sys_152: 4.71197207e-23 - art_sys_153: 7.15656640e-21 - art_sys_154: -2.89450837e-21 - art_sys_155: -2.01167946e-20 - art_sys_156: 1.60199211e-22 - art_sys_157: 1.36843738e-23 + art_sys_58: 0.0 + art_sys_59: 0.0 + art_sys_60: 0.0 + art_sys_61: 0.0 + art_sys_62: 0.0 + art_sys_63: 0.0 + art_sys_64: 0.0 + art_sys_65: 0.0 + art_sys_66: 0.0 + art_sys_67: 0.0 + art_sys_68: 0.0 + art_sys_69: 0.0 + art_sys_70: 0.0 + art_sys_71: 0.0 + art_sys_72: 7.57216025e-192 + art_sys_73: -4.69349990e-183 + art_sys_74: -1.46308894e-184 + art_sys_75: -7.18651385e-69 + art_sys_76: -8.72832674e-02 + art_sys_77: -1.09606082e-01 + art_sys_78: -1.29949206e-01 + art_sys_79: 1.00099761e-20 + art_sys_80: -2.33708687e-01 + art_sys_81: -6.16440791e-20 + art_sys_82: 6.13598939e-22 + art_sys_83: 4.73613539e-01 + art_sys_84: -2.26881092e+00 + art_sys_85: -9.14928319e-01 + art_sys_86: 5.61238569e-01 + art_sys_87: -2.63998302e-18 + art_sys_88: 1.14536445e-18 + art_sys_89: 1.18104713e-02 + art_sys_90: -3.58174096e-19 + art_sys_91: -8.15495385e-20 + art_sys_92: 2.46589436e-03 + art_sys_93: 2.16759950e-03 + art_sys_94: -1.08619540e-19 + art_sys_95: -2.44305337e-20 + art_sys_96: -1.16457449e-19 + art_sys_97: 7.38083636e-22 + art_sys_98: -3.54120306e-20 + art_sys_99: -3.11193681e-20 + art_sys_100: 1.16610055e-19 + art_sys_101: 4.40849186e-20 + art_sys_102: 9.64248888e-21 + art_sys_103: 1.20493230e-20 + art_sys_104: -3.37759173e-20 + art_sys_105: 3.22820228e-20 + art_sys_106: 2.17923905e-20 + art_sys_107: 5.22669684e-21 + art_sys_108: 6.99070616e-20 + art_sys_109: -4.26608934e-20 + art_sys_110: 8.26095535e-21 + art_sys_111: 1.39204821e-20 + art_sys_112: -9.90340981e-21 + art_sys_113: -2.41865746e-20 + art_sys_114: 8.54900624e-21 + art_sys_115: -5.23746457e-21 + art_sys_116: -1.66969593e-20 + art_sys_117: 1.80220785e-20 + art_sys_118: 1.10006836e-20 + art_sys_119: -2.62238267e-21 + art_sys_120: 2.60989010e-21 + art_sys_121: 2.20613215e-21 + art_sys_122: -9.10240951e-21 + art_sys_123: -5.72237222e-21 + art_sys_124: -7.53828155e-22 + art_sys_125: 4.07417029e-21 + art_sys_126: -6.94078476e-21 + art_sys_127: 3.43410604e-21 + art_sys_128: 1.98514263e-21 + art_sys_129: 1.08252792e-20 + art_sys_130: -1.51009923e-21 + art_sys_131: 1.66740465e-21 + art_sys_132: -4.53127894e-21 + art_sys_133: 5.24577203e-21 + art_sys_134: -5.33075208e-21 + art_sys_135: 3.85618241e-23 + art_sys_136: 1.18023593e-21 + art_sys_137: -5.31994366e-21 + art_sys_138: 2.05057413e-21 + art_sys_139: 3.20986205e-22 + art_sys_140: 7.37666887e-23 + art_sys_141: -7.70715762e-22 + art_sys_142: -9.79823146e-22 + art_sys_143: 1.14376540e-22 + art_sys_144: 2.04288432e-21 + art_sys_145: 8.05820184e-22 + art_sys_146: -4.53118663e-22 + art_sys_147: -2.25476672e-22 + art_sys_148: 1.35964125e-20 + art_sys_149: 2.24492300e-22 + art_sys_150: 3.25960315e-22 + art_sys_151: -5.83414709e-23 + art_sys_152: -7.62938640e-20 + art_sys_153: -1.79661070e-22 + art_sys_154: 1.13585419e-23 + art_sys_155: 2.02300312e-20 + art_sys_156: -0.0 + art_sys_157: -1.15765703e-22 art_sys_158: 0.0 - art_sys_159: -9.31284828e-21 - art_sys_160: 2.66983264e-21 - art_sys_161: -6.60564135e-21 - art_sys_162: -1.16671977e-21 - art_sys_163: -2.99009891e-21 - art_sys_164: -2.49760051e-21 - art_sys_165: 1.58290004e-21 - art_sys_166: -1.18104713e-02 - art_sys_167: 2.46589436e-03 - art_sys_168: 2.16759950e-03 - art_sys_169: -1.00527489e-04 - art_sys_170: 2.84992003e-05 - art_sys_171: -1.22701055e-05 - art_sys_172: -4.17007605e-07 - art_sys_173: 1.09447160e-07 - art_sys_174: 4.18102947e-08 - art_sys_175: 1.81744556e-18 - art_sys_176: 8.57413597e-11 - art_sys_177: 3.05808041e-11 - art_sys_178: -1.23524354e-11 - art_sys_179: 3.28626743e-12 - art_sys_180: -6.83156033e-13 - art_sys_181: 1.33772923e-13 - art_sys_182: 2.37826572e-14 - art_sys_183: -3.66744882e-15 + art_sys_159: -1.21612874e-23 + art_sys_160: 4.22290824e-21 + art_sys_161: 2.12802173e-23 + art_sys_162: 2.12802173e-23 + art_sys_163: -1.19470822e-21 + art_sys_164: -1.19470822e-21 + art_sys_165: -1.60197838e-22 + art_sys_166: -1.36843572e-23 + art_sys_167: -0.0 + art_sys_168: -1.00527489e-04 + art_sys_169: -2.84992003e-05 + art_sys_170: -1.22701055e-05 + art_sys_171: 4.17007605e-07 + art_sys_172: 1.09447160e-07 + art_sys_173: 4.18102947e-08 + art_sys_174: -8.57413597e-11 + art_sys_175: -3.05808041e-11 + art_sys_176: 1.23524354e-11 + art_sys_177: -6.83156030e-13 + art_sys_178: 1.33772923e-13 + art_sys_179: 1.81744562e-18 + art_sys_180: 2.01167908e-20 + art_sys_181: -3.28626743e-12 + art_sys_182: 2.37826579e-14 + art_sys_183: -3.66744883e-15 art_sys_184: 6.15817138e-16 - art_sys_185: -5.84536714e-17 + art_sys_185: 5.84536714e-17 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -45983,134 +45983,134 @@ bins: art_sys_55: 0.0 art_sys_56: 0.0 art_sys_57: 0.0 - art_sys_58: -2.22971916e-299 - art_sys_59: 4.70941982e-220 - art_sys_60: 5.16963486e-216 - art_sys_61: -3.06556673e-213 - art_sys_62: 1.51545247e-207 - art_sys_63: 2.34449255e-198 - art_sys_64: -7.21152418e-200 - art_sys_65: 7.80795622e-73 - art_sys_66: 1.45859324e-60 - art_sys_67: -5.39370908e-57 - art_sys_68: -7.11798777e-55 - art_sys_69: -9.29346763e-41 - art_sys_70: 2.03809615e-43 - art_sys_71: -2.33795685e-37 - art_sys_72: -1.53740811e-24 - art_sys_73: 1.02324392e-02 - art_sys_74: -6.09757045e-02 - art_sys_75: 1.09840418e-01 - art_sys_76: 1.16936922e-20 - art_sys_77: 3.78870959e-22 - art_sys_78: -3.65959427e-22 - art_sys_79: -2.46817492e-02 - art_sys_80: 1.04003593e-20 - art_sys_81: 4.11002677e-01 - art_sys_82: 2.51577085e-01 - art_sys_83: 4.10516498e-18 - art_sys_84: 1.50524545e+00 - art_sys_85: 7.51931830e-01 - art_sys_86: 4.93635148e-19 - art_sys_87: -2.53084341e-21 - art_sys_88: -2.16565798e-19 - art_sys_89: -1.18590018e-19 - art_sys_90: 4.28048914e-20 - art_sys_91: 1.01996239e-19 - art_sys_92: -7.45675996e-20 - art_sys_93: -2.36685321e-20 - art_sys_94: -2.67074928e-20 - art_sys_95: 1.12149327e-19 - art_sys_96: 1.50671750e-19 - art_sys_97: -1.48955745e-20 - art_sys_98: 6.31892605e-20 - art_sys_99: 2.58860818e-21 - art_sys_100: 1.00452717e-20 - art_sys_101: -3.14351655e-20 - art_sys_102: -6.67461346e-21 - art_sys_103: 8.32651831e-21 - art_sys_104: 4.51382867e-21 - art_sys_105: -2.25359506e-20 - art_sys_106: 8.40079173e-21 - art_sys_107: 8.65726831e-20 - art_sys_108: 5.57057811e-21 - art_sys_109: 5.96063861e-20 - art_sys_110: 4.56783510e-20 - art_sys_111: 1.03976925e-20 - art_sys_112: 2.50042543e-20 - art_sys_113: 2.42588468e-20 - art_sys_114: 3.00150206e-22 - art_sys_115: -2.08177280e-21 - art_sys_116: 8.43166207e-21 - art_sys_117: 2.70795904e-21 - art_sys_118: -1.09246764e-20 - art_sys_119: -1.97447392e-21 - art_sys_120: 4.22187880e-21 - art_sys_121: -1.07342394e-21 - art_sys_122: 2.69822104e-23 - art_sys_123: -1.35300526e-21 - art_sys_124: 2.71914894e-21 - art_sys_125: 1.30836554e-21 - art_sys_126: -6.36276675e-22 - art_sys_127: -2.46730729e-21 - art_sys_128: 1.59835999e-21 - art_sys_129: -2.87616554e-21 - art_sys_130: 6.11132056e-22 - art_sys_131: -6.09193790e-22 - art_sys_132: 4.22860560e-22 - art_sys_133: 1.32007188e-21 - art_sys_134: 1.06270516e-21 - art_sys_135: -1.59418093e-22 - art_sys_136: 5.76062367e-22 - art_sys_137: 7.22412960e-22 - art_sys_138: 1.12789141e-22 - art_sys_139: -1.28421301e-21 - art_sys_140: 6.85676670e-22 - art_sys_141: 4.99908943e-22 - art_sys_142: 1.30066619e-22 - art_sys_143: -1.05413628e-20 - art_sys_144: 1.08117811e-19 - art_sys_145: 1.56259113e-20 - art_sys_146: -0.0 - art_sys_147: 3.18073851e-21 - art_sys_148: 6.78366264e-23 - art_sys_149: 6.78366264e-23 - art_sys_150: -1.56513788e-23 - art_sys_151: -1.56513788e-23 - art_sys_152: 1.67408149e-22 - art_sys_153: -8.67669679e-21 - art_sys_154: 3.48946329e-21 - art_sys_155: 6.90291452e-20 - art_sys_156: -6.79911668e-22 - art_sys_157: -5.67877037e-23 - art_sys_158: -0.0 - art_sys_159: -2.09176428e-20 - art_sys_160: 3.94577428e-21 - art_sys_161: 2.23991165e-20 - art_sys_162: -7.66790402e-21 - art_sys_163: -1.48743453e-22 - art_sys_164: 7.97989103e-22 - art_sys_165: 2.41478054e-21 - art_sys_166: 8.05710365e-03 - art_sys_167: -7.64305344e-03 - art_sys_168: -5.01562437e-03 - art_sys_169: 2.79340298e-04 - art_sys_170: -8.90654986e-05 - art_sys_171: 3.71210514e-05 - art_sys_172: 1.43173981e-06 - art_sys_173: -3.76865019e-07 - art_sys_174: -1.40892706e-07 - art_sys_175: -7.45908384e-18 - art_sys_176: -5.80685303e-10 - art_sys_177: -1.02322748e-10 - art_sys_178: 5.93611779e-11 - art_sys_179: -1.37764597e-11 - art_sys_180: 2.85740628e-12 - art_sys_181: -5.82002329e-13 - art_sys_182: -9.74862861e-14 + art_sys_58: 0.0 + art_sys_59: 0.0 + art_sys_60: 0.0 + art_sys_61: 0.0 + art_sys_62: 0.0 + art_sys_63: 0.0 + art_sys_64: 0.0 + art_sys_65: 0.0 + art_sys_66: 0.0 + art_sys_67: 0.0 + art_sys_68: 0.0 + art_sys_69: 0.0 + art_sys_70: 0.0 + art_sys_71: 0.0 + art_sys_72: -8.87708073e-193 + art_sys_73: 5.50233701e-184 + art_sys_74: 1.71522501e-185 + art_sys_75: 8.42493280e-70 + art_sys_76: 1.02324392e-02 + art_sys_77: -6.09757045e-02 + art_sys_78: 1.09840418e-01 + art_sys_79: 1.37929604e-21 + art_sys_80: 2.46817492e-02 + art_sys_81: 4.47952243e-21 + art_sys_82: -4.14280006e-22 + art_sys_83: 4.11002677e-01 + art_sys_84: -2.51577085e-01 + art_sys_85: -1.50524545e+00 + art_sys_86: -7.51931830e-01 + art_sys_87: 4.64985515e-19 + art_sys_88: 6.70796216e-19 + art_sys_89: -8.05710365e-03 + art_sys_90: 1.08587574e-19 + art_sys_91: 1.91856975e-20 + art_sys_92: -7.64305344e-03 + art_sys_93: -5.01562437e-03 + art_sys_94: 1.04735156e-19 + art_sys_95: 7.04200057e-21 + art_sys_96: 5.60779509e-20 + art_sys_97: -9.25933174e-20 + art_sys_98: 2.02909803e-20 + art_sys_99: 2.14644955e-21 + art_sys_100: 7.55212049e-21 + art_sys_101: -4.30632434e-20 + art_sys_102: -1.46923813e-20 + art_sys_103: 1.64373849e-20 + art_sys_104: 1.03848826e-20 + art_sys_105: -7.12857659e-20 + art_sys_106: -1.10318781e-23 + art_sys_107: -3.34343620e-21 + art_sys_108: 1.71165445e-20 + art_sys_109: 3.15648769e-20 + art_sys_110: 8.41578561e-21 + art_sys_111: 2.30959852e-20 + art_sys_112: -2.04730237e-21 + art_sys_113: -3.58181956e-21 + art_sys_114: -2.17169568e-20 + art_sys_115: 3.55355104e-21 + art_sys_116: 2.00091383e-22 + art_sys_117: -2.89385565e-20 + art_sys_118: -8.75849444e-22 + art_sys_119: -1.01019631e-20 + art_sys_120: -5.62539680e-21 + art_sys_121: -1.04750307e-20 + art_sys_122: -2.02453481e-21 + art_sys_123: 6.77416816e-21 + art_sys_124: 1.49597684e-21 + art_sys_125: -1.67764376e-20 + art_sys_126: -2.14328313e-21 + art_sys_127: 2.22390917e-21 + art_sys_128: 6.64338391e-22 + art_sys_129: -1.04058144e-21 + art_sys_130: 2.16576814e-21 + art_sys_131: 1.18239607e-21 + art_sys_132: -6.06418733e-21 + art_sys_133: -7.60152816e-21 + art_sys_134: 1.50182934e-21 + art_sys_135: 7.51018738e-22 + art_sys_136: -4.71758399e-21 + art_sys_137: -1.35558055e-21 + art_sys_138: -7.09460428e-23 + art_sys_139: -7.17027865e-22 + art_sys_140: -4.27967443e-21 + art_sys_141: 9.21588219e-22 + art_sys_142: 1.59727069e-21 + art_sys_143: 3.78629606e-22 + art_sys_144: 6.29790171e-22 + art_sys_145: -5.68827032e-22 + art_sys_146: 1.39847969e-21 + art_sys_147: 1.30869527e-21 + art_sys_148: -1.18570981e-20 + art_sys_149: -6.04252863e-24 + art_sys_150: 6.28527670e-22 + art_sys_151: 5.05593284e-22 + art_sys_152: 7.86490570e-20 + art_sys_153: 2.33123491e-22 + art_sys_154: -3.67307258e-23 + art_sys_155: -1.90975892e-20 + art_sys_156: 0.0 + art_sys_157: 2.33643464e-22 + art_sys_158: 0.0 + art_sys_159: -1.24950036e-22 + art_sys_160: -4.94165883e-21 + art_sys_161: -2.56328338e-23 + art_sys_162: -2.56328338e-23 + art_sys_163: 1.51760919e-21 + art_sys_164: 1.51760919e-21 + art_sys_165: 6.79906882e-22 + art_sys_166: 5.67876401e-23 + art_sys_167: 0.0 + art_sys_168: 2.79340298e-04 + art_sys_169: 8.90654986e-05 + art_sys_170: 3.71210514e-05 + art_sys_171: -1.43173981e-06 + art_sys_172: -3.76865019e-07 + art_sys_173: -1.40892706e-07 + art_sys_174: 5.80685303e-10 + art_sys_175: 1.02322748e-10 + art_sys_176: -5.93611779e-11 + art_sys_177: 2.85740628e-12 + art_sys_178: -5.82002329e-13 + art_sys_179: -7.45908402e-18 + art_sys_180: -6.90291338e-20 + art_sys_181: 1.37764597e-11 + art_sys_182: -9.74862860e-14 art_sys_183: 1.54371815e-14 art_sys_184: -2.58869574e-15 - art_sys_185: 2.46442789e-16 + art_sys_185: -2.46442789e-16 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -46274,134 +46274,134 @@ bins: art_sys_55: 0.0 art_sys_56: 0.0 art_sys_57: 0.0 - art_sys_58: -7.32536497e-300 - art_sys_59: 1.54731699e-220 - art_sys_60: 1.69852427e-216 - art_sys_61: -1.00721611e-213 - art_sys_62: 4.97913851e-208 - art_sys_63: 7.70301502e-199 - art_sys_64: -2.36940310e-200 - art_sys_65: 2.56536555e-73 - art_sys_66: 4.79232303e-61 - art_sys_67: -1.77214562e-57 - art_sys_68: -2.33867098e-55 - art_sys_69: -3.05344203e-41 - art_sys_70: 6.69632552e-44 - art_sys_71: -7.68154149e-38 - art_sys_72: -5.05127551e-25 - art_sys_73: 3.36194855e-03 - art_sys_74: -3.04001063e-03 - art_sys_75: 1.33022593e-02 - art_sys_76: 1.21089575e-21 - art_sys_77: 4.30240379e-23 - art_sys_78: -1.93304052e-23 - art_sys_79: -1.08982924e-02 - art_sys_80: 3.00796744e-21 - art_sys_81: -1.03393318e-02 - art_sys_82: -1.11457007e-01 - art_sys_83: 1.20510667e-19 - art_sys_84: 2.57757398e-02 - art_sys_85: 1.06619479e-01 - art_sys_86: 4.73166266e-20 - art_sys_87: 1.16063689e-20 - art_sys_88: -2.68100729e-20 - art_sys_89: 5.21545976e-21 - art_sys_90: 1.18223067e-20 - art_sys_91: 5.27608221e-21 - art_sys_92: -9.91260861e-21 - art_sys_93: -9.93783293e-21 - art_sys_94: -3.59861819e-21 - art_sys_95: 3.76785281e-21 - art_sys_96: 1.20873567e-20 - art_sys_97: -1.27465976e-21 - art_sys_98: 7.89080100e-21 - art_sys_99: 2.34754412e-21 - art_sys_100: 7.78705812e-22 - art_sys_101: -6.97756770e-22 - art_sys_102: -1.45885534e-22 - art_sys_103: 9.70496710e-22 - art_sys_104: -1.06151260e-21 - art_sys_105: 3.21101949e-22 - art_sys_106: 6.66140757e-22 - art_sys_107: 3.23324255e-21 - art_sys_108: 1.77411317e-22 - art_sys_109: 3.36326116e-21 - art_sys_110: 2.67359461e-21 - art_sys_111: 9.46652433e-22 - art_sys_112: 7.79060163e-22 - art_sys_113: 4.60814919e-21 - art_sys_114: 5.37317341e-22 - art_sys_115: 1.64651278e-21 - art_sys_116: 7.31990146e-22 - art_sys_117: 4.43867429e-22 - art_sys_118: -7.73020378e-22 - art_sys_119: -1.55231911e-22 - art_sys_120: 3.08381963e-22 - art_sys_121: 1.29142614e-22 - art_sys_122: -1.69445047e-22 - art_sys_123: 1.30684095e-23 - art_sys_124: 1.25069900e-22 - art_sys_125: 1.37370483e-22 - art_sys_126: -5.65388553e-22 - art_sys_127: -2.77718942e-23 - art_sys_128: -1.10000284e-22 - art_sys_129: 5.97988697e-23 - art_sys_130: -1.47465019e-22 - art_sys_131: -1.02772913e-22 - art_sys_132: -6.66954797e-23 - art_sys_133: 1.61613559e-22 - art_sys_134: -2.08849594e-21 - art_sys_135: -2.33184788e-23 - art_sys_136: -2.50266731e-23 - art_sys_137: -2.38995112e-21 - art_sys_138: 5.30921489e-23 - art_sys_139: -6.26690938e-23 - art_sys_140: 2.23714775e-22 - art_sys_141: -9.11666093e-23 - art_sys_142: -2.76913535e-22 - art_sys_143: 5.12642993e-20 - art_sys_144: -4.53031206e-19 - art_sys_145: -5.71626914e-20 - art_sys_146: -0.0 - art_sys_147: -1.08170526e-20 - art_sys_148: -1.77583484e-22 - art_sys_149: -1.77583484e-22 - art_sys_150: 8.10259955e-24 - art_sys_151: 8.10259955e-24 - art_sys_152: -3.90566345e-22 - art_sys_153: 3.36456595e-20 - art_sys_154: -1.40926584e-20 - art_sys_155: -3.91796873e-19 - art_sys_156: 3.23475831e-21 - art_sys_157: 2.74291660e-22 - art_sys_158: 0.0 - art_sys_159: -1.18766474e-21 - art_sys_160: 5.74049359e-22 - art_sys_161: 3.13271790e-21 - art_sys_162: -4.53386571e-22 - art_sys_163: 1.81996084e-22 - art_sys_164: 1.26891907e-21 - art_sys_165: 2.56698375e-21 - art_sys_166: -1.62601696e-01 - art_sys_167: 2.24298315e-02 - art_sys_168: 3.06550642e-02 - art_sys_169: -1.33238599e-03 - art_sys_170: 4.47610907e-04 - art_sys_171: -1.92101654e-04 - art_sys_172: -6.54228052e-06 - art_sys_173: 1.90472317e-06 - art_sys_174: 6.98917776e-07 - art_sys_175: 3.59466052e-17 - art_sys_176: 1.78312175e-09 - art_sys_177: 6.32858458e-10 - art_sys_178: -2.35885682e-10 - art_sys_179: 6.83156840e-11 - art_sys_180: -1.31830497e-11 - art_sys_181: 2.69596123e-12 + art_sys_58: 0.0 + art_sys_59: 0.0 + art_sys_60: 0.0 + art_sys_61: 0.0 + art_sys_62: 0.0 + art_sys_63: 0.0 + art_sys_64: 0.0 + art_sys_65: 0.0 + art_sys_66: 0.0 + art_sys_67: 0.0 + art_sys_68: 0.0 + art_sys_69: 0.0 + art_sys_70: 0.0 + art_sys_71: 0.0 + art_sys_72: -2.91662451e-193 + art_sys_73: 1.80782979e-184 + art_sys_74: 5.63548699e-186 + art_sys_75: 2.76807807e-70 + art_sys_76: 3.36194855e-03 + art_sys_77: -3.04001063e-03 + art_sys_78: 1.33022593e-02 + art_sys_79: 2.74486511e-22 + art_sys_80: 1.08982924e-02 + art_sys_81: 2.61297825e-21 + art_sys_82: -5.27950132e-23 + art_sys_83: -1.03393318e-02 + art_sys_84: 1.11457007e-01 + art_sys_85: -2.57757398e-02 + art_sys_86: -1.06619479e-01 + art_sys_87: 2.33010324e-19 + art_sys_88: -1.83087414e-20 + art_sys_89: 1.62601696e-01 + art_sys_90: 3.53124118e-19 + art_sys_91: 2.76606055e-20 + art_sys_92: 2.24298315e-02 + art_sys_93: 3.06550642e-02 + art_sys_94: 1.60380711e-19 + art_sys_95: 5.82711261e-20 + art_sys_96: 4.19077812e-20 + art_sys_97: -1.13262644e-19 + art_sys_98: 2.73561763e-20 + art_sys_99: -2.22803401e-20 + art_sys_100: -1.52412467e-21 + art_sys_101: -4.60001375e-21 + art_sys_102: -3.69282923e-20 + art_sys_103: 2.15564253e-20 + art_sys_104: 2.42056146e-20 + art_sys_105: 2.18716976e-20 + art_sys_106: -4.62826845e-20 + art_sys_107: 5.76112823e-20 + art_sys_108: -2.07439682e-20 + art_sys_109: -3.27151848e-21 + art_sys_110: -3.22976001e-20 + art_sys_111: 7.70151250e-21 + art_sys_112: 1.35069961e-20 + art_sys_113: -4.21663038e-21 + art_sys_114: -3.36750572e-20 + art_sys_115: -3.67088085e-21 + art_sys_116: -1.46489682e-21 + art_sys_117: 2.78353439e-20 + art_sys_118: -7.49207136e-21 + art_sys_119: -8.45904808e-21 + art_sys_120: -2.03067767e-21 + art_sys_121: 1.00159796e-21 + art_sys_122: -6.22719424e-21 + art_sys_123: 6.24580197e-21 + art_sys_124: -5.74180157e-21 + art_sys_125: -6.34395541e-21 + art_sys_126: 3.29728497e-21 + art_sys_127: -5.00439310e-21 + art_sys_128: -3.54788902e-21 + art_sys_129: 1.09424619e-20 + art_sys_130: -4.01208728e-21 + art_sys_131: -1.98638558e-21 + art_sys_132: 3.81289354e-22 + art_sys_133: -1.61493728e-21 + art_sys_134: -1.19647981e-21 + art_sys_135: -5.10732310e-22 + art_sys_136: -1.63561006e-21 + art_sys_137: 1.81626821e-21 + art_sys_138: 4.59942753e-22 + art_sys_139: -3.23182425e-21 + art_sys_140: 1.27161929e-21 + art_sys_141: -1.26024805e-21 + art_sys_142: 7.94165325e-23 + art_sys_143: 4.29647526e-23 + art_sys_144: 6.75395505e-22 + art_sys_145: -2.08957356e-21 + art_sys_146: -1.61700403e-21 + art_sys_147: 1.03981704e-21 + art_sys_148: 2.80333182e-20 + art_sys_149: -2.51788482e-22 + art_sys_150: -1.21566578e-23 + art_sys_151: 5.81669698e-23 + art_sys_152: -2.89426748e-19 + art_sys_153: 6.07669831e-22 + art_sys_154: 1.16634868e-22 + art_sys_155: 7.50783411e-20 + art_sys_156: 0.0 + art_sys_157: 1.23888657e-22 + art_sys_158: -0.0 + art_sys_159: 2.11636617e-23 + art_sys_160: 2.81661837e-20 + art_sys_161: -1.26889550e-23 + art_sys_162: -1.26889550e-23 + art_sys_163: -7.29507805e-21 + art_sys_164: -7.29507805e-21 + art_sys_165: -3.23473577e-21 + art_sys_166: -2.74291376e-22 + art_sys_167: -0.0 + art_sys_168: -1.33238599e-03 + art_sys_169: -4.47610907e-04 + art_sys_170: -1.92101654e-04 + art_sys_171: 6.54228052e-06 + art_sys_172: 1.90472317e-06 + art_sys_173: 6.98917776e-07 + art_sys_174: -1.78312175e-09 + art_sys_175: -6.32858458e-10 + art_sys_176: 2.35885682e-10 + art_sys_177: -1.31830497e-11 + art_sys_178: 2.69596123e-12 + art_sys_179: 3.59466062e-17 + art_sys_180: 3.91796815e-19 + art_sys_181: -6.83156840e-11 art_sys_182: 4.73983979e-13 art_sys_183: -7.20985957e-14 art_sys_184: 1.23670669e-14 - art_sys_185: -1.14422274e-15 + art_sys_185: 1.14422274e-15 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -46565,134 +46565,134 @@ bins: art_sys_55: 0.0 art_sys_56: 0.0 art_sys_57: 0.0 - art_sys_58: -8.02038215e-301 - art_sys_59: 1.69422088e-221 - art_sys_60: 1.85978393e-217 - art_sys_61: -1.10284225e-214 - art_sys_62: 5.45186310e-209 - art_sys_63: 8.43434729e-200 - art_sys_64: -2.59435670e-201 - art_sys_65: 2.80892402e-74 - art_sys_66: 5.24731117e-62 - art_sys_67: -1.94039498e-58 - art_sys_68: -2.56070683e-56 - art_sys_69: -3.34333900e-42 - art_sys_70: 7.33208164e-45 - art_sys_71: -8.41083504e-39 - art_sys_72: -5.53084887e-26 - art_sys_73: 3.68113545e-04 - art_sys_74: 1.08250018e-03 - art_sys_75: -1.16858131e-03 - art_sys_76: -1.49809389e-22 - art_sys_77: -4.34095169e-24 - art_sys_78: 6.33375311e-24 - art_sys_79: -2.53615436e-04 - art_sys_80: -1.25017528e-23 - art_sys_81: -1.96357255e-02 - art_sys_82: -1.42344586e-02 - art_sys_83: -1.66508473e-19 - art_sys_84: -8.30493993e-02 - art_sys_85: -4.91203192e-02 - art_sys_86: -3.57588550e-20 - art_sys_87: -1.98765741e-22 - art_sys_88: 1.41790542e-20 - art_sys_89: 6.17954261e-21 - art_sys_90: -3.09648935e-21 - art_sys_91: -5.90395044e-21 - art_sys_92: 4.98023874e-21 - art_sys_93: 1.84807711e-21 - art_sys_94: 1.71450961e-21 - art_sys_95: -6.45348260e-21 - art_sys_96: -1.00051329e-20 - art_sys_97: 8.98041092e-22 - art_sys_98: -4.05061539e-21 - art_sys_99: -1.81581083e-22 - art_sys_100: -5.50453464e-22 - art_sys_101: 1.71218852e-21 - art_sys_102: 3.87806000e-22 - art_sys_103: -5.75546908e-22 - art_sys_104: -1.23784721e-22 - art_sys_105: 1.24858221e-21 - art_sys_106: -4.82051286e-22 - art_sys_107: -4.98523055e-21 - art_sys_108: -3.12314096e-22 - art_sys_109: -3.68561657e-21 - art_sys_110: -2.66339182e-21 - art_sys_111: -6.49738343e-22 - art_sys_112: -1.48704680e-21 - art_sys_113: -1.68153378e-21 - art_sys_114: -4.01757139e-24 - art_sys_115: -6.42145418e-25 - art_sys_116: -4.80936220e-22 - art_sys_117: -1.51983632e-22 - art_sys_118: 6.69955083e-22 - art_sys_119: 1.15409786e-22 - art_sys_120: -2.67070631e-22 - art_sys_121: 8.18313360e-23 - art_sys_122: -6.40675196e-24 - art_sys_123: 6.59202351e-23 - art_sys_124: -1.62606451e-22 - art_sys_125: -7.79207573e-23 - art_sys_126: 5.63196475e-23 - art_sys_127: 1.28708032e-22 - art_sys_128: -8.67344096e-23 - art_sys_129: 1.64556032e-22 - art_sys_130: -1.17330818e-23 - art_sys_131: 3.51060219e-23 - art_sys_132: -2.40718260e-23 - art_sys_133: -8.44231531e-23 - art_sys_134: 5.70701341e-22 - art_sys_135: 1.12635066e-23 - art_sys_136: -3.00168473e-23 - art_sys_137: 3.88037995e-21 - art_sys_138: -1.00808001e-23 - art_sys_139: 7.78312209e-23 - art_sys_140: 2.23692273e-22 - art_sys_141: -2.22008743e-22 - art_sys_142: -3.79875129e-22 - art_sys_143: -4.24819245e-20 - art_sys_144: 4.01564951e-19 - art_sys_145: 5.59547265e-20 - art_sys_146: -0.0 - art_sys_147: 6.73066378e-21 - art_sys_148: 1.67737550e-22 - art_sys_149: 1.67737550e-22 - art_sys_150: 3.18384745e-23 - art_sys_151: 3.18384745e-23 - art_sys_152: 3.42282214e-22 - art_sys_153: -3.14958029e-20 - art_sys_154: 1.22369453e-20 - art_sys_155: 1.35490372e-18 - art_sys_156: -1.21237029e-20 - art_sys_157: -1.02326318e-21 + art_sys_58: 0.0 + art_sys_59: 0.0 + art_sys_60: 0.0 + art_sys_61: 0.0 + art_sys_62: 0.0 + art_sys_63: 0.0 + art_sys_64: 0.0 + art_sys_65: 0.0 + art_sys_66: 0.0 + art_sys_67: 0.0 + art_sys_68: 0.0 + art_sys_69: 0.0 + art_sys_70: 0.0 + art_sys_71: 0.0 + art_sys_72: -3.19352327e-194 + art_sys_73: 1.97946170e-185 + art_sys_74: 6.17050938e-187 + art_sys_75: 3.03088228e-71 + art_sys_76: 3.68113545e-04 + art_sys_77: 1.08250018e-03 + art_sys_78: -1.16858131e-03 + art_sys_79: 2.73276525e-23 + art_sys_80: 2.53615436e-04 + art_sys_81: 8.91802923e-23 + art_sys_82: 4.19224109e-24 + art_sys_83: -1.96357255e-02 + art_sys_84: 1.42344586e-02 + art_sys_85: 8.30493993e-02 + art_sys_86: 4.91203192e-02 + art_sys_87: -3.97267831e-20 + art_sys_88: -3.13819337e-20 + art_sys_89: 7.08353083e-02 + art_sys_90: 1.28734929e-19 + art_sys_91: -4.48448319e-21 + art_sys_92: -9.20702885e-02 + art_sys_93: -4.80288106e-02 + art_sys_94: 2.90452809e-20 + art_sys_95: 7.53456243e-22 + art_sys_96: 3.29458207e-20 + art_sys_97: 7.00219013e-21 + art_sys_98: -9.04122276e-20 + art_sys_99: -2.21251730e-20 + art_sys_100: -6.60467275e-20 + art_sys_101: -2.24923611e-20 + art_sys_102: 6.67216096e-21 + art_sys_103: 6.31000810e-21 + art_sys_104: 3.38565204e-20 + art_sys_105: -1.59027945e-20 + art_sys_106: -3.26762899e-20 + art_sys_107: 5.51503775e-20 + art_sys_108: -1.51413273e-20 + art_sys_109: 2.28267354e-20 + art_sys_110: -2.00642692e-21 + art_sys_111: 4.28113511e-21 + art_sys_112: -1.22505757e-20 + art_sys_113: 5.12180224e-21 + art_sys_114: -3.17415847e-21 + art_sys_115: 8.91729883e-21 + art_sys_116: 2.76291301e-20 + art_sys_117: -4.88199806e-21 + art_sys_118: 7.65707264e-21 + art_sys_119: -2.30360362e-21 + art_sys_120: -1.51590409e-20 + art_sys_121: -7.58492433e-21 + art_sys_122: -8.56110864e-21 + art_sys_123: -1.22882027e-20 + art_sys_124: 1.53286727e-21 + art_sys_125: -2.64500942e-21 + art_sys_126: 6.54727360e-21 + art_sys_127: 4.00696165e-21 + art_sys_128: -2.56119936e-21 + art_sys_129: 1.08746006e-20 + art_sys_130: 6.38204296e-21 + art_sys_131: 1.08163417e-21 + art_sys_132: -4.45749445e-21 + art_sys_133: 1.66726566e-21 + art_sys_134: -3.68097187e-21 + art_sys_135: 2.97199989e-22 + art_sys_136: 3.05867928e-21 + art_sys_137: -4.39828731e-22 + art_sys_138: -2.32708542e-23 + art_sys_139: -3.79839258e-22 + art_sys_140: -6.15181586e-23 + art_sys_141: 1.08671308e-21 + art_sys_142: 1.52092738e-21 + art_sys_143: 3.71810206e-23 + art_sys_144: 1.25187721e-21 + art_sys_145: 1.77023266e-21 + art_sys_146: 1.83694437e-22 + art_sys_147: 2.14454734e-22 + art_sys_148: -2.35524343e-20 + art_sys_149: 6.47545557e-23 + art_sys_150: -1.50617021e-22 + art_sys_151: -2.13725354e-22 + art_sys_152: 2.50183666e-19 + art_sys_153: 2.61355133e-22 + art_sys_154: -1.43269629e-22 + art_sys_155: -6.28961739e-20 + art_sys_156: 0.0 + art_sys_157: 1.61885895e-22 art_sys_158: -0.0 - art_sys_159: 1.28895237e-21 - art_sys_160: -3.27293108e-22 - art_sys_161: -1.34054441e-21 - art_sys_162: 4.53593170e-22 - art_sys_163: 4.96549246e-23 - art_sys_164: -3.94959355e-21 - art_sys_165: -4.48867577e-22 - art_sys_166: -7.08353083e-02 - art_sys_167: -9.20702885e-02 - art_sys_168: -4.80288106e-02 - art_sys_169: 4.88467869e-03 - art_sys_170: -1.27830347e-03 - art_sys_171: 6.26384981e-04 - art_sys_172: 2.51499998e-05 - art_sys_173: -6.42645336e-06 - art_sys_174: -2.55845223e-06 - art_sys_175: -1.36136188e-16 - art_sys_176: -8.79520325e-09 - art_sys_177: -1.80977099e-09 - art_sys_178: 1.03667391e-09 - art_sys_179: -2.35069720e-10 - art_sys_180: 5.23544195e-11 - art_sys_181: -1.01990399e-11 + art_sys_159: 1.32187943e-23 + art_sys_160: -2.28932928e-20 + art_sys_161: 8.95249273e-24 + art_sys_162: 8.95249273e-24 + art_sys_163: 6.54495424e-21 + art_sys_164: 6.54495424e-21 + art_sys_165: 1.21236277e-20 + art_sys_166: 1.02326212e-21 + art_sys_167: 0.0 + art_sys_168: 4.88467869e-03 + art_sys_169: 1.27830347e-03 + art_sys_170: 6.26384981e-04 + art_sys_171: -2.51499998e-05 + art_sys_172: -6.42645336e-06 + art_sys_173: -2.55845223e-06 + art_sys_174: 8.79520325e-09 + art_sys_175: 1.80977099e-09 + art_sys_176: -1.03667391e-09 + art_sys_177: 5.23544195e-11 + art_sys_178: -1.01990399e-11 + art_sys_179: -1.36136190e-16 + art_sys_180: -1.35490357e-18 + art_sys_181: 2.35069720e-10 art_sys_182: -1.76764351e-12 art_sys_183: 2.79760534e-13 art_sys_184: -4.63822680e-14 - art_sys_185: 4.47947512e-15 + art_sys_185: -4.47947512e-15 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -46856,134 +46856,134 @@ bins: art_sys_55: 0.0 art_sys_56: 0.0 art_sys_57: 0.0 - art_sys_58: 1.95636862e-302 - art_sys_59: -4.12983917e-223 - art_sys_60: -4.53341629e-219 - art_sys_61: 2.68829241e-216 - art_sys_62: -1.32894819e-210 - art_sys_63: -2.05595966e-201 - art_sys_64: 6.32401361e-203 - art_sys_65: -6.84704368e-76 - art_sys_66: -1.27908653e-63 - art_sys_67: 4.72991403e-60 - art_sys_68: 6.24198853e-58 - art_sys_69: 8.14973560e-44 - art_sys_70: -1.78727096e-46 - art_sys_71: 2.05022829e-40 - art_sys_72: 1.34820178e-27 - art_sys_73: -8.97314949e-06 - art_sys_74: 3.78401236e-04 - art_sys_75: -7.88297274e-04 - art_sys_76: -8.28538420e-23 - art_sys_77: -2.68449464e-24 - art_sys_78: 2.27052345e-24 - art_sys_79: 4.32530253e-04 - art_sys_80: -1.37365280e-22 - art_sys_81: -1.99822595e-04 - art_sys_82: 7.51026517e-03 - art_sys_83: -4.92934436e-21 - art_sys_84: -3.62769579e-04 - art_sys_85: -6.55998977e-03 - art_sys_86: -2.47002438e-21 - art_sys_87: -8.36734913e-22 - art_sys_88: 1.34776094e-21 - art_sys_89: -4.71307173e-22 - art_sys_90: -7.98810068e-22 - art_sys_91: -2.37987475e-22 - art_sys_92: 6.18745176e-22 - art_sys_93: 6.52229869e-22 - art_sys_94: 2.20609454e-22 - art_sys_95: -1.64950339e-22 - art_sys_96: -7.20832308e-22 - art_sys_97: 7.04842876e-23 - art_sys_98: -4.70684194e-22 - art_sys_99: -1.47099618e-22 - art_sys_100: -3.99560457e-23 - art_sys_101: 9.55418738e-25 - art_sys_102: -1.43659483e-24 - art_sys_103: -5.30627626e-23 - art_sys_104: 7.35539921e-23 - art_sys_105: -4.16368399e-23 - art_sys_106: -4.42360372e-23 - art_sys_107: -1.42330080e-22 - art_sys_108: -5.73403821e-24 - art_sys_109: -1.71481434e-22 - art_sys_110: -1.39334220e-22 - art_sys_111: -5.87466196e-23 - art_sys_112: -3.49139384e-23 - art_sys_113: -2.96845918e-22 - art_sys_114: -3.75599738e-23 - art_sys_115: -1.11851140e-22 - art_sys_116: -4.78061877e-23 - art_sys_117: -2.49671655e-23 - art_sys_118: 4.35485032e-23 - art_sys_119: 6.84305447e-24 - art_sys_120: -1.57515560e-23 - art_sys_121: -9.92833067e-24 - art_sys_122: 1.12245436e-23 - art_sys_123: -2.21735345e-24 - art_sys_124: -9.23813652e-24 - art_sys_125: -7.67141521e-24 - art_sys_126: 3.59425564e-23 - art_sys_127: -3.84445162e-25 - art_sys_128: 7.43808793e-24 - art_sys_129: -5.80180218e-24 - art_sys_130: 1.09181311e-23 - art_sys_131: 6.64669220e-24 - art_sys_132: 4.94499875e-24 - art_sys_133: -9.80759234e-24 - art_sys_134: 2.04232770e-22 - art_sys_135: 1.90917116e-24 - art_sys_136: 1.98894723e-24 - art_sys_137: 1.66338071e-21 - art_sys_138: -3.40029289e-24 - art_sys_139: 3.36854832e-24 - art_sys_140: 3.02692419e-23 - art_sys_141: -2.38744604e-23 - art_sys_142: -2.50198781e-23 - art_sys_143: 2.95726306e-20 - art_sys_144: -3.24203913e-19 - art_sys_145: -4.06278791e-20 - art_sys_146: -0.0 - art_sys_147: -5.75006752e-21 - art_sys_148: 4.67333239e-23 - art_sys_149: 4.67333239e-23 - art_sys_150: -8.18837778e-23 - art_sys_151: -8.18837778e-23 - art_sys_152: -2.67478782e-22 - art_sys_153: 2.48992330e-20 - art_sys_154: -9.97992678e-21 - art_sys_155: -4.07980804e-18 - art_sys_156: 3.83439749e-20 - art_sys_157: 3.21555482e-21 + art_sys_58: 0.0 + art_sys_59: 0.0 + art_sys_60: 0.0 + art_sys_61: 0.0 + art_sys_62: 0.0 + art_sys_63: 0.0 + art_sys_64: 0.0 + art_sys_65: 0.0 + art_sys_66: 0.0 + art_sys_67: 0.0 + art_sys_68: 0.0 + art_sys_69: 0.0 + art_sys_70: 0.0 + art_sys_71: 0.0 + art_sys_72: 7.78479020e-196 + art_sys_73: -4.82529567e-187 + art_sys_74: -1.50417319e-188 + art_sys_75: -7.38808995e-73 + art_sys_76: -8.97314949e-06 + art_sys_77: 3.78401236e-04 + art_sys_78: -7.88297274e-04 + art_sys_79: 2.29617555e-23 + art_sys_80: -4.32530253e-04 + art_sys_81: -9.73490720e-23 + art_sys_82: 3.02126528e-24 + art_sys_83: -1.99822595e-04 + art_sys_84: -7.51026517e-03 + art_sys_85: 3.62769579e-04 + art_sys_86: 6.55998977e-03 + art_sys_87: -1.48679751e-20 + art_sys_88: 3.23448253e-22 + art_sys_89: -2.85816045e-02 + art_sys_90: -5.84826612e-20 + art_sys_91: -1.46109775e-20 + art_sys_92: -9.75427685e-02 + art_sys_93: 5.29020574e-02 + art_sys_94: -1.85776796e-20 + art_sys_95: -9.16697338e-20 + art_sys_96: -2.71564084e-20 + art_sys_97: 2.37930535e-21 + art_sys_98: 2.53611636e-20 + art_sys_99: 5.22492512e-20 + art_sys_100: -2.43624813e-20 + art_sys_101: 8.10176216e-21 + art_sys_102: 1.09403110e-20 + art_sys_103: -2.07908317e-20 + art_sys_104: -1.38505717e-20 + art_sys_105: 2.14923378e-21 + art_sys_106: 1.76041665e-20 + art_sys_107: 3.11837705e-20 + art_sys_108: -7.50461223e-21 + art_sys_109: -3.01423837e-20 + art_sys_110: 2.73855129e-20 + art_sys_111: 5.60966627e-21 + art_sys_112: 1.36766091e-20 + art_sys_113: 5.94022429e-21 + art_sys_114: 5.06792929e-20 + art_sys_115: 1.16784650e-20 + art_sys_116: 3.99890795e-22 + art_sys_117: -1.29052411e-20 + art_sys_118: 1.96564379e-21 + art_sys_119: 2.70286691e-21 + art_sys_120: -4.85511255e-21 + art_sys_121: -9.51022540e-21 + art_sys_122: -1.20242149e-20 + art_sys_123: -3.49993037e-21 + art_sys_124: -9.05460260e-21 + art_sys_125: -1.17437386e-21 + art_sys_126: 4.56395492e-21 + art_sys_127: 5.82609529e-21 + art_sys_128: 2.93661284e-21 + art_sys_129: 7.49312512e-21 + art_sys_130: 2.50839006e-21 + art_sys_131: 6.93367195e-22 + art_sys_132: -1.38902405e-22 + art_sys_133: -2.36733873e-21 + art_sys_134: 2.29955146e-21 + art_sys_135: -1.81063211e-21 + art_sys_136: 4.32238258e-21 + art_sys_137: 4.43509954e-22 + art_sys_138: 1.14118377e-21 + art_sys_139: -2.21433008e-23 + art_sys_140: 4.48032218e-21 + art_sys_141: 1.73587520e-21 + art_sys_142: -5.55201710e-22 + art_sys_143: -1.21204134e-22 + art_sys_144: -9.61169407e-22 + art_sys_145: 2.79368994e-22 + art_sys_146: 1.97739536e-21 + art_sys_147: 2.03052752e-21 + art_sys_148: 2.29151099e-20 + art_sys_149: 9.38942662e-22 + art_sys_150: 3.91415346e-22 + art_sys_151: 6.44825528e-22 + art_sys_152: -1.97289574e-19 + art_sys_153: -2.84746321e-23 + art_sys_154: 1.07670755e-22 + art_sys_155: 4.96675389e-20 + art_sys_156: 0.0 + art_sys_157: 1.82611657e-22 art_sys_158: 0.0 - art_sys_159: 6.45078750e-23 - art_sys_160: -3.53640845e-23 - art_sys_161: -1.80267653e-22 - art_sys_162: 2.27515084e-23 - art_sys_163: -1.05569884e-23 - art_sys_164: 6.20954255e-22 - art_sys_165: 9.25552884e-22 - art_sys_166: 2.85816045e-02 - art_sys_167: -9.75427685e-02 - art_sys_168: 5.29020574e-02 - art_sys_169: -3.09653715e-03 - art_sys_170: 2.55839587e-03 - art_sys_171: -1.08840712e-03 - art_sys_172: -5.33271702e-05 - art_sys_173: 1.55741371e-05 - art_sys_174: 5.94374438e-06 - art_sys_175: 4.18113658e-16 - art_sys_176: 2.65569941e-08 - art_sys_177: 6.47343671e-09 - art_sys_178: -2.91304839e-09 - art_sys_179: 7.99516742e-10 - art_sys_180: -1.51911971e-10 - art_sys_181: 3.24734326e-11 + art_sys_159: -3.73628977e-23 + art_sys_160: 1.92000049e-20 + art_sys_161: -1.54404759e-23 + art_sys_162: -1.54404759e-23 + art_sys_163: -5.31279227e-21 + art_sys_164: -5.31279227e-21 + art_sys_165: -3.83438112e-20 + art_sys_166: -3.21555240e-21 + art_sys_167: -0.0 + art_sys_168: -3.09653715e-03 + art_sys_169: -2.55839587e-03 + art_sys_170: -1.08840712e-03 + art_sys_171: 5.33271702e-05 + art_sys_172: 1.55741371e-05 + art_sys_173: 5.94374438e-06 + art_sys_174: -2.65569941e-08 + art_sys_175: -6.47343671e-09 + art_sys_176: 2.91304839e-09 + art_sys_177: -1.51911971e-10 + art_sys_178: 3.24734326e-11 + art_sys_179: 4.18113663e-16 + art_sys_180: 4.07980774e-18 + art_sys_181: -7.99516742e-10 art_sys_182: 5.46749187e-12 art_sys_183: -8.51766525e-13 art_sys_184: 1.45768359e-13 - art_sys_185: -1.35663946e-14 + art_sys_185: 1.35663946e-14 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -47147,134 +47147,134 @@ bins: art_sys_55: 0.0 art_sys_56: 0.0 art_sys_57: 0.0 - art_sys_58: 1.50666289e-302 - art_sys_59: -3.18222136e-223 - art_sys_60: -3.49319515e-219 - art_sys_61: 2.07144666e-216 - art_sys_62: -1.02401260e-210 - art_sys_63: -1.58420667e-201 - art_sys_64: 4.87292855e-203 - art_sys_65: -5.27594609e-76 - art_sys_66: -9.85592014e-64 - art_sys_67: 3.64460526e-60 - art_sys_68: 4.80972468e-58 - art_sys_69: 6.27972709e-44 - art_sys_70: -1.37717030e-46 - art_sys_71: 1.57979040e-40 - art_sys_72: 1.03884834e-27 - art_sys_73: -6.91420344e-06 - art_sys_74: 4.43448108e-05 - art_sys_75: -1.05908136e-04 - art_sys_76: -1.07777029e-23 - art_sys_77: -3.55914258e-25 - art_sys_78: 2.67797982e-25 - art_sys_79: 6.09551521e-05 - art_sys_80: -1.88517034e-23 - art_sys_81: 9.06624040e-04 - art_sys_82: 1.49866755e-03 - art_sys_83: 7.59532644e-21 - art_sys_84: 4.42117708e-03 - art_sys_85: 2.44412873e-03 - art_sys_86: 2.09515756e-21 - art_sys_87: -4.73105073e-23 - art_sys_88: -7.49371275e-22 - art_sys_89: -3.40872304e-22 - art_sys_90: 1.32779140e-22 - art_sys_91: 3.08897244e-22 - art_sys_92: -2.57542973e-22 - art_sys_93: -6.84372851e-23 - art_sys_94: -8.46853508e-23 - art_sys_95: 3.31026743e-22 - art_sys_96: 5.67854872e-22 - art_sys_97: -4.63389599e-23 - art_sys_98: 2.03988330e-22 - art_sys_99: -2.19226824e-24 - art_sys_100: 2.55947768e-23 - art_sys_101: -9.59803640e-23 - art_sys_102: -2.17891898e-23 - art_sys_103: 3.19292177e-23 - art_sys_104: 6.54351692e-24 - art_sys_105: -7.11543625e-23 - art_sys_106: 2.30580465e-23 - art_sys_107: 2.65327675e-22 - art_sys_108: 1.65525056e-23 - art_sys_109: 2.03473378e-22 - art_sys_110: 1.40253426e-22 - art_sys_111: 3.37237754e-23 - art_sys_112: 8.19951027e-23 - art_sys_113: 8.16992732e-23 - art_sys_114: -3.84203106e-24 - art_sys_115: -4.09637884e-24 - art_sys_116: 2.10229895e-23 - art_sys_117: 5.79996447e-24 - art_sys_118: -3.56724809e-23 - art_sys_119: -5.85438526e-24 - art_sys_120: 1.48279445e-23 - art_sys_121: -6.57456798e-24 - art_sys_122: 1.67439661e-24 - art_sys_123: -3.55466732e-24 - art_sys_124: 8.69748494e-24 - art_sys_125: 3.71910077e-24 - art_sys_126: -8.67297075e-25 - art_sys_127: -6.49776504e-24 - art_sys_128: 4.10148598e-24 - art_sys_129: -9.75549270e-24 - art_sys_130: 1.28130833e-24 - art_sys_131: -1.34523855e-24 - art_sys_132: 1.80770594e-24 - art_sys_133: 4.21527365e-24 - art_sys_134: 3.81156117e-22 - art_sys_135: -5.84487238e-25 - art_sys_136: 1.43964155e-24 - art_sys_137: 1.21186206e-21 - art_sys_138: 4.33760782e-25 - art_sys_139: -4.27902242e-24 - art_sys_140: -2.80460416e-23 - art_sys_141: 2.39433219e-23 - art_sys_142: 5.18477238e-23 - art_sys_143: -3.83408751e-20 - art_sys_144: 3.86696778e-19 - art_sys_145: 5.42909601e-20 - art_sys_146: 0.0 - art_sys_147: 6.16419833e-21 - art_sys_148: 2.39340461e-23 - art_sys_149: 2.39340461e-23 - art_sys_150: 4.01020588e-23 - art_sys_151: 4.01020588e-23 - art_sys_152: 2.70185656e-22 - art_sys_153: -3.00251303e-20 - art_sys_154: 1.15361124e-20 - art_sys_155: 1.76870877e-17 - art_sys_156: -1.41155374e-19 - art_sys_157: -1.19993484e-20 + art_sys_58: 0.0 + art_sys_59: 0.0 + art_sys_60: 0.0 + art_sys_61: 0.0 + art_sys_62: 0.0 + art_sys_63: 0.0 + art_sys_64: 0.0 + art_sys_65: 0.0 + art_sys_66: 0.0 + art_sys_67: 0.0 + art_sys_68: 0.0 + art_sys_69: 0.0 + art_sys_70: 0.0 + art_sys_71: 0.0 + art_sys_72: 5.99837050e-196 + art_sys_73: -3.71800787e-187 + art_sys_74: -1.15900209e-188 + art_sys_75: -5.69284586e-73 + art_sys_76: -6.91420344e-06 + art_sys_77: 4.43448108e-05 + art_sys_78: -1.05908136e-04 + art_sys_79: 3.13080204e-24 + art_sys_80: -6.09551521e-05 + art_sys_81: -1.39709990e-23 + art_sys_82: 4.09895785e-25 + art_sys_83: 9.06624040e-04 + art_sys_84: -1.49866755e-03 + art_sys_85: -4.42117708e-03 + art_sys_86: -2.44412873e-03 + art_sys_87: 1.43213684e-21 + art_sys_88: 1.60492907e-21 + art_sys_89: -7.78731473e-03 + art_sys_90: -1.47776390e-20 + art_sys_91: -6.08047885e-22 + art_sys_92: 2.61815222e-03 + art_sys_93: 1.63842154e-02 + art_sys_94: 1.84553559e-21 + art_sys_95: -1.01428912e-20 + art_sys_96: -8.07501871e-21 + art_sys_97: -5.10293571e-21 + art_sys_98: 1.90016431e-20 + art_sys_99: 9.55860707e-21 + art_sys_100: 7.49226035e-21 + art_sys_101: 5.01076833e-21 + art_sys_102: -7.64708996e-22 + art_sys_103: -2.94648637e-21 + art_sys_104: -6.43052869e-21 + art_sys_105: 4.58532746e-21 + art_sys_106: 5.36662208e-21 + art_sys_107: -1.32732143e-21 + art_sys_108: 1.20189798e-21 + art_sys_109: -8.39936303e-21 + art_sys_110: 2.54520922e-21 + art_sys_111: -3.41084768e-22 + art_sys_112: 4.41712181e-21 + art_sys_113: -2.29476957e-22 + art_sys_114: 6.09414961e-21 + art_sys_115: -5.04270350e-23 + art_sys_116: -4.50871076e-21 + art_sys_117: 7.05679642e-22 + art_sys_118: -1.26460476e-21 + art_sys_119: 4.33722202e-22 + art_sys_120: 1.76059656e-21 + art_sys_121: 7.29015429e-23 + art_sys_122: -5.73311180e-22 + art_sys_123: 1.70057763e-21 + art_sys_124: -1.75882741e-21 + art_sys_125: 1.10543725e-22 + art_sys_126: -2.81678491e-22 + art_sys_127: -9.76909247e-23 + art_sys_128: 6.50100302e-22 + art_sys_129: -1.37821274e-22 + art_sys_130: -9.01190067e-22 + art_sys_131: 4.64777238e-22 + art_sys_132: 7.54458456e-22 + art_sys_133: -5.80393505e-22 + art_sys_134: 8.12533447e-22 + art_sys_135: -3.21250691e-22 + art_sys_136: -6.53692972e-21 + art_sys_137: 2.15122054e-22 + art_sys_138: 1.85359493e-22 + art_sys_139: -3.00908187e-23 + art_sys_140: -6.05067894e-21 + art_sys_141: -3.69509671e-24 + art_sys_142: -3.34368112e-22 + art_sys_143: 6.00049809e-25 + art_sys_144: 3.20621588e-21 + art_sys_145: -3.32480362e-22 + art_sys_146: 4.93107975e-23 + art_sys_147: -9.38235096e-22 + art_sys_148: -2.14594748e-20 + art_sys_149: 1.20008860e-22 + art_sys_150: -2.29528597e-21 + art_sys_151: -1.49222650e-21 + art_sys_152: 2.40783798e-19 + art_sys_153: 1.68962661e-22 + art_sys_154: 4.32369714e-23 + art_sys_155: -6.41498751e-20 + art_sys_156: 0.0 + art_sys_157: -2.55217080e-25 art_sys_158: -0.0 - art_sys_159: -7.01497609e-23 - art_sys_160: 2.34943071e-23 - art_sys_161: 7.58667072e-23 - art_sys_162: -2.37186465e-23 - art_sys_163: -5.92281969e-24 - art_sys_164: 7.64883808e-22 - art_sys_165: 3.80787836e-22 - art_sys_166: 7.78731473e-03 - art_sys_167: 2.61815222e-03 - art_sys_168: 1.63842154e-02 - art_sys_169: 3.06116706e-02 - art_sys_170: -5.91395387e-03 - art_sys_171: 4.61418038e-03 - art_sys_172: 1.83762673e-04 - art_sys_173: -5.75051615e-05 - art_sys_174: -2.31981897e-05 - art_sys_175: -1.59599161e-15 - art_sys_176: -7.16976572e-08 - art_sys_177: -2.32751474e-08 - art_sys_178: 1.05598498e-08 - art_sys_179: -2.70366399e-09 - art_sys_180: 5.96286168e-10 - art_sys_181: -1.14402128e-10 + art_sys_159: 4.30521295e-23 + art_sys_160: -2.37075766e-20 + art_sys_161: -1.87404274e-23 + art_sys_162: -1.87404274e-23 + art_sys_163: 6.54815008e-21 + art_sys_164: 6.54815008e-21 + art_sys_165: 1.41154962e-19 + art_sys_166: 1.19993422e-20 + art_sys_167: 0.0 + art_sys_168: 3.06116706e-02 + art_sys_169: 5.91395387e-03 + art_sys_170: 4.61418038e-03 + art_sys_171: -1.83762673e-04 + art_sys_172: -5.75051615e-05 + art_sys_173: -2.31981897e-05 + art_sys_174: 7.16976572e-08 + art_sys_175: 2.32751474e-08 + art_sys_176: -1.05598498e-08 + art_sys_177: 5.96286168e-10 + art_sys_178: -1.14402128e-10 + art_sys_179: -1.59599162e-15 + art_sys_180: -1.76870870e-17 + art_sys_181: 2.70366399e-09 art_sys_182: -2.08563655e-11 art_sys_183: 3.19627515e-12 art_sys_184: -5.40075035e-13 - art_sys_185: 5.09840259e-14 + art_sys_185: -5.09840259e-14 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -47438,134 +47438,134 @@ bins: art_sys_55: 0.0 art_sys_56: 0.0 art_sys_57: 0.0 - art_sys_58: 1.69248363e-303 - art_sys_59: -3.57477309e-224 - art_sys_60: -3.92410791e-220 - art_sys_61: 2.32697569e-217 - art_sys_62: -1.15033251e-211 - art_sys_63: -1.77963087e-202 - art_sys_64: 5.47404215e-204 - art_sys_65: -5.92677503e-77 - art_sys_66: -1.10717245e-64 - art_sys_67: 4.09419564e-61 - art_sys_68: 5.40304159e-59 - art_sys_69: 7.05438021e-45 - art_sys_70: -1.54705496e-47 - art_sys_71: 1.77466982e-41 - art_sys_72: 1.16699835e-28 - art_sys_73: -7.76712415e-07 - art_sys_74: 3.81866279e-06 - art_sys_75: -8.41035134e-06 - art_sys_76: -8.63016215e-25 - art_sys_77: -2.84107154e-26 - art_sys_78: 2.30359785e-26 - art_sys_79: 6.31672737e-08 - art_sys_80: -3.70380781e-25 - art_sys_81: 1.10360371e-04 - art_sys_82: -7.19439318e-05 - art_sys_83: 7.95152647e-22 - art_sys_84: 4.47231162e-04 - art_sys_85: 4.65266960e-04 - art_sys_86: 3.06073479e-22 - art_sys_87: 2.26188288e-23 - art_sys_88: -1.16794105e-22 - art_sys_89: -1.75252835e-23 - art_sys_90: 4.03676170e-23 - art_sys_91: 3.80988944e-23 - art_sys_92: -4.72956997e-23 - art_sys_93: -2.82792580e-23 - art_sys_94: -1.58358884e-23 - art_sys_95: 3.88279596e-23 - art_sys_96: 8.43192000e-23 - art_sys_97: -6.92494601e-24 - art_sys_98: 3.61168141e-23 - art_sys_99: 4.16289982e-24 - art_sys_100: 3.64186091e-24 - art_sys_101: -8.87605018e-24 - art_sys_102: -2.02063491e-24 - art_sys_103: 5.04387072e-24 - art_sys_104: -1.94359984e-24 - art_sys_105: -5.80214782e-24 - art_sys_106: 3.81154458e-24 - art_sys_107: 3.12017648e-23 - art_sys_108: 1.79432789e-24 - art_sys_109: 2.65564940e-23 - art_sys_110: 1.87813567e-23 - art_sys_111: 5.43986372e-24 - art_sys_112: 9.58648285e-24 - art_sys_113: 1.82975513e-23 - art_sys_114: 7.41477180e-25 - art_sys_115: 3.32532809e-24 - art_sys_116: 3.55321468e-24 - art_sys_117: 1.27887790e-24 - art_sys_118: -5.07943282e-24 - art_sys_119: -7.70070395e-25 - art_sys_120: 2.01398524e-24 - art_sys_121: -4.20998848e-25 - art_sys_122: -1.49538108e-25 - art_sys_123: -2.72275099e-25 - art_sys_124: 1.19858686e-24 - art_sys_125: 6.08769622e-25 - art_sys_126: -1.23260343e-24 - art_sys_127: -6.00183185e-25 - art_sys_128: 1.74407906e-25 - art_sys_129: -8.21918063e-25 - art_sys_130: -2.32125679e-25 - art_sys_131: -3.42970823e-25 - art_sys_132: 3.17065328e-26 - art_sys_133: 7.46735298e-25 - art_sys_134: -1.55605429e-21 - art_sys_135: -1.33155920e-25 - art_sys_136: 4.85565591e-26 - art_sys_137: 4.53248732e-22 - art_sys_138: 1.56579944e-25 - art_sys_139: -5.24576328e-25 - art_sys_140: -1.69338735e-24 - art_sys_141: 1.37852156e-24 - art_sys_142: 3.81912120e-25 - art_sys_143: 2.64334088e-20 - art_sys_144: -3.05370976e-19 - art_sys_145: -4.05599133e-20 - art_sys_146: -0.0 - art_sys_147: -4.14011538e-21 - art_sys_148: -1.47172831e-23 - art_sys_149: -1.47172831e-23 - art_sys_150: -4.27925900e-23 - art_sys_151: -4.27925900e-23 - art_sys_152: -2.29195665e-22 - art_sys_153: 2.43212659e-20 - art_sys_154: -9.21801926e-21 - art_sys_155: -6.11277105e-17 - art_sys_156: 6.04476398e-19 - art_sys_157: 5.07699846e-20 - art_sys_158: 0.0 - art_sys_159: -9.36888273e-24 - art_sys_160: 4.02422264e-24 - art_sys_161: 1.30329761e-23 - art_sys_162: -3.11262347e-24 - art_sys_163: -3.32715584e-25 - art_sys_164: -8.87544623e-23 - art_sys_165: -1.63118487e-22 - art_sys_166: -1.95598560e-03 - art_sys_167: 7.37817817e-03 - art_sys_168: -4.98788088e-03 - art_sys_169: 1.33094888e-02 - art_sys_170: 1.89645824e-02 - art_sys_171: -6.98784270e-03 - art_sys_172: -7.31921280e-04 - art_sys_173: 1.68671491e-04 - art_sys_174: 7.83554807e-05 - art_sys_175: 6.66388695e-15 - art_sys_176: 4.43163895e-07 - art_sys_177: 8.44264841e-08 - art_sys_178: -4.85015249e-08 - art_sys_179: 1.19148186e-08 - art_sys_180: -2.43968037e-09 - art_sys_181: 5.16511018e-10 + art_sys_58: 0.0 + art_sys_59: 0.0 + art_sys_60: 0.0 + art_sys_61: 0.0 + art_sys_62: 0.0 + art_sys_63: 0.0 + art_sys_64: 0.0 + art_sys_65: 0.0 + art_sys_66: 0.0 + art_sys_67: 0.0 + art_sys_68: 0.0 + art_sys_69: 0.0 + art_sys_70: 0.0 + art_sys_71: 0.0 + art_sys_72: 6.73830904e-197 + art_sys_73: -4.17664864e-188 + art_sys_74: -1.30197263e-189 + art_sys_75: -6.39510263e-74 + art_sys_76: -7.76712415e-07 + art_sys_77: 3.81866279e-06 + art_sys_78: -8.41035134e-06 + art_sys_79: 8.68462633e-26 + art_sys_80: -6.31672737e-08 + art_sys_81: 5.93502560e-26 + art_sys_82: 3.26159914e-26 + art_sys_83: 1.10360371e-04 + art_sys_84: 7.19439318e-05 + art_sys_85: -4.47231162e-04 + art_sys_86: -4.65266960e-04 + art_sys_87: 6.30546897e-22 + art_sys_88: 2.87755930e-22 + art_sys_89: 1.95598560e-03 + art_sys_90: 3.95753674e-21 + art_sys_91: 1.07548749e-21 + art_sys_92: 7.37817817e-03 + art_sys_93: -4.98788088e-03 + art_sys_94: -1.84008076e-21 + art_sys_95: 7.38738389e-21 + art_sys_96: 2.36378979e-21 + art_sys_97: 4.26272236e-22 + art_sys_98: -2.94107440e-21 + art_sys_99: -4.41628661e-21 + art_sys_100: 1.55550859e-21 + art_sys_101: -8.55698076e-22 + art_sys_102: -9.32358219e-22 + art_sys_103: 1.67755354e-21 + art_sys_104: 1.28837472e-21 + art_sys_105: -4.99018671e-22 + art_sys_106: -1.67892588e-21 + art_sys_107: -2.44598748e-21 + art_sys_108: 4.93134638e-22 + art_sys_109: 2.76485628e-21 + art_sys_110: -2.12464058e-21 + art_sys_111: -3.49713549e-22 + art_sys_112: -1.31776177e-21 + art_sys_113: -3.74810397e-22 + art_sys_114: -4.05054344e-21 + art_sys_115: -8.90384805e-22 + art_sys_116: 1.73532080e-22 + art_sys_117: 8.34928477e-22 + art_sys_118: -6.69628318e-23 + art_sys_119: -2.03113728e-22 + art_sys_120: 3.03813061e-22 + art_sys_121: 7.01516501e-22 + art_sys_122: 9.83712808e-22 + art_sys_123: 1.74398956e-22 + art_sys_124: 8.07902017e-22 + art_sys_125: 1.01566819e-22 + art_sys_126: -3.55554784e-22 + art_sys_127: -4.26376293e-22 + art_sys_128: -2.44449340e-22 + art_sys_129: -6.33704343e-22 + art_sys_130: -2.83761959e-22 + art_sys_131: 7.75898097e-22 + art_sys_132: -2.83905937e-23 + art_sys_133: 2.12635626e-22 + art_sys_134: -2.10133004e-22 + art_sys_135: 1.57833550e-22 + art_sys_136: 1.57496888e-21 + art_sys_137: -4.78836170e-23 + art_sys_138: -9.91342366e-23 + art_sys_139: -2.12306520e-23 + art_sys_140: -1.73831784e-21 + art_sys_141: -1.40152416e-22 + art_sys_142: 5.93055129e-23 + art_sys_143: -3.51192963e-24 + art_sys_144: -4.23878581e-22 + art_sys_145: 6.89379281e-25 + art_sys_146: -5.48027721e-22 + art_sys_147: 1.23467234e-21 + art_sys_148: 2.13159072e-20 + art_sys_149: -6.89862807e-23 + art_sys_150: -1.22291201e-21 + art_sys_151: -2.22088161e-22 + art_sys_152: -1.84102971e-19 + art_sys_153: -2.03439881e-22 + art_sys_154: -1.07753986e-23 + art_sys_155: 4.85247968e-20 + art_sys_156: -0.0 + art_sys_157: -8.98991647e-24 + art_sys_158: -0.0 + art_sys_159: -1.80306932e-23 + art_sys_160: 1.89539543e-20 + art_sys_161: -5.43286246e-24 + art_sys_162: -5.43286246e-24 + art_sys_163: -4.96717027e-21 + art_sys_164: -4.96717027e-21 + art_sys_165: -6.04475067e-19 + art_sys_166: -5.07699641e-20 + art_sys_167: -0.0 + art_sys_168: 1.33094888e-02 + art_sys_169: -1.89645824e-02 + art_sys_170: -6.98784270e-03 + art_sys_171: 7.31921280e-04 + art_sys_172: 1.68671491e-04 + art_sys_173: 7.83554807e-05 + art_sys_174: -4.43163895e-07 + art_sys_175: -8.44264841e-08 + art_sys_176: 4.85015249e-08 + art_sys_177: -2.43968037e-09 + art_sys_178: 5.16511018e-10 + art_sys_179: 6.66388699e-15 + art_sys_180: 6.11277083e-17 + art_sys_181: -1.19148186e-08 art_sys_182: 8.54434190e-11 art_sys_183: -1.37911344e-11 art_sys_184: 2.30152619e-12 - art_sys_185: -2.21591861e-13 + art_sys_185: 2.21591861e-13 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -47729,134 +47729,134 @@ bins: art_sys_55: 0.0 art_sys_56: 0.0 art_sys_57: 0.0 - art_sys_58: 8.58737501e-305 - art_sys_59: -1.81367197e-225 - art_sys_60: -1.99090805e-221 - art_sys_61: 1.18059818e-218 - art_sys_62: -5.83624686e-213 - art_sys_63: -9.02901118e-204 - art_sys_64: 2.77727189e-205 - art_sys_65: -3.00696728e-78 - art_sys_66: -5.61727298e-66 - art_sys_67: 2.07720257e-62 - art_sys_68: 2.74124953e-60 - art_sys_69: 3.57906120e-46 - art_sys_70: -7.84903025e-49 - art_sys_71: 9.00384118e-43 - art_sys_72: 5.92080151e-30 - art_sys_73: -3.94067400e-08 - art_sys_74: 3.49835555e-07 - art_sys_75: -5.48509185e-07 - art_sys_76: -6.03433856e-26 - art_sys_77: -1.92098447e-27 - art_sys_78: 2.08930370e-27 - art_sys_79: -9.95029366e-07 - art_sys_80: 2.08704977e-25 - art_sys_81: -1.05272557e-05 - art_sys_82: -6.42413964e-05 - art_sys_83: -1.37729297e-22 - art_sys_84: -9.58745176e-05 - art_sys_85: -4.28592571e-05 - art_sys_86: -5.48859869e-23 - art_sys_87: 3.82077488e-24 - art_sys_88: 1.61465973e-23 - art_sys_89: 8.35917107e-24 - art_sys_90: -1.10911549e-24 - art_sys_91: -6.45223939e-24 - art_sys_92: 4.91256929e-24 - art_sys_93: -1.41736099e-26 - art_sys_94: 1.47026826e-24 - art_sys_95: -7.13226773e-24 - art_sys_96: -1.32444174e-23 - art_sys_97: 9.12064735e-25 - art_sys_98: -3.72570336e-24 - art_sys_99: 5.57795550e-25 - art_sys_100: -4.11552458e-25 - art_sys_101: 2.08533266e-24 - art_sys_102: 5.10904055e-25 - art_sys_103: -7.18109088e-25 - art_sys_104: -1.69575843e-25 - art_sys_105: 1.74268040e-24 - art_sys_106: -3.57954453e-25 - art_sys_107: -5.67602663e-24 - art_sys_108: -3.64118770e-25 - art_sys_109: -4.60350132e-24 - art_sys_110: -2.92895175e-24 - art_sys_111: -6.54589221e-25 - art_sys_112: -1.87127878e-24 - art_sys_113: -1.30079606e-24 - art_sys_114: 2.59873758e-25 - art_sys_115: 3.03556776e-25 - art_sys_116: -2.25753542e-25 - art_sys_117: -3.16063586e-26 - art_sys_118: 7.48907110e-25 - art_sys_119: 1.17794860e-25 - art_sys_120: -3.35244726e-25 - art_sys_121: 2.34181154e-25 - art_sys_122: -9.19722689e-26 - art_sys_123: 7.58824196e-26 - art_sys_124: -1.68204005e-25 - art_sys_125: -6.07623279e-26 - art_sys_126: -8.41637749e-26 - art_sys_127: 1.26707327e-25 - art_sys_128: -1.00951652e-25 - art_sys_129: 2.46101190e-25 - art_sys_130: -3.44245036e-26 - art_sys_131: 4.75428945e-27 - art_sys_132: -6.07625125e-26 - art_sys_133: -7.82811383e-26 - art_sys_134: -1.42873985e-21 - art_sys_135: 8.83069887e-27 - art_sys_136: -3.99920003e-26 - art_sys_137: 1.08853659e-21 - art_sys_138: -3.89815382e-27 - art_sys_139: 1.05001264e-25 - art_sys_140: 2.32103318e-24 - art_sys_141: -1.86042182e-24 - art_sys_142: -4.67364593e-24 - art_sys_143: -2.07468864e-20 - art_sys_144: 2.40836836e-19 - art_sys_145: 3.18592385e-20 - art_sys_146: -0.0 - art_sys_147: 3.57065718e-21 - art_sys_148: 3.77882309e-23 - art_sys_149: 3.77882309e-23 - art_sys_150: 4.29925339e-23 - art_sys_151: 4.29925339e-23 - art_sys_152: 2.20710454e-22 - art_sys_153: -1.87979313e-20 - art_sys_154: 7.24659483e-21 - art_sys_155: 2.50661484e-16 - art_sys_156: -2.11556850e-18 - art_sys_157: -1.77817929e-19 - art_sys_158: -0.0 - art_sys_159: 1.54768452e-24 - art_sys_160: -6.88237687e-25 - art_sys_161: -1.39951890e-24 - art_sys_162: 4.91237376e-25 - art_sys_163: 3.36525715e-25 - art_sys_164: -6.63516718e-23 - art_sys_165: -3.72409971e-23 - art_sys_166: -4.86403726e-04 - art_sys_167: -2.81838063e-04 - art_sys_168: -1.41387088e-03 - art_sys_169: -4.24917491e-03 - art_sys_170: 1.35293148e-02 - art_sys_171: 1.21974535e-02 - art_sys_172: 5.08853070e-04 - art_sys_173: -4.43501778e-04 - art_sys_174: -1.63507840e-04 - art_sys_175: -2.32481175e-14 - art_sys_176: -1.11754290e-06 - art_sys_177: -3.42007728e-07 - art_sys_178: 1.45805218e-07 - art_sys_179: -4.12987994e-08 - art_sys_180: 8.37977080e-09 - art_sys_181: -1.69855475e-09 + art_sys_58: 0.0 + art_sys_59: 0.0 + art_sys_60: 0.0 + art_sys_61: 0.0 + art_sys_62: 0.0 + art_sys_63: 0.0 + art_sys_64: 0.0 + art_sys_65: 0.0 + art_sys_66: 0.0 + art_sys_67: 0.0 + art_sys_68: 0.0 + art_sys_69: 0.0 + art_sys_70: 0.0 + art_sys_71: 0.0 + art_sys_72: 3.41871101e-198 + art_sys_73: -2.11904123e-189 + art_sys_74: -6.60561598e-191 + art_sys_75: -3.24457471e-75 + art_sys_76: -3.94067400e-08 + art_sys_77: 3.49835555e-07 + art_sys_78: -5.48509185e-07 + art_sys_79: -4.01596505e-27 + art_sys_80: 9.95029366e-07 + art_sys_81: 2.49174468e-25 + art_sys_82: 2.12221564e-27 + art_sys_83: -1.05272557e-05 + art_sys_84: 6.42413964e-05 + art_sys_85: 9.58745176e-05 + art_sys_86: 4.28592571e-05 + art_sys_87: 1.64224914e-24 + art_sys_88: -2.05442439e-23 + art_sys_89: 4.86403726e-04 + art_sys_90: 9.42004853e-22 + art_sys_91: 2.83717441e-23 + art_sys_92: -2.81838063e-04 + art_sys_93: -1.41387088e-03 + art_sys_94: -3.38503195e-22 + art_sys_95: 7.82694677e-22 + art_sys_96: 6.65649079e-22 + art_sys_97: 5.26400962e-22 + art_sys_98: -1.63512130e-21 + art_sys_99: -7.73102248e-22 + art_sys_100: -6.51911886e-22 + art_sys_101: -4.36022308e-22 + art_sys_102: 9.64713615e-23 + art_sys_103: 2.25046314e-22 + art_sys_104: 5.25314371e-22 + art_sys_105: -4.34331203e-22 + art_sys_106: -4.22839093e-22 + art_sys_107: 6.72679178e-23 + art_sys_108: -1.42599196e-23 + art_sys_109: 7.23959948e-22 + art_sys_110: -1.74354552e-22 + art_sys_111: 2.70204750e-23 + art_sys_112: -3.85372891e-22 + art_sys_113: 2.46386172e-23 + art_sys_114: -4.59595623e-22 + art_sys_115: 1.30765004e-23 + art_sys_116: 3.85559218e-22 + art_sys_117: -9.16146432e-23 + art_sys_118: 1.15274247e-22 + art_sys_119: -2.99408361e-23 + art_sys_120: -1.51647798e-22 + art_sys_121: -1.33894506e-23 + art_sys_122: 5.07264708e-23 + art_sys_123: -1.50344328e-22 + art_sys_124: 1.53485170e-22 + art_sys_125: -1.21331951e-23 + art_sys_126: 2.22719730e-23 + art_sys_127: 1.72480570e-23 + art_sys_128: -5.08326280e-23 + art_sys_129: 2.66664342e-24 + art_sys_130: 8.21633905e-23 + art_sys_131: 3.64452798e-22 + art_sys_132: -6.62034478e-23 + art_sys_133: 4.79209366e-23 + art_sys_134: -6.62932553e-23 + art_sys_135: 2.74228523e-23 + art_sys_136: 3.23876005e-22 + art_sys_137: -1.84111250e-23 + art_sys_138: -1.59888491e-23 + art_sys_139: -2.17303857e-24 + art_sys_140: -2.66726158e-21 + art_sys_141: 2.33707090e-24 + art_sys_142: 2.87459235e-23 + art_sys_143: -4.30832855e-24 + art_sys_144: 1.02200102e-21 + art_sys_145: 3.03631051e-23 + art_sys_146: -2.44074405e-22 + art_sys_147: 7.62853923e-23 + art_sys_148: -1.56638096e-20 + art_sys_149: -7.25289716e-24 + art_sys_150: -2.00835422e-22 + art_sys_151: 1.33375088e-22 + art_sys_152: 1.45279973e-19 + art_sys_153: -1.99893640e-24 + art_sys_154: -3.80933367e-24 + art_sys_155: -3.95400655e-20 + art_sys_156: 0.0 + art_sys_157: -6.16332393e-24 + art_sys_158: 0.0 + art_sys_159: 4.77171758e-23 + art_sys_160: -1.50291675e-20 + art_sys_161: -2.18743749e-23 + art_sys_162: -2.18743749e-23 + art_sys_163: 4.01524833e-21 + art_sys_164: 4.01524833e-21 + art_sys_165: 2.11556945e-18 + art_sys_166: 1.77817946e-19 + art_sys_167: 0.0 + art_sys_168: -4.24917491e-03 + art_sys_169: -1.35293148e-02 + art_sys_170: 1.21974535e-02 + art_sys_171: -5.08853070e-04 + art_sys_172: -4.43501778e-04 + art_sys_173: -1.63507840e-04 + art_sys_174: 1.11754290e-06 + art_sys_175: 3.42007728e-07 + art_sys_176: -1.45805218e-07 + art_sys_177: 8.37977080e-09 + art_sys_178: -1.69855475e-09 + art_sys_179: -2.32481175e-14 + art_sys_180: -2.50661486e-16 + art_sys_181: 4.12987994e-08 art_sys_182: -3.06271488e-10 art_sys_183: 4.61445893e-11 art_sys_184: -8.02500424e-12 - art_sys_185: 7.32535387e-13 + art_sys_185: -7.32535387e-13 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -48020,134 +48020,134 @@ bins: art_sys_55: 0.0 art_sys_56: 0.0 art_sys_57: 0.0 - art_sys_58: -3.25830656e-307 - art_sys_59: 6.90696963e-228 - art_sys_60: 7.58193415e-224 - art_sys_61: -4.49604773e-221 - art_sys_62: 2.22260588e-215 - art_sys_63: 3.43849974e-206 - art_sys_64: -1.05766274e-207 - art_sys_65: 1.14513722e-80 - art_sys_66: 2.13921461e-68 - art_sys_67: -7.91056820e-65 - art_sys_68: -1.04394447e-62 - art_sys_69: -1.36300658e-48 - art_sys_70: 2.98913018e-51 - art_sys_71: -3.42891447e-45 - art_sys_72: -2.25480677e-32 - art_sys_73: 1.50071884e-10 - art_sys_74: 3.55595890e-08 - art_sys_75: -5.05408703e-08 - art_sys_76: -5.75719111e-27 - art_sys_77: -1.79297397e-28 - art_sys_78: 2.11062152e-28 - art_sys_79: -1.24110762e-07 - art_sys_80: 2.66260886e-26 - art_sys_81: -4.11028600e-06 - art_sys_82: -1.01035468e-05 - art_sys_83: -5.30820047e-23 - art_sys_84: -2.79553589e-05 - art_sys_85: -2.01579474e-05 - art_sys_86: -1.86822109e-23 - art_sys_87: 9.22150243e-26 - art_sys_88: 6.06293468e-24 - art_sys_89: 1.80710939e-24 - art_sys_90: -1.29108469e-24 - art_sys_91: -2.11757806e-24 - art_sys_92: 2.16797429e-24 - art_sys_93: 7.64820503e-25 - art_sys_94: 6.85370961e-25 - art_sys_95: -2.18639823e-24 - art_sys_96: -4.72549078e-24 - art_sys_97: 3.44708617e-25 - art_sys_98: -1.62927044e-24 - art_sys_99: -2.17494684e-27 - art_sys_100: -1.60202517e-25 - art_sys_101: 5.98609030e-25 - art_sys_102: 1.44309378e-25 - art_sys_103: -2.68794035e-25 - art_sys_104: 3.85008262e-26 - art_sys_105: 4.54197543e-25 - art_sys_106: -1.59469350e-25 - art_sys_107: -1.80376710e-24 - art_sys_108: -1.09852345e-25 - art_sys_109: -1.53460398e-24 - art_sys_110: -1.01313236e-24 - art_sys_111: -2.61733578e-25 - art_sys_112: -5.84549874e-25 - art_sys_113: -7.30690867e-25 - art_sys_114: 3.14104539e-26 - art_sys_115: -4.42719598e-26 - art_sys_116: -1.21746186e-25 - art_sys_117: -3.56693874e-26 - art_sys_118: 2.68551761e-25 - art_sys_119: 4.05147863e-26 - art_sys_120: -1.14909142e-25 - art_sys_121: 5.67151109e-26 - art_sys_122: -1.40894646e-26 - art_sys_123: 2.01043075e-26 - art_sys_124: -6.22188237e-26 - art_sys_125: -2.62153010e-26 - art_sys_126: 1.78599192e-26 - art_sys_127: 3.56426680e-26 - art_sys_128: -1.66971233e-26 - art_sys_129: 6.54860046e-26 - art_sys_130: 1.88882269e-27 - art_sys_131: 9.21380448e-27 - art_sys_132: -1.20208514e-26 - art_sys_133: -3.25086384e-26 - art_sys_134: 3.20492927e-24 - art_sys_135: 5.28170711e-27 - art_sys_136: -6.89637245e-27 - art_sys_137: -1.64033069e-22 - art_sys_138: -5.09814955e-27 - art_sys_139: 3.20590813e-26 - art_sys_140: 4.71068674e-25 - art_sys_141: -1.02586405e-24 - art_sys_142: -9.74877120e-24 - art_sys_143: 1.92158098e-20 - art_sys_144: -2.18669129e-19 - art_sys_145: -3.13118712e-20 - art_sys_146: -0.0 - art_sys_147: -2.91355197e-21 - art_sys_148: -9.17072824e-23 - art_sys_149: -9.17072824e-23 - art_sys_150: -1.05639090e-23 - art_sys_151: -1.05639090e-23 - art_sys_152: -2.03850773e-22 - art_sys_153: 1.78915423e-20 - art_sys_154: -6.56866847e-21 - art_sys_155: -9.11092514e-16 - art_sys_156: 7.82471168e-18 - art_sys_157: 6.68932783e-19 - art_sys_158: 0.0 - art_sys_159: 5.25801542e-25 - art_sys_160: -2.41892566e-25 - art_sys_161: -7.02619829e-25 - art_sys_162: 1.66943031e-25 - art_sys_163: 4.24013730e-26 - art_sys_164: 4.44805702e-24 - art_sys_165: -1.16644187e-23 - art_sys_166: 5.94528754e-05 - art_sys_167: -3.93034303e-04 - art_sys_168: 2.63341017e-04 - art_sys_169: -1.11801976e-03 - art_sys_170: -1.06805899e-03 - art_sys_171: 2.46177898e-03 - art_sys_172: -5.84891691e-03 - art_sys_173: 9.21494727e-04 - art_sys_174: 7.14400336e-04 - art_sys_175: 8.92605979e-14 - art_sys_176: 3.64992991e-06 - art_sys_177: 1.04922352e-06 - art_sys_178: -5.67304433e-07 - art_sys_179: 1.42350486e-07 - art_sys_180: -3.19784040e-08 - art_sys_181: 6.48768231e-09 + art_sys_58: 0.0 + art_sys_59: 0.0 + art_sys_60: 0.0 + art_sys_61: 0.0 + art_sys_62: 0.0 + art_sys_63: 0.0 + art_sys_64: 0.0 + art_sys_65: 0.0 + art_sys_66: 0.0 + art_sys_67: 0.0 + art_sys_68: 0.0 + art_sys_69: 0.0 + art_sys_70: 0.0 + art_sys_71: 0.0 + art_sys_72: -1.30171658e-200 + art_sys_73: 8.06851209e-192 + art_sys_74: 2.51517014e-193 + art_sys_75: 1.23562477e-77 + art_sys_76: 1.50071884e-10 + art_sys_77: 3.55595890e-08 + art_sys_78: -5.05408703e-08 + art_sys_79: 1.27764566e-27 + art_sys_80: 1.24110762e-07 + art_sys_81: 3.08723160e-26 + art_sys_82: 1.96224232e-28 + art_sys_83: -4.11028600e-06 + art_sys_84: 1.01035468e-05 + art_sys_85: 2.79553589e-05 + art_sys_86: 2.01579474e-05 + art_sys_87: -1.70917247e-23 + art_sys_88: -1.80784724e-23 + art_sys_89: -5.94528754e-05 + art_sys_90: -1.20671703e-22 + art_sys_91: -2.54616242e-23 + art_sys_92: -3.93034303e-04 + art_sys_93: 2.63341017e-04 + art_sys_94: 1.07749560e-22 + art_sys_95: -3.75175633e-22 + art_sys_96: -1.13158510e-22 + art_sys_97: -4.50714690e-23 + art_sys_98: 1.49991255e-22 + art_sys_99: 2.24390364e-22 + art_sys_100: -8.88462412e-23 + art_sys_101: 4.17010119e-23 + art_sys_102: 3.98527972e-23 + art_sys_103: -8.27041638e-23 + art_sys_104: -5.89967092e-23 + art_sys_105: 3.00402932e-23 + art_sys_106: 6.22488079e-23 + art_sys_107: 1.52242838e-22 + art_sys_108: -4.66432986e-23 + art_sys_109: -1.44182292e-22 + art_sys_110: 1.04447423e-22 + art_sys_111: 2.78404326e-23 + art_sys_112: 7.06311093e-23 + art_sys_113: 2.16334839e-23 + art_sys_114: 2.06093335e-22 + art_sys_115: 4.69310277e-23 + art_sys_116: -6.33449602e-24 + art_sys_117: -3.90312169e-23 + art_sys_118: 2.85107828e-24 + art_sys_119: 8.64187846e-24 + art_sys_120: -1.75635894e-23 + art_sys_121: -3.77684194e-23 + art_sys_122: -5.40525106e-23 + art_sys_123: -9.30613982e-24 + art_sys_124: -4.35382794e-23 + art_sys_125: -7.14670628e-24 + art_sys_126: 2.00923073e-23 + art_sys_127: 2.17899116e-23 + art_sys_128: 1.17967774e-23 + art_sys_129: 3.61150652e-23 + art_sys_130: 1.14810615e-23 + art_sys_131: -6.72366709e-23 + art_sys_132: 1.06739294e-24 + art_sys_133: -1.12369460e-23 + art_sys_134: 1.02817944e-23 + art_sys_135: -8.36696341e-24 + art_sys_136: 3.24824620e-22 + art_sys_137: 3.00754980e-24 + art_sys_138: 5.31128236e-24 + art_sys_139: -1.37903831e-24 + art_sys_140: 3.63110494e-22 + art_sys_141: 6.98030082e-24 + art_sys_142: -2.93437298e-24 + art_sys_143: -1.27513366e-25 + art_sys_144: 4.49861139e-22 + art_sys_145: -2.97376340e-25 + art_sys_146: 3.50010444e-23 + art_sys_147: -1.10629554e-21 + art_sys_148: 1.49275003e-20 + art_sys_149: 3.59111143e-24 + art_sys_150: 6.50171659e-23 + art_sys_151: -1.36038152e-22 + art_sys_152: -1.36343930e-19 + art_sys_153: 1.27805449e-22 + art_sys_154: 5.80677134e-25 + art_sys_155: 3.97079536e-20 + art_sys_156: -0.0 + art_sys_157: -4.22654836e-24 + art_sys_158: -0.0 + art_sys_159: 3.69144046e-23 + art_sys_160: 1.50831220e-20 + art_sys_161: 5.06000140e-24 + art_sys_162: 5.06000140e-24 + art_sys_163: -3.57188733e-21 + art_sys_164: -3.57188733e-21 + art_sys_165: -7.82471173e-18 + art_sys_166: -6.68932788e-19 + art_sys_167: -0.0 + art_sys_168: -1.11801976e-03 + art_sys_169: 1.06805899e-03 + art_sys_170: 2.46177898e-03 + art_sys_171: 5.84891691e-03 + art_sys_172: 9.21494727e-04 + art_sys_173: 7.14400336e-04 + art_sys_174: -3.64992991e-06 + art_sys_175: -1.04922352e-06 + art_sys_176: 5.67304433e-07 + art_sys_177: -3.19784040e-08 + art_sys_178: 6.48768231e-09 + art_sys_179: 8.92605978e-14 + art_sys_180: 9.11092514e-16 + art_sys_181: -1.42350486e-07 art_sys_182: 1.12475054e-09 art_sys_183: -1.82338313e-10 art_sys_184: 2.99810524e-11 - art_sys_185: -2.94929350e-12 + art_sys_185: 2.94929350e-12 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -48311,134 +48311,134 @@ bins: art_sys_55: 0.0 art_sys_56: 0.0 art_sys_57: 0.0 - art_sys_58: -2.33299251e-307 - art_sys_59: 4.93027681e-228 - art_sys_60: 5.41207449e-224 - art_sys_61: -3.20933218e-221 - art_sys_62: 1.58652243e-215 - art_sys_63: 2.45444188e-206 - art_sys_64: -7.54972201e-208 - art_sys_65: 8.17412489e-81 - art_sys_66: 1.52699669e-68 - art_sys_67: -5.64665713e-65 - art_sys_68: -7.45179909e-63 - art_sys_69: -9.72930213e-49 - art_sys_70: 2.13367647e-51 - art_sys_71: -2.44759970e-45 - art_sys_72: -1.60950774e-32 - art_sys_73: 1.07123086e-10 - art_sys_74: 3.33635311e-09 - art_sys_75: -5.83709522e-09 - art_sys_76: -6.37136901e-28 - art_sys_77: -2.02230068e-29 - art_sys_78: 1.98695542e-29 - art_sys_79: -7.54725820e-09 - art_sys_80: 1.48552968e-27 - art_sys_81: -5.02770125e-07 - art_sys_82: -9.45176410e-07 - art_sys_83: -2.94851612e-24 - art_sys_84: -3.14491946e-06 - art_sys_85: -2.12075160e-06 - art_sys_86: -1.87436242e-24 - art_sys_87: 8.12373668e-27 - art_sys_88: 6.42702919e-25 - art_sys_89: 2.15665625e-25 - art_sys_90: -1.33062555e-25 - art_sys_91: -2.34045594e-25 - art_sys_92: 2.24005192e-25 - art_sys_93: 7.94621607e-26 - art_sys_94: 7.26230146e-26 - art_sys_95: -2.53338321e-25 - art_sys_96: -4.78646487e-25 - art_sys_97: 3.69809905e-26 - art_sys_98: -1.72861425e-25 - art_sys_99: -2.51713860e-27 - art_sys_100: -1.90053355e-26 - art_sys_101: 6.35187994e-26 - art_sys_102: 1.54607429e-26 - art_sys_103: -2.75962914e-26 - art_sys_104: 1.33631485e-27 - art_sys_105: 4.99099567e-26 - art_sys_106: -1.76790974e-26 - art_sys_107: -1.97968682e-25 - art_sys_108: -1.22160433e-26 - art_sys_109: -1.61592582e-25 - art_sys_110: -1.08420176e-25 - art_sys_111: -2.75820286e-26 - art_sys_112: -6.26101740e-26 - art_sys_113: -7.53126213e-26 - art_sys_114: 2.46750490e-27 - art_sys_115: -3.20249607e-27 - art_sys_116: -1.53339297e-26 - art_sys_117: -4.64420873e-27 - art_sys_118: 2.84995431e-26 - art_sys_119: 4.55704106e-27 - art_sys_120: -1.20392900e-26 - art_sys_121: 5.33507432e-27 - art_sys_122: -1.16090723e-27 - art_sys_123: 2.21317993e-27 - art_sys_124: -6.62736023e-27 - art_sys_125: -2.94981461e-27 - art_sys_126: 2.13986823e-27 - art_sys_127: 4.30344534e-27 - art_sys_128: -2.25897087e-27 - art_sys_129: 6.94718748e-27 - art_sys_130: -4.00310137e-28 - art_sys_131: 1.10986087e-27 - art_sys_132: -1.20498180e-27 - art_sys_133: -3.36550509e-27 - art_sys_134: -2.45168771e-21 - art_sys_135: 5.11519645e-28 - art_sys_136: -2.12313494e-28 - art_sys_137: 5.55808369e-22 - art_sys_138: -5.08001194e-28 - art_sys_139: 2.82245541e-27 - art_sys_140: -3.03503300e-26 - art_sys_141: -1.06987131e-25 - art_sys_142: -1.63913796e-24 - art_sys_143: -1.23870486e-20 - art_sys_144: 1.70289405e-19 - art_sys_145: 2.19430577e-20 - art_sys_146: 0.0 - art_sys_147: 2.06440385e-21 - art_sys_148: 6.42788816e-24 - art_sys_149: 6.42788816e-24 - art_sys_150: 3.14880134e-23 - art_sys_151: 3.14880134e-23 - art_sys_152: 1.39589356e-22 - art_sys_153: -1.32814052e-20 - art_sys_154: 5.01347061e-21 - art_sys_155: 3.84860871e-15 - art_sys_156: -3.85140173e-17 - art_sys_157: -3.19028226e-18 - art_sys_158: -0.0 - art_sys_159: 5.55215120e-26 - art_sys_160: -2.45103056e-26 - art_sys_161: -6.37346254e-26 - art_sys_162: 1.83064425e-26 - art_sys_163: -3.73811752e-27 - art_sys_164: 3.18937797e-24 - art_sys_165: -7.15715760e-24 - art_sys_166: 2.11907003e-05 - art_sys_167: -1.30603949e-05 - art_sys_168: 7.89370340e-05 - art_sys_169: 3.04898453e-04 - art_sys_170: -9.63034362e-04 - art_sys_171: -1.14728062e-03 - art_sys_172: -1.98949264e-03 - art_sys_173: -3.73372631e-03 - art_sys_174: -1.11359116e-03 - art_sys_175: -4.14014743e-13 - art_sys_176: -2.82284227e-05 - art_sys_177: -4.85873134e-06 - art_sys_178: 2.88741766e-06 - art_sys_179: -7.34077655e-07 - art_sys_180: 1.49311697e-07 - art_sys_181: -3.15689476e-08 + art_sys_58: 0.0 + art_sys_59: 0.0 + art_sys_60: 0.0 + art_sys_61: 0.0 + art_sys_62: 0.0 + art_sys_63: 0.0 + art_sys_64: 0.0 + art_sys_65: 0.0 + art_sys_66: 0.0 + art_sys_67: 0.0 + art_sys_68: 0.0 + art_sys_69: 0.0 + art_sys_70: 0.0 + art_sys_71: 0.0 + art_sys_72: -9.29314649e-201 + art_sys_73: 5.76022967e-192 + art_sys_74: 1.79561702e-193 + art_sys_75: 8.82003575e-78 + art_sys_76: 1.07123086e-10 + art_sys_77: 3.33635311e-09 + art_sys_78: -5.83709522e-09 + art_sys_79: 1.56711368e-28 + art_sys_80: 7.54725820e-09 + art_sys_81: 1.89300754e-27 + art_sys_82: 2.28145454e-29 + art_sys_83: -5.02770125e-07 + art_sys_84: 9.45176410e-07 + art_sys_85: 3.14491946e-06 + art_sys_86: 2.12075160e-06 + art_sys_87: -1.77408183e-24 + art_sys_88: -3.04581857e-24 + art_sys_89: -2.11907003e-05 + art_sys_90: -4.16888621e-23 + art_sys_91: -3.68825835e-24 + art_sys_92: -1.30603949e-05 + art_sys_93: 7.89370340e-05 + art_sys_94: 1.79257100e-23 + art_sys_95: -5.68313300e-23 + art_sys_96: -3.56600664e-23 + art_sys_97: -2.76900411e-23 + art_sys_98: 8.08882947e-23 + art_sys_99: 4.75017458e-23 + art_sys_100: 2.22773073e-23 + art_sys_101: 2.17012872e-23 + art_sys_102: -2.85178144e-24 + art_sys_103: -1.46933279e-23 + art_sys_104: -2.60533575e-23 + art_sys_105: 2.15695832e-23 + art_sys_106: 2.09691658e-23 + art_sys_107: 7.11276298e-24 + art_sys_108: 1.71940278e-24 + art_sys_109: -4.09834812e-23 + art_sys_110: 1.35480649e-23 + art_sys_111: 9.41318163e-25 + art_sys_112: 2.15299262e-23 + art_sys_113: -3.96234216e-25 + art_sys_114: 3.29797389e-23 + art_sys_115: 2.41170294e-24 + art_sys_116: -1.70502471e-23 + art_sys_117: 2.25489924e-24 + art_sys_118: -4.93825747e-24 + art_sys_119: 1.71370418e-24 + art_sys_120: 5.39216246e-24 + art_sys_121: -1.81614481e-24 + art_sys_122: -5.83202375e-24 + art_sys_123: 5.96954235e-24 + art_sys_124: -9.60793502e-24 + art_sys_125: 8.17274714e-26 + art_sys_126: 4.34994069e-25 + art_sys_127: 5.38154367e-25 + art_sys_128: 2.88377191e-24 + art_sys_129: 2.57995543e-24 + art_sys_130: -2.86687106e-24 + art_sys_131: -2.17695016e-23 + art_sys_132: 2.95807301e-24 + art_sys_133: -2.79509838e-24 + art_sys_134: 3.48291546e-24 + art_sys_135: -1.74381748e-24 + art_sys_136: 1.28327651e-21 + art_sys_137: 9.91688019e-25 + art_sys_138: 1.04979338e-24 + art_sys_139: 2.40708516e-25 + art_sys_140: 1.31013475e-23 + art_sys_141: 3.28152275e-25 + art_sys_142: -1.44045853e-24 + art_sys_143: 2.82922569e-25 + art_sys_144: -4.54485220e-22 + art_sys_145: -1.37040134e-24 + art_sys_146: 1.13433922e-23 + art_sys_147: 2.51115642e-21 + art_sys_148: -1.32195440e-20 + art_sys_149: 1.48277920e-24 + art_sys_150: -1.51580635e-22 + art_sys_151: -2.47474431e-22 + art_sys_152: 9.65964144e-20 + art_sys_153: 4.62585152e-23 + art_sys_154: 2.03643022e-25 + art_sys_155: -2.80672408e-20 + art_sys_156: -0.0 + art_sys_157: 5.97545037e-24 + art_sys_158: 0.0 + art_sys_159: -5.28493239e-23 + art_sys_160: -1.08851142e-20 + art_sys_161: 1.21972280e-23 + art_sys_162: 1.21972280e-23 + art_sys_163: 2.72134563e-21 + art_sys_164: 2.72134563e-21 + art_sys_165: 3.85140171e-17 + art_sys_166: 3.19028226e-18 + art_sys_167: 0.0 + art_sys_168: 3.04898453e-04 + art_sys_169: 9.63034362e-04 + art_sys_170: -1.14728062e-03 + art_sys_171: 1.98949264e-03 + art_sys_172: -3.73372631e-03 + art_sys_173: -1.11359116e-03 + art_sys_174: 2.82284227e-05 + art_sys_175: 4.85873134e-06 + art_sys_176: -2.88741766e-06 + art_sys_177: 1.49311697e-07 + art_sys_178: -3.15689476e-08 + art_sys_179: -4.14014743e-13 + art_sys_180: -3.84860871e-15 + art_sys_181: 7.34077655e-07 art_sys_182: -5.40164635e-09 art_sys_183: 8.39737807e-10 art_sys_184: -1.45109523e-10 - art_sys_185: 1.33933069e-11 + art_sys_185: -1.33933069e-11 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -48602,134 +48602,134 @@ bins: art_sys_55: 0.0 art_sys_56: 0.0 art_sys_57: 0.0 - art_sys_58: -3.15629182e-309 - art_sys_59: 6.68233535e-230 - art_sys_60: 7.33534812e-226 - art_sys_61: -4.34982349e-223 - art_sys_62: 2.15032042e-217 - art_sys_63: 3.32666996e-208 - art_sys_64: -1.02326454e-209 - art_sys_65: 1.10789408e-82 - art_sys_66: 2.06964124e-70 - art_sys_67: -7.65329392e-67 - art_sys_68: -1.00999241e-64 - art_sys_69: -1.31867771e-50 - art_sys_70: 2.89191513e-53 - art_sys_71: -3.31739638e-47 - art_sys_72: -2.18147401e-34 - art_sys_73: 1.45191118e-12 - art_sys_74: 2.22519756e-10 - art_sys_75: -4.58784486e-10 - art_sys_76: -4.84315829e-29 - art_sys_77: -1.56366604e-30 - art_sys_78: 1.33157360e-30 - art_sys_79: -3.10805926e-10 - art_sys_80: 5.11202071e-29 - art_sys_81: -3.40600854e-08 - art_sys_82: -7.43309308e-08 - art_sys_83: -3.22509804e-25 - art_sys_84: -1.93872712e-07 - art_sys_85: -2.90637597e-08 - art_sys_86: -2.47242055e-26 - art_sys_87: 8.02618990e-27 - art_sys_88: 1.79225276e-26 - art_sys_89: 2.01511851e-26 - art_sys_90: 2.87225534e-27 - art_sys_91: -1.13881433e-26 - art_sys_92: 2.45639021e-27 - art_sys_93: -3.05304156e-27 - art_sys_94: 1.19245795e-27 - art_sys_95: -1.30475741e-26 - art_sys_96: -7.96986481e-27 - art_sys_97: 1.22320662e-27 - art_sys_98: -3.44938630e-27 - art_sys_99: 5.35020424e-28 - art_sys_100: -1.12075806e-27 - art_sys_101: 4.41634754e-27 - art_sys_102: 9.60919740e-28 - art_sys_103: -4.97532295e-28 - art_sys_104: -1.44959919e-27 - art_sys_105: 3.18068207e-27 - art_sys_106: -5.79281994e-28 - art_sys_107: -9.65242615e-27 - art_sys_108: -6.83754064e-28 - art_sys_109: -5.37780791e-27 - art_sys_110: -4.31306807e-27 - art_sys_111: -6.21731473e-28 - art_sys_112: -2.58708531e-27 - art_sys_113: 8.52295819e-29 - art_sys_114: 2.12116403e-28 - art_sys_115: 1.35290256e-27 - art_sys_116: -7.43120106e-28 - art_sys_117: -2.48782253e-28 - art_sys_118: 8.83057082e-28 - art_sys_119: 2.31884789e-28 - art_sys_120: -3.63993862e-28 - art_sys_121: 1.32733336e-28 - art_sys_122: -5.51850397e-29 - art_sys_123: 1.99986640e-28 - art_sys_124: -2.05415680e-28 - art_sys_125: -1.16229696e-28 - art_sys_126: -2.04378151e-28 - art_sys_127: 3.53824467e-28 - art_sys_128: -2.79276070e-28 - art_sys_129: 3.76372233e-28 - art_sys_130: -1.80721524e-28 - art_sys_131: 2.63305296e-29 - art_sys_132: -8.59046458e-29 - art_sys_133: -2.23334365e-29 - art_sys_134: -4.90537518e-21 - art_sys_135: -1.05549078e-29 - art_sys_136: 5.25565855e-29 - art_sys_137: 8.27324654e-22 - art_sys_138: 1.84514104e-29 - art_sys_139: -1.81162950e-27 - art_sys_140: -2.98616489e-25 - art_sys_141: 8.28505260e-25 - art_sys_142: 8.64830543e-24 - art_sys_143: 1.03688232e-20 - art_sys_144: -1.28158771e-19 - art_sys_145: -1.74210139e-20 - art_sys_146: 0.0 - art_sys_147: -2.21987234e-21 - art_sys_148: 5.76458568e-23 - art_sys_149: 5.76458568e-23 - art_sys_150: -4.04585853e-23 - art_sys_151: -4.04585853e-23 - art_sys_152: -7.65046584e-23 - art_sys_153: 9.27300838e-21 - art_sys_154: -3.52097761e-21 - art_sys_155: -1.49301349e-14 - art_sys_156: 1.09747459e-16 - art_sys_157: 9.50590636e-18 + art_sys_58: 0.0 + art_sys_59: 0.0 + art_sys_60: 0.0 + art_sys_61: 0.0 + art_sys_62: 0.0 + art_sys_63: 0.0 + art_sys_64: 0.0 + art_sys_65: 0.0 + art_sys_66: 0.0 + art_sys_67: 0.0 + art_sys_68: 0.0 + art_sys_69: 0.0 + art_sys_70: 0.0 + art_sys_71: 0.0 + art_sys_72: -1.25945487e-202 + art_sys_73: 7.80655866e-194 + art_sys_74: 2.43351228e-195 + art_sys_75: 1.19543872e-79 + art_sys_76: 1.45191118e-12 + art_sys_77: 2.22519756e-10 + art_sys_78: -4.58784486e-10 + art_sys_79: 3.09518854e-29 + art_sys_80: 3.10805926e-10 + art_sys_81: 7.90088712e-29 + art_sys_82: 1.80344359e-30 + art_sys_83: -3.40600854e-08 + art_sys_84: 7.43309308e-08 + art_sys_85: 1.93872712e-07 + art_sys_86: 2.90637597e-08 + art_sys_87: 6.47459649e-26 + art_sys_88: -9.20411674e-26 + art_sys_89: 9.85211972e-08 + art_sys_90: 2.55449927e-25 + art_sys_91: 1.52241895e-24 + art_sys_92: 1.21400774e-05 + art_sys_93: -7.97817680e-06 + art_sys_94: -3.94597614e-24 + art_sys_95: 1.08674084e-23 + art_sys_96: 2.95754871e-24 + art_sys_97: 2.33112464e-24 + art_sys_98: -4.31142431e-24 + art_sys_99: -6.47358937e-24 + art_sys_100: 2.94789865e-24 + art_sys_101: -1.15294808e-24 + art_sys_102: -8.39605495e-25 + art_sys_103: 2.27368937e-24 + art_sys_104: 1.43102168e-24 + art_sys_105: -9.97585569e-25 + art_sys_106: -8.89198886e-25 + art_sys_107: -5.62382923e-24 + art_sys_108: 1.25438801e-24 + art_sys_109: 4.28503900e-24 + art_sys_110: -2.88009601e-24 + art_sys_111: -6.03743866e-25 + art_sys_112: -2.18005739e-24 + art_sys_113: -6.04687430e-25 + art_sys_114: -5.90796542e-24 + art_sys_115: -1.43037001e-24 + art_sys_116: 8.21049417e-26 + art_sys_117: 9.87649892e-25 + art_sys_118: -6.69817320e-26 + art_sys_119: -1.73036771e-25 + art_sys_120: 6.28352012e-25 + art_sys_121: 1.17823815e-24 + art_sys_122: 1.73503206e-24 + art_sys_123: 2.89404166e-25 + art_sys_124: 1.35564519e-24 + art_sys_125: 2.75625944e-25 + art_sys_126: -6.61671380e-25 + art_sys_127: -6.28664186e-25 + art_sys_128: -3.15943671e-25 + art_sys_129: -1.25666912e-24 + art_sys_130: -3.28607629e-25 + art_sys_131: 3.70910144e-24 + art_sys_132: -8.19947970e-27 + art_sys_133: 3.46382246e-25 + art_sys_134: -2.80646127e-25 + art_sys_135: 2.55036943e-25 + art_sys_136: -2.24468824e-22 + art_sys_137: -9.44241199e-26 + art_sys_138: -1.65362596e-25 + art_sys_139: 1.48810090e-26 + art_sys_140: 4.12437004e-22 + art_sys_141: -2.05252229e-25 + art_sys_142: 8.06954593e-26 + art_sys_143: -1.67586539e-26 + art_sys_144: 3.70641630e-22 + art_sys_145: 1.81464314e-26 + art_sys_146: 3.09406434e-25 + art_sys_147: -1.51934518e-21 + art_sys_148: 8.86478593e-21 + art_sys_149: -6.34336273e-25 + art_sys_150: 9.07034056e-23 + art_sys_151: 2.17265189e-22 + art_sys_152: -7.28815382e-20 + art_sys_153: -1.11208918e-22 + art_sys_154: -1.76965026e-26 + art_sys_155: 2.24194666e-20 + art_sys_156: 0.0 + art_sys_157: 2.02247183e-24 art_sys_158: 0.0 - art_sys_159: 1.81883024e-27 - art_sys_160: 2.19606047e-28 - art_sys_161: -1.19822114e-27 - art_sys_162: 7.74971456e-28 - art_sys_163: -1.33889214e-27 - art_sys_164: -1.31281709e-25 - art_sys_165: 6.75094839e-24 - art_sys_166: -9.85211972e-08 - art_sys_167: 1.21400774e-05 - art_sys_168: -7.97817680e-06 - art_sys_169: 5.82848541e-05 - art_sys_170: 1.03424095e-04 - art_sys_171: -1.56515089e-04 - art_sys_172: 8.47539000e-04 - art_sys_173: -1.99700024e-03 - art_sys_174: 2.46280968e-03 - art_sys_175: 1.26342142e-12 - art_sys_176: 6.61175517e-06 - art_sys_177: 1.73139323e-05 - art_sys_178: -5.56719051e-06 - art_sys_179: 1.94790970e-06 - art_sys_180: -4.16174628e-07 - art_sys_181: 8.57442529e-08 + art_sys_159: -1.41777060e-23 + art_sys_160: 8.44922472e-21 + art_sys_161: 1.17945440e-23 + art_sys_162: 1.17945440e-23 + art_sys_163: -2.03045056e-21 + art_sys_164: -2.03045056e-21 + art_sys_165: -1.09747458e-16 + art_sys_166: -9.50590635e-18 + art_sys_167: -0.0 + art_sys_168: 5.82848541e-05 + art_sys_169: -1.03424095e-04 + art_sys_170: -1.56515089e-04 + art_sys_171: -8.47539000e-04 + art_sys_172: -1.99700024e-03 + art_sys_173: 2.46280968e-03 + art_sys_174: -6.61175517e-06 + art_sys_175: -1.73139323e-05 + art_sys_176: 5.56719051e-06 + art_sys_177: -4.16174628e-07 + art_sys_178: 8.57442529e-08 + art_sys_179: 1.26342142e-12 + art_sys_180: 1.49301349e-14 + art_sys_181: -1.94790970e-06 art_sys_182: 1.59098293e-08 art_sys_183: -2.47804941e-09 art_sys_184: 4.20068470e-10 - art_sys_185: -4.00005870e-11 + art_sys_185: 4.00005870e-11 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -48893,134 +48893,134 @@ bins: art_sys_55: 0.0 art_sys_56: 0.0 art_sys_57: 0.0 - art_sys_58: 1.10182654e-309 - art_sys_59: -2.32688560e-230 - art_sys_60: -2.55427406e-226 - art_sys_61: 1.51467131e-223 - art_sys_62: -7.48772600e-218 - art_sys_63: -1.15839448e-208 - art_sys_64: 3.56315478e-210 - art_sys_65: -3.85784694e-83 - art_sys_66: -7.20678921e-71 - art_sys_67: 2.66498729e-67 - art_sys_68: 3.51693920e-65 - art_sys_69: 4.59182591e-51 - art_sys_70: -1.00700654e-53 - art_sys_71: 1.15516525e-47 - art_sys_72: 7.59620702e-35 - art_sys_73: -5.05576406e-13 - art_sys_74: 7.33461006e-12 - art_sys_75: -1.44916423e-11 - art_sys_76: -1.53128958e-30 - art_sys_77: -4.95576412e-32 - art_sys_78: 4.39175074e-32 - art_sys_79: -2.50459715e-11 - art_sys_80: 5.19761990e-30 - art_sys_81: -1.26525157e-09 - art_sys_82: -5.54804294e-09 - art_sys_83: -1.12367276e-26 - art_sys_84: -7.10252642e-09 - art_sys_85: 9.26594511e-09 - art_sys_86: 7.59494824e-27 - art_sys_87: 1.13610510e-27 - art_sys_88: -1.48705841e-27 - art_sys_89: 1.45820788e-27 - art_sys_90: 1.25452975e-27 - art_sys_91: -1.08737858e-28 - art_sys_92: -1.04476740e-27 - art_sys_93: -9.47523315e-28 - art_sys_94: -2.91560839e-28 - art_sys_95: -2.37896093e-28 - art_sys_96: 1.77496298e-27 - art_sys_97: -6.32193201e-29 - art_sys_98: 6.05354716e-28 - art_sys_99: 1.07528339e-28 - art_sys_100: -3.01724144e-29 - art_sys_101: 1.96817568e-28 - art_sys_102: 3.58044610e-29 - art_sys_103: 9.85530604e-29 - art_sys_104: -2.04063109e-28 - art_sys_105: 1.34560907e-28 - art_sys_106: 3.38448789e-29 - art_sys_107: -1.01421331e-28 - art_sys_108: -1.84421554e-29 - art_sys_109: 2.43519811e-28 - art_sys_110: 6.92506887e-29 - art_sys_111: 8.53852123e-29 - art_sys_112: 2.51565378e-29 - art_sys_113: 4.83473108e-28 - art_sys_114: 2.04964775e-29 - art_sys_115: 2.09478974e-28 - art_sys_116: 5.85803329e-30 - art_sys_117: -1.62492738e-30 - art_sys_118: -5.39080332e-29 - art_sys_119: 3.25407745e-30 - art_sys_120: 2.42464698e-29 - art_sys_121: -1.08104332e-29 - art_sys_122: -2.59588348e-30 - art_sys_123: 1.38458028e-29 - art_sys_124: 1.26449684e-29 - art_sys_125: 2.93177557e-30 - art_sys_126: -4.45916044e-29 - art_sys_127: 2.09296348e-29 - art_sys_128: -2.43812134e-29 - art_sys_129: 9.81952497e-30 - art_sys_130: -2.30718402e-29 - art_sys_131: -4.81010480e-30 - art_sys_132: -5.11332345e-30 - art_sys_133: 1.02072021e-29 - art_sys_134: 1.99772403e-23 - art_sys_135: -4.47801093e-30 - art_sys_136: -1.24002414e-29 - art_sys_137: -6.55975048e-22 - art_sys_138: 5.76000272e-30 - art_sys_139: -5.46225350e-29 - art_sys_140: -8.54279535e-27 - art_sys_141: 2.20542912e-26 - art_sys_142: 2.99031413e-25 - art_sys_143: -9.97794469e-21 - art_sys_144: 1.96741591e-19 - art_sys_145: 3.40299645e-20 - art_sys_146: 0.0 - art_sys_147: 6.63907717e-21 - art_sys_148: 1.06845808e-23 - art_sys_149: 1.06845808e-23 - art_sys_150: 2.45369666e-23 - art_sys_151: 2.45369666e-23 - art_sys_152: 1.33049274e-22 - art_sys_153: -1.29506197e-20 - art_sys_154: 3.81581357e-21 - art_sys_155: 6.06712393e-14 - art_sys_156: -6.37042911e-16 - art_sys_157: -5.28314565e-17 + art_sys_58: 0.0 + art_sys_59: 0.0 + art_sys_60: 0.0 + art_sys_61: 0.0 + art_sys_62: 0.0 + art_sys_63: 0.0 + art_sys_64: 0.0 + art_sys_65: 0.0 + art_sys_66: 0.0 + art_sys_67: 0.0 + art_sys_68: 0.0 + art_sys_69: 0.0 + art_sys_70: 0.0 + art_sys_71: 0.0 + art_sys_72: 4.38611883e-203 + art_sys_73: -2.71867573e-194 + art_sys_74: -8.47483642e-196 + art_sys_75: -4.16268999e-80 + art_sys_76: -5.05576406e-13 + art_sys_77: 7.33461006e-12 + art_sys_78: -1.44916423e-11 + art_sys_79: 1.92934069e-31 + art_sys_80: 2.50459715e-11 + art_sys_81: 6.19007608e-30 + art_sys_82: 5.77820380e-32 + art_sys_83: -1.26525157e-09 + art_sys_84: 5.54804294e-09 + art_sys_85: 7.10252642e-09 + art_sys_86: -9.26594511e-09 + art_sys_87: 2.09743876e-26 + art_sys_88: 2.40178336e-26 + art_sys_89: 3.89753008e-07 + art_sys_90: 7.68373155e-25 + art_sys_91: 2.38859951e-25 + art_sys_92: 1.50389482e-06 + art_sys_93: -2.74459749e-06 + art_sys_94: -8.27703384e-25 + art_sys_95: 2.42418598e-24 + art_sys_96: 1.13742873e-24 + art_sys_97: 9.99674353e-25 + art_sys_98: -2.42370864e-24 + art_sys_99: -1.78151189e-24 + art_sys_100: -2.56288235e-25 + art_sys_101: -6.43454464e-25 + art_sys_102: 2.48721347e-26 + art_sys_103: 5.65333534e-25 + art_sys_104: 7.59965710e-25 + art_sys_105: -6.46121599e-25 + art_sys_106: -6.73337298e-25 + art_sys_107: -8.64147286e-25 + art_sys_108: -5.47271250e-26 + art_sys_109: 1.43177573e-24 + art_sys_110: -5.87557555e-25 + art_sys_111: -7.13080161e-26 + art_sys_112: -7.52517879e-25 + art_sys_113: -5.04115101e-26 + art_sys_114: -1.37284556e-24 + art_sys_115: -1.97434886e-25 + art_sys_116: 4.26785629e-25 + art_sys_117: 1.79753874e-26 + art_sys_118: 1.19590856e-25 + art_sys_119: -5.17562606e-26 + art_sys_120: -6.81611772e-26 + art_sys_121: 1.65137581e-25 + art_sys_122: 3.21297627e-25 + art_sys_123: -1.21838767e-25 + art_sys_124: 3.73890764e-25 + art_sys_125: 3.14111762e-26 + art_sys_126: -7.86511464e-26 + art_sys_127: -7.01779180e-26 + art_sys_128: -9.88632593e-26 + art_sys_129: -1.99445726e-25 + art_sys_130: 6.05569586e-26 + art_sys_131: 8.41074588e-25 + art_sys_132: -7.31534351e-26 + art_sys_133: 1.03563270e-25 + art_sys_134: -1.11609787e-25 + art_sys_135: 6.82674220e-26 + art_sys_136: -8.30164800e-23 + art_sys_137: -3.50963754e-26 + art_sys_138: -4.25850520e-26 + art_sys_139: -4.94695893e-27 + art_sys_140: 1.65280361e-22 + art_sys_141: -2.59709258e-26 + art_sys_142: 4.33141702e-26 + art_sys_143: -1.16146901e-26 + art_sys_144: 1.54794105e-21 + art_sys_145: 3.69630129e-26 + art_sys_146: -2.83820229e-25 + art_sys_147: 3.17227653e-21 + art_sys_148: -1.74087834e-20 + art_sys_149: -9.57249560e-26 + art_sys_150: 1.20258804e-23 + art_sys_151: 1.90828681e-23 + art_sys_152: 9.08941184e-20 + art_sys_153: -3.44574630e-24 + art_sys_154: -6.77929690e-27 + art_sys_155: -3.49095578e-20 + art_sys_156: -0.0 + art_sys_157: -5.11926120e-25 art_sys_158: -0.0 - art_sys_159: -8.88160516e-29 - art_sys_160: 1.75787339e-28 - art_sys_161: 2.56344389e-28 - art_sys_162: -6.90739989e-30 - art_sys_163: -5.91263330e-29 - art_sys_164: -9.13958701e-26 - art_sys_165: 5.34602571e-25 - art_sys_166: -3.89753008e-07 - art_sys_167: 1.50389482e-06 - art_sys_168: -2.74459749e-06 - art_sys_169: -8.39945972e-06 - art_sys_170: 3.97889774e-05 - art_sys_171: 5.00739265e-05 - art_sys_172: 9.78639287e-05 - art_sys_173: 1.91623621e-04 - art_sys_174: 1.46487778e-04 - art_sys_175: -6.95582013e-12 - art_sys_176: -4.48202730e-04 - art_sys_177: -4.74911587e-05 - art_sys_178: 4.83296360e-05 - art_sys_179: -1.04052907e-05 - art_sys_180: 2.48232039e-06 - art_sys_181: -5.11073173e-07 + art_sys_159: 3.51222619e-24 + art_sys_160: -1.05604738e-20 + art_sys_161: 1.38233357e-23 + art_sys_162: 1.38233357e-23 + art_sys_163: 2.84034672e-21 + art_sys_164: 2.84034672e-21 + art_sys_165: 6.37042910e-16 + art_sys_166: 5.28314565e-17 + art_sys_167: 0.0 + art_sys_168: -8.39945972e-06 + art_sys_169: -3.97889774e-05 + art_sys_170: 5.00739265e-05 + art_sys_171: -9.78639287e-05 + art_sys_172: 1.91623621e-04 + art_sys_173: 1.46487778e-04 + art_sys_174: 4.48202730e-04 + art_sys_175: 4.74911587e-05 + art_sys_176: -4.83296360e-05 + art_sys_177: 2.48232039e-06 + art_sys_178: -5.11073173e-07 + art_sys_179: -6.95582013e-12 + art_sys_180: -6.06712393e-14 + art_sys_181: 1.04052907e-05 art_sys_182: -8.78024195e-08 art_sys_183: 1.42458404e-08 art_sys_184: -2.39505725e-09 - art_sys_185: 2.30448492e-10 + art_sys_185: -2.30448492e-10 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -49184,134 +49184,134 @@ bins: art_sys_55: 0.0 art_sys_56: 0.0 art_sys_57: 0.0 - art_sys_58: 1.10511691e-310 - art_sys_59: -2.33433812e-231 - art_sys_60: -2.56245486e-227 - art_sys_61: 1.51952248e-224 - art_sys_62: -7.51170760e-219 - art_sys_63: -1.16210458e-209 - art_sys_64: 3.57456681e-211 - art_sys_65: -3.87020282e-84 - art_sys_66: -7.22987105e-72 - art_sys_67: 2.67352269e-68 - art_sys_68: 3.52820323e-66 - art_sys_69: 4.60653257e-52 - art_sys_70: -1.01023177e-54 - art_sys_71: 1.15886500e-48 - art_sys_72: 7.62053609e-36 - art_sys_73: -5.07195661e-14 - art_sys_74: 2.73720301e-15 - art_sys_75: 3.97525068e-13 - art_sys_76: 3.54093071e-32 - art_sys_77: 1.23368637e-33 - art_sys_78: -6.37775387e-36 - art_sys_79: -3.13058554e-12 - art_sys_80: 7.52176296e-31 - art_sys_81: -5.43018193e-11 - art_sys_82: -3.77012908e-10 - art_sys_83: -1.14902786e-27 - art_sys_84: -4.16767233e-10 - art_sys_85: 4.47136836e-10 - art_sys_86: 3.23649755e-28 - art_sys_87: 6.38774006e-29 - art_sys_88: -6.28775710e-29 - art_sys_89: 7.95424152e-29 - art_sys_90: 6.44538762e-29 - art_sys_91: -9.31948584e-30 - art_sys_92: -4.94757275e-29 - art_sys_93: -4.95991020e-29 - art_sys_94: -1.40769790e-29 - art_sys_95: -1.59519578e-29 - art_sys_96: 7.69844138e-29 - art_sys_97: -2.70484888e-30 - art_sys_98: 2.86364230e-29 - art_sys_99: 6.64488904e-30 - art_sys_100: -1.49946257e-30 - art_sys_101: 1.13449446e-29 - art_sys_102: 2.21765587e-30 - art_sys_103: 4.32803567e-30 - art_sys_104: -1.02555763e-29 - art_sys_105: 8.21611480e-30 - art_sys_106: 1.68249467e-30 - art_sys_107: -8.76961060e-30 - art_sys_108: -7.03290376e-31 - art_sys_109: 8.49709461e-30 - art_sys_110: 1.98276685e-30 - art_sys_111: 3.90721977e-30 - art_sys_112: -2.60197595e-31 - art_sys_113: 2.38090086e-29 - art_sys_114: 1.51779238e-30 - art_sys_115: 1.12741012e-29 - art_sys_116: 3.67172188e-31 - art_sys_117: 7.31573412e-32 - art_sys_118: -2.30341739e-30 - art_sys_119: 2.07959790e-31 - art_sys_120: -3.54440183e-30 - art_sys_121: 4.42710395e-32 - art_sys_122: -4.55480084e-31 - art_sys_123: 2.20189660e-31 - art_sys_124: 2.95744519e-31 - art_sys_125: 1.69958765e-31 - art_sys_126: -2.95666322e-30 - art_sys_127: 1.15341726e-30 - art_sys_128: -1.33777848e-30 - art_sys_129: 5.03450371e-31 - art_sys_130: -1.71247509e-30 - art_sys_131: 2.56849708e-30 - art_sys_132: 3.12361883e-32 - art_sys_133: -2.08388459e-30 - art_sys_134: 2.58912637e-22 - art_sys_135: -7.66352519e-31 - art_sys_136: -7.33697239e-30 - art_sys_137: 1.44477009e-22 - art_sys_138: 2.92247930e-31 - art_sys_139: 1.06318071e-28 - art_sys_140: 1.62216592e-26 - art_sys_141: -3.87116269e-26 - art_sys_142: -4.13368677e-25 - art_sys_143: 7.32954887e-21 - art_sys_144: -2.24010236e-19 - art_sys_145: -2.38225133e-20 - art_sys_146: -0.0 - art_sys_147: -7.76086795e-21 - art_sys_148: 6.18544694e-24 - art_sys_149: 6.18544694e-24 - art_sys_150: -1.15598929e-23 - art_sys_151: -1.15598929e-23 - art_sys_152: -5.13402219e-23 - art_sys_153: 5.46852476e-21 - art_sys_154: -2.93686387e-21 - art_sys_155: -2.41775266e-13 - art_sys_156: 1.96019289e-15 - art_sys_157: 1.67602280e-16 - art_sys_158: 0.0 - art_sys_159: -3.27341756e-30 - art_sys_160: 7.39453234e-30 - art_sys_161: 9.58631729e-30 - art_sys_162: -6.48255333e-32 - art_sys_163: 4.34534728e-30 - art_sys_164: -2.42492284e-27 - art_sys_165: -4.04977363e-25 - art_sys_166: -2.01760551e-08 - art_sys_167: 8.22208769e-09 - art_sys_168: -6.77868744e-08 - art_sys_169: -2.05374805e-06 - art_sys_170: -1.59076530e-06 - art_sys_171: 6.79374442e-06 - art_sys_172: -4.48070347e-05 - art_sys_173: 8.98313735e-05 - art_sys_174: -1.45697426e-04 - art_sys_175: 2.16340418e-11 - art_sys_176: -1.01253517e-04 - art_sys_177: 2.89231121e-04 - art_sys_178: -6.17271763e-05 - art_sys_179: 3.36881733e-05 - art_sys_180: -6.04438398e-06 - art_sys_181: 1.46801565e-06 + art_sys_58: 0.0 + art_sys_59: 0.0 + art_sys_60: 0.0 + art_sys_61: 0.0 + art_sys_62: 0.0 + art_sys_63: 0.0 + art_sys_64: 0.0 + art_sys_65: 0.0 + art_sys_66: 0.0 + art_sys_67: 0.0 + art_sys_68: 0.0 + art_sys_69: 0.0 + art_sys_70: 0.0 + art_sys_71: 0.0 + art_sys_72: 4.40012211e-204 + art_sys_73: -2.72735547e-195 + art_sys_74: -8.50189349e-197 + art_sys_75: -4.17602222e-81 + art_sys_76: -5.07195661e-14 + art_sys_77: 2.73720301e-15 + art_sys_78: 3.97525068e-13 + art_sys_79: -2.83039047e-32 + art_sys_80: 3.13058554e-12 + art_sys_81: 7.60956312e-31 + art_sys_82: -1.47287838e-33 + art_sys_83: -5.43018193e-11 + art_sys_84: 3.77012908e-10 + art_sys_85: 4.16767233e-10 + art_sys_86: -4.47136836e-10 + art_sys_87: 1.09946316e-27 + art_sys_88: 1.19550631e-27 + art_sys_89: 2.01760551e-08 + art_sys_90: 3.94455672e-26 + art_sys_91: 3.08244700e-27 + art_sys_92: 8.22208769e-09 + art_sys_93: -6.77868744e-08 + art_sys_94: -1.66819154e-26 + art_sys_95: 4.82058740e-26 + art_sys_96: 3.10626661e-26 + art_sys_97: 2.33743353e-26 + art_sys_98: -7.07055421e-26 + art_sys_99: -4.06387768e-26 + art_sys_100: -2.07697157e-26 + art_sys_101: -1.89395454e-26 + art_sys_102: 2.30790605e-27 + art_sys_103: 1.25635710e-26 + art_sys_104: 2.29719341e-26 + art_sys_105: -1.85791892e-26 + art_sys_106: -1.93465721e-26 + art_sys_107: -3.80507906e-27 + art_sys_108: 1.70684223e-27 + art_sys_109: 3.51525620e-26 + art_sys_110: -1.14859536e-26 + art_sys_111: -9.55954893e-28 + art_sys_112: -1.84533682e-26 + art_sys_113: 7.95065282e-28 + art_sys_114: -2.78943012e-26 + art_sys_115: -1.76345414e-27 + art_sys_116: 1.52297177e-26 + art_sys_117: -2.18186161e-27 + art_sys_118: 4.37187397e-27 + art_sys_119: -1.51937405e-27 + art_sys_120: -4.97959157e-27 + art_sys_121: 1.31947787e-27 + art_sys_122: 4.66894933e-27 + art_sys_123: -5.38332286e-27 + art_sys_124: 8.11903649e-27 + art_sys_125: -2.43813367e-28 + art_sys_126: -1.63493126e-28 + art_sys_127: -3.10658354e-28 + art_sys_128: -2.50748415e-27 + art_sys_129: -1.87466660e-27 + art_sys_130: 2.68166988e-27 + art_sys_131: -4.15030417e-26 + art_sys_132: -2.61532217e-27 + art_sys_133: 2.40684826e-27 + art_sys_134: -3.03907060e-27 + art_sys_135: 1.47390725e-27 + art_sys_136: 1.83943676e-23 + art_sys_137: -8.40415460e-28 + art_sys_138: -8.82165319e-28 + art_sys_139: 1.34134170e-28 + art_sys_140: 2.87588270e-22 + art_sys_141: -2.37683744e-28 + art_sys_142: 1.25563321e-27 + art_sys_143: -2.41547930e-28 + art_sys_144: 1.72816826e-21 + art_sys_145: 1.17946166e-27 + art_sys_146: -1.43900228e-25 + art_sys_147: 2.21105950e-21 + art_sys_148: 1.23762289e-20 + art_sys_149: 3.64886664e-26 + art_sys_150: -6.52786913e-24 + art_sys_151: -1.76770211e-23 + art_sys_152: -6.52428039e-20 + art_sys_153: 1.18670127e-23 + art_sys_154: -1.76793467e-28 + art_sys_155: 3.81427802e-20 + art_sys_156: -0.0 + art_sys_157: -8.35577552e-25 + art_sys_158: -0.0 + art_sys_159: 8.34712985e-24 + art_sys_160: 9.57564825e-21 + art_sys_161: -7.08212577e-25 + art_sys_162: -7.08212577e-25 + art_sys_163: -2.56700343e-21 + art_sys_164: -2.56700343e-21 + art_sys_165: -1.96019289e-15 + art_sys_166: -1.67602280e-16 + art_sys_167: -0.0 + art_sys_168: -2.05374805e-06 + art_sys_169: 1.59076530e-06 + art_sys_170: 6.79374442e-06 + art_sys_171: 4.48070347e-05 + art_sys_172: 8.98313735e-05 + art_sys_173: -1.45697426e-04 + art_sys_174: 1.01253517e-04 + art_sys_175: -2.89231121e-04 + art_sys_176: 6.17271763e-05 + art_sys_177: -6.04438398e-06 + art_sys_178: 1.46801565e-06 + art_sys_179: 2.16340418e-11 + art_sys_180: 2.41775266e-13 + art_sys_181: -3.36881733e-05 art_sys_182: 2.66333728e-07 art_sys_183: -4.14569408e-08 art_sys_184: 7.35981513e-09 - art_sys_185: -6.72871765e-10 + art_sys_185: 6.72871765e-10 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -49475,134 +49475,134 @@ bins: art_sys_55: 0.0 art_sys_56: 0.0 art_sys_57: 0.0 - art_sys_58: 6.45350476e-312 - art_sys_59: -1.36329666e-232 - art_sys_60: -1.49652106e-228 - art_sys_61: 8.87429247e-226 - art_sys_62: -4.38697625e-220 - art_sys_63: -6.78690579e-211 - art_sys_64: 2.08761317e-212 - art_sys_65: -2.26027007e-85 - art_sys_66: -4.22237849e-73 - art_sys_67: 1.56138673e-69 - art_sys_68: 2.06053598e-67 - art_sys_69: 2.69030027e-53 - art_sys_70: -5.89994052e-56 - art_sys_71: 6.76798608e-50 - art_sys_72: 4.45053410e-37 - art_sys_73: -2.96211653e-15 - art_sys_74: -1.77413255e-14 - art_sys_75: 8.50287906e-14 - art_sys_76: 8.12810255e-33 - art_sys_77: 2.75101134e-34 - art_sys_78: -1.09442813e-34 - art_sys_79: -2.61004393e-13 - art_sys_80: 6.50739091e-32 - art_sys_81: -4.24870017e-12 - art_sys_82: -6.61939702e-12 - art_sys_83: -5.88160024e-29 - art_sys_84: -2.21789879e-11 - art_sys_85: -2.50936504e-11 - art_sys_86: -2.26136250e-29 - art_sys_87: -6.57612572e-31 - art_sys_88: 6.48408972e-30 - art_sys_89: 8.13751982e-31 - art_sys_90: -2.05164719e-30 - art_sys_91: -1.92729398e-30 - art_sys_92: 2.74447232e-30 - art_sys_93: 1.32283386e-30 - art_sys_94: 8.38408609e-31 - art_sys_95: -1.91250775e-30 - art_sys_96: -5.68824822e-30 - art_sys_97: 3.66885762e-31 - art_sys_98: -1.93047935e-30 - art_sys_99: -5.75739053e-32 - art_sys_100: -1.29179482e-31 - art_sys_101: 4.42945644e-31 - art_sys_102: 1.11165925e-31 - art_sys_103: -3.14927108e-31 - art_sys_104: 1.64157033e-31 - art_sys_105: 3.50547433e-31 - art_sys_106: -1.79282101e-31 - art_sys_107: -1.65925306e-30 - art_sys_108: -1.28159313e-30 - art_sys_109: -1.56760325e-30 - art_sys_110: -1.01330464e-30 - art_sys_111: -3.07661849e-31 - art_sys_112: -5.79236512e-31 - art_sys_113: -1.01013514e-30 - art_sys_114: 1.69051741e-32 - art_sys_115: -9.88026648e-31 - art_sys_116: -1.22415115e-31 - art_sys_117: -2.97528328e-32 - art_sys_118: 5.68802237e-31 - art_sys_119: 7.15678216e-32 - art_sys_120: 1.14186572e-29 - art_sys_121: -5.81380675e-31 - art_sys_122: 4.02453842e-31 - art_sys_123: 1.29576326e-30 - art_sys_124: 6.36516684e-31 - art_sys_125: -1.02822575e-31 - art_sys_126: 1.48704885e-30 - art_sys_127: -1.14075185e-31 - art_sys_128: 3.92182261e-31 - art_sys_129: 6.42333532e-31 - art_sys_130: 1.28978348e-30 - art_sys_131: -7.32779100e-30 - art_sys_132: -9.56382958e-31 - art_sys_133: 1.46794864e-30 - art_sys_134: -2.68075026e-23 - art_sys_135: 1.44997244e-30 - art_sys_136: -8.05951153e-32 - art_sys_137: 1.35902718e-21 - art_sys_138: -8.40603274e-33 - art_sys_139: -2.60698521e-29 - art_sys_140: -3.52913579e-27 - art_sys_141: 1.02773306e-26 - art_sys_142: 2.54910151e-25 - art_sys_143: -4.60602307e-21 - art_sys_144: 1.75950556e-19 - art_sys_145: 1.85235594e-20 - art_sys_146: -0.0 - art_sys_147: 1.00404497e-20 - art_sys_148: -3.85294806e-24 - art_sys_149: -3.85294806e-24 - art_sys_150: 4.54312445e-24 - art_sys_151: 4.54312445e-24 - art_sys_152: 1.98142454e-23 - art_sys_153: -1.31897291e-21 - art_sys_154: 6.32571680e-22 - art_sys_155: 6.30936003e-13 - art_sys_156: -5.17590803e-15 - art_sys_157: -4.38664943e-16 + art_sys_58: 0.0 + art_sys_59: 0.0 + art_sys_60: 0.0 + art_sys_61: 0.0 + art_sys_62: 0.0 + art_sys_63: 0.0 + art_sys_64: 0.0 + art_sys_65: 0.0 + art_sys_66: 0.0 + art_sys_67: 0.0 + art_sys_68: 0.0 + art_sys_69: 0.0 + art_sys_70: 0.0 + art_sys_71: 0.0 + art_sys_72: 2.56974186e-205 + art_sys_73: -1.59281933e-196 + art_sys_74: -4.96524212e-198 + art_sys_75: -2.43887426e-82 + art_sys_76: -2.96211653e-15 + art_sys_77: -1.77413255e-14 + art_sys_78: 8.50287906e-14 + art_sys_79: -3.06718671e-33 + art_sys_80: 2.61004393e-13 + art_sys_81: 6.32853105e-32 + art_sys_82: -3.29866247e-34 + art_sys_83: -4.24870017e-12 + art_sys_84: 6.61939702e-12 + art_sys_85: 2.21789879e-11 + art_sys_86: 2.50936504e-11 + art_sys_87: -2.87140454e-29 + art_sys_88: -3.89041151e-28 + art_sys_89: -5.12840017e-09 + art_sys_90: -1.00474202e-26 + art_sys_91: -1.52598091e-27 + art_sys_92: -7.31576203e-09 + art_sys_93: 3.85384728e-08 + art_sys_94: 1.52994770e-26 + art_sys_95: -2.65172738e-26 + art_sys_96: -1.60350192e-26 + art_sys_97: -1.63083891e-26 + art_sys_98: 3.86712972e-26 + art_sys_99: 2.22398328e-26 + art_sys_100: 9.95957890e-27 + art_sys_101: 1.01580551e-26 + art_sys_102: -1.98949453e-27 + art_sys_103: -6.50382609e-27 + art_sys_104: -1.16219971e-26 + art_sys_105: 1.08433444e-26 + art_sys_106: 9.07027517e-27 + art_sys_107: 7.54042334e-27 + art_sys_108: -3.13972654e-27 + art_sys_109: -1.97976144e-26 + art_sys_110: 5.81269094e-27 + art_sys_111: 3.78209256e-28 + art_sys_112: 1.06314798e-26 + art_sys_113: 5.73623707e-28 + art_sys_114: 1.49322137e-26 + art_sys_115: 1.22687987e-27 + art_sys_116: -7.96073161e-27 + art_sys_117: 1.77467045e-27 + art_sys_118: -2.45678507e-27 + art_sys_119: 5.80625013e-28 + art_sys_120: 2.33737679e-27 + art_sys_121: -9.84085705e-28 + art_sys_122: -3.18759580e-27 + art_sys_123: 2.86340405e-27 + art_sys_124: -4.81340131e-27 + art_sys_125: -1.78182067e-28 + art_sys_126: 3.90395322e-28 + art_sys_127: 2.06650173e-28 + art_sys_128: 1.28156084e-27 + art_sys_129: 1.69301203e-27 + art_sys_130: -1.38353509e-27 + art_sys_131: -3.25774312e-26 + art_sys_132: 1.37022386e-27 + art_sys_133: -1.37464472e-27 + art_sys_134: 1.60593913e-27 + art_sys_135: -8.58263582e-28 + art_sys_136: 2.60765437e-24 + art_sys_137: 5.20214316e-28 + art_sys_138: 5.28094526e-28 + art_sys_139: 1.41555796e-28 + art_sys_140: 2.86279316e-22 + art_sys_141: 1.49940261e-28 + art_sys_142: -6.81048272e-28 + art_sys_143: 3.85544989e-28 + art_sys_144: 4.64024792e-22 + art_sys_145: -6.94519652e-28 + art_sys_146: 1.42840775e-26 + art_sys_147: -1.63099932e-22 + art_sys_148: -7.46017190e-21 + art_sys_149: 3.22778286e-27 + art_sys_150: -5.36583146e-25 + art_sys_151: -4.04257872e-24 + art_sys_152: 6.63003736e-20 + art_sys_153: 4.77044420e-24 + art_sys_154: 1.01302764e-28 + art_sys_155: -2.19659087e-20 + art_sys_156: -0.0 + art_sys_157: -5.96747285e-25 art_sys_158: -0.0 - art_sys_159: 5.21206528e-31 - art_sys_160: -4.05752478e-31 - art_sys_161: -7.29389007e-31 - art_sys_162: 1.50948521e-31 - art_sys_163: -1.54057755e-31 - art_sys_164: 1.49976321e-27 - art_sys_165: -5.38898590e-27 - art_sys_166: 5.12840017e-09 - art_sys_167: -7.31576203e-09 - art_sys_168: 3.85384728e-08 - art_sys_169: 6.64108385e-08 - art_sys_170: -1.19583320e-06 - art_sys_171: -1.51479471e-06 - art_sys_172: -2.68165371e-06 - art_sys_173: -1.54963555e-05 - art_sys_174: 4.26228856e-06 - art_sys_175: -5.96528758e-11 - art_sys_176: 7.18790785e-05 - art_sys_177: 1.12327586e-04 - art_sys_178: 2.05026722e-04 - art_sys_179: -3.32214375e-05 - art_sys_180: 1.73424816e-05 - art_sys_181: -3.13465395e-06 + art_sys_159: 6.12792158e-24 + art_sys_160: -7.60166528e-21 + art_sys_161: 1.06013509e-24 + art_sys_162: 1.06013509e-24 + art_sys_163: 9.22999626e-22 + art_sys_164: 9.22999626e-22 + art_sys_165: 5.17590804e-15 + art_sys_166: 4.38664943e-16 + art_sys_167: 0.0 + art_sys_168: 6.64108385e-08 + art_sys_169: 1.19583320e-06 + art_sys_170: -1.51479471e-06 + art_sys_171: 2.68165371e-06 + art_sys_172: -1.54963555e-05 + art_sys_173: 4.26228856e-06 + art_sys_174: -7.18790785e-05 + art_sys_175: -1.12327586e-04 + art_sys_176: -2.05026722e-04 + art_sys_177: 1.73424816e-05 + art_sys_178: -3.13465395e-06 + art_sys_179: -5.96528758e-11 + art_sys_180: -6.30936003e-13 + art_sys_181: 3.32214375e-05 art_sys_182: -6.81315422e-07 art_sys_183: 1.12897897e-07 art_sys_184: -1.90495875e-08 - art_sys_185: 1.89694123e-09 + art_sys_185: -1.89694123e-09 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -49766,134 +49766,134 @@ bins: art_sys_55: 0.0 art_sys_56: 0.0 art_sys_57: 0.0 - art_sys_58: 2.36080386e-313 - art_sys_59: -4.98752057e-234 - art_sys_60: -5.47491224e-230 - art_sys_61: 3.24659464e-227 - art_sys_62: -1.60494300e-221 - art_sys_63: -2.48293957e-212 - art_sys_64: 7.63737925e-214 - art_sys_65: -8.26903183e-87 - art_sys_66: -1.54472612e-74 - art_sys_67: 5.71221852e-71 - art_sys_68: 7.53831935e-69 - art_sys_69: 9.84226570e-55 - art_sys_70: -2.15844985e-57 - art_sys_71: 2.47601794e-51 - art_sys_72: 1.62819517e-38 - art_sys_73: -1.08366855e-16 - art_sys_74: -1.15121762e-15 - art_sys_75: 5.23194668e-15 - art_sys_76: 5.01042163e-34 - art_sys_77: 1.69541061e-35 - art_sys_78: -7.10271885e-36 - art_sys_79: -1.04212893e-14 - art_sys_80: 2.68364414e-33 - art_sys_81: -1.42472166e-13 - art_sys_82: 2.09987779e-12 - art_sys_83: 2.91638665e-30 - art_sys_84: 2.79564671e-12 - art_sys_85: 9.26258479e-13 - art_sys_86: 1.54534691e-30 - art_sys_87: -1.66444942e-31 - art_sys_88: -5.00928347e-31 - art_sys_89: -2.66408032e-31 - art_sys_90: -1.84950613e-32 - art_sys_91: 1.86829128e-31 - art_sys_92: -1.07422508e-31 - art_sys_93: 3.15387946e-32 - art_sys_94: -3.19391448e-32 - art_sys_95: 1.98657193e-31 - art_sys_96: 3.32367788e-31 - art_sys_97: -2.38910836e-32 - art_sys_98: 8.82100706e-32 - art_sys_99: -1.93460806e-32 - art_sys_100: 1.17013210e-32 - art_sys_101: -6.81490439e-32 - art_sys_102: -1.71901637e-32 - art_sys_103: 2.00176942e-32 - art_sys_104: 7.92570892e-33 - art_sys_105: -5.25098226e-32 - art_sys_106: 5.99727055e-33 - art_sys_107: 1.58564774e-31 - art_sys_108: 2.22407949e-30 - art_sys_109: 3.18366301e-32 - art_sys_110: 7.90655031e-32 - art_sys_111: 1.47528032e-32 - art_sys_112: 5.12088558e-32 - art_sys_113: 2.18488730e-32 - art_sys_114: -9.69895814e-33 - art_sys_115: 1.50380438e-30 - art_sys_116: 2.39450741e-33 - art_sys_117: 8.20476692e-34 - art_sys_118: -5.44383358e-31 - art_sys_119: -7.21744565e-32 - art_sys_120: -2.14642785e-29 - art_sys_121: 1.14845790e-30 - art_sys_122: -7.68934031e-31 - art_sys_123: -2.39311390e-30 - art_sys_124: -1.32350567e-30 - art_sys_125: 1.40471676e-31 - art_sys_126: -2.84933312e-30 - art_sys_127: 2.62352475e-31 - art_sys_128: -7.34426985e-31 - art_sys_129: -1.09852920e-30 - art_sys_130: -2.70127298e-30 - art_sys_131: 1.35057185e-29 - art_sys_132: 1.73976674e-30 - art_sys_133: -1.96146469e-30 - art_sys_134: -3.70352791e-23 - art_sys_135: -2.80674888e-30 - art_sys_136: 4.24515633e-30 - art_sys_137: -1.90644067e-22 - art_sys_138: -2.06302854e-35 - art_sys_139: -2.28731033e-29 - art_sys_140: -5.22831691e-27 - art_sys_141: 3.05197432e-26 - art_sys_142: 6.09952498e-25 - art_sys_143: 3.19891775e-21 - art_sys_144: -1.24894195e-19 - art_sys_145: -1.24576472e-20 - art_sys_146: -0.0 - art_sys_147: -5.58852558e-21 - art_sys_148: 4.65964981e-23 - art_sys_149: 4.65964981e-23 - art_sys_150: -2.65076123e-24 - art_sys_151: -2.65076123e-24 - art_sys_152: 2.48095689e-23 - art_sys_153: 1.54368154e-21 - art_sys_154: -9.61255609e-22 - art_sys_155: -1.17385812e-12 - art_sys_156: 1.65560573e-14 - art_sys_157: 1.39629676e-15 - art_sys_158: 0.0 - art_sys_159: 3.21342932e-32 - art_sys_160: 8.84280956e-32 - art_sys_161: 9.13310131e-32 - art_sys_162: 1.02107213e-32 - art_sys_163: -1.82211669e-30 - art_sys_164: 1.58324891e-28 - art_sys_165: 2.55069971e-28 - art_sys_166: 7.44400608e-10 - art_sys_167: 4.49214237e-10 - art_sys_168: 4.00652732e-09 - art_sys_169: 3.99361402e-08 - art_sys_170: -9.70988872e-08 - art_sys_171: -3.11700333e-07 - art_sys_172: 1.27211114e-06 - art_sys_173: -3.83375623e-06 - art_sys_174: 5.81141436e-06 - art_sys_175: 1.73630929e-10 - art_sys_176: 9.08062170e-06 - art_sys_177: -4.20758608e-05 - art_sys_178: 7.13109191e-05 - art_sys_179: 1.45159785e-04 - art_sys_180: -1.88350371e-05 - art_sys_181: 1.04905946e-05 + art_sys_58: 0.0 + art_sys_59: 0.0 + art_sys_60: 0.0 + art_sys_61: 0.0 + art_sys_62: 0.0 + art_sys_63: 0.0 + art_sys_64: 0.0 + art_sys_65: 0.0 + art_sys_66: 0.0 + art_sys_67: 0.0 + art_sys_68: 0.0 + art_sys_69: 0.0 + art_sys_70: 0.0 + art_sys_71: 0.0 + art_sys_72: 9.40118112e-207 + art_sys_73: -5.82719346e-198 + art_sys_74: -1.81649142e-199 + art_sys_75: -8.92244213e-84 + art_sys_76: -1.08366855e-16 + art_sys_77: -1.15121762e-15 + art_sys_78: 5.23194668e-15 + art_sys_79: -3.58695401e-34 + art_sys_80: 1.04212893e-14 + art_sys_81: 2.53043829e-33 + art_sys_82: -2.06804325e-35 + art_sys_83: -1.42472166e-13 + art_sys_84: -2.09987779e-12 + art_sys_85: -2.79564671e-12 + art_sys_86: -9.26258479e-13 + art_sys_87: -5.92304096e-31 + art_sys_88: -5.33101643e-29 + art_sys_89: -7.44400608e-10 + art_sys_90: -1.44698664e-27 + art_sys_91: -5.55703292e-29 + art_sys_92: 4.49214237e-10 + art_sys_93: 4.00652732e-09 + art_sys_94: 1.29190091e-27 + art_sys_95: -2.19288087e-27 + art_sys_96: -1.73303553e-27 + art_sys_97: -1.76702361e-27 + art_sys_98: 4.45111433e-27 + art_sys_99: 2.12135817e-27 + art_sys_100: 1.61579062e-27 + art_sys_101: 1.17465438e-27 + art_sys_102: -3.44671564e-28 + art_sys_103: -5.84775549e-28 + art_sys_104: -1.33909953e-27 + art_sys_105: 1.25830120e-27 + art_sys_106: 1.01889900e-27 + art_sys_107: 3.51020766e-29 + art_sys_108: 1.45751128e-28 + art_sys_109: -2.04041427e-27 + art_sys_110: 4.31368965e-28 + art_sys_111: 3.28249698e-29 + art_sys_112: 1.10522187e-27 + art_sys_113: -1.19738563e-28 + art_sys_114: 1.27554563e-27 + art_sys_115: -5.21745534e-30 + art_sys_116: -1.01048828e-27 + art_sys_117: 3.30732890e-28 + art_sys_118: -3.19054214e-28 + art_sys_119: 5.89814430e-29 + art_sys_120: 3.72673509e-28 + art_sys_121: 7.13163020e-30 + art_sys_122: -2.03963981e-28 + art_sys_123: 3.97871772e-28 + art_sys_124: -4.57542807e-28 + art_sys_125: 9.11484647e-30 + art_sys_126: -2.82105378e-29 + art_sys_127: -4.23640114e-29 + art_sys_128: 1.30087777e-28 + art_sys_129: 6.47236183e-29 + art_sys_130: -2.19387371e-28 + art_sys_131: -3.28073997e-27 + art_sys_132: 1.74649229e-28 + art_sys_133: -1.35710788e-28 + art_sys_134: 1.74349879e-28 + art_sys_135: -8.03891791e-29 + art_sys_136: -6.02387692e-25 + art_sys_137: 5.60234167e-29 + art_sys_138: 4.82990305e-29 + art_sys_139: 1.31984430e-29 + art_sys_140: 1.76800169e-23 + art_sys_141: -4.16622440e-30 + art_sys_142: -7.78801041e-29 + art_sys_143: 6.53796699e-29 + art_sys_144: -1.71660333e-21 + art_sys_145: -8.45964938e-29 + art_sys_146: 8.26432547e-27 + art_sys_147: -1.13599624e-21 + art_sys_148: 6.87567825e-21 + art_sys_149: -1.32265957e-27 + art_sys_150: 2.36390317e-25 + art_sys_151: 5.35175337e-25 + art_sys_152: -3.55284695e-20 + art_sys_153: -3.14645352e-25 + art_sys_154: 1.07463699e-29 + art_sys_155: 1.92038178e-20 + art_sys_156: -0.0 + art_sys_157: 4.59713825e-26 + art_sys_158: -0.0 + art_sys_159: -1.10747447e-24 + art_sys_160: 4.66446649e-21 + art_sys_161: 7.14358829e-24 + art_sys_162: 7.14358829e-24 + art_sys_163: -1.02385030e-21 + art_sys_164: -1.02385030e-21 + art_sys_165: -1.65560573e-14 + art_sys_166: -1.39629676e-15 + art_sys_167: -0.0 + art_sys_168: 3.99361402e-08 + art_sys_169: 9.70988872e-08 + art_sys_170: -3.11700333e-07 + art_sys_171: -1.27211114e-06 + art_sys_172: -3.83375623e-06 + art_sys_173: 5.81141436e-06 + art_sys_174: -9.08062170e-06 + art_sys_175: 4.20758608e-05 + art_sys_176: -7.13109191e-05 + art_sys_177: -1.88350371e-05 + art_sys_178: 1.04905946e-05 + art_sys_179: 1.73630929e-10 + art_sys_180: 1.17385812e-12 + art_sys_181: -1.45159785e-04 art_sys_182: 1.62703354e-06 art_sys_183: -3.24435622e-07 art_sys_184: 5.84119625e-08 - art_sys_185: -5.73421303e-09 + art_sys_185: 5.73421303e-09 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -50057,134 +50057,134 @@ bins: art_sys_55: 0.0 art_sys_56: 0.0 art_sys_57: 0.0 - art_sys_58: 6.72765762e-315 - art_sys_59: -1.42142507e-235 - art_sys_60: -1.56032991e-231 - art_sys_61: 9.25267565e-229 - art_sys_62: -4.57402868e-223 - art_sys_63: -7.07628671e-214 - art_sys_64: 2.17662508e-215 - art_sys_65: -2.35664375e-88 - art_sys_66: -4.40241280e-76 - art_sys_67: 1.62796133e-72 - art_sys_68: 2.14839337e-70 - art_sys_69: 2.80500963e-56 - art_sys_70: -6.15150293e-59 - art_sys_71: 7.05656032e-53 - art_sys_72: 4.64029654e-40 - art_sys_73: -3.08841562e-18 - art_sys_74: -4.96150528e-17 - art_sys_75: 2.23280032e-16 - art_sys_76: 2.13727249e-35 - art_sys_77: 7.23577909e-37 - art_sys_78: -3.06047248e-37 - art_sys_79: -1.55973711e-16 - art_sys_80: 4.70127604e-35 - art_sys_81: 1.35917614e-14 - art_sys_82: 2.44068329e-13 - art_sys_83: 1.24910394e-30 - art_sys_84: 5.70157823e-13 - art_sys_85: 6.85424392e-13 - art_sys_86: 6.82361758e-31 - art_sys_87: 1.11581931e-32 - art_sys_88: -1.95886272e-31 - art_sys_89: -1.81200072e-32 - art_sys_90: 5.33560352e-32 - art_sys_91: 5.22741462e-32 - art_sys_92: -7.58741893e-32 - art_sys_93: -3.49877123e-32 - art_sys_94: -2.27075960e-32 - art_sys_95: 4.93884521e-32 - art_sys_96: 1.62426899e-31 - art_sys_97: -1.00501355e-32 - art_sys_98: 5.29524933e-32 - art_sys_99: 8.68908587e-34 - art_sys_100: 3.08652337e-33 - art_sys_101: -1.27635970e-32 - art_sys_102: -3.40876251e-33 - art_sys_103: 9.31547128e-33 - art_sys_104: -5.35386832e-33 - art_sys_105: -9.51956474e-33 - art_sys_106: 4.17673223e-33 - art_sys_107: 4.41513604e-32 - art_sys_108: -1.64338529e-29 - art_sys_109: 7.86603920e-31 - art_sys_110: 2.64595029e-32 - art_sys_111: 8.23364534e-33 - art_sys_112: 1.58711277e-32 - art_sys_113: 1.73458000e-32 - art_sys_114: -1.02590242e-33 - art_sys_115: -1.12645872e-29 - art_sys_116: 3.14084035e-33 - art_sys_117: 7.95906005e-34 - art_sys_118: 3.79527162e-30 - art_sys_119: 5.06827323e-31 - art_sys_120: 1.59478205e-28 - art_sys_121: -8.98934469e-30 - art_sys_122: 5.73360950e-30 - art_sys_123: 1.77637655e-29 - art_sys_124: 9.71092454e-30 - art_sys_125: -1.06582315e-30 - art_sys_126: 1.94568322e-29 - art_sys_127: -1.81803831e-30 - art_sys_128: 5.46590461e-30 - art_sys_129: 8.07549699e-30 - art_sys_130: 1.67573808e-29 - art_sys_131: -1.01811295e-28 - art_sys_132: -1.31695722e-29 - art_sys_133: 1.71055278e-29 - art_sys_134: -1.36114224e-23 - art_sys_135: 1.96342597e-29 - art_sys_136: -2.35733330e-29 - art_sys_137: 1.37406330e-21 - art_sys_138: 2.38092935e-34 - art_sys_139: -9.25377449e-29 - art_sys_140: -4.23816594e-27 - art_sys_141: 1.75869169e-26 - art_sys_142: 4.11623985e-25 - art_sys_143: -2.28650911e-21 - art_sys_144: 1.03547222e-19 - art_sys_145: 1.05977078e-20 - art_sys_146: -0.0 - art_sys_147: 5.92590808e-21 - art_sys_148: 1.28706882e-23 - art_sys_149: 1.28706882e-23 - art_sys_150: 1.37214697e-24 - art_sys_151: 1.37214697e-24 - art_sys_152: 1.50704710e-23 - art_sys_153: 5.22090918e-22 - art_sys_154: 3.11251850e-22 - art_sys_155: 8.71848270e-12 - art_sys_156: -5.31586306e-14 - art_sys_157: -4.48228136e-15 - art_sys_158: -0.0 - art_sys_159: -5.80086665e-31 - art_sys_160: -6.05137274e-31 - art_sys_161: -4.08817719e-31 - art_sys_162: -1.84181469e-31 - art_sys_163: 1.33873292e-29 - art_sys_164: -1.42641920e-29 - art_sys_165: 1.57857909e-27 - art_sys_166: 2.50460910e-11 - art_sys_167: 8.64467966e-11 - art_sys_168: 5.77653768e-11 - art_sys_169: 1.07194052e-09 - art_sys_170: 8.16774315e-10 - art_sys_171: -2.41879631e-09 - art_sys_172: 1.35541824e-07 - art_sys_173: 2.16672056e-07 - art_sys_174: 1.00066865e-07 - art_sys_175: -5.90891307e-10 - art_sys_176: -5.60925330e-06 - art_sys_177: -9.49007874e-06 - art_sys_178: -2.58820103e-05 - art_sys_179: 3.96582467e-05 - art_sys_180: 9.93104835e-05 - art_sys_181: -1.20583780e-05 + art_sys_58: 0.0 + art_sys_59: 0.0 + art_sys_60: 0.0 + art_sys_61: 0.0 + art_sys_62: 0.0 + art_sys_63: 0.0 + art_sys_64: 0.0 + art_sys_65: 0.0 + art_sys_66: 0.0 + art_sys_67: 0.0 + art_sys_68: 0.0 + art_sys_69: 0.0 + art_sys_70: 0.0 + art_sys_71: 0.0 + art_sys_72: 2.67929193e-208 + art_sys_73: -1.66072244e-199 + art_sys_74: -5.17691421e-201 + art_sys_75: -2.54286329e-85 + art_sys_76: -3.08841562e-18 + art_sys_77: -4.96150528e-17 + art_sys_78: 2.23280032e-16 + art_sys_79: -4.69966214e-36 + art_sys_80: 1.55973711e-16 + art_sys_81: 3.83054655e-35 + art_sys_82: -9.05026456e-37 + art_sys_83: 1.35917614e-14 + art_sys_84: -2.44068329e-13 + art_sys_85: -5.70157823e-13 + art_sys_86: -6.85424392e-13 + art_sys_87: 7.72169181e-31 + art_sys_88: -1.57593356e-30 + art_sys_89: -2.50460910e-11 + art_sys_90: -4.81914994e-29 + art_sys_91: 4.40088619e-30 + art_sys_92: 8.64467966e-11 + art_sys_93: 5.77653768e-11 + art_sys_94: 2.44459030e-29 + art_sys_95: 6.44886468e-30 + art_sys_96: -2.93849918e-29 + art_sys_97: -2.97171566e-29 + art_sys_98: 9.26747585e-29 + art_sys_99: 1.80573740e-29 + art_sys_100: 6.17197685e-29 + art_sys_101: 2.47618441e-29 + art_sys_102: -1.17681366e-29 + art_sys_103: -2.44285442e-30 + art_sys_104: -2.80178572e-29 + art_sys_105: 2.67366900e-29 + art_sys_106: 2.12194561e-29 + art_sys_107: -3.10757459e-29 + art_sys_108: 8.36888385e-30 + art_sys_109: -2.82327235e-29 + art_sys_110: -5.09888530e-30 + art_sys_111: -6.96252909e-30 + art_sys_112: 1.59285293e-29 + art_sys_113: -6.91834448e-30 + art_sys_114: -2.08783566e-30 + art_sys_115: -8.84771784e-30 + art_sys_116: -2.65932147e-29 + art_sys_117: 1.33065798e-29 + art_sys_118: -8.80241653e-30 + art_sys_119: 7.83456456e-31 + art_sys_120: 1.39699333e-29 + art_sys_121: 7.65268192e-30 + art_sys_122: 5.51377432e-30 + art_sys_123: 1.23617981e-29 + art_sys_124: -3.76638923e-30 + art_sys_125: 2.12714749e-30 + art_sys_126: -4.96058492e-30 + art_sys_127: -5.08115616e-30 + art_sys_128: 1.67643123e-30 + art_sys_129: -6.42854711e-30 + art_sys_130: -6.98751571e-30 + art_sys_131: -3.55264298e-29 + art_sys_132: 4.64425852e-30 + art_sys_133: -1.51195009e-30 + art_sys_134: 3.03734521e-30 + art_sys_135: -5.75332192e-31 + art_sys_136: -8.64024671e-26 + art_sys_137: 8.85116767e-31 + art_sys_138: 2.57312375e-31 + art_sys_139: 5.05962749e-32 + art_sys_140: -1.18973575e-22 + art_sys_141: -1.28190340e-30 + art_sys_142: -1.59012656e-30 + art_sys_143: 1.13317941e-30 + art_sys_144: 4.53994397e-21 + art_sys_145: -2.02359427e-30 + art_sys_146: 6.10813057e-28 + art_sys_147: -7.82202271e-22 + art_sys_148: -5.94480996e-21 + art_sys_149: -6.58068625e-28 + art_sys_150: 1.21728470e-25 + art_sys_151: 1.05962790e-24 + art_sys_152: 3.23069835e-20 + art_sys_153: -1.25850648e-24 + art_sys_154: 1.77990126e-31 + art_sys_155: -1.41031761e-20 + art_sys_156: 0.0 + art_sys_157: 1.28095750e-25 + art_sys_158: 0.0 + art_sys_159: -6.43815837e-25 + art_sys_160: -4.54089721e-21 + art_sys_161: -6.51494413e-24 + art_sys_162: -6.51494413e-24 + art_sys_163: 4.07189168e-22 + art_sys_164: 4.07189168e-22 + art_sys_165: 5.31586306e-14 + art_sys_166: 4.48228136e-15 + art_sys_167: 0.0 + art_sys_168: 1.07194052e-09 + art_sys_169: -8.16774315e-10 + art_sys_170: -2.41879631e-09 + art_sys_171: -1.35541824e-07 + art_sys_172: 2.16672056e-07 + art_sys_173: 1.00066865e-07 + art_sys_174: 5.60925330e-06 + art_sys_175: 9.49007874e-06 + art_sys_176: 2.58820103e-05 + art_sys_177: 9.93104835e-05 + art_sys_178: -1.20583780e-05 + art_sys_179: -5.90891307e-10 + art_sys_180: -8.71848270e-12 + art_sys_181: -3.96582467e-05 art_sys_182: -6.08325269e-06 art_sys_183: 8.30447847e-07 art_sys_184: -1.78645898e-07 - art_sys_185: 1.46879142e-08 + art_sys_185: -1.46879142e-08 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -50348,134 +50348,134 @@ bins: art_sys_55: 0.0 art_sys_56: 0.0 art_sys_57: 0.0 - art_sys_58: 1.53650404e-316 - art_sys_59: -3.24695766e-237 - art_sys_60: -3.56425763e-233 - art_sys_61: 2.11358634e-230 - art_sys_62: -1.04484421e-224 - art_sys_63: -1.61643437e-215 - art_sys_64: 4.97205911e-217 - art_sys_65: -5.38327531e-90 - art_sys_66: -1.00564203e-77 - art_sys_67: 3.71874792e-74 - art_sys_68: 4.90756951e-72 - art_sys_69: 6.40747636e-58 - art_sys_70: -1.40518625e-60 - art_sys_71: 1.61192828e-54 - art_sys_72: 1.05998176e-41 - art_sys_73: -7.05485994e-20 - art_sys_74: -2.03420626e-18 - art_sys_75: 9.28789434e-18 - art_sys_76: 8.86847123e-37 - art_sys_77: 3.00833215e-38 - art_sys_78: -1.25704186e-38 - art_sys_79: 7.35012951e-19 - art_sys_80: 2.65909542e-37 - art_sys_81: 1.87522118e-15 - art_sys_82: 1.41718951e-14 - art_sys_83: 6.33080141e-32 - art_sys_84: 4.53663004e-14 - art_sys_85: 6.69936006e-14 - art_sys_86: 6.36016554e-32 - art_sys_87: 2.03975300e-33 - art_sys_88: -1.79839422e-32 - art_sys_89: -5.51162200e-34 - art_sys_90: 5.67881725e-33 - art_sys_91: 4.52306758e-33 - art_sys_92: -7.37854549e-33 - art_sys_93: -3.83561184e-33 - art_sys_94: -2.21352153e-33 - art_sys_95: 4.38725759e-33 - art_sys_96: 1.52316348e-32 - art_sys_97: -9.22838561e-34 - art_sys_98: 5.09255497e-33 - art_sys_99: 2.01281633e-34 - art_sys_100: 2.66895225e-34 - art_sys_101: -8.75633912e-34 - art_sys_102: -2.51038981e-34 - art_sys_103: 8.71722971e-34 - art_sys_104: -6.00112104e-34 - art_sys_105: -7.23920372e-34 - art_sys_106: 4.05644825e-34 - art_sys_107: 3.82006464e-33 - art_sys_108: 1.70050768e-29 - art_sys_109: -7.09037300e-31 - art_sys_110: 2.44268976e-33 - art_sys_111: 7.84288924e-34 - art_sys_112: 1.40148027e-33 - art_sys_113: 1.08415214e-32 - art_sys_114: -5.52878586e-35 - art_sys_115: 1.16599010e-29 - art_sys_116: -1.51430335e-34 - art_sys_117: -9.91663298e-35 - art_sys_118: -4.02800601e-30 - art_sys_119: -5.25462779e-31 - art_sys_120: -1.64986761e-28 - art_sys_121: 8.90629038e-30 - art_sys_122: -5.93117509e-30 - art_sys_123: -1.83765881e-29 - art_sys_124: -1.01772279e-29 - art_sys_125: 1.03875656e-30 - art_sys_126: -2.24153657e-29 - art_sys_127: 2.08829870e-30 - art_sys_128: -5.69830667e-30 - art_sys_129: -8.40419045e-30 - art_sys_130: -2.13662115e-29 - art_sys_131: 1.03277847e-28 - art_sys_132: 1.32395369e-29 - art_sys_133: -1.66492675e-29 - art_sys_134: 1.33680278e-24 - art_sys_135: -2.19479526e-29 - art_sys_136: 2.75700003e-29 - art_sys_137: 2.47124889e-22 - art_sys_138: 2.50805104e-35 - art_sys_139: 7.38882325e-29 - art_sys_140: 7.80916415e-28 - art_sys_141: -3.67759770e-28 - art_sys_142: -2.03985930e-26 - art_sys_143: 1.03679646e-21 - art_sys_144: -6.45451468e-20 - art_sys_145: -7.73416808e-21 - art_sys_146: -0.0 - art_sys_147: -4.55249641e-21 - art_sys_148: 9.16713720e-24 - art_sys_149: 9.16713720e-24 - art_sys_150: -3.18303638e-25 - art_sys_151: -3.18303638e-25 - art_sys_152: 6.10809561e-24 - art_sys_153: -2.41888742e-22 - art_sys_154: -1.30827988e-22 - art_sys_155: -8.99477014e-12 - art_sys_156: 1.38154194e-13 - art_sys_157: 1.32439370e-14 + art_sys_58: 0.0 + art_sys_59: 0.0 + art_sys_60: 0.0 + art_sys_61: 0.0 + art_sys_62: 0.0 + art_sys_63: 0.0 + art_sys_64: 0.0 + art_sys_65: 0.0 + art_sys_66: 0.0 + art_sys_67: 0.0 + art_sys_68: 0.0 + art_sys_69: 0.0 + art_sys_70: 0.0 + art_sys_71: 0.0 + art_sys_72: 6.12024501e-210 + art_sys_73: -3.79355011e-201 + art_sys_74: -1.18255062e-202 + art_sys_75: -5.80865613e-87 + art_sys_76: -7.05485994e-20 + art_sys_77: -2.03420626e-18 + art_sys_78: 9.28789434e-18 + art_sys_79: -2.70909303e-37 + art_sys_80: -7.35012951e-19 + art_sys_81: -1.48058548e-37 + art_sys_82: -3.82403363e-38 + art_sys_83: 1.87522118e-15 + art_sys_84: -1.41718951e-14 + art_sys_85: -4.53663004e-14 + art_sys_86: -6.69936006e-14 + art_sys_87: 8.59211259e-32 + art_sys_88: 1.71444199e-31 + art_sys_89: 2.05112942e-12 + art_sys_90: 3.98550034e-30 + art_sys_91: -1.43897341e-31 + art_sys_92: -4.40390859e-12 + art_sys_93: -9.52340230e-12 + art_sys_94: -2.84873393e-30 + art_sys_95: 3.49623331e-30 + art_sys_96: 4.23576613e-30 + art_sys_97: 4.52958299e-30 + art_sys_98: -1.17390311e-29 + art_sys_99: -4.45007808e-30 + art_sys_100: -5.41407575e-30 + art_sys_101: -3.08289929e-30 + art_sys_102: 1.22264214e-30 + art_sys_103: 1.09504262e-30 + art_sys_104: 3.48524313e-30 + art_sys_105: -3.38354425e-30 + art_sys_106: -2.37243948e-30 + art_sys_107: 1.19053860e-30 + art_sys_108: -1.14389433e-30 + art_sys_109: 4.79401582e-30 + art_sys_110: -4.96908095e-31 + art_sys_111: 1.76887160e-31 + art_sys_112: -2.63322955e-30 + art_sys_113: 5.27651822e-31 + art_sys_114: -2.19315366e-30 + art_sys_115: 3.81880063e-31 + art_sys_116: 2.90285401e-30 + art_sys_117: -1.21586617e-30 + art_sys_118: 9.39195208e-31 + art_sys_119: -1.22553370e-31 + art_sys_120: -1.22697845e-30 + art_sys_121: -3.16737664e-31 + art_sys_122: 1.47764583e-31 + art_sys_123: -1.22229482e-30 + art_sys_124: 9.74845249e-31 + art_sys_125: -1.14004993e-31 + art_sys_126: 2.49063340e-31 + art_sys_127: 3.03141061e-31 + art_sys_128: -2.92803347e-31 + art_sys_129: 1.29979319e-31 + art_sys_130: 7.34614347e-31 + art_sys_131: 2.15621164e-29 + art_sys_132: -5.01521920e-31 + art_sys_133: 3.04233392e-31 + art_sys_134: -4.30657469e-31 + art_sys_135: 1.66711645e-31 + art_sys_136: 1.91026302e-27 + art_sys_137: -1.31797573e-31 + art_sys_138: -9.70222928e-32 + art_sys_139: -3.56954754e-33 + art_sys_140: -1.53374192e-22 + art_sys_141: 6.62083686e-32 + art_sys_142: 2.03761138e-31 + art_sys_143: 8.68825429e-31 + art_sys_144: -2.12843382e-21 + art_sys_145: 3.66395606e-31 + art_sys_146: 5.77925250e-28 + art_sys_147: -1.59042031e-21 + art_sys_148: 3.02566852e-21 + art_sys_149: -1.34422948e-27 + art_sys_150: 2.50341301e-25 + art_sys_151: 2.41978103e-24 + art_sys_152: -2.34961770e-20 + art_sys_153: -3.01172467e-24 + art_sys_154: -2.59723835e-32 + art_sys_155: 9.46911558e-21 + art_sys_156: 0.0 + art_sys_157: 4.13791309e-25 art_sys_158: 0.0 - art_sys_159: 5.29541548e-31 - art_sys_160: 4.88073170e-31 - art_sys_161: 4.07081553e-31 - art_sys_162: 1.83529749e-31 - art_sys_163: -1.34739418e-29 - art_sys_164: 1.76128066e-29 - art_sys_165: -2.29468972e-26 - art_sys_166: -2.05112942e-12 - art_sys_167: -4.40390859e-12 - art_sys_168: -9.52340230e-12 - art_sys_169: -4.44785513e-10 - art_sys_170: 3.09873485e-10 - art_sys_171: 3.51394825e-09 - art_sys_172: -8.49803566e-09 - art_sys_173: 1.01265580e-07 - art_sys_174: -1.31578849e-07 - art_sys_175: 1.78384146e-09 - art_sys_176: -3.38681443e-07 - art_sys_177: 3.33993778e-06 - art_sys_178: -4.87642831e-06 - art_sys_179: -1.75284873e-05 - art_sys_180: 2.40093284e-05 - art_sys_181: 6.66461828e-05 + art_sys_159: -4.71374810e-24 + art_sys_160: 2.90894723e-21 + art_sys_161: 5.02438823e-24 + art_sys_162: 5.02438823e-24 + art_sys_163: -4.64872922e-22 + art_sys_164: -4.64872922e-22 + art_sys_165: -1.38154194e-13 + art_sys_166: -1.32439370e-14 + art_sys_167: -0.0 + art_sys_168: -4.44785513e-10 + art_sys_169: -3.09873485e-10 + art_sys_170: 3.51394825e-09 + art_sys_171: 8.49803566e-09 + art_sys_172: 1.01265580e-07 + art_sys_173: -1.31578849e-07 + art_sys_174: 3.38681443e-07 + art_sys_175: -3.33993778e-06 + art_sys_176: 4.87642831e-06 + art_sys_177: 2.40093284e-05 + art_sys_178: 6.66461828e-05 + art_sys_179: 1.78384146e-09 + art_sys_180: 8.99477014e-12 + art_sys_181: 1.75284873e-05 art_sys_182: 6.44617854e-06 art_sys_183: -3.20841382e-06 art_sys_184: 4.54733327e-07 - art_sys_185: -6.69527873e-08 + art_sys_185: 6.69527873e-08 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -50639,134 +50639,134 @@ bins: art_sys_55: 0.0 art_sys_56: 0.0 art_sys_57: 0.0 - art_sys_58: 1.37574555e-318 - art_sys_59: -2.91195208e-239 - art_sys_60: -3.19651455e-235 - art_sys_61: 1.89551659e-232 - art_sys_62: -9.37042169e-227 - art_sys_63: -1.44965839e-217 - art_sys_64: 4.45906579e-219 - art_sys_65: -4.82785478e-92 - art_sys_66: -9.01884711e-80 - art_sys_67: 3.33506534e-76 - art_sys_68: 4.40123001e-74 - art_sys_69: 5.74638367e-60 - art_sys_70: -1.26020587e-62 - art_sys_71: 1.44561725e-56 - art_sys_72: 9.50617921e-44 - art_sys_73: -6.32697332e-22 - art_sys_74: -8.66572271e-20 - art_sys_75: 4.24065718e-19 - art_sys_76: 4.02060126e-38 - art_sys_77: 1.36952902e-39 - art_sys_78: -5.38271105e-40 - art_sys_79: -2.51834783e-19 - art_sys_80: 7.86749833e-38 - art_sys_81: 1.05031275e-16 - art_sys_82: 5.30665500e-16 - art_sys_83: 4.20211771e-33 - art_sys_84: 2.10518437e-15 - art_sys_85: 3.15751051e-15 - art_sys_86: 2.93602391e-33 - art_sys_87: 1.05538107e-34 - art_sys_88: -8.40831947e-34 - art_sys_89: -3.04802627e-35 - art_sys_90: 2.70961751e-34 - art_sys_91: 2.11486302e-34 - art_sys_92: -3.45905084e-34 - art_sys_93: -1.84514958e-34 - art_sys_94: -1.04443540e-34 - art_sys_95: 2.10824121e-34 - art_sys_96: 7.04930124e-34 - art_sys_97: -4.34564276e-35 - art_sys_98: 2.39765103e-34 - art_sys_99: 1.14707367e-35 - art_sys_100: 1.29966996e-35 - art_sys_101: -3.90124247e-35 - art_sys_102: -1.16800508e-35 - art_sys_103: 4.05342462e-35 - art_sys_104: -2.81261211e-35 - art_sys_105: -3.28030924e-35 - art_sys_106: 1.93266058e-35 - art_sys_107: 1.39015802e-34 - art_sys_108: -5.07857939e-29 - art_sys_109: 1.99246392e-30 - art_sys_110: 1.10692607e-34 - art_sys_111: 3.67402231e-35 - art_sys_112: 4.86422938e-35 - art_sys_113: -2.07503741e-32 - art_sys_114: -1.86213455e-36 - art_sys_115: -3.48209223e-29 - art_sys_116: 1.17408273e-33 - art_sys_117: 4.93315949e-34 - art_sys_118: 1.26757596e-29 - art_sys_119: 1.56904244e-30 - art_sys_120: 4.92735348e-28 - art_sys_121: -2.37939853e-29 - art_sys_122: 1.77135695e-29 - art_sys_123: 5.47549595e-29 - art_sys_124: 3.15595539e-29 - art_sys_125: -3.15412662e-30 - art_sys_126: 7.28936291e-29 - art_sys_127: -6.80456241e-30 - art_sys_128: 1.67251567e-29 - art_sys_129: 2.51047525e-29 - art_sys_130: 7.85912110e-29 - art_sys_131: -3.03770775e-28 - art_sys_132: -3.89700623e-29 - art_sys_133: 4.76761111e-29 - art_sys_134: 1.33050446e-24 - art_sys_135: 6.91614217e-29 - art_sys_136: -8.77593043e-29 - art_sys_137: -1.03611150e-22 - art_sys_138: 1.48762193e-36 - art_sys_139: -2.11849001e-28 - art_sys_140: -1.31366966e-27 - art_sys_141: 4.97691494e-28 - art_sys_142: 3.24183749e-27 - art_sys_143: -1.00092938e-21 - art_sys_144: 4.70603133e-20 - art_sys_145: 9.84125481e-21 - art_sys_146: 0.0 - art_sys_147: 6.07294301e-21 - art_sys_148: -1.66310786e-23 - art_sys_149: -1.66310786e-23 - art_sys_150: -1.67703362e-24 - art_sys_151: -1.67703362e-24 - art_sys_152: -2.17013322e-23 - art_sys_153: 1.24560085e-21 - art_sys_154: -2.27261393e-22 - art_sys_155: 2.70906361e-11 - art_sys_156: -7.40067797e-13 - art_sys_157: -5.17306702e-14 - art_sys_158: -0.0 - art_sys_159: -1.71896739e-30 - art_sys_160: -1.23857301e-30 - art_sys_161: -1.06413021e-30 - art_sys_162: -5.19296630e-31 - art_sys_163: 3.99730872e-29 - art_sys_164: -4.71846323e-29 - art_sys_165: 7.13898064e-26 - art_sys_166: -2.37541087e-13 - art_sys_167: -1.37609316e-12 - art_sys_168: -1.00532884e-13 - art_sys_169: -5.40817654e-11 - art_sys_170: -1.71803021e-11 - art_sys_171: 3.41049313e-10 - art_sys_172: -1.82750865e-09 - art_sys_173: 7.82362843e-09 - art_sys_174: -1.19128919e-08 - art_sys_175: -5.46893852e-09 - art_sys_176: 2.38318048e-07 - art_sys_177: 3.86162265e-07 - art_sys_178: 1.85374723e-06 - art_sys_179: -2.15308341e-06 - art_sys_180: -1.11809832e-05 - art_sys_181: 1.31646391e-05 + art_sys_58: 0.0 + art_sys_59: 0.0 + art_sys_60: 0.0 + art_sys_61: 0.0 + art_sys_62: 0.0 + art_sys_63: 0.0 + art_sys_64: 0.0 + art_sys_65: 0.0 + art_sys_66: 0.0 + art_sys_67: 0.0 + art_sys_68: 0.0 + art_sys_69: 0.0 + art_sys_70: 0.0 + art_sys_71: 0.0 + art_sys_72: 5.48837178e-212 + art_sys_73: -3.40189214e-203 + art_sys_74: -1.06046040e-204 + art_sys_75: -5.20934684e-89 + art_sys_76: -6.32697332e-22 + art_sys_77: -8.66572271e-20 + art_sys_78: 4.24065718e-19 + art_sys_79: -2.05735165e-38 + art_sys_80: 2.51834783e-19 + art_sys_81: 6.23061112e-38 + art_sys_82: -1.72774494e-39 + art_sys_83: 1.05031275e-16 + art_sys_84: -5.30665500e-16 + art_sys_85: -2.10518437e-15 + art_sys_86: -3.15751051e-15 + art_sys_87: 4.14175189e-33 + art_sys_88: 1.84321014e-32 + art_sys_89: 2.37541087e-13 + art_sys_90: 4.59545081e-31 + art_sys_91: -6.77819704e-32 + art_sys_92: -1.37609316e-12 + art_sys_93: -1.00532884e-13 + art_sys_94: 1.56177635e-31 + art_sys_95: -6.02864500e-31 + art_sys_96: 1.13856326e-31 + art_sys_97: 1.30238180e-31 + art_sys_98: -5.95439441e-31 + art_sys_99: 1.66351537e-31 + art_sys_100: -6.94214858e-31 + art_sys_101: -1.61136725e-31 + art_sys_102: 1.56606439e-31 + art_sys_103: -9.11509905e-32 + art_sys_104: 1.77477126e-31 + art_sys_105: -1.82328356e-31 + art_sys_106: 1.50301884e-32 + art_sys_107: 5.60004280e-31 + art_sys_108: -1.50457498e-31 + art_sys_109: 3.07730528e-32 + art_sys_110: 1.87106715e-31 + art_sys_111: 1.03191139e-31 + art_sys_112: -2.80812808e-32 + art_sys_113: 8.98040531e-32 + art_sys_114: 3.10897791e-31 + art_sys_115: 1.50133353e-31 + art_sys_116: 2.31536957e-31 + art_sys_117: -1.69943475e-31 + art_sys_118: 8.01477552e-32 + art_sys_119: 8.15389738e-34 + art_sys_120: -1.55357855e-31 + art_sys_121: -1.29322199e-31 + art_sys_122: -1.36802953e-31 + art_sys_123: -1.23007861e-31 + art_sys_124: -3.63710518e-32 + art_sys_125: -3.50502042e-32 + art_sys_126: 7.77460810e-32 + art_sys_127: 7.56232595e-32 + art_sys_128: 7.89777283e-34 + art_sys_129: 1.32319414e-31 + art_sys_130: 7.13120858e-32 + art_sys_131: 8.19574273e-31 + art_sys_132: -4.04534826e-32 + art_sys_133: -4.34762851e-33 + art_sys_134: -1.28002279e-32 + art_sys_135: -7.95115232e-33 + art_sys_136: 6.30248527e-28 + art_sys_137: -1.03879199e-33 + art_sys_138: 6.18567673e-33 + art_sys_139: -7.82280129e-32 + art_sys_140: -1.06641221e-23 + art_sys_141: 2.02382518e-32 + art_sys_142: 9.98375589e-33 + art_sys_143: 1.51025538e-31 + art_sys_144: -1.06059704e-21 + art_sys_145: 3.32842237e-32 + art_sys_146: 7.38738656e-29 + art_sys_147: -4.77199689e-22 + art_sys_148: -2.35373931e-21 + art_sys_149: -1.62496887e-28 + art_sys_150: 3.02530373e-26 + art_sys_151: 2.92884626e-25 + art_sys_152: 1.53476862e-20 + art_sys_153: -3.71681301e-25 + art_sys_154: -5.98103166e-34 + art_sys_155: -5.19735426e-21 + art_sys_156: 0.0 + art_sys_157: 6.29221238e-26 + art_sys_158: 0.0 + art_sys_159: -7.94410163e-25 + art_sys_160: -2.00661284e-21 + art_sys_161: 1.79888455e-24 + art_sys_162: 1.79888455e-24 + art_sys_163: 2.82876966e-22 + art_sys_164: 2.82876966e-22 + art_sys_165: 7.40067797e-13 + art_sys_166: 5.17306702e-14 + art_sys_167: 0.0 + art_sys_168: -5.40817654e-11 + art_sys_169: 1.71803021e-11 + art_sys_170: 3.41049313e-10 + art_sys_171: 1.82750865e-09 + art_sys_172: 7.82362843e-09 + art_sys_173: -1.19128919e-08 + art_sys_174: -2.38318048e-07 + art_sys_175: -3.86162265e-07 + art_sys_176: -1.85374723e-06 + art_sys_177: -1.11809832e-05 + art_sys_178: 1.31646391e-05 + art_sys_179: -5.46893852e-09 + art_sys_180: -2.70906361e-11 + art_sys_181: 2.15308341e-06 art_sys_182: -4.32352603e-05 art_sys_183: 3.53972035e-06 art_sys_184: -1.92044125e-06 - art_sys_185: 8.08989780e-08 + art_sys_185: -8.08989780e-08 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -50930,134 +50930,134 @@ bins: art_sys_55: 0.0 art_sys_56: 0.0 art_sys_57: 0.0 - art_sys_58: -1.06644070e-319 - art_sys_59: 2.25067516e-240 - art_sys_60: 2.47061617e-236 - art_sys_61: -1.46506261e-233 - art_sys_62: 7.24248709e-228 - art_sys_63: 1.12045461e-218 - art_sys_64: -3.44645390e-220 - art_sys_65: 3.73149423e-93 - art_sys_66: 6.97075151e-81 - art_sys_67: -2.57770328e-77 - art_sys_68: -3.40175195e-75 - art_sys_69: -4.44143383e-61 - art_sys_70: 9.74024933e-64 - art_sys_71: -1.11733113e-57 - art_sys_72: -7.34741506e-45 - art_sys_73: 4.89017701e-23 - art_sys_74: -3.02785462e-21 - art_sys_75: 1.60304190e-20 - art_sys_76: 1.50903656e-39 - art_sys_77: 5.16096480e-41 - art_sys_78: -1.89052986e-41 - art_sys_79: -2.48508140e-20 - art_sys_80: 6.55128580e-39 - art_sys_81: 3.43402357e-18 - art_sys_82: 1.47218484e-17 - art_sys_83: 1.69295747e-34 - art_sys_84: 6.30703000e-17 - art_sys_85: 7.99229009e-17 - art_sys_86: 7.25797120e-35 - art_sys_87: 2.25484150e-36 - art_sys_88: -2.20820877e-35 - art_sys_89: -1.76001929e-36 - art_sys_90: 6.56139530e-36 - art_sys_91: 5.91496149e-36 - art_sys_92: -8.66376686e-36 - art_sys_93: -4.45636669e-36 - art_sys_94: -2.65905027e-36 - art_sys_95: 5.66560567e-36 - art_sys_96: 1.76456224e-35 - art_sys_97: -1.14244671e-36 - art_sys_98: 6.14755719e-36 - art_sys_99: 3.00071998e-37 - art_sys_100: 4.00430701e-37 - art_sys_101: -1.34470280e-36 - art_sys_102: -3.51680151e-37 - art_sys_103: 1.02984136e-36 - art_sys_104: -6.11173478e-37 - art_sys_105: -9.76557564e-37 - art_sys_106: 5.08683253e-37 - art_sys_107: 8.28269961e-34 - art_sys_108: 1.09461294e-27 - art_sys_109: -5.06706896e-29 - art_sys_110: 3.01019228e-36 - art_sys_111: 9.38039459e-37 - art_sys_112: 3.40514367e-34 - art_sys_113: 7.15264461e-31 - art_sys_114: -8.54506665e-37 - art_sys_115: 7.50520484e-28 - art_sys_116: -2.50134839e-32 - art_sys_117: -1.05591970e-32 - art_sys_118: -2.48069580e-28 - art_sys_119: -3.38196258e-29 - art_sys_120: -1.06206179e-26 - art_sys_121: 6.20937099e-28 - art_sys_122: -3.81812285e-28 - art_sys_123: -1.18393983e-27 - art_sys_124: -6.37524810e-28 - art_sys_125: 7.10829441e-29 - art_sys_126: -1.23868657e-27 - art_sys_127: 1.15660757e-28 - art_sys_128: -3.65796562e-28 - art_sys_129: -5.37558289e-28 - art_sys_130: -9.84819965e-28 - art_sys_131: 6.82696998e-27 - art_sys_132: 8.83646381e-28 - art_sys_133: -1.15110243e-27 - art_sys_134: -4.05238778e-25 - art_sys_135: -1.27138992e-27 - art_sys_136: 1.60722202e-27 - art_sys_137: -4.95157626e-23 - art_sys_138: -6.34736755e-36 - art_sys_139: 4.56997755e-27 - art_sys_140: 1.07225271e-26 - art_sys_141: -5.04007473e-27 - art_sys_142: -1.57990923e-25 - art_sys_143: 1.29233773e-21 - art_sys_144: -3.31560406e-20 - art_sys_145: -1.32806539e-20 - art_sys_146: -0.0 - art_sys_147: -4.62561001e-21 - art_sys_148: 9.76824319e-24 - art_sys_149: 9.76824319e-24 - art_sys_150: 1.27117801e-24 - art_sys_151: 1.27117801e-24 - art_sys_152: 3.23732252e-23 - art_sys_153: -3.52240709e-22 - art_sys_154: 2.93693807e-23 - art_sys_155: -5.79181783e-10 - art_sys_156: 6.73456121e-13 - art_sys_157: 1.55456698e-13 - art_sys_158: 0.0 - art_sys_159: 3.70033198e-29 - art_sys_160: 4.35039238e-29 - art_sys_161: 2.99358443e-29 - art_sys_162: 1.21966856e-29 - art_sys_163: -9.16763120e-28 - art_sys_164: 1.02419060e-28 - art_sys_165: -2.99996197e-25 - art_sys_166: -9.64950578e-15 - art_sys_167: -1.00314439e-13 - art_sys_168: 4.64327510e-14 - art_sys_169: -2.57706171e-12 - art_sys_170: -2.08729600e-12 - art_sys_171: 1.37012707e-11 - art_sys_172: -2.29484171e-11 - art_sys_173: 1.80653894e-10 - art_sys_174: 3.26091276e-10 - art_sys_175: 2.35600052e-08 - art_sys_176: 8.68384866e-09 - art_sys_177: -1.32393082e-07 - art_sys_178: 1.57306862e-07 - art_sys_179: 1.07286325e-06 - art_sys_180: -1.04739491e-06 - art_sys_181: -6.64654779e-06 + art_sys_58: 0.0 + art_sys_59: 0.0 + art_sys_60: 0.0 + art_sys_61: 0.0 + art_sys_62: 0.0 + art_sys_63: 0.0 + art_sys_64: 0.0 + art_sys_65: 0.0 + art_sys_66: 0.0 + art_sys_67: 0.0 + art_sys_68: 0.0 + art_sys_69: 0.0 + art_sys_70: 0.0 + art_sys_71: 0.0 + art_sys_72: -4.24260496e-213 + art_sys_73: 2.62972062e-204 + art_sys_74: 8.19753966e-206 + art_sys_75: 4.02635303e-90 + art_sys_76: 4.89017701e-23 + art_sys_77: -3.02785462e-21 + art_sys_78: 1.60304190e-20 + art_sys_79: -1.15661600e-39 + art_sys_80: 2.48508140e-20 + art_sys_81: 6.06255217e-39 + art_sys_82: -6.42740825e-41 + art_sys_83: 3.43402357e-18 + art_sys_84: -1.47218484e-17 + art_sys_85: -6.30703000e-17 + art_sys_86: -7.99229009e-17 + art_sys_87: 9.97070509e-35 + art_sys_88: 7.39017280e-34 + art_sys_89: 9.64950578e-15 + art_sys_90: 1.83337371e-32 + art_sys_91: -4.86193952e-33 + art_sys_92: -1.00314439e-13 + art_sys_93: 4.64327510e-14 + art_sys_94: 3.87423953e-32 + art_sys_95: -7.55088403e-32 + art_sys_96: -1.43302182e-32 + art_sys_97: -1.45180981e-32 + art_sys_98: 1.39979427e-32 + art_sys_99: 4.12564759e-32 + art_sys_100: -3.18813550e-32 + art_sys_101: 3.25060289e-33 + art_sys_102: 7.84691244e-33 + art_sys_103: -1.47645484e-32 + art_sys_104: -4.13958409e-33 + art_sys_105: 3.09180646e-33 + art_sys_106: 6.73764243e-33 + art_sys_107: 4.64415697e-32 + art_sys_108: -1.30271149e-32 + art_sys_109: -2.51861611e-32 + art_sys_110: 2.00416570e-32 + art_sys_111: 5.87077753e-33 + art_sys_112: 1.28114549e-32 + art_sys_113: 4.85749838e-33 + art_sys_114: 4.06093872e-32 + art_sys_115: 1.15218782e-32 + art_sys_116: 4.25417685e-33 + art_sys_117: -8.45014842e-33 + art_sys_118: 1.85560468e-33 + art_sys_119: 7.97495969e-34 + art_sys_120: -6.95694381e-33 + art_sys_121: -1.01236335e-32 + art_sys_122: -1.34144899e-32 + art_sys_123: -4.12442510e-33 + art_sys_124: -9.02778186e-33 + art_sys_125: -2.50107650e-33 + art_sys_126: 5.66204806e-33 + art_sys_127: 5.19358956e-33 + art_sys_128: 1.78622812e-33 + art_sys_129: -3.16472946e-32 + art_sys_130: 1.34839771e-33 + art_sys_131: -1.11908838e-31 + art_sys_132: -7.73484682e-34 + art_sys_133: -2.24364443e-33 + art_sys_134: 1.34654506e-33 + art_sys_135: -1.70244149e-33 + art_sys_136: 4.34402355e-28 + art_sys_137: -3.84887136e-33 + art_sys_138: 1.13161805e-33 + art_sys_139: 2.34665760e-31 + art_sys_140: 1.37491171e-23 + art_sys_141: 3.52810167e-33 + art_sys_142: -2.85859558e-34 + art_sys_143: 2.38754373e-31 + art_sys_144: 2.67672252e-22 + art_sys_145: -1.11620320e-32 + art_sys_146: -4.75816258e-29 + art_sys_147: 1.68348365e-22 + art_sys_148: 1.39027017e-21 + art_sys_149: 1.28523247e-28 + art_sys_150: -2.39159833e-26 + art_sys_151: -2.28059721e-25 + art_sys_152: -1.03204164e-20 + art_sys_153: 2.84367719e-25 + art_sys_154: 5.99119316e-35 + art_sys_155: 6.05637211e-21 + art_sys_156: -0.0 + art_sys_157: -4.48474262e-26 + art_sys_158: -0.0 + art_sys_159: 4.52893922e-25 + art_sys_160: 3.25952535e-21 + art_sys_161: -5.84784675e-25 + art_sys_162: -5.84784675e-25 + art_sys_163: -1.40711044e-22 + art_sys_164: -1.40711044e-22 + art_sys_165: -6.73456121e-13 + art_sys_166: -1.55456698e-13 + art_sys_167: -0.0 + art_sys_168: -2.57706171e-12 + art_sys_169: 2.08729600e-12 + art_sys_170: 1.37012707e-11 + art_sys_171: 2.29484171e-11 + art_sys_172: 1.80653894e-10 + art_sys_173: 3.26091276e-10 + art_sys_174: -8.68384866e-09 + art_sys_175: 1.32393082e-07 + art_sys_176: -1.57306862e-07 + art_sys_177: -1.04739491e-06 + art_sys_178: -6.64654779e-06 + art_sys_179: 2.35600052e-08 + art_sys_180: 5.79181783e-10 + art_sys_181: -1.07286325e-06 art_sys_182: -7.23908953e-06 art_sys_183: -2.69989030e-05 art_sys_184: 2.13951448e-06 - art_sys_185: -7.13668928e-07 + art_sys_185: 7.13668928e-07 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -51221,134 +51221,134 @@ bins: art_sys_55: 0.0 art_sys_56: 0.0 art_sys_57: 0.0 - art_sys_58: -6.37838749e-321 - art_sys_59: 1.34563477e-241 - art_sys_60: 1.47713321e-237 - art_sys_61: -8.75932352e-235 - art_sys_62: 4.33014174e-229 - art_sys_63: 6.69897952e-220 - art_sys_64: -2.06056756e-221 - art_sys_65: 2.23098762e-94 - art_sys_66: 4.16767637e-82 - art_sys_67: -1.54115851e-78 - art_sys_68: -2.03384114e-76 - art_sys_69: -2.65544666e-62 - art_sys_70: 5.82350510e-65 - art_sys_71: -6.68030488e-59 - art_sys_72: -4.39287616e-46 - art_sys_73: 2.92374146e-24 - art_sys_74: -7.54411463e-23 - art_sys_75: 4.16499482e-22 - art_sys_76: 3.90535908e-41 - art_sys_77: 1.33868615e-42 - art_sys_78: -4.72542527e-43 - art_sys_79: -7.93468082e-22 - art_sys_80: 2.04655953e-40 - art_sys_81: 9.89137205e-20 - art_sys_82: 4.58101166e-19 - art_sys_83: 3.68809290e-36 - art_sys_84: 1.85322941e-18 - art_sys_85: 2.02118847e-18 - art_sys_86: 1.85277850e-36 - art_sys_87: 4.28735087e-38 - art_sys_88: -5.81362036e-37 - art_sys_89: -6.79626486e-38 - art_sys_90: 1.57166402e-37 - art_sys_91: 1.64358770e-37 - art_sys_92: -2.17516246e-37 - art_sys_93: -1.05866360e-37 - art_sys_94: -6.75834321e-38 - art_sys_95: 1.66290135e-37 - art_sys_96: 4.46342576e-37 - art_sys_97: -3.03494027e-38 - art_sys_98: 1.57541297e-37 - art_sys_99: 7.08129960e-39 - art_sys_100: 1.17579956e-38 - art_sys_101: -3.92543429e-38 - art_sys_102: -1.03036998e-38 - art_sys_103: 2.63629995e-38 - art_sys_104: -1.29665809e-38 - art_sys_105: -2.88780837e-38 - art_sys_106: 1.32664231e-38 - art_sys_107: 3.80999600e-33 - art_sys_108: 5.06507793e-27 - art_sys_109: -2.42656111e-28 - art_sys_110: 8.07529403e-38 - art_sys_111: 2.39949743e-38 - art_sys_112: 1.56774787e-33 - art_sys_113: 3.64674728e-30 - art_sys_114: -3.73032845e-36 - art_sys_115: 3.47287401e-27 - art_sys_116: -1.15746433e-31 - art_sys_117: -4.88610748e-32 - art_sys_118: -1.12872027e-27 - art_sys_119: -1.56494174e-28 - art_sys_120: -4.91450782e-26 - art_sys_121: 2.95485622e-27 - art_sys_122: -1.76678072e-27 - art_sys_123: -5.48017468e-27 - art_sys_124: -2.91988652e-27 - art_sys_125: 3.36196669e-28 - art_sys_126: -5.38089814e-27 - art_sys_127: 5.02954625e-28 - art_sys_128: -1.69086939e-27 - art_sys_129: -2.48155165e-27 - art_sys_130: -3.88644840e-27 - art_sys_131: 3.18978108e-26 - art_sys_132: 4.14288892e-27 - art_sys_133: -5.46674173e-27 - art_sys_134: 4.25029342e-25 - art_sys_135: -5.63999685e-27 - art_sys_136: 7.14432783e-27 - art_sys_137: 3.82657434e-23 - art_sys_138: -3.51324519e-35 - art_sys_139: 2.10311531e-26 - art_sys_140: 1.81846894e-26 - art_sys_141: 5.99319866e-26 - art_sys_142: 2.83241515e-25 - art_sys_143: -1.35352491e-21 - art_sys_144: 2.02169595e-20 - art_sys_145: 2.80683796e-20 - art_sys_146: 0.0 - art_sys_147: 2.62662536e-21 - art_sys_148: -3.34250132e-24 - art_sys_149: -3.34250132e-24 - art_sys_150: -1.40752438e-24 - art_sys_151: -1.40752438e-24 - art_sys_152: 8.25462986e-23 - art_sys_153: 3.21918488e-21 - art_sys_154: -2.90168548e-22 - art_sys_155: -2.68038031e-09 - art_sys_156: -1.09961207e-11 - art_sys_157: -4.79627367e-13 - art_sys_158: -0.0 - art_sys_159: 1.76111388e-28 - art_sys_160: 2.22209588e-28 - art_sys_161: 1.45170901e-28 - art_sys_162: 5.70489709e-29 - art_sys_163: -4.30864965e-27 - art_sys_164: -7.85999751e-28 - art_sys_165: 5.30653760e-25 - art_sys_166: -2.64778072e-16 - art_sys_167: -3.63316941e-15 - art_sys_168: 1.57564314e-15 - art_sys_169: -7.30460612e-14 - art_sys_170: 1.79970662e-13 - art_sys_171: 9.23405513e-13 - art_sys_172: 5.70625184e-12 - art_sys_173: 4.01215947e-11 - art_sys_174: 2.52354381e-12 - art_sys_175: -3.86288487e-08 - art_sys_176: -5.52382147e-09 - art_sys_177: -9.24961649e-09 - art_sys_178: -6.59557343e-08 - art_sys_179: 4.48322037e-08 - art_sys_180: 6.37622798e-07 - art_sys_181: -3.75827757e-07 + art_sys_58: 0.0 + art_sys_59: 0.0 + art_sys_60: 0.0 + art_sys_61: 0.0 + art_sys_62: 0.0 + art_sys_63: 0.0 + art_sys_64: 0.0 + art_sys_65: 0.0 + art_sys_66: 0.0 + art_sys_67: 0.0 + art_sys_68: 0.0 + art_sys_69: 0.0 + art_sys_70: 0.0 + art_sys_71: 0.0 + art_sys_72: -2.53650660e-214 + art_sys_73: 1.57221890e-205 + art_sys_74: 4.90102511e-207 + art_sys_75: 2.40727795e-91 + art_sys_76: 2.92374146e-24 + art_sys_77: -7.54411463e-23 + art_sys_78: 4.16499482e-22 + art_sys_79: -1.66898187e-41 + art_sys_80: 7.93468082e-22 + art_sys_81: 1.93279507e-40 + art_sys_82: -1.66044240e-42 + art_sys_83: 9.89137205e-20 + art_sys_84: -4.58101166e-19 + art_sys_85: -1.85322941e-18 + art_sys_86: -2.02118847e-18 + art_sys_87: 2.41231407e-36 + art_sys_88: 2.03594186e-35 + art_sys_89: 2.64778072e-16 + art_sys_90: 5.01017569e-34 + art_sys_91: -3.61992638e-34 + art_sys_92: -3.63316941e-15 + art_sys_93: 1.57564314e-15 + art_sys_94: 1.47881795e-33 + art_sys_95: -2.70404079e-33 + art_sys_96: -4.98963619e-34 + art_sys_97: -4.19739075e-34 + art_sys_98: 4.05439824e-34 + art_sys_99: 1.45825054e-33 + art_sys_100: -1.18377373e-33 + art_sys_101: 1.06535023e-34 + art_sys_102: 3.30306215e-34 + art_sys_103: -5.33063348e-34 + art_sys_104: -1.35736485e-34 + art_sys_105: 7.00065660e-35 + art_sys_106: 2.60147777e-34 + art_sys_107: 1.60774507e-33 + art_sys_108: -4.56037077e-34 + art_sys_109: -8.61721929e-34 + art_sys_110: 7.31852608e-34 + art_sys_111: 2.89927782e-34 + art_sys_112: 4.32379870e-34 + art_sys_113: 1.86369202e-34 + art_sys_114: 1.43640626e-33 + art_sys_115: 4.17260350e-34 + art_sys_116: 1.74289663e-34 + art_sys_117: -3.26603674e-34 + art_sys_118: 7.69129139e-35 + art_sys_119: 3.23100480e-35 + art_sys_120: -2.57165181e-34 + art_sys_121: -3.44554123e-34 + art_sys_122: -4.75112768e-34 + art_sys_123: -1.59276245e-34 + art_sys_124: -3.12615059e-34 + art_sys_125: -8.04438388e-35 + art_sys_126: 2.02626910e-34 + art_sys_127: 1.89818177e-34 + art_sys_128: 6.38407980e-35 + art_sys_129: 8.22136680e-32 + art_sys_130: 1.33360577e-34 + art_sys_131: -6.04918841e-31 + art_sys_132: -3.15503648e-35 + art_sys_133: 5.53216486e-35 + art_sys_134: 4.61968747e-35 + art_sys_135: -5.94333382e-35 + art_sys_136: -7.56031941e-30 + art_sys_137: 9.73523877e-33 + art_sys_138: 3.92741021e-35 + art_sys_139: -6.16086803e-31 + art_sys_140: -5.58860746e-26 + art_sys_141: -5.72667804e-33 + art_sys_142: 1.61857832e-35 + art_sys_143: -1.19007093e-30 + art_sys_144: 4.28903206e-23 + art_sys_145: -9.37453302e-33 + art_sys_146: -7.65272066e-29 + art_sys_147: 2.79575964e-24 + art_sys_148: -1.07705503e-21 + art_sys_149: 3.65349770e-30 + art_sys_150: -6.52098548e-28 + art_sys_151: -5.31781477e-27 + art_sys_152: 7.89440342e-21 + art_sys_153: 6.53367522e-27 + art_sys_154: 2.59292849e-36 + art_sys_155: -7.90342014e-21 + art_sys_156: 0.0 + art_sys_157: 1.65062146e-27 + art_sys_158: 0.0 + art_sys_159: 2.27015092e-26 + art_sys_160: -2.14422252e-21 + art_sys_161: -9.72340631e-26 + art_sys_162: -9.72340631e-26 + art_sys_163: 2.34790388e-22 + art_sys_164: 2.34790388e-22 + art_sys_165: 1.09961207e-11 + art_sys_166: 4.79627367e-13 + art_sys_167: 0.0 + art_sys_168: -7.30460612e-14 + art_sys_169: -1.79970662e-13 + art_sys_170: 9.23405513e-13 + art_sys_171: -5.70625184e-12 + art_sys_172: 4.01215947e-11 + art_sys_173: 2.52354381e-12 + art_sys_174: 5.52382147e-09 + art_sys_175: 9.24961649e-09 + art_sys_176: 6.59557343e-08 + art_sys_177: 6.37622798e-07 + art_sys_178: -3.75827757e-07 + art_sys_179: -3.86288487e-08 + art_sys_180: 2.68038031e-09 + art_sys_181: -4.48322037e-08 art_sys_182: 4.17407605e-06 art_sys_183: -3.93774882e-06 art_sys_184: -1.71243259e-05 - art_sys_185: 3.99126220e-07 + art_sys_185: -3.99126220e-07 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -51512,134 +51512,134 @@ bins: art_sys_55: 0.0 art_sys_56: 0.0 art_sys_57: 0.0 - art_sys_58: -4.44659081e-323 - art_sys_59: 9.10929257e-244 - art_sys_60: 9.99947302e-240 - art_sys_61: -5.92963578e-237 - art_sys_62: 2.93129524e-231 - art_sys_63: 4.53488315e-222 - art_sys_64: -1.39490396e-223 - art_sys_65: 1.51027006e-96 - art_sys_66: 2.82131410e-84 - art_sys_67: -1.04328932e-80 - art_sys_68: -1.37681149e-78 - art_sys_69: -1.79760817e-64 - art_sys_70: 3.94222958e-67 - art_sys_71: -4.52224134e-61 - art_sys_72: -2.97376340e-48 - art_sys_73: 1.97923070e-26 - art_sys_74: -2.00675446e-25 - art_sys_75: 9.44407162e-25 - art_sys_76: 8.94412843e-44 - art_sys_77: 3.05546387e-45 - art_sys_78: -1.24711686e-45 - art_sys_79: -5.41726791e-27 - art_sys_80: 4.44837806e-44 - art_sys_81: 9.68698546e-22 - art_sys_82: 3.64914000e-21 - art_sys_83: 4.89841502e-38 - art_sys_84: 1.78298191e-20 - art_sys_85: 2.79539165e-20 - art_sys_86: 2.56261360e-38 - art_sys_87: 1.02383985e-39 - art_sys_88: -7.35241159e-39 - art_sys_89: -1.08993619e-40 - art_sys_90: 2.43882732e-39 - art_sys_91: 1.82797555e-39 - art_sys_92: -3.05436968e-39 - art_sys_93: -1.67239456e-39 - art_sys_94: -9.24505257e-40 - art_sys_95: 1.77799708e-39 - art_sys_96: 6.15973217e-39 - art_sys_97: -3.79483185e-40 - art_sys_98: 2.11652956e-39 - art_sys_99: 1.15219038e-40 - art_sys_100: 1.13879957e-40 - art_sys_101: -3.38722347e-40 - art_sys_102: -9.46396325e-41 - art_sys_103: 3.54870685e-40 - art_sys_104: -2.52742906e-40 - art_sys_105: -2.82192193e-40 - art_sys_106: 1.71209304e-40 - art_sys_107: 7.42815830e-32 - art_sys_108: 9.87548138e-26 - art_sys_109: -4.59877003e-27 - art_sys_110: 9.83728229e-40 - art_sys_111: 2.85999473e-41 - art_sys_112: 3.05657553e-32 - art_sys_113: 6.53232038e-29 - art_sys_114: -7.27010764e-35 - art_sys_115: 6.77111806e-26 - art_sys_116: -2.25672430e-30 - art_sys_117: -9.52650033e-31 - art_sys_118: -2.22837175e-26 - art_sys_119: -3.05117441e-27 - art_sys_120: -9.58182266e-25 - art_sys_121: 5.65247142e-26 - art_sys_122: -3.44467668e-26 - art_sys_123: -1.06833041e-25 - art_sys_124: -5.72946083e-26 - art_sys_125: 6.41499160e-27 - art_sys_126: -1.10526360e-25 - art_sys_127: 1.03185686e-26 - art_sys_128: -3.30432467e-26 - art_sys_129: -4.84890385e-26 - art_sys_130: -8.60670065e-26 - art_sys_131: 6.16895100e-25 - art_sys_132: 7.98670318e-26 - art_sys_133: -1.04255863e-25 - art_sys_134: -1.24939371e-23 - art_sys_135: -1.13933772e-25 - art_sys_136: 1.44102665e-25 - art_sys_137: -2.42858475e-24 - art_sys_138: -6.17123843e-34 - art_sys_139: 4.11288472e-25 - art_sys_140: 7.23118118e-25 - art_sys_141: 1.60973426e-25 - art_sys_142: -6.79872808e-24 - art_sys_143: -3.11856861e-23 - art_sys_144: 1.31545397e-20 - art_sys_145: -4.56642941e-19 - art_sys_146: -0.0 - art_sys_147: -7.46995049e-20 - art_sys_148: 1.30960187e-22 - art_sys_149: 1.30960187e-22 - art_sys_150: 3.14878995e-23 - art_sys_151: 3.14878995e-23 - art_sys_152: 1.94560611e-21 - art_sys_153: 3.69715938e-20 - art_sys_154: 7.28838640e-22 - art_sys_155: -5.22228290e-08 - art_sys_156: 5.04784070e-14 - art_sys_157: 1.10931055e-11 - art_sys_158: 0.0 - art_sys_159: 3.32465855e-27 - art_sys_160: 3.97670489e-27 - art_sys_161: 2.72854817e-27 - art_sys_162: 1.10534096e-27 - art_sys_163: -8.28758249e-26 - art_sys_164: -3.55559528e-28 - art_sys_165: -1.26803899e-23 - art_sys_166: -3.59894668e-18 - art_sys_167: -1.98110517e-17 - art_sys_168: -2.66556023e-17 - art_sys_169: -1.08676209e-15 - art_sys_170: 7.27394198e-15 - art_sys_171: 2.86222450e-14 - art_sys_172: -1.47317004e-13 - art_sys_173: 1.64744576e-12 - art_sys_174: -3.58264593e-12 - art_sys_175: 1.01850606e-06 - art_sys_176: -4.52216187e-11 - art_sys_177: 7.24569229e-10 - art_sys_178: -1.03191117e-09 - art_sys_179: -8.86499327e-09 - art_sys_180: 9.18635548e-09 - art_sys_181: 9.45891935e-08 + art_sys_58: 0.0 + art_sys_59: 0.0 + art_sys_60: 0.0 + art_sys_61: 0.0 + art_sys_62: 0.0 + art_sys_63: 0.0 + art_sys_64: 0.0 + art_sys_65: 0.0 + art_sys_66: 0.0 + art_sys_67: 0.0 + art_sys_68: 0.0 + art_sys_69: 0.0 + art_sys_70: 0.0 + art_sys_71: 0.0 + art_sys_72: -1.71707271e-216 + art_sys_73: 1.06430402e-207 + art_sys_74: 3.31771912e-209 + art_sys_75: 1.62961003e-93 + art_sys_76: 1.97923070e-26 + art_sys_77: -2.00675446e-25 + art_sys_78: 9.44407162e-25 + art_sys_79: -4.07137837e-44 + art_sys_80: 5.41726791e-27 + art_sys_81: 4.15117077e-45 + art_sys_82: -3.88028493e-45 + art_sys_83: 9.68698546e-22 + art_sys_84: -3.64914000e-21 + art_sys_85: -1.78298191e-20 + art_sys_86: -2.79539165e-20 + art_sys_87: 3.74010243e-38 + art_sys_88: 2.72949522e-37 + art_sys_89: 3.59894668e-18 + art_sys_90: 6.83104828e-36 + art_sys_91: -1.71870754e-36 + art_sys_92: -1.98110517e-17 + art_sys_93: -2.66556023e-17 + art_sys_94: -1.01515929e-35 + art_sys_95: 4.96442725e-36 + art_sys_96: 1.14035759e-35 + art_sys_97: 1.49438335e-35 + art_sys_98: -3.51805644e-35 + art_sys_99: -1.05235450e-35 + art_sys_100: -1.84175972e-35 + art_sys_101: -9.15124066e-36 + art_sys_102: 4.75992949e-36 + art_sys_103: 2.00432016e-36 + art_sys_104: 9.89177168e-36 + art_sys_105: -1.06187799e-35 + art_sys_106: -6.50213891e-36 + art_sys_107: 5.18291683e-36 + art_sys_108: -1.24829740e-36 + art_sys_109: 1.31774909e-35 + art_sys_110: 3.63052766e-37 + art_sys_111: -1.33163821e-37 + art_sys_112: -7.45088902e-36 + art_sys_113: 1.49658154e-36 + art_sys_114: -3.62537915e-36 + art_sys_115: 1.92834763e-36 + art_sys_116: 9.05017805e-36 + art_sys_117: -4.72351303e-36 + art_sys_118: 3.08652426e-36 + art_sys_119: -1.66897537e-37 + art_sys_120: -4.13943315e-36 + art_sys_121: -1.52940533e-36 + art_sys_122: -2.27924984e-37 + art_sys_123: -4.05374710e-36 + art_sys_124: 2.52599633e-36 + art_sys_125: -2.92018286e-34 + art_sys_126: 1.03645043e-36 + art_sys_127: 1.31731855e-36 + art_sys_128: -7.11723964e-37 + art_sys_129: -3.26722675e-30 + art_sys_130: 3.18943888e-36 + art_sys_131: 6.30941668e-30 + art_sys_132: -1.57390581e-36 + art_sys_133: -4.88575514e-33 + art_sys_134: -1.16779402e-36 + art_sys_135: 4.08697640e-37 + art_sys_136: -1.44194771e-29 + art_sys_137: -3.37421733e-31 + art_sys_138: 7.90221365e-36 + art_sys_139: 1.85760074e-29 + art_sys_140: -3.06984251e-25 + art_sys_141: 1.59993144e-31 + art_sys_142: -6.53916203e-34 + art_sys_143: 2.85263821e-29 + art_sys_144: -4.08326222e-24 + art_sys_145: 1.42660426e-31 + art_sys_146: 1.28506690e-27 + art_sys_147: -1.24366909e-24 + art_sys_148: -1.23269066e-23 + art_sys_149: -9.38189278e-30 + art_sys_150: 1.52604797e-27 + art_sys_151: 4.61776740e-27 + art_sys_152: 6.56700395e-21 + art_sys_153: 5.68932306e-27 + art_sys_154: -8.13161489e-36 + art_sys_155: 1.48477980e-19 + art_sys_156: -0.0 + art_sys_157: -1.19506306e-25 + art_sys_158: -0.0 + art_sys_159: -4.72515687e-25 + art_sys_160: 8.36181175e-20 + art_sys_161: -1.89562266e-24 + art_sys_162: -1.89562266e-24 + art_sys_163: 7.92707307e-22 + art_sys_164: 7.92707307e-22 + art_sys_165: -5.04784083e-14 + art_sys_166: -1.10931055e-11 + art_sys_167: -0.0 + art_sys_168: -1.08676209e-15 + art_sys_169: -7.27394197e-15 + art_sys_170: 2.86222451e-14 + art_sys_171: 1.47317004e-13 + art_sys_172: 1.64744576e-12 + art_sys_173: -3.58264593e-12 + art_sys_174: 4.52216187e-11 + art_sys_175: -7.24569229e-10 + art_sys_176: 1.03191117e-09 + art_sys_177: 9.18635548e-09 + art_sys_178: 9.45891935e-08 + art_sys_179: 1.01850606e-06 + art_sys_180: 5.22228290e-08 + art_sys_181: 8.86499327e-09 art_sys_182: 2.18032884e-07 art_sys_183: 1.42432270e-06 art_sys_184: -8.21763050e-07 - art_sys_185: -9.52758645e-06 + art_sys_185: 9.52758645e-06 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -51804,133 +51804,133 @@ bins: art_sys_56: 0.0 art_sys_57: 0.0 art_sys_58: 0.0 - art_sys_59: 7.65589072e-246 - art_sys_60: 8.40404149e-242 - art_sys_61: -4.98355313e-239 - art_sys_62: 2.46360251e-233 - art_sys_63: 3.81133546e-224 - art_sys_64: -1.17234486e-225 - art_sys_65: 1.26930412e-98 - art_sys_66: 2.37116905e-86 - art_sys_67: -8.76830888e-83 - art_sys_68: -1.15713907e-80 - art_sys_69: -1.51079699e-66 - art_sys_70: 3.31324072e-69 - art_sys_71: -3.80071070e-63 - art_sys_72: -2.49929483e-50 - art_sys_73: 1.66344136e-28 - art_sys_74: 4.49631437e-27 - art_sys_75: -3.73005099e-26 - art_sys_76: -3.41910994e-45 - art_sys_77: -1.18479685e-46 - art_sys_78: 2.91088531e-47 - art_sys_79: 1.33083549e-25 - art_sys_80: -3.28351116e-44 - art_sys_81: 2.47820777e-23 - art_sys_82: -3.36093567e-25 - art_sys_83: 7.15088125e-40 - art_sys_84: 2.75708846e-22 - art_sys_85: 5.62284973e-22 - art_sys_86: 4.89119630e-40 - art_sys_87: 2.80337564e-41 - art_sys_88: -1.38460772e-40 - art_sys_89: 7.48804977e-42 - art_sys_90: 5.27449056e-41 - art_sys_91: 3.20408833e-41 - art_sys_92: -6.12082461e-41 - art_sys_93: -3.68900653e-41 - art_sys_94: -1.85451206e-41 - art_sys_95: 3.00942205e-41 - art_sys_96: 1.19139949e-40 - art_sys_97: -7.22807015e-42 - art_sys_98: 4.19014297e-41 - art_sys_99: 3.18668517e-42 - art_sys_100: 1.99115360e-42 - art_sys_101: -4.87456096e-42 - art_sys_102: -1.39779314e-42 - art_sys_103: 6.83580515e-42 - art_sys_104: 2.05180137e-42 - art_sys_105: -5.69423832e-41 - art_sys_106: 3.25961314e-42 - art_sys_107: 4.07644250e-31 - art_sys_108: 5.41949052e-25 - art_sys_109: -2.56182961e-26 - art_sys_110: 1.26178363e-41 - art_sys_111: -1.60228612e-39 - art_sys_112: 1.67739572e-31 - art_sys_113: 3.75827169e-28 - art_sys_114: -3.98971196e-34 - art_sys_115: 3.71587407e-25 - art_sys_116: -1.23845256e-29 - art_sys_117: -5.22798736e-30 - art_sys_118: -1.21509417e-25 - art_sys_119: -1.67443761e-26 - art_sys_120: -5.25836194e-24 - art_sys_121: 3.12647421e-25 - art_sys_122: -1.89039290e-25 - art_sys_123: -5.86294777e-25 - art_sys_124: -3.13788047e-25 - art_sys_125: 3.56488960e-26 - art_sys_126: -5.90739233e-25 - art_sys_127: 5.51944742e-26 - art_sys_128: -1.80997432e-25 - art_sys_129: -2.65780873e-25 - art_sys_130: -4.44190247e-25 - art_sys_131: 3.39991852e-24 - art_sys_132: 4.40932519e-25 - art_sys_133: -5.78949555e-25 - art_sys_134: 1.55858624e-23 - art_sys_135: -6.13840197e-25 - art_sys_136: 7.76790770e-25 - art_sys_137: -6.90628456e-24 - art_sys_138: -3.65434012e-33 - art_sys_139: 2.25035663e-24 - art_sys_140: 2.54050279e-24 - art_sys_141: 4.87024252e-24 - art_sys_142: 1.00025613e-23 - art_sys_143: 2.22058539e-22 - art_sys_144: -2.91280758e-20 - art_sys_145: 6.54151311e-19 - art_sys_146: -0.0 - art_sys_147: -3.76738899e-20 - art_sys_148: 2.30438917e-22 - art_sys_149: 2.30438917e-22 - art_sys_150: -3.61895812e-23 - art_sys_151: -3.61895812e-23 - art_sys_152: 9.70544381e-21 - art_sys_153: 2.79774354e-19 - art_sys_154: -2.11803249e-20 - art_sys_155: -2.86763638e-07 - art_sys_156: -5.81208819e-10 - art_sys_157: -2.21680934e-13 + art_sys_59: 0.0 + art_sys_60: 0.0 + art_sys_61: 0.0 + art_sys_62: 0.0 + art_sys_63: 0.0 + art_sys_64: 0.0 + art_sys_65: 0.0 + art_sys_66: 0.0 + art_sys_67: 0.0 + art_sys_68: 0.0 + art_sys_69: 0.0 + art_sys_70: 0.0 + art_sys_71: 0.0 + art_sys_72: -1.44307352e-218 + art_sys_73: 8.94469371e-210 + art_sys_74: 2.78829929e-211 + art_sys_75: 1.36960322e-95 + art_sys_76: 1.66344136e-28 + art_sys_77: 4.49631437e-27 + art_sys_78: -3.73005099e-26 + art_sys_79: 2.43543940e-45 + art_sys_80: -1.33083549e-25 + art_sys_81: -3.23746492e-44 + art_sys_82: 1.45796968e-46 + art_sys_83: 2.47820777e-23 + art_sys_84: 3.36093567e-25 + art_sys_85: -2.75708846e-22 + art_sys_86: -5.62284973e-22 + art_sys_87: 8.24977226e-40 + art_sys_88: 1.03354295e-38 + art_sys_89: 1.38697727e-19 + art_sys_90: 2.63878651e-37 + art_sys_91: -9.60975918e-38 + art_sys_92: -8.39974492e-19 + art_sys_93: -5.51475169e-19 + art_sys_94: -1.63544961e-37 + art_sys_95: -1.07806740e-37 + art_sys_96: 2.56837685e-37 + art_sys_97: 3.38897758e-37 + art_sys_98: -8.79746782e-37 + art_sys_99: -1.47648584e-37 + art_sys_100: -5.86386871e-37 + art_sys_101: -2.27875415e-37 + art_sys_102: 1.46029132e-37 + art_sys_103: 7.43582569e-39 + art_sys_104: 2.49046847e-37 + art_sys_105: -2.67413927e-37 + art_sys_106: -9.46694822e-38 + art_sys_107: 2.68455563e-37 + art_sys_108: -7.17090324e-38 + art_sys_109: 2.65971067e-37 + art_sys_110: 7.03191537e-38 + art_sys_111: 5.40520658e-38 + art_sys_112: -1.54378622e-37 + art_sys_113: 5.91665819e-38 + art_sys_114: 3.25641007e-38 + art_sys_115: 8.72184853e-38 + art_sys_116: 2.52182327e-37 + art_sys_117: -1.48956818e-37 + art_sys_118: 8.66818143e-38 + art_sys_119: -2.49118423e-39 + art_sys_120: -1.30787752e-37 + art_sys_121: -5.25579707e-38 + art_sys_122: -4.93155811e-38 + art_sys_123: -1.19510945e-37 + art_sys_124: 3.72609423e-38 + art_sys_125: -2.60431465e-34 + art_sys_126: 4.56004317e-38 + art_sys_127: 5.00140154e-38 + art_sys_128: -1.33264201e-38 + art_sys_129: -2.85523205e-30 + art_sys_130: 5.69706647e-37 + art_sys_131: -1.69019937e-29 + art_sys_132: -4.38832871e-38 + art_sys_133: -3.84940567e-33 + art_sys_134: -1.33575460e-38 + art_sys_135: 2.89479130e-39 + art_sys_136: -5.21014151e-29 + art_sys_137: -2.29334793e-31 + art_sys_138: 3.96914788e-36 + art_sys_139: 8.41347168e-30 + art_sys_140: -3.44319473e-25 + art_sys_141: 4.71601539e-32 + art_sys_142: -1.12013580e-34 + art_sys_143: 8.26561715e-31 + art_sys_144: -4.58975571e-25 + art_sys_145: -1.58835753e-31 + art_sys_146: -1.08197560e-27 + art_sys_147: 1.60203683e-24 + art_sys_148: 4.95681861e-22 + art_sys_149: 2.60948286e-29 + art_sys_150: -3.99413512e-27 + art_sys_151: 3.31368044e-27 + art_sys_152: -8.98813757e-21 + art_sys_153: -4.61537229e-27 + art_sys_154: -7.04929020e-36 + art_sys_155: -2.05887943e-19 + art_sys_156: 0.0 + art_sys_157: 1.19962271e-26 art_sys_158: 0.0 - art_sys_159: 1.86277255e-26 - art_sys_160: 2.28841581e-26 - art_sys_161: 1.52499694e-26 - art_sys_162: 6.07843146e-27 - art_sys_163: -4.58190544e-25 - art_sys_164: -5.99617348e-26 - art_sys_165: 1.99635351e-23 - art_sys_166: -1.38697727e-19 - art_sys_167: -8.39974492e-19 - art_sys_168: -5.51475169e-19 - art_sys_169: -5.28782250e-17 - art_sys_170: 1.47385390e-16 - art_sys_171: 1.00315949e-15 - art_sys_172: -2.10502919e-14 - art_sys_173: 1.69054092e-14 - art_sys_174: -1.55574630e-13 - art_sys_175: -1.30228260e-06 - art_sys_176: 1.24646235e-11 - art_sys_177: 2.73659610e-11 - art_sys_178: 1.28921057e-10 - art_sys_179: -2.84172183e-10 - art_sys_180: -2.40009642e-10 - art_sys_181: 6.12852630e-09 + art_sys_159: -2.53179827e-25 + art_sys_160: -1.39078685e-20 + art_sys_161: 5.31026088e-24 + art_sys_162: 5.31026088e-24 + art_sys_163: 6.71490157e-21 + art_sys_164: 6.71490157e-21 + art_sys_165: 5.81208819e-10 + art_sys_166: 2.21680934e-13 + art_sys_167: -0.0 + art_sys_168: -5.28782274e-17 + art_sys_169: -1.47385389e-16 + art_sys_170: 1.00315949e-15 + art_sys_171: 2.10502919e-14 + art_sys_172: 1.69054091e-14 + art_sys_173: -1.55574630e-13 + art_sys_174: -1.24646235e-11 + art_sys_175: -2.73659610e-11 + art_sys_176: -1.28921057e-10 + art_sys_177: -2.40009642e-10 + art_sys_178: 6.12852630e-09 + art_sys_179: -1.30228260e-06 + art_sys_180: 2.86763638e-07 + art_sys_181: 2.84172183e-10 art_sys_182: 7.54328157e-08 art_sys_183: 5.53727712e-07 art_sys_184: -1.28011170e-08 - art_sys_185: -5.72936307e-06 + art_sys_185: 5.72936307e-06 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -52095,133 +52095,133 @@ bins: art_sys_56: 0.0 art_sys_57: 0.0 art_sys_58: 0.0 - art_sys_59: -6.76109742e-249 - art_sys_60: -7.42180699e-245 - art_sys_61: 4.40109315e-242 - art_sys_62: -2.17566541e-236 - art_sys_63: -3.36588012e-227 - art_sys_64: 1.03532536e-228 - art_sys_65: -1.12095234e-101 - art_sys_66: -2.09403518e-89 - art_sys_67: 7.74349986e-86 - art_sys_68: 1.02189674e-83 - art_sys_69: 1.33422037e-69 - art_sys_70: -2.92600083e-72 - art_sys_71: 3.35649704e-66 - art_sys_72: 2.20718606e-53 - art_sys_73: -1.46902420e-31 - art_sys_74: 1.76525214e-29 - art_sys_75: -1.31452798e-28 - art_sys_76: -1.21049362e-47 - art_sys_77: -4.18639923e-49 - art_sys_78: 1.13191866e-49 - art_sys_79: 1.68449024e-28 - art_sys_80: -4.54847927e-47 - art_sys_81: 3.20898403e-28 - art_sys_82: -4.65376448e-25 - art_sys_83: -1.81385697e-42 - art_sys_84: -1.20999156e-24 - art_sys_85: -2.60379271e-24 - art_sys_86: -2.54219545e-42 - art_sys_87: -1.02114287e-43 - art_sys_88: 6.60086405e-43 - art_sys_89: -3.28409065e-44 - art_sys_90: -2.36846045e-43 - art_sys_91: -1.44649369e-43 - art_sys_92: 2.91579287e-43 - art_sys_93: 1.61323859e-43 - art_sys_94: 8.51621711e-44 - art_sys_95: -1.39719258e-43 - art_sys_96: -6.01591513e-43 - art_sys_97: 3.33658975e-44 - art_sys_98: -1.93683400e-43 - art_sys_99: -7.58144224e-45 - art_sys_100: -6.44710791e-45 - art_sys_101: 2.06027868e-44 - art_sys_102: 7.09586471e-45 - art_sys_103: -3.36175212e-44 - art_sys_104: 1.53208652e-41 - art_sys_105: -1.05170442e-40 - art_sys_106: 5.87717936e-43 - art_sys_107: 8.08174962e-31 - art_sys_108: 1.07444041e-24 - art_sys_109: -3.67896552e-26 - art_sys_110: -1.09479155e-41 - art_sys_111: -3.18981967e-39 - art_sys_112: 3.32546986e-31 - art_sys_113: -6.21439135e-28 - art_sys_114: -7.90948036e-34 - art_sys_115: 7.36669431e-25 - art_sys_116: -2.45517629e-29 - art_sys_117: -1.03640416e-29 - art_sys_118: -1.84446288e-25 - art_sys_119: -3.31921236e-26 - art_sys_120: -1.04231652e-23 - art_sys_121: 9.97787359e-25 - art_sys_122: -3.74657605e-25 - art_sys_123: -1.19117319e-24 - art_sys_124: -4.14403920e-25 - art_sys_125: 3.79508610e-27 - art_sys_126: -1.68375604e-24 - art_sys_127: 1.48800720e-25 - art_sys_128: -4.71365875e-25 - art_sys_129: -5.64346437e-25 - art_sys_130: -7.93410076e-25 - art_sys_131: 6.07525315e-24 - art_sys_132: 6.88463277e-25 - art_sys_133: -7.70745401e-25 - art_sys_134: -7.15638581e-24 - art_sys_135: -1.75256478e-24 - art_sys_136: 2.06189869e-24 - art_sys_137: 2.71035364e-24 - art_sys_138: -7.95796730e-33 - art_sys_139: 4.88965801e-24 - art_sys_140: 2.92732850e-24 - art_sys_141: 2.02020694e-23 - art_sys_142: -9.39891509e-24 - art_sys_143: -1.16268690e-22 - art_sys_144: 1.10231435e-20 - art_sys_145: -1.37355605e-19 - art_sys_146: -0.0 - art_sys_147: -1.79272729e-19 - art_sys_148: 4.37457682e-22 - art_sys_149: 4.37457682e-22 - art_sys_150: 1.67917240e-23 - art_sys_151: 1.67917240e-23 - art_sys_152: 1.62393597e-20 - art_sys_153: 5.56874473e-19 - art_sys_154: 2.03196045e-19 - art_sys_155: -4.92758034e-07 - art_sys_156: -8.18908497e-09 - art_sys_157: 4.60719507e-09 - art_sys_158: 0.0 - art_sys_159: -4.22322188e-26 - art_sys_160: -3.34987994e-26 - art_sys_161: 3.11530512e-26 - art_sys_162: 1.77456915e-26 - art_sys_163: -6.38255315e-25 - art_sys_164: -8.04626376e-26 - art_sys_165: -6.33392495e-25 - art_sys_166: 1.81681958e-23 - art_sys_167: -4.09421335e-21 - art_sys_168: 6.89356039e-21 - art_sys_169: -1.11338691e-19 - art_sys_170: -4.65806173e-19 - art_sys_171: 3.43902765e-18 - art_sys_172: -8.37513004e-17 - art_sys_173: 1.37327810e-15 - art_sys_174: -4.04900189e-15 - art_sys_175: 5.23875188e-07 - art_sys_176: 1.52923756e-12 - art_sys_177: 9.70567108e-13 - art_sys_178: 5.67979320e-11 - art_sys_179: 7.94397922e-11 - art_sys_180: -1.85401883e-09 - art_sys_181: -3.62439598e-09 + art_sys_59: 0.0 + art_sys_60: 0.0 + art_sys_61: 0.0 + art_sys_62: 0.0 + art_sys_63: 0.0 + art_sys_64: 0.0 + art_sys_65: 0.0 + art_sys_66: 0.0 + art_sys_67: 0.0 + art_sys_68: 0.0 + art_sys_69: 0.0 + art_sys_70: 0.0 + art_sys_71: 0.0 + art_sys_72: 1.27454356e-221 + art_sys_73: -7.90008383e-213 + art_sys_74: -2.46266656e-214 + art_sys_75: -1.20952882e-98 + art_sys_76: -1.46902420e-31 + art_sys_77: 1.76525214e-29 + art_sys_78: -1.31452798e-28 + art_sys_79: 3.33211553e-48 + art_sys_80: -1.68449024e-28 + art_sys_81: -4.15185235e-47 + art_sys_82: 5.36273321e-49 + art_sys_83: 3.20898403e-28 + art_sys_84: 4.65376448e-25 + art_sys_85: 1.20999157e-24 + art_sys_86: 2.60379251e-24 + art_sys_87: -3.60692021e-42 + art_sys_88: -1.87573701e-42 + art_sys_89: -1.81681944e-23 + art_sys_90: -3.85660546e-41 + art_sys_91: -3.93496723e-41 + art_sys_92: -4.09421335e-21 + art_sys_93: 6.89356040e-21 + art_sys_94: 2.83468521e-39 + art_sys_95: -5.88718573e-39 + art_sys_96: -2.61427833e-39 + art_sys_97: -2.97541328e-39 + art_sys_98: 5.88318084e-39 + art_sys_99: 4.32718695e-39 + art_sys_100: 4.03102442e-40 + art_sys_101: 1.53971708e-39 + art_sys_102: -1.97798215e-40 + art_sys_103: -1.31432710e-39 + art_sys_104: -1.69702783e-39 + art_sys_105: 1.67577654e-39 + art_sys_106: 9.89427824e-40 + art_sys_107: 2.57228273e-39 + art_sys_108: -6.89509153e-40 + art_sys_109: -3.56699097e-39 + art_sys_110: 1.35919694e-39 + art_sys_111: 3.24538108e-40 + art_sys_112: 1.91136891e-39 + art_sys_113: 1.90972339e-40 + art_sys_114: 3.29955072e-39 + art_sys_115: 5.20619048e-40 + art_sys_116: -9.81873043e-40 + art_sys_117: 3.87945872e-40 + art_sys_118: -3.00525040e-40 + art_sys_119: 8.63989205e-41 + art_sys_120: 1.00814383e-40 + art_sys_121: 7.82527330e-36 + art_sys_122: -8.78379883e-40 + art_sys_123: 2.82982029e-40 + art_sys_124: -9.66596905e-40 + art_sys_125: -1.26724493e-31 + art_sys_126: 2.38208550e-40 + art_sys_127: 9.56006492e-39 + art_sys_128: 2.25923154e-40 + art_sys_129: -1.41854894e-27 + art_sys_130: 2.47949058e-34 + art_sys_131: 2.32465996e-27 + art_sys_132: 2.97468365e-40 + art_sys_133: -2.11487825e-30 + art_sys_134: 7.99140344e-36 + art_sys_135: -1.55912661e-36 + art_sys_136: 1.43219618e-27 + art_sys_137: -1.45449574e-28 + art_sys_138: 3.48323441e-33 + art_sys_139: 7.93975411e-27 + art_sys_140: -4.87281956e-25 + art_sys_141: 6.79782640e-29 + art_sys_142: -2.76815812e-31 + art_sys_143: 1.19978166e-26 + art_sys_144: -5.37498436e-25 + art_sys_145: 5.72654016e-29 + art_sys_146: 5.21974188e-25 + art_sys_147: -1.42321192e-23 + art_sys_148: -2.35881780e-22 + art_sys_149: -2.18083503e-27 + art_sys_150: 3.27019582e-25 + art_sys_151: 1.74977352e-25 + art_sys_152: 3.17112963e-21 + art_sys_153: -6.40625862e-25 + art_sys_154: 1.22760143e-34 + art_sys_155: 5.08623936e-20 + art_sys_156: 0.0 + art_sys_157: -5.62278813e-26 + art_sys_158: -0.0 + art_sys_159: -4.94400236e-24 + art_sys_160: 1.66585668e-19 + art_sys_161: 1.08792336e-23 + art_sys_162: 1.08792336e-23 + art_sys_163: -6.56858447e-21 + art_sys_164: -6.56858447e-21 + art_sys_165: 8.18908497e-09 + art_sys_166: -4.60719507e-09 + art_sys_167: -0.0 + art_sys_168: -1.11337770e-19 + art_sys_169: 4.65805930e-19 + art_sys_170: 3.43902673e-18 + art_sys_171: 8.37512960e-17 + art_sys_172: 1.37327822e-15 + art_sys_173: -4.04900181e-15 + art_sys_174: -1.52923756e-12 + art_sys_175: -9.70567108e-13 + art_sys_176: -5.67979320e-11 + art_sys_177: -1.85401883e-09 + art_sys_178: -3.62439598e-09 + art_sys_179: 5.23875188e-07 + art_sys_180: 4.92758034e-07 + art_sys_181: -7.94397922e-11 art_sys_182: -6.76492695e-08 art_sys_183: -3.39038038e-07 art_sys_184: 1.49270221e-07 - art_sys_185: 3.50622813e-06 + art_sys_185: -3.50622813e-06 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -52386,133 +52386,133 @@ bins: art_sys_56: 0.0 art_sys_57: 0.0 art_sys_58: 0.0 - art_sys_59: -1.02998045e-250 - art_sys_60: -1.13063244e-246 - art_sys_61: 6.70459191e-244 - art_sys_62: -3.31439217e-238 - art_sys_63: -5.12755622e-229 - art_sys_64: 1.57720679e-230 - art_sys_65: -1.70765030e-103 - art_sys_66: -3.19003734e-91 - art_sys_67: 1.17963891e-87 - art_sys_68: 1.55674976e-85 - art_sys_69: 2.03254121e-71 - art_sys_70: -4.45744752e-74 - art_sys_71: 5.11326218e-68 - art_sys_72: 3.36241054e-55 - art_sys_73: -2.23790035e-33 - art_sys_74: 1.29232269e-31 - art_sys_75: -9.37243277e-31 - art_sys_76: -8.64135873e-50 - art_sys_77: -2.98694260e-51 - art_sys_78: 8.26059796e-52 - art_sys_79: -1.35291914e-30 - art_sys_80: 2.72233288e-49 - art_sys_81: -8.14019943e-28 - art_sys_82: -8.35278301e-27 - art_sys_83: -4.61274056e-44 - art_sys_84: -3.39301057e-26 - art_sys_85: -8.23673575e-26 - art_sys_86: -7.72532080e-44 - art_sys_87: -3.77943685e-45 - art_sys_88: 2.02689549e-44 - art_sys_89: -1.91408723e-45 - art_sys_90: -7.73432643e-45 - art_sys_91: -4.32789078e-45 - art_sys_92: 9.17193510e-45 - art_sys_93: 5.33123247e-45 - art_sys_94: 2.69453597e-45 - art_sys_95: -3.85800448e-45 - art_sys_96: -1.85257978e-44 - art_sys_97: 1.03710386e-45 - art_sys_98: -6.09082122e-45 - art_sys_99: -3.22075765e-46 - art_sys_100: -2.00339243e-46 - art_sys_101: 5.92950926e-46 - art_sys_102: 1.96718501e-46 - art_sys_103: -1.05822797e-45 - art_sys_104: -1.90600005e-42 - art_sys_105: 1.17564751e-41 - art_sys_106: 1.30254895e-42 - art_sys_107: -8.95755277e-32 - art_sys_108: -1.19088695e-25 - art_sys_109: 2.47256149e-26 - art_sys_110: 1.68487685e-42 - art_sys_111: 3.52975489e-40 - art_sys_112: -3.68703580e-32 - art_sys_113: -2.67336035e-27 - art_sys_114: 8.77424467e-35 - art_sys_115: -8.16999182e-26 - art_sys_116: 2.72402845e-30 - art_sys_117: 1.15038596e-30 - art_sys_118: 3.46679093e-25 - art_sys_119: 3.68951182e-27 - art_sys_120: 1.15958491e-24 - art_sys_121: 3.66777075e-25 - art_sys_122: 4.18212513e-26 - art_sys_123: 6.24705917e-26 - art_sys_124: 1.16185487e-25 - art_sys_125: -1.67167746e-25 - art_sys_126: -1.20002379e-24 - art_sys_127: 1.02124321e-25 - art_sys_128: -1.59985764e-25 - art_sys_129: -4.49086929e-26 - art_sys_130: 3.22401806e-25 - art_sys_131: -1.98918542e-24 - art_sys_132: -5.92582923e-25 - art_sys_133: 7.69301284e-25 - art_sys_134: 2.76752172e-24 - art_sys_135: -1.03723388e-24 - art_sys_136: -2.46629618e-25 - art_sys_137: -6.95007102e-25 - art_sys_138: -7.73331653e-34 - art_sys_139: -4.38411330e-26 - art_sys_140: -7.22360731e-24 - art_sys_141: 2.25178563e-23 - art_sys_142: -5.36772749e-24 - art_sys_143: 5.44567891e-23 - art_sys_144: -5.08468935e-21 - art_sys_145: 4.44624689e-20 - art_sys_146: 0.0 - art_sys_147: 1.70073082e-19 - art_sys_148: -5.92645238e-22 - art_sys_149: -5.92645238e-22 - art_sys_150: -1.66703508e-23 - art_sys_151: -1.66703508e-23 - art_sys_152: -9.73369063e-21 - art_sys_153: -1.48512418e-20 - art_sys_154: 4.40694955e-19 - art_sys_155: 2.35756144e-07 - art_sys_156: -1.73774652e-08 - art_sys_157: 8.78394684e-09 - art_sys_158: 0.0 - art_sys_159: -1.63569305e-25 - art_sys_160: -1.58048270e-25 - art_sys_161: -6.64979086e-27 - art_sys_162: 8.83755725e-27 - art_sys_163: 6.57099351e-25 - art_sys_164: 2.97132835e-26 - art_sys_165: 5.07545997e-24 - art_sys_166: 2.47398607e-24 - art_sys_167: 3.90935222e-23 - art_sys_168: -1.64158311e-22 - art_sys_169: 6.49355893e-20 - art_sys_170: 6.74702224e-20 - art_sys_171: -2.26342659e-18 - art_sys_172: 2.47341714e-17 - art_sys_173: -8.76205147e-16 - art_sys_174: 2.30676874e-15 - art_sys_175: -2.50710231e-07 - art_sys_176: -7.12640292e-13 - art_sys_177: -6.52093865e-13 - art_sys_178: -2.67653511e-11 - art_sys_179: -3.49856372e-11 - art_sys_180: 8.79241103e-10 - art_sys_181: 1.68042578e-09 + art_sys_59: 0.0 + art_sys_60: 0.0 + art_sys_61: 0.0 + art_sys_62: 0.0 + art_sys_63: 0.0 + art_sys_64: 0.0 + art_sys_65: 0.0 + art_sys_66: 0.0 + art_sys_67: 0.0 + art_sys_68: 0.0 + art_sys_69: 0.0 + art_sys_70: 0.0 + art_sys_71: 0.0 + art_sys_72: 1.94154514e-223 + art_sys_73: -1.20344018e-214 + art_sys_74: -3.75144361e-216 + art_sys_75: -1.84258705e-100 + art_sys_76: -2.23790035e-33 + art_sys_77: 1.29232269e-31 + art_sys_78: -9.37243277e-31 + art_sys_79: 2.30374717e-50 + art_sys_80: 1.35291914e-30 + art_sys_81: 3.20058002e-49 + art_sys_82: 4.02625556e-51 + art_sys_83: -8.14019943e-28 + art_sys_84: 8.35278301e-27 + art_sys_85: 3.39301063e-26 + art_sys_86: 8.23679038e-26 + art_sys_87: -1.19098454e-43 + art_sys_88: -1.96083659e-43 + art_sys_89: -2.47398751e-24 + art_sys_90: -4.75498200e-42 + art_sys_91: 1.89413047e-42 + art_sys_92: 3.90935891e-23 + art_sys_93: -1.64158313e-22 + art_sys_94: -7.58229219e-41 + art_sys_95: 1.08924256e-40 + art_sys_96: 6.22277016e-41 + art_sys_97: 8.12586251e-41 + art_sys_98: -1.59596217e-40 + art_sys_99: -9.09779845e-41 + art_sys_100: -3.64021450e-41 + art_sys_101: -4.13200096e-41 + art_sys_102: 1.23984760e-41 + art_sys_103: 2.50072727e-41 + art_sys_104: 4.41715579e-41 + art_sys_105: -4.75468287e-41 + art_sys_106: -2.89171042e-41 + art_sys_107: -3.60434063e-41 + art_sys_108: 5.27013430e-42 + art_sys_109: 8.36131322e-41 + art_sys_110: -2.13990436e-41 + art_sys_111: -4.39647999e-42 + art_sys_112: -4.58165952e-41 + art_sys_113: 2.69157813e-42 + art_sys_114: -6.18196993e-41 + art_sys_115: -5.84326589e-42 + art_sys_116: 3.16204092e-41 + art_sys_117: 5.02640324e-40 + art_sys_118: 1.04705166e-41 + art_sys_119: -1.35669628e-42 + art_sys_120: -8.24615273e-42 + art_sys_121: 1.21191842e-35 + art_sys_122: 1.53555750e-41 + art_sys_123: -1.16244704e-41 + art_sys_124: 2.11819015e-41 + art_sys_125: -1.96360497e-31 + art_sys_126: -2.68437708e-42 + art_sys_127: 1.45483802e-38 + art_sys_128: -4.89249690e-42 + art_sys_129: -2.20051130e-27 + art_sys_130: 3.85329761e-34 + art_sys_131: 5.86002776e-27 + art_sys_132: 1.96539215e-40 + art_sys_133: -3.29711829e-30 + art_sys_134: 1.24911099e-35 + art_sys_135: -2.44440322e-36 + art_sys_136: 1.99742846e-27 + art_sys_137: -2.28201284e-28 + art_sys_138: 5.52667397e-33 + art_sys_139: 1.26235105e-26 + art_sys_140: 6.85198206e-25 + art_sys_141: 1.09084677e-28 + art_sys_142: -4.47431470e-31 + art_sys_143: 1.95547551e-26 + art_sys_144: -7.72334362e-25 + art_sys_145: 9.98305463e-29 + art_sys_146: 8.95403160e-25 + art_sys_147: -8.88262682e-24 + art_sys_148: 1.08394222e-22 + art_sys_149: -4.83973866e-27 + art_sys_150: 7.38066117e-25 + art_sys_151: 5.09382855e-25 + art_sys_152: -1.45635145e-21 + art_sys_153: -1.62104001e-24 + art_sys_154: 3.22085437e-34 + art_sys_155: -2.23032637e-20 + art_sys_156: 0.0 + art_sys_157: 4.98131172e-25 + art_sys_158: -0.0 + art_sys_159: -5.81863490e-24 + art_sys_160: -7.95344166e-20 + art_sys_161: 1.54675049e-23 + art_sys_162: 1.54675049e-23 + art_sys_163: -4.47720042e-20 + art_sys_164: -4.47720042e-20 + art_sys_165: 1.73774652e-08 + art_sys_166: -8.78394684e-09 + art_sys_167: -0.0 + art_sys_168: 6.49350057e-20 + art_sys_169: -6.74699869e-20 + art_sys_170: -2.26342617e-18 + art_sys_171: -2.47341694e-17 + art_sys_172: -8.76205203e-16 + art_sys_173: 2.30676870e-15 + art_sys_174: 7.12640292e-13 + art_sys_175: 6.52093865e-13 + art_sys_176: 2.67653511e-11 + art_sys_177: 8.79241103e-10 + art_sys_178: 1.68042578e-09 + art_sys_179: -2.50710231e-07 + art_sys_180: -2.35756144e-07 + art_sys_181: 3.49856372e-11 art_sys_182: 3.20978225e-08 art_sys_183: 1.60354345e-07 art_sys_184: -7.10819078e-08 - art_sys_185: -1.66127103e-06 + art_sys_185: 1.66127103e-06 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -52677,133 +52677,133 @@ bins: art_sys_56: 0.0 art_sys_57: 0.0 art_sys_58: 0.0 - art_sys_59: -2.88010757e-253 - art_sys_60: -3.16155812e-249 - art_sys_61: 1.87478761e-246 - art_sys_62: -9.26794870e-241 - art_sys_63: -1.43380522e-231 - art_sys_64: 4.41030237e-233 - art_sys_65: -4.77505816e-106 - art_sys_66: -8.92021851e-94 - art_sys_67: 3.29859362e-90 - art_sys_68: 4.35309890e-88 - art_sys_69: 5.68354218e-74 - art_sys_70: -1.24642447e-76 - art_sys_71: 1.42980822e-70 - art_sys_72: 9.40222122e-58 - art_sys_73: -6.25778260e-36 - art_sys_74: 3.89756025e-34 - art_sys_75: -3.04139459e-33 - art_sys_76: -2.79303185e-52 - art_sys_77: -9.67417682e-54 - art_sys_78: 2.51005249e-54 - art_sys_79: -2.04105604e-33 - art_sys_80: 3.34684242e-52 - art_sys_81: -8.03534243e-30 - art_sys_82: -1.35609385e-28 - art_sys_83: -2.01319752e-45 - art_sys_84: -7.15852466e-28 - art_sys_85: -3.20846293e-27 - art_sys_86: -3.01592239e-45 - art_sys_87: -1.80019578e-46 - art_sys_88: 7.34606880e-46 - art_sys_89: -1.41789445e-46 - art_sys_90: -3.21818091e-46 - art_sys_91: -1.33788994e-46 - art_sys_92: 3.61215197e-46 - art_sys_93: 2.23458826e-46 - art_sys_94: 1.04149639e-46 - art_sys_95: -1.12646684e-46 - art_sys_96: -7.22635101e-46 - art_sys_97: 3.74917306e-47 - art_sys_98: -2.32361944e-46 - art_sys_99: -1.35755303e-47 - art_sys_100: -3.90897653e-48 - art_sys_101: 8.36699840e-48 - art_sys_102: 4.59245376e-48 - art_sys_103: -7.03843423e-47 - art_sys_104: -3.55283185e-42 - art_sys_105: 2.13024496e-41 - art_sys_106: 3.03591057e-42 - art_sys_107: -1.61951399e-31 - art_sys_108: -2.15308517e-25 - art_sys_109: 5.49458944e-26 - art_sys_110: 3.28220112e-42 - art_sys_111: 6.38517823e-40 - art_sys_112: -6.66372719e-32 - art_sys_113: -1.34898375e-27 - art_sys_114: 1.58483190e-34 - art_sys_115: -1.47612198e-25 - art_sys_116: 4.91935577e-30 - art_sys_117: 2.07650700e-30 - art_sys_118: -8.26380710e-25 - art_sys_119: 6.64881658e-27 - art_sys_120: 2.08759895e-24 - art_sys_121: 1.41745039e-24 - art_sys_122: 7.49922255e-26 - art_sys_123: 2.58870357e-25 - art_sys_124: 1.80478921e-24 - art_sys_125: 6.85236421e-26 - art_sys_126: 1.32580095e-24 - art_sys_127: -1.57930204e-25 - art_sys_128: -8.45542707e-26 - art_sys_129: 2.13115070e-25 - art_sys_130: -3.60382370e-26 - art_sys_131: -2.02426900e-24 - art_sys_132: 2.83690282e-25 - art_sys_133: 8.78797002e-25 - art_sys_134: 1.09833425e-24 - art_sys_135: 4.47562425e-25 - art_sys_136: 4.77597715e-24 - art_sys_137: -4.42884694e-25 - art_sys_138: 5.41008019e-34 - art_sys_139: 9.96132304e-25 - art_sys_140: 2.20557180e-24 - art_sys_141: 1.05821027e-23 - art_sys_142: -4.34918443e-23 - art_sys_143: 1.41971127e-23 - art_sys_144: -1.15063779e-21 - art_sys_145: 7.44581708e-21 - art_sys_146: 0.0 - art_sys_147: 5.77271425e-20 - art_sys_148: -1.63926377e-22 - art_sys_149: -1.63926377e-22 - art_sys_150: -2.87322426e-23 - art_sys_151: -2.87322426e-23 - art_sys_152: -2.67385098e-21 - art_sys_153: 5.91319903e-20 - art_sys_154: 2.38018052e-19 - art_sys_155: 5.35096112e-08 - art_sys_156: 1.28189605e-08 - art_sys_157: 3.83822001e-09 - art_sys_158: -0.0 - art_sys_159: -3.55275817e-26 - art_sys_160: -6.32458588e-26 - art_sys_161: 1.62795222e-26 - art_sys_162: 5.19470205e-27 - art_sys_163: 2.27155917e-25 - art_sys_164: 3.93695437e-26 - art_sys_165: -1.02440652e-23 - art_sys_166: -6.59802923e-25 - art_sys_167: 1.45597507e-23 - art_sys_168: -5.64166664e-23 - art_sys_169: 1.42276383e-20 - art_sys_170: 1.50359294e-20 - art_sys_171: -5.10853352e-19 - art_sys_172: 5.51197685e-18 - art_sys_173: -1.99582153e-16 - art_sys_174: 5.24979393e-16 - art_sys_175: -5.79472438e-08 - art_sys_176: -1.63265041e-13 - art_sys_177: -1.48255681e-13 - art_sys_178: -6.13991396e-12 - art_sys_179: -8.05435237e-12 - art_sys_180: 2.01857017e-10 - art_sys_181: 3.86467183e-10 + art_sys_59: 0.0 + art_sys_60: 0.0 + art_sys_61: 0.0 + art_sys_62: 0.0 + art_sys_63: 0.0 + art_sys_64: 0.0 + art_sys_65: 0.0 + art_sys_66: 0.0 + art_sys_67: 0.0 + art_sys_68: 0.0 + art_sys_69: 0.0 + art_sys_70: 0.0 + art_sys_71: 0.0 + art_sys_72: 5.42910946e-226 + art_sys_73: -3.36515920e-217 + art_sys_74: -1.04900976e-218 + art_sys_75: -5.15237830e-103 + art_sys_76: -6.25778260e-36 + art_sys_77: 3.89756025e-34 + art_sys_78: -3.04139459e-33 + art_sys_79: 1.12473857e-52 + art_sys_80: 2.04105604e-33 + art_sys_81: 4.70718902e-52 + art_sys_82: 1.29021650e-53 + art_sys_83: -8.03534243e-30 + art_sys_84: 1.35609385e-28 + art_sys_85: 7.15854783e-28 + art_sys_86: 3.20875585e-27 + art_sys_87: -4.94100758e-45 + art_sys_88: 4.85079733e-44 + art_sys_89: 6.59802435e-25 + art_sys_90: 1.32714870e-42 + art_sys_91: 8.04319321e-43 + art_sys_92: 1.45596142e-23 + art_sys_93: -5.64166673e-23 + art_sys_94: -2.58695220e-41 + art_sys_95: 3.83758307e-41 + art_sys_96: 2.17454021e-41 + art_sys_97: 2.68369801e-41 + art_sys_98: -5.46252998e-41 + art_sys_99: -3.18154543e-41 + art_sys_100: -1.21302856e-41 + art_sys_101: -1.41683120e-41 + art_sys_102: 3.77491854e-42 + art_sys_103: 8.92424314e-42 + art_sys_104: 1.53923841e-41 + art_sys_105: -1.60489307e-41 + art_sys_106: -1.13960981e-41 + art_sys_107: -1.29736697e-41 + art_sys_108: 2.50320444e-42 + art_sys_109: 2.88144234e-41 + art_sys_110: -7.89297800e-42 + art_sys_111: -1.48496144e-42 + art_sys_112: -1.57063494e-41 + art_sys_113: 6.88192427e-43 + art_sys_114: -2.18359193e-41 + art_sys_115: -2.15040020e-42 + art_sys_116: 1.07667434e-41 + art_sys_117: 7.72164810e-40 + art_sys_118: 3.50777795e-42 + art_sys_119: -5.50959088e-43 + art_sys_120: -2.77578113e-42 + art_sys_121: 1.83104912e-35 + art_sys_122: 5.32163750e-42 + art_sys_123: -3.90274400e-42 + art_sys_124: 7.29015230e-42 + art_sys_125: -2.96086222e-31 + art_sys_126: -9.45565367e-43 + art_sys_127: 2.18563343e-38 + art_sys_128: -1.72823434e-42 + art_sys_129: -3.30495644e-27 + art_sys_130: 5.74979754e-34 + art_sys_131: -3.90240145e-27 + art_sys_132: 2.95830053e-40 + art_sys_133: -4.86449608e-30 + art_sys_134: 1.82549920e-35 + art_sys_135: -3.53229484e-36 + art_sys_136: 5.67323077e-27 + art_sys_137: -3.29029076e-28 + art_sys_138: 7.64370764e-33 + art_sys_139: 1.73242277e-26 + art_sys_140: 3.79443672e-25 + art_sys_141: 1.44484545e-28 + art_sys_142: -5.76037670e-31 + art_sys_143: 2.43477984e-26 + art_sys_144: 6.55308355e-25 + art_sys_145: 9.14284784e-29 + art_sys_146: 8.88870410e-25 + art_sys_147: 2.29853876e-23 + art_sys_148: 2.50046087e-23 + art_sys_149: 6.31573297e-28 + art_sys_150: -1.47729452e-25 + art_sys_151: -7.31560815e-25 + art_sys_152: -3.36917178e-22 + art_sys_153: 9.89436302e-25 + art_sys_154: 5.09598145e-35 + art_sys_155: -4.49743956e-21 + art_sys_156: 0.0 + art_sys_157: 1.67633785e-25 + art_sys_158: 0.0 + art_sys_159: -4.39368373e-24 + art_sys_160: -2.56004692e-20 + art_sys_161: 2.13510641e-24 + art_sys_162: 2.13510641e-24 + art_sys_163: 1.16807250e-20 + art_sys_164: 1.16807250e-20 + art_sys_165: -1.28189605e-08 + art_sys_166: -3.83822001e-09 + art_sys_167: 0.0 + art_sys_168: 1.42274661e-20 + art_sys_169: -1.50359014e-20 + art_sys_170: -5.10853255e-19 + art_sys_171: -5.51197639e-18 + art_sys_172: -1.99582166e-16 + art_sys_173: 5.24979385e-16 + art_sys_174: 1.63265041e-13 + art_sys_175: 1.48255681e-13 + art_sys_176: 6.13991396e-12 + art_sys_177: 2.01857017e-10 + art_sys_178: 3.86467183e-10 + art_sys_179: -5.79472438e-08 + art_sys_180: -5.35096112e-08 + art_sys_181: 8.05435237e-12 art_sys_182: 7.37472745e-09 art_sys_183: 3.68562564e-08 art_sys_184: -1.63789208e-08 - art_sys_185: -3.82076920e-07 + art_sys_185: 3.82076920e-07 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -52968,133 +52968,133 @@ bins: art_sys_56: 0.0 art_sys_57: 0.0 art_sys_58: 0.0 - art_sys_59: -7.48681545e-254 - art_sys_60: -8.21844381e-250 - art_sys_61: 4.87349466e-247 - art_sys_62: -2.40919548e-241 - art_sys_63: -3.72716464e-232 - art_sys_64: 1.14645440e-233 - art_sys_65: -1.24127236e-106 - art_sys_66: -2.31880331e-94 - art_sys_67: 8.57466644e-91 - art_sys_68: 1.13158441e-88 - art_sys_69: 1.47743202e-74 - art_sys_70: -3.24006994e-77 - art_sys_71: 3.71677446e-71 - art_sys_72: 2.44409952e-58 - art_sys_73: -1.62670533e-36 - art_sys_74: 9.47948125e-35 - art_sys_75: -6.58560642e-34 - art_sys_76: -6.08705122e-53 - art_sys_77: -2.10141713e-54 - art_sys_78: 6.04208716e-55 - art_sys_79: -4.76422594e-33 - art_sys_80: 1.08196006e-51 - art_sys_81: -2.43334102e-30 - art_sys_82: -1.73115754e-29 - art_sys_83: -1.71545193e-46 - art_sys_84: -8.65140564e-29 - art_sys_85: -2.25504195e-28 - art_sys_86: -2.11173815e-46 - art_sys_87: -1.09038370e-47 - art_sys_88: 5.47878163e-47 - art_sys_89: -5.91065529e-48 - art_sys_90: -2.14513774e-47 - art_sys_91: -1.14882495e-47 - art_sys_92: 2.50939300e-47 - art_sys_93: 1.48422084e-47 - art_sys_94: 7.37293941e-48 - art_sys_95: -1.09831473e-47 - art_sys_96: -5.03646120e-47 - art_sys_97: 2.81265161e-48 - art_sys_98: -1.66247023e-47 - art_sys_99: -9.47473608e-49 - art_sys_100: -5.25178783e-49 - art_sys_101: 1.32200807e-48 - art_sys_102: 4.87586004e-49 - art_sys_103: 3.50057827e-47 - art_sys_104: 4.24903016e-42 - art_sys_105: -2.63103043e-41 - art_sys_106: -2.78651254e-42 - art_sys_107: 2.00545775e-31 - art_sys_108: 2.66619407e-25 - art_sys_109: -5.33802108e-26 - art_sys_110: -3.72670597e-42 - art_sys_111: -7.92078956e-40 - art_sys_112: 8.25282816e-32 - art_sys_113: 3.01891410e-28 - art_sys_114: -1.96318270e-34 - art_sys_115: 1.82833887e-25 - art_sys_116: -6.09412410e-30 - art_sys_117: -2.57276538e-30 - art_sys_118: 1.31823452e-25 - art_sys_119: -8.24148524e-27 - art_sys_120: -2.58823571e-24 - art_sys_121: 1.85884273e-24 - art_sys_122: -9.30286037e-26 - art_sys_123: -3.61124027e-25 - art_sys_124: 7.43564696e-25 - art_sys_125: -4.47857862e-26 - art_sys_126: 1.98237550e-24 - art_sys_127: -2.01801988e-25 - art_sys_128: -3.23572247e-25 - art_sys_129: -1.42058621e-25 - art_sys_130: 6.06896531e-24 - art_sys_131: 3.03108685e-24 - art_sys_132: 3.79325946e-25 - art_sys_133: -7.26688422e-25 - art_sys_134: -2.26971770e-25 - art_sys_135: 8.36308416e-25 - art_sys_136: -7.39287569e-25 - art_sys_137: -2.01946196e-26 - art_sys_138: -1.73352608e-33 - art_sys_139: 3.00507408e-24 - art_sys_140: -2.37449892e-24 - art_sys_141: -2.61413695e-24 - art_sys_142: 2.43226139e-23 - art_sys_143: 1.16573465e-24 - art_sys_144: -2.54397545e-23 - art_sys_145: -5.11483176e-22 - art_sys_146: 0.0 - art_sys_147: 1.17483054e-21 - art_sys_148: 9.08407604e-23 - art_sys_149: 9.08407604e-23 - art_sys_150: 6.14889472e-23 - art_sys_151: 6.14889472e-23 - art_sys_152: -1.12789543e-22 - art_sys_153: -4.27861664e-21 - art_sys_154: 1.71937977e-20 - art_sys_155: 5.55355500e-09 - art_sys_156: -1.42436114e-07 - art_sys_157: -9.91106211e-10 - art_sys_158: -0.0 - art_sys_159: -1.13136976e-25 - art_sys_160: 3.30424997e-26 - art_sys_161: 7.27695820e-26 - art_sys_162: 2.12360712e-26 - art_sys_163: -2.60695860e-25 - art_sys_164: 2.23749342e-27 - art_sys_165: 1.30573652e-23 - art_sys_166: -1.37197727e-26 - art_sys_167: 5.91688539e-25 - art_sys_168: -2.04009487e-24 - art_sys_169: 4.33122142e-22 - art_sys_170: 5.00707875e-22 - art_sys_171: -1.54457218e-20 - art_sys_172: 1.66510595e-19 - art_sys_173: -6.05964915e-18 - art_sys_174: 1.58555972e-17 - art_sys_175: 5.70227358e-10 - art_sys_176: -4.77329394e-15 - art_sys_177: -2.98728692e-15 - art_sys_178: -1.77844764e-13 - art_sys_179: -2.79539098e-13 - art_sys_180: 5.70029817e-12 - art_sys_181: 1.28564049e-11 + art_sys_59: 0.0 + art_sys_60: 0.0 + art_sys_61: 0.0 + art_sys_62: 0.0 + art_sys_63: 0.0 + art_sys_64: 0.0 + art_sys_65: 0.0 + art_sys_66: 0.0 + art_sys_67: 0.0 + art_sys_68: 0.0 + art_sys_69: 0.0 + art_sys_70: 0.0 + art_sys_71: 0.0 + art_sys_72: 1.41128849e-226 + art_sys_73: -8.74767854e-218 + art_sys_74: -2.72688441e-219 + art_sys_75: -1.33935641e-103 + art_sys_76: -1.62670533e-36 + art_sys_77: 9.47948125e-35 + art_sys_78: -6.58560642e-34 + art_sys_79: 3.88403736e-53 + art_sys_80: 4.76422594e-33 + art_sys_81: 1.14475995e-51 + art_sys_82: 3.13310017e-54 + art_sys_83: -2.43334102e-30 + art_sys_84: 1.73115754e-29 + art_sys_85: 8.65137561e-29 + art_sys_86: 2.25493709e-28 + art_sys_87: -3.31776083e-46 + art_sys_88: 9.80900789e-46 + art_sys_89: 1.37196393e-26 + art_sys_90: 3.09505130e-44 + art_sys_91: 7.14783467e-44 + art_sys_92: 5.91862959e-25 + art_sys_93: -2.04009508e-24 + art_sys_94: -9.53463333e-43 + art_sys_95: 1.41805764e-42 + art_sys_96: 7.83053283e-43 + art_sys_97: 9.70219142e-43 + art_sys_98: -1.95224146e-42 + art_sys_99: -1.16113278e-42 + art_sys_100: -4.07450780e-43 + art_sys_101: -5.06767545e-43 + art_sys_102: 1.27154240e-43 + art_sys_103: 3.27829577e-43 + art_sys_104: 5.49794080e-43 + art_sys_105: -5.73061079e-43 + art_sys_106: -4.17628274e-43 + art_sys_107: -5.09584809e-43 + art_sys_108: 5.07227654e-44 + art_sys_109: 1.04295710e-42 + art_sys_110: -2.93790497e-43 + art_sys_111: -8.36173227e-44 + art_sys_112: -5.67935686e-43 + art_sys_113: -5.66048441e-45 + art_sys_114: -8.03934487e-43 + art_sys_115: -8.49493400e-44 + art_sys_116: 3.79836200e-43 + art_sys_117: 1.89956237e-40 + art_sys_118: 1.23383729e-43 + art_sys_119: -2.00447691e-44 + art_sys_120: -9.33831824e-44 + art_sys_121: 4.46925807e-36 + art_sys_122: 1.99221739e-43 + art_sys_123: -1.37499437e-43 + art_sys_124: 2.65877508e-43 + art_sys_125: -7.16210806e-32 + art_sys_126: -3.82258103e-44 + art_sys_127: 5.19753606e-39 + art_sys_128: -6.27662177e-44 + art_sys_129: -7.85010487e-28 + art_sys_130: 1.32591061e-34 + art_sys_131: -5.71583941e-27 + art_sys_132: 6.43504263e-41 + art_sys_133: -1.05676661e-30 + art_sys_134: 3.76868614e-36 + art_sys_135: -6.83287690e-37 + art_sys_136: -9.79213230e-27 + art_sys_137: -6.27952567e-29 + art_sys_138: 1.07959694e-33 + art_sys_139: 2.28241160e-27 + art_sys_140: -3.74435175e-25 + art_sys_141: 1.26043068e-29 + art_sys_142: -2.90170651e-32 + art_sys_143: 1.34284694e-28 + art_sys_144: -9.53788522e-25 + art_sys_145: -4.47435392e-29 + art_sys_146: -3.05791145e-25 + art_sys_147: 1.20241261e-23 + art_sys_148: 4.69385762e-24 + art_sys_149: 7.47326040e-27 + art_sys_150: -1.14640423e-24 + art_sys_151: 1.60714362e-24 + art_sys_152: -1.79846206e-23 + art_sys_153: 2.49655786e-25 + art_sys_154: -5.02621602e-35 + art_sys_155: 6.62071875e-23 + art_sys_156: 0.0 + art_sys_157: 1.00934300e-26 + art_sys_158: 0.0 + art_sys_159: -3.00125716e-24 + art_sys_160: -4.56744226e-22 + art_sys_161: 2.61941482e-24 + art_sys_162: 2.61941482e-24 + art_sys_163: 2.18990543e-21 + art_sys_164: 2.18990543e-21 + art_sys_165: 1.42436114e-07 + art_sys_166: 9.91106211e-10 + art_sys_167: 0.0 + art_sys_168: 4.33122222e-22 + art_sys_169: -5.00713506e-22 + art_sys_170: -1.54457188e-20 + art_sys_171: -1.66510581e-19 + art_sys_172: -6.05964955e-18 + art_sys_173: 1.58555969e-17 + art_sys_174: 4.77329394e-15 + art_sys_175: 2.98728692e-15 + art_sys_176: 1.77844764e-13 + art_sys_177: 5.70029817e-12 + art_sys_178: 1.28564049e-11 + art_sys_179: 5.70227358e-10 + art_sys_180: -5.55355500e-09 + art_sys_181: 2.79539098e-13 art_sys_182: 2.06268680e-10 art_sys_183: 1.14130405e-09 art_sys_184: 1.06113472e-11 - art_sys_185: -9.95122282e-09 + art_sys_185: 9.95122282e-09 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -55820,191 +55820,191 @@ bins: RelativeStatFSR-: -1.31331002e+05 luminosity_uncertainty: 4.83381600e+02 uncorrelated_uncertainty: 185.916 -- art_sys_1: 7.69400760e-14 - art_sys_2: -2.13683520e-14 +- art_sys_1: 5.66210590e-14 + art_sys_2: -3.22733560e-14 art_sys_3: -1.61153998e+02 - art_sys_4: 6.87682846e-14 + art_sys_4: 4.54515521e-15 art_sys_5: -3.30097149e+01 - art_sys_6: 9.86340320e-15 - art_sys_7: -1.44209944e-14 + art_sys_6: 1.79137873e-14 + art_sys_7: 1.27129730e-14 art_sys_8: 1.13391038e+01 - art_sys_9: -4.52646893e-16 - art_sys_10: 3.48048777e-16 + art_sys_9: -4.44289958e-15 + art_sys_10: -1.42177574e-15 art_sys_11: -1.78364090e+00 - art_sys_12: -1.01072854e-15 - art_sys_13: -3.03474092e-15 - art_sys_14: -3.76473666e-16 + art_sys_12: -2.01723758e-15 + art_sys_13: 4.84842050e-15 + art_sys_14: -1.07984120e-15 art_sys_15: -2.92725113e-02 - art_sys_16: 6.38583454e-16 - art_sys_17: 1.74624816e-16 + art_sys_16: -6.66504064e-16 + art_sys_17: 1.43554668e-16 art_sys_18: -8.67938826e-03 - art_sys_19: 6.34552644e-16 - art_sys_20: -1.17905227e-15 - art_sys_21: -4.32484912e-03 - art_sys_22: -1.71010049e-16 - art_sys_23: -3.17572917e-16 - art_sys_24: -1.00707911e-03 - art_sys_25: 3.02186671e-18 - art_sys_26: 9.87384016e-19 - art_sys_27: -2.87860539e-19 - art_sys_28: -2.94693688e-17 - art_sys_29: 5.08528395e-17 - art_sys_30: 3.26811385e-20 - art_sys_31: 2.29968892e-21 - art_sys_32: 1.31289522e-19 - art_sys_33: 1.77356977e-19 - art_sys_34: 1.97892746e-06 - art_sys_35: 1.25422927e-18 - art_sys_36: -3.38370985e-07 - art_sys_37: 9.77641439e-18 - art_sys_38: -4.14544607e-19 - art_sys_39: 1.12699781e-15 - art_sys_40: -2.69849557e-07 - art_sys_41: 2.09403356e-16 - art_sys_42: 2.90632704e-17 - art_sys_43: -7.34759120e-20 - art_sys_44: -9.40466144e-21 - art_sys_45: -7.77833986e-20 - art_sys_46: 1.52898508e-17 + art_sys_19: 2.26281367e-16 + art_sys_20: 2.63973819e-16 + art_sys_21: 4.32484912e-03 + art_sys_22: 3.29985512e-16 + art_sys_23: -8.20220586e-16 + art_sys_24: 1.00707911e-03 + art_sys_25: 8.59317264e-18 + art_sys_26: 6.04246870e-17 + art_sys_27: 1.97892746e-06 + art_sys_28: -1.35936226e-16 + art_sys_29: 3.38370985e-07 + art_sys_30: 7.51813856e-17 + art_sys_31: 3.26312265e-17 + art_sys_32: -2.69849557e-07 + art_sys_33: -3.11281386e-17 + art_sys_34: 1.30107678e-17 + art_sys_35: -1.28460532e-17 + art_sys_36: 4.68573647e-17 + art_sys_37: 5.43606010e-19 + art_sys_38: 3.93365048e-20 + art_sys_39: -2.40583521e-20 + art_sys_40: 9.47650842e-20 + art_sys_41: 1.73757879e-19 + art_sys_42: -2.75385698e-19 + art_sys_43: -7.00545013e-19 + art_sys_44: -1.19801616e-19 + art_sys_45: 1.74150612e-19 + art_sys_46: 9.66233432e-20 art_sys_47: 2.52284988e-09 - art_sys_48: -4.04327093e-17 - art_sys_49: -3.31136772e-20 - art_sys_50: 6.83982893e-22 - art_sys_51: -2.15535843e-21 - art_sys_52: -7.31608158e-22 - art_sys_53: 2.37393250e-22 - art_sys_54: 1.69888133e-22 - art_sys_55: -1.24029657e-19 - art_sys_56: 1.38023649e-19 - art_sys_57: 1.80492885e-09 - art_sys_58: 1.35890144e-23 - art_sys_59: -3.14687948e-24 - art_sys_60: -3.22400684e-17 - art_sys_61: -4.54528847e-19 - art_sys_62: -4.15197226e-10 - art_sys_63: 2.94306032e-21 - art_sys_64: -5.52179869e-17 - art_sys_65: -2.59126777e-25 - art_sys_66: -5.60782951e-26 - art_sys_67: 2.12802170e-19 - art_sys_68: -1.89825337e-20 - art_sys_69: 3.16378376e-20 - art_sys_70: 4.43487094e-19 - art_sys_71: -1.05808216e-11 - art_sys_72: 1.34683690e-19 - art_sys_73: -9.64489004e-23 - art_sys_74: 4.21171647e-23 - art_sys_75: 1.51363451e-23 - art_sys_76: 2.10385635e-23 - art_sys_77: -2.90248302e-12 - art_sys_78: -3.27327950e-22 - art_sys_79: -1.52453216e-24 - art_sys_80: 4.09320637e-26 - art_sys_81: -8.98070981e-25 - art_sys_82: -1.99217935e-25 - art_sys_83: -1.51199329e-22 - art_sys_84: 1.22670482e-25 - art_sys_85: -1.26378989e-25 - art_sys_86: 5.33509601e-22 - art_sys_87: 5.74325294e-13 - art_sys_88: -4.72425378e-23 - art_sys_89: 4.55654501e-25 - art_sys_90: 6.68839914e-20 - art_sys_91: -2.62056581e-23 - art_sys_92: -9.51144430e-19 - art_sys_93: 2.15847229e-19 - art_sys_94: 4.82148810e-20 - art_sys_95: -1.15798277e-21 - art_sys_96: 1.06107644e-23 - art_sys_97: -3.46937983e-19 - art_sys_98: -3.37652994e-20 - art_sys_99: 2.07353114e-19 - art_sys_100: 2.09882308e-22 - art_sys_101: -1.22302986e-20 - art_sys_102: -8.72949295e-20 - art_sys_103: 5.59243185e-24 - art_sys_104: 1.82767016e-19 - art_sys_105: -3.53360699e-21 - art_sys_106: 2.79634790e-15 - art_sys_107: -3.96220636e-23 - art_sys_108: 2.43070349e-24 - art_sys_109: 1.28912154e-23 - art_sys_110: -4.27397113e-20 - art_sys_111: -6.45713101e-20 - art_sys_112: -2.03774588e-21 - art_sys_113: 1.37684407e-25 - art_sys_114: 5.12991150e-20 - art_sys_115: -8.30279617e-22 - art_sys_116: -3.84944071e-16 - art_sys_117: 2.43682531e-20 - art_sys_118: 4.14193856e-21 - art_sys_119: -8.93658309e-21 - art_sys_120: -7.47421432e-17 - art_sys_121: -1.53125760e-21 - art_sys_122: 1.28758604e-20 - art_sys_123: -1.63101530e-20 - art_sys_124: 1.38024083e-21 - art_sys_125: -1.38062842e-17 - art_sys_126: -3.88800154e-21 - art_sys_127: -1.03951493e-20 - art_sys_128: -7.64719491e-21 - art_sys_129: -3.85831906e-21 - art_sys_130: -2.10878315e-20 - art_sys_131: 1.79335690e-18 - art_sys_132: 4.45747352e-21 - art_sys_133: -3.61684400e-20 - art_sys_134: -2.57187278e-23 - art_sys_135: -1.44065066e-21 - art_sys_136: -3.24938840e-21 - art_sys_137: 3.92661579e-24 - art_sys_138: -1.31612736e-21 - art_sys_139: -7.59643908e-22 - art_sys_140: -3.00000553e-21 - art_sys_141: -2.19658644e-20 - art_sys_142: 7.69726844e-22 - art_sys_143: -1.09542862e-24 - art_sys_144: 2.14771456e-25 - art_sys_145: 1.02665454e-23 - art_sys_146: 0.0 - art_sys_147: -9.83854217e-23 - art_sys_148: 5.86242230e-22 - art_sys_149: 5.86242230e-22 - art_sys_150: 1.12109134e-22 - art_sys_151: 1.12109134e-22 - art_sys_152: -4.89719754e-23 - art_sys_153: -8.64504453e-24 - art_sys_154: 6.25503972e-26 - art_sys_155: 8.75697850e-36 - art_sys_156: 8.18366492e-38 - art_sys_157: 3.33280936e-38 + art_sys_48: 3.33555880e-17 + art_sys_49: -1.80492884e-09 + art_sys_50: 6.62686414e-21 + art_sys_51: 5.38901520e-20 + art_sys_52: -1.87290653e-18 + art_sys_53: 5.26283831e-18 + art_sys_54: -4.15197235e-10 + art_sys_55: -3.57930303e-18 + art_sys_56: 7.61740621e-19 + art_sys_57: -5.77796217e-20 + art_sys_58: 3.66166125e-22 + art_sys_59: -1.63737040e-18 + art_sys_60: -1.05808172e-11 + art_sys_61: -5.85440365e-21 + art_sys_62: -6.09455183e-20 + art_sys_63: 2.90248291e-12 + art_sys_64: 3.20230886e-20 + art_sys_65: -2.84254116e-21 + art_sys_66: 1.62946985e-21 + art_sys_67: -2.39238118e-22 + art_sys_68: 8.93057477e-24 + art_sys_69: -4.91417401e-24 + art_sys_70: -2.19113266e-24 + art_sys_71: -1.67315023e-25 + art_sys_72: 4.32159901e-26 + art_sys_73: -2.38873139e-26 + art_sys_74: -3.54045121e-22 + art_sys_75: -5.01085431e-26 + art_sys_76: 6.83020064e-24 + art_sys_77: 1.92827036e-23 + art_sys_78: 4.84005155e-25 + art_sys_79: 8.94454034e-25 + art_sys_80: -2.61069802e-26 + art_sys_81: -7.91488157e-22 + art_sys_82: 5.74327083e-13 + art_sys_83: 2.90582189e-26 + art_sys_84: 1.08388549e-26 + art_sys_85: -1.31935422e-26 + art_sys_86: -2.15250623e-27 + art_sys_87: 9.78881037e-26 + art_sys_88: 6.97780969e-23 + art_sys_89: 1.99706507e-29 + art_sys_90: -2.17492893e-26 + art_sys_91: 1.19010826e-18 + art_sys_92: 4.41667890e-28 + art_sys_93: -2.33275359e-28 + art_sys_94: -1.57404868e-23 + art_sys_95: 9.30094681e-23 + art_sys_96: -8.27774125e-19 + art_sys_97: -2.92522989e-20 + art_sys_98: 3.93589094e-23 + art_sys_99: -1.07952797e-19 + art_sys_100: 2.14857380e-23 + art_sys_101: 8.59957899e-20 + art_sys_102: 3.60158876e-22 + art_sys_103: 2.25147738e-21 + art_sys_104: -6.75505681e-20 + art_sys_105: -7.74440422e-23 + art_sys_106: 8.99014697e-21 + art_sys_107: -7.09667617e-22 + art_sys_108: -1.25868892e-22 + art_sys_109: 4.95382422e-24 + art_sys_110: 3.28202256e-21 + art_sys_111: -1.29483203e-20 + art_sys_112: 2.79625971e-15 + art_sys_113: -1.25692550e-20 + art_sys_114: 9.39053418e-25 + art_sys_115: 5.55789725e-22 + art_sys_116: 4.00111833e-22 + art_sys_117: 5.38630440e-25 + art_sys_118: 1.71636365e-21 + art_sys_119: 5.16747520e-22 + art_sys_120: 3.84969315e-16 + art_sys_121: -3.93040002e-25 + art_sys_122: -1.84911008e-21 + art_sys_123: -2.48561988e-22 + art_sys_124: 9.18725204e-23 + art_sys_125: 4.15059046e-25 + art_sys_126: 7.47377721e-17 + art_sys_127: 3.64283034e-22 + art_sys_128: 7.30401269e-22 + art_sys_129: 1.24103384e-24 + art_sys_130: -8.57360416e-21 + art_sys_131: -1.72646552e-23 + art_sys_132: -7.28216973e-21 + art_sys_133: 1.91247136e-20 + art_sys_134: 1.38085308e-17 + art_sys_135: 3.08386328e-21 + art_sys_136: 5.03328967e-23 + art_sys_137: -2.89939171e-21 + art_sys_138: 1.83153822e-22 + art_sys_139: 4.46860529e-20 + art_sys_140: -1.18554604e-23 + art_sys_141: 1.79264375e-18 + art_sys_142: -9.09095912e-23 + art_sys_143: -3.16574713e-21 + art_sys_144: 8.92452239e-23 + art_sys_145: 2.38985476e-21 + art_sys_146: 2.33501216e-22 + art_sys_147: -1.91092262e-24 + art_sys_148: -1.24324536e-24 + art_sys_149: -1.53178426e-23 + art_sys_150: 9.84303416e-22 + art_sys_151: 2.41490301e-20 + art_sys_152: 2.43439337e-24 + art_sys_153: 2.59921292e-21 + art_sys_154: 1.52433870e-22 + art_sys_155: -1.04131958e-23 + art_sys_156: 0.0 + art_sys_157: 7.77419512e-23 art_sys_158: 0.0 - art_sys_159: -2.27992376e-23 - art_sys_160: 6.63538951e-24 - art_sys_161: 2.30229555e-23 - art_sys_162: 6.38641923e-25 - art_sys_163: 2.20898174e-22 - art_sys_164: 3.51998641e-23 - art_sys_165: -4.63856059e-25 - art_sys_166: -1.98952089e-31 - art_sys_167: -1.86938069e-31 - art_sys_168: 6.62835966e-32 - art_sys_169: -6.90589204e-33 - art_sys_170: 8.71720557e-33 - art_sys_171: -5.12035515e-33 - art_sys_172: -9.01059502e-33 - art_sys_173: 6.06071278e-34 - art_sys_174: 6.70679530e-34 - art_sys_175: -3.36987426e-36 - art_sys_176: -6.35182083e-36 - art_sys_177: -1.50755180e-34 - art_sys_178: 5.65106883e-35 - art_sys_179: -3.07187496e-35 - art_sys_180: 4.36354196e-35 - art_sys_181: 3.81010600e-38 - art_sys_182: -7.81513453e-36 - art_sys_183: -1.18411052e-37 - art_sys_184: 2.55451507e-39 - art_sys_185: 1.41859944e-39 + art_sys_159: 5.45523985e-22 + art_sys_160: 5.46175823e-24 + art_sys_161: -7.46868374e-23 + art_sys_162: -7.46868374e-23 + art_sys_163: -6.32094514e-23 + art_sys_164: -6.32094514e-23 + art_sys_165: 7.35873080e-37 + art_sys_166: -2.44888924e-37 + art_sys_167: -0.0 + art_sys_168: 3.11622066e-32 + art_sys_169: 3.09173808e-32 + art_sys_170: 1.37552904e-32 + art_sys_171: 1.27399929e-32 + art_sys_172: -2.86964913e-33 + art_sys_173: -6.38562595e-34 + art_sys_174: -1.50670356e-34 + art_sys_175: -1.81882596e-34 + art_sys_176: 8.17473452e-35 + art_sys_177: -3.31876458e-35 + art_sys_178: -5.11620083e-35 + art_sys_179: 3.41126818e-36 + art_sys_180: 1.41574163e-35 + art_sys_181: -1.60978841e-35 + art_sys_182: 4.51293082e-36 + art_sys_183: -3.01545388e-38 + art_sys_184: -6.07209372e-38 + art_sys_185: 2.00494712e-38 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -56111,191 +56111,191 @@ bins: RelativeStatFSR-: -3.06833392e+01 luminosity_uncertainty: 4.83381600e+02 uncorrelated_uncertainty: 185.916 -- art_sys_1: 7.56989629e-14 - art_sys_2: 2.59161586e-14 +- art_sys_1: 7.33133957e-14 + art_sys_2: 3.47508813e-14 art_sys_3: -8.52558389e+01 - art_sys_4: -6.95937945e-14 + art_sys_4: 1.03995593e-14 art_sys_5: 5.81247708e+01 - art_sys_6: -2.48079373e-14 - art_sys_7: -1.76429121e-14 + art_sys_6: -2.06251145e-14 + art_sys_7: -7.08944093e-15 art_sys_8: -1.98691711e+01 - art_sys_9: -3.81145572e-15 - art_sys_10: -1.13330841e-15 + art_sys_9: 8.78290703e-15 + art_sys_10: 5.53553390e-15 art_sys_11: 5.01987495e+00 - art_sys_12: 4.70886598e-15 - art_sys_13: 8.81150935e-15 - art_sys_14: 2.47611799e-15 + art_sys_12: 8.60287903e-15 + art_sys_13: -1.33596212e-14 + art_sys_14: 3.73794688e-15 art_sys_15: 9.36409003e-02 - art_sys_16: -7.84827650e-16 - art_sys_17: -2.75551279e-16 + art_sys_16: 1.16973067e-15 + art_sys_17: 6.14542600e-16 art_sys_18: 2.85277054e-02 - art_sys_19: -1.03524968e-15 - art_sys_20: 3.50845538e-15 - art_sys_21: 1.56399807e-02 - art_sys_22: 3.02710861e-16 - art_sys_23: 9.34705601e-16 - art_sys_24: 3.82749610e-03 - art_sys_25: 1.15436473e-18 - art_sys_26: -5.37473601e-18 - art_sys_27: 1.69839342e-18 - art_sys_28: 9.65785799e-17 - art_sys_29: -1.31419776e-16 - art_sys_30: -1.17122293e-19 - art_sys_31: 6.21557539e-20 - art_sys_32: -4.85976492e-19 - art_sys_33: -1.97902912e-19 - art_sys_34: -1.07622457e-05 - art_sys_35: 3.31067400e-18 - art_sys_36: 2.18339375e-06 - art_sys_37: 9.93959944e-17 - art_sys_38: -2.07967139e-19 - art_sys_39: -6.06813978e-15 - art_sys_40: 1.47227065e-06 - art_sys_41: -1.22274836e-15 - art_sys_42: -6.35393941e-17 - art_sys_43: -2.39056452e-21 - art_sys_44: -1.07134474e-20 - art_sys_45: -5.50103712e-20 - art_sys_46: -6.32158695e-17 + art_sys_19: -3.88402061e-16 + art_sys_20: -7.82515615e-16 + art_sys_21: -1.56399807e-02 + art_sys_22: -1.06385630e-15 + art_sys_23: 2.34116465e-15 + art_sys_24: -3.82749610e-03 + art_sys_25: -5.20484850e-17 + art_sys_26: -1.28138481e-16 + art_sys_27: -1.07622457e-05 + art_sys_28: 3.61084817e-16 + art_sys_29: -2.18339375e-06 + art_sys_30: -2.11374188e-16 + art_sys_31: -1.16200726e-16 + art_sys_32: 1.47227065e-06 + art_sys_33: 6.53813877e-17 + art_sys_34: -2.68572822e-17 + art_sys_35: 4.86023220e-17 + art_sys_36: 1.60090176e-16 + art_sys_37: 2.48875696e-18 + art_sys_38: -3.82440651e-19 + art_sys_39: 5.66496113e-20 + art_sys_40: -6.43951833e-20 + art_sys_41: 7.64830356e-21 + art_sys_42: 4.95781093e-19 + art_sys_43: 4.78395739e-19 + art_sys_44: 5.41445927e-18 + art_sys_45: -1.35346182e-18 + art_sys_46: 2.18364068e-21 art_sys_47: -3.72127349e-08 - art_sys_48: 2.11281275e-16 - art_sys_49: 4.27327494e-20 - art_sys_50: -5.41074568e-22 - art_sys_51: 7.36759550e-21 - art_sys_52: 2.88916511e-21 - art_sys_53: -1.14478053e-21 - art_sys_54: -1.23395633e-21 - art_sys_55: 4.66669142e-18 - art_sys_56: 3.21599928e-19 - art_sys_57: -1.05364930e-08 - art_sys_58: -1.19476954e-22 - art_sys_59: 2.09192952e-23 - art_sys_60: 2.62098229e-16 - art_sys_61: -1.43581566e-18 - art_sys_62: 3.35859077e-09 - art_sys_63: -9.40452642e-21 - art_sys_64: 4.19158524e-16 - art_sys_65: 1.95782297e-24 - art_sys_66: 3.77260194e-25 - art_sys_67: -2.12509770e-18 - art_sys_68: 5.00901387e-20 - art_sys_69: -8.44931263e-20 - art_sys_70: -3.65323477e-19 - art_sys_71: 7.93975368e-11 - art_sys_72: -1.42995887e-18 - art_sys_73: 5.96608364e-22 - art_sys_74: -2.81197445e-22 - art_sys_75: -1.01493366e-22 - art_sys_76: -1.35907768e-22 - art_sys_77: 1.87485147e-11 - art_sys_78: -8.60803215e-21 - art_sys_79: 1.22942757e-23 - art_sys_80: -4.10991560e-25 - art_sys_81: 6.85267458e-24 - art_sys_82: 1.52335737e-24 - art_sys_83: 5.51750820e-22 - art_sys_84: -9.08884792e-25 - art_sys_85: 9.86726978e-25 - art_sys_86: -2.74988093e-21 - art_sys_87: -4.41112512e-12 - art_sys_88: 2.42824985e-22 - art_sys_89: -2.19273849e-24 - art_sys_90: 1.70139140e-18 - art_sys_91: -1.66340137e-21 - art_sys_92: 6.70729478e-18 - art_sys_93: -1.68333944e-18 - art_sys_94: -3.23584705e-19 - art_sys_95: 5.01134927e-21 - art_sys_96: -4.85493645e-23 - art_sys_97: 1.22865256e-18 - art_sys_98: 4.90311168e-20 - art_sys_99: -1.69861015e-18 - art_sys_100: -1.11405017e-21 - art_sys_101: -3.83527978e-20 - art_sys_102: 2.43556799e-19 - art_sys_103: -7.22521223e-22 - art_sys_104: -1.46829656e-18 - art_sys_105: 1.62965994e-20 - art_sys_106: -9.90598289e-15 - art_sys_107: 1.87695072e-22 - art_sys_108: -1.15598176e-23 - art_sys_109: -6.53148086e-23 - art_sys_110: 2.20159179e-19 - art_sys_111: 2.25551546e-19 - art_sys_112: 1.10765019e-20 - art_sys_113: -1.05891323e-24 - art_sys_114: -1.73046633e-19 - art_sys_115: 3.77894049e-21 - art_sys_116: 1.98395251e-15 - art_sys_117: -9.40260458e-20 - art_sys_118: -1.89225822e-20 - art_sys_119: 4.09741422e-20 - art_sys_120: 3.84135532e-16 - art_sys_121: 7.06775502e-21 - art_sys_122: -6.21012034e-20 - art_sys_123: 8.58006712e-20 - art_sys_124: -6.50593363e-21 - art_sys_125: 6.30933753e-17 - art_sys_126: 1.84075973e-20 - art_sys_127: 4.76409124e-20 - art_sys_128: 3.64059140e-20 - art_sys_129: 2.13136394e-20 - art_sys_130: 1.00269607e-19 - art_sys_131: -8.49509199e-18 - art_sys_132: -2.14465807e-20 - art_sys_133: 1.71815503e-19 - art_sys_134: 1.25520025e-22 - art_sys_135: 7.17341996e-21 - art_sys_136: 1.59243640e-20 - art_sys_137: -1.93142289e-23 - art_sys_138: 1.03236684e-20 - art_sys_139: 3.88968672e-21 - art_sys_140: 1.48819219e-20 - art_sys_141: 1.48993637e-19 - art_sys_142: -4.27749227e-21 - art_sys_143: 5.24826774e-24 - art_sys_144: -2.60970407e-25 - art_sys_145: -5.89391466e-23 - art_sys_146: -0.0 - art_sys_147: 5.23551721e-22 - art_sys_148: -2.59351918e-21 - art_sys_149: -2.59351918e-21 - art_sys_150: -9.42373534e-22 - art_sys_151: -9.42373534e-22 - art_sys_152: 2.71598079e-22 - art_sys_153: 1.13384728e-22 - art_sys_154: -3.50112844e-25 - art_sys_155: 3.23230140e-35 - art_sys_156: -3.69872411e-37 - art_sys_157: -1.57586166e-37 + art_sys_48: -1.86807738e-16 + art_sys_49: 1.05364930e-08 + art_sys_50: -7.14974878e-21 + art_sys_51: -1.62904790e-20 + art_sys_52: 5.72125531e-18 + art_sys_53: -7.99763769e-18 + art_sys_54: 3.35859084e-09 + art_sys_55: 1.25070560e-17 + art_sys_56: -4.06150105e-18 + art_sys_57: 3.75153075e-20 + art_sys_58: -6.36496089e-22 + art_sys_59: 1.18586503e-17 + art_sys_60: 7.93975047e-11 + art_sys_61: 1.21786756e-22 + art_sys_62: 2.51404569e-19 + art_sys_63: -1.87485134e-11 + art_sys_64: -7.82418845e-20 + art_sys_65: 6.46642747e-21 + art_sys_66: -1.98906433e-21 + art_sys_67: -1.59068689e-22 + art_sys_68: -4.11284343e-24 + art_sys_69: 4.19047002e-24 + art_sys_70: 1.96577010e-24 + art_sys_71: -1.46742278e-25 + art_sys_72: -3.05385079e-25 + art_sys_73: 1.72865827e-25 + art_sys_74: -1.73389659e-21 + art_sys_75: -4.96448779e-26 + art_sys_76: -4.92830484e-23 + art_sys_77: -1.47055081e-22 + art_sys_78: -4.39129084e-24 + art_sys_79: -7.46417656e-25 + art_sys_80: 2.73202251e-27 + art_sys_81: 6.08459860e-21 + art_sys_82: -4.41113855e-12 + art_sys_83: -9.32301996e-26 + art_sys_84: -4.46898451e-26 + art_sys_85: 4.50995033e-26 + art_sys_86: 8.52885612e-27 + art_sys_87: 2.13471756e-25 + art_sys_88: -2.47166291e-22 + art_sys_89: -4.01592227e-29 + art_sys_90: 2.31686576e-24 + art_sys_91: -8.33733355e-18 + art_sys_92: -1.53662170e-27 + art_sys_93: 8.50202074e-28 + art_sys_94: 8.09373501e-23 + art_sys_95: 4.54626146e-22 + art_sys_96: 7.72231106e-18 + art_sys_97: 2.58704139e-19 + art_sys_98: 4.64592928e-23 + art_sys_99: 6.90634905e-19 + art_sys_100: 3.83621135e-23 + art_sys_101: -6.67644683e-19 + art_sys_102: -1.27054163e-21 + art_sys_103: -1.02442685e-20 + art_sys_104: 1.93168112e-19 + art_sys_105: 3.66821325e-22 + art_sys_106: 3.64557935e-21 + art_sys_107: 3.61176030e-21 + art_sys_108: 5.96211104e-22 + art_sys_109: -2.32676554e-23 + art_sys_110: -2.78496376e-21 + art_sys_111: 1.16445263e-20 + art_sys_112: -9.90567004e-15 + art_sys_113: 1.00824326e-19 + art_sys_114: -4.48032713e-24 + art_sys_115: 1.01987602e-20 + art_sys_116: -1.98350108e-21 + art_sys_117: -2.36822297e-24 + art_sys_118: -7.23168332e-21 + art_sys_119: -2.90468336e-21 + art_sys_120: -1.98408281e-15 + art_sys_121: 1.94258492e-24 + art_sys_122: 7.90907366e-21 + art_sys_123: 1.13397629e-21 + art_sys_124: -1.43951470e-21 + art_sys_125: -3.05326491e-24 + art_sys_126: -3.84113040e-16 + art_sys_127: -1.37793765e-21 + art_sys_128: -3.81158178e-21 + art_sys_129: -7.93320032e-24 + art_sys_130: 4.06527178e-20 + art_sys_131: 1.10425001e-22 + art_sys_132: 3.74227735e-20 + art_sys_133: -9.04042739e-20 + art_sys_134: -6.31037514e-17 + art_sys_135: -1.57460505e-20 + art_sys_136: -3.25212403e-22 + art_sys_137: 1.39416403e-20 + art_sys_138: -7.97209335e-22 + art_sys_139: -2.11770135e-19 + art_sys_140: 6.99292688e-23 + art_sys_141: -8.49111568e-18 + art_sys_142: 3.60100056e-22 + art_sys_143: 1.49908321e-20 + art_sys_144: -4.51790247e-22 + art_sys_145: -1.08738853e-20 + art_sys_146: -1.10687294e-21 + art_sys_147: 8.01752702e-24 + art_sys_148: 4.32799548e-24 + art_sys_149: -1.11500110e-23 + art_sys_150: -5.11051087e-21 + art_sys_151: -1.57844160e-19 + art_sys_152: -2.45644555e-23 + art_sys_153: -1.37541295e-20 + art_sys_154: -7.74865221e-22 + art_sys_155: 6.03013526e-23 + art_sys_156: -0.0 + art_sys_157: -3.45607584e-22 art_sys_158: -0.0 - art_sys_159: 1.53248209e-22 - art_sys_160: -4.42583149e-23 - art_sys_161: -1.52532038e-22 - art_sys_162: -4.23318685e-24 - art_sys_163: -1.42028258e-21 - art_sys_164: -2.24588402e-22 - art_sys_165: 1.64581604e-24 - art_sys_166: 1.30490464e-30 - art_sys_167: 1.24751697e-30 - art_sys_168: -4.42228394e-31 - art_sys_169: 2.60125727e-32 - art_sys_170: -3.91088267e-32 - art_sys_171: 2.75434118e-32 - art_sys_172: 2.74961519e-32 - art_sys_173: -8.82462793e-33 - art_sys_174: -4.15186554e-33 - art_sys_175: 1.93663344e-35 - art_sys_176: 2.31812000e-35 - art_sys_177: 6.64224856e-34 - art_sys_178: -2.60358541e-34 - art_sys_179: 1.55841963e-34 - art_sys_180: -2.13279644e-34 - art_sys_181: -4.70159584e-37 - art_sys_182: 5.29276884e-35 - art_sys_183: 7.43404099e-37 - art_sys_184: -1.37618913e-38 - art_sys_185: -7.02636126e-39 + art_sys_159: -2.48909867e-21 + art_sys_160: -2.05736748e-24 + art_sys_161: 3.44408803e-22 + art_sys_162: 3.44408803e-22 + art_sys_163: 3.00152937e-22 + art_sys_164: 3.00152937e-22 + art_sys_165: -3.47620802e-36 + art_sys_166: 1.15667684e-36 + art_sys_167: 0.0 + art_sys_168: -2.21039332e-31 + art_sys_169: -1.95392411e-31 + art_sys_170: -1.17267812e-31 + art_sys_171: -8.05343387e-32 + art_sys_172: 1.52021511e-32 + art_sys_173: 7.60065781e-34 + art_sys_174: 1.96418454e-33 + art_sys_175: 1.12217122e-33 + art_sys_176: -4.43233493e-34 + art_sys_177: 1.88591465e-34 + art_sys_178: 2.75280100e-34 + art_sys_179: -1.95972248e-35 + art_sys_180: -6.53941713e-35 + art_sys_181: 9.03627579e-35 + art_sys_182: -3.15321026e-35 + art_sys_183: 1.81657012e-37 + art_sys_184: 2.96192376e-37 + art_sys_185: -9.15562527e-38 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -56402,191 +56402,191 @@ bins: RelativeStatFSR-: -1.61856792e+01 luminosity_uncertainty: 241.8286 uncorrelated_uncertainty: 9.30110000e+01 -- art_sys_1: 1.03148364e-14 - art_sys_2: 5.38275766e-14 +- art_sys_1: 1.03315152e-14 + art_sys_2: 7.83974319e-14 art_sys_3: -8.35379826e+00 - art_sys_4: -6.89092094e-15 + art_sys_4: -7.87418175e-14 art_sys_5: 5.65117323e+01 - art_sys_6: -1.60301916e-15 - art_sys_7: -7.60460998e-15 + art_sys_6: 1.69109276e-14 + art_sys_7: 1.21553236e-14 art_sys_8: 1.98072711e+01 - art_sys_9: 2.97517922e-15 - art_sys_10: -1.15475953e-15 + art_sys_9: -5.52348722e-15 + art_sys_10: -8.04786590e-15 art_sys_11: -7.92238438e+00 - art_sys_12: -1.14119008e-14 - art_sys_13: -1.88008563e-14 - art_sys_14: -3.27453831e-15 + art_sys_12: -1.32358262e-14 + art_sys_13: 3.13044044e-14 + art_sys_14: -4.77492602e-15 art_sys_15: -3.13455227e-01 - art_sys_16: 3.91969471e-16 - art_sys_17: 6.73630337e-16 + art_sys_16: -1.51018316e-15 + art_sys_17: -5.00540631e-16 art_sys_18: -7.50215504e-02 - art_sys_19: 9.13511785e-16 - art_sys_20: -5.41062330e-15 - art_sys_21: -4.86733428e-02 - art_sys_22: -4.29131464e-16 - art_sys_23: -1.41803125e-15 - art_sys_24: -1.23672193e-02 - art_sys_25: 2.70087621e-19 - art_sys_26: 1.56295700e-17 - art_sys_27: -5.11277364e-18 - art_sys_28: -1.88064912e-16 - art_sys_29: 2.45248259e-16 - art_sys_30: 1.16815592e-19 - art_sys_31: -8.43780186e-20 - art_sys_32: 2.88734456e-19 - art_sys_33: -4.95246482e-20 - art_sys_34: 3.08573026e-05 - art_sys_35: -1.46003468e-16 - art_sys_36: -8.55392108e-06 - art_sys_37: -5.91608253e-16 - art_sys_38: 5.42422808e-20 - art_sys_39: 2.08359844e-14 - art_sys_40: -5.06643749e-06 - art_sys_41: 4.25909595e-15 - art_sys_42: 1.14560093e-16 - art_sys_43: -3.55569180e-20 - art_sys_44: -7.61640032e-21 - art_sys_45: 2.91190624e-19 - art_sys_46: 2.30564254e-16 + art_sys_19: 7.86183286e-16 + art_sys_20: 9.38600314e-16 + art_sys_21: 4.86733428e-02 + art_sys_22: 1.73764774e-15 + art_sys_23: -3.69592620e-15 + art_sys_24: 1.23672193e-02 + art_sys_25: 7.81956497e-17 + art_sys_26: 2.44595777e-16 + art_sys_27: 3.08573026e-05 + art_sys_28: -4.34726499e-16 + art_sys_29: 8.55392108e-06 + art_sys_30: 3.60705844e-16 + art_sys_31: 3.08032452e-16 + art_sys_32: -5.06643749e-06 + art_sys_33: -8.48846356e-17 + art_sys_34: 3.46342986e-17 + art_sys_35: -1.63445899e-16 + art_sys_36: -3.46483647e-17 + art_sys_37: 2.24154932e-18 + art_sys_38: 7.31403978e-20 + art_sys_39: -3.19305134e-21 + art_sys_40: -5.90252035e-20 + art_sys_41: -2.86564642e-19 + art_sys_42: -3.84589093e-19 + art_sys_43: 8.24058049e-19 + art_sys_44: -6.50495423e-18 + art_sys_45: 2.30749259e-18 + art_sys_46: -1.64271867e-19 art_sys_47: 1.42109417e-07 - art_sys_48: -8.07277727e-16 - art_sys_49: -8.27851076e-20 - art_sys_50: -4.51358380e-21 - art_sys_51: -2.31303609e-20 - art_sys_52: -1.08211705e-20 - art_sys_53: 5.06570993e-21 - art_sys_54: 4.72068374e-21 - art_sys_55: -1.71875022e-17 - art_sys_56: -7.43538982e-19 - art_sys_57: 4.10425761e-08 - art_sys_58: 4.51262086e-22 - art_sys_59: -8.33658913e-23 - art_sys_60: -9.91465410e-16 - art_sys_61: 3.22247389e-18 - art_sys_62: -1.26238487e-08 - art_sys_63: 2.54494076e-20 - art_sys_64: -1.55564336e-15 - art_sys_65: -8.91359783e-24 - art_sys_66: -1.40730358e-24 - art_sys_67: 1.09559037e-17 - art_sys_68: -1.22727706e-19 - art_sys_69: 5.84247268e-20 - art_sys_70: -1.09805086e-18 - art_sys_71: -3.57463838e-10 - art_sys_72: 5.76913311e-18 - art_sys_73: -2.25435338e-21 - art_sys_74: 1.10259320e-21 - art_sys_75: 4.00486677e-22 - art_sys_76: 5.26265748e-22 - art_sys_77: -7.25955118e-11 - art_sys_78: 3.52780210e-20 - art_sys_79: -5.06211900e-23 - art_sys_80: 1.90503034e-24 - art_sys_81: -2.84691604e-23 - art_sys_82: -6.31182175e-24 - art_sys_83: -2.71974720e-21 - art_sys_84: 3.80466833e-24 - art_sys_85: -4.08143042e-24 - art_sys_86: 9.69531707e-21 - art_sys_87: 1.82999185e-11 - art_sys_88: -9.91898723e-22 - art_sys_89: 9.24165601e-24 - art_sys_90: -8.52810754e-18 - art_sys_91: -3.07748786e-22 - art_sys_92: -2.72892736e-17 - art_sys_93: 6.40558783e-18 - art_sys_94: 1.48744818e-18 - art_sys_95: -2.65487120e-20 - art_sys_96: 1.94151227e-22 - art_sys_97: -6.11246417e-18 - art_sys_98: 1.78304356e-20 - art_sys_99: 6.37636120e-18 - art_sys_100: 6.05591373e-21 - art_sys_101: -1.05932751e-20 - art_sys_102: -3.94675251e-19 - art_sys_103: 2.89016423e-21 - art_sys_104: 5.52056969e-18 - art_sys_105: -5.97902748e-20 - art_sys_106: 4.92766844e-14 - art_sys_107: -7.69258933e-22 - art_sys_108: 4.74192785e-23 - art_sys_109: 2.70673068e-22 - art_sys_110: -7.67143843e-19 - art_sys_111: -1.04437077e-18 - art_sys_112: -5.47954319e-20 - art_sys_113: 4.63167967e-24 - art_sys_114: 7.42974455e-19 - art_sys_115: -1.50958045e-20 - art_sys_116: -7.01501276e-15 - art_sys_117: 5.61409718e-19 - art_sys_118: 7.55876276e-20 - art_sys_119: -2.32176504e-19 - art_sys_120: -1.77815554e-15 - art_sys_121: -2.88454100e-20 - art_sys_122: 1.85362035e-19 - art_sys_123: -3.89263438e-19 - art_sys_124: 2.66434447e-20 - art_sys_125: -2.52081841e-16 - art_sys_126: -7.54355302e-20 - art_sys_127: -1.93588248e-19 - art_sys_128: -1.49319814e-19 - art_sys_129: -1.09612267e-19 - art_sys_130: -4.11192517e-19 - art_sys_131: 3.48148191e-17 - art_sys_132: 9.26092303e-20 - art_sys_133: -7.04491116e-19 - art_sys_134: -5.22019692e-22 - art_sys_135: -3.16909306e-20 - art_sys_136: -6.56632448e-20 - art_sys_137: 8.15591637e-23 - art_sys_138: -3.82979883e-20 - art_sys_139: -1.56218180e-20 - art_sys_140: -6.13319443e-20 - art_sys_141: -6.43535011e-19 - art_sys_142: 1.78890307e-20 - art_sys_143: -2.21449257e-23 - art_sys_144: 8.32389301e-25 - art_sys_145: 2.52188730e-22 - art_sys_146: 0.0 - art_sys_147: -2.21747353e-21 - art_sys_148: 1.06261914e-20 - art_sys_149: 1.06261914e-20 - art_sys_150: 4.23393207e-21 - art_sys_151: 4.23393207e-21 - art_sys_152: -1.32886086e-21 - art_sys_153: -5.17153253e-22 - art_sys_154: 1.50045287e-24 - art_sys_155: -1.47572609e-34 - art_sys_156: 1.51445561e-36 - art_sys_157: 6.48477070e-37 + art_sys_48: 7.50918292e-16 + art_sys_49: -4.10425760e-08 + art_sys_50: -7.34971046e-20 + art_sys_51: -2.77397143e-19 + art_sys_52: -2.00979553e-17 + art_sys_53: -5.14481146e-18 + art_sys_54: -1.26238490e-08 + art_sys_55: -2.22887446e-17 + art_sys_56: 1.52763875e-17 + art_sys_57: 1.26062246e-19 + art_sys_58: -4.01024423e-22 + art_sys_59: -5.25647764e-17 + art_sys_60: -3.57463697e-10 + art_sys_61: 5.41834411e-21 + art_sys_62: -9.26845395e-19 + art_sys_63: 7.25955061e-11 + art_sys_64: 9.91812794e-20 + art_sys_65: -6.26341544e-21 + art_sys_66: -6.87767077e-21 + art_sys_67: 1.76532181e-21 + art_sys_68: 1.81649603e-23 + art_sys_69: -1.39042689e-23 + art_sys_70: -4.66950072e-24 + art_sys_71: 1.08923653e-24 + art_sys_72: 1.27794115e-24 + art_sys_73: -7.31151773e-25 + art_sys_74: 2.47477498e-21 + art_sys_75: 1.93935931e-25 + art_sys_76: 2.07533970e-22 + art_sys_77: 6.10963130e-22 + art_sys_78: 1.78333781e-23 + art_sys_79: 1.68436846e-24 + art_sys_80: -1.77654207e-25 + art_sys_81: -2.52454132e-20 + art_sys_82: 1.82999743e-11 + art_sys_83: 4.72395086e-25 + art_sys_84: 1.98283767e-25 + art_sys_85: -2.33984122e-25 + art_sys_86: -4.01289985e-26 + art_sys_87: 3.48174238e-26 + art_sys_88: 1.22951805e-21 + art_sys_89: 3.35897694e-28 + art_sys_90: -1.24728461e-24 + art_sys_91: 3.35425367e-17 + art_sys_92: 7.58272301e-27 + art_sys_93: -4.10140929e-27 + art_sys_94: -3.74659792e-22 + art_sys_95: -5.97524915e-23 + art_sys_96: -3.36311119e-17 + art_sys_97: -9.54887036e-19 + art_sys_98: -1.77670400e-24 + art_sys_99: -2.76548902e-18 + art_sys_100: 1.66232302e-23 + art_sys_101: 2.80793668e-18 + art_sys_102: 6.14662618e-21 + art_sys_103: 2.21885738e-20 + art_sys_104: -3.45605962e-19 + art_sys_105: -1.50324145e-21 + art_sys_106: -8.87720957e-20 + art_sys_107: -1.27825740e-20 + art_sys_108: -2.44335192e-21 + art_sys_109: 9.52055124e-23 + art_sys_110: 5.46553614e-20 + art_sys_111: -1.77829820e-20 + art_sys_112: 4.92751261e-14 + art_sys_113: -3.74345276e-19 + art_sys_114: 1.83836877e-23 + art_sys_115: -1.85148180e-20 + art_sys_116: 8.63386466e-21 + art_sys_117: 9.56892468e-24 + art_sys_118: 1.49768131e-20 + art_sys_119: 1.47056926e-20 + art_sys_120: 7.01545873e-15 + art_sys_121: -8.01834985e-24 + art_sys_122: -2.41650940e-20 + art_sys_123: -4.52190060e-21 + art_sys_124: -2.71794564e-21 + art_sys_125: 1.32966086e-23 + art_sys_126: 1.77805284e-15 + art_sys_127: 5.39023228e-21 + art_sys_128: 1.56534153e-20 + art_sys_129: 3.40403175e-23 + art_sys_130: -1.66638443e-19 + art_sys_131: -4.73837547e-22 + art_sys_132: -1.30824204e-19 + art_sys_133: 3.70385623e-19 + art_sys_134: 2.52123594e-16 + art_sys_135: 6.95857241e-20 + art_sys_136: 1.39699094e-21 + art_sys_137: -5.73001264e-20 + art_sys_138: 3.12671350e-21 + art_sys_139: 8.67943960e-19 + art_sys_140: -2.97915007e-22 + art_sys_141: 3.47978098e-17 + art_sys_142: -1.03003971e-21 + art_sys_143: -6.14207310e-20 + art_sys_144: 1.89111991e-21 + art_sys_145: 4.32426285e-20 + art_sys_146: 4.54717870e-21 + art_sys_147: -3.16049118e-23 + art_sys_148: -1.60700658e-23 + art_sys_149: -6.02771858e-24 + art_sys_150: 2.13290199e-20 + art_sys_151: 6.78750052e-19 + art_sys_152: 1.11751103e-22 + art_sys_153: 5.74270275e-20 + art_sys_154: 3.35774515e-21 + art_sys_155: -2.52700470e-22 + art_sys_156: 0.0 + art_sys_157: 1.36901653e-21 art_sys_158: 0.0 - art_sys_159: -6.60790552e-22 - art_sys_160: 1.90655591e-22 - art_sys_161: 6.56785128e-22 - art_sys_162: 1.82353208e-23 - art_sys_163: 6.10263106e-21 - art_sys_164: 9.62808978e-22 - art_sys_165: -6.32625089e-24 - art_sys_166: -5.61872224e-30 - art_sys_167: -5.39305540e-30 - art_sys_168: 1.90553986e-30 - art_sys_169: -1.02776382e-31 - art_sys_170: 1.89604650e-31 - art_sys_171: -1.19316710e-31 - art_sys_172: -1.16122421e-31 - art_sys_173: 3.74326763e-32 - art_sys_174: 1.80075203e-32 - art_sys_175: -8.29714868e-35 - art_sys_176: -1.58856002e-34 - art_sys_177: -2.90947132e-33 - art_sys_178: 1.11257690e-33 - art_sys_179: -6.61728755e-34 - art_sys_180: 9.07170378e-34 - art_sys_181: 1.89047897e-36 - art_sys_182: -2.28148146e-34 - art_sys_183: -3.19340532e-36 - art_sys_184: 5.89477959e-38 - art_sys_185: 2.97034744e-38 + art_sys_159: 1.00469707e-20 + art_sys_160: -2.49677084e-24 + art_sys_161: -1.38359844e-21 + art_sys_162: -1.38359844e-21 + art_sys_163: -1.21354096e-21 + art_sys_164: -1.21354096e-21 + art_sys_165: 1.40396253e-35 + art_sys_166: -4.67085619e-36 + art_sys_167: -0.0 + art_sys_168: 9.47987315e-31 + art_sys_169: 8.46257329e-31 + art_sys_170: 4.10831828e-31 + art_sys_171: 2.83490427e-31 + art_sys_172: -7.59506855e-32 + art_sys_173: -3.84189960e-33 + art_sys_174: -8.07649905e-33 + art_sys_175: -4.53757394e-33 + art_sys_176: 1.85423989e-33 + art_sys_177: -8.05917458e-34 + art_sys_178: -1.17248292e-33 + art_sys_179: 8.18414703e-35 + art_sys_180: 2.64158142e-34 + art_sys_181: -3.84751334e-34 + art_sys_182: 1.34224249e-34 + art_sys_183: -9.06407144e-37 + art_sys_184: -1.22415651e-36 + art_sys_185: 3.70950167e-37 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -56693,191 +56693,191 @@ bins: RelativeStatFSR-: -7.42705277e+00 luminosity_uncertainty: 1.04034060e+02 uncorrelated_uncertainty: 40.0131 -- art_sys_1: -5.95003272e-15 - art_sys_2: 1.65084096e-14 +- art_sys_1: -4.72513881e-15 + art_sys_2: 2.42070446e-14 art_sys_3: 8.88853667e+00 - art_sys_4: 5.61719630e-14 + art_sys_4: 3.87091027e-14 art_sys_5: 1.22951844e+01 - art_sys_6: 3.08949625e-14 - art_sys_7: 7.84500965e-15 + art_sys_6: 6.01618023e-14 + art_sys_7: -1.26001573e-14 art_sys_8: 3.34585640e+01 - art_sys_9: -6.51066043e-15 - art_sys_10: -2.51948092e-15 + art_sys_9: -1.57269478e-14 + art_sys_10: 9.07723978e-15 art_sys_11: 8.18473636e+00 - art_sys_12: 8.04302465e-15 - art_sys_13: 1.69102924e-14 - art_sys_14: 3.93254433e-15 + art_sys_12: 2.81168604e-14 + art_sys_13: -2.93764303e-14 + art_sys_14: 4.37614421e-15 art_sys_15: 2.97891803e-01 - art_sys_16: 8.11355179e-17 - art_sys_17: -8.86849103e-16 + art_sys_16: 1.82098426e-15 + art_sys_17: 2.70967818e-17 art_sys_18: 1.66819769e-01 - art_sys_19: 4.88124754e-15 - art_sys_20: 5.65642731e-15 - art_sys_21: 9.56776610e-02 - art_sys_22: 1.51941936e-16 - art_sys_23: 1.41215914e-15 - art_sys_24: 2.86389368e-02 - art_sys_25: 5.17091400e-19 - art_sys_26: -5.72679017e-17 - art_sys_27: 1.90131184e-17 - art_sys_28: 2.51011657e-16 - art_sys_29: -5.03203180e-16 - art_sys_30: -1.11447017e-18 - art_sys_31: -1.91762428e-19 - art_sys_32: -9.37397827e-19 - art_sys_33: -1.43970237e-19 - art_sys_34: -1.15703962e-04 - art_sys_35: 2.95823510e-16 - art_sys_36: 2.46174492e-05 - art_sys_37: 2.04364338e-15 - art_sys_38: -2.28974433e-19 - art_sys_39: -6.99582600e-14 - art_sys_40: 1.71523137e-05 - art_sys_41: -1.45094390e-14 - art_sys_42: -1.39355798e-16 - art_sys_43: 4.42864383e-20 - art_sys_44: -2.65123842e-21 - art_sys_45: 1.79002281e-19 - art_sys_46: -4.79611288e-16 - art_sys_47: -5.14892199e-07 - art_sys_48: 2.60369447e-15 - art_sys_49: 2.00600187e-19 - art_sys_50: 2.60832914e-20 - art_sys_51: 7.99232449e-20 - art_sys_52: 3.68273258e-20 - art_sys_53: -1.51435785e-20 - art_sys_54: -1.64680664e-20 - art_sys_55: 4.95560043e-17 - art_sys_56: 2.82665348e-19 - art_sys_57: -1.34128404e-07 - art_sys_58: -1.66086215e-21 - art_sys_59: 2.83683697e-22 - art_sys_60: 3.60669843e-15 - art_sys_61: -3.40540295e-17 - art_sys_62: 4.59054536e-08 - art_sys_63: -5.22538306e-20 - art_sys_64: 5.61362294e-15 - art_sys_65: 2.63568784e-23 - art_sys_66: 5.33521938e-24 - art_sys_67: -4.30615543e-17 - art_sys_68: 3.78859872e-19 - art_sys_69: -1.46011334e-19 - art_sys_70: 4.58676572e-18 - art_sys_71: 1.07284765e-09 - art_sys_72: -2.30947676e-17 - art_sys_73: 8.64028719e-21 - art_sys_74: -3.88485336e-21 - art_sys_75: -1.40297164e-21 - art_sys_76: -1.87366554e-21 - art_sys_77: 2.58468883e-10 - art_sys_78: -1.08566607e-19 - art_sys_79: 1.71629635e-22 - art_sys_80: -6.87935269e-24 - art_sys_81: 9.55005078e-23 - art_sys_82: 2.12353334e-23 - art_sys_83: 7.44883552e-21 - art_sys_84: -1.26467581e-23 - art_sys_85: 1.37612004e-23 - art_sys_86: -3.83501184e-20 - art_sys_87: -6.14858627e-11 - art_sys_88: 3.42871007e-21 - art_sys_89: -3.08604882e-23 - art_sys_90: 3.20034886e-17 - art_sys_91: -3.66016447e-21 - art_sys_92: 9.05115854e-17 - art_sys_93: -2.29643869e-17 - art_sys_94: -4.94595937e-18 - art_sys_95: 7.26091956e-20 - art_sys_96: -6.75779858e-22 - art_sys_97: 1.65567045e-17 - art_sys_98: -1.01288257e-18 - art_sys_99: -2.32141901e-17 - art_sys_100: -1.54574896e-20 - art_sys_101: -1.99537585e-20 - art_sys_102: 4.04730837e-19 - art_sys_103: -8.45400152e-21 - art_sys_104: -2.00615669e-17 - art_sys_105: 1.13976238e-19 - art_sys_106: -1.33489903e-13 - art_sys_107: 2.63705075e-21 - art_sys_108: -1.62537195e-22 - art_sys_109: -9.28645061e-22 - art_sys_110: 3.06733521e-18 - art_sys_111: 2.77172870e-18 - art_sys_112: 1.60400795e-19 - art_sys_113: -1.59198527e-23 - art_sys_114: -1.92283113e-18 - art_sys_115: 5.25657651e-20 - art_sys_116: 2.76738838e-14 - art_sys_117: -1.55588701e-18 - art_sys_118: -2.63278905e-19 - art_sys_119: 7.30546356e-19 - art_sys_120: 5.48970772e-15 - art_sys_121: 9.88207178e-20 - art_sys_122: -7.80455828e-19 - art_sys_123: 1.25429192e-18 - art_sys_124: -9.13220437e-20 - art_sys_125: 8.77921476e-16 - art_sys_126: 2.58594129e-19 - art_sys_127: 6.53415601e-19 - art_sys_128: 5.11948554e-19 - art_sys_129: 3.13208534e-19 - art_sys_130: 1.40970764e-18 - art_sys_131: -1.19351324e-16 - art_sys_132: -3.03260181e-19 - art_sys_133: 2.41517280e-18 - art_sys_134: 1.77358270e-21 - art_sys_135: 1.01954205e-19 - art_sys_136: 2.25109339e-19 - art_sys_137: -2.73409033e-22 - art_sys_138: 1.40976651e-19 - art_sys_139: 5.52790415e-20 - art_sys_140: 2.10796622e-19 - art_sys_141: 2.20979281e-18 - art_sys_142: -6.17220270e-20 - art_sys_143: 7.39531253e-23 - art_sys_144: -1.73970032e-24 - art_sys_145: -8.55117099e-22 - art_sys_146: -0.0 - art_sys_147: 7.50785410e-21 - art_sys_148: -3.59756861e-20 - art_sys_149: -3.59756861e-20 - art_sys_150: -1.43132083e-20 - art_sys_151: -1.43132083e-20 - art_sys_152: 3.94518789e-21 - art_sys_153: 1.78024670e-21 - art_sys_154: -5.06107804e-24 - art_sys_155: 6.39417641e-34 - art_sys_156: -5.15121131e-36 - art_sys_157: -2.20996674e-36 + art_sys_19: 1.81376593e-15 + art_sys_20: -9.22182643e-16 + art_sys_21: -9.56776610e-02 + art_sys_22: -1.86152181e-15 + art_sys_23: 3.91858420e-15 + art_sys_24: -2.86389368e-02 + art_sys_25: -6.22532840e-17 + art_sys_26: -2.71866336e-16 + art_sys_27: -1.15703962e-04 + art_sys_28: 8.48345287e-17 + art_sys_29: -2.46174492e-05 + art_sys_30: -3.75068702e-16 + art_sys_31: -5.81363457e-16 + art_sys_32: 1.71523137e-05 + art_sys_33: 6.81554874e-17 + art_sys_34: -2.12691108e-17 + art_sys_35: 3.59871206e-16 + art_sys_36: 2.18549773e-17 + art_sys_37: -8.02289708e-19 + art_sys_38: -2.22591886e-19 + art_sys_39: -2.66342559e-20 + art_sys_40: -4.85119806e-20 + art_sys_41: -1.16047667e-19 + art_sys_42: -1.45558629e-19 + art_sys_43: 3.60872863e-19 + art_sys_44: -4.10167885e-18 + art_sys_45: 1.37654957e-18 + art_sys_46: -4.46276165e-20 + art_sys_47: -5.14892200e-07 + art_sys_48: -2.44138308e-15 + art_sys_49: 1.34128403e-07 + art_sys_50: -1.77541484e-20 + art_sys_51: 3.34095121e-20 + art_sys_52: 4.36051345e-17 + art_sys_53: 8.61553657e-17 + art_sys_54: 4.59054546e-08 + art_sys_55: 3.17969301e-17 + art_sys_56: -4.70384477e-17 + art_sys_57: 2.37834150e-20 + art_sys_58: 1.01101412e-21 + art_sys_59: 1.55774606e-16 + art_sys_60: 1.07284721e-09 + art_sys_61: -3.23227151e-20 + art_sys_62: 2.33526377e-18 + art_sys_63: -2.58468864e-10 + art_sys_64: -4.30091591e-19 + art_sys_65: 2.22869738e-20 + art_sys_66: 1.93715273e-20 + art_sys_67: -3.74575736e-21 + art_sys_68: -6.20261108e-23 + art_sys_69: 4.78598631e-23 + art_sys_70: 1.50023128e-23 + art_sys_71: -3.60792256e-24 + art_sys_72: -4.19133939e-24 + art_sys_73: 2.35059422e-24 + art_sys_74: -7.85410615e-21 + art_sys_75: -7.97747487e-25 + art_sys_76: -6.85938578e-22 + art_sys_77: -2.04936139e-21 + art_sys_78: -6.14959983e-23 + art_sys_79: -8.05606597e-24 + art_sys_80: -5.75004544e-26 + art_sys_81: 8.48178373e-20 + art_sys_82: -6.14860499e-11 + art_sys_83: -1.32211363e-24 + art_sys_84: -6.13273534e-25 + art_sys_85: 6.06011279e-25 + art_sys_86: 1.16786452e-25 + art_sys_87: -3.64062628e-26 + art_sys_88: -3.33092489e-21 + art_sys_89: -6.54291662e-28 + art_sys_90: 3.45846185e-23 + art_sys_91: -1.14477159e-16 + art_sys_92: -2.07277134e-26 + art_sys_93: 1.14888940e-26 + art_sys_94: 1.15685944e-21 + art_sys_95: 3.02992687e-22 + art_sys_96: 1.15123885e-16 + art_sys_97: 3.57478103e-18 + art_sys_98: 1.69517032e-22 + art_sys_99: 9.25053326e-18 + art_sys_100: -6.88925450e-23 + art_sys_101: -9.70246731e-18 + art_sys_102: -1.69651970e-20 + art_sys_103: -7.88243596e-20 + art_sys_104: 4.50987926e-19 + art_sys_105: 5.15354684e-21 + art_sys_106: 3.75933120e-19 + art_sys_107: 5.04440399e-20 + art_sys_108: 8.37635624e-21 + art_sys_109: -3.26377738e-22 + art_sys_110: -2.41741530e-20 + art_sys_111: 2.08457482e-20 + art_sys_112: -1.33485686e-13 + art_sys_113: 1.35079344e-18 + art_sys_114: -6.30272030e-23 + art_sys_115: 3.05816614e-20 + art_sys_116: -2.80697137e-20 + art_sys_117: -3.28053499e-23 + art_sys_118: -3.58399215e-20 + art_sys_119: -4.22534854e-20 + art_sys_120: -2.76756968e-14 + art_sys_121: 2.75081406e-23 + art_sys_122: 6.31402020e-20 + art_sys_123: 1.57690652e-20 + art_sys_124: 7.09630357e-21 + art_sys_125: -4.57156926e-23 + art_sys_126: -5.48938662e-15 + art_sys_127: -1.84575434e-20 + art_sys_128: -6.52475754e-20 + art_sys_129: -1.16784094e-22 + art_sys_130: 5.71254476e-19 + art_sys_131: 1.62569575e-21 + art_sys_132: 5.17156165e-19 + art_sys_133: -1.26965563e-18 + art_sys_134: -8.78066181e-16 + art_sys_135: -2.22273634e-19 + art_sys_136: -4.79412600e-21 + art_sys_137: 1.96409634e-19 + art_sys_138: -1.05429842e-20 + art_sys_139: -2.97549161e-18 + art_sys_140: 1.01829913e-21 + art_sys_141: -1.19293851e-16 + art_sys_142: 4.97732038e-21 + art_sys_143: 2.10598175e-19 + art_sys_144: -6.42464085e-21 + art_sys_145: -1.51128385e-19 + art_sys_146: -1.55541904e-20 + art_sys_147: 1.09907124e-22 + art_sys_148: 5.67020306e-23 + art_sys_149: -3.56972399e-22 + art_sys_150: -7.29669805e-20 + art_sys_151: -2.33027410e-18 + art_sys_152: -3.79069894e-22 + art_sys_153: -1.96975774e-19 + art_sys_154: -1.04257640e-20 + art_sys_155: 8.75383062e-22 + art_sys_156: -0.0 + art_sys_157: -4.76256927e-21 art_sys_158: -0.0 - art_sys_159: 2.27031810e-21 - art_sys_160: -6.55043310e-22 - art_sys_161: -2.25567798e-21 - art_sys_162: -6.26055411e-23 - art_sys_163: -2.09243559e-20 - art_sys_164: -3.30532915e-21 - art_sys_165: 2.16906857e-23 - art_sys_166: 1.92766068e-29 - art_sys_167: 1.84709359e-29 - art_sys_168: -6.54493966e-30 - art_sys_169: 4.09642796e-31 - art_sys_170: -6.83070028e-31 - art_sys_171: 4.07180526e-31 - art_sys_172: 3.33355102e-31 - art_sys_173: -1.19701561e-31 - art_sys_174: -5.78778681e-32 - art_sys_175: 2.81029309e-34 - art_sys_176: 4.86395943e-34 - art_sys_177: 9.71241118e-33 - art_sys_178: -3.71173424e-33 - art_sys_179: 2.21852186e-33 - art_sys_180: -3.04231761e-33 - art_sys_181: -6.90599766e-36 - art_sys_182: 7.84708751e-34 - art_sys_183: 1.09176197e-35 - art_sys_184: -1.97786652e-37 - art_sys_185: -9.95851261e-38 + art_sys_159: -3.47151864e-20 + art_sys_160: 3.29171486e-23 + art_sys_161: 4.81239654e-21 + art_sys_162: 4.81239654e-21 + art_sys_163: 4.21713979e-21 + art_sys_164: 4.21713979e-21 + art_sys_165: -4.87937514e-35 + art_sys_166: 1.62352117e-35 + art_sys_167: 0.0 + art_sys_168: -3.40452984e-30 + art_sys_169: -2.90638950e-30 + art_sys_170: -1.40133128e-30 + art_sys_171: -9.82457055e-31 + art_sys_172: 2.69091244e-31 + art_sys_173: 1.28603511e-32 + art_sys_174: 2.77700315e-32 + art_sys_175: 1.51913189e-32 + art_sys_176: -6.23114848e-33 + art_sys_177: 2.73258705e-33 + art_sys_178: 3.95536752e-33 + art_sys_179: -2.84134901e-34 + art_sys_180: -9.14153290e-34 + art_sys_181: 1.29921322e-33 + art_sys_182: -4.61810783e-34 + art_sys_183: 3.17390168e-36 + art_sys_184: 4.18178850e-36 + art_sys_185: -1.27726760e-36 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -56984,191 +56984,191 @@ bins: RelativeStatFSR-: -3.18924943e+00 luminosity_uncertainty: 4.15841400e+01 uncorrelated_uncertainty: 1.59939000e+01 -- art_sys_1: -6.96603526e-16 - art_sys_2: -1.75233504e-15 +- art_sys_1: -7.51836422e-16 + art_sys_2: -2.36054835e-15 art_sys_3: 7.63076315e-01 - art_sys_4: -4.16778069e-15 + art_sys_4: 1.68234238e-14 art_sys_5: -2.05309978e+00 - art_sys_6: 2.44134099e-15 - art_sys_7: -1.06421336e-14 + art_sys_6: 3.50898031e-15 + art_sys_7: -5.29359626e-15 art_sys_8: 1.21291106e+00 - art_sys_9: -1.67986910e-15 - art_sys_10: 5.71904596e-16 + art_sys_9: 1.86053891e-15 + art_sys_10: 6.24475140e-16 art_sys_11: 1.87882270e+00 - art_sys_12: 6.58446981e-15 - art_sys_13: -9.06406004e-14 - art_sys_14: 1.02928693e-14 + art_sys_12: 2.43820942e-15 + art_sys_13: 2.17742841e-13 + art_sys_14: 1.55372540e-14 art_sys_15: -3.24579345e+00 - art_sys_16: -1.11658631e-14 - art_sys_17: 3.19035065e-15 + art_sys_16: 3.86289103e-15 + art_sys_17: 6.07551789e-15 art_sys_18: -5.45311693e-01 - art_sys_19: -1.29214412e-14 - art_sys_20: 5.62065654e-15 - art_sys_21: -5.43312893e-01 - art_sys_22: -7.34956717e-16 - art_sys_23: -3.88729821e-16 - art_sys_24: -1.50225105e-01 - art_sys_25: 2.83765743e-17 - art_sys_26: 3.02264337e-16 - art_sys_27: -9.91403979e-17 - art_sys_28: -8.82166862e-16 - art_sys_29: 2.07720892e-15 - art_sys_30: 2.54076240e-18 - art_sys_31: 1.18084840e-18 - art_sys_32: 4.79235329e-18 - art_sys_33: 1.74189967e-18 - art_sys_34: 6.02977710e-04 - art_sys_35: -2.73243900e-15 - art_sys_36: -1.62072006e-04 - art_sys_37: -1.42869245e-14 - art_sys_38: 2.71652120e-19 - art_sys_39: 3.92496622e-13 - art_sys_40: -9.61306403e-05 - art_sys_41: 8.15458639e-14 - art_sys_42: 4.12259594e-16 - art_sys_43: 5.68927947e-20 - art_sys_44: 3.57646681e-20 - art_sys_45: -3.26248325e-19 - art_sys_46: 3.15299534e-15 - art_sys_47: 3.31179480e-06 - art_sys_48: -1.57003542e-14 - art_sys_49: -1.26824317e-18 - art_sys_50: -1.58620037e-19 - art_sys_51: -4.83186714e-19 - art_sys_52: -2.23807286e-19 - art_sys_53: 9.07192524e-20 - art_sys_54: 9.81837849e-20 - art_sys_55: -2.99169720e-16 - art_sys_56: -1.59248583e-18 - art_sys_57: 8.12363157e-07 - art_sys_58: 9.66094214e-21 - art_sys_59: -1.79206011e-21 - art_sys_60: -2.13875831e-14 - art_sys_61: 2.05681739e-16 - art_sys_62: -2.71999832e-07 - art_sys_63: 3.86948269e-19 - art_sys_64: -3.31888548e-14 - art_sys_65: -1.91675085e-22 - art_sys_66: -2.89343673e-23 - art_sys_67: 2.63789439e-16 - art_sys_68: -2.43011808e-18 - art_sys_69: 1.16196219e-18 - art_sys_70: -4.88781751e-17 - art_sys_71: -7.68093048e-09 - art_sys_72: 1.35463147e-16 - art_sys_73: -4.57602345e-20 - art_sys_74: 2.27439631e-20 - art_sys_75: 8.27537267e-21 - art_sys_76: 1.07184637e-20 - art_sys_77: -1.47845168e-09 - art_sys_78: 6.35626785e-19 - art_sys_79: -1.10799977e-21 - art_sys_80: 4.39625988e-23 - art_sys_81: -6.13389169e-22 - art_sys_82: -1.36136566e-22 - art_sys_83: -4.27471694e-20 - art_sys_84: 8.12901107e-23 - art_sys_85: -8.85357840e-23 - art_sys_86: 1.84622563e-19 - art_sys_87: 3.95065412e-10 - art_sys_88: -1.86634136e-20 - art_sys_89: 1.68024615e-22 - art_sys_90: -2.14499343e-16 - art_sys_91: 3.17213099e-20 - art_sys_92: -5.77768372e-16 - art_sys_93: 1.37836902e-16 - art_sys_94: 3.11035056e-17 - art_sys_95: -4.13249791e-19 - art_sys_96: 3.47396301e-21 - art_sys_97: -9.43436279e-17 - art_sys_98: 8.36064095e-18 - art_sys_99: 1.37510840e-16 - art_sys_100: 8.90616817e-20 - art_sys_101: -3.23602980e-20 - art_sys_102: -6.71259741e-19 - art_sys_103: 4.60963745e-20 - art_sys_104: 1.18937951e-16 - art_sys_105: -6.66652574e-19 - art_sys_106: 7.60636623e-13 - art_sys_107: -1.39811742e-20 - art_sys_108: 8.63075855e-22 - art_sys_109: 5.06003983e-21 - art_sys_110: -1.46229086e-17 - art_sys_111: -1.55615723e-17 - art_sys_112: -1.03780240e-18 - art_sys_113: 9.76094930e-23 - art_sys_114: 1.06441063e-17 - art_sys_115: -2.69939595e-19 - art_sys_116: -1.33542761e-13 - art_sys_117: 9.13968840e-18 - art_sys_118: 1.35150426e-18 - art_sys_119: -4.09607001e-18 - art_sys_120: -3.31770591e-14 - art_sys_121: -5.18085657e-19 - art_sys_122: 3.41892733e-18 - art_sys_123: -7.34904524e-18 - art_sys_124: 4.83168485e-19 - art_sys_125: -4.50784356e-15 - art_sys_126: -1.37067284e-18 - art_sys_127: -3.45197037e-18 - art_sys_128: -2.71981660e-18 - art_sys_129: -2.08257927e-18 - art_sys_130: -7.48569558e-18 - art_sys_131: 6.32741901e-16 - art_sys_132: 1.69127061e-18 - art_sys_133: -1.28199025e-17 - art_sys_134: -9.61847005e-21 - art_sys_135: -5.85045803e-19 - art_sys_136: -1.21105862e-18 - art_sys_137: 1.50928424e-21 - art_sys_138: -8.25830552e-19 - art_sys_139: -2.94158930e-19 - art_sys_140: -1.13687949e-18 - art_sys_141: -1.31849556e-17 - art_sys_142: 3.45861923e-19 - art_sys_143: -4.05484146e-22 - art_sys_144: -9.36920508e-24 - art_sys_145: 4.93037726e-21 - art_sys_146: 0.0 - art_sys_147: -4.22558504e-20 - art_sys_148: 1.87249011e-19 - art_sys_149: 1.87249011e-19 - art_sys_150: 9.07305569e-20 - art_sys_151: 9.07305569e-20 - art_sys_152: -2.53779102e-20 - art_sys_153: -1.18282641e-20 - art_sys_154: 2.91083900e-23 - art_sys_155: -5.17008704e-33 - art_sys_156: 2.69590734e-35 - art_sys_157: 1.17822922e-35 + art_sys_19: -5.55384590e-15 + art_sys_20: -8.51401636e-15 + art_sys_21: 5.43312893e-01 + art_sys_22: 2.31700927e-15 + art_sys_23: -7.29765553e-15 + art_sys_24: 1.50225105e-01 + art_sys_25: 1.91758035e-16 + art_sys_26: 8.89139151e-16 + art_sys_27: 6.02977710e-04 + art_sys_28: 3.89833081e-15 + art_sys_29: 1.62072006e-04 + art_sys_30: 7.05977347e-16 + art_sys_31: 2.80724536e-15 + art_sys_32: -9.61306403e-05 + art_sys_33: 4.56701106e-17 + art_sys_34: -2.75119983e-17 + art_sys_35: -2.08704780e-15 + art_sys_36: 2.80482918e-17 + art_sys_37: 1.29339216e-17 + art_sys_38: 1.56024577e-18 + art_sys_39: 1.95916840e-20 + art_sys_40: 3.60790949e-19 + art_sys_41: -2.05867179e-20 + art_sys_42: 9.99461762e-20 + art_sys_43: -1.53244822e-19 + art_sys_44: -2.57201736e-18 + art_sys_45: 2.75582974e-19 + art_sys_46: -1.52943649e-19 + art_sys_47: 3.31179481e-06 + art_sys_48: 1.45966564e-14 + art_sys_49: -8.12363154e-07 + art_sys_50: -1.68436090e-20 + art_sys_51: 2.57544936e-20 + art_sys_52: -2.27233147e-16 + art_sys_53: -6.04926047e-16 + art_sys_54: -2.71999838e-07 + art_sys_55: -9.99140315e-17 + art_sys_56: 2.82177593e-16 + art_sys_57: -3.23109998e-20 + art_sys_58: -7.45837272e-22 + art_sys_59: -1.12420170e-15 + art_sys_60: -7.68092746e-09 + art_sys_61: 2.10786969e-19 + art_sys_62: -1.37306417e-17 + art_sys_63: 1.47845156e-09 + art_sys_64: 2.46141853e-18 + art_sys_65: -1.05200594e-19 + art_sys_66: -1.30914647e-19 + art_sys_67: 2.56127935e-20 + art_sys_68: 5.34452946e-22 + art_sys_69: -3.67111437e-22 + art_sys_70: -9.71094297e-23 + art_sys_71: 2.47838373e-23 + art_sys_72: 2.72480824e-23 + art_sys_73: -1.56597250e-23 + art_sys_74: 4.76489319e-20 + art_sys_75: 4.37953391e-24 + art_sys_76: 4.39377226e-21 + art_sys_77: 1.31616813e-20 + art_sys_78: 4.02258620e-22 + art_sys_79: 4.48940714e-23 + art_sys_80: 1.44739707e-24 + art_sys_81: -5.45004160e-19 + art_sys_82: 3.95066616e-10 + art_sys_83: 6.94709570e-24 + art_sys_84: 3.32721282e-24 + art_sys_85: -3.54997496e-24 + art_sys_86: -6.59390175e-25 + art_sys_87: 1.81797134e-26 + art_sys_88: 1.89804305e-20 + art_sys_89: 3.56974334e-27 + art_sys_90: -1.10232453e-22 + art_sys_91: 7.02368006e-16 + art_sys_92: 1.16065406e-25 + art_sys_93: -6.42459273e-26 + art_sys_94: -6.99167458e-21 + art_sys_95: 3.55006967e-22 + art_sys_96: -7.48660449e-16 + art_sys_97: -2.05986420e-17 + art_sys_98: 4.08602037e-23 + art_sys_99: -5.85506219e-17 + art_sys_100: -2.42925748e-23 + art_sys_101: 6.21748755e-17 + art_sys_102: 9.56286746e-20 + art_sys_103: 5.18656665e-19 + art_sys_104: -1.27238390e-18 + art_sys_105: -2.73197367e-20 + art_sys_106: -2.89276581e-18 + art_sys_107: -2.43351331e-19 + art_sys_108: -4.44060397e-20 + art_sys_109: 1.72371141e-21 + art_sys_110: 4.83742210e-19 + art_sys_111: 7.25430016e-20 + art_sys_112: 7.60612584e-13 + art_sys_113: -7.99285167e-18 + art_sys_114: 3.35173443e-22 + art_sys_115: -1.46837943e-19 + art_sys_116: 1.59470613e-19 + art_sys_117: 1.67897732e-22 + art_sys_118: 1.43033930e-19 + art_sys_119: 2.80542634e-19 + art_sys_120: 1.33551280e-13 + art_sys_121: -1.48480493e-22 + art_sys_122: -3.16390409e-19 + art_sys_123: -8.08172426e-20 + art_sys_124: -6.98706379e-20 + art_sys_125: 2.77653696e-22 + art_sys_126: 3.31751406e-14 + art_sys_127: 8.64418164e-20 + art_sys_128: 3.18380347e-19 + art_sys_129: 6.86760574e-22 + art_sys_130: -3.02988261e-18 + art_sys_131: -9.56132582e-21 + art_sys_132: -2.48329004e-18 + art_sys_133: 6.72528842e-18 + art_sys_134: 4.50859452e-15 + art_sys_135: 1.29681433e-18 + art_sys_136: 2.82661728e-20 + art_sys_137: -1.04829901e-18 + art_sys_138: 5.37914084e-20 + art_sys_139: 1.57775527e-17 + art_sys_140: -5.87290435e-21 + art_sys_141: 6.32413161e-16 + art_sys_142: -1.69625651e-20 + art_sys_143: -1.11609814e-18 + art_sys_144: 3.53646183e-20 + art_sys_145: 7.71674025e-19 + art_sys_146: 8.26871250e-20 + art_sys_147: -5.39252773e-22 + art_sys_148: -2.39414094e-22 + art_sys_149: 2.75273634e-21 + art_sys_150: 4.02576440e-19 + art_sys_151: 1.37756828e-17 + art_sys_152: 2.46555347e-21 + art_sys_153: 1.09148313e-18 + art_sys_154: 6.08091283e-20 + art_sys_155: -4.95196883e-21 + art_sys_156: 0.0 + art_sys_157: 2.41566876e-20 art_sys_158: 0.0 - art_sys_159: -1.35080755e-20 - art_sys_160: 3.88984178e-21 - art_sys_161: 1.33768479e-20 - art_sys_162: 3.71443429e-22 - art_sys_163: 1.23314832e-19 - art_sys_164: 1.94152215e-20 - art_sys_165: -9.66718906e-23 - art_sys_166: -1.14099097e-28 - art_sys_167: -1.09460598e-28 - art_sys_168: 3.88685490e-29 - art_sys_169: -1.72238065e-30 - art_sys_170: 3.26569111e-30 - art_sys_171: -2.27817581e-30 - art_sys_172: -1.90299707e-30 - art_sys_173: 7.27448235e-31 - art_sys_174: 3.31097745e-31 - art_sys_175: -1.62269460e-33 - art_sys_176: -4.35173758e-34 - art_sys_177: -5.51827558e-32 - art_sys_178: 2.07530483e-32 - art_sys_179: -1.24201209e-32 - art_sys_180: 1.70012795e-32 - art_sys_181: 3.93368227e-35 - art_sys_182: -4.67232618e-33 - art_sys_183: -6.41151885e-35 - art_sys_184: 1.12878288e-36 - art_sys_185: 5.51210281e-37 + art_sys_159: 1.79301250e-19 + art_sys_160: -8.20930837e-22 + art_sys_161: -2.47985838e-20 + art_sys_162: -2.47985838e-20 + art_sys_163: -2.20494650e-20 + art_sys_164: -2.20494650e-20 + art_sys_165: 2.54492035e-34 + art_sys_166: -8.46608371e-35 + art_sys_167: -0.0 + art_sys_168: 1.89709032e-29 + art_sys_169: 1.71111170e-29 + art_sys_170: 1.01279750e-29 + art_sys_171: 5.74171702e-30 + art_sys_172: -1.55903471e-30 + art_sys_173: -5.20508284e-32 + art_sys_174: -1.59148189e-31 + art_sys_175: -8.68072930e-32 + art_sys_176: 3.55006962e-32 + art_sys_177: -1.57078791e-32 + art_sys_178: -2.24379331e-32 + art_sys_179: 1.59959961e-33 + art_sys_180: 4.74100977e-33 + art_sys_181: -7.48585514e-33 + art_sys_182: 2.72303185e-33 + art_sys_183: -1.89342233e-35 + art_sys_184: -2.25404657e-35 + art_sys_185: 6.62545960e-36 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -57275,191 +57275,191 @@ bins: RelativeStatFSR-: -1.49918213e+00 luminosity_uncertainty: 18.19883 uncorrelated_uncertainty: 6.99955 -- art_sys_1: 2.11254404e-16 - art_sys_2: -7.99073901e-16 +- art_sys_1: 1.63209936e-16 + art_sys_2: -1.15220613e-15 art_sys_3: -3.28918405e-01 - art_sys_4: 1.56898292e-14 + art_sys_4: 7.17033717e-15 art_sys_5: -6.13796271e-01 - art_sys_6: -1.44131584e-15 - art_sys_7: -3.51908952e-15 + art_sys_6: -2.94920743e-15 + art_sys_7: -6.81430586e-15 art_sys_8: -1.56902250e+00 - art_sys_9: 4.26815733e-15 - art_sys_10: 4.96435332e-16 + art_sys_9: -2.02683051e-16 + art_sys_10: -1.61031920e-15 art_sys_11: -4.73037341e-01 - art_sys_12: 1.12476843e-15 - art_sys_13: -4.82777445e-14 - art_sys_14: 1.30516689e-15 + art_sys_12: -2.43041768e-15 + art_sys_13: 1.14453742e-13 + art_sys_14: -1.12378907e-15 art_sys_15: -1.51683953e+00 - art_sys_16: -1.38155821e-15 - art_sys_17: -1.90710214e-15 + art_sys_16: 9.89644452e-16 + art_sys_17: -1.23916338e-14 art_sys_18: 1.68284698e+00 - art_sys_19: 1.08561375e-13 - art_sys_20: -1.03412552e-15 - art_sys_21: 7.63362276e-01 - art_sys_22: -2.40262891e-16 - art_sys_23: -7.12582681e-16 - art_sys_24: 3.37594815e-01 - art_sys_25: -1.97631507e-16 - art_sys_26: -7.67067033e-16 - art_sys_27: 2.67963658e-16 - art_sys_28: 1.10148619e-15 - art_sys_29: -4.62653593e-15 - art_sys_30: -7.35794799e-18 - art_sys_31: -2.52236481e-18 - art_sys_32: -1.31434213e-17 - art_sys_33: -4.11476075e-18 - art_sys_34: -1.49594306e-03 - art_sys_35: 4.46967805e-15 - art_sys_36: 4.50349103e-04 - art_sys_37: 4.08825219e-14 - art_sys_38: -2.91979098e-18 - art_sys_39: -1.23707059e-12 - art_sys_40: 3.04817001e-04 - art_sys_41: -2.58628821e-13 - art_sys_42: -5.06534445e-16 - art_sys_43: -3.64694821e-19 - art_sys_44: -6.75671102e-20 - art_sys_45: -8.59565250e-20 - art_sys_46: -4.95254554e-15 - art_sys_47: -9.59862598e-06 - art_sys_48: 5.38762629e-14 - art_sys_49: 4.79041949e-18 - art_sys_50: 4.82333711e-19 - art_sys_51: 1.62671050e-18 - art_sys_52: 7.44847589e-19 - art_sys_53: -3.16420970e-19 - art_sys_54: -3.35181592e-19 - art_sys_55: 1.04568757e-15 - art_sys_56: 1.15415024e-17 - art_sys_57: -2.80212828e-06 - art_sys_58: -3.30144482e-20 - art_sys_59: 5.97213727e-21 - art_sys_60: 7.25383600e-14 - art_sys_61: -9.20467446e-16 - art_sys_62: 9.23394902e-07 - art_sys_63: -1.40274203e-18 - art_sys_64: 1.12559069e-13 - art_sys_65: 5.95777568e-22 - art_sys_66: 1.15169881e-22 - art_sys_67: -9.67399698e-16 - art_sys_68: 8.00954301e-18 - art_sys_69: -3.02577216e-18 - art_sys_70: 1.10042906e-16 - art_sys_71: 2.41553007e-08 - art_sys_72: -4.60407732e-16 - art_sys_73: 1.82537301e-19 - art_sys_74: -8.48206241e-20 - art_sys_75: -3.07160571e-20 - art_sys_76: -4.09390292e-20 - art_sys_77: 5.64751112e-09 - art_sys_78: -2.28420581e-18 - art_sys_79: 3.69868760e-21 - art_sys_80: -1.52664282e-22 - art_sys_81: 2.09544467e-21 - art_sys_82: 4.64933731e-22 - art_sys_83: 2.25783649e-19 - art_sys_84: -2.80966455e-22 - art_sys_85: 2.99533863e-22 - art_sys_86: -8.54448566e-19 - art_sys_87: -1.34581568e-09 - art_sys_88: 8.41950601e-20 - art_sys_89: -7.86730432e-22 - art_sys_90: 7.32342775e-16 - art_sys_91: -1.52782865e-19 - art_sys_92: 1.96788486e-15 - art_sys_93: -4.67525028e-16 - art_sys_94: -1.08303178e-16 - art_sys_95: 2.23284145e-18 - art_sys_96: -1.68430865e-20 - art_sys_97: 5.10184969e-16 - art_sys_98: -3.18138582e-17 - art_sys_99: -4.66887677e-16 - art_sys_100: -4.85570084e-19 - art_sys_101: -4.75203450e-19 - art_sys_102: -4.33800996e-19 - art_sys_103: -2.33880714e-19 - art_sys_104: -4.03693065e-16 - art_sys_105: 2.64566547e-18 - art_sys_106: -4.11327350e-12 - art_sys_107: 6.63353335e-20 - art_sys_108: -4.08715437e-21 - art_sys_109: -2.32124056e-20 - art_sys_110: 6.78265460e-17 - art_sys_111: 8.45023909e-17 - art_sys_112: 4.42529424e-18 - art_sys_113: -3.86760176e-22 - art_sys_114: -5.72984076e-17 - art_sys_115: 1.30968128e-18 - art_sys_116: 6.17740585e-13 - art_sys_117: -5.00401043e-17 - art_sys_118: -6.55923753e-18 - art_sys_119: 2.14408291e-17 - art_sys_120: 1.46610063e-13 - art_sys_121: 2.49288974e-18 - art_sys_122: -1.58998704e-17 - art_sys_123: 3.27406420e-17 - art_sys_124: -2.29843741e-18 - art_sys_125: 2.18737661e-14 - art_sys_126: 6.50536656e-18 - art_sys_127: 1.65039990e-17 - art_sys_128: 1.28710172e-17 - art_sys_129: 8.83118423e-18 - art_sys_130: 3.54472021e-17 - art_sys_131: -3.00220663e-15 - art_sys_132: -7.84253301e-18 - art_sys_133: 6.07357791e-17 - art_sys_134: 4.47290924e-20 - art_sys_135: 2.66132342e-18 - art_sys_136: 5.64536574e-18 - art_sys_137: -6.94517333e-21 - art_sys_138: 2.81682435e-18 - art_sys_139: 1.35117752e-18 - art_sys_140: 5.27234711e-18 - art_sys_141: 5.40929317e-17 - art_sys_142: -1.52656491e-18 - art_sys_143: 1.88709340e-21 - art_sys_144: -8.42891360e-23 - art_sys_145: -2.13177379e-20 - art_sys_146: -0.0 - art_sys_147: 1.88394830e-19 - art_sys_148: -9.17500768e-19 - art_sys_149: -9.17500768e-19 - art_sys_150: -3.49734670e-19 - art_sys_151: -3.49734670e-19 - art_sys_152: 1.07952443e-19 - art_sys_153: 4.22763607e-20 - art_sys_154: -1.26771768e-22 - art_sys_155: 1.14812690e-32 - art_sys_156: -1.30719957e-34 - art_sys_157: -5.56771493e-35 + art_sys_19: 5.56882181e-14 + art_sys_20: 7.67607065e-16 + art_sys_21: -7.63362276e-01 + art_sys_22: -2.39978832e-15 + art_sys_23: 5.59992247e-16 + art_sys_24: -3.37594815e-01 + art_sys_25: 1.67201333e-16 + art_sys_26: -8.54091570e-16 + art_sys_27: -1.49594306e-03 + art_sys_28: -8.16760180e-15 + art_sys_29: -4.50349103e-04 + art_sys_30: -6.36181730e-16 + art_sys_31: -5.46194619e-15 + art_sys_32: 3.04817001e-04 + art_sys_33: -5.05127956e-17 + art_sys_34: 1.47102539e-16 + art_sys_35: 3.84922281e-15 + art_sys_36: 1.91457537e-16 + art_sys_37: -2.65474625e-17 + art_sys_38: -6.78869913e-18 + art_sys_39: -5.45905181e-20 + art_sys_40: -7.89583953e-19 + art_sys_41: -1.04930081e-18 + art_sys_42: -8.23414807e-19 + art_sys_43: -1.72889040e-18 + art_sys_44: -6.05946893e-19 + art_sys_45: -1.11383943e-19 + art_sys_46: -1.18049161e-19 + art_sys_47: -9.59862599e-06 + art_sys_48: -5.31201429e-14 + art_sys_49: 2.80212827e-06 + art_sys_50: -1.21432527e-20 + art_sys_51: 3.05400991e-20 + art_sys_52: 7.83395826e-16 + art_sys_53: 2.16072152e-15 + art_sys_54: 9.23394922e-07 + art_sys_55: 1.95990063e-16 + art_sys_56: -9.23187049e-16 + art_sys_57: 9.77494880e-20 + art_sys_58: 1.04656207e-21 + art_sys_59: 3.51953761e-15 + art_sys_60: 2.41552909e-08 + art_sys_61: -7.31277003e-19 + art_sys_62: 3.93635981e-17 + art_sys_63: -5.64751070e-09 + art_sys_64: -7.90293517e-18 + art_sys_65: 3.92273785e-19 + art_sys_66: 3.18250382e-19 + art_sys_67: -6.76236500e-20 + art_sys_68: -1.36945893e-21 + art_sys_69: 1.24939005e-21 + art_sys_70: 3.00010049e-22 + art_sys_71: -8.51949539e-23 + art_sys_72: -9.11648945e-23 + art_sys_73: 5.01874225e-23 + art_sys_74: -1.63060196e-19 + art_sys_75: -1.77512711e-23 + art_sys_76: -1.53883600e-20 + art_sys_77: -4.49721469e-20 + art_sys_78: -1.28169864e-21 + art_sys_79: -1.58837898e-22 + art_sys_80: 2.01671564e-23 + art_sys_81: 1.85658845e-18 + art_sys_82: -1.34581978e-09 + art_sys_83: -4.06284993e-23 + art_sys_84: -1.67803590e-23 + art_sys_85: 1.94084998e-23 + art_sys_86: 3.35755426e-24 + art_sys_87: 6.16354676e-25 + art_sys_88: -1.02630278e-19 + art_sys_89: -2.57076030e-26 + art_sys_90: 2.19223663e-22 + art_sys_91: -2.50897448e-15 + art_sys_92: -6.33553895e-25 + art_sys_93: 3.43952199e-25 + art_sys_94: 3.08931552e-20 + art_sys_95: -3.51017849e-22 + art_sys_96: 2.54337006e-15 + art_sys_97: 6.99317306e-17 + art_sys_98: -5.71827309e-23 + art_sys_99: 2.00566813e-16 + art_sys_100: -6.72515937e-23 + art_sys_101: -2.13224240e-16 + art_sys_102: -5.13155908e-19 + art_sys_103: -1.76052442e-18 + art_sys_104: 2.81501452e-18 + art_sys_105: 1.29631636e-19 + art_sys_106: 9.59696494e-18 + art_sys_107: 1.12593863e-18 + art_sys_108: 2.10699785e-19 + art_sys_109: -8.21620552e-21 + art_sys_110: -4.10128970e-18 + art_sys_111: 1.09483381e-18 + art_sys_112: -4.11314344e-12 + art_sys_113: 2.71411860e-17 + art_sys_114: -1.58428361e-21 + art_sys_115: 1.75724451e-19 + art_sys_116: -7.25201115e-19 + art_sys_117: -8.31421464e-22 + art_sys_118: -4.78688443e-19 + art_sys_119: -1.17811501e-18 + art_sys_120: -6.17780211e-13 + art_sys_121: 6.89125981e-22 + art_sys_122: 1.51223575e-18 + art_sys_123: 3.92650422e-19 + art_sys_124: 4.90182312e-19 + art_sys_125: -1.11317476e-21 + art_sys_126: -1.46601571e-13 + art_sys_127: -4.75736544e-19 + art_sys_128: -1.51280873e-18 + art_sys_129: -2.87047285e-21 + art_sys_130: 1.43685482e-17 + art_sys_131: 3.99566101e-20 + art_sys_132: 1.14832550e-17 + art_sys_133: -3.19453030e-17 + art_sys_134: -2.18773787e-14 + art_sys_135: -5.77374203e-18 + art_sys_136: -1.17739968e-19 + art_sys_137: 4.93423058e-18 + art_sys_138: -2.66475996e-19 + art_sys_139: -7.48430949e-17 + art_sys_140: 2.52174290e-20 + art_sys_141: -3.00076570e-15 + art_sys_142: 1.04807149e-19 + art_sys_143: 5.29709029e-18 + art_sys_144: -1.61532380e-19 + art_sys_145: -3.75851097e-18 + art_sys_146: -3.91735914e-19 + art_sys_147: 2.77497372e-21 + art_sys_148: 1.45274287e-21 + art_sys_149: -8.45759716e-23 + art_sys_150: -1.82333342e-18 + art_sys_151: -5.71747217e-17 + art_sys_152: -9.17671755e-21 + art_sys_153: -4.90705557e-18 + art_sys_154: -2.64073952e-19 + art_sys_155: 2.15351055e-20 + art_sys_156: -0.0 + art_sys_157: -1.18395512e-19 art_sys_158: -0.0 - art_sys_159: 5.55853836e-20 - art_sys_160: -1.60451495e-20 - art_sys_161: -5.52872969e-20 - art_sys_162: -1.53475656e-21 - art_sys_163: -5.14308654e-19 - art_sys_164: -8.12225937e-20 - art_sys_165: 5.63237937e-22 - art_sys_166: 4.72967352e-28 - art_sys_167: 4.52395057e-28 - art_sys_168: -1.60313296e-28 - art_sys_169: 9.44094125e-30 - art_sys_170: -1.40235559e-29 - art_sys_171: 1.04311142e-29 - art_sys_172: 7.15080549e-30 - art_sys_173: -2.70026537e-30 - art_sys_174: -1.47167673e-30 - art_sys_175: 7.01000390e-33 - art_sys_176: 1.12620665e-32 - art_sys_177: 2.49838293e-31 - art_sys_178: -9.49242893e-32 - art_sys_179: 5.62527611e-32 - art_sys_180: -7.65133412e-32 - art_sys_181: -1.76529734e-34 - art_sys_182: 1.91919932e-32 - art_sys_183: 2.69149086e-34 - art_sys_184: -4.98455452e-36 - art_sys_185: -2.52802536e-36 + art_sys_159: -8.72302465e-19 + art_sys_160: -2.63305406e-22 + art_sys_161: 1.20347651e-19 + art_sys_162: 1.20347651e-19 + art_sys_163: 1.05226617e-19 + art_sys_164: 1.05226617e-19 + art_sys_165: -1.21801811e-33 + art_sys_166: 4.05249774e-34 + art_sys_167: 0.0 + art_sys_168: -8.40515189e-29 + art_sys_169: -7.11449095e-29 + art_sys_170: -3.08159163e-29 + art_sys_171: -2.38419257e-29 + art_sys_172: 6.90408545e-30 + art_sys_173: 3.96228229e-31 + art_sys_174: 6.60248793e-31 + art_sys_175: 3.76615766e-31 + art_sys_176: -1.55932665e-31 + art_sys_177: 6.81603392e-32 + art_sys_178: 9.93661723e-32 + art_sys_179: -6.98479657e-33 + art_sys_180: -2.29233174e-32 + art_sys_181: 3.24208095e-32 + art_sys_182: -1.09987385e-32 + art_sys_183: 7.95899053e-35 + art_sys_184: 1.05142642e-34 + art_sys_185: -3.21565347e-35 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -57566,191 +57566,191 @@ bins: RelativeStatFSR-: -7.14723465e-01 luminosity_uncertainty: 8.093644 uncorrelated_uncertainty: 3.11294 -- art_sys_1: 5.49445706e-17 - art_sys_2: 6.41541366e-17 +- art_sys_1: 4.88427097e-17 + art_sys_2: 9.90750657e-17 art_sys_3: -6.27501474e-02 - art_sys_4: -1.98549224e-14 + art_sys_4: 1.53008772e-14 art_sys_5: 8.87627216e-02 - art_sys_6: -1.32132454e-16 - art_sys_7: -5.50793452e-15 + art_sys_6: -2.19626305e-16 + art_sys_7: 1.66410674e-14 art_sys_8: -8.08739447e-02 - art_sys_9: -8.54670090e-16 - art_sys_10: -5.30935347e-17 + art_sys_9: 5.01421725e-15 + art_sys_10: -2.31506674e-16 art_sys_11: -1.75463021e-01 - art_sys_12: -6.85385375e-16 - art_sys_13: 9.66421973e-15 - art_sys_14: -1.18497097e-15 + art_sys_12: 1.52921372e-16 + art_sys_13: -2.46167374e-14 + art_sys_14: -1.97958596e-15 art_sys_15: 3.91384660e-01 - art_sys_16: 4.20875645e-15 - art_sys_17: 6.85490089e-15 + art_sys_16: 1.00557448e-15 + art_sys_17: 9.70727651e-15 art_sys_18: 1.70871368e+00 - art_sys_19: 7.85312606e-14 - art_sys_20: -5.60016663e-15 - art_sys_21: -8.52318268e-01 - art_sys_22: -1.03088900e-15 - art_sys_23: 2.21710953e-15 - art_sys_24: -4.28389318e-01 - art_sys_25: 4.87365239e-16 - art_sys_26: 4.05579716e-15 - art_sys_27: -1.36013968e-15 - art_sys_28: -8.80224221e-16 - art_sys_29: 2.48832496e-14 - art_sys_30: 9.55356898e-17 - art_sys_31: 2.10028144e-17 - art_sys_32: 6.85791223e-17 - art_sys_33: 2.64817588e-17 - art_sys_34: 8.22657569e-03 - art_sys_35: 1.06925733e-15 - art_sys_36: -1.55541242e-03 - art_sys_37: -1.43943510e-13 - art_sys_38: 5.17568685e-18 - art_sys_39: 4.78928305e-12 - art_sys_40: -1.18151027e-03 - art_sys_41: 1.00300017e-12 - art_sys_42: 4.80009806e-16 - art_sys_43: 2.09584740e-19 - art_sys_44: 3.15638955e-20 - art_sys_45: 2.34967322e-19 - art_sys_46: 1.37714545e-14 - art_sys_47: 4.20896436e-05 - art_sys_48: -1.95913500e-13 - art_sys_49: -1.79120098e-17 - art_sys_50: -1.75424485e-18 - art_sys_51: -6.17339476e-18 - art_sys_52: -2.86177416e-18 - art_sys_53: 1.19521548e-18 - art_sys_54: 1.27360232e-18 - art_sys_55: -3.78971435e-15 - art_sys_56: -4.48640570e-17 - art_sys_57: 1.01574106e-05 - art_sys_58: 1.28747982e-19 - art_sys_59: -2.31784164e-20 - art_sys_60: -2.83669385e-13 - art_sys_61: 4.53157331e-15 - art_sys_62: -3.61149266e-06 - art_sys_63: 5.45890810e-18 - art_sys_64: -4.40042576e-13 - art_sys_65: -2.33600543e-21 - art_sys_66: -4.03822823e-22 - art_sys_67: 3.73874450e-15 - art_sys_68: -3.02899656e-17 - art_sys_69: 1.14285053e-17 - art_sys_70: -4.56522246e-16 - art_sys_71: -9.43584811e-08 - art_sys_72: 1.90021539e-15 - art_sys_73: -6.22723143e-19 - art_sys_74: 3.02704191e-19 - art_sys_75: 1.09801892e-19 - art_sys_76: 1.43066783e-19 - art_sys_77: -1.97343745e-08 - art_sys_78: 7.91567854e-18 - art_sys_79: -1.46381948e-20 - art_sys_80: 5.73069646e-22 - art_sys_81: -8.02794766e-21 - art_sys_82: -1.78590234e-21 - art_sys_83: -4.33388435e-19 - art_sys_84: 1.05363495e-21 - art_sys_85: -1.16389627e-21 - art_sys_86: 2.76692519e-18 - art_sys_87: 5.17772079e-09 - art_sys_88: -2.47924262e-19 - art_sys_89: 2.16715429e-21 - art_sys_90: -2.80764567e-15 - art_sys_91: 2.83189345e-19 - art_sys_92: -7.56344711e-15 - art_sys_93: 1.82264555e-15 - art_sys_94: 4.19827583e-16 - art_sys_95: -4.10590197e-18 - art_sys_96: 4.67197665e-20 - art_sys_97: -9.37664308e-16 - art_sys_98: 1.27119470e-16 - art_sys_99: 1.82641763e-15 - art_sys_100: 8.60938875e-19 - art_sys_101: 1.14382636e-18 - art_sys_102: 6.05395928e-18 - art_sys_103: 5.44724222e-19 - art_sys_104: 1.57886331e-15 - art_sys_105: -3.86016517e-18 - art_sys_106: 7.56000999e-12 - art_sys_107: -1.85098676e-19 - art_sys_108: 1.14242283e-20 - art_sys_109: 6.68706966e-20 - art_sys_110: -2.21262846e-16 - art_sys_111: -1.55314844e-16 - art_sys_112: -1.18700277e-17 - art_sys_113: 1.27910394e-21 - art_sys_114: 1.05214513e-16 - art_sys_115: -3.63199812e-18 - art_sys_116: -1.99666540e-12 - art_sys_117: 8.92284294e-17 - art_sys_118: 1.81889395e-17 - art_sys_119: -4.63043168e-17 - art_sys_120: -3.97980476e-13 - art_sys_121: -6.86246431e-18 - art_sys_122: 5.58633167e-17 - art_sys_123: -9.11437321e-17 - art_sys_124: 6.39731126e-18 - art_sys_125: -6.06603392e-14 - art_sys_126: -1.81467527e-17 - art_sys_127: -4.52691790e-17 - art_sys_128: -3.60056850e-17 - art_sys_129: -2.32613519e-17 - art_sys_130: -9.90973589e-17 - art_sys_131: 8.37727840e-15 - art_sys_132: 2.14116765e-17 - art_sys_133: -1.69715889e-16 - art_sys_134: -1.26379064e-19 - art_sys_135: -7.28535865e-18 - art_sys_136: -1.60143810e-17 - art_sys_137: 1.96349977e-20 - art_sys_138: -1.10200295e-17 - art_sys_139: -3.99676862e-18 - art_sys_140: -1.50582586e-17 - art_sys_141: -1.73060923e-16 - art_sys_142: 4.57586522e-18 - art_sys_143: -5.26453552e-21 - art_sys_144: -1.53210952e-22 - art_sys_145: 6.44003272e-20 - art_sys_146: 0.0 - art_sys_147: -5.52364491e-19 - art_sys_148: 2.46209505e-18 - art_sys_149: 2.46209505e-18 - art_sys_150: 1.17574212e-18 - art_sys_151: 1.17574212e-18 - art_sys_152: -2.96638396e-19 - art_sys_153: -1.54712625e-19 - art_sys_154: 3.79210375e-22 - art_sys_155: -7.42588621e-32 - art_sys_156: 3.55546473e-34 - art_sys_157: 1.55285544e-34 + art_sys_19: 3.68457538e-14 + art_sys_20: 1.29432833e-14 + art_sys_21: 8.52318268e-01 + art_sys_22: -2.88081727e-16 + art_sys_23: 8.57577486e-15 + art_sys_24: 4.28389318e-01 + art_sys_25: -8.67725684e-17 + art_sys_26: 6.98996688e-16 + art_sys_27: 8.22657569e-03 + art_sys_28: 2.05729626e-14 + art_sys_29: 1.55541242e-03 + art_sys_30: 5.11536881e-16 + art_sys_31: 1.14246856e-14 + art_sys_32: -1.18151027e-03 + art_sys_33: 1.53242554e-16 + art_sys_34: -7.75588878e-16 + art_sys_35: -7.16424992e-15 + art_sys_36: -1.05279240e-16 + art_sys_37: 1.43021715e-16 + art_sys_38: 2.74465182e-17 + art_sys_39: 4.32574672e-19 + art_sys_40: 3.59184345e-18 + art_sys_41: 3.41627336e-18 + art_sys_42: 1.68724985e-18 + art_sys_43: 4.49581118e-18 + art_sys_44: 4.51055700e-20 + art_sys_45: -6.52040407e-20 + art_sys_46: 2.72368886e-19 + art_sys_47: 4.20896437e-05 + art_sys_48: 1.83306125e-13 + art_sys_49: -1.01574106e-05 + art_sys_50: 5.03928810e-20 + art_sys_51: 2.25364598e-19 + art_sys_52: -1.25803590e-15 + art_sys_53: -8.51076082e-15 + art_sys_54: -3.61149274e-06 + art_sys_55: -4.72330417e-16 + art_sys_56: 3.27139749e-15 + art_sys_57: -1.80069897e-19 + art_sys_58: -6.58245441e-22 + art_sys_59: -1.38119443e-14 + art_sys_60: -9.43584435e-08 + art_sys_61: 2.82043382e-18 + art_sys_62: -1.17162783e-16 + art_sys_63: 1.97343730e-08 + art_sys_64: 3.07996090e-17 + art_sys_65: -1.61805611e-18 + art_sys_66: -9.78368607e-19 + art_sys_67: 1.88595967e-19 + art_sys_68: 4.45744400e-21 + art_sys_69: -4.35637003e-21 + art_sys_70: -1.02149856e-21 + art_sys_71: 3.27293707e-22 + art_sys_72: 3.42796397e-22 + art_sys_73: -1.82732019e-22 + art_sys_74: 6.28786253e-19 + art_sys_75: 7.49194837e-23 + art_sys_76: 5.67562264e-20 + art_sys_77: 1.72245309e-19 + art_sys_78: 5.39206913e-21 + art_sys_79: 6.58574400e-22 + art_sys_80: 6.69588892e-23 + art_sys_81: -7.14270308e-18 + art_sys_82: 5.17773656e-09 + art_sys_83: 6.80599020e-23 + art_sys_84: 3.91305130e-23 + art_sys_85: -3.32256113e-23 + art_sys_86: -7.23539115e-24 + art_sys_87: -1.12732042e-23 + art_sys_88: 1.88660415e-19 + art_sys_89: 2.23571343e-26 + art_sys_90: -3.50453026e-21 + art_sys_91: 9.22586643e-15 + art_sys_92: 1.16319765e-24 + art_sys_93: -6.66981387e-25 + art_sys_94: -8.38859068e-20 + art_sys_95: 9.13608985e-22 + art_sys_96: -9.83334720e-15 + art_sys_97: -2.75959483e-16 + art_sys_98: 4.35545567e-22 + art_sys_99: -7.69414914e-16 + art_sys_100: 1.67117019e-22 + art_sys_101: 8.18916988e-16 + art_sys_102: 9.80848338e-19 + art_sys_103: 7.05213565e-18 + art_sys_104: -6.04566527e-18 + art_sys_105: -3.61716281e-19 + art_sys_106: -3.79992488e-17 + art_sys_107: -3.63945981e-18 + art_sys_108: -5.87928849e-19 + art_sys_109: 2.28287562e-20 + art_sys_110: -4.75213606e-18 + art_sys_111: 1.86957953e-18 + art_sys_112: 7.55977149e-12 + art_sys_113: -1.06166440e-16 + art_sys_114: 4.43664647e-21 + art_sys_115: -2.90660478e-19 + art_sys_116: 2.00611416e-18 + art_sys_117: 2.22946377e-21 + art_sys_118: 6.45417169e-19 + art_sys_119: 3.15754012e-18 + art_sys_120: 1.99679619e-12 + art_sys_121: -1.96390498e-21 + art_sys_122: -2.81192271e-18 + art_sys_123: -1.08889863e-18 + art_sys_124: -7.62669508e-19 + art_sys_125: 3.64203375e-21 + art_sys_126: 3.97957192e-13 + art_sys_127: 1.15644851e-18 + art_sys_128: 4.94213317e-18 + art_sys_129: 9.01960933e-21 + art_sys_130: -4.01122815e-17 + art_sys_131: -1.25577737e-19 + art_sys_132: -3.72188808e-17 + art_sys_133: 8.90417509e-17 + art_sys_134: 6.06703914e-14 + art_sys_135: 1.60461598e-17 + art_sys_136: 3.71226036e-19 + art_sys_137: -1.38701266e-17 + art_sys_138: 7.05148098e-19 + art_sys_139: 2.08887546e-16 + art_sys_140: -7.70812848e-20 + art_sys_141: 8.37300441e-15 + art_sys_142: -3.21847255e-19 + art_sys_143: -1.47788771e-17 + art_sys_144: 4.64094057e-19 + art_sys_145: 1.04214617e-17 + art_sys_146: 1.09294372e-18 + art_sys_147: -7.25923978e-21 + art_sys_148: -3.31200414e-21 + art_sys_149: 5.80759562e-20 + art_sys_150: 5.30505222e-18 + art_sys_151: 1.80926319e-16 + art_sys_152: 3.19438168e-20 + art_sys_153: 1.44020956e-17 + art_sys_154: 7.10777088e-19 + art_sys_155: -6.56199458e-20 + art_sys_156: 0.0 + art_sys_157: 3.25245356e-19 art_sys_158: 0.0 - art_sys_159: -1.77399189e-19 - art_sys_160: 5.10922301e-20 - art_sys_161: 1.75681530e-19 - art_sys_162: 4.87706338e-21 - art_sys_163: 1.61875324e-18 - art_sys_164: 2.55113843e-19 - art_sys_165: -1.30084824e-21 - art_sys_166: -1.49806868e-27 - art_sys_167: -1.44157419e-27 - art_sys_168: 5.10492374e-28 - art_sys_169: -1.65358887e-29 - art_sys_170: 4.75078610e-29 - art_sys_171: -3.01481879e-29 - art_sys_172: -2.47714600e-29 - art_sys_173: 8.24763607e-30 - art_sys_174: 4.09821017e-30 - art_sys_175: -2.11791736e-32 - art_sys_176: -2.20819263e-32 - art_sys_177: -7.21166005e-31 - art_sys_178: 2.69045855e-31 - art_sys_179: -1.61394438e-31 - art_sys_180: 2.20860511e-31 - art_sys_181: 5.36843756e-34 - art_sys_182: -6.13892849e-32 - art_sys_183: -8.40392780e-34 - art_sys_184: 1.46594095e-35 - art_sys_185: 7.17011695e-36 + art_sys_159: 2.39158415e-18 + art_sys_160: -1.12105754e-20 + art_sys_161: -3.32270662e-19 + art_sys_162: -3.32270662e-19 + art_sys_163: -2.94848235e-19 + art_sys_164: -2.94848235e-19 + art_sys_165: 3.40413683e-33 + art_sys_166: -1.13254997e-33 + art_sys_167: -0.0 + art_sys_168: 2.73001188e-28 + art_sys_169: 2.25535337e-28 + art_sys_170: 8.71613827e-29 + art_sys_171: 7.25888831e-29 + art_sys_172: -2.14814350e-29 + art_sys_173: -7.96038988e-31 + art_sys_174: -2.01277844e-30 + art_sys_175: -1.12186053e-30 + art_sys_176: 4.60602372e-31 + art_sys_177: -2.05197954e-31 + art_sys_178: -2.92499139e-31 + art_sys_179: 2.12336796e-32 + art_sys_180: 6.32764315e-32 + art_sys_181: -9.74829761e-32 + art_sys_182: 3.54506096e-32 + art_sys_183: -2.52293899e-34 + art_sys_184: -2.97335849e-34 + art_sys_185: 8.81367780e-35 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -57857,191 +57857,191 @@ bins: RelativeStatFSR-: -3.55281998e-01 luminosity_uncertainty: 3.76038 uncorrelated_uncertainty: 1.4463 -- art_sys_1: -3.21628112e-18 - art_sys_2: 5.17783529e-17 +- art_sys_1: -1.84595261e-18 + art_sys_2: 7.48977240e-17 art_sys_3: 7.55482128e-03 - art_sys_4: 1.05430122e-16 + art_sys_4: 5.49625448e-17 art_sys_5: 4.37778576e-02 - art_sys_6: 6.43027001e-17 - art_sys_7: 1.80583494e-18 + art_sys_6: 1.45705575e-16 + art_sys_7: -1.52299224e-17 art_sys_8: 8.02527676e-02 - art_sys_9: -1.42483172e-17 - art_sys_10: 1.07081358e-17 + art_sys_9: -1.90648701e-17 + art_sys_10: 4.56529296e-17 art_sys_11: 2.02451264e-02 - art_sys_12: -2.44929559e-16 - art_sys_13: 9.07468669e-15 - art_sys_14: -1.64555637e-16 + art_sys_12: 1.29697199e-16 + art_sys_13: -2.16068019e-14 + art_sys_14: 2.60752807e-16 art_sys_15: 2.83998131e-01 - art_sys_16: 1.62308672e-15 - art_sys_17: 3.21801453e-15 + art_sys_16: -1.54775106e-15 + art_sys_17: 7.67195090e-15 art_sys_18: 1.29552355e-01 - art_sys_19: -4.60831844e-16 - art_sys_20: 1.41930402e-14 - art_sys_21: -1.11517690e+00 - art_sys_22: 2.77864698e-15 - art_sys_23: -2.00246083e-15 - art_sys_24: 6.32757998e-01 - art_sys_25: -2.34657205e-15 - art_sys_26: -3.40680618e-15 - art_sys_27: 1.43052517e-15 - art_sys_28: 6.98916840e-16 - art_sys_29: -1.68060981e-14 - art_sys_30: 1.99604261e-16 - art_sys_31: 5.54452280e-17 - art_sys_32: -5.51927648e-17 - art_sys_33: -7.12120944e-18 - art_sys_34: -5.58164153e-03 - art_sys_35: 3.18352493e-14 - art_sys_36: 4.99269104e-03 - art_sys_37: 4.64268424e-13 - art_sys_38: -1.23871002e-17 - art_sys_39: -1.14430382e-11 - art_sys_40: 2.82885046e-03 - art_sys_41: -2.40160502e-12 - art_sys_42: -4.74184370e-16 - art_sys_43: -4.87990219e-19 - art_sys_44: -1.00308389e-19 - art_sys_45: -1.59948792e-19 - art_sys_46: -1.63899678e-14 + art_sys_19: -2.91131476e-15 + art_sys_20: -3.47301046e-14 + art_sys_21: 1.11517690e+00 + art_sys_22: -9.04695053e-17 + art_sys_23: -2.63506790e-14 + art_sys_24: -6.32757998e-01 + art_sys_25: 2.04111769e-16 + art_sys_26: -5.04809784e-16 + art_sys_27: -5.58164153e-03 + art_sys_28: -3.87102006e-14 + art_sys_29: -4.99269104e-03 + art_sys_30: -3.46126997e-16 + art_sys_31: -1.72601075e-14 + art_sys_32: 2.82885046e-03 + art_sys_33: -1.96828951e-16 + art_sys_34: 2.24303720e-15 + art_sys_35: 7.52861134e-15 + art_sys_36: 4.07782775e-16 + art_sys_37: -4.31169485e-16 + art_sys_38: -7.78436823e-17 + art_sys_39: -5.63116690e-19 + art_sys_40: -9.35326504e-18 + art_sys_41: -9.34989914e-18 + art_sys_42: -4.57528972e-18 + art_sys_43: -1.27291388e-17 + art_sys_44: -3.02878148e-18 + art_sys_45: 9.64299916e-19 + art_sys_46: -7.12165544e-19 art_sys_47: -1.21661833e-04 - art_sys_48: 6.42524663e-13 - art_sys_49: 7.17998173e-17 - art_sys_50: 6.34278349e-18 - art_sys_51: 1.97717941e-17 - art_sys_52: 8.99604232e-18 - art_sys_53: -3.60174818e-18 - art_sys_54: -4.04950243e-18 - art_sys_55: 1.24736131e-14 - art_sys_56: 1.39373488e-16 - art_sys_57: -3.34380461e-05 - art_sys_58: -3.95198652e-19 - art_sys_59: 7.74893246e-20 - art_sys_60: 8.87623327e-13 - art_sys_61: -1.49945881e-14 - art_sys_62: 1.13011764e-05 - art_sys_63: -1.96593490e-17 - art_sys_64: 1.37689283e-12 - art_sys_65: 8.44937389e-21 - art_sys_66: 1.41903286e-21 - art_sys_67: -1.23628821e-14 - art_sys_68: 1.06101007e-16 - art_sys_69: -4.01389747e-17 - art_sys_70: 1.74491576e-15 - art_sys_71: 3.40042058e-07 - art_sys_72: -5.62971014e-15 - art_sys_73: 2.37484174e-18 - art_sys_74: -1.07641090e-18 - art_sys_75: -3.91848432e-19 - art_sys_76: -5.12854513e-19 - art_sys_77: 7.07446515e-08 - art_sys_78: -2.83685171e-17 - art_sys_79: 4.94609985e-20 - art_sys_80: -1.99167394e-21 - art_sys_81: 2.81025664e-20 - art_sys_82: 6.22474427e-21 - art_sys_83: 3.17055416e-18 - art_sys_84: -3.78579302e-21 - art_sys_85: 4.01058200e-21 - art_sys_86: -9.97841369e-18 - art_sys_87: -1.80380861e-08 - art_sys_88: 1.09789994e-18 - art_sys_89: -1.03832279e-20 - art_sys_90: 9.82691810e-15 - art_sys_91: -2.19014947e-18 - art_sys_92: 2.63497974e-14 - art_sys_93: -5.81081813e-15 - art_sys_94: -1.46658081e-15 - art_sys_95: 3.14120297e-17 - art_sys_96: -2.13921376e-19 - art_sys_97: 7.17826401e-15 - art_sys_98: -4.46428745e-16 - art_sys_99: -5.70999437e-15 - art_sys_100: -6.88670460e-18 - art_sys_101: -4.19877321e-18 - art_sys_102: -2.50857960e-17 - art_sys_103: -3.12378862e-18 - art_sys_104: -4.94287077e-15 - art_sys_105: 3.32796712e-17 - art_sys_106: -5.78729520e-11 - art_sys_107: 8.61311656e-19 - art_sys_108: -5.31141834e-20 - art_sys_109: -3.06116702e-19 - art_sys_110: 7.84483115e-16 - art_sys_111: 1.18961118e-15 - art_sys_112: 6.51875427e-17 - art_sys_113: -5.47866233e-21 - art_sys_114: -8.04763054e-16 - art_sys_115: 1.66222507e-17 - art_sys_116: 7.23095251e-12 - art_sys_117: -7.09757542e-16 - art_sys_118: -8.32230021e-17 - art_sys_119: 2.91311404e-16 - art_sys_120: 2.07016859e-12 - art_sys_121: 3.21682624e-17 - art_sys_122: -1.68675733e-16 - art_sys_123: 4.51344957e-16 - art_sys_124: -2.98086959e-17 - art_sys_125: 2.77583883e-13 - art_sys_126: 8.44554423e-17 - art_sys_127: 2.14030223e-16 - art_sys_128: 1.67308121e-16 - art_sys_129: 1.32292751e-16 - art_sys_130: 4.60651710e-16 - art_sys_131: -3.89794678e-14 - art_sys_132: -1.05183356e-16 - art_sys_133: 7.89119128e-16 - art_sys_134: 5.88634052e-19 - art_sys_135: 3.63727547e-17 - art_sys_136: 7.39100655e-17 - art_sys_137: -9.24027392e-20 - art_sys_138: 3.41535959e-17 - art_sys_139: 1.74825558e-17 - art_sys_140: 6.91045345e-17 - art_sys_141: 7.53310818e-16 - art_sys_142: -2.04585117e-17 - art_sys_143: 2.50156322e-20 - art_sys_144: -4.75288526e-22 - art_sys_145: -2.90806433e-19 - art_sys_146: -0.0 - art_sys_147: 2.53365598e-18 - art_sys_148: -1.18033725e-17 - art_sys_149: -1.18033725e-17 - art_sys_150: -5.06081419e-18 - art_sys_151: -5.06081419e-18 - art_sys_152: 1.58484989e-18 - art_sys_153: 6.30821320e-19 - art_sys_154: -1.72680915e-21 - art_sys_155: 2.04091661e-31 - art_sys_156: -1.68580084e-33 - art_sys_157: -7.24255529e-34 + art_sys_48: -6.25734047e-13 + art_sys_49: 3.34380460e-05 + art_sys_50: 1.25937981e-21 + art_sys_51: 6.61221503e-20 + art_sys_52: 5.36256235e-15 + art_sys_53: 2.65883482e-14 + art_sys_54: 1.13011766e-05 + art_sys_55: 1.28681057e-15 + art_sys_56: -1.05089288e-14 + art_sys_57: 9.88169694e-20 + art_sys_58: -1.44790589e-21 + art_sys_59: 4.97808416e-14 + art_sys_60: 3.40041922e-07 + art_sys_61: -9.86279928e-18 + art_sys_62: 3.61893936e-16 + art_sys_63: -7.07446460e-08 + art_sys_64: -7.40530917e-17 + art_sys_65: 3.58170416e-18 + art_sys_66: 3.89869283e-18 + art_sys_67: -9.36572491e-19 + art_sys_68: -1.08517696e-20 + art_sys_69: 1.43170933e-20 + art_sys_70: 3.36009807e-21 + art_sys_71: -1.30175995e-21 + art_sys_72: -1.21933049e-21 + art_sys_73: 6.78238006e-22 + art_sys_74: -2.19650767e-18 + art_sys_75: -2.18764905e-22 + art_sys_76: -2.07616056e-19 + art_sys_77: -6.03122796e-19 + art_sys_78: -1.70843745e-20 + art_sys_79: -1.84826906e-21 + art_sys_80: 3.31540111e-22 + art_sys_81: 2.48851461e-17 + art_sys_82: -1.80381411e-08 + art_sys_83: -5.54039531e-22 + art_sys_84: -2.24678845e-22 + art_sys_85: 2.78399947e-22 + art_sys_86: 4.63843824e-23 + art_sys_87: -1.10758659e-23 + art_sys_88: -1.44398170e-18 + art_sys_89: -3.92724188e-25 + art_sys_90: -2.17663015e-21 + art_sys_91: -3.27009584e-14 + art_sys_92: -8.87970962e-24 + art_sys_93: 4.77094691e-24 + art_sys_94: 4.36227383e-19 + art_sys_95: -3.91368433e-21 + art_sys_96: 3.42086874e-14 + art_sys_97: 8.27499720e-16 + art_sys_98: -1.65456387e-21 + art_sys_99: 2.68063754e-15 + art_sys_100: -1.81752741e-21 + art_sys_101: -2.85320619e-15 + art_sys_102: -7.15347373e-18 + art_sys_103: -2.22179711e-17 + art_sys_104: 1.80034981e-17 + art_sys_105: 1.68300740e-18 + art_sys_106: 1.34270980e-16 + art_sys_107: 1.31757671e-17 + art_sys_108: 2.73558282e-18 + art_sys_109: -1.06446939e-19 + art_sys_110: -7.86052266e-17 + art_sys_111: 1.62854374e-17 + art_sys_112: -5.78711211e-11 + art_sys_113: 3.32089819e-16 + art_sys_114: -2.06052438e-20 + art_sys_115: 7.31623612e-19 + art_sys_116: -9.82758159e-18 + art_sys_117: -1.05898856e-20 + art_sys_118: -5.36232289e-18 + art_sys_119: -1.76218877e-17 + art_sys_120: -7.23140409e-12 + art_sys_121: 9.03973529e-21 + art_sys_122: 2.01072040e-17 + art_sys_123: 4.97647800e-18 + art_sys_124: 7.62919177e-18 + art_sys_125: -1.56762940e-20 + art_sys_126: -2.07004965e-12 + art_sys_127: -5.78075877e-18 + art_sys_128: -1.76478586e-17 + art_sys_129: -3.96170008e-20 + art_sys_130: 1.86604877e-16 + art_sys_131: 5.51508981e-19 + art_sys_132: 1.33851267e-16 + art_sys_133: -4.14572192e-16 + art_sys_134: -2.77630031e-13 + art_sys_135: -7.95416167e-17 + art_sys_136: -1.62761945e-18 + art_sys_137: 6.43084040e-17 + art_sys_138: -3.40251574e-18 + art_sys_139: -9.71834044e-16 + art_sys_140: 3.43971752e-19 + art_sys_141: -3.89598748e-14 + art_sys_142: 9.55490614e-19 + art_sys_143: 6.87609093e-17 + art_sys_144: -2.14402019e-18 + art_sys_145: -4.75216818e-17 + art_sys_146: -5.09487997e-18 + art_sys_147: 3.44823831e-20 + art_sys_148: 1.66959802e-20 + art_sys_149: -1.17540659e-20 + art_sys_150: -2.42244076e-17 + art_sys_151: -7.91659287e-16 + art_sys_152: -1.35088956e-19 + art_sys_153: -6.53494492e-17 + art_sys_154: -3.52262382e-18 + art_sys_155: 2.90193127e-19 + art_sys_156: -0.0 + art_sys_157: -1.48474166e-18 art_sys_158: -0.0 - art_sys_159: 7.72731143e-19 - art_sys_160: -2.22784903e-19 - art_sys_161: -7.67019771e-19 - art_sys_162: -2.12984788e-20 - art_sys_163: -7.10787015e-18 - art_sys_164: -1.12020659e-18 - art_sys_165: 6.67606164e-21 - art_sys_166: 6.55579149e-27 - art_sys_167: 6.30419507e-27 - art_sys_168: -2.22567657e-27 - art_sys_169: 1.29658210e-28 - art_sys_170: -1.84244971e-28 - art_sys_171: 1.42007789e-28 - art_sys_172: 8.43564236e-29 - art_sys_173: -3.43115338e-29 - art_sys_174: -1.97087493e-29 - art_sys_175: 9.57138563e-32 - art_sys_176: 7.13542830e-32 - art_sys_177: 3.44926765e-30 - art_sys_178: -1.28091402e-30 - art_sys_179: 7.55213918e-31 - art_sys_180: -1.01966564e-30 - art_sys_181: -2.45626655e-33 - art_sys_182: 2.66921806e-31 - art_sys_183: 3.71138763e-33 - art_sys_184: -6.76076614e-35 - art_sys_185: -3.36859259e-35 + art_sys_159: -1.11542766e-17 + art_sys_160: 1.87759466e-20 + art_sys_161: 1.53610658e-18 + art_sys_162: 1.53610658e-18 + art_sys_163: 1.35417821e-18 + art_sys_164: 1.35417821e-18 + art_sys_165: -1.56530328e-32 + art_sys_166: 5.20733270e-33 + art_sys_167: 0.0 + art_sys_168: -1.12059315e-27 + art_sys_169: -9.88232202e-28 + art_sys_170: -6.97899617e-28 + art_sys_171: -3.17287991e-28 + art_sys_172: 9.89532323e-29 + art_sys_173: 4.97762126e-30 + art_sys_174: 8.78439241e-30 + art_sys_175: 5.04932127e-30 + art_sys_176: -2.10422643e-30 + art_sys_177: 9.28001835e-31 + art_sys_178: 1.34264478e-30 + art_sys_179: -9.38410267e-32 + art_sys_180: -2.93760162e-31 + art_sys_181: 4.41559802e-31 + art_sys_182: -1.48539393e-31 + art_sys_183: 1.14156392e-33 + art_sys_184: 1.37835390e-33 + art_sys_185: -4.12297957e-34 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -58148,191 +58148,191 @@ bins: RelativeStatFSR-: -1.77681004e-01 luminosity_uncertainty: 1.75861400e+00 uncorrelated_uncertainty: 6.76390000e-01 -- art_sys_1: -1.61015788e-18 - art_sys_2: 3.03239801e-18 +- art_sys_1: -1.31006895e-18 + art_sys_2: 4.26837597e-18 art_sys_3: 2.27953120e-03 - art_sys_4: 1.68813884e-17 + art_sys_4: 3.59762007e-17 art_sys_5: 1.87462833e-03 - art_sys_6: 8.90554227e-18 - art_sys_7: 4.81966218e-18 + art_sys_6: 1.76095855e-17 + art_sys_7: -1.26153067e-17 art_sys_8: 8.76248995e-03 - art_sys_9: -5.63065344e-18 - art_sys_10: 3.00762479e-18 + art_sys_9: -3.22388511e-18 + art_sys_10: 9.12058975e-18 art_sys_11: 7.69517351e-03 - art_sys_12: 1.68983016e-17 - art_sys_13: -2.00119040e-16 - art_sys_14: 4.68350596e-17 + art_sys_12: 1.35195169e-17 + art_sys_13: 5.60731841e-16 + art_sys_14: 1.38583692e-16 art_sys_15: -1.07140019e-02 - art_sys_16: -1.18511935e-16 - art_sys_17: -1.56071477e-16 + art_sys_16: -3.12250088e-16 + art_sys_17: 8.38315783e-17 art_sys_18: -8.10092244e-02 - art_sys_19: -3.91920362e-15 - art_sys_20: 1.36763878e-15 - art_sys_21: -2.59958545e-03 - art_sys_22: 1.44898713e-16 - art_sys_23: -2.58792613e-15 - art_sys_24: 7.48757864e-02 - art_sys_25: 1.07002065e-14 - art_sys_26: 6.09204499e-14 - art_sys_27: -2.13562436e-14 - art_sys_28: 1.32079146e-15 - art_sys_29: 3.74755109e-13 - art_sys_30: 2.37616646e-15 - art_sys_31: 2.54568599e-16 - art_sys_32: 1.08739646e-15 - art_sys_33: 3.87410368e-16 - art_sys_34: 1.24313414e-01 - art_sys_35: 2.11447189e-13 - art_sys_36: -1.62801408e-02 - art_sys_37: -1.51548702e-12 - art_sys_38: 7.98466260e-17 - art_sys_39: 7.44793184e-11 - art_sys_40: -1.84131363e-02 - art_sys_41: 1.56327642e-11 - art_sys_42: 1.15280096e-15 - art_sys_43: 6.23414051e-19 - art_sys_44: -1.27091382e-19 - art_sys_45: 8.02960596e-19 - art_sys_46: 9.51640407e-14 - art_sys_47: 6.00859552e-04 - art_sys_48: -3.36365241e-12 - art_sys_49: -3.79245973e-16 - art_sys_50: -4.40612532e-17 - art_sys_51: -1.05068030e-16 - art_sys_52: -4.76043466e-17 - art_sys_53: 2.00755239e-17 - art_sys_54: 2.17389397e-17 - art_sys_55: -6.54019584e-14 - art_sys_56: -7.59177374e-16 - art_sys_57: 1.75325806e-04 - art_sys_58: 2.18262275e-18 - art_sys_59: -3.96844583e-19 - art_sys_60: -4.83336852e-12 - art_sys_61: 7.35251302e-14 - art_sys_62: -6.15393761e-05 - art_sys_63: 9.21030600e-17 - art_sys_64: -7.49751087e-12 - art_sys_65: -3.90660731e-20 - art_sys_66: -7.88271091e-21 - art_sys_67: 6.39417678e-14 - art_sys_68: -5.49103678e-16 - art_sys_69: 2.07781563e-16 - art_sys_70: -6.44322529e-15 - art_sys_71: -1.59203871e-06 - art_sys_72: 3.15533231e-14 - art_sys_73: -1.23706817e-17 - art_sys_74: 5.65648834e-18 - art_sys_75: 2.04735393e-18 - art_sys_76: 2.70195128e-18 - art_sys_77: -3.72721318e-07 - art_sys_78: 1.49459537e-16 - art_sys_79: -2.60841748e-19 - art_sys_80: 1.01362238e-20 - art_sys_81: -1.44307878e-19 - art_sys_82: -3.21353802e-20 - art_sys_83: -9.90656650e-18 - art_sys_84: 1.90275897e-20 - art_sys_85: -2.08491868e-20 - art_sys_86: 6.21223158e-17 - art_sys_87: 9.29817576e-08 - art_sys_88: -5.33859464e-18 - art_sys_89: 4.77284782e-20 - art_sys_90: -5.03299734e-14 - art_sys_91: 6.64963713e-18 - art_sys_92: -1.35819340e-13 - art_sys_93: 3.13290626e-14 - art_sys_94: 7.56282881e-15 - art_sys_95: -9.56386868e-17 - art_sys_96: 1.06494716e-18 - art_sys_97: -2.18401939e-14 - art_sys_98: 2.30612058e-15 - art_sys_99: 3.11090130e-14 - art_sys_100: 2.01008902e-17 - art_sys_101: 1.92619242e-17 - art_sys_102: 1.30783986e-16 - art_sys_103: 1.23713871e-17 - art_sys_104: 2.69032017e-14 - art_sys_105: -9.03847384e-17 - art_sys_106: 1.76089076e-10 - art_sys_107: -4.14026149e-18 - art_sys_108: 2.55154450e-19 - art_sys_109: 1.45740769e-18 - art_sys_110: -4.98298709e-15 - art_sys_111: -3.61981481e-15 - art_sys_112: -2.34115112e-16 - art_sys_113: 2.49319769e-20 - art_sys_114: 2.44956559e-15 - art_sys_115: -8.28385537e-17 - art_sys_116: -4.47954670e-11 - art_sys_117: 2.08586898e-15 - art_sys_118: 4.14965497e-16 - art_sys_119: -1.06381357e-15 - art_sys_120: -8.21811124e-12 - art_sys_121: -1.55169957e-16 - art_sys_122: 1.28124053e-15 - art_sys_123: -1.91028339e-15 - art_sys_124: 1.43383876e-16 - art_sys_125: -1.38369561e-12 - art_sys_126: -4.06000539e-16 - art_sys_127: -1.01727491e-15 - art_sys_128: -8.03767095e-16 - art_sys_129: -4.52517381e-16 - art_sys_130: -2.21325803e-15 - art_sys_131: 1.87387177e-13 - art_sys_132: 4.66131048e-16 - art_sys_133: -3.79189085e-15 - art_sys_134: -2.78484367e-18 - art_sys_135: -1.55612351e-16 - art_sys_136: -3.53371248e-16 - art_sys_137: 4.29435592e-19 - art_sys_138: -1.87857335e-16 - art_sys_139: -8.76973940e-17 - art_sys_140: -3.31006247e-16 - art_sys_141: -3.46334097e-15 - art_sys_142: 9.68091532e-17 - art_sys_143: -1.16184901e-19 - art_sys_144: 2.88133735e-21 - art_sys_145: 1.34161189e-18 - art_sys_146: 0.0 - art_sys_147: -1.17814648e-17 - art_sys_148: 5.65046357e-17 - art_sys_149: 5.65046357e-17 - art_sys_150: 2.24445570e-17 - art_sys_151: 2.24445570e-17 - art_sys_152: -5.93567138e-18 - art_sys_153: -2.80548054e-18 - art_sys_154: 7.94851795e-21 - art_sys_155: -1.06290069e-30 - art_sys_156: 8.09351327e-33 - art_sys_157: 3.46327399e-33 + art_sys_19: -1.96720304e-15 + art_sys_20: -3.10305926e-15 + art_sys_21: 2.59958545e-03 + art_sys_22: 2.74905959e-15 + art_sys_23: -2.11708901e-15 + art_sys_24: -7.48757864e-02 + art_sys_25: 5.44919108e-16 + art_sys_26: -9.54488126e-16 + art_sys_27: 1.24313414e-01 + art_sys_28: 1.58442215e-13 + art_sys_29: 1.62801408e-02 + art_sys_30: 3.29702358e-16 + art_sys_31: 9.94376493e-14 + art_sys_32: -1.84131364e-02 + art_sys_33: 8.69466291e-16 + art_sys_34: -1.10340737e-14 + art_sys_35: -3.90165433e-14 + art_sys_36: -1.56083350e-15 + art_sys_37: 2.18439646e-15 + art_sys_38: 3.94370751e-16 + art_sys_39: 6.93602518e-19 + art_sys_40: 5.25244180e-17 + art_sys_41: 4.54924310e-17 + art_sys_42: 2.19989415e-17 + art_sys_43: 6.42452114e-17 + art_sys_44: -2.09206752e-18 + art_sys_45: -6.40648908e-19 + art_sys_46: 2.73597081e-18 + art_sys_47: 6.00859553e-04 + art_sys_48: 3.32939226e-12 + art_sys_49: -1.75325806e-04 + art_sys_50: 2.43808006e-19 + art_sys_51: 1.38107609e-18 + art_sys_52: -3.33716762e-14 + art_sys_53: -1.45104765e-13 + art_sys_54: -6.15393774e-05 + art_sys_55: -6.74293133e-15 + art_sys_56: 5.49870275e-14 + art_sys_57: -1.87565105e-18 + art_sys_58: 1.50682240e-20 + art_sys_59: -2.32044815e-13 + art_sys_60: -1.59203807e-06 + art_sys_61: 5.08280479e-17 + art_sys_62: -1.82523419e-15 + art_sys_63: 3.72721291e-07 + art_sys_64: 4.86271791e-16 + art_sys_65: -2.91413976e-17 + art_sys_66: -5.55450401e-18 + art_sys_67: 8.22125125e-19 + art_sys_68: 1.76475689e-20 + art_sys_69: -6.29314793e-20 + art_sys_70: -1.27534880e-20 + art_sys_71: 6.13465181e-21 + art_sys_72: 5.90287874e-21 + art_sys_73: -2.86505234e-21 + art_sys_74: 1.13303739e-17 + art_sys_75: 1.65229594e-21 + art_sys_76: 1.02896717e-18 + art_sys_77: 3.09646756e-18 + art_sys_78: 9.42934364e-20 + art_sys_79: 1.27745144e-20 + art_sys_80: 6.21328663e-22 + art_sys_81: -1.28268367e-16 + art_sys_82: 9.29820407e-08 + art_sys_83: 1.65277034e-21 + art_sys_84: 8.85291303e-22 + art_sys_85: -7.75011450e-22 + art_sys_86: -1.62474796e-22 + art_sys_87: -4.14301685e-22 + art_sys_88: 4.39387694e-18 + art_sys_89: 6.20768376e-25 + art_sys_90: -7.54143552e-20 + art_sys_91: 1.68839117e-13 + art_sys_92: 2.73840426e-23 + art_sys_93: -1.55008773e-23 + art_sys_94: -1.73220609e-18 + art_sys_95: 1.51000049e-20 + art_sys_96: -1.76314608e-13 + art_sys_97: -4.61288413e-15 + art_sys_98: 8.35639945e-21 + art_sys_99: -1.38177222e-14 + art_sys_100: -1.40895811e-21 + art_sys_101: 1.47070211e-14 + art_sys_102: 2.27883195e-17 + art_sys_103: 1.21100008e-16 + art_sys_104: -8.74531369e-17 + art_sys_105: -8.09139329e-18 + art_sys_106: -6.88530328e-16 + art_sys_107: -8.16645904e-17 + art_sys_108: -1.31513043e-17 + art_sys_109: 5.12458512e-19 + art_sys_110: -8.64815446e-17 + art_sys_111: 4.01424329e-18 + art_sys_112: 1.76083520e-10 + art_sys_113: -1.80922425e-15 + art_sys_114: 9.89504758e-20 + art_sys_115: -3.03179328e-18 + art_sys_116: 4.29360054e-17 + art_sys_117: 5.15489375e-20 + art_sys_118: 1.44225699e-17 + art_sys_119: 6.10678601e-17 + art_sys_120: 4.47984253e-11 + art_sys_121: -4.31894560e-20 + art_sys_122: -6.45751038e-17 + art_sys_123: -2.48670880e-17 + art_sys_124: -1.88009822e-17 + art_sys_125: 7.16269503e-20 + art_sys_126: 8.21762818e-12 + art_sys_127: 2.90262374e-17 + art_sys_128: 1.11809351e-16 + art_sys_129: 1.83073788e-19 + art_sys_130: -8.96885973e-16 + art_sys_131: -2.54855555e-18 + art_sys_132: -8.35802796e-16 + art_sys_133: 1.99341648e-15 + art_sys_134: 1.38392322e-12 + art_sys_135: 3.36423178e-16 + art_sys_136: 7.51525412e-18 + art_sys_137: -3.08350011e-16 + art_sys_138: 1.63454839e-17 + art_sys_139: 4.67166594e-15 + art_sys_140: -1.59707465e-18 + art_sys_141: 1.87297534e-13 + art_sys_142: -8.72793706e-18 + art_sys_143: -3.30648993e-16 + art_sys_144: 1.00855258e-17 + art_sys_145: 2.38527886e-16 + art_sys_146: 2.44224435e-17 + art_sys_147: -1.72631917e-19 + art_sys_148: -8.91669587e-20 + art_sys_149: 7.71762222e-19 + art_sys_150: 1.14501048e-16 + art_sys_151: 3.65274484e-15 + art_sys_152: 5.93601217e-19 + art_sys_153: 3.09066273e-16 + art_sys_154: 1.39060790e-17 + art_sys_155: -1.37256463e-18 + art_sys_156: 0.0 + art_sys_157: 7.47858282e-18 art_sys_158: 0.0 - art_sys_159: -3.55830886e-18 - art_sys_160: 1.02669079e-18 - art_sys_161: 3.53559495e-18 - art_sys_162: 9.81292579e-20 - art_sys_163: 3.28024325e-17 - art_sys_164: 5.18163769e-18 - art_sys_165: -3.41285816e-20 - art_sys_166: -3.02102159e-26 - art_sys_167: -2.89609315e-26 - art_sys_168: 1.02556641e-26 - art_sys_169: -5.62028316e-28 - art_sys_170: 8.08288066e-28 - art_sys_171: -6.59518570e-28 - art_sys_172: -4.55598482e-28 - art_sys_173: 1.41237216e-28 - art_sys_174: 8.59399934e-29 - art_sys_175: -4.40923104e-31 - art_sys_176: -1.09476672e-30 - art_sys_177: -1.55649306e-29 - art_sys_178: 5.85005228e-30 - art_sys_179: -3.48589678e-30 - art_sys_180: 4.74529653e-30 - art_sys_181: 1.16419867e-32 - art_sys_182: -1.22963523e-30 - art_sys_183: -1.71137147e-32 - art_sys_184: 3.10476474e-34 - art_sys_185: 1.56408606e-34 + art_sys_159: 5.45066182e-17 + art_sys_160: -4.75249711e-20 + art_sys_161: -7.55485019e-18 + art_sys_162: -7.55485019e-18 + art_sys_163: -6.61883266e-18 + art_sys_164: -6.61883266e-18 + art_sys_165: 7.65853183e-32 + art_sys_166: -2.54823127e-32 + art_sys_167: -0.0 + art_sys_168: 5.41325665e-27 + art_sys_169: 4.56421211e-27 + art_sys_170: 4.45462371e-27 + art_sys_171: 1.37991861e-27 + art_sys_172: -4.63669528e-28 + art_sys_173: -2.57504156e-29 + art_sys_174: -4.01025073e-29 + art_sys_175: -2.33495364e-29 + art_sys_176: 9.69917967e-30 + art_sys_177: -4.28632440e-30 + art_sys_178: -6.20765624e-30 + art_sys_179: 4.45503203e-31 + art_sys_180: 1.43515699e-30 + art_sys_181: -2.03230552e-30 + art_sys_182: 6.98303013e-31 + art_sys_183: -5.18456046e-33 + art_sys_184: -6.56570336e-33 + art_sys_185: 2.00559002e-33 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -58439,191 +58439,191 @@ bins: RelativeStatFSR-: -9.12628053e-02 luminosity_uncertainty: 8.45262600e-01 uncorrelated_uncertainty: 3.25101000e-01 -- art_sys_1: -2.00416042e-19 - art_sys_2: -7.74984269e-19 +- art_sys_1: -1.82517388e-19 + art_sys_2: -1.12318621e-18 art_sys_3: 2.20792751e-04 - art_sys_4: -9.61200048e-19 + art_sys_4: 9.47321818e-19 art_sys_5: -7.24334081e-04 - art_sys_6: -5.27329582e-19 - art_sys_7: -1.97247100e-19 + art_sys_6: -1.33213554e-18 + art_sys_7: -5.42121072e-19 art_sys_8: -8.55469714e-04 - art_sys_9: 2.10170529e-20 - art_sys_10: 7.34737884e-20 + art_sys_9: 5.49756353e-20 + art_sys_10: -6.38335246e-20 art_sys_11: 6.48004454e-05 - art_sys_12: 1.72288229e-17 - art_sys_13: -3.83535467e-16 - art_sys_14: 1.73645686e-17 + art_sys_12: -2.39094665e-18 + art_sys_13: 9.18306683e-16 + art_sys_14: -4.12118766e-17 art_sys_15: -1.21292081e-02 - art_sys_16: -8.03881328e-17 - art_sys_17: -1.48078703e-16 + art_sys_16: 1.45260551e-16 + art_sys_17: -3.59023105e-16 art_sys_18: -6.45429229e-03 - art_sys_19: -1.69027278e-17 - art_sys_20: -7.60875174e-16 - art_sys_21: 5.49947587e-02 - art_sys_22: -1.61629791e-16 - art_sys_23: 1.67531711e-16 - art_sys_24: -3.68182305e-02 - art_sys_25: -3.55687413e-14 - art_sys_26: 1.06687738e-14 - art_sys_27: 2.70668242e-15 - art_sys_28: 1.79775431e-17 - art_sys_29: 1.39971687e-13 - art_sys_30: 6.18883658e-15 - art_sys_31: 9.65780976e-16 - art_sys_32: 2.92980811e-16 - art_sys_33: 3.65275823e-16 - art_sys_34: 4.65798719e-02 - art_sys_35: 6.92005171e-13 - art_sys_36: 6.95329785e-02 - art_sys_37: 6.47831986e-12 - art_sys_38: -1.58561222e-16 - art_sys_39: -1.28268823e-10 - art_sys_40: 3.17415304e-02 - art_sys_41: -2.69487649e-11 - art_sys_42: -1.13782153e-15 - art_sys_43: -8.22879851e-18 - art_sys_44: -8.97044349e-20 - art_sys_45: -3.16025594e-18 - art_sys_46: -1.15527729e-13 + art_sys_19: 1.24105994e-16 + art_sys_20: 1.89339776e-15 + art_sys_21: -5.49947587e-02 + art_sys_22: -2.81594211e-17 + art_sys_23: 1.40618163e-15 + art_sys_24: 3.68182305e-02 + art_sys_25: -1.20596907e-16 + art_sys_26: -6.97763607e-17 + art_sys_27: 4.65798719e-02 + art_sys_28: -3.99237263e-13 + art_sys_29: -6.95329785e-02 + art_sys_30: 3.67027147e-16 + art_sys_31: -1.29625699e-13 + art_sys_32: 3.17415305e-02 + art_sys_33: -1.21660923e-15 + art_sys_34: 4.59940141e-14 + art_sys_35: 1.96132415e-14 + art_sys_36: 7.82342358e-15 + art_sys_37: -8.25182640e-15 + art_sys_38: -1.66164611e-15 + art_sys_39: -2.50478790e-17 + art_sys_40: -1.99977754e-16 + art_sys_41: -1.66248209e-16 + art_sys_42: -3.79301192e-17 + art_sys_43: -1.60165688e-16 + art_sys_44: 7.07660042e-18 + art_sys_45: -2.91018180e-19 + art_sys_46: -8.44865484e-18 art_sys_47: -2.51965635e-03 - art_sys_48: 1.07239486e-11 - art_sys_49: 1.37578094e-15 - art_sys_50: 1.95444237e-16 - art_sys_51: 3.58279644e-16 - art_sys_52: 1.65652212e-16 - art_sys_53: -7.09919327e-17 - art_sys_54: -7.44633453e-17 - art_sys_55: 2.06927298e-13 - art_sys_56: 2.72479273e-15 - art_sys_57: -5.54699364e-04 - art_sys_58: -7.61710726e-18 - art_sys_59: 1.53641575e-18 - art_sys_60: 1.73290089e-11 - art_sys_61: -3.22094348e-13 - art_sys_62: 2.20632733e-04 - art_sys_63: -3.93467851e-16 - art_sys_64: 2.68802672e-11 - art_sys_65: 1.68499951e-19 - art_sys_66: 2.84699470e-20 - art_sys_67: -2.18004871e-13 - art_sys_68: 2.16809336e-15 - art_sys_69: -8.18656468e-16 - art_sys_70: 3.63285555e-14 - art_sys_71: 6.80317782e-06 - art_sys_72: -1.10605529e-13 - art_sys_73: 4.06335415e-17 - art_sys_74: -2.11265465e-17 - art_sys_75: -7.71235268e-18 - art_sys_76: -9.92382006e-18 - art_sys_77: 1.36883968e-06 - art_sys_78: -5.48963120e-16 - art_sys_79: 1.03543766e-18 - art_sys_80: -3.92483238e-20 - art_sys_81: 5.79934238e-19 - art_sys_82: 1.28633152e-19 - art_sys_83: 5.21224600e-17 - art_sys_84: -7.73651883e-20 - art_sys_85: 8.32733852e-20 - art_sys_86: -1.94757354e-16 - art_sys_87: -3.72899244e-07 - art_sys_88: 2.12685795e-17 - art_sys_89: -1.96176554e-19 - art_sys_90: 2.01768252e-13 - art_sys_91: -3.56082744e-17 - art_sys_92: 5.44617039e-13 - art_sys_93: -1.14666648e-13 - art_sys_94: -3.03406564e-14 - art_sys_95: 5.11109687e-16 - art_sys_96: -3.98974300e-18 - art_sys_97: 1.16785451e-13 - art_sys_98: -9.25193096e-15 - art_sys_99: -1.11415190e-13 - art_sys_100: -1.11237181e-16 - art_sys_101: -7.57976612e-17 - art_sys_102: -5.39107559e-16 - art_sys_103: -5.42511504e-17 - art_sys_104: -9.65076844e-14 - art_sys_105: 5.13695313e-16 - art_sys_106: -9.41557279e-10 - art_sys_107: 1.63403393e-17 - art_sys_108: -1.00910864e-18 - art_sys_109: -5.96146066e-18 - art_sys_110: 1.53212070e-14 - art_sys_111: 1.93560560e-14 - art_sys_112: 1.27125710e-15 - art_sys_113: -1.18635374e-19 - art_sys_114: -1.30936685e-14 - art_sys_115: 3.09828716e-16 - art_sys_116: 1.41103633e-10 - art_sys_117: -1.14676248e-14 - art_sys_118: -1.55089259e-15 - art_sys_119: 4.93279256e-15 - art_sys_120: 3.99206122e-11 - art_sys_121: 6.03529232e-16 - art_sys_122: -3.35516166e-15 - art_sys_123: 8.71098339e-15 - art_sys_124: -5.64339244e-16 - art_sys_125: 5.17370128e-12 - art_sys_126: 1.60185854e-15 - art_sys_127: 4.00679012e-15 - art_sys_128: 3.18056424e-15 - art_sys_129: 2.57762822e-15 - art_sys_130: 8.75268996e-15 - art_sys_131: -7.39479337e-13 - art_sys_132: -1.99064526e-15 - art_sys_133: 1.49880873e-14 - art_sys_134: 1.13107445e-17 - art_sys_135: 6.95841119e-16 - art_sys_136: 1.42151004e-15 - art_sys_137: -1.78260651e-18 - art_sys_138: 6.65601664e-16 - art_sys_139: 3.43093349e-16 - art_sys_140: 1.33534120e-15 - art_sys_141: 1.59223988e-14 - art_sys_142: -4.10837828e-16 - art_sys_143: 4.77891021e-19 - art_sys_144: 1.78106402e-20 - art_sys_145: -5.89712789e-18 - art_sys_146: -0.0 - art_sys_147: 5.02064656e-17 - art_sys_148: -2.17473878e-16 - art_sys_149: -2.17473878e-16 - art_sys_150: -1.11113090e-16 - art_sys_151: -1.11113090e-16 - art_sys_152: 3.13287344e-17 - art_sys_153: 1.46350793e-17 - art_sys_154: -3.47759836e-20 - art_sys_155: 6.61880518e-30 - art_sys_156: -3.13600361e-32 - art_sys_157: -1.37054341e-32 + art_sys_48: -9.72926332e-12 + art_sys_49: 5.54699362e-04 + art_sys_50: 3.96434388e-20 + art_sys_51: 1.45247331e-18 + art_sys_52: 8.60087564e-15 + art_sys_53: 5.23415158e-13 + art_sys_54: 2.20632738e-04 + art_sys_55: 2.35589330e-14 + art_sys_56: -1.74218060e-13 + art_sys_57: -1.44124782e-19 + art_sys_58: -4.05023137e-22 + art_sys_59: 9.97167524e-13 + art_sys_60: 6.80317513e-06 + art_sys_61: -2.03900992e-16 + art_sys_62: 4.74572581e-15 + art_sys_63: -1.36883957e-06 + art_sys_64: -8.75476006e-16 + art_sys_65: 4.78730166e-17 + art_sys_66: 5.69320609e-17 + art_sys_67: -1.55070983e-17 + art_sys_68: -1.51568967e-20 + art_sys_69: 2.15505667e-19 + art_sys_70: 4.90545363e-20 + art_sys_71: -3.02528318e-20 + art_sys_72: -2.46864084e-20 + art_sys_73: 1.35156883e-20 + art_sys_74: -4.54433745e-17 + art_sys_75: -4.56843409e-21 + art_sys_76: -4.21965542e-18 + art_sys_77: -1.24445406e-17 + art_sys_78: -3.67603967e-19 + art_sys_79: -3.51690081e-20 + art_sys_80: 2.28732677e-21 + art_sys_81: 5.14465793e-16 + art_sys_82: -3.72900380e-07 + art_sys_83: -9.48065136e-21 + art_sys_84: -3.91264498e-21 + art_sys_85: 4.47776556e-21 + art_sys_86: 7.94269370e-22 + art_sys_87: -1.03351854e-23 + art_sys_88: -2.34935406e-17 + art_sys_89: -5.97473136e-24 + art_sys_90: 4.89098273e-20 + art_sys_91: -6.52861482e-13 + art_sys_92: -1.43208014e-22 + art_sys_93: 7.84397298e-23 + art_sys_94: 8.41363600e-18 + art_sys_95: -8.70857597e-20 + art_sys_96: 7.09528347e-13 + art_sys_97: 1.57451348e-14 + art_sys_98: -3.83244736e-20 + art_sys_99: 5.53784776e-14 + art_sys_100: -3.56072526e-20 + art_sys_101: -5.89650887e-14 + art_sys_102: -1.17405080e-16 + art_sys_103: -4.34776115e-16 + art_sys_104: 3.43186863e-16 + art_sys_105: 3.19272420e-17 + art_sys_106: 2.77436195e-15 + art_sys_107: 2.57089698e-16 + art_sys_108: 5.18958973e-17 + art_sys_109: -2.01217252e-18 + art_sys_110: -9.44813450e-16 + art_sys_111: 1.51751480e-16 + art_sys_112: -9.41527507e-10 + art_sys_113: 6.48281478e-15 + art_sys_114: -3.92062116e-19 + art_sys_115: 1.24739700e-17 + art_sys_116: -1.87956988e-16 + art_sys_117: -1.94322782e-19 + art_sys_118: -8.17651336e-17 + art_sys_119: -3.45464962e-16 + art_sys_120: -1.41112465e-10 + art_sys_121: 1.74513991e-19 + art_sys_122: 3.28718790e-16 + art_sys_123: 9.26997754e-17 + art_sys_124: 1.19265693e-16 + art_sys_125: -3.36833938e-19 + art_sys_126: -3.99183164e-11 + art_sys_127: -9.70433603e-17 + art_sys_128: -3.43348116e-16 + art_sys_129: -8.26176555e-19 + art_sys_130: 3.54153598e-15 + art_sys_131: 1.15029696e-17 + art_sys_132: 2.61291222e-15 + art_sys_133: -7.85804115e-15 + art_sys_134: -5.17456572e-12 + art_sys_135: -1.53434511e-15 + art_sys_136: -3.40291135e-17 + art_sys_137: 1.22754419e-15 + art_sys_138: -6.23194393e-17 + art_sys_139: -1.84400562e-14 + art_sys_140: 7.02777387e-18 + art_sys_141: -7.39086272e-13 + art_sys_142: 1.61156799e-17 + art_sys_143: 1.30425262e-15 + art_sys_144: -4.17640934e-17 + art_sys_145: -8.84211117e-16 + art_sys_146: -9.67047948e-17 + art_sys_147: 6.15644154e-19 + art_sys_148: 2.59042335e-19 + art_sys_149: -3.44175383e-18 + art_sys_150: -4.75917160e-16 + art_sys_151: -1.65959175e-14 + art_sys_152: -3.03888135e-18 + art_sys_153: -1.29208552e-15 + art_sys_154: -6.17010204e-17 + art_sys_155: 5.89876724e-18 + art_sys_156: -0.0 + art_sys_157: -2.71410177e-17 art_sys_158: -0.0 - art_sys_159: 1.63012414e-17 - art_sys_160: -4.69182243e-18 - art_sys_161: -1.61288817e-17 - art_sys_162: -4.47903645e-19 - art_sys_163: -1.48431323e-16 - art_sys_164: -2.33513597e-17 - art_sys_165: 1.06598289e-19 - art_sys_166: 1.37553866e-25 - art_sys_167: 1.32561004e-25 - art_sys_168: -4.68808063e-26 - art_sys_169: 2.29891058e-27 - art_sys_170: -4.11230453e-27 - art_sys_171: 2.84029983e-27 - art_sys_172: 1.54829886e-27 - art_sys_173: -6.13740614e-28 - art_sys_174: -3.75146277e-28 - art_sys_175: 1.94151724e-30 - art_sys_176: -3.87529049e-32 - art_sys_177: 6.98663338e-29 - art_sys_178: -2.50749225e-29 - art_sys_179: 1.47686554e-29 - art_sys_180: -1.98152104e-29 - art_sys_181: -5.17448172e-32 - art_sys_182: 5.63964320e-30 - art_sys_183: 7.70603820e-32 - art_sys_184: -1.34553176e-33 - art_sys_185: -6.51530583e-34 + art_sys_159: -2.07994858e-16 + art_sys_160: 1.21156608e-18 + art_sys_161: 2.87622236e-17 + art_sys_162: 2.87622236e-17 + art_sys_163: 2.56839087e-17 + art_sys_164: 2.56839087e-17 + art_sys_165: -2.96224969e-31 + art_sys_166: 9.85389821e-32 + art_sys_167: 0.0 + art_sys_168: -2.30981935e-26 + art_sys_169: -2.06362522e-26 + art_sys_170: -1.01746485e-26 + art_sys_171: -6.40209845e-27 + art_sys_172: 2.15994342e-27 + art_sys_173: 8.85382805e-29 + art_sys_174: 1.72525559e-28 + art_sys_175: 9.96542164e-29 + art_sys_176: -4.17579772e-29 + art_sys_177: 1.87646370e-29 + art_sys_178: 2.67068217e-29 + art_sys_179: -1.90310994e-30 + art_sys_180: -5.50729046e-30 + art_sys_181: 8.91045060e-30 + art_sys_182: -3.04043834e-30 + art_sys_183: 2.48848547e-32 + art_sys_184: 2.64658713e-32 + art_sys_185: -7.69416709e-33 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -58730,191 +58730,191 @@ bins: RelativeStatFSR-: -4.64199320e-02 luminosity_uncertainty: 4.02651600e-01 uncorrelated_uncertainty: 0.154866 -- art_sys_1: -3.93429458e-21 - art_sys_2: -2.63955944e-19 +- art_sys_1: -7.50232345e-21 + art_sys_2: -3.80563227e-19 art_sys_3: -6.93996490e-06 - art_sys_4: -7.10679139e-19 + art_sys_4: -1.16878756e-18 art_sys_5: -2.18002536e-04 - art_sys_6: -3.94620475e-19 - art_sys_7: -6.19829076e-20 + art_sys_6: -8.60755234e-19 + art_sys_7: 3.64098471e-19 art_sys_8: -4.61591702e-04 - art_sys_9: 3.42646583e-19 - art_sys_10: 7.07404598e-20 + art_sys_9: 1.88871885e-19 + art_sys_10: -4.94300293e-19 art_sys_11: -2.70348230e-04 - art_sys_12: -1.13642296e-20 - art_sys_13: -9.29823957e-19 - art_sys_14: -2.39388167e-18 + art_sys_12: -9.54057407e-19 + art_sys_13: -4.57638620e-20 + art_sys_14: -5.38572590e-18 art_sys_15: 1.33024039e-04 - art_sys_16: 7.95031433e-18 - art_sys_17: 1.29778551e-17 + art_sys_16: 1.25263518e-17 + art_sys_17: 2.71385681e-18 art_sys_18: 4.75208849e-03 - art_sys_19: 2.29756272e-16 - art_sys_20: -5.67073704e-17 - art_sys_21: -1.08706313e-03 - art_sys_22: -4.70440890e-18 - art_sys_23: 1.60553740e-16 - art_sys_24: -3.55705295e-03 - art_sys_25: 9.35781624e-14 - art_sys_26: -5.35597182e-15 - art_sys_27: -1.95774317e-14 - art_sys_28: -1.41910679e-16 - art_sys_29: -5.79732664e-14 - art_sys_30: 1.07433015e-14 - art_sys_31: -1.94232834e-15 - art_sys_32: 8.91034923e-16 - art_sys_33: -4.49809905e-16 - art_sys_34: -1.92454761e-02 - art_sys_35: 5.26825712e-13 - art_sys_36: 6.13630594e-02 - art_sys_37: 5.71163878e-12 - art_sys_38: 2.44977007e-16 - art_sys_39: 1.66999742e-10 - art_sys_40: -4.13385964e-02 - art_sys_41: 3.50966279e-11 - art_sys_42: 9.44451666e-16 - art_sys_43: 3.74693400e-18 - art_sys_44: -7.11569529e-18 - art_sys_45: -2.21216456e-19 - art_sys_46: 8.47081356e-14 + art_sys_19: 1.13337025e-16 + art_sys_20: 1.27384130e-16 + art_sys_21: 1.08706313e-03 + art_sys_22: -1.68948126e-16 + art_sys_23: 8.68575725e-17 + art_sys_24: 3.55705295e-03 + art_sys_25: -5.14161635e-17 + art_sys_26: 9.41356524e-17 + art_sys_27: -1.92454761e-02 + art_sys_28: -4.43193329e-13 + art_sys_29: -6.13630594e-02 + art_sys_30: 3.10406588e-16 + art_sys_31: 1.47602714e-13 + art_sys_32: -4.13385964e-02 + art_sys_33: 1.06549285e-15 + art_sys_34: -3.04144595e-14 + art_sys_35: -1.69242270e-14 + art_sys_36: -3.63727720e-15 + art_sys_37: 9.82615685e-15 + art_sys_38: 1.22587818e-15 + art_sys_39: -1.45530185e-16 + art_sys_40: 2.10004992e-16 + art_sys_41: 2.51345824e-17 + art_sys_42: -5.70794814e-17 + art_sys_43: 9.95269362e-18 + art_sys_44: -1.38803019e-18 + art_sys_45: 1.30606168e-18 + art_sys_46: -4.29002882e-18 art_sys_47: 1.66823806e-03 - art_sys_48: -2.34923537e-11 - art_sys_49: -4.03700273e-15 - art_sys_50: -3.21497570e-16 - art_sys_51: -7.33345671e-16 - art_sys_52: -3.04111685e-16 - art_sys_53: 1.49166075e-16 - art_sys_54: 1.46362841e-16 - art_sys_55: -4.63487292e-13 - art_sys_56: -5.09559263e-15 - art_sys_57: 1.24245651e-03 - art_sys_58: 1.34861103e-17 - art_sys_59: -3.14600987e-18 - art_sys_60: -3.24184168e-11 - art_sys_61: 2.47357795e-13 - art_sys_62: -4.12761300e-04 - art_sys_63: 8.92028689e-16 - art_sys_64: -5.02880152e-11 - art_sys_65: -3.77753038e-19 - art_sys_66: -7.77218284e-20 - art_sys_67: 4.05837487e-13 - art_sys_68: -5.38171380e-15 - art_sys_69: 2.03552082e-15 - art_sys_70: -7.62064902e-14 - art_sys_71: -1.54238563e-05 - art_sys_72: 1.67049811e-13 - art_sys_73: -1.12119262e-16 - art_sys_74: 5.44382780e-17 - art_sys_75: 1.98419022e-17 - art_sys_76: 2.59315518e-17 - art_sys_77: -3.57715190e-06 - art_sys_78: 1.43457904e-15 - art_sys_79: -2.49775236e-18 - art_sys_80: 9.15920138e-20 - art_sys_81: -1.42660212e-18 - art_sys_82: -3.17118437e-19 - art_sys_83: -1.73666937e-16 - art_sys_84: 1.91658699e-19 - art_sys_85: -2.03288400e-19 - art_sys_86: 7.41802225e-16 - art_sys_87: 9.15368432e-07 - art_sys_88: -7.09036146e-17 - art_sys_89: 6.73247287e-19 - art_sys_90: -4.94022485e-13 - art_sys_91: 1.20647488e-16 - art_sys_92: -1.33699077e-12 - art_sys_93: 2.27537087e-13 - art_sys_94: 7.44958920e-14 - art_sys_95: -1.72612401e-15 - art_sys_96: 1.47579934e-17 - art_sys_97: -3.94350480e-13 - art_sys_98: 2.27117723e-14 - art_sys_99: 2.07773209e-13 - art_sys_100: 3.73051234e-16 - art_sys_101: 2.04159486e-16 - art_sys_102: 1.34264782e-15 - art_sys_103: 1.88484506e-16 - art_sys_104: 1.80685558e-13 - art_sys_105: -1.83533701e-15 - art_sys_106: 3.17940593e-09 - art_sys_107: -5.78539259e-17 - art_sys_108: 3.56262604e-18 - art_sys_109: 2.00789552e-17 - art_sys_110: -5.90300066e-14 - art_sys_111: -6.53588012e-14 - art_sys_112: -3.53203142e-15 - art_sys_113: 3.21497139e-19 - art_sys_114: 4.42174792e-14 - art_sys_115: -1.14768108e-15 - art_sys_116: -5.35966093e-10 - art_sys_117: 3.85507847e-14 - art_sys_118: 5.74848715e-15 - art_sys_119: -1.70733170e-14 - art_sys_120: -1.20367899e-10 - art_sys_121: -2.18144277e-15 - art_sys_122: 1.41504844e-14 - art_sys_123: -2.71227798e-14 - art_sys_124: 2.00586277e-15 - art_sys_125: -1.91694678e-11 - art_sys_126: -5.67399665e-15 - art_sys_127: -1.43134315e-14 - art_sys_128: -1.12183907e-14 - art_sys_129: -6.99502187e-15 - art_sys_130: -3.09005181e-14 - art_sys_131: 2.61836226e-12 - art_sys_132: 6.65313292e-15 - art_sys_133: -5.29522069e-14 - art_sys_134: -3.89356288e-17 - art_sys_135: -2.23766116e-15 - art_sys_136: -4.90345589e-15 - art_sys_137: 6.05527388e-18 - art_sys_138: -1.22477588e-15 - art_sys_139: -1.17911037e-15 - art_sys_140: -4.57335906e-15 - art_sys_141: -4.54451009e-14 - art_sys_142: 1.30572872e-15 - art_sys_143: -1.65157011e-18 - art_sys_144: 1.06995739e-19 - art_sys_145: 1.82371014e-17 - art_sys_146: 0.0 - art_sys_147: -1.62443127e-16 - art_sys_148: 8.08600118e-16 - art_sys_149: 8.08600118e-16 - art_sys_150: 2.90469015e-16 - art_sys_151: 2.90469015e-16 - art_sys_152: -8.98444729e-17 - art_sys_153: -3.44593786e-17 - art_sys_154: 1.08959060e-19 - art_sys_155: -8.05524584e-30 - art_sys_156: 1.14876291e-31 - art_sys_157: 4.83816912e-32 + art_sys_48: 2.69632717e-11 + art_sys_49: -1.24245651e-03 + art_sys_50: -9.35807737e-20 + art_sys_51: 1.00266187e-18 + art_sys_52: -5.91787426e-13 + art_sys_53: -9.70200255e-13 + art_sys_54: -4.12761309e-04 + art_sys_55: -4.37978634e-14 + art_sys_56: 3.79569328e-13 + art_sys_57: 8.40890830e-19 + art_sys_58: -1.51356899e-20 + art_sys_59: -2.24806485e-12 + art_sys_60: -1.54238501e-05 + art_sys_61: 5.00323336e-16 + art_sys_62: -1.29569963e-14 + art_sys_63: 3.57715164e-06 + art_sys_64: 1.25231431e-15 + art_sys_65: -1.50699002e-16 + art_sys_66: 1.06068079e-16 + art_sys_67: -2.20090636e-17 + art_sys_68: -1.21214140e-18 + art_sys_69: -2.53689328e-19 + art_sys_70: -8.56582679e-21 + art_sys_71: 7.64993604e-20 + art_sys_72: 5.51097048e-20 + art_sys_73: -2.40148803e-20 + art_sys_74: 1.11491155e-16 + art_sys_75: 1.79965562e-20 + art_sys_76: 1.05679250e-17 + art_sys_77: 3.06188157e-17 + art_sys_78: 8.47545850e-19 + art_sys_79: 1.11862365e-19 + art_sys_80: -1.82776125e-20 + art_sys_81: -1.26284249e-15 + art_sys_82: 9.15371220e-07 + art_sys_83: 2.90275214e-20 + art_sys_84: 1.35022602e-20 + art_sys_85: -1.48410493e-20 + art_sys_86: -2.64093502e-21 + art_sys_87: -4.64007886e-21 + art_sys_88: 7.93234612e-17 + art_sys_89: 2.05044867e-23 + art_sys_90: -3.78609435e-19 + art_sys_91: 1.63915369e-12 + art_sys_92: 4.89044791e-22 + art_sys_93: -2.68293454e-22 + art_sys_94: -2.53689240e-17 + art_sys_95: 1.90427094e-19 + art_sys_96: -1.73812226e-12 + art_sys_97: -2.50380956e-14 + art_sys_98: 9.94279899e-20 + art_sys_99: -1.35985500e-13 + art_sys_100: 1.39744481e-20 + art_sys_101: 1.44762064e-13 + art_sys_102: 3.99493276e-16 + art_sys_103: 8.12036764e-16 + art_sys_104: -8.55302237e-16 + art_sys_105: -1.13059208e-16 + art_sys_106: -6.84533292e-15 + art_sys_107: -9.76949629e-16 + art_sys_108: -1.83761308e-16 + art_sys_109: 7.17341963e-18 + art_sys_110: 2.33524275e-15 + art_sys_111: -1.00536844e-15 + art_sys_112: 3.17930543e-09 + art_sys_113: -1.21202765e-14 + art_sys_114: 1.38045239e-18 + art_sys_115: -3.13913594e-17 + art_sys_116: 6.08931936e-16 + art_sys_117: 7.32760833e-19 + art_sys_118: 2.96058226e-16 + art_sys_119: 9.29060130e-16 + art_sys_120: 5.36000712e-10 + art_sys_121: -5.97993425e-19 + art_sys_122: -1.13087913e-15 + art_sys_123: -3.44361675e-16 + art_sys_124: -3.92564447e-16 + art_sys_125: 9.28809977e-19 + art_sys_126: 1.20360905e-10 + art_sys_127: 4.28279457e-16 + art_sys_128: 1.32775520e-15 + art_sys_129: 2.42455615e-18 + art_sys_130: -1.25299620e-14 + art_sys_131: -3.37484220e-17 + art_sys_132: -9.96680301e-15 + art_sys_133: 2.78682712e-14 + art_sys_134: 1.91726211e-11 + art_sys_135: 4.78098249e-15 + art_sys_136: 9.93508485e-17 + art_sys_137: -4.29560090e-15 + art_sys_138: 2.35199885e-16 + art_sys_139: 6.52707323e-14 + art_sys_140: -2.14794509e-17 + art_sys_141: 2.61713542e-12 + art_sys_142: -1.05768818e-16 + art_sys_143: -4.61990496e-15 + art_sys_144: 1.40006878e-16 + art_sys_145: 3.30105663e-15 + art_sys_146: 3.41769298e-16 + art_sys_147: -2.45337489e-18 + art_sys_148: -1.32013427e-18 + art_sys_149: 1.99550221e-21 + art_sys_150: 1.57357093e-15 + art_sys_151: 4.81914542e-14 + art_sys_152: 7.52210922e-18 + art_sys_153: 4.22418160e-15 + art_sys_154: 1.69703805e-16 + art_sys_155: -1.83257327e-17 + art_sys_156: 0.0 + art_sys_157: 1.03015863e-16 art_sys_158: 0.0 - art_sys_159: -4.67301746e-17 - art_sys_160: 1.34980095e-17 - art_sys_161: 4.65416754e-17 - art_sys_162: 1.29201627e-18 - art_sys_163: 4.34255244e-16 - art_sys_164: 6.86095156e-17 - art_sys_165: -5.12278492e-19 - art_sys_166: -3.98617888e-25 - art_sys_167: -3.80258505e-25 - art_sys_168: 1.34873521e-25 - art_sys_169: -5.51201938e-27 - art_sys_170: 1.28242441e-26 - art_sys_171: -9.44288508e-27 - art_sys_172: -4.44234179e-27 - art_sys_173: 1.37553750e-27 - art_sys_174: 1.18263263e-27 - art_sys_175: -5.99768735e-30 - art_sys_176: -1.94946578e-29 - art_sys_177: -2.24760276e-28 - art_sys_178: 8.33294430e-29 - art_sys_179: -4.89061637e-29 - art_sys_180: 6.57162828e-29 - art_sys_181: 1.67050610e-31 - art_sys_182: -1.61186490e-29 - art_sys_183: -2.27778576e-31 - art_sys_184: 4.30089691e-33 - art_sys_185: 2.20227955e-33 + art_sys_159: 7.63321990e-16 + art_sys_160: 1.21649248e-18 + art_sys_161: -1.05060557e-16 + art_sys_162: -1.05060557e-16 + art_sys_163: -9.15205960e-17 + art_sys_164: -9.15205960e-17 + art_sys_165: 1.06006399e-30 + art_sys_166: -3.52695617e-31 + art_sys_167: -0.0 + art_sys_168: 6.43966542e-26 + art_sys_169: 6.04829488e-26 + art_sys_170: 5.31692543e-26 + art_sys_171: 1.72714641e-26 + art_sys_172: -6.75092559e-27 + art_sys_173: -4.83361213e-28 + art_sys_174: -5.06445057e-28 + art_sys_175: -3.12330044e-28 + art_sys_176: 1.32589118e-28 + art_sys_177: -5.83406447e-29 + art_sys_178: -8.56449755e-29 + art_sys_179: 5.94594691e-30 + art_sys_180: 2.00223059e-29 + art_sys_181: -2.76518844e-29 + art_sys_182: 8.62558768e-30 + art_sys_183: -7.25862400e-32 + art_sys_184: -9.14419988e-32 + art_sys_185: 2.81530461e-32 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -59021,191 +59021,191 @@ bins: RelativeStatFSR-: -2.37540217e-02 luminosity_uncertainty: 1.93150100e-01 uncorrelated_uncertainty: 7.42885000e-02 -- art_sys_1: 1.53733273e-21 - art_sys_2: -2.75232925e-20 +- art_sys_1: 1.01403276e-21 + art_sys_2: -4.07370573e-20 art_sys_3: -3.50750636e-06 - art_sys_4: -8.75756848e-20 + art_sys_4: -1.36050540e-19 art_sys_5: -2.23938153e-05 - art_sys_6: -5.05052002e-20 - art_sys_7: -3.49175559e-20 + art_sys_6: -9.80490487e-20 + art_sys_7: 3.40526055e-20 art_sys_8: -5.33662002e-05 - art_sys_9: 2.13326968e-20 - art_sys_10: -9.71883595e-21 + art_sys_9: 3.51165651e-20 + art_sys_10: -3.56267100e-20 art_sys_11: -3.06981755e-05 - art_sys_12: -5.26817464e-19 - art_sys_13: 1.47187759e-17 - art_sys_14: -5.88188214e-19 + art_sys_12: 1.44725097e-20 + art_sys_13: -3.57151124e-17 + art_sys_14: 4.33126942e-19 art_sys_15: 4.80277987e-04 - art_sys_16: 3.88668610e-18 - art_sys_17: 7.75051454e-18 + art_sys_16: -3.24665272e-18 + art_sys_17: 1.57513123e-17 art_sys_18: 7.01432405e-04 - art_sys_19: 2.22426031e-17 - art_sys_20: 3.09669692e-17 - art_sys_21: -2.51157723e-03 - art_sys_22: 7.36182129e-18 - art_sys_23: 9.21967422e-19 - art_sys_24: 1.57892712e-03 - art_sys_25: -2.52984043e-14 - art_sys_26: 8.07498902e-15 - art_sys_27: 1.73672919e-14 - art_sys_28: -6.35004484e-18 - art_sys_29: -1.22552044e-14 - art_sys_30: 5.90743791e-15 - art_sys_31: -4.24510785e-16 - art_sys_32: 1.22984772e-15 - art_sys_33: 2.53420659e-16 - art_sys_34: -4.07492170e-03 - art_sys_35: -2.94244491e-14 - art_sys_36: -2.82350558e-03 - art_sys_37: -2.63460287e-13 - art_sys_38: -4.53778301e-16 - art_sys_39: 3.69896354e-11 - art_sys_40: -9.14951822e-03 - art_sys_41: 7.76801309e-12 - art_sys_42: 7.20599613e-16 - art_sys_43: -5.51307760e-17 - art_sys_44: 2.80489415e-17 - art_sys_45: 8.16283017e-18 - art_sys_46: -4.10771096e-13 + art_sys_19: 4.79457656e-18 + art_sys_20: -7.87272352e-17 + art_sys_21: 2.51157723e-03 + art_sys_22: -1.13058424e-17 + art_sys_23: -5.85723101e-17 + art_sys_24: -1.57892712e-03 + art_sys_25: 3.25165706e-18 + art_sys_26: 3.24357128e-18 + art_sys_27: -4.07492170e-03 + art_sys_28: 1.16225057e-14 + art_sys_29: 2.82350558e-03 + art_sys_30: -3.12870475e-17 + art_sys_31: 4.29922408e-14 + art_sys_32: -9.14951823e-03 + art_sys_33: 4.48188335e-16 + art_sys_34: 3.60843435e-13 + art_sys_35: -1.13543924e-13 + art_sys_36: 5.83460273e-14 + art_sys_37: -6.07707108e-14 + art_sys_38: -1.43315804e-14 + art_sys_39: -1.75018405e-16 + art_sys_40: -1.64606362e-15 + art_sys_41: -8.80753820e-16 + art_sys_42: 4.68974784e-16 + art_sys_43: 2.09534621e-16 + art_sys_44: 3.46221365e-17 + art_sys_45: -2.69625360e-17 + art_sys_46: 9.89578553e-18 art_sys_47: -1.98632301e-02 - art_sys_48: 6.39441232e-11 - art_sys_49: 1.10258909e-14 - art_sys_50: 2.67457691e-15 - art_sys_51: 2.76961510e-15 - art_sys_52: 1.31974834e-15 - art_sys_53: -3.49776099e-16 - art_sys_54: -5.97773286e-16 - art_sys_55: 1.22105059e-12 - art_sys_56: 2.49277517e-14 - art_sys_57: -3.27323416e-03 - art_sys_58: -6.84508981e-17 - art_sys_59: 1.39655491e-17 - art_sys_60: 1.58588836e-10 - art_sys_61: -2.54219220e-12 - art_sys_62: 2.01917377e-03 - art_sys_63: -3.40706699e-15 - art_sys_64: 2.46000579e-10 - art_sys_65: 1.41435109e-18 - art_sys_66: 3.47438648e-19 - art_sys_67: -1.39579801e-12 - art_sys_68: 2.33222083e-14 - art_sys_69: -8.80913877e-15 - art_sys_70: 2.32871027e-13 - art_sys_71: 5.89134245e-05 - art_sys_72: -9.46804259e-13 - art_sys_73: 4.64975830e-16 - art_sys_74: -2.27293541e-16 - art_sys_75: -8.27757388e-17 - art_sys_76: -1.06537810e-16 - art_sys_77: 1.46953936e-05 - art_sys_78: -5.89349649e-15 - art_sys_79: 1.12286290e-17 - art_sys_80: -3.93384437e-19 - art_sys_81: 6.23174132e-18 - art_sys_82: 1.38840672e-18 - art_sys_83: 4.71992372e-16 - art_sys_84: -8.22252097e-19 - art_sys_85: 8.98901371e-19 - art_sys_86: -2.89386516e-15 - art_sys_87: -4.01238362e-06 - art_sys_88: 2.74957292e-16 - art_sys_89: -2.47990289e-18 - art_sys_90: 2.13531570e-12 - art_sys_91: -3.19699512e-16 - art_sys_92: 5.85919916e-12 - art_sys_93: -1.08523991e-12 - art_sys_94: -3.26493294e-13 - art_sys_95: 4.58597372e-15 - art_sys_96: -5.28651488e-17 - art_sys_97: 1.04733774e-12 - art_sys_98: -9.95688671e-14 - art_sys_99: -1.01781525e-12 - art_sys_100: -9.67369616e-16 - art_sys_101: -7.65194431e-16 - art_sys_102: -5.79290628e-15 - art_sys_103: -5.94504570e-16 - art_sys_104: -8.83065124e-13 - art_sys_105: 4.42059890e-15 - art_sys_106: -8.44418489e-09 - art_sys_107: 2.14287958e-16 - art_sys_108: -1.32349348e-17 - art_sys_109: -7.84354030e-17 - art_sys_110: 2.30373448e-13 - art_sys_111: 1.73596181e-13 - art_sys_112: 1.40784093e-14 - art_sys_113: -1.57818807e-18 - art_sys_114: -1.17483009e-13 - art_sys_115: 4.10642847e-15 - art_sys_116: 2.09052671e-09 - art_sys_117: -1.00130134e-13 - art_sys_118: -2.05596816e-14 - art_sys_119: 5.07484609e-14 - art_sys_120: 4.64904362e-10 - art_sys_121: 7.90159623e-15 - art_sys_122: -5.63150237e-14 - art_sys_123: 1.04760122e-13 - art_sys_124: -7.39836566e-15 - art_sys_125: 6.85811951e-11 - art_sys_126: 2.10062303e-14 - art_sys_127: 5.16497385e-14 - art_sys_128: 4.17235142e-14 - art_sys_129: 2.78813971e-14 - art_sys_130: 1.14808961e-13 - art_sys_131: -9.69781426e-12 - art_sys_132: -2.45752521e-14 - art_sys_133: 1.96588340e-13 - art_sys_134: 1.47508791e-16 - art_sys_135: 8.46417762e-15 - art_sys_136: 1.86691830e-14 - art_sys_137: -2.30226438e-17 - art_sys_138: 6.11331535e-15 - art_sys_139: 4.66501788e-15 - art_sys_140: 1.75858018e-14 - art_sys_141: 2.11245459e-13 - art_sys_142: -5.44395694e-15 - art_sys_143: 6.14632675e-18 - art_sys_144: 3.40810588e-19 - art_sys_145: -7.72482364e-17 - art_sys_146: -0.0 - art_sys_147: 6.55186493e-16 - art_sys_148: -2.81336119e-15 - art_sys_149: -2.81336119e-15 - art_sys_150: -1.46541276e-15 - art_sys_151: -1.46541276e-15 - art_sys_152: 3.62052815e-16 - art_sys_153: 1.96838847e-16 - art_sys_154: -4.53747933e-19 - art_sys_155: 1.02092534e-28 - art_sys_156: -4.07856371e-31 - art_sys_157: -1.78012801e-31 + art_sys_48: -5.09153346e-11 + art_sys_49: 3.27323414e-03 + art_sys_50: -1.29995665e-19 + art_sys_51: -8.43076012e-19 + art_sys_52: -6.85389217e-13 + art_sys_53: 4.86912706e-12 + art_sys_54: 2.01917381e-03 + art_sys_55: 2.14214376e-13 + art_sys_56: -1.03807929e-12 + art_sys_57: 4.08457731e-20 + art_sys_58: -5.66561207e-20 + art_sys_59: 8.56266864e-12 + art_sys_60: 5.89134004e-05 + art_sys_61: -2.19394532e-15 + art_sys_62: 5.96139805e-15 + art_sys_63: -1.46953926e-05 + art_sys_64: -9.75292903e-16 + art_sys_65: 3.16051669e-16 + art_sys_66: -6.71966430e-17 + art_sys_67: -2.87894081e-18 + art_sys_68: 4.27612653e-18 + art_sys_69: 1.33048344e-18 + art_sys_70: 1.02762303e-19 + art_sys_71: -3.65263231e-19 + art_sys_72: -2.50160711e-19 + art_sys_73: 1.24502123e-19 + art_sys_74: -4.88877042e-16 + art_sys_75: -6.13384857e-20 + art_sys_76: -4.47891477e-17 + art_sys_77: -1.33705503e-16 + art_sys_78: -4.03082856e-18 + art_sys_79: -3.96684154e-19 + art_sys_80: -1.86389935e-20 + art_sys_81: 5.53575587e-15 + art_sys_82: -4.01239584e-06 + art_sys_83: -8.55831289e-20 + art_sys_84: -4.27936466e-20 + art_sys_85: 3.77736341e-20 + art_sys_86: 8.01378020e-21 + art_sys_87: 1.33639420e-20 + art_sys_88: -2.10691813e-16 + art_sys_89: -3.84799106e-23 + art_sys_90: 3.40489542e-18 + art_sys_91: -6.88064176e-12 + art_sys_92: -1.28770736e-21 + art_sys_93: 7.37604541e-22 + art_sys_94: 9.80106092e-17 + art_sys_95: -9.72832461e-19 + art_sys_96: 7.64905259e-12 + art_sys_97: 1.31947098e-13 + art_sys_98: -4.60328381e-19 + art_sys_99: 5.95672013e-13 + art_sys_100: 3.55180288e-20 + art_sys_101: -6.34374123e-13 + art_sys_102: -1.09035348e-15 + art_sys_103: -3.98343340e-15 + art_sys_104: 3.65001093e-15 + art_sys_105: 4.18716373e-16 + art_sys_106: 2.98097816e-14 + art_sys_107: 3.81003758e-15 + art_sys_108: 6.80589589e-16 + art_sys_109: -2.63785204e-17 + art_sys_110: 3.30429928e-15 + art_sys_111: 4.30763915e-16 + art_sys_112: -8.44391841e-09 + art_sys_113: 5.93433117e-14 + art_sys_114: -5.14352677e-18 + art_sys_115: 1.26702983e-16 + art_sys_116: -2.30232299e-15 + art_sys_117: -2.53975546e-18 + art_sys_118: -7.08304009e-16 + art_sys_119: -3.76046440e-15 + art_sys_120: -2.09066199e-09 + art_sys_121: 2.29414893e-18 + art_sys_122: 3.09269865e-15 + art_sys_123: 1.23062523e-15 + art_sys_124: 8.94028015e-16 + art_sys_125: -4.47916157e-18 + art_sys_126: -4.64877314e-10 + art_sys_127: -1.25429833e-15 + art_sys_128: -5.14733176e-15 + art_sys_129: -1.09409374e-17 + art_sys_130: 4.64464293e-14 + art_sys_131: 1.52340029e-16 + art_sys_132: 3.88921304e-14 + art_sys_133: -1.03038708e-13 + art_sys_134: -6.85925884e-11 + art_sys_135: -1.84469391e-14 + art_sys_136: -4.50842160e-16 + art_sys_137: 1.61070507e-14 + art_sys_138: -8.12288619e-16 + art_sys_139: -2.41836766e-13 + art_sys_140: 9.26502158e-17 + art_sys_141: -9.69270596e-12 + art_sys_142: 3.35364974e-16 + art_sys_143: 1.71066092e-14 + art_sys_144: -5.45440661e-16 + art_sys_145: -1.17708680e-14 + art_sys_146: -1.26612374e-15 + art_sys_147: 8.12160063e-18 + art_sys_148: 3.42240326e-18 + art_sys_149: -8.37614259e-17 + art_sys_150: -6.25330984e-15 + art_sys_151: -2.19991296e-13 + art_sys_152: -4.02379053e-17 + art_sys_153: -1.70223049e-14 + art_sys_154: -5.58747192e-16 + art_sys_155: 7.84700177e-17 + art_sys_156: -0.0 + art_sys_157: -3.54594036e-16 art_sys_158: -0.0 - art_sys_159: 2.16316971e-16 - art_sys_160: -6.22506727e-17 - art_sys_161: -2.13912057e-16 - art_sys_162: -5.93900902e-18 - art_sys_163: -1.96513441e-15 - art_sys_164: -3.09370372e-16 - art_sys_165: 1.37109238e-18 - art_sys_166: 1.82223780e-24 - art_sys_167: 1.75280807e-24 - art_sys_168: -6.21897845e-25 - art_sys_169: 3.14621113e-26 - art_sys_170: -5.42720042e-26 - art_sys_171: 3.76939946e-26 - art_sys_172: 1.94558390e-26 - art_sys_173: -5.88304177e-27 - art_sys_174: -4.52514369e-27 - art_sys_175: 2.54135734e-29 - art_sys_176: 2.74961680e-29 - art_sys_177: 9.24179090e-28 - art_sys_178: -3.24318043e-28 - art_sys_179: 1.91074998e-28 - art_sys_180: -2.55625632e-28 - art_sys_181: -7.23356145e-31 - art_sys_182: 7.48946398e-29 - art_sys_183: 1.01759435e-30 - art_sys_184: -1.74560929e-32 - art_sys_185: -8.41802558e-33 + art_sys_159: -2.74033177e-15 + art_sys_160: 1.87130135e-17 + art_sys_161: 3.81179179e-16 + art_sys_162: 3.81179179e-16 + art_sys_163: 3.40481628e-16 + art_sys_164: 3.40481628e-16 + art_sys_165: -3.92657889e-30 + art_sys_166: 1.30629465e-30 + art_sys_167: 0.0 + art_sys_168: -3.25994529e-25 + art_sys_169: -2.75127523e-25 + art_sys_170: -5.45345610e-26 + art_sys_171: -7.84687833e-26 + art_sys_172: 3.05501854e-26 + art_sys_173: 1.27629333e-27 + art_sys_174: 2.13836709e-27 + art_sys_175: 1.27415828e-27 + art_sys_176: -5.39629757e-28 + art_sys_177: 2.45676864e-28 + art_sys_178: 3.47782910e-28 + art_sys_179: -2.53517900e-29 + art_sys_180: -7.26870891e-29 + art_sys_181: 1.16148096e-28 + art_sys_182: -3.90397439e-29 + art_sys_183: 3.42619047e-31 + art_sys_184: 3.46540968e-31 + art_sys_185: -1.01089502e-31 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -59312,191 +59312,191 @@ bins: RelativeStatFSR-: -1.18121632e-02 luminosity_uncertainty: 9.01469400e-02 uncorrelated_uncertainty: 3.46719000e-02 -- art_sys_1: 1.62279504e-22 - art_sys_2: -2.07176577e-21 +- art_sys_1: 1.10010385e-22 + art_sys_2: -3.02637413e-21 art_sys_3: -3.25962952e-07 - art_sys_4: -5.03687286e-21 + art_sys_4: 4.11985855e-21 art_sys_5: -1.68210303e-06 - art_sys_6: -3.09458607e-21 - art_sys_7: -5.76031186e-22 + art_sys_6: -6.43399722e-21 + art_sys_7: -8.79637469e-22 art_sys_8: -3.57245924e-06 - art_sys_9: -7.16225684e-22 - art_sys_10: -2.09910267e-21 + art_sys_9: 2.03177343e-21 + art_sys_10: 4.32215255e-21 art_sys_11: 4.87461190e-07 - art_sys_12: -2.16967920e-20 - art_sys_13: 1.52692877e-18 - art_sys_14: -3.88367629e-20 + art_sys_12: 6.25004274e-22 + art_sys_13: -3.62583342e-18 + art_sys_14: 9.71722845e-20 art_sys_15: 4.61273005e-05 - art_sys_16: 2.01954379e-19 - art_sys_17: 3.68780111e-19 + art_sys_16: -8.07740293e-19 + art_sys_17: 1.28341579e-18 art_sys_18: -5.45545230e-05 - art_sys_19: -3.75815152e-18 - art_sys_20: 4.06884102e-18 - art_sys_21: -1.88384316e-04 - art_sys_22: 8.25344703e-19 - art_sys_23: -5.27375826e-18 - art_sys_24: 2.32715617e-04 - art_sys_25: 1.04184119e-13 - art_sys_26: 9.20912048e-15 - art_sys_27: 3.35762281e-14 - art_sys_28: 6.22001009e-18 - art_sys_29: 3.29336372e-15 - art_sys_30: -3.06359951e-15 - art_sys_31: 5.79975282e-16 - art_sys_32: -1.46577527e-16 - art_sys_33: 3.28848427e-16 - art_sys_34: 1.09299439e-03 - art_sys_35: -3.33103387e-14 - art_sys_36: -3.79353656e-03 - art_sys_37: -3.53075001e-13 - art_sys_38: 2.58967583e-16 - art_sys_39: -1.30481474e-11 - art_sys_40: 3.22960200e-03 - art_sys_41: -2.74194869e-12 - art_sys_42: -6.94009652e-17 - art_sys_43: -6.08666455e-17 - art_sys_44: -3.98978738e-17 - art_sys_45: -6.58826730e-18 - art_sys_46: -2.09772320e-13 - art_sys_47: -7.00611506e-03 - art_sys_48: -2.22819190e-10 - art_sys_49: -2.59402818e-14 - art_sys_50: -5.38262727e-16 - art_sys_51: -7.18310464e-15 - art_sys_52: -2.82495709e-15 - art_sys_53: 1.46088436e-15 - art_sys_54: 1.23932443e-15 - art_sys_55: -4.45644345e-12 - art_sys_56: -4.13789270e-14 - art_sys_57: 1.19462642e-02 - art_sys_58: 8.26459661e-17 - art_sys_59: -3.76441033e-17 - art_sys_60: -2.63255166e-10 - art_sys_61: -3.73958062e-13 - art_sys_62: -3.35190979e-03 - art_sys_63: 1.55445762e-14 - art_sys_64: -4.08386840e-10 - art_sys_65: -6.65800065e-18 - art_sys_66: -1.04170283e-18 - art_sys_67: 3.42395513e-12 - art_sys_68: -8.49508176e-14 - art_sys_69: 3.20176077e-14 - art_sys_70: -1.98192211e-12 - art_sys_71: -2.68786754e-04 - art_sys_72: 4.38057668e-13 - art_sys_73: -1.43467758e-15 - art_sys_74: 7.61510615e-16 - art_sys_75: 2.82368066e-16 - art_sys_76: 3.48105104e-16 - art_sys_77: -4.80107715e-05 - art_sys_78: 1.92545265e-14 - art_sys_79: -4.02189299e-17 - art_sys_80: 1.40831764e-18 - art_sys_81: -2.33167566e-17 - art_sys_82: -5.17044892e-18 - art_sys_83: -3.42868638e-15 - art_sys_84: 3.17005365e-18 - art_sys_85: -3.29949808e-18 - art_sys_86: 1.15806994e-14 - art_sys_87: 1.49259668e-05 - art_sys_88: -1.28578779e-15 - art_sys_89: 1.25876055e-17 - art_sys_90: -8.00700491e-12 - art_sys_91: 2.39884904e-15 - art_sys_92: -2.17936247e-11 - art_sys_93: 2.29581626e-12 - art_sys_94: 1.21432244e-12 - art_sys_95: -3.42930084e-14 - art_sys_96: 2.63630250e-16 - art_sys_97: -7.83626630e-12 - art_sys_98: 3.70124725e-13 - art_sys_99: 1.66445811e-12 - art_sys_100: 7.50137413e-15 - art_sys_101: 3.56088142e-15 - art_sys_102: 2.21279709e-14 - art_sys_103: 3.48806211e-15 - art_sys_104: 1.47440601e-12 - art_sys_105: -3.73804156e-14 - art_sys_106: 6.31779737e-08 - art_sys_107: -1.06415233e-15 - art_sys_108: 6.55965701e-17 - art_sys_109: 3.75941963e-16 - art_sys_110: -9.09708108e-13 - art_sys_111: -1.29873653e-12 - art_sys_112: -7.55265073e-14 - art_sys_113: 6.55774909e-18 - art_sys_114: 8.78595614e-13 - art_sys_115: -2.04819616e-14 - art_sys_116: -8.39375342e-09 - art_sys_117: 7.73082752e-13 - art_sys_118: 1.02549600e-13 - art_sys_119: -3.22262080e-13 - art_sys_120: -2.43717782e-09 - art_sys_121: -3.98481816e-14 - art_sys_122: 1.95247600e-13 - art_sys_123: -5.31041356e-13 - art_sys_124: 3.68475442e-14 - art_sys_125: -3.42057518e-10 - art_sys_126: -1.04350013e-13 - art_sys_127: -2.62190813e-13 - art_sys_128: -2.06607539e-13 - art_sys_129: -1.53135850e-13 - art_sys_130: -5.68927662e-13 - art_sys_131: 4.81584373e-11 - art_sys_132: 1.26515926e-13 - art_sys_133: -9.74706387e-13 - art_sys_134: -7.28995482e-16 - art_sys_135: -4.35774374e-14 - art_sys_136: -9.10573095e-14 - art_sys_137: 1.15182100e-16 - art_sys_138: -8.89386663e-15 - art_sys_139: -2.15670438e-14 - art_sys_140: -8.50041220e-14 - art_sys_141: -9.07731742e-13 - art_sys_142: 2.48793195e-14 - art_sys_143: -3.13117261e-17 - art_sys_144: 1.20782668e-18 - art_sys_145: 3.56295284e-16 - art_sys_146: 0.0 - art_sys_147: -3.12133464e-15 - art_sys_148: 1.47612700e-14 - art_sys_149: 1.47612700e-14 - art_sys_150: 6.10325706e-15 - art_sys_151: 6.10325706e-15 - art_sys_152: -1.93347558e-15 - art_sys_153: -7.52241768e-16 - art_sys_154: 2.12822413e-18 - art_sys_155: -2.23471292e-28 - art_sys_156: 2.10105268e-30 - art_sys_157: 8.90240321e-31 + art_sys_19: -2.36217985e-18 + art_sys_20: -9.99910393e-18 + art_sys_21: 1.88384316e-04 + art_sys_22: 4.66113434e-18 + art_sys_23: -7.15349175e-18 + art_sys_24: -2.32715617e-04 + art_sys_25: 3.21988683e-18 + art_sys_26: -5.70917255e-18 + art_sys_27: 1.09299439e-03 + art_sys_28: 2.76922158e-14 + art_sys_29: 3.79353656e-03 + art_sys_30: -1.79973323e-17 + art_sys_31: -1.20769501e-14 + art_sys_32: 3.22960200e-03 + art_sys_33: -8.11604283e-17 + art_sys_34: 1.27309705e-13 + art_sys_35: -5.54957967e-15 + art_sys_36: 4.32814216e-14 + art_sys_37: 4.45903466e-14 + art_sys_38: -3.95968981e-15 + art_sys_39: -2.85224458e-15 + art_sys_40: 7.57986718e-16 + art_sys_41: -1.22714630e-15 + art_sys_42: -2.66922375e-16 + art_sys_43: -4.97060745e-17 + art_sys_44: 3.26883517e-17 + art_sys_45: 1.02601984e-17 + art_sys_46: 2.87448522e-17 + art_sys_47: -7.00611504e-03 + art_sys_48: 2.89228731e-10 + art_sys_49: -1.19462642e-02 + art_sys_50: -1.36565784e-18 + art_sys_51: 1.58360839e-18 + art_sys_52: -9.00981549e-12 + art_sys_53: -7.79705401e-12 + art_sys_54: -3.35190987e-03 + art_sys_55: -3.50464886e-13 + art_sys_56: 3.58804730e-12 + art_sys_57: -3.68432386e-21 + art_sys_58: 9.41253890e-20 + art_sys_59: -3.95318530e-11 + art_sys_60: -2.68786649e-04 + art_sys_61: 8.16142947e-15 + art_sys_62: -1.42473276e-13 + art_sys_63: 4.80107678e-05 + art_sys_64: 1.31396234e-15 + art_sys_65: -8.91521324e-16 + art_sys_66: -1.66645430e-16 + art_sys_67: -2.76157637e-17 + art_sys_68: -1.79103426e-17 + art_sys_69: -5.30516214e-18 + art_sys_70: -4.42733013e-19 + art_sys_71: 1.34861279e-18 + art_sys_72: 9.38448217e-19 + art_sys_73: -4.66029529e-19 + art_sys_74: 1.81859624e-15 + art_sys_75: 2.22650876e-19 + art_sys_76: 1.76505136e-16 + art_sys_77: 5.00441380e-16 + art_sys_78: 1.32577727e-17 + art_sys_79: 1.37648947e-18 + art_sys_80: -4.95969372e-19 + art_sys_81: -2.05930821e-14 + art_sys_82: 1.49260123e-05 + art_sys_83: 6.01555005e-19 + art_sys_84: 2.50984895e-19 + art_sys_85: -3.03420862e-19 + art_sys_86: -5.11474933e-20 + art_sys_87: -1.42763168e-20 + art_sys_88: 1.57614547e-15 + art_sys_89: 5.00276927e-22 + art_sys_90: 5.95289565e-19 + art_sys_91: 2.45763284e-11 + art_sys_92: 9.66129692e-21 + art_sys_93: -5.22373823e-21 + art_sys_94: -5.13657194e-16 + art_sys_95: 3.56802679e-18 + art_sys_96: -2.85541886e-11 + art_sys_97: -5.12192436e-14 + art_sys_98: 1.67300385e-18 + art_sys_99: -2.21455845e-12 + art_sys_100: 9.83175694e-19 + art_sys_101: 2.35924606e-12 + art_sys_102: 7.83682337e-15 + art_sys_103: 6.51473373e-15 + art_sys_104: -1.41067034e-14 + art_sys_105: -2.07932032e-15 + art_sys_106: -1.12002987e-13 + art_sys_107: -1.52937072e-14 + art_sys_108: -3.37975637e-15 + art_sys_109: 1.31613783e-16 + art_sys_110: 7.87026585e-14 + art_sys_111: -2.45836393e-14 + art_sys_112: 6.31759754e-08 + art_sys_113: -9.79601293e-14 + art_sys_114: 2.54400447e-17 + art_sys_115: -5.35196209e-16 + art_sys_116: 1.17002155e-14 + art_sys_117: 1.31859271e-17 + art_sys_118: 6.02766363e-15 + art_sys_119: 2.02648588e-14 + art_sys_120: 8.39427649e-09 + art_sys_121: -1.11265707e-17 + art_sys_122: -2.21158213e-14 + art_sys_123: -6.13612690e-15 + art_sys_124: -8.18581134e-15 + art_sys_125: 1.88032308e-17 + art_sys_126: 2.43703781e-09 + art_sys_127: 7.31817402e-15 + art_sys_128: 2.04211869e-14 + art_sys_129: 4.79122938e-17 + art_sys_130: -2.30529794e-13 + art_sys_131: -6.66965554e-16 + art_sys_132: -1.55296715e-13 + art_sys_133: 5.12306198e-13 + art_sys_134: 3.42114194e-10 + art_sys_135: 9.36236394e-14 + art_sys_136: 1.96699996e-15 + art_sys_137: -7.93561140e-14 + art_sys_138: 4.27400598e-15 + art_sys_139: 1.20063921e-12 + art_sys_140: -4.18843829e-16 + art_sys_141: 4.81346127e-11 + art_sys_142: -1.35610704e-15 + art_sys_143: -8.49478381e-14 + art_sys_144: 2.64744950e-15 + art_sys_145: 5.86690836e-14 + art_sys_146: 6.30209444e-15 + art_sys_147: -4.27685767e-17 + art_sys_148: -2.10427192e-17 + art_sys_149: 1.34363091e-17 + art_sys_150: 2.97375362e-14 + art_sys_151: 9.55916048e-13 + art_sys_152: 1.61367848e-16 + art_sys_153: 8.00042386e-14 + art_sys_154: 2.81561357e-15 + art_sys_155: -3.51113924e-16 + art_sys_156: 0.0 + art_sys_157: 1.79840205e-15 art_sys_158: 0.0 - art_sys_159: -9.31290640e-16 - art_sys_160: 2.68607435e-16 - art_sys_161: 9.25309237e-16 - art_sys_162: 2.56982156e-17 - art_sys_163: 8.59651025e-15 - art_sys_164: 1.35445510e-15 - art_sys_165: -8.51891563e-18 - art_sys_166: -7.91930140e-24 - art_sys_167: -7.56423642e-24 - art_sys_168: 2.68407028e-24 - art_sys_169: -1.71798574e-25 - art_sys_170: 2.52943340e-25 - art_sys_171: -1.81200460e-25 - art_sys_172: -8.94586578e-26 - art_sys_173: 2.88359404e-26 - art_sys_174: 2.29325301e-26 - art_sys_175: -1.17330264e-28 - art_sys_176: -3.04935354e-28 - art_sys_177: -4.39143512e-27 - art_sys_178: 1.60306768e-27 - art_sys_179: -9.39039089e-28 - art_sys_180: 1.26072896e-27 - art_sys_181: 3.25433455e-30 - art_sys_182: -3.21344691e-28 - art_sys_183: -4.50039271e-30 - art_sys_184: 8.36540439e-32 - art_sys_185: 4.19644417e-32 + art_sys_159: 1.37683210e-14 + art_sys_160: -6.90767329e-18 + art_sys_161: -1.88786341e-15 + art_sys_162: -1.88786341e-15 + art_sys_163: -1.66035315e-15 + art_sys_164: -1.66035315e-15 + art_sys_165: 1.92005082e-29 + art_sys_166: -6.38715049e-30 + art_sys_167: -0.0 + art_sys_168: 1.27057756e-24 + art_sys_169: 1.19849392e-24 + art_sys_170: 4.90834788e-25 + art_sys_171: 3.38187648e-25 + art_sys_172: -1.32373889e-25 + art_sys_173: -8.39998453e-27 + art_sys_174: -9.93606260e-27 + art_sys_175: -6.04477827e-27 + art_sys_176: 2.57070867e-27 + art_sys_177: -1.13728222e-27 + art_sys_178: -1.65640680e-27 + art_sys_179: 1.13455817e-28 + art_sys_180: 3.61893423e-28 + art_sys_181: -5.40271230e-28 + art_sys_182: 1.68942297e-28 + art_sys_183: -1.46729463e-30 + art_sys_184: -1.70214536e-30 + art_sys_185: 5.09840349e-31 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -59603,191 +59603,191 @@ bins: RelativeStatFSR-: -5.81371463e-03 luminosity_uncertainty: 4.16457600e-02 uncorrelated_uncertainty: 1.60176000e-02 -- art_sys_1: 2.95132304e-24 - art_sys_2: -1.63498664e-22 +- art_sys_1: -1.80580200e-25 + art_sys_2: -2.35343693e-22 art_sys_3: -1.23051052e-08 - art_sys_4: -7.66267676e-23 + art_sys_4: 2.34131616e-21 art_sys_5: -1.36089256e-07 - art_sys_6: -9.96732296e-23 - art_sys_7: 2.09034006e-22 + art_sys_6: -2.78206015e-22 + art_sys_7: -8.77562840e-22 art_sys_8: -2.00926068e-07 - art_sys_9: -2.62307900e-22 - art_sys_10: 2.27553118e-22 + art_sys_9: -4.35621963e-23 + art_sys_10: 7.45623049e-22 art_sys_11: 4.44618585e-07 - art_sys_12: 3.74364254e-21 - art_sys_13: -1.47304578e-19 - art_sys_14: 8.76809523e-21 + art_sys_12: -7.07183988e-22 + art_sys_13: 3.63471657e-19 + art_sys_14: -1.93762952e-20 art_sys_15: -5.20505729e-06 - art_sys_16: -7.72702744e-20 - art_sys_17: -1.77703332e-19 + art_sys_16: 9.15895553e-20 + art_sys_17: -2.80877840e-19 art_sys_18: -2.71256521e-05 - art_sys_19: -1.15162492e-18 - art_sys_20: -4.76857562e-19 - art_sys_21: 4.81442150e-05 - art_sys_22: -1.04532644e-19 - art_sys_23: -3.01273591e-19 - art_sys_24: -2.57337836e-05 - art_sys_25: -2.30401707e-14 - art_sys_26: -6.92623419e-14 - art_sys_27: -1.17557758e-14 - art_sys_28: 2.45485974e-19 - art_sys_29: 5.86836205e-16 - art_sys_30: 6.68117810e-15 - art_sys_31: -1.95166065e-16 - art_sys_32: -4.96777182e-16 - art_sys_33: -2.07802210e-16 - art_sys_34: 1.95077404e-04 - art_sys_35: 2.32106962e-15 - art_sys_36: 2.38592254e-04 - art_sys_37: 2.22447128e-14 - art_sys_38: -5.75724357e-16 - art_sys_39: -2.29477438e-12 - art_sys_40: 5.67455656e-04 - art_sys_41: -4.81775528e-13 - art_sys_42: -6.78787460e-17 - art_sys_43: 3.67316022e-17 - art_sys_44: -5.45234285e-17 - art_sys_45: 2.13857326e-17 - art_sys_46: 4.48287046e-14 - art_sys_47: 2.36610259e-03 - art_sys_48: -1.21693762e-10 - art_sys_49: -2.50826633e-14 - art_sys_50: 1.51749742e-14 - art_sys_51: 3.92169056e-15 - art_sys_52: 3.58704118e-15 - art_sys_53: 9.81797123e-16 - art_sys_54: -1.41109189e-15 - art_sys_55: -2.41751787e-12 - art_sys_56: 9.10136072e-14 - art_sys_57: 6.48060856e-03 - art_sys_58: -2.44491164e-16 - art_sys_59: 4.90862440e-17 - art_sys_60: 5.78923434e-10 - art_sys_61: 3.46435864e-13 - art_sys_62: 7.37143123e-03 - art_sys_63: -1.12039948e-14 - art_sys_64: 8.98075896e-10 - art_sys_65: 3.41845737e-18 - art_sys_66: 4.10096781e-18 - art_sys_67: 1.99328247e-12 - art_sys_68: 2.02734623e-13 - art_sys_69: -7.67646429e-14 - art_sys_70: -1.73487821e-12 - art_sys_71: 1.93722820e-04 - art_sys_72: -5.16032178e-13 - art_sys_73: 4.74306231e-15 - art_sys_74: -2.13336377e-15 - art_sys_75: -7.77405543e-16 - art_sys_76: -1.03157668e-15 - art_sys_77: 1.42306017e-04 - art_sys_78: -5.70704830e-14 - art_sys_79: 9.05081564e-17 - art_sys_80: -3.25594548e-18 - art_sys_81: 5.32878463e-17 - art_sys_82: 1.19396305e-17 - art_sys_83: 9.29987577e-15 - art_sys_84: -7.15258495e-18 - art_sys_85: 7.50517740e-18 - art_sys_86: -5.23975589e-14 - art_sys_87: -3.40626561e-05 - art_sys_88: 4.82805785e-15 - art_sys_89: -4.57934263e-17 - art_sys_90: 1.75230863e-11 - art_sys_91: -6.53613233e-15 - art_sys_92: 4.97370290e-11 - art_sys_93: -5.12345642e-12 - art_sys_94: -2.77243501e-12 - art_sys_95: 9.35019574e-14 - art_sys_96: -1.01597084e-15 - art_sys_97: 2.13562291e-11 - art_sys_98: -8.44990189e-13 - art_sys_99: -3.65643777e-12 - art_sys_100: -1.98855808e-14 - art_sys_101: -8.79064734e-15 - art_sys_102: -5.08799565e-14 - art_sys_103: -1.13920460e-14 - art_sys_104: -3.22338871e-12 - art_sys_105: 1.04138251e-13 - art_sys_106: -1.72184579e-07 - art_sys_107: 4.04070179e-15 - art_sys_108: -2.49115001e-16 - art_sys_109: -1.43176219e-15 - art_sys_110: 4.18155143e-12 - art_sys_111: 3.53950186e-12 - art_sys_112: 2.28278772e-13 - art_sys_113: -2.52398279e-17 - art_sys_114: -2.39561006e-12 - art_sys_115: 7.89646762e-14 - art_sys_116: 3.78317259e-08 - art_sys_117: -2.05833629e-12 - art_sys_118: -3.95470462e-13 - art_sys_119: 9.94729251e-13 - art_sys_120: 7.93994237e-09 - art_sys_121: 1.51068662e-13 - art_sys_122: -1.03439501e-12 - art_sys_123: 1.80782128e-12 - art_sys_124: -1.39864691e-13 - art_sys_125: 1.31896406e-09 - art_sys_126: 3.96223197e-13 - art_sys_127: 9.77286687e-13 - art_sys_128: 7.84758228e-13 - art_sys_129: 4.47333066e-13 - art_sys_130: 2.16073813e-12 - art_sys_131: -1.82869835e-10 - art_sys_132: -4.46808769e-13 - art_sys_133: 3.70162594e-12 - art_sys_134: 2.73308404e-15 - art_sys_135: 1.50683552e-13 - art_sys_136: 3.46091015e-13 - art_sys_137: -4.23371393e-16 - art_sys_138: 2.23857742e-14 - art_sys_139: 8.55685815e-14 - art_sys_140: 3.24357954e-13 - art_sys_141: 3.48181408e-12 - art_sys_142: -9.57654028e-14 - art_sys_143: 1.14358250e-16 - art_sys_144: -1.54492036e-18 - art_sys_145: -1.33702581e-15 - art_sys_146: -0.0 - art_sys_147: 1.16677593e-14 - art_sys_148: -5.48947407e-14 - art_sys_149: -5.48947407e-14 - art_sys_150: -2.29391232e-14 - art_sys_151: -2.29391232e-14 - art_sys_152: 6.06348046e-15 - art_sys_153: 2.90738310e-15 - art_sys_154: -7.91752661e-18 - art_sys_155: 1.17038998e-27 - art_sys_156: -7.87064303e-30 - art_sys_157: -3.33522139e-30 + art_sys_19: -4.62208249e-19 + art_sys_20: 1.22547486e-18 + art_sys_21: -4.81442150e-05 + art_sys_22: 6.56814908e-19 + art_sys_23: 9.50759468e-19 + art_sys_24: 2.57337836e-05 + art_sys_25: -1.07744116e-19 + art_sys_26: -2.99035048e-19 + art_sys_27: 1.95077404e-04 + art_sys_28: -1.24002030e-15 + art_sys_29: -2.38592254e-04 + art_sys_30: 2.16793046e-18 + art_sys_31: -2.92854305e-15 + art_sys_32: 5.67455656e-04 + art_sys_33: -3.40429086e-17 + art_sys_34: -4.29849495e-14 + art_sys_35: 1.58250891e-14 + art_sys_36: -7.94350739e-14 + art_sys_37: 1.91492455e-14 + art_sys_38: -1.84906392e-14 + art_sys_39: 2.46366707e-15 + art_sys_40: 2.21745034e-17 + art_sys_41: 2.63387626e-16 + art_sys_42: -9.44558249e-16 + art_sys_43: -3.87728365e-16 + art_sys_44: 2.16732740e-17 + art_sys_45: -4.74570231e-17 + art_sys_46: -5.79838943e-17 + art_sys_47: 2.36610260e-03 + art_sys_48: 1.48879789e-10 + art_sys_49: -6.48060855e-03 + art_sys_50: 6.95635726e-19 + art_sys_51: -2.36118227e-18 + art_sys_52: -3.97605986e-12 + art_sys_53: 1.85841114e-11 + art_sys_54: 7.37143139e-03 + art_sys_55: 7.82653353e-13 + art_sys_56: 1.96478763e-12 + art_sys_57: 3.61238969e-19 + art_sys_58: -3.75234856e-19 + art_sys_59: 2.57430485e-11 + art_sys_60: 1.93722717e-04 + art_sys_61: -1.86252324e-14 + art_sys_62: -3.54029802e-13 + art_sys_63: -1.42306012e-04 + art_sys_64: -7.88531361e-15 + art_sys_65: 1.56306552e-15 + art_sys_66: 6.50721336e-17 + art_sys_67: 6.67750698e-17 + art_sys_68: 4.20745375e-17 + art_sys_69: 1.17023005e-17 + art_sys_70: 9.10777593e-19 + art_sys_71: -3.17586069e-18 + art_sys_72: -2.14204434e-18 + art_sys_73: 1.08537665e-18 + art_sys_74: -4.15021252e-15 + art_sys_75: -5.33533714e-19 + art_sys_76: -4.07923852e-16 + art_sys_77: -1.14364682e-15 + art_sys_78: -2.81988646e-17 + art_sys_79: -3.18280575e-18 + art_sys_80: 1.27142183e-18 + art_sys_81: 4.69955120e-14 + art_sys_82: -3.40627597e-05 + art_sys_83: -1.60928696e-18 + art_sys_84: -8.16163589e-19 + art_sys_85: 7.80321561e-19 + art_sys_86: 1.52921185e-19 + art_sys_87: 7.01729266e-20 + art_sys_88: -4.29539521e-15 + art_sys_89: -1.08839291e-21 + art_sys_90: 5.21726005e-17 + art_sys_91: -5.94231909e-11 + art_sys_92: -2.66392534e-20 + art_sys_93: 1.48823268e-20 + art_sys_94: 1.67369161e-15 + art_sys_95: -8.42953308e-18 + art_sys_96: 6.48411856e-11 + art_sys_97: 8.75685093e-14 + art_sys_98: -3.74037634e-18 + art_sys_99: 5.05816756e-12 + art_sys_100: 1.06468010e-17 + art_sys_101: -5.38610590e-12 + art_sys_102: -2.20418998e-14 + art_sys_103: -1.45325335e-14 + art_sys_104: 3.27519689e-14 + art_sys_105: 7.89597068e-15 + art_sys_106: 2.56799730e-13 + art_sys_107: 6.89596921e-14 + art_sys_108: 1.28340135e-14 + art_sys_109: -4.99640938e-16 + art_sys_110: -8.38259515e-16 + art_sys_111: 7.69101855e-14 + art_sys_112: -1.72179142e-07 + art_sys_113: 2.16837269e-13 + art_sys_114: -9.66338054e-17 + art_sys_115: 1.20467314e-15 + art_sys_116: -4.08679150e-14 + art_sys_117: -4.99289267e-17 + art_sys_118: -1.70683859e-14 + art_sys_119: -5.95666485e-14 + art_sys_120: -3.78341896e-08 + art_sys_121: 4.23368909e-17 + art_sys_122: 6.34327850e-14 + art_sys_123: 2.37020914e-14 + art_sys_124: 1.91196964e-14 + art_sys_125: -7.23507588e-17 + art_sys_126: -7.93947912e-09 + art_sys_127: -2.75358100e-14 + art_sys_128: -9.36774340e-14 + art_sys_129: -1.83350295e-16 + art_sys_130: 8.75391307e-13 + art_sys_131: 2.55248887e-15 + art_sys_132: 7.04326372e-13 + art_sys_133: -1.94510032e-12 + art_sys_134: -1.31918111e-09 + art_sys_135: -3.18644647e-13 + art_sys_136: -7.53191009e-15 + art_sys_137: 3.01390921e-13 + art_sys_138: -1.61142647e-14 + art_sys_139: -4.55923513e-12 + art_sys_140: 1.59153934e-15 + art_sys_141: -1.82780698e-10 + art_sys_142: 8.00187469e-15 + art_sys_143: 3.22652241e-13 + art_sys_144: -9.93381865e-15 + art_sys_145: -2.27354023e-13 + art_sys_146: -2.38514255e-14 + art_sys_147: 1.65432776e-16 + art_sys_148: 8.27411388e-17 + art_sys_149: -8.87653535e-16 + art_sys_150: -1.12830071e-13 + art_sys_151: -3.66332419e-12 + art_sys_152: -6.11016499e-16 + art_sys_153: -3.04889931e-13 + art_sys_154: -7.40865815e-15 + art_sys_155: 1.36087435e-15 + art_sys_156: -0.0 + art_sys_157: -6.83486002e-15 art_sys_158: -0.0 - art_sys_159: 3.57463156e-15 - art_sys_160: -1.03087420e-15 - art_sys_161: -3.54875666e-15 - art_sys_162: -9.85067544e-17 - art_sys_163: -3.28709255e-14 - art_sys_164: -5.18812577e-15 - art_sys_165: 3.20307994e-17 - art_sys_166: 3.03061033e-23 - art_sys_167: 2.91142284e-23 - art_sys_168: -1.02973527e-23 - art_sys_169: 3.89383700e-25 - art_sys_170: -8.42798622e-25 - art_sys_171: 6.72082026e-25 - art_sys_172: 3.40249421e-25 - art_sys_173: -1.06998684e-25 - art_sys_174: -8.36342681e-26 - art_sys_175: 4.39582347e-28 - art_sys_176: 9.39738402e-28 - art_sys_177: 1.63370631e-26 - art_sys_178: -5.89080257e-27 - art_sys_179: 3.45719597e-27 - art_sys_180: -4.63319362e-27 - art_sys_181: -1.23988201e-29 - art_sys_182: 1.23558465e-27 - art_sys_183: 1.71299990e-29 - art_sys_184: -3.08632535e-31 - art_sys_185: -1.54301765e-31 + art_sys_159: -5.28615803e-14 + art_sys_160: 1.00596294e-16 + art_sys_161: 7.32526994e-15 + art_sys_162: 7.32526994e-15 + art_sys_163: 6.43828375e-15 + art_sys_164: 6.43828375e-15 + art_sys_165: -7.44554679e-29 + art_sys_166: 2.47725984e-29 + art_sys_167: 0.0 + art_sys_168: -4.82793952e-24 + art_sys_169: -4.59520692e-24 + art_sys_170: -2.57791508e-24 + art_sys_171: -1.31065007e-24 + art_sys_172: 5.06511282e-25 + art_sys_173: 2.89281872e-26 + art_sys_174: 3.72144687e-26 + art_sys_175: 2.24955008e-26 + art_sys_176: -9.54398347e-27 + art_sys_177: 4.26689702e-27 + art_sys_178: 6.15985615e-27 + art_sys_179: -4.41148968e-28 + art_sys_180: -1.39324582e-27 + art_sys_181: 2.01831373e-27 + art_sys_182: -6.48386469e-28 + art_sys_183: 5.63636223e-30 + art_sys_184: 6.43259042e-30 + art_sys_185: -1.94701191e-30 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -59894,191 +59894,191 @@ bins: RelativeStatFSR-: -2.83230184e-03 luminosity_uncertainty: 1.90702200e-02 uncorrelated_uncertainty: 7.33470000e-03 -- art_sys_1: -7.82879386e-25 - art_sys_2: -1.34392134e-23 +- art_sys_1: -8.54484822e-25 + art_sys_2: -2.00140007e-23 art_sys_3: 1.95956050e-10 - art_sys_4: -5.74441974e-24 + art_sys_4: 2.13881241e-22 art_sys_5: -1.17943326e-08 - art_sys_6: -1.19931464e-23 - art_sys_7: 1.70298678e-23 + art_sys_6: -2.38013979e-23 + art_sys_7: -8.06616328e-23 art_sys_8: -1.71615388e-08 - art_sys_9: -1.91041951e-23 - art_sys_10: 4.88699827e-24 + art_sys_9: -7.46084021e-23 + art_sys_10: 1.61810310e-23 art_sys_11: 4.06227489e-08 - art_sys_12: 1.11269816e-21 - art_sys_13: -4.37154165e-20 - art_sys_14: 7.51808722e-22 + art_sys_12: -2.87162507e-22 + art_sys_13: 1.05707512e-19 + art_sys_14: -2.77222942e-21 art_sys_15: -1.42315624e-06 - art_sys_16: -1.47059514e-20 - art_sys_17: -3.28408480e-20 + art_sys_16: 2.81471327e-20 + art_sys_17: -6.34035642e-20 art_sys_18: -3.24319649e-06 - art_sys_19: -1.17301773e-19 - art_sys_20: -1.43885477e-19 - art_sys_21: 1.03905634e-05 - art_sys_22: -2.92969777e-20 - art_sys_23: 9.12261895e-20 - art_sys_24: -8.19645084e-06 - art_sys_25: -2.46772998e-14 - art_sys_26: -2.00402606e-14 - art_sys_27: 3.48005769e-14 - art_sys_28: -1.66036693e-19 - art_sys_29: -8.07144106e-17 - art_sys_30: -8.24389435e-16 - art_sys_31: 2.85696684e-15 - art_sys_32: -5.10510528e-17 - art_sys_33: -1.25095414e-16 - art_sys_34: -2.67748399e-05 - art_sys_35: 1.40060611e-15 - art_sys_36: 1.54926274e-04 - art_sys_37: 1.44199587e-14 - art_sys_38: 4.41371451e-17 - art_sys_39: 5.46221836e-13 - art_sys_40: -1.35185554e-04 - art_sys_41: 1.14773112e-13 - art_sys_42: 3.40547004e-18 - art_sys_43: -5.06867108e-17 - art_sys_44: -7.00246412e-17 - art_sys_45: -6.85760391e-18 - art_sys_46: 1.26931389e-14 - art_sys_47: 4.16630639e-04 - art_sys_48: 1.22273153e-11 - art_sys_49: 4.96517987e-14 - art_sys_50: 2.24617176e-14 - art_sys_51: -7.48978270e-15 - art_sys_52: -5.24454818e-15 - art_sys_53: -2.42507616e-16 - art_sys_54: -7.96091907e-16 - art_sys_55: 2.44634071e-13 - art_sys_56: 1.19357303e-14 - art_sys_57: -6.55785238e-04 - art_sys_58: -5.57047801e-16 - art_sys_59: -2.23486573e-16 - art_sys_60: 7.60546951e-11 - art_sys_61: 8.67099477e-15 - art_sys_62: 9.68410274e-04 - art_sys_63: 1.68660642e-13 - art_sys_64: 1.17713411e-10 - art_sys_65: -7.13412996e-17 - art_sys_66: -1.00042042e-17 - art_sys_67: -1.85773637e-13 - art_sys_68: -9.93805943e-13 - art_sys_69: 3.72145972e-13 - art_sys_70: -2.83179887e-11 - art_sys_71: -2.91637475e-03 - art_sys_72: -1.87125893e-11 - art_sys_73: -8.55801126e-15 - art_sys_74: 6.68346989e-15 - art_sys_75: 2.57670507e-15 - art_sys_76: 2.66477815e-15 - art_sys_77: -3.67292436e-04 - art_sys_78: 1.47306427e-13 - art_sys_79: -5.09937641e-16 - art_sys_80: 1.59250364e-17 - art_sys_81: -2.89172878e-16 - art_sys_82: -6.45399879e-17 - art_sys_83: -3.33294195e-14 - art_sys_84: 3.85766108e-17 - art_sys_85: -4.13182798e-17 - art_sys_86: 1.84629841e-13 - art_sys_87: 1.85566430e-04 - art_sys_88: -1.97847707e-14 - art_sys_89: 1.90576195e-16 - art_sys_90: -9.64678234e-11 - art_sys_91: 2.31346583e-14 - art_sys_92: -2.70738288e-10 - art_sys_93: 1.06931924e-11 - art_sys_94: 1.50855317e-11 - art_sys_95: -3.30633301e-13 - art_sys_96: 4.00225188e-15 - art_sys_97: -7.55235442e-11 - art_sys_98: 4.59876672e-12 - art_sys_99: -1.05923380e-12 - art_sys_100: 7.04685726e-14 - art_sys_101: 4.01855772e-14 - art_sys_102: 2.71340996e-13 - art_sys_103: 4.12361134e-14 - art_sys_104: -2.77755314e-13 - art_sys_105: -3.49180735e-13 - art_sys_106: 6.08899708e-07 - art_sys_107: -1.65549827e-14 - art_sys_108: 1.02238219e-15 - art_sys_109: 6.04994379e-15 - art_sys_110: -1.45502385e-11 - art_sys_111: -1.25173223e-11 - art_sys_112: -1.13055237e-12 - art_sys_113: 1.21300281e-16 - art_sys_114: 8.47292914e-12 - art_sys_115: -3.10654489e-13 - art_sys_116: -1.33712067e-07 - art_sys_117: 7.26985436e-12 - art_sys_118: 1.55499669e-12 - art_sys_119: -3.53750724e-12 - art_sys_120: -3.66347916e-08 - art_sys_121: -6.11119092e-13 - art_sys_122: 3.29502390e-12 - art_sys_123: -8.03748294e-12 - art_sys_124: 5.71709717e-13 - art_sys_125: -5.18799182e-09 - art_sys_126: -1.62286274e-12 - art_sys_127: -3.96280350e-12 - art_sys_128: -3.22263185e-12 - art_sys_129: -2.27759491e-12 - art_sys_130: -8.86831502e-12 - art_sys_131: 7.49168228e-10 - art_sys_132: 1.90000667e-12 - art_sys_133: -1.51862652e-11 - art_sys_134: -1.15547622e-14 - art_sys_135: -6.61302612e-13 - art_sys_136: -1.44205780e-12 - art_sys_137: 1.84041199e-15 - art_sys_138: 2.45004723e-14 - art_sys_139: -3.54126709e-13 - art_sys_140: -1.35453509e-12 - art_sys_141: -1.62610633e-11 - art_sys_142: 4.16327804e-13 - art_sys_143: -4.94504980e-16 - art_sys_144: -1.47574434e-17 - art_sys_145: 6.05746227e-15 - art_sys_146: 0.0 - art_sys_147: -5.14995563e-14 - art_sys_148: 2.21693640e-13 - art_sys_149: 2.21693640e-13 - art_sys_150: 1.15237649e-13 - art_sys_151: 1.15237649e-13 - art_sys_152: -3.08982757e-14 - art_sys_153: -1.53300020e-14 - art_sys_154: 3.59264973e-17 - art_sys_155: -7.35751135e-27 - art_sys_156: 3.19362883e-29 - art_sys_157: 1.37209421e-29 + art_sys_19: -3.27562649e-20 + art_sys_20: 3.60921157e-19 + art_sys_21: -1.03905634e-05 + art_sys_22: -2.82288305e-20 + art_sys_23: 2.69618992e-19 + art_sys_24: 8.19645084e-06 + art_sys_25: -1.15022250e-19 + art_sys_26: 1.62027403e-19 + art_sys_27: -2.67748399e-05 + art_sys_28: -1.11527705e-15 + art_sys_29: -1.54926274e-04 + art_sys_30: 8.02595123e-19 + art_sys_31: 5.24818683e-16 + art_sys_32: -1.35185554e-04 + art_sys_33: 3.38393341e-18 + art_sys_34: -7.57047251e-15 + art_sys_35: 2.17064286e-16 + art_sys_36: -2.01612299e-14 + art_sys_37: 1.15639728e-14 + art_sys_38: -2.45002799e-14 + art_sys_39: -6.62108395e-15 + art_sys_40: 1.26010431e-15 + art_sys_41: -1.25255155e-15 + art_sys_42: 7.40012368e-16 + art_sys_43: -3.28678087e-16 + art_sys_44: 6.45412153e-17 + art_sys_45: 4.13447347e-17 + art_sys_46: -3.87989971e-18 + art_sys_47: 4.16630638e-04 + art_sys_48: -1.59187581e-11 + art_sys_49: 6.55785237e-04 + art_sys_50: -1.97462307e-17 + art_sys_51: 7.87504068e-18 + art_sys_52: 5.01173554e-13 + art_sys_53: 2.37572588e-12 + art_sys_54: 9.68410294e-04 + art_sys_55: 1.85325316e-13 + art_sys_56: -1.97151351e-13 + art_sys_57: 8.44107477e-19 + art_sys_58: 1.19999504e-18 + art_sys_59: -4.32824644e-10 + art_sys_60: -2.91637366e-03 + art_sys_61: 1.01467054e-13 + art_sys_62: -1.59022759e-14 + art_sys_63: 3.67292411e-04 + art_sys_64: 4.86374816e-16 + art_sys_65: -6.94530638e-15 + art_sys_66: -3.80421883e-15 + art_sys_67: -1.98929905e-16 + art_sys_68: -2.42271879e-16 + art_sys_69: -5.81032934e-17 + art_sys_70: -2.21367930e-18 + art_sys_71: 1.74942047e-17 + art_sys_72: 1.15444247e-17 + art_sys_73: -5.81894115e-18 + art_sys_74: 2.26096964e-14 + art_sys_75: 2.82431937e-18 + art_sys_76: 2.14734141e-15 + art_sys_77: 6.20394472e-15 + art_sys_78: 1.74316087e-16 + art_sys_79: 1.67555835e-17 + art_sys_80: -2.02991650e-18 + art_sys_81: -2.56023406e-13 + art_sys_82: 1.85566997e-04 + art_sys_83: 5.25498002e-18 + art_sys_84: 2.98197763e-18 + art_sys_85: -2.80997559e-18 + art_sys_86: -5.69118495e-19 + art_sys_87: -5.15990158e-20 + art_sys_88: 1.51892131e-14 + art_sys_89: 4.23821972e-21 + art_sys_90: -1.84220175e-16 + art_sys_91: 2.49908775e-10 + art_sys_92: 9.19393023e-20 + art_sys_93: -5.22502806e-20 + art_sys_94: -7.72369453e-15 + art_sys_95: 4.50986838e-17 + art_sys_96: -3.60503962e-10 + art_sys_97: 3.86999997e-12 + art_sys_98: 2.08947819e-17 + art_sys_99: -2.74599286e-11 + art_sys_100: -1.95399659e-17 + art_sys_101: 2.93002347e-11 + art_sys_102: 7.79032613e-14 + art_sys_103: -3.58730605e-15 + art_sys_104: -1.72421942e-13 + art_sys_105: -3.23449955e-14 + art_sys_106: -1.38550713e-12 + art_sys_107: -2.43597315e-13 + art_sys_108: -5.25756774e-14 + art_sys_109: 2.03793379e-15 + art_sys_110: 6.26461315e-15 + art_sys_111: -1.79192686e-13 + art_sys_112: 6.08880482e-07 + art_sys_113: 3.80398669e-14 + art_sys_114: 3.97275993e-16 + art_sys_115: -6.14760071e-15 + art_sys_116: 1.76854683e-13 + art_sys_117: 1.96432106e-16 + art_sys_118: 5.67151283e-14 + art_sys_119: 3.03153274e-13 + art_sys_120: 1.33720482e-07 + art_sys_121: -1.77030336e-16 + art_sys_122: -2.22577004e-13 + art_sys_123: -9.30611012e-14 + art_sys_124: -6.60049495e-14 + art_sys_125: 3.44194033e-16 + art_sys_126: 3.66326796e-08 + art_sys_127: 9.72733071e-14 + art_sys_128: 3.23480305e-13 + art_sys_129: 8.43327785e-16 + art_sys_130: -3.58813135e-12 + art_sys_131: -1.17418375e-14 + art_sys_132: -2.47728379e-12 + art_sys_133: 7.96076282e-12 + art_sys_134: 5.18885450e-09 + art_sys_135: 1.41635187e-12 + art_sys_136: 3.47369995e-14 + art_sys_137: -1.24446753e-12 + art_sys_138: 6.39964417e-14 + art_sys_139: 1.86820499e-11 + art_sys_140: -7.18097790e-15 + art_sys_141: 7.48771639e-10 + art_sys_142: -2.19726990e-14 + art_sys_143: -1.32114960e-12 + art_sys_144: 4.27078603e-14 + art_sys_145: 8.89650355e-13 + art_sys_146: 9.81595164e-14 + art_sys_147: -6.12254376e-16 + art_sys_148: -2.48982878e-16 + art_sys_149: 5.42562664e-15 + art_sys_150: 4.84303104e-13 + art_sys_151: 1.69402047e-11 + art_sys_152: 3.14281143e-15 + art_sys_153: 1.31326098e-12 + art_sys_154: 2.35228417e-14 + art_sys_155: -5.96566077e-15 + art_sys_156: 0.0 + art_sys_157: 2.60625452e-14 art_sys_158: 0.0 - art_sys_159: -1.66393912e-14 - art_sys_160: 4.78849503e-15 - art_sys_161: 1.64635327e-14 - art_sys_162: 4.57311639e-16 - art_sys_163: 1.51597504e-13 - art_sys_164: 2.38254575e-14 - art_sys_165: -1.06127514e-16 - art_sys_166: -1.40452203e-22 - art_sys_167: -1.35002190e-22 - art_sys_168: 4.78432521e-23 - art_sys_169: -1.79612257e-24 - art_sys_170: 3.95306847e-24 - art_sys_171: -2.98939366e-24 - art_sys_172: -1.55726153e-24 - art_sys_173: 4.76836863e-25 - art_sys_174: 3.65154316e-25 - art_sys_175: -1.99590115e-27 - art_sys_176: -3.00355549e-27 - art_sys_177: -7.30642623e-26 - art_sys_178: 2.59382738e-26 - art_sys_179: -1.52529681e-26 - art_sys_180: 2.04356843e-26 - art_sys_181: 5.61875119e-29 - art_sys_182: -5.75255443e-27 - art_sys_183: -7.88117261e-29 - art_sys_184: 1.39084707e-30 - art_sys_185: 6.72706866e-31 + art_sys_159: 2.09021213e-13 + art_sys_160: -1.20689295e-15 + art_sys_161: -2.87717228e-14 + art_sys_162: -2.87717228e-14 + art_sys_163: -2.57359663e-14 + art_sys_164: -2.57359663e-14 + art_sys_165: 2.96750722e-28 + art_sys_166: -9.87039131e-29 + art_sys_167: -0.0 + art_sys_168: 2.54271573e-23 + art_sys_169: 2.10879897e-23 + art_sys_170: 9.12928071e-24 + art_sys_171: 5.98016982e-24 + art_sys_172: -2.34471739e-24 + art_sys_173: -1.12542450e-25 + art_sys_174: -1.67277511e-25 + art_sys_175: -1.00621030e-25 + art_sys_176: 4.27356492e-26 + art_sys_177: -1.92655829e-26 + art_sys_178: -2.74926276e-26 + art_sys_179: 1.92104130e-27 + art_sys_180: 5.53054869e-27 + art_sys_181: -9.14614067e-27 + art_sys_182: 2.99323851e-27 + art_sys_183: -2.65181805e-29 + art_sys_184: -2.69204629e-29 + art_sys_185: 7.75493260e-30 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -60185,191 +60185,191 @@ bins: RelativeStatFSR-: -1.29388999e-03 luminosity_uncertainty: 8.19847600e-03 uncorrelated_uncertainty: 3.15326000e-03 -- art_sys_1: -6.87879079e-26 - art_sys_2: -1.07147492e-24 +- art_sys_1: -7.35209471e-26 + art_sys_2: -1.58064999e-24 art_sys_3: 2.97277657e-11 - art_sys_4: -1.56911241e-24 + art_sys_4: 9.49806363e-24 art_sys_5: -9.14922371e-10 - art_sys_6: -1.36501339e-24 - art_sys_7: 7.43892665e-25 + art_sys_6: -2.80467261e-24 + art_sys_7: -4.36227282e-24 art_sys_8: -1.70779515e-09 - art_sys_9: -1.37762268e-24 - art_sys_10: 1.88714061e-25 + art_sys_9: -5.67583965e-24 + art_sys_10: -2.30303832e-24 art_sys_11: 1.71341485e-09 - art_sys_12: 2.45117147e-22 - art_sys_13: -4.29003878e-21 - art_sys_14: 1.68040557e-22 + art_sys_12: -3.34631258e-23 + art_sys_13: 1.03470737e-20 + art_sys_14: -1.30700542e-21 art_sys_15: -1.37714924e-07 - art_sys_16: -1.31955939e-21 - art_sys_17: -2.84515385e-21 + art_sys_16: 1.71029941e-21 + art_sys_17: -5.80628629e-21 art_sys_18: -2.39668605e-07 - art_sys_19: -7.77687916e-21 - art_sys_20: -1.26161180e-20 - art_sys_21: 9.27110419e-07 - art_sys_22: -2.54260562e-21 - art_sys_23: 9.48562881e-21 - art_sys_24: -6.68238371e-07 - art_sys_25: -4.11049309e-14 - art_sys_26: 5.43904560e-14 - art_sys_27: 2.52869396e-15 - art_sys_28: -1.64280433e-20 - art_sys_29: -1.92542650e-17 - art_sys_30: -2.52810041e-15 - art_sys_31: -2.45984838e-17 - art_sys_32: -2.68595477e-16 - art_sys_33: -7.40028814e-17 - art_sys_34: -6.39640696e-06 - art_sys_35: 8.77843273e-18 - art_sys_36: 1.38040269e-06 - art_sys_37: 1.27485213e-16 - art_sys_38: 5.07404592e-17 - art_sys_39: 9.67498286e-14 - art_sys_40: -2.39277473e-05 - art_sys_41: 2.03148058e-14 - art_sys_42: 2.85771481e-18 - art_sys_43: 7.13286210e-17 - art_sys_44: -1.94547202e-17 - art_sys_45: -1.43541823e-17 - art_sys_46: -2.48188273e-15 - art_sys_47: -1.21506172e-04 - art_sys_48: 6.13074786e-12 - art_sys_49: 2.30256899e-15 - art_sys_50: -1.56572110e-14 - art_sys_51: -1.00655436e-14 - art_sys_52: -1.40446756e-15 - art_sys_53: -6.12061693e-17 - art_sys_54: -4.09815179e-16 - art_sys_55: 1.21786663e-13 - art_sys_56: -6.18602537e-15 - art_sys_57: -3.26466958e-04 - art_sys_58: 7.84639544e-17 - art_sys_59: -4.43623588e-17 - art_sys_60: -3.93338162e-11 - art_sys_61: -1.50658531e-14 - art_sys_62: -5.00831174e-04 - art_sys_63: 4.37478505e-14 - art_sys_64: -6.10833967e-11 - art_sys_65: -4.10733911e-17 - art_sys_66: 5.31382003e-17 - art_sys_67: -1.00489452e-13 - art_sys_68: 2.07144743e-12 - art_sys_69: -7.87719233e-13 - art_sys_70: -5.45991163e-11 - art_sys_71: -7.56563210e-04 - art_sys_72: 5.63080560e-11 - art_sys_73: 5.87704435e-14 - art_sys_74: -2.44826929e-14 - art_sys_75: -9.11299366e-15 - art_sys_76: -1.24605211e-14 - art_sys_77: 1.71924632e-03 - art_sys_78: -6.89481128e-13 - art_sys_79: 6.56888189e-16 - art_sys_80: -3.99264050e-17 - art_sys_81: 5.40858073e-16 - art_sys_82: 1.20058830e-16 - art_sys_83: 3.41903758e-13 - art_sys_84: -8.33726072e-17 - art_sys_85: 6.70522254e-17 - art_sys_86: -1.07356928e-12 - art_sys_87: -3.33132834e-04 - art_sys_88: 1.20632770e-13 - art_sys_89: -1.23091385e-15 - art_sys_90: 1.67694773e-10 - art_sys_91: -2.45004590e-13 - art_sys_92: 4.86535106e-10 - art_sys_93: -1.97210269e-11 - art_sys_94: -2.71338324e-11 - art_sys_95: 3.50034165e-12 - art_sys_96: -2.62670254e-14 - art_sys_97: 7.99903894e-10 - art_sys_98: -8.24530559e-12 - art_sys_99: 1.27361693e-12 - art_sys_100: -7.68448167e-13 - art_sys_101: -1.95181157e-13 - art_sys_102: -5.82173531e-13 - art_sys_103: -3.44842793e-13 - art_sys_104: 2.43254747e-13 - art_sys_105: 4.16585778e-12 - art_sys_106: -6.44901356e-06 - art_sys_107: 1.06250980e-13 - art_sys_108: -6.54692887e-15 - art_sys_109: -3.72651914e-14 - art_sys_110: 8.42441110e-11 - art_sys_111: 1.32564162e-10 - art_sys_112: 6.99512471e-12 - art_sys_113: -6.28393564e-16 - art_sys_114: -8.96918760e-11 - art_sys_115: 2.04046018e-12 - art_sys_116: 7.78378519e-07 - art_sys_117: -7.91754027e-11 - art_sys_118: -1.02165321e-11 - art_sys_119: 3.22552442e-11 - art_sys_120: 2.30258393e-07 - art_sys_121: 3.99076893e-12 - art_sys_122: -1.77870957e-11 - art_sys_123: 5.01178989e-11 - art_sys_124: -3.68095465e-12 - art_sys_125: 3.40786044e-08 - art_sys_126: 1.04197991e-11 - art_sys_127: 2.59528319e-11 - art_sys_128: 2.06167193e-11 - art_sys_129: 1.41695628e-11 - art_sys_130: 5.67799384e-11 - art_sys_131: -4.80833496e-09 - art_sys_132: -1.22646899e-11 - art_sys_133: 9.72875243e-11 - art_sys_134: 7.22184658e-14 - art_sys_135: 4.20374517e-12 - art_sys_136: 9.05597672e-12 - art_sys_137: -1.13286064e-14 - art_sys_138: 2.30815784e-15 - art_sys_139: 2.14709060e-12 - art_sys_140: 8.44981153e-12 - art_sys_141: 8.76888695e-11 - art_sys_142: -2.44960617e-12 - art_sys_143: 3.08307590e-15 - art_sys_144: -1.49042340e-16 - art_sys_145: -3.46935456e-14 - art_sys_146: -0.0 - art_sys_147: 3.05920160e-13 - art_sys_148: -1.47722068e-12 - art_sys_149: -1.47722068e-12 - art_sys_150: -5.77389111e-13 - art_sys_151: -5.77389111e-13 - art_sys_152: 1.82728630e-13 - art_sys_153: 7.00610386e-14 - art_sys_154: -2.07120156e-16 - art_sys_155: 1.87880295e-26 - art_sys_156: -2.10043061e-28 - art_sys_157: -8.78440168e-29 + art_sys_19: -1.55964679e-21 + art_sys_20: 3.15824173e-20 + art_sys_21: -9.27110419e-07 + art_sys_22: -6.34457986e-21 + art_sys_23: 2.35654558e-20 + art_sys_24: 6.68238371e-07 + art_sys_25: -1.02973431e-20 + art_sys_26: 1.58228710e-20 + art_sys_27: -6.39640696e-06 + art_sys_28: -2.27138483e-17 + art_sys_29: -1.38040269e-06 + art_sys_30: -2.95951480e-20 + art_sys_31: 1.19084077e-16 + art_sys_32: -2.39277473e-05 + art_sys_33: 1.28011042e-18 + art_sys_34: 2.20755022e-15 + art_sys_35: -7.21284866e-16 + art_sys_36: 5.71261276e-14 + art_sys_37: -1.51327551e-14 + art_sys_38: 9.92798175e-15 + art_sys_39: -2.99956882e-15 + art_sys_40: 9.18488771e-16 + art_sys_41: 4.59037465e-17 + art_sys_42: 5.31751089e-16 + art_sys_43: -1.28508970e-16 + art_sys_44: -4.70676377e-17 + art_sys_45: -9.62198036e-17 + art_sys_46: -1.82489281e-17 + art_sys_47: -1.21506173e-04 + art_sys_48: -7.49695672e-12 + art_sys_49: 3.26466957e-04 + art_sys_50: 2.35325191e-18 + art_sys_51: 1.09911473e-17 + art_sys_52: 1.99678205e-13 + art_sys_53: -1.25755579e-12 + art_sys_54: -5.00831184e-04 + art_sys_55: -3.30406856e-14 + art_sys_56: -9.90501354e-14 + art_sys_57: -2.14242285e-19 + art_sys_58: -4.54040815e-18 + art_sys_59: -1.58978645e-10 + art_sys_60: -7.56563398e-04 + art_sys_61: -1.82154249e-13 + art_sys_62: 2.19604322e-14 + art_sys_63: -1.71924628e-03 + art_sys_64: -4.78969643e-15 + art_sys_65: 1.32941140e-14 + art_sys_66: 7.03656897e-15 + art_sys_67: 1.55777273e-16 + art_sys_68: 5.41102593e-16 + art_sys_69: 1.23136864e-16 + art_sys_70: 1.17476056e-17 + art_sys_71: -3.02868490e-17 + art_sys_72: -2.24497904e-17 + art_sys_73: 1.20496429e-17 + art_sys_74: -4.05889946e-14 + art_sys_75: -5.79265145e-18 + art_sys_76: -5.44039573e-15 + art_sys_77: -1.16273866e-14 + art_sys_78: -8.98476754e-18 + art_sys_79: -3.03508554e-17 + art_sys_80: 8.99582779e-17 + art_sys_81: 4.59618870e-13 + art_sys_82: -3.33133845e-04 + art_sys_83: -6.45233314e-17 + art_sys_84: -2.47650238e-17 + art_sys_85: 3.11763548e-17 + art_sys_86: 5.07177531e-18 + art_sys_87: 4.56506276e-19 + art_sys_88: -1.60880456e-13 + art_sys_89: -5.58406100e-20 + art_sys_90: -3.42951799e-16 + art_sys_91: -6.29352302e-10 + art_sys_92: -9.91312129e-19 + art_sys_93: 5.30363353e-19 + art_sys_94: 4.85255851e-14 + art_sys_95: -8.49078748e-17 + art_sys_96: 6.29430304e-10 + art_sys_97: -6.81623607e-12 + art_sys_98: -3.03256428e-17 + art_sys_99: 4.95315025e-11 + art_sys_100: 1.75675420e-16 + art_sys_101: -5.27029200e-11 + art_sys_102: -7.96660154e-13 + art_sys_103: 1.04755798e-15 + art_sys_104: 4.02210947e-13 + art_sys_105: 2.07606967e-13 + art_sys_106: 2.68357950e-12 + art_sys_107: 1.41826731e-12 + art_sys_108: 3.37449418e-13 + art_sys_109: -1.31539307e-14 + art_sys_110: -9.15103781e-12 + art_sys_111: 4.20943393e-12 + art_sys_112: -6.44880952e-06 + art_sys_113: -9.78668703e-15 + art_sys_114: -2.53796728e-15 + art_sys_115: 2.01004668e-14 + art_sys_116: -1.12058740e-12 + art_sys_117: -1.32848355e-15 + art_sys_118: -6.81628716e-13 + art_sys_119: -1.85902803e-12 + art_sys_120: -7.78426863e-07 + art_sys_121: 1.10567610e-15 + art_sys_122: 2.27513691e-12 + art_sys_123: 6.11758366e-13 + art_sys_124: 8.44985492e-13 + art_sys_125: -1.80714063e-15 + art_sys_126: -2.30245175e-07 + art_sys_127: -7.53606184e-13 + art_sys_128: -1.89321143e-12 + art_sys_129: -4.64763829e-15 + art_sys_130: 2.30148347e-11 + art_sys_131: 6.46955062e-14 + art_sys_132: 1.43920974e-11 + art_sys_133: -5.11648517e-11 + art_sys_134: -3.40842291e-08 + art_sys_135: -8.84234273e-12 + art_sys_136: -1.90670443e-13 + art_sys_137: 7.90846900e-12 + art_sys_138: -4.34982177e-13 + art_sys_139: -1.19870346e-10 + art_sys_140: 4.08342713e-14 + art_sys_141: -4.80600311e-09 + art_sys_142: 1.54658065e-13 + art_sys_143: 8.48265482e-12 + art_sys_144: -2.61209230e-13 + art_sys_145: -5.85730468e-12 + art_sys_146: -6.28506933e-13 + art_sys_147: 4.37096945e-15 + art_sys_148: 2.23803563e-15 + art_sys_149: -2.57958727e-16 + art_sys_150: -2.93602208e-12 + art_sys_151: -9.25943285e-11 + art_sys_152: -1.51560762e-14 + art_sys_153: -7.89326980e-12 + art_sys_154: -2.44120290e-13 + art_sys_155: 3.45013302e-14 + art_sys_156: -0.0 + art_sys_157: -1.75147138e-13 art_sys_158: -0.0 - art_sys_159: 9.00473397e-14 - art_sys_160: -2.59869082e-14 - art_sys_161: -8.95510772e-14 - art_sys_162: -2.48658325e-15 - art_sys_163: -8.33279593e-13 - art_sys_164: -1.31448141e-13 - art_sys_165: 8.87584661e-16 - art_sys_166: 7.66753017e-22 - art_sys_167: 7.34315884e-22 - art_sys_168: -2.59630227e-22 - art_sys_169: 1.54835695e-23 - art_sys_170: -2.37315905e-23 - art_sys_171: 1.77262974e-23 - art_sys_172: 8.77966008e-24 - art_sys_173: -2.81739678e-24 - art_sys_174: -2.25338679e-24 - art_sys_175: 1.14180147e-26 - art_sys_176: 3.18738775e-26 - art_sys_177: 4.28592421e-25 - art_sys_178: -1.57120043e-25 - art_sys_179: 9.20246592e-26 - art_sys_180: -1.23570317e-25 - art_sys_181: -3.17716646e-28 - art_sys_182: 3.10699223e-26 - art_sys_183: 4.36506805e-28 - art_sys_184: -8.15497140e-30 - art_sys_185: -4.12448132e-30 + art_sys_159: -1.38656462e-12 + art_sys_160: -2.35812266e-16 + art_sys_161: 1.90557841e-13 + art_sys_162: 1.90557841e-13 + art_sys_163: 1.66890972e-13 + art_sys_164: 1.66890972e-13 + art_sys_165: -1.93130327e-27 + art_sys_166: 6.42511168e-28 + art_sys_167: 0.0 + art_sys_168: -1.33077042e-22 + art_sys_169: -1.15813826e-22 + art_sys_170: -4.15892890e-23 + art_sys_171: -3.41735747e-23 + art_sys_172: 1.27894427e-23 + art_sys_173: 8.39981826e-25 + art_sys_174: 9.70352735e-25 + art_sys_175: 5.90462625e-25 + art_sys_176: -2.51013210e-25 + art_sys_177: 1.10835496e-25 + art_sys_178: 1.61882362e-25 + art_sys_179: -1.11681492e-26 + art_sys_180: -3.64191960e-26 + art_sys_181: 5.25991537e-26 + art_sys_182: -1.63667157e-26 + art_sys_183: 1.41575699e-28 + art_sys_184: 1.69071353e-28 + art_sys_185: -5.12460498e-29 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -60476,191 +60476,191 @@ bins: RelativeStatFSR-: -5.83350604e-04 luminosity_uncertainty: 3.47755200e-03 uncorrelated_uncertainty: 1.33752000e-03 -- art_sys_1: -1.90701246e-27 - art_sys_2: -5.78196600e-26 +- art_sys_1: -2.31088309e-27 + art_sys_2: -8.51783533e-26 art_sys_3: -2.24916061e-14 - art_sys_4: -1.15847346e-25 + art_sys_4: 2.75105166e-25 art_sys_5: -4.78547476e-11 - art_sys_6: -9.68691929e-26 - art_sys_7: -1.33844691e-26 + art_sys_6: -1.88298858e-25 + art_sys_7: -1.18680516e-25 art_sys_8: -1.05479539e-10 - art_sys_9: 1.35745579e-26 - art_sys_10: 9.24661420e-26 + art_sys_9: -2.35153064e-25 + art_sys_10: -1.90519029e-25 art_sys_11: 4.49109309e-11 - art_sys_12: 8.62147751e-24 - art_sys_13: -2.24498327e-22 - art_sys_14: 7.34084730e-24 + art_sys_12: -2.37843640e-24 + art_sys_13: 5.41667408e-22 + art_sys_14: -9.17941189e-24 art_sys_15: -7.27081679e-09 - art_sys_16: -6.33555358e-23 - art_sys_17: -1.60505743e-22 + art_sys_16: 1.61647355e-23 + art_sys_17: -3.02666674e-22 art_sys_18: -1.58005309e-08 - art_sys_19: -5.48327876e-22 - art_sys_20: -3.34821310e-22 - art_sys_21: 4.50488778e-08 - art_sys_22: -8.10653395e-23 - art_sys_23: -7.75290778e-22 - art_sys_24: -4.46749311e-09 - art_sys_25: 2.52267073e-15 - art_sys_26: 1.42715212e-14 - art_sys_27: 7.64133682e-16 - art_sys_28: 1.63482994e-21 - art_sys_29: 2.94639886e-19 - art_sys_30: 2.33433748e-16 - art_sys_31: -5.10658556e-17 - art_sys_32: -1.21194948e-15 - art_sys_33: -1.88130244e-16 - art_sys_34: 9.74578690e-08 - art_sys_35: -3.20902564e-17 - art_sys_36: -3.45326603e-06 - art_sys_37: -3.21431666e-16 - art_sys_38: 3.68606041e-16 - art_sys_39: -1.18340124e-14 - art_sys_40: 2.92836242e-06 - art_sys_41: -2.48619441e-15 - art_sys_42: -8.04220287e-20 - art_sys_43: -9.38367817e-18 - art_sys_44: 1.95377590e-17 - art_sys_45: -6.52963420e-18 - art_sys_46: -4.76278434e-16 - art_sys_47: -1.47277130e-05 - art_sys_48: -7.51224915e-13 - art_sys_49: 3.92004938e-14 - art_sys_50: -1.70565864e-14 - art_sys_51: -4.04611345e-15 - art_sys_52: 6.19702565e-16 - art_sys_53: -3.66670246e-17 - art_sys_54: 4.82609049e-16 - art_sys_55: -1.50193093e-14 - art_sys_56: -4.47608442e-16 - art_sys_57: 4.02132421e-05 - art_sys_58: 1.64450672e-16 - art_sys_59: 4.48491956e-16 - art_sys_60: -2.88777861e-12 - art_sys_61: 2.87633095e-16 - art_sys_62: -3.67713877e-05 - art_sys_63: -1.71101570e-14 - art_sys_64: -4.45177841e-12 - art_sys_65: 5.75418787e-17 - art_sys_66: -4.94331619e-17 - art_sys_67: 1.16033733e-14 - art_sys_68: -4.69592541e-12 - art_sys_69: 1.72905976e-12 - art_sys_70: -1.53524851e-11 - art_sys_71: 2.95933453e-04 - art_sys_72: 2.19964875e-11 - art_sys_73: 5.96098840e-14 - art_sys_74: 4.72941635e-15 - art_sys_75: 3.22948993e-15 - art_sys_76: -4.61340026e-15 - art_sys_77: 6.40592256e-04 - art_sys_78: -2.56810273e-13 - art_sys_79: -2.96010633e-15 - art_sys_80: 7.85338682e-17 - art_sys_81: -1.55861856e-15 - art_sys_82: -3.70067929e-16 - art_sys_83: -1.92945889e-14 - art_sys_84: 1.80983795e-16 - art_sys_85: -2.31739062e-16 - art_sys_86: 4.29859475e-12 - art_sys_87: 1.01074521e-03 - art_sys_88: -3.49650960e-13 - art_sys_89: 3.32214979e-15 - art_sys_90: -4.62154603e-10 - art_sys_91: 8.59369709e-15 - art_sys_92: -1.47158175e-09 - art_sys_93: 6.04813345e-11 - art_sys_94: 8.20244294e-11 - art_sys_95: -1.35204395e-13 - art_sys_96: 7.78825794e-14 - art_sys_97: -2.90306359e-11 - art_sys_98: 2.50274114e-11 - art_sys_99: -3.06712333e-12 - art_sys_100: -8.27333149e-14 - art_sys_101: 1.51462378e-13 - art_sys_102: 1.39724880e-12 - art_sys_103: 4.25398750e-13 - art_sys_104: -4.42334761e-15 - art_sys_105: 7.58055656e-14 - art_sys_106: 2.34886441e-07 - art_sys_107: -3.13858853e-13 - art_sys_108: 1.93738370e-14 - art_sys_109: 1.13738582e-13 - art_sys_110: -3.46128901e-10 - art_sys_111: -4.83293314e-12 - art_sys_112: -1.31019627e-11 - art_sys_113: 2.20452474e-15 - art_sys_114: 3.51833188e-12 - art_sys_115: -6.04952160e-12 - art_sys_116: -3.09679666e-06 - art_sys_117: -7.33906654e-12 - art_sys_118: 3.02966152e-11 - art_sys_119: -2.56176318e-11 - art_sys_120: -5.06245616e-07 - art_sys_121: -1.16239285e-11 - art_sys_122: 9.39396985e-11 - art_sys_123: -1.20512001e-10 - art_sys_124: 1.08454158e-11 - art_sys_125: -1.01060382e-07 - art_sys_126: -3.07694175e-11 - art_sys_127: -7.27253525e-11 - art_sys_128: -6.10624995e-11 - art_sys_129: -2.44136091e-11 - art_sys_130: -1.68054818e-10 - art_sys_131: 1.42039192e-08 - art_sys_132: 3.12444402e-11 - art_sys_133: -2.87818414e-10 - art_sys_134: -2.16335403e-13 - art_sys_135: -1.04256161e-11 - art_sys_136: -2.72125233e-11 - art_sys_137: 3.40061331e-14 - art_sys_138: -3.18742477e-15 - art_sys_139: -7.07421812e-12 - art_sys_140: -2.56141098e-11 - art_sys_141: -2.97603694e-10 - art_sys_142: 7.78364830e-12 - art_sys_143: -9.13517170e-15 - art_sys_144: -2.20251339e-16 - art_sys_145: 1.11215255e-13 - art_sys_146: 0.0 - art_sys_147: -9.50704159e-13 - art_sys_148: 4.19071693e-12 - art_sys_149: 4.19071693e-12 - art_sys_150: 2.06413171e-12 - art_sys_151: 2.06413171e-12 - art_sys_152: -4.40072251e-13 - art_sys_153: -2.78374167e-13 - art_sys_154: 6.59735080e-16 - art_sys_155: -1.54084590e-25 - art_sys_156: 6.05488730e-28 - art_sys_157: 2.55310070e-28 + art_sys_19: -1.83667561e-22 + art_sys_20: 8.63030097e-22 + art_sys_21: -4.50488778e-08 + art_sys_22: 6.34241698e-22 + art_sys_23: 6.82861783e-22 + art_sys_24: 4.46749311e-09 + art_sys_25: 6.97196616e-22 + art_sys_26: -1.46297169e-21 + art_sys_27: 9.74578690e-08 + art_sys_28: 2.42601420e-17 + art_sys_29: 3.45326603e-06 + art_sys_30: -2.17115128e-20 + art_sys_31: -1.19475151e-17 + art_sys_32: 2.92836242e-06 + art_sys_33: -7.68571855e-20 + art_sys_34: 2.67606681e-16 + art_sys_35: 6.21155462e-18 + art_sys_36: -7.81136527e-14 + art_sys_37: -1.29988835e-14 + art_sys_38: 4.36990373e-15 + art_sys_39: 1.43672468e-15 + art_sys_40: -1.23464834e-15 + art_sys_41: 2.74438203e-16 + art_sys_42: -1.13561976e-15 + art_sys_43: -2.64974353e-16 + art_sys_44: -4.64679591e-17 + art_sys_45: 3.49624316e-17 + art_sys_46: -1.80430521e-18 + art_sys_47: -1.47277129e-05 + art_sys_48: 9.62076359e-13 + art_sys_49: -4.02132420e-05 + art_sys_50: 8.61010879e-18 + art_sys_51: 5.88551368e-18 + art_sys_52: -2.91251163e-14 + art_sys_53: -8.95626074e-14 + art_sys_54: -3.67713884e-05 + art_sys_55: -1.25479132e-14 + art_sys_56: 1.21396025e-14 + art_sys_57: 1.35075780e-18 + art_sys_58: -5.02161495e-18 + art_sys_59: 2.61861110e-11 + art_sys_60: 2.95933162e-04 + art_sys_61: 5.52676639e-13 + art_sys_62: 4.39362446e-16 + art_sys_63: -6.40592028e-04 + art_sys_64: 1.19448040e-14 + art_sys_65: -3.60611150e-14 + art_sys_66: -2.07187749e-14 + art_sys_67: -9.08460344e-16 + art_sys_68: -1.27414420e-15 + art_sys_69: -2.85461163e-16 + art_sys_70: 8.09149864e-18 + art_sys_71: 1.14935265e-16 + art_sys_72: 6.05165849e-17 + art_sys_73: -3.48979389e-17 + art_sys_74: 1.23150542e-13 + art_sys_75: 1.77792024e-17 + art_sys_76: 1.05555525e-14 + art_sys_77: 3.33712720e-14 + art_sys_78: 1.05533124e-15 + art_sys_79: 9.19036538e-17 + art_sys_80: 9.95194640e-17 + art_sys_81: -1.39451218e-12 + art_sys_82: 1.01074831e-03 + art_sys_83: 2.70648862e-18 + art_sys_84: 3.05555757e-17 + art_sys_85: 6.97114649e-18 + art_sys_86: -3.59034997e-18 + art_sys_87: -7.91994316e-19 + art_sys_88: 5.82495458e-15 + art_sys_89: -2.63214778e-20 + art_sys_90: -1.10244583e-14 + art_sys_91: 6.13124371e-10 + art_sys_92: 3.12680544e-20 + art_sys_93: -1.41691598e-19 + art_sys_94: -1.06795839e-13 + art_sys_95: 2.84355649e-16 + art_sys_96: -2.03780190e-09 + art_sys_97: 2.05165769e-11 + art_sys_98: 1.10844831e-16 + art_sys_99: -1.48593867e-10 + art_sys_100: -2.08357128e-15 + art_sys_101: 1.59181229e-10 + art_sys_102: 1.67500813e-13 + art_sys_103: 4.57533934e-16 + art_sys_104: -8.96128948e-13 + art_sys_105: -6.13282880e-13 + art_sys_106: -7.44161174e-12 + art_sys_107: -5.64482856e-12 + art_sys_108: -9.96844708e-13 + art_sys_109: 3.86879000e-14 + art_sys_110: -4.34422256e-11 + art_sys_111: 1.17313264e-12 + art_sys_112: 2.34880960e-07 + art_sys_113: -7.59900715e-16 + art_sys_114: 7.52504204e-15 + art_sys_115: -1.71217045e-14 + art_sys_116: 2.81694469e-12 + art_sys_117: 3.76780455e-15 + art_sys_118: 2.39096657e-14 + art_sys_119: 3.26292037e-12 + art_sys_120: 3.09700349e-06 + art_sys_121: -3.33784297e-15 + art_sys_122: -6.67556160e-13 + art_sys_123: -1.81892060e-12 + art_sys_124: 6.62625132e-13 + art_sys_125: 6.27270934e-15 + art_sys_126: 5.06215544e-07 + art_sys_127: 1.92785998e-12 + art_sys_128: 7.66502285e-12 + art_sys_129: 1.54912083e-14 + art_sys_130: -6.80181768e-11 + art_sys_131: -2.15683188e-13 + art_sys_132: -5.78577576e-11 + art_sys_133: 1.50966739e-10 + art_sys_134: 1.01076940e-07 + art_sys_135: 2.12351827e-11 + art_sys_136: 6.37708203e-13 + art_sys_137: -2.35408471e-11 + art_sys_138: 1.22855099e-12 + art_sys_139: 3.54187568e-10 + art_sys_140: -1.32395441e-13 + art_sys_141: 1.41967724e-08 + art_sys_142: -8.08542561e-13 + art_sys_143: -2.50542879e-11 + art_sys_144: 7.95786388e-13 + art_sys_145: 1.74986102e-11 + art_sys_146: 1.85704207e-12 + art_sys_147: -1.20439934e-14 + art_sys_148: -5.29292577e-15 + art_sys_149: 1.83286912e-13 + art_sys_150: 9.05186107e-12 + art_sys_151: 3.10828768e-10 + art_sys_152: 5.58997947e-14 + art_sys_153: 2.45546907e-11 + art_sys_154: 1.39810432e-14 + art_sys_155: -1.11439770e-13 + art_sys_156: 0.0 + art_sys_157: 4.94153059e-13 art_sys_158: 0.0 - art_sys_159: -3.04867833e-13 - art_sys_160: 8.77833695e-14 - art_sys_161: 3.01867467e-13 - art_sys_162: 8.38239565e-15 - art_sys_163: 2.78213726e-12 - art_sys_164: 4.37952830e-13 - art_sys_165: -2.14855449e-15 - art_sys_166: -2.57520656e-21 - art_sys_167: -2.47461265e-21 - art_sys_168: 8.77003699e-22 - art_sys_169: -3.77429162e-23 - art_sys_170: 6.95084678e-23 - art_sys_171: -5.49844471e-23 - art_sys_172: -2.86051279e-23 - art_sys_173: 8.77154887e-24 - art_sys_174: 6.72713714e-24 - art_sys_175: -3.66076458e-26 - art_sys_176: -5.68302139e-26 - art_sys_177: -1.34359628e-24 - art_sys_178: 4.77545616e-25 - art_sys_179: -2.80780660e-25 - art_sys_180: 3.76031763e-25 - art_sys_181: 1.03508597e-27 - art_sys_182: -1.05436038e-25 - art_sys_183: -1.44571831e-27 - art_sys_184: 2.54656543e-29 - art_sys_185: 1.24207568e-29 + art_sys_159: 4.01819499e-12 + art_sys_160: -2.01558025e-14 + art_sys_161: -5.56123030e-13 + art_sys_162: -5.56123030e-13 + art_sys_163: -4.94422591e-13 + art_sys_164: -4.94422591e-13 + art_sys_165: 5.70663965e-27 + art_sys_166: -1.89840464e-27 + art_sys_167: -0.0 + art_sys_168: 4.39678724e-22 + art_sys_169: 3.86080993e-22 + art_sys_170: 1.31134264e-22 + art_sys_171: 1.14401105e-22 + art_sys_172: -4.29865013e-23 + art_sys_173: -2.09260557e-24 + art_sys_174: -3.07654154e-24 + art_sys_175: -1.85012252e-24 + art_sys_176: 7.85065304e-25 + art_sys_177: -3.54013788e-25 + art_sys_178: -5.05689360e-25 + art_sys_179: 3.59830797e-26 + art_sys_180: 1.06271014e-25 + art_sys_181: -1.67715443e-25 + art_sys_182: 5.49666833e-26 + art_sys_183: -4.84384373e-28 + art_sys_184: -5.06532914e-28 + art_sys_185: 1.48521697e-28 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -60767,191 +60767,191 @@ bins: RelativeStatFSR-: -2.41008895e-04 luminosity_uncertainty: 1.35273840e-03 uncorrelated_uncertainty: 5.20284000e-04 -- art_sys_1: 3.27857130e-29 - art_sys_2: -1.39060796e-27 +- art_sys_1: 6.51294285e-30 + art_sys_2: -2.00547156e-27 art_sys_3: -1.07503634e-13 - art_sys_4: -1.56424185e-27 + art_sys_4: 2.16699490e-26 art_sys_5: -1.12627300e-12 - art_sys_6: -1.83211735e-27 - art_sys_7: -6.44322866e-28 + art_sys_6: -3.95754344e-27 + art_sys_7: -1.03477776e-26 art_sys_8: -2.32600927e-12 - art_sys_9: -2.61078910e-27 - art_sys_10: 5.49073408e-27 + art_sys_9: -4.32194948e-27 + art_sys_10: 3.80179636e-28 art_sys_11: 4.16398993e-12 - art_sys_12: 1.91233930e-25 - art_sys_13: -6.03752654e-24 - art_sys_14: 3.06000300e-25 + art_sys_12: -3.64183506e-26 + art_sys_13: 1.48126298e-23 + art_sys_14: -8.34631036e-25 art_sys_15: -2.08243027e-10 - art_sys_16: -2.20731137e-24 - art_sys_17: -6.55718697e-24 + art_sys_16: -6.76564405e-24 + art_sys_17: -9.78061519e-24 art_sys_18: -1.01477764e-09 - art_sys_19: -4.15964663e-23 - art_sys_20: 1.24550244e-23 - art_sys_21: 1.36873792e-09 - art_sys_22: 7.66514568e-25 - art_sys_23: -1.51232601e-22 - art_sys_24: 1.95408072e-09 - art_sys_25: 1.72576685e-15 - art_sys_26: -2.47620835e-15 - art_sys_27: 3.48623245e-17 - art_sys_28: 3.09841782e-22 - art_sys_29: 2.40837725e-19 - art_sys_30: 1.21491066e-16 - art_sys_31: 2.01226600e-17 - art_sys_32: -5.36135113e-18 - art_sys_33: -1.65757850e-17 - art_sys_34: 7.99780777e-08 - art_sys_35: -2.81245670e-18 - art_sys_36: -3.05300034e-07 - art_sys_37: -2.84032688e-17 - art_sys_38: -3.51686298e-18 - art_sys_39: -2.45995967e-15 - art_sys_40: 6.08448759e-07 - art_sys_41: -5.16575230e-16 - art_sys_42: -6.27629191e-20 - art_sys_43: -5.15013615e-18 - art_sys_44: 5.85256645e-18 - art_sys_45: -1.34734692e-17 - art_sys_46: 4.33454097e-17 - art_sys_47: 2.33415700e-06 - art_sys_48: -1.74513417e-13 - art_sys_49: 3.52104403e-14 - art_sys_50: -4.49246229e-14 - art_sys_51: -7.91549384e-15 - art_sys_52: -2.45663761e-15 - art_sys_53: -1.25753592e-15 - art_sys_54: -6.58068339e-16 - art_sys_55: -3.47300124e-15 - art_sys_56: 1.69880717e-16 - art_sys_57: 9.30094383e-06 - art_sys_58: 3.97727681e-16 - art_sys_59: 3.70960052e-16 - art_sys_60: 1.19284536e-12 - art_sys_61: 2.76746552e-16 - art_sys_62: 1.51883007e-05 - art_sys_63: -1.27433933e-15 - art_sys_64: 1.85235980e-12 - art_sys_65: 9.78914602e-18 - art_sys_66: -1.42554782e-17 - art_sys_67: 2.84173261e-15 - art_sys_68: -1.30939911e-13 - art_sys_69: 4.93371456e-14 - art_sys_70: 2.12838773e-12 - art_sys_71: 2.24316922e-05 - art_sys_72: -2.34729467e-12 - art_sys_73: -3.96412725e-14 - art_sys_74: 1.28250196e-14 - art_sys_75: -5.46543168e-15 - art_sys_76: 5.15080720e-16 - art_sys_77: -7.12664372e-05 - art_sys_78: 2.85734645e-14 - art_sys_79: -7.07767829e-15 - art_sys_80: -3.15251174e-16 - art_sys_81: 6.04544485e-16 - art_sys_82: 9.79396864e-17 - art_sys_83: 7.90210684e-12 - art_sys_84: -4.45827389e-16 - art_sys_85: -2.01987414e-16 - art_sys_86: -1.66645974e-11 - art_sys_87: 2.31666038e-05 - art_sys_88: 2.60801786e-12 - art_sys_89: -2.82810722e-14 - art_sys_90: -1.13107493e-11 - art_sys_91: -5.70103320e-12 - art_sys_92: -3.38081954e-11 - art_sys_93: 1.37960060e-12 - art_sys_94: 1.68356146e-12 - art_sys_95: 8.14236176e-11 - art_sys_96: -5.67067505e-13 - art_sys_97: 1.86116029e-08 - art_sys_98: 1.29196144e-12 - art_sys_99: -7.85173198e-14 - art_sys_100: -1.81175850e-11 - art_sys_101: -3.43888819e-12 - art_sys_102: -2.62667705e-12 - art_sys_103: -7.39154238e-12 - art_sys_104: -6.98438319e-15 - art_sys_105: 9.91184331e-11 - art_sys_106: -1.50048013e-04 - art_sys_107: 2.42831646e-12 - art_sys_108: -1.49913988e-13 - art_sys_109: -8.82033074e-13 - art_sys_110: 1.25907248e-09 - art_sys_111: 3.08432732e-09 - art_sys_112: 1.89934388e-10 - art_sys_113: -1.73042958e-14 - art_sys_114: -2.08680547e-09 - art_sys_115: 4.39609529e-11 - art_sys_116: 1.21917023e-05 - art_sys_117: -1.86018766e-09 - art_sys_118: -2.19948154e-10 - art_sys_119: 7.06802423e-10 - art_sys_120: 5.86604361e-06 - art_sys_121: 8.99279658e-11 - art_sys_122: -1.72004538e-10 - art_sys_123: 1.22076632e-09 - art_sys_124: -8.39036259e-11 - art_sys_125: 7.34053239e-07 - art_sys_126: 2.38066163e-10 - art_sys_127: 5.81313824e-10 - art_sys_128: 4.72384003e-10 - art_sys_129: 3.94786366e-10 - art_sys_130: 1.30021475e-09 - art_sys_131: -1.09878655e-07 - art_sys_132: -2.88089428e-10 - art_sys_133: 2.22675994e-09 - art_sys_134: 1.70239935e-12 - art_sys_135: 1.02422411e-10 - art_sys_136: 2.10904760e-10 - art_sys_137: -2.73711436e-13 - art_sys_138: 6.41340744e-15 - art_sys_139: 4.94497442e-11 - art_sys_140: 1.97384580e-10 - art_sys_141: 2.33190746e-09 - art_sys_142: -6.00622826e-11 - art_sys_143: 7.39157325e-14 - art_sys_144: 4.93716025e-16 - art_sys_145: -8.83849187e-13 - art_sys_146: -0.0 - art_sys_147: 7.55889441e-12 - art_sys_148: -3.30611068e-11 - art_sys_149: -3.30611068e-11 - art_sys_150: -1.65743787e-11 - art_sys_151: -1.65743787e-11 - art_sys_152: 5.13228173e-12 - art_sys_153: 2.14765590e-12 - art_sys_154: -5.26568341e-15 - art_sys_155: 8.44983601e-25 - art_sys_156: -4.72954166e-27 - art_sys_157: -1.99331366e-27 + art_sys_19: -1.95914993e-23 + art_sys_20: -2.72523124e-23 + art_sys_21: -1.36873792e-09 + art_sys_22: 1.36824578e-22 + art_sys_23: -1.56085825e-23 + art_sys_24: -1.95408072e-09 + art_sys_25: 1.46156415e-22 + art_sys_26: -2.69067010e-22 + art_sys_27: 7.99780777e-08 + art_sys_28: 2.30696970e-18 + art_sys_29: 3.05300034e-07 + art_sys_30: -1.51989134e-21 + art_sys_31: -2.91300594e-18 + art_sys_32: 6.08448760e-07 + art_sys_33: -2.81562300e-20 + art_sys_34: -4.24083111e-17 + art_sys_35: 1.61219530e-17 + art_sys_36: -2.74498286e-15 + art_sys_37: 1.73557455e-16 + art_sys_38: -2.69301076e-16 + art_sys_39: 7.73101985e-17 + art_sys_40: -4.33438132e-17 + art_sys_41: -1.67352750e-17 + art_sys_42: -2.74423485e-17 + art_sys_43: 6.16862247e-18 + art_sys_44: 6.46023259e-18 + art_sys_45: 1.60442193e-17 + art_sys_46: 2.03897506e-17 + art_sys_47: 2.33415702e-06 + art_sys_48: 2.15052537e-13 + art_sys_49: -9.30094380e-06 + art_sys_50: 8.01279528e-18 + art_sys_51: -1.72386327e-17 + art_sys_52: -5.84905281e-15 + art_sys_53: 3.81106813e-14 + art_sys_54: 1.51883010e-05 + art_sys_55: 1.02328144e-15 + art_sys_56: 2.81837329e-15 + art_sys_57: -1.64298018e-17 + art_sys_58: 6.34149320e-18 + art_sys_59: 5.21854642e-12 + art_sys_60: 2.24317029e-05 + art_sys_61: 1.26635746e-14 + art_sys_62: -6.56344998e-16 + art_sys_63: 7.12664369e-05 + art_sys_64: -3.64419422e-14 + art_sys_65: 4.12182248e-14 + art_sys_66: 3.50316050e-15 + art_sys_67: -4.79964952e-15 + art_sys_68: 2.96455741e-15 + art_sys_69: 5.19879804e-16 + art_sys_70: 1.97327842e-16 + art_sys_71: -6.96273446e-18 + art_sys_72: -4.19596111e-17 + art_sys_73: 4.92378463e-17 + art_sys_74: 2.82492052e-15 + art_sys_75: -2.76655569e-17 + art_sys_76: -4.78497398e-14 + art_sys_77: -1.33935163e-14 + art_sys_78: 8.27537714e-15 + art_sys_79: -9.39475912e-18 + art_sys_80: 2.40413934e-15 + art_sys_81: -3.19448051e-14 + art_sys_82: 2.31666744e-05 + art_sys_83: -1.45710777e-15 + art_sys_84: -5.34844911e-16 + art_sys_85: 7.50300044e-16 + art_sys_86: 1.15429637e-16 + art_sys_87: 1.16791036e-17 + art_sys_88: -3.74324190e-12 + art_sys_89: -1.55834627e-18 + art_sys_90: -2.92692131e-14 + art_sys_91: 3.32080127e-11 + art_sys_92: -2.26109206e-17 + art_sys_93: 1.20411316e-17 + art_sys_94: 1.23632592e-12 + art_sys_95: -5.20980622e-17 + art_sys_96: -4.48140623e-11 + art_sys_97: 4.71939234e-13 + art_sys_98: 2.00134185e-16 + art_sys_99: -3.42689033e-12 + art_sys_100: 1.75952205e-15 + art_sys_101: 3.70493469e-12 + art_sys_102: -1.82588182e-11 + art_sys_103: -3.71391209e-17 + art_sys_104: 2.55571140e-12 + art_sys_105: 4.74362196e-12 + art_sys_106: 5.21734154e-12 + art_sys_107: 2.21872421e-11 + art_sys_108: 7.71094533e-12 + art_sys_109: -2.99116179e-13 + art_sys_110: -2.97739865e-10 + art_sys_111: 1.08910568e-10 + art_sys_112: -1.50043262e-04 + art_sys_113: 3.39943357e-15 + art_sys_114: -5.82259723e-14 + art_sys_115: 2.61814216e-13 + art_sys_116: -2.66742584e-11 + art_sys_117: -2.90248321e-14 + art_sys_118: -1.62050037e-11 + art_sys_119: -5.15914093e-11 + art_sys_120: -1.21923814e-05 + art_sys_121: 2.58593911e-14 + art_sys_122: 5.19873356e-11 + art_sys_123: 1.31501763e-11 + art_sys_124: 2.05760773e-11 + art_sys_125: -4.91667863e-14 + art_sys_126: -5.86571175e-06 + art_sys_127: -1.46730321e-11 + art_sys_128: -2.80562314e-11 + art_sys_129: -1.21316961e-13 + art_sys_130: 5.26252646e-10 + art_sys_131: 1.68903833e-12 + art_sys_132: 2.22135902e-10 + art_sys_133: -1.16798909e-09 + art_sys_134: -7.34175806e-07 + art_sys_135: -2.15456394e-10 + art_sys_136: -4.99384088e-12 + art_sys_137: 1.82295585e-10 + art_sys_138: -9.70807390e-12 + art_sys_139: -2.73989953e-09 + art_sys_140: 1.03997654e-12 + art_sys_141: -1.09820117e-07 + art_sys_142: 1.67033340e-12 + art_sys_143: 1.93749025e-10 + art_sys_144: -6.27430984e-12 + art_sys_145: -1.25433726e-10 + art_sys_146: -1.44221902e-11 + art_sys_147: 8.98101733e-14 + art_sys_148: 3.70785446e-14 + art_sys_149: -2.88948599e-13 + art_sys_150: -7.06430282e-11 + art_sys_151: -2.43333742e-09 + art_sys_152: -4.49307506e-13 + art_sys_153: -1.90916569e-10 + art_sys_154: -5.67769775e-12 + art_sys_155: 8.55932383e-13 + art_sys_156: -0.0 + art_sys_157: -3.52375524e-12 art_sys_158: -0.0 - art_sys_159: 2.38601568e-12 - art_sys_160: -6.86868305e-13 - art_sys_161: -2.36288335e-12 - art_sys_162: -6.56503183e-14 - art_sys_163: -2.18122979e-11 - art_sys_164: -3.42623691e-12 - art_sys_165: 1.61785986e-14 - art_sys_166: 2.01888413e-20 - art_sys_167: 1.93824942e-20 - art_sys_168: -6.86178807e-21 - art_sys_169: 5.03477954e-22 - art_sys_170: -6.27372721e-22 - art_sys_171: 4.40470081e-22 - art_sys_172: 2.25969600e-22 - art_sys_173: -7.01981135e-23 - art_sys_174: -5.45478511e-23 - art_sys_175: 2.91438505e-25 - art_sys_176: 5.56818718e-25 - art_sys_177: 1.07328760e-23 - art_sys_178: -3.85028224e-24 - art_sys_179: 2.26121868e-24 - art_sys_180: -3.03339529e-24 - art_sys_181: -8.12879039e-27 - art_sys_182: 8.23989801e-25 - art_sys_183: 1.13753730e-26 - art_sys_184: -2.05303098e-28 - art_sys_185: -9.99816653e-29 + art_sys_159: -3.05640081e-11 + art_sys_160: 1.39232717e-13 + art_sys_161: 4.18151555e-12 + art_sys_162: 4.18151555e-12 + art_sys_163: 3.73274501e-12 + art_sys_164: 3.73274501e-12 + art_sys_165: -4.30574316e-26 + art_sys_166: 1.43203548e-26 + art_sys_167: 0.0 + art_sys_168: -3.35924490e-21 + art_sys_169: -3.03468362e-21 + art_sys_170: -6.31460988e-22 + art_sys_171: -9.10987784e-22 + art_sys_172: 3.36420228e-22 + art_sys_173: 1.76124865e-23 + art_sys_174: 2.44655597e-23 + art_sys_175: 1.47833689e-23 + art_sys_176: -6.28732796e-24 + art_sys_177: 2.81251808e-24 + art_sys_178: 4.04244442e-24 + art_sys_179: -2.75247877e-25 + art_sys_180: -8.06798310e-25 + art_sys_181: 1.33822486e-24 + art_sys_182: -4.29569646e-25 + art_sys_183: 3.80034297e-27 + art_sys_184: 3.95015837e-27 + art_sys_185: -1.13710977e-27 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -61058,191 +61058,191 @@ bins: RelativeStatFSR-: -9.98679392e-05 luminosity_uncertainty: 5.28587800e-04 uncorrelated_uncertainty: 2.03303000e-04 -- art_sys_1: 5.28187038e-30 - art_sys_2: 1.17218326e-29 +- art_sys_1: 4.39655329e-30 + art_sys_2: 1.69172620e-29 art_sys_3: -7.43038884e-15 - art_sys_4: 2.01704203e-28 + art_sys_4: 2.31347648e-27 art_sys_5: 7.53523553e-15 - art_sys_6: 1.02088962e-28 - art_sys_7: 2.04793705e-28 + art_sys_6: 1.93993736e-28 + art_sys_7: -8.43275847e-28 art_sys_8: 7.60416551e-14 - art_sys_9: -3.29304006e-28 - art_sys_10: 1.30940568e-28 + art_sys_9: -4.09018654e-28 + art_sys_10: 7.83665989e-28 art_sys_11: 4.66417533e-13 - art_sys_12: 1.16042442e-26 - art_sys_13: -2.04853214e-25 - art_sys_14: 9.41932482e-27 + art_sys_12: -1.35292033e-27 + art_sys_13: 5.10840289e-25 + art_sys_14: -4.07938828e-26 art_sys_15: -7.46096033e-12 - art_sys_16: -1.26276035e-25 - art_sys_17: -3.18678121e-25 + art_sys_16: -1.25430670e-25 + art_sys_17: -4.49297101e-25 art_sys_18: -5.35552667e-11 - art_sys_19: -2.27536362e-24 - art_sys_20: 2.92899168e-25 - art_sys_21: 6.88444324e-11 - art_sys_22: -1.30869519e-26 - art_sys_23: -5.97543518e-24 - art_sys_24: 5.88969421e-11 - art_sys_25: -3.22981194e-16 - art_sys_26: -3.49325237e-16 - art_sys_27: -3.27691609e-17 - art_sys_28: 1.05789893e-23 - art_sys_29: 8.48023005e-21 - art_sys_30: -5.55932384e-18 - art_sys_31: 2.13363869e-17 - art_sys_32: 5.10363286e-17 - art_sys_33: 4.89233421e-18 - art_sys_34: 2.81668088e-09 - art_sys_35: 1.18006120e-21 - art_sys_36: -3.21862835e-10 - art_sys_37: -2.96614347e-20 - art_sys_38: -2.25363400e-17 - art_sys_39: -2.96552631e-17 - art_sys_40: 7.32906808e-09 - art_sys_41: -6.22231422e-18 - art_sys_42: -2.29389110e-21 - art_sys_43: 9.17519112e-19 - art_sys_44: -9.86207356e-18 - art_sys_45: 1.72459236e-17 - art_sys_46: 1.01041792e-17 - art_sys_47: 3.55230993e-07 - art_sys_48: 8.29038213e-15 - art_sys_49: 4.52633665e-14 - art_sys_50: 6.01241645e-14 - art_sys_51: 1.21029040e-14 - art_sys_52: -1.17795447e-15 - art_sys_53: -1.64655160e-15 - art_sys_54: -1.15059368e-15 - art_sys_55: 1.74573860e-16 - art_sys_56: 2.84125617e-17 - art_sys_57: -4.45152053e-07 - art_sys_58: 3.15752875e-17 - art_sys_59: 1.00375574e-16 - art_sys_60: 9.08691376e-14 - art_sys_61: 5.00104156e-18 - art_sys_62: 1.15708903e-06 - art_sys_63: 5.53310805e-16 - art_sys_64: 1.40030502e-13 - art_sys_65: -1.19714121e-17 - art_sys_66: 1.05832090e-16 - art_sys_67: -1.22196207e-16 - art_sys_68: 1.78008482e-13 - art_sys_69: -6.56289641e-14 - art_sys_70: 4.37640930e-13 - art_sys_71: -9.91339513e-06 - art_sys_72: -6.29133822e-13 - art_sys_73: -1.07050140e-14 - art_sys_74: 6.47018072e-15 - art_sys_75: -1.80952976e-15 - art_sys_76: 2.03524683e-16 - art_sys_77: -1.82345629e-05 - art_sys_78: 7.31702188e-15 - art_sys_79: -1.71467546e-15 - art_sys_80: -1.10552852e-16 - art_sys_81: 3.22602917e-16 - art_sys_82: -6.26010055e-16 - art_sys_83: 1.31842990e-12 - art_sys_84: -6.73875615e-16 - art_sys_85: -9.97625422e-17 - art_sys_86: 1.15604628e-10 - art_sys_87: -3.79755214e-05 - art_sys_88: -8.27888393e-12 - art_sys_89: 8.76883246e-14 - art_sys_90: 1.74184572e-11 - art_sys_91: -9.62204381e-13 - art_sys_92: 5.52908404e-11 - art_sys_93: -2.27230086e-12 - art_sys_94: -3.16882105e-12 - art_sys_95: 1.33790684e-11 - art_sys_96: 2.25936619e-12 - art_sys_97: 3.11176342e-09 - art_sys_98: -6.25312994e-13 - art_sys_99: 1.15353384e-13 - art_sys_100: -6.14619313e-12 - art_sys_101: -4.70962248e-13 - art_sys_102: -1.25949380e-12 - art_sys_103: 9.91226842e-12 - art_sys_104: 2.05012206e-16 - art_sys_105: 1.47143761e-11 - art_sys_106: -2.50612195e-05 - art_sys_107: -8.80309655e-12 - art_sys_108: 5.41669725e-13 - art_sys_109: 3.00749720e-12 - art_sys_110: -9.38461738e-09 - art_sys_111: 5.15223783e-10 - art_sys_112: -1.83390775e-10 - art_sys_113: 4.44480081e-14 - art_sys_114: -3.41896432e-10 - art_sys_115: -1.75672007e-10 - art_sys_116: -8.31261609e-05 - art_sys_117: -5.91410984e-10 - art_sys_118: 8.80265299e-10 - art_sys_119: -5.53748528e-10 - art_sys_120: -1.00698567e-05 - art_sys_121: -3.34061819e-10 - art_sys_122: 2.67637966e-09 - art_sys_123: -2.57140111e-09 - art_sys_124: 3.05602040e-10 - art_sys_125: -2.93549767e-06 - art_sys_126: -8.63466334e-10 - art_sys_127: -2.03329415e-09 - art_sys_128: -1.70496350e-09 - art_sys_129: -2.90816068e-10 - art_sys_130: -4.69757882e-09 - art_sys_131: 3.98405203e-07 - art_sys_132: 7.85758760e-10 - art_sys_133: -8.05237531e-09 - art_sys_134: -5.93582174e-12 - art_sys_135: -2.47240126e-10 - art_sys_136: -7.40635881e-10 - art_sys_137: 9.33094738e-13 - art_sys_138: 1.18509227e-15 - art_sys_139: -1.91084156e-10 - art_sys_140: -6.90170931e-10 - art_sys_141: -6.42177417e-09 - art_sys_142: 1.90770310e-10 - art_sys_143: -2.56784908e-13 - art_sys_144: 2.79024868e-14 - art_sys_145: 2.69402789e-12 - art_sys_146: 0.0 - art_sys_147: -2.43323474e-11 - art_sys_148: 1.25879464e-10 - art_sys_149: 1.25879464e-10 - art_sys_150: 4.07748002e-11 - art_sys_151: 4.07748002e-11 - art_sys_152: -9.42093135e-12 - art_sys_153: -4.86162852e-12 - art_sys_154: 1.63820097e-14 - art_sys_155: -1.54160624e-24 - art_sys_156: 1.78170434e-26 - art_sys_157: 7.08653642e-27 + art_sys_19: -1.05831706e-24 + art_sys_20: -5.53179317e-25 + art_sys_21: -6.88444324e-11 + art_sys_22: 5.88618637e-24 + art_sys_23: -2.15968996e-25 + art_sys_24: -5.88969421e-11 + art_sys_25: 4.27820490e-24 + art_sys_26: -9.19039658e-24 + art_sys_27: 2.81668088e-09 + art_sys_28: 6.27326447e-21 + art_sys_29: 3.21862835e-10 + art_sys_30: 1.78817872e-23 + art_sys_31: -4.37891781e-20 + art_sys_32: 7.32906809e-09 + art_sys_33: -6.59095680e-22 + art_sys_34: -6.45451937e-18 + art_sys_35: 5.82879776e-19 + art_sys_36: 2.98419967e-15 + art_sys_37: 8.01585139e-16 + art_sys_38: -1.94657180e-16 + art_sys_39: -5.91560731e-17 + art_sys_40: 3.97053561e-17 + art_sys_41: -5.45838262e-18 + art_sys_42: 2.94657238e-17 + art_sys_43: 3.80807890e-18 + art_sys_44: 3.09298997e-19 + art_sys_45: -3.43018346e-17 + art_sys_46: -4.44292516e-17 + art_sys_47: 3.55230992e-07 + art_sys_48: -1.08999713e-14 + art_sys_49: 4.45152052e-07 + art_sys_50: -2.30485322e-17 + art_sys_51: 3.66597587e-17 + art_sys_52: 3.52158770e-16 + art_sys_53: 2.85434040e-15 + art_sys_54: 1.15708906e-06 + art_sys_55: 4.11327060e-16 + art_sys_56: -1.34539181e-16 + art_sys_57: 5.61896608e-17 + art_sys_58: -2.00473654e-17 + art_sys_59: -9.53604635e-13 + art_sys_60: -9.91338615e-06 + art_sys_61: -2.07487048e-14 + art_sys_62: -3.04719751e-17 + art_sys_63: 1.82345547e-05 + art_sys_64: 6.92085807e-14 + art_sys_65: 4.38478046e-15 + art_sys_66: -2.25276699e-15 + art_sys_67: 4.66142674e-15 + art_sys_68: 1.30601670e-16 + art_sys_69: 5.07678139e-16 + art_sys_70: 5.20523411e-16 + art_sys_71: 5.76799618e-16 + art_sys_72: -4.92939176e-17 + art_sys_73: -1.12347767e-16 + art_sys_74: -4.64491913e-15 + art_sys_75: 7.29705332e-17 + art_sys_76: -1.83126434e-14 + art_sys_77: -8.17478306e-15 + art_sys_78: -1.48888885e-15 + art_sys_79: 1.46163580e-17 + art_sys_80: 2.29477612e-15 + art_sys_81: 5.23732374e-14 + art_sys_82: -3.79756377e-05 + art_sys_83: -5.47342961e-16 + art_sys_84: 6.97035104e-16 + art_sys_85: 3.59320711e-16 + art_sys_86: -5.63703401e-17 + art_sys_87: -1.42711545e-17 + art_sys_88: -6.26160519e-13 + art_sys_89: -2.57449253e-19 + art_sys_90: -3.11211994e-13 + art_sys_91: -2.43580302e-11 + art_sys_92: -2.23581755e-18 + art_sys_93: -1.51550256e-18 + art_sys_94: -2.12459917e-12 + art_sys_95: 1.30409319e-15 + art_sys_96: 7.64333632e-11 + art_sys_97: -7.70868622e-13 + art_sys_98: -1.88349385e-16 + art_sys_99: 5.58267533e-12 + art_sys_100: -6.51118319e-14 + art_sys_101: -5.98398298e-12 + art_sys_102: 8.12327606e-13 + art_sys_103: -1.45258676e-17 + art_sys_104: 9.31457536e-14 + art_sys_105: -1.72032047e-11 + art_sys_106: 5.89122643e-13 + art_sys_107: -1.51572518e-10 + art_sys_108: -2.79615577e-11 + art_sys_109: 1.09369321e-12 + art_sys_110: -1.26542741e-09 + art_sys_111: 1.54327830e-11 + art_sys_112: -2.50603720e-05 + art_sys_113: 4.52047564e-16 + art_sys_114: 2.09695938e-13 + art_sys_115: 3.95375932e-13 + art_sys_116: 6.63610722e-11 + art_sys_117: 1.13504259e-13 + art_sys_118: -1.17145592e-12 + art_sys_119: 3.57251520e-11 + art_sys_120: 8.31318322e-05 + art_sys_121: -9.00514286e-14 + art_sys_122: -8.29194935e-12 + art_sys_123: -5.29900869e-11 + art_sys_124: 2.22130048e-11 + art_sys_125: 1.29314869e-13 + art_sys_126: 1.00692436e-05 + art_sys_127: 6.89611313e-11 + art_sys_128: 2.08559227e-10 + art_sys_129: 3.46611994e-13 + art_sys_130: -1.90614726e-09 + art_sys_131: -4.82390499e-12 + art_sys_132: -1.55731973e-09 + art_sys_133: 4.24256989e-09 + art_sys_134: 2.93596996e-06 + art_sys_135: 4.54316281e-10 + art_sys_136: 1.41715539e-11 + art_sys_137: -6.51497044e-10 + art_sys_138: 3.74471255e-11 + art_sys_139: 9.93069486e-09 + art_sys_140: -3.12991329e-12 + art_sys_141: 3.98233435e-07 + art_sys_142: -3.09528780e-11 + art_sys_143: -7.02922843e-10 + art_sys_144: 2.11705008e-11 + art_sys_145: 5.12674202e-10 + art_sys_146: 5.21141728e-11 + art_sys_147: -3.79598264e-13 + art_sys_148: -2.12670018e-13 + art_sys_149: 2.96617363e-12 + art_sys_150: 2.34926418e-10 + art_sys_151: 6.85706258e-09 + art_sys_152: 1.01748775e-12 + art_sys_153: 6.26987632e-10 + art_sys_154: -8.08264428e-13 + art_sys_155: -2.64287929e-12 + art_sys_156: 0.0 + art_sys_157: 1.43335215e-11 art_sys_158: 0.0 - art_sys_159: -6.61060294e-12 - art_sys_160: 1.91209741e-12 - art_sys_161: 6.60368819e-12 - art_sys_162: 1.83377495e-13 - art_sys_163: 6.20568391e-11 - art_sys_164: 9.80573044e-12 - art_sys_165: -8.38054246e-14 - art_sys_166: -5.67407850e-20 - art_sys_167: -5.39348863e-20 - art_sys_168: 1.91002284e-20 - art_sys_169: -1.49729805e-21 - art_sys_170: 1.90651565e-21 - art_sys_171: -1.41927085e-21 - art_sys_172: -6.71110681e-22 - art_sys_173: 2.24765576e-22 - art_sys_174: 1.86699636e-22 - art_sys_175: -8.86772635e-25 - art_sys_176: -3.55074282e-24 - art_sys_177: -3.39860214e-23 - art_sys_178: 1.28140251e-23 - art_sys_179: -7.47977412e-24 - art_sys_180: 1.00682159e-23 - art_sys_181: 2.42428262e-26 - art_sys_182: -2.27474218e-24 - art_sys_183: -3.27879489e-26 - art_sys_184: 6.50015815e-28 - art_sys_185: 3.38830165e-28 + art_sys_159: 1.16357952e-10 + art_sys_160: 4.79434260e-13 + art_sys_161: -1.59070677e-11 + art_sys_162: -1.59070677e-11 + art_sys_163: -1.37525348e-11 + art_sys_164: -1.37525348e-11 + art_sys_165: 1.59510206e-25 + art_sys_166: -5.30680570e-26 + art_sys_167: -0.0 + art_sys_168: 1.02076356e-20 + art_sys_169: 8.63846492e-21 + art_sys_170: 4.93422749e-21 + art_sys_171: 2.30818597e-21 + art_sys_172: -9.45980095e-22 + art_sys_173: -7.93090644e-23 + art_sys_174: -7.60894538e-23 + art_sys_175: -4.68275834e-23 + art_sys_176: 1.99478790e-23 + art_sys_177: -8.63231025e-24 + art_sys_178: -1.28735677e-23 + art_sys_179: 8.56878803e-25 + art_sys_180: 3.03934036e-24 + art_sys_181: -4.10632301e-24 + art_sys_182: 1.21090573e-24 + art_sys_183: -1.02717581e-26 + art_sys_184: -1.38694893e-26 + art_sys_185: 4.30327166e-27 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -61349,191 +61349,191 @@ bins: RelativeStatFSR-: -3.72079958e-05 luminosity_uncertainty: 1.85734640e-04 uncorrelated_uncertainty: 7.14364000e-05 -- art_sys_1: 2.63471876e-31 - art_sys_2: 2.53229339e-30 +- art_sys_1: 2.41178215e-31 + art_sys_2: 3.72194126e-30 art_sys_3: -2.88475320e-16 - art_sys_4: 2.81669732e-29 + art_sys_4: 1.36967103e-28 art_sys_5: 1.90888401e-15 - art_sys_6: 1.08917538e-29 - art_sys_7: 1.56037584e-29 + art_sys_6: 2.05142113e-29 + art_sys_7: -4.83067439e-29 art_sys_8: 9.02636735e-15 - art_sys_9: -2.19291769e-29 - art_sys_10: 1.48994333e-29 + art_sys_9: -1.04371304e-29 + art_sys_10: 1.70347829e-29 art_sys_11: 2.75748850e-14 - art_sys_12: 3.26935598e-28 - art_sys_13: -1.35798929e-26 - art_sys_14: 5.41265110e-28 + art_sys_12: -1.71424086e-29 + art_sys_13: 3.27356426e-26 + art_sys_14: -3.07619688e-27 art_sys_15: -4.37573447e-13 - art_sys_16: -3.18250418e-27 - art_sys_17: -6.31580453e-27 + art_sys_16: 1.01312442e-26 + art_sys_17: -1.52008562e-26 art_sys_18: -3.55516846e-13 - art_sys_19: -7.74302206e-27 - art_sys_20: -5.18975654e-26 - art_sys_21: 2.27126531e-12 - art_sys_22: -7.26943376e-27 - art_sys_23: 3.92881494e-25 - art_sys_24: -3.54881332e-12 - art_sys_25: -4.07620890e-17 - art_sys_26: 8.09906978e-17 - art_sys_27: 2.89403484e-18 - art_sys_28: -1.12348252e-24 - art_sys_29: -1.78614394e-21 - art_sys_30: -2.90947275e-18 - art_sys_31: 4.71613689e-19 - art_sys_32: -2.12760441e-18 - art_sys_33: -2.51471397e-19 - art_sys_34: -5.93497863e-10 - art_sys_35: 7.21185812e-21 - art_sys_36: 7.39742506e-10 - art_sys_37: 6.86917252e-20 - art_sys_38: 1.04986417e-18 - art_sys_39: 1.94286570e-17 - art_sys_40: -4.80459635e-09 - art_sys_41: 4.07910651e-18 - art_sys_42: 5.97324933e-22 - art_sys_43: 1.73125440e-20 - art_sys_44: 9.87149368e-19 - art_sys_45: -1.00787706e-18 - art_sys_46: -7.34632847e-20 - art_sys_47: -1.26122133e-08 - art_sys_48: 3.11334182e-15 - art_sys_49: 6.98377399e-15 - art_sys_50: -3.10497434e-14 - art_sys_51: 1.54650123e-14 - art_sys_52: -7.12509892e-15 - art_sys_53: 6.57263797e-16 - art_sys_54: -1.04917373e-16 - art_sys_55: 6.13390779e-17 - art_sys_56: -4.08073777e-18 - art_sys_57: -1.66135831e-07 - art_sys_58: 1.07688962e-15 - art_sys_59: -1.52548311e-15 - art_sys_60: -2.03653275e-14 - art_sys_61: -1.72266125e-18 - art_sys_62: -2.59308345e-07 - art_sys_63: 2.23177717e-17 - art_sys_64: -3.16212388e-14 - art_sys_65: 2.51627281e-16 - art_sys_66: -3.84233882e-16 - art_sys_67: -5.01844143e-17 - art_sys_68: -6.03938946e-15 - art_sys_69: 2.19753427e-15 - art_sys_70: -8.60503346e-14 - art_sys_71: -3.66355410e-07 - art_sys_72: 9.80324741e-14 - art_sys_73: -9.96043585e-14 - art_sys_74: -1.80403446e-14 - art_sys_75: 1.52513307e-15 - art_sys_76: -6.73908368e-16 - art_sys_77: 2.95153598e-06 - art_sys_78: -1.18369684e-15 - art_sys_79: 8.20014305e-15 - art_sys_80: 3.46714348e-16 - art_sys_81: 8.23696768e-16 - art_sys_82: 1.77217802e-16 - art_sys_83: -6.70218732e-13 - art_sys_84: -2.74956028e-16 - art_sys_85: 1.67668432e-16 - art_sys_86: 3.11250878e-11 - art_sys_87: 1.41979358e-06 - art_sys_88: 1.43052022e-11 - art_sys_89: -2.04127241e-13 - art_sys_90: -6.33078406e-13 - art_sys_91: 4.78679214e-13 - art_sys_92: -2.06459077e-12 - art_sys_93: 8.50432219e-14 - art_sys_94: 1.33451344e-13 - art_sys_95: -7.06875158e-12 - art_sys_96: -3.64742764e-12 - art_sys_97: -1.57073122e-09 - art_sys_98: -2.97527512e-14 - art_sys_99: -4.20128491e-15 - art_sys_100: -2.28882357e-14 - art_sys_101: 2.54655531e-13 - art_sys_102: 1.68216704e-13 - art_sys_103: -2.68730447e-12 - art_sys_104: 8.65456912e-17 - art_sys_105: -8.12692267e-12 - art_sys_106: 1.27219466e-05 - art_sys_107: 2.06873845e-11 - art_sys_108: -1.29025261e-12 - art_sys_109: -8.89969883e-12 - art_sys_110: -3.61786427e-09 - art_sys_111: -2.60649826e-10 - art_sys_112: 1.70836575e-09 - art_sys_113: -2.81021299e-13 - art_sys_114: 1.65452707e-10 - art_sys_115: 2.79202682e-10 - art_sys_116: -1.99149843e-05 - art_sys_117: 1.53766299e-10 - art_sys_118: -1.39151799e-09 - art_sys_119: -8.63061295e-11 - art_sys_120: 4.87457290e-05 - art_sys_121: 7.06873664e-10 - art_sys_122: 2.79334886e-09 - art_sys_123: 9.27938769e-09 - art_sys_124: -7.04480098e-10 - art_sys_125: 4.65936050e-06 - art_sys_126: 2.02475062e-09 - art_sys_127: 4.01729174e-09 - art_sys_128: 4.08040855e-09 - art_sys_129: 3.66121190e-09 - art_sys_130: 1.11943705e-08 - art_sys_131: -9.35608597e-07 - art_sys_132: -2.07632522e-09 - art_sys_133: 1.91239310e-08 - art_sys_134: 1.65004323e-11 - art_sys_135: 8.38267115e-10 - art_sys_136: 1.97484168e-09 - art_sys_137: -2.86598694e-12 - art_sys_138: -5.49745484e-16 - art_sys_139: 5.10357770e-10 - art_sys_140: 1.89136540e-09 - art_sys_141: 3.47238669e-08 - art_sys_142: -7.04274935e-10 - art_sys_143: 7.43114556e-13 - art_sys_144: 2.03948154e-13 - art_sys_145: -1.14269711e-11 - art_sys_146: 0.0 - art_sys_147: 8.78265547e-11 - art_sys_148: -2.39358859e-10 - art_sys_149: -2.39358859e-10 - art_sys_150: -2.89721377e-10 - art_sys_151: -2.89721377e-10 - art_sys_152: 6.41021390e-11 - art_sys_153: 4.37846874e-11 - art_sys_154: -6.72626419e-14 - art_sys_155: 3.13595438e-23 - art_sys_156: -3.62767087e-26 - art_sys_157: -1.56717747e-26 + art_sys_19: 3.25375588e-27 + art_sys_20: 1.22662967e-25 + art_sys_21: -2.27126531e-12 + art_sys_22: -4.31022198e-25 + art_sys_23: 8.76768944e-26 + art_sys_24: 3.54881332e-12 + art_sys_25: -3.99355060e-25 + art_sys_26: 1.01320949e-24 + art_sys_27: -5.93497863e-10 + art_sys_28: -6.89617715e-21 + art_sys_29: -7.39742506e-10 + art_sys_30: 2.36726112e-24 + art_sys_31: 2.44487820e-20 + art_sys_32: -4.80459635e-09 + art_sys_33: 2.52905986e-22 + art_sys_34: 2.29127177e-19 + art_sys_35: -1.73254376e-19 + art_sys_36: -8.98820830e-17 + art_sys_37: -2.77734633e-17 + art_sys_38: 1.64995300e-17 + art_sys_39: -1.04052416e-18 + art_sys_40: -1.18886462e-18 + art_sys_41: 1.58862972e-18 + art_sys_42: -1.48042036e-18 + art_sys_43: -2.67360364e-19 + art_sys_44: -2.81017597e-19 + art_sys_45: 1.76309191e-18 + art_sys_46: 2.43979234e-18 + art_sys_47: -1.26122136e-08 + art_sys_48: -3.87914842e-15 + art_sys_49: 1.66135830e-07 + art_sys_50: 1.28807109e-18 + art_sys_51: -2.12210396e-18 + art_sys_52: 1.08700251e-16 + art_sys_53: -6.50988051e-16 + art_sys_54: -2.59308351e-07 + art_sys_55: -1.87672086e-17 + art_sys_56: -5.02427535e-17 + art_sys_57: -3.16320008e-18 + art_sys_58: 1.12652984e-18 + art_sys_59: -1.35382274e-13 + art_sys_60: -3.66356093e-07 + art_sys_61: 7.75452249e-16 + art_sys_62: 1.17098419e-17 + art_sys_63: -2.95153553e-06 + art_sys_64: 3.32788689e-14 + art_sys_65: -3.12881629e-15 + art_sys_66: 1.58418130e-14 + art_sys_67: -1.64970944e-15 + art_sys_68: 1.35888728e-15 + art_sys_69: -1.04560325e-15 + art_sys_70: -1.50342407e-15 + art_sys_71: -2.22789734e-15 + art_sys_72: 2.44032706e-16 + art_sys_73: 3.54775609e-16 + art_sys_74: 1.73945668e-16 + art_sys_75: -3.91503010e-16 + art_sys_76: -1.05756823e-13 + art_sys_77: -9.05117850e-15 + art_sys_78: -5.79292989e-15 + art_sys_79: -1.58141079e-16 + art_sys_80: -2.44579687e-15 + art_sys_81: -1.78788510e-15 + art_sys_82: 1.41979795e-06 + art_sys_83: 6.38251514e-16 + art_sys_84: -3.24857883e-16 + art_sys_85: 3.26680614e-16 + art_sys_86: 1.01441602e-16 + art_sys_87: 1.12980041e-16 + art_sys_88: 3.17213152e-13 + art_sys_89: -9.46224332e-18 + art_sys_90: -6.54506037e-14 + art_sys_91: 4.07918750e-13 + art_sys_92: 1.69267707e-17 + art_sys_93: -3.95684666e-18 + art_sys_94: 1.02829133e-11 + art_sys_95: 2.96870637e-16 + art_sys_96: -2.90731685e-12 + art_sys_97: 2.87977518e-14 + art_sys_98: -5.70279821e-17 + art_sys_99: -2.08001337e-13 + art_sys_100: -1.38156113e-14 + art_sys_101: 2.21858087e-13 + art_sys_102: 2.74896017e-12 + art_sys_103: 1.21279472e-18 + art_sys_104: -1.23308214e-13 + art_sys_105: 4.03723536e-11 + art_sys_106: -3.30514240e-13 + art_sys_107: -3.71059912e-11 + art_sys_108: 6.56471248e-11 + art_sys_109: -2.48056700e-12 + art_sys_110: -2.57863791e-10 + art_sys_111: -8.71850468e-12 + art_sys_112: 1.27215547e-05 + art_sys_113: -2.47644035e-16 + art_sys_114: -5.06263769e-13 + art_sys_115: -4.05400443e-14 + art_sys_116: -1.98068866e-10 + art_sys_117: -1.86736306e-13 + art_sys_118: 1.35040218e-12 + art_sys_119: -4.74168891e-10 + art_sys_120: 1.99180926e-05 + art_sys_121: 2.47290983e-13 + art_sys_122: -7.60758833e-12 + art_sys_123: 8.30867937e-11 + art_sys_124: -1.06833534e-11 + art_sys_125: -7.76454148e-13 + art_sys_126: -4.87430395e-05 + art_sys_127: -9.62278974e-12 + art_sys_128: 9.64705343e-11 + art_sys_129: -1.71605439e-12 + art_sys_130: 4.49528801e-09 + art_sys_131: 2.39047625e-11 + art_sys_132: -4.48571340e-10 + art_sys_133: -9.88794434e-09 + art_sys_134: -4.66017339e-06 + art_sys_135: -1.64012828e-09 + art_sys_136: -7.13317523e-11 + art_sys_137: 1.62270496e-09 + art_sys_138: -6.95612330e-11 + art_sys_139: -2.33608348e-08 + art_sys_140: 1.36065018e-11 + art_sys_141: -9.34910256e-07 + art_sys_142: -8.21490812e-12 + art_sys_143: 1.64636360e-09 + art_sys_144: -6.59146890e-11 + art_sys_145: -7.86076141e-10 + art_sys_146: -1.24785817e-10 + art_sys_147: 3.44414991e-13 + art_sys_148: -2.83340503e-13 + art_sys_149: -3.15906874e-11 + art_sys_150: -7.57926223e-10 + art_sys_151: -3.51025196e-08 + art_sys_152: -8.38041411e-12 + art_sys_153: -2.10321818e-09 + art_sys_154: 5.12501726e-13 + art_sys_155: 1.05290103e-11 + art_sys_156: -0.0 + art_sys_157: -8.83378535e-12 art_sys_158: -0.0 - art_sys_159: 3.52253420e-11 - art_sys_160: -1.00736902e-11 - art_sys_161: -3.44769615e-11 - art_sys_162: -9.58971531e-13 - art_sys_163: -3.10691101e-10 - art_sys_164: -4.83182860e-11 - art_sys_165: -4.72925211e-14 - art_sys_166: 2.92453587e-19 - art_sys_167: 2.84416523e-19 - art_sys_168: -1.00630946e-19 - art_sys_169: 4.86917139e-21 - art_sys_170: -6.73200162e-21 - art_sys_171: 5.17853852e-21 - art_sys_172: 3.03065978e-21 - art_sys_173: -8.34288169e-22 - art_sys_174: -5.70020450e-22 - art_sys_175: 3.78370641e-24 - art_sys_176: -4.98523957e-24 - art_sys_177: 1.30198169e-22 - art_sys_178: -4.26095578e-23 - art_sys_179: 2.53272251e-23 - art_sys_180: -3.37741625e-23 - art_sys_181: -1.07939412e-25 - art_sys_182: 1.22110629e-23 - art_sys_183: 1.59365117e-25 - art_sys_184: -2.50980192e-27 - art_sys_185: -1.06131570e-27 + art_sys_159: -2.15678766e-10 + art_sys_160: 8.26436646e-12 + art_sys_161: 2.93819969e-11 + art_sys_162: 2.93819969e-11 + art_sys_163: 2.93856243e-11 + art_sys_164: 2.93856243e-11 + art_sys_165: -3.32818440e-25 + art_sys_166: 1.10549155e-25 + art_sys_167: 0.0 + art_sys_168: -5.22760812e-20 + art_sys_169: -4.35552938e-20 + art_sys_170: -2.86873578e-22 + art_sys_171: -1.25365761e-20 + art_sys_172: 4.87517530e-21 + art_sys_173: 6.59799940e-23 + art_sys_174: 3.05391340e-22 + art_sys_175: 1.79105810e-22 + art_sys_176: -7.60855451e-23 + art_sys_177: 3.59061245e-23 + art_sys_178: 4.84990832e-23 + art_sys_179: -3.32440165e-24 + art_sys_180: -5.91139853e-24 + art_sys_181: 1.71478053e-23 + art_sys_182: -6.18555568e-24 + art_sys_183: 5.79666962e-26 + art_sys_184: 3.72059863e-26 + art_sys_185: -8.27324524e-27 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -61640,191 +61640,191 @@ bins: RelativeStatFSR-: -1.28616083e-05 luminosity_uncertainty: 6.05758400e-05 uncorrelated_uncertainty: 2.32984000e-05 -- art_sys_1: 6.58281735e-33 - art_sys_2: 1.03495208e-31 +- art_sys_1: 6.32793146e-33 + art_sys_2: 1.50683304e-31 art_sys_3: -6.78656170e-18 - art_sys_4: 8.24816667e-31 + art_sys_4: 3.75966114e-30 art_sys_5: 7.62202025e-17 - art_sys_6: 4.16463643e-31 - art_sys_7: 6.97176890e-31 + art_sys_6: 7.94234348e-31 + art_sys_7: -1.06995054e-30 art_sys_8: 3.55099461e-16 - art_sys_9: -6.11884419e-31 - art_sys_10: 4.91754473e-31 + art_sys_9: -3.19515145e-31 + art_sys_10: -1.18676235e-30 art_sys_11: 7.42269415e-16 - art_sys_12: 1.23894462e-29 - art_sys_13: -3.81439134e-28 - art_sys_14: 6.24568674e-29 + art_sys_12: 2.61815180e-30 + art_sys_13: 8.60137436e-28 + art_sys_14: 1.72247175e-28 art_sys_15: -1.01999331e-14 - art_sys_16: 3.24717216e-28 - art_sys_17: 9.47374866e-28 + art_sys_16: -2.11035058e-28 + art_sys_17: 1.14114762e-27 art_sys_18: 1.64293548e-13 - art_sys_19: 7.65842681e-27 - art_sys_20: 1.57698640e-27 - art_sys_21: -2.40254580e-13 - art_sys_22: 6.31175385e-28 - art_sys_23: 3.47124384e-26 - art_sys_24: 8.79634453e-14 - art_sys_25: 4.63480453e-18 - art_sys_26: 1.13333067e-17 - art_sys_27: 1.68767133e-18 - art_sys_28: -9.31906037e-26 - art_sys_29: -1.66700583e-22 - art_sys_30: 7.08614107e-20 - art_sys_31: -4.17400903e-19 - art_sys_32: -7.30304505e-19 - art_sys_33: -3.43861165e-19 - art_sys_34: -5.53979338e-11 - art_sys_35: -4.55629678e-22 - art_sys_36: -4.94697152e-11 - art_sys_37: -4.61841856e-21 - art_sys_38: 4.14981006e-19 - art_sys_39: 1.23670506e-18 - art_sys_40: -3.05747034e-10 - art_sys_41: 2.59578133e-19 - art_sys_42: 5.50693223e-23 - art_sys_43: -1.07628614e-19 - art_sys_44: 5.19654485e-19 - art_sys_45: -5.55368346e-19 - art_sys_46: -8.18893907e-20 - art_sys_47: -3.52969140e-09 - art_sys_48: 1.55648097e-16 - art_sys_49: 5.97400032e-14 - art_sys_50: -1.83739549e-14 - art_sys_51: -5.45912809e-15 - art_sys_52: 4.98009573e-15 - art_sys_53: 1.45933611e-15 - art_sys_54: -1.85046770e-16 - art_sys_55: 2.78817484e-18 - art_sys_56: -9.24305640e-19 - art_sys_57: -8.28522730e-09 - art_sys_58: -1.73843127e-16 - art_sys_59: -1.02065730e-15 - art_sys_60: -2.43636993e-15 - art_sys_61: -7.48178109e-20 - art_sys_62: -3.10230105e-08 - art_sys_63: -7.19880767e-18 - art_sys_64: -3.76622911e-15 - art_sys_65: 3.40446395e-17 - art_sys_66: -3.56112561e-17 - art_sys_67: -2.61636991e-18 - art_sys_68: -3.66081729e-15 - art_sys_69: 1.34927696e-15 - art_sys_70: -1.10043725e-14 - art_sys_71: 1.38015545e-07 - art_sys_72: 1.42632771e-14 - art_sys_73: 6.46006166e-14 - art_sys_74: -1.90989691e-14 - art_sys_75: 1.54755755e-14 - art_sys_76: 1.59502349e-17 - art_sys_77: 4.18374788e-07 - art_sys_78: -1.67965852e-16 - art_sys_79: 1.09663438e-14 - art_sys_80: -2.17323508e-17 - art_sys_81: 2.14127419e-16 - art_sys_82: 2.40159792e-17 - art_sys_83: -4.72216720e-14 - art_sys_84: 5.28096453e-16 - art_sys_85: 1.46072940e-16 - art_sys_86: -8.47127129e-12 - art_sys_87: 7.83448625e-07 - art_sys_88: 2.97132734e-12 - art_sys_89: 5.99994511e-13 - art_sys_90: -3.59146768e-13 - art_sys_91: 3.42944537e-14 - art_sys_92: -1.14046539e-12 - art_sys_93: 4.68812917e-14 - art_sys_94: 6.96879929e-14 - art_sys_95: -4.95639036e-13 - art_sys_96: 2.02379463e-11 - art_sys_97: -1.10102117e-10 - art_sys_98: -3.21145498e-15 - art_sys_99: -2.37608212e-15 - art_sys_100: 1.36381059e-13 - art_sys_101: 2.02752353e-14 - art_sys_102: 1.05900884e-13 - art_sys_103: -1.87319788e-12 - art_sys_104: 1.18641803e-18 - art_sys_105: -4.95967397e-13 - art_sys_106: 8.97203116e-07 - art_sys_107: -8.31379415e-11 - art_sys_108: 5.07715859e-12 - art_sys_109: 2.43338459e-11 - art_sys_110: 4.49457055e-10 - art_sys_111: -1.82325223e-11 - art_sys_112: 2.55288697e-09 - art_sys_113: 4.36915946e-14 - art_sys_114: 9.09004017e-12 - art_sys_115: -1.56949147e-09 - art_sys_116: 5.98002623e-06 - art_sys_117: 4.36169946e-11 - art_sys_118: 7.86478717e-09 - art_sys_119: 6.52396337e-11 - art_sys_120: 1.01970974e-05 - art_sys_121: -3.34256221e-09 - art_sys_122: 1.67581119e-10 - art_sys_123: 1.22724214e-09 - art_sys_124: 2.92035943e-09 - art_sys_125: -2.62430339e-05 - art_sys_126: -8.16385564e-09 - art_sys_127: -1.71597733e-08 - art_sys_128: -1.59190817e-08 - art_sys_129: 5.68873561e-09 - art_sys_130: -4.39919759e-08 - art_sys_131: 3.76143451e-06 - art_sys_132: 4.34022736e-09 - art_sys_133: -7.55929199e-08 - art_sys_134: -5.97083182e-11 - art_sys_135: -1.14086878e-09 - art_sys_136: -6.52962255e-09 - art_sys_137: 1.08490324e-11 - art_sys_138: -3.90751224e-17 - art_sys_139: -1.53793980e-09 - art_sys_140: -5.80772710e-09 - art_sys_141: -1.94148250e-08 - art_sys_142: 1.07766176e-09 - art_sys_143: -3.21774714e-12 - art_sys_144: 1.41195838e-12 - art_sys_145: 2.04096834e-11 - art_sys_146: 0.0 - art_sys_147: -2.17103521e-10 - art_sys_148: 1.52467730e-09 - art_sys_149: 1.52467730e-09 - art_sys_150: 1.21291042e-10 - art_sys_151: 1.21291042e-10 - art_sys_152: -1.11792205e-10 - art_sys_153: 6.22072427e-12 - art_sys_154: 1.47137054e-13 - art_sys_155: 5.34380247e-23 - art_sys_156: 2.02380967e-25 - art_sys_157: 6.36358388e-26 + art_sys_19: 3.30942504e-27 + art_sys_20: -4.83104666e-27 + art_sys_21: 2.40254580e-13 + art_sys_22: -4.45069951e-26 + art_sys_23: -4.04810952e-27 + art_sys_24: -8.79634453e-14 + art_sys_25: -3.65490643e-26 + art_sys_26: 8.49270706e-26 + art_sys_27: -5.53979338e-11 + art_sys_28: 2.00725159e-22 + art_sys_29: 4.94697152e-11 + art_sys_30: -5.66056999e-25 + art_sys_31: 1.68254197e-21 + art_sys_32: -3.05747034e-10 + art_sys_33: 2.00645462e-23 + art_sys_34: 6.41318627e-20 + art_sys_35: -1.57034849e-20 + art_sys_36: -6.12084469e-17 + art_sys_37: -1.17283649e-17 + art_sys_38: 4.26396410e-18 + art_sys_39: 8.83534352e-19 + art_sys_40: -6.36337826e-19 + art_sys_41: 2.05541140e-19 + art_sys_42: -7.92065354e-19 + art_sys_43: -9.13475982e-20 + art_sys_44: -1.07866797e-19 + art_sys_45: 6.24078610e-19 + art_sys_46: 1.07268555e-18 + art_sys_47: -3.52969141e-09 + art_sys_48: -1.89680965e-16 + art_sys_49: 8.28522728e-09 + art_sys_50: 5.60376306e-19 + art_sys_51: -8.67506550e-19 + art_sys_52: 4.95459271e-18 + art_sys_53: -7.73984744e-17 + art_sys_54: -3.10230112e-08 + art_sys_55: -7.40566500e-18 + art_sys_56: -2.49774041e-18 + art_sys_57: -1.11719325e-18 + art_sys_58: 3.79570926e-19 + art_sys_59: 8.49012032e-15 + art_sys_60: 1.38015371e-07 + art_sys_61: 4.28113004e-16 + art_sys_62: 1.20291314e-18 + art_sys_63: -4.18374617e-07 + art_sys_64: -1.64477120e-14 + art_sys_65: -1.60489077e-14 + art_sys_66: -2.07809637e-14 + art_sys_67: 1.09066805e-14 + art_sys_68: -1.34219451e-15 + art_sys_69: 3.20596153e-15 + art_sys_70: 2.38772724e-15 + art_sys_71: 3.36622927e-15 + art_sys_72: -1.99243228e-16 + art_sys_73: -2.83615525e-16 + art_sys_74: 9.57140995e-17 + art_sys_75: 2.11945907e-16 + art_sys_76: 3.71272970e-14 + art_sys_77: 6.47651570e-15 + art_sys_78: -2.89709935e-14 + art_sys_79: 3.61701309e-17 + art_sys_80: 1.00363636e-15 + art_sys_81: -1.12217811e-15 + art_sys_82: 7.83451026e-07 + art_sys_83: 1.57860609e-15 + art_sys_84: -5.09306145e-16 + art_sys_85: -3.94282676e-16 + art_sys_86: 5.98464454e-16 + art_sys_87: -1.02642263e-17 + art_sys_88: 2.24400403e-14 + art_sys_89: 7.14375385e-17 + art_sys_90: 2.19312046e-14 + art_sys_91: 4.93676244e-13 + art_sys_92: 3.91053158e-17 + art_sys_93: -9.83349695e-19 + art_sys_94: 2.14950055e-12 + art_sys_95: -9.51800411e-17 + art_sys_96: -1.57772467e-12 + art_sys_97: 1.59025465e-14 + art_sys_98: 1.48612903e-17 + art_sys_99: -1.15063901e-13 + art_sys_100: 4.78780083e-15 + art_sys_101: 1.23617869e-13 + art_sys_102: -1.03486088e-13 + art_sys_103: 2.91530558e-19 + art_sys_104: -2.59876948e-16 + art_sys_105: -1.62402460e-10 + art_sys_106: -1.02294502e-14 + art_sys_107: 1.07004983e-11 + art_sys_108: -2.63994029e-10 + art_sys_109: 1.05053707e-11 + art_sys_110: 8.50135606e-11 + art_sys_111: -5.10129268e-13 + art_sys_112: 8.97170564e-07 + art_sys_113: -1.41966879e-17 + art_sys_114: 1.94947249e-12 + art_sys_115: -2.68105405e-14 + art_sys_116: 2.09453381e-10 + art_sys_117: 1.23890002e-12 + art_sys_118: 8.26453620e-16 + art_sys_119: -9.57319535e-10 + art_sys_120: -5.98018028e-06 + art_sys_121: -7.70367097e-13 + art_sys_122: 9.23590199e-13 + art_sys_123: -4.77460614e-10 + art_sys_124: -3.84394059e-12 + art_sys_125: 2.06955356e-13 + art_sys_126: -1.01965664e-05 + art_sys_127: 9.66980026e-10 + art_sys_128: -7.87096494e-12 + art_sys_129: 1.42101413e-12 + art_sys_130: -1.79647344e-08 + art_sys_131: -1.97068807e-11 + art_sys_132: 1.42006269e-10 + art_sys_133: 4.02495122e-08 + art_sys_134: 2.62470610e-05 + art_sys_135: -1.42507047e-10 + art_sys_136: 5.50823661e-11 + art_sys_137: -5.98056937e-09 + art_sys_138: 4.41377283e-10 + art_sys_139: 9.36759233e-08 + art_sys_140: -1.86887857e-11 + art_sys_141: 3.76038514e-06 + art_sys_142: -4.21742278e-10 + art_sys_143: -6.62606578e-09 + art_sys_144: 1.99255599e-10 + art_sys_145: 4.69197937e-09 + art_sys_146: 5.06669876e-10 + art_sys_147: -3.82789122e-12 + art_sys_148: -2.69534911e-12 + art_sys_149: -2.83475093e-11 + art_sys_150: 1.88174361e-09 + art_sys_151: 2.49681937e-08 + art_sys_152: -1.54655337e-13 + art_sys_153: 4.60336653e-09 + art_sys_154: 2.40095502e-14 + art_sys_155: -1.13814254e-11 + art_sys_156: 0.0 + art_sys_157: 9.51138169e-11 art_sys_158: 0.0 - art_sys_159: -2.03692574e-11 - art_sys_160: 6.12543592e-12 - art_sys_161: 2.22573097e-11 - art_sys_162: 6.26897127e-13 - art_sys_163: 2.54498074e-10 - art_sys_164: 3.95660772e-11 - art_sys_165: -1.27445382e-12 - art_sys_166: -2.10348320e-19 - art_sys_167: -1.75450105e-19 - art_sys_168: 6.08378410e-20 - art_sys_169: -2.57140627e-20 - art_sys_170: 1.83470965e-20 - art_sys_171: -1.39339435e-20 - art_sys_172: -4.17603434e-21 - art_sys_173: 2.14922327e-21 - art_sys_174: 2.31634248e-21 - art_sys_175: -6.83923531e-24 - art_sys_176: -1.10932298e-22 - art_sys_177: -3.09478163e-22 - art_sys_178: 1.43922269e-22 - art_sys_179: -8.21171991e-23 - art_sys_180: 1.12930652e-22 - art_sys_181: 1.37847659e-25 - art_sys_182: -6.36075749e-24 - art_sys_183: -1.60510547e-25 - art_sys_184: 6.51946178e-27 - art_sys_185: 3.89585299e-27 + art_sys_159: 1.06700918e-09 + art_sys_160: 3.51440702e-11 + art_sys_161: -1.30264600e-10 + art_sys_162: -1.30264600e-10 + art_sys_163: -1.05178348e-10 + art_sys_164: -1.05178348e-10 + art_sys_165: 1.23613232e-24 + art_sys_166: -4.10615022e-25 + art_sys_167: -0.0 + art_sys_168: 1.02620680e-20 + art_sys_169: 3.28755058e-20 + art_sys_170: 5.56195010e-21 + art_sys_171: 7.17093616e-21 + art_sys_172: -3.38304128e-21 + art_sys_173: -1.70593393e-21 + art_sys_174: -6.21384297e-22 + art_sys_175: -4.27551738e-22 + art_sys_176: 1.87531354e-22 + art_sys_177: -6.66339173e-23 + art_sys_178: -1.19841282e-22 + art_sys_179: 3.52853737e-24 + art_sys_180: 2.65439174e-23 + art_sys_181: -3.35274782e-23 + art_sys_182: 4.17592700e-24 + art_sys_183: -2.58530044e-26 + art_sys_184: -1.30075837e-25 + art_sys_185: 4.12512387e-26 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -61931,191 +61931,191 @@ bins: RelativeStatFSR-: -4.05527520e-06 luminosity_uncertainty: 1.80390340e-05 uncorrelated_uncertainty: 6.93809000e-06 -- art_sys_1: 5.88088490e-35 - art_sys_2: 1.26468523e-33 +- art_sys_1: 5.79376746e-35 + art_sys_2: 1.84419429e-33 art_sys_3: -5.43834264e-20 - art_sys_4: 7.50167176e-33 + art_sys_4: 2.14415227e-32 art_sys_5: 9.15068458e-19 - art_sys_6: 4.84081186e-33 - art_sys_7: 1.03228870e-32 + art_sys_6: 9.39406496e-33 + art_sys_7: -1.08960284e-33 art_sys_8: 4.29876705e-18 - art_sys_9: 2.47277515e-34 - art_sys_10: 1.66295161e-32 + art_sys_9: -6.70914445e-33 + art_sys_10: -4.44687717e-32 art_sys_11: 3.70890994e-18 - art_sys_12: -3.17119977e-31 - art_sys_13: 6.65128375e-30 - art_sys_14: 1.69860739e-30 + art_sys_12: 4.26533547e-32 + art_sys_13: -1.73813635e-29 + art_sys_14: 1.20073841e-29 art_sys_15: 2.46072258e-16 - art_sys_16: 2.03130696e-29 - art_sys_17: 3.97754567e-29 + art_sys_16: -3.87950937e-29 + art_sys_17: 6.67919119e-29 art_sys_18: 5.07698520e-15 - art_sys_19: 2.18190941e-28 - art_sys_20: 2.32902850e-28 - art_sys_21: -1.29888809e-14 - art_sys_22: 4.57507653e-29 - art_sys_23: 3.69526305e-29 - art_sys_24: 1.68924371e-14 - art_sys_25: 2.05546411e-19 - art_sys_26: -4.44512027e-19 - art_sys_27: -6.12739336e-20 - art_sys_28: -2.11493860e-28 - art_sys_29: -1.59482826e-24 - art_sys_30: 1.49371343e-21 - art_sys_31: 1.37283974e-22 - art_sys_32: -5.26999188e-22 - art_sys_33: -6.03104541e-21 - art_sys_34: -5.30330745e-13 - art_sys_35: -2.19619355e-23 - art_sys_36: -2.34593246e-12 - art_sys_37: -2.18481902e-22 - art_sys_38: 1.53245065e-21 - art_sys_39: 3.48398716e-21 - art_sys_40: -8.60191005e-13 - art_sys_41: 7.30315289e-22 - art_sys_42: 3.07911537e-25 - art_sys_43: -1.65386763e-21 - art_sys_44: -1.46173145e-21 - art_sys_45: 2.93088928e-22 - art_sys_46: -7.23422781e-22 + art_sys_19: 7.42562952e-29 + art_sys_20: -5.88017967e-28 + art_sys_21: 1.29888809e-14 + art_sys_22: -3.23893531e-28 + art_sys_23: -4.37681447e-28 + art_sys_24: -1.68924371e-14 + art_sys_25: 2.12153458e-28 + art_sys_26: 2.04603746e-28 + art_sys_27: -5.30330745e-13 + art_sys_28: 1.50901353e-23 + art_sys_29: 2.34593246e-12 + art_sys_30: -1.71631908e-26 + art_sys_31: 6.52871941e-24 + art_sys_32: -8.60191006e-13 + art_sys_33: 1.10504829e-25 + art_sys_34: 5.03593877e-22 + art_sys_35: -7.99307816e-23 + art_sys_36: -3.42138267e-19 + art_sys_37: 1.55684493e-20 + art_sys_38: 1.45449132e-20 + art_sys_39: 1.46442677e-20 + art_sys_40: -6.26812951e-21 + art_sys_41: -1.21070194e-21 + art_sys_42: -4.05846345e-21 + art_sys_43: -3.04145547e-22 + art_sys_44: 3.74539623e-22 + art_sys_45: -2.66847984e-21 + art_sys_46: -2.78062277e-21 art_sys_47: -2.77172445e-11 - art_sys_48: -3.76296371e-19 - art_sys_49: -2.71511603e-14 - art_sys_50: 1.20291519e-14 - art_sys_51: 1.90682148e-15 - art_sys_52: -5.84586969e-14 - art_sys_53: -1.21779239e-14 - art_sys_54: -2.62939219e-15 - art_sys_55: -6.71661876e-21 - art_sys_56: -1.75766892e-21 - art_sys_57: 2.02874245e-11 - art_sys_58: -1.96253995e-14 - art_sys_59: -6.59584293e-14 - art_sys_60: -4.67127870e-18 - art_sys_61: -1.54975257e-21 - art_sys_62: -5.95080999e-11 - art_sys_63: -2.52309200e-19 - art_sys_64: -6.85899067e-18 - art_sys_65: 1.14785273e-14 - art_sys_66: -1.72223786e-14 - art_sys_67: 4.77069693e-21 - art_sys_68: -1.79359382e-17 - art_sys_69: 6.73133559e-18 - art_sys_70: 2.54879861e-16 - art_sys_71: 4.35821686e-09 - art_sys_72: -2.50472753e-16 - art_sys_73: -8.91312310e-14 - art_sys_74: 3.46505882e-16 - art_sys_75: -1.09965974e-14 - art_sys_76: -2.61111463e-14 - art_sys_77: -7.75831548e-09 - art_sys_78: 3.11143280e-18 - art_sys_79: -6.89645543e-16 - art_sys_80: 1.26945609e-14 - art_sys_81: -1.71389196e-15 - art_sys_82: -1.03256385e-15 - art_sys_83: 2.18303911e-14 - art_sys_84: -4.41204850e-16 - art_sys_85: -5.70071682e-16 - art_sys_86: -6.97021429e-13 - art_sys_87: 3.28592352e-09 - art_sys_88: -4.06805934e-13 - art_sys_89: -2.25190089e-14 - art_sys_90: -1.58020781e-15 - art_sys_91: -6.09458501e-15 - art_sys_92: -4.81074281e-15 - art_sys_93: 1.96607606e-16 - art_sys_94: -1.77038602e-16 - art_sys_95: 9.16100546e-14 - art_sys_96: 2.57223251e-12 - art_sys_97: 2.00853881e-11 - art_sys_98: 1.70756737e-15 - art_sys_99: -1.00075116e-17 - art_sys_100: 1.27918556e-14 - art_sys_101: -3.31760825e-15 - art_sys_102: -5.89515784e-15 - art_sys_103: 1.63486530e-13 - art_sys_104: 1.34994990e-19 - art_sys_105: 1.01692449e-13 - art_sys_106: -1.62956225e-07 - art_sys_107: 2.77922536e-10 - art_sys_108: -1.80632884e-11 - art_sys_109: -1.96723993e-10 - art_sys_110: -1.86456406e-12 - art_sys_111: 3.33689146e-12 - art_sys_112: 4.53921920e-10 - art_sys_113: -1.11829033e-11 - art_sys_114: -2.08745904e-12 - art_sys_115: -4.06412186e-10 - art_sys_116: 4.65025002e-07 - art_sys_117: -1.36831078e-12 - art_sys_118: 2.32510141e-09 - art_sys_119: 3.01621669e-12 - art_sys_120: -9.99139501e-07 - art_sys_121: 6.15917539e-09 - art_sys_122: -9.59148690e-11 - art_sys_123: -9.19431375e-10 - art_sys_124: -8.88275347e-09 - art_sys_125: -6.86722883e-06 - art_sys_126: 2.70121865e-08 - art_sys_127: -4.54900485e-09 - art_sys_128: 5.79983635e-08 - art_sys_129: -2.16134227e-09 - art_sys_130: 1.57019039e-07 - art_sys_131: -1.25499992e-05 - art_sys_132: 6.88973722e-09 - art_sys_133: 2.65569015e-07 - art_sys_134: 3.15558970e-10 - art_sys_135: 2.68995944e-09 - art_sys_136: 3.63598266e-08 - art_sys_137: -6.16904303e-11 - art_sys_138: -8.09020749e-17 - art_sys_139: 1.36617485e-08 - art_sys_140: 3.75766242e-08 - art_sys_141: 1.28910807e-06 - art_sys_142: -2.04916167e-08 - art_sys_143: 1.42490418e-11 - art_sys_144: 1.48754202e-11 - art_sys_145: -3.58758997e-10 - art_sys_146: 0.0 - art_sys_147: 2.37053560e-09 - art_sys_148: -3.82641924e-10 - art_sys_149: -3.82641924e-10 - art_sys_150: -1.18628823e-08 - art_sys_151: -1.18628823e-08 - art_sys_152: 1.35101107e-09 - art_sys_153: 2.00125412e-09 - art_sys_154: -2.05351825e-12 - art_sys_155: 1.89260012e-21 - art_sys_156: -2.26707774e-25 - art_sys_157: -1.33285354e-25 + art_sys_48: 5.11750869e-19 + art_sys_49: -2.02874244e-11 + art_sys_50: -1.44977337e-21 + art_sys_51: 2.34014589e-21 + art_sys_52: -1.77737711e-20 + art_sys_53: -1.47405483e-19 + art_sys_54: -5.95081008e-11 + art_sys_55: -1.25461964e-19 + art_sys_56: 6.37707714e-21 + art_sys_57: 5.10534431e-21 + art_sys_58: -1.92804514e-21 + art_sys_59: 8.57109770e-16 + art_sys_60: 4.35821735e-09 + art_sys_61: 1.79860840e-18 + art_sys_62: 3.61456107e-22 + art_sys_63: 7.75831560e-09 + art_sys_64: -9.36050075e-14 + art_sys_65: -4.56922675e-14 + art_sys_66: 2.47965728e-14 + art_sys_67: -5.11285306e-14 + art_sys_68: 3.10035382e-14 + art_sys_69: -2.53885195e-14 + art_sys_70: -4.88791814e-14 + art_sys_71: -6.89383464e-14 + art_sys_72: 9.32154289e-15 + art_sys_73: 1.16775765e-14 + art_sys_74: 3.98174364e-19 + art_sys_75: -1.47572360e-14 + art_sys_76: -1.07270304e-14 + art_sys_77: -2.25038131e-14 + art_sys_78: 1.26244623e-14 + art_sys_79: -6.56375057e-15 + art_sys_80: -4.09484183e-15 + art_sys_81: 6.65426679e-15 + art_sys_82: 3.28593354e-09 + art_sys_83: 9.51679441e-16 + art_sys_84: 9.24196737e-16 + art_sys_85: -5.23618530e-17 + art_sys_86: 5.55219291e-16 + art_sys_87: 4.86878880e-15 + art_sys_88: -1.99758673e-15 + art_sys_89: -4.45629244e-17 + art_sys_90: 3.66706609e-15 + art_sys_91: 4.17098550e-15 + art_sys_92: 5.73869190e-18 + art_sys_93: 4.89862854e-18 + art_sys_94: -2.09754749e-13 + art_sys_95: -7.04710961e-18 + art_sys_96: -6.40915793e-15 + art_sys_97: 6.67052781e-17 + art_sys_98: 1.20258039e-18 + art_sys_99: -4.94109389e-16 + art_sys_100: 3.31339777e-16 + art_sys_101: 5.19588948e-16 + art_sys_102: -4.77177204e-14 + art_sys_103: 5.16673852e-22 + art_sys_104: 1.05233435e-15 + art_sys_105: 5.40728604e-10 + art_sys_106: 3.28129058e-15 + art_sys_107: 8.47794767e-13 + art_sys_108: 8.80125002e-10 + art_sys_109: -2.96135764e-11 + art_sys_110: 6.20019577e-12 + art_sys_111: 1.08693827e-13 + art_sys_112: -1.62951336e-07 + art_sys_113: 3.01550794e-18 + art_sys_114: -7.37488960e-12 + art_sys_115: 5.37978781e-16 + art_sys_116: 6.86045234e-11 + art_sys_117: 8.39637395e-13 + art_sys_118: -1.71004415e-14 + art_sys_119: -2.04462445e-10 + art_sys_120: -4.65052454e-07 + art_sys_121: 4.82974916e-12 + art_sys_122: 1.32453910e-13 + art_sys_123: -1.29121926e-10 + art_sys_124: 1.83988468e-13 + art_sys_125: -3.02867948e-11 + art_sys_126: 9.99138903e-07 + art_sys_127: 6.24767965e-09 + art_sys_128: -2.51389926e-12 + art_sys_129: -6.07513756e-11 + art_sys_130: 6.10687951e-08 + art_sys_131: 8.46768791e-10 + art_sys_132: 2.14893779e-11 + art_sys_133: -1.29349093e-07 + art_sys_134: 6.86640570e-06 + art_sys_135: 8.06708074e-11 + art_sys_136: -2.54985042e-09 + art_sys_137: 2.56246237e-08 + art_sys_138: 2.04283521e-10 + art_sys_139: -3.15085173e-07 + art_sys_140: 4.41283183e-10 + art_sys_141: -1.25305401e-05 + art_sys_142: 2.61438221e-10 + art_sys_143: 2.19367013e-08 + art_sys_144: -1.51211237e-09 + art_sys_145: 1.32980942e-09 + art_sys_146: -1.75165238e-09 + art_sys_147: -1.69466684e-11 + art_sys_148: -3.51693188e-11 + art_sys_149: -2.41955423e-09 + art_sys_150: -1.86206962e-08 + art_sys_151: -1.26720198e-06 + art_sys_152: -3.59340056e-10 + art_sys_153: -5.46520045e-08 + art_sys_154: -6.90831723e-15 + art_sys_155: 3.29241717e-10 + art_sys_156: -0.0 + art_sys_157: 9.05751709e-10 art_sys_158: -0.0 - art_sys_159: 1.29951885e-09 - art_sys_160: -3.69522460e-10 - art_sys_161: -1.25813750e-09 - art_sys_162: -3.50059275e-11 - art_sys_163: -1.10581820e-08 - art_sys_164: -1.70822622e-09 - art_sys_165: -1.08443493e-11 - art_sys_166: 1.05860561e-17 - art_sys_167: 1.04291594e-17 - art_sys_168: -3.69065483e-18 - art_sys_169: 1.62561995e-21 - art_sys_170: -1.92988864e-19 - art_sys_171: 1.40223413e-19 - art_sys_172: 1.00301090e-19 - art_sys_173: -2.30151856e-20 - art_sys_174: -1.19649150e-20 - art_sys_175: 1.19061961e-22 - art_sys_176: -6.95704098e-22 - art_sys_177: 3.72031029e-21 - art_sys_178: -1.02439267e-21 - art_sys_179: 6.24590780e-22 - art_sys_180: -8.20263343e-22 - art_sys_181: -3.56233492e-24 - art_sys_182: 4.52810190e-22 - art_sys_183: 5.55280235e-24 - art_sys_184: -7.12994958e-26 - art_sys_185: -2.35404409e-26 + art_sys_159: -7.23965641e-10 + art_sys_160: 5.24745907e-10 + art_sys_161: 1.30807126e-10 + art_sys_162: 1.30807126e-10 + art_sys_163: 3.22209208e-10 + art_sys_164: 3.22209208e-10 + art_sys_165: -3.31382618e-24 + art_sys_166: 1.09489236e-24 + art_sys_167: 0.0 + art_sys_168: -1.98282267e-18 + art_sys_169: -1.56389039e-18 + art_sys_170: -6.92047590e-19 + art_sys_171: -4.77937255e-19 + art_sys_172: 1.76744532e-19 + art_sys_173: -5.14273911e-21 + art_sys_174: 9.14962797e-21 + art_sys_175: 5.10147997e-21 + art_sys_176: -2.15428364e-21 + art_sys_177: 1.10976866e-21 + art_sys_178: 1.36040097e-21 + art_sys_179: -1.02337820e-22 + art_sys_180: -3.55339598e-23 + art_sys_181: 5.28662160e-22 + art_sys_182: -2.23377093e-22 + art_sys_183: 2.19594895e-24 + art_sys_184: 6.80105016e-25 + art_sys_185: -3.90341897e-26 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -62222,191 +62222,191 @@ bins: RelativeStatFSR-: -1.12459157e-06 luminosity_uncertainty: 4.72687800e-06 uncorrelated_uncertainty: 1.81803000e-06 -- art_sys_1: 3.49440326e-37 - art_sys_2: 1.01612179e-35 +- art_sys_1: 3.40550343e-37 + art_sys_2: 1.50392872e-35 art_sys_3: -2.42608020e-22 - art_sys_4: 4.30428040e-35 + art_sys_4: 5.93673068e-35 art_sys_5: 7.34591117e-21 - art_sys_6: 3.97206070e-35 - art_sys_7: 1.14226953e-34 + art_sys_6: 7.68136991e-35 + art_sys_7: 6.04300534e-35 art_sys_8: 3.53824006e-20 - art_sys_9: 2.31512749e-35 - art_sys_10: 5.95467883e-35 + art_sys_9: 3.27139503e-34 + art_sys_10: -4.53485984e-34 art_sys_11: 3.14896385e-21 - art_sys_12: -1.01076695e-32 - art_sys_13: 2.32459058e-31 - art_sys_14: 6.07678731e-33 + art_sys_12: 3.03577328e-33 + art_sys_13: -5.68447125e-31 + art_sys_14: 2.04786542e-31 art_sys_15: 7.38817870e-18 - art_sys_16: 2.82902729e-31 - art_sys_17: 5.96791034e-31 + art_sys_16: -8.46113703e-31 + art_sys_17: 1.14285294e-30 art_sys_18: 5.81884913e-17 - art_sys_19: 2.44426088e-30 - art_sys_20: 4.85176914e-30 - art_sys_21: -2.12399490e-16 - art_sys_22: 8.00288291e-31 - art_sys_23: -1.27290120e-29 - art_sys_24: 3.53426680e-16 - art_sys_25: 4.76712112e-22 - art_sys_26: -1.70846931e-20 - art_sys_27: -4.74257720e-21 - art_sys_28: 2.47553081e-29 - art_sys_29: 2.91923712e-26 - art_sys_30: -8.54199605e-22 - art_sys_31: 1.81755618e-22 - art_sys_32: 1.47935994e-21 - art_sys_33: 2.37861483e-22 - art_sys_34: 9.70077695e-15 - art_sys_35: 1.44949170e-25 - art_sys_36: 1.49974835e-14 - art_sys_37: 1.39808553e-24 - art_sys_38: -7.01669921e-22 - art_sys_39: -1.86487136e-22 - art_sys_40: 4.60748692e-14 - art_sys_41: -3.91152909e-23 - art_sys_42: -1.76164491e-26 - art_sys_43: 1.93236403e-22 - art_sys_44: -9.63207761e-22 - art_sys_45: 1.21161638e-21 - art_sys_46: 6.16448496e-23 + art_sys_19: 5.47896537e-31 + art_sys_20: -1.18339404e-29 + art_sys_21: 2.12399490e-16 + art_sys_22: 1.05612672e-29 + art_sys_23: -8.65712287e-30 + art_sys_24: -3.53426680e-16 + art_sys_25: 9.66393481e-30 + art_sys_26: -2.03195877e-29 + art_sys_27: 9.70077695e-15 + art_sys_28: -8.38399332e-26 + art_sys_29: -1.49974835e-14 + art_sys_30: 1.54499876e-28 + art_sys_31: -2.97488316e-25 + art_sys_32: 4.60748693e-14 + art_sys_33: -4.49463056e-27 + art_sys_34: -4.08822420e-23 + art_sys_35: 4.98261784e-24 + art_sys_36: 8.84080375e-20 + art_sys_37: 1.00861051e-20 + art_sys_38: 2.07115102e-22 + art_sys_39: -9.72070971e-22 + art_sys_40: 1.30305988e-21 + art_sys_41: -7.05372109e-22 + art_sys_42: 9.25029886e-22 + art_sys_43: 1.83104411e-22 + art_sys_44: -2.93652781e-23 + art_sys_45: -2.03905662e-22 + art_sys_46: -3.78327236e-22 art_sys_47: 2.24998432e-12 - art_sys_48: -1.94678220e-20 - art_sys_49: -4.56867149e-15 - art_sys_50: -3.42396274e-15 - art_sys_51: 2.22383563e-14 - art_sys_52: -6.50764750e-14 - art_sys_53: -3.07171258e-14 - art_sys_54: -2.51281298e-14 - art_sys_55: 2.56995137e-22 - art_sys_56: 1.34074344e-21 - art_sys_57: 1.02346331e-12 - art_sys_58: -7.14739987e-14 - art_sys_59: -2.04757471e-13 - art_sys_60: 1.61957759e-18 - art_sys_61: -1.07641792e-22 - art_sys_62: 2.06222105e-11 - art_sys_63: 1.25181254e-21 - art_sys_64: 2.50690983e-18 - art_sys_65: 3.31319948e-14 - art_sys_66: -4.91205396e-14 - art_sys_67: 3.96195531e-22 - art_sys_68: 5.28487411e-18 - art_sys_69: -1.94672049e-18 - art_sys_70: 2.07003081e-17 - art_sys_71: -4.83171690e-11 - art_sys_72: -2.38695424e-17 - art_sys_73: 3.78768291e-15 - art_sys_74: -1.90236688e-14 - art_sys_75: 1.80483911e-14 - art_sys_76: -7.32428160e-14 - art_sys_77: -7.11572074e-10 - art_sys_78: 2.85602664e-19 - art_sys_79: 4.14420805e-15 - art_sys_80: 3.47791473e-14 - art_sys_81: 2.44250113e-15 - art_sys_82: -9.06902517e-16 - art_sys_83: 3.67027654e-14 - art_sys_84: -4.41887506e-16 - art_sys_85: 1.17281562e-16 - art_sys_86: 1.20799888e-13 - art_sys_87: -1.13710542e-09 - art_sys_88: -7.82888313e-15 - art_sys_89: 2.94391774e-15 - art_sys_90: 5.20748141e-16 - art_sys_91: -3.36037737e-16 - art_sys_92: 1.65449488e-15 - art_sys_93: -6.80335777e-17 - art_sys_94: -1.07433893e-16 - art_sys_95: 4.70372816e-15 - art_sys_96: -9.46887160e-13 - art_sys_97: 1.05576343e-12 - art_sys_98: 2.21415984e-17 - art_sys_99: 3.46100362e-18 - art_sys_100: -3.55646150e-15 - art_sys_101: -1.50860069e-16 - art_sys_102: -1.65326417e-16 - art_sys_103: -2.38671901e-14 - art_sys_104: 1.44367768e-20 - art_sys_105: 4.94185917e-15 - art_sys_106: -8.63731053e-09 - art_sys_107: -1.26381807e-10 - art_sys_108: 4.77032860e-12 - art_sys_109: -2.75016277e-10 - art_sys_110: 2.47492448e-11 - art_sys_111: 1.74267206e-13 - art_sys_112: -2.08466042e-10 - art_sys_113: -2.57350576e-11 - art_sys_114: -7.04905657e-14 - art_sys_115: 1.67211980e-10 - art_sys_116: -1.24106290e-07 - art_sys_117: -7.61383158e-13 - art_sys_118: -9.52817942e-10 - art_sys_119: -1.68315229e-12 - art_sys_120: -1.00549762e-07 - art_sys_121: -2.01800509e-08 - art_sys_122: 1.61259984e-11 - art_sys_123: 2.94235943e-10 - art_sys_124: 7.97432649e-09 - art_sys_125: 2.81896734e-06 - art_sys_126: -1.23834927e-08 - art_sys_127: 1.85000433e-09 - art_sys_128: -1.04870218e-08 - art_sys_129: 9.35956216e-10 - art_sys_130: -3.93026290e-08 - art_sys_131: 5.66466400e-06 - art_sys_132: -2.51790306e-09 - art_sys_133: -8.65764153e-08 - art_sys_134: -2.26755278e-09 - art_sys_135: 4.22002897e-10 - art_sys_136: 1.45675244e-08 - art_sys_137: 8.91676405e-10 - art_sys_138: -1.81986915e-16 - art_sys_139: 2.83757753e-08 - art_sys_140: 6.56368774e-08 - art_sys_141: 2.67454172e-06 - art_sys_142: -8.57727799e-08 - art_sys_143: -2.90271256e-10 - art_sys_144: 2.02665154e-10 - art_sys_145: 9.19723656e-10 - art_sys_146: 0.0 - art_sys_147: -1.06354020e-08 - art_sys_148: 7.13854827e-08 - art_sys_149: 7.13854827e-08 - art_sys_150: 1.36983118e-08 - art_sys_151: 1.36983118e-08 - art_sys_152: -2.53801532e-08 - art_sys_153: 3.10874857e-11 - art_sys_154: 1.10852180e-11 - art_sys_155: 6.52037155e-21 - art_sys_156: 7.67172558e-24 - art_sys_157: 1.74145512e-24 + art_sys_48: 2.10716066e-20 + art_sys_49: -1.02346331e-12 + art_sys_50: -1.65593992e-22 + art_sys_51: 3.43871241e-22 + art_sys_52: -3.06983424e-22 + art_sys_53: 5.12482774e-20 + art_sys_54: 2.06222109e-11 + art_sys_55: 3.92542656e-21 + art_sys_56: 3.06021349e-22 + art_sys_57: 2.23908647e-22 + art_sys_58: -5.34871763e-23 + art_sys_59: 1.34446691e-17 + art_sys_60: -4.83169417e-11 + art_sys_61: -6.21796212e-19 + art_sys_62: -7.96436245e-22 + art_sys_63: 7.11571821e-10 + art_sys_64: 2.62157914e-14 + art_sys_65: 1.82868608e-14 + art_sys_66: -5.15838084e-14 + art_sys_67: 1.02487170e-14 + art_sys_68: 2.03008415e-14 + art_sys_69: -2.26033125e-14 + art_sys_70: -4.83641099e-14 + art_sys_71: -7.59434427e-14 + art_sys_72: 1.24881219e-14 + art_sys_73: 1.49062477e-14 + art_sys_74: -1.38492445e-19 + art_sys_75: -2.01056461e-14 + art_sys_76: -3.34706883e-14 + art_sys_77: -3.26332482e-14 + art_sys_78: -1.33745058e-14 + art_sys_79: -9.19453013e-15 + art_sys_80: -8.69475866e-16 + art_sys_81: 9.35818271e-15 + art_sys_82: -1.13710890e-09 + art_sys_83: -2.70388857e-16 + art_sys_84: -1.74087087e-17 + art_sys_85: -8.93693537e-17 + art_sys_86: 4.93814622e-16 + art_sys_87: 7.06489973e-15 + art_sys_88: 2.75953750e-15 + art_sys_89: -1.64430742e-17 + art_sys_90: 2.57842334e-15 + art_sys_91: -6.94550700e-16 + art_sys_92: 6.05997698e-17 + art_sys_93: -8.30714994e-18 + art_sys_94: -1.88495631e-14 + art_sys_95: 1.96083422e-18 + art_sys_96: 2.29211942e-15 + art_sys_97: -2.30837141e-17 + art_sys_98: -3.03445154e-19 + art_sys_99: 1.66844482e-16 + art_sys_100: -9.69337189e-17 + art_sys_101: -1.79301834e-16 + art_sys_102: 4.17259400e-15 + art_sys_103: -3.87089230e-22 + art_sys_104: 2.04541846e-17 + art_sys_105: -2.44353820e-10 + art_sys_106: 9.05823344e-17 + art_sys_107: -2.18031492e-13 + art_sys_108: -3.97719801e-10 + art_sys_109: 2.70999501e-11 + art_sys_110: -1.68990179e-12 + art_sys_111: 4.94835255e-15 + art_sys_112: -8.63695390e-09 + art_sys_113: 1.33267933e-19 + art_sys_114: 7.47072475e-13 + art_sys_115: 3.58674538e-16 + art_sys_116: -2.71567319e-11 + art_sys_117: 1.28369219e-11 + art_sys_118: 2.47550464e-16 + art_sys_119: 9.04761602e-11 + art_sys_120: 1.24093659e-07 + art_sys_121: 5.07248420e-12 + art_sys_122: -2.07714864e-14 + art_sys_123: 1.02197563e-11 + art_sys_124: 5.31790453e-14 + art_sys_125: -7.09813257e-11 + art_sys_126: 1.00517175e-07 + art_sys_127: 2.13383685e-08 + art_sys_128: 3.98039573e-13 + art_sys_129: -1.10374017e-10 + art_sys_130: -2.47063656e-08 + art_sys_131: 1.54604640e-09 + art_sys_132: -6.90692678e-12 + art_sys_133: 7.20939524e-08 + art_sys_134: -2.81856874e-06 + art_sys_135: -1.62220645e-11 + art_sys_136: -4.84562040e-09 + art_sys_137: -3.93439921e-09 + art_sys_138: -9.28560266e-11 + art_sys_139: 1.37198466e-07 + art_sys_140: 1.97269778e-10 + art_sys_141: 5.69539858e-06 + art_sys_142: -1.66641221e-10 + art_sys_143: -5.01228866e-09 + art_sys_144: 7.42850601e-09 + art_sys_145: 8.23970957e-10 + art_sys_146: 5.91468676e-09 + art_sys_147: 1.72567723e-10 + art_sys_148: 1.55909444e-10 + art_sys_149: -6.97959671e-09 + art_sys_150: 1.65340142e-09 + art_sys_151: -2.55107046e-06 + art_sys_152: -3.74869065e-11 + art_sys_153: -7.76661921e-08 + art_sys_154: -1.20348642e-16 + art_sys_155: 1.83693140e-09 + art_sys_156: -0.0 + art_sys_157: 1.84070203e-09 art_sys_158: 0.0 - art_sys_159: 2.87884905e-09 - art_sys_160: -8.18743871e-10 - art_sys_161: -2.65829741e-09 - art_sys_162: -7.06118969e-11 - art_sys_163: -1.81874445e-08 - art_sys_164: -3.41530855e-09 - art_sys_165: -2.75086851e-11 - art_sys_166: 1.91735286e-17 - art_sys_167: 2.24475961e-17 - art_sys_168: -8.25709393e-18 - art_sys_169: -2.61333453e-18 - art_sys_170: 1.43231240e-18 - art_sys_171: -1.00317512e-18 - art_sys_172: -5.73999679e-20 - art_sys_173: 1.49022846e-19 - art_sys_174: 2.17918689e-19 - art_sys_175: -3.47013244e-22 - art_sys_176: -1.58538799e-20 - art_sys_177: -1.99683765e-20 - art_sys_178: 1.22838848e-20 - art_sys_179: -6.84185175e-21 - art_sys_180: 9.74264775e-21 - art_sys_181: -2.33068433e-24 - art_sys_182: 1.13287682e-21 - art_sys_183: 4.44267028e-24 - art_sys_184: 5.59914512e-25 - art_sys_185: 3.20779502e-25 + art_sys_159: -3.32557259e-08 + art_sys_160: 5.01071756e-09 + art_sys_161: 9.07455962e-09 + art_sys_162: 9.07455962e-09 + art_sys_163: 8.12783186e-09 + art_sys_164: 8.12783186e-09 + art_sys_165: -9.33482219e-23 + art_sys_166: 3.13201147e-23 + art_sys_167: 0.0 + art_sys_168: -7.94232669e-18 + art_sys_169: -3.06427518e-18 + art_sys_170: -1.58931340e-18 + art_sys_171: -1.40354330e-18 + art_sys_172: 3.53157649e-19 + art_sys_173: -2.15725489e-19 + art_sys_174: -3.08530803e-20 + art_sys_175: -2.77289341e-20 + art_sys_176: 1.32385073e-20 + art_sys_177: -2.97884521e-21 + art_sys_178: -7.93811570e-21 + art_sys_179: -6.80484047e-22 + art_sys_180: -1.12146321e-21 + art_sys_181: -1.96347385e-21 + art_sys_182: -5.22010596e-22 + art_sys_183: 4.81255784e-24 + art_sys_184: -2.04295435e-24 + art_sys_185: -5.89498138e-25 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -62513,191 +62513,191 @@ bins: RelativeStatFSR-: -2.81296519e-07 luminosity_uncertainty: 1.11805720e-06 uncorrelated_uncertainty: 4.30022000e-07 -- art_sys_1: 2.46842556e-40 - art_sys_2: 1.35889178e-38 +- art_sys_1: 2.80016365e-40 + art_sys_2: 2.01942071e-38 art_sys_3: -7.36016630e-26 - art_sys_4: 6.49924468e-38 + art_sys_4: 2.59226928e-37 art_sys_5: 9.63938744e-24 - art_sys_6: 5.62417431e-38 - art_sys_7: 2.09485743e-37 + art_sys_6: 1.10364529e-37 + art_sys_7: 5.39032611e-38 art_sys_8: 4.98073687e-23 - art_sys_9: 6.56483324e-38 - art_sys_10: 3.61697082e-37 + art_sys_9: 2.13573526e-38 + art_sys_10: -3.57962678e-37 art_sys_11: 3.78273898e-23 - art_sys_12: -2.52621388e-35 - art_sys_13: 4.46951324e-34 - art_sys_14: -5.27516534e-35 + art_sys_12: 3.14845440e-36 + art_sys_13: -1.07524971e-33 + art_sys_14: 2.95032362e-34 art_sys_15: 1.36043129e-20 - art_sys_16: 4.24194854e-34 - art_sys_17: 8.74467145e-34 + art_sys_16: -1.74081685e-33 + art_sys_17: 1.84105286e-33 art_sys_18: 6.72360147e-20 - art_sys_19: 2.71862364e-33 - art_sys_20: 8.28349943e-33 - art_sys_21: -3.22912371e-19 - art_sys_22: 1.14802734e-33 - art_sys_23: -3.40194425e-32 - art_sys_24: 5.82107845e-19 - art_sys_25: 9.16462582e-23 - art_sys_26: 1.20109734e-21 - art_sys_27: 4.24382855e-22 - art_sys_28: 6.30340496e-32 - art_sys_29: 1.10236597e-28 - art_sys_30: 2.04768880e-22 - art_sys_31: 1.32882563e-23 - art_sys_32: 3.23504403e-23 - art_sys_33: -5.12029151e-24 - art_sys_34: 3.66490772e-17 - art_sys_35: 1.63133432e-27 - art_sys_36: 1.71862683e-16 - art_sys_37: 1.60047587e-26 - art_sys_38: -4.22449796e-23 - art_sys_39: -2.62083702e-25 - art_sys_40: 6.45815012e-17 - art_sys_41: -5.48165728e-26 - art_sys_42: -6.76682996e-29 - art_sys_43: 9.25210560e-24 - art_sys_44: 1.31027775e-23 - art_sys_45: 9.53243493e-24 - art_sys_46: 2.61876685e-25 - art_sys_47: 9.48425736e-15 - art_sys_48: -1.00682245e-22 - art_sys_49: 6.19507040e-15 - art_sys_50: -2.80607149e-15 - art_sys_51: -1.16812564e-14 - art_sys_52: -2.20860130e-14 - art_sys_53: 4.97783894e-14 - art_sys_54: 2.63189954e-14 - art_sys_55: 1.33254786e-24 - art_sys_56: 3.68265845e-24 - art_sys_57: 5.30832820e-15 - art_sys_58: 4.05720812e-14 - art_sys_59: 1.36674499e-13 - art_sys_60: 8.29398567e-21 - art_sys_61: -7.75980273e-25 - art_sys_62: 1.05610526e-13 - art_sys_63: 5.42510083e-23 - art_sys_64: 1.27955919e-20 - art_sys_65: -2.05485346e-14 - art_sys_66: 3.09896143e-14 - art_sys_67: 2.09198415e-24 - art_sys_68: 9.65551875e-20 - art_sys_69: -3.56267209e-20 - art_sys_70: 2.05897722e-19 - art_sys_71: -6.48087636e-13 - art_sys_72: -2.15709781e-19 - art_sys_73: -5.14048568e-14 - art_sys_74: -2.03886889e-14 - art_sys_75: -1.36831739e-14 - art_sys_76: 4.74243371e-14 - art_sys_77: -6.41994734e-12 - art_sys_78: 2.54098240e-21 - art_sys_79: -2.21566525e-15 - art_sys_80: -2.14519015e-14 - art_sys_81: -1.23279786e-15 - art_sys_82: 9.09746861e-16 - art_sys_83: -2.25631482e-14 - art_sys_84: 4.17712156e-16 - art_sys_85: -1.02270285e-16 - art_sys_86: 5.52350404e-14 - art_sys_87: -2.04030515e-11 - art_sys_88: 1.13568215e-14 - art_sys_89: 1.47523289e-14 - art_sys_90: 9.40414562e-18 - art_sys_91: -9.26968813e-17 - art_sys_92: 2.95736543e-17 - art_sys_93: -1.22061753e-18 - art_sys_94: -1.21389084e-18 - art_sys_95: 1.28749443e-15 - art_sys_96: -2.88816367e-13 - art_sys_97: 2.90845435e-13 - art_sys_98: -4.20468361e-18 - art_sys_99: 6.22389914e-20 - art_sys_100: -1.13106292e-15 - art_sys_101: -3.72681864e-17 - art_sys_102: 4.55381834e-17 - art_sys_103: -1.15451654e-14 - art_sys_104: 4.00193194e-21 - art_sys_105: 1.39708052e-15 - art_sys_106: -2.37707810e-09 - art_sys_107: -4.61606374e-11 - art_sys_108: 3.26701944e-12 - art_sys_109: 6.12150362e-11 - art_sys_110: 1.00335943e-11 - art_sys_111: 4.80153845e-14 - art_sys_112: -6.86064074e-11 - art_sys_113: -2.37295701e-12 - art_sys_114: -2.03013212e-14 - art_sys_115: 5.59755724e-11 - art_sys_116: -3.52751609e-08 - art_sys_117: -2.16799533e-13 - art_sys_118: -3.28660358e-10 - art_sys_119: -5.15611954e-13 - art_sys_120: -2.45109793e-08 - art_sys_121: 2.32717398e-09 - art_sys_122: 5.93487521e-12 - art_sys_123: 1.07982156e-10 - art_sys_124: -3.80956890e-10 - art_sys_125: 9.45192748e-07 - art_sys_126: -2.25570784e-09 - art_sys_127: 6.20175650e-10 - art_sys_128: -9.38311840e-09 - art_sys_129: 3.67413312e-10 - art_sys_130: -2.19642797e-08 - art_sys_131: 2.08691065e-06 - art_sys_132: -1.17120452e-09 - art_sys_133: -4.33739659e-08 - art_sys_134: 8.16675585e-09 - art_sys_135: -5.84652157e-10 - art_sys_136: 2.37401478e-08 - art_sys_137: -3.28644290e-09 - art_sys_138: -4.40174443e-17 - art_sys_139: 8.79886552e-10 - art_sys_140: 5.38019160e-09 - art_sys_141: 6.51489043e-07 - art_sys_142: 1.09106832e-07 - art_sys_143: 1.02889969e-09 - art_sys_144: -5.38944999e-10 - art_sys_145: -5.37556471e-09 - art_sys_146: -0.0 - art_sys_147: 2.38311376e-08 - art_sys_148: -2.85990769e-10 - art_sys_149: -2.85990769e-10 - art_sys_150: -8.46560795e-08 - art_sys_151: -8.46560795e-08 - art_sys_152: 1.31928665e-07 - art_sys_153: 1.28380307e-08 - art_sys_154: -4.30081477e-11 - art_sys_155: -1.39544486e-20 - art_sys_156: -2.43000984e-23 - art_sys_157: -5.68921579e-24 + art_sys_19: 3.09737012e-34 + art_sys_20: -1.97085406e-32 + art_sys_21: 3.22912371e-19 + art_sys_22: 3.53514295e-32 + art_sys_23: -1.43320031e-32 + art_sys_24: -5.82107845e-19 + art_sys_25: 4.68724126e-33 + art_sys_26: -4.70756119e-32 + art_sys_27: 3.66490772e-17 + art_sys_28: -1.12751409e-27 + art_sys_29: -1.71862683e-16 + art_sys_30: 1.27847656e-30 + art_sys_31: -6.74306906e-28 + art_sys_32: 6.45815013e-17 + art_sys_33: -1.37769644e-29 + art_sys_34: -1.72330621e-25 + art_sys_35: 1.98691378e-26 + art_sys_36: 1.61188947e-21 + art_sys_37: -4.63077051e-23 + art_sys_38: 8.39121825e-24 + art_sys_39: -4.25591347e-23 + art_sys_40: 5.31021070e-25 + art_sys_41: 1.05582877e-23 + art_sys_42: 1.74546206e-23 + art_sys_43: 1.52452759e-24 + art_sys_44: -3.88079241e-25 + art_sys_45: -2.52194262e-23 + art_sys_46: -4.15836164e-23 + art_sys_47: 9.48425737e-15 + art_sys_48: 1.12133431e-22 + art_sys_49: -5.30832819e-15 + art_sys_50: -2.01153745e-23 + art_sys_51: 3.36005868e-23 + art_sys_52: -1.90286904e-24 + art_sys_53: 2.62518293e-22 + art_sys_54: 1.05610528e-13 + art_sys_55: 3.34343560e-23 + art_sys_56: 1.53958423e-24 + art_sys_57: 4.64489822e-23 + art_sys_58: -1.68038859e-23 + art_sys_59: 1.08521636e-19 + art_sys_60: -6.48085312e-13 + art_sys_61: -1.11415669e-20 + art_sys_62: -4.88543419e-24 + art_sys_63: 6.41994323e-12 + art_sys_64: 9.66856294e-15 + art_sys_65: 2.65800152e-15 + art_sys_66: -8.55784673e-15 + art_sys_67: 1.53707915e-14 + art_sys_68: 5.80787643e-14 + art_sys_69: -2.35949321e-14 + art_sys_70: -6.45758023e-14 + art_sys_71: -9.10480815e-14 + art_sys_72: 1.29312935e-14 + art_sys_73: 1.73681292e-14 + art_sys_74: -2.50276461e-21 + art_sys_75: -2.14935113e-14 + art_sys_76: -1.11865351e-13 + art_sys_77: 5.42473443e-15 + art_sys_78: -4.13629841e-15 + art_sys_79: -1.04065114e-14 + art_sys_80: 4.87531935e-17 + art_sys_81: 1.03308650e-14 + art_sys_82: -2.04031140e-11 + art_sys_83: 8.09991821e-16 + art_sys_84: -6.76595811e-16 + art_sys_85: -3.58864610e-17 + art_sys_86: 1.06178527e-16 + art_sys_87: 7.77527066e-15 + art_sys_88: 3.28389856e-15 + art_sys_89: -3.35103141e-17 + art_sys_90: 3.19834005e-15 + art_sys_91: -1.38910132e-17 + art_sys_92: -1.03005162e-19 + art_sys_93: 4.05482812e-18 + art_sys_94: -2.70602206e-15 + art_sys_95: 5.56798719e-19 + art_sys_96: 4.09911300e-17 + art_sys_97: -4.14218633e-19 + art_sys_98: -8.58775919e-20 + art_sys_99: 3.00070336e-18 + art_sys_100: -2.74736180e-17 + art_sys_101: -3.14397098e-18 + art_sys_102: 1.22912041e-15 + art_sys_103: -2.36024092e-23 + art_sys_104: 5.51647562e-18 + art_sys_105: -8.98687111e-11 + art_sys_106: 2.52808321e-17 + art_sys_107: -6.16499439e-14 + art_sys_108: -1.46273707e-10 + art_sys_109: 5.28428466e-12 + art_sys_110: -4.76273929e-13 + art_sys_111: 1.37739626e-15 + art_sys_112: -2.37697944e-09 + art_sys_113: 3.74217059e-20 + art_sys_114: -5.22808797e-13 + art_sys_115: 9.70236630e-17 + art_sys_116: -9.11690748e-12 + art_sys_117: 3.23630226e-12 + art_sys_118: 5.38269290e-17 + art_sys_119: 3.02281696e-11 + art_sys_120: 3.52699798e-08 + art_sys_121: 6.23176960e-12 + art_sys_122: -5.86016779e-15 + art_sys_123: 1.56952365e-11 + art_sys_124: 1.42906528e-14 + art_sys_125: -4.85066115e-11 + art_sys_126: 2.44998081e-08 + art_sys_127: 2.82219140e-10 + art_sys_128: 1.25621737e-13 + art_sys_129: -6.57369639e-12 + art_sys_130: -8.49586560e-09 + art_sys_131: 1.39855269e-10 + art_sys_132: -2.21243508e-12 + art_sys_133: 2.74840661e-08 + art_sys_134: -9.45030417e-07 + art_sys_135: -5.65896579e-12 + art_sys_136: -1.15249973e-09 + art_sys_137: 6.97967953e-09 + art_sys_138: -3.15946121e-11 + art_sys_139: 4.87834983e-08 + art_sys_140: 1.81405366e-09 + art_sys_141: 2.08432179e-06 + art_sys_142: -4.79773644e-11 + art_sys_143: -1.08999712e-08 + art_sys_144: -2.55678424e-08 + art_sys_145: -5.55036511e-12 + art_sys_146: -3.37679390e-08 + art_sys_147: -7.56489242e-10 + art_sys_148: -8.13170676e-10 + art_sys_149: -1.37647043e-09 + art_sys_150: -3.39053339e-08 + art_sys_151: -6.90559354e-07 + art_sys_152: -2.49649936e-09 + art_sys_153: -4.46781556e-08 + art_sys_154: -4.66601771e-17 + art_sys_155: -3.44975669e-09 + art_sys_156: -0.0 + art_sys_157: -1.41059786e-08 art_sys_158: -0.0 - art_sys_159: 1.96477737e-10 - art_sys_160: -4.57015462e-11 - art_sys_161: -4.56814420e-10 - art_sys_162: -2.14728848e-11 - art_sys_163: -1.10362916e-08 - art_sys_164: -9.45206810e-10 - art_sys_165: -9.02858070e-11 - art_sys_166: 8.47707369e-18 - art_sys_167: 3.84039757e-18 - art_sys_168: 6.26259864e-18 - art_sys_169: 1.03947865e-17 - art_sys_170: -3.92481420e-18 - art_sys_171: 3.66778168e-18 - art_sys_172: 6.62473298e-19 - art_sys_173: -5.24150817e-19 - art_sys_174: -8.21152391e-19 - art_sys_175: 1.87505692e-21 - art_sys_176: 5.12503786e-20 - art_sys_177: 8.89046774e-20 - art_sys_178: -4.66723843e-20 - art_sys_179: 2.65647409e-20 - art_sys_180: -3.64250624e-20 - art_sys_181: -1.53840072e-23 - art_sys_182: -3.73492377e-22 - art_sys_183: 1.74684228e-23 - art_sys_184: -2.29101859e-24 - art_sys_185: -1.19205413e-24 + art_sys_159: 9.00556307e-08 + art_sys_160: -8.88521852e-09 + art_sys_161: 1.00787421e-08 + art_sys_162: 1.00787421e-08 + art_sys_163: -1.66554978e-08 + art_sys_164: -1.66554978e-08 + art_sys_165: 1.43080825e-22 + art_sys_166: -4.66205039e-23 + art_sys_167: -0.0 + art_sys_168: 8.21768615e-18 + art_sys_169: 2.75111703e-19 + art_sys_170: -1.28190335e-19 + art_sys_171: 1.17543899e-18 + art_sys_172: 9.53110135e-20 + art_sys_173: 5.13023598e-19 + art_sys_174: 1.31372767e-19 + art_sys_175: 1.02330965e-19 + art_sys_176: -4.83810427e-20 + art_sys_177: 1.45882385e-20 + art_sys_178: 2.87043677e-20 + art_sys_179: 1.37088443e-21 + art_sys_180: 2.65987808e-21 + art_sys_181: 8.53397981e-21 + art_sys_182: 2.54166264e-22 + art_sys_183: 3.42132427e-24 + art_sys_184: 7.34589566e-24 + art_sys_185: 2.73240826e-24 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -62804,191 +62804,191 @@ bins: RelativeStatFSR-: -4.03061290e-08 luminosity_uncertainty: 1.51584160e-07 uncorrelated_uncertainty: 5.83016000e-08 -- art_sys_1: 1.45691347e-43 - art_sys_2: 3.30668534e-41 +- art_sys_1: 2.28201732e-43 + art_sys_2: 4.85418966e-41 art_sys_3: 3.43944709e-28 - art_sys_4: 2.16924325e-40 + art_sys_4: 1.17557394e-39 art_sys_5: 2.27055212e-26 - art_sys_6: 1.45052949e-40 - art_sys_7: 5.29935333e-40 + art_sys_6: 2.93157855e-40 + art_sys_7: -4.98530278e-41 art_sys_8: 1.28291381e-25 - art_sys_9: -2.39727730e-40 - art_sys_10: 8.56032446e-40 + art_sys_9: 1.63213768e-39 + art_sys_10: -3.63540875e-40 art_sys_11: 1.98909839e-25 - art_sys_12: -6.04660362e-38 - art_sys_13: 1.81883368e-36 - art_sys_14: -8.51471544e-38 + art_sys_12: 1.54554596e-38 + art_sys_13: -4.35485502e-36 + art_sys_14: 1.20884975e-36 art_sys_15: 5.45226491e-23 - art_sys_16: 1.57484053e-36 - art_sys_17: 3.64266937e-36 + art_sys_16: -5.74983412e-36 + art_sys_17: 7.46391458e-36 art_sys_18: 2.40515012e-22 - art_sys_19: 9.16375758e-36 - art_sys_20: 3.57307568e-35 - art_sys_21: -1.42905635e-21 - art_sys_22: 5.58671382e-36 - art_sys_23: -1.78797257e-35 - art_sys_24: 2.43294543e-21 - art_sys_25: -5.68493570e-24 - art_sys_26: -6.15241052e-22 - art_sys_27: -2.25983088e-22 - art_sys_28: -4.23214532e-34 - art_sys_29: -1.31973977e-31 - art_sys_30: -7.14455683e-23 - art_sys_31: -4.69599445e-24 - art_sys_32: -7.51487384e-24 - art_sys_33: -5.86574023e-24 - art_sys_34: -4.35941181e-20 - art_sys_35: 7.36220628e-29 - art_sys_36: 7.57745340e-18 - art_sys_37: 7.04900567e-28 - art_sys_38: 1.02307256e-23 - art_sys_39: 8.36503518e-26 - art_sys_40: -2.06788407e-17 - art_sys_41: 1.75544100e-26 - art_sys_42: 5.60883712e-30 - art_sys_43: -4.55966577e-24 - art_sys_44: 1.71955591e-24 - art_sys_45: -5.96878805e-24 - art_sys_46: -2.79540908e-27 - art_sys_47: -2.18389621e-16 - art_sys_48: 6.93298930e-23 - art_sys_49: 1.66276819e-15 - art_sys_50: 6.95165053e-15 - art_sys_51: 2.85056246e-14 - art_sys_52: 4.08885192e-14 - art_sys_53: 4.32660404e-14 - art_sys_54: -9.16210014e-15 - art_sys_55: 1.49833360e-25 - art_sys_56: -4.50323160e-24 - art_sys_57: -3.70006331e-15 - art_sys_58: -1.75783842e-15 - art_sys_59: 6.94592922e-14 - art_sys_60: -1.12239407e-21 - art_sys_61: 1.33486187e-25 - art_sys_62: -1.42919042e-14 - art_sys_63: -1.05514510e-23 - art_sys_64: -1.72967208e-21 - art_sys_65: -1.39450705e-14 - art_sys_66: 2.45648565e-14 - art_sys_67: -1.15708291e-24 - art_sys_68: -2.79543145e-20 - art_sys_69: 1.03226103e-20 - art_sys_70: -5.34838668e-20 - art_sys_71: 9.27645084e-14 - art_sys_72: 5.30373480e-20 - art_sys_73: 1.14042331e-14 - art_sys_74: -1.84648360e-14 - art_sys_75: 2.57643094e-14 - art_sys_76: 4.21247592e-14 - art_sys_77: 1.58266518e-12 - art_sys_78: -6.34793919e-22 - art_sys_79: -2.68684566e-15 - art_sys_80: -2.13067811e-14 - art_sys_81: -9.86170049e-17 - art_sys_82: -2.65890089e-17 - art_sys_83: -2.28086176e-14 - art_sys_84: -1.55001646e-16 - art_sys_85: 6.49561294e-16 - art_sys_86: 5.04405869e-15 - art_sys_87: 5.89313099e-12 - art_sys_88: 6.66701258e-15 - art_sys_89: 5.58390767e-15 - art_sys_90: -2.71919787e-18 - art_sys_91: 3.26578179e-17 - art_sys_92: -8.53213859e-18 - art_sys_93: 3.52551291e-19 - art_sys_94: 3.74598338e-19 - art_sys_95: -4.54399733e-16 - art_sys_96: 9.23447931e-14 - art_sys_97: -1.02548719e-13 - art_sys_98: 1.24589889e-18 - art_sys_99: -1.79851988e-20 - art_sys_100: 3.89815910e-16 - art_sys_101: 1.32074430e-17 - art_sys_102: -1.50569261e-17 - art_sys_103: 3.97911288e-15 - art_sys_104: -1.40766380e-21 - art_sys_105: -4.92946950e-16 - art_sys_106: 8.38112068e-10 - art_sys_107: 1.57225742e-11 - art_sys_108: -2.54672636e-12 - art_sys_109: -1.73249553e-10 - art_sys_110: -3.47920618e-12 - art_sys_111: -1.69315822e-14 - art_sys_112: 2.37676155e-11 - art_sys_113: -1.79966179e-12 - art_sys_114: 7.19480676e-15 - art_sys_115: -1.93842903e-11 - art_sys_116: 1.21965625e-08 - art_sys_117: 7.53976363e-14 - art_sys_118: 1.19396718e-10 - art_sys_119: 1.78714316e-13 - art_sys_120: 8.65467919e-09 - art_sys_121: -1.02155853e-08 - art_sys_122: -2.04687006e-12 - art_sys_123: -3.73504079e-11 - art_sys_124: 6.20554382e-09 - art_sys_125: -3.27321769e-07 - art_sys_126: 1.51193630e-08 - art_sys_127: -2.14160660e-10 - art_sys_128: 1.36576675e-08 - art_sys_129: -1.34613757e-10 - art_sys_130: 3.59637997e-08 - art_sys_131: -7.27449854e-07 - art_sys_132: 6.52802276e-10 - art_sys_133: -2.70518668e-08 - art_sys_134: 2.51691626e-09 - art_sys_135: 8.10538508e-10 - art_sys_136: -9.27627402e-09 - art_sys_137: -1.43626373e-09 - art_sys_138: 6.79989557e-19 - art_sys_139: 8.96546339e-09 - art_sys_140: 2.79179705e-07 - art_sys_141: -1.42180334e-08 - art_sys_142: -9.19292165e-08 - art_sys_143: 4.43387075e-10 - art_sys_144: -2.33347026e-10 - art_sys_145: -1.90012806e-09 - art_sys_146: -0.0 - art_sys_147: -5.34891984e-08 - art_sys_148: 4.93964559e-07 - art_sys_149: 4.93964559e-07 - art_sys_150: 1.09265232e-07 - art_sys_151: 1.09265232e-07 - art_sys_152: 1.60577231e-07 - art_sys_153: -5.68123315e-09 - art_sys_154: 1.80380703e-12 - art_sys_155: -3.22292390e-20 - art_sys_156: -1.57131636e-23 - art_sys_157: -6.07003353e-26 - art_sys_158: 0.0 - art_sys_159: 2.95725437e-10 - art_sys_160: -8.37977852e-11 - art_sys_161: -1.57033619e-10 - art_sys_162: -1.40913706e-12 - art_sys_163: 1.80609477e-08 - art_sys_164: -2.75262796e-10 - art_sys_165: -1.67847603e-10 - art_sys_166: -1.09006667e-17 - art_sys_167: 4.08300075e-18 - art_sys_168: 1.78995334e-17 - art_sys_169: 9.04636824e-18 - art_sys_170: 8.14205178e-19 - art_sys_171: 2.13549776e-19 - art_sys_172: -2.99184031e-19 - art_sys_173: 6.62884338e-20 - art_sys_174: -4.39179710e-19 - art_sys_175: 5.38774151e-22 - art_sys_176: 3.49083556e-20 - art_sys_177: 3.36972086e-20 - art_sys_178: -1.97597412e-20 - art_sys_179: 1.16988980e-20 - art_sys_180: -1.37001717e-20 - art_sys_181: -2.58469379e-24 - art_sys_182: -1.15836165e-22 - art_sys_183: -1.23035285e-23 - art_sys_184: -8.62412577e-25 - art_sys_185: -5.16485741e-25 + art_sys_19: 3.16268128e-37 + art_sys_20: -8.69720216e-35 + art_sys_21: 1.42905635e-21 + art_sys_22: 1.15433488e-35 + art_sys_23: -6.36451996e-35 + art_sys_24: -2.43294543e-21 + art_sys_25: -2.61272997e-34 + art_sys_26: 1.41159633e-34 + art_sys_27: -4.35941181e-20 + art_sys_28: -5.52100273e-29 + art_sys_29: -7.57745340e-18 + art_sys_30: 5.43659551e-32 + art_sys_31: 1.15722188e-28 + art_sys_32: -2.06788408e-17 + art_sys_33: 1.12223665e-30 + art_sys_34: 3.96861922e-27 + art_sys_35: -2.17971485e-27 + art_sys_36: -4.63672333e-22 + art_sys_37: -4.32157298e-23 + art_sys_38: 5.06183342e-23 + art_sys_39: 4.89320645e-24 + art_sys_40: -3.49025800e-24 + art_sys_41: -5.21443003e-25 + art_sys_42: -6.66262145e-24 + art_sys_43: 6.20577817e-25 + art_sys_44: -6.82635715e-25 + art_sys_45: 8.68520295e-24 + art_sys_46: 1.34950038e-23 + art_sys_47: -2.18389627e-16 + art_sys_48: -8.64750028e-23 + art_sys_49: 3.70006330e-15 + art_sys_50: 6.84903792e-24 + art_sys_51: -1.20267966e-23 + art_sys_52: 2.40564126e-24 + art_sys_53: -3.56594063e-23 + art_sys_54: -1.42919045e-14 + art_sys_55: -5.16806436e-24 + art_sys_56: -1.10377028e-24 + art_sys_57: -1.58132989e-23 + art_sys_58: 5.84892617e-24 + art_sys_59: -3.85592525e-20 + art_sys_60: 9.27639415e-14 + art_sys_61: 3.21756796e-21 + art_sys_62: 9.10540218e-25 + art_sys_63: -1.58266401e-12 + art_sys_64: 9.25355488e-16 + art_sys_65: -6.36159145e-15 + art_sys_66: 3.96028516e-14 + art_sys_67: 7.50557629e-14 + art_sys_68: -7.47815717e-14 + art_sys_69: 7.42758190e-14 + art_sys_70: 1.46639056e-13 + art_sys_71: 2.32491137e-13 + art_sys_72: -3.13540816e-14 + art_sys_73: -4.08332081e-14 + art_sys_74: 7.23022291e-22 + art_sys_75: 5.14285707e-14 + art_sys_76: -1.60583590e-15 + art_sys_77: -1.39332078e-14 + art_sys_78: 9.79064625e-15 + art_sys_79: 2.27919082e-14 + art_sys_80: 2.90073680e-15 + art_sys_81: -2.28445825e-14 + art_sys_82: 5.89314904e-12 + art_sys_83: -2.14082327e-17 + art_sys_84: 1.60753433e-16 + art_sys_85: 1.31708704e-16 + art_sys_86: 1.31606741e-17 + art_sys_87: -1.61332974e-14 + art_sys_88: -6.71123276e-15 + art_sys_89: -4.56968043e-17 + art_sys_90: -6.64770468e-15 + art_sys_91: 4.07420715e-18 + art_sys_92: -6.02454173e-17 + art_sys_93: 2.97751614e-17 + art_sys_94: -2.80108355e-15 + art_sys_95: -1.92550146e-19 + art_sys_96: -1.18339565e-17 + art_sys_97: 1.19642890e-19 + art_sys_98: 2.96919499e-20 + art_sys_99: -8.65762172e-19 + art_sys_100: 9.50283108e-18 + art_sys_101: 9.04618061e-19 + art_sys_102: -4.21881363e-16 + art_sys_103: 8.17907173e-24 + art_sys_104: -1.98685844e-18 + art_sys_105: 3.08302880e-11 + art_sys_106: -9.00768246e-18 + art_sys_107: 2.13117251e-14 + art_sys_108: 5.01780432e-11 + art_sys_109: -1.74654448e-11 + art_sys_110: 1.64662004e-13 + art_sys_111: -4.86679781e-16 + art_sys_112: 8.38077439e-10 + art_sys_113: -1.32284267e-20 + art_sys_114: -5.77086454e-12 + art_sys_115: -3.37361106e-17 + art_sys_116: 3.15685341e-12 + art_sys_117: -7.54116590e-13 + art_sys_118: -1.73199677e-17 + art_sys_119: -1.04703174e-11 + art_sys_120: -1.21947626e-08 + art_sys_121: 2.64882015e-11 + art_sys_122: 2.02196099e-15 + art_sys_123: 3.93118530e-11 + art_sys_124: -4.98955513e-15 + art_sys_125: -1.44882045e-10 + art_sys_126: -8.65080208e-09 + art_sys_127: -2.48988521e-08 + art_sys_128: -4.33029735e-14 + art_sys_129: 1.63258841e-10 + art_sys_130: 7.97901843e-09 + art_sys_131: -2.07877369e-09 + art_sys_132: 7.65838424e-13 + art_sys_133: -1.12155709e-08 + art_sys_134: 3.27271355e-07 + art_sys_135: 1.93168972e-12 + art_sys_136: 2.85222957e-09 + art_sys_137: -4.38535368e-08 + art_sys_138: 1.25663744e-11 + art_sys_139: -5.68615937e-09 + art_sys_140: -5.98490326e-10 + art_sys_141: -7.47491873e-07 + art_sys_142: 6.10204259e-11 + art_sys_143: 2.68501200e-08 + art_sys_144: 4.74799297e-09 + art_sys_145: -8.81311314e-10 + art_sys_146: -5.27636718e-08 + art_sys_147: -2.67838562e-11 + art_sys_148: -5.34987443e-11 + art_sys_149: 5.01999760e-10 + art_sys_150: 1.42745792e-07 + art_sys_151: 5.27814579e-08 + art_sys_152: -1.09813875e-10 + art_sys_153: -5.62510871e-08 + art_sys_154: -1.68342575e-17 + art_sys_155: 3.51772380e-11 + art_sys_156: -0.0 + art_sys_157: -1.64292080e-08 + art_sys_158: -0.0 + art_sys_159: -1.00981492e-07 + art_sys_160: 4.66467670e-09 + art_sys_161: 1.15601770e-07 + art_sys_162: 1.15601770e-07 + art_sys_163: 2.42045021e-08 + art_sys_164: 2.42045021e-08 + art_sys_165: -4.27492267e-22 + art_sys_166: 1.47438173e-22 + art_sys_167: 0.0 + art_sys_168: -4.25485089e-18 + art_sys_169: 3.75553033e-18 + art_sys_170: 3.38070959e-19 + art_sys_171: 1.94524620e-19 + art_sys_172: -4.18498283e-20 + art_sys_173: -1.31464204e-19 + art_sys_174: -2.33803256e-20 + art_sys_175: -1.30580718e-20 + art_sys_176: 3.19084889e-21 + art_sys_177: -8.74282931e-22 + art_sys_178: -3.59414933e-21 + art_sys_179: -9.07910951e-23 + art_sys_180: -3.48079085e-21 + art_sys_181: -3.86147180e-22 + art_sys_182: 4.89991839e-22 + art_sys_183: 8.52552604e-24 + art_sys_184: 4.40729725e-25 + art_sys_185: 1.63900309e-25 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -65716,189 +65716,189 @@ bins: uncorrelated_uncertainty: 124.926 - art_sys_1: -1.44127189e+02 art_sys_2: -2.83295881e+01 - art_sys_3: 6.91162246e-14 - art_sys_4: 1.47366492e-14 - art_sys_5: -1.08388221e-15 + art_sys_3: -1.48945737e-13 + art_sys_4: 1.18398710e-14 + art_sys_5: 3.24611039e-14 art_sys_6: 9.53096229e+00 - art_sys_7: -5.66501458e-14 - art_sys_8: 3.56415833e-15 - art_sys_9: -7.33731118e-15 - art_sys_10: 1.33686269e+00 - art_sys_11: -1.79522083e-14 - art_sys_12: 5.68595526e-16 - art_sys_13: 3.61923112e-02 - art_sys_14: -1.08691779e-16 - art_sys_15: -3.38860419e-16 - art_sys_16: 8.24988882e-16 + art_sys_7: -1.90736856e-14 + art_sys_8: 2.46091523e-14 + art_sys_9: 7.73814972e-15 + art_sys_10: -1.33686269e+00 + art_sys_11: -8.10528210e-15 + art_sys_12: -8.17913917e-16 + art_sys_13: -3.61923112e-02 + art_sys_14: -1.28261715e-15 + art_sys_15: -9.86301261e-17 + art_sys_16: -1.24868601e-15 art_sys_17: 9.21916398e-03 - art_sys_18: 4.89606856e-15 - art_sys_19: 3.08997059e-15 - art_sys_20: 2.13597106e-03 - art_sys_21: -1.47275690e-15 - art_sys_22: 6.24776074e-16 - art_sys_23: -3.00219217e-04 - art_sys_24: 1.49401888e-16 - art_sys_25: -2.20151589e-17 - art_sys_26: -1.20987455e-18 - art_sys_27: 4.82908716e-20 - art_sys_28: 1.86188814e-17 - art_sys_29: 2.70751277e-18 - art_sys_30: 8.09840507e-20 - art_sys_31: 4.24656188e-21 - art_sys_32: 2.48230412e-19 - art_sys_33: 2.95910952e-19 - art_sys_34: -1.13788892e-15 - art_sys_35: -1.56165884e-06 - art_sys_36: -1.04821341e-18 - art_sys_37: 1.25919838e-16 - art_sys_38: -9.06342508e-19 - art_sys_39: -3.03114013e-07 - art_sys_40: 1.32035758e-15 - art_sys_41: 3.36666301e-17 - art_sys_42: -5.37039982e-16 - art_sys_43: -2.69052175e-19 - art_sys_44: -2.86900758e-20 - art_sys_45: -1.05396047e-19 - art_sys_46: 4.81302776e-08 - art_sys_47: 8.76283368e-20 - art_sys_48: 2.19346559e-17 - art_sys_49: -1.37733300e-19 - art_sys_50: 1.15199188e-20 - art_sys_51: 1.35254920e-21 - art_sys_52: 9.57749042e-22 - art_sys_53: 1.53133462e-22 - art_sys_54: -7.54178116e-23 - art_sys_55: 1.88999137e-18 - art_sys_56: 5.08673923e-19 - art_sys_57: 1.38525120e-18 - art_sys_58: -1.96347727e-22 - art_sys_59: 1.82649984e-23 - art_sys_60: -1.05069161e-17 - art_sys_61: -1.32601602e-09 - art_sys_62: 4.56585126e-19 - art_sys_63: 7.42258150e-20 - art_sys_64: 1.08585403e-18 - art_sys_65: -7.79506581e-24 - art_sys_66: -1.92359411e-24 - art_sys_67: -3.26305147e-10 - art_sys_68: 4.12010104e-19 - art_sys_69: 4.18970522e-20 - art_sys_70: -3.23814059e-18 - art_sys_71: -1.67671905e-19 - art_sys_72: -4.88095462e-11 - art_sys_73: 3.71713163e-23 - art_sys_74: -8.75726641e-23 - art_sys_75: -3.61645617e-24 - art_sys_76: -2.54638097e-26 - art_sys_77: -1.84609021e-19 - art_sys_78: -3.40520507e-21 - art_sys_79: -8.73162923e-24 - art_sys_80: 6.86954327e-23 - art_sys_81: 1.61485026e-24 - art_sys_82: -3.01078646e-24 - art_sys_83: -4.58404919e-25 - art_sys_84: 4.03508176e-24 - art_sys_85: -5.23558880e-25 - art_sys_86: 1.13501365e-25 - art_sys_87: -2.89187251e-19 - art_sys_88: -6.83044232e-26 - art_sys_89: -1.35001704e-26 - art_sys_90: -1.27109542e-18 - art_sys_91: 2.91326367e-21 - art_sys_92: 4.46408062e-19 - art_sys_93: 1.57345832e-12 - art_sys_94: -8.95545017e-19 - art_sys_95: 1.32690886e-22 - art_sys_96: 5.10885948e-28 - art_sys_97: -5.35315145e-23 - art_sys_98: 1.65355710e-19 - art_sys_99: -1.79656559e-13 - art_sys_100: -1.55613942e-22 - art_sys_101: 1.43256823e-19 - art_sys_102: -6.44869274e-20 - art_sys_103: -2.13900612e-22 - art_sys_104: -3.68479138e-15 - art_sys_105: -1.33484623e-20 - art_sys_106: 2.16320119e-22 - art_sys_107: -1.61833198e-28 - art_sys_108: 7.64785389e-28 - art_sys_109: 4.59109110e-28 - art_sys_110: 6.80266751e-23 - art_sys_111: -4.72227446e-21 - art_sys_112: -7.27159932e-24 - art_sys_113: -5.09510236e-28 - art_sys_114: 5.95189962e-21 - art_sys_115: -6.69969668e-25 - art_sys_116: -1.51477028e-23 - art_sys_117: -4.49300950e-21 - art_sys_118: -8.53184880e-26 - art_sys_119: 3.04221065e-21 - art_sys_120: 3.27956302e-24 - art_sys_121: 1.10824288e-25 - art_sys_122: 1.37965200e-21 - art_sys_123: 3.50207459e-22 - art_sys_124: -7.14253860e-28 - art_sys_125: -3.67643932e-24 - art_sys_126: -2.29684524e-27 - art_sys_127: -9.32718925e-23 - art_sys_128: -6.01457572e-28 - art_sys_129: 4.29937440e-23 - art_sys_130: 6.23998610e-28 - art_sys_131: -2.00758104e-25 - art_sys_132: -1.13153471e-23 - art_sys_133: -2.32367247e-26 - art_sys_134: -5.74206203e-29 - art_sys_135: 3.04901854e-24 - art_sys_136: -7.45700868e-27 - art_sys_137: -4.06266609e-30 - art_sys_138: 1.56992570e-17 - art_sys_139: -2.97387120e-25 - art_sys_140: -4.33672789e-26 - art_sys_141: 3.12076665e-25 - art_sys_142: -3.20840020e-27 - art_sys_143: 3.59912072e-31 - art_sys_144: 1.92770327e-31 - art_sys_145: 2.61749427e-30 - art_sys_146: -0.0 - art_sys_147: 2.56588740e-28 - art_sys_148: -2.85791601e-27 - art_sys_149: -2.85791601e-27 - art_sys_150: 1.78034682e-28 - art_sys_151: 1.78034682e-28 - art_sys_152: 1.02151004e-26 - art_sys_153: -7.60373101e-28 - art_sys_154: 8.05426951e-32 - art_sys_155: -2.85350508e-39 - art_sys_156: 5.09050650e-44 - art_sys_157: 7.07525935e-43 - art_sys_158: -0.0 - art_sys_159: -4.27574983e-29 - art_sys_160: -1.50333378e-30 - art_sys_161: -2.20016064e-30 - art_sys_162: 3.52794168e-31 - art_sys_163: -4.84489941e-28 - art_sys_164: 2.34524332e-29 - art_sys_165: 7.89797970e-29 - art_sys_166: -1.01324437e-34 - art_sys_167: 2.81806353e-35 - art_sys_168: 1.25042127e-35 - art_sys_169: 4.50558231e-35 - art_sys_170: 2.11457568e-34 - art_sys_171: -2.79007982e-34 - art_sys_172: -6.60924161e-33 - art_sys_173: -1.94563752e-33 - art_sys_174: -4.38262016e-34 - art_sys_175: -1.48275731e-42 - art_sys_176: -7.24430263e-37 - art_sys_177: -2.33090116e-35 - art_sys_178: 4.21942574e-36 - art_sys_179: -1.38725866e-37 - art_sys_180: 1.85985004e-36 - art_sys_181: -2.96046759e-38 - art_sys_182: -1.91096167e-39 - art_sys_183: -2.27299948e-41 - art_sys_184: 4.17656039e-43 - art_sys_185: 6.74743097e-47 + art_sys_18: -1.11842454e-15 + art_sys_19: 3.60867421e-15 + art_sys_20: -2.13597106e-03 + art_sys_21: -8.77944580e-17 + art_sys_22: 3.00219217e-04 + art_sys_23: 5.33813666e-16 + art_sys_24: -5.89478965e-16 + art_sys_25: -6.41817499e-17 + art_sys_26: -3.01064126e-17 + art_sys_27: -1.26452517e-17 + art_sys_28: 1.56165884e-06 + art_sys_29: -7.62463709e-19 + art_sys_30: 1.25252372e-17 + art_sys_31: -3.03114012e-07 + art_sys_32: 3.31227702e-18 + art_sys_33: 6.27044119e-17 + art_sys_34: -6.09968371e-18 + art_sys_35: -4.81302776e-08 + art_sys_36: -2.61979891e-16 + art_sys_37: -1.02798016e-17 + art_sys_38: 1.20369770e-18 + art_sys_39: 3.43577196e-20 + art_sys_40: 2.94017969e-20 + art_sys_41: 2.44342840e-19 + art_sys_42: -1.53448530e-19 + art_sys_43: 1.12964243e-20 + art_sys_44: -2.85153967e-18 + art_sys_45: 1.15144072e-18 + art_sys_46: 4.24389745e-21 + art_sys_47: 2.59710142e-18 + art_sys_48: -3.44993416e-17 + art_sys_49: 1.45602698e-17 + art_sys_50: -2.76764970e-20 + art_sys_51: 1.02164199e-19 + art_sys_52: -1.32601602e-09 + art_sys_53: 7.55134263e-18 + art_sys_54: -2.80051902e-19 + art_sys_55: -8.88284362e-18 + art_sys_56: 3.26305128e-10 + art_sys_57: -2.60748072e-19 + art_sys_58: 2.74109507e-21 + art_sys_59: 1.92283838e-18 + art_sys_60: 9.07623157e-20 + art_sys_61: 6.78111872e-21 + art_sys_62: -4.88095487e-11 + art_sys_63: -4.31766354e-20 + art_sys_64: 8.22996060e-20 + art_sys_65: -3.80542804e-21 + art_sys_66: 9.09551817e-21 + art_sys_67: -1.00246486e-21 + art_sys_68: -3.27907586e-25 + art_sys_69: -7.81177644e-24 + art_sys_70: -3.71866860e-24 + art_sys_71: -2.22570796e-24 + art_sys_72: 6.12494564e-26 + art_sys_73: 5.68691346e-28 + art_sys_74: 5.14954932e-22 + art_sys_75: 1.37810842e-25 + art_sys_76: -1.28767708e-23 + art_sys_77: 4.68760979e-23 + art_sys_78: -1.03943695e-23 + art_sys_79: 2.42220139e-25 + art_sys_80: 1.82869873e-23 + art_sys_81: -8.46539979e-21 + art_sys_82: 8.62219965e-19 + art_sys_83: 5.59359745e-24 + art_sys_84: 2.63442119e-24 + art_sys_85: -2.22310371e-24 + art_sys_86: -5.06119020e-25 + art_sys_87: 1.05210594e-21 + art_sys_88: 5.21173811e-23 + art_sys_89: 3.91633041e-26 + art_sys_90: 7.17131348e-25 + art_sys_91: -3.50659173e-19 + art_sys_92: -1.42196759e-26 + art_sys_93: 1.31735794e-26 + art_sys_94: 2.05436647e-26 + art_sys_95: 7.67426145e-21 + art_sys_96: 3.49889753e-18 + art_sys_97: 1.57346387e-12 + art_sys_98: 1.43713829e-20 + art_sys_99: -5.97305281e-22 + art_sys_100: -3.71144584e-19 + art_sys_101: -7.43951453e-19 + art_sys_102: 7.49027849e-20 + art_sys_103: -1.79672341e-13 + art_sys_104: -1.30298459e-19 + art_sys_105: -7.05142320e-27 + art_sys_106: -1.79831174e-21 + art_sys_107: 5.52075489e-23 + art_sys_108: -9.51579387e-27 + art_sys_109: -5.01353768e-28 + art_sys_110: -2.33482896e-21 + art_sys_111: 7.53619769e-20 + art_sys_112: 1.01092008e-21 + art_sys_113: 3.68787181e-15 + art_sys_114: 6.88166107e-29 + art_sys_115: 3.63367850e-20 + art_sys_116: -4.19405093e-28 + art_sys_117: -1.64178196e-28 + art_sys_118: -2.65213469e-20 + art_sys_119: -1.59573697e-24 + art_sys_120: -8.60318478e-24 + art_sys_121: -1.16226901e-27 + art_sys_122: 1.33390132e-20 + art_sys_123: 7.54533417e-26 + art_sys_124: -7.44070969e-21 + art_sys_125: -3.17957114e-28 + art_sys_126: 2.26278325e-25 + art_sys_127: -2.17165873e-26 + art_sys_128: 3.20690847e-21 + art_sys_129: -5.45202657e-28 + art_sys_130: 7.36704022e-27 + art_sys_131: -2.45114847e-28 + art_sys_132: 1.23841771e-21 + art_sys_133: -3.30103662e-27 + art_sys_134: -2.32468041e-26 + art_sys_135: -4.36370749e-22 + art_sys_136: 6.70037775e-29 + art_sys_137: -8.27313797e-28 + art_sys_138: -1.19638321e-22 + art_sys_139: -2.91793704e-27 + art_sys_140: 2.35753737e-30 + art_sys_141: -1.54725970e-26 + art_sys_142: -4.28471166e-23 + art_sys_143: -1.65143530e-27 + art_sys_144: 1.35964782e-29 + art_sys_145: -7.79058189e-24 + art_sys_146: 4.66293051e-28 + art_sys_147: -1.46289325e-30 + art_sys_148: 1.21880051e-31 + art_sys_149: 7.88565880e-25 + art_sys_150: -2.30292967e-26 + art_sys_151: 1.45082844e-27 + art_sys_152: 2.26693469e-29 + art_sys_153: 6.93223401e-28 + art_sys_154: -6.29932849e-18 + art_sys_155: 5.17404024e-29 + art_sys_156: -0.0 + art_sys_157: 7.66252526e-26 + art_sys_158: 0.0 + art_sys_159: -1.91991501e-26 + art_sys_160: -2.09105025e-27 + art_sys_161: -3.07234128e-28 + art_sys_162: -3.07234128e-28 + art_sys_163: 7.64431113e-28 + art_sys_164: 7.64431113e-28 + art_sys_165: -7.03802194e-42 + art_sys_166: 2.20855552e-42 + art_sys_167: 0.0 + art_sys_168: 3.56880855e-34 + art_sys_169: -1.11635027e-33 + art_sys_170: 1.07802693e-33 + art_sys_171: 1.08547052e-32 + art_sys_172: 2.07878599e-33 + art_sys_173: -1.55034532e-34 + art_sys_174: -5.70955308e-36 + art_sys_175: 9.25158775e-35 + art_sys_176: -8.35855554e-36 + art_sys_177: -7.99310572e-38 + art_sys_178: -6.40488980e-39 + art_sys_179: -3.79797264e-41 + art_sys_180: -3.96071350e-40 + art_sys_181: 5.21950615e-37 + art_sys_182: -2.97688418e-36 + art_sys_183: -4.72300127e-38 + art_sys_184: 8.14348679e-41 + art_sys_185: 9.87548974e-43 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -66007,189 +66007,189 @@ bins: uncorrelated_uncertainty: 124.926 - art_sys_1: -7.40546891e+01 art_sys_2: 5.17553441e+01 - art_sys_3: 5.98898734e-14 - art_sys_4: -8.57583159e-15 - art_sys_5: -7.97507165e-15 + art_sys_3: 9.87591796e-14 + art_sys_4: -4.89906578e-14 + art_sys_5: -6.64684166e-14 art_sys_6: -1.73435696e+01 - art_sys_7: -1.01161744e-14 - art_sys_8: -1.15195770e-14 - art_sys_9: 1.27473035e-15 - art_sys_10: -3.89869916e+00 - art_sys_11: 5.54041655e-14 - art_sys_12: -2.62530618e-16 - art_sys_13: -1.16031603e-01 - art_sys_14: 3.97068315e-16 - art_sys_15: 9.17707774e-16 - art_sys_16: -6.33231159e-16 + art_sys_7: 4.12988140e-14 + art_sys_8: -8.70008729e-14 + art_sys_9: -2.27816179e-14 + art_sys_10: 3.89869916e+00 + art_sys_11: 2.29194196e-14 + art_sys_12: 3.11003619e-15 + art_sys_13: 1.16031603e-01 + art_sys_14: 3.52981104e-15 + art_sys_15: 5.66658952e-16 + art_sys_16: 2.80586253e-15 art_sys_17: -3.15344596e-02 - art_sys_18: -1.24112429e-14 - art_sys_19: -7.89851559e-15 - art_sys_20: -8.02872055e-03 - art_sys_21: 3.89067579e-15 - art_sys_22: -1.77347005e-15 - art_sys_23: 1.17210415e-03 - art_sys_24: -2.29451854e-16 - art_sys_25: 1.62517385e-18 - art_sys_26: 5.82964798e-18 - art_sys_27: -2.31241473e-19 - art_sys_28: 1.02416565e-17 - art_sys_29: 2.79330753e-18 - art_sys_30: -5.07847523e-19 - art_sys_31: -3.45652378e-19 - art_sys_32: 9.83700838e-19 - art_sys_33: 1.09110809e-18 - art_sys_34: 6.09907926e-15 - art_sys_35: 8.31030126e-06 - art_sys_36: 3.27810311e-18 - art_sys_37: -6.56200218e-16 - art_sys_38: -1.19077327e-18 - art_sys_39: 1.60940847e-06 - art_sys_40: -7.02359557e-15 - art_sys_41: -1.13914670e-16 - art_sys_42: 2.86040294e-15 - art_sys_43: -1.83876943e-19 - art_sys_44: -3.10943404e-20 - art_sys_45: 2.65139475e-19 - art_sys_46: -2.55144816e-07 - art_sys_47: 1.51991100e-18 - art_sys_48: -7.12687013e-17 - art_sys_49: 1.10705699e-19 - art_sys_50: -7.17979269e-20 - art_sys_51: -3.30162174e-20 - art_sys_52: -3.48176402e-21 - art_sys_53: -1.27765836e-21 - art_sys_54: 3.05444631e-22 - art_sys_55: -2.62284990e-18 - art_sys_56: -5.87079168e-19 - art_sys_57: -7.59030357e-18 - art_sys_58: 1.24692405e-21 - art_sys_59: -1.45378779e-22 - art_sys_60: 6.82563489e-17 - art_sys_61: 1.02589085e-08 - art_sys_62: -1.08342612e-17 - art_sys_63: -4.19838070e-19 - art_sys_64: -1.59556829e-17 - art_sys_65: 4.46569588e-23 - art_sys_66: 9.51728968e-24 - art_sys_67: 1.85589076e-09 - art_sys_68: -2.58353290e-18 - art_sys_69: -7.73003187e-20 - art_sys_70: 8.37862916e-18 - art_sys_71: 1.16284232e-18 - art_sys_72: 3.24684136e-10 - art_sys_73: -2.30583717e-22 - art_sys_74: 5.27530826e-22 - art_sys_75: 2.30912570e-23 - art_sys_76: 1.78305041e-25 - art_sys_77: 1.22952797e-18 - art_sys_78: -1.32433137e-20 - art_sys_79: 5.30024484e-23 - art_sys_80: -4.60412574e-22 - art_sys_81: -1.05891059e-23 - art_sys_82: 1.86079388e-23 - art_sys_83: 2.51710577e-24 - art_sys_84: -2.48552194e-23 - art_sys_85: 3.14208605e-24 - art_sys_86: 3.73904610e-26 - art_sys_87: 1.96435065e-18 - art_sys_88: 1.56091048e-26 - art_sys_89: -1.25402116e-26 - art_sys_90: 2.78940874e-18 - art_sys_91: -1.76788006e-20 - art_sys_92: -2.83779430e-18 - art_sys_93: -9.51556153e-12 - art_sys_94: 4.38705277e-18 - art_sys_95: 4.08875790e-22 - art_sys_96: -1.84551513e-27 - art_sys_97: 2.10813465e-22 - art_sys_98: -1.39911369e-19 - art_sys_99: 1.20503287e-12 - art_sys_100: 1.61263792e-22 - art_sys_101: -3.14923131e-19 - art_sys_102: 1.84924449e-19 - art_sys_103: 3.84578700e-23 - art_sys_104: 2.35953670e-14 - art_sys_105: 2.32325218e-20 - art_sys_106: 1.80442013e-22 - art_sys_107: -3.92989732e-28 - art_sys_108: 1.46369735e-27 - art_sys_109: 1.40166294e-28 - art_sys_110: -1.32660771e-22 - art_sys_111: 2.01748141e-20 - art_sys_112: -6.09753067e-24 - art_sys_113: 2.38572232e-28 - art_sys_114: -1.78754038e-20 - art_sys_115: -2.47354156e-24 - art_sys_116: -6.26196126e-23 - art_sys_117: 1.33233809e-20 - art_sys_118: 1.63155235e-25 - art_sys_119: -5.50885396e-21 - art_sys_120: -7.76062230e-23 - art_sys_121: 5.54116588e-27 - art_sys_122: -2.48267232e-21 - art_sys_123: -1.05626825e-21 - art_sys_124: -3.26163401e-27 - art_sys_125: 4.69435827e-24 - art_sys_126: 3.94702415e-27 - art_sys_127: 5.06404330e-22 - art_sys_128: 5.63027047e-27 - art_sys_129: -1.54282320e-22 - art_sys_130: 6.75288030e-27 - art_sys_131: -1.95364571e-25 - art_sys_132: 3.12632431e-23 - art_sys_133: 6.59302236e-26 - art_sys_134: 1.49677843e-28 - art_sys_135: 1.44981240e-23 - art_sys_136: -2.33891218e-26 - art_sys_137: 6.81879884e-31 - art_sys_138: -9.87713968e-17 - art_sys_139: -4.40656217e-24 - art_sys_140: -6.81021777e-25 - art_sys_141: -1.75046976e-24 - art_sys_142: 3.32369216e-26 - art_sys_143: 3.29659364e-30 - art_sys_144: 1.31025605e-29 - art_sys_145: -3.45106906e-30 - art_sys_146: -0.0 - art_sys_147: 1.15092593e-26 - art_sys_148: -9.63960173e-26 - art_sys_149: -9.63960173e-26 - art_sys_150: 1.19507578e-25 - art_sys_151: 1.19507578e-25 - art_sys_152: 1.69319943e-24 - art_sys_153: -1.23193523e-25 - art_sys_154: 3.81946761e-29 - art_sys_155: -4.54762720e-37 - art_sys_156: 2.94964118e-42 - art_sys_157: -3.19848466e-42 - art_sys_158: 0.0 - art_sys_159: 6.66462363e-29 - art_sys_160: 9.53736026e-29 - art_sys_161: -1.49722277e-28 - art_sys_162: -3.70897090e-29 - art_sys_163: -9.44412720e-28 - art_sys_164: -7.48574016e-29 - art_sys_165: -2.73194908e-29 - art_sys_166: 1.63259754e-35 - art_sys_167: -2.09722617e-35 - art_sys_168: 5.78479991e-36 - art_sys_169: 1.68294953e-34 - art_sys_170: 1.02089619e-34 - art_sys_171: -6.39019534e-34 - art_sys_172: -1.29087714e-33 - art_sys_173: 8.66300642e-34 - art_sys_174: -7.56091335e-37 - art_sys_175: 5.90221724e-42 - art_sys_176: -8.91733813e-35 - art_sys_177: -5.83061225e-36 - art_sys_178: -1.39880971e-36 - art_sys_179: 3.12729258e-37 - art_sys_180: 2.76444378e-36 - art_sys_181: -2.99217052e-38 - art_sys_182: 1.02289552e-39 - art_sys_183: 1.52163506e-40 - art_sys_184: -5.73687472e-43 - art_sys_185: 2.85793394e-46 + art_sys_18: 3.47541655e-15 + art_sys_19: -9.68917813e-15 + art_sys_20: 8.02872055e-03 + art_sys_21: 3.66289298e-16 + art_sys_22: -1.17210415e-03 + art_sys_23: -2.32673410e-15 + art_sys_24: 1.33158310e-15 + art_sys_25: 1.80382101e-16 + art_sys_26: 9.10001214e-17 + art_sys_27: 3.40756743e-17 + art_sys_28: -8.31030126e-06 + art_sys_29: -2.69687385e-18 + art_sys_30: -2.90971265e-17 + art_sys_31: 1.60940847e-06 + art_sys_32: -9.95217430e-18 + art_sys_33: -1.63817749e-16 + art_sys_34: 4.80596079e-18 + art_sys_35: 2.55144816e-07 + art_sys_36: -1.13183137e-16 + art_sys_37: -6.07045579e-19 + art_sys_38: 1.30650143e-18 + art_sys_39: 2.34585529e-20 + art_sys_40: 6.43984001e-21 + art_sys_41: 2.52703490e-19 + art_sys_42: -4.16992066e-19 + art_sys_43: -4.74307802e-19 + art_sys_44: -2.93338326e-18 + art_sys_45: 1.01092195e-18 + art_sys_46: 8.74864849e-20 + art_sys_47: -1.45837645e-17 + art_sys_48: 8.01378310e-17 + art_sys_49: -7.83089014e-17 + art_sys_50: 5.97284949e-20 + art_sys_51: 2.67332179e-19 + art_sys_52: 1.02589085e-08 + art_sys_53: -4.39277839e-17 + art_sys_54: 9.29146767e-19 + art_sys_55: 2.43278890e-17 + art_sys_56: -1.85589066e-09 + art_sys_57: 2.72550206e-20 + art_sys_58: -7.21359152e-22 + art_sys_59: -6.04097508e-18 + art_sys_60: 1.26714954e-19 + art_sys_61: -1.11757534e-20 + art_sys_62: 3.24684152e-10 + art_sys_63: -4.80984959e-20 + art_sys_64: -2.91645069e-20 + art_sys_65: -7.01779199e-21 + art_sys_66: 1.34667093e-21 + art_sys_67: 3.93009282e-22 + art_sys_68: -1.44048450e-23 + art_sys_69: 3.13316101e-23 + art_sys_70: 9.62497353e-24 + art_sys_71: 9.58248375e-24 + art_sys_72: -2.70780806e-25 + art_sys_73: 1.79927624e-25 + art_sys_74: 6.46906807e-21 + art_sys_75: -1.47013481e-25 + art_sys_76: 6.82354486e-23 + art_sys_77: -2.90514736e-22 + art_sys_78: 7.03512104e-23 + art_sys_79: -3.35578430e-25 + art_sys_80: -1.12380329e-22 + art_sys_81: 5.11981156e-20 + art_sys_82: -4.89966706e-18 + art_sys_83: -3.17879365e-23 + art_sys_84: -1.65694098e-23 + art_sys_85: 1.37484377e-23 + art_sys_86: 2.89183021e-24 + art_sys_87: -7.05765755e-21 + art_sys_88: -3.46305037e-22 + art_sys_89: -3.03431620e-25 + art_sys_90: -3.92650716e-24 + art_sys_91: 9.83722937e-19 + art_sys_92: 8.53809771e-26 + art_sys_93: -8.07390976e-26 + art_sys_94: -1.17269737e-25 + art_sys_95: -4.66711824e-20 + art_sys_96: -1.78771598e-17 + art_sys_97: -9.51559195e-12 + art_sys_98: -9.54076329e-20 + art_sys_99: -1.88930410e-19 + art_sys_100: 2.48936639e-18 + art_sys_101: 5.47195926e-18 + art_sys_102: -4.79865642e-19 + art_sys_103: 1.20512907e-12 + art_sys_104: 2.41483769e-19 + art_sys_105: 7.28528965e-26 + art_sys_106: 8.74821383e-20 + art_sys_107: -3.66046721e-22 + art_sys_108: 3.00908720e-27 + art_sys_109: 6.55561393e-28 + art_sys_110: 1.46888293e-20 + art_sys_111: -6.51262443e-19 + art_sys_112: -6.60001226e-21 + art_sys_113: -2.36135820e-14 + art_sys_114: 3.37307984e-28 + art_sys_115: -1.00933153e-19 + art_sys_116: -1.76172369e-25 + art_sys_117: -1.24923250e-27 + art_sys_118: 6.32220370e-20 + art_sys_119: -9.14501458e-25 + art_sys_120: 7.33490688e-23 + art_sys_121: -7.56354061e-28 + art_sys_122: -2.94351800e-20 + art_sys_123: -4.24671301e-25 + art_sys_124: 1.94250054e-20 + art_sys_125: -1.35666521e-28 + art_sys_126: -2.40420675e-25 + art_sys_127: -4.02097714e-27 + art_sys_128: -8.38472704e-21 + art_sys_129: 9.70725263e-28 + art_sys_130: -4.27816039e-27 + art_sys_131: 4.29295024e-29 + art_sys_132: -3.32347813e-21 + art_sys_133: 1.12145271e-26 + art_sys_134: -6.79655075e-25 + art_sys_135: 1.24619823e-21 + art_sys_136: -5.67764766e-29 + art_sys_137: -1.34673530e-27 + art_sys_138: 3.62985640e-22 + art_sys_139: 1.01469001e-26 + art_sys_140: -1.88134198e-30 + art_sys_141: 1.44823148e-27 + art_sys_142: 1.31842536e-22 + art_sys_143: 2.28171422e-27 + art_sys_144: -5.27890554e-29 + art_sys_145: 2.38525562e-23 + art_sys_146: -1.08291410e-27 + art_sys_147: 2.66924878e-29 + art_sys_148: -9.98354528e-31 + art_sys_149: -2.33141127e-24 + art_sys_150: 6.98839598e-26 + art_sys_151: -1.33983175e-26 + art_sys_152: -7.29654803e-29 + art_sys_153: -1.60252582e-26 + art_sys_154: 3.96274784e-17 + art_sys_155: -2.94287936e-28 + art_sys_156: 0.0 + art_sys_157: -4.61359867e-25 + art_sys_158: -0.0 + art_sys_159: 1.15383180e-25 + art_sys_160: 1.34520315e-26 + art_sys_161: 2.43915197e-27 + art_sys_162: 2.43915197e-27 + art_sys_163: -4.27666607e-27 + art_sys_164: -4.27666607e-27 + art_sys_165: 3.82797419e-41 + art_sys_166: -1.19102958e-41 + art_sys_167: -0.0 + art_sys_168: -6.93951140e-34 + art_sys_169: 1.47329629e-33 + art_sys_170: -1.34623154e-33 + art_sys_171: 1.94321105e-32 + art_sys_172: -6.17691977e-34 + art_sys_173: -3.02217104e-34 + art_sys_174: 9.02521651e-35 + art_sys_175: -1.06415005e-34 + art_sys_176: 8.52780881e-36 + art_sys_177: 5.21564658e-38 + art_sys_178: 5.04575326e-38 + art_sys_179: 2.30460949e-40 + art_sys_180: 2.35710038e-39 + art_sys_181: -3.60494848e-37 + art_sys_182: -2.94602649e-36 + art_sys_183: -9.47214603e-39 + art_sys_184: -6.40792556e-41 + art_sys_185: -7.91745317e-43 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -66298,189 +66298,189 @@ bins: uncorrelated_uncertainty: 5.88576000e+01 - art_sys_1: -6.75394975e+00 art_sys_2: 4.84578686e+01 - art_sys_3: 2.40377982e-15 - art_sys_4: 2.76421254e-14 - art_sys_5: -1.25138800e-14 + art_sys_3: 9.16025315e-15 + art_sys_4: 6.42700306e-14 + art_sys_5: 7.86600653e-16 art_sys_6: 1.80896961e+01 - art_sys_7: -1.52427822e-14 - art_sys_8: 2.60925757e-14 - art_sys_9: 1.04464505e-14 - art_sys_10: 6.35102935e+00 - art_sys_11: -9.52982970e-14 - art_sys_12: -2.71434182e-16 - art_sys_13: 3.74666874e-01 - art_sys_14: -1.67911802e-16 - art_sys_15: -1.75680644e-15 - art_sys_16: 1.74152805e-15 + art_sys_7: 2.76554744e-15 + art_sys_8: 1.27548356e-13 + art_sys_9: 1.24746393e-14 + art_sys_10: -6.35102935e+00 + art_sys_11: -3.92487520e-14 + art_sys_12: -4.77232957e-15 + art_sys_13: -3.74666874e-01 + art_sys_14: -4.77327864e-15 + art_sys_15: -6.49393982e-15 + art_sys_16: -5.08642817e-15 art_sys_17: 8.87390780e-02 - art_sys_18: 1.91518211e-14 - art_sys_19: 1.35014231e-14 - art_sys_20: 2.62719128e-02 - art_sys_21: -6.56455130e-15 - art_sys_22: 2.75805007e-15 - art_sys_23: -3.96660433e-03 - art_sys_24: 2.40997353e-16 - art_sys_25: -5.41006117e-17 - art_sys_26: -1.80121956e-17 - art_sys_27: 5.99690226e-19 - art_sys_28: -1.35020703e-16 - art_sys_29: -4.38222133e-17 - art_sys_30: 1.69993664e-18 - art_sys_31: 3.05218394e-19 - art_sys_32: 1.66173877e-18 - art_sys_33: 2.40916943e-18 - art_sys_34: -1.93901624e-14 - art_sys_35: -2.63303923e-05 - art_sys_36: -1.48287766e-17 - art_sys_37: 2.40049220e-15 - art_sys_38: -2.70280550e-18 - art_sys_39: -6.09179366e-06 - art_sys_40: 2.65948748e-14 - art_sys_41: 2.02194115e-16 - art_sys_42: -1.02154363e-14 - art_sys_43: 1.15262300e-20 - art_sys_44: 4.26409508e-20 - art_sys_45: -1.62295850e-19 - art_sys_46: 9.16431594e-07 - art_sys_47: -1.00446980e-17 - art_sys_48: 1.69887984e-16 - art_sys_49: -5.80662152e-19 - art_sys_50: 3.03930323e-19 - art_sys_51: 1.37181691e-19 - art_sys_52: 1.49528414e-20 - art_sys_53: 5.39882200e-21 - art_sys_54: -1.23634004e-21 - art_sys_55: 2.11305600e-18 - art_sys_56: -5.94363194e-19 - art_sys_57: 2.94263807e-17 - art_sys_58: -4.96799312e-21 - art_sys_59: 5.73406655e-22 - art_sys_60: -2.51614281e-16 - art_sys_61: -4.12369640e-08 - art_sys_62: 4.35029423e-17 - art_sys_63: 1.67562515e-18 - art_sys_64: 6.14563678e-17 - art_sys_65: -1.87514414e-22 - art_sys_66: -3.72469252e-23 - art_sys_67: -7.28113314e-09 - art_sys_68: 1.07842115e-17 - art_sys_69: 4.95024720e-20 - art_sys_70: -1.33910211e-17 - art_sys_71: -4.47626878e-18 - art_sys_72: -1.28398283e-09 - art_sys_73: 9.59466203e-22 - art_sys_74: -2.19262151e-21 - art_sys_75: -9.36074552e-23 - art_sys_76: -7.60661046e-25 - art_sys_77: -4.81274881e-18 - art_sys_78: 6.40161910e-21 - art_sys_79: -2.20270851e-22 - art_sys_80: 1.80686045e-21 - art_sys_81: 4.32533515e-23 - art_sys_82: -7.66596843e-23 - art_sys_83: -6.44133357e-24 - art_sys_84: 1.02271258e-22 - art_sys_85: -1.30816166e-23 - art_sys_86: -7.15598441e-25 - art_sys_87: -7.89567937e-18 - art_sys_88: 1.87117019e-25 - art_sys_89: 1.27952863e-25 - art_sys_90: -2.43663046e-18 - art_sys_91: 7.12287906e-20 - art_sys_92: 1.09937311e-17 - art_sys_93: 3.94079365e-11 - art_sys_94: -1.57465497e-17 - art_sys_95: -1.39039515e-22 - art_sys_96: 2.12234135e-27 - art_sys_97: -1.71266598e-21 - art_sys_98: -5.72205384e-19 - art_sys_99: -4.84099211e-12 - art_sys_100: -2.91802826e-23 - art_sys_101: 5.71276657e-19 - art_sys_102: -3.71014765e-19 - art_sys_103: 5.13555821e-23 - art_sys_104: -1.18612013e-13 - art_sys_105: -7.66239766e-20 - art_sys_106: -1.95797914e-22 - art_sys_107: -7.86906767e-29 - art_sys_108: -3.37843633e-27 - art_sys_109: 5.67448774e-28 - art_sys_110: 3.78368659e-22 - art_sys_111: -1.29189405e-20 - art_sys_112: -5.35004228e-24 - art_sys_113: 9.33288026e-28 - art_sys_114: 1.67345659e-20 - art_sys_115: 2.16236613e-24 - art_sys_116: 6.33747295e-23 - art_sys_117: -1.53109881e-20 - art_sys_118: -2.27894286e-25 - art_sys_119: 6.90120188e-21 - art_sys_120: 6.13833290e-23 - art_sys_121: -2.15536779e-25 - art_sys_122: 3.10792897e-21 - art_sys_123: 1.37312804e-21 - art_sys_124: 5.84049925e-27 - art_sys_125: -1.27696530e-23 - art_sys_126: -4.98103861e-27 - art_sys_127: -6.00197935e-22 - art_sys_128: -9.54079692e-27 - art_sys_129: 2.00966906e-22 - art_sys_130: -1.50841685e-26 - art_sys_131: 1.09922662e-24 - art_sys_132: -2.71673543e-23 - art_sys_133: -6.74524197e-26 - art_sys_134: -1.54112674e-28 - art_sys_135: -2.83906396e-23 - art_sys_136: 4.94624856e-26 - art_sys_137: -6.95245127e-30 - art_sys_138: 3.99323897e-16 - art_sys_139: 8.03906131e-24 - art_sys_140: 1.23876390e-24 - art_sys_141: 7.47207494e-24 - art_sys_142: -1.13492202e-25 - art_sys_143: -5.89165367e-30 - art_sys_144: -2.80704045e-29 - art_sys_145: 4.58692735e-29 - art_sys_146: 0.0 - art_sys_147: -1.70513958e-26 - art_sys_148: 1.28278103e-25 - art_sys_149: 1.28278103e-25 - art_sys_150: -2.10083908e-25 - art_sys_151: -2.10083908e-25 - art_sys_152: -2.92867114e-24 - art_sys_153: 2.12055797e-25 - art_sys_154: -6.78345064e-29 - art_sys_155: 7.84894531e-37 - art_sys_156: -4.93058235e-42 - art_sys_157: 4.51249599e-42 - art_sys_158: -0.0 - art_sys_159: -1.55400497e-28 - art_sys_160: -1.69427354e-28 - art_sys_161: 1.93126233e-28 - art_sys_162: -1.50576617e-29 - art_sys_163: 7.73515968e-28 - art_sys_164: 7.18894125e-29 - art_sys_165: 3.06212557e-29 - art_sys_166: -9.60797890e-35 - art_sys_167: 2.79472564e-35 - art_sys_168: -4.15028940e-36 - art_sys_169: -4.37795818e-38 - art_sys_170: 3.26848163e-34 - art_sys_171: -1.67047862e-35 - art_sys_172: 1.84940132e-32 - art_sys_173: 1.17874950e-34 - art_sys_174: 5.14732415e-34 - art_sys_175: -3.47286697e-41 - art_sys_176: 8.85398067e-35 - art_sys_177: -1.78620358e-35 - art_sys_178: 3.49204693e-36 - art_sys_179: -3.11377934e-37 - art_sys_180: -9.13154679e-37 - art_sys_181: -5.83279945e-38 - art_sys_182: -3.35862031e-39 - art_sys_183: -3.88468709e-40 - art_sys_184: 2.14998175e-42 - art_sys_185: -4.65687860e-45 + art_sys_18: -6.44465762e-15 + art_sys_19: 1.56579935e-14 + art_sys_20: -2.62719128e-02 + art_sys_21: -2.09367278e-16 + art_sys_22: 3.96660433e-03 + art_sys_23: 7.37292809e-15 + art_sys_24: -1.90146513e-15 + art_sys_25: -3.96754139e-16 + art_sys_26: -2.03619509e-16 + art_sys_27: -6.95604219e-17 + art_sys_28: 2.63303923e-05 + art_sys_29: 3.51765007e-18 + art_sys_30: 6.76257905e-17 + art_sys_31: -6.09179365e-06 + art_sys_32: 1.83172019e-17 + art_sys_33: 2.89855042e-16 + art_sys_34: -1.12528038e-19 + art_sys_35: -9.16431595e-07 + art_sys_36: 1.50565901e-16 + art_sys_37: -5.02389347e-18 + art_sys_38: 9.27140423e-20 + art_sys_39: -3.84774986e-20 + art_sys_40: 4.01202365e-20 + art_sys_41: 4.03755116e-19 + art_sys_42: 1.80822300e-19 + art_sys_43: -1.56605709e-18 + art_sys_44: 6.83989633e-19 + art_sys_45: -2.06050894e-19 + art_sys_46: -3.92762961e-20 + art_sys_47: 5.69720118e-17 + art_sys_48: -1.27269621e-16 + art_sys_49: 3.05364714e-16 + art_sys_50: 1.67071181e-19 + art_sys_51: 5.96299281e-19 + art_sys_52: -4.12369641e-08 + art_sys_53: 1.43432878e-16 + art_sys_54: -2.97024758e-18 + art_sys_55: -4.72195620e-17 + art_sys_56: 7.28113278e-09 + art_sys_57: 1.40449246e-19 + art_sys_58: 5.43129933e-21 + art_sys_59: 1.12912471e-17 + art_sys_60: -6.73952124e-20 + art_sys_61: -9.58997834e-22 + art_sys_62: -1.28398289e-09 + art_sys_63: -4.31030591e-22 + art_sys_64: -1.04292301e-19 + art_sys_65: 7.23079693e-22 + art_sys_66: -7.93437419e-21 + art_sys_67: 2.78851626e-21 + art_sys_68: 2.18211891e-23 + art_sys_69: -1.31130738e-22 + art_sys_70: -4.64797115e-23 + art_sys_71: -4.08304123e-23 + art_sys_72: 1.19229583e-24 + art_sys_73: -1.07735212e-24 + art_sys_74: -1.27744553e-20 + art_sys_75: 5.66389769e-25 + art_sys_76: -2.81003260e-22 + art_sys_77: 1.19276068e-21 + art_sys_78: -2.59528179e-22 + art_sys_79: -3.92359284e-25 + art_sys_80: 4.63012450e-22 + art_sys_81: -2.12035317e-19 + art_sys_82: 2.05616863e-17 + art_sys_83: 1.39870575e-22 + art_sys_84: 6.76381964e-23 + art_sys_85: -5.64545039e-23 + art_sys_86: -1.21770291e-23 + art_sys_87: 2.83604121e-20 + art_sys_88: 1.75824124e-21 + art_sys_89: 1.15381101e-24 + art_sys_90: 1.48725131e-23 + art_sys_91: -9.12878008e-19 + art_sys_92: -3.53423525e-25 + art_sys_93: 3.37356432e-25 + art_sys_94: 6.37087267e-25 + art_sys_95: 1.92245886e-19 + art_sys_96: 6.42479006e-17 + art_sys_97: 3.94080667e-11 + art_sys_98: 3.83473592e-19 + art_sys_99: 1.00665165e-18 + art_sys_100: -1.00003169e-17 + art_sys_101: -2.24945262e-17 + art_sys_102: 2.41224754e-18 + art_sys_103: -4.84138912e-12 + art_sys_104: 1.68834254e-19 + art_sys_105: -3.14598776e-25 + art_sys_106: -8.08135466e-19 + art_sys_107: 1.78004770e-21 + art_sys_108: 3.00679653e-26 + art_sys_109: 9.47850011e-28 + art_sys_110: -5.93887889e-20 + art_sys_111: 3.83806034e-18 + art_sys_112: 2.66242547e-20 + art_sys_113: 1.18691150e-13 + art_sys_114: 3.67851923e-28 + art_sys_115: 1.75423964e-19 + art_sys_116: 5.20102012e-25 + art_sys_117: 4.67765095e-27 + art_sys_118: -1.24254705e-19 + art_sys_119: 4.25533434e-24 + art_sys_120: -2.90481177e-22 + art_sys_121: -1.81035819e-27 + art_sys_122: 4.34006095e-20 + art_sys_123: -7.59713454e-25 + art_sys_124: -4.32904719e-20 + art_sys_125: -3.01126822e-28 + art_sys_126: 1.28538424e-24 + art_sys_127: 1.50149346e-25 + art_sys_128: 1.97600044e-20 + art_sys_129: 2.29490728e-27 + art_sys_130: 2.24242899e-26 + art_sys_131: -5.57057578e-29 + art_sys_132: 7.74361462e-21 + art_sys_133: -2.51548237e-26 + art_sys_134: -8.16095487e-25 + art_sys_135: -2.83617864e-21 + art_sys_136: 7.41297335e-29 + art_sys_137: 2.39509138e-27 + art_sys_138: -8.20601391e-22 + art_sys_139: -2.00291732e-26 + art_sys_140: 2.98163291e-30 + art_sys_141: -1.79398285e-27 + art_sys_142: -2.91705211e-22 + art_sys_143: -5.14433850e-27 + art_sys_144: 8.38757436e-29 + art_sys_145: -5.22440848e-23 + art_sys_146: 5.46792256e-27 + art_sys_147: -1.28915835e-29 + art_sys_148: -4.08789154e-31 + art_sys_149: 5.39425512e-24 + art_sys_150: -1.66869578e-25 + art_sys_151: 6.18588034e-26 + art_sys_152: 1.81451482e-28 + art_sys_153: 8.27077918e-26 + art_sys_154: -1.60220253e-16 + art_sys_155: 1.13113129e-27 + art_sys_156: -0.0 + art_sys_157: 1.83787731e-24 + art_sys_158: 0.0 + art_sys_159: -4.57853918e-25 + art_sys_160: -5.47646251e-26 + art_sys_161: -1.06279029e-26 + art_sys_162: -1.06279029e-26 + art_sys_163: 1.64122687e-26 + art_sys_164: 1.64122687e-26 + art_sys_165: -1.44989266e-40 + art_sys_166: 4.49200284e-41 + art_sys_167: 0.0 + art_sys_168: -1.02192453e-33 + art_sys_169: 3.83680117e-33 + art_sys_170: -5.80851961e-33 + art_sys_171: -2.92485919e-32 + art_sys_172: -1.06403882e-32 + art_sys_173: -1.33154722e-33 + art_sys_174: -4.07956275e-34 + art_sys_175: -2.10258398e-34 + art_sys_176: 6.54723281e-37 + art_sys_177: 1.13910011e-37 + art_sys_178: -1.70242597e-37 + art_sys_179: -9.14439699e-40 + art_sys_180: -9.31321282e-39 + art_sys_181: 2.42211583e-37 + art_sys_182: 7.90088558e-36 + art_sys_183: -1.18814597e-37 + art_sys_184: 6.14187820e-41 + art_sys_185: -1.91078355e-42 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -66589,189 +66589,189 @@ bins: uncorrelated_uncertainty: 24.8103 - art_sys_1: 7.49785198e+00 art_sys_2: 1.04501495e+01 - art_sys_3: -4.21227968e-14 - art_sys_4: -8.89152095e-14 - art_sys_5: 1.68609693e-15 + art_sys_3: -3.14088319e-14 + art_sys_4: -7.41158173e-15 + art_sys_5: -1.94035868e-14 art_sys_6: 2.80107291e+01 - art_sys_7: 1.61214480e-14 - art_sys_8: 2.86315397e-14 - art_sys_9: 1.77344790e-15 - art_sys_10: -6.86122477e+00 - art_sys_11: 1.11648535e-13 - art_sys_12: 2.18828788e-15 - art_sys_13: -3.94537257e-01 - art_sys_14: -2.04657157e-16 - art_sys_15: 8.81178110e-16 - art_sys_16: -1.60292897e-15 + art_sys_7: 8.39997057e-15 + art_sys_8: -1.43715123e-13 + art_sys_9: -1.63836314e-14 + art_sys_10: 6.86122477e+00 + art_sys_11: 4.66137182e-14 + art_sys_12: 6.61301549e-15 + art_sys_13: 3.94537257e-01 + art_sys_14: 3.78004377e-15 + art_sys_15: 6.91479056e-15 + art_sys_16: 4.29381149e-15 art_sys_17: -1.91704565e-01 - art_sys_18: -1.47284352e-14 - art_sys_19: -1.11300817e-14 - art_sys_20: -5.59750562e-02 - art_sys_21: 7.40103946e-15 - art_sys_22: -3.46277761e-15 - art_sys_23: 9.80024123e-03 - art_sys_24: -3.96460003e-17 - art_sys_25: 7.35066395e-17 - art_sys_26: 6.06557609e-17 - art_sys_27: -2.60442715e-18 - art_sys_28: 3.79488700e-16 - art_sys_29: 1.46403650e-16 - art_sys_30: -5.53571697e-18 - art_sys_31: -8.19120190e-19 - art_sys_32: -2.03366489e-18 - art_sys_33: -5.46199369e-19 - art_sys_34: 6.56519919e-14 - art_sys_35: 8.87628100e-05 - art_sys_36: 2.46186866e-17 - art_sys_37: -7.03902728e-15 - art_sys_38: -9.78448970e-19 - art_sys_39: 1.82933433e-05 - art_sys_40: -7.98726826e-14 - art_sys_41: -2.18789213e-16 - art_sys_42: 3.43937645e-14 - art_sys_43: -1.18976043e-19 - art_sys_44: -1.97077160e-20 - art_sys_45: -5.42934025e-19 - art_sys_46: -3.09343450e-06 - art_sys_47: 3.70033328e-17 - art_sys_48: -3.65753341e-16 - art_sys_49: 1.98475093e-18 - art_sys_50: -1.00035865e-18 - art_sys_51: -3.82296091e-19 - art_sys_52: -5.14642402e-20 - art_sys_53: -1.81828889e-20 - art_sys_54: 4.13455042e-21 - art_sys_55: -4.79881728e-19 - art_sys_56: 4.74032179e-18 - art_sys_57: -9.80984738e-17 - art_sys_58: 1.67847076e-20 - art_sys_59: -1.93689037e-21 - art_sys_60: 8.00455951e-16 - art_sys_61: 1.38464857e-07 - art_sys_62: -1.48074626e-16 - art_sys_63: -5.68511856e-18 - art_sys_64: -2.02075275e-16 - art_sys_65: 6.25402142e-22 - art_sys_66: 1.19416914e-22 - art_sys_67: 2.43425309e-08 - art_sys_68: -3.57573210e-17 - art_sys_69: 2.30988721e-19 - art_sys_70: 1.84501273e-17 - art_sys_71: 1.56523759e-17 - art_sys_72: 4.45650524e-09 - art_sys_73: -3.17203400e-21 - art_sys_74: 7.22144748e-21 - art_sys_75: 3.19211728e-22 - art_sys_76: 2.49656147e-24 - art_sys_77: 1.55805162e-17 - art_sys_78: -2.14185262e-20 - art_sys_79: 7.26125467e-22 - art_sys_80: -6.52458130e-21 - art_sys_81: -1.46931083e-22 - art_sys_82: 2.55813467e-22 - art_sys_83: 3.44873574e-23 - art_sys_84: -3.41514937e-22 - art_sys_85: 4.29868549e-23 - art_sys_86: 1.07667739e-24 - art_sys_87: 2.67999366e-17 - art_sys_88: -6.69493646e-25 - art_sys_89: -4.10951554e-25 - art_sys_90: -8.44265594e-18 - art_sys_91: -2.37170488e-19 - art_sys_92: -3.54887401e-17 - art_sys_93: -1.30349413e-10 - art_sys_94: 5.01575481e-17 - art_sys_95: -1.64824459e-23 - art_sys_96: 2.37889623e-28 - art_sys_97: -1.86129460e-22 - art_sys_98: 2.79945090e-18 - art_sys_99: 1.67786201e-11 - art_sys_100: 7.29674129e-23 - art_sys_101: -3.74619318e-19 - art_sys_102: 7.63690414e-19 - art_sys_103: 1.95779977e-22 - art_sys_104: 3.26291543e-13 - art_sys_105: 1.47533789e-19 - art_sys_106: -1.23768924e-22 - art_sys_107: 6.40153001e-29 - art_sys_108: 2.77066719e-27 - art_sys_109: 5.52334337e-28 - art_sys_110: -1.64585188e-22 - art_sys_111: -6.40492102e-21 - art_sys_112: 2.97406813e-23 - art_sys_113: -7.62528455e-29 - art_sys_114: -4.69389712e-21 - art_sys_115: -4.70991726e-26 - art_sys_116: -5.30998185e-23 - art_sys_117: 8.75647304e-21 - art_sys_118: 2.60876851e-25 - art_sys_119: -5.45090364e-21 - art_sys_120: -1.46778429e-23 - art_sys_121: -2.06433702e-25 - art_sys_122: -2.98397375e-21 - art_sys_123: -1.01887090e-21 - art_sys_124: -1.62292373e-27 - art_sys_125: 6.34382474e-24 - art_sys_126: 5.17644935e-27 - art_sys_127: 5.17661712e-22 - art_sys_128: 5.06122327e-27 - art_sys_129: -1.69514237e-22 - art_sys_130: 4.62690607e-27 - art_sys_131: 3.77219051e-25 - art_sys_132: 4.86702600e-23 - art_sys_133: 1.01361028e-25 - art_sys_134: 2.53777562e-28 - art_sys_135: 3.97288606e-24 - art_sys_136: -2.21930902e-27 - art_sys_137: -1.66079387e-30 - art_sys_138: -1.37591162e-15 - art_sys_139: -3.77076491e-24 - art_sys_140: -5.84154891e-25 - art_sys_141: -2.66684448e-23 - art_sys_142: 3.40564279e-25 - art_sys_143: 9.84192952e-31 - art_sys_144: 3.75425335e-29 - art_sys_145: -2.29330019e-28 - art_sys_146: 0.0 - art_sys_147: -7.05566932e-27 - art_sys_148: 1.39791473e-25 - art_sys_149: 1.39791473e-25 - art_sys_150: 1.15936945e-25 - art_sys_151: 1.15936945e-25 - art_sys_152: 1.34087856e-24 - art_sys_153: -9.20775943e-26 - art_sys_154: 4.05072391e-29 - art_sys_155: -3.50340719e-37 - art_sys_156: 1.31361578e-42 - art_sys_157: -1.46889737e-42 - art_sys_158: 0.0 - art_sys_159: 9.54540309e-29 - art_sys_160: 1.54114975e-28 - art_sys_161: 3.12033575e-29 - art_sys_162: 1.67674683e-30 - art_sys_163: -6.29644661e-28 - art_sys_164: -1.12914210e-28 - art_sys_165: 7.56985144e-31 - art_sys_166: 1.56970420e-34 - art_sys_167: -5.28671055e-35 - art_sys_168: -5.14033461e-35 - art_sys_169: -1.67457403e-34 - art_sys_170: 5.27760577e-34 - art_sys_171: 1.46150621e-33 - art_sys_172: 1.55645269e-32 - art_sys_173: -2.25649970e-33 - art_sys_174: -3.83948384e-34 - art_sys_175: 1.43002760e-40 - art_sys_176: 1.49851256e-36 - art_sys_177: 1.95410716e-35 - art_sys_178: -1.21747914e-35 - art_sys_179: 1.13456799e-36 - art_sys_180: -5.67804276e-38 - art_sys_181: -1.55671619e-38 - art_sys_182: -1.92629223e-38 - art_sys_183: -1.17674514e-40 - art_sys_184: -1.66687879e-42 - art_sys_185: -8.94367396e-46 + art_sys_18: 5.09749415e-15 + art_sys_19: -1.27982851e-14 + art_sys_20: 5.59750562e-02 + art_sys_21: -3.53922463e-16 + art_sys_22: -9.80024123e-03 + art_sys_23: -1.69485934e-14 + art_sys_24: 1.50505371e-15 + art_sys_25: 6.49734221e-16 + art_sys_26: 3.06034894e-16 + art_sys_27: 1.01581544e-16 + art_sys_28: -8.87628100e-05 + art_sys_29: -5.42623000e-18 + art_sys_30: -1.58797375e-16 + art_sys_31: 1.82933433e-05 + art_sys_32: -2.20200212e-17 + art_sys_33: -3.53340729e-16 + art_sys_34: 6.22842994e-18 + art_sys_35: 3.09343450e-06 + art_sys_36: 7.57162379e-17 + art_sys_37: 6.91876784e-18 + art_sys_38: -6.00011165e-19 + art_sys_39: -3.73333124e-20 + art_sys_40: 3.29484484e-20 + art_sys_41: 4.52845228e-19 + art_sys_42: 5.96739171e-20 + art_sys_43: -7.49491863e-19 + art_sys_44: 6.48564929e-18 + art_sys_45: -2.16100809e-18 + art_sys_46: 2.11077961e-19 + art_sys_47: -1.90033513e-16 + art_sys_48: 9.75489673e-17 + art_sys_49: -1.01923628e-15 + art_sys_50: 6.13152956e-20 + art_sys_51: 9.67521666e-20 + art_sys_52: 1.38464857e-07 + art_sys_53: -4.61060181e-16 + art_sys_54: 1.10985083e-17 + art_sys_55: 5.69393602e-17 + art_sys_56: -2.43425298e-08 + art_sys_57: 3.50836308e-19 + art_sys_58: 2.96367040e-22 + art_sys_59: -1.62121001e-17 + art_sys_60: -1.09563800e-20 + art_sys_61: 8.53892749e-21 + art_sys_62: 4.45650547e-09 + art_sys_63: -7.68779791e-20 + art_sys_64: -1.81257945e-19 + art_sys_65: 5.70943896e-21 + art_sys_66: -1.09928342e-20 + art_sys_67: 8.13120038e-22 + art_sys_68: -7.42360124e-23 + art_sys_69: 4.07179608e-22 + art_sys_70: 1.55951635e-22 + art_sys_71: 1.35098272e-22 + art_sys_72: -4.12808783e-24 + art_sys_73: 3.44253857e-24 + art_sys_74: 6.31456395e-20 + art_sys_75: -2.59898674e-24 + art_sys_76: 9.12350694e-22 + art_sys_77: -3.99573201e-21 + art_sys_78: 8.10050558e-22 + art_sys_79: 5.36840143e-25 + art_sys_80: -1.54353405e-21 + art_sys_81: 7.01338370e-19 + art_sys_82: -6.78021601e-17 + art_sys_83: -4.59789561e-22 + art_sys_84: -2.28433576e-22 + art_sys_85: 1.88183837e-22 + art_sys_86: 3.92259701e-23 + art_sys_87: -9.82663372e-20 + art_sys_88: -4.78539652e-21 + art_sys_89: -4.30007795e-24 + art_sys_90: -5.51200211e-23 + art_sys_91: -9.87792917e-20 + art_sys_92: 1.17038971e-24 + art_sys_93: -1.10777412e-24 + art_sys_94: -1.92088505e-24 + art_sys_95: -6.35297675e-19 + art_sys_96: -2.00579988e-16 + art_sys_97: -1.30349823e-10 + art_sys_98: -1.32890076e-18 + art_sys_99: -3.36237851e-18 + art_sys_100: 3.46597211e-17 + art_sys_101: 7.88157503e-17 + art_sys_102: -6.63623686e-18 + art_sys_103: 1.67799397e-11 + art_sys_104: -1.57700652e-18 + art_sys_105: 1.03477836e-24 + art_sys_106: 2.13067943e-18 + art_sys_107: -5.03335325e-21 + art_sys_108: 1.48937262e-26 + art_sys_109: 1.15550140e-27 + art_sys_110: 2.04624996e-19 + art_sys_111: -1.09563915e-17 + art_sys_112: -9.20501982e-20 + art_sys_113: -3.26540230e-13 + art_sys_114: 4.23914633e-29 + art_sys_115: -2.08442197e-19 + art_sys_116: -1.10096359e-24 + art_sys_117: 1.06198324e-26 + art_sys_118: 1.29973441e-19 + art_sys_119: 2.60225580e-24 + art_sys_120: 1.02607506e-21 + art_sys_121: -9.93133418e-28 + art_sys_122: 1.96791223e-20 + art_sys_123: 6.53732113e-25 + art_sys_124: 5.64319345e-20 + art_sys_125: 2.40236389e-28 + art_sys_126: 1.69172433e-24 + art_sys_127: 1.19835047e-25 + art_sys_128: -2.59548593e-20 + art_sys_129: -9.88568978e-28 + art_sys_130: -2.34019065e-26 + art_sys_131: -5.77157693e-28 + art_sys_132: -1.01898566e-20 + art_sys_133: 3.17283204e-26 + art_sys_134: 3.37916291e-24 + art_sys_135: 3.81248115e-21 + art_sys_136: 2.17961495e-28 + art_sys_137: 4.14763818e-28 + art_sys_138: 1.10836828e-21 + art_sys_139: 2.74451492e-26 + art_sys_140: -2.99047722e-29 + art_sys_141: -6.85052734e-27 + art_sys_142: 4.01316593e-22 + art_sys_143: 9.74732561e-27 + art_sys_144: -2.04806775e-28 + art_sys_145: 7.20861212e-23 + art_sys_146: -5.34889181e-27 + art_sys_147: 6.52025906e-29 + art_sys_148: -6.54418540e-31 + art_sys_149: -7.03294530e-24 + art_sys_150: 2.41402542e-25 + art_sys_151: -2.27468288e-25 + art_sys_152: -3.11759834e-28 + art_sys_153: -3.28021384e-25 + art_sys_154: 5.52000676e-16 + art_sys_155: -3.69920703e-27 + art_sys_156: 0.0 + art_sys_157: -6.34333764e-24 + art_sys_158: -0.0 + art_sys_159: 1.56061034e-24 + art_sys_160: 1.88153068e-25 + art_sys_161: 3.86853889e-26 + art_sys_162: 3.86853889e-26 + art_sys_163: -5.46399014e-26 + art_sys_164: -5.46399014e-26 + art_sys_165: 4.77655936e-40 + art_sys_166: -1.47488042e-40 + art_sys_167: -0.0 + art_sys_168: -9.32507050e-34 + art_sys_169: 2.09003634e-33 + art_sys_170: -1.86632979e-33 + art_sys_171: -6.74810089e-33 + art_sys_172: -7.26701607e-33 + art_sys_173: -1.01557834e-33 + art_sys_174: -4.58972005e-34 + art_sys_175: -9.92359828e-35 + art_sys_176: 3.20949146e-36 + art_sys_177: 4.16045337e-38 + art_sys_178: 2.55311695e-38 + art_sys_179: 3.08082834e-39 + art_sys_180: 3.16548366e-38 + art_sys_181: 1.46247203e-37 + art_sys_182: -3.90053654e-36 + art_sys_183: -1.72168059e-37 + art_sys_184: 4.11311215e-40 + art_sys_185: 6.45617472e-43 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -66880,189 +66880,189 @@ bins: uncorrelated_uncertainty: 9.57669 - art_sys_1: 8.13604987e-01 art_sys_2: -1.94031515e+00 - art_sys_3: -4.91972951e-14 - art_sys_4: -2.04320733e-14 - art_sys_5: 1.27840289e-15 + art_sys_3: 1.06991173e-14 + art_sys_4: -6.56314005e-14 + art_sys_5: 1.81496837e-14 art_sys_6: 1.30413505e+00 - art_sys_7: 1.38594237e-14 - art_sys_8: 2.46078937e-14 - art_sys_9: -2.63797271e-14 - art_sys_10: -1.96022707e+00 - art_sys_11: 3.36479079e-15 - art_sys_12: -4.03088312e-15 - art_sys_13: 3.11409182e+00 - art_sys_14: 2.06793898e-15 - art_sys_15: -4.64923628e-17 - art_sys_16: 1.47342263e-14 + art_sys_7: -2.11918380e-14 + art_sys_8: -3.13182422e-14 + art_sys_9: 4.38626638e-15 + art_sys_10: 1.96022707e+00 + art_sys_11: 1.96422511e-14 + art_sys_12: 7.90657399e-15 + art_sys_13: -3.11409182e+00 + art_sys_14: 1.27869597e-15 + art_sys_15: -8.75224085e-14 + art_sys_16: -2.76240309e-14 art_sys_17: 6.70494399e-01 - art_sys_18: 9.07633893e-15 - art_sys_19: 1.78617163e-14 - art_sys_20: 2.77156420e-01 - art_sys_21: -1.24049833e-14 - art_sys_22: 7.45938931e-15 - art_sys_23: -4.53336711e-02 - art_sys_24: -1.18802129e-15 - art_sys_25: -3.41020874e-16 - art_sys_26: -3.00040700e-16 - art_sys_27: 1.17493048e-17 - art_sys_28: -1.76072625e-15 - art_sys_29: -5.85699997e-16 - art_sys_30: 2.88150788e-17 - art_sys_31: 3.59063888e-18 - art_sys_32: 1.16275487e-17 - art_sys_33: 5.23280998e-18 - art_sys_34: -3.28842265e-13 - art_sys_35: -4.44004161e-04 - art_sys_36: -1.42476711e-16 - art_sys_37: 3.82712978e-14 - art_sys_38: -1.07759571e-18 - art_sys_39: -1.00159559e-04 - art_sys_40: 4.37336164e-13 - art_sys_41: 2.73750073e-16 - art_sys_42: -1.75849331e-13 - art_sys_43: 3.49537619e-19 - art_sys_44: 4.16433649e-20 - art_sys_45: 2.74566306e-19 - art_sys_46: 1.58459678e-05 - art_sys_47: -2.59301013e-16 - art_sys_48: 1.61279041e-15 - art_sys_49: -1.02138915e-17 - art_sys_50: 5.84238643e-18 - art_sys_51: 2.50851298e-18 - art_sys_52: 3.00212037e-19 - art_sys_53: 1.10549587e-19 - art_sys_54: -2.14179902e-20 - art_sys_55: -5.02281658e-18 - art_sys_56: -3.09324295e-17 - art_sys_57: 5.10517298e-16 - art_sys_58: -9.37434303e-20 - art_sys_59: 1.11846238e-20 - art_sys_60: -4.57122659e-15 - art_sys_61: -8.02521794e-07 - art_sys_62: 8.54717192e-16 - art_sys_63: 3.09086125e-17 - art_sys_64: 1.08640176e-15 - art_sys_65: -2.74539348e-21 - art_sys_66: -6.39450700e-22 - art_sys_67: -1.31948493e-07 - art_sys_68: 2.02504728e-16 - art_sys_69: -2.00555816e-18 - art_sys_70: -3.99737950e-17 - art_sys_71: -8.61241451e-17 - art_sys_72: -2.45072302e-08 - art_sys_73: 1.80817579e-20 - art_sys_74: -4.09585060e-20 - art_sys_75: -1.77461322e-21 - art_sys_76: -1.41746745e-23 - art_sys_77: -8.85205908e-17 - art_sys_78: -1.03859478e-20 - art_sys_79: -4.12431213e-21 - art_sys_80: 3.48750155e-20 - art_sys_81: 8.26683307e-22 - art_sys_82: -1.44172966e-21 - art_sys_83: -1.08730652e-22 - art_sys_84: 1.92131027e-21 - art_sys_85: -2.44130246e-22 - art_sys_86: -1.00435115e-23 - art_sys_87: -1.49797000e-16 - art_sys_88: 4.18727465e-24 - art_sys_89: 2.48932203e-24 - art_sys_90: 8.37948866e-17 - art_sys_91: 1.35003760e-18 - art_sys_92: 1.92867992e-16 - art_sys_93: 7.36746692e-10 - art_sys_94: -2.70768509e-16 - art_sys_95: 4.33723628e-22 - art_sys_96: 9.98719485e-27 - art_sys_97: 6.50199816e-22 - art_sys_98: -2.25578857e-17 - art_sys_99: -9.29814416e-11 - art_sys_100: 1.90579213e-22 - art_sys_101: -9.69082892e-19 - art_sys_102: -3.02170629e-18 - art_sys_103: 2.01989885e-22 - art_sys_104: -2.28883319e-12 - art_sys_105: -5.77777019e-19 - art_sys_106: 3.68110269e-22 - art_sys_107: 4.23676152e-27 - art_sys_108: 6.69283256e-28 - art_sys_109: -1.93658419e-27 - art_sys_110: -3.44416076e-22 - art_sys_111: 1.82469016e-19 - art_sys_112: 4.08964853e-24 - art_sys_113: -3.46967240e-28 - art_sys_114: -7.47979160e-20 - art_sys_115: 1.35966866e-24 - art_sys_116: -2.18029970e-23 - art_sys_117: 3.24509846e-20 - art_sys_118: 4.13903412e-25 - art_sys_119: -1.04906297e-20 - art_sys_120: -3.98613649e-23 - art_sys_121: 2.46918085e-26 - art_sys_122: -3.62917600e-21 - art_sys_123: -1.15743814e-21 - art_sys_124: -4.26401965e-27 - art_sys_125: 2.14236678e-23 - art_sys_126: 3.82222962e-27 - art_sys_127: 5.32151631e-22 - art_sys_128: 7.92060389e-27 - art_sys_129: -1.72124875e-22 - art_sys_130: 8.48496222e-27 - art_sys_131: -1.18324487e-24 - art_sys_132: 8.26996261e-24 - art_sys_133: 1.79867905e-26 - art_sys_134: 3.60328902e-29 - art_sys_135: 2.76019333e-23 - art_sys_136: -4.22631656e-26 - art_sys_137: 2.09258565e-29 - art_sys_138: 7.56535804e-15 - art_sys_139: 4.05637065e-25 - art_sys_140: 4.72741995e-26 - art_sys_141: 1.47488096e-22 - art_sys_142: -1.82847092e-24 - art_sys_143: 8.87597979e-30 - art_sys_144: -1.53331362e-28 - art_sys_145: 1.33296015e-27 - art_sys_146: -0.0 - art_sys_147: 1.04541011e-25 - art_sys_148: -1.35311601e-24 - art_sys_149: -1.35311601e-24 - art_sys_150: -2.76243920e-26 - art_sys_151: -2.76243920e-26 - art_sys_152: 1.35438024e-24 - art_sys_153: -1.31226264e-25 - art_sys_154: -2.96913501e-29 - art_sys_155: -4.21689215e-37 - art_sys_156: 8.22513567e-42 - art_sys_157: -1.02525507e-41 - art_sys_158: -0.0 - art_sys_159: 1.12600146e-28 - art_sys_160: 7.36845871e-29 - art_sys_161: -2.85128246e-28 - art_sys_162: 3.54109341e-29 - art_sys_163: 2.35627685e-28 - art_sys_164: -1.95179321e-29 - art_sys_165: 1.78450509e-29 - art_sys_166: -3.75914788e-35 - art_sys_167: -8.18248667e-36 - art_sys_168: -5.76948961e-36 - art_sys_169: 4.15498484e-35 - art_sys_170: 1.43176254e-34 - art_sys_171: -7.78160156e-34 - art_sys_172: 1.98081788e-32 - art_sys_173: 1.35779784e-33 - art_sys_174: 1.44228645e-34 - art_sys_175: -8.11484410e-40 - art_sys_176: -2.36682160e-36 - art_sys_177: 8.07795364e-35 - art_sys_178: -1.51836843e-35 - art_sys_179: 7.10332396e-37 - art_sys_180: -2.08623289e-38 - art_sys_181: 2.17812895e-37 - art_sys_182: -1.03802556e-38 - art_sys_183: 3.04450857e-40 - art_sys_184: -3.49725342e-42 - art_sys_185: 3.60063230e-44 + art_sys_18: -6.27921581e-15 + art_sys_19: 1.47612414e-14 + art_sys_20: -2.77156420e-01 + art_sys_21: 2.49693606e-15 + art_sys_22: 4.53336711e-02 + art_sys_23: 8.68683345e-14 + art_sys_24: -6.45817280e-16 + art_sys_25: -2.02049799e-15 + art_sys_26: -8.99138497e-16 + art_sys_27: -2.95237211e-16 + art_sys_28: 4.44004161e-04 + art_sys_29: 1.39757633e-17 + art_sys_30: 4.44876127e-16 + art_sys_31: -1.00159558e-04 + art_sys_32: 3.90118804e-17 + art_sys_33: 7.54077293e-16 + art_sys_34: -4.89578124e-17 + art_sys_35: -1.58459678e-05 + art_sys_36: 1.87074468e-17 + art_sys_37: 1.16420947e-18 + art_sys_38: 1.94642811e-18 + art_sys_39: 1.74932097e-19 + art_sys_40: -1.04577762e-19 + art_sys_41: 4.63621407e-19 + art_sys_42: 1.78378064e-19 + art_sys_43: -1.63852262e-18 + art_sys_44: 8.83566752e-18 + art_sys_45: -2.56819233e-18 + art_sys_46: 3.62916245e-19 + art_sys_47: 1.11242964e-15 + art_sys_48: 1.56450482e-16 + art_sys_49: 5.43307367e-15 + art_sys_50: 3.83917445e-20 + art_sys_51: 8.34071231e-20 + art_sys_52: -8.02521795e-07 + art_sys_53: 2.42509755e-15 + art_sys_54: -6.09827732e-17 + art_sys_55: -1.19663760e-16 + art_sys_56: 1.31948486e-07 + art_sys_57: 2.46695624e-19 + art_sys_58: 3.69702064e-21 + art_sys_59: 4.00883413e-17 + art_sys_60: -1.60865321e-20 + art_sys_61: -6.37880747e-20 + art_sys_62: -2.45072315e-08 + art_sys_63: 5.86644235e-19 + art_sys_64: 1.06889608e-19 + art_sys_65: -4.59547399e-21 + art_sys_66: 1.55637324e-20 + art_sys_67: 2.86656562e-22 + art_sys_68: 5.56717949e-22 + art_sys_69: -2.37267883e-21 + art_sys_70: -8.89235233e-22 + art_sys_71: -7.65285789e-22 + art_sys_72: 2.36363422e-23 + art_sys_73: -2.03120804e-23 + art_sys_74: -3.18521115e-19 + art_sys_75: 1.59013608e-23 + art_sys_76: -5.02907717e-21 + art_sys_77: 2.24430605e-20 + art_sys_78: -5.03854517e-21 + art_sys_79: -1.16863179e-23 + art_sys_80: 8.69299920e-21 + art_sys_81: -3.96402115e-18 + art_sys_82: 3.83382232e-16 + art_sys_83: 2.53050108e-21 + art_sys_84: 1.27749302e-21 + art_sys_85: -1.07138606e-21 + art_sys_86: -2.24095980e-22 + art_sys_87: 5.44702450e-19 + art_sys_88: 3.41607364e-20 + art_sys_89: 2.29151233e-23 + art_sys_90: 2.69237323e-22 + art_sys_91: 9.14270517e-18 + art_sys_92: -6.64006267e-24 + art_sys_93: 6.28638935e-24 + art_sys_94: 1.29117669e-23 + art_sys_95: 3.58708659e-18 + art_sys_96: 1.10660726e-15 + art_sys_97: 7.36749063e-10 + art_sys_98: 7.36364709e-18 + art_sys_99: 1.88175247e-17 + art_sys_100: -1.92074242e-16 + art_sys_101: -4.38349324e-16 + art_sys_102: 4.65458947e-17 + art_sys_103: -9.29888770e-11 + art_sys_104: 1.19003783e-17 + art_sys_105: -5.72749100e-24 + art_sys_106: -1.48122309e-17 + art_sys_107: 3.52492093e-20 + art_sys_108: 1.18747760e-26 + art_sys_109: -6.69093528e-28 + art_sys_110: -1.12522454e-18 + art_sys_111: 7.83871270e-17 + art_sys_112: 5.06423557e-19 + art_sys_113: 2.29031087e-12 + art_sys_114: -2.44687338e-28 + art_sys_115: 4.29851833e-19 + art_sys_116: 9.46115318e-24 + art_sys_117: -5.93856613e-27 + art_sys_118: -2.29041220e-19 + art_sys_119: 3.14691125e-24 + art_sys_120: -5.66199237e-21 + art_sys_121: -3.29061042e-27 + art_sys_122: -4.04488499e-19 + art_sys_123: -1.23278354e-24 + art_sys_124: -1.64345755e-19 + art_sys_125: 2.30592060e-28 + art_sys_126: 9.23127804e-25 + art_sys_127: -6.47427023e-26 + art_sys_128: 8.27275585e-20 + art_sys_129: -1.27539606e-27 + art_sys_130: 5.52271368e-26 + art_sys_131: 2.46945151e-28 + art_sys_132: 3.25917300e-20 + art_sys_133: -1.02350901e-25 + art_sys_134: 9.41978489e-25 + art_sys_135: -1.22934640e-20 + art_sys_136: -8.66944731e-29 + art_sys_137: 1.55403903e-26 + art_sys_138: -3.59170208e-21 + art_sys_139: -9.32461098e-26 + art_sys_140: 1.43272859e-29 + art_sys_141: 2.55813769e-26 + art_sys_142: -1.28337122e-21 + art_sys_143: -2.62698780e-26 + art_sys_144: 8.32591342e-28 + art_sys_145: -2.24952133e-22 + art_sys_146: 2.40352314e-26 + art_sys_147: -1.80368810e-28 + art_sys_148: -7.97779040e-31 + art_sys_149: 2.08283516e-23 + art_sys_150: -8.19907837e-25 + art_sys_151: 1.29245098e-24 + art_sys_152: 1.24249367e-27 + art_sys_153: 1.88589935e-24 + art_sys_154: -3.03533384e-15 + art_sys_155: 2.01619348e-26 + art_sys_156: -0.0 + art_sys_157: 3.46540895e-23 + art_sys_158: 0.0 + art_sys_159: -8.53667267e-24 + art_sys_160: -1.03814202e-24 + art_sys_161: -2.15791911e-25 + art_sys_162: -2.15791911e-25 + art_sys_163: 2.96197365e-25 + art_sys_164: 2.96197365e-25 + art_sys_165: -2.58021578e-39 + art_sys_166: 7.95747481e-40 + art_sys_167: 0.0 + art_sys_168: -1.06542858e-33 + art_sys_169: 1.52069555e-33 + art_sys_170: 2.45754929e-33 + art_sys_171: 2.15704674e-32 + art_sys_172: 3.55289984e-33 + art_sys_173: 2.82154834e-34 + art_sys_174: -1.59869118e-35 + art_sys_175: -9.86755562e-35 + art_sys_176: 1.52438645e-35 + art_sys_177: -1.47853764e-38 + art_sys_178: 4.59970317e-38 + art_sys_179: -1.69039796e-38 + art_sys_180: -1.72957087e-37 + art_sys_181: -6.55258789e-37 + art_sys_182: 4.38701864e-38 + art_sys_183: 8.14330908e-38 + art_sys_184: -4.70311782e-40 + art_sys_185: -9.62393369e-43 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -67171,189 +67171,189 @@ bins: uncorrelated_uncertainty: 3.70346 - art_sys_1: -2.77738221e-01 art_sys_2: -6.15880279e-01 - art_sys_3: 1.50793257e-14 - art_sys_4: -1.05198892e-13 - art_sys_5: 1.23374272e-14 + art_sys_3: 2.63382655e-15 + art_sys_4: 9.85669451e-14 + art_sys_5: 1.59223480e-14 art_sys_6: -1.39595437e+00 - art_sys_7: 2.47492715e-14 - art_sys_8: -4.94992654e-15 - art_sys_9: -6.30679300e-15 - art_sys_10: 3.48361807e-01 - art_sys_11: 1.37329266e-14 - art_sys_12: -1.06835992e-14 - art_sys_13: 1.54251751e+00 - art_sys_14: -2.31818011e-15 - art_sys_15: -2.38032836e-15 - art_sys_16: 5.41636772e-15 + art_sys_7: 5.18371340e-14 + art_sys_8: 2.65307090e-14 + art_sys_9: 7.67992206e-15 + art_sys_10: -3.48361807e-01 + art_sys_11: -1.28184052e-14 + art_sys_12: -4.81451799e-15 + art_sys_13: -1.54251751e+00 + art_sys_14: 1.37446289e-15 + art_sys_15: -3.61917211e-14 + art_sys_16: -1.18356863e-14 art_sys_17: -1.53012526e+00 - art_sys_18: 7.47287398e-14 - art_sys_19: 4.43708251e-14 - art_sys_20: -4.51532656e-01 - art_sys_21: 1.27794532e-14 - art_sys_22: -1.24035651e-14 - art_sys_23: 1.13162122e-01 - art_sys_24: 1.46832351e-15 - art_sys_25: 9.40689982e-16 - art_sys_26: 7.73331500e-16 - art_sys_27: -3.91374507e-17 - art_sys_28: 3.01904491e-15 - art_sys_29: 7.76793634e-16 - art_sys_30: -7.68499965e-17 - art_sys_31: -7.62559060e-18 - art_sys_32: -3.41140539e-17 - art_sys_33: -1.01632147e-17 - art_sys_34: 8.47446626e-13 - art_sys_35: 1.14309874e-03 - art_sys_36: 2.74582154e-16 - art_sys_37: -1.17968866e-13 - art_sys_38: -1.35757279e-19 - art_sys_39: 3.09971643e-04 - art_sys_40: -1.35349482e-12 - art_sys_41: -2.70641986e-16 - art_sys_42: 6.06926877e-13 - art_sys_43: -2.08854249e-19 - art_sys_44: -4.19379396e-20 - art_sys_45: -7.51677550e-20 - art_sys_46: -5.46495932e-05 - art_sys_47: 7.33292784e-16 - art_sys_48: -5.36199560e-15 - art_sys_49: 3.42811520e-17 - art_sys_50: -1.99141646e-17 - art_sys_51: -7.33203354e-18 - art_sys_52: -9.11959994e-19 - art_sys_53: -3.36411297e-19 - art_sys_54: 8.50720328e-20 - art_sys_55: 6.81351910e-18 - art_sys_56: 9.70365649e-17 - art_sys_57: -1.99557462e-15 - art_sys_58: 3.33265591e-19 - art_sys_59: -3.74552850e-20 - art_sys_60: 1.50189598e-14 - art_sys_61: 2.64207391e-06 - art_sys_62: -2.80085133e-15 - art_sys_63: -1.13277496e-16 - art_sys_64: -3.92855733e-15 - art_sys_65: 1.16068485e-20 - art_sys_66: 2.37764363e-21 - art_sys_67: 4.84518836e-07 - art_sys_68: -7.52216537e-16 - art_sys_69: 6.68162314e-18 - art_sys_70: 7.29647595e-17 - art_sys_71: 3.13291042e-16 - art_sys_72: 8.91135509e-08 - art_sys_73: -6.65677172e-20 - art_sys_74: 1.52035898e-19 - art_sys_75: 6.58447410e-21 - art_sys_76: 5.28401387e-23 - art_sys_77: 3.28839039e-16 - art_sys_78: 1.44209269e-20 - art_sys_79: 1.52799187e-20 - art_sys_80: -1.33950814e-19 - art_sys_81: -3.03312844e-21 - art_sys_82: 5.34322728e-21 - art_sys_83: 5.86061360e-22 - art_sys_84: -7.13205357e-21 - art_sys_85: 9.06242240e-22 - art_sys_86: 3.74539365e-23 - art_sys_87: 5.54007211e-16 - art_sys_88: -1.54428771e-23 - art_sys_89: -9.28136780e-24 - art_sys_90: -3.39681805e-16 - art_sys_91: -5.08033530e-18 - art_sys_92: -7.00788516e-16 - art_sys_93: -2.73782178e-09 - art_sys_94: 9.84681571e-16 - art_sys_95: -8.16675977e-22 - art_sys_96: -5.46157696e-26 - art_sys_97: 4.55956534e-22 - art_sys_98: 7.81343433e-17 - art_sys_99: 3.42532523e-10 - art_sys_100: -2.32025280e-22 - art_sys_101: 9.47607761e-18 - art_sys_102: 9.86620161e-18 - art_sys_103: 2.57627520e-22 - art_sys_104: 7.55267276e-12 - art_sys_105: 8.58589808e-19 - art_sys_106: -8.58275527e-23 - art_sys_107: -1.40354121e-26 - art_sys_108: -6.66839547e-28 - art_sys_109: 7.04004295e-27 - art_sys_110: 8.64635718e-24 - art_sys_111: -1.41738178e-19 - art_sys_112: 4.59804870e-24 - art_sys_113: 1.71941915e-28 - art_sys_114: 2.03484744e-20 - art_sys_115: 2.38238025e-24 - art_sys_116: 6.25954287e-23 - art_sys_117: 8.89192389e-21 - art_sys_118: 1.46098873e-26 - art_sys_119: -1.03428254e-20 - art_sys_120: 1.80113540e-23 - art_sys_121: -1.29228813e-25 - art_sys_122: -5.89576051e-21 - art_sys_123: -2.56018513e-21 - art_sys_124: -2.91235683e-27 - art_sys_125: 2.95841695e-25 - art_sys_126: 1.66310815e-26 - art_sys_127: 1.00874492e-21 - art_sys_128: 1.64101527e-26 - art_sys_129: -3.22450189e-22 - art_sys_130: 4.06193839e-26 - art_sys_131: 6.28392465e-25 - art_sys_132: 1.68618489e-22 - art_sys_133: 4.19188638e-25 - art_sys_134: 9.08008093e-28 - art_sys_135: -3.68833536e-23 - art_sys_136: 6.51239678e-26 - art_sys_137: -6.99381724e-29 - art_sys_138: -2.86775690e-14 - art_sys_139: -2.36843409e-23 - art_sys_140: -3.60929305e-24 - art_sys_141: -5.58175266e-22 - art_sys_142: 6.97898076e-24 - art_sys_143: -1.68560955e-29 - art_sys_144: 6.37756978e-28 - art_sys_145: -4.97908825e-27 - art_sys_146: 0.0 - art_sys_147: -3.28208548e-25 - art_sys_148: 4.52510037e-24 - art_sys_149: 4.52510037e-24 - art_sys_150: 7.36854998e-25 - art_sys_151: 7.36854998e-25 - art_sys_152: 3.91846504e-24 - art_sys_153: -1.63703089e-25 - art_sys_154: 3.12807698e-28 - art_sys_155: -8.36932588e-37 - art_sys_156: -1.52220125e-41 - art_sys_157: 1.83981243e-41 - art_sys_158: 0.0 - art_sys_159: 2.86336190e-29 - art_sys_160: -1.01395296e-28 - art_sys_161: 1.38858460e-28 - art_sys_162: 5.14495278e-30 - art_sys_163: 3.10967135e-28 - art_sys_164: -1.56403923e-28 - art_sys_165: 9.30274363e-29 - art_sys_166: -1.27473557e-34 - art_sys_167: 3.02125487e-35 - art_sys_168: -2.53505957e-36 - art_sys_169: -2.69915964e-35 - art_sys_170: 2.67109122e-35 - art_sys_171: -4.99932237e-34 - art_sys_172: 1.22454996e-32 - art_sys_173: -3.13307206e-33 - art_sys_174: -4.90133951e-34 - art_sys_175: 3.05088645e-39 - art_sys_176: 1.40468353e-34 - art_sys_177: -8.04968306e-35 - art_sys_178: 1.22149012e-35 - art_sys_179: -5.57219761e-37 - art_sys_180: 1.78674768e-38 - art_sys_181: -8.88112422e-39 - art_sys_182: 6.38032113e-39 - art_sys_183: -4.16885145e-40 - art_sys_184: 1.50297663e-42 - art_sys_185: -9.87188312e-44 + art_sys_18: -2.67261103e-14 + art_sys_19: 6.42533240e-14 + art_sys_20: 4.51532656e-01 + art_sys_21: -6.24395468e-15 + art_sys_22: -1.13162122e-01 + art_sys_23: -1.53085186e-13 + art_sys_24: -1.41575710e-15 + art_sys_25: 3.55699519e-15 + art_sys_26: 1.56990087e-15 + art_sys_27: 4.07929939e-16 + art_sys_28: -1.14309874e-03 + art_sys_29: -1.52098905e-17 + art_sys_30: -9.23372582e-16 + art_sys_31: 3.09971643e-04 + art_sys_32: -5.46249653e-17 + art_sys_33: -1.16433174e-15 + art_sys_34: 1.33794578e-16 + art_sys_35: 5.46495932e-05 + art_sys_36: -5.52852870e-17 + art_sys_37: 8.19576690e-18 + art_sys_38: -1.64888587e-18 + art_sys_39: -5.22006981e-19 + art_sys_40: 6.40728871e-20 + art_sys_41: -3.84590286e-19 + art_sys_42: -2.10582631e-19 + art_sys_43: 7.32333983e-19 + art_sys_44: -3.91173485e-18 + art_sys_45: 9.43414146e-19 + art_sys_46: -9.40191621e-20 + art_sys_47: -3.67141767e-15 + art_sys_48: -1.11799735e-15 + art_sys_49: -2.04912831e-14 + art_sys_50: -1.88307092e-20 + art_sys_51: 1.07871932e-19 + art_sys_52: 2.64207392e-06 + art_sys_53: -8.64800402e-15 + art_sys_54: 2.23843497e-16 + art_sys_55: 1.49144932e-17 + art_sys_56: -4.84518813e-07 + art_sys_57: -2.05602999e-19 + art_sys_58: 6.50746527e-22 + art_sys_59: -5.95607057e-17 + art_sys_60: 4.26042569e-19 + art_sys_61: 2.89189483e-19 + art_sys_62: 8.91135556e-08 + art_sys_63: -2.31680181e-18 + art_sys_64: -7.62083349e-20 + art_sys_65: 1.49394202e-21 + art_sys_66: -3.36311030e-20 + art_sys_67: -6.39310426e-21 + art_sys_68: -1.95068451e-21 + art_sys_69: 8.80412535e-21 + art_sys_70: 3.28621887e-21 + art_sys_71: 2.83851823e-21 + art_sys_72: -8.74659784e-23 + art_sys_73: 7.51762581e-23 + art_sys_74: 1.17586379e-18 + art_sys_75: -5.89233362e-23 + art_sys_76: 1.94932133e-20 + art_sys_77: -8.32856791e-20 + art_sys_78: 2.04099560e-20 + art_sys_79: 3.97852072e-23 + art_sys_80: -3.22644080e-20 + art_sys_81: 1.47306832e-17 + art_sys_82: -1.42457737e-15 + art_sys_83: -9.08178339e-21 + art_sys_84: -4.73836328e-21 + art_sys_85: 3.97533476e-21 + art_sys_86: 8.37490278e-22 + art_sys_87: -2.00640036e-18 + art_sys_88: -1.10360739e-19 + art_sys_89: -8.40321303e-23 + art_sys_90: -1.16487523e-21 + art_sys_91: -3.07769748e-17 + art_sys_92: 2.46185139e-23 + art_sys_93: -2.31019556e-23 + art_sys_94: -4.41876035e-23 + art_sys_95: -1.33325288e-17 + art_sys_96: -4.08716808e-15 + art_sys_97: -2.73783067e-09 + art_sys_98: -2.71271797e-17 + art_sys_99: -6.53892568e-17 + art_sys_100: 7.07579058e-16 + art_sys_101: 1.61509994e-15 + art_sys_102: -1.53601202e-16 + art_sys_103: 3.42560162e-10 + art_sys_104: -4.12836252e-17 + art_sys_105: 2.17201998e-23 + art_sys_106: 4.51210698e-17 + art_sys_107: -1.16274078e-19 + art_sys_108: -7.95548528e-26 + art_sys_109: 2.58202989e-27 + art_sys_110: 4.26517141e-18 + art_sys_111: -2.59220381e-16 + art_sys_112: -1.92109549e-18 + art_sys_113: -7.55804396e-12 + art_sys_114: 1.09872497e-27 + art_sys_115: -3.60780109e-19 + art_sys_116: -3.89692334e-23 + art_sys_117: 4.12778543e-27 + art_sys_118: -4.01289601e-19 + art_sys_119: -8.67338199e-24 + art_sys_120: 2.14701807e-20 + art_sys_121: 7.78002172e-27 + art_sys_122: 2.34277339e-18 + art_sys_123: 2.61294762e-25 + art_sys_124: 1.89392053e-19 + art_sys_125: -3.86543187e-28 + art_sys_126: 1.21060251e-24 + art_sys_127: -5.44824335e-26 + art_sys_128: -1.22763794e-19 + art_sys_129: -1.29565893e-27 + art_sys_130: -5.28167023e-26 + art_sys_131: -2.91479456e-28 + art_sys_132: -4.71780686e-20 + art_sys_133: 1.42713949e-25 + art_sys_134: 1.56490105e-24 + art_sys_135: 1.81106406e-20 + art_sys_136: 1.31982285e-28 + art_sys_137: -5.00750674e-26 + art_sys_138: 5.36699437e-21 + art_sys_139: 1.48202483e-25 + art_sys_140: -3.51907949e-29 + art_sys_141: -3.61454055e-26 + art_sys_142: 1.89480195e-21 + art_sys_143: 3.79065878e-26 + art_sys_144: -2.12963099e-27 + art_sys_145: 3.17475616e-22 + art_sys_146: -5.78263463e-26 + art_sys_147: 2.72448457e-28 + art_sys_148: 6.33620872e-30 + art_sys_149: -2.23434848e-23 + art_sys_150: 1.46849822e-24 + art_sys_151: -4.95663376e-24 + art_sys_152: -3.16126342e-27 + art_sys_153: -7.34769982e-24 + art_sys_154: 1.15054493e-14 + art_sys_155: -7.54640932e-26 + art_sys_156: 0.0 + art_sys_157: -1.30736582e-22 + art_sys_158: -0.0 + art_sys_159: 3.22882749e-23 + art_sys_160: 3.95055509e-24 + art_sys_161: 8.29968594e-25 + art_sys_162: 8.29968594e-25 + art_sys_163: -1.11267162e-24 + art_sys_164: -1.11267162e-24 + art_sys_165: 9.66315871e-39 + art_sys_166: -2.97715414e-39 + art_sys_167: -0.0 + art_sys_168: 6.87897269e-34 + art_sys_169: -2.17144465e-33 + art_sys_170: 2.01802392e-33 + art_sys_171: 2.49625881e-32 + art_sys_172: 2.35200735e-33 + art_sys_173: -1.36840210e-34 + art_sys_174: -7.68555935e-36 + art_sys_175: 1.22843700e-34 + art_sys_176: -1.40237447e-35 + art_sys_177: -1.45537818e-37 + art_sys_178: 2.55595052e-38 + art_sys_179: 6.37488750e-38 + art_sys_180: 6.53644508e-37 + art_sys_181: 5.71628196e-37 + art_sys_182: -1.98456291e-36 + art_sys_183: -7.42521631e-38 + art_sys_184: 3.69246027e-40 + art_sys_185: 1.65864961e-42 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -67462,189 +67462,189 @@ bins: uncorrelated_uncertainty: 1.50926000e+00 - art_sys_1: -5.38471507e-02 art_sys_2: 3.94903621e-02 - art_sys_3: -5.07136479e-14 - art_sys_4: -6.41186927e-14 - art_sys_5: 3.18839633e-14 + art_sys_3: 3.44153402e-14 + art_sys_4: 1.60796081e-14 + art_sys_5: 2.78943526e-15 art_sys_6: -1.09030774e-01 - art_sys_7: 3.05473045e-14 - art_sys_8: -1.32133362e-14 - art_sys_9: -2.13615634e-14 - art_sys_10: 1.50259086e-01 - art_sys_11: -8.13361336e-14 - art_sys_12: 4.70837467e-15 - art_sys_13: -1.37386664e-01 - art_sys_14: -6.52326925e-17 - art_sys_15: 5.62280453e-16 - art_sys_16: -4.45324113e-16 + art_sys_7: -1.20838118e-15 + art_sys_8: -3.12305606e-15 + art_sys_9: -7.09067458e-15 + art_sys_10: -1.50259086e-01 + art_sys_11: -1.86987649e-14 + art_sys_12: -5.16972734e-16 + art_sys_13: 1.37386664e-01 + art_sys_14: 1.37053806e-15 + art_sys_15: 4.95659457e-15 + art_sys_16: 1.06766592e-16 art_sys_17: -1.10829645e+00 - art_sys_18: 2.04964471e-14 - art_sys_19: 8.77640646e-15 - art_sys_20: 7.77156044e-01 - art_sys_21: 2.44509827e-14 - art_sys_22: 2.27338528e-14 - art_sys_23: -1.97939796e-01 - art_sys_24: -1.04379143e-15 - art_sys_25: -5.80230577e-15 - art_sys_26: -4.70518194e-15 - art_sys_27: 2.44392530e-16 - art_sys_28: -3.85020945e-15 - art_sys_29: -9.86984019e-16 - art_sys_30: 4.16608312e-16 - art_sys_31: 5.27039036e-17 - art_sys_32: 1.68287478e-16 - art_sys_33: 6.37939433e-17 - art_sys_34: -5.07479035e-12 - art_sys_35: -6.83773606e-03 - art_sys_36: -1.49005212e-15 - art_sys_37: 5.18703005e-13 - art_sys_38: 2.06541878e-18 - art_sys_39: -1.36506946e-03 - art_sys_40: 5.96071626e-12 - art_sys_41: 2.29366215e-16 - art_sys_42: -2.91034169e-12 - art_sys_43: 2.89520666e-19 - art_sys_44: 1.30314276e-19 - art_sys_45: 1.61048039e-19 - art_sys_46: 2.61951660e-04 - art_sys_47: -4.33673012e-15 - art_sys_48: 2.36342049e-14 - art_sys_49: -1.73225572e-16 - art_sys_50: 9.60330442e-17 - art_sys_51: 4.08297413e-17 - art_sys_52: 4.92018441e-18 - art_sys_53: 1.82962003e-18 - art_sys_54: -3.74810420e-19 - art_sys_55: -3.04201889e-17 - art_sys_56: -4.93530834e-16 - art_sys_57: 8.89571744e-15 - art_sys_58: -1.62082247e-18 - art_sys_59: 1.87950223e-19 - art_sys_60: -7.71344544e-14 - art_sys_61: -1.34784053e-05 - art_sys_62: 1.43532598e-14 - art_sys_63: 5.32895374e-16 - art_sys_64: 1.80688526e-14 - art_sys_65: -6.29381445e-20 - art_sys_66: -1.06121256e-20 - art_sys_67: -2.26801097e-06 - art_sys_68: 3.54400249e-15 - art_sys_69: -3.24552942e-17 - art_sys_70: -2.48338958e-16 - art_sys_71: -1.52570791e-15 - art_sys_72: -4.34302708e-07 - art_sys_73: 3.16778931e-19 - art_sys_74: -7.15821580e-19 - art_sys_75: -3.14828525e-20 - art_sys_76: -2.47209157e-22 - art_sys_77: -1.54952674e-15 - art_sys_78: -1.77488088e-19 - art_sys_79: -7.21702810e-20 - art_sys_80: 6.43747098e-19 - art_sys_81: 1.46553178e-20 - art_sys_82: -2.53435167e-20 - art_sys_83: -2.39499735e-21 - art_sys_84: 3.37798454e-20 - art_sys_85: -4.26249612e-21 - art_sys_86: -1.77763657e-22 - art_sys_87: -2.65351591e-15 - art_sys_88: 7.32257156e-23 - art_sys_89: 4.31505340e-23 - art_sys_90: 1.66390469e-15 - art_sys_91: 2.41258269e-17 - art_sys_92: 3.37942244e-15 - art_sys_93: 1.28989039e-08 - art_sys_94: -4.75425692e-15 - art_sys_95: 3.92434125e-21 - art_sys_96: 2.22301375e-25 - art_sys_97: 3.30279990e-22 - art_sys_98: -3.88216050e-16 - art_sys_99: -1.66198087e-09 - art_sys_100: 2.04781279e-23 - art_sys_101: -5.82599775e-17 - art_sys_102: -4.18314347e-17 - art_sys_103: -1.14339459e-22 - art_sys_104: -3.76475940e-11 - art_sys_105: -1.84976488e-18 - art_sys_106: -5.95631619e-22 - art_sys_107: 7.20439023e-26 - art_sys_108: -1.15550848e-26 - art_sys_109: -3.87413954e-26 - art_sys_110: -1.89631056e-22 - art_sys_111: 3.07000552e-19 - art_sys_112: -2.29504398e-23 - art_sys_113: 2.37108558e-27 - art_sys_114: -1.37197819e-19 - art_sys_115: 4.15480884e-24 - art_sys_116: -8.45063667e-23 - art_sys_117: 5.97453885e-20 - art_sys_118: -3.90196755e-26 - art_sys_119: -2.30410726e-20 - art_sys_120: -6.91993842e-23 - art_sys_121: 1.18174923e-25 - art_sys_122: -8.43074952e-21 - art_sys_123: -3.15813904e-21 - art_sys_124: -8.16910050e-27 - art_sys_125: 2.67408297e-23 - art_sys_126: -1.53651198e-26 - art_sys_127: 1.28925393e-21 - art_sys_128: 6.83332040e-27 - art_sys_129: -3.36664685e-22 - art_sys_130: -7.65196489e-26 - art_sys_131: -1.74863394e-25 - art_sys_132: -6.43248802e-23 - art_sys_133: -3.03264565e-25 - art_sys_134: -8.76905126e-28 - art_sys_135: -4.06697930e-24 - art_sys_136: 1.34933489e-25 - art_sys_137: 2.84618766e-28 - art_sys_138: 1.35995728e-13 - art_sys_139: 1.35005347e-22 - art_sys_140: 2.05018232e-23 - art_sys_141: 2.64636484e-21 - art_sys_142: -3.31369110e-23 - art_sys_143: 5.76735917e-29 - art_sys_144: -3.07116528e-27 - art_sys_145: 2.35847581e-26 - art_sys_146: -0.0 - art_sys_147: 1.53287298e-24 - art_sys_148: -2.12626882e-23 - art_sys_149: -2.12626882e-23 - art_sys_150: -3.69246573e-24 - art_sys_151: -3.69246573e-24 - art_sys_152: -2.16903537e-23 - art_sys_153: 1.00048550e-24 - art_sys_154: -1.54995915e-27 - art_sys_155: 4.80506617e-36 - art_sys_156: 6.52735358e-41 - art_sys_157: -1.15135058e-40 - art_sys_158: -0.0 - art_sys_159: 1.61578557e-28 - art_sys_160: -3.80825170e-28 - art_sys_161: -3.02100309e-28 - art_sys_162: -9.50712228e-30 - art_sys_163: -1.27464696e-27 - art_sys_164: 4.48653063e-28 - art_sys_165: 1.96623061e-29 - art_sys_166: -1.63037175e-35 - art_sys_167: 9.64620629e-36 - art_sys_168: 6.40192669e-35 - art_sys_169: 2.04479458e-36 - art_sys_170: -1.30976994e-33 - art_sys_171: -3.53215445e-33 - art_sys_172: -5.02512274e-33 - art_sys_173: 7.71762238e-34 - art_sys_174: -3.51670763e-34 - art_sys_175: -1.44643204e-38 - art_sys_176: -5.84298382e-35 - art_sys_177: -4.80758923e-35 - art_sys_178: 1.09363038e-35 - art_sys_179: -7.62464172e-37 - art_sys_180: 4.56901336e-38 - art_sys_181: -1.57010576e-38 - art_sys_182: 2.31571122e-38 - art_sys_183: -1.48202664e-40 - art_sys_184: -1.73025737e-42 - art_sys_185: 4.42652666e-43 + art_sys_18: -8.21200996e-15 + art_sys_19: 1.84571288e-14 + art_sys_20: -7.77156044e-01 + art_sys_21: -1.05556364e-14 + art_sys_22: 1.97939796e-01 + art_sys_23: 2.86320091e-13 + art_sys_24: 9.56162155e-16 + art_sys_25: -4.50561877e-15 + art_sys_26: -1.79162726e-15 + art_sys_27: -4.72506090e-16 + art_sys_28: 6.83773607e-03 + art_sys_29: -2.71207428e-16 + art_sys_30: 1.53364894e-15 + art_sys_31: -1.36506946e-03 + art_sys_32: 5.93346854e-17 + art_sys_33: 1.62673448e-15 + art_sys_34: -2.14938092e-16 + art_sys_35: -2.61951660e-04 + art_sys_36: 3.18957520e-16 + art_sys_37: -3.80290209e-17 + art_sys_38: 6.85811227e-18 + art_sys_39: 2.26661401e-18 + art_sys_40: -7.02424825e-19 + art_sys_41: 2.69191360e-19 + art_sys_42: 3.17454732e-19 + art_sys_43: 2.35599660e-20 + art_sys_44: -2.61933642e-18 + art_sys_45: 7.49976761e-19 + art_sys_46: -6.72810270e-20 + art_sys_47: 1.87206499e-14 + art_sys_48: 8.89783857e-15 + art_sys_49: 9.39385223e-14 + art_sys_50: -8.27927084e-20 + art_sys_51: -3.41800447e-19 + art_sys_52: -1.34784054e-05 + art_sys_53: 4.17635926e-14 + art_sys_54: -1.07679479e-15 + art_sys_55: 8.62961776e-16 + art_sys_56: 2.26801086e-06 + art_sys_57: 1.34267901e-19 + art_sys_58: -2.03300197e-21 + art_sys_59: 6.77335942e-17 + art_sys_60: -9.39242023e-19 + art_sys_61: -1.34964336e-18 + art_sys_62: -4.34302730e-07 + art_sys_63: 1.13830497e-17 + art_sys_64: 5.50793834e-19 + art_sys_65: 1.55455821e-20 + art_sys_66: 1.71397229e-19 + art_sys_67: 2.76059331e-20 + art_sys_68: 9.51612544e-21 + art_sys_69: -4.12041008e-20 + art_sys_70: -1.55380492e-20 + art_sys_71: -1.33877623e-20 + art_sys_72: 4.11492122e-22 + art_sys_73: -3.51656976e-22 + art_sys_74: -5.52684155e-18 + art_sys_75: 2.74554194e-22 + art_sys_76: -8.70027988e-20 + art_sys_77: 3.95143939e-19 + art_sys_78: -9.39912850e-20 + art_sys_79: -1.71391063e-22 + art_sys_80: 1.52729533e-19 + art_sys_81: -6.94017623e-17 + art_sys_82: 6.71160586e-15 + art_sys_83: 4.25557837e-20 + art_sys_84: 2.25713018e-20 + art_sys_85: -1.84375224e-20 + art_sys_86: -3.87630390e-21 + art_sys_87: 9.73498826e-18 + art_sys_88: 5.57921343e-19 + art_sys_89: 4.22369019e-22 + art_sys_90: 5.11716442e-21 + art_sys_91: 1.59696036e-16 + art_sys_92: -1.15365928e-22 + art_sys_93: 1.09231670e-22 + art_sys_94: 2.15747587e-22 + art_sys_95: 6.28081089e-17 + art_sys_96: 1.91999564e-14 + art_sys_97: 1.28989445e-08 + art_sys_98: 1.31618577e-16 + art_sys_99: 3.13936547e-16 + art_sys_100: -3.43319380e-15 + art_sys_101: -7.84052700e-15 + art_sys_102: 7.65622990e-16 + art_sys_103: -1.66211132e-09 + art_sys_104: 2.05743345e-16 + art_sys_105: -1.02981176e-22 + art_sys_106: -2.17637163e-16 + art_sys_107: 5.79706268e-19 + art_sys_108: 3.85825398e-25 + art_sys_109: -1.29297187e-26 + art_sys_110: -2.02261291e-17 + art_sys_111: 1.29564718e-15 + art_sys_112: 9.10790796e-18 + art_sys_113: 3.76729575e-11 + art_sys_114: -6.10422564e-27 + art_sys_115: -1.48842102e-18 + art_sys_116: 1.93026656e-22 + art_sys_117: -3.57736325e-27 + art_sys_118: 4.60329302e-18 + art_sys_119: 5.92415925e-23 + art_sys_120: -1.01801209e-19 + art_sys_121: -4.05710856e-26 + art_sys_122: -1.27940137e-17 + art_sys_123: -3.62616912e-25 + art_sys_124: -2.63214674e-21 + art_sys_125: 4.25768475e-28 + art_sys_126: -1.24500962e-23 + art_sys_127: 1.01496636e-26 + art_sys_128: 1.89518225e-19 + art_sys_129: 3.06593517e-27 + art_sys_130: -2.55020255e-26 + art_sys_131: 2.03554503e-29 + art_sys_132: 6.71214445e-20 + art_sys_133: -1.57190819e-25 + art_sys_134: 2.43854898e-25 + art_sys_135: -2.75032618e-20 + art_sys_136: -2.37544650e-28 + art_sys_137: 2.28196988e-25 + art_sys_138: -8.53705093e-21 + art_sys_139: -2.82279127e-25 + art_sys_140: 9.83434116e-29 + art_sys_141: -8.30562511e-27 + art_sys_142: -2.87908842e-21 + art_sys_143: -5.86519828e-26 + art_sys_144: 8.34387045e-27 + art_sys_145: -4.03243270e-22 + art_sys_146: 2.10067910e-25 + art_sys_147: -5.29044618e-28 + art_sys_148: -3.72570401e-29 + art_sys_149: -1.08695004e-23 + art_sys_150: -3.62424933e-24 + art_sys_151: 2.37333578e-23 + art_sys_152: 1.18926010e-26 + art_sys_153: 3.53357300e-23 + art_sys_154: -5.45603088e-14 + art_sys_155: 3.56489142e-25 + art_sys_156: -0.0 + art_sys_157: 6.18387662e-22 + art_sys_158: 0.0 + art_sys_159: -1.52864262e-22 + art_sys_160: -1.87635650e-23 + art_sys_161: -3.95729895e-24 + art_sys_162: -3.95729895e-24 + art_sys_163: 5.25025852e-24 + art_sys_164: 5.25025852e-24 + art_sys_165: -4.55349810e-38 + art_sys_166: 1.40225228e-38 + art_sys_167: 0.0 + art_sys_168: -1.27726868e-33 + art_sys_169: 6.23412106e-33 + art_sys_170: -1.08638625e-32 + art_sys_171: -4.40611390e-32 + art_sys_172: -6.09317834e-33 + art_sys_173: -5.56150808e-34 + art_sys_174: 8.74338622e-34 + art_sys_175: -1.63500291e-34 + art_sys_176: 1.93683093e-35 + art_sys_177: 2.05479520e-37 + art_sys_178: -1.77417241e-38 + art_sys_179: -3.01958000e-37 + art_sys_180: -3.09331729e-36 + art_sys_181: -1.76162337e-36 + art_sys_182: 6.94647905e-36 + art_sys_183: 2.38499092e-37 + art_sys_184: -8.20257150e-40 + art_sys_185: -1.62306340e-42 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -67753,189 +67753,189 @@ bins: uncorrelated_uncertainty: 6.15716000e-01 - art_sys_1: 2.26037332e-03 art_sys_2: 2.78712618e-02 - art_sys_3: -6.55494324e-14 - art_sys_4: 2.24447755e-14 - art_sys_5: 2.41029280e-14 + art_sys_3: 5.27532591e-16 + art_sys_4: -2.25913694e-15 + art_sys_5: 1.66180690e-14 art_sys_6: 4.29249682e-02 - art_sys_7: 4.37218708e-15 - art_sys_8: -1.56635269e-14 - art_sys_9: 6.28222025e-14 - art_sys_10: -2.10163913e-03 - art_sys_11: 9.67192422e-15 - art_sys_12: 7.42360510e-15 - art_sys_13: -1.52718817e-01 - art_sys_14: -1.21413406e-15 - art_sys_15: 2.58286752e-16 - art_sys_16: 4.13878264e-16 + art_sys_7: -4.21138440e-15 + art_sys_8: -5.60698441e-15 + art_sys_9: 1.48615068e-14 + art_sys_10: 2.10163913e-03 + art_sys_11: 1.45083197e-14 + art_sys_12: 6.58921445e-18 + art_sys_13: 1.52718817e-01 + art_sys_14: 1.21343929e-15 + art_sys_15: 3.94197847e-15 + art_sys_16: 1.56700990e-15 art_sys_17: -4.72527386e-02 - art_sys_18: -5.40886301e-15 - art_sys_19: -2.48156195e-15 - art_sys_20: 6.05817022e-01 - art_sys_21: 4.48355840e-15 - art_sys_22: 1.56584588e-14 - art_sys_23: 3.58815494e-01 - art_sys_24: -2.73667170e-15 - art_sys_25: 7.38662968e-15 - art_sys_26: 5.08515749e-15 - art_sys_27: -3.98280772e-16 - art_sys_28: 4.74884096e-15 - art_sys_29: 1.15403529e-15 - art_sys_30: -7.08448103e-16 - art_sys_31: -1.52443524e-17 - art_sys_32: -4.15196920e-16 - art_sys_33: -3.43069309e-17 - art_sys_34: 5.90414097e-12 - art_sys_35: 7.95517144e-03 - art_sys_36: 7.87510034e-16 - art_sys_37: -1.68542537e-12 - art_sys_38: -9.10277907e-18 - art_sys_39: 4.43963901e-03 - art_sys_40: -1.93862681e-11 - art_sys_41: -2.09485421e-16 - art_sys_42: 8.92824932e-12 - art_sys_43: -7.03499406e-19 - art_sys_44: -4.81325474e-19 - art_sys_45: 1.36524136e-18 - art_sys_46: -8.03503823e-04 - art_sys_47: 1.64242594e-14 - art_sys_48: -8.86898549e-14 - art_sys_49: 6.24098242e-16 - art_sys_50: -3.57713870e-16 - art_sys_51: -1.50034878e-16 - art_sys_52: -1.68986857e-17 - art_sys_53: -6.32724705e-18 - art_sys_54: 1.48366819e-18 - art_sys_55: 1.02365250e-16 - art_sys_56: 1.77094967e-15 - art_sys_57: -3.48392586e-14 - art_sys_58: 6.00470392e-18 - art_sys_59: -6.76181256e-19 - art_sys_60: 2.74942441e-13 - art_sys_61: 4.83973826e-05 - art_sys_62: -5.11849444e-14 - art_sys_63: -2.02173699e-15 - art_sys_64: -6.78752065e-14 - art_sys_65: 2.38766861e-19 - art_sys_66: 4.05794527e-20 - art_sys_67: 8.60434186e-06 - art_sys_68: -1.44394571e-14 - art_sys_69: 1.26481395e-16 - art_sys_70: 9.29050070e-16 - art_sys_71: 5.80074550e-15 - art_sys_72: 1.64832849e-06 - art_sys_73: -1.28527504e-18 - art_sys_74: 2.92500011e-18 - art_sys_75: 1.24995600e-19 - art_sys_76: 1.01587869e-21 - art_sys_77: 6.31242347e-15 - art_sys_78: 5.69130084e-19 - art_sys_79: 2.94336073e-19 - art_sys_80: -2.53096567e-18 - art_sys_81: -5.80501582e-20 - art_sys_82: 1.02368899e-19 - art_sys_83: 7.05489330e-21 - art_sys_84: -1.36478602e-19 - art_sys_85: 1.74512757e-20 - art_sys_86: 7.21842431e-22 - art_sys_87: 1.05559439e-14 - art_sys_88: -2.95017778e-22 - art_sys_89: -1.79604760e-22 - art_sys_90: -6.83766032e-15 - art_sys_91: -9.73587853e-17 - art_sys_92: -1.31487681e-14 - art_sys_93: -5.25529421e-08 - art_sys_94: 1.85687240e-14 - art_sys_95: -1.55196082e-20 - art_sys_96: -8.24660906e-25 - art_sys_97: 5.12157616e-21 - art_sys_98: 1.68138305e-15 - art_sys_99: 6.48783158e-09 - art_sys_100: 5.15867328e-24 - art_sys_101: 2.49542936e-16 - art_sys_102: 1.63858320e-16 - art_sys_103: 3.39860084e-26 - art_sys_104: 1.66369873e-10 - art_sys_105: 4.53487863e-18 - art_sys_106: 3.25485605e-21 - art_sys_107: -3.21440098e-25 - art_sys_108: 5.84563348e-26 - art_sys_109: 1.67128306e-25 - art_sys_110: -1.31542407e-24 - art_sys_111: -3.43558713e-19 - art_sys_112: -1.00038573e-25 - art_sys_113: -9.09341222e-27 - art_sys_114: 1.83461285e-19 - art_sys_115: 4.58793162e-26 - art_sys_116: 1.44458248e-24 - art_sys_117: -8.87807393e-20 - art_sys_118: -1.51611767e-25 - art_sys_119: 4.23186705e-20 - art_sys_120: 2.83878279e-24 - art_sys_121: -5.74700497e-26 - art_sys_122: 1.75623929e-20 - art_sys_123: 6.80266497e-21 - art_sys_124: 1.52893522e-26 - art_sys_125: 9.81253101e-25 - art_sys_126: 6.98372717e-26 - art_sys_127: -2.71067109e-21 - art_sys_128: -1.02291629e-26 - art_sys_129: 6.99059754e-22 - art_sys_130: 3.24566380e-25 - art_sys_131: -3.68334339e-25 - art_sys_132: 3.37920675e-22 - art_sys_133: 1.35986901e-24 - art_sys_134: 3.88155837e-27 - art_sys_135: 1.31345902e-22 - art_sys_136: -7.50419991e-25 - art_sys_137: -1.13639996e-27 - art_sys_138: -5.47223027e-13 - art_sys_139: -5.74605092e-22 - art_sys_140: -8.73379993e-23 - art_sys_141: -1.06472844e-20 - art_sys_142: 1.33401549e-22 - art_sys_143: -2.07457738e-28 - art_sys_144: 1.24362387e-26 - art_sys_145: -9.48046678e-26 - art_sys_146: 0.0 - art_sys_147: -6.08071056e-24 - art_sys_148: 8.47847257e-23 - art_sys_149: 8.47847257e-23 - art_sys_150: 1.56610343e-23 - art_sys_151: 1.56610343e-23 - art_sys_152: 9.88518069e-23 - art_sys_153: -4.87041768e-24 - art_sys_154: 6.49208938e-27 - art_sys_155: -2.24482382e-35 - art_sys_156: -2.41711551e-40 - art_sys_157: 4.41583372e-40 - art_sys_158: 0.0 - art_sys_159: -3.84858330e-28 - art_sys_160: 1.08968817e-27 - art_sys_161: 6.14614045e-29 - art_sys_162: 1.80321343e-29 - art_sys_163: 1.65908567e-27 - art_sys_164: -1.87211215e-27 - art_sys_165: 2.05867992e-29 - art_sys_166: 1.36438455e-34 - art_sys_167: -9.57532315e-35 - art_sys_168: -1.98368172e-34 - art_sys_169: 1.61734618e-34 - art_sys_170: 1.61326761e-34 - art_sys_171: 3.97859328e-35 - art_sys_172: -3.61821802e-37 - art_sys_173: -4.57963033e-36 - art_sys_174: -4.05860914e-36 - art_sys_175: 5.81696314e-38 - art_sys_176: 3.06749588e-36 - art_sys_177: 2.51831871e-37 - art_sys_178: -1.77051230e-38 - art_sys_179: 8.52462451e-39 - art_sys_180: -4.68261605e-39 - art_sys_181: 6.46140331e-40 - art_sys_182: 1.27768537e-40 - art_sys_183: -2.86099726e-41 - art_sys_184: 9.19056789e-42 - art_sys_185: -1.78773403e-42 + art_sys_18: 3.04598032e-15 + art_sys_19: -4.37681431e-15 + art_sys_20: -6.05817022e-01 + art_sys_21: -8.58883150e-16 + art_sys_22: -3.58815494e-01 + art_sys_23: 2.05290586e-13 + art_sys_24: 2.86386773e-15 + art_sys_25: 6.08944084e-15 + art_sys_26: 2.07929022e-15 + art_sys_27: 5.90321525e-16 + art_sys_28: -7.95517144e-03 + art_sys_29: 3.25662617e-16 + art_sys_30: -1.80311493e-15 + art_sys_31: 4.43963901e-03 + art_sys_32: -4.79610545e-17 + art_sys_33: -2.46254813e-15 + art_sys_34: 2.95841080e-16 + art_sys_35: 8.03503824e-04 + art_sys_36: -2.59938133e-17 + art_sys_37: 1.53918862e-16 + art_sys_38: -2.27670702e-17 + art_sys_39: -8.76608187e-18 + art_sys_40: 2.49412207e-18 + art_sys_41: -2.06409647e-18 + art_sys_42: -1.27583524e-18 + art_sys_43: 1.07704523e-18 + art_sys_44: 1.44661766e-20 + art_sys_45: -5.56010094e-20 + art_sys_46: 1.32330510e-19 + art_sys_47: -6.72593794e-14 + art_sys_48: -3.23973407e-14 + art_sys_49: -3.61239602e-13 + art_sys_50: 1.26621345e-19 + art_sys_51: 1.06126159e-19 + art_sys_52: 4.83973826e-05 + art_sys_53: -1.58049201e-13 + art_sys_54: 4.21666033e-15 + art_sys_55: -4.40304368e-15 + art_sys_56: -8.60434145e-06 + art_sys_57: 1.18473208e-20 + art_sys_58: -5.64794323e-22 + art_sys_59: -7.04970116e-17 + art_sys_60: 3.55804559e-18 + art_sys_61: 5.50473410e-18 + art_sys_62: 1.64832857e-06 + art_sys_63: -4.27843674e-17 + art_sys_64: -2.23986552e-18 + art_sys_65: -9.28616546e-20 + art_sys_66: -7.03855706e-19 + art_sys_67: -1.04006052e-19 + art_sys_68: -3.73849234e-20 + art_sys_69: 1.70952943e-19 + art_sys_70: 6.30161462e-20 + art_sys_71: 5.45854013e-20 + art_sys_72: -1.68825554e-21 + art_sys_73: 1.45099650e-21 + art_sys_74: 2.24792471e-17 + art_sys_75: -1.12159661e-21 + art_sys_76: 3.67859646e-19 + art_sys_77: -1.59202247e-18 + art_sys_78: 3.57735045e-19 + art_sys_79: 8.40507241e-22 + art_sys_80: -6.17852717e-19 + art_sys_81: 2.82757916e-16 + art_sys_82: -2.73444647e-14 + art_sys_83: -1.78521494e-19 + art_sys_84: -9.03073366e-20 + art_sys_85: 7.50794167e-20 + art_sys_86: 1.61872180e-20 + art_sys_87: -3.80098771e-17 + art_sys_88: -2.44609605e-18 + art_sys_89: -1.55284039e-21 + art_sys_90: -2.13579682e-20 + art_sys_91: -6.53498940e-16 + art_sys_92: 4.74407776e-22 + art_sys_93: -4.52184355e-22 + art_sys_94: -9.61590296e-22 + art_sys_95: -2.55921469e-16 + art_sys_96: -7.81287593e-14 + art_sys_97: -5.25531147e-08 + art_sys_98: -5.13815712e-16 + art_sys_99: -1.22430752e-15 + art_sys_100: 1.34021124e-14 + art_sys_101: 3.06213757e-14 + art_sys_102: -3.38328725e-15 + art_sys_103: 6.48836104e-09 + art_sys_104: -8.03717031e-16 + art_sys_105: 4.14439596e-22 + art_sys_106: 9.52881420e-16 + art_sys_107: -2.56204500e-18 + art_sys_108: -1.66302241e-24 + art_sys_109: 5.94073361e-26 + art_sys_110: 8.13903569e-17 + art_sys_111: -5.73014692e-15 + art_sys_112: -3.66342053e-17 + art_sys_113: -1.66476442e-10 + art_sys_114: 2.36388109e-26 + art_sys_115: 1.09233310e-17 + art_sys_116: -7.85910956e-22 + art_sys_117: -2.15620853e-26 + art_sys_118: -2.18123627e-17 + art_sys_119: -2.31454434e-22 + art_sys_120: 4.09654626e-19 + art_sys_121: 1.75443912e-25 + art_sys_122: 5.35584333e-17 + art_sys_123: -1.31179320e-25 + art_sys_124: -1.09252896e-18 + art_sys_125: -4.92653171e-28 + art_sys_126: 5.11874431e-23 + art_sys_127: -4.43120488e-25 + art_sys_128: -2.80954305e-19 + art_sys_129: -2.77668445e-27 + art_sys_130: 5.68680881e-25 + art_sys_131: 5.05114375e-27 + art_sys_132: -7.79749811e-20 + art_sys_133: -2.84538722e-26 + art_sys_134: -1.13777944e-23 + art_sys_135: 3.91360983e-20 + art_sys_136: 1.54653840e-29 + art_sys_137: -9.83336167e-25 + art_sys_138: 1.36296050e-20 + art_sys_139: 6.40034376e-25 + art_sys_140: -2.39194465e-28 + art_sys_141: -7.11183417e-26 + art_sys_142: 4.05182906e-21 + art_sys_143: 8.45368909e-26 + art_sys_144: -3.28521480e-26 + art_sys_145: 2.53877190e-22 + art_sys_146: -7.83660119e-25 + art_sys_147: 1.19825954e-27 + art_sys_148: 1.69656955e-28 + art_sys_149: 1.87726991e-22 + art_sys_150: 1.05999828e-23 + art_sys_151: -9.61255888e-23 + art_sys_152: -4.43243653e-26 + art_sys_153: -1.43059458e-22 + art_sys_154: 2.19550492e-13 + art_sys_155: -1.43468411e-24 + art_sys_156: 0.0 + art_sys_157: -2.48586881e-21 + art_sys_158: -0.0 + art_sys_159: 6.14481933e-22 + art_sys_160: 7.55238934e-23 + art_sys_161: 1.59399056e-23 + art_sys_162: 1.59399056e-23 + art_sys_163: -2.10785376e-23 + art_sys_164: -2.10785376e-23 + art_sys_165: 1.82735935e-37 + art_sys_166: -5.62650087e-38 + art_sys_167: -0.0 + art_sys_168: -9.59010045e-36 + art_sys_169: -1.51886150e-35 + art_sys_170: 1.96015668e-33 + art_sys_171: 1.59348043e-33 + art_sys_172: -4.40471662e-34 + art_sys_173: -1.09153328e-33 + art_sys_174: -1.80672348e-36 + art_sys_175: -4.60048731e-37 + art_sys_176: -1.54405326e-37 + art_sys_177: 7.92935650e-38 + art_sys_178: 7.07732866e-39 + art_sys_179: 1.21563934e-36 + art_sys_180: 1.24324276e-35 + art_sys_181: 8.40297830e-37 + art_sys_182: -8.87278789e-41 + art_sys_183: 1.17489193e-41 + art_sys_184: -1.05706919e-41 + art_sys_185: -5.36331521e-42 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -68044,189 +68044,189 @@ bins: uncorrelated_uncertainty: 0.245217 - art_sys_1: 1.79374360e-03 art_sys_2: 2.88932275e-03 - art_sys_3: -6.38671363e-16 - art_sys_4: -6.66327266e-14 - art_sys_5: -1.66861247e-15 + art_sys_3: -8.78678526e-15 + art_sys_4: 4.42563966e-14 + art_sys_5: -8.87792168e-17 art_sys_6: 8.97653902e-03 - art_sys_7: -1.41346587e-14 - art_sys_8: 2.18220675e-14 - art_sys_9: -1.41338283e-14 - art_sys_10: -6.63353320e-03 - art_sys_11: -5.36923059e-14 - art_sys_12: 5.22247532e-15 - art_sys_13: -2.13242765e-03 - art_sys_14: -1.11371556e-15 - art_sys_15: -2.13150718e-15 - art_sys_16: 2.30403106e-16 + art_sys_7: -2.50730988e-16 + art_sys_8: -4.53264123e-15 + art_sys_9: 6.91597897e-15 + art_sys_10: 6.63353320e-03 + art_sys_11: -7.49945605e-14 + art_sys_12: 2.45916850e-15 + art_sys_13: 2.13242765e-03 + art_sys_14: 2.02913388e-16 + art_sys_15: -5.38738002e-15 + art_sys_16: -2.19368970e-15 art_sys_17: 5.83266822e-02 - art_sys_18: -1.47351199e-15 - art_sys_19: 2.77283106e-16 - art_sys_20: 6.46581582e-04 - art_sys_21: -2.85069103e-15 - art_sys_22: 2.07645863e-16 - art_sys_23: 5.99093398e-02 - art_sys_24: -5.03337393e-16 - art_sys_25: -7.33248830e-14 - art_sys_26: -5.97160390e-14 - art_sys_27: 4.18555000e-15 - art_sys_28: 2.08384955e-15 - art_sys_29: 6.03433036e-16 - art_sys_30: 4.87742502e-15 - art_sys_31: 6.50813927e-16 - art_sys_32: 2.09342809e-15 - art_sys_33: 7.66356418e-16 - art_sys_34: -6.31965654e-11 - art_sys_35: -8.51262056e-02 - art_sys_36: -1.79434230e-14 - art_sys_37: 5.97322773e-12 - art_sys_38: 6.16535578e-17 - art_sys_39: -1.57315388e-02 - art_sys_40: 6.86939715e-11 - art_sys_41: -2.31515413e-16 - art_sys_42: -4.27005745e-11 - art_sys_43: 3.47594596e-18 - art_sys_44: 2.16640637e-18 - art_sys_45: -6.39311239e-18 - art_sys_46: 3.84263668e-03 - art_sys_47: -5.27946144e-14 - art_sys_48: 3.73178617e-13 - art_sys_49: -2.48037614e-15 - art_sys_50: 1.31021673e-15 - art_sys_51: 5.86045759e-16 - art_sys_52: 6.31307799e-17 - art_sys_53: 2.38811141e-17 - art_sys_54: -6.47619941e-18 - art_sys_55: -4.05436331e-16 - art_sys_56: -7.01069584e-15 - art_sys_57: 1.51209147e-13 - art_sys_58: -2.37557951e-17 - art_sys_59: 2.71391319e-18 - art_sys_60: -1.09018292e-12 - art_sys_61: -1.91589136e-04 - art_sys_62: 2.02967397e-13 - art_sys_63: 8.50808491e-15 - art_sys_64: 2.85259328e-13 - art_sys_65: -8.25313537e-19 - art_sys_66: -1.68182129e-19 - art_sys_67: -3.61743309e-05 - art_sys_68: 5.85813685e-14 - art_sys_69: -5.30772012e-16 - art_sys_70: -3.67037374e-15 - art_sys_71: -2.45505396e-14 - art_sys_72: -6.98423408e-06 - art_sys_73: 5.20988275e-18 - art_sys_74: -1.18277307e-17 - art_sys_75: -5.19021501e-19 - art_sys_76: -4.09203976e-21 - art_sys_77: -2.56120341e-14 - art_sys_78: -2.86265420e-18 - art_sys_79: -1.19060415e-18 - art_sys_80: 1.10178069e-17 - art_sys_81: 2.40198701e-19 - art_sys_82: -4.18067174e-19 - art_sys_83: -4.60051254e-20 - art_sys_84: 5.57715474e-19 - art_sys_85: -7.04447505e-20 - art_sys_86: -2.93634037e-21 - art_sys_87: -4.36765541e-14 - art_sys_88: 1.20806289e-21 - art_sys_89: 7.14301145e-22 - art_sys_90: 2.78481030e-14 - art_sys_91: 4.06876046e-16 - art_sys_92: 5.53016872e-14 - art_sys_93: 2.13215385e-07 - art_sys_94: -7.77963118e-14 - art_sys_95: 6.40083906e-20 - art_sys_96: 4.75478039e-24 - art_sys_97: -2.15747638e-20 - art_sys_98: -6.21957121e-15 - art_sys_99: -2.72656545e-08 - art_sys_100: -7.76330666e-24 - art_sys_101: -1.06404153e-15 - art_sys_102: -6.82880030e-16 - art_sys_103: -1.15482405e-22 - art_sys_104: -5.88373837e-10 - art_sys_105: -1.61660532e-17 - art_sys_106: -1.38708287e-20 - art_sys_107: 1.14882872e-24 - art_sys_108: -1.77425896e-25 - art_sys_109: -5.90902281e-25 - art_sys_110: 4.45550288e-23 - art_sys_111: 9.01343621e-19 - art_sys_112: 1.10887935e-23 - art_sys_113: 3.87654578e-26 - art_sys_114: -7.71397243e-19 - art_sys_115: -6.63270383e-25 - art_sys_116: -3.31299102e-23 - art_sys_117: 4.66195542e-19 - art_sys_118: 9.50982927e-25 - art_sys_119: -2.53191281e-19 - art_sys_120: -3.85965765e-23 - art_sys_121: 3.82961570e-26 - art_sys_122: -1.12654808e-19 - art_sys_123: -4.53702604e-20 - art_sys_124: -8.91958186e-26 - art_sys_125: -5.10401261e-24 - art_sys_126: -2.13374074e-25 - art_sys_127: 1.79435410e-20 - art_sys_128: 1.40559351e-25 - art_sys_129: -4.87757098e-21 - art_sys_130: -1.20909910e-24 - art_sys_131: 1.23021785e-24 - art_sys_132: -7.00375062e-22 - art_sys_133: -4.03370676e-24 - art_sys_134: -1.28557342e-26 - art_sys_135: -6.79650178e-22 - art_sys_136: 3.49305888e-24 - art_sys_137: 4.73265021e-27 - art_sys_138: 2.29705123e-12 - art_sys_139: 2.42431844e-21 - art_sys_140: 3.68423418e-22 - art_sys_141: 4.46933493e-20 - art_sys_142: -5.60027568e-22 - art_sys_143: 8.57105999e-28 - art_sys_144: -5.22231529e-26 - art_sys_145: 3.97984750e-25 - art_sys_146: -0.0 - art_sys_147: 2.55300122e-23 - art_sys_148: -3.55969895e-22 - art_sys_149: -3.55969895e-22 - art_sys_150: -6.57029286e-23 - art_sys_151: -6.57029286e-23 - art_sys_152: -4.14619718e-22 - art_sys_153: 2.04168270e-23 - art_sys_154: -2.72444015e-26 - art_sys_155: 9.41403479e-35 - art_sys_156: 1.01408273e-39 - art_sys_157: -1.88841391e-39 - art_sys_158: -0.0 - art_sys_159: 1.47549866e-27 - art_sys_160: -3.83070258e-27 - art_sys_161: -1.60010394e-28 - art_sys_162: -1.59470401e-28 - art_sys_163: -6.49099911e-27 - art_sys_164: 7.64321501e-27 - art_sys_165: -5.66102548e-29 - art_sys_166: -4.11134595e-34 - art_sys_167: 3.58542609e-34 - art_sys_168: 7.85930996e-34 - art_sys_169: -7.06406499e-34 - art_sys_170: -7.57598671e-34 - art_sys_171: -1.21413542e-33 - art_sys_172: 2.12054730e-32 - art_sys_173: 1.08614485e-33 - art_sys_174: -2.99194443e-35 - art_sys_175: -2.44200647e-37 - art_sys_176: 1.60691609e-36 - art_sys_177: -4.58878389e-36 - art_sys_178: 2.20119455e-36 - art_sys_179: -4.41857354e-37 - art_sys_180: -3.91407406e-36 - art_sys_181: 5.51230975e-38 - art_sys_182: -2.03202832e-38 - art_sys_183: -1.22883315e-40 - art_sys_184: -3.76483690e-41 - art_sys_185: 7.44133937e-42 + art_sys_18: 1.05925103e-16 + art_sys_19: -9.31103174e-17 + art_sys_20: -6.46581583e-04 + art_sys_21: 4.39944567e-16 + art_sys_22: -5.99093398e-02 + art_sys_23: -1.91633853e-15 + art_sys_24: 4.80934349e-16 + art_sys_25: 2.71345100e-15 + art_sys_26: 1.08107132e-15 + art_sys_27: 8.38944543e-16 + art_sys_28: 8.51262057e-02 + art_sys_29: -4.84269572e-15 + art_sys_30: 7.22818493e-15 + art_sys_31: -1.57315388e-02 + art_sys_32: -2.99622310e-17 + art_sys_33: 4.76525650e-15 + art_sys_34: -5.74703359e-16 + art_sys_35: -3.84263668e-03 + art_sys_36: 2.02391376e-16 + art_sys_37: -6.05535686e-16 + art_sys_38: 1.04543874e-16 + art_sys_39: 3.63463228e-17 + art_sys_40: -1.13151636e-17 + art_sys_41: 8.49229647e-18 + art_sys_42: 5.66285652e-18 + art_sys_43: -4.65793884e-18 + art_sys_44: 3.30218397e-20 + art_sys_45: -9.76694280e-20 + art_sys_46: -4.65235294e-19 + art_sys_47: 2.66422652e-13 + art_sys_48: 1.23719491e-13 + art_sys_49: 1.53980308e-12 + art_sys_50: -3.65641151e-19 + art_sys_51: -3.03230483e-20 + art_sys_52: -1.91589136e-04 + art_sys_53: 6.69409993e-13 + art_sys_54: -1.75335831e-14 + art_sys_55: 1.94594822e-14 + art_sys_56: 3.61743292e-05 + art_sys_57: -3.42141548e-19 + art_sys_58: -5.51201673e-21 + art_sys_59: -3.00427704e-18 + art_sys_60: -1.45418161e-17 + art_sys_61: -2.23445011e-17 + art_sys_62: -6.98423443e-06 + art_sys_63: 1.82188990e-16 + art_sys_64: 8.93132340e-18 + art_sys_65: 3.81946336e-19 + art_sys_66: 2.82346308e-18 + art_sys_67: 4.39522881e-19 + art_sys_68: 1.56484798e-19 + art_sys_69: -6.95570947e-19 + art_sys_70: -2.56545203e-19 + art_sys_71: -2.21124476e-19 + art_sys_72: 6.79853982e-21 + art_sys_73: -5.81919314e-21 + art_sys_74: -9.12087879e-17 + art_sys_75: 4.58410345e-21 + art_sys_76: -1.47539067e-18 + art_sys_77: 6.52156997e-18 + art_sys_78: -1.53387204e-18 + art_sys_79: -3.11407587e-21 + art_sys_80: 2.52155536e-18 + art_sys_81: -1.14719228e-15 + art_sys_82: 1.10940789e-13 + art_sys_83: 7.29087645e-19 + art_sys_84: 3.72228250e-19 + art_sys_85: -3.06444429e-19 + art_sys_86: -6.43808042e-20 + art_sys_87: 1.59701032e-16 + art_sys_88: 8.55352998e-18 + art_sys_89: 6.87926326e-21 + art_sys_90: 9.56403551e-20 + art_sys_91: 2.66913065e-15 + art_sys_92: -1.91711250e-21 + art_sys_93: 1.82214640e-21 + art_sys_94: 3.37689924e-21 + art_sys_95: 1.03834937e-15 + art_sys_96: 3.17019231e-13 + art_sys_97: 2.13216060e-07 + art_sys_98: 2.15934550e-15 + art_sys_99: 5.13236366e-15 + art_sys_100: -5.63233562e-14 + art_sys_101: -1.28640021e-13 + art_sys_102: 1.19658780e-14 + art_sys_103: -2.72678104e-08 + art_sys_104: 3.38133696e-15 + art_sys_105: -1.73923402e-21 + art_sys_106: -3.35164423e-15 + art_sys_107: 9.05972168e-18 + art_sys_108: 5.98347979e-24 + art_sys_109: -1.98771400e-25 + art_sys_110: -3.41618229e-16 + art_sys_111: 2.02640732e-14 + art_sys_112: 1.53889024e-16 + art_sys_113: 5.88789348e-10 + art_sys_114: -9.80043992e-26 + art_sys_115: -4.19486631e-17 + art_sys_116: 3.30893616e-21 + art_sys_117: 7.88135766e-26 + art_sys_118: 9.59156265e-17 + art_sys_119: 9.90456369e-22 + art_sys_120: -1.71947589e-18 + art_sys_121: -6.26431157e-25 + art_sys_122: -2.27473118e-16 + art_sys_123: 3.92356821e-24 + art_sys_124: 5.97054087e-18 + art_sys_125: 4.87156004e-27 + art_sys_126: -2.40115462e-22 + art_sys_127: 1.70830252e-24 + art_sys_128: 5.68797699e-19 + art_sys_129: 1.58636521e-26 + art_sys_130: -2.29656008e-24 + art_sys_131: -1.63766803e-26 + art_sys_132: 8.44561336e-20 + art_sys_133: 6.56167875e-25 + art_sys_134: 4.37795464e-23 + art_sys_135: -7.36108587e-20 + art_sys_136: 4.65686974e-28 + art_sys_137: 3.57828161e-24 + art_sys_138: -3.09280960e-20 + art_sys_139: -1.89290548e-24 + art_sys_140: 1.15732259e-27 + art_sys_141: 2.10315136e-25 + art_sys_142: -7.92022491e-21 + art_sys_143: -1.76167684e-25 + art_sys_144: 1.25170984e-25 + art_sys_145: 5.17427337e-22 + art_sys_146: 3.03173972e-24 + art_sys_147: -3.60084257e-27 + art_sys_148: -6.84589429e-28 + art_sys_149: -9.52183688e-22 + art_sys_150: -3.86204783e-23 + art_sys_151: 4.00796258e-22 + art_sys_152: 1.79032965e-25 + art_sys_153: 5.98898317e-22 + art_sys_154: -9.21523261e-13 + art_sys_155: 6.00316308e-24 + art_sys_156: -0.0 + art_sys_157: 1.04389468e-20 + art_sys_158: 0.0 + art_sys_159: -2.58175286e-21 + art_sys_160: -3.17134648e-22 + art_sys_161: -6.70264247e-23 + art_sys_162: -6.70264247e-23 + art_sys_163: 8.85825208e-23 + art_sys_164: 8.85825208e-23 + art_sys_165: -7.67866800e-37 + art_sys_166: 2.36425647e-37 + art_sys_167: 0.0 + art_sys_168: -3.21177857e-34 + art_sys_169: 6.90893409e-33 + art_sys_170: -2.58812616e-32 + art_sys_171: -7.55673067e-32 + art_sys_172: -1.45734552e-32 + art_sys_173: 1.85035289e-33 + art_sys_174: 2.34939960e-33 + art_sys_175: -2.19085326e-34 + art_sys_176: 3.34772470e-35 + art_sys_177: -4.35163881e-37 + art_sys_178: -3.72937144e-37 + art_sys_179: -5.09303729e-36 + art_sys_180: -5.22377452e-35 + art_sys_181: -4.90067952e-36 + art_sys_182: 9.68546912e-36 + art_sys_183: -8.78448493e-38 + art_sys_184: 4.81972708e-40 + art_sys_185: 1.83709068e-41 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -68335,189 +68335,189 @@ bins: uncorrelated_uncertainty: 9.31754000e-02 - art_sys_1: 2.23245273e-04 art_sys_2: -3.19069810e-04 - art_sys_3: 2.90655762e-15 - art_sys_4: 2.89661976e-14 - art_sys_5: -8.40065308e-16 + art_sys_3: -8.24547153e-16 + art_sys_4: -4.36421473e-15 + art_sys_5: -1.83059833e-15 art_sys_6: -4.69150442e-05 - art_sys_7: -9.77474216e-15 - art_sys_8: -1.14533815e-14 - art_sys_9: 2.84312410e-14 - art_sys_10: -6.08932743e-04 - art_sys_11: -3.35211481e-14 - art_sys_12: 1.14926408e-16 - art_sys_13: 6.93391875e-03 - art_sys_14: -7.61146637e-16 - art_sys_15: 1.89154781e-15 - art_sys_16: -7.30002680e-16 + art_sys_7: -2.25872340e-14 + art_sys_8: 5.18692186e-15 + art_sys_9: 3.14822992e-15 + art_sys_10: 6.08932743e-04 + art_sys_11: 6.38617327e-15 + art_sys_12: -1.25419064e-15 + art_sys_13: -6.93391875e-03 + art_sys_14: -8.84840267e-16 + art_sys_15: -3.15617447e-15 + art_sys_16: -9.19051258e-16 art_sys_17: 4.70961375e-03 - art_sys_18: -2.68597920e-17 - art_sys_19: -3.47927714e-17 - art_sys_20: -3.42412187e-02 - art_sys_21: -5.84352970e-16 - art_sys_22: -1.28250457e-15 - art_sys_23: -2.14864545e-02 - art_sys_24: 1.32128818e-16 - art_sys_25: -1.56266432e-14 - art_sys_26: -2.94015459e-14 - art_sys_27: -1.24802839e-15 - art_sys_28: -2.07194864e-16 - art_sys_29: -1.91578124e-18 - art_sys_30: -1.67898875e-15 - art_sys_31: 1.06883727e-15 - art_sys_32: -2.98259928e-15 - art_sys_33: 1.01790727e-15 - art_sys_34: -2.59235910e-11 - art_sys_35: -3.49206570e-02 - art_sys_36: -2.33072078e-14 - art_sys_37: -1.58456964e-11 - art_sys_38: -9.20110012e-17 - art_sys_39: 4.17645421e-02 - art_sys_40: -1.82371074e-10 - art_sys_41: 2.84862095e-16 - art_sys_42: 8.51700298e-11 - art_sys_43: -5.84697868e-18 - art_sys_44: -5.86860365e-18 - art_sys_45: 1.34194629e-17 - art_sys_46: -7.66431301e-03 - art_sys_47: 3.23691456e-13 - art_sys_48: -1.22489452e-12 - art_sys_49: 9.31738059e-15 - art_sys_50: -5.46990955e-15 - art_sys_51: -2.19341704e-15 - art_sys_52: -2.61131741e-16 - art_sys_53: -1.01592503e-16 - art_sys_54: 1.97418552e-17 - art_sys_55: 1.55367225e-15 - art_sys_56: 2.68473982e-14 - art_sys_57: -4.66587174e-13 - art_sys_58: 8.75496098e-17 - art_sys_59: -1.02647381e-17 - art_sys_60: 4.15649197e-12 - art_sys_61: 7.33682924e-04 - art_sys_62: -7.75577682e-13 - art_sys_63: -2.87992448e-14 - art_sys_64: -9.43621820e-13 - art_sys_65: 3.11362601e-18 - art_sys_66: 4.90342149e-19 - art_sys_67: 1.20685546e-04 - art_sys_68: -2.31219780e-13 - art_sys_69: 2.07202681e-15 - art_sys_70: 1.46963768e-14 - art_sys_71: 9.15742483e-14 - art_sys_72: 2.60117449e-05 - art_sys_73: -2.08132128e-17 - art_sys_74: 4.68467509e-17 - art_sys_75: 2.02176817e-18 - art_sys_76: 1.61641793e-20 - art_sys_77: 1.01080757e-13 - art_sys_78: 8.62826754e-18 - art_sys_79: 4.72989336e-18 - art_sys_80: -4.27682298e-17 - art_sys_81: -9.50304861e-19 - art_sys_82: 1.64815570e-18 - art_sys_83: 6.71496295e-20 - art_sys_84: -2.19361392e-18 - art_sys_85: 2.79334291e-19 - art_sys_86: 1.15970606e-20 - art_sys_87: 1.71163414e-13 - art_sys_88: -4.74522800e-21 - art_sys_89: -2.84482747e-21 - art_sys_90: -1.10103039e-13 - art_sys_91: -1.60547809e-15 - art_sys_92: -2.15175003e-13 - art_sys_93: -8.41548585e-07 - art_sys_94: 3.04262113e-13 - art_sys_95: -2.55404961e-19 - art_sys_96: -1.45152011e-23 - art_sys_97: 8.57501872e-20 - art_sys_98: 2.90436969e-14 - art_sys_99: 1.06254845e-07 - art_sys_100: -2.91177741e-23 - art_sys_101: 4.22087752e-15 - art_sys_102: 2.66995672e-15 - art_sys_103: -2.36267109e-22 - art_sys_104: 2.90956612e-09 - art_sys_105: 5.68150750e-17 - art_sys_106: 5.34961810e-20 - art_sys_107: -5.60835193e-24 - art_sys_108: 1.06296665e-24 - art_sys_109: 2.92580882e-24 - art_sys_110: -6.94525925e-23 - art_sys_111: -1.19328906e-18 - art_sys_112: -8.15105477e-24 - art_sys_113: -1.51038052e-25 - art_sys_114: 1.10113352e-18 - art_sys_115: -3.26467246e-24 - art_sys_116: -2.09962925e-23 - art_sys_117: -7.26968725e-19 - art_sys_118: -1.91858318e-24 - art_sys_119: 4.10838359e-19 - art_sys_120: -3.80485767e-23 - art_sys_121: -9.14716232e-25 - art_sys_122: 1.85400206e-19 - art_sys_123: 7.50029573e-20 - art_sys_124: 2.02028056e-25 - art_sys_125: 9.95017979e-24 - art_sys_126: 1.27705095e-24 - art_sys_127: -3.15602726e-20 - art_sys_128: 5.07878296e-28 - art_sys_129: 7.87999589e-21 - art_sys_130: 5.60257551e-24 - art_sys_131: -7.74912796e-24 - art_sys_132: 6.83801909e-21 - art_sys_133: 2.53862431e-23 - art_sys_134: 6.99745473e-26 - art_sys_135: 1.94795875e-21 - art_sys_136: -1.17543942e-23 - art_sys_137: -1.87743391e-26 - art_sys_138: -9.00920902e-12 - art_sys_139: -9.44062741e-21 - art_sys_140: -1.43506107e-21 - art_sys_141: -1.75292056e-19 - art_sys_142: 2.19629465e-21 - art_sys_143: -3.43760296e-27 - art_sys_144: 2.04705463e-25 - art_sys_145: -1.56086853e-24 - art_sys_146: 0.0 - art_sys_147: -1.00110668e-22 - art_sys_148: 1.39587215e-21 - art_sys_149: 1.39587215e-21 - art_sys_150: 2.57922807e-22 - art_sys_151: 2.57922807e-22 - art_sys_152: 1.62820063e-21 - art_sys_153: -8.02410273e-23 - art_sys_154: 1.06906736e-25 - art_sys_155: -3.69773587e-34 - art_sys_156: -3.98063305e-39 - art_sys_157: 7.18871417e-39 - art_sys_158: 0.0 - art_sys_159: -5.84323236e-27 - art_sys_160: 1.86639523e-26 - art_sys_161: 1.13499601e-27 - art_sys_162: 3.20004994e-28 - art_sys_163: 2.74993334e-26 - art_sys_164: -3.07607778e-26 - art_sys_165: 3.84529877e-28 - art_sys_166: 2.03902250e-33 - art_sys_167: -1.49492272e-33 - art_sys_168: -3.14831211e-33 - art_sys_169: 2.67548671e-33 - art_sys_170: 2.03062152e-33 - art_sys_171: -1.63702314e-33 - art_sys_172: -1.23365714e-32 - art_sys_173: -4.59306458e-33 - art_sys_174: -2.01723484e-33 - art_sys_175: 9.57706244e-37 - art_sys_176: 3.81267590e-36 - art_sys_177: 2.72327909e-37 - art_sys_178: 2.70369218e-36 - art_sys_179: -3.79060695e-37 - art_sys_180: -1.99961933e-36 - art_sys_181: 1.72035052e-37 - art_sys_182: 6.58996115e-38 - art_sys_183: -2.36398096e-40 - art_sys_184: 1.49527351e-40 - art_sys_185: -2.93780893e-41 + art_sys_18: 1.02820831e-15 + art_sys_19: 2.16386791e-16 + art_sys_20: 3.42412187e-02 + art_sys_21: -5.55226443e-16 + art_sys_22: 2.14864545e-02 + art_sys_23: -1.15752021e-14 + art_sys_24: -5.71697364e-16 + art_sys_25: -5.70763616e-16 + art_sys_26: 7.46007253e-17 + art_sys_27: -4.73031747e-17 + art_sys_28: 3.49206569e-02 + art_sys_29: -1.76888458e-15 + art_sys_30: 4.59141505e-15 + art_sys_31: 4.17645421e-02 + art_sys_32: 2.91521560e-16 + art_sys_33: -8.22367153e-15 + art_sys_34: 4.22531567e-16 + art_sys_35: 7.66431301e-03 + art_sys_36: -5.27470153e-16 + art_sys_37: 2.36980893e-15 + art_sys_38: -3.26273744e-16 + art_sys_39: -1.17818156e-16 + art_sys_40: 3.15485319e-17 + art_sys_41: -3.00563435e-17 + art_sys_42: -1.47289621e-17 + art_sys_43: 1.59060844e-17 + art_sys_44: 2.04601707e-18 + art_sys_45: -1.30407776e-18 + art_sys_46: 1.88664775e-18 + art_sys_47: -1.01894198e-12 + art_sys_48: -5.40707187e-13 + art_sys_49: -4.96855808e-12 + art_sys_50: 2.36867447e-18 + art_sys_51: 3.56736780e-18 + art_sys_52: 7.33682923e-04 + art_sys_53: -2.51933650e-12 + art_sys_54: 6.71864354e-14 + art_sys_55: -7.71281672e-14 + art_sys_56: -1.20685540e-04 + art_sys_57: -1.67148620e-18 + art_sys_58: -7.27706542e-21 + art_sys_59: 1.82190322e-16 + art_sys_60: 5.69475094e-17 + art_sys_61: 8.81510100e-17 + art_sys_62: 2.60117461e-05 + art_sys_63: -6.74082595e-16 + art_sys_64: -3.57986854e-17 + art_sys_65: -1.48997001e-18 + art_sys_66: -1.11688002e-17 + art_sys_67: -1.71722158e-18 + art_sys_68: -6.13225175e-19 + art_sys_69: 2.69756512e-18 + art_sys_70: 1.01241987e-18 + art_sys_71: 8.75412263e-19 + art_sys_72: -2.70247530e-20 + art_sys_73: 2.31143802e-20 + art_sys_74: 3.60032633e-16 + art_sys_75: -1.80515611e-20 + art_sys_76: 5.57438949e-18 + art_sys_77: -2.56194172e-17 + art_sys_78: 6.02088418e-18 + art_sys_79: 1.20737312e-20 + art_sys_80: -9.92756573e-18 + art_sys_81: 4.52790065e-15 + art_sys_82: -4.37876259e-13 + art_sys_83: -2.74706088e-18 + art_sys_84: -1.45705637e-18 + art_sys_85: 1.21528516e-18 + art_sys_86: 2.55701159e-19 + art_sys_87: -6.22538324e-16 + art_sys_88: -4.28494774e-17 + art_sys_89: -2.58901039e-20 + art_sys_90: -3.46420012e-19 + art_sys_91: -1.05168742e-14 + art_sys_92: 7.53466795e-21 + art_sys_93: -7.18332540e-21 + art_sys_94: -1.61830487e-20 + art_sys_95: -4.09838537e-15 + art_sys_96: -1.25094088e-12 + art_sys_97: -8.41551279e-07 + art_sys_98: -8.41508355e-15 + art_sys_99: -2.00348350e-14 + art_sys_100: 2.19493507e-13 + art_sys_101: 5.01657701e-13 + art_sys_102: -5.91661128e-14 + art_sys_103: 1.06263330e-07 + art_sys_104: -1.31707059e-14 + art_sys_105: 6.82291070e-21 + art_sys_106: 1.66171783e-14 + art_sys_107: -4.48067756e-17 + art_sys_108: -2.72824589e-23 + art_sys_109: 1.03170505e-24 + art_sys_110: 1.33990020e-15 + art_sys_111: -1.00249110e-13 + art_sys_112: -6.02901660e-16 + art_sys_113: -2.91129629e-09 + art_sys_114: 3.88274168e-25 + art_sys_115: 2.26020785e-16 + art_sys_116: -1.29951320e-20 + art_sys_117: -3.83913524e-25 + art_sys_118: -3.86137731e-16 + art_sys_119: -3.83359444e-21 + art_sys_120: 6.74435398e-18 + art_sys_121: 3.06309849e-24 + art_sys_122: 8.98569239e-16 + art_sys_123: 1.11968903e-23 + art_sys_124: -2.68603753e-17 + art_sys_125: -1.26086146e-26 + art_sys_126: 9.27187139e-22 + art_sys_127: -7.93859018e-24 + art_sys_128: -7.73139733e-19 + art_sys_129: -4.58933727e-26 + art_sys_130: 1.27556788e-23 + art_sys_131: 9.30805949e-26 + art_sys_132: 2.45745350e-19 + art_sys_133: -5.87437871e-24 + art_sys_134: -1.62315598e-22 + art_sys_135: 7.67746513e-20 + art_sys_136: 8.63772944e-28 + art_sys_137: -1.68023513e-23 + art_sys_138: 6.05416071e-20 + art_sys_139: 6.58150496e-24 + art_sys_140: -3.28441821e-27 + art_sys_141: -2.82109628e-24 + art_sys_142: 7.18947835e-21 + art_sys_143: 2.40831699e-25 + art_sys_144: -5.40980137e-25 + art_sys_145: -6.64186436e-21 + art_sys_146: -1.25000859e-23 + art_sys_147: 1.27226185e-26 + art_sys_148: 2.95555550e-27 + art_sys_149: 4.23558426e-21 + art_sys_150: 1.43379332e-22 + art_sys_151: -1.58884486e-21 + art_sys_152: -7.02833989e-25 + art_sys_153: -2.36312959e-21 + art_sys_154: 3.61436740e-12 + art_sys_155: -2.36275009e-23 + art_sys_156: 0.0 + art_sys_157: -4.09039809e-20 + art_sys_158: -0.0 + art_sys_159: 1.01094488e-20 + art_sys_160: 1.24333590e-21 + art_sys_161: 2.62487018e-22 + art_sys_162: 2.62487018e-22 + art_sys_163: -3.46559257e-22 + art_sys_164: -3.46559257e-22 + art_sys_165: 3.00382973e-36 + art_sys_166: -9.24819839e-37 + art_sys_167: -0.0 + art_sys_168: 1.51249848e-33 + art_sys_169: -4.78749233e-33 + art_sys_170: 3.44818630e-32 + art_sys_171: 5.02630585e-32 + art_sys_172: 4.90536209e-33 + art_sys_173: -1.64493232e-32 + art_sys_174: 3.46660834e-33 + art_sys_175: 1.39080836e-34 + art_sys_176: 2.03159075e-35 + art_sys_177: 6.36985854e-37 + art_sys_178: -1.58371781e-37 + art_sys_179: 2.00209777e-35 + art_sys_180: 2.04520185e-34 + art_sys_181: 1.34314954e-35 + art_sys_182: 1.27121620e-36 + art_sys_183: -2.23689022e-37 + art_sys_184: -1.92722636e-40 + art_sys_185: -8.30795574e-41 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -68626,189 +68626,189 @@ bins: uncorrelated_uncertainty: 3.57007000e-02 - art_sys_1: 5.74695836e-06 art_sys_2: -1.06582257e-04 - art_sys_3: 2.10507509e-16 - art_sys_4: -1.40472870e-14 - art_sys_5: 6.57402149e-17 + art_sys_3: 2.18642997e-18 + art_sys_4: -1.04168256e-14 + art_sys_5: -2.02706116e-16 art_sys_6: -1.96463296e-04 - art_sys_7: -1.13268691e-14 - art_sys_8: -3.65604294e-15 - art_sys_9: 1.23138625e-14 - art_sys_10: 9.54040622e-05 - art_sys_11: 9.38505345e-15 - art_sys_12: 5.37140404e-15 - art_sys_13: 4.83010173e-04 - art_sys_14: -3.66898617e-16 - art_sys_15: -1.43310890e-16 - art_sys_16: 2.14618283e-16 + art_sys_7: 2.80971305e-15 + art_sys_8: 5.60049459e-18 + art_sys_9: 8.36739068e-16 + art_sys_10: -9.54040622e-05 + art_sys_11: -2.20146423e-15 + art_sys_12: -1.34118627e-15 + art_sys_13: -4.83010173e-04 + art_sys_14: 1.23849023e-15 + art_sys_15: 9.21577424e-16 + art_sys_16: 3.39543226e-16 art_sys_17: -1.67228888e-03 - art_sys_18: -1.57373740e-15 - art_sys_19: -1.11771174e-16 - art_sys_20: -8.44256911e-04 - art_sys_21: 6.23992580e-18 - art_sys_22: -2.51861161e-16 - art_sys_23: -2.83532321e-03 - art_sys_24: 1.11851908e-16 - art_sys_25: -4.54335683e-14 - art_sys_26: -2.62105459e-14 - art_sys_27: 3.07562799e-14 - art_sys_28: -1.41290246e-16 - art_sys_29: -9.98566124e-18 - art_sys_30: -7.11626152e-15 - art_sys_31: -3.54081747e-16 - art_sys_32: 8.87442089e-16 - art_sys_33: -7.24113087e-16 - art_sys_34: 2.54342649e-12 - art_sys_35: 3.42594914e-03 - art_sys_36: -6.39237340e-15 - art_sys_37: -8.38711779e-12 - art_sys_38: 5.79559029e-16 - art_sys_39: 2.21025443e-02 - art_sys_40: -9.65139583e-11 - art_sys_41: 1.72258498e-15 - art_sys_42: -1.94617649e-10 - art_sys_43: 1.56735126e-17 - art_sys_44: 1.49844583e-17 - art_sys_45: -2.84065355e-17 - art_sys_46: 1.75127520e-02 - art_sys_47: -9.19809470e-14 - art_sys_48: 3.92297653e-12 - art_sys_49: -1.54218170e-14 - art_sys_50: 9.25933123e-15 - art_sys_51: 3.16176240e-15 - art_sys_52: 9.49679810e-17 - art_sys_53: 6.06408750e-17 - art_sys_54: -8.42010505e-17 - art_sys_55: -2.42042435e-15 - art_sys_56: -4.18709076e-14 - art_sys_57: 1.87491585e-12 - art_sys_58: -2.13792969e-16 - art_sys_59: 1.87698477e-17 - art_sys_60: -6.07534320e-12 - art_sys_61: -1.14429035e-03 - art_sys_62: 1.14684106e-12 - art_sys_63: 8.81085885e-14 - art_sys_64: 2.86142800e-12 - art_sys_65: -9.81830609e-18 - art_sys_66: -1.59375564e-18 - art_sys_67: -3.70524603e-04 - art_sys_68: 7.90304782e-13 - art_sys_69: -6.66975736e-15 - art_sys_70: -5.05486397e-14 - art_sys_71: -2.74990809e-13 - art_sys_72: -7.78337585e-05 - art_sys_73: 6.99454329e-17 - art_sys_74: -1.60388486e-16 - art_sys_75: -6.69889466e-18 - art_sys_76: -5.60364419e-20 - art_sys_77: -3.45420744e-13 - art_sys_78: -3.48908075e-17 - art_sys_79: -1.61220949e-17 - art_sys_80: 1.54811686e-16 - art_sys_81: 3.09316111e-18 - art_sys_82: -5.55913665e-18 - art_sys_83: -3.19992705e-19 - art_sys_84: 7.41756065e-18 - art_sys_85: -9.58457817e-19 - art_sys_86: -3.93639733e-20 - art_sys_87: -5.65814398e-13 - art_sys_88: 1.60040898e-20 - art_sys_89: 9.99947971e-21 - art_sys_90: 3.75816424e-13 - art_sys_91: 5.71900336e-15 - art_sys_92: 6.91352554e-13 - art_sys_93: 2.87625540e-06 - art_sys_94: -9.78822916e-13 - art_sys_95: 9.11390354e-19 - art_sys_96: 4.08988584e-23 - art_sys_97: -3.01399608e-19 - art_sys_98: -9.62579725e-14 - art_sys_99: -3.41844204e-07 - art_sys_100: -5.00872481e-23 - art_sys_101: -1.51335711e-14 - art_sys_102: -9.54679369e-15 - art_sys_103: 5.94976727e-23 - art_sys_104: -9.40105524e-09 - art_sys_105: -1.98288095e-16 - art_sys_106: -1.92081473e-19 - art_sys_107: 1.82254701e-23 - art_sys_108: -3.19083131e-24 - art_sys_109: -9.47634589e-24 - art_sys_110: 3.90935525e-23 - art_sys_111: 2.37425922e-18 - art_sys_112: 6.46929666e-24 - art_sys_113: 5.23261320e-25 - art_sys_114: -1.58054988e-18 - art_sys_115: -1.74141177e-24 - art_sys_116: -1.19832285e-22 - art_sys_117: 1.12013845e-18 - art_sys_118: 3.24184211e-24 - art_sys_119: -6.33832074e-19 - art_sys_120: -1.73318755e-23 - art_sys_121: 2.72231372e-24 - art_sys_122: -2.83985789e-19 - art_sys_123: -1.13945741e-19 - art_sys_124: -4.96127277e-25 - art_sys_125: -1.58229039e-23 - art_sys_126: -5.15706622e-24 - art_sys_127: 5.44862518e-20 - art_sys_128: -8.30727404e-25 - art_sys_129: -1.10157303e-20 - art_sys_130: -2.12181424e-23 - art_sys_131: 3.05608431e-23 - art_sys_132: -3.06988142e-20 - art_sys_133: -1.05373960e-22 - art_sys_134: -2.79737127e-25 - art_sys_135: -5.77329382e-21 - art_sys_136: 3.87539339e-23 - art_sys_137: 6.73166938e-26 - art_sys_138: 3.21677315e-11 - art_sys_139: 3.35860423e-20 - art_sys_140: 5.10598240e-21 - art_sys_141: 6.25890340e-19 - art_sys_142: -7.84229559e-21 - art_sys_143: 1.23984623e-26 - art_sys_144: -7.30644982e-25 - art_sys_145: 5.57362743e-24 - art_sys_146: -0.0 - art_sys_147: 3.57535917e-22 - art_sys_148: -4.98492424e-21 - art_sys_149: -4.98492424e-21 - art_sys_150: -9.20782518e-22 - art_sys_151: -9.20782518e-22 - art_sys_152: -5.80873308e-21 - art_sys_153: 2.86154661e-22 - art_sys_154: -3.81658278e-25 - art_sys_155: 1.31895815e-33 - art_sys_156: 1.42357608e-38 - art_sys_157: -2.53558028e-38 - art_sys_158: -0.0 - art_sys_159: 2.46840712e-26 - art_sys_160: -6.45635562e-26 - art_sys_161: -3.32881178e-27 - art_sys_162: 5.14167955e-28 - art_sys_163: -9.33216384e-26 - art_sys_164: 1.11834501e-25 - art_sys_165: -2.37276752e-27 - art_sys_166: -1.09527663e-32 - art_sys_167: 5.70078288e-33 - art_sys_168: 1.12221644e-32 - art_sys_169: -7.15043847e-33 - art_sys_170: -1.08177373e-32 - art_sys_171: -3.54644478e-33 - art_sys_172: -3.83329289e-31 - art_sys_173: -6.34828202e-32 - art_sys_174: -9.13220023e-33 - art_sys_175: -3.41981634e-36 - art_sys_176: -5.99542402e-34 - art_sys_177: 1.73726343e-34 - art_sys_178: -9.17990633e-35 - art_sys_179: 9.15862595e-36 - art_sys_180: 6.46637876e-35 - art_sys_181: 1.98091296e-38 - art_sys_182: 7.13530345e-37 - art_sys_183: 4.94253760e-39 - art_sys_184: -5.42302924e-40 - art_sys_185: 1.04512115e-40 + art_sys_18: -9.71810634e-16 + art_sys_19: 5.82711836e-16 + art_sys_20: 8.44256911e-04 + art_sys_21: 4.83521533e-16 + art_sys_22: 2.83532321e-03 + art_sys_23: -4.49744046e-16 + art_sys_24: 1.29117340e-15 + art_sys_25: -1.78027949e-16 + art_sys_26: -6.98235105e-17 + art_sys_27: 9.78133400e-18 + art_sys_28: -3.42594913e-03 + art_sys_29: 1.86893037e-16 + art_sys_30: -1.01914886e-16 + art_sys_31: 2.21025443e-02 + art_sys_32: 1.03085875e-16 + art_sys_33: -5.87166592e-15 + art_sys_34: 9.22929964e-16 + art_sys_35: -1.75127520e-02 + art_sys_36: -3.78828274e-15 + art_sys_37: -3.07453362e-15 + art_sys_38: 8.91043963e-16 + art_sys_39: 3.51110177e-16 + art_sys_40: -1.52174952e-16 + art_sys_41: 6.40632233e-17 + art_sys_42: 6.26348001e-17 + art_sys_43: -5.32786743e-17 + art_sys_44: -5.18836393e-18 + art_sys_45: 5.21436118e-19 + art_sys_46: -3.70843101e-18 + art_sys_47: 1.60255920e-12 + art_sys_48: 2.38975671e-13 + art_sys_49: 1.72226328e-11 + art_sys_50: -2.92259181e-18 + art_sys_51: -2.48021037e-18 + art_sys_52: -1.14429035e-03 + art_sys_53: 7.52406913e-12 + art_sys_54: -2.13815606e-13 + art_sys_55: 2.52992152e-13 + art_sys_56: 3.70524584e-04 + art_sys_57: -1.98669015e-19 + art_sys_58: 2.49389359e-20 + art_sys_59: -6.09535597e-16 + art_sys_60: -1.65860876e-16 + art_sys_61: -3.01297325e-16 + art_sys_62: -7.78337620e-05 + art_sys_63: 1.98359016e-15 + art_sys_64: 1.22454638e-16 + art_sys_65: 5.03082221e-18 + art_sys_66: 3.89118507e-17 + art_sys_67: 5.43589913e-18 + art_sys_68: 1.97129818e-18 + art_sys_69: -9.09435521e-18 + art_sys_70: -3.43562272e-18 + art_sys_71: -2.98768233e-18 + art_sys_72: 9.29192364e-20 + art_sys_73: -8.02396373e-20 + art_sys_74: -1.22999886e-15 + art_sys_75: 6.19356638e-20 + art_sys_76: -2.10387298e-17 + art_sys_77: 8.63220486e-17 + art_sys_78: -2.16766577e-17 + art_sys_79: -3.60446954e-20 + art_sys_80: 3.36073857e-17 + art_sys_81: -1.54755196e-14 + art_sys_82: 1.49657488e-12 + art_sys_83: 1.03262414e-17 + art_sys_84: 4.86735955e-18 + art_sys_85: -4.10110608e-18 + art_sys_86: -9.04277348e-19 + art_sys_87: 2.00302859e-15 + art_sys_88: 1.31628066e-16 + art_sys_89: 7.70915669e-20 + art_sys_90: 1.59594494e-18 + art_sys_91: 3.58449838e-14 + art_sys_92: -2.58344330e-20 + art_sys_93: 2.45427332e-20 + art_sys_94: 5.43932687e-20 + art_sys_95: 1.40146268e-14 + art_sys_96: 4.27280257e-12 + art_sys_97: 2.87626516e-06 + art_sys_98: 2.70768151e-14 + art_sys_99: 6.46446160e-14 + art_sys_100: -7.06160125e-13 + art_sys_101: -1.61402378e-12 + art_sys_102: 1.91177873e-13 + art_sys_103: -3.41873097e-07 + art_sys_104: 4.23611759e-14 + art_sys_105: -2.43576685e-20 + art_sys_106: -5.35896348e-14 + art_sys_107: 1.44765337e-16 + art_sys_108: 9.37866474e-23 + art_sys_109: -3.15229865e-24 + art_sys_110: -4.78386785e-15 + art_sys_111: 3.23897914e-13 + art_sys_112: 2.15367375e-15 + art_sys_113: 9.40699816e-09 + art_sys_114: -1.39342677e-24 + art_sys_115: -7.50082146e-16 + art_sys_116: 4.64351594e-20 + art_sys_117: 1.20597322e-24 + art_sys_118: 1.39572688e-15 + art_sys_119: 1.37346694e-20 + art_sys_120: -2.40795221e-17 + art_sys_121: -9.93944852e-24 + art_sys_122: -3.21819549e-15 + art_sys_123: -1.66018153e-23 + art_sys_124: 1.00776839e-16 + art_sys_125: 6.11922571e-26 + art_sys_126: -3.46201359e-21 + art_sys_127: 2.61785746e-23 + art_sys_128: 6.20846386e-19 + art_sys_129: 1.70106682e-25 + art_sys_130: -4.26013236e-23 + art_sys_131: -2.95164317e-25 + art_sys_132: -1.71739010e-18 + art_sys_133: 2.13548649e-23 + art_sys_134: 5.77415056e-22 + art_sys_135: 3.82063946e-20 + art_sys_136: 5.77095080e-27 + art_sys_137: 5.53567526e-23 + art_sys_138: -1.25665740e-19 + art_sys_139: -2.01244663e-23 + art_sys_140: 1.13250415e-26 + art_sys_141: 7.74679725e-24 + art_sys_142: 3.18462815e-21 + art_sys_143: -2.73256779e-25 + art_sys_144: 1.82379430e-24 + art_sys_145: 2.84116549e-20 + art_sys_146: 4.29142323e-23 + art_sys_147: -3.93815847e-26 + art_sys_148: -1.01795088e-26 + art_sys_149: -1.56103310e-20 + art_sys_150: -4.87804409e-22 + art_sys_151: 5.64777937e-21 + art_sys_152: 2.47354330e-24 + art_sys_153: 8.41970739e-21 + art_sys_154: -1.29045293e-11 + art_sys_155: 8.42075380e-23 + art_sys_156: -0.0 + art_sys_157: 1.46100518e-19 + art_sys_158: 0.0 + art_sys_159: -3.61184810e-20 + art_sys_160: -4.43998833e-21 + art_sys_161: -9.38039342e-22 + art_sys_162: -9.38039342e-22 + art_sys_163: 1.23849663e-21 + art_sys_164: 1.23849663e-21 + art_sys_165: -1.07345895e-35 + art_sys_166: 3.30499629e-36 + art_sys_167: 0.0 + art_sys_168: 5.75584879e-34 + art_sys_169: -2.00999397e-33 + art_sys_170: -1.06812208e-31 + art_sys_171: -3.32933518e-31 + art_sys_172: 8.70970133e-33 + art_sys_173: 4.84929450e-32 + art_sys_174: -2.68790148e-33 + art_sys_175: -1.94518879e-35 + art_sys_176: -6.80305872e-35 + art_sys_177: -4.02779559e-36 + art_sys_178: -1.05236193e-36 + art_sys_179: -7.14031149e-35 + art_sys_180: -7.30733109e-34 + art_sys_181: -4.13880224e-35 + art_sys_182: 2.44185241e-35 + art_sys_183: -1.67616795e-37 + art_sys_184: -2.14047219e-39 + art_sys_185: 2.65916855e-40 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -68917,189 +68917,189 @@ bins: uncorrelated_uncertainty: 1.26343000e-02 - art_sys_1: -1.38489654e-06 art_sys_2: -1.37599645e-05 - art_sys_3: -5.32877232e-17 - art_sys_4: -6.39863257e-16 - art_sys_5: 7.00938439e-18 + art_sys_3: 3.43624912e-17 + art_sys_4: 8.00728633e-17 + art_sys_5: 3.94856760e-17 art_sys_6: -3.14943578e-05 - art_sys_7: 5.38299951e-16 - art_sys_8: 3.02824515e-16 - art_sys_9: -9.63527246e-16 - art_sys_10: 2.42579302e-05 - art_sys_11: 1.84798679e-15 - art_sys_12: 1.21953573e-15 - art_sys_13: -1.22647013e-04 - art_sys_14: -2.79381228e-16 - art_sys_15: -2.46144117e-16 - art_sys_16: 8.02167580e-16 + art_sys_7: 7.01235213e-16 + art_sys_8: -9.41075750e-17 + art_sys_9: -1.07436560e-16 + art_sys_10: -2.42579302e-05 + art_sys_11: 3.93543435e-16 + art_sys_12: 3.07453760e-16 + art_sys_13: 1.22647013e-04 + art_sys_14: 1.17470443e-15 + art_sys_15: -1.94827658e-17 + art_sys_16: -2.71093893e-16 art_sys_17: -3.21312810e-04 - art_sys_18: 1.01502830e-16 - art_sys_19: 3.66769848e-17 - art_sys_20: 9.46036989e-04 - art_sys_21: -1.46807168e-16 - art_sys_22: 6.04931511e-17 - art_sys_23: 4.77638715e-04 - art_sys_24: -8.41983022e-16 - art_sys_25: 2.84110166e-14 - art_sys_26: -1.27705750e-14 - art_sys_27: 3.42965365e-15 - art_sys_28: -4.80520669e-18 - art_sys_29: 4.03079538e-17 - art_sys_30: -5.36162334e-15 - art_sys_31: -5.04692301e-18 - art_sys_32: -5.53950831e-16 - art_sys_33: -1.16087265e-16 - art_sys_34: 1.38105486e-12 - art_sys_35: 1.86033720e-03 - art_sys_36: 7.71273831e-16 - art_sys_37: 3.19947024e-13 - art_sys_38: 2.82545105e-17 - art_sys_39: -8.43404607e-04 - art_sys_40: 3.68287277e-12 - art_sys_41: 2.20249596e-16 - art_sys_42: -4.56831600e-11 - art_sys_43: 1.79874210e-17 - art_sys_44: -3.71198967e-17 - art_sys_45: 5.17884736e-18 - art_sys_46: 4.11087348e-03 - art_sys_47: 4.17054394e-12 - art_sys_48: -1.06281432e-11 - art_sys_49: 8.47472014e-14 - art_sys_50: -4.65165168e-14 - art_sys_51: -2.08237332e-14 - art_sys_52: -2.23840319e-15 - art_sys_53: -1.01868446e-15 - art_sys_54: 1.66093916e-16 - art_sys_55: 1.46811348e-14 - art_sys_56: 2.53988054e-13 - art_sys_57: -3.89677531e-12 - art_sys_58: 8.54322804e-16 - art_sys_59: -1.00004918e-16 - art_sys_60: 3.85718700e-11 - art_sys_61: 6.94111268e-03 - art_sys_62: -7.27287592e-12 - art_sys_63: -2.67794317e-13 - art_sys_64: -8.07253454e-12 - art_sys_65: 2.74189880e-17 - art_sys_66: 1.69045681e-18 - art_sys_67: 1.06043362e-03 - art_sys_68: -3.03450582e-12 - art_sys_69: 2.89036517e-14 - art_sys_70: 1.95287329e-13 - art_sys_71: 1.14551030e-12 - art_sys_72: 3.25000225e-04 - art_sys_73: -2.77804715e-16 - art_sys_74: 6.13242808e-16 - art_sys_75: 2.74592001e-17 - art_sys_76: 2.09108732e-19 - art_sys_77: 1.32655873e-12 - art_sys_78: 1.42925526e-16 - art_sys_79: 6.22402369e-17 - art_sys_80: -6.97025775e-16 - art_sys_81: -1.30913154e-17 - art_sys_82: 2.19281597e-17 - art_sys_83: 6.63565625e-19 - art_sys_84: -2.91292401e-17 - art_sys_85: 3.64835268e-18 - art_sys_86: 1.53305030e-19 - art_sys_87: 2.32617293e-12 - art_sys_88: -6.31794209e-20 - art_sys_89: -3.61938570e-20 - art_sys_90: -1.44975616e-12 - art_sys_91: -2.37738112e-14 - art_sys_92: -3.00665644e-12 - art_sys_93: -1.10449880e-05 - art_sys_94: 4.24455489e-12 - art_sys_95: -3.78774662e-18 - art_sys_96: -1.98077099e-22 - art_sys_97: 1.25389618e-18 - art_sys_98: 4.04333726e-13 - art_sys_99: 1.48310190e-06 - art_sys_100: 9.54115684e-23 - art_sys_101: 6.29802838e-14 - art_sys_102: 3.96944346e-14 - art_sys_103: 1.33864783e-22 - art_sys_104: 3.96259250e-08 - art_sys_105: 8.14710430e-16 - art_sys_106: 7.98343953e-19 - art_sys_107: -7.65391050e-23 - art_sys_108: 1.33803221e-23 - art_sys_109: 3.99965187e-23 - art_sys_110: 5.27270635e-23 - art_sys_111: -6.25941255e-18 - art_sys_112: -1.06416561e-24 - art_sys_113: -2.24110157e-24 - art_sys_114: 2.22838013e-18 - art_sys_115: 2.41904467e-24 - art_sys_116: 6.45479238e-22 - art_sys_117: -1.95785534e-18 - art_sys_118: -9.03050885e-24 - art_sys_119: 1.11288256e-18 - art_sys_120: 6.59604818e-23 - art_sys_121: -1.07806421e-23 - art_sys_122: 4.90491010e-19 - art_sys_123: 1.92650245e-19 - art_sys_124: 1.54680891e-24 - art_sys_125: 1.87922777e-23 - art_sys_126: 2.22315331e-23 - art_sys_127: -1.20409939e-19 - art_sys_128: 4.90107792e-24 - art_sys_129: 1.44826387e-20 - art_sys_130: 9.01344685e-23 - art_sys_131: -1.35919535e-22 - art_sys_132: 1.38937921e-19 - art_sys_133: 4.64755596e-22 - art_sys_134: 1.21612229e-24 - art_sys_135: 2.19711520e-20 - art_sys_136: -1.55261869e-22 - art_sys_137: -2.80674636e-25 - art_sys_138: -1.33735207e-10 - art_sys_139: -1.39437438e-19 - art_sys_140: -2.11995178e-20 - art_sys_141: -2.60210397e-18 - art_sys_142: 3.26066012e-20 - art_sys_143: -5.17645480e-26 - art_sys_144: 3.03706020e-24 - art_sys_145: -2.31745094e-23 - art_sys_146: 0.0 - art_sys_147: -1.48675995e-21 - art_sys_148: 2.07285720e-20 - art_sys_149: 2.07285720e-20 - art_sys_150: 3.82817210e-21 - art_sys_151: 3.82817210e-21 - art_sys_152: 2.41430408e-20 - art_sys_153: -1.18913317e-21 - art_sys_154: 1.58679410e-24 - art_sys_155: -5.48157076e-33 - art_sys_156: -5.92313629e-38 - art_sys_157: 1.04860332e-37 - art_sys_158: 0.0 - art_sys_159: -8.13069202e-26 - art_sys_160: 2.54707220e-25 - art_sys_161: 1.33971600e-26 - art_sys_162: 5.27775564e-27 - art_sys_163: 3.78261173e-25 - art_sys_164: -4.51121828e-25 - art_sys_165: 5.32816834e-27 - art_sys_166: 2.57347273e-32 - art_sys_167: -1.94201954e-32 - art_sys_168: -4.12541809e-32 - art_sys_169: 3.34823206e-32 - art_sys_170: 2.73549234e-32 - art_sys_171: 6.01885222e-33 - art_sys_172: -3.95140330e-31 - art_sys_173: -7.27788293e-32 - art_sys_174: -1.21005048e-32 - art_sys_175: 1.42193881e-35 - art_sys_176: 6.91227398e-34 - art_sys_177: 1.00372194e-34 - art_sys_178: -6.47484071e-35 - art_sys_179: 8.70030761e-36 - art_sys_180: 5.24773262e-35 - art_sys_181: 2.26554860e-37 - art_sys_182: 6.71204238e-37 - art_sys_183: -3.27560801e-39 - art_sys_184: 2.15615852e-39 - art_sys_185: -4.30173964e-40 + art_sys_18: -7.93768747e-18 + art_sys_19: -8.62585341e-17 + art_sys_20: -9.46036989e-04 + art_sys_21: -6.35816320e-16 + art_sys_22: -4.77638716e-04 + art_sys_23: 3.59939535e-16 + art_sys_24: 3.69762387e-16 + art_sys_25: -3.61707549e-18 + art_sys_26: -5.74306132e-17 + art_sys_27: 4.93867467e-17 + art_sys_28: -1.86033720e-03 + art_sys_29: 9.03068252e-17 + art_sys_30: -2.39965795e-16 + art_sys_31: -8.43404605e-04 + art_sys_32: -1.06129384e-17 + art_sys_33: 1.07964911e-17 + art_sys_34: 7.69978923e-16 + art_sys_35: -4.11087349e-03 + art_sys_36: -8.11647683e-15 + art_sys_37: 2.29835876e-14 + art_sys_38: -3.05205509e-15 + art_sys_39: -8.49004163e-16 + art_sys_40: 2.24668953e-16 + art_sys_41: -2.91737675e-16 + art_sys_42: -6.31536429e-17 + art_sys_43: 1.54964706e-16 + art_sys_44: 1.19172305e-17 + art_sys_45: -1.20231587e-17 + art_sys_46: 1.87226888e-17 + art_sys_47: -9.63373757e-12 + art_sys_48: -5.44220778e-12 + art_sys_49: -4.27521325e-11 + art_sys_50: 1.79876293e-17 + art_sys_51: 1.51124502e-17 + art_sys_52: 6.94111266e-03 + art_sys_53: -3.23418220e-11 + art_sys_54: 8.64751330e-13 + art_sys_55: -1.01122310e-12 + art_sys_56: -1.06043356e-03 + art_sys_57: 2.63805307e-18 + art_sys_58: -1.11235386e-19 + art_sys_59: 2.85621106e-15 + art_sys_60: 6.91626533e-16 + art_sys_61: 1.15694086e-15 + art_sys_62: 3.25000234e-04 + art_sys_63: -8.36953465e-15 + art_sys_64: -4.71080142e-16 + art_sys_65: -1.91549958e-17 + art_sys_66: -1.44160293e-16 + art_sys_67: -2.41121713e-17 + art_sys_68: -8.54992682e-18 + art_sys_69: 3.56565525e-17 + art_sys_70: 1.33912728e-17 + art_sys_71: 1.15021430e-17 + art_sys_72: -3.52617815e-19 + art_sys_73: 2.97968288e-19 + art_sys_74: 4.72722699e-15 + art_sys_75: -2.32890316e-19 + art_sys_76: 6.60553385e-17 + art_sys_77: -3.41482284e-16 + art_sys_78: 7.79673330e-17 + art_sys_79: 1.60628020e-19 + art_sys_80: -1.31605967e-16 + art_sys_81: 5.94268656e-14 + art_sys_82: -5.74694290e-12 + art_sys_83: -3.79321077e-17 + art_sys_84: -1.95935028e-17 + art_sys_85: 1.59275783e-17 + art_sys_86: 3.22824488e-18 + art_sys_87: -8.68836821e-15 + art_sys_88: -5.65488847e-16 + art_sys_89: -3.87702008e-19 + art_sys_90: -6.10368606e-18 + art_sys_91: -1.37856053e-13 + art_sys_92: 9.88592042e-20 + art_sys_93: -9.60931642e-20 + art_sys_94: -2.28638356e-19 + art_sys_95: -5.38140558e-14 + art_sys_96: -1.64276888e-11 + art_sys_97: -1.10450207e-05 + art_sys_98: -1.17465953e-13 + art_sys_99: -2.79105044e-13 + art_sys_100: 3.06367030e-12 + art_sys_101: 7.00196368e-12 + art_sys_102: -8.05772515e-13 + art_sys_103: 1.48321375e-06 + art_sys_104: -1.83730132e-13 + art_sys_105: 1.01252062e-19 + art_sys_106: 2.25891543e-13 + art_sys_107: -6.10163814e-16 + art_sys_108: -3.77652193e-22 + art_sys_109: 1.39254750e-23 + art_sys_110: 1.98852004e-14 + art_sys_111: -1.36522072e-12 + art_sys_112: -8.95159719e-15 + art_sys_113: -3.96484241e-08 + art_sys_114: 5.74563964e-24 + art_sys_115: 3.19796042e-15 + art_sys_116: -1.93074522e-19 + art_sys_117: -5.15213730e-24 + art_sys_118: -5.82823546e-15 + art_sys_119: -5.71306936e-20 + art_sys_120: 1.00092382e-16 + art_sys_121: 4.18316661e-23 + art_sys_122: 1.33935955e-14 + art_sys_123: 6.87917998e-23 + art_sys_124: -4.27473423e-16 + art_sys_125: -8.18477115e-26 + art_sys_126: 1.44621987e-20 + art_sys_127: -1.10612444e-22 + art_sys_128: 1.08007514e-18 + art_sys_129: -7.73308636e-25 + art_sys_130: 1.81868652e-22 + art_sys_131: 1.24884141e-24 + art_sys_132: 8.57777293e-18 + art_sys_133: -9.51240944e-23 + art_sys_134: -2.38003780e-21 + art_sys_135: -6.88198926e-19 + art_sys_136: -7.70547875e-27 + art_sys_137: -2.32467653e-22 + art_sys_138: 3.68296714e-19 + art_sys_139: 8.01906097e-23 + art_sys_140: -5.08849541e-26 + art_sys_141: -3.42522949e-23 + art_sys_142: -6.80300748e-20 + art_sys_143: 9.56673277e-26 + art_sys_144: -7.59960061e-24 + art_sys_145: -1.28680977e-19 + art_sys_146: -1.78568849e-22 + art_sys_147: 1.57910109e-25 + art_sys_148: 4.16897665e-26 + art_sys_149: 6.63067449e-20 + art_sys_150: 1.99277428e-21 + art_sys_151: -2.34930827e-20 + art_sys_152: -1.02566843e-23 + art_sys_153: -3.50156523e-20 + art_sys_154: 5.36404858e-11 + art_sys_155: -3.50078486e-22 + art_sys_156: 0.0 + art_sys_157: -6.07351271e-19 + art_sys_158: -0.0 + art_sys_159: 1.50117438e-19 + art_sys_160: 1.84530283e-20 + art_sys_161: 3.89877449e-21 + art_sys_162: 3.89877449e-21 + art_sys_163: -5.14729000e-21 + art_sys_164: -5.14729000e-21 + art_sys_165: 4.46135767e-35 + art_sys_166: -1.37357174e-35 + art_sys_167: -0.0 + art_sys_168: 1.39281574e-33 + art_sys_169: -1.28569857e-32 + art_sys_170: 3.57397021e-31 + art_sys_171: -3.03282726e-32 + art_sys_172: -1.14515394e-31 + art_sys_173: -2.20470378e-31 + art_sys_174: -1.93214342e-33 + art_sys_175: -2.52638235e-34 + art_sys_176: -1.12111651e-34 + art_sys_177: 1.87660662e-35 + art_sys_178: 3.88125930e-37 + art_sys_179: 2.96833067e-34 + art_sys_180: 3.03708900e-33 + art_sys_181: 2.06168285e-34 + art_sys_182: 4.45439181e-35 + art_sys_183: -2.07197141e-37 + art_sys_184: -4.63298021e-39 + art_sys_185: -1.14300285e-39 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -69208,189 +69208,189 @@ bins: uncorrelated_uncertainty: 4.24595000e-03 - art_sys_1: -1.80558495e-07 art_sys_2: -1.01152237e-06 - art_sys_3: -8.90297294e-18 - art_sys_4: 1.33751185e-15 - art_sys_5: -1.98771299e-18 + art_sys_3: 7.14168732e-18 + art_sys_4: 2.98374521e-16 + art_sys_5: 8.22764770e-18 art_sys_6: -2.38400528e-06 - art_sys_7: 5.03088029e-16 - art_sys_8: 1.64010533e-16 - art_sys_9: -5.27972784e-16 - art_sys_10: 1.44876992e-06 - art_sys_11: 2.65112152e-16 - art_sys_12: -3.33031212e-16 - art_sys_13: -2.21927531e-05 - art_sys_14: 1.07511149e-17 - art_sys_15: -1.53771517e-17 - art_sys_16: -2.20787333e-16 + art_sys_7: -1.03451966e-16 + art_sys_8: -8.51579387e-18 + art_sys_9: 6.80750680e-17 + art_sys_10: -1.44876992e-06 + art_sys_11: 9.92764718e-17 + art_sys_12: 3.22182208e-17 + art_sys_13: 2.21927531e-05 + art_sys_14: -1.32718963e-16 + art_sys_15: -3.25938305e-17 + art_sys_16: 9.17854664e-16 art_sys_17: -8.01566573e-07 - art_sys_18: 7.57307664e-17 - art_sys_19: 1.54108012e-15 - art_sys_20: 1.12124507e-04 - art_sys_21: 1.00835726e-16 - art_sys_22: 1.66831434e-16 - art_sys_23: 1.20305744e-04 - art_sys_24: -6.49810824e-16 - art_sys_25: 9.11670687e-14 - art_sys_26: 1.64554333e-14 - art_sys_27: 1.41175875e-14 - art_sys_28: 6.89841351e-17 - art_sys_29: 9.96846208e-19 - art_sys_30: 7.09170832e-15 - art_sys_31: -1.13797489e-15 - art_sys_32: -6.74303297e-16 - art_sys_33: 2.59037140e-17 - art_sys_34: -5.11101096e-14 - art_sys_35: -6.88557238e-05 - art_sys_36: 3.04781979e-16 - art_sys_37: 4.00951055e-13 - art_sys_38: -2.76117415e-17 - art_sys_39: -1.05655474e-03 - art_sys_40: 4.61361059e-12 - art_sys_41: -8.48881464e-17 - art_sys_42: 9.24409531e-12 - art_sys_43: 1.26491794e-17 - art_sys_44: 7.44072404e-17 - art_sys_45: 3.87935011e-17 - art_sys_46: -8.31833628e-04 - art_sys_47: 8.37275351e-12 - art_sys_48: 3.60371028e-11 - art_sys_49: 1.83589961e-14 - art_sys_50: -4.13040360e-15 - art_sys_51: 3.18538507e-15 - art_sys_52: -7.52934510e-15 - art_sys_53: -2.28043715e-15 - art_sys_54: -1.02028936e-15 - art_sys_55: 5.49314077e-15 - art_sys_56: 9.50418614e-14 - art_sys_57: 2.13781457e-11 - art_sys_58: -1.27926418e-15 - art_sys_59: 1.98069224e-17 - art_sys_60: 2.95316290e-11 - art_sys_61: 2.59687774e-03 - art_sys_62: -4.95950446e-12 - art_sys_63: 7.80080254e-13 - art_sys_64: 2.36251479e-11 - art_sys_65: -8.53067638e-17 - art_sys_66: -1.34415066e-17 - art_sys_67: -3.23335474e-03 - art_sys_68: 1.22096976e-11 - art_sys_69: -8.70637546e-14 - art_sys_70: -7.86957070e-13 - art_sys_71: -2.70607876e-12 - art_sys_72: -7.52522306e-04 - art_sys_73: 1.09110199e-15 - art_sys_74: -2.51507100e-15 - art_sys_75: -9.25701051e-17 - art_sys_76: -8.89636548e-19 - art_sys_77: -5.33354427e-12 - art_sys_78: -1.96618754e-16 - art_sys_79: -2.51984597e-16 - art_sys_80: 2.42176872e-15 - art_sys_81: 4.37488387e-17 - art_sys_82: -8.34052559e-17 - art_sys_83: 1.30011135e-17 - art_sys_84: 1.10909462e-16 - art_sys_85: -1.51458318e-17 - art_sys_86: -6.01578934e-19 - art_sys_87: -7.96871907e-12 - art_sys_88: 2.37019465e-19 - art_sys_89: 1.66737499e-19 - art_sys_90: 5.77729897e-12 - art_sys_91: 9.30197552e-14 - art_sys_92: 8.87193368e-12 - art_sys_93: 4.44305854e-05 - art_sys_94: -1.28781726e-11 - art_sys_95: 1.47559537e-17 - art_sys_96: 3.58796866e-22 - art_sys_97: -4.83106428e-18 - art_sys_98: -2.19163677e-12 - art_sys_99: -4.42353756e-06 - art_sys_100: -1.32352037e-22 - art_sys_101: -2.43672615e-13 - art_sys_102: -1.52151562e-13 - art_sys_103: -2.37984010e-22 - art_sys_104: -2.35048976e-07 - art_sys_105: -3.11200434e-15 - art_sys_106: -3.06257941e-18 - art_sys_107: 4.46818299e-22 - art_sys_108: -1.03904920e-22 - art_sys_109: -2.37816976e-22 - art_sys_110: -3.73746775e-22 - art_sys_111: 1.69467073e-17 - art_sys_112: 5.40315573e-23 - art_sys_113: 7.88382801e-24 - art_sys_114: -1.49856161e-19 - art_sys_115: -3.32602001e-23 - art_sys_116: -3.25066474e-21 - art_sys_117: 2.28956788e-18 - art_sys_118: 2.90055457e-23 - art_sys_119: -1.38414250e-18 - art_sys_120: 2.17261394e-23 - art_sys_121: 4.28814667e-23 - art_sys_122: -5.84608608e-19 - art_sys_123: -2.12333783e-19 - art_sys_124: -5.90665920e-24 - art_sys_125: 2.91591270e-23 - art_sys_126: -8.95399555e-23 - art_sys_127: 2.64394265e-19 - art_sys_128: -2.21113274e-23 - art_sys_129: 2.32010010e-21 - art_sys_130: -3.53105828e-22 - art_sys_131: 5.40458057e-22 - art_sys_132: -5.57140699e-19 - art_sys_133: -1.84137240e-21 - art_sys_134: -4.79268532e-24 - art_sys_135: -8.05897913e-20 - art_sys_136: 5.88201808e-22 - art_sys_137: 1.08024758e-24 - art_sys_138: 5.15205741e-10 - art_sys_139: 5.36760861e-19 - art_sys_140: 8.16077102e-20 - art_sys_141: 1.00244314e-17 - art_sys_142: -1.25604765e-19 - art_sys_143: 2.00173708e-25 - art_sys_144: -1.16997934e-23 - art_sys_145: 8.92710862e-23 - art_sys_146: -0.0 - art_sys_147: 5.72688220e-21 - art_sys_148: -7.98443906e-20 - art_sys_149: -7.98443906e-20 - art_sys_150: -1.47468935e-20 - art_sys_151: -1.47468935e-20 - art_sys_152: -9.30016893e-20 - art_sys_153: 4.58087882e-21 - art_sys_154: -6.11234637e-24 - art_sys_155: 2.11158311e-32 - art_sys_156: 2.28189240e-37 - art_sys_157: -4.02792017e-37 - art_sys_158: -0.0 - art_sys_159: 4.33592593e-25 - art_sys_160: -1.64461883e-24 - art_sys_161: -4.82431078e-26 - art_sys_162: 1.06216041e-25 - art_sys_163: -1.46659738e-24 - art_sys_164: 1.86976771e-24 - art_sys_165: -7.42105194e-26 - art_sys_166: -3.05857086e-31 - art_sys_167: 1.10195802e-31 - art_sys_168: 1.89033916e-31 - art_sys_169: -5.44738923e-32 - art_sys_170: -3.08461378e-31 - art_sys_171: -1.52048800e-31 - art_sys_172: -1.99088923e-29 - art_sys_173: -3.02227103e-30 - art_sys_174: -4.27389713e-31 - art_sys_175: -5.47738577e-35 - art_sys_176: -2.05647918e-32 - art_sys_177: 1.00443529e-32 - art_sys_178: -4.61164642e-33 - art_sys_179: 4.55157384e-34 - art_sys_180: 3.55393309e-33 - art_sys_181: 4.60928733e-36 - art_sys_182: 4.50387584e-35 - art_sys_183: 1.94861160e-37 - art_sys_184: -9.28161578e-39 - art_sys_185: 1.69400785e-39 + art_sys_18: 3.36450767e-17 + art_sys_19: -9.91017431e-16 + art_sys_20: -1.12124507e-04 + art_sys_21: -3.91560085e-17 + art_sys_22: -1.20305744e-04 + art_sys_23: -2.04366340e-16 + art_sys_24: -3.02483393e-16 + art_sys_25: -1.03098442e-17 + art_sys_26: -1.13217501e-17 + art_sys_27: 5.82053906e-17 + art_sys_28: 6.88557239e-05 + art_sys_29: -2.88488201e-17 + art_sys_30: -4.61087068e-17 + art_sys_31: -1.05655474e-03 + art_sys_32: -1.47156353e-17 + art_sys_33: 2.97479645e-16 + art_sys_34: 2.41199413e-16 + art_sys_35: 8.31833621e-04 + art_sys_36: -1.10871517e-13 + art_sys_37: 2.13109900e-14 + art_sys_38: 5.14120155e-15 + art_sys_39: 2.84477102e-15 + art_sys_40: -1.88944241e-15 + art_sys_41: 2.54407509e-16 + art_sys_42: 6.51760685e-16 + art_sys_43: -5.55113529e-16 + art_sys_44: -3.59845369e-17 + art_sys_45: -3.55098138e-17 + art_sys_46: -5.59890393e-18 + art_sys_47: -3.33851723e-12 + art_sys_48: -1.40348060e-11 + art_sys_49: 1.72612235e-10 + art_sys_50: 1.12045647e-17 + art_sys_51: 1.25541180e-17 + art_sys_52: 2.59687773e-03 + art_sys_53: 7.36453688e-11 + art_sys_54: -2.66973900e-12 + art_sys_55: 3.34097103e-12 + art_sys_56: 3.23335456e-03 + art_sys_57: -5.37058067e-18 + art_sys_58: 2.76804258e-19 + art_sys_59: -4.96891953e-15 + art_sys_60: -2.01850547e-15 + art_sys_61: -4.65436026e-15 + art_sys_62: -7.52522344e-04 + art_sys_63: 1.76674656e-14 + art_sys_64: 1.91406269e-15 + art_sys_65: 5.54847528e-17 + art_sys_66: 6.28162379e-16 + art_sys_67: 6.77376046e-17 + art_sys_68: 2.60519426e-17 + art_sys_69: -1.37029111e-16 + art_sys_70: -5.23375150e-17 + art_sys_71: -4.65048708e-17 + art_sys_72: 1.48493051e-18 + art_sys_73: -1.30166565e-18 + art_sys_74: -1.89801703e-14 + art_sys_75: 9.70158663e-19 + art_sys_76: -3.36525853e-16 + art_sys_77: 1.27607655e-15 + art_sys_78: -3.16650018e-16 + art_sys_79: -5.83717425e-19 + art_sys_80: 5.05399381e-16 + art_sys_81: -2.39056236e-13 + art_sys_82: 2.31179761e-11 + art_sys_83: 1.55889848e-16 + art_sys_84: 6.97801148e-17 + art_sys_85: -6.23527864e-17 + art_sys_86: -1.51288729e-17 + art_sys_87: 2.59583110e-14 + art_sys_88: 3.26281995e-15 + art_sys_89: 6.30504584e-19 + art_sys_90: 2.92452452e-17 + art_sys_91: 5.49751173e-13 + art_sys_92: -3.97112555e-19 + art_sys_93: 3.79575726e-19 + art_sys_94: 1.25944007e-18 + art_sys_95: 2.16680636e-13 + art_sys_96: 6.59003272e-11 + art_sys_97: 4.44307582e-05 + art_sys_98: 3.50495857e-13 + art_sys_99: 8.45662727e-13 + art_sys_100: -9.13799828e-12 + art_sys_101: -2.09431806e-11 + art_sys_102: 4.77913664e-12 + art_sys_103: -4.42397650e-06 + art_sys_104: 5.48207414e-13 + art_sys_105: -3.90413166e-19 + art_sys_106: -1.34767278e-12 + art_sys_107: 3.62015776e-15 + art_sys_108: 1.81423609e-21 + art_sys_109: -8.44093815e-23 + art_sys_110: -7.66227022e-14 + art_sys_111: 8.10130210e-12 + art_sys_112: 3.43991438e-14 + art_sys_113: 2.35157796e-07 + art_sys_114: -2.24834597e-23 + art_sys_115: -1.89196848e-14 + art_sys_116: 7.43934346e-19 + art_sys_117: 3.33360889e-23 + art_sys_118: 2.23987865e-14 + art_sys_119: 2.20191689e-19 + art_sys_120: -3.85702624e-16 + art_sys_121: -2.45320725e-22 + art_sys_122: -5.16075185e-14 + art_sys_123: -4.27662587e-22 + art_sys_124: 1.66835492e-15 + art_sys_125: 1.31309846e-25 + art_sys_126: -4.86682258e-20 + art_sys_127: 6.49756569e-22 + art_sys_128: -9.79813931e-18 + art_sys_129: 3.16466021e-24 + art_sys_130: -1.07718952e-21 + art_sys_131: -8.17669646e-24 + art_sys_132: -3.54252900e-17 + art_sys_133: 5.69910645e-22 + art_sys_134: 9.57225597e-21 + art_sys_135: 3.30601017e-18 + art_sys_136: -3.19162101e-25 + art_sys_137: 1.28735770e-21 + art_sys_138: -1.28271860e-18 + art_sys_139: -4.00396083e-22 + art_sys_140: 1.03100027e-25 + art_sys_141: 3.75612163e-22 + art_sys_142: 5.90023944e-19 + art_sys_143: 3.75364929e-24 + art_sys_144: 3.75997120e-23 + art_sys_145: 5.97229674e-19 + art_sys_146: 8.04946631e-22 + art_sys_147: -7.92736782e-25 + art_sys_148: -1.92786214e-25 + art_sys_149: -2.68262535e-19 + art_sys_150: -8.18100776e-21 + art_sys_151: 9.27585893e-20 + art_sys_152: 4.11283577e-23 + art_sys_153: 1.36648337e-19 + art_sys_154: -2.06684774e-10 + art_sys_155: 1.36104571e-21 + art_sys_156: -0.0 + art_sys_157: 2.33522798e-18 + art_sys_158: 0.0 + art_sys_159: -5.76233485e-19 + art_sys_160: -7.10227133e-20 + art_sys_161: -1.49566059e-20 + art_sys_162: -1.49566059e-20 + art_sys_163: 1.97235016e-20 + art_sys_164: 1.97235016e-20 + art_sys_165: -1.70941637e-34 + art_sys_166: 5.26249016e-35 + art_sys_167: 0.0 + art_sys_168: 7.39776688e-33 + art_sys_169: -9.36122972e-32 + art_sys_170: -2.00203903e-30 + art_sys_171: -1.45761344e-29 + art_sys_172: -4.66325650e-31 + art_sys_173: 3.06464035e-31 + art_sys_174: -1.01213427e-31 + art_sys_175: -6.18450176e-33 + art_sys_176: -3.03522973e-33 + art_sys_177: -9.25523614e-35 + art_sys_178: -4.57144187e-35 + art_sys_179: -1.15023534e-33 + art_sys_180: -1.16545926e-32 + art_sys_181: -9.09744200e-34 + art_sys_182: 1.24164909e-33 + art_sys_183: -6.09380020e-36 + art_sys_184: -1.54552618e-37 + art_sys_185: 5.27719144e-39 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -69499,189 +69499,189 @@ bins: uncorrelated_uncertainty: 1.37002000e-03 - art_sys_1: -1.14437486e-08 art_sys_2: -7.11510434e-08 - art_sys_3: 2.78523016e-19 - art_sys_4: -2.63748823e-17 - art_sys_5: -2.46829195e-19 + art_sys_3: -2.98035957e-19 + art_sys_4: -4.69572143e-18 + art_sys_5: 8.80344213e-20 art_sys_6: -1.31177234e-07 - art_sys_7: -2.22040724e-17 - art_sys_8: -2.45006088e-18 - art_sys_9: 2.02149310e-17 - art_sys_10: -1.05104293e-07 - art_sys_11: -5.33212163e-17 - art_sys_12: -6.31233326e-17 - art_sys_13: -9.34615417e-07 - art_sys_14: 1.79112860e-17 - art_sys_15: 2.07731721e-17 - art_sys_16: -4.52375752e-17 + art_sys_7: -1.23573809e-17 + art_sys_8: -2.77076547e-19 + art_sys_9: 6.64428070e-18 + art_sys_10: 1.05104293e-07 + art_sys_11: -3.65385686e-17 + art_sys_12: -2.43344376e-17 + art_sys_13: 9.34615417e-07 + art_sys_14: -7.27540014e-17 + art_sys_15: -3.68441575e-18 + art_sys_16: -2.33886448e-18 art_sys_17: 6.01308051e-06 - art_sys_18: -7.92506717e-18 - art_sys_19: -3.61607301e-17 - art_sys_20: -4.71207149e-06 - art_sys_21: 6.93881957e-18 - art_sys_22: -1.02579372e-17 - art_sys_23: 2.61029183e-06 - art_sys_24: 9.24492797e-17 - art_sys_25: 3.21888058e-14 - art_sys_26: -2.55592450e-14 - art_sys_27: -7.82381767e-15 - art_sys_28: 5.03994065e-18 - art_sys_29: -9.31654026e-18 - art_sys_30: -5.89154387e-15 - art_sys_31: -9.63214580e-16 - art_sys_32: 6.31927131e-16 - art_sys_33: 2.57991519e-16 - art_sys_34: -4.71382421e-14 - art_sys_35: -6.35230146e-05 - art_sys_36: 1.26111850e-17 - art_sys_37: 3.10130320e-15 - art_sys_38: 2.16760770e-16 - art_sys_39: -8.19415914e-06 - art_sys_40: 3.57884670e-14 - art_sys_41: -2.27484088e-17 - art_sys_42: 2.89695937e-12 - art_sys_43: -1.24378208e-16 - art_sys_44: -9.29436983e-17 - art_sys_45: -2.62339693e-17 - art_sys_46: -2.60686214e-04 - art_sys_47: 3.45877831e-12 - art_sys_48: 2.15724215e-11 - art_sys_49: -7.12635434e-14 - art_sys_50: 2.15262570e-14 - art_sys_51: -1.01425785e-14 - art_sys_52: 3.91191440e-15 - art_sys_53: -1.29572981e-15 - art_sys_54: -4.85456734e-16 - art_sys_55: -5.55717167e-16 - art_sys_56: -9.69039603e-15 - art_sys_57: 1.23414674e-11 - art_sys_58: 2.17057143e-16 - art_sys_59: -4.38367224e-17 - art_sys_60: -2.24379163e-11 - art_sys_61: -2.64813314e-04 - art_sys_62: 2.18525952e-12 - art_sys_63: 1.83618589e-13 - art_sys_64: 2.05761512e-11 - art_sys_65: 1.64906340e-17 - art_sys_66: -5.72665838e-17 - art_sys_67: -1.96067467e-03 - art_sys_68: -1.97011744e-11 - art_sys_69: 2.14879527e-13 - art_sys_70: 1.25633534e-12 - art_sys_71: 5.12422048e-12 - art_sys_72: 1.43692671e-03 - art_sys_73: -1.87017164e-15 - art_sys_74: 3.94714920e-15 - art_sys_75: 1.93882070e-16 - art_sys_76: 1.30483459e-18 - art_sys_77: 8.61021273e-12 - art_sys_78: 2.22735550e-15 - art_sys_79: 4.07562457e-16 - art_sys_80: -9.35650154e-15 - art_sys_81: -9.44535856e-17 - art_sys_82: 1.46941727e-16 - art_sys_83: 4.43187687e-18 - art_sys_84: -1.94681411e-16 - art_sys_85: 2.33607122e-17 - art_sys_86: 1.01235542e-18 - art_sys_87: 1.63790492e-11 - art_sys_88: -4.24851790e-19 - art_sys_89: -2.16884456e-19 - art_sys_90: -9.46597669e-12 - art_sys_91: -2.54321842e-13 - art_sys_92: -2.24552844e-11 - art_sys_93: -7.17176571e-05 - art_sys_94: 3.15445669e-11 - art_sys_95: -4.05332143e-17 - art_sys_96: -1.53792557e-21 - art_sys_97: 1.36142227e-17 - art_sys_98: 3.10485317e-12 - art_sys_99: 1.10459316e-05 - art_sys_100: -7.84672428e-22 - art_sys_101: 6.83131729e-13 - art_sys_102: 4.30521562e-13 - art_sys_103: 5.66260394e-22 - art_sys_104: 2.61663061e-07 - art_sys_105: 8.79227539e-15 - art_sys_106: 8.65659800e-18 - art_sys_107: -5.19577607e-22 - art_sys_108: 3.57899054e-23 - art_sys_109: 2.70479252e-22 - art_sys_110: 6.74335041e-22 - art_sys_111: -4.51408211e-17 - art_sys_112: 1.38744655e-23 - art_sys_113: -2.38829533e-23 - art_sys_114: -4.82722092e-18 - art_sys_115: 3.62416354e-23 - art_sys_116: 7.02203685e-21 - art_sys_117: -2.30821583e-18 - art_sys_118: -6.84002410e-23 - art_sys_119: 1.34286544e-18 - art_sys_120: -2.64444832e-22 - art_sys_121: -9.53829145e-23 - art_sys_122: 4.74295614e-19 - art_sys_123: 1.10123002e-19 - art_sys_124: 1.20990505e-23 - art_sys_125: -1.16254117e-22 - art_sys_126: 2.25200059e-22 - art_sys_127: -5.57509897e-19 - art_sys_128: 5.80347786e-23 - art_sys_129: -7.82309095e-20 - art_sys_130: 9.60441863e-22 - art_sys_131: -1.51489710e-21 - art_sys_132: 1.57236619e-18 - art_sys_133: 5.19441847e-21 - art_sys_134: 1.34262594e-23 - art_sys_135: 2.28620254e-19 - art_sys_136: -1.62790530e-21 - art_sys_137: -3.03012652e-24 - art_sys_138: -1.44494771e-09 - art_sys_139: -1.50649156e-18 - art_sys_140: -2.29063059e-19 - art_sys_141: -2.81146701e-17 - art_sys_142: 3.52490422e-19 - art_sys_143: -5.59156034e-25 - art_sys_144: 3.28027118e-23 - art_sys_145: -2.50542108e-22 - art_sys_146: 0.0 - art_sys_147: -1.60823921e-20 - art_sys_148: 2.24209993e-19 - art_sys_149: 2.24209993e-19 - art_sys_150: 4.13643989e-20 - art_sys_151: 4.13643989e-20 - art_sys_152: 2.60645315e-19 - art_sys_153: -1.28262393e-20 - art_sys_154: 1.71515114e-23 - art_sys_155: -5.91579315e-32 - art_sys_156: -6.41395687e-37 - art_sys_157: 1.13058761e-36 - art_sys_158: 0.0 - art_sys_159: -8.80830824e-25 - art_sys_160: 1.82598325e-24 - art_sys_161: 1.11865858e-25 - art_sys_162: 1.88493813e-26 - art_sys_163: 3.63236627e-24 - art_sys_164: -4.60387255e-24 - art_sys_165: 1.00532298e-25 - art_sys_166: 3.07212744e-31 - art_sys_167: -1.39952629e-31 - art_sys_168: -2.80209412e-31 - art_sys_169: 1.30105298e-31 - art_sys_170: 1.81199642e-31 - art_sys_171: 8.42430511e-32 - art_sys_172: 1.24747292e-29 - art_sys_173: 2.26674727e-30 - art_sys_174: 3.51531114e-31 - art_sys_175: 1.53743674e-34 - art_sys_176: 3.36480846e-32 - art_sys_177: -8.38783767e-33 - art_sys_178: 3.73230835e-33 - art_sys_179: -3.55877542e-34 - art_sys_180: -1.89573854e-33 - art_sys_181: -5.12775905e-36 - art_sys_182: -1.85219596e-35 - art_sys_183: -1.72474961e-37 - art_sys_184: 2.15100168e-38 - art_sys_185: -4.44669828e-39 + art_sys_18: -4.42413977e-19 + art_sys_19: 9.79391421e-17 + art_sys_20: 4.71207149e-06 + art_sys_21: 4.86784745e-17 + art_sys_22: -2.61029182e-06 + art_sys_23: 8.28008663e-18 + art_sys_24: -2.19045549e-17 + art_sys_25: -2.81815580e-17 + art_sys_26: 5.45256256e-17 + art_sys_27: -2.15490718e-17 + art_sys_28: 6.35230146e-05 + art_sys_29: -4.79495534e-17 + art_sys_30: 4.45104171e-17 + art_sys_31: -8.19415913e-06 + art_sys_32: -8.49945221e-18 + art_sys_33: 2.67030348e-17 + art_sys_34: -2.82737035e-17 + art_sys_35: 2.60686214e-04 + art_sys_36: -1.62391301e-14 + art_sys_37: 9.42208947e-15 + art_sys_38: 6.28898102e-15 + art_sys_39: 5.37095741e-15 + art_sys_40: -1.68594678e-15 + art_sys_41: -1.36412306e-17 + art_sys_42: 1.66168558e-15 + art_sys_43: 1.24184804e-16 + art_sys_44: 1.64208908e-16 + art_sys_45: -1.25421674e-18 + art_sys_46: -2.03980088e-17 + art_sys_47: 5.08104716e-13 + art_sys_48: -6.13956589e-12 + art_sys_49: 1.01942750e-10 + art_sys_50: 5.72671525e-18 + art_sys_51: 6.13868926e-18 + art_sys_52: -2.64813314e-04 + art_sys_53: -1.56203316e-10 + art_sys_54: 4.74981519e-12 + art_sys_55: -5.78575931e-12 + art_sys_56: 1.96067454e-03 + art_sys_57: 9.49837107e-18 + art_sys_58: -5.15563114e-19 + art_sys_59: 8.23669469e-15 + art_sys_60: 2.13868895e-15 + art_sys_61: 7.51267130e-15 + art_sys_62: 1.43692669e-03 + art_sys_63: -3.47920823e-14 + art_sys_64: -3.03119414e-15 + art_sys_65: -1.36180056e-16 + art_sys_66: -8.89111038e-16 + art_sys_67: -1.82239183e-16 + art_sys_68: -6.32596865e-17 + art_sys_69: 2.41436507e-16 + art_sys_70: 8.86721503e-17 + art_sys_71: 7.47781124e-17 + art_sys_72: -2.25635366e-18 + art_sys_73: 1.84387338e-18 + art_sys_74: 3.07279746e-14 + art_sys_75: -1.47106445e-18 + art_sys_76: 3.35488223e-16 + art_sys_77: -2.30286115e-15 + art_sys_78: 4.65343705e-16 + art_sys_79: 8.72992199e-19 + art_sys_80: -8.74887634e-16 + art_sys_81: 3.85872089e-13 + art_sys_82: -3.73159497e-11 + art_sys_83: -2.44151671e-16 + art_sys_84: -1.34829624e-16 + art_sys_85: 1.08446928e-16 + art_sys_86: 1.88957859e-17 + art_sys_87: -6.46892760e-14 + art_sys_88: -2.72162613e-15 + art_sys_89: -3.28836864e-18 + art_sys_90: -1.15545073e-16 + art_sys_91: -8.90070551e-13 + art_sys_92: 6.35920817e-19 + art_sys_93: -6.36083556e-19 + art_sys_94: -1.54643718e-18 + art_sys_95: -3.50653688e-13 + art_sys_96: -1.06834932e-10 + art_sys_97: -7.17178252e-05 + art_sys_98: -8.75368003e-13 + art_sys_99: -2.06812077e-12 + art_sys_100: 2.28175836e-11 + art_sys_101: 5.21332010e-11 + art_sys_102: -5.32060861e-12 + art_sys_103: 1.10466661e-05 + art_sys_104: -1.36981592e-12 + art_sys_105: 1.09279047e-18 + art_sys_106: 1.47541212e-12 + art_sys_107: -4.02634924e-15 + art_sys_108: -3.41149709e-21 + art_sys_109: 8.84618823e-23 + art_sys_110: 2.14704512e-13 + art_sys_111: -9.00676484e-12 + art_sys_112: -9.68415789e-14 + art_sys_113: -2.61803601e-07 + art_sys_114: 6.19400664e-23 + art_sys_115: 2.15235035e-14 + art_sys_116: -2.08516600e-18 + art_sys_117: -2.81033131e-23 + art_sys_118: -6.32687749e-14 + art_sys_119: -6.17040741e-19 + art_sys_120: 1.08069049e-15 + art_sys_121: 2.83422098e-22 + art_sys_122: 1.44751054e-13 + art_sys_123: 4.48463109e-22 + art_sys_124: -4.64061760e-15 + art_sys_125: 2.07096905e-24 + art_sys_126: 1.72788407e-19 + art_sys_127: -7.56429879e-22 + art_sys_128: 2.95194834e-17 + art_sys_129: -6.28329873e-24 + art_sys_130: 1.26414109e-21 + art_sys_131: 7.03982245e-24 + art_sys_132: 9.91921307e-17 + art_sys_133: -6.75286319e-22 + art_sys_134: -2.44278886e-20 + art_sys_135: -1.03137889e-17 + art_sys_136: -1.14536890e-24 + art_sys_137: -1.75004560e-21 + art_sys_138: 2.93359004e-18 + art_sys_139: 6.48816014e-22 + art_sys_140: -7.64981273e-25 + art_sys_141: 1.33102018e-22 + art_sys_142: -4.29301264e-19 + art_sys_143: -6.67347918e-25 + art_sys_144: -6.62124130e-23 + art_sys_145: -1.26915193e-18 + art_sys_146: -1.69673514e-21 + art_sys_147: 1.30148850e-24 + art_sys_148: 3.49818725e-25 + art_sys_149: 7.11545618e-19 + art_sys_150: 1.99544885e-20 + art_sys_151: -2.49342097e-19 + art_sys_152: -1.07065211e-22 + art_sys_153: -3.74825830e-19 + art_sys_154: 5.79183545e-10 + art_sys_155: -3.75557891e-21 + art_sys_156: 0.0 + art_sys_157: -6.57191019e-18 + art_sys_158: -0.0 + art_sys_159: 1.62512478e-18 + art_sys_160: 1.99292053e-19 + art_sys_161: 4.22199700e-20 + art_sys_162: 4.22199700e-20 + art_sys_163: -5.57968347e-20 + art_sys_164: -5.57968347e-20 + art_sys_165: 4.83645221e-34 + art_sys_166: -1.48917185e-34 + art_sys_167: -0.0 + art_sys_168: 7.38530693e-32 + art_sys_169: -5.32800126e-32 + art_sys_170: 1.79644602e-30 + art_sys_171: 7.51265946e-30 + art_sys_172: -4.81322408e-31 + art_sys_173: -9.21266276e-31 + art_sys_174: 8.55421520e-32 + art_sys_175: -4.19270339e-33 + art_sys_176: 1.55621597e-33 + art_sys_177: 1.04627343e-34 + art_sys_178: 2.54778767e-35 + art_sys_179: 3.19201120e-33 + art_sys_180: 3.28857611e-32 + art_sys_181: 1.16539783e-33 + art_sys_182: -5.15700899e-34 + art_sys_183: 8.15742180e-36 + art_sys_184: 7.16975925e-38 + art_sys_185: -9.25596693e-39 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -69788,191 +69788,191 @@ bins: RelativeStatFSR-: -4.18023993e-04 luminosity_uncertainty: 9.98088000e-04 uncorrelated_uncertainty: 3.83880000e-04 -- art_sys_1: -1.21197664e-10 +- art_sys_1: -1.21197665e-10 art_sys_2: -3.70634710e-09 - art_sys_3: 1.44135016e-19 - art_sys_4: -4.19599977e-17 - art_sys_5: -7.16362490e-21 + art_sys_3: -1.38368382e-19 + art_sys_4: -1.42445141e-17 + art_sys_5: -1.19991098e-19 art_sys_6: -3.76985478e-09 - art_sys_7: -1.38235540e-17 - art_sys_8: -3.31494071e-18 - art_sys_9: 1.40118924e-17 - art_sys_10: -2.19379115e-08 - art_sys_11: 3.83900774e-18 - art_sys_12: 4.98672512e-18 - art_sys_13: 1.45216643e-07 - art_sys_14: -1.00244226e-18 - art_sys_15: 4.03238143e-19 - art_sys_16: 5.70189991e-18 + art_sys_7: 1.88125345e-18 + art_sys_8: 2.76989995e-20 + art_sys_9: -5.10038183e-19 + art_sys_10: 2.19379115e-08 + art_sys_11: -5.20059402e-18 + art_sys_12: -5.57406338e-19 + art_sys_13: -1.45216643e-07 + art_sys_14: 1.57617925e-18 + art_sys_15: 7.68637711e-19 + art_sys_16: -1.86589614e-17 art_sys_17: 7.10687258e-07 - art_sys_18: -1.81785066e-18 - art_sys_19: -3.20585818e-17 - art_sys_20: -2.05993403e-06 - art_sys_21: -3.59754782e-18 - art_sys_22: -6.10088477e-18 - art_sys_23: -1.65259419e-06 - art_sys_24: 2.47346086e-17 - art_sys_25: -2.60588783e-15 - art_sys_26: -3.96182314e-14 - art_sys_27: -1.40764379e-14 - art_sys_28: -2.40684333e-18 - art_sys_29: 4.27150885e-19 - art_sys_30: -1.61569315e-15 - art_sys_31: -2.26769675e-15 - art_sys_32: -5.02036503e-16 - art_sys_33: 6.02344392e-17 - art_sys_34: -2.28413718e-15 - art_sys_35: -3.07516679e-06 - art_sys_36: -1.82887226e-18 - art_sys_37: -9.24772871e-15 - art_sys_38: 3.82615120e-16 - art_sys_39: 2.43932691e-05 - art_sys_40: -1.06542123e-13 - art_sys_41: 1.76054221e-17 - art_sys_42: -1.31037971e-13 - art_sys_43: 2.37195030e-17 - art_sys_44: -3.52402003e-17 - art_sys_45: -1.89814665e-19 - art_sys_46: 1.17912182e-05 - art_sys_47: -1.48847591e-13 - art_sys_48: -3.33493377e-13 - art_sys_49: 1.40075553e-15 - art_sys_50: 1.51588153e-14 - art_sys_51: -8.11269053e-15 - art_sys_52: 2.93698812e-15 - art_sys_53: 1.38199571e-15 - art_sys_54: -6.10897253e-16 - art_sys_55: -2.10453888e-16 - art_sys_56: -3.95734126e-15 - art_sys_57: -2.29177820e-13 - art_sys_58: -4.05612000e-16 - art_sys_59: 2.89504712e-17 - art_sys_60: 2.35681361e-10 - art_sys_61: -1.07527794e-04 - art_sys_62: -3.23498969e-11 - art_sys_63: -4.95295814e-14 - art_sys_64: -2.57927816e-11 - art_sys_65: -4.24093693e-17 - art_sys_66: -5.38195565e-17 - art_sys_67: 2.87636913e-05 - art_sys_68: 1.37279742e-10 - art_sys_69: -6.85572734e-13 - art_sys_70: -8.98163062e-12 - art_sys_71: -4.76614402e-13 - art_sys_72: 2.85323591e-04 - art_sys_73: 1.34623413e-14 - art_sys_74: -2.94085257e-14 - art_sys_75: -7.94371816e-16 - art_sys_76: -1.03443406e-17 - art_sys_77: -5.99084843e-11 - art_sys_78: 9.98557935e-15 - art_sys_79: -2.98900055e-15 - art_sys_80: 3.56557603e-14 - art_sys_81: 4.51266624e-16 - art_sys_82: -8.98616478e-16 - art_sys_83: 8.50901947e-16 - art_sys_84: 1.16946004e-15 - art_sys_85: -1.79863431e-16 - art_sys_86: -6.71416618e-18 - art_sys_87: -7.49093918e-11 - art_sys_88: 2.44373818e-18 - art_sys_89: 2.12850595e-18 - art_sys_90: 6.43597756e-11 - art_sys_91: 1.33935810e-12 - art_sys_92: 6.47442161e-11 - art_sys_93: 4.99446961e-04 - art_sys_94: -1.05711265e-10 - art_sys_95: 2.10330913e-16 - art_sys_96: -1.10817298e-20 - art_sys_97: -6.73486837e-17 - art_sys_98: -5.32274853e-11 - art_sys_99: -3.34340366e-05 - art_sys_100: -5.27817503e-21 - art_sys_101: -3.40623079e-12 - art_sys_102: -2.08293094e-12 - art_sys_103: -5.89692702e-21 - art_sys_104: -6.23138637e-06 - art_sys_105: -4.25615171e-14 - art_sys_106: -4.19746598e-17 - art_sys_107: 1.16701048e-20 - art_sys_108: -3.27724272e-21 - art_sys_109: -6.32543719e-21 - art_sys_110: -9.75302403e-21 - art_sys_111: 1.71669530e-16 - art_sys_112: 1.62025048e-21 - art_sys_113: 1.01118109e-22 - art_sys_114: 6.29764028e-17 - art_sys_115: -7.39477885e-22 - art_sys_116: -6.67673291e-20 - art_sys_117: -5.56368888e-18 - art_sys_118: 8.40332450e-22 - art_sys_119: 8.22659526e-19 - art_sys_120: 9.76240914e-23 - art_sys_121: 5.95200776e-22 - art_sys_122: 7.21023032e-19 - art_sys_123: 6.37085741e-19 - art_sys_124: -7.97353526e-23 - art_sys_125: 1.03331014e-21 - art_sys_126: -1.22468701e-21 - art_sys_127: 2.33938964e-18 - art_sys_128: -3.16504816e-22 - art_sys_129: 4.73121767e-19 - art_sys_130: -4.87396178e-21 - art_sys_131: 7.61358545e-21 - art_sys_132: -7.86559286e-18 - art_sys_133: -2.58904809e-20 - art_sys_134: -6.70350008e-23 - art_sys_135: -1.10716263e-18 - art_sys_136: 8.07235825e-21 - art_sys_137: 1.49733900e-23 - art_sys_138: 7.14751048e-09 - art_sys_139: 7.44833050e-18 - art_sys_140: 1.13244885e-18 - art_sys_141: 1.39070340e-16 - art_sys_142: -1.74288688e-18 - art_sys_143: 2.78835342e-24 - art_sys_144: -1.62293262e-22 - art_sys_145: 1.23875407e-21 - art_sys_146: -0.0 - art_sys_147: 7.94868608e-20 - art_sys_148: -1.10817475e-18 - art_sys_149: -1.10817475e-18 - art_sys_150: -2.04563372e-19 - art_sys_151: -2.04563372e-19 - art_sys_152: -1.28949287e-18 - art_sys_153: 6.34851120e-20 - art_sys_154: -8.48022280e-23 - art_sys_155: 2.92723677e-31 - art_sys_156: 3.16881653e-36 - art_sys_157: -5.58408872e-36 - art_sys_158: -0.0 - art_sys_159: 4.63124533e-24 - art_sys_160: -4.20036017e-23 - art_sys_161: -4.73514312e-25 - art_sys_162: 3.87501614e-24 - art_sys_163: -1.93977458e-23 - art_sys_164: 2.66108137e-23 - art_sys_165: -1.58902176e-24 - art_sys_166: -6.19784841e-30 - art_sys_167: 1.74329754e-30 - art_sys_168: 2.44693478e-30 - art_sys_169: 3.64523222e-31 - art_sys_170: -6.89863524e-30 - art_sys_171: -3.55861410e-30 - art_sys_172: -4.81113665e-28 - art_sys_173: -6.52189832e-29 - art_sys_174: -8.45175552e-30 - art_sys_175: -7.60089937e-34 - art_sys_176: -3.54829043e-31 - art_sys_177: 2.63884485e-31 - art_sys_178: -1.11247826e-31 - art_sys_179: 1.07682143e-32 - art_sys_180: 9.40825069e-32 - art_sys_181: 1.02160067e-34 - art_sys_182: 1.28314270e-33 - art_sys_183: 4.43271828e-36 - art_sys_184: -1.39368422e-37 - art_sys_185: 2.38514208e-38 + art_sys_18: -5.60042488e-19 + art_sys_19: 5.39597680e-17 + art_sys_20: 2.05993403e-06 + art_sys_21: 2.62561051e-18 + art_sys_22: 1.65259419e-06 + art_sys_23: 8.65486995e-18 + art_sys_24: 1.02387725e-17 + art_sys_25: 1.12576341e-18 + art_sys_26: -6.16346622e-18 + art_sys_27: -5.34603459e-18 + art_sys_28: 3.07516679e-06 + art_sys_29: 3.29555975e-17 + art_sys_30: -1.48058011e-17 + art_sys_31: 2.43932692e-05 + art_sys_32: 2.18935332e-18 + art_sys_33: -1.02980922e-17 + art_sys_34: -1.05214595e-17 + art_sys_35: -1.17912182e-05 + art_sys_36: -1.21237084e-13 + art_sys_37: 2.67849072e-14 + art_sys_38: 3.10062176e-15 + art_sys_39: 4.65568565e-15 + art_sys_40: 2.41110920e-15 + art_sys_41: 1.03723054e-15 + art_sys_42: -5.23987895e-16 + art_sys_43: -5.49503023e-16 + art_sys_44: -1.25734037e-16 + art_sys_45: -3.09778293e-17 + art_sys_46: -4.68714603e-18 + art_sys_47: 1.45934990e-13 + art_sys_48: 2.33728796e-13 + art_sys_49: -1.60605245e-12 + art_sys_50: -8.93920164e-18 + art_sys_51: -1.54260013e-17 + art_sys_52: -1.07527794e-04 + art_sys_53: -2.29460638e-11 + art_sys_54: -1.75699003e-11 + art_sys_55: 2.51635061e-11 + art_sys_56: -2.87636931e-05 + art_sys_57: 2.98856543e-18 + art_sys_58: 3.84092309e-19 + art_sys_59: 2.77699320e-14 + art_sys_60: -2.01578275e-14 + art_sys_61: -5.23254351e-14 + art_sys_62: 2.85323325e-04 + art_sys_63: -5.30495795e-14 + art_sys_64: 2.24583310e-14 + art_sys_65: -2.13910943e-16 + art_sys_66: 7.58468040e-15 + art_sys_67: 4.55607056e-16 + art_sys_68: 2.18654221e-16 + art_sys_69: -1.47304465e-15 + art_sys_70: -5.78967461e-16 + art_sys_71: -5.38240000e-16 + art_sys_72: 1.81225873e-17 + art_sys_73: -1.60092224e-17 + art_sys_74: -2.12976953e-13 + art_sys_75: 1.10105912e-17 + art_sys_76: -2.89901960e-15 + art_sys_77: 1.31298695e-14 + art_sys_78: -3.34288125e-15 + art_sys_79: -6.47439287e-18 + art_sys_80: 5.40538796e-15 + art_sys_81: -2.68724849e-12 + art_sys_82: 2.59867119e-10 + art_sys_83: 1.76634510e-15 + art_sys_84: 6.66459696e-16 + art_sys_85: -6.70357439e-16 + art_sys_86: -1.90942682e-16 + art_sys_87: 1.97590097e-13 + art_sys_88: 8.72935273e-14 + art_sys_89: -4.97160119e-18 + art_sys_90: 4.62246744e-16 + art_sys_91: 6.10040267e-12 + art_sys_92: -4.38995075e-18 + art_sys_93: 4.47643069e-18 + art_sys_94: 3.28175250e-17 + art_sys_95: 2.44191824e-12 + art_sys_96: 7.38853301e-10 + art_sys_97: 4.99449323e-04 + art_sys_98: 2.65287381e-12 + art_sys_99: 6.62619756e-12 + art_sys_100: -6.90698826e-11 + art_sys_101: -1.60522616e-10 + art_sys_102: 1.26678829e-10 + art_sys_103: -3.34387796e-05 + art_sys_104: 4.14865144e-12 + art_sys_105: -5.42516018e-18 + art_sys_106: -3.59082114e-11 + art_sys_107: 9.59868189e-14 + art_sys_108: 3.69214037e-20 + art_sys_109: -2.25728918e-21 + art_sys_110: -1.06285929e-12 + art_sys_111: 2.14831019e-10 + art_sys_112: 4.73785049e-13 + art_sys_113: 6.23320193e-06 + art_sys_114: -3.15529748e-22 + art_sys_115: -4.98824952e-13 + art_sys_116: 1.03160434e-17 + art_sys_117: 9.55341524e-22 + art_sys_118: 3.07458577e-13 + art_sys_119: 3.05421867e-18 + art_sys_120: -5.35099084e-15 + art_sys_121: -6.42509500e-21 + art_sys_122: -7.15133714e-13 + art_sys_123: -1.13077927e-20 + art_sys_124: 2.35604280e-14 + art_sys_125: -6.08091509e-24 + art_sys_126: -4.22569169e-19 + art_sys_127: 1.70745004e-20 + art_sys_128: -1.91975919e-16 + art_sys_129: 5.98357973e-23 + art_sys_130: -2.83755200e-20 + art_sys_131: -2.33953803e-22 + art_sys_132: -5.18533266e-16 + art_sys_133: 1.51568701e-20 + art_sys_134: 1.46832283e-19 + art_sys_135: 4.79370440e-17 + art_sys_136: -2.07409435e-23 + art_sys_137: 3.19668710e-20 + art_sys_138: -1.85348532e-17 + art_sys_139: -8.94208523e-21 + art_sys_140: -2.62664525e-24 + art_sys_141: 1.37984309e-20 + art_sys_142: 1.74611467e-17 + art_sys_143: 1.52652180e-22 + art_sys_144: 8.01600261e-22 + art_sys_145: 1.15869858e-17 + art_sys_146: 1.54035392e-20 + art_sys_147: -1.78295574e-23 + art_sys_148: -3.61850662e-24 + art_sys_149: -4.21046053e-18 + art_sys_150: -1.30786720e-19 + art_sys_151: 1.36724706e-18 + art_sys_152: 6.27691942e-22 + art_sys_153: 1.95789469e-18 + art_sys_154: -2.86679235e-09 + art_sys_155: 1.93132826e-20 + art_sys_156: -0.0 + art_sys_157: 3.22325066e-17 + art_sys_158: 0.0 + art_sys_159: -7.91351415e-18 + art_sys_160: -9.81692566e-19 + art_sys_161: -2.05034680e-19 + art_sys_162: -2.05034680e-19 + art_sys_163: 2.69654521e-19 + art_sys_164: 2.69654521e-19 + art_sys_165: -2.33682236e-33 + art_sys_166: 7.19231480e-34 + art_sys_167: 0.0 + art_sys_168: -2.87685806e-31 + art_sys_169: -7.28436925e-31 + art_sys_170: -3.42096293e-29 + art_sys_171: -3.44708599e-28 + art_sys_172: -1.83867346e-29 + art_sys_173: -5.63219108e-30 + art_sys_174: -2.44867477e-30 + art_sys_175: -2.52929671e-31 + art_sys_176: -7.05763360e-32 + art_sys_177: -2.40676518e-33 + art_sys_178: -1.02843743e-33 + art_sys_179: -1.61866390e-32 + art_sys_180: -1.59933610e-31 + art_sys_181: -2.48518826e-32 + art_sys_182: 2.64884200e-32 + art_sys_183: -6.42549922e-35 + art_sys_184: -4.34882503e-36 + art_sys_185: 1.16408908e-37 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -70081,189 +70081,189 @@ bins: uncorrelated_uncertainty: 9.49764000e-05 - art_sys_1: 3.93966562e-12 art_sys_2: -5.64966324e-11 - art_sys_3: 3.34203321e-21 - art_sys_4: -7.49029458e-19 - art_sys_5: 1.57614048e-22 + art_sys_3: -2.35759930e-21 + art_sys_4: -6.88868660e-20 + art_sys_5: -3.96060819e-21 art_sys_6: -4.30105634e-11 - art_sys_7: -1.36784314e-19 - art_sys_8: -5.03819857e-20 - art_sys_9: 1.66075197e-19 - art_sys_10: -4.28375850e-10 - art_sys_11: 2.51971747e-19 - art_sys_12: 4.95381216e-19 - art_sys_13: 5.11683897e-09 - art_sys_14: -1.06642172e-19 - art_sys_15: -1.29541186e-19 - art_sys_16: 2.07711805e-19 + art_sys_7: 6.07254272e-20 + art_sys_8: 4.48270191e-21 + art_sys_9: -4.15042193e-20 + art_sys_10: 4.28375850e-10 + art_sys_11: 3.77937110e-20 + art_sys_12: 3.14718298e-20 + art_sys_13: -5.11683897e-09 + art_sys_14: 3.56956522e-19 + art_sys_15: -3.01178978e-20 + art_sys_16: 2.39807104e-19 art_sys_17: 1.23776635e-08 - art_sys_18: 8.65997782e-21 - art_sys_19: 3.77282065e-19 - art_sys_20: -5.19337863e-08 - art_sys_21: 2.46681597e-20 - art_sys_22: 1.03911308e-19 - art_sys_23: -4.87884913e-08 - art_sys_24: -6.93174009e-19 - art_sys_25: -1.76208391e-14 - art_sys_26: -1.19465151e-14 - art_sys_27: -1.79338662e-14 - art_sys_28: -6.82563205e-20 - art_sys_29: -3.83096580e-20 - art_sys_30: -5.23584779e-16 - art_sys_31: 9.35625915e-16 - art_sys_32: -6.97987779e-16 - art_sys_33: -1.68324846e-16 - art_sys_34: 9.17301116e-17 - art_sys_35: 1.23615030e-07 - art_sys_36: -1.46832044e-18 - art_sys_37: -1.95778709e-16 - art_sys_38: -1.68467355e-17 - art_sys_39: 5.12685923e-07 - art_sys_40: -2.23557872e-15 - art_sys_41: -1.81730812e-18 - art_sys_42: -1.68458308e-14 - art_sys_43: -8.73527827e-17 - art_sys_44: -5.14521769e-17 - art_sys_45: 3.78586879e-17 - art_sys_46: 1.51594855e-06 - art_sys_47: -4.56053053e-14 - art_sys_48: -2.68319141e-13 - art_sys_49: -5.48349520e-15 - art_sys_50: 2.09500342e-14 - art_sys_51: -6.13676088e-17 - art_sys_52: 6.56496551e-16 - art_sys_53: 9.19259357e-18 - art_sys_54: 8.05076581e-16 - art_sys_55: 8.73178997e-18 - art_sys_56: 4.75035220e-18 - art_sys_57: -1.58049060e-13 - art_sys_58: -1.76965745e-16 - art_sys_59: -2.92208377e-16 - art_sys_60: 2.79903221e-11 - art_sys_61: 2.95619144e-07 - art_sys_62: -1.03695362e-10 - art_sys_63: 7.93261546e-16 - art_sys_64: -2.34710629e-11 - art_sys_65: 2.04426159e-17 - art_sys_66: -4.91724730e-17 - art_sys_67: 2.43443201e-05 - art_sys_68: 1.80420271e-11 - art_sys_69: 5.16245769e-12 - art_sys_70: -3.13481901e-12 - art_sys_71: -8.14435955e-13 - art_sys_72: -3.79314665e-05 - art_sys_73: -7.49436982e-15 - art_sys_74: -1.18602578e-14 - art_sys_75: 3.05513412e-15 - art_sys_76: -1.09386373e-17 - art_sys_77: -7.66197588e-12 - art_sys_78: 2.46569630e-13 - art_sys_79: -2.03045086e-16 - art_sys_80: -8.07056889e-13 - art_sys_81: -1.65205393e-15 - art_sys_82: 7.45833789e-16 - art_sys_83: 1.44900605e-15 - art_sys_84: -9.52598436e-16 - art_sys_85: -9.78236897e-17 - art_sys_86: 2.16701222e-18 - art_sys_87: 2.38140930e-10 - art_sys_88: -2.62886815e-18 - art_sys_89: 3.92098559e-18 - art_sys_90: -1.65668967e-12 - art_sys_91: -1.63937989e-11 - art_sys_92: -5.63990797e-10 - art_sys_93: 6.38187052e-05 - art_sys_94: 7.48036009e-10 - art_sys_95: -2.61884116e-15 - art_sys_96: -7.50805988e-20 - art_sys_97: 9.04389314e-16 - art_sys_98: 2.17888503e-11 - art_sys_99: 2.70868328e-04 - art_sys_100: -1.18600300e-19 - art_sys_101: 4.52285123e-11 - art_sys_102: 2.86123859e-11 - art_sys_103: 2.54893775e-20 - art_sys_104: -6.75976010e-06 - art_sys_105: 5.83868825e-13 - art_sys_106: 5.74870657e-16 - art_sys_107: 1.00387258e-20 - art_sys_108: -1.31825378e-20 - art_sys_109: -5.82845377e-21 - art_sys_110: 2.18787925e-21 - art_sys_111: -2.90300142e-15 - art_sys_112: 3.13017315e-21 - art_sys_113: -1.61508951e-21 - art_sys_114: -5.21770171e-16 - art_sys_115: 9.41684527e-22 - art_sys_116: 3.53953784e-19 - art_sys_117: 2.76682087e-17 - art_sys_118: -4.34137888e-21 - art_sys_119: -2.81469622e-17 - art_sys_120: -2.65617909e-20 - art_sys_121: -4.15953538e-21 - art_sys_122: -2.17147280e-17 - art_sys_123: -1.52451776e-17 - art_sys_124: 5.19877224e-22 - art_sys_125: -9.89393167e-21 - art_sys_126: 1.23692092e-20 - art_sys_127: -2.83042659e-17 - art_sys_128: 3.32599996e-21 - art_sys_129: -9.47829699e-18 - art_sys_130: 6.02736923e-20 - art_sys_131: -9.90357838e-20 - art_sys_132: 1.03664406e-16 - art_sys_133: 3.43200819e-19 - art_sys_134: 8.79359120e-22 - art_sys_135: 1.55316373e-17 - art_sys_136: -1.05769805e-19 - art_sys_137: -1.99410114e-22 - art_sys_138: -9.52742823e-08 - art_sys_139: -9.94644346e-17 - art_sys_140: -1.51253403e-17 - art_sys_141: -1.85378360e-15 - art_sys_142: 2.32626983e-17 - art_sys_143: -3.66614455e-23 - art_sys_144: 2.16192759e-21 - art_sys_145: -1.65361523e-20 - art_sys_146: 0.0 - art_sys_147: -1.06240266e-18 - art_sys_148: 1.48101713e-17 - art_sys_149: 1.48101713e-17 - art_sys_150: 2.72767636e-18 - art_sys_151: 2.72767636e-18 - art_sys_152: 1.71654890e-17 - art_sys_153: -8.43488845e-19 - art_sys_154: 1.13167764e-21 - art_sys_155: -3.89388964e-30 - art_sys_156: -4.24277046e-35 - art_sys_157: 7.46847659e-35 - art_sys_158: 0.0 - art_sys_159: -4.31357964e-23 - art_sys_160: -3.42939471e-23 - art_sys_161: 4.35458762e-24 - art_sys_162: 8.42371425e-24 - art_sys_163: 1.90934822e-22 - art_sys_164: -2.61217789e-22 - art_sys_165: 4.88327565e-24 - art_sys_166: 1.98390296e-30 - art_sys_167: 3.46417566e-31 - art_sys_168: 4.43112073e-31 - art_sys_169: -2.43880978e-30 - art_sys_170: -9.84150467e-30 - art_sys_171: -2.45019386e-30 - art_sys_172: 1.93853717e-28 - art_sys_173: 8.74257882e-29 - art_sys_174: 1.60437627e-29 - art_sys_175: 1.01491355e-32 - art_sys_176: 1.99391480e-30 - art_sys_177: -2.44614566e-31 - art_sys_178: 1.21806038e-31 - art_sys_179: -1.12014379e-32 - art_sys_180: 2.75275839e-32 - art_sys_181: -3.26820981e-34 - art_sys_182: 8.84587378e-34 - art_sys_183: -6.47753662e-36 - art_sys_184: 1.16202519e-36 - art_sys_185: -2.71032045e-37 + art_sys_18: -3.04620093e-20 + art_sys_19: -8.05234799e-19 + art_sys_20: 5.19337863e-08 + art_sys_21: -2.32164545e-19 + art_sys_22: 4.87884913e-08 + art_sys_23: -1.33234738e-19 + art_sys_24: -4.13637506e-20 + art_sys_25: 1.43772156e-19 + art_sys_26: 4.55626921e-19 + art_sys_27: 5.11585722e-19 + art_sys_28: -1.23615030e-07 + art_sys_29: -3.08874254e-18 + art_sys_30: 1.43102094e-18 + art_sys_31: 5.12685923e-07 + art_sys_32: -1.53065680e-19 + art_sys_33: 8.06217705e-20 + art_sys_34: 6.07187788e-18 + art_sys_35: -1.51594855e-06 + art_sys_36: -1.43317227e-14 + art_sys_37: -1.46719783e-14 + art_sys_38: 8.43080556e-15 + art_sys_39: 2.27970626e-15 + art_sys_40: 5.76411478e-16 + art_sys_41: 1.04810384e-16 + art_sys_42: 1.03428003e-16 + art_sys_43: 1.87737427e-16 + art_sys_44: 4.78891993e-17 + art_sys_45: -8.51651282e-18 + art_sys_46: 3.39905473e-17 + art_sys_47: -2.18030069e-15 + art_sys_48: 8.00628784e-14 + art_sys_49: -1.27676390e-12 + art_sys_50: 1.25099494e-17 + art_sys_51: 4.02095469e-18 + art_sys_52: 2.95619159e-07 + art_sys_53: 4.95481058e-12 + art_sys_54: -6.11348721e-14 + art_sys_55: -4.04634809e-13 + art_sys_56: -2.43443183e-05 + art_sys_57: -4.73408266e-18 + art_sys_58: 4.57953536e-19 + art_sys_59: -2.78868450e-13 + art_sys_60: -1.71386618e-13 + art_sys_61: -6.68680606e-15 + art_sys_62: -3.79314981e-05 + art_sys_63: 7.60056250e-15 + art_sys_64: 8.05103903e-15 + art_sys_65: -3.15913209e-15 + art_sys_66: 9.96748510e-15 + art_sys_67: -4.94740361e-15 + art_sys_68: -1.45093244e-15 + art_sys_69: 9.41859039e-16 + art_sys_70: 2.39170301e-16 + art_sys_71: -8.17170727e-17 + art_sys_72: 1.06287005e-17 + art_sys_73: -2.03185834e-17 + art_sys_74: -2.07970069e-14 + art_sys_75: 9.81177758e-18 + art_sys_76: -1.47871097e-14 + art_sys_77: -1.53734323e-14 + art_sys_78: -1.28702004e-15 + art_sys_79: -7.44098986e-18 + art_sys_80: -3.34517394e-15 + art_sys_81: -3.43421963e-13 + art_sys_82: 3.32074646e-11 + art_sys_83: 4.29606444e-16 + art_sys_84: -1.44979810e-15 + art_sys_85: 4.15009388e-16 + art_sys_86: -4.20345806e-16 + art_sys_87: -1.58076063e-12 + art_sys_88: 2.68131494e-13 + art_sys_89: -1.56834770e-16 + art_sys_90: -1.26710641e-14 + art_sys_91: 7.01195712e-13 + art_sys_92: -8.96142824e-19 + art_sys_93: -1.11427615e-18 + art_sys_94: 1.87125755e-17 + art_sys_95: 1.13971564e-13 + art_sys_96: 6.18744077e-11 + art_sys_97: 6.38268961e-05 + art_sys_98: -2.15319624e-11 + art_sys_99: -4.87212687e-11 + art_sys_100: 5.59499001e-10 + art_sys_101: 1.27180924e-09 + art_sys_102: 1.37429679e-10 + art_sys_103: 2.70869482e-04 + art_sys_104: -3.38126909e-11 + art_sys_105: 7.19086075e-17 + art_sys_106: -4.19073333e-11 + art_sys_107: 1.04613517e-13 + art_sys_108: -1.35619611e-19 + art_sys_109: -2.93873494e-21 + art_sys_110: 1.41415710e-11 + art_sys_111: 2.34536670e-10 + art_sys_112: -6.40582122e-12 + art_sys_113: 6.76206678e-06 + art_sys_114: 4.03893915e-21 + art_sys_115: -4.86355119e-13 + art_sys_116: -1.37374301e-16 + art_sys_117: 2.09271841e-21 + art_sys_118: -4.19721669e-12 + art_sys_119: -4.06459407e-17 + art_sys_120: 7.11753096e-14 + art_sys_121: -5.70494828e-21 + art_sys_122: 9.54230351e-12 + art_sys_123: -1.70895068e-20 + art_sys_124: -3.03381887e-13 + art_sys_125: -2.20858073e-22 + art_sys_126: 1.36525004e-17 + art_sys_127: 1.39527367e-20 + art_sys_128: 1.99178650e-15 + art_sys_129: -3.20511894e-22 + art_sys_130: -2.10309388e-20 + art_sys_131: -4.83213648e-22 + art_sys_132: 6.49347015e-15 + art_sys_133: 1.03155803e-20 + art_sys_134: -1.45178844e-18 + art_sys_135: -7.30581768e-16 + art_sys_136: -2.11213055e-22 + art_sys_137: -4.49470766e-21 + art_sys_138: 1.51852883e-16 + art_sys_139: 1.41752996e-20 + art_sys_140: -7.89054693e-23 + art_sys_141: 8.13098810e-20 + art_sys_142: 5.03339178e-17 + art_sys_143: 5.15157388e-22 + art_sys_144: -2.15101741e-21 + art_sys_145: -5.92123207e-17 + art_sys_146: -7.84388882e-20 + art_sys_147: 3.11935815e-23 + art_sys_148: 9.97917255e-24 + art_sys_149: 4.49895861e-17 + art_sys_150: 1.12219768e-18 + art_sys_151: -1.57921620e-17 + art_sys_152: -6.54935931e-21 + art_sys_153: -2.42091304e-17 + art_sys_154: 3.81502514e-08 + art_sys_155: -2.43859667e-19 + art_sys_156: 0.0 + art_sys_157: -4.34753713e-16 + art_sys_158: -0.0 + art_sys_159: 1.07663786e-16 + art_sys_160: 1.31382394e-17 + art_sys_161: 2.79904598e-18 + art_sys_162: 2.79904598e-18 + art_sys_163: -3.70703466e-18 + art_sys_164: -3.70703466e-18 + art_sys_165: 3.21367824e-32 + art_sys_166: -9.89671767e-33 + art_sys_167: -0.0 + art_sys_168: 8.58047334e-30 + art_sys_169: -5.66087585e-30 + art_sys_170: -5.71428947e-29 + art_sys_171: -1.46001731e-28 + art_sys_172: -5.28757283e-29 + art_sys_173: -8.33609668e-30 + art_sys_174: 3.72627998e-30 + art_sys_175: -9.05468896e-31 + art_sys_176: 2.10335153e-32 + art_sys_177: -4.06009538e-33 + art_sys_178: -4.73960276e-34 + art_sys_179: 2.08372759e-31 + art_sys_180: 2.17969284e-30 + art_sys_181: -3.51566295e-32 + art_sys_182: 6.26225338e-33 + art_sys_183: 7.03362401e-34 + art_sys_184: -7.90352315e-37 + art_sys_185: -2.28555826e-37 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -70372,189 +70372,189 @@ bins: uncorrelated_uncertainty: 1.98574000e-05 - art_sys_1: 1.20625880e-12 art_sys_2: -1.33520838e-11 - art_sys_3: 8.51158012e-22 - art_sys_4: 2.21502966e-19 - art_sys_5: 8.82589303e-23 + art_sys_3: -8.04539138e-22 + art_sys_4: 7.00113318e-20 + art_sys_5: -5.75161821e-22 art_sys_6: -1.33511731e-11 - art_sys_7: 1.08342312e-19 - art_sys_8: 1.73231018e-20 - art_sys_9: -1.03827032e-19 - art_sys_10: -8.98575471e-11 - art_sys_11: 3.36016496e-20 - art_sys_12: 1.32039608e-20 - art_sys_13: 1.44887019e-09 - art_sys_14: -5.58077951e-21 - art_sys_15: -1.20310831e-20 - art_sys_16: -3.28328763e-20 + art_sys_7: -1.59009221e-20 + art_sys_8: 4.97696676e-21 + art_sys_9: -6.05054340e-21 + art_sys_10: 8.98575471e-11 + art_sys_11: 9.07974793e-20 + art_sys_12: 1.92280883e-20 + art_sys_13: -1.44887019e-09 + art_sys_14: 3.57634128e-20 + art_sys_15: -4.60894695e-21 + art_sys_16: 3.68771761e-19 art_sys_17: 2.71372524e-09 - art_sys_18: 2.36374367e-20 - art_sys_19: 1.02183376e-18 - art_sys_20: -1.28015794e-08 - art_sys_21: 5.88837962e-20 - art_sys_22: 9.79815738e-20 - art_sys_23: -8.77239549e-09 - art_sys_24: -6.58969422e-19 - art_sys_25: 9.39409603e-14 - art_sys_26: -1.81752299e-14 - art_sys_27: 7.53524345e-15 - art_sys_28: 3.94537596e-20 - art_sys_29: -2.75665031e-20 - art_sys_30: 1.72306668e-15 - art_sys_31: 1.36763899e-15 - art_sys_32: -1.50489291e-17 - art_sys_33: 1.98516360e-17 - art_sys_34: 5.93594997e-17 - art_sys_35: 7.98817387e-08 - art_sys_36: -2.52445538e-19 - art_sys_37: 6.01745136e-17 - art_sys_38: -3.63328557e-16 - art_sys_39: -1.59495109e-07 - art_sys_40: 6.97244256e-16 - art_sys_41: -4.81086312e-19 - art_sys_42: -1.60688552e-15 - art_sys_43: 4.43713663e-18 - art_sys_44: 4.95900725e-18 - art_sys_45: 8.56582112e-18 - art_sys_46: 1.44592662e-07 - art_sys_47: 2.86091331e-15 - art_sys_48: 5.06113440e-15 - art_sys_49: 5.46056543e-15 - art_sys_50: -2.46036380e-15 - art_sys_51: 2.58575665e-15 - art_sys_52: -2.34221642e-15 - art_sys_53: 2.01839494e-15 - art_sys_54: -4.59052599e-16 - art_sys_55: 8.84034038e-18 - art_sys_56: 8.76480749e-17 - art_sys_57: 4.28154036e-15 - art_sys_58: -2.84791352e-16 - art_sys_59: 8.57150103e-17 - art_sys_60: -1.24292431e-11 - art_sys_61: 2.33104346e-06 - art_sys_62: 1.84943880e-10 - art_sys_63: 1.32496547e-15 - art_sys_64: 5.39355147e-10 - art_sys_65: 5.10175333e-17 - art_sys_66: 7.52900814e-18 - art_sys_67: -4.26612527e-07 - art_sys_68: -8.30989567e-12 - art_sys_69: -9.13583386e-13 - art_sys_70: -7.15315580e-12 - art_sys_71: -1.99013904e-12 - art_sys_72: -8.06168230e-06 - art_sys_73: 6.25788701e-14 - art_sys_74: -2.51056248e-14 - art_sys_75: 2.37916671e-15 - art_sys_76: 8.05919707e-18 - art_sys_77: 3.70973097e-12 - art_sys_78: 4.31230060e-13 - art_sys_79: -5.85781812e-15 - art_sys_80: 2.39186612e-13 - art_sys_81: 2.37412000e-15 - art_sys_82: -5.12503981e-16 - art_sys_83: 2.29280756e-14 - art_sys_84: -4.90030872e-16 - art_sys_85: -1.85413122e-16 - art_sys_86: -4.52377077e-18 - art_sys_87: -9.51464411e-12 - art_sys_88: -1.67269044e-18 - art_sys_89: 1.01945720e-18 - art_sys_90: -3.42200092e-12 - art_sys_91: 7.34908560e-12 - art_sys_92: -1.20047158e-11 - art_sys_93: -3.01295558e-05 - art_sys_94: -2.62453657e-10 - art_sys_95: 1.10079735e-15 - art_sys_96: -3.54289949e-19 - art_sys_97: -3.04096599e-16 - art_sys_98: -9.33136593e-10 - art_sys_99: -1.35820901e-05 - art_sys_100: -2.00861155e-19 - art_sys_101: -1.53915939e-11 - art_sys_102: -8.32624962e-12 - art_sys_103: -8.38247245e-20 - art_sys_104: -1.18580698e-04 - art_sys_105: -1.70837896e-13 - art_sys_106: -1.69172915e-16 - art_sys_107: 2.19011152e-19 - art_sys_108: -7.04473453e-20 - art_sys_109: -1.20227772e-19 - art_sys_110: -2.25020650e-19 - art_sys_111: 4.16742545e-17 - art_sys_112: 7.00219928e-21 - art_sys_113: 5.15231399e-22 - art_sys_114: 6.81921218e-16 - art_sys_115: -1.24116051e-21 - art_sys_116: -9.34079357e-19 - art_sys_117: -1.46913145e-16 - art_sys_118: 2.10554823e-20 - art_sys_119: 4.03245503e-17 - art_sys_120: -4.70015125e-20 - art_sys_121: 3.01568599e-21 - art_sys_122: 1.29208913e-17 - art_sys_123: 6.06898999e-18 - art_sys_124: -2.13566555e-22 - art_sys_125: 1.18862851e-21 - art_sys_126: -4.88820835e-21 - art_sys_127: 9.80573723e-18 - art_sys_128: -1.23753409e-21 - art_sys_129: 3.22560361e-18 - art_sys_130: -2.06770430e-20 - art_sys_131: 3.42512717e-20 - art_sys_132: -3.47920177e-17 - art_sys_133: -1.14880125e-19 - art_sys_134: -2.93885538e-22 - art_sys_135: -5.14475465e-18 - art_sys_136: 3.52539511e-20 - art_sys_137: 6.67644273e-23 - art_sys_138: 3.14934717e-08 - art_sys_139: 3.29078493e-17 - art_sys_140: 5.00337494e-18 - art_sys_141: 6.12775979e-16 - art_sys_142: -7.68529862e-18 - art_sys_143: 1.25744069e-23 - art_sys_144: -7.14884230e-22 - art_sys_145: 5.46276488e-21 - art_sys_146: -0.0 - art_sys_147: 3.50833694e-19 - art_sys_148: -4.89066601e-18 - art_sys_149: -4.89066601e-18 - art_sys_150: -9.00843936e-19 - art_sys_151: -9.00843936e-19 - art_sys_152: -5.66908847e-18 - art_sys_153: 2.78589672e-19 - art_sys_154: -3.73701503e-22 - art_sys_155: 1.28603176e-30 - art_sys_156: 1.40088217e-35 - art_sys_157: -2.46579644e-35 - art_sys_158: -0.0 - art_sys_159: -9.88903513e-23 - art_sys_160: -6.95226755e-22 - art_sys_161: 1.30149060e-24 - art_sys_162: 4.76193484e-23 - art_sys_163: -6.84729115e-23 - art_sys_164: 9.74636575e-23 - art_sys_165: 8.07888992e-25 - art_sys_166: 8.30250556e-31 - art_sys_167: 3.88289941e-30 - art_sys_168: 4.46994986e-31 - art_sys_169: -9.16121318e-30 - art_sys_170: -4.41564859e-29 - art_sys_171: -8.34580614e-30 - art_sys_172: 1.81081415e-27 - art_sys_173: 6.86640102e-28 - art_sys_174: 1.41311139e-28 - art_sys_175: -3.35241251e-33 - art_sys_176: 7.42249324e-30 - art_sys_177: 5.46840962e-32 - art_sys_178: 4.35938627e-31 - art_sys_179: -5.97394373e-32 - art_sys_180: 1.03367745e-31 - art_sys_181: -1.38031758e-33 - art_sys_182: 6.15018135e-33 - art_sys_183: -1.25373322e-35 - art_sys_184: -6.86532375e-37 - art_sys_185: 1.15627989e-37 + art_sys_18: 1.05732234e-21 + art_sys_19: -1.10373709e-18 + art_sys_20: 1.28015794e-08 + art_sys_21: -7.57412896e-20 + art_sys_22: 8.77239548e-09 + art_sys_23: -1.68270631e-19 + art_sys_24: -1.56333778e-19 + art_sys_25: -3.36443418e-20 + art_sys_26: 2.36345381e-19 + art_sys_27: 1.27852663e-19 + art_sys_28: -7.98817387e-08 + art_sys_29: -9.97084627e-19 + art_sys_30: 5.34333063e-19 + art_sys_31: -1.59495109e-07 + art_sys_32: -7.02337213e-20 + art_sys_33: 1.04797325e-19 + art_sys_34: -7.89007685e-19 + art_sys_35: -1.44592663e-07 + art_sys_36: -2.77425484e-14 + art_sys_37: -5.42212030e-14 + art_sys_38: 1.88070844e-14 + art_sys_39: -1.66112536e-15 + art_sys_40: -7.46254088e-16 + art_sys_41: 2.07881933e-16 + art_sys_42: 3.91915486e-16 + art_sys_43: 2.14468065e-16 + art_sys_44: -1.17794206e-17 + art_sys_45: 4.98003316e-18 + art_sys_46: 1.68364146e-17 + art_sys_47: -3.17934797e-15 + art_sys_48: -4.41424146e-15 + art_sys_49: 2.40339639e-14 + art_sys_50: -8.29036368e-18 + art_sys_51: 7.15333384e-18 + art_sys_52: 2.33104345e-06 + art_sys_53: 4.53725004e-13 + art_sys_54: 9.10935916e-13 + art_sys_55: -1.35598046e-11 + art_sys_56: 4.26612599e-07 + art_sys_57: -4.60211003e-19 + art_sys_58: -1.64031622e-19 + art_sys_59: -1.09846696e-12 + art_sys_60: -5.63440313e-13 + art_sys_61: 3.15588147e-15 + art_sys_62: -8.06166649e-06 + art_sys_63: 4.05793627e-14 + art_sys_64: 3.27661910e-14 + art_sys_65: -2.64972021e-14 + art_sys_66: -7.97893276e-17 + art_sys_67: 4.96956118e-16 + art_sys_68: 6.88186219e-16 + art_sys_69: 7.52400620e-17 + art_sys_70: -2.67979514e-16 + art_sys_71: -5.25062478e-16 + art_sys_72: 2.88482590e-17 + art_sys_73: -1.06832072e-17 + art_sys_74: 1.25021607e-14 + art_sys_75: -1.56012910e-17 + art_sys_76: 7.17799207e-14 + art_sys_77: -7.74468965e-15 + art_sys_78: 4.02956177e-15 + art_sys_79: 1.38022404e-17 + art_sys_80: -9.93490615e-16 + art_sys_81: 1.62116889e-13 + art_sys_82: -1.56847487e-11 + art_sys_83: 2.82387646e-16 + art_sys_84: -9.06555233e-16 + art_sys_85: -4.29088820e-16 + art_sys_86: 1.04639793e-16 + art_sys_87: 1.11704581e-13 + art_sys_88: 1.78807617e-12 + art_sys_89: -8.90784712e-17 + art_sys_90: -2.06505849e-15 + art_sys_91: -6.44840896e-13 + art_sys_92: 5.37666633e-18 + art_sys_93: 1.39868355e-17 + art_sys_94: 5.98531619e-16 + art_sys_95: -6.91690259e-14 + art_sys_96: -4.27747843e-11 + art_sys_97: -3.01301317e-05 + art_sys_98: 1.10861842e-12 + art_sys_99: 4.41758977e-12 + art_sys_100: -2.80477161e-11 + art_sys_101: -1.23019958e-10 + art_sys_102: 2.41029126e-09 + art_sys_103: -1.35786811e-05 + art_sys_104: 1.62573736e-12 + art_sys_105: -2.41671868e-17 + art_sys_106: -6.86215123e-10 + art_sys_107: 1.82679992e-12 + art_sys_108: 4.52330540e-19 + art_sys_109: -4.37550230e-20 + art_sys_110: -4.68009239e-12 + art_sys_111: 4.08903483e-09 + art_sys_112: 1.98258619e-12 + art_sys_113: 1.18597465e-04 + art_sys_114: -1.37597302e-21 + art_sys_115: -9.43657645e-12 + art_sys_116: 4.53074694e-17 + art_sys_117: 1.94616418e-20 + art_sys_118: 1.24638809e-12 + art_sys_119: 1.34259032e-17 + art_sys_120: -2.35851397e-14 + art_sys_121: -1.20767754e-19 + art_sys_122: -3.12166177e-12 + art_sys_123: -2.14538823e-19 + art_sys_124: 1.14168903e-13 + art_sys_125: -4.38939563e-22 + art_sys_126: 5.97132125e-18 + art_sys_127: 3.21706186e-19 + art_sys_128: -1.53317859e-15 + art_sys_129: 7.28050047e-22 + art_sys_130: -5.32634540e-19 + art_sys_131: -4.69677892e-21 + art_sys_132: -2.71252292e-15 + art_sys_133: 2.87366903e-19 + art_sys_134: 1.09396756e-18 + art_sys_135: 1.25202655e-16 + art_sys_136: -6.55284430e-22 + art_sys_137: 5.71184353e-19 + art_sys_138: -1.50037252e-16 + art_sys_139: -1.43910883e-19 + art_sys_140: -1.32005420e-22 + art_sys_141: 3.23759634e-19 + art_sys_142: 3.48055768e-16 + art_sys_143: 3.26954134e-21 + art_sys_144: 1.22427519e-20 + art_sys_145: 1.49529237e-16 + art_sys_146: 1.97333649e-19 + art_sys_147: -2.87677627e-22 + art_sys_148: -4.53119957e-23 + art_sys_149: -3.30365042e-17 + art_sys_150: -1.11702437e-18 + art_sys_151: 8.47942797e-18 + art_sys_152: 4.52230281e-21 + art_sys_153: 1.05238691e-17 + art_sys_154: -1.26167907e-08 + art_sys_155: 9.83004219e-20 + art_sys_156: -0.0 + art_sys_157: 1.36944074e-16 + art_sys_158: 0.0 + art_sys_159: -3.24143031e-17 + art_sys_160: -4.21830787e-18 + art_sys_161: -8.28599584e-19 + art_sys_162: -8.28599584e-19 + art_sys_163: 1.06702592e-18 + art_sys_164: 1.06702592e-18 + art_sys_165: -9.23893953e-33 + art_sys_166: 2.83838680e-33 + art_sys_167: 0.0 + art_sys_168: -1.74291120e-29 + art_sys_169: 1.00304462e-28 + art_sys_170: -2.57111457e-28 + art_sys_171: 7.32555291e-28 + art_sys_172: -5.65094920e-29 + art_sys_173: -2.51115333e-29 + art_sys_174: 9.77969271e-30 + art_sys_175: -4.56347398e-30 + art_sys_176: 5.28610065e-31 + art_sys_177: -5.33176183e-32 + art_sys_178: 3.51241068e-33 + art_sys_179: -7.83446923e-32 + art_sys_180: -6.51359738e-31 + art_sys_181: -6.28775101e-31 + art_sys_182: -2.98770170e-31 + art_sys_183: 4.93065248e-33 + art_sys_184: -1.23643171e-35 + art_sys_185: 2.04535255e-36 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -70663,189 +70663,189 @@ bins: uncorrelated_uncertainty: 3.91317000e-06 - art_sys_1: 3.88941340e-17 art_sys_2: -5.76450014e-16 - art_sys_3: 8.32183407e-26 - art_sys_4: 5.77802628e-22 - art_sys_5: 8.41430253e-26 + art_sys_3: 4.15132286e-26 + art_sys_4: 1.21118484e-22 + art_sys_5: -1.86358323e-25 art_sys_6: -7.65961607e-16 - art_sys_7: 1.62460723e-22 - art_sys_8: 3.14722675e-23 - art_sys_9: -1.25762182e-22 - art_sys_10: -2.97545712e-15 - art_sys_11: -5.75232343e-23 - art_sys_12: -1.20246805e-21 - art_sys_13: 5.18034174e-14 - art_sys_14: 2.74602389e-22 - art_sys_15: 3.92903336e-22 - art_sys_16: -1.90821279e-22 + art_sys_7: -5.28156221e-23 + art_sys_8: 3.92161397e-24 + art_sys_9: -5.31718571e-24 + art_sys_10: 2.97545712e-15 + art_sys_11: 5.33506145e-23 + art_sys_12: -4.41481040e-22 + art_sys_13: -5.18034174e-14 + art_sys_14: -1.00789689e-21 + art_sys_15: 3.76163873e-23 + art_sys_16: -2.95879044e-21 art_sys_17: 1.06249030e-13 - art_sys_18: -1.31060571e-22 - art_sys_19: -8.57382802e-21 - art_sys_20: -2.03040819e-13 - art_sys_21: -7.90355910e-22 - art_sys_22: -1.29797423e-21 - art_sys_23: 1.26224697e-12 - art_sys_24: 8.98681342e-21 - art_sys_25: -1.28111651e-14 - art_sys_26: -2.87261913e-14 - art_sys_27: 3.13422177e-14 - art_sys_28: 7.27519728e-22 - art_sys_29: 2.05833224e-21 - art_sys_30: -6.36266552e-16 - art_sys_31: -1.97791388e-16 - art_sys_32: 4.16030807e-16 - art_sys_33: -8.05710283e-16 - art_sys_34: 5.46305236e-20 - art_sys_35: 7.57549729e-11 - art_sys_36: 5.76115135e-20 - art_sys_37: 4.59047994e-19 - art_sys_38: -3.49130443e-17 - art_sys_39: -1.06422491e-09 - art_sys_40: 4.54475310e-18 - art_sys_41: 6.82699109e-20 - art_sys_42: 5.63112816e-17 - art_sys_43: 1.94123134e-17 - art_sys_44: 5.80223361e-17 - art_sys_45: 2.11628493e-18 - art_sys_46: -5.06999402e-09 - art_sys_47: 6.92066077e-16 - art_sys_48: 4.00689817e-15 - art_sys_49: 1.28863492e-14 - art_sys_50: -1.45817551e-14 - art_sys_51: -1.40675716e-14 - art_sys_52: -2.37478481e-16 - art_sys_53: 2.27611424e-17 - art_sys_54: -7.66913110e-16 - art_sys_55: -9.27176453e-18 - art_sys_56: -5.69454581e-18 - art_sys_57: 2.41889274e-15 - art_sys_58: -4.26389033e-17 - art_sys_59: 4.47486735e-17 - art_sys_60: -8.69523218e-13 - art_sys_61: 8.18040495e-09 - art_sys_62: -6.73560226e-11 - art_sys_63: -7.23264527e-17 - art_sys_64: -4.70795742e-11 - art_sys_65: 6.83608512e-17 - art_sys_66: -3.71649683e-17 - art_sys_67: -3.63355730e-07 - art_sys_68: -3.13727101e-13 - art_sys_69: -1.71197997e-13 - art_sys_70: 5.74269947e-12 - art_sys_71: -3.53234968e-12 - art_sys_72: 9.41585452e-07 - art_sys_73: -1.72274675e-14 - art_sys_74: -4.12432335e-14 - art_sys_75: 4.21178643e-15 - art_sys_76: -1.42757822e-17 - art_sys_77: 4.09379155e-14 - art_sys_78: 6.99053968e-12 - art_sys_79: 1.97232670e-15 - art_sys_80: -2.48001775e-11 - art_sys_81: 9.30893110e-16 - art_sys_82: -1.01834628e-15 - art_sys_83: 2.03930068e-16 - art_sys_84: -4.73365746e-16 - art_sys_85: -1.25496385e-16 - art_sys_86: 1.58377467e-18 - art_sys_87: -7.67863935e-12 - art_sys_88: 7.71340650e-20 - art_sys_89: -9.53716747e-19 - art_sys_90: 3.84758273e-13 - art_sys_91: -5.32174479e-10 - art_sys_92: 1.78152396e-11 - art_sys_93: -1.08375584e-06 - art_sys_94: -6.59095371e-11 - art_sys_95: -8.47712834e-14 - art_sys_96: 1.65651851e-19 - art_sys_97: 2.91396133e-14 - art_sys_98: 2.37933725e-09 - art_sys_99: -8.63246453e-06 - art_sys_100: -3.63989816e-18 - art_sys_101: 1.46190822e-09 - art_sys_102: 9.19322495e-10 - art_sys_103: 5.50302227e-19 - art_sys_104: -1.02629242e-06 - art_sys_105: 1.87655907e-11 - art_sys_106: 1.84777535e-14 - art_sys_107: -7.73444347e-20 - art_sys_108: -2.89314283e-19 - art_sys_109: 3.08885612e-20 - art_sys_110: 4.32825442e-19 - art_sys_111: -9.18134207e-14 - art_sys_112: 2.40927312e-20 - art_sys_113: -5.19225840e-20 - art_sys_114: -1.77719964e-14 - art_sys_115: 3.51436679e-20 - art_sys_116: 1.29324311e-17 - art_sys_117: 1.20421704e-15 - art_sys_118: -1.23113644e-19 - art_sys_119: -1.02794956e-15 - art_sys_120: -8.84691807e-19 - art_sys_121: -1.31613278e-19 - art_sys_122: -7.35099593e-16 - art_sys_123: -5.06240662e-16 - art_sys_124: 1.64513611e-20 - art_sys_125: -3.47025049e-19 - art_sys_126: 3.95177304e-19 - art_sys_127: -9.08246283e-16 - art_sys_128: 1.06106932e-19 - art_sys_129: -3.12377721e-16 - art_sys_130: 1.93681366e-18 - art_sys_131: -3.19145451e-18 - art_sys_132: 3.33863929e-15 - art_sys_133: 1.10555683e-17 - art_sys_134: 2.83114769e-20 - art_sys_135: 5.01766318e-16 - art_sys_136: -3.40546690e-18 - art_sys_137: -6.42325788e-21 - art_sys_138: -3.06838853e-06 - art_sys_139: -3.20379656e-15 - art_sys_140: -4.87193784e-16 - art_sys_141: -5.97026724e-14 - art_sys_142: 7.49221330e-16 - art_sys_143: -1.18066645e-21 - art_sys_144: 6.96259687e-20 - art_sys_145: -5.32581682e-19 - art_sys_146: 0.0 - art_sys_147: -3.42184830e-17 - art_sys_148: 4.77011470e-16 - art_sys_149: 4.77011470e-16 - art_sys_150: 8.78431243e-17 - art_sys_151: 8.78431243e-17 - art_sys_152: 5.52748538e-16 - art_sys_153: -2.71583974e-17 - art_sys_154: 3.64463353e-20 - art_sys_155: -1.25382681e-28 - art_sys_156: -1.36666741e-33 - art_sys_157: 2.40553335e-33 - art_sys_158: 0.0 - art_sys_159: -1.09161772e-21 - art_sys_160: 1.46064270e-22 - art_sys_161: 1.28430930e-22 - art_sys_162: 2.87104579e-23 - art_sys_163: 6.06573837e-21 - art_sys_164: -8.35899405e-21 - art_sys_165: 1.27648467e-22 - art_sys_166: 1.86378160e-31 - art_sys_167: -5.03710023e-30 - art_sys_168: 2.62507206e-30 - art_sys_169: 8.96282676e-30 - art_sys_170: -1.22664712e-29 - art_sys_171: -6.34117788e-29 - art_sys_172: -4.40723273e-28 - art_sys_173: -1.27366169e-28 - art_sys_174: -4.38242855e-29 - art_sys_175: 3.26876668e-31 - art_sys_176: 6.55630231e-31 - art_sys_177: 9.52750493e-31 - art_sys_178: -2.81715074e-31 - art_sys_179: 2.71147586e-32 - art_sys_180: 2.67013976e-32 - art_sys_181: -3.84508616e-33 - art_sys_182: -1.10947592e-33 - art_sys_183: -1.21896393e-34 - art_sys_184: 3.89022950e-35 - art_sys_185: -8.86173374e-36 + art_sys_18: 7.95086219e-23 + art_sys_19: 1.48300458e-20 + art_sys_20: 2.03040819e-13 + art_sys_21: 1.12496670e-21 + art_sys_22: -1.26224697e-12 + art_sys_23: 1.90589079e-21 + art_sys_24: 1.88763780e-21 + art_sys_25: 8.16608419e-22 + art_sys_26: -2.46572407e-20 + art_sys_27: -1.37307476e-20 + art_sys_28: -7.57549729e-11 + art_sys_29: 1.32546394e-19 + art_sys_30: -7.47177758e-20 + art_sys_31: -1.06422491e-09 + art_sys_32: 4.05918871e-21 + art_sys_33: -2.99479053e-20 + art_sys_34: -5.98758698e-20 + art_sys_35: 5.06999402e-09 + art_sys_36: 1.08932717e-14 + art_sys_37: 8.32149581e-16 + art_sys_38: 3.84327795e-14 + art_sys_39: 1.21093535e-16 + art_sys_40: 6.29507761e-16 + art_sys_41: -9.67658207e-16 + art_sys_42: -3.16787676e-16 + art_sys_43: -2.68476816e-16 + art_sys_44: -5.18607600e-17 + art_sys_45: 1.74837417e-18 + art_sys_46: -9.92958670e-18 + art_sys_47: 1.51503911e-17 + art_sys_48: -1.21106800e-15 + art_sys_49: 1.91840914e-14 + art_sys_50: 8.37704184e-18 + art_sys_51: 1.07096041e-18 + art_sys_52: 8.18040467e-09 + art_sys_53: -2.47360570e-13 + art_sys_54: -3.86931442e-11 + art_sys_55: -2.65437309e-11 + art_sys_56: 3.63355699e-07 + art_sys_57: 3.55514227e-18 + art_sys_58: -2.30479611e-18 + art_sys_59: -6.61447164e-12 + art_sys_60: -3.79571500e-12 + art_sys_61: 1.14265574e-16 + art_sys_62: 9.41585975e-07 + art_sys_63: 9.97985147e-14 + art_sys_64: 1.74008099e-14 + art_sys_65: 1.57073010e-15 + art_sys_66: 6.46716107e-15 + art_sys_67: 8.40512638e-15 + art_sys_68: 1.58087638e-15 + art_sys_69: 1.53811016e-16 + art_sys_70: 7.54041884e-16 + art_sys_71: -2.13157401e-16 + art_sys_72: -5.48829572e-17 + art_sys_73: -2.30108050e-17 + art_sys_74: 2.59234992e-16 + art_sys_75: 2.67120419e-17 + art_sys_76: 9.15795430e-14 + art_sys_77: -4.36138942e-15 + art_sys_78: -1.23898977e-14 + art_sys_79: 9.67781520e-18 + art_sys_80: 6.43240455e-15 + art_sys_81: 5.82902951e-15 + art_sys_82: -5.97777415e-13 + art_sys_83: 3.89261981e-16 + art_sys_84: 6.16961109e-16 + art_sys_85: 2.30004929e-17 + art_sys_86: -3.05191472e-16 + art_sys_87: 5.07213808e-14 + art_sys_88: 6.62706593e-12 + art_sys_89: 9.72787240e-17 + art_sys_90: -4.66250468e-13 + art_sys_91: -1.06500310e-12 + art_sys_92: 1.08684672e-17 + art_sys_93: 1.40159527e-17 + art_sys_94: -5.10589710e-16 + art_sys_95: -7.81169899e-12 + art_sys_96: -7.41631211e-13 + art_sys_97: -1.08401609e-06 + art_sys_98: -2.77678550e-12 + art_sys_99: 1.57977943e-12 + art_sys_100: -1.77934176e-11 + art_sys_101: -3.88161954e-11 + art_sys_102: 2.07845131e-11 + art_sys_103: -8.63298242e-06 + art_sys_104: -9.55877969e-12 + art_sys_105: 2.31691404e-15 + art_sys_106: -9.38935763e-11 + art_sys_107: 3.03148584e-14 + art_sys_108: -5.31168481e-18 + art_sys_109: -1.63603713e-20 + art_sys_110: 4.55500529e-10 + art_sys_111: 7.92897554e-11 + art_sys_112: -2.06085600e-10 + art_sys_113: 1.02254212e-06 + art_sys_114: 1.30645108e-19 + art_sys_115: 1.56492228e-12 + art_sys_116: -4.42458149e-15 + art_sys_117: 3.33542343e-20 + art_sys_118: -1.34940272e-10 + art_sys_119: -1.30933223e-15 + art_sys_120: 2.29262036e-12 + art_sys_121: 3.54516687e-20 + art_sys_122: 3.07294927e-10 + art_sys_123: -1.40605362e-19 + art_sys_124: -9.79705509e-12 + art_sys_125: -9.67880872e-21 + art_sys_126: 4.21371775e-16 + art_sys_127: -1.45610650e-19 + art_sys_128: 6.59516266e-14 + art_sys_129: -1.19614153e-20 + art_sys_130: 3.02453038e-19 + art_sys_131: -6.83290068e-21 + art_sys_132: 2.10243946e-13 + art_sys_133: -1.98312821e-19 + art_sys_134: -4.78111764e-17 + art_sys_135: -2.33653292e-14 + art_sys_136: -5.54571811e-21 + art_sys_137: -1.18971227e-18 + art_sys_138: 5.03417094e-15 + art_sys_139: 7.12980428e-19 + art_sys_140: -2.30594191e-21 + art_sys_141: 1.98858684e-18 + art_sys_142: 9.80536735e-16 + art_sys_143: 1.09470084e-20 + art_sys_144: -9.09427483e-20 + art_sys_145: -2.14089472e-15 + art_sys_146: -2.84151920e-18 + art_sys_147: 1.52147780e-21 + art_sys_148: 3.95379653e-22 + art_sys_149: 1.48319082e-15 + art_sys_150: 3.74937222e-17 + art_sys_151: -5.14641343e-16 + art_sys_152: -2.15253864e-19 + art_sys_153: -7.84400007e-16 + art_sys_154: 1.22880887e-06 + art_sys_155: -7.88696919e-18 + art_sys_156: 0.0 + art_sys_157: -1.39914828e-14 + art_sys_158: -0.0 + art_sys_159: 3.46195892e-15 + art_sys_160: 4.22927876e-16 + art_sys_161: 8.99768951e-17 + art_sys_162: 8.99768951e-17 + art_sys_163: -1.19112059e-16 + art_sys_164: -1.19112059e-16 + art_sys_165: 1.03258122e-30 + art_sys_166: -3.17977618e-31 + art_sys_167: -0.0 + art_sys_168: -1.60582595e-29 + art_sys_169: -3.99343481e-30 + art_sys_170: 1.53925155e-30 + art_sys_171: -5.12347977e-28 + art_sys_172: -7.03375250e-29 + art_sys_173: -1.48100677e-29 + art_sys_174: 6.45497387e-30 + art_sys_175: 1.23716976e-30 + art_sys_176: -3.85286622e-32 + art_sys_177: -3.48075509e-33 + art_sys_178: 5.40783760e-33 + art_sys_179: 6.72889014e-30 + art_sys_180: 7.00797749e-29 + art_sys_181: -1.75521195e-32 + art_sys_182: 5.84988308e-33 + art_sys_183: 7.62965088e-34 + art_sys_184: 3.86956984e-37 + art_sys_185: -1.05758438e-35 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 diff --git a/nnpdf_data/nnpdf_data/commondata/CMS_Z0_7TEV_DIMUON/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/CMS_Z0_7TEV_DIMUON/uncertainties.yaml index b5520d5da4..38c833da3e 100644 --- a/nnpdf_data/nnpdf_data/commondata/CMS_Z0_7TEV_DIMUON/uncertainties.yaml +++ b/nnpdf_data/nnpdf_data/commondata/CMS_Z0_7TEV_DIMUON/uncertainties.yaml @@ -544,17 +544,17 @@ bins: sys_corr_6: -9.70144274e+02 sys_corr_7: -2.71112162e+01 sys_corr_8: -4.11565566e+01 - sys_corr_9: -3.28881045e+01 - sys_corr_10: -2.96966591e+01 + sys_corr_9: 3.28881045e+01 + sys_corr_10: 2.96966591e+01 sys_corr_11: -1.07316063e+02 - sys_corr_12: -1.31444046e+02 - sys_corr_13: 8.76955418e+01 + sys_corr_12: 1.31444046e+02 + sys_corr_13: -8.76955418e+01 sys_corr_14: -1.62949139e+01 sys_corr_15: -2.85386023e+01 sys_corr_16: 5.14575197e-01 - sys_corr_17: -3.32765915e-01 + sys_corr_17: 3.32765915e-01 sys_corr_18: 2.19396190e+01 - sys_corr_19: -1.00359222e+01 + sys_corr_19: 1.00359222e+01 sys_corr_20: -1.33211279e+01 sys_corr_21: -2.03092201e+01 sys_corr_22: -1.86879934e+02 @@ -570,103 +570,103 @@ bins: sys_corr_32: 1.52354204e+02 sys_corr_33: 1.63092626e+02 sys_corr_34: 7.01962891e+01 - sys_corr_35: -1.29521171e+01 - sys_corr_36: 7.66651670e+01 + sys_corr_35: 1.29521171e+01 + sys_corr_36: -7.66651670e+01 sys_corr_37: 1.02134789e+02 sys_corr_38: 4.31805259e+01 - sys_corr_39: -5.23585358e+01 - sys_corr_40: 5.94193246e+01 - sys_corr_41: -2.78110212e+01 + sys_corr_39: 5.23585358e+01 + sys_corr_40: -5.94193246e+01 + sys_corr_41: 2.78110212e+01 sys_corr_42: -6.98823856e+01 sys_corr_43: 1.95896158e+01 sys_corr_44: 9.28239544e+01 sys_corr_45: 7.89688582e+00 - sys_corr_46: -3.14386712e+00 - sys_corr_47: -2.79195120e+01 + sys_corr_46: 3.14386712e+00 + sys_corr_47: 2.79195120e+01 sys_corr_48: 3.06879458e+01 sys_corr_49: 2.31756421e+01 sys_corr_50: 6.45323916e+01 - sys_corr_51: -1.52451576e+00 - sys_corr_52: 8.04182487e+01 - sys_corr_53: 1.14840299e+01 + sys_corr_51: 1.52451576e+00 + sys_corr_52: -8.04182487e+01 + sys_corr_53: -1.14840299e+01 sys_corr_54: 1.91036009e+00 sys_corr_55: 5.12246530e-01 - sys_corr_56: 2.40369454e+01 + sys_corr_56: -2.40369454e+01 sys_corr_57: -8.76854368e+00 - sys_corr_58: -2.05877931e+01 + sys_corr_58: 2.05877931e+01 sys_corr_59: -2.80573852e+01 sys_corr_60: 1.43949915e+01 - sys_corr_61: -1.47340269e+01 - sys_corr_62: 1.45863166e+01 + sys_corr_61: 1.47340269e+01 + sys_corr_62: -1.45863166e+01 sys_corr_63: 9.83898368e+00 sys_corr_64: -2.29179565e+01 - sys_corr_65: -3.62032901e+00 - sys_corr_66: -1.19402727e+01 - sys_corr_67: -5.51012278e+00 + sys_corr_65: 3.62032901e+00 + sys_corr_66: 1.19402727e+01 + sys_corr_67: 5.51012278e+00 sys_corr_68: -8.36940907e+00 sys_corr_69: 1.46349929e+01 sys_corr_70: 1.79268370e+01 - sys_corr_71: -2.19301677e+01 - sys_corr_72: -7.85704872e+00 + sys_corr_71: 2.19301677e+01 + sys_corr_72: 7.85704872e+00 sys_corr_73: 1.69626396e+01 sys_corr_74: -3.37252614e+00 - sys_corr_75: -3.75922245e+01 - sys_corr_76: 5.71503227e+00 + sys_corr_75: 3.75922245e+01 + sys_corr_76: -5.71503227e+00 sys_corr_77: 4.09557271e+01 sys_corr_78: 3.93033201e+00 sys_corr_79: -4.22891838e+00 - sys_corr_80: -2.94647688e+00 + sys_corr_80: 2.94647688e+00 sys_corr_81: -5.01058719e+00 - sys_corr_82: 1.15087577e+00 + sys_corr_82: -1.15087577e+00 sys_corr_83: -5.84043238e+00 sys_corr_84: -1.03240536e+01 sys_corr_85: -3.05590098e+00 - sys_corr_86: 8.01235452e+00 - sys_corr_87: 3.51975658e-01 + sys_corr_86: -8.01235452e+00 + sys_corr_87: -3.51975658e-01 sys_corr_88: 1.12591804e+01 sys_corr_89: 1.24346987e+00 - sys_corr_90: -8.41346338e-01 - sys_corr_91: -1.34059659e-01 - sys_corr_92: -8.55588500e-01 + sys_corr_90: 1.34059659e-01 + sys_corr_91: 8.41346338e-01 + sys_corr_92: 8.55588500e-01 sys_corr_93: 5.46722002e-03 sys_corr_94: 8.60941960e-01 - sys_corr_95: -3.34886990e-01 + sys_corr_95: 3.34886990e-01 sys_corr_96: 3.72643401e-01 - sys_corr_97: -2.55234557e+00 - sys_corr_98: -1.18986353e+00 + sys_corr_97: 2.55234557e+00 + sys_corr_98: 1.18986353e+00 sys_corr_99: -1.67699380e+00 - sys_corr_100: -2.82955034e+00 - sys_corr_101: -7.00828134e+00 - sys_corr_102: -2.53443826e+01 - sys_corr_103: 4.25186310e+00 - sys_corr_104: 9.98121441e+00 - sys_corr_105: -2.92603044e+00 + sys_corr_100: 2.92603044e+00 + sys_corr_101: 2.82955034e+00 + sys_corr_102: 7.00828134e+00 + sys_corr_103: -2.53443826e+01 + sys_corr_104: -4.25186310e+00 + sys_corr_105: -9.98121441e+00 sys_corr_106: -2.74081361e+00 sys_corr_107: -9.70988039e-01 - sys_corr_108: -7.35849712e-01 - sys_corr_109: 4.31914890e-01 - sys_corr_110: -1.62505355e+00 - sys_corr_111: 8.20042936e-01 - sys_corr_112: 1.75707569e-01 - sys_corr_113: 1.23573058e-01 - sys_corr_114: 2.95836417e-03 - sys_corr_115: -1.26162573e-01 + sys_corr_108: 4.31914890e-01 + sys_corr_109: 7.35849712e-01 + sys_corr_110: -8.20042936e-01 + sys_corr_111: 1.62505355e+00 + sys_corr_112: -1.75707569e-01 + sys_corr_113: -1.23573058e-01 + sys_corr_114: -2.95836417e-03 + sys_corr_115: 1.26162573e-01 sys_corr_116: 1.19369680e-01 - sys_corr_117: 1.00622372e-01 + sys_corr_117: -1.00622372e-01 sys_corr_118: -1.73306589e-01 sys_corr_119: 1.72591925e-03 sys_corr_120: -6.82302421e-02 sys_corr_121: 6.09802098e-03 - sys_corr_122: -1.26709726e-01 - sys_corr_123: -6.21218501e-02 - sys_corr_124: 4.71163556e-02 + sys_corr_122: -6.21218501e-02 + sys_corr_123: 1.26709726e-01 + sys_corr_124: -4.71163556e-02 sys_corr_125: 8.50605839e-02 sys_corr_126: -2.19498344e-02 - sys_corr_127: 6.67023571e-01 - sys_corr_128: 1.29567800e-01 - sys_corr_129: 5.28202673e-02 - sys_corr_130: -2.38184435e-02 - sys_corr_131: 7.58361622e-02 + sys_corr_127: -6.67023571e-01 + sys_corr_128: -1.29567800e-01 + sys_corr_129: -5.28202673e-02 + sys_corr_130: 2.38184435e-02 + sys_corr_131: -7.58361622e-02 sys_corr_132: 3.23375291e-02 stat: 0.0 luminosity: 3.92441566e+02 @@ -678,17 +678,17 @@ bins: sys_corr_6: -9.32812702e+02 sys_corr_7: -2.31445793e+01 sys_corr_8: -3.80583862e+01 - sys_corr_9: -2.92694186e+01 - sys_corr_10: -2.90426238e+01 + sys_corr_9: 2.92694186e+01 + sys_corr_10: 2.90426238e+01 sys_corr_11: -1.06752684e+02 - sys_corr_12: -1.27869539e+02 - sys_corr_13: 8.84596960e+01 + sys_corr_12: 1.27869539e+02 + sys_corr_13: -8.84596960e+01 sys_corr_14: -2.27421092e+01 sys_corr_15: -3.24561008e+01 sys_corr_16: 3.61105419e+00 - sys_corr_17: 2.68489186e+00 + sys_corr_17: -2.68489186e+00 sys_corr_18: 2.08180501e+01 - sys_corr_19: -2.01183676e+01 + sys_corr_19: 2.01183676e+01 sys_corr_20: -1.51054674e+01 sys_corr_21: -1.19945184e+01 sys_corr_22: -1.99259781e+02 @@ -704,103 +704,103 @@ bins: sys_corr_32: -1.67453074e+02 sys_corr_33: -1.40882452e+02 sys_corr_34: -7.14319508e+01 - sys_corr_35: -1.52518556e-01 - sys_corr_36: -2.18140147e+01 + sys_corr_35: 1.52518556e-01 + sys_corr_36: 2.18140147e+01 sys_corr_37: -1.48019359e+01 sys_corr_38: 2.41929013e+00 - sys_corr_39: 1.39628267e+01 - sys_corr_40: 3.69175160e+00 - sys_corr_41: -2.40414211e+01 + sys_corr_39: -1.39628267e+01 + sys_corr_40: -3.69175160e+00 + sys_corr_41: 2.40414211e+01 sys_corr_42: -4.21353633e+01 sys_corr_43: 1.33940732e+01 sys_corr_44: 2.06099269e+01 sys_corr_45: 5.05691235e+01 - sys_corr_46: 6.46020089e+00 - sys_corr_47: -2.67634849e+01 + sys_corr_46: -6.46020089e+00 + sys_corr_47: 2.67634849e+01 sys_corr_48: 2.14808494e+01 sys_corr_49: -1.46355397e+01 sys_corr_50: 3.14327737e+01 - sys_corr_51: 4.57738351e+01 - sys_corr_52: 9.41530439e+01 - sys_corr_53: -2.70234473e+01 + sys_corr_51: -4.57738351e+01 + sys_corr_52: -9.41530439e+01 + sys_corr_53: 2.70234473e+01 sys_corr_54: 5.27627791e+01 sys_corr_55: 1.46866162e+00 - sys_corr_56: 2.88825791e+01 + sys_corr_56: -2.88825791e+01 sys_corr_57: -1.42867812e+01 - sys_corr_58: -1.04759386e+01 + sys_corr_58: 1.04759386e+01 sys_corr_59: -2.18961063e+01 sys_corr_60: 2.45124092e+00 - sys_corr_61: -2.31672454e+01 - sys_corr_62: 2.37610908e+01 + sys_corr_61: 2.31672454e+01 + sys_corr_62: -2.37610908e+01 sys_corr_63: 2.45186306e+01 sys_corr_64: -4.72021638e+00 - sys_corr_65: -5.55857419e+00 - sys_corr_66: 6.51943496e+00 - sys_corr_67: -5.20312012e+00 + sys_corr_65: 5.55857419e+00 + sys_corr_66: -6.51943496e+00 + sys_corr_67: 5.20312012e+00 sys_corr_68: 1.34450218e+01 sys_corr_69: 1.51571537e+01 sys_corr_70: 2.23256779e+00 - sys_corr_71: 1.61982917e+01 - sys_corr_72: -4.06340740e+00 + sys_corr_71: -1.61982917e+01 + sys_corr_72: 4.06340740e+00 sys_corr_73: -3.86082471e+01 sys_corr_74: 2.76477747e+00 - sys_corr_75: 4.05702929e+01 - sys_corr_76: -4.12840503e+00 + sys_corr_75: -4.05702929e+01 + sys_corr_76: 4.12840503e+00 sys_corr_77: -6.95614086e+01 sys_corr_78: 2.03461169e+00 sys_corr_79: 3.32885303e+00 - sys_corr_80: 1.65349171e+01 + sys_corr_80: -1.65349171e+01 sys_corr_81: -2.54031663e+01 - sys_corr_82: -6.99399353e-02 + sys_corr_82: 6.99399353e-02 sys_corr_83: -1.39448823e+00 sys_corr_84: 2.13130423e+01 sys_corr_85: 1.38093609e+01 - sys_corr_86: -1.99427635e+01 - sys_corr_87: -1.25799323e+01 + sys_corr_86: 1.99427635e+01 + sys_corr_87: 1.25799323e+01 sys_corr_88: -1.74400550e+01 sys_corr_89: -2.98003281e+00 - sys_corr_90: 1.43143266e+00 - sys_corr_91: 4.32204118e+00 - sys_corr_92: -1.28861494e+01 + sys_corr_90: -4.32204118e+00 + sys_corr_91: -1.43143266e+00 + sys_corr_92: 1.28861494e+01 sys_corr_93: -2.04853452e-01 sys_corr_94: 7.51664429e-02 - sys_corr_95: 3.01369829e+00 + sys_corr_95: -3.01369829e+00 sys_corr_96: 5.34936871e-01 - sys_corr_97: -7.30075353e+00 - sys_corr_98: -2.58308191e+00 + sys_corr_97: 7.30075353e+00 + sys_corr_98: 2.58308191e+00 sys_corr_99: -3.56053810e+00 - sys_corr_100: -3.70132644e+00 - sys_corr_101: -8.36363313e+00 - sys_corr_102: -3.28622611e+01 - sys_corr_103: 6.20062231e+00 - sys_corr_104: 1.47387020e+01 - sys_corr_105: -2.95946004e+00 + sys_corr_100: 2.95946004e+00 + sys_corr_101: 3.70132644e+00 + sys_corr_102: 8.36363313e+00 + sys_corr_103: -3.28622611e+01 + sys_corr_104: -6.20062231e+00 + sys_corr_105: -1.47387020e+01 sys_corr_106: -3.20125438e+00 sys_corr_107: -9.40179489e-01 - sys_corr_108: -8.84308902e-01 - sys_corr_109: 2.46848865e-02 - sys_corr_110: -2.63863417e+00 - sys_corr_111: 7.03702377e-01 - sys_corr_112: 2.42808697e-02 - sys_corr_113: -2.39261186e-02 - sys_corr_114: 3.46419130e-04 - sys_corr_115: -2.86839458e-01 + sys_corr_108: 2.46848865e-02 + sys_corr_109: 8.84308902e-01 + sys_corr_110: -7.03702377e-01 + sys_corr_111: 2.63863417e+00 + sys_corr_112: -2.42808697e-02 + sys_corr_113: 2.39261186e-02 + sys_corr_114: -3.46419130e-04 + sys_corr_115: 2.86839458e-01 sys_corr_116: 1.87038698e-01 - sys_corr_117: 1.41403410e-01 + sys_corr_117: -1.41403410e-01 sys_corr_118: -7.74298948e-02 sys_corr_119: 4.96898255e-03 sys_corr_120: -1.02260291e-01 sys_corr_121: 1.05026168e-02 - sys_corr_122: -9.57173966e-02 - sys_corr_123: -3.88849678e-02 - sys_corr_124: 1.19373134e-01 + sys_corr_122: -3.88849678e-02 + sys_corr_123: 9.57173966e-02 + sys_corr_124: -1.19373134e-01 sys_corr_125: 7.41110138e-02 sys_corr_126: -7.15008442e-03 - sys_corr_127: 1.00034513e+00 - sys_corr_128: 2.09338978e-01 - sys_corr_129: 4.82970787e-02 - sys_corr_130: -2.33983914e-03 - sys_corr_131: 9.61249424e-02 + sys_corr_127: -1.00034513e+00 + sys_corr_128: -2.09338978e-01 + sys_corr_129: -4.82970787e-02 + sys_corr_130: 2.33983914e-03 + sys_corr_131: -9.61249424e-02 sys_corr_132: -4.02298107e-02 stat: 0.0 luminosity: 3.89253172e+02 @@ -812,17 +812,17 @@ bins: sys_corr_6: -9.07777983e+02 sys_corr_7: -2.31210216e+01 sys_corr_8: -3.97863516e+01 - sys_corr_9: -3.17800187e+01 - sys_corr_10: -2.90778889e+01 + sys_corr_9: 3.17800187e+01 + sys_corr_10: 2.90778889e+01 sys_corr_11: -1.04045800e+02 - sys_corr_12: -1.29369599e+02 - sys_corr_13: 8.38790594e+01 + sys_corr_12: 1.29369599e+02 + sys_corr_13: -8.38790594e+01 sys_corr_14: -1.98237326e+01 sys_corr_15: -2.75922703e+01 sys_corr_16: 2.03240415e+00 - sys_corr_17: 9.99551650e+00 + sys_corr_17: -9.99551650e+00 sys_corr_18: 2.60970770e+01 - sys_corr_19: -2.60476266e+01 + sys_corr_19: 2.60476266e+01 sys_corr_20: -1.52301011e+01 sys_corr_21: -3.43812209e+00 sys_corr_22: -1.99262978e+02 @@ -838,103 +838,103 @@ bins: sys_corr_32: -9.11420187e+01 sys_corr_33: -8.06083739e+01 sys_corr_34: -3.93103378e+01 - sys_corr_35: 6.13063901e+00 - sys_corr_36: 1.98530866e+01 + sys_corr_35: -6.13063901e+00 + sys_corr_36: -1.98530866e+01 sys_corr_37: 1.60914627e+01 sys_corr_38: 7.15884931e+00 - sys_corr_39: -5.31009427e+00 - sys_corr_40: 2.58938950e+01 - sys_corr_41: -4.80719664e+01 + sys_corr_39: 5.31009427e+00 + sys_corr_40: -2.58938950e+01 + sys_corr_41: 4.80719664e+01 sys_corr_42: -4.38476031e+01 sys_corr_43: 2.50322005e+01 sys_corr_44: 4.26166678e+01 sys_corr_45: -5.20508413e+00 - sys_corr_46: -8.14146870e+00 - sys_corr_47: -4.67648135e+00 + sys_corr_46: 8.14146870e+00 + sys_corr_47: 4.67648135e+00 sys_corr_48: 8.09385332e+00 sys_corr_49: 2.25059690e+01 sys_corr_50: 2.55283260e+01 - sys_corr_51: -1.10263594e+01 - sys_corr_52: -8.41140303e+00 - sys_corr_53: 3.04584598e+01 + sys_corr_51: 1.10263594e+01 + sys_corr_52: 8.41140303e+00 + sys_corr_53: -3.04584598e+01 sys_corr_54: -4.95856262e+01 sys_corr_55: 1.04752520e+01 - sys_corr_56: 3.67974323e+00 + sys_corr_56: -3.67974323e+00 sys_corr_57: 1.83016755e+00 - sys_corr_58: -9.37691376e+00 + sys_corr_58: 9.37691376e+00 sys_corr_59: 5.41276563e+00 sys_corr_60: 1.64043473e+01 - sys_corr_61: 2.62015417e+01 - sys_corr_62: -1.08627352e+01 + sys_corr_61: -2.62015417e+01 + sys_corr_62: 1.08627352e+01 sys_corr_63: -1.28863520e+01 sys_corr_64: -1.57204012e+01 - sys_corr_65: 1.45898828e+01 - sys_corr_66: -1.68125915e+01 - sys_corr_67: 4.98410097e+00 + sys_corr_65: -1.45898828e+01 + sys_corr_66: 1.68125915e+01 + sys_corr_67: -4.98410097e+00 sys_corr_68: -1.17328153e+01 sys_corr_69: 5.16504265e+00 sys_corr_70: 1.35993665e+01 - sys_corr_71: -2.48526150e+01 - sys_corr_72: -7.97891378e+00 + sys_corr_71: 2.48526150e+01 + sys_corr_72: 7.97891378e+00 sys_corr_73: 1.25023858e+01 sys_corr_74: -4.52180945e+00 - sys_corr_75: -9.59062206e+00 - sys_corr_76: 2.24338088e+00 + sys_corr_75: 9.59062206e+00 + sys_corr_76: -2.24338088e+00 sys_corr_77: 1.30914471e+01 sys_corr_78: -2.93776055e+01 sys_corr_79: 3.07082675e+01 - sys_corr_80: -1.48000018e+01 + sys_corr_80: 1.48000018e+01 sys_corr_81: 3.09687432e+01 - sys_corr_82: 1.92143172e+00 + sys_corr_82: -1.92143172e+00 sys_corr_83: 5.33125310e+00 sys_corr_84: -1.43973007e+01 sys_corr_85: -1.43123750e+01 - sys_corr_86: 7.51669539e+00 - sys_corr_87: 1.17090810e+01 + sys_corr_86: -7.51669539e+00 + sys_corr_87: -1.17090810e+01 sys_corr_88: 4.72707332e+00 sys_corr_89: 2.18948218e+00 - sys_corr_90: 3.19544651e+00 - sys_corr_91: 7.35208706e-01 - sys_corr_92: 1.24805892e+01 + sys_corr_90: -7.35208706e-01 + sys_corr_91: -3.19544651e+00 + sys_corr_92: -1.24805892e+01 sys_corr_93: 1.59952207e-01 sys_corr_94: -1.35609150e+00 - sys_corr_95: -3.47678035e+00 + sys_corr_95: 3.47678035e+00 sys_corr_96: -1.44325356e+00 - sys_corr_97: 1.23266150e+01 - sys_corr_98: 4.47170880e+00 + sys_corr_97: -1.23266150e+01 + sys_corr_98: -4.47170880e+00 sys_corr_99: 7.29582607e+00 - sys_corr_100: 8.00437777e+00 - sys_corr_101: 1.97878964e+01 - sys_corr_102: 7.75532262e+01 - sys_corr_103: -1.44961401e+01 - sys_corr_104: -3.29611174e+01 - sys_corr_105: 7.32258925e+00 + sys_corr_100: -7.32258925e+00 + sys_corr_101: -8.00437777e+00 + sys_corr_102: -1.97878964e+01 + sys_corr_103: 7.75532262e+01 + sys_corr_104: 1.44961401e+01 + sys_corr_105: 3.29611174e+01 sys_corr_106: 7.44159155e+00 sys_corr_107: 2.89353720e+00 - sys_corr_108: 1.34450030e+00 - sys_corr_109: -8.92486872e-01 - sys_corr_110: 6.43948189e+00 - sys_corr_111: -2.19057648e+00 - sys_corr_112: -1.52694094e-01 - sys_corr_113: -2.76161138e-01 - sys_corr_114: -9.22941912e-03 - sys_corr_115: 2.67654290e-01 + sys_corr_108: -8.92486872e-01 + sys_corr_109: -1.34450030e+00 + sys_corr_110: 2.19057648e+00 + sys_corr_111: -6.43948189e+00 + sys_corr_112: 1.52694094e-01 + sys_corr_113: 2.76161138e-01 + sys_corr_114: 9.22941912e-03 + sys_corr_115: -2.67654290e-01 sys_corr_116: -9.79579069e-02 - sys_corr_117: -6.92750368e-02 + sys_corr_117: 6.92750368e-02 sys_corr_118: 4.17639570e-02 sys_corr_119: 2.85783922e-03 sys_corr_120: 8.05522788e-02 sys_corr_121: -2.93740486e-03 - sys_corr_122: 1.51627395e-01 - sys_corr_123: 7.97835922e-02 - sys_corr_124: 1.15678324e-01 + sys_corr_122: 7.97835922e-02 + sys_corr_123: -1.51627395e-01 + sys_corr_124: -1.15678324e-01 sys_corr_125: -5.81068309e-02 sys_corr_126: 2.79929968e-02 - sys_corr_127: -2.93743685e+00 - sys_corr_128: -2.98837522e-01 - sys_corr_129: -2.40389487e-01 - sys_corr_130: 1.32805990e-02 - sys_corr_131: -1.08614322e-01 + sys_corr_127: 2.93743685e+00 + sys_corr_128: 2.98837522e-01 + sys_corr_129: 2.40389487e-01 + sys_corr_130: -1.32805990e-02 + sys_corr_131: 1.08614322e-01 sys_corr_132: -1.00645708e-02 stat: 0.0 luminosity: 3.78312154e+02 @@ -946,17 +946,17 @@ bins: sys_corr_6: -8.74017682e+02 sys_corr_7: -1.25826330e+01 sys_corr_8: -3.01733409e+01 - sys_corr_9: -2.39184870e+01 - sys_corr_10: -2.58975972e+01 + sys_corr_9: 2.39184870e+01 + sys_corr_10: 2.58975972e+01 sys_corr_11: -8.49736545e+01 - sys_corr_12: -1.03961842e+02 - sys_corr_13: 6.82874238e+01 + sys_corr_12: 1.03961842e+02 + sys_corr_13: -6.82874238e+01 sys_corr_14: -1.35159871e+01 sys_corr_15: -2.47833383e+01 sys_corr_16: 3.57698316e+00 - sys_corr_17: -4.88600037e+00 + sys_corr_17: 4.88600037e+00 sys_corr_18: 1.69739693e+01 - sys_corr_19: -1.00489907e+01 + sys_corr_19: 1.00489907e+01 sys_corr_20: -3.29770940e+00 sys_corr_21: -1.07320705e+01 sys_corr_22: -1.09625492e+02 @@ -972,103 +972,103 @@ bins: sys_corr_32: -7.16446870e+01 sys_corr_33: -9.79894758e+01 sys_corr_34: -5.21286795e+01 - sys_corr_35: -4.46590548e+00 - sys_corr_36: 1.17252535e+01 + sys_corr_35: 4.46590548e+00 + sys_corr_36: -1.17252535e+01 sys_corr_37: -1.63171495e+01 sys_corr_38: -4.60634729e+01 - sys_corr_39: 1.82011930e+01 - sys_corr_40: 5.89133376e+00 - sys_corr_41: -1.88259073e+01 + sys_corr_39: -1.82011930e+01 + sys_corr_40: -5.89133376e+00 + sys_corr_41: 1.88259073e+01 sys_corr_42: 2.00203739e+01 sys_corr_43: -2.46509044e+00 sys_corr_44: 6.08783628e+00 sys_corr_45: -4.49252370e+01 - sys_corr_46: -6.67971433e+00 - sys_corr_47: 3.28904430e+01 + sys_corr_46: 6.67971433e+00 + sys_corr_47: -3.28904430e+01 sys_corr_48: -2.17800755e+01 sys_corr_49: 2.39732119e+01 sys_corr_50: -3.90674115e+01 - sys_corr_51: -5.53110409e+01 - sys_corr_52: -1.29996262e+02 - sys_corr_53: 5.09223568e+01 + sys_corr_51: 5.53110409e+01 + sys_corr_52: 1.29996262e+02 + sys_corr_53: -5.09223568e+01 sys_corr_54: -9.19602754e+01 sys_corr_55: -2.56803406e+00 - sys_corr_56: -5.29921110e+01 + sys_corr_56: 5.29921110e+01 sys_corr_57: 9.47776363e+00 - sys_corr_58: -1.40163032e+01 + sys_corr_58: 1.40163032e+01 sys_corr_59: 2.97199615e+01 sys_corr_60: 7.19322013e+00 - sys_corr_61: 1.68911137e+01 - sys_corr_62: -1.01272255e+01 + sys_corr_61: -1.68911137e+01 + sys_corr_62: 1.01272255e+01 sys_corr_63: -1.58649637e+01 sys_corr_64: 2.12823138e+00 - sys_corr_65: 5.11056709e+00 - sys_corr_66: -3.86498780e+00 - sys_corr_67: -4.58819834e+00 + sys_corr_65: -5.11056709e+00 + sys_corr_66: 3.86498780e+00 + sys_corr_67: 4.58819834e+00 sys_corr_68: -2.87507683e+01 sys_corr_69: -3.39625330e-01 sys_corr_70: 2.89167711e+00 - sys_corr_71: -9.13241877e+00 - sys_corr_72: -3.33051892e+00 + sys_corr_71: 9.13241877e+00 + sys_corr_72: 3.33051892e+00 sys_corr_73: 1.73360156e+01 sys_corr_74: -1.65909686e+00 - sys_corr_75: -2.86426199e+01 - sys_corr_76: 3.17017990e+00 + sys_corr_75: 2.86426199e+01 + sys_corr_76: -3.17017990e+00 sys_corr_77: 6.73644341e+01 sys_corr_78: 1.44431677e+01 sys_corr_79: -1.32866753e+01 - sys_corr_80: -8.98050457e+00 + sys_corr_80: 8.98050457e+00 sys_corr_81: 2.28366453e+00 - sys_corr_82: -2.96269032e+00 + sys_corr_82: 2.96269032e+00 sys_corr_83: -3.02879658e+00 sys_corr_84: 4.65641843e-01 sys_corr_85: 5.09602468e+00 - sys_corr_86: 6.45906769e+00 - sys_corr_87: 4.14505290e+00 + sys_corr_86: -6.45906769e+00 + sys_corr_87: -4.14505290e+00 sys_corr_88: 9.95182639e+00 sys_corr_89: -5.68665232e-01 - sys_corr_90: -2.68291490e+00 - sys_corr_91: -3.68702216e+00 - sys_corr_92: -5.25943458e-01 + sys_corr_90: 3.68702216e+00 + sys_corr_91: 2.68291490e+00 + sys_corr_92: 5.25943458e-01 sys_corr_93: 7.25658024e-02 sys_corr_94: 1.61024030e+00 - sys_corr_95: 4.84424402e-01 + sys_corr_95: -4.84424402e-01 sys_corr_96: 9.25324354e-01 - sys_corr_97: -6.12886298e+00 - sys_corr_98: -2.60441008e+00 + sys_corr_97: 6.12886298e+00 + sys_corr_98: 2.60441008e+00 sys_corr_99: -3.96462824e+00 - sys_corr_100: -5.56803449e+00 - sys_corr_101: -1.38735484e+01 - sys_corr_102: -5.13477779e+01 - sys_corr_103: 9.05521726e+00 - sys_corr_104: 2.06767419e+01 - sys_corr_105: -5.39243963e+00 + sys_corr_100: 5.39243963e+00 + sys_corr_101: 5.56803449e+00 + sys_corr_102: 1.38735484e+01 + sys_corr_103: -5.13477779e+01 + sys_corr_104: -9.05521726e+00 + sys_corr_105: -2.06767419e+01 sys_corr_106: -5.22145074e+00 sys_corr_107: -2.16471434e+00 - sys_corr_108: -9.77816570e-01 - sys_corr_109: 7.75833686e-01 - sys_corr_110: -3.97229245e+00 - sys_corr_111: 1.23015223e+00 - sys_corr_112: 1.88222941e-01 - sys_corr_113: 2.72658653e-01 - sys_corr_114: 7.46844299e-03 - sys_corr_115: -1.94100462e-01 + sys_corr_108: 7.75833686e-01 + sys_corr_109: 9.77816570e-01 + sys_corr_110: -1.23015223e+00 + sys_corr_111: 3.97229245e+00 + sys_corr_112: -1.88222941e-01 + sys_corr_113: -2.72658653e-01 + sys_corr_114: -7.46844299e-03 + sys_corr_115: 1.94100462e-01 sys_corr_116: 7.64724880e-02 - sys_corr_117: 5.32310172e-02 + sys_corr_117: -5.32310172e-02 sys_corr_118: -1.29780691e-01 sys_corr_119: -2.14848312e-03 sys_corr_120: -5.78317285e-02 sys_corr_121: -2.24473835e-03 - sys_corr_122: -1.35391583e-01 - sys_corr_123: -6.37079218e-02 - sys_corr_124: -7.85701745e-02 + sys_corr_122: -6.37079218e-02 + sys_corr_123: 1.35391583e-01 + sys_corr_124: 7.85701745e-02 sys_corr_125: 6.55508672e-02 sys_corr_126: -1.51302523e-02 - sys_corr_127: 1.66699635e+00 - sys_corr_128: 3.29873154e-01 - sys_corr_129: 1.50349656e-01 - sys_corr_130: 1.62394948e-02 - sys_corr_131: 8.07727478e-02 + sys_corr_127: -1.66699635e+00 + sys_corr_128: -3.29873154e-01 + sys_corr_129: -1.50349656e-01 + sys_corr_130: -1.62394948e-02 + sys_corr_131: -8.07727478e-02 sys_corr_132: 4.26232334e-02 stat: 0.0 luminosity: 3.87716780e+02 @@ -1080,17 +1080,17 @@ bins: sys_corr_6: -8.23061859e+02 sys_corr_7: -7.21890197e+00 sys_corr_8: -2.73217529e+01 - sys_corr_9: -2.30091940e+01 - sys_corr_10: -2.56280526e+01 + sys_corr_9: 2.30091940e+01 + sys_corr_10: 2.56280526e+01 sys_corr_11: -7.85951016e+01 - sys_corr_12: -1.02721295e+02 - sys_corr_13: 6.69319780e+01 + sys_corr_12: 1.02721295e+02 + sys_corr_13: -6.69319780e+01 sys_corr_14: -1.34839721e+01 sys_corr_15: -2.63964797e+01 sys_corr_16: 8.02337941e+00 - sys_corr_17: 3.87779946e+00 + sys_corr_17: -3.87779946e+00 sys_corr_18: 1.41376478e+01 - sys_corr_19: -1.83341047e+01 + sys_corr_19: 1.83341047e+01 sys_corr_20: -7.12152687e+00 sys_corr_21: -9.74210021e-01 sys_corr_22: -1.25804887e+02 @@ -1106,103 +1106,103 @@ bins: sys_corr_32: 1.41320092e+02 sys_corr_33: 9.54058303e+01 sys_corr_34: 3.44252730e+01 - sys_corr_35: 1.57178695e+01 - sys_corr_36: 3.38413709e+01 + sys_corr_35: -1.57178695e+01 + sys_corr_36: -3.38413709e+01 sys_corr_37: 1.88601208e+01 sys_corr_38: -5.49033877e+00 - sys_corr_39: -3.21881110e+01 - sys_corr_40: -7.88407534e+00 - sys_corr_41: -4.65986680e+00 + sys_corr_39: 3.21881110e+01 + sys_corr_40: 7.88407534e+00 + sys_corr_41: 4.65986680e+00 sys_corr_42: 4.35799440e+01 sys_corr_43: 6.57366796e+00 sys_corr_44: -6.73722334e+00 sys_corr_45: -3.46968191e+01 - sys_corr_46: -1.87243870e+01 - sys_corr_47: 4.17174700e+01 + sys_corr_46: 1.87243870e+01 + sys_corr_47: -4.17174700e+01 sys_corr_48: -1.94690032e+01 sys_corr_49: 2.40153764e+01 sys_corr_50: -2.88468399e+01 - sys_corr_51: -3.63205562e+01 - sys_corr_52: -8.78164859e+01 - sys_corr_53: 1.52658449e+01 + sys_corr_51: 3.63205562e+01 + sys_corr_52: 8.78164859e+01 + sys_corr_53: -1.52658449e+01 sys_corr_54: -4.78892610e+01 sys_corr_55: 1.18744493e+01 - sys_corr_56: -2.29716944e+01 + sys_corr_56: 2.29716944e+01 sys_corr_57: 1.94228413e+01 - sys_corr_58: -1.25599012e+01 + sys_corr_58: 1.25599012e+01 sys_corr_59: 4.11148720e+01 sys_corr_60: 8.72553946e+00 - sys_corr_61: 6.43979829e+00 - sys_corr_62: -1.48139030e+01 + sys_corr_61: -6.43979829e+00 + sys_corr_62: 1.48139030e+01 sys_corr_63: -3.35815254e+00 sys_corr_64: 1.34891645e+01 - sys_corr_65: -8.89581289e+00 - sys_corr_66: 7.03554835e+00 - sys_corr_67: 8.45080476e+00 + sys_corr_65: 8.89581289e+00 + sys_corr_66: -7.03554835e+00 + sys_corr_67: -8.45080476e+00 sys_corr_68: 3.62210330e+01 sys_corr_69: -6.61030509e+00 sys_corr_70: 6.18351565e-01 - sys_corr_71: 2.40190453e+01 - sys_corr_72: 2.09576085e-01 + sys_corr_71: -2.40190453e+01 + sys_corr_72: -2.09576085e-01 sys_corr_73: -5.30979745e+01 sys_corr_74: 4.28777250e+00 - sys_corr_75: 9.29321953e+01 - sys_corr_76: -8.87647961e+00 + sys_corr_75: -9.29321953e+01 + sys_corr_76: 8.87647961e+00 sys_corr_77: -1.02737230e+02 sys_corr_78: 2.65542383e+00 sys_corr_79: 2.77424739e+01 - sys_corr_80: 1.59377905e+01 + sys_corr_80: -1.59377905e+01 sys_corr_81: 9.81279365e+00 - sys_corr_82: -4.97499473e+00 + sys_corr_82: 4.97499473e+00 sys_corr_83: 1.24084518e+01 sys_corr_84: 3.01552833e+01 sys_corr_85: 1.21057763e+01 - sys_corr_86: -3.18681489e+01 - sys_corr_87: -5.18804216e+00 + sys_corr_86: 3.18681489e+01 + sys_corr_87: 5.18804216e+00 sys_corr_88: -3.41552506e+01 sys_corr_89: -4.20846819e+00 - sys_corr_90: 2.94122520e+00 - sys_corr_91: 2.79849087e+00 - sys_corr_92: -3.39644203e+00 + sys_corr_90: -2.79849087e+00 + sys_corr_91: -2.94122520e+00 + sys_corr_92: 3.39644203e+00 sys_corr_93: -8.81731160e-02 sys_corr_94: -1.56069055e+00 - sys_corr_95: 3.28627536e+00 + sys_corr_95: -3.28627536e+00 sys_corr_96: 1.30315101e-01 - sys_corr_97: -3.48414609e+00 - sys_corr_98: -9.70552687e-01 + sys_corr_97: 3.48414609e+00 + sys_corr_98: 9.70552687e-01 sys_corr_99: -7.28088576e-01 - sys_corr_100: 4.77692458e-01 - sys_corr_101: 1.71062569e+00 - sys_corr_102: 4.98159911e+00 - sys_corr_103: -5.23031044e-01 - sys_corr_104: -6.96884447e-01 - sys_corr_105: 1.13463138e+00 + sys_corr_100: -1.13463138e+00 + sys_corr_101: -4.77692458e-01 + sys_corr_102: -1.71062569e+00 + sys_corr_103: 4.98159911e+00 + sys_corr_104: 5.23031044e-01 + sys_corr_105: 6.96884447e-01 sys_corr_106: 7.22560401e-01 sys_corr_107: 7.24026706e-01 - sys_corr_108: -1.55278318e-02 - sys_corr_109: -4.11012136e-01 - sys_corr_110: 1.13839187e-01 - sys_corr_111: -6.48634332e-01 - sys_corr_112: -1.45092106e-01 - sys_corr_113: -1.69006209e-01 - sys_corr_114: -4.52052477e-03 - sys_corr_115: -1.71512664e-01 + sys_corr_108: -4.11012136e-01 + sys_corr_109: 1.55278318e-02 + sys_corr_110: 6.48634332e-01 + sys_corr_111: -1.13839187e-01 + sys_corr_112: 1.45092106e-01 + sys_corr_113: 1.69006209e-01 + sys_corr_114: 4.52052477e-03 + sys_corr_115: 1.71512664e-01 sys_corr_116: 9.48258749e-02 - sys_corr_117: 6.49091020e-02 + sys_corr_117: -6.49091020e-02 sys_corr_118: -9.52287799e-02 sys_corr_119: 5.47545361e-03 sys_corr_120: -2.97813350e-02 sys_corr_121: 1.00520969e-02 - sys_corr_122: 3.06310180e-02 - sys_corr_123: 3.08282698e-02 - sys_corr_124: 1.14572071e-01 + sys_corr_122: 3.08282698e-02 + sys_corr_123: -3.06310180e-02 + sys_corr_124: -1.14572071e-01 sys_corr_125: 5.59363294e-03 sys_corr_126: 1.68050686e-02 - sys_corr_127: -5.43658182e-01 - sys_corr_128: 1.63130754e-01 - sys_corr_129: -9.22143039e-02 - sys_corr_130: 1.94177657e-02 - sys_corr_131: 1.58501451e-02 + sys_corr_127: 5.43658182e-01 + sys_corr_128: -1.63130754e-01 + sys_corr_129: 9.22143039e-02 + sys_corr_130: -1.94177657e-02 + sys_corr_131: -1.58501451e-02 sys_corr_132: -6.32002583e-02 stat: 0.0 luminosity: 3.92531898e+02 @@ -1214,17 +1214,17 @@ bins: sys_corr_6: -8.01351172e+02 sys_corr_7: 1.59759787e+01 sys_corr_8: -7.80716145e+00 - sys_corr_9: -6.90456689e+00 - sys_corr_10: -1.47708009e+01 + sys_corr_9: 6.90456689e+00 + sys_corr_10: 1.47708009e+01 sys_corr_11: -4.68112992e+01 - sys_corr_12: -6.45936782e+01 - sys_corr_13: 4.56365705e+01 + sys_corr_12: 6.45936782e+01 + sys_corr_13: -4.56365705e+01 sys_corr_14: -8.24676038e+00 sys_corr_15: -1.76594284e+01 sys_corr_16: 8.46791118e+00 - sys_corr_17: -9.76702146e+00 + sys_corr_17: 9.76702146e+00 sys_corr_18: 1.03254342e+00 - sys_corr_19: -8.75606673e-01 + sys_corr_19: 8.75606673e-01 sys_corr_20: 2.63124872e+00 sys_corr_21: -3.91105119e+00 sys_corr_22: -1.84435593e+01 @@ -1240,103 +1240,103 @@ bins: sys_corr_32: -9.58728101e+00 sys_corr_33: 1.70759588e+01 sys_corr_34: -1.66422813e+01 - sys_corr_35: -4.26010276e+00 - sys_corr_36: -6.32974309e-01 + sys_corr_35: 4.26010276e+00 + sys_corr_36: 6.32974309e-01 sys_corr_37: -6.23410389e+00 sys_corr_38: 6.61570927e+00 - sys_corr_39: -6.39003708e+00 - sys_corr_40: -3.30915243e+01 - sys_corr_41: 1.27398462e-01 + sys_corr_39: 6.39003708e+00 + sys_corr_40: 3.30915243e+01 + sys_corr_41: -1.27398462e-01 sys_corr_42: 4.71005181e+01 sys_corr_43: -2.57698830e+00 sys_corr_44: -3.83866325e+01 sys_corr_45: -2.45546714e+01 - sys_corr_46: -6.68695746e+00 - sys_corr_47: -3.77798989e+00 + sys_corr_46: 6.68695746e+00 + sys_corr_47: 3.77798989e+00 sys_corr_48: -2.19555286e+01 sys_corr_49: 1.98707302e+01 sys_corr_50: -4.32153591e+01 - sys_corr_51: -2.93862559e+00 - sys_corr_52: -2.15749107e+01 - sys_corr_53: -4.29935738e+01 + sys_corr_51: 2.93862559e+00 + sys_corr_52: 2.15749107e+01 + sys_corr_53: 4.29935738e+01 sys_corr_54: 1.09585006e+02 sys_corr_55: -1.51751613e+01 - sys_corr_56: 4.40654846e+01 + sys_corr_56: -4.40654846e+01 sys_corr_57: 5.41492318e+01 - sys_corr_58: 5.73871996e+01 + sys_corr_58: -5.73871996e+01 sys_corr_59: -2.12506391e+01 sys_corr_60: -1.68337365e+01 - sys_corr_61: 3.98634162e+01 - sys_corr_62: -4.90315025e+01 + sys_corr_61: -3.98634162e+01 + sys_corr_62: 4.90315025e+01 sys_corr_63: -7.59095842e+00 sys_corr_64: -1.38840996e+01 - sys_corr_65: -2.56754430e+01 - sys_corr_66: -2.21230168e+01 - sys_corr_67: 3.36045283e+01 + sys_corr_65: 2.56754430e+01 + sys_corr_66: 2.21230168e+01 + sys_corr_67: -3.36045283e+01 sys_corr_68: 1.43125548e+02 sys_corr_69: -6.47484765e+01 sys_corr_70: 3.18014988e+01 - sys_corr_71: -2.31131099e+01 - sys_corr_72: 2.99364389e+01 + sys_corr_71: 2.31131099e+01 + sys_corr_72: -2.99364389e+01 sys_corr_73: 4.59298863e+01 sys_corr_74: -4.54904483e+00 - sys_corr_75: -1.46549714e+01 - sys_corr_76: -8.95068996e-01 + sys_corr_75: 1.46549714e+01 + sys_corr_76: 8.95068996e-01 sys_corr_77: 1.45766646e+01 sys_corr_78: 1.21690554e+01 sys_corr_79: -6.22477197e+01 - sys_corr_80: 5.33329760e+00 + sys_corr_80: -5.33329760e+00 sys_corr_81: -6.12762291e+00 - sys_corr_82: -8.61603696e-01 + sys_corr_82: 8.61603696e-01 sys_corr_83: -4.51028538e+00 sys_corr_84: -1.58975652e+01 sys_corr_85: -8.15063414e+00 - sys_corr_86: 5.86652482e+00 - sys_corr_87: 1.08968120e+01 + sys_corr_86: -5.86652482e+00 + sys_corr_87: -1.08968120e+01 sys_corr_88: 9.01609323e+00 sys_corr_89: 1.15402373e+00 - sys_corr_90: 2.28643840e+00 - sys_corr_91: 3.79916062e+00 - sys_corr_92: 4.97839176e+00 + sys_corr_90: -3.79916062e+00 + sys_corr_91: -2.28643840e+00 + sys_corr_92: -4.97839176e+00 sys_corr_93: -1.41526875e-01 sys_corr_94: -5.10525864e-01 - sys_corr_95: 1.52638778e-01 + sys_corr_95: -1.52638778e-01 sys_corr_96: 1.43760740e-01 - sys_corr_97: -4.37255508e-01 - sys_corr_98: -1.69801035e-01 + sys_corr_97: 4.37255508e-01 + sys_corr_98: 1.69801035e-01 sys_corr_99: 7.69643906e-02 - sys_corr_100: 3.50668555e-01 - sys_corr_101: 1.21431202e+00 - sys_corr_102: 4.39239376e+00 - sys_corr_103: -6.06507687e-01 - sys_corr_104: -1.62048879e+00 - sys_corr_105: 7.35666088e-01 + sys_corr_100: -7.35666088e-01 + sys_corr_101: -3.50668555e-01 + sys_corr_102: -1.21431202e+00 + sys_corr_103: 4.39239376e+00 + sys_corr_104: 6.06507687e-01 + sys_corr_105: 1.62048879e+00 sys_corr_106: 5.59942372e-01 sys_corr_107: 9.11339473e-01 - sys_corr_108: -2.01509662e-01 - sys_corr_109: 1.29633696e-02 - sys_corr_110: 3.86680818e-01 - sys_corr_111: -4.59637576e-01 - sys_corr_112: -1.44689867e-01 - sys_corr_113: -6.63801230e-02 - sys_corr_114: -2.87374397e-03 - sys_corr_115: 3.50486902e-02 + sys_corr_108: 1.29633696e-02 + sys_corr_109: 2.01509662e-01 + sys_corr_110: 4.59637576e-01 + sys_corr_111: -3.86680818e-01 + sys_corr_112: 1.44689867e-01 + sys_corr_113: 6.63801230e-02 + sys_corr_114: 2.87374397e-03 + sys_corr_115: -3.50486902e-02 sys_corr_116: 1.18317332e-01 - sys_corr_117: 7.96644639e-02 + sys_corr_117: -7.96644639e-02 sys_corr_118: 1.01590311e-01 sys_corr_119: 9.86144078e-04 sys_corr_120: -3.90458339e-02 sys_corr_121: 4.09823000e-03 - sys_corr_122: 4.16870622e-02 - sys_corr_123: 3.90706071e-02 - sys_corr_124: 1.60142629e-01 + sys_corr_122: 3.90706071e-02 + sys_corr_123: -4.16870622e-02 + sys_corr_124: -1.60142629e-01 sys_corr_125: -1.01782004e-02 sys_corr_126: 1.64289821e-02 - sys_corr_127: -3.71297536e-01 - sys_corr_128: 6.65903994e-02 - sys_corr_129: -6.17536888e-02 - sys_corr_130: -4.92308202e-03 - sys_corr_131: 1.02089704e-02 + sys_corr_127: 3.71297536e-01 + sys_corr_128: -6.65903994e-02 + sys_corr_129: 6.17536888e-02 + sys_corr_130: 4.92308202e-03 + sys_corr_131: -1.02089704e-02 sys_corr_132: 4.49512290e-02 stat: 0.0 luminosity: 3.97876006e+02 @@ -1348,17 +1348,17 @@ bins: sys_corr_6: -7.47755979e+02 sys_corr_7: 4.33936019e+01 sys_corr_8: 1.92691747e+01 - sys_corr_9: 1.44580507e+01 - sys_corr_10: -8.74862358e+00 + sys_corr_9: -1.44580507e+01 + sys_corr_10: 8.74862358e+00 sys_corr_11: -1.97145308e+01 - sys_corr_12: -3.64753830e+01 - sys_corr_13: 1.80674841e+01 + sys_corr_12: 3.64753830e+01 + sys_corr_13: -1.80674841e+01 sys_corr_14: 4.99488324e-01 sys_corr_15: -1.50365022e+01 sys_corr_16: 9.19204732e+00 - sys_corr_17: -1.39524544e+01 + sys_corr_17: 1.39524544e+01 sys_corr_18: -1.49077875e+01 - sys_corr_19: 1.86790024e+01 + sys_corr_19: -1.86790024e+01 sys_corr_20: 1.23382690e+01 sys_corr_21: -1.99485418e-01 sys_corr_22: 8.28313738e+01 @@ -1374,103 +1374,103 @@ bins: sys_corr_32: 7.17153350e+00 sys_corr_33: 2.38844398e+01 sys_corr_34: -9.03283656e+00 - sys_corr_35: 2.16281021e+00 - sys_corr_36: 1.76717924e+01 + sys_corr_35: -2.16281021e+00 + sys_corr_36: -1.76717924e+01 sys_corr_37: 2.35876617e+01 sys_corr_38: 2.69852604e+00 - sys_corr_39: 1.84861629e+01 - sys_corr_40: -3.78499508e+01 - sys_corr_41: 5.68768135e+01 + sys_corr_39: -1.84861629e+01 + sys_corr_40: 3.78499508e+01 + sys_corr_41: -5.68768135e+01 sys_corr_42: 2.70482519e+01 sys_corr_43: -2.64276011e+01 sys_corr_44: 1.96049695e+01 sys_corr_45: -2.07636547e+01 - sys_corr_46: 1.43235636e+01 - sys_corr_47: 2.47840539e+01 + sys_corr_46: -1.43235636e+01 + sys_corr_47: -2.47840539e+01 sys_corr_48: -1.55111695e+01 sys_corr_49: 2.12944501e+01 sys_corr_50: -2.39078087e+01 - sys_corr_51: 2.92280194e+01 - sys_corr_52: 6.88245181e+01 - sys_corr_53: -3.84345334e+01 + sys_corr_51: -2.92280194e+01 + sys_corr_52: -6.88245181e+01 + sys_corr_53: 3.84345334e+01 sys_corr_54: 6.61810948e+01 sys_corr_55: 1.24748398e+01 - sys_corr_56: -1.48318937e+01 + sys_corr_56: 1.48318937e+01 sys_corr_57: 1.88957707e+01 - sys_corr_58: 8.16734203e+01 + sys_corr_58: -8.16734203e+01 sys_corr_59: 8.72391169e+01 sys_corr_60: -3.82294473e+01 - sys_corr_61: 2.83260539e+01 - sys_corr_62: -3.85426547e+01 + sys_corr_61: -2.83260539e+01 + sys_corr_62: 3.85426547e+01 sys_corr_63: -7.87533486e+01 sys_corr_64: 6.78402212e+01 - sys_corr_65: -9.34420196e+00 - sys_corr_66: 5.80616427e+01 - sys_corr_67: -1.96538764e+01 + sys_corr_65: 9.34420196e+00 + sys_corr_66: -5.80616427e+01 + sys_corr_67: 1.96538764e+01 sys_corr_68: -1.05797361e+02 sys_corr_69: -6.38558181e-01 sys_corr_70: -4.48465505e+01 - sys_corr_71: 6.70540727e+01 - sys_corr_72: -2.87860243e+00 + sys_corr_71: -6.70540727e+01 + sys_corr_72: 2.87860243e+00 sys_corr_73: -1.98865085e-01 sys_corr_74: 1.05272714e+01 - sys_corr_75: -1.72964858e+00 - sys_corr_76: -1.07484066e+00 + sys_corr_75: 1.72964858e+00 + sys_corr_76: 1.07484066e+00 sys_corr_77: 1.39458133e+01 sys_corr_78: 1.10008972e+01 sys_corr_79: 2.02339009e+01 - sys_corr_80: -1.38811838e+00 + sys_corr_80: 1.38811838e+00 sys_corr_81: -9.40690123e+00 - sys_corr_82: 1.44485551e+01 + sys_corr_82: -1.44485551e+01 sys_corr_83: -1.57489936e+01 sys_corr_84: -3.34160354e+00 sys_corr_85: -4.75949443e-01 - sys_corr_86: 1.34842364e+01 - sys_corr_87: 2.28185493e+01 + sys_corr_86: -1.34842364e+01 + sys_corr_87: -2.28185493e+01 sys_corr_88: 7.79805851e+00 sys_corr_89: 7.94616250e-01 - sys_corr_90: -1.62685351e-01 - sys_corr_91: -9.36309756e-01 - sys_corr_92: 4.32567196e+00 + sys_corr_90: 9.36309756e-01 + sys_corr_91: 1.62685351e-01 + sys_corr_92: -4.32567196e+00 sys_corr_93: -1.40492892e-01 sys_corr_94: -3.93877627e-01 - sys_corr_95: 2.81372753e-01 + sys_corr_95: -2.81372753e-01 sys_corr_96: 2.05035981e-02 - sys_corr_97: -4.22936483e-01 - sys_corr_98: -2.80503281e-01 + sys_corr_97: 4.22936483e-01 + sys_corr_98: 2.80503281e-01 sys_corr_99: 5.92754566e-01 - sys_corr_100: 1.03358261e+00 - sys_corr_101: 2.62640895e+00 - sys_corr_102: 5.80479553e+00 - sys_corr_103: -8.42341094e-01 - sys_corr_104: -2.08293155e+00 - sys_corr_105: 1.08214395e+00 + sys_corr_100: -1.08214395e+00 + sys_corr_101: -1.03358261e+00 + sys_corr_102: -2.62640895e+00 + sys_corr_103: 5.80479553e+00 + sys_corr_104: 8.42341094e-01 + sys_corr_105: 2.08293155e+00 sys_corr_106: 1.01044755e+00 sys_corr_107: 8.93081887e-01 - sys_corr_108: 1.43833449e-01 - sys_corr_109: 7.88724375e-02 - sys_corr_110: 3.40966102e-01 - sys_corr_111: -3.51371243e-01 - sys_corr_112: 2.70594548e-03 - sys_corr_113: -1.74735238e-02 - sys_corr_114: -3.61193040e-04 - sys_corr_115: -1.11989597e-02 + sys_corr_108: 7.88724375e-02 + sys_corr_109: -1.43833449e-01 + sys_corr_110: 3.51371243e-01 + sys_corr_111: -3.40966102e-01 + sys_corr_112: -2.70594548e-03 + sys_corr_113: 1.74735238e-02 + sys_corr_114: 3.61193040e-04 + sys_corr_115: 1.11989597e-02 sys_corr_116: -7.71543298e-03 - sys_corr_117: -1.05636597e-02 + sys_corr_117: 1.05636597e-02 sys_corr_118: 1.69150142e-02 sys_corr_119: -8.02690077e-03 sys_corr_120: 1.99492517e-02 sys_corr_121: 8.61227752e-03 - sys_corr_122: 5.39102954e-02 - sys_corr_123: 2.47000596e-02 - sys_corr_124: 1.62929624e-02 + sys_corr_122: 2.47000596e-02 + sys_corr_123: -5.39102954e-02 + sys_corr_124: -1.62929624e-02 sys_corr_125: -3.58456096e-02 sys_corr_126: 1.71427626e-02 - sys_corr_127: -7.07876545e-01 - sys_corr_128: -1.38984901e-01 - sys_corr_129: 1.66225687e-01 - sys_corr_130: 3.33891971e-04 - sys_corr_131: -2.90225506e-02 + sys_corr_127: 7.07876545e-01 + sys_corr_128: 1.38984901e-01 + sys_corr_129: -1.66225687e-01 + sys_corr_130: -3.33891971e-04 + sys_corr_131: 2.90225506e-02 sys_corr_132: 6.73207022e-02 stat: 0.0 luminosity: 4.05192876e+02 @@ -1482,17 +1482,17 @@ bins: sys_corr_6: -6.06445068e+02 sys_corr_7: 7.05677990e+01 sys_corr_8: 5.38357938e+01 - sys_corr_9: 3.61493016e+01 - sys_corr_10: 2.16222707e+01 + sys_corr_9: -3.61493016e+01 + sys_corr_10: -2.16222707e+01 sys_corr_11: 2.68231599e+01 - sys_corr_12: 2.30951151e+01 - sys_corr_13: 2.75608733e+00 + sys_corr_12: -2.30951151e+01 + sys_corr_13: -2.75608733e+00 sys_corr_14: 1.21056529e+00 sys_corr_15: -5.77467438e+00 sys_corr_16: 1.24059739e+01 - sys_corr_17: -2.23088312e+01 + sys_corr_17: 2.23088312e+01 sys_corr_18: -1.66771733e+01 - sys_corr_19: 2.81947818e+01 + sys_corr_19: -2.81947818e+01 sys_corr_20: 1.71107502e+01 sys_corr_21: 6.18641999e+00 sys_corr_22: 1.83898609e+02 @@ -1508,103 +1508,103 @@ bins: sys_corr_32: 1.83581126e+00 sys_corr_33: 1.31710323e+01 sys_corr_34: -1.83938497e+01 - sys_corr_35: -5.55418062e+00 - sys_corr_36: 4.69042448e-01 + sys_corr_35: 5.55418062e+00 + sys_corr_36: -4.69042448e-01 sys_corr_37: 3.14559121e+00 sys_corr_38: -1.82216078e+01 - sys_corr_39: -2.52409281e+01 - sys_corr_40: -5.24215700e-01 - sys_corr_41: 3.98917764e+01 + sys_corr_39: 2.52409281e+01 + sys_corr_40: 5.24215700e-01 + sys_corr_41: -3.98917764e+01 sys_corr_42: -1.37067037e+01 sys_corr_43: -1.15122789e+01 sys_corr_44: -2.27770493e+01 sys_corr_45: 1.80685856e+01 - sys_corr_46: 5.31808391e+00 - sys_corr_47: -1.24029860e+01 + sys_corr_46: -5.31808391e+00 + sys_corr_47: 1.24029860e+01 sys_corr_48: -3.27906348e+01 sys_corr_49: 1.69941735e+01 sys_corr_50: -3.99549187e+01 - sys_corr_51: 3.17104658e+00 - sys_corr_52: -2.21726580e+01 - sys_corr_53: -3.37108710e+01 + sys_corr_51: -3.17104658e+00 + sys_corr_52: 2.21726580e+01 + sys_corr_53: 3.37108710e+01 sys_corr_54: -3.26885957e+01 sys_corr_55: 5.43418810e+00 - sys_corr_56: 8.74458559e+00 + sys_corr_56: -8.74458559e+00 sys_corr_57: -4.68806623e+01 - sys_corr_58: -6.27146474e+01 + sys_corr_58: 6.27146474e+01 sys_corr_59: -4.28605162e+01 sys_corr_60: -1.95353471e+00 - sys_corr_61: -1.41032565e+02 - sys_corr_62: 6.76803314e+01 + sys_corr_61: 1.41032565e+02 + sys_corr_62: -6.76803314e+01 sys_corr_63: 7.24257743e+01 sys_corr_64: 6.53664541e+01 - sys_corr_65: 5.94301305e+00 - sys_corr_66: 4.64091910e+01 - sys_corr_67: -2.14373576e+01 + sys_corr_65: -5.94301305e+00 + sys_corr_66: -4.64091910e+01 + sys_corr_67: 2.14373576e+01 sys_corr_68: 3.89538147e+01 sys_corr_69: -3.76150212e+01 sys_corr_70: -6.65219125e+01 - sys_corr_71: 5.84349382e+01 - sys_corr_72: 2.51559914e+01 + sys_corr_71: -5.84349382e+01 + sys_corr_72: -2.51559914e+01 sys_corr_73: 4.44060743e+01 sys_corr_74: 3.13850967e+01 - sys_corr_75: -5.96233714e+00 - sys_corr_76: 9.76743244e+00 + sys_corr_75: 5.96233714e+00 + sys_corr_76: -9.76743244e+00 sys_corr_77: 1.26574558e+01 sys_corr_78: -7.17819960e+00 sys_corr_79: -2.59616184e+00 - sys_corr_80: -5.35799914e+00 + sys_corr_80: 5.35799914e+00 sys_corr_81: 1.65312527e+01 - sys_corr_82: -3.79774996e+00 + sys_corr_82: 3.79774996e+00 sys_corr_83: 1.02708332e+01 sys_corr_84: -9.56750556e+00 sys_corr_85: -2.44590682e+00 - sys_corr_86: 1.72069178e+01 - sys_corr_87: -4.69220188e+00 + sys_corr_86: -1.72069178e+01 + sys_corr_87: 4.69220188e+00 sys_corr_88: 1.06468615e+01 sys_corr_89: 6.63595654e-01 - sys_corr_90: -6.09996872e-01 - sys_corr_91: 2.48668321e+00 - sys_corr_92: 4.16452767e+00 + sys_corr_90: -2.48668321e+00 + sys_corr_91: 6.09996872e-01 + sys_corr_92: -4.16452767e+00 sys_corr_93: -3.38781769e-01 sys_corr_94: -4.32258326e-01 - sys_corr_95: -1.32405512e-01 + sys_corr_95: 1.32405512e-01 sys_corr_96: -1.12546220e-01 - sys_corr_97: 1.65038129e+00 - sys_corr_98: 6.97554381e-01 + sys_corr_97: -1.65038129e+00 + sys_corr_98: -6.97554381e-01 sys_corr_99: 8.50105124e-01 - sys_corr_100: 2.01328270e+00 - sys_corr_101: 3.89615900e+00 - sys_corr_102: 1.28198442e+01 - sys_corr_103: -1.91778160e+00 - sys_corr_104: -4.56140035e+00 - sys_corr_105: 2.06425134e+00 + sys_corr_100: -2.06425134e+00 + sys_corr_101: -2.01328270e+00 + sys_corr_102: -3.89615900e+00 + sys_corr_103: 1.28198442e+01 + sys_corr_104: 1.91778160e+00 + sys_corr_105: 4.56140035e+00 sys_corr_106: 1.74476620e+00 sys_corr_107: 8.28188522e-01 - sys_corr_108: 6.39530490e-01 - sys_corr_109: 4.79027980e-02 - sys_corr_110: 1.45383499e-01 - sys_corr_111: -2.99578396e-01 - sys_corr_112: 9.47414261e-03 - sys_corr_113: 4.83472297e-02 - sys_corr_114: 5.28684288e-04 - sys_corr_115: 1.15235289e-01 + sys_corr_108: 4.79027980e-02 + sys_corr_109: -6.39530490e-01 + sys_corr_110: 2.99578396e-01 + sys_corr_111: -1.45383499e-01 + sys_corr_112: -9.47414261e-03 + sys_corr_113: -4.83472297e-02 + sys_corr_114: -5.28684288e-04 + sys_corr_115: -1.15235289e-01 sys_corr_116: -5.97706441e-02 - sys_corr_117: -4.86541028e-02 + sys_corr_117: 4.86541028e-02 sys_corr_118: 3.15001183e-02 sys_corr_119: -5.54880192e-03 sys_corr_120: 3.42326143e-02 sys_corr_121: -1.01532086e-03 - sys_corr_122: 5.05771800e-02 - sys_corr_123: 2.08057719e-02 - sys_corr_124: -3.82925424e-02 + sys_corr_122: 2.08057719e-02 + sys_corr_123: -5.05771800e-02 + sys_corr_124: 3.82925424e-02 sys_corr_125: -4.17576178e-02 sys_corr_126: -2.48876416e-03 - sys_corr_127: -5.57900396e-01 - sys_corr_128: -1.85549881e-01 - sys_corr_129: -4.82801480e-02 - sys_corr_130: -9.96046162e-03 - sys_corr_131: -4.56089941e-02 + sys_corr_127: 5.57900396e-01 + sys_corr_128: 1.85549881e-01 + sys_corr_129: 4.82801480e-02 + sys_corr_130: 9.96046162e-03 + sys_corr_131: 4.56089941e-02 sys_corr_132: 1.78121855e-01 stat: 0.0 luminosity: 3.99131106e+02 @@ -1616,17 +1616,17 @@ bins: sys_corr_6: -4.98702275e+02 sys_corr_7: 9.30196333e+01 sys_corr_8: 5.50040829e+01 - sys_corr_9: 4.69616207e+01 - sys_corr_10: 7.79432502e+00 + sys_corr_9: -4.69616207e+01 + sys_corr_10: -7.79432502e+00 sys_corr_11: 6.72134636e+01 - sys_corr_12: 6.06910880e+01 - sys_corr_13: -3.71999748e+01 + sys_corr_12: -6.06910880e+01 + sys_corr_13: 3.71999748e+01 sys_corr_14: 1.04130123e+01 sys_corr_15: 7.59042614e+00 sys_corr_16: 8.26268283e+00 - sys_corr_17: -2.17944820e+01 + sys_corr_17: 2.17944820e+01 sys_corr_18: -3.66601218e+01 - sys_corr_19: 3.46074921e+01 + sys_corr_19: -3.46074921e+01 sys_corr_20: 2.21456996e+01 sys_corr_21: 1.15629850e+01 sys_corr_22: 2.33449519e+02 @@ -1642,103 +1642,103 @@ bins: sys_corr_32: 2.26982519e+01 sys_corr_33: 2.59910743e+01 sys_corr_34: -2.72298098e+01 - sys_corr_35: 1.06893013e+01 - sys_corr_36: 1.54408506e+01 + sys_corr_35: -1.06893013e+01 + sys_corr_36: -1.54408506e+01 sys_corr_37: -1.00784721e+01 sys_corr_38: -2.27744042e+01 - sys_corr_39: 1.52103851e+01 - sys_corr_40: -5.97142147e+00 - sys_corr_41: 1.50890059e+01 + sys_corr_39: -1.52103851e+01 + sys_corr_40: 5.97142147e+00 + sys_corr_41: -1.50890059e+01 sys_corr_42: 2.47641728e+01 sys_corr_43: -1.85130728e+01 sys_corr_44: -2.18565370e+01 sys_corr_45: 2.69524633e+01 - sys_corr_46: -3.65166881e+01 - sys_corr_47: 3.72431253e+01 + sys_corr_46: 3.65166881e+01 + sys_corr_47: -3.72431253e+01 sys_corr_48: -8.99191930e+00 sys_corr_49: 7.95031487e+00 sys_corr_50: -2.37642921e+01 - sys_corr_51: -6.53266963e+01 - sys_corr_52: -6.77067550e+01 - sys_corr_53: -2.52145462e+01 + sys_corr_51: 6.53266963e+01 + sys_corr_52: 6.77067550e+01 + sys_corr_53: 2.52145462e+01 sys_corr_54: 1.23755385e+02 sys_corr_55: -3.85075453e+01 - sys_corr_56: -2.98131216e+01 + sys_corr_56: 2.98131216e+01 sys_corr_57: 8.43380225e+00 - sys_corr_58: 1.55789483e+01 + sys_corr_58: -1.55789483e+01 sys_corr_59: -9.93364469e+01 sys_corr_60: -8.05071682e+00 - sys_corr_61: 7.82160188e+00 - sys_corr_62: 4.75135472e+01 + sys_corr_61: -7.82160188e+00 + sys_corr_62: -4.75135472e+01 sys_corr_63: 4.56835389e+01 sys_corr_64: -7.37514890e+01 - sys_corr_65: 3.75153586e+01 - sys_corr_66: -3.16104004e+01 - sys_corr_67: -2.13087536e+01 + sys_corr_65: -3.75153586e+01 + sys_corr_66: 3.16104004e+01 + sys_corr_67: 2.13087536e+01 sys_corr_68: -7.80195242e+01 sys_corr_69: 8.64506805e+01 sys_corr_70: 1.10949344e+01 - sys_corr_71: -3.59025585e+01 - sys_corr_72: -1.79631556e+00 + sys_corr_71: 3.59025585e+01 + sys_corr_72: 1.79631556e+00 sys_corr_73: -3.27980742e+01 sys_corr_74: -1.13538667e+01 - sys_corr_75: -1.24919562e+01 - sys_corr_76: -1.23652244e+01 + sys_corr_75: 1.24919562e+01 + sys_corr_76: 1.23652244e+01 sys_corr_77: -6.08823301e+00 sys_corr_78: -1.10216186e+01 sys_corr_79: 1.98427332e+01 - sys_corr_80: -4.20020755e+00 + sys_corr_80: 4.20020755e+00 sys_corr_81: -8.36265233e-01 - sys_corr_82: 1.14341566e+00 + sys_corr_82: -1.14341566e+00 sys_corr_83: 5.45076567e+00 sys_corr_84: 3.83629191e+00 sys_corr_85: 3.73805224e+00 - sys_corr_86: -1.01665989e+01 - sys_corr_87: -5.33432811e+00 + sys_corr_86: 1.01665989e+01 + sys_corr_87: 5.33432811e+00 sys_corr_88: -9.89013165e+00 sys_corr_89: 6.31341773e-01 - sys_corr_90: 2.44154505e-01 - sys_corr_91: -1.60976453e+00 - sys_corr_92: -1.43991371e+00 + sys_corr_90: 1.60976453e+00 + sys_corr_91: -2.44154505e-01 + sys_corr_92: 1.43991371e+00 sys_corr_93: 1.74561248e-01 sys_corr_94: 9.85784485e-01 - sys_corr_95: -1.54561344e+00 + sys_corr_95: 1.54561344e+00 sys_corr_96: -2.10127872e-01 - sys_corr_97: -4.34864889e-01 - sys_corr_98: -2.48330357e-01 + sys_corr_97: 4.34864889e-01 + sys_corr_98: 2.48330357e-01 sys_corr_99: 3.28063355e-01 - sys_corr_100: 1.14621664e+00 - sys_corr_101: 2.87737462e+00 - sys_corr_102: 6.58837753e+00 - sys_corr_103: -1.66025266e+00 - sys_corr_104: -2.01448206e+00 - sys_corr_105: 1.37969039e+00 + sys_corr_100: -1.37969039e+00 + sys_corr_101: -1.14621664e+00 + sys_corr_102: -2.87737462e+00 + sys_corr_103: 6.58837753e+00 + sys_corr_104: 1.66025266e+00 + sys_corr_105: 2.01448206e+00 sys_corr_106: 1.31123311e+00 sys_corr_107: 8.74637843e-01 - sys_corr_108: 1.57138250e-02 - sys_corr_109: -1.92998840e-01 - sys_corr_110: 7.05320998e-01 - sys_corr_111: -3.12239089e-01 - sys_corr_112: 2.93529365e-02 - sys_corr_113: 6.02497058e-02 - sys_corr_114: -1.76990475e-03 - sys_corr_115: -3.02467921e-03 + sys_corr_108: -1.92998840e-01 + sys_corr_109: -1.57138250e-02 + sys_corr_110: 3.12239089e-01 + sys_corr_111: -7.05320998e-01 + sys_corr_112: -2.93529365e-02 + sys_corr_113: -6.02497058e-02 + sys_corr_114: 1.76990475e-03 + sys_corr_115: 3.02467921e-03 sys_corr_116: -4.91343572e-02 - sys_corr_117: -3.25576874e-02 + sys_corr_117: 3.25576874e-02 sys_corr_118: 6.57449776e-02 sys_corr_119: -4.04635026e-04 sys_corr_120: 3.46504641e-02 sys_corr_121: 1.47523920e-02 - sys_corr_122: 6.38521231e-02 - sys_corr_123: 3.33182773e-02 - sys_corr_124: -3.37682282e-02 + sys_corr_122: 3.33182773e-02 + sys_corr_123: -6.38521231e-02 + sys_corr_124: 3.37682282e-02 sys_corr_125: -4.79589505e-02 sys_corr_126: 1.84694867e-02 - sys_corr_127: -1.20300938e-01 - sys_corr_128: -1.97512594e-01 - sys_corr_129: 7.96321741e-02 - sys_corr_130: 4.37601726e-03 - sys_corr_131: -3.57320346e-02 + sys_corr_127: 1.20300938e-01 + sys_corr_128: 1.97512594e-01 + sys_corr_129: -7.96321741e-02 + sys_corr_130: -4.37601726e-03 + sys_corr_131: 3.57320346e-02 sys_corr_132: -7.87090946e-02 stat: 0.0 luminosity: 3.97102684e+02 @@ -1750,17 +1750,17 @@ bins: sys_corr_6: -3.24895870e+02 sys_corr_7: 1.19861321e+02 sys_corr_8: 8.31545598e+01 - sys_corr_9: 7.43489728e+01 - sys_corr_10: 1.76039075e+01 + sys_corr_9: -7.43489728e+01 + sys_corr_10: -1.76039075e+01 sys_corr_11: 1.14994072e+02 - sys_corr_12: 1.20076154e+02 - sys_corr_13: -7.57923835e+01 + sys_corr_12: -1.20076154e+02 + sys_corr_13: 7.57923835e+01 sys_corr_14: 1.83754575e+01 sys_corr_15: 2.02308168e+01 sys_corr_16: 6.99811007e+00 - sys_corr_17: -2.43533910e+01 + sys_corr_17: 2.43533910e+01 sys_corr_18: -4.14516440e+01 - sys_corr_19: 3.88754545e+01 + sys_corr_19: -3.88754545e+01 sys_corr_20: 2.67148721e+01 sys_corr_21: 8.86476025e+00 sys_corr_22: 3.03731957e+02 @@ -1776,103 +1776,103 @@ bins: sys_corr_32: 1.05256406e+01 sys_corr_33: 1.42007348e+01 sys_corr_34: -1.13791058e+01 - sys_corr_35: 1.79725616e+00 - sys_corr_36: 2.35959985e+01 + sys_corr_35: -1.79725616e+00 + sys_corr_36: -2.35959985e+01 sys_corr_37: -4.93211609e+00 sys_corr_38: -1.27831564e+01 - sys_corr_39: 3.91191454e+01 - sys_corr_40: -3.27866065e+01 - sys_corr_41: 7.89445161e+01 + sys_corr_39: -3.91191454e+01 + sys_corr_40: 3.27866065e+01 + sys_corr_41: -7.89445161e+01 sys_corr_42: 2.51841522e+00 sys_corr_43: 1.11688179e+00 sys_corr_44: 9.82791394e-01 sys_corr_45: -1.41118268e+01 - sys_corr_46: 3.15070995e+01 - sys_corr_47: 2.31492446e+01 + sys_corr_46: -3.15070995e+01 + sys_corr_47: -2.31492446e+01 sys_corr_48: -7.44198902e+01 sys_corr_49: -2.88162805e+01 sys_corr_50: -4.00931668e+01 - sys_corr_51: 1.29642689e+02 - sys_corr_52: 1.75429613e+01 - sys_corr_53: -6.07447033e+00 + sys_corr_51: -1.29642689e+02 + sys_corr_52: -1.75429613e+01 + sys_corr_53: 6.07447033e+00 sys_corr_54: -1.14451915e+02 sys_corr_55: 1.61305000e+01 - sys_corr_56: 1.36346341e+02 + sys_corr_56: -1.36346341e+02 sys_corr_57: -2.70128767e+01 - sys_corr_58: -1.34364223e+01 + sys_corr_58: 1.34364223e+01 sys_corr_59: -9.39479277e+00 sys_corr_60: 2.32206154e+01 - sys_corr_61: 2.15217055e+01 - sys_corr_62: -2.71682089e+00 + sys_corr_61: -2.15217055e+01 + sys_corr_62: 2.71682089e+00 sys_corr_63: -3.98821861e+01 sys_corr_64: -2.82666344e+01 - sys_corr_65: -1.06846207e+01 - sys_corr_66: -2.35786679e+01 - sys_corr_67: 2.36120005e+01 + sys_corr_65: 1.06846207e+01 + sys_corr_66: 2.35786679e+01 + sys_corr_67: -2.36120005e+01 sys_corr_68: -5.73594088e+00 sys_corr_69: 3.42508595e+01 sys_corr_70: 3.65242352e+01 - sys_corr_71: -5.63828726e+01 - sys_corr_72: -1.44475879e+01 + sys_corr_71: 5.63828726e+01 + sys_corr_72: 1.44475879e+01 sys_corr_73: -1.68309035e+01 sys_corr_74: -3.03268048e+01 - sys_corr_75: -4.43617072e+00 - sys_corr_76: -2.74202965e+00 + sys_corr_75: 4.43617072e+00 + sys_corr_76: 2.74202965e+00 sys_corr_77: -8.97122939e+00 sys_corr_78: -1.58231384e+00 sys_corr_79: -1.87611254e+00 - sys_corr_80: -5.64894351e-01 + sys_corr_80: 5.64894351e-01 sys_corr_81: -1.97276853e+00 - sys_corr_82: -2.97712417e+00 + sys_corr_82: 2.97712417e+00 sys_corr_83: 5.61894305e-01 sys_corr_84: 5.40726355e-01 sys_corr_85: 2.64357228e+00 - sys_corr_86: -1.09715391e+01 - sys_corr_87: -7.52644073e+00 + sys_corr_86: 1.09715391e+01 + sys_corr_87: 7.52644073e+00 sys_corr_88: -1.03065205e+01 sys_corr_89: -1.35059961e-01 - sys_corr_90: -1.26789791e+00 - sys_corr_91: -2.63731054e+00 - sys_corr_92: -3.91473902e+00 + sys_corr_90: 2.63731054e+00 + sys_corr_91: 1.26789791e+00 + sys_corr_92: 3.91473902e+00 sys_corr_93: 4.66899413e-01 sys_corr_94: 1.33759948e+00 - sys_corr_95: -1.00382199e+00 + sys_corr_95: 1.00382199e+00 sys_corr_96: 9.25330747e-02 - sys_corr_97: -1.13734465e+00 - sys_corr_98: -4.38711159e-01 + sys_corr_97: 1.13734465e+00 + sys_corr_98: 4.38711159e-01 sys_corr_99: -6.27816209e-01 - sys_corr_100: -1.53375290e-02 - sys_corr_101: -1.88225668e-01 - sys_corr_102: -3.34539733e+00 - sys_corr_103: 2.51441386e-01 - sys_corr_104: 1.51444792e+00 - sys_corr_105: 9.26297143e-02 + sys_corr_100: -9.26297143e-02 + sys_corr_101: 1.53375290e-02 + sys_corr_102: 1.88225668e-01 + sys_corr_103: -3.34539733e+00 + sys_corr_104: -2.51441386e-01 + sys_corr_105: -1.51444792e+00 sys_corr_106: -4.13954293e-02 sys_corr_107: 5.88808169e-02 - sys_corr_108: -8.05788933e-02 - sys_corr_109: 1.00266524e-01 - sys_corr_110: -1.67613518e-01 - sys_corr_111: 1.27665224e-01 - sys_corr_112: 3.88421321e-02 - sys_corr_113: -1.45689614e-02 - sys_corr_114: 2.06254703e-04 - sys_corr_115: 3.82465665e-03 + sys_corr_108: 1.00266524e-01 + sys_corr_109: 8.05788933e-02 + sys_corr_110: -1.27665224e-01 + sys_corr_111: 1.67613518e-01 + sys_corr_112: -3.88421321e-02 + sys_corr_113: 1.45689614e-02 + sys_corr_114: -2.06254703e-04 + sys_corr_115: -3.82465665e-03 sys_corr_116: -6.77702197e-02 - sys_corr_117: -3.20989513e-02 + sys_corr_117: 3.20989513e-02 sys_corr_118: 1.44524200e-02 sys_corr_119: 5.53890344e-03 sys_corr_120: 3.86700592e-02 sys_corr_121: 4.53463149e-03 - sys_corr_122: 1.84858564e-02 - sys_corr_123: 1.18663536e-02 - sys_corr_124: -1.07679585e-01 + sys_corr_122: 1.18663536e-02 + sys_corr_123: -1.84858564e-02 + sys_corr_124: 1.07679585e-01 sys_corr_125: -3.38754379e-02 sys_corr_126: 3.36679742e-03 - sys_corr_127: 8.97127578e-02 - sys_corr_128: -1.07189439e-02 - sys_corr_129: -4.46416915e-02 - sys_corr_130: -9.24892816e-03 - sys_corr_131: -3.24452979e-02 + sys_corr_127: -8.97127578e-02 + sys_corr_128: 1.07189439e-02 + sys_corr_129: 4.46416915e-02 + sys_corr_130: 9.24892816e-03 + sys_corr_131: 3.24452979e-02 sys_corr_132: 3.95183824e-02 stat: 0.0 luminosity: 3.92326968e+02 @@ -1884,17 +1884,17 @@ bins: sys_corr_6: -2.10235739e+02 sys_corr_7: 1.42618891e+02 sys_corr_8: 9.66513783e+01 - sys_corr_9: 8.19778576e+01 - sys_corr_10: 2.36136251e+01 + sys_corr_9: -8.19778576e+01 + sys_corr_10: -2.36136251e+01 sys_corr_11: 1.41696997e+02 - sys_corr_12: 1.70065373e+02 - sys_corr_13: -1.07740667e+02 + sys_corr_12: -1.70065373e+02 + sys_corr_13: 1.07740667e+02 sys_corr_14: 2.65116694e+01 sys_corr_15: 2.98494230e+01 sys_corr_16: 4.42241350e+00 - sys_corr_17: -1.81532785e+01 + sys_corr_17: 1.81532785e+01 sys_corr_18: -4.27286929e+01 - sys_corr_19: 3.27095364e+01 + sys_corr_19: -3.27095364e+01 sys_corr_20: 3.04564929e+01 sys_corr_21: 1.76009409e+01 sys_corr_22: 2.98246881e+02 @@ -1910,103 +1910,103 @@ bins: sys_corr_32: 1.18673085e+00 sys_corr_33: -6.64920797e-01 sys_corr_34: -6.19160097e+00 - sys_corr_35: -7.20503927e+00 - sys_corr_36: -1.79797406e+00 + sys_corr_35: 7.20503927e+00 + sys_corr_36: 1.79797406e+00 sys_corr_37: 1.42586998e+01 sys_corr_38: 4.70291970e+00 - sys_corr_39: -1.20760400e+01 - sys_corr_40: -5.40825632e+01 - sys_corr_41: -1.84974586e+01 + sys_corr_39: 1.20760400e+01 + sys_corr_40: 5.40825632e+01 + sys_corr_41: 1.84974586e+01 sys_corr_42: -2.08955090e+00 sys_corr_43: -2.77467644e+01 sys_corr_44: 3.41531197e+01 sys_corr_45: 4.23402853e+01 - sys_corr_46: 4.44010324e+01 - sys_corr_47: 1.24013924e+01 + sys_corr_46: -4.44010324e+01 + sys_corr_47: -1.24013924e+01 sys_corr_48: 9.27119831e+00 sys_corr_49: 2.62079620e+01 sys_corr_50: -1.21681026e+00 - sys_corr_51: 4.29022054e+01 - sys_corr_52: 7.03049603e+01 - sys_corr_53: 2.01754545e+01 + sys_corr_51: -4.29022054e+01 + sys_corr_52: -7.03049603e+01 + sys_corr_53: -2.01754545e+01 sys_corr_54: -5.91122970e+00 sys_corr_55: 5.34259859e+01 - sys_corr_56: -1.83725582e+02 + sys_corr_56: 1.83725582e+02 sys_corr_57: -2.93672108e+01 - sys_corr_58: -1.04743243e+00 + sys_corr_58: 1.04743243e+00 sys_corr_59: 1.01037037e+02 sys_corr_60: -5.88831889e+00 - sys_corr_61: -2.88698920e+00 - sys_corr_62: 2.70232562e+00 + sys_corr_61: 2.88698920e+00 + sys_corr_62: -2.70232562e+00 sys_corr_63: 6.03436097e+01 sys_corr_64: -2.01757730e+00 - sys_corr_65: 1.90225896e+00 - sys_corr_66: -5.79853872e+01 - sys_corr_67: 1.82935800e+01 + sys_corr_65: -1.90225896e+00 + sys_corr_66: 5.79853872e+01 + sys_corr_67: -1.82935800e+01 sys_corr_68: 5.09257305e+01 sys_corr_69: 6.70098937e+00 sys_corr_70: 2.36657923e+01 - sys_corr_71: -6.04568619e+01 - sys_corr_72: 1.30915811e+00 + sys_corr_71: 6.04568619e+01 + sys_corr_72: -1.30915811e+00 sys_corr_73: -7.68074674e-01 sys_corr_74: -1.06481125e+00 - sys_corr_75: -4.18182513e+00 - sys_corr_76: -4.09576980e+00 + sys_corr_75: 4.18182513e+00 + sys_corr_76: 4.09576980e+00 sys_corr_77: -1.54703495e+00 sys_corr_78: -1.94928588e+00 sys_corr_79: -7.71209709e+00 - sys_corr_80: -2.77678774e+00 + sys_corr_80: 2.77678774e+00 sys_corr_81: -2.75281505e+00 - sys_corr_82: 1.01040805e+00 + sys_corr_82: -1.01040805e+00 sys_corr_83: 2.38682436e+00 sys_corr_84: 2.16340226e+00 sys_corr_85: 1.14818155e+00 - sys_corr_86: -9.48850008e+00 - sys_corr_87: 1.35524293e+00 + sys_corr_86: 9.48850008e+00 + sys_corr_87: -1.35524293e+00 sys_corr_88: -4.37336880e+00 sys_corr_89: 8.75781606e-01 - sys_corr_90: -3.80597779e-01 - sys_corr_91: -1.65579509e+00 - sys_corr_92: -1.65913846e-02 + sys_corr_90: 1.65579509e+00 + sys_corr_91: 3.80597779e-01 + sys_corr_92: 1.65913846e-02 sys_corr_93: 1.77667231e-01 sys_corr_94: 3.39775820e-01 - sys_corr_95: -4.45793553e-01 + sys_corr_95: 4.45793553e-01 sys_corr_96: 4.27799546e-02 - sys_corr_97: -1.10640100e+00 - sys_corr_98: -5.15326800e-02 + sys_corr_97: 1.10640100e+00 + sys_corr_98: 5.15326800e-02 sys_corr_99: -2.76046213e-01 - sys_corr_100: 3.15270965e-01 - sys_corr_101: 7.58748036e-01 - sys_corr_102: 6.87561510e-01 - sys_corr_103: -6.37325692e-01 - sys_corr_104: -4.11142430e-02 - sys_corr_105: 6.79935550e-01 + sys_corr_100: -6.79935550e-01 + sys_corr_101: -3.15270965e-01 + sys_corr_102: -7.58748036e-01 + sys_corr_103: 6.87561510e-01 + sys_corr_104: 6.37325692e-01 + sys_corr_105: 4.11142430e-02 sys_corr_106: 4.45328957e-01 sys_corr_107: 6.17801747e-01 - sys_corr_108: -1.92861557e-01 - sys_corr_109: -1.10994708e-01 - sys_corr_110: -2.44988024e-01 - sys_corr_111: -1.73486460e-01 - sys_corr_112: -3.30137892e-02 - sys_corr_113: -6.45203775e-02 - sys_corr_114: -8.23561246e-04 - sys_corr_115: -9.34327411e-02 + sys_corr_108: -1.10994708e-01 + sys_corr_109: 1.92861557e-01 + sys_corr_110: 1.73486460e-01 + sys_corr_111: 2.44988024e-01 + sys_corr_112: 3.30137892e-02 + sys_corr_113: 6.45203775e-02 + sys_corr_114: 8.23561246e-04 + sys_corr_115: 9.34327411e-02 sys_corr_116: -8.83084269e-03 - sys_corr_117: -1.62109642e-02 + sys_corr_117: 1.62109642e-02 sys_corr_118: -1.04060952e-01 sys_corr_119: -9.12952566e-03 sys_corr_120: 1.96809956e-02 sys_corr_121: 5.56941565e-03 - sys_corr_122: 1.59931435e-02 - sys_corr_123: 7.08996264e-03 - sys_corr_124: -3.01771278e-02 + sys_corr_122: 7.08996264e-03 + sys_corr_123: -1.59931435e-02 + sys_corr_124: 3.01771278e-02 sys_corr_125: -6.91658967e-03 sys_corr_126: -7.40314298e-03 - sys_corr_127: 2.78462293e-02 - sys_corr_128: -1.35234769e-01 - sys_corr_129: 1.09256894e-01 - sys_corr_130: 1.96230755e-04 - sys_corr_131: -4.74961068e-03 + sys_corr_127: -2.78462293e-02 + sys_corr_128: 1.35234769e-01 + sys_corr_129: -1.09256894e-01 + sys_corr_130: -1.96230755e-04 + sys_corr_131: 4.74961068e-03 sys_corr_132: -8.65735464e-03 stat: 0.0 luminosity: 3.85649990e+02 @@ -2018,17 +2018,17 @@ bins: sys_corr_6: -1.52800909e+02 sys_corr_7: 1.57605101e+02 sys_corr_8: 1.03580033e+02 - sys_corr_9: 9.84204714e+01 - sys_corr_10: 2.73495301e+01 + sys_corr_9: -9.84204714e+01 + sys_corr_10: -2.73495301e+01 sys_corr_11: 1.65713813e+02 - sys_corr_12: 2.09677450e+02 - sys_corr_13: -1.31385577e+02 + sys_corr_12: -2.09677450e+02 + sys_corr_13: 1.31385577e+02 sys_corr_14: 3.79139980e+01 sys_corr_15: 3.53585834e+01 sys_corr_16: 7.21637264e-01 - sys_corr_17: -1.17427520e+01 + sys_corr_17: 1.17427520e+01 sys_corr_18: -4.20641574e+01 - sys_corr_19: 2.24472241e+01 + sys_corr_19: -2.24472241e+01 sys_corr_20: 2.44303209e+01 sys_corr_21: 2.05861017e+01 sys_corr_22: 2.75964386e+02 @@ -2044,103 +2044,103 @@ bins: sys_corr_32: 1.74004001e+01 sys_corr_33: -2.01707853e+01 sys_corr_34: -2.51864793e+01 - sys_corr_35: -1.02280518e+01 - sys_corr_36: -1.07212226e+01 + sys_corr_35: 1.02280518e+01 + sys_corr_36: 1.07212226e+01 sys_corr_37: -4.51487894e+00 sys_corr_38: 1.04901761e+01 - sys_corr_39: -2.50912718e+01 - sys_corr_40: 2.80201340e+01 - sys_corr_41: -4.86957774e+01 + sys_corr_39: 2.50912718e+01 + sys_corr_40: -2.80201340e+01 + sys_corr_41: 4.86957774e+01 sys_corr_42: -2.70121351e+01 sys_corr_43: -6.98413423e+00 sys_corr_44: 6.64472538e+00 sys_corr_45: -1.23855967e+01 - sys_corr_46: -2.40171053e+01 - sys_corr_47: -3.13742716e+01 + sys_corr_46: 2.40171053e+01 + sys_corr_47: 3.13742716e+01 sys_corr_48: 4.55751839e+01 sys_corr_49: -1.62284682e+01 sys_corr_50: 2.90597037e+00 - sys_corr_51: -6.32298643e+01 - sys_corr_52: 1.20444256e+01 - sys_corr_53: 6.09034645e+01 + sys_corr_51: 6.32298643e+01 + sys_corr_52: -1.20444256e+01 + sys_corr_53: -6.09034645e+01 sys_corr_54: -1.77910472e-01 sys_corr_55: -1.83899149e+01 - sys_corr_56: 6.56540385e+00 + sys_corr_56: -6.56540385e+00 sys_corr_57: -6.28276755e+01 - sys_corr_58: -1.54443416e+01 + sys_corr_58: 1.54443416e+01 sys_corr_59: -8.05439404e+00 sys_corr_60: 1.29673077e+01 - sys_corr_61: 1.11011563e+02 - sys_corr_62: 7.15014718e+01 + sys_corr_61: -1.11011563e+02 + sys_corr_62: -7.15014718e+01 sys_corr_63: -2.22459377e+01 sys_corr_64: -4.32985590e+01 - sys_corr_65: -1.38974932e+02 - sys_corr_66: 3.45922044e+01 - sys_corr_67: 6.02701300e+01 + sys_corr_65: 1.38974932e+02 + sys_corr_66: -3.45922044e+01 + sys_corr_67: -6.02701300e+01 sys_corr_68: 1.46936638e+01 sys_corr_69: -1.37553122e+01 sys_corr_70: -4.38832681e+01 - sys_corr_71: 6.85746427e+01 - sys_corr_72: -1.80651266e+00 + sys_corr_71: -6.85746427e+01 + sys_corr_72: 1.80651266e+00 sys_corr_73: -8.38626219e+00 sys_corr_74: -1.40504366e+00 - sys_corr_75: 4.09696570e+00 - sys_corr_76: 1.11037862e+01 + sys_corr_75: -4.09696570e+00 + sys_corr_76: -1.11037862e+01 sys_corr_77: -1.33238061e+00 sys_corr_78: -1.02830704e-01 sys_corr_79: -3.34756861e+00 - sys_corr_80: 4.59865466e+00 + sys_corr_80: -4.59865466e+00 sys_corr_81: 6.05748596e+00 - sys_corr_82: -5.04221086e-01 + sys_corr_82: 5.04221086e-01 sys_corr_83: 2.48454417e+00 sys_corr_84: -3.11351087e+00 sys_corr_85: -1.53695320e-01 - sys_corr_86: 1.54623185e+01 - sys_corr_87: -4.27969082e+00 + sys_corr_86: -1.54623185e+01 + sys_corr_87: 4.27969082e+00 sys_corr_88: 1.03257461e+01 sys_corr_89: 5.28522859e-01 - sys_corr_90: 5.69619668e-01 - sys_corr_91: 4.98342305e-01 - sys_corr_92: -8.91978424e+00 + sys_corr_90: -4.98342305e-01 + sys_corr_91: -5.69619668e-01 + sys_corr_92: 8.91978424e+00 sys_corr_93: 3.40253288e-01 sys_corr_94: 1.20090570e+00 - sys_corr_95: -2.72270373e-01 + sys_corr_95: 2.72270373e-01 sys_corr_96: 1.58024314e-01 - sys_corr_97: -8.68749207e-01 - sys_corr_98: -1.66693426e-01 + sys_corr_97: 8.68749207e-01 + sys_corr_98: 1.66693426e-01 sys_corr_99: -4.68345725e-01 - sys_corr_100: -7.62038363e-02 - sys_corr_101: -2.15149561e-02 - sys_corr_102: -1.62290956e-01 - sys_corr_103: -5.58081903e-02 - sys_corr_104: 3.49843285e-01 - sys_corr_105: 9.01043561e-02 + sys_corr_100: -9.01043561e-02 + sys_corr_101: 7.62038363e-02 + sys_corr_102: 2.15149561e-02 + sys_corr_103: -1.62290956e-01 + sys_corr_104: 5.58081903e-02 + sys_corr_105: -3.49843285e-01 sys_corr_106: -6.57985640e-02 sys_corr_107: 1.09838164e-01 - sys_corr_108: -3.14052557e-03 - sys_corr_109: 5.09063180e-02 - sys_corr_110: -2.00039217e-01 - sys_corr_111: -1.67385903e-02 - sys_corr_112: 5.50554799e-02 - sys_corr_113: -4.24599405e-02 - sys_corr_114: 3.48830038e-07 - sys_corr_115: -4.57195967e-02 + sys_corr_108: 5.09063180e-02 + sys_corr_109: 3.14052557e-03 + sys_corr_110: 1.67385903e-02 + sys_corr_111: 2.00039217e-01 + sys_corr_112: -5.50554799e-02 + sys_corr_113: 4.24599405e-02 + sys_corr_114: -3.48830038e-07 + sys_corr_115: 4.57195967e-02 sys_corr_116: 4.46890916e-02 - sys_corr_117: 3.70507240e-02 + sys_corr_117: -3.70507240e-02 sys_corr_118: -4.41802594e-02 sys_corr_119: 2.01891957e-03 sys_corr_120: -2.37398324e-02 sys_corr_121: -2.48758014e-03 - sys_corr_122: -2.12717450e-02 - sys_corr_123: -7.52598080e-03 - sys_corr_124: 4.16398067e-02 + sys_corr_122: -7.52598080e-03 + sys_corr_123: 2.12717450e-02 + sys_corr_124: -4.16398067e-02 sys_corr_125: 2.72371903e-02 sys_corr_126: 6.40327928e-03 - sys_corr_127: -1.69544487e-01 - sys_corr_128: -1.63580347e-02 - sys_corr_129: -6.55694381e-02 - sys_corr_130: 3.82391325e-03 - sys_corr_131: 1.45059238e-02 + sys_corr_127: 1.69544487e-01 + sys_corr_128: 1.63580347e-02 + sys_corr_129: 6.55694381e-02 + sys_corr_130: -3.82391325e-03 + sys_corr_131: -1.45059238e-02 sys_corr_132: -1.53362961e-02 stat: 0.0 luminosity: 3.84183272e+02 @@ -2152,17 +2152,17 @@ bins: sys_corr_6: -9.60965742e+01 sys_corr_7: 1.82504019e+02 sys_corr_8: 1.20696074e+02 - sys_corr_9: 1.16523849e+02 - sys_corr_10: 2.73080095e+01 + sys_corr_9: -1.16523849e+02 + sys_corr_10: -2.73080095e+01 sys_corr_11: 1.86547242e+02 - sys_corr_12: 2.44455940e+02 - sys_corr_13: -1.50435250e+02 + sys_corr_12: -2.44455940e+02 + sys_corr_13: 1.50435250e+02 sys_corr_14: 4.28654112e+01 sys_corr_15: 4.25403066e+01 sys_corr_16: 1.47012182e+00 - sys_corr_17: -2.01327335e+00 + sys_corr_17: 2.01327335e+00 sys_corr_18: -4.69246637e+01 - sys_corr_19: 2.47020054e+01 + sys_corr_19: -2.47020054e+01 sys_corr_20: 2.70963597e+01 sys_corr_21: 2.11034390e+01 sys_corr_22: 2.53280162e+02 @@ -2178,103 +2178,103 @@ bins: sys_corr_32: -5.59745419e-02 sys_corr_33: -1.17589738e+01 sys_corr_34: -1.52644803e+01 - sys_corr_35: 1.14544566e+01 - sys_corr_36: -2.64199768e+00 + sys_corr_35: -1.14544566e+01 + sys_corr_36: 2.64199768e+00 sys_corr_37: 1.53913796e+01 sys_corr_38: -6.07730796e-01 - sys_corr_39: -7.63530355e+00 - sys_corr_40: 2.41927123e+01 - sys_corr_41: -1.10200348e+01 + sys_corr_39: 7.63530355e+00 + sys_corr_40: -2.41927123e+01 + sys_corr_41: 1.10200348e+01 sys_corr_42: -1.22630771e+01 sys_corr_43: -2.39009287e+00 sys_corr_44: 1.97621490e+01 sys_corr_45: -2.10728945e+01 - sys_corr_46: 5.10625604e+00 - sys_corr_47: -1.67214085e+00 + sys_corr_46: -5.10625604e+00 + sys_corr_47: 1.67214085e+00 sys_corr_48: 5.01737883e+01 sys_corr_49: -2.35210522e+01 sys_corr_50: 1.56589673e+01 - sys_corr_51: -4.48532328e+01 - sys_corr_52: 2.91931783e+00 - sys_corr_53: 3.13103254e+01 + sys_corr_51: 4.48532328e+01 + sys_corr_52: -2.91931783e+00 + sys_corr_53: -3.13103254e+01 sys_corr_54: 8.69653237e+00 sys_corr_55: -1.11946375e+01 - sys_corr_56: 6.04168163e+01 + sys_corr_56: -6.04168163e+01 sys_corr_57: -3.60466080e+01 - sys_corr_58: -2.49311267e+01 + sys_corr_58: 2.49311267e+01 sys_corr_59: 1.98899192e+01 sys_corr_60: 4.14098999e+01 - sys_corr_61: 3.40106225e+01 - sys_corr_62: -1.56657327e+02 + sys_corr_61: -3.40106225e+01 + sys_corr_62: 1.56657327e+02 sys_corr_63: 7.50470209e+01 sys_corr_64: -1.33209065e+01 - sys_corr_65: 5.83244706e+01 - sys_corr_66: -4.24668774e+00 - sys_corr_67: -1.15603715e+02 + sys_corr_65: -5.83244706e+01 + sys_corr_66: 4.24668774e+00 + sys_corr_67: 1.15603715e+02 sys_corr_68: 6.27730946e+00 sys_corr_69: -3.96477258e+01 sys_corr_70: 2.21998046e+01 - sys_corr_71: 4.84584605e+01 - sys_corr_72: -1.40067058e+00 + sys_corr_71: -4.84584605e+01 + sys_corr_72: 1.40067058e+00 sys_corr_73: -1.95808069e+01 sys_corr_74: 2.75422123e+01 - sys_corr_75: 8.35642842e+00 - sys_corr_76: 1.66457756e+01 + sys_corr_75: -8.35642842e+00 + sys_corr_76: -1.66457756e+01 sys_corr_77: 5.75525206e+00 sys_corr_78: -4.82444883e-01 sys_corr_79: 7.42903017e+00 - sys_corr_80: 5.13044962e+00 + sys_corr_80: -5.13044962e+00 sys_corr_81: -5.21570709e+00 - sys_corr_82: -5.34011211e+00 + sys_corr_82: 5.34011211e+00 sys_corr_83: 4.92089839e-01 sys_corr_84: 1.78721243e+00 sys_corr_85: -6.95919991e+00 - sys_corr_86: 3.34092181e+00 - sys_corr_87: -1.75178239e+01 + sys_corr_86: -3.34092181e+00 + sys_corr_87: 1.75178239e+01 sys_corr_88: 6.22363184e+00 sys_corr_89: -2.42544993e-02 - sys_corr_90: 2.50035287e+00 - sys_corr_91: -2.23226066e+00 - sys_corr_92: -6.95817612e+00 + sys_corr_90: 2.23226066e+00 + sys_corr_91: -2.50035287e+00 + sys_corr_92: 6.95817612e+00 sys_corr_93: 1.13681664e-01 sys_corr_94: -3.05249622e-02 - sys_corr_95: 1.29730899e+00 + sys_corr_95: -1.29730899e+00 sys_corr_96: 3.25410190e-01 - sys_corr_97: -9.49598215e-01 - sys_corr_98: -2.02928290e-01 + sys_corr_97: 9.49598215e-01 + sys_corr_98: 2.02928290e-01 sys_corr_99: -4.94596979e-01 - sys_corr_100: -6.28051569e-01 - sys_corr_101: -8.92499412e-01 - sys_corr_102: -2.95173374e+00 - sys_corr_103: 7.45645506e-01 - sys_corr_104: 9.03733635e-01 - sys_corr_105: -7.74634209e-01 + sys_corr_100: 7.74634209e-01 + sys_corr_101: 6.28051569e-01 + sys_corr_102: 8.92499412e-01 + sys_corr_103: -2.95173374e+00 + sys_corr_104: -7.45645506e-01 + sys_corr_105: -9.03733635e-01 sys_corr_106: -5.64645068e-01 sys_corr_107: -4.11114974e-01 - sys_corr_108: 4.94581249e-02 - sys_corr_109: -1.40478400e-01 - sys_corr_110: -3.82171503e-01 - sys_corr_111: 4.45612650e-01 - sys_corr_112: -5.49613118e-02 - sys_corr_113: 6.97577286e-02 - sys_corr_114: -7.92159579e-04 - sys_corr_115: -1.37247498e-01 + sys_corr_108: -1.40478400e-01 + sys_corr_109: -4.94581249e-02 + sys_corr_110: -4.45612650e-01 + sys_corr_111: 3.82171503e-01 + sys_corr_112: 5.49613118e-02 + sys_corr_113: -6.97577286e-02 + sys_corr_114: 7.92159579e-04 + sys_corr_115: 1.37247498e-01 sys_corr_116: 8.58698406e-02 - sys_corr_117: 4.62799285e-02 + sys_corr_117: -4.62799285e-02 sys_corr_118: -1.32420554e-01 sys_corr_119: -4.56392213e-03 sys_corr_120: -5.02244924e-02 sys_corr_121: -1.25557440e-02 - sys_corr_122: -8.98756634e-02 - sys_corr_123: -4.90228884e-02 - sys_corr_124: 6.44190322e-02 + sys_corr_122: -4.90228884e-02 + sys_corr_123: 8.98756634e-02 + sys_corr_124: -6.44190322e-02 sys_corr_125: 6.68866435e-02 sys_corr_126: -1.25530620e-02 - sys_corr_127: 2.13677547e-01 - sys_corr_128: -6.69580232e-02 - sys_corr_129: -4.40963392e-02 - sys_corr_130: 1.22065765e-02 - sys_corr_131: 5.13448149e-02 + sys_corr_127: -2.13677547e-01 + sys_corr_128: 6.69580232e-02 + sys_corr_129: 4.40963392e-02 + sys_corr_130: -1.22065765e-02 + sys_corr_131: -5.13448149e-02 sys_corr_132: -8.32628226e-02 stat: 0.0 luminosity: 3.71965572e+02 @@ -2286,17 +2286,17 @@ bins: sys_corr_6: -8.65273787e+01 sys_corr_7: 2.18795107e+02 sys_corr_8: 1.42881033e+02 - sys_corr_9: 1.50284555e+02 - sys_corr_10: 3.21063375e+01 + sys_corr_9: -1.50284555e+02 + sys_corr_10: -3.21063375e+01 sys_corr_11: 2.30340975e+02 - sys_corr_12: 3.20458427e+02 - sys_corr_13: -1.97320033e+02 + sys_corr_12: -3.20458427e+02 + sys_corr_13: 1.97320033e+02 sys_corr_14: 5.97479331e+01 sys_corr_15: 5.47085949e+01 sys_corr_16: -1.11957783e+01 - sys_corr_17: 8.99168519e+00 + sys_corr_17: -8.99168519e+00 sys_corr_18: -4.27947833e+01 - sys_corr_19: 1.10787993e+01 + sys_corr_19: -1.10787993e+01 sys_corr_20: 2.89125517e+01 sys_corr_21: 2.49701230e+01 sys_corr_22: 2.30446160e+02 @@ -2312,103 +2312,103 @@ bins: sys_corr_32: 1.97211204e+00 sys_corr_33: -7.25299163e+00 sys_corr_34: -8.93109930e+00 - sys_corr_35: -1.80044271e+01 - sys_corr_36: -8.44811980e-01 + sys_corr_35: 1.80044271e+01 + sys_corr_36: 8.44811980e-01 sys_corr_37: -6.20003530e+00 sys_corr_38: 4.79345221e+00 - sys_corr_39: -2.16525459e+01 - sys_corr_40: 1.50151759e+01 - sys_corr_41: -3.01730621e+01 + sys_corr_39: 2.16525459e+01 + sys_corr_40: -1.50151759e+01 + sys_corr_41: 3.01730621e+01 sys_corr_42: 8.02116779e+00 sys_corr_43: 3.51162171e+01 sys_corr_44: 3.79103157e+01 sys_corr_45: 2.99762495e+01 - sys_corr_46: -2.05830039e+01 - sys_corr_47: -1.33967041e+01 + sys_corr_46: 2.05830039e+01 + sys_corr_47: 1.33967041e+01 sys_corr_48: 2.01256897e+01 sys_corr_49: 6.56756851e+00 sys_corr_50: 4.09886679e+01 - sys_corr_51: 1.03754372e+01 - sys_corr_52: -1.91242159e+01 - sys_corr_53: 1.43376812e+02 + sys_corr_51: -1.03754372e+01 + sys_corr_52: 1.91242159e+01 + sys_corr_53: -1.43376812e+02 sys_corr_54: 1.21268166e+01 sys_corr_55: 2.53627480e+01 - sys_corr_56: 4.59166839e+00 + sys_corr_56: -4.59166839e+00 sys_corr_57: 6.72237608e+01 - sys_corr_58: 6.47378230e+01 + sys_corr_58: -6.47378230e+01 sys_corr_59: -6.27502497e+01 sys_corr_60: -5.74239322e+01 - sys_corr_61: -5.15170628e+01 - sys_corr_62: 3.68232504e+01 + sys_corr_61: 5.15170628e+01 + sys_corr_62: -3.68232504e+01 sys_corr_63: -7.80018259e+01 sys_corr_64: 6.97628217e+01 - sys_corr_65: 7.11991531e+01 - sys_corr_66: 2.39036896e+01 - sys_corr_67: -7.08078053e+00 + sys_corr_65: -7.11991531e+01 + sys_corr_66: -2.39036896e+01 + sys_corr_67: 7.08078053e+00 sys_corr_68: 2.96452052e+01 sys_corr_69: -2.76408102e+01 sys_corr_70: 1.78941246e+01 - sys_corr_71: -6.24148830e-01 - sys_corr_72: -3.12701649e+01 + sys_corr_71: 6.24148830e-01 + sys_corr_72: 3.12701649e+01 sys_corr_73: -5.14358879e+00 sys_corr_74: -5.85127373e+01 - sys_corr_75: 1.52310651e+01 - sys_corr_76: 1.72950628e+01 + sys_corr_75: -1.52310651e+01 + sys_corr_76: -1.72950628e+01 sys_corr_77: 5.86231036e-01 sys_corr_78: 4.35835915e+00 sys_corr_79: 6.72041148e+00 - sys_corr_80: -3.31283913e-01 + sys_corr_80: 3.31283913e-01 sys_corr_81: -3.86239617e+00 - sys_corr_82: -3.73188117e+00 + sys_corr_82: 3.73188117e+00 sys_corr_83: -1.19062977e+01 sys_corr_84: -4.39729674e-01 sys_corr_85: -6.58310776e+00 - sys_corr_86: -8.47782241e+00 - sys_corr_87: -1.40521542e+01 + sys_corr_86: 8.47782241e+00 + sys_corr_87: 1.40521542e+01 sys_corr_88: -2.01915751e+01 sys_corr_89: 1.36765472e+00 - sys_corr_90: 1.38449610e+00 - sys_corr_91: -2.25210038e+00 - sys_corr_92: -1.07325526e+01 + sys_corr_90: 2.25210038e+00 + sys_corr_91: -1.38449610e+00 + sys_corr_92: 1.07325526e+01 sys_corr_93: 5.26727886e-01 sys_corr_94: 1.91337724e+00 - sys_corr_95: -9.08636729e-01 + sys_corr_95: 9.08636729e-01 sys_corr_96: -1.96033782e-01 - sys_corr_97: -2.44812841e-01 - sys_corr_98: 3.08833486e-01 + sys_corr_97: 2.44812841e-01 + sys_corr_98: -3.08833486e-01 sys_corr_99: -2.03600278e-01 - sys_corr_100: -6.92258714e-01 - sys_corr_101: -1.61549253e+00 - sys_corr_102: -3.19039747e+00 - sys_corr_103: -1.66084356e-01 - sys_corr_104: 8.36850872e-01 - sys_corr_105: -1.09695115e+00 + sys_corr_100: 1.09695115e+00 + sys_corr_101: 6.92258714e-01 + sys_corr_102: 1.61549253e+00 + sys_corr_103: -3.19039747e+00 + sys_corr_104: 1.66084356e-01 + sys_corr_105: -8.36850872e-01 sys_corr_106: -8.87381483e-01 sys_corr_107: -6.07596220e-01 - sys_corr_108: -1.56926455e-02 - sys_corr_109: -8.44256717e-03 - sys_corr_110: -5.08988922e-01 - sys_corr_111: 1.62974658e-01 - sys_corr_112: 1.25380209e-01 - sys_corr_113: 6.22048874e-02 - sys_corr_114: -1.46626438e-03 - sys_corr_115: -1.84643740e-01 + sys_corr_108: -8.44256717e-03 + sys_corr_109: 1.56926455e-02 + sys_corr_110: -1.62974658e-01 + sys_corr_111: 5.08988922e-01 + sys_corr_112: -1.25380209e-01 + sys_corr_113: -6.22048874e-02 + sys_corr_114: 1.46626438e-03 + sys_corr_115: 1.84643740e-01 sys_corr_116: 8.04288398e-02 - sys_corr_117: 6.55403688e-02 + sys_corr_117: -6.55403688e-02 sys_corr_118: -1.17061270e-01 sys_corr_119: 1.90474269e-04 sys_corr_120: -4.61940980e-02 sys_corr_121: -1.13162352e-02 - sys_corr_122: -8.41463844e-02 - sys_corr_123: -4.77827542e-02 - sys_corr_124: 1.44079246e-02 + sys_corr_122: -4.77827542e-02 + sys_corr_123: 8.41463844e-02 + sys_corr_124: -1.44079246e-02 sys_corr_125: 6.44900365e-02 sys_corr_126: -1.33282438e-02 - sys_corr_127: 3.36939000e-02 - sys_corr_128: -1.29323144e-02 - sys_corr_129: -2.93879422e-02 - sys_corr_130: 2.13688025e-02 - sys_corr_131: 4.86760990e-02 + sys_corr_127: -3.36939000e-02 + sys_corr_128: 1.29323144e-02 + sys_corr_129: 2.93879422e-02 + sys_corr_130: -2.13688025e-02 + sys_corr_131: -4.86760990e-02 sys_corr_132: -7.04201883e-02 stat: 0.0 luminosity: 3.72664336e+02 @@ -2420,17 +2420,17 @@ bins: sys_corr_6: -6.20415857e+01 sys_corr_7: 2.15695590e+02 sys_corr_8: 1.48396327e+02 - sys_corr_9: 1.77717773e+02 - sys_corr_10: 3.87650671e+01 + sys_corr_9: -1.77717773e+02 + sys_corr_10: -3.87650671e+01 sys_corr_11: 2.46107671e+02 - sys_corr_12: 3.50633747e+02 - sys_corr_13: -2.19675597e+02 + sys_corr_12: -3.50633747e+02 + sys_corr_13: 2.19675597e+02 sys_corr_14: 6.27640125e+01 sys_corr_15: 6.37252879e+01 sys_corr_16: -1.53304041e+01 - sys_corr_17: 2.21380401e+01 + sys_corr_17: -2.21380401e+01 sys_corr_18: -4.64882847e+01 - sys_corr_19: -4.54201425e+00 + sys_corr_19: 4.54201425e+00 sys_corr_20: 2.73143491e+01 sys_corr_21: 2.61888854e+01 sys_corr_22: 1.49275627e+02 @@ -2446,103 +2446,103 @@ bins: sys_corr_32: 6.91035701e+00 sys_corr_33: -1.06721123e+01 sys_corr_34: -7.48291852e+00 - sys_corr_35: 4.36982013e+00 - sys_corr_36: -1.32287559e+01 + sys_corr_35: -4.36982013e+00 + sys_corr_36: 1.32287559e+01 sys_corr_37: 1.31500953e+01 sys_corr_38: 1.50554174e+01 - sys_corr_39: -1.98700637e+01 - sys_corr_40: 3.76000127e+01 - sys_corr_41: -6.73917022e+01 + sys_corr_39: 1.98700637e+01 + sys_corr_40: -3.76000127e+01 + sys_corr_41: 6.73917022e+01 sys_corr_42: 1.80625395e+01 sys_corr_43: 1.68653918e+01 sys_corr_44: 6.19466233e+00 sys_corr_45: -1.93526786e+01 - sys_corr_46: -2.13953962e+01 - sys_corr_47: -3.08405958e+01 + sys_corr_46: 2.13953962e+01 + sys_corr_47: 3.08405958e+01 sys_corr_48: 9.75893863e+00 sys_corr_49: -4.72059233e+00 sys_corr_50: 1.69493211e+01 - sys_corr_51: -5.04232489e+01 - sys_corr_52: -6.44431100e+00 - sys_corr_53: -2.03712424e+02 + sys_corr_51: 5.04232489e+01 + sys_corr_52: 6.44431100e+00 + sys_corr_53: 2.03712424e+02 sys_corr_54: -2.48243634e+01 sys_corr_55: -5.01114703e+01 - sys_corr_56: -4.00540694e+01 + sys_corr_56: 4.00540694e+01 sys_corr_57: -3.36818173e+01 - sys_corr_58: -5.01597841e+01 + sys_corr_58: 5.01597841e+01 sys_corr_59: -3.96459634e+00 sys_corr_60: 3.25334545e+01 - sys_corr_61: -1.85595324e+01 - sys_corr_62: -2.13128907e+01 + sys_corr_61: 1.85595324e+01 + sys_corr_62: 2.13128907e+01 sys_corr_63: -9.28974958e+01 sys_corr_64: 2.19415494e+01 - sys_corr_65: 4.69025345e+01 - sys_corr_66: 1.80332974e+01 - sys_corr_67: 4.43413142e+01 + sys_corr_65: -4.69025345e+01 + sys_corr_66: -1.80332974e+01 + sys_corr_67: -4.43413142e+01 sys_corr_68: 3.66245805e+00 sys_corr_69: -6.51813901e+00 sys_corr_70: 2.22894300e+01 - sys_corr_71: -1.04267433e+01 - sys_corr_72: -3.47460276e+01 + sys_corr_71: 1.04267433e+01 + sys_corr_72: 3.47460276e+01 sys_corr_73: 7.10436397e+00 sys_corr_74: -3.02852250e+01 - sys_corr_75: 5.65060808e-01 - sys_corr_76: -1.27092655e-01 + sys_corr_75: -5.65060808e-01 + sys_corr_76: 1.27092655e-01 sys_corr_77: -3.94352930e-01 sys_corr_78: 2.83811869e+00 sys_corr_79: 1.12400029e+00 - sys_corr_80: -4.91314409e+00 + sys_corr_80: 4.91314409e+00 sys_corr_81: -6.03956554e+00 - sys_corr_82: 1.30018872e+00 + sys_corr_82: -1.30018872e+00 sys_corr_83: -7.30541057e+00 sys_corr_84: 2.11050213e+00 sys_corr_85: -8.53176805e-01 - sys_corr_86: -8.76909893e+00 - sys_corr_87: 1.03684598e+00 + sys_corr_86: 8.76909893e+00 + sys_corr_87: -1.03684598e+00 sys_corr_88: -8.93839546e+00 sys_corr_89: -6.88600213e-01 - sys_corr_90: -1.18170930e+00 - sys_corr_91: -3.24167493e-01 - sys_corr_92: 1.63934197e+00 + sys_corr_90: 3.24167493e-01 + sys_corr_91: 1.18170930e+00 + sys_corr_92: -1.63934197e+00 sys_corr_93: 1.74245688e-01 sys_corr_94: 9.16918878e-01 - sys_corr_95: 1.49978727e-01 + sys_corr_95: -1.49978727e-01 sys_corr_96: -7.88125771e-02 - sys_corr_97: 2.31494665e-01 - sys_corr_98: 6.27684006e-03 + sys_corr_97: -2.31494665e-01 + sys_corr_98: -6.27684006e-03 sys_corr_99: -4.02956269e-02 - sys_corr_100: -8.68972509e-01 - sys_corr_101: -1.57395537e+00 - sys_corr_102: -3.05047845e+00 - sys_corr_103: 7.29338377e-01 - sys_corr_104: 8.71204137e-01 - sys_corr_105: -1.00740147e+00 + sys_corr_100: 1.00740147e+00 + sys_corr_101: 8.68972509e-01 + sys_corr_102: 1.57395537e+00 + sys_corr_103: -3.05047845e+00 + sys_corr_104: -7.29338377e-01 + sys_corr_105: -8.71204137e-01 sys_corr_106: -7.57700603e-01 sys_corr_107: -5.58737507e-01 - sys_corr_108: 9.72831361e-02 - sys_corr_109: -1.60539765e-02 - sys_corr_110: -3.76209127e-02 - sys_corr_111: 2.64456055e-01 - sys_corr_112: -4.35751457e-02 - sys_corr_113: -2.55118630e-02 - sys_corr_114: -2.42849385e-03 - sys_corr_115: -1.27015990e-01 + sys_corr_108: -1.60539765e-02 + sys_corr_109: -9.72831361e-02 + sys_corr_110: -2.64456055e-01 + sys_corr_111: 3.76209127e-02 + sys_corr_112: 4.35751457e-02 + sys_corr_113: 2.55118630e-02 + sys_corr_114: 2.42849385e-03 + sys_corr_115: 1.27015990e-01 sys_corr_116: 2.18696309e-02 - sys_corr_117: 1.09758098e-02 + sys_corr_117: -1.09758098e-02 sys_corr_118: 8.22097361e-03 sys_corr_119: 9.78778293e-03 sys_corr_120: -1.33581323e-02 sys_corr_121: -8.00362163e-03 - sys_corr_122: -3.28098038e-02 - sys_corr_123: -1.41669230e-02 - sys_corr_124: -8.74942442e-03 + sys_corr_122: -1.41669230e-02 + sys_corr_123: 3.28098038e-02 + sys_corr_124: 8.74942442e-03 sys_corr_125: 3.95023601e-02 sys_corr_126: 1.09969139e-02 - sys_corr_127: 1.75946998e-01 - sys_corr_128: 9.02707832e-02 - sys_corr_129: -7.45861163e-02 - sys_corr_130: 2.86622782e-02 - sys_corr_131: 3.27705322e-02 + sys_corr_127: -1.75946998e-01 + sys_corr_128: -9.02707832e-02 + sys_corr_129: 7.45861163e-02 + sys_corr_130: -2.86622782e-02 + sys_corr_131: -3.27705322e-02 sys_corr_132: -1.02868224e-01 stat: 0.0 luminosity: 3.58529072e+02 @@ -2554,17 +2554,17 @@ bins: sys_corr_6: -4.64845611e+01 sys_corr_7: 2.17737186e+02 sys_corr_8: 1.57207533e+02 - sys_corr_9: 2.04581881e+02 - sys_corr_10: 3.93162420e+01 + sys_corr_9: -2.04581881e+02 + sys_corr_10: -3.93162420e+01 sys_corr_11: 2.51406276e+02 - sys_corr_12: 3.78368266e+02 - sys_corr_13: -2.40213039e+02 + sys_corr_12: -3.78368266e+02 + sys_corr_13: 2.40213039e+02 sys_corr_14: 7.00300055e+01 sys_corr_15: 6.95494740e+01 sys_corr_16: -2.15426169e+01 - sys_corr_17: 3.18663987e+01 + sys_corr_17: -3.18663987e+01 sys_corr_18: -4.11159233e+01 - sys_corr_19: -1.92023153e+01 + sys_corr_19: 1.92023153e+01 sys_corr_20: 2.20243101e+01 sys_corr_21: 2.02459226e+01 sys_corr_22: 5.65322294e+01 @@ -2580,103 +2580,103 @@ bins: sys_corr_32: 1.67594032e+00 sys_corr_33: -5.84970005e+00 sys_corr_34: 7.28249556e+00 - sys_corr_35: 5.96567926e+00 - sys_corr_36: 1.10980419e+01 + sys_corr_35: -5.96567926e+00 + sys_corr_36: -1.10980419e+01 sys_corr_37: -1.49104605e+00 sys_corr_38: -5.19274467e+00 - sys_corr_39: -4.59588409e-01 - sys_corr_40: 1.18329311e+01 - sys_corr_41: 1.52778796e+00 + sys_corr_39: 4.59588409e-01 + sys_corr_40: -1.18329311e+01 + sys_corr_41: -1.52778796e+00 sys_corr_42: -1.56477826e+01 sys_corr_43: -1.67548623e+01 sys_corr_44: 2.69788835e+00 sys_corr_45: -1.43289923e+01 - sys_corr_46: 4.84722520e+01 - sys_corr_47: -2.55997733e+01 + sys_corr_46: -4.84722520e+01 + sys_corr_47: 2.55997733e+01 sys_corr_48: 7.37740331e+00 sys_corr_49: 2.67819661e+01 sys_corr_50: 2.55098884e+01 - sys_corr_51: 2.02816651e+01 - sys_corr_52: -8.36874371e+00 - sys_corr_53: -5.54271284e+01 + sys_corr_51: -2.02816651e+01 + sys_corr_52: 8.36874371e+00 + sys_corr_53: 5.54271284e+01 sys_corr_54: -7.56560873e+01 sys_corr_55: -2.57092373e+01 - sys_corr_56: 2.02119196e+01 + sys_corr_56: -2.02119196e+01 sys_corr_57: 1.55181783e+02 - sys_corr_58: 7.39116652e+01 + sys_corr_58: -7.39116652e+01 sys_corr_59: 2.33842987e+00 sys_corr_60: -3.01733692e+01 - sys_corr_61: 1.33342351e+01 - sys_corr_62: 7.37745968e+00 + sys_corr_61: -1.33342351e+01 + sys_corr_62: -7.37745968e+00 sys_corr_63: 1.37304037e+02 sys_corr_64: -1.34030975e+01 - sys_corr_65: -3.80841111e+01 - sys_corr_66: 6.19558147e+00 - sys_corr_67: 3.52189815e+01 + sys_corr_65: 3.80841111e+01 + sys_corr_66: -6.19558147e+00 + sys_corr_67: -3.52189815e+01 sys_corr_68: -3.02611660e+01 sys_corr_69: 6.31997486e+00 sys_corr_70: -1.60375077e+01 - sys_corr_71: 3.17514608e+01 - sys_corr_72: -1.36828971e+01 + sys_corr_71: -3.17514608e+01 + sys_corr_72: 1.36828971e+01 sys_corr_73: 5.74617998e+00 sys_corr_74: 5.76995398e+00 - sys_corr_75: -1.42190468e+01 - sys_corr_76: -1.59148237e+01 + sys_corr_75: 1.42190468e+01 + sys_corr_76: 1.59148237e+01 sys_corr_77: -3.77625318e-02 sys_corr_78: 1.27373424e+00 sys_corr_79: 2.80555277e+00 - sys_corr_80: -2.66521097e+00 + sys_corr_80: 2.66521097e+00 sys_corr_81: -2.53286730e+00 - sys_corr_82: 3.20128063e+00 + sys_corr_82: -3.20128063e+00 sys_corr_83: 1.16937916e+00 sys_corr_84: -6.44688911e-01 sys_corr_85: -4.95659004e-02 - sys_corr_86: -1.09554272e+01 - sys_corr_87: -2.96837409e+00 + sys_corr_86: 1.09554272e+01 + sys_corr_87: 2.96837409e+00 sys_corr_88: -1.28322753e+01 sys_corr_89: -7.05824471e-01 - sys_corr_90: -8.89253382e-01 - sys_corr_91: -1.91639583e-01 - sys_corr_92: 6.67210870e+00 + sys_corr_90: 1.91639583e-01 + sys_corr_91: 8.89253382e-01 + sys_corr_92: -6.67210870e+00 sys_corr_93: -6.47253183e-02 sys_corr_94: -5.09447205e-01 - sys_corr_95: 1.60571665e+00 + sys_corr_95: -1.60571665e+00 sys_corr_96: 1.41433194e-01 - sys_corr_97: -2.31903677e-01 - sys_corr_98: -3.76516874e-01 + sys_corr_97: 2.31903677e-01 + sys_corr_98: 3.76516874e-01 sys_corr_99: -1.22247573e-01 - sys_corr_100: -2.62071888e-01 - sys_corr_101: -2.66219300e-01 - sys_corr_102: -5.16393812e-01 - sys_corr_103: 1.05163659e+00 - sys_corr_104: 1.59781105e-01 - sys_corr_105: -3.02235364e-01 + sys_corr_100: 3.02235364e-01 + sys_corr_101: 2.62071888e-01 + sys_corr_102: 2.66219300e-01 + sys_corr_103: -5.16393812e-01 + sys_corr_104: -1.05163659e+00 + sys_corr_105: -1.59781105e-01 sys_corr_106: -2.79313344e-01 sys_corr_107: -1.01161949e-02 - sys_corr_108: -1.04222300e-01 - sys_corr_109: -7.16186444e-02 - sys_corr_110: -2.07848750e-01 - sys_corr_111: 8.00038054e-02 - sys_corr_112: 1.91872454e-02 - sys_corr_113: -7.05199035e-02 - sys_corr_114: -1.16824928e-03 - sys_corr_115: -1.18535525e-01 + sys_corr_108: -7.16186444e-02 + sys_corr_109: 1.04222300e-01 + sys_corr_110: -8.00038054e-02 + sys_corr_111: 2.07848750e-01 + sys_corr_112: -1.91872454e-02 + sys_corr_113: 7.05199035e-02 + sys_corr_114: 1.16824928e-03 + sys_corr_115: 1.18535525e-01 sys_corr_116: 2.45092576e-02 - sys_corr_117: 2.07821844e-02 + sys_corr_117: -2.07821844e-02 sys_corr_118: -5.50567448e-02 sys_corr_119: 1.74262981e-03 sys_corr_120: -9.24520860e-03 sys_corr_121: 2.67793114e-03 - sys_corr_122: 1.18043144e-02 - sys_corr_123: 8.32390293e-03 - sys_corr_124: 5.20061503e-03 + sys_corr_122: 8.32390293e-03 + sys_corr_123: -1.18043144e-02 + sys_corr_124: -5.20061503e-03 sys_corr_125: -1.08836892e-03 sys_corr_126: 6.93892880e-03 - sys_corr_127: -1.61713801e-01 - sys_corr_128: 2.06271954e-01 - sys_corr_129: -1.40402596e-02 - sys_corr_130: 1.42489335e-03 - sys_corr_131: 5.51557397e-03 + sys_corr_127: 1.61713801e-01 + sys_corr_128: -2.06271954e-01 + sys_corr_129: 1.40402596e-02 + sys_corr_130: -1.42489335e-03 + sys_corr_131: -5.51557397e-03 sys_corr_132: -8.56477729e-02 stat: 0.0 luminosity: 3.61877912e+02 @@ -2688,17 +2688,17 @@ bins: sys_corr_6: -3.06486291e+01 sys_corr_7: 1.93069827e+02 sys_corr_8: 1.54394647e+02 - sys_corr_9: 2.19580225e+02 - sys_corr_10: 4.08817985e+01 + sys_corr_9: -2.19580225e+02 + sys_corr_10: -4.08817985e+01 sys_corr_11: 2.53702475e+02 - sys_corr_12: 3.77224748e+02 - sys_corr_13: -2.52923575e+02 + sys_corr_12: -3.77224748e+02 + sys_corr_13: 2.52923575e+02 sys_corr_14: 6.47051994e+01 sys_corr_15: 7.41673430e+01 sys_corr_16: -3.71874006e+01 - sys_corr_17: 4.45999132e+01 + sys_corr_17: -4.45999132e+01 sys_corr_18: -3.47849645e+01 - sys_corr_19: -2.75431892e+01 + sys_corr_19: 2.75431892e+01 sys_corr_20: 2.07832906e+01 sys_corr_21: 2.48658147e+01 sys_corr_22: -7.27929058e+01 @@ -2714,103 +2714,103 @@ bins: sys_corr_32: 6.27673706e+00 sys_corr_33: 3.06666346e-01 sys_corr_34: -4.87790629e+00 - sys_corr_35: 1.15282638e+00 - sys_corr_36: 2.22595927e+01 + sys_corr_35: -1.15282638e+00 + sys_corr_36: -2.22595927e+01 sys_corr_37: -2.17365211e+01 sys_corr_38: -8.56996548e+00 - sys_corr_39: 3.04460321e+00 - sys_corr_40: -3.52260909e+01 - sys_corr_41: 1.36456639e+01 + sys_corr_39: -3.04460321e+00 + sys_corr_40: 3.52260909e+01 + sys_corr_41: -1.36456639e+01 sys_corr_42: -3.12945171e+01 sys_corr_43: 1.11902559e+01 sys_corr_44: 6.05448422e+00 sys_corr_45: 4.81125002e+00 - sys_corr_46: -1.14046385e+01 - sys_corr_47: 2.31037932e+01 + sys_corr_46: 1.14046385e+01 + sys_corr_47: -2.31037932e+01 sys_corr_48: 3.22527668e+01 sys_corr_49: -3.15968571e+01 sys_corr_50: -1.27058723e+01 - sys_corr_51: -7.27337724e+01 - sys_corr_52: -1.81719867e+01 - sys_corr_53: 3.59493951e+01 + sys_corr_51: 7.27337724e+01 + sys_corr_52: 1.81719867e+01 + sys_corr_53: -3.59493951e+01 sys_corr_54: 4.29603370e+01 sys_corr_55: -3.14131738e+01 - sys_corr_56: 8.40650671e+01 + sys_corr_56: -8.40650671e+01 sys_corr_57: -7.61611049e+01 - sys_corr_58: 2.28075739e+01 + sys_corr_58: -2.28075739e+01 sys_corr_59: 9.05726673e+01 sys_corr_60: -9.69458998e+00 - sys_corr_61: -1.84625134e+01 - sys_corr_62: 4.18453589e+01 - sys_corr_63: 5.80241250e-02 + sys_corr_61: 1.84625134e+01 + sys_corr_62: -4.18453589e+01 + sys_corr_63: 5.80241249e-02 sys_corr_64: 6.58000090e+01 - sys_corr_65: -1.97025150e+01 - sys_corr_66: 6.89767073e+00 - sys_corr_67: -1.82163958e+01 + sys_corr_65: 1.97025150e+01 + sys_corr_66: -6.89767073e+00 + sys_corr_67: 1.82163958e+01 sys_corr_68: 5.93365953e+00 sys_corr_69: 3.83135145e+01 sys_corr_70: -2.27903824e+00 - sys_corr_71: -9.14455886e+01 - sys_corr_72: 6.20428246e+01 + sys_corr_71: 9.14455886e+01 + sys_corr_72: -6.20428246e+01 sys_corr_73: 1.63570849e+01 sys_corr_74: 5.06742320e+01 - sys_corr_75: -1.38752306e+01 - sys_corr_76: -3.78945029e+01 + sys_corr_75: 1.38752306e+01 + sys_corr_76: 3.78945029e+01 sys_corr_77: -5.27040771e+00 sys_corr_78: 5.42291305e+00 sys_corr_79: 2.12952875e+00 - sys_corr_80: -1.12478096e+01 + sys_corr_80: 1.12478096e+01 sys_corr_81: -7.57206754e+00 - sys_corr_82: -4.18455460e+00 + sys_corr_82: 4.18455460e+00 sys_corr_83: 2.89828552e+00 sys_corr_84: -1.61190082e+00 sys_corr_85: 4.43740945e+00 - sys_corr_86: -3.47185831e+01 - sys_corr_87: 7.75264087e+00 + sys_corr_86: 3.47185831e+01 + sys_corr_87: -7.75264087e+00 sys_corr_88: -1.74955337e+01 sys_corr_89: 4.09675282e-02 - sys_corr_90: 5.01956716e-02 - sys_corr_91: 3.42104405e+00 - sys_corr_92: 3.56065966e+01 + sys_corr_90: -3.42104405e+00 + sys_corr_91: -5.01956716e-02 + sys_corr_92: -3.56065966e+01 sys_corr_93: -7.05259855e-01 sys_corr_94: -2.65324049e+00 - sys_corr_95: 9.76880353e-01 + sys_corr_95: -9.76880353e-01 sys_corr_96: 1.05624159e-01 - sys_corr_97: -8.28147428e-02 - sys_corr_98: -2.82671854e-01 + sys_corr_97: 8.28147428e-02 + sys_corr_98: 2.82671854e-01 sys_corr_99: 1.86865924e-01 - sys_corr_100: 2.82941128e-01 - sys_corr_101: 1.46922451e-01 - sys_corr_102: -7.57103036e-01 - sys_corr_103: -3.64349521e-02 - sys_corr_104: 7.66216771e-01 - sys_corr_105: 1.50984944e-01 + sys_corr_100: -1.50984944e-01 + sys_corr_101: -2.82941128e-01 + sys_corr_102: -1.46922451e-01 + sys_corr_103: -7.57103036e-01 + sys_corr_104: 3.64349521e-02 + sys_corr_105: -7.66216771e-01 sys_corr_106: 1.87347841e-01 sys_corr_107: 1.80023656e-04 - sys_corr_108: -1.53789673e-01 - sys_corr_109: -1.44591400e-01 - sys_corr_110: 2.17512395e-01 - sys_corr_111: -1.51883926e-01 - sys_corr_112: -8.87455080e-02 - sys_corr_113: -1.81479699e-01 - sys_corr_114: -4.72899273e-03 - sys_corr_115: -2.06449910e-01 + sys_corr_108: -1.44591400e-01 + sys_corr_109: 1.53789673e-01 + sys_corr_110: 1.51883926e-01 + sys_corr_111: -2.17512395e-01 + sys_corr_112: 8.87455080e-02 + sys_corr_113: 1.81479699e-01 + sys_corr_114: 4.72899273e-03 + sys_corr_115: 2.06449910e-01 sys_corr_116: 1.69308061e-02 - sys_corr_117: 4.42464395e-03 + sys_corr_117: -4.42464395e-03 sys_corr_118: -1.69147648e-01 sys_corr_119: 2.45451900e-03 sys_corr_120: -6.62397374e-03 sys_corr_121: -8.41109369e-03 - sys_corr_122: -1.04814230e-02 - sys_corr_123: -5.95189385e-03 - sys_corr_124: 7.81524711e-03 + sys_corr_122: -5.95189385e-03 + sys_corr_123: 1.04814230e-02 + sys_corr_124: -7.81524711e-03 sys_corr_125: 2.09384738e-02 sys_corr_126: 2.18258419e-04 - sys_corr_127: -4.02718255e-02 - sys_corr_128: 2.76573292e-03 - sys_corr_129: 9.73696353e-02 - sys_corr_130: -3.38568519e-04 - sys_corr_131: 1.47823289e-02 + sys_corr_127: 4.02718255e-02 + sys_corr_128: -2.76573292e-03 + sys_corr_129: -9.73696353e-02 + sys_corr_130: 3.38568519e-04 + sys_corr_131: -1.47823289e-02 sys_corr_132: -8.14917850e-02 stat: 0.0 luminosity: 3.40095866e+02 @@ -2822,17 +2822,17 @@ bins: sys_corr_6: 2.49201113e+00 sys_corr_7: 1.72731634e+02 sys_corr_8: 1.49541182e+02 - sys_corr_9: 2.37139448e+02 - sys_corr_10: 5.02977721e+01 + sys_corr_9: -2.37139448e+02 + sys_corr_10: -5.02977721e+01 sys_corr_11: 2.61151344e+02 - sys_corr_12: 3.95211804e+02 - sys_corr_13: -2.73359370e+02 + sys_corr_12: -3.95211804e+02 + sys_corr_13: 2.73359370e+02 sys_corr_14: 6.03283060e+01 sys_corr_15: 7.73101491e+01 sys_corr_16: -4.15645636e+01 - sys_corr_17: 5.00382917e+01 + sys_corr_17: -5.00382917e+01 sys_corr_18: -2.75740230e+01 - sys_corr_19: -4.50367565e+01 + sys_corr_19: 4.50367565e+01 sys_corr_20: 1.15819852e+01 sys_corr_21: 1.53011992e+01 sys_corr_22: -1.78488484e+02 @@ -2848,103 +2848,103 @@ bins: sys_corr_32: 2.73972356e-01 sys_corr_33: 5.44656334e+00 sys_corr_34: 1.52177875e+01 - sys_corr_35: -4.12255646e+00 - sys_corr_36: -2.53746750e+00 + sys_corr_35: 4.12255646e+00 + sys_corr_36: 2.53746750e+00 sys_corr_37: -8.89627937e-02 sys_corr_38: 2.24017134e+00 - sys_corr_39: 3.83788766e+00 - sys_corr_40: 1.23361407e+01 - sys_corr_41: -1.03488750e+00 + sys_corr_39: -3.83788766e+00 + sys_corr_40: -1.23361407e+01 + sys_corr_41: 1.03488750e+00 sys_corr_42: 1.19428640e+01 sys_corr_43: 1.39361521e+01 sys_corr_44: -3.51822951e+01 sys_corr_45: -3.88167254e+00 - sys_corr_46: -3.41826731e+01 - sys_corr_47: 2.77174674e+01 + sys_corr_46: 3.41826731e+01 + sys_corr_47: -2.77174674e+01 sys_corr_48: -3.53355448e+01 sys_corr_49: -7.62361642e+00 sys_corr_50: -3.28468639e+01 - sys_corr_51: 6.36969028e+01 - sys_corr_52: 4.78393362e+01 - sys_corr_53: 1.63154410e+01 + sys_corr_51: -6.36969028e+01 + sys_corr_52: -4.78393362e+01 + sys_corr_53: -1.63154410e+01 sys_corr_54: -2.97197721e+01 sys_corr_55: 2.08967119e+01 - sys_corr_56: -7.22018143e+01 + sys_corr_56: 7.22018143e+01 sys_corr_57: 3.73312674e+01 - sys_corr_58: -2.75449578e+01 + sys_corr_58: 2.75449578e+01 sys_corr_59: -6.98523004e+01 sys_corr_60: -7.47933682e+00 - sys_corr_61: 5.84052929e+00 - sys_corr_62: -8.91846931e-01 + sys_corr_61: -5.84052929e+00 + sys_corr_62: 8.91846931e-01 sys_corr_63: -8.13408976e+01 sys_corr_64: -7.96143089e+01 - sys_corr_65: 6.46937583e-01 - sys_corr_66: 3.92034468e+00 - sys_corr_67: -6.99473867e+01 + sys_corr_65: -6.46937583e-01 + sys_corr_66: -3.92034468e+00 + sys_corr_67: 6.99473867e+01 sys_corr_68: 1.60892081e+01 sys_corr_69: 2.98420956e+00 sys_corr_70: -5.79972330e+00 - sys_corr_71: 2.46976602e+01 - sys_corr_72: 8.59531494e+01 + sys_corr_71: -2.46976602e+01 + sys_corr_72: -8.59531494e+01 sys_corr_73: -2.43395051e+01 sys_corr_74: 8.43246940e+01 - sys_corr_75: -8.02186919e+00 - sys_corr_76: -3.46277071e+00 + sys_corr_75: 8.02186919e+00 + sys_corr_76: 3.46277071e+00 sys_corr_77: 4.54427398e-01 sys_corr_78: 1.43817656e+00 sys_corr_79: -2.78878890e+00 - sys_corr_80: 2.57884696e+01 + sys_corr_80: -2.57884696e+01 sys_corr_81: 1.45772765e+01 - sys_corr_82: 1.57566567e+00 + sys_corr_82: -1.57566567e+00 sys_corr_83: 1.67480627e+01 sys_corr_84: -2.10968437e+00 sys_corr_85: 2.88062079e+00 - sys_corr_86: 1.02371072e+01 - sys_corr_87: 9.45780215e+00 + sys_corr_86: -1.02371072e+01 + sys_corr_87: -9.45780215e+00 sys_corr_88: 2.85546680e+01 sys_corr_89: -2.78004573e+00 - sys_corr_90: -1.48757417e+00 - sys_corr_91: 3.36460788e-01 - sys_corr_92: 1.03147557e+01 + sys_corr_90: -3.36460788e-01 + sys_corr_91: 1.48757417e+00 + sys_corr_92: -1.03147557e+01 sys_corr_93: -4.65818612e-01 sys_corr_94: -2.51816407e+00 - sys_corr_95: 2.60680521e+00 + sys_corr_95: -2.60680521e+00 sys_corr_96: 4.41112047e-01 - sys_corr_97: -2.06755361e+00 - sys_corr_98: -1.09966228e+00 + sys_corr_97: 2.06755361e+00 + sys_corr_98: 1.09966228e+00 sys_corr_99: -1.34779249e+00 - sys_corr_100: 6.92383455e-01 - sys_corr_101: 1.17158362e+00 - sys_corr_102: 2.80486654e-01 - sys_corr_103: 3.10181230e+00 - sys_corr_104: 7.73142741e-01 - sys_corr_105: 8.84294749e-01 + sys_corr_100: -8.84294749e-01 + sys_corr_101: -6.92383455e-01 + sys_corr_102: -1.17158362e+00 + sys_corr_103: 2.80486654e-01 + sys_corr_104: -3.10181230e+00 + sys_corr_105: -7.73142741e-01 sys_corr_106: 4.89089422e-01 sys_corr_107: 2.93707636e-01 - sys_corr_108: -1.67701873e-01 - sys_corr_109: 8.80045610e-02 - sys_corr_110: -1.66539034e-01 - sys_corr_111: -7.81318839e-02 - sys_corr_112: -1.22072378e-01 - sys_corr_113: -1.03302731e-01 - sys_corr_114: -1.27798513e-04 - sys_corr_115: 2.26891018e-02 + sys_corr_108: 8.80045610e-02 + sys_corr_109: 1.67701873e-01 + sys_corr_110: 7.81318839e-02 + sys_corr_111: 1.66539034e-01 + sys_corr_112: 1.22072378e-01 + sys_corr_113: 1.03302731e-01 + sys_corr_114: 1.27798513e-04 + sys_corr_115: -2.26891018e-02 sys_corr_116: -1.88233922e-02 - sys_corr_117: -2.24777084e-02 + sys_corr_117: 2.24777084e-02 sys_corr_118: -3.35078857e-02 sys_corr_119: -1.79903697e-03 sys_corr_120: 1.68017452e-02 sys_corr_121: 7.46665627e-03 - sys_corr_122: 6.78662778e-02 - sys_corr_123: 3.39144775e-02 - sys_corr_124: -2.68370545e-03 + sys_corr_122: 3.39144775e-02 + sys_corr_123: -6.78662778e-02 + sys_corr_124: 2.68370545e-03 sys_corr_125: -5.12501542e-02 sys_corr_126: 1.40891736e-02 - sys_corr_127: -9.54767209e-02 - sys_corr_128: 4.25077350e-01 - sys_corr_129: 8.26900911e-02 - sys_corr_130: -6.13181437e-03 - sys_corr_131: -3.48996931e-02 + sys_corr_127: 9.54767209e-02 + sys_corr_128: -4.25077350e-01 + sys_corr_129: -8.26900911e-02 + sys_corr_130: 6.13181437e-03 + sys_corr_131: 3.48996931e-02 sys_corr_132: -5.76078213e-02 stat: 0.0 luminosity: 3.34508570e+02 @@ -2956,17 +2956,17 @@ bins: sys_corr_6: 2.28843839e+01 sys_corr_7: 1.10768775e+02 sys_corr_8: 1.22872324e+02 - sys_corr_9: 2.16817586e+02 - sys_corr_10: 4.78964135e+01 + sys_corr_9: -2.16817586e+02 + sys_corr_10: -4.78964135e+01 sys_corr_11: 2.20591787e+02 - sys_corr_12: 3.29943009e+02 - sys_corr_13: -2.38775014e+02 + sys_corr_12: -3.29943009e+02 + sys_corr_13: 2.38775014e+02 sys_corr_14: 4.41611061e+01 sys_corr_15: 6.32853172e+01 sys_corr_16: -4.53454061e+01 - sys_corr_17: 4.82900727e+01 + sys_corr_17: -4.82900727e+01 sys_corr_18: -2.29469294e+01 - sys_corr_19: -4.56311648e+01 + sys_corr_19: 4.56311648e+01 sys_corr_20: -5.86025765e+00 sys_corr_21: 1.39161769e+01 sys_corr_22: -2.86382594e+02 @@ -2982,103 +2982,103 @@ bins: sys_corr_32: -8.31549432e+00 sys_corr_33: 1.12514972e+01 sys_corr_34: 1.85655107e+01 - sys_corr_35: -5.64372597e+00 - sys_corr_36: 2.93400510e-01 + sys_corr_35: 5.64372597e+00 + sys_corr_36: -2.93400510e-01 sys_corr_37: -9.55359578e-02 sys_corr_38: 4.13742042e+00 - sys_corr_39: 1.25396880e+01 - sys_corr_40: -1.21357476e+01 - sys_corr_41: 3.13180258e+01 + sys_corr_39: -1.25396880e+01 + sys_corr_40: 1.21357476e+01 + sys_corr_41: -3.13180258e+01 sys_corr_42: 2.48736652e+01 sys_corr_43: -2.35369065e+01 sys_corr_44: -3.33001417e+01 sys_corr_45: 1.11672721e+01 - sys_corr_46: 2.09115401e+01 - sys_corr_47: 9.98324278e+00 + sys_corr_46: -2.09115401e+01 + sys_corr_47: -9.98324278e+00 sys_corr_48: -2.05359253e+01 sys_corr_49: 1.66851322e+01 sys_corr_50: 8.03583757e+00 - sys_corr_51: 2.06392669e+01 - sys_corr_52: -3.42336619e+01 - sys_corr_53: 5.20063220e+01 + sys_corr_51: -2.06392669e+01 + sys_corr_52: 3.42336619e+01 + sys_corr_53: -5.20063220e+01 sys_corr_54: 7.43253338e+01 sys_corr_55: 7.86529097e+01 - sys_corr_56: 1.18164831e+01 + sys_corr_56: -1.18164831e+01 sys_corr_57: -5.63090815e+01 - sys_corr_58: -4.77085763e+01 + sys_corr_58: 4.77085763e+01 sys_corr_59: -1.94457782e+01 sys_corr_60: 3.06867187e+01 - sys_corr_61: -1.06484411e+01 - sys_corr_62: -3.69448902e+01 + sys_corr_61: 1.06484411e+01 + sys_corr_62: 3.69448902e+01 sys_corr_63: 2.62554907e+01 sys_corr_64: 2.10146707e+01 - sys_corr_65: 1.31191114e+01 - sys_corr_66: -3.19620088e+01 - sys_corr_67: 9.91922839e+01 + sys_corr_65: -1.31191114e+01 + sys_corr_66: 3.19620088e+01 + sys_corr_67: -9.91922839e+01 sys_corr_68: -2.96941169e+01 sys_corr_69: -2.25312175e+01 sys_corr_70: 1.28037986e+01 - sys_corr_71: 3.36282245e+01 - sys_corr_72: -1.17790971e+02 + sys_corr_71: -3.36282245e+01 + sys_corr_72: 1.17790971e+02 sys_corr_73: -1.42552458e+01 sys_corr_74: 2.09280035e+01 - sys_corr_75: -1.16199684e+01 - sys_corr_76: -1.18688250e+01 + sys_corr_75: 1.16199684e+01 + sys_corr_76: 1.18688250e+01 sys_corr_77: 1.62531706e-01 sys_corr_78: -3.58924279e+00 sys_corr_79: -8.90246083e+00 - sys_corr_80: 1.23067050e+01 + sys_corr_80: -1.23067050e+01 sys_corr_81: 4.81637081e+00 - sys_corr_82: 1.70597050e+01 + sys_corr_82: -1.70597050e+01 sys_corr_83: 4.15318273e+00 sys_corr_84: -5.82655888e-01 sys_corr_85: 3.95937309e+00 - sys_corr_86: 1.60458331e+01 - sys_corr_87: 1.56731807e+01 + sys_corr_86: -1.60458331e+01 + sys_corr_87: -1.56731807e+01 sys_corr_88: 3.00606341e+01 sys_corr_89: -2.70643757e+00 - sys_corr_90: -4.51591290e+00 - sys_corr_91: 2.76095644e+00 - sys_corr_92: -1.42183280e+01 + sys_corr_90: -2.76095644e+00 + sys_corr_91: 4.51591290e+00 + sys_corr_92: 1.42183280e+01 sys_corr_93: -4.91711999e-03 sys_corr_94: 4.38936558e-01 - sys_corr_95: 8.11524923e-01 + sys_corr_95: -8.11524923e-01 sys_corr_96: -2.99590421e-02 - sys_corr_97: -1.05422249e+00 - sys_corr_98: -6.13027518e-01 + sys_corr_97: 1.05422249e+00 + sys_corr_98: 6.13027518e-01 sys_corr_99: -7.81331780e-01 - sys_corr_100: 6.88461183e-01 - sys_corr_101: 1.20160773e+00 - sys_corr_102: 1.11974200e+00 - sys_corr_103: 1.94409966e+00 - sys_corr_104: 3.88022426e-01 - sys_corr_105: 8.30012105e-01 + sys_corr_100: -8.30012105e-01 + sys_corr_101: -6.88461183e-01 + sys_corr_102: -1.20160773e+00 + sys_corr_103: 1.11974200e+00 + sys_corr_104: -1.94409966e+00 + sys_corr_105: -3.88022426e-01 sys_corr_106: 5.70312352e-01 sys_corr_107: 7.23955525e-01 - sys_corr_108: -3.09088041e-01 - sys_corr_109: -2.19996539e-01 - sys_corr_110: 1.05346869e-01 - sys_corr_111: -6.03641972e-02 - sys_corr_112: -1.33430293e-01 - sys_corr_113: -7.91196823e-02 - sys_corr_114: 7.94486963e-04 - sys_corr_115: 3.47664275e-02 + sys_corr_108: -2.19996539e-01 + sys_corr_109: 3.09088041e-01 + sys_corr_110: 6.03641972e-02 + sys_corr_111: -1.05346869e-01 + sys_corr_112: 1.33430293e-01 + sys_corr_113: 7.91196823e-02 + sys_corr_114: -7.94486963e-04 + sys_corr_115: -3.47664275e-02 sys_corr_116: -2.38240238e-02 - sys_corr_117: -3.09185467e-02 + sys_corr_117: 3.09185467e-02 sys_corr_118: 1.12423925e-01 sys_corr_119: 2.52959466e-03 sys_corr_120: 3.71651633e-02 sys_corr_121: 7.48517750e-03 - sys_corr_122: 1.23508921e-01 - sys_corr_123: 6.95507416e-02 - sys_corr_124: -2.82723200e-02 + sys_corr_122: 6.95507416e-02 + sys_corr_123: -1.23508921e-01 + sys_corr_124: 2.82723200e-02 sys_corr_125: -9.56568224e-02 sys_corr_126: 3.34916330e-02 - sys_corr_127: -3.18186773e-01 - sys_corr_128: 2.18161369e-01 - sys_corr_129: -7.96226759e-02 - sys_corr_130: -5.39022196e-03 - sys_corr_131: -4.23994545e-02 + sys_corr_127: 3.18186773e-01 + sys_corr_128: -2.18161369e-01 + sys_corr_129: 7.96226759e-02 + sys_corr_130: 5.39022196e-03 + sys_corr_131: 4.23994545e-02 sys_corr_132: -7.02665217e-03 stat: 0.0 luminosity: 3.09411498e+02 @@ -3090,17 +3090,17 @@ bins: sys_corr_6: 5.17259785e+01 sys_corr_7: 5.03317838e+01 sys_corr_8: 8.63429918e+01 - sys_corr_9: 1.62924247e+02 - sys_corr_10: 4.17042935e+01 + sys_corr_9: -1.62924247e+02 + sys_corr_10: -4.17042935e+01 sys_corr_11: 1.65293966e+02 - sys_corr_12: 2.51157638e+02 - sys_corr_13: -1.92535732e+02 + sys_corr_12: -2.51157638e+02 + sys_corr_13: 1.92535732e+02 sys_corr_14: 2.27056389e+01 sys_corr_15: 5.37649550e+01 sys_corr_16: -4.66722919e+01 - sys_corr_17: 4.56758215e+01 + sys_corr_17: -4.56758215e+01 sys_corr_18: -1.70808508e+01 - sys_corr_19: -4.36566928e+01 + sys_corr_19: 4.36566928e+01 sys_corr_20: -1.31421415e+01 sys_corr_21: 1.11514537e+01 sys_corr_22: -3.55411034e+02 @@ -3116,103 +3116,103 @@ bins: sys_corr_32: -2.10662861e+00 sys_corr_33: 4.35455887e+00 sys_corr_34: -2.34395716e+00 - sys_corr_35: -4.56244197e+00 - sys_corr_36: -4.98964190e+00 + sys_corr_35: 4.56244197e+00 + sys_corr_36: 4.98964190e+00 sys_corr_37: -8.99424640e+00 sys_corr_38: -7.05808829e+00 - sys_corr_39: -1.63412631e+00 - sys_corr_40: -8.21432482e+00 - sys_corr_41: 1.25904771e+01 + sys_corr_39: 1.63412631e+00 + sys_corr_40: 8.21432482e+00 + sys_corr_41: -1.25904771e+01 sys_corr_42: -1.09452586e+01 sys_corr_43: 5.57413880e+00 sys_corr_44: -1.13834269e+01 sys_corr_45: -1.16189312e+01 - sys_corr_46: -2.67015957e+00 - sys_corr_47: -2.33676892e+01 + sys_corr_46: 2.67015957e+00 + sys_corr_47: 2.33676892e+01 sys_corr_48: 1.57346295e+01 sys_corr_49: -1.12340278e+01 sys_corr_50: -8.52051835e+00 - sys_corr_51: -2.80834088e+01 - sys_corr_52: -1.60548186e+00 - sys_corr_53: -3.84197996e+01 + sys_corr_51: 2.80834088e+01 + sys_corr_52: 1.60548186e+00 + sys_corr_53: 3.84197996e+01 sys_corr_54: -6.58057762e+00 sys_corr_55: 1.46615115e+00 - sys_corr_56: 1.68674229e+01 + sys_corr_56: -1.68674229e+01 sys_corr_57: -1.86956099e+01 - sys_corr_58: 2.80352963e+01 + sys_corr_58: -2.80352963e+01 sys_corr_59: 5.63131650e+01 sys_corr_60: -2.63223874e+01 - sys_corr_61: -1.22802626e+01 - sys_corr_62: 4.36716570e+01 + sys_corr_61: 1.22802626e+01 + sys_corr_62: -4.36716570e+01 sys_corr_63: 1.54964987e+01 sys_corr_64: -1.87030548e+01 - sys_corr_65: -1.14645753e+01 - sys_corr_66: -6.10867010e+01 - sys_corr_67: -6.28791754e+01 + sys_corr_65: 1.14645753e+01 + sys_corr_66: 6.10867010e+01 + sys_corr_67: 6.28791754e+01 sys_corr_68: -9.39313717e+00 sys_corr_69: -3.57524922e+00 sys_corr_70: 1.27510195e+00 - sys_corr_71: 8.32499617e+00 - sys_corr_72: 2.96986106e+01 + sys_corr_71: -8.32499617e+00 + sys_corr_72: -2.96986106e+01 sys_corr_73: 9.82886376e+00 sys_corr_74: -1.29337223e+02 - sys_corr_75: 5.10602478e+01 - sys_corr_76: 6.60641894e+01 + sys_corr_75: -5.10602478e+01 + sys_corr_76: -6.60641894e+01 sys_corr_77: 5.50040269e+00 sys_corr_78: -9.94832274e+00 sys_corr_79: -6.10173493e+00 - sys_corr_80: 1.91812312e+01 + sys_corr_80: -1.91812312e+01 sys_corr_81: 1.87472928e+01 - sys_corr_82: -1.14324709e+01 + sys_corr_82: 1.14324709e+01 sys_corr_83: 1.22032690e+00 sys_corr_84: -3.76965081e-01 sys_corr_85: -3.28197731e+00 - sys_corr_86: 6.37255144e+01 - sys_corr_87: -8.80253846e+00 + sys_corr_86: -6.37255144e+01 + sys_corr_87: 8.80253846e+00 sys_corr_88: 1.59136322e+01 sys_corr_89: 4.04775978e+00 - sys_corr_90: 2.78626413e+00 - sys_corr_91: -3.11186436e+00 - sys_corr_92: -5.55767541e+01 + sys_corr_90: 3.11186436e+00 + sys_corr_91: -2.78626413e+00 + sys_corr_92: 5.55767541e+01 sys_corr_93: 1.66249704e-01 sys_corr_94: 1.64427452e-01 - sys_corr_95: -1.98135597e+00 + sys_corr_95: 1.98135597e+00 sys_corr_96: -4.63774717e-02 - sys_corr_97: -1.30663307e-01 - sys_corr_98: -2.30383227e-01 + sys_corr_97: 1.30663307e-01 + sys_corr_98: 2.30383227e-01 sys_corr_99: -1.23009184e-01 - sys_corr_100: 1.74444111e-01 - sys_corr_101: 5.81053270e-01 - sys_corr_102: 1.10764791e+00 - sys_corr_103: 4.62186412e-01 - sys_corr_104: -3.30493194e-01 - sys_corr_105: 1.35286534e-01 + sys_corr_100: -1.35286534e-01 + sys_corr_101: -1.74444111e-01 + sys_corr_102: -5.81053270e-01 + sys_corr_103: 1.10764791e+00 + sys_corr_104: -4.62186412e-01 + sys_corr_105: 3.30493194e-01 sys_corr_106: 3.60936027e-01 sys_corr_107: 3.26796151e-03 - sys_corr_108: 8.64329788e-02 - sys_corr_109: -1.69411300e-01 - sys_corr_110: -8.22035826e-02 - sys_corr_111: 5.16263126e-03 - sys_corr_112: 1.95809587e-02 - sys_corr_113: 1.26157274e-01 - sys_corr_114: -1.28938199e-03 - sys_corr_115: 4.71775590e-02 + sys_corr_108: -1.69411300e-01 + sys_corr_109: -8.64329788e-02 + sys_corr_110: -5.16263126e-03 + sys_corr_111: 8.22035826e-02 + sys_corr_112: -1.95809587e-02 + sys_corr_113: -1.26157274e-01 + sys_corr_114: 1.28938199e-03 + sys_corr_115: -4.71775590e-02 sys_corr_116: -3.82372925e-02 - sys_corr_117: -2.33973761e-02 + sys_corr_117: 2.33973761e-02 sys_corr_118: -7.72620217e-02 sys_corr_119: 1.12238727e-03 sys_corr_120: 1.50217133e-02 sys_corr_121: -4.37789411e-03 - sys_corr_122: 1.43232367e-02 - sys_corr_123: 1.02044512e-02 - sys_corr_124: -3.73631078e-02 + sys_corr_122: 1.02044512e-02 + sys_corr_123: -1.43232367e-02 + sys_corr_124: 3.73631078e-02 sys_corr_125: -2.68721291e-02 sys_corr_126: -5.82124099e-03 - sys_corr_127: -2.81686847e-02 - sys_corr_128: 2.16233976e-02 - sys_corr_129: 7.85012156e-02 - sys_corr_130: -1.80394260e-03 - sys_corr_131: -2.19148862e-02 + sys_corr_127: 2.81686847e-02 + sys_corr_128: -2.16233976e-02 + sys_corr_129: -7.85012156e-02 + sys_corr_130: 1.80394260e-03 + sys_corr_131: 2.19148862e-02 sys_corr_132: 5.50520775e-02 stat: 0.0 luminosity: 2.77542496e+02 @@ -3224,17 +3224,17 @@ bins: sys_corr_6: 6.85990626e+01 sys_corr_7: 4.20388230e-01 sys_corr_8: 5.35481781e+01 - sys_corr_9: 1.02422712e+02 - sys_corr_10: 3.40961493e+01 + sys_corr_9: -1.02422712e+02 + sys_corr_10: -3.40961493e+01 sys_corr_11: 1.03927191e+02 - sys_corr_12: 1.49063743e+02 - sys_corr_13: -1.28673996e+02 + sys_corr_12: -1.49063743e+02 + sys_corr_13: 1.28673996e+02 sys_corr_14: 5.81152054e+00 sys_corr_15: 3.24781384e+01 sys_corr_16: -4.06862890e+01 - sys_corr_17: 2.91901987e+01 + sys_corr_17: -2.91901987e+01 sys_corr_18: -1.31691320e+01 - sys_corr_19: -3.59078922e+01 + sys_corr_19: 3.59078922e+01 sys_corr_20: -3.18348505e+01 sys_corr_21: 3.02311073e-01 sys_corr_22: -3.36967621e+02 @@ -3250,103 +3250,103 @@ bins: sys_corr_32: 6.59933719e-01 sys_corr_33: -1.06217829e+00 sys_corr_34: -1.85703537e+01 - sys_corr_35: -1.89251928e+00 - sys_corr_36: -1.07178864e+01 + sys_corr_35: 1.89251928e+00 + sys_corr_36: 1.07178864e+01 sys_corr_37: -1.48841048e+00 sys_corr_38: 1.60349619e+00 - sys_corr_39: -4.32920495e+00 - sys_corr_40: 3.81457485e-01 - sys_corr_41: -8.11589343e+00 + sys_corr_39: 4.32920495e+00 + sys_corr_40: -3.81457485e-01 + sys_corr_41: 8.11589343e+00 sys_corr_42: -1.36614484e+00 sys_corr_43: 5.93594827e+00 sys_corr_44: 1.61969560e+01 sys_corr_45: 1.05948131e+00 - sys_corr_46: -7.52830181e+00 - sys_corr_47: -1.47796867e+01 + sys_corr_46: 7.52830181e+00 + sys_corr_47: 1.47796867e+01 sys_corr_48: 6.99685645e+00 sys_corr_49: -2.01432871e+01 sys_corr_50: -3.72448226e+00 - sys_corr_51: -5.68693254e+00 - sys_corr_52: 1.11994206e+01 - sys_corr_53: 1.24532810e+01 + sys_corr_51: 5.68693254e+00 + sys_corr_52: -1.11994206e+01 + sys_corr_53: -1.24532810e+01 sys_corr_54: -8.23892587e-01 sys_corr_55: 4.10432163e+01 - sys_corr_56: -2.67812379e+01 + sys_corr_56: 2.67812379e+01 sys_corr_57: 2.46140346e+01 - sys_corr_58: -2.54439971e+01 + sys_corr_58: 2.54439971e+01 sys_corr_59: -3.61089966e+01 sys_corr_60: 3.37444818e+01 - sys_corr_61: 1.64905106e+01 - sys_corr_62: -7.20451698e+01 + sys_corr_61: -1.64905106e+01 + sys_corr_62: 7.20451698e+01 sys_corr_63: 3.88700474e+01 sys_corr_64: 7.19829506e+00 - sys_corr_65: -4.48619543e-01 - sys_corr_66: 1.50626128e+02 - sys_corr_67: 4.87830724e+01 + sys_corr_65: 4.48619543e-01 + sys_corr_66: -1.50626128e+02 + sys_corr_67: -4.87830724e+01 sys_corr_68: -4.42127794e+00 sys_corr_69: 2.66773782e+01 sys_corr_70: -2.07056000e+01 - sys_corr_71: -5.38824571e+01 - sys_corr_72: 5.57021739e+01 + sys_corr_71: 5.38824571e+01 + sys_corr_72: -5.57021739e+01 sys_corr_73: 1.20994539e+01 sys_corr_74: -4.77551099e+01 - sys_corr_75: -7.27636550e+00 - sys_corr_76: -5.81642017e+00 + sys_corr_75: 7.27636550e+00 + sys_corr_76: 5.81642017e+00 sys_corr_77: 2.85810419e+00 sys_corr_78: 1.91218598e+00 sys_corr_79: 5.53680694e+00 - sys_corr_80: -1.51278060e+01 + sys_corr_80: 1.51278060e+01 sys_corr_81: -1.78853844e+01 - sys_corr_82: -1.03574611e+01 + sys_corr_82: 1.03574611e+01 sys_corr_83: -1.69877109e+01 sys_corr_84: -4.34520554e+00 sys_corr_85: -1.67451678e+00 - sys_corr_86: -2.65526770e+01 - sys_corr_87: -2.07698526e+01 + sys_corr_86: 2.65526769e+01 + sys_corr_87: 2.07698526e+01 sys_corr_88: -4.59845334e+01 sys_corr_89: 4.53512630e+00 - sys_corr_90: 6.89122161e+00 - sys_corr_91: 3.49807810e+00 - sys_corr_92: 2.04859606e+01 + sys_corr_90: -3.49807810e+00 + sys_corr_91: -6.89122161e+00 + sys_corr_92: -2.04859606e+01 sys_corr_93: 1.48268877e+00 sys_corr_94: 7.19079944e+00 - sys_corr_95: -6.20893434e+00 + sys_corr_95: 6.20893434e+00 sys_corr_96: -9.57038819e-01 - sys_corr_97: 1.46949015e+00 - sys_corr_98: 2.56464743e-01 + sys_corr_97: -1.46949015e+00 + sys_corr_98: -2.56464743e-01 sys_corr_99: 2.29130447e-01 - sys_corr_100: 1.41551499e-02 - sys_corr_101: 6.56861963e-01 - sys_corr_102: 9.02377958e-01 - sys_corr_103: -1.62867791e+00 - sys_corr_104: -2.75867757e-01 - sys_corr_105: 6.18733852e-02 + sys_corr_100: -6.18733852e-02 + sys_corr_101: -1.41551499e-02 + sys_corr_102: -6.56861963e-01 + sys_corr_103: 9.02377958e-01 + sys_corr_104: 1.62867791e+00 + sys_corr_105: 2.75867757e-01 sys_corr_106: -2.03131547e-01 sys_corr_107: -2.06897267e-01 - sys_corr_108: 1.15360365e-01 - sys_corr_109: -3.10729255e-02 - sys_corr_110: 4.23107276e-01 - sys_corr_111: 2.54612021e-01 - sys_corr_112: 7.15105431e-02 - sys_corr_113: 8.16591862e-02 - sys_corr_114: 2.40612331e-04 - sys_corr_115: -4.13634705e-02 + sys_corr_108: -3.10729255e-02 + sys_corr_109: -1.15360365e-01 + sys_corr_110: -2.54612021e-01 + sys_corr_111: -4.23107276e-01 + sys_corr_112: -7.15105431e-02 + sys_corr_113: -8.16591862e-02 + sys_corr_114: -2.40612331e-04 + sys_corr_115: 4.13634705e-02 sys_corr_116: 2.88062903e-02 - sys_corr_117: 1.71476389e-02 + sys_corr_117: -1.71476389e-02 sys_corr_118: -1.06796512e-01 sys_corr_119: -1.87471082e-02 sys_corr_120: -2.15526169e-02 sys_corr_121: -1.84053936e-02 - sys_corr_122: -5.11468697e-02 - sys_corr_123: -3.65997077e-02 - sys_corr_124: 2.21018010e-02 + sys_corr_122: -3.65997077e-02 + sys_corr_123: 5.11468697e-02 + sys_corr_124: -2.21018010e-02 sys_corr_125: 4.03487016e-02 sys_corr_126: -2.26375248e-02 - sys_corr_127: -2.65815598e-02 - sys_corr_128: -8.40638608e-02 - sys_corr_129: -4.12929522e-02 - sys_corr_130: 2.26223953e-03 - sys_corr_131: 1.44011475e-02 + sys_corr_127: 2.65815598e-02 + sys_corr_128: 8.40638608e-02 + sys_corr_129: 4.12929522e-02 + sys_corr_130: -2.26223953e-03 + sys_corr_131: -1.44011475e-02 sys_corr_132: 7.84596397e-02 stat: 0.0 luminosity: 2.42393756e+02 @@ -3358,17 +3358,17 @@ bins: sys_corr_6: 6.09857582e+01 sys_corr_7: -3.15507165e+01 sys_corr_8: 2.58394646e+01 - sys_corr_9: 5.63290509e+01 - sys_corr_10: 2.73658672e+01 + sys_corr_9: -5.63290509e+01 + sys_corr_10: -2.73658672e+01 sys_corr_11: 6.45622459e+01 - sys_corr_12: 8.56510828e+01 - sys_corr_13: -8.33703905e+01 + sys_corr_12: -8.56510828e+01 + sys_corr_13: 8.33703905e+01 sys_corr_14: -6.35797719e+00 sys_corr_15: 2.25004054e+01 sys_corr_16: -3.48959397e+01 - sys_corr_17: 1.96949057e+01 + sys_corr_17: -1.96949057e+01 sys_corr_18: -6.57011862e+00 - sys_corr_19: -2.63141225e+01 + sys_corr_19: 2.63141225e+01 sys_corr_20: -2.98826210e+01 sys_corr_21: -4.83236669e+00 sys_corr_22: -2.71133823e+02 @@ -3384,103 +3384,103 @@ bins: sys_corr_32: 5.09541313e-01 sys_corr_33: -2.46541206e+00 sys_corr_34: -9.13441275e+00 - sys_corr_35: -5.89813986e+00 - sys_corr_36: -1.92345277e+01 + sys_corr_35: 5.89813986e+00 + sys_corr_36: 1.92345277e+01 sys_corr_37: 5.03149299e+00 sys_corr_38: 5.54524610e+00 - sys_corr_39: -6.06629174e+00 - sys_corr_40: 1.13754840e+01 - sys_corr_41: -1.06622796e+01 + sys_corr_39: 6.06629174e+00 + sys_corr_40: -1.13754840e+01 + sys_corr_41: 1.06622796e+01 sys_corr_42: -1.75895962e+00 sys_corr_43: 5.14404073e+00 sys_corr_44: 4.77424685e+00 sys_corr_45: 7.53413606e+00 - sys_corr_46: -7.20122932e+00 - sys_corr_47: 1.93399481e+00 + sys_corr_46: 7.20122932e+00 + sys_corr_47: -1.93399481e+00 sys_corr_48: 1.43256867e+01 sys_corr_49: 8.34538386e-02 sys_corr_50: 2.12360100e+01 - sys_corr_51: 1.47001602e+01 - sys_corr_52: -5.70895591e+00 - sys_corr_53: -3.77639145e+00 + sys_corr_51: -1.47001602e+01 + sys_corr_52: 5.70895591e+00 + sys_corr_53: 3.77639145e+00 sys_corr_54: -1.66316649e+01 sys_corr_55: -5.24499029e+01 - sys_corr_56: 3.21675067e+00 + sys_corr_56: -3.21675067e+00 sys_corr_57: 2.50820253e+00 - sys_corr_58: 7.40312265e+00 + sys_corr_58: -7.40312265e+00 sys_corr_59: 1.60408473e+01 sys_corr_60: -1.10602847e+01 - sys_corr_61: -1.11425840e+00 - sys_corr_62: 3.40721903e+01 + sys_corr_61: 1.11425840e+00 + sys_corr_62: -3.40721903e+01 sys_corr_63: -2.83414228e+01 sys_corr_64: -1.49112419e+01 - sys_corr_65: 4.41847421e+00 - sys_corr_66: -9.70440887e+01 - sys_corr_67: -2.85512689e+01 + sys_corr_65: -4.41847421e+00 + sys_corr_66: 9.70440887e+01 + sys_corr_67: 2.85512689e+01 sys_corr_68: -2.34818543e+00 sys_corr_69: -3.87422342e+01 sys_corr_70: 5.07728402e+00 - sys_corr_71: 7.59680467e+01 - sys_corr_72: -2.75918007e+01 + sys_corr_71: -7.59680467e+01 + sys_corr_72: 2.75918007e+01 sys_corr_73: 4.11236777e+01 sys_corr_74: 2.15981273e+01 - sys_corr_75: -4.23769520e+01 - sys_corr_76: -4.73097116e+01 + sys_corr_75: 4.23769520e+01 + sys_corr_76: 4.73097116e+01 sys_corr_77: -1.53654963e+01 sys_corr_78: 1.89555335e+01 sys_corr_79: 4.14215496e+00 - sys_corr_80: -6.05715867e+01 + sys_corr_80: 6.05715867e+01 sys_corr_81: -1.62650522e+01 - sys_corr_82: -1.42180357e-01 + sys_corr_82: 1.42180357e-01 sys_corr_83: -1.07983659e+01 sys_corr_84: -5.57024556e+00 sys_corr_85: -3.64643849e+00 - sys_corr_86: -8.86547515e+01 - sys_corr_87: -8.64906338e+00 + sys_corr_86: 8.86547515e+01 + sys_corr_87: 8.64906338e+00 sys_corr_88: -6.69854635e+01 sys_corr_89: 2.95562873e+00 - sys_corr_90: 3.73328230e+00 - sys_corr_91: 6.18794532e+00 - sys_corr_92: 3.97050542e+01 + sys_corr_90: -6.18794532e+00 + sys_corr_91: -3.73328230e+00 + sys_corr_92: -3.97050542e+01 sys_corr_93: 3.30196546e+00 sys_corr_94: 1.58209985e+01 - sys_corr_95: -1.68943980e+01 + sys_corr_95: 1.68943980e+01 sys_corr_96: -2.33775068e+00 - sys_corr_97: 4.13304507e+00 - sys_corr_98: 1.08755778e+00 + sys_corr_97: -4.13304507e+00 + sys_corr_98: -1.08755778e+00 sys_corr_99: 7.96839861e-01 - sys_corr_100: -1.01428613e-01 - sys_corr_101: 3.78271299e-01 - sys_corr_102: 3.77771301e-01 - sys_corr_103: -4.88817360e+00 - sys_corr_104: 6.64507469e-01 - sys_corr_105: -2.89042763e-01 + sys_corr_100: 2.89042763e-01 + sys_corr_101: 1.01428613e-01 + sys_corr_102: -3.78271299e-01 + sys_corr_103: 3.77771301e-01 + sys_corr_104: 4.88817360e+00 + sys_corr_105: -6.64507469e-01 sys_corr_106: -7.16908666e-01 sys_corr_107: -9.48100341e-01 - sys_corr_108: 5.89957739e-02 - sys_corr_109: 1.59806319e-01 - sys_corr_110: 1.06573850e+00 - sys_corr_111: 3.01261716e-01 - sys_corr_112: 1.78959295e-01 - sys_corr_113: 1.72636086e-01 - sys_corr_114: -9.17143794e-04 - sys_corr_115: -1.32894896e-01 + sys_corr_108: 1.59806319e-01 + sys_corr_109: -5.89957739e-02 + sys_corr_110: -3.01261716e-01 + sys_corr_111: -1.06573850e+00 + sys_corr_112: -1.78959295e-01 + sys_corr_113: -1.72636086e-01 + sys_corr_114: 9.17143794e-04 + sys_corr_115: 1.32894896e-01 sys_corr_116: 2.80592894e-02 - sys_corr_117: 1.59276801e-02 + sys_corr_117: -1.59276801e-02 sys_corr_118: -6.17785096e-02 sys_corr_119: -2.42082613e-03 sys_corr_120: -2.18686337e-02 sys_corr_121: -1.28724423e-02 - sys_corr_122: -5.57204646e-02 - sys_corr_123: -3.65900389e-02 - sys_corr_124: 2.23360075e-03 + sys_corr_122: -3.65900389e-02 + sys_corr_123: 5.57204646e-02 + sys_corr_124: -2.23360075e-03 sys_corr_125: 4.08558777e-02 sys_corr_126: -1.92817075e-02 - sys_corr_127: 3.67673687e-01 - sys_corr_128: -4.23268053e-01 - sys_corr_129: -3.41266012e-02 - sys_corr_130: -6.56057761e-04 - sys_corr_131: 2.05921816e-02 + sys_corr_127: -3.67673687e-01 + sys_corr_128: 4.23268053e-01 + sys_corr_129: 3.41266012e-02 + sys_corr_130: 6.56057761e-04 + sys_corr_131: -2.05921816e-02 sys_corr_132: -1.74896868e-02 stat: 0.0 luminosity: 1.84882214e+02 @@ -3492,17 +3492,17 @@ bins: sys_corr_6: 5.33997231e+01 sys_corr_7: -3.97790606e+01 sys_corr_8: 1.35082301e+01 - sys_corr_9: 2.83954505e+01 - sys_corr_10: 2.26804787e+01 + sys_corr_9: -2.83954505e+01 + sys_corr_10: -2.26804787e+01 sys_corr_11: 3.63608535e+01 - sys_corr_12: 3.11427796e+01 - sys_corr_13: -4.51296756e+01 + sys_corr_12: -3.11427796e+01 + sys_corr_13: 4.51296756e+01 sys_corr_14: -9.58205441e+00 sys_corr_15: 1.24739809e+01 sys_corr_16: -2.23607003e+01 - sys_corr_17: 1.39764806e+01 + sys_corr_17: -1.39764806e+01 sys_corr_18: -6.49124622e+00 - sys_corr_19: -1.73863374e+01 + sys_corr_19: 1.73863374e+01 sys_corr_20: -3.08388540e+01 sys_corr_21: -6.06502745e+00 sys_corr_22: -1.92094483e+02 @@ -3518,103 +3518,103 @@ bins: sys_corr_32: 6.46336193e+00 sys_corr_33: -6.66815554e+00 sys_corr_34: -1.51633490e+01 - sys_corr_35: -3.92610311e+00 - sys_corr_36: -2.12819793e+01 + sys_corr_35: 3.92610311e+00 + sys_corr_36: 2.12819793e+01 sys_corr_37: 4.04509716e+00 sys_corr_38: 3.67282589e+00 - sys_corr_39: -1.04675137e+01 - sys_corr_40: 1.62695179e+01 - sys_corr_41: -2.42979935e+01 + sys_corr_39: 1.04675137e+01 + sys_corr_40: -1.62695179e+01 + sys_corr_41: 2.42979935e+01 sys_corr_42: 3.57616423e+00 sys_corr_43: 1.20842011e+01 sys_corr_44: 2.03309104e+01 sys_corr_45: 2.78911049e+00 - sys_corr_46: -1.24021204e+01 - sys_corr_47: -1.64924243e+00 + sys_corr_46: 1.24021204e+01 + sys_corr_47: 1.64924243e+00 sys_corr_48: 1.08072439e+00 sys_corr_49: 2.21479261e+00 sys_corr_50: 4.19824254e+01 - sys_corr_51: 1.22879141e+01 - sys_corr_52: -1.58081419e+01 - sys_corr_53: -2.73660525e+01 + sys_corr_51: -1.22879141e+01 + sys_corr_52: 1.58081419e+01 + sys_corr_53: 2.73660525e+01 sys_corr_54: -2.87071703e+01 sys_corr_55: -9.27721934e+01 - sys_corr_56: 6.11240197e+00 + sys_corr_56: -6.11240197e+00 sys_corr_57: 2.24605023e+01 - sys_corr_58: 4.60454001e+01 + sys_corr_58: -4.60454001e+01 sys_corr_59: 2.35584322e+00 sys_corr_60: -1.27641669e+01 - sys_corr_61: 2.38441676e+01 - sys_corr_62: 3.43909859e+01 + sys_corr_61: -2.38441676e+01 + sys_corr_62: -3.43909859e+01 sys_corr_63: 1.41485185e+01 sys_corr_64: 6.46539477e+01 - sys_corr_65: 3.27033221e+00 - sys_corr_66: 2.84994888e+01 - sys_corr_67: -1.54846332e+01 + sys_corr_65: -3.27033221e+00 + sys_corr_66: -2.84994888e+01 + sys_corr_67: 1.54846332e+01 sys_corr_68: 3.03544436e+01 sys_corr_69: 1.02239759e+01 sys_corr_70: 1.79997880e+01 - sys_corr_71: -6.34744307e+01 - sys_corr_72: -6.33780538e+01 + sys_corr_71: 6.34744307e+01 + sys_corr_72: 6.33780538e+01 sys_corr_73: -6.21859802e+01 sys_corr_74: 9.92392691e+01 - sys_corr_75: 9.48486460e+00 - sys_corr_76: 2.15761215e+01 + sys_corr_75: -9.48486460e+00 + sys_corr_76: -2.15761215e+01 sys_corr_77: -4.90106864e-01 sys_corr_78: -6.01587895e+00 sys_corr_79: -8.37675891e-02 - sys_corr_80: 2.42274122e+01 + sys_corr_80: -2.42274122e+01 sys_corr_81: 1.74451492e+01 - sys_corr_82: 1.43687759e+01 + sys_corr_82: -1.43687759e+01 sys_corr_83: 1.09399807e+01 sys_corr_84: 1.05114107e+01 sys_corr_85: -9.71273069e+00 - sys_corr_86: 4.67883334e+01 - sys_corr_87: 2.80290554e+01 + sys_corr_86: -4.67883334e+01 + sys_corr_87: -2.80290554e+01 sys_corr_88: 6.83771902e+01 sys_corr_89: -4.47190317e+00 - sys_corr_90: -1.57421211e+00 - sys_corr_91: -7.77922323e+00 - sys_corr_92: -7.87052325e+00 + sys_corr_90: 7.77922323e+00 + sys_corr_91: 1.57421211e+00 + sys_corr_92: 7.87052325e+00 sys_corr_93: 3.55391849e+00 sys_corr_94: 1.57144316e+01 - sys_corr_95: -1.26684942e+01 + sys_corr_95: 1.26684942e+01 sys_corr_96: -1.48127999e+00 - sys_corr_97: 1.90413434e+00 - sys_corr_98: 2.36509901e-01 + sys_corr_97: -1.90413434e+00 + sys_corr_98: -2.36509901e-01 sys_corr_99: -1.14015299e-02 - sys_corr_100: 8.39054491e-02 - sys_corr_101: 1.32826876e-01 - sys_corr_102: -2.42167589e+00 - sys_corr_103: -3.46310746e+00 - sys_corr_104: 2.11201221e+00 - sys_corr_105: 5.04351629e-02 + sys_corr_100: -5.04351629e-02 + sys_corr_101: -8.39054491e-02 + sys_corr_102: -1.32826876e-01 + sys_corr_103: -2.42167589e+00 + sys_corr_104: 3.46310746e+00 + sys_corr_105: -2.11201221e+00 sys_corr_106: 9.83626947e-02 sys_corr_107: -1.53702132e-01 - sys_corr_108: 3.21852530e-01 - sys_corr_109: 1.27195690e-01 - sys_corr_110: -1.00147937e-01 - sys_corr_111: 1.44146642e-01 - sys_corr_112: 1.32379009e-01 - sys_corr_113: 2.42415154e-01 - sys_corr_114: 6.35965283e-03 - sys_corr_115: 2.35417420e-01 + sys_corr_108: 1.27195690e-01 + sys_corr_109: -3.21852530e-01 + sys_corr_110: -1.44146642e-01 + sys_corr_111: 1.00147937e-01 + sys_corr_112: -1.32379009e-01 + sys_corr_113: -2.42415154e-01 + sys_corr_114: -6.35965283e-03 + sys_corr_115: -2.35417420e-01 sys_corr_116: -5.86274216e-02 - sys_corr_117: -3.06194481e-02 + sys_corr_117: 3.06194481e-02 sys_corr_118: 1.71120740e-01 sys_corr_119: -2.15882688e-03 sys_corr_120: 3.78311915e-02 sys_corr_121: 1.14080063e-02 - sys_corr_122: 5.71152746e-02 - sys_corr_123: 2.63591007e-02 - sys_corr_124: -1.59152420e-02 + sys_corr_122: 2.63591007e-02 + sys_corr_123: -5.71152746e-02 + sys_corr_124: 1.59152420e-02 sys_corr_125: -5.96793167e-02 sys_corr_126: 5.96293918e-03 - sys_corr_127: 3.59616877e-01 - sys_corr_128: -1.27386788e-01 - sys_corr_129: 2.41618192e-01 - sys_corr_130: -1.89768354e-02 - sys_corr_131: -3.20924179e-02 + sys_corr_127: -3.59616877e-01 + sys_corr_128: 1.27386788e-01 + sys_corr_129: -2.41618192e-01 + sys_corr_130: 1.89768354e-02 + sys_corr_131: 3.20924179e-02 sys_corr_132: -3.26562157e-02 stat: 0.0 luminosity: 1.20137182e+02 @@ -3626,17 +3626,17 @@ bins: sys_corr_6: 2.83300218e+01 sys_corr_7: -1.23284160e+01 sys_corr_8: 6.84144124e+00 - sys_corr_9: 5.25334465e+00 - sys_corr_10: 1.13095409e+01 + sys_corr_9: -5.25334465e+00 + sys_corr_10: -1.13095409e+01 sys_corr_11: 1.55670602e+01 - sys_corr_12: 1.36622071e+01 - sys_corr_13: -1.36368323e+01 + sys_corr_12: -1.36622071e+01 + sys_corr_13: 1.36368323e+01 sys_corr_14: -3.76945997e+00 sys_corr_15: 3.81029886e+00 sys_corr_16: -5.41793800e+00 - sys_corr_17: 6.07127651e+00 + sys_corr_17: -6.07127651e+00 sys_corr_18: -1.99297216e+00 - sys_corr_19: -8.99009869e+00 + sys_corr_19: 8.99009869e+00 sys_corr_20: -1.46449629e+01 sys_corr_21: -2.95663622e+00 sys_corr_22: -7.64893827e+01 @@ -3652,103 +3652,103 @@ bins: sys_corr_32: 5.87055426e-01 sys_corr_33: -3.49930330e+00 sys_corr_34: 3.64268488e-01 - sys_corr_35: -3.36504180e+00 - sys_corr_36: -9.22833765e+00 + sys_corr_35: 3.36504180e+00 + sys_corr_36: 9.22833765e+00 sys_corr_37: 4.28789678e+00 sys_corr_38: 3.83645874e+00 - sys_corr_39: -1.16600550e+00 - sys_corr_40: 8.30584954e+00 - sys_corr_41: -8.07595792e+00 + sys_corr_39: 1.16600550e+00 + sys_corr_40: -8.30584954e+00 + sys_corr_41: 8.07595792e+00 sys_corr_42: -1.25424682e+00 sys_corr_43: 7.49478605e+00 sys_corr_44: 2.83807238e-01 sys_corr_45: 1.52519160e+00 - sys_corr_46: -4.30113417e+00 - sys_corr_47: -1.94758112e+00 + sys_corr_46: 4.30113417e+00 + sys_corr_47: 1.94758112e+00 sys_corr_48: 1.16328630e+00 sys_corr_49: 2.57888767e+00 sys_corr_50: 1.61907916e+01 - sys_corr_51: 7.00116702e+00 - sys_corr_52: -7.46834309e+00 - sys_corr_53: -3.22920122e+00 + sys_corr_51: -7.00116702e+00 + sys_corr_52: 7.46834309e+00 + sys_corr_53: 3.22920122e+00 sys_corr_54: -6.96639486e+00 sys_corr_55: -1.97037754e+01 - sys_corr_56: 3.41618033e-01 + sys_corr_56: -3.41618033e-01 sys_corr_57: 1.56969642e+00 - sys_corr_58: 6.52992323e+00 + sys_corr_58: -6.52992323e+00 sys_corr_59: 1.05931938e+00 sys_corr_60: -3.42376502e+00 - sys_corr_61: 5.21650727e+00 - sys_corr_62: 7.91582151e+00 + sys_corr_61: -5.21650727e+00 + sys_corr_62: -7.91582151e+00 sys_corr_63: -7.94326732e-01 sys_corr_64: 8.42770221e+00 - sys_corr_65: 2.34509754e+00 - sys_corr_66: -4.29989848e+00 - sys_corr_67: -1.28647506e+00 + sys_corr_65: -2.34509754e+00 + sys_corr_66: 4.29989848e+00 + sys_corr_67: 1.28647506e+00 sys_corr_68: 1.58975296e-01 sys_corr_69: -2.52526926e+00 sys_corr_70: 3.61982775e+00 - sys_corr_71: -2.51982479e+00 - sys_corr_72: -1.12554395e+01 + sys_corr_71: 2.51982479e+00 + sys_corr_72: 1.12554395e+01 sys_corr_73: -1.19191441e+00 sys_corr_74: 7.84977672e+00 - sys_corr_75: -6.26608316e+00 - sys_corr_76: -4.35453742e+00 + sys_corr_75: 6.26608316e+00 + sys_corr_76: 4.35453742e+00 sys_corr_77: 7.65634365e+00 sys_corr_78: -3.06216279e-01 sys_corr_79: 1.88274452e+00 - sys_corr_80: -5.19775248e+00 + sys_corr_80: 5.19775248e+00 sys_corr_81: -5.60240595e+00 - sys_corr_82: 2.70465853e-01 + sys_corr_82: -2.70465853e-01 sys_corr_83: -2.85190501e+00 sys_corr_84: -9.84011165e+00 sys_corr_85: 8.24737941e+00 - sys_corr_86: -7.60064866e+00 - sys_corr_87: -6.64200060e+00 + sys_corr_86: 7.60064866e+00 + sys_corr_87: 6.64200060e+00 sys_corr_88: -4.70635588e+00 sys_corr_89: 1.62744038e+00 - sys_corr_90: 4.20481928e+00 - sys_corr_91: 1.08274577e+01 - sys_corr_92: 4.12858087e+00 + sys_corr_90: -1.08274577e+01 + sys_corr_91: -4.20481928e+00 + sys_corr_92: -4.12858087e+00 sys_corr_93: -2.05567159e+01 sys_corr_94: -9.58496258e+01 - sys_corr_95: 1.04866159e+02 + sys_corr_95: -1.04866159e+02 sys_corr_96: 1.33120754e+01 - sys_corr_97: -3.32511368e+01 - sys_corr_98: -6.08136113e+00 + sys_corr_97: 3.32511368e+01 + sys_corr_98: 6.08136113e+00 sys_corr_99: -7.10177623e+00 - sys_corr_100: 4.29200052e+00 - sys_corr_101: 6.40424462e+00 - sys_corr_102: 5.09524180e+00 - sys_corr_103: 6.72703259e+00 - sys_corr_104: 3.19328757e+00 - sys_corr_105: 5.30775184e+00 + sys_corr_100: -5.30775184e+00 + sys_corr_101: -4.29200052e+00 + sys_corr_102: -6.40424462e+00 + sys_corr_103: 5.09524180e+00 + sys_corr_104: -6.72703259e+00 + sys_corr_105: -3.19328757e+00 sys_corr_106: 4.45126462e+00 sys_corr_107: 4.13877087e+00 - sys_corr_108: -8.66925392e-02 - sys_corr_109: 5.80766601e-02 - sys_corr_110: -5.26151719e+00 - sys_corr_111: -1.83713286e+00 - sys_corr_112: 4.25332090e-02 - sys_corr_113: -2.85098504e-01 - sys_corr_114: 4.14708970e-03 - sys_corr_115: -3.00334148e-01 + sys_corr_108: 5.80766601e-02 + sys_corr_109: 8.66925392e-02 + sys_corr_110: 1.83713286e+00 + sys_corr_111: 5.26151719e+00 + sys_corr_112: -4.25332090e-02 + sys_corr_113: 2.85098504e-01 + sys_corr_114: -4.14708970e-03 + sys_corr_115: 3.00334148e-01 sys_corr_116: -1.11159562e-01 - sys_corr_117: -7.92641108e-02 + sys_corr_117: 7.92641108e-02 sys_corr_118: -1.28180836e-01 sys_corr_119: 1.88348759e-02 sys_corr_120: 7.29909850e-02 sys_corr_121: 2.33915429e-02 - sys_corr_122: 2.50037779e-02 - sys_corr_123: 1.78234012e-02 - sys_corr_124: -1.88913475e-01 + sys_corr_122: 1.78234012e-02 + sys_corr_123: -2.50037779e-02 + sys_corr_124: 1.88913475e-01 sys_corr_125: -3.34768838e-02 sys_corr_126: 3.37544249e-03 - sys_corr_127: 9.62395408e-01 - sys_corr_128: -1.42952692e+00 - sys_corr_129: 1.38642726e-01 - sys_corr_130: -1.58893093e-02 - sys_corr_131: -4.39562357e-02 + sys_corr_127: -9.62395408e-01 + sys_corr_128: 1.42952692e+00 + sys_corr_129: -1.38642726e-01 + sys_corr_130: 1.58893093e-02 + sys_corr_131: 4.39562357e-02 sys_corr_132: 1.16719010e-01 stat: 0.0 luminosity: 4.54939760e+01 @@ -3760,17 +3760,17 @@ bins: sys_corr_6: -7.24503034e+02 sys_corr_7: 1.63524779e+01 sys_corr_8: 4.38545750e+00 - sys_corr_9: 3.20869391e+00 - sys_corr_10: 2.13165978e+00 + sys_corr_9: -3.20869391e+00 + sys_corr_10: -2.13165978e+00 sys_corr_11: 5.80561219e+00 - sys_corr_12: -5.12686410e+01 - sys_corr_13: 4.90158629e+01 + sys_corr_12: 5.12686410e+01 + sys_corr_13: -4.90158629e+01 sys_corr_14: -1.24171706e+01 sys_corr_15: -2.77694180e+00 sys_corr_16: 1.14554951e+01 - sys_corr_17: -7.42539095e+00 + sys_corr_17: 7.42539095e+00 sys_corr_18: -3.10390039e+00 - sys_corr_19: 5.29890614e+01 + sys_corr_19: -5.29890614e+01 sys_corr_20: 2.54988997e+01 sys_corr_21: 1.95998742e+01 sys_corr_22: 1.23181803e+02 @@ -3786,103 +3786,103 @@ bins: sys_corr_32: 5.20487293e+01 sys_corr_33: 4.80551850e+01 sys_corr_34: -1.61327860e+02 - sys_corr_35: -1.35415878e+02 - sys_corr_36: -2.16678546e+02 + sys_corr_35: 1.35415878e+02 + sys_corr_36: 2.16678546e+02 sys_corr_37: 3.49362415e+00 sys_corr_38: -5.78348645e+01 - sys_corr_39: -9.76642388e+01 - sys_corr_40: -1.15381986e+00 - sys_corr_41: 6.70650526e-01 + sys_corr_39: 9.76642388e+01 + sys_corr_40: 1.15381986e+00 + sys_corr_41: -6.70650526e-01 sys_corr_42: 1.65219832e+01 sys_corr_43: -1.53944086e+01 sys_corr_44: 2.88835863e+00 sys_corr_45: -1.98677368e+01 - sys_corr_46: -1.07220269e+01 - sys_corr_47: -1.91368937e+01 + sys_corr_46: 1.07220269e+01 + sys_corr_47: 1.91368937e+01 sys_corr_48: 2.83389360e+01 sys_corr_49: -3.95475375e+01 sys_corr_50: 4.52396098e+01 - sys_corr_51: 2.21310540e+01 - sys_corr_52: -1.29587287e-01 - sys_corr_53: 1.13306351e+01 + sys_corr_51: -2.21310540e+01 + sys_corr_52: 1.29587287e-01 + sys_corr_53: -1.13306351e+01 sys_corr_54: -6.83046017e+00 sys_corr_55: -1.03905602e+01 - sys_corr_56: 1.14023053e+00 + sys_corr_56: -1.14023053e+00 sys_corr_57: 1.21278120e+01 - sys_corr_58: -1.11533572e+01 + sys_corr_58: 1.11533572e+01 sys_corr_59: 7.72077696e-01 sys_corr_60: 1.09096682e+01 - sys_corr_61: 9.43783961e-01 - sys_corr_62: -9.88599530e+00 + sys_corr_61: -9.43783961e-01 + sys_corr_62: 9.88599530e+00 sys_corr_63: -1.87241133e+00 sys_corr_64: -5.76878754e+00 - sys_corr_65: 7.31307852e-01 - sys_corr_66: -7.19057565e+00 - sys_corr_67: -2.20463258e+00 + sys_corr_65: -7.31307852e-01 + sys_corr_66: 7.19057565e+00 + sys_corr_67: 2.20463258e+00 sys_corr_68: -1.34881397e+01 sys_corr_69: -5.23288196e+00 sys_corr_70: 3.43500152e+00 - sys_corr_71: -1.35252625e+01 - sys_corr_72: 6.38352971e-01 + sys_corr_71: 1.35252625e+01 + sys_corr_72: -6.38352971e-01 sys_corr_73: -8.84590622e+00 sys_corr_74: -5.21513461e+00 - sys_corr_75: 5.38276015e-01 - sys_corr_76: -4.68947704e+00 + sys_corr_75: -5.38276015e-01 + sys_corr_76: 4.68947704e+00 sys_corr_77: 1.34268232e+00 sys_corr_78: 3.06348088e+00 sys_corr_79: 7.26909085e+00 - sys_corr_80: -5.78379544e-01 + sys_corr_80: 5.78379544e-01 sys_corr_81: -5.14078107e+00 - sys_corr_82: -4.79542114e+00 + sys_corr_82: 4.79542114e+00 sys_corr_83: -5.53612016e+00 sys_corr_84: 5.41561445e-01 sys_corr_85: -1.96929456e+00 - sys_corr_86: -2.11536824e+00 - sys_corr_87: 1.10211036e+01 + sys_corr_86: 2.11536824e+00 + sys_corr_87: -1.10211036e+01 sys_corr_88: -1.10539964e+00 sys_corr_89: 6.54072151e-01 - sys_corr_90: -4.70248238e-01 - sys_corr_91: -7.82280256e-01 - sys_corr_92: -3.51891722e-01 + sys_corr_90: 7.82280256e-01 + sys_corr_91: 4.70248238e-01 + sys_corr_92: 3.51891722e-01 sys_corr_93: -1.55806904e-02 sys_corr_94: -4.94833362e-01 - sys_corr_95: 5.71936358e-01 + sys_corr_95: -5.71936358e-01 sys_corr_96: -8.72141367e-03 - sys_corr_97: 1.27328072e-01 - sys_corr_98: -3.22078904e-01 + sys_corr_97: -1.27328072e-01 + sys_corr_98: 3.22078904e-01 sys_corr_99: 5.54325209e-01 - sys_corr_100: 6.00059538e-01 - sys_corr_101: 1.18599026e+00 - sys_corr_102: 3.24740140e+00 - sys_corr_103: -1.35309315e+00 - sys_corr_104: -1.05333456e+00 - sys_corr_105: -1.60947977e-01 + sys_corr_100: 1.60947977e-01 + sys_corr_101: -6.00059538e-01 + sys_corr_102: -1.18599026e+00 + sys_corr_103: 3.24740140e+00 + sys_corr_104: 1.35309315e+00 + sys_corr_105: 1.05333456e+00 sys_corr_106: 3.31554409e-01 sys_corr_107: -3.28782362e-01 - sys_corr_108: 2.84461221e-02 - sys_corr_109: -5.45373723e-01 - sys_corr_110: 3.51176330e-01 - sys_corr_111: 4.69701544e-02 - sys_corr_112: -2.24008204e-01 - sys_corr_113: -2.00863424e-01 - sys_corr_114: 7.41632840e-04 - sys_corr_115: 3.56515899e-02 + sys_corr_108: -5.45373723e-01 + sys_corr_109: -2.84461221e-02 + sys_corr_110: -4.69701544e-02 + sys_corr_111: -3.51176330e-01 + sys_corr_112: 2.24008204e-01 + sys_corr_113: 2.00863424e-01 + sys_corr_114: -7.41632840e-04 + sys_corr_115: -3.56515899e-02 sys_corr_116: -9.38293248e-04 - sys_corr_117: -2.25481013e-02 + sys_corr_117: 2.25481013e-02 sys_corr_118: 6.92282987e-02 sys_corr_119: 4.84265596e-03 sys_corr_120: 1.64726037e-02 sys_corr_121: 1.21545676e-03 - sys_corr_122: 7.10771315e-02 - sys_corr_123: 3.33271222e-02 - sys_corr_124: 5.24823424e-02 + sys_corr_122: 3.33271222e-02 + sys_corr_123: -7.10771315e-02 + sys_corr_124: -5.24823424e-02 sys_corr_125: -4.54126054e-02 sys_corr_126: 1.72325220e-02 - sys_corr_127: 2.24396412e-01 - sys_corr_128: -8.14098853e-02 - sys_corr_129: 4.57040248e-03 - sys_corr_130: -3.96328441e-03 - sys_corr_131: -2.37164627e-02 + sys_corr_127: -2.24396412e-01 + sys_corr_128: 8.14098853e-02 + sys_corr_129: -4.57040248e-03 + sys_corr_130: 3.96328441e-03 + sys_corr_131: 2.37164627e-02 sys_corr_132: -3.96024766e-02 stat: 0.0 luminosity: 5.91248768e+02 @@ -3894,17 +3894,17 @@ bins: sys_corr_6: -5.93707408e+02 sys_corr_7: 2.11409836e+01 sys_corr_8: 1.52677849e+01 - sys_corr_9: 5.05463786e-02 - sys_corr_10: 1.74554150e+01 + sys_corr_9: -5.05463786e-02 + sys_corr_10: -1.74554150e+01 sys_corr_11: 6.03660865e+00 - sys_corr_12: -9.31653346e+00 - sys_corr_13: 3.04547328e+01 + sys_corr_12: 9.31653346e+00 + sys_corr_13: -3.04547328e+01 sys_corr_14: -8.24660716e+00 sys_corr_15: -1.52454758e+00 sys_corr_16: 1.29568833e-01 - sys_corr_17: -6.60924968e+01 + sys_corr_17: 6.60924968e+01 sys_corr_18: 1.52494083e-01 - sys_corr_19: 5.81168204e+01 + sys_corr_19: -5.81168204e+01 sys_corr_20: 2.38553174e+01 sys_corr_21: 2.21009902e+00 sys_corr_22: 1.83953732e+02 @@ -3920,103 +3920,103 @@ bins: sys_corr_32: -4.23168138e+01 sys_corr_33: 5.71879378e+01 sys_corr_34: -1.39304687e+00 - sys_corr_35: -9.80203953e+01 - sys_corr_36: 1.68314644e+02 + sys_corr_35: 9.80203953e+01 + sys_corr_36: -1.68314644e+02 sys_corr_37: -1.71433613e+02 sys_corr_38: 9.40662168e+01 - sys_corr_39: 1.25231007e+02 - sys_corr_40: 3.73226343e+01 - sys_corr_41: -7.47093742e+01 + sys_corr_39: -1.25231007e+02 + sys_corr_40: -3.73226343e+01 + sys_corr_41: 7.47093742e+01 sys_corr_42: -2.19982452e+01 sys_corr_43: 6.42642026e+01 sys_corr_44: -6.94989097e+01 sys_corr_45: -3.40780922e+01 - sys_corr_46: -6.55742611e+00 - sys_corr_47: -4.12851608e+01 + sys_corr_46: 6.55742611e+00 + sys_corr_47: 4.12851608e+01 sys_corr_48: 3.61456419e+01 sys_corr_49: -5.44321293e+00 sys_corr_50: 5.13436125e+01 - sys_corr_51: -3.96388422e+00 - sys_corr_52: 1.00328486e+01 - sys_corr_53: 3.69543926e+00 + sys_corr_51: 3.96388422e+00 + sys_corr_52: -1.00328486e+01 + sys_corr_53: -3.69543926e+00 sys_corr_54: -1.11897554e+01 sys_corr_55: 3.48603340e-01 - sys_corr_56: -1.41662328e+01 + sys_corr_56: 1.41662328e+01 sys_corr_57: 8.03927086e+00 - sys_corr_58: -6.82276978e+00 + sys_corr_58: 6.82276978e+00 sys_corr_59: 6.55216048e+00 sys_corr_60: -3.81749699e+00 - sys_corr_61: -1.70776510e+00 - sys_corr_62: -1.32853507e+01 + sys_corr_61: 1.70776510e+00 + sys_corr_62: 1.32853507e+01 sys_corr_63: 9.24071513e-01 sys_corr_64: 7.08445506e+00 - sys_corr_65: 1.22520959e+01 - sys_corr_66: -1.95688896e+00 - sys_corr_67: 3.09618629e+00 + sys_corr_65: -1.22520959e+01 + sys_corr_66: 1.95688896e+00 + sys_corr_67: -3.09618629e+00 sys_corr_68: -7.55662554e+00 sys_corr_69: -9.23890950e-01 sys_corr_70: -2.58824404e+00 - sys_corr_71: -2.06195474e+00 - sys_corr_72: -1.30811705e-01 + sys_corr_71: 2.06195474e+00 + sys_corr_72: 1.30811705e-01 sys_corr_73: 8.03053571e+00 sys_corr_74: 9.61162720e+00 - sys_corr_75: 1.39575391e+01 - sys_corr_76: -2.42875703e+00 + sys_corr_75: -1.39575391e+01 + sys_corr_76: 2.42875703e+00 sys_corr_77: -1.07644961e+01 sys_corr_78: 2.81043171e+00 sys_corr_79: -7.14201131e+00 - sys_corr_80: 4.86163345e-01 + sys_corr_80: -4.86163345e-01 sys_corr_81: 1.06897931e+01 - sys_corr_82: 1.16342073e+01 + sys_corr_82: -1.16342073e+01 sys_corr_83: 8.00902566e+00 sys_corr_84: -1.12346918e+00 sys_corr_85: -1.00043850e+00 - sys_corr_86: -3.04882414e+00 - sys_corr_87: -2.45013608e-01 + sys_corr_86: 3.04882414e+00 + sys_corr_87: 2.45013608e-01 sys_corr_88: -2.84004114e+00 sys_corr_89: 1.00011245e+00 - sys_corr_90: -6.03321431e-01 - sys_corr_91: -1.34305437e+00 - sys_corr_92: -9.35312595e-01 + sys_corr_90: 1.34305437e+00 + sys_corr_91: 6.03321431e-01 + sys_corr_92: 9.35312595e-01 sys_corr_93: -8.73106393e-02 sys_corr_94: -6.12776853e-01 - sys_corr_95: -3.29453085e-01 + sys_corr_95: 3.29453085e-01 sys_corr_96: -9.47734705e-02 - sys_corr_97: 3.16179114e-01 - sys_corr_98: 4.26013351e-02 + sys_corr_97: -3.16179114e-01 + sys_corr_98: -4.26013351e-02 sys_corr_99: -5.07967102e-01 - sys_corr_100: 1.71549696e-01 - sys_corr_101: -2.57746852e-01 - sys_corr_102: -3.77515081e-01 - sys_corr_103: -2.37480854e-01 - sys_corr_104: 9.00481649e-01 - sys_corr_105: 2.39837339e-02 + sys_corr_100: -2.39837339e-02 + sys_corr_101: -1.71549696e-01 + sys_corr_102: 2.57746852e-01 + sys_corr_103: -3.77515081e-01 + sys_corr_104: 2.37480854e-01 + sys_corr_105: -9.00481649e-01 sys_corr_106: -5.64872245e-01 sys_corr_107: -4.36722494e-01 - sys_corr_108: -6.77159865e-02 - sys_corr_109: -1.53828679e-01 - sys_corr_110: 1.05319175e-01 - sys_corr_111: 5.07038714e-01 - sys_corr_112: 4.42916412e-03 - sys_corr_113: -3.92541465e-02 - sys_corr_114: 2.91216377e-03 - sys_corr_115: 6.72685025e-02 + sys_corr_108: -1.53828679e-01 + sys_corr_109: 6.77159865e-02 + sys_corr_110: -5.07038714e-01 + sys_corr_111: -1.05319175e-01 + sys_corr_112: -4.42916412e-03 + sys_corr_113: 3.92541465e-02 + sys_corr_114: -2.91216377e-03 + sys_corr_115: -6.72685025e-02 sys_corr_116: -3.39571764e-02 - sys_corr_117: -2.87689774e-02 + sys_corr_117: 2.87689774e-02 sys_corr_118: -3.46384612e-02 sys_corr_119: -2.05549149e-03 sys_corr_120: 6.02169589e-03 sys_corr_121: -2.79800586e-03 - sys_corr_122: 5.71645922e-03 - sys_corr_123: -2.22352094e-03 - sys_corr_124: -2.15572373e-02 + sys_corr_122: -2.22352094e-03 + sys_corr_123: -5.71645922e-03 + sys_corr_124: 2.15572373e-02 sys_corr_125: -8.73928700e-03 sys_corr_126: -1.15313038e-02 - sys_corr_127: 3.49376005e-01 - sys_corr_128: -2.99798092e-01 - sys_corr_129: 9.18796009e-02 - sys_corr_130: -1.83397875e-02 - sys_corr_131: -1.25846557e-02 + sys_corr_127: -3.49376005e-01 + sys_corr_128: 2.99798092e-01 + sys_corr_129: -9.18796009e-02 + sys_corr_130: 1.83397875e-02 + sys_corr_131: 1.25846557e-02 sys_corr_132: 4.75730503e-02 stat: 0.0 luminosity: 5.63851222e+02 @@ -4028,17 +4028,17 @@ bins: sys_corr_6: -5.70782635e+02 sys_corr_7: 2.97487309e+01 sys_corr_8: 2.14659534e+01 - sys_corr_9: 1.56086601e+01 - sys_corr_10: 1.02700970e+01 + sys_corr_9: -1.56086601e+01 + sys_corr_10: -1.02700970e+01 sys_corr_11: 2.41407547e+01 - sys_corr_12: -1.38685910e+01 - sys_corr_13: 2.17498064e+01 + sys_corr_12: 1.38685910e+01 + sys_corr_13: -2.17498064e+01 sys_corr_14: -4.33764077e+00 sys_corr_15: -2.28598638e+00 sys_corr_16: 4.46350400e+00 - sys_corr_17: -3.77181034e+00 + sys_corr_17: 3.77181034e+00 sys_corr_18: 2.58985353e+00 - sys_corr_19: 6.38094314e+01 + sys_corr_19: -6.38094314e+01 sys_corr_20: 2.71870562e+01 sys_corr_21: 3.75148896e-02 sys_corr_22: 1.48892497e+02 @@ -4054,103 +4054,103 @@ bins: sys_corr_32: -5.44754633e+01 sys_corr_33: 1.70885777e+01 sys_corr_34: 6.22751842e+01 - sys_corr_35: 3.40364662e+02 - sys_corr_36: -7.02957814e+01 + sys_corr_35: -3.40364662e+02 + sys_corr_36: 7.02957814e+01 sys_corr_37: -4.37116578e+00 sys_corr_38: 4.13264378e+01 - sys_corr_39: -1.89035366e+01 - sys_corr_40: 1.64840840e+01 - sys_corr_41: -1.45192611e+01 + sys_corr_39: 1.89035366e+01 + sys_corr_40: -1.64840840e+01 + sys_corr_41: 1.45192611e+01 sys_corr_42: 1.03060525e+01 sys_corr_43: 1.23663851e+01 sys_corr_44: -1.65345973e+00 sys_corr_45: 4.02168009e+01 - sys_corr_46: -3.24854650e+01 - sys_corr_47: -2.43289781e+01 + sys_corr_46: 3.24854650e+01 + sys_corr_47: 2.43289781e+01 sys_corr_48: 6.95681767e+00 sys_corr_49: -9.34844687e+00 sys_corr_50: 2.90743201e+01 - sys_corr_51: -1.28600517e+01 - sys_corr_52: 5.92393083e-01 - sys_corr_53: 1.33516692e+01 + sys_corr_51: 1.28600517e+01 + sys_corr_52: -5.92393083e-01 + sys_corr_53: -1.33516692e+01 sys_corr_54: -1.37191844e+01 sys_corr_55: 6.09501207e-01 - sys_corr_56: 1.48351055e+00 + sys_corr_56: -1.48351055e+00 sys_corr_57: 1.57026351e+01 - sys_corr_58: -4.29050268e+00 + sys_corr_58: 4.29050268e+00 sys_corr_59: 7.85938305e+00 sys_corr_60: 2.34533359e+00 - sys_corr_61: 5.87867913e+00 - sys_corr_62: 2.01627407e+00 + sys_corr_61: -5.87867913e+00 + sys_corr_62: -2.01627407e+00 sys_corr_63: -8.52668134e+00 sys_corr_64: 4.04830913e+00 - sys_corr_65: -1.12496943e+00 - sys_corr_66: -1.84456395e+00 - sys_corr_67: 2.20635849e+00 + sys_corr_65: 1.12496943e+00 + sys_corr_66: 1.84456395e+00 + sys_corr_67: -2.20635849e+00 sys_corr_68: 1.21101578e+00 sys_corr_69: -6.70843586e+00 sys_corr_70: 1.94105410e+00 - sys_corr_71: -5.98775379e+00 - sys_corr_72: -1.04135813e+00 + sys_corr_71: 5.98775379e+00 + sys_corr_72: 1.04135813e+00 sys_corr_73: -4.27516795e+00 sys_corr_74: -3.35883720e-01 - sys_corr_75: -2.49594187e+00 - sys_corr_76: 9.85820225e-02 + sys_corr_75: 2.49594187e+00 + sys_corr_76: -9.85820225e-02 sys_corr_77: 2.99876484e+00 sys_corr_78: -2.23901426e+00 sys_corr_79: -1.07403792e+00 - sys_corr_80: -1.24800385e+00 + sys_corr_80: 1.24800385e+00 sys_corr_81: -7.25508650e+00 - sys_corr_82: -4.29194577e+00 + sys_corr_82: 4.29194577e+00 sys_corr_83: -2.87688564e-01 sys_corr_84: 4.71667754e-01 sys_corr_85: 1.23776367e+00 - sys_corr_86: 2.64402214e+00 - sys_corr_87: -1.22921943e+01 + sys_corr_86: -2.64402214e+00 + sys_corr_87: 1.22921943e+01 sys_corr_88: 1.48197990e+00 sys_corr_89: -2.23254379e-01 - sys_corr_90: 4.17975045e-01 - sys_corr_91: 1.01865048e+00 - sys_corr_92: 3.73298990e+00 + sys_corr_90: -1.01865048e+00 + sys_corr_91: -4.17975045e-01 + sys_corr_92: -3.73298990e+00 sys_corr_93: 1.62534380e-02 sys_corr_94: 2.32606481e-01 - sys_corr_95: -5.54163053e-02 + sys_corr_95: 5.54163053e-02 sys_corr_96: -5.36282083e-02 - sys_corr_97: 1.20605385e-01 - sys_corr_98: 7.04644522e-02 + sys_corr_97: -1.20605385e-01 + sys_corr_98: -7.04644522e-02 sys_corr_99: -1.17661778e-01 - sys_corr_100: 1.40220244e-01 - sys_corr_101: -2.02044295e-01 - sys_corr_102: -1.61766131e+00 - sys_corr_103: 2.57853752e-01 - sys_corr_104: 1.02898260e+00 - sys_corr_105: -3.51842461e-01 + sys_corr_100: 3.51842461e-01 + sys_corr_101: -1.40220244e-01 + sys_corr_102: 2.02044295e-01 + sys_corr_103: -1.61766131e+00 + sys_corr_104: -2.57853752e-01 + sys_corr_105: -1.02898260e+00 sys_corr_106: 1.69221432e-01 sys_corr_107: -5.43330220e-01 - sys_corr_108: 2.06547888e-03 - sys_corr_109: 3.01561502e-02 - sys_corr_110: -7.73310618e-02 - sys_corr_111: 3.95796425e-01 - sys_corr_112: -2.54067874e-02 - sys_corr_113: 2.84848429e-03 - sys_corr_114: 9.96605965e-04 - sys_corr_115: 4.81134708e-02 + sys_corr_108: 3.01561502e-02 + sys_corr_109: -2.06547888e-03 + sys_corr_110: -3.95796425e-01 + sys_corr_111: 7.73310618e-02 + sys_corr_112: 2.54067874e-02 + sys_corr_113: -2.84848429e-03 + sys_corr_114: -9.96605965e-04 + sys_corr_115: -4.81134708e-02 sys_corr_116: -3.71226071e-02 - sys_corr_117: -2.79384129e-02 + sys_corr_117: 2.79384129e-02 sys_corr_118: 1.47863426e-02 sys_corr_119: 3.16201580e-03 sys_corr_120: 1.59382241e-02 sys_corr_121: 1.23221357e-03 - sys_corr_122: 1.73905856e-02 - sys_corr_123: 7.66240054e-03 - sys_corr_124: -3.91730825e-02 + sys_corr_122: 7.66240054e-03 + sys_corr_123: -1.73905856e-02 + sys_corr_124: 3.91730825e-02 sys_corr_125: -2.21237041e-02 sys_corr_126: -1.38659560e-02 - sys_corr_127: 9.93663828e-02 - sys_corr_128: -2.45010029e-02 - sys_corr_129: -7.49713273e-02 - sys_corr_130: -2.55816629e-02 - sys_corr_131: -1.36224955e-02 + sys_corr_127: -9.93663828e-02 + sys_corr_128: 2.45010029e-02 + sys_corr_129: 7.49713273e-02 + sys_corr_130: 2.55816629e-02 + sys_corr_131: 1.36224955e-02 sys_corr_132: 5.66403399e-02 stat: 0.0 luminosity: 5.69413328e+02 @@ -4162,17 +4162,17 @@ bins: sys_corr_6: -5.58861996e+02 sys_corr_7: 3.12806190e+01 sys_corr_8: 2.32178676e+00 - sys_corr_9: -5.60575206e+00 - sys_corr_10: -2.80478588e+00 + sys_corr_9: 5.60575206e+00 + sys_corr_10: 2.80478588e+00 sys_corr_11: -3.99293495e+00 - sys_corr_12: 4.12884122e+00 - sys_corr_13: 1.35976414e+01 + sys_corr_12: -4.12884122e+00 + sys_corr_13: -1.35976414e+01 sys_corr_14: -3.68107798e+01 sys_corr_15: 5.08530526e+00 sys_corr_16: 1.12146988e+01 - sys_corr_17: -2.44392408e+01 + sys_corr_17: 2.44392408e+01 sys_corr_18: -3.69251525e+00 - sys_corr_19: 9.51247460e+00 + sys_corr_19: -9.51247460e+00 sys_corr_20: 8.82479354e+00 sys_corr_21: 1.77765371e-01 sys_corr_22: 1.03686013e+02 @@ -4188,103 +4188,103 @@ bins: sys_corr_32: 1.72198395e+02 sys_corr_33: -3.05774373e+02 sys_corr_34: 1.84072492e+02 - sys_corr_35: -5.75025266e+01 - sys_corr_36: 2.20425809e+01 + sys_corr_35: 5.75025266e+01 + sys_corr_36: -2.20425809e+01 sys_corr_37: 5.88919956e+01 sys_corr_38: -1.22376081e+01 - sys_corr_39: 3.62609426e-01 - sys_corr_40: -2.14124392e+01 - sys_corr_41: -5.79206982e+00 + sys_corr_39: -3.62609426e-01 + sys_corr_40: 2.14124392e+01 + sys_corr_41: 5.79206982e+00 sys_corr_42: 3.40930912e+01 sys_corr_43: -1.87544625e+00 sys_corr_44: 6.48614917e+00 sys_corr_45: -4.98387965e+00 - sys_corr_46: -1.89808933e-01 - sys_corr_47: 4.68699658e+00 + sys_corr_46: 1.89808933e-01 + sys_corr_47: -4.68699658e+00 sys_corr_48: 1.54200376e+01 sys_corr_49: -2.58048936e+01 sys_corr_50: 2.10410318e+01 - sys_corr_51: 8.28524764e-01 - sys_corr_52: 9.95103746e+00 - sys_corr_53: -5.94290042e+00 + sys_corr_51: -8.28524764e-01 + sys_corr_52: -9.95103746e+00 + sys_corr_53: 5.94290042e+00 sys_corr_54: 1.04246788e+01 sys_corr_55: -3.09343565e+00 - sys_corr_56: 8.21063147e+00 + sys_corr_56: -8.21063147e+00 sys_corr_57: 8.60621893e-01 - sys_corr_58: 4.50369292e+00 + sys_corr_58: -4.50369292e+00 sys_corr_59: -1.12856522e+01 sys_corr_60: -6.91446373e-01 - sys_corr_61: -5.71667733e+00 - sys_corr_62: 1.13337481e+00 + sys_corr_61: 5.71667733e+00 + sys_corr_62: -1.13337481e+00 sys_corr_63: 2.96691679e+00 sys_corr_64: -3.88028979e+00 - sys_corr_65: 6.71698095e+00 - sys_corr_66: 9.01836209e-01 - sys_corr_67: 5.08443045e-01 + sys_corr_65: -6.71698095e+00 + sys_corr_66: -9.01836209e-01 + sys_corr_67: -5.08443045e-01 sys_corr_68: 9.04049406e-01 sys_corr_69: -1.89181702e+00 sys_corr_70: -1.44360011e+00 - sys_corr_71: -3.96373895e+00 - sys_corr_72: 2.94598660e+00 + sys_corr_71: 3.96373895e+00 + sys_corr_72: -2.94598660e+00 sys_corr_73: 2.65617875e+00 sys_corr_74: -2.87106835e+00 - sys_corr_75: -4.65271141e+00 - sys_corr_76: -1.09321593e+00 + sys_corr_75: 4.65271141e+00 + sys_corr_76: 1.09321593e+00 sys_corr_77: -5.58078292e+00 sys_corr_78: -1.59118082e+00 sys_corr_79: -2.56703589e+00 - sys_corr_80: -1.47964328e+00 + sys_corr_80: 1.47964328e+00 sys_corr_81: 4.88136552e+00 - sys_corr_82: -3.22225945e-01 + sys_corr_82: 3.22225945e-01 sys_corr_83: 2.17166210e+00 sys_corr_84: -1.51141186e+00 sys_corr_85: -2.82645563e-01 - sys_corr_86: 4.21807337e+00 - sys_corr_87: -2.31727269e+00 + sys_corr_86: -4.21807337e+00 + sys_corr_87: 2.31727269e+00 sys_corr_88: 1.60887298e+00 sys_corr_89: 4.80477709e-01 - sys_corr_90: 3.74214294e-01 - sys_corr_91: 1.60347119e+00 - sys_corr_92: 5.72465912e+00 + sys_corr_90: -1.60347119e+00 + sys_corr_91: -3.74214294e-01 + sys_corr_92: -5.72465912e+00 sys_corr_93: 3.21517538e-02 sys_corr_94: 1.71063486e-01 - sys_corr_95: -7.14676387e-01 + sys_corr_95: 7.14676387e-01 sys_corr_96: -1.37344792e-01 - sys_corr_97: 9.54976599e-01 - sys_corr_98: 4.33052892e-01 + sys_corr_97: -9.54976599e-01 + sys_corr_98: -4.33052892e-01 sys_corr_99: -1.31769478e-01 - sys_corr_100: -2.88383284e-01 - sys_corr_101: 3.55011713e-01 - sys_corr_102: 2.43465918e+00 - sys_corr_103: -5.39075111e-01 - sys_corr_104: -8.16940054e-01 - sys_corr_105: 1.68450669e-01 + sys_corr_100: -1.68450669e-01 + sys_corr_101: 2.88383284e-01 + sys_corr_102: -3.55011713e-01 + sys_corr_103: 2.43465918e+00 + sys_corr_104: 5.39075111e-01 + sys_corr_105: 8.16940054e-01 sys_corr_106: 9.70301383e-03 sys_corr_107: -3.21324044e-01 - sys_corr_108: 1.22519875e-01 - sys_corr_109: -5.30918430e-03 - sys_corr_110: 2.39177625e-01 - sys_corr_111: -2.76859148e-03 - sys_corr_112: 1.98634015e-02 - sys_corr_113: -7.98658551e-02 - sys_corr_114: 1.69846232e-03 - sys_corr_115: 1.04834317e-01 + sys_corr_108: -5.30918430e-03 + sys_corr_109: -1.22519875e-01 + sys_corr_110: 2.76859148e-03 + sys_corr_111: -2.39177625e-01 + sys_corr_112: -1.98634015e-02 + sys_corr_113: 7.98658551e-02 + sys_corr_114: -1.69846232e-03 + sys_corr_115: -1.04834317e-01 sys_corr_116: -6.14230271e-03 - sys_corr_117: 1.43403390e-05 + sys_corr_117: -1.43403390e-05 sys_corr_118: 3.39608775e-02 sys_corr_119: 1.03221652e-03 sys_corr_120: -1.15022167e-03 sys_corr_121: -1.33352099e-03 - sys_corr_122: 8.26542323e-03 - sys_corr_123: 1.05993299e-03 - sys_corr_124: 3.38811241e-02 + sys_corr_122: 1.05993299e-03 + sys_corr_123: -8.26542323e-03 + sys_corr_124: -3.38811241e-02 sys_corr_125: -6.88850494e-03 sys_corr_126: -7.19815026e-04 - sys_corr_127: 2.56172964e-01 - sys_corr_128: -5.33163539e-02 - sys_corr_129: -4.20504448e-02 - sys_corr_130: -7.21981799e-03 - sys_corr_131: -5.41706075e-03 + sys_corr_127: -2.56172964e-01 + sys_corr_128: 5.33163539e-02 + sys_corr_129: 4.20504448e-02 + sys_corr_130: 7.21981799e-03 + sys_corr_131: 5.41706075e-03 sys_corr_132: 2.38606805e-02 stat: 0.0 luminosity: 5.64811698e+02 @@ -4296,17 +4296,17 @@ bins: sys_corr_6: -5.53845331e+02 sys_corr_7: 5.45500599e+01 sys_corr_8: 4.55192828e+00 - sys_corr_9: -7.38151284e+00 - sys_corr_10: -1.92470742e+01 + sys_corr_9: 7.38151284e+00 + sys_corr_10: 1.92470742e+01 sys_corr_11: 3.72636341e+00 - sys_corr_12: 2.10918445e+01 - sys_corr_13: -1.29751904e+01 + sys_corr_12: -2.10918445e+01 + sys_corr_13: 1.29751904e+01 sys_corr_14: -2.49077331e+01 sys_corr_15: 4.47273830e+00 sys_corr_16: 7.49560573e+00 - sys_corr_17: -1.18084576e+01 + sys_corr_17: 1.18084576e+01 sys_corr_18: 1.01507604e+01 - sys_corr_19: 1.41905874e+00 + sys_corr_19: -1.41905874e+00 sys_corr_20: 1.00508145e+01 sys_corr_21: -1.50440789e+00 sys_corr_22: 8.05776893e+01 @@ -4322,103 +4322,103 @@ bins: sys_corr_32: -2.52233848e+02 sys_corr_33: 9.53121969e+01 sys_corr_34: 2.25928113e+02 - sys_corr_35: -9.96797532e+01 - sys_corr_36: 2.04829352e+01 + sys_corr_35: 9.96797532e+01 + sys_corr_36: -2.04829352e+01 sys_corr_37: 6.04944170e+01 sys_corr_38: -4.34988406e+01 - sys_corr_39: -1.06301950e+02 - sys_corr_40: -2.62530700e+01 - sys_corr_41: 5.10176814e+01 + sys_corr_39: 1.06301950e+02 + sys_corr_40: 2.62530700e+01 + sys_corr_41: -5.10176814e+01 sys_corr_42: 3.28385325e+01 sys_corr_43: -2.60599600e+01 sys_corr_44: 2.39473982e+00 sys_corr_45: -1.71089538e+01 - sys_corr_46: -1.68747475e+01 - sys_corr_47: 1.55354050e+01 + sys_corr_46: 1.68747475e+01 + sys_corr_47: -1.55354050e+01 sys_corr_48: 1.18544062e+01 sys_corr_49: -3.86149660e+01 sys_corr_50: 1.22485551e+01 - sys_corr_51: -1.51132788e+01 - sys_corr_52: -2.02788165e+01 - sys_corr_53: -3.18825100e+00 + sys_corr_51: 1.51132788e+01 + sys_corr_52: 2.02788165e+01 + sys_corr_53: 3.18825100e+00 sys_corr_54: -4.92639387e+00 sys_corr_55: -5.68939852e+00 - sys_corr_56: 1.64852188e+00 + sys_corr_56: -1.64852188e+00 sys_corr_57: 4.04524717e+00 - sys_corr_58: -4.30030522e+00 + sys_corr_58: 4.30030522e+00 sys_corr_59: 1.35941876e+00 sys_corr_60: 1.89437028e+00 - sys_corr_61: 3.34413080e+00 - sys_corr_62: 1.28248256e+00 + sys_corr_61: -3.34413080e+00 + sys_corr_62: -1.28248256e+00 sys_corr_63: -2.02732562e+00 sys_corr_64: -7.92017265e+00 - sys_corr_65: -3.13023439e+00 - sys_corr_66: 2.13535757e+00 - sys_corr_67: 4.78484616e+00 + sys_corr_65: 3.13023439e+00 + sys_corr_66: -2.13535757e+00 + sys_corr_67: -4.78484616e+00 sys_corr_68: -6.85539252e+00 sys_corr_69: 3.86381440e+00 sys_corr_70: -4.49972230e+00 - sys_corr_71: -2.75182394e+00 - sys_corr_72: 4.95793504e+00 + sys_corr_71: 2.75182394e+00 + sys_corr_72: -4.95793504e+00 sys_corr_73: 6.15234133e-01 sys_corr_74: -1.85603779e+00 - sys_corr_75: -2.10529967e+00 - sys_corr_76: -9.19168726e-01 + sys_corr_75: 2.10529967e+00 + sys_corr_76: 9.19168726e-01 sys_corr_77: -8.35427843e+00 sys_corr_78: 1.25032138e-01 sys_corr_79: 1.36105366e+00 - sys_corr_80: -7.00933030e-01 + sys_corr_80: 7.00933030e-01 sys_corr_81: 5.85823951e+00 - sys_corr_82: -1.36677296e-01 + sys_corr_82: 1.36677296e-01 sys_corr_83: 3.77273054e+00 sys_corr_84: 1.81798326e+00 sys_corr_85: 1.88087937e+00 - sys_corr_86: 2.93211695e+00 - sys_corr_87: -5.90877709e-01 + sys_corr_86: -2.93211695e+00 + sys_corr_87: 5.90877709e-01 sys_corr_88: -7.52469344e-02 sys_corr_89: 1.28936283e-01 - sys_corr_90: 8.41345267e-01 - sys_corr_91: 1.66900560e+00 - sys_corr_92: 1.96087746e+00 + sys_corr_90: -1.66900560e+00 + sys_corr_91: -8.41345267e-01 + sys_corr_92: -1.96087746e+00 sys_corr_93: 2.21732407e-01 sys_corr_94: 6.19055268e-01 - sys_corr_95: -9.26541478e-01 + sys_corr_95: 9.26541478e-01 sys_corr_96: -7.15933335e-02 - sys_corr_97: 1.54562077e-01 - sys_corr_98: 2.40859699e-01 + sys_corr_97: -1.54562077e-01 + sys_corr_98: -2.40859699e-01 sys_corr_99: -4.02415516e-01 - sys_corr_100: -5.11925612e-01 - sys_corr_101: -4.19016973e-01 - sys_corr_102: -1.05831293e+00 - sys_corr_103: 8.96019032e-02 - sys_corr_104: 5.61730292e-01 - sys_corr_105: -8.63681498e-02 + sys_corr_100: 8.63681498e-02 + sys_corr_101: 5.11925612e-01 + sys_corr_102: 4.19016973e-01 + sys_corr_103: -1.05831293e+00 + sys_corr_104: -8.96019032e-02 + sys_corr_105: -5.61730292e-01 sys_corr_106: -2.29381613e-01 sys_corr_107: -4.43392317e-01 - sys_corr_108: 5.01278045e-02 - sys_corr_109: 1.32636395e-01 - sys_corr_110: -1.17663008e-01 - sys_corr_111: -5.88766724e-02 - sys_corr_112: 6.85885936e-02 - sys_corr_113: 2.44233698e-02 - sys_corr_114: 1.19224774e-03 - sys_corr_115: 4.64238155e-02 + sys_corr_108: 1.32636395e-01 + sys_corr_109: -5.01278045e-02 + sys_corr_110: 5.88766724e-02 + sys_corr_111: 1.17663008e-01 + sys_corr_112: -6.85885936e-02 + sys_corr_113: -2.44233698e-02 + sys_corr_114: -1.19224774e-03 + sys_corr_115: -4.64238155e-02 sys_corr_116: -1.34840818e-02 - sys_corr_117: -4.78789025e-03 + sys_corr_117: 4.78789025e-03 sys_corr_118: 6.78855132e-02 sys_corr_119: -1.50721553e-03 sys_corr_120: 1.89700392e-03 sys_corr_121: 1.35307558e-03 - sys_corr_122: 4.83673811e-03 - sys_corr_123: 1.33311199e-03 - sys_corr_124: -5.28050338e-03 + sys_corr_122: 1.33311199e-03 + sys_corr_123: -4.83673811e-03 + sys_corr_124: 5.28050338e-03 sys_corr_125: -8.43832064e-03 sys_corr_126: -6.85307473e-04 - sys_corr_127: 2.36736184e-01 - sys_corr_128: 3.38492297e-02 - sys_corr_129: -1.50496592e-03 - sys_corr_130: -3.85931478e-03 - sys_corr_131: -9.99424871e-03 + sys_corr_127: -2.36736184e-01 + sys_corr_128: -3.38492297e-02 + sys_corr_129: 1.50496592e-03 + sys_corr_130: 3.85931478e-03 + sys_corr_131: 9.99424871e-03 sys_corr_132: -9.14007914e-03 stat: 0.0 luminosity: 5.74477992e+02 @@ -4430,17 +4430,17 @@ bins: sys_corr_6: -5.82676695e+02 sys_corr_7: 4.85405133e+01 sys_corr_8: 1.08207802e+01 - sys_corr_9: -1.03741089e+01 - sys_corr_10: 2.18593314e+00 + sys_corr_9: 1.03741089e+01 + sys_corr_10: -2.18593314e+00 sys_corr_11: 6.67525831e+00 - sys_corr_12: 1.32127041e+01 - sys_corr_13: 2.25002300e+01 + sys_corr_12: -1.32127041e+01 + sys_corr_13: -2.25002300e+01 sys_corr_14: 4.58117854e+00 sys_corr_15: -5.26847169e+00 sys_corr_16: -4.67485257e+00 - sys_corr_17: 5.64085174e+00 + sys_corr_17: -5.64085174e+00 sys_corr_18: 3.44356245e+01 - sys_corr_19: 1.18007038e+01 + sys_corr_19: -1.18007038e+01 sys_corr_20: 1.59188515e+01 sys_corr_21: 7.06137235e+00 sys_corr_22: 7.62823222e+00 @@ -4456,103 +4456,103 @@ bins: sys_corr_32: 2.09821670e+01 sys_corr_33: 3.70177435e+01 sys_corr_34: -1.84412621e+00 - sys_corr_35: -5.15961218e+00 - sys_corr_36: -6.49015144e+01 + sys_corr_35: 5.15961218e+00 + sys_corr_36: 6.49015144e+01 sys_corr_37: 1.41520476e+02 sys_corr_38: -8.65546585e+01 - sys_corr_39: 2.64836835e+02 - sys_corr_40: 7.99256531e+01 - sys_corr_41: 7.62020191e+01 + sys_corr_39: -2.64836835e+02 + sys_corr_40: -7.99256531e+01 + sys_corr_41: -7.62020191e+01 sys_corr_42: -5.27718412e+01 sys_corr_43: -9.34095781e+00 sys_corr_44: -6.26051780e+01 sys_corr_45: 5.41705543e+01 - sys_corr_46: -3.08048536e+01 - sys_corr_47: -4.49446293e+01 + sys_corr_46: 3.08048536e+01 + sys_corr_47: 4.49446293e+01 sys_corr_48: 4.91250334e+00 sys_corr_49: -9.41368492e+00 sys_corr_50: 4.27728652e+00 - sys_corr_51: -2.11911347e+01 - sys_corr_52: -1.02104090e+01 - sys_corr_53: 3.67033806e+00 + sys_corr_51: 2.11911347e+01 + sys_corr_52: 1.02104090e+01 + sys_corr_53: -3.67033806e+00 sys_corr_54: -5.78102367e+00 sys_corr_55: 9.39350906e+00 - sys_corr_56: -1.47480163e+01 + sys_corr_56: 1.47480163e+01 sys_corr_57: 1.35464803e+00 - sys_corr_58: 1.81810453e+00 + sys_corr_58: -1.81810453e+00 sys_corr_59: 1.27408809e+01 sys_corr_60: -5.90173327e+00 - sys_corr_61: 5.09409758e+00 - sys_corr_62: -4.34366006e-02 + sys_corr_61: -5.09409758e+00 + sys_corr_62: 4.34366006e-02 sys_corr_63: -2.54486437e+00 sys_corr_64: 6.10312683e+00 - sys_corr_65: 5.93183220e+00 - sys_corr_66: -1.27975298e+00 - sys_corr_67: 9.23867793e+00 + sys_corr_65: -5.93183220e+00 + sys_corr_66: 1.27975298e+00 + sys_corr_67: -9.23867793e+00 sys_corr_68: 1.04680643e+01 sys_corr_69: -1.08350740e+01 sys_corr_70: -4.72945595e+00 - sys_corr_71: -4.52399271e+00 - sys_corr_72: 8.85061446e+00 + sys_corr_71: 4.52399271e+00 + sys_corr_72: -8.85061446e+00 sys_corr_73: 3.60607864e+00 sys_corr_74: -1.78351686e+00 - sys_corr_75: -2.26499785e+00 - sys_corr_76: -3.19378011e-01 + sys_corr_75: 2.26499785e+00 + sys_corr_76: 3.19378011e-01 sys_corr_77: -5.40708665e+00 sys_corr_78: -6.74301298e-01 sys_corr_79: -8.38085453e+00 - sys_corr_80: -5.03090059e-01 + sys_corr_80: 5.03090059e-01 sys_corr_81: -3.27404479e+00 - sys_corr_82: 7.07435712e+00 + sys_corr_82: -7.07435712e+00 sys_corr_83: -3.11511486e+00 sys_corr_84: 1.30998447e+00 sys_corr_85: 1.78737482e-01 - sys_corr_86: 7.51706569e-01 - sys_corr_87: 1.03564380e+01 + sys_corr_86: -7.51706569e-01 + sys_corr_87: -1.03564380e+01 sys_corr_88: 1.42405139e+00 sys_corr_89: 2.86256505e-01 - sys_corr_90: 5.76421010e-01 - sys_corr_91: 8.25010799e-01 - sys_corr_92: -2.85123803e+00 + sys_corr_90: -8.25010799e-01 + sys_corr_91: -5.76421010e-01 + sys_corr_92: 2.85123803e+00 sys_corr_93: 1.09030851e-01 sys_corr_94: 9.57932540e-01 - sys_corr_95: -1.42203821e+00 + sys_corr_95: 1.42203821e+00 sys_corr_96: -2.72756374e-01 - sys_corr_97: 1.16695448e+00 - sys_corr_98: 8.45846481e-01 + sys_corr_97: -1.16695448e+00 + sys_corr_98: -8.45846481e-01 sys_corr_99: -4.75106057e-02 - sys_corr_100: 7.12338457e-01 - sys_corr_101: -3.98802506e-02 - sys_corr_102: 1.86851242e+00 - sys_corr_103: -4.16318122e-01 - sys_corr_104: -3.84630584e-01 - sys_corr_105: -5.21225866e-02 + sys_corr_100: 5.21225866e-02 + sys_corr_101: -7.12338457e-01 + sys_corr_102: 3.98802506e-02 + sys_corr_103: 1.86851242e+00 + sys_corr_104: 4.16318122e-01 + sys_corr_105: 3.84630584e-01 sys_corr_106: 1.13306302e-01 sys_corr_107: -6.38432078e-01 - sys_corr_108: 9.09317905e-02 - sys_corr_109: 1.00386177e-01 - sys_corr_110: -4.22178856e-01 - sys_corr_111: 3.48031807e-02 - sys_corr_112: 5.58881094e-02 - sys_corr_113: 7.53125397e-02 - sys_corr_114: 2.32422810e-04 - sys_corr_115: 1.04477687e-02 + sys_corr_108: 1.00386177e-01 + sys_corr_109: -9.09317905e-02 + sys_corr_110: -3.48031807e-02 + sys_corr_111: 4.22178856e-01 + sys_corr_112: -5.58881094e-02 + sys_corr_113: -7.53125397e-02 + sys_corr_114: -2.32422810e-04 + sys_corr_115: -1.04477687e-02 sys_corr_116: -4.46382002e-02 - sys_corr_117: -2.12385549e-02 + sys_corr_117: 2.12385549e-02 sys_corr_118: -2.87295959e-02 sys_corr_119: -2.95113011e-04 sys_corr_120: 1.81063349e-02 sys_corr_121: -9.27214285e-03 - sys_corr_122: -1.32304276e-02 - sys_corr_123: -1.09416058e-02 - sys_corr_124: -4.58605819e-02 + sys_corr_122: -1.09416058e-02 + sys_corr_123: 1.32304276e-02 + sys_corr_124: 4.58605819e-02 sys_corr_125: 7.43393175e-03 sys_corr_126: -9.68721030e-03 - sys_corr_127: 1.22317108e-01 - sys_corr_128: -1.51893179e-02 - sys_corr_129: 1.99839897e-02 - sys_corr_130: -5.60705328e-05 - sys_corr_131: 3.81351495e-05 + sys_corr_127: -1.22317108e-01 + sys_corr_128: 1.51893179e-02 + sys_corr_129: -1.99839897e-02 + sys_corr_130: 5.60705328e-05 + sys_corr_131: -3.81351495e-05 sys_corr_132: -7.92449140e-03 stat: 0.0 luminosity: 5.95996522e+02 @@ -4564,17 +4564,17 @@ bins: sys_corr_6: -5.98083362e+02 sys_corr_7: 6.14612834e+01 sys_corr_8: -7.76876095e+00 - sys_corr_9: -2.22109774e+01 - sys_corr_10: -3.66284999e+01 + sys_corr_9: 2.22109774e+01 + sys_corr_10: 3.66284999e+01 sys_corr_11: -1.04776131e+01 - sys_corr_12: 1.59240023e+01 - sys_corr_13: -1.02985427e+01 + sys_corr_12: -1.59240023e+01 + sys_corr_13: 1.02985427e+01 sys_corr_14: 7.14201151e+00 sys_corr_15: 8.51889166e-01 sys_corr_16: 2.66992154e+00 - sys_corr_17: 6.35723024e+00 + sys_corr_17: -6.35723024e+00 sys_corr_18: -6.07906382e+00 - sys_corr_19: -6.13642190e+00 + sys_corr_19: 6.13642190e+00 sys_corr_20: -7.43568916e-01 sys_corr_21: 4.60916311e+00 sys_corr_22: -2.71264610e+01 @@ -4590,103 +4590,103 @@ bins: sys_corr_32: 3.77100633e+01 sys_corr_33: 1.23242715e+01 sys_corr_34: 2.01787501e+01 - sys_corr_35: 6.64948982e+00 - sys_corr_36: -2.78950558e+01 + sys_corr_35: -6.64948982e+00 + sys_corr_36: 2.78950558e+01 sys_corr_37: -2.71543162e+01 sys_corr_38: -1.98150118e+01 - sys_corr_39: -8.32690635e+01 - sys_corr_40: 6.24457499e+01 - sys_corr_41: -1.05843660e+02 + sys_corr_39: 8.32690635e+01 + sys_corr_40: -6.24457499e+01 + sys_corr_41: 1.05843660e+02 sys_corr_42: -5.01990907e+01 sys_corr_43: 1.01250423e+02 sys_corr_44: -1.14950467e+02 sys_corr_45: 1.13232672e+02 - sys_corr_46: 2.00238964e+02 - sys_corr_47: 2.34281770e+01 + sys_corr_46: -2.00238964e+02 + sys_corr_47: -2.34281770e+01 sys_corr_48: -4.09943672e+01 sys_corr_49: -3.28593139e+01 sys_corr_50: -7.71578499e+01 - sys_corr_51: 9.96783965e+00 - sys_corr_52: -1.92054671e+01 - sys_corr_53: -8.07491699e-01 + sys_corr_51: -9.96783965e+00 + sys_corr_52: 1.92054671e+01 + sys_corr_53: 8.07491699e-01 sys_corr_54: 1.53867307e+01 sys_corr_55: 6.50882778e+00 - sys_corr_56: 9.07284082e+00 + sys_corr_56: -9.07284082e+00 sys_corr_57: -9.70389036e+00 - sys_corr_58: 1.42124826e+01 + sys_corr_58: -1.42124826e+01 sys_corr_59: 8.44944224e+00 sys_corr_60: -1.23531381e+01 - sys_corr_61: -1.52546082e+00 - sys_corr_62: -1.69372053e+01 + sys_corr_61: 1.52546082e+00 + sys_corr_62: 1.69372053e+01 sys_corr_63: -1.26496807e+01 sys_corr_64: 2.94673210e+00 - sys_corr_65: -1.29443572e+01 - sys_corr_66: 2.65694476e+00 - sys_corr_67: -1.09599077e+01 + sys_corr_65: 1.29443572e+01 + sys_corr_66: -2.65694476e+00 + sys_corr_67: 1.09599077e+01 sys_corr_68: -2.85937711e+01 sys_corr_69: 8.65950703e+00 sys_corr_70: -1.61979572e+00 - sys_corr_71: -4.67246269e-01 - sys_corr_72: -3.81935227e-01 + sys_corr_71: 4.67246269e-01 + sys_corr_72: 3.81935227e-01 sys_corr_73: -4.86310317e+00 sys_corr_74: -4.33177306e+00 - sys_corr_75: -1.49484854e+01 - sys_corr_76: 3.63411255e-01 + sys_corr_75: 1.49484854e+01 + sys_corr_76: -3.63411255e-01 sys_corr_77: 4.97161624e+00 sys_corr_78: -3.05126993e+00 sys_corr_79: -5.58152114e+00 - sys_corr_80: -3.17190483e+00 + sys_corr_80: 3.17190483e+00 sys_corr_81: 2.46430452e-01 - sys_corr_82: 3.02028176e+00 + sys_corr_82: -3.02028176e+00 sys_corr_83: -2.16796390e+00 sys_corr_84: 1.87579271e+00 sys_corr_85: -6.05658729e-01 - sys_corr_86: 5.51270867e+00 - sys_corr_87: 7.65570862e+00 + sys_corr_86: -5.51270867e+00 + sys_corr_87: -7.65570862e+00 sys_corr_88: 4.70816051e+00 sys_corr_89: 9.53378646e-02 - sys_corr_90: 2.35089560e+00 - sys_corr_91: 1.34462886e+00 - sys_corr_92: 1.49408193e+00 + sys_corr_90: -1.34462886e+00 + sys_corr_91: -2.35089560e+00 + sys_corr_92: -1.49408193e+00 sys_corr_93: 8.87649949e-02 sys_corr_94: 8.78123922e-01 - sys_corr_95: -9.93194786e-01 + sys_corr_95: 9.93194786e-01 sys_corr_96: 5.37102201e-02 - sys_corr_97: 4.93621014e-01 - sys_corr_98: 1.15069739e-01 + sys_corr_97: -4.93621014e-01 + sys_corr_98: -1.15069739e-01 sys_corr_99: 5.20650234e-01 - sys_corr_100: -4.80798034e-01 - sys_corr_101: -1.08292698e-02 - sys_corr_102: -4.51292387e-02 - sys_corr_103: -3.34532565e-01 - sys_corr_104: -7.15660063e-01 - sys_corr_105: -6.10394122e-01 + sys_corr_100: 6.10394122e-01 + sys_corr_101: 4.80798034e-01 + sys_corr_102: 1.08292698e-02 + sys_corr_103: -4.51292387e-02 + sys_corr_104: 3.34532565e-01 + sys_corr_105: 7.15660063e-01 sys_corr_106: -3.23493598e-01 sys_corr_107: -3.96723263e-01 - sys_corr_108: 4.27596545e-01 - sys_corr_109: 2.17189140e-01 - sys_corr_110: 3.90925429e-01 - sys_corr_111: 1.44252929e-01 - sys_corr_112: 2.02432905e-01 - sys_corr_113: 1.51561978e-01 - sys_corr_114: 1.10276349e-03 - sys_corr_115: 1.31352068e-01 + sys_corr_108: 2.17189140e-01 + sys_corr_109: -4.27596545e-01 + sys_corr_110: -1.44252929e-01 + sys_corr_111: -3.90925429e-01 + sys_corr_112: -2.02432905e-01 + sys_corr_113: -1.51561978e-01 + sys_corr_114: -1.10276349e-03 + sys_corr_115: -1.31352068e-01 sys_corr_116: -3.69362403e-02 - sys_corr_117: -1.99065143e-02 + sys_corr_117: 1.99065143e-02 sys_corr_118: 1.27475284e-02 sys_corr_119: 1.88216550e-04 sys_corr_120: 6.37160914e-03 sys_corr_121: -1.06662697e-02 - sys_corr_122: -4.61503349e-02 - sys_corr_123: -2.41208045e-02 - sys_corr_124: -2.93528123e-02 + sys_corr_122: -2.41208045e-02 + sys_corr_123: 4.61503349e-02 + sys_corr_124: 2.93528123e-02 sys_corr_125: 2.73557737e-02 sys_corr_126: -6.05189630e-03 - sys_corr_127: 1.25150481e-01 - sys_corr_128: -6.99578359e-02 - sys_corr_129: -3.31354170e-02 - sys_corr_130: 1.53645870e-02 - sys_corr_131: 7.19739455e-03 + sys_corr_127: -1.25150481e-01 + sys_corr_128: 6.99578359e-02 + sys_corr_129: 3.31354170e-02 + sys_corr_130: -1.53645870e-02 + sys_corr_131: -7.19739455e-03 sys_corr_132: -5.81427483e-03 stat: 0.0 luminosity: 5.75719672e+02 @@ -4698,17 +4698,17 @@ bins: sys_corr_6: -5.99892832e+02 sys_corr_7: 6.89300789e+01 sys_corr_8: 6.19485337e+00 - sys_corr_9: -9.35967188e+00 - sys_corr_10: -2.16414659e+01 + sys_corr_9: 9.35967188e+00 + sys_corr_10: 2.16414659e+01 sys_corr_11: -1.35148820e+00 - sys_corr_12: 2.45040438e+01 - sys_corr_13: -5.57814475e+00 + sys_corr_12: -2.45040438e+01 + sys_corr_13: 5.57814475e+00 sys_corr_14: 7.57351851e+00 sys_corr_15: -1.92984647e+00 sys_corr_16: 2.67277034e-01 - sys_corr_17: 3.86077078e+00 + sys_corr_17: -3.86077078e+00 sys_corr_18: 1.14351871e+01 - sys_corr_19: -1.03492128e+01 + sys_corr_19: 1.03492128e+01 sys_corr_20: 7.36577302e+00 sys_corr_21: 4.93127090e+00 sys_corr_22: -5.04637350e+01 @@ -4724,103 +4724,103 @@ bins: sys_corr_32: 4.21554787e+01 sys_corr_33: -4.41215274e+01 sys_corr_34: -1.18548938e+01 - sys_corr_35: -7.14934163e+00 - sys_corr_36: -5.88668309e+01 + sys_corr_35: 7.14934163e+00 + sys_corr_36: 5.88668309e+01 sys_corr_37: -6.88382297e+01 sys_corr_38: 2.65809293e+02 - sys_corr_39: -5.71632689e+01 - sys_corr_40: 6.12871644e+00 - sys_corr_41: 1.28005872e+02 + sys_corr_39: 5.71632689e+01 + sys_corr_40: -6.12871644e+00 + sys_corr_41: -1.28005872e+02 sys_corr_42: -6.13126780e+01 sys_corr_43: -9.18155559e+01 sys_corr_44: -5.19967759e+01 sys_corr_45: -2.64535623e+01 - sys_corr_46: -4.29429065e+01 - sys_corr_47: -5.21120618e+01 + sys_corr_46: 4.29429065e+01 + sys_corr_47: 5.21120618e+01 sys_corr_48: -2.52902865e+01 sys_corr_49: 1.14840431e+01 sys_corr_50: -2.72915235e+01 - sys_corr_51: -1.09773331e+00 - sys_corr_52: -1.82565483e+01 - sys_corr_53: 6.27894411e+00 + sys_corr_51: 1.09773331e+00 + sys_corr_52: 1.82565483e+01 + sys_corr_53: -6.27894411e+00 sys_corr_54: -3.93508133e+00 sys_corr_55: 7.71678227e+00 - sys_corr_56: -1.06964425e+01 + sys_corr_56: 1.06964425e+01 sys_corr_57: -4.09836666e-01 - sys_corr_58: -1.49957009e+00 + sys_corr_58: 1.49957009e+00 sys_corr_59: 4.58412253e+00 sys_corr_60: -7.73732814e+00 - sys_corr_61: -9.43427574e+00 - sys_corr_62: -8.14263882e+00 + sys_corr_61: 9.43427574e+00 + sys_corr_62: 8.14263882e+00 sys_corr_63: -2.06206613e+00 sys_corr_64: 2.28220225e-01 - sys_corr_65: 1.85334139e+00 - sys_corr_66: -8.84664698e+00 - sys_corr_67: -6.96300100e+00 + sys_corr_65: -1.85334139e+00 + sys_corr_66: 8.84664698e+00 + sys_corr_67: 6.96300100e+00 sys_corr_68: -1.56751230e+01 sys_corr_69: 9.97946388e+00 sys_corr_70: 1.89275661e+00 - sys_corr_71: -1.41765743e+01 - sys_corr_72: -1.55477277e+00 + sys_corr_71: 1.41765743e+01 + sys_corr_72: 1.55477277e+00 sys_corr_73: -1.37493760e+00 sys_corr_74: -1.66662430e+00 - sys_corr_75: -9.02337911e+00 - sys_corr_76: -2.16075707e+00 + sys_corr_75: 9.02337911e+00 + sys_corr_76: 2.16075707e+00 sys_corr_77: 4.66775672e+00 sys_corr_78: -1.52715685e+00 sys_corr_79: -3.63997623e+00 - sys_corr_80: -2.36402303e+00 + sys_corr_80: 2.36402303e+00 sys_corr_81: 1.93465064e+00 - sys_corr_82: -8.75349071e-01 + sys_corr_82: 8.75349071e-01 sys_corr_83: 2.59825054e+00 sys_corr_84: 2.98882917e+00 sys_corr_85: 2.07504530e+00 - sys_corr_86: 2.72676363e-01 - sys_corr_87: 8.69806727e-01 + sys_corr_86: -2.72676363e-01 + sys_corr_87: -8.69806727e-01 sys_corr_88: 1.08975337e+00 sys_corr_89: -2.59026169e-01 - sys_corr_90: 1.32248187e-01 - sys_corr_91: -1.93174918e-01 - sys_corr_92: 6.15957786e-01 + sys_corr_90: 1.93174918e-01 + sys_corr_91: -1.32248187e-01 + sys_corr_92: -6.15957786e-01 sys_corr_93: 2.02663695e-01 sys_corr_94: 9.19411753e-01 - sys_corr_95: -8.13965618e-01 + sys_corr_95: 8.13965618e-01 sys_corr_96: 3.28689106e-02 - sys_corr_97: 9.42919417e-02 - sys_corr_98: 2.16064879e-01 + sys_corr_97: -9.42919417e-02 + sys_corr_98: -2.16064879e-01 sys_corr_99: 1.37092282e-02 - sys_corr_100: -2.82417651e-01 - sys_corr_101: -8.34090085e-01 - sys_corr_102: -2.23256774e+00 - sys_corr_103: 2.29306653e-01 - sys_corr_104: 5.82308656e-01 - sys_corr_105: -5.16928391e-01 + sys_corr_100: 5.16928391e-01 + sys_corr_101: 2.82417651e-01 + sys_corr_102: 8.34090085e-01 + sys_corr_103: -2.23256774e+00 + sys_corr_104: -2.29306653e-01 + sys_corr_105: -5.82308656e-01 sys_corr_106: -4.17519425e-01 sys_corr_107: -4.77000824e-01 - sys_corr_108: 2.31071491e-01 - sys_corr_109: 1.86287305e-01 - sys_corr_110: -2.55378459e-01 - sys_corr_111: 2.26730564e-01 - sys_corr_112: 9.35721570e-02 - sys_corr_113: 2.04298196e-01 - sys_corr_114: 9.53790552e-04 - sys_corr_115: 7.00922355e-02 + sys_corr_108: 1.86287305e-01 + sys_corr_109: -2.31071491e-01 + sys_corr_110: -2.26730564e-01 + sys_corr_111: 2.55378459e-01 + sys_corr_112: -9.35721570e-02 + sys_corr_113: -2.04298196e-01 + sys_corr_114: -9.53790552e-04 + sys_corr_115: -7.00922355e-02 sys_corr_116: -2.95366753e-02 - sys_corr_117: -1.09301071e-02 + sys_corr_117: 1.09301071e-02 sys_corr_118: 5.62183611e-02 sys_corr_119: -2.81472783e-05 sys_corr_120: 6.18049530e-03 sys_corr_121: -5.96641305e-03 - sys_corr_122: -1.06999882e-02 - sys_corr_123: -9.83505854e-03 - sys_corr_124: -3.69218066e-02 + sys_corr_122: -9.83505854e-03 + sys_corr_123: 1.06999882e-02 + sys_corr_124: 3.69218066e-02 sys_corr_125: 4.57380486e-03 sys_corr_126: -5.75460367e-03 - sys_corr_127: 1.57549807e-02 - sys_corr_128: -9.73982331e-03 - sys_corr_129: 2.90824469e-02 - sys_corr_130: 5.40071170e-03 - sys_corr_131: 3.11664646e-03 + sys_corr_127: -1.57549807e-02 + sys_corr_128: 9.73982331e-03 + sys_corr_129: -2.90824469e-02 + sys_corr_130: -5.40071170e-03 + sys_corr_131: -3.11664646e-03 sys_corr_132: -7.22152823e-02 stat: 0.0 luminosity: 5.64255494e+02 @@ -4832,17 +4832,17 @@ bins: sys_corr_6: -6.04078038e+02 sys_corr_7: 8.52929051e+01 sys_corr_8: 1.39869642e+01 - sys_corr_9: -3.92210955e+00 - sys_corr_10: -2.57806171e+01 + sys_corr_9: 3.92210955e+00 + sys_corr_10: 2.57806171e+01 sys_corr_11: 9.84611069e+00 - sys_corr_12: 4.89708450e+01 - sys_corr_13: -1.68886369e+01 + sys_corr_12: -4.89708450e+01 + sys_corr_13: 1.68886369e+01 sys_corr_14: 1.25443254e+01 sys_corr_15: 3.27696840e+00 sys_corr_16: -3.34613710e+00 - sys_corr_17: 9.89747115e+00 + sys_corr_17: -9.89747115e+00 sys_corr_18: 9.79170325e+00 - sys_corr_19: -1.48065180e+01 + sys_corr_19: 1.48065180e+01 sys_corr_20: 4.04270719e+00 sys_corr_21: 6.91038661e+00 sys_corr_22: -7.47240364e+01 @@ -4858,103 +4858,103 @@ bins: sys_corr_32: 2.61699706e+01 sys_corr_33: 1.27947677e+01 sys_corr_34: -2.52156101e+01 - sys_corr_35: 8.59680823e+01 - sys_corr_36: -2.20787609e+01 + sys_corr_35: -8.59680823e+01 + sys_corr_36: 2.20787609e+01 sys_corr_37: -4.42486765e+01 sys_corr_38: -3.21618868e+01 - sys_corr_39: 3.74512346e+01 - sys_corr_40: -2.04713713e+01 - sys_corr_41: 4.38149070e+00 + sys_corr_39: -3.74512346e+01 + sys_corr_40: 2.04713713e+01 + sys_corr_41: -4.38149070e+00 sys_corr_42: 8.50687940e+01 sys_corr_43: 3.55236781e+01 sys_corr_44: -1.98004362e+01 sys_corr_45: -2.04164496e+02 - sys_corr_46: 6.03001438e+01 - sys_corr_47: 1.14004338e+02 + sys_corr_46: -6.03001438e+01 + sys_corr_47: -1.14004338e+02 sys_corr_48: 1.08059976e+02 sys_corr_49: -2.73464348e+01 sys_corr_50: 4.55479977e+01 - sys_corr_51: 4.64156997e+01 - sys_corr_52: 3.17299166e+01 - sys_corr_53: -4.00944212e+00 + sys_corr_51: -4.64156997e+01 + sys_corr_52: -3.17299166e+01 + sys_corr_53: 4.00944212e+00 sys_corr_54: 4.08387043e+00 sys_corr_55: 1.75684716e+01 - sys_corr_56: -7.33917638e+00 + sys_corr_56: 7.33917638e+00 sys_corr_57: -3.87464061e+01 - sys_corr_58: -3.95567627e+00 + sys_corr_58: 3.95567627e+00 sys_corr_59: -3.50217348e+01 sys_corr_60: -1.62422492e+01 - sys_corr_61: -2.40173323e+01 - sys_corr_62: 3.46800360e+01 + sys_corr_61: 2.40173323e+01 + sys_corr_62: -3.46800360e+01 sys_corr_63: 2.31734468e+01 sys_corr_64: -3.06202159e+00 - sys_corr_65: 5.92407505e+00 - sys_corr_66: -9.80681619e-01 - sys_corr_67: 5.00264370e+00 + sys_corr_65: -5.92407505e+00 + sys_corr_66: 9.80681619e-01 + sys_corr_67: -5.00264370e+00 sys_corr_68: -5.33193111e+00 sys_corr_69: 3.17564996e+00 sys_corr_70: -1.17016843e+01 - sys_corr_71: -4.07884290e+00 - sys_corr_72: 3.77417196e+00 + sys_corr_71: 4.07884290e+00 + sys_corr_72: -3.77417196e+00 sys_corr_73: 6.08328355e+00 sys_corr_74: -5.39469248e+00 - sys_corr_75: -4.81088428e+00 - sys_corr_76: -2.76773206e-01 + sys_corr_75: 4.81088428e+00 + sys_corr_76: 2.76773206e-01 sys_corr_77: 1.03720622e+01 sys_corr_78: 3.52295143e+00 sys_corr_79: -1.24129476e+01 - sys_corr_80: -3.82217838e-01 + sys_corr_80: 3.82217838e-01 sys_corr_81: -1.21935482e+01 - sys_corr_82: 9.39430826e+00 + sys_corr_82: -9.39430826e+00 sys_corr_83: -1.04627649e+01 sys_corr_84: -2.50721413e+00 sys_corr_85: -3.09212994e+00 - sys_corr_86: 2.21145318e+00 - sys_corr_87: 1.47585524e+01 + sys_corr_86: -2.21145318e+00 + sys_corr_87: -1.47585524e+01 sys_corr_88: 4.29275472e+00 sys_corr_89: 7.99245078e-01 - sys_corr_90: 2.58267544e-01 - sys_corr_91: 5.18088203e-01 - sys_corr_92: -2.71727636e+00 + sys_corr_90: -5.18088203e-01 + sys_corr_91: -2.58267544e-01 + sys_corr_92: 2.71727636e+00 sys_corr_93: 8.87837209e-02 sys_corr_94: 2.97933737e-01 - sys_corr_95: -4.91346063e-01 + sys_corr_95: 4.91346063e-01 sys_corr_96: -1.72184908e-02 - sys_corr_97: 1.27565296e+00 - sys_corr_98: 6.65233485e-01 + sys_corr_97: -1.27565296e+00 + sys_corr_98: -6.65233485e-01 sys_corr_99: 6.54260887e-01 - sys_corr_100: 2.40416217e-01 - sys_corr_101: 6.84784979e-01 - sys_corr_102: 3.93640075e+00 - sys_corr_103: -9.96206126e-01 - sys_corr_104: -2.06732204e+00 - sys_corr_105: 9.83940162e-03 + sys_corr_100: -9.83940162e-03 + sys_corr_101: -2.40416217e-01 + sys_corr_102: -6.84784979e-01 + sys_corr_103: 3.93640075e+00 + sys_corr_104: 9.96206126e-01 + sys_corr_105: 2.06732204e+00 sys_corr_106: 5.82124793e-02 sys_corr_107: -2.34866336e-01 - sys_corr_108: 2.74548280e-01 - sys_corr_109: 5.58019478e-02 - sys_corr_110: 1.12971669e-01 - sys_corr_111: 3.64094937e-02 - sys_corr_112: 1.47473623e-01 - sys_corr_113: 1.30875558e-01 - sys_corr_114: -9.04015962e-04 - sys_corr_115: 5.52122655e-02 + sys_corr_108: 5.58019478e-02 + sys_corr_109: -2.74548280e-01 + sys_corr_110: -3.64094937e-02 + sys_corr_111: -1.12971669e-01 + sys_corr_112: -1.47473623e-01 + sys_corr_113: -1.30875558e-01 + sys_corr_114: 9.04015962e-04 + sys_corr_115: -5.52122655e-02 sys_corr_116: -3.40493371e-02 - sys_corr_117: -3.25168425e-02 + sys_corr_117: 3.25168425e-02 sys_corr_118: 5.27161945e-02 sys_corr_119: 4.45128253e-03 sys_corr_120: 1.61774230e-02 sys_corr_121: -8.84217399e-03 - sys_corr_122: -6.96906469e-03 - sys_corr_123: -6.13066976e-03 - sys_corr_124: -3.45044716e-02 + sys_corr_122: -6.13066976e-03 + sys_corr_123: 6.96906469e-03 + sys_corr_124: 3.45044716e-02 sys_corr_125: 2.13566625e-03 sys_corr_126: -1.92080971e-03 - sys_corr_127: 1.11660338e-01 - sys_corr_128: -7.20181600e-02 - sys_corr_129: 1.72041854e-02 - sys_corr_130: 7.74296943e-03 - sys_corr_131: 2.57784142e-03 + sys_corr_127: -1.11660338e-01 + sys_corr_128: 7.20181600e-02 + sys_corr_129: -1.72041854e-02 + sys_corr_130: -7.74296943e-03 + sys_corr_131: -2.57784142e-03 sys_corr_132: -9.25710781e-02 stat: 0.0 luminosity: 5.78458298e+02 @@ -4966,17 +4966,17 @@ bins: sys_corr_6: -5.55727510e+02 sys_corr_7: 1.01384684e+02 sys_corr_8: 2.46872539e+01 - sys_corr_9: 1.87004614e+01 - sys_corr_10: -2.06363544e+01 + sys_corr_9: -1.87004614e+01 + sys_corr_10: 2.06363544e+01 sys_corr_11: 3.16320481e+01 - sys_corr_12: 8.30877763e+01 - sys_corr_13: -4.18665562e+01 + sys_corr_12: -8.30877763e+01 + sys_corr_13: 4.18665562e+01 sys_corr_14: 1.85725280e+01 sys_corr_15: 6.39113695e+00 sys_corr_16: -5.41628784e+00 - sys_corr_17: 1.38697672e+01 + sys_corr_17: -1.38697672e+01 sys_corr_18: 3.52838669e+00 - sys_corr_19: -1.31885955e+01 + sys_corr_19: 1.31885955e+01 sys_corr_20: 7.90827321e+00 sys_corr_21: 7.66051205e+00 sys_corr_22: -5.98836293e+01 @@ -4992,103 +4992,103 @@ bins: sys_corr_32: 2.61217067e+01 sys_corr_33: 3.97937662e+01 sys_corr_34: 2.76548899e+00 - sys_corr_35: -1.30843715e+01 - sys_corr_36: -3.54477494e+01 + sys_corr_35: 1.30843715e+01 + sys_corr_36: 3.54477494e+01 sys_corr_37: -2.37424071e+01 sys_corr_38: 1.26558453e+00 - sys_corr_39: 4.23382651e+01 - sys_corr_40: -2.28228633e+02 - sys_corr_41: -1.18527038e+02 + sys_corr_39: -4.23382651e+01 + sys_corr_40: 2.28228633e+02 + sys_corr_41: 1.18527038e+02 sys_corr_42: 8.61389781e+01 sys_corr_43: 5.41654509e+01 sys_corr_44: 3.54904940e+00 sys_corr_45: 9.35507198e+01 - sys_corr_46: -1.27625161e+02 - sys_corr_47: -5.13281269e+01 + sys_corr_46: 1.27625161e+02 + sys_corr_47: 5.13281269e+01 sys_corr_48: -9.17814628e+00 sys_corr_49: 4.12031340e+01 sys_corr_50: -2.30565961e+01 - sys_corr_51: 2.08560758e+01 - sys_corr_52: 1.04531012e+01 - sys_corr_53: -7.49610865e+00 + sys_corr_51: -2.08560758e+01 + sys_corr_52: -1.04531012e+01 + sys_corr_53: 7.49610865e+00 sys_corr_54: -3.28936255e+01 sys_corr_55: 1.09548631e+01 - sys_corr_56: 3.13571350e+01 + sys_corr_56: -3.13571350e+01 sys_corr_57: -1.88318010e+01 - sys_corr_58: -3.33815280e+00 + sys_corr_58: 3.33815280e+00 sys_corr_59: -4.77658915e+00 sys_corr_60: -6.52258243e+00 - sys_corr_61: -4.42201621e+00 - sys_corr_62: -1.20641888e+01 + sys_corr_61: 4.42201621e+00 + sys_corr_62: 1.20641888e+01 sys_corr_63: 2.35289633e+01 sys_corr_64: -4.88245381e+00 - sys_corr_65: -1.45756838e+01 - sys_corr_66: -9.57502537e-01 - sys_corr_67: -1.03870689e+01 + sys_corr_65: 1.45756838e+01 + sys_corr_66: 9.57502537e-01 + sys_corr_67: 1.03870689e+01 sys_corr_68: -3.07156031e+01 sys_corr_69: 2.70129509e+00 sys_corr_70: -4.75733914e+00 - sys_corr_71: 1.13839181e+01 - sys_corr_72: -8.49777754e+00 + sys_corr_71: -1.13839181e+01 + sys_corr_72: 8.49777754e+00 sys_corr_73: 6.11296504e+00 sys_corr_74: 4.61128648e+00 - sys_corr_75: -1.73414169e+01 - sys_corr_76: 3.44433318e+00 + sys_corr_75: 1.73414169e+01 + sys_corr_76: -3.44433318e+00 sys_corr_77: 1.31845379e+01 sys_corr_78: -5.26505992e+00 sys_corr_79: 6.11780398e-01 - sys_corr_80: -4.35813152e+00 + sys_corr_80: 4.35813152e+00 sys_corr_81: -1.25598496e+00 - sys_corr_82: -6.45412386e-02 + sys_corr_82: 6.45412386e-02 sys_corr_83: -8.42961677e-01 sys_corr_84: 2.54242336e+00 sys_corr_85: 1.50582871e+00 - sys_corr_86: 7.13668768e+00 - sys_corr_87: -2.03297961e+00 + sys_corr_86: -7.13668768e+00 + sys_corr_87: 2.03297961e+00 sys_corr_88: 7.14430794e+00 sys_corr_89: -4.67178053e-01 - sys_corr_90: 3.40407618e-01 - sys_corr_91: 5.53128787e-01 - sys_corr_92: -2.93477345e+00 + sys_corr_90: -5.53128787e-01 + sys_corr_91: -3.40407618e-01 + sys_corr_92: 2.93477345e+00 sys_corr_93: -4.33654909e-02 sys_corr_94: 3.51390416e-01 - sys_corr_95: 1.32617690e-01 + sys_corr_95: -1.32617690e-01 sys_corr_96: -3.44769744e-03 - sys_corr_97: 9.28080959e-01 - sys_corr_98: 2.88057426e-01 + sys_corr_97: -9.28080959e-01 + sys_corr_98: -2.88057426e-01 sys_corr_99: 4.80513810e-01 - sys_corr_100: -2.19168794e-01 - sys_corr_101: -3.41888685e-01 - sys_corr_102: -4.01646806e-01 - sys_corr_103: 6.66321402e-01 - sys_corr_104: -4.77216534e-01 - sys_corr_105: -3.92243023e-01 + sys_corr_100: 3.92243023e-01 + sys_corr_101: 2.19168794e-01 + sys_corr_102: 3.41888685e-01 + sys_corr_103: -4.01646806e-01 + sys_corr_104: -6.66321402e-01 + sys_corr_105: 4.77216534e-01 sys_corr_106: -1.03814646e-01 sys_corr_107: -1.30162433e-01 - sys_corr_108: 2.27997009e-01 - sys_corr_109: 1.70075212e-01 - sys_corr_110: -1.33057844e-01 - sys_corr_111: 9.47488334e-02 - sys_corr_112: 1.38002664e-01 - sys_corr_113: 1.63479855e-01 - sys_corr_114: 5.88746251e-04 - sys_corr_115: 1.31276460e-01 + sys_corr_108: 1.70075212e-01 + sys_corr_109: -2.27997009e-01 + sys_corr_110: -9.47488334e-02 + sys_corr_111: 1.33057844e-01 + sys_corr_112: -1.38002664e-01 + sys_corr_113: -1.63479855e-01 + sys_corr_114: -5.88746251e-04 + sys_corr_115: -1.31276460e-01 sys_corr_116: -4.39018440e-02 - sys_corr_117: -2.28592097e-02 + sys_corr_117: 2.28592097e-02 sys_corr_118: 5.30167690e-02 sys_corr_119: -3.83603951e-03 sys_corr_120: 8.87328201e-03 sys_corr_121: -5.97734791e-03 - sys_corr_122: 1.50298650e-03 - sys_corr_123: -6.23081757e-03 - sys_corr_124: -3.52361439e-02 + sys_corr_122: -6.23081757e-03 + sys_corr_123: -1.50298650e-03 + sys_corr_124: 3.52361439e-02 sys_corr_125: -7.29681071e-03 sys_corr_126: 3.76587162e-04 - sys_corr_127: -4.78063797e-02 - sys_corr_128: 1.30018053e-01 - sys_corr_129: 5.42429304e-02 - sys_corr_130: 1.96796793e-03 - sys_corr_131: -1.42621995e-02 + sys_corr_127: 4.78063797e-02 + sys_corr_128: -1.30018053e-01 + sys_corr_129: -5.42429304e-02 + sys_corr_130: -1.96796793e-03 + sys_corr_131: 1.42621995e-02 sys_corr_132: -5.85496004e-02 stat: 0.0 luminosity: 5.62970760e+02 @@ -5100,17 +5100,17 @@ bins: sys_corr_6: -5.11061298e+02 sys_corr_7: 1.49500578e+02 sys_corr_8: 5.66926643e+01 - sys_corr_9: 5.12071694e+01 - sys_corr_10: -2.04738929e+01 + sys_corr_9: -5.12071694e+01 + sys_corr_10: 2.04738929e+01 sys_corr_11: 7.40878409e+01 - sys_corr_12: 1.29919728e+02 - sys_corr_13: -7.64005104e+01 + sys_corr_12: -1.29919728e+02 + sys_corr_13: 7.64005104e+01 sys_corr_14: 3.10966700e+01 sys_corr_15: 1.10530351e+01 sys_corr_16: -7.70330106e+00 - sys_corr_17: 8.91083846e+00 + sys_corr_17: -8.91083846e+00 sys_corr_18: -7.29813362e+00 - sys_corr_19: -3.63397238e+00 + sys_corr_19: 3.63397238e+00 sys_corr_20: 1.14281973e+01 sys_corr_21: 6.79297524e+00 sys_corr_22: -3.74856932e+01 @@ -5126,103 +5126,103 @@ bins: sys_corr_32: 4.22281167e+01 sys_corr_33: -1.57002478e+01 sys_corr_34: -4.02165732e+00 - sys_corr_35: 3.55228998e+01 - sys_corr_36: 7.65699930e+01 + sys_corr_35: -3.55228998e+01 + sys_corr_36: -7.65699930e+01 sys_corr_37: -1.58217600e+02 sys_corr_38: -2.08635032e+02 - sys_corr_39: -8.50339340e+01 - sys_corr_40: 1.01916756e+02 - sys_corr_41: 5.29793554e+01 + sys_corr_39: 8.50339340e+01 + sys_corr_40: -1.01916756e+02 + sys_corr_41: -5.29793554e+01 sys_corr_42: -3.83358216e+01 sys_corr_43: -7.43138657e+01 sys_corr_44: -1.48602412e+01 sys_corr_45: 1.79606363e+01 - sys_corr_46: -1.10672836e+02 - sys_corr_47: -5.11399182e+01 + sys_corr_46: 1.10672836e+02 + sys_corr_47: 5.11399182e+01 sys_corr_48: -2.33957757e+01 sys_corr_49: -3.21819701e+00 sys_corr_50: 5.07300971e+00 - sys_corr_51: 3.32179510e+01 - sys_corr_52: 2.93214900e+01 - sys_corr_53: -1.12791617e+00 + sys_corr_51: -3.32179510e+01 + sys_corr_52: -2.93214900e+01 + sys_corr_53: 1.12791617e+00 sys_corr_54: 1.24666176e+01 sys_corr_55: 3.91765765e+00 - sys_corr_56: -8.61669600e+00 + sys_corr_56: 8.61669600e+00 sys_corr_57: 1.32809292e+01 - sys_corr_58: -1.08390561e+01 + sys_corr_58: 1.08390561e+01 sys_corr_59: 2.66524389e+01 sys_corr_60: 4.24933241e+00 - sys_corr_61: -3.62977243e+00 - sys_corr_62: -1.52903210e+01 + sys_corr_61: 3.62977243e+00 + sys_corr_62: 1.52903210e+01 sys_corr_63: -6.34551107e+00 sys_corr_64: 6.39439698e+00 - sys_corr_65: -7.98622648e+00 - sys_corr_66: -1.52917748e+01 - sys_corr_67: 6.91444833e+00 + sys_corr_65: 7.98622648e+00 + sys_corr_66: 1.52917748e+01 + sys_corr_67: -6.91444833e+00 sys_corr_68: -5.04812969e-01 sys_corr_69: 8.16561477e-01 sys_corr_70: 6.18591104e+00 - sys_corr_71: -1.03156986e+01 - sys_corr_72: -1.00906756e+01 + sys_corr_71: 1.03156986e+01 + sys_corr_72: 1.00906756e+01 sys_corr_73: 5.75631008e+00 sys_corr_74: 2.11936889e+00 - sys_corr_75: -3.93693697e+00 - sys_corr_76: -7.15496209e-02 + sys_corr_75: 3.93693697e+00 + sys_corr_76: 7.15496209e-02 sys_corr_77: 3.12337388e+00 sys_corr_78: -4.59363122e+00 sys_corr_79: 2.95338590e+00 - sys_corr_80: 6.73591242e-01 + sys_corr_80: -6.73591242e-01 sys_corr_81: -1.11172322e+01 - sys_corr_82: 4.28352187e+00 + sys_corr_82: -4.28352187e+00 sys_corr_83: -7.85618619e+00 sys_corr_84: 2.84966890e-01 sys_corr_85: 7.67024289e-01 - sys_corr_86: 3.03181688e+00 - sys_corr_87: 4.71945730e+00 + sys_corr_86: -3.03181688e+00 + sys_corr_87: -4.71945730e+00 sys_corr_88: 4.92582871e+00 sys_corr_89: -3.84690942e-01 - sys_corr_90: -1.20142678e+00 - sys_corr_91: -5.65799014e-01 - sys_corr_92: 1.96290154e+00 + sys_corr_90: 5.65799014e-01 + sys_corr_91: 1.20142678e+00 + sys_corr_92: -1.96290154e+00 sys_corr_93: -2.67473717e-01 sys_corr_94: -1.05179656e+00 - sys_corr_95: 1.11525305e+00 + sys_corr_95: -1.11525305e+00 sys_corr_96: -1.59463158e-01 - sys_corr_97: 1.70634813e+00 - sys_corr_98: 7.67676645e-01 + sys_corr_97: -1.70634813e+00 + sys_corr_98: -7.67676645e-01 sys_corr_99: 8.78401683e-01 - sys_corr_100: 2.34441401e-01 - sys_corr_101: 4.49410009e-01 - sys_corr_102: 2.66738715e+00 - sys_corr_103: 1.91446754e-03 - sys_corr_104: -1.97762024e+00 - sys_corr_105: 7.39925983e-02 + sys_corr_100: -7.39925983e-02 + sys_corr_101: -2.34441401e-01 + sys_corr_102: -4.49410009e-01 + sys_corr_103: 2.66738715e+00 + sys_corr_104: -1.91446754e-03 + sys_corr_105: 1.97762024e+00 sys_corr_106: 2.52649355e-01 sys_corr_107: 5.48717551e-02 - sys_corr_108: 2.44679029e-01 - sys_corr_109: 7.70559222e-02 - sys_corr_110: 2.70375625e-01 - sys_corr_111: 1.36021568e-01 - sys_corr_112: 1.83368291e-02 - sys_corr_113: 1.61072580e-01 - sys_corr_114: -2.88051753e-04 - sys_corr_115: 2.11514862e-02 + sys_corr_108: 7.70559222e-02 + sys_corr_109: -2.44679029e-01 + sys_corr_110: -1.36021568e-01 + sys_corr_111: -2.70375625e-01 + sys_corr_112: -1.83368291e-02 + sys_corr_113: -1.61072580e-01 + sys_corr_114: 2.88051753e-04 + sys_corr_115: -2.11514862e-02 sys_corr_116: -5.95551542e-02 - sys_corr_117: -4.20094267e-02 + sys_corr_117: 4.20094267e-02 sys_corr_118: 3.04554630e-02 sys_corr_119: -4.70436474e-03 sys_corr_120: 2.21680129e-02 sys_corr_121: -7.99837628e-03 - sys_corr_122: 1.15265532e-02 - sys_corr_123: -6.50318234e-03 - sys_corr_124: -6.51967030e-02 + sys_corr_122: -6.50318234e-03 + sys_corr_123: -1.15265532e-02 + sys_corr_124: 6.51967030e-02 sys_corr_125: -9.77777876e-03 sys_corr_126: -7.45974897e-03 - sys_corr_127: -9.95486454e-02 - sys_corr_128: -3.47957568e-03 - sys_corr_129: 3.32900135e-03 - sys_corr_130: 1.74326230e-03 - sys_corr_131: -1.01886964e-02 + sys_corr_127: 9.95486454e-02 + sys_corr_128: 3.47957568e-03 + sys_corr_129: -3.32900135e-03 + sys_corr_130: -1.74326230e-03 + sys_corr_131: 1.01886964e-02 sys_corr_132: -2.20636725e-02 stat: 0.0 luminosity: 5.65947492e+02 @@ -5234,17 +5234,17 @@ bins: sys_corr_6: -4.56887973e+02 sys_corr_7: 1.35373765e+02 sys_corr_8: 5.20482070e+01 - sys_corr_9: 6.76571054e+01 - sys_corr_10: -1.45726147e+01 + sys_corr_9: -6.76571054e+01 + sys_corr_10: 1.45726147e+01 sys_corr_11: 1.15052301e+02 - sys_corr_12: 1.60910759e+02 - sys_corr_13: -7.82790655e+01 + sys_corr_12: -1.60910759e+02 + sys_corr_13: 7.82790655e+01 sys_corr_14: 1.75417825e+01 sys_corr_15: 2.00944684e+01 sys_corr_16: -4.06972122e+00 - sys_corr_17: 1.07948582e+00 + sys_corr_17: -1.07948582e+00 sys_corr_18: -2.82861127e+00 - sys_corr_19: -2.31902965e+01 + sys_corr_19: 2.31902965e+01 sys_corr_20: 9.12239079e+00 sys_corr_21: 4.78101301e+00 sys_corr_22: -5.77235514e+01 @@ -5260,103 +5260,103 @@ bins: sys_corr_32: -4.16758196e+00 sys_corr_33: 3.28311946e+01 sys_corr_34: -1.95326259e+01 - sys_corr_35: 6.71758261e+00 - sys_corr_36: 2.28428950e+01 + sys_corr_35: -6.71758261e+00 + sys_corr_36: -2.28428950e+01 sys_corr_37: 5.12733650e+00 sys_corr_38: 3.46137142e+01 - sys_corr_39: 6.01939870e+01 - sys_corr_40: -9.33092788e+01 - sys_corr_41: -3.04418838e+01 + sys_corr_39: -6.01939870e+01 + sys_corr_40: 9.33092788e+01 + sys_corr_41: 3.04418838e+01 sys_corr_42: -6.65490460e+01 sys_corr_43: -1.35513620e+02 sys_corr_44: 5.18122795e+01 sys_corr_45: 3.97035837e+01 - sys_corr_46: 6.65809144e+01 - sys_corr_47: 7.01054688e+01 + sys_corr_46: -6.65809144e+01 + sys_corr_47: -7.01054688e+01 sys_corr_48: -6.65193483e+01 sys_corr_49: -1.80220435e+02 sys_corr_50: 6.72630105e+01 - sys_corr_51: 7.42514460e-01 - sys_corr_52: -2.79285814e+01 - sys_corr_53: 4.68232001e+00 + sys_corr_51: -7.42514460e-01 + sys_corr_52: 2.79285814e+01 + sys_corr_53: -4.68232001e+00 sys_corr_54: 8.74764073e+00 sys_corr_55: -5.76940709e+01 - sys_corr_56: -2.29339867e+01 + sys_corr_56: 2.29339867e+01 sys_corr_57: 2.61910718e+01 - sys_corr_58: -2.18183146e+01 + sys_corr_58: 2.18183146e+01 sys_corr_59: -6.11668134e+00 sys_corr_60: 1.71047636e+01 - sys_corr_61: 1.44472739e+01 - sys_corr_62: 1.35953971e+01 + sys_corr_61: -1.44472739e+01 + sys_corr_62: -1.35953971e+01 sys_corr_63: -1.40443897e+01 sys_corr_64: -3.71568854e-01 - sys_corr_65: 2.02411580e+01 - sys_corr_66: 8.69887332e+00 - sys_corr_67: 5.37854316e+00 + sys_corr_65: -2.02411580e+01 + sys_corr_66: -8.69887332e+00 + sys_corr_67: -5.37854316e+00 sys_corr_68: 2.14737665e+01 sys_corr_69: -1.93400769e+01 sys_corr_70: -1.30423334e+01 - sys_corr_71: 1.90279893e+01 - sys_corr_72: -1.10604576e+00 + sys_corr_71: -1.90279893e+01 + sys_corr_72: 1.10604576e+00 sys_corr_73: 6.50034160e+00 sys_corr_74: -8.64672896e+00 - sys_corr_75: 1.15505891e+01 - sys_corr_76: 7.28278979e+00 + sys_corr_75: -1.15505891e+01 + sys_corr_76: -7.28278979e+00 sys_corr_77: 9.75757241e+00 sys_corr_78: -5.67806572e+00 sys_corr_79: 3.96779316e+00 - sys_corr_80: -2.45998613e+00 + sys_corr_80: 2.45998613e+00 sys_corr_81: 6.84865237e+00 - sys_corr_82: -5.18652137e+00 + sys_corr_82: 5.18652137e+00 sys_corr_83: 7.01963428e-01 sys_corr_84: 2.90624838e+00 sys_corr_85: 3.21168916e+00 - sys_corr_86: 8.09239338e+00 - sys_corr_87: -1.38462818e+00 + sys_corr_86: -8.09239338e+00 + sys_corr_87: 1.38462818e+00 sys_corr_88: 1.92182334e+00 sys_corr_89: -1.00595954e+00 - sys_corr_90: -6.14124210e-01 - sys_corr_91: -7.56538713e-01 - sys_corr_92: -6.40605521e-01 + sys_corr_90: 7.56538713e-01 + sys_corr_91: 6.14124210e-01 + sys_corr_92: 6.40605521e-01 sys_corr_93: -3.21882953e-01 sys_corr_94: -1.76368882e+00 - sys_corr_95: 2.06828710e+00 + sys_corr_95: -2.06828710e+00 sys_corr_96: -8.28051081e-02 - sys_corr_97: 2.04449608e+00 - sys_corr_98: 9.47232761e-01 + sys_corr_97: -2.04449608e+00 + sys_corr_98: -9.47232761e-01 sys_corr_99: 1.78539110e-02 - sys_corr_100: 1.15099079e-01 - sys_corr_101: 3.85829266e-02 - sys_corr_102: 2.73459878e+00 - sys_corr_103: 3.85056772e-01 - sys_corr_104: -1.95513802e+00 - sys_corr_105: 4.42460436e-01 + sys_corr_100: -4.42460436e-01 + sys_corr_101: -1.15099079e-01 + sys_corr_102: -3.85829266e-02 + sys_corr_103: 2.73459878e+00 + sys_corr_104: -3.85056772e-01 + sys_corr_105: 1.95513802e+00 sys_corr_106: 4.40811697e-01 sys_corr_107: 1.87096485e-01 - sys_corr_108: 3.85997090e-01 - sys_corr_109: 6.31604460e-02 - sys_corr_110: 4.29852639e-01 - sys_corr_111: -2.62642749e-02 - sys_corr_112: -5.63146464e-03 - sys_corr_113: 6.10999070e-02 - sys_corr_114: -6.76291857e-04 - sys_corr_115: -2.90975619e-02 + sys_corr_108: 6.31604460e-02 + sys_corr_109: -3.85997090e-01 + sys_corr_110: 2.62642749e-02 + sys_corr_111: -4.29852639e-01 + sys_corr_112: 5.63146464e-03 + sys_corr_113: -6.10999070e-02 + sys_corr_114: 6.76291857e-04 + sys_corr_115: 2.90975619e-02 sys_corr_116: -8.79699669e-02 - sys_corr_117: -8.21285466e-02 + sys_corr_117: 8.21285466e-02 sys_corr_118: 1.75613945e-02 sys_corr_119: -2.23024510e-03 sys_corr_120: 3.19925313e-02 sys_corr_121: -6.78100551e-03 - sys_corr_122: 1.44673813e-02 - sys_corr_123: 1.14544731e-04 - sys_corr_124: -9.49437022e-02 + sys_corr_122: 1.14544731e-04 + sys_corr_123: -1.44673813e-02 + sys_corr_124: 9.49437022e-02 sys_corr_125: -2.81647361e-02 sys_corr_126: -1.14533650e-03 - sys_corr_127: 6.43540967e-01 - sys_corr_128: 1.51504595e-01 - sys_corr_129: 1.28446347e-01 - sys_corr_130: 5.05029625e-03 - sys_corr_131: -2.99806560e-02 + sys_corr_127: -6.43540967e-01 + sys_corr_128: -1.51504595e-01 + sys_corr_129: -1.28446347e-01 + sys_corr_130: -5.05029625e-03 + sys_corr_131: 2.99806560e-02 sys_corr_132: -3.11426016e-02 stat: 0.0 luminosity: 5.62015630e+02 @@ -5368,17 +5368,17 @@ bins: sys_corr_6: -3.78398973e+02 sys_corr_7: 1.46649277e+02 sys_corr_8: 8.12141599e+01 - sys_corr_9: 9.37876032e+01 - sys_corr_10: -1.00702605e+01 + sys_corr_9: -9.37876032e+01 + sys_corr_10: 1.00702605e+01 sys_corr_11: 1.33575220e+02 - sys_corr_12: 1.63170005e+02 - sys_corr_13: -1.12159319e+02 + sys_corr_12: -1.63170005e+02 + sys_corr_13: 1.12159319e+02 sys_corr_14: 3.66808291e+01 sys_corr_15: 3.37632928e+01 sys_corr_16: -2.85155723e+01 - sys_corr_17: 1.72967211e+01 + sys_corr_17: -1.72967211e+01 sys_corr_18: -2.71154857e+01 - sys_corr_19: -1.70551244e+01 + sys_corr_19: 1.70551244e+01 sys_corr_20: -2.74705897e+00 sys_corr_21: -1.64631688e+00 sys_corr_22: -7.02704311e+01 @@ -5394,103 +5394,103 @@ bins: sys_corr_32: -2.21204585e+01 sys_corr_33: 4.14955885e+00 sys_corr_34: -1.72894264e+01 - sys_corr_35: -3.37665412e+01 - sys_corr_36: -1.13923201e+01 + sys_corr_35: 3.37665412e+01 + sys_corr_36: 1.13923201e+01 sys_corr_37: -3.81468671e+01 sys_corr_38: 5.45655763e+01 - sys_corr_39: 2.72613278e+01 - sys_corr_40: 8.24436924e+01 - sys_corr_41: 1.50278898e+02 + sys_corr_39: -2.72613278e+01 + sys_corr_40: -8.24436924e+01 + sys_corr_41: -1.50278898e+02 sys_corr_42: 1.87973113e+02 sys_corr_43: 7.59636975e+01 sys_corr_44: 8.74049153e+01 sys_corr_45: 1.22123885e+02 - sys_corr_46: 6.95788001e+01 - sys_corr_47: 8.69985299e+00 + sys_corr_46: -6.95788001e+01 + sys_corr_47: -8.69985299e+00 sys_corr_48: 5.01207500e+01 sys_corr_49: 2.14567565e+01 sys_corr_50: -7.50690449e+00 - sys_corr_51: -4.37215144e+01 - sys_corr_52: 2.37470594e+01 - sys_corr_53: 7.66882335e+00 + sys_corr_51: 4.37215144e+01 + sys_corr_52: -2.37470594e+01 + sys_corr_53: -7.66882335e+00 sys_corr_54: -2.78288870e+01 sys_corr_55: -4.53444049e+01 - sys_corr_56: -8.04733626e+00 + sys_corr_56: 8.04733626e+00 sys_corr_57: -6.23620230e+00 - sys_corr_58: -1.05980122e+01 + sys_corr_58: 1.05980122e+01 sys_corr_59: -9.89658801e-01 sys_corr_60: 8.32743407e+00 - sys_corr_61: 8.16831371e+00 - sys_corr_62: -9.08921841e-01 + sys_corr_61: -8.16831371e+00 + sys_corr_62: 9.08921841e-01 sys_corr_63: -6.17027019e+00 sys_corr_64: -1.67269610e+01 - sys_corr_65: -5.09132779e+00 - sys_corr_66: -5.82105759e-01 - sys_corr_67: 1.21149259e+01 + sys_corr_65: 5.09132779e+00 + sys_corr_66: 5.82105759e-01 + sys_corr_67: -1.21149259e+01 sys_corr_68: 9.64644366e+00 sys_corr_69: -3.01042948e+00 sys_corr_70: -2.60499928e+00 - sys_corr_71: -1.17526691e+00 - sys_corr_72: 3.70673501e+00 + sys_corr_71: 1.17526691e+00 + sys_corr_72: -3.70673501e+00 sys_corr_73: 8.87488275e+00 sys_corr_74: 3.74826950e+00 - sys_corr_75: -1.83259115e+00 - sys_corr_76: 7.32748667e+00 + sys_corr_75: 1.83259115e+00 + sys_corr_76: -7.32748667e+00 sys_corr_77: -1.25865967e+00 sys_corr_78: -6.07684522e+00 sys_corr_79: -2.21128912e-01 - sys_corr_80: 3.66592636e+00 + sys_corr_80: -3.66592636e+00 sys_corr_81: 6.81807982e+00 - sys_corr_82: -9.19680405e+00 + sys_corr_82: 9.19680405e+00 sys_corr_83: 3.61090529e+00 sys_corr_84: 2.62674332e+00 sys_corr_85: 4.14068049e+00 - sys_corr_86: 4.78513926e+00 - sys_corr_87: -1.02522227e+01 + sys_corr_86: -4.78513926e+00 + sys_corr_87: 1.02522227e+01 sys_corr_88: 4.10002562e+00 sys_corr_89: -1.48566230e+00 - sys_corr_90: -2.01221358e-01 - sys_corr_91: 4.31408979e-03 - sys_corr_92: 1.68216457e+00 + sys_corr_90: -4.31408979e-03 + sys_corr_91: 2.01221358e-01 + sys_corr_92: -1.68216457e+00 sys_corr_93: -2.03752798e-01 sys_corr_94: -7.57834515e-01 - sys_corr_95: 1.83274914e+00 + sys_corr_95: -1.83274914e+00 sys_corr_96: -8.65021329e-02 - sys_corr_97: 1.29426434e+00 - sys_corr_98: 6.78952552e-02 + sys_corr_97: -1.29426434e+00 + sys_corr_98: -6.78952552e-02 sys_corr_99: 1.15012618e+00 - sys_corr_100: 4.21336193e-01 - sys_corr_101: 7.88028336e-01 - sys_corr_102: 2.98981518e+00 - sys_corr_103: 7.58514953e-01 - sys_corr_104: -1.70483163e+00 - sys_corr_105: 7.68261399e-01 + sys_corr_100: -7.68261399e-01 + sys_corr_101: -4.21336193e-01 + sys_corr_102: -7.88028336e-01 + sys_corr_103: 2.98981518e+00 + sys_corr_104: -7.58514953e-01 + sys_corr_105: 1.70483163e+00 sys_corr_106: 8.28645889e-01 sys_corr_107: 7.22051797e-01 - sys_corr_108: 5.85014780e-02 - sys_corr_109: -2.39634246e-02 - sys_corr_110: 9.53053418e-01 - sys_corr_111: -1.77449328e-01 - sys_corr_112: -7.81280984e-02 - sys_corr_113: -3.61472519e-02 - sys_corr_114: -1.41314138e-03 - sys_corr_115: -8.68342780e-02 + sys_corr_108: -2.39634246e-02 + sys_corr_109: -5.85014780e-02 + sys_corr_110: 1.77449328e-01 + sys_corr_111: -9.53053418e-01 + sys_corr_112: 7.81280984e-02 + sys_corr_113: 3.61472519e-02 + sys_corr_114: 1.41314138e-03 + sys_corr_115: 8.68342780e-02 sys_corr_116: -4.30556402e-02 - sys_corr_117: -5.27020852e-02 + sys_corr_117: 5.27020852e-02 sys_corr_118: 3.63767766e-03 sys_corr_119: -1.71962376e-03 sys_corr_120: 2.71546293e-02 sys_corr_121: -2.64915185e-04 - sys_corr_122: 2.60200641e-02 - sys_corr_123: 9.35128379e-03 - sys_corr_124: -7.13190624e-02 + sys_corr_122: 9.35128379e-03 + sys_corr_123: -2.60200641e-02 + sys_corr_124: 7.13190624e-02 sys_corr_125: -2.17642240e-02 sys_corr_126: 2.85075071e-04 - sys_corr_127: 3.58682020e-01 - sys_corr_128: 2.02090473e-01 - sys_corr_129: -7.10298176e-02 - sys_corr_130: -1.31627288e-03 - sys_corr_131: -2.60605703e-02 + sys_corr_127: -3.58682020e-01 + sys_corr_128: -2.02090473e-01 + sys_corr_129: 7.10298176e-02 + sys_corr_130: 1.31627288e-03 + sys_corr_131: 2.60605703e-02 sys_corr_132: 2.27790396e-02 stat: 0.0 luminosity: 5.39288002e+02 @@ -5502,17 +5502,17 @@ bins: sys_corr_6: -2.28922602e+02 sys_corr_7: 1.74844090e+02 sys_corr_8: 1.11758228e+02 - sys_corr_9: 1.33812324e+02 - sys_corr_10: 1.81323938e+01 + sys_corr_9: -1.33812324e+02 + sys_corr_10: -1.81323938e+01 sys_corr_11: 1.87370598e+02 - sys_corr_12: 2.39358043e+02 - sys_corr_13: -1.43671215e+02 + sys_corr_12: -2.39358043e+02 + sys_corr_13: 1.43671215e+02 sys_corr_14: 4.77630526e+01 sys_corr_15: 1.94276819e+01 sys_corr_16: -7.48336911e+00 - sys_corr_17: 1.15271999e+01 + sys_corr_17: -1.15271999e+01 sys_corr_18: -9.82954619e+00 - sys_corr_19: -7.01919658e+00 + sys_corr_19: 7.01919658e+00 sys_corr_20: -5.96908577e+00 sys_corr_21: -5.99451326e+00 sys_corr_22: -3.85969460e+01 @@ -5528,103 +5528,103 @@ bins: sys_corr_32: -5.22742908e+01 sys_corr_33: 7.57349413e+00 sys_corr_34: 2.43478225e+01 - sys_corr_35: -3.90416500e+00 - sys_corr_36: -4.49266841e+01 + sys_corr_35: 3.90416500e+00 + sys_corr_36: 4.49266841e+01 sys_corr_37: 8.32366628e+01 sys_corr_38: -2.10446709e+00 - sys_corr_39: 2.29190113e+01 - sys_corr_40: 6.46265917e+00 - sys_corr_41: -7.72518586e+01 + sys_corr_39: -2.29190113e+01 + sys_corr_40: -6.46265917e+00 + sys_corr_41: 7.72518586e+01 sys_corr_42: 2.05852011e+01 sys_corr_43: -7.97356253e+01 sys_corr_44: -2.34971036e+01 sys_corr_45: -1.30410611e+02 - sys_corr_46: 8.50424578e+01 - sys_corr_47: -1.55396239e+02 + sys_corr_46: -8.50424578e+01 + sys_corr_47: 1.55396239e+02 sys_corr_48: -2.57001113e+01 sys_corr_49: 6.51711415e+01 sys_corr_50: -8.16702592e+01 - sys_corr_51: -4.28214296e+01 - sys_corr_52: 5.02685089e+01 - sys_corr_53: 4.20384927e+01 + sys_corr_51: 4.28214296e+01 + sys_corr_52: -5.02685089e+01 + sys_corr_53: -4.20384927e+01 sys_corr_54: -7.63240311e-01 sys_corr_55: -1.12027649e+01 - sys_corr_56: 1.10442213e+01 + sys_corr_56: -1.10442213e+01 sys_corr_57: 6.45226252e+00 - sys_corr_58: -6.76427692e+00 + sys_corr_58: 6.76427692e+00 sys_corr_59: -1.50471835e+01 sys_corr_60: 2.04846222e-01 - sys_corr_61: -1.75434783e+01 - sys_corr_62: 1.00173300e+01 + sys_corr_61: 1.75434783e+01 + sys_corr_62: -1.00173300e+01 sys_corr_63: -1.72786732e+01 sys_corr_64: 3.54006204e+00 - sys_corr_65: 1.25986505e+01 - sys_corr_66: -1.76010500e+01 - sys_corr_67: -8.23015758e+00 + sys_corr_65: -1.25986505e+01 + sys_corr_66: 1.76010500e+01 + sys_corr_67: 8.23015758e+00 sys_corr_68: -6.88549769e+00 sys_corr_69: 2.30811175e+01 sys_corr_70: 1.18199937e+00 - sys_corr_71: -2.77513647e+01 - sys_corr_72: -8.80037166e+00 + sys_corr_71: 2.77513647e+01 + sys_corr_72: 8.80037166e+00 sys_corr_73: -5.38235437e+00 sys_corr_74: 1.33904575e+01 - sys_corr_75: 1.75105463e+01 - sys_corr_76: -1.04075426e+01 + sys_corr_75: -1.75105463e+01 + sys_corr_76: 1.04075426e+01 sys_corr_77: -1.10318179e+01 sys_corr_78: 5.77821852e+00 sys_corr_79: 1.15009447e+01 - sys_corr_80: 5.81348176e+00 + sys_corr_80: -5.81348176e+00 sys_corr_81: 2.62591171e-01 - sys_corr_82: 7.44953801e-01 + sys_corr_82: -7.44953801e-01 sys_corr_83: 3.35132448e+00 sys_corr_84: 7.98018101e-02 sys_corr_85: 5.72662325e+00 - sys_corr_86: -8.21821489e+00 - sys_corr_87: 2.65840061e+00 + sys_corr_86: 8.21821489e+00 + sys_corr_87: -2.65840061e+00 sys_corr_88: -5.01542736e+00 sys_corr_89: 4.16596312e-01 - sys_corr_90: -5.20251312e+00 - sys_corr_91: -1.35710262e+00 - sys_corr_92: 5.62725786e+00 + sys_corr_90: 1.35710262e+00 + sys_corr_91: 5.20251312e+00 + sys_corr_92: -5.62725786e+00 sys_corr_93: -3.60054003e-01 sys_corr_94: -1.41667138e+00 - sys_corr_95: 1.03741676e+00 + sys_corr_95: -1.03741676e+00 sys_corr_96: -2.17558263e-02 - sys_corr_97: 5.36749935e-01 - sys_corr_98: 5.63081022e-01 + sys_corr_97: -5.36749935e-01 + sys_corr_98: -5.63081022e-01 sys_corr_99: -3.42840189e-01 - sys_corr_100: 6.45986959e-01 - sys_corr_101: 1.71273965e-01 - sys_corr_102: 1.12239743e+00 - sys_corr_103: 1.43889454e-01 - sys_corr_104: -5.13761675e-01 - sys_corr_105: 4.13349358e-01 + sys_corr_100: -4.13349358e-01 + sys_corr_101: -6.45986959e-01 + sys_corr_102: -1.71273965e-01 + sys_corr_103: 1.12239743e+00 + sys_corr_104: -1.43889454e-01 + sys_corr_105: 5.13761675e-01 sys_corr_106: 5.84216105e-01 sys_corr_107: 8.49380711e-01 - sys_corr_108: -1.77739015e-01 - sys_corr_109: -1.00147808e-01 - sys_corr_110: 3.20256114e-02 - sys_corr_111: -3.22642051e-01 - sys_corr_112: -9.56086215e-02 - sys_corr_113: -5.16547731e-03 - sys_corr_114: -1.42311441e-03 - sys_corr_115: -1.36248689e-01 + sys_corr_108: -1.00147808e-01 + sys_corr_109: 1.77739015e-01 + sys_corr_110: 3.22642051e-01 + sys_corr_111: -3.20256114e-02 + sys_corr_112: 9.56086215e-02 + sys_corr_113: 5.16547731e-03 + sys_corr_114: 1.42311441e-03 + sys_corr_115: 1.36248689e-01 sys_corr_116: 1.90753773e-02 - sys_corr_117: 1.63723774e-02 + sys_corr_117: -1.63723774e-02 sys_corr_118: -1.49664172e-02 sys_corr_119: 2.41186922e-03 sys_corr_120: -4.24858676e-04 sys_corr_121: 1.07045301e-02 - sys_corr_122: 2.78433287e-02 - sys_corr_123: 1.96269598e-02 - sys_corr_124: 2.00368796e-02 + sys_corr_122: 1.96269598e-02 + sys_corr_123: -2.78433287e-02 + sys_corr_124: -2.00368796e-02 sys_corr_125: -9.97279461e-03 sys_corr_126: 7.03448944e-03 - sys_corr_127: -1.85075491e-01 - sys_corr_128: 4.85463348e-02 - sys_corr_129: 7.49732412e-02 - sys_corr_130: -1.13247972e-02 - sys_corr_131: -1.82641396e-03 + sys_corr_127: 1.85075491e-01 + sys_corr_128: -4.85463348e-02 + sys_corr_129: -7.49732412e-02 + sys_corr_130: 1.13247972e-02 + sys_corr_131: 1.82641396e-03 sys_corr_132: -4.82168758e-03 stat: 0.0 luminosity: 5.66723762e+02 @@ -5636,17 +5636,17 @@ bins: sys_corr_6: -1.02741867e+02 sys_corr_7: 1.62732573e+02 sys_corr_8: 1.27051835e+02 - sys_corr_9: 1.35369879e+02 - sys_corr_10: 2.41039249e+01 + sys_corr_9: -1.35369879e+02 + sys_corr_10: -2.41039249e+01 sys_corr_11: 1.79093203e+02 - sys_corr_12: 2.08646587e+02 - sys_corr_13: -1.52229383e+02 + sys_corr_12: -2.08646587e+02 + sys_corr_13: 1.52229383e+02 sys_corr_14: 4.60336144e+01 sys_corr_15: 4.43002979e+01 sys_corr_16: -2.73773486e+01 - sys_corr_17: 1.17116304e+01 + sys_corr_17: -1.17116304e+01 sys_corr_18: -3.79252252e+01 - sys_corr_19: -7.25322884e+00 + sys_corr_19: 7.25322884e+00 sys_corr_20: -1.87566396e+01 sys_corr_21: -1.71023696e+01 sys_corr_22: -4.75185012e+00 @@ -5662,103 +5662,103 @@ bins: sys_corr_32: -1.36786916e+01 sys_corr_33: -1.42684201e+01 sys_corr_34: 6.25734679e+00 - sys_corr_35: 1.02884994e+00 - sys_corr_36: -2.28433848e+01 + sys_corr_35: -1.02884994e+00 + sys_corr_36: 2.28433848e+01 sys_corr_37: 3.07209129e+01 sys_corr_38: -2.32548473e+01 - sys_corr_39: -3.18283582e+01 - sys_corr_40: -1.18420298e+02 - sys_corr_41: 1.09859094e+02 + sys_corr_39: 3.18283582e+01 + sys_corr_40: 1.18420298e+02 + sys_corr_41: -1.09859094e+02 sys_corr_42: -1.94136005e+02 sys_corr_43: 1.33500571e+02 sys_corr_44: -4.66631725e+01 sys_corr_45: -4.46890492e+00 - sys_corr_46: 9.49658579e-01 - sys_corr_47: 4.12345199e+01 + sys_corr_46: -9.49658579e-01 + sys_corr_47: -4.12345199e+01 sys_corr_48: 8.47697056e+01 sys_corr_49: 7.17827353e+01 sys_corr_50: 3.55020852e+01 - sys_corr_51: -1.96150155e+01 - sys_corr_52: -2.56307788e+01 - sys_corr_53: -2.21154525e+01 + sys_corr_51: 1.96150155e+01 + sys_corr_52: 2.56307788e+01 + sys_corr_53: 2.21154525e+01 sys_corr_54: -4.91699200e+00 sys_corr_55: 1.61559765e+01 - sys_corr_56: -1.48081465e+01 + sys_corr_56: 1.48081465e+01 sys_corr_57: 2.76438080e+01 - sys_corr_58: -1.01849437e+01 + sys_corr_58: 1.01849437e+01 sys_corr_59: -1.36219974e+01 sys_corr_60: 9.21020530e+00 - sys_corr_61: 9.16639820e+00 - sys_corr_62: -1.37498815e+01 + sys_corr_61: -9.16639820e+00 + sys_corr_62: 1.37498815e+01 sys_corr_63: -3.16409635e+01 sys_corr_64: -9.08827295e+00 - sys_corr_65: 3.18422607e+00 - sys_corr_66: -4.57492278e+00 - sys_corr_67: 1.71554689e+01 + sys_corr_65: -3.18422607e+00 + sys_corr_66: 4.57492278e+00 + sys_corr_67: -1.71554689e+01 sys_corr_68: 2.93475700e+00 sys_corr_69: -4.27319717e+00 sys_corr_70: 1.31444091e+00 - sys_corr_71: 1.16275738e+00 - sys_corr_72: -3.05338781e+00 + sys_corr_71: -1.16275738e+00 + sys_corr_72: 3.05338781e+00 sys_corr_73: 3.36563585e+00 sys_corr_74: 7.28316326e+00 - sys_corr_75: 1.16755199e+01 - sys_corr_76: -3.15576568e+00 + sys_corr_75: -1.16755199e+01 + sys_corr_76: 3.15576568e+00 sys_corr_77: -8.71309346e+00 sys_corr_78: 2.91986360e+00 sys_corr_79: -2.26715709e+00 - sys_corr_80: 5.07266630e+00 + sys_corr_80: -5.07266630e+00 sys_corr_81: 8.29945809e+00 - sys_corr_82: -1.72903675e+00 + sys_corr_82: 1.72903675e+00 sys_corr_83: 7.76559144e+00 sys_corr_84: -4.11073714e+00 sys_corr_85: 1.22077444e+00 - sys_corr_86: 4.74355633e+00 - sys_corr_87: 5.19631203e+00 + sys_corr_86: -4.74355633e+00 + sys_corr_87: -5.19631203e+00 sys_corr_88: 6.77128271e+00 sys_corr_89: -1.55243186e-01 - sys_corr_90: -3.47401084e+00 - sys_corr_91: -1.68389791e+00 - sys_corr_92: 1.44886918e+00 + sys_corr_90: 1.68389791e+00 + sys_corr_91: 3.47401084e+00 + sys_corr_92: -1.44886918e+00 sys_corr_93: -2.29950708e-01 sys_corr_94: -8.30630587e-01 - sys_corr_95: -3.31353046e-01 + sys_corr_95: 3.31353046e-01 sys_corr_96: 2.73082785e-02 - sys_corr_97: -4.76334633e-01 - sys_corr_98: -3.21874010e-01 + sys_corr_97: 4.76334633e-01 + sys_corr_98: 3.21874010e-01 sys_corr_99: 3.70167255e-01 - sys_corr_100: -4.24649910e-01 - sys_corr_101: -1.10940535e+00 - sys_corr_102: -3.74359045e+00 - sys_corr_103: 7.49051530e-01 - sys_corr_104: 1.56256841e+00 - sys_corr_105: -2.53254632e-01 + sys_corr_100: 2.53254632e-01 + sys_corr_101: 4.24649910e-01 + sys_corr_102: 1.10940535e+00 + sys_corr_103: -3.74359045e+00 + sys_corr_104: -7.49051530e-01 + sys_corr_105: -1.56256841e+00 sys_corr_106: -3.14988065e-01 sys_corr_107: 4.82614836e-02 - sys_corr_108: -5.02098187e-02 - sys_corr_109: 1.40019377e-01 - sys_corr_110: -3.67526346e-02 - sys_corr_111: 4.82833069e-02 - sys_corr_112: -1.83065554e-02 - sys_corr_113: 5.61775973e-02 - sys_corr_114: -7.64224596e-04 - sys_corr_115: -3.33196633e-02 + sys_corr_108: 1.40019377e-01 + sys_corr_109: 5.02098187e-02 + sys_corr_110: -4.82833069e-02 + sys_corr_111: 3.67526346e-02 + sys_corr_112: 1.83065554e-02 + sys_corr_113: -5.61775973e-02 + sys_corr_114: 7.64224596e-04 + sys_corr_115: 3.33196633e-02 sys_corr_116: 5.85818420e-02 - sys_corr_117: 5.59442235e-02 + sys_corr_117: -5.59442235e-02 sys_corr_118: 6.14181102e-03 sys_corr_119: 3.72031931e-04 sys_corr_120: -3.32036312e-02 sys_corr_121: 4.09700794e-03 - sys_corr_122: -2.50363223e-02 - sys_corr_123: -8.19609260e-03 - sys_corr_124: 6.47858720e-02 + sys_corr_122: -8.19609260e-03 + sys_corr_123: 2.50363223e-02 + sys_corr_124: -6.47858720e-02 sys_corr_125: 2.78902872e-02 sys_corr_126: -3.37116232e-03 - sys_corr_127: 1.03586006e-01 - sys_corr_128: -1.11860423e-01 - sys_corr_129: -2.58269714e-02 - sys_corr_130: -3.85374817e-03 - sys_corr_131: 2.47168873e-02 + sys_corr_127: -1.03586006e-01 + sys_corr_128: 1.11860423e-01 + sys_corr_129: 2.58269714e-02 + sys_corr_130: 3.85374817e-03 + sys_corr_131: -2.47168873e-02 sys_corr_132: 1.14767312e-02 stat: 0.0 luminosity: 5.30043646e+02 @@ -5770,17 +5770,17 @@ bins: sys_corr_6: -5.07246662e+01 sys_corr_7: 1.42336079e+02 sys_corr_8: 1.30612198e+02 - sys_corr_9: 1.46620609e+02 - sys_corr_10: 3.87943066e+01 + sys_corr_9: -1.46620609e+02 + sys_corr_10: -3.87943066e+01 sys_corr_11: 1.55330584e+02 - sys_corr_12: 2.00527370e+02 - sys_corr_13: -1.43675094e+02 + sys_corr_12: -2.00527370e+02 + sys_corr_13: 1.43675094e+02 sys_corr_14: 3.94069358e+01 sys_corr_15: 3.87282014e+01 sys_corr_16: -2.45683162e+01 - sys_corr_17: 2.31028184e+01 + sys_corr_17: -2.31028184e+01 sys_corr_18: -2.56437815e+01 - sys_corr_19: -5.83461636e+00 + sys_corr_19: 5.83461636e+00 sys_corr_20: -2.83129852e+01 sys_corr_21: -3.14799711e+01 sys_corr_22: -2.52175598e+01 @@ -5796,103 +5796,103 @@ bins: sys_corr_32: -3.01722045e+01 sys_corr_33: -3.70862978e+00 sys_corr_34: 5.44481497e+00 - sys_corr_35: -3.17645465e+01 - sys_corr_36: -3.21414522e+01 + sys_corr_35: 3.17645465e+01 + sys_corr_36: 3.21414522e+01 sys_corr_37: 7.18522873e+01 sys_corr_38: 7.59168874e+01 - sys_corr_39: -1.67364463e+00 - sys_corr_40: 1.29586367e+02 - sys_corr_41: -1.10589032e+02 + sys_corr_39: 1.67364463e+00 + sys_corr_40: -1.29586367e+02 + sys_corr_41: 1.10589032e+02 sys_corr_42: 1.74560195e+01 sys_corr_43: -6.83766366e+01 sys_corr_44: -5.91771036e+01 sys_corr_45: 4.49102310e+01 - sys_corr_46: -1.17419438e+02 - sys_corr_47: 1.65807174e+02 + sys_corr_46: 1.17419438e+02 + sys_corr_47: -1.65807174e+02 sys_corr_48: 5.30931947e+01 sys_corr_49: 5.95476558e+00 sys_corr_50: -3.64395275e+01 - sys_corr_51: 3.32755098e+01 - sys_corr_52: 8.36479986e+00 - sys_corr_53: -1.70471061e+01 + sys_corr_51: -3.32755098e+01 + sys_corr_52: -8.36479986e+00 + sys_corr_53: 1.70471061e+01 sys_corr_54: -1.15929385e+01 sys_corr_55: 6.22044768e+01 - sys_corr_56: 3.91432004e+01 + sys_corr_56: -3.91432004e+01 sys_corr_57: 1.66283334e+01 - sys_corr_58: 1.00382193e+01 + sys_corr_58: -1.00382193e+01 sys_corr_59: 2.66636980e+01 sys_corr_60: -5.28429606e+00 - sys_corr_61: -1.37919240e+01 - sys_corr_62: 4.67638166e+00 + sys_corr_61: 1.37919240e+01 + sys_corr_62: -4.67638166e+00 sys_corr_63: 1.54217495e+01 sys_corr_64: 8.49833355e+00 - sys_corr_65: -1.19643462e+01 - sys_corr_66: -5.74460643e+00 - sys_corr_67: 8.37581931e+00 + sys_corr_65: 1.19643462e+01 + sys_corr_66: 5.74460643e+00 + sys_corr_67: -8.37581931e+00 sys_corr_68: -1.29990048e+01 sys_corr_69: 5.18753012e-01 sys_corr_70: 2.18787773e+00 - sys_corr_71: -1.28776694e+01 - sys_corr_72: 1.91902906e-01 + sys_corr_71: 1.28776694e+01 + sys_corr_72: -1.91902906e-01 sys_corr_73: 2.07559202e+01 sys_corr_74: -4.34601659e+00 - sys_corr_75: 8.45210039e+00 - sys_corr_76: -8.09218284e-01 + sys_corr_75: -8.45210039e+00 + sys_corr_76: 8.09218284e-01 sys_corr_77: -2.61409148e+00 sys_corr_78: 2.20106364e+00 sys_corr_79: -5.20466469e+00 - sys_corr_80: -8.13834197e-01 + sys_corr_80: 8.13834197e-01 sys_corr_81: -1.78061431e+00 - sys_corr_82: -2.45851566e+00 + sys_corr_82: 2.45851566e+00 sys_corr_83: 3.84544007e+00 sys_corr_84: -8.24064894e-01 sys_corr_85: 2.92533949e+00 - sys_corr_86: 6.11728042e+00 - sys_corr_87: 6.18944748e+00 + sys_corr_86: -6.11728042e+00 + sys_corr_87: -6.18944748e+00 sys_corr_88: 6.18517649e+00 sys_corr_89: -2.96432670e-01 - sys_corr_90: -2.94713671e+00 - sys_corr_91: 4.54753832e-01 - sys_corr_92: -1.41760298e+00 + sys_corr_90: -4.54753832e-01 + sys_corr_91: 2.94713671e+00 + sys_corr_92: 1.41760298e+00 sys_corr_93: -9.64956190e-02 sys_corr_94: -3.09630402e-01 - sys_corr_95: -9.49518631e-01 + sys_corr_95: 9.49518631e-01 sys_corr_96: -1.78761076e-01 - sys_corr_97: 2.63585122e-01 - sys_corr_98: -3.86260854e-02 + sys_corr_97: -2.63585122e-01 + sys_corr_98: 3.86260854e-02 sys_corr_99: 6.32931623e-01 - sys_corr_100: -3.28738889e-01 - sys_corr_101: -7.06325453e-01 - sys_corr_102: -1.56901659e+00 - sys_corr_103: -1.87796828e-01 - sys_corr_104: 6.72014446e-01 - sys_corr_105: -5.28737580e-01 + sys_corr_100: 5.28737580e-01 + sys_corr_101: 3.28738889e-01 + sys_corr_102: 7.06325453e-01 + sys_corr_103: -1.56901659e+00 + sys_corr_104: 1.87796828e-01 + sys_corr_105: -6.72014446e-01 sys_corr_106: -3.95432679e-01 sys_corr_107: -5.15398045e-01 - sys_corr_108: 1.80061154e-03 - sys_corr_109: 1.74765840e-01 - sys_corr_110: -2.74562750e-01 - sys_corr_111: 1.85920686e-01 - sys_corr_112: 7.10666736e-02 - sys_corr_113: -1.43801273e-02 - sys_corr_114: 9.01083384e-04 - sys_corr_115: 1.41171231e-01 + sys_corr_108: 1.74765840e-01 + sys_corr_109: -1.80061154e-03 + sys_corr_110: -1.85920686e-01 + sys_corr_111: 2.74562750e-01 + sys_corr_112: -7.10666736e-02 + sys_corr_113: 1.43801273e-02 + sys_corr_114: -9.01083384e-04 + sys_corr_115: -1.41171231e-01 sys_corr_116: 5.69046980e-02 - sys_corr_117: 4.91904254e-02 + sys_corr_117: -4.91904254e-02 sys_corr_118: 4.74449061e-02 sys_corr_119: 2.15302299e-03 sys_corr_120: -3.45396040e-02 sys_corr_121: 5.49031906e-04 - sys_corr_122: -3.10996001e-02 - sys_corr_123: -1.17990814e-02 - sys_corr_124: 8.92052231e-02 + sys_corr_122: -1.17990814e-02 + sys_corr_123: 3.10996001e-02 + sys_corr_124: -8.92052231e-02 sys_corr_125: 3.02869814e-02 sys_corr_126: -7.56020148e-03 - sys_corr_127: -2.71026927e-01 - sys_corr_128: -1.40190561e-01 - sys_corr_129: -7.63061064e-02 - sys_corr_130: -4.73574375e-03 - sys_corr_131: 2.62612942e-02 + sys_corr_127: 2.71026927e-01 + sys_corr_128: 1.40190561e-01 + sys_corr_129: 7.63061064e-02 + sys_corr_130: 4.73574375e-03 + sys_corr_131: -2.62612942e-02 sys_corr_132: 3.25741777e-02 stat: 0.0 luminosity: 5.13668870e+02 @@ -5904,17 +5904,17 @@ bins: sys_corr_6: -1.71536870e+01 sys_corr_7: 1.11426342e+02 sys_corr_8: 1.05449965e+02 - sys_corr_9: 1.28795099e+02 - sys_corr_10: 2.96336807e+01 + sys_corr_9: -1.28795099e+02 + sys_corr_10: -2.96336807e+01 sys_corr_11: 1.43385756e+02 - sys_corr_12: 1.70480605e+02 - sys_corr_13: -1.28281107e+02 + sys_corr_12: -1.70480605e+02 + sys_corr_13: 1.28281107e+02 sys_corr_14: 2.70620406e+01 sys_corr_15: 3.63789691e+01 sys_corr_16: -2.05143249e+01 - sys_corr_17: 1.85406819e+01 + sys_corr_17: -1.85406819e+01 sys_corr_18: -2.20623471e+01 - sys_corr_19: -1.77527803e+01 + sys_corr_19: 1.77527803e+01 sys_corr_20: -4.05670596e+01 sys_corr_21: -2.48891681e+01 sys_corr_22: -5.64592199e+01 @@ -5930,103 +5930,103 @@ bins: sys_corr_32: 7.41153320e+00 sys_corr_33: -1.06555133e+01 sys_corr_34: -4.08581954e+00 - sys_corr_35: 5.62250973e+00 - sys_corr_36: -6.80009415e+00 + sys_corr_35: -5.62250973e+00 + sys_corr_36: 6.80009415e+00 sys_corr_37: 1.59132681e+01 sys_corr_38: 1.93064587e+01 - sys_corr_39: -3.74324952e+00 - sys_corr_40: 4.00771613e+01 - sys_corr_41: 8.73479755e+00 + sys_corr_39: 3.74324952e+00 + sys_corr_40: -4.00771613e+01 + sys_corr_41: -8.73479755e+00 sys_corr_42: 1.20955200e+01 sys_corr_43: 1.69572548e+02 sys_corr_44: 7.91319077e+01 sys_corr_45: -7.75903132e+01 - sys_corr_46: -5.82456305e+01 - sys_corr_47: -5.82129447e+01 + sys_corr_46: 5.82456305e+01 + sys_corr_47: 5.82129447e+01 sys_corr_48: -1.29531329e+02 sys_corr_49: -1.43900223e+02 sys_corr_50: -1.64908128e+01 - sys_corr_51: -8.49587501e+00 - sys_corr_52: -1.76249408e+01 - sys_corr_53: -1.01480241e+01 + sys_corr_51: 8.49587501e+00 + sys_corr_52: 1.76249408e+01 + sys_corr_53: 1.01480241e+01 sys_corr_54: 3.91107220e+01 sys_corr_55: 6.99844637e+01 - sys_corr_56: -1.33273436e+01 + sys_corr_56: 1.33273436e+01 sys_corr_57: 1.05329985e+01 - sys_corr_58: 1.66486572e+01 + sys_corr_58: -1.66486572e+01 sys_corr_59: 3.61592433e+01 sys_corr_60: -9.55582047e+00 - sys_corr_61: -1.63303797e+01 - sys_corr_62: 1.08334874e+01 + sys_corr_61: 1.63303797e+01 + sys_corr_62: -1.08334874e+01 sys_corr_63: 2.98151838e+01 sys_corr_64: -1.88332905e+01 - sys_corr_65: -1.86533185e+00 - sys_corr_66: -1.70662828e+01 - sys_corr_67: 1.36048927e+01 + sys_corr_65: 1.86533185e+00 + sys_corr_66: 1.70662828e+01 + sys_corr_67: -1.36048927e+01 sys_corr_68: -9.29112373e+00 sys_corr_69: 1.20239030e+00 sys_corr_70: -3.37351184e+00 - sys_corr_71: 1.38534428e+01 - sys_corr_72: -1.73869562e+00 + sys_corr_71: -1.38534428e+01 + sys_corr_72: 1.73869562e+00 sys_corr_73: 5.55950340e+00 sys_corr_74: 1.72415955e+01 - sys_corr_75: -9.83128138e-01 - sys_corr_76: -7.58558138e+00 + sys_corr_75: 9.83128138e-01 + sys_corr_76: 7.58558138e+00 sys_corr_77: 3.19760126e-01 sys_corr_78: 2.06818079e-01 sys_corr_79: -1.41484506e+00 - sys_corr_80: -3.93805722e+00 + sys_corr_80: 3.93805722e+00 sys_corr_81: -1.19860500e-01 - sys_corr_82: 2.74082752e+00 + sys_corr_82: -2.74082752e+00 sys_corr_83: 4.37827598e+00 sys_corr_84: 3.74057488e+00 sys_corr_85: -6.45654162e-01 - sys_corr_86: 2.10329207e+00 - sys_corr_87: 4.22853299e+00 + sys_corr_86: -2.10329207e+00 + sys_corr_87: -4.22853299e+00 sys_corr_88: 1.06039087e+01 sys_corr_89: -1.80013925e-01 - sys_corr_90: -3.84373767e+00 - sys_corr_91: 4.89036425e+00 - sys_corr_92: -4.94152787e-01 + sys_corr_90: -4.89036425e+00 + sys_corr_91: 3.84373767e+00 + sys_corr_92: 4.94152787e-01 sys_corr_93: 1.42663740e-01 sys_corr_94: 6.81110326e-01 - sys_corr_95: -3.96523366e-01 + sys_corr_95: 3.96523366e-01 sys_corr_96: -1.22542432e-01 - sys_corr_97: -6.24193533e-01 - sys_corr_98: -1.52037629e-01 + sys_corr_97: 6.24193533e-01 + sys_corr_98: 1.52037629e-01 sys_corr_99: -1.87176126e-01 - sys_corr_100: -1.33274739e-01 - sys_corr_101: -8.21655613e-02 - sys_corr_102: -9.82694331e-01 - sys_corr_103: -5.96367721e-01 - sys_corr_104: 8.14212035e-01 - sys_corr_105: -1.57814799e-01 + sys_corr_100: 1.57814799e-01 + sys_corr_101: 1.33274739e-01 + sys_corr_102: 8.21655613e-02 + sys_corr_103: -9.82694331e-01 + sys_corr_104: 5.96367721e-01 + sys_corr_105: -8.14212035e-01 sys_corr_106: -2.49652300e-01 sys_corr_107: -2.34227381e-01 - sys_corr_108: 2.74222856e-02 - sys_corr_109: 3.52034172e-02 - sys_corr_110: -2.97605755e-01 - sys_corr_111: 2.65981880e-02 - sys_corr_112: 1.15783719e-01 - sys_corr_113: 3.44970213e-02 - sys_corr_114: 1.13907478e-03 - sys_corr_115: 1.65200148e-01 + sys_corr_108: 3.52034172e-02 + sys_corr_109: -2.74222856e-02 + sys_corr_110: -2.65981880e-02 + sys_corr_111: 2.97605755e-01 + sys_corr_112: -1.15783719e-01 + sys_corr_113: -3.44970213e-02 + sys_corr_114: -1.13907478e-03 + sys_corr_115: -1.65200148e-01 sys_corr_116: 7.46492022e-02 - sys_corr_117: 6.47347407e-02 + sys_corr_117: -6.47347407e-02 sys_corr_118: -6.17618630e-02 sys_corr_119: -5.48811419e-04 sys_corr_120: -4.04314546e-02 sys_corr_121: 4.00292385e-03 - sys_corr_122: -3.38013522e-02 - sys_corr_123: -1.18243173e-02 - sys_corr_124: 1.34898776e-01 + sys_corr_122: -1.18243173e-02 + sys_corr_123: 3.38013522e-02 + sys_corr_124: -1.34898776e-01 sys_corr_125: 3.76345582e-02 sys_corr_126: -9.13805052e-03 - sys_corr_127: 2.29088736e-02 - sys_corr_128: -1.56252113e-01 - sys_corr_129: 1.08657027e-02 - sys_corr_130: -1.92139347e-03 - sys_corr_131: 3.11207585e-02 + sys_corr_127: -2.29088736e-02 + sys_corr_128: 1.56252113e-01 + sys_corr_129: -1.08657027e-02 + sys_corr_130: 1.92139347e-03 + sys_corr_131: -3.11207585e-02 sys_corr_132: 6.85147699e-03 stat: 0.0 luminosity: 4.77209722e+02 @@ -6038,17 +6038,17 @@ bins: sys_corr_6: -7.18828243e+00 sys_corr_7: 9.23042242e+01 sys_corr_8: 9.45164072e+01 - sys_corr_9: 1.23880971e+02 - sys_corr_10: 3.48204749e+01 + sys_corr_9: -1.23880971e+02 + sys_corr_10: -3.48204749e+01 sys_corr_11: 1.30366817e+02 - sys_corr_12: 1.53575020e+02 - sys_corr_13: -1.19109603e+02 + sys_corr_12: -1.53575020e+02 + sys_corr_13: 1.19109603e+02 sys_corr_14: 2.16531851e+01 sys_corr_15: 2.89722420e+01 sys_corr_16: -1.53841474e+01 - sys_corr_17: 1.95610998e+01 + sys_corr_17: -1.95610998e+01 sys_corr_18: -2.08605414e+01 - sys_corr_19: -2.47667723e+01 + sys_corr_19: 2.47667723e+01 sys_corr_20: -4.36252047e+01 sys_corr_21: -2.98924172e+01 sys_corr_22: -5.59264429e+01 @@ -6064,103 +6064,103 @@ bins: sys_corr_32: 9.55946199e+00 sys_corr_33: -5.31574947e+00 sys_corr_34: 1.15505331e+01 - sys_corr_35: 1.17121249e+01 - sys_corr_36: 1.00046087e+01 + sys_corr_35: -1.17121249e+01 + sys_corr_36: -1.00046087e+01 sys_corr_37: -9.80387692e+00 sys_corr_38: -7.28120166e+00 - sys_corr_39: 4.72659916e+00 - sys_corr_40: 9.47589977e+00 - sys_corr_41: -2.79027470e+01 + sys_corr_39: -4.72659916e+00 + sys_corr_40: -9.47589977e+00 + sys_corr_41: 2.79027470e+01 sys_corr_42: 4.57039687e+01 sys_corr_43: -6.73843688e+01 sys_corr_44: 1.90924508e+01 sys_corr_45: 2.85645004e+01 - sys_corr_46: 7.36869976e+01 - sys_corr_47: -6.12660995e+01 + sys_corr_46: -7.36869976e+01 + sys_corr_47: 6.12660995e+01 sys_corr_48: -1.79913531e+01 sys_corr_49: 9.66223843e+01 sys_corr_50: 1.66632656e+02 - sys_corr_51: 8.38537684e+01 - sys_corr_52: -1.24716555e+02 - sys_corr_53: -2.24018531e+01 + sys_corr_51: -8.38537684e+01 + sys_corr_52: 1.24716555e+02 + sys_corr_53: 2.24018531e+01 sys_corr_54: 3.83871084e+01 sys_corr_55: 4.43232119e+01 - sys_corr_56: 2.18357727e+01 + sys_corr_56: -2.18357727e+01 sys_corr_57: -3.81469958e+01 - sys_corr_58: 1.03970878e+00 + sys_corr_58: -1.03970878e+00 sys_corr_59: 2.19016263e+01 sys_corr_60: 5.88920570e+00 - sys_corr_61: -4.57015875e+00 - sys_corr_62: -2.09044900e+00 + sys_corr_61: 4.57015875e+00 + sys_corr_62: 2.09044900e+00 sys_corr_63: -2.54887673e+01 sys_corr_64: -1.96007679e+01 - sys_corr_65: -1.82535332e+01 - sys_corr_66: 5.97975494e+00 - sys_corr_67: -1.04034358e+01 + sys_corr_65: 1.82535332e+01 + sys_corr_66: -5.97975494e+00 + sys_corr_67: 1.04034358e+01 sys_corr_68: -5.68780323e+00 sys_corr_69: 1.89892317e+01 sys_corr_70: -2.02603801e+00 - sys_corr_71: 1.39905035e+01 - sys_corr_72: 7.54716622e+01 + sys_corr_71: -1.39905035e+01 + sys_corr_72: -7.54716622e+01 sys_corr_73: -1.56187768e+00 sys_corr_74: 7.63917555e+00 - sys_corr_75: 2.07139715e+00 - sys_corr_76: -4.25099971e+00 + sys_corr_75: -2.07139715e+00 + sys_corr_76: 4.25099971e+00 sys_corr_77: -1.47449386e-01 sys_corr_78: -8.18234133e-01 sys_corr_79: -4.12103948e+00 - sys_corr_80: 8.22811845e-01 + sys_corr_80: -8.22811845e-01 sys_corr_81: 3.51286444e-01 - sys_corr_82: -1.05039459e+00 + sys_corr_82: 1.05039459e+00 sys_corr_83: 6.60637980e+00 sys_corr_84: -1.20086080e+00 sys_corr_85: 2.56870902e+00 - sys_corr_86: 7.22522815e+00 - sys_corr_87: 2.02860358e+00 + sys_corr_86: -7.22522815e+00 + sys_corr_87: -2.02860358e+00 sys_corr_88: 5.24321202e+00 sys_corr_89: 2.63358042e-01 - sys_corr_90: 3.44418696e+00 - sys_corr_91: -2.37996674e+00 - sys_corr_92: -1.27181317e+00 + sys_corr_90: 2.37996674e+00 + sys_corr_91: -3.44418696e+00 + sys_corr_92: 1.27181317e+00 sys_corr_93: 4.35407260e-01 sys_corr_94: 2.47560800e+00 - sys_corr_95: -2.97909197e+00 + sys_corr_95: 2.97909197e+00 sys_corr_96: -1.60340646e-01 - sys_corr_97: -1.41653080e+00 - sys_corr_98: -6.70478537e-01 + sys_corr_97: 1.41653080e+00 + sys_corr_98: 6.70478537e-01 sys_corr_99: -4.27385541e-01 - sys_corr_100: -2.31377842e-01 - sys_corr_101: 9.87422613e-02 - sys_corr_102: -1.46517045e+00 - sys_corr_103: -6.47200716e-01 - sys_corr_104: 1.36612210e+00 - sys_corr_105: -2.61622701e-01 + sys_corr_100: 2.61622701e-01 + sys_corr_101: 2.31377842e-01 + sys_corr_102: -9.87422613e-02 + sys_corr_103: -1.46517045e+00 + sys_corr_104: 6.47200716e-01 + sys_corr_105: -1.36612210e+00 sys_corr_106: -3.95832719e-01 sys_corr_107: -8.05437939e-01 - sys_corr_108: 3.92826649e-01 - sys_corr_109: 3.03238239e-01 - sys_corr_110: -3.10178473e-01 - sys_corr_111: 2.21494155e-01 - sys_corr_112: 3.06187239e-01 - sys_corr_113: 1.10742876e-01 - sys_corr_114: 3.25144792e-03 - sys_corr_115: 2.57979031e-01 + sys_corr_108: 3.03238239e-01 + sys_corr_109: -3.92826649e-01 + sys_corr_110: -2.21494155e-01 + sys_corr_111: 3.10178473e-01 + sys_corr_112: -3.06187239e-01 + sys_corr_113: -1.10742876e-01 + sys_corr_114: -3.25144792e-03 + sys_corr_115: -2.57979031e-01 sys_corr_116: 6.99810906e-02 - sys_corr_117: 6.36397912e-02 + sys_corr_117: -6.36397912e-02 sys_corr_118: 6.21033043e-02 sys_corr_119: -8.67509821e-03 sys_corr_120: -4.26720107e-02 sys_corr_121: -1.18166355e-03 - sys_corr_122: -4.11881871e-02 - sys_corr_123: -1.71747973e-02 - sys_corr_124: 1.42287517e-01 + sys_corr_122: -1.71747973e-02 + sys_corr_123: 4.11881871e-02 + sys_corr_124: -1.42287517e-01 sys_corr_125: 3.90798115e-02 sys_corr_126: -1.21542745e-02 - sys_corr_127: -2.02108723e-01 - sys_corr_128: -2.57849759e-01 - sys_corr_129: 6.32299291e-03 - sys_corr_130: -2.80574304e-03 - sys_corr_131: 2.92541943e-02 + sys_corr_127: 2.02108723e-01 + sys_corr_128: 2.57849759e-01 + sys_corr_129: -6.32299291e-03 + sys_corr_130: 2.80574304e-03 + sys_corr_131: -2.92541943e-02 sys_corr_132: 2.71542039e-02 stat: 0.0 luminosity: 4.24158086e+02 @@ -6172,17 +6172,17 @@ bins: sys_corr_6: -1.15206197e+01 sys_corr_7: 7.06898226e+01 sys_corr_8: 8.92292304e+01 - sys_corr_9: 1.36668639e+02 - sys_corr_10: 3.58142826e+01 + sys_corr_9: -1.36668639e+02 + sys_corr_10: -3.58142826e+01 sys_corr_11: 1.18514009e+02 - sys_corr_12: 1.37936162e+02 - sys_corr_13: -1.11998662e+02 + sys_corr_12: -1.37936162e+02 + sys_corr_13: 1.11998662e+02 sys_corr_14: 2.35494459e+01 sys_corr_15: 2.89318253e+01 sys_corr_16: -1.33715094e+01 - sys_corr_17: 2.29628473e+01 + sys_corr_17: -2.29628473e+01 sys_corr_18: -1.66044135e+01 - sys_corr_19: -3.02504553e+01 + sys_corr_19: 3.02504553e+01 sys_corr_20: -4.20998852e+01 sys_corr_21: -3.06971327e+01 sys_corr_22: -9.41410034e+01 @@ -6198,103 +6198,103 @@ bins: sys_corr_32: 1.25839725e+01 sys_corr_33: -2.27511250e+00 sys_corr_34: 3.24276721e+01 - sys_corr_35: 1.34870755e+01 - sys_corr_36: 1.14070425e+01 + sys_corr_35: -1.34870755e+01 + sys_corr_36: -1.14070425e+01 sys_corr_37: 3.90329165e+00 sys_corr_38: -2.62937010e+00 - sys_corr_39: 5.93561748e+00 - sys_corr_40: -3.48012366e+00 - sys_corr_41: 1.00988074e+00 + sys_corr_39: -5.93561748e+00 + sys_corr_40: 3.48012366e+00 + sys_corr_41: -1.00988074e+00 sys_corr_42: 2.03772481e+00 sys_corr_43: 3.21199530e+01 sys_corr_44: -5.17616629e+01 sys_corr_45: -2.04374626e+01 - sys_corr_46: -3.04254892e+01 - sys_corr_47: 4.13628840e+01 + sys_corr_46: 3.04254892e+01 + sys_corr_47: -4.13628840e+01 sys_corr_48: -6.57441029e+01 sys_corr_49: 5.22240313e+01 sys_corr_50: -1.26063238e+01 - sys_corr_51: 6.74929743e+01 - sys_corr_52: 4.05096542e+01 - sys_corr_53: 7.84503529e+01 + sys_corr_51: -6.74929743e+01 + sys_corr_52: -4.05096542e+01 + sys_corr_53: -7.84503529e+01 sys_corr_54: 2.52321071e+01 sys_corr_55: -2.07386225e+02 - sys_corr_56: -3.14600184e+01 + sys_corr_56: 3.14600184e+01 sys_corr_57: -1.80142721e+01 - sys_corr_58: -3.89268582e+01 + sys_corr_58: 3.89268582e+01 sys_corr_59: 1.55493733e+01 sys_corr_60: 1.64124518e+01 - sys_corr_61: -1.69816023e+01 - sys_corr_62: -3.74632022e+01 + sys_corr_61: 1.69816023e+01 + sys_corr_62: 3.74632022e+01 sys_corr_63: 1.97449821e+01 sys_corr_64: -5.34706084e-01 - sys_corr_65: -3.36594915e+00 - sys_corr_66: 1.40256471e+01 - sys_corr_67: 1.87388340e+01 + sys_corr_65: 3.36594915e+00 + sys_corr_66: -1.40256471e+01 + sys_corr_67: -1.87388340e+01 sys_corr_68: -2.78639770e+00 sys_corr_69: 6.43463911e-01 sys_corr_70: -1.97412180e+01 - sys_corr_71: 6.14021516e+00 - sys_corr_72: -1.50347465e+00 + sys_corr_71: -6.14021516e+00 + sys_corr_72: 1.50347465e+00 sys_corr_73: 8.22849130e+00 sys_corr_74: -5.32414320e+01 - sys_corr_75: 7.68614736e+00 - sys_corr_76: -4.55102925e+00 + sys_corr_75: -7.68614736e+00 + sys_corr_76: 4.55102925e+00 sys_corr_77: 1.55467823e+00 sys_corr_78: -7.35301217e+00 sys_corr_79: -4.03993304e+00 - sys_corr_80: -1.49139078e+01 + sys_corr_80: 1.49139078e+01 sys_corr_81: -2.99071907e+00 - sys_corr_82: 6.02104852e+00 + sys_corr_82: -6.02104852e+00 sys_corr_83: -1.05973030e+01 sys_corr_84: 2.46441062e+00 sys_corr_85: 8.83104218e+00 - sys_corr_86: 1.07998783e+01 - sys_corr_87: 6.77757359e+00 + sys_corr_86: -1.07998783e+01 + sys_corr_87: -6.77757359e+00 sys_corr_88: -1.85255013e+00 sys_corr_89: 2.73625696e+00 - sys_corr_90: -4.20489691e+00 - sys_corr_91: 1.62245617e-01 - sys_corr_92: -1.62641242e+01 + sys_corr_90: -1.62245617e-01 + sys_corr_91: 4.20489691e+00 + sys_corr_92: 1.62641242e+01 sys_corr_93: 1.56134855e-01 sys_corr_94: 7.86646117e-01 - sys_corr_95: -2.74245567e+00 + sys_corr_95: 2.74245567e+00 sys_corr_96: -7.54033526e-02 - sys_corr_97: -9.48730487e-01 - sys_corr_98: -3.28122494e-01 + sys_corr_97: 9.48730487e-01 + sys_corr_98: 3.28122494e-01 sys_corr_99: 4.61716046e-02 - sys_corr_100: -2.55997999e-02 - sys_corr_101: 2.29607400e-01 - sys_corr_102: 1.27606694e+00 - sys_corr_103: -2.41663385e+00 - sys_corr_104: -1.98410732e-01 - sys_corr_105: -4.38220193e-02 + sys_corr_100: 4.38220193e-02 + sys_corr_101: 2.55997999e-02 + sys_corr_102: -2.29607400e-01 + sys_corr_103: 1.27606694e+00 + sys_corr_104: 2.41663385e+00 + sys_corr_105: 1.98410732e-01 sys_corr_106: 2.78765752e-02 sys_corr_107: -1.99729957e-01 - sys_corr_108: 4.20443538e-01 - sys_corr_109: 1.31400106e-01 - sys_corr_110: -2.27481856e-01 - sys_corr_111: -3.28615044e-02 - sys_corr_112: 1.58561931e-01 - sys_corr_113: 6.41736144e-02 - sys_corr_114: 3.20272233e-03 - sys_corr_115: 2.78290943e-01 + sys_corr_108: 1.31400106e-01 + sys_corr_109: -4.20443538e-01 + sys_corr_110: 3.28615044e-02 + sys_corr_111: 2.27481856e-01 + sys_corr_112: -1.58561931e-01 + sys_corr_113: -6.41736144e-02 + sys_corr_114: -3.20272233e-03 + sys_corr_115: -2.78290943e-01 sys_corr_116: 3.07158276e-02 - sys_corr_117: 3.66431345e-02 + sys_corr_117: -3.66431345e-02 sys_corr_118: 2.76027582e-01 sys_corr_119: -7.60888323e-03 sys_corr_120: -1.62943534e-02 sys_corr_121: 5.52573918e-03 - sys_corr_122: 1.84923257e-02 - sys_corr_123: 1.51050393e-02 - sys_corr_124: 9.53267709e-02 + sys_corr_122: 1.51050393e-02 + sys_corr_123: -1.84923257e-02 + sys_corr_124: -9.53267709e-02 sys_corr_125: -6.95733470e-03 sys_corr_126: 4.61788030e-03 - sys_corr_127: -4.58940468e-01 - sys_corr_128: -3.87660237e-01 - sys_corr_129: -2.03127787e-02 - sys_corr_130: -2.72483169e-03 - sys_corr_131: 5.63878535e-03 + sys_corr_127: 4.58940468e-01 + sys_corr_128: 3.87660237e-01 + sys_corr_129: 2.03127787e-02 + sys_corr_130: 2.72483169e-03 + sys_corr_131: -5.63878535e-03 sys_corr_132: 4.31047720e-02 stat: 0.0 luminosity: 3.64184744e+02 @@ -6306,17 +6306,17 @@ bins: sys_corr_6: -1.70147739e+01 sys_corr_7: 3.33308195e+01 sys_corr_8: 6.51800968e+01 - sys_corr_9: 1.03304492e+02 - sys_corr_10: 2.91475737e+01 + sys_corr_9: -1.03304492e+02 + sys_corr_10: -2.91475737e+01 sys_corr_11: 8.09741706e+01 - sys_corr_12: 7.88771716e+01 - sys_corr_13: -7.34024501e+01 + sys_corr_12: -7.88771716e+01 + sys_corr_13: 7.34024501e+01 sys_corr_14: 1.08623015e+01 sys_corr_15: 2.25787404e+01 sys_corr_16: -1.60688685e+01 - sys_corr_17: 1.89672198e+01 + sys_corr_17: -1.89672198e+01 sys_corr_18: -9.41736724e+00 - sys_corr_19: -2.37476051e+01 + sys_corr_19: 2.37476051e+01 sys_corr_20: -4.13427586e+01 sys_corr_21: -3.52831784e+01 sys_corr_22: -1.07755704e+02 @@ -6332,103 +6332,103 @@ bins: sys_corr_32: 2.19705148e+01 sys_corr_33: 1.60936751e+00 sys_corr_34: 1.03452410e+01 - sys_corr_35: 1.03715418e+01 - sys_corr_36: 3.56919293e+01 + sys_corr_35: -1.03715418e+01 + sys_corr_36: -3.56919293e+01 sys_corr_37: -3.20718322e+01 sys_corr_38: -2.03904861e+01 - sys_corr_39: 5.63023393e+00 - sys_corr_40: -2.87170638e+01 - sys_corr_41: 2.09200444e+01 + sys_corr_39: -5.63023393e+00 + sys_corr_40: 2.87170638e+01 + sys_corr_41: -2.09200444e+01 sys_corr_42: 1.87687005e+01 sys_corr_43: -3.51422432e+01 sys_corr_44: 8.33076463e+00 sys_corr_45: 2.48151553e+01 - sys_corr_46: 2.78545616e+01 - sys_corr_47: -1.42294706e+00 + sys_corr_46: -2.78545616e+01 + sys_corr_47: 1.42294706e+00 sys_corr_48: 6.87322085e+00 sys_corr_49: -1.56095676e+01 sys_corr_50: -2.18182815e+01 - sys_corr_51: -2.90624759e+01 - sys_corr_52: 2.51581999e+01 - sys_corr_53: -2.42647942e+01 + sys_corr_51: 2.90624759e+01 + sys_corr_52: -2.51581999e+01 + sys_corr_53: 2.42647942e+01 sys_corr_54: -2.22681165e+01 sys_corr_55: 5.49524804e+01 - sys_corr_56: -2.70907105e+01 + sys_corr_56: 2.70907105e+01 sys_corr_57: 1.49688003e+01 - sys_corr_58: -2.79154928e+01 + sys_corr_58: 2.79154928e+01 sys_corr_59: -1.08334837e+02 sys_corr_60: 2.77361882e+01 - sys_corr_61: 8.43674620e+01 - sys_corr_62: -1.02344803e+01 + sys_corr_61: -8.43674620e+01 + sys_corr_62: 1.02344803e+01 sys_corr_63: -7.48534484e-01 sys_corr_64: 1.16300337e+02 - sys_corr_65: -5.97142819e+01 - sys_corr_66: -5.13238312e+01 - sys_corr_67: -8.69264293e+01 + sys_corr_65: 5.97142819e+01 + sys_corr_66: 5.13238312e+01 + sys_corr_67: 8.69264293e+01 sys_corr_68: 6.89584844e+00 sys_corr_69: 4.86878201e+00 sys_corr_70: -4.50919572e+01 - sys_corr_71: -3.38422622e+01 - sys_corr_72: -3.33116826e+01 + sys_corr_71: 3.38422622e+01 + sys_corr_72: 3.33116826e+01 sys_corr_73: 2.16850797e+01 sys_corr_74: -2.60078588e+01 - sys_corr_75: 1.06094480e+01 - sys_corr_76: -2.37015583e+01 + sys_corr_75: -1.06094480e+01 + sys_corr_76: 2.37015583e+01 sys_corr_77: -8.13001412e+00 sys_corr_78: -3.52786488e+00 sys_corr_79: -9.37530503e+00 - sys_corr_80: -2.28396456e+01 + sys_corr_80: 2.28396456e+01 sys_corr_81: -1.84844526e+01 - sys_corr_82: 9.52094566e+00 + sys_corr_82: -9.52094566e+00 sys_corr_83: 3.37474596e+00 sys_corr_84: 8.33504684e-01 sys_corr_85: 8.76778558e+00 - sys_corr_86: 5.73251466e+00 - sys_corr_87: 2.51563851e+01 + sys_corr_86: -5.73251466e+00 + sys_corr_87: -2.51563851e+01 sys_corr_88: -9.43853909e+00 sys_corr_89: 9.47844224e-01 - sys_corr_90: -5.52878920e+00 - sys_corr_91: 4.01541582e-01 - sys_corr_92: -1.67287538e+00 + sys_corr_90: -4.01541582e-01 + sys_corr_91: 5.52878920e+00 + sys_corr_92: 1.67287538e+00 sys_corr_93: -7.49966266e-01 sys_corr_94: -3.85978825e+00 - sys_corr_95: -2.12288895e+00 + sys_corr_95: 2.12288895e+00 sys_corr_96: 2.78515734e-01 - sys_corr_97: -1.87335768e+00 - sys_corr_98: -1.73607395e-01 + sys_corr_97: 1.87335768e+00 + sys_corr_98: 1.73607395e-01 sys_corr_99: 2.83821396e-01 - sys_corr_100: -1.92471975e-01 - sys_corr_101: -6.81490459e-01 - sys_corr_102: -2.89040912e-01 - sys_corr_103: -5.18801705e+00 - sys_corr_104: 4.35982959e-01 - sys_corr_105: -4.71714280e-01 + sys_corr_100: 4.71714280e-01 + sys_corr_101: 1.92471975e-01 + sys_corr_102: 6.81490459e-01 + sys_corr_103: -2.89040912e-01 + sys_corr_104: 5.18801705e+00 + sys_corr_105: -4.35982959e-01 sys_corr_106: -2.22964959e-01 sys_corr_107: -4.60423311e-01 - sys_corr_108: 1.41928134e-01 - sys_corr_109: 1.56715897e-01 - sys_corr_110: -6.37388925e-01 - sys_corr_111: -3.98273361e-02 - sys_corr_112: 2.14968265e-01 - sys_corr_113: -3.69082651e-02 - sys_corr_114: 1.85616103e-03 - sys_corr_115: 2.05876326e-01 + sys_corr_108: 1.56715897e-01 + sys_corr_109: -1.41928134e-01 + sys_corr_110: 3.98273361e-02 + sys_corr_111: 6.37388925e-01 + sys_corr_112: -2.14968265e-01 + sys_corr_113: 3.69082651e-02 + sys_corr_114: -1.85616103e-03 + sys_corr_115: -2.05876326e-01 sys_corr_116: 5.95826659e-02 - sys_corr_117: 6.49761336e-02 + sys_corr_117: -6.49761336e-02 sys_corr_118: 1.31807077e-01 sys_corr_119: -8.40517598e-03 sys_corr_120: -3.96320239e-02 sys_corr_121: -3.94776612e-03 - sys_corr_122: -3.87269807e-02 - sys_corr_123: -1.38234754e-02 - sys_corr_124: 1.32952763e-01 + sys_corr_122: -1.38234754e-02 + sys_corr_123: 3.87269807e-02 + sys_corr_124: -1.32952763e-01 sys_corr_125: 3.04475549e-02 sys_corr_126: -6.41744968e-03 - sys_corr_127: -3.60104174e-01 - sys_corr_128: -6.16564737e-01 - sys_corr_129: 1.49351954e-01 - sys_corr_130: -1.63241508e-02 - sys_corr_131: 2.83089058e-02 + sys_corr_127: 3.60104174e-01 + sys_corr_128: 6.16564737e-01 + sys_corr_129: -1.49351954e-01 + sys_corr_130: 1.63241508e-02 + sys_corr_131: -2.83089058e-02 sys_corr_132: 1.22349162e-01 stat: 0.0 luminosity: 3.03011610e+02 @@ -6440,17 +6440,17 @@ bins: sys_corr_6: -2.25265868e+01 sys_corr_7: -1.20600046e+00 sys_corr_8: 4.53898581e+01 - sys_corr_9: 7.95791826e+01 - sys_corr_10: 2.80535546e+01 + sys_corr_9: -7.95791826e+01 + sys_corr_10: -2.80535546e+01 sys_corr_11: 5.30362599e+01 - sys_corr_12: 4.17251804e+01 - sys_corr_13: -5.61357679e+01 + sys_corr_12: -4.17251804e+01 + sys_corr_13: 5.61357679e+01 sys_corr_14: -9.14998994e-02 sys_corr_15: 1.60332020e+01 sys_corr_16: -1.49039753e+01 - sys_corr_17: 1.13767856e+01 + sys_corr_17: -1.13767856e+01 sys_corr_18: -1.14704024e+01 - sys_corr_19: -2.07364474e+01 + sys_corr_19: 2.07364474e+01 sys_corr_20: -4.07052233e+01 sys_corr_21: -2.83021244e+01 sys_corr_22: -1.05717454e+02 @@ -6466,103 +6466,103 @@ bins: sys_corr_32: 2.73530596e+01 sys_corr_33: 3.55397372e+00 sys_corr_34: -7.61844455e+00 - sys_corr_35: 1.51782421e+01 - sys_corr_36: 3.63571585e+01 + sys_corr_35: -1.51782421e+01 + sys_corr_36: -3.63571585e+01 sys_corr_37: -4.69184989e+01 sys_corr_38: -3.18100168e+01 - sys_corr_39: 4.31830685e+00 - sys_corr_40: -4.71950748e+01 - sys_corr_41: 1.10910577e+01 + sys_corr_39: -4.31830685e+00 + sys_corr_40: 4.71950748e+01 + sys_corr_41: -1.10910577e+01 sys_corr_42: 2.77753932e+00 sys_corr_43: -6.82568582e+01 sys_corr_44: -2.85058388e-01 sys_corr_45: 2.73396131e+01 - sys_corr_46: 3.56737261e+01 - sys_corr_47: -1.88927914e+00 + sys_corr_46: -3.56737261e+01 + sys_corr_47: 1.88927914e+00 sys_corr_48: 4.57016345e+01 sys_corr_49: -6.17610757e+00 sys_corr_50: -3.43319850e+01 - sys_corr_51: -6.04316268e+01 - sys_corr_52: 2.25322610e+01 - sys_corr_53: -1.08628251e+00 + sys_corr_51: 6.04316268e+01 + sys_corr_52: -2.25322610e+01 + sys_corr_53: 1.08628251e+00 sys_corr_54: -2.03491803e+01 sys_corr_55: 3.11790458e+01 - sys_corr_56: 2.40907555e+01 + sys_corr_56: -2.40907555e+01 sys_corr_57: 4.08164304e+00 - sys_corr_58: 2.72007217e+01 + sys_corr_58: -2.72007217e+01 sys_corr_59: 3.93013967e+01 sys_corr_60: -3.03136242e+01 - sys_corr_61: -5.37347556e+01 - sys_corr_62: 9.09964210e+00 + sys_corr_61: 5.37347556e+01 + sys_corr_62: -9.09964210e+00 sys_corr_63: -3.16814937e+01 sys_corr_64: -1.43955849e+02 - sys_corr_65: 2.68837069e+01 - sys_corr_66: 7.28760585e+01 - sys_corr_67: -2.63108241e+01 + sys_corr_65: -2.68837069e+01 + sys_corr_66: -7.28760585e+01 + sys_corr_67: 2.63108241e+01 sys_corr_68: 3.57846867e+01 sys_corr_69: -2.05714520e+01 sys_corr_70: -3.96898941e+01 - sys_corr_71: -2.49965083e+01 - sys_corr_72: -8.98841682e+01 + sys_corr_71: 2.49965083e+01 + sys_corr_72: 8.98841682e+01 sys_corr_73: 1.17135998e+01 sys_corr_74: 7.92491588e+00 - sys_corr_75: 6.88019368e+00 - sys_corr_76: -8.07509403e+00 + sys_corr_75: -6.88019368e+00 + sys_corr_76: 8.07509403e+00 sys_corr_77: -6.42477047e+00 sys_corr_78: 1.83212598e+00 sys_corr_79: 1.71004219e+00 - sys_corr_80: -4.22200530e+01 + sys_corr_80: 4.22200530e+01 sys_corr_81: -2.04981555e+01 - sys_corr_82: 1.01716123e+01 + sys_corr_82: -1.01716123e+01 sys_corr_83: 2.45748286e+00 sys_corr_84: 2.54892212e+00 sys_corr_85: 9.16563226e+00 - sys_corr_86: 2.62787064e+00 - sys_corr_87: 1.24067928e+01 + sys_corr_86: -2.62787064e+00 + sys_corr_87: -1.24067928e+01 sys_corr_88: 2.55481158e+01 sys_corr_89: 4.21162553e+00 - sys_corr_90: -5.37433423e+00 - sys_corr_91: 2.97522044e-01 - sys_corr_92: -2.92308828e+00 + sys_corr_90: -2.97522044e-01 + sys_corr_91: 5.37433423e+00 + sys_corr_92: 2.92308828e+00 sys_corr_93: -7.53437142e-01 sys_corr_94: -3.49929026e+00 - sys_corr_95: 4.22277556e-01 + sys_corr_95: -4.22277556e-01 sys_corr_96: 3.47172451e-01 - sys_corr_97: -9.92416951e-01 - sys_corr_98: 3.11363690e-01 + sys_corr_97: 9.92416951e-01 + sys_corr_98: -3.11363690e-01 sys_corr_99: 6.18812650e-01 - sys_corr_100: -5.38433482e-01 - sys_corr_101: -9.79162359e-01 - sys_corr_102: 4.31488326e-02 - sys_corr_103: -5.68999509e+00 - sys_corr_104: -1.44284859e-01 - sys_corr_105: -6.08103918e-01 + sys_corr_100: 6.08103918e-01 + sys_corr_101: 5.38433482e-01 + sys_corr_102: 9.79162359e-01 + sys_corr_103: 4.31488326e-02 + sys_corr_104: 5.68999509e+00 + sys_corr_105: 1.44284859e-01 sys_corr_106: -5.18329027e-01 sys_corr_107: -5.39208348e-01 - sys_corr_108: 1.90925523e-01 - sys_corr_109: 2.48717978e-02 - sys_corr_110: -4.00863528e-01 - sys_corr_111: -1.31057042e-01 - sys_corr_112: 2.94794796e-02 - sys_corr_113: -1.33339845e-01 - sys_corr_114: -2.22036084e-03 - sys_corr_115: 1.73350541e-01 + sys_corr_108: 2.48717978e-02 + sys_corr_109: -1.90925523e-01 + sys_corr_110: 1.31057042e-01 + sys_corr_111: 4.00863528e-01 + sys_corr_112: -2.94794796e-02 + sys_corr_113: 1.33339845e-01 + sys_corr_114: 2.22036084e-03 + sys_corr_115: -1.73350541e-01 sys_corr_116: 4.64972145e-02 - sys_corr_117: 5.53651485e-02 + sys_corr_117: -5.53651485e-02 sys_corr_118: 5.32628051e-02 sys_corr_119: -5.26942442e-03 sys_corr_120: -3.48461993e-02 sys_corr_121: -8.79166719e-03 - sys_corr_122: -6.94129807e-02 - sys_corr_123: -3.82947871e-02 - sys_corr_124: 7.32056037e-02 + sys_corr_122: -3.82947871e-02 + sys_corr_123: 6.94129807e-02 + sys_corr_124: -7.32056037e-02 sys_corr_125: 5.69748361e-02 sys_corr_126: -1.44330090e-02 - sys_corr_127: -3.63140288e-01 - sys_corr_128: -1.02848108e+00 - sys_corr_129: -1.67246966e-01 - sys_corr_130: -3.87147199e-03 - sys_corr_131: 3.66122749e-02 + sys_corr_127: 3.63140288e-01 + sys_corr_128: 1.02848108e+00 + sys_corr_129: 1.67246966e-01 + sys_corr_130: 3.87147199e-03 + sys_corr_131: -3.66122749e-02 sys_corr_132: 6.33208405e-02 stat: 0.0 luminosity: 2.42285516e+02 @@ -6574,17 +6574,17 @@ bins: sys_corr_6: -1.93974238e+01 sys_corr_7: -2.97678311e+01 sys_corr_8: 2.06152385e+01 - sys_corr_9: 3.99734420e+01 - sys_corr_10: 2.07273058e+01 + sys_corr_9: -3.99734420e+01 + sys_corr_10: -2.07273058e+01 sys_corr_11: 2.22128926e+01 - sys_corr_12: 8.79386213e-01 - sys_corr_13: -3.01592607e+01 + sys_corr_12: -8.79386213e-01 + sys_corr_13: 3.01592607e+01 sys_corr_14: -4.63117872e+00 sys_corr_15: 8.06733049e+00 sys_corr_16: -1.58724685e+01 - sys_corr_17: 8.63564148e+00 + sys_corr_17: -8.63564148e+00 sys_corr_18: -5.85387622e+00 - sys_corr_19: -1.39466023e+01 + sys_corr_19: 1.39466023e+01 sys_corr_20: -3.35569694e+01 sys_corr_21: -2.08889944e+01 sys_corr_22: -8.69478965e+01 @@ -6600,103 +6600,103 @@ bins: sys_corr_32: 2.69698546e+01 sys_corr_33: -2.48930550e+00 sys_corr_34: -1.48533555e+01 - sys_corr_35: 1.15780526e+01 - sys_corr_36: 2.78387127e+01 + sys_corr_35: -1.15780526e+01 + sys_corr_36: -2.78387127e+01 sys_corr_37: -3.68233225e+01 sys_corr_38: -2.56576071e+01 - sys_corr_39: -1.22270561e+00 - sys_corr_40: -4.09581224e+01 - sys_corr_41: -2.86622136e+00 + sys_corr_39: 1.22270561e+00 + sys_corr_40: 4.09581224e+01 + sys_corr_41: 2.86622136e+00 sys_corr_42: -5.15697676e+00 sys_corr_43: -5.71775619e+01 sys_corr_44: 1.83247225e+01 sys_corr_45: 1.79123876e+01 - sys_corr_46: 2.49519093e+01 - sys_corr_47: 4.95874960e+00 + sys_corr_46: -2.49519093e+01 + sys_corr_47: -4.95874960e+00 sys_corr_48: 5.14012942e+01 sys_corr_49: -2.55513997e+01 sys_corr_50: -5.25112198e+01 - sys_corr_51: -7.29368479e+01 - sys_corr_52: 4.69347594e+01 - sys_corr_53: 8.01831816e+00 + sys_corr_51: 7.29368479e+01 + sys_corr_52: -4.69347594e+01 + sys_corr_53: -8.01831816e+00 sys_corr_54: -2.90288080e+01 sys_corr_55: -1.07936670e+00 - sys_corr_56: 2.15152114e+01 + sys_corr_56: -2.15152114e+01 sys_corr_57: 2.47572864e+01 - sys_corr_58: -1.30347174e+00 + sys_corr_58: 1.30347174e+00 sys_corr_59: -2.36854682e+01 sys_corr_60: -1.58272505e+01 - sys_corr_61: -3.40432389e+01 - sys_corr_62: -2.45017928e+01 + sys_corr_61: 3.40432389e+01 + sys_corr_62: 2.45017928e+01 sys_corr_63: -1.17431232e+01 sys_corr_64: 3.69811299e+01 - sys_corr_65: 2.79894657e+01 - sys_corr_66: -5.80761818e+01 - sys_corr_67: 1.07654266e+02 + sys_corr_65: -2.79894657e+01 + sys_corr_66: 5.80761818e+01 + sys_corr_67: -1.07654266e+02 sys_corr_68: -1.95810623e+01 sys_corr_69: 1.97490986e+01 sys_corr_70: 7.38632852e+01 - sys_corr_71: 5.43272607e+01 - sys_corr_72: 9.51814313e+01 + sys_corr_71: -5.43272607e+01 + sys_corr_72: -9.51814313e+01 sys_corr_73: -4.18255319e+01 sys_corr_74: 3.80205684e+01 - sys_corr_75: -3.57069591e+00 - sys_corr_76: 4.17213224e+01 + sys_corr_75: 3.57069591e+00 + sys_corr_76: -4.17213224e+01 sys_corr_77: 2.12628865e+00 sys_corr_78: 3.38669306e+00 sys_corr_79: 5.76994978e+00 - sys_corr_80: -4.13361554e+01 + sys_corr_80: 4.13361554e+01 sys_corr_81: -7.59606802e+00 - sys_corr_82: -2.02575462e+00 + sys_corr_82: 2.02575462e+00 sys_corr_83: -5.63447773e+00 sys_corr_84: 2.29691873e+00 sys_corr_85: -9.02618030e-01 - sys_corr_86: 2.46783269e+01 - sys_corr_87: -1.80293071e+01 + sys_corr_86: -2.46783269e+01 + sys_corr_87: 1.80293071e+01 sys_corr_88: 2.12705525e+01 sys_corr_89: 5.99799387e+00 - sys_corr_90: 3.57291200e+00 - sys_corr_91: -1.84837701e+00 - sys_corr_92: -2.49597108e+01 + sys_corr_90: 1.84837701e+00 + sys_corr_91: -3.57291200e+00 + sys_corr_92: 2.49597108e+01 sys_corr_93: -5.35100007e-01 sys_corr_94: -1.06362381e+00 - sys_corr_95: 1.39901246e+00 + sys_corr_95: -1.39901246e+00 sys_corr_96: 2.51653003e-01 - sys_corr_97: 7.42620545e-01 - sys_corr_98: 8.04759475e-01 + sys_corr_97: -7.42620545e-01 + sys_corr_98: -8.04759475e-01 sys_corr_99: 1.03030653e+00 - sys_corr_100: -5.76770965e-01 - sys_corr_101: -9.75081235e-01 - sys_corr_102: -1.97027655e-01 - sys_corr_103: -6.53375966e+00 - sys_corr_104: -2.89571477e-01 - sys_corr_105: -8.45346965e-01 + sys_corr_100: 8.45346965e-01 + sys_corr_101: 5.76770965e-01 + sys_corr_102: 9.75081235e-01 + sys_corr_103: -1.97027655e-01 + sys_corr_104: 6.53375966e+00 + sys_corr_105: 2.89571477e-01 sys_corr_106: -6.30266093e-01 sys_corr_107: -7.94257087e-01 - sys_corr_108: -2.05144145e-01 - sys_corr_109: -8.18409566e-02 - sys_corr_110: -7.22922028e-02 - sys_corr_111: -4.44215299e-01 - sys_corr_112: -1.77249978e-01 - sys_corr_113: -1.60770940e-01 - sys_corr_114: -5.43809134e-03 - sys_corr_115: -5.46046529e-02 + sys_corr_108: -8.18409566e-02 + sys_corr_109: 2.05144145e-01 + sys_corr_110: 4.44215299e-01 + sys_corr_111: 7.22922028e-02 + sys_corr_112: 1.77249978e-01 + sys_corr_113: 1.60770940e-01 + sys_corr_114: 5.43809134e-03 + sys_corr_115: 5.46046529e-02 sys_corr_116: 1.32301316e-02 - sys_corr_117: 1.86136208e-02 + sys_corr_117: -1.86136208e-02 sys_corr_118: -9.66241931e-02 sys_corr_119: 1.44286848e-02 sys_corr_120: -1.58960329e-02 sys_corr_121: -3.52292363e-03 - sys_corr_122: -5.31717170e-02 - sys_corr_123: -3.39486033e-02 - sys_corr_124: -3.42271651e-02 + sys_corr_122: -3.39486033e-02 + sys_corr_123: 5.31717170e-02 + sys_corr_124: 3.42271651e-02 sys_corr_125: 5.67213736e-02 sys_corr_126: -1.64477075e-02 - sys_corr_127: -1.05865610e-01 - sys_corr_128: -9.37323313e-01 - sys_corr_129: -2.77855964e-01 - sys_corr_130: 1.36799096e-02 - sys_corr_131: 3.29374884e-02 + sys_corr_127: 1.05865610e-01 + sys_corr_128: 9.37323313e-01 + sys_corr_129: 2.77855964e-01 + sys_corr_130: -1.36799096e-02 + sys_corr_131: -3.29374884e-02 sys_corr_132: -1.15397136e-01 stat: 0.0 luminosity: 1.73603364e+02 @@ -6708,17 +6708,17 @@ bins: sys_corr_6: -1.39418926e+01 sys_corr_7: -3.13055520e+01 sys_corr_8: 1.16080160e+01 - sys_corr_9: 2.52499115e+01 - sys_corr_10: 1.60900653e+01 + sys_corr_9: -2.52499115e+01 + sys_corr_10: -1.60900653e+01 sys_corr_11: 1.52930823e+01 - sys_corr_12: -5.30496215e+00 - sys_corr_13: -1.75498039e+01 + sys_corr_12: 5.30496215e+00 + sys_corr_13: 1.75498039e+01 sys_corr_14: -8.98431722e+00 sys_corr_15: 8.09954611e+00 sys_corr_16: -1.27855603e+01 - sys_corr_17: 3.73738980e+00 + sys_corr_17: -3.73738980e+00 sys_corr_18: -5.66303686e+00 - sys_corr_19: -8.93250396e+00 + sys_corr_19: 8.93250396e+00 sys_corr_20: -2.58342390e+01 sys_corr_21: -1.59231661e+01 sys_corr_22: -6.63495373e+01 @@ -6734,103 +6734,103 @@ bins: sys_corr_32: 1.62860159e+01 sys_corr_33: -2.03518472e+00 sys_corr_34: -7.30970166e+00 - sys_corr_35: 9.43893364e+00 - sys_corr_36: 1.57422625e+01 + sys_corr_35: -9.43893364e+00 + sys_corr_36: -1.57422625e+01 sys_corr_37: -1.95349345e+01 sys_corr_38: -1.47291760e+01 - sys_corr_39: 1.07846615e+00 - sys_corr_40: -2.19314478e+01 - sys_corr_41: -5.38467352e+00 + sys_corr_39: -1.07846615e+00 + sys_corr_40: 2.19314478e+01 + sys_corr_41: 5.38467352e+00 sys_corr_42: -2.92703800e+00 sys_corr_43: -2.85892268e+01 sys_corr_44: 1.06532250e+01 sys_corr_45: 1.17194278e+01 - sys_corr_46: 1.05952463e+01 - sys_corr_47: 2.65112263e+00 + sys_corr_46: -1.05952463e+01 + sys_corr_47: -2.65112263e+00 sys_corr_48: 2.65934805e+01 sys_corr_49: -1.27386691e+01 sys_corr_50: -2.02860212e+01 - sys_corr_51: -2.88821397e+01 - sys_corr_52: 1.44344484e+01 - sys_corr_53: 3.30603474e-01 + sys_corr_51: 2.88821397e+01 + sys_corr_52: -1.44344484e+01 + sys_corr_53: -3.30603474e-01 sys_corr_54: -1.27300361e+01 sys_corr_55: -8.57968392e+00 - sys_corr_56: 9.56506034e+00 + sys_corr_56: -9.56506034e+00 sys_corr_57: 3.39022642e+00 - sys_corr_58: 3.11079525e+00 + sys_corr_58: -3.11079525e+00 sys_corr_59: 5.99480562e+00 sys_corr_60: -8.29037011e+00 - sys_corr_61: -1.50657182e+01 - sys_corr_62: -2.85252337e+00 + sys_corr_61: 1.50657182e+01 + sys_corr_62: 2.85252337e+00 sys_corr_63: -9.12867250e+00 sys_corr_64: -4.03807513e+00 - sys_corr_65: 1.07706428e+01 - sys_corr_66: -1.43650279e+01 - sys_corr_67: 1.47495310e+01 + sys_corr_65: -1.07706428e+01 + sys_corr_66: 1.43650279e+01 + sys_corr_67: -1.47495310e+01 sys_corr_68: -6.28606309e+00 sys_corr_69: -5.92411566e+00 sys_corr_70: -6.31605732e-01 - sys_corr_71: 1.84308094e+01 - sys_corr_72: -5.90565613e+00 + sys_corr_71: -1.84308094e+01 + sys_corr_72: 5.90565613e+00 sys_corr_73: 1.87986178e+01 sys_corr_74: -9.30543431e+00 - sys_corr_75: -2.64787706e+01 - sys_corr_76: -2.20178449e+01 + sys_corr_75: 2.64787706e+01 + sys_corr_76: 2.20178449e+01 sys_corr_77: 2.68818271e+01 sys_corr_78: -4.86897226e+01 sys_corr_79: -8.15895230e-01 - sys_corr_80: 1.83708459e+02 + sys_corr_80: -1.83708459e+02 sys_corr_81: 1.97004203e+01 - sys_corr_82: -3.13850689e+00 + sys_corr_82: 3.13850689e+00 sys_corr_83: -7.10005799e+00 sys_corr_84: 6.45341046e+00 sys_corr_85: 1.01836298e+01 - sys_corr_86: -4.16253678e+01 - sys_corr_87: 2.65400607e+00 + sys_corr_86: 4.16253678e+01 + sys_corr_87: -2.65400607e+00 sys_corr_88: -3.80373061e+01 sys_corr_89: -3.37707187e+00 - sys_corr_90: -7.85599135e-01 - sys_corr_91: -4.46384925e-01 - sys_corr_92: 3.79070031e+01 + sys_corr_90: 4.46384925e-01 + sys_corr_91: 7.85599135e-01 + sys_corr_92: -3.79070031e+01 sys_corr_93: -9.43723818e-01 sys_corr_94: -4.91323243e+00 - sys_corr_95: -4.70345191e+00 + sys_corr_95: 4.70345191e+00 sys_corr_96: 2.71070907e-01 - sys_corr_97: 1.92150515e+00 - sys_corr_98: 1.86301484e+00 + sys_corr_97: -1.92150515e+00 + sys_corr_98: -1.86301484e+00 sys_corr_99: 2.18287771e+00 - sys_corr_100: -1.16437785e+00 - sys_corr_101: -1.78519112e+00 - sys_corr_102: -7.20294069e-01 - sys_corr_103: -1.41914046e+01 - sys_corr_104: -3.04100945e-02 - sys_corr_105: -1.34864033e+00 + sys_corr_100: 1.34864033e+00 + sys_corr_101: 1.16437785e+00 + sys_corr_102: 1.78519112e+00 + sys_corr_103: -7.20294069e-01 + sys_corr_104: 1.41914046e+01 + sys_corr_105: 3.04100945e-02 sys_corr_106: -9.85374567e-01 sys_corr_107: -1.10579873e+00 - sys_corr_108: -2.93502275e-01 - sys_corr_109: -2.06781624e-01 - sys_corr_110: 3.04994045e-01 - sys_corr_111: -6.00962890e-01 - sys_corr_112: -2.29887452e-01 - sys_corr_113: -6.53092637e-02 - sys_corr_114: -4.61482422e-03 - sys_corr_115: -9.64266670e-02 + sys_corr_108: -2.06781624e-01 + sys_corr_109: 2.93502275e-01 + sys_corr_110: 6.00962890e-01 + sys_corr_111: -3.04994045e-01 + sys_corr_112: 2.29887452e-01 + sys_corr_113: 6.53092637e-02 + sys_corr_114: 4.61482422e-03 + sys_corr_115: 9.64266670e-02 sys_corr_116: 2.40117423e-02 - sys_corr_117: 3.21918576e-02 + sys_corr_117: -3.21918576e-02 sys_corr_118: -2.65040344e-01 sys_corr_119: 1.35706905e-02 sys_corr_120: -3.06743562e-02 sys_corr_121: -6.51430614e-03 - sys_corr_122: -1.21071262e-01 - sys_corr_123: -5.88743165e-02 - sys_corr_124: -3.10219282e-02 + sys_corr_122: -5.88743165e-02 + sys_corr_123: 1.21071262e-01 + sys_corr_124: 3.10219282e-02 sys_corr_125: 7.94374843e-02 sys_corr_126: -2.13033067e-02 - sys_corr_127: 3.01403289e-01 - sys_corr_128: -1.69786256e+00 - sys_corr_129: -3.81790670e-01 - sys_corr_130: 1.25022920e-02 - sys_corr_131: 5.68939074e-02 + sys_corr_127: -3.01403289e-01 + sys_corr_128: 1.69786256e+00 + sys_corr_129: 3.81790670e-01 + sys_corr_130: -1.25022920e-02 + sys_corr_131: -5.68939074e-02 sys_corr_132: -1.01719856e-01 stat: 0.0 luminosity: 1.02834600e+02 @@ -6842,17 +6842,17 @@ bins: sys_corr_6: -7.28315671e+00 sys_corr_7: -1.22564969e+01 sys_corr_8: 4.27352093e+00 - sys_corr_9: 7.87617510e+00 - sys_corr_10: 6.67370516e+00 + sys_corr_9: -7.87617510e+00 + sys_corr_10: -6.67370516e+00 sys_corr_11: 4.09411776e+00 - sys_corr_12: -4.82078857e+00 - sys_corr_13: -4.48909706e+00 + sys_corr_12: 4.82078857e+00 + sys_corr_13: 4.48909706e+00 sys_corr_14: -4.04611254e+00 sys_corr_15: 1.37564278e+00 sys_corr_16: -3.88904283e+00 - sys_corr_17: 1.20139744e+00 + sys_corr_17: -1.20139744e+00 sys_corr_18: -3.13824566e-01 - sys_corr_19: -2.92363650e+00 + sys_corr_19: 2.92363650e+00 sys_corr_20: -1.09782287e+01 sys_corr_21: -6.58683429e+00 sys_corr_22: -2.45016899e+01 @@ -6868,103 +6868,103 @@ bins: sys_corr_32: 6.09207222e+00 sys_corr_33: -7.64977160e-01 sys_corr_34: -2.92164703e+00 - sys_corr_35: 2.36997294e+00 - sys_corr_36: 4.63181697e+00 + sys_corr_35: -2.36997294e+00 + sys_corr_36: -4.63181697e+00 sys_corr_37: -6.45932653e+00 sys_corr_38: -4.99789391e+00 - sys_corr_39: -4.53137290e-01 - sys_corr_40: -6.03308716e+00 - sys_corr_41: -1.99801756e+00 + sys_corr_39: 4.53137290e-01 + sys_corr_40: 6.03308716e+00 + sys_corr_41: 1.99801756e+00 sys_corr_42: -1.47144752e+00 sys_corr_43: -8.57886948e+00 sys_corr_44: 3.39148192e+00 sys_corr_45: 3.06841799e+00 - sys_corr_46: 3.92013527e+00 - sys_corr_47: 4.43471072e-01 + sys_corr_46: -3.92013527e+00 + sys_corr_47: -4.43471072e-01 sys_corr_48: 8.63115655e+00 sys_corr_49: -3.19391079e+00 sys_corr_50: -5.33191499e+00 - sys_corr_51: -8.10525357e+00 - sys_corr_52: 4.35105941e+00 - sys_corr_53: 3.95619848e-01 + sys_corr_51: 8.10525357e+00 + sys_corr_52: -4.35105941e+00 + sys_corr_53: -3.95619848e-01 sys_corr_54: -3.46410994e+00 sys_corr_55: -3.82048550e+00 - sys_corr_56: 2.18128900e+00 + sys_corr_56: -2.18128900e+00 sys_corr_57: 1.96523392e+00 - sys_corr_58: 1.21325644e+00 + sys_corr_58: -1.21325644e+00 sys_corr_59: -5.33429393e-01 sys_corr_60: -1.92353775e+00 - sys_corr_61: -1.92923753e+00 - sys_corr_62: 1.05630790e+00 + sys_corr_61: 1.92923753e+00 + sys_corr_62: -1.05630790e+00 sys_corr_63: -2.01323531e+00 sys_corr_64: 2.19907615e+00 - sys_corr_65: 1.38362346e+00 - sys_corr_66: -3.47654698e+00 - sys_corr_67: 1.46629545e+00 + sys_corr_65: -1.38362346e+00 + sys_corr_66: 3.47654698e+00 + sys_corr_67: -1.46629545e+00 sys_corr_68: -8.62521346e-01 sys_corr_69: -6.06699220e-01 sys_corr_70: 1.26153103e+00 - sys_corr_71: -3.95035285e-01 - sys_corr_72: -3.11372431e+00 + sys_corr_71: 3.95035285e-01 + sys_corr_72: 3.11372431e+00 sys_corr_73: 1.66264536e+00 sys_corr_74: 1.17050866e-01 - sys_corr_75: -2.36731239e+00 - sys_corr_76: -2.54820612e+00 + sys_corr_75: 2.36731239e+00 + sys_corr_76: 2.54820612e+00 sys_corr_77: 1.62612612e+00 sys_corr_78: -8.56035895e-01 sys_corr_79: -4.26935858e-01 - sys_corr_80: 1.29006035e+01 + sys_corr_80: -1.29006035e+01 sys_corr_81: 1.30419082e+00 - sys_corr_82: -6.44052338e-01 + sys_corr_82: 6.44052338e-01 sys_corr_83: -6.29670870e-01 sys_corr_84: -1.66582963e+00 sys_corr_85: -8.88138087e-01 - sys_corr_86: -5.45517942e+00 - sys_corr_87: -4.39565848e-01 + sys_corr_86: 5.45517942e+00 + sys_corr_87: 4.39565848e-01 sys_corr_88: -4.44755711e+00 sys_corr_89: -3.91780523e+00 - sys_corr_90: -5.12351669e-01 - sys_corr_91: -1.16814857e+00 - sys_corr_92: 4.52011298e+00 + sys_corr_90: 1.16814857e+00 + sys_corr_91: 5.12351669e-01 + sys_corr_92: -4.52011298e+00 sys_corr_93: 2.13139755e+00 sys_corr_94: 1.12048173e+01 - sys_corr_95: -2.24558552e+00 + sys_corr_95: 2.24558552e+00 sys_corr_96: -1.61695171e+00 - sys_corr_97: -9.42968184e-01 - sys_corr_98: -7.00720440e+00 + sys_corr_97: 9.42968184e-01 + sys_corr_98: 7.00720440e+00 sys_corr_99: -7.87283851e+00 - sys_corr_100: -1.99175397e+00 - sys_corr_101: -4.06212294e+00 - sys_corr_102: 1.54240242e+01 - sys_corr_103: 1.31212934e+02 - sys_corr_104: -2.11600001e+01 - sys_corr_105: -2.60233445e+00 + sys_corr_100: 2.60233445e+00 + sys_corr_101: 1.99175397e+00 + sys_corr_102: 4.06212294e+00 + sys_corr_103: 1.54240242e+01 + sys_corr_104: -1.31212934e+02 + sys_corr_105: 2.11600001e+01 sys_corr_106: -1.69631050e+00 sys_corr_107: -2.02772096e+00 - sys_corr_108: 1.71518253e-01 - sys_corr_109: -2.75490866e-01 - sys_corr_110: 3.32790993e+00 - sys_corr_111: 3.97222960e-01 - sys_corr_112: -9.31790343e-02 - sys_corr_113: -3.06291421e-01 - sys_corr_114: -6.88806777e-03 - sys_corr_115: -1.08421496e-01 + sys_corr_108: -2.75490866e-01 + sys_corr_109: -1.71518253e-01 + sys_corr_110: -3.97222960e-01 + sys_corr_111: -3.32790993e+00 + sys_corr_112: 9.31790343e-02 + sys_corr_113: 3.06291421e-01 + sys_corr_114: 6.88806777e-03 + sys_corr_115: 1.08421496e-01 sys_corr_116: 9.91835877e-03 - sys_corr_117: 2.25477423e-02 + sys_corr_117: -2.25477423e-02 sys_corr_118: -2.60901970e-01 sys_corr_119: 1.36778052e-02 sys_corr_120: -3.95249625e-02 sys_corr_121: -1.79867960e-02 - sys_corr_122: -1.51979733e-01 - sys_corr_123: -8.85748013e-02 - sys_corr_124: -4.16179109e-02 + sys_corr_122: -8.85748013e-02 + sys_corr_123: 1.51979733e-01 + sys_corr_124: 4.16179109e-02 sys_corr_125: 1.11061097e-01 sys_corr_126: -3.66919849e-02 - sys_corr_127: -4.11757161e+00 - sys_corr_128: 8.87191820e-01 - sys_corr_129: -5.22994031e-02 - sys_corr_130: 1.93714525e-03 - sys_corr_131: 6.10208563e-02 + sys_corr_127: 4.11757161e+00 + sys_corr_128: -8.87191820e-01 + sys_corr_129: 5.22994031e-02 + sys_corr_130: -1.93714525e-03 + sys_corr_131: -6.10208563e-02 sys_corr_132: -5.18811173e-02 stat: 0.0 luminosity: 3.57974100e+01 @@ -6976,17 +6976,17 @@ bins: sys_corr_6: -8.57896948e+01 sys_corr_7: 1.27669805e+01 sys_corr_8: 4.61543762e+00 - sys_corr_9: -7.81321256e+00 - sys_corr_10: 1.00322123e+01 + sys_corr_9: 7.81321256e+00 + sys_corr_10: -1.00322123e+01 sys_corr_11: 2.73875635e+01 - sys_corr_12: 4.53160340e+01 - sys_corr_13: -3.17987741e+01 + sys_corr_12: -4.53160340e+01 + sys_corr_13: 3.17987741e+01 sys_corr_14: 4.95774252e+00 sys_corr_15: 1.97870171e+01 sys_corr_16: -6.35260051e+00 - sys_corr_17: -1.20571986e+01 + sys_corr_17: 1.20571986e+01 sys_corr_18: -4.16273542e+00 - sys_corr_19: 6.40327353e+00 + sys_corr_19: -6.40327353e+00 sys_corr_20: 4.24024349e+00 sys_corr_21: 1.03260462e+01 sys_corr_22: 5.32344335e+01 @@ -7002,103 +7002,103 @@ bins: sys_corr_32: -1.02964714e+01 sys_corr_33: -9.89381531e+00 sys_corr_34: -2.32955644e+01 - sys_corr_35: 2.71789056e+00 - sys_corr_36: 2.68217376e+01 + sys_corr_35: -2.71789056e+00 + sys_corr_36: -2.68217376e+01 sys_corr_37: -6.44827701e-01 sys_corr_38: 2.13363109e+00 - sys_corr_39: 1.85420734e+01 - sys_corr_40: 5.01012734e+00 - sys_corr_41: -9.81530614e+00 + sys_corr_39: -1.85420734e+01 + sys_corr_40: -5.01012734e+00 + sys_corr_41: 9.81530614e+00 sys_corr_42: -2.53741080e+01 sys_corr_43: 3.60891448e+00 sys_corr_44: 6.09329893e+01 sys_corr_45: -7.76931089e+00 - sys_corr_46: 9.74323592e+00 - sys_corr_47: 3.20100150e+01 + sys_corr_46: -9.74323592e+00 + sys_corr_47: -3.20100150e+01 sys_corr_48: -2.84242280e+01 sys_corr_49: 4.96523224e+01 sys_corr_50: -2.61000923e+01 - sys_corr_51: 7.89175613e+00 - sys_corr_52: 2.64226006e-01 - sys_corr_53: -1.84132741e+00 + sys_corr_51: -7.89175613e+00 + sys_corr_52: -2.64226006e-01 + sys_corr_53: 1.84132741e+00 sys_corr_54: 2.14984195e+01 sys_corr_55: 2.60572812e+00 - sys_corr_56: 4.58374037e+00 + sys_corr_56: -4.58374037e+00 sys_corr_57: 8.82522427e+00 - sys_corr_58: 1.88492563e+00 + sys_corr_58: -1.88492563e+00 sys_corr_59: -8.99008301e+00 sys_corr_60: 2.39765653e+01 - sys_corr_61: -3.54662726e+00 - sys_corr_62: -1.34777317e+00 + sys_corr_61: 3.54662726e+00 + sys_corr_62: 1.34777317e+00 sys_corr_63: -2.40729749e+00 sys_corr_64: -5.42555526e+00 - sys_corr_65: -5.62153433e+00 - sys_corr_66: -3.97007500e+00 - sys_corr_67: 2.83270643e+00 + sys_corr_65: 5.62153433e+00 + sys_corr_66: 3.97007500e+00 + sys_corr_67: -2.83270643e+00 sys_corr_68: 1.40939957e+01 sys_corr_69: 5.51585124e+01 sys_corr_70: 1.53234389e+01 - sys_corr_71: 2.70277867e+01 - sys_corr_72: -2.59587186e+01 + sys_corr_71: -2.70277867e+01 + sys_corr_72: 2.59587186e+01 sys_corr_73: 5.88160763e+01 sys_corr_74: 2.62919993e+01 - sys_corr_75: 5.72144614e+01 - sys_corr_76: 9.93751613e+00 + sys_corr_75: -5.72144614e+01 + sys_corr_76: -9.93751613e+00 sys_corr_77: 7.43463955e+00 sys_corr_78: -7.76762589e-01 sys_corr_79: 1.67431870e+01 - sys_corr_80: -2.75287764e-01 + sys_corr_80: 2.75287764e-01 sys_corr_81: -1.52515759e+01 - sys_corr_82: -1.75276623e+02 + sys_corr_82: 1.75276623e+02 sys_corr_83: -3.82986407e+01 sys_corr_84: -2.78290701e+00 sys_corr_85: -1.95702585e+00 - sys_corr_86: 1.18891174e+01 - sys_corr_87: 5.48384147e+01 + sys_corr_86: -1.18891174e+01 + sys_corr_87: -5.48384147e+01 sys_corr_88: 1.03723469e+01 sys_corr_89: -1.00097087e+00 - sys_corr_90: 5.41129092e+00 - sys_corr_91: 7.00310245e+00 - sys_corr_92: 1.61701534e+01 + sys_corr_90: -7.00310245e+00 + sys_corr_91: -5.41129092e+00 + sys_corr_92: -1.61701534e+01 sys_corr_93: 1.59009955e-01 sys_corr_94: 2.56824880e+00 - sys_corr_95: 3.59325857e-01 + sys_corr_95: -3.59325857e-01 sys_corr_96: 2.28873118e-01 - sys_corr_97: -4.34532329e+00 - sys_corr_98: -2.34664833e+00 + sys_corr_97: 4.34532329e+00 + sys_corr_98: 2.34664833e+00 sys_corr_99: -1.76007095e+00 - sys_corr_100: 8.77250902e-01 - sys_corr_101: 2.02503785e+00 - sys_corr_102: -1.45880726e+00 - sys_corr_103: 2.54384094e-01 - sys_corr_104: 3.35538677e+00 - sys_corr_105: 1.18821145e+00 + sys_corr_100: -1.18821145e+00 + sys_corr_101: -8.77250902e-01 + sys_corr_102: -2.02503785e+00 + sys_corr_103: -1.45880726e+00 + sys_corr_104: -2.54384094e-01 + sys_corr_105: -3.35538677e+00 sys_corr_106: 2.59957758e-01 sys_corr_107: 7.60119581e-01 - sys_corr_108: -6.54133655e-01 - sys_corr_109: -1.61336150e-01 - sys_corr_110: -1.93849430e-01 - sys_corr_111: -4.65041074e-01 - sys_corr_112: -7.03326275e-02 - sys_corr_113: -2.07468633e-01 - sys_corr_114: 2.17954067e-03 - sys_corr_115: 1.47426885e-01 + sys_corr_108: -1.61336150e-01 + sys_corr_109: 6.54133655e-01 + sys_corr_110: 4.65041074e-01 + sys_corr_111: 1.93849430e-01 + sys_corr_112: 7.03326275e-02 + sys_corr_113: 2.07468633e-01 + sys_corr_114: -2.17954067e-03 + sys_corr_115: -1.47426885e-01 sys_corr_116: 1.19938049e-03 - sys_corr_117: -1.72840331e-02 + sys_corr_117: 1.72840331e-02 sys_corr_118: 7.49837596e-02 sys_corr_119: -6.16287204e-03 sys_corr_120: 2.94271462e-02 sys_corr_121: 1.15013711e-02 - sys_corr_122: 2.37224135e-02 - sys_corr_123: 1.96264508e-02 - sys_corr_124: 3.59739244e-02 + sys_corr_122: 1.96264508e-02 + sys_corr_123: -2.37224135e-02 + sys_corr_124: -3.59739244e-02 sys_corr_125: -5.65329170e-02 sys_corr_126: 9.45335091e-03 - sys_corr_127: 4.18603232e-01 - sys_corr_128: 1.84684361e-01 - sys_corr_129: -3.64889273e-02 - sys_corr_130: -1.36532813e-02 - sys_corr_131: -3.27627931e-02 + sys_corr_127: -4.18603232e-01 + sys_corr_128: -1.84684361e-01 + sys_corr_129: 3.64889273e-02 + sys_corr_130: 1.36532813e-02 + sys_corr_131: 3.27627931e-02 sys_corr_132: -1.88237455e-02 stat: 0.0 luminosity: 2.46767202e+02 @@ -7110,17 +7110,17 @@ bins: sys_corr_6: -9.17778348e+01 sys_corr_7: 1.26525783e+01 sys_corr_8: -1.15063392e-01 - sys_corr_9: -3.89947269e+00 - sys_corr_10: 8.80806556e+00 + sys_corr_9: 3.89947269e+00 + sys_corr_10: -8.80806556e+00 sys_corr_11: 2.30551032e+01 - sys_corr_12: 4.43333529e+01 - sys_corr_13: -2.37666920e+01 + sys_corr_12: -4.43333529e+01 + sys_corr_13: 2.37666920e+01 sys_corr_14: 1.52987668e+00 sys_corr_15: 8.37646836e+00 sys_corr_16: -1.46552422e+01 - sys_corr_17: -6.70170744e+00 + sys_corr_17: 6.70170744e+00 sys_corr_18: -1.13626826e+00 - sys_corr_19: 4.65242491e+00 + sys_corr_19: -4.65242491e+00 sys_corr_20: 5.81215300e+00 sys_corr_21: 8.22519725e+00 sys_corr_22: 4.04077837e+01 @@ -7136,103 +7136,103 @@ bins: sys_corr_32: -1.62271235e+00 sys_corr_33: -9.49155875e+00 sys_corr_34: -4.00124865e+01 - sys_corr_35: 5.40326544e+00 - sys_corr_36: -5.10994236e+00 + sys_corr_35: -5.40326544e+00 + sys_corr_36: 5.10994236e+00 sys_corr_37: 8.24774392e+00 sys_corr_38: -8.95860078e+00 - sys_corr_39: 1.10047555e+00 - sys_corr_40: 5.10753961e-03 - sys_corr_41: -5.76854320e+00 + sys_corr_39: -1.10047555e+00 + sys_corr_40: -5.10753961e-03 + sys_corr_41: 5.76854320e+00 sys_corr_42: -2.35190936e+01 sys_corr_43: -4.63051627e+00 sys_corr_44: 7.27872996e+01 sys_corr_45: -5.40993463e+00 - sys_corr_46: 1.07842136e+01 - sys_corr_47: 3.97853652e+01 + sys_corr_46: -1.07842136e+01 + sys_corr_47: -3.97853652e+01 sys_corr_48: -2.70729006e+01 sys_corr_49: 4.38566377e+01 sys_corr_50: -3.08435408e+01 - sys_corr_51: 6.53103113e+00 - sys_corr_52: -2.27154227e+00 - sys_corr_53: 3.61603951e+00 + sys_corr_51: -6.53103113e+00 + sys_corr_52: 2.27154227e+00 + sys_corr_53: -3.61603951e+00 sys_corr_54: 2.04968602e+01 sys_corr_55: -1.58213177e+00 - sys_corr_56: 3.31376540e+00 + sys_corr_56: -3.31376540e+00 sys_corr_57: 1.01401085e+01 - sys_corr_58: 9.84434513e+00 + sys_corr_58: -9.84434513e+00 sys_corr_59: -5.23555809e+00 sys_corr_60: 4.12707546e+01 - sys_corr_61: 2.63300045e-01 - sys_corr_62: 1.32132836e-01 + sys_corr_61: -2.63300045e-01 + sys_corr_62: -1.32132836e-01 sys_corr_63: -1.02545991e+01 sys_corr_64: -3.84519488e+00 - sys_corr_65: -8.43573266e+00 - sys_corr_66: 6.33414533e+00 - sys_corr_67: -6.93183048e+00 + sys_corr_65: 8.43573266e+00 + sys_corr_66: -6.33414533e+00 + sys_corr_67: 6.93183048e+00 sys_corr_68: 7.52466023e+00 sys_corr_69: 7.39733584e+01 sys_corr_70: 3.90955472e+01 - sys_corr_71: 2.37805844e+01 - sys_corr_72: -2.08464519e+01 + sys_corr_71: -2.37805844e+01 + sys_corr_72: 2.08464519e+01 sys_corr_73: 1.14535951e+02 sys_corr_74: 2.66664571e+01 - sys_corr_75: 7.38707131e+01 - sys_corr_76: 2.92592935e+01 + sys_corr_75: -7.38707131e+01 + sys_corr_76: -2.92592935e+01 sys_corr_77: -2.27995443e+00 sys_corr_78: 1.61180447e+00 sys_corr_79: -9.03913511e+00 - sys_corr_80: 1.84144370e+00 + sys_corr_80: -1.84144370e+00 sys_corr_81: 2.09455559e+01 - sys_corr_82: 1.15039106e+02 + sys_corr_82: -1.15039106e+02 sys_corr_83: 1.56893542e+01 sys_corr_84: 9.23771616e-01 sys_corr_85: -1.61651581e+00 - sys_corr_86: 2.23422704e+01 - sys_corr_87: -7.57676746e+01 + sys_corr_86: -2.23422704e+01 + sys_corr_87: 7.57676746e+01 sys_corr_88: -3.53945875e+00 sys_corr_89: 9.94363369e-02 - sys_corr_90: 3.27511267e+00 - sys_corr_91: 3.16487097e+00 - sys_corr_92: 3.95771593e+01 + sys_corr_90: -3.16487097e+00 + sys_corr_91: -3.27511267e+00 + sys_corr_92: -3.95771593e+01 sys_corr_93: 6.37301222e-01 sys_corr_94: 1.36796998e+00 - sys_corr_95: -6.38634808e-02 + sys_corr_95: 6.38634808e-02 sys_corr_96: 6.79835888e-01 - sys_corr_97: -2.94257377e+00 - sys_corr_98: -1.14915331e+00 + sys_corr_97: 2.94257377e+00 + sys_corr_98: 1.14915331e+00 sys_corr_99: -1.75244981e+00 - sys_corr_100: 4.05784271e-01 - sys_corr_101: 7.60558356e-01 - sys_corr_102: -3.29623416e+00 - sys_corr_103: 4.88674531e-01 - sys_corr_104: 3.58028048e+00 - sys_corr_105: 7.80958259e-01 + sys_corr_100: -7.80958259e-01 + sys_corr_101: -4.05784271e-01 + sys_corr_102: -7.60558356e-01 + sys_corr_103: -3.29623416e+00 + sys_corr_104: -4.88674531e-01 + sys_corr_105: -3.58028048e+00 sys_corr_106: -2.23233840e-01 sys_corr_107: 2.48972193e-01 - sys_corr_108: -5.22943109e-01 - sys_corr_109: -6.87536983e-02 - sys_corr_110: -3.19379332e-01 - sys_corr_111: -1.88567170e-01 - sys_corr_112: -6.64017347e-02 - sys_corr_113: -1.34401381e-01 - sys_corr_114: 2.04754520e-03 - sys_corr_115: 4.60829979e-02 + sys_corr_108: -6.87536983e-02 + sys_corr_109: 5.22943109e-01 + sys_corr_110: 1.88567170e-01 + sys_corr_111: 3.19379332e-01 + sys_corr_112: 6.64017347e-02 + sys_corr_113: 1.34401381e-01 + sys_corr_114: -2.04754520e-03 + sys_corr_115: -4.60829979e-02 sys_corr_116: -5.32766728e-02 - sys_corr_117: -1.51980526e-02 + sys_corr_117: 1.51980526e-02 sys_corr_118: 4.20104132e-02 sys_corr_119: -9.40320282e-03 sys_corr_120: 3.22321207e-02 sys_corr_121: 6.13875630e-03 - sys_corr_122: 1.35871243e-02 - sys_corr_123: 1.26555542e-02 - sys_corr_124: -7.08840753e-02 + sys_corr_122: 1.26555542e-02 + sys_corr_123: -1.35871243e-02 + sys_corr_124: 7.08840753e-02 sys_corr_125: -2.48652226e-02 sys_corr_126: 3.66669325e-03 - sys_corr_127: 2.53332141e-01 - sys_corr_128: 3.49521923e-02 - sys_corr_129: -6.57973042e-02 - sys_corr_130: -1.34130456e-02 - sys_corr_131: -4.54389558e-03 + sys_corr_127: -2.53332141e-01 + sys_corr_128: -3.49521923e-02 + sys_corr_129: 6.57973042e-02 + sys_corr_130: 1.34130456e-02 + sys_corr_131: 4.54389558e-03 sys_corr_132: -2.63492268e-02 stat: 0.0 luminosity: 2.46387284e+02 @@ -7244,17 +7244,17 @@ bins: sys_corr_6: -6.11122031e+01 sys_corr_7: 1.53585723e+01 sys_corr_8: 9.38437991e+00 - sys_corr_9: -3.42614763e+00 - sys_corr_10: 1.63302416e+00 + sys_corr_9: 3.42614763e+00 + sys_corr_10: -1.63302416e+00 sys_corr_11: 3.11038174e+01 - sys_corr_12: 5.23214032e+01 - sys_corr_13: -2.50929088e+01 + sys_corr_12: -5.23214032e+01 + sys_corr_13: 2.50929088e+01 sys_corr_14: 5.00393253e+00 sys_corr_15: 1.54172162e+01 sys_corr_16: -7.71572378e+00 - sys_corr_17: -5.41593506e+00 + sys_corr_17: 5.41593506e+00 sys_corr_18: -6.98197868e+00 - sys_corr_19: 5.62093495e+00 + sys_corr_19: -5.62093495e+00 sys_corr_20: 4.50370169e+00 sys_corr_21: 1.05733781e+01 sys_corr_22: 5.81564843e+01 @@ -7270,103 +7270,103 @@ bins: sys_corr_32: -1.05177679e+01 sys_corr_33: -1.37342381e+01 sys_corr_34: -3.33383254e+01 - sys_corr_35: -2.73592710e+00 - sys_corr_36: 2.07652496e+01 + sys_corr_35: 2.73592710e+00 + sys_corr_36: -2.07652496e+01 sys_corr_37: 2.86294634e+00 sys_corr_38: 1.30892082e+00 - sys_corr_39: 1.05594401e+01 - sys_corr_40: 1.03024477e+01 - sys_corr_41: -1.75811234e+01 + sys_corr_39: -1.05594401e+01 + sys_corr_40: -1.03024477e+01 + sys_corr_41: 1.75811234e+01 sys_corr_42: -3.44792756e+01 sys_corr_43: 7.07468077e-02 sys_corr_44: 1.12779758e+02 sys_corr_45: -1.15076924e+01 - sys_corr_46: 1.71354280e+01 - sys_corr_47: 4.78389534e+01 + sys_corr_46: -1.71354280e+01 + sys_corr_47: -4.78389534e+01 sys_corr_48: -3.84857095e+01 sys_corr_49: 7.55307089e+01 sys_corr_50: -3.61241764e+01 - sys_corr_51: -3.08303072e+00 - sys_corr_52: -5.78863383e+00 - sys_corr_53: -2.03515670e+01 + sys_corr_51: 3.08303072e+00 + sys_corr_52: 5.78863383e+00 + sys_corr_53: 2.03515670e+01 sys_corr_54: 4.31901394e+01 sys_corr_55: 5.02083687e+00 - sys_corr_56: 4.15139945e+01 + sys_corr_56: -4.15139945e+01 sys_corr_57: 4.45032878e+01 - sys_corr_58: -1.50677997e+02 + sys_corr_58: 1.50677997e+02 sys_corr_59: 1.84133811e+01 sys_corr_60: -1.46886142e+02 - sys_corr_61: 4.09519719e+01 - sys_corr_62: 6.41911800e+00 + sys_corr_61: -4.09519719e+01 + sys_corr_62: -6.41911800e+00 sys_corr_63: 4.06893772e+00 sys_corr_64: -3.05964024e+00 - sys_corr_65: 1.04552870e+01 - sys_corr_66: -9.49063561e+00 - sys_corr_67: 4.83883281e+00 + sys_corr_65: -1.04552870e+01 + sys_corr_66: 9.49063561e+00 + sys_corr_67: -4.83883281e+00 sys_corr_68: -1.93825147e+01 sys_corr_69: -6.38487370e+01 sys_corr_70: -3.39943919e+01 - sys_corr_71: -3.58040850e+01 - sys_corr_72: 1.12439815e+01 + sys_corr_71: 3.58040850e+01 + sys_corr_72: -1.12439815e+01 sys_corr_73: -3.05307321e+01 sys_corr_74: -4.52979456e+00 - sys_corr_75: -4.75792869e+00 - sys_corr_76: -8.43399111e-01 + sys_corr_75: 4.75792869e+00 + sys_corr_76: 8.43399111e-01 sys_corr_77: -5.22007390e+00 sys_corr_78: 1.33132218e+00 sys_corr_79: 1.33237831e+00 - sys_corr_80: -2.45666914e-01 + sys_corr_80: 2.45666914e-01 sys_corr_81: 4.89066732e+00 - sys_corr_82: 1.18756179e+01 + sys_corr_82: -1.18756179e+01 sys_corr_83: 4.32667767e+00 sys_corr_84: 3.55739343e-01 sys_corr_85: -1.21870963e+00 - sys_corr_86: 1.37021860e+00 - sys_corr_87: -9.17528721e+00 + sys_corr_86: -1.37021860e+00 + sys_corr_87: 9.17528721e+00 sys_corr_88: -7.76382044e-01 sys_corr_89: -4.53546013e-02 - sys_corr_90: 1.32323919e+00 - sys_corr_91: 8.15694952e-01 - sys_corr_92: -7.55900097e-01 + sys_corr_90: -8.15694952e-01 + sys_corr_91: -1.32323919e+00 + sys_corr_92: 7.55900097e-01 sys_corr_93: -3.27457293e-01 sys_corr_94: 8.42150158e-01 - sys_corr_95: -1.37592167e-01 + sys_corr_95: 1.37592167e-01 sys_corr_96: 3.53603044e-01 - sys_corr_97: -1.22266251e+00 - sys_corr_98: -3.09872420e-01 + sys_corr_97: 1.22266251e+00 + sys_corr_98: 3.09872420e-01 sys_corr_99: -5.04111590e-01 - sys_corr_100: 1.43539970e-01 - sys_corr_101: 3.68004269e-01 - sys_corr_102: -1.18667129e+00 - sys_corr_103: -9.03136688e-02 - sys_corr_104: 1.38561235e+00 - sys_corr_105: 1.52751315e-01 + sys_corr_100: -1.52751315e-01 + sys_corr_101: -1.43539970e-01 + sys_corr_102: -3.68004269e-01 + sys_corr_103: -1.18667129e+00 + sys_corr_104: 9.03136688e-02 + sys_corr_105: -1.38561235e+00 sys_corr_106: -9.02910547e-02 sys_corr_107: -9.63782114e-02 - sys_corr_108: 2.37175677e-02 - sys_corr_109: 5.14824641e-02 - sys_corr_110: -5.88397389e-02 - sys_corr_111: -1.69442626e-01 - sys_corr_112: -3.60743532e-02 - sys_corr_113: -3.32086293e-02 - sys_corr_114: 1.78110758e-03 - sys_corr_115: 1.25477035e-01 + sys_corr_108: 5.14824641e-02 + sys_corr_109: -2.37175677e-02 + sys_corr_110: 1.69442626e-01 + sys_corr_111: 5.88397389e-02 + sys_corr_112: 3.60743532e-02 + sys_corr_113: 3.32086293e-02 + sys_corr_114: -1.78110758e-03 + sys_corr_115: -1.25477035e-01 sys_corr_116: -6.19074196e-02 - sys_corr_117: -2.13063102e-02 + sys_corr_117: 2.13063102e-02 sys_corr_118: 4.96532910e-02 sys_corr_119: -3.45155358e-03 sys_corr_120: 8.91307742e-03 sys_corr_121: -2.42508413e-04 - sys_corr_122: -1.82499537e-02 - sys_corr_123: -6.74542631e-03 - sys_corr_124: -3.67220258e-02 + sys_corr_122: -6.74542631e-03 + sys_corr_123: 1.82499537e-02 + sys_corr_124: 3.67220258e-02 sys_corr_125: 2.89004165e-05 sys_corr_126: -3.29300888e-03 - sys_corr_127: 4.07611870e-01 - sys_corr_128: 9.86347748e-03 - sys_corr_129: 1.83805964e-03 - sys_corr_130: -2.64410888e-03 - sys_corr_131: -1.38359226e-02 + sys_corr_127: -4.07611870e-01 + sys_corr_128: -9.86347748e-03 + sys_corr_129: -1.83805964e-03 + sys_corr_130: 2.64410888e-03 + sys_corr_131: 1.38359226e-02 sys_corr_132: -1.73881041e-02 stat: 0.0 luminosity: 2.43127148e+02 @@ -7378,17 +7378,17 @@ bins: sys_corr_6: -7.92149874e+01 sys_corr_7: 1.94532526e+01 sys_corr_8: 2.43076073e+00 - sys_corr_9: 2.98138000e+00 - sys_corr_10: 4.55135719e+00 + sys_corr_9: -2.98138000e+00 + sys_corr_10: -4.55135719e+00 sys_corr_11: 3.01399460e+01 - sys_corr_12: 4.77559152e+01 - sys_corr_13: -3.06998544e+01 + sys_corr_12: -4.77559152e+01 + sys_corr_13: 3.06998544e+01 sys_corr_14: 6.74989888e+00 sys_corr_15: 1.87282938e+01 sys_corr_16: -7.29840250e+00 - sys_corr_17: -7.80998305e+00 + sys_corr_17: 7.80998305e+00 sys_corr_18: -3.93917440e+00 - sys_corr_19: 4.83467874e+00 + sys_corr_19: -4.83467874e+00 sys_corr_20: 5.61652732e+00 sys_corr_21: 1.17638499e+01 sys_corr_22: 4.87189060e+01 @@ -7404,103 +7404,103 @@ bins: sys_corr_32: -1.25479441e+01 sys_corr_33: -7.91585674e+00 sys_corr_34: -2.54250675e+01 - sys_corr_35: 1.18241200e+00 - sys_corr_36: 2.65435068e+01 + sys_corr_35: -1.18241200e+00 + sys_corr_36: -2.65435068e+01 sys_corr_37: -1.05236970e+01 sys_corr_38: 3.69753448e+00 - sys_corr_39: 1.96351749e+01 - sys_corr_40: 5.02533769e+00 - sys_corr_41: -1.84590026e+01 + sys_corr_39: -1.96351749e+01 + sys_corr_40: -5.02533769e+00 + sys_corr_41: 1.84590026e+01 sys_corr_42: -3.08590724e+01 sys_corr_43: -1.76688101e+00 sys_corr_44: 8.44904439e+01 sys_corr_45: -1.07435561e+01 - sys_corr_46: 7.57445988e+00 - sys_corr_47: 4.02697947e+01 + sys_corr_46: -7.57445988e+00 + sys_corr_47: -4.02697947e+01 sys_corr_48: -2.51257999e+01 sys_corr_49: 5.77661959e+01 sys_corr_50: -3.91504987e+01 - sys_corr_51: -7.16246767e+00 - sys_corr_52: -3.06216079e-01 - sys_corr_53: -5.32561406e+00 + sys_corr_51: 7.16246767e+00 + sys_corr_52: 3.06216079e-01 + sys_corr_53: 5.32561406e+00 sys_corr_54: 2.39897815e+01 sys_corr_55: 9.13434557e-01 - sys_corr_56: 3.94849772e+00 + sys_corr_56: -3.94849772e+00 sys_corr_57: 1.75033880e+01 - sys_corr_58: 7.22541240e+01 + sys_corr_58: -7.22541240e+01 sys_corr_59: -1.47278724e+01 sys_corr_60: 1.66053134e+02 - sys_corr_61: -5.80127200e+01 - sys_corr_62: 1.51543540e+01 + sys_corr_61: 5.80127200e+01 + sys_corr_62: -1.51543540e+01 sys_corr_63: -1.21780941e+01 sys_corr_64: -1.54630158e+01 - sys_corr_65: -2.76691101e+01 - sys_corr_66: -3.01351280e+01 - sys_corr_67: 6.56244241e+00 + sys_corr_65: 2.76691101e+01 + sys_corr_66: 3.01351280e+01 + sys_corr_67: -6.56244241e+00 sys_corr_68: -4.17887379e+01 sys_corr_69: -1.19135933e+02 sys_corr_70: -4.77475275e+01 - sys_corr_71: -4.55520960e+01 - sys_corr_72: 2.76701797e+01 + sys_corr_71: 4.55520960e+01 + sys_corr_72: -2.76701797e+01 sys_corr_73: -5.49362245e+01 sys_corr_74: -5.57430938e+00 - sys_corr_75: -8.65861143e+00 - sys_corr_76: -2.22877089e+00 + sys_corr_75: 8.65861143e+00 + sys_corr_76: 2.22877089e+00 sys_corr_77: -5.08222891e+00 sys_corr_78: 3.91832389e+00 sys_corr_79: 6.42677642e+00 - sys_corr_80: 1.93510901e+00 + sys_corr_80: -1.93510901e+00 sys_corr_81: 2.74920325e+00 - sys_corr_82: 6.23434273e+00 + sys_corr_82: -6.23434273e+00 sys_corr_83: 2.29771815e+00 sys_corr_84: 3.76016443e+00 sys_corr_85: 8.30349940e-01 - sys_corr_86: 1.79668110e+00 - sys_corr_87: -8.67695690e+00 + sys_corr_86: -1.79668110e+00 + sys_corr_87: 8.67695690e+00 sys_corr_88: 6.08819015e-01 sys_corr_89: 4.59144990e-01 - sys_corr_90: 1.38897108e+00 - sys_corr_91: -1.05756558e-03 - sys_corr_92: -3.17554764e+00 + sys_corr_90: 1.05756558e-03 + sys_corr_91: -1.38897108e+00 + sys_corr_92: 3.17554764e+00 sys_corr_93: 3.69936864e-01 sys_corr_94: 2.33303978e-01 - sys_corr_95: 4.83177577e-01 + sys_corr_95: -4.83177577e-01 sys_corr_96: 1.67706327e-01 - sys_corr_97: -2.00918726e+00 - sys_corr_98: -3.44135829e-01 + sys_corr_97: 2.00918726e+00 + sys_corr_98: 3.44135829e-01 sys_corr_99: -5.82529878e-01 - sys_corr_100: 3.37675987e-01 - sys_corr_101: 6.86071076e-01 - sys_corr_102: -1.24953299e+00 - sys_corr_103: 5.58791844e-02 - sys_corr_104: 1.47374473e+00 - sys_corr_105: 4.10843040e-01 + sys_corr_100: -4.10843040e-01 + sys_corr_101: -3.37675987e-01 + sys_corr_102: -6.86071076e-01 + sys_corr_103: -1.24953299e+00 + sys_corr_104: -5.58791844e-02 + sys_corr_105: -1.47374473e+00 sys_corr_106: -5.01480419e-02 sys_corr_107: 1.25993565e-01 - sys_corr_108: -1.51714069e-01 - sys_corr_109: -1.33811447e-01 - sys_corr_110: -2.73666724e-01 - sys_corr_111: -2.14177322e-01 - sys_corr_112: -6.50271237e-02 - sys_corr_113: -1.39786255e-01 - sys_corr_114: 1.59884407e-03 - sys_corr_115: 7.77278136e-02 + sys_corr_108: -1.33811447e-01 + sys_corr_109: 1.51714069e-01 + sys_corr_110: 2.14177322e-01 + sys_corr_111: 2.73666724e-01 + sys_corr_112: 6.50271237e-02 + sys_corr_113: 1.39786255e-01 + sys_corr_114: -1.59884407e-03 + sys_corr_115: -7.77278136e-02 sys_corr_116: -2.39131481e-02 - sys_corr_117: -2.62374027e-02 + sys_corr_117: 2.62374027e-02 sys_corr_118: 1.71431302e-02 sys_corr_119: -3.23604251e-03 sys_corr_120: 2.30437030e-02 sys_corr_121: 2.31990343e-03 - sys_corr_122: 8.63348961e-03 - sys_corr_123: -1.12390715e-03 - sys_corr_124: -5.81836799e-03 + sys_corr_122: -1.12390715e-03 + sys_corr_123: -8.63348961e-03 + sys_corr_124: 5.81836799e-03 sys_corr_125: -3.93597525e-03 sys_corr_126: -1.17225744e-02 - sys_corr_127: 3.10552598e-01 - sys_corr_128: -3.99178841e-03 - sys_corr_129: -4.91573916e-03 - sys_corr_130: -1.30177297e-03 - sys_corr_131: -3.61575232e-03 + sys_corr_127: -3.10552598e-01 + sys_corr_128: 3.99178841e-03 + sys_corr_129: 4.91573916e-03 + sys_corr_130: 1.30177297e-03 + sys_corr_131: 3.61575232e-03 sys_corr_132: -2.35320773e-03 stat: 0.0 luminosity: 2.49604938e+02 @@ -7512,17 +7512,17 @@ bins: sys_corr_6: -5.21462326e+01 sys_corr_7: 1.81679754e+01 sys_corr_8: 1.01522297e+01 - sys_corr_9: 2.96299963e+00 - sys_corr_10: 6.44384255e+00 + sys_corr_9: -2.96299963e+00 + sys_corr_10: -6.44384255e+00 sys_corr_11: 2.62415641e+01 - sys_corr_12: 4.01511004e+01 - sys_corr_13: -2.90304610e+01 + sys_corr_12: -4.01511004e+01 + sys_corr_13: 2.90304610e+01 sys_corr_14: 2.60390168e+00 sys_corr_15: 4.50405592e+00 sys_corr_16: -6.52645622e+00 - sys_corr_17: -2.02296551e+00 + sys_corr_17: 2.02296551e+00 sys_corr_18: -8.25809749e+00 - sys_corr_19: 7.57243819e+00 + sys_corr_19: -7.57243819e+00 sys_corr_20: 2.87247375e+00 sys_corr_21: 1.06438004e+01 sys_corr_22: 2.53291112e+01 @@ -7538,103 +7538,103 @@ bins: sys_corr_32: -1.87177217e+01 sys_corr_33: -3.81712526e+01 sys_corr_34: -1.95360615e+02 - sys_corr_35: 3.97972149e+01 - sys_corr_36: 2.22273341e+02 + sys_corr_35: -3.97972149e+01 + sys_corr_36: -2.22273341e+02 sys_corr_37: 1.95667923e+02 sys_corr_38: 1.43611467e+01 - sys_corr_39: -9.73176461e+01 - sys_corr_40: -2.88504809e+01 - sys_corr_41: 3.45793374e+01 + sys_corr_39: 9.73176461e+01 + sys_corr_40: 2.88504809e+01 + sys_corr_41: -3.45793374e+01 sys_corr_42: 6.31671309e+01 sys_corr_43: 3.98302118e+00 sys_corr_44: -8.39928676e+01 sys_corr_45: 1.46885936e+01 - sys_corr_46: -1.20446645e+01 - sys_corr_47: -3.17848310e+01 + sys_corr_46: 1.20446645e+01 + sys_corr_47: 3.17848310e+01 sys_corr_48: 1.08097101e+01 sys_corr_49: -2.71435900e+01 sys_corr_50: 1.63149063e+01 - sys_corr_51: 1.00437731e+01 - sys_corr_52: -1.34879189e+00 - sys_corr_53: 4.87880443e+00 + sys_corr_51: -1.00437731e+01 + sys_corr_52: 1.34879189e+00 + sys_corr_53: -4.87880443e+00 sys_corr_54: -3.88822540e+00 sys_corr_55: -3.71884339e+00 - sys_corr_56: -3.19927304e+00 + sys_corr_56: 3.19927304e+00 sys_corr_57: 2.05473045e+00 - sys_corr_58: -2.32425066e+00 + sys_corr_58: 2.32425066e+00 sys_corr_59: 9.95283287e-01 sys_corr_60: -2.26560792e+00 - sys_corr_61: 2.11668673e-01 - sys_corr_62: 3.13708040e+00 + sys_corr_61: -2.11668673e-01 + sys_corr_62: -3.13708040e+00 sys_corr_63: -1.09660360e+00 sys_corr_64: -1.07263979e+00 - sys_corr_65: -1.01158594e+00 - sys_corr_66: -4.56425596e+00 - sys_corr_67: 2.48663003e+00 + sys_corr_65: 1.01158594e+00 + sys_corr_66: 4.56425596e+00 + sys_corr_67: -2.48663003e+00 sys_corr_68: -5.53703229e+00 sys_corr_69: -6.88035752e+00 sys_corr_70: -4.12150774e+00 - sys_corr_71: -5.81235162e+00 - sys_corr_72: 1.44441883e+00 + sys_corr_71: 5.81235162e+00 + sys_corr_72: -1.44441883e+00 sys_corr_73: -3.26529854e+00 sys_corr_74: 4.41699821e-01 - sys_corr_75: -6.05493566e-01 - sys_corr_76: 7.37682987e-01 + sys_corr_75: 6.05493566e-01 + sys_corr_76: -7.37682987e-01 sys_corr_77: -1.29278295e+00 sys_corr_78: 6.80326901e-01 sys_corr_79: -8.87699364e-02 - sys_corr_80: 6.19453025e-03 + sys_corr_80: -6.19453025e-03 sys_corr_81: 5.39643529e-01 - sys_corr_82: 2.41308901e+00 + sys_corr_82: -2.41308901e+00 sys_corr_83: 1.90127066e-01 sys_corr_84: 1.20968533e+00 sys_corr_85: -1.60630710e+00 - sys_corr_86: 4.79531311e-01 - sys_corr_87: -9.46108403e-01 + sys_corr_86: -4.79531311e-01 + sys_corr_87: 9.46108403e-01 sys_corr_88: 3.20650823e-01 sys_corr_89: 6.90923099e-02 - sys_corr_90: 7.34386958e-02 - sys_corr_91: -6.50376184e-01 - sys_corr_92: -1.74583662e-01 + sys_corr_90: 6.50376184e-01 + sys_corr_91: -7.34386958e-02 + sys_corr_92: 1.74583662e-01 sys_corr_93: -1.23486677e-01 sys_corr_94: -1.17857007e-01 - sys_corr_95: 4.42489164e-01 + sys_corr_95: -4.42489164e-01 sys_corr_96: 7.32601742e-02 - sys_corr_97: -4.33631956e-01 - sys_corr_98: -2.12437877e-01 + sys_corr_97: 4.33631956e-01 + sys_corr_98: 2.12437877e-01 sys_corr_99: -1.73171262e-01 - sys_corr_100: -4.85700482e-02 - sys_corr_101: -4.60841590e-03 - sys_corr_102: -1.03185356e+00 - sys_corr_103: 1.77177248e-01 - sys_corr_104: 5.44648057e-01 - sys_corr_105: 4.07683658e-02 + sys_corr_100: -4.07683658e-02 + sys_corr_101: 4.85700482e-02 + sys_corr_102: 4.60841590e-03 + sys_corr_103: -1.03185356e+00 + sys_corr_104: -1.77177248e-01 + sys_corr_105: -5.44648057e-01 sys_corr_106: -3.22194578e-02 sys_corr_107: 1.02277381e-01 - sys_corr_108: -7.05496925e-02 - sys_corr_109: -1.21015343e-01 - sys_corr_110: -2.69931162e-01 - sys_corr_111: -2.09751851e-02 - sys_corr_112: -1.57637704e-02 - sys_corr_113: -1.51130478e-02 - sys_corr_114: 9.59216893e-04 - sys_corr_115: -1.96027420e-03 + sys_corr_108: -1.21015343e-01 + sys_corr_109: 7.05496925e-02 + sys_corr_110: 2.09751851e-02 + sys_corr_111: 2.69931162e-01 + sys_corr_112: 1.57637704e-02 + sys_corr_113: 1.51130478e-02 + sys_corr_114: -9.59216893e-04 + sys_corr_115: 1.96027420e-03 sys_corr_116: -1.96048944e-02 - sys_corr_117: -7.92889467e-03 + sys_corr_117: 7.92889467e-03 sys_corr_118: -1.07385297e-02 sys_corr_119: -1.45633599e-03 sys_corr_120: 8.65021179e-03 sys_corr_121: -8.61139737e-04 - sys_corr_122: -1.33852022e-02 - sys_corr_123: -6.92976116e-03 - sys_corr_124: -4.40512573e-03 + sys_corr_122: -6.92976116e-03 + sys_corr_123: 1.33852022e-02 + sys_corr_124: 4.40512573e-03 sys_corr_125: 8.90045844e-04 sys_corr_126: -3.98736958e-03 - sys_corr_127: 1.35366474e-01 - sys_corr_128: -2.24029300e-02 - sys_corr_129: 1.07149970e-02 - sys_corr_130: -1.20054682e-03 - sys_corr_131: 5.81558272e-03 + sys_corr_127: -1.35366474e-01 + sys_corr_128: 2.24029300e-02 + sys_corr_129: -1.07149970e-02 + sys_corr_130: 1.20054682e-03 + sys_corr_131: -5.81558272e-03 sys_corr_132: -2.20912586e-03 stat: 0.0 luminosity: 2.34780832e+02 @@ -7646,17 +7646,17 @@ bins: sys_corr_6: -8.33578499e+01 sys_corr_7: 1.97864513e+01 sys_corr_8: 1.10497648e+01 - sys_corr_9: 7.08433093e+00 - sys_corr_10: 3.59288012e+00 + sys_corr_9: -7.08433093e+00 + sys_corr_10: -3.59288012e+00 sys_corr_11: 2.88084115e+01 - sys_corr_12: 4.96412508e+01 - sys_corr_13: -2.98132715e+01 + sys_corr_12: -4.96412508e+01 + sys_corr_13: 2.98132715e+01 sys_corr_14: 6.62063560e+00 sys_corr_15: 2.16005850e+01 sys_corr_16: -1.78793447e+01 - sys_corr_17: -3.44526506e+00 + sys_corr_17: 3.44526506e+00 sys_corr_18: -8.00472653e+00 - sys_corr_19: 6.95353276e+00 + sys_corr_19: -6.95353276e+00 sys_corr_20: 4.29297502e+00 sys_corr_21: 4.80804108e+00 sys_corr_22: 1.89784634e+01 @@ -7672,103 +7672,103 @@ bins: sys_corr_32: -1.26366092e+01 sys_corr_33: -1.08157953e+01 sys_corr_34: -1.80487840e+01 - sys_corr_35: 1.61462963e+01 - sys_corr_36: 1.08854014e+01 + sys_corr_35: -1.61462963e+01 + sys_corr_36: -1.08854014e+01 sys_corr_37: 9.85345159e-01 sys_corr_38: -3.47067643e-02 - sys_corr_39: -6.57106587e-01 - sys_corr_40: 4.60776035e+00 - sys_corr_41: -3.10673989e+00 + sys_corr_39: 6.57106587e-01 + sys_corr_40: -4.60776035e+00 + sys_corr_41: 3.10673989e+00 sys_corr_42: -2.04601612e+01 sys_corr_43: -8.21924846e+00 sys_corr_44: 5.76998356e+01 sys_corr_45: -4.26437741e+00 - sys_corr_46: 3.13596665e-01 - sys_corr_47: 2.48448584e+01 + sys_corr_46: -3.13596665e-01 + sys_corr_47: -2.48448584e+01 sys_corr_48: -1.83452403e+01 sys_corr_49: 2.94535209e+01 sys_corr_50: -2.65820619e+01 - sys_corr_51: -8.37867268e+00 - sys_corr_52: -1.38801028e+00 - sys_corr_53: -5.67697466e+00 + sys_corr_51: 8.37867268e+00 + sys_corr_52: 1.38801028e+00 + sys_corr_53: 5.67697466e+00 sys_corr_54: 3.69463718e+00 sys_corr_55: 6.07151892e+00 - sys_corr_56: 4.06428881e+00 + sys_corr_56: -4.06428881e+00 sys_corr_57: -1.08008860e+01 - sys_corr_58: 1.55335835e+01 + sys_corr_58: -1.55335835e+01 sys_corr_59: -7.56053751e-01 sys_corr_60: 1.62818317e+01 - sys_corr_61: 3.77758679e-01 - sys_corr_62: -2.35660893e+00 + sys_corr_61: -3.77758679e-01 + sys_corr_62: 2.35660893e+00 sys_corr_63: 3.07211853e+00 sys_corr_64: 6.94550386e+00 - sys_corr_65: -1.06857786e+00 - sys_corr_66: 3.78782421e+01 - sys_corr_67: -1.75850276e+01 + sys_corr_65: 1.06857786e+00 + sys_corr_66: -3.78782421e+01 + sys_corr_67: 1.75850276e+01 sys_corr_68: 3.91550145e+01 sys_corr_69: 5.03827719e+01 sys_corr_70: 2.72728868e+01 - sys_corr_71: 3.42970265e+01 - sys_corr_72: 1.35376550e+00 + sys_corr_71: -3.42970265e+01 + sys_corr_72: -1.35376550e+00 sys_corr_73: 1.20202337e+01 sys_corr_74: -7.32788155e+00 - sys_corr_75: -7.56927409e+01 - sys_corr_76: 2.15571128e+01 + sys_corr_75: 7.56927409e+01 + sys_corr_76: -2.15571128e+01 sys_corr_77: -2.01186777e+01 sys_corr_78: 7.37896061e+00 sys_corr_79: 3.34763414e+00 - sys_corr_80: 8.57482828e-01 + sys_corr_80: -8.57482828e-01 sys_corr_81: 5.54155836e+01 - sys_corr_82: 3.41105572e+01 + sys_corr_82: -3.41105572e+01 sys_corr_83: 3.05183139e+01 sys_corr_84: 1.50789296e+00 sys_corr_85: -8.15225177e+00 - sys_corr_86: -7.11732796e+01 - sys_corr_87: 9.60746007e+01 + sys_corr_86: 7.11732796e+01 + sys_corr_87: -9.60746007e+01 sys_corr_88: -2.54213079e+01 sys_corr_89: -3.67048427e-01 - sys_corr_90: 5.55796148e-01 - sys_corr_91: -5.90312770e+00 - sys_corr_92: -1.40932033e+02 + sys_corr_90: 5.90312770e+00 + sys_corr_91: -5.55796148e-01 + sys_corr_92: 1.40932033e+02 sys_corr_93: -9.10244383e-01 sys_corr_94: -2.55578218e+00 - sys_corr_95: 3.71944818e+00 + sys_corr_95: -3.71944818e+00 sys_corr_96: 1.68911061e-02 - sys_corr_97: -5.24511117e-01 - sys_corr_98: -6.41731625e-01 + sys_corr_97: 5.24511117e-01 + sys_corr_98: 6.41731625e-01 sys_corr_99: -4.55797895e-01 - sys_corr_100: 5.27289123e-02 - sys_corr_101: 5.87926348e-02 - sys_corr_102: -7.57153705e-01 - sys_corr_103: 7.05426374e-01 - sys_corr_104: 5.34085346e-01 - sys_corr_105: 3.07527640e-01 + sys_corr_100: -3.07527640e-01 + sys_corr_101: -5.27289123e-02 + sys_corr_102: -5.87926348e-02 + sys_corr_103: -7.57153705e-01 + sys_corr_104: -7.05426374e-01 + sys_corr_105: -5.34085346e-01 sys_corr_106: -7.23492662e-02 sys_corr_107: 2.52065315e-01 - sys_corr_108: -5.85657608e-01 - sys_corr_109: -2.82779827e-01 - sys_corr_110: -1.21285957e-01 - sys_corr_111: -6.80644042e-02 - sys_corr_112: -2.85804399e-01 - sys_corr_113: -2.42941499e-01 - sys_corr_114: 4.29550222e-03 - sys_corr_115: 1.65147989e-02 + sys_corr_108: -2.82779827e-01 + sys_corr_109: 5.85657608e-01 + sys_corr_110: 6.80644042e-02 + sys_corr_111: 1.21285957e-01 + sys_corr_112: 2.85804399e-01 + sys_corr_113: 2.42941499e-01 + sys_corr_114: -4.29550222e-03 + sys_corr_115: -1.65147989e-02 sys_corr_116: -3.94695815e-02 - sys_corr_117: -5.29517507e-02 + sys_corr_117: 5.29517507e-02 sys_corr_118: -3.53993930e-02 sys_corr_119: -6.23277521e-03 sys_corr_120: 2.60763323e-02 sys_corr_121: -3.87072133e-03 - sys_corr_122: -1.29548885e-02 - sys_corr_123: -1.46675922e-02 - sys_corr_124: -7.49116842e-02 + sys_corr_122: -1.46675922e-02 + sys_corr_123: 1.29548885e-02 + sys_corr_124: 7.49116842e-02 sys_corr_125: -9.15634590e-03 sys_corr_126: -1.57602600e-02 - sys_corr_127: -9.00832691e-02 - sys_corr_128: 5.71480187e-02 - sys_corr_129: -4.67625099e-02 - sys_corr_130: 2.02100555e-03 - sys_corr_131: -3.15986116e-03 + sys_corr_127: 9.00832691e-02 + sys_corr_128: -5.71480187e-02 + sys_corr_129: 4.67625099e-02 + sys_corr_130: -2.02100555e-03 + sys_corr_131: 3.15986116e-03 sys_corr_132: 5.26284803e-02 stat: 0.0 luminosity: 2.57288790e+02 @@ -7780,17 +7780,17 @@ bins: sys_corr_6: -9.78745793e+01 sys_corr_7: 2.58077612e+01 sys_corr_8: 6.82362849e+00 - sys_corr_9: 1.09282446e+01 - sys_corr_10: 3.89299051e+00 + sys_corr_9: -1.09282446e+01 + sys_corr_10: -3.89299051e+00 sys_corr_11: 2.62801898e+01 - sys_corr_12: 4.30548202e+01 - sys_corr_13: -2.07400333e+01 + sys_corr_12: -4.30548202e+01 + sys_corr_13: 2.07400333e+01 sys_corr_14: 3.61506505e+00 sys_corr_15: 9.41895847e+00 sys_corr_16: -5.37723824e+00 - sys_corr_17: -1.48762845e+00 + sys_corr_17: 1.48762845e+00 sys_corr_18: 2.92817891e+00 - sys_corr_19: 6.10917338e+00 + sys_corr_19: -6.10917338e+00 sys_corr_20: -5.82901180e-01 sys_corr_21: 4.96000843e+00 sys_corr_22: -9.96666010e+00 @@ -7806,103 +7806,103 @@ bins: sys_corr_32: -1.67938195e+01 sys_corr_33: 2.63189375e+00 sys_corr_34: -2.24724960e+01 - sys_corr_35: -5.84143500e+00 - sys_corr_36: 1.89354249e+01 + sys_corr_35: 5.84143500e+00 + sys_corr_36: -1.89354249e+01 sys_corr_37: -1.26409960e+00 sys_corr_38: 4.76048424e+00 - sys_corr_39: 1.48233451e+01 - sys_corr_40: 5.72858019e+00 - sys_corr_41: -2.36355103e+00 + sys_corr_39: -1.48233451e+01 + sys_corr_40: -5.72858019e+00 + sys_corr_41: 2.36355103e+00 sys_corr_42: -1.82136113e+01 sys_corr_43: -2.93263223e+00 sys_corr_44: 4.03687978e+01 sys_corr_45: -1.02239535e+01 - sys_corr_46: -5.59213217e+00 - sys_corr_47: 2.17819562e+01 + sys_corr_46: 5.59213217e+00 + sys_corr_47: -2.17819562e+01 sys_corr_48: -8.19273124e+00 sys_corr_49: 2.87617791e+01 sys_corr_50: -2.84381374e+01 - sys_corr_51: -6.69336084e+00 - sys_corr_52: -3.53055228e+00 - sys_corr_53: -8.00670916e+00 + sys_corr_51: 6.69336084e+00 + sys_corr_52: 3.53055228e+00 + sys_corr_53: 8.00670916e+00 sys_corr_54: -2.29549210e+00 sys_corr_55: 1.26920828e+01 - sys_corr_56: 1.80465588e+00 + sys_corr_56: -1.80465588e+00 sys_corr_57: -1.41389947e+01 - sys_corr_58: 9.68902175e+00 + sys_corr_58: -9.68902175e+00 sys_corr_59: 1.14002982e+01 sys_corr_60: 1.04399158e+01 - sys_corr_61: -1.28777928e+01 - sys_corr_62: 8.27034260e+00 + sys_corr_61: 1.28777928e+01 + sys_corr_62: -8.27034260e+00 sys_corr_63: 9.82215453e+00 sys_corr_64: 1.35308511e+01 - sys_corr_65: -1.35858066e+00 - sys_corr_66: 2.01985583e+01 - sys_corr_67: -2.70111161e+01 + sys_corr_65: 1.35858066e+00 + sys_corr_66: -2.01985583e+01 + sys_corr_67: 2.70111161e+01 sys_corr_68: 6.85817918e+01 sys_corr_69: 5.96753129e+01 sys_corr_70: 3.70818372e+01 - sys_corr_71: 7.14029164e+01 - sys_corr_72: -6.97993923e+00 + sys_corr_71: -7.14029164e+01 + sys_corr_72: 6.97993923e+00 sys_corr_73: -9.85942607e+01 sys_corr_74: -8.12498483e+01 - sys_corr_75: -6.67784575e+01 - sys_corr_76: -5.29585932e+01 + sys_corr_75: 6.67784575e+01 + sys_corr_76: 5.29585932e+01 sys_corr_77: -1.03651810e+01 sys_corr_78: 5.36688149e+00 sys_corr_79: -8.21566016e+00 - sys_corr_80: -1.40929387e+01 + sys_corr_80: 1.40929387e+01 sys_corr_81: 1.50678817e+01 - sys_corr_82: 1.71016472e+01 + sys_corr_82: -1.71016472e+01 sys_corr_83: -4.14152478e+00 sys_corr_84: 2.57342991e+00 sys_corr_85: -2.59634786e+00 - sys_corr_86: 5.02968721e+01 - sys_corr_87: 2.59439181e+01 + sys_corr_86: -5.02968721e+01 + sys_corr_87: -2.59439181e+01 sys_corr_88: 2.79758577e+01 sys_corr_89: -8.77265547e-01 - sys_corr_90: -1.44831372e+00 - sys_corr_91: -3.01577723e+00 - sys_corr_92: 1.21416507e+02 + sys_corr_90: 3.01577723e+00 + sys_corr_91: 1.44831372e+00 + sys_corr_92: -1.21416507e+02 sys_corr_93: -5.37246837e-01 sys_corr_94: -1.68704961e+00 - sys_corr_95: 2.39070077e+00 + sys_corr_95: -2.39070077e+00 sys_corr_96: 1.59460635e-01 - sys_corr_97: 1.28455143e+00 - sys_corr_98: 1.95439387e-01 + sys_corr_97: -1.28455143e+00 + sys_corr_98: -1.95439387e-01 sys_corr_99: 5.77890329e-01 - sys_corr_100: -1.03231320e-01 - sys_corr_101: -5.31388319e-01 - sys_corr_102: -9.98475104e-01 - sys_corr_103: 4.24023421e-01 - sys_corr_104: 4.77055617e-02 - sys_corr_105: -2.00137205e-01 + sys_corr_100: 2.00137205e-01 + sys_corr_101: 1.03231320e-01 + sys_corr_102: 5.31388319e-01 + sys_corr_103: -9.98475104e-01 + sys_corr_104: -4.24023421e-01 + sys_corr_105: -4.77055617e-02 sys_corr_106: -1.96406346e-01 sys_corr_107: -1.52439560e-01 - sys_corr_108: -3.87442220e-01 - sys_corr_109: -4.25315718e-01 - sys_corr_110: 2.11591556e-01 - sys_corr_111: 7.23782625e-02 - sys_corr_112: -2.17151292e-01 - sys_corr_113: -2.22766913e-01 - sys_corr_114: 2.09568484e-03 - sys_corr_115: -4.64636075e-02 + sys_corr_108: -4.25315718e-01 + sys_corr_109: 3.87442220e-01 + sys_corr_110: -7.23782625e-02 + sys_corr_111: -2.11591556e-01 + sys_corr_112: 2.17151292e-01 + sys_corr_113: 2.22766913e-01 + sys_corr_114: -2.09568484e-03 + sys_corr_115: 4.64636075e-02 sys_corr_116: -4.44755548e-02 - sys_corr_117: -6.00284479e-02 + sys_corr_117: 6.00284479e-02 sys_corr_118: 2.44535570e-02 sys_corr_119: 6.16594844e-03 sys_corr_120: 1.88759875e-02 sys_corr_121: 8.69349876e-04 - sys_corr_122: 8.93747099e-05 - sys_corr_123: -1.66348366e-02 - sys_corr_124: -6.96037793e-02 + sys_corr_122: -1.66348366e-02 + sys_corr_123: -8.93747099e-05 + sys_corr_124: 6.96037793e-02 sys_corr_125: -5.45244864e-03 sys_corr_126: -6.02103897e-03 - sys_corr_127: 1.06829219e-01 - sys_corr_128: 1.33400144e-01 - sys_corr_129: -9.88834917e-02 - sys_corr_130: -8.52363549e-03 - sys_corr_131: -2.26168305e-02 + sys_corr_127: -1.06829219e-01 + sys_corr_128: -1.33400144e-01 + sys_corr_129: 9.88834917e-02 + sys_corr_130: 8.52363549e-03 + sys_corr_131: 2.26168305e-02 sys_corr_132: 3.67675441e-02 stat: 0.0 luminosity: 2.52723416e+02 @@ -7914,17 +7914,17 @@ bins: sys_corr_6: -1.04373389e+02 sys_corr_7: 2.88540199e+01 sys_corr_8: 1.05181338e+01 - sys_corr_9: 1.46712530e+01 - sys_corr_10: -2.68701158e+00 + sys_corr_9: -1.46712530e+01 + sys_corr_10: 2.68701158e+00 sys_corr_11: 2.53387670e+01 - sys_corr_12: 3.24623489e+01 - sys_corr_13: -2.63824612e+01 + sys_corr_12: -3.24623489e+01 + sys_corr_13: 2.63824612e+01 sys_corr_14: 8.71511374e+00 sys_corr_15: 9.35687576e+00 sys_corr_16: -5.25047538e+00 - sys_corr_17: 2.53193016e+00 + sys_corr_17: -2.53193016e+00 sys_corr_18: -3.33943901e+00 - sys_corr_19: -1.12669307e+00 + sys_corr_19: 1.12669307e+00 sys_corr_20: -3.29213654e+00 sys_corr_21: 3.16496259e+00 sys_corr_22: -3.23926905e+01 @@ -7940,103 +7940,103 @@ bins: sys_corr_32: -1.58149810e+01 sys_corr_33: 4.96915634e+00 sys_corr_34: -1.12374060e+01 - sys_corr_35: 3.48816194e+00 - sys_corr_36: 1.11780348e+01 + sys_corr_35: -3.48816194e+00 + sys_corr_36: -1.11780348e+01 sys_corr_37: 1.35985124e+01 sys_corr_38: -5.08090102e+00 - sys_corr_39: -1.03742060e+01 - sys_corr_40: 2.53463206e+01 - sys_corr_41: -3.64412382e+00 + sys_corr_39: 1.03742060e+01 + sys_corr_40: -2.53463206e+01 + sys_corr_41: 3.64412382e+00 sys_corr_42: -5.19412220e+01 sys_corr_43: -1.84248204e+01 sys_corr_44: 5.65392181e+01 sys_corr_45: 1.10138422e+00 - sys_corr_46: -1.31657045e+01 - sys_corr_47: 1.61335671e+01 + sys_corr_46: 1.31657045e+01 + sys_corr_47: -1.61335671e+01 sys_corr_48: -4.11338283e+01 sys_corr_49: 1.39776566e+01 sys_corr_50: -2.67508292e+00 - sys_corr_51: -8.42617400e-01 - sys_corr_52: -1.19112956e+01 - sys_corr_53: -1.68843962e+01 + sys_corr_51: 8.42617400e-01 + sys_corr_52: 1.19112956e+01 + sys_corr_53: 1.68843962e+01 sys_corr_54: -6.09958728e+01 sys_corr_55: -1.74235537e+01 - sys_corr_56: -3.55171296e+01 + sys_corr_56: 3.55171296e+01 sys_corr_57: -1.54656798e+02 - sys_corr_58: 1.27979406e+02 + sys_corr_58: -1.27979406e+02 sys_corr_59: -9.37207483e+01 sys_corr_60: -1.16801347e+02 - sys_corr_61: 1.06982511e+00 - sys_corr_62: -7.08124324e+01 + sys_corr_61: -1.06982511e+00 + sys_corr_62: 7.08124324e+01 sys_corr_63: 2.08559464e+01 sys_corr_64: -1.46057602e+01 - sys_corr_65: -4.31122770e+00 - sys_corr_66: -6.61654920e+00 - sys_corr_67: 2.60220146e+01 + sys_corr_65: 4.31122770e+00 + sys_corr_66: 6.61654920e+00 + sys_corr_67: -2.60220146e+01 sys_corr_68: -1.44721518e+01 sys_corr_69: -3.30367304e+01 sys_corr_70: -1.38537545e+01 - sys_corr_71: -1.02467389e+01 - sys_corr_72: 8.55850033e+00 + sys_corr_71: 1.02467389e+01 + sys_corr_72: -8.55850033e+00 sys_corr_73: 6.50409695e+00 sys_corr_74: 1.40256063e+00 - sys_corr_75: 1.82454568e+01 - sys_corr_76: -6.62389552e+00 + sys_corr_75: -1.82454568e+01 + sys_corr_76: 6.62389552e+00 sys_corr_77: -2.00838986e+01 sys_corr_78: 3.46567196e+00 sys_corr_79: -1.25071532e+01 - sys_corr_80: 1.46481001e+00 + sys_corr_80: -1.46481001e+00 sys_corr_81: -1.51612475e+00 - sys_corr_82: 9.95002635e-01 + sys_corr_82: -9.95002635e-01 sys_corr_83: -7.82021607e-01 sys_corr_84: 4.46762450e+00 sys_corr_85: 8.68495273e-01 - sys_corr_86: -2.37039122e+00 - sys_corr_87: -7.02949257e-01 + sys_corr_86: 2.37039122e+00 + sys_corr_87: 7.02949257e-01 sys_corr_88: -5.08634690e+00 sys_corr_89: -1.54354757e+00 - sys_corr_90: -3.18459514e-01 - sys_corr_91: 8.43331579e-01 - sys_corr_92: 1.31662301e+01 + sys_corr_90: -8.43331579e-01 + sys_corr_91: 3.18459514e-01 + sys_corr_92: -1.31662301e+01 sys_corr_93: -1.80854841e-02 sys_corr_94: 1.50669456e-01 - sys_corr_95: 8.90727179e-01 + sys_corr_95: -8.90727179e-01 sys_corr_96: 1.28075439e-01 - sys_corr_97: 5.42037820e-01 - sys_corr_98: 2.05062984e-01 + sys_corr_97: -5.42037820e-01 + sys_corr_98: -2.05062984e-01 sys_corr_99: 3.90012636e-02 - sys_corr_100: -2.86129888e-01 - sys_corr_101: -6.67658839e-01 - sys_corr_102: -5.07491552e-01 - sys_corr_103: 5.18000938e-01 - sys_corr_104: 5.55419799e-01 - sys_corr_105: -2.48386191e-01 + sys_corr_100: 2.48386191e-01 + sys_corr_101: 2.86129888e-01 + sys_corr_102: 6.67658839e-01 + sys_corr_103: -5.07491552e-01 + sys_corr_104: -5.18000938e-01 + sys_corr_105: -5.55419799e-01 sys_corr_106: -3.15493210e-01 sys_corr_107: -1.53447595e-01 - sys_corr_108: 7.43931290e-02 - sys_corr_109: -1.91324489e-01 - sys_corr_110: -8.01932465e-04 - sys_corr_111: 1.02304360e-01 - sys_corr_112: -8.41950011e-02 - sys_corr_113: -1.01451853e-01 - sys_corr_114: 1.14029876e-03 - sys_corr_115: 1.29277615e-02 + sys_corr_108: -1.91324489e-01 + sys_corr_109: -7.43931290e-02 + sys_corr_110: -1.02304360e-01 + sys_corr_111: 8.01932465e-04 + sys_corr_112: 8.41950011e-02 + sys_corr_113: 1.01451853e-01 + sys_corr_114: -1.14029876e-03 + sys_corr_115: -1.29277615e-02 sys_corr_116: -2.97255441e-02 - sys_corr_117: -3.21294448e-02 + sys_corr_117: 3.21294448e-02 sys_corr_118: 6.98683056e-02 sys_corr_119: 7.48851328e-03 sys_corr_120: 1.74425967e-02 sys_corr_121: 4.36857071e-04 - sys_corr_122: 5.39945620e-03 - sys_corr_123: -1.53270925e-03 - sys_corr_124: -3.16287737e-02 + sys_corr_122: -1.53270925e-03 + sys_corr_123: -5.39945620e-03 + sys_corr_124: 3.16287737e-02 sys_corr_125: -3.88916267e-03 sys_corr_126: -1.35551723e-03 - sys_corr_127: 4.14732416e-01 - sys_corr_128: 1.27162896e-01 - sys_corr_129: -6.43118557e-02 - sys_corr_130: -4.75118618e-03 - sys_corr_131: -1.12953341e-02 + sys_corr_127: -4.14732416e-01 + sys_corr_128: -1.27162896e-01 + sys_corr_129: 6.43118557e-02 + sys_corr_130: 4.75118618e-03 + sys_corr_131: 1.12953341e-02 sys_corr_132: 1.60325370e-02 stat: 0.0 luminosity: 2.47644386e+02 @@ -8048,17 +8048,17 @@ bins: sys_corr_6: -1.31181984e+02 sys_corr_7: 2.91078441e+01 sys_corr_8: 1.35691604e+01 - sys_corr_9: 1.34261637e+01 - sys_corr_10: 3.30514850e+00 + sys_corr_9: -1.34261637e+01 + sys_corr_10: -3.30514850e+00 sys_corr_11: 1.15502289e+01 - sys_corr_12: 2.93456901e+01 - sys_corr_13: -1.74987424e+01 + sys_corr_12: -2.93456901e+01 + sys_corr_13: 1.74987424e+01 sys_corr_14: 7.86426047e+00 sys_corr_15: 5.51132073e+00 sys_corr_16: -3.86036699e+00 - sys_corr_17: 2.29820679e+00 + sys_corr_17: -2.29820679e+00 sys_corr_18: 2.69865789e+00 - sys_corr_19: 3.63650621e+00 + sys_corr_19: -3.63650621e+00 sys_corr_20: 8.99348532e-01 sys_corr_21: -7.11997433e+00 sys_corr_22: -2.68629519e+01 @@ -8074,103 +8074,103 @@ bins: sys_corr_32: -5.23006337e+00 sys_corr_33: 3.15900705e+00 sys_corr_34: 2.95995470e+00 - sys_corr_35: -2.30255579e+01 - sys_corr_36: 1.70279769e+01 + sys_corr_35: 2.30255579e+01 + sys_corr_36: -1.70279769e+01 sys_corr_37: 1.54633910e+01 sys_corr_38: 4.10855397e+00 - sys_corr_39: -5.36021892e-01 - sys_corr_40: 2.69774700e+00 - sys_corr_41: 1.75479582e+00 + sys_corr_39: 5.36021892e-01 + sys_corr_40: -2.69774700e+00 + sys_corr_41: -1.75479582e+00 sys_corr_42: -2.10880852e+01 sys_corr_43: 8.56537440e-01 sys_corr_44: 2.55043346e+01 sys_corr_45: -9.11348833e+00 - sys_corr_46: -2.04404018e+00 - sys_corr_47: 1.71450662e+01 + sys_corr_46: 2.04404018e+00 + sys_corr_47: -1.71450662e+01 sys_corr_48: -2.12671985e+01 sys_corr_49: 2.37430930e+01 sys_corr_50: -1.38761671e+01 - sys_corr_51: -8.98932699e+00 - sys_corr_52: -2.07634114e+01 - sys_corr_53: -2.36183755e+00 + sys_corr_51: 8.98932699e+00 + sys_corr_52: 2.07634114e+01 + sys_corr_53: 2.36183755e+00 sys_corr_54: -1.76606420e+01 sys_corr_55: 2.54363305e-01 - sys_corr_56: -1.54116306e+01 + sys_corr_56: 1.54116306e+01 sys_corr_57: -6.40318600e+00 - sys_corr_58: -1.36897983e+00 + sys_corr_58: 1.36897983e+00 sys_corr_59: 1.57496200e+01 sys_corr_60: 9.37917498e+00 - sys_corr_61: -4.05072076e+00 - sys_corr_62: 2.61864277e+01 + sys_corr_61: 4.05072076e+00 + sys_corr_62: -2.61864277e+01 sys_corr_63: -6.63948614e+00 sys_corr_64: 1.05074745e+01 - sys_corr_65: -7.36135479e+00 - sys_corr_66: 2.59253678e+01 - sys_corr_67: -3.02593408e+01 + sys_corr_65: 7.36135479e+00 + sys_corr_66: -2.59253678e+01 + sys_corr_67: 3.02593408e+01 sys_corr_68: -8.40893671e+00 sys_corr_69: 3.27428535e+01 sys_corr_70: 1.89177108e+01 - sys_corr_71: 2.64080111e+01 - sys_corr_72: -1.97313812e+01 + sys_corr_71: -2.64080111e+01 + sys_corr_72: 1.97313812e+01 sys_corr_73: -5.87402730e+01 sys_corr_74: 1.65771036e+01 - sys_corr_75: 4.02004350e-01 - sys_corr_76: 8.38060099e+00 + sys_corr_75: -4.02004350e-01 + sys_corr_76: -8.38060099e+00 sys_corr_77: 1.40348820e+01 sys_corr_78: -3.28755457e+01 sys_corr_79: -1.31736267e+02 - sys_corr_80: 1.18526072e+01 + sys_corr_80: -1.18526072e+01 sys_corr_81: -1.15998072e+02 - sys_corr_82: -1.02038268e+01 + sys_corr_82: 1.02038268e+01 sys_corr_83: -2.04518575e+01 sys_corr_84: -1.99824298e+01 sys_corr_85: -1.18952689e+01 - sys_corr_86: -3.48986723e+01 - sys_corr_87: -6.22857618e+01 + sys_corr_86: 3.48986723e+01 + sys_corr_87: 6.22857618e+01 sys_corr_88: -7.35028892e+00 sys_corr_89: 1.07188362e+00 - sys_corr_90: 2.01776011e+00 - sys_corr_91: 3.77077414e+00 - sys_corr_92: -5.19784407e+01 + sys_corr_90: -3.77077414e+00 + sys_corr_91: -2.01776011e+00 + sys_corr_92: 5.19784407e+01 sys_corr_93: -7.74105495e-02 sys_corr_94: 5.66154489e-01 - sys_corr_95: -3.09049021e+00 + sys_corr_95: 3.09049021e+00 sys_corr_96: -7.81530315e-01 - sys_corr_97: 6.54284814e+00 - sys_corr_98: 1.90428479e+00 + sys_corr_97: -6.54284814e+00 + sys_corr_98: -1.90428479e+00 sys_corr_99: 2.01421046e+00 - sys_corr_100: 1.98744194e+00 - sys_corr_101: 4.95997532e+00 - sys_corr_102: 2.11239339e+01 - sys_corr_103: -3.86941587e+00 - sys_corr_104: -1.00455981e+01 - sys_corr_105: 1.30474745e+00 + sys_corr_100: -1.30474745e+00 + sys_corr_101: -1.98744194e+00 + sys_corr_102: -4.95997532e+00 + sys_corr_103: 2.11239339e+01 + sys_corr_104: 3.86941587e+00 + sys_corr_105: 1.00455981e+01 sys_corr_106: 1.75135885e+00 sys_corr_107: 5.09160496e-01 - sys_corr_108: 5.42085243e-02 - sys_corr_109: -6.86626176e-02 - sys_corr_110: 3.16182427e+00 - sys_corr_111: -6.31769750e-02 - sys_corr_112: -1.64222744e-01 - sys_corr_113: -1.86402632e-01 - sys_corr_114: -1.34716772e-04 - sys_corr_115: 1.40371255e-01 + sys_corr_108: -6.86626176e-02 + sys_corr_109: -5.42085243e-02 + sys_corr_110: 6.31769750e-02 + sys_corr_111: -3.16182427e+00 + sys_corr_112: 1.64222744e-01 + sys_corr_113: 1.86402632e-01 + sys_corr_114: 1.34716772e-04 + sys_corr_115: -1.40371255e-01 sys_corr_116: -8.29813774e-02 - sys_corr_117: -8.14869577e-02 + sys_corr_117: 8.14869577e-02 sys_corr_118: 1.54399758e-01 sys_corr_119: 6.79083962e-03 sys_corr_120: 2.35176147e-02 sys_corr_121: -1.89528049e-03 - sys_corr_122: 3.21001497e-02 - sys_corr_123: 1.66656507e-02 - sys_corr_124: -7.33622693e-02 + sys_corr_122: 1.66656507e-02 + sys_corr_123: -3.21001497e-02 + sys_corr_124: 7.33622693e-02 sys_corr_125: -3.10157500e-02 sys_corr_126: -3.87534413e-03 - sys_corr_127: 2.58494967e-02 - sys_corr_128: -2.16000809e-01 - sys_corr_129: -1.30501358e-01 - sys_corr_130: -5.28255820e-03 - sys_corr_131: -3.42529851e-02 + sys_corr_127: -2.58494967e-02 + sys_corr_128: 2.16000809e-01 + sys_corr_129: 1.30501358e-01 + sys_corr_130: 5.28255820e-03 + sys_corr_131: 3.42529851e-02 sys_corr_132: 3.93517717e-02 stat: 0.0 luminosity: 2.48515300e+02 @@ -8182,17 +8182,17 @@ bins: sys_corr_6: -1.07790424e+02 sys_corr_7: 2.82517624e+01 sys_corr_8: 1.75325623e+01 - sys_corr_9: 2.12160401e+01 - sys_corr_10: 1.59443838e+00 + sys_corr_9: -2.12160401e+01 + sys_corr_10: -1.59443838e+00 sys_corr_11: 3.00053369e+01 - sys_corr_12: 3.26835280e+01 - sys_corr_13: -2.23006643e+01 + sys_corr_12: -3.26835280e+01 + sys_corr_13: 2.23006643e+01 sys_corr_14: 6.03243622e+00 sys_corr_15: 3.60628383e+00 sys_corr_16: -7.73827809e+00 - sys_corr_17: -3.13594630e+00 + sys_corr_17: 3.13594630e+00 sys_corr_18: 1.97909853e+00 - sys_corr_19: -3.86015359e+00 + sys_corr_19: 3.86015359e+00 sys_corr_20: -5.80656153e+00 sys_corr_21: -8.29837844e+00 sys_corr_22: -3.78228956e+01 @@ -8208,103 +8208,103 @@ bins: sys_corr_32: -1.24555979e+01 sys_corr_33: -3.55175735e+00 sys_corr_34: 2.08007278e+01 - sys_corr_35: -1.65162818e+01 - sys_corr_36: 1.09588174e+01 + sys_corr_35: 1.65162818e+01 + sys_corr_36: -1.09588174e+01 sys_corr_37: 2.24586370e-01 sys_corr_38: 1.64671328e+01 - sys_corr_39: 1.15391328e+01 - sys_corr_40: 3.43122096e+00 - sys_corr_41: 1.56284339e+01 + sys_corr_39: -1.15391328e+01 + sys_corr_40: -3.43122096e+00 + sys_corr_41: -1.56284339e+01 sys_corr_42: -3.47968726e+00 sys_corr_43: 1.61073283e+01 sys_corr_44: -1.99831118e+01 sys_corr_45: 4.37211663e+00 - sys_corr_46: -5.98146343e-02 - sys_corr_47: 1.43303627e+01 + sys_corr_46: 5.98146343e-02 + sys_corr_47: -1.43303627e+01 sys_corr_48: -1.65953293e+01 sys_corr_49: 1.90308133e+01 sys_corr_50: -1.77578753e+01 - sys_corr_51: 1.69685746e+01 - sys_corr_52: -9.55414354e+00 - sys_corr_53: -2.91275722e+01 + sys_corr_51: -1.69685746e+01 + sys_corr_52: 9.55414354e+00 + sys_corr_53: 2.91275722e+01 sys_corr_54: 1.24196469e+01 sys_corr_55: 1.28618337e+01 - sys_corr_56: 2.97448857e+00 + sys_corr_56: -2.97448857e+00 sys_corr_57: -2.54335587e+01 - sys_corr_58: 1.20750113e+01 + sys_corr_58: -1.20750113e+01 sys_corr_59: -9.04379152e+00 sys_corr_60: -8.28710611e+00 - sys_corr_61: 1.12295173e+01 - sys_corr_62: 1.82281006e+01 + sys_corr_61: -1.12295173e+01 + sys_corr_62: -1.82281006e+01 sys_corr_63: 1.51983970e+01 sys_corr_64: -6.39763985e-01 - sys_corr_65: -2.18127796e+01 - sys_corr_66: 1.54074354e+00 - sys_corr_67: -3.11943687e+00 + sys_corr_65: 2.18127796e+01 + sys_corr_66: -1.54074354e+00 + sys_corr_67: 3.11943687e+00 sys_corr_68: 7.13027149e+01 sys_corr_69: -4.46454637e+00 sys_corr_70: 2.11833791e+01 - sys_corr_71: 1.55031617e+01 - sys_corr_72: -1.86556741e+00 + sys_corr_71: -1.55031617e+01 + sys_corr_72: 1.86556741e+00 sys_corr_73: -5.72121464e+01 sys_corr_74: 7.21089717e+00 - sys_corr_75: 5.34879339e+01 - sys_corr_76: 5.07491876e-01 + sys_corr_75: -5.34879339e+01 + sys_corr_76: -5.07491876e-01 sys_corr_77: 1.04170740e+02 sys_corr_78: -8.61915994e+00 sys_corr_79: 1.28842663e+02 - sys_corr_80: -9.17532193e-01 + sys_corr_80: 9.17532193e-01 sys_corr_81: -6.36552835e+01 - sys_corr_82: 3.96082948e+01 + sys_corr_82: -3.96082948e+01 sys_corr_83: -3.85479459e+01 sys_corr_84: -1.12845773e+01 sys_corr_85: 1.10240044e+01 - sys_corr_86: -3.55888748e+01 - sys_corr_87: -8.43242023e+00 + sys_corr_86: 3.55888748e+01 + sys_corr_87: 8.43242023e+00 sys_corr_88: -2.62429570e+01 sys_corr_89: -1.92607703e+00 - sys_corr_90: -8.45893523e+00 - sys_corr_91: -6.96589403e+00 - sys_corr_92: -2.59285822e+01 + sys_corr_90: 6.96589403e+00 + sys_corr_91: 8.45893523e+00 + sys_corr_92: 2.59285822e+01 sys_corr_93: 7.77197104e-01 sys_corr_94: 2.25525417e+00 - sys_corr_95: -2.98098058e+00 + sys_corr_95: 2.98098058e+00 sys_corr_96: -2.98400820e-01 - sys_corr_97: 3.97879134e+00 - sys_corr_98: 1.43871172e+00 + sys_corr_97: -3.97879134e+00 + sys_corr_98: -1.43871172e+00 sys_corr_99: 1.23388894e+00 - sys_corr_100: -1.05392948e-02 - sys_corr_101: 2.74674984e-01 - sys_corr_102: 7.14800325e-01 - sys_corr_103: 4.57201166e-01 - sys_corr_104: -1.70185481e+00 - sys_corr_105: -3.98175323e-01 + sys_corr_100: 3.98175323e-01 + sys_corr_101: 1.05392948e-02 + sys_corr_102: -2.74674984e-01 + sys_corr_103: 7.14800325e-01 + sys_corr_104: -4.57201166e-01 + sys_corr_105: 1.70185481e+00 sys_corr_106: -2.47454507e-01 sys_corr_107: 2.99395123e-01 - sys_corr_108: -1.48707299e-01 - sys_corr_109: 1.65993835e-01 - sys_corr_110: 3.21715354e-01 - sys_corr_111: 1.43577629e-01 - sys_corr_112: -2.73354265e-02 - sys_corr_113: -1.42807681e-01 - sys_corr_114: 2.19048167e-03 - sys_corr_115: -2.54426358e-03 + sys_corr_108: 1.65993835e-01 + sys_corr_109: 1.48707299e-01 + sys_corr_110: -1.43577629e-01 + sys_corr_111: -3.21715354e-01 + sys_corr_112: 2.73354265e-02 + sys_corr_113: 1.42807681e-01 + sys_corr_114: -2.19048167e-03 + sys_corr_115: 2.54426358e-03 sys_corr_116: -1.05353699e-01 - sys_corr_117: -5.72292551e-02 + sys_corr_117: 5.72292551e-02 sys_corr_118: 1.50381162e-01 sys_corr_119: 9.66541775e-03 sys_corr_120: 4.33977156e-02 sys_corr_121: 9.59698157e-03 - sys_corr_122: 3.91354102e-02 - sys_corr_123: 1.18217731e-02 - sys_corr_124: -1.35455395e-01 + sys_corr_122: 1.18217731e-02 + sys_corr_123: -3.91354102e-02 + sys_corr_124: 1.35455395e-01 sys_corr_125: -4.24313141e-02 sys_corr_126: -6.38184307e-04 - sys_corr_127: -2.28717387e-01 - sys_corr_128: 1.15247414e-01 - sys_corr_129: -3.12815889e-02 - sys_corr_130: -1.61614181e-02 - sys_corr_131: -3.16601122e-02 + sys_corr_127: 2.28717387e-01 + sys_corr_128: -1.15247414e-01 + sys_corr_129: 3.12815889e-02 + sys_corr_130: 1.61614181e-02 + sys_corr_131: 3.16601122e-02 sys_corr_132: 8.09434959e-02 stat: 0.0 luminosity: 2.45734258e+02 @@ -8316,17 +8316,17 @@ bins: sys_corr_6: -1.12372336e+02 sys_corr_7: 2.14604089e+01 sys_corr_8: 1.20084417e+01 - sys_corr_9: 1.80347786e+01 - sys_corr_10: 1.39390619e-02 + sys_corr_9: -1.80347786e+01 + sys_corr_10: -1.39390619e-02 sys_corr_11: 1.21781686e+01 - sys_corr_12: 2.28504852e+01 - sys_corr_13: -1.80031555e+01 + sys_corr_12: -2.28504852e+01 + sys_corr_13: 1.80031555e+01 sys_corr_14: -5.97809933e+00 sys_corr_15: 8.63815393e+00 sys_corr_16: -7.75678207e-01 - sys_corr_17: 6.17424644e+00 + sys_corr_17: -6.17424644e+00 sys_corr_18: -4.20283927e+00 - sys_corr_19: -1.08702277e+01 + sys_corr_19: 1.08702277e+01 sys_corr_20: -1.34288415e+01 sys_corr_21: -9.26265865e+00 sys_corr_22: -4.48130781e+01 @@ -8342,103 +8342,103 @@ bins: sys_corr_32: 3.91145620e+00 sys_corr_33: 1.08155917e+01 sys_corr_34: -9.44584834e+00 - sys_corr_35: -1.15546945e+01 - sys_corr_36: 5.45081676e+00 + sys_corr_35: 1.15546945e+01 + sys_corr_36: -5.45081676e+00 sys_corr_37: -1.06903957e+00 sys_corr_38: -7.09613569e+00 - sys_corr_39: 1.75482621e+01 - sys_corr_40: -1.25747814e+00 - sys_corr_41: -3.51981738e-01 + sys_corr_39: -1.75482621e+01 + sys_corr_40: 1.25747814e+00 + sys_corr_41: 3.51981738e-01 sys_corr_42: -5.55736434e+00 sys_corr_43: -1.83244055e+00 sys_corr_44: -1.86094840e+01 sys_corr_45: -4.08600391e+01 - sys_corr_46: 7.67336862e+00 - sys_corr_47: 2.03754220e+01 + sys_corr_46: -7.67336862e+00 + sys_corr_47: -2.03754220e+01 sys_corr_48: -1.45035364e+01 sys_corr_49: 1.60241813e+01 sys_corr_50: -6.36358006e+00 - sys_corr_51: 1.04886305e+01 - sys_corr_52: -1.08510688e+01 - sys_corr_53: -9.83454120e+00 + sys_corr_51: -1.04886305e+01 + sys_corr_52: 1.08510688e+01 + sys_corr_53: 9.83454120e+00 sys_corr_54: 1.24573039e+01 sys_corr_55: 6.03129450e+00 - sys_corr_56: -1.63374660e+01 + sys_corr_56: 1.63374660e+01 sys_corr_57: -8.67846321e+00 - sys_corr_58: 1.97132777e+01 + sys_corr_58: -1.97132777e+01 sys_corr_59: 5.08442567e+00 sys_corr_60: -6.70523894e+00 - sys_corr_61: 2.23666397e+01 - sys_corr_62: 3.45030087e+00 + sys_corr_61: -2.23666397e+01 + sys_corr_62: -3.45030087e+00 sys_corr_63: -1.14668316e+01 sys_corr_64: 2.02994563e+01 - sys_corr_65: -1.45353382e+01 - sys_corr_66: 1.39262522e+01 - sys_corr_67: -1.59395773e+01 + sys_corr_65: 1.45353382e+01 + sys_corr_66: -1.39262522e+01 + sys_corr_67: 1.59395773e+01 sys_corr_68: 2.74940942e+01 sys_corr_69: -6.07103210e+00 sys_corr_70: 1.37758129e+01 - sys_corr_71: -5.18326506e+00 - sys_corr_72: -2.17726661e+01 + sys_corr_71: 5.18326506e+00 + sys_corr_72: 2.17726661e+01 sys_corr_73: 3.50327556e+01 sys_corr_74: 5.38746637e+00 - sys_corr_75: -1.28776935e+02 - sys_corr_76: 4.32027954e+01 + sys_corr_75: 1.28776935e+02 + sys_corr_76: -4.32027954e+01 sys_corr_77: -5.27905313e+01 sys_corr_78: -3.02167346e+01 sys_corr_79: 7.71854762e+01 - sys_corr_80: 5.16347114e+00 + sys_corr_80: -5.16347114e+00 sys_corr_81: -2.30520223e+01 - sys_corr_82: -5.02982486e+01 + sys_corr_82: 5.02982486e+01 sys_corr_83: 1.52770387e+01 sys_corr_84: 2.54435688e+01 sys_corr_85: 2.42142415e+01 - sys_corr_86: 2.46236393e+01 - sys_corr_87: -1.25866499e+02 + sys_corr_86: -2.46236393e+01 + sys_corr_87: 1.25866499e+02 sys_corr_88: 2.31093595e+01 sys_corr_89: -5.00159938e+00 - sys_corr_90: -1.05717602e+00 - sys_corr_91: 2.88119827e+00 - sys_corr_92: -2.41118279e+01 + sys_corr_90: -2.88119827e+00 + sys_corr_91: 1.05717602e+00 + sys_corr_92: 2.41118279e+01 sys_corr_93: 1.77075550e-01 sys_corr_94: 8.43257571e-01 - sys_corr_95: -1.52689567e+00 + sys_corr_95: 1.52689567e+00 sys_corr_96: -2.97007122e-01 - sys_corr_97: 9.42791574e-01 - sys_corr_98: 1.22338292e-01 + sys_corr_97: -9.42791574e-01 + sys_corr_98: -1.22338292e-01 sys_corr_99: 5.61855505e-01 - sys_corr_100: -1.65088950e-01 - sys_corr_101: -7.13899036e-01 - sys_corr_102: -1.56965181e+00 - sys_corr_103: 6.47070467e-01 - sys_corr_104: -2.42105571e-02 - sys_corr_105: 5.46329450e-02 + sys_corr_100: -5.46329450e-02 + sys_corr_101: 1.65088950e-01 + sys_corr_102: 7.13899036e-01 + sys_corr_103: -1.56965181e+00 + sys_corr_104: -6.47070467e-01 + sys_corr_105: 2.42105571e-02 sys_corr_106: -2.44869443e-01 sys_corr_107: 2.38283693e-01 - sys_corr_108: -1.15501192e-03 - sys_corr_109: 6.91341342e-02 - sys_corr_110: 5.72112541e-02 - sys_corr_111: -1.57035606e-01 - sys_corr_112: 9.20208597e-02 - sys_corr_113: -1.00712498e-01 - sys_corr_114: 1.78967304e-03 - sys_corr_115: 4.54891346e-02 + sys_corr_108: 6.91341342e-02 + sys_corr_109: 1.15501192e-03 + sys_corr_110: 1.57035606e-01 + sys_corr_111: -5.72112541e-02 + sys_corr_112: -9.20208597e-02 + sys_corr_113: 1.00712498e-01 + sys_corr_114: -1.78967304e-03 + sys_corr_115: -4.54891346e-02 sys_corr_116: -6.02504421e-02 - sys_corr_117: -3.94601129e-02 + sys_corr_117: 3.94601129e-02 sys_corr_118: 1.52470153e-01 sys_corr_119: 2.87703694e-03 sys_corr_120: 2.21386413e-02 sys_corr_121: 6.79970288e-03 - sys_corr_122: 1.17556205e-02 - sys_corr_123: 1.06395298e-02 - sys_corr_124: -8.93520258e-02 + sys_corr_122: 1.06395298e-02 + sys_corr_123: -1.17556205e-02 + sys_corr_124: 8.93520258e-02 sys_corr_125: -1.93257748e-02 sys_corr_126: 3.38696097e-03 - sys_corr_127: 4.80256573e-01 - sys_corr_128: 1.21121915e-01 - sys_corr_129: -1.12837113e-01 - sys_corr_130: 1.22527415e-03 - sys_corr_131: -1.79932493e-02 + sys_corr_127: -4.80256573e-01 + sys_corr_128: -1.21121915e-01 + sys_corr_129: 1.12837113e-01 + sys_corr_130: -1.22527415e-03 + sys_corr_131: 1.79932493e-02 sys_corr_132: 2.56196072e-02 stat: 0.0 luminosity: 2.36999664e+02 @@ -8450,17 +8450,17 @@ bins: sys_corr_6: -1.05567557e+02 sys_corr_7: 1.33611648e+01 sys_corr_8: 1.06339876e+01 - sys_corr_9: 1.56825867e+01 - sys_corr_10: -1.31650241e+00 + sys_corr_9: -1.56825867e+01 + sys_corr_10: 1.31650241e+00 sys_corr_11: 1.05762195e+01 - sys_corr_12: 2.09200651e+01 - sys_corr_13: -1.15564566e+01 + sys_corr_12: -2.09200651e+01 + sys_corr_13: 1.15564566e+01 sys_corr_14: 7.63394399e+00 sys_corr_15: 2.47406445e+00 sys_corr_16: 3.21356328e-01 - sys_corr_17: 1.00029900e+01 + sys_corr_17: -1.00029900e+01 sys_corr_18: -8.71109592e-01 - sys_corr_19: -8.06767338e+00 + sys_corr_19: 8.06767338e+00 sys_corr_20: -1.59882180e+01 sys_corr_21: -8.98940970e+00 sys_corr_22: -5.55725720e+01 @@ -8476,103 +8476,103 @@ bins: sys_corr_32: 1.48266133e+01 sys_corr_33: 1.12333384e+01 sys_corr_34: 7.06685267e+00 - sys_corr_35: -3.36526486e+00 - sys_corr_36: 1.35583574e+00 + sys_corr_35: 3.36526486e+00 + sys_corr_36: -1.35583574e+00 sys_corr_37: -1.35781447e+01 sys_corr_38: -5.45105239e+00 - sys_corr_39: -2.93924516e+01 - sys_corr_40: 3.50496742e+00 - sys_corr_41: 1.52654582e+00 + sys_corr_39: 2.93924516e+01 + sys_corr_40: -3.50496742e+00 + sys_corr_41: -1.52654582e+00 sys_corr_42: -4.59836961e+00 sys_corr_43: 1.35589741e+00 sys_corr_44: -1.63054749e+01 sys_corr_45: 7.40855944e+00 - sys_corr_46: -1.88883461e+00 - sys_corr_47: -6.70017499e+00 + sys_corr_46: 1.88883461e+00 + sys_corr_47: 6.70017499e+00 sys_corr_48: -1.89636442e+01 sys_corr_49: 3.50306578e+01 sys_corr_50: -2.89716460e+01 - sys_corr_51: 2.24605792e+01 - sys_corr_52: 2.40995766e+01 - sys_corr_53: -8.46852873e+00 + sys_corr_51: -2.24605792e+01 + sys_corr_52: -2.40995766e+01 + sys_corr_53: 8.46852873e+00 sys_corr_54: -1.35217626e+01 sys_corr_55: 1.79102721e+01 - sys_corr_56: 1.72652154e+01 + sys_corr_56: -1.72652154e+01 sys_corr_57: -3.85885483e+01 - sys_corr_58: 3.16175552e+01 + sys_corr_58: -3.16175552e+01 sys_corr_59: 1.17218446e+01 sys_corr_60: 4.42383336e+01 - sys_corr_61: 1.41962047e+02 - sys_corr_62: 9.36480218e+01 + sys_corr_61: -1.41962047e+02 + sys_corr_62: -9.36480218e+01 sys_corr_63: 3.60839519e+01 sys_corr_64: 5.37584733e+00 - sys_corr_65: 1.83131105e+02 - sys_corr_66: 1.76429880e+01 - sys_corr_67: 2.65180336e+01 + sys_corr_65: -1.83131105e+02 + sys_corr_66: -1.76429880e+01 + sys_corr_67: -2.65180336e+01 sys_corr_68: 1.45496726e+01 sys_corr_69: -2.11480364e+01 sys_corr_70: -4.33808668e+01 - sys_corr_71: 2.47576280e+01 - sys_corr_72: 3.04856466e+01 + sys_corr_71: -2.47576280e+01 + sys_corr_72: -3.04856466e+01 sys_corr_73: 1.32647936e+01 sys_corr_74: 2.46062184e+00 - sys_corr_75: 6.58895689e+00 - sys_corr_76: -6.26385970e+00 + sys_corr_75: -6.58895689e+00 + sys_corr_76: 6.26385970e+00 sys_corr_77: 3.28411864e+00 sys_corr_78: -2.54093927e+00 sys_corr_79: -1.34619253e+01 - sys_corr_80: -4.38127083e+00 + sys_corr_80: 4.38127083e+00 sys_corr_81: 2.53198084e+00 - sys_corr_82: -3.83459152e+00 + sys_corr_82: 3.83459152e+00 sys_corr_83: 4.40014819e+00 sys_corr_84: 5.84265729e+00 sys_corr_85: 1.08922832e+01 - sys_corr_86: 4.05019389e+00 - sys_corr_87: -2.63411604e+00 + sys_corr_86: -4.05019389e+00 + sys_corr_87: 2.63411604e+00 sys_corr_88: 7.00747126e-01 sys_corr_89: -1.35853263e+00 - sys_corr_90: -3.02407644e+00 - sys_corr_91: -1.06303306e+00 - sys_corr_92: 2.36193341e+00 + sys_corr_90: 1.06303306e+00 + sys_corr_91: 3.02407644e+00 + sys_corr_92: -2.36193341e+00 sys_corr_93: 1.69995955e-01 sys_corr_94: 3.11256088e-01 - sys_corr_95: -4.84178239e-01 + sys_corr_95: 4.84178239e-01 sys_corr_96: 5.52493015e-03 - sys_corr_97: -5.29255720e-01 - sys_corr_98: -1.37402761e-01 + sys_corr_97: 5.29255720e-01 + sys_corr_98: 1.37402761e-01 sys_corr_99: -4.60168623e-01 - sys_corr_100: -6.76355418e-01 - sys_corr_101: -1.08469759e+00 - sys_corr_102: -4.66530131e+00 - sys_corr_103: 8.87139867e-01 - sys_corr_104: 1.87784947e+00 - sys_corr_105: 1.38471850e-01 + sys_corr_100: -1.38471850e-01 + sys_corr_101: 6.76355418e-01 + sys_corr_102: 1.08469759e+00 + sys_corr_103: -4.66530131e+00 + sys_corr_104: -8.87139867e-01 + sys_corr_105: -1.87784947e+00 sys_corr_106: -3.37262244e-01 sys_corr_107: -3.24821367e-01 - sys_corr_108: -1.54111260e-02 - sys_corr_109: 7.07198657e-02 - sys_corr_110: -8.38708487e-01 - sys_corr_111: 1.28885001e-03 - sys_corr_112: 1.13762942e-01 - sys_corr_113: -8.82941771e-02 - sys_corr_114: 1.06545945e-03 - sys_corr_115: -4.55758034e-03 + sys_corr_108: 7.07198657e-02 + sys_corr_109: 1.54111260e-02 + sys_corr_110: -1.28885001e-03 + sys_corr_111: 8.38708487e-01 + sys_corr_112: -1.13762942e-01 + sys_corr_113: 8.82941771e-02 + sys_corr_114: -1.06545945e-03 + sys_corr_115: 4.55758034e-03 sys_corr_116: -2.75224096e-02 - sys_corr_117: -1.96565257e-02 + sys_corr_117: 1.96565257e-02 sys_corr_118: 1.02607432e-01 sys_corr_119: 2.84572029e-03 sys_corr_120: 1.40770144e-02 sys_corr_121: 5.18407147e-03 - sys_corr_122: 1.14410622e-02 - sys_corr_123: 7.60353328e-03 - sys_corr_124: -4.56553976e-02 + sys_corr_122: 7.60353328e-03 + sys_corr_123: -1.14410622e-02 + sys_corr_124: 4.56553976e-02 sys_corr_125: -1.73706374e-02 sys_corr_126: 5.01289757e-04 - sys_corr_127: 3.46134174e-01 - sys_corr_128: 1.09158909e-01 - sys_corr_129: 5.88538542e-02 - sys_corr_130: -4.82419221e-03 - sys_corr_131: -7.41162276e-03 + sys_corr_127: -3.46134174e-01 + sys_corr_128: -1.09158909e-01 + sys_corr_129: -5.88538542e-02 + sys_corr_130: 4.82419221e-03 + sys_corr_131: 7.41162276e-03 sys_corr_132: 4.68906318e-03 stat: 0.0 luminosity: 2.26695942e+02 @@ -8584,17 +8584,17 @@ bins: sys_corr_6: -1.11950238e+02 sys_corr_7: 1.28552577e+01 sys_corr_8: 6.80463376e+00 - sys_corr_9: 1.24568621e+01 - sys_corr_10: -2.42720601e+00 + sys_corr_9: -1.24568621e+01 + sys_corr_10: 2.42720601e+00 sys_corr_11: -1.41777144e+00 - sys_corr_12: 5.87006552e+00 - sys_corr_13: -1.06579423e+01 + sys_corr_12: -5.87006552e+00 + sys_corr_13: 1.06579423e+01 sys_corr_14: 4.36807400e-01 sys_corr_15: 6.31196496e-02 sys_corr_16: -2.73137558e+00 - sys_corr_17: 2.80382764e-01 + sys_corr_17: -2.80382764e-01 sys_corr_18: 3.86293012e+00 - sys_corr_19: -1.77047645e+01 + sys_corr_19: 1.77047645e+01 sys_corr_20: -1.41071663e+01 sys_corr_21: -4.08793858e+00 sys_corr_22: -5.44343250e+01 @@ -8610,103 +8610,103 @@ bins: sys_corr_32: 5.03016965e+00 sys_corr_33: 5.25298957e+00 sys_corr_34: -2.83677735e+00 - sys_corr_35: 4.00528769e+00 - sys_corr_36: -4.50923066e+00 + sys_corr_35: -4.00528769e+00 + sys_corr_36: 4.50923066e+00 sys_corr_37: -2.05116900e+00 sys_corr_38: -2.64704967e+01 - sys_corr_39: 8.09482707e+00 - sys_corr_40: 1.84745254e+00 - sys_corr_41: 8.78347860e+00 + sys_corr_39: -8.09482707e+00 + sys_corr_40: -1.84745254e+00 + sys_corr_41: -8.78347860e+00 sys_corr_42: 4.11771574e+00 sys_corr_43: -9.50278186e+00 sys_corr_44: -1.58430479e+01 sys_corr_45: -8.84613305e+00 - sys_corr_46: -3.16648550e-01 - sys_corr_47: 4.49137552e+00 + sys_corr_46: 3.16648550e-01 + sys_corr_47: -4.49137552e+00 sys_corr_48: 4.86291199e+00 sys_corr_49: 1.37548974e+00 sys_corr_50: -8.28861107e-01 - sys_corr_51: 1.58139619e+01 - sys_corr_52: 3.46118837e+01 - sys_corr_53: -2.20530178e+01 + sys_corr_51: -1.58139619e+01 + sys_corr_52: -3.46118837e+01 + sys_corr_53: 2.20530178e+01 sys_corr_54: 2.90623080e+01 sys_corr_55: 9.09385170e+00 - sys_corr_56: -6.25518201e-01 + sys_corr_56: 6.25518201e-01 sys_corr_57: -8.88397157e+00 - sys_corr_58: 1.63675990e+01 + sys_corr_58: -1.63675990e+01 sys_corr_59: 1.28248916e+00 sys_corr_60: -1.09893458e+01 - sys_corr_61: 1.09694174e+00 - sys_corr_62: -2.82125541e+00 + sys_corr_61: -1.09694174e+00 + sys_corr_62: 2.82125541e+00 sys_corr_63: -5.18765697e+00 sys_corr_64: 1.48775874e+01 - sys_corr_65: -1.97810625e+01 - sys_corr_66: 1.98081005e+01 - sys_corr_67: -6.90511928e+00 + sys_corr_65: 1.97810625e+01 + sys_corr_66: -1.98081005e+01 + sys_corr_67: 6.90511928e+00 sys_corr_68: 5.40181823e+00 sys_corr_69: 2.24214177e+00 sys_corr_70: 1.04160225e+01 - sys_corr_71: 4.71275018e+00 - sys_corr_72: -3.02517610e+01 + sys_corr_71: -4.71275018e+00 + sys_corr_72: 3.02517610e+01 sys_corr_73: -5.83193371e+01 sys_corr_74: 3.31175586e+00 - sys_corr_75: 3.61583822e+01 - sys_corr_76: -1.16658225e+01 + sys_corr_75: -3.61583822e+01 + sys_corr_76: 1.16658225e+01 sys_corr_77: 7.30784401e+01 sys_corr_78: -7.61022075e+00 sys_corr_79: -3.61672662e+01 - sys_corr_80: -3.55864112e+01 + sys_corr_80: 3.55864112e+01 sys_corr_81: 1.21866935e+02 - sys_corr_82: -6.23504750e+01 + sys_corr_82: 6.23504750e+01 sys_corr_83: 8.71830222e+01 sys_corr_84: 1.36035657e+01 sys_corr_85: 1.52685012e+01 - sys_corr_86: -4.64597678e+01 - sys_corr_87: -8.27089973e+01 + sys_corr_86: 4.64597678e+01 + sys_corr_87: 8.27089973e+01 sys_corr_88: -3.66212898e+01 sys_corr_89: -2.61636032e+00 - sys_corr_90: -2.52468988e+00 - sys_corr_91: -4.49028333e+00 - sys_corr_92: -1.10827970e+00 + sys_corr_90: 4.49028333e+00 + sys_corr_91: 2.52468988e+00 + sys_corr_92: 1.10827970e+00 sys_corr_93: 3.37508184e-01 sys_corr_94: 5.34117362e-01 - sys_corr_95: -1.42007131e+00 + sys_corr_95: 1.42007131e+00 sys_corr_96: 4.11331833e-01 - sys_corr_97: 1.40923876e-01 - sys_corr_98: 2.42079414e-01 + sys_corr_97: -1.40923876e-01 + sys_corr_98: -2.42079414e-01 sys_corr_99: 2.72331749e-02 - sys_corr_100: -2.06479070e-01 - sys_corr_101: -5.83883143e-01 - sys_corr_102: -1.22557916e+00 - sys_corr_103: -1.13294755e+00 - sys_corr_104: -1.71500834e-01 - sys_corr_105: 2.74930242e-02 + sys_corr_100: -2.74930242e-02 + sys_corr_101: 2.06479070e-01 + sys_corr_102: 5.83883143e-01 + sys_corr_103: -1.22557916e+00 + sys_corr_104: 1.13294755e+00 + sys_corr_105: 1.71500834e-01 sys_corr_106: 5.12411484e-01 sys_corr_107: -8.47725676e-02 - sys_corr_108: 2.22001083e-01 - sys_corr_109: -3.19025444e-03 - sys_corr_110: -6.35326179e-01 - sys_corr_111: -3.28639625e-02 - sys_corr_112: 7.78286525e-02 - sys_corr_113: 8.07378321e-02 - sys_corr_114: -4.17285321e-05 - sys_corr_115: -1.04788066e-02 + sys_corr_108: -3.19025444e-03 + sys_corr_109: -2.22001083e-01 + sys_corr_110: 3.28639625e-02 + sys_corr_111: 6.35326179e-01 + sys_corr_112: -7.78286525e-02 + sys_corr_113: -8.07378321e-02 + sys_corr_114: 4.17285321e-05 + sys_corr_115: 1.04788066e-02 sys_corr_116: -3.11285624e-02 - sys_corr_117: -1.86383211e-02 + sys_corr_117: 1.86383211e-02 sys_corr_118: -2.27427795e-04 sys_corr_119: 5.71879113e-03 sys_corr_120: 1.84975661e-02 sys_corr_121: 3.57818924e-03 - sys_corr_122: 1.74805630e-02 - sys_corr_123: 1.12314271e-02 - sys_corr_124: -4.32155958e-02 + sys_corr_122: 1.12314271e-02 + sys_corr_123: -1.74805630e-02 + sys_corr_124: 4.32155958e-02 sys_corr_125: -1.44780388e-02 sys_corr_126: 7.81975516e-03 - sys_corr_127: -4.59341853e-01 - sys_corr_128: -8.03025744e-02 - sys_corr_129: 9.26906378e-02 - sys_corr_130: 4.41261013e-03 - sys_corr_131: -1.12780947e-02 + sys_corr_127: 4.59341853e-01 + sys_corr_128: 8.03025744e-02 + sys_corr_129: -9.26906378e-02 + sys_corr_130: -4.41261013e-03 + sys_corr_131: 1.12780947e-02 sys_corr_132: -6.39369950e-02 stat: 0.0 luminosity: 2.14200096e+02 @@ -8718,17 +8718,17 @@ bins: sys_corr_6: -9.47652239e+01 sys_corr_7: 1.31639125e+01 sys_corr_8: 7.60077166e+00 - sys_corr_9: 1.45804707e+01 - sys_corr_10: -3.81085248e+00 + sys_corr_9: -1.45804707e+01 + sys_corr_10: 3.81085248e+00 sys_corr_11: 7.44365613e+00 - sys_corr_12: 6.08879797e+00 - sys_corr_13: -6.56964678e+00 + sys_corr_12: -6.08879797e+00 + sys_corr_13: 6.56964678e+00 sys_corr_14: -1.53426376e+00 sys_corr_15: 3.07093467e+00 sys_corr_16: -4.27483207e+00 - sys_corr_17: 1.39780364e+01 + sys_corr_17: -1.39780364e+01 sys_corr_18: 1.49854849e+01 - sys_corr_19: -7.89471163e+00 + sys_corr_19: 7.89471163e+00 sys_corr_20: -9.95876038e+00 sys_corr_21: -1.42155554e+01 sys_corr_22: -4.94301319e+01 @@ -8744,103 +8744,103 @@ bins: sys_corr_32: -5.09079327e-01 sys_corr_33: -7.38947447e+00 sys_corr_34: 4.01780213e+00 - sys_corr_35: 4.90204992e+00 - sys_corr_36: 8.66442626e+00 + sys_corr_35: -4.90204992e+00 + sys_corr_36: -8.66442626e+00 sys_corr_37: -1.11990181e+01 sys_corr_38: -5.88859329e+00 - sys_corr_39: 3.75921272e+00 - sys_corr_40: -5.72019962e+00 - sys_corr_41: 3.53330819e+00 + sys_corr_39: -3.75921272e+00 + sys_corr_40: 5.72019962e+00 + sys_corr_41: -3.53330819e+00 sys_corr_42: -2.98647813e+00 sys_corr_43: -5.90701438e+00 sys_corr_44: -4.21660626e+00 sys_corr_45: 1.95470450e+01 - sys_corr_46: 1.06516238e+00 - sys_corr_47: 5.43829673e+00 + sys_corr_46: -1.06516238e+00 + sys_corr_47: -5.43829673e+00 sys_corr_48: -1.18503847e+01 sys_corr_49: -2.70532518e+00 sys_corr_50: -7.63733190e-01 - sys_corr_51: -4.17666127e+00 - sys_corr_52: 1.46719021e+00 - sys_corr_53: -2.22126455e+00 + sys_corr_51: 4.17666127e+00 + sys_corr_52: -1.46719021e+00 + sys_corr_53: 2.22126455e+00 sys_corr_54: -6.08305409e+00 sys_corr_55: -4.01618716e+00 - sys_corr_56: -6.65385459e+00 + sys_corr_56: 6.65385459e+00 sys_corr_57: -1.27309217e+01 - sys_corr_58: -1.04182430e+01 + sys_corr_58: 1.04182430e+01 sys_corr_59: -2.54505742e+00 sys_corr_60: 4.62174180e+00 - sys_corr_61: 4.19728684e+00 - sys_corr_62: 1.40192045e+01 + sys_corr_61: -4.19728684e+00 + sys_corr_62: -1.40192045e+01 sys_corr_63: 1.39062641e+01 sys_corr_64: -1.18094757e+00 - sys_corr_65: 1.57969767e+00 - sys_corr_66: 4.74067295e+00 - sys_corr_67: -7.57233274e+00 + sys_corr_65: -1.57969767e+00 + sys_corr_66: -4.74067295e+00 + sys_corr_67: 7.57233274e+00 sys_corr_68: -4.41743777e+00 sys_corr_69: 9.51915847e+00 sys_corr_70: 5.50756481e+00 - sys_corr_71: -4.69674100e+00 - sys_corr_72: -1.66709265e+01 + sys_corr_71: 4.69674100e+00 + sys_corr_72: 1.66709265e+01 sys_corr_73: -1.09623370e+01 sys_corr_74: -1.61245275e+00 - sys_corr_75: -1.30246074e+01 - sys_corr_76: 1.66499220e+01 + sys_corr_75: 1.30246074e+01 + sys_corr_76: -1.66499220e+01 sys_corr_77: 6.97421700e-02 sys_corr_78: 1.90266571e+02 sys_corr_79: 4.08769552e+00 - sys_corr_80: 5.22728066e+01 + sys_corr_80: -5.22728066e+01 sys_corr_81: 1.51665703e-01 - sys_corr_82: -1.70979790e+01 + sys_corr_82: 1.70979790e+01 sys_corr_83: -7.85285383e+00 sys_corr_84: -2.86362020e+01 sys_corr_85: -1.51152966e+01 - sys_corr_86: 2.46073719e+00 - sys_corr_87: -4.05440917e+01 + sys_corr_86: -2.46073719e+00 + sys_corr_87: 4.05440917e+01 sys_corr_88: -7.88868459e+00 sys_corr_89: 2.39945242e-01 - sys_corr_90: -1.19183398e+01 - sys_corr_91: -2.40511125e+01 - sys_corr_92: -6.73628901e+00 + sys_corr_90: 2.40511125e+01 + sys_corr_91: 1.19183398e+01 + sys_corr_92: 6.73628901e+00 sys_corr_93: 3.50747407e-01 sys_corr_94: -6.64818586e-01 - sys_corr_95: -4.21220399e-01 + sys_corr_95: 4.21220399e-01 sys_corr_96: -4.02898805e-02 - sys_corr_97: 1.09221024e+00 - sys_corr_98: 9.92077188e-01 + sys_corr_97: -1.09221024e+00 + sys_corr_98: -9.92077188e-01 sys_corr_99: 9.15737525e-01 - sys_corr_100: 2.45355377e+00 - sys_corr_101: 4.27672384e+00 - sys_corr_102: 1.67693056e+01 - sys_corr_103: -6.04784867e+00 - sys_corr_104: -6.92672380e+00 - sys_corr_105: 2.61030162e+00 + sys_corr_100: -2.61030162e+00 + sys_corr_101: -2.45355377e+00 + sys_corr_102: -4.27672384e+00 + sys_corr_103: 1.67693056e+01 + sys_corr_104: 6.04784867e+00 + sys_corr_105: 6.92672380e+00 sys_corr_106: 1.84936694e+00 sys_corr_107: 1.46138413e+00 - sys_corr_108: 4.04158563e-01 - sys_corr_109: -4.00658240e-02 - sys_corr_110: 1.57356100e-01 - sys_corr_111: -5.32256853e-02 - sys_corr_112: -3.91194131e-02 - sys_corr_113: 1.03862323e-01 - sys_corr_114: -1.61773514e-03 - sys_corr_115: -4.76125006e-02 + sys_corr_108: -4.00658240e-02 + sys_corr_109: -4.04158563e-01 + sys_corr_110: 5.32256853e-02 + sys_corr_111: -1.57356100e-01 + sys_corr_112: 3.91194131e-02 + sys_corr_113: -1.03862323e-01 + sys_corr_114: 1.61773514e-03 + sys_corr_115: 4.76125006e-02 sys_corr_116: -1.93785724e-02 - sys_corr_117: -2.14555956e-02 + sys_corr_117: 2.14555956e-02 sys_corr_118: 1.30850706e-01 sys_corr_119: 8.23955545e-03 sys_corr_120: 2.95906291e-02 sys_corr_121: 7.55062933e-03 - sys_corr_122: 9.44887146e-02 - sys_corr_123: 5.31179366e-02 - sys_corr_124: -9.46416854e-03 + sys_corr_122: 5.31179366e-02 + sys_corr_123: -9.44887146e-02 + sys_corr_124: 9.46416854e-03 sys_corr_125: -5.21882679e-02 sys_corr_126: 2.47331927e-02 - sys_corr_127: -7.58095465e-01 - sys_corr_128: -6.50931720e-01 - sys_corr_129: -1.10781487e-01 - sys_corr_130: 1.05129014e-02 - sys_corr_131: -3.55812931e-02 + sys_corr_127: 7.58095465e-01 + sys_corr_128: 6.50931720e-01 + sys_corr_129: 1.10781487e-01 + sys_corr_130: -1.05129014e-02 + sys_corr_131: 3.55812931e-02 sys_corr_132: -5.77074866e-02 stat: 0.0 luminosity: 2.15637334e+02 @@ -8852,17 +8852,17 @@ bins: sys_corr_6: -8.34595870e+01 sys_corr_7: 1.55548787e+01 sys_corr_8: 7.28316045e+00 - sys_corr_9: 1.37179354e+01 - sys_corr_10: -2.38643577e+00 + sys_corr_9: -1.37179354e+01 + sys_corr_10: 2.38643577e+00 sys_corr_11: 3.84712516e+00 - sys_corr_12: 7.23530878e+00 - sys_corr_13: -4.02861681e+00 + sys_corr_12: -7.23530878e+00 + sys_corr_13: 4.02861681e+00 sys_corr_14: -1.47399255e+00 sys_corr_15: 2.44837563e+00 sys_corr_16: 3.17668180e-02 - sys_corr_17: -5.90196489e+00 + sys_corr_17: 5.90196489e+00 sys_corr_18: 6.76938271e+00 - sys_corr_19: 1.33191874e+00 + sys_corr_19: -1.33191874e+00 sys_corr_20: -7.58134512e+00 sys_corr_21: -1.41985219e+01 sys_corr_22: -4.25831514e+01 @@ -8878,103 +8878,103 @@ bins: sys_corr_32: 2.70971509e+00 sys_corr_33: 2.02535519e+00 sys_corr_34: 8.66100038e-01 - sys_corr_35: 5.73366588e+00 - sys_corr_36: -4.46567606e+00 + sys_corr_35: -5.73366588e+00 + sys_corr_36: 4.46567606e+00 sys_corr_37: -8.60906785e+00 sys_corr_38: -4.92313750e+00 - sys_corr_39: 5.52799748e+00 - sys_corr_40: -7.34295391e+00 - sys_corr_41: 3.88872016e+00 + sys_corr_39: -5.52799748e+00 + sys_corr_40: 7.34295391e+00 + sys_corr_41: -3.88872016e+00 sys_corr_42: 1.46089062e+01 sys_corr_43: -1.01628624e+01 sys_corr_44: -1.12193133e+01 sys_corr_45: 1.71809784e+00 - sys_corr_46: 1.72348261e+00 - sys_corr_47: 6.58401864e+00 + sys_corr_46: -1.72348261e+00 + sys_corr_47: -6.58401864e+00 sys_corr_48: -8.80557251e+00 sys_corr_49: -4.21836062e+00 sys_corr_50: -1.10003231e+01 - sys_corr_51: 2.66622523e+00 - sys_corr_52: 1.21842690e+00 - sys_corr_53: -4.23876729e+00 + sys_corr_51: -2.66622523e+00 + sys_corr_52: -1.21842690e+00 + sys_corr_53: 4.23876729e+00 sys_corr_54: 3.13043459e+00 sys_corr_55: 1.24113033e-01 - sys_corr_56: -8.04712206e+00 + sys_corr_56: 8.04712206e+00 sys_corr_57: -7.63517224e+00 - sys_corr_58: 4.70493756e+00 + sys_corr_58: -4.70493756e+00 sys_corr_59: 6.17849793e+00 sys_corr_60: 1.26937685e+00 - sys_corr_61: 8.14262999e+00 - sys_corr_62: 1.32400474e+00 + sys_corr_61: -8.14262999e+00 + sys_corr_62: -1.32400474e+00 sys_corr_63: 2.75026660e-01 sys_corr_64: 1.11357178e+00 - sys_corr_65: 3.84209479e+00 - sys_corr_66: 1.19764737e+00 - sys_corr_67: 3.70328688e+00 + sys_corr_65: -3.84209479e+00 + sys_corr_66: -1.19764737e+00 + sys_corr_67: -3.70328688e+00 sys_corr_68: 2.78891972e-01 sys_corr_69: -5.27859058e-01 sys_corr_70: -9.97592870e+00 - sys_corr_71: -2.38619391e+00 - sys_corr_72: -8.63111021e+00 + sys_corr_71: 2.38619391e+00 + sys_corr_72: 8.63111021e+00 sys_corr_73: -1.34905537e+01 sys_corr_74: 4.57631722e+00 - sys_corr_75: 5.12918161e+00 - sys_corr_76: 6.48747666e+00 + sys_corr_75: -5.12918161e+00 + sys_corr_76: -6.48747666e+00 sys_corr_77: -3.68121549e+01 sys_corr_78: -4.31821849e+01 sys_corr_79: 2.62704407e+01 - sys_corr_80: 3.39098779e-02 + sys_corr_80: -3.39098779e-02 sys_corr_81: 2.12756068e+01 - sys_corr_82: -1.07966830e+01 + sys_corr_82: 1.07966830e+01 sys_corr_83: 9.32054980e+00 sys_corr_84: -1.34597253e+02 sys_corr_85: -1.17261173e+02 - sys_corr_86: -5.86854313e+00 - sys_corr_87: -2.13703189e+01 + sys_corr_86: 5.86854313e+00 + sys_corr_87: 2.13703189e+01 sys_corr_88: -1.01674033e+01 sys_corr_89: 2.30266399e+01 - sys_corr_90: -1.94811209e+01 - sys_corr_91: -4.17294295e+01 - sys_corr_92: 8.62000695e+00 + sys_corr_90: 4.17294295e+01 + sys_corr_91: 1.94811209e+01 + sys_corr_92: -8.62000695e+00 sys_corr_93: -9.13498181e-02 sys_corr_94: -2.33220626e+00 - sys_corr_95: 2.43425965e-01 + sys_corr_95: -2.43425965e-01 sys_corr_96: 8.40368995e-01 - sys_corr_97: -3.57879507e+00 - sys_corr_98: -1.25965014e+00 + sys_corr_97: 3.57879507e+00 + sys_corr_98: 1.25965014e+00 sys_corr_99: -3.38244382e+00 - sys_corr_100: -9.17738770e-01 - sys_corr_101: -4.04392878e+00 - sys_corr_102: -1.90834225e+01 - sys_corr_103: 1.95677343e+00 - sys_corr_104: 8.05766122e+00 - sys_corr_105: -5.48143243e-01 + sys_corr_100: 5.48143243e-01 + sys_corr_101: 9.17738770e-01 + sys_corr_102: 4.04392878e+00 + sys_corr_103: -1.90834225e+01 + sys_corr_104: -1.95677343e+00 + sys_corr_105: -8.05766122e+00 sys_corr_106: -8.98033073e-01 sys_corr_107: 2.21571934e-01 - sys_corr_108: -6.77236646e-02 - sys_corr_109: 6.86503269e-01 - sys_corr_110: -3.01508427e+00 - sys_corr_111: -3.05212356e-01 - sys_corr_112: 1.89066796e-01 - sys_corr_113: 7.41839996e-02 - sys_corr_114: -4.39392122e-04 - sys_corr_115: -1.15208112e-01 + sys_corr_108: 6.86503269e-01 + sys_corr_109: 6.77236646e-02 + sys_corr_110: 3.05212356e-01 + sys_corr_111: 3.01508427e+00 + sys_corr_112: -1.89066796e-01 + sys_corr_113: -7.41839996e-02 + sys_corr_114: 4.39392122e-04 + sys_corr_115: 1.15208112e-01 sys_corr_116: 2.19288436e-02 - sys_corr_117: 9.53898469e-03 + sys_corr_117: -9.53898469e-03 sys_corr_118: 1.26772728e-02 sys_corr_119: 9.06620669e-03 sys_corr_120: -1.12735141e-02 sys_corr_121: 1.10809792e-02 - sys_corr_122: 1.65350961e-02 - sys_corr_123: 1.50708070e-02 - sys_corr_124: -4.82898716e-02 + sys_corr_122: 1.50708070e-02 + sys_corr_123: -1.65350961e-02 + sys_corr_124: 4.82898716e-02 sys_corr_125: -1.62477513e-02 sys_corr_126: 5.63929205e-03 - sys_corr_127: 7.43676779e-01 - sys_corr_128: -2.56301473e-02 - sys_corr_129: -6.93275166e-02 - sys_corr_130: -1.32627689e-02 - sys_corr_131: 1.10773007e-02 + sys_corr_127: -7.43676779e-01 + sys_corr_128: 2.56301473e-02 + sys_corr_129: 6.93275166e-02 + sys_corr_130: 1.32627689e-02 + sys_corr_131: -1.10773007e-02 sys_corr_132: -4.10241222e-02 stat: 0.0 luminosity: 1.96521116e+02 @@ -8986,17 +8986,17 @@ bins: sys_corr_6: -3.12721652e+01 sys_corr_7: 2.06261621e+01 sys_corr_8: 1.65526166e+01 - sys_corr_9: 2.10704980e+01 - sys_corr_10: 1.63623838e+00 + sys_corr_9: -2.10704980e+01 + sys_corr_10: -1.63623838e+00 sys_corr_11: 1.77092805e+01 - sys_corr_12: 1.76583167e+01 - sys_corr_13: -1.21365122e+01 + sys_corr_12: -1.76583167e+01 + sys_corr_13: 1.21365122e+01 sys_corr_14: -2.61045104e-05 sys_corr_15: 4.41763652e+00 sys_corr_16: 1.47018347e+00 - sys_corr_17: 2.80447077e+00 + sys_corr_17: -2.80447077e+00 sys_corr_18: -3.14388923e+00 - sys_corr_19: -4.57948694e-01 + sys_corr_19: 4.57948694e-01 sys_corr_20: -1.15507155e+01 sys_corr_21: 2.80887637e+00 sys_corr_22: -9.26979501e+00 @@ -9012,103 +9012,103 @@ bins: sys_corr_32: 1.19115303e+00 sys_corr_33: 3.02876113e+00 sys_corr_34: 9.38430105e+00 - sys_corr_35: 3.25871792e+00 - sys_corr_36: 1.01381052e+01 + sys_corr_35: -3.25871792e+00 + sys_corr_36: -1.01381052e+01 sys_corr_37: -9.46159788e+00 sys_corr_38: -6.30275915e+00 - sys_corr_39: 5.99584386e+00 - sys_corr_40: -1.23730314e+01 - sys_corr_41: 1.89366150e+01 + sys_corr_39: -5.99584386e+00 + sys_corr_40: 1.23730314e+01 + sys_corr_41: -1.89366150e+01 sys_corr_42: 4.01392374e+00 sys_corr_43: -1.18355011e+01 sys_corr_44: -1.43550070e+01 sys_corr_45: 8.27227598e-01 - sys_corr_46: 1.24643134e+01 - sys_corr_47: -5.53138956e+00 + sys_corr_46: -1.24643134e+01 + sys_corr_47: 5.53138956e+00 sys_corr_48: -1.19139161e+01 sys_corr_49: 2.80643649e+00 sys_corr_50: -1.27310287e+01 - sys_corr_51: 3.35666515e-01 - sys_corr_52: 7.36886891e+00 - sys_corr_53: -1.95281082e+00 + sys_corr_51: -3.35666515e-01 + sys_corr_52: -7.36886891e+00 + sys_corr_53: 1.95281082e+00 sys_corr_54: 1.37655753e+00 sys_corr_55: 4.72387880e-01 - sys_corr_56: -2.20616215e+01 + sys_corr_56: 2.20616215e+01 sys_corr_57: -1.75006408e+01 - sys_corr_58: -1.43659840e+01 + sys_corr_58: 1.43659840e+01 sys_corr_59: -1.14007339e+01 sys_corr_60: -1.72505867e+00 - sys_corr_61: 2.15754248e+01 - sys_corr_62: 6.68585292e+01 + sys_corr_61: -2.15754248e+01 + sys_corr_62: -6.68585292e+01 sys_corr_63: 2.87065880e+01 sys_corr_64: 9.15587036e-01 - sys_corr_65: -2.61283521e+01 - sys_corr_66: 7.97302906e+01 - sys_corr_67: -3.78467121e+01 + sys_corr_65: 2.61283521e+01 + sys_corr_66: -7.97302906e+01 + sys_corr_67: 3.78467121e+01 sys_corr_68: -6.37187011e+01 sys_corr_69: -1.06894720e+02 sys_corr_70: 1.89541657e+02 - sys_corr_71: 5.81100551e-01 - sys_corr_72: 6.59773085e+00 + sys_corr_71: -5.81100551e-01 + sys_corr_72: -6.59773085e+00 sys_corr_73: 3.25621986e+01 sys_corr_74: -1.01198116e+01 - sys_corr_75: 1.75018900e+01 - sys_corr_76: -3.90862527e+01 + sys_corr_75: -1.75018900e+01 + sys_corr_76: 3.90862527e+01 sys_corr_77: -1.26941735e+01 sys_corr_78: -3.21683848e+00 sys_corr_79: 4.14077391e+00 - sys_corr_80: -4.54557057e-01 + sys_corr_80: 4.54557057e-01 sys_corr_81: -8.32186404e-01 - sys_corr_82: -5.73235906e+00 + sys_corr_82: 5.73235906e+00 sys_corr_83: 6.04548405e+00 sys_corr_84: -7.88720856e-01 sys_corr_85: -3.84543753e+00 - sys_corr_86: -1.58923369e+00 - sys_corr_87: 2.13589109e+01 + sys_corr_86: 1.58923369e+00 + sys_corr_87: -2.13589109e+01 sys_corr_88: 1.20840022e+01 sys_corr_89: 3.26065804e+00 - sys_corr_90: -5.68182827e+00 - sys_corr_91: 4.67036031e+00 - sys_corr_92: 7.65732432e+00 + sys_corr_90: -4.67036031e+00 + sys_corr_91: 5.68182827e+00 + sys_corr_92: -7.65732432e+00 sys_corr_93: -1.77483057e-01 sys_corr_94: -1.29530305e+00 - sys_corr_95: -6.10591465e-01 + sys_corr_95: 6.10591465e-01 sys_corr_96: 5.33675640e-02 - sys_corr_97: 6.39688602e-01 - sys_corr_98: 2.51638648e-01 + sys_corr_97: -6.39688602e-01 + sys_corr_98: -2.51638648e-01 sys_corr_99: 2.78876218e-01 - sys_corr_100: 2.24978224e-01 - sys_corr_101: 3.14356930e-01 - sys_corr_102: 3.84236138e-01 - sys_corr_103: -6.77826983e-01 - sys_corr_104: -2.09505290e-01 - sys_corr_105: 6.61539851e-01 + sys_corr_100: -6.61539851e-01 + sys_corr_101: -2.24978224e-01 + sys_corr_102: -3.14356930e-01 + sys_corr_103: 3.84236138e-01 + sys_corr_104: 6.77826983e-01 + sys_corr_105: 2.09505290e-01 sys_corr_106: 5.50856387e-01 sys_corr_107: 4.44263116e-01 - sys_corr_108: -8.90578648e-02 - sys_corr_109: 2.65491598e-01 - sys_corr_110: -1.82595942e-01 - sys_corr_111: -1.11138181e-01 - sys_corr_112: 1.96971925e-01 - sys_corr_113: -4.94805672e-02 - sys_corr_114: 9.35249260e-04 - sys_corr_115: 5.66270644e-02 + sys_corr_108: 2.65491598e-01 + sys_corr_109: 8.90578648e-02 + sys_corr_110: 1.11138181e-01 + sys_corr_111: 1.82595942e-01 + sys_corr_112: -1.96971925e-01 + sys_corr_113: 4.94805672e-02 + sys_corr_114: -9.35249260e-04 + sys_corr_115: -5.66270644e-02 sys_corr_116: -4.60620481e-02 - sys_corr_117: -3.14092703e-02 + sys_corr_117: 3.14092703e-02 sys_corr_118: 6.93781112e-02 sys_corr_119: -2.77204352e-03 sys_corr_120: 1.94890223e-02 sys_corr_121: 3.48321413e-03 - sys_corr_122: 1.08085029e-02 - sys_corr_123: 4.72044882e-03 - sys_corr_124: -4.59416922e-02 + sys_corr_122: 4.72044882e-03 + sys_corr_123: -1.08085029e-02 + sys_corr_124: 4.59416922e-02 sys_corr_125: -1.33712935e-02 sys_corr_126: -1.69570528e-03 - sys_corr_127: 1.63711844e-01 - sys_corr_128: -3.04109842e-01 - sys_corr_129: -7.24750296e-02 - sys_corr_130: -3.32781411e-03 - sys_corr_131: -1.33291220e-02 + sys_corr_127: -1.63711844e-01 + sys_corr_128: 3.04109842e-01 + sys_corr_129: 7.24750296e-02 + sys_corr_130: 3.32781411e-03 + sys_corr_131: 1.33291220e-02 sys_corr_132: 4.96392251e-02 stat: 0.0 luminosity: 1.84345018e+02 @@ -9120,17 +9120,17 @@ bins: sys_corr_6: -1.09662529e+01 sys_corr_7: 2.63222680e+01 sys_corr_8: 2.18021392e+01 - sys_corr_9: 2.68836841e+01 - sys_corr_10: 3.02077044e+00 + sys_corr_9: -2.68836841e+01 + sys_corr_10: -3.02077044e+00 sys_corr_11: 2.29552058e+01 - sys_corr_12: 2.34916080e+01 - sys_corr_13: -1.65758339e+01 + sys_corr_12: -2.34916080e+01 + sys_corr_13: 1.65758339e+01 sys_corr_14: 5.70602251e+00 sys_corr_15: 8.21452516e-01 sys_corr_16: 1.79030126e+00 - sys_corr_17: 6.40843250e+00 + sys_corr_17: -6.40843250e+00 sys_corr_18: -3.07767280e+00 - sys_corr_19: -6.22057056e+00 + sys_corr_19: 6.22057056e+00 sys_corr_20: 2.28238623e+00 sys_corr_21: -1.32512903e+01 sys_corr_22: -9.61390402e+00 @@ -9146,103 +9146,103 @@ bins: sys_corr_32: -7.16413637e-01 sys_corr_33: 2.21923870e+00 sys_corr_34: 7.74594966e+00 - sys_corr_35: -9.44051443e-01 - sys_corr_36: 4.46330062e+00 + sys_corr_35: 9.44051443e-01 + sys_corr_36: -4.46330062e+00 sys_corr_37: -5.13816403e+00 sys_corr_38: -1.91991680e+00 - sys_corr_39: 5.39126641e+00 - sys_corr_40: -5.98296833e+00 - sys_corr_41: 8.51315225e+00 + sys_corr_39: -5.39126641e+00 + sys_corr_40: 5.98296833e+00 + sys_corr_41: -8.51315225e+00 sys_corr_42: 5.45765821e-01 sys_corr_43: -1.13822607e+01 sys_corr_44: -1.38905802e+01 sys_corr_45: 2.76684090e+00 - sys_corr_46: 3.67904688e+00 - sys_corr_47: 2.09785103e-01 + sys_corr_46: -3.67904688e+00 + sys_corr_47: -2.09785103e-01 sys_corr_48: 4.22295425e-02 sys_corr_49: 7.00789658e+00 sys_corr_50: -4.84343001e+00 - sys_corr_51: 5.62132589e+00 - sys_corr_52: 1.65509815e+00 - sys_corr_53: -2.74632449e+00 + sys_corr_51: -5.62132589e+00 + sys_corr_52: -1.65509815e+00 + sys_corr_53: 2.74632449e+00 sys_corr_54: -7.50558288e-01 sys_corr_55: 1.97388680e+00 - sys_corr_56: -2.61168088e+00 + sys_corr_56: 2.61168088e+00 sys_corr_57: -7.05756158e+00 - sys_corr_58: -2.03548740e+00 + sys_corr_58: 2.03548740e+00 sys_corr_59: -2.04361534e+00 sys_corr_60: 1.02342561e+00 - sys_corr_61: 7.29902363e+00 - sys_corr_62: 7.64341575e+00 + sys_corr_61: -7.29902363e+00 + sys_corr_62: -7.64341575e+00 sys_corr_63: -1.19245712e-01 sys_corr_64: -2.82017893e+00 - sys_corr_65: -6.69039825e-01 - sys_corr_66: 6.23238327e-01 - sys_corr_67: -2.46129452e+00 + sys_corr_65: 6.69039825e-01 + sys_corr_66: -6.23238327e-01 + sys_corr_67: 2.46129452e+00 sys_corr_68: 3.33643926e+00 sys_corr_69: 2.11036837e+00 sys_corr_70: -7.14641633e+00 - sys_corr_71: -4.76499587e+00 - sys_corr_72: -4.93325212e+00 + sys_corr_71: 4.76499587e+00 + sys_corr_72: 4.93325212e+00 sys_corr_73: -1.07827334e+01 sys_corr_74: 1.10338014e+00 - sys_corr_75: -5.18598179e+00 - sys_corr_76: 1.47022958e+01 + sys_corr_75: 5.18598179e+00 + sys_corr_76: -1.47022958e+01 sys_corr_77: 1.41095298e+01 sys_corr_78: 1.34070815e+01 sys_corr_79: 8.67243054e+00 - sys_corr_80: 5.16236023e+00 + sys_corr_80: -5.16236023e+00 sys_corr_81: 8.64922388e+00 - sys_corr_82: 1.94244402e+00 + sys_corr_82: -1.94244402e+00 sys_corr_83: -1.49413493e+01 sys_corr_84: 7.06692920e+01 sys_corr_85: -1.26520325e+02 - sys_corr_86: -4.73018197e+00 - sys_corr_87: -8.89697060e+00 + sys_corr_86: 4.73018197e+00 + sys_corr_87: 8.89697060e+00 sys_corr_88: -7.54059523e+00 sys_corr_89: 2.53863859e+01 - sys_corr_90: 1.16237261e+01 - sys_corr_91: 1.31564899e+02 - sys_corr_92: 2.12329358e+00 + sys_corr_90: -1.31564899e+02 + sys_corr_91: -1.16237261e+01 + sys_corr_92: -2.12329358e+00 sys_corr_93: -1.06884136e+00 sys_corr_94: -4.30685673e+00 - sys_corr_95: -2.27195396e+00 + sys_corr_95: 2.27195396e+00 sys_corr_96: -2.28017011e-01 - sys_corr_97: 6.65767662e-01 - sys_corr_98: 3.90571258e-01 + sys_corr_97: -6.65767662e-01 + sys_corr_98: -3.90571258e-01 sys_corr_99: -3.72886784e-01 - sys_corr_100: 6.47238632e-01 - sys_corr_101: 4.40295030e-01 - sys_corr_102: -3.10032662e+00 - sys_corr_103: 1.36328471e+00 - sys_corr_104: 1.39436426e+00 - sys_corr_105: 9.58181165e-01 + sys_corr_100: -9.58181165e-01 + sys_corr_101: -6.47238632e-01 + sys_corr_102: -4.40295030e-01 + sys_corr_103: -3.10032662e+00 + sys_corr_104: -1.36328471e+00 + sys_corr_105: -1.39436426e+00 sys_corr_106: 1.05454456e+00 sys_corr_107: 1.07910106e+00 - sys_corr_108: -7.32753976e-01 - sys_corr_109: -2.39932126e-01 - sys_corr_110: 2.31883470e-01 - sys_corr_111: -6.33296848e-01 - sys_corr_112: 5.17996844e-01 - sys_corr_113: 1.04445569e-01 - sys_corr_114: 2.40551570e-03 - sys_corr_115: 2.41767890e-01 + sys_corr_108: -2.39932126e-01 + sys_corr_109: 7.32753976e-01 + sys_corr_110: 6.33296848e-01 + sys_corr_111: -2.31883470e-01 + sys_corr_112: -5.17996844e-01 + sys_corr_113: -1.04445569e-01 + sys_corr_114: -2.40551570e-03 + sys_corr_115: -2.41767890e-01 sys_corr_116: 3.93397445e-03 - sys_corr_117: 8.90626605e-03 + sys_corr_117: -8.90626605e-03 sys_corr_118: 2.02366792e-01 sys_corr_119: 4.76004567e-03 sys_corr_120: -3.77783006e-03 sys_corr_121: 1.81789050e-02 - sys_corr_122: 5.51667803e-02 - sys_corr_123: 4.17847629e-02 - sys_corr_124: 7.90583969e-02 + sys_corr_122: 4.17847629e-02 + sys_corr_123: -5.51667803e-02 + sys_corr_124: -7.90583969e-02 sys_corr_125: -3.09749587e-02 sys_corr_126: 7.33797417e-03 - sys_corr_127: 3.94212205e-01 - sys_corr_128: -3.03323343e-02 - sys_corr_129: 6.76679022e-02 - sys_corr_130: -2.21701548e-02 - sys_corr_131: -8.89630391e-03 + sys_corr_127: -3.94212205e-01 + sys_corr_128: 3.03323343e-02 + sys_corr_129: -6.76679022e-02 + sys_corr_130: 2.21701548e-02 + sys_corr_131: 8.89630391e-03 sys_corr_132: 8.46444623e-02 stat: 0.0 luminosity: 1.61920308e+02 @@ -9254,17 +9254,17 @@ bins: sys_corr_6: -1.35946917e+00 sys_corr_7: 2.28599191e+01 sys_corr_8: 2.25186249e+01 - sys_corr_9: 2.59498814e+01 - sys_corr_10: 6.11840854e+00 + sys_corr_9: -2.59498814e+01 + sys_corr_10: -6.11840854e+00 sys_corr_11: 2.63381192e+01 - sys_corr_12: 2.63565528e+01 - sys_corr_13: -1.89419368e+01 + sys_corr_12: -2.63565528e+01 + sys_corr_13: 1.89419368e+01 sys_corr_14: 3.28834576e+00 sys_corr_15: 4.04699276e+00 sys_corr_16: -1.81755514e+00 - sys_corr_17: 4.87684611e+00 + sys_corr_17: -4.87684611e+00 sys_corr_18: -2.54657144e+00 - sys_corr_19: -3.97476368e+00 + sys_corr_19: 3.97476368e+00 sys_corr_20: -1.66492078e+01 sys_corr_21: -1.49270721e+01 sys_corr_22: -8.81158583e+00 @@ -9280,103 +9280,103 @@ bins: sys_corr_32: 1.62150793e-01 sys_corr_33: 1.53475687e+00 sys_corr_34: 6.39152796e+00 - sys_corr_35: -8.78241511e-01 - sys_corr_36: 1.35654618e+00 + sys_corr_35: 8.78241511e-01 + sys_corr_36: -1.35654618e+00 sys_corr_37: -1.04308816e+00 sys_corr_38: -1.55262874e+00 - sys_corr_39: 3.14591344e+00 - sys_corr_40: -2.96254942e+00 - sys_corr_41: 6.57661265e+00 + sys_corr_39: -3.14591344e+00 + sys_corr_40: 2.96254942e+00 + sys_corr_41: -6.57661265e+00 sys_corr_42: 9.38453871e-01 sys_corr_43: -1.65342522e+00 sys_corr_44: -1.06868441e+01 sys_corr_45: -4.21609376e+00 - sys_corr_46: -2.41439819e+00 - sys_corr_47: -1.43887584e+00 + sys_corr_46: 2.41439819e+00 + sys_corr_47: 1.43887584e+00 sys_corr_48: -4.50360571e+00 sys_corr_49: -2.23441457e+00 sys_corr_50: -8.92321249e+00 - sys_corr_51: 3.11794650e+00 - sys_corr_52: 4.83604788e+00 - sys_corr_53: -1.36069410e+00 + sys_corr_51: -3.11794650e+00 + sys_corr_52: -4.83604788e+00 + sys_corr_53: 1.36069410e+00 sys_corr_54: -5.92184991e-02 sys_corr_55: 9.88936396e-01 - sys_corr_56: -4.65178464e+00 + sys_corr_56: 4.65178464e+00 sys_corr_57: -5.80893777e+00 - sys_corr_58: -2.58238362e+00 + sys_corr_58: 2.58238362e+00 sys_corr_59: -1.85350485e+00 sys_corr_60: -5.51111589e-01 - sys_corr_61: 3.11781150e+00 - sys_corr_62: 8.85065777e+00 + sys_corr_61: -3.11781150e+00 + sys_corr_62: -8.85065777e+00 sys_corr_63: 2.54129478e+00 sys_corr_64: -1.09878000e+00 - sys_corr_65: -4.30529948e-01 - sys_corr_66: 2.02437225e+00 - sys_corr_67: -1.57937832e+00 + sys_corr_65: 4.30529948e-01 + sys_corr_66: -2.02437225e+00 + sys_corr_67: 1.57937832e+00 sys_corr_68: -6.46011944e-01 sys_corr_69: -6.84168874e+00 sys_corr_70: 1.75928471e+00 - sys_corr_71: -3.40124172e+00 - sys_corr_72: -1.31756136e+01 + sys_corr_71: 3.40124172e+00 + sys_corr_72: 1.31756136e+01 sys_corr_73: -4.35094879e+00 sys_corr_74: 2.74800609e+00 - sys_corr_75: -1.97273975e+00 - sys_corr_76: 6.32461517e+00 + sys_corr_75: 1.97273975e+00 + sys_corr_76: -6.32461517e+00 sys_corr_77: 3.58488707e+00 sys_corr_78: 5.04227717e+00 sys_corr_79: 6.47643035e+00 - sys_corr_80: 9.57487320e-01 + sys_corr_80: -9.57487320e-01 sys_corr_81: -1.94453073e+00 - sys_corr_82: 2.95844727e+00 + sys_corr_82: -2.95844727e+00 sys_corr_83: 4.07051592e+00 sys_corr_84: -4.28847461e+00 sys_corr_85: -1.77846818e+01 - sys_corr_86: 5.40699491e-01 - sys_corr_87: 1.87890155e+00 + sys_corr_86: -5.40699491e-01 + sys_corr_87: -1.87890155e+00 sys_corr_88: -4.30979764e+00 sys_corr_89: -1.95551435e+01 - sys_corr_90: 1.76612474e+02 - sys_corr_91: -3.50683280e+01 - sys_corr_92: 5.40305095e+00 + sys_corr_90: 3.50683280e+01 + sys_corr_91: -1.76612474e+02 + sys_corr_92: -5.40305095e+00 sys_corr_93: -1.97027268e+00 sys_corr_94: -6.90399987e+00 - sys_corr_95: -6.79851455e+00 + sys_corr_95: 6.79851455e+00 sys_corr_96: 1.57453968e-01 - sys_corr_97: 1.92287112e+00 - sys_corr_98: 3.23188708e-01 + sys_corr_97: -1.92287112e+00 + sys_corr_98: -3.23188708e-01 sys_corr_99: 3.01304579e-01 - sys_corr_100: 4.85574922e-01 - sys_corr_101: 4.04329336e-01 - sys_corr_102: -3.44285673e+00 - sys_corr_103: 8.83074552e-01 - sys_corr_104: 2.07695048e+00 - sys_corr_105: 1.27555363e+00 + sys_corr_100: -1.27555363e+00 + sys_corr_101: -4.85574922e-01 + sys_corr_102: -4.04329336e-01 + sys_corr_103: -3.44285673e+00 + sys_corr_104: -8.83074552e-01 + sys_corr_105: -2.07695048e+00 sys_corr_106: 2.68303740e-01 sys_corr_107: 3.91735198e-01 - sys_corr_108: -6.20348759e-01 - sys_corr_109: 3.45984151e-01 - sys_corr_110: 1.07239833e+00 - sys_corr_111: 1.50879811e-01 - sys_corr_112: -6.71133379e-01 - sys_corr_113: 2.95309392e-01 - sys_corr_114: 3.22001267e-03 - sys_corr_115: 3.93596749e-01 + sys_corr_108: 3.45984151e-01 + sys_corr_109: 6.20348759e-01 + sys_corr_110: -1.50879811e-01 + sys_corr_111: -1.07239833e+00 + sys_corr_112: 6.71133379e-01 + sys_corr_113: -2.95309392e-01 + sys_corr_114: -3.22001267e-03 + sys_corr_115: -3.93596749e-01 sys_corr_116: 1.42392140e-02 - sys_corr_117: 1.34432551e-02 + sys_corr_117: -1.34432551e-02 sys_corr_118: 3.09860192e-01 sys_corr_119: 2.49689249e-04 sys_corr_120: -1.50865943e-02 sys_corr_121: 1.14350675e-02 - sys_corr_122: 1.70331804e-02 - sys_corr_123: 1.74579610e-02 - sys_corr_124: 1.19679728e-01 + sys_corr_122: 1.74579610e-02 + sys_corr_123: -1.70331804e-02 + sys_corr_124: -1.19679728e-01 sys_corr_125: -1.42341427e-02 sys_corr_126: -6.21141741e-03 - sys_corr_127: 1.27124567e+00 - sys_corr_128: -4.13762649e-01 - sys_corr_129: -1.44811944e-01 - sys_corr_130: -1.98650250e-02 - sys_corr_131: 6.41335303e-03 + sys_corr_127: -1.27124567e+00 + sys_corr_128: 4.13762649e-01 + sys_corr_129: 1.44811944e-01 + sys_corr_130: 1.98650250e-02 + sys_corr_131: -6.41335303e-03 sys_corr_132: 1.94402698e-01 stat: 0.0 luminosity: 1.41340760e+02 @@ -9388,17 +9388,17 @@ bins: sys_corr_6: -2.04222026e+00 sys_corr_7: 2.62578760e+01 sys_corr_8: 1.97873597e+01 - sys_corr_9: 2.59682055e+01 - sys_corr_10: 3.45465972e+00 + sys_corr_9: -2.59682055e+01 + sys_corr_10: -3.45465972e+00 sys_corr_11: 2.12964198e+01 - sys_corr_12: 2.38987858e+01 - sys_corr_13: -1.78809970e+01 + sys_corr_12: -2.38987858e+01 + sys_corr_13: 1.78809970e+01 sys_corr_14: 2.01688165e+00 sys_corr_15: 6.78139507e+00 sys_corr_16: -1.33981741e+00 - sys_corr_17: 3.01880329e-01 + sys_corr_17: -3.01880329e-01 sys_corr_18: -3.56774671e+00 - sys_corr_19: -3.63141278e+00 + sys_corr_19: 3.63141278e+00 sys_corr_20: -7.00658074e+00 sys_corr_21: -2.99261677e+00 sys_corr_22: -6.44624007e+00 @@ -9414,103 +9414,103 @@ bins: sys_corr_32: -1.87841357e+00 sys_corr_33: 2.84276960e+00 sys_corr_34: 6.51338638e+00 - sys_corr_35: 3.49499669e-01 - sys_corr_36: 8.95745073e-01 + sys_corr_35: -3.49499669e-01 + sys_corr_36: -8.95745073e-01 sys_corr_37: -1.03233212e+00 sys_corr_38: 1.10282442e+00 - sys_corr_39: 8.36479657e-01 - sys_corr_40: -2.95326087e+00 - sys_corr_41: 5.50291275e+00 + sys_corr_39: -8.36479657e-01 + sys_corr_40: 2.95326087e+00 + sys_corr_41: -5.50291275e+00 sys_corr_42: 9.93792949e-01 sys_corr_43: -5.09354865e+00 sys_corr_44: -1.20818723e+01 sys_corr_45: -7.59948513e-01 - sys_corr_46: 1.79414225e-01 - sys_corr_47: -1.06921147e+00 + sys_corr_46: -1.79414225e-01 + sys_corr_47: 1.06921147e+00 sys_corr_48: -4.10060326e+00 sys_corr_49: 9.79465693e-01 sys_corr_50: -8.15528392e-02 - sys_corr_51: 4.61686373e-02 - sys_corr_52: -3.29745865e+00 - sys_corr_53: -9.30993961e+00 + sys_corr_51: -4.61686373e-02 + sys_corr_52: 3.29745865e+00 + sys_corr_53: 9.30993961e+00 sys_corr_54: 2.55572799e+00 sys_corr_55: 1.56210419e+01 - sys_corr_56: -3.64623806e+00 + sys_corr_56: 3.64623806e+00 sys_corr_57: -5.45928859e+00 - sys_corr_58: -2.18819769e+00 + sys_corr_58: 2.18819769e+00 sys_corr_59: -2.45801758e+00 sys_corr_60: -1.56088378e-01 - sys_corr_61: 7.37030545e+00 - sys_corr_62: 1.16506721e+01 + sys_corr_61: -7.37030545e+00 + sys_corr_62: -1.16506721e+01 sys_corr_63: 7.46271471e+00 sys_corr_64: -2.55552307e+00 - sys_corr_65: -8.95761880e+00 - sys_corr_66: 6.80304082e+00 - sys_corr_67: -1.88827885e+01 + sys_corr_65: 8.95761880e+00 + sys_corr_66: -6.80304082e+00 + sys_corr_67: 1.88827885e+01 sys_corr_68: 1.11936471e-02 sys_corr_69: -5.25162536e+00 sys_corr_70: 5.20602700e+00 - sys_corr_71: -9.84185632e+00 - sys_corr_72: -7.91609959e+00 + sys_corr_71: 9.84185632e+00 + sys_corr_72: 7.91609959e+00 sys_corr_73: -1.89480148e+01 sys_corr_74: 2.02781160e+01 - sys_corr_75: -8.34463441e+00 - sys_corr_76: 3.01281122e+01 + sys_corr_75: 8.34463441e+00 + sys_corr_76: -3.01281122e+01 sys_corr_77: -1.48216160e+01 sys_corr_78: -1.17231918e+01 sys_corr_79: -2.36321893e+01 - sys_corr_80: -1.51575599e+01 + sys_corr_80: 1.51575599e+01 sys_corr_81: 9.98887418e+01 - sys_corr_82: 1.15278112e+01 + sys_corr_82: -1.15278112e+01 sys_corr_83: -1.94088440e+02 sys_corr_84: -6.08776820e+00 sys_corr_85: 2.44203756e+01 - sys_corr_86: -2.41370926e+01 - sys_corr_87: -2.91601312e+01 + sys_corr_86: 2.41370926e+01 + sys_corr_87: 2.91601312e+01 sys_corr_88: 2.50784449e+00 sys_corr_89: 4.14111919e+00 - sys_corr_90: 2.39962425e+00 - sys_corr_91: -2.35327736e+00 - sys_corr_92: -4.07734578e+00 + sys_corr_90: 2.35327736e+00 + sys_corr_91: -2.39962425e+00 + sys_corr_92: 4.07734578e+00 sys_corr_93: -7.41944870e-01 sys_corr_94: -2.30276151e+00 - sys_corr_95: -2.43550107e+00 + sys_corr_95: 2.43550107e+00 sys_corr_96: -4.72735711e-02 - sys_corr_97: 6.84253176e-01 - sys_corr_98: 1.52969403e-02 + sys_corr_97: -6.84253176e-01 + sys_corr_98: -1.52969403e-02 sys_corr_99: 1.11232231e-01 - sys_corr_100: 1.14407078e-02 - sys_corr_101: 2.57816710e-02 - sys_corr_102: -1.55298309e+00 - sys_corr_103: 5.68997717e-01 - sys_corr_104: 7.61636187e-01 - sys_corr_105: 5.24553921e-01 + sys_corr_100: -5.24553921e-01 + sys_corr_101: -1.14407078e-02 + sys_corr_102: -2.57816710e-02 + sys_corr_103: -1.55298309e+00 + sys_corr_104: -5.68997717e-01 + sys_corr_105: -7.61636187e-01 sys_corr_106: 1.96182894e-01 sys_corr_107: 8.09891778e-02 - sys_corr_108: -6.14841267e-02 - sys_corr_109: 1.79717141e-02 - sys_corr_110: 4.65091699e-01 - sys_corr_111: 6.82065803e-03 - sys_corr_112: -1.36240551e-01 - sys_corr_113: -1.82704753e-01 - sys_corr_114: 3.46325581e-03 - sys_corr_115: 3.77516423e-01 + sys_corr_108: 1.79717141e-02 + sys_corr_109: 6.14841267e-02 + sys_corr_110: -6.82065803e-03 + sys_corr_111: -4.65091699e-01 + sys_corr_112: 1.36240551e-01 + sys_corr_113: 1.82704753e-01 + sys_corr_114: -3.46325581e-03 + sys_corr_115: -3.77516423e-01 sys_corr_116: -1.02941855e-02 - sys_corr_117: 1.01252738e-02 + sys_corr_117: -1.01252738e-02 sys_corr_118: 2.24386766e-01 sys_corr_119: -3.92813117e-03 sys_corr_120: -1.31032600e-02 sys_corr_121: 4.00184820e-03 - sys_corr_122: 1.23370788e-03 - sys_corr_123: 6.29779705e-03 - sys_corr_124: 1.04273560e-01 + sys_corr_122: 6.29779705e-03 + sys_corr_123: -1.23370788e-03 + sys_corr_124: -1.04273560e-01 sys_corr_125: -1.05860142e-03 sys_corr_126: -4.70232045e-03 - sys_corr_127: 2.22411610e-01 - sys_corr_128: -2.22302657e-01 - sys_corr_129: 1.56587597e-01 - sys_corr_130: -1.02997124e-02 - sys_corr_131: 3.09227503e-03 + sys_corr_127: -2.22411610e-01 + sys_corr_128: 2.22302657e-01 + sys_corr_129: -1.56587597e-01 + sys_corr_130: 1.02997124e-02 + sys_corr_131: -3.09227503e-03 sys_corr_132: 1.31915466e-01 stat: 0.0 luminosity: 1.29830074e+02 @@ -9522,17 +9522,17 @@ bins: sys_corr_6: -4.31578750e-01 sys_corr_7: 2.29844200e+01 sys_corr_8: 1.67888796e+01 - sys_corr_9: 2.24770091e+01 - sys_corr_10: 2.77700400e+00 + sys_corr_9: -2.24770091e+01 + sys_corr_10: -2.77700400e+00 sys_corr_11: 1.72397353e+01 - sys_corr_12: 2.25354688e+01 - sys_corr_13: -1.69860377e+01 + sys_corr_12: -2.25354688e+01 + sys_corr_13: 1.69860377e+01 sys_corr_14: 2.89140485e+00 sys_corr_15: 4.33475574e+00 sys_corr_16: -1.52241686e+00 - sys_corr_17: 3.52551071e+00 + sys_corr_17: -3.52551071e+00 sys_corr_18: 7.81123931e-01 - sys_corr_19: -8.55621913e+00 + sys_corr_19: 8.55621913e+00 sys_corr_20: -6.34654999e+00 sys_corr_21: -8.80930926e+00 sys_corr_22: -8.07610098e+00 @@ -9548,103 +9548,103 @@ bins: sys_corr_32: -5.83597686e-01 sys_corr_33: 1.97437158e+00 sys_corr_34: 6.41740882e+00 - sys_corr_35: 6.14688715e-01 - sys_corr_36: 1.56777815e+00 + sys_corr_35: -6.14688715e-01 + sys_corr_36: -1.56777815e+00 sys_corr_37: -1.09746173e+00 sys_corr_38: 9.66448296e-02 - sys_corr_39: 2.84223894e+00 - sys_corr_40: -1.08934256e+00 - sys_corr_41: 5.68584341e+00 + sys_corr_39: -2.84223894e+00 + sys_corr_40: 1.08934256e+00 + sys_corr_41: -5.68584341e+00 sys_corr_42: 1.77371780e+00 sys_corr_43: 1.09303854e+00 sys_corr_44: -1.02346213e+01 sys_corr_45: -4.47302276e+00 - sys_corr_46: -2.07082148e+00 - sys_corr_47: -1.11550410e+00 + sys_corr_46: 2.07082148e+00 + sys_corr_47: 1.11550410e+00 sys_corr_48: -4.03443555e+00 sys_corr_49: 1.63826274e+00 sys_corr_50: -2.40653737e+00 - sys_corr_51: 9.34265554e+00 - sys_corr_52: -4.78815508e+00 - sys_corr_53: -1.44493926e+00 + sys_corr_51: -9.34265554e+00 + sys_corr_52: 4.78815508e+00 + sys_corr_53: 1.44493926e+00 sys_corr_54: 8.58766824e+00 sys_corr_55: 3.45701188e+00 - sys_corr_56: -2.56155446e+00 + sys_corr_56: 2.56155446e+00 sys_corr_57: -9.65483549e+00 - sys_corr_58: -1.99930217e+00 + sys_corr_58: 1.99930217e+00 sys_corr_59: 3.82932219e+00 sys_corr_60: -4.84372715e-01 - sys_corr_61: 3.35367784e+00 - sys_corr_62: 1.22034939e+01 + sys_corr_61: -3.35367784e+00 + sys_corr_62: -1.22034939e+01 sys_corr_63: 2.42839359e+00 sys_corr_64: -1.25207574e+01 - sys_corr_65: -4.06346594e+00 - sys_corr_66: 9.66853678e+00 - sys_corr_67: -5.92031494e+00 + sys_corr_65: 4.06346594e+00 + sys_corr_66: -9.66853678e+00 + sys_corr_67: 5.92031494e+00 sys_corr_68: -2.80708055e+00 sys_corr_69: -1.57795121e+01 sys_corr_70: 1.84153218e+01 - sys_corr_71: -8.06212642e+00 - sys_corr_72: -2.30156873e+01 + sys_corr_71: 8.06212642e+00 + sys_corr_72: 2.30156873e+01 sys_corr_73: -2.36516279e+01 sys_corr_74: 4.34643483e+01 - sys_corr_75: -2.68124153e+01 - sys_corr_76: 1.09681935e+02 + sys_corr_75: 2.68124153e+01 + sys_corr_76: -1.09681935e+02 sys_corr_77: -5.91696711e-02 sys_corr_78: -6.89227945e+00 sys_corr_79: -1.52036679e+01 - sys_corr_80: -8.85539550e+00 + sys_corr_80: 8.85539550e+00 sys_corr_81: -8.42410535e+00 - sys_corr_82: 2.14950077e+00 + sys_corr_82: -2.14950077e+00 sys_corr_83: 9.99555447e+00 sys_corr_84: -1.10939208e+00 sys_corr_85: 1.54655202e+01 - sys_corr_86: 9.09276999e+01 - sys_corr_87: 4.51216944e+01 + sys_corr_86: -9.09276999e+01 + sys_corr_87: -4.51216944e+01 sys_corr_88: -1.74737357e+02 sys_corr_89: 4.32816307e+00 - sys_corr_90: -8.05417604e+00 - sys_corr_91: 1.12147451e+00 - sys_corr_92: 3.77725670e+01 + sys_corr_90: -1.12147451e+00 + sys_corr_91: 8.05417604e+00 + sys_corr_92: -3.77725670e+01 sys_corr_93: -3.72772880e-01 sys_corr_94: -2.42404669e+00 - sys_corr_95: -1.78369752e+00 + sys_corr_95: 1.78369752e+00 sys_corr_96: -2.62322988e-01 - sys_corr_97: 5.62332632e-01 - sys_corr_98: 2.29147465e-02 + sys_corr_97: -5.62332632e-01 + sys_corr_98: -2.29147465e-02 sys_corr_99: -7.57111594e-02 - sys_corr_100: 1.07077609e-01 - sys_corr_101: 1.12343157e-01 - sys_corr_102: -8.02166037e-01 - sys_corr_103: 4.32716212e-01 - sys_corr_104: 2.89412574e-01 - sys_corr_105: 6.55049952e-01 + sys_corr_100: -6.55049952e-01 + sys_corr_101: -1.07077609e-01 + sys_corr_102: -1.12343157e-01 + sys_corr_103: -8.02166037e-01 + sys_corr_104: -4.32716212e-01 + sys_corr_105: -2.89412574e-01 sys_corr_106: 2.06357797e-01 sys_corr_107: 3.41126587e-01 - sys_corr_108: -2.70155908e-01 - sys_corr_109: -1.11209748e-01 - sys_corr_110: 1.89277452e-01 - sys_corr_111: -4.62714164e-01 - sys_corr_112: -3.27864314e-02 - sys_corr_113: -2.85075321e-01 - sys_corr_114: 2.68813183e-03 - sys_corr_115: 2.06695077e-01 + sys_corr_108: -1.11209748e-01 + sys_corr_109: 2.70155908e-01 + sys_corr_110: 4.62714164e-01 + sys_corr_111: -1.89277452e-01 + sys_corr_112: 3.27864314e-02 + sys_corr_113: 2.85075321e-01 + sys_corr_114: -2.68813183e-03 + sys_corr_115: -2.06695077e-01 sys_corr_116: -3.61557226e-03 - sys_corr_117: -2.77281856e-03 + sys_corr_117: 2.77281856e-03 sys_corr_118: 2.05070096e-01 sys_corr_119: -4.09467265e-03 sys_corr_120: -3.29411596e-03 sys_corr_121: 5.59702027e-03 - sys_corr_122: 1.12520052e-02 - sys_corr_123: 7.98270876e-03 - sys_corr_124: 1.50360221e-02 + sys_corr_122: 7.98270876e-03 + sys_corr_123: -1.12520052e-02 + sys_corr_124: -1.50360221e-02 sys_corr_125: -1.29553313e-02 sys_corr_126: -2.83796391e-03 - sys_corr_127: 1.00874534e-01 - sys_corr_128: -1.58763042e-01 - sys_corr_129: -3.37368577e-01 - sys_corr_130: -2.21654648e-02 - sys_corr_131: -3.59189255e-03 + sys_corr_127: -1.00874534e-01 + sys_corr_128: 1.58763042e-01 + sys_corr_129: 3.37368577e-01 + sys_corr_130: 2.21654648e-02 + sys_corr_131: 3.59189255e-03 sys_corr_132: 1.40405263e-01 stat: 0.0 luminosity: 1.08345072e+02 @@ -9656,17 +9656,17 @@ bins: sys_corr_6: -1.01561274e+00 sys_corr_7: 1.69523869e+01 sys_corr_8: 1.49506477e+01 - sys_corr_9: 2.04858682e+01 - sys_corr_10: 4.66590991e+00 + sys_corr_9: -2.04858682e+01 + sys_corr_10: -4.66590991e+00 sys_corr_11: 1.55409065e+01 - sys_corr_12: 1.70502099e+01 - sys_corr_13: -1.02065923e+01 + sys_corr_12: -1.70502099e+01 + sys_corr_13: 1.02065923e+01 sys_corr_14: 4.36789234e+00 sys_corr_15: 1.79069411e+00 sys_corr_16: -9.35601219e-02 - sys_corr_17: 3.17776472e+00 + sys_corr_17: -3.17776472e+00 sys_corr_18: 1.69095113e+00 - sys_corr_19: -6.71293758e+00 + sys_corr_19: 6.71293758e+00 sys_corr_20: -2.77999350e+00 sys_corr_21: -6.75559055e+00 sys_corr_22: -6.88357678e+00 @@ -9682,103 +9682,103 @@ bins: sys_corr_32: -1.00882516e+00 sys_corr_33: 2.32718014e+00 sys_corr_34: 8.81764507e+00 - sys_corr_35: -3.64610259e-01 - sys_corr_36: 1.20676932e+00 + sys_corr_35: 3.64610259e-01 + sys_corr_36: -1.20676932e+00 sys_corr_37: -1.48976895e+00 sys_corr_38: -1.96021161e-01 - sys_corr_39: 2.39910026e+00 - sys_corr_40: -4.36146556e+00 - sys_corr_41: 6.20014423e+00 + sys_corr_39: -2.39910026e+00 + sys_corr_40: 4.36146556e+00 + sys_corr_41: -6.20014423e+00 sys_corr_42: 3.49846393e+00 sys_corr_43: -1.01000871e+00 sys_corr_44: -1.36392354e+01 sys_corr_45: -1.93617271e+00 - sys_corr_46: 7.39737789e-01 - sys_corr_47: -3.38144116e+00 + sys_corr_46: -7.39737789e-01 + sys_corr_47: 3.38144116e+00 sys_corr_48: -9.31403987e+00 sys_corr_49: 3.65529166e+00 sys_corr_50: 1.60403230e+00 - sys_corr_51: 7.94436987e+00 - sys_corr_52: -2.19154563e+00 - sys_corr_53: -5.84620284e-01 + sys_corr_51: -7.94436987e+00 + sys_corr_52: 2.19154563e+00 + sys_corr_53: 5.84620284e-01 sys_corr_54: 8.86233510e+00 sys_corr_55: 1.01222252e+00 - sys_corr_56: -3.77920530e+00 + sys_corr_56: 3.77920530e+00 sys_corr_57: -3.54213231e+00 - sys_corr_58: -5.17117219e+00 + sys_corr_58: 5.17117219e+00 sys_corr_59: -5.77697364e+00 sys_corr_60: 2.72974772e+00 - sys_corr_61: 1.01889529e+01 - sys_corr_62: 6.90610113e+00 + sys_corr_61: -1.01889529e+01 + sys_corr_62: -6.90610113e+00 sys_corr_63: 1.27435749e+01 sys_corr_64: 5.95639439e+00 - sys_corr_65: -7.99824884e+00 - sys_corr_66: 2.48955934e+00 - sys_corr_67: -2.45243404e+00 + sys_corr_65: 7.99824884e+00 + sys_corr_66: -2.48955934e+00 + sys_corr_67: 2.45243404e+00 sys_corr_68: -1.37378520e+01 sys_corr_69: -1.13572128e+01 sys_corr_70: -5.83316966e-01 - sys_corr_71: -3.53542656e+00 - sys_corr_72: -3.87938303e+00 + sys_corr_71: 3.53542656e+00 + sys_corr_72: 3.87938303e+00 sys_corr_73: -9.99488417e+00 sys_corr_74: -2.23422647e+01 - sys_corr_75: -3.75328519e-01 - sys_corr_76: 1.65372884e+02 + sys_corr_75: 3.75328519e-01 + sys_corr_76: -1.65372884e+02 sys_corr_77: -3.65479806e+00 sys_corr_78: 1.32504017e+00 sys_corr_79: -3.61169574e+00 - sys_corr_80: -5.65654743e+00 + sys_corr_80: 5.65654743e+00 sys_corr_81: -1.56625693e+01 - sys_corr_82: 4.23409442e+00 + sys_corr_82: -4.23409442e+00 sys_corr_83: 2.94922956e+01 sys_corr_84: -3.94139212e+00 sys_corr_85: 1.38811715e+01 - sys_corr_86: -1.24842590e+02 - sys_corr_87: 3.46606025e+01 + sys_corr_86: 1.24842590e+02 + sys_corr_87: -3.46606025e+01 sys_corr_88: 7.19212375e+01 sys_corr_89: 4.03261910e+00 - sys_corr_90: -4.69162738e+00 - sys_corr_91: 3.15375566e+00 - sys_corr_92: 9.12507458e+01 + sys_corr_90: -3.15375566e+00 + sys_corr_91: 4.69162738e+00 + sys_corr_92: -9.12507458e+01 sys_corr_93: -4.43509004e-01 sys_corr_94: -1.77180349e+00 - sys_corr_95: -3.85234086e-01 + sys_corr_95: 3.85234086e-01 sys_corr_96: 5.92925002e-02 - sys_corr_97: 1.17953935e+00 - sys_corr_98: 4.95965609e-01 + sys_corr_97: -1.17953935e+00 + sys_corr_98: -4.95965609e-01 sys_corr_99: 2.36820368e-01 - sys_corr_100: 1.27602562e-01 - sys_corr_101: -3.50598741e-01 - sys_corr_102: -3.11152039e-01 - sys_corr_103: 6.18151037e-02 - sys_corr_104: -1.06517993e-01 - sys_corr_105: 2.94549639e-01 + sys_corr_100: -2.94549639e-01 + sys_corr_101: -1.27602562e-01 + sys_corr_102: 3.50598741e-01 + sys_corr_103: -3.11152039e-01 + sys_corr_104: -6.18151037e-02 + sys_corr_105: 1.06517993e-01 sys_corr_106: 1.21617547e-01 sys_corr_107: 2.29905125e-01 - sys_corr_108: -2.74635335e-01 - sys_corr_109: 2.77803913e-01 - sys_corr_110: 2.21772587e-01 - sys_corr_111: -3.44874260e-01 - sys_corr_112: -2.55452986e-01 - sys_corr_113: -1.87979988e-01 - sys_corr_114: 2.64800691e-03 - sys_corr_115: -1.45667453e-01 + sys_corr_108: 2.77803913e-01 + sys_corr_109: 2.74635335e-01 + sys_corr_110: 3.44874260e-01 + sys_corr_111: -2.21772587e-01 + sys_corr_112: 2.55452986e-01 + sys_corr_113: 1.87979988e-01 + sys_corr_114: -2.64800691e-03 + sys_corr_115: 1.45667453e-01 sys_corr_116: 5.48197473e-02 - sys_corr_117: 1.54321306e-02 + sys_corr_117: -1.54321306e-02 sys_corr_118: 3.37664560e-01 sys_corr_119: -7.19234023e-03 sys_corr_120: -1.12949799e-02 sys_corr_121: 2.65605757e-03 - sys_corr_122: 1.12662851e-02 - sys_corr_123: 7.88850803e-03 - sys_corr_124: 2.82239982e-02 + sys_corr_122: 7.88850803e-03 + sys_corr_123: -1.12662851e-02 + sys_corr_124: -2.82239982e-02 sys_corr_125: -3.62084010e-03 sys_corr_126: -5.70256235e-03 - sys_corr_127: 9.48736028e-03 - sys_corr_128: -1.50381024e-01 - sys_corr_129: -1.77897067e-01 - sys_corr_130: -1.11278246e-02 - sys_corr_131: -4.73276926e-04 + sys_corr_127: -9.48736028e-03 + sys_corr_128: 1.50381024e-01 + sys_corr_129: 1.77897067e-01 + sys_corr_130: 1.11278246e-02 + sys_corr_131: 4.73276926e-04 sys_corr_132: 1.44843930e-01 stat: 0.0 luminosity: 8.90816080e+01 @@ -9790,17 +9790,17 @@ bins: sys_corr_6: -2.91191816e+00 sys_corr_7: 7.87288457e+00 sys_corr_8: 8.45378262e+00 - sys_corr_9: 1.02050310e+01 - sys_corr_10: 1.98823565e+00 + sys_corr_9: -1.02050310e+01 + sys_corr_10: -1.98823565e+00 sys_corr_11: 7.12706490e+00 - sys_corr_12: 2.96570390e+00 - sys_corr_13: -3.76619067e+00 + sys_corr_12: -2.96570390e+00 + sys_corr_13: 3.76619067e+00 sys_corr_14: -7.54886174e-02 sys_corr_15: 9.83193737e-01 sys_corr_16: -8.91926242e-01 - sys_corr_17: 9.69792173e-01 + sys_corr_17: -9.69792173e-01 sys_corr_18: -7.16850672e-01 - sys_corr_19: -1.24839570e+00 + sys_corr_19: 1.24839570e+00 sys_corr_20: -4.92341943e+00 sys_corr_21: -4.09109082e+00 sys_corr_22: -7.99928014e+00 @@ -9816,103 +9816,103 @@ bins: sys_corr_32: 1.17850195e+00 sys_corr_33: 5.82197750e-01 sys_corr_34: 3.28187644e+00 - sys_corr_35: 8.77439530e-04 - sys_corr_36: 2.95261914e+00 + sys_corr_35: -8.77439531e-04 + sys_corr_36: -2.95261914e+00 sys_corr_37: -2.09272593e+00 sys_corr_38: -1.96420868e+00 - sys_corr_39: 1.32875620e+00 - sys_corr_40: -3.86095374e+00 - sys_corr_41: 2.23254390e+00 + sys_corr_39: -1.32875620e+00 + sys_corr_40: 3.86095374e+00 + sys_corr_41: -2.23254390e+00 sys_corr_42: -4.28995823e-01 sys_corr_43: -3.00665483e+00 sys_corr_44: -6.97769717e+00 sys_corr_45: -1.56639375e-01 - sys_corr_46: 1.27707441e+00 - sys_corr_47: 2.24595436e+00 + sys_corr_46: -1.27707441e+00 + sys_corr_47: -2.24595436e+00 sys_corr_48: -1.81180196e+00 sys_corr_49: 1.72850843e+00 sys_corr_50: -6.66329098e-01 - sys_corr_51: -3.79116342e+00 - sys_corr_52: 3.80687195e+00 - sys_corr_53: 2.26996643e-02 + sys_corr_51: 3.79116342e+00 + sys_corr_52: -3.80687195e+00 + sys_corr_53: -2.26996643e-02 sys_corr_54: 5.09523701e-01 sys_corr_55: 3.17866631e+00 - sys_corr_56: -3.78806649e-01 + sys_corr_56: 3.78806649e-01 sys_corr_57: -1.22473239e+00 - sys_corr_58: -1.59061561e+00 + sys_corr_58: 1.59061561e+00 sys_corr_59: -2.09635243e-01 sys_corr_60: 2.26808799e-01 - sys_corr_61: 1.36914876e+00 - sys_corr_62: 2.91303454e+00 + sys_corr_61: -1.36914876e+00 + sys_corr_62: -2.91303454e+00 sys_corr_63: -8.48576784e-01 sys_corr_64: -9.55222164e-01 - sys_corr_65: -1.94842776e+00 - sys_corr_66: -1.78695075e+00 - sys_corr_67: -4.75968031e+00 + sys_corr_65: 1.94842776e+00 + sys_corr_66: 1.78695075e+00 + sys_corr_67: 4.75968031e+00 sys_corr_68: -1.38268482e+00 sys_corr_69: -2.05056586e+00 sys_corr_70: -1.13447990e+00 - sys_corr_71: -2.51328839e+00 - sys_corr_72: -1.17057523e+00 + sys_corr_71: 2.51328839e+00 + sys_corr_72: 1.17057523e+00 sys_corr_73: 1.92617009e+00 sys_corr_74: -1.87631078e+00 - sys_corr_75: -1.53461023e+00 - sys_corr_76: 3.23456044e+00 + sys_corr_75: 1.53461023e+00 + sys_corr_76: -3.23456044e+00 sys_corr_77: 1.02327430e+00 sys_corr_78: -2.27258442e+00 sys_corr_79: -1.11234986e+00 - sys_corr_80: 4.49085118e+00 + sys_corr_80: -4.49085118e+00 sys_corr_81: 2.40881863e+00 - sys_corr_82: 7.45315184e-01 + sys_corr_82: -7.45315184e-01 sys_corr_83: -3.69073550e+00 sys_corr_84: 3.43284088e-01 sys_corr_85: -6.86416596e+00 - sys_corr_86: -1.67088847e+00 - sys_corr_87: -3.69566979e-02 + sys_corr_86: 1.67088847e+00 + sys_corr_87: 3.69566979e-02 sys_corr_88: -5.45597950e+00 sys_corr_89: -8.26267955e+00 - sys_corr_90: 9.00374334e+00 - sys_corr_91: 3.89651993e-01 - sys_corr_92: 3.10642450e+00 + sys_corr_90: -3.89651993e-01 + sys_corr_91: -9.00374334e+00 + sys_corr_92: -3.10642450e+00 sys_corr_93: 1.33918360e+01 sys_corr_94: 1.04940660e+02 - sys_corr_95: 1.07753629e+02 + sys_corr_95: -1.07753629e+02 sys_corr_96: -6.57559940e-01 - sys_corr_97: 2.54312532e+01 - sys_corr_98: 8.37454930e+00 + sys_corr_97: -2.54312532e+01 + sys_corr_98: -8.37454930e+00 sys_corr_99: 4.52664842e+00 - sys_corr_100: -4.07409526e-01 - sys_corr_101: -1.75921232e+00 - sys_corr_102: -1.59903798e+00 - sys_corr_103: -5.92608657e+00 - sys_corr_104: -2.31299218e+00 - sys_corr_105: 8.01269442e-02 + sys_corr_100: -8.01269442e-02 + sys_corr_101: 4.07409526e-01 + sys_corr_102: 1.75921232e+00 + sys_corr_103: -1.59903798e+00 + sys_corr_104: 5.92608657e+00 + sys_corr_105: 2.31299218e+00 sys_corr_106: 1.55699816e-01 sys_corr_107: -1.25541620e-02 - sys_corr_108: -1.06801981e+00 - sys_corr_109: -1.02848740e+00 - sys_corr_110: 2.58215041e+00 - sys_corr_111: -1.26155015e+00 - sys_corr_112: -6.01718754e-01 - sys_corr_113: -7.86477845e-01 - sys_corr_114: 2.80775483e-03 - sys_corr_115: -5.17957671e-01 + sys_corr_108: -1.02848740e+00 + sys_corr_109: 1.06801981e+00 + sys_corr_110: 1.26155015e+00 + sys_corr_111: -2.58215041e+00 + sys_corr_112: 6.01718754e-01 + sys_corr_113: 7.86477845e-01 + sys_corr_114: -2.80775483e-03 + sys_corr_115: 5.17957671e-01 sys_corr_116: -4.74127894e-03 - sys_corr_117: -3.74714876e-02 + sys_corr_117: 3.74714876e-02 sys_corr_118: -3.78478817e-02 sys_corr_119: -2.02964689e-02 sys_corr_120: 1.08292301e-02 sys_corr_121: -1.20012781e-02 - sys_corr_122: -4.92079163e-02 - sys_corr_123: -3.66482996e-02 - sys_corr_124: -1.60482729e-01 + sys_corr_122: -3.66482996e-02 + sys_corr_123: 4.92079163e-02 + sys_corr_124: 1.60482729e-01 sys_corr_125: 2.52048457e-02 sys_corr_126: -2.19100538e-02 - sys_corr_127: 1.29919605e+00 - sys_corr_128: -1.96199743e+00 - sys_corr_129: -4.16204326e-01 - sys_corr_130: 4.74227836e-04 - sys_corr_131: 8.68772932e-04 + sys_corr_127: -1.29919605e+00 + sys_corr_128: 1.96199743e+00 + sys_corr_129: 4.16204326e-01 + sys_corr_130: -4.74227836e-04 + sys_corr_131: -8.68772932e-04 sys_corr_132: 1.78591562e-01 stat: 0.0 luminosity: 5.65325200e+01 @@ -9924,17 +9924,17 @@ bins: sys_corr_6: -3.82267607e+00 sys_corr_7: 1.46139297e+00 sys_corr_8: 3.14901199e+00 - sys_corr_9: 4.39053804e+00 - sys_corr_10: 1.41262022e+00 + sys_corr_9: -4.39053804e+00 + sys_corr_10: -1.41262022e+00 sys_corr_11: 5.05523988e+00 - sys_corr_12: 2.97828454e+00 - sys_corr_13: -3.86224236e+00 + sys_corr_12: -2.97828454e+00 + sys_corr_13: 3.86224236e+00 sys_corr_14: -1.90056374e-01 sys_corr_15: 1.47361919e+00 sys_corr_16: -2.34469837e+00 - sys_corr_17: 9.76884869e-02 + sys_corr_17: -9.76884869e-02 sys_corr_18: -9.25415753e-01 - sys_corr_19: -1.04746711e-01 + sys_corr_19: 1.04746711e-01 sys_corr_20: -2.14414163e+00 sys_corr_21: -2.06744716e+00 sys_corr_22: -7.29667567e+00 @@ -9950,103 +9950,103 @@ bins: sys_corr_32: 1.62718695e+00 sys_corr_33: 3.32050381e-01 sys_corr_34: -5.11959354e-03 - sys_corr_35: -4.53030803e-02 - sys_corr_36: 8.82355570e-01 + sys_corr_35: 4.53030803e-02 + sys_corr_36: -8.82355570e-01 sys_corr_37: -3.14279454e+00 sys_corr_38: -2.15731980e+00 - sys_corr_39: 5.92218110e-01 - sys_corr_40: -3.92032361e+00 - sys_corr_41: 3.10093250e-01 + sys_corr_39: -5.92218110e-01 + sys_corr_40: 3.92032361e+00 + sys_corr_41: -3.10093250e-01 sys_corr_42: 1.03016398e+00 sys_corr_43: -4.33084912e+00 sys_corr_44: -3.93017979e+00 sys_corr_45: 1.59753710e-01 - sys_corr_46: 2.56884444e+00 - sys_corr_47: -5.45605508e-01 + sys_corr_46: -2.56884444e+00 + sys_corr_47: 5.45605508e-01 sys_corr_48: 2.69244466e-01 sys_corr_49: 9.08881567e-01 sys_corr_50: 8.43004736e-01 - sys_corr_51: -5.90412078e+00 - sys_corr_52: 5.16351348e+00 - sys_corr_53: 2.52825828e+00 + sys_corr_51: 5.90412078e+00 + sys_corr_52: -5.16351348e+00 + sys_corr_53: -2.52825828e+00 sys_corr_54: 8.74328031e-02 sys_corr_55: 1.95172165e-01 - sys_corr_56: 7.82227428e-02 + sys_corr_56: -7.82227428e-02 sys_corr_57: 5.37394017e-01 - sys_corr_58: -2.95047485e-01 + sys_corr_58: 2.95047485e-01 sys_corr_59: 1.54557838e+00 sys_corr_60: 1.93856105e-01 - sys_corr_61: -1.65001911e+00 - sys_corr_62: 5.15267843e-01 + sys_corr_61: 1.65001911e+00 + sys_corr_62: -5.15267843e-01 sys_corr_63: 5.07846604e-01 sys_corr_64: -3.11782127e+00 - sys_corr_65: 4.45807806e-01 - sys_corr_66: 1.05037341e+00 - sys_corr_67: 6.03072911e-01 + sys_corr_65: -4.45807806e-01 + sys_corr_66: -1.05037341e+00 + sys_corr_67: -6.03072911e-01 sys_corr_68: -3.78992999e+00 sys_corr_69: -1.28589157e+00 sys_corr_70: 1.18296023e+00 - sys_corr_71: -1.57880847e+00 - sys_corr_72: 4.32946976e+00 + sys_corr_71: 1.57880847e+00 + sys_corr_72: -4.32946976e+00 sys_corr_73: 1.37460831e-01 sys_corr_74: -5.81170056e+00 - sys_corr_75: 2.99735574e-01 - sys_corr_76: 8.71421906e+00 + sys_corr_75: -2.99735574e-01 + sys_corr_76: -8.71421906e+00 sys_corr_77: -1.51829058e+00 sys_corr_78: -1.89038852e+00 sys_corr_79: -4.06461845e-01 - sys_corr_80: -8.14779220e+00 + sys_corr_80: 8.14779220e+00 sys_corr_81: 2.89542976e+00 - sys_corr_82: 1.16792637e+00 + sys_corr_82: -1.16792637e+00 sys_corr_83: -6.23096481e+00 sys_corr_84: -1.41199589e+01 sys_corr_85: -2.56757928e+01 - sys_corr_86: -1.15159882e+00 - sys_corr_87: -2.58180861e-01 + sys_corr_86: 1.15159882e+00 + sys_corr_87: 2.58180861e-01 sys_corr_88: -4.72296581e+00 sys_corr_89: -1.92275063e+02 - sys_corr_90: -1.78945492e+01 - sys_corr_91: 2.18457290e+01 - sys_corr_92: 1.75848244e+00 + sys_corr_90: -2.18457290e+01 + sys_corr_91: 1.78945492e+01 + sys_corr_92: -1.75848244e+00 sys_corr_93: -8.62645704e-01 sys_corr_94: -6.23681347e+00 - sys_corr_95: -4.02084625e+00 + sys_corr_95: 4.02084625e+00 sys_corr_96: 1.33087450e-01 - sys_corr_97: 8.86009668e-01 - sys_corr_98: 4.20743004e-01 + sys_corr_97: -8.86009668e-01 + sys_corr_98: -4.20743004e-01 sys_corr_99: 9.87248187e-02 - sys_corr_100: 2.78139872e-01 - sys_corr_101: 1.62747667e-01 - sys_corr_102: -1.47872131e+00 - sys_corr_103: -2.34726957e+00 - sys_corr_104: 9.07567324e-01 - sys_corr_105: 4.40910350e-01 + sys_corr_100: -4.40910350e-01 + sys_corr_101: -2.78139872e-01 + sys_corr_102: -1.62747667e-01 + sys_corr_103: -1.47872131e+00 + sys_corr_104: 2.34726957e+00 + sys_corr_105: -9.07567324e-01 sys_corr_106: 2.99740415e-01 sys_corr_107: 4.40595477e-01 - sys_corr_108: -9.52637585e-01 - sys_corr_109: -3.36919595e-01 - sys_corr_110: 2.62829571e-01 - sys_corr_111: -7.72589814e-01 - sys_corr_112: -3.49539122e-01 - sys_corr_113: -3.30923632e-01 - sys_corr_114: -2.72267388e-04 - sys_corr_115: -1.26151286e-01 + sys_corr_108: -3.36919595e-01 + sys_corr_109: 9.52637585e-01 + sys_corr_110: 7.72589814e-01 + sys_corr_111: -2.62829571e-01 + sys_corr_112: 3.49539122e-01 + sys_corr_113: 3.30923632e-01 + sys_corr_114: 2.72267388e-04 + sys_corr_115: 1.26151286e-01 sys_corr_116: -3.61046479e-02 - sys_corr_117: -3.47710195e-02 + sys_corr_117: 3.47710195e-02 sys_corr_118: -3.17619177e-02 sys_corr_119: -1.05187820e-02 sys_corr_120: 1.86681073e-02 sys_corr_121: -6.65958629e-03 - sys_corr_122: -2.98313127e-02 - sys_corr_123: -2.11950249e-02 - sys_corr_124: -1.02076312e-01 + sys_corr_122: -2.11950249e-02 + sys_corr_123: 2.98313127e-02 + sys_corr_124: 1.02076312e-01 sys_corr_125: 1.80005443e-02 sys_corr_126: -1.09751543e-02 - sys_corr_127: 4.86673688e-01 - sys_corr_128: -1.07179423e+00 - sys_corr_129: -2.28165006e-01 - sys_corr_130: 4.94424236e-03 - sys_corr_131: 9.80955439e-03 + sys_corr_127: -4.86673688e-01 + sys_corr_128: 1.07179423e+00 + sys_corr_129: 2.28165006e-01 + sys_corr_130: -4.94424236e-03 + sys_corr_131: -9.80955439e-03 sys_corr_132: -3.09082224e-01 stat: 0.0 luminosity: 39.56007 @@ -10058,17 +10058,17 @@ bins: sys_corr_6: -2.04628007e+00 sys_corr_7: -8.32256623e-02 sys_corr_8: 2.05669746e+00 - sys_corr_9: 1.79450152e+00 - sys_corr_10: 9.62800706e-01 + sys_corr_9: -1.79450152e+00 + sys_corr_10: -9.62800706e-01 sys_corr_11: 1.24847161e+00 - sys_corr_12: -1.03324296e+00 - sys_corr_13: -4.35101956e-01 + sys_corr_12: 1.03324296e+00 + sys_corr_13: 4.35101956e-01 sys_corr_14: -3.10836569e-01 sys_corr_15: 1.15831995e-01 sys_corr_16: -6.86305037e-01 - sys_corr_17: 1.81577158e-01 + sys_corr_17: -1.81577158e-01 sys_corr_18: -4.63159628e-01 - sys_corr_19: -5.39656012e-01 + sys_corr_19: 5.39656012e-01 sys_corr_20: -2.79746493e+00 sys_corr_21: -2.05032189e+00 sys_corr_22: -4.12530920e+00 @@ -10084,103 +10084,103 @@ bins: sys_corr_32: 1.17824969e+00 sys_corr_33: -1.46295325e-01 sys_corr_34: 8.23219710e-02 - sys_corr_35: 3.65381324e-01 - sys_corr_36: 1.57731694e+00 + sys_corr_35: -3.65381324e-01 + sys_corr_36: -1.57731694e+00 sys_corr_37: -1.19350071e+00 sys_corr_38: -9.85823755e-01 - sys_corr_39: 2.86672077e-01 - sys_corr_40: -1.25505223e+00 - sys_corr_41: -3.26754590e-01 + sys_corr_39: -2.86672077e-01 + sys_corr_40: 1.25505223e+00 + sys_corr_41: 3.26754590e-01 sys_corr_42: -8.19064578e-01 sys_corr_43: -1.78831057e+00 sys_corr_44: 6.56513413e-01 sys_corr_45: 5.53798811e-01 - sys_corr_46: 8.33588196e-01 - sys_corr_47: -8.53911719e-01 + sys_corr_46: -8.33588196e-01 + sys_corr_47: 8.53911719e-01 sys_corr_48: 3.76400824e+00 sys_corr_49: -1.14830004e+00 sys_corr_50: -2.59175434e+00 - sys_corr_51: -1.07549274e-01 - sys_corr_52: -3.14157111e-01 - sys_corr_53: 6.12837282e-02 + sys_corr_51: 1.07549274e-01 + sys_corr_52: 3.14157111e-01 + sys_corr_53: -6.12837282e-02 sys_corr_54: 5.59070129e-02 sys_corr_55: -7.29985301e-01 - sys_corr_56: 8.29695575e-02 + sys_corr_56: -8.29695575e-02 sys_corr_57: 9.28305714e-02 - sys_corr_58: 8.90277475e-02 + sys_corr_58: -8.90277475e-02 sys_corr_59: 3.20386764e-01 sys_corr_60: -5.20187327e-01 - sys_corr_61: -6.84518922e-01 - sys_corr_62: 4.22112051e-01 + sys_corr_61: 6.84518922e-01 + sys_corr_62: -4.22112051e-01 sys_corr_63: -5.52342836e-01 sys_corr_64: -6.86049206e-02 - sys_corr_65: 3.58537312e-01 - sys_corr_66: -5.31467907e-01 - sys_corr_67: 2.38021302e-01 + sys_corr_65: -3.58537312e-01 + sys_corr_66: 5.31467907e-01 + sys_corr_67: -2.38021302e-01 sys_corr_68: -6.91352478e-01 sys_corr_69: -6.07453750e-01 sys_corr_70: 4.72632406e-01 - sys_corr_71: 1.04840829e-01 - sys_corr_72: -4.49255403e-01 + sys_corr_71: -1.04840829e-01 + sys_corr_72: 4.49255403e-01 sys_corr_73: 2.93891684e-01 sys_corr_74: -5.26018047e-02 - sys_corr_75: -6.29137060e-01 - sys_corr_76: 5.33814442e-01 + sys_corr_75: 6.29137060e-01 + sys_corr_76: -5.33814442e-01 sys_corr_77: 2.82475769e-01 sys_corr_78: -4.42744178e-01 sys_corr_79: -2.26780765e-01 - sys_corr_80: 1.95961625e+00 + sys_corr_80: -1.95961625e+00 sys_corr_81: 2.52231270e-01 - sys_corr_82: 2.11017964e-01 + sys_corr_82: -2.11017964e-01 sys_corr_83: -5.86517386e-01 sys_corr_84: -4.65410522e-01 sys_corr_85: -5.15051423e-01 - sys_corr_86: -1.08873934e+00 - sys_corr_87: -2.22600925e-02 + sys_corr_86: 1.08873934e+00 + sys_corr_87: 2.22600925e-02 sys_corr_88: -1.19319225e+00 sys_corr_89: -2.41524433e+00 - sys_corr_90: 4.47109564e-01 - sys_corr_91: 3.95340316e-01 - sys_corr_92: 9.10389912e-01 + sys_corr_90: -3.95340316e-01 + sys_corr_91: -4.47109564e-01 + sys_corr_92: -9.10389912e-01 sys_corr_93: 4.46106256e-02 sys_corr_94: 1.18304101e+00 - sys_corr_95: 3.58199859e+00 + sys_corr_95: -3.58199859e+00 sys_corr_96: 1.54919522e-01 - sys_corr_97: -4.96337152e-01 - sys_corr_98: -3.11803161e-01 + sys_corr_97: 4.96337152e-01 + sys_corr_98: 3.11803161e-01 sys_corr_99: 6.05070439e-02 - sys_corr_100: -1.25009822e-01 - sys_corr_101: 4.31353555e-01 - sys_corr_102: 9.73651139e-01 - sys_corr_103: -1.61735608e+00 - sys_corr_104: 4.55539315e-01 - sys_corr_105: 2.25587245e+00 + sys_corr_100: -2.25587245e+00 + sys_corr_101: 1.25009822e-01 + sys_corr_102: -4.31353555e-01 + sys_corr_103: 9.73651139e-01 + sys_corr_104: 1.61735608e+00 + sys_corr_105: -4.55539315e-01 sys_corr_106: 1.83015873e+00 sys_corr_107: 1.15104304e+01 - sys_corr_108: 4.08027045e+00 - sys_corr_109: 1.37950160e+00 - sys_corr_110: -2.60629945e-01 - sys_corr_111: 3.49483925e+01 - sys_corr_112: 3.95364003e-01 - sys_corr_113: 2.17985375e-01 - sys_corr_114: 2.26568349e-04 - sys_corr_115: 5.72521604e-01 + sys_corr_108: 1.37950160e+00 + sys_corr_109: -4.08027045e+00 + sys_corr_110: -3.49483925e+01 + sys_corr_111: 2.60629945e-01 + sys_corr_112: -3.95364003e-01 + sys_corr_113: -2.17985375e-01 + sys_corr_114: -2.26568349e-04 + sys_corr_115: -5.72521604e-01 sys_corr_116: -2.08276360e-01 - sys_corr_117: -7.91378519e-02 + sys_corr_117: 7.91378519e-02 sys_corr_118: 2.69591587e-02 sys_corr_119: -2.25342559e-02 sys_corr_120: 1.17452308e-03 sys_corr_121: -6.23252509e-02 - sys_corr_122: -1.84149366e-01 - sys_corr_123: -8.81989110e-02 - sys_corr_124: -2.57047262e-01 + sys_corr_122: -8.81989110e-02 + sys_corr_123: 1.84149366e-01 + sys_corr_124: 2.57047262e-01 sys_corr_125: 1.10337565e-01 sys_corr_126: 6.85246596e-02 - sys_corr_127: -7.14693797e-02 - sys_corr_128: 9.47654839e+01 - sys_corr_129: -3.73233929e-03 - sys_corr_130: 2.85435887e-01 - sys_corr_131: 4.96938043e-02 + sys_corr_127: 7.14693797e-02 + sys_corr_128: -9.47654839e+01 + sys_corr_129: 3.73233929e-03 + sys_corr_130: -2.85435887e-01 + sys_corr_131: -4.96938043e-02 sys_corr_132: -8.08890927e-02 stat: 0.0 luminosity: 1.34621960e+01 @@ -10192,17 +10192,17 @@ bins: sys_corr_6: -8.88802461e+01 sys_corr_7: -9.29374337e+02 sys_corr_8: -4.13345457e+02 - sys_corr_9: 1.14163706e+03 - sys_corr_10: -2.47589997e+02 + sys_corr_9: -1.14163706e+03 + sys_corr_10: 2.47589997e+02 sys_corr_11: -2.17720845e+02 - sys_corr_12: 3.16728881e+02 - sys_corr_13: 2.73961495e+02 + sys_corr_12: -3.16728881e+02 + sys_corr_13: -2.73961495e+02 sys_corr_14: -1.64177102e+02 sys_corr_15: -3.80745222e+02 sys_corr_16: -5.52362564e+02 - sys_corr_17: 1.21030950e+02 + sys_corr_17: -1.21030950e+02 sys_corr_18: -2.14862946e+02 - sys_corr_19: 1.94180857e+01 + sys_corr_19: -1.94180857e+01 sys_corr_20: 4.20597516e+01 sys_corr_21: 1.43410687e+01 sys_corr_22: 2.71278215e+01 @@ -10218,103 +10218,103 @@ bins: sys_corr_32: 3.08682194e-01 sys_corr_33: 1.03005975e+00 sys_corr_34: 1.56140201e+00 - sys_corr_35: -2.91131579e-01 - sys_corr_36: 7.72108488e-02 + sys_corr_35: 2.91131579e-01 + sys_corr_36: -7.72108488e-02 sys_corr_37: -1.26097722e+00 sys_corr_38: -8.13772025e-01 - sys_corr_39: 2.96535971e-01 - sys_corr_40: -1.15865628e+00 - sys_corr_41: 1.23772941e+00 + sys_corr_39: -2.96535971e-01 + sys_corr_40: 1.15865628e+00 + sys_corr_41: -1.23772941e+00 sys_corr_42: 6.58260749e-02 sys_corr_43: -9.23998817e-01 sys_corr_44: -1.56403265e+00 sys_corr_45: -4.97994037e-01 - sys_corr_46: 9.64777182e-01 - sys_corr_47: -5.04843113e-02 + sys_corr_46: -9.64777182e-01 + sys_corr_47: 5.04843113e-02 sys_corr_48: -1.13660351e+00 sys_corr_49: 2.04733648e-04 sys_corr_50: -7.22315969e-01 - sys_corr_51: -1.41613190e-01 - sys_corr_52: 4.81785837e-01 - sys_corr_53: -1.43606884e-02 + sys_corr_51: 1.41613190e-01 + sys_corr_52: -4.81785837e-01 + sys_corr_53: 1.43606884e-02 sys_corr_54: -4.83834690e-01 sys_corr_55: 3.24774201e-01 - sys_corr_56: -8.09386661e-01 + sys_corr_56: 8.09386661e-01 sys_corr_57: -4.99718830e-01 - sys_corr_58: 3.13637337e-01 + sys_corr_58: -3.13637337e-01 sys_corr_59: -5.66471281e-02 sys_corr_60: -3.94779731e-01 - sys_corr_61: 5.43456460e-01 - sys_corr_62: 3.63129998e-01 + sys_corr_61: -5.43456460e-01 + sys_corr_62: -3.63129998e-01 sys_corr_63: 2.16115302e-01 sys_corr_64: 2.33760259e-01 - sys_corr_65: 2.91218225e-01 - sys_corr_66: 4.69509570e-01 - sys_corr_67: -3.97276384e-01 + sys_corr_65: -2.91218225e-01 + sys_corr_66: -4.69509570e-01 + sys_corr_67: 3.97276384e-01 sys_corr_68: 3.94197513e-01 sys_corr_69: -3.80278235e-01 sys_corr_70: 4.87083575e-02 - sys_corr_71: -1.41997289e-01 - sys_corr_72: -9.55714552e-02 + sys_corr_71: 1.41997289e-01 + sys_corr_72: 9.55714552e-02 sys_corr_73: -2.24715588e-01 sys_corr_74: 9.88920874e-02 - sys_corr_75: 9.30610977e-03 - sys_corr_76: 2.31598930e-01 + sys_corr_75: -9.30610977e-03 + sys_corr_76: -2.31598930e-01 sys_corr_77: 7.10082780e-01 sys_corr_78: 1.82939102e-01 sys_corr_79: 2.55150872e-01 - sys_corr_80: 9.98663184e-02 + sys_corr_80: -9.98663184e-02 sys_corr_81: -2.28049677e-01 - sys_corr_82: -1.15446947e+00 + sys_corr_82: 1.15446947e+00 sys_corr_83: -1.18437405e-01 sys_corr_84: -5.38990422e-01 sys_corr_85: -1.87910088e-01 - sys_corr_86: 6.57162524e-02 - sys_corr_87: -7.85183196e-01 + sys_corr_86: -6.57162524e-02 + sys_corr_87: 7.85183196e-01 sys_corr_88: 1.58534313e-02 sys_corr_89: 2.34832500e-02 - sys_corr_90: 8.67891811e-02 - sys_corr_91: 1.68891286e-01 - sys_corr_92: -7.29350378e-02 + sys_corr_90: -1.68891286e-01 + sys_corr_91: -8.67891811e-02 + sys_corr_92: 7.29350378e-02 sys_corr_93: 4.22898921e-01 sys_corr_94: 4.52153707e-02 - sys_corr_95: 1.35859989e-01 + sys_corr_95: -1.35859989e-01 sys_corr_96: 1.21052869e+00 - sys_corr_97: -5.55043812e-01 - sys_corr_98: 1.72410020e-01 + sys_corr_97: 5.55043812e-01 + sys_corr_98: -1.72410020e-01 sys_corr_99: -3.08857895e-01 - sys_corr_100: 2.42604905e-01 - sys_corr_101: 2.45725138e-01 - sys_corr_102: 2.26139140e-01 - sys_corr_103: 6.13207900e-02 - sys_corr_104: 5.18717865e-02 - sys_corr_105: 7.40186993e-02 + sys_corr_100: -7.40186993e-02 + sys_corr_101: -2.42604905e-01 + sys_corr_102: -2.45725138e-01 + sys_corr_103: 2.26139140e-01 + sys_corr_104: -6.13207900e-02 + sys_corr_105: -5.18717865e-02 sys_corr_106: -3.00838167e-02 sys_corr_107: -1.76163596e-02 - sys_corr_108: -2.15315818e-02 - sys_corr_109: -6.19104781e-03 - sys_corr_110: -1.61749890e-01 - sys_corr_111: -4.77714221e-04 - sys_corr_112: 7.85689656e-03 - sys_corr_113: -5.81699448e-02 - sys_corr_114: 1.92369377e-05 - sys_corr_115: 3.32831558e-02 + sys_corr_108: -6.19104781e-03 + sys_corr_109: 2.15315818e-02 + sys_corr_110: 4.77714221e-04 + sys_corr_111: 1.61749890e-01 + sys_corr_112: -7.85689656e-03 + sys_corr_113: 5.81699448e-02 + sys_corr_114: -1.92369377e-05 + sys_corr_115: -3.32831558e-02 sys_corr_116: 7.48336969e-03 - sys_corr_117: 5.59861660e-03 + sys_corr_117: -5.59861660e-03 sys_corr_118: 2.97175286e-02 sys_corr_119: -1.42653640e-04 sys_corr_120: -1.20148105e-03 sys_corr_121: 8.86405921e-04 - sys_corr_122: 8.98506363e-03 - sys_corr_123: 4.34802605e-03 - sys_corr_124: 2.13633772e-02 + sys_corr_122: 4.34802605e-03 + sys_corr_123: -8.98506363e-03 + sys_corr_124: -2.13633772e-02 sys_corr_125: -1.05260660e-02 sys_corr_126: 2.88564986e-04 - sys_corr_127: 2.23872744e-01 - sys_corr_128: 3.57201882e-02 - sys_corr_129: -3.02176977e-02 - sys_corr_130: -2.07835513e-03 - sys_corr_131: -1.42051164e-03 + sys_corr_127: -2.23872744e-01 + sys_corr_128: -3.57201882e-02 + sys_corr_129: 3.02176977e-02 + sys_corr_130: 2.07835513e-03 + sys_corr_131: 1.42051164e-03 sys_corr_132: 1.74385147e-02 stat: 0.0 luminosity: 6.97900185e+03 @@ -10326,17 +10326,17 @@ bins: sys_corr_6: -7.66279879e+01 sys_corr_7: -8.10392816e+02 sys_corr_8: 5.08537439e+02 - sys_corr_9: -5.94784118e+01 - sys_corr_10: -1.92027369e+02 + sys_corr_9: 5.94784118e+01 + sys_corr_10: 1.92027369e+02 sys_corr_11: 8.42558643e+01 - sys_corr_12: -2.22378875e+02 - sys_corr_13: -4.00322630e+02 + sys_corr_12: 2.22378875e+02 + sys_corr_13: 4.00322630e+02 sys_corr_14: 3.24709473e+02 sys_corr_15: 7.20565387e+02 sys_corr_16: 8.37837751e+02 - sys_corr_17: -1.98942924e+02 + sys_corr_17: 1.98942924e+02 sys_corr_18: 3.44366055e+02 - sys_corr_19: 3.43610011e+00 + sys_corr_19: -3.43610011e+00 sys_corr_20: 5.67224208e+00 sys_corr_21: 9.80498351e+00 sys_corr_22: -3.51746192e+01 @@ -10352,103 +10352,103 @@ bins: sys_corr_32: 8.03708186e-01 sys_corr_33: 3.01246479e-01 sys_corr_34: -2.29283172e-01 - sys_corr_35: 4.41038844e-01 - sys_corr_36: 7.42043417e-01 + sys_corr_35: -4.41038844e-01 + sys_corr_36: -7.42043417e-01 sys_corr_37: -9.59786095e-01 sys_corr_38: -1.04000570e+00 - sys_corr_39: 2.26290803e-01 - sys_corr_40: -8.83830464e-01 - sys_corr_41: 1.49195084e+00 + sys_corr_39: -2.26290803e-01 + sys_corr_40: 8.83830464e-01 + sys_corr_41: -1.49195084e+00 sys_corr_42: 1.37018600e+00 sys_corr_43: -7.40818173e-01 sys_corr_44: -9.81060097e-01 sys_corr_45: 1.22919609e+00 - sys_corr_46: 2.69931352e-02 - sys_corr_47: -5.44536315e-02 + sys_corr_46: -2.69931352e-02 + sys_corr_47: 5.44536315e-02 sys_corr_48: -3.67424889e-01 sys_corr_49: 2.16652338e-01 sys_corr_50: -4.61776160e-01 - sys_corr_51: -4.45297195e-01 - sys_corr_52: 5.77128724e-01 - sys_corr_53: -3.34886723e-01 + sys_corr_51: 4.45297195e-01 + sys_corr_52: -5.77128724e-01 + sys_corr_53: 3.34886723e-01 sys_corr_54: 2.01942354e-01 sys_corr_55: 3.83717421e-01 - sys_corr_56: 1.77529085e-01 + sys_corr_56: -1.77529085e-01 sys_corr_57: 4.46247275e-02 - sys_corr_58: -2.46217208e-01 + sys_corr_58: 2.46217208e-01 sys_corr_59: -2.09862960e-02 sys_corr_60: -2.93089221e-01 - sys_corr_61: -1.85986447e-01 - sys_corr_62: 4.57988505e-01 + sys_corr_61: 1.85986447e-01 + sys_corr_62: -4.57988505e-01 sys_corr_63: 4.12454294e-02 sys_corr_64: 2.39275601e-01 - sys_corr_65: 9.26445254e-02 - sys_corr_66: 4.79206497e-01 - sys_corr_67: -5.76438076e-02 + sys_corr_65: -9.26445254e-02 + sys_corr_66: -4.79206497e-01 + sys_corr_67: 5.76438076e-02 sys_corr_68: 4.05757654e-02 sys_corr_69: 3.51084584e-01 sys_corr_70: 6.44631761e-02 - sys_corr_71: 2.73286345e-02 - sys_corr_72: 8.75838957e-02 + sys_corr_71: -2.73286345e-02 + sys_corr_72: -8.75838957e-02 sys_corr_73: 5.43671034e-01 sys_corr_74: -1.78550056e-02 - sys_corr_75: -1.32246594e-01 - sys_corr_76: 1.62202087e-01 + sys_corr_75: 1.32246594e-01 + sys_corr_76: -1.62202087e-01 sys_corr_77: 4.89557437e-01 sys_corr_78: 3.04768111e-03 sys_corr_79: 1.79376127e-01 - sys_corr_80: 1.62414275e-01 + sys_corr_80: -1.62414275e-01 sys_corr_81: -2.27281051e-02 - sys_corr_82: 8.40793041e-01 + sys_corr_82: -8.40793041e-01 sys_corr_83: 1.14526032e-01 sys_corr_84: 6.29039852e-01 sys_corr_85: -3.49818678e-01 - sys_corr_86: -1.33626200e-01 - sys_corr_87: -7.81274712e-01 + sys_corr_86: 1.33626200e-01 + sys_corr_87: 7.81274712e-01 sys_corr_88: -1.37981664e-01 sys_corr_89: -1.41562223e-01 - sys_corr_90: -1.00201593e-01 - sys_corr_91: -5.86591317e-01 - sys_corr_92: -1.62382314e-01 + sys_corr_90: 5.86591317e-01 + sys_corr_91: 1.00201593e-01 + sys_corr_92: 1.62382314e-01 sys_corr_93: -9.14818246e-01 sys_corr_94: 3.57612719e-01 - sys_corr_95: 1.03524176e-02 + sys_corr_95: -1.03524176e-02 sys_corr_96: -1.02881979e+00 - sys_corr_97: -9.47559232e-01 - sys_corr_98: 1.32379409e-01 + sys_corr_97: 9.47559232e-01 + sys_corr_98: -1.32379409e-01 sys_corr_99: 3.58889627e-01 - sys_corr_100: -7.72705386e-02 - sys_corr_101: 1.13981738e-01 - sys_corr_102: 1.94277789e-02 - sys_corr_103: 2.52030100e-02 - sys_corr_104: -9.15763425e-02 - sys_corr_105: 7.14394015e-02 + sys_corr_100: -7.14394015e-02 + sys_corr_101: 7.72705386e-02 + sys_corr_102: -1.13981738e-01 + sys_corr_103: 1.94277789e-02 + sys_corr_104: -2.52030100e-02 + sys_corr_105: 9.15763425e-02 sys_corr_106: 6.99994876e-02 sys_corr_107: 1.03875589e-03 - sys_corr_108: 2.18690075e-03 - sys_corr_109: -6.62724264e-03 - sys_corr_110: -8.69073217e-02 - sys_corr_111: 1.65736687e-02 - sys_corr_112: -2.20355159e-02 - sys_corr_113: -4.17542251e-02 - sys_corr_114: 7.15913227e-05 - sys_corr_115: 1.28205093e-02 + sys_corr_108: -6.62724264e-03 + sys_corr_109: -2.18690075e-03 + sys_corr_110: -1.65736687e-02 + sys_corr_111: 8.69073217e-02 + sys_corr_112: 2.20355159e-02 + sys_corr_113: 4.17542251e-02 + sys_corr_114: -7.15913227e-05 + sys_corr_115: -1.28205093e-02 sys_corr_116: 2.09044825e-03 - sys_corr_117: -9.40609410e-04 + sys_corr_117: 9.40609410e-04 sys_corr_118: 1.75992735e-02 sys_corr_119: -7.92683986e-04 sys_corr_120: 4.91567633e-03 sys_corr_121: 1.73320898e-03 - sys_corr_122: 4.80282749e-03 - sys_corr_123: 3.92689897e-03 - sys_corr_124: 1.09145713e-02 + sys_corr_122: 3.92689897e-03 + sys_corr_123: -4.80282749e-03 + sys_corr_124: -1.09145713e-02 sys_corr_125: -2.09880723e-03 sys_corr_126: 3.60660297e-04 - sys_corr_127: -3.17685777e-02 - sys_corr_128: 1.85676639e-02 - sys_corr_129: -3.51491765e-02 - sys_corr_130: -1.16018722e-03 - sys_corr_131: -4.74287429e-03 + sys_corr_127: 3.17685777e-02 + sys_corr_128: -1.85676639e-02 + sys_corr_129: 3.51491765e-02 + sys_corr_130: 1.16018722e-03 + sys_corr_131: 4.74287429e-03 sys_corr_132: 1.06676823e-02 stat: 0.0 luminosity: 6.93522779e+03 @@ -10460,17 +10460,17 @@ bins: sys_corr_6: 4.63516577e+01 sys_corr_7: 7.03409544e+02 sys_corr_8: -8.65638213e+02 - sys_corr_9: -4.68497580e+02 - sys_corr_10: 1.30581352e+03 + sys_corr_9: 4.68497580e+02 + sys_corr_10: -1.30581352e+03 sys_corr_11: 2.11249847e+02 - sys_corr_12: -3.95218462e+02 - sys_corr_13: -4.84978103e+02 + sys_corr_12: 3.95218462e+02 + sys_corr_13: 4.84978103e+02 sys_corr_14: -2.03433833e+01 sys_corr_15: -1.18756899e+02 sys_corr_16: -1.52077948e+02 - sys_corr_17: 5.14350469e+01 + sys_corr_17: -5.14350469e+01 sys_corr_18: -8.52769860e+01 - sys_corr_19: -1.67649314e+01 + sys_corr_19: 1.67649314e+01 sys_corr_20: 1.45871510e+01 sys_corr_21: -7.29235371e+00 sys_corr_22: -3.56886843e+01 @@ -10486,103 +10486,103 @@ bins: sys_corr_32: 2.35526936e-01 sys_corr_33: 6.42554737e-01 sys_corr_34: 1.45818103e+00 - sys_corr_35: -3.57243617e-01 - sys_corr_36: 4.42852117e-01 + sys_corr_35: 3.57243617e-01 + sys_corr_36: -4.42852117e-01 sys_corr_37: -1.72960901e+00 sys_corr_38: -7.93426567e-01 - sys_corr_39: 1.90049438e-01 - sys_corr_40: -1.03897039e+00 - sys_corr_41: 5.60138406e-01 + sys_corr_39: -1.90049438e-01 + sys_corr_40: 1.03897039e+00 + sys_corr_41: -5.60138406e-01 sys_corr_42: 1.04962973e+00 sys_corr_43: -1.21743053e+00 sys_corr_44: -1.11638477e+00 sys_corr_45: -6.52486910e-02 - sys_corr_46: 4.20042790e-01 - sys_corr_47: 5.99520017e-02 + sys_corr_46: -4.20042790e-01 + sys_corr_47: -5.99520017e-02 sys_corr_48: -7.43002577e-01 sys_corr_49: -6.83632816e-01 sys_corr_50: -2.50167952e-01 - sys_corr_51: -3.69380886e-01 - sys_corr_52: 8.15904325e-01 - sys_corr_53: 3.80517349e-02 + sys_corr_51: 3.69380886e-01 + sys_corr_52: -8.15904325e-01 + sys_corr_53: -3.80517349e-02 sys_corr_54: -2.35875651e-02 sys_corr_55: 6.42923626e-02 - sys_corr_56: 3.75038459e-01 + sys_corr_56: -3.75038459e-01 sys_corr_57: 3.85571310e-01 - sys_corr_58: -7.38589460e-01 + sys_corr_58: 7.38589460e-01 sys_corr_59: 1.09348256e-01 sys_corr_60: -4.86124964e-01 - sys_corr_61: 2.78000690e-01 - sys_corr_62: 3.08458968e-01 + sys_corr_61: -2.78000690e-01 + sys_corr_62: -3.08458968e-01 sys_corr_63: 3.50889967e-01 sys_corr_64: 1.65460432e-01 - sys_corr_65: 4.11751435e-01 - sys_corr_66: 2.87087133e-01 - sys_corr_67: -7.22095210e-02 + sys_corr_65: -4.11751435e-01 + sys_corr_66: -2.87087133e-01 + sys_corr_67: 7.22095210e-02 sys_corr_68: -2.56782892e-01 sys_corr_69: -5.18818647e-01 sys_corr_70: -3.25076016e-01 - sys_corr_71: -3.88403343e-01 - sys_corr_72: 1.45974232e-01 + sys_corr_71: 3.88403343e-01 + sys_corr_72: -1.45974232e-01 sys_corr_73: -6.01683107e-02 sys_corr_74: -1.99000118e-01 - sys_corr_75: -2.66617176e-01 - sys_corr_76: -1.48493050e-01 + sys_corr_75: 2.66617176e-01 + sys_corr_76: 1.48493050e-01 sys_corr_77: 2.25252519e-01 sys_corr_78: 1.53766819e-01 sys_corr_79: 1.03948120e-01 - sys_corr_80: 2.37031322e-01 + sys_corr_80: -2.37031322e-01 sys_corr_81: 5.02916545e-02 - sys_corr_82: 8.70215530e-02 + sys_corr_82: -8.70215530e-02 sys_corr_83: 9.22282792e-02 sys_corr_84: 2.18942486e-01 sys_corr_85: -3.51348850e-01 - sys_corr_86: -1.13914746e-01 - sys_corr_87: -9.32996969e-02 + sys_corr_86: 1.13914746e-01 + sys_corr_87: 9.32996969e-02 sys_corr_88: -1.47129576e-02 sys_corr_89: -1.05791015e-02 - sys_corr_90: -1.65448054e-01 - sys_corr_91: -4.03738913e-01 - sys_corr_92: -2.59664478e-01 + sys_corr_90: 4.03738913e-01 + sys_corr_91: 1.65448054e-01 + sys_corr_92: 2.59664478e-01 sys_corr_93: 1.09509857e+00 sys_corr_94: 2.18533575e-03 - sys_corr_95: -3.64042471e-03 + sys_corr_95: 3.64042471e-03 sys_corr_96: -4.46416828e-01 - sys_corr_97: -2.48964776e-01 - sys_corr_98: -2.92754431e-01 + sys_corr_97: 2.48964776e-01 + sys_corr_98: 2.92754431e-01 sys_corr_99: -4.00904072e-01 - sys_corr_100: 7.83604025e-02 - sys_corr_101: 5.46875251e-02 - sys_corr_102: -1.18139491e-01 - sys_corr_103: -2.01470336e-02 - sys_corr_104: -6.51749688e-02 - sys_corr_105: 2.95624902e-02 + sys_corr_100: -2.95624902e-02 + sys_corr_101: -7.83604025e-02 + sys_corr_102: -5.46875251e-02 + sys_corr_103: -1.18139491e-01 + sys_corr_104: 2.01470336e-02 + sys_corr_105: 6.51749688e-02 sys_corr_106: -4.36932428e-02 sys_corr_107: -5.96214188e-02 - sys_corr_108: -1.31800487e-04 - sys_corr_109: -3.07298678e-02 - sys_corr_110: -4.76590985e-01 - sys_corr_111: 2.70076448e-02 - sys_corr_112: -4.66847469e-03 - sys_corr_113: -3.65280155e-02 - sys_corr_114: -1.09734336e-04 - sys_corr_115: 1.95468190e-03 + sys_corr_108: -3.07298678e-02 + sys_corr_109: 1.31800487e-04 + sys_corr_110: -2.70076448e-02 + sys_corr_111: 4.76590985e-01 + sys_corr_112: 4.66847469e-03 + sys_corr_113: 3.65280155e-02 + sys_corr_114: 1.09734336e-04 + sys_corr_115: -1.95468190e-03 sys_corr_116: 4.35632097e-03 - sys_corr_117: 9.17161630e-05 + sys_corr_117: -9.17161630e-05 sys_corr_118: 1.72287016e-02 sys_corr_119: 1.23730531e-03 sys_corr_120: 1.55860140e-03 sys_corr_121: 5.46915334e-04 - sys_corr_122: -2.19218543e-04 - sys_corr_123: 4.64696597e-04 - sys_corr_124: 8.17498169e-03 + sys_corr_122: 4.64696597e-04 + sys_corr_123: 2.19218543e-04 + sys_corr_124: -8.17498169e-03 sys_corr_125: -3.31778458e-03 sys_corr_126: -6.48484227e-04 - sys_corr_127: -3.77905453e-02 - sys_corr_128: 1.73695591e-02 - sys_corr_129: -1.00855812e-02 - sys_corr_130: -5.11531150e-04 - sys_corr_131: -2.17885715e-03 + sys_corr_127: 3.77905453e-02 + sys_corr_128: -1.73695591e-02 + sys_corr_129: 1.00855812e-02 + sys_corr_130: 5.11531150e-04 + sys_corr_131: 2.17885715e-03 sys_corr_132: 1.24491741e-03 stat: 0.0 luminosity: 6.94862762e+03 @@ -10594,17 +10594,17 @@ bins: sys_corr_6: 1.74796328e+02 sys_corr_7: 1.25471027e+02 sys_corr_8: 1.07090176e+03 - sys_corr_9: -1.23943388e+03 - sys_corr_10: -5.17650243e+02 + sys_corr_9: 1.23943388e+03 + sys_corr_10: 5.17650243e+02 sys_corr_11: 2.29938411e+02 - sys_corr_12: 3.09651875e+02 - sys_corr_13: 1.69397696e+02 + sys_corr_12: -3.09651875e+02 + sys_corr_13: -1.69397696e+02 sys_corr_14: -3.28186824e+02 sys_corr_15: -5.44896412e+02 sys_corr_16: -3.32266729e+02 - sys_corr_17: 7.03320966e+01 + sys_corr_17: -7.03320966e+01 sys_corr_18: -1.38745546e+02 - sys_corr_19: -2.08151780e+01 + sys_corr_19: 2.08151780e+01 sys_corr_20: -1.32359183e+01 sys_corr_21: 5.88882575e+00 sys_corr_22: -4.43417531e+01 @@ -10620,103 +10620,103 @@ bins: sys_corr_32: 8.28584353e-01 sys_corr_33: 5.92511646e-01 sys_corr_34: -1.52543442e-01 - sys_corr_35: -8.19131488e-02 - sys_corr_36: 1.00832555e+00 + sys_corr_35: 8.19131488e-02 + sys_corr_36: -1.00832555e+00 sys_corr_37: -1.01405379e+00 sys_corr_38: -2.26704784e-01 - sys_corr_39: 1.45270265e-01 - sys_corr_40: -3.22165400e-01 - sys_corr_41: -7.25560974e-01 + sys_corr_39: -1.45270265e-01 + sys_corr_40: 3.22165400e-01 + sys_corr_41: 7.25560974e-01 sys_corr_42: 3.19276074e-01 sys_corr_43: -8.93748481e-01 sys_corr_44: -4.03304909e-01 sys_corr_45: -2.67599269e-01 - sys_corr_46: -7.95792894e-01 - sys_corr_47: 1.01696615e-01 + sys_corr_46: 7.95792894e-01 + sys_corr_47: -1.01696615e-01 sys_corr_48: -4.66587145e-01 sys_corr_49: 9.18093104e-01 sys_corr_50: -5.26899191e-02 - sys_corr_51: -5.27411226e-01 - sys_corr_52: 2.86600611e-01 - sys_corr_53: 8.33076540e-02 + sys_corr_51: 5.27411226e-01 + sys_corr_52: -2.86600611e-01 + sys_corr_53: -8.33076540e-02 sys_corr_54: 1.30876129e-01 sys_corr_55: -1.33577747e-01 - sys_corr_56: 1.79462863e-01 + sys_corr_56: -1.79462863e-01 sys_corr_57: 4.03872659e-01 - sys_corr_58: 2.02130003e-01 + sys_corr_58: -2.02130003e-01 sys_corr_59: -2.72859969e-01 sys_corr_60: 8.58474008e-01 - sys_corr_61: -4.63723479e-01 - sys_corr_62: -4.53910261e-01 + sys_corr_61: 4.63723479e-01 + sys_corr_62: 4.53910261e-01 sys_corr_63: -3.30500905e-01 sys_corr_64: -3.84047584e-01 - sys_corr_65: -5.49853297e-01 - sys_corr_66: -6.55182294e-02 - sys_corr_67: 6.79774612e-02 + sys_corr_65: 5.49853297e-01 + sys_corr_66: 6.55182294e-02 + sys_corr_67: -6.79774612e-02 sys_corr_68: -2.14827320e-01 sys_corr_69: -1.36713571e-01 sys_corr_70: -4.17389050e-01 - sys_corr_71: 3.31714339e-02 - sys_corr_72: 2.18081645e-01 + sys_corr_71: -3.31714339e-02 + sys_corr_72: -2.18081645e-01 sys_corr_73: -1.72728097e-01 sys_corr_74: 1.41164113e-01 - sys_corr_75: -3.01626120e-02 - sys_corr_76: -1.37113982e-01 + sys_corr_75: 3.01626120e-02 + sys_corr_76: 1.37113982e-01 sys_corr_77: -6.03049092e-02 sys_corr_78: -1.81122300e-01 sys_corr_79: -3.59114412e-01 - sys_corr_80: 2.62023735e-01 + sys_corr_80: -2.62023735e-01 sys_corr_81: 4.64949724e-02 - sys_corr_82: -2.71772923e-02 + sys_corr_82: 2.71772923e-02 sys_corr_83: 5.30347060e-02 sys_corr_84: 2.52695318e-01 sys_corr_85: -1.18694519e-01 - sys_corr_86: 1.85637997e-01 - sys_corr_87: 5.57743233e-01 + sys_corr_86: -1.85637997e-01 + sys_corr_87: -5.57743233e-01 sys_corr_88: 3.23922544e-01 sys_corr_89: -2.30242386e-02 - sys_corr_90: -3.41360765e-01 - sys_corr_91: -5.01714130e-01 - sys_corr_92: 2.17571396e-02 + sys_corr_90: 5.01714130e-01 + sys_corr_91: 3.41360765e-01 + sys_corr_92: -2.17571396e-02 sys_corr_93: -2.33027112e-01 sys_corr_94: 1.54522590e-01 - sys_corr_95: -2.03787998e-01 + sys_corr_95: 2.03787998e-01 sys_corr_96: 5.46283267e-01 - sys_corr_97: 3.75647771e-01 - sys_corr_98: -8.94152387e-01 + sys_corr_97: -3.75647771e-01 + sys_corr_98: 8.94152387e-01 sys_corr_99: -4.02082639e-01 - sys_corr_100: 5.74833223e-02 - sys_corr_101: -4.36358259e-02 - sys_corr_102: -8.08840256e-02 - sys_corr_103: -6.56815887e-02 - sys_corr_104: -2.51808705e-02 - sys_corr_105: -3.79589159e-02 + sys_corr_100: 3.79589159e-02 + sys_corr_101: -5.74833223e-02 + sys_corr_102: 4.36358259e-02 + sys_corr_103: -8.08840256e-02 + sys_corr_104: 6.56815887e-02 + sys_corr_105: 2.51808705e-02 sys_corr_106: -5.84941635e-02 sys_corr_107: -1.26518552e-01 - sys_corr_108: 1.65988187e-02 - sys_corr_109: 1.34328848e-02 - sys_corr_110: -1.78222575e-01 - sys_corr_111: 5.23883693e-02 - sys_corr_112: 1.21550845e-02 - sys_corr_113: -1.82789906e-02 - sys_corr_114: -5.13637875e-05 - sys_corr_115: -1.12880634e-02 + sys_corr_108: 1.34328848e-02 + sys_corr_109: -1.65988187e-02 + sys_corr_110: -5.23883693e-02 + sys_corr_111: 1.78222575e-01 + sys_corr_112: -1.21550845e-02 + sys_corr_113: 1.82789906e-02 + sys_corr_114: 5.13637875e-05 + sys_corr_115: 1.12880634e-02 sys_corr_116: -1.55632268e-03 - sys_corr_117: -5.32334226e-03 + sys_corr_117: 5.32334226e-03 sys_corr_118: -2.66079340e-02 sys_corr_119: 1.14430198e-03 sys_corr_120: 1.61304968e-03 sys_corr_121: -1.35780219e-03 - sys_corr_122: -7.70890061e-03 - sys_corr_123: -6.36999437e-03 - sys_corr_124: -4.25245961e-03 + sys_corr_122: -6.36999437e-03 + sys_corr_123: 7.70890061e-03 + sys_corr_124: 4.25245961e-03 sys_corr_125: 3.32660393e-03 sys_corr_126: -2.15871179e-03 - sys_corr_127: -2.70250671e-01 - sys_corr_128: -1.73181330e-02 - sys_corr_129: -7.52098559e-03 - sys_corr_130: 3.39745385e-04 - sys_corr_131: 2.35918516e-04 + sys_corr_127: 2.70250671e-01 + sys_corr_128: 1.73181330e-02 + sys_corr_129: 7.52098559e-03 + sys_corr_130: -3.39745385e-04 + sys_corr_131: -2.35918516e-04 sys_corr_132: 5.97381260e-03 stat: 0.0 luminosity: 6.88065378e+03 @@ -10728,17 +10728,17 @@ bins: sys_corr_6: 3.54171202e+02 sys_corr_7: 1.12553948e+03 sys_corr_8: -4.82735073e+02 - sys_corr_9: 8.28402150e+01 - sys_corr_10: -4.30542885e+02 + sys_corr_9: -8.28402150e+01 + sys_corr_10: 4.30542885e+02 sys_corr_11: -3.04298777e+02 - sys_corr_12: 3.55389121e+02 - sys_corr_13: 8.78397204e+02 + sys_corr_12: -3.55389121e+02 + sys_corr_13: -8.78397204e+02 sys_corr_14: 1.39839238e+02 sys_corr_15: 8.73754827e+02 sys_corr_16: -2.92556752e+01 - sys_corr_17: -2.70227630e+01 + sys_corr_17: 2.70227630e+01 sys_corr_18: -1.23962334e+01 - sys_corr_19: -5.37548759e+01 + sys_corr_19: 5.37548759e+01 sys_corr_20: -6.49302971e+01 sys_corr_21: -1.60462400e+01 sys_corr_22: -1.68719603e+01 @@ -10754,103 +10754,103 @@ bins: sys_corr_32: -3.95043811e-01 sys_corr_33: 4.72325589e-02 sys_corr_34: -2.39121233e+00 - sys_corr_35: 4.49311876e-01 - sys_corr_36: 4.19130212e-01 + sys_corr_35: -4.49311876e-01 + sys_corr_36: -4.19130212e-01 sys_corr_37: 1.55379503e+00 sys_corr_38: 2.51735525e-01 - sys_corr_39: -8.36879371e-01 - sys_corr_40: 2.96840550e-01 - sys_corr_41: -7.84557402e-01 + sys_corr_39: 8.36879371e-01 + sys_corr_40: -2.96840550e-01 + sys_corr_41: 7.84557402e-01 sys_corr_42: 2.71849358e-01 sys_corr_43: -3.70852685e-01 sys_corr_44: 2.90299956e-01 sys_corr_45: -2.46845500e-01 - sys_corr_46: -9.26260353e-01 - sys_corr_47: -1.19885766e+00 + sys_corr_46: 9.26260353e-01 + sys_corr_47: 1.19885766e+00 sys_corr_48: 1.10050347e+00 sys_corr_49: 9.56013880e-01 sys_corr_50: 5.48674440e-01 - sys_corr_51: -6.84473242e-01 - sys_corr_52: 9.28614202e-02 - sys_corr_53: 4.19923356e-01 + sys_corr_51: 6.84473242e-01 + sys_corr_52: -9.28614202e-02 + sys_corr_53: -4.19923356e-01 sys_corr_54: 2.11877339e-01 sys_corr_55: -4.57627270e-01 - sys_corr_56: 2.91027113e-01 + sys_corr_56: -2.91027113e-01 sys_corr_57: 3.41912545e-01 - sys_corr_58: 4.80415435e-02 + sys_corr_58: -4.80415435e-02 sys_corr_59: 3.20275669e-01 sys_corr_60: 2.70570624e-02 - sys_corr_61: -8.00475899e-01 - sys_corr_62: -5.17767412e-01 + sys_corr_61: 8.00475899e-01 + sys_corr_62: 5.17767412e-01 sys_corr_63: -5.48277921e-01 sys_corr_64: -7.10453694e-02 - sys_corr_65: -2.07806762e-01 - sys_corr_66: -6.13614796e-01 - sys_corr_67: 7.34605741e-01 + sys_corr_65: 2.07806762e-01 + sys_corr_66: 6.13614796e-01 + sys_corr_67: -7.34605741e-01 sys_corr_68: -1.37074068e-01 sys_corr_69: 5.75970815e-01 sys_corr_70: -1.89405689e-01 - sys_corr_71: 2.21828042e-01 - sys_corr_72: -1.58501723e-02 + sys_corr_71: -2.21828042e-01 + sys_corr_72: 1.58501723e-02 sys_corr_73: 1.60047089e-01 sys_corr_74: 5.89283238e-01 - sys_corr_75: 6.53433487e-01 - sys_corr_76: -3.30019348e-01 + sys_corr_75: -6.53433487e-01 + sys_corr_76: 3.30019348e-01 sys_corr_77: -1.31421404e-01 sys_corr_78: -4.10440083e-01 sys_corr_79: -7.61681194e-03 - sys_corr_80: 1.06116754e-01 + sys_corr_80: -1.06116754e-01 sys_corr_81: -3.43428487e-01 - sys_corr_82: 4.85755687e-01 + sys_corr_82: -4.85755687e-01 sys_corr_83: 7.78293290e-03 sys_corr_84: 9.57620056e-01 sys_corr_85: 1.75331685e-02 - sys_corr_86: -1.72055235e-01 - sys_corr_87: 7.27527778e-01 + sys_corr_86: 1.72055235e-01 + sys_corr_87: -7.27527778e-01 sys_corr_88: 7.09402554e-02 sys_corr_89: -1.58417129e-01 - sys_corr_90: -1.22831695e-01 - sys_corr_91: -5.53606760e-01 - sys_corr_92: 3.22072417e-01 + sys_corr_90: 5.53606760e-01 + sys_corr_91: 1.22831695e-01 + sys_corr_92: -3.22072417e-01 sys_corr_93: -5.36871682e-02 sys_corr_94: -7.41484470e-02 - sys_corr_95: -2.70271604e-02 + sys_corr_95: 2.70271604e-02 sys_corr_96: -1.75811990e-01 - sys_corr_97: 1.24311712e-01 - sys_corr_98: 6.83627742e-01 + sys_corr_97: -1.24311712e-01 + sys_corr_98: -6.83627742e-01 sys_corr_99: -1.61022553e-02 - sys_corr_100: -1.02201456e-01 - sys_corr_101: -1.85577091e-01 - sys_corr_102: 8.96712478e-02 - sys_corr_103: 8.22414824e-02 - sys_corr_104: 2.64762394e-01 - sys_corr_105: -1.13545604e-01 + sys_corr_100: 1.13545604e-01 + sys_corr_101: 1.02201456e-01 + sys_corr_102: 1.85577091e-01 + sys_corr_103: 8.96712478e-02 + sys_corr_104: -8.22414824e-02 + sys_corr_105: -2.64762394e-01 sys_corr_106: -3.90965489e-02 sys_corr_107: -1.74207914e-02 - sys_corr_108: -3.49921131e-02 - sys_corr_109: 4.51094038e-03 - sys_corr_110: 7.16810185e-01 - sys_corr_111: 2.90811692e-02 - sys_corr_112: -8.77003130e-03 - sys_corr_113: 6.40855327e-02 - sys_corr_114: 1.08224530e-05 - sys_corr_115: -3.27218239e-02 + sys_corr_108: 4.51094038e-03 + sys_corr_109: 3.49921131e-02 + sys_corr_110: -2.90811692e-02 + sys_corr_111: -7.16810185e-01 + sys_corr_112: 8.77003130e-03 + sys_corr_113: -6.40855327e-02 + sys_corr_114: -1.08224530e-05 + sys_corr_115: 3.27218239e-02 sys_corr_116: -1.50218949e-03 - sys_corr_117: -4.17672391e-04 + sys_corr_117: 4.17672391e-04 sys_corr_118: -3.36627421e-02 sys_corr_119: 4.96213234e-04 sys_corr_120: -4.96167571e-04 sys_corr_121: -6.84599953e-04 - sys_corr_122: -2.43306617e-03 - sys_corr_123: -2.49195050e-03 - sys_corr_124: -2.91800715e-03 + sys_corr_122: -2.49195050e-03 + sys_corr_123: 2.43306617e-03 + sys_corr_124: 2.91800715e-03 sys_corr_125: 3.64906069e-03 sys_corr_126: 8.45699311e-04 - sys_corr_127: -8.47417590e-01 - sys_corr_128: 1.54654600e-03 - sys_corr_129: 2.61104930e-02 - sys_corr_130: 1.75446592e-03 - sys_corr_131: 1.33609732e-03 + sys_corr_127: 8.47417590e-01 + sys_corr_128: -1.54654600e-03 + sys_corr_129: -2.61104930e-02 + sys_corr_130: -1.75446592e-03 + sys_corr_131: -1.33609732e-03 sys_corr_132: -2.24677632e-02 stat: 0.0 luminosity: 6.87730965e+03 @@ -10862,17 +10862,17 @@ bins: sys_corr_6: 2.80771222e+02 sys_corr_7: 4.91633006e+02 sys_corr_8: -2.18042228e+02 - sys_corr_9: 5.86830315e+02 - sys_corr_10: -3.52712682e+02 + sys_corr_9: -5.86830315e+02 + sys_corr_10: 3.52712682e+02 sys_corr_11: -3.88860076e+01 - sys_corr_12: -1.54391600e+02 - sys_corr_13: -2.48156532e+02 + sys_corr_12: 1.54391600e+02 + sys_corr_13: 2.48156532e+02 sys_corr_14: -1.03628862e+02 sys_corr_15: -9.76854674e+02 sys_corr_16: 6.75952474e+02 - sys_corr_17: -1.42814235e+02 + sys_corr_17: 1.42814235e+02 sys_corr_18: 4.47149246e+02 - sys_corr_19: 8.13248215e+01 + sys_corr_19: -8.13248215e+01 sys_corr_20: -2.02904845e+00 sys_corr_21: -1.51097980e+01 sys_corr_22: 1.40178048e+01 @@ -10888,103 +10888,103 @@ bins: sys_corr_32: 3.41831918e-01 sys_corr_33: -1.69491553e+00 sys_corr_34: -4.31430542e+00 - sys_corr_35: -1.27761443e+00 - sys_corr_36: -5.41811087e-01 + sys_corr_35: 1.27761443e+00 + sys_corr_36: 5.41811087e-01 sys_corr_37: 4.93727704e-01 sys_corr_38: 1.84939356e+00 - sys_corr_39: -8.70226071e-01 - sys_corr_40: 1.89039967e+00 - sys_corr_41: -5.95243159e-01 + sys_corr_39: 8.70226071e-01 + sys_corr_40: -1.89039967e+00 + sys_corr_41: 5.95243159e-01 sys_corr_42: -1.70090035e+00 sys_corr_43: 4.51627761e+00 sys_corr_44: 5.32157980e+00 sys_corr_45: 1.48999244e+00 - sys_corr_46: -5.75431992e-01 - sys_corr_47: 2.32140298e+00 + sys_corr_46: 5.75431992e-01 + sys_corr_47: -2.32140298e+00 sys_corr_48: 3.68080411e+00 sys_corr_49: 3.41833834e-01 sys_corr_50: 2.58167613e-01 - sys_corr_51: 1.78107229e-01 - sys_corr_52: -1.64047463e+00 - sys_corr_53: -1.24466591e+00 + sys_corr_51: -1.78107229e-01 + sys_corr_52: 1.64047463e+00 + sys_corr_53: 1.24466591e+00 sys_corr_54: 2.94709976e-01 sys_corr_55: -8.89304307e-01 - sys_corr_56: 3.85010367e-01 + sys_corr_56: -3.85010367e-01 sys_corr_57: 7.26604120e-01 - sys_corr_58: 6.33215959e-01 + sys_corr_58: -6.33215959e-01 sys_corr_59: 2.37673035e-02 sys_corr_60: 2.13793910e-01 - sys_corr_61: -4.43510622e-01 - sys_corr_62: -4.24939836e-01 + sys_corr_61: 4.43510622e-01 + sys_corr_62: 4.24939836e-01 sys_corr_63: -4.58031894e-01 sys_corr_64: -1.88176113e-01 - sys_corr_65: 3.19051593e-02 - sys_corr_66: -6.00372150e-01 - sys_corr_67: 4.69669584e-01 + sys_corr_65: -3.19051593e-02 + sys_corr_66: 6.00372150e-01 + sys_corr_67: -4.69669584e-01 sys_corr_68: 3.29513402e-01 sys_corr_69: 5.63074672e-01 sys_corr_70: 4.19058445e-01 - sys_corr_71: 2.50604884e-01 - sys_corr_72: 3.32145623e-01 + sys_corr_71: -2.50604884e-01 + sys_corr_72: -3.32145623e-01 sys_corr_73: 7.49165876e-01 sys_corr_74: 2.62362664e-01 - sys_corr_75: -8.88554035e-01 - sys_corr_76: -2.77760360e-01 + sys_corr_75: 8.88554035e-01 + sys_corr_76: 2.77760360e-01 sys_corr_77: -6.56821607e-01 sys_corr_78: -6.16780665e-01 sys_corr_79: -3.34450752e-01 - sys_corr_80: 1.13479467e-01 + sys_corr_80: -1.13479467e-01 sys_corr_81: 3.61047130e-01 - sys_corr_82: 1.30135090e-01 + sys_corr_82: -1.30135090e-01 sys_corr_83: 9.41133711e-02 sys_corr_84: 3.41244429e-01 sys_corr_85: 7.87177689e-01 - sys_corr_86: -5.23103011e-01 - sys_corr_87: 1.65535017e+00 + sys_corr_86: 5.23103011e-01 + sys_corr_87: -1.65535017e+00 sys_corr_88: 8.13811309e-02 sys_corr_89: -3.68900633e-01 - sys_corr_90: 6.45194520e-02 - sys_corr_91: 2.29173633e-02 - sys_corr_92: -7.62592849e-01 + sys_corr_90: -2.29173633e-02 + sys_corr_91: -6.45194520e-02 + sys_corr_92: 7.62592849e-01 sys_corr_93: -1.87909420e-01 sys_corr_94: -5.42225649e-02 - sys_corr_95: 9.77264624e-02 + sys_corr_95: -9.77264624e-02 sys_corr_96: -4.01333935e-02 - sys_corr_97: 2.30836866e-01 - sys_corr_98: -6.18239556e-01 + sys_corr_97: -2.30836866e-01 + sys_corr_98: 6.18239556e-01 sys_corr_99: 1.36381087e+00 - sys_corr_100: -2.54540214e-01 - sys_corr_101: -2.13627426e-01 - sys_corr_102: 1.96447223e-01 - sys_corr_103: 5.84133318e-02 - sys_corr_104: 2.88385398e-01 - sys_corr_105: -7.13181179e-02 + sys_corr_100: 7.13181179e-02 + sys_corr_101: 2.54540214e-01 + sys_corr_102: 2.13627426e-01 + sys_corr_103: 1.96447223e-01 + sys_corr_104: -5.84133318e-02 + sys_corr_105: -2.88385398e-01 sys_corr_106: -3.21290962e-03 sys_corr_107: 5.74223006e-02 - sys_corr_108: -9.02362524e-03 - sys_corr_109: -2.46959778e-02 - sys_corr_110: 3.20420228e-01 - sys_corr_111: -6.05182549e-02 - sys_corr_112: -2.87877392e-02 - sys_corr_113: 2.19380680e-02 - sys_corr_114: 2.72490765e-04 - sys_corr_115: 9.09638371e-03 + sys_corr_108: -2.46959778e-02 + sys_corr_109: 9.02362524e-03 + sys_corr_110: 6.05182549e-02 + sys_corr_111: -3.20420228e-01 + sys_corr_112: 2.87877392e-02 + sys_corr_113: -2.19380680e-02 + sys_corr_114: -2.72490765e-04 + sys_corr_115: -9.09638371e-03 sys_corr_116: 9.61128796e-04 - sys_corr_117: 3.71735080e-03 + sys_corr_117: -3.71735080e-03 sys_corr_118: -1.77851751e-02 sys_corr_119: -3.30592748e-04 sys_corr_120: -4.81498667e-03 sys_corr_121: -7.72405589e-04 - sys_corr_122: -5.69558936e-03 - sys_corr_123: -2.65074861e-03 - sys_corr_124: 8.02139417e-03 + sys_corr_122: -2.65074861e-03 + sys_corr_123: 5.69558936e-03 + sys_corr_124: -8.02139417e-03 sys_corr_125: 7.16199145e-03 sys_corr_126: 2.17857885e-03 - sys_corr_127: 8.58475775e-01 - sys_corr_128: 1.87978943e-02 - sys_corr_129: 1.38247514e-02 - sys_corr_130: 5.94605640e-03 - sys_corr_131: 3.56955121e-03 + sys_corr_127: -8.58475775e-01 + sys_corr_128: -1.87978943e-02 + sys_corr_129: -1.38247514e-02 + sys_corr_130: -5.94605640e-03 + sys_corr_131: -3.56955121e-03 sys_corr_132: -1.94628279e-02 stat: 0.0 luminosity: 6.81114843e+03 @@ -10996,17 +10996,17 @@ bins: sys_corr_6: 5.31147135e+01 sys_corr_7: -2.90438405e+02 sys_corr_8: 6.39733231e+02 - sys_corr_9: 2.92295451e+02 - sys_corr_10: 4.44401779e+01 + sys_corr_9: -2.92295451e+02 + sys_corr_10: -4.44401779e+01 sys_corr_11: -2.52847200e+02 - sys_corr_12: -8.75118855e+02 - sys_corr_13: -4.43102775e+02 + sys_corr_12: 8.75118855e+02 + sys_corr_13: 4.43102775e+02 sys_corr_14: 4.61951072e+02 sys_corr_15: 2.98314008e+02 sys_corr_16: -5.16899252e+02 - sys_corr_17: 2.19471021e+02 + sys_corr_17: -2.19471021e+02 sys_corr_18: -4.82673363e+02 - sys_corr_19: 1.06037852e+02 + sys_corr_19: -1.06037852e+02 sys_corr_20: -8.19523898e+00 sys_corr_21: -4.43684546e+01 sys_corr_22: 6.94015050e+01 @@ -11022,103 +11022,103 @@ bins: sys_corr_32: -3.22802732e+00 sys_corr_33: -1.84553369e+00 sys_corr_34: 2.56211469e+00 - sys_corr_35: -2.82044693e+00 - sys_corr_36: -2.26099989e+00 + sys_corr_35: 2.82044693e+00 + sys_corr_36: 2.26099989e+00 sys_corr_37: 2.44699676e+00 sys_corr_38: 9.62180470e-01 - sys_corr_39: 2.47696765e+00 - sys_corr_40: 7.16926045e-01 - sys_corr_41: -3.22665949e+00 + sys_corr_39: -2.47696765e+00 + sys_corr_40: -7.16926045e-01 + sys_corr_41: 3.22665949e+00 sys_corr_42: -1.09710547e+00 sys_corr_43: -1.45278290e+00 sys_corr_44: 5.33491801e-01 sys_corr_45: -3.40019886e+00 - sys_corr_46: 2.38405244e-01 - sys_corr_47: -3.22109264e+00 + sys_corr_46: -2.38405244e-01 + sys_corr_47: 3.22109264e+00 sys_corr_48: -1.15486081e+00 sys_corr_49: -3.57289733e+00 sys_corr_50: 2.52127990e+00 - sys_corr_51: 7.69639955e-01 - sys_corr_52: -1.14308797e+00 - sys_corr_53: 8.91813946e-01 + sys_corr_51: -7.69639955e-01 + sys_corr_52: 1.14308797e+00 + sys_corr_53: -8.91813946e-01 sys_corr_54: 8.52091009e-02 sys_corr_55: -1.28728468e+00 - sys_corr_56: -8.11298244e-01 + sys_corr_56: 8.11298244e-01 sys_corr_57: 3.21731655e-01 - sys_corr_58: -7.38447900e-01 + sys_corr_58: 7.38447900e-01 sys_corr_59: -5.42959691e-01 sys_corr_60: 3.50845929e-01 - sys_corr_61: -6.68518779e-01 - sys_corr_62: 4.73356298e-01 + sys_corr_61: 6.68518779e-01 + sys_corr_62: -4.73356298e-01 sys_corr_63: -2.11139731e-01 sys_corr_64: 2.53163333e-01 - sys_corr_65: 9.23845625e-01 - sys_corr_66: -2.44018919e-01 - sys_corr_67: -5.33707774e-01 + sys_corr_65: -9.23845625e-01 + sys_corr_66: 2.44018919e-01 + sys_corr_67: 5.33707774e-01 sys_corr_68: 1.08287356e+00 sys_corr_69: -2.80095971e-01 sys_corr_70: 9.09648170e-02 - sys_corr_71: 4.15080840e-01 - sys_corr_72: 1.34619579e-01 + sys_corr_71: -4.15080840e-01 + sys_corr_72: -1.34619579e-01 sys_corr_73: -6.91840226e-01 sys_corr_74: -4.96343177e-01 - sys_corr_75: 2.68529165e-01 - sys_corr_76: -2.01899696e-01 + sys_corr_75: -2.68529165e-01 + sys_corr_76: 2.01899696e-01 sys_corr_77: -5.71987987e-01 sys_corr_78: 1.59429993e-01 sys_corr_79: -1.10682250e-01 - sys_corr_80: -3.78444109e-01 + sys_corr_80: 3.78444109e-01 sys_corr_81: 1.29844678e-01 - sys_corr_82: 3.41904762e-01 + sys_corr_82: -3.41904762e-01 sys_corr_83: 7.98182097e-02 sys_corr_84: -3.46651084e-01 sys_corr_85: 2.38390024e-01 - sys_corr_86: 3.70687160e-01 - sys_corr_87: 1.51106090e-01 + sys_corr_86: -3.70687160e-01 + sys_corr_87: -1.51106090e-01 sys_corr_88: -5.61885601e-02 sys_corr_89: -3.96201494e-02 - sys_corr_90: -5.21761595e-02 - sys_corr_91: 3.05193488e-01 - sys_corr_92: 1.27613159e+00 + sys_corr_90: -3.05193488e-01 + sys_corr_91: 5.21761595e-02 + sys_corr_92: -1.27613159e+00 sys_corr_93: 2.25432170e-02 sys_corr_94: -2.77952767e-01 - sys_corr_95: 2.32753141e-01 + sys_corr_95: -2.32753141e-01 sys_corr_96: -5.21772651e-03 - sys_corr_97: 6.49504839e-01 - sys_corr_98: 8.15312555e-01 + sys_corr_97: -6.49504839e-01 + sys_corr_98: -8.15312555e-01 sys_corr_99: -1.36992990e+00 - sys_corr_100: 2.01357385e-02 - sys_corr_101: -1.10660979e-01 - sys_corr_102: 2.18004770e-01 - sys_corr_103: -3.24427704e-02 - sys_corr_104: -1.06545058e-01 - sys_corr_105: -1.72815195e-03 + sys_corr_100: 1.72815195e-03 + sys_corr_101: -2.01357385e-02 + sys_corr_102: 1.10660979e-01 + sys_corr_103: 2.18004770e-01 + sys_corr_104: 3.24427704e-02 + sys_corr_105: 1.06545058e-01 sys_corr_106: -6.49766869e-02 sys_corr_107: -8.42233012e-02 - sys_corr_108: 1.30831199e-02 - sys_corr_109: -3.51404320e-02 - sys_corr_110: -3.35806767e-01 - sys_corr_111: -7.64534287e-02 - sys_corr_112: -2.20977579e-03 - sys_corr_113: 5.79391378e-02 - sys_corr_114: -2.26268146e-04 - sys_corr_115: -1.87285913e-02 + sys_corr_108: -3.51404320e-02 + sys_corr_109: -1.30831199e-02 + sys_corr_110: 7.64534287e-02 + sys_corr_111: 3.35806767e-01 + sys_corr_112: 2.20977579e-03 + sys_corr_113: -5.79391378e-02 + sys_corr_114: 2.26268146e-04 + sys_corr_115: 1.87285913e-02 sys_corr_116: 6.67415538e-03 - sys_corr_117: 4.71862860e-03 + sys_corr_117: -4.71862860e-03 sys_corr_118: -4.25646302e-03 sys_corr_119: -1.67860778e-04 sys_corr_120: -6.62474845e-03 sys_corr_121: -8.71324611e-04 - sys_corr_122: 2.11938153e-03 - sys_corr_123: 4.01382838e-04 - sys_corr_124: 1.51630619e-02 + sys_corr_122: 4.01382838e-04 + sys_corr_123: -2.11938153e-03 + sys_corr_124: -1.51630619e-02 sys_corr_125: 3.83580887e-04 sys_corr_126: 2.22579690e-03 - sys_corr_127: 5.21574156e-01 - sys_corr_128: 3.81074388e-02 - sys_corr_129: 6.28738604e-02 - sys_corr_130: 2.44480358e-03 - sys_corr_131: 2.54385835e-03 + sys_corr_127: -5.21574156e-01 + sys_corr_128: -3.81074388e-02 + sys_corr_129: -6.28738604e-02 + sys_corr_130: -2.44480358e-03 + sys_corr_131: -2.54385835e-03 sys_corr_132: -1.72540454e-02 stat: 0.0 luminosity: 6.75054156e+03 @@ -11130,17 +11130,17 @@ bins: sys_corr_6: -1.83897076e+02 sys_corr_7: -8.97751360e+02 sys_corr_8: 2.91430700e+02 - sys_corr_9: -9.88648218e+01 - sys_corr_10: 1.16346609e+03 + sys_corr_9: 9.88648218e+01 + sys_corr_10: -1.16346609e+03 sys_corr_11: -4.45620948e+01 - sys_corr_12: 5.68969900e+02 - sys_corr_13: 6.05551273e+02 + sys_corr_12: -5.68969900e+02 + sys_corr_13: -6.05551273e+02 sys_corr_14: -3.91594015e+02 sys_corr_15: 1.20745250e+02 sys_corr_16: 6.89688698e+01 - sys_corr_17: -6.18804533e+01 + sys_corr_17: 6.18804533e+01 sys_corr_18: 3.59435230e+02 - sys_corr_19: -1.20881282e+02 + sys_corr_19: 1.20881282e+02 sys_corr_20: 2.16401120e+01 sys_corr_21: 1.36212445e+01 sys_corr_22: 5.11360673e+01 @@ -11156,103 +11156,103 @@ bins: sys_corr_32: -5.19873117e-01 sys_corr_33: 2.01679457e+00 sys_corr_34: -1.30405233e+00 - sys_corr_35: 1.11597973e+00 - sys_corr_36: -2.29036998e+00 + sys_corr_35: -1.11597973e+00 + sys_corr_36: 2.29036998e+00 sys_corr_37: -1.57892900e+00 sys_corr_38: -7.11871969e-01 - sys_corr_39: -6.01667351e+00 - sys_corr_40: 5.45241639e-01 - sys_corr_41: 1.74808064e+00 + sys_corr_39: 6.01667351e+00 + sys_corr_40: -5.45241639e-01 + sys_corr_41: -1.74808064e+00 sys_corr_42: 1.28823405e+00 sys_corr_43: 3.35389930e+00 sys_corr_44: -4.93906771e-01 sys_corr_45: 1.38396606e+00 - sys_corr_46: 1.21907092e+00 - sys_corr_47: 1.13358680e+00 + sys_corr_46: -1.21907092e+00 + sys_corr_47: -1.13358680e+00 sys_corr_48: -3.54139196e-01 sys_corr_49: -3.35348416e-02 sys_corr_50: 4.76451480e-01 - sys_corr_51: -6.52723234e-01 - sys_corr_52: 7.47564666e-01 - sys_corr_53: 3.87795107e-01 + sys_corr_51: 6.52723234e-01 + sys_corr_52: -7.47564666e-01 + sys_corr_53: -3.87795107e-01 sys_corr_54: 5.74734696e-02 sys_corr_55: 4.17350607e-01 - sys_corr_56: 1.22112325e-01 + sys_corr_56: -1.22112325e-01 sys_corr_57: -4.49095261e-01 - sys_corr_58: 1.64091908e+00 + sys_corr_58: -1.64091908e+00 sys_corr_59: 6.13223078e-01 sys_corr_60: -6.38853635e-01 - sys_corr_61: 1.06848473e+00 - sys_corr_62: -1.74895959e+00 + sys_corr_61: -1.06848473e+00 + sys_corr_62: 1.74895959e+00 sys_corr_63: -1.08059767e+00 sys_corr_64: -6.56715525e-01 - sys_corr_65: -2.90599807e-01 - sys_corr_66: -3.60012442e-01 - sys_corr_67: 2.50149963e-01 + sys_corr_65: 2.90599807e-01 + sys_corr_66: 3.60012442e-01 + sys_corr_67: -2.50149963e-01 sys_corr_68: -1.48786648e+00 sys_corr_69: 4.07549699e-01 sys_corr_70: 4.12483687e-01 - sys_corr_71: -7.84343538e-01 - sys_corr_72: 2.29527356e-01 + sys_corr_71: 7.84343538e-01 + sys_corr_72: -2.29527356e-01 sys_corr_73: -9.52920819e-01 sys_corr_74: -3.43048841e-01 - sys_corr_75: -3.00920324e-01 - sys_corr_76: -2.99231309e-01 + sys_corr_75: 3.00920324e-01 + sys_corr_76: 2.99231309e-01 sys_corr_77: -5.29260950e-03 sys_corr_78: -2.23778187e-01 sys_corr_79: 1.64946530e-01 - sys_corr_80: -2.90682333e-01 + sys_corr_80: 2.90682333e-01 sys_corr_81: -3.26749922e-01 - sys_corr_82: 7.28669774e-02 + sys_corr_82: -7.28669774e-02 sys_corr_83: -4.44961916e-01 sys_corr_84: 4.24170174e-01 sys_corr_85: 1.92789174e-01 - sys_corr_86: -3.57653879e-02 - sys_corr_87: 4.04565644e-01 + sys_corr_86: 3.57653879e-02 + sys_corr_87: -4.04565644e-01 sys_corr_88: -7.25025499e-02 sys_corr_89: -6.43553748e-02 - sys_corr_90: -2.39588284e-02 - sys_corr_91: 4.77185687e-02 - sys_corr_92: -1.33990832e-01 + sys_corr_90: -4.77185687e-02 + sys_corr_91: 2.39588284e-02 + sys_corr_92: 1.33990832e-01 sys_corr_93: 4.78534730e-02 sys_corr_94: 1.50556186e-01 - sys_corr_95: -2.82880716e-02 + sys_corr_95: 2.82880716e-02 sys_corr_96: -7.52972972e-02 - sys_corr_97: -1.76527721e-01 - sys_corr_98: -1.98503770e-01 + sys_corr_97: 1.76527721e-01 + sys_corr_98: 1.98503770e-01 sys_corr_99: 5.12472662e-01 - sys_corr_100: 1.05284861e-02 - sys_corr_101: 4.81677492e-01 - sys_corr_102: -4.91431142e-01 - sys_corr_103: -1.07639325e-01 - sys_corr_104: -4.86006042e-01 - sys_corr_105: -1.67029310e-01 + sys_corr_100: 1.67029310e-01 + sys_corr_101: -1.05284861e-02 + sys_corr_102: -4.81677492e-01 + sys_corr_103: -4.91431142e-01 + sys_corr_104: 1.07639325e-01 + sys_corr_105: 4.86006042e-01 sys_corr_106: -5.49596902e-02 sys_corr_107: 5.60643513e-02 - sys_corr_108: 7.06993673e-02 - sys_corr_109: -2.33801816e-03 - sys_corr_110: 7.02897576e-01 - sys_corr_111: 1.43461986e-01 - sys_corr_112: -2.95958270e-03 - sys_corr_113: 2.63560743e-02 - sys_corr_114: -3.96908276e-04 - sys_corr_115: 2.25267845e-02 + sys_corr_108: -2.33801816e-03 + sys_corr_109: -7.06993673e-02 + sys_corr_110: -1.43461986e-01 + sys_corr_111: -7.02897576e-01 + sys_corr_112: 2.95958270e-03 + sys_corr_113: -2.63560743e-02 + sys_corr_114: 3.96908276e-04 + sys_corr_115: -2.25267845e-02 sys_corr_116: -1.19666867e-04 - sys_corr_117: 2.10599659e-03 + sys_corr_117: -2.10599659e-03 sys_corr_118: 5.04680924e-03 sys_corr_119: -3.50759011e-06 sys_corr_120: 2.29487087e-03 sys_corr_121: 1.18959626e-03 - sys_corr_122: 1.27393598e-03 - sys_corr_123: 1.08470376e-03 - sys_corr_124: -3.28494989e-03 + sys_corr_122: 1.08470376e-03 + sys_corr_123: -1.27393598e-03 + sys_corr_124: 3.28494989e-03 sys_corr_125: -1.48749126e-03 sys_corr_126: -2.47148653e-03 - sys_corr_127: -1.44426846e-01 - sys_corr_128: -4.12491118e-02 - sys_corr_129: -8.81498989e-03 - sys_corr_130: -4.02773077e-03 - sys_corr_131: -1.79111706e-03 + sys_corr_127: 1.44426846e-01 + sys_corr_128: 4.12491118e-02 + sys_corr_129: 8.81498989e-03 + sys_corr_130: 4.02773077e-03 + sys_corr_131: 1.79111706e-03 sys_corr_132: 6.73801965e-04 stat: 0.0 luminosity: 6.58966504e+03 @@ -11264,17 +11264,17 @@ bins: sys_corr_6: -2.54722486e+02 sys_corr_7: -5.61104331e+02 sys_corr_8: -1.05353618e+03 - sys_corr_9: -4.21241272e+02 - sys_corr_10: -6.98647221e+02 + sys_corr_9: 4.21241272e+02 + sys_corr_10: 6.98647221e+02 sys_corr_11: 9.94105381e+02 - sys_corr_12: -1.59761047e+02 - sys_corr_13: -1.06331024e+02 + sys_corr_12: 1.59761047e+02 + sys_corr_13: 1.06331024e+02 sys_corr_14: -2.54663193e+02 sys_corr_15: 1.44706394e+02 sys_corr_16: 6.61538844e+01 - sys_corr_17: -1.64375791e+02 + sys_corr_17: 1.64375791e+02 sys_corr_18: -3.63930272e+02 - sys_corr_19: -2.60961553e+02 + sys_corr_19: 2.60961553e+02 sys_corr_20: -7.31339218e+01 sys_corr_21: 7.74940107e+01 sys_corr_22: 1.26972276e+01 @@ -11290,103 +11290,103 @@ bins: sys_corr_32: -2.57236422e-01 sys_corr_33: 2.50027866e+00 sys_corr_34: 4.61011510e-01 - sys_corr_35: 2.62815995e+00 - sys_corr_36: -1.71412716e+00 + sys_corr_35: -2.62815995e+00 + sys_corr_36: 1.71412716e+00 sys_corr_37: 3.75881550e-01 sys_corr_38: -2.26179543e-01 - sys_corr_39: 1.96184596e+00 - sys_corr_40: 2.46314505e+00 - sys_corr_41: -3.91203201e-02 + sys_corr_39: -1.96184596e+00 + sys_corr_40: -2.46314505e+00 + sys_corr_41: 3.91203201e-02 sys_corr_42: 5.38156267e-02 sys_corr_43: 1.23258979e-01 sys_corr_44: -5.32864949e+00 sys_corr_45: -8.08643562e-01 - sys_corr_46: -4.80304857e+00 - sys_corr_47: -1.10593563e+00 + sys_corr_46: 4.80304857e+00 + sys_corr_47: 1.10593563e+00 sys_corr_48: -1.37128548e-01 sys_corr_49: 1.53463819e+00 sys_corr_50: 1.66562668e+00 - sys_corr_51: -1.93256401e-01 - sys_corr_52: 1.68852240e+00 - sys_corr_53: 4.81840266e-01 + sys_corr_51: 1.93256401e-01 + sys_corr_52: -1.68852240e+00 + sys_corr_53: -4.81840266e-01 sys_corr_54: -8.69219550e-01 sys_corr_55: 2.61357907e+00 - sys_corr_56: 5.46782631e-01 + sys_corr_56: -5.46782631e-01 sys_corr_57: 5.01879145e-01 - sys_corr_58: -5.38459608e-01 + sys_corr_58: 5.38459608e-01 sys_corr_59: 9.92203380e-01 sys_corr_60: -4.84996399e-01 - sys_corr_61: -1.86573015e+00 - sys_corr_62: 6.67314310e-02 + sys_corr_61: 1.86573015e+00 + sys_corr_62: -6.67314310e-02 sys_corr_63: 8.60339480e-01 sys_corr_64: 1.56753725e+00 - sys_corr_65: -1.66583193e-01 - sys_corr_66: 5.71318797e-01 - sys_corr_67: -6.88699774e-01 + sys_corr_65: 1.66583193e-01 + sys_corr_66: -5.71318797e-01 + sys_corr_67: 6.88699774e-01 sys_corr_68: -5.49791006e-01 sys_corr_69: 1.06989871e-01 sys_corr_70: -1.02315395e+00 - sys_corr_71: 2.51930045e-02 - sys_corr_72: 7.00705191e-01 + sys_corr_71: -2.51930045e-02 + sys_corr_72: -7.00705191e-01 sys_corr_73: 4.20288005e-01 sys_corr_74: 3.74686784e-01 - sys_corr_75: 1.38494634e-01 - sys_corr_76: 5.98594284e-02 + sys_corr_75: -1.38494634e-01 + sys_corr_76: -5.98594284e-02 sys_corr_77: 1.86951797e-01 sys_corr_78: 3.00726072e-01 sys_corr_79: -1.00754767e+00 - sys_corr_80: -2.85056812e-01 + sys_corr_80: 2.85056812e-01 sys_corr_81: -8.89029381e-01 - sys_corr_82: 6.11289008e-01 + sys_corr_82: -6.11289008e-01 sys_corr_83: -1.66733382e-01 sys_corr_84: -1.18702720e-01 sys_corr_85: -5.32529450e-01 - sys_corr_86: 1.48863461e-01 - sys_corr_87: 2.01563107e-01 + sys_corr_86: -1.48863461e-01 + sys_corr_87: -2.01563107e-01 sys_corr_88: 6.26927206e-02 sys_corr_89: 3.20260425e-01 - sys_corr_90: -1.00449313e-01 - sys_corr_91: -3.09685559e-01 - sys_corr_92: 1.92663425e-01 + sys_corr_90: 3.09685559e-01 + sys_corr_91: 1.00449313e-01 + sys_corr_92: -1.92663425e-01 sys_corr_93: -3.13662525e-02 sys_corr_94: -1.31380778e-01 - sys_corr_95: -1.39725778e-02 + sys_corr_95: 1.39725778e-02 sys_corr_96: -1.18712570e-01 - sys_corr_97: 3.80817191e-01 - sys_corr_98: 2.37267878e-01 + sys_corr_97: -3.80817191e-01 + sys_corr_98: -2.37267878e-01 sys_corr_99: 1.45858435e-01 - sys_corr_100: 4.64843288e-01 - sys_corr_101: 2.56298872e-01 - sys_corr_102: -6.12161133e-02 - sys_corr_103: 7.66202192e-02 - sys_corr_104: 1.96253033e-01 - sys_corr_105: -5.63797911e-02 + sys_corr_100: 5.63797911e-02 + sys_corr_101: -4.64843288e-01 + sys_corr_102: -2.56298872e-01 + sys_corr_103: -6.12161133e-02 + sys_corr_104: -7.66202192e-02 + sys_corr_105: -1.96253033e-01 sys_corr_106: -3.45140480e-03 sys_corr_107: -2.11320918e-01 - sys_corr_108: -1.07756264e-01 - sys_corr_109: 7.83037994e-02 - sys_corr_110: -9.84792127e-01 - sys_corr_111: 1.18134289e-01 - sys_corr_112: 4.30689958e-02 - sys_corr_113: 3.94032764e-02 - sys_corr_114: -5.82427112e-04 - sys_corr_115: -8.03277678e-03 + sys_corr_108: 7.83037994e-02 + sys_corr_109: 1.07756264e-01 + sys_corr_110: -1.18134289e-01 + sys_corr_111: 9.84792127e-01 + sys_corr_112: -4.30689958e-02 + sys_corr_113: -3.94032764e-02 + sys_corr_114: 5.82427112e-04 + sys_corr_115: 8.03277678e-03 sys_corr_116: -1.51427525e-02 - sys_corr_117: -1.48004110e-02 + sys_corr_117: 1.48004110e-02 sys_corr_118: -2.26364750e-02 sys_corr_119: -5.95022474e-04 sys_corr_120: 1.15178116e-02 sys_corr_121: -3.34399863e-04 - sys_corr_122: 6.43986702e-03 - sys_corr_123: 2.98863884e-04 - sys_corr_124: -2.88638198e-02 + sys_corr_122: 2.98863884e-04 + sys_corr_123: -6.43986702e-03 + sys_corr_124: 2.88638198e-02 sys_corr_125: -1.05139199e-02 sys_corr_126: -4.52574589e-03 - sys_corr_127: -5.54962960e-01 - sys_corr_128: -2.38398626e-02 - sys_corr_129: 3.08241177e-02 - sys_corr_130: -8.31285920e-03 - sys_corr_131: -6.88586777e-03 + sys_corr_127: 5.54962960e-01 + sys_corr_128: 2.38398626e-02 + sys_corr_129: -3.08241177e-02 + sys_corr_130: 8.31285920e-03 + sys_corr_131: 6.88586777e-03 sys_corr_132: -3.38316212e-04 stat: 0.0 luminosity: 6.43408823e+03 @@ -11398,17 +11398,17 @@ bins: sys_corr_6: -1.91743494e+02 sys_corr_7: 3.53596931e+01 sys_corr_8: -3.46481611e+02 - sys_corr_9: -4.80663748e+02 - sys_corr_10: -1.69838568e+02 + sys_corr_9: 4.80663748e+02 + sys_corr_10: 1.69838568e+02 sys_corr_11: -1.21429553e+03 - sys_corr_12: 6.44200155e+02 - sys_corr_13: -5.39850804e+02 + sys_corr_12: -6.44200155e+02 + sys_corr_13: 5.39850804e+02 sys_corr_14: 1.06666875e+02 sys_corr_15: -7.15733637e+01 sys_corr_16: 3.07414901e+02 - sys_corr_17: 3.81897783e+02 + sys_corr_17: -3.81897783e+02 sys_corr_18: -3.02924230e+02 - sys_corr_19: 1.85019007e+02 + sys_corr_19: -1.85019007e+02 sys_corr_20: 2.40029122e+01 sys_corr_21: -1.03183697e+02 sys_corr_22: -2.79527123e+01 @@ -11424,103 +11424,103 @@ bins: sys_corr_32: 1.01892651e+00 sys_corr_33: 2.27802544e+00 sys_corr_34: -6.19333757e-01 - sys_corr_35: 1.54124909e-01 - sys_corr_36: -7.98448185e-01 + sys_corr_35: -1.54124909e-01 + sys_corr_36: 7.98448185e-01 sys_corr_37: -6.98168275e-01 sys_corr_38: 1.05248331e-01 - sys_corr_39: 3.79935015e+00 - sys_corr_40: -1.10706113e+00 - sys_corr_41: 2.52252480e+00 + sys_corr_39: -3.79935015e+00 + sys_corr_40: 1.10706113e+00 + sys_corr_41: -2.52252480e+00 sys_corr_42: 5.38938660e-01 sys_corr_43: -1.74534860e+00 sys_corr_44: -7.68157798e-01 sys_corr_45: 1.72386438e-01 - sys_corr_46: 7.35668271e-02 - sys_corr_47: -2.52495515e+00 + sys_corr_46: -7.35668271e-02 + sys_corr_47: 2.52495515e+00 sys_corr_48: 1.52310086e+00 sys_corr_49: -1.90737477e+00 sys_corr_50: 7.59160947e-01 - sys_corr_51: -3.74131515e-01 - sys_corr_52: -1.82636805e-01 - sys_corr_53: 1.06823073e+00 + sys_corr_51: 3.74131515e-01 + sys_corr_52: 1.82636805e-01 + sys_corr_53: -1.06823073e+00 sys_corr_54: -2.92856165e-01 sys_corr_55: -8.22306266e-01 - sys_corr_56: -5.35001283e-01 + sys_corr_56: 5.35001283e-01 sys_corr_57: 5.09630860e-01 - sys_corr_58: -1.75036555e+00 + sys_corr_58: 1.75036555e+00 sys_corr_59: -6.20146234e-01 sys_corr_60: 5.12322430e-01 - sys_corr_61: -4.43639195e-01 - sys_corr_62: 1.70646133e-01 + sys_corr_61: 4.43639195e-01 + sys_corr_62: -1.70646133e-01 sys_corr_63: -3.57619777e-01 sys_corr_64: -4.77426011e-02 - sys_corr_65: -3.76589197e-01 - sys_corr_66: -4.05855971e-01 - sys_corr_67: 5.68653607e-01 + sys_corr_65: 3.76589197e-01 + sys_corr_66: 4.05855971e-01 + sys_corr_67: -5.68653607e-01 sys_corr_68: 7.19531206e-01 sys_corr_69: -7.90991303e-01 sys_corr_70: -6.97058798e-01 - sys_corr_71: -8.35097806e-01 - sys_corr_72: -3.11171530e-02 + sys_corr_71: 8.35097806e-01 + sys_corr_72: 3.11171530e-02 sys_corr_73: 3.74907462e-01 sys_corr_74: 2.32181579e-01 - sys_corr_75: 1.29498333e+00 - sys_corr_76: -1.55863454e-01 + sys_corr_75: -1.29498333e+00 + sys_corr_76: 1.55863454e-01 sys_corr_77: 1.37035536e-01 sys_corr_78: -5.01364708e-03 sys_corr_79: 8.64831022e-01 - sys_corr_80: 2.29611750e-01 + sys_corr_80: -2.29611750e-01 sys_corr_81: 3.38778536e-01 - sys_corr_82: 3.40637800e-01 + sys_corr_82: -3.40637800e-01 sys_corr_83: -1.31997897e-01 sys_corr_84: 6.77813095e-01 sys_corr_85: -2.78621191e-01 - sys_corr_86: -1.84973411e-01 - sys_corr_87: 3.47368036e-01 + sys_corr_86: 1.84973411e-01 + sys_corr_87: -3.47368036e-01 sys_corr_88: -1.37956682e-01 sys_corr_89: 1.07894778e-01 - sys_corr_90: -2.45811400e-01 - sys_corr_91: -1.17826572e+00 - sys_corr_92: 4.63862640e-01 + sys_corr_90: 1.17826572e+00 + sys_corr_91: 2.45811400e-01 + sys_corr_92: -4.63862640e-01 sys_corr_93: 2.76984663e-03 sys_corr_94: -2.39306878e-01 - sys_corr_95: 1.18424992e-01 + sys_corr_95: -1.18424992e-01 sys_corr_96: 7.88000196e-02 - sys_corr_97: 2.06355325e-02 - sys_corr_98: 1.06201713e-01 + sys_corr_97: -2.06355325e-02 + sys_corr_98: -1.06201713e-01 sys_corr_99: -2.35827023e-02 - sys_corr_100: 5.33011470e-01 - sys_corr_101: -8.14234958e-01 - sys_corr_102: 1.86101414e-01 - sys_corr_103: 1.83937010e-02 - sys_corr_104: -2.13075164e-01 - sys_corr_105: 6.85894907e-01 + sys_corr_100: -6.85894907e-01 + sys_corr_101: -5.33011470e-01 + sys_corr_102: 8.14234958e-01 + sys_corr_103: 1.86101414e-01 + sys_corr_104: -1.83937010e-02 + sys_corr_105: 2.13075164e-01 sys_corr_106: 7.69253806e-02 sys_corr_107: -2.32525921e-01 - sys_corr_108: 1.50211229e-01 - sys_corr_109: -1.68923290e-02 - sys_corr_110: 1.51549363e-01 - sys_corr_111: -4.42810206e-02 - sys_corr_112: -4.55909685e-03 - sys_corr_113: -2.78609925e-02 - sys_corr_114: -2.47863776e-04 - sys_corr_115: -3.48588271e-02 + sys_corr_108: -1.68923290e-02 + sys_corr_109: -1.50211229e-01 + sys_corr_110: 4.42810206e-02 + sys_corr_111: -1.51549363e-01 + sys_corr_112: 4.55909685e-03 + sys_corr_113: 2.78609925e-02 + sys_corr_114: 2.47863776e-04 + sys_corr_115: 3.48588271e-02 sys_corr_116: -2.13226767e-02 - sys_corr_117: -1.66365026e-02 + sys_corr_117: 1.66365026e-02 sys_corr_118: -1.10529123e-02 sys_corr_119: -2.02613573e-03 sys_corr_120: 1.14401415e-02 sys_corr_121: -1.92412427e-03 - sys_corr_122: 6.37647877e-03 - sys_corr_123: 1.21303498e-03 - sys_corr_124: -2.90996314e-02 + sys_corr_122: 1.21303498e-03 + sys_corr_123: -6.37647877e-03 + sys_corr_124: 2.90996314e-02 sys_corr_125: -8.49018830e-03 sys_corr_126: -5.17555563e-05 - sys_corr_127: 1.15436818e-01 - sys_corr_128: -1.14105563e-02 - sys_corr_129: -1.81264581e-03 - sys_corr_130: 2.69417359e-03 - sys_corr_131: -4.73718592e-03 + sys_corr_127: -1.15436818e-01 + sys_corr_128: 1.14105563e-02 + sys_corr_129: 1.81264581e-03 + sys_corr_130: -2.69417359e-03 + sys_corr_131: 4.73718592e-03 sys_corr_132: 8.45173830e-03 stat: 0.0 luminosity: 6.28976471e+03 @@ -11532,17 +11532,17 @@ bins: sys_corr_6: -4.80875223e+01 sys_corr_7: 1.52599103e+02 sys_corr_8: -2.16564778e+01 - sys_corr_9: -1.50104041e+02 - sys_corr_10: -7.84274553e+01 + sys_corr_9: 1.50104041e+02 + sys_corr_10: 7.84274553e+01 sys_corr_11: 2.06487125e+02 - sys_corr_12: -5.14856152e+01 - sys_corr_13: 2.83297235e+02 + sys_corr_12: 5.14856152e+01 + sys_corr_13: -2.83297235e+02 sys_corr_14: 1.16626516e+03 sys_corr_15: -2.90412897e+02 sys_corr_16: -5.01241075e+02 - sys_corr_17: -2.62066223e+02 + sys_corr_17: 2.62066223e+02 sys_corr_18: 6.30976002e+02 - sys_corr_19: 1.62982544e+02 + sys_corr_19: -1.62982544e+02 sys_corr_20: 4.85851595e+01 sys_corr_21: 1.26415904e+02 sys_corr_22: -6.14255751e+01 @@ -11558,103 +11558,103 @@ bins: sys_corr_32: 2.84435807e+00 sys_corr_33: -3.54433491e+00 sys_corr_34: 5.39710452e+00 - sys_corr_35: -1.72985618e+00 - sys_corr_36: 2.37030720e+00 + sys_corr_35: 1.72985618e+00 + sys_corr_36: -2.37030720e+00 sys_corr_37: -1.70259259e-01 sys_corr_38: -1.30704099e+00 - sys_corr_39: -5.36747130e+00 - sys_corr_40: -3.85758940e+00 - sys_corr_41: 6.97582059e-01 + sys_corr_39: 5.36747130e+00 + sys_corr_40: 3.85758940e+00 + sys_corr_41: -6.97582059e-01 sys_corr_42: 2.74104279e+00 sys_corr_43: -1.57384330e+00 sys_corr_44: 5.03842987e-01 sys_corr_45: 1.64571703e+00 - sys_corr_46: 1.71746490e+00 - sys_corr_47: 1.01328768e+00 + sys_corr_46: -1.71746490e+00 + sys_corr_47: -1.01328768e+00 sys_corr_48: 1.70669787e+00 sys_corr_49: -2.50707040e+00 sys_corr_50: -1.85185235e+00 - sys_corr_51: 2.56681081e+00 - sys_corr_52: -1.53152983e+00 - sys_corr_53: -1.07556611e+00 + sys_corr_51: -2.56681081e+00 + sys_corr_52: 1.53152983e+00 + sys_corr_53: 1.07556611e+00 sys_corr_54: 1.34289357e+00 sys_corr_55: -9.87181850e-01 - sys_corr_56: 2.06362828e-02 + sys_corr_56: -2.06362828e-02 sys_corr_57: 1.12456303e-01 - sys_corr_58: -4.41139679e-01 + sys_corr_58: 4.41139679e-01 sys_corr_59: 1.52244054e-01 sys_corr_60: -1.34706974e-01 - sys_corr_61: 4.44586580e-01 - sys_corr_62: -3.22273665e-01 + sys_corr_61: -4.44586580e-01 + sys_corr_62: 3.22273665e-01 sys_corr_63: 3.97098962e-01 sys_corr_64: -9.09188373e-01 - sys_corr_65: -3.77956676e-01 - sys_corr_66: 3.41843972e-01 - sys_corr_67: -1.93471755e-01 + sys_corr_65: 3.77956676e-01 + sys_corr_66: -3.41843972e-01 + sys_corr_67: 1.93471755e-01 sys_corr_68: -6.57761089e-01 sys_corr_69: -4.41406343e-01 sys_corr_70: -7.29093242e-01 - sys_corr_71: -1.46633965e-01 - sys_corr_72: 5.02132628e-02 + sys_corr_71: 1.46633965e-01 + sys_corr_72: -5.02132628e-02 sys_corr_73: 8.60994643e-01 sys_corr_74: -1.03736631e-01 - sys_corr_75: -9.18998629e-01 - sys_corr_76: 7.77855945e-02 + sys_corr_75: 9.18998629e-01 + sys_corr_76: -7.77855945e-02 sys_corr_77: -5.37228494e-01 sys_corr_78: -5.61334377e-01 sys_corr_79: 5.91556205e-01 - sys_corr_80: 1.80698669e-01 + sys_corr_80: -1.80698669e-01 sys_corr_81: 4.28267928e-01 - sys_corr_82: -8.93516509e-01 + sys_corr_82: 8.93516509e-01 sys_corr_83: 1.85844322e-01 sys_corr_84: 8.86418355e-01 sys_corr_85: 2.95673073e-01 - sys_corr_86: 6.29572611e-01 - sys_corr_87: -9.75569866e-01 + sys_corr_86: -6.29572611e-01 + sys_corr_87: 9.75569866e-01 sys_corr_88: 1.19345570e-01 sys_corr_89: 1.62931848e-01 - sys_corr_90: 8.66713525e-02 - sys_corr_91: -4.03557778e-01 - sys_corr_92: -3.65732765e-01 + sys_corr_90: 4.03557778e-01 + sys_corr_91: -8.66713525e-02 + sys_corr_92: 3.65732765e-01 sys_corr_93: -2.73136206e-02 sys_corr_94: -1.67287715e-01 - sys_corr_95: -2.95332582e-02 + sys_corr_95: 2.95332582e-02 sys_corr_96: 8.21965205e-02 - sys_corr_97: -1.03515305e-01 - sys_corr_98: -9.56813450e-02 + sys_corr_97: 1.03515305e-01 + sys_corr_98: 9.56813450e-02 sys_corr_99: 4.16566100e-02 - sys_corr_100: -1.36214588e+00 - sys_corr_101: 1.47978097e-01 - sys_corr_102: -1.35530030e-01 - sys_corr_103: 1.29467326e-02 - sys_corr_104: -1.70944195e-01 - sys_corr_105: 7.27890986e-02 + sys_corr_100: -7.27890986e-02 + sys_corr_101: 1.36214588e+00 + sys_corr_102: -1.47978097e-01 + sys_corr_103: -1.35530030e-01 + sys_corr_104: -1.29467326e-02 + sys_corr_105: 1.70944195e-01 sys_corr_106: 4.73728872e-01 sys_corr_107: 1.60616098e-01 - sys_corr_108: 2.51085720e-01 - sys_corr_109: 1.00806248e-01 - sys_corr_110: 7.98381951e-02 - sys_corr_111: 1.78716888e-01 - sys_corr_112: -3.29259036e-02 - sys_corr_113: -1.14396725e-01 - sys_corr_114: 4.53642026e-04 - sys_corr_115: -4.43812060e-02 + sys_corr_108: 1.00806248e-01 + sys_corr_109: -2.51085720e-01 + sys_corr_110: -1.78716888e-01 + sys_corr_111: -7.98381951e-02 + sys_corr_112: 3.29259036e-02 + sys_corr_113: 1.14396725e-01 + sys_corr_114: -4.53642026e-04 + sys_corr_115: 4.43812060e-02 sys_corr_116: -5.03913730e-03 - sys_corr_117: -9.12268809e-03 + sys_corr_117: 9.12268809e-03 sys_corr_118: 3.85977072e-02 sys_corr_119: -1.87395139e-03 sys_corr_120: 2.76052140e-03 sys_corr_121: -2.00693404e-03 - sys_corr_122: 3.39734162e-03 - sys_corr_123: 2.67795999e-03 - sys_corr_124: -1.46277350e-02 + sys_corr_122: 2.67795999e-03 + sys_corr_123: -3.39734162e-03 + sys_corr_124: 1.46277350e-02 sys_corr_125: -1.81577174e-03 sys_corr_126: 2.00755737e-03 - sys_corr_127: 1.68149703e-01 - sys_corr_128: -1.62777106e-01 - sys_corr_129: -8.15386706e-02 - sys_corr_130: 7.32847860e-03 - sys_corr_131: -5.28061332e-03 + sys_corr_127: -1.68149703e-01 + sys_corr_128: 1.62777106e-01 + sys_corr_129: 8.15386706e-02 + sys_corr_130: -7.32847860e-03 + sys_corr_131: 5.28061332e-03 sys_corr_132: 2.59769317e-03 stat: 0.0 luminosity: 6.07255748e+03 @@ -11666,17 +11666,17 @@ bins: sys_corr_6: 7.33299240e+01 sys_corr_7: 6.32912919e+02 sys_corr_8: 4.28769818e+02 - sys_corr_9: 3.64709414e+02 - sys_corr_10: -1.82988594e+02 + sys_corr_9: -3.64709414e+02 + sys_corr_10: 1.82988594e+02 sys_corr_11: -3.57686623e+02 - sys_corr_12: -4.45653500e+02 - sys_corr_13: -3.91454349e+02 + sys_corr_12: 4.45653500e+02 + sys_corr_13: 3.91454349e+02 sys_corr_14: -9.37204998e+02 sys_corr_15: 2.91850044e+02 sys_corr_16: -4.09436954e+02 - sys_corr_17: -4.14739985e+02 + sys_corr_17: 4.14739985e+02 sys_corr_18: 4.11445944e+02 - sys_corr_19: -3.38326296e+02 + sys_corr_19: 3.38326296e+02 sys_corr_20: 2.02544066e+01 sys_corr_21: -2.76052618e+01 sys_corr_22: 1.23991110e+01 @@ -11692,103 +11692,103 @@ bins: sys_corr_32: 2.84866469e+00 sys_corr_33: 3.95478217e+00 sys_corr_34: -5.23834133e+00 - sys_corr_35: 3.73531871e+00 - sys_corr_36: -3.08311291e+00 + sys_corr_35: -3.73531871e+00 + sys_corr_36: 3.08311291e+00 sys_corr_37: -9.16961656e-01 sys_corr_38: -4.19988316e-01 - sys_corr_39: -3.20957329e-01 - sys_corr_40: 1.03852408e-01 - sys_corr_41: -9.34429141e-01 + sys_corr_39: 3.20957329e-01 + sys_corr_40: -1.03852408e-01 + sys_corr_41: 9.34429141e-01 sys_corr_42: 4.29293268e-01 sys_corr_43: -3.88174546e-01 sys_corr_44: -1.19970604e+00 sys_corr_45: 6.16946727e-01 - sys_corr_46: 7.84688901e-01 - sys_corr_47: -2.19647690e+00 + sys_corr_46: -7.84688901e-01 + sys_corr_47: 2.19647690e+00 sys_corr_48: -5.77114751e-02 sys_corr_49: 6.73944675e-01 sys_corr_50: -6.84036091e-01 - sys_corr_51: -9.56418527e-01 - sys_corr_52: 8.14447906e-01 - sys_corr_53: 4.77287219e-01 + sys_corr_51: 9.56418527e-01 + sys_corr_52: -8.14447906e-01 + sys_corr_53: -4.77287219e-01 sys_corr_54: -2.49921000e-01 sys_corr_55: -6.31245033e-01 - sys_corr_56: 5.75839973e-01 + sys_corr_56: -5.75839973e-01 sys_corr_57: 6.85568032e-01 - sys_corr_58: -3.37930649e-01 + sys_corr_58: 3.37930649e-01 sys_corr_59: 1.38347706e-01 sys_corr_60: -2.41051854e-01 - sys_corr_61: 3.85279914e-01 - sys_corr_62: -8.24962459e-02 + sys_corr_61: -3.85279914e-01 + sys_corr_62: 8.24962459e-02 sys_corr_63: 2.13697914e-01 sys_corr_64: 5.12387686e-01 - sys_corr_65: 1.17661962e+00 - sys_corr_66: -2.23966826e-01 - sys_corr_67: 2.69259006e-01 + sys_corr_65: -1.17661962e+00 + sys_corr_66: 2.23966826e-01 + sys_corr_67: -2.69259006e-01 sys_corr_68: -7.68046701e-01 sys_corr_69: -1.09213729e-01 sys_corr_70: -6.49025468e-01 - sys_corr_71: -1.90152085e-01 - sys_corr_72: 3.88779135e-01 + sys_corr_71: 1.90152085e-01 + sys_corr_72: -3.88779135e-01 sys_corr_73: 3.72119022e-01 sys_corr_74: -3.63769260e-01 - sys_corr_75: 2.58013117e-01 - sys_corr_76: -1.13212594e+00 + sys_corr_75: -2.58013117e-01 + sys_corr_76: 1.13212594e+00 sys_corr_77: 3.87119242e-01 sys_corr_78: 8.36104730e-03 sys_corr_79: -1.25670995e-01 - sys_corr_80: 3.25390122e-01 + sys_corr_80: -3.25390122e-01 sys_corr_81: -9.12490839e-01 - sys_corr_82: 1.30528211e-01 + sys_corr_82: -1.30528211e-01 sys_corr_83: 1.09730741e-01 sys_corr_84: 5.33862490e-01 sys_corr_85: 1.25600330e-01 - sys_corr_86: 2.12348389e-01 - sys_corr_87: 4.65874287e-01 + sys_corr_86: -2.12348389e-01 + sys_corr_87: -4.65874287e-01 sys_corr_88: 6.02417414e-01 sys_corr_89: 1.01344687e-01 - sys_corr_90: -3.92843689e-01 - sys_corr_91: -3.81229206e-01 - sys_corr_92: -2.19327786e-01 + sys_corr_90: 3.81229206e-01 + sys_corr_91: 3.92843689e-01 + sys_corr_92: 2.19327786e-01 sys_corr_93: -2.53306537e-02 sys_corr_94: -2.61013376e-01 - sys_corr_95: 3.93416464e-02 + sys_corr_95: -3.93416464e-02 sys_corr_96: 3.18675388e-02 - sys_corr_97: -2.75126383e-01 - sys_corr_98: -2.08465866e-01 + sys_corr_97: 2.75126383e-01 + sys_corr_98: 2.08465866e-01 sys_corr_99: 1.13242032e-01 - sys_corr_100: 2.88895474e-01 - sys_corr_101: 1.48953531e-01 - sys_corr_102: -1.43063179e-01 - sys_corr_103: 1.00243909e-01 - sys_corr_104: 1.16824742e-01 - sys_corr_105: -9.77485495e-01 + sys_corr_100: 9.77485495e-01 + sys_corr_101: -2.88895474e-01 + sys_corr_102: -1.48953531e-01 + sys_corr_103: -1.43063179e-01 + sys_corr_104: -1.00243909e-01 + sys_corr_105: -1.16824742e-01 sys_corr_106: 2.06366473e-01 sys_corr_107: 5.28454039e-01 - sys_corr_108: 2.27935769e-01 - sys_corr_109: -8.58938344e-02 - sys_corr_110: -1.40340243e-02 - sys_corr_111: 2.11322291e-01 - sys_corr_112: 2.52602289e-02 - sys_corr_113: 1.56985904e-02 - sys_corr_114: 3.65565465e-04 - sys_corr_115: -3.73156276e-02 + sys_corr_108: -8.58938344e-02 + sys_corr_109: -2.27935769e-01 + sys_corr_110: -2.11322291e-01 + sys_corr_111: 1.40340243e-02 + sys_corr_112: -2.52602289e-02 + sys_corr_113: -1.56985904e-02 + sys_corr_114: -3.65565465e-04 + sys_corr_115: 3.73156276e-02 sys_corr_116: -1.09407112e-03 - sys_corr_117: 5.50641216e-04 + sys_corr_117: -5.50641216e-04 sys_corr_118: 6.54362933e-03 sys_corr_119: 6.40412722e-04 sys_corr_120: 4.26930733e-03 sys_corr_121: 2.57526643e-03 - sys_corr_122: 6.88153629e-03 - sys_corr_123: 2.65802409e-03 - sys_corr_124: -6.40056116e-03 + sys_corr_122: 2.65802409e-03 + sys_corr_123: -6.88153629e-03 + sys_corr_124: 6.40056116e-03 sys_corr_125: -2.59425703e-03 sys_corr_126: 1.08770397e-03 - sys_corr_127: 2.02463502e-02 - sys_corr_128: -1.39714063e-01 - sys_corr_129: 1.75302625e-02 - sys_corr_130: -9.13789843e-04 - sys_corr_131: -1.93886099e-03 + sys_corr_127: -2.02463502e-02 + sys_corr_128: 1.39714063e-01 + sys_corr_129: -1.75302625e-02 + sys_corr_130: 9.13789843e-04 + sys_corr_131: 1.93886099e-03 sys_corr_132: -3.34965348e-03 stat: 0.0 luminosity: 5.81524616e+03 @@ -11800,17 +11800,17 @@ bins: sys_corr_6: 1.98231760e+02 sys_corr_7: 2.88363842e+02 sys_corr_8: 2.63835469e+02 - sys_corr_9: 2.86576672e+02 - sys_corr_10: 6.20973157e+01 + sys_corr_9: -2.86576672e+02 + sys_corr_10: -6.20973157e+01 sys_corr_11: 6.07564439e+02 - sys_corr_12: -3.84817169e+02 - sys_corr_13: 4.46807352e+02 + sys_corr_12: 3.84817169e+02 + sys_corr_13: -4.46807352e+02 sys_corr_14: -3.77688307e+02 sys_corr_15: 1.00821685e+02 sys_corr_16: 2.84695763e+02 - sys_corr_17: 8.41748433e+02 + sys_corr_17: -8.41748433e+02 sys_corr_18: -1.96644524e+01 - sys_corr_19: 6.70685146e+02 + sys_corr_19: -6.70685146e+02 sys_corr_20: 1.66749091e+02 sys_corr_21: -1.07587935e+02 sys_corr_22: -8.76410717e+01 @@ -11826,103 +11826,103 @@ bins: sys_corr_32: 6.11422144e-01 sys_corr_33: -2.65402354e+00 sys_corr_34: 2.98482440e+00 - sys_corr_35: -5.44741138e+00 - sys_corr_36: 9.54767485e+00 + sys_corr_35: 5.44741138e+00 + sys_corr_36: -9.54767485e+00 sys_corr_37: -2.72173032e+00 sys_corr_38: 8.05400298e-01 - sys_corr_39: 2.72366653e-01 - sys_corr_40: -2.84655447e+00 - sys_corr_41: -1.30412473e+00 + sys_corr_39: -2.72366653e-01 + sys_corr_40: 2.84655447e+00 + sys_corr_41: 1.30412473e+00 sys_corr_42: -5.07170929e-01 sys_corr_43: -3.32507732e-01 sys_corr_44: 2.78072994e+00 sys_corr_45: -9.21575531e-01 - sys_corr_46: 2.98312716e+00 - sys_corr_47: 1.37976211e+00 + sys_corr_46: -2.98312716e+00 + sys_corr_47: -1.37976211e+00 sys_corr_48: 5.52702075e-02 sys_corr_49: 6.61634848e-01 sys_corr_50: -3.69274837e+00 - sys_corr_51: 1.49509683e+00 - sys_corr_52: -1.51594761e+00 - sys_corr_53: -5.42205836e-01 + sys_corr_51: -1.49509683e+00 + sys_corr_52: 1.51594761e+00 + sys_corr_53: 5.42205836e-01 sys_corr_54: 1.27606945e+00 sys_corr_55: -6.22857236e-01 - sys_corr_56: -4.34160231e-01 + sys_corr_56: 4.34160231e-01 sys_corr_57: 6.68864902e-01 - sys_corr_58: 2.31994823e-01 + sys_corr_58: -2.31994823e-01 sys_corr_59: -4.52078935e-01 sys_corr_60: -7.76764029e-02 - sys_corr_61: -1.74397995e-01 - sys_corr_62: -3.36331811e-02 + sys_corr_61: 1.74397995e-01 + sys_corr_62: 3.36331811e-02 sys_corr_63: -5.63190978e-01 sys_corr_64: -7.48083453e-01 - sys_corr_65: -7.90750510e-01 - sys_corr_66: 4.09582480e-01 - sys_corr_67: 1.16621367e+00 + sys_corr_65: 7.90750510e-01 + sys_corr_66: -4.09582480e-01 + sys_corr_67: -1.16621367e+00 sys_corr_68: 2.77409218e-01 sys_corr_69: 1.36381636e-01 sys_corr_70: -7.60126231e-01 - sys_corr_71: 1.07897631e+00 - sys_corr_72: 1.24824676e-01 + sys_corr_71: -1.07897631e+00 + sys_corr_72: -1.24824676e-01 sys_corr_73: 1.13135397e+00 sys_corr_74: 5.39310928e-01 - sys_corr_75: 6.39419231e-01 - sys_corr_76: 1.81715719e-01 + sys_corr_75: -6.39419231e-01 + sys_corr_76: -1.81715719e-01 sys_corr_77: 7.74475946e-01 sys_corr_78: -6.44414989e-01 sys_corr_79: -9.00381188e-02 - sys_corr_80: -2.71010885e-01 + sys_corr_80: 2.71010885e-01 sys_corr_81: 1.53534236e+00 - sys_corr_82: -6.95963719e-01 + sys_corr_82: 6.95963719e-01 sys_corr_83: 8.95362788e-01 sys_corr_84: 2.89223696e-01 sys_corr_85: 8.70670211e-01 - sys_corr_86: -1.92311940e-01 - sys_corr_87: -3.10428759e-01 + sys_corr_86: 1.92311940e-01 + sys_corr_87: 3.10428759e-01 sys_corr_88: -2.83282996e-01 sys_corr_89: -9.17882879e-02 - sys_corr_90: -3.88534241e-01 - sys_corr_91: -3.81073099e-01 - sys_corr_92: -1.64386194e-01 + sys_corr_90: 3.81073099e-01 + sys_corr_91: 3.88534241e-01 + sys_corr_92: 1.64386194e-01 sys_corr_93: 2.02810002e-02 sys_corr_94: -3.56473632e-02 - sys_corr_95: -1.58603013e-01 + sys_corr_95: 1.58603013e-01 sys_corr_96: 6.46665947e-02 - sys_corr_97: -2.04920553e-01 - sys_corr_98: -1.28059744e-01 + sys_corr_97: 2.04920553e-01 + sys_corr_98: 1.28059744e-01 sys_corr_99: -5.33648324e-02 - sys_corr_100: -2.59208813e-01 - sys_corr_101: -2.54963245e-01 - sys_corr_102: -1.89226927e-01 - sys_corr_103: 9.11048489e-02 - sys_corr_104: 6.43139034e-02 - sys_corr_105: 6.10372535e-01 + sys_corr_100: -6.10372535e-01 + sys_corr_101: 2.59208813e-01 + sys_corr_102: 2.54963245e-01 + sys_corr_103: -1.89226927e-01 + sys_corr_104: -9.11048489e-02 + sys_corr_105: -6.43139034e-02 sys_corr_106: -1.01512520e+00 sys_corr_107: 2.77786355e-01 - sys_corr_108: 3.53451455e-01 - sys_corr_109: 1.25034320e-01 - sys_corr_110: 1.79535668e-02 - sys_corr_111: -4.85325494e-01 - sys_corr_112: 5.34106330e-02 - sys_corr_113: -5.54626946e-02 - sys_corr_114: 4.61996828e-04 - sys_corr_115: -9.14577268e-03 + sys_corr_108: 1.25034320e-01 + sys_corr_109: -3.53451455e-01 + sys_corr_110: 4.85325494e-01 + sys_corr_111: -1.79535668e-02 + sys_corr_112: -5.34106330e-02 + sys_corr_113: 5.54626946e-02 + sys_corr_114: -4.61996828e-04 + sys_corr_115: 9.14577268e-03 sys_corr_116: 1.24934360e-02 - sys_corr_117: 1.87021668e-03 + sys_corr_117: -1.87021668e-03 sys_corr_118: -6.94940993e-03 sys_corr_119: 4.57970313e-04 sys_corr_120: -5.39308714e-03 sys_corr_121: -1.26566836e-03 - sys_corr_122: 4.45553213e-03 - sys_corr_123: 3.56032756e-03 - sys_corr_124: 6.30003148e-03 + sys_corr_122: 3.56032756e-03 + sys_corr_123: -4.45553213e-03 + sys_corr_124: -6.30003148e-03 sys_corr_125: 2.38660158e-03 sys_corr_126: 5.77785541e-03 - sys_corr_127: -1.15520520e-01 - sys_corr_128: 1.33341839e-01 - sys_corr_129: -5.42393303e-02 - sys_corr_130: 7.92876684e-03 - sys_corr_131: -2.15669633e-03 + sys_corr_127: 1.15520520e-01 + sys_corr_128: -1.33341839e-01 + sys_corr_129: 5.42393303e-02 + sys_corr_130: -7.92876684e-03 + sys_corr_131: 2.15669633e-03 sys_corr_132: 1.40200820e-02 stat: 0.0 luminosity: 5.49346389e+03 @@ -11934,17 +11934,17 @@ bins: sys_corr_6: 3.44377514e+02 sys_corr_7: 1.82191412e+02 sys_corr_8: 3.99662612e+02 - sys_corr_9: 2.61048990e+02 - sys_corr_10: 3.72583909e+02 + sys_corr_9: -2.61048990e+02 + sys_corr_10: -3.72583909e+02 sys_corr_11: -3.74347455e+01 - sys_corr_12: 3.79458891e-01 - sys_corr_13: 3.56307133e+02 + sys_corr_12: -3.79458891e-01 + sys_corr_13: -3.56307133e+02 sys_corr_14: 1.37510659e+02 sys_corr_15: -2.29222606e+02 sys_corr_16: 3.99551033e+02 - sys_corr_17: -8.79041725e+02 + sys_corr_17: 8.79041725e+02 sys_corr_18: -8.45377388e+02 - sys_corr_19: 1.02731574e+02 + sys_corr_19: -1.02731574e+02 sys_corr_20: -1.61291531e+02 sys_corr_21: 1.29847895e+02 sys_corr_22: -9.72378031e+01 @@ -11960,103 +11960,103 @@ bins: sys_corr_32: -1.60760236e+00 sys_corr_33: 4.64219233e-01 sys_corr_34: 2.89232059e+00 - sys_corr_35: 2.42579908e+00 - sys_corr_36: -3.07845019e+00 + sys_corr_35: -2.42579908e+00 + sys_corr_36: 3.07845019e+00 sys_corr_37: 2.51766352e+00 sys_corr_38: -1.32028982e+00 - sys_corr_39: 7.87657557e-01 - sys_corr_40: 2.26479663e-01 - sys_corr_41: 2.51600799e-01 + sys_corr_39: -7.87657557e-01 + sys_corr_40: -2.26479663e-01 + sys_corr_41: -2.51600799e-01 sys_corr_42: 3.09040466e-01 sys_corr_43: -1.23205042e+00 sys_corr_44: 1.36198650e+00 sys_corr_45: 1.09213827e+00 - sys_corr_46: -9.56167620e-01 - sys_corr_47: 4.37737319e-01 + sys_corr_46: 9.56167620e-01 + sys_corr_47: -4.37737319e-01 sys_corr_48: 4.73467216e-01 sys_corr_49: -6.83871592e-01 sys_corr_50: -1.14907327e+00 - sys_corr_51: 5.09980287e-02 - sys_corr_52: -9.44562350e-01 - sys_corr_53: 7.39489672e-01 + sys_corr_51: -5.09980287e-02 + sys_corr_52: 9.44562350e-01 + sys_corr_53: -7.39489672e-01 sys_corr_54: -9.07920145e-01 sys_corr_55: -3.25911452e-02 - sys_corr_56: 1.77855796e-01 + sys_corr_56: -1.77855796e-01 sys_corr_57: 9.08843289e-01 - sys_corr_58: -2.48473071e-01 + sys_corr_58: 2.48473071e-01 sys_corr_59: 4.67436240e-02 sys_corr_60: -6.49409533e-02 - sys_corr_61: -1.82127508e-01 - sys_corr_62: 3.86312232e-01 + sys_corr_61: 1.82127508e-01 + sys_corr_62: -3.86312232e-01 sys_corr_63: -1.20064825e+00 sys_corr_64: 2.32900817e-01 - sys_corr_65: -1.16437343e-01 - sys_corr_66: -9.92737180e-01 - sys_corr_67: -8.67862978e-03 + sys_corr_65: 1.16437343e-01 + sys_corr_66: 9.92737180e-01 + sys_corr_67: 8.67862978e-03 sys_corr_68: -1.56678302e-01 sys_corr_69: 5.55913215e-01 sys_corr_70: -5.84239373e-02 - sys_corr_71: -3.31168506e-01 - sys_corr_72: 4.82162596e-01 + sys_corr_71: 3.31168506e-01 + sys_corr_72: -4.82162596e-01 sys_corr_73: 3.03760284e-01 sys_corr_74: 2.44099224e-01 - sys_corr_75: -6.67971517e-01 - sys_corr_76: 3.51956553e-01 + sys_corr_75: 6.67971517e-01 + sys_corr_76: -3.51956553e-01 sys_corr_77: 4.21371464e-01 sys_corr_78: 1.82640392e+00 sys_corr_79: -3.87976728e-01 - sys_corr_80: 7.90131998e-01 + sys_corr_80: -7.90131998e-01 sys_corr_81: -2.32227527e-01 - sys_corr_82: 5.05683382e-02 + sys_corr_82: -5.05683382e-02 sys_corr_83: 3.54910989e-01 sys_corr_84: 2.55526155e-01 sys_corr_85: -6.40863301e-02 - sys_corr_86: 3.46956771e-01 - sys_corr_87: 1.20046102e-01 + sys_corr_86: -3.46956771e-01 + sys_corr_87: -1.20046102e-01 sys_corr_88: 2.00860657e-01 sys_corr_89: -1.95970389e-01 - sys_corr_90: -3.50405278e-01 - sys_corr_91: -1.83305857e-01 - sys_corr_92: 7.00279224e-02 + sys_corr_90: 1.83305857e-01 + sys_corr_91: 3.50405278e-01 + sys_corr_92: -7.00279224e-02 sys_corr_93: 5.90110469e-02 sys_corr_94: 1.24198634e-01 - sys_corr_95: -8.48143774e-02 + sys_corr_95: 8.48143774e-02 sys_corr_96: -4.96561491e-02 - sys_corr_97: -8.25549287e-02 - sys_corr_98: -4.83619160e-02 + sys_corr_97: 8.25549287e-02 + sys_corr_98: 4.83619160e-02 sys_corr_99: -2.83881686e-01 - sys_corr_100: 3.83875962e-01 - sys_corr_101: -9.69760937e-02 - sys_corr_102: 3.76553707e-01 - sys_corr_103: 1.81893692e-02 - sys_corr_104: 9.99488685e-02 - sys_corr_105: -2.36496247e-01 + sys_corr_100: 2.36496247e-01 + sys_corr_101: -3.83875962e-01 + sys_corr_102: 9.69760937e-02 + sys_corr_103: 3.76553707e-01 + sys_corr_104: -1.81893692e-02 + sys_corr_105: -9.99488685e-02 sys_corr_106: 4.91900492e-01 sys_corr_107: -8.03239188e-01 - sys_corr_108: -5.01363430e-01 - sys_corr_109: 4.07739837e-01 - sys_corr_110: -8.16468101e-02 - sys_corr_111: -8.34072629e-01 - sys_corr_112: 9.49297802e-02 - sys_corr_113: 7.95940515e-02 - sys_corr_114: 2.50820132e-05 - sys_corr_115: 1.37129430e-02 + sys_corr_108: 4.07739837e-01 + sys_corr_109: 5.01363430e-01 + sys_corr_110: 8.34072629e-01 + sys_corr_111: 8.16468101e-02 + sys_corr_112: -9.49297802e-02 + sys_corr_113: -7.95940515e-02 + sys_corr_114: -2.50820132e-05 + sys_corr_115: -1.37129430e-02 sys_corr_116: -4.73511800e-03 - sys_corr_117: -3.32628809e-03 + sys_corr_117: 3.32628809e-03 sys_corr_118: -1.08940790e-02 sys_corr_119: 7.83622234e-04 sys_corr_120: 5.28704549e-03 sys_corr_121: -5.82902727e-04 - sys_corr_122: 5.44279160e-03 - sys_corr_123: 6.02232016e-03 - sys_corr_124: 4.50892749e-03 + sys_corr_122: 6.02232016e-03 + sys_corr_123: -5.44279160e-03 + sys_corr_124: -4.50892749e-03 sys_corr_125: -4.78049893e-03 sys_corr_126: 3.17205698e-03 - sys_corr_127: -2.19075700e-02 - sys_corr_128: 4.42564332e-01 - sys_corr_129: 8.90993612e-03 - sys_corr_130: 3.55180651e-03 - sys_corr_131: -3.96790552e-03 + sys_corr_127: 2.19075700e-02 + sys_corr_128: -4.42564332e-01 + sys_corr_129: -8.90993612e-03 + sys_corr_130: -3.55180651e-03 + sys_corr_131: 3.96790552e-03 sys_corr_132: -1.46203599e-02 stat: 0.0 luminosity: 5.14612974e+03 @@ -12068,17 +12068,17 @@ bins: sys_corr_6: 3.69185548e+02 sys_corr_7: -2.68398233e+01 sys_corr_8: 1.08505047e+02 - sys_corr_9: 8.52520240e+01 - sys_corr_10: 6.32551907e+01 + sys_corr_9: -8.52520240e+01 + sys_corr_10: -6.32551907e+01 sys_corr_11: -4.83970948e+01 - sys_corr_12: -7.19522257e+01 - sys_corr_13: 7.52223954e+01 + sys_corr_12: 7.19522257e+01 + sys_corr_13: -7.52223954e+01 sys_corr_14: 2.89466767e+02 sys_corr_15: -1.53093344e+02 sys_corr_16: 1.94273686e+02 - sys_corr_17: 7.15338383e+02 + sys_corr_17: -7.15338383e+02 sys_corr_18: 1.30389476e+01 - sys_corr_19: -8.72815748e+02 + sys_corr_19: 8.72815748e+02 sys_corr_20: -1.18461360e+02 sys_corr_21: 3.76432804e+02 sys_corr_22: 1.37840709e+02 @@ -12094,103 +12094,103 @@ bins: sys_corr_32: -1.97048129e+00 sys_corr_33: 8.41670904e-01 sys_corr_34: -7.36350157e-01 - sys_corr_35: 7.41717475e-01 - sys_corr_36: 2.93280412e+00 + sys_corr_35: -7.41717475e-01 + sys_corr_36: -2.93280412e+00 sys_corr_37: -2.20489446e+00 sys_corr_38: 2.10895981e+00 - sys_corr_39: 2.53578459e+00 - sys_corr_40: 2.58293492e+00 - sys_corr_41: -1.03650497e+00 + sys_corr_39: -2.53578459e+00 + sys_corr_40: -2.58293492e+00 + sys_corr_41: 1.03650497e+00 sys_corr_42: -2.10164679e+00 sys_corr_43: 9.71110252e-01 sys_corr_44: -3.11784293e-01 sys_corr_45: -2.84199142e-01 - sys_corr_46: -1.26864381e+00 - sys_corr_47: 8.08362360e-01 + sys_corr_46: 1.26864381e+00 + sys_corr_47: -8.08362360e-01 sys_corr_48: -1.37634418e+00 sys_corr_49: 1.75306852e+00 sys_corr_50: 3.42988726e+00 - sys_corr_51: -2.76217365e+00 - sys_corr_52: 3.10227104e+00 - sys_corr_53: 1.85868196e-01 + sys_corr_51: 2.76217365e+00 + sys_corr_52: -3.10227104e+00 + sys_corr_53: -1.85868196e-01 sys_corr_54: -7.21900206e-01 sys_corr_55: 1.33496467e+00 - sys_corr_56: 9.82225484e-01 + sys_corr_56: -9.82225484e-01 sys_corr_57: 2.91601245e-01 - sys_corr_58: 5.70514681e-04 + sys_corr_58: -5.70514681e-04 sys_corr_59: -2.82142098e-01 sys_corr_60: 5.38995065e-01 - sys_corr_61: -7.60527206e-01 - sys_corr_62: -3.35014860e-01 + sys_corr_61: 7.60527206e-01 + sys_corr_62: 3.35014860e-01 sys_corr_63: 1.74568530e-01 sys_corr_64: -2.19975304e-01 - sys_corr_65: 4.81229515e-02 - sys_corr_66: -9.16716003e-01 - sys_corr_67: -4.97864161e-01 + sys_corr_65: -4.81229515e-02 + sys_corr_66: 9.16716003e-01 + sys_corr_67: 4.97864161e-01 sys_corr_68: 4.73159214e-01 sys_corr_69: 1.49982610e+00 sys_corr_70: 4.17324803e-01 - sys_corr_71: -6.70518307e-02 - sys_corr_72: -8.88494719e-01 + sys_corr_71: 6.70518307e-02 + sys_corr_72: 8.88494719e-01 sys_corr_73: 3.79398725e-01 sys_corr_74: -1.16101265e-01 - sys_corr_75: -4.36632220e-01 - sys_corr_76: -3.46637167e-01 + sys_corr_75: 4.36632220e-01 + sys_corr_76: 3.46637167e-01 sys_corr_77: 1.59131308e-01 sys_corr_78: -5.61733333e-01 sys_corr_79: -2.73423053e-01 - sys_corr_80: 2.17386085e-01 + sys_corr_80: -2.17386085e-01 sys_corr_81: -1.09119865e+00 - sys_corr_82: 5.59141451e-01 + sys_corr_82: -5.59141451e-01 sys_corr_83: -7.80406892e-01 sys_corr_84: -1.10693724e+00 sys_corr_85: -1.44115455e+00 - sys_corr_86: -4.26623524e-01 - sys_corr_87: 2.93578535e-01 + sys_corr_86: 4.26623524e-01 + sys_corr_87: -2.93578535e-01 sys_corr_88: -1.79311090e-01 sys_corr_89: -1.35163386e-01 - sys_corr_90: -3.07170897e-01 - sys_corr_91: -9.97702249e-01 - sys_corr_92: -2.33433814e-01 + sys_corr_90: 9.97702249e-01 + sys_corr_91: 3.07170897e-01 + sys_corr_92: 2.33433814e-01 sys_corr_93: 1.48097561e-01 sys_corr_94: 3.31728172e-01 - sys_corr_95: -9.04269515e-02 + sys_corr_95: 9.04269515e-02 sys_corr_96: -6.47630349e-02 - sys_corr_97: -3.75108015e-01 - sys_corr_98: -1.71269245e-01 + sys_corr_97: 3.75108015e-01 + sys_corr_98: 1.71269245e-01 sys_corr_99: -3.87594156e-01 - sys_corr_100: 5.78477049e-02 - sys_corr_101: 7.00365808e-02 - sys_corr_102: -6.43738412e-01 - sys_corr_103: 1.23253178e-01 - sys_corr_104: 4.05606315e-01 - sys_corr_105: -2.47110106e-01 + sys_corr_100: 2.47110106e-01 + sys_corr_101: -5.78477049e-02 + sys_corr_102: -7.00365808e-02 + sys_corr_103: -6.43738412e-01 + sys_corr_104: -1.23253178e-01 + sys_corr_105: -4.05606315e-01 sys_corr_106: -4.33281895e-01 sys_corr_107: 1.29692218e-01 - sys_corr_108: -1.08534562e+00 - sys_corr_109: 3.43899069e-02 - sys_corr_110: -1.62040832e-01 - sys_corr_111: 1.29436500e+00 - sys_corr_112: 1.48140199e-01 - sys_corr_113: 2.50871540e-01 - sys_corr_114: -5.13646832e-04 - sys_corr_115: 6.91441901e-03 + sys_corr_108: 3.43899069e-02 + sys_corr_109: 1.08534562e+00 + sys_corr_110: -1.29436500e+00 + sys_corr_111: 1.62040832e-01 + sys_corr_112: -1.48140199e-01 + sys_corr_113: -2.50871540e-01 + sys_corr_114: 5.13646832e-04 + sys_corr_115: -6.91441901e-03 sys_corr_116: 5.44716709e-03 - sys_corr_117: 5.10046518e-03 + sys_corr_117: -5.10046518e-03 sys_corr_118: -7.35970173e-02 sys_corr_119: 2.18022064e-03 sys_corr_120: -5.54085580e-03 sys_corr_121: 8.03522671e-04 - sys_corr_122: -3.85995439e-03 - sys_corr_123: 2.44325374e-05 - sys_corr_124: -1.23531491e-02 + sys_corr_122: 2.44325374e-05 + sys_corr_123: 3.85995439e-03 + sys_corr_124: 1.23531491e-02 sys_corr_125: -1.85202271e-03 sys_corr_126: -2.23871753e-03 - sys_corr_127: -3.06340644e-02 - sys_corr_128: -3.54176909e-01 - sys_corr_129: 6.01849280e-02 - sys_corr_130: -1.03095032e-02 - sys_corr_131: 4.37156919e-03 + sys_corr_127: 3.06340644e-02 + sys_corr_128: 3.54176909e-01 + sys_corr_129: -6.01849280e-02 + sys_corr_130: 1.03095032e-02 + sys_corr_131: -4.37156919e-03 sys_corr_132: -3.46377162e-03 stat: 0.0 luminosity: 4.82058892e+03 @@ -12202,17 +12202,17 @@ bins: sys_corr_6: 3.62190424e+02 sys_corr_7: -2.77141756e+02 sys_corr_8: -1.79925945e+02 - sys_corr_9: -1.13115335e+02 - sys_corr_10: -4.34144313e+01 + sys_corr_9: 1.13115335e+02 + sys_corr_10: 4.34144313e+01 sys_corr_11: 1.27913027e+02 - sys_corr_12: 1.71076520e+02 - sys_corr_13: -8.74721064e+01 + sys_corr_12: -1.71076520e+02 + sys_corr_13: 8.74721064e+01 sys_corr_14: 1.54193037e+02 sys_corr_15: 5.73378223e-01 sys_corr_16: -1.13951623e+02 - sys_corr_17: -1.23638412e+02 + sys_corr_17: 1.23638412e+02 sys_corr_18: 1.05735227e+02 - sys_corr_19: -1.31784522e+02 + sys_corr_19: 1.31784522e+02 sys_corr_20: 9.02774994e+01 sys_corr_21: -9.98334850e+02 sys_corr_22: 8.67038640e+01 @@ -12228,103 +12228,103 @@ bins: sys_corr_32: -9.82635394e-01 sys_corr_33: -8.89693475e-01 sys_corr_34: -8.20914833e+00 - sys_corr_35: -1.15465769e+00 - sys_corr_36: -3.67343182e+00 + sys_corr_35: 1.15465769e+00 + sys_corr_36: 3.67343182e+00 sys_corr_37: 3.42336266e-01 sys_corr_38: -1.65912132e+00 - sys_corr_39: -2.05914203e+00 - sys_corr_40: 3.02621874e-01 - sys_corr_41: -8.04496479e-01 + sys_corr_39: 2.05914203e+00 + sys_corr_40: -3.02621874e-01 + sys_corr_41: 8.04496479e-01 sys_corr_42: 1.62324384e-01 sys_corr_43: 1.30170734e+00 sys_corr_44: 8.43143149e-01 sys_corr_45: -1.23164906e+00 - sys_corr_46: -2.28987090e-01 - sys_corr_47: 1.54768393e+00 + sys_corr_46: 2.28987090e-01 + sys_corr_47: -1.54768393e+00 sys_corr_48: -3.76362912e+00 sys_corr_49: 1.32524010e+00 sys_corr_50: 3.54540292e+00 - sys_corr_51: -6.48173818e+00 - sys_corr_52: 2.67114045e+00 - sys_corr_53: -2.96273323e-01 + sys_corr_51: 6.48173818e+00 + sys_corr_52: -2.67114045e+00 + sys_corr_53: 2.96273323e-01 sys_corr_54: -7.74202249e-01 sys_corr_55: 3.45564636e-01 - sys_corr_56: 1.42447380e+00 + sys_corr_56: -1.42447380e+00 sys_corr_57: -4.12441186e-01 - sys_corr_58: 6.54837805e-01 + sys_corr_58: -6.54837805e-01 sys_corr_59: 4.06707837e-01 sys_corr_60: -1.57900894e-01 - sys_corr_61: -1.50846964e+00 - sys_corr_62: -3.25125165e-01 + sys_corr_61: 1.50846964e+00 + sys_corr_62: 3.25125165e-01 sys_corr_63: 2.87022844e-01 sys_corr_64: 5.33197627e-01 - sys_corr_65: 1.97439093e-01 - sys_corr_66: 2.62921201e-01 - sys_corr_67: 3.69675082e-01 + sys_corr_65: -1.97439093e-01 + sys_corr_66: -2.62921201e-01 + sys_corr_67: -3.69675082e-01 sys_corr_68: 3.01133747e-02 sys_corr_69: -7.78789343e-01 sys_corr_70: 1.83993420e+00 - sys_corr_71: 7.31026806e-02 - sys_corr_72: 5.09037471e-01 + sys_corr_71: -7.31026806e-02 + sys_corr_72: -5.09037471e-01 sys_corr_73: -2.96600706e-01 sys_corr_74: -7.41455572e-01 - sys_corr_75: 7.74496359e-01 - sys_corr_76: -1.45383181e+00 + sys_corr_75: -7.74496359e-01 + sys_corr_76: 1.45383181e+00 sys_corr_77: -8.88027889e-01 sys_corr_78: -1.20238582e+00 sys_corr_79: -5.83965217e-02 - sys_corr_80: 1.62666053e-01 + sys_corr_80: -1.62666053e-01 sys_corr_81: 5.76304421e-01 - sys_corr_82: -1.36836693e-01 + sys_corr_82: 1.36836693e-01 sys_corr_83: -1.61072320e-01 sys_corr_84: 1.71777407e+00 sys_corr_85: 6.09357896e-01 - sys_corr_86: 4.55509214e-02 - sys_corr_87: 1.36325911e+00 + sys_corr_86: -4.55509214e-02 + sys_corr_87: -1.36325911e+00 sys_corr_88: 3.51904093e-01 sys_corr_89: -4.03177444e-01 - sys_corr_90: -6.66313887e-01 - sys_corr_91: -6.69016704e-01 - sys_corr_92: 5.42193325e-01 + sys_corr_90: 6.69016704e-01 + sys_corr_91: 6.66313887e-01 + sys_corr_92: -5.42193325e-01 sys_corr_93: 1.03305450e-01 sys_corr_94: 1.85093854e-01 - sys_corr_95: 9.85821223e-02 + sys_corr_95: -9.85821223e-02 sys_corr_96: 7.53535618e-02 - sys_corr_97: -6.07426959e-01 - sys_corr_98: -1.99862818e-01 + sys_corr_97: 6.07426959e-01 + sys_corr_98: 1.99862818e-01 sys_corr_99: 7.53184778e-02 - sys_corr_100: 5.11138231e-02 - sys_corr_101: 4.25744083e-01 - sys_corr_102: 9.98410406e-01 - sys_corr_103: 4.07009722e-02 - sys_corr_104: -6.84725273e-02 - sys_corr_105: -2.74362963e-02 + sys_corr_100: 2.74362963e-02 + sys_corr_101: -5.11138231e-02 + sys_corr_102: -4.25744083e-01 + sys_corr_103: 9.98410406e-01 + sys_corr_104: -4.07009722e-02 + sys_corr_105: 6.84725273e-02 sys_corr_106: 1.65598049e-02 sys_corr_107: -1.33363895e-01 - sys_corr_108: 7.85028333e-01 - sys_corr_109: -1.51645196e+00 - sys_corr_110: -3.78057344e-01 - sys_corr_111: -4.20517861e-01 - sys_corr_112: -1.51934589e-01 - sys_corr_113: 2.20267046e-01 - sys_corr_114: -1.30605305e-03 - sys_corr_115: 6.62630872e-02 + sys_corr_108: -1.51645196e+00 + sys_corr_109: -7.85028333e-01 + sys_corr_110: 4.20517861e-01 + sys_corr_111: 3.78057344e-01 + sys_corr_112: 1.51934589e-01 + sys_corr_113: -2.20267046e-01 + sys_corr_114: 1.30605305e-03 + sys_corr_115: -6.62630872e-02 sys_corr_116: -4.74923855e-02 - sys_corr_117: -1.52899107e-02 + sys_corr_117: 1.52899107e-02 sys_corr_118: -4.72245193e-02 sys_corr_119: 7.34130229e-04 sys_corr_120: 1.60439997e-02 sys_corr_121: -1.58398610e-03 - sys_corr_122: -1.93670583e-02 - sys_corr_123: -1.61206462e-02 - sys_corr_124: -4.24141292e-03 + sys_corr_122: -1.61206462e-02 + sys_corr_123: 1.93670583e-02 + sys_corr_124: 4.24141292e-03 sys_corr_125: 4.43049940e-03 sys_corr_126: -8.57907201e-03 - sys_corr_127: -1.85335255e-01 - sys_corr_128: 2.09030326e-01 - sys_corr_129: 2.80109827e-01 - sys_corr_130: -7.74250544e-03 - sys_corr_131: -4.20693342e-03 + sys_corr_127: 1.85335255e-01 + sys_corr_128: -2.09030326e-01 + sys_corr_129: -2.80109827e-01 + sys_corr_130: 7.74250544e-03 + sys_corr_131: 4.20693342e-03 sys_corr_132: -3.53012559e-04 stat: 0.0 luminosity: 4.32856189e+03 @@ -12336,17 +12336,17 @@ bins: sys_corr_6: 2.72606221e+02 sys_corr_7: -3.22216339e+02 sys_corr_8: -2.88845129e+02 - sys_corr_9: -1.87129318e+02 - sys_corr_10: -9.17386068e+01 + sys_corr_9: 1.87129318e+02 + sys_corr_10: 9.17386068e+01 sys_corr_11: -6.39130444e+01 - sys_corr_12: 2.07388951e+02 - sys_corr_13: -3.47025583e+02 + sys_corr_12: -2.07388951e+02 + sys_corr_13: 3.47025583e+02 sys_corr_14: -2.52330482e+02 sys_corr_15: 1.94002640e+02 sys_corr_16: -2.72317533e+02 - sys_corr_17: -6.42880524e+01 + sys_corr_17: 6.42880524e+01 sys_corr_18: 2.99202174e+02 - sys_corr_19: 5.47599517e+02 + sys_corr_19: -5.47599517e+02 sys_corr_20: -6.68657073e+02 sys_corr_21: 4.01632683e+02 sys_corr_22: 5.92368399e+01 @@ -12362,103 +12362,103 @@ bins: sys_corr_32: -1.47188711e+00 sys_corr_33: -4.56550226e-01 sys_corr_34: 1.98795152e-01 - sys_corr_35: -1.05243191e+00 - sys_corr_36: -1.66116047e+00 + sys_corr_35: 1.05243191e+00 + sys_corr_36: 1.66116047e+00 sys_corr_37: 7.57123142e-01 sys_corr_38: 2.89301235e-01 - sys_corr_39: -4.75846243e-01 - sys_corr_40: 1.38753417e-01 - sys_corr_41: 5.51545858e-01 + sys_corr_39: 4.75846243e-01 + sys_corr_40: -1.38753417e-01 + sys_corr_41: -5.51545858e-01 sys_corr_42: 2.94030991e-01 sys_corr_43: -6.18688443e-01 sys_corr_44: -7.47835778e-01 sys_corr_45: -6.12928834e-01 - sys_corr_46: -4.14824301e-01 - sys_corr_47: 2.02862858e+00 + sys_corr_46: 4.14824301e-01 + sys_corr_47: -2.02862858e+00 sys_corr_48: -2.17559181e+00 sys_corr_49: 1.31770990e+00 sys_corr_50: 1.67905924e+00 - sys_corr_51: -1.79598625e+00 - sys_corr_52: 1.62726177e+00 - sys_corr_53: -5.90953130e-01 + sys_corr_51: 1.79598625e+00 + sys_corr_52: -1.62726177e+00 + sys_corr_53: 5.90953130e-01 sys_corr_54: -6.72892505e-01 sys_corr_55: -1.41387410e-01 - sys_corr_56: 4.98196962e-01 + sys_corr_56: -4.98196962e-01 sys_corr_57: 7.42490608e-01 - sys_corr_58: -2.92288827e-02 + sys_corr_58: 2.92288827e-02 sys_corr_59: -3.21077015e-01 sys_corr_60: -1.88548179e-01 - sys_corr_61: -5.36320783e-01 - sys_corr_62: -5.10776662e-01 + sys_corr_61: 5.36320783e-01 + sys_corr_62: 5.10776662e-01 sys_corr_63: -7.53072739e-01 sys_corr_64: 2.03136362e-01 - sys_corr_65: -3.48559781e-01 - sys_corr_66: -4.96254777e-01 - sys_corr_67: -8.83204462e-02 + sys_corr_65: 3.48559781e-01 + sys_corr_66: 4.96254777e-01 + sys_corr_67: 8.83204462e-02 sys_corr_68: 1.11588420e+00 sys_corr_69: 6.48016805e-01 sys_corr_70: -9.18327878e-01 - sys_corr_71: -1.26074042e-01 - sys_corr_72: 2.99560777e-01 + sys_corr_71: 1.26074042e-01 + sys_corr_72: -2.99560777e-01 sys_corr_73: -2.72931543e-01 sys_corr_74: 4.44085690e-01 - sys_corr_75: 5.85139355e-01 - sys_corr_76: 5.93718837e-01 + sys_corr_75: -5.85139355e-01 + sys_corr_76: -5.93718837e-01 sys_corr_77: 1.81210392e-01 sys_corr_78: -2.07452394e-01 sys_corr_79: -2.80729805e-01 - sys_corr_80: 1.38951773e-01 + sys_corr_80: -1.38951773e-01 sys_corr_81: -9.85656773e-01 - sys_corr_82: 4.46730074e-01 + sys_corr_82: -4.46730074e-01 sys_corr_83: 1.52348970e-01 sys_corr_84: 1.22877510e+00 sys_corr_85: -7.82610042e-01 - sys_corr_86: 2.09177930e-02 - sys_corr_87: 6.30187757e-01 + sys_corr_86: -2.09177930e-02 + sys_corr_87: -6.30187757e-01 sys_corr_88: 3.02892520e-01 sys_corr_89: -9.68011754e-03 - sys_corr_90: -6.12582249e-02 - sys_corr_91: 1.00721467e+00 - sys_corr_92: 1.34120489e-01 + sys_corr_90: -1.00721467e+00 + sys_corr_91: 6.12582249e-02 + sys_corr_92: -1.34120489e-01 sys_corr_93: 1.10645539e-02 sys_corr_94: 2.70852277e-02 - sys_corr_95: 2.01448887e-01 + sys_corr_95: -2.01448887e-01 sys_corr_96: 5.53805760e-02 - sys_corr_97: -3.90971193e-01 - sys_corr_98: -1.58677853e-01 + sys_corr_97: 3.90971193e-01 + sys_corr_98: 1.58677853e-01 sys_corr_99: -1.78295923e-01 - sys_corr_100: -2.92358720e-02 - sys_corr_101: 1.24822154e-01 - sys_corr_102: 7.57736360e-02 - sys_corr_103: -1.84661700e-02 - sys_corr_104: 2.12117355e-02 - sys_corr_105: -7.58704910e-02 + sys_corr_100: 7.58704910e-02 + sys_corr_101: 2.92358720e-02 + sys_corr_102: -1.24822154e-01 + sys_corr_103: 7.57736360e-02 + sys_corr_104: 1.84661700e-02 + sys_corr_105: -2.12117355e-02 sys_corr_106: -9.28017381e-02 sys_corr_107: -3.25787294e-01 - sys_corr_108: 1.87133824e-01 - sys_corr_109: 8.50928189e-01 - sys_corr_110: 4.58053312e-02 - sys_corr_111: 2.04707446e-01 - sys_corr_112: -8.37667265e-01 - sys_corr_113: -3.10783883e-01 - sys_corr_114: -7.25852415e-04 - sys_corr_115: 1.68011830e-01 + sys_corr_108: 8.50928189e-01 + sys_corr_109: -1.87133824e-01 + sys_corr_110: -2.04707446e-01 + sys_corr_111: -4.58053312e-02 + sys_corr_112: 8.37667265e-01 + sys_corr_113: 3.10783883e-01 + sys_corr_114: 7.25852415e-04 + sys_corr_115: -1.68011830e-01 sys_corr_116: -2.09929413e-02 - sys_corr_117: -9.50582221e-03 + sys_corr_117: 9.50582221e-03 sys_corr_118: 1.33097799e-02 sys_corr_119: -2.71271582e-04 sys_corr_120: -4.62730165e-03 sys_corr_121: -1.75067710e-03 - sys_corr_122: -6.33104814e-03 - sys_corr_123: -7.67755778e-03 - sys_corr_124: 1.93894503e-02 + sys_corr_122: -7.67755778e-03 + sys_corr_123: 6.33104814e-03 + sys_corr_124: -1.93894503e-02 sys_corr_125: 9.21280645e-03 sys_corr_126: -7.14497758e-03 - sys_corr_127: 1.13058135e-01 - sys_corr_128: -8.66727161e-03 - sys_corr_129: 2.41817667e-02 - sys_corr_130: -5.01748976e-03 - sys_corr_131: 7.71982905e-03 + sys_corr_127: -1.13058135e-01 + sys_corr_128: 8.66727161e-03 + sys_corr_129: -2.41817667e-02 + sys_corr_130: 5.01748976e-03 + sys_corr_131: -7.71982905e-03 sys_corr_132: -7.27014982e-03 stat: 0.0 luminosity: 3.91650464e+03 @@ -12470,17 +12470,17 @@ bins: sys_corr_6: 1.38061767e+02 sys_corr_7: -5.06552957e+01 sys_corr_8: -1.18381357e+02 - sys_corr_9: -1.34947366e+02 - sys_corr_10: -7.80720416e+01 + sys_corr_9: 1.34947366e+02 + sys_corr_10: 7.80720416e+01 sys_corr_11: -8.57388485e+01 - sys_corr_12: 4.25447522e+01 - sys_corr_13: -5.40413665e+01 + sys_corr_12: -4.25447522e+01 + sys_corr_13: 5.40413665e+01 sys_corr_14: -7.80521101e+01 sys_corr_15: 9.29537875e+01 sys_corr_16: -3.47750720e+01 - sys_corr_17: -1.67331797e+02 + sys_corr_17: 1.67331797e+02 sys_corr_18: -3.57047475e+01 - sys_corr_19: 4.61609756e+01 + sys_corr_19: -4.61609756e+01 sys_corr_20: 9.97632676e+02 sys_corr_21: 3.74651312e+02 sys_corr_22: -9.97288918e+01 @@ -12496,103 +12496,103 @@ bins: sys_corr_32: -3.98742835e-01 sys_corr_33: -1.51857451e+00 sys_corr_34: 2.60044320e+00 - sys_corr_35: -7.96676208e-01 - sys_corr_36: 1.94311291e+00 + sys_corr_35: 7.96676208e-01 + sys_corr_36: -1.94311291e+00 sys_corr_37: 2.26185337e+00 sys_corr_38: 4.99015030e-01 - sys_corr_39: -1.11846402e+00 - sys_corr_40: 1.38453386e+00 - sys_corr_41: -1.85206592e+00 + sys_corr_39: 1.11846402e+00 + sys_corr_40: -1.38453386e+00 + sys_corr_41: 1.85206592e+00 sys_corr_42: -4.29733218e-01 sys_corr_43: 1.00264154e+00 sys_corr_44: 1.84501469e+00 sys_corr_45: 6.94672711e-02 - sys_corr_46: 7.33942663e-01 - sys_corr_47: 1.46289284e+00 + sys_corr_46: -7.33942663e-01 + sys_corr_47: -1.46289284e+00 sys_corr_48: 1.31733868e-01 sys_corr_49: 2.43929250e+00 sys_corr_50: -1.21923374e+00 - sys_corr_51: 2.17132879e+00 - sys_corr_52: -4.32369673e-01 - sys_corr_53: -6.22758956e-01 + sys_corr_51: -2.17132879e+00 + sys_corr_52: 4.32369673e-01 + sys_corr_53: 6.22758956e-01 sys_corr_54: 7.83018837e-01 sys_corr_55: 2.65291012e-01 - sys_corr_56: 7.61389415e-01 + sys_corr_56: -7.61389415e-01 sys_corr_57: -2.26956229e-01 - sys_corr_58: 2.43956054e-01 + sys_corr_58: -2.43956054e-01 sys_corr_59: -1.14495000e+00 sys_corr_60: 1.79536919e-01 - sys_corr_61: 9.26823408e-01 - sys_corr_62: 3.76928226e-01 + sys_corr_61: -9.26823408e-01 + sys_corr_62: -3.76928226e-01 sys_corr_63: -1.21485618e-01 sys_corr_64: -1.64062769e-01 - sys_corr_65: -2.23441772e-01 - sys_corr_66: 4.99839303e-01 - sys_corr_67: 6.06389973e-01 + sys_corr_65: 2.23441772e-01 + sys_corr_66: -4.99839303e-01 + sys_corr_67: -6.06389973e-01 sys_corr_68: 9.69481697e-01 sys_corr_69: -1.69114769e-03 sys_corr_70: -2.28016528e-01 - sys_corr_71: 5.10886097e-01 - sys_corr_72: -9.34660348e-01 + sys_corr_71: -5.10886097e-01 + sys_corr_72: 9.34660348e-01 sys_corr_73: 2.09035964e-01 sys_corr_74: 5.00133104e-01 - sys_corr_75: 3.66137960e-01 - sys_corr_76: 1.53704536e-01 + sys_corr_75: -3.66137960e-01 + sys_corr_76: -1.53704536e-01 sys_corr_77: -1.20812935e-01 sys_corr_78: -3.84599770e-01 sys_corr_79: 4.04555243e-01 - sys_corr_80: -4.15181949e-01 + sys_corr_80: 4.15181949e-01 sys_corr_81: -8.56107566e-01 - sys_corr_82: -1.09449136e-01 + sys_corr_82: 1.09449136e-01 sys_corr_83: 4.26707681e-01 sys_corr_84: 4.03930838e-01 sys_corr_85: 2.47375258e-01 - sys_corr_86: 5.17356380e-01 - sys_corr_87: 1.26636013e-01 + sys_corr_86: -5.17356380e-01 + sys_corr_87: -1.26636013e-01 sys_corr_88: 4.72201278e-01 sys_corr_89: -1.71301816e-01 - sys_corr_90: 1.79221339e+00 - sys_corr_91: -6.14213046e-01 - sys_corr_92: 9.70366588e-02 + sys_corr_90: 6.14213046e-01 + sys_corr_91: -1.79221339e+00 + sys_corr_92: -9.70366588e-02 sys_corr_93: 3.23935290e-03 sys_corr_94: -2.78045435e-02 - sys_corr_95: 1.54917316e-01 + sys_corr_95: -1.54917316e-01 sys_corr_96: 6.35821760e-02 - sys_corr_97: -3.08392835e-01 - sys_corr_98: -2.67435612e-01 + sys_corr_97: 3.08392835e-01 + sys_corr_98: 2.67435612e-01 sys_corr_99: -2.13255841e-01 - sys_corr_100: 2.59034316e-01 - sys_corr_101: 5.34362329e-01 - sys_corr_102: -8.28378690e-02 - sys_corr_103: 1.25201036e-01 - sys_corr_104: 3.69525941e-01 - sys_corr_105: 3.45449609e-01 + sys_corr_100: -3.45449609e-01 + sys_corr_101: -2.59034316e-01 + sys_corr_102: -5.34362329e-01 + sys_corr_103: -8.28378690e-02 + sys_corr_104: -1.25201036e-01 + sys_corr_105: -3.69525941e-01 sys_corr_106: 8.12715061e-02 sys_corr_107: -2.37741156e-02 - sys_corr_108: 5.65884300e-02 - sys_corr_109: -6.67093801e-02 - sys_corr_110: 1.07832088e-01 - sys_corr_111: 1.20297656e-01 - sys_corr_112: 1.00932968e+00 - sys_corr_113: -1.14319337e+00 - sys_corr_114: 8.58386469e-04 - sys_corr_115: 2.80939064e-01 + sys_corr_108: -6.67093801e-02 + sys_corr_109: -5.65884300e-02 + sys_corr_110: -1.20297656e-01 + sys_corr_111: -1.07832088e-01 + sys_corr_112: -1.00932968e+00 + sys_corr_113: 1.14319337e+00 + sys_corr_114: -8.58386469e-04 + sys_corr_115: -2.80939064e-01 sys_corr_116: -2.61765863e-02 - sys_corr_117: -1.00169019e-02 + sys_corr_117: 1.00169019e-02 sys_corr_118: 1.84686806e-01 sys_corr_119: -1.42878698e-03 sys_corr_120: 4.72307021e-03 sys_corr_121: -9.65901132e-04 - sys_corr_122: -1.43737922e-02 - sys_corr_123: -8.05819745e-03 - sys_corr_124: 2.45577894e-02 + sys_corr_122: -8.05819745e-03 + sys_corr_123: 1.43737922e-02 + sys_corr_124: -2.45577894e-02 sys_corr_125: 3.56030253e-03 sys_corr_126: -8.31048652e-03 - sys_corr_127: 1.86806435e-01 - sys_corr_128: -6.19204675e-02 - sys_corr_129: -1.65299153e-01 - sys_corr_130: -6.49280966e-03 - sys_corr_131: -2.95165835e-03 + sys_corr_127: -1.86806435e-01 + sys_corr_128: 6.19204675e-02 + sys_corr_129: 1.65299153e-01 + sys_corr_130: 6.49280966e-03 + sys_corr_131: 2.95165835e-03 sys_corr_132: 6.14811713e-02 stat: 0.0 luminosity: 3.38088513e+03 @@ -12604,17 +12604,17 @@ bins: sys_corr_6: -2.02503732e+01 sys_corr_7: 4.89221580e+00 sys_corr_8: -3.14944082e+01 - sys_corr_9: -6.60641664e+01 - sys_corr_10: -1.41473611e+01 + sys_corr_9: 6.60641664e+01 + sys_corr_10: 1.41473611e+01 sys_corr_11: -1.14449647e+01 - sys_corr_12: -3.99165731e+01 - sys_corr_13: 2.51134675e+01 + sys_corr_12: 3.99165731e+01 + sys_corr_13: -2.51134675e+01 sys_corr_14: -4.22688283e+01 sys_corr_15: -1.17537070e+01 sys_corr_16: 5.01581459e-01 - sys_corr_17: -5.81599279e+01 + sys_corr_17: 5.81599279e+01 sys_corr_18: -3.65447930e+01 - sys_corr_19: 7.70894192e+01 + sys_corr_19: -7.70894192e+01 sys_corr_20: 9.94228471e+01 sys_corr_21: -5.97098018e+01 sys_corr_22: 1.36454234e+02 @@ -12630,103 +12630,103 @@ bins: sys_corr_32: 7.46023597e-01 sys_corr_33: 1.26927134e-01 sys_corr_34: 2.60034338e+00 - sys_corr_35: 4.06642994e+00 - sys_corr_36: 1.10026151e+00 + sys_corr_35: -4.06642994e+00 + sys_corr_36: -1.10026151e+00 sys_corr_37: 2.32852997e+00 sys_corr_38: -6.08051389e-03 - sys_corr_39: -1.63899294e+00 - sys_corr_40: 2.51346510e+00 - sys_corr_41: 8.56087806e-01 + sys_corr_39: 1.63899294e+00 + sys_corr_40: -2.51346510e+00 + sys_corr_41: -8.56087806e-01 sys_corr_42: -1.91748961e+00 sys_corr_43: 3.77085970e-01 sys_corr_44: 3.52292489e+00 sys_corr_45: 1.00089710e+00 - sys_corr_46: 1.44204589e-03 - sys_corr_47: -4.08667592e+00 + sys_corr_46: -1.44204589e-03 + sys_corr_47: 4.08667592e+00 sys_corr_48: 8.18185653e+00 sys_corr_49: -5.68550442e-01 sys_corr_50: -6.30965814e+00 - sys_corr_51: 7.63383047e+00 - sys_corr_52: -5.95277639e+00 - sys_corr_53: -2.52380308e-01 + sys_corr_51: -7.63383047e+00 + sys_corr_52: 5.95277639e+00 + sys_corr_53: 2.52380308e-01 sys_corr_54: 9.36108911e-01 sys_corr_55: -1.75864773e+00 - sys_corr_56: -3.49447628e-01 + sys_corr_56: 3.49447628e-01 sys_corr_57: 1.47778096e-03 - sys_corr_58: -4.33061360e-01 + sys_corr_58: 4.33061360e-01 sys_corr_59: -1.07191244e+00 sys_corr_60: -1.69242918e-01 - sys_corr_61: -4.11803230e-01 - sys_corr_62: -3.48072160e-01 + sys_corr_61: 4.11803230e-01 + sys_corr_62: 3.48072160e-01 sys_corr_63: 8.89834643e-02 sys_corr_64: -4.25281214e-01 - sys_corr_65: 2.88863556e-01 - sys_corr_66: 4.01574616e-01 - sys_corr_67: 8.61875040e-01 + sys_corr_65: -2.88863556e-01 + sys_corr_66: -4.01574616e-01 + sys_corr_67: -8.61875040e-01 sys_corr_68: -9.13982281e-02 sys_corr_69: -2.78424571e-02 sys_corr_70: -7.83471193e-02 - sys_corr_71: 1.10282277e+00 - sys_corr_72: -8.78184256e-01 + sys_corr_71: -1.10282277e+00 + sys_corr_72: 8.78184256e-01 sys_corr_73: -1.43678224e-01 sys_corr_74: 2.27528681e-01 - sys_corr_75: -2.21569788e-01 - sys_corr_76: -1.12838167e-01 + sys_corr_75: 2.21569788e-01 + sys_corr_76: 1.12838167e-01 sys_corr_77: -4.61976596e-01 sys_corr_78: 5.23153159e-01 sys_corr_79: 2.97722590e-01 - sys_corr_80: 1.38593164e-01 + sys_corr_80: -1.38593164e-01 sys_corr_81: 9.63507460e-01 - sys_corr_82: -2.03483549e-01 + sys_corr_82: 2.03483549e-01 sys_corr_83: -2.00032130e+00 sys_corr_84: -8.38801373e-01 sys_corr_85: 9.05708492e-01 - sys_corr_86: -6.84889197e-01 - sys_corr_87: -1.49762171e+00 + sys_corr_86: 6.84889197e-01 + sys_corr_87: 1.49762171e+00 sys_corr_88: 1.00418114e+00 sys_corr_89: 2.58554198e-01 - sys_corr_90: -5.44733610e-01 - sys_corr_91: -4.48588471e-01 - sys_corr_92: -8.19365973e-02 + sys_corr_90: 4.48588471e-01 + sys_corr_91: 5.44733610e-01 + sys_corr_92: 8.19365973e-02 sys_corr_93: -8.30756444e-02 sys_corr_94: -1.16873882e-01 - sys_corr_95: 5.22974556e-03 + sys_corr_95: -5.22974556e-03 sys_corr_96: -4.78605129e-02 - sys_corr_97: 1.84811525e-01 - sys_corr_98: -2.86574316e-02 + sys_corr_97: -1.84811525e-01 + sys_corr_98: 2.86574316e-02 sys_corr_99: 7.71862168e-03 - sys_corr_100: 1.25411796e-01 - sys_corr_101: 3.13308744e-01 - sys_corr_102: -2.26388911e-01 - sys_corr_103: -1.01970319e-01 - sys_corr_104: 3.51984080e-01 - sys_corr_105: 1.31623210e-01 + sys_corr_100: -1.31623210e-01 + sys_corr_101: -1.25411796e-01 + sys_corr_102: -3.13308744e-01 + sys_corr_103: -2.26388911e-01 + sys_corr_104: 1.01970319e-01 + sys_corr_105: -3.51984080e-01 sys_corr_106: 5.39405528e-02 sys_corr_107: -2.39137017e-01 - sys_corr_108: 1.44885706e-01 - sys_corr_109: 3.55485903e-01 - sys_corr_110: 2.34104156e-01 - sys_corr_111: 1.02112683e-01 - sys_corr_112: -3.20549896e-01 - sys_corr_113: 1.03869943e+00 - sys_corr_114: 2.72363917e-03 - sys_corr_115: -1.61401669e-01 + sys_corr_108: 3.55485903e-01 + sys_corr_109: -1.44885706e-01 + sys_corr_110: -1.02112683e-01 + sys_corr_111: -2.34104156e-01 + sys_corr_112: 3.20549896e-01 + sys_corr_113: -1.03869943e+00 + sys_corr_114: -2.72363917e-03 + sys_corr_115: 1.61401669e-01 sys_corr_116: 2.86702063e-02 - sys_corr_117: -2.24351436e-02 + sys_corr_117: 2.24351436e-02 sys_corr_118: 2.50565722e-01 sys_corr_119: -4.16246259e-03 sys_corr_120: 1.57953349e-02 sys_corr_121: 3.30170930e-03 - sys_corr_122: 2.43121474e-02 - sys_corr_123: 1.65692804e-02 - sys_corr_124: -1.52160043e-01 + sys_corr_122: 1.65692804e-02 + sys_corr_123: -2.43121474e-02 + sys_corr_124: 1.52160043e-01 sys_corr_125: -2.48606757e-02 sys_corr_126: 2.18816949e-03 - sys_corr_127: 1.65983052e-01 - sys_corr_128: -1.44154949e-01 - sys_corr_129: -1.34399031e+00 - sys_corr_130: 1.35402021e-02 - sys_corr_131: -1.95602599e-02 + sys_corr_127: -1.65983052e-01 + sys_corr_128: 1.44154949e-01 + sys_corr_129: 1.34399031e+00 + sys_corr_130: -1.35402021e-02 + sys_corr_131: 1.95602599e-02 sys_corr_132: 7.89058062e-02 stat: 0.0 luminosity: 2.89133819e+03 @@ -12738,17 +12738,17 @@ bins: sys_corr_6: -1.63708058e+02 sys_corr_7: 5.93241997e+01 sys_corr_8: 5.58371313e+01 - sys_corr_9: 1.70203728e+01 - sys_corr_10: 5.43595184e+01 + sys_corr_9: -1.70203728e+01 + sys_corr_10: -5.43595184e+01 sys_corr_11: 1.92154191e+01 - sys_corr_12: -8.01437487e+01 - sys_corr_13: 1.21246911e+02 + sys_corr_12: 8.01437487e+01 + sys_corr_13: -1.21246911e+02 sys_corr_14: -1.37190116e+01 sys_corr_15: -3.80648133e+01 sys_corr_16: 6.31382790e+01 - sys_corr_17: 1.69978524e+01 + sys_corr_17: -1.69978524e+01 sys_corr_18: -3.01107227e+01 - sys_corr_19: -2.13812292e+01 + sys_corr_19: 2.13812292e+01 sys_corr_20: -8.83729382e+01 sys_corr_21: -4.41611056e+01 sys_corr_22: -1.37949380e+01 @@ -12764,103 +12764,103 @@ bins: sys_corr_32: -1.68992451e-01 sys_corr_33: 1.46429340e-01 sys_corr_34: -2.38292179e+00 - sys_corr_35: -2.90641915e+00 - sys_corr_36: -1.90745566e+00 + sys_corr_35: 2.90641915e+00 + sys_corr_36: 1.90745566e+00 sys_corr_37: 1.56512765e+00 sys_corr_38: -2.87890237e-01 - sys_corr_39: -2.20044499e-02 - sys_corr_40: 9.55306655e-01 - sys_corr_41: -2.90288429e-02 + sys_corr_39: 2.20044499e-02 + sys_corr_40: -9.55306655e-01 + sys_corr_41: 2.90288429e-02 sys_corr_42: -9.94166100e-02 sys_corr_43: 1.53776554e+00 sys_corr_44: -3.19006686e+00 sys_corr_45: -1.60948581e+00 - sys_corr_46: 9.02424339e-01 - sys_corr_47: -6.88706542e-01 + sys_corr_46: -9.02424339e-01 + sys_corr_47: 6.88706542e-01 sys_corr_48: -4.62874152e+00 sys_corr_49: -6.27141516e-01 sys_corr_50: 9.00010418e+00 - sys_corr_51: -4.80711218e+00 - sys_corr_52: 2.91516240e+00 - sys_corr_53: 8.67117248e-01 + sys_corr_51: 4.80711218e+00 + sys_corr_52: -2.91516240e+00 + sys_corr_53: -8.67117248e-01 sys_corr_54: -2.34389843e+00 sys_corr_55: -1.01505040e+00 - sys_corr_56: -1.11298621e+00 + sys_corr_56: 1.11298621e+00 sys_corr_57: 8.58685115e-01 - sys_corr_58: 1.35180934e+00 + sys_corr_58: -1.35180934e+00 sys_corr_59: 2.22013373e+00 sys_corr_60: -6.30836801e-01 - sys_corr_61: 1.08506955e+00 - sys_corr_62: 4.13255840e-01 + sys_corr_61: -1.08506955e+00 + sys_corr_62: -4.13255840e-01 sys_corr_63: -1.19643544e-01 sys_corr_64: 1.71711469e+00 - sys_corr_65: -1.77498196e-01 - sys_corr_66: -2.57104530e-01 - sys_corr_67: -2.57356807e+00 + sys_corr_65: 1.77498196e-01 + sys_corr_66: 2.57104530e-01 + sys_corr_67: 2.57356807e+00 sys_corr_68: -9.09557931e-02 sys_corr_69: 7.49344653e-01 sys_corr_70: -1.17971544e+00 - sys_corr_71: -1.64156736e+00 - sys_corr_72: 6.76139409e-01 + sys_corr_71: 1.64156736e+00 + sys_corr_72: -6.76139409e-01 sys_corr_73: -1.90332046e-01 sys_corr_74: 8.54241900e-01 - sys_corr_75: -9.32282554e-01 - sys_corr_76: -1.09968644e+00 + sys_corr_75: 9.32282554e-01 + sys_corr_76: 1.09968644e+00 sys_corr_77: 6.41652917e-01 sys_corr_78: 3.44462096e-01 sys_corr_79: 5.23295731e-02 - sys_corr_80: -7.73391211e-01 + sys_corr_80: 7.73391211e-01 sys_corr_81: -5.80356062e-01 - sys_corr_82: 3.13676495e-01 + sys_corr_82: -3.13676495e-01 sys_corr_83: 1.61099216e+00 sys_corr_84: -3.63129119e-02 sys_corr_85: 8.84218822e-01 - sys_corr_86: 1.52703558e+00 - sys_corr_87: 3.81488425e-01 + sys_corr_86: -1.52703558e+00 + sys_corr_87: -3.81488425e-01 sys_corr_88: -3.56637214e+00 sys_corr_89: 6.79529259e-01 - sys_corr_90: -1.60646445e+00 - sys_corr_91: -6.55540468e-01 - sys_corr_92: 3.93666968e-01 + sys_corr_90: 6.55540468e-01 + sys_corr_91: 1.60646445e+00 + sys_corr_92: -3.93666968e-01 sys_corr_93: -7.43639590e-02 sys_corr_94: -4.01422346e-01 - sys_corr_95: -4.42707056e-01 + sys_corr_95: 4.42707056e-01 sys_corr_96: -8.30977308e-03 - sys_corr_97: -1.87953393e-01 - sys_corr_98: -1.13527211e-01 + sys_corr_97: 1.87953393e-01 + sys_corr_98: 1.13527211e-01 sys_corr_99: -2.27170327e-01 - sys_corr_100: 2.02612167e-01 - sys_corr_101: 2.51985449e-01 - sys_corr_102: -3.40338477e-01 - sys_corr_103: 9.52286501e-02 - sys_corr_104: 4.07058970e-01 - sys_corr_105: -1.74456352e-02 + sys_corr_100: 1.74456352e-02 + sys_corr_101: -2.02612167e-01 + sys_corr_102: -2.51985449e-01 + sys_corr_103: -3.40338477e-01 + sys_corr_104: -9.52286501e-02 + sys_corr_105: -4.07058970e-01 sys_corr_106: -2.60427421e-02 sys_corr_107: -2.67546082e-01 - sys_corr_108: 5.51490792e-01 - sys_corr_109: -1.84946367e-01 - sys_corr_110: 1.27701344e-01 - sys_corr_111: 1.53700754e-02 - sys_corr_112: 5.29447579e-01 - sys_corr_113: 4.43809595e-02 - sys_corr_114: 2.67972089e-03 - sys_corr_115: -1.29978545e+00 + sys_corr_108: -1.84946367e-01 + sys_corr_109: -5.51490792e-01 + sys_corr_110: -1.53700754e-02 + sys_corr_111: -1.27701344e-01 + sys_corr_112: -5.29447579e-01 + sys_corr_113: -4.43809595e-02 + sys_corr_114: -2.67972089e-03 + sys_corr_115: 1.29978545e+00 sys_corr_116: 9.89610256e-02 - sys_corr_117: -1.33794000e-03 + sys_corr_117: 1.33794000e-03 sys_corr_118: -1.39776595e-01 sys_corr_119: -2.31283581e-03 sys_corr_120: -2.12767589e-04 sys_corr_121: 4.33291845e-03 - sys_corr_122: 1.34645943e-02 - sys_corr_123: -6.72700786e-03 - sys_corr_124: 9.18976405e-02 + sys_corr_122: -6.72700786e-03 + sys_corr_123: -1.34645943e-02 + sys_corr_124: -9.18976405e-02 sys_corr_125: -8.60599287e-03 sys_corr_126: 2.15868300e-03 - sys_corr_127: 6.42189437e-02 - sys_corr_128: -4.82187944e-02 - sys_corr_129: 1.72703413e+00 - sys_corr_130: -2.88005623e-02 - sys_corr_131: 5.22520016e-03 + sys_corr_127: -6.42189437e-02 + sys_corr_128: 4.82187944e-02 + sys_corr_129: -1.72703413e+00 + sys_corr_130: 2.88005623e-02 + sys_corr_131: -5.22520016e-03 sys_corr_132: 7.59879034e-02 stat: 0.0 luminosity: 2.33892545e+03 @@ -12872,17 +12872,17 @@ bins: sys_corr_6: -2.59732790e+02 sys_corr_7: 1.43918847e+02 sys_corr_8: 1.23657418e+02 - sys_corr_9: 3.65047070e+01 - sys_corr_10: 5.62230723e+01 + sys_corr_9: -3.65047070e+01 + sys_corr_10: -5.62230723e+01 sys_corr_11: 1.75682723e+01 - sys_corr_12: -1.40093900e+02 - sys_corr_13: 1.53674494e+02 + sys_corr_12: 1.40093900e+02 + sys_corr_13: -1.53674494e+02 sys_corr_14: 4.71228298e+01 sys_corr_15: -6.64697518e+01 sys_corr_16: 6.34173423e+01 - sys_corr_17: 6.30860508e+01 + sys_corr_17: -6.30860508e+01 sys_corr_18: -5.34116096e+01 - sys_corr_19: -1.38774320e+02 + sys_corr_19: 1.38774320e+02 sys_corr_20: -2.59081090e+02 sys_corr_21: -1.25262534e+02 sys_corr_22: -5.20420698e+01 @@ -12898,103 +12898,103 @@ bins: sys_corr_32: 4.76026468e+00 sys_corr_33: 1.88209315e-01 sys_corr_34: -7.59798876e-01 - sys_corr_35: -8.68214708e-03 - sys_corr_36: -1.54438013e-01 + sys_corr_35: 8.68214707e-03 + sys_corr_36: 1.54438013e-01 sys_corr_37: -9.41411849e-01 sys_corr_38: 1.04322896e+00 - sys_corr_39: 1.27147017e+00 - sys_corr_40: 2.59455123e-01 - sys_corr_41: -5.32535786e-01 + sys_corr_39: -1.27147017e+00 + sys_corr_40: -2.59455123e-01 + sys_corr_41: 5.32535786e-01 sys_corr_42: 1.33886253e+00 sys_corr_43: 1.90707706e+00 sys_corr_44: 2.44420767e-01 sys_corr_45: 3.45435101e-02 - sys_corr_46: -1.41849373e+00 - sys_corr_47: -1.46651387e+00 + sys_corr_46: 1.41849373e+00 + sys_corr_47: 1.46651387e+00 sys_corr_48: 4.81487556e-02 sys_corr_49: -3.45610989e+00 sys_corr_50: 1.33714725e+00 - sys_corr_51: -3.43785320e-01 - sys_corr_52: -1.04143672e+00 - sys_corr_53: 2.06664051e+00 + sys_corr_51: 3.43785320e-01 + sys_corr_52: 1.04143672e+00 + sys_corr_53: -2.06664051e+00 sys_corr_54: -3.46400396e-01 sys_corr_55: 2.67367690e+00 - sys_corr_56: -6.90949214e-01 + sys_corr_56: 6.90949214e-01 sys_corr_57: 3.93131512e-01 - sys_corr_58: 5.46737603e-01 + sys_corr_58: -5.46737603e-01 sys_corr_59: 2.17847651e+00 sys_corr_60: -2.28207636e-01 - sys_corr_61: -8.12141892e-01 - sys_corr_62: -4.30254347e-01 + sys_corr_61: 8.12141892e-01 + sys_corr_62: 4.30254347e-01 sys_corr_63: 6.60155202e-01 sys_corr_64: -1.05699822e+00 - sys_corr_65: 3.96065576e-02 - sys_corr_66: -5.59580708e-01 - sys_corr_67: 4.63838918e-01 + sys_corr_65: -3.96065576e-02 + sys_corr_66: 5.59580708e-01 + sys_corr_67: -4.63838918e-01 sys_corr_68: -1.42836798e+00 sys_corr_69: 1.06303404e+00 sys_corr_70: -4.65164095e-01 - sys_corr_71: -7.27160681e-01 - sys_corr_72: 1.93243419e+00 + sys_corr_71: 7.27160681e-01 + sys_corr_72: -1.93243419e+00 sys_corr_73: -2.37347996e-01 sys_corr_74: 3.99060028e-01 - sys_corr_75: 8.98686202e-02 - sys_corr_76: 3.36883736e-01 + sys_corr_75: -8.98686202e-02 + sys_corr_76: -3.36883736e-01 sys_corr_77: 2.32105854e-01 sys_corr_78: -1.29138688e-01 sys_corr_79: -3.06597483e-02 - sys_corr_80: -4.14453783e-02 + sys_corr_80: 4.14453783e-02 sys_corr_81: 5.45251921e-01 - sys_corr_82: 1.40108658e-01 + sys_corr_82: -1.40108658e-01 sys_corr_83: 1.61486325e+00 sys_corr_84: 4.72653524e-01 sys_corr_85: -1.57533454e-01 - sys_corr_86: -8.93215104e-01 - sys_corr_87: 8.36549491e-01 + sys_corr_86: 8.93215104e-01 + sys_corr_87: -8.36549491e-01 sys_corr_88: 2.72896365e+00 sys_corr_89: 4.47576083e-01 - sys_corr_90: -1.11732378e+00 - sys_corr_91: -8.66932479e-01 - sys_corr_92: 3.37104432e-01 + sys_corr_90: 8.66932479e-01 + sys_corr_91: 1.11732378e+00 + sys_corr_92: -3.37104432e-01 sys_corr_93: -4.71397569e-02 sys_corr_94: -4.74760296e-01 - sys_corr_95: -8.06851889e-01 + sys_corr_95: 8.06851889e-01 sys_corr_96: -5.52417862e-03 - sys_corr_97: 1.23989641e-01 - sys_corr_98: 1.41351082e-01 + sys_corr_97: -1.23989641e-01 + sys_corr_98: -1.41351082e-01 sys_corr_99: 1.44976061e-01 - sys_corr_100: 2.16041198e-01 - sys_corr_101: 2.80452426e-01 - sys_corr_102: 3.02889579e-01 - sys_corr_103: -1.14345617e-01 - sys_corr_104: -1.76856121e-02 - sys_corr_105: 4.85195743e-01 + sys_corr_100: -4.85195743e-01 + sys_corr_101: -2.16041198e-01 + sys_corr_102: -2.80452426e-01 + sys_corr_103: 3.02889579e-01 + sys_corr_104: 1.14345617e-01 + sys_corr_105: 1.76856121e-02 sys_corr_106: 3.26906310e-01 sys_corr_107: 7.45215052e-01 - sys_corr_108: -4.55858935e-01 - sys_corr_109: 8.51895251e-01 - sys_corr_110: 5.78385742e-02 - sys_corr_111: 7.63612403e-02 - sys_corr_112: 1.34580457e-01 - sys_corr_113: 4.37770678e-01 - sys_corr_114: -6.10294156e-04 - sys_corr_115: 7.61547614e-01 + sys_corr_108: 8.51895251e-01 + sys_corr_109: 4.55858935e-01 + sys_corr_110: -7.63612403e-02 + sys_corr_111: -5.78385742e-02 + sys_corr_112: -1.34580457e-01 + sys_corr_113: -4.37770678e-01 + sys_corr_114: 6.10294156e-04 + sys_corr_115: -7.61547614e-01 sys_corr_116: -7.86092442e-02 - sys_corr_117: -1.28950217e-03 + sys_corr_117: 1.28950217e-03 sys_corr_118: -1.18965900e+00 sys_corr_119: -2.44061408e-04 sys_corr_120: 1.71596754e-02 sys_corr_121: -6.57175294e-03 - sys_corr_122: -7.13615519e-03 - sys_corr_123: 6.33520374e-03 - sys_corr_124: 1.63698694e-02 + sys_corr_122: 6.33520374e-03 + sys_corr_123: 7.13615519e-03 + sys_corr_124: -1.63698694e-02 sys_corr_125: 4.21317893e-04 sys_corr_126: -4.51240533e-03 - sys_corr_127: -9.54131377e-02 - sys_corr_128: -1.82530980e-01 - sys_corr_129: -2.90941913e-01 - sys_corr_130: 5.15770070e-03 - sys_corr_131: -3.37500991e-02 + sys_corr_127: 9.54131377e-02 + sys_corr_128: 1.82530980e-01 + sys_corr_129: 2.90941913e-01 + sys_corr_130: -5.15770070e-03 + sys_corr_131: 3.37500991e-02 sys_corr_132: 3.83356807e-02 stat: 0.0 luminosity: 1.80631713e+03 @@ -13006,17 +13006,17 @@ bins: sys_corr_6: -2.86486746e+02 sys_corr_7: 1.95053185e+02 sys_corr_8: 1.49053616e+02 - sys_corr_9: 3.52380779e+01 - sys_corr_10: 1.79919810e+01 + sys_corr_9: -3.52380779e+01 + sys_corr_10: -1.79919810e+01 sys_corr_11: 4.46460251e+00 - sys_corr_12: -1.45888612e+02 - sys_corr_13: 2.32834176e+02 + sys_corr_12: 1.45888612e+02 + sys_corr_13: -2.32834176e+02 sys_corr_14: 2.50214790e+01 sys_corr_15: -6.25003726e+01 sys_corr_16: 1.04350896e+02 - sys_corr_17: 1.06878523e+02 + sys_corr_17: -1.06878523e+02 sys_corr_18: -5.54069322e+01 - sys_corr_19: -1.37010372e+02 + sys_corr_19: 1.37010372e+02 sys_corr_20: -2.19318406e+02 sys_corr_21: -9.97721480e+01 sys_corr_22: -3.61280379e+01 @@ -13032,103 +13032,103 @@ bins: sys_corr_32: -3.22708663e+00 sys_corr_33: 4.91231550e+00 sys_corr_34: -2.89867301e+00 - sys_corr_35: -7.54923440e+00 - sys_corr_36: -7.35788420e+00 + sys_corr_35: 7.54923440e+00 + sys_corr_36: 7.35788420e+00 sys_corr_37: -3.33485762e+00 sys_corr_38: 4.51094970e+00 - sys_corr_39: 1.40044566e-01 - sys_corr_40: -9.59463819e-01 - sys_corr_41: 1.70999353e+00 + sys_corr_39: -1.40044566e-01 + sys_corr_40: 9.59463819e-01 + sys_corr_41: -1.70999353e+00 sys_corr_42: -2.78055135e+00 sys_corr_43: -1.98739516e+00 sys_corr_44: 1.01938872e+01 sys_corr_45: 1.17618160e+00 - sys_corr_46: -6.55070599e+00 - sys_corr_47: -1.39624041e+01 + sys_corr_46: 6.55070599e+00 + sys_corr_47: 1.39624041e+01 sys_corr_48: 2.92648701e+01 sys_corr_49: -1.17749711e+01 sys_corr_50: -2.08954308e+01 - sys_corr_51: 2.86497562e+01 - sys_corr_52: -1.56254623e+01 - sys_corr_53: 8.77116389e-01 + sys_corr_51: -2.86497562e+01 + sys_corr_52: 1.56254623e+01 + sys_corr_53: -8.77116389e-01 sys_corr_54: 1.06388776e+01 sys_corr_55: -9.91744647e+00 - sys_corr_56: -7.11869845e+00 + sys_corr_56: 7.11869845e+00 sys_corr_57: -1.38254345e+00 - sys_corr_58: -1.75599449e+00 + sys_corr_58: 1.75599449e+00 sys_corr_59: -2.41029620e+00 sys_corr_60: 5.01808478e-01 - sys_corr_61: 1.28554173e+00 - sys_corr_62: 4.43612126e-01 + sys_corr_61: -1.28554173e+00 + sys_corr_62: -4.43612126e-01 sys_corr_63: 1.30974908e+00 sys_corr_64: 1.00684700e+00 - sys_corr_65: 1.35807477e+00 - sys_corr_66: 4.11320816e-01 - sys_corr_67: -3.74788346e-01 + sys_corr_65: -1.35807477e+00 + sys_corr_66: -4.11320816e-01 + sys_corr_67: 3.74788346e-01 sys_corr_68: -2.82207682e+00 sys_corr_69: 7.90846906e-01 sys_corr_70: -4.52814318e-01 - sys_corr_71: -2.84043673e-01 - sys_corr_72: -7.39065592e-01 + sys_corr_71: 2.84043673e-01 + sys_corr_72: 7.39065592e-01 sys_corr_73: -1.68301918e-01 sys_corr_74: 2.56770714e-02 - sys_corr_75: 1.65595165e+00 - sys_corr_76: -1.79150193e+00 + sys_corr_75: -1.65595165e+00 + sys_corr_76: 1.79150193e+00 sys_corr_77: -7.66165076e-01 sys_corr_78: 5.91498735e-01 sys_corr_79: 2.89725641e-01 - sys_corr_80: -1.79655904e-01 + sys_corr_80: 1.79655904e-01 sys_corr_81: -6.20100209e-02 - sys_corr_82: -2.22278802e-01 + sys_corr_82: 2.22278802e-01 sys_corr_83: -1.95392784e-01 sys_corr_84: 1.48054918e+00 sys_corr_85: -1.19184655e+00 - sys_corr_86: 1.44173082e+00 - sys_corr_87: -1.53935834e-01 + sys_corr_86: -1.44173082e+00 + sys_corr_87: 1.53935834e-01 sys_corr_88: 2.60059766e+00 sys_corr_89: -6.52683769e-04 - sys_corr_90: -8.09188987e-01 - sys_corr_91: -1.53504678e+00 - sys_corr_92: -2.40085668e+00 + sys_corr_90: 1.53504678e+00 + sys_corr_91: 8.09188987e-01 + sys_corr_92: 2.40085668e+00 sys_corr_93: 3.96548847e-02 sys_corr_94: 4.58555375e-01 - sys_corr_95: 1.82867075e+00 + sys_corr_95: -1.82867075e+00 sys_corr_96: -2.23563566e-01 - sys_corr_97: 1.66271056e+00 - sys_corr_98: 7.23477195e-01 + sys_corr_97: -1.66271056e+00 + sys_corr_98: -7.23477195e-01 sys_corr_99: 7.14430781e-01 - sys_corr_100: -7.63527918e-01 - sys_corr_101: -1.14684352e+00 - sys_corr_102: 9.65469900e-02 - sys_corr_103: -4.80085787e-01 - sys_corr_104: -1.07265801e+00 - sys_corr_105: -3.00163160e-01 + sys_corr_100: 3.00163160e-01 + sys_corr_101: 7.63527918e-01 + sys_corr_102: 1.14684352e+00 + sys_corr_103: 9.65469900e-02 + sys_corr_104: 4.80085787e-01 + sys_corr_105: 1.07265801e+00 sys_corr_106: 8.59724995e-02 sys_corr_107: 5.77452580e-01 - sys_corr_108: -5.98238976e-01 - sys_corr_109: -7.92250562e-01 - sys_corr_110: 4.44755013e-02 - sys_corr_111: -9.07424133e-01 - sys_corr_112: -4.46867983e-01 - sys_corr_113: 2.07329273e-01 - sys_corr_114: -2.69016881e-03 - sys_corr_115: 1.69125287e-02 + sys_corr_108: -7.92250562e-01 + sys_corr_109: 5.98238976e-01 + sys_corr_110: 9.07424133e-01 + sys_corr_111: -4.44755013e-02 + sys_corr_112: 4.46867983e-01 + sys_corr_113: -2.07329273e-01 + sys_corr_114: 2.69016881e-03 + sys_corr_115: -1.69125287e-02 sys_corr_116: 6.85641361e-04 - sys_corr_117: 7.63339011e-03 + sys_corr_117: -7.63339011e-03 sys_corr_118: 1.11624594e+00 sys_corr_119: -1.69560765e-03 sys_corr_120: -2.04800020e-02 sys_corr_121: -2.03985155e-03 - sys_corr_122: 1.26574793e-01 - sys_corr_123: 6.83285096e-02 - sys_corr_124: -1.85208009e-02 + sys_corr_122: 6.83285096e-02 + sys_corr_123: -1.26574793e-01 + sys_corr_124: 1.85208009e-02 sys_corr_125: -5.84804443e-02 sys_corr_126: 8.38383783e-02 - sys_corr_127: 8.42345779e-02 - sys_corr_128: 1.39305937e-01 - sys_corr_129: 8.11419289e-02 - sys_corr_130: 9.88484553e-02 - sys_corr_131: 1.99391657e-02 + sys_corr_127: -8.42345779e-02 + sys_corr_128: -1.39305937e-01 + sys_corr_129: -8.11419289e-02 + sys_corr_130: -9.88484553e-02 + sys_corr_131: -1.99391657e-02 sys_corr_132: -8.52762902e-01 stat: 0.0 luminosity: 1.25555397e+03 @@ -13140,17 +13140,17 @@ bins: sys_corr_6: -2.59040486e+02 sys_corr_7: 2.47271023e+02 sys_corr_8: 1.33966123e+02 - sys_corr_9: 3.89133008e+01 - sys_corr_10: 4.76784845e+00 + sys_corr_9: -3.89133008e+01 + sys_corr_10: -4.76784845e+00 sys_corr_11: -1.33290363e+01 - sys_corr_12: -1.70189008e+02 - sys_corr_13: 2.27949666e+02 + sys_corr_12: 1.70189008e+02 + sys_corr_13: -2.27949666e+02 sys_corr_14: 3.76056568e+01 sys_corr_15: -6.82342662e+01 sys_corr_16: 1.11879265e+02 - sys_corr_17: 4.23850447e+01 + sys_corr_17: -4.23850447e+01 sys_corr_18: -5.99858062e+01 - sys_corr_19: -7.94066784e+01 + sys_corr_19: 7.94066784e+01 sys_corr_20: -1.68764753e+02 sys_corr_21: -2.25819982e+00 sys_corr_22: 1.01281549e+02 @@ -13166,103 +13166,103 @@ bins: sys_corr_32: -3.72393898e+00 sys_corr_33: 4.23722904e+00 sys_corr_34: 5.88576019e+00 - sys_corr_35: 1.18637699e+01 - sys_corr_36: 1.51509249e+01 + sys_corr_35: -1.18637699e+01 + sys_corr_36: -1.51509249e+01 sys_corr_37: 3.22707762e+00 sys_corr_38: -2.20407807e+00 - sys_corr_39: 4.22236245e+00 - sys_corr_40: 1.20043810e+00 - sys_corr_41: -3.70520430e+00 + sys_corr_39: -4.22236245e+00 + sys_corr_40: -1.20043810e+00 + sys_corr_41: 3.70520430e+00 sys_corr_42: -7.46477442e+00 sys_corr_43: -2.24686769e+00 sys_corr_44: 1.44275334e+01 sys_corr_45: 2.34091408e+00 - sys_corr_46: 5.35665426e+00 - sys_corr_47: -9.72941462e+00 + sys_corr_46: -5.35665426e+00 + sys_corr_47: 9.72941462e+00 sys_corr_48: 2.37594234e+01 sys_corr_49: -7.41806940e+00 sys_corr_50: -2.90074583e+01 - sys_corr_51: 1.36363419e+01 - sys_corr_52: -1.29122484e+01 - sys_corr_53: -5.46126581e+00 + sys_corr_51: -1.36363419e+01 + sys_corr_52: 1.29122484e+01 + sys_corr_53: 5.46126581e+00 sys_corr_54: -4.94237285e-01 sys_corr_55: -1.41146581e+00 - sys_corr_56: 5.31111522e-01 + sys_corr_56: -5.31111522e-01 sys_corr_57: -1.00039840e+00 - sys_corr_58: -3.83942132e-01 + sys_corr_58: 3.83942132e-01 sys_corr_59: 4.05332801e-01 sys_corr_60: 1.49232487e-01 - sys_corr_61: -1.48614915e+00 - sys_corr_62: -6.52637029e-01 + sys_corr_61: 1.48614915e+00 + sys_corr_62: 6.52637029e-01 sys_corr_63: -4.29503193e+00 sys_corr_64: 4.07700726e-01 - sys_corr_65: -1.59768524e-01 - sys_corr_66: 3.02009149e-01 - sys_corr_67: 2.37212128e+00 + sys_corr_65: 1.59768524e-01 + sys_corr_66: -3.02009149e-01 + sys_corr_67: -2.37212128e+00 sys_corr_68: 1.98152187e+00 sys_corr_69: -2.43067877e+00 sys_corr_70: 4.79152531e-01 - sys_corr_71: 2.51627099e+00 - sys_corr_72: -2.78211158e-01 + sys_corr_71: -2.51627099e+00 + sys_corr_72: 2.78211158e-01 sys_corr_73: 1.13158609e+00 sys_corr_74: -1.09409430e+00 - sys_corr_75: -1.44700731e-01 - sys_corr_76: 3.05684817e-02 + sys_corr_75: 1.44700731e-01 + sys_corr_76: -3.05684817e-02 sys_corr_77: 1.31034265e+00 sys_corr_78: -7.67700297e-01 sys_corr_79: -1.45265669e-01 - sys_corr_80: 1.44514412e+00 + sys_corr_80: -1.44514412e+00 sys_corr_81: -3.97211901e-01 - sys_corr_82: -3.64610924e-01 + sys_corr_82: 3.64610924e-01 sys_corr_83: -9.92552425e-01 sys_corr_84: 8.91048938e-01 sys_corr_85: -5.96106177e-01 - sys_corr_86: -4.58136508e-01 - sys_corr_87: -5.02687523e-02 + sys_corr_86: 4.58136508e-01 + sys_corr_87: 5.02687523e-02 sys_corr_88: -2.48255797e-01 sys_corr_89: -1.06632611e+00 - sys_corr_90: 9.51889344e-01 - sys_corr_91: -3.06890222e-01 - sys_corr_92: -2.46834443e-01 + sys_corr_90: 3.06890222e-01 + sys_corr_91: -9.51889344e-01 + sys_corr_92: 2.46834443e-01 sys_corr_93: 3.07532255e-01 sys_corr_94: 2.73786840e-01 - sys_corr_95: -1.59090769e+00 + sys_corr_95: 1.59090769e+00 sys_corr_96: 1.04824455e-01 - sys_corr_97: -1.85610381e+00 - sys_corr_98: -1.08528819e+00 + sys_corr_97: 1.85610381e+00 + sys_corr_98: 1.08528819e+00 sys_corr_99: -1.03656284e+00 - sys_corr_100: 1.49479997e+00 - sys_corr_101: 2.39241243e+00 - sys_corr_102: 3.14662319e-01 - sys_corr_103: 9.24604101e-01 - sys_corr_104: 1.41798980e+00 - sys_corr_105: 2.19143165e+00 + sys_corr_100: -2.19143165e+00 + sys_corr_101: -1.49479997e+00 + sys_corr_102: -2.39241243e+00 + sys_corr_103: 3.14662319e-01 + sys_corr_104: -9.24604101e-01 + sys_corr_105: -1.41798980e+00 sys_corr_106: 1.59387933e+00 sys_corr_107: 1.57941317e+00 - sys_corr_108: 2.37877560e-02 - sys_corr_109: 5.14617116e-01 - sys_corr_110: -5.71393726e-01 - sys_corr_111: -3.69817711e-01 - sys_corr_112: -3.28654214e-01 - sys_corr_113: -2.58084549e-01 - sys_corr_114: -5.99420727e-03 - sys_corr_115: 3.13952047e-01 + sys_corr_108: 5.14617116e-01 + sys_corr_109: -2.37877560e-02 + sys_corr_110: 3.69817711e-01 + sys_corr_111: 5.71393726e-01 + sys_corr_112: 3.28654214e-01 + sys_corr_113: 2.58084549e-01 + sys_corr_114: 5.99420727e-03 + sys_corr_115: -3.13952047e-01 sys_corr_116: -4.32505594e-03 - sys_corr_117: 2.79094549e-02 + sys_corr_117: -2.79094549e-02 sys_corr_118: -9.66055653e-02 sys_corr_119: -3.78839807e-03 sys_corr_120: -1.16829818e-02 sys_corr_121: -2.71303756e-02 - sys_corr_122: -1.69370391e-01 - sys_corr_123: -7.65330814e-02 - sys_corr_124: 1.28318713e-02 + sys_corr_122: -7.65330814e-02 + sys_corr_123: 1.69370391e-01 + sys_corr_124: -1.28318713e-02 sys_corr_125: 5.35913712e-02 sys_corr_126: 4.19147129e-03 - sys_corr_127: -7.41506728e-02 - sys_corr_128: -6.30099299e-01 - sys_corr_129: -4.38783750e-01 - sys_corr_130: 1.38814764e-01 - sys_corr_131: -1.99732023e-02 + sys_corr_127: 7.41506728e-02 + sys_corr_128: 6.30099299e-01 + sys_corr_129: 4.38783750e-01 + sys_corr_130: -1.38814764e-01 + sys_corr_131: 1.99732023e-02 sys_corr_132: 9.95436310e-01 stat: 0.0 luminosity: 7.35952668e+02 @@ -13274,17 +13274,17 @@ bins: sys_corr_6: -9.22901895e+01 sys_corr_7: 1.01217132e+02 sys_corr_8: 5.35665673e+01 - sys_corr_9: 1.31472793e+01 - sys_corr_10: -3.59012075e+00 + sys_corr_9: -1.31472793e+01 + sys_corr_10: 3.59012075e+00 sys_corr_11: -1.05044419e+01 - sys_corr_12: -5.77124827e+01 - sys_corr_13: 7.72926185e+01 + sys_corr_12: 5.77124827e+01 + sys_corr_13: -7.72926185e+01 sys_corr_14: 1.94165022e+01 sys_corr_15: -3.20915668e+01 sys_corr_16: 4.04047368e+01 - sys_corr_17: 1.43039844e+01 + sys_corr_17: -1.43039844e+01 sys_corr_18: -2.07915271e+01 - sys_corr_19: 5.01264108e-01 + sys_corr_19: -5.01264108e-01 sys_corr_20: -3.11878786e+01 sys_corr_21: 3.19977920e+00 sys_corr_22: 3.58161200e+01 @@ -13300,103 +13300,103 @@ bins: sys_corr_32: -8.12790733e+00 sys_corr_33: -1.30322456e+01 sys_corr_34: -1.73394918e+01 - sys_corr_35: -1.32345883e+01 - sys_corr_36: -2.88579575e+01 + sys_corr_35: 1.32345883e+01 + sys_corr_36: 2.88579575e+01 sys_corr_37: -1.22085544e+01 sys_corr_38: -1.11487700e+01 - sys_corr_39: -1.18252381e+01 - sys_corr_40: -1.02301454e+01 - sys_corr_41: 9.75746076e+00 + sys_corr_39: 1.18252381e+01 + sys_corr_40: 1.02301454e+01 + sys_corr_41: -9.75746076e+00 sys_corr_42: 3.26360909e+01 sys_corr_43: 4.93021639e+00 sys_corr_44: -7.88141572e+01 sys_corr_45: -8.79719901e+00 - sys_corr_46: 5.10674064e+00 - sys_corr_47: 8.43646828e+01 + sys_corr_46: -5.10674064e+00 + sys_corr_47: -8.43646828e+01 sys_corr_48: -1.69678419e+02 sys_corr_49: 6.55730605e+01 sys_corr_50: 1.40513463e+02 - sys_corr_51: -1.51270110e+02 - sys_corr_52: 1.05401961e+02 - sys_corr_53: 8.02633468e+00 + sys_corr_51: 1.51270110e+02 + sys_corr_52: -1.05401961e+02 + sys_corr_53: -8.02633468e+00 sys_corr_54: -3.21560715e+01 sys_corr_55: 3.48307551e+01 - sys_corr_56: 2.70063979e+01 + sys_corr_56: -2.70063979e+01 sys_corr_57: 7.82413926e+00 - sys_corr_58: 4.70330555e+00 + sys_corr_58: -4.70330555e+00 sys_corr_59: 4.22242113e-01 sys_corr_60: -3.54416557e-01 - sys_corr_61: -7.29529319e+00 - sys_corr_62: 1.42953412e+00 + sys_corr_61: 7.29529319e+00 + sys_corr_62: -1.42953412e+00 sys_corr_63: 1.13348456e+00 sys_corr_64: -4.01581787e+00 - sys_corr_65: -1.82821523e+00 - sys_corr_66: -5.67467917e+00 - sys_corr_67: 1.10704379e+00 + sys_corr_65: 1.82821523e+00 + sys_corr_66: 5.67467917e+00 + sys_corr_67: -1.10704379e+00 sys_corr_68: 7.31725260e+00 sys_corr_69: 1.90697980e+00 sys_corr_70: 5.43513885e+00 - sys_corr_71: -1.67055216e+00 - sys_corr_72: 4.04926470e+00 + sys_corr_71: 1.67055216e+00 + sys_corr_72: -4.04926470e+00 sys_corr_73: 2.61636277e-01 sys_corr_74: -1.90137641e+00 - sys_corr_75: -2.76576211e+00 - sys_corr_76: -1.28829265e+00 + sys_corr_75: 2.76576211e+00 + sys_corr_76: 1.28829265e+00 sys_corr_77: 1.95794202e+00 sys_corr_78: -3.11252566e+00 sys_corr_79: -1.28880669e+00 - sys_corr_80: 3.32743083e+00 + sys_corr_80: -3.32743083e+00 sys_corr_81: -2.30659935e+00 - sys_corr_82: 2.24588784e+00 + sys_corr_82: -2.24588784e+00 sys_corr_83: -1.69645294e-01 sys_corr_84: 1.29115278e+00 sys_corr_85: -3.03794130e-02 - sys_corr_86: -1.49745435e+00 - sys_corr_87: 2.43020670e+00 + sys_corr_86: 1.49745435e+00 + sys_corr_87: -2.43020670e+00 sys_corr_88: -5.68244830e+00 sys_corr_89: 3.43626838e+00 - sys_corr_90: 1.81031992e+00 - sys_corr_91: 5.23246025e-01 - sys_corr_92: 3.60430202e+00 + sys_corr_90: -5.23246025e-01 + sys_corr_91: -1.81031992e+00 + sys_corr_92: -3.60430202e+00 sys_corr_93: 4.68571429e-01 sys_corr_94: 9.44878957e-01 - sys_corr_95: -2.93039354e+00 + sys_corr_95: 2.93039354e+00 sys_corr_96: 4.08730821e-02 - sys_corr_97: -3.25088463e+00 - sys_corr_98: -1.43244162e+00 + sys_corr_97: 3.25088463e+00 + sys_corr_98: 1.43244162e+00 sys_corr_99: -2.02954581e+00 - sys_corr_100: 2.29385577e+00 - sys_corr_101: 3.20285125e+00 - sys_corr_102: -2.75622983e+00 - sys_corr_103: 1.93241089e+00 - sys_corr_104: 3.43027932e+00 - sys_corr_105: 2.17637576e+00 + sys_corr_100: -2.17637576e+00 + sys_corr_101: -2.29385577e+00 + sys_corr_102: -3.20285125e+00 + sys_corr_103: -2.75622983e+00 + sys_corr_104: -1.93241089e+00 + sys_corr_105: -3.43027932e+00 sys_corr_106: 1.62620572e+00 sys_corr_107: 1.55943389e+00 - sys_corr_108: 1.01735514e+00 - sys_corr_109: 8.44502529e-01 - sys_corr_110: -1.26815804e+00 - sys_corr_111: 1.01187666e+00 - sys_corr_112: 3.07804934e-01 - sys_corr_113: -1.03348368e-02 - sys_corr_114: -5.35841059e-03 - sys_corr_115: 2.32971281e-01 + sys_corr_108: 8.44502529e-01 + sys_corr_109: -1.01735514e+00 + sys_corr_110: -1.01187666e+00 + sys_corr_111: 1.26815804e+00 + sys_corr_112: -3.07804934e-01 + sys_corr_113: 1.03348368e-02 + sys_corr_114: 5.35841059e-03 + sys_corr_115: -2.32971281e-01 sys_corr_116: -7.76087624e-03 - sys_corr_117: 4.78402868e-02 + sys_corr_117: -4.78402868e-02 sys_corr_118: -7.12700899e-01 sys_corr_119: 4.10212020e-03 sys_corr_120: -5.84131642e-02 sys_corr_121: 2.06746161e-02 - sys_corr_122: -4.06088822e-01 - sys_corr_123: -2.77056500e-01 - sys_corr_124: 8.54122438e-02 + sys_corr_122: -2.77056500e-01 + sys_corr_123: 4.06088822e-01 + sys_corr_124: -8.54122438e-02 sys_corr_125: 2.26992017e-01 sys_corr_126: -3.68113793e-01 - sys_corr_127: -2.97186036e-01 - sys_corr_128: 5.90162132e-01 - sys_corr_129: 5.31145242e-01 - sys_corr_130: -6.28013448e-01 - sys_corr_131: 1.05556336e-01 + sys_corr_127: 2.97186036e-01 + sys_corr_128: -5.90162132e-01 + sys_corr_129: -5.31145242e-01 + sys_corr_130: 6.28013448e-01 + sys_corr_131: -1.05556336e-01 sys_corr_132: -2.12035474e-01 stat: 0.0 luminosity: 2.33737042e+02 @@ -13408,17 +13408,17 @@ bins: sys_corr_6: 7.54337553e+00 sys_corr_7: 9.17500903e+00 sys_corr_8: -1.08165950e+00 - sys_corr_9: -1.87902513e+01 - sys_corr_10: -2.21663249e+00 + sys_corr_9: 1.87902513e+01 + sys_corr_10: 2.21663249e+00 sys_corr_11: -4.56962076e+00 - sys_corr_12: -8.74631059e+00 - sys_corr_13: 3.89751012e+00 + sys_corr_12: 8.74631059e+00 + sys_corr_13: -3.89751012e+00 sys_corr_14: 2.38344547e+00 sys_corr_15: 5.08198429e+00 sys_corr_16: 1.15361208e+01 - sys_corr_17: -2.44547631e+00 + sys_corr_17: 2.44547631e+00 sys_corr_18: 4.14669407e+00 - sys_corr_19: -1.54877532e+00 + sys_corr_19: 1.54877532e+00 sys_corr_20: -8.49155737e-01 sys_corr_21: -4.88758819e-01 sys_corr_22: 5.69255450e+00 @@ -13434,103 +13434,103 @@ bins: sys_corr_32: 6.37476439e-01 sys_corr_33: 3.04312914e-01 sys_corr_34: -3.06904349e+00 - sys_corr_35: 1.79019139e-01 - sys_corr_36: 3.33600161e-02 + sys_corr_35: -1.79019139e-01 + sys_corr_36: -3.33600161e-02 sys_corr_37: -1.75487125e+00 sys_corr_38: -7.48079180e-01 - sys_corr_39: 3.82270599e-01 - sys_corr_40: 8.08635830e-01 - sys_corr_41: -1.07884313e+00 + sys_corr_39: -3.82270599e-01 + sys_corr_40: -8.08635830e-01 + sys_corr_41: 1.07884313e+00 sys_corr_42: 3.79452293e-01 sys_corr_43: -9.84029906e-01 sys_corr_44: 1.32808284e+00 sys_corr_45: 5.73011825e-01 - sys_corr_46: -1.16854986e+00 - sys_corr_47: -8.96361526e-01 + sys_corr_46: 1.16854986e+00 + sys_corr_47: 8.96361526e-01 sys_corr_48: 2.86556455e+00 sys_corr_49: -3.88771380e+00 sys_corr_50: 4.94340824e-01 - sys_corr_51: -1.17060265e+00 - sys_corr_52: -1.60864323e+00 - sys_corr_53: -6.84811769e-01 + sys_corr_51: 1.17060265e+00 + sys_corr_52: 1.60864323e+00 + sys_corr_53: 6.84811769e-01 sys_corr_54: -4.81712997e+00 sys_corr_55: -2.26926727e+00 - sys_corr_56: -1.53048422e+00 + sys_corr_56: 1.53048422e+00 sys_corr_57: 6.76002212e-02 - sys_corr_58: 2.50113276e+00 + sys_corr_58: -2.50113276e+00 sys_corr_59: 2.05469070e+00 sys_corr_60: -1.18045081e+00 - sys_corr_61: -4.01180225e-01 - sys_corr_62: -1.48478029e+00 + sys_corr_61: 4.01180225e-01 + sys_corr_62: 1.48478029e+00 sys_corr_63: 1.30300930e-01 sys_corr_64: 2.35836093e+00 - sys_corr_65: 3.85711375e+00 - sys_corr_66: 4.18632640e-01 - sys_corr_67: -1.19440068e+00 - sys_corr_68: -1.67252098e-04 + sys_corr_65: -3.85711375e+00 + sys_corr_66: -4.18632640e-01 + sys_corr_67: 1.19440068e+00 + sys_corr_68: -1.67252097e-04 sys_corr_69: 2.22724965e+00 sys_corr_70: 2.41273676e+00 - sys_corr_71: -2.01120674e-01 - sys_corr_72: -1.35485395e+00 + sys_corr_71: 2.01120674e-01 + sys_corr_72: 1.35485395e+00 sys_corr_73: -7.46926207e+00 sys_corr_74: -1.74634171e+00 - sys_corr_75: -1.68837044e+00 - sys_corr_76: -2.23890404e+00 + sys_corr_75: 1.68837044e+00 + sys_corr_76: 2.23890404e+00 sys_corr_77: -3.33943080e+00 sys_corr_78: 2.38407524e+00 sys_corr_79: 3.41590947e+00 - sys_corr_80: 3.65463113e+00 + sys_corr_80: -3.65463113e+00 sys_corr_81: 3.34601562e+00 - sys_corr_82: 2.03363737e+00 + sys_corr_82: -2.03363737e+00 sys_corr_83: 6.58210808e+00 sys_corr_84: -4.72574535e+01 sys_corr_85: 3.45548023e+01 - sys_corr_86: 3.13229411e+00 - sys_corr_87: 5.00782722e-01 + sys_corr_86: -3.13229411e+00 + sys_corr_87: -5.00782722e-01 sys_corr_88: 2.15732195e+00 sys_corr_89: 2.20242664e+00 - sys_corr_90: 1.37077594e+01 - sys_corr_91: 5.72381083e+01 - sys_corr_92: -5.13973562e+00 + sys_corr_90: -5.72381083e+01 + sys_corr_91: -1.37077594e+01 + sys_corr_92: 5.13973562e+00 sys_corr_93: 2.74759309e+01 sys_corr_94: 2.35005524e+01 - sys_corr_95: -1.31935263e+01 + sys_corr_95: 1.31935263e+01 sys_corr_96: 1.09148549e+02 - sys_corr_97: -5.55350454e+01 - sys_corr_98: 3.43566660e+01 + sys_corr_97: 5.55350454e+01 + sys_corr_98: -3.43566660e+01 sys_corr_99: 5.19137860e+00 - sys_corr_100: 6.24264341e-02 - sys_corr_101: -2.53072084e+00 - sys_corr_102: -3.54409320e-01 - sys_corr_103: -1.23075402e+00 - sys_corr_104: -1.57062551e+01 - sys_corr_105: 1.12844121e+00 + sys_corr_100: -1.12844121e+00 + sys_corr_101: -6.24264341e-02 + sys_corr_102: 2.53072084e+00 + sys_corr_103: -3.54409320e-01 + sys_corr_104: 1.23075402e+00 + sys_corr_105: 1.57062551e+01 sys_corr_106: 8.20278980e-01 sys_corr_107: 2.66715150e+00 - sys_corr_108: -1.31946258e+00 - sys_corr_109: -6.77133080e-01 - sys_corr_110: -1.92274533e+01 - sys_corr_111: -1.55437872e+00 - sys_corr_112: -7.55709640e-01 - sys_corr_113: -7.63740245e-01 - sys_corr_114: 1.21559465e-03 - sys_corr_115: -6.91865099e-01 + sys_corr_108: -6.77133080e-01 + sys_corr_109: 1.31946258e+00 + sys_corr_110: 1.55437872e+00 + sys_corr_111: 1.92274533e+01 + sys_corr_112: 7.55709640e-01 + sys_corr_113: 7.63740245e-01 + sys_corr_114: -1.21559465e-03 + sys_corr_115: 6.91865099e-01 sys_corr_116: -1.13923620e+00 - sys_corr_117: -8.87876109e-01 + sys_corr_117: 8.87876109e-01 sys_corr_118: -6.71051193e-02 sys_corr_119: -1.16352694e-02 sys_corr_120: 5.38976440e-01 sys_corr_121: -6.24401901e-03 - sys_corr_122: 9.71722033e-02 - sys_corr_123: -5.82444200e-03 - sys_corr_124: -4.23896960e-01 + sys_corr_122: -5.82444200e-03 + sys_corr_123: -9.71722033e-02 + sys_corr_124: 4.23896960e-01 sys_corr_125: -2.87410455e-01 sys_corr_126: -9.78774116e-03 - sys_corr_127: 5.11908691e+00 - sys_corr_128: 2.13765423e-01 - sys_corr_129: -2.20081053e-01 - sys_corr_130: -1.74013596e-02 - sys_corr_131: -3.11364565e-01 + sys_corr_127: -5.11908691e+00 + sys_corr_128: -2.13765423e-01 + sys_corr_129: 2.20081053e-01 + sys_corr_130: 1.74013596e-02 + sys_corr_131: 3.11364565e-01 sys_corr_132: 2.52988308e-01 stat: 0.0 luminosity: 7.64296940e+01 @@ -13542,17 +13542,17 @@ bins: sys_corr_6: 7.75910602e+00 sys_corr_7: 8.76466412e+00 sys_corr_8: -8.61910889e+00 - sys_corr_9: -9.79205096e+00 - sys_corr_10: -1.82104604e+00 + sys_corr_9: 9.79205096e+00 + sys_corr_10: 1.82104604e+00 sys_corr_11: -9.09120795e+00 - sys_corr_12: -3.06332450e+00 - sys_corr_13: 1.06770249e+01 + sys_corr_12: 3.06332450e+00 + sys_corr_13: -1.06770249e+01 sys_corr_14: -3.29467811e+00 sys_corr_15: -9.75516364e+00 sys_corr_16: -8.62037491e+00 - sys_corr_17: 2.77949427e+00 + sys_corr_17: -2.77949427e+00 sys_corr_18: -4.36870064e+00 - sys_corr_19: 1.04673153e-01 + sys_corr_19: -1.04673153e-01 sys_corr_20: 2.39816831e-01 sys_corr_21: -5.73707261e-01 sys_corr_22: 7.86986000e+00 @@ -13568,103 +13568,103 @@ bins: sys_corr_32: 7.76544114e-01 sys_corr_33: 2.88220902e-01 sys_corr_34: -2.67544948e+00 - sys_corr_35: 9.22734445e-02 - sys_corr_36: -2.01229394e-01 + sys_corr_35: -9.22734445e-02 + sys_corr_36: 2.01229394e-01 sys_corr_37: -1.78994020e+00 sys_corr_38: -5.80716334e-01 - sys_corr_39: 2.38184879e-01 - sys_corr_40: 5.84369279e-01 - sys_corr_41: -1.14379910e+00 + sys_corr_39: -2.38184879e-01 + sys_corr_40: -5.84369279e-01 + sys_corr_41: 1.14379910e+00 sys_corr_42: 2.65622517e-01 sys_corr_43: -9.60723108e-01 sys_corr_44: 1.36579208e+00 sys_corr_45: 4.68709207e-03 - sys_corr_46: -5.74918451e-01 - sys_corr_47: -5.02110433e-01 + sys_corr_46: 5.74918451e-01 + sys_corr_47: 5.02110433e-01 sys_corr_48: 2.33965432e+00 sys_corr_49: -3.59514681e+00 sys_corr_50: 3.86073902e-01 - sys_corr_51: -1.01367518e+00 - sys_corr_52: -1.42898126e+00 - sys_corr_53: -5.95838918e-01 + sys_corr_51: 1.01367518e+00 + sys_corr_52: 1.42898126e+00 + sys_corr_53: 5.95838918e-01 sys_corr_54: -5.09290465e+00 sys_corr_55: -2.43038513e+00 - sys_corr_56: -1.35052708e+00 + sys_corr_56: 1.35052708e+00 sys_corr_57: -1.82687417e-01 - sys_corr_58: 2.79650811e+00 + sys_corr_58: -2.79650811e+00 sys_corr_59: 1.72491597e+00 sys_corr_60: -9.27576915e-01 - sys_corr_61: 1.83818581e-01 - sys_corr_62: -1.52596379e+00 + sys_corr_61: -1.83818581e-01 + sys_corr_62: 1.52596379e+00 sys_corr_63: 1.48082934e-01 sys_corr_64: 1.94600490e+00 - sys_corr_65: 3.37344566e+00 - sys_corr_66: 3.52223913e-01 - sys_corr_67: -1.21609664e+00 + sys_corr_65: -3.37344566e+00 + sys_corr_66: -3.52223913e-01 + sys_corr_67: 1.21609664e+00 sys_corr_68: 9.94343903e-02 sys_corr_69: 1.74442972e+00 sys_corr_70: 2.60227309e+00 - sys_corr_71: -4.57470199e-01 - sys_corr_72: -1.48228463e+00 + sys_corr_71: 4.57470199e-01 + sys_corr_72: 1.48228463e+00 sys_corr_73: -7.08653251e+00 sys_corr_74: -1.54752416e+00 - sys_corr_75: -5.70117437e-01 - sys_corr_76: -1.94492840e+00 + sys_corr_75: 5.70117437e-01 + sys_corr_76: 1.94492840e+00 sys_corr_77: -1.85495719e+00 sys_corr_78: 2.30035475e+00 sys_corr_79: 3.41458111e+00 - sys_corr_80: 3.91707844e+00 + sys_corr_80: -3.91707844e+00 sys_corr_81: 3.61217319e+00 - sys_corr_82: 2.51538431e+00 + sys_corr_82: -2.51538431e+00 sys_corr_83: 6.77503693e+00 sys_corr_84: -4.50542895e+01 sys_corr_85: 3.20744448e+01 - sys_corr_86: 3.28068762e+00 - sys_corr_87: -9.08108853e-01 + sys_corr_86: -3.28068762e+00 + sys_corr_87: 9.08108853e-01 sys_corr_88: 2.49636701e+00 sys_corr_89: 1.76644118e+00 - sys_corr_90: 1.24220001e+01 - sys_corr_91: 5.27832330e+01 - sys_corr_92: -4.17979837e+00 + sys_corr_90: -5.27832330e+01 + sys_corr_91: -1.24220001e+01 + sys_corr_92: 4.17979837e+00 sys_corr_93: -8.65019727e+01 sys_corr_94: 3.24010508e+01 - sys_corr_95: -5.89395497e+00 + sys_corr_95: 5.89395497e+00 sys_corr_96: -7.26164603e+01 - sys_corr_97: -6.43213309e+01 - sys_corr_98: 1.99299574e+01 + sys_corr_97: 6.43213309e+01 + sys_corr_98: -1.99299574e+01 sys_corr_99: 9.98619514e+00 - sys_corr_100: -1.04636971e+00 - sys_corr_101: -1.87725063e+00 - sys_corr_102: -1.37796404e+00 - sys_corr_103: -2.69142421e+00 - sys_corr_104: -1.67322821e+01 - sys_corr_105: 5.40120635e-01 + sys_corr_100: -5.40120635e-01 + sys_corr_101: 1.04636971e+00 + sys_corr_102: 1.87725063e+00 + sys_corr_103: -1.37796404e+00 + sys_corr_104: 2.69142421e+00 + sys_corr_105: 1.67322821e+01 sys_corr_106: 8.21343721e-01 sys_corr_107: 2.79705273e+00 - sys_corr_108: -1.54559575e+00 - sys_corr_109: -7.00625772e-01 - sys_corr_110: -2.38657264e+01 - sys_corr_111: -1.55311623e+00 - sys_corr_112: -7.76583709e-01 - sys_corr_113: -6.83818443e-01 - sys_corr_114: 1.31270328e-03 - sys_corr_115: -7.10719257e-01 + sys_corr_108: -7.00625772e-01 + sys_corr_109: 1.54559575e+00 + sys_corr_110: 1.55311623e+00 + sys_corr_111: 2.38657264e+01 + sys_corr_112: 7.76583709e-01 + sys_corr_113: 6.83818443e-01 + sys_corr_114: -1.31270328e-03 + sys_corr_115: 7.10719257e-01 sys_corr_116: -1.11593379e+00 - sys_corr_117: -9.06990625e-01 + sys_corr_117: 9.06990625e-01 sys_corr_118: -2.37072153e-02 sys_corr_119: -1.36958034e-02 sys_corr_120: 5.51979920e-01 sys_corr_121: -1.14189745e-03 - sys_corr_122: 8.10245654e-02 - sys_corr_123: 3.03080536e-03 - sys_corr_124: -7.10525252e-01 + sys_corr_122: 3.03080536e-03 + sys_corr_123: -8.10245654e-02 + sys_corr_124: 7.10525252e-01 sys_corr_125: -2.66745215e-01 sys_corr_126: -3.51170062e-03 - sys_corr_127: 2.28210297e+00 - sys_corr_128: 1.47242070e-01 - sys_corr_129: -2.00733957e-01 - sys_corr_130: -1.41826537e-02 - sys_corr_131: -3.14474036e-01 + sys_corr_127: -2.28210297e+00 + sys_corr_128: -1.47242070e-01 + sys_corr_129: 2.00733957e-01 + sys_corr_130: 1.41826537e-02 + sys_corr_131: 3.14474036e-01 sys_corr_132: 2.03168291e-01 stat: 0.0 luminosity: 7.92974160e+01 @@ -13676,17 +13676,17 @@ bins: sys_corr_6: 6.11903252e+00 sys_corr_7: -3.84514435e+00 sys_corr_8: 2.90437078e+00 - sys_corr_9: -6.96598106e+00 - sys_corr_10: -1.48770613e+01 + sys_corr_9: 6.96598106e+00 + sys_corr_10: 1.48770613e+01 sys_corr_11: -9.85081387e+00 - sys_corr_12: -1.12068878e+00 - sys_corr_13: 1.05477134e+01 + sys_corr_12: 1.12068878e+00 + sys_corr_13: -1.05477134e+01 sys_corr_14: 8.47850524e-01 sys_corr_15: 1.62407374e+00 sys_corr_16: 4.94903785e+00 - sys_corr_17: -1.12280937e+00 + sys_corr_17: 1.12280937e+00 sys_corr_18: 2.82060210e+00 - sys_corr_19: 5.58927646e-01 + sys_corr_19: -5.58927646e-01 sys_corr_20: -7.32740522e-01 sys_corr_21: -1.60433083e+00 sys_corr_22: 7.78251418e+00 @@ -13702,103 +13702,103 @@ bins: sys_corr_32: 1.33288415e+00 sys_corr_33: 1.07900017e-01 sys_corr_34: -3.71774582e+00 - sys_corr_35: 7.70838982e-01 - sys_corr_36: 8.23700303e-04 + sys_corr_35: -7.70838982e-01 + sys_corr_36: -8.23700303e-04 sys_corr_37: -1.64073163e+00 sys_corr_38: -1.03840379e+00 - sys_corr_39: 1.24155458e-01 - sys_corr_40: 1.76486493e-01 - sys_corr_41: -1.24021955e+00 + sys_corr_39: -1.24155458e-01 + sys_corr_40: -1.76486493e-01 + sys_corr_41: 1.24021955e+00 sys_corr_42: 3.34198425e-01 sys_corr_43: -1.17017315e+00 sys_corr_44: 1.83702205e+00 sys_corr_45: 4.69707105e-01 - sys_corr_46: -2.80143400e-01 - sys_corr_47: -3.77118724e-01 + sys_corr_46: 2.80143400e-01 + sys_corr_47: 3.77118724e-01 sys_corr_48: 2.30640121e+00 sys_corr_49: -2.58594936e+00 sys_corr_50: 2.16226613e-02 - sys_corr_51: -1.25802199e+00 - sys_corr_52: -1.38988793e+00 - sys_corr_53: -6.37663961e-01 + sys_corr_51: 1.25802199e+00 + sys_corr_52: 1.38988793e+00 + sys_corr_53: 6.37663961e-01 sys_corr_54: -4.24971975e+00 sys_corr_55: -2.52888420e+00 - sys_corr_56: -1.37483879e+00 + sys_corr_56: 1.37483879e+00 sys_corr_57: 1.27403734e-01 - sys_corr_58: 2.12759633e+00 + sys_corr_58: -2.12759633e+00 sys_corr_59: 1.72542926e+00 sys_corr_60: -1.85884057e+00 - sys_corr_61: -1.45824939e-01 - sys_corr_62: -1.72474842e+00 + sys_corr_61: 1.45824939e-01 + sys_corr_62: 1.72474842e+00 sys_corr_63: 1.31661527e-01 sys_corr_64: 2.41965971e+00 - sys_corr_65: 3.58808292e+00 - sys_corr_66: -6.12556513e-02 - sys_corr_67: -1.16325338e+00 + sys_corr_65: -3.58808292e+00 + sys_corr_66: 6.12556513e-02 + sys_corr_67: 1.16325338e+00 sys_corr_68: -1.72104648e-01 sys_corr_69: 1.83098697e+00 sys_corr_70: 1.92816017e+00 - sys_corr_71: -5.86902227e-01 - sys_corr_72: -1.61678346e+00 + sys_corr_71: 5.86902227e-01 + sys_corr_72: 1.61678346e+00 sys_corr_73: -7.18789716e+00 sys_corr_74: -1.55544149e+00 - sys_corr_75: -4.80119528e-01 - sys_corr_76: -2.68211338e+00 + sys_corr_75: 4.80119528e-01 + sys_corr_76: 2.68211338e+00 sys_corr_77: -3.08215610e+00 sys_corr_78: 2.80257917e+00 sys_corr_79: 3.45209670e+00 - sys_corr_80: 4.15787371e+00 + sys_corr_80: -4.15787371e+00 sys_corr_81: 4.07841422e+00 - sys_corr_82: 1.73794215e+00 + sys_corr_82: -1.73794215e+00 sys_corr_83: 7.08505659e+00 sys_corr_84: -4.86639954e+01 sys_corr_85: 3.59176175e+01 - sys_corr_86: 3.48953578e+00 - sys_corr_87: -2.69160922e-01 + sys_corr_86: -3.48953578e+00 + sys_corr_87: 2.69160922e-01 sys_corr_88: 2.98767824e+00 sys_corr_89: 2.70487591e+00 - sys_corr_90: 1.43103053e+01 - sys_corr_91: 5.83331386e+01 - sys_corr_92: -4.82539713e+00 + sys_corr_90: -5.83331386e+01 + sys_corr_91: -1.43103053e+01 + sys_corr_92: 4.82539713e+00 sys_corr_93: 1.14458734e+02 sys_corr_94: -1.09905008e+01 - sys_corr_95: 4.14023446e+00 + sys_corr_95: -4.14023446e+00 sys_corr_96: -6.40549466e+01 - sys_corr_97: -1.36602162e+01 - sys_corr_98: -3.17438523e+01 + sys_corr_97: 1.36602162e+01 + sys_corr_98: 3.17438523e+01 sys_corr_99: -1.05796990e+01 - sys_corr_100: -1.18498120e+00 - sys_corr_101: -1.74302514e+00 - sys_corr_102: -1.56881158e+00 - sys_corr_103: -4.65381225e+00 - sys_corr_104: -9.92135498e+00 - sys_corr_105: -7.84174705e-02 + sys_corr_100: 7.84174705e-02 + sys_corr_101: 1.18498120e+00 + sys_corr_102: 1.74302514e+00 + sys_corr_103: -1.56881158e+00 + sys_corr_104: 4.65381225e+00 + sys_corr_105: 9.92135498e+00 sys_corr_106: 1.75425984e-01 sys_corr_107: 2.01410235e+00 - sys_corr_108: -1.36394939e+00 - sys_corr_109: -4.19918782e-01 - sys_corr_110: -2.12528862e+01 - sys_corr_111: -1.13685791e+00 - sys_corr_112: -5.38360138e-01 - sys_corr_113: -5.30072185e-01 - sys_corr_114: -3.90418198e-04 - sys_corr_115: -5.26217881e-01 + sys_corr_108: -4.19918782e-01 + sys_corr_109: 1.36394939e+00 + sys_corr_110: 1.13685791e+00 + sys_corr_111: 2.12528862e+01 + sys_corr_112: 5.38360138e-01 + sys_corr_113: 5.30072185e-01 + sys_corr_114: 3.90418198e-04 + sys_corr_115: 5.26217881e-01 sys_corr_116: 1.04537742e-01 - sys_corr_117: -7.16561132e-01 + sys_corr_117: 7.16561132e-01 sys_corr_118: -9.80766321e-02 sys_corr_119: -4.88855216e-03 sys_corr_120: 4.70096454e-01 sys_corr_121: -5.93476726e-03 - sys_corr_122: 5.41047155e-02 - sys_corr_123: -2.49353408e-02 - sys_corr_124: -1.44785624e+00 + sys_corr_122: -2.49353408e-02 + sys_corr_123: -5.41047155e-02 + sys_corr_124: 1.44785624e+00 sys_corr_125: -2.81550806e-01 sys_corr_126: -1.53738164e-02 - sys_corr_127: -4.98912111e+00 - sys_corr_128: 1.03209031e-01 - sys_corr_129: -2.18855814e-02 - sys_corr_130: -8.36154269e-03 - sys_corr_131: -3.22406622e-01 + sys_corr_127: 4.98912111e+00 + sys_corr_128: -1.03209031e-01 + sys_corr_129: 2.18855814e-02 + sys_corr_130: 8.36154269e-03 + sys_corr_131: 3.22406622e-01 sys_corr_132: 1.27985238e-01 stat: 0.0 luminosity: 77.80432 @@ -13810,17 +13810,17 @@ bins: sys_corr_6: 5.01896226e+00 sys_corr_7: -1.43379441e+00 sys_corr_8: -1.27760172e+01 - sys_corr_9: -9.76375005e-01 - sys_corr_10: 1.78696270e+00 + sys_corr_9: 9.76375005e-01 + sys_corr_10: -1.78696270e+00 sys_corr_11: -1.02528027e+01 - sys_corr_12: -7.56183871e+00 - sys_corr_13: 4.41443287e+00 + sys_corr_12: 7.56183871e+00 + sys_corr_13: -4.41443287e+00 sys_corr_14: 4.35783482e+00 sys_corr_15: 7.76997280e+00 sys_corr_16: 6.85785394e+00 - sys_corr_17: -9.74030621e-01 + sys_corr_17: 9.74030621e-01 sys_corr_18: 3.39464516e+00 - sys_corr_19: -5.03833417e-01 + sys_corr_19: 5.03833417e-01 sys_corr_20: -1.36723036e+00 sys_corr_21: -2.27424036e+00 sys_corr_22: 7.79115894e+00 @@ -13836,103 +13836,103 @@ bins: sys_corr_32: 1.42764624e+00 sys_corr_33: 2.35690216e-01 sys_corr_34: -3.13578570e+00 - sys_corr_35: 8.03214677e-01 - sys_corr_36: -8.05443433e-01 + sys_corr_35: -8.03214677e-01 + sys_corr_36: 8.05443433e-01 sys_corr_37: -1.60715977e+00 sys_corr_38: -9.66611399e-01 - sys_corr_39: -2.32857434e-01 - sys_corr_40: 2.91824977e-01 - sys_corr_41: -1.07105065e+00 + sys_corr_39: 2.32857434e-01 + sys_corr_40: -2.91824977e-01 + sys_corr_41: 1.07105065e+00 sys_corr_42: 7.58824418e-01 sys_corr_43: -9.29889614e-01 sys_corr_44: 1.51066243e+00 sys_corr_45: 5.75236385e-01 - sys_corr_46: -4.67461224e-01 - sys_corr_47: -6.28607611e-01 + sys_corr_46: 4.67461224e-01 + sys_corr_47: 6.28607611e-01 sys_corr_48: 2.48699851e+00 sys_corr_49: -3.24020050e+00 sys_corr_50: 7.74167311e-01 - sys_corr_51: -7.02255884e-01 - sys_corr_52: -1.14704451e+00 - sys_corr_53: -1.52250642e-01 + sys_corr_51: 7.02255884e-01 + sys_corr_52: 1.14704451e+00 + sys_corr_53: 1.52250642e-01 sys_corr_54: -3.98129559e+00 sys_corr_55: -2.44153062e+00 - sys_corr_56: -1.68338889e+00 + sys_corr_56: 1.68338889e+00 sys_corr_57: 4.96363600e-01 - sys_corr_58: 2.89165127e+00 + sys_corr_58: -2.89165127e+00 sys_corr_59: 1.56292924e+00 sys_corr_60: -6.87391016e-01 - sys_corr_61: 7.12219273e-02 - sys_corr_62: -1.50728883e+00 + sys_corr_61: -7.12219273e-02 + sys_corr_62: 1.50728883e+00 sys_corr_63: 1.90399981e-02 sys_corr_64: 2.15272166e+00 - sys_corr_65: 3.69193841e+00 - sys_corr_66: -4.05105046e-01 - sys_corr_67: -7.94489581e-01 + sys_corr_65: -3.69193841e+00 + sys_corr_66: 4.05105046e-01 + sys_corr_67: 7.94489581e-01 sys_corr_68: 1.80830645e-02 sys_corr_69: 5.44812310e-01 sys_corr_70: 1.36120797e+00 - sys_corr_71: -1.20439581e+00 - sys_corr_72: -1.77151655e+00 + sys_corr_71: 1.20439581e+00 + sys_corr_72: 1.77151655e+00 sys_corr_73: -6.66280379e+00 sys_corr_74: -1.73706184e+00 - sys_corr_75: 2.69842669e-01 - sys_corr_76: -2.88045028e+00 + sys_corr_75: -2.69842669e-01 + sys_corr_76: 2.88045028e+00 sys_corr_77: -3.37733370e+00 sys_corr_78: 3.31855162e+00 sys_corr_79: 4.05730723e+00 - sys_corr_80: 3.78883688e+00 + sys_corr_80: -3.78883688e+00 sys_corr_81: 3.28852151e+00 - sys_corr_82: 1.79040851e+00 + sys_corr_82: -1.79040851e+00 sys_corr_83: 6.97668499e+00 sys_corr_84: -4.20959518e+01 sys_corr_85: 3.18514482e+01 - sys_corr_86: 3.31409477e+00 - sys_corr_87: -8.92661298e-01 + sys_corr_86: -3.31409477e+00 + sys_corr_87: 8.92661298e-01 sys_corr_88: 2.38411797e+00 sys_corr_89: 2.79324199e+00 - sys_corr_90: 1.05872440e+01 - sys_corr_91: 5.07108998e+01 - sys_corr_92: -4.35404954e+00 + sys_corr_90: -5.07108998e+01 + sys_corr_91: -1.05872440e+01 + sys_corr_92: 4.35404954e+00 sys_corr_93: -4.90816170e+01 sys_corr_94: 1.34885012e+01 - sys_corr_95: -4.72882277e+00 + sys_corr_95: 4.72882277e+00 sys_corr_96: 3.40537775e+01 - sys_corr_97: 3.93633223e+01 - sys_corr_98: -1.00714586e+02 + sys_corr_97: -3.93633223e+01 + sys_corr_98: 1.00714586e+02 sys_corr_99: -3.85012438e+01 - sys_corr_100: -1.71043119e+00 - sys_corr_101: -2.65599471e+00 - sys_corr_102: 3.54712898e+00 - sys_corr_103: -7.29332676e+00 - sys_corr_104: 5.16550118e+00 - sys_corr_105: -6.79848019e-01 + sys_corr_100: 6.79848019e-01 + sys_corr_101: 1.71043119e+00 + sys_corr_102: 2.65599471e+00 + sys_corr_103: 3.54712898e+00 + sys_corr_104: 7.29332676e+00 + sys_corr_105: -5.16550118e+00 sys_corr_106: -4.68915673e-01 sys_corr_107: 1.82453697e+00 - sys_corr_108: -1.50242735e+00 - sys_corr_109: -2.46746204e-01 - sys_corr_110: -8.37765436e+00 - sys_corr_111: -1.40339186e+00 - sys_corr_112: -4.34658305e-01 - sys_corr_113: -5.62689747e-01 - sys_corr_114: -8.58784185e-04 - sys_corr_115: -6.75251899e-01 + sys_corr_108: -2.46746204e-01 + sys_corr_109: 1.50242735e+00 + sys_corr_110: 1.40339186e+00 + sys_corr_111: 8.37765436e+00 + sys_corr_112: 4.34658305e-01 + sys_corr_113: 5.62689747e-01 + sys_corr_114: 8.58784185e-04 + sys_corr_115: 6.75251899e-01 sys_corr_116: -5.09943534e-02 - sys_corr_117: -7.99682870e-01 + sys_corr_117: 7.99682870e-01 sys_corr_118: -1.74997610e-01 sys_corr_119: -3.83449172e-03 sys_corr_120: 5.46913392e-01 sys_corr_121: -5.47770947e-03 - sys_corr_122: 5.51012257e-02 - sys_corr_123: -2.73583404e-02 - sys_corr_124: -1.56152683e+00 + sys_corr_122: -2.73583404e-02 + sys_corr_123: -5.51012257e-02 + sys_corr_124: 1.56152683e+00 sys_corr_125: -2.21282677e-01 sys_corr_126: -1.01569351e-02 - sys_corr_127: -3.10643118e+01 - sys_corr_128: 1.80990550e-01 - sys_corr_129: -2.42220497e-02 - sys_corr_130: 4.85086263e-04 - sys_corr_131: -2.93318739e-01 + sys_corr_127: 3.10643118e+01 + sys_corr_128: -1.80990550e-01 + sys_corr_129: 2.42220497e-02 + sys_corr_130: -4.85086263e-04 + sys_corr_131: 2.93318739e-01 sys_corr_132: 9.87053343e-02 stat: 0.0 luminosity: 7.74941640e+01 @@ -13944,17 +13944,17 @@ bins: sys_corr_6: 2.96681228e+00 sys_corr_7: -7.62197194e+00 sys_corr_8: -1.87180489e-01 - sys_corr_9: -9.46519825e+00 - sys_corr_10: 1.09774239e+00 + sys_corr_9: 9.46519825e+00 + sys_corr_10: -1.09774239e+00 sys_corr_11: -1.71372615e+00 - sys_corr_12: -8.36431080e+00 - sys_corr_13: -5.77320793e+00 + sys_corr_12: 8.36431080e+00 + sys_corr_13: 5.77320793e+00 sys_corr_14: -3.64223632e-01 sys_corr_15: -1.16520998e+01 sys_corr_16: 1.78647313e+00 - sys_corr_17: -2.92953316e-01 + sys_corr_17: 2.92953316e-01 sys_corr_18: 2.56031507e+00 - sys_corr_19: -2.63879173e-02 + sys_corr_19: 2.63879173e-02 sys_corr_20: -6.06607883e-01 sys_corr_21: -1.34173416e+00 sys_corr_22: 6.62818091e+00 @@ -13970,103 +13970,103 @@ bins: sys_corr_32: 1.66522912e+00 sys_corr_33: 1.10390369e-01 sys_corr_34: -3.43145155e+00 - sys_corr_35: 3.56841836e-01 - sys_corr_36: -6.83907756e-01 + sys_corr_35: -3.56841836e-01 + sys_corr_36: 6.83907756e-01 sys_corr_37: -1.45111185e+00 sys_corr_38: -1.26698536e+00 - sys_corr_39: -7.57782885e-01 - sys_corr_40: -3.33725093e-01 - sys_corr_41: -8.34461715e-01 + sys_corr_39: 7.57782885e-01 + sys_corr_40: 3.33725093e-01 + sys_corr_41: 8.34461715e-01 sys_corr_42: 1.20413588e+00 sys_corr_43: -8.11470068e-01 sys_corr_44: 8.65145378e-01 sys_corr_45: 4.53301067e-01 - sys_corr_46: 7.76515681e-02 - sys_corr_47: 4.50885788e-02 + sys_corr_46: -7.76515681e-02 + sys_corr_47: -4.50885788e-02 sys_corr_48: 1.37309819e+00 sys_corr_49: -2.60904482e+00 sys_corr_50: 5.65784177e-01 - sys_corr_51: -2.25553197e-01 - sys_corr_52: -8.30194173e-01 - sys_corr_53: -3.44210346e-01 + sys_corr_51: 2.25553197e-01 + sys_corr_52: 8.30194173e-01 + sys_corr_53: 3.44210346e-01 sys_corr_54: -3.47442154e+00 sys_corr_55: -1.95302934e+00 - sys_corr_56: -1.45328624e+00 + sys_corr_56: 1.45328624e+00 sys_corr_57: 4.52839669e-01 - sys_corr_58: 2.00474032e+00 + sys_corr_58: -2.00474032e+00 sys_corr_59: 1.06280045e+00 sys_corr_60: -6.46350471e-01 - sys_corr_61: 6.14961497e-01 - sys_corr_62: -1.22173757e+00 + sys_corr_61: -6.14961497e-01 + sys_corr_62: 1.22173757e+00 sys_corr_63: 5.78006925e-01 sys_corr_64: 1.79263288e+00 - sys_corr_65: 3.07836407e+00 - sys_corr_66: 3.97657292e-01 - sys_corr_67: -1.14329262e+00 + sys_corr_65: -3.07836407e+00 + sys_corr_66: -3.97657292e-01 + sys_corr_67: 1.14329262e+00 sys_corr_68: 5.26384132e-03 sys_corr_69: 7.27138993e-01 sys_corr_70: 1.01729794e+00 - sys_corr_71: -7.80707868e-01 - sys_corr_72: -1.21868436e+00 + sys_corr_71: 7.80707868e-01 + sys_corr_72: 1.21868436e+00 sys_corr_73: -4.84547913e+00 sys_corr_74: -1.60227485e+00 - sys_corr_75: -2.55492267e-01 - sys_corr_76: -2.07021694e+00 + sys_corr_75: 2.55492267e-01 + sys_corr_76: 2.07021694e+00 sys_corr_77: -2.20141057e+00 sys_corr_78: 2.70028335e+00 sys_corr_79: 2.93443505e+00 - sys_corr_80: 2.69227366e+00 + sys_corr_80: -2.69227366e+00 sys_corr_81: 2.90805814e+00 - sys_corr_82: 3.22202272e-02 + sys_corr_82: -3.22202272e-02 sys_corr_83: 5.80625306e+00 sys_corr_84: -3.28262850e+01 sys_corr_85: 2.31199468e+01 - sys_corr_86: 3.25026046e+00 - sys_corr_87: -8.70363984e-01 + sys_corr_86: -3.25026046e+00 + sys_corr_87: 8.70363984e-01 sys_corr_88: 2.33139781e+00 sys_corr_89: 2.69491256e+00 - sys_corr_90: 7.00959012e+00 - sys_corr_91: 3.67825893e+01 - sys_corr_92: -4.16051138e+00 + sys_corr_90: -3.67825893e+01 + sys_corr_91: -7.00959012e+00 + sys_corr_92: 4.16051138e+00 sys_corr_93: 3.60891706e+00 sys_corr_94: -1.38609394e+00 - sys_corr_95: -5.50885376e-01 + sys_corr_95: 5.50885376e-01 sys_corr_96: -8.85889167e+00 - sys_corr_97: 2.86961229e-01 - sys_corr_98: 4.57881964e+01 + sys_corr_97: -2.86961229e-01 + sys_corr_98: -4.57881964e+01 sys_corr_99: -1.09410594e+01 - sys_corr_100: -3.31700689e+00 - sys_corr_101: -2.67701128e+00 - sys_corr_102: 1.66767699e+01 - sys_corr_103: 5.56119721e+00 - sys_corr_104: 6.10817239e+01 - sys_corr_105: -1.40642776e+00 + sys_corr_100: 1.40642776e+00 + sys_corr_101: 3.31700689e+00 + sys_corr_102: 2.67701128e+00 + sys_corr_103: 1.66767699e+01 + sys_corr_104: -5.56119721e+00 + sys_corr_105: -6.10817239e+01 sys_corr_106: -1.84504609e+00 sys_corr_107: 1.90815959e+00 - sys_corr_108: -1.90086859e+00 - sys_corr_109: -7.05838864e-02 - sys_corr_110: 7.03147130e+01 - sys_corr_111: -1.82138469e+00 - sys_corr_112: -2.83285467e-01 - sys_corr_113: -1.92866087e-01 - sys_corr_114: -3.49619199e-03 - sys_corr_115: -8.89917367e-01 + sys_corr_108: -7.05838864e-02 + sys_corr_109: 1.90086859e+00 + sys_corr_110: 1.82138469e+00 + sys_corr_111: -7.03147130e+01 + sys_corr_112: 2.83285467e-01 + sys_corr_113: 1.92866087e-01 + sys_corr_114: 3.49619199e-03 + sys_corr_115: 8.89917367e-01 sys_corr_116: -1.05391436e+00 - sys_corr_117: 1.23640201e-01 + sys_corr_117: -1.23640201e-01 sys_corr_118: -2.96649145e-01 sys_corr_119: 4.52770666e-04 sys_corr_120: 3.93489780e-01 sys_corr_121: -2.92343481e-03 - sys_corr_122: 7.33823976e-02 - sys_corr_123: -1.55609269e-02 - sys_corr_124: -1.43850855e+00 + sys_corr_122: -1.55609269e-02 + sys_corr_123: -7.33823976e-02 + sys_corr_124: 1.43850855e+00 sys_corr_125: -2.24430198e-01 sys_corr_126: -3.64980308e-03 - sys_corr_127: -7.35936811e+01 - sys_corr_128: 5.41796314e-01 - sys_corr_129: 5.46248255e-02 - sys_corr_130: 8.87299812e-03 - sys_corr_131: -2.80722089e-01 + sys_corr_127: 7.35936811e+01 + sys_corr_128: -5.41796314e-01 + sys_corr_129: -5.46248255e-02 + sys_corr_130: -8.87299812e-03 + sys_corr_131: 2.80722089e-01 sys_corr_132: -8.95309476e-02 stat: 0.0 luminosity: 74.42028 @@ -14078,17 +14078,17 @@ bins: sys_corr_6: 3.82560990e+00 sys_corr_7: -3.98356159e+00 sys_corr_8: -1.50977394e+00 - sys_corr_9: -1.54000047e+01 - sys_corr_10: 3.06127605e+00 + sys_corr_9: 1.54000047e+01 + sys_corr_10: -3.06127605e+00 sys_corr_11: -2.77195441e+00 - sys_corr_12: -5.64675316e+00 - sys_corr_13: 6.18120135e+00 + sys_corr_12: 5.64675316e+00 + sys_corr_13: -6.18120135e+00 sys_corr_14: 3.83032203e+00 sys_corr_15: 1.30217188e+01 sys_corr_16: -7.39097268e+00 - sys_corr_17: 4.40631003e+00 + sys_corr_17: -4.40631003e+00 sys_corr_18: -9.76757578e+00 - sys_corr_19: -2.76022783e+00 + sys_corr_19: 2.76022783e+00 sys_corr_20: -3.20172358e+00 sys_corr_21: -1.13535370e+00 sys_corr_22: 5.46561860e+00 @@ -14104,103 +14104,103 @@ bins: sys_corr_32: 1.63471173e+00 sys_corr_33: -1.69718481e-02 sys_corr_34: -2.08876998e+00 - sys_corr_35: 1.23358193e+00 - sys_corr_36: 6.08828186e-02 + sys_corr_35: -1.23358193e+00 + sys_corr_36: -6.08828186e-02 sys_corr_37: -8.39570520e-01 sys_corr_38: -1.20912377e+00 - sys_corr_39: -3.99618310e-01 - sys_corr_40: -6.88491596e-01 - sys_corr_41: -2.00748093e+00 + sys_corr_39: 3.99618310e-01 + sys_corr_40: 6.88491596e-01 + sys_corr_41: 2.00748093e+00 sys_corr_42: 1.22922388e+00 sys_corr_43: -2.20179923e+00 sys_corr_44: 3.72761152e-02 sys_corr_45: -7.00248422e-01 - sys_corr_46: -1.09093532e-01 - sys_corr_47: -8.64415746e-01 + sys_corr_46: 1.09093532e-01 + sys_corr_47: 8.64415746e-01 sys_corr_48: -5.49231238e-01 sys_corr_49: -1.37640210e+00 sys_corr_50: 9.40779792e-01 - sys_corr_51: -7.07461346e-01 - sys_corr_52: 1.40919005e-01 - sys_corr_53: 8.99289344e-01 + sys_corr_51: 7.07461346e-01 + sys_corr_52: -1.40919005e-01 + sys_corr_53: -8.99289344e-01 sys_corr_54: -2.76613692e+00 sys_corr_55: -1.25964003e+00 - sys_corr_56: -1.10334117e+00 + sys_corr_56: 1.10334117e+00 sys_corr_57: 1.23895293e+00 - sys_corr_58: 1.80552191e+00 + sys_corr_58: -1.80552191e+00 sys_corr_59: 1.02731751e+00 sys_corr_60: -3.42750891e-02 - sys_corr_61: 3.92398122e-01 - sys_corr_62: -1.88067087e+00 + sys_corr_61: -3.92398122e-01 + sys_corr_62: 1.88067087e+00 sys_corr_63: -5.02107410e-02 sys_corr_64: 1.65609229e+00 - sys_corr_65: 2.40775409e+00 - sys_corr_66: 2.60882257e-01 - sys_corr_67: -6.30295317e-01 + sys_corr_65: -2.40775409e+00 + sys_corr_66: -2.60882257e-01 + sys_corr_67: 6.30295317e-01 sys_corr_68: 5.57700106e-01 sys_corr_69: 1.38224161e+00 sys_corr_70: 3.85064770e-01 - sys_corr_71: -5.10395184e-01 - sys_corr_72: -1.67065583e+00 + sys_corr_71: 5.10395184e-01 + sys_corr_72: 1.67065583e+00 sys_corr_73: -5.03669183e+00 sys_corr_74: -1.25679274e+00 - sys_corr_75: 1.94681761e+00 - sys_corr_76: -2.42388413e+00 + sys_corr_75: -1.94681761e+00 + sys_corr_76: 2.42388413e+00 sys_corr_77: -3.16001939e+00 sys_corr_78: 3.75199432e+00 sys_corr_79: 2.83300972e+00 - sys_corr_80: 2.65224216e+00 + sys_corr_80: -2.65224216e+00 sys_corr_81: 3.78231714e+00 - sys_corr_82: 6.93670832e-01 + sys_corr_82: -6.93670832e-01 sys_corr_83: 6.84876522e+00 sys_corr_84: -3.41878487e+01 sys_corr_85: 2.37365597e+01 - sys_corr_86: 2.82931309e+00 - sys_corr_87: -6.52151363e-01 + sys_corr_86: -2.82931309e+00 + sys_corr_87: 6.52151363e-01 sys_corr_88: 1.93177375e+00 sys_corr_89: 3.55078015e+00 - sys_corr_90: 5.36917375e+00 - sys_corr_91: 3.79604446e+01 - sys_corr_92: -4.51378675e+00 + sys_corr_90: -3.79604446e+01 + sys_corr_91: -5.36917375e+00 + sys_corr_92: 4.51378675e+00 sys_corr_93: -3.98949801e+00 sys_corr_94: -2.36023374e+00 - sys_corr_95: -1.46627225e+00 + sys_corr_95: 1.46627225e+00 sys_corr_96: 2.23475988e+00 - sys_corr_97: 1.73512705e+01 - sys_corr_98: -2.61273436e+01 + sys_corr_97: -1.73512705e+01 + sys_corr_98: 2.61273436e+01 sys_corr_99: 8.01889228e+01 - sys_corr_100: -3.18498191e+00 - sys_corr_101: 3.61039170e+00 - sys_corr_102: 1.68343378e+01 - sys_corr_103: 1.30072452e+01 - sys_corr_104: 5.67449177e+01 - sys_corr_105: -2.87794750e+00 + sys_corr_100: 2.87794750e+00 + sys_corr_101: 3.18498191e+00 + sys_corr_102: -3.61039170e+00 + sys_corr_103: 1.68343378e+01 + sys_corr_104: -1.30072452e+01 + sys_corr_105: -5.67449177e+01 sys_corr_106: -1.49162072e+00 sys_corr_107: 2.00901717e+00 - sys_corr_108: -8.39550605e-01 - sys_corr_109: -1.43744106e-02 - sys_corr_110: 2.41714029e+01 - sys_corr_111: -1.55238749e+00 - sys_corr_112: -1.84109983e-01 - sys_corr_113: -1.41330059e-01 - sys_corr_114: -6.33445946e-03 - sys_corr_115: -8.17906365e-01 + sys_corr_108: -1.43744106e-02 + sys_corr_109: 8.39550605e-01 + sys_corr_110: 1.55238749e+00 + sys_corr_111: -2.41714029e+01 + sys_corr_112: 1.84109983e-01 + sys_corr_113: 1.41330059e-01 + sys_corr_114: 6.33445946e-03 + sys_corr_115: 8.17906365e-01 sys_corr_116: -8.74264232e-01 - sys_corr_117: 1.98229043e-01 + sys_corr_117: -1.98229043e-01 sys_corr_118: -2.73590486e-01 sys_corr_119: 4.99821229e-03 sys_corr_120: 3.31329175e-01 sys_corr_121: -3.53097802e-03 - sys_corr_122: 7.75919241e-02 - sys_corr_123: -8.32382895e-03 - sys_corr_124: -1.32137089e+00 + sys_corr_122: -8.32382895e-03 + sys_corr_123: -7.75919241e-02 + sys_corr_124: 1.32137089e+00 sys_corr_125: -2.08859312e-01 sys_corr_126: 4.72448044e-03 - sys_corr_127: 7.22241156e+01 - sys_corr_128: 3.67366542e-01 - sys_corr_129: 4.05140055e-02 - sys_corr_130: 1.99472118e-02 - sys_corr_131: -2.55616407e-01 + sys_corr_127: -7.22241156e+01 + sys_corr_128: -3.67366542e-01 + sys_corr_129: -4.05140055e-02 + sys_corr_130: -1.99472118e-02 + sys_corr_131: 2.55616407e-01 sys_corr_132: -2.17454568e-01 stat: 0.0 luminosity: 7.74753540e+01 @@ -14212,17 +14212,17 @@ bins: sys_corr_6: 3.98851196e+00 sys_corr_7: 4.89361271e-01 sys_corr_8: -7.29333984e+00 - sys_corr_9: -9.08921459e+00 - sys_corr_10: -4.83873860e-01 + sys_corr_9: 9.08921459e+00 + sys_corr_10: 4.83873860e-01 sys_corr_11: -7.86266029e-01 - sys_corr_12: 6.55802812e+00 - sys_corr_13: 8.15741081e+00 + sys_corr_12: -6.55802812e+00 + sys_corr_13: -8.15741081e+00 sys_corr_14: -6.74761633e+00 sys_corr_15: -2.49089691e+00 sys_corr_16: 1.27410033e+01 - sys_corr_17: -2.96301002e+00 + sys_corr_17: 2.96301002e+00 sys_corr_18: 1.13311872e+01 - sys_corr_19: -2.08023565e+00 + sys_corr_19: 2.08023565e+00 sys_corr_20: -1.67465143e+00 sys_corr_21: -3.99353318e+00 sys_corr_22: 3.13382726e+00 @@ -14238,103 +14238,103 @@ bins: sys_corr_32: 2.47558036e+00 sys_corr_33: 4.86515442e-01 sys_corr_34: -5.29589727e+00 - sys_corr_35: 1.28784360e+00 - sys_corr_36: -7.76483340e-01 + sys_corr_35: -1.28784360e+00 + sys_corr_36: 7.76483340e-01 sys_corr_37: -1.37301554e+00 sys_corr_38: -6.94938700e-01 - sys_corr_39: -3.01790010e+00 - sys_corr_40: 2.04818342e-02 - sys_corr_41: -1.14412667e+00 + sys_corr_39: 3.01790010e+00 + sys_corr_40: -2.04818342e-02 + sys_corr_41: 1.14412667e+00 sys_corr_42: 1.69181855e+00 sys_corr_43: 9.12683301e-01 sys_corr_44: 2.09054938e+00 sys_corr_45: 1.03149024e+00 - sys_corr_46: -4.20490286e-01 - sys_corr_47: 1.16854297e+00 + sys_corr_46: 4.20490286e-01 + sys_corr_47: -1.16854297e+00 sys_corr_48: 1.65105400e+00 sys_corr_49: 1.30208954e+00 sys_corr_50: 3.62066297e-01 - sys_corr_51: -2.35862537e-01 - sys_corr_52: -7.78612784e-01 - sys_corr_53: -1.93676234e-01 + sys_corr_51: 2.35862537e-01 + sys_corr_52: 7.78612784e-01 + sys_corr_53: 1.93676234e-01 sys_corr_54: -1.46938952e+00 sys_corr_55: -1.50061292e+00 - sys_corr_56: -2.59340615e-01 + sys_corr_56: 2.59340615e-01 sys_corr_57: 1.91119425e+00 - sys_corr_58: 2.44383915e+00 + sys_corr_58: -2.44383915e+00 sys_corr_59: 1.40867416e+00 sys_corr_60: 8.14667058e-03 - sys_corr_61: 2.70814851e-01 - sys_corr_62: -2.98643758e+00 + sys_corr_61: -2.70814851e-01 + sys_corr_62: 2.98643758e+00 sys_corr_63: -3.43858218e-01 sys_corr_64: 1.53234415e+00 - sys_corr_65: 1.22139433e+00 - sys_corr_66: -2.82260639e-01 - sys_corr_67: -2.56944769e-01 + sys_corr_65: -1.22139433e+00 + sys_corr_66: 2.82260639e-01 + sys_corr_67: 2.56944769e-01 sys_corr_68: -3.04103509e-01 sys_corr_69: 2.21263748e+00 sys_corr_70: 5.31416055e-02 - sys_corr_71: -7.64155208e-01 - sys_corr_72: -1.32680830e+00 + sys_corr_71: 7.64155208e-01 + sys_corr_72: 1.32680830e+00 sys_corr_73: -3.51244908e+00 sys_corr_74: -1.15406835e+00 - sys_corr_75: 2.25848958e+00 - sys_corr_76: -3.72470569e+00 + sys_corr_75: -2.25848958e+00 + sys_corr_76: 3.72470569e+00 sys_corr_77: -4.43482704e+00 sys_corr_78: 3.56794017e+00 sys_corr_79: 3.31347377e+00 - sys_corr_80: 2.30221790e+00 + sys_corr_80: -2.30221790e+00 sys_corr_81: 3.72023262e+00 - sys_corr_82: -4.88965798e-01 + sys_corr_82: 4.88965798e-01 sys_corr_83: 6.41896079e+00 sys_corr_84: -3.09717899e+01 sys_corr_85: 2.64024374e+01 - sys_corr_86: 3.69468702e+00 - sys_corr_87: 9.55252502e-01 + sys_corr_86: -3.69468702e+00 + sys_corr_87: -9.55252502e-01 sys_corr_88: 2.83464586e+00 sys_corr_89: 3.81924195e+00 - sys_corr_90: 5.43620288e+00 - sys_corr_91: 3.70749132e+01 - sys_corr_92: -4.03481885e+00 + sys_corr_90: -3.70749132e+01 + sys_corr_91: -5.43620288e+00 + sys_corr_92: 4.03481885e+00 sys_corr_93: -1.06033457e+01 sys_corr_94: -1.07606863e+01 - sys_corr_95: -2.62058172e+00 + sys_corr_95: 2.62058172e+00 sys_corr_96: -6.81373941e+00 - sys_corr_97: 5.64074452e+01 - sys_corr_98: 5.54348796e+01 + sys_corr_97: -5.64074452e+01 + sys_corr_98: -5.54348796e+01 sys_corr_99: -8.37997373e+01 - sys_corr_100: 9.99352713e-01 - sys_corr_101: 1.68286943e+01 - sys_corr_102: -1.91013776e+00 - sys_corr_103: 3.65014682e+00 - sys_corr_104: 9.39295495e+00 - sys_corr_105: -1.46785571e+00 + sys_corr_100: 1.46785571e+00 + sys_corr_101: -9.99352713e-01 + sys_corr_102: -1.68286943e+01 + sys_corr_103: -1.91013776e+00 + sys_corr_104: -3.65014682e+00 + sys_corr_105: -9.39295495e+00 sys_corr_106: -1.01057842e+00 sys_corr_107: 4.43383917e-01 - sys_corr_108: -1.41922717e+00 - sys_corr_109: 5.18800922e-01 - sys_corr_110: -5.35637343e+00 - sys_corr_111: -4.47826447e-01 - sys_corr_112: 1.56389337e-01 - sys_corr_113: 6.11870953e-02 - sys_corr_114: -6.89802652e-03 - sys_corr_115: -8.00674173e-01 + sys_corr_108: 5.18800922e-01 + sys_corr_109: 1.41922717e+00 + sys_corr_110: 4.47826447e-01 + sys_corr_111: 5.35637343e+00 + sys_corr_112: -1.56389337e-01 + sys_corr_113: -6.11870953e-02 + sys_corr_114: 6.89802652e-03 + sys_corr_115: 8.00674173e-01 sys_corr_116: -3.62187996e-01 - sys_corr_117: -2.73076797e-01 + sys_corr_117: 2.73076797e-01 sys_corr_118: -3.17298003e-01 sys_corr_119: 5.84402583e-03 sys_corr_120: -6.18879856e-01 sys_corr_121: 1.70142882e-04 - sys_corr_122: 1.02794894e-01 - sys_corr_123: 1.34450165e-02 - sys_corr_124: -7.84432261e-01 + sys_corr_122: 1.34450165e-02 + sys_corr_123: -1.02794894e-01 + sys_corr_124: 7.84432261e-01 sys_corr_125: -1.78913068e-01 sys_corr_126: 1.43468932e-02 - sys_corr_127: 6.36882677e+01 - sys_corr_128: 5.66706421e-01 - sys_corr_129: 1.56489367e-01 - sys_corr_130: 1.32477306e-02 - sys_corr_131: -1.15000076e-01 + sys_corr_127: -6.36882677e+01 + sys_corr_128: -5.66706421e-01 + sys_corr_129: -1.56489367e-01 + sys_corr_130: -1.32477306e-02 + sys_corr_131: 1.15000076e-01 sys_corr_132: -2.40923717e-01 stat: 0.0 luminosity: 7.27379400e+01 @@ -14346,17 +14346,17 @@ bins: sys_corr_6: 4.70231853e+00 sys_corr_7: 3.25670420e+00 sys_corr_8: -4.95478919e+00 - sys_corr_9: -2.96046495e+00 - sys_corr_10: -7.99660929e+00 + sys_corr_9: 2.96046495e+00 + sys_corr_10: 7.99660929e+00 sys_corr_11: -3.70308842e-01 - sys_corr_12: -6.89038094e+00 - sys_corr_13: -6.37497495e+00 + sys_corr_12: 6.89038094e+00 + sys_corr_13: 6.37497495e+00 sys_corr_14: 4.61424706e+00 sys_corr_15: -7.73271127e-01 sys_corr_16: 8.83966421e-02 - sys_corr_17: 7.14791278e-01 + sys_corr_17: -7.14791278e-01 sys_corr_18: -9.05931186e+00 - sys_corr_19: 8.84826184e-01 + sys_corr_19: -8.84826184e-01 sys_corr_20: -2.21790347e+00 sys_corr_21: -3.61732974e+00 sys_corr_22: 4.22872968e+00 @@ -14372,103 +14372,103 @@ bins: sys_corr_32: 7.15535334e-01 sys_corr_33: -9.00172990e-01 sys_corr_34: -1.93237230e+00 - sys_corr_35: 5.48503346e-01 - sys_corr_36: -2.67147957e-01 + sys_corr_35: -5.48503346e-01 + sys_corr_36: 2.67147957e-01 sys_corr_37: 6.95293911e-01 sys_corr_38: -4.00258042e-01 - sys_corr_39: 1.30593353e+00 - sys_corr_40: 4.80776773e-01 - sys_corr_41: -2.05390749e+00 + sys_corr_39: -1.30593353e+00 + sys_corr_40: -4.80776773e-01 + sys_corr_41: 2.05390749e+00 sys_corr_42: 3.30984360e-01 sys_corr_43: -7.50855834e-01 sys_corr_44: 1.61018978e+00 sys_corr_45: -9.02644590e-01 - sys_corr_46: -1.09673055e+00 - sys_corr_47: -2.32751116e-01 + sys_corr_46: 1.09673055e+00 + sys_corr_47: 2.32751116e-01 sys_corr_48: -3.50825788e-01 sys_corr_49: 9.08087192e-02 sys_corr_50: 1.65774663e+00 - sys_corr_51: -6.35899869e-03 - sys_corr_52: -1.02568440e+00 - sys_corr_53: 1.69846711e-01 + sys_corr_51: 6.35899869e-03 + sys_corr_52: 1.02568440e+00 + sys_corr_53: -1.69846711e-01 sys_corr_54: -1.34739979e+00 sys_corr_55: -1.68484311e+00 - sys_corr_56: -8.82117935e-01 + sys_corr_56: 8.82117935e-01 sys_corr_57: 8.65057074e-01 - sys_corr_58: 1.36048849e+00 + sys_corr_58: -1.36048849e+00 sys_corr_59: -3.25783579e-01 sys_corr_60: -2.06077937e-01 - sys_corr_61: -2.17029544e-01 - sys_corr_62: -1.00307189e+00 + sys_corr_61: 2.17029544e-01 + sys_corr_62: 1.00307189e+00 sys_corr_63: 5.25017745e-01 sys_corr_64: 1.43366940e+00 - sys_corr_65: 1.61978978e+00 - sys_corr_66: -3.83209568e-01 - sys_corr_67: -2.32769233e-02 + sys_corr_65: -1.61978978e+00 + sys_corr_66: 3.83209568e-01 + sys_corr_67: 2.32769233e-02 sys_corr_68: 9.28649581e-01 sys_corr_69: 4.67862643e-01 sys_corr_70: -8.95035400e-01 - sys_corr_71: -4.73910381e-02 - sys_corr_72: -1.15475325e+00 + sys_corr_71: 4.73910381e-02 + sys_corr_72: 1.15475325e+00 sys_corr_73: -1.19993536e+00 sys_corr_74: 2.49380451e-01 - sys_corr_75: 3.45185325e+00 - sys_corr_76: -2.44570997e+00 + sys_corr_75: -3.45185325e+00 + sys_corr_76: 2.44570997e+00 sys_corr_77: -5.09915108e+00 sys_corr_78: 3.34614444e+00 sys_corr_79: 1.69816753e+00 - sys_corr_80: 1.54170005e+00 + sys_corr_80: -1.54170005e+00 sys_corr_81: 3.24336870e+00 - sys_corr_82: -2.87196093e-01 + sys_corr_82: 2.87196093e-01 sys_corr_83: 5.30449419e+00 sys_corr_84: -2.17746105e+01 sys_corr_85: 1.67803098e+01 - sys_corr_86: 2.74320419e+00 - sys_corr_87: 4.99595771e-01 + sys_corr_86: -2.74320419e+00 + sys_corr_87: -4.99595771e-01 sys_corr_88: 2.08431897e+00 sys_corr_89: 2.84581184e+00 - sys_corr_90: 2.89956912e+00 - sys_corr_91: 2.42388642e+01 - sys_corr_92: -2.51724554e+00 + sys_corr_90: -2.42388642e+01 + sys_corr_91: -2.89956912e+00 + sys_corr_92: 2.51724554e+00 sys_corr_93: -4.07482001e+00 sys_corr_94: -9.10759543e+00 - sys_corr_95: 5.77772210e-01 + sys_corr_95: -5.77772210e-01 sys_corr_96: 4.32906838e-01 - sys_corr_97: 1.82014822e+01 - sys_corr_98: -2.84641332e+00 + sys_corr_97: -1.82014822e+01 + sys_corr_98: 2.84641332e+00 sys_corr_99: 2.54383758e+01 - sys_corr_100: 1.12753666e+01 - sys_corr_101: 5.71437146e+01 - sys_corr_102: -5.30066213e+01 - sys_corr_103: -1.62155844e+00 - sys_corr_104: -6.55484207e+01 - sys_corr_105: 1.33318961e-02 + sys_corr_100: -1.33318961e-02 + sys_corr_101: -1.12753666e+01 + sys_corr_102: -5.71437146e+01 + sys_corr_103: -5.30066213e+01 + sys_corr_104: 1.62155844e+00 + sys_corr_105: 6.55484207e+01 sys_corr_106: -1.92508825e+00 sys_corr_107: 6.81092907e-01 - sys_corr_108: 3.64552126e-02 - sys_corr_109: 8.16747993e-01 - sys_corr_110: 6.84275013e+01 - sys_corr_111: 1.61792918e+00 - sys_corr_112: 3.48155177e-01 - sys_corr_113: 5.39222431e-02 - sys_corr_114: -1.09087876e-02 - sys_corr_115: -7.35186401e-01 + sys_corr_108: 8.16747993e-01 + sys_corr_109: -3.64552126e-02 + sys_corr_110: -1.61792918e+00 + sys_corr_111: -6.84275013e+01 + sys_corr_112: -3.48155177e-01 + sys_corr_113: -5.39222431e-02 + sys_corr_114: 1.09087876e-02 + sys_corr_115: 7.35186401e-01 sys_corr_116: -7.67275847e-02 - sys_corr_117: -2.23918719e-01 + sys_corr_117: 2.23918719e-01 sys_corr_118: -3.42013128e-01 sys_corr_119: 1.78971620e-02 sys_corr_120: -6.27457633e-01 sys_corr_121: -6.57294060e-04 - sys_corr_122: 1.29294987e-01 - sys_corr_123: 3.64519675e-02 - sys_corr_124: -5.81281296e-01 + sys_corr_122: 3.64519675e-02 + sys_corr_123: -1.29294987e-01 + sys_corr_124: 5.81281296e-01 sys_corr_125: -1.45940929e-01 sys_corr_126: 1.35419688e-02 - sys_corr_127: -1.76853672e+00 - sys_corr_128: -1.37459660e-01 - sys_corr_129: 2.00307473e-01 - sys_corr_130: 1.63386172e-02 - sys_corr_131: -2.91885977e-02 + sys_corr_127: 1.76853672e+00 + sys_corr_128: 1.37459660e-01 + sys_corr_129: -2.00307473e-01 + sys_corr_130: -1.63386172e-02 + sys_corr_131: 2.91885977e-02 sys_corr_132: -3.83924839e-01 stat: 0.0 luminosity: 7.30614940e+01 @@ -14480,17 +14480,17 @@ bins: sys_corr_6: 5.29337177e+00 sys_corr_7: -1.10739815e+00 sys_corr_8: 7.66227719e+00 - sys_corr_9: 2.12490810e+00 - sys_corr_10: 7.60725380e+00 + sys_corr_9: -2.12490810e+00 + sys_corr_10: -7.60725380e+00 sys_corr_11: -9.37597925e+00 - sys_corr_12: 2.19101729e+00 - sys_corr_13: 2.99557240e-01 + sys_corr_12: -2.19101729e+00 + sys_corr_13: -2.99557240e-01 sys_corr_14: 3.77353936e+00 sys_corr_15: -9.44993624e-01 sys_corr_16: -1.15431837e+00 - sys_corr_17: 1.68308280e-01 + sys_corr_17: -1.68308280e-01 sys_corr_18: 5.98255642e+00 - sys_corr_19: 3.69155187e+00 + sys_corr_19: -3.69155187e+00 sys_corr_20: 1.12465107e+00 sys_corr_21: 2.11798505e+00 sys_corr_22: 3.73111979e+00 @@ -14506,103 +14506,103 @@ bins: sys_corr_32: 1.18814573e+00 sys_corr_33: -8.79674230e-01 sys_corr_34: -3.44694576e+00 - sys_corr_35: -2.89225077e-01 - sys_corr_36: 6.56037599e-02 + sys_corr_35: 2.89225077e-01 + sys_corr_36: -6.56037599e-02 sys_corr_37: -3.84509684e-02 sys_corr_38: 5.44980404e-01 - sys_corr_39: -1.87795119e+00 - sys_corr_40: 1.45340262e-01 - sys_corr_41: -2.39074057e+00 + sys_corr_39: 1.87795119e+00 + sys_corr_40: -1.45340262e-01 + sys_corr_41: 2.39074057e+00 sys_corr_42: 8.18112362e-01 sys_corr_43: 1.31751859e+00 sys_corr_44: 4.57320665e+00 sys_corr_45: -3.88712041e-01 - sys_corr_46: 1.42048482e+00 - sys_corr_47: 1.39541282e+00 + sys_corr_46: -1.42048482e+00 + sys_corr_47: -1.39541282e+00 sys_corr_48: -1.03539769e+00 sys_corr_49: 1.28281229e+00 sys_corr_50: 1.31733596e+00 - sys_corr_51: 8.83807124e-01 - sys_corr_52: -1.76605095e+00 - sys_corr_53: 2.48602346e-01 + sys_corr_51: -8.83807124e-01 + sys_corr_52: 1.76605095e+00 + sys_corr_53: -2.48602346e-01 sys_corr_54: 7.51785895e-01 sys_corr_55: -2.47251182e+00 - sys_corr_56: -4.94614410e-01 + sys_corr_56: 4.94614410e-01 sys_corr_57: 2.12042706e+00 - sys_corr_58: 9.92873248e-01 + sys_corr_58: -9.92873248e-01 sys_corr_59: -5.40373738e-02 sys_corr_60: 1.18799187e+00 - sys_corr_61: 1.04459866e+00 - sys_corr_62: -2.44546555e+00 + sys_corr_61: -1.04459866e+00 + sys_corr_62: 2.44546555e+00 sys_corr_63: -8.69992404e-01 sys_corr_64: -3.97995270e-01 - sys_corr_65: 7.08022017e-01 - sys_corr_66: -1.10757244e+00 - sys_corr_67: -9.10020736e-02 + sys_corr_65: -7.08022017e-01 + sys_corr_66: 1.10757244e+00 + sys_corr_67: 9.10020736e-02 sys_corr_68: 5.49913054e-02 sys_corr_69: 2.34134836e+00 sys_corr_70: -2.87999380e-01 - sys_corr_71: -2.76331087e-01 - sys_corr_72: -1.32239535e+00 + sys_corr_71: 2.76331087e-01 + sys_corr_72: 1.32239535e+00 sys_corr_73: -9.78695153e-01 sys_corr_74: 8.64808115e-01 - sys_corr_75: 4.10667470e+00 - sys_corr_76: -2.64778709e+00 + sys_corr_75: -4.10667470e+00 + sys_corr_76: 2.64778709e+00 sys_corr_77: -6.01597237e+00 sys_corr_78: 2.27446869e+00 sys_corr_79: 3.02278831e-01 - sys_corr_80: 1.32521901e+00 + sys_corr_80: -1.32521901e+00 sys_corr_81: 1.48738190e+00 - sys_corr_82: -1.80634940e+00 + sys_corr_82: 1.80634940e+00 sys_corr_83: 3.80071150e+00 sys_corr_84: -1.79705712e+01 sys_corr_85: 1.55345881e+01 - sys_corr_86: 2.25627807e+00 - sys_corr_87: 3.82647717e-01 + sys_corr_86: -2.25627807e+00 + sys_corr_87: -3.82647717e-01 sys_corr_88: 1.46712320e+00 sys_corr_89: 2.64682939e+00 - sys_corr_90: 2.96454830e+00 - sys_corr_91: 2.14679972e+01 - sys_corr_92: -2.80667683e+00 + sys_corr_90: -2.14679972e+01 + sys_corr_91: -2.96454830e+00 + sys_corr_92: 2.80667683e+00 sys_corr_93: -7.42246044e+00 sys_corr_94: -1.91060053e+01 - sys_corr_95: 3.65176785e-01 + sys_corr_95: -3.65176785e-01 sys_corr_96: 6.61198265e-01 - sys_corr_97: 6.88718166e+01 - sys_corr_98: 3.83589009e+01 + sys_corr_97: -6.88718166e+01 + sys_corr_98: -3.83589009e+01 sys_corr_99: 5.31485356e+01 - sys_corr_100: 2.42914849e+01 - sys_corr_101: 1.71133134e+01 - sys_corr_102: -1.53886396e+01 - sys_corr_103: 1.17040278e+01 - sys_corr_104: 6.03228585e+00 - sys_corr_105: 1.05755587e+01 + sys_corr_100: -1.05755587e+01 + sys_corr_101: -2.42914849e+01 + sys_corr_102: -1.71133134e+01 + sys_corr_103: -1.53886396e+01 + sys_corr_104: -1.17040278e+01 + sys_corr_105: -6.03228585e+00 sys_corr_106: 1.56469720e+00 sys_corr_107: -2.81629163e+00 - sys_corr_108: 1.31930250e+00 - sys_corr_109: 3.91561975e-01 - sys_corr_110: -7.46837808e+01 - sys_corr_111: 1.64588459e+00 - sys_corr_112: 7.05293754e-01 - sys_corr_113: 7.25212687e-01 - sys_corr_114: -1.07633732e-02 - sys_corr_115: -2.00016952e-01 + sys_corr_108: 3.91561975e-01 + sys_corr_109: -1.31930250e+00 + sys_corr_110: -1.64588459e+00 + sys_corr_111: 7.46837808e+01 + sys_corr_112: -7.05293754e-01 + sys_corr_113: -7.25212687e-01 + sys_corr_114: 1.07633732e-02 + sys_corr_115: 2.00016952e-01 sys_corr_116: -1.37061040e-01 - sys_corr_117: -9.25716563e-02 + sys_corr_117: 9.25716563e-02 sys_corr_118: -3.70914416e-01 sys_corr_119: 1.65781236e-02 sys_corr_120: 1.75468719e-01 sys_corr_121: -4.45893177e-03 - sys_corr_122: 1.49231298e-01 - sys_corr_123: 3.90960366e-02 - sys_corr_124: -2.64652680e-01 + sys_corr_122: 3.90960366e-02 + sys_corr_123: -1.49231298e-01 + sys_corr_124: 2.64652680e-01 sys_corr_125: -7.14442871e-02 sys_corr_126: 5.07291381e-03 - sys_corr_127: -4.59260872e+01 - sys_corr_128: -2.60478882e-01 - sys_corr_129: 4.88460275e-01 - sys_corr_130: -7.95750970e-03 - sys_corr_131: 4.86092161e-01 + sys_corr_127: 4.59260872e+01 + sys_corr_128: 2.60478882e-01 + sys_corr_129: -4.88460275e-01 + sys_corr_130: 7.95750970e-03 + sys_corr_131: -4.86092161e-01 sys_corr_132: -3.37679746e-01 stat: 0.0 luminosity: 7.07780040e+01 @@ -14614,17 +14614,17 @@ bins: sys_corr_6: 5.36887130e+00 sys_corr_7: -3.87479307e+00 sys_corr_8: 1.18858622e+00 - sys_corr_9: 2.24191325e+00 - sys_corr_10: 2.55779919e+00 + sys_corr_9: -2.24191325e+00 + sys_corr_10: -2.55779919e+00 sys_corr_11: 1.37145194e+01 - sys_corr_12: -4.54159428e+00 - sys_corr_13: 2.50115760e+00 + sys_corr_12: 4.54159428e+00 + sys_corr_13: -2.50115760e+00 sys_corr_14: -2.39095369e-01 sys_corr_15: 2.38500091e+00 sys_corr_16: -6.88449729e+00 - sys_corr_17: -5.22885740e+00 + sys_corr_17: 5.22885740e+00 sys_corr_18: 8.10908968e+00 - sys_corr_19: -6.32022131e+00 + sys_corr_19: 6.32022131e+00 sys_corr_20: 1.13457345e+00 sys_corr_21: 1.18164707e+00 sys_corr_22: 5.78908731e+00 @@ -14640,103 +14640,103 @@ bins: sys_corr_32: 6.75001157e-01 sys_corr_33: -8.10965322e-01 sys_corr_34: -2.97874080e+00 - sys_corr_35: 2.36597621e-01 - sys_corr_36: -9.87870920e-01 + sys_corr_35: -2.36597621e-01 + sys_corr_36: 9.87870920e-01 sys_corr_37: 4.42848842e-01 sys_corr_38: 8.72702302e-02 - sys_corr_39: -2.23177806e+00 - sys_corr_40: 7.49830810e-01 - sys_corr_41: -2.07401179e+00 + sys_corr_39: 2.23177806e+00 + sys_corr_40: -7.49830810e-01 + sys_corr_41: 2.07401179e+00 sys_corr_42: 8.36536203e-01 sys_corr_43: 1.79330264e+00 sys_corr_44: 1.84363693e+00 sys_corr_45: -5.58530046e-01 - sys_corr_46: -2.33301462e-01 - sys_corr_47: 1.87933533e+00 + sys_corr_46: 2.33301462e-01 + sys_corr_47: -1.87933533e+00 sys_corr_48: -2.65197722e+00 sys_corr_49: 2.69243416e+00 sys_corr_50: 2.16443450e+00 - sys_corr_51: 6.06324582e-01 - sys_corr_52: -2.94718160e-01 - sys_corr_53: -2.72097624e-01 + sys_corr_51: -6.06324582e-01 + sys_corr_52: 2.94718160e-01 + sys_corr_53: 2.72097624e-01 sys_corr_54: 9.02354123e-01 sys_corr_55: -1.98975433e-01 - sys_corr_56: 6.19209779e-01 + sys_corr_56: -6.19209779e-01 sys_corr_57: 1.46472784e+00 - sys_corr_58: 1.30151751e+00 + sys_corr_58: -1.30151751e+00 sys_corr_59: 5.20111672e-01 sys_corr_60: 7.89465398e-01 - sys_corr_61: 3.77082175e-02 - sys_corr_62: -1.71231336e+00 + sys_corr_61: -3.77082175e-02 + sys_corr_62: 1.71231336e+00 sys_corr_63: 2.47359271e-01 sys_corr_64: 1.59853032e-01 - sys_corr_65: 1.68389166e-01 - sys_corr_66: -6.04871875e-01 - sys_corr_67: -1.93834861e-01 + sys_corr_65: -1.68389166e-01 + sys_corr_66: 6.04871875e-01 + sys_corr_67: 1.93834861e-01 sys_corr_68: -3.68103033e-01 sys_corr_69: 1.64707215e+00 sys_corr_70: -5.24695836e-01 - sys_corr_71: 4.27942897e-01 - sys_corr_72: -9.53373947e-02 + sys_corr_71: -4.27942897e-01 + sys_corr_72: 9.53373947e-02 sys_corr_73: -4.64799931e-01 sys_corr_74: 7.79437188e-01 - sys_corr_75: 3.25085462e+00 - sys_corr_76: -2.33007789e+00 + sys_corr_75: -3.25085462e+00 + sys_corr_76: 2.33007789e+00 sys_corr_77: -2.78763324e+00 sys_corr_78: 1.17055340e+00 sys_corr_79: 1.72838075e+00 - sys_corr_80: 1.30730075e-02 + sys_corr_80: -1.30730075e-02 sys_corr_81: 8.57991943e-01 - sys_corr_82: -5.63816446e-01 + sys_corr_82: 5.63816446e-01 sys_corr_83: 2.33921369e+00 sys_corr_84: -1.22124250e+01 sys_corr_85: 1.05067067e+01 - sys_corr_86: 1.99153603e+00 - sys_corr_87: 1.12701923e+00 + sys_corr_86: -1.99153603e+00 + sys_corr_87: -1.12701923e+00 sys_corr_88: 1.16772062e+00 sys_corr_89: 1.85795544e+00 - sys_corr_90: 1.81580605e+00 - sys_corr_91: 1.47467380e+01 - sys_corr_92: -1.95464471e+00 + sys_corr_90: -1.47467380e+01 + sys_corr_91: -1.81580605e+00 + sys_corr_92: 1.95464471e+00 sys_corr_93: -3.52247135e+00 sys_corr_94: -8.22823349e+00 - sys_corr_95: -7.04072178e-01 + sys_corr_95: 7.04072178e-01 sys_corr_96: -2.15411311e+00 - sys_corr_97: 1.88942737e+01 - sys_corr_98: 5.79405731e+00 + sys_corr_97: -1.88942737e+01 + sys_corr_98: -5.79405731e+00 sys_corr_99: 4.88842715e+00 - sys_corr_100: 4.70190483e+01 - sys_corr_101: -8.15506292e+01 - sys_corr_102: -7.79474179e+00 - sys_corr_103: -2.92123856e+00 - sys_corr_104: -2.58814748e+01 - sys_corr_105: 5.14711851e+01 + sys_corr_100: -5.14711851e+01 + sys_corr_101: -4.70190483e+01 + sys_corr_102: 8.15506292e+01 + sys_corr_103: -7.79474179e+00 + sys_corr_104: 2.92123856e+00 + sys_corr_105: 2.58814748e+01 sys_corr_106: 2.22041654e+01 sys_corr_107: -6.62581906e+00 - sys_corr_108: 4.83546484e+00 - sys_corr_109: 2.65362662e+00 - sys_corr_110: 2.90058261e+01 - sys_corr_111: 1.46888589e+00 - sys_corr_112: 9.10280260e-01 - sys_corr_113: 5.87664415e-01 - sys_corr_114: -9.62905992e-03 - sys_corr_115: 1.30046587e-02 + sys_corr_108: 2.65362662e+00 + sys_corr_109: -4.83546484e+00 + sys_corr_110: -1.46888589e+00 + sys_corr_111: -2.90058261e+01 + sys_corr_112: -9.10280260e-01 + sys_corr_113: -5.87664415e-01 + sys_corr_114: 9.62905992e-03 + sys_corr_115: -1.30046587e-02 sys_corr_116: -2.76990164e-01 - sys_corr_117: -1.70866993e-01 + sys_corr_117: 1.70866993e-01 sys_corr_118: -2.59856756e-01 sys_corr_119: 7.72025310e-03 sys_corr_120: 2.20143863e-01 sys_corr_121: -1.44407506e-02 - sys_corr_122: 2.10518267e-01 - sys_corr_123: 7.56630226e-02 - sys_corr_124: -3.65238674e-01 + sys_corr_122: 7.56630226e-02 + sys_corr_123: -2.10518267e-01 + sys_corr_124: 3.65238674e-01 sys_corr_125: -7.01058344e-02 sys_corr_126: 2.44237152e-02 - sys_corr_127: 1.07761567e+01 - sys_corr_128: -8.90459969e-01 - sys_corr_129: 6.18792364e-01 - sys_corr_130: 2.27948910e-02 - sys_corr_131: 4.17924985e-01 + sys_corr_127: -1.07761567e+01 + sys_corr_128: 8.90459969e-01 + sys_corr_129: -6.18792364e-01 + sys_corr_130: -2.27948910e-02 + sys_corr_131: -4.17924985e-01 sys_corr_132: -4.21839520e-01 stat: 0.0 luminosity: 6.71529980e+01 @@ -14748,17 +14748,17 @@ bins: sys_corr_6: 3.87527715e+00 sys_corr_7: -5.00474158e+00 sys_corr_8: -9.85573976e-01 - sys_corr_9: 2.09596811e+00 - sys_corr_10: 2.65666697e+00 + sys_corr_9: -2.09596811e+00 + sys_corr_10: -2.65666697e+00 sys_corr_11: 7.57114508e-01 - sys_corr_12: 3.87730576e+00 - sys_corr_13: -6.21392237e+00 + sys_corr_12: -3.87730576e+00 + sys_corr_13: 6.21392237e+00 sys_corr_14: -1.60278066e+01 sys_corr_15: 4.10130802e+00 sys_corr_16: 3.50243639e+00 - sys_corr_17: 1.08007424e+00 + sys_corr_17: -1.08007424e+00 sys_corr_18: -1.32346668e+01 - sys_corr_19: -3.38192060e+00 + sys_corr_19: 3.38192060e+00 sys_corr_20: 1.50435045e+00 sys_corr_21: 1.53031249e+00 sys_corr_22: 4.62785780e+00 @@ -14774,103 +14774,103 @@ bins: sys_corr_32: -4.15311948e-02 sys_corr_33: 6.35307351e-01 sys_corr_34: -3.45093001e+00 - sys_corr_35: 1.88056521e-01 - sys_corr_36: -1.22924348e+00 + sys_corr_35: -1.88056521e-01 + sys_corr_36: 1.22924348e+00 sys_corr_37: 6.19144226e-01 sys_corr_38: 3.31929399e-01 - sys_corr_39: 1.41383582e+00 - sys_corr_40: 1.56554415e+00 - sys_corr_41: -8.70641059e-01 + sys_corr_39: -1.41383582e+00 + sys_corr_40: -1.56554415e+00 + sys_corr_41: 8.70641059e-01 sys_corr_42: -2.21153875e-01 sys_corr_43: 1.10004772e+00 sys_corr_44: 1.18358252e+00 sys_corr_45: -1.27315981e+00 - sys_corr_46: -6.02156733e-01 - sys_corr_47: 1.48349510e+00 + sys_corr_46: 6.02156733e-01 + sys_corr_47: -1.48349510e+00 sys_corr_48: -3.75727273e+00 sys_corr_49: 3.30815643e+00 sys_corr_50: 2.41497192e+00 - sys_corr_51: -4.12501759e-01 - sys_corr_52: 1.90650681e-01 - sys_corr_53: 7.49425568e-01 + sys_corr_51: 4.12501759e-01 + sys_corr_52: -1.90650681e-01 + sys_corr_53: -7.49425568e-01 sys_corr_54: 3.17797241e-01 sys_corr_55: 2.81127959e-01 - sys_corr_56: 4.04098394e-01 + sys_corr_56: -4.04098394e-01 sys_corr_57: 1.09893819e+00 - sys_corr_58: 2.58942376e-01 + sys_corr_58: -2.58942376e-01 sys_corr_59: -9.69828930e-02 sys_corr_60: 1.08233535e+00 - sys_corr_61: -5.37818775e-01 - sys_corr_62: -4.47313142e-01 + sys_corr_61: 5.37818775e-01 + sys_corr_62: 4.47313142e-01 sys_corr_63: -3.28312083e-01 sys_corr_64: 3.88490107e-01 - sys_corr_65: -3.20841013e-01 - sys_corr_66: -9.69261204e-01 - sys_corr_67: -3.37352909e-01 + sys_corr_65: 3.20841013e-01 + sys_corr_66: 9.69261204e-01 + sys_corr_67: 3.37352909e-01 sys_corr_68: -1.98777504e-01 sys_corr_69: 1.56319638e+00 sys_corr_70: -5.79334877e-01 - sys_corr_71: 1.35871047e-02 - sys_corr_72: -2.32206267e-01 + sys_corr_71: -1.35871047e-02 + sys_corr_72: 2.32206267e-01 sys_corr_73: 6.17836229e-01 sys_corr_74: 1.57720118e+00 - sys_corr_75: 2.22549409e+00 - sys_corr_76: -1.06901257e+00 + sys_corr_75: -2.22549409e+00 + sys_corr_76: 1.06901257e+00 sys_corr_77: -2.46869860e+00 sys_corr_78: 1.61450063e+00 sys_corr_79: 9.30224184e-01 - sys_corr_80: -4.07702766e-01 + sys_corr_80: 4.07702766e-01 sys_corr_81: 2.96377273e-01 - sys_corr_82: -6.94401804e-01 + sys_corr_82: 6.94401804e-01 sys_corr_83: 1.28987379e+00 sys_corr_84: -7.13394590e+00 sys_corr_85: 4.92378057e+00 - sys_corr_86: 1.20750837e+00 - sys_corr_87: 7.92049957e-01 + sys_corr_86: -1.20750837e+00 + sys_corr_87: -7.92049957e-01 sys_corr_88: 8.40783913e-01 sys_corr_89: 1.03817301e+00 - sys_corr_90: 1.23270852e+00 - sys_corr_91: 7.72794450e+00 - sys_corr_92: -5.62667513e-01 + sys_corr_90: -7.72794450e+00 + sys_corr_91: -1.23270852e+00 + sys_corr_92: 5.62667513e-01 sys_corr_93: -2.86150406e+00 sys_corr_94: -9.02870001e+00 - sys_corr_95: 7.11201702e-01 + sys_corr_95: -7.11201702e-01 sys_corr_96: 4.35656662e-01 - sys_corr_97: 2.16979002e+01 - sys_corr_98: 1.04420916e+01 + sys_corr_97: -2.16979002e+01 + sys_corr_98: -1.04420916e+01 sys_corr_99: 1.21884119e+01 - sys_corr_100: -9.53516372e+01 - sys_corr_101: -1.26727257e+01 - sys_corr_102: -6.01802839e+00 - sys_corr_103: -4.36438988e-01 - sys_corr_104: -1.63826240e+01 - sys_corr_105: 2.49962758e+01 + sys_corr_100: -2.49962758e+01 + sys_corr_101: 9.53516372e+01 + sys_corr_102: 1.26727257e+01 + sys_corr_103: -6.01802839e+00 + sys_corr_104: 4.36438988e-01 + sys_corr_105: 1.63826240e+01 sys_corr_106: 4.78768145e+01 sys_corr_107: 1.43536160e+01 - sys_corr_108: 9.55291125e+00 - sys_corr_109: 1.66744519e+00 - sys_corr_110: -2.03022370e-01 - sys_corr_111: 7.45569722e+00 - sys_corr_112: 8.01035975e-01 - sys_corr_113: 8.11973841e-01 - sys_corr_114: -4.74372606e-03 - sys_corr_115: 5.67398165e-01 + sys_corr_108: 1.66744519e+00 + sys_corr_109: -9.55291125e+00 + sys_corr_110: -7.45569722e+00 + sys_corr_111: 2.03022370e-01 + sys_corr_112: -8.01035975e-01 + sys_corr_113: -8.11973841e-01 + sys_corr_114: 4.74372606e-03 + sys_corr_115: -5.67398165e-01 sys_corr_116: -2.34294669e-01 - sys_corr_117: -1.30145334e-01 + sys_corr_117: 1.30145334e-01 sys_corr_118: 1.69115766e-02 sys_corr_119: -2.72546474e-03 sys_corr_120: 3.49021289e-02 sys_corr_121: -2.08533038e-02 - sys_corr_122: 1.82242911e-01 - sys_corr_123: 8.97978510e-02 - sys_corr_124: -1.27582083e-01 + sys_corr_122: 8.97978510e-02 + sys_corr_123: -1.82242911e-01 + sys_corr_124: 1.27582083e-01 sys_corr_125: 6.56158564e-01 sys_corr_126: 3.19373259e-02 - sys_corr_127: -4.72880974e+00 - sys_corr_128: -6.08309194e+00 - sys_corr_129: 4.96581286e-01 - sys_corr_130: 3.67836775e-02 - sys_corr_131: -1.97444236e-01 + sys_corr_127: 4.72880974e+00 + sys_corr_128: 6.08309194e+00 + sys_corr_129: -4.96581286e-01 + sys_corr_130: -3.67836775e-02 + sys_corr_131: 1.97444236e-01 sys_corr_132: -3.45345016e-01 stat: 0.0 luminosity: 6.66649280e+01 @@ -14882,17 +14882,17 @@ bins: sys_corr_6: 2.16664208e+00 sys_corr_7: -7.46771700e+00 sys_corr_8: -3.76319644e+00 - sys_corr_9: -3.19853977e+00 - sys_corr_10: 3.09272094e+00 + sys_corr_9: 3.19853977e+00 + sys_corr_10: -3.09272094e+00 sys_corr_11: 6.39911165e+00 - sys_corr_12: 7.84077705e+00 - sys_corr_13: -5.02824578e-01 + sys_corr_12: -7.84077705e+00 + sys_corr_13: 5.02824578e-01 sys_corr_14: 7.67621980e+00 sys_corr_15: -1.42272867e+00 sys_corr_16: 4.49180482e+00 - sys_corr_17: 5.34046293e+00 + sys_corr_17: -5.34046293e+00 sys_corr_18: -7.67397370e+00 - sys_corr_19: 7.92170337e+00 + sys_corr_19: -7.92170337e+00 sys_corr_20: 3.09144277e+00 sys_corr_21: 2.33895295e+00 sys_corr_22: 1.95400839e+00 @@ -14908,103 +14908,103 @@ bins: sys_corr_32: -5.62777517e-01 sys_corr_33: -9.29683816e-01 sys_corr_34: -7.91791995e-01 - sys_corr_35: -2.78667278e-01 - sys_corr_36: 3.16396459e-01 + sys_corr_35: 2.78667278e-01 + sys_corr_36: -3.16396459e-01 sys_corr_37: 2.67195302e-01 sys_corr_38: 3.67956669e-01 - sys_corr_39: 3.09448403e-01 - sys_corr_40: 7.50702055e-01 - sys_corr_41: -1.12151391e-01 + sys_corr_39: -3.09448403e-01 + sys_corr_40: -7.50702055e-01 + sys_corr_41: 1.12151391e-01 sys_corr_42: 1.51229244e-01 sys_corr_43: 9.68620978e-01 sys_corr_44: 1.35584673e+00 sys_corr_45: -4.69740567e-01 - sys_corr_46: -3.23167300e-01 - sys_corr_47: 2.43577711e+00 + sys_corr_46: 3.23167300e-01 + sys_corr_47: -2.43577711e+00 sys_corr_48: -3.42650290e+00 sys_corr_49: 2.49455295e+00 sys_corr_50: 1.94600606e+00 - sys_corr_51: 8.82735229e-01 - sys_corr_52: -3.26332961e-01 - sys_corr_53: -1.11390462e-01 + sys_corr_51: -8.82735229e-01 + sys_corr_52: 3.26332961e-01 + sys_corr_53: 1.11390462e-01 sys_corr_54: 9.54229046e-01 sys_corr_55: 3.95008795e-01 - sys_corr_56: 2.10822564e-01 + sys_corr_56: -2.10822564e-01 sys_corr_57: 2.89808553e-01 - sys_corr_58: -3.84782551e-02 + sys_corr_58: 3.84782551e-02 sys_corr_59: 5.78745120e-02 sys_corr_60: 1.56152039e+00 - sys_corr_61: 5.69476221e-01 - sys_corr_62: 6.60869569e-01 + sys_corr_61: -5.69476221e-01 + sys_corr_62: -6.60869569e-01 sys_corr_63: 2.49267468e-01 sys_corr_64: -5.29271408e-01 - sys_corr_65: 4.14272016e-01 - sys_corr_66: -2.49791241e-01 - sys_corr_67: -1.57487531e-01 + sys_corr_65: -4.14272016e-01 + sys_corr_66: 2.49791241e-01 + sys_corr_67: 1.57487531e-01 sys_corr_68: -1.13084646e-01 sys_corr_69: 8.90211177e-01 sys_corr_70: -4.84065696e-01 - sys_corr_71: 5.85031772e-01 - sys_corr_72: 5.65108983e-01 + sys_corr_71: -5.85031772e-01 + sys_corr_72: -5.65108983e-01 sys_corr_73: 1.17698548e+00 sys_corr_74: 1.88411923e+00 - sys_corr_75: 2.12233487e+00 - sys_corr_76: -3.37531572e-01 + sys_corr_75: -2.12233487e+00 + sys_corr_76: 3.37531572e-01 sys_corr_77: -2.83878437e+00 sys_corr_78: 9.90070024e-01 sys_corr_79: 2.98166698e-01 - sys_corr_80: -7.55047693e-01 + sys_corr_80: 7.55047693e-01 sys_corr_81: 1.51552715e+00 - sys_corr_82: -7.08677440e-01 + sys_corr_82: 7.08677440e-01 sys_corr_83: 5.52832202e-01 sys_corr_84: -3.25103928e+00 sys_corr_85: 2.72030206e+00 - sys_corr_86: 8.72686155e-01 - sys_corr_87: 6.58496949e-01 + sys_corr_86: -8.72686155e-01 + sys_corr_87: -6.58496949e-01 sys_corr_88: -1.76645911e-01 sys_corr_89: 4.09361371e-01 - sys_corr_90: 1.78535471e+00 - sys_corr_91: 3.66905174e+00 - sys_corr_92: 2.83604536e-01 + sys_corr_90: -3.66905174e+00 + sys_corr_91: -1.78535471e+00 + sys_corr_92: -2.83604536e-01 sys_corr_93: -1.93411288e+00 sys_corr_94: -6.45307623e+00 - sys_corr_95: 8.32423557e-01 + sys_corr_95: -8.32423557e-01 sys_corr_96: -1.92078369e-01 - sys_corr_97: 1.43138500e+01 - sys_corr_98: 7.02469145e+00 + sys_corr_97: -1.43138500e+01 + sys_corr_98: -7.02469145e+00 sys_corr_99: 6.59450339e+00 - sys_corr_100: 1.94554854e+01 - sys_corr_101: -2.99945572e+01 - sys_corr_102: -1.25517693e+00 - sys_corr_103: -1.73046740e+00 - sys_corr_104: -1.41034099e+01 - sys_corr_105: -7.31377666e+01 + sys_corr_100: 7.31377666e+01 + sys_corr_101: -1.94554854e+01 + sys_corr_102: 2.99945572e+01 + sys_corr_103: -1.25517693e+00 + sys_corr_104: 1.73046740e+00 + sys_corr_105: 1.41034099e+01 sys_corr_106: 2.87174674e+01 sys_corr_107: 6.29961996e+01 - sys_corr_108: 1.23744333e+01 - sys_corr_109: 3.61989334e+00 - sys_corr_110: 3.52192757e+00 - sys_corr_111: -9.81791646e-01 - sys_corr_112: 3.12406697e+00 - sys_corr_113: 2.03985410e+00 - sys_corr_114: 5.48204929e-04 - sys_corr_115: 1.50506638e+00 + sys_corr_108: 3.61989334e+00 + sys_corr_109: -1.23744333e+01 + sys_corr_110: 9.81791646e-01 + sys_corr_111: -3.52192757e+00 + sys_corr_112: -3.12406697e+00 + sys_corr_113: -2.03985410e+00 + sys_corr_114: -5.48204929e-04 + sys_corr_115: -1.50506638e+00 sys_corr_116: -3.96458792e-01 - sys_corr_117: -1.68546457e-01 + sys_corr_117: 1.68546457e-01 sys_corr_118: 1.34622769e-01 sys_corr_119: -1.54991666e-02 sys_corr_120: 6.92307010e-02 sys_corr_121: -1.23005046e-02 - sys_corr_122: 7.91412681e-02 - sys_corr_123: 9.97571484e-02 - sys_corr_124: -1.31477127e-01 + sys_corr_122: 9.97571484e-02 + sys_corr_123: -7.91412681e-02 + sys_corr_124: 1.31477127e-01 sys_corr_125: 5.57136763e-01 sys_corr_126: 2.03334102e-02 - sys_corr_127: -1.49731894e+00 - sys_corr_128: -6.29639597e+00 - sys_corr_129: 1.37449039e+00 - sys_corr_130: -1.50139882e-02 - sys_corr_131: -1.94307414e-01 + sys_corr_127: 1.49731894e+00 + sys_corr_128: 6.29639597e+00 + sys_corr_129: -1.37449039e+00 + sys_corr_130: 1.50139882e-02 + sys_corr_131: 1.94307414e-01 sys_corr_132: -1.29709290e-01 stat: 0.0 luminosity: 6.13636320e+01 @@ -15016,17 +15016,17 @@ bins: sys_corr_6: -1.04399370e+00 sys_corr_7: -1.79382739e+00 sys_corr_8: -2.15056663e-01 - sys_corr_9: -1.22075506e+00 - sys_corr_10: 1.26612738e+00 + sys_corr_9: 1.22075506e+00 + sys_corr_10: -1.26612738e+00 sys_corr_11: -1.06512139e+00 - sys_corr_12: 7.61107837e+00 - sys_corr_13: -6.69269513e+00 + sys_corr_12: -7.61107837e+00 + sys_corr_13: 6.69269513e+00 sys_corr_14: 3.09608547e+00 sys_corr_15: -1.36147736e-01 sys_corr_16: -3.24438001e+00 - sys_corr_17: -1.29060467e+01 + sys_corr_17: 1.29060467e+01 sys_corr_18: -2.90697119e+00 - sys_corr_19: -9.84676167e+00 + sys_corr_19: 9.84676167e+00 sys_corr_20: -2.25045317e-01 sys_corr_21: 5.89791110e+00 sys_corr_22: 5.89375603e+00 @@ -15042,103 +15042,103 @@ bins: sys_corr_32: -3.72864619e-01 sys_corr_33: 4.88384167e-01 sys_corr_34: -1.98426795e+00 - sys_corr_35: 1.57461483e+00 - sys_corr_36: -2.76990437e+00 + sys_corr_35: -1.57461483e+00 + sys_corr_36: 2.76990437e+00 sys_corr_37: 8.06259044e-01 sys_corr_38: -6.97704133e-02 - sys_corr_39: 3.92341868e-01 - sys_corr_40: 1.17639315e+00 - sys_corr_41: 7.49333818e-01 + sys_corr_39: -3.92341868e-01 + sys_corr_40: -1.17639315e+00 + sys_corr_41: -7.49333818e-01 sys_corr_42: 1.09607537e+00 sys_corr_43: 8.69579884e-01 sys_corr_44: -9.58616346e-01 sys_corr_45: 1.03754333e-01 - sys_corr_46: -7.13682850e-01 - sys_corr_47: 1.88149653e+00 + sys_corr_46: 7.13682850e-01 + sys_corr_47: -1.88149653e+00 sys_corr_48: -5.23636999e+00 sys_corr_49: 2.80250784e+00 sys_corr_50: 4.11126455e+00 - sys_corr_51: -1.00295310e+00 - sys_corr_52: 1.30864562e+00 - sys_corr_53: 1.18607444e-01 + sys_corr_51: 1.00295310e+00 + sys_corr_52: -1.30864562e+00 + sys_corr_53: -1.18607444e-01 sys_corr_54: 6.05713207e-01 sys_corr_55: 2.01029388e-01 - sys_corr_56: 5.94735426e-01 + sys_corr_56: -5.94735426e-01 sys_corr_57: 1.13921534e-01 - sys_corr_58: -3.74477308e-01 + sys_corr_58: 3.74477308e-01 sys_corr_59: 1.92009622e-01 sys_corr_60: 1.08110046e+00 - sys_corr_61: -5.85964629e-02 - sys_corr_62: 5.69251784e-01 + sys_corr_61: 5.85964629e-02 + sys_corr_62: -5.69251784e-01 sys_corr_63: 4.71738439e-01 sys_corr_64: 2.56626130e-01 - sys_corr_65: -3.63554812e-01 - sys_corr_66: -3.58812743e-01 - sys_corr_67: -1.17697207e+00 + sys_corr_65: 3.63554812e-01 + sys_corr_66: 3.58812743e-01 + sys_corr_67: 1.17697207e+00 sys_corr_68: -8.85819016e-01 sys_corr_69: 1.14197480e+00 sys_corr_70: -4.07122124e-01 - sys_corr_71: -5.53853133e-01 - sys_corr_72: -2.91803838e-02 + sys_corr_71: 5.53853133e-01 + sys_corr_72: 2.91803838e-02 sys_corr_73: -1.16090983e-01 sys_corr_74: 1.58447191e+00 - sys_corr_75: 2.20013383e+00 - sys_corr_76: -1.01547576e+00 + sys_corr_75: -2.20013383e+00 + sys_corr_76: 1.01547576e+00 sys_corr_77: -1.47031400e+00 sys_corr_78: 9.45997934e-01 sys_corr_79: -2.29580482e-01 - sys_corr_80: -1.19036977e+00 + sys_corr_80: 1.19036977e+00 sys_corr_81: 1.20828875e+00 - sys_corr_82: -8.77544367e-01 + sys_corr_82: 8.77544367e-01 sys_corr_83: 6.80700601e-01 sys_corr_84: -2.28834994e+00 sys_corr_85: 1.27650320e+00 - sys_corr_86: 1.07638431e+00 - sys_corr_87: 3.79545229e-01 + sys_corr_86: -1.07638431e+00 + sys_corr_87: -3.79545229e-01 sys_corr_88: 7.14805876e-01 sys_corr_89: 6.71367870e-01 - sys_corr_90: 8.83168320e-01 - sys_corr_91: 3.05713719e+00 - sys_corr_92: -2.85127462e-01 + sys_corr_90: -3.05713719e+00 + sys_corr_91: -8.83168320e-01 + sys_corr_92: 2.85127462e-01 sys_corr_93: -2.30834394e+00 sys_corr_94: -8.55770436e+00 - sys_corr_95: 2.24548862e+00 + sys_corr_95: -2.24548862e+00 sys_corr_96: -2.98927694e-02 - sys_corr_97: 1.50693393e+01 - sys_corr_98: 7.35403520e+00 + sys_corr_97: -1.50693393e+01 + sys_corr_98: -7.35403520e+00 sys_corr_99: 8.07128120e+00 - sys_corr_100: -2.58105149e+01 - sys_corr_101: -2.25221546e+01 - sys_corr_102: 2.77208669e+00 - sys_corr_103: -3.00076353e+00 - sys_corr_104: -1.81444534e+01 - sys_corr_105: 1.93396415e+01 + sys_corr_100: -1.93396415e+01 + sys_corr_101: 2.58105149e+01 + sys_corr_102: 2.25221546e+01 + sys_corr_103: 2.77208669e+00 + sys_corr_104: 3.00076353e+00 + sys_corr_105: 1.81444534e+01 sys_corr_106: -7.86150590e+01 sys_corr_107: 4.30758347e+01 - sys_corr_108: 3.82619702e+00 - sys_corr_109: 8.91946611e+00 - sys_corr_110: 1.85091124e+00 - sys_corr_111: -3.81826333e+01 - sys_corr_112: 3.24073304e+00 - sys_corr_113: 2.94016917e+00 - sys_corr_114: 5.96091732e-03 - sys_corr_115: 2.74463734e+00 + sys_corr_108: 8.91946611e+00 + sys_corr_109: -3.82619702e+00 + sys_corr_110: 3.81826333e+01 + sys_corr_111: -1.85091124e+00 + sys_corr_112: -3.24073304e+00 + sys_corr_113: -2.94016917e+00 + sys_corr_114: -5.96091732e-03 + sys_corr_115: -2.74463734e+00 sys_corr_116: -4.50913202e-01 - sys_corr_117: -1.89168081e-01 + sys_corr_117: 1.89168081e-01 sys_corr_118: 6.01610729e-01 sys_corr_119: -2.67895579e-02 sys_corr_120: 5.49578148e-02 sys_corr_121: 1.38422867e-03 - sys_corr_122: -4.69453908e-01 - sys_corr_123: 2.27249514e-01 - sys_corr_124: 1.55284779e-01 + sys_corr_122: 2.27249514e-01 + sys_corr_123: 4.69453908e-01 + sys_corr_124: -1.55284779e-01 sys_corr_125: -7.57243966e-02 sys_corr_126: 9.04142772e-02 - sys_corr_127: -1.19846875e+00 - sys_corr_128: 1.01084468e+01 - sys_corr_129: 1.88587535e+00 - sys_corr_130: -4.95609562e-03 - sys_corr_131: -2.42190349e-02 + sys_corr_127: 1.19846875e+00 + sys_corr_128: -1.01084468e+01 + sys_corr_129: -1.88587535e+00 + sys_corr_130: 4.95609562e-03 + sys_corr_131: 2.42190349e-02 sys_corr_132: -5.10619289e-02 stat: 0.0 luminosity: 5.96221780e+01 @@ -15150,17 +15150,17 @@ bins: sys_corr_6: -4.82967556e+00 sys_corr_7: 1.77779881e+00 sys_corr_8: -7.65919753e-01 - sys_corr_9: -1.24625896e+00 - sys_corr_10: -1.93846131e+00 + sys_corr_9: 1.24625896e+00 + sys_corr_10: 1.93846131e+00 sys_corr_11: 3.64711691e+00 - sys_corr_12: 2.36333078e+00 - sys_corr_13: -4.46734720e+00 + sys_corr_12: -2.36333078e+00 + sys_corr_13: 4.46734720e+00 sys_corr_14: -1.32835153e+00 sys_corr_15: 3.02335953e+00 sys_corr_16: -5.04978981e+00 - sys_corr_17: 1.45133915e+01 + sys_corr_17: -1.45133915e+01 sys_corr_18: 1.22198774e+01 - sys_corr_19: -4.09644355e+00 + sys_corr_19: 4.09644355e+00 sys_corr_20: 4.95015256e+00 sys_corr_21: -4.37073572e-01 sys_corr_22: 6.96185694e+00 @@ -15176,103 +15176,103 @@ bins: sys_corr_32: -1.59133830e-01 sys_corr_33: 1.00965632e-01 sys_corr_34: -2.00347611e+00 - sys_corr_35: -1.38423293e-01 - sys_corr_36: -1.81802095e-01 + sys_corr_35: 1.38423293e-01 + sys_corr_36: 1.81802095e-01 sys_corr_37: -6.50850980e-01 sys_corr_38: 5.31119182e-01 - sys_corr_39: -1.12813726e-01 - sys_corr_40: 1.95920515e-01 - sys_corr_41: 6.99398341e-01 + sys_corr_39: 1.12813726e-01 + sys_corr_40: -1.95920515e-01 + sys_corr_41: -6.99398341e-01 sys_corr_42: 1.06434081e+00 sys_corr_43: 1.24045404e+00 sys_corr_44: -1.51931620e+00 sys_corr_45: -3.59527704e-01 - sys_corr_46: 4.18420254e-01 - sys_corr_47: 2.50976171e+00 + sys_corr_46: -4.18420254e-01 + sys_corr_47: -2.50976171e+00 sys_corr_48: -6.57786855e+00 sys_corr_49: 3.21566623e+00 sys_corr_50: 4.35013898e+00 - sys_corr_51: -1.65091265e+00 - sys_corr_52: 2.16651039e+00 - sys_corr_53: -2.65894102e-01 + sys_corr_51: 1.65091265e+00 + sys_corr_52: -2.16651039e+00 + sys_corr_53: 2.65894102e-01 sys_corr_54: 7.73834214e-01 sys_corr_55: 6.17233759e-02 - sys_corr_56: 8.46999439e-02 + sys_corr_56: -8.46999439e-02 sys_corr_57: -3.37962319e-01 - sys_corr_58: -5.48053845e-02 + sys_corr_58: 5.48053845e-02 sys_corr_59: -4.15463811e-02 sys_corr_60: 1.05082520e+00 - sys_corr_61: -4.38978420e-02 - sys_corr_62: 3.79134793e-01 + sys_corr_61: 4.38978420e-02 + sys_corr_62: -3.79134793e-01 sys_corr_63: 1.14743992e+00 sys_corr_64: -1.22295682e-01 - sys_corr_65: -4.22511464e-01 - sys_corr_66: 6.15738610e-01 - sys_corr_67: -7.61263982e-01 + sys_corr_65: 4.22511464e-01 + sys_corr_66: -6.15738610e-01 + sys_corr_67: 7.61263982e-01 sys_corr_68: -6.81072530e-02 sys_corr_69: 4.75329224e-01 sys_corr_70: -5.87363483e-01 - sys_corr_71: -2.64868920e-01 - sys_corr_72: -8.04306756e-01 + sys_corr_71: 2.64868920e-01 + sys_corr_72: 8.04306756e-01 sys_corr_73: 4.40107410e-01 sys_corr_74: 1.55912553e+00 - sys_corr_75: 1.84916086e+00 - sys_corr_76: -6.47714352e-01 + sys_corr_75: -1.84916086e+00 + sys_corr_76: 6.47714352e-01 sys_corr_77: -1.87437591e+00 sys_corr_78: 2.55101002e+00 sys_corr_79: 6.80192451e-01 - sys_corr_80: -8.09130922e-01 + sys_corr_80: 8.09130922e-01 sys_corr_81: 7.28404200e-01 - sys_corr_82: -5.77889226e-01 + sys_corr_82: 5.77889226e-01 sys_corr_83: 3.17223959e-01 sys_corr_84: -3.18045203e+00 sys_corr_85: 1.79163350e+00 - sys_corr_86: 1.07987080e+00 - sys_corr_87: -2.67084072e-01 + sys_corr_86: -1.07987080e+00 + sys_corr_87: 2.67084072e-01 sys_corr_88: 3.82755769e-01 sys_corr_89: 1.02817092e+00 - sys_corr_90: 1.06219495e+00 - sys_corr_91: 2.33436636e+00 - sys_corr_92: -5.33590128e-01 + sys_corr_90: -2.33436636e+00 + sys_corr_91: -1.06219495e+00 + sys_corr_92: 5.33590128e-01 sys_corr_93: -1.84193047e+00 sys_corr_94: -7.38148259e+00 - sys_corr_95: 2.02762759e+00 + sys_corr_95: -2.02762759e+00 sys_corr_96: 3.62321550e-01 - sys_corr_97: 1.00689759e+01 - sys_corr_98: 5.03415200e+00 + sys_corr_97: -1.00689759e+01 + sys_corr_98: -5.03415200e+00 sys_corr_99: 7.12570155e+00 - sys_corr_100: -1.03573752e+01 - sys_corr_101: -1.46377306e+01 - sys_corr_102: 8.89827705e-03 - sys_corr_103: -2.73313207e+00 - sys_corr_104: -1.26425877e+01 - sys_corr_105: -2.92990436e+01 + sys_corr_100: 2.92990436e+01 + sys_corr_101: 1.03573752e+01 + sys_corr_102: 1.46377306e+01 + sys_corr_103: 8.89827705e-03 + sys_corr_104: 2.73313207e+00 + sys_corr_105: 1.26425877e+01 sys_corr_106: 2.34888184e+01 sys_corr_107: -3.71139044e+01 - sys_corr_108: -4.39194499e+01 - sys_corr_109: 1.51591019e+01 - sys_corr_110: 1.71309771e+00 - sys_corr_111: -6.23665180e+01 - sys_corr_112: 4.11805645e+00 - sys_corr_113: 4.85952108e+00 - sys_corr_114: 1.14827478e-02 - sys_corr_115: 3.49260710e+00 + sys_corr_108: 1.51591019e+01 + sys_corr_109: 4.39194499e+01 + sys_corr_110: 6.23665180e+01 + sys_corr_111: -1.71309771e+00 + sys_corr_112: -4.11805645e+00 + sys_corr_113: -4.85952108e+00 + sys_corr_114: -1.14827478e-02 + sys_corr_115: -3.49260710e+00 sys_corr_116: -6.12918556e-01 - sys_corr_117: -2.30597085e-01 + sys_corr_117: 2.30597085e-01 sys_corr_118: 8.97099514e-01 sys_corr_119: -4.60062873e-02 sys_corr_120: 1.17127045e-01 sys_corr_121: 1.53642484e-02 - sys_corr_122: -5.16453957e-01 - sys_corr_123: 1.72337446e-01 - sys_corr_124: 7.40860662e-02 + sys_corr_122: 1.72337446e-01 + sys_corr_123: 5.16453957e-01 + sys_corr_124: -7.40860662e-02 sys_corr_125: -1.54798762e-01 sys_corr_126: 1.27612120e-01 - sys_corr_127: -1.67498087e+00 - sys_corr_128: 2.97750527e+01 - sys_corr_129: 1.47445305e+00 - sys_corr_130: -9.63408327e-03 - sys_corr_131: -6.23115055e-02 + sys_corr_127: 1.67498087e+00 + sys_corr_128: -2.97750527e+01 + sys_corr_129: -1.47445305e+00 + sys_corr_130: 9.63408327e-03 + sys_corr_131: 6.23115055e-02 sys_corr_132: 8.17892496e-02 stat: 0.0 luminosity: 55.40271 @@ -15284,17 +15284,17 @@ bins: sys_corr_6: -7.30395863e+00 sys_corr_7: 3.32944290e+00 sys_corr_8: 1.71283656e+00 - sys_corr_9: 6.13084057e-02 - sys_corr_10: 9.09091570e-01 + sys_corr_9: -6.13084057e-02 + sys_corr_10: -9.09091570e-01 sys_corr_11: 3.53925422e+00 - sys_corr_12: 2.24202943e+00 - sys_corr_13: -3.40310986e-01 + sys_corr_12: -2.24202943e+00 + sys_corr_13: 3.40310986e-01 sys_corr_14: -3.36935043e+00 sys_corr_15: 1.61827286e+00 sys_corr_16: -1.34904537e+00 - sys_corr_17: -1.13968636e+01 + sys_corr_17: 1.13968636e+01 sys_corr_18: -2.43815825e+00 - sys_corr_19: 1.72381092e+01 + sys_corr_19: -1.72381092e+01 sys_corr_20: 3.67298081e+00 sys_corr_21: -9.78924564e+00 sys_corr_22: 3.54131806e-01 @@ -15310,103 +15310,103 @@ bins: sys_corr_32: -1.95613578e-01 sys_corr_33: -9.68436347e-02 sys_corr_34: -1.23082459e+00 - sys_corr_35: 4.24144917e-01 - sys_corr_36: -1.95344320e+00 + sys_corr_35: -4.24144917e-01 + sys_corr_36: 1.95344320e+00 sys_corr_37: 9.05020777e-01 sys_corr_38: -5.19649177e-01 - sys_corr_39: -3.85511939e-01 - sys_corr_40: -5.69097712e-01 - sys_corr_41: 1.17318095e+00 + sys_corr_39: 3.85511939e-01 + sys_corr_40: 5.69097712e-01 + sys_corr_41: -1.17318095e+00 sys_corr_42: 2.11591902e+00 sys_corr_43: 6.53842927e-01 sys_corr_44: -1.23702372e+00 sys_corr_45: -1.65136024e-01 - sys_corr_46: 6.38367436e-01 - sys_corr_47: 2.72354562e+00 + sys_corr_46: -6.38367436e-01 + sys_corr_47: -2.72354562e+00 sys_corr_48: -6.78735851e+00 sys_corr_49: 3.17388243e+00 sys_corr_50: 2.94751562e+00 - sys_corr_51: -8.58034441e-01 - sys_corr_52: 6.72845396e-01 - sys_corr_53: -2.68225122e-01 + sys_corr_51: 8.58034441e-01 + sys_corr_52: -6.72845396e-01 + sys_corr_53: 2.68225122e-01 sys_corr_54: 8.80374162e-01 sys_corr_55: -6.92656058e-01 - sys_corr_56: 3.24566744e-02 + sys_corr_56: -3.24566744e-02 sys_corr_57: 1.89868349e-01 - sys_corr_58: 7.35660014e-03 + sys_corr_58: -7.35660014e-03 sys_corr_59: 3.48304345e-01 sys_corr_60: 5.91915682e-01 - sys_corr_61: 5.61604498e-01 - sys_corr_62: 1.05714707e+00 + sys_corr_61: -5.61604498e-01 + sys_corr_62: -1.05714707e+00 sys_corr_63: 1.53792395e-01 sys_corr_64: 4.61831883e-01 - sys_corr_65: -3.22175965e-01 - sys_corr_66: 2.18873299e-01 - sys_corr_67: -3.32875130e-01 + sys_corr_65: 3.22175965e-01 + sys_corr_66: -2.18873299e-01 + sys_corr_67: 3.32875130e-01 sys_corr_68: -4.14399888e-01 sys_corr_69: -1.21581550e-01 sys_corr_70: -1.37231929e+00 - sys_corr_71: -9.16253077e-01 - sys_corr_72: 1.75594418e-01 + sys_corr_71: 9.16253077e-01 + sys_corr_72: -1.75594418e-01 sys_corr_73: 3.52089794e-01 sys_corr_74: 2.07654166e+00 - sys_corr_75: 2.51417975e+00 - sys_corr_76: -6.20167978e-02 + sys_corr_75: -2.51417975e+00 + sys_corr_76: 6.20167978e-02 sys_corr_77: -2.38008650e+00 sys_corr_78: 4.50025896e-01 sys_corr_79: 1.41372589e+00 - sys_corr_80: -1.32603796e+00 + sys_corr_80: 1.32603796e+00 sys_corr_81: 2.17301552e+00 - sys_corr_82: -1.33847111e+00 + sys_corr_82: 1.33847111e+00 sys_corr_83: 1.37385707e+00 sys_corr_84: -4.45599577e+00 sys_corr_85: 1.60389142e+00 - sys_corr_86: 1.81618156e+00 - sys_corr_87: -4.15822916e-03 + sys_corr_86: -1.81618156e+00 + sys_corr_87: 4.15822916e-03 sys_corr_88: 6.78843119e-01 sys_corr_89: 1.68415206e+00 - sys_corr_90: 2.07637381e-01 - sys_corr_91: 4.08851590e+00 - sys_corr_92: 1.20117879e-01 + sys_corr_90: -4.08851590e+00 + sys_corr_91: -2.07637381e-01 + sys_corr_92: -1.20117879e-01 sys_corr_93: -2.35206627e+00 sys_corr_94: -8.50122025e+00 - sys_corr_95: 2.76522130e+00 + sys_corr_95: -2.76522130e+00 sys_corr_96: 5.27363692e-01 - sys_corr_97: 1.07943401e+01 - sys_corr_98: 5.41439320e+00 + sys_corr_97: -1.07943401e+01 + sys_corr_98: -5.41439320e+00 sys_corr_99: 7.18648023e+00 - sys_corr_100: -1.08906286e+01 - sys_corr_101: -1.97027387e+01 - sys_corr_102: 5.87696408e+00 - sys_corr_103: -3.18467518e+00 - sys_corr_104: -1.44050615e+01 - sys_corr_105: -9.42804247e+00 + sys_corr_100: 9.42804247e+00 + sys_corr_101: 1.08906286e+01 + sys_corr_102: 1.97027387e+01 + sys_corr_103: 5.87696408e+00 + sys_corr_104: 3.18467518e+00 + sys_corr_105: 1.44050615e+01 sys_corr_106: -2.20085468e+01 sys_corr_107: 6.52208176e+00 - sys_corr_108: -7.32932102e+01 - sys_corr_109: -9.20422940e+00 - sys_corr_110: 2.72594466e+00 - sys_corr_111: 5.05736477e+01 - sys_corr_112: -1.36232457e-01 - sys_corr_113: 8.08265172e+00 - sys_corr_114: 9.38842978e-03 - sys_corr_115: 3.45196806e+00 + sys_corr_108: -9.20422940e+00 + sys_corr_109: 7.32932102e+01 + sys_corr_110: -5.05736477e+01 + sys_corr_111: -2.72594466e+00 + sys_corr_112: 1.36232457e-01 + sys_corr_113: -8.08265172e+00 + sys_corr_114: -9.38842978e-03 + sys_corr_115: -3.45196806e+00 sys_corr_116: -5.16875171e-01 - sys_corr_117: -2.04444955e-01 + sys_corr_117: 2.04444955e-01 sys_corr_118: 8.60008636e-01 sys_corr_119: -3.48923192e-02 sys_corr_120: 9.91902201e-02 sys_corr_121: 7.33562714e-02 - sys_corr_122: -6.45576697e-02 - sys_corr_123: -4.81173880e-01 - sys_corr_124: 2.55153064e-02 + sys_corr_122: -4.81173880e-01 + sys_corr_123: 6.45576697e-02 + sys_corr_124: -2.55153064e-02 sys_corr_125: -8.76398284e-02 sys_corr_126: 2.45269957e-01 - sys_corr_127: -7.39042513e-01 - sys_corr_128: -1.54630028e+01 - sys_corr_129: 1.83244256e+00 - sys_corr_130: -4.62709032e-02 - sys_corr_131: -8.63288828e-02 + sys_corr_127: 7.39042513e-01 + sys_corr_128: 1.54630028e+01 + sys_corr_129: -1.83244256e+00 + sys_corr_130: 4.62709032e-02 + sys_corr_131: 8.63288828e-02 sys_corr_132: -2.73158120e-02 stat: 0.0 luminosity: 5.36327220e+01 @@ -15418,17 +15418,17 @@ bins: sys_corr_6: -8.30776835e+00 sys_corr_7: 6.63210061e+00 sys_corr_8: 4.29064229e+00 - sys_corr_9: 1.72844959e+00 - sys_corr_10: 1.39340697e+00 + sys_corr_9: -1.72844959e+00 + sys_corr_10: -1.39340697e+00 sys_corr_11: 1.02602789e+00 - sys_corr_12: -2.22673340e+00 - sys_corr_13: 3.50605705e+00 + sys_corr_12: 2.22673340e+00 + sys_corr_13: -3.50605705e+00 sys_corr_14: -1.03018704e+00 sys_corr_15: -9.52620494e-01 sys_corr_16: 3.30615930e+00 - sys_corr_17: 1.49676930e+00 + sys_corr_17: -1.49676930e+00 sys_corr_18: -4.03531549e+00 - sys_corr_19: 1.80216024e+00 + sys_corr_19: -1.80216024e+00 sys_corr_20: -5.22751159e+00 sys_corr_21: 2.32776174e+01 sys_corr_22: 9.32959442e-01 @@ -15444,103 +15444,103 @@ bins: sys_corr_32: -2.40796175e-01 sys_corr_33: 1.80152906e-01 sys_corr_34: 7.90223642e-01 - sys_corr_35: 9.00634609e-01 - sys_corr_36: 6.98038187e-02 + sys_corr_35: -9.00634609e-01 + sys_corr_36: -6.98038187e-02 sys_corr_37: 4.65843646e-01 sys_corr_38: 3.05246754e-01 - sys_corr_39: 5.11940287e-01 - sys_corr_40: 8.95879146e-02 - sys_corr_41: 9.95764578e-01 + sys_corr_39: -5.11940287e-01 + sys_corr_40: -8.95879146e-02 + sys_corr_41: -9.95764578e-01 sys_corr_42: 1.27111631e+00 sys_corr_43: 8.98265727e-01 sys_corr_44: -1.76765174e+00 sys_corr_45: 1.50500553e-01 - sys_corr_46: 3.53749855e-01 - sys_corr_47: 2.56068251e+00 + sys_corr_46: -3.53749855e-01 + sys_corr_47: -2.56068251e+00 sys_corr_48: -6.09295482e+00 sys_corr_49: 3.37088424e+00 sys_corr_50: 3.02646146e+00 - sys_corr_51: -8.55275405e-01 - sys_corr_52: 1.43621899e+00 - sys_corr_53: -1.00697820e-01 + sys_corr_51: 8.55275405e-01 + sys_corr_52: -1.43621899e+00 + sys_corr_53: 1.00697820e-01 sys_corr_54: 3.15551425e-01 sys_corr_55: 4.96054989e-01 - sys_corr_56: 1.47692788e-02 + sys_corr_56: -1.47692788e-02 sys_corr_57: 3.76040817e-01 - sys_corr_58: -3.04482758e-01 - sys_corr_59: -6.12934140e-03 + sys_corr_58: 3.04482758e-01 + sys_corr_59: -6.12934139e-03 sys_corr_60: 6.43675486e-01 - sys_corr_61: 7.65961782e-01 - sys_corr_62: 1.44583625e+00 + sys_corr_61: -7.65961782e-01 + sys_corr_62: -1.44583625e+00 sys_corr_63: 1.08942444e-01 sys_corr_64: 4.81610487e-02 - sys_corr_65: -9.42044641e-01 - sys_corr_66: 4.22882175e-01 - sys_corr_67: -6.46601081e-01 + sys_corr_65: 9.42044641e-01 + sys_corr_66: -4.22882175e-01 + sys_corr_67: 6.46601081e-01 sys_corr_68: -5.45714769e-01 sys_corr_69: -1.90488067e-02 sys_corr_70: 8.08089970e-02 - sys_corr_71: -4.14763376e-01 - sys_corr_72: -2.91664667e-01 + sys_corr_71: 4.14763376e-01 + sys_corr_72: 2.91664667e-01 sys_corr_73: 1.09580315e+00 sys_corr_74: 1.84867834e+00 - sys_corr_75: 1.15805374e+00 - sys_corr_76: 2.92064650e-01 + sys_corr_75: -1.15805374e+00 + sys_corr_76: -2.92064650e-01 sys_corr_77: -5.40379446e-01 sys_corr_78: 1.36303211e+00 sys_corr_79: 6.45711997e-01 - sys_corr_80: -1.03603338e+00 + sys_corr_80: 1.03603338e+00 sys_corr_81: 1.81948018e-01 - sys_corr_82: -6.90793185e-01 + sys_corr_82: 6.90793185e-01 sys_corr_83: 6.44129045e-01 sys_corr_84: -4.42457566e+00 sys_corr_85: 1.01456614e+00 - sys_corr_86: 5.45823342e-01 - sys_corr_87: -3.10074634e-01 + sys_corr_86: -5.45823342e-01 + sys_corr_87: 3.10074634e-01 sys_corr_88: 7.97693699e-01 sys_corr_89: 1.25276793e+00 - sys_corr_90: 1.27282215e+00 - sys_corr_91: 3.29336361e+00 - sys_corr_92: -2.15104060e-01 + sys_corr_90: -3.29336361e+00 + sys_corr_91: -1.27282215e+00 + sys_corr_92: 2.15104060e-01 sys_corr_93: -1.80609162e+00 sys_corr_94: -7.01742378e+00 - sys_corr_95: 9.97838501e-01 + sys_corr_95: -9.97838501e-01 sys_corr_96: 1.03868201e-01 - sys_corr_97: 8.42470440e+00 - sys_corr_98: 4.05363590e+00 + sys_corr_97: -8.42470440e+00 + sys_corr_98: -4.05363590e+00 sys_corr_99: 4.00199911e+00 - sys_corr_100: -6.90513351e+00 - sys_corr_101: -1.29818416e+01 - sys_corr_102: -1.10068425e+00 - sys_corr_103: -2.12211698e+00 - sys_corr_104: -8.62274545e+00 - sys_corr_105: -1.24747299e+01 + sys_corr_100: 1.24747299e+01 + sys_corr_101: 6.90513351e+00 + sys_corr_102: 1.29818416e+01 + sys_corr_103: -1.10068425e+00 + sys_corr_104: 2.12211698e+00 + sys_corr_105: 8.62274545e+00 sys_corr_106: -5.52547477e+00 sys_corr_107: -1.11675404e+01 - sys_corr_108: 9.31782805e+00 - sys_corr_109: -8.17020143e+01 - sys_corr_110: 2.82394151e+00 - sys_corr_111: -1.45108119e+01 - sys_corr_112: -1.98583826e+01 - sys_corr_113: 3.14636702e+00 - sys_corr_114: 5.00727457e-03 - sys_corr_115: 1.28741185e+00 + sys_corr_108: -8.17020143e+01 + sys_corr_109: -9.31782805e+00 + sys_corr_110: 1.45108119e+01 + sys_corr_111: -2.82394151e+00 + sys_corr_112: 1.98583826e+01 + sys_corr_113: -3.14636702e+00 + sys_corr_114: -5.00727457e-03 + sys_corr_115: -1.28741185e+00 sys_corr_116: -3.59971275e-01 - sys_corr_117: -1.10557767e-01 + sys_corr_117: 1.10557767e-01 sys_corr_118: 2.48153589e+00 sys_corr_119: -3.31553241e-02 sys_corr_120: 6.20251180e-02 sys_corr_121: 1.25624890e-01 - sys_corr_122: -3.06521611e-01 - sys_corr_123: -7.33017939e-01 - sys_corr_124: 6.60607592e-01 + sys_corr_122: -7.33017939e-01 + sys_corr_123: 3.06521611e-01 + sys_corr_124: -6.60607592e-01 sys_corr_125: 6.82645044e-02 sys_corr_126: 1.63928229e-01 - sys_corr_127: -2.84280279e-01 - sys_corr_128: 8.37656132e+00 - sys_corr_129: 6.69279904e+00 - sys_corr_130: 5.59756686e-02 - sys_corr_131: 3.51761928e-02 + sys_corr_127: 2.84280279e-01 + sys_corr_128: -8.37656132e+00 + sys_corr_129: -6.69279904e+00 + sys_corr_130: -5.59756686e-02 + sys_corr_131: -3.51761928e-02 sys_corr_132: -5.89005437e-01 stat: 0.0 luminosity: 4.81110740e+01 @@ -15552,17 +15552,17 @@ bins: sys_corr_6: -9.76191966e+00 sys_corr_7: 7.35446833e+00 sys_corr_8: 5.81971063e+00 - sys_corr_9: 3.71296136e+00 - sys_corr_10: 2.31248774e+00 + sys_corr_9: -3.71296136e+00 + sys_corr_10: -2.31248774e+00 sys_corr_11: 3.03513951e+00 - sys_corr_12: -2.26779359e+00 - sys_corr_13: 5.76662046e+00 + sys_corr_12: 2.26779359e+00 + sys_corr_13: -5.76662046e+00 sys_corr_14: 3.26681526e+00 sys_corr_15: -2.79492061e+00 sys_corr_16: 5.90120199e+00 - sys_corr_17: 1.67536580e+00 + sys_corr_17: -1.67536580e+00 sys_corr_18: -7.28927545e+00 - sys_corr_19: -1.14022090e+01 + sys_corr_19: 1.14022090e+01 sys_corr_20: 1.22390246e+01 sys_corr_21: -6.18878258e+00 sys_corr_22: 8.22510323e-01 @@ -15578,103 +15578,103 @@ bins: sys_corr_32: -7.65375258e-01 sys_corr_33: 4.32727216e-01 sys_corr_34: -1.92302941e+00 - sys_corr_35: 1.38762635e-01 - sys_corr_36: -4.90336246e-01 + sys_corr_35: -1.38762635e-01 + sys_corr_36: 4.90336246e-01 sys_corr_37: 1.03857192e+00 sys_corr_38: 1.02568436e-01 - sys_corr_39: 2.67714716e-01 - sys_corr_40: -1.91302620e-01 - sys_corr_41: 1.11292084e+00 + sys_corr_39: -2.67714716e-01 + sys_corr_40: 1.91302620e-01 + sys_corr_41: -1.11292084e+00 sys_corr_42: 1.75874811e+00 sys_corr_43: 1.37835993e+00 sys_corr_44: -3.87902058e-01 sys_corr_45: -6.80217636e-01 - sys_corr_46: 3.62282382e-01 - sys_corr_47: 2.04578612e+00 + sys_corr_46: -3.62282382e-01 + sys_corr_47: -2.04578612e+00 sys_corr_48: -6.30714203e+00 sys_corr_49: 3.92770103e+00 sys_corr_50: 2.65067214e+00 - sys_corr_51: -1.27611042e-01 - sys_corr_52: 1.10108674e+00 - sys_corr_53: 2.81511130e-01 + sys_corr_51: 1.27611042e-01 + sys_corr_52: -1.10108674e+00 + sys_corr_53: -2.81511130e-01 sys_corr_54: 1.89111797e+00 sys_corr_55: -3.55012030e-02 - sys_corr_56: -5.21180837e-01 + sys_corr_56: 5.21180837e-01 sys_corr_57: 2.04281100e-01 - sys_corr_58: 3.69711595e-01 + sys_corr_58: -3.69711595e-01 sys_corr_59: 7.28684926e-02 sys_corr_60: 1.36037327e+00 - sys_corr_61: 1.05776655e+00 - sys_corr_62: 1.60153283e+00 + sys_corr_61: -1.05776655e+00 + sys_corr_62: -1.60153283e+00 sys_corr_63: 1.11714159e+00 sys_corr_64: 1.96115224e-01 - sys_corr_65: -5.90347577e-01 - sys_corr_66: -2.04551253e-02 - sys_corr_67: -7.38633394e-01 + sys_corr_65: 5.90347577e-01 + sys_corr_66: 2.04551253e-02 + sys_corr_67: 7.38633394e-01 sys_corr_68: -4.44350326e-01 sys_corr_69: 1.06469826e+00 sys_corr_70: -6.53615411e-02 - sys_corr_71: -9.42887063e-01 - sys_corr_72: -8.54089303e-01 + sys_corr_71: 9.42887063e-01 + sys_corr_72: 8.54089303e-01 sys_corr_73: 4.88112765e-01 sys_corr_74: 1.92718899e+00 - sys_corr_75: 2.43426676e+00 - sys_corr_76: -4.39744515e-01 + sys_corr_75: -2.43426676e+00 + sys_corr_76: 4.39744515e-01 sys_corr_77: -2.22479572e+00 sys_corr_78: 1.77539942e+00 sys_corr_79: 1.54356717e+00 - sys_corr_80: -1.06568821e+00 + sys_corr_80: 1.06568821e+00 sys_corr_81: 1.90486125e+00 - sys_corr_82: -1.44538214e+00 + sys_corr_82: 1.44538214e+00 sys_corr_83: 1.18113972e+00 sys_corr_84: -4.62079575e+00 sys_corr_85: 8.86662587e-01 - sys_corr_86: 2.00570548e+00 - sys_corr_87: -3.65536827e-02 + sys_corr_86: -2.00570548e+00 + sys_corr_87: 3.65536827e-02 sys_corr_88: 2.50401481e-01 sys_corr_89: 1.21819432e+00 - sys_corr_90: 9.91946964e-01 - sys_corr_91: 7.38528719e+00 - sys_corr_92: -4.65571698e-01 + sys_corr_90: -7.38528719e+00 + sys_corr_91: -9.91946964e-01 + sys_corr_92: 4.65571698e-01 sys_corr_93: -2.38918659e+00 sys_corr_94: -8.39329957e+00 - sys_corr_95: 3.21665631e+00 + sys_corr_95: -3.21665631e+00 sys_corr_96: 2.74085522e-01 - sys_corr_97: 9.73995850e+00 - sys_corr_98: 5.40196791e+00 + sys_corr_97: -9.73995850e+00 + sys_corr_98: -5.40196791e+00 sys_corr_99: 5.85843715e+00 - sys_corr_100: -9.61204268e+00 - sys_corr_101: -1.62804996e+01 - sys_corr_102: 3.70306946e+00 - sys_corr_103: -3.57079991e+00 - sys_corr_104: -1.17378775e+01 - sys_corr_105: -2.06430392e+01 + sys_corr_100: 2.06430392e+01 + sys_corr_101: 9.61204268e+00 + sys_corr_102: 1.62804996e+01 + sys_corr_103: 3.70306946e+00 + sys_corr_104: 3.57079991e+00 + sys_corr_105: 1.17378775e+01 sys_corr_106: -1.46769995e+01 sys_corr_107: -2.05483175e+01 - sys_corr_108: 1.00662699e+01 - sys_corr_109: 2.48794722e+01 - sys_corr_110: 2.30475885e+00 - sys_corr_111: 1.11530101e+01 - sys_corr_112: -6.51192468e+01 - sys_corr_113: -2.71878258e+01 - sys_corr_114: 3.27788802e-03 - sys_corr_115: 1.06366036e+00 + sys_corr_108: 2.48794722e+01 + sys_corr_109: -1.00662699e+01 + sys_corr_110: -1.11530101e+01 + sys_corr_111: -2.30475885e+00 + sys_corr_112: 6.51192468e+01 + sys_corr_113: 2.71878258e+01 + sys_corr_114: -3.27788802e-03 + sys_corr_115: -1.06366036e+00 sys_corr_116: -1.71663368e-01 - sys_corr_117: -2.97235668e-01 + sys_corr_117: 2.97235668e-01 sys_corr_118: 1.19516853e+00 sys_corr_119: 3.80797830e-02 sys_corr_120: 2.32922273e-01 sys_corr_121: 3.12459803e-01 - sys_corr_122: 2.88004126e-01 - sys_corr_123: 1.14345870e-01 - sys_corr_124: 4.07580751e-01 + sys_corr_122: 1.14345870e-01 + sys_corr_123: -2.88004126e-01 + sys_corr_124: -4.07580751e-01 sys_corr_125: -4.61891077e-01 sys_corr_126: -4.20640151e-01 - sys_corr_127: -1.14348997e+00 - sys_corr_128: -1.54863523e+00 - sys_corr_129: -2.73338325e+00 - sys_corr_130: 3.80965760e-01 - sys_corr_131: -2.16531532e-01 + sys_corr_127: 1.14348997e+00 + sys_corr_128: 1.54863523e+00 + sys_corr_129: 2.73338325e+00 + sys_corr_130: -3.80965760e-01 + sys_corr_131: 2.16531532e-01 sys_corr_132: -2.68958646e-01 stat: 0.0 luminosity: 4.28819160e+01 @@ -15686,17 +15686,17 @@ bins: sys_corr_6: -8.66480539e+00 sys_corr_7: 5.66853703e+00 sys_corr_8: 4.54390865e+00 - sys_corr_9: 2.86519261e+00 - sys_corr_10: 2.14132913e+00 + sys_corr_9: -2.86519261e+00 + sys_corr_10: -2.14132913e+00 sys_corr_11: 2.44271242e+00 - sys_corr_12: -2.46501471e+00 - sys_corr_13: 4.44313688e+00 + sys_corr_12: 2.46501471e+00 + sys_corr_13: -4.44313688e+00 sys_corr_14: 1.69793025e+00 sys_corr_15: -2.32750757e+00 sys_corr_16: 3.43550096e+00 - sys_corr_17: 3.21287144e+00 + sys_corr_17: -3.21287144e+00 sys_corr_18: -2.32487299e+00 - sys_corr_19: -3.63581829e+00 + sys_corr_19: 3.63581829e+00 sys_corr_20: -2.19880802e+01 sys_corr_21: -7.98521683e+00 sys_corr_22: 5.33717105e+00 @@ -15712,103 +15712,103 @@ bins: sys_corr_32: -7.38637724e-01 sys_corr_33: 6.08838192e-01 sys_corr_34: -1.64192899e+00 - sys_corr_35: 3.88445150e-01 - sys_corr_36: -9.15139636e-01 + sys_corr_35: -3.88445150e-01 + sys_corr_36: 9.15139636e-01 sys_corr_37: 7.27862056e-01 sys_corr_38: 9.93633810e-02 - sys_corr_39: 2.62230419e-01 - sys_corr_40: -3.38128563e-01 - sys_corr_41: 1.53392036e+00 + sys_corr_39: -2.62230419e-01 + sys_corr_40: 3.38128563e-01 + sys_corr_41: -1.53392036e+00 sys_corr_42: 1.28464225e+00 sys_corr_43: 8.05439344e-01 sys_corr_44: -5.99239355e-01 sys_corr_45: -6.00645938e-01 - sys_corr_46: -1.61774868e-01 - sys_corr_47: 1.54845047e+00 + sys_corr_46: 1.61774868e-01 + sys_corr_47: -1.54845047e+00 sys_corr_48: -5.25558394e+00 sys_corr_49: 2.84950506e+00 sys_corr_50: 1.69606898e+00 - sys_corr_51: -4.62070487e-01 - sys_corr_52: 8.99026850e-01 - sys_corr_53: 2.96397488e-02 + sys_corr_51: 4.62070487e-01 + sys_corr_52: -8.99026850e-01 + sys_corr_53: -2.96397488e-02 sys_corr_54: 1.47504135e+00 sys_corr_55: -3.11866424e-01 - sys_corr_56: -5.69515437e-01 + sys_corr_56: 5.69515437e-01 sys_corr_57: 4.19378105e-01 - sys_corr_58: -1.26426264e-01 + sys_corr_58: 1.26426264e-01 sys_corr_59: 2.31685756e-01 sys_corr_60: 8.79766669e-01 - sys_corr_61: 3.58569011e-01 - sys_corr_62: 7.08626382e-01 + sys_corr_61: -3.58569011e-01 + sys_corr_62: -7.08626382e-01 sys_corr_63: 6.72831220e-01 sys_corr_64: 1.79053169e-01 - sys_corr_65: -4.71755477e-01 - sys_corr_66: -2.29394021e-01 - sys_corr_67: -5.61652506e-01 + sys_corr_65: 4.71755477e-01 + sys_corr_66: 2.29394021e-01 + sys_corr_67: 5.61652506e-01 sys_corr_68: -2.75418911e-01 sys_corr_69: 8.55854846e-01 sys_corr_70: -2.42603679e-01 - sys_corr_71: -7.07649456e-01 - sys_corr_72: -5.14039254e-01 + sys_corr_71: 7.07649456e-01 + sys_corr_72: 5.14039254e-01 sys_corr_73: 1.58718735e-01 sys_corr_74: 1.83243903e+00 - sys_corr_75: 1.94011475e+00 - sys_corr_76: -4.85010485e-02 + sys_corr_75: -1.94011475e+00 + sys_corr_76: 4.85010485e-02 sys_corr_77: -1.45583243e+00 sys_corr_78: 1.70240873e+00 sys_corr_79: 8.25309611e-01 - sys_corr_80: -3.87565322e-01 + sys_corr_80: 3.87565322e-01 sys_corr_81: 1.67781940e+00 - sys_corr_82: -8.71427481e-01 + sys_corr_82: 8.71427481e-01 sys_corr_83: 8.89208521e-01 sys_corr_84: -4.48091414e+00 sys_corr_85: 1.39588924e+00 - sys_corr_86: 1.15075614e+00 - sys_corr_87: 1.93375983e-01 + sys_corr_86: -1.15075614e+00 + sys_corr_87: -1.93375983e-01 sys_corr_88: 1.08529492e+00 sys_corr_89: 5.36601175e-01 - sys_corr_90: 2.77181419e+00 - sys_corr_91: 4.53106140e+00 - sys_corr_92: -5.13806990e-01 + sys_corr_90: -4.53106140e+00 + sys_corr_91: -2.77181419e+00 + sys_corr_92: 5.13806990e-01 sys_corr_93: -1.95934835e+00 sys_corr_94: -7.00196211e+00 - sys_corr_95: 1.96980130e+00 + sys_corr_95: -1.96980130e+00 sys_corr_96: 1.25064166e-01 - sys_corr_97: 7.94507857e+00 - sys_corr_98: 4.53583475e+00 + sys_corr_97: -7.94507857e+00 + sys_corr_98: -4.53583475e+00 sys_corr_99: 4.94835615e+00 - sys_corr_100: -8.73216415e+00 - sys_corr_101: -1.39428059e+01 - sys_corr_102: 2.67142456e+00 - sys_corr_103: -3.09669628e+00 - sys_corr_104: -9.68217883e+00 - sys_corr_105: -1.55923791e+01 + sys_corr_100: 1.55923791e+01 + sys_corr_101: 8.73216415e+00 + sys_corr_102: 1.39428059e+01 + sys_corr_103: 2.67142456e+00 + sys_corr_104: 3.09669628e+00 + sys_corr_105: 9.68217883e+00 sys_corr_106: -1.20106479e+01 sys_corr_107: -1.62437400e+01 - sys_corr_108: 3.18783355e+00 - sys_corr_109: -9.89223190e+00 - sys_corr_110: 1.99419765e+00 - sys_corr_111: 6.72253490e+00 - sys_corr_112: 3.90815415e+01 - sys_corr_113: -6.09715052e+01 - sys_corr_114: 1.44673575e-02 - sys_corr_115: -3.76298178e+00 + sys_corr_108: -9.89223190e+00 + sys_corr_109: -3.18783355e+00 + sys_corr_110: -6.72253490e+00 + sys_corr_111: -1.99419765e+00 + sys_corr_112: -3.90815415e+01 + sys_corr_113: 6.09715052e+01 + sys_corr_114: -1.44673575e-02 + sys_corr_115: 3.76298178e+00 sys_corr_116: 4.23127234e-01 - sys_corr_117: -2.34734450e-01 + sys_corr_117: 2.34734450e-01 sys_corr_118: 2.85673267e+00 sys_corr_119: 4.50556893e-02 sys_corr_120: 2.68586814e-01 sys_corr_121: 2.02878130e-01 - sys_corr_122: 2.68181332e-01 - sys_corr_123: 1.50622459e-01 - sys_corr_124: -1.03380806e+00 + sys_corr_122: 1.50622459e-01 + sys_corr_123: -2.68181332e-01 + sys_corr_124: 1.03380806e+00 sys_corr_125: -2.80397198e-01 sys_corr_126: -2.90568120e-01 - sys_corr_127: -8.71524784e-01 - sys_corr_128: 1.18841639e-02 - sys_corr_129: -1.21822902e+01 - sys_corr_130: 2.15899909e-01 - sys_corr_131: -3.44267941e-01 + sys_corr_127: 8.71524784e-01 + sys_corr_128: -1.18841639e-02 + sys_corr_129: 1.21822902e+01 + sys_corr_130: -2.15899909e-01 + sys_corr_131: 3.44267941e-01 sys_corr_132: 2.88334398e-01 stat: 0.0 luminosity: 3.47906680e+01 @@ -15820,17 +15820,17 @@ bins: sys_corr_6: -7.17919741e+00 sys_corr_7: 4.18065583e+00 sys_corr_8: 2.96668998e+00 - sys_corr_9: 2.73055038e+00 - sys_corr_10: 1.54112879e+00 + sys_corr_9: -2.73055038e+00 + sys_corr_10: -1.54112879e+00 sys_corr_11: 2.00403402e+00 - sys_corr_12: -8.26489269e-02 - sys_corr_13: 1.90615252e+00 + sys_corr_12: 8.26489269e-02 + sys_corr_13: -1.90615252e+00 sys_corr_14: 9.17743230e-01 sys_corr_15: -6.19997198e-01 sys_corr_16: 2.52097208e+00 - sys_corr_17: 6.85254944e-01 + sys_corr_17: -6.85254944e-01 sys_corr_18: -1.95903681e+00 - sys_corr_19: -2.40397866e+00 + sys_corr_19: 2.40397866e+00 sys_corr_20: -1.20673156e+00 sys_corr_21: 3.00199522e+00 sys_corr_22: 7.11105589e-01 @@ -15846,103 +15846,103 @@ bins: sys_corr_32: -1.25658749e+00 sys_corr_33: 3.72635194e-01 sys_corr_34: -2.42900825e+00 - sys_corr_35: -8.03636447e-01 - sys_corr_36: -3.41868024e-01 + sys_corr_35: 8.03636447e-01 + sys_corr_36: 3.41868024e-01 sys_corr_37: 1.23727930e+00 sys_corr_38: 9.82061903e-02 - sys_corr_39: 6.17200979e-01 - sys_corr_40: -7.94828105e-01 - sys_corr_41: 1.37043657e+00 + sys_corr_39: -6.17200979e-01 + sys_corr_40: 7.94828105e-01 + sys_corr_41: -1.37043657e+00 sys_corr_42: 1.69778244e+00 sys_corr_43: 8.96424322e-01 sys_corr_44: -2.99891529e-02 sys_corr_45: -1.16715113e+00 - sys_corr_46: 2.66311697e-01 - sys_corr_47: 3.21071488e+00 + sys_corr_46: -2.66311697e-01 + sys_corr_47: -3.21071488e+00 sys_corr_48: -7.98761161e+00 sys_corr_49: 4.68723834e+00 sys_corr_50: 2.46273131e+00 - sys_corr_51: -1.39472736e+00 - sys_corr_52: 2.43538301e+00 - sys_corr_53: -1.47202424e-01 + sys_corr_51: 1.39472736e+00 + sys_corr_52: -2.43538301e+00 + sys_corr_53: 1.47202424e-01 sys_corr_54: 2.09992195e+00 sys_corr_55: 6.77910672e-01 - sys_corr_56: -6.53049060e-01 + sys_corr_56: 6.53049060e-01 sys_corr_57: 2.77290457e-01 - sys_corr_58: 5.80195211e-01 + sys_corr_58: -5.80195211e-01 sys_corr_59: 2.83690794e-01 sys_corr_60: 1.64422029e+00 - sys_corr_61: 1.32197382e+00 - sys_corr_62: 1.64260715e+00 + sys_corr_61: -1.32197382e+00 + sys_corr_62: -1.64260715e+00 sys_corr_63: 9.19595484e-01 sys_corr_64: 2.58029607e-01 - sys_corr_65: -1.01897573e+00 - sys_corr_66: 8.99071764e-02 - sys_corr_67: -1.07665683e+00 + sys_corr_65: 1.01897573e+00 + sys_corr_66: -8.99071764e-02 + sys_corr_67: 1.07665683e+00 sys_corr_68: 3.61855370e-01 sys_corr_69: 1.36860311e+00 sys_corr_70: 7.33992805e-02 - sys_corr_71: -1.18685729e+00 - sys_corr_72: -6.77496957e-01 + sys_corr_71: 1.18685729e+00 + sys_corr_72: 6.77496957e-01 sys_corr_73: -1.44146196e-01 sys_corr_74: 2.66398221e+00 - sys_corr_75: 2.35727424e+00 - sys_corr_76: 3.95642167e-01 + sys_corr_75: -2.35727424e+00 + sys_corr_76: -3.95642167e-01 sys_corr_77: -2.18313877e+00 sys_corr_78: 1.25638571e+00 sys_corr_79: 1.06105956e+00 - sys_corr_80: -1.14569302e+00 + sys_corr_80: 1.14569302e+00 sys_corr_81: 2.22443626e+00 - sys_corr_82: -1.05791954e+00 + sys_corr_82: 1.05791954e+00 sys_corr_83: -4.32890573e-02 sys_corr_84: -5.01850027e+00 sys_corr_85: 1.79896742e+00 - sys_corr_86: 1.60963417e+00 - sys_corr_87: 8.53136058e-01 + sys_corr_86: -1.60963417e+00 + sys_corr_87: -8.53136058e-01 sys_corr_88: 6.65236194e-01 sys_corr_89: 1.93056328e-01 - sys_corr_90: 2.32320071e+00 - sys_corr_91: 7.07397168e+00 - sys_corr_92: -5.99395155e-01 + sys_corr_90: -7.07397168e+00 + sys_corr_91: -2.32320071e+00 + sys_corr_92: 5.99395155e-01 sys_corr_93: -2.18150534e+00 sys_corr_94: -7.25058308e+00 - sys_corr_95: 3.76519219e+00 + sys_corr_95: -3.76519219e+00 sys_corr_96: 5.18422040e-01 - sys_corr_97: 7.09945742e+00 - sys_corr_98: 4.38242875e+00 + sys_corr_97: -7.09945742e+00 + sys_corr_98: -4.38242875e+00 sys_corr_99: 4.87298833e+00 - sys_corr_100: -9.73722275e+00 - sys_corr_101: -1.53688814e+01 - sys_corr_102: 4.27016716e+00 - sys_corr_103: -3.43243671e+00 - sys_corr_104: -1.13036762e+01 - sys_corr_105: -1.97223925e+01 + sys_corr_100: 1.97223925e+01 + sys_corr_101: 9.73722275e+00 + sys_corr_102: 1.53688814e+01 + sys_corr_103: 4.27016716e+00 + sys_corr_104: 3.43243671e+00 + sys_corr_105: 1.13036762e+01 sys_corr_106: -1.49749559e+01 sys_corr_107: -2.34435421e+01 - sys_corr_108: 1.61560854e+01 - sys_corr_109: 9.16681940e-01 - sys_corr_110: 2.01729698e+00 - sys_corr_111: 9.03403707e+00 - sys_corr_112: 5.85134883e+00 - sys_corr_113: 2.99964792e+01 - sys_corr_114: 7.41056753e-03 - sys_corr_115: -2.16321001e+01 + sys_corr_108: 9.16681940e-01 + sys_corr_109: -1.61560854e+01 + sys_corr_110: -9.03403707e+00 + sys_corr_111: -2.01729698e+00 + sys_corr_112: -5.85134883e+00 + sys_corr_113: -2.99964792e+01 + sys_corr_114: -7.41056753e-03 + sys_corr_115: 2.16321001e+01 sys_corr_116: 2.03631007e+00 - sys_corr_117: -5.42674580e-01 + sys_corr_117: 5.42674580e-01 sys_corr_118: 1.72605151e+00 sys_corr_119: 2.81608314e-01 sys_corr_120: 7.05979926e-01 sys_corr_121: -4.04015134e-01 - sys_corr_122: 1.40472367e+00 - sys_corr_123: 6.36262686e-01 - sys_corr_124: -8.34884436e+00 + sys_corr_122: 6.36262686e-01 + sys_corr_123: -1.40472367e+00 + sys_corr_124: 8.34884436e+00 sys_corr_125: -1.12415349e+00 sys_corr_126: 3.32760787e-01 - sys_corr_127: -1.06328499e+00 - sys_corr_128: -6.40054907e-01 - sys_corr_129: -5.06516854e+01 - sys_corr_130: 1.15579222e-01 - sys_corr_131: -7.47657675e-01 + sys_corr_127: 1.06328499e+00 + sys_corr_128: 6.40054907e-01 + sys_corr_129: 5.06516854e+01 + sys_corr_130: -1.15579222e-01 + sys_corr_131: 7.47657675e-01 sys_corr_132: -7.83309113e-01 stat: 0.0 luminosity: 2.75836440e+01 @@ -15954,17 +15954,17 @@ bins: sys_corr_6: -7.30825273e+00 sys_corr_7: 4.76134930e+00 sys_corr_8: 2.89291725e+00 - sys_corr_9: 1.72077925e+00 - sys_corr_10: 7.05188375e-01 + sys_corr_9: -1.72077925e+00 + sys_corr_10: -7.05188375e-01 sys_corr_11: 1.29067425e+00 - sys_corr_12: -9.56277595e-01 - sys_corr_13: 2.50086858e+00 + sys_corr_12: 9.56277595e-01 + sys_corr_13: -2.50086858e+00 sys_corr_14: 8.45020295e-01 sys_corr_15: -9.99824111e-01 sys_corr_16: 2.11267827e+00 - sys_corr_17: -2.22191729e-01 + sys_corr_17: 2.22191729e-01 sys_corr_18: -1.57916840e+00 - sys_corr_19: 6.28265987e-02 + sys_corr_19: -6.28265987e-02 sys_corr_20: 1.88114709e+00 sys_corr_21: 3.15193475e+00 sys_corr_22: 3.87279998e+00 @@ -15980,103 +15980,103 @@ bins: sys_corr_32: -1.02354811e+00 sys_corr_33: 1.83663093e-01 sys_corr_34: -1.71761214e+00 - sys_corr_35: 3.99256829e-01 - sys_corr_36: 3.45653566e-01 + sys_corr_35: -3.99256829e-01 + sys_corr_36: -3.45653566e-01 sys_corr_37: 1.10564765e+00 sys_corr_38: -4.18611252e-02 - sys_corr_39: 2.89645395e-01 - sys_corr_40: -4.15511745e-01 - sys_corr_41: 1.69012992e+00 + sys_corr_39: -2.89645395e-01 + sys_corr_40: 4.15511745e-01 + sys_corr_41: -1.69012992e+00 sys_corr_42: 1.24761230e+00 sys_corr_43: 5.46725695e-01 sys_corr_44: 1.26811183e+00 sys_corr_45: -5.66224180e-01 - sys_corr_46: 2.59446276e-01 - sys_corr_47: 2.50449019e+00 + sys_corr_46: -2.59446276e-01 + sys_corr_47: -2.50449019e+00 sys_corr_48: -5.00039658e+00 sys_corr_49: 4.34661706e+00 sys_corr_50: -1.40238297e+00 - sys_corr_51: 7.70857921e-01 - sys_corr_52: 4.14869697e-01 - sys_corr_53: -3.25906136e-01 + sys_corr_51: -7.70857921e-01 + sys_corr_52: -4.14869697e-01 + sys_corr_53: 3.25906136e-01 sys_corr_54: 2.29492115e+00 sys_corr_55: 4.42016317e-01 - sys_corr_56: -2.86347961e-01 + sys_corr_56: 2.86347961e-01 sys_corr_57: -4.26491998e-01 - sys_corr_58: -2.44925755e-03 + sys_corr_58: 2.44925755e-03 sys_corr_59: -2.28647525e-01 sys_corr_60: 1.75235070e+00 - sys_corr_61: 6.21939619e-01 - sys_corr_62: 1.27646882e+00 + sys_corr_61: -6.21939619e-01 + sys_corr_62: -1.27646882e+00 sys_corr_63: 9.44654821e-01 sys_corr_64: -8.50131698e-01 - sys_corr_65: -1.00972018e+00 - sys_corr_66: 4.94847007e-01 - sys_corr_67: 3.07059125e-01 + sys_corr_65: 1.00972018e+00 + sys_corr_66: -4.94847007e-01 + sys_corr_67: -3.07059125e-01 sys_corr_68: 6.55696308e-01 sys_corr_69: 8.34512550e-01 sys_corr_70: 1.15830862e+00 - sys_corr_71: -1.59334494e-01 - sys_corr_72: -1.33664987e+00 + sys_corr_71: 1.59334494e-01 + sys_corr_72: 1.33664987e+00 sys_corr_73: -1.55255979e-01 sys_corr_74: 2.39184338e+00 - sys_corr_75: 1.60380712e+00 - sys_corr_76: 2.21326985e+00 + sys_corr_75: -1.60380712e+00 + sys_corr_76: -2.21326985e+00 sys_corr_77: -2.37564446e+00 sys_corr_78: 1.02223187e+00 sys_corr_79: 1.15346766e+00 - sys_corr_80: -1.57802349e-01 + sys_corr_80: 1.57802349e-01 sys_corr_81: 1.81709256e+00 - sys_corr_82: -1.18348911e+00 + sys_corr_82: 1.18348911e+00 sys_corr_83: 3.22841638e-02 sys_corr_84: -5.25593663e+00 sys_corr_85: 1.12315460e+00 - sys_corr_86: 1.75451714e+00 - sys_corr_87: 6.79081709e-01 + sys_corr_86: -1.75451714e+00 + sys_corr_87: -6.79081709e-01 sys_corr_88: -2.85343194e-01 sys_corr_89: -8.15536523e-01 - sys_corr_90: 3.39493688e+00 - sys_corr_91: 6.88759997e+00 - sys_corr_92: 6.99275348e-02 + sys_corr_90: -6.88759997e+00 + sys_corr_91: -3.39493688e+00 + sys_corr_92: -6.99275348e-02 sys_corr_93: -1.97606572e+00 sys_corr_94: -5.84551069e+00 - sys_corr_95: 4.13190553e+00 + sys_corr_95: -4.13190553e+00 sys_corr_96: 5.53728035e-01 - sys_corr_97: 5.49466389e+00 - sys_corr_98: 3.75924162e+00 + sys_corr_97: -5.49466389e+00 + sys_corr_98: -3.75924162e+00 sys_corr_99: 4.56052062e+00 - sys_corr_100: -1.03246642e+01 - sys_corr_101: -1.45285741e+01 - sys_corr_102: 6.21790932e+00 - sys_corr_103: -4.19506245e+00 - sys_corr_104: -1.11706371e+01 - sys_corr_105: -2.09258297e+01 + sys_corr_100: 2.09258297e+01 + sys_corr_101: 1.03246642e+01 + sys_corr_102: 1.45285741e+01 + sys_corr_103: 6.21790932e+00 + sys_corr_104: 4.19506245e+00 + sys_corr_105: 1.11706371e+01 sys_corr_106: -1.59653393e+01 sys_corr_107: -2.75652689e+01 - sys_corr_108: 1.70235209e+01 - sys_corr_109: 9.63224581e+00 - sys_corr_110: 1.76747476e+00 - sys_corr_111: 1.32039192e+01 - sys_corr_112: 1.28640209e+01 - sys_corr_113: 1.13389817e+01 - sys_corr_114: -2.54614683e-03 - sys_corr_115: -3.46109486e+01 + sys_corr_108: 9.63224581e+00 + sys_corr_109: -1.70235209e+01 + sys_corr_110: -1.32039192e+01 + sys_corr_111: -1.76747476e+00 + sys_corr_112: -1.28640209e+01 + sys_corr_113: -1.13389817e+01 + sys_corr_114: 2.54614683e-03 + sys_corr_115: 3.46109486e+01 sys_corr_116: 2.68794382e+00 - sys_corr_117: -2.03836151e-01 + sys_corr_117: 2.03836151e-01 sys_corr_118: -3.70920536e+00 sys_corr_119: 2.23451545e-01 sys_corr_120: 4.47333514e-01 sys_corr_121: -5.39284067e-01 - sys_corr_122: 1.17651806e+00 - sys_corr_123: 4.54102316e-01 - sys_corr_124: 1.45132250e+00 + sys_corr_122: 4.54102316e-01 + sys_corr_123: -1.17651806e+00 + sys_corr_124: -1.45132250e+00 sys_corr_125: -6.33334117e-01 sys_corr_126: 3.60639815e-01 - sys_corr_127: -1.03993071e+00 - sys_corr_128: -1.70396619e+00 - sys_corr_129: 4.46001089e+01 - sys_corr_130: -2.80934772e-03 - sys_corr_131: -4.22420731e-01 + sys_corr_127: 1.03993071e+00 + sys_corr_128: 1.70396619e+00 + sys_corr_129: -4.46001089e+01 + sys_corr_130: 2.80934772e-03 + sys_corr_131: 4.22420731e-01 sys_corr_132: -1.57850594e+00 stat: 0.0 luminosity: 2.54893760e+01 @@ -16088,17 +16088,17 @@ bins: sys_corr_6: -6.01981241e+00 sys_corr_7: 4.10485044e+00 sys_corr_8: 1.71386933e+00 - sys_corr_9: 1.22200293e+00 - sys_corr_10: 4.20749505e-01 + sys_corr_9: -1.22200293e+00 + sys_corr_10: -4.20749505e-01 sys_corr_11: 4.54470167e-01 - sys_corr_12: -8.39168169e-01 - sys_corr_13: 2.52373274e+00 + sys_corr_12: 8.39168169e-01 + sys_corr_13: -2.52373274e+00 sys_corr_14: 3.53394444e-01 sys_corr_15: -1.71402576e-01 sys_corr_16: 1.83638017e+00 - sys_corr_17: -1.95166768e-01 + sys_corr_17: 1.95166768e-01 sys_corr_18: -8.82281973e-01 - sys_corr_19: 1.09958165e+00 + sys_corr_19: -1.09958165e+00 sys_corr_20: 2.97004551e+00 sys_corr_21: 3.02260629e+00 sys_corr_22: 2.92685653e+00 @@ -16114,103 +16114,103 @@ bins: sys_corr_32: -1.55579281e+00 sys_corr_33: 5.38304234e-01 sys_corr_34: -1.44418432e+00 - sys_corr_35: -2.82640945e-01 - sys_corr_36: -1.60455774e-01 + sys_corr_35: 2.82640945e-01 + sys_corr_36: 1.60455774e-01 sys_corr_37: 1.19613579e+00 sys_corr_38: 1.26912069e-02 - sys_corr_39: 2.76262013e-01 - sys_corr_40: -5.17609692e-01 - sys_corr_41: 1.80644111e+00 + sys_corr_39: -2.76262013e-01 + sys_corr_40: 5.17609692e-01 + sys_corr_41: -1.80644111e+00 sys_corr_42: 8.45513328e-01 sys_corr_43: -7.12548168e-02 sys_corr_44: 1.16647919e+00 sys_corr_45: -7.37392710e-01 - sys_corr_46: 1.23427224e-01 - sys_corr_47: 7.19720592e-01 + sys_corr_46: -1.23427224e-01 + sys_corr_47: -7.19720592e-01 sys_corr_48: -1.79675516e+00 sys_corr_49: 2.60992012e+00 sys_corr_50: -2.11040756e+00 - sys_corr_51: 2.17860776e+00 - sys_corr_52: -4.22098340e-01 - sys_corr_53: -4.94410276e-01 + sys_corr_51: -2.17860776e+00 + sys_corr_52: 4.22098340e-01 + sys_corr_53: 4.94410276e-01 sys_corr_54: 2.39292339e+00 sys_corr_55: -1.11371196e+00 - sys_corr_56: -1.09215077e+00 + sys_corr_56: 1.09215077e+00 sys_corr_57: -4.02723163e-01 - sys_corr_58: 3.79950036e-01 + sys_corr_58: -3.79950036e-01 sys_corr_59: -4.30334416e-01 sys_corr_60: 1.26948377e+00 - sys_corr_61: 1.39532527e+00 - sys_corr_62: 1.21208204e+00 + sys_corr_61: -1.39532527e+00 + sys_corr_62: -1.21208204e+00 sys_corr_63: 7.43326034e-01 sys_corr_64: 3.36383886e-01 - sys_corr_65: -3.31396119e-01 - sys_corr_66: 4.00627219e-01 - sys_corr_67: -7.39219962e-02 + sys_corr_65: 3.31396119e-01 + sys_corr_66: -4.00627219e-01 + sys_corr_67: 7.39219962e-02 sys_corr_68: 6.66723682e-01 sys_corr_69: 6.70296483e-01 sys_corr_70: 7.95584783e-01 - sys_corr_71: -2.71539556e-01 - sys_corr_72: -1.50432345e+00 + sys_corr_71: 2.71539556e-01 + sys_corr_72: 1.50432345e+00 sys_corr_73: -8.14643919e-01 sys_corr_74: 1.49307382e+00 - sys_corr_75: 1.40665363e+00 - sys_corr_76: 2.05813084e+00 + sys_corr_75: -1.40665363e+00 + sys_corr_76: -2.05813084e+00 sys_corr_77: -2.04400445e+00 sys_corr_78: 1.64752069e+00 sys_corr_79: 1.29190049e+00 - sys_corr_80: -5.75517064e-01 + sys_corr_80: 5.75517064e-01 sys_corr_81: 8.58559102e-01 - sys_corr_82: -7.19600870e-01 + sys_corr_82: 7.19600870e-01 sys_corr_83: 5.83572245e-01 sys_corr_84: -5.69374106e+00 sys_corr_85: 2.12454239e+00 - sys_corr_86: 2.46192034e-01 - sys_corr_87: 2.24178141e-01 + sys_corr_86: -2.46192034e-01 + sys_corr_87: -2.24178141e-01 sys_corr_88: 3.25417326e-01 sys_corr_89: -4.08359079e-01 - sys_corr_90: 2.51325895e+00 - sys_corr_91: 6.96341270e+00 - sys_corr_92: 3.27974856e-01 + sys_corr_90: -6.96341270e+00 + sys_corr_91: -2.51325895e+00 + sys_corr_92: -3.27974856e-01 sys_corr_93: -1.53639197e+00 sys_corr_94: -3.69900801e+00 - sys_corr_95: 3.82254583e+00 + sys_corr_95: -3.82254583e+00 sys_corr_96: 3.38277374e-01 - sys_corr_97: 3.51056045e+00 - sys_corr_98: 2.49739378e+00 + sys_corr_97: -3.51056045e+00 + sys_corr_98: -2.49739378e+00 sys_corr_99: 2.65485747e+00 - sys_corr_100: -6.89780471e+00 - sys_corr_101: -9.53890506e+00 - sys_corr_102: 3.56456619e+00 - sys_corr_103: -3.05688649e+00 - sys_corr_104: -7.05504585e+00 - sys_corr_105: -1.52308586e+01 + sys_corr_100: 1.52308586e+01 + sys_corr_101: 6.89780471e+00 + sys_corr_102: 9.53890506e+00 + sys_corr_103: 3.56456619e+00 + sys_corr_104: 3.05688649e+00 + sys_corr_105: 7.05504585e+00 sys_corr_106: -1.16541834e+01 sys_corr_107: -2.23384093e+01 - sys_corr_108: 1.63717572e+01 - sys_corr_109: 1.29145619e+00 - sys_corr_110: 1.77913934e+00 - sys_corr_111: 9.97010227e+00 - sys_corr_112: 1.01632091e+01 - sys_corr_113: 8.06913590e+00 - sys_corr_114: -9.33989854e-02 - sys_corr_115: 3.07147067e+01 + sys_corr_108: 1.29145619e+00 + sys_corr_109: -1.63717572e+01 + sys_corr_110: -9.97010227e+00 + sys_corr_111: -1.77913934e+00 + sys_corr_112: -1.01632091e+01 + sys_corr_113: -8.06913590e+00 + sys_corr_114: 9.33989854e-02 + sys_corr_115: -3.07147067e+01 sys_corr_116: -4.99860763e+00 - sys_corr_117: -1.31380551e+00 + sys_corr_117: 1.31380551e+00 sys_corr_118: -3.75547084e+01 sys_corr_119: -4.56912935e-01 sys_corr_120: 1.61198749e+00 sys_corr_121: 1.67196495e-01 - sys_corr_122: 1.79912458e+00 - sys_corr_123: 1.14877456e+00 - sys_corr_124: -4.95452754e-01 + sys_corr_122: 1.14877456e+00 + sys_corr_123: -1.79912458e+00 + sys_corr_124: 4.95452754e-01 sys_corr_125: -1.76697766e+00 sys_corr_126: 5.20146763e-01 - sys_corr_127: -4.18269450e-01 - sys_corr_128: -2.11204959e+00 - sys_corr_129: 1.00450601e+00 - sys_corr_130: 4.81782027e-02 - sys_corr_131: -1.39608562e+00 + sys_corr_127: 4.18269450e-01 + sys_corr_128: 2.11204959e+00 + sys_corr_129: -1.00450601e+00 + sys_corr_130: -4.81782027e-02 + sys_corr_131: 1.39608562e+00 sys_corr_132: -3.80743612e+00 stat: 0.0 luminosity: 1.60038560e+01 @@ -16222,17 +16222,17 @@ bins: sys_corr_6: -5.53600998e+00 sys_corr_7: 5.57022594e+00 sys_corr_8: 2.59508164e+00 - sys_corr_9: 1.39481236e-01 - sys_corr_10: 3.74382989e-01 + sys_corr_9: -1.39481236e-01 + sys_corr_10: -3.74382989e-01 sys_corr_11: 8.49159441e-02 - sys_corr_12: -3.22122789e+00 - sys_corr_13: 4.11360244e+00 + sys_corr_12: 3.22122789e+00 + sys_corr_13: -4.11360244e+00 sys_corr_14: 1.76779328e+00 sys_corr_15: -2.03077991e+00 sys_corr_16: 3.19960923e+00 - sys_corr_17: 9.61470350e-01 + sys_corr_17: -9.61470350e-01 sys_corr_18: -1.99275120e+00 - sys_corr_19: -1.28657346e+00 + sys_corr_19: 1.28657346e+00 sys_corr_20: -3.29556273e+00 sys_corr_21: 1.82145952e-01 sys_corr_22: 4.26702123e+00 @@ -16248,103 +16248,103 @@ bins: sys_corr_32: -6.01475006e-01 sys_corr_33: 2.06405917e-01 sys_corr_34: -2.25785307e+00 - sys_corr_35: 1.24195081e-01 - sys_corr_36: 8.77196630e-01 + sys_corr_35: -1.24195081e-01 + sys_corr_36: -8.77196630e-01 sys_corr_37: 1.46137879e+00 sys_corr_38: -5.05229054e-01 - sys_corr_39: 1.21025635e-01 - sys_corr_40: 5.32955005e-02 - sys_corr_41: 7.40638973e-01 + sys_corr_39: -1.21025635e-01 + sys_corr_40: -5.32955005e-02 + sys_corr_41: -7.40638973e-01 sys_corr_42: 3.58346076e-01 sys_corr_43: 6.24092200e-01 sys_corr_44: 1.29980492e+00 sys_corr_45: -4.08425958e-01 - sys_corr_46: 8.51486529e-01 - sys_corr_47: 1.25642704e+00 + sys_corr_46: -8.51486529e-01 + sys_corr_47: -1.25642704e+00 sys_corr_48: -2.98779431e+00 sys_corr_49: 2.06900140e+00 sys_corr_50: 9.95833834e-01 - sys_corr_51: -3.93582615e+00 - sys_corr_52: 2.45314746e+00 - sys_corr_53: 7.79438145e-01 + sys_corr_51: 3.93582615e+00 + sys_corr_52: -2.45314746e+00 + sys_corr_53: -7.79438145e-01 sys_corr_54: -3.65799092e-01 sys_corr_55: 1.52490147e+00 - sys_corr_56: 1.41621757e-01 + sys_corr_56: -1.41621757e-01 sys_corr_57: 5.07784464e-01 - sys_corr_58: 7.96832068e-01 + sys_corr_58: -7.96832068e-01 sys_corr_59: 1.04161486e+00 sys_corr_60: 8.81603639e-01 - sys_corr_61: -2.73394206e-01 - sys_corr_62: 1.74991735e-01 + sys_corr_61: 2.73394206e-01 + sys_corr_62: -1.74991735e-01 sys_corr_63: 2.71684623e-01 sys_corr_64: 9.08126759e-02 - sys_corr_65: -4.44623522e-02 - sys_corr_66: -1.54202433e-01 - sys_corr_67: 1.88208388e-01 + sys_corr_65: 4.44623522e-02 + sys_corr_66: 1.54202433e-01 + sys_corr_67: -1.88208388e-01 sys_corr_68: 9.90647564e-01 sys_corr_69: 9.08294085e-01 sys_corr_70: 9.74205097e-01 - sys_corr_71: 2.51304884e-01 - sys_corr_72: 4.18150364e-01 + sys_corr_71: -2.51304884e-01 + sys_corr_72: -4.18150364e-01 sys_corr_73: -2.54931831e-01 sys_corr_74: 3.79670174e-01 - sys_corr_75: 8.27394258e-01 - sys_corr_76: -2.13710703e-01 + sys_corr_75: -8.27394258e-01 + sys_corr_76: 2.13710703e-01 sys_corr_77: -1.72719132e+00 sys_corr_78: 7.11194669e-01 sys_corr_79: 1.24513558e+00 - sys_corr_80: 1.00794677e+00 + sys_corr_80: -1.00794677e+00 sys_corr_81: 1.00434259e+00 - sys_corr_82: -4.18975022e-01 + sys_corr_82: 4.18975022e-01 sys_corr_83: 1.53797594e+00 sys_corr_84: -6.28807577e+00 sys_corr_85: 3.54936388e+00 - sys_corr_86: -2.92751666e-01 - sys_corr_87: 5.07613505e-01 + sys_corr_86: 2.92751666e-01 + sys_corr_87: -5.07613505e-01 sys_corr_88: -8.43106638e-01 sys_corr_89: -3.50370181e-01 - sys_corr_90: 1.61654641e+00 - sys_corr_91: 7.51981737e+00 - sys_corr_92: 7.85583599e-02 + sys_corr_90: -7.51981737e+00 + sys_corr_91: -1.61654641e+00 + sys_corr_92: -7.85583599e-02 sys_corr_93: -1.14227110e+00 sys_corr_94: -1.98193898e+00 - sys_corr_95: 4.07347197e+00 + sys_corr_95: -4.07347197e+00 sys_corr_96: 4.78134268e-01 - sys_corr_97: 1.70034568e+00 - sys_corr_98: 1.43276898e+00 + sys_corr_97: -1.70034568e+00 + sys_corr_98: -1.43276898e+00 sys_corr_99: 1.28616733e+00 - sys_corr_100: -4.20318403e+00 - sys_corr_101: -5.68689509e+00 - sys_corr_102: 2.56965224e+00 - sys_corr_103: -1.21322795e+00 - sys_corr_104: -3.87863069e+00 - sys_corr_105: -1.19799961e+01 + sys_corr_100: 1.19799961e+01 + sys_corr_101: 4.20318403e+00 + sys_corr_102: 5.68689509e+00 + sys_corr_103: 2.56965224e+00 + sys_corr_104: 1.21322795e+00 + sys_corr_105: 3.87863069e+00 sys_corr_106: -9.30141256e+00 sys_corr_107: -2.08406570e+01 - sys_corr_108: 1.82219711e+01 - sys_corr_109: 7.56409717e+00 - sys_corr_110: 1.48871935e+00 - sys_corr_111: 1.15865857e+01 - sys_corr_112: 1.15795027e+01 - sys_corr_113: 1.24411986e+01 - sys_corr_114: -7.51323445e-02 - sys_corr_115: 2.90858410e+01 + sys_corr_108: 7.56409717e+00 + sys_corr_109: -1.82219711e+01 + sys_corr_110: -1.15865857e+01 + sys_corr_111: -1.48871935e+00 + sys_corr_112: -1.15795027e+01 + sys_corr_113: -1.24411986e+01 + sys_corr_114: 7.51323445e-02 + sys_corr_115: -2.90858410e+01 sys_corr_116: -5.00030645e+00 - sys_corr_117: -2.40857810e+00 + sys_corr_117: 2.40857810e+00 sys_corr_118: 3.02797727e+01 sys_corr_119: -3.92346361e-01 sys_corr_120: 1.44282849e+00 sys_corr_121: 4.86837693e-01 - sys_corr_122: 4.65900514e+00 - sys_corr_123: 2.52252788e+00 - sys_corr_124: 1.69319496e-01 + sys_corr_122: 2.52252788e+00 + sys_corr_123: -4.65900514e+00 + sys_corr_124: -1.69319496e-01 sys_corr_125: -3.03227978e+00 sys_corr_126: 1.57684627e+00 - sys_corr_127: -4.30517459e-01 - sys_corr_128: -3.34010735e+00 - sys_corr_129: 8.39196189e+00 - sys_corr_130: 8.44208722e-01 - sys_corr_131: -9.01411808e-01 + sys_corr_127: 4.30517459e-01 + sys_corr_128: 3.34010735e+00 + sys_corr_129: -8.39196189e+00 + sys_corr_130: -8.44208722e-01 + sys_corr_131: 9.01411808e-01 sys_corr_132: -1.67795794e+01 stat: 0.0 luminosity: 1.15077820e+01 @@ -16356,17 +16356,17 @@ bins: sys_corr_6: -2.88464256e+00 sys_corr_7: 4.36816066e+00 sys_corr_8: 2.30086551e+00 - sys_corr_9: 1.49980398e+00 - sys_corr_10: 4.31940577e-01 + sys_corr_9: -1.49980398e+00 + sys_corr_10: -4.31940577e-01 sys_corr_11: 2.21449378e+00 - sys_corr_12: 2.12900767e+00 - sys_corr_13: -1.39706695e-01 + sys_corr_12: -2.12900767e+00 + sys_corr_13: 1.39706695e-01 sys_corr_14: 1.55147412e+00 sys_corr_15: -3.30277563e-02 sys_corr_16: 1.22287769e+00 - sys_corr_17: 1.66436244e+00 + sys_corr_17: -1.66436244e+00 sys_corr_18: -1.23560057e+00 - sys_corr_19: -2.00576173e+00 + sys_corr_19: 2.00576173e+00 sys_corr_20: -2.84517395e+00 sys_corr_21: -6.55261921e-01 sys_corr_22: 1.20078804e-01 @@ -16382,103 +16382,103 @@ bins: sys_corr_32: -4.95338317e-02 sys_corr_33: -4.38382757e-02 sys_corr_34: -2.46264149e+00 - sys_corr_35: -5.99228954e-01 - sys_corr_36: -1.07222180e+00 + sys_corr_35: 5.99228954e-01 + sys_corr_36: 1.07222180e+00 sys_corr_37: 3.48516901e-01 sys_corr_38: -1.78796570e-01 - sys_corr_39: -4.63354260e-01 - sys_corr_40: -5.45218183e-01 - sys_corr_41: 1.79340875e-02 + sys_corr_39: 4.63354260e-01 + sys_corr_40: 5.45218183e-01 + sys_corr_41: -1.79340875e-02 sys_corr_42: 7.63648542e-01 sys_corr_43: 2.03091853e-01 sys_corr_44: 4.44710377e-01 sys_corr_45: -8.01568739e-01 - sys_corr_46: -4.15823952e-02 - sys_corr_47: 1.58502266e+00 + sys_corr_46: 4.15823952e-02 + sys_corr_47: -1.58502266e+00 sys_corr_48: -2.38766386e+00 sys_corr_49: 1.46218843e+00 sys_corr_50: 2.13616536e+00 - sys_corr_51: -3.14594172e+00 - sys_corr_52: 2.10962033e+00 - sys_corr_53: 7.01154169e-01 + sys_corr_51: 3.14594172e+00 + sys_corr_52: -2.10962033e+00 + sys_corr_53: -7.01154169e-01 sys_corr_54: 4.49394085e-01 sys_corr_55: 7.87217828e-02 - sys_corr_56: 2.08011078e-01 + sys_corr_56: -2.08011078e-01 sys_corr_57: 9.26655745e-01 - sys_corr_58: 6.34198694e-01 + sys_corr_58: -6.34198694e-01 sys_corr_59: 4.65590923e-01 sys_corr_60: 4.97211681e-01 - sys_corr_61: 2.52518746e-02 - sys_corr_62: -2.26808803e-01 + sys_corr_61: -2.52518746e-02 + sys_corr_62: 2.26808803e-01 sys_corr_63: 1.00394687e-01 sys_corr_64: -3.80626349e-01 - sys_corr_65: 6.29160705e-01 - sys_corr_66: -9.78513901e-01 - sys_corr_67: 7.56118297e-01 + sys_corr_65: -6.29160705e-01 + sys_corr_66: 9.78513901e-01 + sys_corr_67: -7.56118297e-01 sys_corr_68: -1.04696695e-02 sys_corr_69: 1.23182893e+00 sys_corr_70: 9.81126481e-01 - sys_corr_71: 4.55320090e-02 - sys_corr_72: 3.93636147e-01 + sys_corr_71: -4.55320090e-02 + sys_corr_72: -3.93636147e-01 sys_corr_73: -4.74065103e-01 sys_corr_74: 9.51875340e-01 - sys_corr_75: 1.23527301e+00 - sys_corr_76: -1.09449825e+00 + sys_corr_75: -1.23527301e+00 + sys_corr_76: 1.09449825e+00 sys_corr_77: -1.70545999e+00 sys_corr_78: 8.11365748e-01 sys_corr_79: 8.88695981e-01 - sys_corr_80: 9.68609867e-01 + sys_corr_80: -9.68609867e-01 sys_corr_81: 8.53563413e-01 - sys_corr_82: -7.26319814e-01 + sys_corr_82: 7.26319814e-01 sys_corr_83: 1.51769723e+00 sys_corr_84: -3.92046221e+00 sys_corr_85: 1.84193402e+00 - sys_corr_86: -3.17719137e-02 - sys_corr_87: -2.10814613e-01 + sys_corr_86: 3.17719137e-02 + sys_corr_87: 2.10814613e-01 sys_corr_88: -1.37360681e-01 sys_corr_89: -1.66711872e+00 - sys_corr_90: -7.14477304e-02 - sys_corr_91: 4.46071848e+00 - sys_corr_92: -1.57093914e-01 + sys_corr_90: -4.46071848e+00 + sys_corr_91: 7.14477304e-02 + sys_corr_92: 1.57093914e-01 sys_corr_93: -1.02509248e+00 sys_corr_94: -2.75452736e+00 - sys_corr_95: 1.79882986e+00 + sys_corr_95: -1.79882986e+00 sys_corr_96: -4.62170205e-02 - sys_corr_97: 4.09733016e+00 - sys_corr_98: 2.06239189e+00 + sys_corr_97: -4.09733016e+00 + sys_corr_98: -2.06239189e+00 sys_corr_99: 2.09130142e+00 - sys_corr_100: -3.22904847e+00 - sys_corr_101: -4.87490143e+00 - sys_corr_102: 1.05089173e+00 - sys_corr_103: -7.25269580e-01 - sys_corr_104: -3.63778523e+00 - sys_corr_105: -7.55648201e+00 + sys_corr_100: 7.55648201e+00 + sys_corr_101: 3.22904847e+00 + sys_corr_102: 4.87490143e+00 + sys_corr_103: 1.05089173e+00 + sys_corr_104: 7.25269580e-01 + sys_corr_105: 3.63778523e+00 sys_corr_106: -5.69345024e+00 sys_corr_107: -1.27989960e+01 - sys_corr_108: 1.11664528e+01 - sys_corr_109: 2.82413862e+00 - sys_corr_110: 1.95485867e+00 - sys_corr_111: 6.95980137e+00 - sys_corr_112: 5.77981412e+00 - sys_corr_113: 7.83272905e+00 - sys_corr_114: 6.14918214e-01 - sys_corr_115: 1.42532550e+01 + sys_corr_108: 2.82413862e+00 + sys_corr_109: -1.11664528e+01 + sys_corr_110: -6.95980137e+00 + sys_corr_111: -1.95485867e+00 + sys_corr_112: -5.77981412e+00 + sys_corr_113: -7.83272905e+00 + sys_corr_114: -6.14918214e-01 + sys_corr_115: -1.42532550e+01 sys_corr_116: -2.83206333e+00 - sys_corr_117: -1.65667425e+00 + sys_corr_117: 1.65667425e+00 sys_corr_118: 9.52465247e+00 sys_corr_119: 5.44038023e-01 sys_corr_120: 8.19859445e-01 sys_corr_121: 5.71969674e-01 - sys_corr_122: 2.45259342e+00 - sys_corr_123: 1.82015301e+00 - sys_corr_124: -1.99808679e-01 + sys_corr_122: 1.82015301e+00 + sys_corr_123: -2.45259342e+00 + sys_corr_124: 1.99808679e-01 sys_corr_125: -2.47578753e+00 sys_corr_126: 1.14830048e+00 - sys_corr_127: 1.96705838e-02 - sys_corr_128: -1.60603528e+00 - sys_corr_129: 5.00896746e+00 - sys_corr_130: 1.30374668e+00 - sys_corr_131: -2.27939062e+00 + sys_corr_127: -1.96705838e-02 + sys_corr_128: 1.60603528e+00 + sys_corr_129: -5.00896746e+00 + sys_corr_130: -1.30374668e+00 + sys_corr_131: 2.27939062e+00 sys_corr_132: 3.62953704e+01 stat: 0.0 luminosity: 6.068678 @@ -16490,17 +16490,17 @@ bins: sys_corr_6: -8.63775284e-01 sys_corr_7: 1.54398462e+00 sys_corr_8: 9.88991008e-01 - sys_corr_9: 7.68029129e-01 - sys_corr_10: 2.29928815e-01 + sys_corr_9: -7.68029129e-01 + sys_corr_10: -2.29928815e-01 sys_corr_11: 3.58409420e-01 - sys_corr_12: -1.03968057e-01 - sys_corr_13: 5.63352471e-01 + sys_corr_12: 1.03968057e-01 + sys_corr_13: -5.63352471e-01 sys_corr_14: 5.78683139e-01 sys_corr_15: -1.86542416e-01 sys_corr_16: 6.06072625e-01 - sys_corr_17: 6.90909588e-01 + sys_corr_17: -6.90909588e-01 sys_corr_18: -4.36988841e-01 - sys_corr_19: -8.57325068e-01 + sys_corr_19: 8.57325068e-01 sys_corr_20: -1.42892756e+00 sys_corr_21: -4.41466976e-01 sys_corr_22: -1.02285404e-01 @@ -16516,103 +16516,103 @@ bins: sys_corr_32: 1.77476215e-01 sys_corr_33: 3.43888772e-01 sys_corr_34: -1.74088574e-01 - sys_corr_35: 1.78415431e-01 - sys_corr_36: 7.43479726e-01 + sys_corr_35: -1.78415431e-01 + sys_corr_36: -7.43479726e-01 sys_corr_37: 5.15270010e-01 sys_corr_38: 1.51730012e-01 - sys_corr_39: 2.79468275e-01 - sys_corr_40: 1.55174815e-01 - sys_corr_41: -2.78582430e-01 + sys_corr_39: -2.79468275e-01 + sys_corr_40: -1.55174815e-01 + sys_corr_41: 2.78582430e-01 sys_corr_42: -7.63806674e-01 sys_corr_43: -1.19579670e-01 sys_corr_44: 2.84015370e+00 sys_corr_45: 1.03878980e-01 - sys_corr_46: -4.91852873e-02 - sys_corr_47: -2.53538258e+00 + sys_corr_46: 4.91852873e-02 + sys_corr_47: 2.53538258e+00 sys_corr_48: 5.41510490e+00 sys_corr_49: -1.99474198e+00 sys_corr_50: -4.99500643e+00 - sys_corr_51: 4.77953599e+00 - sys_corr_52: -3.74877738e+00 - sys_corr_53: -2.38905396e-01 + sys_corr_51: -4.77953599e+00 + sys_corr_52: 3.74877738e+00 + sys_corr_53: 2.38905396e-01 sys_corr_54: 1.35521618e+00 sys_corr_55: -1.26663981e+00 - sys_corr_56: -1.15180775e+00 + sys_corr_56: 1.15180775e+00 sys_corr_57: -1.10415969e-01 - sys_corr_58: -8.51040430e-02 + sys_corr_58: 8.51040430e-02 sys_corr_59: 1.72990258e-01 sys_corr_60: 1.99820848e-01 - sys_corr_61: 3.08488336e-01 - sys_corr_62: -1.93664215e-01 + sys_corr_61: -3.08488336e-01 + sys_corr_62: 1.93664215e-01 sys_corr_63: -1.76613846e-01 sys_corr_64: 1.50540667e-01 - sys_corr_65: 2.15426812e-01 - sys_corr_66: 1.33658237e-01 - sys_corr_67: 2.59565914e-01 + sys_corr_65: -2.15426812e-01 + sys_corr_66: -1.33658237e-01 + sys_corr_67: -2.59565914e-01 sys_corr_68: -3.35139585e-01 sys_corr_69: 1.26961025e-01 sys_corr_70: -9.32891909e-03 - sys_corr_71: 1.58549139e-01 - sys_corr_72: -1.49074063e-01 + sys_corr_71: -1.58549139e-01 + sys_corr_72: 1.49074063e-01 sys_corr_73: -9.41243727e-02 sys_corr_74: 1.62669046e-01 - sys_corr_75: 4.59640150e-01 - sys_corr_76: -1.68924053e-01 + sys_corr_75: -4.59640150e-01 + sys_corr_76: 1.68924053e-01 sys_corr_77: -5.83860000e-01 sys_corr_78: 5.04974897e-01 sys_corr_79: 3.27742500e-01 - sys_corr_80: 8.50637399e-02 + sys_corr_80: -8.50637399e-02 sys_corr_81: 4.46008331e-01 - sys_corr_82: -3.21418335e-01 + sys_corr_82: 3.21418335e-01 sys_corr_83: 3.90300339e-01 sys_corr_84: -1.16345399e+00 sys_corr_85: 6.61084665e-01 - sys_corr_86: 8.76814854e-02 - sys_corr_87: -1.20890371e-01 + sys_corr_86: -8.76814854e-02 + sys_corr_87: 1.20890371e-01 sys_corr_88: 2.58910085e-01 sys_corr_89: -3.23462383e-01 - sys_corr_90: 5.11250801e-02 - sys_corr_91: 1.29768878e+00 - sys_corr_92: -3.20506988e-01 + sys_corr_90: -1.29768878e+00 + sys_corr_91: -5.11250801e-02 + sys_corr_92: 3.20506988e-01 sys_corr_93: -3.53053773e-01 sys_corr_94: -8.02339146e-01 - sys_corr_95: 7.30618680e-01 + sys_corr_95: -7.30618680e-01 sys_corr_96: 2.70980803e-02 - sys_corr_97: 1.22813704e+00 - sys_corr_98: 6.37617234e-01 + sys_corr_97: -1.22813704e+00 + sys_corr_98: -6.37617234e-01 sys_corr_99: 6.93909365e-01 - sys_corr_100: -1.34070776e+00 - sys_corr_101: -1.80289319e+00 - sys_corr_102: 7.61988877e-01 - sys_corr_103: -5.83894907e-01 - sys_corr_104: -1.43374273e+00 - sys_corr_105: -2.43076928e+00 + sys_corr_100: 2.43076928e+00 + sys_corr_101: 1.34070776e+00 + sys_corr_102: 1.80289319e+00 + sys_corr_103: 7.61988877e-01 + sys_corr_104: 5.83894907e-01 + sys_corr_105: 1.43374273e+00 sys_corr_106: -1.85643903e+00 sys_corr_107: -3.70540951e+00 - sys_corr_108: 3.01237232e+00 - sys_corr_109: 9.45229879e-01 - sys_corr_110: 6.46047730e-01 - sys_corr_111: 2.24627258e+00 - sys_corr_112: 1.35202521e+00 - sys_corr_113: 1.91025001e+00 - sys_corr_114: -4.24719219e-02 - sys_corr_115: 3.09327562e+00 + sys_corr_108: 9.45229879e-01 + sys_corr_109: -3.01237232e+00 + sys_corr_110: -2.24627258e+00 + sys_corr_111: -6.46047730e-01 + sys_corr_112: -1.35202521e+00 + sys_corr_113: -1.91025001e+00 + sys_corr_114: 4.24719219e-02 + sys_corr_115: -3.09327562e+00 sys_corr_116: -6.24509198e-01 - sys_corr_117: -2.80503609e-01 + sys_corr_117: 2.80503609e-01 sys_corr_118: 2.36472685e+00 sys_corr_119: 1.17794843e+00 sys_corr_120: 1.34572159e-01 sys_corr_121: 2.49461789e+00 - sys_corr_122: -5.64229348e-01 - sys_corr_123: -1.50949647e+00 - sys_corr_124: -1.58141246e-01 + sys_corr_122: -1.50949647e+00 + sys_corr_123: 5.64229348e-01 + sys_corr_124: 1.58141246e-01 sys_corr_125: -9.04155101e-02 sys_corr_126: -8.12615322e+00 - sys_corr_127: 2.79344276e-02 - sys_corr_128: 8.54957677e-01 - sys_corr_129: 6.91902050e-01 - sys_corr_130: -1.96439596e+01 - sys_corr_131: -2.53011899e-01 + sys_corr_127: -2.79344276e-02 + sys_corr_128: -8.54957677e-01 + sys_corr_129: -6.91902050e-01 + sys_corr_130: 1.96439596e+01 + sys_corr_131: 2.53011899e-01 sys_corr_132: 1.48854283e+00 stat: 0.0 luminosity: 2.356574 @@ -16624,17 +16624,17 @@ bins: sys_corr_6: 1.73414026e+00 sys_corr_7: 1.13716685e-01 sys_corr_8: -1.04063880e+00 - sys_corr_9: -2.17957660e+00 - sys_corr_10: -6.61746028e-01 + sys_corr_9: 2.17957660e+00 + sys_corr_10: 6.61746028e-01 sys_corr_11: -4.60089240e-01 - sys_corr_12: 8.21912587e-02 - sys_corr_13: 5.64356678e-01 + sys_corr_12: -8.21912587e-02 + sys_corr_13: -5.64356678e-01 sys_corr_14: 2.29193198e-01 sys_corr_15: 1.05631196e-01 sys_corr_16: 4.46621467e-01 - sys_corr_17: -4.27755885e-02 + sys_corr_17: 4.27755885e-02 sys_corr_18: -4.88453659e-02 - sys_corr_19: -3.53482030e-01 + sys_corr_19: 3.53482030e-01 sys_corr_20: -9.41019778e-02 sys_corr_21: -1.62456003e-01 sys_corr_22: 1.92070402e+00 @@ -16650,103 +16650,103 @@ bins: sys_corr_32: -2.57777847e-02 sys_corr_33: 2.89070291e-01 sys_corr_34: -6.86831814e-01 - sys_corr_35: 2.00607325e-01 - sys_corr_36: 7.77669847e-02 + sys_corr_35: -2.00607325e-01 + sys_corr_36: -7.77669847e-02 sys_corr_37: -4.17104256e-01 sys_corr_38: -1.97252706e-01 - sys_corr_39: 4.42742924e-01 - sys_corr_40: -1.46772301e-01 - sys_corr_41: 3.73552663e-01 + sys_corr_39: -4.42742924e-01 + sys_corr_40: 1.46772301e-01 + sys_corr_41: -3.73552663e-01 sys_corr_42: 1.63231241e-01 sys_corr_43: -3.52015787e-01 sys_corr_44: 2.99229332e-01 sys_corr_45: 1.46634140e-01 - sys_corr_46: 1.87782082e-01 - sys_corr_47: 4.39305398e-01 + sys_corr_46: -1.87782082e-01 + sys_corr_47: -4.39305398e-01 sys_corr_48: -5.53934127e-01 sys_corr_49: 2.52021813e-02 sys_corr_50: -2.08650218e-01 - sys_corr_51: -5.40880387e-02 - sys_corr_52: 9.68632276e-03 - sys_corr_53: -1.03296227e-01 + sys_corr_51: 5.40880387e-02 + sys_corr_52: -9.68632276e-03 + sys_corr_53: 1.03296227e-01 sys_corr_54: -6.86264036e-01 sys_corr_55: -4.32239633e-01 - sys_corr_56: -3.64111887e-01 + sys_corr_56: 3.64111887e-01 sys_corr_57: -1.50822540e-01 - sys_corr_58: 2.89632421e-01 + sys_corr_58: -2.89632421e-01 sys_corr_59: 2.13165263e-01 sys_corr_60: -6.03202583e-02 - sys_corr_61: 4.05818035e-02 - sys_corr_62: 3.55001601e-01 + sys_corr_61: -4.05818035e-02 + sys_corr_62: -3.55001601e-01 sys_corr_63: 7.03878895e-02 sys_corr_64: 3.85130859e-01 - sys_corr_65: 5.37730985e-01 - sys_corr_66: 3.05027178e-02 - sys_corr_67: -8.59529679e-02 + sys_corr_65: -5.37730985e-01 + sys_corr_66: -3.05027178e-02 + sys_corr_67: 8.59529679e-02 sys_corr_68: -1.56251275e-01 sys_corr_69: 4.82098963e-01 sys_corr_70: 4.36776666e-01 - sys_corr_71: -6.63971847e-02 - sys_corr_72: -3.11167102e-01 + sys_corr_71: 6.63971847e-02 + sys_corr_72: 3.11167102e-01 sys_corr_73: -7.62008742e-01 sys_corr_74: 8.38256323e-03 - sys_corr_75: -3.68740324e-02 - sys_corr_76: -2.84814479e-01 + sys_corr_75: 3.68740324e-02 + sys_corr_76: 2.84814479e-01 sys_corr_77: -1.30629155e-01 sys_corr_78: 3.38213466e-01 sys_corr_79: 6.53782434e-01 - sys_corr_80: 3.69166163e-01 + sys_corr_80: -3.69166163e-01 sys_corr_81: 4.59174954e-01 - sys_corr_82: 1.76340152e-01 + sys_corr_82: -1.76340152e-01 sys_corr_83: 9.82045929e-01 sys_corr_84: -4.89284665e+00 sys_corr_85: 3.40070100e+00 - sys_corr_86: 4.72084997e-01 - sys_corr_87: -3.25426618e-01 + sys_corr_86: -4.72084997e-01 + sys_corr_87: 3.25426618e-01 sys_corr_88: 3.32736089e-01 sys_corr_89: 6.13286695e-02 - sys_corr_90: 8.62275719e-01 - sys_corr_91: 5.50290713e+00 - sys_corr_92: -7.03733264e-01 + sys_corr_90: -5.50290713e+00 + sys_corr_91: -8.62275719e-01 + sys_corr_92: 7.03733264e-01 sys_corr_93: 1.52094264e-01 sys_corr_94: -5.56892336e-01 - sys_corr_95: 6.39417957e-01 + sys_corr_95: -6.39417957e-01 sys_corr_96: -7.86740808e-01 - sys_corr_97: 1.84875515e+00 - sys_corr_98: -7.40658070e-01 + sys_corr_97: -1.84875515e+00 + sys_corr_98: 7.40658070e-01 sys_corr_99: 3.06364617e-01 - sys_corr_100: -6.84317514e-01 - sys_corr_101: -1.17459094e+00 - sys_corr_102: 3.21860665e-01 - sys_corr_103: -1.22929191e-02 - sys_corr_104: 4.83277792e-01 - sys_corr_105: -1.56525281e+00 + sys_corr_100: 1.56525281e+00 + sys_corr_101: 6.84317514e-01 + sys_corr_102: 1.17459094e+00 + sys_corr_103: 3.21860665e-01 + sys_corr_104: 1.22929191e-02 + sys_corr_105: -4.83277792e-01 sys_corr_106: -9.75091612e-01 sys_corr_107: -1.60932237e+00 - sys_corr_108: 1.23723137e+00 - sys_corr_109: 2.52414973e-01 - sys_corr_110: 1.51574918e+00 - sys_corr_111: 9.56705372e-01 - sys_corr_112: 1.40602709e+00 - sys_corr_113: 2.35703092e+00 - sys_corr_114: -2.51171100e-03 - sys_corr_115: -2.10010569e+00 + sys_corr_108: 2.52414973e-01 + sys_corr_109: -1.23723137e+00 + sys_corr_110: -9.56705372e-01 + sys_corr_111: -1.51574918e+00 + sys_corr_112: -1.40602709e+00 + sys_corr_113: -2.35703092e+00 + sys_corr_114: 2.51171100e-03 + sys_corr_115: 2.10010569e+00 sys_corr_116: 7.01175798e-01 - sys_corr_117: -3.32782349e+00 + sys_corr_117: 3.32782349e+00 sys_corr_118: -1.41169646e-01 sys_corr_119: -1.02971768e-02 sys_corr_120: 1.77256762e+00 sys_corr_121: -7.47563966e-03 - sys_corr_122: 4.25149014e-01 - sys_corr_123: 1.08737654e-01 - sys_corr_124: 7.05461129e+01 + sys_corr_122: 1.08737654e-01 + sys_corr_123: -4.25149014e-01 + sys_corr_124: -7.05461129e+01 sys_corr_125: -8.16885800e-01 sys_corr_126: 1.74072333e-03 - sys_corr_127: -3.40495144e-01 - sys_corr_128: 2.27323214e-01 - sys_corr_129: -7.10759199e+00 - sys_corr_130: -3.94623370e-02 - sys_corr_131: -9.29837758e-01 + sys_corr_127: 3.40495144e-01 + sys_corr_128: -2.27323214e-01 + sys_corr_129: 7.10759199e+00 + sys_corr_130: 3.94623370e-02 + sys_corr_131: 9.29837758e-01 sys_corr_132: 3.24447447e-03 stat: 0.0 luminosity: 1.16578440e+01 @@ -16758,17 +16758,17 @@ bins: sys_corr_6: 1.50044643e+00 sys_corr_7: 4.20491312e-01 sys_corr_8: -8.95600941e-01 - sys_corr_9: -2.17300150e+00 - sys_corr_10: -4.70190982e-01 + sys_corr_9: 2.17300150e+00 + sys_corr_10: 4.70190982e-01 sys_corr_11: -4.43399321e-01 - sys_corr_12: 1.14157298e-01 - sys_corr_13: 2.87520634e-01 + sys_corr_12: -1.14157298e-01 + sys_corr_13: -2.87520634e-01 sys_corr_14: 2.30440512e-01 sys_corr_15: -8.80018823e-02 sys_corr_16: 1.68970109e-01 - sys_corr_17: -3.58917968e-01 + sys_corr_17: 3.58917968e-01 sys_corr_18: -5.30025445e-02 - sys_corr_19: 3.25838208e-02 + sys_corr_19: -3.25838208e-02 sys_corr_20: 1.96198251e-01 sys_corr_21: -2.23236438e-01 sys_corr_22: 1.57049401e+00 @@ -16784,103 +16784,103 @@ bins: sys_corr_32: -7.44052225e-02 sys_corr_33: 1.69320590e-01 sys_corr_34: -5.94602483e-01 - sys_corr_35: 1.61363796e-01 - sys_corr_36: 5.13977313e-02 + sys_corr_35: -1.61363796e-01 + sys_corr_36: -5.13977313e-02 sys_corr_37: -2.98651756e-01 sys_corr_38: -2.04651770e-01 - sys_corr_39: 3.68972235e-01 - sys_corr_40: -9.74817926e-02 - sys_corr_41: 3.55898580e-01 + sys_corr_39: -3.68972235e-01 + sys_corr_40: 9.74817926e-02 + sys_corr_41: -3.55898580e-01 sys_corr_42: 1.15306850e-01 sys_corr_43: -3.03193976e-01 sys_corr_44: 1.80769815e-01 sys_corr_45: 1.27246543e-01 - sys_corr_46: 1.56792454e-01 - sys_corr_47: 3.71050499e-01 + sys_corr_46: -1.56792454e-01 + sys_corr_47: -3.71050499e-01 sys_corr_48: -5.22382708e-01 sys_corr_49: -4.53099172e-02 sys_corr_50: -1.37047058e-01 - sys_corr_51: -1.12210805e-01 - sys_corr_52: 8.08288170e-03 - sys_corr_53: -1.70782620e-01 + sys_corr_51: 1.12210805e-01 + sys_corr_52: -8.08288170e-03 + sys_corr_53: 1.70782620e-01 sys_corr_54: -5.96122678e-01 sys_corr_55: -3.63397768e-01 - sys_corr_56: -2.68498704e-01 + sys_corr_56: 2.68498704e-01 sys_corr_57: -1.93994156e-01 - sys_corr_58: 1.60695108e-01 + sys_corr_58: -1.60695108e-01 sys_corr_59: 1.99107157e-01 sys_corr_60: -4.74235303e-02 - sys_corr_61: 5.41931844e-02 - sys_corr_62: 3.16272798e-01 + sys_corr_61: -5.41931844e-02 + sys_corr_62: -3.16272798e-01 sys_corr_63: 6.88183664e-02 sys_corr_64: 2.49474152e-01 - sys_corr_65: 4.04810427e-01 - sys_corr_66: 3.22010000e-02 - sys_corr_67: -6.41396810e-02 + sys_corr_65: -4.04810427e-01 + sys_corr_66: -3.22010000e-02 + sys_corr_67: 6.41396810e-02 sys_corr_68: -1.85528155e-01 sys_corr_69: 3.75970168e-01 sys_corr_70: 3.85245252e-01 - sys_corr_71: -6.93652438e-02 - sys_corr_72: -1.97599123e-01 + sys_corr_71: 6.93652438e-02 + sys_corr_72: 1.97599123e-01 sys_corr_73: -6.49631946e-01 sys_corr_74: 3.46546877e-02 - sys_corr_75: -5.59627885e-02 - sys_corr_76: -2.27328536e-01 + sys_corr_75: 5.59627885e-02 + sys_corr_76: 2.27328536e-01 sys_corr_77: -1.05219163e-01 sys_corr_78: 2.15623376e-01 sys_corr_79: 5.97283131e-01 - sys_corr_80: 2.87464932e-01 + sys_corr_80: -2.87464932e-01 sys_corr_81: 3.92121320e-01 - sys_corr_82: 1.67577484e-01 + sys_corr_82: -1.67577484e-01 sys_corr_83: 7.20415613e-01 sys_corr_84: -3.77914314e+00 sys_corr_85: 2.58255006e+00 - sys_corr_86: 3.75774193e-01 - sys_corr_87: -2.57344157e-01 + sys_corr_86: -3.75774193e-01 + sys_corr_87: 2.57344157e-01 sys_corr_88: 2.06801304e-01 sys_corr_89: 2.76120979e-03 - sys_corr_90: 7.43983994e-01 - sys_corr_91: 4.27193113e+00 - sys_corr_92: -4.55790164e-01 + sys_corr_90: -4.27193113e+00 + sys_corr_91: -7.43983994e-01 + sys_corr_92: 4.55790164e-01 sys_corr_93: -1.65830024e+00 sys_corr_94: 3.13297490e-01 - sys_corr_95: 2.30663736e-01 + sys_corr_95: -2.30663736e-01 sys_corr_96: 7.44829696e-01 - sys_corr_97: -6.02939472e-01 - sys_corr_98: 2.30812594e+00 + sys_corr_97: 6.02939472e-01 + sys_corr_98: -2.30812594e+00 sys_corr_99: 1.19617020e+00 - sys_corr_100: -6.16239830e-01 - sys_corr_101: -1.02940143e+00 - sys_corr_102: 7.82536893e-01 - sys_corr_103: 5.29226116e-02 - sys_corr_104: 2.23369707e-01 - sys_corr_105: -1.18403160e+00 + sys_corr_100: 1.18403160e+00 + sys_corr_101: 6.16239830e-01 + sys_corr_102: 1.02940143e+00 + sys_corr_103: 7.82536893e-01 + sys_corr_104: -5.29226116e-02 + sys_corr_105: -2.23369707e-01 sys_corr_106: -6.50451944e-01 sys_corr_107: -1.23379176e+00 - sys_corr_108: 1.00301272e+00 - sys_corr_109: 1.78761514e-01 - sys_corr_110: 1.12846637e+00 - sys_corr_111: 5.45986686e-01 - sys_corr_112: 6.86043027e-01 - sys_corr_113: 9.33892261e-01 - sys_corr_114: -2.45413183e-03 - sys_corr_115: 7.99149335e+00 + sys_corr_108: 1.78761514e-01 + sys_corr_109: -1.00301272e+00 + sys_corr_110: -5.45986686e-01 + sys_corr_111: -1.12846637e+00 + sys_corr_112: -6.86043027e-01 + sys_corr_113: -9.33892261e-01 + sys_corr_114: 2.45413183e-03 + sys_corr_115: -7.99149335e+00 sys_corr_116: 5.93119067e+01 - sys_corr_117: 7.49511573e-01 + sys_corr_117: -7.49511573e-01 sys_corr_118: -3.03155129e-03 sys_corr_119: -2.36823564e-02 sys_corr_120: 3.12219705e+00 sys_corr_121: -1.12327226e-02 - sys_corr_122: 6.14511929e-01 - sys_corr_123: 1.41051877e-01 - sys_corr_124: -8.50745285e-01 + sys_corr_122: 1.41051877e-01 + sys_corr_123: -6.14511929e-01 + sys_corr_124: 8.50745285e-01 sys_corr_125: -1.31336686e+00 sys_corr_126: 1.53403554e-02 - sys_corr_127: 2.36447054e-01 - sys_corr_128: 1.83197506e-01 - sys_corr_129: 1.03525268e+00 - sys_corr_130: -4.90401357e-02 - sys_corr_131: -1.49978178e+00 + sys_corr_127: -2.36447054e-01 + sys_corr_128: -1.83197506e-01 + sys_corr_129: -1.03525268e+00 + sys_corr_130: 4.90401357e-02 + sys_corr_131: 1.49978178e+00 sys_corr_132: 6.17076418e-02 stat: 0.0 luminosity: 1.33837660e+01 @@ -16892,17 +16892,17 @@ bins: sys_corr_6: 1.30603072e+00 sys_corr_7: 4.38523879e-01 sys_corr_8: -9.42298337e-01 - sys_corr_9: -1.80681087e+00 - sys_corr_10: -6.85124188e-01 + sys_corr_9: 1.80681087e+00 + sys_corr_10: 6.85124188e-01 sys_corr_11: -3.62134278e-01 - sys_corr_12: 2.31058823e-01 - sys_corr_13: 4.30856996e-01 + sys_corr_12: -2.31058823e-01 + sys_corr_13: -4.30856996e-01 sys_corr_14: 1.97068661e-01 sys_corr_15: 7.91398271e-02 sys_corr_16: 4.35254189e-01 - sys_corr_17: -3.70432989e-01 + sys_corr_17: 3.70432989e-01 sys_corr_18: 1.83703301e-02 - sys_corr_19: 2.63537219e-01 + sys_corr_19: -2.63537219e-01 sys_corr_20: 3.79363797e-01 sys_corr_21: 1.01144045e-01 sys_corr_22: 1.57596643e+00 @@ -16918,103 +16918,103 @@ bins: sys_corr_32: -1.19145905e-01 sys_corr_33: 1.93080170e-01 sys_corr_34: -6.55400683e-01 - sys_corr_35: 1.07204963e-01 - sys_corr_36: -1.69881557e-02 + sys_corr_35: -1.07204963e-01 + sys_corr_36: 1.69881557e-02 sys_corr_37: -3.38712162e-01 sys_corr_38: -1.43453790e-01 - sys_corr_39: 3.68447764e-01 - sys_corr_40: -2.19399090e-02 - sys_corr_41: 3.22367859e-01 + sys_corr_39: -3.68447764e-01 + sys_corr_40: 2.19399090e-02 + sys_corr_41: -3.22367859e-01 sys_corr_42: 2.06111540e-01 sys_corr_43: -2.43608042e-01 sys_corr_44: 2.90326143e-01 sys_corr_45: 8.56098154e-02 - sys_corr_46: 1.65324096e-01 - sys_corr_47: 4.78185350e-01 + sys_corr_46: -1.65324096e-01 + sys_corr_47: -4.78185350e-01 sys_corr_48: -5.76810395e-01 sys_corr_49: -2.67281608e-02 sys_corr_50: -8.20329447e-02 - sys_corr_51: -1.05711986e-01 - sys_corr_52: -4.78321878e-02 - sys_corr_53: -1.63795097e-01 + sys_corr_51: 1.05711986e-01 + sys_corr_52: 4.78321878e-02 + sys_corr_53: 1.63795097e-01 sys_corr_54: -4.86285212e-01 sys_corr_55: -3.38230905e-01 - sys_corr_56: -3.66566252e-01 + sys_corr_56: 3.66566252e-01 sys_corr_57: -2.85645827e-01 - sys_corr_58: 2.04362594e-01 + sys_corr_58: -2.04362594e-01 sys_corr_59: 2.22079243e-01 sys_corr_60: 7.89266958e-02 - sys_corr_61: -7.32342935e-04 - sys_corr_62: 2.44258734e-01 + sys_corr_61: 7.32342935e-04 + sys_corr_62: -2.44258734e-01 sys_corr_63: 1.18266083e-01 sys_corr_64: 2.42602905e-01 - sys_corr_65: 3.78903342e-01 - sys_corr_66: 6.36033911e-02 - sys_corr_67: -1.24122518e-01 + sys_corr_65: -3.78903342e-01 + sys_corr_66: -6.36033911e-02 + sys_corr_67: 1.24122518e-01 sys_corr_68: -1.47271684e-01 sys_corr_69: 3.56320006e-01 sys_corr_70: 3.72378439e-01 - sys_corr_71: -8.17421980e-04 - sys_corr_72: -1.70958021e-01 + sys_corr_71: 8.17421980e-04 + sys_corr_72: 1.70958021e-01 sys_corr_73: -6.58124732e-01 sys_corr_74: 9.09184329e-02 - sys_corr_75: -1.34534865e-01 - sys_corr_76: -1.56308459e-01 + sys_corr_75: 1.34534865e-01 + sys_corr_76: 1.56308459e-01 sys_corr_77: -1.60834193e-01 sys_corr_78: 2.08479845e-01 sys_corr_79: 4.47070996e-01 - sys_corr_80: 2.36433146e-01 + sys_corr_80: -2.36433146e-01 sys_corr_81: 3.94839137e-01 - sys_corr_82: 5.00451833e-02 + sys_corr_82: -5.00451833e-02 sys_corr_83: 6.48478944e-01 sys_corr_84: -3.73632698e+00 sys_corr_85: 2.52606390e+00 - sys_corr_86: 3.76430794e-01 - sys_corr_87: -8.24601383e-02 + sys_corr_86: -3.76430794e-01 + sys_corr_87: 8.24601383e-02 sys_corr_88: 2.42406278e-01 sys_corr_89: -3.43068706e-02 - sys_corr_90: 9.26609581e-01 - sys_corr_91: 4.34294185e+00 - sys_corr_92: -4.21007509e-01 + sys_corr_90: -4.34294185e+00 + sys_corr_91: -9.26609581e-01 + sys_corr_92: 4.21007509e-01 sys_corr_93: -4.72355896e-01 sys_corr_94: 2.30573218e-01 - sys_corr_95: 3.07225163e-01 + sys_corr_95: -3.07225163e-01 sys_corr_96: 1.98069362e-01 - sys_corr_97: -2.81788625e-01 - sys_corr_98: -3.65753224e-01 + sys_corr_97: 2.81788625e-01 + sys_corr_98: 3.65753224e-01 sys_corr_99: -4.74894956e-01 - sys_corr_100: -7.10523327e-01 - sys_corr_101: -1.27096583e+00 - sys_corr_102: 2.03935637e-01 - sys_corr_103: -5.55800234e-01 - sys_corr_104: -2.22908333e+00 - sys_corr_105: -1.39227130e+00 + sys_corr_100: 1.39227130e+00 + sys_corr_101: 7.10523327e-01 + sys_corr_102: 1.27096583e+00 + sys_corr_103: 2.03935637e-01 + sys_corr_104: 5.55800234e-01 + sys_corr_105: 2.22908333e+00 sys_corr_106: -9.23814917e-01 sys_corr_107: -1.59998616e+00 - sys_corr_108: 1.13998216e+00 - sys_corr_109: 3.55274690e-01 - sys_corr_110: -9.17783650e-01 - sys_corr_111: 7.68453064e-01 - sys_corr_112: 7.17303997e-01 - sys_corr_113: 8.85285794e-01 - sys_corr_114: -8.24739604e-04 - sys_corr_115: 1.58373448e+00 + sys_corr_108: 3.55274690e-01 + sys_corr_109: -1.13998216e+00 + sys_corr_110: -7.68453064e-01 + sys_corr_111: 9.17783650e-01 + sys_corr_112: -7.17303997e-01 + sys_corr_113: -8.85285794e-01 + sys_corr_114: 8.24739604e-04 + sys_corr_115: -1.58373448e+00 sys_corr_116: -1.31884768e+00 - sys_corr_117: 5.30797261e+01 + sys_corr_117: -5.30797261e+01 sys_corr_118: 6.42840554e-01 sys_corr_119: -2.81994756e-02 sys_corr_120: -7.94145529e-01 sys_corr_121: 1.26216628e-02 - sys_corr_122: 9.96402322e-01 - sys_corr_123: 2.57882821e-01 - sys_corr_124: 4.16796488e+00 + sys_corr_122: 2.57882821e-01 + sys_corr_123: -9.96402322e-01 + sys_corr_124: -4.16796488e+00 sys_corr_125: -1.95726811e+00 sys_corr_126: 5.52717753e-02 - sys_corr_127: -3.82194063e-01 - sys_corr_128: 6.37229015e-02 - sys_corr_129: -2.87782261e-01 - sys_corr_130: -5.25119022e-02 - sys_corr_131: -2.05951723e+00 + sys_corr_127: 3.82194063e-01 + sys_corr_128: -6.37229015e-02 + sys_corr_129: 2.87782261e-01 + sys_corr_130: 5.25119022e-02 + sys_corr_131: 2.05951723e+00 sys_corr_132: 1.74395940e-01 stat: 0.0 luminosity: 1.43488840e+01 @@ -17026,17 +17026,17 @@ bins: sys_corr_6: 5.25520046e-01 sys_corr_7: 6.13626990e-02 sys_corr_8: -5.17296578e-01 - sys_corr_9: -1.42389194e+00 - sys_corr_10: -1.51499291e-01 + sys_corr_9: 1.42389194e+00 + sys_corr_10: 1.51499291e-01 sys_corr_11: -3.56737395e-01 - sys_corr_12: -7.32547620e-02 - sys_corr_13: 4.37549288e-01 + sys_corr_12: 7.32547620e-02 + sys_corr_13: -4.37549288e-01 sys_corr_14: 1.53112049e-01 sys_corr_15: 1.52597394e-01 sys_corr_16: 2.19469511e-01 - sys_corr_17: -4.56757499e-01 + sys_corr_17: 4.56757499e-01 sys_corr_18: -1.72883443e-01 - sys_corr_19: -4.07979575e-02 + sys_corr_19: 4.07979575e-02 sys_corr_20: 4.31479330e-01 sys_corr_21: -3.13184813e-02 sys_corr_22: 1.38244093e+00 @@ -17052,103 +17052,103 @@ bins: sys_corr_32: -9.63909640e-02 sys_corr_33: 1.91529278e-01 sys_corr_34: -4.72321520e-01 - sys_corr_35: 1.09419010e-01 - sys_corr_36: -3.27536974e-03 + sys_corr_35: -1.09419010e-01 + sys_corr_36: 3.27536974e-03 sys_corr_37: -1.18830128e-01 sys_corr_38: -1.44613621e-01 - sys_corr_39: 3.02433281e-01 - sys_corr_40: -6.06969054e-02 - sys_corr_41: 3.81256388e-01 + sys_corr_39: -3.02433281e-01 + sys_corr_40: 6.06969054e-02 + sys_corr_41: -3.81256388e-01 sys_corr_42: 1.67669780e-01 sys_corr_43: -1.86599872e-01 sys_corr_44: 1.93033609e-01 sys_corr_45: 2.31319369e-02 - sys_corr_46: 1.59753604e-01 - sys_corr_47: 3.44973118e-01 + sys_corr_46: -1.59753604e-01 + sys_corr_47: -3.44973118e-01 sys_corr_48: -6.08417045e-01 sys_corr_49: 1.31317924e-01 sys_corr_50: -1.93182641e-01 - sys_corr_51: 9.49820708e-02 - sys_corr_52: -5.67362813e-03 - sys_corr_53: -1.40388860e-01 + sys_corr_51: -9.49820708e-02 + sys_corr_52: 5.67362813e-03 + sys_corr_53: 1.40388860e-01 sys_corr_54: -3.03727070e-01 sys_corr_55: -2.59548448e-01 - sys_corr_56: -2.77993711e-01 + sys_corr_56: 2.77993711e-01 sys_corr_57: -2.17784699e-01 - sys_corr_58: 2.04065313e-01 + sys_corr_58: -2.04065313e-01 sys_corr_59: 1.36261362e-01 sys_corr_60: 1.09831212e-01 - sys_corr_61: 8.01814607e-02 - sys_corr_62: 3.00660764e-01 + sys_corr_61: -8.01814607e-02 + sys_corr_62: -3.00660764e-01 sys_corr_63: 9.15766009e-02 sys_corr_64: 1.65052605e-01 - sys_corr_65: 2.53411325e-01 - sys_corr_66: 2.22618837e-02 - sys_corr_67: -3.08840797e-02 + sys_corr_65: -2.53411325e-01 + sys_corr_66: -2.22618837e-02 + sys_corr_67: 3.08840797e-02 sys_corr_68: -1.28279958e-01 sys_corr_69: 3.14704544e-01 sys_corr_70: 3.29705336e-01 - sys_corr_71: -1.30403381e-01 - sys_corr_72: -2.36546336e-01 + sys_corr_71: 1.30403381e-01 + sys_corr_72: 2.36546336e-01 sys_corr_73: -4.61854603e-01 sys_corr_74: 1.54625093e-01 - sys_corr_75: -1.36274553e-02 - sys_corr_76: -2.60448756e-02 + sys_corr_75: 1.36274553e-02 + sys_corr_76: 2.60448756e-02 sys_corr_77: -6.03125606e-02 sys_corr_78: 2.00865045e-01 sys_corr_79: 4.80380930e-01 - sys_corr_80: 1.40955746e-01 + sys_corr_80: -1.40955746e-01 sys_corr_81: 3.78096408e-01 - sys_corr_82: 4.01129031e-02 + sys_corr_82: -4.01129031e-02 sys_corr_83: 4.92767979e-01 sys_corr_84: -2.86769542e+00 sys_corr_85: 1.82376433e+00 - sys_corr_86: 3.41257710e-01 - sys_corr_87: -8.03372525e-02 + sys_corr_86: -3.41257710e-01 + sys_corr_87: 8.03372525e-02 sys_corr_88: 2.29788987e-01 sys_corr_89: -4.79795474e-02 - sys_corr_90: 7.47629011e-01 - sys_corr_91: 3.32871720e+00 - sys_corr_92: -3.09224890e-01 + sys_corr_90: -3.32871720e+00 + sys_corr_91: -7.47629011e-01 + sys_corr_92: 3.09224890e-01 sys_corr_93: -2.46437339e-01 sys_corr_94: 2.59361578e-01 - sys_corr_95: 3.37924292e-01 + sys_corr_95: -3.37924292e-01 sys_corr_96: 2.32843295e-01 - sys_corr_97: -1.07861540e+00 - sys_corr_98: -7.71120668e-01 + sys_corr_97: 1.07861540e+00 + sys_corr_98: 7.71120668e-01 sys_corr_99: 1.50352411e+00 - sys_corr_100: -8.93487390e-01 - sys_corr_101: -2.47332470e+00 - sys_corr_102: 1.61087801e+00 - sys_corr_103: -3.83638002e-01 - sys_corr_104: 3.18614721e-01 - sys_corr_105: -1.43708526e+00 + sys_corr_100: 1.43708526e+00 + sys_corr_101: 8.93487390e-01 + sys_corr_102: 2.47332470e+00 + sys_corr_103: 1.61087801e+00 + sys_corr_104: 3.83638002e-01 + sys_corr_105: -3.18614721e-01 sys_corr_106: -8.79739344e-01 sys_corr_107: -1.71665127e+00 - sys_corr_108: 1.15873432e+00 - sys_corr_109: 1.90392559e-01 - sys_corr_110: -6.45902871e-01 - sys_corr_111: 7.04952609e-01 - sys_corr_112: 7.24732273e-01 - sys_corr_113: 7.19946747e-01 - sys_corr_114: 1.09343448e-03 - sys_corr_115: 1.54311112e+00 + sys_corr_108: 1.90392559e-01 + sys_corr_109: -1.15873432e+00 + sys_corr_110: -7.04952609e-01 + sys_corr_111: 6.45902871e-01 + sys_corr_112: -7.24732273e-01 + sys_corr_113: -7.19946747e-01 + sys_corr_114: -1.09343448e-03 + sys_corr_115: -1.54311112e+00 sys_corr_116: 3.65634038e+00 - sys_corr_117: -1.19071361e+00 + sys_corr_117: 1.19071361e+00 sys_corr_118: -4.44907838e-01 sys_corr_119: -3.22605894e-02 sys_corr_120: -4.66498146e+01 sys_corr_121: 5.34503750e-02 - sys_corr_122: 1.72350541e+00 - sys_corr_123: 5.22980260e-01 - sys_corr_124: 2.32361919e+00 + sys_corr_122: 5.22980260e-01 + sys_corr_123: -1.72350541e+00 + sys_corr_124: -2.32361919e+00 sys_corr_125: -2.62313732e+00 sys_corr_126: 1.26443770e-01 - sys_corr_127: -1.40614573e+00 - sys_corr_128: -3.98879667e-02 - sys_corr_129: -2.81269659e-01 - sys_corr_130: -1.02600318e-01 - sys_corr_131: 2.59363781e+00 + sys_corr_127: 1.40614573e+00 + sys_corr_128: 3.98879667e-02 + sys_corr_129: 2.81269659e-01 + sys_corr_130: 1.02600318e-01 + sys_corr_131: -2.59363781e+00 sys_corr_132: 2.76724971e-02 stat: 0.0 luminosity: 1.14751560e+01 @@ -17160,17 +17160,17 @@ bins: sys_corr_6: -2.22332887e-01 sys_corr_7: 5.10836072e-01 sys_corr_8: -3.95972925e-01 - sys_corr_9: -1.04231271e+00 - sys_corr_10: -2.20501342e-01 + sys_corr_9: 1.04231271e+00 + sys_corr_10: 2.20501342e-01 sys_corr_11: -5.09493923e-02 - sys_corr_12: -1.92548311e-01 - sys_corr_13: 6.41503179e-01 + sys_corr_12: 1.92548311e-01 + sys_corr_13: -6.41503179e-01 sys_corr_14: 1.98339388e-01 sys_corr_15: -4.54725187e-02 sys_corr_16: 6.08236203e-01 - sys_corr_17: -1.22330166e-01 + sys_corr_17: 1.22330166e-01 sys_corr_18: -4.47070431e-01 - sys_corr_19: -1.39916562e-01 + sys_corr_19: 1.39916562e-01 sys_corr_20: 1.13584726e-01 sys_corr_21: -1.37193200e-01 sys_corr_22: 1.07768552e+00 @@ -17186,103 +17186,103 @@ bins: sys_corr_32: -2.11095561e-01 sys_corr_33: 2.45948190e-01 sys_corr_34: -3.58062763e-01 - sys_corr_35: -1.56203000e-02 - sys_corr_36: -7.47407703e-02 + sys_corr_35: 1.56203000e-02 + sys_corr_36: 7.47407703e-02 sys_corr_37: -1.14940097e-01 sys_corr_38: -5.84203106e-02 - sys_corr_39: 3.06740544e-01 - sys_corr_40: -1.69256813e-01 - sys_corr_41: 4.13679404e-01 + sys_corr_39: -3.06740544e-01 + sys_corr_40: 1.69256813e-01 + sys_corr_41: -4.13679404e-01 sys_corr_42: 2.44840174e-01 sys_corr_43: -1.46802851e-01 sys_corr_44: 1.80718243e-01 sys_corr_45: 1.85949632e-02 - sys_corr_46: 1.09145357e-02 - sys_corr_47: 2.67971424e-01 + sys_corr_46: -1.09145357e-02 + sys_corr_47: -2.67971424e-01 sys_corr_48: -6.00970071e-01 sys_corr_49: 1.60288491e-01 sys_corr_50: -2.52661408e-01 - sys_corr_51: 3.17240947e-01 - sys_corr_52: -1.11288582e-01 - sys_corr_53: -9.79701558e-02 + sys_corr_51: -3.17240947e-01 + sys_corr_52: 1.11288582e-01 + sys_corr_53: 9.79701558e-02 sys_corr_54: -1.35142618e-01 sys_corr_55: -2.51877384e-01 - sys_corr_56: -2.61868687e-01 + sys_corr_56: 2.61868687e-01 sys_corr_57: -1.33001889e-01 - sys_corr_58: 1.18631389e-01 + sys_corr_58: -1.18631389e-01 sys_corr_59: 6.58270156e-02 sys_corr_60: 3.85848153e-02 - sys_corr_61: 1.71047251e-01 - sys_corr_62: 3.05542945e-01 + sys_corr_61: -1.71047251e-01 + sys_corr_62: -3.05542945e-01 sys_corr_63: 1.46878433e-01 sys_corr_64: 1.33127350e-01 - sys_corr_65: 1.52474440e-01 - sys_corr_66: 5.57328704e-02 - sys_corr_67: -9.34506510e-02 + sys_corr_65: -1.52474440e-01 + sys_corr_66: -5.57328704e-02 + sys_corr_67: 9.34506510e-02 sys_corr_68: -7.88729696e-02 sys_corr_69: 3.00906185e-01 sys_corr_70: 2.11526846e-01 - sys_corr_71: -6.80387629e-02 - sys_corr_72: -2.12642737e-01 + sys_corr_71: 6.80387629e-02 + sys_corr_72: 2.12642737e-01 sys_corr_73: -4.82200531e-01 sys_corr_74: 1.91851203e-01 - sys_corr_75: 6.92695452e-02 - sys_corr_76: 2.70584606e-04 + sys_corr_75: -6.92695452e-02 + sys_corr_76: -2.70584606e-04 sys_corr_77: -1.71333707e-01 sys_corr_78: 2.72431754e-01 sys_corr_79: 4.44723121e-01 - sys_corr_80: 6.99070033e-02 + sys_corr_80: -6.99070033e-02 sys_corr_81: 4.20017556e-01 - sys_corr_82: -1.24398369e-01 + sys_corr_82: 1.24398369e-01 sys_corr_83: 4.87746066e-01 sys_corr_84: -2.72185085e+00 sys_corr_85: 1.65503431e+00 - sys_corr_86: 4.28322538e-01 - sys_corr_87: -3.40426661e-02 + sys_corr_86: -4.28322538e-01 + sys_corr_87: 3.40426661e-02 sys_corr_88: 3.08667907e-01 sys_corr_89: 2.28497724e-02 - sys_corr_90: 6.76834845e-01 - sys_corr_91: 3.13465146e+00 - sys_corr_92: -2.41841105e-01 + sys_corr_90: -3.13465146e+00 + sys_corr_91: -6.76834845e-01 + sys_corr_92: 2.41841105e-01 sys_corr_93: -8.89910727e-02 sys_corr_94: -7.96589061e-03 - sys_corr_95: 3.55679919e-01 + sys_corr_95: -3.55679919e-01 sys_corr_96: -6.78571045e-03 - sys_corr_97: -6.53144903e-01 - sys_corr_98: -2.46691711e-01 + sys_corr_97: 6.53144903e-01 + sys_corr_98: 2.46691711e-01 sys_corr_99: -2.97358433e-01 - sys_corr_100: -1.92391328e+00 - sys_corr_101: -5.74879618e-01 - sys_corr_102: 1.17910142e+00 - sys_corr_103: -5.94128868e-01 - sys_corr_104: -6.08790736e-01 - sys_corr_105: -2.65665341e+00 + sys_corr_100: 2.65665341e+00 + sys_corr_101: 1.92391328e+00 + sys_corr_102: 5.74879618e-01 + sys_corr_103: 1.17910142e+00 + sys_corr_104: 5.94128868e-01 + sys_corr_105: 6.08790736e-01 sys_corr_106: -1.50418239e+00 sys_corr_107: -1.97744674e+00 - sys_corr_108: 1.28488990e+00 - sys_corr_109: 3.15233007e-01 - sys_corr_110: 1.08777683e+00 - sys_corr_111: 8.72043489e-01 - sys_corr_112: 8.57603310e-01 - sys_corr_113: 7.57069340e-01 - sys_corr_114: 2.03463464e-03 - sys_corr_115: 1.56560467e+00 + sys_corr_108: 3.15233007e-01 + sys_corr_109: -1.28488990e+00 + sys_corr_110: -8.72043489e-01 + sys_corr_111: -1.08777683e+00 + sys_corr_112: -8.57603310e-01 + sys_corr_113: -7.57069340e-01 + sys_corr_114: -2.03463464e-03 + sys_corr_115: -1.56560467e+00 sys_corr_116: 1.65825566e+00 - sys_corr_117: 2.62045657e+00 + sys_corr_117: -2.62045657e+00 sys_corr_118: -2.90502690e-01 sys_corr_119: 1.71736751e-03 sys_corr_120: 3.28821219e+00 sys_corr_121: 1.71568095e-01 - sys_corr_122: 3.93756696e+00 - sys_corr_123: 1.31647927e+00 - sys_corr_124: 1.49992275e+00 + sys_corr_122: 1.31647927e+00 + sys_corr_123: -3.93756696e+00 + sys_corr_124: -1.49992275e+00 sys_corr_125: 3.54845196e+00 sys_corr_126: 3.03894268e-01 - sys_corr_127: 3.46155127e-01 - sys_corr_128: -1.55086320e-01 - sys_corr_129: -3.32820187e-01 - sys_corr_130: -2.42382188e-01 - sys_corr_131: 3.90694480e+01 + sys_corr_127: -3.46155127e-01 + sys_corr_128: 1.55086320e-01 + sys_corr_129: 3.32820187e-01 + sys_corr_130: 2.42382188e-01 + sys_corr_131: -3.90694480e+01 sys_corr_132: 1.63076407e+00 stat: 0.0 luminosity: 1.17390900e+01 @@ -17294,17 +17294,17 @@ bins: sys_corr_6: -5.89692734e-01 sys_corr_7: 4.27963825e-01 sys_corr_8: -3.37445616e-01 - sys_corr_9: -6.14108184e-01 - sys_corr_10: -1.22624140e-01 + sys_corr_9: 6.14108184e-01 + sys_corr_10: 1.22624140e-01 sys_corr_11: -1.39358489e-01 - sys_corr_12: -1.03761553e-01 - sys_corr_13: 5.84791804e-01 + sys_corr_12: 1.03761553e-01 + sys_corr_13: -5.84791804e-01 sys_corr_14: 3.83981022e-01 sys_corr_15: -1.22726698e-01 sys_corr_16: 2.36027592e-01 - sys_corr_17: -1.04465559e-01 + sys_corr_17: 1.04465559e-01 sys_corr_18: -1.32642583e-01 - sys_corr_19: -5.31978289e-01 + sys_corr_19: 5.31978289e-01 sys_corr_20: 1.17906433e-01 sys_corr_21: -1.79974474e-02 sys_corr_22: 9.86394750e-01 @@ -17320,103 +17320,103 @@ bins: sys_corr_32: -2.34531478e-01 sys_corr_33: 2.53221744e-01 sys_corr_34: -5.13388043e-01 - sys_corr_35: 1.85876961e-02 - sys_corr_36: -1.22167001e-01 + sys_corr_35: -1.85876961e-02 + sys_corr_36: 1.22167001e-01 sys_corr_37: 1.73204348e-02 sys_corr_38: -8.67123582e-02 - sys_corr_39: 2.36697067e-01 - sys_corr_40: -2.34828337e-01 - sys_corr_41: 5.74400612e-01 + sys_corr_39: -2.36697067e-01 + sys_corr_40: 2.34828337e-01 + sys_corr_41: -5.74400612e-01 sys_corr_42: 3.95268685e-01 sys_corr_43: -1.82474413e-01 sys_corr_44: 2.78961279e-01 sys_corr_45: -9.22764447e-02 - sys_corr_46: 1.10086464e-02 - sys_corr_47: 2.24565517e-01 + sys_corr_46: -1.10086464e-02 + sys_corr_47: -2.24565517e-01 sys_corr_48: -5.72579319e-01 sys_corr_49: 2.30307054e-01 sys_corr_50: -5.07536580e-01 - sys_corr_51: 6.60373455e-01 - sys_corr_52: -2.39193068e-01 - sys_corr_53: -1.11073465e-01 + sys_corr_51: -6.60373455e-01 + sys_corr_52: 2.39193068e-01 + sys_corr_53: 1.11073465e-01 sys_corr_54: 1.95551321e-01 sys_corr_55: -3.53071910e-01 - sys_corr_56: -4.14171225e-01 + sys_corr_56: 4.14171225e-01 sys_corr_57: -1.03544440e-01 - sys_corr_58: 2.00248980e-01 + sys_corr_58: -2.00248980e-01 sys_corr_59: 6.46832711e-02 sys_corr_60: 2.20414610e-01 - sys_corr_61: 2.43761952e-01 - sys_corr_62: 3.39212343e-01 + sys_corr_61: -2.43761952e-01 + sys_corr_62: -3.39212343e-01 sys_corr_63: 2.62576130e-01 sys_corr_64: 1.95395406e-01 - sys_corr_65: 1.36769454e-01 - sys_corr_66: 1.97741593e-02 - sys_corr_67: -5.65562791e-02 + sys_corr_65: -1.36769454e-01 + sys_corr_66: -1.97741593e-02 + sys_corr_67: 5.65562791e-02 sys_corr_68: -5.43761580e-03 sys_corr_69: 4.04695781e-01 sys_corr_70: 2.79164067e-01 - sys_corr_71: -9.09399990e-02 - sys_corr_72: -4.33256303e-01 + sys_corr_71: 9.09399990e-02 + sys_corr_72: 4.33256303e-01 sys_corr_73: -5.08453797e-01 sys_corr_74: 3.61317307e-01 - sys_corr_75: 3.06776896e-01 - sys_corr_76: 6.75616471e-02 + sys_corr_75: -3.06776896e-01 + sys_corr_76: -6.75616471e-02 sys_corr_77: -3.28180775e-01 sys_corr_78: 4.00087369e-01 sys_corr_79: 4.98505147e-01 - sys_corr_80: 1.70425546e-01 + sys_corr_80: -1.70425546e-01 sys_corr_81: 4.79132105e-01 - sys_corr_82: -1.76479951e-01 + sys_corr_82: 1.76479951e-01 sys_corr_83: 5.67922363e-01 sys_corr_84: -3.06590053e+00 sys_corr_85: 1.78711169e+00 - sys_corr_86: 5.00922292e-01 - sys_corr_87: 2.22093009e-02 + sys_corr_86: -5.00922292e-01 + sys_corr_87: -2.22093009e-02 sys_corr_88: 3.37117965e-01 sys_corr_89: 5.73899375e-02 - sys_corr_90: 7.76646168e-01 - sys_corr_91: 3.56734489e+00 - sys_corr_92: -4.01999404e-01 + sys_corr_90: -3.56734489e+00 + sys_corr_91: -7.76646168e-01 + sys_corr_92: 4.01999404e-01 sys_corr_93: -2.07290789e-01 sys_corr_94: -3.87523021e-01 - sys_corr_95: 5.22235442e-01 + sys_corr_95: -5.22235442e-01 sys_corr_96: 5.74819504e-02 - sys_corr_97: 1.16194026e-01 - sys_corr_98: 2.74004031e-01 + sys_corr_97: -1.16194026e-01 + sys_corr_98: -2.74004031e-01 sys_corr_99: 4.11021330e-01 - sys_corr_100: 3.68581280e-01 - sys_corr_101: -1.14120461e+00 - sys_corr_102: 8.92929544e-01 - sys_corr_103: -6.08996252e-01 - sys_corr_104: -7.13798437e-01 - sys_corr_105: -1.85661907e+00 + sys_corr_100: 1.85661907e+00 + sys_corr_101: -3.68581280e-01 + sys_corr_102: 1.14120461e+00 + sys_corr_103: 8.92929544e-01 + sys_corr_104: 6.08996252e-01 + sys_corr_105: 7.13798437e-01 sys_corr_106: -3.38684755e+00 sys_corr_107: -4.91985653e+00 - sys_corr_108: 1.83260929e+00 - sys_corr_109: 6.93382055e-01 - sys_corr_110: 3.47639920e-01 - sys_corr_111: 1.35129794e+00 - sys_corr_112: 9.24262947e-01 - sys_corr_113: 1.47497953e+00 - sys_corr_114: -3.22835999e-03 - sys_corr_115: 2.59191534e+00 + sys_corr_108: 6.93382055e-01 + sys_corr_109: -1.83260929e+00 + sys_corr_110: -1.35129794e+00 + sys_corr_111: -3.47639920e-01 + sys_corr_112: -9.24262947e-01 + sys_corr_113: -1.47497953e+00 + sys_corr_114: 3.22835999e-03 + sys_corr_115: -2.59191534e+00 sys_corr_116: 1.38834984e+00 - sys_corr_117: 1.82761685e+00 + sys_corr_117: -1.82761685e+00 sys_corr_118: 7.80230056e-01 sys_corr_119: 1.36251343e-01 sys_corr_120: -2.95648921e+00 sys_corr_121: 4.18012674e-01 - sys_corr_122: 3.61487030e+00 - sys_corr_123: 3.41940864e+00 - sys_corr_124: 1.31532015e+00 + sys_corr_122: 3.41940864e+00 + sys_corr_123: -3.61487030e+00 + sys_corr_124: -1.31532015e+00 sys_corr_125: 3.59795212e+01 sys_corr_126: 9.71280311e-01 - sys_corr_127: -1.15944890e-01 - sys_corr_128: -1.50180229e-01 - sys_corr_129: -1.45711456e-01 - sys_corr_130: -3.73250312e-01 - sys_corr_131: -4.79327825e+00 + sys_corr_127: 1.15944890e-01 + sys_corr_128: 1.50180229e-01 + sys_corr_129: 1.45711456e-01 + sys_corr_130: 3.73250312e-01 + sys_corr_131: 4.79327825e+00 sys_corr_132: 5.63805083e-01 stat: 0.0 luminosity: 1.15949900e+01 @@ -17428,17 +17428,17 @@ bins: sys_corr_6: -7.89392119e-01 sys_corr_7: 7.93446072e-02 sys_corr_8: -2.08883880e-01 - sys_corr_9: 3.82171826e-02 - sys_corr_10: 8.00611019e-02 + sys_corr_9: -3.82171826e-02 + sys_corr_10: -8.00611019e-02 sys_corr_11: 3.51313323e-01 - sys_corr_12: 3.43605287e-01 - sys_corr_13: 1.52412220e-01 + sys_corr_12: -3.43605287e-01 + sys_corr_13: -1.52412220e-01 sys_corr_14: 1.70070099e-02 sys_corr_15: 2.02662060e-01 sys_corr_16: 4.69806395e-01 - sys_corr_17: 1.84274715e-02 + sys_corr_17: -1.84274715e-02 sys_corr_18: -6.02485567e-01 - sys_corr_19: 7.48993578e-02 + sys_corr_19: -7.48993578e-02 sys_corr_20: 7.69877140e-02 sys_corr_21: 1.25420877e-01 sys_corr_22: 5.53618214e-01 @@ -17454,103 +17454,103 @@ bins: sys_corr_32: -3.42482093e-01 sys_corr_33: 3.64355036e-01 sys_corr_34: -5.60047506e-01 - sys_corr_35: -1.29251787e-01 - sys_corr_36: -2.65158821e-01 + sys_corr_35: 1.29251787e-01 + sys_corr_36: 2.65158821e-01 sys_corr_37: 1.10086845e-01 sys_corr_38: -5.11939699e-02 - sys_corr_39: 3.06633264e-01 - sys_corr_40: -2.50251950e-01 - sys_corr_41: 7.57006319e-01 + sys_corr_39: -3.06633264e-01 + sys_corr_40: 2.50251950e-01 + sys_corr_41: -7.57006319e-01 sys_corr_42: 4.88145575e-01 sys_corr_43: -1.53728275e-01 sys_corr_44: 5.26721175e-01 sys_corr_45: -2.23933806e-01 - sys_corr_46: -1.69667119e-01 - sys_corr_47: -5.89456394e-02 + sys_corr_46: 1.69667119e-01 + sys_corr_47: 5.89456394e-02 sys_corr_48: -3.21537405e-01 sys_corr_49: 3.32368756e-01 sys_corr_50: -1.07545214e+00 - sys_corr_51: 1.31273677e+00 - sys_corr_52: -5.54402525e-01 - sys_corr_53: -1.32797252e-01 + sys_corr_51: -1.31273677e+00 + sys_corr_52: 5.54402525e-01 + sys_corr_53: 1.32797252e-01 sys_corr_54: 6.19853229e-01 sys_corr_55: -4.09091506e-01 - sys_corr_56: -7.13645672e-01 + sys_corr_56: 7.13645672e-01 sys_corr_57: -1.09199478e-01 - sys_corr_58: 2.70463594e-01 + sys_corr_58: -2.70463594e-01 sys_corr_59: 8.40663277e-02 sys_corr_60: 4.28650669e-01 - sys_corr_61: 3.16774890e-01 - sys_corr_62: 4.01508974e-01 + sys_corr_61: -3.16774890e-01 + sys_corr_62: -4.01508974e-01 sys_corr_63: 3.36068550e-01 sys_corr_64: 1.81785538e-01 - sys_corr_65: -8.52095529e-03 - sys_corr_66: -1.04832336e-03 - sys_corr_67: 1.75252241e-01 + sys_corr_65: 8.52095529e-03 + sys_corr_66: 1.04832336e-03 + sys_corr_67: -1.75252241e-01 sys_corr_68: 3.32736364e-02 sys_corr_69: 4.28895334e-01 sys_corr_70: 2.48134320e-01 - sys_corr_71: -1.36153411e-01 - sys_corr_72: -3.51658370e-01 + sys_corr_71: 1.36153411e-01 + sys_corr_72: 3.51658370e-01 sys_corr_73: -6.08234605e-01 sys_corr_74: 6.17798910e-01 - sys_corr_75: 5.09284712e-01 - sys_corr_76: 1.60235111e-01 + sys_corr_75: -5.09284712e-01 + sys_corr_76: -1.60235111e-01 sys_corr_77: -6.32215434e-01 sys_corr_78: 6.03856512e-01 sys_corr_79: 6.46611996e-01 - sys_corr_80: -4.36071496e-02 + sys_corr_80: 4.36071496e-02 sys_corr_81: 6.27596318e-01 - sys_corr_82: -1.57897004e-01 + sys_corr_82: 1.57897004e-01 sys_corr_83: 6.25804483e-01 sys_corr_84: -2.96896742e+00 sys_corr_85: 1.47012713e+00 - sys_corr_86: 5.75414835e-01 - sys_corr_87: 1.01192883e-01 + sys_corr_86: -5.75414835e-01 + sys_corr_87: -1.01192883e-01 sys_corr_88: 4.09600785e-01 sys_corr_89: 4.13505777e-02 - sys_corr_90: 7.69899992e-01 - sys_corr_91: 3.49387672e+00 - sys_corr_92: -2.91692676e-01 + sys_corr_90: -3.49387672e+00 + sys_corr_91: -7.69899992e-01 + sys_corr_92: 2.91692676e-01 sys_corr_93: -4.64817893e-01 sys_corr_94: -8.80543568e-01 - sys_corr_95: 7.88732232e-01 + sys_corr_95: -7.88732232e-01 sys_corr_96: 1.56989817e-01 - sys_corr_97: 9.75453642e-01 - sys_corr_98: 7.32174648e-01 + sys_corr_97: -9.75453642e-01 + sys_corr_98: -7.32174648e-01 sys_corr_99: 7.82713972e-01 - sys_corr_100: -1.06395074e+00 - sys_corr_101: -1.87497946e+00 - sys_corr_102: 1.36893389e+00 - sys_corr_103: -9.45699051e-01 - sys_corr_104: -1.59845988e+00 - sys_corr_105: -3.31557371e+00 + sys_corr_100: 3.31557371e+00 + sys_corr_101: 1.06395074e+00 + sys_corr_102: 1.87497946e+00 + sys_corr_103: 1.36893389e+00 + sys_corr_104: 9.45699051e-01 + sys_corr_105: 1.59845988e+00 sys_corr_106: -1.70825681e+00 sys_corr_107: -5.50605736e+00 - sys_corr_108: 4.69980468e+00 - sys_corr_109: 1.01721105e+00 - sys_corr_110: 6.37931509e-01 - sys_corr_111: 4.51659310e+00 - sys_corr_112: 1.89292267e+00 - sys_corr_113: 2.30783360e+00 - sys_corr_114: -4.65850491e-02 - sys_corr_115: 2.95518435e+00 + sys_corr_108: 1.01721105e+00 + sys_corr_109: -4.69980468e+00 + sys_corr_110: -4.51659310e+00 + sys_corr_111: -6.37931509e-01 + sys_corr_112: -1.89292267e+00 + sys_corr_113: -2.30783360e+00 + sys_corr_114: 4.65850491e-02 + sys_corr_115: -2.95518435e+00 sys_corr_116: 7.13251679e-01 - sys_corr_117: 1.24387765e+00 + sys_corr_117: -1.24387765e+00 sys_corr_118: 1.84257739e+00 sys_corr_119: 5.74234672e-01 sys_corr_120: -1.49524110e+00 sys_corr_121: 1.61555243e+00 - sys_corr_122: -2.74672601e+01 - sys_corr_123: 1.01218422e+01 - sys_corr_124: 9.07858591e-01 + sys_corr_122: 1.01218422e+01 + sys_corr_123: 2.74672601e+01 + sys_corr_124: -9.07858591e-01 sys_corr_125: 1.40492358e+00 sys_corr_126: 4.60971691e+00 - sys_corr_127: -1.61732575e-01 - sys_corr_128: -1.68239317e+00 - sys_corr_129: 3.18282105e-01 - sys_corr_130: -1.32375250e+00 - sys_corr_131: 3.21308774e+00 + sys_corr_127: 1.61732575e-01 + sys_corr_128: 1.68239317e+00 + sys_corr_129: -3.18282105e-01 + sys_corr_130: 1.32375250e+00 + sys_corr_131: -3.21308774e+00 sys_corr_132: -1.26784953e-01 stat: 0.0 luminosity: 1.04685460e+01 @@ -17562,17 +17562,17 @@ bins: sys_corr_6: -1.14398218e+00 sys_corr_7: -1.77950853e-01 sys_corr_8: -1.37599772e-01 - sys_corr_9: 4.52937235e-01 - sys_corr_10: 3.67294252e-01 + sys_corr_9: -4.52937235e-01 + sys_corr_10: -3.67294252e-01 sys_corr_11: 4.13711040e-01 - sys_corr_12: 5.19776284e-01 - sys_corr_13: -1.27736033e-01 + sys_corr_12: -5.19776284e-01 + sys_corr_13: 1.27736033e-01 sys_corr_14: 3.88861375e-01 sys_corr_15: 1.57953543e-01 sys_corr_16: 4.14608066e-01 - sys_corr_17: 2.89470787e-01 + sys_corr_17: -2.89470787e-01 sys_corr_18: -3.84552075e-01 - sys_corr_19: -8.10318739e-01 + sys_corr_19: 8.10318739e-01 sys_corr_20: 2.05228287e-01 sys_corr_21: -3.96773792e-02 sys_corr_22: 3.87309213e-01 @@ -17588,103 +17588,103 @@ bins: sys_corr_32: -4.21719204e-01 sys_corr_33: 3.91698486e-01 sys_corr_34: -5.64816331e-01 - sys_corr_35: -7.48217123e-02 - sys_corr_36: -2.72302463e-01 + sys_corr_35: 7.48217123e-02 + sys_corr_36: 2.72302463e-01 sys_corr_37: 2.47220508e-01 sys_corr_38: 3.13545928e-02 - sys_corr_39: 3.08250890e-01 - sys_corr_40: -2.18806245e-01 - sys_corr_41: 7.37788755e-01 + sys_corr_39: -3.08250890e-01 + sys_corr_40: 2.18806245e-01 + sys_corr_41: -7.37788755e-01 sys_corr_42: 4.68379895e-01 sys_corr_43: -6.45707101e-02 sys_corr_44: 5.22675197e-01 sys_corr_45: -3.47994268e-01 - sys_corr_46: -1.41377847e-01 - sys_corr_47: -1.38349207e-01 + sys_corr_46: 1.41377847e-01 + sys_corr_47: 1.38349207e-01 sys_corr_48: -2.32506744e-01 sys_corr_49: 3.99518201e-01 sys_corr_50: -1.21620397e+00 - sys_corr_51: 1.46483440e+00 - sys_corr_52: -6.89897051e-01 - sys_corr_53: -1.34495517e-01 + sys_corr_51: -1.46483440e+00 + sys_corr_52: 6.89897051e-01 + sys_corr_53: 1.34495517e-01 sys_corr_54: 8.28600865e-01 sys_corr_55: -3.61770103e-01 - sys_corr_56: -6.89225092e-01 + sys_corr_56: 6.89225092e-01 sys_corr_57: -8.58387194e-02 - sys_corr_58: 1.78437083e-01 + sys_corr_58: -1.78437083e-01 sys_corr_59: 8.84325273e-02 sys_corr_60: 4.95391169e-01 - sys_corr_61: 4.12229512e-01 - sys_corr_62: 3.93695773e-01 + sys_corr_61: -4.12229512e-01 + sys_corr_62: -3.93695773e-01 sys_corr_63: 3.92973259e-01 sys_corr_64: 1.27705144e-01 - sys_corr_65: -1.09203943e-01 - sys_corr_66: -9.27076512e-02 - sys_corr_67: 2.03825641e-01 + sys_corr_65: 1.09203943e-01 + sys_corr_66: 9.27076512e-02 + sys_corr_67: -2.03825641e-01 sys_corr_68: 1.07637986e-01 sys_corr_69: 4.21152160e-01 sys_corr_70: 2.28272550e-01 - sys_corr_71: -2.02110229e-01 - sys_corr_72: -3.97355675e-01 + sys_corr_71: 2.02110229e-01 + sys_corr_72: 3.97355675e-01 sys_corr_73: -4.27482834e-01 sys_corr_74: 6.55826895e-01 - sys_corr_75: 6.47581958e-01 - sys_corr_76: 2.77092804e-01 + sys_corr_75: -6.47581958e-01 + sys_corr_76: -2.77092804e-01 sys_corr_77: -7.04745877e-01 sys_corr_78: 6.14176962e-01 sys_corr_79: 4.84690855e-01 - sys_corr_80: -8.41637353e-03 + sys_corr_80: 8.41637353e-03 sys_corr_81: 6.14260094e-01 - sys_corr_82: -2.31703799e-01 + sys_corr_82: 2.31703799e-01 sys_corr_83: 4.91869167e-01 sys_corr_84: -2.29268510e+00 sys_corr_85: 9.60924675e-01 - sys_corr_86: 4.99079692e-01 - sys_corr_87: 6.49084142e-02 + sys_corr_86: -4.99079692e-01 + sys_corr_87: -6.49084142e-02 sys_corr_88: 3.48824996e-01 sys_corr_89: -3.35114052e-02 - sys_corr_90: 7.13357502e-01 - sys_corr_91: 2.83687939e+00 - sys_corr_92: -2.83471970e-01 + sys_corr_90: -2.83687939e+00 + sys_corr_91: -7.13357502e-01 + sys_corr_92: 2.83471970e-01 sys_corr_93: -4.82393567e-01 sys_corr_94: -9.57534842e-01 - sys_corr_95: 8.54816695e-01 + sys_corr_95: -8.54816695e-01 sys_corr_96: 1.03068103e-01 - sys_corr_97: 9.68586943e-01 - sys_corr_98: 7.98351296e-01 + sys_corr_97: -9.68586943e-01 + sys_corr_98: -7.98351296e-01 sys_corr_99: 8.23350276e-01 - sys_corr_100: -1.31061132e+00 - sys_corr_101: -1.95126049e+00 - sys_corr_102: 1.35270833e+00 - sys_corr_103: -1.03822286e+00 - sys_corr_104: -1.81326416e+00 - sys_corr_105: -3.31671913e+00 + sys_corr_100: 3.31671913e+00 + sys_corr_101: 1.31061132e+00 + sys_corr_102: 1.95126049e+00 + sys_corr_103: 1.35270833e+00 + sys_corr_104: 1.03822286e+00 + sys_corr_105: 1.81326416e+00 sys_corr_106: -2.38675187e+00 sys_corr_107: -5.48176795e+00 - sys_corr_108: 5.75395942e+00 - sys_corr_109: 4.13454595e+00 - sys_corr_110: 5.33005122e-01 - sys_corr_111: 2.06630044e+00 - sys_corr_112: 2.82984144e+00 - sys_corr_113: 2.18622491e+00 - sys_corr_114: -1.06492993e-01 - sys_corr_115: 3.71183437e+00 + sys_corr_108: 4.13454595e+00 + sys_corr_109: -5.75395942e+00 + sys_corr_110: -2.06630044e+00 + sys_corr_111: -5.33005122e-01 + sys_corr_112: -2.82984144e+00 + sys_corr_113: -2.18622491e+00 + sys_corr_114: 1.06492993e-01 + sys_corr_115: -3.71183437e+00 sys_corr_116: 2.33769055e-01 - sys_corr_117: 7.64061727e-01 + sys_corr_117: -7.64061727e-01 sys_corr_118: 1.61549906e+00 sys_corr_119: 1.42815515e+00 sys_corr_120: -1.12311736e+00 sys_corr_121: 4.19791066e+00 - sys_corr_122: -6.38455787e+00 - sys_corr_123: -2.19984795e+01 - sys_corr_124: 6.04954745e-01 + sys_corr_122: -2.19984795e+01 + sys_corr_123: 6.38455787e+00 + sys_corr_124: -6.04954745e-01 sys_corr_125: 3.76542818e+00 sys_corr_126: 9.17108971e+00 - sys_corr_127: -1.59361074e-01 - sys_corr_128: -9.24788193e-01 - sys_corr_129: 1.27996087e-01 - sys_corr_130: -1.13217613e+00 - sys_corr_131: 1.75837812e+00 + sys_corr_127: 1.59361074e-01 + sys_corr_128: 9.24788193e-01 + sys_corr_129: -1.27996087e-01 + sys_corr_130: 1.13217613e+00 + sys_corr_131: -1.75837812e+00 sys_corr_132: 4.22267465e-01 stat: 0.0 luminosity: 7.112402 @@ -17696,17 +17696,17 @@ bins: sys_corr_6: -1.15211053e+00 sys_corr_7: -6.86379140e-02 sys_corr_8: -1.03024340e-01 - sys_corr_9: 4.92883910e-01 - sys_corr_10: 1.99376644e-01 + sys_corr_9: -4.92883910e-01 + sys_corr_10: -1.99376644e-01 sys_corr_11: 3.92116919e-01 - sys_corr_12: 5.25109722e-01 - sys_corr_13: -2.24533049e-01 + sys_corr_12: -5.25109722e-01 + sys_corr_13: 2.24533049e-01 sys_corr_14: 9.82675474e-02 sys_corr_15: 2.98553132e-01 sys_corr_16: 2.65628115e-01 - sys_corr_17: 1.78700358e-01 + sys_corr_17: -1.78700358e-01 sys_corr_18: -2.22638209e-01 - sys_corr_19: 4.35322153e-02 + sys_corr_19: -4.35322153e-02 sys_corr_20: 2.67330082e-01 sys_corr_21: 5.62126770e-01 sys_corr_22: 3.11591677e-01 @@ -17722,103 +17722,103 @@ bins: sys_corr_32: -3.42358390e-01 sys_corr_33: 3.77296178e-01 sys_corr_34: -4.86917369e-01 - sys_corr_35: -2.42304853e-01 - sys_corr_36: -2.89957559e-01 + sys_corr_35: 2.42304853e-01 + sys_corr_36: 2.89957559e-01 sys_corr_37: 3.52058407e-01 sys_corr_38: 8.68178891e-03 - sys_corr_39: 2.31947924e-01 - sys_corr_40: -2.62598318e-01 - sys_corr_41: 6.70018046e-01 + sys_corr_39: -2.31947924e-01 + sys_corr_40: 2.62598318e-01 + sys_corr_41: -6.70018046e-01 sys_corr_42: 4.64928277e-01 sys_corr_43: -7.11833359e-02 sys_corr_44: 5.15400875e-01 sys_corr_45: -3.36980310e-01 - sys_corr_46: -1.28516262e-01 - sys_corr_47: -1.51888387e-01 + sys_corr_46: 1.28516262e-01 + sys_corr_47: 1.51888387e-01 sys_corr_48: -1.63008966e-01 sys_corr_49: 4.05193049e-01 sys_corr_50: -1.16923953e+00 - sys_corr_51: 1.44891268e+00 - sys_corr_52: -6.00896521e-01 - sys_corr_53: -1.81471382e-01 + sys_corr_51: -1.44891268e+00 + sys_corr_52: 6.00896521e-01 + sys_corr_53: 1.81471382e-01 sys_corr_54: 8.90104323e-01 sys_corr_55: -3.93756478e-01 - sys_corr_56: -5.20804244e-01 + sys_corr_56: 5.20804244e-01 sys_corr_57: -1.19825611e-01 - sys_corr_58: 1.12293079e-01 + sys_corr_58: -1.12293079e-01 sys_corr_59: -2.26766483e-02 sys_corr_60: 4.20072096e-01 - sys_corr_61: 5.38055489e-01 - sys_corr_62: 3.22114803e-01 + sys_corr_61: -5.38055489e-01 + sys_corr_62: -3.22114803e-01 sys_corr_63: 2.89539434e-01 sys_corr_64: 1.01340402e-01 - sys_corr_65: -2.02689104e-01 - sys_corr_66: 1.44302844e-02 - sys_corr_67: 1.58913786e-01 + sys_corr_65: 2.02689104e-01 + sys_corr_66: -1.44302844e-02 + sys_corr_67: -1.58913786e-01 sys_corr_68: 8.46133922e-02 sys_corr_69: 4.45576437e-01 sys_corr_70: 1.49193334e-01 - sys_corr_71: -1.56222840e-01 - sys_corr_72: -5.41561359e-01 + sys_corr_71: 1.56222840e-01 + sys_corr_72: 5.41561359e-01 sys_corr_73: -3.38597532e-01 sys_corr_74: 7.27959985e-01 - sys_corr_75: 6.40636052e-01 - sys_corr_76: 2.37778824e-01 + sys_corr_75: -6.40636052e-01 + sys_corr_76: -2.37778824e-01 sys_corr_77: -6.47460265e-01 sys_corr_78: 5.76434851e-01 sys_corr_79: 4.93316616e-01 - sys_corr_80: -6.29856447e-02 + sys_corr_80: 6.29856447e-02 sys_corr_81: 5.48668563e-01 - sys_corr_82: -2.29872841e-01 + sys_corr_82: 2.29872841e-01 sys_corr_83: 4.67043374e-01 sys_corr_84: -2.24085652e+00 sys_corr_85: 9.63514259e-01 - sys_corr_86: 5.69535756e-01 - sys_corr_87: 1.25436908e-01 + sys_corr_86: -5.69535756e-01 + sys_corr_87: -1.25436908e-01 sys_corr_88: 3.46746354e-01 sys_corr_89: 1.04783118e-02 - sys_corr_90: 6.06567907e-01 - sys_corr_91: 2.62942126e+00 - sys_corr_92: -1.08940842e-01 + sys_corr_90: -2.62942126e+00 + sys_corr_91: -6.06567907e-01 + sys_corr_92: 1.08940842e-01 sys_corr_93: -4.80931985e-01 sys_corr_94: -9.05021701e-01 - sys_corr_95: 8.32360619e-01 + sys_corr_95: -8.32360619e-01 sys_corr_96: 1.25742975e-01 - sys_corr_97: 8.58873381e-01 - sys_corr_98: 7.34179806e-01 + sys_corr_97: -8.58873381e-01 + sys_corr_98: -7.34179806e-01 sys_corr_99: 7.39758229e-01 - sys_corr_100: -1.33665032e+00 - sys_corr_101: -1.99956225e+00 - sys_corr_102: 1.27114686e+00 - sys_corr_103: -9.97007712e-01 - sys_corr_104: -1.75292242e+00 - sys_corr_105: -3.11857380e+00 + sys_corr_100: 3.11857380e+00 + sys_corr_101: 1.33665032e+00 + sys_corr_102: 1.99956225e+00 + sys_corr_103: 1.27114686e+00 + sys_corr_104: 9.97007712e-01 + sys_corr_105: 1.75292242e+00 sys_corr_106: -2.39887325e+00 sys_corr_107: -4.94751132e+00 - sys_corr_108: 3.76527101e+00 - sys_corr_109: 1.44265998e+00 - sys_corr_110: 5.01570971e-01 - sys_corr_111: 2.44356333e+00 - sys_corr_112: 3.79849794e+00 - sys_corr_113: 5.03564969e+00 - sys_corr_114: -1.56815009e-01 - sys_corr_115: 3.64907466e+00 + sys_corr_108: 1.44265998e+00 + sys_corr_109: -3.76527101e+00 + sys_corr_110: -2.44356333e+00 + sys_corr_111: -5.01570971e-01 + sys_corr_112: -3.79849794e+00 + sys_corr_113: -5.03564969e+00 + sys_corr_114: 1.56815009e-01 + sys_corr_115: -3.64907466e+00 sys_corr_116: 1.07214915e-01 - sys_corr_117: 6.46034633e-01 + sys_corr_117: -6.46034633e-01 sys_corr_118: 1.60854822e+00 sys_corr_119: 2.85024749e+00 sys_corr_120: -9.80343959e-01 sys_corr_121: 5.49395774e+00 - sys_corr_122: -7.24074286e+00 - sys_corr_123: -5.45157068e+00 - sys_corr_124: 5.06720778e-01 + sys_corr_122: -5.45157068e+00 + sys_corr_123: 7.24074286e+00 + sys_corr_124: -5.06720778e-01 sys_corr_125: 2.97417878e+00 sys_corr_126: -1.69707460e+01 - sys_corr_127: -1.11219458e-01 - sys_corr_128: -1.00243508e+00 - sys_corr_129: 1.16780517e+00 - sys_corr_130: 8.69978136e+00 - sys_corr_131: 1.58457366e+00 + sys_corr_127: 1.11219458e-01 + sys_corr_128: 1.00243508e+00 + sys_corr_129: -1.16780517e+00 + sys_corr_130: -8.69978136e+00 + sys_corr_131: -1.58457366e+00 sys_corr_132: -2.87985354e-01 stat: 0.0 luminosity: 5.42245 @@ -17830,17 +17830,17 @@ bins: sys_corr_6: -1.32220405e+00 sys_corr_7: -9.77350409e-02 sys_corr_8: -1.25854808e-02 - sys_corr_9: 3.85949325e-01 - sys_corr_10: 2.73880686e-01 + sys_corr_9: -3.85949325e-01 + sys_corr_10: -2.73880686e-01 sys_corr_11: 5.62028682e-02 - sys_corr_12: -1.06629339e-01 - sys_corr_13: 1.07481686e-01 + sys_corr_12: 1.06629339e-01 + sys_corr_13: -1.07481686e-01 sys_corr_14: -1.04140420e-02 sys_corr_15: 1.41014463e-01 sys_corr_16: 4.25437178e-01 - sys_corr_17: 2.02766628e-02 + sys_corr_17: -2.02766628e-02 sys_corr_18: -2.15552476e-01 - sys_corr_19: -3.44091910e-01 + sys_corr_19: 3.44091910e-01 sys_corr_20: 9.05578617e-02 sys_corr_21: -9.67257447e-02 sys_corr_22: 4.70370050e-01 @@ -17856,103 +17856,103 @@ bins: sys_corr_32: -3.28254159e-01 sys_corr_33: 3.50355521e-01 sys_corr_34: -3.26519980e-01 - sys_corr_35: -1.43568263e-01 - sys_corr_36: -9.93008139e-02 + sys_corr_35: 1.43568263e-01 + sys_corr_36: 9.93008139e-02 sys_corr_37: 4.42072674e-01 sys_corr_38: 5.34726873e-02 - sys_corr_39: 1.18929323e-01 - sys_corr_40: -1.77067043e-01 - sys_corr_41: 5.26519733e-01 + sys_corr_39: -1.18929323e-01 + sys_corr_40: 1.77067043e-01 + sys_corr_41: -5.26519733e-01 sys_corr_42: 3.09183141e-01 sys_corr_43: 1.59973330e-02 sys_corr_44: 5.65267078e-01 sys_corr_45: -2.89811814e-01 - sys_corr_46: -8.87905992e-02 - sys_corr_47: -1.98529793e-01 + sys_corr_46: 8.87905992e-02 + sys_corr_47: 1.98529793e-01 sys_corr_48: -1.24001577e-01 sys_corr_49: 4.44869348e-01 sys_corr_50: -9.62863400e-01 - sys_corr_51: 1.25187156e+00 - sys_corr_52: -4.95762724e-01 - sys_corr_53: -8.88326774e-02 + sys_corr_51: -1.25187156e+00 + sys_corr_52: 4.95762724e-01 + sys_corr_53: 8.88326774e-02 sys_corr_54: 7.79572455e-01 sys_corr_55: -3.78839413e-01 - sys_corr_56: -6.27034467e-01 + sys_corr_56: 6.27034467e-01 sys_corr_57: 4.92130119e-02 - sys_corr_58: 1.67525052e-01 + sys_corr_58: -1.67525052e-01 sys_corr_59: 3.80980421e-02 sys_corr_60: 3.52497979e-01 - sys_corr_61: 4.08673884e-01 - sys_corr_62: 3.47946832e-01 + sys_corr_61: -4.08673884e-01 + sys_corr_62: -3.47946832e-01 sys_corr_63: 3.00098862e-01 sys_corr_64: 5.88585078e-02 - sys_corr_65: -9.17992258e-02 - sys_corr_66: -5.18724838e-02 - sys_corr_67: 1.06679427e-01 + sys_corr_65: 9.17992258e-02 + sys_corr_66: 5.18724838e-02 + sys_corr_67: -1.06679427e-01 sys_corr_68: -1.98416353e-02 sys_corr_69: 4.15698746e-01 sys_corr_70: 1.78871328e-01 - sys_corr_71: -1.26977616e-01 - sys_corr_72: -3.59683142e-01 + sys_corr_71: 1.26977616e-01 + sys_corr_72: 3.59683142e-01 sys_corr_73: -3.33735717e-01 sys_corr_74: 6.02987645e-01 - sys_corr_75: 5.68211269e-01 - sys_corr_76: 1.68848686e-01 + sys_corr_75: -5.68211269e-01 + sys_corr_76: -1.68848686e-01 sys_corr_77: -5.52209984e-01 sys_corr_78: 4.98234184e-01 sys_corr_79: 5.19029251e-01 - sys_corr_80: 2.83963763e-02 + sys_corr_80: -2.83963763e-02 sys_corr_81: 4.46441401e-01 - sys_corr_82: -2.22623536e-01 + sys_corr_82: 2.22623536e-01 sys_corr_83: 4.43086998e-01 sys_corr_84: -1.66539984e+00 sys_corr_85: 6.80323056e-01 - sys_corr_86: 3.73538902e-01 - sys_corr_87: 1.07463192e-02 + sys_corr_86: -3.73538902e-01 + sys_corr_87: -1.07463192e-02 sys_corr_88: 2.91129862e-01 sys_corr_89: 1.99170052e-02 - sys_corr_90: 4.45999062e-01 - sys_corr_91: 2.04232692e+00 - sys_corr_92: -1.23625357e-01 + sys_corr_90: -2.04232692e+00 + sys_corr_91: -4.45999062e-01 + sys_corr_92: 1.23625357e-01 sys_corr_93: -4.02781351e-01 sys_corr_94: -8.06037998e-01 - sys_corr_95: 7.17792665e-01 + sys_corr_95: -7.17792665e-01 sys_corr_96: 6.67030289e-02 - sys_corr_97: 6.51709116e-01 - sys_corr_98: 5.47381948e-01 + sys_corr_97: -6.51709116e-01 + sys_corr_98: -5.47381948e-01 sys_corr_99: 5.06628392e-01 - sys_corr_100: -9.20372249e-01 - sys_corr_101: -1.41823624e+00 - sys_corr_102: 7.43706309e-01 - sys_corr_103: -7.66358383e-01 - sys_corr_104: -1.12463492e+00 - sys_corr_105: -2.40059282e+00 + sys_corr_100: 2.40059282e+00 + sys_corr_101: 9.20372249e-01 + sys_corr_102: 1.41823624e+00 + sys_corr_103: 7.43706309e-01 + sys_corr_104: 7.66358383e-01 + sys_corr_105: 1.12463492e+00 sys_corr_106: -1.82852837e+00 sys_corr_107: -3.81983161e+00 - sys_corr_108: 2.83659506e+00 - sys_corr_109: 1.06280167e+00 - sys_corr_110: 4.36918973e-01 - sys_corr_111: 1.85071423e+00 - sys_corr_112: 1.14360739e+00 - sys_corr_113: 6.34558485e-01 - sys_corr_114: -2.36232519e-01 - sys_corr_115: 6.09959815e+00 + sys_corr_108: 1.06280167e+00 + sys_corr_109: -2.83659506e+00 + sys_corr_110: -1.85071423e+00 + sys_corr_111: -4.36918973e-01 + sys_corr_112: -1.14360739e+00 + sys_corr_113: -6.34558485e-01 + sys_corr_114: 2.36232519e-01 + sys_corr_115: -6.09959815e+00 sys_corr_116: -3.86999728e-01 - sys_corr_117: 3.72960993e-01 + sys_corr_117: -3.72960993e-01 sys_corr_118: 1.92348002e+00 sys_corr_119: 5.49735263e+00 sys_corr_120: -7.04218810e-01 sys_corr_121: -1.57398911e+01 - sys_corr_122: -5.01070915e+00 - sys_corr_123: -5.03054415e+00 - sys_corr_124: 5.26338396e-01 + sys_corr_122: -5.03054415e+00 + sys_corr_123: 5.01070915e+00 + sys_corr_124: -5.26338396e-01 sys_corr_125: 2.20930112e+00 sys_corr_126: -2.80343303e+00 - sys_corr_127: -4.59171469e-02 - sys_corr_128: -8.40744107e-01 - sys_corr_129: 6.26936672e-01 - sys_corr_130: -3.85493240e-01 - sys_corr_131: 1.17210023e+00 + sys_corr_127: 4.59171469e-02 + sys_corr_128: 8.40744107e-01 + sys_corr_129: -6.26936672e-01 + sys_corr_130: 3.85493240e-01 + sys_corr_131: -1.17210023e+00 sys_corr_132: 5.18714065e-01 stat: 0.0 luminosity: 3.33341800e+00 @@ -17964,17 +17964,17 @@ bins: sys_corr_6: -1.41117009e+00 sys_corr_7: 1.18161136e-01 sys_corr_8: 9.43235755e-02 - sys_corr_9: 3.80192640e-01 - sys_corr_10: 3.80668498e-01 + sys_corr_9: -3.80192640e-01 + sys_corr_10: -3.80668498e-01 sys_corr_11: 2.45399245e-01 - sys_corr_12: -9.02238628e-02 - sys_corr_13: 2.05247967e-01 + sys_corr_12: 9.02238628e-02 + sys_corr_13: -2.05247967e-01 sys_corr_14: -6.45836803e-02 sys_corr_15: 7.18599709e-02 sys_corr_16: 3.32393778e-01 - sys_corr_17: 3.04936831e-01 + sys_corr_17: -3.04936831e-01 sys_corr_18: -2.78898468e-01 - sys_corr_19: -6.50904045e-01 + sys_corr_19: 6.50904045e-01 sys_corr_20: -2.06218752e-01 sys_corr_21: -8.38020331e-02 sys_corr_22: 1.78372478e-02 @@ -17990,103 +17990,103 @@ bins: sys_corr_32: -1.88105132e-01 sys_corr_33: 2.66201926e-01 sys_corr_34: -4.32292139e-01 - sys_corr_35: -1.34248817e-01 - sys_corr_36: -3.33044321e-01 + sys_corr_35: 1.34248817e-01 + sys_corr_36: 3.33044321e-01 sys_corr_37: 3.84736365e-01 sys_corr_38: 1.11187798e-01 - sys_corr_39: 1.05699768e-01 - sys_corr_40: -6.86964972e-02 - sys_corr_41: 3.32244595e-01 + sys_corr_39: -1.05699768e-01 + sys_corr_40: 6.86964972e-02 + sys_corr_41: -3.32244595e-01 sys_corr_42: 2.43577033e-01 sys_corr_43: 4.58745823e-02 sys_corr_44: 5.19309935e-01 sys_corr_45: -4.35517526e-01 - sys_corr_46: -1.43477139e-01 - sys_corr_47: -1.68411279e-01 + sys_corr_46: 1.43477139e-01 + sys_corr_47: 1.68411279e-01 sys_corr_48: 2.20457087e-01 sys_corr_49: 1.32001163e-01 sys_corr_50: -1.11180596e+00 - sys_corr_51: 1.18930379e+00 - sys_corr_52: -6.39571158e-01 - sys_corr_53: -2.75353233e-01 + sys_corr_51: -1.18930379e+00 + sys_corr_52: 6.39571158e-01 + sys_corr_53: 2.75353233e-01 sys_corr_54: 5.85505264e-01 sys_corr_55: -4.76837177e-01 - sys_corr_56: -3.29211744e-01 + sys_corr_56: 3.29211744e-01 sys_corr_57: -1.39167286e-01 - sys_corr_58: 2.58934645e-01 + sys_corr_58: -2.58934645e-01 sys_corr_59: -4.73733549e-02 sys_corr_60: 2.07154961e-01 - sys_corr_61: 3.59659457e-01 - sys_corr_62: 4.16462908e-01 + sys_corr_61: -3.59659457e-01 + sys_corr_62: -4.16462908e-01 sys_corr_63: 1.28334294e-01 sys_corr_64: 6.03460299e-02 - sys_corr_65: 2.13301790e-02 - sys_corr_66: -3.64693840e-01 - sys_corr_67: 4.09327607e-01 + sys_corr_65: -2.13301790e-02 + sys_corr_66: 3.64693840e-01 + sys_corr_67: -4.09327607e-01 sys_corr_68: 4.45444662e-02 sys_corr_69: 4.30525581e-01 sys_corr_70: 3.45412583e-01 - sys_corr_71: 1.87186671e-03 - sys_corr_72: -3.91590484e-01 + sys_corr_71: -1.87186671e-03 + sys_corr_72: 3.91590484e-01 sys_corr_73: -6.34814848e-01 sys_corr_74: 6.32546763e-01 - sys_corr_75: 5.54527642e-01 - sys_corr_76: -5.86254514e-02 + sys_corr_75: -5.54527642e-01 + sys_corr_76: 5.86254514e-02 sys_corr_77: -5.17741844e-01 sys_corr_78: 5.05592329e-01 sys_corr_79: 4.92805308e-01 - sys_corr_80: 2.60714011e-01 + sys_corr_80: -2.60714011e-01 sys_corr_81: 4.54075109e-01 - sys_corr_82: -3.13890097e-01 + sys_corr_82: 3.13890097e-01 sys_corr_83: 4.40993227e-01 sys_corr_84: -1.65600750e+00 sys_corr_85: 5.53580503e-01 - sys_corr_86: 4.19611866e-01 - sys_corr_87: -1.62800189e-01 + sys_corr_86: -4.19611866e-01 + sys_corr_87: 1.62800189e-01 sys_corr_88: 2.91655072e-01 sys_corr_89: 7.29238435e-02 - sys_corr_90: 3.66116660e-01 - sys_corr_91: 1.94789658e+00 - sys_corr_92: -2.19634183e-01 + sys_corr_90: -1.94789658e+00 + sys_corr_91: -3.66116660e-01 + sys_corr_92: 2.19634183e-01 sys_corr_93: -4.44440248e-01 sys_corr_94: -1.32964215e+00 - sys_corr_95: 6.77248222e-01 + sys_corr_95: -6.77248222e-01 sys_corr_96: 7.81132104e-02 - sys_corr_97: 1.08381381e+00 - sys_corr_98: 6.86757063e-01 + sys_corr_97: -1.08381381e+00 + sys_corr_98: -6.86757063e-01 sys_corr_99: 7.35726887e-01 - sys_corr_100: -1.02741060e+00 - sys_corr_101: -1.64034614e+00 - sys_corr_102: 8.36979486e-01 - sys_corr_103: -6.21376501e-01 - sys_corr_104: -1.46107409e+00 - sys_corr_105: -2.58802141e+00 + sys_corr_100: 2.58802141e+00 + sys_corr_101: 1.02741060e+00 + sys_corr_102: 1.64034614e+00 + sys_corr_103: 8.36979486e-01 + sys_corr_104: 6.21376501e-01 + sys_corr_105: 1.46107409e+00 sys_corr_106: -2.00018201e+00 sys_corr_107: -4.26523610e+00 - sys_corr_108: 3.50884714e+00 - sys_corr_109: 1.58000500e+00 - sys_corr_110: 5.50277789e-01 - sys_corr_111: 2.20137163e+00 - sys_corr_112: 1.72010083e+00 - sys_corr_113: 2.10306298e+00 - sys_corr_114: -8.23813285e-01 - sys_corr_115: 1.76963781e+00 + sys_corr_108: 1.58000500e+00 + sys_corr_109: -3.50884714e+00 + sys_corr_110: -2.20137163e+00 + sys_corr_111: -5.50277789e-01 + sys_corr_112: -1.72010083e+00 + sys_corr_113: -2.10306298e+00 + sys_corr_114: 8.23813285e-01 + sys_corr_115: -1.76963781e+00 sys_corr_116: 4.04024966e-02 - sys_corr_117: 3.29783925e-01 + sys_corr_117: -3.29783925e-01 sys_corr_118: 2.59807945e+00 sys_corr_119: -1.26685431e+01 sys_corr_120: -6.37022408e-01 sys_corr_121: -4.64816457e+00 - sys_corr_122: -5.56076756e+00 - sys_corr_123: -5.29772697e+00 - sys_corr_124: 1.98226125e-01 + sys_corr_122: -5.29772697e+00 + sys_corr_123: 5.56076756e+00 + sys_corr_124: -1.98226125e-01 sys_corr_125: 2.39221639e+00 sys_corr_126: -4.36241565e+00 - sys_corr_127: -6.97916335e-02 - sys_corr_128: -8.71107258e-01 - sys_corr_129: 1.62791340e-01 - sys_corr_130: -1.78229286e-01 - sys_corr_131: 1.01937079e+00 + sys_corr_127: 6.97916335e-02 + sys_corr_128: 8.71107258e-01 + sys_corr_129: -1.62791340e-01 + sys_corr_130: 1.78229286e-01 + sys_corr_131: -1.01937079e+00 sys_corr_132: 3.10557051e+00 stat: 0.0 luminosity: 2.12645400e+00 @@ -18098,17 +18098,17 @@ bins: sys_corr_6: -6.61040738e-01 sys_corr_7: -6.43204243e-02 sys_corr_8: 1.05666361e-02 - sys_corr_9: 6.25432817e-02 - sys_corr_10: 9.93387162e-02 + sys_corr_9: -6.25432817e-02 + sys_corr_10: -9.93387162e-02 sys_corr_11: -1.30632844e-02 - sys_corr_12: -1.93414719e-01 - sys_corr_13: 2.59230769e-01 + sys_corr_12: 1.93414719e-01 + sys_corr_13: -2.59230769e-01 sys_corr_14: 6.19764288e-02 sys_corr_15: -2.19024985e-02 sys_corr_16: 1.83070045e-01 - sys_corr_17: 1.75201060e-01 + sys_corr_17: -1.75201060e-01 sys_corr_18: -1.99991347e-01 - sys_corr_19: -3.36790682e-01 + sys_corr_19: 3.36790682e-01 sys_corr_20: -2.42125530e-01 sys_corr_21: -7.14666112e-03 sys_corr_22: 2.00331135e-01 @@ -18124,103 +18124,103 @@ bins: sys_corr_32: -2.63527663e-02 sys_corr_33: 1.71163458e-01 sys_corr_34: -1.75243372e-02 - sys_corr_35: 1.46971246e-01 - sys_corr_36: 7.26595224e-03 + sys_corr_35: -1.46971246e-01 + sys_corr_36: -7.26595224e-03 sys_corr_37: 3.10954072e-02 sys_corr_38: -9.37854109e-02 - sys_corr_39: 3.04168668e-02 - sys_corr_40: -1.76789494e-01 - sys_corr_41: 1.88110060e-01 + sys_corr_39: -3.04168668e-02 + sys_corr_40: 1.76789494e-01 + sys_corr_41: -1.88110060e-01 sys_corr_42: 5.23046810e-02 sys_corr_43: -1.23291194e-01 sys_corr_44: 1.14925212e-01 sys_corr_45: 9.74856265e-03 - sys_corr_46: 4.85700930e-02 - sys_corr_47: -2.21358247e-01 + sys_corr_46: -4.85700930e-02 + sys_corr_47: 2.21358247e-01 sys_corr_48: 5.44326567e-01 sys_corr_49: -2.40951378e-01 sys_corr_50: -6.85739088e-01 - sys_corr_51: 2.41509503e-01 - sys_corr_52: -1.67046959e-01 - sys_corr_53: -1.51067894e-01 + sys_corr_51: -2.41509503e-01 + sys_corr_52: 1.67046959e-01 + sys_corr_53: 1.51067894e-01 sys_corr_54: 1.47052890e-01 sys_corr_55: -4.37828987e-02 - sys_corr_56: -4.44485738e-03 + sys_corr_56: 4.44485738e-03 sys_corr_57: -2.20957869e-02 - sys_corr_58: 6.33546947e-02 + sys_corr_58: -6.33546947e-02 sys_corr_59: 4.67076248e-02 sys_corr_60: -3.09072293e-02 - sys_corr_61: -1.64198177e-02 - sys_corr_62: 4.21227142e-02 + sys_corr_61: 1.64198177e-02 + sys_corr_62: -4.21227142e-02 sys_corr_63: -8.24962392e-02 sys_corr_64: -3.41912760e-02 - sys_corr_65: 5.39307208e-02 - sys_corr_66: -1.40323937e-01 - sys_corr_67: 2.13353323e-01 + sys_corr_65: -5.39307208e-02 + sys_corr_66: 1.40323937e-01 + sys_corr_67: -2.13353323e-01 sys_corr_68: 7.93032482e-02 sys_corr_69: -8.49633526e-03 sys_corr_70: 3.69741819e-02 - sys_corr_71: -6.94503608e-03 - sys_corr_72: 1.34336525e-02 + sys_corr_71: 6.94503608e-03 + sys_corr_72: -1.34336525e-02 sys_corr_73: -8.46837778e-02 sys_corr_74: -1.35074256e-02 - sys_corr_75: 2.05311008e-01 - sys_corr_76: -6.09259674e-02 + sys_corr_75: -2.05311008e-01 + sys_corr_76: 6.09259674e-02 sys_corr_77: -1.90095335e-01 sys_corr_78: 6.99930402e-02 sys_corr_79: 1.19142721e-01 - sys_corr_80: 9.35741787e-02 + sys_corr_80: -9.35741787e-02 sys_corr_81: 2.17912484e-02 - sys_corr_82: -7.59116896e-02 + sys_corr_82: 7.59116896e-02 sys_corr_83: 1.15852471e-01 sys_corr_84: -4.55562410e-01 sys_corr_85: 2.15825069e-01 - sys_corr_86: 4.26233014e-02 - sys_corr_87: -9.19187228e-02 + sys_corr_86: -4.26233014e-02 + sys_corr_87: 9.19187228e-02 sys_corr_88: 3.06592849e-04 sys_corr_89: 2.17883328e-01 - sys_corr_90: 1.15733710e-01 - sys_corr_91: 4.61475456e-01 - sys_corr_92: 1.69691510e-02 + sys_corr_90: -4.61475456e-01 + sys_corr_91: -1.15733710e-01 + sys_corr_92: -1.69691510e-02 sys_corr_93: -4.73821153e-02 sys_corr_94: -1.01693925e-01 - sys_corr_95: -4.54492996e-02 + sys_corr_95: 4.54492996e-02 sys_corr_96: 4.56438496e-03 - sys_corr_97: 1.75926651e-01 - sys_corr_98: 9.40683983e-02 + sys_corr_97: -1.75926651e-01 + sys_corr_98: -9.40683983e-02 sys_corr_99: 1.16832875e-01 - sys_corr_100: 1.15157451e-01 - sys_corr_101: 1.15542520e-01 - sys_corr_102: 3.49089494e-01 - sys_corr_103: -1.86929420e-03 - sys_corr_104: -2.21244950e-01 - sys_corr_105: 1.88671421e-02 + sys_corr_100: -1.88671421e-02 + sys_corr_101: -1.15157451e-01 + sys_corr_102: -1.15542520e-01 + sys_corr_103: 3.49089494e-01 + sys_corr_104: 1.86929420e-03 + sys_corr_105: 2.21244950e-01 sys_corr_106: 1.18289245e-02 sys_corr_107: -2.83760901e-01 - sys_corr_108: 4.44293905e-01 - sys_corr_109: 3.27278263e-01 - sys_corr_110: 9.10485309e-02 - sys_corr_111: 2.18483487e-01 - sys_corr_112: 1.36803628e-01 - sys_corr_113: 1.19457863e-01 - sys_corr_114: 5.01812007e+00 - sys_corr_115: 9.00835756e-02 + sys_corr_108: 3.27278263e-01 + sys_corr_109: -4.44293905e-01 + sys_corr_110: -2.18483487e-01 + sys_corr_111: -9.10485309e-02 + sys_corr_112: -1.36803628e-01 + sys_corr_113: -1.19457863e-01 + sys_corr_114: -5.01812007e+00 + sys_corr_115: -9.00835756e-02 sys_corr_116: 2.03391782e-01 - sys_corr_117: 2.69697706e-01 + sys_corr_117: -2.69697706e-01 sys_corr_118: -7.99051737e-01 sys_corr_119: -1.76728716e+00 sys_corr_120: -2.47872236e-01 sys_corr_121: -1.26761789e+00 - sys_corr_122: -1.96592492e+00 - sys_corr_123: -1.82492290e+00 - sys_corr_124: 1.54998594e-01 + sys_corr_122: -1.82492290e+00 + sys_corr_123: 1.96592492e+00 + sys_corr_124: -1.54998594e-01 sys_corr_125: 9.30763695e-01 sys_corr_126: -1.31712180e+00 - sys_corr_127: -1.23003007e-02 - sys_corr_128: -2.02442099e-01 - sys_corr_129: -2.47551691e-01 - sys_corr_130: -1.25586845e-01 - sys_corr_131: 5.59272244e-01 + sys_corr_127: 1.23003007e-02 + sys_corr_128: 2.02442099e-01 + sys_corr_129: 2.47551691e-01 + sys_corr_130: 1.25586845e-01 + sys_corr_131: -5.59272244e-01 sys_corr_132: -4.22855763e+00 stat: 0.0 luminosity: 0.473748 From 9278cd4b3e9d44309b9e15bad79d94c4e602052e Mon Sep 17 00:00:00 2001 From: juacrumar Date: Fri, 1 Nov 2024 18:49:27 +0100 Subject: [PATCH 16/22] update files from ubuntu --- .../CMS_1JET_8TEV/uncertainties.yaml | 57964 ++++++++-------- .../CMS_Z0_7TEV_DIMUON/uncertainties.yaml | 11890 ++-- 2 files changed, 34927 insertions(+), 34927 deletions(-) diff --git a/nnpdf_data/nnpdf_data/commondata/CMS_1JET_8TEV/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/CMS_1JET_8TEV/uncertainties.yaml index 844dcc730c..71b01f8423 100644 --- a/nnpdf_data/nnpdf_data/commondata/CMS_1JET_8TEV/uncertainties.yaml +++ b/nnpdf_data/nnpdf_data/commondata/CMS_1JET_8TEV/uncertainties.yaml @@ -4022,191 +4022,191 @@ bins: RelativeStatFSR-: -2.65151356e+05 luminosity_uncertainty: 975.9256 uncorrelated_uncertainty: 375.356 -- art_sys_1: -1.10820807e-28 - art_sys_2: 4.17339306e-17 - art_sys_3: 4.80009693e-18 +- art_sys_1: 1.16923923e-28 + art_sys_2: -6.70188151e-16 + art_sys_3: 4.80009676e-18 art_sys_4: -2.13872286e+02 - art_sys_5: -3.24617037e-15 - art_sys_6: -1.36579165e-15 + art_sys_5: 2.04907207e-14 + art_sys_6: -2.57886686e-15 art_sys_7: 4.32504440e+01 - art_sys_8: 1.21825465e-15 + art_sys_8: 3.12872859e-15 art_sys_9: 1.59603845e+01 - art_sys_10: -2.98223071e-16 - art_sys_11: -7.42972837e-16 + art_sys_10: -1.20200171e-15 + art_sys_11: 1.35883766e-15 art_sys_12: 2.59780643e+00 - art_sys_13: -5.51000935e-16 - art_sys_14: -3.88515743e-02 - art_sys_15: -4.87993046e-16 - art_sys_16: -1.41001692e-02 - art_sys_17: 2.93330603e-16 - art_sys_18: 2.15356281e-16 - art_sys_19: -8.26532790e-03 - art_sys_20: 1.28301462e-16 - art_sys_21: 2.36421386e-16 - art_sys_22: -4.44623687e-17 + art_sys_13: 2.86187083e-17 + art_sys_14: 3.88515743e-02 + art_sys_15: 4.77232761e-16 + art_sys_16: 1.41001692e-02 + art_sys_17: 3.08293295e-16 + art_sys_18: 2.11243035e-16 + art_sys_19: 8.26532790e-03 + art_sys_20: 1.74413062e-17 + art_sys_21: 2.44868591e-16 + art_sys_22: -3.02136528e-17 art_sys_23: -1.58893902e-03 - art_sys_24: 3.29064220e-16 - art_sys_25: -4.62562783e-06 + art_sys_24: 3.28224499e-16 + art_sys_25: 4.62562783e-06 art_sys_26: -1.76953379e-06 - art_sys_27: -6.48342833e-18 - art_sys_28: 7.59436757e-18 - art_sys_29: 1.55908559e-18 - art_sys_30: 7.83468545e-07 - art_sys_31: -2.09582786e-17 - art_sys_32: -1.06900367e-18 - art_sys_33: -3.53930210e-08 - art_sys_34: -2.50452301e-08 - art_sys_35: 1.92725043e-17 - art_sys_36: -9.94994330e-17 - art_sys_37: -9.12280624e-18 - art_sys_38: 1.03930482e-19 - art_sys_39: 2.38685200e-20 - art_sys_40: 2.36761833e-20 - art_sys_41: -1.93478784e-20 - art_sys_42: 1.40604013e-19 - art_sys_43: 9.57365860e-19 - art_sys_44: -1.74453708e-18 - art_sys_45: 3.17912075e-19 - art_sys_46: -4.11083580e-20 - art_sys_47: 6.79355279e-18 - art_sys_48: -5.06334251e-09 - art_sys_49: 6.06522116e-17 - art_sys_50: -2.87023699e-20 - art_sys_51: -5.68510974e-21 - art_sys_52: -1.35571739e-17 - art_sys_53: -4.34584123e-10 - art_sys_54: 1.56021145e-18 - art_sys_55: -1.96636910e-10 - art_sys_56: 9.92886055e-21 - art_sys_57: -5.06536674e-20 - art_sys_58: -1.34836479e-21 - art_sys_59: 4.02406089e-11 - art_sys_60: 6.35240989e-18 - art_sys_61: 1.36551827e-21 - art_sys_62: 3.50728982e-19 - art_sys_63: -4.28475503e-19 - art_sys_64: 1.18518814e-19 - art_sys_65: -9.78394284e-21 - art_sys_66: -2.78913887e-21 - art_sys_67: -1.45905998e-21 - art_sys_68: 2.78583023e-24 - art_sys_69: 5.76486954e-24 - art_sys_70: -3.19391006e-24 - art_sys_71: -5.43710278e-25 - art_sys_72: -2.79462130e-26 - art_sys_73: -3.86761603e-26 - art_sys_74: 5.75011554e-22 - art_sys_75: -4.23882747e-25 - art_sys_76: 2.79442275e-23 - art_sys_77: 6.50741794e-24 - art_sys_78: -3.21625199e-24 - art_sys_79: 3.75370596e-24 - art_sys_80: 5.12986783e-25 - art_sys_81: -5.42106392e-22 - art_sys_82: 1.43485629e-18 - art_sys_83: -1.01017820e-24 - art_sys_84: -1.53463749e-25 - art_sys_85: -2.66218742e-25 - art_sys_86: 6.59963291e-26 - art_sys_87: 4.26823186e-23 - art_sys_88: -2.09175821e-23 - art_sys_89: 2.25420875e-26 - art_sys_90: 5.12855977e-23 - art_sys_91: -3.91581147e-13 - art_sys_92: -1.42397547e-27 - art_sys_93: 2.84324295e-27 - art_sys_94: -1.82577263e-24 - art_sys_95: -4.86600714e-20 - art_sys_96: 1.01982036e-13 - art_sys_97: 2.52320461e-20 - art_sys_98: -7.82816989e-21 - art_sys_99: 8.51603903e-14 - art_sys_100: -6.99208435e-20 - art_sys_101: -4.01584007e-14 - art_sys_102: 5.35375527e-22 - art_sys_103: -1.55018497e-20 - art_sys_104: 1.95305849e-14 - art_sys_105: 6.78617373e-27 - art_sys_106: -8.26936866e-15 - art_sys_107: -4.01343291e-22 - art_sys_108: -8.57532795e-26 - art_sys_109: 1.18636630e-26 - art_sys_110: -6.89601861e-21 - art_sys_111: 3.19949325e-15 - art_sys_112: 1.12670710e-21 - art_sys_113: 1.02175703e-19 - art_sys_114: 2.12444053e-27 - art_sys_115: -1.17711006e-15 - art_sys_116: 3.07608921e-22 - art_sys_117: 2.11882051e-26 - art_sys_118: 4.07017265e-16 - art_sys_119: 1.35378462e-22 - art_sys_120: -1.38818297e-21 - art_sys_121: 3.67329647e-27 - art_sys_122: -1.70252467e-16 - art_sys_123: -1.73353062e-23 - art_sys_124: 6.12519425e-17 - art_sys_125: -9.05581466e-28 - art_sys_126: -3.94599948e-22 - art_sys_127: 8.17830547e-25 - art_sys_128: -2.04577534e-17 - art_sys_129: 6.81494840e-29 - art_sys_130: -7.73574856e-24 - art_sys_131: -8.44163348e-27 - art_sys_132: -6.79149941e-18 - art_sys_133: 1.48516394e-23 - art_sys_134: -6.30691135e-23 - art_sys_135: 2.21527145e-18 - art_sys_136: 1.51530433e-27 - art_sys_137: -5.78987247e-25 - art_sys_138: 5.75565904e-19 - art_sys_139: 1.25547183e-23 - art_sys_140: -1.30590985e-27 - art_sys_141: 3.94131743e-24 - art_sys_142: 1.94674373e-19 - art_sys_143: 3.58423992e-24 - art_sys_144: -6.11829337e-26 - art_sys_145: 3.26807385e-20 - art_sys_146: -1.99533845e-24 - art_sys_147: 2.26287347e-26 - art_sys_148: -7.79533892e-28 - art_sys_149: -3.30482581e-21 - art_sys_150: 9.51238013e-23 - art_sys_151: 5.14214283e-24 - art_sys_152: -8.98591442e-26 - art_sys_153: 1.31166175e-23 - art_sys_154: -8.25186711e-23 - art_sys_155: -4.79916204e-26 - art_sys_156: 0.0 - art_sys_157: -3.66452841e-23 - art_sys_158: 0.0 - art_sys_159: 5.83054350e-24 - art_sys_160: -7.58248555e-25 - art_sys_161: -6.52232196e-25 - art_sys_162: -6.52232196e-25 - art_sys_163: -6.73458724e-25 - art_sys_164: -6.73458724e-25 - art_sys_165: 7.59627451e-39 - art_sys_166: -2.52138177e-39 - art_sys_167: -0.0 - art_sys_168: -4.78552379e-34 - art_sys_169: 3.98590341e-33 - art_sys_170: -9.17635284e-33 - art_sys_171: -1.02855843e-31 - art_sys_172: -2.34770549e-33 - art_sys_173: -1.00646434e-33 - art_sys_174: 2.97555884e-34 - art_sys_175: -1.22452131e-34 - art_sys_176: 6.76477851e-36 - art_sys_177: 4.44865163e-38 - art_sys_178: -6.14986200e-38 - art_sys_179: 1.46223520e-38 - art_sys_180: 1.51634374e-37 - art_sys_181: -3.51548024e-37 - art_sys_182: 5.40503294e-36 - art_sys_183: 3.83013813e-38 - art_sys_184: 4.51303779e-40 - art_sys_185: -2.56358429e-41 + art_sys_27: 6.50574836e-18 + art_sys_28: 1.94212793e-18 + art_sys_29: -2.45387368e-16 + art_sys_30: -2.21439657e-17 + art_sys_31: 2.20214039e-18 + art_sys_32: -1.04886145e-19 + art_sys_33: 9.05529531e-20 + art_sys_34: 5.19483210e-19 + art_sys_35: 6.54649572e-19 + art_sys_36: -2.95352069e-18 + art_sys_37: 7.83468545e-07 + art_sys_38: 7.82491937e-19 + art_sys_39: 1.94998731e-17 + art_sys_40: -4.67761896e-18 + art_sys_41: 3.53930210e-08 + art_sys_42: 1.79569761e-18 + art_sys_43: 2.50452301e-08 + art_sys_44: -7.35025503e-19 + art_sys_45: 2.01286868e-17 + art_sys_46: 8.10367646e-20 + art_sys_47: 3.85920248e-20 + art_sys_48: -5.06334249e-09 + art_sys_49: 5.40249565e-18 + art_sys_50: 5.82315359e-20 + art_sys_51: -3.12240825e-19 + art_sys_52: -4.34584118e-10 + art_sys_53: -3.70445211e-18 + art_sys_54: 7.82699572e-20 + art_sys_55: 1.96636910e-10 + art_sys_56: 1.80803755e-18 + art_sys_57: -5.05075244e-20 + art_sys_58: 5.04117555e-22 + art_sys_59: 2.19398491e-21 + art_sys_60: -1.31695133e-19 + art_sys_61: -6.76519331e-22 + art_sys_62: -8.48266232e-25 + art_sys_63: -8.57026413e-24 + art_sys_64: -1.19658097e-25 + art_sys_65: 2.58362223e-24 + art_sys_66: 4.68365513e-22 + art_sys_67: -5.73567075e-25 + art_sys_68: -8.50643810e-25 + art_sys_69: -1.09701328e-19 + art_sys_70: 4.02406080e-11 + art_sys_71: -1.10821638e-18 + art_sys_72: -6.80817434e-20 + art_sys_73: 2.15784627e-21 + art_sys_74: 1.50405982e-18 + art_sys_75: 1.00638482e-23 + art_sys_76: -3.14627726e-23 + art_sys_77: 1.82951486e-23 + art_sys_78: -2.08677366e-24 + art_sys_79: -3.64752346e-22 + art_sys_80: 2.20448413e-18 + art_sys_81: -2.10961707e-24 + art_sys_82: -6.15202465e-25 + art_sys_83: 3.91709415e-25 + art_sys_84: 1.04996686e-21 + art_sys_85: 5.05930086e-25 + art_sys_86: 4.76318591e-26 + art_sys_87: 4.03898806e-24 + art_sys_88: -1.82854770e-25 + art_sys_89: -3.09933161e-26 + art_sys_90: 3.91579103e-13 + art_sys_91: -1.01979953e-13 + art_sys_92: -3.01268706e-21 + art_sys_93: -5.94910718e-20 + art_sys_94: 9.08220909e-21 + art_sys_95: 8.51605047e-14 + art_sys_96: 5.51001324e-26 + art_sys_97: 1.00650947e-20 + art_sys_98: -4.01584208e-14 + art_sys_99: 5.46944132e-20 + art_sys_100: -5.98079881e-22 + art_sys_101: 1.95310796e-14 + art_sys_102: -1.27827943e-26 + art_sys_103: 4.72645904e-22 + art_sys_104: 8.26996746e-15 + art_sys_105: 6.37981107e-27 + art_sys_106: -3.19950954e-15 + art_sys_107: 1.17125311e-19 + art_sys_108: 5.25681329e-23 + art_sys_109: -2.46813240e-21 + art_sys_110: 7.19896998e-27 + art_sys_111: -1.17712501e-15 + art_sys_112: 4.44299552e-23 + art_sys_113: -1.06788477e-26 + art_sys_114: 4.06903658e-16 + art_sys_115: -2.76317805e-24 + art_sys_116: -1.42700518e-21 + art_sys_117: -1.47706328e-27 + art_sys_118: 1.70150926e-16 + art_sys_119: -4.21047191e-25 + art_sys_120: -6.12748937e-17 + art_sys_121: 4.44065310e-23 + art_sys_122: -2.04522619e-17 + art_sys_123: -4.71039512e-24 + art_sys_124: 6.79145401e-18 + art_sys_125: -2.20987403e-18 + art_sys_126: -3.48267990e-23 + art_sys_127: -5.75342989e-19 + art_sys_128: 4.02091640e-24 + art_sys_129: -5.66141981e-25 + art_sys_130: 9.78758262e-24 + art_sys_131: 3.71009695e-24 + art_sys_132: -1.93998080e-19 + art_sys_133: -6.30503710e-25 + art_sys_134: -8.13309160e-23 + art_sys_135: -3.31246466e-20 + art_sys_136: -5.96318290e-23 + art_sys_137: 3.52070054e-21 + art_sys_138: 1.60247249e-23 + art_sys_139: 5.58366921e-23 + art_sys_140: 4.39090203e-22 + art_sys_141: -2.63232508e-23 + art_sys_142: -0.0 + art_sys_143: 8.20955997e-23 + art_sys_144: 2.40810867e-23 + art_sys_145: 1.27405645e-23 + art_sys_146: 1.10966724e-27 + art_sys_147: -1.36923408e-28 + art_sys_148: -5.00063031e-26 + art_sys_149: -5.36882041e-27 + art_sys_150: -4.28483084e-28 + art_sys_151: 4.69305914e-26 + art_sys_152: -3.06207035e-26 + art_sys_153: -1.58536606e-27 + art_sys_154: 1.07341464e-26 + art_sys_155: 2.00743303e-26 + art_sys_156: 7.19093647e-26 + art_sys_157: 7.71404096e-27 + art_sys_158: -0.0 + art_sys_159: 3.61475276e-24 + art_sys_160: 3.61475276e-24 + art_sys_161: -1.08071646e-25 + art_sys_162: 4.48433020e-38 + art_sys_163: 0.0 + art_sys_164: 2.86942120e-38 + art_sys_165: 4.85290770e-33 + art_sys_166: -3.16106463e-35 + art_sys_167: -1.47411359e-34 + art_sys_168: 9.77097586e-34 + art_sys_169: -1.23949937e-33 + art_sys_170: -3.14978762e-33 + art_sys_171: -4.18856246e-32 + art_sys_172: -4.98011385e-32 + art_sys_173: -4.77655893e-33 + art_sys_174: 2.04721538e-38 + art_sys_175: 3.06166551e-33 + art_sys_176: -1.23782861e-33 + art_sys_177: 7.26741624e-35 + art_sys_178: -7.89641026e-36 + art_sys_179: 9.67082606e-36 + art_sys_180: -9.71374807e-38 + art_sys_181: -3.05150144e-36 + art_sys_182: -3.89104882e-36 + art_sys_183: -1.12421113e-38 + art_sys_184: 3.54341707e-41 + art_sys_185: 7.69268759e-40 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -4313,191 +4313,191 @@ bins: RelativeStatFSR-: -7.14236536e+00 luminosity_uncertainty: 975.9256 uncorrelated_uncertainty: 375.356 -- art_sys_1: -5.70095765e-29 - art_sys_2: 2.14678973e-17 - art_sys_3: 3.87656932e-18 +- art_sys_1: 6.01421125e-29 + art_sys_2: -3.44744196e-16 + art_sys_3: 3.87656923e-18 art_sys_4: -1.10015716e+02 - art_sys_5: -1.59360751e-15 - art_sys_6: -6.96706861e-16 + art_sys_5: 1.06351393e-14 + art_sys_6: -1.32347178e-15 art_sys_7: -7.94684215e+01 - art_sys_8: 2.16004538e-15 + art_sys_8: 9.59597361e-16 art_sys_9: -2.76420107e+01 - art_sys_10: 1.45388066e-15 - art_sys_11: -4.92240876e-16 + art_sys_10: -2.04493117e-16 + art_sys_11: -3.06305749e-15 art_sys_12: -7.40958162e+00 - art_sys_13: 8.29794439e-17 - art_sys_14: 1.27844108e-01 - art_sys_15: 5.09237314e-16 - art_sys_16: 4.68621367e-02 - art_sys_17: -9.80273932e-17 - art_sys_18: 1.42203602e-16 - art_sys_19: 3.06526079e-02 - art_sys_20: 1.85767415e-17 - art_sys_21: -4.74999540e-16 - art_sys_22: 2.00855939e-17 + art_sys_13: 4.12518191e-16 + art_sys_14: -1.27844108e-01 + art_sys_15: -5.52862981e-16 + art_sys_16: -4.68621367e-02 + art_sys_17: 2.77097212e-16 + art_sys_18: 1.56181044e-16 + art_sys_19: -3.06526079e-02 + art_sys_20: 2.42762199e-17 + art_sys_21: -4.81796372e-16 + art_sys_22: -8.44562481e-18 art_sys_23: 6.35192413e-03 - art_sys_24: -9.96946570e-16 - art_sys_25: 2.64716142e-05 + art_sys_24: -9.93865972e-16 + art_sys_25: -2.64716142e-05 art_sys_26: 1.10167488e-05 - art_sys_27: 2.24938654e-17 - art_sys_28: -3.00087740e-19 - art_sys_29: -1.22241510e-18 - art_sys_30: -4.46250602e-06 - art_sys_31: 9.95240601e-17 - art_sys_32: 4.52061924e-18 - art_sys_33: 3.35534777e-07 - art_sys_34: 1.58782566e-07 - art_sys_35: -7.78867568e-17 - art_sys_36: -1.21002844e-17 - art_sys_37: 5.38994049e-18 - art_sys_38: -2.62339785e-19 - art_sys_39: -3.58935625e-20 - art_sys_40: -2.87750117e-19 - art_sys_41: -6.19181909e-19 - art_sys_42: -2.58469644e-19 - art_sys_43: 9.73241930e-19 - art_sys_44: -1.25346437e-18 - art_sys_45: 8.59098930e-19 - art_sys_46: 8.57413300e-21 - art_sys_47: -5.03847860e-17 - art_sys_48: 3.81972019e-08 - art_sys_49: -4.57276601e-16 - art_sys_50: -9.24843553e-20 - art_sys_51: -3.32984197e-19 - art_sys_52: 1.05419517e-16 - art_sys_53: 2.92226894e-09 - art_sys_54: -1.11833285e-17 - art_sys_55: 1.33373127e-09 - art_sys_56: -3.19163464e-18 - art_sys_57: -1.56871871e-19 - art_sys_58: -6.17476516e-22 - art_sys_59: -2.77656628e-10 - art_sys_60: -4.42626829e-17 - art_sys_61: 1.02124862e-20 - art_sys_62: -1.68671661e-18 - art_sys_63: 1.81103094e-18 - art_sys_64: -1.50490651e-19 - art_sys_65: 2.49362803e-20 - art_sys_66: 1.67541106e-20 - art_sys_67: 9.77258613e-21 - art_sys_68: -1.69488676e-23 - art_sys_69: 9.70467544e-24 - art_sys_70: 3.13623096e-24 - art_sys_71: 7.76402334e-25 - art_sys_72: 2.17065375e-25 - art_sys_73: 1.31265856e-27 - art_sys_74: 5.91597115e-22 - art_sys_75: 6.02380547e-25 - art_sys_76: -1.28537817e-22 - art_sys_77: -3.94513638e-23 - art_sys_78: 1.66584125e-23 - art_sys_79: -1.54779674e-24 - art_sys_80: -3.37191460e-24 - art_sys_81: 3.43624950e-21 - art_sys_82: -7.73756265e-18 - art_sys_83: 3.91520974e-24 - art_sys_84: 7.44528085e-25 - art_sys_85: 1.18038941e-24 - art_sys_86: -3.04247430e-25 - art_sys_87: -2.35583283e-22 - art_sys_88: 1.20139285e-22 - art_sys_89: -6.94607488e-26 - art_sys_90: -3.02635939e-22 - art_sys_91: 1.61621501e-12 - art_sys_92: 1.19875784e-26 - art_sys_93: -1.58180863e-26 - art_sys_94: 1.08774989e-23 - art_sys_95: 2.45995988e-19 - art_sys_96: -6.44913941e-13 - art_sys_97: -1.73142726e-19 - art_sys_98: 3.88276622e-20 - art_sys_99: -4.41279664e-13 - art_sys_100: 3.81603147e-19 - art_sys_101: 2.18613893e-13 - art_sys_102: -2.84333855e-21 - art_sys_103: 9.38863107e-20 - art_sys_104: -1.09590226e-13 - art_sys_105: -9.90849394e-26 - art_sys_106: 4.63813100e-14 - art_sys_107: 2.82329694e-21 - art_sys_108: 5.34170324e-25 - art_sys_109: -6.53291044e-26 - art_sys_110: 4.03223728e-20 - art_sys_111: -1.83568185e-14 - art_sys_112: -6.93608724e-21 - art_sys_113: -5.81625633e-19 - art_sys_114: -5.58927485e-27 - art_sys_115: 6.77681409e-15 - art_sys_116: -1.81104740e-21 - art_sys_117: -1.18537318e-25 - art_sys_118: -2.36550357e-15 - art_sys_119: -8.03931536e-22 - art_sys_120: 8.14323017e-21 - art_sys_121: -2.16143132e-26 - art_sys_122: 9.94310549e-16 - art_sys_123: 1.08765775e-22 - art_sys_124: -3.59017033e-16 - art_sys_125: 3.20668946e-27 - art_sys_126: 2.34068387e-21 - art_sys_127: -4.66918561e-24 - art_sys_128: 1.20429566e-16 - art_sys_129: -8.67858770e-28 - art_sys_130: 4.58853491e-23 - art_sys_131: 5.06873322e-26 - art_sys_132: 4.00497220e-17 - art_sys_133: -8.80470682e-23 - art_sys_134: 3.67779902e-22 - art_sys_135: -1.30880084e-17 - art_sys_136: -8.84278512e-27 - art_sys_137: 3.42999203e-24 - art_sys_138: -3.40525393e-18 - art_sys_139: -7.44167968e-23 - art_sys_140: 7.63421418e-27 - art_sys_141: -2.31022219e-23 - art_sys_142: -1.15244016e-18 - art_sys_143: -2.12391440e-23 - art_sys_144: 3.62174517e-25 - art_sys_145: -1.93648219e-19 - art_sys_146: 1.18257772e-23 - art_sys_147: -1.34087068e-25 - art_sys_148: 4.57106522e-27 - art_sys_149: 1.95953345e-20 - art_sys_150: -5.64013325e-22 - art_sys_151: -3.04746490e-23 - art_sys_152: 5.32731841e-25 - art_sys_153: -7.77489876e-23 - art_sys_154: 4.79160914e-22 - art_sys_155: 2.84520086e-25 - art_sys_156: -0.0 - art_sys_157: 2.17317826e-22 - art_sys_158: -0.0 - art_sys_159: -3.45557121e-23 - art_sys_160: 4.49768041e-24 - art_sys_161: 3.86672610e-24 - art_sys_162: 3.86672610e-24 - art_sys_163: 3.99202229e-24 - art_sys_164: 3.99202229e-24 - art_sys_165: -4.50288221e-38 - art_sys_166: 1.49461885e-38 - art_sys_167: 0.0 - art_sys_168: 3.74513723e-33 - art_sys_169: -9.67278268e-33 - art_sys_170: -1.58402751e-34 - art_sys_171: 2.81957734e-31 - art_sys_172: -3.10056381e-32 - art_sys_173: -3.37852026e-33 - art_sys_174: 1.98070767e-33 - art_sys_175: -1.42120678e-35 - art_sys_176: 1.59827174e-35 - art_sys_177: -2.01772885e-37 - art_sys_178: -2.49540837e-37 - art_sys_179: -8.66934191e-38 - art_sys_180: -8.98731695e-37 - art_sys_181: -5.87021485e-37 - art_sys_182: -2.36661179e-36 - art_sys_183: -1.49638321e-37 - art_sys_184: 1.04697279e-39 - art_sys_185: 1.70079165e-40 + art_sys_27: -2.25948164e-17 + art_sys_28: 6.04492415e-18 + art_sys_29: 5.09907899e-16 + art_sys_30: 2.44337580e-17 + art_sys_31: -3.63144560e-18 + art_sys_32: 5.41592627e-19 + art_sys_33: -1.72826605e-20 + art_sys_34: -9.37421665e-19 + art_sys_35: -1.26080754e-18 + art_sys_36: -2.98159643e-18 + art_sys_37: -4.46250602e-06 + art_sys_38: 2.59353516e-18 + art_sys_39: -9.99375548e-17 + art_sys_40: 2.36435069e-17 + art_sys_41: -3.35534777e-07 + art_sys_42: 1.37451260e-17 + art_sys_43: -1.58782566e-07 + art_sys_44: -3.28553328e-18 + art_sys_45: -8.05707877e-17 + art_sys_46: -4.62929129e-19 + art_sys_47: 2.08737801e-19 + art_sys_48: 3.81972018e-08 + art_sys_49: -4.06741747e-17 + art_sys_50: -1.00923191e-19 + art_sys_51: 4.41351200e-19 + art_sys_52: 2.92226891e-09 + art_sys_53: 2.48048093e-17 + art_sys_54: -7.76004679e-19 + art_sys_55: -1.33373127e-09 + art_sys_56: -1.04514897e-17 + art_sys_57: 9.82296892e-20 + art_sys_58: 6.94355961e-20 + art_sys_59: 8.74127477e-21 + art_sys_60: -5.48216693e-19 + art_sys_61: 5.80334306e-21 + art_sys_62: -5.38140205e-22 + art_sys_63: 3.96061932e-24 + art_sys_64: 4.27716952e-23 + art_sys_65: -3.61631763e-23 + art_sys_66: 5.57356481e-21 + art_sys_67: 1.33127805e-24 + art_sys_68: 1.94268606e-24 + art_sys_69: 3.57785568e-19 + art_sys_70: -2.77656620e-10 + art_sys_71: 4.94195162e-18 + art_sys_72: 1.15798784e-18 + art_sys_73: -3.56323987e-20 + art_sys_74: -7.55311863e-18 + art_sys_75: -3.57568865e-23 + art_sys_76: 1.09928302e-22 + art_sys_77: -9.01013756e-23 + art_sys_78: 1.04560112e-23 + art_sys_79: 1.46825022e-21 + art_sys_80: -9.38641803e-18 + art_sys_81: 1.21133112e-23 + art_sys_82: 2.43263014e-24 + art_sys_83: -1.58063617e-24 + art_sys_84: -6.18435111e-21 + art_sys_85: -2.50324642e-24 + art_sys_86: -3.10813749e-25 + art_sys_87: -2.14621377e-23 + art_sys_88: 3.95482205e-25 + art_sys_89: 3.00994872e-26 + art_sys_90: -1.61620771e-12 + art_sys_91: 6.44905348e-13 + art_sys_92: 1.52972617e-20 + art_sys_93: 1.81070536e-19 + art_sys_94: -5.02025178e-20 + art_sys_95: -4.41280320e-13 + art_sys_96: -1.76257902e-25 + art_sys_97: -5.63115946e-20 + art_sys_98: 2.18613969e-13 + art_sys_99: -3.73538322e-19 + art_sys_100: 3.08596313e-21 + art_sys_101: -1.09592854e-13 + art_sys_102: -3.86536697e-27 + art_sys_103: -2.99975670e-21 + art_sys_104: -4.63846446e-14 + art_sys_105: -1.22986411e-25 + art_sys_106: 1.83569479e-14 + art_sys_107: -6.09937958e-19 + art_sys_108: -3.02101756e-22 + art_sys_109: 1.47034877e-20 + art_sys_110: -4.78680317e-26 + art_sys_111: 6.77691389e-15 + art_sys_112: -2.79234603e-22 + art_sys_113: 3.94948895e-26 + art_sys_114: -2.36481681e-15 + art_sys_115: -8.91108873e-24 + art_sys_116: 8.36224018e-21 + art_sys_117: 1.45740288e-27 + art_sys_118: -9.93702473e-16 + art_sys_119: -1.65823106e-24 + art_sys_120: 3.59132751e-16 + art_sys_121: -2.52234345e-22 + art_sys_122: 1.20387784e-16 + art_sys_123: 2.76925558e-23 + art_sys_124: -4.00467042e-17 + art_sys_125: 1.30556003e-17 + art_sys_126: 1.93330831e-22 + art_sys_127: 3.40385993e-18 + art_sys_128: -2.36769821e-23 + art_sys_129: 3.36989665e-24 + art_sys_130: -5.80419925e-23 + art_sys_131: -2.19990484e-23 + art_sys_132: 1.14842174e-18 + art_sys_133: 4.56806557e-24 + art_sys_134: 4.81772621e-22 + art_sys_135: 1.96270819e-19 + art_sys_136: 3.53348227e-22 + art_sys_137: -2.08743200e-20 + art_sys_138: -9.50059956e-23 + art_sys_139: -3.30993887e-22 + art_sys_140: -2.07018840e-21 + art_sys_141: 1.56052998e-22 + art_sys_142: 0.0 + art_sys_143: -4.85845276e-22 + art_sys_144: -1.42568493e-22 + art_sys_145: -7.55375607e-23 + art_sys_146: -4.27884404e-27 + art_sys_147: -6.16187997e-28 + art_sys_148: 2.63011235e-25 + art_sys_149: 5.99667419e-26 + art_sys_150: 5.29772484e-27 + art_sys_151: -2.77971617e-25 + art_sys_152: 1.80759626e-25 + art_sys_153: 9.43824154e-27 + art_sys_154: -6.36408131e-26 + art_sys_155: -1.19059721e-25 + art_sys_156: -4.26280474e-25 + art_sys_157: -4.57135912e-26 + art_sys_158: 0.0 + art_sys_159: -2.14459799e-23 + art_sys_160: -2.14459799e-23 + art_sys_161: 6.41705457e-25 + art_sys_162: -2.66215539e-37 + art_sys_163: -0.0 + art_sys_164: -1.70328951e-37 + art_sys_165: -2.35121319e-32 + art_sys_166: 4.39505854e-33 + art_sys_167: -7.46614183e-34 + art_sys_168: -4.57773317e-33 + art_sys_169: 1.80718312e-33 + art_sys_170: 2.54076390e-32 + art_sys_171: 2.33183014e-31 + art_sys_172: -3.16525807e-31 + art_sys_173: 4.91182268e-32 + art_sys_174: -1.21371220e-37 + art_sys_175: -1.12727309e-32 + art_sys_176: 1.11307495e-32 + art_sys_177: -1.86620119e-33 + art_sys_178: -1.60705548e-34 + art_sys_179: -4.60479502e-36 + art_sys_180: 1.28179140e-35 + art_sys_181: 4.43128816e-36 + art_sys_182: 8.90610297e-36 + art_sys_183: 6.16364140e-38 + art_sys_184: -2.73430315e-40 + art_sys_185: -4.57435169e-39 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -4604,191 +4604,191 @@ bins: RelativeStatFSR-: -3.87533944e+00 luminosity_uncertainty: 4.93402000e+02 uncorrelated_uncertainty: 189.77 -- art_sys_1: -4.82797852e-30 - art_sys_2: 1.81769426e-18 - art_sys_3: 6.12449966e-19 +- art_sys_1: 5.09129539e-30 + art_sys_2: -2.91896100e-17 + art_sys_3: 6.12449959e-19 art_sys_4: -9.31506862e+00 - art_sys_5: -3.20052311e-15 - art_sys_6: -5.99034093e-17 + art_sys_5: -2.16537374e-15 + art_sys_6: -1.12764991e-16 art_sys_7: -7.79292603e+01 - art_sys_8: 1.47065956e-16 + art_sys_8: -2.49852553e-15 art_sys_9: 2.67856473e+01 - art_sys_10: 1.14142003e-15 - art_sys_11: -3.64221873e-16 + art_sys_10: 2.75580061e-16 + art_sys_11: -8.81354276e-16 art_sys_12: 1.13989659e+01 - art_sys_13: -2.02004877e-16 - art_sys_14: -4.38121108e-01 - art_sys_15: -8.17515981e-16 - art_sys_16: -1.22818175e-01 - art_sys_17: -1.02112981e-16 - art_sys_18: -2.14759246e-16 - art_sys_19: -9.58547906e-02 - art_sys_20: 8.03026883e-17 - art_sys_21: 7.81512348e-16 - art_sys_22: 1.01515724e-17 + art_sys_13: -4.43894707e-16 + art_sys_14: 4.38121108e-01 + art_sys_15: 8.89201463e-16 + art_sys_16: 1.22818175e-01 + art_sys_17: 4.18964915e-17 + art_sys_18: -2.40854122e-16 + art_sys_19: 9.58547906e-02 + art_sys_20: 1.03076847e-16 + art_sys_21: 8.29092278e-16 + art_sys_22: 4.77259800e-17 art_sys_23: -2.09371166e-02 - art_sys_24: 1.96914065e-15 - art_sys_25: -7.64966903e-05 + art_sys_24: 1.96115101e-15 + art_sys_25: 7.64966903e-05 art_sys_26: -4.05814976e-05 - art_sys_27: -3.94908585e-17 - art_sys_28: -7.38354160e-17 - art_sys_29: 7.99382089e-19 - art_sys_30: 1.55809470e-05 - art_sys_31: -3.43249509e-16 - art_sys_32: -5.82653887e-18 - art_sys_33: -1.27380061e-06 - art_sys_34: -6.04373986e-07 - art_sys_35: 2.47339907e-16 - art_sys_36: 2.15215430e-16 - art_sys_37: 3.53753152e-18 - art_sys_38: -3.91629556e-19 - art_sys_39: 1.02006311e-20 - art_sys_40: -6.93914667e-20 - art_sys_41: -2.62238451e-19 - art_sys_42: 1.57472276e-20 - art_sys_43: -3.75796501e-19 - art_sys_44: 2.08069397e-18 - art_sys_45: -8.76722247e-19 - art_sys_46: 1.13079316e-19 - art_sys_47: 1.91379585e-16 + art_sys_27: 3.98114180e-17 + art_sys_28: -7.14686716e-17 + art_sys_29: 1.37364650e-16 + art_sys_30: -6.00600896e-18 + art_sys_31: 3.64593206e-18 + art_sys_32: -1.84424624e-18 + art_sys_33: 1.71802410e-19 + art_sys_34: -8.19207391e-19 + art_sys_35: -7.10565443e-19 + art_sys_36: -5.23924869e-18 + art_sys_37: 1.55809470e-05 + art_sys_38: 7.86720819e-19 + art_sys_39: 3.39716384e-16 + art_sys_40: -8.08669390e-17 + art_sys_41: 1.27380061e-06 + art_sys_42: 5.50218963e-19 + art_sys_43: 6.04373986e-07 + art_sys_44: 8.12040246e-20 + art_sys_45: 2.58228123e-16 + art_sys_46: 1.61036866e-18 + art_sys_47: -4.50750207e-20 art_sys_48: -1.45843387e-07 - art_sys_49: 1.74603641e-15 - art_sys_50: 9.20488191e-20 - art_sys_51: 6.87763919e-19 - art_sys_52: -4.03609738e-16 - art_sys_53: -1.21792598e-08 - art_sys_54: 4.62666134e-17 - art_sys_55: -5.23360485e-09 - art_sys_56: 1.54571231e-17 - art_sys_57: -7.32530632e-20 - art_sys_58: -6.81786514e-21 - art_sys_59: 1.12523248e-09 - art_sys_60: 1.79274784e-16 - art_sys_61: -4.51996033e-20 - art_sys_62: 6.04680547e-18 - art_sys_63: -7.81126140e-18 - art_sys_64: 3.69376436e-19 - art_sys_65: -9.28407843e-20 - art_sys_66: -2.79360196e-20 - art_sys_67: -3.34838724e-20 - art_sys_68: 4.93050990e-23 - art_sys_69: -1.74349900e-23 - art_sys_70: -1.06465077e-23 - art_sys_71: -4.20031471e-24 - art_sys_72: -4.58739742e-25 - art_sys_73: -4.25633010e-25 - art_sys_74: -8.07799684e-22 - art_sys_75: -1.93358673e-24 - art_sys_76: 5.14227300e-22 - art_sys_77: 1.50293608e-22 - art_sys_78: -6.22268431e-23 - art_sys_79: 7.83127228e-24 - art_sys_80: 1.15614921e-23 - art_sys_81: -1.24778762e-20 - art_sys_82: 2.91123236e-17 - art_sys_83: -1.55385784e-23 - art_sys_84: -2.60067667e-24 - art_sys_85: -4.76998149e-24 - art_sys_86: 1.16165370e-24 - art_sys_87: 9.06962165e-22 - art_sys_88: -4.68066124e-22 - art_sys_89: 2.99640701e-25 - art_sys_90: 1.18853364e-21 - art_sys_91: -6.36670718e-12 - art_sys_92: -2.58113738e-26 - art_sys_93: 5.95244111e-26 - art_sys_94: -4.26299599e-23 - art_sys_95: -9.79506959e-19 - art_sys_96: 2.34301249e-12 - art_sys_97: 8.28218786e-19 - art_sys_98: -1.44173901e-19 - art_sys_99: 1.74611696e-12 - art_sys_100: -1.46381067e-18 - art_sys_101: -8.37714979e-13 - art_sys_102: 1.09197768e-20 - art_sys_103: -3.81961867e-19 - art_sys_104: 4.26897648e-13 - art_sys_105: 3.93223706e-25 - art_sys_106: -1.80292498e-13 - art_sys_107: -1.09957041e-20 - art_sys_108: -2.08666371e-24 - art_sys_109: 2.52581703e-25 - art_sys_110: -1.57931480e-19 - art_sys_111: 7.15428376e-14 - art_sys_112: 2.67596353e-20 - art_sys_113: 2.26421615e-18 - art_sys_114: 1.90010047e-26 - art_sys_115: -2.64875914e-14 - art_sys_116: 7.10122728e-21 - art_sys_117: 4.91373254e-25 - art_sys_118: 9.24495358e-15 - art_sys_119: 3.14552582e-21 - art_sys_120: -3.19146212e-20 - art_sys_121: 7.63105656e-26 - art_sys_122: -3.89372191e-15 - art_sys_123: -4.34194412e-22 - art_sys_124: 1.40640357e-15 - art_sys_125: -1.52432456e-26 - art_sys_126: -9.18574304e-21 - art_sys_127: 1.80676729e-23 - art_sys_128: -4.72129039e-16 - art_sys_129: 1.05291237e-26 - art_sys_130: -1.80103318e-22 - art_sys_131: -1.99095731e-25 - art_sys_132: -1.57093297e-16 - art_sys_133: 3.45657563e-22 - art_sys_134: -1.44216962e-21 - art_sys_135: 5.13448463e-17 - art_sys_136: 3.50652680e-26 - art_sys_137: -1.34704303e-23 - art_sys_138: 1.33642493e-17 - art_sys_139: 2.92143992e-22 - art_sys_140: -2.99822025e-26 - art_sys_141: 9.07903278e-23 - art_sys_142: 4.52308892e-18 - art_sys_143: 8.33668597e-23 - art_sys_144: -1.42137499e-24 - art_sys_145: 7.60159762e-19 - art_sys_146: -4.64190811e-23 - art_sys_147: 5.26376513e-25 - art_sys_148: -1.79173748e-26 - art_sys_149: -7.69284622e-20 - art_sys_150: 2.21422484e-21 - art_sys_151: 1.19649359e-22 - art_sys_152: -2.09137478e-24 - art_sys_153: 3.05232285e-22 - art_sys_154: -1.89205190e-21 - art_sys_155: -1.11687241e-24 - art_sys_156: 0.0 - art_sys_157: -8.53173474e-22 - art_sys_158: 0.0 - art_sys_159: 1.35669698e-22 - art_sys_160: -1.76564706e-23 - art_sys_161: -1.51792477e-23 - art_sys_162: -1.51792477e-23 - art_sys_163: -1.56722625e-23 - art_sys_164: -1.56722625e-23 - art_sys_165: 1.76776653e-37 - art_sys_166: -5.86764631e-38 - art_sys_167: -0.0 - art_sys_168: -1.37991383e-32 - art_sys_169: 3.87927959e-32 - art_sys_170: -8.95961170e-33 - art_sys_171: -9.37437355e-31 - art_sys_172: 9.49773595e-32 - art_sys_173: 7.60525690e-33 - art_sys_174: -8.33265115e-33 - art_sys_175: 1.63826000e-35 - art_sys_176: -9.51254518e-35 - art_sys_177: 9.87208739e-37 - art_sys_178: 8.77973112e-37 - art_sys_179: 3.40293428e-37 - art_sys_180: 3.52846789e-36 - art_sys_181: 4.57450867e-36 - art_sys_182: 6.14270692e-36 - art_sys_183: 4.16388656e-37 - art_sys_184: -3.29181079e-39 - art_sys_185: -6.60089432e-40 + art_sys_49: 1.56642581e-16 + art_sys_50: 3.87144107e-20 + art_sys_51: -1.03283409e-19 + art_sys_52: -1.21792597e-08 + art_sys_53: -9.35954200e-17 + art_sys_54: 3.40202376e-18 + art_sys_55: 5.23360485e-09 + art_sys_56: 3.68601364e-17 + art_sys_57: -1.92139108e-19 + art_sys_58: -2.18545232e-19 + art_sys_59: -5.06972963e-20 + art_sys_60: 3.69394090e-19 + art_sys_61: -2.16297925e-20 + art_sys_62: 1.67559917e-21 + art_sys_63: -2.06396229e-22 + art_sys_64: -1.19335735e-22 + art_sys_65: 1.46116205e-22 + art_sys_66: 5.32843785e-21 + art_sys_67: -6.63631327e-24 + art_sys_68: -1.00017247e-23 + art_sys_69: -1.40318803e-18 + art_sys_70: 1.12523245e-09 + art_sys_71: -1.97928071e-17 + art_sys_72: -5.82227695e-18 + art_sys_73: 1.63946568e-19 + art_sys_74: 3.01818160e-17 + art_sys_75: 1.16372248e-22 + art_sys_76: -4.47666304e-22 + art_sys_77: 3.15510889e-22 + art_sys_78: -4.46965933e-23 + art_sys_79: -5.79634112e-21 + art_sys_80: 3.66124703e-17 + art_sys_81: -4.60481272e-23 + art_sys_82: -9.45322419e-24 + art_sys_83: 6.24229290e-24 + art_sys_84: 2.27639846e-20 + art_sys_85: 9.73804969e-24 + art_sys_86: 1.13847316e-24 + art_sys_87: 7.85227130e-23 + art_sys_88: -1.22747102e-24 + art_sys_89: -6.40459657e-26 + art_sys_90: 6.36667723e-12 + art_sys_91: -2.34297856e-12 + art_sys_92: -5.97671877e-20 + art_sys_93: -7.58230815e-19 + art_sys_94: 1.95581635e-19 + art_sys_95: 1.74611950e-12 + art_sys_96: 9.23093811e-25 + art_sys_97: 2.20111892e-19 + art_sys_98: -8.37715233e-13 + art_sys_99: 1.45815794e-18 + art_sys_100: -1.20834461e-20 + art_sys_101: 4.26908094e-13 + art_sys_102: -4.17022100e-26 + art_sys_103: 1.16982377e-20 + art_sys_104: 1.80305484e-13 + art_sys_105: 4.80598186e-25 + art_sys_106: -7.15433485e-14 + art_sys_107: 2.40899661e-18 + art_sys_108: 1.17700569e-21 + art_sys_109: -5.78469326e-20 + art_sys_110: 1.91048007e-25 + art_sys_111: -2.64879593e-14 + art_sys_112: 1.09327136e-21 + art_sys_113: -1.40537552e-25 + art_sys_114: 9.24225959e-15 + art_sys_115: 2.79593994e-23 + art_sys_116: -3.27887499e-20 + art_sys_117: -6.13162355e-27 + art_sys_118: 3.89134379e-15 + art_sys_119: 1.68163624e-24 + art_sys_120: -1.40685745e-15 + art_sys_121: 9.88004257e-22 + art_sys_122: -4.71964963e-16 + art_sys_123: -1.08794175e-22 + art_sys_124: 1.57081529e-16 + art_sys_125: -5.12177449e-17 + art_sys_126: -7.57467873e-22 + art_sys_127: -1.33587868e-17 + art_sys_128: 9.29673852e-23 + art_sys_129: -1.32417627e-23 + art_sys_130: 2.27885759e-22 + art_sys_131: 8.63514353e-23 + art_sys_132: -4.50731788e-18 + art_sys_133: -1.77255817e-23 + art_sys_134: -1.89112014e-21 + art_sys_135: -7.70454799e-19 + art_sys_136: -1.38708841e-21 + art_sys_137: 8.19503711e-20 + art_sys_138: 3.72985998e-22 + art_sys_139: 1.29943998e-21 + art_sys_140: 7.49024164e-21 + art_sys_141: -6.12584686e-22 + art_sys_142: -0.0 + art_sys_143: 1.90737757e-21 + art_sys_144: 5.59746697e-22 + art_sys_145: 2.96483557e-22 + art_sys_146: 1.61177288e-26 + art_sys_147: 2.11835882e-27 + art_sys_148: -1.02732036e-24 + art_sys_149: -2.42900021e-25 + art_sys_150: -2.11484697e-26 + art_sys_151: 1.09102745e-24 + art_sys_152: -7.08336545e-25 + art_sys_153: -3.69438073e-26 + art_sys_154: 2.49889969e-25 + art_sys_155: 4.67344888e-25 + art_sys_156: 1.67342459e-24 + art_sys_157: 1.79412898e-25 + art_sys_158: -0.0 + art_sys_159: 8.41959148e-23 + art_sys_160: 8.41959148e-23 + art_sys_161: -2.51894599e-24 + art_sys_162: 1.04502487e-36 + art_sys_163: 0.0 + art_sys_164: 6.68630798e-37 + art_sys_165: 7.02661864e-32 + art_sys_166: -1.47430396e-32 + art_sys_167: 3.15951675e-33 + art_sys_168: 1.56842782e-32 + art_sys_169: -6.40277557e-33 + art_sys_170: -9.31704348e-32 + art_sys_171: -5.35385126e-31 + art_sys_172: 5.79034890e-31 + art_sys_173: -1.91271009e-31 + art_sys_174: 4.76419701e-37 + art_sys_175: 3.98131459e-32 + art_sys_176: -4.38842700e-32 + art_sys_177: 7.71983466e-33 + art_sys_178: 5.98963996e-34 + art_sys_179: 9.67437904e-35 + art_sys_180: -4.93487375e-35 + art_sys_181: -1.62480190e-35 + art_sys_182: -3.63849206e-35 + art_sys_183: -2.49697208e-37 + art_sys_184: 1.01485279e-39 + art_sys_185: 1.79561342e-38 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -4895,191 +4895,191 @@ bins: RelativeStatFSR-: -1.92086065e+00 luminosity_uncertainty: 2.24647540e+02 uncorrelated_uncertainty: 86.4029 -- art_sys_1: 6.76188607e-30 - art_sys_2: -2.54637079e-18 - art_sys_3: -4.08972061e-19 +- art_sys_1: -7.13382227e-30 + art_sys_2: 4.08911288e-17 + art_sys_3: -4.08972051e-19 art_sys_4: 1.30492895e+01 - art_sys_5: -1.47489371e-15 - art_sys_6: 8.23637276e-17 + art_sys_5: -2.93050409e-15 + art_sys_6: 1.56905494e-16 art_sys_7: -1.69691686e+01 - art_sys_8: 1.22797639e-14 + art_sys_8: 1.19715023e-14 art_sys_9: 4.73628524e+01 - art_sys_10: 1.30708470e-16 - art_sys_11: -4.76378697e-16 + art_sys_10: 4.13486748e-16 + art_sys_11: 6.70440720e-16 art_sys_12: -1.14751957e+01 - art_sys_13: 1.97183640e-16 - art_sys_14: 4.10769516e-01 - art_sys_15: 1.05824724e-15 - art_sys_16: 2.65060630e-01 - art_sys_17: -4.89144981e-16 - art_sys_18: 1.96555912e-16 - art_sys_19: 1.86916404e-01 - art_sys_20: -2.69303302e-16 - art_sys_21: -6.65801099e-16 - art_sys_22: 3.35492493e-17 + art_sys_13: 1.67400865e-16 + art_sys_14: -4.10769516e-01 + art_sys_15: -9.89716961e-16 + art_sys_16: -2.65060630e-01 + art_sys_17: -2.54295235e-18 + art_sys_18: 2.58582782e-16 + art_sys_19: -1.86916404e-01 + art_sys_20: -6.98205293e-17 + art_sys_21: -7.40798950e-16 + art_sys_22: -1.38828950e-17 art_sys_23: 4.93383896e-02 - art_sys_24: -2.53110246e-15 - art_sys_25: 2.74527893e-04 + art_sys_24: -2.51571339e-15 + art_sys_25: -2.74527893e-04 art_sys_26: 1.18775915e-04 - art_sys_27: 5.63783030e-17 - art_sys_28: 2.45478990e-16 - art_sys_29: 3.47682878e-18 - art_sys_30: -5.14524319e-05 - art_sys_31: 9.00276766e-16 - art_sys_32: 7.20046269e-18 - art_sys_33: 4.30821300e-06 - art_sys_34: 1.98048140e-06 - art_sys_35: -6.09387494e-16 - art_sys_36: 1.79162638e-16 - art_sys_37: 9.07783381e-19 - art_sys_38: 2.74217538e-19 - art_sys_39: 1.34363183e-19 - art_sys_40: 6.17959870e-23 - art_sys_41: 1.82140731e-19 - art_sys_42: 6.44081842e-20 - art_sys_43: -1.65178661e-20 - art_sys_44: -2.02021323e-19 - art_sys_45: 1.81557845e-19 - art_sys_46: 2.30624357e-20 - art_sys_47: -6.61840362e-16 - art_sys_48: 5.04535563e-07 - art_sys_49: -6.04038150e-15 - art_sys_50: 2.65841933e-19 - art_sys_51: 1.14103335e-18 - art_sys_52: 1.41194379e-15 - art_sys_53: 3.86240912e-08 - art_sys_54: -1.47994337e-16 - art_sys_55: 1.79167842e-08 - art_sys_56: -6.03207996e-17 - art_sys_57: -1.06921357e-18 - art_sys_58: 2.35902303e-20 - art_sys_59: -3.78340209e-09 - art_sys_60: -6.02549573e-16 - art_sys_61: 5.42755528e-20 - art_sys_62: -1.77019975e-17 - art_sys_63: 2.58645335e-17 - art_sys_64: -7.71179511e-19 - art_sys_65: 2.20601254e-19 - art_sys_66: 1.23445303e-19 - art_sys_67: 1.05507257e-19 - art_sys_68: -1.56702879e-22 - art_sys_69: 9.94632939e-24 - art_sys_70: 9.80859455e-24 - art_sys_71: 1.19131623e-23 - art_sys_72: 1.59585630e-24 - art_sys_73: 1.17570378e-24 - art_sys_74: -3.57695443e-21 - art_sys_75: 5.25955835e-24 - art_sys_76: -1.76776268e-21 - art_sys_77: -5.54056780e-22 - art_sys_78: 2.30039428e-22 - art_sys_79: -1.81214024e-23 - art_sys_80: -4.56716199e-23 - art_sys_81: 4.77586785e-20 - art_sys_82: -1.07290071e-16 - art_sys_83: 5.28341220e-23 - art_sys_84: 1.04108293e-23 - art_sys_85: 1.62177738e-23 - art_sys_86: -4.15586343e-24 - art_sys_87: -3.30943916e-21 - art_sys_88: 1.70062880e-21 - art_sys_89: -9.22091442e-25 - art_sys_90: -4.32778073e-21 - art_sys_91: 2.18813181e-11 - art_sys_92: 5.85235538e-26 - art_sys_93: -2.17663049e-25 - art_sys_94: 1.55212786e-22 - art_sys_95: 3.41040605e-18 - art_sys_96: -8.96466090e-12 - art_sys_97: -2.17128487e-18 - art_sys_98: 5.27433836e-19 - art_sys_99: -6.14481113e-12 - art_sys_100: 5.33557785e-18 - art_sys_101: 3.05400527e-12 - art_sys_102: -4.01335443e-20 - art_sys_103: 1.35468346e-18 - art_sys_104: -1.54418032e-12 - art_sys_105: -1.46576901e-24 - art_sys_106: 6.54567668e-13 - art_sys_107: 4.00725380e-20 - art_sys_108: 7.57940081e-24 - art_sys_109: -9.08583075e-25 - art_sys_110: 5.74965520e-19 - art_sys_111: -2.60315121e-13 - art_sys_112: -9.69380160e-20 - art_sys_113: -8.29692535e-18 - art_sys_114: -6.45859089e-26 - art_sys_115: 9.62734945e-14 - art_sys_116: -2.58724505e-20 - art_sys_117: -1.79919249e-24 - art_sys_118: -3.36783059e-14 - art_sys_119: -1.14744584e-20 - art_sys_120: 1.16268775e-19 - art_sys_121: -2.49949013e-25 - art_sys_122: 1.41737201e-14 - art_sys_123: 1.60298194e-21 - art_sys_124: -5.12306404e-15 - art_sys_125: 5.25910806e-26 - art_sys_126: 3.34797538e-20 - art_sys_127: -6.55376078e-23 - art_sys_128: 1.72006348e-15 - art_sys_129: -4.14315499e-26 - art_sys_130: 6.56385066e-22 - art_sys_131: 7.27753428e-25 - art_sys_132: 5.72318464e-16 - art_sys_133: -1.25974587e-21 - art_sys_134: 5.25133659e-21 - art_sys_135: -1.87105870e-16 - art_sys_136: -1.27316902e-25 - art_sys_137: 4.90970668e-23 - art_sys_138: -4.86980634e-17 - art_sys_139: -1.06470045e-21 - art_sys_140: 1.09300852e-25 - art_sys_141: -3.30743339e-22 - art_sys_142: -1.64834459e-17 - art_sys_143: -3.03832877e-22 - art_sys_144: 5.18009499e-24 - art_sys_145: -2.77035690e-18 - art_sys_146: 1.69170135e-22 - art_sys_147: -1.91837125e-24 - art_sys_148: 6.52963888e-26 - art_sys_149: 2.80362925e-19 - art_sys_150: -8.06968039e-21 - art_sys_151: -4.36008545e-22 - art_sys_152: 7.62198833e-24 - art_sys_153: -1.11237896e-21 - art_sys_154: 6.89642708e-21 - art_sys_155: 4.07075818e-24 - art_sys_156: -0.0 - art_sys_157: 3.10846125e-21 - art_sys_158: -0.0 - art_sys_159: -4.94395983e-22 - art_sys_160: 6.43302801e-23 - art_sys_161: 5.53202107e-23 - art_sys_162: 5.53202107e-23 - art_sys_163: 5.71130454e-23 - art_sys_164: 5.71130454e-23 - art_sys_165: -6.44217885e-37 - art_sys_166: 2.13831877e-37 - art_sys_167: 0.0 - art_sys_168: 4.38654399e-32 - art_sys_169: -1.36763124e-31 - art_sys_170: 5.52437472e-32 - art_sys_171: 3.14423047e-30 - art_sys_172: -3.18332670e-31 - art_sys_173: -2.70992982e-32 - art_sys_174: 2.91740630e-32 - art_sys_175: -1.68074724e-34 - art_sys_176: 3.62753039e-34 - art_sys_177: -3.41630893e-36 - art_sys_178: -2.44429889e-36 - art_sys_179: -1.24038776e-36 - art_sys_180: -1.28582223e-35 - art_sys_181: -1.36614584e-35 - art_sys_182: -5.12060838e-35 - art_sys_183: -1.78396247e-36 - art_sys_184: 1.02647065e-38 - art_sys_185: 2.38964124e-39 + art_sys_27: -5.64170855e-17 + art_sys_28: 2.50224757e-16 + art_sys_29: 2.86813925e-16 + art_sys_30: -8.50139011e-18 + art_sys_31: -4.50484373e-18 + art_sys_32: 6.12598075e-18 + art_sys_33: -2.47584718e-19 + art_sys_34: -3.21121210e-19 + art_sys_35: 1.41676718e-20 + art_sys_36: 2.53941960e-17 + art_sys_37: -5.14524319e-05 + art_sys_38: 6.23235873e-19 + art_sys_39: -8.97137371e-16 + art_sys_40: 2.58589209e-16 + art_sys_41: -4.30821300e-06 + art_sys_42: 1.18644133e-18 + art_sys_43: -1.98048140e-06 + art_sys_44: -2.12841662e-19 + art_sys_45: -6.40421795e-16 + art_sys_46: -5.50736370e-18 + art_sys_47: -5.18394702e-20 + art_sys_48: 5.04535562e-07 + art_sys_49: -5.38428614e-16 + art_sys_50: 5.25069654e-19 + art_sys_51: -2.07358951e-18 + art_sys_52: 3.86240908e-08 + art_sys_53: 3.07646631e-16 + art_sys_54: -1.16282367e-17 + art_sys_55: -1.79167842e-08 + art_sys_56: -1.19766829e-16 + art_sys_57: 8.87077193e-19 + art_sys_58: 7.21723984e-19 + art_sys_59: 1.73581367e-19 + art_sys_60: 4.21065072e-19 + art_sys_61: 6.61759899e-20 + art_sys_62: -5.08163888e-21 + art_sys_63: 1.10336235e-21 + art_sys_64: 2.98176064e-22 + art_sys_65: -4.81626733e-22 + art_sys_66: -9.54511851e-21 + art_sys_67: 2.23682666e-23 + art_sys_68: 3.37909299e-23 + art_sys_69: 4.68219326e-18 + art_sys_70: -3.78340197e-09 + art_sys_71: 6.72603447e-17 + art_sys_72: 1.98204378e-17 + art_sys_73: -6.55946419e-19 + art_sys_74: -1.02342686e-16 + art_sys_75: -3.51912717e-22 + art_sys_76: 1.46790219e-21 + art_sys_77: -1.16171753e-21 + art_sys_78: 1.50048546e-22 + art_sys_79: 1.98441584e-20 + art_sys_80: -1.26325767e-16 + art_sys_81: 1.69241353e-22 + art_sys_82: 3.24825750e-23 + art_sys_83: -2.13770098e-23 + art_sys_84: -8.56835191e-20 + art_sys_85: -3.45659226e-23 + art_sys_86: -4.33856557e-24 + art_sys_87: -2.71792829e-22 + art_sys_88: 3.26100858e-24 + art_sys_89: -8.36694628e-26 + art_sys_90: -2.18812217e-11 + art_sys_91: 8.96454378e-12 + art_sys_92: 2.15779341e-19 + art_sys_93: 2.62627925e-18 + art_sys_94: -7.09782005e-19 + art_sys_95: -6.14482034e-12 + art_sys_96: -3.44478675e-24 + art_sys_97: -7.98844089e-19 + art_sys_98: 3.05400643e-12 + art_sys_99: -5.07966275e-18 + art_sys_100: 4.34265533e-20 + art_sys_101: -1.54421827e-12 + art_sys_102: 1.71577743e-25 + art_sys_103: -4.25065019e-20 + art_sys_104: -6.54614618e-13 + art_sys_105: -1.70069330e-24 + art_sys_106: 2.60316887e-13 + art_sys_107: -8.56194643e-18 + art_sys_108: -4.28308422e-21 + art_sys_109: 2.10566847e-19 + art_sys_110: -7.06723071e-25 + art_sys_111: 9.62748617e-14 + art_sys_112: -3.97700151e-21 + art_sys_113: 4.44404310e-25 + art_sys_114: -3.36685009e-14 + art_sys_115: -1.13792626e-22 + art_sys_116: 1.19555731e-19 + art_sys_117: 1.83334720e-26 + art_sys_118: -1.41650429e-14 + art_sys_119: -7.32472736e-24 + art_sys_120: 5.12469549e-15 + art_sys_121: -3.61774054e-21 + art_sys_122: 1.71945691e-15 + art_sys_123: 3.96551362e-22 + art_sys_124: -5.72273023e-16 + art_sys_125: 1.86642057e-16 + art_sys_126: 2.74384351e-21 + art_sys_127: 4.86780010e-17 + art_sys_128: -3.38801740e-22 + art_sys_129: 4.82523836e-23 + art_sys_130: -8.30500171e-22 + art_sys_131: -3.14728227e-22 + art_sys_132: 1.64259330e-17 + art_sys_133: 6.48822444e-23 + art_sys_134: 6.89193494e-21 + art_sys_135: 2.80786947e-18 + art_sys_136: 5.05508817e-21 + art_sys_137: -2.98664706e-19 + art_sys_138: -1.35930623e-21 + art_sys_139: -4.73568685e-21 + art_sys_140: -2.85829130e-20 + art_sys_141: 2.23273162e-21 + art_sys_142: 0.0 + art_sys_143: -6.95108559e-21 + art_sys_144: -2.03974849e-21 + art_sys_145: -1.08076910e-21 + art_sys_146: -5.60029155e-26 + art_sys_147: -6.32638778e-27 + art_sys_148: 3.74104500e-24 + art_sys_149: 8.78368899e-25 + art_sys_150: 7.83428289e-26 + art_sys_151: -3.97467250e-24 + art_sys_152: 2.57948068e-24 + art_sys_153: 1.34141520e-25 + art_sys_154: -9.10586285e-25 + art_sys_155: -1.70348958e-24 + art_sys_156: -6.09899231e-24 + art_sys_157: -6.54060504e-25 + art_sys_158: 0.0 + art_sys_159: -3.06836713e-22 + art_sys_160: -3.06836713e-22 + art_sys_161: 9.18127721e-24 + art_sys_162: -3.80890012e-36 + art_sys_163: -0.0 + art_sys_164: -2.43699188e-36 + art_sys_165: -2.41916146e-31 + art_sys_166: 4.56685230e-32 + art_sys_167: -7.85548823e-33 + art_sys_168: -5.42963377e-32 + art_sys_169: 3.81442941e-32 + art_sys_170: 2.74294556e-31 + art_sys_171: 1.72930206e-30 + art_sys_172: -6.87906970e-31 + art_sys_173: 4.04167194e-31 + art_sys_174: -1.73652931e-36 + art_sys_175: -1.26899451e-31 + art_sys_176: 1.50372108e-31 + art_sys_177: -2.60934354e-32 + art_sys_178: -1.93472610e-33 + art_sys_179: -3.18642939e-34 + art_sys_180: 1.73065305e-34 + art_sys_181: 4.54369545e-35 + art_sys_182: 1.10841069e-34 + art_sys_183: 8.50508479e-37 + art_sys_184: -3.54855567e-39 + art_sys_185: -6.54482605e-38 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -5186,191 +5186,191 @@ bins: RelativeStatFSR-: -9.31152783e-01 luminosity_uncertainty: 99.26956 uncorrelated_uncertainty: 38.1806 -- art_sys_1: 5.94465810e-31 - art_sys_2: -2.23812745e-19 - art_sys_3: -7.41855728e-20 +- art_sys_1: -6.26894662e-31 + art_sys_2: 3.59411749e-18 + art_sys_3: -7.41855719e-20 art_sys_4: 1.14696466e+00 - art_sys_5: 1.87579354e-16 - art_sys_6: 7.29860950e-18 + art_sys_5: 6.01557227e-17 + art_sys_6: 1.38713173e-17 art_sys_7: 2.89837769e+00 - art_sys_8: 1.37496359e-15 + art_sys_8: 1.44304104e-15 art_sys_9: 2.25816673e+00 - art_sys_10: -2.63387805e-17 - art_sys_11: -7.85680553e-16 + art_sys_10: 6.15913483e-18 + art_sys_11: -6.56625926e-16 art_sys_12: -2.83752156e+00 - art_sys_13: -1.25134702e-15 - art_sys_14: -4.35183622e+00 - art_sys_15: -3.04546578e-15 - art_sys_16: -8.49440649e-01 - art_sys_17: -1.73328736e-16 - art_sys_18: -1.10347818e-15 - art_sys_19: -1.02874539e+00 - art_sys_20: 1.06870595e-16 - art_sys_21: 8.06904753e-16 - art_sys_22: 5.78532459e-17 + art_sys_13: 7.82789716e-17 + art_sys_14: 4.35183622e+00 + art_sys_15: 1.44449985e-15 + art_sys_16: 8.49440649e-01 + art_sys_17: -7.27813569e-17 + art_sys_18: -1.26160417e-15 + art_sys_19: 1.02874539e+00 + art_sys_20: -2.55976591e-17 + art_sys_21: 1.41155228e-15 + art_sys_22: 3.56779101e-17 art_sys_23: -2.59103126e-01 - art_sys_24: 8.67693253e-15 - art_sys_25: -1.49271725e-03 + art_sys_24: 8.61357730e-15 + art_sys_25: 1.49271725e-03 art_sys_26: -7.50764047e-04 - art_sys_27: -2.16820224e-16 - art_sys_28: -1.34768756e-15 - art_sys_29: 1.32764098e-17 - art_sys_30: 2.98182053e-04 - art_sys_31: -4.47753691e-15 - art_sys_32: -1.58288092e-17 - art_sys_33: -2.75212674e-05 - art_sys_34: -1.21436058e-05 - art_sys_35: 2.96379114e-15 - art_sys_36: -1.55098302e-17 - art_sys_37: 1.36673953e-18 - art_sys_38: 1.28516628e-19 - art_sys_39: -2.51395806e-19 - art_sys_40: 1.28774468e-19 - art_sys_41: -5.82566560e-19 - art_sys_42: -6.01246652e-19 - art_sys_43: -7.55059663e-19 - art_sys_44: -5.47709542e-19 - art_sys_45: 3.73003784e-19 - art_sys_46: 8.16260232e-20 - art_sys_47: 4.04211732e-15 - art_sys_48: -3.08287719e-06 - art_sys_49: 3.69094908e-14 - art_sys_50: -2.56797269e-20 - art_sys_51: -9.59493508e-20 - art_sys_52: -8.67779925e-15 - art_sys_53: -2.52964689e-07 - art_sys_54: 9.61687241e-16 - art_sys_55: -1.08805181e-07 - art_sys_56: 3.86048980e-16 - art_sys_57: 2.63700627e-21 - art_sys_58: 4.24022555e-21 - art_sys_59: 2.36754072e-08 - art_sys_60: 3.77663076e-15 - art_sys_61: 5.33346628e-21 - art_sys_62: 1.11756775e-16 - art_sys_63: -1.55045439e-16 - art_sys_64: 6.33371608e-18 - art_sys_65: -1.87151697e-18 - art_sys_66: -4.27703574e-19 - art_sys_67: -6.73355470e-19 - art_sys_68: 1.38105801e-21 - art_sys_69: -1.78360195e-22 - art_sys_70: -1.48606767e-22 - art_sys_71: -8.47648604e-23 - art_sys_72: -5.37083112e-24 - art_sys_73: -9.01554695e-24 - art_sys_74: 9.66897352e-20 - art_sys_75: -3.08852080e-23 - art_sys_76: 9.30248768e-21 - art_sys_77: 3.09033388e-21 - art_sys_78: -1.20597127e-21 - art_sys_79: 1.32866999e-22 - art_sys_80: 2.29859778e-22 - art_sys_81: -2.61882517e-19 - art_sys_82: 5.69731684e-16 - art_sys_83: -2.55524670e-22 - art_sys_84: -4.86794037e-23 - art_sys_85: -8.49595176e-23 - art_sys_86: 2.10647069e-23 - art_sys_87: 1.80963561e-20 - art_sys_88: -9.43773882e-21 - art_sys_89: 4.11261968e-24 - art_sys_90: 2.43082770e-20 - art_sys_91: -1.08227015e-10 - art_sys_92: -1.97826053e-25 - art_sys_93: 1.19162327e-24 - art_sys_94: -8.70842588e-22 - art_sys_95: -1.84963918e-17 - art_sys_96: 4.91616963e-11 - art_sys_97: 1.66700320e-17 - art_sys_98: -2.72340858e-18 - art_sys_99: 3.35318217e-11 - art_sys_100: -2.89601162e-17 - art_sys_101: -1.65459164e-11 - art_sys_102: 2.12617539e-19 - art_sys_103: -7.45812014e-18 - art_sys_104: 8.52002888e-12 - art_sys_105: 8.17182209e-24 - art_sys_106: -3.60780087e-12 - art_sys_107: -2.24586339e-19 - art_sys_108: -4.26932861e-23 - art_sys_109: 5.10798592e-24 - art_sys_110: -3.21613080e-18 - art_sys_111: 1.44409805e-12 - art_sys_112: 5.40982806e-19 - art_sys_113: 4.55495738e-17 - art_sys_114: 3.70136081e-25 - art_sys_115: -5.35910125e-13 - art_sys_116: 1.45053323e-19 - art_sys_117: 1.00829352e-23 - art_sys_118: 1.87772569e-13 - art_sys_119: 6.45349921e-20 - art_sys_120: -6.52613888e-19 - art_sys_121: 1.43584305e-24 - art_sys_122: -7.92520966e-14 - art_sys_123: -8.97035168e-21 - art_sys_124: 2.86719499e-14 - art_sys_125: -3.01226761e-25 - art_sys_126: -1.87939687e-19 - art_sys_127: 3.69043361e-22 - art_sys_128: -9.64209797e-15 - art_sys_129: 2.27016917e-25 - art_sys_130: -3.68893251e-21 - art_sys_131: -4.07802460e-24 - art_sys_132: -3.21072793e-15 - art_sys_133: 7.08031986e-21 - art_sys_134: -2.95203100e-20 - art_sys_135: 1.05023211e-15 - art_sys_136: 7.17771319e-25 - art_sys_137: -2.76014069e-22 - art_sys_138: 2.73513683e-16 - art_sys_139: 5.98371365e-21 - art_sys_140: -6.14313665e-25 - art_sys_141: 1.85802056e-21 - art_sys_142: 9.25955055e-17 - art_sys_143: 1.70713838e-21 - art_sys_144: -2.90962078e-23 - art_sys_145: 1.55678148e-17 - art_sys_146: -9.50627769e-22 - art_sys_147: 1.07799745e-23 - art_sys_148: -3.65617794e-25 - art_sys_149: -1.57583693e-18 - art_sys_150: 4.53569971e-20 - art_sys_151: 2.45060109e-21 - art_sys_152: -4.28387482e-23 - art_sys_153: 6.25194047e-21 - art_sys_154: -3.80574287e-20 - art_sys_155: -2.28778478e-23 - art_sys_156: 0.0 - art_sys_157: -1.74731471e-20 - art_sys_158: 0.0 - art_sys_159: 2.77874577e-21 - art_sys_160: -3.61611562e-22 - art_sys_161: -3.10912776e-22 - art_sys_162: -3.10912776e-22 - art_sys_163: -3.21000056e-22 - art_sys_164: -3.21000056e-22 - art_sys_165: 3.62076566e-36 - art_sys_166: -1.20182100e-36 - art_sys_167: -0.0 - art_sys_168: -2.53374122e-31 - art_sys_169: 8.02931313e-31 - art_sys_170: -3.34343339e-31 - art_sys_171: -1.82417889e-29 - art_sys_172: 1.86830431e-30 - art_sys_173: 1.49743980e-31 - art_sys_174: -1.63437340e-31 - art_sys_175: 1.83915316e-33 - art_sys_176: -2.16601314e-33 - art_sys_177: 1.76020970e-35 - art_sys_178: 1.14785374e-35 - art_sys_179: 6.97076994e-36 - art_sys_180: 7.22693257e-35 - art_sys_181: 9.90794168e-35 - art_sys_182: 4.50023428e-34 - art_sys_183: 9.78178911e-36 - art_sys_184: -6.86207323e-38 - art_sys_185: -1.34879503e-38 + art_sys_27: 2.20059064e-16 + art_sys_28: -1.34194107e-15 + art_sys_29: 3.81991729e-16 + art_sys_30: 5.85596340e-17 + art_sys_31: 2.19448004e-18 + art_sys_32: -3.56289757e-17 + art_sys_33: 1.31376682e-18 + art_sys_34: 9.52012260e-19 + art_sys_35: -9.63381843e-19 + art_sys_36: -1.04262683e-16 + art_sys_37: 2.98182053e-04 + art_sys_38: -2.59078485e-19 + art_sys_39: 4.47095533e-15 + art_sys_40: -1.62388579e-15 + art_sys_41: 2.75212674e-05 + art_sys_42: 5.97252128e-19 + art_sys_43: 1.21436058e-05 + art_sys_44: 5.21844474e-20 + art_sys_45: 3.14933010e-15 + art_sys_46: 3.44528518e-17 + art_sys_47: 7.95719277e-21 + art_sys_48: -3.08287718e-06 + art_sys_49: 3.30721205e-15 + art_sys_50: -3.58389910e-20 + art_sys_51: 1.18233659e-19 + art_sys_52: -2.52964687e-07 + art_sys_53: -1.82943058e-15 + art_sys_54: 7.03321639e-17 + art_sys_55: 1.08805181e-07 + art_sys_56: 7.18228315e-16 + art_sys_57: -6.00208964e-18 + art_sys_58: -4.20018577e-18 + art_sys_59: -9.52838497e-19 + art_sys_60: 3.31392874e-18 + art_sys_61: -3.74623446e-19 + art_sys_62: 2.78744882e-20 + art_sys_63: -7.86233562e-21 + art_sys_64: -1.37053086e-21 + art_sys_65: 3.02851192e-21 + art_sys_66: 9.68274044e-21 + art_sys_67: -1.42420250e-22 + art_sys_68: -2.18030585e-22 + art_sys_69: -2.33576073e-17 + art_sys_70: 2.36754065e-08 + art_sys_71: -3.55214189e-16 + art_sys_72: -1.34979250e-16 + art_sys_73: 3.54493454e-18 + art_sys_74: 5.49446240e-16 + art_sys_75: 1.96885321e-21 + art_sys_76: -6.77672433e-21 + art_sys_77: 6.26802098e-21 + art_sys_78: -8.49422571e-22 + art_sys_79: -9.82955240e-20 + art_sys_80: 6.28937437e-16 + art_sys_81: -9.28111750e-22 + art_sys_82: -1.55363843e-22 + art_sys_83: 1.04633129e-22 + art_sys_84: 4.63852290e-19 + art_sys_85: 1.83349795e-22 + art_sys_86: 2.42942603e-23 + art_sys_87: 1.49836895e-21 + art_sys_88: -1.89046202e-23 + art_sys_89: 4.71661840e-25 + art_sys_90: 1.08226558e-10 + art_sys_91: -4.91611094e-11 + art_sys_92: -1.19066691e-18 + art_sys_93: -1.20137590e-17 + art_sys_94: 3.90535029e-18 + art_sys_95: 3.35318714e-11 + art_sys_96: 1.98851919e-23 + art_sys_97: 4.42165530e-18 + art_sys_98: -1.65459226e-11 + art_sys_99: 2.99616650e-17 + art_sys_100: -2.42158380e-19 + art_sys_101: 8.52023804e-12 + art_sys_102: -9.09487653e-25 + art_sys_103: 2.38510142e-19 + art_sys_104: 3.60805992e-12 + art_sys_105: 9.57235707e-24 + art_sys_106: -1.44410822e-12 + art_sys_107: 4.66119177e-17 + art_sys_108: 2.39890715e-20 + art_sys_109: -1.17509700e-18 + art_sys_110: 3.86887237e-24 + art_sys_111: -5.35917592e-13 + art_sys_112: 2.23441268e-20 + art_sys_113: -2.74148010e-24 + art_sys_114: 1.87717736e-13 + art_sys_115: 6.92153971e-22 + art_sys_116: -6.69948948e-19 + art_sys_117: -1.00679646e-25 + art_sys_118: 7.92037799e-14 + art_sys_119: 3.34258919e-23 + art_sys_120: -2.86811382e-14 + art_sys_121: 2.02602808e-20 + art_sys_122: -9.63870494e-15 + art_sys_123: -2.22863859e-21 + art_sys_124: 3.21047629e-15 + art_sys_125: -1.04763075e-15 + art_sys_126: -1.54295595e-20 + art_sys_127: -2.73401508e-16 + art_sys_128: 1.90487685e-21 + art_sys_129: -2.71273917e-22 + art_sys_130: 4.66830440e-21 + art_sys_131: 1.76878480e-21 + art_sys_132: -9.22725543e-17 + art_sys_133: -3.61749619e-22 + art_sys_134: -3.87258165e-20 + art_sys_135: -1.57786033e-17 + art_sys_136: -2.84074270e-20 + art_sys_137: 1.67869029e-18 + art_sys_138: 7.64007509e-21 + art_sys_139: 2.66166948e-20 + art_sys_140: 1.39412711e-19 + art_sys_141: -1.25482692e-20 + art_sys_142: -0.0 + art_sys_143: 3.90626838e-20 + art_sys_144: 1.14635169e-20 + art_sys_145: 6.07366232e-21 + art_sys_146: 3.14667668e-25 + art_sys_147: 4.60232034e-26 + art_sys_148: -2.10310518e-23 + art_sys_149: -4.97174067e-24 + art_sys_150: -4.43962279e-25 + art_sys_151: 2.23422126e-23 + art_sys_152: -1.44922383e-23 + art_sys_153: -7.54663347e-25 + art_sys_154: 5.11882720e-24 + art_sys_155: 9.57405276e-24 + art_sys_156: 3.42778260e-23 + art_sys_157: 3.67537673e-24 + art_sys_158: -0.0 + art_sys_159: 1.72468934e-21 + art_sys_160: 1.72468934e-21 + art_sys_161: -5.16061571e-23 + art_sys_162: 2.14090006e-35 + art_sys_163: 0.0 + art_sys_164: 1.36977768e-35 + art_sys_165: 1.49480261e-30 + art_sys_166: -2.99071104e-31 + art_sys_167: 6.43232065e-32 + art_sys_168: 3.09324635e-31 + art_sys_169: -1.73865921e-31 + art_sys_170: -1.69666711e-30 + art_sys_171: -1.01772347e-29 + art_sys_172: 6.83541144e-30 + art_sys_173: -3.13969902e-30 + art_sys_174: 9.75931433e-36 + art_sys_175: 7.16627035e-31 + art_sys_176: -8.62627134e-31 + art_sys_177: 1.51720504e-31 + art_sys_178: 1.13328989e-32 + art_sys_179: 1.76742563e-33 + art_sys_180: -9.78222510e-34 + art_sys_181: -3.06653231e-34 + art_sys_182: -6.63078038e-34 + art_sys_183: -4.80414616e-36 + art_sys_184: 1.96425984e-38 + art_sys_185: 3.67919055e-37 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -5477,191 +5477,191 @@ bins: RelativeStatFSR-: -4.53259919e-01 luminosity_uncertainty: 4.41487800e+01 uncorrelated_uncertainty: 16.9803 -- art_sys_1: -2.69541071e-31 - art_sys_2: 1.01498400e-19 - art_sys_3: 1.98328450e-20 +- art_sys_1: 2.84342190e-31 + art_sys_2: -1.62992135e-18 + art_sys_3: 1.98328446e-20 art_sys_4: -5.20144986e-01 - art_sys_5: 5.42095151e-17 - art_sys_6: -3.27844416e-18 + art_sys_5: 1.12252064e-16 + art_sys_6: -6.27321641e-18 art_sys_7: 1.00579421e+00 - art_sys_8: -9.03434947e-16 + art_sys_8: -8.80430433e-16 art_sys_9: -2.41574390e+00 - art_sys_10: -2.43318980e-18 - art_sys_11: 2.66732011e-15 + art_sys_10: -2.19967570e-17 + art_sys_11: 2.63169741e-15 art_sys_12: 6.61875562e-01 - art_sys_13: -7.66837929e-16 - art_sys_14: -2.60188112e+00 - art_sys_15: 4.63140609e-15 - art_sys_16: 2.10082911e+00 - art_sys_17: 2.62830270e-17 - art_sys_18: 4.81370336e-16 - art_sys_19: 1.21418133e+00 - art_sys_20: -2.48021625e-16 - art_sys_21: -3.34236859e-16 - art_sys_22: -7.20648657e-17 + art_sys_13: -1.07988272e-17 + art_sys_14: 2.60188112e+00 + art_sys_15: -3.45915541e-15 + art_sys_16: -2.10082911e+00 + art_sys_17: 4.49879903e-18 + art_sys_18: 1.14533823e-15 + art_sys_19: -1.21418133e+00 + art_sys_20: 8.77625828e-17 + art_sys_21: -4.89522880e-16 + art_sys_22: -6.11885743e-17 art_sys_23: 5.29279814e-01 - art_sys_24: -1.01243667e-14 - art_sys_25: 3.47482996e-03 + art_sys_24: -9.98426765e-15 + art_sys_25: -3.47482996e-03 art_sys_26: 1.93114766e-03 - art_sys_27: 3.00978523e-16 - art_sys_28: 2.97457910e-15 - art_sys_29: -1.32484576e-18 - art_sys_30: -9.09939592e-04 - art_sys_31: 1.00571266e-14 - art_sys_32: 1.76784713e-17 - art_sys_33: 8.13484627e-05 - art_sys_34: 3.93824473e-05 - art_sys_35: -6.52063784e-15 - art_sys_36: 1.62440305e-16 - art_sys_37: -4.92709068e-18 - art_sys_38: -5.05548013e-20 - art_sys_39: 7.94095093e-19 - art_sys_40: -3.94911633e-19 - art_sys_41: 1.68472842e-18 - art_sys_42: 1.14498533e-18 - art_sys_43: 1.78199407e-18 - art_sys_44: 3.56497608e-19 - art_sys_45: -2.76719784e-19 - art_sys_46: -3.03324279e-19 - art_sys_47: -1.34835454e-14 + art_sys_27: -2.95061385e-16 + art_sys_28: 2.97703271e-15 + art_sys_29: -5.02162934e-16 + art_sys_30: -1.22621395e-16 + art_sys_31: -1.08811614e-17 + art_sys_32: 1.08493107e-16 + art_sys_33: -4.33991945e-18 + art_sys_34: -2.66107587e-18 + art_sys_35: 4.23590392e-18 + art_sys_36: 3.53521908e-16 + art_sys_37: -9.09939592e-04 + art_sys_38: 1.18311576e-18 + art_sys_39: -1.00539443e-14 + art_sys_40: 4.76436180e-15 + art_sys_41: -8.13484627e-05 + art_sys_42: 2.56293439e-18 + art_sys_43: -3.93824473e-05 + art_sys_44: -8.52608523e-19 + art_sys_45: -7.11888441e-15 + art_sys_46: -1.11577284e-16 + art_sys_47: -1.41482371e-19 art_sys_48: 1.02849355e-05 - art_sys_49: -1.23135937e-13 - art_sys_50: 1.04428259e-19 - art_sys_51: 5.23774791e-19 - art_sys_52: 2.92078413e-14 - art_sys_53: 8.43660062e-07 - art_sys_54: -3.22463438e-15 - art_sys_55: 3.84869500e-07 - art_sys_56: -1.33674905e-15 - art_sys_57: -3.03472004e-19 - art_sys_58: 1.03854967e-21 - art_sys_59: -8.33331591e-08 - art_sys_60: -1.32587524e-14 - art_sys_61: -3.47684690e-21 - art_sys_62: -3.61831833e-16 - art_sys_63: 5.88392111e-16 - art_sys_64: -1.90373948e-17 - art_sys_65: 5.38610346e-18 - art_sys_66: 1.36484669e-18 - art_sys_67: 2.01868192e-18 - art_sys_68: -3.20171499e-21 - art_sys_69: 4.22302782e-22 - art_sys_70: 5.82092082e-22 - art_sys_71: 2.35913104e-22 - art_sys_72: 3.47358966e-23 - art_sys_73: 2.67316956e-23 - art_sys_74: -3.83118921e-19 - art_sys_75: 9.82413413e-23 - art_sys_76: -4.30282361e-20 - art_sys_77: -1.25041854e-20 - art_sys_78: 5.25795419e-21 - art_sys_79: -3.80851510e-22 - art_sys_80: -9.57442198e-22 - art_sys_81: 1.03481168e-18 - art_sys_82: -2.42990501e-15 - art_sys_83: 1.33019544e-21 - art_sys_84: 2.95348837e-22 - art_sys_85: 4.00949523e-22 - art_sys_86: -9.81627736e-23 - art_sys_87: -7.65753671e-20 - art_sys_88: 3.95636519e-20 - art_sys_89: -2.58745597e-23 - art_sys_90: -1.01081426e-19 - art_sys_91: 5.39782715e-10 - art_sys_92: 1.69608127e-24 - art_sys_93: -4.96368087e-24 - art_sys_94: 3.61348675e-21 - art_sys_95: 8.11673172e-17 - art_sys_96: -1.94245954e-10 - art_sys_97: -4.65597691e-17 - art_sys_98: 1.20025664e-17 - art_sys_99: -1.45500170e-10 - art_sys_100: 1.23317249e-16 - art_sys_101: 7.05405738e-11 - art_sys_102: -9.12841915e-19 - art_sys_103: 3.13731716e-17 - art_sys_104: -3.59342777e-11 - art_sys_105: -3.35502287e-23 - art_sys_106: 1.52344645e-11 - art_sys_107: 9.34416909e-19 - art_sys_108: 1.73371618e-22 - art_sys_109: -2.09084012e-23 - art_sys_110: 1.34115980e-17 - art_sys_111: -6.05825376e-12 - art_sys_112: -2.25728300e-18 - art_sys_113: -1.94713108e-16 - art_sys_114: -1.43320775e-24 - art_sys_115: 2.24467852e-12 - art_sys_116: -6.03692791e-19 - art_sys_117: -4.21189435e-23 - art_sys_118: -7.84930656e-13 - art_sys_119: -2.68437440e-19 - art_sys_120: 2.71440194e-18 - art_sys_121: -4.41985797e-24 - art_sys_122: 3.30594786e-13 - art_sys_123: 3.72643677e-20 - art_sys_124: -1.19515595e-13 - art_sys_125: 1.09671600e-24 - art_sys_126: 7.81427233e-19 - art_sys_127: -1.53246642e-21 - art_sys_128: 4.01320824e-14 - art_sys_129: -1.00559175e-24 - art_sys_130: 1.53186845e-20 - art_sys_131: 1.69197779e-23 - art_sys_132: 1.33567320e-14 - art_sys_133: -2.94055895e-20 - art_sys_134: 1.22594386e-19 - art_sys_135: -4.36655845e-15 - art_sys_136: -3.00015561e-24 - art_sys_137: 1.14640547e-21 - art_sys_138: -1.13664229e-15 - art_sys_139: -2.48530371e-20 - art_sys_140: 2.55084012e-24 - art_sys_141: -7.72067220e-21 - art_sys_142: -3.84739060e-16 - art_sys_143: -7.09193434e-21 - art_sys_144: 1.20904343e-22 - art_sys_145: -6.46651064e-17 - art_sys_146: 3.94858129e-21 - art_sys_147: -4.47795772e-23 - art_sys_148: 1.52385559e-24 - art_sys_149: 6.54425962e-18 - art_sys_150: -1.88362891e-19 - art_sys_151: -1.01783050e-20 - art_sys_152: 1.77911672e-22 - art_sys_153: -2.59657764e-20 - art_sys_154: 1.64531325e-19 - art_sys_155: 9.50124135e-23 - art_sys_156: -0.0 - art_sys_157: 7.25754033e-20 - art_sys_158: -0.0 - art_sys_159: -1.15411231e-20 - art_sys_160: 1.50195240e-21 - art_sys_161: 1.29128514e-21 - art_sys_162: 1.29128514e-21 - art_sys_163: 1.33320921e-21 - art_sys_164: 1.33320921e-21 - art_sys_165: -1.50380757e-35 - art_sys_166: 4.99150359e-36 - art_sys_167: 0.0 - art_sys_168: 7.50200816e-31 - art_sys_169: -2.45091144e-30 - art_sys_170: 1.02429534e-30 - art_sys_171: 5.51988887e-29 - art_sys_172: -5.67560490e-30 - art_sys_173: -4.57713797e-31 - art_sys_174: 4.96561839e-31 - art_sys_175: -5.92587999e-33 - art_sys_176: 6.62480001e-33 - art_sys_177: -5.87454312e-35 - art_sys_178: -3.06522988e-35 - art_sys_179: -2.89490912e-35 - art_sys_180: -3.00159233e-34 - art_sys_181: -6.90973163e-35 - art_sys_182: -1.27927573e-33 - art_sys_183: -2.91610167e-35 - art_sys_184: 2.14503035e-37 - art_sys_185: 5.57201017e-38 + art_sys_49: -1.10331746e-14 + art_sys_50: -1.27082114e-19 + art_sys_51: 4.43918441e-19 + art_sys_52: 8.43660054e-07 + art_sys_53: 5.84311669e-15 + art_sys_54: -2.49713964e-16 + art_sys_55: -3.84869501e-07 + art_sys_56: -2.34632819e-15 + art_sys_57: 1.82451934e-17 + art_sys_58: 1.27929294e-17 + art_sys_59: 2.94062626e-18 + art_sys_60: -1.23429653e-17 + art_sys_61: 1.12327458e-18 + art_sys_62: -8.03244065e-20 + art_sys_63: 2.93941484e-20 + art_sys_64: 3.53044339e-21 + art_sys_65: -1.08307918e-20 + art_sys_66: -3.10255963e-20 + art_sys_67: 5.18333822e-22 + art_sys_68: 8.18477056e-22 + art_sys_69: 1.16580654e-16 + art_sys_70: -8.33331567e-08 + art_sys_71: 1.61948905e-15 + art_sys_72: 4.57089203e-16 + art_sys_73: -1.51177749e-17 + art_sys_74: -2.44531104e-15 + art_sys_75: -6.00697180e-21 + art_sys_76: 3.83425194e-20 + art_sys_77: -2.71491196e-20 + art_sys_78: 3.79059000e-21 + art_sys_79: 4.87960616e-19 + art_sys_80: -3.10553190e-15 + art_sys_81: 3.84626519e-21 + art_sys_82: 8.06030879e-22 + art_sys_83: -5.31605939e-22 + art_sys_84: -1.89479899e-18 + art_sys_85: -8.16863587e-22 + art_sys_86: -9.45870203e-23 + art_sys_87: -5.78817406e-21 + art_sys_88: 4.43148479e-23 + art_sys_89: -9.59019600e-24 + art_sys_90: -5.39780174e-10 + art_sys_91: 1.94243084e-10 + art_sys_92: 5.02042342e-18 + art_sys_93: 6.65582680e-17 + art_sys_94: -1.65040075e-17 + art_sys_95: -1.45500379e-10 + art_sys_96: -8.68508901e-23 + art_sys_97: -1.86043214e-17 + art_sys_98: 7.05405959e-11 + art_sys_99: -1.11160363e-16 + art_sys_100: 1.01446874e-18 + art_sys_101: -3.59351609e-11 + art_sys_102: 8.43898777e-24 + art_sys_103: -9.91546656e-19 + art_sys_104: -1.52355575e-11 + art_sys_105: -3.42832533e-23 + art_sys_106: 6.05829658e-12 + art_sys_107: -2.02850199e-16 + art_sys_108: -9.96208777e-20 + art_sys_109: 4.91783292e-18 + art_sys_110: -1.70661824e-23 + art_sys_111: 2.24471000e-12 + art_sys_112: -9.27453080e-20 + art_sys_113: 8.37177981e-24 + art_sys_114: -7.84702332e-13 + art_sys_115: -2.87052109e-21 + art_sys_116: 2.78860822e-18 + art_sys_117: -8.42537039e-26 + art_sys_118: -3.30392976e-13 + art_sys_119: -1.40429236e-22 + art_sys_120: 1.19553870e-13 + art_sys_121: -8.44109330e-20 + art_sys_122: 4.01179676e-14 + art_sys_123: 9.25536756e-21 + art_sys_124: -1.33556824e-14 + art_sys_125: 4.35573781e-15 + art_sys_126: 6.40714480e-20 + art_sys_127: 1.13617535e-15 + art_sys_128: -7.90700954e-21 + art_sys_129: 1.12723491e-21 + art_sys_130: -1.93862125e-20 + art_sys_131: -7.34578473e-21 + art_sys_132: 3.83397016e-16 + art_sys_133: 1.50979785e-21 + art_sys_134: 1.60869217e-19 + art_sys_135: 6.55408183e-17 + art_sys_136: 1.17996288e-19 + art_sys_137: -6.97146477e-18 + art_sys_138: -3.17294143e-20 + art_sys_139: -1.10542048e-19 + art_sys_140: -6.59938969e-19 + art_sys_141: 5.21126056e-20 + art_sys_142: 0.0 + art_sys_143: -1.62253344e-19 + art_sys_144: -4.76153934e-20 + art_sys_145: -2.52224286e-20 + art_sys_146: -1.14923622e-24 + art_sys_147: -1.64790294e-25 + art_sys_148: 8.71076831e-23 + art_sys_149: 2.04105303e-23 + art_sys_150: 1.85726339e-24 + art_sys_151: -9.27892922e-23 + art_sys_152: 6.01946358e-23 + art_sys_153: 3.12535257e-24 + art_sys_154: -2.12575126e-23 + art_sys_155: -3.97578030e-23 + art_sys_156: -1.42357284e-22 + art_sys_157: -1.52631218e-23 + art_sys_158: 0.0 + art_sys_159: -7.16250840e-21 + art_sys_160: -7.16250840e-21 + art_sys_161: 2.14292985e-22 + art_sys_162: -8.89022699e-35 + art_sys_163: -0.0 + art_sys_164: -5.68815269e-35 + art_sys_165: -4.73564490e-30 + art_sys_166: 7.54346333e-31 + art_sys_167: -5.11613662e-32 + art_sys_168: -9.81700332e-31 + art_sys_169: 5.28308273e-31 + art_sys_170: 5.17989335e-30 + art_sys_171: 2.96215754e-29 + art_sys_172: -2.04278671e-29 + art_sys_173: 9.20854882e-30 + art_sys_174: -4.05293725e-35 + art_sys_175: -2.15943627e-30 + art_sys_176: 2.59733122e-30 + art_sys_177: -4.54227115e-31 + art_sys_178: -3.34633069e-32 + art_sys_179: -5.29218124e-33 + art_sys_180: 2.92263666e-33 + art_sys_181: 9.33472761e-34 + art_sys_182: 2.00077149e-33 + art_sys_183: 1.45128731e-35 + art_sys_184: -5.23174722e-38 + art_sys_185: -1.52761073e-36 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -5768,191 +5768,191 @@ bins: RelativeStatFSR-: -2.39462637e-01 luminosity_uncertainty: 2.13919680e+01 uncorrelated_uncertainty: 8.22768 -- art_sys_1: -7.03370488e-32 - art_sys_2: 2.64813156e-20 - art_sys_3: 8.84949203e-21 +- art_sys_1: 7.41731851e-32 + art_sys_2: -4.25252635e-19 + art_sys_3: 8.84949193e-21 art_sys_4: -1.35707790e-01 - art_sys_5: -2.03511692e-17 - art_sys_6: -8.64928535e-19 + art_sys_5: -5.24139479e-18 + art_sys_6: -1.63670460e-18 art_sys_7: -1.10760699e-01 - art_sys_8: -1.33008585e-16 + art_sys_8: -1.33925257e-16 art_sys_9: -2.85151985e-01 - art_sys_10: 2.72527941e-18 - art_sys_11: 2.21747752e-16 + art_sys_10: -1.84648007e-18 + art_sys_11: 2.11866652e-16 art_sys_12: 3.48360297e-01 - art_sys_13: 1.13435843e-16 - art_sys_14: 3.98927913e-01 - art_sys_15: 5.95326398e-15 - art_sys_16: 2.96340400e+00 - art_sys_17: 9.66637463e-17 - art_sys_18: -2.17686831e-16 - art_sys_19: -7.60760248e-01 - art_sys_20: -2.53073525e-16 - art_sys_21: -1.40645146e-16 - art_sys_22: 1.62047630e-16 + art_sys_13: -9.37443050e-18 + art_sys_14: -3.98927913e-01 + art_sys_15: -3.99104890e-15 + art_sys_16: -2.96340400e+00 + art_sys_17: 6.26509536e-17 + art_sys_18: 3.06650941e-16 + art_sys_19: 7.60760248e-01 + art_sys_20: 1.33933574e-16 + art_sys_21: 5.44183021e-16 + art_sys_22: 2.22908788e-17 art_sys_23: -6.20121551e-01 - art_sys_24: 9.44807877e-15 - art_sys_25: -1.56178637e-02 + art_sys_24: 9.61852558e-15 + art_sys_25: 1.56178637e-02 art_sys_26: -6.16500852e-03 - art_sys_27: -3.05242866e-16 - art_sys_28: 6.03545637e-16 - art_sys_29: 3.03017598e-17 - art_sys_30: 3.03805484e-03 - art_sys_31: -1.04161666e-14 - art_sys_32: -1.59782345e-17 - art_sys_33: -2.88771409e-04 - art_sys_34: -1.29400990e-04 - art_sys_35: 6.85862089e-15 - art_sys_36: -5.35599810e-17 - art_sys_37: 2.79411055e-17 - art_sys_38: 1.71205652e-18 - art_sys_39: -2.80859245e-18 - art_sys_40: 1.75733233e-18 - art_sys_41: -5.01180121e-18 - art_sys_42: -2.62385711e-18 - art_sys_43: -3.46875152e-18 - art_sys_44: 1.15001125e-19 - art_sys_45: 7.18900469e-19 - art_sys_46: 1.04799141e-18 - art_sys_47: 4.52734094e-14 - art_sys_48: -3.45359100e-05 - art_sys_49: 4.13478381e-13 - art_sys_50: -3.06156193e-20 - art_sys_51: 3.30911366e-20 - art_sys_52: -9.92406287e-14 - art_sys_53: -2.77904208e-06 - art_sys_54: 1.06023980e-14 - art_sys_55: -1.24319187e-06 - art_sys_56: 4.69915998e-15 - art_sys_57: 2.68609025e-19 - art_sys_58: 5.37849319e-21 - art_sys_59: 2.72297055e-07 - art_sys_60: 4.34348430e-14 - art_sys_61: 1.72578954e-20 - art_sys_62: 1.15327448e-15 - art_sys_63: -1.76053195e-15 - art_sys_64: 6.60216780e-17 - art_sys_65: -1.86774712e-17 - art_sys_66: -4.40085696e-18 - art_sys_67: -6.76673328e-18 - art_sys_68: 1.33465265e-20 - art_sys_69: -1.62100021e-21 - art_sys_70: -1.65137190e-21 - art_sys_71: -8.28203706e-22 - art_sys_72: -7.15178579e-23 - art_sys_73: -7.82918530e-23 - art_sys_74: 1.25249179e-18 - art_sys_75: -3.17147462e-22 - art_sys_76: 1.08882796e-19 - art_sys_77: 3.84318038e-20 - art_sys_78: -1.49728776e-20 - art_sys_79: 1.29185330e-21 - art_sys_80: 3.24699712e-21 - art_sys_81: -3.32611479e-18 - art_sys_82: 7.04115082e-15 - art_sys_83: -2.91398461e-21 - art_sys_84: -7.38619927e-22 - art_sys_85: -9.83498884e-22 - art_sys_86: 2.52908052e-22 - art_sys_87: 2.24383332e-19 - art_sys_88: -1.17054556e-19 - art_sys_89: 4.17327504e-23 - art_sys_90: 3.03616274e-19 - art_sys_91: -1.25633112e-09 - art_sys_92: -7.58445395e-24 - art_sys_93: 1.46483730e-23 - art_sys_94: -1.08539227e-20 - art_sys_95: -2.18995108e-16 - art_sys_96: 6.24206577e-10 - art_sys_97: 1.56927803e-16 - art_sys_98: -3.33587023e-17 - art_sys_99: 4.02080178e-10 - art_sys_100: -3.58298622e-16 - art_sys_101: -2.04629275e-10 - art_sys_102: 2.59534564e-18 - art_sys_103: -9.04187205e-17 - art_sys_104: 1.04930313e-10 - art_sys_105: 1.01018672e-22 - art_sys_106: -4.46913081e-11 - art_sys_107: -2.80366880e-18 - art_sys_108: -5.25314519e-22 - art_sys_109: 6.27941668e-23 - art_sys_110: -4.00923527e-17 - art_sys_111: 1.79331759e-11 - art_sys_112: 6.74132507e-18 - art_sys_113: 5.71055211e-16 - art_sys_114: 4.43007179e-24 - art_sys_115: -6.66249002e-12 - art_sys_116: 1.81068237e-18 - art_sys_117: 1.25008755e-22 - art_sys_118: 2.33962855e-12 - art_sys_119: 8.05972588e-19 - art_sys_120: -8.15019320e-18 - art_sys_121: 1.46272836e-23 - art_sys_122: -9.87754791e-13 - art_sys_123: -1.12075918e-19 - art_sys_124: 3.57712294e-13 - art_sys_125: -3.45508539e-24 - art_sys_126: -2.34757315e-18 - art_sys_127: 4.61339577e-21 - art_sys_128: -1.20359958e-13 - art_sys_129: 2.98775440e-24 - art_sys_130: -4.60983079e-20 - art_sys_131: -5.09271081e-23 - art_sys_132: -4.00907749e-14 - art_sys_133: 8.84851369e-20 - art_sys_134: -3.68969471e-19 - art_sys_135: 1.31185986e-14 - art_sys_136: 9.00631645e-24 - art_sys_137: -3.45034185e-21 - art_sys_138: 3.41695081e-15 - art_sys_139: 7.47782530e-20 - art_sys_140: -7.67714369e-24 - art_sys_141: 2.32137057e-20 - art_sys_142: 1.15697670e-15 - art_sys_143: 2.13329298e-20 - art_sys_144: -3.63553195e-22 - art_sys_145: 1.94543957e-16 - art_sys_146: -1.18792581e-20 - art_sys_147: 1.34717426e-22 - art_sys_148: -4.56585722e-24 - art_sys_149: -1.96934750e-17 - art_sys_150: 5.66833273e-19 - art_sys_151: 3.06242133e-20 - art_sys_152: -5.35358466e-22 - art_sys_153: 7.81298390e-20 - art_sys_154: -4.80541996e-19 - art_sys_155: -2.85909863e-22 - art_sys_156: 0.0 - art_sys_157: -2.18350827e-19 - art_sys_158: 0.0 - art_sys_159: 3.47250178e-20 - art_sys_160: -4.51886533e-21 - art_sys_161: -3.88548004e-21 - art_sys_162: -3.88548004e-21 - art_sys_163: -4.01146511e-21 - art_sys_164: -4.01146511e-21 - art_sys_165: 4.52480098e-35 - art_sys_166: -1.50189316e-35 - art_sys_167: -0.0 - art_sys_168: -2.48798847e-30 - art_sys_169: 8.04104291e-30 - art_sys_170: -3.12088767e-30 - art_sys_171: -1.83068049e-28 - art_sys_172: 1.90694618e-29 - art_sys_173: 1.54696645e-30 - art_sys_174: -1.66527394e-30 - art_sys_175: 1.67150974e-32 - art_sys_176: -2.15655242e-32 - art_sys_177: 1.85342348e-34 - art_sys_178: 1.10470063e-34 - art_sys_179: 8.71167769e-35 - art_sys_180: 9.03126935e-34 - art_sys_181: 5.23749046e-34 - art_sys_182: 4.39245799e-33 - art_sys_183: 9.88298366e-35 - art_sys_184: -7.05653747e-37 - art_sys_185: -1.67901320e-37 + art_sys_27: 3.07026453e-16 + art_sys_28: 5.78529224e-16 + art_sys_29: 2.37174385e-15 + art_sys_30: 4.38702916e-16 + art_sys_31: 3.30687604e-17 + art_sys_32: -3.63214563e-16 + art_sys_33: 1.33672330e-17 + art_sys_34: 9.18118216e-18 + art_sys_35: -8.50548521e-18 + art_sys_36: -1.16177494e-15 + art_sys_37: 3.03805484e-03 + art_sys_38: 5.81100567e-19 + art_sys_39: 1.04169943e-14 + art_sys_40: -1.68634544e-14 + art_sys_41: 2.88771409e-04 + art_sys_42: -8.23660188e-19 + art_sys_43: 1.29400990e-04 + art_sys_44: 2.06490940e-19 + art_sys_45: 8.82713877e-15 + art_sys_46: 3.71645594e-16 + art_sys_47: 6.18241925e-19 + art_sys_48: -3.45359099e-05 + art_sys_49: 3.69955688e-14 + art_sys_50: -3.73143968e-20 + art_sys_51: -1.87112697e-19 + art_sys_52: -2.77904205e-06 + art_sys_53: -1.84584275e-14 + art_sys_54: 8.06269360e-16 + art_sys_55: 1.24319188e-06 + art_sys_56: 7.65609307e-15 + art_sys_57: -6.06624049e-17 + art_sys_58: -4.24880309e-17 + art_sys_59: -9.93020044e-18 + art_sys_60: 4.02838948e-17 + art_sys_61: -3.77270907e-18 + art_sys_62: 2.71714763e-19 + art_sys_63: -9.45515178e-20 + art_sys_64: -1.23435597e-20 + art_sys_65: 3.53378472e-20 + art_sys_66: 1.16905692e-19 + art_sys_67: -1.69868459e-21 + art_sys_68: -2.63641082e-21 + art_sys_69: -2.71211551e-16 + art_sys_70: 2.72297047e-07 + art_sys_71: -4.09253698e-15 + art_sys_72: -1.55071926e-15 + art_sys_73: 4.37399787e-17 + art_sys_74: 6.33405976e-15 + art_sys_75: 2.00473024e-20 + art_sys_76: -7.53081404e-20 + art_sys_77: 7.73273350e-20 + art_sys_78: -1.00060940e-20 + art_sys_79: -1.13945439e-18 + art_sys_80: 7.33225752e-15 + art_sys_81: -1.15120987e-20 + art_sys_82: -1.80346077e-21 + art_sys_83: 1.20983288e-21 + art_sys_84: 5.81958335e-18 + art_sys_85: 2.20681738e-21 + art_sys_86: 3.12035295e-22 + art_sys_87: 1.76321345e-20 + art_sys_88: -1.68445604e-22 + art_sys_89: 2.21725409e-23 + art_sys_90: 1.25632618e-09 + art_sys_91: -6.24199715e-10 + art_sys_92: -1.47021237e-17 + art_sys_93: -1.45167299e-16 + art_sys_94: 4.83786760e-17 + art_sys_95: 4.02080798e-10 + art_sys_96: 2.57799839e-22 + art_sys_97: 5.45957030e-17 + art_sys_98: -2.04629366e-10 + art_sys_99: 3.49897491e-16 + art_sys_100: -3.00837094e-18 + art_sys_101: 1.04932900e-10 + art_sys_102: -2.14146558e-23 + art_sys_103: 2.97809443e-18 + art_sys_104: 4.46944999e-11 + art_sys_105: 1.07771087e-22 + art_sys_106: -1.79333000e-11 + art_sys_107: 5.65817356e-16 + art_sys_108: 2.99911893e-19 + art_sys_109: -1.46342828e-17 + art_sys_110: 4.97638211e-23 + art_sys_111: -6.66258300e-12 + art_sys_112: 2.79351733e-19 + art_sys_113: -2.72825402e-23 + art_sys_114: 2.33894466e-12 + art_sys_115: 8.62172104e-21 + art_sys_116: -8.36013110e-18 + art_sys_117: -2.74610883e-25 + art_sys_118: 9.87152845e-13 + art_sys_119: 4.17247140e-22 + art_sys_120: -3.57826909e-13 + art_sys_121: 2.52790822e-19 + art_sys_122: -1.20317582e-13 + art_sys_123: -2.78533151e-20 + art_sys_124: 4.00876407e-14 + art_sys_125: -1.30861158e-14 + art_sys_126: -1.92826399e-19 + art_sys_127: -3.41555088e-15 + art_sys_128: 2.37991243e-20 + art_sys_129: -3.39187838e-21 + art_sys_130: 5.83415090e-20 + art_sys_131: 2.21040119e-20 + art_sys_132: -1.15294201e-15 + art_sys_133: -4.51157776e-21 + art_sys_134: -4.83920979e-19 + art_sys_135: -1.97177987e-16 + art_sys_136: -3.54994452e-19 + art_sys_137: 2.09787971e-17 + art_sys_138: 9.54779573e-20 + art_sys_139: 3.32628270e-19 + art_sys_140: 1.78824930e-18 + art_sys_141: -1.56819586e-19 + art_sys_142: -0.0 + art_sys_143: 4.88145738e-19 + art_sys_144: 1.43251907e-19 + art_sys_145: 7.59074886e-20 + art_sys_146: 3.55842773e-24 + art_sys_147: 5.21935298e-25 + art_sys_148: -2.62871250e-22 + art_sys_149: -6.16031246e-23 + art_sys_150: -5.57677735e-24 + art_sys_151: 2.79169187e-22 + art_sys_152: -1.81052143e-22 + art_sys_153: -9.40994322e-24 + art_sys_154: 6.39689566e-23 + art_sys_155: 1.19653582e-22 + art_sys_156: 4.28375211e-22 + art_sys_157: 4.59347863e-23 + art_sys_158: -0.0 + art_sys_159: 2.15535503e-20 + art_sys_160: 2.15535503e-20 + art_sys_161: -6.44962023e-22 + art_sys_162: 2.67561974e-34 + art_sys_163: 0.0 + art_sys_164: 1.71189024e-34 + art_sys_165: 1.55591007e-29 + art_sys_166: -2.70028429e-30 + art_sys_167: 3.59003202e-31 + art_sys_168: 3.21748184e-30 + art_sys_169: -1.76706215e-30 + art_sys_170: -1.71775636e-29 + art_sys_171: -1.02011512e-28 + art_sys_172: 6.99955318e-29 + art_sys_173: -3.11571340e-29 + art_sys_174: 1.21966928e-34 + art_sys_175: 7.25471171e-30 + art_sys_176: -8.74237940e-30 + art_sys_177: 1.53111449e-30 + art_sys_178: 1.13192514e-31 + art_sys_179: 1.76751045e-32 + art_sys_180: -9.83385785e-33 + art_sys_181: -3.10307385e-33 + art_sys_182: -6.73370147e-33 + art_sys_183: -4.87972047e-35 + art_sys_184: 1.84205280e-37 + art_sys_185: 4.59829698e-36 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -6059,191 +6059,191 @@ bins: RelativeStatFSR-: -1.27827394e-01 luminosity_uncertainty: 1.05101880e+01 uncorrelated_uncertainty: 4.04238 -- art_sys_1: 5.31809343e-33 - art_sys_2: -2.00229013e-21 - art_sys_3: -6.19464518e-22 +- art_sys_1: -5.60853194e-33 + art_sys_2: 3.21539596e-20 + art_sys_3: -6.19464510e-22 art_sys_4: 1.02610600e-02 - art_sys_5: -2.90612480e-18 - art_sys_6: 6.45578923e-20 + art_sys_5: -4.04918648e-18 + art_sys_6: 1.23428610e-19 art_sys_7: -9.31355577e-02 - art_sys_8: 5.24447131e-17 + art_sys_8: 4.95532231e-17 art_sys_9: 1.44278694e-01 - art_sys_10: 9.85378186e-19 - art_sys_11: -2.98066506e-17 + art_sys_10: 8.96375159e-19 + art_sys_11: -3.12307030e-17 art_sys_12: -1.47170196e-02 - art_sys_13: 1.80935918e-16 - art_sys_14: 6.17935173e-01 - art_sys_15: 4.14664631e-16 - art_sys_16: 6.77278892e-01 - art_sys_17: 3.54067252e-17 - art_sys_18: -4.43558207e-16 - art_sys_19: -1.83199525e+00 - art_sys_20: 1.13542360e-16 - art_sys_21: -4.07999730e-16 - art_sys_22: -1.84480282e-17 + art_sys_13: -3.65237721e-20 + art_sys_14: -6.17935173e-01 + art_sys_15: 5.23407878e-17 + art_sys_16: -6.77278892e-01 + art_sys_17: 2.63563213e-17 + art_sys_18: -5.30590864e-16 + art_sys_19: 1.83199525e+00 + art_sys_20: 1.39285725e-16 + art_sys_21: 4.64908246e-16 + art_sys_22: -5.15428012e-17 art_sys_23: 7.48590970e-01 - art_sys_24: -9.09775435e-15 - art_sys_25: 1.18745823e-02 + art_sys_24: -8.96140242e-15 + art_sys_25: -1.18745823e-02 art_sys_26: 1.39495047e-02 - art_sys_27: 2.06472165e-16 - art_sys_28: -6.35358593e-15 - art_sys_29: -7.44608391e-17 - art_sys_30: -7.04200288e-03 - art_sys_31: 1.26290087e-14 - art_sys_32: 1.95783917e-17 - art_sys_33: 7.68546398e-04 - art_sys_34: 3.67068330e-04 - art_sys_35: -8.65085570e-15 - art_sys_36: 2.98545257e-16 - art_sys_37: -7.94832180e-17 - art_sys_38: -5.22644355e-18 - art_sys_39: 8.08512574e-18 - art_sys_40: -5.71008894e-18 - art_sys_41: 1.25524380e-17 - art_sys_42: 4.69842077e-18 - art_sys_43: 7.30654928e-18 - art_sys_44: -1.17981105e-18 - art_sys_45: -5.58505241e-19 - art_sys_46: -2.32486881e-18 - art_sys_47: -1.32947641e-13 - art_sys_48: 1.01416353e-04 - art_sys_49: -1.21421810e-12 - art_sys_50: 5.07612177e-20 - art_sys_51: -1.91397949e-19 - art_sys_52: 2.92276714e-13 - art_sys_53: 8.84117234e-06 - art_sys_54: -3.37112182e-14 - art_sys_55: 3.93103209e-06 - art_sys_56: -1.39894749e-14 - art_sys_57: -2.87657036e-19 - art_sys_58: -1.67350505e-20 - art_sys_59: -8.78959824e-07 - art_sys_60: -1.39886129e-13 - art_sys_61: -2.27406539e-20 - art_sys_62: -3.63629475e-15 - art_sys_63: 6.17887445e-15 - art_sys_64: -1.69717454e-16 - art_sys_65: 4.13804671e-17 - art_sys_66: 1.03098962e-17 - art_sys_67: 1.56031653e-17 - art_sys_68: -2.11439652e-20 - art_sys_69: 2.72904103e-21 - art_sys_70: 5.42918563e-21 - art_sys_71: 7.33436806e-22 - art_sys_72: 4.08230167e-22 - art_sys_73: 1.41032483e-22 - art_sys_74: -3.85954270e-18 - art_sys_75: 7.79211438e-22 - art_sys_76: -4.48488470e-19 - art_sys_77: -1.30660838e-19 - art_sys_78: 5.27461989e-20 - art_sys_79: -2.83332877e-21 - art_sys_80: -9.76115378e-21 - art_sys_81: 1.05114061e-17 - art_sys_82: -2.47200026e-14 - art_sys_83: 1.36403778e-20 - art_sys_84: 1.92492045e-21 - art_sys_85: 4.20725190e-21 - art_sys_86: -9.97058843e-22 - art_sys_87: -8.02314382e-19 - art_sys_88: 4.19816194e-19 - art_sys_89: -2.67891869e-22 - art_sys_90: -1.08442863e-18 - art_sys_91: 5.50655571e-09 - art_sys_92: 4.47602316e-23 - art_sys_93: -5.08477196e-23 - art_sys_94: 3.86537327e-20 - art_sys_95: 8.49162660e-16 - art_sys_96: -1.97274123e-09 - art_sys_97: -4.99559138e-16 - art_sys_98: 1.20105892e-16 - art_sys_99: -1.52859257e-09 - art_sys_100: 1.28610906e-15 - art_sys_101: 7.34578841e-10 - art_sys_102: -9.43095314e-18 - art_sys_103: 3.28362124e-16 - art_sys_104: -3.79302708e-10 - art_sys_105: -3.55757597e-22 - art_sys_106: 1.60971424e-10 - art_sys_107: 1.00110833e-17 - art_sys_108: 1.83001347e-21 - art_sys_109: -2.20281297e-22 - art_sys_110: 1.43380321e-16 - art_sys_111: -6.43244410e-11 - art_sys_112: -2.41175697e-17 - art_sys_113: -2.07493137e-15 - art_sys_114: -1.46973674e-23 - art_sys_115: 2.39030835e-11 - art_sys_116: -6.46572711e-18 - art_sys_117: -4.46577554e-22 - art_sys_118: -8.37265518e-12 - art_sys_119: -2.87736526e-18 - art_sys_120: 2.90975898e-17 - art_sys_121: -3.47811352e-23 - art_sys_122: 3.53317845e-12 - art_sys_123: 3.99786317e-19 - art_sys_124: -1.27858629e-12 - art_sys_125: 1.06453562e-23 - art_sys_126: 8.37729804e-18 - art_sys_127: -1.64528486e-20 - art_sys_128: 4.29809952e-13 - art_sys_129: -1.13396662e-23 - art_sys_130: 1.64386886e-19 - art_sys_131: 1.81440458e-22 - art_sys_132: 1.43143457e-13 - art_sys_133: -3.15578495e-19 - art_sys_134: 1.31582125e-18 - art_sys_135: -4.68152717e-14 - art_sys_136: -3.23342607e-23 - art_sys_137: 1.23054925e-20 - art_sys_138: -1.21917762e-14 - art_sys_139: -2.66711414e-19 - art_sys_140: 2.73764106e-23 - art_sys_141: -8.28207479e-20 - art_sys_142: -4.12741201e-15 - art_sys_143: -7.60961562e-20 - art_sys_144: 1.29696524e-21 - art_sys_145: -6.93889685e-16 - art_sys_146: 4.23684072e-20 - art_sys_147: -4.80526774e-22 - art_sys_148: 1.63157146e-23 - art_sys_149: 7.02333973e-17 - art_sys_150: -2.02151405e-18 - art_sys_151: -1.09234456e-19 - art_sys_152: 1.90929646e-21 - art_sys_153: -2.78657223e-19 - art_sys_154: 1.77660918e-18 - art_sys_155: 1.01959284e-21 - art_sys_156: -0.0 - art_sys_157: 7.78913453e-19 - art_sys_158: -0.0 - art_sys_159: -1.23859357e-19 - art_sys_160: 1.61194281e-20 - art_sys_161: 1.38573636e-20 - art_sys_162: 1.38573636e-20 - art_sys_163: 1.43077346e-20 - art_sys_164: 1.43077346e-20 - art_sys_165: -1.61384886e-34 - art_sys_166: 5.35675314e-35 - art_sys_167: 0.0 - art_sys_168: 5.49992434e-30 - art_sys_169: -1.83256639e-29 - art_sys_170: 6.09912410e-30 - art_sys_171: 4.16200041e-28 - art_sys_172: -4.49097086e-29 - art_sys_173: -3.64207048e-30 - art_sys_174: 3.91281672e-30 - art_sys_175: -3.18959923e-32 - art_sys_176: 4.86641026e-32 - art_sys_177: -4.81341456e-34 - art_sys_178: -2.20120195e-34 - art_sys_179: -3.10647288e-34 - art_sys_180: -3.22129363e-33 - art_sys_181: 1.97728748e-33 - art_sys_182: -9.85948441e-33 - art_sys_183: -2.31714587e-34 - art_sys_184: 1.79589392e-36 - art_sys_185: 5.95789754e-37 + art_sys_27: -2.16203024e-16 + art_sys_28: -6.32822292e-15 + art_sys_29: -5.55875897e-15 + art_sys_30: -1.01945788e-15 + art_sys_31: -5.79646235e-17 + art_sys_32: 8.44198607e-16 + art_sys_33: -2.82308621e-17 + art_sys_34: -2.55025455e-17 + art_sys_35: 2.77778448e-17 + art_sys_36: 2.69580226e-15 + art_sys_37: -7.04200288e-03 + art_sys_38: -1.21528522e-18 + art_sys_39: -1.26081021e-14 + art_sys_40: 4.48493852e-14 + art_sys_41: -7.68546398e-04 + art_sys_42: 2.20021695e-18 + art_sys_43: -3.67068330e-04 + art_sys_44: 4.93662992e-19 + art_sys_45: -1.42364364e-14 + art_sys_46: -1.08786876e-15 + art_sys_47: -1.73909195e-18 + art_sys_48: 1.01416352e-04 + art_sys_49: -1.09314354e-13 + art_sys_50: 1.19700754e-19 + art_sys_51: 3.15842414e-19 + art_sys_52: 8.84117225e-06 + art_sys_53: 5.33537761e-14 + art_sys_54: -2.54839074e-15 + art_sys_55: -3.93103209e-06 + art_sys_56: -2.24473543e-14 + art_sys_57: 1.43463208e-16 + art_sys_58: 9.93564568e-17 + art_sys_59: 2.47624559e-17 + art_sys_60: -1.29654025e-16 + art_sys_61: 8.61324100e-18 + art_sys_62: -5.55532772e-19 + art_sys_63: 3.34722361e-19 + art_sys_64: 1.63965553e-20 + art_sys_65: -1.17293846e-19 + art_sys_66: -3.84396281e-19 + art_sys_67: 5.82723737e-21 + art_sys_68: 9.41810503e-21 + art_sys_69: 1.18940342e-15 + art_sys_70: -8.78959798e-07 + art_sys_71: 1.66693521e-14 + art_sys_72: 4.94704387e-15 + art_sys_73: -1.57454546e-16 + art_sys_74: -2.52114501e-14 + art_sys_75: -4.74382961e-20 + art_sys_76: 3.89430306e-19 + art_sys_77: -2.71814335e-19 + art_sys_78: 4.18557721e-20 + art_sys_79: 4.97031599e-18 + art_sys_80: -3.17425132e-14 + art_sys_81: 3.99496053e-20 + art_sys_82: 8.10438984e-21 + art_sys_83: -5.42303888e-21 + art_sys_84: -1.92791517e-17 + art_sys_85: -8.45111876e-21 + art_sys_86: -9.56394827e-22 + art_sys_87: -5.65672461e-20 + art_sys_88: 2.14369013e-22 + art_sys_89: -1.68657293e-22 + art_sys_90: -5.50652964e-09 + art_sys_91: 1.97271183e-09 + art_sys_92: 5.33459348e-17 + art_sys_93: 6.82497249e-16 + art_sys_94: -1.74233792e-16 + art_sys_95: -1.52859471e-09 + art_sys_96: -9.66617522e-22 + art_sys_97: -1.96912978e-16 + art_sys_98: 7.34579038e-10 + art_sys_99: -1.14281277e-15 + art_sys_100: 1.08025690e-17 + art_sys_101: -3.79312044e-10 + art_sys_102: 1.29382245e-22 + art_sys_103: -1.06280647e-17 + art_sys_104: -1.60982955e-10 + art_sys_105: -3.24622774e-22 + art_sys_106: 6.43249040e-11 + art_sys_107: -2.13901089e-15 + art_sys_108: -1.06871398e-18 + art_sys_109: 5.24229620e-17 + art_sys_110: -1.87971449e-22 + art_sys_111: 2.39034171e-11 + art_sys_112: -9.95974573e-19 + art_sys_113: 6.33686965e-23 + art_sys_114: -8.37021024e-12 + art_sys_115: -3.06596980e-20 + art_sys_116: 2.98542938e-17 + art_sys_117: -4.54905137e-24 + art_sys_118: -3.53102365e-12 + art_sys_119: -1.51675644e-21 + art_sys_120: 1.27899571e-12 + art_sys_121: -9.03458130e-19 + art_sys_122: 4.29658615e-13 + art_sys_123: 9.93357346e-20 + art_sys_124: -1.43132257e-13 + art_sys_125: 4.66993037e-14 + art_sys_126: 6.87664738e-19 + art_sys_127: 1.21867757e-14 + art_sys_128: -8.48401888e-20 + art_sys_129: 1.21074486e-20 + art_sys_130: -2.08063450e-19 + art_sys_131: -7.88279483e-20 + art_sys_132: 4.11301664e-15 + art_sys_133: 1.61388225e-20 + art_sys_134: 1.72610607e-18 + art_sys_135: 7.03285394e-16 + art_sys_136: 1.26618077e-18 + art_sys_137: -7.48177169e-17 + art_sys_138: -3.40517276e-19 + art_sys_139: -1.18631341e-18 + art_sys_140: -6.60787668e-18 + art_sys_141: 5.59231919e-19 + art_sys_142: 0.0 + art_sys_143: -1.74110552e-18 + art_sys_144: -5.10981050e-19 + art_sys_145: -2.70649686e-19 + art_sys_146: -1.08339282e-23 + art_sys_147: -1.55801273e-24 + art_sys_148: 9.35950776e-22 + art_sys_149: 2.16967414e-22 + art_sys_150: 2.00650673e-23 + art_sys_151: -9.95896723e-22 + art_sys_152: 6.45677767e-22 + art_sys_153: 3.34664064e-23 + art_sys_154: -2.28160684e-22 + art_sys_155: -4.26651082e-22 + art_sys_156: -1.52769510e-21 + art_sys_157: -1.63771235e-22 + art_sys_158: 0.0 + art_sys_159: -7.68705401e-20 + art_sys_160: -7.68705401e-20 + art_sys_161: 2.29979680e-21 + art_sys_162: -9.54102279e-34 + art_sys_163: -0.0 + art_sys_164: -6.10454859e-34 + art_sys_165: -3.98484105e-29 + art_sys_166: 4.18727659e-30 + art_sys_167: 1.11240862e-30 + art_sys_168: -8.06834934e-30 + art_sys_169: 4.04690831e-30 + art_sys_170: 3.98876797e-29 + art_sys_171: 2.41876560e-28 + art_sys_172: -1.61336622e-28 + art_sys_173: 6.76129741e-29 + art_sys_174: -4.34919797e-34 + art_sys_175: -1.69303850e-29 + art_sys_176: 2.06099028e-29 + art_sys_177: -3.61240718e-30 + art_sys_178: -2.57832995e-31 + art_sys_179: -4.09656317e-32 + art_sys_180: 2.25835158e-32 + art_sys_181: 7.54443697e-33 + art_sys_182: 1.55598604e-32 + art_sys_183: 1.13243321e-34 + art_sys_184: -3.28736106e-37 + art_sys_185: -1.63957635e-35 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -6350,191 +6350,191 @@ bins: RelativeStatFSR-: -7.11901949e-02 luminosity_uncertainty: 5.39606600e+00 uncorrelated_uncertainty: 2.07541000e+00 -- art_sys_1: 2.81349202e-33 - art_sys_2: -1.05954039e-21 - art_sys_3: -1.37084131e-22 +- art_sys_1: -2.96848767e-33 + art_sys_2: 1.70147264e-20 + art_sys_3: -1.37084127e-22 art_sys_4: 5.42978630e-03 - art_sys_5: -9.27510643e-19 - art_sys_6: 3.46678946e-20 + art_sys_5: -1.53066740e-18 + art_sys_6: 6.56189168e-20 art_sys_7: -7.55363663e-03 - art_sys_8: 1.24047826e-17 + art_sys_8: 1.23223090e-17 art_sys_9: 2.52008319e-02 - art_sys_10: 6.56181301e-20 - art_sys_11: -8.67163520e-18 + art_sys_10: 2.55905756e-19 + art_sys_11: -8.30612375e-18 art_sys_12: -1.69847070e-02 - art_sys_13: 4.61366692e-18 - art_sys_14: 1.52033765e-02 - art_sys_15: 1.25377702e-16 - art_sys_16: -1.30679939e-01 - art_sys_17: -2.83230326e-18 - art_sys_18: -2.39658965e-16 - art_sys_19: -9.96196228e-02 - art_sys_20: 2.82635992e-17 - art_sys_21: -1.78067178e-17 - art_sys_22: -6.92422829e-18 + art_sys_13: 4.14648681e-19 + art_sys_14: -1.52033765e-02 + art_sys_15: -2.09620940e-16 + art_sys_16: 1.30679939e-01 + art_sys_17: -1.47246110e-18 + art_sys_18: -2.78917164e-16 + art_sys_19: 9.96196228e-02 + art_sys_20: 5.94943987e-18 + art_sys_21: 9.94953206e-18 + art_sys_22: -7.17449053e-18 art_sys_23: 1.50400337e-01 - art_sys_24: -1.46423238e-15 - art_sys_25: -1.79909351e-01 + art_sys_24: -1.45515854e-15 + art_sys_25: 1.79909351e-01 art_sys_26: -5.52519844e-02 - art_sys_27: -3.48921650e-16 - art_sys_28: 5.13630167e-14 - art_sys_29: 4.77898523e-16 - art_sys_30: 3.86479995e-02 - art_sys_31: -3.54483933e-14 - art_sys_32: -2.91608625e-17 - art_sys_33: -3.66843287e-03 - art_sys_34: -1.82187495e-03 - art_sys_35: 2.41629895e-14 - art_sys_36: -1.08302475e-15 - art_sys_37: 4.50285919e-16 - art_sys_38: -1.36195352e-17 - art_sys_39: -4.16347302e-17 - art_sys_40: 2.18829597e-17 - art_sys_41: -6.94295240e-17 - art_sys_42: -2.90569433e-17 - art_sys_43: -4.11521025e-17 - art_sys_44: -9.57363258e-18 - art_sys_45: 4.80399172e-18 - art_sys_46: 1.39691143e-17 - art_sys_47: 6.74799510e-13 - art_sys_48: -5.14758899e-04 - art_sys_49: 6.16295017e-12 - art_sys_50: -6.65266570e-19 - art_sys_51: -8.72911744e-19 - art_sys_52: -1.48515495e-12 - art_sys_53: -4.28015398e-05 - art_sys_54: 1.63865083e-13 - art_sys_55: -1.98817095e-05 - art_sys_56: 7.11916379e-14 - art_sys_57: 3.34184925e-18 - art_sys_58: 5.97625483e-20 - art_sys_59: 4.44832009e-06 - art_sys_60: 7.08671953e-13 - art_sys_61: -2.75808213e-20 - art_sys_62: 1.75019799e-14 - art_sys_63: -2.96612008e-14 - art_sys_64: 8.50834126e-16 - art_sys_65: -2.21482034e-16 - art_sys_66: -5.85153394e-17 - art_sys_67: -8.43704253e-17 - art_sys_68: 1.27000392e-19 - art_sys_69: -1.41092675e-20 - art_sys_70: -2.80653389e-20 - art_sys_71: -7.03327430e-21 - art_sys_72: -1.74672662e-21 - art_sys_73: -7.40158465e-22 - art_sys_74: 2.25610763e-17 - art_sys_75: -4.24288842e-21 - art_sys_76: 2.07562399e-18 - art_sys_77: 7.04026442e-19 - art_sys_78: -2.78662815e-19 - art_sys_79: 1.51802522e-20 - art_sys_80: 5.60076540e-20 - art_sys_81: -6.03586276e-17 - art_sys_82: 1.30862531e-13 - art_sys_83: -5.89347277e-20 - art_sys_84: -1.17607760e-20 - art_sys_85: -1.89383289e-20 - art_sys_86: 4.84923353e-21 - art_sys_87: 4.20877225e-18 - art_sys_88: -2.19518732e-18 - art_sys_89: 9.27259444e-22 - art_sys_90: 5.71708596e-18 - art_sys_91: -2.47675489e-08 - art_sys_92: -1.66686411e-22 - art_sys_93: 2.69885208e-22 - art_sys_94: -2.03761805e-19 - art_sys_95: -4.08069218e-15 - art_sys_96: 1.13250000e-08 - art_sys_97: 1.80541471e-15 - art_sys_98: -6.25481812e-16 - art_sys_99: 7.50986013e-09 - art_sys_100: -6.72498044e-15 - art_sys_101: -3.84029842e-09 - art_sys_102: 4.82360185e-17 - art_sys_103: -1.66402664e-15 - art_sys_104: 1.96133327e-09 - art_sys_105: 1.87418864e-21 - art_sys_106: -8.39731488e-10 - art_sys_107: -5.27604807e-17 - art_sys_108: -9.66861998e-21 - art_sys_109: 1.15813525e-21 - art_sys_110: -7.54088727e-16 - art_sys_111: 3.36625737e-10 - art_sys_112: 1.26787832e-16 - art_sys_113: 1.08941607e-14 - art_sys_114: 7.78374265e-23 - art_sys_115: -1.25242603e-10 - art_sys_116: 3.40702422e-17 - art_sys_117: 2.34010733e-21 - art_sys_118: 4.40040812e-11 - art_sys_119: 1.51699161e-17 - art_sys_120: -1.53400621e-16 - art_sys_121: 1.87216756e-22 - art_sys_122: -1.85771314e-11 - art_sys_123: -2.10972255e-18 - art_sys_124: 6.73121586e-12 - art_sys_125: -5.66083146e-23 - art_sys_126: -4.41835621e-17 - art_sys_127: 8.68554529e-20 - art_sys_128: -2.26475514e-12 - art_sys_129: 5.96872555e-23 - art_sys_130: -8.67606794e-19 - art_sys_131: -9.57601417e-22 - art_sys_132: -7.54502129e-13 - art_sys_133: 1.66554560e-18 - art_sys_134: -6.94553987e-18 - art_sys_135: 2.46906093e-13 - art_sys_136: 1.70606702e-22 - art_sys_137: -6.49555415e-20 - art_sys_138: 6.43109333e-14 - art_sys_139: 1.40754331e-18 - art_sys_140: -1.44490893e-22 - art_sys_141: 4.36941105e-19 - art_sys_142: 2.17774116e-14 - art_sys_143: 4.01555791e-19 - art_sys_144: -6.84303415e-21 - art_sys_145: 3.66186208e-15 - art_sys_146: -2.23591587e-19 - art_sys_147: 2.53587944e-21 - art_sys_148: -8.59955407e-23 - art_sys_149: -3.70673677e-16 - art_sys_150: 1.06690250e-17 - art_sys_151: 5.76454444e-19 - art_sys_152: -1.00766504e-20 - art_sys_153: 1.47061507e-18 - art_sys_154: -9.32715044e-18 - art_sys_155: -5.38128838e-21 - art_sys_156: 0.0 - art_sys_157: -4.11031508e-18 - art_sys_158: 0.0 - art_sys_159: 6.53639682e-19 - art_sys_160: -8.50636918e-20 - art_sys_161: -7.31340432e-20 - art_sys_162: -7.31340432e-20 - art_sys_163: -7.55077022e-20 - art_sys_164: -7.55077022e-20 - art_sys_165: 8.51698427e-34 - art_sys_166: -2.82699521e-34 - art_sys_167: -0.0 - art_sys_168: -2.94238709e-29 - art_sys_169: 1.02106807e-28 - art_sys_170: -3.90320957e-29 - art_sys_171: -2.30041129e-27 - art_sys_172: 2.41633532e-28 - art_sys_173: 1.98105334e-29 - art_sys_174: -2.11208561e-29 - art_sys_175: 2.20880687e-31 - art_sys_176: -2.76051749e-31 - art_sys_177: 2.67845472e-33 - art_sys_178: 1.12926914e-33 - art_sys_179: 1.63962554e-33 - art_sys_180: 1.69997587e-32 - art_sys_181: -8.39645327e-33 - art_sys_182: 5.14277483e-32 - art_sys_183: 1.23272100e-33 - art_sys_184: -9.52883951e-36 - art_sys_185: -3.14378447e-36 + art_sys_27: 3.91794994e-16 + art_sys_28: 5.12733729e-14 + art_sys_29: 3.34413222e-14 + art_sys_30: 5.51365921e-15 + art_sys_31: 3.92424371e-16 + art_sys_32: -4.60965104e-15 + art_sys_33: 1.82605010e-16 + art_sys_34: 1.10715800e-16 + art_sys_35: -2.97856301e-17 + art_sys_36: -1.47082424e-14 + art_sys_37: 3.86479995e-02 + art_sys_38: 1.44615643e-17 + art_sys_39: 3.53621189e-14 + art_sys_40: -2.14030281e-13 + art_sys_41: 3.66843287e-03 + art_sys_42: -1.77141219e-17 + art_sys_43: 1.82187495e-03 + art_sys_44: 3.62290638e-18 + art_sys_45: 5.18707561e-14 + art_sys_46: 5.50752092e-15 + art_sys_47: 8.43090869e-18 + art_sys_48: -5.14758897e-04 + art_sys_49: 5.52789173e-13 + art_sys_50: -7.95652229e-19 + art_sys_51: -2.39979125e-19 + art_sys_52: -4.28015394e-05 + art_sys_53: -2.69158915e-13 + art_sys_54: 1.29072315e-14 + art_sys_55: 1.98817095e-05 + art_sys_56: 1.13277529e-13 + art_sys_57: -7.75501880e-16 + art_sys_58: -5.40294909e-16 + art_sys_59: -1.29306741e-16 + art_sys_60: 6.54129141e-16 + art_sys_61: -4.64924650e-17 + art_sys_62: 3.08085591e-18 + art_sys_63: -1.67449061e-18 + art_sys_64: -1.02765417e-19 + art_sys_65: 5.90247328e-19 + art_sys_66: 1.94822569e-18 + art_sys_67: -2.92758355e-20 + art_sys_68: -4.67157748e-20 + art_sys_69: -5.34780349e-15 + art_sys_70: 4.44831995e-06 + art_sys_71: -7.65251682e-14 + art_sys_72: -2.39560675e-14 + art_sys_73: 8.20997603e-16 + art_sys_74: 1.16903222e-13 + art_sys_75: 2.55536352e-19 + art_sys_76: -1.56525691e-18 + art_sys_77: 1.47941005e-18 + art_sys_78: -1.92292769e-19 + art_sys_79: -2.23790470e-17 + art_sys_80: 1.44053272e-13 + art_sys_81: -2.12833638e-19 + art_sys_82: -3.60572630e-20 + art_sys_83: 2.40812767e-20 + art_sys_84: 1.06692697e-16 + art_sys_85: 4.17054177e-20 + art_sys_86: 5.67954288e-21 + art_sys_87: 3.02210776e-19 + art_sys_88: -1.34847968e-21 + art_sys_89: 8.44390954e-22 + art_sys_90: 2.47674471e-08 + art_sys_91: -1.13248657e-08 + art_sys_92: -2.76198245e-16 + art_sys_93: -3.07927241e-15 + art_sys_94: 9.09136557e-16 + art_sys_95: 7.50987167e-09 + art_sys_96: 5.08312534e-21 + art_sys_97: 1.02192420e-15 + art_sys_98: -3.84030009e-09 + art_sys_99: 5.85217548e-15 + art_sys_100: -5.65457875e-17 + art_sys_101: 1.96138184e-09 + art_sys_102: -6.63477950e-22 + art_sys_103: 5.60314410e-17 + art_sys_104: 8.39791164e-10 + art_sys_105: 1.71311083e-21 + art_sys_106: -3.36628064e-10 + art_sys_107: 1.06717271e-14 + art_sys_108: 5.64424175e-18 + art_sys_109: -2.75289803e-16 + art_sys_110: 9.80275619e-22 + art_sys_111: -1.25244352e-10 + art_sys_112: 5.25907469e-18 + art_sys_113: -3.35851449e-22 + art_sys_114: 4.39912164e-11 + art_sys_115: 1.61846803e-19 + art_sys_116: -1.57263326e-16 + art_sys_117: 2.17798417e-23 + art_sys_118: 1.85658098e-11 + art_sys_119: 8.00445626e-21 + art_sys_120: -6.73337181e-12 + art_sys_121: 4.75678666e-18 + art_sys_122: -2.26395754e-12 + art_sys_123: -5.24292810e-19 + art_sys_124: 7.54443291e-13 + art_sys_125: -2.46294797e-13 + art_sys_126: -3.62925321e-18 + art_sys_127: -6.42845946e-14 + art_sys_128: 4.47797179e-19 + art_sys_129: -6.38949436e-20 + art_sys_130: 1.09813966e-18 + art_sys_131: 4.16025132e-19 + art_sys_132: -2.17014731e-14 + art_sys_133: -8.49195069e-20 + art_sys_134: -9.10867737e-18 + art_sys_135: -3.71144284e-15 + art_sys_136: -6.68199687e-18 + art_sys_137: 3.94866890e-16 + art_sys_138: 1.79712094e-18 + art_sys_139: 6.26088117e-18 + art_sys_140: 3.55676945e-17 + art_sys_141: -2.95159052e-18 + art_sys_142: -0.0 + art_sys_143: 9.18821839e-18 + art_sys_144: 2.69647603e-18 + art_sys_145: 1.42860522e-18 + art_sys_146: 5.74277007e-23 + art_sys_147: 8.40531296e-24 + art_sys_148: -4.94563751e-21 + art_sys_149: -1.14632307e-21 + art_sys_150: -1.05804968e-22 + art_sys_151: 5.25499639e-21 + art_sys_152: -3.40695019e-21 + art_sys_153: -1.76620149e-22 + art_sys_154: 1.20409195e-21 + art_sys_155: 2.25198226e-21 + art_sys_156: 8.06284837e-21 + art_sys_157: 8.64483161e-22 + art_sys_158: -0.0 + art_sys_159: 4.05694788e-19 + art_sys_160: 4.05694788e-19 + art_sys_161: -1.21390009e-20 + art_sys_162: 5.03591686e-33 + art_sys_163: 0.0 + art_sys_164: 3.22205215e-33 + art_sys_165: 2.11428848e-28 + art_sys_166: -2.39949213e-29 + art_sys_167: -5.05427107e-30 + art_sys_168: 4.35435921e-29 + art_sys_169: -2.22986736e-29 + art_sys_170: -2.18608828e-28 + art_sys_171: -1.23490448e-27 + art_sys_172: 8.48474859e-28 + art_sys_173: -3.69835431e-28 + art_sys_174: 2.29555589e-33 + art_sys_175: 9.12066083e-29 + art_sys_176: -1.09917090e-28 + art_sys_177: 1.91350023e-29 + art_sys_178: 1.38130024e-30 + art_sys_179: 2.20908321e-31 + art_sys_180: -1.21649496e-31 + art_sys_181: -3.97430860e-32 + art_sys_182: -8.44708712e-32 + art_sys_183: -6.13980126e-34 + art_sys_184: 1.82985149e-36 + art_sys_185: 8.65455741e-35 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -6641,191 +6641,191 @@ bins: RelativeStatFSR-: -4.08621452e-02 luminosity_uncertainty: 2.861872 uncorrelated_uncertainty: 1.10072 -- art_sys_1: 4.90417872e-34 - art_sys_2: -1.84636434e-22 - art_sys_3: -6.28013665e-23 +- art_sys_1: -5.17154962e-34 + art_sys_2: 2.96500110e-21 + art_sys_3: -6.28013657e-23 art_sys_4: 9.46199306e-04 - art_sys_5: 2.04272088e-19 - art_sys_6: 6.02008919e-21 + art_sys_5: 9.90988982e-20 + art_sys_6: 1.14303403e-20 art_sys_7: 1.27277464e-03 - art_sys_8: 3.65599552e-19 + art_sys_8: 3.88677092e-19 art_sys_9: 1.81268226e-05 - art_sys_10: -2.06229478e-20 - art_sys_11: 1.76208894e-18 + art_sys_10: 1.65685600e-21 + art_sys_11: 1.98865637e-18 art_sys_12: -2.00627235e-03 - art_sys_13: -9.52284762e-18 - art_sys_14: -3.26013776e-02 - art_sys_15: -1.63664990e-15 - art_sys_16: -4.82708788e-02 - art_sys_17: -2.41366597e-18 - art_sys_18: -1.31232368e-16 - art_sys_19: 1.12088467e-01 - art_sys_20: -6.34831755e-18 - art_sys_21: -1.02879652e-15 - art_sys_22: 5.34358795e-18 + art_sys_13: 5.75074581e-20 + art_sys_14: 3.26013776e-02 + art_sys_15: 1.61053098e-15 + art_sys_16: 4.82708788e-02 + art_sys_17: -1.73373513e-18 + art_sys_18: -1.27492792e-16 + art_sys_19: -1.12088467e-01 + art_sys_20: -9.28376834e-18 + art_sys_21: -1.08337308e-15 + art_sys_22: 7.65750896e-18 art_sys_23: -5.10416145e-02 - art_sys_24: 3.38918805e-16 - art_sys_25: -1.23529853e-01 + art_sys_24: 3.30327548e-16 + art_sys_25: 1.23529853e-01 art_sys_26: 9.01553811e-02 - art_sys_27: -1.25055735e-15 - art_sys_28: -7.80139315e-14 - art_sys_29: -6.50143025e-16 - art_sys_30: -5.16480003e-02 - art_sys_31: 1.17534428e-14 - art_sys_32: 1.62745161e-17 - art_sys_33: 9.41530793e-03 - art_sys_34: 4.24003911e-03 - art_sys_35: -1.91177997e-14 - art_sys_36: 3.14904431e-15 - art_sys_37: -1.21917177e-15 - art_sys_38: -1.15948541e-16 - art_sys_39: 1.09061778e-16 - art_sys_40: -7.05771417e-17 - art_sys_41: 1.68181675e-16 - art_sys_42: 4.32950041e-17 - art_sys_43: 5.12778760e-17 - art_sys_44: -2.10741124e-18 - art_sys_45: -7.37597927e-18 - art_sys_46: -1.82209421e-17 - art_sys_47: -1.82214477e-12 + art_sys_27: 1.26186639e-15 + art_sys_28: -7.79522311e-14 + art_sys_29: -4.75324081e-14 + art_sys_30: -9.74473081e-15 + art_sys_31: 5.42520321e-16 + art_sys_32: 6.32137197e-15 + art_sys_33: -4.65149227e-17 + art_sys_34: -3.48631985e-16 + art_sys_35: 1.08420049e-16 + art_sys_36: 1.96354366e-14 + art_sys_37: -5.16480003e-02 + art_sys_38: -4.31161005e-17 + art_sys_39: -1.16299324e-14 + art_sys_40: 5.49258116e-13 + art_sys_41: -9.41530793e-03 + art_sys_42: 1.92844871e-17 + art_sys_43: -4.24003911e-03 + art_sys_44: -7.90506327e-19 + art_sys_45: -8.35527843e-14 + art_sys_46: -1.46856857e-14 + art_sys_47: -1.00267879e-17 art_sys_48: 1.38999235e-03 - art_sys_49: -1.66420019e-11 - art_sys_50: 7.27327736e-19 - art_sys_51: -1.26246900e-18 - art_sys_52: 4.01255065e-12 - art_sys_53: 1.27410757e-04 - art_sys_54: -4.86442993e-13 - art_sys_55: 5.75089633e-05 - art_sys_56: -1.93233264e-13 - art_sys_57: -5.45038205e-18 - art_sys_58: -1.02058231e-19 - art_sys_59: -1.35464673e-05 - art_sys_60: -2.15733306e-12 - art_sys_61: 1.68915248e-19 - art_sys_62: -5.21157043e-14 - art_sys_63: 9.24236812e-14 - art_sys_64: -1.82819334e-15 - art_sys_65: 3.03396492e-16 - art_sys_66: 6.96009248e-17 - art_sys_67: 1.16131924e-16 - art_sys_68: -3.77126038e-20 - art_sys_69: -4.73989438e-21 - art_sys_70: 7.03238205e-20 - art_sys_71: -8.38762666e-21 - art_sys_72: 7.20685216e-21 - art_sys_73: -1.44303671e-21 - art_sys_74: -6.36765373e-17 - art_sys_75: 6.17214925e-21 - art_sys_76: -6.73415421e-18 - art_sys_77: -2.14756285e-18 - art_sys_78: 8.22517818e-19 - art_sys_79: -1.75912883e-20 - art_sys_80: -1.78978968e-19 - art_sys_81: 1.71780061e-16 - art_sys_82: -3.85582513e-13 - art_sys_83: 1.89293093e-19 - art_sys_84: 3.75093317e-20 - art_sys_85: 6.26739709e-20 - art_sys_86: -1.47688095e-20 - art_sys_87: -1.30709499e-17 - art_sys_88: 6.96950487e-18 - art_sys_89: -3.44699742e-21 - art_sys_90: -1.83969606e-17 - art_sys_91: 7.86694453e-08 - art_sys_92: 2.46410669e-22 - art_sys_93: -8.06125329e-22 - art_sys_94: 6.52966678e-19 - art_sys_95: 1.30621423e-14 - art_sys_96: -3.22245993e-08 - art_sys_97: -5.69703064e-15 - art_sys_98: 1.79755017e-15 - art_sys_99: -2.40138354e-08 - art_sys_100: 2.07622844e-14 - art_sys_101: 1.18277097e-08 - art_sys_102: -1.47974739e-16 - art_sys_103: 5.19565651e-15 - art_sys_104: -6.20020816e-09 - art_sys_105: -5.92417734e-21 - art_sys_106: 2.64982744e-09 - art_sys_107: 1.69495730e-16 - art_sys_108: 3.03172676e-20 - art_sys_109: -3.62975972e-21 - art_sys_110: 2.41635706e-15 - art_sys_111: -1.06967124e-09 - art_sys_112: -4.06010852e-16 - art_sys_113: -3.48968239e-14 - art_sys_114: -2.32096502e-22 - art_sys_115: 3.99424247e-10 - art_sys_116: -1.09400124e-16 - art_sys_117: -7.41859437e-21 - art_sys_118: -1.40596465e-10 - art_sys_119: -4.87623356e-17 - art_sys_120: 4.93128501e-16 - art_sys_121: -2.74371773e-22 - art_sys_122: 5.95044899e-11 - art_sys_123: 6.78709957e-18 - art_sys_124: -2.15856512e-11 - art_sys_125: 1.53400886e-22 - art_sys_126: 1.42028363e-16 - art_sys_127: -2.79685726e-19 - art_sys_128: 7.27184697e-12 - art_sys_129: -2.04493638e-22 - art_sys_130: 2.79221023e-18 - art_sys_131: 3.07832252e-21 - art_sys_132: 2.42468041e-12 - art_sys_133: -5.36083378e-18 - art_sys_134: 2.23581035e-17 - art_sys_135: -7.93771883e-13 - art_sys_136: -5.52974048e-22 - art_sys_137: 2.09123706e-19 - art_sys_138: -2.06872432e-13 - art_sys_139: -4.53029299e-18 - art_sys_140: 4.65090689e-22 - art_sys_141: -1.40562161e-18 - art_sys_142: -7.00623841e-14 - art_sys_143: -1.29220382e-18 - art_sys_144: 2.20138974e-20 - art_sys_145: -1.17844384e-14 - art_sys_146: 7.19505410e-19 - art_sys_147: -8.16134662e-21 - art_sys_148: 2.75991516e-22 - art_sys_149: 1.19309716e-15 - art_sys_150: -3.43404926e-17 - art_sys_151: -1.85548666e-18 - art_sys_152: 3.24326314e-20 - art_sys_153: -4.73333906e-18 - art_sys_154: 3.04674860e-17 - art_sys_155: 1.73188656e-20 - art_sys_156: -0.0 - art_sys_157: 1.32309399e-17 - art_sys_158: -0.0 - art_sys_159: -2.10390373e-18 - art_sys_160: 2.73810210e-19 - art_sys_161: 2.35381429e-19 - art_sys_162: 2.35381429e-19 - art_sys_163: 2.43033300e-19 - art_sys_164: 2.43033300e-19 - art_sys_165: -2.74130465e-33 - art_sys_166: 9.09904865e-34 - art_sys_167: 0.0 - art_sys_168: 2.46176272e-29 - art_sys_169: -1.20137256e-28 - art_sys_170: -1.09376070e-30 - art_sys_171: 2.82408172e-27 - art_sys_172: -3.57130968e-28 - art_sys_173: -2.99425964e-29 - art_sys_174: 3.12359276e-29 - art_sys_175: 8.37326001e-32 - art_sys_176: 3.10266405e-31 - art_sys_177: -4.77227511e-33 - art_sys_178: -8.56514282e-34 - art_sys_179: -5.27662856e-33 - art_sys_180: -5.47175714e-32 - art_sys_181: 9.70309980e-32 - art_sys_182: -6.96053311e-32 - art_sys_183: -1.85007250e-33 - art_sys_184: 1.79827959e-35 - art_sys_185: 1.00656324e-35 + art_sys_49: -1.50442282e-12 + art_sys_50: 1.73342412e-18 + art_sys_51: 3.01494218e-18 + art_sys_52: 1.27410756e-04 + art_sys_53: 7.24587847e-13 + art_sys_54: -3.72873728e-14 + art_sys_55: -5.75089634e-05 + art_sys_56: -3.07582621e-13 + art_sys_57: 1.15685635e-15 + art_sys_58: 7.45444029e-16 + art_sys_59: 2.34260251e-16 + art_sys_60: -1.99461085e-15 + art_sys_61: 6.05917408e-17 + art_sys_62: -2.14966906e-18 + art_sys_63: 5.67143825e-18 + art_sys_64: -1.96089324e-19 + art_sys_65: -1.86566772e-18 + art_sys_66: -5.91132925e-18 + art_sys_67: 9.77980385e-20 + art_sys_68: 1.62617891e-19 + art_sys_69: 1.69891014e-14 + art_sys_70: -1.35464669e-05 + art_sys_71: 2.41579566e-13 + art_sys_72: 7.12046344e-14 + art_sys_73: -2.53260752e-15 + art_sys_74: -3.67552290e-13 + art_sys_75: -3.77882702e-19 + art_sys_76: 5.19882548e-18 + art_sys_77: -4.08466103e-18 + art_sys_78: 6.86963462e-19 + art_sys_79: 7.08431463e-17 + art_sys_80: -4.57391753e-13 + art_sys_81: 6.46704929e-19 + art_sys_82: 1.12499459e-19 + art_sys_83: -7.70280967e-20 + art_sys_84: -3.08931331e-16 + art_sys_85: -1.30201044e-19 + art_sys_86: -1.59846402e-20 + art_sys_87: -8.25310902e-19 + art_sys_88: -2.66479523e-21 + art_sys_89: -4.48915180e-21 + art_sys_90: -7.86690975e-08 + art_sys_91: 3.22241726e-08 + art_sys_92: 8.81546350e-16 + art_sys_93: 9.90808627e-15 + art_sys_94: -2.86463592e-15 + art_sys_95: -2.40138695e-08 + art_sys_96: -1.71868415e-20 + art_sys_97: -3.23982263e-15 + art_sys_98: 1.18277132e-08 + art_sys_99: -1.72495034e-14 + art_sys_100: 1.80353361e-16 + art_sys_101: -6.20036170e-09 + art_sys_102: 3.15260579e-21 + art_sys_103: -1.80091814e-16 + art_sys_104: -2.65001590e-09 + art_sys_105: -4.39729966e-21 + art_sys_106: 1.06967897e-09 + art_sys_107: -3.41984052e-14 + art_sys_108: -1.81540496e-17 + art_sys_109: 8.78878701e-16 + art_sys_110: -3.29568381e-21 + art_sys_111: 3.99429789e-10 + art_sys_112: -1.69399838e-17 + art_sys_113: 3.99956521e-22 + art_sys_114: -1.40555147e-10 + art_sys_115: -5.19214019e-19 + art_sys_116: 5.04695213e-16 + art_sys_117: -1.67075596e-22 + art_sys_118: -5.94682620e-11 + art_sys_119: -2.61078962e-20 + art_sys_120: 2.15925615e-11 + art_sys_121: -1.52635305e-17 + art_sys_122: 7.26928162e-12 + art_sys_123: 1.68767623e-18 + art_sys_124: -2.42449225e-12 + art_sys_125: 7.91807349e-13 + art_sys_126: 1.16832242e-17 + art_sys_127: 2.06787858e-13 + art_sys_128: -1.44079072e-18 + art_sys_129: 2.05896371e-19 + art_sys_130: -3.53478125e-18 + art_sys_131: -1.33891036e-18 + art_sys_132: 6.98181025e-14 + art_sys_133: 2.72076315e-19 + art_sys_134: 2.93111410e-17 + art_sys_135: 1.19439729e-14 + art_sys_136: 2.15041651e-17 + art_sys_137: -1.27095865e-15 + art_sys_138: -5.78435515e-18 + art_sys_139: -2.01514681e-17 + art_sys_140: -1.03030708e-16 + art_sys_141: 9.49930708e-18 + art_sys_142: 0.0 + art_sys_143: -2.95702651e-17 + art_sys_144: -8.67875170e-18 + art_sys_145: -4.59730034e-18 + art_sys_146: -1.46298321e-22 + art_sys_147: -2.10955305e-23 + art_sys_148: 1.59434056e-20 + art_sys_149: 3.64002252e-21 + art_sys_150: 3.44189541e-22 + art_sys_151: -1.69162857e-20 + art_sys_152: 1.09582250e-20 + art_sys_153: 5.66653792e-22 + art_sys_154: -3.87622570e-21 + art_sys_155: -7.24765293e-21 + art_sys_156: -2.59499753e-20 + art_sys_157: -2.78169975e-21 + art_sys_158: 0.0 + art_sys_159: -1.30586899e-18 + art_sys_160: -1.30586899e-18 + art_sys_161: 3.90710482e-20 + art_sys_162: -1.62088936e-32 + art_sys_163: -0.0 + art_sys_164: -1.03707124e-32 + art_sys_165: -4.00223507e-28 + art_sys_166: -2.46642313e-29 + art_sys_167: 5.91789437e-29 + art_sys_168: -7.52787290e-29 + art_sys_169: 2.65816659e-29 + art_sys_170: 2.93913713e-28 + art_sys_171: 2.16174169e-27 + art_sys_172: -1.30914705e-27 + art_sys_173: 4.11417801e-28 + art_sys_174: -7.38767816e-33 + art_sys_175: -1.30151769e-28 + art_sys_176: 1.66550383e-28 + art_sys_177: -2.94281886e-29 + art_sys_178: -1.84447149e-30 + art_sys_179: -3.04099759e-31 + art_sys_180: 1.65203523e-31 + art_sys_181: 6.52547364e-32 + art_sys_182: 1.15626845e-31 + art_sys_183: 8.53586438e-34 + art_sys_184: 2.19598012e-37 + art_sys_185: -2.78587617e-34 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -6932,191 +6932,191 @@ bins: RelativeStatFSR-: -2.48652081e-02 luminosity_uncertainty: 1.61163860e+00 uncorrelated_uncertainty: 0.619861 -- art_sys_1: 2.19042990e-35 - art_sys_2: -8.24567910e-24 - art_sys_3: -3.45678292e-24 +- art_sys_1: -2.30928996e-35 + art_sys_2: 1.32413994e-22 + art_sys_3: -3.45678289e-24 art_sys_4: 4.22563180e-05 - art_sys_5: 5.80546317e-20 - art_sys_6: 2.64790896e-22 + art_sys_5: 5.33265823e-20 + art_sys_6: 5.09277667e-22 art_sys_7: 8.33547537e-04 - art_sys_8: -6.44496158e-19 + art_sys_8: -6.24482508e-19 art_sys_9: -1.52303670e-03 - art_sys_10: -1.05972271e-20 - art_sys_11: 6.48006791e-19 + art_sys_10: -1.23088660e-20 + art_sys_11: 6.54646125e-19 art_sys_12: 6.64353231e-04 - art_sys_13: -1.40122705e-18 - art_sys_14: -4.76520781e-03 - art_sys_15: -2.38103727e-15 - art_sys_16: 8.12310928e-03 - art_sys_17: 6.52156403e-20 - art_sys_18: -1.86649184e-16 - art_sys_19: 1.46300221e-02 - art_sys_20: -2.79233419e-18 - art_sys_21: -8.06385474e-16 - art_sys_22: 6.33930230e-19 + art_sys_13: -1.42494110e-20 + art_sys_14: 4.76520781e-03 + art_sys_15: 2.38649868e-15 + art_sys_16: -8.12310928e-03 + art_sys_17: 1.94170838e-20 + art_sys_18: -1.83145928e-16 + art_sys_19: -1.46300221e-02 + art_sys_20: -1.13864399e-18 + art_sys_21: -8.11734467e-16 + art_sys_22: 9.12494107e-19 art_sys_23: -1.76095183e-02 - art_sys_24: 3.03361927e-16 - art_sys_25: 5.51699265e-03 + art_sys_24: 3.02187298e-16 + art_sys_25: -5.51699265e-03 art_sys_26: 1.46420507e-01 - art_sys_27: 1.94196161e-15 - art_sys_28: 7.40166964e-14 - art_sys_29: 6.37018817e-16 - art_sys_30: 4.51935724e-02 - art_sys_31: -4.53726632e-15 - art_sys_32: -1.47226220e-17 - art_sys_33: -6.47305487e-03 - art_sys_34: -6.01059947e-03 - art_sys_35: 3.42391774e-15 - art_sys_36: -5.10097661e-15 - art_sys_37: 2.02427041e-15 - art_sys_38: 2.43615721e-16 - art_sys_39: -1.59037173e-16 - art_sys_40: 1.25579276e-16 - art_sys_41: -2.44830573e-16 - art_sys_42: -1.92577684e-17 - art_sys_43: 4.65006861e-18 - art_sys_44: -2.24148557e-18 - art_sys_45: 5.83321696e-19 - art_sys_46: 1.58877181e-17 - art_sys_47: 2.96535619e-12 + art_sys_27: -1.94963305e-15 + art_sys_28: 7.39794209e-14 + art_sys_29: 4.70157484e-14 + art_sys_30: 7.17555720e-15 + art_sys_31: -7.69249644e-16 + art_sys_32: -5.26293474e-15 + art_sys_33: 2.89676885e-16 + art_sys_34: 2.73204450e-16 + art_sys_35: -1.90085544e-17 + art_sys_36: -1.71116291e-14 + art_sys_37: 4.51935724e-02 + art_sys_38: 7.36119635e-17 + art_sys_39: 4.44426827e-15 + art_sys_40: -3.77621265e-13 + art_sys_41: 6.47305487e-03 + art_sys_42: -1.37294235e-17 + art_sys_43: 6.01059947e-03 + art_sys_44: -1.32389330e-17 + art_sys_45: 9.47195228e-14 + art_sys_46: 2.36576668e-14 + art_sys_47: 5.51949380e-18 art_sys_48: -2.26207183e-03 - art_sys_49: 2.70840610e-11 - art_sys_50: -9.97221096e-19 - art_sys_51: 5.63971139e-19 - art_sys_52: -6.53132932e-12 - art_sys_53: -2.40148131e-04 - art_sys_54: 9.22028161e-13 - art_sys_55: -1.15149962e-04 - art_sys_56: 3.16321871e-13 - art_sys_57: 9.19234725e-18 - art_sys_58: 1.33578722e-19 - art_sys_59: 2.87588479e-05 - art_sys_60: 4.57001410e-12 - art_sys_61: -3.71440151e-19 - art_sys_62: 9.78014916e-14 - art_sys_63: -2.04928842e-13 - art_sys_64: 1.54415219e-15 - art_sys_65: -7.63719992e-18 - art_sys_66: -1.07075603e-16 - art_sys_67: -8.35933872e-17 - art_sys_68: -7.59730454e-19 - art_sys_69: 1.43186023e-19 - art_sys_70: -1.63708854e-19 - art_sys_71: 7.44392487e-20 - art_sys_72: -2.05330598e-20 - art_sys_73: 5.84384430e-21 - art_sys_74: 1.66603232e-16 - art_sys_75: -9.09770004e-21 - art_sys_76: 1.76760566e-17 - art_sys_77: 5.57527012e-18 - art_sys_78: -2.20244591e-18 - art_sys_79: -1.09150692e-22 - art_sys_80: 4.43436460e-19 - art_sys_81: -4.50798112e-16 - art_sys_82: 1.02480010e-12 - art_sys_83: -5.24080745e-19 - art_sys_84: -1.01084568e-19 - art_sys_85: -1.65290466e-19 - art_sys_86: 3.99491823e-20 - art_sys_87: 3.48329829e-17 - art_sys_88: -1.84912310e-17 - art_sys_89: 9.69181941e-21 - art_sys_90: 4.90699953e-17 - art_sys_91: -2.15003090e-07 - art_sys_92: -1.15168272e-21 - art_sys_93: 2.10665721e-21 - art_sys_94: -1.73770329e-18 - art_sys_95: -3.35923414e-14 - art_sys_96: 8.45507712e-08 - art_sys_97: 1.49734048e-15 - art_sys_98: -4.86080002e-15 - art_sys_99: 6.23123608e-08 - art_sys_100: -5.54312570e-14 - art_sys_101: -3.15854956e-08 - art_sys_102: 3.86341716e-16 - art_sys_103: -1.33514587e-14 - art_sys_104: 1.63260727e-08 - art_sys_105: 1.56208370e-20 - art_sys_106: -7.05420977e-09 - art_sys_107: -4.51705866e-16 - art_sys_108: -7.96366712e-20 - art_sys_109: 9.53463452e-21 - art_sys_110: -6.43462800e-15 - art_sys_111: 2.83966533e-09 - art_sys_112: 1.08113131e-15 - art_sys_113: 9.45398270e-14 - art_sys_114: 5.84826577e-22 - art_sys_115: -1.06290435e-09 - art_sys_116: 2.91508556e-16 - art_sys_117: 1.96812499e-20 - art_sys_118: 3.74410868e-10 - art_sys_119: 1.29977517e-16 - art_sys_120: -1.31447036e-15 - art_sys_121: 2.62721284e-22 - art_sys_122: -1.58441050e-10 - art_sys_123: -1.80965811e-17 - art_sys_124: 5.75207996e-11 - art_sys_125: -3.61497248e-22 - art_sys_126: -3.78598332e-16 - art_sys_127: 7.45818662e-19 - art_sys_128: -1.93768553e-11 - art_sys_129: 5.60509355e-22 - art_sys_130: -7.44347904e-18 - art_sys_131: -8.20189783e-21 - art_sys_132: -6.46228785e-12 - art_sys_133: 1.42917290e-17 - art_sys_134: -5.96110490e-17 - art_sys_135: 2.11589951e-12 - art_sys_136: 1.48107786e-21 - art_sys_137: -5.57516776e-19 - art_sys_138: 5.51424999e-13 - art_sys_139: 1.20772267e-17 - art_sys_140: -1.23976391e-21 - art_sys_141: 3.74723001e-18 - art_sys_142: 1.86782973e-13 - art_sys_143: 3.44500018e-18 - art_sys_144: -5.86871937e-20 - art_sys_145: 3.14169169e-14 - art_sys_146: -1.91811962e-18 - art_sys_147: 2.17584069e-20 - art_sys_148: -7.36573937e-22 - art_sys_149: -3.18056242e-15 - art_sys_150: 9.15449976e-17 - art_sys_151: 4.94689154e-18 - art_sys_152: -8.64598533e-20 - art_sys_153: 1.26187233e-17 - art_sys_154: -8.42544281e-17 - art_sys_155: -4.61669485e-20 - art_sys_156: 0.0 - art_sys_157: -3.52777550e-17 - art_sys_158: 0.0 - art_sys_159: 5.60911928e-18 - art_sys_160: -7.30051207e-19 - art_sys_161: -6.27495338e-19 - art_sys_162: -6.27495338e-19 - art_sys_163: -6.47924167e-19 - art_sys_164: -6.47924167e-19 - art_sys_165: 7.30824115e-33 - art_sys_166: -2.42577813e-33 - art_sys_167: -0.0 - art_sys_168: 7.80779736e-30 - art_sys_169: 1.29481124e-28 - art_sys_170: -3.46321932e-29 - art_sys_171: -2.45802692e-27 - art_sys_172: 2.95484577e-28 - art_sys_173: 2.70505214e-29 - art_sys_174: -2.66948055e-29 - art_sys_175: 3.89781773e-31 - art_sys_176: -3.97703238e-31 - art_sys_177: 1.04848729e-32 - art_sys_178: -4.32017097e-33 - art_sys_179: 1.40652364e-32 - art_sys_180: 1.45879075e-31 - art_sys_181: -3.39534840e-31 - art_sys_182: -9.61041297e-33 - art_sys_183: 1.15561966e-33 - art_sys_184: -2.68770961e-35 - art_sys_185: -2.67308101e-35 + art_sys_49: 2.48080240e-12 + art_sys_50: -1.41429223e-18 + art_sys_51: -2.94698222e-18 + art_sys_52: -2.40148129e-04 + art_sys_53: -1.17787998e-12 + art_sys_54: 7.47640835e-14 + art_sys_55: 1.15149963e-04 + art_sys_56: 5.06167689e-13 + art_sys_57: -1.21361573e-15 + art_sys_58: -7.05952790e-16 + art_sys_59: -2.29078193e-16 + art_sys_60: 4.23208919e-15 + art_sys_61: -2.94494360e-17 + art_sys_62: -4.13388994e-18 + art_sys_63: -1.29905863e-17 + art_sys_64: 1.04995857e-18 + art_sys_65: 4.03653437e-18 + art_sys_66: 1.25598275e-17 + art_sys_67: -2.16681055e-19 + art_sys_68: -3.67388055e-19 + art_sys_69: -4.64338970e-14 + art_sys_70: 2.87588471e-05 + art_sys_71: -6.21040640e-13 + art_sys_72: -1.32321933e-13 + art_sys_73: 6.75940612e-15 + art_sys_74: 9.30761556e-13 + art_sys_75: 3.49934897e-19 + art_sys_76: -1.46523809e-17 + art_sys_77: 1.06389593e-17 + art_sys_78: -1.79195342e-18 + art_sys_79: -1.93152865e-16 + art_sys_80: 1.24738371e-12 + art_sys_81: -1.69965427e-18 + art_sys_82: -3.13188028e-19 + art_sys_83: 2.12094233e-19 + art_sys_84: 8.15258058e-16 + art_sys_85: 3.45217057e-19 + art_sys_86: 4.30100408e-20 + art_sys_87: 2.05102541e-18 + art_sys_88: 1.55465374e-20 + art_sys_89: 1.38484341e-20 + art_sys_90: 2.15002135e-07 + art_sys_91: -8.45496112e-08 + art_sys_92: -2.33805979e-15 + art_sys_93: -2.93189282e-14 + art_sys_94: 7.63013151e-15 + art_sys_95: 6.23124523e-08 + art_sys_96: 4.68100190e-20 + art_sys_97: 8.55375046e-15 + art_sys_98: -3.15855066e-08 + art_sys_99: 3.81395961e-14 + art_sys_100: -4.79873791e-16 + art_sys_101: 1.63264806e-08 + art_sys_102: -9.64152169e-21 + art_sys_103: 4.79812198e-16 + art_sys_104: 7.05470643e-09 + art_sys_105: 9.91026689e-21 + art_sys_106: -2.83968545e-09 + art_sys_107: 9.02261510e-14 + art_sys_108: 4.83971150e-17 + art_sys_109: -2.34129144e-15 + art_sys_110: 8.98481728e-21 + art_sys_111: -1.06291910e-09 + art_sys_112: 4.51734291e-17 + art_sys_113: -1.30062816e-22 + art_sys_114: 3.74300856e-10 + art_sys_115: 1.38218833e-18 + art_sys_116: -1.34431789e-15 + art_sys_117: 5.83620733e-22 + art_sys_118: 1.58344590e-10 + art_sys_119: 7.02797122e-20 + art_sys_120: -5.75392082e-11 + art_sys_121: 4.06683411e-17 + art_sys_122: -1.93700180e-11 + art_sys_123: -4.49941119e-18 + art_sys_124: 6.46178822e-12 + art_sys_125: -2.11066391e-12 + art_sys_126: -3.11433140e-17 + art_sys_127: -5.51199696e-13 + art_sys_128: 3.84047110e-18 + art_sys_129: -5.49230944e-19 + art_sys_130: 9.42358410e-18 + art_sys_131: 3.56906359e-18 + art_sys_132: -1.86131814e-13 + art_sys_133: -7.25382511e-19 + art_sys_134: -7.81415295e-17 + art_sys_135: -3.18422444e-14 + art_sys_136: -5.73294354e-17 + art_sys_137: 3.38813613e-15 + art_sys_138: 1.54202505e-17 + art_sys_139: 5.37212219e-17 + art_sys_140: 3.02881447e-16 + art_sys_141: -2.53222297e-17 + art_sys_142: -0.0 + art_sys_143: 7.88320985e-17 + art_sys_144: 2.31380079e-17 + art_sys_145: 1.22538227e-17 + art_sys_146: 3.42185992e-22 + art_sys_147: 4.96271356e-23 + art_sys_148: -4.25131769e-20 + art_sys_149: -9.64891849e-21 + art_sys_150: -9.21677909e-22 + art_sys_151: 4.51058720e-20 + art_sys_152: -2.92087278e-20 + art_sys_153: -1.50821549e-21 + art_sys_154: 1.03339704e-20 + art_sys_155: 1.93188848e-20 + art_sys_156: 6.91766035e-20 + art_sys_157: 7.41411150e-21 + art_sys_158: -0.0 + art_sys_159: 3.48133819e-18 + art_sys_160: 3.48133819e-18 + art_sys_161: -1.04149146e-19 + art_sys_162: 4.32077582e-32 + art_sys_163: 0.0 + art_sys_164: 2.76452512e-32 + art_sys_165: 6.03820461e-28 + art_sys_166: 1.98160384e-28 + art_sys_167: -2.14621405e-28 + art_sys_168: 1.15225091e-28 + art_sys_169: -1.73455218e-29 + art_sys_170: -2.91886433e-28 + art_sys_171: -8.28446970e-28 + art_sys_172: 2.77707476e-28 + art_sys_173: 9.47388022e-30 + art_sys_174: 1.96926114e-32 + art_sys_175: 9.93046792e-29 + art_sys_176: -1.30613496e-28 + art_sys_177: 2.17063970e-29 + art_sys_178: 7.41969898e-31 + art_sys_179: 2.38747688e-31 + art_sys_180: -9.45927997e-32 + art_sys_181: -6.96027939e-32 + art_sys_182: -7.96975482e-32 + art_sys_183: -6.16331481e-34 + art_sys_184: -9.20545394e-36 + art_sys_185: 7.42611104e-34 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -7223,191 +7223,191 @@ bins: RelativeStatFSR-: -1.47270705e-02 luminosity_uncertainty: 8.85250600e-01 uncorrelated_uncertainty: 0.340481 -- art_sys_1: -8.43631565e-36 - art_sys_2: 3.17693456e-24 - art_sys_3: 5.25626224e-25 +- art_sys_1: 8.90041955e-36 + art_sys_2: -5.10170949e-23 + art_sys_3: 5.25626211e-25 art_sys_4: -1.62807157e-05 - art_sys_5: 9.37563351e-21 - art_sys_6: -1.02527665e-22 + art_sys_5: 1.11876219e-20 + art_sys_6: -1.96506872e-22 art_sys_7: 1.41548636e-04 - art_sys_8: -1.32901196e-19 + art_sys_8: -1.29416471e-19 art_sys_9: -3.26385127e-04 - art_sys_10: -7.81765115e-22 - art_sys_11: 1.88572331e-20 + art_sys_10: -2.87612738e-21 + art_sys_11: 2.94345904e-21 art_sys_12: 2.02432443e-04 - art_sys_13: 4.21468768e-19 - art_sys_14: 1.44630472e-03 - art_sys_15: 4.95983882e-17 - art_sys_16: 4.59113554e-03 - art_sys_17: 1.77984260e-19 - art_sys_18: 2.39577394e-17 - art_sys_19: -6.42948723e-03 - art_sys_20: 1.75949087e-19 - art_sys_21: -1.07941532e-16 - art_sys_22: -3.22948563e-19 + art_sys_13: -4.65325294e-21 + art_sys_14: -1.44630472e-03 + art_sys_15: -4.64936381e-17 + art_sys_16: -4.59113554e-03 + art_sys_17: 1.24848347e-19 + art_sys_18: 2.41596221e-17 + art_sys_19: 6.42948723e-03 + art_sys_20: 5.79235618e-19 + art_sys_21: -1.04576821e-16 + art_sys_22: -5.91392830e-19 art_sys_23: 2.26209936e-03 - art_sys_24: -2.10925871e-19 - art_sys_25: 1.51148241e-02 + art_sys_24: 3.64124512e-19 + art_sys_25: -1.51148241e-02 art_sys_26: 8.34449412e-03 - art_sys_27: 5.32205979e-16 - art_sys_28: 4.05908908e-14 - art_sys_29: 3.40002789e-16 - art_sys_30: 3.00433775e-02 - art_sys_31: -1.62688334e-13 - art_sys_32: -2.67453018e-17 - art_sys_33: 3.34903185e-02 - art_sys_34: 1.32871390e-02 - art_sys_35: 4.92595937e-14 - art_sys_36: 1.61511539e-14 - art_sys_37: -6.66130022e-15 - art_sys_38: -8.85694190e-16 - art_sys_39: 5.38437907e-16 - art_sys_40: -4.17620902e-16 - art_sys_41: 7.82110741e-16 - art_sys_42: 3.82834068e-17 - art_sys_43: -5.27609175e-17 - art_sys_44: -1.62326691e-17 - art_sys_45: -3.27747554e-17 - art_sys_46: 1.46814564e-18 - art_sys_47: -9.64705851e-12 - art_sys_48: 7.35909623e-03 - art_sys_49: -8.81102110e-11 - art_sys_50: 4.67875229e-18 - art_sys_51: 2.23591820e-18 - art_sys_52: 2.12441982e-11 - art_sys_53: 7.38948602e-04 - art_sys_54: -2.85257102e-12 - art_sys_55: 3.74558018e-04 - art_sys_56: -1.02618036e-12 - art_sys_57: -3.29894512e-17 - art_sys_58: -4.33824187e-19 - art_sys_59: -9.85876395e-05 - art_sys_60: -1.56898943e-11 - art_sys_61: 1.21598169e-18 - art_sys_62: -2.99901881e-13 - art_sys_63: 6.63356938e-13 - art_sys_64: -4.91626634e-15 - art_sys_65: -1.83444274e-16 - art_sys_66: -7.98233504e-17 - art_sys_67: -2.99243758e-17 - art_sys_68: 2.50959414e-18 - art_sys_69: -5.73701631e-19 - art_sys_70: 4.91522837e-19 - art_sys_71: -2.82563522e-19 - art_sys_72: 7.03029228e-20 - art_sys_73: -4.10206336e-20 - art_sys_74: -6.00260147e-16 - art_sys_75: 5.59634799e-21 - art_sys_76: -5.64300797e-17 - art_sys_77: -2.00779124e-17 - art_sys_78: 7.21879193e-18 - art_sys_79: 4.64587240e-20 - art_sys_80: -1.55774325e-18 - art_sys_81: 1.60317899e-15 - art_sys_82: -3.42912130e-12 - art_sys_83: 1.49478566e-18 - art_sys_84: 3.13100966e-19 - art_sys_85: 5.19533941e-19 - art_sys_86: -1.24268996e-19 - art_sys_87: -1.22960890e-16 - art_sys_88: 6.70217173e-17 - art_sys_89: -2.35596832e-20 - art_sys_90: -1.81699225e-16 - art_sys_91: 6.31219706e-07 - art_sys_92: 5.90809327e-22 - art_sys_93: -7.23840205e-21 - art_sys_94: 6.42309891e-18 - art_sys_95: 1.11446094e-13 - art_sys_96: -3.00629709e-07 - art_sys_97: 9.31617757e-15 - art_sys_98: 1.52137953e-14 - art_sys_99: -2.12256646e-07 - art_sys_100: 1.93520003e-13 - art_sys_101: 1.09898120e-07 - art_sys_102: -1.31453198e-15 - art_sys_103: 4.59981188e-14 - art_sys_104: -5.82295642e-08 - art_sys_105: -5.73776374e-20 - art_sys_106: 2.52480209e-08 - art_sys_107: 1.66993806e-15 - art_sys_108: 2.93451353e-19 - art_sys_109: -3.48622081e-20 - art_sys_110: 2.36733954e-14 - art_sys_111: -1.03059440e-08 - art_sys_112: -3.97261246e-15 - art_sys_113: -3.45271234e-13 - art_sys_114: -2.13793159e-21 - art_sys_115: 3.87315334e-09 - art_sys_116: -1.07706932e-15 - art_sys_117: -7.15729183e-20 - art_sys_118: -1.37225358e-09 - art_sys_119: -4.80986397e-16 - art_sys_120: 4.86463797e-15 - art_sys_121: -1.46076137e-22 - art_sys_122: 5.82502261e-10 - art_sys_123: 6.70930560e-17 - art_sys_124: -2.12002317e-10 - art_sys_125: 1.30102766e-21 - art_sys_126: 1.40173036e-15 - art_sys_127: -2.76876794e-18 - art_sys_128: 7.15870556e-11 - art_sys_129: -2.10134863e-21 - art_sys_130: 2.76163877e-17 - art_sys_131: 3.04146277e-20 - art_sys_132: 2.39035812e-11 - art_sys_133: -5.30247542e-17 - art_sys_134: 2.21218163e-16 - art_sys_135: -7.83467108e-12 - art_sys_136: -5.50476817e-21 - art_sys_137: 2.06917731e-18 - art_sys_138: -2.04349262e-12 - art_sys_139: -4.48039135e-17 - art_sys_140: 4.60085097e-21 - art_sys_141: -1.38890620e-17 - art_sys_142: -6.92444199e-13 - art_sys_143: -1.27762030e-17 - art_sys_144: 2.17546424e-19 - art_sys_145: -1.16531347e-13 - art_sys_146: 7.11448113e-18 - art_sys_147: -8.07078445e-20 - art_sys_148: 2.71882341e-21 - art_sys_149: 1.18010179e-14 - art_sys_150: -3.39662635e-16 - art_sys_151: -1.83516637e-17 - art_sys_152: 3.20777223e-19 - art_sys_153: -4.68144467e-17 - art_sys_154: 3.10178213e-16 - art_sys_155: 1.71285870e-19 - art_sys_156: -0.0 - art_sys_157: 1.30864496e-16 - art_sys_158: -0.0 - art_sys_159: -2.08085272e-17 - art_sys_160: 2.70819190e-18 - art_sys_161: 2.32797399e-18 - art_sys_162: 2.32797399e-18 - art_sys_163: 2.40368860e-18 - art_sys_164: 2.40368860e-18 - art_sys_165: -2.71124524e-32 - art_sys_166: 8.99927111e-33 - art_sys_167: 0.0 - art_sys_168: -2.16195732e-28 - art_sys_169: 1.45286660e-28 - art_sys_170: -4.06166593e-28 - art_sys_171: -2.99004409e-27 - art_sys_172: -1.09341248e-28 - art_sys_173: -2.68330765e-29 - art_sys_174: 1.54679184e-29 - art_sys_175: 2.48293864e-30 - art_sys_176: -2.66140691e-31 - art_sys_177: -2.49581393e-32 - art_sys_178: 1.99753205e-32 - art_sys_179: -5.21856774e-32 - art_sys_180: -5.41179775e-31 - art_sys_181: 1.39654031e-30 - art_sys_182: 1.38247854e-31 - art_sys_183: -6.54622382e-35 - art_sys_184: 7.53094653e-35 - art_sys_185: 9.90800465e-35 + art_sys_27: -5.32362232e-16 + art_sys_28: 4.05526894e-14 + art_sys_29: -1.56270818e-14 + art_sys_30: -1.64499759e-14 + art_sys_31: 1.14496340e-14 + art_sys_32: -2.48670863e-15 + art_sys_33: 1.60401969e-15 + art_sys_34: -1.56716247e-15 + art_sys_35: -8.45112530e-16 + art_sys_36: -1.14655554e-14 + art_sys_37: 3.00433775e-02 + art_sys_38: -1.47831303e-16 + art_sys_39: 1.62681473e-13 + art_sys_40: 1.95362039e-12 + art_sys_41: -3.34903185e-02 + art_sys_42: 3.52880080e-17 + art_sys_43: -1.32871390e-02 + art_sys_44: 3.16823584e-17 + art_sys_45: -1.51935664e-13 + art_sys_46: -7.52617372e-14 + art_sys_47: 2.43759150e-17 + art_sys_48: 7.35909621e-03 + art_sys_49: -8.02868511e-12 + art_sys_50: 6.40226997e-18 + art_sys_51: 7.11438100e-18 + art_sys_52: 7.38948594e-04 + art_sys_53: 3.83583472e-12 + art_sys_54: -2.43474546e-13 + art_sys_55: -3.74558018e-04 + art_sys_56: -1.63991281e-12 + art_sys_57: 1.34206235e-15 + art_sys_58: -8.70751604e-17 + art_sys_59: 4.20124159e-16 + art_sys_60: -1.45043445e-14 + art_sys_61: -8.97205054e-17 + art_sys_62: 3.02675543e-17 + art_sys_63: 4.47754516e-17 + art_sys_64: -4.54048624e-18 + art_sys_65: -1.40454985e-17 + art_sys_66: -4.30232169e-17 + art_sys_67: 7.66786271e-19 + art_sys_68: 1.31571193e-18 + art_sys_69: 1.36283110e-13 + art_sys_70: -9.85876367e-05 + art_sys_71: 1.87424656e-12 + art_sys_72: 4.05417684e-13 + art_sys_73: -2.34929302e-14 + art_sys_74: -2.84023479e-12 + art_sys_75: -1.62058504e-19 + art_sys_76: 3.79897496e-17 + art_sys_77: -3.99243903e-17 + art_sys_78: 6.45089345e-18 + art_sys_79: 5.66685649e-16 + art_sys_80: -3.71343531e-12 + art_sys_81: 5.98348239e-18 + art_sys_82: 8.72647774e-19 + art_sys_83: -6.16662718e-19 + art_sys_84: -2.82968413e-15 + art_sys_85: -1.13761019e-18 + art_sys_86: -1.53607065e-19 + art_sys_87: -6.91696950e-18 + art_sys_88: -7.26845400e-20 + art_sys_89: -5.65736797e-20 + art_sys_90: -6.31217219e-07 + art_sys_91: 3.00626214e-07 + art_sys_92: 8.41694778e-15 + art_sys_93: 8.68339555e-14 + art_sys_94: -2.72637357e-14 + art_sys_95: -2.12256960e-07 + art_sys_96: -1.74286339e-19 + art_sys_97: -3.07116641e-14 + art_sys_98: 1.09898160e-07 + art_sys_99: -1.27749201e-13 + art_sys_100: 1.74652104e-15 + art_sys_101: -5.82310237e-08 + art_sys_102: 3.85272552e-20 + art_sys_103: -1.77571011e-15 + art_sys_104: -2.52497910e-08 + art_sys_105: -3.36719705e-20 + art_sys_106: 1.03060180e-08 + art_sys_107: -3.12797598e-13 + art_sys_108: -1.79570881e-16 + art_sys_109: 8.56266203e-15 + art_sys_110: -3.31839588e-20 + art_sys_111: 3.87320686e-09 + art_sys_112: -1.67811795e-16 + art_sys_113: -1.69155745e-21 + art_sys_114: -1.37184754e-09 + art_sys_115: -5.12261771e-18 + art_sys_116: 4.96280261e-15 + art_sys_117: -2.35076287e-21 + art_sys_118: -5.82148272e-10 + art_sys_119: -2.60477956e-19 + art_sys_120: 2.12070147e-10 + art_sys_121: -1.50011169e-16 + art_sys_122: 7.15617443e-11 + art_sys_123: 1.66956505e-17 + art_sys_124: -2.39017472e-11 + art_sys_125: 7.81530255e-12 + art_sys_126: 1.15573714e-16 + art_sys_127: 2.04266047e-12 + art_sys_128: -1.42490783e-17 + art_sys_129: 2.03853718e-18 + art_sys_130: -3.49671095e-17 + art_sys_131: -1.32411791e-17 + art_sys_132: 6.90030945e-13 + art_sys_133: 2.66868004e-18 + art_sys_134: 2.89804024e-16 + art_sys_135: 1.18108568e-13 + art_sys_136: 2.12649583e-16 + art_sys_137: -1.25710092e-14 + art_sys_138: -5.72115612e-17 + art_sys_139: -1.99309221e-16 + art_sys_140: -9.87445188e-16 + art_sys_141: 9.39511119e-17 + art_sys_142: 0.0 + art_sys_143: -2.92413321e-16 + art_sys_144: -8.58272175e-17 + art_sys_145: -4.54676948e-17 + art_sys_146: -1.14338519e-21 + art_sys_147: -1.63028796e-22 + art_sys_148: 1.58343257e-19 + art_sys_149: 3.57330056e-20 + art_sys_150: 3.43090848e-21 + art_sys_151: -1.67319076e-19 + art_sys_152: 1.08284643e-19 + art_sys_153: 5.59064181e-21 + art_sys_154: -3.83435641e-20 + art_sys_155: -7.16849979e-20 + art_sys_156: -2.56654446e-19 + art_sys_157: -2.75095749e-20 + art_sys_158: 0.0 + art_sys_159: -1.29168268e-17 + art_sys_160: -1.29168268e-17 + art_sys_161: 3.86485114e-19 + art_sys_162: -1.60333596e-31 + art_sys_163: -0.0 + art_sys_164: -1.02583293e-31 + art_sys_165: -1.61151796e-27 + art_sys_166: -9.89766237e-28 + art_sys_167: 8.97078358e-28 + art_sys_168: -2.51013743e-28 + art_sys_169: -9.04997411e-29 + art_sys_170: 1.76197798e-29 + art_sys_171: 2.64668233e-27 + art_sys_172: 1.03951146e-28 + art_sys_173: -1.20943909e-27 + art_sys_174: -7.30659284e-32 + art_sys_175: 1.10691249e-29 + art_sys_176: 9.12851440e-29 + art_sys_177: -1.81497837e-29 + art_sys_178: 2.77276904e-30 + art_sys_179: 9.06755648e-32 + art_sys_180: -1.57763826e-31 + art_sys_181: 1.02519584e-31 + art_sys_182: -6.89576825e-32 + art_sys_183: -3.91468401e-34 + art_sys_184: 4.89565951e-35 + art_sys_185: -2.75617426e-33 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -7514,191 +7514,191 @@ bins: RelativeStatFSR-: -8.93267573e-03 luminosity_uncertainty: 4.98937400e-01 uncorrelated_uncertainty: 1.91899000e-01 -- art_sys_1: -1.91509191e-36 - art_sys_2: 7.21177048e-25 - art_sys_3: 1.20996621e-25 +- art_sys_1: 2.02041739e-36 + art_sys_2: -1.15810877e-23 + art_sys_3: 1.20996618e-25 art_sys_4: -3.69578857e-06 - art_sys_5: 1.30332333e-21 - art_sys_6: -2.32476930e-23 + art_sys_5: 1.71687452e-21 + art_sys_6: -4.45964829e-23 art_sys_7: 1.86157521e-05 - art_sys_8: -1.30177475e-20 + art_sys_8: -1.18815719e-20 art_sys_9: -4.51006397e-05 - art_sys_10: -1.80165047e-22 - art_sys_11: -1.72715183e-20 + art_sys_10: -4.19118664e-22 + art_sys_11: -2.14154388e-20 art_sys_12: 2.12328423e-05 - art_sys_13: 1.33709671e-19 - art_sys_14: 4.57284220e-04 - art_sys_15: 3.04152312e-18 - art_sys_16: 4.72403197e-04 - art_sys_17: 2.95373556e-20 - art_sys_18: 1.24819252e-15 - art_sys_19: -1.74535513e-03 - art_sys_20: 1.52156424e-19 - art_sys_21: 6.38605544e-17 - art_sys_22: -4.89686476e-20 + art_sys_13: -4.45516509e-22 + art_sys_14: -4.57284220e-04 + art_sys_15: -2.65860618e-18 + art_sys_16: -4.72403197e-04 + art_sys_17: 2.14921939e-20 + art_sys_18: 1.24808444e-15 + art_sys_19: 1.74535513e-03 + art_sys_20: 1.54703028e-19 + art_sys_21: 6.46701393e-17 + art_sys_22: -1.25530734e-19 art_sys_23: 1.30039188e-03 - art_sys_24: 9.22178703e-16 - art_sys_25: 6.93468702e-04 + art_sys_24: 9.22353650e-16 + art_sys_25: -6.93468702e-04 art_sys_26: -1.35642782e-02 - art_sys_27: -1.66875860e-16 - art_sys_28: -5.09123953e-15 - art_sys_29: -4.83814465e-17 - art_sys_30: -2.52256748e-03 - art_sys_31: -7.81904409e-14 - art_sys_32: -7.15064432e-18 - art_sys_33: 2.88018839e-02 - art_sys_34: -1.72128100e-02 - art_sys_35: -8.90427833e-14 - art_sys_36: -2.28679924e-14 - art_sys_37: 9.74269109e-15 - art_sys_38: 9.28273523e-16 - art_sys_39: -2.86405201e-16 - art_sys_40: 8.45287483e-16 - art_sys_41: -9.60156512e-16 - art_sys_42: -9.03050876e-18 - art_sys_43: 4.86606144e-17 - art_sys_44: 1.35472801e-17 - art_sys_45: 4.90725381e-17 - art_sys_46: 7.59082005e-18 - art_sys_47: 1.24433357e-11 - art_sys_48: -9.49217944e-03 - art_sys_49: 1.13672956e-10 - art_sys_50: -1.00402436e-18 - art_sys_51: -3.22461259e-18 - art_sys_52: -2.73942324e-11 - art_sys_53: -1.81858121e-03 - art_sys_54: 6.95437974e-12 - art_sys_55: -8.39999665e-04 - art_sys_56: 1.36629626e-12 - art_sys_57: 4.25455151e-17 - art_sys_58: 9.81318851e-19 - art_sys_59: 2.58750531e-04 - art_sys_60: 4.10311389e-11 - art_sys_61: -3.87793882e-18 - art_sys_62: 7.43156350e-13 - art_sys_63: -1.93176582e-12 - art_sys_64: -2.62962143e-15 - art_sys_65: 2.38957804e-15 - art_sys_66: -5.09421821e-16 - art_sys_67: 6.97315538e-17 - art_sys_68: -1.19884654e-17 - art_sys_69: 2.32102727e-18 - art_sys_70: -1.71874318e-18 - art_sys_71: 1.02872855e-18 - art_sys_72: -2.41254705e-19 - art_sys_73: 8.97859483e-20 - art_sys_74: 1.71254990e-15 - art_sys_75: -5.15123233e-20 - art_sys_76: 1.98473729e-16 - art_sys_77: 6.21884150e-17 - art_sys_78: -2.34053878e-17 - art_sys_79: -9.12304304e-20 - art_sys_80: 4.94379968e-18 - art_sys_81: -4.65812795e-15 - art_sys_82: 1.07856147e-11 - art_sys_83: -5.78912320e-18 - art_sys_84: -8.28272552e-19 - art_sys_85: -1.89072870e-18 - art_sys_86: 4.26120700e-19 - art_sys_87: 4.00479187e-16 - art_sys_88: -2.19947632e-16 - art_sys_89: 1.14372329e-19 - art_sys_90: 6.00147456e-16 - art_sys_91: -2.34692545e-06 - art_sys_92: -1.71252346e-20 - art_sys_93: 2.26261166e-20 - art_sys_94: -2.11841924e-17 - art_sys_95: -3.73487835e-13 - art_sys_96: 8.73674691e-07 - art_sys_97: -9.84904348e-14 - art_sys_98: -4.89415429e-14 - art_sys_99: 7.07349114e-07 - art_sys_100: -6.31635559e-13 - art_sys_101: -3.58462920e-07 - art_sys_102: 4.20058491e-15 - art_sys_103: -1.48215025e-13 - art_sys_104: 1.90093985e-07 - art_sys_105: 1.88749306e-19 - art_sys_106: -8.30441321e-08 - art_sys_107: -5.50650188e-15 - art_sys_108: -9.67650685e-19 - art_sys_109: 1.14699423e-19 - art_sys_110: -7.79978046e-14 - art_sys_111: 3.37871996e-08 - art_sys_112: 1.30881997e-14 - art_sys_113: 1.15140830e-12 - art_sys_114: 6.98307773e-21 - art_sys_115: -1.27556970e-08 - art_sys_116: 3.55038012e-15 - art_sys_117: 2.35071024e-19 - art_sys_118: 4.51536404e-09 - art_sys_119: 1.58623609e-15 - art_sys_120: -1.60455751e-14 - art_sys_121: 4.21733525e-22 - art_sys_122: -1.91895892e-09 - art_sys_123: -2.21326701e-16 - art_sys_124: 6.98755512e-10 - art_sys_125: -4.24171272e-21 - art_sys_126: -4.62239172e-15 - art_sys_127: 9.13647060e-18 - art_sys_128: -2.35972625e-10 - art_sys_129: 6.91745897e-21 - art_sys_130: -9.11049603e-17 - art_sys_131: -1.00352786e-19 - art_sys_132: -7.88293939e-11 - art_sys_133: 1.74920329e-16 - art_sys_134: -7.29794334e-16 - art_sys_135: 2.58375230e-11 - art_sys_136: 1.81730013e-20 - art_sys_137: -6.82357596e-18 - art_sys_138: 6.74017658e-12 - art_sys_139: 1.47796025e-16 - art_sys_140: -1.51771724e-20 - art_sys_141: 4.58152921e-17 - art_sys_142: 2.28415661e-12 - art_sys_143: 4.21454240e-17 - art_sys_144: -7.17569287e-19 - art_sys_145: 3.84414924e-13 - art_sys_146: -2.34686937e-17 - art_sys_147: 2.66237184e-19 - art_sys_148: -8.97397869e-21 - art_sys_149: -3.89281046e-14 - art_sys_150: 1.12044348e-15 - art_sys_151: 6.05501444e-17 - art_sys_152: -1.05814535e-18 - art_sys_153: 1.54437405e-16 - art_sys_154: -1.06108029e-15 - art_sys_155: -5.64942266e-19 - art_sys_156: 0.0 - art_sys_157: -4.31860526e-16 - art_sys_158: 0.0 - art_sys_159: 6.86543369e-17 - art_sys_160: -8.93679097e-18 - art_sys_161: -7.67930410e-18 - art_sys_162: -7.67930410e-18 - art_sys_163: -7.93005934e-18 - art_sys_164: -7.93005934e-18 - art_sys_165: 8.94456803e-32 - art_sys_166: -2.96890715e-32 - art_sys_167: -0.0 - art_sys_168: 4.32968708e-28 - art_sys_169: 5.72593907e-28 - art_sys_170: -7.24391035e-28 - art_sys_171: -4.12783772e-27 - art_sys_172: -7.11645992e-29 - art_sys_173: 1.29410794e-29 - art_sys_174: -5.42332938e-30 - art_sys_175: 7.65576838e-30 - art_sys_176: -2.36849617e-30 - art_sys_177: 1.02529218e-31 - art_sys_178: -9.08376535e-32 - art_sys_179: 1.72099601e-31 - art_sys_180: 1.78550429e-30 - art_sys_181: -4.39796038e-30 - art_sys_182: -7.00666489e-31 - art_sys_183: -5.63237097e-33 - art_sys_184: -2.34398565e-34 - art_sys_185: -3.26610038e-34 + art_sys_27: 1.67557263e-16 + art_sys_28: -5.08989208e-15 + art_sys_29: 2.01033023e-14 + art_sys_30: -2.12919710e-14 + art_sys_31: -3.18564146e-15 + art_sys_32: 3.22556429e-15 + art_sys_33: 2.92627898e-15 + art_sys_34: -7.45227042e-16 + art_sys_35: 8.37171467e-16 + art_sys_36: 9.42446323e-16 + art_sys_37: -2.52256748e-03 + art_sys_38: 2.03780795e-16 + art_sys_39: 7.82403225e-14 + art_sys_40: 1.68014266e-12 + art_sys_41: -2.88018839e-02 + art_sys_42: -5.05591849e-17 + art_sys_43: 1.72128100e-02 + art_sys_44: -4.88403407e-17 + art_sys_45: 1.71862380e-13 + art_sys_46: 9.70992784e-14 + art_sys_47: -2.10412605e-17 + art_sys_48: -9.49217941e-03 + art_sys_49: 1.12140259e-11 + art_sys_50: 2.12145533e-18 + art_sys_51: -1.11119453e-17 + art_sys_52: -1.81858119e-03 + art_sys_53: -4.95525616e-12 + art_sys_54: 5.43732830e-13 + art_sys_55: 8.39999666e-04 + art_sys_56: 2.26984122e-12 + art_sys_57: -4.81792792e-15 + art_sys_58: -1.21292746e-15 + art_sys_59: -1.37922212e-16 + art_sys_60: 3.80450250e-14 + art_sys_61: 2.95226216e-16 + art_sys_62: -8.29278578e-17 + art_sys_63: -1.20171133e-16 + art_sys_64: 1.25925446e-17 + art_sys_65: 3.69292679e-17 + art_sys_66: 1.12741236e-16 + art_sys_67: -1.99673915e-18 + art_sys_68: -3.45854359e-18 + art_sys_69: -5.06900704e-13 + art_sys_70: 2.58750524e-04 + art_sys_71: -6.52803457e-12 + art_sys_72: -9.83436369e-13 + art_sys_73: 7.67480031e-14 + art_sys_74: 9.67855313e-12 + art_sys_75: 2.91826834e-19 + art_sys_76: -1.61837693e-16 + art_sys_77: 1.23293544e-16 + art_sys_78: -2.32051700e-17 + art_sys_79: -2.10599119e-15 + art_sys_80: 1.36773084e-11 + art_sys_81: -1.88586544e-17 + art_sys_82: -3.33490569e-18 + art_sys_83: 2.33313151e-18 + art_sys_84: 8.54017111e-15 + art_sys_85: 3.82778149e-18 + art_sys_86: 4.50050559e-19 + art_sys_87: 2.19401894e-17 + art_sys_88: 2.17711059e-19 + art_sys_89: 1.80548009e-19 + art_sys_90: 2.34691480e-06 + art_sys_91: -8.73661926e-07 + art_sys_92: -2.78345312e-14 + art_sys_93: -3.42322463e-13 + art_sys_94: 8.96606387e-14 + art_sys_95: 7.07350105e-07 + art_sys_96: 5.73804607e-19 + art_sys_97: 1.00507370e-13 + art_sys_98: -3.58463014e-07 + art_sys_99: 3.37343150e-13 + art_sys_100: -5.75729411e-15 + art_sys_101: 1.90098783e-07 + art_sys_102: -1.24904680e-19 + art_sys_103: 5.85391796e-15 + art_sys_104: 8.30499119e-08 + art_sys_105: 1.08774565e-19 + art_sys_106: -3.37874464e-08 + art_sys_107: 1.04848521e-12 + art_sys_108: 5.91946851e-16 + art_sys_109: -2.81965377e-14 + art_sys_110: 1.08796300e-19 + art_sys_111: -1.27558721e-08 + art_sys_112: 5.53826832e-16 + art_sys_113: 5.31661226e-21 + art_sys_114: 4.51402554e-09 + art_sys_115: 1.69023077e-17 + art_sys_116: -1.63518010e-14 + art_sys_117: 7.69646806e-21 + art_sys_118: 1.91779311e-09 + art_sys_119: 8.59183663e-19 + art_sys_120: -6.98978972e-10 + art_sys_121: 4.94453372e-16 + art_sys_122: -2.35889120e-10 + art_sys_123: -5.50790940e-17 + art_sys_124: 7.88233728e-11 + art_sys_125: -2.57736541e-11 + art_sys_126: -3.81270452e-16 + art_sys_127: -6.73743365e-12 + art_sys_128: 4.70162443e-17 + art_sys_129: -6.72892530e-18 + art_sys_130: 1.15358746e-16 + art_sys_131: 4.36740208e-17 + art_sys_132: -2.27619671e-12 + art_sys_133: -8.80032030e-18 + art_sys_134: -9.55994904e-16 + art_sys_135: -3.89617838e-13 + art_sys_136: -7.01503162e-16 + art_sys_137: 4.14681752e-14 + art_sys_138: 1.88730902e-16 + art_sys_139: 6.57485337e-16 + art_sys_140: 3.36410658e-15 + art_sys_141: -3.09870914e-16 + art_sys_142: -0.0 + art_sys_143: 9.64626043e-16 + art_sys_144: 2.83170329e-16 + art_sys_145: 1.49923471e-16 + art_sys_146: 3.80175517e-21 + art_sys_147: 5.47751181e-22 + art_sys_148: -5.23083489e-19 + art_sys_149: -1.18072968e-19 + art_sys_150: -1.13141132e-20 + art_sys_151: 5.52334744e-19 + art_sys_152: -3.57206672e-19 + art_sys_153: -1.84476991e-20 + art_sys_154: 1.26514347e-19 + art_sys_155: 2.36402029e-19 + art_sys_156: 8.46565848e-19 + art_sys_157: 9.06960159e-20 + art_sys_158: -0.0 + art_sys_159: 4.26129686e-17 + art_sys_160: 4.26129686e-17 + art_sys_161: -1.27468578e-18 + art_sys_162: 5.28826899e-31 + art_sys_163: 0.0 + art_sys_164: 3.38356322e-31 + art_sys_165: 4.87029599e-27 + art_sys_166: 3.12472375e-27 + art_sys_167: -2.92304548e-27 + art_sys_168: 9.14517213e-28 + art_sys_169: 2.10253988e-28 + art_sys_170: -1.04476268e-27 + art_sys_171: 1.07618698e-26 + art_sys_172: -1.21736983e-26 + art_sys_173: 3.29818628e-27 + art_sys_174: 2.40965053e-31 + art_sys_175: -1.09699156e-28 + art_sys_176: 5.77952296e-29 + art_sys_177: -1.67665387e-29 + art_sys_178: -1.17546588e-29 + art_sys_179: 6.23814749e-32 + art_sys_180: 6.69919488e-31 + art_sys_181: -2.52777514e-31 + art_sys_182: 2.61655226e-31 + art_sys_183: 1.73755630e-33 + art_sys_184: -1.59045641e-34 + art_sys_185: 9.09057252e-33 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -7805,191 +7805,191 @@ bins: RelativeStatFSR-: -5.52135761e-03 luminosity_uncertainty: 2.86829400e-01 uncorrelated_uncertainty: 0.110319 -- art_sys_1: -2.25094264e-37 - art_sys_2: 8.47662243e-26 - art_sys_3: 1.33155015e-26 +- art_sys_1: 2.37480446e-37 + art_sys_2: -1.36122618e-24 + art_sys_3: 1.33155012e-26 art_sys_4: -4.34398244e-07 - art_sys_5: 1.52771280e-22 - art_sys_6: -2.75123373e-24 + art_sys_5: 2.01166572e-22 + art_sys_6: -5.23484390e-24 art_sys_7: 2.23039720e-06 - art_sys_8: -1.32174722e-21 + art_sys_8: -1.33680148e-21 art_sys_9: -4.60379320e-06 - art_sys_10: -1.08644899e-23 - art_sys_11: -5.42734080e-21 + art_sys_10: -3.59194609e-23 + art_sys_11: -5.77702402e-21 art_sys_12: -1.71120699e-06 - art_sys_13: 8.52263448e-21 - art_sys_14: 2.89841913e-05 - art_sys_15: -2.92211707e-19 - art_sys_16: -1.42868628e-04 - art_sys_17: -2.99435705e-21 - art_sys_18: 3.40858235e-17 - art_sys_19: 3.02736511e-06 - art_sys_20: 1.73488771e-20 - art_sys_21: -1.09797447e-15 - art_sys_22: 5.20186066e-21 + art_sys_13: 5.87019400e-23 + art_sys_14: -2.89841913e-05 + art_sys_15: 2.04890463e-19 + art_sys_16: 1.42868628e-04 + art_sys_17: -2.12954526e-21 + art_sys_18: 3.40554411e-17 + art_sys_19: -3.02736511e-06 + art_sys_20: -2.11906513e-21 + art_sys_21: -1.09799452e-15 + art_sys_22: 1.50026724e-20 art_sys_23: 8.75701453e-05 - art_sys_24: 3.72416515e-17 - art_sys_25: -1.29084350e-03 + art_sys_24: 3.72404445e-17 + art_sys_25: 1.29084350e-03 art_sys_26: -1.84058779e-03 - art_sys_27: -6.90801085e-17 - art_sys_28: -6.04360887e-15 - art_sys_29: -5.45934067e-17 - art_sys_30: -4.66127896e-03 - art_sys_31: 1.65383799e-14 - art_sys_32: 6.74984794e-18 - art_sys_33: 1.50838299e-03 - art_sys_34: -2.57894941e-02 - art_sys_35: 1.24028517e-13 - art_sys_36: 2.02621885e-14 - art_sys_37: -1.23425616e-14 - art_sys_38: 1.03991632e-15 - art_sys_39: 1.81121556e-16 - art_sys_40: -7.85421921e-16 - art_sys_41: 9.35987162e-16 - art_sys_42: -1.47229402e-16 - art_sys_43: -1.86232737e-16 - art_sys_44: -8.26435865e-18 - art_sys_45: -5.01461140e-17 - art_sys_46: -5.70540872e-18 - art_sys_47: -1.36927443e-11 + art_sys_27: 6.89285327e-17 + art_sys_28: -6.03761083e-15 + art_sys_29: -2.19687624e-14 + art_sys_30: -1.50444700e-14 + art_sys_31: 2.32616655e-14 + art_sys_32: 4.49398957e-17 + art_sys_33: 3.24319977e-16 + art_sys_34: -1.14867582e-16 + art_sys_35: -6.22288026e-16 + art_sys_36: 1.77456149e-15 + art_sys_37: -4.66127896e-03 + art_sys_38: 3.50857039e-16 + art_sys_39: -1.65267534e-14 + art_sys_40: 8.79976798e-14 + art_sys_41: -1.50838299e-03 + art_sys_42: 5.32482889e-17 + art_sys_43: 2.57894941e-02 + art_sys_44: 5.79067795e-17 + art_sys_45: 5.20663216e-13 + art_sys_46: -9.46980474e-14 + art_sys_47: 2.12789482e-17 art_sys_48: 1.04452736e-02 - art_sys_49: -1.25072974e-10 - art_sys_50: 2.52127525e-18 - art_sys_51: -3.07526353e-18 - art_sys_52: 3.01322639e-11 - art_sys_53: 1.49317503e-03 - art_sys_54: -6.24839250e-12 - art_sys_55: 1.39001685e-03 - art_sys_56: -1.47816895e-12 - art_sys_57: -4.63922711e-17 - art_sys_58: -1.04915225e-18 - art_sys_59: -4.97140055e-04 - art_sys_60: -7.85842642e-11 - art_sys_61: 8.54012140e-18 - art_sys_62: -5.68890565e-13 - art_sys_63: 3.74232056e-12 - art_sys_64: 3.23055656e-15 - art_sys_65: 1.23014947e-15 - art_sys_66: 4.19492420e-17 - art_sys_67: -1.92146310e-17 - art_sys_68: 2.07022912e-17 - art_sys_69: -4.59916047e-18 - art_sys_70: 5.18431965e-18 - art_sys_71: -2.72005958e-18 - art_sys_72: 6.44419680e-19 - art_sys_73: -3.20918125e-19 - art_sys_74: -5.11889425e-15 - art_sys_75: 6.42654683e-20 - art_sys_76: -5.06664932e-16 - art_sys_77: -1.79466718e-16 - art_sys_78: 6.39277466e-17 - art_sys_79: 3.96411981e-20 - art_sys_80: -1.44812933e-17 - art_sys_81: 1.37350233e-14 - art_sys_82: -2.99488465e-11 - art_sys_83: 1.40596967e-17 - art_sys_84: 2.41988616e-18 - art_sys_85: 4.75768649e-18 - art_sys_86: -1.11569835e-18 - art_sys_87: -1.14908716e-15 - art_sys_88: 6.41347346e-16 - art_sys_89: -2.39105221e-19 - art_sys_90: -1.77868871e-15 - art_sys_91: 5.78589707e-06 - art_sys_92: 2.59434713e-20 - art_sys_93: -6.31992449e-20 - art_sys_94: 6.27567212e-17 - art_sys_95: 9.71752315e-13 - art_sys_96: -2.57585717e-06 - art_sys_97: 7.68038304e-13 - art_sys_98: 1.28644233e-13 - art_sys_99: -1.90730808e-06 - art_sys_100: 1.80039664e-12 - art_sys_101: 1.01944430e-06 - art_sys_102: -1.15980804e-14 - art_sys_103: 4.03894539e-13 - art_sys_104: -5.44413380e-07 - art_sys_105: -5.57377281e-19 - art_sys_106: 2.40002580e-07 - art_sys_107: 1.63068264e-14 - art_sys_108: 2.87231021e-18 - art_sys_109: -3.38023758e-19 - art_sys_110: 2.30106603e-13 - art_sys_111: -9.86771942e-08 - art_sys_112: -3.85747510e-14 - art_sys_113: -3.41726835e-12 - art_sys_114: -2.08562542e-20 - art_sys_115: 3.73424485e-08 - art_sys_116: -1.05108548e-14 - art_sys_117: -6.88094290e-19 - art_sys_118: -1.32979416e-08 - art_sys_119: -4.70127427e-15 - art_sys_120: 4.75590595e-14 - art_sys_121: -1.30570337e-21 - art_sys_122: 5.65812525e-09 - art_sys_123: 6.56949542e-16 - art_sys_124: -2.06536195e-09 - art_sys_125: 1.28928167e-20 - art_sys_126: 1.37066952e-14 - art_sys_127: -2.71403953e-17 - art_sys_128: 6.98551980e-10 - art_sys_129: -2.06333361e-20 - art_sys_130: 2.70523841e-16 - art_sys_131: 2.97906840e-19 - art_sys_132: 2.33552724e-10 - art_sys_133: -5.19391791e-16 - art_sys_134: 2.16742157e-15 - art_sys_135: -7.66171557e-11 - art_sys_136: -5.39354046e-20 - art_sys_137: 2.02669630e-17 - art_sys_138: -1.99960835e-11 - art_sys_139: -4.38809888e-16 - art_sys_140: 4.50764593e-20 - art_sys_141: -1.35946386e-16 - art_sys_142: -6.77881369e-12 - art_sys_143: -1.25107530e-16 - art_sys_144: 2.12948414e-18 - art_sys_145: -1.14125668e-12 - art_sys_146: 6.96740392e-17 - art_sys_147: -7.90411756e-19 - art_sys_148: 2.65705583e-20 - art_sys_149: 1.15590731e-13 - art_sys_150: -3.32697143e-15 - art_sys_151: -1.79764085e-16 - art_sys_152: 3.14190185e-18 - art_sys_153: -4.58538630e-16 - art_sys_154: 3.14101842e-15 - art_sys_155: 1.67754516e-18 - art_sys_156: -0.0 - art_sys_157: 1.28202388e-15 - art_sys_158: -0.0 - art_sys_159: -2.03827209e-16 - art_sys_160: 2.65305261e-17 - art_sys_161: 2.28012675e-17 - art_sys_162: 2.28012675e-17 - art_sys_163: 2.35443115e-17 - art_sys_164: 2.35443115e-17 - art_sys_165: -2.65566199e-31 - art_sys_166: 8.81476439e-32 - art_sys_167: 0.0 - art_sys_168: -1.49211559e-27 - art_sys_169: -4.58939531e-28 - art_sys_170: -1.91307987e-28 - art_sys_171: 9.23701356e-28 - art_sys_172: -3.38614585e-28 - art_sys_173: -1.76110053e-28 - art_sys_174: 5.70214551e-29 - art_sys_175: -3.20378471e-31 - art_sys_176: 2.39013116e-30 - art_sys_177: -2.32341090e-31 - art_sys_178: 2.59970507e-31 - art_sys_179: -5.11065841e-31 - art_sys_180: -5.30101574e-30 - art_sys_181: 1.28845815e-29 - art_sys_182: 6.64273120e-31 - art_sys_183: 5.54286764e-33 - art_sys_184: 7.13686594e-34 - art_sys_185: 9.70009916e-34 + art_sys_49: -1.18347580e-11 + art_sys_50: -1.75214992e-18 + art_sys_51: -1.36185042e-17 + art_sys_52: 1.49317500e-03 + art_sys_53: 5.46548071e-12 + art_sys_54: -9.12313006e-13 + art_sys_55: -1.39001685e-03 + art_sys_56: -2.40617069e-12 + art_sys_57: 7.71013996e-15 + art_sys_58: -3.85591577e-16 + art_sys_59: 3.98718448e-16 + art_sys_60: -7.30766594e-14 + art_sys_61: -4.73393423e-16 + art_sys_62: 1.50348910e-16 + art_sys_63: 2.21834671e-16 + art_sys_64: -2.02167482e-17 + art_sys_65: -7.10519662e-17 + art_sys_66: -2.14955490e-16 + art_sys_67: 3.82202811e-18 + art_sys_68: 6.83394513e-18 + art_sys_69: 1.24934133e-12 + art_sys_70: -4.97140042e-04 + art_sys_71: 1.52552052e-11 + art_sys_72: 7.21739272e-13 + art_sys_73: -2.17855579e-13 + art_sys_74: -2.24097787e-11 + art_sys_75: 1.81158130e-19 + art_sys_76: 3.67791522e-16 + art_sys_77: -3.35333519e-16 + art_sys_78: 6.42680003e-17 + art_sys_79: 5.19139456e-15 + art_sys_80: -3.41075584e-11 + art_sys_81: 5.38347145e-17 + art_sys_82: 8.01931377e-18 + art_sys_83: -5.74188716e-18 + art_sys_84: -2.45659012e-14 + art_sys_85: -1.02703115e-17 + art_sys_86: -1.29056194e-18 + art_sys_87: -6.23330299e-17 + art_sys_88: -6.20213213e-19 + art_sys_89: -5.40473943e-19 + art_sys_90: -5.78587395e-06 + art_sys_91: 2.57582508e-06 + art_sys_92: 8.03331899e-14 + art_sys_93: 9.04297020e-13 + art_sys_94: -2.58942143e-13 + art_sys_95: -1.90731091e-06 + art_sys_96: -1.70245243e-18 + art_sys_97: -2.89715876e-13 + art_sys_98: 1.01944466e-06 + art_sys_99: -7.56274400e-13 + art_sys_100: 1.68245370e-14 + art_sys_101: -5.44427223e-07 + art_sys_102: 3.74271376e-19 + art_sys_103: -1.73459921e-14 + art_sys_104: -2.40019135e-07 + art_sys_105: -3.15487799e-19 + art_sys_106: 9.86779049e-08 + art_sys_107: -2.91007922e-12 + art_sys_108: -1.75842932e-15 + art_sys_109: 8.28916900e-14 + art_sys_110: -3.18714009e-19 + art_sys_111: 3.73429626e-08 + art_sys_112: -1.64600148e-15 + art_sys_113: -2.02487316e-20 + art_sys_114: -1.32939850e-08 + art_sys_115: -5.01833708e-17 + art_sys_116: 4.83708870e-14 + art_sys_117: -2.26157441e-20 + art_sys_118: -5.65469123e-09 + art_sys_119: -2.54330289e-18 + art_sys_120: 2.06602214e-09 + art_sys_121: -1.46204480e-15 + art_sys_122: 6.98304463e-10 + art_sys_123: 1.63559486e-16 + art_sys_124: -2.33535007e-10 + art_sys_125: 7.64279151e-11 + art_sys_126: 1.13219344e-15 + art_sys_127: 1.99879671e-11 + art_sys_128: -1.39614983e-16 + art_sys_129: 1.99802954e-17 + art_sys_130: -3.42556130e-16 + art_sys_131: -1.29678171e-16 + art_sys_132: 6.75519764e-12 + art_sys_133: 2.59835633e-17 + art_sys_134: 2.83789708e-15 + art_sys_135: 1.15670090e-12 + art_sys_136: 2.08263428e-15 + art_sys_137: -1.23132041e-13 + art_sys_138: -5.60383052e-16 + art_sys_139: -1.95219385e-15 + art_sys_140: -9.90916410e-15 + art_sys_141: 9.20150843e-16 + art_sys_142: 0.0 + art_sys_143: -2.86380583e-15 + art_sys_144: -8.40644856e-16 + art_sys_145: -4.45254615e-16 + art_sys_146: -1.10855508e-20 + art_sys_147: -1.55679014e-21 + art_sys_148: 1.55763885e-18 + art_sys_149: 3.50953349e-19 + art_sys_150: 3.35730278e-20 + art_sys_151: -1.63954466e-18 + art_sys_152: 1.06015456e-18 + art_sys_153: 5.47609046e-20 + art_sys_154: -3.75632623e-19 + art_sys_155: -7.02061864e-19 + art_sys_156: -2.51374034e-18 + art_sys_157: -2.69368107e-19 + art_sys_158: 0.0 + art_sys_159: -1.26527867e-16 + art_sys_160: -1.26527867e-16 + art_sys_161: 3.78556754e-18 + art_sys_162: -1.57045656e-30 + art_sys_163: -0.0 + art_sys_164: -1.00479960e-30 + art_sys_165: -1.41773206e-26 + art_sys_166: -9.40076139e-27 + art_sys_167: 8.60908464e-27 + art_sys_168: -2.51663909e-27 + art_sys_169: -1.00650526e-27 + art_sys_170: 2.53498898e-27 + art_sys_171: -4.05693253e-27 + art_sys_172: 6.92117674e-27 + art_sys_173: -1.00679434e-27 + art_sys_174: -7.15573153e-31 + art_sys_175: 1.27771244e-28 + art_sys_176: -3.68950878e-29 + art_sys_177: 1.88986680e-29 + art_sys_178: 3.33390218e-29 + art_sys_179: 1.01142295e-30 + art_sys_180: -1.88815489e-30 + art_sys_181: 8.71959038e-32 + art_sys_182: -1.98291874e-31 + art_sys_183: -1.91318735e-33 + art_sys_184: 4.60132823e-34 + art_sys_185: -2.69994196e-32 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -8096,191 +8096,191 @@ bins: RelativeStatFSR-: -3.46741023e-03 luminosity_uncertainty: 1.67845080e-01 uncorrelated_uncertainty: 6.45558000e-02 -- art_sys_1: -1.10401564e-38 - art_sys_2: 4.15794943e-27 - art_sys_3: 3.44659339e-28 +- art_sys_1: 1.16500397e-38 + art_sys_2: -6.67708121e-26 + art_sys_3: 3.44659322e-28 art_sys_4: -2.13080852e-08 - art_sys_5: 1.52212317e-23 - art_sys_6: -1.36023090e-25 + art_sys_5: 1.75885129e-23 + art_sys_6: -2.56363706e-25 art_sys_7: 2.32125048e-07 - art_sys_8: -2.96228662e-23 + art_sys_8: -2.49289816e-23 art_sys_9: -3.26803189e-07 - art_sys_10: -1.89458856e-24 - art_sys_11: -9.95161173e-22 + art_sys_10: -2.93718614e-24 + art_sys_11: -9.35890267e-22 art_sys_12: -8.30529809e-07 - art_sys_13: -3.22785850e-21 - art_sys_14: -1.10680276e-05 - art_sys_15: -5.84318885e-20 - art_sys_16: -5.37568605e-05 - art_sys_17: -1.93799109e-21 - art_sys_18: 7.64915557e-17 - art_sys_19: 7.89375462e-05 - art_sys_20: -3.17821956e-21 - art_sys_21: -1.50888970e-15 - art_sys_22: 2.33996076e-21 + art_sys_13: 2.24094268e-23 + art_sys_14: 1.10680276e-05 + art_sys_15: 2.13680604e-20 + art_sys_16: 5.37568605e-05 + art_sys_17: -1.42205689e-21 + art_sys_18: 7.64892809e-17 + art_sys_19: -7.89375462e-05 + art_sys_20: -7.99563228e-21 + art_sys_21: -1.50893097e-15 + art_sys_22: 1.06405507e-21 art_sys_23: -4.80404336e-05 - art_sys_24: 3.29257304e-16 - art_sys_25: -2.10807808e-04 + art_sys_24: 3.29249257e-16 + art_sys_25: 2.10807808e-04 art_sys_26: 7.96774297e-04 - art_sys_27: 8.46118360e-18 - art_sys_28: -1.20954895e-16 - art_sys_29: 2.62155233e-18 - art_sys_30: -2.06063268e-04 - art_sys_31: 9.93331604e-15 - art_sys_32: 1.58148138e-18 - art_sys_33: -2.93855390e-03 - art_sys_34: -1.59211395e-03 - art_sys_35: 5.36605786e-14 - art_sys_36: -9.05572148e-15 - art_sys_37: 8.22177223e-15 - art_sys_38: -1.92887184e-15 - art_sys_39: 4.41487466e-15 - art_sys_40: 1.91503857e-15 - art_sys_41: 1.36535335e-15 - art_sys_42: 5.53973344e-16 - art_sys_43: 3.30571999e-17 - art_sys_44: -3.43955543e-17 - art_sys_45: 5.44385286e-17 - art_sys_46: -4.63716944e-18 - art_sys_47: -8.26772496e-12 - art_sys_48: 6.30697300e-03 - art_sys_49: -7.53085181e-11 - art_sys_50: -9.83456945e-18 - art_sys_51: -5.34850694e-18 - art_sys_52: 1.82635023e-11 - art_sys_53: -6.93214815e-03 - art_sys_54: 2.61376311e-11 - art_sys_55: -2.77231373e-03 - art_sys_56: -4.99724805e-13 - art_sys_57: -2.90356308e-17 - art_sys_58: 3.55472148e-18 - art_sys_59: 1.48290203e-03 - art_sys_60: 2.34684967e-10 - art_sys_61: -2.19330919e-17 - art_sys_62: 2.85884647e-12 - art_sys_63: -1.08263049e-11 - art_sys_64: -5.46490167e-15 - art_sys_65: 1.16213916e-16 - art_sys_66: -4.43181817e-16 - art_sys_67: 1.22131850e-16 - art_sys_68: -6.28089309e-17 - art_sys_69: 1.47776687e-17 - art_sys_70: -1.50403479e-17 - art_sys_71: 8.45760469e-18 - art_sys_72: -1.93128100e-18 - art_sys_73: 1.10046455e-18 - art_sys_74: 1.49933400e-14 - art_sys_75: -2.16763922e-19 - art_sys_76: 1.53298782e-15 - art_sys_77: 5.71859192e-16 - art_sys_78: -1.82009314e-16 - art_sys_79: 3.08884476e-19 - art_sys_80: 4.20422980e-17 - art_sys_81: -4.01137194e-14 - art_sys_82: 8.59594849e-11 - art_sys_83: -3.78142954e-17 - art_sys_84: -8.56068173e-18 - art_sys_85: -1.46035535e-17 - art_sys_86: 3.06873164e-18 - art_sys_87: 3.73055014e-15 - art_sys_88: -2.16538581e-15 - art_sys_89: 6.59297028e-19 - art_sys_90: 6.19554985e-15 - art_sys_91: -1.59605822e-05 - art_sys_92: -4.52480513e-20 - art_sys_93: 1.89083726e-19 - art_sys_94: -2.17905210e-16 - art_sys_95: -2.98141467e-12 - art_sys_96: 7.52263748e-06 - art_sys_97: -2.31388379e-12 - art_sys_98: -3.36492384e-13 - art_sys_99: 6.04692905e-06 - art_sys_100: -5.76963295e-12 - art_sys_101: -3.24962585e-06 - art_sys_102: 3.44976074e-14 - art_sys_103: -1.27822566e-12 - art_sys_104: 1.79235036e-06 - art_sys_105: 1.93019046e-18 - art_sys_106: -8.00797533e-07 - art_sys_107: -5.65835096e-14 - art_sys_108: -1.00091124e-17 - art_sys_109: 1.16117463e-18 - art_sys_110: -7.93538448e-13 - art_sys_111: 3.32989938e-07 - art_sys_112: 1.32848347e-13 - art_sys_113: 1.16259650e-11 - art_sys_114: 7.30950559e-20 - art_sys_115: -1.27391890e-07 - art_sys_116: 3.64319301e-14 - art_sys_117: 2.33110115e-18 - art_sys_118: 4.55652881e-08 - art_sys_119: 1.63306451e-14 - art_sys_120: -1.65247064e-13 - art_sys_121: -5.01216892e-22 - art_sys_122: -1.94947356e-08 - art_sys_123: -2.28747136e-15 - art_sys_124: 7.13708364e-09 - art_sys_125: -4.48642747e-20 - art_sys_126: -4.76351538e-14 - art_sys_127: 9.46741758e-17 - art_sys_128: -2.42096357e-09 - art_sys_129: 7.24237024e-20 - art_sys_130: -9.42818593e-16 - art_sys_131: -1.03837967e-18 - art_sys_132: -8.10905740e-10 - art_sys_133: 1.81005049e-15 - art_sys_134: -7.55543463e-15 - art_sys_135: 2.66318299e-10 - art_sys_136: 1.87919214e-19 - art_sys_137: -7.06185392e-17 - art_sys_138: 6.95847536e-11 - art_sys_139: 1.52898729e-15 - art_sys_140: -1.57120697e-19 - art_sys_141: 4.73214229e-16 - art_sys_142: 2.36014250e-11 - art_sys_143: 4.35770862e-16 - art_sys_144: -7.41264899e-18 - art_sys_145: 3.97598853e-12 - art_sys_146: -2.42721524e-16 - art_sys_147: 2.75367856e-18 - art_sys_148: -9.20988428e-20 - art_sys_149: -4.02835275e-13 - art_sys_150: 1.15944037e-14 - art_sys_151: 6.26545982e-16 - art_sys_152: -1.09487003e-17 - art_sys_153: 1.59793373e-15 - art_sys_154: -1.08985790e-14 - art_sys_155: -5.84472075e-18 - art_sys_156: 0.0 - art_sys_157: -4.46922444e-15 - art_sys_158: 0.0 - art_sys_159: 7.10393017e-16 - art_sys_160: -9.24827894e-17 - art_sys_161: -7.94521002e-17 - art_sys_162: -7.94521002e-17 - art_sys_163: -8.20525141e-17 - art_sys_164: -8.20525141e-17 - art_sys_165: 9.25486999e-31 - art_sys_166: -3.07189830e-31 - art_sys_167: -0.0 - art_sys_168: 5.78944900e-27 - art_sys_169: 1.86087264e-27 - art_sys_170: 4.76310940e-28 - art_sys_171: 8.30922889e-27 - art_sys_172: 1.36341527e-27 - art_sys_173: 1.22685917e-28 - art_sys_174: -1.59055560e-29 - art_sys_175: -6.41770249e-30 - art_sys_176: -4.14273912e-31 - art_sys_177: 6.53587898e-31 - art_sys_178: -9.29853106e-31 - art_sys_179: 1.78036250e-30 - art_sys_180: 1.84751401e-29 - art_sys_181: -4.40772244e-29 - art_sys_182: 2.23248757e-31 - art_sys_183: -9.87488691e-33 - art_sys_184: -2.54180591e-33 - art_sys_185: -3.37867589e-33 + art_sys_27: -8.51016562e-18 + art_sys_28: -1.20556036e-16 + art_sys_29: -7.69011367e-14 + art_sys_30: -4.34640277e-14 + art_sys_31: -1.30660555e-14 + art_sys_32: -1.49668865e-15 + art_sys_33: -9.48870253e-16 + art_sys_34: 3.95407721e-16 + art_sys_35: -1.73969958e-16 + art_sys_36: 8.20459369e-17 + art_sys_37: -2.06063268e-04 + art_sys_38: 1.05240436e-17 + art_sys_39: -9.93750916e-15 + art_sys_40: -1.71419269e-13 + art_sys_41: 2.93855390e-03 + art_sys_42: 7.03836681e-17 + art_sys_43: 1.59211395e-03 + art_sys_44: -3.43508792e-17 + art_sys_45: 7.94851960e-14 + art_sys_46: -6.09750090e-14 + art_sys_47: 3.92566376e-17 + art_sys_48: 6.30697299e-03 + art_sys_49: 6.21119391e-13 + art_sys_50: -8.06617522e-18 + art_sys_51: -3.77526318e-18 + art_sys_52: -6.93214809e-03 + art_sys_53: 3.23222853e-12 + art_sys_54: 1.77251245e-12 + art_sys_55: 2.77231373e-03 + art_sys_56: -6.07591856e-14 + art_sys_57: -1.66308166e-14 + art_sys_58: 2.28337815e-16 + art_sys_59: -2.97537727e-15 + art_sys_60: 2.17885498e-13 + art_sys_61: 1.15586858e-15 + art_sys_62: -4.51061534e-16 + art_sys_63: -6.67061963e-16 + art_sys_64: 6.03422203e-17 + art_sys_65: 2.13307084e-16 + art_sys_66: 6.43174539e-16 + art_sys_67: -1.14099542e-17 + art_sys_68: -2.03561239e-17 + art_sys_69: -3.44602624e-12 + art_sys_70: 1.48290199e-03 + art_sys_71: -4.24963391e-11 + art_sys_72: -3.67715065e-12 + art_sys_73: 6.94479449e-13 + art_sys_74: 6.26705239e-11 + art_sys_75: -1.13612111e-18 + art_sys_76: -9.48638124e-16 + art_sys_77: 8.87830937e-16 + art_sys_78: -2.34044891e-16 + art_sys_79: -1.43204391e-14 + art_sys_80: 9.55078879e-11 + art_sys_81: -1.68774347e-16 + art_sys_82: -2.04293775e-17 + art_sys_83: 1.58857172e-17 + art_sys_84: 7.17816513e-14 + art_sys_85: 3.11071521e-17 + art_sys_86: 3.79614483e-18 + art_sys_87: 1.91857672e-16 + art_sys_88: 1.90195268e-18 + art_sys_89: 1.87255222e-18 + art_sys_90: 1.59605207e-05 + art_sys_91: -7.52254649e-06 + art_sys_92: -2.71728379e-13 + art_sys_93: -2.60124061e-12 + art_sys_94: 8.62103759e-13 + art_sys_95: 6.04693756e-06 + art_sys_96: 5.95444283e-18 + art_sys_97: 9.64703302e-13 + art_sys_98: -3.24962674e-06 + art_sys_99: 2.08510392e-12 + art_sys_100: -5.74150086e-14 + art_sys_101: 1.79239652e-06 + art_sys_102: -1.30270560e-18 + art_sys_103: 6.02498793e-14 + art_sys_104: 8.00852002e-07 + art_sys_105: 1.07625170e-18 + art_sys_106: -3.32992415e-07 + art_sys_107: 9.42014748e-12 + art_sys_108: 6.12331665e-15 + art_sys_109: -2.83658628e-13 + art_sys_110: 1.07982554e-18 + art_sys_111: -1.27393613e-07 + art_sys_112: 5.74683111e-15 + art_sys_113: 8.85829126e-20 + art_sys_114: 4.55515881e-08 + art_sys_115: 1.74883038e-16 + art_sys_116: -1.67446161e-13 + art_sys_117: 7.69710498e-20 + art_sys_118: 1.94829363e-08 + art_sys_119: 8.85994630e-18 + art_sys_120: -7.13936412e-09 + art_sys_121: 5.05735878e-15 + art_sys_122: -2.42010309e-09 + art_sys_123: -5.70107354e-16 + art_sys_124: 8.10845016e-10 + art_sys_125: -2.65661200e-10 + art_sys_126: -3.94692538e-15 + art_sys_127: -6.95566324e-11 + art_sys_128: 4.86772748e-16 + art_sys_129: -6.97152038e-17 + art_sys_130: 1.19405893e-15 + art_sys_131: 4.51815567e-16 + art_sys_132: -2.35192356e-11 + art_sys_133: -8.96493161e-17 + art_sys_134: -9.88530072e-15 + art_sys_135: -4.02977802e-12 + art_sys_136: -7.25596069e-15 + art_sys_137: 4.29110843e-13 + art_sys_138: 1.95291554e-15 + art_sys_139: 6.80310456e-15 + art_sys_140: 2.86950033e-14 + art_sys_141: -3.20593573e-15 + art_sys_142: -0.0 + art_sys_143: 9.97767505e-15 + art_sys_144: 2.92946479e-15 + art_sys_145: 1.55090778e-15 + art_sys_146: 3.69002730e-20 + art_sys_147: 5.48569052e-21 + art_sys_148: -5.45741791e-18 + art_sys_149: -1.22268106e-18 + art_sys_150: -1.17079756e-19 + art_sys_151: 5.71815298e-18 + art_sys_152: -3.69191276e-18 + art_sys_153: -1.90828014e-19 + art_sys_154: 1.30955300e-18 + art_sys_155: 2.44595831e-18 + art_sys_156: 8.75890132e-18 + art_sys_157: 9.38056425e-19 + art_sys_158: -0.0 + art_sys_159: 4.41002511e-16 + art_sys_160: 4.41002511e-16 + art_sys_161: -1.31918535e-17 + art_sys_162: 5.47280121e-30 + art_sys_163: 0.0 + art_sys_164: 3.50160581e-30 + art_sys_165: 4.92524382e-26 + art_sys_166: 3.23501100e-26 + art_sys_167: -2.94927638e-26 + art_sys_168: 8.81404596e-27 + art_sys_169: 3.30738250e-27 + art_sys_170: -9.10490368e-27 + art_sys_171: 1.45217861e-26 + art_sys_172: -3.78508776e-26 + art_sys_173: 4.77012299e-27 + art_sys_174: 2.49292126e-30 + art_sys_175: -9.66155765e-29 + art_sys_176: 1.48390896e-28 + art_sys_177: 1.25219172e-29 + art_sys_178: -1.07127638e-28 + art_sys_179: -2.48158660e-30 + art_sys_180: 6.67679708e-30 + art_sys_181: -5.23269228e-31 + art_sys_182: 6.05892255e-31 + art_sys_183: 5.92818782e-33 + art_sys_184: -1.59279040e-33 + art_sys_185: 9.41086089e-32 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -8387,191 +8387,191 @@ bins: RelativeStatFSR-: -2.16472218e-03 luminosity_uncertainty: 9.78437200e-02 uncorrelated_uncertainty: 3.76322000e-02 -- art_sys_1: 2.07307289e-40 - art_sys_2: -7.79977005e-29 - art_sys_3: -5.91380751e-29 +- art_sys_1: -2.18331155e-40 + art_sys_2: 1.25253323e-27 + art_sys_3: -5.91380748e-29 art_sys_4: 3.99711849e-10 - art_sys_5: 1.81666115e-24 - art_sys_6: 2.54093127e-27 + art_sys_5: 1.77211813e-24 + art_sys_6: 4.81051095e-27 art_sys_7: 3.00131198e-08 - art_sys_8: 3.67788540e-24 + art_sys_8: 3.73146751e-24 art_sys_9: -3.27344527e-08 - art_sys_10: -3.00718187e-25 - art_sys_11: 4.80656869e-24 + art_sys_10: -3.18402759e-25 + art_sys_11: 2.65783347e-23 art_sys_12: -1.45372251e-07 - art_sys_13: -1.01087574e-21 - art_sys_14: -3.46008028e-06 - art_sys_15: -2.51302458e-20 - art_sys_16: -1.04157296e-05 - art_sys_17: -4.24408866e-22 - art_sys_18: -7.49026638e-20 - art_sys_19: 2.01616146e-05 - art_sys_20: -1.24433670e-21 - art_sys_21: 9.59494949e-18 - art_sys_22: 6.55211649e-22 + art_sys_13: 3.73895162e-24 + art_sys_14: 3.46008028e-06 + art_sys_15: 1.79525092e-20 + art_sys_16: 1.04157296e-05 + art_sys_17: -3.13864308e-22 + art_sys_18: -7.47000667e-20 + art_sys_19: -2.01616146e-05 + art_sys_20: -1.96597441e-21 + art_sys_21: 9.58488922e-18 + art_sys_22: 2.39925124e-22 art_sys_23: -1.40530360e-05 - art_sys_24: -1.44403230e-15 - art_sys_25: 3.73143119e-05 + art_sys_24: -1.44403438e-15 + art_sys_25: -3.73143119e-05 art_sys_26: 2.31083490e-04 - art_sys_27: 8.71619014e-18 - art_sys_28: 4.46139509e-16 - art_sys_29: 2.48115845e-18 - art_sys_30: 3.44330162e-04 - art_sys_31: -7.87933343e-16 - art_sys_32: -7.04027432e-19 - art_sys_33: -3.56924375e-04 - art_sys_34: 2.58033497e-03 - art_sys_35: -1.09158279e-14 - art_sys_36: -4.53335276e-14 - art_sys_37: -1.09245225e-14 - art_sys_38: -1.50168613e-14 - art_sys_39: -1.73366954e-15 - art_sys_40: -1.29270645e-16 - art_sys_41: -8.32904512e-16 - art_sys_42: -7.54765193e-16 - art_sys_43: -8.75737198e-17 - art_sys_44: -3.57627256e-17 - art_sys_45: 1.66087845e-17 - art_sys_46: 8.50770756e-18 - art_sys_47: 9.46494340e-13 - art_sys_48: -7.21954690e-04 - art_sys_49: 8.80459478e-12 - art_sys_50: -2.73725130e-17 - art_sys_51: 4.91620275e-18 - art_sys_52: -2.15509966e-12 - art_sys_53: -6.02625020e-03 - art_sys_54: 1.81842940e-11 - art_sys_55: 3.56096823e-03 - art_sys_56: 3.94994025e-13 - art_sys_57: -1.08443886e-19 - art_sys_58: 2.04346558e-18 - art_sys_59: -2.00349948e-03 - art_sys_60: -3.06628015e-10 - art_sys_61: 8.90073317e-17 - art_sys_62: 2.83817564e-12 - art_sys_63: 2.52024606e-11 - art_sys_64: 2.01498345e-14 - art_sys_65: 5.21008528e-15 - art_sys_66: -2.61193135e-16 - art_sys_67: -3.41721247e-16 - art_sys_68: 2.52687517e-16 - art_sys_69: -4.42573216e-17 - art_sys_70: 6.17880575e-17 - art_sys_71: -2.90112831e-17 - art_sys_72: 7.89833391e-18 - art_sys_73: -2.93098138e-18 - art_sys_74: -4.56390734e-14 - art_sys_75: 9.63062326e-19 - art_sys_76: -5.94406597e-15 - art_sys_77: -1.84262511e-15 - art_sys_78: 6.54436858e-16 - art_sys_79: -3.83364783e-19 - art_sys_80: -1.18716748e-16 - art_sys_81: 1.25525666e-13 - art_sys_82: -3.03134710e-10 - art_sys_83: 1.81205228e-16 - art_sys_84: 2.54342487e-17 - art_sys_85: 5.76879040e-17 - art_sys_86: -1.25684659e-17 - art_sys_87: -1.26755016e-14 - art_sys_88: 7.27633895e-15 - art_sys_89: -3.89186063e-18 - art_sys_90: -2.05929092e-14 - art_sys_91: 7.13455971e-05 - art_sys_92: 5.52670274e-19 - art_sys_93: -6.35325104e-19 - art_sys_94: 7.25162295e-16 - art_sys_95: 1.06924809e-11 - art_sys_96: -2.35478615e-05 - art_sys_97: 1.01770766e-11 - art_sys_98: 1.26150841e-12 - art_sys_99: -2.12302033e-05 - art_sys_100: 1.98059728e-11 - art_sys_101: 1.11789411e-05 - art_sys_102: -1.21131007e-13 - art_sys_103: 4.37220206e-12 - art_sys_104: -6.06689602e-06 - art_sys_105: -6.42870902e-18 - art_sys_106: 2.70824668e-06 - art_sys_107: 1.88311969e-13 - art_sys_108: 3.32547208e-17 - art_sys_109: -3.87617622e-18 - art_sys_110: 2.64691608e-12 - art_sys_111: -1.11936369e-06 - art_sys_112: -4.43360354e-13 - art_sys_113: -3.93962240e-11 - art_sys_114: -2.42260277e-19 - art_sys_115: 4.26738906e-07 - art_sys_116: -1.21301627e-13 - art_sys_117: -7.82420409e-18 - art_sys_118: -1.52471352e-07 - art_sys_119: -5.43361838e-14 - art_sys_120: 5.49832737e-13 - art_sys_121: -4.43848886e-21 - art_sys_122: 6.50470551e-08 - art_sys_123: 7.60394376e-15 - art_sys_124: -2.38015314e-08 - art_sys_125: 1.48923008e-19 - art_sys_126: 1.58456777e-13 - art_sys_127: -3.14465715e-16 - art_sys_128: 8.06119660e-09 - art_sys_129: -2.40384585e-19 - art_sys_130: 3.13259567e-15 - art_sys_131: 3.44997833e-18 - art_sys_132: 2.69860336e-09 - art_sys_133: -6.01413256e-15 - art_sys_134: 2.51017962e-14 - art_sys_135: -8.85844547e-10 - art_sys_136: -6.24475007e-19 - art_sys_137: 2.34627952e-16 - art_sys_138: -2.31339106e-10 - art_sys_139: -5.08051141e-15 - art_sys_140: 5.22012322e-19 - art_sys_141: -1.57315288e-15 - art_sys_142: -7.84538580e-11 - art_sys_143: -1.44825149e-15 - art_sys_144: 2.46423485e-17 - art_sys_145: -1.32127848e-11 - art_sys_146: 8.06612597e-16 - art_sys_147: -9.15082829e-18 - art_sys_148: 3.07055718e-19 - art_sys_149: 1.33840699e-12 - art_sys_150: -3.85222284e-14 - art_sys_151: -2.08176335e-15 - art_sys_152: 3.63783360e-17 - art_sys_153: -5.30940377e-15 - art_sys_154: 3.58255228e-14 - art_sys_155: 1.94206802e-17 - art_sys_156: -0.0 - art_sys_157: 1.48490434e-14 - art_sys_158: -0.0 - art_sys_159: -2.36036245e-15 - art_sys_160: 3.07277715e-16 - art_sys_161: 2.63998222e-16 - art_sys_162: 2.63998222e-16 - art_sys_163: 2.72632239e-16 - art_sys_164: 2.72632239e-16 - art_sys_165: -3.07508475e-30 - art_sys_166: 1.02068996e-30 - art_sys_167: 0.0 - art_sys_168: -1.99972227e-26 - art_sys_169: -6.41028318e-27 - art_sys_170: 1.36335064e-27 - art_sys_171: -7.03940139e-27 - art_sys_172: -9.27141459e-28 - art_sys_173: -6.59685547e-29 - art_sys_174: 1.24006652e-28 - art_sys_175: 1.25673851e-29 - art_sys_176: 7.32407181e-30 - art_sys_177: -2.28122651e-30 - art_sys_178: 3.10408027e-30 - art_sys_179: -5.91586840e-30 - art_sys_180: -6.13859721e-29 - art_sys_181: 1.47983941e-28 - art_sys_182: -3.11024924e-32 - art_sys_183: 1.66234559e-32 - art_sys_184: 8.49743534e-33 - art_sys_185: 1.12288203e-32 + art_sys_27: -8.69722217e-18 + art_sys_28: 4.45692339e-16 + art_sys_29: 3.66114184e-14 + art_sys_30: 4.57205042e-14 + art_sys_31: 1.91581515e-15 + art_sys_32: 8.84629788e-15 + art_sys_33: 3.84758003e-16 + art_sys_34: 3.94813676e-17 + art_sys_35: -3.33611503e-16 + art_sys_36: -1.33526441e-16 + art_sys_37: 3.44330162e-04 + art_sys_38: -2.12362738e-16 + art_sys_39: 7.86691638e-16 + art_sys_40: -2.08227192e-14 + art_sys_41: 3.56924375e-04 + art_sys_42: -6.19619388e-17 + art_sys_43: -2.58033497e-03 + art_sys_44: 7.06041565e-17 + art_sys_45: -5.05241328e-14 + art_sys_46: 6.32872604e-15 + art_sys_47: -2.23872960e-17 + art_sys_48: -7.21954688e-04 + art_sys_49: 6.70492601e-12 + art_sys_50: -7.17221255e-18 + art_sys_51: -5.79683301e-19 + art_sys_52: -6.02625024e-03 + art_sys_53: -3.04260245e-13 + art_sys_54: -2.41273310e-12 + art_sys_55: -3.56096826e-03 + art_sys_56: 1.23353674e-12 + art_sys_57: 1.22858126e-14 + art_sys_58: -5.77380230e-15 + art_sys_59: 3.68325588e-15 + art_sys_60: -2.94395591e-13 + art_sys_61: -9.04436078e-17 + art_sys_62: 5.73307625e-16 + art_sys_63: 8.75803850e-16 + art_sys_64: -6.68924878e-17 + art_sys_65: -2.97461100e-16 + art_sys_66: -8.57582793e-16 + art_sys_67: 1.38523138e-17 + art_sys_68: 3.03966004e-17 + art_sys_69: 1.54119403e-11 + art_sys_70: -2.00349947e-03 + art_sys_71: 1.70809295e-10 + art_sys_72: -4.01834588e-12 + art_sys_73: -2.39282895e-12 + art_sys_74: -2.42136037e-10 + art_sys_75: -5.11496094e-19 + art_sys_76: 5.18988653e-15 + art_sys_77: -3.74892766e-15 + art_sys_78: 8.14916188e-16 + art_sys_79: 6.40157725e-14 + art_sys_80: -4.17239168e-10 + art_sys_81: 5.62075809e-16 + art_sys_82: 1.00478120e-16 + art_sys_83: -7.24700006e-17 + art_sys_84: -2.36788963e-13 + art_sys_85: -1.14575132e-16 + art_sys_86: -1.20045440e-17 + art_sys_87: -6.46550832e-16 + art_sys_88: -6.64890681e-18 + art_sys_89: -6.25384311e-18 + art_sys_90: -7.13452658e-05 + art_sys_91: 2.35474718e-05 + art_sys_92: 9.15917441e-13 + art_sys_93: 1.14943313e-11 + art_sys_94: -2.91933638e-12 + art_sys_95: -2.12302325e-05 + art_sys_96: -1.97806717e-17 + art_sys_97: -3.25328942e-12 + art_sys_98: 1.11789437e-05 + art_sys_99: -5.86415629e-12 + art_sys_100: 1.92249862e-13 + art_sys_101: -6.06705213e-06 + art_sys_102: 4.33283704e-18 + art_sys_103: -2.00361320e-13 + art_sys_104: -2.70843111e-06 + art_sys_105: -3.58840779e-18 + art_sys_106: 1.11937201e-06 + art_sys_107: -3.27637826e-11 + art_sys_108: -2.03454098e-14 + art_sys_109: 9.49972892e-13 + art_sys_110: -3.61974798e-18 + art_sys_111: 4.26744742e-07 + art_sys_112: -1.90826611e-14 + art_sys_113: -2.63710544e-19 + art_sys_114: -1.52425724e-07 + art_sys_115: -5.81111237e-16 + art_sys_116: 5.57585911e-13 + art_sys_117: -2.60431543e-19 + art_sys_118: -6.50076206e-08 + art_sys_119: -2.94491486e-17 + art_sys_120: 2.38091310e-08 + art_sys_121: -1.68563240e-14 + art_sys_122: 8.05833369e-09 + art_sys_123: 1.89411414e-15 + art_sys_124: -2.69840087e-09 + art_sys_125: 8.83658042e-10 + art_sys_126: 1.31118074e-14 + art_sys_127: 2.31245470e-10 + art_sys_128: -1.61715409e-15 + art_sys_129: 2.31569322e-16 + art_sys_130: -3.96706649e-15 + art_sys_131: -1.50127291e-15 + art_sys_132: 7.81806233e-11 + art_sys_133: 2.99300846e-16 + art_sys_134: 3.28523401e-14 + art_sys_135: 1.33915630e-11 + art_sys_136: 2.41121084e-14 + art_sys_137: -1.42572000e-12 + art_sys_138: -6.48865331e-15 + art_sys_139: -2.26040655e-14 + art_sys_140: -1.11105076e-13 + art_sys_141: 1.06525098e-14 + art_sys_142: 0.0 + art_sys_143: -3.31563183e-14 + art_sys_144: -9.73417394e-15 + art_sys_145: -5.15352371e-15 + art_sys_146: -1.25047201e-19 + art_sys_147: -1.79489541e-20 + art_sys_148: 1.81033855e-17 + art_sys_149: 4.06300210e-18 + art_sys_150: 3.88728727e-19 + art_sys_151: -1.89969221e-17 + art_sys_152: 1.22712512e-17 + art_sys_153: 6.34101330e-19 + art_sys_154: -4.35048026e-18 + art_sys_155: -8.12708543e-18 + art_sys_156: -2.91032388e-17 + art_sys_157: -3.11727711e-18 + art_sys_158: 0.0 + art_sys_159: -1.46518319e-15 + art_sys_160: -1.46518319e-15 + art_sys_161: 4.38283248e-17 + art_sys_162: -1.81828218e-29 + art_sys_163: -0.0 + art_sys_164: -1.16337601e-29 + art_sys_165: -1.66029909e-25 + art_sys_166: -1.07416317e-25 + art_sys_167: 9.80677348e-26 + art_sys_168: -2.89634327e-26 + art_sys_169: -1.23255958e-26 + art_sys_170: 3.13053759e-26 + art_sys_171: 8.15986160e-27 + art_sys_172: -2.69733345e-26 + art_sys_173: 8.28429217e-27 + art_sys_174: -8.28348031e-30 + art_sys_175: 3.85391537e-29 + art_sys_176: -2.25990394e-28 + art_sys_177: 5.61564504e-29 + art_sys_178: 3.73425113e-28 + art_sys_179: 1.21203309e-29 + art_sys_180: -2.18022251e-29 + art_sys_181: 2.64650678e-31 + art_sys_182: -3.53532017e-31 + art_sys_183: -1.26920306e-32 + art_sys_184: 5.27598951e-33 + art_sys_185: -3.12627691e-31 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -8678,191 +8678,191 @@ bins: RelativeStatFSR-: -1.37911322e-03 luminosity_uncertainty: 5.82197200e-02 uncorrelated_uncertainty: 2.23922000e-02 -- art_sys_1: 9.91582208e-41 - art_sys_2: -3.73253021e-29 - art_sys_3: -1.68694010e-29 +- art_sys_1: -1.04528341e-40 + art_sys_2: 5.99391786e-28 + art_sys_3: -1.68694009e-29 art_sys_4: 1.91279555e-10 - art_sys_5: 2.64307462e-25 - art_sys_6: 1.21162369e-27 + art_sys_5: 2.43020880e-25 + art_sys_6: 2.29820315e-27 art_sys_7: 3.80688606e-09 - art_sys_8: -1.70470578e-25 + art_sys_8: -7.73015203e-26 art_sys_9: -4.55354621e-09 - art_sys_10: -3.57510566e-26 - art_sys_11: 2.47589102e-23 + art_sys_10: -2.94708417e-26 + art_sys_11: 2.83385969e-23 art_sys_12: -1.69737452e-08 - art_sys_13: -1.61337071e-22 - art_sys_14: -5.51941416e-07 - art_sys_15: -2.20663714e-21 - art_sys_16: -1.43419679e-06 - art_sys_17: -6.03534283e-23 - art_sys_18: -2.83523442e-19 - art_sys_19: 2.91782533e-06 - art_sys_20: -1.58777875e-22 - art_sys_21: 1.12574643e-17 - art_sys_22: 5.42765996e-23 + art_sys_13: 4.22413834e-25 + art_sys_14: 5.51941416e-07 + art_sys_15: 1.27437277e-21 + art_sys_16: 1.43419679e-06 + art_sys_17: -4.44995851e-23 + art_sys_18: -2.83476719e-19 + art_sys_19: -2.91782533e-06 + art_sys_20: -2.63601447e-22 + art_sys_21: 1.12560128e-17 + art_sys_22: 8.14529298e-23 art_sys_23: -1.59872925e-06 - art_sys_24: -1.14521553e-15 - art_sys_25: 1.73337631e-05 + art_sys_24: -1.14521578e-15 + art_sys_25: -1.73337631e-05 art_sys_26: -1.12211817e-05 - art_sys_27: -1.02619981e-18 - art_sys_28: 5.93504311e-17 - art_sys_29: -1.11590296e-18 - art_sys_30: 5.32583361e-05 - art_sys_31: -9.61170662e-16 - art_sys_32: -2.66677919e-18 - art_sys_33: 2.43794845e-04 - art_sys_34: 3.45108960e-04 - art_sys_35: -8.25266408e-15 - art_sys_36: -3.34118496e-14 - art_sys_37: 3.50143581e-14 - art_sys_38: -7.91473468e-15 - art_sys_39: -2.58479538e-16 - art_sys_40: -6.67385551e-16 - art_sys_41: 8.62142298e-16 - art_sys_42: -5.26224834e-16 - art_sys_43: 5.03467616e-17 - art_sys_44: 3.75271421e-17 - art_sys_45: 5.31376003e-17 - art_sys_46: -1.25091709e-17 - art_sys_47: 1.35173387e-12 + art_sys_27: 1.02211785e-18 + art_sys_28: 5.92747580e-17 + art_sys_29: -4.80507741e-14 + art_sys_30: -1.68442546e-14 + art_sys_31: -2.14532308e-14 + art_sys_32: -3.52965321e-15 + art_sys_33: 8.83460284e-16 + art_sys_34: -8.41370431e-16 + art_sys_35: 5.72243366e-16 + art_sys_36: -2.03304845e-17 + art_sys_37: 5.32583361e-05 + art_sys_38: -4.31929606e-16 + art_sys_39: 9.61449150e-16 + art_sys_40: 1.42206115e-14 + art_sys_41: -2.43794845e-04 + art_sys_42: 2.65022249e-18 + art_sys_43: -3.45108960e-04 + art_sys_44: -7.00939193e-17 + art_sys_45: -1.37717698e-14 + art_sys_46: 9.94730571e-15 + art_sys_47: 2.80406463e-17 art_sys_48: -1.03114433e-03 - art_sys_49: 1.23514879e-11 - art_sys_50: 1.36640721e-17 - art_sys_51: 1.95792814e-18 - art_sys_52: -3.07521083e-12 - art_sys_53: -3.25260614e-04 - art_sys_54: -3.25436788e-12 - art_sys_55: 5.34803453e-03 - art_sys_56: 1.57295598e-13 - art_sys_57: 1.53107251e-17 - art_sys_58: -2.78080617e-18 - art_sys_59: 2.24493509e-03 - art_sys_60: 3.52076837e-10 - art_sys_61: -4.43979147e-17 - art_sys_62: 4.70122199e-13 - art_sys_63: -5.37777356e-12 - art_sys_64: 1.67404113e-14 - art_sys_65: -1.30440825e-14 - art_sys_66: -1.32175498e-15 - art_sys_67: 5.81826840e-16 - art_sys_68: -2.41387625e-16 - art_sys_69: 1.04288550e-16 - art_sys_70: -9.22326109e-17 - art_sys_71: 3.87256370e-17 - art_sys_72: -9.53297735e-18 - art_sys_73: 9.85669556e-18 - art_sys_74: 1.10414718e-13 - art_sys_75: -4.41019080e-19 - art_sys_76: 6.92930279e-15 - art_sys_77: 4.18874692e-15 - art_sys_78: -1.05211961e-15 - art_sys_79: 9.38179874e-19 - art_sys_80: 3.52029343e-16 - art_sys_81: -2.84604339e-13 - art_sys_82: 4.99595760e-10 - art_sys_83: -8.60852129e-17 - art_sys_84: -4.42562766e-17 - art_sys_85: -6.52661471e-17 - art_sys_86: 1.27269362e-17 - art_sys_87: 2.77187779e-14 - art_sys_88: -1.73413732e-14 - art_sys_89: -8.99297875e-19 - art_sys_90: 5.31409864e-14 - art_sys_91: -4.51949668e-05 - art_sys_92: -1.82079310e-19 - art_sys_93: 1.17390183e-18 - art_sys_94: -1.86190625e-15 - art_sys_95: -1.48564162e-11 - art_sys_96: 5.33483467e-05 - art_sys_97: -2.45790927e-11 - art_sys_98: -1.19425033e-12 - art_sys_99: 3.64968946e-05 - art_sys_100: -4.16429575e-11 - art_sys_101: -2.31730226e-05 - art_sys_102: 1.91175992e-13 - art_sys_103: -8.37216110e-12 - art_sys_104: 1.33634862e-05 - art_sys_105: 1.63982862e-17 - art_sys_106: -6.23070026e-06 - art_sys_107: -4.82657337e-13 - art_sys_108: -8.62558263e-17 - art_sys_109: 9.68795122e-18 - art_sys_110: -6.67171910e-12 - art_sys_111: 2.67274725e-06 - art_sys_112: 1.11331950e-12 - art_sys_113: 9.47631288e-11 - art_sys_114: 6.38673027e-19 - art_sys_115: -1.04244308e-06 - art_sys_116: 3.10182408e-13 - art_sys_117: 1.88751824e-17 - art_sys_118: 3.78934325e-07 - art_sys_119: 1.39704391e-13 - art_sys_120: -1.41429513e-12 - art_sys_121: -8.73519832e-20 - art_sys_122: -1.63551919e-07 - art_sys_123: -1.96816932e-14 - art_sys_124: 6.03748816e-08 - art_sys_125: -3.89928475e-19 - art_sys_126: -4.08125050e-13 - art_sys_127: 8.17438773e-16 - art_sys_128: -2.06068668e-08 - art_sys_129: 6.27725011e-19 - art_sys_130: -8.12599335e-15 - art_sys_131: -8.94895715e-18 - art_sys_132: -6.92863745e-09 - art_sys_133: 1.55988953e-14 - art_sys_134: -6.51599715e-14 - art_sys_135: 2.28232307e-09 - art_sys_136: 1.61900639e-18 - art_sys_137: -6.08737037e-16 - art_sys_138: 5.97633332e-10 - art_sys_139: 1.31716827e-14 - art_sys_140: -1.35459666e-18 - art_sys_141: 4.06731268e-15 - art_sys_142: 2.02972703e-10 - art_sys_143: 3.75125618e-15 - art_sys_144: -6.37279302e-17 - art_sys_145: 3.42421397e-11 - art_sys_146: -2.09020856e-15 - art_sys_147: 2.37152360e-17 - art_sys_148: -7.84927795e-19 - art_sys_149: -3.47166456e-12 - art_sys_150: 9.99196777e-14 - art_sys_151: 5.39918231e-15 - art_sys_152: -9.43431745e-17 - art_sys_153: 1.37686726e-14 - art_sys_154: -8.65491442e-14 - art_sys_155: -5.03541594e-17 - art_sys_156: 0.0 - art_sys_157: -3.85195171e-14 - art_sys_158: 0.0 - art_sys_159: 6.12158940e-15 - art_sys_160: -7.97074334e-16 - art_sys_161: -6.84557210e-16 - art_sys_162: -6.84557210e-16 - art_sys_163: -7.07030518e-16 - art_sys_164: -7.07030518e-16 - art_sys_165: 7.97463240e-30 - art_sys_166: -2.64695302e-30 - art_sys_167: -0.0 - art_sys_168: 4.24000673e-26 - art_sys_169: 1.79565184e-26 - art_sys_170: -5.74333172e-27 - art_sys_171: 1.22478971e-28 - art_sys_172: -1.74363391e-27 - art_sys_173: -2.98430210e-28 - art_sys_174: -2.46876640e-29 - art_sys_175: -5.61205190e-29 - art_sys_176: -9.45793919e-30 - art_sys_177: 5.05416620e-30 - art_sys_178: -8.10659161e-30 - art_sys_179: 1.53369298e-29 - art_sys_180: 1.59201971e-28 - art_sys_181: -3.53454510e-28 - art_sys_182: 4.74555946e-30 - art_sys_183: -3.65149060e-32 - art_sys_184: -2.19106036e-32 - art_sys_185: -2.90834096e-32 + art_sys_49: 1.35711420e-12 + art_sys_50: -1.98905802e-17 + art_sys_51: -7.44579682e-19 + art_sys_52: -3.25260697e-04 + art_sys_53: -4.38914145e-13 + art_sys_54: -3.65500242e-12 + art_sys_55: -5.34803456e-03 + art_sys_56: 2.75802747e-13 + art_sys_57: -2.22555716e-14 + art_sys_58: 3.97365530e-15 + art_sys_59: -1.96268319e-15 + art_sys_60: 3.29868979e-13 + art_sys_61: 7.55418678e-16 + art_sys_62: -6.87226885e-16 + art_sys_63: -9.48912983e-16 + art_sys_64: 2.22683105e-17 + art_sys_65: 3.39097765e-16 + art_sys_66: 9.69379336e-16 + art_sys_67: -1.60982992e-17 + art_sys_68: -3.43633933e-17 + art_sys_69: -9.73319130e-12 + art_sys_70: 2.24493505e-03 + art_sys_71: -9.95189136e-11 + art_sys_72: -8.40046834e-13 + art_sys_73: 4.92804512e-12 + art_sys_74: 1.46817278e-10 + art_sys_75: -1.58624522e-18 + art_sys_76: 2.07020712e-16 + art_sys_77: 5.44158095e-15 + art_sys_78: -1.78500548e-15 + art_sys_79: -4.05516910e-14 + art_sys_80: 3.10656948e-10 + art_sys_81: -1.18822597e-15 + art_sys_82: -2.55549862e-17 + art_sys_83: 4.51854856e-17 + art_sys_84: 4.76489074e-13 + art_sys_85: 1.73537869e-16 + art_sys_86: 3.07644908e-17 + art_sys_87: 1.30517527e-15 + art_sys_88: 1.22535758e-17 + art_sys_89: 1.61969486e-17 + art_sys_90: 4.51950084e-05 + art_sys_91: -5.33480220e-05 + art_sys_92: -2.14322915e-12 + art_sys_93: -1.01036304e-11 + art_sys_94: 6.69027932e-12 + art_sys_95: 3.64969521e-05 + art_sys_96: 5.12502833e-17 + art_sys_97: 7.41539663e-12 + art_sys_98: -2.31730328e-05 + art_sys_99: 9.99476172e-12 + art_sys_100: -4.68559820e-13 + art_sys_101: 1.33638432e-05 + art_sys_102: -1.12155007e-17 + art_sys_103: 5.15034376e-13 + art_sys_104: 6.23110636e-06 + art_sys_105: 8.83114063e-18 + art_sys_106: -2.67276717e-06 + art_sys_107: 6.23776891e-11 + art_sys_108: 5.27617589e-14 + art_sys_109: -2.34916949e-12 + art_sys_110: 8.73778803e-18 + art_sys_111: -1.04245691e-06 + art_sys_112: 4.97118231e-14 + art_sys_113: 1.15760265e-18 + art_sys_114: 3.78818216e-07 + art_sys_115: 1.50708103e-15 + art_sys_116: -1.42135418e-12 + art_sys_117: 6.23736649e-19 + art_sys_118: 1.63453429e-07 + art_sys_119: 7.63678216e-17 + art_sys_120: -6.03941456e-08 + art_sys_121: 4.28578862e-14 + art_sys_122: -2.05994977e-08 + art_sys_123: -4.91498659e-15 + art_sys_124: 6.92813444e-09 + art_sys_125: -2.27670767e-09 + art_sys_126: -3.40305182e-14 + art_sys_127: -5.97394279e-10 + art_sys_128: 4.19802672e-15 + art_sys_129: -6.01781649e-16 + art_sys_130: 1.02943869e-14 + art_sys_131: 3.89220649e-15 + art_sys_132: -2.02266643e-10 + art_sys_133: -7.55279385e-16 + art_sys_134: -8.51028800e-14 + art_sys_135: -3.47051067e-11 + art_sys_136: -6.24938165e-14 + art_sys_137: 3.69799967e-12 + art_sys_138: 1.68291285e-14 + art_sys_139: 5.86218853e-14 + art_sys_140: 1.83394521e-13 + art_sys_141: -2.76215074e-14 + art_sys_142: -0.0 + art_sys_143: 8.59358246e-14 + art_sys_144: 2.52363632e-14 + art_sys_145: 1.33599627e-14 + art_sys_146: 2.87357447e-19 + art_sys_147: 4.91285371e-20 + art_sys_148: -4.75368846e-17 + art_sys_149: -1.05440677e-17 + art_sys_150: -1.01028096e-18 + art_sys_151: 4.93074741e-17 + art_sys_152: -3.17639285e-17 + art_sys_153: -1.64374052e-18 + art_sys_154: 1.12898387e-17 + art_sys_155: 2.10753948e-17 + art_sys_156: 7.54676622e-17 + art_sys_157: 8.07881057e-18 + art_sys_158: -0.0 + art_sys_159: 3.80102722e-15 + art_sys_160: 3.80102722e-15 + art_sys_161: -1.13704346e-16 + art_sys_162: 4.71705373e-29 + art_sys_163: 0.0 + art_sys_164: 3.01802979e-29 + art_sys_165: 4.11782316e-25 + art_sys_166: 2.67449628e-25 + art_sys_167: -2.42682179e-25 + art_sys_168: 7.20731196e-26 + art_sys_169: 3.01589824e-26 + art_sys_170: -7.68406532e-26 + art_sys_171: 1.88322386e-26 + art_sys_172: -1.23819667e-26 + art_sys_173: -6.60786787e-27 + art_sys_174: 2.14771396e-29 + art_sys_175: -1.88403256e-29 + art_sys_176: 1.94431248e-28 + art_sys_177: -2.61896990e-29 + art_sys_178: -8.79795159e-28 + art_sys_179: -2.84549560e-29 + art_sys_180: 5.63950118e-29 + art_sys_181: -8.77868663e-31 + art_sys_182: 1.47228548e-30 + art_sys_183: 3.41722621e-32 + art_sys_184: -1.36788149e-32 + art_sys_185: 8.11496913e-31 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -8969,191 +8969,191 @@ bins: RelativeStatFSR-: -8.72828422e-04 luminosity_uncertainty: 3.44572800e-02 uncorrelated_uncertainty: 1.32528000e-02 -- art_sys_1: 5.46500473e-42 - art_sys_2: -2.05701948e-30 - art_sys_3: -1.00839044e-30 +- art_sys_1: -5.76028223e-42 + art_sys_2: 3.30328360e-29 + art_sys_3: -1.00839043e-30 art_sys_4: 1.05415295e-11 - art_sys_5: 1.91291558e-26 - art_sys_6: 6.60871815e-29 + art_sys_5: 1.79574680e-26 + art_sys_6: 1.26424619e-28 art_sys_7: 2.68461037e-10 - art_sys_8: 4.17879979e-26 + art_sys_8: 4.40083593e-26 art_sys_9: -3.72996198e-10 - art_sys_10: -3.82965631e-27 - art_sys_11: 1.41091318e-24 + art_sys_10: -2.23629385e-27 + art_sys_11: 1.65830247e-24 art_sys_12: -1.04893981e-09 - art_sys_13: -1.11806766e-23 - art_sys_14: -3.82468976e-08 - art_sys_15: 2.08636567e-22 - art_sys_16: -1.08764212e-07 - art_sys_17: -4.25251367e-24 - art_sys_18: -1.68132979e-21 - art_sys_19: 1.79974661e-07 - art_sys_20: -1.88878958e-24 - art_sys_21: -1.76316298e-20 - art_sys_22: 1.42458415e-23 + art_sys_13: 2.51159734e-26 + art_sys_14: 3.82468976e-08 + art_sys_15: -2.83339387e-22 + art_sys_16: 1.08764212e-07 + art_sys_17: -3.08854073e-24 + art_sys_18: -1.68267106e-21 + art_sys_19: -1.79974661e-07 + art_sys_20: -1.07023085e-23 + art_sys_21: -1.77237197e-20 + art_sys_22: 2.29487249e-23 art_sys_23: 1.50784266e-08 - art_sys_24: 1.49471382e-18 - art_sys_25: 1.15433600e-06 + art_sys_24: 1.49470514e-18 + art_sys_25: -1.15433600e-06 art_sys_26: -1.07708406e-05 - art_sys_27: -2.10634384e-18 - art_sys_28: -1.43380309e-17 - art_sys_29: 7.71524087e-19 - art_sys_30: -1.05965779e-05 - art_sys_31: -5.04921124e-17 - art_sys_32: 9.73927761e-19 - art_sys_33: 4.24609803e-05 - art_sys_34: -1.22854998e-04 - art_sys_35: 1.61743923e-16 - art_sys_36: -5.23361101e-14 - art_sys_37: 1.39331547e-14 - art_sys_38: 2.14058444e-15 - art_sys_39: 4.35100933e-15 - art_sys_40: 1.76667726e-15 - art_sys_41: 1.12598528e-15 - art_sys_42: -4.03221109e-16 - art_sys_43: 1.88423380e-17 - art_sys_44: -2.70648264e-17 - art_sys_45: 6.50717345e-17 - art_sys_46: 1.75725926e-17 - art_sys_47: 2.47382857e-14 + art_sys_27: 2.10932744e-18 + art_sys_28: -1.43245198e-17 + art_sys_29: 1.52858673e-14 + art_sys_30: 5.29919847e-14 + art_sys_31: -2.28868012e-14 + art_sys_32: -1.57909892e-15 + art_sys_33: 1.79884764e-15 + art_sys_34: 1.63989267e-16 + art_sys_35: 6.41527956e-16 + art_sys_36: 4.73679436e-18 + art_sys_37: -1.05965779e-05 + art_sys_38: 9.57122985e-17 + art_sys_39: 5.05798893e-17 + art_sys_40: 2.47782152e-15 + art_sys_41: -4.24609803e-05 + art_sys_42: -7.35897317e-17 + art_sys_43: 1.22854998e-04 + art_sys_44: -1.55919453e-16 + art_sys_45: 2.03497377e-15 + art_sys_46: 2.16889922e-16 + art_sys_47: -7.58029679e-17 art_sys_48: -1.88756222e-05 - art_sys_49: 2.14573371e-13 - art_sys_50: 1.16684045e-19 - art_sys_51: -3.09865183e-17 - art_sys_52: -5.74661932e-14 - art_sys_53: 4.20346532e-04 - art_sys_54: -1.64905877e-12 - art_sys_55: 1.93100597e-04 - art_sys_56: -1.84727160e-14 - art_sys_57: -5.68803110e-17 - art_sys_58: 1.84817334e-17 - art_sys_59: 5.63956254e-04 - art_sys_60: 2.24789870e-10 - art_sys_61: 7.53223670e-16 - art_sys_62: -1.57637144e-13 - art_sys_63: 1.43835299e-10 - art_sys_64: 1.68071482e-14 - art_sys_65: 6.83675467e-14 - art_sys_66: 2.88812896e-16 - art_sys_67: -3.33559544e-15 - art_sys_68: 2.32168619e-15 - art_sys_69: -3.16853005e-16 - art_sys_70: 5.48445006e-16 - art_sys_71: -2.99447109e-16 - art_sys_72: 7.55841562e-17 - art_sys_73: -2.26786200e-17 - art_sys_74: -2.70324696e-13 - art_sys_75: 9.03909771e-18 - art_sys_76: -5.46076624e-14 - art_sys_77: -1.58285568e-14 - art_sys_78: 4.74359234e-15 - art_sys_79: -5.60671856e-18 - art_sys_80: -1.06226988e-15 - art_sys_81: 7.77903423e-13 - art_sys_82: -2.18898126e-09 - art_sys_83: 1.69544459e-15 - art_sys_84: 1.71370805e-16 - art_sys_85: 5.59498306e-16 - art_sys_86: -1.02057856e-16 - art_sys_87: -1.20950535e-13 - art_sys_88: 7.65411183e-14 - art_sys_89: -4.39836575e-17 - art_sys_90: -2.34518336e-13 - art_sys_91: 6.35761496e-04 - art_sys_92: 6.44771501e-18 - art_sys_93: -4.83788061e-18 - art_sys_94: 8.22804651e-15 - art_sys_95: 9.08049228e-11 - art_sys_96: -1.46000841e-04 - art_sys_97: 6.50137443e-11 - art_sys_98: 5.66706742e-12 - art_sys_99: -1.95142224e-04 - art_sys_100: 1.84835791e-10 - art_sys_101: 1.02906852e-04 - art_sys_102: -8.29160227e-13 - art_sys_103: 4.04736782e-11 - art_sys_104: -5.98485147e-05 - art_sys_105: -7.23860878e-17 - art_sys_106: 2.76586556e-05 - art_sys_107: 2.13132081e-12 - art_sys_108: 3.81437759e-16 - art_sys_109: -4.28913996e-17 - art_sys_110: 2.94427823e-11 - art_sys_111: -1.17890663e-05 - art_sys_112: -4.91426457e-12 - art_sys_113: -4.16946839e-10 - art_sys_114: -2.81953963e-18 - art_sys_115: 4.60500193e-06 - art_sys_116: -1.36954059e-12 - art_sys_117: -8.32912219e-17 - art_sys_118: -1.67180566e-06 - art_sys_119: -6.17361658e-13 - art_sys_120: 6.25211362e-12 - art_sys_121: 4.05812697e-19 - art_sys_122: 7.21652331e-07 - art_sys_123: 8.70177599e-14 - art_sys_124: -2.66647868e-07 - art_sys_125: 1.72503810e-18 - art_sys_126: 1.80321880e-12 - art_sys_127: -3.61522173e-15 - art_sys_128: 9.09842123e-08 - art_sys_129: -2.77561705e-18 - art_sys_130: 3.59344947e-14 - art_sys_131: 3.95756134e-17 - art_sys_132: 3.06176688e-08 - art_sys_133: -6.89800945e-14 - art_sys_134: 2.88164631e-13 - art_sys_135: -1.00852999e-08 - art_sys_136: -7.15813965e-18 - art_sys_137: 2.69135955e-15 - art_sys_138: -2.64182859e-09 - art_sys_139: -5.82437936e-14 - art_sys_140: 5.99059680e-18 - art_sys_141: -1.79814618e-14 - art_sys_142: -8.97386261e-10 - art_sys_143: -1.65866828e-14 - art_sys_144: 2.81729693e-16 - art_sys_145: -1.51414886e-10 - art_sys_146: 9.24230332e-15 - art_sys_147: -1.04864918e-16 - art_sys_148: 3.47097947e-18 - art_sys_149: 1.53513978e-11 - art_sys_150: -4.41833745e-13 - art_sys_151: -2.38807012e-14 - art_sys_152: 4.17171560e-16 - art_sys_153: -6.08879222e-14 - art_sys_154: 3.71506661e-13 - art_sys_155: 2.22621178e-16 - art_sys_156: -0.0 - art_sys_157: 1.70410845e-13 - art_sys_158: -0.0 - art_sys_159: -2.70749717e-14 - art_sys_160: 3.52607395e-15 - art_sys_161: 3.02700634e-15 - art_sys_162: 3.02700634e-15 - art_sys_163: 3.12685375e-15 - art_sys_164: 3.12685375e-15 - art_sys_165: -3.52671874e-29 - art_sys_166: 1.17059005e-29 - art_sys_167: 0.0 - art_sys_168: -1.93783070e-25 - art_sys_169: -7.63403254e-26 - art_sys_170: 2.14020847e-26 - art_sys_171: -3.94207539e-26 - art_sys_172: 1.15689085e-27 - art_sys_173: 8.53483545e-28 - art_sys_174: 7.39951116e-28 - art_sys_175: 1.98164202e-28 - art_sys_176: 5.18237470e-29 - art_sys_177: -2.23356685e-29 - art_sys_178: 3.56971042e-29 - art_sys_179: -6.77960795e-29 - art_sys_180: -7.04114693e-28 - art_sys_181: 1.55772942e-27 - art_sys_182: -1.54005233e-29 - art_sys_183: 1.64516210e-31 - art_sys_184: 9.69875842e-32 - art_sys_185: 1.28594399e-31 + art_sys_49: -3.98056801e-13 + art_sys_50: 1.53800026e-17 + art_sys_51: 4.11096355e-17 + art_sys_52: 4.20346528e-04 + art_sys_53: -6.93883781e-15 + art_sys_54: -1.38391837e-13 + art_sys_55: -1.93100598e-04 + art_sys_56: -7.09007444e-14 + art_sys_57: -1.58175851e-14 + art_sys_58: 2.92612901e-14 + art_sys_59: -2.15318249e-14 + art_sys_60: 8.29450250e-14 + art_sys_61: 1.88928484e-15 + art_sys_62: -1.57890642e-16 + art_sys_63: -2.70701192e-16 + art_sys_64: 7.72938074e-17 + art_sys_65: 2.06194648e-17 + art_sys_66: 2.05618965e-16 + art_sys_67: -2.45377705e-17 + art_sys_68: 3.11210421e-17 + art_sys_69: 1.37385444e-10 + art_sys_70: 5.63955701e-04 + art_sys_71: 1.45469245e-09 + art_sys_72: 2.42826836e-13 + art_sys_73: -2.20584253e-11 + art_sys_74: -2.01638799e-09 + art_sys_75: 1.57181883e-18 + art_sys_76: 5.05336097e-14 + art_sys_77: -2.52733175e-14 + art_sys_78: 9.75987680e-15 + art_sys_79: 5.70444002e-13 + art_sys_80: -3.73424854e-09 + art_sys_81: 4.80740317e-15 + art_sys_82: 8.53043965e-16 + art_sys_83: -6.69036495e-16 + art_sys_84: -1.62126115e-12 + art_sys_85: -1.00614565e-15 + art_sys_86: -8.15886408e-17 + art_sys_87: -5.39976085e-15 + art_sys_88: -5.61627315e-17 + art_sys_89: -7.26343706e-17 + art_sys_90: -6.35758141e-04 + art_sys_91: 1.45997340e-04 + art_sys_92: 9.69748542e-12 + art_sys_93: 1.00974455e-10 + art_sys_94: -2.97725795e-11 + art_sys_95: -1.95142457e-04 + art_sys_96: -2.26685258e-16 + art_sys_97: -3.30935123e-11 + art_sys_98: 1.02906853e-04 + art_sys_99: -4.74851694e-11 + art_sys_100: 2.07175011e-12 + art_sys_101: -5.98501059e-05 + art_sys_102: 4.96090306e-17 + art_sys_103: -2.27348101e-12 + art_sys_104: -2.76604718e-05 + art_sys_105: -3.91569826e-17 + art_sys_106: 1.17891613e-05 + art_sys_107: -3.10870167e-10 + art_sys_108: -2.32968783e-13 + art_sys_109: 1.03815589e-11 + art_sys_110: -3.87375717e-17 + art_sys_111: 4.60506312e-06 + art_sys_112: -2.19860367e-13 + art_sys_113: -4.90159383e-18 + art_sys_114: -1.67129284e-06 + art_sys_115: -6.66418483e-15 + art_sys_116: 6.27171115e-12 + art_sys_117: -2.75365678e-18 + art_sys_118: -7.21217319e-07 + art_sys_119: -3.37585676e-16 + art_sys_120: 2.66732770e-07 + art_sys_121: -1.89280830e-13 + art_sys_122: 9.09516091e-08 + art_sys_123: 2.17351274e-14 + art_sys_124: -3.06154664e-08 + art_sys_125: 1.00604894e-08 + art_sys_126: 1.50504084e-13 + art_sys_127: 2.64077322e-09 + art_sys_128: -1.85671862e-14 + art_sys_129: 2.66292656e-15 + art_sys_130: -4.55271453e-14 + art_sys_131: -1.72087969e-14 + art_sys_132: 8.94265042e-10 + art_sys_133: 3.33293178e-15 + art_sys_134: 3.76297580e-13 + art_sys_135: 1.53461961e-10 + art_sys_136: 2.76347123e-13 + art_sys_137: -1.63522577e-11 + art_sys_138: -7.44197952e-14 + art_sys_139: -2.59229528e-13 + art_sys_140: -8.22634771e-13 + art_sys_141: 1.22116639e-13 + art_sys_142: 0.0 + art_sys_143: -3.80012170e-13 + art_sys_144: -1.11615671e-13 + art_sys_145: -5.90467948e-14 + art_sys_146: -1.26473662e-18 + art_sys_147: -2.17840885e-19 + art_sys_148: 2.10452189e-16 + art_sys_149: 4.66476311e-17 + art_sys_150: 4.47284968e-18 + art_sys_151: -2.18205906e-16 + art_sys_152: 1.40447923e-16 + art_sys_153: 7.26945294e-18 + art_sys_154: -4.99377013e-17 + art_sys_155: -9.31619954e-17 + art_sys_156: -3.33678655e-16 + art_sys_157: -3.56993821e-17 + art_sys_158: 0.0 + art_sys_159: -1.68097185e-14 + art_sys_160: -1.68097185e-14 + art_sys_161: 5.02687864e-16 + art_sys_162: -2.08551943e-28 + art_sys_163: -0.0 + art_sys_164: -1.33437285e-28 + art_sys_165: -1.82414020e-24 + art_sys_166: -1.18341454e-24 + art_sys_167: 1.07879879e-24 + art_sys_168: -3.18855716e-25 + art_sys_169: -1.34638485e-25 + art_sys_170: 3.38963908e-25 + art_sys_171: -8.83823955e-28 + art_sys_172: -1.46499370e-26 + art_sys_173: 4.26055332e-26 + art_sys_174: -9.49414075e-29 + art_sys_175: -4.36491225e-28 + art_sys_176: -1.40987070e-28 + art_sys_177: -8.65863865e-29 + art_sys_178: 3.86749122e-27 + art_sys_179: 1.24076937e-28 + art_sys_180: -2.48989576e-28 + art_sys_181: 4.38320454e-30 + art_sys_182: -4.81506018e-30 + art_sys_183: -1.41709534e-31 + art_sys_184: 6.04696093e-32 + art_sys_185: -3.58781306e-30 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -9260,191 +9260,191 @@ bins: RelativeStatFSR-: -5.58758717e-04 luminosity_uncertainty: 2.06693240e-02 uncorrelated_uncertainty: 7.94974000e-03 -- art_sys_1: -6.10942601e-44 - art_sys_2: 2.30397115e-32 - art_sys_3: -1.64413257e-32 +- art_sys_1: 6.46349190e-44 + art_sys_2: -3.69985317e-31 + art_sys_3: -1.64413258e-32 art_sys_4: -1.18070732e-13 - art_sys_5: 1.25510570e-27 - art_sys_6: -7.58142486e-31 + art_sys_5: 1.26826071e-27 + art_sys_6: -1.43521883e-30 art_sys_7: 1.91812392e-11 - art_sys_8: -7.65336206e-27 + art_sys_8: -7.09663880e-27 art_sys_9: -2.68130690e-11 - art_sys_10: -2.77096964e-28 - art_sys_11: 4.28849469e-26 + art_sys_10: -2.81679272e-28 + art_sys_11: 5.85178069e-26 art_sys_12: -8.92162203e-11 - art_sys_13: -7.22445751e-25 - art_sys_14: -2.47302405e-09 - art_sys_15: 3.54650690e-23 - art_sys_16: -1.08812644e-08 - art_sys_17: -3.54372085e-25 - art_sys_18: 8.04405419e-20 - art_sys_19: 9.90529183e-09 - art_sys_20: 1.38823679e-24 - art_sys_21: -6.21729979e-19 - art_sys_22: 1.85723967e-24 + art_sys_13: 2.02972371e-27 + art_sys_14: 2.47302405e-09 + art_sys_15: -4.26763888e-23 + art_sys_16: 1.08812644e-08 + art_sys_17: -2.49021564e-25 + art_sys_18: 8.04394659e-20 + art_sys_19: -9.90529183e-09 + art_sys_20: 2.28961420e-25 + art_sys_21: -6.21735589e-19 + art_sys_22: 4.44738984e-24 art_sys_23: 2.08494092e-08 - art_sys_24: 1.27993360e-16 - art_sys_25: -1.30841204e-07 + art_sys_24: 1.27993361e-16 + art_sys_25: 1.30841204e-07 art_sys_26: -2.03456234e-06 - art_sys_27: -5.43229313e-18 - art_sys_28: -4.88873291e-18 - art_sys_29: 3.66297776e-18 - art_sys_30: -3.95714784e-06 - art_sys_31: 3.44546387e-17 - art_sys_32: 2.24251722e-18 - art_sys_33: -4.81681427e-06 - art_sys_34: -3.52910636e-05 - art_sys_35: 7.27103964e-16 - art_sys_36: 8.36231600e-15 - art_sys_37: -4.36461711e-15 - art_sys_38: 3.19919429e-15 - art_sys_39: -3.65861783e-15 - art_sys_40: 1.79114145e-15 - art_sys_41: -1.38161441e-15 - art_sys_42: 5.94622705e-17 - art_sys_43: -1.77364728e-16 - art_sys_44: 7.82123725e-17 - art_sys_45: -1.04733129e-16 - art_sys_46: -6.33391891e-17 - art_sys_47: -8.37395319e-14 - art_sys_48: 6.38783746e-05 - art_sys_49: -7.65755774e-13 - art_sys_50: -2.88676232e-17 - art_sys_51: 4.96005483e-17 - art_sys_52: 1.67392884e-13 - art_sys_53: 4.23106215e-05 - art_sys_54: 1.80722068e-13 - art_sys_55: -4.02278028e-04 - art_sys_56: -1.04470140e-13 - art_sys_57: 9.40581715e-17 - art_sys_58: -3.84390793e-17 - art_sys_59: -1.93642814e-04 - art_sys_60: 8.21267737e-11 - art_sys_61: 5.94693243e-16 - art_sys_62: 1.16716066e-13 - art_sys_63: 2.95951355e-10 - art_sys_64: -1.14887641e-14 - art_sys_65: -1.20635348e-14 - art_sys_66: -1.47398773e-15 - art_sys_67: 4.56126855e-16 - art_sys_68: 4.98235391e-16 - art_sys_69: 8.23274662e-16 - art_sys_70: -3.42626403e-16 - art_sys_71: 1.89465180e-17 - art_sys_72: -1.98513752e-17 - art_sys_73: 8.34719253e-17 - art_sys_74: 7.33728622e-13 - art_sys_75: 4.35180640e-18 - art_sys_76: -7.82756295e-15 - art_sys_77: 2.67112571e-14 - art_sys_78: -3.61716676e-15 - art_sys_79: 1.68612286e-18 - art_sys_80: 2.58961899e-15 - art_sys_81: -1.77510129e-12 - art_sys_82: 1.91418665e-09 - art_sys_83: 1.47636322e-15 - art_sys_84: -2.04130561e-16 - art_sys_85: 1.08896038e-16 - art_sys_86: -9.25317511e-18 - art_sys_87: 1.90060559e-13 - art_sys_88: -1.41930449e-13 - art_sys_89: -6.73767641e-17 - art_sys_90: 5.16087832e-13 - art_sys_91: 4.67162566e-04 - art_sys_92: 1.07369695e-17 - art_sys_93: 5.16314343e-18 - art_sys_94: -1.80529406e-14 - art_sys_95: 5.98343238e-12 - art_sys_96: 3.32465915e-04 - art_sys_97: -1.46129485e-10 - art_sys_98: 1.39236652e-11 - art_sys_99: 1.30018272e-04 - art_sys_100: -2.70223911e-10 - art_sys_101: -1.45094746e-04 - art_sys_102: -4.74881546e-13 - art_sys_103: -4.46590410e-11 - art_sys_104: 9.14747821e-05 - art_sys_105: 1.56209618e-16 - art_sys_106: -4.79332261e-05 - art_sys_107: -4.65300725e-12 - art_sys_108: -8.56522008e-16 - art_sys_109: 8.95029801e-17 - art_sys_110: -6.19421447e-11 - art_sys_111: 2.20107536e-05 - art_sys_112: 1.02634884e-11 - art_sys_113: 7.78442630e-10 - art_sys_114: 6.50961832e-18 - art_sys_115: -9.04513952e-06 - art_sys_116: 2.97636074e-12 - art_sys_117: 1.59650994e-16 - art_sys_118: 3.41848856e-06 - art_sys_119: 1.35875939e-12 - art_sys_120: -1.37749751e-11 - art_sys_121: -2.91081397e-18 - art_sys_122: -1.50962602e-06 - art_sys_123: -1.94542309e-13 - art_sys_124: 5.69777349e-07 - art_sys_125: -3.94953316e-18 - art_sys_126: -3.98517399e-12 - art_sys_127: 8.15266186e-15 - art_sys_128: -1.97599126e-07 - art_sys_129: 6.29970425e-18 - art_sys_130: -8.07039918e-14 - art_sys_131: -8.88504916e-17 - art_sys_132: -6.71670620e-08 - art_sys_133: 1.54886965e-13 - art_sys_134: -6.48310903e-13 - art_sys_135: 2.23030062e-08 - art_sys_136: 1.60578931e-17 - art_sys_137: -6.04891354e-15 - art_sys_138: 5.87648723e-09 - art_sys_139: 1.30644536e-13 - art_sys_140: -1.34658303e-17 - art_sys_141: 4.00811360e-14 - art_sys_142: 2.00353378e-09 - art_sys_143: 3.71303535e-14 - art_sys_144: -6.28427286e-16 - art_sys_145: 3.39373694e-10 - art_sys_146: -2.07105642e-14 - art_sys_147: 2.35036514e-16 - art_sys_148: -7.55555320e-18 - art_sys_149: -3.44717634e-11 - art_sys_150: 9.92093867e-13 - art_sys_151: 5.36170189e-14 - art_sys_152: -9.36391554e-16 - art_sys_153: 1.36661270e-13 - art_sys_154: -6.97593286e-13 - art_sys_155: -4.99428311e-16 - art_sys_156: 0.0 - art_sys_157: -3.82829040e-13 - art_sys_158: 0.0 - art_sys_159: 6.07846527e-14 - art_sys_160: -7.92071397e-15 - art_sys_161: -6.79262803e-15 - art_sys_162: -6.79262803e-15 - art_sys_163: -7.01891875e-15 - art_sys_164: -7.01891875e-15 - art_sys_165: 7.91614917e-29 - art_sys_166: -2.62751277e-29 - art_sys_167: -0.0 - art_sys_168: 3.92440147e-25 - art_sys_169: 1.62403683e-25 - art_sys_170: -4.55852290e-26 - art_sys_171: 8.34574080e-26 - art_sys_172: -1.67364267e-27 - art_sys_173: -1.79170953e-27 - art_sys_174: -1.54805141e-27 - art_sys_175: -3.87599840e-28 - art_sys_176: -1.41158833e-28 - art_sys_177: 3.56303508e-29 - art_sys_178: -7.93936057e-29 - art_sys_179: 1.52045237e-28 - art_sys_180: 1.58071498e-27 - art_sys_181: -2.89003802e-27 - art_sys_182: 3.29337168e-29 - art_sys_183: -3.53452673e-31 - art_sys_184: -2.15985865e-31 - art_sys_185: -2.87852377e-31 + art_sys_27: 5.42723729e-18 + art_sys_28: -4.88346340e-18 + art_sys_29: 4.45676814e-14 + art_sys_30: -2.65185035e-14 + art_sys_31: 4.87511252e-15 + art_sys_32: 1.31572950e-16 + art_sys_33: 1.31361547e-15 + art_sys_34: -1.16230174e-15 + art_sys_35: 2.84533718e-16 + art_sys_36: 3.55849200e-18 + art_sys_37: -3.95714784e-06 + art_sys_38: 2.24557878e-16 + art_sys_39: -3.44544495e-17 + art_sys_40: -2.78124208e-16 + art_sys_41: 4.81681427e-06 + art_sys_42: 6.48265704e-17 + art_sys_43: 3.52910636e-05 + art_sys_44: 1.20331573e-16 + art_sys_45: 1.28165840e-15 + art_sys_46: -6.12949800e-16 + art_sys_47: 2.25950589e-17 + art_sys_48: 6.38783744e-05 + art_sys_49: -1.06225761e-13 + art_sys_50: -1.64828621e-17 + art_sys_51: -7.46103307e-17 + art_sys_52: 4.23106277e-05 + art_sys_53: 5.02995899e-14 + art_sys_54: 2.75554980e-13 + art_sys_55: 4.02278030e-04 + art_sys_56: 7.24581273e-14 + art_sys_57: 3.23536825e-14 + art_sys_58: 1.26681460e-14 + art_sys_59: 5.06325407e-15 + art_sys_60: -2.85571841e-14 + art_sys_61: -6.04675179e-16 + art_sys_62: -4.23877132e-16 + art_sys_63: 6.72183413e-16 + art_sys_64: -7.22940828e-16 + art_sys_65: 4.46604700e-17 + art_sys_66: -4.44761273e-17 + art_sys_67: -2.34314963e-18 + art_sys_68: 3.47481791e-19 + art_sys_69: 1.01292292e-10 + art_sys_70: -1.93643257e-04 + art_sys_71: 1.22637521e-09 + art_sys_72: 2.33183661e-13 + art_sys_73: 3.05098184e-11 + art_sys_74: -1.66353471e-09 + art_sys_75: -1.83058450e-17 + art_sys_76: 7.43163954e-14 + art_sys_77: 5.92728105e-15 + art_sys_78: -1.23145897e-14 + art_sys_79: 4.19157484e-13 + art_sys_80: -2.14853445e-09 + art_sys_81: -7.17287775e-15 + art_sys_82: 1.09293546e-15 + art_sys_83: -4.31519451e-16 + art_sys_84: 2.60945830e-12 + art_sys_85: 4.99409401e-16 + art_sys_86: 2.00803643e-16 + art_sys_87: 7.71389745e-15 + art_sys_88: 4.10813056e-17 + art_sys_89: 1.63931074e-16 + art_sys_90: -4.67157212e-04 + art_sys_91: -3.32467502e-04 + art_sys_92: -1.75001351e-11 + art_sys_93: 4.79695431e-11 + art_sys_94: 5.17797671e-11 + art_sys_95: 1.30018604e-04 + art_sys_96: 5.07497806e-16 + art_sys_97: 5.57064524e-11 + art_sys_98: -1.45094882e-04 + art_sys_99: 7.26814086e-11 + art_sys_100: -4.04501755e-12 + art_sys_101: 9.14774905e-05 + art_sys_102: -1.11092889e-16 + art_sys_103: 4.99264495e-12 + art_sys_104: 4.79360034e-05 + art_sys_105: 7.86901558e-17 + art_sys_106: -2.20109276e-05 + art_sys_107: 3.10328115e-10 + art_sys_108: 5.23032088e-13 + art_sys_109: -2.10611097e-11 + art_sys_110: 7.49208001e-17 + art_sys_111: -9.04525267e-06 + art_sys_112: 4.97737077e-13 + art_sys_113: 1.89934388e-17 + art_sys_114: 3.41738952e-06 + art_sys_115: 1.49563715e-14 + art_sys_116: -1.35373527e-11 + art_sys_117: 5.20965483e-18 + art_sys_118: 1.50872766e-06 + art_sys_119: 7.57485160e-16 + art_sys_120: -5.69958180e-07 + art_sys_121: 4.06199784e-13 + art_sys_122: -1.97527196e-07 + art_sys_123: -4.88469144e-14 + art_sys_124: 6.71626456e-08 + art_sys_125: -2.22485540e-08 + art_sys_126: -3.38361906e-13 + art_sys_127: -5.87420428e-09 + art_sys_128: 4.17621969e-14 + art_sys_129: -6.00320889e-15 + art_sys_130: 1.02335756e-13 + art_sys_131: 3.85989165e-14 + art_sys_132: -1.99658578e-09 + art_sys_133: -7.01323552e-15 + art_sys_134: -8.42557962e-13 + art_sys_135: -3.43954427e-10 + art_sys_136: -6.19500065e-13 + art_sys_137: 3.67162676e-11 + art_sys_138: 1.67079690e-13 + art_sys_139: 5.81900377e-13 + art_sys_140: 4.99727096e-13 + art_sys_141: -2.73987305e-13 + art_sys_142: -0.0 + art_sys_143: 8.51901825e-13 + art_sys_144: 2.50385192e-13 + art_sys_145: 1.32400268e-13 + art_sys_146: 2.11064601e-18 + art_sys_147: 5.39455711e-19 + art_sys_148: -4.84222941e-16 + art_sys_149: -1.04809902e-16 + art_sys_150: -1.00836081e-17 + art_sys_151: 4.90760327e-16 + art_sys_152: -3.13934568e-16 + art_sys_153: -1.63029811e-17 + art_sys_154: 1.12258941e-16 + art_sys_155: 2.09055167e-16 + art_sys_156: 7.48778561e-16 + art_sys_157: 7.99907334e-17 + art_sys_158: -0.0 + art_sys_159: 3.77602613e-14 + art_sys_160: 3.77602613e-14 + art_sys_161: -1.12912513e-15 + art_sys_162: 4.68425039e-28 + art_sys_163: 0.0 + art_sys_164: 2.99705185e-28 + art_sys_165: 3.75033119e-24 + art_sys_166: 2.44013228e-24 + art_sys_167: -2.20480904e-24 + art_sys_168: 6.54838331e-25 + art_sys_169: 2.80310238e-25 + art_sys_170: -6.95709685e-25 + art_sys_171: 1.74926274e-26 + art_sys_172: 1.48352736e-26 + art_sys_173: -8.20756846e-26 + art_sys_174: 2.12971597e-28 + art_sys_175: 6.91542633e-28 + art_sys_176: 3.12039294e-28 + art_sys_177: 3.07555464e-28 + art_sys_178: -7.19567875e-27 + art_sys_179: -2.09102797e-28 + art_sys_180: 5.53301088e-28 + art_sys_181: -8.99534822e-30 + art_sys_182: 9.97156918e-30 + art_sys_183: 3.15607478e-31 + art_sys_184: -1.35574514e-31 + art_sys_185: 8.06852761e-30 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -9551,191 +9551,191 @@ bins: RelativeStatFSR-: -3.66056269e-04 luminosity_uncertainty: 1.26978540e-02 uncorrelated_uncertainty: 4.88379000e-03 -- art_sys_1: -7.18597319e-44 - art_sys_2: 2.70629206e-32 - art_sys_3: 2.87580045e-33 +- art_sys_1: 7.58243575e-44 + art_sys_2: -4.34592391e-31 + art_sys_3: 2.87580034e-33 art_sys_4: -1.38688319e-13 - art_sys_5: 4.76475747e-29 - art_sys_6: -8.81379460e-31 + art_sys_5: 6.30910870e-29 + art_sys_6: -1.67175018e-30 art_sys_7: 7.30758562e-13 - art_sys_8: 9.48905755e-28 + art_sys_8: 9.90651826e-28 art_sys_9: 6.68587790e-15 - art_sys_10: -9.29128639e-30 - art_sys_11: -8.81504916e-27 + art_sys_10: -4.88896370e-30 + art_sys_11: -7.86553257e-27 art_sys_12: -1.07733305e-11 - art_sys_13: -4.49796210e-26 - art_sys_14: -1.54279124e-10 - art_sys_15: 3.72469517e-24 - art_sys_16: -1.18062496e-09 - art_sys_17: -3.49108181e-26 - art_sys_18: 3.63420787e-23 - art_sys_19: 7.61106745e-10 - art_sys_20: 1.83171953e-25 - art_sys_21: -1.10159509e-21 - art_sys_22: 4.46573904e-25 + art_sys_13: 2.42945339e-28 + art_sys_14: 1.54279124e-10 + art_sys_15: -4.50050947e-24 + art_sys_16: 1.18062496e-09 + art_sys_17: -2.43759917e-26 + art_sys_18: 3.61835629e-23 + art_sys_19: -7.61106745e-10 + art_sys_20: 3.52392235e-26 + art_sys_21: -1.10207200e-21 + art_sys_22: 6.01835345e-25 art_sys_23: 2.31910387e-09 - art_sys_24: -3.48209084e-19 - art_sys_25: -2.08411151e-08 + art_sys_24: -3.48208949e-19 + art_sys_25: 2.08411151e-08 art_sys_26: -9.34220179e-08 - art_sys_27: 1.32936235e-18 - art_sys_28: -2.72389770e-19 - art_sys_29: 2.45660867e-19 - art_sys_30: -2.42096798e-07 - art_sys_31: 8.96733551e-18 - art_sys_32: 1.84901472e-18 - art_sys_33: -3.27591653e-06 - art_sys_34: 2.24332607e-06 - art_sys_35: 4.91950585e-17 - art_sys_36: 4.85356745e-14 - art_sys_37: 1.69450395e-14 - art_sys_38: -4.49097827e-15 - art_sys_39: 4.92415178e-15 - art_sys_40: 2.21500475e-16 - art_sys_41: -2.39247452e-16 - art_sys_42: -9.28798477e-16 - art_sys_43: 9.98093460e-18 - art_sys_44: -9.13681973e-17 - art_sys_45: 1.31425009e-16 - art_sys_46: 6.54120752e-17 - art_sys_47: -1.05678485e-14 - art_sys_48: 8.06152089e-06 - art_sys_49: -9.55722468e-14 - art_sys_50: 3.81221237e-17 - art_sys_51: -6.65205069e-17 - art_sys_52: 2.37536626e-14 - art_sys_53: -3.41898055e-05 - art_sys_54: 1.45450195e-13 - art_sys_55: -2.95507075e-05 - art_sys_56: 9.63832894e-17 - art_sys_57: -1.31988892e-16 - art_sys_58: 5.11725817e-17 - art_sys_59: -6.10463093e-05 - art_sys_60: -9.86591085e-12 - art_sys_61: -1.43537021e-16 - art_sys_62: 1.96397748e-14 - art_sys_63: 2.20512937e-10 - art_sys_64: -4.00872628e-14 - art_sys_65: 2.68049278e-14 - art_sys_66: -7.28370906e-15 - art_sys_67: 6.88024568e-16 - art_sys_68: 1.06851671e-15 - art_sys_69: 2.74501938e-16 - art_sys_70: 3.72368795e-16 - art_sys_71: -1.30139422e-16 - art_sys_72: 6.32593560e-17 - art_sys_73: 1.18840454e-17 - art_sys_74: 1.16014189e-12 - art_sys_75: 1.69168291e-17 - art_sys_76: -1.49770323e-14 - art_sys_77: -3.35585727e-15 - art_sys_78: -1.05653073e-14 - art_sys_79: -6.70747331e-18 - art_sys_80: 7.37182698e-16 - art_sys_81: -2.90795955e-12 - art_sys_82: 4.48837445e-09 - art_sys_83: 4.81230436e-16 - art_sys_84: -5.71510526e-16 - art_sys_85: 3.80105706e-16 - art_sys_86: 6.14200339e-17 - art_sys_87: -1.43075520e-13 - art_sys_88: 2.01334444e-13 - art_sys_89: -8.17327767e-17 - art_sys_90: -9.55349700e-13 - art_sys_91: -8.52191193e-05 - art_sys_92: 1.34083745e-17 - art_sys_93: 7.15541261e-18 - art_sys_94: 3.36141284e-14 - art_sys_95: -8.03500835e-11 - art_sys_96: 5.44951856e-04 - art_sys_97: -2.38820765e-10 - art_sys_98: -9.21359212e-11 - art_sys_99: -9.58614947e-05 - art_sys_100: 1.62534926e-10 - art_sys_101: 6.70695115e-05 - art_sys_102: 6.38209944e-12 - art_sys_103: 3.08780980e-11 - art_sys_104: -9.64600393e-05 - art_sys_105: -2.82154289e-16 - art_sys_106: 5.89935451e-05 - art_sys_107: 8.57991720e-12 - art_sys_108: 1.65142332e-15 - art_sys_109: -1.58702969e-16 - art_sys_110: 1.08117532e-10 - art_sys_111: -3.15440877e-05 - art_sys_112: -1.77378004e-11 - art_sys_113: -1.11523579e-09 - art_sys_114: -1.28947708e-17 - art_sys_115: 1.41848334e-05 - art_sys_116: -5.45214383e-12 - art_sys_117: -2.40811898e-16 - art_sys_118: -5.68259553e-06 - art_sys_119: -2.54032015e-12 - art_sys_120: 2.58149824e-11 - art_sys_121: 1.05489785e-17 - art_sys_122: 2.61092049e-06 - art_sys_123: 3.72189793e-13 - art_sys_124: -1.01783541e-06 - art_sys_125: 7.78728457e-18 - art_sys_126: 7.48831271e-12 - art_sys_127: -1.57987956e-14 - art_sys_128: 3.61583727e-07 - art_sys_129: -1.23083747e-17 - art_sys_130: 1.55593083e-13 - art_sys_131: 1.71124400e-16 - art_sys_132: 1.25007912e-07 - art_sys_133: -2.98543413e-13 - art_sys_134: 1.25293392e-12 - art_sys_135: -4.19670880e-08 - art_sys_136: -3.09109593e-17 - art_sys_137: 1.16756312e-14 - art_sys_138: -1.11682011e-08 - art_sys_139: -2.51448793e-13 - art_sys_140: 2.59993140e-17 - art_sys_141: -7.63857832e-14 - art_sys_142: -3.82753124e-09 - art_sys_143: -7.12306954e-14 - art_sys_144: 1.19868710e-15 - art_sys_145: -6.52310366e-10 - art_sys_146: 3.97914034e-14 - art_sys_147: -4.51755513e-16 - art_sys_148: 1.38288115e-17 - art_sys_149: 6.64551089e-11 - art_sys_150: -1.91239967e-12 - art_sys_151: -1.03387098e-13 - art_sys_152: 1.80398568e-15 - art_sys_153: -2.63292241e-13 - art_sys_154: 1.03520999e-12 - art_sys_155: 9.61024638e-16 - art_sys_156: -0.0 - art_sys_157: 7.39135960e-13 - art_sys_158: -0.0 - art_sys_159: -1.17188742e-13 - art_sys_160: 1.52889265e-14 - art_sys_161: 1.30802240e-14 - art_sys_162: 1.30802240e-14 - art_sys_163: 1.35267289e-14 - art_sys_164: 1.35267289e-14 - art_sys_165: -1.52541471e-28 - art_sys_166: 5.06303349e-29 - art_sys_167: 0.0 - art_sys_168: -8.31340518e-25 - art_sys_169: -2.94296566e-25 - art_sys_170: 8.05246751e-26 - art_sys_171: -1.52014517e-25 - art_sys_172: 4.39310219e-27 - art_sys_173: 3.43028460e-27 - art_sys_174: 2.79573193e-27 - art_sys_175: 6.32582331e-28 - art_sys_176: 3.23596872e-28 - art_sys_177: -3.42674434e-29 - art_sys_178: 1.51059511e-28 - art_sys_179: -2.92343312e-28 - art_sys_180: -3.04721080e-27 - art_sys_181: 4.08893524e-27 - art_sys_182: -6.16686763e-29 - art_sys_183: 6.30211694e-31 - art_sys_184: 4.11282829e-31 - art_sys_185: 5.52147168e-31 + art_sys_27: -1.32592109e-18 + art_sys_28: -2.72063636e-19 + art_sys_29: 6.64948805e-14 + art_sys_30: -2.00376546e-14 + art_sys_31: 2.94207099e-15 + art_sys_32: -3.42633949e-15 + art_sys_33: 5.07666414e-16 + art_sys_34: -1.32313725e-15 + art_sys_35: 3.59493008e-16 + art_sys_36: 2.75528396e-19 + art_sys_37: -2.42096798e-07 + art_sys_38: 2.34753058e-16 + art_sys_39: -8.97203625e-18 + art_sys_40: -1.89617094e-16 + art_sys_41: 3.27591653e-06 + art_sys_42: -2.50802657e-17 + art_sys_43: -2.24332607e-06 + art_sys_44: -6.39587051e-17 + art_sys_45: 1.68207104e-17 + art_sys_46: -7.96002156e-17 + art_sys_47: -5.53049953e-17 + art_sys_48: 8.06152087e-06 + art_sys_49: 2.58760741e-14 + art_sys_50: 2.17357632e-17 + art_sys_51: 8.43428223e-17 + art_sys_52: -3.41898050e-05 + art_sys_53: 3.72656220e-15 + art_sys_54: 2.09344273e-14 + art_sys_55: 2.95507076e-05 + art_sys_56: 4.93526598e-15 + art_sys_57: 6.31138150e-14 + art_sys_58: -4.11080922e-15 + art_sys_59: -1.20051296e-14 + art_sys_60: -8.85663235e-15 + art_sys_61: -6.99823701e-15 + art_sys_62: 6.12871558e-16 + art_sys_63: 1.25522641e-15 + art_sys_64: -8.84090386e-16 + art_sys_65: 1.60064151e-16 + art_sys_66: -6.86837049e-17 + art_sys_67: 9.78052260e-18 + art_sys_68: -3.34598730e-18 + art_sys_69: -1.80091113e-11 + art_sys_70: -6.10463059e-05 + art_sys_71: -4.34646040e-12 + art_sys_72: -1.05020953e-14 + art_sys_73: -1.45275669e-11 + art_sys_74: 5.37987386e-11 + art_sys_75: -3.21822218e-17 + art_sys_76: 3.26584945e-14 + art_sys_77: 2.79862631e-14 + art_sys_78: 3.05714882e-14 + art_sys_79: -7.64607956e-14 + art_sys_80: 2.48518618e-10 + art_sys_81: 2.40879510e-16 + art_sys_82: -6.38505897e-16 + art_sys_83: -2.24552428e-16 + art_sys_84: 4.14415877e-12 + art_sys_85: -3.94628154e-18 + art_sys_86: 2.63092323e-16 + art_sys_87: -1.94660458e-16 + art_sys_88: 7.23201868e-17 + art_sys_89: -3.32476318e-16 + art_sys_90: 8.52223677e-05 + art_sys_91: -5.44951841e-04 + art_sys_92: 2.69184946e-11 + art_sys_93: -4.50205578e-11 + art_sys_94: -6.50578186e-11 + art_sys_95: -9.58612947e-05 + art_sys_96: -9.75373804e-16 + art_sys_97: -7.19374828e-11 + art_sys_98: 6.70693333e-05 + art_sys_99: -3.28443113e-11 + art_sys_100: 6.31448985e-12 + art_sys_101: -9.64633837e-05 + art_sys_102: 2.13527245e-16 + art_sys_103: -9.28726068e-12 + art_sys_104: -5.89964113e-05 + art_sys_105: -1.33633338e-16 + art_sys_106: 3.15444579e-05 + art_sys_107: -3.04518696e-10 + art_sys_108: -1.00276102e-12 + art_sys_109: 3.47735003e-11 + art_sys_110: -1.20024934e-16 + art_sys_111: 1.41849891e-05 + art_sys_112: -9.68961123e-13 + art_sys_113: -5.20252703e-17 + art_sys_114: -5.68061589e-06 + art_sys_115: -2.87892846e-14 + art_sys_116: 2.45504720e-11 + art_sys_117: -7.66125267e-18 + art_sys_118: -2.60939303e-06 + art_sys_119: -1.45912664e-15 + art_sys_120: 1.01815502e-06 + art_sys_121: -7.30912199e-13 + art_sys_122: 3.61448215e-07 + art_sys_123: 9.42626913e-14 + art_sys_124: -1.25000957e-07 + art_sys_125: 4.18657050e-08 + art_sys_126: 6.53825523e-13 + art_sys_127: 1.11640460e-08 + art_sys_128: -8.06909778e-14 + art_sys_129: 1.16440799e-14 + art_sys_130: -1.97598518e-13 + art_sys_131: -7.42725338e-14 + art_sys_132: 3.81431204e-09 + art_sys_133: 1.21128692e-14 + art_sys_134: 1.61696363e-12 + art_sys_135: 6.61091567e-10 + art_sys_136: 1.19114463e-12 + art_sys_137: -7.07733499e-11 + art_sys_138: -3.22028236e-13 + art_sys_139: -1.12124371e-12 + art_sys_140: 3.08581223e-12 + art_sys_141: 5.27287915e-13 + art_sys_142: 0.0 + art_sys_143: -1.63820442e-12 + art_sys_144: -4.82164597e-13 + art_sys_145: -2.54392088e-13 + art_sys_146: -2.26150947e-18 + art_sys_147: -1.15830301e-18 + art_sys_148: 9.63300763e-16 + art_sys_149: 2.02151349e-16 + art_sys_150: 1.95753055e-17 + art_sys_151: -9.49503986e-16 + art_sys_152: 6.00907090e-16 + art_sys_153: 3.13744047e-17 + art_sys_154: -2.16927891e-16 + art_sys_155: -4.02300100e-16 + art_sys_156: -1.44166653e-15 + art_sys_157: -1.53462855e-16 + art_sys_158: 0.0 + art_sys_159: -7.28494578e-14 + art_sys_160: -7.28494578e-14 + art_sys_161: 2.17660700e-15 + art_sys_162: -9.03026013e-28 + art_sys_163: -0.0 + art_sys_164: -5.77781902e-28 + art_sys_165: -6.50472599e-24 + art_sys_166: -4.24839626e-24 + art_sys_167: 3.81961440e-24 + art_sys_168: -1.13280841e-24 + art_sys_169: -4.78588533e-25 + art_sys_170: 1.20207279e-24 + art_sys_171: -1.33434055e-26 + art_sys_172: -5.56295299e-26 + art_sys_173: 1.44276300e-25 + art_sys_174: -4.09634007e-28 + art_sys_175: -1.18141757e-27 + art_sys_176: -8.40899603e-28 + art_sys_177: -8.91070272e-28 + art_sys_178: 1.02358701e-26 + art_sys_179: 2.36825698e-28 + art_sys_180: -1.04881631e-27 + art_sys_181: 1.57622072e-29 + art_sys_182: -1.79033637e-29 + art_sys_183: -6.02632470e-31 + art_sys_184: 2.60871989e-31 + art_sys_185: -1.55834870e-29 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -9842,191 +9842,191 @@ bins: RelativeStatFSR-: -2.35768380e-04 luminosity_uncertainty: 7.67176800e-03 uncorrelated_uncertainty: 2.95068000e-03 -- art_sys_1: -9.13473569e-45 - art_sys_2: 3.43909571e-33 - art_sys_3: 1.17797226e-33 +- art_sys_1: 9.63262969e-45 + art_sys_2: -5.52270338e-32 + art_sys_3: 1.17797224e-33 art_sys_4: -1.76242029e-14 - art_sys_5: -8.36736780e-30 - art_sys_6: -1.10536292e-31 + art_sys_5: -6.40006577e-30 + art_sys_6: -2.12181807e-31 art_sys_7: -4.47899417e-14 - art_sys_8: 1.84948720e-28 + art_sys_8: 1.84696800e-28 art_sys_9: 3.03444680e-13 - art_sys_10: -2.27717315e-31 - art_sys_11: -6.32156702e-28 + art_sys_10: 1.92530222e-30 + art_sys_11: -4.95851839e-28 art_sys_12: -1.27367644e-12 - art_sys_13: -5.99200458e-27 - art_sys_14: -2.05283480e-11 - art_sys_15: -6.80189127e-25 - art_sys_16: -8.42897222e-11 - art_sys_17: -3.23889271e-27 - art_sys_18: -8.91246205e-24 - art_sys_19: 1.42907549e-10 - art_sys_20: -9.75617640e-27 - art_sys_21: 4.27173763e-23 - art_sys_22: -7.42694776e-26 + art_sys_13: 3.12250359e-29 + art_sys_14: 2.05283480e-11 + art_sys_15: 6.24081284e-25 + art_sys_16: 8.42897222e-11 + art_sys_17: -2.39591729e-27 + art_sys_18: -8.91367292e-24 + art_sys_19: -1.42907549e-10 + art_sys_20: -1.64570387e-26 + art_sys_21: 4.26439343e-23 + art_sys_22: -6.96964410e-26 art_sys_23: -1.35032400e-10 - art_sys_24: -9.62411440e-22 - art_sys_25: 8.99308637e-09 + art_sys_24: -9.62428968e-22 + art_sys_25: -8.99308637e-09 art_sys_26: 3.20141638e-08 - art_sys_27: -1.12360850e-19 - art_sys_28: 1.49422993e-19 - art_sys_29: -2.65373762e-19 - art_sys_30: 1.23104123e-07 - art_sys_31: -2.08454185e-20 - art_sys_32: -2.14363705e-19 - art_sys_33: -4.13883341e-07 - art_sys_34: 2.54782798e-06 - art_sys_35: -2.72080315e-17 - art_sys_36: -4.24098175e-14 - art_sys_37: 1.23332651e-15 - art_sys_38: -5.59227824e-16 - art_sys_39: 7.43297308e-15 - art_sys_40: -3.03546565e-16 - art_sys_41: 2.10504391e-16 - art_sys_42: -1.12660593e-16 - art_sys_43: 1.42640060e-16 - art_sys_44: 1.96609673e-17 - art_sys_45: -9.69961673e-17 - art_sys_46: -1.05480763e-16 - art_sys_47: 4.04595311e-15 - art_sys_48: -3.08644439e-06 - art_sys_49: 3.71786712e-14 - art_sys_50: -5.00054593e-17 - art_sys_51: 1.29210619e-16 - art_sys_52: -9.38127834e-15 - art_sys_53: -8.70142395e-06 - art_sys_54: 7.09744852e-15 - art_sys_55: 2.92482344e-05 - art_sys_56: 1.44484829e-15 - art_sys_57: 1.77173813e-16 - art_sys_58: -7.56230445e-17 - art_sys_59: 1.12793149e-05 - art_sys_60: -2.61816028e-11 - art_sys_61: -1.11946398e-16 - art_sys_62: 8.97131686e-16 - art_sys_63: 2.03991044e-14 - art_sys_64: 6.05727777e-14 - art_sys_65: 2.21829500e-15 - art_sys_66: 5.51063051e-17 - art_sys_67: 6.50883569e-16 - art_sys_68: 4.66283442e-16 - art_sys_69: 1.29836433e-15 - art_sys_70: -8.49439514e-16 - art_sys_71: -2.77548271e-17 - art_sys_72: -1.20649259e-16 - art_sys_73: -7.33057209e-18 - art_sys_74: 1.82239263e-13 - art_sys_75: -1.64410094e-17 - art_sys_76: -1.17316818e-13 - art_sys_77: -5.70926438e-15 - art_sys_78: -1.58486244e-15 - art_sys_79: 4.65273800e-18 - art_sys_80: 2.85698009e-15 - art_sys_81: -4.54813702e-13 - art_sys_82: 9.50434330e-10 - art_sys_83: -1.23392635e-15 - art_sys_84: -1.06689157e-16 - art_sys_85: 1.29741007e-15 - art_sys_86: 1.99665902e-16 - art_sys_87: 1.33039789e-13 - art_sys_88: -2.85315075e-13 - art_sys_89: 1.95866782e-18 - art_sys_90: 1.98177979e-12 - art_sys_91: -1.42663644e-04 - art_sys_92: 2.13637971e-17 - art_sys_93: -2.06048708e-18 - art_sys_94: -7.17124435e-14 - art_sys_95: 5.09414983e-10 - art_sys_96: 8.52779939e-05 - art_sys_97: -3.60856118e-11 - art_sys_98: 1.66355238e-10 - art_sys_99: -3.92483527e-04 - art_sys_100: -1.58527435e-10 - art_sys_101: -4.08733155e-05 - art_sys_102: -2.58826370e-11 - art_sys_103: 2.32524470e-11 - art_sys_104: 5.40760927e-05 - art_sys_105: 5.73009847e-16 - art_sys_106: -7.45064746e-05 - art_sys_107: -1.80494032e-11 - art_sys_108: -3.70274126e-15 - art_sys_109: 3.25515756e-16 - art_sys_110: -2.11035636e-10 - art_sys_111: 4.60113021e-05 - art_sys_112: 3.43081251e-11 - art_sys_113: 1.62657255e-09 - art_sys_114: 2.93824668e-17 - art_sys_115: -2.39311122e-05 - art_sys_116: 1.13820184e-11 - art_sys_117: 3.89711032e-16 - art_sys_118: 1.04285974e-05 - art_sys_119: 5.45304029e-12 - art_sys_120: -5.55388990e-11 - art_sys_121: -3.55242908e-17 - art_sys_122: -5.02858209e-06 - art_sys_123: -8.26540556e-13 - art_sys_124: 2.05468659e-06 - art_sys_125: -1.78815198e-17 - art_sys_126: -1.62121974e-11 - art_sys_127: 3.56060648e-14 - art_sys_128: -7.53825532e-07 - art_sys_129: 2.79933331e-17 - art_sys_130: -3.48729598e-13 - art_sys_131: -3.82719626e-16 - art_sys_132: -2.66513952e-07 - art_sys_133: 6.68993362e-13 - art_sys_134: -2.81873968e-12 - art_sys_135: 9.09789582e-08 - art_sys_136: 6.91760203e-17 - art_sys_137: -2.62351090e-14 - art_sys_138: 2.45165814e-08 - art_sys_139: 5.62224063e-13 - art_sys_140: -5.83953990e-17 - art_sys_141: 1.68466074e-13 - art_sys_142: 8.47289331e-09 - art_sys_143: 1.58592116e-13 - art_sys_144: -2.64796838e-15 - art_sys_145: 1.45626112e-09 - art_sys_146: -8.87834397e-14 - art_sys_147: 1.00848150e-15 - art_sys_148: -2.88953611e-17 - art_sys_149: -1.48924949e-10 - art_sys_150: 4.28516110e-12 - art_sys_151: 2.31788956e-13 - art_sys_152: -4.03926777e-15 - art_sys_153: 5.89587245e-13 - art_sys_154: -1.69506641e-12 - art_sys_155: -2.14833829e-15 - art_sys_156: 0.0 - art_sys_157: -1.66040696e-12 - art_sys_158: 0.0 - art_sys_159: 2.62672373e-13 - art_sys_160: -3.43353752e-14 - art_sys_161: -2.92716655e-14 - art_sys_162: -2.92716655e-14 - art_sys_163: -3.03039546e-14 - art_sys_164: -3.03039546e-14 - art_sys_165: 3.41686348e-28 - art_sys_166: -1.13406944e-28 - art_sys_167: -0.0 - art_sys_168: 1.61573974e-24 - art_sys_169: 6.13533553e-25 - art_sys_170: -1.72162958e-25 - art_sys_171: 3.05202071e-25 - art_sys_172: -8.93162791e-27 - art_sys_173: -6.67289968e-27 - art_sys_174: -5.60670352e-27 - art_sys_175: -1.20478694e-27 - art_sys_176: -7.92319668e-28 - art_sys_177: -6.90923502e-30 - art_sys_178: -3.32608804e-28 - art_sys_179: 6.52800054e-28 - art_sys_180: 6.82929004e-27 - art_sys_181: -5.79427316e-27 - art_sys_182: 1.25948316e-28 - art_sys_183: -1.35076207e-30 - art_sys_184: -9.05220255e-31 - art_sys_185: -1.22915102e-30 + art_sys_27: 1.13083190e-19 + art_sys_28: 1.49254790e-19 + art_sys_29: -8.07190719e-14 + art_sys_30: 6.65421857e-14 + art_sys_31: -2.82515885e-14 + art_sys_32: 5.45000512e-15 + art_sys_33: -2.70730981e-16 + art_sys_34: 6.39655832e-16 + art_sys_35: 4.95940100e-16 + art_sys_36: 1.75533355e-20 + art_sys_37: 1.23104123e-07 + art_sys_38: -1.33314939e-16 + art_sys_39: 1.99471459e-20 + art_sys_40: -2.40667204e-17 + art_sys_41: 4.13883341e-07 + art_sys_42: 6.77248411e-17 + art_sys_43: -2.54782798e-06 + art_sys_44: 1.00326277e-16 + art_sys_45: -6.68830636e-17 + art_sys_46: 2.93457332e-17 + art_sys_47: 4.58940410e-17 + art_sys_48: -3.08644438e-06 + art_sys_49: 1.17616337e-14 + art_sys_50: -8.73154781e-18 + art_sys_51: -7.54230831e-17 + art_sys_52: -8.70142439e-06 + art_sys_53: -1.13586072e-15 + art_sys_54: -2.00035978e-14 + art_sys_55: -2.92482346e-05 + art_sys_56: 1.63981886e-15 + art_sys_57: 3.50060443e-14 + art_sys_58: 7.95074924e-15 + art_sys_59: -1.83300098e-14 + art_sys_60: 1.58133862e-15 + art_sys_61: 1.33089821e-15 + art_sys_62: -2.47643941e-15 + art_sys_63: 1.07736494e-15 + art_sys_64: 5.31828223e-16 + art_sys_65: -1.77357255e-16 + art_sys_66: 4.53075199e-17 + art_sys_67: 5.14287926e-17 + art_sys_68: -3.55838189e-18 + art_sys_69: -3.07885109e-11 + art_sys_70: 1.12794258e-05 + art_sys_71: -3.04377157e-10 + art_sys_72: -1.33545480e-14 + art_sys_73: 7.27933657e-12 + art_sys_74: 4.28513863e-10 + art_sys_75: -2.24794690e-18 + art_sys_76: -5.62070612e-14 + art_sys_77: -1.48646738e-14 + art_sys_78: -3.24547861e-15 + art_sys_79: -1.27999547e-13 + art_sys_80: 3.95707369e-10 + art_sys_81: -2.77372415e-16 + art_sys_82: -1.24523615e-15 + art_sys_83: 7.30013212e-16 + art_sys_84: 7.99676738e-13 + art_sys_85: -7.21730877e-16 + art_sys_86: -6.09128382e-17 + art_sys_87: 7.72597230e-15 + art_sys_88: -4.02727631e-16 + art_sys_89: 7.74423878e-16 + art_sys_90: 1.42663384e-04 + art_sys_91: -8.52781168e-05 + art_sys_92: -4.22137083e-11 + art_sys_93: -2.58277708e-11 + art_sys_94: 9.31040291e-11 + art_sys_95: -3.92483325e-04 + art_sys_96: 2.17784155e-15 + art_sys_97: 8.86122361e-11 + art_sys_98: -4.08738421e-05 + art_sys_99: 2.15075144e-11 + art_sys_100: -1.05843346e-11 + art_sys_101: 5.40800675e-05 + art_sys_102: -4.77014578e-16 + art_sys_103: 1.97618133e-11 + art_sys_104: 7.45080452e-05 + art_sys_105: 2.55402615e-16 + art_sys_106: -4.60118837e-05 + art_sys_107: -2.19723081e-10 + art_sys_108: 2.24229766e-12 + art_sys_109: -6.41527073e-11 + art_sys_110: 2.15932232e-16 + art_sys_111: -2.39313125e-05 + art_sys_112: 2.19076998e-12 + art_sys_113: 1.37733607e-16 + art_sys_114: 1.04246214e-05 + art_sys_115: 6.43465829e-14 + art_sys_116: -5.07276070e-11 + art_sys_117: 1.18386089e-17 + art_sys_118: 5.02570622e-06 + art_sys_119: 3.27015373e-15 + art_sys_120: -2.05532509e-06 + art_sys_121: 1.48510177e-12 + art_sys_122: -7.53533156e-07 + art_sys_123: -2.11503356e-13 + art_sys_124: 2.66503087e-07 + art_sys_125: -9.07627004e-08 + art_sys_126: -1.46870474e-12 + art_sys_127: -2.45080224e-08 + art_sys_128: 1.81304127e-13 + art_sys_129: -2.62848324e-14 + art_sys_130: 4.43813711e-13 + art_sys_131: 1.66008289e-13 + art_sys_132: -8.44381677e-09 + art_sys_133: -2.28373749e-14 + art_sys_134: -3.60189042e-12 + art_sys_135: -1.47579893e-09 + art_sys_136: -2.66035719e-12 + art_sys_137: 1.58577273e-10 + art_sys_138: 7.21478276e-13 + art_sys_139: 2.51117816e-12 + art_sys_140: -3.84700820e-12 + art_sys_141: -1.17890706e-12 + art_sys_142: -0.0 + art_sys_143: 3.65894341e-12 + art_sys_144: 1.07902704e-12 + art_sys_145: 5.67469815e-13 + art_sys_146: 7.09612483e-19 + art_sys_147: 2.89239916e-18 + art_sys_148: -2.23481937e-15 + art_sys_149: -4.52707381e-16 + art_sys_150: -4.42178403e-17 + art_sys_151: 2.13766895e-15 + art_sys_152: -1.33377736e-15 + art_sys_153: -7.01564232e-17 + art_sys_154: 4.87674127e-16 + art_sys_155: 8.99322155e-16 + art_sys_156: 3.22530165e-15 + art_sys_157: 3.41606117e-16 + art_sys_158: -0.0 + art_sys_159: 1.63439124e-13 + art_sys_160: 1.63439124e-13 + art_sys_161: -4.87753505e-15 + art_sys_162: 2.02374308e-27 + art_sys_163: 0.0 + art_sys_164: 1.29489363e-27 + art_sys_165: 1.28327262e-23 + art_sys_166: 8.42578938e-24 + art_sys_167: -7.48116742e-24 + art_sys_168: 2.23014133e-24 + art_sys_169: 9.40047365e-25 + art_sys_170: -2.41459161e-24 + art_sys_171: 2.49061231e-26 + art_sys_172: 9.32034529e-26 + art_sys_173: -2.85347607e-25 + art_sys_174: 9.15134071e-28 + art_sys_175: 2.53558053e-27 + art_sys_176: 1.16039866e-27 + art_sys_177: 2.58888383e-27 + art_sys_178: -1.46553333e-26 + art_sys_179: -1.31482157e-28 + art_sys_180: 2.29513129e-27 + art_sys_181: -2.96914283e-29 + art_sys_182: 3.45610011e-29 + art_sys_183: 1.32553776e-30 + art_sys_184: -5.83178965e-31 + art_sys_185: 3.50125877e-29 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -10133,191 +10133,191 @@ bins: RelativeStatFSR-: -1.51798396e-04 luminosity_uncertainty: 4.63970000e-03 uncorrelated_uncertainty: 1.78450000e-03 -- art_sys_1: -7.48986441e-46 - art_sys_2: 2.81967212e-34 - art_sys_3: 1.05870096e-34 +- art_sys_1: 7.89726678e-46 + art_sys_2: -4.52799633e-33 + art_sys_3: 1.05870095e-34 art_sys_4: -1.44498664e-15 - art_sys_5: -1.30379249e-30 - art_sys_6: -9.21668126e-33 + art_sys_5: -1.14279245e-30 + art_sys_6: -1.74964627e-32 art_sys_7: -9.84542604e-15 - art_sys_8: 1.85693996e-29 + art_sys_8: 1.84828576e-29 art_sys_9: 4.62614807e-14 - art_sys_10: -7.53417191e-33 - art_sys_11: 9.73077829e-29 + art_sys_10: 3.52296310e-31 + art_sys_11: 1.19922981e-28 art_sys_12: -1.29320945e-13 - art_sys_13: -9.55476631e-28 - art_sys_14: -3.26708601e-12 - art_sys_15: -1.21509408e-25 - art_sys_16: 6.06558782e-13 - art_sys_17: -1.52285087e-28 - art_sys_18: -1.05307248e-24 - art_sys_19: 1.66561900e-11 - art_sys_20: -3.90025470e-27 - art_sys_21: 1.63770205e-23 - art_sys_22: -1.68554271e-26 + art_sys_13: 3.80070303e-30 + art_sys_14: 3.26708601e-12 + art_sys_15: 1.21236134e-25 + art_sys_16: -6.06558782e-13 + art_sys_17: -1.27780709e-28 + art_sys_18: -1.05097374e-24 + art_sys_19: -1.66561900e-11 + art_sys_20: -3.19564887e-27 + art_sys_21: 1.63697259e-23 + art_sys_22: -1.99271712e-26 art_sys_23: -4.95638193e-11 - art_sys_24: -1.11378865e-22 - art_sys_25: 2.87426900e-09 + art_sys_24: -1.11383464e-22 + art_sys_25: -2.87426900e-09 art_sys_26: 5.91681548e-09 - art_sys_27: 3.23317084e-17 - art_sys_28: 3.52464738e-20 - art_sys_29: -7.04928147e-18 - art_sys_30: 2.97631653e-08 - art_sys_31: -2.26178345e-19 - art_sys_32: -1.17873078e-17 - art_sys_33: -2.32279263e-09 - art_sys_34: 4.66778557e-07 - art_sys_35: -7.30174793e-18 - art_sys_36: -4.10205552e-14 - art_sys_37: 1.81002857e-14 - art_sys_38: 7.70103874e-15 - art_sys_39: 3.20095870e-15 - art_sys_40: 1.12537180e-15 - art_sys_41: -2.14623935e-16 - art_sys_42: 5.15215006e-16 - art_sys_43: -1.86727115e-16 - art_sys_44: -3.93280403e-17 - art_sys_45: 1.56532176e-16 - art_sys_46: 1.35271318e-16 - art_sys_47: 1.21342365e-15 - art_sys_48: -9.26748773e-07 - art_sys_49: 1.10856278e-14 - art_sys_50: 4.94142002e-17 - art_sys_51: -1.34465262e-16 - art_sys_52: -2.77319670e-15 - art_sys_53: 3.13522076e-07 - art_sys_54: -6.19253964e-15 - art_sys_55: 6.26591323e-06 - art_sys_56: 2.68599144e-16 - art_sys_57: -2.32652752e-16 - art_sys_58: 9.76288418e-17 - art_sys_59: 6.05120269e-06 - art_sys_60: -4.39149792e-12 - art_sys_61: -9.11463708e-17 - art_sys_62: -1.07695728e-15 - art_sys_63: -5.05647390e-11 - art_sys_64: -3.62113710e-15 - art_sys_65: -7.35112357e-15 - art_sys_66: -1.79053457e-15 - art_sys_67: 5.63263792e-15 - art_sys_68: -1.13845229e-15 - art_sys_69: -6.51966402e-16 - art_sys_70: -5.68638936e-16 - art_sys_71: 2.39883574e-16 - art_sys_72: -1.26021491e-16 - art_sys_73: -1.01143637e-17 - art_sys_74: -2.10480848e-13 - art_sys_75: 7.91419277e-18 - art_sys_76: -6.09306554e-14 - art_sys_77: -1.52111126e-14 - art_sys_78: -1.12975751e-14 - art_sys_79: -1.98003191e-17 - art_sys_80: -3.76539723e-15 - art_sys_81: 5.32384404e-13 - art_sys_82: -7.19208058e-10 - art_sys_83: -1.76548930e-15 - art_sys_84: -1.66121113e-17 - art_sys_85: 2.27033686e-16 - art_sys_86: -3.07270040e-16 - art_sys_87: 1.60586961e-13 - art_sys_88: 3.26959929e-13 - art_sys_89: -2.22729794e-17 - art_sys_90: -3.79390053e-12 - art_sys_91: -8.78305314e-06 - art_sys_92: -1.12154826e-17 - art_sys_93: -1.12210923e-17 - art_sys_94: 1.47869488e-13 - art_sys_95: -1.66606730e-10 - art_sys_96: -9.97597849e-05 - art_sys_97: 4.42273272e-11 - art_sys_98: -3.77339906e-10 - art_sys_99: -1.30210988e-04 - art_sys_100: -3.14822067e-10 - art_sys_101: -2.79211432e-04 - art_sys_102: 7.14575099e-11 - art_sys_103: -2.42054543e-11 - art_sys_104: -2.58133445e-05 - art_sys_105: -1.08219241e-15 - art_sys_106: 4.22123917e-05 - art_sys_107: 3.64002844e-11 - art_sys_108: 8.17085129e-15 - art_sys_109: -6.90318750e-16 - art_sys_110: 3.86222313e-10 - art_sys_111: -5.78781618e-05 - art_sys_112: -6.21577084e-11 - art_sys_113: -2.04434790e-09 - art_sys_114: -6.53742119e-17 - art_sys_115: 3.47120824e-05 - art_sys_116: -2.27823661e-11 - art_sys_117: -5.90493558e-16 - art_sys_118: -1.74242966e-05 - art_sys_119: -1.13249868e-11 - art_sys_120: 1.15612792e-10 - art_sys_121: 1.01271011e-16 - art_sys_122: 9.02226653e-06 - art_sys_123: 1.79500279e-12 - art_sys_124: -3.91573761e-06 - art_sys_125: 3.99993239e-17 - art_sys_126: 3.40391665e-11 - art_sys_127: -7.87676658e-14 - art_sys_128: 1.50585295e-06 - art_sys_129: -6.23887882e-17 - art_sys_130: 7.68460771e-13 - art_sys_131: 8.38769835e-16 - art_sys_132: 5.48619297e-07 - art_sys_133: -1.47438169e-12 - art_sys_134: 6.23923225e-12 - art_sys_135: -1.91403441e-07 - art_sys_136: -1.52500849e-16 - art_sys_137: 5.82202054e-14 - art_sys_138: -5.25537561e-08 - art_sys_139: -1.23594428e-12 - art_sys_140: 1.29076244e-16 - art_sys_141: -3.62860958e-13 - art_sys_142: -1.83442373e-08 - art_sys_143: -3.46294278e-13 - art_sys_144: 5.71763123e-15 - art_sys_145: -3.19176362e-09 - art_sys_146: 1.94472875e-13 - art_sys_147: -2.21044489e-15 - art_sys_148: 5.59554218e-17 - art_sys_149: 3.28479049e-10 - art_sys_150: -9.45014663e-12 - art_sys_151: -5.10719932e-13 - art_sys_152: 8.89734386e-15 - art_sys_153: -1.29816466e-12 - art_sys_154: 2.47247320e-12 - art_sys_155: 4.72486077e-15 - art_sys_156: -0.0 - art_sys_157: 3.66422899e-12 - art_sys_158: -0.0 - art_sys_159: -5.78703593e-13 - art_sys_160: 7.57590608e-14 - art_sys_161: 6.44150522e-14 - art_sys_162: 6.44150522e-14 - art_sys_163: 6.67403740e-14 - art_sys_164: 6.67403740e-14 - art_sys_165: -7.52432702e-28 - art_sys_166: 2.49730661e-28 - art_sys_167: 0.0 - art_sys_168: -2.80348145e-24 - art_sys_169: -1.29724624e-24 - art_sys_170: 3.74520615e-25 - art_sys_171: -6.54161439e-25 - art_sys_172: 1.90699727e-26 - art_sys_173: 1.40973042e-26 - art_sys_174: 1.18111626e-26 - art_sys_175: 2.47987006e-27 - art_sys_176: 1.84000378e-27 - art_sys_177: 1.56225546e-28 - art_sys_178: 7.16682614e-28 - art_sys_179: -1.43455082e-27 - art_sys_180: -1.50445705e-26 - art_sys_181: 6.85272210e-27 - art_sys_182: -2.67099314e-28 - art_sys_183: 2.89814125e-30 - art_sys_184: 1.95007505e-30 - art_sys_185: 2.68372323e-30 + art_sys_27: -3.23359377e-17 + art_sys_28: 3.52056874e-20 + art_sys_29: -4.36028461e-14 + art_sys_30: -3.28238678e-14 + art_sys_31: -1.82594778e-14 + art_sys_32: 2.52943947e-15 + art_sys_33: 4.59768095e-16 + art_sys_34: -5.60602754e-16 + art_sys_35: 6.85526336e-16 + art_sys_36: -1.06807323e-17 + art_sys_37: 2.97631653e-08 + art_sys_38: -1.97924881e-16 + art_sys_39: 2.26115570e-19 + art_sys_40: -4.80810948e-19 + art_sys_41: 2.32279263e-09 + art_sys_42: 3.70141734e-17 + art_sys_43: -4.66778557e-07 + art_sys_44: 9.45883614e-18 + art_sys_45: -1.46563619e-17 + art_sys_46: 5.40631472e-18 + art_sys_47: 3.23454495e-19 + art_sys_48: -9.26748771e-07 + art_sys_49: 6.22784656e-16 + art_sys_50: -6.48131311e-19 + art_sys_51: 5.21515063e-17 + art_sys_52: 3.13521977e-07 + art_sys_53: -3.85245349e-16 + art_sys_54: -4.34820444e-15 + art_sys_55: -6.26591326e-06 + art_sys_56: -1.45234158e-17 + art_sys_57: -6.93696484e-14 + art_sys_58: -2.31560546e-14 + art_sys_59: -1.15015515e-14 + art_sys_60: 9.39527185e-16 + art_sys_61: -2.09143861e-15 + art_sys_62: -2.06769268e-15 + art_sys_63: -6.55791268e-16 + art_sys_64: -3.14118697e-16 + art_sys_65: 7.76532826e-17 + art_sys_66: -2.39924506e-17 + art_sys_67: 2.32273966e-17 + art_sys_68: 1.68625781e-17 + art_sys_69: -1.97674977e-12 + art_sys_70: 6.05122358e-06 + art_sys_71: -5.74451688e-11 + art_sys_72: -1.88274184e-15 + art_sys_73: 5.83882127e-11 + art_sys_74: 7.02228919e-11 + art_sys_75: 9.23868043e-18 + art_sys_76: 2.72217781e-15 + art_sys_77: 3.33568649e-14 + art_sys_78: 6.87168554e-15 + art_sys_79: -7.87526120e-15 + art_sys_80: 3.49164721e-10 + art_sys_81: -1.07049432e-15 + art_sys_82: -1.02138707e-16 + art_sys_83: -3.86296268e-16 + art_sys_84: -2.76132773e-13 + art_sys_85: 8.29961223e-17 + art_sys_86: 3.79703377e-16 + art_sys_87: -2.02461666e-14 + art_sys_88: 7.91333938e-16 + art_sys_89: -1.78845304e-15 + art_sys_90: 8.78224759e-06 + art_sys_91: 9.97601445e-05 + art_sys_92: 6.06003237e-11 + art_sys_93: 4.70908267e-12 + art_sys_94: -8.46917997e-11 + art_sys_95: -1.30210383e-04 + art_sys_96: -4.78627658e-15 + art_sys_97: -1.37881980e-10 + art_sys_98: -2.79211816e-04 + art_sys_99: 1.37880297e-10 + art_sys_100: 1.51244207e-11 + art_sys_101: -2.58158851e-05 + art_sys_102: 1.05028749e-15 + art_sys_103: -4.06461193e-11 + art_sys_104: -4.22126519e-05 + art_sys_105: -5.22661079e-16 + art_sys_106: 5.78794972e-05 + art_sys_107: -2.54838561e-10 + art_sys_108: -4.91633841e-12 + art_sys_109: 1.08352634e-10 + art_sys_110: -4.28684158e-16 + art_sys_111: 3.47122225e-05 + art_sys_112: -4.85105665e-12 + art_sys_113: -3.28343725e-16 + art_sys_114: -1.74167206e-05 + art_sys_115: -1.41022607e-13 + art_sys_116: 1.00891749e-10 + art_sys_117: -1.65477634e-17 + art_sys_118: -9.01724872e-06 + art_sys_119: -7.24190357e-15 + art_sys_120: 3.91693700e-06 + art_sys_121: -2.86036054e-12 + art_sys_122: 1.50524061e-06 + art_sys_123: 4.66676350e-13 + art_sys_124: -5.48607091e-07 + art_sys_125: 1.90957678e-07 + art_sys_126: 3.25109104e-12 + art_sys_127: 5.25369441e-08 + art_sys_128: -4.00207254e-13 + art_sys_129: 5.81580880e-14 + art_sys_130: -9.80955435e-13 + art_sys_131: -3.65085022e-13 + art_sys_132: 1.82817411e-08 + art_sys_133: 3.66297846e-14 + art_sys_134: 7.87077521e-12 + art_sys_135: 3.23435934e-09 + art_sys_136: 5.83435817e-12 + art_sys_137: -3.49675896e-10 + art_sys_138: -1.59028534e-12 + art_sys_139: -5.53206429e-12 + art_sys_140: 1.30731458e-11 + art_sys_141: 2.59333854e-12 + art_sys_142: 0.0 + art_sys_143: -8.02679691e-12 + art_sys_144: -2.37202438e-12 + art_sys_145: -1.24604211e-12 + art_sys_146: 6.86374233e-18 + art_sys_147: -6.79071161e-18 + art_sys_148: 5.05489960e-15 + art_sys_149: 9.90042148e-16 + art_sys_150: 9.75963027e-17 + art_sys_151: -4.72059494e-15 + art_sys_152: 2.89834245e-15 + art_sys_153: 1.54048409e-16 + art_sys_154: -1.07931764e-15 + art_sys_155: -1.97961678e-15 + art_sys_156: -7.09830994e-15 + art_sys_157: -7.48389670e-16 + art_sys_158: 0.0 + art_sys_159: -3.60835138e-13 + art_sys_160: -3.60835138e-13 + art_sys_161: 1.07672423e-14 + art_sys_162: -4.46679833e-27 + art_sys_163: -0.0 + art_sys_164: -2.85788073e-27 + art_sys_165: -2.64307059e-23 + art_sys_166: -1.74074366e-23 + art_sys_167: 1.53883377e-23 + art_sys_168: -4.58625367e-24 + art_sys_169: -1.91871036e-24 + art_sys_170: 4.80659583e-24 + art_sys_171: -4.77160591e-26 + art_sys_172: -1.90038127e-25 + art_sys_173: 5.87544561e-25 + art_sys_174: -2.01185703e-27 + art_sys_175: -5.10039114e-27 + art_sys_176: -2.45509084e-27 + art_sys_177: -6.32061096e-27 + art_sys_178: 1.77555844e-26 + art_sys_179: -4.16612458e-28 + art_sys_180: -4.86829993e-27 + art_sys_181: 6.00848689e-29 + art_sys_182: -7.13178445e-29 + art_sys_183: -2.89090835e-30 + art_sys_184: 1.27960212e-30 + art_sys_185: -7.75775414e-29 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -10424,191 +10424,191 @@ bins: RelativeStatFSR-: -9.85431923e-05 luminosity_uncertainty: 2.83298600e-03 uncorrelated_uncertainty: 1.08961000e-03 -- art_sys_1: -4.60732387e-47 - art_sys_2: 1.73435904e-35 - art_sys_3: 7.33326662e-36 +- art_sys_1: 4.85718442e-47 + art_sys_2: -2.78513637e-34 + art_sys_3: 7.33326655e-36 art_sys_4: -8.88800380e-17 - art_sys_5: -1.30719054e-31 - art_sys_6: -5.66387256e-34 + art_sys_5: -1.20798043e-31 + art_sys_6: -1.07457979e-33 art_sys_7: -9.98804067e-16 - art_sys_8: 1.83192589e-30 + art_sys_8: 1.82009817e-30 art_sys_9: 4.59688577e-15 - art_sys_10: 2.75269224e-33 - art_sys_11: 4.77195638e-29 + art_sys_10: 3.38687872e-32 + art_sys_11: 4.97100253e-29 art_sys_12: -9.68301842e-15 - art_sys_13: -8.23891011e-29 - art_sys_14: -2.81251674e-13 - art_sys_15: 5.61415965e-27 - art_sys_16: 1.45119116e-12 - art_sys_17: 3.03331218e-29 - art_sys_18: -6.02155253e-26 - art_sys_19: -3.92602550e-13 - art_sys_20: -2.60220525e-28 - art_sys_21: 1.34655039e-24 - art_sys_22: -1.85188351e-27 + art_sys_13: 3.99528641e-31 + art_sys_14: 2.81251674e-13 + art_sys_15: -4.69271139e-27 + art_sys_16: -1.45119116e-12 + art_sys_17: 2.17873233e-29 + art_sys_18: -5.99419003e-26 + art_sys_19: 3.92602550e-13 + art_sys_20: -6.02959722e-29 + art_sys_21: 1.34691482e-24 + art_sys_22: -2.11235937e-27 art_sys_23: -2.91829722e-12 - art_sys_24: 1.33889649e-23 - art_sys_25: 3.35382069e-10 + art_sys_24: 1.33888336e-23 + art_sys_25: -3.35382069e-10 art_sys_26: 2.49670406e-10 - art_sys_27: 1.98587719e-17 - art_sys_28: 2.57337640e-21 - art_sys_29: 4.66591671e-18 - art_sys_30: 2.16082231e-09 - art_sys_31: -1.99040219e-20 - art_sys_32: 6.84604284e-18 - art_sys_33: 2.52780520e-09 - art_sys_34: 2.00616710e-08 - art_sys_35: -3.53977848e-19 - art_sys_36: -2.95589058e-14 - art_sys_37: 8.98421085e-15 - art_sys_38: 1.73304945e-15 - art_sys_39: -1.13716870e-15 - art_sys_40: 7.59764028e-16 - art_sys_41: -6.96057518e-16 - art_sys_42: 4.81760458e-16 - art_sys_43: -1.10168592e-16 - art_sys_44: 4.37015344e-17 - art_sys_45: 3.64042130e-17 - art_sys_46: -1.44346124e-16 - art_sys_47: 6.69321783e-17 - art_sys_48: -5.13424811e-08 - art_sys_49: 6.02066033e-16 - art_sys_50: -7.10166639e-17 - art_sys_51: 1.04750008e-16 - art_sys_52: -1.43067340e-16 - art_sys_53: 5.11283594e-07 - art_sys_54: -1.48784986e-15 - art_sys_55: -4.71049750e-07 - art_sys_56: -6.33883510e-17 - art_sys_57: 1.98851820e-16 - art_sys_58: -8.78364328e-17 - art_sys_59: 2.00386604e-07 - art_sys_60: 3.12412948e-12 - art_sys_61: 9.35037036e-17 - art_sys_62: 1.91025295e-16 - art_sys_63: -1.05276336e-11 - art_sys_64: 2.62958657e-14 - art_sys_65: 1.13065766e-14 - art_sys_66: 4.51770452e-15 - art_sys_67: -1.01833354e-15 - art_sys_68: -8.46382623e-16 - art_sys_69: -1.10163544e-16 - art_sys_70: -4.57628872e-16 - art_sys_71: -4.10829533e-17 - art_sys_72: -5.16606440e-17 - art_sys_73: 5.42362098e-17 - art_sys_74: -6.27703792e-14 - art_sys_75: -6.60558419e-20 - art_sys_76: -9.15233277e-15 - art_sys_77: -2.80134235e-14 - art_sys_78: -7.52112772e-15 - art_sys_79: 2.01909000e-17 - art_sys_80: 1.52948526e-15 - art_sys_81: 1.56097941e-13 - art_sys_82: -2.51816454e-10 - art_sys_83: 1.14669796e-15 - art_sys_84: 2.85144799e-17 - art_sys_85: -7.64019575e-16 - art_sys_86: -6.52702184e-16 - art_sys_87: 6.93263184e-14 - art_sys_88: -1.35016431e-13 - art_sys_89: -4.78095613e-17 - art_sys_90: 6.81473618e-12 - art_sys_91: 1.92288389e-05 - art_sys_92: 4.05208469e-17 - art_sys_93: 4.77805173e-17 - art_sys_94: -2.96559009e-13 - art_sys_95: 9.30281382e-11 - art_sys_96: -2.92583551e-05 - art_sys_97: 1.26261816e-11 - art_sys_98: 8.58488295e-11 - art_sys_99: 6.11139770e-05 - art_sys_100: -3.75904810e-10 - art_sys_101: -1.14790204e-04 - art_sys_102: -1.84004001e-10 - art_sys_103: 5.40390752e-12 - art_sys_104: -2.07986693e-04 - art_sys_105: 1.83858332e-15 - art_sys_106: -2.36952325e-05 - art_sys_107: -7.07675732e-11 - art_sys_108: -1.80334281e-14 - art_sys_109: 1.43475535e-15 - art_sys_110: -6.54377099e-10 - art_sys_111: 3.33883170e-05 - art_sys_112: 1.05428483e-10 - art_sys_113: 1.17948862e-09 - art_sys_114: 1.42952413e-16 - art_sys_115: -4.37299962e-05 - art_sys_116: 4.36810945e-11 - art_sys_117: 7.44602019e-16 - art_sys_118: 2.51339446e-05 - art_sys_119: 2.29554139e-11 - art_sys_120: -2.35143667e-10 - art_sys_121: -2.75469851e-16 - art_sys_122: -1.47986646e-05 - art_sys_123: -3.88447393e-12 - art_sys_124: 7.03254792e-06 - art_sys_125: -8.99429326e-17 - art_sys_126: -7.00498791e-11 - art_sys_127: 1.74589239e-13 - art_sys_128: -2.87940407e-06 - art_sys_129: 1.39716209e-16 - art_sys_130: -1.69331800e-12 - art_sys_131: -1.83925569e-15 - art_sys_132: -1.09816459e-06 - art_sys_133: 3.24872226e-12 - art_sys_134: -1.38302833e-11 - art_sys_135: 3.94980924e-07 - art_sys_136: 3.35359889e-16 - art_sys_137: -1.28908986e-13 - art_sys_138: 1.11255851e-07 - art_sys_139: 2.71271126e-12 - art_sys_140: -2.85671188e-16 - art_sys_141: 7.74803882e-13 - art_sys_142: 3.94621152e-08 - art_sys_143: 7.53610712e-13 - art_sys_144: -1.22427670e-14 - art_sys_145: 6.98212082e-09 - art_sys_146: -4.24876408e-13 - art_sys_147: 4.83502095e-15 - art_sys_148: -1.02960813e-16 - art_sys_149: -7.24084925e-10 - art_sys_150: 2.08260384e-11 - art_sys_151: 1.12825772e-12 - art_sys_152: -1.95777622e-14 - art_sys_153: 2.85821743e-12 - art_sys_154: -3.69903647e-12 - art_sys_155: -1.03529676e-14 - art_sys_156: 0.0 - art_sys_157: -8.13678869e-12 - art_sys_158: 0.0 - art_sys_159: 1.27766224e-12 - art_sys_160: -1.68084002e-13 - art_sys_161: -1.41577473e-13 - art_sys_162: -1.41577473e-13 - art_sys_163: -1.47134330e-13 - art_sys_164: -1.47134330e-13 - art_sys_165: 1.65808920e-27 - art_sys_166: -5.50277445e-28 - art_sys_167: -0.0 - art_sys_168: 5.50050519e-24 - art_sys_169: 2.68718811e-24 - art_sys_170: -7.19479744e-25 - art_sys_171: 1.37082554e-24 - art_sys_172: -4.01282510e-26 - art_sys_173: -2.90209697e-26 - art_sys_174: -2.40785953e-26 - art_sys_175: -4.82389610e-27 - art_sys_176: -3.85238333e-27 - art_sys_177: -7.11383633e-28 - art_sys_178: -1.54098934e-27 - art_sys_179: 3.13364388e-27 - art_sys_180: 3.32031958e-26 - art_sys_181: -2.17702522e-27 - art_sys_182: 5.54787990e-28 - art_sys_183: -6.10767439e-30 - art_sys_184: -4.15150502e-30 - art_sys_185: -5.83782340e-30 + art_sys_27: -1.98488642e-17 + art_sys_28: 2.57038334e-21 + art_sys_29: -2.76729016e-14 + art_sys_30: -2.40504263e-14 + art_sys_31: -4.77739587e-15 + art_sys_32: -1.31067681e-15 + art_sys_33: -1.61353641e-16 + art_sys_34: -3.78631839e-16 + art_sys_35: 4.12970241e-16 + art_sys_36: 1.07462743e-18 + art_sys_37: 2.16082230e-09 + art_sys_38: -1.31136807e-18 + art_sys_39: 1.99037122e-20 + art_sys_40: 5.21905910e-18 + art_sys_41: -2.52780519e-09 + art_sys_42: -4.47884468e-18 + art_sys_43: -2.00616710e-08 + art_sys_44: -9.01201020e-17 + art_sys_45: -6.72821763e-19 + art_sys_46: 3.89702920e-19 + art_sys_47: -1.15040693e-16 + art_sys_48: -5.13424810e-08 + art_sys_49: -4.56933517e-16 + art_sys_50: 7.78036960e-17 + art_sys_51: 9.70195437e-17 + art_sys_52: 5.11283600e-07 + art_sys_53: -3.20027264e-17 + art_sys_54: 3.14338743e-16 + art_sys_55: 4.71049754e-07 + art_sys_56: -3.67576287e-17 + art_sys_57: -2.08598139e-14 + art_sys_58: 2.85182086e-14 + art_sys_59: -1.34646878e-14 + art_sys_60: 2.19743595e-16 + art_sys_61: -1.08031975e-15 + art_sys_62: -7.71232004e-16 + art_sys_63: 9.58822929e-16 + art_sys_64: 7.58644261e-16 + art_sys_65: 2.34565697e-16 + art_sys_66: -4.98096122e-17 + art_sys_67: -7.05257364e-17 + art_sys_68: -2.54455071e-17 + art_sys_69: 4.13602998e-12 + art_sys_70: 2.00374246e-07 + art_sys_71: 3.37992673e-11 + art_sys_72: 8.02388709e-16 + art_sys_73: 2.38814392e-11 + art_sys_74: -4.96921658e-11 + art_sys_75: 2.45672156e-17 + art_sys_76: 6.21916106e-14 + art_sys_77: 2.77484867e-15 + art_sys_78: -4.33374866e-15 + art_sys_79: 1.72503943e-14 + art_sys_80: 1.27600455e-10 + art_sys_81: 2.61386523e-16 + art_sys_82: 1.32420547e-16 + art_sys_83: -1.97990296e-16 + art_sys_84: -3.27241739e-14 + art_sys_85: 7.63884233e-16 + art_sys_86: -1.84050129e-16 + art_sys_87: 2.24569141e-14 + art_sys_88: -1.27844860e-15 + art_sys_89: 4.02988804e-15 + art_sys_90: -1.92289677e-05 + art_sys_91: 2.92586262e-05 + art_sys_92: -7.21932715e-11 + art_sys_93: 4.54848536e-12 + art_sys_94: 1.17004336e-10 + art_sys_95: 6.11141349e-05 + art_sys_96: 1.05001167e-14 + art_sys_97: 1.61308013e-10 + art_sys_98: -1.14790367e-04 + art_sys_99: 5.60162915e-11 + art_sys_100: -2.01881601e-11 + art_sys_101: -2.07986067e-04 + art_sys_102: -2.30954792e-15 + art_sys_103: 8.06143932e-11 + art_sys_104: 2.36888421e-05 + art_sys_105: 1.01013956e-15 + art_sys_106: -3.33895880e-05 + art_sys_107: -1.16388012e-10 + art_sys_108: 1.07102578e-11 + art_sys_109: -1.73852570e-10 + art_sys_110: 7.97663413e-16 + art_sys_111: -4.37294897e-05 + art_sys_112: 1.07230141e-11 + art_sys_113: 6.68887388e-16 + art_sys_114: 2.51207674e-05 + art_sys_115: 3.08295814e-13 + art_sys_116: -1.92629446e-10 + art_sys_117: 1.67348520e-17 + art_sys_118: 1.47908103e-05 + art_sys_119: 1.60388348e-14 + art_sys_120: -7.03467345e-06 + art_sys_121: 5.16447266e-12 + art_sys_122: -2.87815549e-06 + art_sys_123: -1.03004424e-12 + art_sys_124: 1.09817503e-06 + art_sys_125: -3.94088162e-07 + art_sys_126: -7.19770721e-12 + art_sys_127: -1.11224830e-07 + art_sys_128: 8.85485857e-13 + art_sys_129: -1.29917390e-13 + art_sys_130: 2.17144600e-12 + art_sys_131: 8.00296137e-13 + art_sys_132: -3.93291944e-08 + art_sys_133: -4.08264864e-14 + art_sys_134: -1.71463846e-11 + art_sys_135: -7.07467479e-09 + art_sys_136: -1.27764751e-11 + art_sys_137: 7.70574596e-10 + art_sys_138: 3.50455137e-12 + art_sys_139: 1.21821202e-11 + art_sys_140: 8.34794278e-12 + art_sys_141: -5.68321328e-12 + art_sys_142: -0.0 + art_sys_143: 1.75789583e-11 + art_sys_144: 5.22085319e-12 + art_sys_145: 2.71265328e-12 + art_sys_146: -3.46211937e-17 + art_sys_147: 1.63689289e-17 + art_sys_148: -1.16137584e-14 + art_sys_149: -2.17892298e-15 + art_sys_150: -2.18836640e-16 + art_sys_151: 1.05313042e-14 + art_sys_152: -6.27098221e-15 + art_sys_153: -3.38382826e-16 + art_sys_154: 2.39837984e-15 + art_sys_155: 4.33313672e-15 + art_sys_156: 1.55843962e-14 + art_sys_157: 1.62033610e-15 + art_sys_158: -0.0 + art_sys_159: 7.97685065e-13 + art_sys_160: 7.97685065e-13 + art_sys_161: -2.37005420e-14 + art_sys_162: 9.83689072e-27 + art_sys_163: 0.0 + art_sys_164: 6.29506039e-27 + art_sys_165: 5.24399991e-23 + art_sys_166: 3.47119878e-23 + art_sys_167: -3.03276208e-23 + art_sys_168: 9.07422244e-24 + art_sys_169: 3.82546471e-24 + art_sys_170: -9.71306009e-24 + art_sys_171: 1.01275315e-25 + art_sys_172: 3.75879800e-25 + art_sys_173: -1.15948152e-24 + art_sys_174: 4.39882517e-27 + art_sys_175: 9.51270432e-27 + art_sys_176: 4.91026290e-27 + art_sys_177: 1.27845467e-26 + art_sys_178: -7.36672683e-27 + art_sys_179: 2.74584540e-27 + art_sys_180: 1.03499154e-26 + art_sys_181: -1.15372964e-28 + art_sys_182: 1.41650782e-28 + art_sys_183: 6.30591347e-30 + art_sys_184: -2.81242222e-30 + art_sys_185: 1.71694226e-28 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -10715,191 +10715,191 @@ bins: RelativeStatFSR-: -6.33945030e-05 luminosity_uncertainty: 1.71522260e-03 uncorrelated_uncertainty: 6.59701000e-04 -- art_sys_1: -2.52967599e-48 - art_sys_2: 9.52122890e-37 - art_sys_3: 4.84070622e-37 +- art_sys_1: 2.66611955e-48 + art_sys_2: -1.52897527e-35 + art_sys_3: 4.84070619e-37 art_sys_4: -4.87930795e-18 - art_sys_5: -1.15502219e-32 - art_sys_6: -3.09370109e-35 + art_sys_5: -1.10021577e-32 + art_sys_6: -5.90324906e-35 art_sys_7: -8.38878518e-17 - art_sys_8: 1.23488852e-31 + art_sys_8: 1.22411584e-31 art_sys_9: 3.88349498e-16 - art_sys_10: 3.09994029e-34 - art_sys_11: 5.23967726e-30 + art_sys_10: 2.93839677e-33 + art_sys_11: 5.24219584e-30 art_sys_12: -5.09390967e-16 - art_sys_13: 6.62951561e-32 - art_sys_14: 2.93744641e-16 - art_sys_15: 2.61159463e-27 - art_sys_16: 2.77124502e-13 - art_sys_17: 9.19938825e-30 - art_sys_18: -6.39204722e-27 - art_sys_19: -4.59708123e-13 - art_sys_20: 4.01710220e-29 - art_sys_21: -1.06999971e-25 - art_sys_22: -9.11397460e-30 + art_sys_13: 3.86961278e-32 + art_sys_14: -2.93744641e-16 + art_sys_15: -2.43128700e-27 + art_sys_16: -2.77124502e-13 + art_sys_17: 7.09184982e-30 + art_sys_18: -6.38542127e-27 + art_sys_19: 4.59708123e-13 + art_sys_20: 6.17161805e-29 + art_sys_21: -1.06760474e-25 + art_sys_22: -5.58615259e-30 art_sys_23: 5.73769709e-13 - art_sys_24: 6.72164084e-24 - art_sys_25: 1.83723678e-12 + art_sys_24: 6.72172946e-24 + art_sys_25: -1.83723678e-12 art_sys_26: -5.50828239e-11 - art_sys_27: 2.00483871e-20 - art_sys_28: -2.91927211e-22 - art_sys_29: 8.03384020e-18 - art_sys_30: -2.69587789e-10 - art_sys_31: 5.20098673e-21 - art_sys_32: -1.12383221e-17 - art_sys_33: -8.87790327e-10 - art_sys_34: -6.90615233e-09 - art_sys_35: 1.63279709e-19 - art_sys_36: -7.64788504e-15 - art_sys_37: 2.86465502e-14 - art_sys_38: 8.00804970e-15 - art_sys_39: -2.41006615e-15 - art_sys_40: 7.17010110e-16 - art_sys_41: -1.59088841e-15 - art_sys_42: 4.96311873e-16 - art_sys_43: -1.02419922e-16 - art_sys_44: 4.22321351e-17 - art_sys_45: 1.14203856e-16 - art_sys_46: -6.05315957e-17 - art_sys_47: -2.07635915e-17 - art_sys_48: 2.07936013e-08 - art_sys_49: -2.54133655e-16 - art_sys_50: -2.26894706e-17 - art_sys_51: 6.15075891e-18 - art_sys_52: 6.57837800e-17 - art_sys_53: 1.09269188e-07 - art_sys_54: -8.92270280e-17 - art_sys_55: -3.99294614e-07 - art_sys_56: -2.57507580e-17 - art_sys_57: -4.88412341e-17 - art_sys_58: 3.22099146e-17 - art_sys_59: -3.22692728e-07 - art_sys_60: 1.04613125e-12 - art_sys_61: -2.83674520e-17 - art_sys_62: 8.95437510e-17 - art_sys_63: 6.02913245e-12 - art_sys_64: 5.38910162e-14 - art_sys_65: 2.76733785e-14 - art_sys_66: -7.82500709e-15 - art_sys_67: -2.60161125e-15 - art_sys_68: 6.53139562e-16 - art_sys_69: 4.19471935e-18 - art_sys_70: 6.70625729e-16 - art_sys_71: 2.68919789e-16 - art_sys_72: -6.79856384e-17 - art_sys_73: 3.75370697e-17 - art_sys_74: 2.10036921e-14 - art_sys_75: -1.40886707e-18 - art_sys_76: -2.72090246e-14 - art_sys_77: -1.19919365e-14 - art_sys_78: -8.60249873e-17 - art_sys_79: -3.73679700e-18 - art_sys_80: -3.15319238e-15 - art_sys_81: -5.36041983e-14 - art_sys_82: 5.88765439e-11 - art_sys_83: 2.59265546e-16 - art_sys_84: -3.13217157e-16 - art_sys_85: 3.87896769e-16 - art_sys_86: -3.21862802e-16 - art_sys_87: 1.36849313e-13 - art_sys_88: -2.21851183e-13 - art_sys_89: 8.03300676e-18 - art_sys_90: -9.96815144e-12 - art_sys_91: 3.44147383e-06 - art_sys_92: -5.87953437e-17 - art_sys_93: -2.68919195e-19 - art_sys_94: 5.73116278e-13 - art_sys_95: -1.17938705e-10 - art_sys_96: 1.00427034e-05 - art_sys_97: -4.51525215e-12 - art_sys_98: -5.84746457e-11 - art_sys_99: 3.11506259e-05 - art_sys_100: 2.41860338e-10 - art_sys_101: 3.88822900e-05 - art_sys_102: 3.38858673e-10 - art_sys_103: 1.38407382e-11 - art_sys_104: -8.52165495e-05 - art_sys_105: -2.44488668e-15 - art_sys_106: -1.58244620e-04 - art_sys_107: 1.29951381e-10 - art_sys_108: 3.97750156e-14 - art_sys_109: -3.22501917e-15 - art_sys_110: 9.86743931e-10 - art_sys_111: -1.92114385e-05 - art_sys_112: -1.59620652e-10 - art_sys_113: -6.73781385e-10 - art_sys_114: -3.15027847e-16 - art_sys_115: 2.60660810e-05 - art_sys_116: -7.95901544e-11 - art_sys_117: -1.29893692e-15 - art_sys_118: -3.22497236e-05 - art_sys_119: -4.49711707e-11 - art_sys_120: 4.61220707e-10 - art_sys_121: 6.66184657e-16 - art_sys_122: 2.10220702e-05 - art_sys_123: 8.32427329e-12 - art_sys_124: -1.16561738e-05 - art_sys_125: 1.98640251e-16 - art_sys_126: 1.40574268e-10 - art_sys_127: -3.84260883e-13 - art_sys_128: 5.22651865e-06 - art_sys_129: -3.09039246e-16 - art_sys_130: 3.72170238e-12 - art_sys_131: 3.99607990e-15 - art_sys_132: 2.11239070e-06 - art_sys_133: -7.14523057e-12 - art_sys_134: 3.06170626e-11 - art_sys_135: -7.94579500e-07 - art_sys_136: -7.39554654e-16 - art_sys_137: 2.87905421e-13 - art_sys_138: -2.31612972e-07 - art_sys_139: -5.93924713e-12 - art_sys_140: 6.31524299e-16 - art_sys_141: -1.62872603e-12 - art_sys_142: -8.38737793e-08 - art_sys_143: -1.62893635e-12 - art_sys_144: 2.58883631e-14 - art_sys_145: -1.51993863e-08 - art_sys_146: 9.23983368e-13 - art_sys_147: -1.05268673e-14 - art_sys_148: 1.55822823e-16 - art_sys_149: 1.59539752e-09 - art_sys_150: -4.58739123e-11 - art_sys_151: -2.47870176e-12 - art_sys_152: 4.30294971e-14 - art_sys_153: -6.27524589e-12 - art_sys_154: 4.40892953e-12 - art_sys_155: 2.27017417e-14 - art_sys_156: -0.0 - art_sys_157: 1.79175192e-11 - art_sys_158: -0.0 - art_sys_159: -2.80677323e-12 - art_sys_160: 3.70097111e-13 - art_sys_161: 3.10609754e-13 - art_sys_162: 3.10609754e-13 - art_sys_163: 3.23112413e-13 - art_sys_164: 3.23112413e-13 - art_sys_165: -3.64072911e-27 - art_sys_166: 1.20824016e-27 - art_sys_167: 0.0 - art_sys_168: -1.46807703e-23 - art_sys_169: -5.99626914e-24 - art_sys_170: 1.49067754e-24 - art_sys_171: -3.02831567e-24 - art_sys_172: 8.93240690e-26 - art_sys_173: 6.46067690e-26 - art_sys_174: 5.40919436e-26 - art_sys_175: 1.12459830e-26 - art_sys_176: 8.53898827e-27 - art_sys_177: 1.83834728e-27 - art_sys_178: 3.28383493e-27 - art_sys_179: -6.86450181e-27 - art_sys_180: -7.29350161e-26 - art_sys_181: -2.54202780e-27 - art_sys_182: -1.23438802e-27 - art_sys_183: 1.35434792e-29 - art_sys_184: 8.74385187e-30 - art_sys_185: 1.26183436e-29 + art_sys_27: -2.31145076e-20 + art_sys_28: -2.91551232e-22 + art_sys_29: -1.41768813e-14 + art_sys_30: -1.38356959e-14 + art_sys_31: -1.92890518e-15 + art_sys_32: -4.47008304e-15 + art_sys_33: -1.09504588e-16 + art_sys_34: 1.50956614e-16 + art_sys_35: -1.69880079e-16 + art_sys_36: 4.87849449e-18 + art_sys_37: -2.69587798e-10 + art_sys_38: -5.35700354e-17 + art_sys_39: -5.20185859e-21 + art_sys_40: -1.29691249e-17 + art_sys_41: 8.87790331e-10 + art_sys_42: 5.07556343e-17 + art_sys_43: 6.90615233e-09 + art_sys_44: -1.05594002e-16 + art_sys_45: 2.73772904e-19 + art_sys_46: 6.00241505e-18 + art_sys_47: 5.01172126e-17 + art_sys_48: 2.07936012e-08 + art_sys_49: -1.32326943e-16 + art_sys_50: -3.49539519e-17 + art_sys_51: 1.74199958e-17 + art_sys_52: 1.09269194e-07 + art_sys_53: 5.05185609e-18 + art_sys_54: 2.74880967e-16 + art_sys_55: 3.99294616e-07 + art_sys_56: -7.67704452e-18 + art_sys_57: 9.48915316e-14 + art_sys_58: 1.15222201e-14 + art_sys_59: -1.19726536e-14 + art_sys_60: -1.87883056e-17 + art_sys_61: -1.47549655e-15 + art_sys_62: 1.11268195e-15 + art_sys_63: -1.92055165e-15 + art_sys_64: -3.58704196e-17 + art_sys_65: 8.24793562e-17 + art_sys_66: -2.08752791e-17 + art_sys_67: -2.82950213e-17 + art_sys_68: 1.56053519e-17 + art_sys_69: 7.52061110e-13 + art_sys_70: -3.22697056e-07 + art_sys_71: 1.18325096e-11 + art_sys_72: 2.89541723e-16 + art_sys_73: -8.74691036e-12 + art_sys_74: -1.54137553e-11 + art_sys_75: 1.85179216e-17 + art_sys_76: -6.67981374e-14 + art_sys_77: -4.05370886e-14 + art_sys_78: 8.98972584e-16 + art_sys_79: 3.07179851e-15 + art_sys_80: -7.43271272e-11 + art_sys_81: -2.18183348e-16 + art_sys_82: 1.07216698e-15 + art_sys_83: -1.38020444e-15 + art_sys_84: 8.48935903e-15 + art_sys_85: -1.87089267e-16 + art_sys_86: 9.44520834e-17 + art_sys_87: -1.70576626e-14 + art_sys_88: -2.18823916e-15 + art_sys_89: -9.10824447e-15 + art_sys_90: -3.44137201e-06 + art_sys_91: -1.00427668e-05 + art_sys_92: -3.09678095e-11 + art_sys_93: -1.03436864e-13 + art_sys_94: 7.32399342e-11 + art_sys_95: 3.11504129e-05 + art_sys_96: -2.30034295e-14 + art_sys_97: -4.27605174e-10 + art_sys_98: 3.88821586e-05 + art_sys_99: -1.93547345e-11 + art_sys_100: 1.00028964e-11 + art_sys_101: -8.52088198e-05 + art_sys_102: 5.08761248e-15 + art_sys_103: -1.53078299e-10 + art_sys_104: 1.58243094e-04 + art_sys_105: -2.30795247e-15 + art_sys_106: 1.92127908e-05 + art_sys_107: 2.29487793e-10 + art_sys_108: -2.33738274e-11 + art_sys_109: 2.59942732e-10 + art_sys_110: -1.88303757e-15 + art_sys_111: 2.60648438e-05 + art_sys_112: -2.34048710e-11 + art_sys_113: -1.47210586e-15 + art_sys_114: -3.22292400e-05 + art_sys_115: -6.68790988e-13 + art_sys_116: 3.55554261e-10 + art_sys_117: -2.48020835e-17 + art_sys_118: -2.10111915e-05 + art_sys_119: -3.58384579e-14 + art_sys_120: 1.16595901e-05 + art_sys_121: -8.55150898e-12 + art_sys_122: 5.22405869e-06 + art_sys_123: 2.26790868e-12 + art_sys_124: -2.11249474e-06 + art_sys_125: 7.92857231e-07 + art_sys_126: 1.59261256e-11 + art_sys_127: 2.31560352e-07 + art_sys_128: -1.94849406e-12 + art_sys_129: 2.85971970e-13 + art_sys_130: -4.79889392e-12 + art_sys_131: -1.75459876e-12 + art_sys_132: 8.35951526e-08 + art_sys_133: -3.34280267e-14 + art_sys_134: 3.71150088e-11 + art_sys_135: 1.53988640e-08 + art_sys_136: 2.78432461e-11 + art_sys_137: -1.69697134e-09 + art_sys_138: -7.71098093e-12 + art_sys_139: -2.67762729e-11 + art_sys_140: -7.72819069e-12 + art_sys_141: 1.24668383e-11 + art_sys_142: 0.0 + art_sys_143: -3.83258718e-11 + art_sys_144: -1.14217665e-11 + art_sys_145: -5.93620076e-12 + art_sys_146: 9.85792506e-17 + art_sys_147: -3.67357394e-17 + art_sys_148: 2.59267082e-14 + art_sys_149: 4.70207345e-15 + art_sys_150: 4.78223830e-16 + art_sys_151: -2.31540156e-14 + art_sys_152: 1.34242447e-14 + art_sys_153: 7.38852465e-16 + art_sys_154: -5.31224058e-15 + art_sys_155: -9.52245532e-15 + art_sys_156: -3.42062485e-14 + art_sys_157: -3.53225902e-15 + art_sys_158: 0.0 + art_sys_159: -1.76009776e-12 + art_sys_160: -1.76009776e-12 + art_sys_161: 5.23434467e-14 + art_sys_162: -2.17151758e-26 + art_sys_163: -0.0 + art_sys_164: -1.38934498e-26 + art_sys_165: -1.18486755e-22 + art_sys_166: -7.83302482e-23 + art_sys_167: 6.85290779e-23 + art_sys_168: -2.05147644e-23 + art_sys_169: -8.69273197e-24 + art_sys_170: 2.17916392e-23 + art_sys_171: -2.28940529e-25 + art_sys_172: -8.56355175e-25 + art_sys_173: 2.62835940e-24 + art_sys_174: -9.64169494e-27 + art_sys_175: -2.21252818e-26 + art_sys_176: -1.11536843e-26 + art_sys_177: -2.86712950e-26 + art_sys_178: -1.90902412e-27 + art_sys_179: -7.61547361e-27 + art_sys_180: -2.13787031e-26 + art_sys_181: 2.62807687e-28 + art_sys_182: -3.19979838e-28 + art_sys_183: -1.37879045e-29 + art_sys_184: 6.13088258e-30 + art_sys_185: -3.81769948e-28 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -11006,191 +11006,191 @@ bins: RelativeStatFSR-: -4.06774286e-05 luminosity_uncertainty: 1.03723360e-03 uncorrelated_uncertainty: 3.98936000e-04 -- art_sys_1: -1.26905003e-49 - art_sys_2: 4.77526166e-38 - art_sys_3: 3.15106719e-38 +- art_sys_1: 1.33684082e-49 + art_sys_2: -7.66839773e-37 + art_sys_3: 3.15106718e-38 art_sys_4: -2.44716017e-19 - art_sys_5: -9.40082076e-34 - art_sys_6: -1.54113893e-36 + art_sys_5: -9.12740284e-34 + art_sys_6: -2.94226440e-36 art_sys_7: -6.54221980e-18 - art_sys_8: 1.21958209e-32 + art_sys_8: 1.21335543e-32 art_sys_9: 2.97484535e-17 - art_sys_10: 2.27995906e-35 - art_sys_11: 5.54005141e-31 + art_sys_10: 2.39785232e-34 + art_sys_11: 5.27382888e-31 art_sys_12: -1.11983491e-17 - art_sys_13: 1.12582295e-30 - art_sys_14: 3.85491213e-15 - art_sys_15: 4.67540382e-28 - art_sys_16: 3.40565093e-14 - art_sys_17: 1.39419212e-30 - art_sys_18: -9.89118152e-29 - art_sys_19: -8.74978744e-14 - art_sys_20: 1.17613761e-29 - art_sys_21: -5.65927785e-26 - art_sys_22: 3.66785823e-29 + art_sys_13: 3.39899615e-33 + art_sys_14: -3.85491213e-15 + art_sys_15: -4.45372505e-28 + art_sys_16: -3.40565093e-14 + art_sys_17: 1.10220385e-30 + art_sys_18: -1.01706253e-28 + art_sys_19: 8.74978744e-14 + art_sys_20: 1.33293527e-29 + art_sys_21: -5.65497697e-26 + art_sys_22: 3.77942141e-29 art_sys_23: 1.60684756e-13 - art_sys_24: 1.22949466e-24 - art_sys_25: -5.94240227e-12 - art_sys_26: -1.10456675e-11 - art_sys_27: 1.90012883e-19 - art_sys_28: -1.01609055e-22 - art_sys_29: -7.63135963e-18 - art_sys_30: -9.20561623e-11 - art_sys_31: 1.76210714e-21 - art_sys_32: -3.10845588e-18 - art_sys_33: -3.69920352e-10 - art_sys_34: -1.63232525e-09 - art_sys_35: 4.18703999e-20 - art_sys_36: -2.01354670e-15 - art_sys_37: 5.01551345e-14 - art_sys_38: -3.86463250e-15 - art_sys_39: 3.73018882e-15 - art_sys_40: 1.25054171e-15 - art_sys_41: -1.28339089e-15 - art_sys_42: 2.03474185e-16 - art_sys_43: -3.41214331e-17 - art_sys_44: -9.58827823e-17 - art_sys_45: -5.99018983e-17 - art_sys_46: 1.67845560e-16 - art_sys_47: -7.15799032e-18 - art_sys_48: 5.56416368e-09 - art_sys_49: -6.70390634e-17 - art_sys_50: 9.07028777e-17 - art_sys_51: -1.12672560e-16 - art_sys_52: 1.73518037e-17 - art_sys_53: 1.12459920e-08 - art_sys_54: 2.25673803e-17 - art_sys_55: -7.08300925e-08 - art_sys_56: -1.94007139e-18 - art_sys_57: -1.30843406e-16 - art_sys_58: 4.01821397e-17 - art_sys_59: -6.63898488e-08 - art_sys_60: -1.70348053e-13 - art_sys_61: -3.24178149e-17 - art_sys_62: -6.49280094e-17 - art_sys_63: 2.26351057e-12 - art_sys_64: 5.33276529e-14 - art_sys_65: -3.65712727e-14 - art_sys_66: 1.58101652e-14 - art_sys_67: 1.88897135e-15 - art_sys_68: -5.62327602e-16 - art_sys_69: -9.00070145e-16 - art_sys_70: 7.12194792e-16 - art_sys_71: -1.36009117e-16 - art_sys_72: 6.02709421e-20 - art_sys_73: 6.78854236e-17 - art_sys_74: 9.92526822e-15 - art_sys_75: 1.25033474e-18 - art_sys_76: 4.70129429e-14 - art_sys_77: -1.76798744e-14 - art_sys_78: -1.05750815e-14 - art_sys_79: 2.76489192e-19 - art_sys_80: -7.81956992e-15 - art_sys_81: -2.47297659e-14 - art_sys_82: 3.46568949e-11 - art_sys_83: 2.08542208e-16 - art_sys_84: -2.78360167e-16 - art_sys_85: 9.93697591e-17 - art_sys_86: -3.46232252e-16 - art_sys_87: 6.14135320e-14 - art_sys_88: 8.52506616e-13 - art_sys_89: 2.61271806e-18 - art_sys_90: 1.35174986e-11 - art_sys_91: -1.54660786e-06 - art_sys_92: 2.22769400e-18 - art_sys_93: -2.19475852e-17 - art_sys_94: -1.04192249e-12 - art_sys_95: -5.51251814e-10 - art_sys_96: 4.63365066e-06 - art_sys_97: -2.01747542e-12 - art_sys_98: -4.90609696e-10 - art_sys_99: -4.75037655e-06 - art_sys_100: -7.18339208e-11 - art_sys_101: 2.60776438e-05 - art_sys_102: -6.12214228e-10 - art_sys_103: 2.83194059e-13 - art_sys_104: 2.93549316e-05 - art_sys_105: 8.78200397e-16 - art_sys_106: -6.36219042e-05 - art_sys_107: -2.24095260e-10 - art_sys_108: -8.65632534e-14 - art_sys_109: 6.84597800e-15 - art_sys_110: -1.32952372e-09 - art_sys_111: -1.20876974e-04 - art_sys_112: 2.27634013e-10 - art_sys_113: -4.26596965e-09 - art_sys_114: 6.75921313e-16 - art_sys_115: -1.62119319e-05 - art_sys_116: 1.32908213e-10 - art_sys_117: 1.94526373e-15 - art_sys_118: 1.85155413e-05 - art_sys_119: 8.33216952e-11 - art_sys_120: -8.53785318e-10 - art_sys_121: -1.56679198e-15 - art_sys_122: -2.55849883e-05 - art_sys_123: -1.74285888e-11 - art_sys_124: 1.65603555e-05 - art_sys_125: -4.35212129e-16 - art_sys_126: -2.68058137e-10 - art_sys_127: 8.38643017e-13 - art_sys_128: -8.67391670e-06 - art_sys_129: 6.81490685e-16 - art_sys_130: -8.07273968e-12 - art_sys_131: -8.61106378e-15 - art_sys_132: -3.82361250e-06 - art_sys_133: 1.55018844e-11 - art_sys_134: -6.68296648e-11 - art_sys_135: 1.52240054e-06 - art_sys_136: 1.60011164e-15 - art_sys_137: -6.29338805e-13 - art_sys_138: 4.66822228e-07 - art_sys_139: 1.28093231e-11 - art_sys_140: -1.38054520e-15 - art_sys_141: 3.32661670e-12 - art_sys_142: 1.73783963e-07 - art_sys_143: 3.45354057e-12 - art_sys_144: -5.31171766e-14 - art_sys_145: 3.25252023e-08 - art_sys_146: -1.97255593e-12 - art_sys_147: 2.25280641e-14 - art_sys_148: -1.32864591e-16 - art_sys_149: -3.46982427e-09 - art_sys_150: 9.97191167e-11 - art_sys_151: 5.40686737e-12 - art_sys_152: -9.32349710e-14 - art_sys_153: 1.36072337e-11 - art_sys_154: -7.26537166e-12 - art_sys_155: -4.87993120e-14 - art_sys_156: 0.0 - art_sys_157: -3.94330320e-11 - art_sys_158: 0.0 - art_sys_159: 6.11610004e-12 - art_sys_160: -8.13199493e-13 - art_sys_161: -6.71289239e-13 - art_sys_162: -6.71289239e-13 - art_sys_163: -7.02195075e-13 - art_sys_164: -7.02195075e-13 - art_sys_165: 7.90598150e-27 - art_sys_166: -2.62340440e-27 - art_sys_167: -0.0 - art_sys_168: 3.11757384e-23 - art_sys_169: 1.27943610e-23 - art_sys_170: -3.29701298e-24 - art_sys_171: 6.43230273e-24 - art_sys_172: -1.89570369e-25 - art_sys_173: -1.37872469e-25 - art_sys_174: -1.14307514e-25 - art_sys_175: -2.33668586e-26 - art_sys_176: -1.70628504e-26 - art_sys_177: -4.94888572e-27 - art_sys_178: -6.97450983e-27 - art_sys_179: 1.46719060e-26 - art_sys_180: 1.58821576e-25 - art_sys_181: 2.82631454e-26 - art_sys_182: 2.62529968e-27 - art_sys_183: -2.90151677e-29 - art_sys_184: -1.78341985e-29 - art_sys_185: -2.67280506e-29 + art_sys_24: 1.22951255e-24 + art_sys_25: 5.94240226e-12 + art_sys_26: -1.10456674e-11 + art_sys_27: -1.57784683e-19 + art_sys_28: -1.01480163e-22 + art_sys_29: 1.88139891e-15 + art_sys_30: -5.36179703e-14 + art_sys_31: -3.77512589e-15 + art_sys_32: -9.46395623e-15 + art_sys_33: 5.20748725e-16 + art_sys_34: -3.64204942e-16 + art_sys_35: 3.06157861e-16 + art_sys_36: -7.65798343e-19 + art_sys_37: -9.20561573e-11 + art_sys_38: -6.77643717e-17 + art_sys_39: -1.76250983e-21 + art_sys_40: 5.34107924e-18 + art_sys_41: 3.69920354e-10 + art_sys_42: 4.54007131e-17 + art_sys_43: 1.63232525e-09 + art_sys_44: 1.04938319e-17 + art_sys_45: 6.81398222e-20 + art_sys_46: -8.54361095e-20 + art_sys_47: -6.93318291e-17 + art_sys_48: 5.56416366e-09 + art_sys_49: -1.68019726e-17 + art_sys_50: 5.35808211e-18 + art_sys_51: 1.45814397e-18 + art_sys_52: 1.12459931e-08 + art_sys_53: 1.59979074e-18 + art_sys_54: 4.97046601e-17 + art_sys_55: 7.08300929e-08 + art_sys_56: -3.33746645e-18 + art_sys_57: -2.35721187e-15 + art_sys_58: -4.63576903e-14 + art_sys_59: -1.51309487e-15 + art_sys_60: -2.57917660e-17 + art_sys_61: 2.70747778e-15 + art_sys_62: -1.77786642e-16 + art_sys_63: -2.94427774e-16 + art_sys_64: 3.21791134e-16 + art_sys_65: 1.26444834e-16 + art_sys_66: 1.40805393e-17 + art_sys_67: -2.72678244e-17 + art_sys_68: -1.64976100e-18 + art_sys_69: -3.30899768e-13 + art_sys_70: -6.63892003e-08 + art_sys_71: -1.77575809e-12 + art_sys_72: -2.48149259e-17 + art_sys_73: -5.64322845e-12 + art_sys_74: 2.94814750e-12 + art_sys_75: -1.04494981e-17 + art_sys_76: -1.49950718e-14 + art_sys_77: -3.18869659e-14 + art_sys_78: 3.14593034e-15 + art_sys_79: -1.37969819e-15 + art_sys_80: -4.01738666e-11 + art_sys_81: -3.28815188e-15 + art_sys_82: -3.88047593e-16 + art_sys_83: -3.90283798e-16 + art_sys_84: -9.01442023e-15 + art_sys_85: -7.06425935e-16 + art_sys_86: -1.99776171e-16 + art_sys_87: -9.82459262e-14 + art_sys_88: 1.07477595e-14 + art_sys_89: 2.00931127e-14 + art_sys_90: 1.54664050e-06 + art_sys_91: -4.63371225e-06 + art_sys_92: 2.30830472e-11 + art_sys_93: -5.02177519e-13 + art_sys_94: -5.89461858e-11 + art_sys_95: -4.75045112e-06 + art_sys_96: 4.96122466e-14 + art_sys_97: 6.88177096e-10 + art_sys_98: 2.60776013e-05 + art_sys_99: -1.27799077e-11 + art_sys_100: -2.18516626e-11 + art_sys_101: 2.93582312e-05 + art_sys_102: -1.10402793e-14 + art_sys_103: 2.74115597e-10 + art_sys_104: 6.36239901e-05 + art_sys_105: 4.83622167e-15 + art_sys_106: 1.20877674e-04 + art_sys_107: 1.38550064e-10 + art_sys_108: 4.92766817e-11 + art_sys_109: -3.51377239e-10 + art_sys_110: 3.87213659e-15 + art_sys_111: -1.62056787e-05 + art_sys_112: 5.03476090e-11 + art_sys_113: 2.81928378e-15 + art_sys_114: 1.84884046e-05 + art_sys_115: 1.42475348e-12 + art_sys_116: -6.24380838e-10 + art_sys_117: 2.34341759e-17 + art_sys_118: 2.55737459e-05 + art_sys_119: 7.95084881e-14 + art_sys_120: -1.65653861e-05 + art_sys_121: 1.18854974e-11 + art_sys_122: -8.66935090e-06 + art_sys_123: -4.93279109e-12 + art_sys_124: 3.82401310e-06 + art_sys_125: -1.51926735e-06 + art_sys_126: -3.48442544e-11 + art_sys_127: -4.66745549e-07 + art_sys_128: 4.25427099e-12 + art_sys_129: -6.34139882e-13 + art_sys_130: 1.04965118e-11 + art_sys_131: 3.77741149e-12 + art_sys_132: -1.73216246e-07 + art_sys_133: 4.16281650e-13 + art_sys_134: -7.88589688e-11 + art_sys_135: -3.29462456e-08 + art_sys_136: -5.97171466e-11 + art_sys_137: 3.68828791e-09 + art_sys_138: 1.67564714e-11 + art_sys_139: 5.80954438e-11 + art_sys_140: -5.31104084e-12 + art_sys_141: -2.68035246e-11 + art_sys_142: -0.0 + art_sys_143: 8.22082678e-11 + art_sys_144: 2.47383796e-11 + art_sys_145: 1.26026775e-11 + art_sys_146: -2.61877235e-16 + art_sys_147: 8.43752678e-17 + art_sys_148: -5.89462526e-14 + art_sys_149: -1.02141293e-14 + art_sys_150: -1.06857467e-15 + art_sys_151: 5.13543346e-14 + art_sys_152: -2.81425205e-14 + art_sys_153: -1.59416111e-15 + art_sys_154: 1.17286867e-14 + art_sys_155: 2.04387751e-14 + art_sys_156: 7.37968491e-14 + art_sys_157: 7.41635970e-15 + art_sys_158: -0.0 + art_sys_159: 3.84748287e-12 + art_sys_160: 3.84748287e-12 + art_sys_161: -1.13567195e-13 + art_sys_162: 4.71509713e-26 + art_sys_163: 0.0 + art_sys_164: 3.01779226e-26 + art_sys_165: 2.51097149e-22 + art_sys_166: 1.66187369e-22 + art_sys_167: -1.45058543e-22 + art_sys_168: 4.34335763e-23 + art_sys_169: 1.82135961e-23 + art_sys_170: -4.59600084e-23 + art_sys_171: 4.68501118e-25 + art_sys_172: 1.80094314e-24 + art_sys_173: -5.56097520e-24 + art_sys_174: 2.06399322e-26 + art_sys_175: 4.59641225e-26 + art_sys_176: 2.36800017e-26 + art_sys_177: 5.41049098e-26 + art_sys_178: 6.02952804e-26 + art_sys_179: 2.16929255e-26 + art_sys_180: 4.50717882e-26 + art_sys_181: -5.50815960e-28 + art_sys_182: 6.79379097e-28 + art_sys_183: 2.99097640e-29 + art_sys_184: -1.32502566e-29 + art_sys_185: 8.37225733e-28 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -11297,191 +11297,191 @@ bins: RelativeStatFSR-: -2.62440138e-05 luminosity_uncertainty: 6.31118800e-04 uncorrelated_uncertainty: 2.42738000e-04 -- art_sys_1: -6.70009475e-51 - art_sys_2: 2.52039485e-39 - art_sys_3: 2.11939110e-39 +- art_sys_1: 7.05386125e-51 + art_sys_2: -4.04739919e-38 + art_sys_3: 2.11939109e-39 art_sys_4: -1.29161716e-20 - art_sys_5: -7.25407026e-35 - art_sys_6: -8.12689483e-38 + art_sys_5: -7.11038213e-35 + art_sys_6: -1.54816209e-37 art_sys_7: -5.03223889e-19 - art_sys_8: 1.09769075e-33 + art_sys_8: 1.07637604e-33 art_sys_9: 2.21616843e-18 - art_sys_10: -2.39575981e-37 - art_sys_11: 3.92738198e-32 + art_sys_10: 1.51784856e-35 + art_sys_11: 3.50068331e-32 art_sys_12: 6.67365220e-19 - art_sys_13: 1.78861277e-31 - art_sys_14: 6.11833352e-16 - art_sys_15: 4.04049373e-29 - art_sys_16: 3.15603809e-15 - art_sys_17: 1.47292329e-31 - art_sys_18: -5.03786430e-28 - art_sys_19: -1.02704062e-14 - art_sys_20: 1.56319756e-30 - art_sys_21: -8.58867079e-27 - art_sys_22: 5.83685496e-30 + art_sys_13: 2.75915042e-34 + art_sys_14: -6.11833352e-16 + art_sys_15: -3.82362252e-29 + art_sys_16: -3.15603809e-15 + art_sys_17: 1.18189363e-31 + art_sys_18: -5.04285594e-28 + art_sys_19: 1.02704062e-14 + art_sys_20: 1.64967401e-30 + art_sys_21: -8.58372418e-27 + art_sys_22: 5.04839989e-30 art_sys_23: 2.08965162e-14 - art_sys_24: 9.57007675e-26 - art_sys_25: -1.07602898e-12 - art_sys_26: -8.45443476e-13 - art_sys_27: 2.86271831e-20 - art_sys_28: -1.32863419e-23 - art_sys_29: -2.50346400e-18 - art_sys_30: -1.20897788e-11 - art_sys_31: 2.49022874e-22 - art_sys_32: -1.80919746e-18 - art_sys_33: -5.82310327e-11 - art_sys_34: -1.78567542e-10 - art_sys_35: 4.60814339e-21 - art_sys_36: 2.75144002e-15 - art_sys_37: 9.33336631e-15 - art_sys_38: -5.73852210e-15 - art_sys_39: 1.72433036e-15 - art_sys_40: 3.24296830e-17 - art_sys_41: -7.41017832e-17 - art_sys_42: -2.51158233e-16 - art_sys_43: -3.01604500e-16 - art_sys_44: 2.59198055e-17 - art_sys_45: -7.24882460e-16 - art_sys_46: -1.10535107e-15 - art_sys_47: -6.94324411e-19 - art_sys_48: 6.06422962e-10 - art_sys_49: -7.34844149e-18 - art_sys_50: -5.45698948e-16 - art_sys_51: 9.55490405e-16 - art_sys_52: 1.90480097e-18 - art_sys_53: 9.83275081e-10 - art_sys_54: 4.68987929e-18 - art_sys_55: -4.44419179e-09 - art_sys_56: 8.89760811e-19 - art_sys_57: 1.27874010e-15 - art_sys_58: -4.75089953e-16 - art_sys_59: 2.06127331e-09 - art_sys_60: -1.20337969e-13 - art_sys_61: 3.65638972e-16 - art_sys_62: -1.64297538e-17 - art_sys_63: -3.74488802e-13 - art_sys_64: -3.62154822e-14 - art_sys_65: -1.87484498e-14 - art_sys_66: -1.23395378e-14 - art_sys_67: 5.54547826e-17 - art_sys_68: 1.63241949e-15 - art_sys_69: 9.55311242e-16 - art_sys_70: 7.79301025e-16 - art_sys_71: -1.00795614e-16 - art_sys_72: -2.13658873e-17 - art_sys_73: -1.13567784e-17 - art_sys_74: -1.20936008e-15 - art_sys_75: 2.83060360e-18 - art_sys_76: -3.10059728e-14 - art_sys_77: 1.93034750e-15 - art_sys_78: 5.35812779e-15 - art_sys_79: -2.04709745e-17 - art_sys_80: -2.71064305e-15 - art_sys_81: 2.28888881e-15 - art_sys_82: -3.87265191e-13 - art_sys_83: 8.71574751e-16 - art_sys_84: 7.19562532e-16 - art_sys_85: -3.85165772e-17 - art_sys_86: 1.43431057e-16 - art_sys_87: -2.04348160e-14 - art_sys_88: -8.21914064e-13 - art_sys_89: -2.19097905e-17 - art_sys_90: -5.83373617e-12 - art_sys_91: -4.87076800e-07 - art_sys_92: -1.69943588e-17 - art_sys_93: -1.49242906e-17 - art_sys_94: 1.77216413e-12 - art_sys_95: -2.18438673e-10 - art_sys_96: -4.27106958e-07 - art_sys_97: 2.01933822e-13 - art_sys_98: -1.94739124e-10 - art_sys_99: -4.18780204e-06 - art_sys_100: -1.49530351e-10 - art_sys_101: -2.43822487e-06 - art_sys_102: 6.51732577e-10 - art_sys_103: -2.44050207e-12 - art_sys_104: 1.88802483e-05 - art_sys_105: 1.03775955e-14 - art_sys_106: 2.26127373e-05 - art_sys_107: 3.33716331e-10 - art_sys_108: 1.89215723e-13 - art_sys_109: -1.52664285e-14 - art_sys_110: 1.12087053e-09 - art_sys_111: -4.59426208e-05 - art_sys_112: -2.19028760e-10 - art_sys_113: -1.62292616e-09 - art_sys_114: -1.49188973e-15 - art_sys_115: -9.21750946e-05 - art_sys_116: -1.94654873e-10 - art_sys_117: -6.12198550e-15 - art_sys_118: -1.37191825e-05 - art_sys_119: -1.45435595e-10 - art_sys_120: 1.49724666e-09 - art_sys_121: 3.42461605e-15 - art_sys_122: 1.26877330e-05 - art_sys_123: 3.63571394e-11 - art_sys_124: -2.04976272e-05 - art_sys_125: 9.55618269e-16 - art_sys_126: 4.89542980e-10 - art_sys_127: -1.82724974e-12 - art_sys_128: 1.25964347e-05 - art_sys_129: -1.49185137e-15 - art_sys_130: 1.75550445e-11 - art_sys_131: 1.85200664e-14 - art_sys_132: 6.43452691e-06 - art_sys_133: -3.37351387e-11 - art_sys_134: 1.46414789e-10 - art_sys_135: -2.79399993e-06 - art_sys_136: -3.48347496e-15 - art_sys_137: 1.39236420e-12 - art_sys_138: -9.14729370e-07 - art_sys_139: -2.76607587e-11 - art_sys_140: 3.03131779e-15 - art_sys_141: -6.65249962e-12 - art_sys_142: -3.55404965e-07 - art_sys_143: -7.29196748e-12 - art_sys_144: 1.07300074e-13 - art_sys_145: -6.95409815e-08 - art_sys_146: 4.20709785e-12 - art_sys_147: -4.81742613e-14 - art_sys_148: -2.69459340e-16 - art_sys_149: 7.57333447e-09 - art_sys_150: -2.17528708e-10 - art_sys_151: -1.17957281e-11 - art_sys_152: 2.02600778e-13 - art_sys_153: -2.95570348e-11 - art_sys_154: 3.83552980e-12 - art_sys_155: 1.05290684e-13 - art_sys_156: -0.0 - art_sys_157: 8.66819602e-11 - art_sys_158: -0.0 - art_sys_159: -1.33334838e-11 - art_sys_160: 1.78568846e-12 - art_sys_161: 1.45415902e-12 - art_sys_162: 1.45415902e-12 - art_sys_163: 1.52778250e-12 - art_sys_164: 1.52778250e-12 - art_sys_165: -1.71907383e-26 - art_sys_166: 5.70375712e-27 - art_sys_167: 0.0 - art_sys_168: -7.95889930e-23 - art_sys_169: -2.85735098e-23 - art_sys_170: 8.03724067e-24 - art_sys_171: -1.44700626e-23 - art_sys_172: 4.22047541e-25 - art_sys_173: 3.09974006e-25 - art_sys_174: 2.57581116e-25 - art_sys_175: 5.29604096e-26 - art_sys_176: 3.95320790e-26 - art_sys_177: 1.04144310e-26 - art_sys_178: 1.48123529e-26 - art_sys_179: -3.15106865e-26 - art_sys_180: -3.46069530e-25 - art_sys_181: -1.93842363e-26 - art_sys_182: -5.89538444e-27 - art_sys_183: 6.45245894e-29 - art_sys_184: 3.57105389e-29 - art_sys_185: 5.63991024e-29 + art_sys_24: 9.57030991e-26 + art_sys_25: 1.07602899e-12 + art_sys_26: -8.45443520e-13 + art_sys_27: -4.34365901e-20 + art_sys_28: -1.32692822e-23 + art_sys_29: -2.47741386e-15 + art_sys_30: -4.71983961e-15 + art_sys_31: -1.92154616e-15 + art_sys_32: -7.92053291e-16 + art_sys_33: -8.34794713e-17 + art_sys_34: -1.85404031e-16 + art_sys_35: 1.57712486e-16 + art_sys_36: -5.62988384e-18 + art_sys_37: -1.20897785e-11 + art_sys_38: -4.79459245e-17 + art_sys_39: -2.49090356e-22 + art_sys_40: -4.04613473e-18 + art_sys_41: 5.82310314e-11 + art_sys_42: 2.42661463e-17 + art_sys_43: 1.78567542e-10 + art_sys_44: 9.99348291e-17 + art_sys_45: 7.48373322e-21 + art_sys_46: 2.67733121e-19 + art_sys_47: 2.76186949e-16 + art_sys_48: 6.06422960e-10 + art_sys_49: -1.59117350e-18 + art_sys_50: -9.18901122e-17 + art_sys_51: -2.76984974e-16 + art_sys_52: 9.83275149e-10 + art_sys_53: 1.75632573e-19 + art_sys_54: 2.83996165e-18 + art_sys_55: 4.44419182e-09 + art_sys_56: -2.67367770e-19 + art_sys_57: -8.10383152e-14 + art_sys_58: 2.20963279e-14 + art_sys_59: -2.15624447e-15 + art_sys_60: -3.25010813e-16 + art_sys_61: 1.04550112e-15 + art_sys_62: -3.82829827e-16 + art_sys_63: -2.07898475e-16 + art_sys_64: 6.25150883e-18 + art_sys_65: -1.43817531e-16 + art_sys_66: 1.44243902e-16 + art_sys_67: 3.85885781e-18 + art_sys_68: -4.09854692e-17 + art_sys_69: -1.05569858e-13 + art_sys_70: 2.06175152e-09 + art_sys_71: -1.30531072e-12 + art_sys_72: -3.88281954e-17 + art_sys_73: 6.15654346e-13 + art_sys_74: 1.76374602e-12 + art_sys_75: -2.18014499e-18 + art_sys_76: -1.04401152e-14 + art_sys_77: -7.32055112e-15 + art_sys_78: -8.10660624e-15 + art_sys_79: -4.37477120e-16 + art_sys_80: 8.61853895e-12 + art_sys_81: 4.78258992e-15 + art_sys_82: 9.11827527e-16 + art_sys_83: -4.09612880e-16 + art_sys_84: 1.10262773e-15 + art_sys_85: 2.04012651e-16 + art_sys_86: 9.54936363e-17 + art_sys_87: 2.30464544e-13 + art_sys_88: -4.40266805e-14 + art_sys_89: -4.41726760e-14 + art_sys_90: 4.87069747e-07 + art_sys_91: 4.27112813e-07 + art_sys_92: -4.05022547e-10 + art_sys_93: -4.43522309e-14 + art_sys_94: 7.54295003e-10 + art_sys_95: -4.18776865e-06 + art_sys_96: -1.07243674e-13 + art_sys_97: -4.63285365e-10 + art_sys_98: -2.43819950e-06 + art_sys_99: 1.23804720e-12 + art_sys_100: -4.85121540e-11 + art_sys_101: 1.88791544e-05 + art_sys_102: 2.40889386e-14 + art_sys_103: -4.18548799e-10 + art_sys_104: -2.26120982e-05 + art_sys_105: -1.13885880e-14 + art_sys_106: 4.59418434e-05 + art_sys_107: -2.64386251e-11 + art_sys_108: -1.02152435e-10 + art_sys_109: 6.59898488e-10 + art_sys_110: -9.17480004e-15 + art_sys_111: -9.21769206e-05 + art_sys_112: -1.07307497e-10 + art_sys_113: -6.94291976e-15 + art_sys_114: -1.37002028e-05 + art_sys_115: -3.02302619e-12 + art_sys_116: 9.78496006e-10 + art_sys_117: -1.19377691e-16 + art_sys_118: -1.26790933e-05 + art_sys_119: -1.78550030e-13 + art_sys_120: 2.05027519e-05 + art_sys_121: -1.18415743e-11 + art_sys_122: 1.25883926e-05 + art_sys_123: 1.07549968e-11 + art_sys_124: -6.43589212e-06 + art_sys_125: 2.78871551e-06 + art_sys_126: 7.63199471e-11 + art_sys_127: 9.14658226e-07 + art_sys_128: -9.29817653e-12 + art_sys_129: 1.39895347e-12 + art_sys_130: -2.30456293e-11 + art_sys_131: -8.15692592e-12 + art_sys_132: 3.54272864e-07 + art_sys_133: -1.87447135e-12 + art_sys_134: 1.66964100e-10 + art_sys_135: 7.04252550e-08 + art_sys_136: 1.27989836e-10 + art_sys_137: -8.04340284e-09 + art_sys_138: -3.65120171e-11 + art_sys_139: -1.26354797e-10 + art_sys_140: 7.37512820e-13 + art_sys_141: 5.78577702e-11 + art_sys_142: 0.0 + art_sys_143: -1.76231957e-10 + art_sys_144: -5.35295133e-11 + art_sys_145: -2.69221916e-11 + art_sys_146: 5.83080236e-16 + art_sys_147: -1.92300389e-16 + art_sys_148: 1.31321722e-13 + art_sys_149: 2.20075517e-14 + art_sys_150: 2.35652575e-15 + art_sys_151: -1.13260054e-13 + art_sys_152: 5.84387264e-14 + art_sys_153: 3.43577776e-15 + art_sys_154: -2.59485797e-14 + art_sys_155: -4.41384386e-14 + art_sys_156: -1.59732550e-13 + art_sys_157: -1.56704871e-14 + art_sys_158: 0.0 + art_sys_159: -8.43528519e-12 + art_sys_160: -8.43528519e-12 + art_sys_161: 2.48016847e-13 + art_sys_162: -1.02982168e-25 + art_sys_163: -0.0 + art_sys_164: -6.59136460e-26 + art_sys_165: -5.86238199e-22 + art_sys_166: -3.86643610e-22 + art_sys_167: 3.37811536e-22 + art_sys_168: -1.01576103e-22 + art_sys_169: -4.28249914e-23 + art_sys_170: 1.07943493e-22 + art_sys_171: -1.19786192e-24 + art_sys_172: -4.20802410e-24 + art_sys_173: 1.30081198e-23 + art_sys_174: -4.43968374e-26 + art_sys_175: -1.08561368e-25 + art_sys_176: -5.49813654e-26 + art_sys_177: -1.33779845e-25 + art_sys_178: -2.84817422e-26 + art_sys_179: -4.68047641e-26 + art_sys_180: -9.39094218e-26 + art_sys_181: 1.31044605e-27 + art_sys_182: -1.58500788e-27 + art_sys_183: -6.51544266e-29 + art_sys_184: 2.85511586e-29 + art_sys_185: -1.85100363e-27 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -11588,191 +11588,191 @@ bins: RelativeStatFSR-: -1.67481095e-05 luminosity_uncertainty: 3.79901600e-04 uncorrelated_uncertainty: 1.46116000e-04 -- art_sys_1: -3.58359480e-52 - art_sys_2: 1.34767787e-40 - art_sys_3: 1.35793516e-40 +- art_sys_1: 3.77076960e-52 + art_sys_2: -2.16418087e-39 + art_sys_3: 1.35793515e-40 art_sys_4: -6.90639352e-22 - art_sys_5: -5.13584596e-36 - art_sys_6: -4.36672625e-39 + art_sys_5: -5.05876725e-36 + art_sys_6: -8.32279685e-39 art_sys_7: -3.66497948e-20 - art_sys_8: 8.40786723e-35 + art_sys_8: 8.42871267e-35 art_sys_9: 1.57529571e-19 - art_sys_10: 1.01484257e-37 - art_sys_11: 3.85984971e-33 + art_sys_10: 9.80577707e-37 + art_sys_11: 3.44007300e-33 art_sys_12: 9.41233636e-20 - art_sys_13: 1.75395956e-32 - art_sys_14: 5.99799190e-17 - art_sys_15: 6.74137529e-31 - art_sys_16: 2.46695300e-16 - art_sys_17: 1.23333941e-32 - art_sys_18: -4.38050389e-29 - art_sys_19: -9.03172557e-16 - art_sys_20: 1.41755853e-31 - art_sys_21: -5.50985951e-28 - art_sys_22: 4.38001589e-31 + art_sys_13: 2.09145621e-35 + art_sys_14: -5.99799190e-17 + art_sys_15: -5.06526085e-31 + art_sys_16: -2.46695300e-16 + art_sys_17: 9.95918920e-33 + art_sys_18: -4.38566385e-29 + art_sys_19: 9.03172557e-16 + art_sys_20: 1.44019542e-31 + art_sys_21: -5.50555773e-28 + art_sys_22: 5.11095721e-31 art_sys_23: 1.87438485e-15 - art_sys_24: 6.14786078e-27 - art_sys_25: -1.10289970e-13 - art_sys_26: -2.00311145e-14 - art_sys_27: -5.74142506e-21 - art_sys_28: -1.09552329e-24 - art_sys_29: 6.61604429e-18 - art_sys_30: -1.00271231e-12 - art_sys_31: 1.94581565e-23 - art_sys_32: -1.60935537e-18 - art_sys_33: -4.15950008e-12 - art_sys_34: -1.61026870e-11 - art_sys_35: 3.06327222e-22 - art_sys_36: 3.10279743e-15 - art_sys_37: -1.20902103e-14 - art_sys_38: 4.02264174e-15 - art_sys_39: -1.42262064e-15 - art_sys_40: -4.27146857e-16 - art_sys_41: 3.86687415e-16 - art_sys_42: 5.01682953e-17 - art_sys_43: 1.33050414e-16 - art_sys_44: 2.46569515e-17 - art_sys_45: 2.72941063e-16 - art_sys_46: 3.82348401e-16 - art_sys_47: 1.86336900e-19 - art_sys_48: 3.35542367e-11 - art_sys_49: -1.27771892e-19 - art_sys_50: 1.80338078e-16 - art_sys_51: -3.21131599e-16 - art_sys_52: 1.00386373e-19 - art_sys_53: 3.01020757e-10 - art_sys_54: -4.28471387e-19 - art_sys_55: -1.38045105e-10 - art_sys_56: -3.39736506e-19 - art_sys_57: -4.84374029e-16 - art_sys_58: 1.87041169e-16 - art_sys_59: 2.00124967e-09 - art_sys_60: -4.68721957e-15 - art_sys_61: -1.50423298e-16 - art_sys_62: -1.03490454e-17 - art_sys_63: -2.58534230e-13 - art_sys_64: -4.37944293e-14 - art_sys_65: 1.05997482e-14 - art_sys_66: 1.31182393e-14 - art_sys_67: 1.83005907e-15 - art_sys_68: -1.01699678e-16 - art_sys_69: -2.07715497e-15 - art_sys_70: -2.68173976e-16 - art_sys_71: -3.25233432e-16 - art_sys_72: 8.79898650e-18 - art_sys_73: -3.21721282e-17 - art_sys_74: -7.71837826e-16 - art_sys_75: -3.68326883e-18 - art_sys_76: 1.81343084e-14 - art_sys_77: -3.60164828e-14 - art_sys_78: -1.90893900e-14 - art_sys_79: -1.00751426e-17 - art_sys_80: -1.49590075e-15 - art_sys_81: 2.35666748e-15 - art_sys_82: -2.81259520e-12 - art_sys_83: -2.40335264e-16 - art_sys_84: -9.87510860e-16 - art_sys_85: 6.46263042e-16 - art_sys_86: -1.11407654e-16 - art_sys_87: -1.43905514e-14 - art_sys_88: -1.51587566e-12 - art_sys_89: 4.41306839e-17 - art_sys_90: 2.84590452e-12 - art_sys_91: 5.59231993e-08 - art_sys_92: 4.43987849e-17 - art_sys_93: 1.01249481e-17 - art_sys_94: -2.65959922e-12 - art_sys_95: 7.23048815e-11 - art_sys_96: -4.38264320e-07 - art_sys_97: 1.92134336e-13 - art_sys_98: 7.16661100e-11 - art_sys_99: -2.00592105e-08 - art_sys_100: 1.22786624e-10 - art_sys_101: -3.34914276e-06 - art_sys_102: -4.09849852e-10 - art_sys_103: -2.21252795e-13 - art_sys_104: -1.91924834e-06 - art_sys_105: -5.36623528e-14 - art_sys_106: 1.40391709e-05 - art_sys_107: -4.76369658e-10 - art_sys_108: -4.09806907e-13 - art_sys_109: 3.30934071e-14 - art_sys_110: -1.19950781e-09 - art_sys_111: 1.77806481e-05 - art_sys_112: 2.92099340e-10 - art_sys_113: 6.27289211e-10 - art_sys_114: 3.23189985e-15 - art_sys_115: -3.32912493e-05 - art_sys_116: 2.55229340e-10 - art_sys_117: 1.28765305e-14 - art_sys_118: -7.04421341e-05 - art_sys_119: 2.28984714e-10 - art_sys_120: -2.26681350e-09 - art_sys_121: -7.42035973e-15 - art_sys_122: -6.16693941e-06 - art_sys_123: -7.35701136e-11 - art_sys_124: 1.13919289e-05 - art_sys_125: -2.06042983e-15 - art_sys_126: -8.34502965e-10 - art_sys_127: 3.96280140e-12 - art_sys_128: -1.62108298e-05 - art_sys_129: 3.26425980e-15 - art_sys_130: -3.78146505e-11 - art_sys_131: -3.96907515e-14 - art_sys_132: -9.55961937e-06 - art_sys_133: 7.27079979e-11 - art_sys_134: -3.16106523e-10 - art_sys_135: 4.77406029e-06 - art_sys_136: 7.49761405e-15 - art_sys_137: -3.04299880e-12 - art_sys_138: 1.71725620e-06 - art_sys_139: 5.91385920e-11 - art_sys_140: -6.60819654e-15 - art_sys_141: 1.27426844e-11 - art_sys_142: 7.01892357e-07 - art_sys_143: 1.50845296e-11 - art_sys_144: -2.07700106e-13 - art_sys_145: 1.46142284e-07 - art_sys_146: -8.81140238e-12 - art_sys_147: 1.01326632e-13 - art_sys_148: 2.54864301e-15 - art_sys_149: -1.64568671e-08 - art_sys_150: 4.72287829e-10 - art_sys_151: 2.55470335e-11 - art_sys_152: -4.37133707e-13 - art_sys_153: 6.36762714e-11 - art_sys_154: -3.49241628e-12 - art_sys_155: -2.24909048e-13 - art_sys_156: 0.0 - art_sys_157: -1.89462886e-10 - art_sys_158: 0.0 - art_sys_159: 2.88534483e-11 - art_sys_160: -3.89742812e-12 - art_sys_161: -3.12055673e-12 - art_sys_162: -3.12055673e-12 - art_sys_163: -3.29743126e-12 - art_sys_164: -3.29743126e-12 - art_sys_165: 3.70734311e-26 - art_sys_166: -1.22990917e-26 - art_sys_167: -0.0 - art_sys_168: 1.60181612e-22 - art_sys_169: 6.20205086e-23 - art_sys_170: -1.46380080e-23 - art_sys_171: 3.14674266e-23 - art_sys_172: -9.13998446e-25 - art_sys_173: -6.79884744e-25 - art_sys_174: -5.59736821e-25 - art_sys_175: -1.15049478e-25 - art_sys_176: -8.59102179e-26 - art_sys_177: -2.32705713e-26 - art_sys_178: -3.18652508e-26 - art_sys_179: 6.69036069e-26 - art_sys_180: 7.48397400e-25 - art_sys_181: 5.37087865e-26 - art_sys_182: 1.28080898e-26 - art_sys_183: -1.40009783e-28 - art_sys_184: -6.90866979e-29 - art_sys_185: -1.16523302e-28 + art_sys_24: 6.14804203e-27 + art_sys_25: 1.10289970e-13 + art_sys_26: -2.00311057e-14 + art_sys_27: 1.28012720e-20 + art_sys_28: -1.09445108e-24 + art_sys_29: 2.94071851e-15 + art_sys_30: 1.61644174e-14 + art_sys_31: 1.15995747e-15 + art_sys_32: 2.23580995e-15 + art_sys_33: -5.33720404e-17 + art_sys_34: 1.42427325e-16 + art_sys_35: -1.27833315e-16 + art_sys_36: 1.64126504e-17 + art_sys_37: -1.00268942e-12 + art_sys_38: 1.71432432e-17 + art_sys_39: -1.94621427e-23 + art_sys_40: -5.05586125e-19 + art_sys_41: 4.15949668e-12 + art_sys_42: 2.16939559e-17 + art_sys_43: 1.61026852e-11 + art_sys_44: -1.35775401e-16 + art_sys_45: 5.62144191e-22 + art_sys_46: 2.27982606e-19 + art_sys_47: -1.18393283e-16 + art_sys_48: 3.35542364e-11 + art_sys_49: -1.94477808e-19 + art_sys_50: 6.44647146e-17 + art_sys_51: 1.52253863e-16 + art_sys_52: 3.01020758e-10 + art_sys_53: 2.40030115e-20 + art_sys_54: 4.25770735e-20 + art_sys_55: 1.38045106e-10 + art_sys_56: 1.02462189e-18 + art_sys_57: 1.31789464e-13 + art_sys_58: 2.14987635e-14 + art_sys_59: -3.26464012e-15 + art_sys_60: 1.79342285e-16 + art_sys_61: -5.80783264e-16 + art_sys_62: 6.21295514e-16 + art_sys_63: -2.51058947e-16 + art_sys_64: -1.36167108e-15 + art_sys_65: -4.48851651e-17 + art_sys_66: -8.17526484e-17 + art_sys_67: -7.06237346e-18 + art_sys_68: -2.92869226e-17 + art_sys_69: 1.17116957e-14 + art_sys_70: 2.00126829e-09 + art_sys_71: -4.99100572e-14 + art_sys_72: -2.74787901e-17 + art_sys_73: 7.45683443e-13 + art_sys_74: 1.98981129e-14 + art_sys_75: -1.89618732e-17 + art_sys_76: -1.16697976e-14 + art_sys_77: -3.49648063e-14 + art_sys_78: 1.48554177e-14 + art_sys_79: 5.82005078e-17 + art_sys_80: 5.79648357e-12 + art_sys_81: 1.98143128e-15 + art_sys_82: 1.95672293e-15 + art_sys_83: 3.86824732e-16 + art_sys_84: 2.40842510e-15 + art_sys_85: 3.43796447e-16 + art_sys_86: -5.30824593e-17 + art_sys_87: -1.16004825e-12 + art_sys_88: 9.97191630e-14 + art_sys_89: 9.81937692e-14 + art_sys_90: -5.59271806e-08 + art_sys_91: 4.38272163e-07 + art_sys_92: -3.61715754e-10 + art_sys_93: 3.50958536e-14 + art_sys_94: 6.42639080e-10 + art_sys_95: -2.00459556e-08 + art_sys_96: 2.29196694e-13 + art_sys_97: 6.33865360e-10 + art_sys_98: -3.34912982e-06 + art_sys_99: 1.64559240e-12 + art_sys_100: -6.92304331e-11 + art_sys_101: -1.92003653e-06 + art_sys_102: -5.20757182e-14 + art_sys_103: 6.56047667e-10 + art_sys_104: -1.40394100e-05 + art_sys_105: 2.52806494e-14 + art_sys_106: -1.77807372e-05 + art_sys_107: -2.69527059e-11 + art_sys_108: 2.12582073e-10 + art_sys_109: -5.10588776e-10 + art_sys_110: 2.03555965e-14 + art_sys_111: -3.32723772e-05 + art_sys_112: 2.26071002e-10 + art_sys_113: 1.53921050e-14 + art_sys_114: -7.04537888e-05 + art_sys_115: 6.29370070e-12 + art_sys_116: -1.72724988e-09 + art_sys_117: 2.49182790e-16 + art_sys_118: 6.17062807e-06 + art_sys_119: 4.10050185e-13 + art_sys_120: -1.13983300e-05 + art_sys_121: -2.55250835e-12 + art_sys_122: -1.61986004e-05 + art_sys_123: -2.32761100e-11 + art_sys_124: 9.56232226e-06 + art_sys_125: -4.76588418e-06 + art_sys_126: -1.65970878e-10 + art_sys_127: -1.71726050e-06 + art_sys_128: 2.01998667e-11 + art_sys_129: -3.08344446e-12 + art_sys_130: 5.02732181e-11 + art_sys_131: 1.74554215e-11 + art_sys_132: -6.99705582e-07 + art_sys_133: 6.77892286e-12 + art_sys_134: -3.46891350e-10 + art_sys_135: -1.47951318e-07 + art_sys_136: -2.70084686e-10 + art_sys_137: 1.74536477e-08 + art_sys_138: 7.90934544e-11 + art_sys_139: 2.72881215e-10 + art_sys_140: 9.53011519e-13 + art_sys_141: -1.23649283e-10 + art_sys_142: -0.0 + art_sys_143: 3.71653197e-10 + art_sys_144: 1.14477975e-10 + art_sys_145: 5.67087388e-11 + art_sys_146: -1.28809266e-15 + art_sys_147: 4.22960749e-16 + art_sys_148: -2.95297663e-13 + art_sys_149: -4.76117779e-14 + art_sys_150: -5.21385339e-15 + art_sys_151: 2.49214774e-13 + art_sys_152: -1.18098901e-13 + art_sys_153: -7.31100502e-15 + art_sys_154: 5.74772938e-14 + art_sys_155: 9.45325876e-14 + art_sys_156: 3.42629707e-13 + art_sys_157: 3.24568895e-14 + art_sys_158: -0.0 + art_sys_159: 1.84372720e-11 + art_sys_160: 1.84372720e-11 + art_sys_161: -5.40085413e-13 + art_sys_162: 2.24201832e-25 + art_sys_163: 0.0 + art_sys_164: 1.43481400e-25 + art_sys_165: 1.29985563e-21 + art_sys_166: 8.56310127e-22 + art_sys_167: -7.57789419e-22 + art_sys_168: 2.25307052e-22 + art_sys_169: 9.54959558e-23 + art_sys_170: -2.40525159e-22 + art_sys_171: 2.56474694e-24 + art_sys_172: 9.33773803e-24 + art_sys_173: -2.88647850e-23 + art_sys_174: 9.44248669e-26 + art_sys_175: 2.41290702e-25 + art_sys_176: 1.21562409e-25 + art_sys_177: 2.96769145e-25 + art_sys_178: 9.23996843e-26 + art_sys_179: 1.07220398e-25 + art_sys_180: 2.04378788e-25 + art_sys_181: -2.91678668e-27 + art_sys_182: 3.51638207e-27 + art_sys_183: 1.40360641e-28 + art_sys_184: -6.08021407e-29 + art_sys_185: 4.10716431e-27 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -11879,191 +11879,191 @@ bins: RelativeStatFSR-: -1.06082556e-05 luminosity_uncertainty: 2.27175780e-04 uncorrelated_uncertainty: 8.73753000e-05 -- art_sys_1: -1.55726537e-53 - art_sys_2: 5.85353583e-42 - art_sys_3: 7.61403515e-42 +- art_sys_1: 1.63704660e-53 + art_sys_2: -9.39995422e-41 + art_sys_3: 7.61403513e-42 art_sys_4: -2.99973924e-23 - art_sys_5: -3.22912752e-37 - art_sys_6: -1.89361623e-40 + art_sys_5: -3.19567156e-37 + art_sys_6: -3.62677146e-40 art_sys_7: -2.40916530e-21 - art_sys_8: 6.03587211e-36 + art_sys_8: 6.01096300e-36 art_sys_9: 1.00047901e-20 - art_sys_10: 3.07348730e-39 - art_sys_11: 2.64162260e-34 + art_sys_10: 6.08841108e-38 + art_sys_11: 2.29732064e-34 art_sys_12: 1.06215860e-20 - art_sys_13: 1.43680728e-33 - art_sys_14: 4.91334680e-18 - art_sys_15: -3.60877531e-31 - art_sys_16: 1.95142099e-17 - art_sys_17: 9.79575970e-34 - art_sys_18: -9.02618220e-31 - art_sys_19: -7.24015382e-17 - art_sys_20: 1.14189455e-32 - art_sys_21: 7.78599563e-30 - art_sys_22: 3.39737546e-32 + art_sys_13: 1.58406954e-36 + art_sys_14: -4.91334680e-18 + art_sys_15: 3.74326134e-31 + art_sys_16: -1.95142099e-17 + art_sys_17: 7.89970875e-34 + art_sys_18: -9.06860552e-31 + art_sys_19: 7.24015382e-17 + art_sys_20: 1.14413664e-32 + art_sys_21: 7.82028142e-30 + art_sys_22: 3.76675367e-32 art_sys_23: 1.47361559e-16 - art_sys_24: 3.70804028e-27 - art_sys_25: -8.58978793e-15 - art_sys_26: -5.93185876e-16 - art_sys_27: -1.41725754e-22 - art_sys_28: -9.17423924e-26 - art_sys_29: 3.42892124e-19 - art_sys_30: -8.50195578e-14 - art_sys_31: 9.15181109e-25 - art_sys_32: -1.38401715e-17 - art_sys_33: 8.99647851e-14 - art_sys_34: -3.06991527e-12 - art_sys_35: 5.46269778e-23 - art_sys_36: 1.71963283e-14 - art_sys_37: -3.23476036e-15 - art_sys_38: 9.45653097e-16 - art_sys_39: -1.71434200e-15 - art_sys_40: 1.89287649e-16 - art_sys_41: 1.01575533e-16 - art_sys_42: -1.29882343e-17 - art_sys_43: -9.62205726e-18 - art_sys_44: 3.32311010e-17 - art_sys_45: -1.81636592e-16 - art_sys_46: -1.16698406e-16 - art_sys_47: -8.22657827e-19 - art_sys_48: 5.92425715e-12 - art_sys_49: -5.34386280e-19 - art_sys_50: -1.04507514e-16 - art_sys_51: 8.33245709e-17 - art_sys_52: 1.81637119e-20 - art_sys_53: 8.32957553e-11 - art_sys_54: -6.70105249e-19 - art_sys_55: -1.99506879e-10 - art_sys_56: -2.05028807e-20 - art_sys_57: 2.28138948e-16 - art_sys_58: -7.75596048e-17 - art_sys_59: -3.83733442e-11 - art_sys_60: 8.03984420e-15 - art_sys_61: 8.19149780e-17 - art_sys_62: 1.13879450e-18 - art_sys_63: -3.98491257e-16 - art_sys_64: 6.06838794e-14 - art_sys_65: 1.91416726e-14 - art_sys_66: 1.87660936e-15 - art_sys_67: -3.60228921e-15 - art_sys_68: -2.25558121e-16 - art_sys_69: -2.54032388e-16 - art_sys_70: -5.32754773e-16 - art_sys_71: -1.53821363e-16 - art_sys_72: -1.01348180e-17 - art_sys_73: -2.66997532e-17 - art_sys_74: -1.60311520e-16 - art_sys_75: -2.45758197e-18 - art_sys_76: -3.25350061e-14 - art_sys_77: 2.02202869e-14 - art_sys_78: -9.55370580e-15 - art_sys_79: -1.59147953e-17 - art_sys_80: 1.92282350e-15 - art_sys_81: 1.36659535e-16 - art_sys_82: -4.84106746e-13 - art_sys_83: 5.99937919e-18 - art_sys_84: -1.42351942e-15 - art_sys_85: -1.77643556e-16 - art_sys_86: 3.68422659e-17 - art_sys_87: 1.55106051e-15 - art_sys_88: -2.94394630e-13 - art_sys_89: 2.76695526e-17 - art_sys_90: 2.68918307e-11 - art_sys_91: 4.16525361e-08 - art_sys_92: 2.08170234e-17 - art_sys_93: -3.00556859e-17 - art_sys_94: 3.25527290e-12 - art_sys_95: 5.16351763e-11 - art_sys_96: -2.60869592e-08 - art_sys_97: 1.01311798e-14 - art_sys_98: 4.73997912e-11 - art_sys_99: 3.80464076e-07 - art_sys_100: 6.52346484e-11 - art_sys_101: -1.48189911e-07 - art_sys_102: 2.41699028e-10 - art_sys_103: 2.89713479e-13 - art_sys_104: -2.63188042e-06 - art_sys_105: 1.77256861e-13 - art_sys_106: -1.73151343e-06 - art_sys_107: 3.25551212e-10 - art_sys_108: 8.05407918e-13 - art_sys_109: -6.53519493e-14 - art_sys_110: -8.94528659e-10 - art_sys_111: 1.13199366e-05 - art_sys_112: 6.11996536e-11 - art_sys_113: 3.99754249e-10 - art_sys_114: -6.35879387e-15 - art_sys_115: 1.61189308e-05 - art_sys_116: -1.47851077e-10 - art_sys_117: -2.52872731e-14 - art_sys_118: -2.98499159e-05 - art_sys_119: -2.90748116e-10 - art_sys_120: 3.04037781e-09 - art_sys_121: 1.47348621e-14 - art_sys_122: -5.69201050e-05 - art_sys_123: 1.33138066e-10 - art_sys_124: -4.54431010e-06 - art_sys_125: 4.16316236e-15 - art_sys_126: 1.11682110e-09 - art_sys_127: -7.82127221e-12 - art_sys_128: 8.76263196e-06 - art_sys_129: -6.50738715e-15 - art_sys_130: 7.39582839e-11 - art_sys_131: 7.81521284e-14 - art_sys_132: 1.14208475e-05 - art_sys_133: -1.42133211e-10 - art_sys_134: 6.16141222e-10 - art_sys_135: -6.57159037e-06 - art_sys_136: -1.44570178e-14 - art_sys_137: 5.91677091e-12 - art_sys_138: -2.77367090e-06 - art_sys_139: -1.14433425e-10 - art_sys_140: 1.31165254e-14 - art_sys_141: -2.12766173e-11 - art_sys_142: -1.22516131e-06 - art_sys_143: -2.80356319e-11 - art_sys_144: 3.49526516e-13 - art_sys_145: -2.77213608e-07 - art_sys_146: 1.66030580e-11 - art_sys_147: -1.92282553e-13 - art_sys_148: -9.19218314e-15 - art_sys_149: 3.24116170e-08 - art_sys_150: -9.28991951e-10 - art_sys_151: -5.09273722e-11 - art_sys_152: 8.53486960e-13 - art_sys_153: -1.24765914e-10 - art_sys_154: -1.68014977e-11 - art_sys_155: 4.29244906e-13 - art_sys_156: -0.0 - art_sys_157: 3.86012858e-10 - art_sys_158: -0.0 - art_sys_159: -5.73437429e-11 - art_sys_160: 7.90315454e-12 - art_sys_161: 6.05466103e-12 - art_sys_162: 6.05466103e-12 - art_sys_163: 6.50214455e-12 - art_sys_164: 6.50214455e-12 - art_sys_165: -7.29425494e-26 - art_sys_166: 2.41896888e-26 - art_sys_167: 0.0 - art_sys_168: -3.08349467e-22 - art_sys_169: -1.23040355e-22 - art_sys_170: 3.51542533e-23 - art_sys_171: -6.18554877e-23 - art_sys_172: 1.79233176e-24 - art_sys_173: 1.33113170e-24 - art_sys_174: 1.11041075e-24 - art_sys_175: 2.28073573e-25 - art_sys_176: 1.70372611e-25 - art_sys_177: 4.56130222e-26 - art_sys_178: 6.28067879e-26 - art_sys_179: -1.25423490e-25 - art_sys_180: -1.48442060e-24 - art_sys_181: -1.13007177e-25 - art_sys_182: -2.54081844e-26 - art_sys_183: 2.78738669e-28 - art_sys_184: 1.15525291e-28 - art_sys_185: 2.15787487e-28 + art_sys_24: 3.70805480e-27 + art_sys_25: 8.58978793e-15 + art_sys_26: -5.93185841e-16 + art_sys_27: 1.97350261e-22 + art_sys_28: -9.16351304e-26 + art_sys_29: 3.46061295e-15 + art_sys_30: 9.15118716e-15 + art_sys_31: 5.51662472e-15 + art_sys_32: 1.78581387e-16 + art_sys_33: -7.38411639e-17 + art_sys_34: 1.70351737e-16 + art_sys_35: -2.01491821e-16 + art_sys_36: 5.43467388e-19 + art_sys_37: -8.50188892e-14 + art_sys_38: -5.34042255e-17 + art_sys_39: -9.14702509e-25 + art_sys_40: -2.56932159e-17 + art_sys_41: -8.99657615e-14 + art_sys_42: -9.67800267e-17 + art_sys_43: 3.06991510e-12 + art_sys_44: -2.43024741e-16 + art_sys_45: 1.02878503e-22 + art_sys_46: -8.54256538e-20 + art_sys_47: -3.32535375e-16 + art_sys_48: 5.92425732e-12 + art_sys_49: 2.47938419e-19 + art_sys_50: 1.16418960e-16 + art_sys_51: 2.73006754e-16 + art_sys_52: 8.32957581e-11 + art_sys_53: 1.62577638e-21 + art_sys_54: 1.23008777e-19 + art_sys_55: 1.99506880e-10 + art_sys_56: -2.97654557e-20 + art_sys_57: 1.25643085e-15 + art_sys_58: 1.32948632e-14 + art_sys_59: -6.94298575e-15 + art_sys_60: 4.24051113e-16 + art_sys_61: -2.15418815e-15 + art_sys_62: -6.70209997e-18 + art_sys_63: -3.05766350e-16 + art_sys_64: 2.03772697e-16 + art_sys_65: -4.79549962e-17 + art_sys_66: -1.61028095e-16 + art_sys_67: 4.79132604e-18 + art_sys_68: -2.77587486e-17 + art_sys_69: 8.84389282e-15 + art_sys_70: -3.84053545e-11 + art_sys_71: 8.74840426e-14 + art_sys_72: 1.92583291e-18 + art_sys_73: 2.00967141e-14 + art_sys_74: -1.23704437e-13 + art_sys_75: 1.98950368e-17 + art_sys_76: -4.59634086e-14 + art_sys_77: 1.16437141e-14 + art_sys_78: -1.77179206e-14 + art_sys_79: 3.32969534e-17 + art_sys_80: -5.19837312e-13 + art_sys_81: 2.39982222e-16 + art_sys_82: 8.27109465e-16 + art_sys_83: 4.73909417e-16 + art_sys_84: 3.98159994e-17 + art_sys_85: 1.88016005e-17 + art_sys_86: -1.14704433e-17 + art_sys_87: 1.23245431e-12 + art_sys_88: -2.05146314e-13 + art_sys_89: -2.02514683e-13 + art_sys_90: -4.16524263e-08 + art_sys_91: 2.60868606e-08 + art_sys_92: -3.08309222e-13 + art_sys_93: 7.57258953e-15 + art_sys_94: -4.82523587e-11 + art_sys_95: 3.80460842e-07 + art_sys_96: -4.43209004e-13 + art_sys_97: 1.73592425e-09 + art_sys_98: -1.48191708e-07 + art_sys_99: 6.83272624e-14 + art_sys_100: -5.34281411e-11 + art_sys_101: -2.63174884e-06 + art_sys_102: 1.02098396e-13 + art_sys_103: -3.73868446e-10 + art_sys_104: 1.73131397e-06 + art_sys_105: -5.26839872e-14 + art_sys_106: -1.13202232e-05 + art_sys_107: 1.01461124e-12 + art_sys_108: -3.29939486e-10 + art_sys_109: 1.78547465e-09 + art_sys_110: -4.23480656e-14 + art_sys_111: 1.61438641e-05 + art_sys_112: -4.30510458e-10 + art_sys_113: -3.19735224e-14 + art_sys_114: -2.99096502e-05 + art_sys_115: -1.18177899e-11 + art_sys_116: 1.46777055e-09 + art_sys_117: -5.09006481e-16 + art_sys_118: 5.69153752e-05 + art_sys_119: -8.51707304e-13 + art_sys_120: 4.54233142e-06 + art_sys_121: 3.98940036e-11 + art_sys_122: 8.74649971e-06 + art_sys_123: 4.57417322e-11 + art_sys_124: -1.14285401e-05 + art_sys_125: 6.56197469e-06 + art_sys_126: 3.27001474e-10 + art_sys_127: 2.77403418e-06 + art_sys_128: -4.02618553e-11 + art_sys_129: 6.41549610e-12 + art_sys_130: -1.00011587e-10 + art_sys_131: -3.35262823e-11 + art_sys_132: 1.22147522e-06 + art_sys_133: -1.94788893e-11 + art_sys_134: 6.48503458e-10 + art_sys_135: 2.80529600e-07 + art_sys_136: 5.15684127e-10 + art_sys_137: -3.43240684e-08 + art_sys_138: -1.55615132e-10 + art_sys_139: -5.34928106e-10 + art_sys_140: -2.42210296e-16 + art_sys_141: 2.35971018e-10 + art_sys_142: 0.0 + art_sys_143: -7.09051654e-10 + art_sys_144: -2.24469068e-10 + art_sys_145: -1.03882803e-10 + art_sys_146: 2.70658347e-15 + art_sys_147: -9.60136321e-16 + art_sys_148: 6.20411217e-13 + art_sys_149: 9.77646260e-14 + art_sys_150: 1.12307564e-14 + art_sys_151: -5.20718937e-13 + art_sys_152: 2.13831767e-13 + art_sys_153: 1.42036719e-14 + art_sys_154: -1.17516629e-13 + art_sys_155: -1.79036547e-13 + art_sys_156: -6.60819284e-13 + art_sys_157: -5.72577088e-14 + art_sys_158: 0.0 + art_sys_159: -3.67945196e-11 + art_sys_160: -3.67945196e-11 + art_sys_161: 1.05257341e-12 + art_sys_162: -4.38233348e-25 + art_sys_163: -0.0 + art_sys_164: -2.80829802e-25 + art_sys_165: -2.70291790e-21 + art_sys_166: -1.77559679e-21 + art_sys_167: 1.57909498e-21 + art_sys_168: -4.69533119e-22 + art_sys_169: -1.96547558e-22 + art_sys_170: 5.01477678e-22 + art_sys_171: -6.36955859e-24 + art_sys_172: -1.94547733e-23 + art_sys_173: 6.01036825e-23 + art_sys_174: -1.77762938e-25 + art_sys_175: -5.03266683e-25 + art_sys_176: -2.51506953e-25 + art_sys_177: -6.16708766e-25 + art_sys_178: -2.08588168e-25 + art_sys_179: -2.19989231e-25 + art_sys_180: -4.21161401e-25 + art_sys_181: 6.08692770e-27 + art_sys_182: -7.32856243e-27 + art_sys_183: -2.82394867e-28 + art_sys_184: 1.19191532e-28 + art_sys_185: -8.19899779e-27 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -12170,191 +12170,191 @@ bins: RelativeStatFSR-: -6.57304439e-06 luminosity_uncertainty: 1.32941640e-04 uncorrelated_uncertainty: 5.11314000e-05 -- art_sys_1: -2.02778311e-55 - art_sys_2: 7.59606597e-44 +- art_sys_1: 2.11743875e-55 + art_sys_2: -1.21982124e-42 art_sys_3: 2.56917810e-43 art_sys_4: -3.89272708e-25 - art_sys_5: -1.21659319e-38 - art_sys_6: -2.41961807e-42 + art_sys_5: -1.21225386e-38 + art_sys_6: -4.63538072e-42 art_sys_7: -9.78770047e-23 - art_sys_8: 1.99427724e-37 + art_sys_8: 1.96672347e-37 art_sys_9: 3.35433203e-22 - art_sys_10: 5.02165989e-40 - art_sys_11: 1.96068559e-35 + art_sys_10: 2.63893991e-39 + art_sys_11: 1.72482943e-35 art_sys_12: 1.41766220e-21 - art_sys_13: 9.83912508e-35 - art_sys_14: 3.36523380e-19 - art_sys_15: -6.96161472e-32 - art_sys_16: 1.44616198e-18 - art_sys_17: 7.03914838e-35 - art_sys_18: 3.87433185e-31 - art_sys_19: -5.16005187e-18 - art_sys_20: 7.97947912e-34 - art_sys_21: -5.23394499e-30 - art_sys_22: 2.56359424e-33 + art_sys_13: 9.99468515e-38 + art_sys_14: -3.36523380e-19 + art_sys_15: 7.06091317e-32 + art_sys_16: -1.44616198e-18 + art_sys_17: 5.65732856e-35 + art_sys_18: 3.87149744e-31 + art_sys_19: 5.16005187e-18 + art_sys_20: 8.20374700e-34 + art_sys_21: -5.23148313e-30 + art_sys_22: 3.00640606e-33 art_sys_23: 1.05828150e-17 - art_sys_24: 8.98800775e-28 - art_sys_25: -6.04304873e-16 + art_sys_24: 8.98801794e-28 + art_sys_25: 6.04304873e-16 art_sys_26: -6.27652825e-16 - art_sys_27: 1.15709346e-24 - art_sys_28: -1.20057721e-26 - art_sys_29: -8.48208821e-21 - art_sys_30: -1.13988025e-14 - art_sys_31: 9.82276685e-26 - art_sys_32: 2.67316825e-18 - art_sys_33: 3.95226164e-14 - art_sys_34: -6.34139803e-13 - art_sys_35: 1.58423684e-23 - art_sys_36: -1.87566913e-15 - art_sys_37: 3.16998802e-16 - art_sys_38: 4.69649665e-16 - art_sys_39: 1.40428079e-16 - art_sys_40: 2.17564722e-16 - art_sys_41: -1.43198831e-16 - art_sys_42: -3.20051618e-17 - art_sys_43: 6.46034856e-17 - art_sys_44: -3.15243014e-17 - art_sys_45: 8.62746055e-17 - art_sys_46: 3.50019488e-17 - art_sys_47: 4.63913372e-20 - art_sys_48: 2.15581881e-12 - art_sys_49: 1.01247336e-19 - art_sys_50: 3.44053148e-17 - art_sys_51: -8.54283896e-17 - art_sys_52: 6.68105181e-21 - art_sys_53: 8.06837590e-12 - art_sys_54: -3.37256414e-19 - art_sys_55: -6.21976048e-11 - art_sys_56: -7.64545691e-21 - art_sys_57: -4.63144956e-17 - art_sys_58: 7.70683007e-18 - art_sys_59: -1.20510383e-10 - art_sys_60: 1.38627246e-15 - art_sys_61: 8.27805176e-18 - art_sys_62: 1.35661740e-19 - art_sys_63: 1.89594391e-14 - art_sys_64: -2.02147528e-14 - art_sys_65: 6.71594674e-15 - art_sys_66: -1.02719064e-14 - art_sys_67: -2.33169222e-15 - art_sys_68: -1.66844607e-16 - art_sys_69: 6.40317342e-16 - art_sys_70: -6.53664411e-16 - art_sys_71: 1.15269909e-16 - art_sys_72: 1.60820819e-17 - art_sys_73: 6.42907300e-17 - art_sys_74: 3.16139605e-17 - art_sys_75: 1.97102034e-18 - art_sys_76: -2.91955459e-15 - art_sys_77: -6.71890417e-15 - art_sys_78: 3.39536395e-14 - art_sys_79: 4.52947105e-18 - art_sys_80: -4.29684769e-15 - art_sys_81: -1.42285147e-16 - art_sys_82: 1.18367126e-13 - art_sys_83: -1.10067187e-15 - art_sys_84: 1.96004532e-16 - art_sys_85: -1.06110932e-16 - art_sys_86: 1.34715787e-16 - art_sys_87: 2.06184267e-15 - art_sys_88: 2.97184927e-13 - art_sys_89: -3.33198937e-17 - art_sys_90: 1.06806914e-11 - art_sys_91: 1.52076902e-09 - art_sys_92: 9.71099462e-17 - art_sys_93: 1.16879387e-17 - art_sys_94: -2.37368305e-12 - art_sys_95: -4.13671755e-12 - art_sys_96: 2.60068945e-08 - art_sys_97: -1.15922626e-14 - art_sys_98: -5.35434150e-12 - art_sys_99: 4.82930700e-08 - art_sys_100: -3.27171347e-11 - art_sys_101: 2.90430772e-07 - art_sys_102: 1.32854847e-09 - art_sys_103: 4.89496247e-14 - art_sys_104: -9.36976017e-08 - art_sys_105: -5.31687458e-13 - art_sys_106: -1.96266917e-06 - art_sys_107: -3.10848880e-10 - art_sys_108: -1.70283373e-12 - art_sys_109: 1.37874063e-13 - art_sys_110: -1.72358918e-09 - art_sys_111: -1.35163004e-06 - art_sys_112: 2.34405979e-10 - art_sys_113: -4.76433739e-11 - art_sys_114: 1.34350477e-14 - art_sys_115: 8.60623054e-06 - art_sys_116: 1.14279534e-10 - art_sys_117: 5.35216994e-14 - art_sys_118: 1.07830507e-05 - art_sys_119: 2.85410582e-10 - art_sys_120: -2.05601721e-09 - art_sys_121: -3.11179591e-14 - art_sys_122: -2.33932254e-05 - art_sys_123: -2.57932073e-10 - art_sys_124: -4.23669434e-05 - art_sys_125: -8.73668049e-15 - art_sys_126: -1.58474085e-09 - art_sys_127: 1.65246079e-11 - art_sys_128: -5.92452674e-06 - art_sys_129: 1.38361893e-14 - art_sys_130: -1.55256137e-10 - art_sys_131: -1.64609151e-13 - art_sys_132: -7.85836606e-06 - art_sys_133: 2.98631173e-10 - art_sys_134: -1.28486725e-09 - art_sys_135: 8.99651278e-06 - art_sys_136: 3.03556385e-14 - art_sys_137: -1.26213482e-11 - art_sys_138: 4.38431738e-06 - art_sys_139: 2.37734088e-10 - art_sys_140: -2.79879896e-14 - art_sys_141: 3.53959600e-11 - art_sys_142: 2.20012835e-06 - art_sys_143: 5.51928083e-11 - art_sys_144: -5.97082448e-13 - art_sys_145: 5.59118685e-07 - art_sys_146: -3.33188655e-11 - art_sys_147: 3.88755851e-13 - art_sys_148: 3.30492707e-14 - art_sys_149: -6.92788915e-08 - art_sys_150: 1.98322161e-09 - art_sys_151: 1.07544471e-10 - art_sys_152: -1.80358507e-12 - art_sys_153: 2.62392828e-10 - art_sys_154: -5.79803153e-12 - art_sys_155: -8.95566388e-13 - art_sys_156: 0.0 - art_sys_157: -8.23571454e-10 - art_sys_158: 0.0 - art_sys_159: 1.21034006e-10 - art_sys_160: -1.68485116e-11 - art_sys_161: -1.26773763e-11 - art_sys_162: -1.26773763e-11 - art_sys_163: -1.36931139e-11 - art_sys_164: -1.36931139e-11 - art_sys_165: 1.53491438e-25 - art_sys_166: -5.08955512e-26 - art_sys_167: -0.0 - art_sys_168: 5.94922837e-22 - art_sys_169: 2.59013417e-22 - art_sys_170: -6.65595926e-23 - art_sys_171: 1.30677460e-22 - art_sys_172: -3.78596359e-24 - art_sys_173: -2.82385321e-24 - art_sys_174: -2.34322492e-24 - art_sys_175: -4.81218340e-25 - art_sys_176: -3.59590043e-25 - art_sys_177: -9.62370567e-26 - art_sys_178: -1.33887257e-25 - art_sys_179: 2.59957828e-25 - art_sys_180: 3.13144379e-24 - art_sys_181: 2.35322314e-25 - art_sys_182: 5.36122226e-26 - art_sys_183: -5.88510504e-28 - art_sys_184: -1.98072572e-28 - art_sys_185: -4.23825696e-28 + art_sys_27: -8.85116132e-25 + art_sys_28: -1.19895331e-26 + art_sys_29: 8.55868032e-16 + art_sys_30: -3.96385129e-15 + art_sys_31: -1.29639593e-15 + art_sys_32: 1.41301940e-16 + art_sys_33: 1.51130247e-16 + art_sys_34: 8.39845497e-17 + art_sys_35: 4.64220546e-17 + art_sys_36: -6.19792295e-21 + art_sys_37: -1.13987923e-14 + art_sys_38: 6.89681742e-17 + art_sys_39: -9.81812494e-26 + art_sys_40: 1.80666861e-18 + art_sys_41: -3.95159161e-14 + art_sys_42: 4.64716475e-17 + art_sys_43: 6.34141709e-13 + art_sys_44: -1.15420520e-16 + art_sys_45: 2.60511581e-23 + art_sys_46: 1.62476309e-19 + art_sys_47: -1.87192014e-16 + art_sys_48: 2.15581869e-12 + art_sys_49: -1.59020890e-19 + art_sys_50: 9.52679959e-17 + art_sys_51: 1.69087841e-16 + art_sys_52: 8.06837664e-12 + art_sys_53: 6.78346106e-22 + art_sys_54: 2.21972499e-19 + art_sys_55: 6.21976052e-11 + art_sys_56: 5.75608633e-21 + art_sys_57: -9.78367656e-15 + art_sys_58: 1.21598392e-14 + art_sys_59: -2.11247245e-15 + art_sys_60: 2.18196246e-16 + art_sys_61: 2.60208699e-15 + art_sys_62: -2.10623188e-15 + art_sys_63: -6.98841420e-16 + art_sys_64: -4.03848762e-16 + art_sys_65: -1.45149262e-16 + art_sys_66: -8.10709647e-17 + art_sys_67: -2.08285193e-17 + art_sys_68: -2.70701247e-17 + art_sys_69: 2.93096374e-16 + art_sys_70: -1.20515877e-10 + art_sys_71: 1.49413967e-14 + art_sys_72: 1.68201282e-19 + art_sys_73: -6.74696279e-14 + art_sys_74: -1.74712121e-14 + art_sys_75: -1.28956989e-17 + art_sys_76: 1.09432210e-14 + art_sys_77: 1.65068667e-14 + art_sys_78: 1.67423911e-14 + art_sys_79: 9.82253943e-18 + art_sys_80: -5.66151262e-13 + art_sys_81: -5.56113136e-15 + art_sys_82: -1.25782783e-15 + art_sys_83: -2.14162011e-16 + art_sys_84: -2.91360990e-16 + art_sys_85: 9.37546227e-16 + art_sys_86: 1.00766970e-17 + art_sys_87: -3.33203805e-12 + art_sys_88: 4.32042818e-13 + art_sys_89: 4.18618317e-13 + art_sys_90: -1.52046241e-09 + art_sys_91: -2.60075961e-08 + art_sys_92: 8.32705375e-11 + art_sys_93: -1.34056972e-15 + art_sys_94: -1.60881020e-10 + art_sys_95: 4.82912651e-08 + art_sys_96: 9.20257278e-13 + art_sys_97: 3.81495392e-10 + art_sys_98: 2.90427852e-07 + art_sys_99: -1.43157899e-13 + art_sys_100: 1.80255937e-10 + art_sys_101: -9.36119633e-08 + art_sys_102: -2.15645446e-13 + art_sys_103: 5.66973671e-10 + art_sys_104: 1.96272728e-06 + art_sys_105: 1.12838299e-13 + art_sys_106: 1.35179831e-06 + art_sys_107: 3.44929498e-12 + art_sys_108: 7.05864940e-10 + art_sys_109: 1.36965446e-09 + art_sys_110: 9.06769268e-14 + art_sys_111: 8.60861156e-06 + art_sys_112: 8.67249737e-10 + art_sys_113: 6.84702323e-14 + art_sys_114: 1.07661953e-05 + art_sys_115: 2.35370452e-11 + art_sys_116: -3.74680929e-09 + art_sys_117: 1.09440127e-15 + art_sys_118: 2.33968160e-05 + art_sys_119: 2.02641381e-12 + art_sys_120: 4.23608203e-05 + art_sys_121: -1.45319246e-10 + art_sys_122: -5.91268109e-06 + art_sys_123: -9.67125708e-11 + art_sys_124: 7.86421799e-06 + art_sys_125: -8.98666063e-06 + art_sys_126: -6.81047599e-10 + art_sys_127: -4.38525437e-06 + art_sys_128: 8.54464664e-11 + art_sys_129: -1.37877893e-11 + art_sys_130: 2.13507163e-10 + art_sys_131: 6.99699866e-11 + art_sys_132: -2.19375359e-06 + art_sys_133: 5.72829754e-11 + art_sys_134: -1.28715745e-09 + art_sys_135: -5.65512107e-07 + art_sys_136: -1.04778457e-09 + art_sys_137: 7.31874710e-08 + art_sys_138: 3.30542470e-10 + art_sys_139: 1.13053981e-09 + art_sys_140: -1.15579613e-13 + art_sys_141: -4.92685026e-10 + art_sys_142: -0.0 + art_sys_143: 1.43210951e-09 + art_sys_144: 4.63520649e-10 + art_sys_145: 2.13115709e-10 + art_sys_146: -5.80534177e-15 + art_sys_147: 2.03146166e-15 + art_sys_148: -1.34586230e-12 + art_sys_149: -2.08705968e-13 + art_sys_150: -2.41648490e-14 + art_sys_151: 1.11493822e-12 + art_sys_152: -4.03056412e-13 + art_sys_153: -2.92118883e-14 + art_sys_154: 2.56807470e-13 + art_sys_155: 3.76980967e-13 + art_sys_156: 1.38516415e-12 + art_sys_157: 1.14102884e-13 + art_sys_158: -0.0 + art_sys_159: 7.92386934e-11 + art_sys_160: 7.92386934e-11 + art_sys_161: -2.27421619e-12 + art_sys_162: 9.44975593e-25 + art_sys_163: 0.0 + art_sys_164: 6.04983894e-25 + art_sys_165: 5.78642229e-21 + art_sys_166: 3.79937525e-21 + art_sys_167: -3.35978532e-21 + art_sys_168: 1.00515811e-21 + art_sys_169: 4.21444510e-22 + art_sys_170: -1.07092363e-21 + art_sys_171: 1.16479693e-23 + art_sys_172: 4.16398084e-23 + art_sys_173: -1.28695500e-22 + art_sys_174: 3.69105257e-25 + art_sys_175: 1.07774960e-24 + art_sys_176: 5.38349689e-25 + art_sys_177: 1.32069982e-24 + art_sys_178: 4.38679316e-25 + art_sys_179: 4.70875367e-25 + art_sys_180: 9.21531300e-25 + art_sys_181: -1.30369507e-26 + art_sys_182: 1.56943320e-26 + art_sys_183: 5.89164613e-28 + art_sys_184: -2.45265057e-28 + art_sys_185: 1.82402561e-26 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -12461,191 +12461,191 @@ bins: RelativeStatFSR-: -4.07512454e-06 luminosity_uncertainty: 7.79201800e-05 uncorrelated_uncertainty: 2.99693000e-05 -- art_sys_1: 1.68665635e-56 - art_sys_2: -6.35749044e-45 - art_sys_3: 2.63923043e-45 +- art_sys_1: -1.78266687e-56 + art_sys_2: 1.02092343e-43 + art_sys_3: 2.63923046e-45 art_sys_4: 3.25799893e-26 - art_sys_5: 4.17628714e-41 - art_sys_6: 2.07026289e-43 + art_sys_5: 3.81376443e-41 + art_sys_6: 3.94337421e-43 art_sys_7: -3.90328855e-25 - art_sys_8: -1.04123750e-38 + art_sys_8: -1.04270252e-38 art_sys_9: -1.34819129e-23 - art_sys_10: 3.49683820e-41 - art_sys_11: 6.41570376e-37 + art_sys_10: -8.51969307e-41 + art_sys_11: 4.48792714e-37 art_sys_12: 1.89777820e-22 - art_sys_13: 8.03207815e-36 - art_sys_14: 2.74707867e-20 - art_sys_15: -8.87206073e-33 - art_sys_16: 1.05843179e-19 - art_sys_17: 5.40114671e-36 - art_sys_18: 2.76584497e-31 - art_sys_19: -4.09513788e-19 - art_sys_20: 6.87118110e-35 - art_sys_21: -3.90358456e-30 - art_sys_22: 2.41199333e-34 + art_sys_13: 5.02999662e-39 + art_sys_14: -2.74707867e-20 + art_sys_15: 8.94474288e-33 + art_sys_16: -1.05843179e-19 + art_sys_17: 4.36352606e-36 + art_sys_18: 2.76559957e-31 + art_sys_19: 4.09513788e-19 + art_sys_20: 6.92542977e-35 + art_sys_21: -3.90338960e-30 + art_sys_22: 2.59361910e-34 art_sys_23: 9.18080202e-19 - art_sys_24: 1.13142624e-28 - art_sys_25: -7.73775006e-17 + art_sys_24: 1.13142704e-28 + art_sys_25: 7.73775006e-17 art_sys_26: -6.85140235e-17 - art_sys_27: -2.70339781e-26 - art_sys_28: -1.68363487e-27 - art_sys_29: -4.43911619e-23 - art_sys_30: -1.63216931e-15 - art_sys_31: 2.63038486e-26 - art_sys_32: -1.80353468e-20 - art_sys_33: 1.21755434e-16 - art_sys_34: -8.28481677e-14 - art_sys_35: 2.45381581e-24 - art_sys_36: 4.49510318e-15 - art_sys_37: 3.57583491e-15 - art_sys_38: -3.68512224e-16 - art_sys_39: 6.91581766e-16 - art_sys_40: 1.28073501e-16 - art_sys_41: -2.38603050e-17 - art_sys_42: 1.70043824e-16 - art_sys_43: -3.78290875e-17 - art_sys_44: 1.51012280e-17 - art_sys_45: 1.17309079e-16 - art_sys_46: 2.26481548e-16 - art_sys_47: 1.90463226e-19 - art_sys_48: 3.77535906e-13 - art_sys_49: -1.02394127e-19 - art_sys_50: 9.80015713e-17 - art_sys_51: -1.84818540e-16 - art_sys_52: 1.21086051e-21 - art_sys_53: -9.00441273e-13 - art_sys_54: -8.73215315e-19 - art_sys_55: -6.09620567e-12 - art_sys_56: 2.51433553e-22 - art_sys_57: -2.26755989e-16 - art_sys_58: 8.16634990e-17 - art_sys_59: -1.88646565e-11 - art_sys_60: -2.50384351e-16 - art_sys_61: -6.10646287e-17 - art_sys_62: -3.19473037e-20 - art_sys_63: 2.02703839e-15 - art_sys_64: 1.90370556e-14 - art_sys_65: 2.27980475e-15 - art_sys_66: 2.66763792e-15 - art_sys_67: -2.33338816e-15 - art_sys_68: 8.49919599e-17 - art_sys_69: 3.00858794e-16 - art_sys_70: 8.43425313e-16 - art_sys_71: 1.76413960e-16 - art_sys_72: -3.86079454e-17 - art_sys_73: 5.11205996e-18 - art_sys_74: 6.02017603e-17 - art_sys_75: 7.70892907e-18 - art_sys_76: 2.98370993e-14 - art_sys_77: 4.26543944e-14 - art_sys_78: 5.31710497e-15 - art_sys_79: 1.74616821e-18 - art_sys_80: -1.84204565e-15 - art_sys_81: -3.20348944e-17 - art_sys_82: 4.77974991e-14 - art_sys_83: 7.02511448e-16 - art_sys_84: 6.18918653e-16 - art_sys_85: 9.10262126e-17 - art_sys_86: 2.39139887e-16 - art_sys_87: 7.17586011e-17 - art_sys_88: 8.86594050e-14 - art_sys_89: 1.19302430e-16 - art_sys_90: -3.75731246e-12 - art_sys_91: -1.94454117e-09 - art_sys_92: 1.03383025e-17 - art_sys_93: 3.73455718e-17 - art_sys_94: 2.08810246e-12 - art_sys_95: -6.33577000e-12 - art_sys_96: 4.48055595e-09 - art_sys_97: -1.91386981e-15 - art_sys_98: -6.04370697e-12 - art_sys_99: -1.73835603e-08 - art_sys_100: -1.30156571e-11 - art_sys_101: 4.59617862e-08 - art_sys_102: 3.85280791e-10 - art_sys_103: -1.92952830e-14 - art_sys_104: 2.08129979e-07 - art_sys_105: 1.43562496e-12 - art_sys_106: -5.25132575e-08 - art_sys_107: -7.10208684e-10 - art_sys_108: 3.49648453e-12 - art_sys_109: -2.88862132e-13 - art_sys_110: 1.39541752e-09 - art_sys_111: -1.45028760e-06 - art_sys_112: 4.60135432e-10 - art_sys_113: -5.12057685e-11 - art_sys_114: -2.77556398e-14 - art_sys_115: -1.22908755e-06 - art_sys_116: 4.38371127e-10 - art_sys_117: -1.13514619e-13 - art_sys_118: 6.63483988e-06 - art_sys_119: -1.85100099e-10 - art_sys_120: 2.79234775e-09 - art_sys_121: 6.59788579e-14 - art_sys_122: 7.57633746e-06 - art_sys_123: 4.36236360e-10 - art_sys_124: -1.62625627e-05 - art_sys_125: 1.84847954e-14 - art_sys_126: 8.31193673e-10 - art_sys_127: -3.43543444e-11 - art_sys_128: -3.14320923e-05 - art_sys_129: -2.91633416e-14 - art_sys_130: 3.17744244e-10 - art_sys_131: 3.47386060e-13 - art_sys_132: 6.48414669e-06 - art_sys_133: -6.10117638e-10 - art_sys_134: 2.52764772e-09 - art_sys_135: -6.64484647e-06 - art_sys_136: -6.02369201e-14 - art_sys_137: 2.47373637e-11 - art_sys_138: -6.44857919e-06 - art_sys_139: -4.83448015e-10 - art_sys_140: 5.84471514e-14 - art_sys_141: -5.14165200e-11 - art_sys_142: -3.55676051e-06 - art_sys_143: -1.03435675e-10 - art_sys_144: 8.46095194e-13 - art_sys_145: -1.08023294e-06 - art_sys_146: 6.35147320e-11 - art_sys_147: -7.53711732e-13 - art_sys_148: -1.07729804e-13 - art_sys_149: 1.45519146e-07 - art_sys_150: -4.15571509e-09 - art_sys_151: -2.29338454e-10 - art_sys_152: 3.72123638e-12 - art_sys_153: -5.43621476e-10 - art_sys_154: 2.52503730e-12 - art_sys_155: 1.76892986e-12 - art_sys_156: -0.0 - art_sys_157: 1.81044241e-09 - art_sys_158: -0.0 - art_sys_159: -2.56847090e-10 - art_sys_160: 3.67224370e-11 - art_sys_161: 2.57674238e-11 - art_sys_162: 2.57674238e-11 - art_sys_163: 2.86527665e-11 - art_sys_164: 2.86527665e-11 - art_sys_165: -3.19935361e-25 - art_sys_166: 1.06016046e-25 - art_sys_167: 0.0 - art_sys_168: -1.38910425e-21 - art_sys_169: -5.48683882e-22 - art_sys_170: 1.46589626e-22 - art_sys_171: -2.74037119e-22 - art_sys_172: 8.02097383e-24 - art_sys_173: 6.00965066e-24 - art_sys_174: 4.96869482e-24 - art_sys_175: 1.01973015e-24 - art_sys_176: 7.63704862e-25 - art_sys_177: 2.04010517e-25 - art_sys_178: 2.82039542e-25 - art_sys_179: -4.95746624e-25 - art_sys_180: -6.62154017e-24 - art_sys_181: -4.99143308e-25 - art_sys_182: -1.13643917e-25 - art_sys_183: 1.25755216e-27 - art_sys_184: 3.12721104e-28 - art_sys_185: 7.86480075e-28 + art_sys_27: 2.21474646e-26 + art_sys_28: -1.68132529e-27 + art_sys_29: 7.84187056e-16 + art_sys_30: 6.42936787e-16 + art_sys_31: 2.05835414e-15 + art_sys_32: -1.61569146e-15 + art_sys_33: 4.45740792e-17 + art_sys_34: -1.31821686e-16 + art_sys_35: 1.30286711e-16 + art_sys_36: -1.31495585e-22 + art_sys_37: -1.63216980e-15 + art_sys_38: 3.17416490e-17 + art_sys_39: -2.62971123e-26 + art_sys_40: 1.13392475e-19 + art_sys_41: -1.24001849e-16 + art_sys_42: -1.61185533e-17 + art_sys_43: 8.28636359e-14 + art_sys_44: -7.94007273e-17 + art_sys_45: 3.81142590e-24 + art_sys_46: -4.08718188e-19 + art_sys_47: 7.56266323e-17 + art_sys_48: 3.77534757e-13 + art_sys_49: 1.79775616e-19 + art_sys_50: -5.23720396e-17 + art_sys_51: -2.64632005e-18 + art_sys_52: -9.00440458e-13 + art_sys_53: 7.86681719e-23 + art_sys_54: 6.20854544e-19 + art_sys_55: 6.09620565e-12 + art_sys_56: -1.77796294e-22 + art_sys_57: 3.07977000e-14 + art_sys_58: -1.45238241e-14 + art_sys_59: -7.47312922e-15 + art_sys_60: -3.78642011e-17 + art_sys_61: -1.62857375e-15 + art_sys_62: -4.13550684e-16 + art_sys_63: -8.48951054e-17 + art_sys_64: -4.10181510e-16 + art_sys_65: -2.96169813e-17 + art_sys_66: 1.08407437e-17 + art_sys_67: -1.30255892e-17 + art_sys_68: -1.09423258e-16 + art_sys_69: -4.01494480e-16 + art_sys_70: -1.88636617e-11 + art_sys_71: -2.72577989e-15 + art_sys_72: -5.58836703e-21 + art_sys_73: -9.29443474e-15 + art_sys_74: 4.26867519e-15 + art_sys_75: 4.56050051e-17 + art_sys_76: -2.69885224e-14 + art_sys_77: -2.54974299e-14 + art_sys_78: 1.72921327e-14 + art_sys_79: 1.09306808e-17 + art_sys_80: -7.83855409e-15 + art_sys_81: 4.32340051e-15 + art_sys_82: -9.14268462e-16 + art_sys_83: -1.16752456e-15 + art_sys_84: -6.87775808e-17 + art_sys_85: 3.66877720e-16 + art_sys_86: -2.50378198e-16 + art_sys_87: 1.03658672e-12 + art_sys_88: -9.74856578e-13 + art_sys_89: -1.08346316e-12 + art_sys_90: 1.94456663e-09 + art_sys_91: -4.48060200e-09 + art_sys_92: 1.14934514e-11 + art_sys_93: -5.53662785e-16 + art_sys_94: -1.16477330e-11 + art_sys_95: -1.73835946e-08 + art_sys_96: -1.85795888e-12 + art_sys_97: -3.11531242e-10 + art_sys_98: 4.59608303e-08 + art_sys_99: -2.23230893e-14 + art_sys_100: 1.34246015e-10 + art_sys_101: 2.08089245e-07 + art_sys_102: 4.44273745e-13 + art_sys_103: 1.40412002e-09 + art_sys_104: 5.25924773e-08 + art_sys_105: -2.59131675e-13 + art_sys_106: 1.45056441e-06 + art_sys_107: 2.61071055e-13 + art_sys_108: -5.90911534e-10 + art_sys_109: -4.52382740e-10 + art_sys_110: -2.07807167e-13 + art_sys_111: -1.23388757e-06 + art_sys_112: -1.71238767e-09 + art_sys_113: -1.56929694e-13 + art_sys_114: 6.64510482e-06 + art_sys_115: -4.48698025e-11 + art_sys_116: -8.88975958e-10 + art_sys_117: -2.51205472e-15 + art_sys_118: -7.57352872e-06 + art_sys_119: -4.72685387e-12 + art_sys_120: 1.62583892e-05 + art_sys_121: 2.45161738e-10 + art_sys_122: -3.14451349e-05 + art_sys_123: 1.99949736e-10 + art_sys_124: -6.50506133e-06 + art_sys_125: 6.63758917e-06 + art_sys_126: 1.41406388e-09 + art_sys_127: 6.45064578e-06 + art_sys_128: -1.81049369e-10 + art_sys_129: 3.13149294e-11 + art_sys_130: -4.49117817e-10 + art_sys_131: -1.40723939e-10 + art_sys_132: 3.54644417e-06 + art_sys_133: -1.56368415e-10 + art_sys_134: 2.44596106e-09 + art_sys_135: 1.09162952e-06 + art_sys_136: 2.05701641e-09 + art_sys_137: -1.53239866e-07 + art_sys_138: -6.91764729e-10 + art_sys_139: -2.34782167e-09 + art_sys_140: -1.23795313e-14 + art_sys_141: 9.72563630e-10 + art_sys_142: 0.0 + art_sys_143: -2.80201739e-09 + art_sys_144: -9.58525373e-10 + art_sys_145: -3.85513407e-10 + art_sys_146: 1.34708442e-14 + art_sys_147: -4.87706859e-15 + art_sys_148: 3.05654356e-12 + art_sys_149: 4.75071786e-13 + art_sys_150: 5.84642629e-14 + art_sys_151: -2.56356537e-12 + art_sys_152: 7.18316266e-13 + art_sys_153: 5.94373462e-14 + art_sys_154: -5.74232064e-13 + art_sys_155: -7.36132374e-13 + art_sys_156: -2.79035916e-12 + art_sys_157: -1.86613726e-13 + art_sys_158: 0.0 + art_sys_159: -1.69892183e-10 + art_sys_160: -1.69892183e-10 + art_sys_161: 4.69233840e-12 + art_sys_162: -1.95871884e-24 + art_sys_163: -0.0 + art_sys_164: -1.25660081e-24 + art_sys_165: -1.32368416e-20 + art_sys_166: -8.65533661e-21 + art_sys_167: 7.75767168e-21 + art_sys_168: -2.30573916e-21 + art_sys_169: -9.77077509e-22 + art_sys_170: 2.44366739e-21 + art_sys_171: -2.46677611e-23 + art_sys_172: -9.55228979e-23 + art_sys_173: 2.95051556e-22 + art_sys_174: -7.08898128e-25 + art_sys_175: -2.47866518e-24 + art_sys_176: -1.22142608e-24 + art_sys_177: -3.02943486e-24 + art_sys_178: -1.00380310e-24 + art_sys_179: -1.07760262e-24 + art_sys_180: -2.09924528e-24 + art_sys_181: 3.00272675e-26 + art_sys_182: -3.60206304e-26 + art_sys_183: -1.29626409e-27 + art_sys_184: 5.10376339e-28 + art_sys_185: -3.93014746e-26 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -12752,191 +12752,191 @@ bins: RelativeStatFSR-: -2.52378817e-06 luminosity_uncertainty: 4.56461200e-05 uncorrelated_uncertainty: 1.75562000e-05 -- art_sys_1: -1.07941213e-58 - art_sys_2: 4.13586332e-47 +- art_sys_1: 1.17755465e-58 + art_sys_2: -6.64161309e-46 art_sys_3: -3.67004134e-46 art_sys_4: -2.11948986e-28 - art_sys_5: 7.17887596e-41 - art_sys_6: -1.51551414e-45 + art_sys_5: 7.18122080e-41 + art_sys_6: -2.74203220e-45 art_sys_7: 4.93733653e-25 - art_sys_8: -2.84776820e-39 + art_sys_8: -2.83431259e-39 art_sys_9: -4.15004698e-24 - art_sys_10: 2.93170556e-42 - art_sys_11: 2.02022206e-38 + art_sys_10: -2.97956134e-41 + art_sys_11: 4.42797513e-39 art_sys_12: 1.91675083e-23 - art_sys_13: 6.56128238e-37 - art_sys_14: 2.24247519e-21 - art_sys_15: -7.93865670e-34 - art_sys_16: 3.34556484e-21 - art_sys_17: 2.66138268e-37 - art_sys_18: 5.30080455e-32 - art_sys_19: -2.39484535e-20 - art_sys_20: 4.62640002e-36 - art_sys_21: -9.83888539e-31 - art_sys_22: 1.99830439e-35 + art_sys_13: -1.84265401e-40 + art_sys_14: -2.24247519e-21 + art_sys_15: 7.96356564e-34 + art_sys_16: -3.34556484e-21 + art_sys_17: 2.21880593e-37 + art_sys_18: 5.30059691e-32 + art_sys_19: 2.39484535e-20 + art_sys_20: 4.21368711e-36 + art_sys_21: -9.83877549e-31 + art_sys_22: 2.01181118e-35 art_sys_23: 6.00461090e-20 - art_sys_24: -9.23071620e-30 - art_sys_25: -1.07388360e-17 + art_sys_24: -9.23071000e-30 + art_sys_25: 1.07388360e-17 art_sys_26: 1.15988749e-17 - art_sys_27: -1.12399481e-27 - art_sys_28: -1.08215288e-28 - art_sys_29: -1.79714562e-24 - art_sys_30: -1.09334295e-16 - art_sys_31: 2.73465345e-27 - art_sys_32: 2.89229645e-21 - art_sys_33: -4.45291210e-16 - art_sys_34: -4.23616621e-15 - art_sys_35: 1.00943812e-25 - art_sys_36: -4.65310524e-16 - art_sys_37: 1.50626841e-15 - art_sys_38: -1.56839438e-16 - art_sys_39: -5.50378877e-18 - art_sys_40: 3.36004375e-17 - art_sys_41: 4.27501901e-17 - art_sys_42: 5.41637591e-17 - art_sys_43: 2.64106308e-18 - art_sys_44: -2.50992274e-17 - art_sys_45: 8.10888032e-17 - art_sys_46: 1.01120516e-16 - art_sys_47: 1.64409243e-19 - art_sys_48: 2.09839018e-14 - art_sys_49: -8.19379183e-20 - art_sys_50: 5.13778382e-17 - art_sys_51: -1.01270770e-16 - art_sys_52: 7.66639080e-23 - art_sys_53: -3.91568575e-13 - art_sys_54: -2.53629345e-19 - art_sys_55: 7.77173890e-13 - art_sys_56: 4.11910692e-22 - art_sys_57: -1.48036971e-16 - art_sys_58: 6.21770718e-17 - art_sys_59: 9.64185387e-13 - art_sys_60: -1.03883625e-16 - art_sys_61: -4.88003194e-17 - art_sys_62: -1.30759653e-20 - art_sys_63: -7.76656074e-16 - art_sys_64: 2.18270307e-14 - art_sys_65: -4.31677085e-15 - art_sys_66: 2.56444465e-14 - art_sys_67: 1.66046144e-15 - art_sys_68: 4.29413545e-16 - art_sys_69: -5.45952394e-16 - art_sys_70: -4.17511258e-16 - art_sys_71: 3.10994279e-16 - art_sys_72: -1.87103034e-17 - art_sys_73: -1.97509768e-17 - art_sys_74: 4.91681214e-17 - art_sys_75: -6.02880330e-18 - art_sys_76: -1.09189631e-14 - art_sys_77: -3.45701307e-14 - art_sys_78: 4.49079068e-15 - art_sys_79: 1.73048721e-18 - art_sys_80: 1.93410492e-15 - art_sys_81: -3.82745780e-18 - art_sys_82: 5.24272669e-16 - art_sys_83: -7.26195210e-16 - art_sys_84: 1.69274029e-16 - art_sys_85: -5.44053355e-16 - art_sys_86: -4.69604867e-16 - art_sys_87: -1.61081190e-16 - art_sys_88: -2.89892599e-14 - art_sys_89: -4.70635299e-17 - art_sys_90: -2.19749350e-12 - art_sys_91: -3.20219673e-10 - art_sys_92: -8.80674383e-17 - art_sys_93: 1.47318538e-17 - art_sys_94: 6.36177836e-12 - art_sys_95: -3.97760973e-13 - art_sys_96: -7.42885166e-10 - art_sys_97: 3.39904653e-16 - art_sys_98: -1.68218675e-13 - art_sys_99: -4.69500914e-09 - art_sys_100: 3.90155297e-12 - art_sys_101: -1.21740154e-08 - art_sys_102: -2.18949843e-10 - art_sys_103: -5.54394559e-15 - art_sys_104: 3.22224905e-08 - art_sys_105: -3.29360732e-12 - art_sys_106: 1.55002978e-07 - art_sys_107: 4.24011702e-13 - art_sys_108: -6.66748503e-12 - art_sys_109: 5.67883354e-13 - art_sys_110: 2.83096847e-09 - art_sys_111: -3.58756900e-08 - art_sys_112: 9.76490022e-11 - art_sys_113: -1.27389758e-12 - art_sys_114: 5.34139395e-14 - art_sys_115: -1.10761228e-06 - art_sys_116: 1.49358437e-10 - art_sys_117: 2.27257862e-13 - art_sys_118: -6.88456912e-07 - art_sys_119: -2.83527265e-10 - art_sys_120: 6.56766095e-09 - art_sys_121: -1.32097185e-13 - art_sys_122: 4.75817337e-06 - art_sys_123: -8.08603319e-10 - art_sys_124: 5.75377762e-06 - art_sys_125: -3.69125539e-14 - art_sys_126: -1.24426656e-09 - art_sys_127: 6.68458888e-11 - art_sys_128: -1.07225494e-05 - art_sys_129: 5.83500245e-14 - art_sys_130: -6.04405867e-10 - art_sys_131: -6.95829712e-13 - art_sys_132: 2.38074503e-05 - art_sys_133: 1.15729062e-09 - art_sys_134: -4.70796944e-09 - art_sys_135: 5.68675372e-06 - art_sys_136: 1.08653834e-13 - art_sys_137: -4.29117608e-11 - art_sys_138: 5.25042603e-06 - art_sys_139: 8.97109735e-10 - art_sys_140: -1.13814228e-13 - art_sys_141: 5.94362485e-11 - art_sys_142: 5.20344762e-06 - art_sys_143: 1.80285595e-10 - art_sys_144: -9.42174385e-13 - art_sys_145: 1.93759042e-06 - art_sys_146: -1.11713742e-10 - art_sys_147: 1.35607720e-12 - art_sys_148: 2.76122377e-13 - art_sys_149: -2.82921967e-07 - art_sys_150: 8.05751859e-09 - art_sys_151: 4.63412075e-10 - art_sys_152: -7.10492882e-12 - art_sys_153: 1.05093370e-09 - art_sys_154: 1.25062013e-12 - art_sys_155: -3.15787838e-12 - art_sys_156: 0.0 - art_sys_157: -3.86186613e-09 - art_sys_158: 0.0 - art_sys_159: 5.15107307e-10 - art_sys_160: -7.77085005e-11 - art_sys_161: -4.85667449e-11 - art_sys_162: -4.85667449e-11 - art_sys_163: -5.64130794e-11 - art_sys_164: -5.64130794e-11 - art_sys_165: 6.26349420e-25 - art_sys_166: -2.07355761e-25 - art_sys_167: -0.0 - art_sys_168: 2.65778023e-21 - art_sys_169: 1.09818299e-21 - art_sys_170: -3.11455266e-22 - art_sys_171: 5.54084668e-22 - art_sys_172: -1.58761332e-23 - art_sys_173: -1.21121630e-23 - art_sys_174: -9.95384220e-24 - art_sys_175: -2.04023522e-24 - art_sys_176: -1.53330808e-24 - art_sys_177: -4.08015068e-25 - art_sys_178: -5.61445668e-25 - art_sys_179: 8.28456963e-25 - art_sys_180: 1.32199100e-23 - art_sys_181: 1.00234763e-24 - art_sys_182: 2.27491233e-25 - art_sys_183: -2.54660281e-27 - art_sys_184: -3.19929369e-28 - art_sys_185: -1.34836228e-27 + art_sys_27: 1.11730006e-27 + art_sys_28: -1.08058910e-28 + art_sys_29: 6.33851565e-16 + art_sys_30: -3.43483022e-16 + art_sys_31: 1.20503573e-15 + art_sys_32: -4.53416734e-16 + art_sys_33: -3.39154835e-17 + art_sys_34: -2.94178419e-17 + art_sys_35: 1.48616157e-17 + art_sys_36: -1.79329476e-24 + art_sys_37: -1.09334295e-16 + art_sys_38: 3.76354375e-17 + art_sys_39: -2.73516522e-27 + art_sys_40: 3.12232591e-21 + art_sys_41: 4.45286502e-16 + art_sys_42: -5.10294282e-18 + art_sys_43: 4.23621083e-15 + art_sys_44: -1.36204966e-16 + art_sys_45: 1.70697268e-25 + art_sys_46: 2.03680399e-19 + art_sys_47: -1.14824934e-16 + art_sys_48: 2.09834953e-14 + art_sys_49: -3.98384281e-20 + art_sys_50: 4.95948659e-17 + art_sys_51: 1.29310482e-16 + art_sys_52: -3.91568168e-13 + art_sys_53: -4.88989919e-24 + art_sys_54: 2.00219708e-19 + art_sys_55: -7.77174004e-13 + art_sys_56: -2.79706609e-22 + art_sys_57: 4.37135599e-14 + art_sys_58: 1.00694383e-14 + art_sys_59: 1.90344696e-14 + art_sys_60: 1.89036686e-16 + art_sys_61: 5.01107193e-15 + art_sys_62: -1.15134095e-15 + art_sys_63: -7.97136816e-16 + art_sys_64: 3.24556146e-16 + art_sys_65: -1.66799241e-16 + art_sys_66: -6.82531038e-17 + art_sys_67: -4.89175125e-17 + art_sys_68: -9.19380867e-17 + art_sys_69: -1.25741375e-16 + art_sys_70: 9.64595228e-13 + art_sys_71: -1.11629161e-15 + art_sys_72: -1.96835406e-20 + art_sys_73: 3.19187472e-15 + art_sys_74: 1.43499131e-15 + art_sys_75: -3.30188247e-17 + art_sys_76: -2.89253439e-14 + art_sys_77: 1.06776124e-15 + art_sys_78: 1.52509817e-14 + art_sys_79: -1.60500251e-17 + art_sys_80: 3.25766944e-14 + art_sys_81: 4.15221422e-15 + art_sys_82: 6.07252916e-16 + art_sys_83: 3.12688359e-16 + art_sys_84: 5.06244007e-17 + art_sys_85: 2.27744453e-16 + art_sys_86: 1.08841689e-16 + art_sys_87: 2.43206006e-12 + art_sys_88: 1.96030296e-12 + art_sys_89: 1.59624911e-12 + art_sys_90: 3.20206271e-10 + art_sys_91: 7.42922000e-10 + art_sys_92: -9.49950245e-12 + art_sys_93: 2.74322320e-18 + art_sys_94: 1.96558537e-11 + art_sys_95: -4.69487842e-09 + art_sys_96: 3.47140228e-12 + art_sys_97: -9.47644470e-11 + art_sys_98: -1.21738129e-08 + art_sys_99: 6.07663982e-15 + art_sys_100: -1.52632476e-11 + art_sys_101: 3.22124531e-08 + art_sys_102: -8.49158317e-13 + art_sys_103: -1.76746502e-10 + art_sys_104: -1.55001126e-07 + art_sys_105: 5.74366839e-13 + art_sys_106: 3.58884961e-08 + art_sys_107: -2.49698571e-13 + art_sys_108: 1.51195669e-09 + art_sys_109: -3.27715264e-10 + art_sys_110: 4.59447797e-13 + art_sys_111: -1.10854282e-06 + art_sys_112: 3.01717010e-09 + art_sys_113: 3.46978377e-13 + art_sys_114: -6.84659301e-07 + art_sys_115: 7.97376036e-11 + art_sys_116: -6.36842892e-09 + art_sys_117: 5.56101862e-15 + art_sys_118: -4.75866258e-06 + art_sys_119: 1.06765446e-11 + art_sys_120: -5.75179199e-06 + art_sys_121: -6.29522343e-10 + art_sys_122: -1.07500635e-05 + art_sys_123: -3.84519799e-10 + art_sys_124: -2.38258492e-05 + art_sys_125: -5.69044733e-06 + art_sys_126: -2.49748706e-09 + art_sys_127: -5.25314743e-06 + art_sys_128: 3.59985925e-10 + art_sys_129: -6.85060009e-11 + art_sys_130: 8.79772351e-10 + art_sys_131: 2.53549083e-10 + art_sys_132: -5.19021732e-06 + art_sys_133: 3.64889536e-10 + art_sys_134: -4.33324923e-09 + art_sys_135: -1.95695830e-06 + art_sys_136: -3.76628439e-09 + art_sys_137: 2.96977511e-07 + art_sys_138: 1.34499310e-09 + art_sys_139: 4.52899139e-09 + art_sys_140: 7.86402365e-15 + art_sys_141: -1.73112592e-09 + art_sys_142: -0.0 + art_sys_143: 4.96580524e-09 + art_sys_144: 1.85209042e-09 + art_sys_145: 5.78280814e-10 + art_sys_146: -3.02377244e-14 + art_sys_147: 1.14033743e-14 + art_sys_148: -6.75558502e-12 + art_sys_149: -1.05200162e-12 + art_sys_150: -1.37567891e-13 + art_sys_151: 5.69357212e-12 + art_sys_152: -1.20542095e-12 + art_sys_153: -1.14237170e-13 + art_sys_154: 1.20472297e-12 + art_sys_155: 1.27348494e-12 + art_sys_156: 5.13927920e-12 + art_sys_157: 2.15275166e-13 + art_sys_158: -0.0 + art_sys_159: 3.42947051e-10 + art_sys_160: 3.42947051e-10 + art_sys_161: -8.92262038e-12 + art_sys_162: 3.75412325e-24 + art_sys_163: 0.0 + art_sys_164: 2.41701503e-24 + art_sys_165: 2.91993597e-20 + art_sys_166: 1.89945769e-20 + art_sys_167: -1.72402569e-20 + art_sys_168: 5.09814351e-21 + art_sys_169: 2.13994551e-21 + art_sys_170: -5.40576013e-21 + art_sys_171: 6.15303277e-23 + art_sys_172: 2.11351433e-22 + art_sys_173: -6.52648832e-22 + art_sys_174: 1.20125853e-24 + art_sys_175: 5.50443168e-24 + art_sys_176: 2.66825661e-24 + art_sys_177: 6.70494773e-24 + art_sys_178: 2.22034843e-24 + art_sys_179: 2.37616378e-24 + art_sys_180: 4.63110385e-24 + art_sys_181: -6.68723750e-26 + art_sys_182: 7.97883903e-26 + art_sys_183: 2.72266388e-27 + art_sys_184: -1.01651190e-27 + art_sys_185: 7.92737531e-26 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -13043,191 +13043,191 @@ bins: RelativeStatFSR-: -1.53302069e-06 luminosity_uncertainty: 2.62301000e-05 uncorrelated_uncertainty: 1.00885000e-05 -- art_sys_1: -3.39119703e-58 - art_sys_2: 1.27787507e-46 - art_sys_3: -1.82659239e-47 +- art_sys_1: 3.58224895e-58 + art_sys_2: -2.05208738e-45 + art_sys_3: -1.82659244e-47 art_sys_4: -6.54867769e-28 - art_sys_5: 9.56973580e-42 - art_sys_6: -4.15183921e-45 + art_sys_5: 9.64278131e-42 + art_sys_6: -7.90311758e-45 art_sys_7: 6.98133765e-26 - art_sys_8: -3.46803402e-40 + art_sys_8: -3.43837296e-40 art_sys_9: -5.26970765e-25 - art_sys_10: 4.31686491e-43 - art_sys_11: -1.68094982e-39 + art_sys_10: -3.53072032e-42 + art_sys_11: -2.57441440e-39 art_sys_12: 1.36237408e-24 - art_sys_13: 3.70183314e-38 - art_sys_14: 1.26202602e-22 - art_sys_15: -8.17880654e-35 - art_sys_16: -8.00814264e-22 - art_sys_17: -2.01256114e-38 - art_sys_18: 4.86422676e-33 - art_sys_19: 7.81666747e-22 - art_sys_20: -7.82462767e-38 - art_sys_21: -1.07124243e-31 - art_sys_22: 9.72091609e-38 + art_sys_13: -1.13062296e-40 + art_sys_14: -1.26202602e-22 + art_sys_15: 8.12756513e-35 + art_sys_16: 8.00814264e-22 + art_sys_17: -1.50758384e-38 + art_sys_18: 4.86414139e-33 + art_sys_19: -7.81666747e-22 + art_sys_20: -1.64902810e-37 + art_sys_21: -1.07124697e-31 + art_sys_22: 1.55938160e-38 art_sys_23: -1.77065450e-21 - art_sys_24: -5.59839887e-30 - art_sys_25: -9.97142670e-19 + art_sys_24: -5.59839906e-30 + art_sys_25: 9.97142670e-19 art_sys_26: 4.47820767e-18 - art_sys_27: 1.77351603e-27 - art_sys_28: 1.04366343e-29 - art_sys_29: -2.08255276e-26 - art_sys_30: 9.43836608e-18 - art_sys_31: -2.40091904e-28 - art_sys_32: 1.01222793e-22 - art_sys_33: 5.51847499e-17 - art_sys_34: 3.74950837e-16 - art_sys_35: -2.93328734e-26 - art_sys_36: 4.60147853e-15 - art_sys_37: -4.64628221e-15 - art_sys_38: 2.99829139e-15 - art_sys_39: -3.79901186e-16 - art_sys_40: -1.48502762e-16 - art_sys_41: -2.82054095e-16 - art_sys_42: -5.17987375e-17 - art_sys_43: -2.54201127e-17 - art_sys_44: 5.17216591e-17 - art_sys_45: -1.82833231e-16 - art_sys_46: -1.90573576e-16 - art_sys_47: 6.69000641e-18 - art_sys_48: -3.84095934e-15 - art_sys_49: -2.05862134e-20 - art_sys_50: -8.60614489e-17 - art_sys_51: 2.11190754e-16 - art_sys_52: -1.04163522e-23 - art_sys_53: -5.47503536e-14 - art_sys_54: -8.89451951e-20 - art_sys_55: 3.14764645e-13 - art_sys_56: 1.75627536e-22 - art_sys_57: 3.08896335e-16 - art_sys_58: -1.09719696e-16 - art_sys_59: 7.32722141e-13 - art_sys_60: -3.06764232e-18 - art_sys_61: 7.98286636e-17 - art_sys_62: 1.04999867e-20 - art_sys_63: -1.85150113e-16 - art_sys_64: 3.99271405e-14 - art_sys_65: 1.02399943e-14 - art_sys_66: 3.45228682e-15 - art_sys_67: 1.49486961e-15 - art_sys_68: -1.09817231e-15 - art_sys_69: -2.67371425e-16 - art_sys_70: -4.30604378e-16 - art_sys_71: 4.01358794e-16 - art_sys_72: 1.20638745e-18 - art_sys_73: -9.61927675e-19 - art_sys_74: -7.31777419e-17 - art_sys_75: 1.41968342e-17 - art_sys_76: -1.82828091e-14 - art_sys_77: -9.20659696e-15 - art_sys_78: 1.22325561e-14 - art_sys_79: -8.44362366e-18 - art_sys_80: 9.42726233e-16 - art_sys_81: -5.69285127e-18 - art_sys_82: -2.52048373e-15 - art_sys_83: 6.72908907e-16 - art_sys_84: 1.15889744e-15 - art_sys_85: -3.88066291e-16 - art_sys_86: -4.40744543e-16 - art_sys_87: -3.62461948e-17 - art_sys_88: -1.29779440e-14 - art_sys_89: 5.72675183e-17 - art_sys_90: 2.79379969e-13 - art_sys_91: 4.20880738e-11 - art_sys_92: -1.50461729e-17 - art_sys_93: -2.54737802e-17 - art_sys_94: 1.32234381e-12 - art_sys_95: 4.82998347e-13 - art_sys_96: -3.05041502e-10 - art_sys_97: 1.36714011e-16 - art_sys_98: 4.92032113e-13 - art_sys_99: 3.26627203e-10 - art_sys_100: 1.65204067e-12 - art_sys_101: -3.96655905e-09 - art_sys_102: -8.53672869e-11 - art_sys_103: 6.40009998e-16 - art_sys_104: -9.14836065e-09 - art_sys_105: 6.82184139e-12 - art_sys_106: 2.22373458e-08 - art_sys_107: 1.75560194e-10 - art_sys_108: 1.17801059e-11 - art_sys_109: -1.00313268e-12 - art_sys_110: 4.63561527e-10 - art_sys_111: 1.18461137e-07 - art_sys_112: -8.51839478e-11 - art_sys_113: 4.18176323e-12 - art_sys_114: -9.44882051e-14 - art_sys_115: 1.56416222e-09 - art_sys_116: -2.93536603e-10 - art_sys_117: -4.00711964e-13 - art_sys_118: -8.41041462e-07 - art_sys_119: 5.24460716e-10 - art_sys_120: 1.27800946e-09 - art_sys_121: 2.32900925e-13 - art_sys_122: -5.15377992e-07 - art_sys_123: 7.47153874e-10 - art_sys_124: 3.36162248e-06 - art_sys_125: 6.50386170e-14 - art_sys_126: -4.75788655e-09 - art_sys_127: -1.18287734e-10 - art_sys_128: 4.66345569e-06 - art_sys_129: -1.02916368e-13 - art_sys_130: 1.06199679e-09 - art_sys_131: 1.22675256e-12 - art_sys_132: 7.39886123e-06 - art_sys_133: -2.03661966e-09 - art_sys_134: 7.34755394e-09 - art_sys_135: 1.82267305e-05 - art_sys_136: -1.96285756e-13 - art_sys_137: 7.74967585e-11 - art_sys_138: -5.42738284e-06 - art_sys_139: -1.61535041e-09 - art_sys_140: 2.03878135e-13 - art_sys_141: -9.41500353e-12 - art_sys_142: -4.28129929e-06 - art_sys_143: -2.69065620e-10 - art_sys_144: -1.05221689e-13 - art_sys_145: -3.02714786e-06 - art_sys_146: 1.72936990e-10 - art_sys_147: -2.16035451e-12 - art_sys_148: -8.12059658e-13 - art_sys_149: 5.41389838e-07 - art_sys_150: -1.53843319e-08 - art_sys_151: -8.11975597e-10 - art_sys_152: 1.31981984e-11 - art_sys_153: -1.88835662e-09 - art_sys_154: -2.11769681e-13 - art_sys_155: 5.90130455e-12 - art_sys_156: -0.0 - art_sys_157: 6.57942924e-09 - art_sys_158: -0.0 - art_sys_159: -9.07392439e-10 - art_sys_160: 1.32481474e-10 - art_sys_161: 8.72777843e-11 - art_sys_162: 8.72777843e-11 - art_sys_163: 9.99201775e-11 - art_sys_164: 9.99201775e-11 - art_sys_165: -1.11147120e-24 - art_sys_166: 3.68070750e-25 - art_sys_167: 0.0 - art_sys_168: -5.12668760e-21 - art_sys_169: -1.94144420e-21 - art_sys_170: 4.88682091e-22 - art_sys_171: -9.74512505e-22 - art_sys_172: 2.82371429e-23 - art_sys_173: 2.13452394e-23 - art_sys_174: 1.75440693e-23 - art_sys_175: 3.59866931e-24 - art_sys_176: 2.69943568e-24 - art_sys_177: 7.20130555e-25 - art_sys_178: 9.89898076e-25 - art_sys_179: -1.59526516e-24 - art_sys_180: -2.33160610e-23 - art_sys_181: -1.76523495e-24 - art_sys_182: -4.01190907e-25 - art_sys_183: 4.48958213e-27 - art_sys_184: 4.92972267e-28 - art_sys_185: 1.99205634e-27 + art_sys_27: -1.76167128e-27 + art_sys_28: 1.04238119e-29 + art_sys_29: 1.19204085e-14 + art_sys_30: 5.38380654e-16 + art_sys_31: -5.11164731e-16 + art_sys_32: 1.79971580e-16 + art_sys_33: 2.16431391e-16 + art_sys_34: 5.35821677e-17 + art_sys_35: 6.51153433e-17 + art_sys_36: 1.62833435e-26 + art_sys_37: 9.43836621e-18 + art_sys_38: -1.43852690e-16 + art_sys_39: 2.40159820e-28 + art_sys_40: 7.03653902e-23 + art_sys_41: -5.51835154e-17 + art_sys_42: -1.07995015e-16 + art_sys_43: -3.74982633e-16 + art_sys_44: 2.88343471e-16 + art_sys_45: -3.60324717e-26 + art_sys_46: 2.60012778e-18 + art_sys_47: 1.44590598e-16 + art_sys_48: -3.84101167e-15 + art_sys_49: 1.23198147e-18 + art_sys_50: -1.06657387e-16 + art_sys_51: -2.45325870e-16 + art_sys_52: -5.47506524e-14 + art_sys_53: -2.37645526e-24 + art_sys_54: 3.34888190e-19 + art_sys_55: -3.14764792e-13 + art_sys_56: -9.40415010e-23 + art_sys_57: 8.36644845e-15 + art_sys_58: -1.12696763e-14 + art_sys_59: 5.91117995e-15 + art_sys_60: -3.00212007e-16 + art_sys_61: 4.49798427e-15 + art_sys_62: 2.25430707e-16 + art_sys_63: -1.27974855e-16 + art_sys_64: -6.07999124e-16 + art_sys_65: 5.17730388e-16 + art_sys_66: 9.98308069e-17 + art_sys_67: -1.01980298e-17 + art_sys_68: 1.42323621e-16 + art_sys_69: 6.24507120e-17 + art_sys_70: 7.32733804e-13 + art_sys_71: -3.13526472e-17 + art_sys_72: 2.16994713e-21 + art_sys_73: 8.22921198e-16 + art_sys_74: 7.11935243e-18 + art_sys_75: 8.52050987e-17 + art_sys_76: -9.08824864e-15 + art_sys_77: 3.48149916e-14 + art_sys_78: -2.93849022e-14 + art_sys_79: 5.11560861e-17 + art_sys_80: 3.12378363e-15 + art_sys_81: -1.83128507e-15 + art_sys_82: -4.49190112e-17 + art_sys_83: -3.94425281e-16 + art_sys_84: -3.34730838e-17 + art_sys_85: -2.69835592e-16 + art_sys_86: 1.52941867e-17 + art_sys_87: -1.28690523e-13 + art_sys_88: -2.26047884e-12 + art_sys_89: -5.21501716e-12 + art_sys_90: -4.20908239e-11 + art_sys_91: 3.05049063e-10 + art_sys_92: -2.26981615e-12 + art_sys_93: 2.33390595e-17 + art_sys_94: 3.10701727e-12 + art_sys_95: 3.25976578e-10 + art_sys_96: -6.08822158e-12 + art_sys_97: 3.25850571e-11 + art_sys_98: -3.97006302e-09 + art_sys_99: 1.93299533e-15 + art_sys_100: -2.66302585e-11 + art_sys_101: -9.29754782e-09 + art_sys_102: 1.52885126e-12 + art_sys_103: -4.79178153e-10 + art_sys_104: -2.20233960e-08 + art_sys_105: -9.74676248e-13 + art_sys_106: -1.17598283e-07 + art_sys_107: -4.61597177e-14 + art_sys_108: 1.15229004e-09 + art_sys_109: 5.93999248e-11 + art_sys_110: -7.80427630e-13 + art_sys_111: 2.16392087e-09 + art_sys_112: -5.07943971e-09 + art_sys_113: -5.89368761e-13 + art_sys_114: -8.41790449e-07 + art_sys_115: -1.21026183e-10 + art_sys_116: -3.66954491e-09 + art_sys_117: -9.43862533e-15 + art_sys_118: 5.15154227e-07 + art_sys_119: -2.40482557e-11 + art_sys_120: -3.36056142e-06 + art_sys_121: 3.43620821e-10 + art_sys_122: 4.65996609e-06 + art_sys_123: 6.90505610e-10 + art_sys_124: -7.39261486e-06 + art_sys_125: -1.82368730e-05 + art_sys_126: 4.59273726e-09 + art_sys_127: 5.42674983e-06 + art_sys_128: -6.38655113e-10 + art_sys_129: 1.16902738e-10 + art_sys_130: -1.58911098e-09 + art_sys_131: -4.80042498e-10 + art_sys_132: 4.26551002e-06 + art_sys_133: -8.45556810e-10 + art_sys_134: 6.69716632e-09 + art_sys_135: 3.05060554e-06 + art_sys_136: 6.06151158e-09 + art_sys_137: -5.64413248e-07 + art_sys_138: -2.50822159e-09 + art_sys_139: -8.32865482e-09 + art_sys_140: 1.77020914e-15 + art_sys_141: 3.24932507e-09 + art_sys_142: 0.0 + art_sys_143: -7.93575356e-09 + art_sys_144: -3.08151331e-09 + art_sys_145: -1.15349277e-09 + art_sys_146: 5.09113527e-14 + art_sys_147: -1.86772269e-14 + art_sys_148: 1.14822324e-11 + art_sys_149: 1.78832048e-12 + art_sys_150: 2.29283627e-13 + art_sys_151: -9.64313670e-12 + art_sys_152: 1.49496817e-12 + art_sys_153: 1.88162035e-13 + art_sys_154: -2.31145798e-12 + art_sys_155: -2.55517596e-12 + art_sys_156: -9.51977017e-12 + art_sys_157: -4.38032407e-13 + art_sys_158: 0.0 + art_sys_159: -6.46728874e-10 + art_sys_160: -6.46728874e-10 + art_sys_161: 1.80271268e-11 + art_sys_162: -7.47408284e-24 + art_sys_163: -0.0 + art_sys_164: -4.77929970e-24 + art_sys_165: -4.96745006e-20 + art_sys_166: -3.24208701e-20 + art_sys_167: 2.91801817e-20 + art_sys_168: -8.64475284e-21 + art_sys_169: -3.67321744e-21 + art_sys_170: 9.23671213e-21 + art_sys_171: -1.16309573e-22 + art_sys_172: -3.59141047e-22 + art_sys_173: 1.10836852e-21 + art_sys_174: -2.29511769e-24 + art_sys_175: -9.32387056e-24 + art_sys_176: -4.56804958e-24 + art_sys_177: -1.13814313e-23 + art_sys_178: -3.77151505e-24 + art_sys_179: -4.04190476e-24 + art_sys_180: -7.87357547e-24 + art_sys_181: 1.13113092e-25 + art_sys_182: -1.35358529e-25 + art_sys_183: -4.64642665e-27 + art_sys_184: 1.66703071e-27 + art_sys_185: -1.66062897e-25 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -13334,191 +13334,191 @@ bins: RelativeStatFSR-: -9.79673311e-07 luminosity_uncertainty: 1.58757820e-05 uncorrelated_uncertainty: 6.10607000e-06 -- art_sys_1: -5.35665515e-59 - art_sys_2: 2.01773537e-47 - art_sys_3: 1.31994668e-48 +- art_sys_1: 5.65425585e-59 + art_sys_2: -3.24019883e-46 + art_sys_3: 1.31994660e-48 art_sys_4: -1.03402116e-28 - art_sys_5: 8.80883348e-43 - art_sys_6: -6.54307162e-46 + art_sys_5: 8.92343641e-43 + art_sys_6: -1.24074600e-45 art_sys_7: 6.60632087e-27 - art_sys_8: -3.01426948e-41 + art_sys_8: -3.01743594e-41 art_sys_9: -4.82859348e-26 - art_sys_10: 4.16016510e-44 - art_sys_11: -3.93241115e-40 + art_sys_10: -3.16669320e-43 + art_sys_11: -3.51932768e-40 art_sys_12: 2.73981593e-26 - art_sys_13: -1.73132140e-39 - art_sys_14: -5.98149020e-24 - art_sys_15: -5.07144116e-36 - art_sys_16: -2.09855615e-22 - art_sys_17: -8.05947313e-39 - art_sys_18: 6.21163567e-34 - art_sys_19: 5.27543607e-22 - art_sys_20: -9.25151695e-38 - art_sys_21: -1.94228159e-32 - art_sys_22: -2.62798970e-37 + art_sys_13: -2.12377362e-41 + art_sys_14: 5.98149020e-24 + art_sys_15: 4.93474540e-36 + art_sys_16: 2.09855615e-22 + art_sys_17: -6.40756948e-39 + art_sys_18: 6.21179408e-34 + art_sys_19: -5.27543607e-22 + art_sys_20: -1.00576321e-37 + art_sys_21: -1.94230774e-32 + art_sys_22: -3.11810080e-37 art_sys_23: -1.34769808e-21 - art_sys_24: -9.62104182e-31 - art_sys_25: -1.15990795e-20 + art_sys_24: -9.62104312e-31 + art_sys_25: 1.15990795e-20 art_sys_26: 6.04713026e-19 - art_sys_27: 1.12192725e-28 - art_sys_28: 3.17165933e-30 - art_sys_29: -9.37627513e-27 - art_sys_30: 3.06958454e-18 - art_sys_31: -1.14920470e-28 - art_sys_32: 1.22918597e-24 - art_sys_33: 3.50528479e-17 - art_sys_34: 5.94750328e-17 - art_sys_35: -5.26617213e-27 - art_sys_36: -7.89707208e-15 - art_sys_37: 2.06627500e-15 - art_sys_38: -8.57979696e-16 - art_sys_39: 4.35289769e-17 - art_sys_40: -3.58652123e-16 - art_sys_41: 9.53863287e-17 - art_sys_42: -2.03073288e-18 - art_sys_43: -1.23361115e-16 - art_sys_44: 2.60916050e-17 - art_sys_45: -8.91329992e-19 - art_sys_46: 5.32477465e-17 - art_sys_47: 1.29029107e-18 - art_sys_48: -8.70894482e-16 - art_sys_49: 4.55159034e-21 - art_sys_50: 3.34793214e-17 - art_sys_51: 2.03422933e-17 - art_sys_52: -3.04809146e-24 - art_sys_53: -3.23423066e-15 - art_sys_54: 1.01421154e-18 - art_sys_55: 3.91214174e-14 - art_sys_56: -6.75087846e-24 - art_sys_57: -7.20457977e-17 - art_sys_58: 2.47820085e-17 - art_sys_59: 9.26470567e-14 - art_sys_60: 3.82153528e-18 - art_sys_61: -4.69390662e-17 - art_sys_62: -8.66232313e-22 - art_sys_63: 1.19305824e-17 - art_sys_64: -1.05800400e-13 - art_sys_65: -1.49091528e-14 - art_sys_66: -8.20730767e-15 - art_sys_67: -3.80620427e-15 - art_sys_68: 3.16315267e-16 - art_sys_69: 3.97434090e-16 - art_sys_70: -4.37951448e-16 - art_sys_71: 2.98821024e-16 - art_sys_72: 5.32806472e-17 - art_sys_73: -1.66315231e-18 - art_sys_74: 7.39357365e-17 - art_sys_75: -1.11000090e-17 - art_sys_76: 1.32908488e-14 - art_sys_77: 2.90691836e-14 - art_sys_78: -9.91527061e-17 - art_sys_79: -1.10157402e-17 - art_sys_80: -6.89321876e-16 - art_sys_81: -2.36993439e-18 - art_sys_82: -3.77734205e-16 - art_sys_83: 2.57859503e-16 - art_sys_84: 4.08926984e-16 - art_sys_85: -2.52113508e-16 - art_sys_86: -8.16485783e-17 - art_sys_87: 1.45077220e-17 - art_sys_88: 1.39901261e-15 - art_sys_89: -5.11745215e-17 - art_sys_90: 2.54671045e-13 - art_sys_91: 1.76404701e-11 - art_sys_92: 1.85900797e-17 - art_sys_93: 1.53788288e-17 - art_sys_94: -1.10487140e-12 - art_sys_95: 8.38837492e-14 - art_sys_96: -8.51518042e-12 - art_sys_97: 2.51912442e-18 - art_sys_98: 6.31928168e-14 - art_sys_99: 2.51426376e-10 - art_sys_100: -2.71091668e-13 - art_sys_101: 1.66919541e-10 - art_sys_102: 2.02952717e-11 - art_sys_103: 3.54954179e-16 - art_sys_104: -2.71852673e-09 - art_sys_105: -1.06164355e-11 - art_sys_106: -6.86919420e-09 - art_sys_107: 8.07466573e-12 - art_sys_108: -1.69297811e-11 - art_sys_109: 1.84835094e-12 - art_sys_110: -4.89407311e-10 - art_sys_111: 1.49928498e-08 - art_sys_112: -2.28954488e-11 - art_sys_113: 5.29768706e-13 - art_sys_114: 1.47509368e-13 - art_sys_115: 8.82942868e-08 - art_sys_116: -2.11268892e-10 - art_sys_117: 8.25764420e-13 - art_sys_118: -1.66798049e-08 - art_sys_119: 7.23923836e-11 - art_sys_120: -1.12569886e-09 - art_sys_121: -4.80222410e-13 - art_sys_122: -5.46246015e-07 - art_sys_123: -1.54917366e-09 - art_sys_124: -4.11376577e-07 - art_sys_125: -1.31833375e-13 - art_sys_126: -1.90864685e-09 - art_sys_127: 2.07280676e-10 - art_sys_128: 2.09308316e-06 - art_sys_129: 2.11823734e-13 - art_sys_130: -1.59225156e-09 - art_sys_131: -2.50658738e-12 - art_sys_132: -3.34962294e-06 - art_sys_133: 2.94850149e-09 - art_sys_134: -1.01315797e-08 - art_sys_135: 4.02159271e-06 - art_sys_136: 1.56101414e-13 - art_sys_137: -9.20800280e-12 - art_sys_138: -1.29053255e-05 - art_sys_139: 2.18199351e-09 - art_sys_140: -3.22721020e-13 - art_sys_141: -5.11192139e-13 - art_sys_142: 4.44298607e-06 - art_sys_143: 3.61667720e-10 - art_sys_144: 2.95543603e-12 - art_sys_145: 4.03474502e-06 - art_sys_146: -1.96546842e-10 - art_sys_147: 2.86414700e-12 - art_sys_148: 1.44887397e-12 - art_sys_149: -8.13535936e-07 - art_sys_150: 2.28415220e-08 - art_sys_151: 1.77320332e-09 - art_sys_152: -1.88488716e-11 - art_sys_153: 3.13593494e-09 - art_sys_154: -1.49088385e-13 - art_sys_155: -4.41853073e-12 - art_sys_156: 0.0 - art_sys_157: -1.80172912e-08 - art_sys_158: 0.0 - art_sys_159: 1.89712251e-09 - art_sys_160: -3.49534338e-10 - art_sys_161: -1.21334049e-10 - art_sys_162: -1.21334049e-10 - art_sys_163: -1.87656086e-10 - art_sys_164: -1.87656086e-10 - art_sys_165: 2.01758218e-24 - art_sys_166: -6.64220620e-25 - art_sys_167: -0.0 - art_sys_168: 1.13930648e-20 - art_sys_169: 3.99411099e-21 - art_sys_170: -1.15933504e-21 - art_sys_171: 2.01034923e-21 - art_sys_172: -5.25783567e-23 - art_sys_173: -4.41531311e-23 - art_sys_174: -3.64328426e-23 - art_sys_175: -7.42267397e-24 - art_sys_176: -5.67887603e-24 - art_sys_177: -1.48078020e-24 - art_sys_178: -1.99059163e-24 - art_sys_179: 1.14139526e-26 - art_sys_180: 4.75296019e-23 - art_sys_181: 3.70843348e-24 - art_sys_182: 8.29859793e-25 - art_sys_183: -9.88070000e-27 - art_sys_184: 1.18961426e-27 - art_sys_185: -2.28767335e-27 + art_sys_27: -1.07754100e-28 + art_sys_28: 3.16733355e-30 + art_sys_29: -4.49033794e-15 + art_sys_30: -3.70438120e-15 + art_sys_31: -1.76367417e-16 + art_sys_32: -2.77048534e-16 + art_sys_33: -7.19213163e-17 + art_sys_34: -7.71907719e-17 + art_sys_35: 9.24202122e-17 + art_sys_36: -7.85525083e-27 + art_sys_37: 3.06958454e-18 + art_sys_38: -1.13322580e-16 + art_sys_39: 1.14970908e-28 + art_sys_40: 5.42794650e-25 + art_sys_41: -3.50528142e-17 + art_sys_42: -1.16903311e-17 + art_sys_43: -5.94765824e-17 + art_sys_44: 3.23089073e-16 + art_sys_45: -6.36995358e-27 + art_sys_46: 2.51011747e-19 + art_sys_47: 4.37695978e-16 + art_sys_48: -8.64662357e-16 + art_sys_49: 3.13843523e-19 + art_sys_50: -2.05145712e-16 + art_sys_51: -3.79148719e-16 + art_sys_52: -3.23491938e-15 + art_sys_53: 3.99728187e-26 + art_sys_54: -4.91682526e-19 + art_sys_55: -3.91212183e-14 + art_sys_56: -1.11087113e-24 + art_sys_57: -2.57095741e-14 + art_sys_58: 3.33176311e-14 + art_sys_59: 1.09721721e-14 + art_sys_60: -5.53667912e-16 + art_sys_61: -3.11651179e-15 + art_sys_62: -1.16758886e-15 + art_sys_63: -1.32199108e-16 + art_sys_64: 1.24402630e-15 + art_sys_65: -1.66349468e-15 + art_sys_66: 1.98258171e-16 + art_sys_67: 2.21643755e-16 + art_sys_68: -2.78104906e-16 + art_sys_69: 1.59681098e-16 + art_sys_70: 9.26320308e-14 + art_sys_71: 4.08637933e-17 + art_sys_72: 1.72879470e-22 + art_sys_73: -2.19671448e-16 + art_sys_74: -5.62618101e-17 + art_sys_75: -2.91095617e-16 + art_sys_76: 2.99047360e-14 + art_sys_77: -2.89217136e-14 + art_sys_78: -8.82618108e-15 + art_sys_79: -1.36471460e-16 + art_sys_80: -1.20459318e-15 + art_sys_81: 3.98742463e-16 + art_sys_82: 1.53231438e-15 + art_sys_83: -6.06515486e-16 + art_sys_84: 1.40957140e-16 + art_sys_85: -4.32821682e-17 + art_sys_86: 6.34162616e-17 + art_sys_87: -4.06442913e-13 + art_sys_88: 5.53109696e-12 + art_sys_89: 3.16876778e-12 + art_sys_90: -1.76401982e-11 + art_sys_91: 8.51346046e-12 + art_sys_92: 6.29177161e-13 + art_sys_93: 3.04087986e-18 + art_sys_94: -1.45596747e-12 + art_sys_95: 2.51590171e-10 + art_sys_96: 8.63531033e-12 + art_sys_97: 1.22240224e-11 + art_sys_98: 1.67832380e-10 + art_sys_99: -8.65584628e-17 + art_sys_100: -7.38143732e-14 + art_sys_101: -2.67941750e-09 + art_sys_102: -2.24490975e-12 + art_sys_103: 2.44247744e-11 + art_sys_104: 6.81317152e-09 + art_sys_105: 3.13944524e-12 + art_sys_106: -1.52176709e-08 + art_sys_107: 9.97119121e-15 + art_sys_108: -3.04311709e-10 + art_sys_109: 4.14166887e-11 + art_sys_110: 2.49076313e-12 + art_sys_111: 8.84185136e-08 + art_sys_112: 6.29630093e-09 + art_sys_113: 1.88137797e-12 + art_sys_114: -1.72114612e-08 + art_sys_115: 1.64880438e-10 + art_sys_116: 1.28207106e-09 + art_sys_117: 3.02843283e-14 + art_sys_118: 5.46220892e-07 + art_sys_119: 4.43972964e-11 + art_sys_120: 4.11143138e-07 + art_sys_121: -1.89279084e-09 + art_sys_122: 2.09779062e-06 + art_sys_123: -1.06510700e-09 + art_sys_124: 3.35529456e-06 + art_sys_125: -4.02476911e-06 + art_sys_126: -5.16664427e-09 + art_sys_127: 1.29050406e-05 + art_sys_128: 1.23522900e-09 + art_sys_129: -3.54646248e-10 + art_sys_130: 2.64541377e-09 + art_sys_131: 4.40094716e-10 + art_sys_132: -4.43791843e-06 + art_sys_133: 1.27877504e-09 + art_sys_134: -9.46412917e-09 + art_sys_135: -4.06671657e-06 + art_sys_136: -9.01503217e-09 + art_sys_137: 8.44670349e-07 + art_sys_138: 3.99090322e-09 + art_sys_139: 1.30150105e-08 + art_sys_140: -2.77440680e-16 + art_sys_141: -2.28627277e-09 + art_sys_142: -0.0 + art_sys_143: 9.82248708e-09 + art_sys_144: 6.20697519e-09 + art_sys_145: -1.42887404e-09 + art_sys_146: -1.71995233e-13 + art_sys_147: 7.27109780e-14 + art_sys_148: -3.65210192e-11 + art_sys_149: -5.64723655e-12 + art_sys_150: -8.99444021e-13 + art_sys_151: 3.13845671e-11 + art_sys_152: -2.72873767e-12 + art_sys_153: -3.66952576e-13 + art_sys_154: 5.02770825e-12 + art_sys_155: 6.35075298e-13 + art_sys_156: 1.03409801e-11 + art_sys_157: -1.98576125e-12 + art_sys_158: -0.0 + art_sys_159: 1.19672676e-09 + art_sys_160: 1.19672676e-09 + art_sys_161: -1.88776738e-11 + art_sys_162: 8.75518083e-24 + art_sys_163: 0.0 + art_sys_164: 5.87322724e-24 + art_sys_165: 1.57130603e-19 + art_sys_166: 1.00456388e-19 + art_sys_167: -9.40802440e-20 + art_sys_168: 2.76622141e-20 + art_sys_169: 1.17292076e-20 + art_sys_170: -2.93762087e-20 + art_sys_171: 2.88326216e-22 + art_sys_172: 1.14891233e-21 + art_sys_173: -3.54362879e-21 + art_sys_174: 3.50202242e-25 + art_sys_175: 3.02689170e-23 + art_sys_176: 1.38710257e-23 + art_sys_177: 3.64758509e-23 + art_sys_178: 1.20347482e-23 + art_sys_179: 1.27703543e-23 + art_sys_180: 2.49697693e-23 + art_sys_181: -3.70738682e-25 + art_sys_182: 4.35177209e-25 + art_sys_183: 1.33426809e-26 + art_sys_184: -4.01301547e-27 + art_sys_185: 2.31201234e-25 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -13625,191 +13625,191 @@ bins: RelativeStatFSR-: -5.34148296e-07 luminosity_uncertainty: 8.20058200e-06 uncorrelated_uncertainty: 3.15407000e-06 -- art_sys_1: -4.85278763e-60 - art_sys_2: 1.82771215e-48 - art_sys_3: 2.46590431e-49 +- art_sys_1: 5.12115451e-60 + art_sys_2: -2.93504831e-47 + art_sys_3: 2.46590423e-49 art_sys_4: -9.36640690e-30 - art_sys_5: 6.25905967e-44 - art_sys_6: -5.87338452e-47 + art_sys_5: 6.36357837e-44 + art_sys_6: -1.12405176e-46 art_sys_7: 4.78144862e-28 - art_sys_8: -1.96833632e-42 + art_sys_8: -1.97107830e-42 art_sys_9: -3.40400120e-27 - art_sys_10: 3.34833263e-45 - art_sys_11: -4.64671463e-41 + art_sys_10: -2.19439785e-44 + art_sys_11: -2.95173774e-41 art_sys_12: -7.02301892e-27 - art_sys_13: -7.04848958e-40 - art_sys_14: -2.41686020e-24 - art_sys_15: -2.18989518e-37 - art_sys_16: -2.83913082e-23 - art_sys_17: -1.21487385e-39 - art_sys_18: 5.78263022e-35 - art_sys_19: 8.62537450e-23 - art_sys_20: -1.56102406e-38 - art_sys_21: -1.44407145e-33 - art_sys_22: -4.89748760e-38 + art_sys_13: -2.62456324e-42 + art_sys_14: 2.41686020e-24 + art_sys_15: 2.00417420e-37 + art_sys_16: 2.83913082e-23 + art_sys_17: -9.77715264e-40 + art_sys_18: 5.78301647e-35 + art_sys_19: -8.62537450e-23 + art_sys_20: -1.63331546e-38 + art_sys_21: -1.44411342e-33 + art_sys_22: -4.32367020e-38 art_sys_23: -2.18675276e-22 - art_sys_24: -7.36418650e-32 - art_sys_25: 1.14050340e-20 + art_sys_24: -7.36418854e-32 + art_sys_25: -1.14050340e-20 art_sys_26: 2.66799906e-20 - art_sys_27: -1.93684343e-29 - art_sys_28: 2.58816671e-31 - art_sys_29: -1.68332584e-27 - art_sys_30: 2.64942418e-19 - art_sys_31: -1.53866461e-29 - art_sys_32: 1.74696104e-26 - art_sys_33: 5.79735241e-18 - art_sys_34: -4.07032540e-18 - art_sys_35: -9.08932101e-29 - art_sys_36: -3.95636267e-15 - art_sys_37: 3.33498537e-15 - art_sys_38: -4.29134224e-15 - art_sys_39: 1.92992687e-16 - art_sys_40: 2.09968257e-16 - art_sys_41: 1.25496231e-17 - art_sys_42: -5.81091413e-17 - art_sys_43: 3.72809810e-17 - art_sys_44: -4.09606690e-17 - art_sys_45: 2.22492508e-16 - art_sys_46: 2.35417961e-16 - art_sys_47: -4.08666435e-20 - art_sys_48: -4.36512138e-17 - art_sys_49: 8.69936333e-18 - art_sys_50: 1.55346887e-16 - art_sys_51: -1.96420114e-16 - art_sys_52: -2.75689434e-25 - art_sys_53: -1.87590810e-16 - art_sys_54: 8.28980609e-19 - art_sys_55: 1.57000576e-15 - art_sys_56: -2.21617262e-24 - art_sys_57: -3.12971828e-16 - art_sys_58: 9.50391974e-17 - art_sys_59: -5.35812847e-16 - art_sys_60: 2.97452838e-19 - art_sys_61: -8.00419651e-17 - art_sys_62: 1.65218280e-23 - art_sys_63: 7.46608552e-18 - art_sys_64: 6.25258000e-14 - art_sys_65: 2.68096603e-14 - art_sys_66: 2.01552234e-15 - art_sys_67: 4.84099429e-15 - art_sys_68: 2.46069853e-16 - art_sys_69: -1.63843643e-17 - art_sys_70: 2.32365951e-16 - art_sys_71: -4.23396606e-16 - art_sys_72: 8.67636794e-18 - art_sys_73: -4.93383636e-17 - art_sys_74: 5.97364424e-17 - art_sys_75: 1.24722421e-17 - art_sys_76: 2.78274169e-14 - art_sys_77: -1.21457453e-15 - art_sys_78: -6.77593192e-16 - art_sys_79: 2.09332796e-17 - art_sys_80: 2.87378589e-15 - art_sys_81: -6.69069921e-18 - art_sys_82: 5.58725475e-17 - art_sys_83: 1.47676337e-15 - art_sys_84: -4.87193495e-16 - art_sys_85: 2.20345215e-16 - art_sys_86: 2.94916098e-16 - art_sys_87: -1.18372190e-17 - art_sys_88: 1.05722345e-15 - art_sys_89: 1.05154573e-16 - art_sys_90: -3.05997086e-15 - art_sys_91: 7.02986118e-13 - art_sys_92: 2.25295265e-17 - art_sys_93: 1.74678759e-17 - art_sys_94: -2.71175657e-13 - art_sys_95: -1.86297368e-14 - art_sys_96: 9.34654135e-12 - art_sys_97: -4.09610539e-18 - art_sys_98: -2.19434765e-14 - art_sys_99: 1.49432713e-11 - art_sys_100: -1.31898876e-13 - art_sys_101: 1.85389781e-10 - art_sys_102: 9.67438959e-12 - art_sys_103: 5.56360075e-18 - art_sys_104: 1.61269759e-10 - art_sys_105: 1.63029904e-11 - art_sys_106: -1.73004341e-09 - art_sys_107: -2.11877181e-11 - art_sys_108: 2.48245316e-11 - art_sys_109: -1.96587149e-12 - art_sys_110: -1.01903544e-10 - art_sys_111: -5.30419251e-09 - art_sys_112: 8.55570502e-12 - art_sys_113: -1.87141830e-13 - art_sys_114: -1.95595022e-13 - art_sys_115: 7.90433244e-09 - art_sys_116: -1.25961873e-09 - art_sys_117: -7.52357941e-13 - art_sys_118: 6.12643664e-08 - art_sys_119: 1.49744808e-10 - art_sys_120: -2.69208040e-10 - art_sys_121: 4.37160417e-13 - art_sys_122: -1.67104899e-09 - art_sys_123: -7.65503563e-10 - art_sys_124: -3.66219320e-07 - art_sys_125: 1.22545530e-13 - art_sys_126: 5.15267874e-10 - art_sys_127: -2.36383832e-10 - art_sys_128: -3.81573101e-07 - art_sys_129: -1.93767784e-13 - art_sys_130: 2.19772189e-09 - art_sys_131: 2.31752246e-12 - art_sys_132: -1.40123961e-06 - art_sys_133: -4.26353311e-09 - art_sys_134: 1.14025468e-08 - art_sys_135: -2.70430524e-06 - art_sys_136: -4.91702121e-13 - art_sys_137: 2.03517903e-10 - art_sys_138: -3.28672245e-06 - art_sys_139: -3.55859557e-09 - art_sys_140: 4.31831697e-13 - art_sys_141: 3.31165024e-10 - art_sys_142: 9.36191781e-06 - art_sys_143: -3.79229831e-10 - art_sys_144: -6.09942195e-12 - art_sys_145: -4.60850912e-06 - art_sys_146: 2.70841482e-10 - art_sys_147: -3.58047842e-12 - art_sys_148: -3.41549779e-12 - art_sys_149: 1.38808696e-06 - art_sys_150: -3.93923581e-08 - art_sys_151: -1.45580003e-09 - art_sys_152: 3.22406545e-11 - art_sys_153: -4.07931728e-09 - art_sys_154: 6.05903876e-15 - art_sys_155: 1.63186914e-11 - art_sys_156: -0.0 - art_sys_157: 9.51248258e-09 - art_sys_158: -0.0 - art_sys_159: -1.69076221e-09 - art_sys_160: 1.99684862e-10 - art_sys_161: 1.99753961e-10 - art_sys_162: 1.99753961e-10 - art_sys_163: 1.99275157e-10 - art_sys_164: 1.99275157e-10 - art_sys_165: -2.25875701e-24 - art_sys_166: 7.50385970e-25 - art_sys_167: 0.0 - art_sys_168: -1.06944313e-20 - art_sys_169: -3.66399383e-21 - art_sys_170: 9.24381669e-22 - art_sys_171: -1.83934082e-21 - art_sys_172: 5.68391030e-23 - art_sys_173: 3.91996431e-23 - art_sys_174: 3.28670125e-23 - art_sys_175: 6.77299856e-24 - art_sys_176: 5.00688479e-24 - art_sys_177: 1.36068737e-24 - art_sys_178: 1.87996600e-24 - art_sys_179: -5.16174388e-24 - art_sys_180: -4.41937442e-23 - art_sys_181: -3.27949594e-24 - art_sys_182: -7.53790876e-25 - art_sys_183: 8.21365690e-27 - art_sys_184: 1.40337508e-27 - art_sys_185: 2.84149643e-27 + art_sys_27: 1.75663827e-29 + art_sys_28: 2.58340309e-31 + art_sys_29: -1.12364696e-14 + art_sys_30: 3.67275282e-15 + art_sys_31: -2.62312516e-15 + art_sys_32: -6.37623305e-16 + art_sys_33: 1.66821909e-17 + art_sys_34: -1.22746078e-16 + art_sys_35: 8.23230386e-17 + art_sys_36: -4.46892292e-27 + art_sys_37: 2.64942410e-19 + art_sys_38: 1.52329019e-16 + art_sys_39: 1.53937095e-29 + art_sys_40: 2.41298888e-26 + art_sys_41: -5.79735245e-18 + art_sys_42: 6.59611059e-17 + art_sys_43: 4.07032781e-18 + art_sys_44: -2.63665041e-17 + art_sys_45: -3.83525297e-29 + art_sys_46: -3.22882708e-20 + art_sys_47: -9.00113995e-17 + art_sys_48: -4.37886734e-17 + art_sys_49: 6.16383760e-18 + art_sys_50: 8.55238940e-17 + art_sys_51: 7.38092791e-17 + art_sys_52: -1.87472009e-16 + art_sys_53: 1.31613151e-25 + art_sys_54: 1.76497564e-19 + art_sys_55: -1.56990618e-15 + art_sys_56: 2.04561801e-24 + art_sys_57: -7.58626360e-14 + art_sys_58: -2.29985053e-16 + art_sys_59: 1.71078762e-14 + art_sys_60: 3.00254164e-17 + art_sys_61: 1.25874154e-15 + art_sys_62: 1.12737531e-16 + art_sys_63: 3.01262163e-17 + art_sys_64: -9.88162531e-16 + art_sys_65: 6.76368613e-16 + art_sys_66: 2.56375863e-17 + art_sys_67: -3.31964509e-17 + art_sys_68: 1.14156874e-16 + art_sys_69: 5.49428037e-17 + art_sys_70: -5.38007745e-16 + art_sys_71: 6.09058273e-18 + art_sys_72: 4.02112387e-23 + art_sys_73: -1.27397615e-16 + art_sys_74: -7.16846134e-18 + art_sys_75: 1.02503346e-16 + art_sys_76: -4.53500097e-14 + art_sys_77: -9.88754119e-16 + art_sys_78: 1.88623011e-14 + art_sys_79: 3.61565386e-17 + art_sys_80: -2.30881177e-16 + art_sys_81: -1.66074349e-16 + art_sys_82: -5.94536583e-16 + art_sys_83: -1.71698114e-16 + art_sys_84: -4.74811123e-17 + art_sys_85: -2.68120018e-16 + art_sys_86: -5.60864258e-16 + art_sys_87: 7.29519606e-17 + art_sys_88: 5.37261512e-12 + art_sys_89: -1.75609554e-11 + art_sys_90: -7.02825220e-13 + art_sys_91: -9.34893271e-12 + art_sys_92: 2.14346229e-13 + art_sys_93: -5.10781139e-19 + art_sys_94: -3.27201899e-13 + art_sys_95: 1.56109913e-11 + art_sys_96: -1.29177526e-11 + art_sys_97: -1.80929594e-12 + art_sys_98: 1.88990438e-10 + art_sys_99: -9.44379432e-17 + art_sys_100: 2.85864266e-12 + art_sys_101: 3.12669268e-10 + art_sys_102: 3.38994603e-12 + art_sys_103: 6.08804686e-11 + art_sys_104: 1.51055349e-09 + art_sys_105: -1.08261117e-12 + art_sys_106: 4.42510478e-09 + art_sys_107: 2.90264776e-15 + art_sys_108: -1.74297951e-10 + art_sys_109: -4.62752578e-12 + art_sys_110: -8.81416140e-13 + art_sys_111: 7.81070352e-09 + art_sys_112: -8.95096783e-09 + art_sys_113: -6.65369876e-13 + art_sys_114: 6.10561375e-08 + art_sys_115: -1.68665776e-10 + art_sys_116: 5.87280602e-10 + art_sys_117: -1.05424867e-14 + art_sys_118: 1.48315203e-09 + art_sys_119: -8.43289634e-11 + art_sys_120: 3.66195224e-07 + art_sys_121: -1.19384642e-09 + art_sys_122: -3.80688677e-07 + art_sys_123: 1.49906611e-09 + art_sys_124: 1.40066902e-06 + art_sys_125: 2.70860798e-06 + art_sys_126: 8.93434947e-09 + art_sys_127: 3.27400854e-06 + art_sys_128: -1.23137748e-09 + art_sys_129: 1.44131204e-10 + art_sys_130: -3.36820765e-09 + art_sys_131: -1.27311173e-09 + art_sys_132: -9.36590195e-06 + art_sys_133: -2.55779952e-09 + art_sys_134: 1.05553778e-08 + art_sys_135: 4.61501372e-06 + art_sys_136: 9.92691429e-09 + art_sys_137: -1.42720525e-06 + art_sys_138: -5.98308138e-09 + art_sys_139: -1.93369289e-08 + art_sys_140: -8.85391506e-17 + art_sys_141: 9.12830803e-09 + art_sys_142: 0.0 + art_sys_143: -1.16855842e-08 + art_sys_144: -4.49015043e-09 + art_sys_145: -4.58636992e-09 + art_sys_146: 5.05117009e-14 + art_sys_147: -1.09648433e-14 + art_sys_148: 1.30434184e-11 + art_sys_149: 2.05932542e-12 + art_sys_150: 1.62806638e-13 + art_sys_151: -1.04730710e-11 + art_sys_152: 4.13690612e-13 + art_sys_153: 2.92559250e-13 + art_sys_154: -5.22516732e-12 + art_sys_155: -8.62940096e-12 + art_sys_156: -2.44522319e-11 + art_sys_157: -2.37981529e-12 + art_sys_158: 0.0 + art_sys_159: -1.53916194e-09 + art_sys_160: -1.53916194e-09 + art_sys_161: 5.64811985e-11 + art_sys_162: -2.23783624e-23 + art_sys_163: -0.0 + art_sys_164: -1.39996623e-23 + art_sys_165: -5.71937632e-20 + art_sys_166: -3.89279361e-20 + art_sys_167: 3.19401342e-20 + art_sys_168: -9.74739378e-21 + art_sys_169: -4.08582026e-21 + art_sys_170: 1.04944601e-20 + art_sys_171: -1.09315951e-22 + art_sys_172: -4.02064318e-22 + art_sys_173: 1.24702567e-21 + art_sys_174: -7.22005185e-24 + art_sys_175: -1.01435939e-23 + art_sys_176: -5.70545261e-24 + art_sys_177: -1.27388107e-23 + art_sys_178: -4.26009840e-24 + art_sys_179: -4.65744582e-24 + art_sys_180: -8.99566033e-24 + art_sys_181: 1.20483024e-25 + art_sys_182: -1.50361590e-25 + art_sys_183: -6.02853935e-27 + art_sys_184: 2.26395647e-27 + art_sys_185: -5.32316827e-25 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -13916,191 +13916,191 @@ bins: RelativeStatFSR-: -3.27886810e-07 luminosity_uncertainty: 4.77097400e-06 uncorrelated_uncertainty: 1.83499000e-06 -- art_sys_1: -6.89579695e-62 - art_sys_2: 2.59706638e-50 - art_sys_3: 4.11902534e-51 +- art_sys_1: 7.27656042e-62 + art_sys_2: -4.17052284e-49 + art_sys_3: 4.11902524e-51 art_sys_4: -1.33090872e-31 - art_sys_5: 8.11540842e-46 - art_sys_6: -8.45945329e-49 + art_sys_5: 8.26362157e-46 + art_sys_6: -1.61094857e-48 art_sys_7: 6.29779359e-30 - art_sys_8: -2.22738440e-44 + art_sys_8: -2.21418437e-44 art_sys_9: -4.29638954e-29 - art_sys_10: 1.88837789e-47 - art_sys_11: -8.84719903e-43 + art_sys_10: -2.99183161e-46 + art_sys_11: -3.58786611e-43 art_sys_12: -2.58088389e-28 - art_sys_13: -2.18357016e-41 - art_sys_14: -7.47915044e-26 - art_sys_15: -2.41528799e-39 - art_sys_16: -6.30548225e-25 - art_sys_17: -2.86059040e-41 - art_sys_18: 1.12559957e-36 - art_sys_19: 2.11661720e-24 - art_sys_20: -3.68921632e-40 - art_sys_21: -2.77812109e-35 - art_sys_22: -6.29321332e-40 + art_sys_13: -5.62420681e-44 + art_sys_14: 7.47915044e-26 + art_sys_15: 2.00177919e-39 + art_sys_16: 6.30548225e-25 + art_sys_17: -2.31643491e-41 + art_sys_18: 1.12570539e-36 + art_sys_19: -2.11661720e-24 + art_sys_20: -3.82914898e-40 + art_sys_21: -2.77822353e-35 + art_sys_22: -8.47172951e-40 art_sys_23: -5.08930210e-24 - art_sys_24: -1.43483701e-34 - art_sys_25: 4.64984245e-22 + art_sys_24: -1.43484216e-34 + art_sys_25: -4.64984245e-22 art_sys_26: -9.72562590e-22 - art_sys_27: -1.80194101e-30 - art_sys_28: -1.10085672e-33 - art_sys_29: -5.56547205e-30 - art_sys_30: -3.94180755e-22 - art_sys_31: -1.76533960e-31 - art_sys_32: 4.96318972e-28 - art_sys_33: 8.48565706e-20 - art_sys_34: -2.51195588e-19 - art_sys_35: 1.43007367e-29 - art_sys_36: -9.05234154e-15 - art_sys_37: -3.83718649e-16 - art_sys_38: -2.00969579e-15 - art_sys_39: -2.91609224e-17 - art_sys_40: -3.30414615e-17 - art_sys_41: -9.15123304e-19 - art_sys_42: 2.86550769e-17 - art_sys_43: -7.23251452e-17 - art_sys_44: 1.69819164e-17 - art_sys_45: -8.79523249e-17 - art_sys_46: -1.36551416e-16 - art_sys_47: -1.18433350e-22 - art_sys_48: 9.46390322e-19 - art_sys_49: 2.24938670e-20 - art_sys_50: -6.61624902e-17 - art_sys_51: 1.18747254e-16 - art_sys_52: -5.01945495e-27 - art_sys_53: -2.66308207e-17 - art_sys_54: 1.56362720e-19 - art_sys_55: 1.77660458e-17 - art_sys_56: -9.73971607e-26 - art_sys_57: 2.09327634e-16 - art_sys_58: -8.47258823e-17 - art_sys_59: -2.11329374e-16 - art_sys_60: 1.90336143e-20 - art_sys_61: 7.29017452e-17 - art_sys_62: 3.83349201e-24 - art_sys_63: 2.67495522e-20 - art_sys_64: -2.41046306e-14 - art_sys_65: 2.24750745e-14 - art_sys_66: 1.40597421e-14 - art_sys_67: -5.31006338e-15 - art_sys_68: 1.23567760e-15 - art_sys_69: 7.72258097e-16 - art_sys_70: -1.09366330e-15 - art_sys_71: -5.28497285e-16 - art_sys_72: -1.00899088e-16 - art_sys_73: -3.88612477e-17 - art_sys_74: -8.17692494e-17 - art_sys_75: 5.29021888e-17 - art_sys_76: -3.34730666e-14 - art_sys_77: 4.71494734e-14 - art_sys_78: -1.94242863e-14 - art_sys_79: 4.28551640e-17 - art_sys_80: 2.71339073e-15 - art_sys_81: -3.61271812e-17 - art_sys_82: 3.76843608e-18 - art_sys_83: 1.94797700e-16 - art_sys_84: -4.79589907e-16 - art_sys_85: -9.63998513e-16 - art_sys_86: -1.05243932e-16 - art_sys_87: -2.92158116e-17 - art_sys_88: -1.92218467e-17 - art_sys_89: -3.13999006e-17 - art_sys_90: -3.64384177e-15 - art_sys_91: -9.45154019e-14 - art_sys_92: 1.27785700e-17 - art_sys_93: 1.46310140e-18 - art_sys_94: 1.90570422e-14 - art_sys_95: -1.20495870e-15 - art_sys_96: 2.41647372e-13 - art_sys_97: -8.60967140e-20 - art_sys_98: -9.51218927e-16 - art_sys_99: -1.63308104e-12 - art_sys_100: 3.25663790e-15 - art_sys_101: 1.53007458e-12 - art_sys_102: -2.69538881e-13 - art_sys_103: -2.33349732e-18 - art_sys_104: 2.38133605e-11 - art_sys_105: -1.90865481e-11 - art_sys_106: 4.51062673e-11 - art_sys_107: -2.29229764e-13 - art_sys_108: -3.03436368e-11 - art_sys_109: 1.93425081e-11 - art_sys_110: 8.84257820e-12 - art_sys_111: -2.29073455e-10 - art_sys_112: 4.58951527e-13 - art_sys_113: -8.07919505e-15 - art_sys_114: 7.32539614e-13 - art_sys_115: -9.62472312e-10 - art_sys_116: -1.27314214e-09 - art_sys_117: 1.12951301e-11 - art_sys_118: 6.92670756e-10 - art_sys_119: 2.45470138e-10 - art_sys_120: 1.94824644e-11 - art_sys_121: -6.57766014e-12 - art_sys_122: 7.76013190e-09 - art_sys_123: 1.13497496e-09 - art_sys_124: 4.15128543e-09 - art_sys_125: -1.74191208e-12 - art_sys_126: 1.44067031e-10 - art_sys_127: 1.89649271e-09 - art_sys_128: -3.88768301e-08 - art_sys_129: 2.89863684e-12 - art_sys_130: -5.89436727e-09 - art_sys_131: -3.38236573e-11 - art_sys_132: 3.99502401e-08 - art_sys_133: 6.91016086e-09 - art_sys_134: 1.23378120e-08 - art_sys_135: -1.63448469e-07 - art_sys_136: -4.40055827e-12 - art_sys_137: 3.95073134e-09 - art_sys_138: 6.98546821e-08 - art_sys_139: 2.46290593e-09 - art_sys_140: -1.67878288e-12 - art_sys_141: 2.14574115e-09 - art_sys_142: 1.10548008e-06 - art_sys_143: 3.74817879e-10 - art_sys_144: 9.28228769e-11 - art_sys_145: -2.81222114e-06 - art_sys_146: 1.47273301e-09 - art_sys_147: -1.88216246e-12 - art_sys_148: 1.67876681e-11 - art_sys_149: -3.84273065e-06 - art_sys_150: 9.81207059e-08 - art_sys_151: 2.68279222e-08 - art_sys_152: -5.20221039e-11 - art_sys_153: 2.41161096e-08 - art_sys_154: 1.37899215e-15 - art_sys_155: 1.33404933e-10 - art_sys_156: 0.0 - art_sys_157: -3.56393094e-07 + art_sys_27: 1.78018491e-30 + art_sys_28: -1.10527407e-33 + art_sys_29: -5.32936601e-16 + art_sys_30: -5.26924471e-16 + art_sys_31: -6.06197921e-16 + art_sys_32: -1.25220865e-16 + art_sys_33: -3.20049414e-17 + art_sys_34: 3.47640741e-18 + art_sys_35: 5.26932283e-17 + art_sys_36: -2.10833994e-29 + art_sys_37: -3.94180784e-22 + art_sys_38: -4.21126702e-18 + art_sys_39: 1.76633755e-31 + art_sys_40: 2.32403808e-27 + art_sys_41: -8.48565746e-20 + art_sys_42: -2.39865309e-17 + art_sys_43: 2.51195680e-19 + art_sys_44: 1.84523691e-17 + art_sys_45: 1.83561857e-29 + art_sys_46: 1.18249958e-22 + art_sys_47: 3.76575300e-17 + art_sys_48: 9.42862414e-19 + art_sys_49: -3.80902686e-20 + art_sys_50: -1.89693233e-17 + art_sys_51: -5.02291837e-17 + art_sys_52: -2.68531953e-17 + art_sys_53: 8.26989782e-27 + art_sys_54: 4.63349346e-20 + art_sys_55: -1.78261959e-17 + art_sys_56: 1.11233872e-25 + art_sys_57: 7.43699154e-14 + art_sys_58: -1.87747382e-14 + art_sys_59: -1.51702154e-14 + art_sys_60: -5.57839883e-17 + art_sys_61: 1.35519727e-14 + art_sys_62: -2.69342249e-14 + art_sys_63: -1.23638559e-14 + art_sys_64: 2.89235164e-14 + art_sys_65: -3.76149608e-14 + art_sys_66: 3.00811743e-17 + art_sys_67: 5.47653413e-15 + art_sys_68: -6.71868067e-15 + art_sys_69: 1.95529428e-17 + art_sys_70: -2.11340077e-16 + art_sys_71: -1.43329590e-19 + art_sys_72: -1.25465404e-24 + art_sys_73: -2.52148070e-17 + art_sys_74: 2.26695085e-19 + art_sys_75: -7.44912511e-15 + art_sys_76: -3.34698689e-14 + art_sys_77: -5.46931441e-15 + art_sys_78: 1.05867105e-14 + art_sys_79: -3.43188457e-15 + art_sys_80: 6.37684513e-18 + art_sys_81: 3.66711344e-15 + art_sys_82: -8.72940060e-16 + art_sys_83: -2.36627788e-16 + art_sys_84: 3.21502860e-15 + art_sys_85: -3.85918067e-16 + art_sys_86: -4.40854549e-17 + art_sys_87: 5.12980603e-15 + art_sys_88: -3.81845060e-13 + art_sys_89: -2.05301352e-11 + art_sys_90: 9.45168300e-14 + art_sys_91: -2.41711174e-13 + art_sys_92: -6.38943902e-15 + art_sys_93: -2.21563279e-20 + art_sys_94: 1.61716206e-14 + art_sys_95: -1.61080980e-12 + art_sys_96: 2.03770434e-11 + art_sys_97: -1.79719352e-13 + art_sys_98: 1.65055781e-12 + art_sys_99: -5.95448042e-19 + art_sys_100: 1.79491932e-14 + art_sys_101: 2.88519659e-11 + art_sys_102: -7.00541747e-12 + art_sys_103: -4.42639948e-13 + art_sys_104: -5.24427260e-11 + art_sys_105: 7.21740555e-11 + art_sys_106: 1.99414755e-10 + art_sys_107: -6.39719007e-17 + art_sys_108: 5.98103848e-12 + art_sys_109: -6.65174404e-13 + art_sys_110: 5.68780235e-11 + art_sys_111: -9.66589702e-10 + art_sys_112: -4.99338429e-09 + art_sys_113: 4.29687475e-11 + art_sys_114: 6.90352635e-10 + art_sys_115: -1.30449573e-11 + art_sys_116: -2.48990854e-11 + art_sys_117: 6.94187195e-13 + art_sys_118: -7.76891710e-09 + art_sys_119: 4.54372950e-10 + art_sys_120: -4.14204141e-09 + art_sys_121: -3.09661027e-10 + art_sys_122: -3.89521388e-08 + art_sys_123: -5.19697269e-09 + art_sys_124: -4.00547573e-08 + art_sys_125: 1.63692855e-07 + art_sys_126: 6.31434844e-09 + art_sys_127: -8.38616841e-08 + art_sys_128: 1.46851896e-08 + art_sys_129: -7.78485087e-09 + art_sys_130: 1.92404924e-08 + art_sys_131: -7.27404179e-09 + art_sys_132: -1.10056683e-06 + art_sys_133: 1.85337090e-09 + art_sys_134: -2.72742819e-08 + art_sys_135: 2.86522541e-06 + art_sys_136: -3.30580027e-08 + art_sys_137: 3.84721596e-06 + art_sys_138: 2.61028009e-08 + art_sys_139: 7.64065200e-08 + art_sys_140: -8.81170971e-17 + art_sys_141: 7.96544922e-08 + art_sys_142: -0.0 + art_sys_143: -2.78075539e-08 + art_sys_144: 8.27013934e-08 + art_sys_145: -1.16000844e-07 + art_sys_146: -4.08343128e-12 + art_sys_147: 1.87306138e-12 + art_sys_148: -8.31892220e-10 + art_sys_149: -1.27970645e-10 + art_sys_150: -2.34391683e-11 + art_sys_151: 7.27140297e-10 + art_sys_152: -3.49030300e-11 + art_sys_153: -4.49438030e-12 + art_sys_154: 7.78696266e-11 + art_sys_155: -1.07563242e-10 + art_sys_156: -9.07262069e-11 + art_sys_157: -1.00538252e-10 art_sys_158: -0.0 - art_sys_159: 2.67187830e-08 - art_sys_160: -6.64524156e-09 - art_sys_161: -1.82818532e-10 - art_sys_162: -1.82818532e-10 - art_sys_163: -2.10885746e-09 - art_sys_164: -2.10885746e-09 - art_sys_165: 2.07375851e-23 - art_sys_166: -6.71459501e-24 - art_sys_167: -0.0 - art_sys_168: 1.43292092e-19 - art_sys_169: 5.51914619e-20 - art_sys_170: -1.67746356e-20 - art_sys_171: 2.81933773e-20 - art_sys_172: -6.09445687e-22 - art_sys_173: -6.47901881e-22 - art_sys_174: -5.06717398e-22 - art_sys_175: -1.02038008e-22 - art_sys_176: -8.08501983e-23 - art_sys_177: -2.02421830e-23 - art_sys_178: -2.59930132e-23 - art_sys_179: -8.19470651e-23 - art_sys_180: 6.38666473e-22 - art_sys_181: 5.26811517e-23 - art_sys_182: 1.14676672e-23 - art_sys_183: -1.52422068e-25 - art_sys_184: 4.86615285e-26 - art_sys_185: 1.27621022e-26 + art_sys_159: 1.31316484e-08 + art_sys_160: 1.31316484e-08 + art_sys_161: 2.01711172e-10 + art_sys_162: -4.72094681e-23 + art_sys_163: -0.0 + art_sys_164: -1.94110972e-23 + art_sys_165: 3.56673822e-18 + art_sys_166: 2.24482045e-18 + art_sys_167: -2.17696895e-18 + art_sys_168: 6.32727763e-19 + art_sys_169: 2.62596157e-19 + art_sys_170: -6.77457617e-19 + art_sys_171: 7.93911458e-21 + art_sys_172: 2.63241915e-20 + art_sys_173: -8.10311589e-20 + art_sys_174: -1.05783621e-22 + art_sys_175: 6.99528472e-22 + art_sys_176: 3.05131260e-22 + art_sys_177: 8.35413210e-22 + art_sys_178: 2.74782868e-22 + art_sys_179: 2.89483690e-22 + art_sys_180: 5.67531247e-22 + art_sys_181: -8.62530240e-24 + art_sys_182: 9.98872533e-24 + art_sys_183: 2.87720131e-25 + art_sys_184: -7.07445618e-26 + art_sys_185: 3.80191129e-25 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -14207,191 +14207,191 @@ bins: RelativeStatFSR-: -1.39470547e-07 luminosity_uncertainty: 1.87299840e-06 uncorrelated_uncertainty: 7.20384000e-07 -- art_sys_1: -2.87168878e-65 - art_sys_2: 1.08156360e-53 - art_sys_3: 1.50778153e-54 +- art_sys_1: 3.03047300e-65 + art_sys_2: -1.73683882e-52 + art_sys_3: 1.50778148e-54 art_sys_4: -5.54264783e-35 - art_sys_5: 3.69467840e-49 - art_sys_6: -3.54584755e-52 + art_sys_5: 3.75639623e-49 + art_sys_6: -6.73483012e-52 art_sys_7: 2.91529823e-33 - art_sys_8: -7.41318783e-48 + art_sys_8: -7.48379214e-48 art_sys_9: -1.82960081e-32 - art_sys_10: -7.35551175e-51 - art_sys_11: -5.67709341e-46 + art_sys_10: -1.36862279e-49 + art_sys_11: -6.88717425e-47 art_sys_12: -2.40410061e-31 - art_sys_13: -2.06840852e-44 - art_sys_14: -7.08121482e-29 - art_sys_15: -1.04697564e-42 - art_sys_16: -4.93175329e-28 - art_sys_17: -2.31642098e-44 - art_sys_18: 1.02731290e-39 - art_sys_19: 1.75920251e-27 - art_sys_20: -2.80003066e-43 - art_sys_21: -1.98779648e-38 - art_sys_22: 2.38780051e-43 + art_sys_13: -4.33627303e-47 + art_sys_14: 7.08121482e-29 + art_sys_15: 7.22715263e-43 + art_sys_16: 4.93175329e-28 + art_sys_17: -1.88018711e-44 + art_sys_18: 1.02741151e-39 + art_sys_19: -1.75920251e-27 + art_sys_20: -2.82002519e-43 + art_sys_21: -1.98788092e-38 + art_sys_22: 2.68191112e-43 art_sys_23: -3.66835267e-27 - art_sys_24: 2.92823507e-36 - art_sys_25: 6.01526410e-25 + art_sys_24: 2.92823472e-36 + art_sys_25: -6.01526410e-25 art_sys_26: -2.44949322e-24 - art_sys_27: -3.12813684e-34 - art_sys_28: -3.94704888e-36 - art_sys_29: 4.52364105e-32 - art_sys_30: -2.73506078e-24 - art_sys_31: 2.02759159e-34 - art_sys_32: -1.62654015e-30 - art_sys_33: -1.36862476e-22 - art_sys_34: 6.87901694e-22 - art_sys_35: -6.47950762e-34 - art_sys_36: -3.79977672e-15 - art_sys_37: -1.79329159e-16 - art_sys_38: 1.32107058e-15 - art_sys_39: -8.34976247e-16 - art_sys_40: -1.63501006e-16 - art_sys_41: -6.06445224e-17 - art_sys_42: -1.72601534e-17 - art_sys_43: -1.06678659e-17 - art_sys_44: -2.50043116e-17 - art_sys_45: -5.40884481e-17 - art_sys_46: -2.64837785e-16 - art_sys_47: -7.53193909e-24 - art_sys_48: -1.76399588e-21 - art_sys_49: 1.54423272e-20 - art_sys_50: -1.12073853e-16 - art_sys_51: 2.00910032e-16 - art_sys_52: 3.51383157e-29 - art_sys_53: 1.79317739e-18 - art_sys_54: 5.60755624e-19 - art_sys_55: 2.72638091e-19 - art_sys_56: 1.17311677e-26 - art_sys_57: 2.58132698e-16 - art_sys_58: -1.00011260e-16 - art_sys_59: 3.12533979e-19 - art_sys_60: 7.00231964e-20 - art_sys_61: 7.38098292e-17 - art_sys_62: 6.17271978e-24 - art_sys_63: 1.97900012e-20 - art_sys_64: -3.62748044e-14 - art_sys_65: -6.88309012e-15 - art_sys_66: -1.22585523e-15 - art_sys_67: 2.36459521e-15 - art_sys_68: -5.18676278e-16 - art_sys_69: -1.55445765e-15 - art_sys_70: -1.12771958e-15 - art_sys_71: -7.14104838e-16 - art_sys_72: -1.95730241e-17 - art_sys_73: -4.03519550e-17 - art_sys_74: -6.94671367e-17 - art_sys_75: 5.34781602e-17 - art_sys_76: -8.78460801e-15 - art_sys_77: 1.18116736e-14 - art_sys_78: 5.76848589e-15 - art_sys_79: 3.70803503e-17 - art_sys_80: 2.81651684e-15 - art_sys_81: -2.67456770e-17 - art_sys_82: 3.60675909e-19 - art_sys_83: 1.12540322e-16 - art_sys_84: -3.65744086e-16 - art_sys_85: 3.95844888e-16 - art_sys_86: 2.59620649e-16 - art_sys_87: -2.18297429e-17 - art_sys_88: -8.10374184e-18 - art_sys_89: -2.48384714e-17 - art_sys_90: -4.83986927e-17 - art_sys_91: -1.32943857e-16 - art_sys_92: -3.76690524e-17 - art_sys_93: 1.29007019e-17 - art_sys_94: 4.90045052e-15 - art_sys_95: -2.03057963e-16 - art_sys_96: -9.36588047e-16 - art_sys_97: 2.45171107e-20 - art_sys_98: -1.68852461e-16 - art_sys_99: -3.77295872e-14 - art_sys_100: 1.44464454e-16 - art_sys_101: -2.16036036e-13 - art_sys_102: -3.07042376e-14 - art_sys_103: 1.67501701e-18 - art_sys_104: -7.58087622e-12 - art_sys_105: -5.56593423e-13 - art_sys_106: -1.00757483e-11 - art_sys_107: 2.04993601e-13 - art_sys_108: -1.19008938e-12 - art_sys_109: 1.05305971e-11 - art_sys_110: 2.27863923e-12 - art_sys_111: -4.19800170e-11 - art_sys_112: -4.65611952e-14 - art_sys_113: -1.46181599e-15 - art_sys_114: 3.14096196e-13 - art_sys_115: -1.09086993e-11 - art_sys_116: 4.72337715e-09 - art_sys_117: 6.42453843e-12 - art_sys_118: -5.64659624e-11 - art_sys_119: -4.83755875e-11 - art_sys_120: 4.91092352e-12 - art_sys_121: -3.74012888e-12 - art_sys_122: 1.10238140e-10 - art_sys_123: -3.62195468e-09 - art_sys_124: 1.18774612e-09 - art_sys_125: -9.95064908e-13 - art_sys_126: -3.16244186e-10 - art_sys_127: 1.00213492e-09 - art_sys_128: 5.90314914e-10 - art_sys_129: 1.63052030e-12 - art_sys_130: -2.06166405e-09 - art_sys_131: -1.89484264e-11 - art_sys_132: 1.49260558e-08 - art_sys_133: 1.25212712e-09 - art_sys_134: 9.39721499e-09 - art_sys_135: 3.75961032e-08 - art_sys_136: -3.75287883e-12 - art_sys_137: 2.56362035e-09 - art_sys_138: 1.27054197e-07 - art_sys_139: -6.80947159e-10 - art_sys_140: -6.47366925e-13 - art_sys_141: 1.09202339e-09 - art_sys_142: -4.71201038e-07 - art_sys_143: -1.98302052e-11 - art_sys_144: 5.51101888e-11 - art_sys_145: 8.61813828e-07 - art_sys_146: 8.21231437e-10 - art_sys_147: -1.45894166e-12 - art_sys_148: -3.97651531e-12 - art_sys_149: 1.41146015e-06 - art_sys_150: -4.76425063e-08 - art_sys_151: 1.62266209e-08 - art_sys_152: 6.10645109e-11 - art_sys_153: 1.10857818e-09 - art_sys_154: -2.04858747e-15 - art_sys_155: 2.29299498e-10 - art_sys_156: 0.0 - art_sys_157: -9.90156732e-07 - art_sys_158: 0.0 - art_sys_159: 1.51193402e-08 - art_sys_160: -2.32313958e-08 - art_sys_161: -1.07467296e-09 - art_sys_162: -1.07467296e-09 - art_sys_163: -2.52401955e-09 - art_sys_164: -2.52401955e-09 - art_sys_165: 2.60703556e-23 - art_sys_166: -8.60043241e-24 - art_sys_167: -0.0 - art_sys_168: 8.84844703e-20 - art_sys_169: 3.10072108e-20 - art_sys_170: -9.00293749e-21 - art_sys_171: 1.57781767e-20 - art_sys_172: -2.82893681e-22 - art_sys_173: -3.76519053e-22 - art_sys_174: -2.87766708e-22 - art_sys_175: -5.79163879e-23 - art_sys_176: -4.62148149e-23 - art_sys_177: -1.13685335e-23 - art_sys_178: -1.46607430e-23 - art_sys_179: -1.30466261e-22 - art_sys_180: 4.66087394e-22 - art_sys_181: 3.01506562e-23 - art_sys_182: 6.46034013e-24 - art_sys_183: -8.73482426e-26 - art_sys_184: 3.05127834e-26 - art_sys_185: 9.55435641e-27 + art_sys_27: 4.35518412e-34 + art_sys_28: 5.03670359e-36 + art_sys_29: 9.72329082e-16 + art_sys_30: 4.62392699e-16 + art_sys_31: -1.40154303e-15 + art_sys_32: 5.31822559e-16 + art_sys_33: -3.13077922e-17 + art_sys_34: -1.32045805e-17 + art_sys_35: -6.14724790e-17 + art_sys_36: 3.86416553e-31 + art_sys_37: -2.73505975e-24 + art_sys_38: -4.13210850e-17 + art_sys_39: -6.45746199e-35 + art_sys_40: -6.99849132e-30 + art_sys_41: 1.36862465e-22 + art_sys_42: -3.27205352e-17 + art_sys_43: -6.87901507e-22 + art_sys_44: 1.14937066e-16 + art_sys_45: -1.01239577e-32 + art_sys_46: -9.57497162e-24 + art_sys_47: 1.10152519e-17 + art_sys_48: -1.68049684e-21 + art_sys_49: 1.99617202e-20 + art_sys_50: -6.20906828e-18 + art_sys_51: -7.09865159e-17 + art_sys_52: 2.33754344e-18 + art_sys_53: -4.33694878e-29 + art_sys_54: -3.94735700e-19 + art_sys_55: -4.93301559e-19 + art_sys_56: -1.61544063e-26 + art_sys_57: -1.40302822e-14 + art_sys_58: 2.05271828e-15 + art_sys_59: 6.87222563e-15 + art_sys_60: -7.39640061e-17 + art_sys_61: 2.36080658e-14 + art_sys_62: -7.26023552e-14 + art_sys_63: -3.08123363e-14 + art_sys_64: 7.88455530e-14 + art_sys_65: -1.05634620e-13 + art_sys_66: 4.79820833e-17 + art_sys_67: 1.53006996e-14 + art_sys_68: -1.90059837e-14 + art_sys_69: 2.61991270e-17 + art_sys_70: 2.39435405e-19 + art_sys_71: -2.27998823e-20 + art_sys_72: 8.18735393e-24 + art_sys_73: -4.17456894e-17 + art_sys_74: -5.17353151e-20 + art_sys_75: -2.11660202e-14 + art_sys_76: -2.86552758e-14 + art_sys_77: 2.17863187e-14 + art_sys_78: 2.12378152e-14 + art_sys_79: -9.69228905e-15 + art_sys_80: 8.91455803e-18 + art_sys_81: -9.11756770e-15 + art_sys_82: 1.05182490e-15 + art_sys_83: -1.06174448e-18 + art_sys_84: 9.11996237e-15 + art_sys_85: 1.02373370e-15 + art_sys_86: 1.51006332e-16 + art_sys_87: -7.60666852e-15 + art_sys_88: 3.61827950e-13 + art_sys_89: 1.46711350e-11 + art_sys_90: 1.26728583e-16 + art_sys_91: 1.18520077e-15 + art_sys_92: -9.88436674e-17 + art_sys_93: -3.18166922e-20 + art_sys_94: 2.32860323e-17 + art_sys_95: -1.15352867e-13 + art_sys_96: -6.08514112e-12 + art_sys_97: 2.78451766e-15 + art_sys_98: -6.32909309e-13 + art_sys_99: -6.36289188e-19 + art_sys_100: -5.47138774e-15 + art_sys_101: -2.50900586e-11 + art_sys_102: -2.58031808e-12 + art_sys_103: -1.04235835e-12 + art_sys_104: 3.55564559e-11 + art_sys_105: 2.03518545e-10 + art_sys_106: 1.43490705e-10 + art_sys_107: 5.53514726e-18 + art_sys_108: 4.84213327e-12 + art_sys_109: -3.55790213e-14 + art_sys_110: 1.60238891e-10 + art_sys_111: -3.94124006e-12 + art_sys_112: -6.55398291e-10 + art_sys_113: 1.21056472e-10 + art_sys_114: -2.71248896e-11 + art_sys_115: -1.16092718e-10 + art_sys_116: -1.69196220e-11 + art_sys_117: 1.95736585e-12 + art_sys_118: -8.41220345e-11 + art_sys_119: -1.09940830e-10 + art_sys_120: -1.20240478e-09 + art_sys_121: 5.29958035e-10 + art_sys_122: 5.76718739e-10 + art_sys_123: -7.19683840e-09 + art_sys_124: -1.49248294e-08 + art_sys_125: -3.57374158e-08 + art_sys_126: -1.39023798e-09 + art_sys_127: -9.29037124e-08 + art_sys_128: 3.61654472e-08 + art_sys_129: -2.18116904e-08 + art_sys_130: 3.88341741e-08 + art_sys_131: -2.69101967e-08 + art_sys_132: 4.28281702e-07 + art_sys_133: -3.28070641e-09 + art_sys_134: -2.55997410e-08 + art_sys_135: -8.84919946e-07 + art_sys_136: -8.53335313e-08 + art_sys_137: -1.34288789e-06 + art_sys_138: 2.63805149e-08 + art_sys_139: 7.20540374e-08 + art_sys_140: -2.83271859e-16 + art_sys_141: 3.02132296e-07 + art_sys_142: 0.0 + art_sys_143: -1.46447398e-07 + art_sys_144: 2.13262969e-07 + art_sys_145: -3.73926652e-07 + art_sys_146: -1.16029664e-11 + art_sys_147: 5.43213760e-12 + art_sys_148: -2.34291928e-09 + art_sys_149: -3.60056063e-10 + art_sys_150: -6.66212257e-11 + art_sys_151: 2.05279837e-09 + art_sys_152: -9.31857090e-11 + art_sys_153: -1.22020628e-11 + art_sys_154: 1.73187615e-10 + art_sys_155: -3.87681787e-10 + art_sys_156: -4.50499283e-10 + art_sys_157: -3.11220774e-10 + art_sys_158: -0.0 + art_sys_159: 2.65221848e-08 + art_sys_160: 2.65221848e-08 + art_sys_161: 1.03542801e-09 + art_sys_162: -3.13687890e-22 + art_sys_163: -0.0 + art_sys_164: -1.66350937e-22 + art_sys_165: 1.00268171e-17 + art_sys_166: 6.28904915e-18 + art_sys_167: -6.11965533e-18 + art_sys_168: 1.78333697e-18 + art_sys_169: 7.49198666e-19 + art_sys_170: -1.88736781e-18 + art_sys_171: 1.70676653e-20 + art_sys_172: 7.41443977e-20 + art_sys_173: -2.28336609e-19 + art_sys_174: -3.64061158e-22 + art_sys_175: 1.97654730e-21 + art_sys_176: 8.51423593e-22 + art_sys_177: 2.35531469e-21 + art_sys_178: 7.74149975e-22 + art_sys_179: 8.14312095e-22 + art_sys_180: 1.59775505e-21 + art_sys_181: -2.44047946e-23 + art_sys_182: 2.81810799e-23 + art_sys_183: 8.03489328e-25 + art_sys_184: -1.93644918e-25 + art_sys_185: -3.21403773e-24 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -14498,191 +14498,191 @@ bins: RelativeStatFSR-: -3.33428908e-08 luminosity_uncertainty: 3.92446600e-07 uncorrelated_uncertainty: 1.50941000e-07 -- art_sys_1: -3.65394628e-69 - art_sys_2: 1.37647931e-57 - art_sys_3: 3.36939929e-59 +- art_sys_1: 3.85758938e-69 + art_sys_2: -2.21043191e-56 + art_sys_3: 3.36939874e-59 art_sys_4: -7.05399113e-39 - art_sys_5: 6.97087046e-53 - art_sys_6: -4.55268177e-56 + art_sys_5: 7.04958816e-53 + art_sys_6: -8.59615998e-56 art_sys_7: 5.59801509e-37 - art_sys_8: -7.42088780e-52 + art_sys_8: -7.31275587e-52 art_sys_9: -3.06976053e-36 - art_sys_10: 9.11223803e-55 - art_sys_11: -1.40403742e-49 + art_sys_10: -2.39843546e-53 + art_sys_11: 2.78016020e-50 art_sys_12: -7.68168717e-35 - art_sys_13: -6.96922764e-48 - art_sys_14: -2.38535367e-32 - art_sys_15: -8.40416094e-47 - art_sys_16: -1.50058273e-31 - art_sys_17: -7.11366936e-48 - art_sys_18: 9.26696722e-44 - art_sys_19: 5.46666879e-31 - art_sys_20: -7.38842962e-47 - art_sys_21: -3.51056234e-42 - art_sys_22: 2.25932946e-46 + art_sys_13: -1.31386299e-50 + art_sys_14: 2.38535367e-32 + art_sys_15: -1.83689100e-47 + art_sys_16: 1.50058273e-31 + art_sys_17: -5.77003708e-48 + art_sys_18: 9.27009102e-44 + art_sys_19: -5.46666879e-31 + art_sys_20: -7.35270737e-47 + art_sys_21: -3.51082330e-42 + art_sys_22: 1.69865279e-46 art_sys_23: -8.81109584e-31 - art_sys_24: 1.80426329e-39 - art_sys_25: 3.96788168e-28 + art_sys_24: 1.80426319e-39 + art_sys_25: -3.96788167e-28 art_sys_26: -1.07506738e-27 - art_sys_27: 1.08849222e-35 - art_sys_28: 7.59643514e-39 - art_sys_29: -1.40936446e-33 - art_sys_30: 8.46877797e-27 - art_sys_31: 6.90269771e-38 - art_sys_32: -1.62671600e-31 - art_sys_33: -2.02356929e-25 - art_sys_34: 2.12782174e-24 - art_sys_35: -8.20720055e-35 - art_sys_36: 7.45462257e-15 - art_sys_37: 4.34194130e-15 - art_sys_38: -1.96741037e-16 - art_sys_39: 7.10870433e-16 - art_sys_40: 6.26893206e-17 - art_sys_41: -5.95374385e-17 - art_sys_42: 4.47981499e-17 - art_sys_43: 4.05593732e-17 - art_sys_44: -3.57716535e-17 - art_sys_45: -1.20919779e-16 - art_sys_46: -1.58663416e-16 - art_sys_47: -2.58292189e-26 - art_sys_48: -1.44982540e-23 - art_sys_49: 1.61448795e-22 - art_sys_50: -6.00000808e-17 - art_sys_51: 8.90072135e-17 - art_sys_52: 1.56558521e-29 - art_sys_53: 7.54980488e-20 - art_sys_54: -8.48743929e-20 - art_sys_55: -1.22456733e-18 - art_sys_56: -5.41178843e-28 - art_sys_57: 2.00575738e-16 - art_sys_58: -7.35734740e-17 - art_sys_59: 1.73357174e-19 - art_sys_60: 2.40397830e-20 - art_sys_61: 7.73521393e-17 - art_sys_62: -2.05121292e-25 - art_sys_63: 8.36255553e-20 - art_sys_64: -2.91450116e-14 - art_sys_65: -5.56225611e-15 - art_sys_66: -7.08764696e-15 - art_sys_67: 4.04075826e-14 - art_sys_68: -1.14146221e-14 - art_sys_69: 1.17470298e-14 - art_sys_70: 1.49058942e-14 - art_sys_71: 1.05583596e-14 - art_sys_72: 9.53817479e-16 - art_sys_73: 6.06191281e-16 - art_sys_74: -1.00499492e-16 - art_sys_75: -1.16575905e-15 - art_sys_76: -3.66481396e-14 - art_sys_77: -7.19189062e-15 - art_sys_78: -1.65584646e-14 - art_sys_79: -5.99546229e-16 - art_sys_80: -1.56301247e-15 - art_sys_81: 5.33870101e-16 - art_sys_82: 2.47965749e-18 - art_sys_83: 1.34372548e-15 - art_sys_84: 5.35964989e-16 - art_sys_85: -5.05448843e-16 - art_sys_86: 4.40657158e-17 - art_sys_87: 4.43294745e-16 - art_sys_88: 1.84191311e-16 - art_sys_89: -5.05706959e-17 - art_sys_90: 1.95972542e-16 - art_sys_91: 1.33461267e-17 - art_sys_92: 3.43590542e-17 - art_sys_93: -1.47429926e-17 - art_sys_94: -1.78958344e-16 - art_sys_95: 3.86178253e-16 - art_sys_96: 2.43390675e-16 - art_sys_97: -1.10463302e-21 - art_sys_98: 3.79733326e-16 - art_sys_99: 6.78646128e-14 - art_sys_100: 3.28570771e-17 - art_sys_101: 3.67462892e-13 - art_sys_102: 6.52643506e-15 - art_sys_103: -1.94528277e-18 - art_sys_104: 1.51612122e-11 - art_sys_105: -1.99846715e-11 - art_sys_106: 2.18311267e-11 - art_sys_107: -1.76263804e-14 - art_sys_108: -3.24964075e-11 - art_sys_109: -1.86858632e-10 - art_sys_110: -8.90456812e-14 - art_sys_111: 8.78705997e-11 - art_sys_112: 2.73657215e-14 - art_sys_113: 3.10032744e-15 - art_sys_114: -5.31219442e-12 - art_sys_115: -3.18779534e-12 - art_sys_116: 1.46555689e-10 - art_sys_117: -1.14879152e-10 - art_sys_118: -1.41592976e-11 - art_sys_119: 1.90419091e-11 - art_sys_120: -3.58403263e-13 - art_sys_121: 6.69024695e-11 - art_sys_122: -3.55189920e-12 - art_sys_123: -6.98518578e-11 - art_sys_124: -2.37291565e-10 - art_sys_125: 1.76443374e-11 - art_sys_126: -8.39109922e-12 - art_sys_127: -1.76170408e-08 - art_sys_128: -7.86002612e-11 - art_sys_129: -2.94028273e-11 - art_sys_130: 3.27724075e-08 - art_sys_131: 3.42148161e-10 - art_sys_132: -2.94594055e-09 - art_sys_133: -1.40246474e-08 - art_sys_134: 1.56484220e-09 - art_sys_135: -6.74886358e-09 - art_sys_136: 5.82098982e-11 - art_sys_137: -4.67603363e-08 - art_sys_138: -1.85993961e-08 - art_sys_139: 1.80530567e-08 - art_sys_140: 1.23446369e-11 - art_sys_141: -1.95483516e-08 - art_sys_142: 8.40853377e-08 - art_sys_143: 8.57668832e-10 - art_sys_144: -9.86482695e-10 - art_sys_145: -1.69919698e-07 - art_sys_146: -1.54072160e-08 - art_sys_147: 3.21219609e-11 - art_sys_148: 7.44491032e-12 - art_sys_149: -2.60061258e-07 - art_sys_150: 1.15767863e-07 - art_sys_151: -2.78828716e-07 - art_sys_152: -2.38637829e-10 - art_sys_153: -2.16655030e-07 - art_sys_154: -5.46602679e-17 - art_sys_155: -1.47762377e-09 - art_sys_156: -0.0 - art_sys_157: 2.05623735e-09 - art_sys_158: 0.0 - art_sys_159: -2.73629387e-07 - art_sys_160: -2.56312756e-08 - art_sys_161: -9.74751169e-09 - art_sys_162: -9.74751169e-09 - art_sys_163: 1.23374025e-08 - art_sys_164: 1.23374025e-08 - art_sys_165: -1.04388306e-22 - art_sys_166: 3.23045053e-23 - art_sys_167: 0.0 - art_sys_168: -1.51620689e-18 - art_sys_169: -5.58662149e-19 - art_sys_170: 1.73550894e-19 - art_sys_171: -2.83002378e-19 - art_sys_172: 5.77043644e-21 - art_sys_173: 6.69532629e-21 - art_sys_174: 5.15501397e-21 - art_sys_175: 1.03271032e-21 - art_sys_176: 8.29414770e-22 - art_sys_177: 2.04588230e-22 - art_sys_178: 2.60651359e-22 - art_sys_179: 7.77776148e-22 - art_sys_180: -5.86150408e-21 - art_sys_181: -5.39341701e-22 - art_sys_182: -1.16531536e-22 - art_sys_183: 1.57574082e-24 - art_sys_184: -5.54023945e-25 - art_sys_185: -1.76226268e-25 + art_sys_27: -8.81211388e-36 + art_sys_28: -9.58657916e-36 + art_sys_29: -1.03880915e-15 + art_sys_30: 8.42190323e-15 + art_sys_31: -6.59673348e-16 + art_sys_32: -5.83076638e-16 + art_sys_33: 1.00991522e-16 + art_sys_34: 9.40611342e-18 + art_sys_35: 2.24730696e-17 + art_sys_36: -3.56631210e-33 + art_sys_37: 8.46876653e-27 + art_sys_38: 1.04922663e-16 + art_sys_39: -8.88800915e-34 + art_sys_40: -1.66016387e-31 + art_sys_41: 2.02362355e-25 + art_sys_42: 1.80532569e-17 + art_sys_43: -2.12789109e-24 + art_sys_44: -2.52295512e-16 + art_sys_45: -1.25563926e-34 + art_sys_46: 5.56040403e-26 + art_sys_47: -3.06413875e-16 + art_sys_48: -1.99422204e-23 + art_sys_49: -3.46408591e-22 + art_sys_50: 1.56239676e-16 + art_sys_51: 2.63006528e-16 + art_sys_52: -1.65967780e-19 + art_sys_53: 3.24880471e-29 + art_sys_54: -2.51565499e-19 + art_sys_55: -2.56824256e-18 + art_sys_56: -1.10873450e-27 + art_sys_57: 4.14419897e-14 + art_sys_58: -1.00515423e-14 + art_sys_59: 3.12842133e-15 + art_sys_60: 3.67096425e-16 + art_sys_61: -7.81736978e-15 + art_sys_62: 1.63506992e-14 + art_sys_63: 6.57292895e-15 + art_sys_64: -1.72124260e-14 + art_sys_65: 2.25567090e-14 + art_sys_66: -1.41829102e-16 + art_sys_67: -3.31227234e-15 + art_sys_68: 4.15747433e-15 + art_sys_69: -1.02235169e-16 + art_sys_70: 1.75602013e-19 + art_sys_71: 3.81801629e-20 + art_sys_72: 4.33413994e-25 + art_sys_73: 9.98435094e-17 + art_sys_74: -2.74387460e-20 + art_sys_75: 4.63709561e-15 + art_sys_76: -2.72692310e-14 + art_sys_77: -8.93683076e-15 + art_sys_78: 6.55492241e-18 + art_sys_79: 2.13035881e-15 + art_sys_80: -6.50183891e-18 + art_sys_81: 2.32239452e-16 + art_sys_82: -5.86444522e-16 + art_sys_83: -6.12010243e-16 + art_sys_84: -2.00090047e-15 + art_sys_85: 1.14209225e-16 + art_sys_86: -6.52969549e-16 + art_sys_87: -4.60455513e-15 + art_sys_88: 1.36382798e-12 + art_sys_89: 3.45924129e-11 + art_sys_90: -5.40217873e-18 + art_sys_91: -6.22602075e-16 + art_sys_92: -2.76543980e-16 + art_sys_93: -1.62581200e-21 + art_sys_94: 5.10445570e-16 + art_sys_95: 1.89076695e-13 + art_sys_96: 6.34807110e-12 + art_sys_97: -1.09710573e-15 + art_sys_98: 1.01767319e-12 + art_sys_99: -5.63913921e-19 + art_sys_100: 2.36175699e-14 + art_sys_101: 4.25248660e-11 + art_sys_102: -9.78480262e-13 + art_sys_103: -2.80484267e-12 + art_sys_104: -6.15805983e-11 + art_sys_105: -4.44926387e-11 + art_sys_106: -2.46017414e-10 + art_sys_107: -5.82733702e-17 + art_sys_108: 1.46679610e-11 + art_sys_109: -1.49940983e-13 + art_sys_110: -3.50179848e-11 + art_sys_111: -1.41130742e-11 + art_sys_112: -1.02723187e-08 + art_sys_113: -2.64551555e-11 + art_sys_114: -5.92181664e-11 + art_sys_115: -5.32452991e-10 + art_sys_116: -5.09451869e-11 + art_sys_117: -4.27628271e-13 + art_sys_118: -3.69598933e-11 + art_sys_119: 2.52941872e-10 + art_sys_120: 2.56233488e-10 + art_sys_121: 1.80004370e-09 + art_sys_122: -6.19496621e-11 + art_sys_123: 9.00146644e-10 + art_sys_124: 2.80187050e-09 + art_sys_125: 5.35232151e-09 + art_sys_126: 3.15967405e-09 + art_sys_127: 3.00042761e-08 + art_sys_128: -7.43713089e-09 + art_sys_129: 4.75764739e-09 + art_sys_130: -7.13712345e-09 + art_sys_131: 6.43287218e-09 + art_sys_132: -9.98740826e-08 + art_sys_133: 1.53280185e-09 + art_sys_134: 1.41758684e-09 + art_sys_135: 1.01606539e-07 + art_sys_136: 1.73023739e-08 + art_sys_137: 1.84112322e-07 + art_sys_138: -7.26284777e-09 + art_sys_139: -3.51873730e-08 + art_sys_140: -1.41947007e-15 + art_sys_141: -2.17742581e-08 + art_sys_142: -0.0 + art_sys_143: -9.65001619e-07 + art_sys_144: -2.35199766e-07 + art_sys_145: 3.60607682e-08 + art_sys_146: 2.52798966e-12 + art_sys_147: -1.16969899e-12 + art_sys_148: 5.11917914e-10 + art_sys_149: 7.86815909e-11 + art_sys_150: 1.48222528e-11 + art_sys_151: -4.48753153e-10 + art_sys_152: 1.99754839e-11 + art_sys_153: 2.62123161e-12 + art_sys_154: -3.67496349e-11 + art_sys_155: 7.99176805e-11 + art_sys_156: 5.11447862e-12 + art_sys_157: 5.12710018e-12 + art_sys_158: -0.0 + art_sys_159: 1.72323959e-08 + art_sys_160: 1.72323959e-08 + art_sys_161: -1.26466547e-09 + art_sys_162: 4.53851821e-22 + art_sys_163: 0.0 + art_sys_164: 2.69028846e-22 + art_sys_165: -2.19342448e-18 + art_sys_166: -1.37811314e-18 + art_sys_167: 1.33769318e-18 + art_sys_168: -3.89572712e-19 + art_sys_169: -1.63143888e-19 + art_sys_170: 4.14614342e-19 + art_sys_171: -4.83942425e-21 + art_sys_172: -1.62097083e-20 + art_sys_173: 4.98902112e-20 + art_sys_174: 3.30210092e-23 + art_sys_175: -4.31245978e-22 + art_sys_176: -1.86888145e-22 + art_sys_177: -5.14434203e-22 + art_sys_178: -1.69132812e-22 + art_sys_179: -1.77963065e-22 + art_sys_180: -3.49038589e-22 + art_sys_181: 5.32393623e-24 + art_sys_182: -6.15266406e-24 + art_sys_183: -1.74891349e-25 + art_sys_184: 4.18515063e-26 + art_sys_185: 1.65361464e-23 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -17432,167 +17432,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: 1.05359498e-72 - art_sys_26: 5.51921205e-67 - art_sys_27: -3.46651558e-60 - art_sys_28: 2.07398145e-59 - art_sys_29: 7.96588525e-49 - art_sys_30: 6.47452834e-46 - art_sys_31: 3.02855763e-43 - art_sys_32: -3.61777529e-35 - art_sys_33: -1.08417389e-29 - art_sys_34: -1.09310478e-22 - art_sys_35: -7.66289654e-24 - art_sys_36: 2.30114783e+02 - art_sys_37: 4.54626915e+01 - art_sys_38: -1.71049626e+01 - art_sys_39: -2.60546159e+00 - art_sys_40: 4.22559009e-02 - art_sys_41: -1.48247833e-02 - art_sys_42: 8.59232927e-03 - art_sys_43: -1.64569667e-03 - art_sys_44: -4.98612036e-06 - art_sys_45: 2.00633842e-06 - art_sys_46: -8.26712093e-07 - art_sys_47: -1.33604046e-18 - art_sys_48: -1.50450689e-19 - art_sys_49: 2.63421930e-19 + art_sys_25: -6.55939534e-33 + art_sys_26: 1.67346324e-26 + art_sys_27: 8.69096569e-19 + art_sys_28: -2.12527877e-18 + art_sys_29: -2.30114783e+02 + art_sys_30: -4.54626915e+01 + art_sys_31: 1.71049626e+01 + art_sys_32: 2.60546159e+00 + art_sys_33: 4.22559009e-02 + art_sys_34: 1.48247833e-02 + art_sys_35: -8.59232927e-03 + art_sys_36: 8.12716696e-18 + art_sys_37: -4.21963157e-18 + art_sys_38: -1.64569667e-03 + art_sys_39: 6.00864937e-19 + art_sys_40: 1.62259459e-17 + art_sys_41: 3.29757358e-18 + art_sys_42: 4.98612036e-06 + art_sys_43: 4.37816296e-18 + art_sys_44: -2.00633842e-06 + art_sys_45: 2.01442235e-18 + art_sys_46: 2.43219571e-18 + art_sys_47: 8.26712093e-07 + art_sys_48: 4.66693972e-18 + art_sys_49: -1.74041445e-19 art_sys_50: -4.03452088e-08 - art_sys_51: 2.77149510e-08 - art_sys_52: -8.81518545e-19 - art_sys_53: 2.53782791e-18 - art_sys_54: 5.12569950e-19 - art_sys_55: -5.49797976e-20 - art_sys_56: 1.86813558e-19 - art_sys_57: 5.44845891e-09 - art_sys_58: -5.09129213e-10 - art_sys_59: 4.95566353e-19 - art_sys_60: -1.81851678e-20 - art_sys_61: 2.21828369e-10 - art_sys_62: -7.54602682e-20 - art_sys_63: 5.02859285e-20 - art_sys_64: -3.88620682e-15 - art_sys_65: -2.02718898e-16 - art_sys_66: -1.71713477e-16 - art_sys_67: 1.17421064e-17 - art_sys_68: -7.55637540e-19 - art_sys_69: 3.41522977e-19 - art_sys_70: 8.50179672e-20 - art_sys_71: 3.04969846e-21 - art_sys_72: -7.90366223e-22 - art_sys_73: 1.75798750e-21 - art_sys_74: -4.00235685e-11 - art_sys_75: -4.29920194e-21 - art_sys_76: 4.54483221e-23 - art_sys_77: -1.31772564e-24 - art_sys_78: -2.49139909e-24 - art_sys_79: 5.45053996e-20 - art_sys_80: 6.21730236e-24 - art_sys_81: 4.61391165e-20 - art_sys_82: -3.22617632e-19 - art_sys_83: -5.33975355e-25 - art_sys_84: -5.04780324e-25 - art_sys_85: 1.02668645e-25 - art_sys_86: -9.06139692e-26 - art_sys_87: 9.39604740e-21 - art_sys_88: 1.49651393e-21 - art_sys_89: 3.70943244e-26 - art_sys_90: 1.76999558e-22 - art_sys_91: 6.21349883e-20 - art_sys_92: -3.13549775e-26 - art_sys_93: 4.31129399e-28 - art_sys_94: 9.26375174e-22 - art_sys_95: -4.24577153e-13 - art_sys_96: -9.13532287e-20 - art_sys_97: 5.71343747e-21 - art_sys_98: 1.18081122e-13 - art_sys_99: 1.54061483e-19 - art_sys_100: -8.91947133e-14 - art_sys_101: -1.41049432e-20 - art_sys_102: 4.06995747e-14 - art_sys_103: -8.21960837e-20 - art_sys_104: -2.09389537e-19 - art_sys_105: 1.34427695e-22 - art_sys_106: 5.55578380e-19 - art_sys_107: -1.96151442e-14 - art_sys_108: 7.51862589e-24 - art_sys_109: 4.52221716e-22 - art_sys_110: 8.63565278e-15 - art_sys_111: 6.36189864e-20 - art_sys_112: -1.78278262e-19 - art_sys_113: 2.48684673e-20 - art_sys_114: 2.25001807e-22 - art_sys_115: 4.05196983e-21 - art_sys_116: 3.26765530e-15 - art_sys_117: 6.91727603e-22 - art_sys_118: -8.66907853e-21 - art_sys_119: -1.19677819e-15 - art_sys_120: -2.47726561e-20 - art_sys_121: -1.33252645e-22 - art_sys_122: -3.65420463e-20 - art_sys_123: -4.28335001e-16 - art_sys_124: 1.34714901e-20 - art_sys_125: 1.11971731e-22 - art_sys_126: 5.54321146e-21 - art_sys_127: 1.41819214e-16 - art_sys_128: -2.38354679e-20 - art_sys_129: 4.11886697e-23 - art_sys_130: -5.01501071e-17 - art_sys_131: -6.68140538e-23 - art_sys_132: 7.79727694e-20 - art_sys_133: -1.62347410e-17 - art_sys_134: -3.46857388e-20 - art_sys_135: -6.64615304e-21 - art_sys_136: -8.79580766e-24 - art_sys_137: -5.33440644e-18 - art_sys_138: -5.03600218e-21 - art_sys_139: -1.61010653e-18 - art_sys_140: -1.68057774e-24 - art_sys_141: -1.08479122e-20 - art_sys_142: 5.17670684e-21 - art_sys_143: -4.93559603e-19 - art_sys_144: 2.32067572e-23 - art_sys_145: 4.25948360e-21 - art_sys_146: -1.65763924e-19 - art_sys_147: 3.89601732e-24 - art_sys_148: 3.48845916e-25 - art_sys_149: -1.35956610e-21 - art_sys_150: -2.09029513e-20 - art_sys_151: 8.47788819e-22 - art_sys_152: -1.02665672e-24 - art_sys_153: 2.37511555e-21 - art_sys_154: -2.77785571e-21 - art_sys_155: 1.01021756e-24 - art_sys_156: 0.0 - art_sys_157: 1.39615792e-21 - art_sys_158: 0.0 - art_sys_159: 2.17950890e-22 - art_sys_160: 4.78493267e-23 - art_sys_161: -1.01221912e-23 - art_sys_162: -1.01221912e-23 - art_sys_163: -1.71805583e-23 - art_sys_164: -1.71805583e-23 - art_sys_165: 1.84366451e-37 - art_sys_166: -6.06657963e-38 - art_sys_167: -0.0 - art_sys_168: -3.97148362e-31 - art_sys_169: -5.29282476e-29 - art_sys_170: 1.63170078e-28 - art_sys_171: 1.08325906e-27 - art_sys_172: 2.88732298e-29 - art_sys_173: 1.00552761e-29 - art_sys_174: 1.22611706e-29 - art_sys_175: -3.34477527e-30 - art_sys_176: 4.07265398e-31 - art_sys_177: -1.70536002e-33 - art_sys_178: -7.96782301e-34 - art_sys_179: -3.14389982e-37 - art_sys_180: 5.01427954e-36 - art_sys_181: -2.84807718e-32 - art_sys_182: 8.01459854e-33 - art_sys_183: 6.20834207e-35 - art_sys_184: 2.08414303e-36 - art_sys_185: -6.88816369e-39 + art_sys_51: -2.77149510e-08 + art_sys_52: -6.16545695e-20 + art_sys_53: 1.18268896e-18 + art_sys_54: -5.88375837e-19 + art_sys_55: -4.51431800e-20 + art_sys_56: 5.29039427e-20 + art_sys_57: -1.14890378e-15 + art_sys_58: -1.17233862e-16 + art_sys_59: 1.33771827e-16 + art_sys_60: -5.44845890e-09 + art_sys_61: -7.23109624e-18 + art_sys_62: -2.62124732e-19 + art_sys_63: -1.85059636e-19 + art_sys_64: 7.53564499e-20 + art_sys_65: -1.73699803e-20 + art_sys_66: 5.09129213e-10 + art_sys_67: 2.62107135e-21 + art_sys_68: 3.83428933e-21 + art_sys_69: 2.21828368e-10 + art_sys_70: 1.82922006e-19 + art_sys_71: -7.40926014e-19 + art_sys_72: 4.41288731e-20 + art_sys_73: -4.00235685e-11 + art_sys_74: 3.12285700e-19 + art_sys_75: -4.15325014e-20 + art_sys_76: -3.56057208e-23 + art_sys_77: -4.22855130e-24 + art_sys_78: -5.62301371e-24 + art_sys_79: 1.01336323e-19 + art_sys_80: 1.75563514e-19 + art_sys_81: -5.59864419e-24 + art_sys_82: -1.29802330e-24 + art_sys_83: -3.88036116e-25 + art_sys_84: 1.17805955e-20 + art_sys_85: -1.83216344e-25 + art_sys_86: -6.93233039e-26 + art_sys_87: -1.07909153e-20 + art_sys_88: 1.60257488e-21 + art_sys_89: -1.22904869e-22 + art_sys_90: -3.88984974e-19 + art_sys_91: 1.02330311e-19 + art_sys_92: -4.24577422e-13 + art_sys_93: 2.71636966e-20 + art_sys_94: -1.18081160e-13 + art_sys_95: 9.73776249e-21 + art_sys_96: -7.84343689e-22 + art_sys_97: 8.91943963e-14 + art_sys_98: -3.85116782e-21 + art_sys_99: 2.49534588e-20 + art_sys_100: 4.06993670e-14 + art_sys_101: -2.54050798e-20 + art_sys_102: 3.84300554e-22 + art_sys_103: -1.96150863e-14 + art_sys_104: 5.27267591e-20 + art_sys_105: 4.26907964e-22 + art_sys_106: 8.27188015e-21 + art_sys_107: 8.96268865e-22 + art_sys_108: -8.63555704e-15 + art_sys_109: -8.13130395e-20 + art_sys_110: -2.05028534e-22 + art_sys_111: -2.77662981e-19 + art_sys_112: 3.26761125e-15 + art_sys_113: -1.33910313e-23 + art_sys_114: 2.97845360e-19 + art_sys_115: 1.19681090e-15 + art_sys_116: 2.68941401e-20 + art_sys_117: -3.72715981e-23 + art_sys_118: 3.05270740e-19 + art_sys_119: 4.28359902e-16 + art_sys_120: -5.71746582e-20 + art_sys_121: 1.03248257e-20 + art_sys_122: 2.67356935e-20 + art_sys_123: 1.41802623e-16 + art_sys_124: 1.78756946e-21 + art_sys_125: -1.00121936e-20 + art_sys_126: 3.14237217e-20 + art_sys_127: 8.38131099e-21 + art_sys_128: 5.02286080e-17 + art_sys_129: -1.63117575e-17 + art_sys_130: -5.30321233e-18 + art_sys_131: -1.62664969e-18 + art_sys_132: -1.02834429e-20 + art_sys_133: -4.04173270e-21 + art_sys_134: 4.76710342e-19 + art_sys_135: 1.20659460e-20 + art_sys_136: 1.58887238e-19 + art_sys_137: 2.51475325e-21 + art_sys_138: -1.90536071e-20 + art_sys_139: 8.55450785e-22 + art_sys_140: -2.00296241e-23 + art_sys_141: -4.03620925e-21 + art_sys_142: -0.0 + art_sys_143: 4.66379870e-22 + art_sys_144: 2.25508211e-21 + art_sys_145: 2.96331763e-21 + art_sys_146: -2.18156468e-23 + art_sys_147: 3.79724092e-23 + art_sys_148: -7.42102880e-23 + art_sys_149: 5.23662902e-23 + art_sys_150: -7.20244098e-25 + art_sys_151: 1.85726387e-24 + art_sys_152: -1.83882909e-24 + art_sys_153: -8.04153070e-25 + art_sys_154: -1.12888243e-24 + art_sys_155: 2.49802493e-24 + art_sys_156: 1.03634040e-23 + art_sys_157: 6.13362846e-24 + art_sys_158: -0.0 + art_sys_159: -1.23368251e-22 + art_sys_160: -1.23368251e-22 + art_sys_161: -1.04317524e-23 + art_sys_162: 3.85854249e-36 + art_sys_163: 0.0 + art_sys_164: 2.35218063e-36 + art_sys_165: -7.14439114e-29 + art_sys_166: 8.88910785e-30 + art_sys_167: 2.72605347e-30 + art_sys_168: 2.69137789e-30 + art_sys_169: -1.71873836e-29 + art_sys_170: 7.23211121e-29 + art_sys_171: -1.02941048e-27 + art_sys_172: 1.01237985e-27 + art_sys_173: 2.28094956e-28 + art_sys_174: 3.55517701e-36 + art_sys_175: -1.71354259e-29 + art_sys_176: 1.97529693e-29 + art_sys_177: -3.82300642e-30 + art_sys_178: -3.81474618e-31 + art_sys_179: 6.12807913e-32 + art_sys_180: 1.94809947e-33 + art_sys_181: -1.84968434e-33 + art_sys_182: -4.49720231e-33 + art_sys_183: -4.29977355e-36 + art_sys_184: -8.84349945e-38 + art_sys_185: 3.25308331e-37 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -17723,167 +17723,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: 5.34939307e-73 - art_sys_26: 2.80225659e-67 - art_sys_27: -1.76004582e-60 - art_sys_28: 1.05301773e-59 - art_sys_29: 4.04450023e-49 - art_sys_30: 3.28729709e-46 - art_sys_31: 1.53768246e-43 - art_sys_32: -1.83684456e-35 - art_sys_33: -5.50465066e-30 - art_sys_34: -5.54999527e-23 - art_sys_35: -3.89066449e-24 - art_sys_36: 1.16855503e+02 - art_sys_37: -8.38645307e+01 - art_sys_38: 3.03338079e+01 - art_sys_39: 7.69466219e+00 - art_sys_40: -1.43335780e-01 - art_sys_41: 5.09411189e-02 - art_sys_42: -3.29568334e-02 - art_sys_43: 6.83247670e-03 - art_sys_44: 2.94756994e-05 - art_sys_45: -1.27260784e-05 - art_sys_46: 4.87358331e-06 - art_sys_47: -3.66065105e-19 - art_sys_48: -4.40917735e-19 - art_sys_49: -1.94505101e-18 + art_sys_25: -3.33095259e-33 + art_sys_26: 8.49808012e-27 + art_sys_27: 4.41339379e-19 + art_sys_28: -1.07924625e-18 + art_sys_29: -1.16855503e+02 + art_sys_30: 8.38645307e+01 + art_sys_31: -3.03338079e+01 + art_sys_32: -7.69466219e+00 + art_sys_33: -1.43335780e-01 + art_sys_34: -5.09411189e-02 + art_sys_35: 3.29568334e-02 + art_sys_36: 1.94693619e-17 + art_sys_37: 6.30880074e-18 + art_sys_38: 6.83247670e-03 + art_sys_39: -3.67397131e-18 + art_sys_40: -8.70996973e-18 + art_sys_41: -1.74401877e-17 + art_sys_42: -2.94756994e-05 + art_sys_43: 1.67375303e-18 + art_sys_44: 1.27260784e-05 + art_sys_45: -1.06095870e-18 + art_sys_46: 9.82945844e-20 + art_sys_47: -4.87358331e-06 + art_sys_48: 1.44453615e-18 + art_sys_49: 2.16703891e-19 art_sys_50: 3.79938190e-07 - art_sys_51: -1.81621939e-07 - art_sys_52: 1.76433521e-19 - art_sys_53: 1.95463449e-18 - art_sys_54: -8.76301533e-21 - art_sys_55: 7.69637038e-19 - art_sys_56: 4.70532785e-19 - art_sys_57: -4.19193226e-08 - art_sys_58: 3.50278979e-09 - art_sys_59: 7.15703480e-20 - art_sys_60: -3.27031886e-19 - art_sys_61: -1.54649961e-09 - art_sys_62: 2.55079522e-20 - art_sys_63: 8.66188335e-20 - art_sys_64: 1.35858649e-16 - art_sys_65: 1.28215909e-15 - art_sys_66: -2.67215290e-16 - art_sys_67: 1.43315261e-18 - art_sys_68: -9.47102002e-19 - art_sys_69: -7.80816425e-20 - art_sys_70: 1.18709737e-20 - art_sys_71: -1.61199050e-21 - art_sys_72: 3.10703272e-21 - art_sys_73: -4.61412520e-21 - art_sys_74: 2.82167443e-10 - art_sys_75: -9.58052020e-21 - art_sys_76: -2.03910671e-22 - art_sys_77: 1.96792331e-23 - art_sys_78: -1.53235481e-23 - art_sys_79: 5.15099384e-20 - art_sys_80: -2.13739850e-23 - art_sys_81: 3.35250468e-20 - art_sys_82: -6.62272799e-20 - art_sys_83: 2.81667329e-24 - art_sys_84: 2.22360429e-24 - art_sys_85: -3.22631999e-25 - art_sys_86: 3.69078440e-25 - art_sys_87: -6.63874207e-20 - art_sys_88: -4.07214197e-21 - art_sys_89: -1.77240496e-25 - art_sys_90: -1.25256997e-22 - art_sys_91: -3.68993711e-20 - art_sys_92: 1.68008703e-25 - art_sys_93: -1.68439342e-26 - art_sys_94: -4.52468179e-21 - art_sys_95: 1.84321892e-12 - art_sys_96: 6.88242222e-20 - art_sys_97: -4.16810121e-20 - art_sys_98: -7.66141587e-13 - art_sys_99: -4.03396560e-20 - art_sys_100: 4.80617963e-13 - art_sys_101: 4.92279663e-19 - art_sys_102: -2.30566229e-13 - art_sys_103: 3.93544928e-19 - art_sys_104: 8.12116773e-19 - art_sys_105: -3.84746330e-22 - art_sys_106: -3.20100370e-18 - art_sys_107: 1.14059531e-13 - art_sys_108: -5.46692511e-22 - art_sys_109: -2.68022264e-21 - art_sys_110: -5.02352321e-14 - art_sys_111: -1.05484709e-19 - art_sys_112: 1.03021015e-18 - art_sys_113: -1.13066928e-19 - art_sys_114: -1.30905062e-21 - art_sys_115: 5.19861630e-21 - art_sys_116: -1.93975819e-14 - art_sys_117: -4.90957651e-21 - art_sys_118: 1.30070097e-19 - art_sys_119: 7.12721028e-15 - art_sys_120: 1.44772853e-19 - art_sys_121: 7.45370604e-22 - art_sys_122: 1.49542358e-19 - art_sys_123: 2.57355460e-15 - art_sys_124: -6.24608834e-20 - art_sys_125: -6.84580756e-22 - art_sys_126: -3.49665636e-20 - art_sys_127: -8.56399980e-16 - art_sys_128: 1.18865193e-19 - art_sys_129: 1.30902609e-23 - art_sys_130: 3.03729046e-16 - art_sys_131: 4.40614440e-22 - art_sys_132: -4.52781221e-19 - art_sys_133: 9.86714933e-17 - art_sys_134: 2.04886375e-19 - art_sys_135: 3.20383607e-20 - art_sys_136: 4.00221703e-23 - art_sys_137: 3.24614267e-17 - art_sys_138: 3.30642942e-20 - art_sys_139: 9.81442466e-18 - art_sys_140: 9.76898301e-24 - art_sys_141: 6.61282853e-20 - art_sys_142: -3.15271776e-20 - art_sys_143: 3.00990541e-18 - art_sys_144: -1.39309594e-22 - art_sys_145: -2.52857089e-20 - art_sys_146: 1.01143776e-18 - art_sys_147: -2.45441095e-23 - art_sys_148: -2.11192871e-24 - art_sys_149: 8.19276413e-21 - art_sys_150: 1.27595964e-19 - art_sys_151: -4.98371993e-21 - art_sys_152: 6.42637968e-24 - art_sys_153: -1.43815481e-20 - art_sys_154: 1.64885806e-20 - art_sys_155: -5.50040472e-24 - art_sys_156: -0.0 - art_sys_157: -7.95526265e-21 - art_sys_158: -0.0 - art_sys_159: -1.18605816e-21 - art_sys_160: -2.65109822e-22 - art_sys_161: 6.65317529e-23 - art_sys_162: 6.65317529e-23 - art_sys_163: 9.85005788e-23 - art_sys_164: 9.85005788e-23 - art_sys_165: -1.07087409e-36 - art_sys_166: 3.53387753e-37 - art_sys_167: 0.0 - art_sys_168: 2.54699110e-29 - art_sys_169: -9.05185019e-30 - art_sys_170: -4.40344068e-29 - art_sys_171: -9.16373513e-29 - art_sys_172: 1.45612248e-28 - art_sys_173: 1.63368967e-29 - art_sys_174: -3.44760020e-29 - art_sys_175: 4.11963161e-30 - art_sys_176: -5.28890853e-31 - art_sys_177: 8.32977701e-33 - art_sys_178: -1.43470140e-33 - art_sys_179: 1.57939373e-36 - art_sys_180: -2.75481108e-35 - art_sys_181: 4.26977156e-32 - art_sys_182: -4.78441495e-32 - art_sys_183: 2.65268401e-33 - art_sys_184: -8.25737273e-36 - art_sys_185: -3.09874006e-38 + art_sys_51: 1.81621939e-07 + art_sys_52: -5.87937954e-20 + art_sys_53: 6.74389382e-19 + art_sys_54: 8.85946704e-20 + art_sys_55: 2.12594908e-19 + art_sys_56: -4.81603796e-20 + art_sys_57: 3.50764827e-16 + art_sys_58: 2.09576258e-16 + art_sys_59: -2.94213351e-17 + art_sys_60: 4.19193226e-08 + art_sys_61: 1.21842950e-17 + art_sys_62: 2.16937657e-19 + art_sys_63: 6.96366871e-19 + art_sys_64: -5.62481908e-20 + art_sys_65: 1.01180551e-20 + art_sys_66: -3.50278979e-09 + art_sys_67: -2.95557771e-21 + art_sys_68: -4.67950176e-21 + art_sys_69: -1.54649960e-09 + art_sys_70: 9.07222035e-20 + art_sys_71: 9.84912245e-20 + art_sys_72: 1.25050587e-19 + art_sys_73: 2.82167443e-10 + art_sys_74: -2.19465300e-18 + art_sys_75: -2.04478577e-20 + art_sys_76: 1.43835864e-22 + art_sys_77: 2.41935629e-23 + art_sys_78: 1.90734907e-23 + art_sys_79: -1.04555061e-19 + art_sys_80: -7.62094195e-19 + art_sys_81: 4.64766632e-24 + art_sys_82: 4.34487653e-24 + art_sys_83: 2.35812723e-24 + art_sys_84: 4.76346444e-20 + art_sys_85: 9.51398860e-25 + art_sys_86: 1.15210225e-25 + art_sys_87: 1.13261410e-20 + art_sys_88: -3.60187700e-21 + art_sys_89: 2.73700823e-21 + art_sys_90: 2.36771693e-18 + art_sys_91: 1.51680754e-19 + art_sys_92: 1.84322054e-12 + art_sys_93: -4.02334349e-19 + art_sys_94: 7.66141734e-13 + art_sys_95: 4.91338896e-20 + art_sys_96: -7.60957076e-22 + art_sys_97: -4.80616226e-13 + art_sys_98: 2.25603475e-20 + art_sys_99: -5.04475964e-20 + art_sys_100: -2.30565071e-13 + art_sys_101: 4.18605422e-20 + art_sys_102: -6.77017756e-22 + art_sys_103: 1.14059194e-13 + art_sys_104: -1.36502088e-19 + art_sys_105: -2.02731931e-21 + art_sys_106: -4.43384219e-20 + art_sys_107: -1.71088203e-20 + art_sys_108: 5.02346787e-14 + art_sys_109: 4.34623587e-19 + art_sys_110: 1.28446636e-21 + art_sys_111: 1.58143852e-18 + art_sys_112: -1.93973189e-14 + art_sys_113: 2.66753378e-22 + art_sys_114: -1.61431322e-18 + art_sys_115: -7.12740389e-15 + art_sys_116: -1.53566909e-19 + art_sys_117: 2.19355733e-22 + art_sys_118: -1.65890630e-18 + art_sys_119: -2.57370059e-15 + art_sys_120: 2.98421191e-19 + art_sys_121: -5.98497042e-20 + art_sys_122: -1.54516105e-19 + art_sys_123: -8.56299390e-16 + art_sys_124: -3.86333006e-21 + art_sys_125: 3.48251396e-20 + art_sys_126: -1.86812378e-19 + art_sys_127: -4.11855530e-20 + art_sys_128: -3.04202873e-16 + art_sys_129: 9.91371468e-17 + art_sys_130: 3.22723792e-17 + art_sys_131: 9.91456402e-18 + art_sys_132: 6.04151213e-20 + art_sys_133: 2.45221823e-20 + art_sys_134: -2.90785105e-18 + art_sys_135: -6.67368421e-20 + art_sys_136: -9.69555010e-19 + art_sys_137: -1.73800711e-20 + art_sys_138: 1.16306632e-19 + art_sys_139: -5.26217610e-21 + art_sys_140: 1.98656591e-22 + art_sys_141: 2.45698230e-20 + art_sys_142: 0.0 + art_sys_143: -3.46968514e-21 + art_sys_144: -1.39075443e-20 + art_sys_145: -1.80071276e-20 + art_sys_146: 1.02828650e-22 + art_sys_147: -2.96347332e-22 + art_sys_148: 3.76099975e-22 + art_sys_149: -1.19081808e-22 + art_sys_150: 9.32481990e-24 + art_sys_151: 7.72726389e-25 + art_sys_152: 7.21819237e-24 + art_sys_153: 6.65637902e-25 + art_sys_154: 6.76543426e-24 + art_sys_155: -1.51299014e-23 + art_sys_156: -6.31690790e-23 + art_sys_157: -3.73641848e-23 + art_sys_158: 0.0 + art_sys_159: 7.56432880e-22 + art_sys_160: 7.56432880e-22 + art_sys_161: 6.23762515e-23 + art_sys_162: -2.30949147e-35 + art_sys_163: -0.0 + art_sys_164: -1.40884182e-35 + art_sys_165: 2.83584029e-29 + art_sys_166: -1.97229306e-29 + art_sys_167: 6.05465622e-30 + art_sys_168: 9.44910678e-30 + art_sys_169: -2.67266495e-29 + art_sys_170: -2.22920562e-29 + art_sys_171: -9.94615059e-29 + art_sys_172: 1.34082566e-27 + art_sys_173: -5.29551244e-28 + art_sys_174: -2.16194421e-35 + art_sys_175: -2.90347397e-30 + art_sys_176: -2.91126907e-29 + art_sys_177: 5.10391348e-30 + art_sys_178: 4.93720919e-31 + art_sys_179: -1.27415069e-31 + art_sys_180: -3.75139005e-32 + art_sys_181: 1.48610097e-32 + art_sys_182: -6.07962813e-32 + art_sys_183: -3.90827333e-34 + art_sys_184: 1.67390775e-36 + art_sys_185: -1.96432877e-36 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -18014,167 +18014,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: 5.06889612e-74 - art_sys_26: 2.65531947e-68 - art_sys_27: -1.66775732e-61 - art_sys_28: 9.97802452e-61 - art_sys_29: 3.83242572e-50 - art_sys_30: 3.11492673e-47 - art_sys_31: 1.45705365e-44 - art_sys_32: -1.74052910e-36 - art_sys_33: -5.21601275e-31 - art_sys_34: -5.25897970e-24 - art_sys_35: -3.68665640e-25 - art_sys_36: 1.10868380e+01 - art_sys_37: -8.34872430e+01 - art_sys_38: -2.81430208e+01 - art_sys_39: -1.18005223e+01 - art_sys_40: 4.78281847e-01 - art_sys_41: -1.31187661e-01 - art_sys_42: 1.01370950e-01 - art_sys_43: -2.22256904e-02 - art_sys_44: -8.54896383e-05 - art_sys_45: 4.60926146e-05 - art_sys_46: -1.68766902e-05 - art_sys_47: -8.74006583e-19 - art_sys_48: -5.27779951e-19 - art_sys_49: 9.35762689e-19 + art_sys_25: -3.16029015e-34 + art_sys_26: 8.06267823e-28 + art_sys_27: 4.18727213e-20 + art_sys_28: -1.02395072e-19 + art_sys_29: -1.10868380e+01 + art_sys_30: 8.34872430e+01 + art_sys_31: 2.81430208e+01 + art_sys_32: 1.18005223e+01 + art_sys_33: 4.78281847e-01 + art_sys_34: 1.31187661e-01 + art_sys_35: -1.01370950e-01 + art_sys_36: 9.92196824e-18 + art_sys_37: -5.81869546e-19 + art_sys_38: -2.22256904e-02 + art_sys_39: 5.47705807e-18 + art_sys_40: -1.13590161e-17 + art_sys_41: 3.03396699e-18 + art_sys_42: 8.54896383e-05 + art_sys_43: 7.38260006e-19 + art_sys_44: -4.60926146e-05 + art_sys_45: 2.94009006e-18 + art_sys_46: -1.57436946e-18 + art_sys_47: 1.68766902e-05 + art_sys_48: -4.74121191e-19 + art_sys_49: -3.37601242e-19 art_sys_50: -1.42846036e-06 - art_sys_51: 6.81980901e-07 - art_sys_52: 4.77510395e-19 - art_sys_53: 8.14347020e-19 - art_sys_54: 8.61923985e-19 - art_sys_55: -7.40464079e-19 - art_sys_56: -7.12739342e-20 - art_sys_57: 1.58174324e-07 - art_sys_58: -1.42506519e-08 - art_sys_59: -2.56585977e-19 - art_sys_60: -1.19790195e-19 - art_sys_61: 5.97313361e-09 - art_sys_62: 2.40685362e-19 - art_sys_63: 2.57724036e-19 - art_sys_64: -5.66928329e-16 - art_sys_65: -4.75197529e-16 - art_sys_66: 3.92094465e-17 - art_sys_67: -4.27039901e-17 - art_sys_68: 3.44653793e-19 - art_sys_69: -2.22425631e-20 - art_sys_70: 7.45566928e-20 - art_sys_71: -2.56609003e-20 - art_sys_72: -7.42158355e-21 - art_sys_73: 9.97271183e-21 - art_sys_74: -1.12200824e-09 - art_sys_75: -1.80801213e-21 - art_sys_76: 7.72929138e-22 - art_sys_77: -5.82995006e-23 - art_sys_78: 4.25642571e-23 - art_sys_79: -1.01384572e-19 - art_sys_80: 8.18284690e-23 - art_sys_81: -2.88120853e-19 - art_sys_82: -1.60950777e-19 - art_sys_83: -1.07595935e-23 - art_sys_84: -8.60375573e-24 - art_sys_85: 1.14834327e-24 - art_sys_86: -1.41895905e-24 - art_sys_87: 2.44352590e-19 - art_sys_88: 9.51202770e-21 - art_sys_89: 6.55331365e-25 - art_sys_90: -1.36743092e-21 - art_sys_91: -4.85171833e-20 - art_sys_92: -6.17249048e-25 - art_sys_93: 5.38485686e-26 - art_sys_94: 1.51149781e-20 - art_sys_95: -6.98563354e-12 - art_sys_96: -8.31227951e-20 - art_sys_97: 4.11414155e-20 - art_sys_98: 2.75772720e-12 - art_sys_99: 1.12638427e-19 - art_sys_100: -1.84614742e-12 - art_sys_101: -1.88434742e-18 - art_sys_102: 8.62038053e-13 - art_sys_103: -1.40989681e-18 - art_sys_104: -2.69462615e-18 - art_sys_105: 1.55481024e-21 - art_sys_106: 1.17167750e-17 - art_sys_107: -4.33101389e-13 - art_sys_108: 2.58094040e-21 - art_sys_109: 1.01399412e-20 - art_sys_110: 1.90420783e-13 - art_sys_111: 3.22473855e-19 - art_sys_112: -3.90995107e-18 - art_sys_113: 3.86105447e-19 - art_sys_114: 5.03296755e-21 - art_sys_115: -5.43499832e-20 - art_sys_116: 7.37538899e-14 - art_sys_117: 1.79777777e-20 - art_sys_118: -6.38488820e-19 - art_sys_119: -2.71714089e-14 - art_sys_120: -5.46643367e-19 - art_sys_121: -2.59597337e-21 - art_sys_122: -4.84420986e-19 - art_sys_123: -9.81570716e-15 - art_sys_124: 2.28986984e-19 - art_sys_125: 2.61853165e-21 - art_sys_126: 1.32257833e-19 - art_sys_127: 3.27297984e-15 - art_sys_128: -4.03656565e-19 - art_sys_129: -7.98826167e-23 - art_sys_130: -1.16116309e-15 - art_sys_131: -1.65830653e-21 - art_sys_132: 1.71020632e-18 - art_sys_133: -3.77510672e-16 - art_sys_134: -7.82057089e-19 - art_sys_135: -1.12487666e-19 - art_sys_136: -1.67813544e-22 - art_sys_137: -1.24249355e-16 - art_sys_138: -1.31418529e-19 - art_sys_139: -3.75733940e-17 - art_sys_140: -3.81425307e-23 - art_sys_141: -2.52934095e-19 - art_sys_142: 1.20766373e-19 - art_sys_143: -1.15255978e-17 - art_sys_144: 5.31669087e-22 - art_sys_145: 9.35151122e-20 - art_sys_146: -3.87331007e-18 - art_sys_147: 9.42075886e-23 - art_sys_148: 8.08602840e-24 - art_sys_149: -3.13035150e-20 - art_sys_150: -4.88641709e-19 - art_sys_151: 1.88022595e-20 - art_sys_152: -2.47894438e-23 - art_sys_153: 5.49252377e-20 - art_sys_154: -6.28008983e-20 - art_sys_155: 2.01534539e-23 - art_sys_156: 0.0 - art_sys_157: 2.96724695e-20 - art_sys_158: 0.0 - art_sys_159: 4.32607622e-21 - art_sys_160: 9.76447397e-22 - art_sys_161: -2.63523526e-22 - art_sys_162: -2.63523526e-22 - art_sys_163: -3.67609951e-22 - art_sys_164: -3.67609951e-22 - art_sys_165: 4.02149964e-36 - art_sys_166: -1.32878118e-36 - art_sys_167: -0.0 - art_sys_168: -5.18227960e-30 - art_sys_169: -4.33603252e-29 - art_sys_170: 5.51827414e-29 - art_sys_171: -8.80123030e-28 - art_sys_172: 4.65119151e-28 - art_sys_173: 5.07168024e-29 - art_sys_174: 1.66466784e-29 - art_sys_175: -2.83129840e-30 - art_sys_176: 9.33598065e-31 - art_sys_177: -2.70612120e-33 - art_sys_178: 1.28423161e-33 - art_sys_179: -5.56929832e-36 - art_sys_180: 1.00914030e-34 - art_sys_181: -3.85183549e-32 - art_sys_182: -4.98670062e-32 - art_sys_183: 4.28490692e-33 - art_sys_184: -7.82233968e-36 - art_sys_185: -1.22387825e-37 + art_sys_51: -6.81980901e-07 + art_sys_52: 5.15950552e-19 + art_sys_53: 7.69163307e-19 + art_sys_54: -3.92546810e-19 + art_sys_55: 1.32639608e-19 + art_sys_56: -1.37180283e-19 + art_sys_57: -7.37977100e-16 + art_sys_58: 2.00382196e-16 + art_sys_59: 2.75982274e-17 + art_sys_60: -1.58174324e-07 + art_sys_61: 1.40760221e-17 + art_sys_62: 2.13279659e-18 + art_sys_63: 2.52591714e-19 + art_sys_64: -8.21933143e-20 + art_sys_65: 2.42020320e-20 + art_sys_66: 1.42506519e-08 + art_sys_67: 5.66032047e-22 + art_sys_68: 4.91451456e-21 + art_sys_69: 5.97313356e-09 + art_sys_70: -9.57152995e-21 + art_sys_71: 7.32306991e-19 + art_sys_72: 3.38231852e-20 + art_sys_73: -1.12200824e-09 + art_sys_74: 8.20024312e-18 + art_sys_75: 1.87064962e-21 + art_sys_76: -5.47370643e-22 + art_sys_77: -8.93264880e-23 + art_sys_78: -6.46434924e-23 + art_sys_79: 6.32741779e-20 + art_sys_80: 3.14746898e-18 + art_sys_81: -2.20968669e-24 + art_sys_82: -1.66017002e-23 + art_sys_83: -8.74814317e-24 + art_sys_84: 4.14822609e-20 + art_sys_85: -3.36098187e-24 + art_sys_86: -5.23700190e-25 + art_sys_87: 8.34248810e-21 + art_sys_88: 1.07996967e-20 + art_sys_89: -1.12124744e-20 + art_sys_90: -9.19386510e-18 + art_sys_91: -5.56260543e-19 + art_sys_92: -6.98563939e-12 + art_sys_93: 1.37473003e-18 + art_sys_94: -2.75772779e-12 + art_sys_95: -6.65775524e-20 + art_sys_96: -3.64905785e-21 + art_sys_97: 1.84614077e-12 + art_sys_98: 1.18486136e-20 + art_sys_99: 3.15355686e-20 + art_sys_100: 8.62033758e-13 + art_sys_101: -1.23191031e-19 + art_sys_102: 1.54448217e-21 + art_sys_103: -4.33100091e-13 + art_sys_104: 2.99015896e-19 + art_sys_105: 7.23676439e-21 + art_sys_106: 1.86620961e-19 + art_sys_107: 1.45599214e-19 + art_sys_108: -1.90418687e-13 + art_sys_109: -1.65098972e-18 + art_sys_110: -4.82625787e-21 + art_sys_111: -6.35910484e-18 + art_sys_112: 7.37528840e-14 + art_sys_113: -1.08177987e-21 + art_sys_114: 6.20698196e-18 + art_sys_115: 2.71721545e-14 + art_sys_116: 5.83854386e-19 + art_sys_117: -7.25473769e-22 + art_sys_118: 6.40700227e-18 + art_sys_119: 9.81626592e-15 + art_sys_120: -1.12396521e-18 + art_sys_121: 2.25852172e-19 + art_sys_122: 5.88480068e-19 + art_sys_123: 3.27259547e-15 + art_sys_124: 1.47007395e-20 + art_sys_125: -8.58000011e-20 + art_sys_126: 7.11435210e-19 + art_sys_127: 1.46209223e-19 + art_sys_128: 1.16297385e-15 + art_sys_129: -3.79290209e-16 + art_sys_130: -1.23526718e-16 + art_sys_131: -3.79562901e-17 + art_sys_132: -2.33309702e-19 + art_sys_133: -9.36907813e-20 + art_sys_134: 1.11354939e-17 + art_sys_135: 2.44349790e-19 + art_sys_136: 3.71297427e-18 + art_sys_137: 7.07973155e-20 + art_sys_138: -4.45392101e-19 + art_sys_139: 2.02409956e-20 + art_sys_140: -8.06740576e-22 + art_sys_141: -9.39651351e-20 + art_sys_142: -0.0 + art_sys_143: 1.43276811e-20 + art_sys_144: 5.35897895e-20 + art_sys_145: 6.87697370e-20 + art_sys_146: -3.88252573e-22 + art_sys_147: 1.14309212e-21 + art_sys_148: -1.42913392e-21 + art_sys_149: 3.73544436e-22 + art_sys_150: -3.32596652e-23 + art_sys_151: -5.50552689e-25 + art_sys_152: -1.65469186e-23 + art_sys_153: -8.10310881e-25 + art_sys_154: -2.57546398e-23 + art_sys_155: 5.76855695e-23 + art_sys_156: 2.41804810e-22 + art_sys_157: 1.42937386e-22 + art_sys_158: -0.0 + art_sys_159: -2.89626488e-21 + art_sys_160: -2.89626488e-21 + art_sys_161: -2.36962181e-22 + art_sys_162: 8.77868788e-35 + art_sys_163: 0.0 + art_sys_164: 5.35727535e-35 + art_sys_165: -2.69905791e-29 + art_sys_166: -2.35949967e-30 + art_sys_167: 1.10901596e-31 + art_sys_168: 1.37987907e-29 + art_sys_169: -9.96642640e-31 + art_sys_170: -1.07815948e-28 + art_sys_171: -2.77882781e-28 + art_sys_172: 1.67501444e-27 + art_sys_173: -4.21605743e-28 + art_sys_174: 8.26181852e-35 + art_sys_175: 5.47091089e-30 + art_sys_176: 5.44608186e-29 + art_sys_177: -7.71339555e-30 + art_sys_178: -8.67479280e-31 + art_sys_179: -3.68214853e-31 + art_sys_180: 2.15443638e-33 + art_sys_181: -3.38875331e-32 + art_sys_182: -1.85781031e-32 + art_sys_183: 3.64428204e-34 + art_sys_184: -5.14535824e-37 + art_sys_185: 7.49670248e-36 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -18305,167 +18305,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: -6.33356162e-74 - art_sys_26: -3.31780906e-68 - art_sys_27: 2.08385485e-61 - art_sys_28: -1.24674942e-60 - art_sys_29: -4.78859772e-50 - art_sys_30: -3.89208615e-47 - art_sys_31: -1.82058161e-44 - art_sys_32: 2.17478283e-36 - art_sys_33: 6.51738313e-31 - art_sys_34: 6.57107013e-24 - art_sys_35: 4.60645964e-25 - art_sys_36: -1.38300030e+01 - art_sys_37: -1.93283491e+01 - art_sys_38: -5.05245959e+01 - art_sys_39: 1.18890768e+01 - art_sys_40: -4.55413650e-01 - art_sys_41: 2.82448384e-01 - art_sys_42: -1.97899849e-01 - art_sys_43: 5.24979136e-02 - art_sys_44: 2.99902824e-04 - art_sys_45: -1.34610509e-04 - art_sys_46: 5.51993532e-05 - art_sys_47: 8.85310978e-20 - art_sys_48: -6.13025746e-19 - art_sys_49: -6.52195303e-19 + art_sys_25: 3.94222645e-34 + art_sys_26: -1.00575902e-27 + art_sys_27: -5.22330993e-20 + art_sys_28: 1.27730221e-19 + art_sys_29: 1.38300030e+01 + art_sys_30: 1.93283491e+01 + art_sys_31: 5.05245959e+01 + art_sys_32: -1.18890768e+01 + art_sys_33: -4.55413650e-01 + art_sys_34: -2.82448384e-01 + art_sys_35: 1.97899849e-01 + art_sys_36: 9.29548485e-18 + art_sys_37: -1.65837079e-17 + art_sys_38: 5.24979136e-02 + art_sys_39: 7.64248123e-18 + art_sys_40: 1.95006068e-18 + art_sys_41: 2.91050027e-18 + art_sys_42: -2.99902824e-04 + art_sys_43: -2.51760956e-18 + art_sys_44: 1.34610509e-04 + art_sys_45: -2.16217004e-18 + art_sys_46: 7.33444037e-19 + art_sys_47: -5.51993532e-05 + art_sys_48: -4.22225865e-18 + art_sys_49: -5.56441821e-19 art_sys_50: 4.77421574e-06 - art_sys_51: -2.22113652e-06 - art_sys_52: 1.01523920e-19 - art_sys_53: -1.55519193e-19 - art_sys_54: 7.68834863e-20 - art_sys_55: -1.01909268e-18 - art_sys_56: 3.57026867e-19 - art_sys_57: -5.41512029e-07 - art_sys_58: 4.51941217e-08 - art_sys_59: 1.03620479e-19 - art_sys_60: 8.30512223e-20 - art_sys_61: -2.02558388e-08 - art_sys_62: 2.04267997e-19 - art_sys_63: 1.17997785e-19 - art_sys_64: 5.57020017e-15 - art_sys_65: 4.46617686e-16 - art_sys_66: 2.84265876e-16 - art_sys_67: 1.53051590e-17 - art_sys_68: 1.16370415e-18 - art_sys_69: -4.63250706e-19 - art_sys_70: -6.64094481e-20 - art_sys_71: -6.64864711e-21 - art_sys_72: 3.12470526e-21 - art_sys_73: -6.46452249e-21 - art_sys_74: 3.74366546e-09 - art_sys_75: -3.58753609e-21 - art_sys_76: -2.67464571e-21 - art_sys_77: 2.57149010e-22 - art_sys_78: -1.77902714e-22 - art_sys_79: -8.11841292e-20 - art_sys_80: -2.92038731e-22 - art_sys_81: -1.06747601e-19 - art_sys_82: 9.06357986e-21 - art_sys_83: 3.74884364e-23 - art_sys_84: 2.95198874e-23 - art_sys_85: -4.04996228e-24 - art_sys_86: 4.79094315e-24 - art_sys_87: -9.42078648e-19 - art_sys_88: -4.51559664e-20 - art_sys_89: -2.32990887e-24 - art_sys_90: 2.11212920e-21 - art_sys_91: 1.74140982e-20 - art_sys_92: 2.23354890e-24 - art_sys_93: -2.42636351e-25 - art_sys_94: -4.60954464e-20 - art_sys_95: 2.41747277e-11 - art_sys_96: -1.33944100e-20 - art_sys_97: -4.73674102e-20 - art_sys_98: -1.03346072e-11 - art_sys_99: -3.25826255e-20 - art_sys_100: 6.48251841e-12 - art_sys_101: 6.47439692e-18 - art_sys_102: -3.12271323e-12 - art_sys_103: 4.89866196e-18 - art_sys_104: 8.94432154e-18 - art_sys_105: -5.79946263e-21 - art_sys_106: -4.17423586e-17 - art_sys_107: 1.55748239e-12 - art_sys_108: -9.41492482e-21 - art_sys_109: -3.68868754e-20 - art_sys_110: -6.87185784e-13 - art_sys_111: -8.58180843e-20 - art_sys_112: 1.41099693e-17 - art_sys_113: -1.36846069e-18 - art_sys_114: -1.81640950e-20 - art_sys_115: 1.82756718e-19 - art_sys_116: -2.66589560e-13 - art_sys_117: -6.48040520e-20 - art_sys_118: 2.53814054e-18 - art_sys_119: 9.81300453e-14 - art_sys_120: 1.96096936e-18 - art_sys_121: 9.48453484e-21 - art_sys_122: 1.63224951e-18 - art_sys_123: 3.55109200e-14 - art_sys_124: -7.91407491e-19 - art_sys_125: -9.50314195e-21 - art_sys_126: -4.80773307e-19 - art_sys_127: -1.18334493e-14 - art_sys_128: 1.34694713e-18 - art_sys_129: -9.40913137e-23 - art_sys_130: 4.20064069e-15 - art_sys_131: 6.00098799e-21 - art_sys_132: -6.16271986e-18 - art_sys_133: 1.36572097e-15 - art_sys_134: 2.82339820e-18 - art_sys_135: 3.74042289e-19 - art_sys_136: 5.92202386e-22 - art_sys_137: 4.49489598e-16 - art_sys_138: 4.76707316e-19 - art_sys_139: 1.35949641e-16 - art_sys_140: 1.37715683e-22 - art_sys_141: 9.14998492e-19 - art_sys_142: -4.36667909e-19 - art_sys_143: 4.16982204e-17 - art_sys_144: -1.91882437e-21 - art_sys_145: -3.31528530e-19 - art_sys_146: 1.40141074e-17 - art_sys_147: -3.42248124e-22 - art_sys_148: -2.92076899e-23 - art_sys_149: 1.12195066e-19 - art_sys_150: 1.76785234e-18 - art_sys_151: -6.75051719e-20 - art_sys_152: 9.00956378e-23 - art_sys_153: -1.98300739e-19 - art_sys_154: 2.27407750e-19 - art_sys_155: -7.08134745e-23 - art_sys_156: -0.0 - art_sys_157: -1.05499148e-19 - art_sys_158: -0.0 - art_sys_159: -1.52209788e-20 - art_sys_160: -3.44664725e-21 - art_sys_161: 9.68917695e-22 - art_sys_162: 9.68917695e-22 - art_sys_163: 1.31322345e-21 - art_sys_164: 1.31322345e-21 - art_sys_165: -1.44107472e-35 - art_sys_166: 4.76503603e-36 - art_sys_167: 0.0 - art_sys_168: 2.69224383e-29 - art_sys_169: -1.18030871e-28 - art_sys_170: 7.17306338e-29 - art_sys_171: -5.41594594e-28 - art_sys_172: -5.26901218e-29 - art_sys_173: 2.75379301e-31 - art_sys_174: 5.29901145e-31 - art_sys_175: 3.76464298e-30 - art_sys_176: -3.84380652e-31 - art_sys_177: 7.50818850e-32 - art_sys_178: -6.18478439e-33 - art_sys_179: 1.90812425e-35 - art_sys_180: -3.56099283e-34 - art_sys_181: 7.65198610e-33 - art_sys_182: 8.78265193e-32 - art_sys_183: -2.73663945e-33 - art_sys_184: 1.89019647e-35 - art_sys_185: 1.80063065e-37 + art_sys_51: 2.22113652e-06 + art_sys_52: -1.22965214e-18 + art_sys_53: 8.09508297e-19 + art_sys_54: -3.34655743e-19 + art_sys_55: 1.15759652e-19 + art_sys_56: -4.52318836e-19 + art_sys_57: 1.29894717e-15 + art_sys_58: 1.81437584e-16 + art_sys_59: -8.60683403e-17 + art_sys_60: 5.41512029e-07 + art_sys_61: 2.57049212e-17 + art_sys_62: -1.31235319e-18 + art_sys_63: -3.31982714e-19 + art_sys_64: -1.07047765e-20 + art_sys_65: -2.64997783e-20 + art_sys_66: -4.51941217e-08 + art_sys_67: 3.23109449e-21 + art_sys_68: 3.83255125e-21 + art_sys_69: -2.02558386e-08 + art_sys_70: 5.13484057e-19 + art_sys_71: -5.43958950e-19 + art_sys_72: -3.62998280e-19 + art_sys_73: 3.74366546e-09 + art_sys_74: -2.73536424e-17 + art_sys_75: 9.93135325e-20 + art_sys_76: 1.84464546e-21 + art_sys_77: 3.32897386e-22 + art_sys_78: 2.31576017e-22 + art_sys_79: -5.58729661e-20 + art_sys_80: -1.05254213e-17 + art_sys_81: 4.21424412e-23 + art_sys_82: 5.89574163e-23 + art_sys_83: 3.17991139e-23 + art_sys_84: 6.43203293e-20 + art_sys_85: 1.16923595e-23 + art_sys_86: 1.41685295e-24 + art_sys_87: -1.32672260e-22 + art_sys_88: -3.79019179e-20 + art_sys_89: 4.16338056e-20 + art_sys_90: 3.05305078e-17 + art_sys_91: 1.84004337e-18 + art_sys_92: 2.41747494e-11 + art_sys_93: -4.64726997e-18 + art_sys_94: 1.03346091e-11 + art_sys_95: 2.64554667e-19 + art_sys_96: 1.07256389e-20 + art_sys_97: -6.48249498e-12 + art_sys_98: 2.04257070e-19 + art_sys_99: -1.39439704e-19 + art_sys_100: -3.12269767e-12 + art_sys_101: 4.95089666e-19 + art_sys_102: -7.49555807e-21 + art_sys_103: 1.55747771e-12 + art_sys_104: -5.24127160e-19 + art_sys_105: -2.39142686e-20 + art_sys_106: -6.33012746e-19 + art_sys_107: -4.98346299e-19 + art_sys_108: 6.87178213e-13 + art_sys_109: 5.84532134e-18 + art_sys_110: 1.72147807e-20 + art_sys_111: 2.25897862e-17 + art_sys_112: -2.66585942e-13 + art_sys_113: 3.65912061e-21 + art_sys_114: -2.19183955e-17 + art_sys_115: -9.81327347e-14 + art_sys_116: -2.10126382e-18 + art_sys_117: 2.50907462e-21 + art_sys_118: -2.25052139e-17 + art_sys_119: -3.55129434e-14 + art_sys_120: 3.89687172e-18 + art_sys_121: -8.19390237e-19 + art_sys_122: -2.13221860e-18 + art_sys_123: -1.18320570e-14 + art_sys_124: -4.70840697e-20 + art_sys_125: 2.49463431e-19 + art_sys_126: -2.56961692e-18 + art_sys_127: -5.05384606e-19 + art_sys_128: -4.20718730e-15 + art_sys_129: 1.37215535e-15 + art_sys_130: 4.46876084e-16 + art_sys_131: 1.37334656e-16 + art_sys_132: 8.43829776e-19 + art_sys_133: 3.38713984e-19 + art_sys_134: -4.02872224e-17 + art_sys_135: -8.68341789e-19 + art_sys_136: -1.34341903e-17 + art_sys_137: -2.62805203e-19 + art_sys_138: 1.61149682e-18 + art_sys_139: -7.35555384e-20 + art_sys_140: 2.34358209e-21 + art_sys_141: 3.39518663e-19 + art_sys_142: 0.0 + art_sys_143: -5.37544577e-20 + art_sys_144: -1.94653368e-19 + art_sys_145: -2.48255462e-19 + art_sys_146: 1.46258173e-21 + art_sys_147: -4.11779853e-21 + art_sys_148: 5.28589709e-21 + art_sys_149: -1.52504332e-21 + art_sys_150: 1.23839696e-22 + art_sys_151: -2.12977523e-26 + art_sys_152: 7.25759224e-23 + art_sys_153: 5.97025227e-24 + art_sys_154: 9.28090151e-23 + art_sys_155: -2.08026506e-22 + art_sys_156: -8.74212118e-22 + art_sys_157: -5.16762376e-22 + art_sys_158: 0.0 + art_sys_159: 1.04872491e-20 + art_sys_160: 1.04872491e-20 + art_sys_161: 8.52810208e-22 + art_sys_162: -3.16057953e-34 + art_sys_163: -0.0 + art_sys_164: -1.92926279e-34 + art_sys_165: 7.18448484e-29 + art_sys_166: 6.55224601e-30 + art_sys_167: 5.87011840e-31 + art_sys_168: -1.03055175e-29 + art_sys_169: 2.84217782e-29 + art_sys_170: -5.18229763e-30 + art_sys_171: -1.97180129e-29 + art_sys_172: -3.28310918e-28 + art_sys_173: -4.77288375e-29 + art_sys_174: -2.98369341e-34 + art_sys_175: -6.99208328e-30 + art_sys_176: 3.77422049e-29 + art_sys_177: -4.97109359e-30 + art_sys_178: 1.10659971e-31 + art_sys_179: 3.39680419e-32 + art_sys_180: 1.06046929e-32 + art_sys_181: 1.91139189e-32 + art_sys_182: -1.25437868e-32 + art_sys_183: -1.20558366e-34 + art_sys_184: -1.23259511e-37 + art_sys_185: -2.70754541e-35 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -18596,167 +18596,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: -5.94715558e-75 - art_sys_26: -3.11539192e-69 - art_sys_27: 1.95672036e-62 - art_sys_28: -1.17068614e-61 - art_sys_29: -4.49644882e-51 - art_sys_30: -3.65463277e-48 - art_sys_31: -1.70950924e-45 - art_sys_32: 2.04210090e-37 - art_sys_33: 6.11976228e-32 - art_sys_34: 6.17017387e-25 - art_sys_35: 4.32542285e-26 - art_sys_36: -1.29952067e+00 - art_sys_37: 3.01317656e+00 - art_sys_38: -2.48796212e+00 - art_sys_39: 3.01983922e+00 - art_sys_40: 4.63153544e+00 - art_sys_41: -8.83091587e-01 - art_sys_42: 1.06656367e+00 - art_sys_43: -2.71044122e-01 - art_sys_44: -1.60629334e-03 - art_sys_45: 8.27297281e-04 - art_sys_46: -3.13362645e-04 - art_sys_47: 1.35572567e-18 - art_sys_48: 4.05944951e-19 - art_sys_49: -2.31449291e-20 + art_sys_25: 3.70426860e-35 + art_sys_26: -9.45050117e-29 + art_sys_27: -4.90802423e-21 + art_sys_28: 1.20020261e-20 + art_sys_29: 1.29952067e+00 + art_sys_30: -3.01317656e+00 + art_sys_31: 2.48796212e+00 + art_sys_32: -3.01983922e+00 + art_sys_33: 4.63153544e+00 + art_sys_34: 8.83091587e-01 + art_sys_35: -1.06656367e+00 + art_sys_36: -4.34286071e-18 + art_sys_37: -8.69257512e-18 + art_sys_38: -2.71044122e-01 + art_sys_39: 3.40322643e-18 + art_sys_40: -1.40764458e-17 + art_sys_41: 9.73119931e-18 + art_sys_42: 1.60629334e-03 + art_sys_43: 1.49484288e-18 + art_sys_44: -8.27297281e-04 + art_sys_45: -1.65848535e-18 + art_sys_46: 1.40881206e-18 + art_sys_47: 3.13362645e-04 + art_sys_48: -1.89956229e-18 + art_sys_49: 1.18445901e-19 art_sys_50: -2.97507106e-05 - art_sys_51: 1.32950180e-05 - art_sys_52: 5.36960224e-19 - art_sys_53: 4.78776112e-19 - art_sys_54: -9.47816504e-19 - art_sys_55: 1.42181649e-18 - art_sys_56: -5.93011160e-20 - art_sys_57: 3.23234398e-06 - art_sys_58: -2.86397865e-07 - art_sys_59: 2.31610889e-19 - art_sys_60: -3.25744582e-19 - art_sys_61: 1.20173977e-07 - art_sys_62: -1.25528888e-19 - art_sys_63: 1.45568969e-19 - art_sys_64: 5.75582848e-15 - art_sys_65: -1.41911450e-15 - art_sys_66: 2.38680552e-16 - art_sys_67: -7.04086762e-17 - art_sys_68: 1.94616936e-18 - art_sys_69: -3.03615256e-19 - art_sys_70: -1.18539391e-19 - art_sys_71: -1.27864615e-20 - art_sys_72: 3.88825660e-22 - art_sys_73: -4.34124605e-21 - art_sys_74: -2.28126126e-08 - art_sys_75: -2.29818131e-21 - art_sys_76: 1.30098948e-20 - art_sys_77: -1.43924002e-21 - art_sys_78: 1.05316356e-21 - art_sys_79: 5.73619544e-20 - art_sys_80: 1.47424033e-21 - art_sys_81: 9.82297649e-20 - art_sys_82: 2.90748853e-19 - art_sys_83: -1.86873164e-22 - art_sys_84: -1.47480185e-22 - art_sys_85: 1.58997149e-23 - art_sys_86: -2.21849671e-23 - art_sys_87: 4.99430770e-18 - art_sys_88: 2.47870615e-19 - art_sys_89: 1.14581511e-23 - art_sys_90: -1.03047932e-20 - art_sys_91: 5.60439594e-21 - art_sys_92: -1.14253288e-23 - art_sys_93: 1.50062768e-24 - art_sys_94: 2.46940072e-19 - art_sys_95: -1.15574233e-10 - art_sys_96: -1.56795313e-19 - art_sys_97: 1.04177556e-19 - art_sys_98: 5.55799836e-11 - art_sys_99: 8.59355399e-19 - art_sys_100: -3.43456822e-11 - art_sys_101: -3.45613766e-17 - art_sys_102: 1.64799826e-11 - art_sys_103: -2.60995481e-17 - art_sys_104: -4.19101948e-17 - art_sys_105: 3.16787006e-20 - art_sys_106: 2.19011567e-16 - art_sys_107: -8.35876172e-12 - art_sys_108: 5.22923830e-20 - art_sys_109: 2.00924937e-19 - art_sys_110: 3.68492082e-12 - art_sys_111: -3.14122122e-18 - art_sys_112: -7.56451897e-17 - art_sys_113: 7.18238423e-18 - art_sys_114: 9.90196695e-20 - art_sys_115: -1.00404421e-18 - art_sys_116: 1.43871481e-12 - art_sys_117: 3.53059235e-19 - art_sys_118: -1.38523641e-17 - art_sys_119: -5.31244707e-13 - art_sys_120: -1.05006172e-17 - art_sys_121: -5.19250314e-20 - art_sys_122: -8.28797525e-18 - art_sys_123: -1.92622556e-13 - art_sys_124: 4.13869782e-18 - art_sys_125: 5.18253609e-20 - art_sys_126: 2.61008498e-18 - art_sys_127: 6.43754762e-14 - art_sys_128: -7.09438659e-18 - art_sys_129: 3.12709917e-22 - art_sys_130: -2.28694842e-14 - art_sys_131: -3.27772307e-20 - art_sys_132: 3.30379883e-17 - art_sys_133: -7.44609046e-15 - art_sys_134: -1.52846488e-17 - art_sys_135: -1.97172902e-18 - art_sys_136: -3.21332552e-21 - art_sys_137: -2.45213712e-15 - art_sys_138: -2.58926309e-18 - art_sys_139: -7.42055413e-16 - art_sys_140: -7.50403557e-22 - art_sys_141: -4.98981640e-18 - art_sys_142: 2.36569261e-18 - art_sys_143: -2.27668030e-16 - art_sys_144: 1.04393878e-20 - art_sys_145: 1.79319805e-18 - art_sys_146: -7.65291700e-17 - art_sys_147: 1.86945346e-21 - art_sys_148: 1.59465053e-22 - art_sys_149: -6.04042796e-19 - art_sys_150: -9.65675865e-18 - art_sys_151: 3.65653197e-19 - art_sys_152: -4.93077142e-22 - art_sys_153: 1.08233159e-18 - art_sys_154: -1.22177737e-18 - art_sys_155: 3.85076622e-22 - art_sys_156: 0.0 - art_sys_157: 5.67931812e-19 - art_sys_158: 0.0 - art_sys_159: 8.19506714e-20 - art_sys_160: 1.85380851e-20 - art_sys_161: -5.33307489e-21 - art_sys_162: -5.33307489e-21 - art_sys_163: -7.10040016e-21 - art_sys_164: -7.10040016e-21 - art_sys_165: 7.80728068e-35 - art_sys_166: -2.58232174e-35 - art_sys_167: -0.0 - art_sys_168: -1.80358845e-29 - art_sys_169: 1.79567661e-28 - art_sys_170: -8.64006333e-29 - art_sys_171: -1.13417578e-28 - art_sys_172: -2.06193839e-28 - art_sys_173: -1.21322425e-29 - art_sys_174: -1.37407882e-29 - art_sys_175: -1.26085958e-30 - art_sys_176: 1.92969246e-32 - art_sys_177: -4.12503390e-31 - art_sys_178: 2.79364541e-32 - art_sys_179: -1.03226803e-34 - art_sys_180: 1.91897977e-33 - art_sys_181: 2.19472588e-32 - art_sys_182: -8.26802388e-32 - art_sys_183: -2.17685221e-33 - art_sys_184: -2.89266105e-35 - art_sys_185: -5.93419864e-37 + art_sys_51: -1.32950180e-05 + art_sys_52: -1.77562931e-19 + art_sys_53: 5.60604295e-19 + art_sys_54: -1.71290168e-19 + art_sys_55: 3.18970075e-19 + art_sys_56: 5.26520603e-20 + art_sys_57: 5.05867471e-16 + art_sys_58: 3.14464719e-17 + art_sys_59: 7.15751670e-17 + art_sys_60: -3.23234398e-06 + art_sys_61: 2.52339101e-17 + art_sys_62: -1.07906502e-18 + art_sys_63: -7.55875325e-19 + art_sys_64: 2.95131828e-19 + art_sys_65: -4.10821253e-20 + art_sys_66: 2.86397865e-07 + art_sys_67: -1.08015249e-21 + art_sys_68: -2.72303571e-21 + art_sys_69: 1.20173976e-07 + art_sys_70: -2.39741875e-21 + art_sys_71: 1.80258687e-18 + art_sys_72: 2.15624838e-18 + art_sys_73: -2.28126126e-08 + art_sys_74: 1.62790832e-16 + art_sys_75: 2.75480935e-19 + art_sys_76: -8.55110249e-21 + art_sys_77: -1.77277415e-21 + art_sys_78: -1.03966085e-21 + art_sys_79: -1.18489889e-19 + art_sys_80: 6.29544054e-17 + art_sys_81: -1.43908004e-22 + art_sys_82: -2.84845126e-22 + art_sys_83: -1.62196962e-22 + art_sys_84: 1.02718007e-19 + art_sys_85: -5.43557497e-23 + art_sys_86: -1.19992392e-24 + art_sys_87: 1.23527545e-19 + art_sys_88: 1.93245847e-19 + art_sys_89: -2.28130152e-19 + art_sys_90: -1.81793173e-16 + art_sys_91: -1.15281165e-17 + art_sys_92: -1.15574348e-10 + art_sys_93: 2.76377728e-17 + art_sys_94: -5.55799927e-11 + art_sys_95: -8.19232610e-19 + art_sys_96: -5.30022432e-20 + art_sys_97: 3.43455579e-11 + art_sys_98: -5.27233782e-19 + art_sys_99: 9.16781891e-19 + art_sys_100: 1.64799005e-11 + art_sys_101: -2.58106630e-18 + art_sys_102: 4.08183185e-20 + art_sys_103: -8.35873658e-12 + art_sys_104: 2.34481910e-18 + art_sys_105: 1.29891034e-19 + art_sys_106: 2.99236509e-18 + art_sys_107: 3.18294955e-18 + art_sys_108: -3.68488023e-12 + art_sys_109: -3.08930059e-17 + art_sys_110: -9.37013758e-20 + art_sys_111: -1.20097399e-16 + art_sys_112: 1.43869514e-12 + art_sys_113: -2.00499108e-20 + art_sys_114: 1.16263263e-16 + art_sys_115: 5.31259258e-13 + art_sys_116: 1.12608411e-17 + art_sys_117: -1.36470303e-20 + art_sys_118: 1.19330189e-16 + art_sys_119: 1.92633533e-13 + art_sys_120: -2.06295525e-17 + art_sys_121: 4.42562984e-18 + art_sys_122: 1.14707935e-17 + art_sys_123: 6.43678961e-14 + art_sys_124: 2.44277076e-19 + art_sys_125: -1.23544902e-18 + art_sys_126: 1.39067572e-17 + art_sys_127: 2.69258144e-18 + art_sys_128: 2.29050834e-14 + art_sys_129: -7.48111026e-15 + art_sys_130: -2.43790450e-15 + art_sys_131: -7.49596604e-16 + art_sys_132: -4.56021369e-18 + art_sys_133: -1.84353177e-18 + art_sys_134: 2.19985060e-16 + art_sys_135: 4.66748405e-18 + art_sys_136: 7.33667844e-17 + art_sys_137: 1.43430700e-18 + art_sys_138: -8.80270354e-18 + art_sys_139: 4.02099944e-19 + art_sys_140: -1.42646144e-20 + art_sys_141: -1.85279419e-18 + art_sys_142: -0.0 + art_sys_143: 2.93452727e-19 + art_sys_144: 1.06253116e-18 + art_sys_145: 1.35461177e-18 + art_sys_146: -7.93750090e-21 + art_sys_147: 2.24919767e-20 + art_sys_148: -2.82940577e-20 + art_sys_149: 8.03847093e-21 + art_sys_150: -6.76925166e-22 + art_sys_151: -1.59485962e-23 + art_sys_152: -3.92202582e-22 + art_sys_153: -2.94666175e-23 + art_sys_154: -5.05312894e-22 + art_sys_155: 1.13348093e-21 + art_sys_156: 4.77173611e-21 + art_sys_157: 2.82137160e-21 + art_sys_158: -0.0 + art_sys_159: -5.72445069e-20 + art_sys_160: -5.72445069e-20 + art_sys_161: -4.64101782e-21 + art_sys_162: 1.72010694e-33 + art_sys_163: 0.0 + art_sys_164: 1.05003108e-33 + art_sys_165: 3.27659591e-29 + art_sys_166: -5.19696011e-29 + art_sys_167: 2.83428508e-29 + art_sys_168: -4.06380452e-30 + art_sys_169: -1.70237801e-29 + art_sys_170: 7.74723700e-29 + art_sys_171: -1.35830001e-27 + art_sys_172: -1.83933190e-27 + art_sys_173: 1.64319956e-28 + art_sys_174: 1.62803523e-33 + art_sys_175: 4.39154350e-32 + art_sys_176: 4.93105115e-29 + art_sys_177: -4.12540998e-30 + art_sys_178: -5.37392526e-31 + art_sys_179: 3.75863301e-31 + art_sys_180: 1.28583378e-32 + art_sys_181: 4.07762985e-32 + art_sys_182: -1.35587298e-32 + art_sys_183: -1.21505312e-34 + art_sys_184: 3.98662219e-36 + art_sys_185: 1.47551588e-34 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -18887,167 +18887,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: 2.50669743e-75 - art_sys_26: 1.31312268e-69 - art_sys_27: -8.24748204e-63 - art_sys_28: 4.93438566e-62 - art_sys_29: 1.89523151e-51 - art_sys_30: 1.54041011e-48 - art_sys_31: 7.20549906e-46 - art_sys_32: -8.60735689e-38 - art_sys_33: -2.57945031e-32 - art_sys_34: -2.60069856e-25 - art_sys_35: -1.82314489e-26 - art_sys_36: 5.47294573e-01 - art_sys_37: 1.13898951e+00 - art_sys_38: 2.58247733e+00 - art_sys_39: -6.79556819e-01 - art_sys_40: 2.73763425e+00 - art_sys_41: 2.21566859e+00 - art_sys_42: -1.26807733e+00 - art_sys_43: 5.56702667e-01 - art_sys_44: 3.73157574e-03 - art_sys_45: -2.12658092e-03 - art_sys_46: 9.54438016e-04 - art_sys_47: -9.73589736e-19 - art_sys_48: -2.45852247e-19 - art_sys_49: -3.61578386e-18 + art_sys_25: -1.56005689e-35 + art_sys_26: 3.98008922e-29 + art_sys_27: 2.06701994e-21 + art_sys_28: -5.05466681e-21 + art_sys_29: -5.47294573e-01 + art_sys_30: -1.13898951e+00 + art_sys_31: -2.58247733e+00 + art_sys_32: 6.79556819e-01 + art_sys_33: 2.73763425e+00 + art_sys_34: -2.21566859e+00 + art_sys_35: 1.26807733e+00 + art_sys_36: -3.39149870e-18 + art_sys_37: -1.54061189e-17 + art_sys_38: 5.56702667e-01 + art_sys_39: -2.55634503e-19 + art_sys_40: -3.87406589e-18 + art_sys_41: -1.06263970e-17 + art_sys_42: -3.73157574e-03 + art_sys_43: -6.38627092e-18 + art_sys_44: 2.12658092e-03 + art_sys_45: 2.05404978e-19 + art_sys_46: -6.52087802e-18 + art_sys_47: -9.54438016e-04 + art_sys_48: -7.07866089e-19 + art_sys_49: -1.60512147e-18 art_sys_50: 8.79516336e-05 - art_sys_51: -4.29643582e-05 - art_sys_52: -2.55002102e-19 - art_sys_53: 2.27465080e-19 - art_sys_54: 2.71556746e-19 - art_sys_55: 1.79024795e-18 - art_sys_56: -7.50775506e-19 - art_sys_57: -1.07414560e-05 - art_sys_58: 9.53829653e-07 - art_sys_59: 2.39403305e-19 - art_sys_60: 7.10430618e-20 - art_sys_61: -4.21457781e-07 - art_sys_62: 2.04098582e-19 - art_sys_63: -1.25519856e-19 - art_sys_64: -1.37052574e-15 - art_sys_65: 3.97258610e-16 - art_sys_66: -1.75275019e-16 - art_sys_67: -2.16686037e-17 - art_sys_68: -4.61182140e-19 - art_sys_69: 1.01996157e-19 - art_sys_70: 7.60121002e-20 - art_sys_71: 1.67112459e-20 - art_sys_72: 7.81549069e-22 - art_sys_73: -3.30034073e-21 - art_sys_74: 7.97728182e-08 - art_sys_75: -3.87514387e-21 - art_sys_76: -6.30357662e-20 - art_sys_77: 4.69442968e-21 - art_sys_78: -3.62580100e-21 - art_sys_79: 3.47900846e-20 - art_sys_80: -6.55999073e-21 - art_sys_81: 7.51684871e-20 - art_sys_82: -1.17643050e-18 - art_sys_83: 8.76706664e-22 - art_sys_84: 6.96140680e-22 - art_sys_85: -9.70418448e-23 - art_sys_86: 1.14791214e-22 - art_sys_87: -2.13206611e-17 - art_sys_88: -1.02013813e-18 - art_sys_89: -5.28899937e-23 - art_sys_90: 4.57859429e-20 - art_sys_91: 2.11553804e-19 - art_sys_92: 4.97194359e-23 - art_sys_93: -3.93949626e-24 - art_sys_94: -1.02015558e-18 - art_sys_95: 5.70422085e-10 - art_sys_96: 1.14816051e-18 - art_sys_97: -5.79196018e-19 - art_sys_98: -2.17215542e-10 - art_sys_99: 5.23493207e-19 - art_sys_100: 1.47390545e-10 - art_sys_101: 1.49408727e-16 - art_sys_102: -6.93959424e-11 - art_sys_103: 1.11469041e-16 - art_sys_104: 2.10170480e-16 - art_sys_105: -1.32335196e-19 - art_sys_106: -9.21122623e-16 - art_sys_107: 3.48770848e-11 - art_sys_108: -2.14458958e-19 - art_sys_109: -8.29032407e-19 - art_sys_110: -1.53941691e-11 - art_sys_111: -6.39418184e-18 - art_sys_112: 3.16015782e-16 - art_sys_113: -3.02204380e-17 - art_sys_114: -4.08348163e-19 - art_sys_115: 4.10106206e-18 - art_sys_116: -5.97454904e-12 - art_sys_117: -1.45572687e-18 - art_sys_118: 5.87132003e-17 - art_sys_119: 2.20326939e-12 - art_sys_120: 4.37800715e-17 - art_sys_121: 2.13105965e-19 - art_sys_122: 3.46562780e-17 - art_sys_123: 7.97241675e-13 - art_sys_124: -1.73159029e-17 - art_sys_125: -2.13447789e-19 - art_sys_126: -1.08454033e-17 - art_sys_127: -2.65893596e-13 - art_sys_128: 2.89775079e-17 - art_sys_129: -1.18158422e-21 - art_sys_130: 9.44059900e-14 - art_sys_131: 1.35181649e-19 - art_sys_132: -1.37983262e-16 - art_sys_133: 3.06983911e-14 - art_sys_134: 6.33828651e-17 - art_sys_135: 8.02069410e-18 - art_sys_136: 1.31784031e-20 - art_sys_137: 1.01060700e-14 - art_sys_138: 1.07191206e-17 - art_sys_139: 3.05664387e-15 - art_sys_140: 3.10174283e-21 - art_sys_141: 2.05691450e-17 - art_sys_142: -9.78963340e-18 - art_sys_143: 9.37620453e-16 - art_sys_144: -4.31023970e-20 - art_sys_145: -7.41616916e-18 - art_sys_146: 3.15125637e-16 - art_sys_147: -7.69949285e-21 - art_sys_148: -6.56840158e-22 - art_sys_149: 2.49883674e-18 - art_sys_150: 3.97535907e-17 - art_sys_151: -1.51247519e-18 - art_sys_152: 2.02869294e-21 - art_sys_153: -4.45578320e-18 - art_sys_154: 5.08376300e-18 - art_sys_155: -1.57576142e-21 - art_sys_156: -0.0 - art_sys_157: -2.34718127e-18 - art_sys_158: -0.0 - art_sys_159: -3.38019941e-19 - art_sys_160: -7.65016504e-20 - art_sys_161: 2.19609971e-20 - art_sys_162: 2.19609971e-20 - art_sys_163: 2.93596044e-20 - art_sys_164: 2.93596044e-20 - art_sys_165: -3.22665504e-34 - art_sys_166: 1.06726675e-34 - art_sys_167: 0.0 - art_sys_168: -1.32196619e-28 - art_sys_169: 3.52364959e-29 - art_sys_170: -1.29086270e-28 - art_sys_171: -5.12684091e-28 - art_sys_172: -1.99030991e-28 - art_sys_173: -4.77642011e-29 - art_sys_174: -4.00758043e-29 - art_sys_175: 2.89237434e-31 - art_sys_176: -3.30423306e-31 - art_sys_177: 1.68992341e-30 - art_sys_178: -9.05830326e-32 - art_sys_179: 4.20442874e-34 - art_sys_180: -7.91870134e-33 - art_sys_181: -1.60679573e-31 - art_sys_182: -3.95813397e-32 - art_sys_183: 1.34006892e-33 - art_sys_184: 7.21134712e-35 - art_sys_185: 2.42334475e-36 + art_sys_51: 4.29643582e-05 + art_sys_52: -5.16141661e-19 + art_sys_53: -1.41826116e-18 + art_sys_54: 1.39406103e-18 + art_sys_55: 9.76987781e-19 + art_sys_56: -5.65048839e-19 + art_sys_57: 2.45922793e-15 + art_sys_58: 1.44972726e-16 + art_sys_59: -9.08226802e-18 + art_sys_60: 1.07414560e-05 + art_sys_61: -7.75544822e-18 + art_sys_62: 9.62240264e-19 + art_sys_63: 3.39715931e-19 + art_sys_64: 9.12118990e-20 + art_sys_65: 9.15698349e-20 + art_sys_66: -9.53829653e-07 + art_sys_67: -3.87476009e-21 + art_sys_68: -1.21547536e-20 + art_sys_69: -4.21457778e-07 + art_sys_70: 3.64129586e-19 + art_sys_71: -7.31633060e-18 + art_sys_72: -6.74640963e-18 + art_sys_73: 7.97728182e-08 + art_sys_74: -5.71843139e-16 + art_sys_75: -1.07975858e-20 + art_sys_76: 4.51385015e-20 + art_sys_77: 7.17605186e-21 + art_sys_78: 5.56259121e-21 + art_sys_79: -1.05652306e-19 + art_sys_80: -2.20629789e-16 + art_sys_81: 9.10982252e-22 + art_sys_82: 1.37043257e-21 + art_sys_83: 6.88612283e-22 + art_sys_84: -9.12254842e-20 + art_sys_85: 2.71514697e-22 + art_sys_86: 4.80911909e-23 + art_sys_87: -6.61007758e-19 + art_sys_88: -7.93612035e-19 + art_sys_89: 9.45895709e-19 + art_sys_90: 6.37686511e-16 + art_sys_91: 4.00303247e-17 + art_sys_92: 5.70422549e-10 + art_sys_93: -9.69408890e-17 + art_sys_94: 2.17215590e-10 + art_sys_95: 3.19122312e-18 + art_sys_96: 2.19065034e-19 + art_sys_97: -1.47390015e-10 + art_sys_98: 2.23972259e-18 + art_sys_99: -3.55191537e-18 + art_sys_100: -6.93955966e-11 + art_sys_101: 1.15675299e-17 + art_sys_102: -1.63895576e-19 + art_sys_103: 3.48769799e-11 + art_sys_104: -7.52970961e-18 + art_sys_105: -5.37379344e-19 + art_sys_106: -9.77801828e-18 + art_sys_107: -1.01209567e-17 + art_sys_108: 1.53939995e-11 + art_sys_109: 1.31594388e-16 + art_sys_110: 3.86601537e-19 + art_sys_111: 5.20120114e-16 + art_sys_112: -5.97446760e-12 + art_sys_113: 8.39770152e-20 + art_sys_114: -4.96375340e-16 + art_sys_115: -2.20332976e-12 + art_sys_116: -4.70539016e-17 + art_sys_117: 5.62545565e-20 + art_sys_118: -5.11739335e-16 + art_sys_119: -7.97287108e-13 + art_sys_120: 8.75842594e-17 + art_sys_121: -1.83799439e-17 + art_sys_122: -4.76656024e-17 + art_sys_123: -2.65862299e-13 + art_sys_124: -1.02763367e-18 + art_sys_125: 5.19763471e-18 + art_sys_126: -5.76819564e-17 + art_sys_127: -1.10951831e-17 + art_sys_128: -9.45530840e-14 + art_sys_129: 3.08429832e-14 + art_sys_130: 1.00473342e-14 + art_sys_131: 3.08777006e-15 + art_sys_132: 1.88781260e-17 + art_sys_133: 7.61116030e-18 + art_sys_134: -9.05909843e-16 + art_sys_135: -1.93551841e-17 + art_sys_136: -3.02087267e-16 + art_sys_137: -5.95588859e-18 + art_sys_138: 3.62371555e-17 + art_sys_139: -1.65619983e-18 + art_sys_140: 5.27395718e-20 + art_sys_141: 7.62951049e-18 + art_sys_142: 0.0 + art_sys_143: -1.21799792e-18 + art_sys_144: -4.38215961e-18 + art_sys_145: -5.57615425e-18 + art_sys_146: 3.26796517e-20 + art_sys_147: -9.27385189e-20 + art_sys_148: 1.17675185e-19 + art_sys_149: -3.32622566e-20 + art_sys_150: 2.82026648e-21 + art_sys_151: 2.81033736e-23 + art_sys_152: 1.59611924e-21 + art_sys_153: 1.16840465e-22 + art_sys_154: 2.08269377e-21 + art_sys_155: -4.67026303e-21 + art_sys_156: -1.96507124e-20 + art_sys_157: -1.16148317e-20 + art_sys_158: 0.0 + art_sys_159: 2.35560034e-19 + art_sys_160: 2.35560034e-19 + art_sys_161: 1.91388634e-20 + art_sys_162: -7.09426987e-33 + art_sys_163: -0.0 + art_sys_164: -4.33092715e-33 + art_sys_165: -1.82513673e-28 + art_sys_166: 1.08688363e-28 + art_sys_167: -5.82015799e-30 + art_sys_168: 1.76301733e-29 + art_sys_169: -4.80623597e-29 + art_sys_170: 2.73134751e-29 + art_sys_171: 8.73324769e-28 + art_sys_172: -3.74329267e-27 + art_sys_173: 4.61554293e-28 + art_sys_174: -6.70314213e-33 + art_sys_175: 2.55833970e-29 + art_sys_176: -3.14632608e-29 + art_sys_177: 8.16981307e-30 + art_sys_178: 6.13719838e-31 + art_sys_179: -7.31276087e-31 + art_sys_180: -1.41413703e-31 + art_sys_181: 3.87163868e-33 + art_sys_182: 5.28994062e-32 + art_sys_183: 1.10525929e-34 + art_sys_184: -1.62009971e-35 + art_sys_185: -6.08378495e-34 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -19178,167 +19178,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: 6.79687852e-76 - art_sys_26: 3.56051563e-70 - art_sys_27: -2.23629438e-63 - art_sys_28: 1.33795246e-62 - art_sys_29: 5.13889639e-52 - art_sys_30: 4.17680261e-49 - art_sys_31: 1.95376200e-46 - art_sys_32: -2.33387399e-38 - art_sys_33: -6.99414706e-33 - art_sys_34: -7.05176141e-26 - art_sys_35: -4.94343443e-27 - art_sys_36: 1.48475353e-01 - art_sys_37: -1.06743364e-01 - art_sys_38: 3.09605307e-01 - art_sys_39: -3.73471351e-01 - art_sys_40: -4.12275208e-01 - art_sys_41: 3.13582620e+00 - art_sys_42: 7.61332956e-01 - art_sys_43: -6.46028916e-01 - art_sys_44: -1.61879527e-02 - art_sys_45: 6.61953534e-03 - art_sys_46: -3.09982033e-03 - art_sys_47: 2.35277747e-18 - art_sys_48: -9.55722967e-19 - art_sys_49: -2.38515526e-18 + art_sys_25: -4.23227276e-36 + art_sys_26: 1.07975698e-29 + art_sys_27: 5.60761098e-22 + art_sys_28: -1.37127875e-21 + art_sys_29: -1.48475353e-01 + art_sys_30: 1.06743364e-01 + art_sys_31: -3.09605307e-01 + art_sys_32: 3.73471351e-01 + art_sys_33: -4.12275208e-01 + art_sys_34: -3.13582620e+00 + art_sys_35: -7.61332956e-01 + art_sys_36: 1.07733738e-17 + art_sys_37: -2.97625106e-18 + art_sys_38: -6.46028916e-01 + art_sys_39: 9.11289190e-18 + art_sys_40: -2.81732314e-18 + art_sys_41: -4.54247312e-18 + art_sys_42: 1.61879527e-02 + art_sys_43: -6.86036104e-18 + art_sys_44: -6.61953534e-03 + art_sys_45: -4.68556659e-18 + art_sys_46: -4.09290336e-18 + art_sys_47: 3.09982033e-03 + art_sys_48: -3.64903659e-19 + art_sys_49: -1.33221766e-18 art_sys_50: -3.03159843e-04 - art_sys_51: 1.37667499e-04 - art_sys_52: 1.67418534e-18 - art_sys_53: 2.48443315e-19 - art_sys_54: 7.69291001e-19 - art_sys_55: -1.83959901e-19 - art_sys_56: 2.73341079e-19 - art_sys_57: 3.51462624e-05 - art_sys_58: -3.05811674e-06 - art_sys_59: 7.48804032e-20 - art_sys_60: 2.50688438e-19 - art_sys_61: 1.32969525e-06 - art_sys_62: -8.33245637e-20 - art_sys_63: -1.11374912e-19 - art_sys_64: -4.04259001e-15 - art_sys_65: -9.29370824e-16 - art_sys_66: -2.38745821e-16 - art_sys_67: 3.68464996e-17 - art_sys_68: -1.34134234e-18 - art_sys_69: 7.05674546e-19 - art_sys_70: 2.29776120e-20 - art_sys_71: -2.61321087e-20 - art_sys_72: -3.14953877e-21 - art_sys_73: 7.19555738e-21 - art_sys_74: -2.54137881e-07 - art_sys_75: 1.84125176e-20 - art_sys_76: 1.47216223e-19 - art_sys_77: -1.89938346e-20 - art_sys_78: 1.31529931e-20 - art_sys_79: -7.86460023e-20 - art_sys_80: 1.71133019e-20 - art_sys_81: -7.98972777e-20 - art_sys_82: 3.35607282e-18 - art_sys_83: -2.12016065e-21 - art_sys_84: -1.66372707e-21 - art_sys_85: 1.74584482e-22 - art_sys_86: -2.50898331e-22 - art_sys_87: 5.75357362e-17 - art_sys_88: 2.90951098e-18 - art_sys_89: 1.32388509e-22 - art_sys_90: -1.31498647e-19 - art_sys_91: -1.66656853e-19 - art_sys_92: -1.34695219e-22 - art_sys_93: 1.98788783e-23 - art_sys_94: 2.95962343e-18 - art_sys_95: -1.30177921e-09 - art_sys_96: -3.08924414e-18 - art_sys_97: 8.26590850e-19 - art_sys_98: 6.77106596e-10 - art_sys_99: 1.21279898e-17 - art_sys_100: -3.98488346e-10 - art_sys_101: -4.02939522e-16 - art_sys_102: 1.96943738e-10 - art_sys_103: -3.03612300e-16 - art_sys_104: -4.77692324e-16 - art_sys_105: 3.86762109e-19 - art_sys_106: 2.59967043e-15 - art_sys_107: -9.95408938e-11 - art_sys_108: 6.26914878e-19 - art_sys_109: 2.42332567e-18 - art_sys_110: 4.41369325e-11 - art_sys_111: -7.92822618e-17 - art_sys_112: -9.06036150e-16 - art_sys_113: 8.56754613e-17 - art_sys_114: 1.19483778e-18 - art_sys_115: -1.08638505e-17 - art_sys_116: 1.72761837e-11 - art_sys_117: 4.26226327e-18 - art_sys_118: -1.67361998e-16 - art_sys_119: -6.38759308e-12 - art_sys_120: -1.25561126e-16 - art_sys_121: -6.23603637e-19 - art_sys_122: -9.68959675e-17 - art_sys_123: -2.32094116e-12 - art_sys_124: 4.90234838e-17 - art_sys_125: 6.25385516e-19 - art_sys_126: 3.14156281e-17 - art_sys_127: 7.76075375e-13 - art_sys_128: -8.25026495e-17 - art_sys_129: 3.74329236e-21 - art_sys_130: -2.75958884e-13 - art_sys_131: -3.96290466e-19 - art_sys_132: 3.95512389e-16 - art_sys_133: -8.98894451e-14 - art_sys_134: -1.83791050e-16 - art_sys_135: -2.27836956e-17 - art_sys_136: -3.86595875e-20 - art_sys_137: -2.96102390e-14 - art_sys_138: -3.11583781e-17 - art_sys_139: -8.96338610e-15 - art_sys_140: -9.06198005e-21 - art_sys_141: -6.02468261e-17 - art_sys_142: 2.83390099e-17 - art_sys_143: -2.75004689e-15 - art_sys_144: 1.25879310e-19 - art_sys_145: 2.15439751e-17 - art_sys_146: -9.24543506e-16 - art_sys_147: 2.25869167e-20 - art_sys_148: 1.92558820e-21 - art_sys_149: -7.19429640e-18 - art_sys_150: -1.16674354e-16 - art_sys_151: 4.39608664e-18 - art_sys_152: -5.96494828e-21 - art_sys_153: 1.30659910e-17 - art_sys_154: -1.46544489e-17 - art_sys_155: 4.62932601e-21 - art_sys_156: 0.0 - art_sys_157: 6.78509498e-18 - art_sys_158: 0.0 - art_sys_159: 9.80174993e-19 - art_sys_160: 2.21327998e-19 - art_sys_161: -6.47270257e-20 - art_sys_162: -6.47270257e-20 - art_sys_163: -8.52579135e-20 - art_sys_164: -8.52579135e-20 - art_sys_165: 9.38588745e-34 - art_sys_166: -3.10512965e-34 - art_sys_167: -0.0 - art_sys_168: 3.98593166e-28 - art_sys_169: 4.71678608e-28 - art_sys_170: -1.54858865e-28 - art_sys_171: -3.37152586e-29 - art_sys_172: -2.65533216e-29 - art_sys_173: -1.26800089e-29 - art_sys_174: 4.88488664e-29 - art_sys_175: -7.45908351e-30 - art_sys_176: 1.33552949e-30 - art_sys_177: -4.96281698e-30 - art_sys_178: 2.67614444e-31 - art_sys_179: -1.23527143e-33 - art_sys_180: 2.29709625e-32 - art_sys_181: 4.64478104e-31 - art_sys_182: 9.90051404e-32 - art_sys_183: -1.01026067e-34 - art_sys_184: -2.61288080e-34 - art_sys_185: -7.29066803e-36 + art_sys_51: -1.37667499e-04 + art_sys_52: 2.07299650e-19 + art_sys_53: -6.88655986e-19 + art_sys_54: 1.62918822e-18 + art_sys_55: 1.88493221e-18 + art_sys_56: 1.22741112e-20 + art_sys_57: -1.47798976e-15 + art_sys_58: -4.03931791e-16 + art_sys_59: 2.05955989e-16 + art_sys_60: -3.51462624e-05 + art_sys_61: -2.63697507e-17 + art_sys_62: 1.82566561e-18 + art_sys_63: -2.06223709e-19 + art_sys_64: -2.98266889e-20 + art_sys_65: -1.87811396e-19 + art_sys_66: 3.05811674e-06 + art_sys_67: -8.93982367e-21 + art_sys_68: 8.35091716e-22 + art_sys_69: 1.32969524e-06 + art_sys_70: -1.46373774e-18 + art_sys_71: 2.47436317e-17 + art_sys_72: 2.13936794e-17 + art_sys_73: -2.54137881e-07 + art_sys_74: 1.80359237e-15 + art_sys_75: -1.25850354e-19 + art_sys_76: -9.17440383e-20 + art_sys_77: -2.14932224e-20 + art_sys_78: -1.12258091e-20 + art_sys_79: 2.24894562e-19 + art_sys_80: 6.95987295e-16 + art_sys_81: -1.54146579e-21 + art_sys_82: -3.24636423e-21 + art_sys_83: -1.93838285e-21 + art_sys_84: 1.26562288e-19 + art_sys_85: -6.13966351e-22 + art_sys_86: 1.30124614e-23 + art_sys_87: 1.81520267e-18 + art_sys_88: 2.29858320e-18 + art_sys_89: -2.74177101e-18 + art_sys_90: -2.01165850e-15 + art_sys_91: -1.28352959e-16 + art_sys_92: -1.30178059e-09 + art_sys_93: 3.06275488e-16 + art_sys_94: -6.77106694e-10 + art_sys_95: -9.50597253e-18 + art_sys_96: -6.38296774e-19 + art_sys_97: 3.98486898e-10 + art_sys_98: -6.62261048e-18 + art_sys_99: 1.04219189e-17 + art_sys_100: 1.96942756e-10 + art_sys_101: -3.14777538e-17 + art_sys_102: 4.77738419e-19 + art_sys_103: -9.95405939e-11 + art_sys_104: 1.78991693e-17 + art_sys_105: 1.57128698e-18 + art_sys_106: 2.59565098e-17 + art_sys_107: 3.26963279e-17 + art_sys_108: -4.41364462e-11 + art_sys_109: -3.62417625e-16 + art_sys_110: -1.13134653e-18 + art_sys_111: -1.38912836e-15 + art_sys_112: 1.72759467e-11 + art_sys_113: -2.45689634e-19 + art_sys_114: 1.35236165e-15 + art_sys_115: 6.38776799e-12 + art_sys_116: 1.34965731e-16 + art_sys_117: -1.64652733e-19 + art_sys_118: 1.38163865e-15 + art_sys_119: 2.32107343e-12 + art_sys_120: -2.39021645e-16 + art_sys_121: 5.31313228e-17 + art_sys_122: 1.37034940e-16 + art_sys_123: 7.75983776e-13 + art_sys_124: 2.79966715e-18 + art_sys_125: -1.50068858e-17 + art_sys_126: 1.67194003e-16 + art_sys_127: 3.20304032e-17 + art_sys_128: 2.76387886e-13 + art_sys_129: -9.03117099e-14 + art_sys_130: -2.94385446e-14 + art_sys_131: -9.05435511e-15 + art_sys_132: -5.44869364e-17 + art_sys_133: -2.22308662e-17 + art_sys_134: 2.65735269e-15 + art_sys_135: 5.59899499e-17 + art_sys_136: 8.86373530e-16 + art_sys_137: 1.73120143e-17 + art_sys_138: -1.06358776e-16 + art_sys_139: 4.86228686e-18 + art_sys_140: -1.61969523e-19 + art_sys_141: -2.23650805e-17 + art_sys_142: -0.0 + art_sys_143: 3.53496887e-18 + art_sys_144: 1.28348066e-17 + art_sys_145: 1.63485607e-17 + art_sys_146: -9.56964123e-20 + art_sys_147: 2.71689678e-19 + art_sys_148: -3.39620697e-19 + art_sys_149: 9.78395295e-20 + art_sys_150: -8.23251703e-21 + art_sys_151: -1.38434082e-22 + art_sys_152: -4.71759495e-21 + art_sys_153: -3.45307320e-22 + art_sys_154: -6.09075804e-21 + art_sys_155: 1.36686036e-20 + art_sys_156: 5.76112696e-20 + art_sys_157: 3.40720017e-20 + art_sys_158: -0.0 + art_sys_159: -6.91609445e-19 + art_sys_160: -6.91609445e-19 + art_sys_161: -5.59222083e-20 + art_sys_162: 2.07279071e-32 + art_sys_163: 0.0 + art_sys_164: 1.26539019e-32 + art_sys_165: 2.17691308e-28 + art_sys_166: -2.76981579e-28 + art_sys_167: -6.72796945e-30 + art_sys_168: -6.23061819e-30 + art_sys_169: -8.60295943e-30 + art_sys_170: -3.06100653e-29 + art_sys_171: 3.11809960e-28 + art_sys_172: 1.10462918e-27 + art_sys_173: 1.14337772e-28 + art_sys_174: 1.96493025e-32 + art_sys_175: -1.66167393e-29 + art_sys_176: 3.06458309e-29 + art_sys_177: -9.85640890e-30 + art_sys_178: -1.15269352e-30 + art_sys_179: 2.17715146e-30 + art_sys_180: 3.41178885e-31 + art_sys_181: -3.61263306e-32 + art_sys_182: 3.68692841e-32 + art_sys_183: 5.95470105e-34 + art_sys_184: 4.42574941e-35 + art_sys_185: 1.78035782e-33 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -19469,167 +19469,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: -4.52666822e-77 - art_sys_26: -2.37127571e-71 - art_sys_27: 1.48935466e-64 - art_sys_28: -8.91065929e-64 - art_sys_29: -3.42246501e-53 - art_sys_30: -2.78171804e-50 - art_sys_31: -1.30119029e-47 - art_sys_32: 1.55434192e-39 - art_sys_33: 4.65804752e-34 - art_sys_34: 4.69641823e-27 - art_sys_35: 3.29228886e-28 - art_sys_36: -9.86779758e-03 - art_sys_37: -1.03627747e-01 - art_sys_38: -1.54657118e-01 - art_sys_39: 1.27783178e-02 - art_sys_40: -6.58143998e-01 - art_sys_41: 7.35546721e-01 - art_sys_42: 1.96312639e+00 - art_sys_43: 7.52009988e-01 - art_sys_44: 1.22387258e-02 - art_sys_45: -1.45993958e-02 - art_sys_46: 7.16458547e-03 - art_sys_47: 1.04586516e-18 - art_sys_48: 1.00918333e-18 - art_sys_49: -2.74170645e-18 + art_sys_25: 2.81280460e-37 + art_sys_26: -7.17615702e-31 + art_sys_27: -3.72686611e-23 + art_sys_28: 9.11363558e-23 + art_sys_29: 9.86779758e-03 + art_sys_30: 1.03627747e-01 + art_sys_31: 1.54657118e-01 + art_sys_32: -1.27783178e-02 + art_sys_33: -6.58143998e-01 + art_sys_34: -7.35546721e-01 + art_sys_35: -1.96312639e+00 + art_sys_36: 9.62449947e-18 + art_sys_37: -4.55246048e-18 + art_sys_38: 7.52009988e-01 + art_sys_39: -8.18845823e-18 + art_sys_40: 2.06524467e-18 + art_sys_41: -7.11649690e-18 + art_sys_42: -1.22387258e-02 + art_sys_43: -2.94304054e-18 + art_sys_44: 1.45993958e-02 + art_sys_45: 1.33256750e-18 + art_sys_46: 2.44731179e-18 + art_sys_47: -7.16458547e-03 + art_sys_48: -1.28065916e-18 + art_sys_49: -1.13442065e-18 art_sys_50: 8.02417357e-04 - art_sys_51: -3.87875802e-04 - art_sys_52: -1.13354036e-18 - art_sys_53: -5.34536425e-19 - art_sys_54: -4.94352026e-20 - art_sys_55: -1.99831585e-19 - art_sys_56: -3.74433207e-19 - art_sys_57: -1.02615750e-04 - art_sys_58: 9.63739191e-06 - art_sys_59: -4.67155718e-20 - art_sys_60: -2.75235645e-19 - art_sys_61: -4.16411990e-06 - art_sys_62: 2.95802232e-19 - art_sys_63: 3.50697465e-19 - art_sys_64: -1.50942934e-15 - art_sys_65: 4.18389331e-16 - art_sys_66: 2.15574196e-16 - art_sys_67: 2.31096932e-17 - art_sys_68: -1.14570617e-18 - art_sys_69: 3.53709596e-19 - art_sys_70: 1.28817215e-19 - art_sys_71: 1.09761147e-19 - art_sys_72: -1.08756992e-20 - art_sys_73: 1.82161168e-20 - art_sys_74: 8.13268167e-07 - art_sys_75: 6.69309178e-21 - art_sys_76: -6.19500726e-19 - art_sys_77: 4.39185628e-20 - art_sys_78: -3.65306023e-20 - art_sys_79: -1.08156489e-20 - art_sys_80: -6.51043031e-20 - art_sys_81: -5.20832425e-20 - art_sys_82: -1.12282939e-17 - art_sys_83: 8.69250392e-21 - art_sys_84: 6.95847619e-21 - art_sys_85: -8.77787413e-22 - art_sys_86: 1.10563958e-21 - art_sys_87: -2.15606670e-16 - art_sys_88: -1.03875421e-17 - art_sys_89: -5.13860168e-22 - art_sys_90: 4.67325362e-19 - art_sys_91: 7.10901005e-19 - art_sys_92: 4.84146919e-22 - art_sys_93: -3.80154555e-23 - art_sys_94: -1.04899699e-17 - art_sys_95: 5.58636852e-09 - art_sys_96: 1.23215413e-17 - art_sys_97: -4.57133130e-18 - art_sys_98: -2.13439146e-09 - art_sys_99: 6.56696876e-18 - art_sys_100: 1.49058224e-09 - art_sys_101: 1.51414038e-15 - art_sys_102: -6.96763913e-10 - art_sys_103: 1.12554661e-15 - art_sys_104: 2.06625441e-15 - art_sys_105: -1.36665547e-18 - art_sys_106: -9.22623918e-15 - art_sys_107: 3.54984204e-10 - art_sys_108: -2.21650334e-18 - art_sys_109: -8.56387699e-18 - art_sys_110: -1.56913638e-10 - art_sys_111: -3.75590473e-17 - art_sys_112: 3.22112426e-15 - art_sys_113: -3.03089653e-16 - art_sys_114: -4.22061274e-18 - art_sys_115: 4.18765365e-17 - art_sys_116: -6.12136784e-11 - art_sys_117: -1.50514553e-17 - art_sys_118: 5.96240881e-16 - art_sys_119: 2.26431278e-11 - art_sys_120: 4.46146510e-16 - art_sys_121: 2.20236635e-18 - art_sys_122: 3.40250052e-16 - art_sys_123: 8.20970157e-12 - art_sys_124: -1.73176896e-16 - art_sys_125: -2.20828544e-18 - art_sys_126: -1.11439529e-16 - art_sys_127: -2.74407443e-12 - art_sys_128: 2.92620464e-16 - art_sys_129: -1.29819945e-20 - art_sys_130: 9.75191427e-13 - art_sys_131: 1.39888754e-18 - art_sys_132: -1.40607085e-15 - art_sys_133: 3.17433842e-13 - art_sys_134: 6.51474795e-16 - art_sys_135: 8.07705245e-17 - art_sys_136: 1.36484873e-19 - art_sys_137: 1.04560201e-13 - art_sys_138: 1.10218664e-16 - art_sys_139: 3.16380958e-14 - art_sys_140: 3.20308075e-20 - art_sys_141: 2.12746336e-16 - art_sys_142: -1.00325252e-16 - art_sys_143: 9.70699971e-15 - art_sys_144: -4.44977854e-19 - art_sys_145: -7.63791367e-17 - art_sys_146: 3.26295325e-15 - art_sys_147: -7.97199917e-20 - art_sys_148: -6.79914816e-21 - art_sys_149: 2.54861764e-17 - art_sys_150: 4.11724692e-16 - art_sys_151: -1.55667354e-17 - art_sys_152: 2.10318072e-20 - art_sys_153: -4.61217430e-17 - art_sys_154: 5.18749365e-17 - art_sys_155: -1.63235993e-20 - art_sys_156: -0.0 - art_sys_157: -2.40373054e-17 - art_sys_158: -0.0 - art_sys_159: -3.47080138e-18 - art_sys_160: -7.83859782e-19 - art_sys_161: 2.28232392e-19 - art_sys_162: 2.28232392e-19 - art_sys_163: 3.01944006e-19 - art_sys_164: 3.01944006e-19 - art_sys_165: -3.32235664e-33 - art_sys_166: 1.09908673e-33 - art_sys_167: 0.0 - art_sys_168: -1.37125454e-27 - art_sys_169: -1.39145482e-27 - art_sys_170: 2.95904428e-29 - art_sys_171: -1.34818327e-27 - art_sys_172: -9.93879016e-29 - art_sys_173: -7.89516224e-30 - art_sys_174: 1.81713466e-29 - art_sys_175: 5.06975398e-31 - art_sys_176: -2.37874257e-31 - art_sys_177: 1.75229313e-29 - art_sys_178: -9.57120412e-31 - art_sys_179: 4.35336832e-33 - art_sys_180: -8.13407277e-32 - art_sys_181: -1.87574609e-30 - art_sys_182: 3.98536820e-32 - art_sys_183: -6.53648020e-34 - art_sys_184: 9.57585295e-34 - art_sys_185: 2.56938249e-35 + art_sys_51: 3.87875802e-04 + art_sys_52: -9.46637343e-19 + art_sys_53: -1.59840021e-19 + art_sys_54: 2.47716503e-19 + art_sys_55: 5.44200293e-19 + art_sys_56: -5.90952057e-20 + art_sys_57: -1.30339185e-15 + art_sys_58: -2.08790723e-16 + art_sys_59: 2.67526102e-16 + art_sys_60: 1.02615750e-04 + art_sys_61: -1.91126462e-17 + art_sys_62: -4.26067818e-18 + art_sys_63: -9.04835843e-19 + art_sys_64: 5.50438968e-19 + art_sys_65: 4.59294518e-19 + art_sys_66: -9.63739191e-06 + art_sys_67: 1.17639386e-20 + art_sys_68: -2.69658299e-20 + art_sys_69: -4.16411987e-06 + art_sys_70: 3.73281543e-18 + art_sys_71: -7.77381362e-17 + art_sys_72: -6.87259750e-17 + art_sys_73: 8.13268167e-07 + art_sys_74: -5.64847270e-15 + art_sys_75: -2.24837267e-19 + art_sys_76: 4.38710063e-19 + art_sys_77: 7.31691730e-20 + art_sys_78: 5.35523630e-20 + art_sys_79: 8.26848049e-20 + art_sys_80: -2.17947618e-15 + art_sys_81: 8.61469779e-21 + art_sys_82: 1.33277583e-20 + art_sys_83: 6.99647779e-21 + art_sys_84: -6.80624633e-19 + art_sys_85: 2.58638030e-21 + art_sys_86: 4.43889807e-22 + art_sys_87: -6.63819844e-18 + art_sys_88: -8.13154353e-18 + art_sys_89: 9.72454456e-18 + art_sys_90: 6.29973471e-15 + art_sys_91: 4.09823944e-16 + art_sys_92: 5.58637308e-09 + art_sys_93: -9.58990268e-16 + art_sys_94: 2.13439194e-09 + art_sys_95: 3.16948290e-17 + art_sys_96: 2.26174999e-18 + art_sys_97: -1.49057690e-09 + art_sys_98: 2.00132780e-17 + art_sys_99: -3.42714637e-17 + art_sys_100: -6.96760440e-10 + art_sys_101: 1.17178518e-16 + art_sys_102: -1.69276790e-18 + art_sys_103: 3.54983136e-10 + art_sys_104: -6.40170419e-17 + art_sys_105: -5.55092072e-18 + art_sys_106: -8.26671966e-17 + art_sys_107: -1.06959971e-16 + art_sys_108: 1.56911910e-10 + art_sys_109: 1.32766098e-15 + art_sys_110: 3.99604332e-18 + art_sys_111: 5.27281120e-15 + art_sys_112: -6.12128380e-11 + art_sys_113: 8.67390100e-19 + art_sys_114: -5.01208983e-15 + art_sys_115: -2.26437478e-11 + art_sys_116: -4.79627489e-16 + art_sys_117: 5.81625495e-19 + art_sys_118: -5.17481011e-15 + art_sys_119: -8.21016942e-12 + art_sys_120: 8.85376522e-16 + art_sys_121: -1.88248902e-16 + art_sys_122: -4.85277827e-16 + art_sys_123: -2.74375089e-12 + art_sys_124: -1.02289661e-17 + art_sys_125: 5.35295842e-17 + art_sys_126: -5.92629825e-16 + art_sys_127: -1.13372472e-16 + art_sys_128: -9.76708806e-13 + art_sys_129: 3.18926608e-13 + art_sys_130: 1.03953473e-13 + art_sys_131: 3.19595812e-14 + art_sys_132: 1.92921980e-16 + art_sys_133: 7.85808455e-17 + art_sys_134: -9.37943834e-15 + art_sys_135: -1.98445266e-16 + art_sys_136: -3.12813683e-15 + art_sys_137: -6.12817608e-17 + art_sys_138: 3.75310300e-16 + art_sys_139: -1.71551084e-17 + art_sys_140: 5.33543060e-19 + art_sys_141: 7.89526561e-17 + art_sys_142: 0.0 + art_sys_143: -1.24954717e-17 + art_sys_144: -4.53227693e-17 + art_sys_145: -5.77065313e-17 + art_sys_146: 3.38069610e-19 + art_sys_147: -9.59351017e-19 + art_sys_148: 1.20611372e-18 + art_sys_149: -3.44814382e-19 + art_sys_150: 2.90762778e-20 + art_sys_151: 3.88135283e-22 + art_sys_152: 1.66098834e-20 + art_sys_153: 1.21691215e-21 + art_sys_154: 2.15190661e-20 + art_sys_155: -4.82779332e-20 + art_sys_156: -2.03374675e-19 + art_sys_157: -1.20246691e-19 + art_sys_158: 0.0 + art_sys_159: 2.43888538e-18 + art_sys_160: 2.43888538e-18 + art_sys_161: 1.97685379e-19 + art_sys_162: -7.32757226e-32 + art_sys_163: -0.0 + art_sys_164: -4.47335854e-32 + art_sys_165: -1.47963538e-27 + art_sys_166: 1.13002595e-27 + art_sys_167: -5.95978707e-29 + art_sys_168: 6.55735645e-29 + art_sys_169: -1.80762327e-29 + art_sys_170: -1.85227849e-29 + art_sys_171: 2.81600402e-28 + art_sys_172: 1.88397588e-27 + art_sys_173: 4.23217186e-28 + art_sys_174: -6.93638021e-32 + art_sys_175: -1.04352172e-29 + art_sys_176: 4.10387085e-29 + art_sys_177: -1.33076668e-29 + art_sys_178: 1.86610169e-32 + art_sys_179: -8.24546291e-30 + art_sys_180: -8.99167384e-31 + art_sys_181: 6.30943231e-32 + art_sys_182: 2.00407606e-32 + art_sys_183: -5.18499312e-34 + art_sys_184: -1.61662674e-34 + art_sys_185: -6.28967917e-33 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -19760,167 +19760,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: -2.59810074e-77 - art_sys_26: -1.36100392e-71 - art_sys_27: 8.54821528e-65 - art_sys_28: -5.11431133e-64 - art_sys_29: -1.96433855e-53 - art_sys_30: -1.59657907e-50 - art_sys_31: -7.46823779e-48 - art_sys_32: 8.92121247e-40 - art_sys_33: 2.67350647e-34 - art_sys_34: 2.69552950e-27 - art_sys_35: 1.88962339e-28 - art_sys_36: -5.67305623e-03 - art_sys_37: -8.85964103e-03 - art_sys_38: -2.68773801e-02 - art_sys_39: 1.78411342e-02 - art_sys_40: -1.75259929e-02 - art_sys_41: -1.34345944e-01 - art_sys_42: 1.11377876e-01 - art_sys_43: 1.54332737e-01 - art_sys_44: -1.86275580e-01 - art_sys_45: 5.97840953e-02 - art_sys_46: -3.97699986e-02 - art_sys_47: 1.94420536e-18 - art_sys_48: -3.66380883e-19 - art_sys_49: -1.45804293e-18 + art_sys_25: 1.61709815e-37 + art_sys_26: -4.12561551e-31 + art_sys_27: -2.14259758e-23 + art_sys_28: 5.23948350e-23 + art_sys_29: 5.67305623e-03 + art_sys_30: 8.85964103e-03 + art_sys_31: 2.68773801e-02 + art_sys_32: -1.78411342e-02 + art_sys_33: -1.75259929e-02 + art_sys_34: 1.34345944e-01 + art_sys_35: -1.11377876e-01 + art_sys_36: 9.59893961e-20 + art_sys_37: -4.69475323e-19 + art_sys_38: 1.54332737e-01 + art_sys_39: -1.72506113e-18 + art_sys_40: 5.19232973e-19 + art_sys_41: -7.17401909e-19 + art_sys_42: 1.86275580e-01 + art_sys_43: 1.74665521e-18 + art_sys_44: -5.97840953e-02 + art_sys_45: -2.54771690e-18 + art_sys_46: 3.55162710e-20 + art_sys_47: 3.97699986e-02 + art_sys_48: -3.36839239e-18 + art_sys_49: -1.16045971e-18 art_sys_50: -3.89194564e-03 - art_sys_51: 1.95752722e-03 - art_sys_52: -2.76369044e-19 - art_sys_53: 1.68839987e-18 - art_sys_54: -4.06775350e-19 - art_sys_55: -1.82821377e-20 - art_sys_56: 4.25295076e-19 - art_sys_57: 5.30203399e-04 - art_sys_58: -4.76445081e-05 - art_sys_59: 4.54167388e-19 - art_sys_60: -3.75237580e-19 - art_sys_61: 2.14607026e-05 - art_sys_62: -1.58102985e-19 - art_sys_63: 3.41340634e-19 - art_sys_64: 8.94483368e-16 - art_sys_65: -6.67429556e-16 - art_sys_66: 9.84103906e-19 - art_sys_67: -3.92152562e-17 - art_sys_68: 1.99572113e-19 - art_sys_69: -1.39041885e-18 - art_sys_70: -1.15262531e-18 - art_sys_71: -5.61413821e-19 - art_sys_72: 3.18243843e-20 - art_sys_73: -4.09888938e-20 - art_sys_74: -4.19695797e-06 - art_sys_75: -2.31517997e-21 - art_sys_76: 2.90436498e-18 - art_sys_77: -3.34072158e-19 - art_sys_78: 2.32644278e-19 - art_sys_79: 1.66474370e-20 - art_sys_80: 3.29359602e-19 - art_sys_81: -4.88051691e-20 - art_sys_82: 5.82630165e-17 - art_sys_83: -4.17008434e-20 - art_sys_84: -3.26091356e-20 - art_sys_85: 3.85491359e-21 - art_sys_86: -5.04965640e-21 - art_sys_87: 1.08775188e-15 - art_sys_88: 5.51129938e-17 - art_sys_89: 2.55984492e-21 - art_sys_90: -2.49937374e-18 - art_sys_91: -3.27650276e-18 - art_sys_92: -2.53692742e-21 - art_sys_93: 3.35977515e-22 - art_sys_94: 5.63770944e-17 - art_sys_95: -2.59890495e-08 - art_sys_96: -5.73497907e-17 - art_sys_97: 2.05725455e-17 - art_sys_98: 1.23789390e-08 - art_sys_99: 1.53101586e-16 - art_sys_100: -7.52768604e-09 - art_sys_101: -7.62325744e-15 - art_sys_102: 3.73651422e-09 - art_sys_103: -5.72478757e-15 - art_sys_104: -9.57366842e-15 - art_sys_105: 7.38080802e-18 - art_sys_106: 4.93350976e-14 - art_sys_107: -1.88351113e-09 - art_sys_108: 1.19658914e-17 - art_sys_109: 4.62419171e-17 - art_sys_110: 8.39792717e-10 - art_sys_111: -1.05400730e-15 - art_sys_112: -1.72387204e-14 - art_sys_113: 1.62538831e-15 - art_sys_114: 2.27990558e-17 - art_sys_115: -1.95984467e-16 - art_sys_116: 3.28587626e-10 - art_sys_117: 8.13284582e-17 - art_sys_118: -3.17761987e-15 - art_sys_119: -1.21707570e-10 - art_sys_120: -2.38866844e-15 - art_sys_121: -1.18969412e-17 - art_sys_122: -1.82973369e-15 - art_sys_123: -4.42519863e-11 - art_sys_124: 9.29261661e-16 - art_sys_125: 1.19355339e-17 - art_sys_126: 5.98849436e-16 - art_sys_127: 1.48002374e-11 - art_sys_128: -1.56304439e-15 - art_sys_129: 7.18406065e-20 - art_sys_130: -5.26577270e-12 - art_sys_131: -7.56378863e-18 - art_sys_132: 7.52484658e-15 - art_sys_133: -1.71523308e-12 - art_sys_134: -3.50212105e-15 - art_sys_135: -4.31893361e-16 - art_sys_136: -7.37918820e-19 - art_sys_137: -5.65136790e-13 - art_sys_138: -5.93489388e-16 - art_sys_139: -1.71084977e-13 - art_sys_140: -1.72906030e-19 - art_sys_141: -1.14978270e-15 - art_sys_142: 5.39254949e-16 - art_sys_143: -5.24901767e-14 - art_sys_144: 2.40114206e-18 - art_sys_145: 4.11024848e-16 - art_sys_146: -1.76479414e-14 - art_sys_147: 4.31135203e-19 - art_sys_148: 3.67486181e-20 - art_sys_149: -1.36593335e-16 - art_sys_150: -2.22717419e-15 - art_sys_151: 8.37880079e-17 - art_sys_152: -1.13896127e-19 - art_sys_153: 2.49338397e-16 - art_sys_154: -2.78543822e-16 - art_sys_155: 8.83154821e-20 - art_sys_156: 0.0 - art_sys_157: 1.29076880e-16 - art_sys_158: 0.0 - art_sys_159: 1.86628617e-17 - art_sys_160: 4.21091776e-18 - art_sys_161: -1.23566862e-18 - art_sys_162: -1.23566862e-18 - art_sys_163: -1.62439390e-18 - art_sys_164: -1.62439390e-18 - art_sys_165: 1.78866714e-32 - art_sys_166: -5.91766348e-33 - art_sys_167: -0.0 - art_sys_168: 5.17257274e-27 - art_sys_169: 6.54532849e-27 - art_sys_170: 4.31968677e-28 - art_sys_171: 2.23567943e-27 - art_sys_172: 3.72867074e-28 - art_sys_173: 6.80577062e-30 - art_sys_174: 2.75499010e-30 - art_sys_175: -1.96398092e-30 - art_sys_176: 3.51508836e-30 - art_sys_177: -9.47394323e-29 - art_sys_178: 5.14293396e-30 - art_sys_179: -2.35553325e-32 - art_sys_180: 4.37437642e-31 - art_sys_181: 1.00563395e-29 - art_sys_182: 4.39422547e-31 - art_sys_183: 1.24454990e-32 - art_sys_184: -5.06846625e-33 - art_sys_185: -1.38704200e-34 + art_sys_51: -1.95752722e-03 + art_sys_52: 1.54541865e-18 + art_sys_53: 1.09701048e-18 + art_sys_54: 1.05798663e-18 + art_sys_55: 3.04800132e-19 + art_sys_56: 8.84083618e-19 + art_sys_57: -2.85321086e-16 + art_sys_58: 3.30932573e-16 + art_sys_59: -3.45807477e-16 + art_sys_60: -5.30203399e-04 + art_sys_61: 2.18305465e-17 + art_sys_62: 7.99552695e-18 + art_sys_63: -1.39750345e-18 + art_sys_64: -2.88207666e-18 + art_sys_65: -2.88601932e-18 + art_sys_66: 4.76445081e-05 + art_sys_67: -6.06499995e-20 + art_sys_68: 1.66321343e-19 + art_sys_69: 2.14607025e-05 + art_sys_70: -1.56920471e-17 + art_sys_71: 3.84895102e-16 + art_sys_72: 3.38880514e-16 + art_sys_73: -4.19695797e-06 + art_sys_74: 2.91130492e-14 + art_sys_75: 8.07431517e-20 + art_sys_76: -1.91110197e-18 + art_sys_77: -4.04753355e-19 + art_sys_78: -2.29771271e-19 + art_sys_79: 2.92887407e-19 + art_sys_80: 1.12329104e-14 + art_sys_81: -3.41316195e-20 + art_sys_82: -6.40930498e-20 + art_sys_83: -3.62759261e-20 + art_sys_84: 3.38736534e-18 + art_sys_85: -1.22099512e-20 + art_sys_86: -5.59696471e-22 + art_sys_87: 3.55205683e-17 + art_sys_88: 4.36313917e-17 + art_sys_89: -5.22711843e-17 + art_sys_90: -3.24665509e-14 + art_sys_91: -2.11551107e-15 + art_sys_92: -2.59890751e-08 + art_sys_93: 4.94256380e-15 + art_sys_94: -1.23789410e-08 + art_sys_95: -1.60449953e-16 + art_sys_96: -1.21905804e-17 + art_sys_97: 7.52765876e-09 + art_sys_98: -1.32119339e-16 + art_sys_99: 1.74858244e-16 + art_sys_100: 3.73649560e-09 + art_sys_101: -5.93645938e-16 + art_sys_102: 9.12296518e-18 + art_sys_103: -1.88350545e-09 + art_sys_104: 3.18442953e-16 + art_sys_105: 2.99770065e-17 + art_sys_106: 4.54905127e-16 + art_sys_107: 4.86135495e-16 + art_sys_108: -8.39783464e-10 + art_sys_109: -6.85723334e-15 + art_sys_110: -2.15873250e-17 + art_sys_111: -2.63163024e-14 + art_sys_112: 3.28583101e-10 + art_sys_113: -4.68608384e-18 + art_sys_114: 2.55066178e-14 + art_sys_115: 1.21710902e-10 + art_sys_116: 2.57057352e-15 + art_sys_117: -3.14228666e-18 + art_sys_118: 2.60878908e-14 + art_sys_119: 4.42545082e-11 + art_sys_120: -4.51337876e-15 + art_sys_121: 1.01032908e-15 + art_sys_122: 2.59342197e-15 + art_sys_123: 1.47984875e-11 + art_sys_124: 5.31511949e-17 + art_sys_125: -2.86305936e-16 + art_sys_126: 3.18511346e-15 + art_sys_127: 6.08635937e-16 + art_sys_128: 5.27395273e-12 + art_sys_129: -1.72328652e-12 + art_sys_130: -5.61861555e-13 + art_sys_131: -1.72820327e-13 + art_sys_132: -1.03520473e-15 + art_sys_133: -4.24010096e-16 + art_sys_134: 5.07216935e-14 + art_sys_135: 1.06554149e-15 + art_sys_136: 1.69197054e-14 + art_sys_137: 3.29729135e-16 + art_sys_138: -2.03029661e-15 + art_sys_139: 9.28161512e-17 + art_sys_140: -2.80380562e-18 + art_sys_141: -4.26777662e-16 + art_sys_142: -0.0 + art_sys_143: 6.71995207e-17 + art_sys_144: 2.44885239e-16 + art_sys_145: 3.11975931e-16 + art_sys_146: -1.82623696e-18 + art_sys_147: 5.18535251e-18 + art_sys_148: -6.46297130e-18 + art_sys_149: 1.86724965e-18 + art_sys_150: -1.56965476e-19 + art_sys_151: -2.80616423e-21 + art_sys_152: -9.01459642e-20 + art_sys_153: -6.60004541e-21 + art_sys_154: -1.16181957e-19 + art_sys_155: 2.60770954e-19 + art_sys_156: 1.09938464e-18 + art_sys_157: 6.50284723e-19 + art_sys_158: -0.0 + art_sys_159: -1.32080698e-17 + art_sys_160: -1.32080698e-17 + art_sys_161: -1.06651564e-18 + art_sys_162: 3.95303419e-31 + art_sys_163: 0.0 + art_sys_164: 2.41322205e-31 + art_sys_165: 6.73297964e-27 + art_sys_166: -5.74511970e-27 + art_sys_167: 1.23590610e-28 + art_sys_168: -2.60216467e-28 + art_sys_169: -3.52460236e-29 + art_sys_170: 1.43772424e-28 + art_sys_171: 4.53065259e-27 + art_sys_172: -1.72919482e-27 + art_sys_173: 7.56589229e-28 + art_sys_174: 3.74952273e-31 + art_sys_175: 1.78119380e-30 + art_sys_176: -1.14441908e-29 + art_sys_177: -2.81498159e-30 + art_sys_178: -2.88805264e-30 + art_sys_179: 4.44569888e-29 + art_sys_180: 4.82220261e-30 + art_sys_181: -6.20109412e-31 + art_sys_182: 4.19340910e-31 + art_sys_183: 5.45864766e-33 + art_sys_184: 8.65432270e-34 + art_sys_185: 3.39683586e-32 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -20051,167 +20051,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: -4.76257754e-78 - art_sys_26: -2.49485579e-72 - art_sys_27: 1.56697304e-65 - art_sys_28: -9.37504226e-65 - art_sys_29: -3.60082830e-54 - art_sys_30: -2.92668852e-51 - art_sys_31: -1.36900240e-48 - art_sys_32: 1.63534714e-40 - art_sys_33: 4.90080375e-35 - art_sys_34: 4.94117416e-28 - art_sys_35: 3.46386797e-29 - art_sys_36: -1.04046512e-03 - art_sys_37: 1.27321525e-03 - art_sys_38: -1.77953259e-04 - art_sys_39: 2.30380582e-03 - art_sys_40: 3.41186608e-02 - art_sys_41: -5.23935428e-02 - art_sys_42: -1.18339460e-01 - art_sys_43: -5.01272356e-02 - art_sys_44: -1.30876649e-01 - art_sys_45: -9.07651704e-02 - art_sys_46: 5.32094854e-02 - art_sys_47: 3.57728032e-18 - art_sys_48: 7.16133485e-19 - art_sys_49: 1.98176311e-18 + art_sys_25: 2.96583378e-38 + art_sys_26: -7.56657214e-32 + art_sys_27: -3.92962434e-24 + art_sys_28: 9.60945822e-24 + art_sys_29: 1.04046512e-03 + art_sys_30: -1.27321525e-03 + art_sys_31: 1.77953259e-04 + art_sys_32: -2.30380582e-03 + art_sys_33: 3.41186608e-02 + art_sys_34: 5.23935428e-02 + art_sys_35: 1.18339460e-01 + art_sys_36: -5.89850742e-19 + art_sys_37: 4.50837784e-19 + art_sys_38: -5.01272356e-02 + art_sys_39: 5.27073401e-19 + art_sys_40: -1.27115374e-19 + art_sys_41: 4.86602308e-19 + art_sys_42: 1.30876649e-01 + art_sys_43: 1.32974032e-18 + art_sys_44: 9.07651704e-02 + art_sys_45: -7.35606166e-19 + art_sys_46: -1.79475767e-18 + art_sys_47: -5.32094854e-02 + art_sys_48: 2.86437896e-19 + art_sys_49: -2.01930695e-18 art_sys_50: 9.87293354e-03 - art_sys_51: -4.54523682e-03 - art_sys_52: -6.72985297e-19 - art_sys_53: -1.21675870e-18 - art_sys_54: -1.29872938e-18 - art_sys_55: -5.51257103e-19 - art_sys_56: -6.24032618e-20 - art_sys_57: -1.42928271e-03 - art_sys_58: 1.40735383e-04 - art_sys_59: -4.93618279e-20 - art_sys_60: 2.64566739e-19 - art_sys_61: -6.18706285e-05 - art_sys_62: 3.28051470e-19 - art_sys_63: 2.48455079e-19 - art_sys_64: -6.90172194e-15 - art_sys_65: 3.56769266e-16 - art_sys_66: -3.77124650e-17 - art_sys_67: 1.65809552e-17 - art_sys_68: 8.41185180e-19 - art_sys_69: 1.99154683e-18 - art_sys_70: 3.32222861e-18 - art_sys_71: 1.69308745e-18 - art_sys_72: -1.03771668e-19 - art_sys_73: 1.28333435e-19 - art_sys_74: 1.27466532e-05 - art_sys_75: -3.62224749e-21 - art_sys_76: -9.11500662e-18 - art_sys_77: 8.13848638e-19 - art_sys_78: -6.68862808e-19 - art_sys_79: 2.31369678e-20 - art_sys_80: -1.00133545e-18 - art_sys_81: 2.87867709e-20 - art_sys_82: -1.76736708e-16 - art_sys_83: 1.30418676e-19 - art_sys_84: 1.04858932e-19 - art_sys_85: -1.03871163e-20 - art_sys_86: 1.55954252e-20 - art_sys_87: -3.44355181e-15 - art_sys_88: -1.73510927e-16 - art_sys_89: -7.60607921e-21 - art_sys_90: 7.85828884e-18 - art_sys_91: 9.93927565e-18 - art_sys_92: 7.60758265e-21 - art_sys_93: -8.14454825e-22 - art_sys_94: -1.79320005e-16 - art_sys_95: 8.10087988e-08 - art_sys_96: 1.78551582e-16 - art_sys_97: -6.49496016e-17 - art_sys_98: -3.53674908e-08 - art_sys_99: -2.34262376e-16 - art_sys_100: 2.38329879e-08 - art_sys_101: 2.41960222e-14 - art_sys_102: -1.14457678e-08 - art_sys_103: 1.80278142e-14 - art_sys_104: 2.99067004e-14 - art_sys_105: -2.36320284e-17 - art_sys_106: -1.51168476e-13 - art_sys_107: 5.92425618e-09 - art_sys_108: -3.83135248e-17 - art_sys_109: -1.48055903e-16 - art_sys_110: -2.63999475e-09 - art_sys_111: 1.67420667e-15 - art_sys_112: 5.41908255e-14 - art_sys_113: -4.97890215e-15 - art_sys_114: -7.30497935e-17 - art_sys_115: 6.56330501e-16 - art_sys_116: -1.04094692e-09 - art_sys_117: -2.60719864e-16 - art_sys_118: 9.89016316e-15 - art_sys_119: 3.87125577e-10 - art_sys_120: 7.51365205e-15 - art_sys_121: 3.81149061e-17 - art_sys_122: 5.44377108e-15 - art_sys_123: 1.41105893e-10 - art_sys_124: -2.83922176e-15 - art_sys_125: -3.82907764e-17 - art_sys_126: -1.90362790e-15 - art_sys_127: -4.73333488e-11 - art_sys_128: 4.91036708e-15 - art_sys_129: -2.38946328e-19 - art_sys_130: 1.68599675e-11 - art_sys_131: 2.42770997e-17 - art_sys_132: -2.36504185e-14 - art_sys_133: 5.49886182e-12 - art_sys_134: 1.11414958e-14 - art_sys_135: 1.35582129e-15 - art_sys_136: 2.37047941e-18 - art_sys_137: 1.81317343e-12 - art_sys_138: 1.88990546e-15 - art_sys_139: 5.49158733e-13 - art_sys_140: 5.53530051e-19 - art_sys_141: 3.68730579e-15 - art_sys_142: -1.71193077e-15 - art_sys_143: 1.68538835e-13 - art_sys_144: -7.68306503e-18 - art_sys_145: -1.31147769e-15 - art_sys_146: 5.66748151e-14 - art_sys_147: -1.38444449e-18 - art_sys_148: -1.17982699e-19 - art_sys_149: 4.31537333e-16 - art_sys_150: 7.15456685e-15 - art_sys_151: -2.67220642e-16 - art_sys_152: 3.66205416e-19 - art_sys_153: -8.00555551e-16 - art_sys_154: 8.75865544e-16 - art_sys_155: -2.84531796e-19 - art_sys_156: -0.0 - art_sys_157: -4.09541063e-16 - art_sys_158: -0.0 - art_sys_159: -5.94579432e-17 - art_sys_160: -1.33782087e-17 - art_sys_161: 3.97983515e-18 - art_sys_162: 3.97983515e-18 - art_sys_163: 5.17770331e-18 - art_sys_164: 5.17770331e-18 - art_sys_165: -5.70821862e-32 - art_sys_166: 1.88874660e-32 - art_sys_167: 0.0 - art_sys_168: -1.90739770e-26 - art_sys_169: -2.10270913e-26 - art_sys_170: -1.45665989e-27 - art_sys_171: -1.15602008e-26 - art_sys_172: -1.36948992e-27 - art_sys_173: -3.83714902e-29 - art_sys_174: -5.43196256e-29 - art_sys_175: 1.21162123e-29 - art_sys_176: -1.23744942e-29 - art_sys_177: 3.03964432e-28 - art_sys_178: -1.64588396e-29 - art_sys_179: 7.60256710e-32 - art_sys_180: -1.39389068e-30 - art_sys_181: -3.21720922e-29 - art_sys_182: -1.60116015e-30 - art_sys_183: -3.93454881e-32 - art_sys_184: 1.62484389e-32 - art_sys_185: 4.45507387e-34 + art_sys_51: 4.54523682e-03 + art_sys_52: -1.37189182e-18 + art_sys_53: 3.35421262e-19 + art_sys_54: -1.99070091e-19 + art_sys_55: -7.96472190e-20 + art_sys_56: 5.66093762e-19 + art_sys_57: 1.24083539e-15 + art_sys_58: -4.86602657e-16 + art_sys_59: 5.89549758e-16 + art_sys_60: 1.42928271e-03 + art_sys_61: 3.29358120e-17 + art_sys_62: -2.83576477e-17 + art_sys_63: 2.97008268e-18 + art_sys_64: 7.33953663e-18 + art_sys_65: 7.72342967e-18 + art_sys_66: -1.40735383e-04 + art_sys_67: 1.86354022e-19 + art_sys_68: -4.35568734e-19 + art_sys_69: -6.18706280e-05 + art_sys_70: 4.00554406e-17 + art_sys_71: -1.13749801e-15 + art_sys_72: -1.00181809e-15 + art_sys_73: 1.27466532e-05 + art_sys_74: -8.39290762e-14 + art_sys_75: -5.04798531e-19 + art_sys_76: 6.16208610e-18 + art_sys_77: 1.20895129e-18 + art_sys_78: 7.15355661e-19 + art_sys_79: 5.87669582e-21 + art_sys_80: -3.23823529e-14 + art_sys_81: 1.07589804e-19 + art_sys_82: 1.96312141e-19 + art_sys_83: 1.06227468e-19 + art_sys_84: -8.82103791e-18 + art_sys_85: 3.58685740e-20 + art_sys_86: 3.08756791e-21 + art_sys_87: -1.11637055e-16 + art_sys_88: -1.38282013e-16 + art_sys_89: 1.66257543e-16 + art_sys_90: 9.36000153e-14 + art_sys_91: 6.41542919e-15 + art_sys_92: 8.10088728e-08 + art_sys_93: -1.42499026e-14 + art_sys_94: 3.53674976e-08 + art_sys_95: 4.87615915e-16 + art_sys_96: 3.88745526e-17 + art_sys_97: -2.38329022e-08 + art_sys_98: 3.51966463e-16 + art_sys_99: -5.03466718e-16 + art_sys_100: -1.14457108e-08 + art_sys_101: 1.88781080e-15 + art_sys_102: -2.91645595e-17 + art_sys_103: 5.92423829e-09 + art_sys_104: -9.92044141e-16 + art_sys_105: -9.59659594e-17 + art_sys_106: -1.33000860e-15 + art_sys_107: -1.58640695e-15 + art_sys_108: 2.63996566e-09 + art_sys_109: 2.14491147e-14 + art_sys_110: 6.91730991e-17 + art_sys_111: 8.40459988e-14 + art_sys_112: -1.04093245e-09 + art_sys_113: 1.50110794e-17 + art_sys_114: -8.03148844e-14 + art_sys_115: -3.87136164e-10 + art_sys_116: -8.08031367e-15 + art_sys_117: 1.00739300e-17 + art_sys_118: -8.26555193e-14 + art_sys_119: -1.41113934e-10 + art_sys_120: 1.42733277e-14 + art_sys_121: -3.19884860e-15 + art_sys_122: -8.14946656e-15 + art_sys_123: -4.73277409e-11 + art_sys_124: -1.66850743e-16 + art_sys_125: 9.03976573e-16 + art_sys_126: -1.01274099e-14 + art_sys_127: -1.92796487e-15 + art_sys_128: -1.68861147e-11 + art_sys_129: 5.52462993e-12 + art_sys_130: 1.80268666e-12 + art_sys_131: 5.54714100e-13 + art_sys_132: 3.27722309e-15 + art_sys_133: 1.35672542e-15 + art_sys_134: -1.62876569e-13 + art_sys_135: -3.37975714e-15 + art_sys_136: -5.43402730e-14 + art_sys_137: -1.04920372e-15 + art_sys_138: 6.52218575e-15 + art_sys_139: -2.98125213e-16 + art_sys_140: 8.48761152e-18 + art_sys_141: 1.36971575e-15 + art_sys_142: 0.0 + art_sys_143: -2.13191209e-16 + art_sys_144: -7.85157522e-16 + art_sys_145: -1.00139728e-15 + art_sys_146: 5.85501081e-18 + art_sys_147: -1.66337604e-17 + art_sys_148: 2.04719101e-17 + art_sys_149: -6.00643699e-18 + art_sys_150: 5.02833520e-19 + art_sys_151: 1.19281598e-20 + art_sys_152: 2.91010686e-19 + art_sys_153: 2.12782048e-20 + art_sys_154: 3.72220055e-19 + art_sys_155: -8.35917480e-19 + art_sys_156: -3.52873631e-18 + art_sys_157: -2.08808125e-18 + art_sys_158: 0.0 + art_sys_159: 4.24203492e-17 + art_sys_160: 4.24203492e-17 + art_sys_161: 3.41533657e-18 + art_sys_162: -1.26583451e-30 + art_sys_163: -0.0 + art_sys_164: -7.72745635e-31 + art_sys_165: -2.18219869e-26 + art_sys_166: 1.84189830e-26 + art_sys_167: -3.87172446e-28 + art_sys_168: 8.21154820e-28 + art_sys_169: 2.60957738e-28 + art_sys_170: -8.25840363e-28 + art_sys_171: -9.95712810e-27 + art_sys_172: 1.06981232e-26 + art_sys_173: -2.75558841e-27 + art_sys_174: -1.20337925e-30 + art_sys_175: 3.00339914e-29 + art_sys_176: -9.06195661e-29 + art_sys_177: 2.90144967e-29 + art_sys_178: 1.07762012e-29 + art_sys_179: -1.42783481e-28 + art_sys_180: -1.56706757e-29 + art_sys_181: 1.92749910e-30 + art_sys_182: -1.37700513e-30 + art_sys_183: -1.74885391e-32 + art_sys_184: -2.77933602e-33 + art_sys_185: -1.08881839e-31 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -20342,167 +20342,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: -2.85481662e-79 - art_sys_26: -1.49548343e-73 - art_sys_27: 9.39285639e-67 - art_sys_28: -5.61965163e-66 - art_sys_29: -2.15843300e-55 - art_sys_30: -1.75433555e-52 - art_sys_31: -8.20616737e-50 - art_sys_32: 9.80270911e-42 - art_sys_33: 2.93767314e-36 - art_sys_34: 2.96187224e-29 - art_sys_35: 2.07633531e-30 - art_sys_36: -6.25260902e-05 - art_sys_37: 9.27358711e-04 - art_sys_38: 1.60894948e-03 - art_sys_39: -6.72756584e-04 - art_sys_40: 5.44724727e-03 - art_sys_41: 7.90026173e-03 - art_sys_42: -1.72286726e-02 - art_sys_43: -1.88381027e-02 - art_sys_44: 1.99107516e-03 - art_sys_45: -1.53721278e-01 - art_sys_46: -4.54216246e-02 - art_sys_47: -9.18272385e-20 - art_sys_48: 4.65724278e-19 - art_sys_49: 2.50429925e-18 + art_sys_25: 1.78229873e-39 + art_sys_26: -4.54708285e-33 + art_sys_27: -2.36148247e-25 + art_sys_28: 5.77474210e-25 + art_sys_29: 6.25260902e-05 + art_sys_30: -9.27358711e-04 + art_sys_31: -1.60894948e-03 + art_sys_32: 6.72756584e-04 + art_sys_33: 5.44724727e-03 + art_sys_34: -7.90026173e-03 + art_sys_35: 1.72286726e-02 + art_sys_36: -4.92521695e-20 + art_sys_37: 7.97123037e-20 + art_sys_38: -1.88381027e-02 + art_sys_39: 2.05052116e-19 + art_sys_40: -6.63488821e-20 + art_sys_41: 1.13868620e-19 + art_sys_42: -1.99107516e-03 + art_sys_43: -1.34827359e-20 + art_sys_44: 1.53721278e-01 + art_sys_45: 8.24745450e-19 + art_sys_46: -4.06994601e-18 + art_sys_47: 4.54216246e-02 + art_sys_48: 2.40028355e-18 + art_sys_49: -2.70963526e-18 art_sys_50: -6.78022102e-03 - art_sys_51: 6.32350215e-03 - art_sys_52: 4.33767323e-19 - art_sys_53: -2.01700203e-18 - art_sys_54: -7.85019316e-20 - art_sys_55: 7.05087276e-19 - art_sys_56: 4.85366437e-21 - art_sys_57: 2.31400006e-03 - art_sys_58: -2.62143341e-04 - art_sys_59: -9.20250851e-19 - art_sys_60: 2.34508367e-19 - art_sys_61: 1.22267370e-04 - art_sys_62: 2.98827425e-20 - art_sys_63: -1.09659743e-19 - art_sys_64: -4.54279755e-16 - art_sys_65: -1.98646126e-16 - art_sys_66: 1.87884818e-16 - art_sys_67: 5.28005530e-17 - art_sys_68: -1.10484550e-18 - art_sys_69: -6.86767008e-18 - art_sys_70: -6.76711514e-18 - art_sys_71: -3.55563836e-18 - art_sys_72: 2.05456970e-19 - art_sys_73: -2.62563645e-19 - art_sys_74: -2.68416326e-05 - art_sys_75: 2.48432291e-20 - art_sys_76: 2.44492506e-17 - art_sys_77: -2.13625768e-18 - art_sys_78: 1.67951263e-18 - art_sys_79: -1.10097969e-19 - art_sys_80: 2.62165202e-18 - art_sys_81: -8.31114037e-20 - art_sys_82: 3.72725596e-16 - art_sys_83: -3.51682730e-19 - art_sys_84: -2.78109829e-19 - art_sys_85: 3.25686326e-20 - art_sys_86: -4.25243667e-20 - art_sys_87: 8.89642062e-15 - art_sys_88: 4.55562089e-16 - art_sys_89: 2.04445127e-20 - art_sys_90: -2.08633847e-17 - art_sys_91: -2.11068084e-17 - art_sys_92: -1.99155664e-20 - art_sys_93: 1.94779895e-21 - art_sys_94: 4.76334949e-16 - art_sys_95: -2.20623728e-07 - art_sys_96: -4.81378745e-16 - art_sys_97: 1.91061202e-16 - art_sys_98: 9.14156638e-08 - art_sys_99: 2.68335140e-16 - art_sys_100: -6.15419587e-08 - art_sys_101: -6.24797013e-14 - art_sys_102: 3.03841603e-08 - art_sys_103: -4.65542650e-14 - art_sys_104: -8.15383790e-14 - art_sys_105: 6.29025419e-17 - art_sys_106: 4.01479238e-13 - art_sys_107: -1.55448069e-08 - art_sys_108: 1.01979079e-16 - art_sys_109: 3.94095801e-16 - art_sys_110: 7.00471318e-09 - art_sys_111: -2.10265002e-15 - art_sys_112: -1.43778575e-13 - art_sys_113: 1.32173277e-14 - art_sys_114: 1.94438277e-16 - art_sys_115: -1.53764061e-15 - art_sys_116: 2.75722391e-09 - art_sys_117: 6.93973424e-16 - art_sys_118: -2.61389096e-14 - art_sys_119: -1.02833285e-09 - art_sys_120: -1.99376300e-14 - art_sys_121: -1.01427022e-16 - art_sys_122: -1.44699123e-14 - art_sys_123: -3.75175531e-10 - art_sys_124: 7.54187674e-15 - art_sys_125: 1.01947762e-16 - art_sys_126: 5.05981657e-15 - art_sys_127: 1.25881540e-10 - art_sys_128: -1.29975328e-14 - art_sys_129: 6.43444996e-19 - art_sys_130: -4.48778443e-11 - art_sys_131: -6.46478294e-17 - art_sys_132: 6.27519623e-14 - art_sys_133: -1.46369180e-11 - art_sys_134: -2.95985653e-14 - art_sys_135: -3.59727073e-15 - art_sys_136: -6.31202003e-18 - art_sys_137: -4.82772783e-12 - art_sys_138: -5.01840857e-15 - art_sys_139: -1.46239097e-12 - art_sys_140: -1.47311336e-18 - art_sys_141: -9.81712283e-15 - art_sys_142: 4.54098802e-15 - art_sys_143: -4.48794748e-13 - art_sys_144: 2.04402293e-17 - art_sys_145: 3.49112195e-15 - art_sys_146: -1.50935453e-13 - art_sys_147: 3.68688883e-18 - art_sys_148: 3.14090039e-19 - art_sys_149: -1.14140121e-15 - art_sys_150: -1.90546409e-14 - art_sys_151: 7.10157408e-16 - art_sys_152: -9.75708602e-19 - art_sys_153: 2.13123190e-15 - art_sys_154: -2.32264100e-15 - art_sys_155: 7.57679622e-19 - art_sys_156: 0.0 - art_sys_157: 1.08605875e-15 - art_sys_158: 0.0 - art_sys_159: 1.57890772e-16 - art_sys_160: 3.54894921e-17 - art_sys_161: -1.05942502e-17 - art_sys_162: -1.05942502e-17 - art_sys_163: -1.37550792e-17 - art_sys_164: -1.37550792e-17 - art_sys_165: 1.51679985e-31 - art_sys_166: -5.01897659e-32 - art_sys_167: -0.0 - art_sys_168: 4.29083188e-26 - art_sys_169: 5.55445259e-26 - art_sys_170: 4.29057459e-27 - art_sys_171: 3.59583377e-26 - art_sys_172: 5.03176850e-27 - art_sys_173: 2.98302467e-28 - art_sys_174: 1.96046461e-28 - art_sys_175: -3.32113711e-29 - art_sys_176: 3.34640978e-29 - art_sys_177: -8.09295429e-28 - art_sys_178: 4.38044825e-29 - art_sys_179: -2.02464305e-31 - art_sys_180: 3.70185884e-30 - art_sys_181: 8.56299451e-29 - art_sys_182: 4.86288348e-30 - art_sys_183: 1.04342835e-31 - art_sys_184: -4.33184439e-32 - art_sys_185: -1.18662432e-33 + art_sys_51: -6.32350215e-03 + art_sys_52: -1.83940143e-18 + art_sys_53: 9.90987103e-19 + art_sys_54: -1.93637180e-18 + art_sys_55: -7.69669106e-19 + art_sys_56: 1.18105195e-18 + art_sys_57: 2.68548600e-15 + art_sys_58: 3.93732985e-16 + art_sys_59: -1.05212913e-15 + art_sys_60: -2.31400006e-03 + art_sys_61: -4.49144998e-17 + art_sys_62: 5.70294402e-17 + art_sys_63: -2.39835979e-18 + art_sys_64: -1.49541650e-17 + art_sys_65: -1.48683471e-17 + art_sys_66: 2.62143341e-04 + art_sys_67: -3.83889272e-19 + art_sys_68: 9.56293957e-19 + art_sys_69: 1.22267369e-04 + art_sys_70: -5.61147643e-17 + art_sys_71: 2.11982262e-15 + art_sys_72: 1.86510296e-15 + art_sys_73: -2.68416326e-05 + art_sys_74: 1.65871638e-13 + art_sys_75: 4.57734969e-19 + art_sys_76: -1.69471125e-17 + art_sys_77: -3.25689428e-18 + art_sys_78: -1.96265815e-18 + art_sys_79: 1.89965352e-20 + art_sys_80: 6.39888540e-14 + art_sys_81: -3.16853602e-19 + art_sys_82: -5.33755456e-19 + art_sys_83: -2.88983123e-19 + art_sys_84: 2.15175029e-17 + art_sys_85: -9.85105052e-20 + art_sys_86: -1.31666685e-20 + art_sys_87: 2.92617368e-16 + art_sys_88: 3.66271283e-16 + art_sys_89: -4.41623176e-16 + art_sys_90: -1.84969889e-13 + art_sys_91: -1.34862573e-14 + art_sys_92: -2.20623920e-07 + art_sys_93: 2.81616460e-14 + art_sys_94: -9.14156824e-08 + art_sys_95: -1.08305879e-15 + art_sys_96: -1.03362258e-16 + art_sys_97: 6.15417374e-08 + art_sys_98: -1.10233603e-15 + art_sys_99: 1.07776861e-15 + art_sys_100: 3.03840089e-08 + art_sys_101: -4.85136838e-15 + art_sys_102: 7.75396940e-17 + art_sys_103: -1.55447598e-08 + art_sys_104: 2.57069461e-15 + art_sys_105: 2.55438585e-16 + art_sys_106: 3.42617348e-15 + art_sys_107: 2.57073826e-15 + art_sys_108: -7.00463600e-09 + art_sys_109: -5.59553629e-14 + art_sys_110: -1.84125283e-16 + art_sys_111: -2.16931201e-13 + art_sys_112: 2.75718532e-09 + art_sys_113: -3.99560866e-17 + art_sys_114: 2.07532302e-13 + art_sys_115: 1.02836095e-09 + art_sys_116: 2.14836360e-14 + art_sys_117: -2.68156853e-17 + art_sys_118: 2.13184049e-13 + art_sys_119: 3.75196912e-10 + art_sys_120: -3.69652679e-14 + art_sys_121: 8.46956048e-15 + art_sys_122: 2.14382018e-14 + art_sys_123: 1.25866587e-10 + art_sys_124: 4.44556199e-16 + art_sys_125: -2.39183863e-15 + art_sys_126: 2.68942208e-14 + art_sys_127: 5.10578299e-15 + art_sys_128: 4.49473642e-11 + art_sys_129: -1.47054548e-11 + art_sys_130: -4.79982695e-12 + art_sys_131: -1.47717194e-12 + art_sys_132: -8.67723797e-15 + art_sys_133: -3.60891434e-15 + art_sys_134: 4.33726434e-13 + art_sys_135: 8.96147778e-15 + art_sys_136: 1.44722823e-13 + art_sys_137: 2.78377183e-15 + art_sys_138: -1.73709397e-14 + art_sys_139: 7.93960870e-16 + art_sys_140: -1.95383662e-17 + art_sys_141: -3.64620665e-15 + art_sys_142: -0.0 + art_sys_143: 5.64133370e-16 + art_sys_144: 2.08946962e-15 + art_sys_145: 2.66592526e-15 + art_sys_146: -1.55844784e-17 + art_sys_147: 4.42885778e-17 + art_sys_148: -5.42632172e-17 + art_sys_149: 1.60020886e-17 + art_sys_150: -1.33727688e-18 + art_sys_151: -3.52477664e-20 + art_sys_152: -7.76374750e-19 + art_sys_153: -5.67493417e-20 + art_sys_154: -9.90353947e-19 + art_sys_155: 2.22459898e-18 + art_sys_156: 9.39372580e-18 + art_sys_157: 5.55993278e-18 + art_sys_158: -0.0 + art_sys_159: -1.13070398e-16 + art_sys_160: -1.13070398e-16 + art_sys_161: -9.08406529e-18 + art_sys_162: 3.36671668e-30 + art_sys_163: 0.0 + art_sys_164: 2.05522619e-30 + art_sys_165: 5.84188766e-26 + art_sys_166: -4.91090614e-26 + art_sys_167: 1.03463608e-27 + art_sys_168: -2.18752957e-27 + art_sys_169: -7.20447993e-28 + art_sys_170: 2.30304693e-27 + art_sys_171: 1.96634243e-26 + art_sys_172: -2.14417998e-26 + art_sys_173: 3.61111054e-27 + art_sys_174: 3.20344764e-30 + art_sys_175: -1.56752535e-28 + art_sys_176: 2.57881992e-28 + art_sys_177: -4.41459891e-29 + art_sys_178: -2.57104884e-29 + art_sys_179: 3.79143713e-28 + art_sys_180: 4.16675067e-29 + art_sys_181: -5.06328044e-30 + art_sys_182: 3.35071629e-30 + art_sys_183: 4.43142472e-32 + art_sys_184: 7.40802255e-33 + art_sys_185: 2.89773507e-31 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -20633,167 +20633,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: 7.14696040e-80 - art_sys_26: 3.74390451e-74 - art_sys_27: -2.35147756e-67 - art_sys_28: 1.40686540e-66 - art_sys_29: 5.40358177e-56 - art_sys_30: 4.39193413e-53 - art_sys_31: 2.05439299e-50 - art_sys_32: -2.45408313e-42 - art_sys_33: -7.35438948e-37 - art_sys_34: -7.41497132e-30 - art_sys_35: -5.19805229e-31 - art_sys_36: 1.55800211e-05 - art_sys_37: 1.62703973e-04 - art_sys_38: 3.55604768e-04 - art_sys_39: -2.23323412e-04 - art_sys_40: -1.46059140e-03 - art_sys_41: 4.95002921e-03 - art_sys_42: 6.61681903e-03 - art_sys_43: 2.03289127e-03 - art_sys_44: 1.56411332e-02 - art_sys_45: -9.96604937e-03 - art_sys_46: -3.14408475e-02 - art_sys_47: -7.93291410e-19 - art_sys_48: 5.89896919e-19 - art_sys_49: -2.11777226e-20 + art_sys_25: -4.44106748e-40 + art_sys_26: 1.13302565e-33 + art_sys_27: 5.88425656e-26 + art_sys_28: -1.43892934e-25 + art_sys_29: -1.55800211e-05 + art_sys_30: -1.62703973e-04 + art_sys_31: -3.55604768e-04 + art_sys_32: 2.23323412e-04 + art_sys_33: -1.46059140e-03 + art_sys_34: -4.95002921e-03 + art_sys_35: -6.61681903e-03 + art_sys_36: 3.71862085e-20 + art_sys_37: -1.32074054e-20 + art_sys_38: 2.03289127e-03 + art_sys_39: -1.94771334e-20 + art_sys_40: 2.68486134e-21 + art_sys_41: -2.70464135e-20 + art_sys_42: -1.56411332e-02 + art_sys_43: -1.54523030e-19 + art_sys_44: 9.96604937e-03 + art_sys_45: 7.83461847e-20 + art_sys_46: -6.80277640e-19 + art_sys_47: 3.14408475e-02 + art_sys_48: 2.09400337e-19 + art_sys_49: -1.21404141e-19 art_sys_50: 3.39522923e-02 - art_sys_51: -1.41063609e-02 - art_sys_52: -6.32055501e-19 - art_sys_53: 5.21762478e-19 - art_sys_54: -1.51850699e-20 - art_sys_55: -9.85146897e-19 - art_sys_56: 1.18422682e-19 - art_sys_57: -7.52329300e-03 - art_sys_58: 8.12547945e-04 - art_sys_59: -1.51610145e-19 - art_sys_60: 6.01250337e-19 - art_sys_61: -4.00400981e-04 - art_sys_62: -1.57761365e-19 - art_sys_63: 1.11151715e-19 - art_sys_64: 2.18586112e-16 - art_sys_65: -4.51400663e-16 - art_sys_66: 4.18176859e-17 - art_sys_67: -4.11131822e-17 - art_sys_68: 4.00340143e-18 - art_sys_69: 1.99931159e-17 - art_sys_70: 2.40423704e-17 - art_sys_71: 1.22799538e-17 - art_sys_72: -7.51132536e-19 - art_sys_73: 9.37890468e-19 - art_sys_74: 9.30516938e-05 - art_sys_75: -4.72664475e-20 - art_sys_76: -7.46133637e-17 - art_sys_77: 8.60188769e-18 - art_sys_78: -6.80590836e-18 - art_sys_79: -1.82351580e-20 - art_sys_80: -8.65344086e-18 - art_sys_81: -7.17959858e-20 - art_sys_82: -1.29162695e-15 - art_sys_83: 1.12053227e-18 - art_sys_84: 8.83855280e-19 - art_sys_85: -6.53454887e-20 - art_sys_86: 1.19515308e-19 - art_sys_87: -3.07757400e-14 - art_sys_88: -1.65886396e-15 - art_sys_89: -6.31120728e-20 - art_sys_90: 7.61968580e-17 - art_sys_91: 7.30071197e-17 - art_sys_92: 6.62829206e-20 - art_sys_93: -9.22031766e-21 - art_sys_94: -1.77387735e-15 - art_sys_95: 6.57748841e-07 - art_sys_96: 1.44356071e-15 - art_sys_97: -5.45781206e-16 - art_sys_98: -3.29069078e-07 - art_sys_99: -5.04655632e-15 - art_sys_100: 2.13194098e-07 - art_sys_101: 2.16255430e-13 - art_sys_102: -1.07809451e-07 - art_sys_103: 1.61588098e-13 - art_sys_104: 2.42206881e-13 - art_sys_105: -2.37079477e-16 - art_sys_106: -1.42032572e-12 - art_sys_107: 5.65485658e-08 - art_sys_108: -3.84352750e-16 - art_sys_109: -1.48533970e-15 - art_sys_110: -2.56072545e-08 - art_sys_111: 3.42940322e-14 - art_sys_112: 5.25588800e-13 - art_sys_113: -4.68963503e-14 - art_sys_114: -7.33736936e-16 - art_sys_115: 5.33971743e-15 - art_sys_116: -1.02208532e-08 - art_sys_117: -2.62107602e-15 - art_sys_118: 9.40246004e-14 - art_sys_119: 3.82953972e-09 - art_sys_120: 7.29806258e-14 - art_sys_121: 3.82773019e-16 - art_sys_122: 4.96073245e-14 - art_sys_123: 1.40558541e-09 - art_sys_124: -2.66950465e-14 - art_sys_125: -3.85446943e-16 - art_sys_126: -1.88155378e-14 - art_sys_127: -4.73365800e-10 - art_sys_128: 4.74671948e-14 - art_sys_129: -2.57669736e-18 - art_sys_130: 1.69147140e-10 - art_sys_131: 2.44629002e-16 - art_sys_132: -2.29339835e-13 - art_sys_133: 5.52853956e-11 - art_sys_134: 1.10259359e-13 - art_sys_135: 1.31308488e-14 - art_sys_136: 2.39064032e-17 - art_sys_137: 1.82536186e-11 - art_sys_138: 1.87640600e-14 - art_sys_139: 5.53481111e-12 - art_sys_140: 5.54964139e-18 - art_sys_141: 3.70986444e-14 - art_sys_142: -1.68914230e-14 - art_sys_143: 1.69913441e-12 - art_sys_144: -7.69400847e-17 - art_sys_145: -1.30499102e-14 - art_sys_146: 5.71649717e-13 - art_sys_147: -1.39612409e-17 - art_sys_148: -1.18845757e-18 - art_sys_149: 4.21417514e-15 - art_sys_150: 7.22016817e-14 - art_sys_151: -2.65686175e-15 - art_sys_152: 3.70485100e-18 - art_sys_153: -8.06668194e-15 - art_sys_154: 8.52637745e-15 - art_sys_155: -2.88067773e-18 - art_sys_156: -0.0 - art_sys_157: -4.03284939e-15 - art_sys_158: -0.0 - art_sys_159: -5.89546401e-16 - art_sys_160: -1.32022731e-16 - art_sys_161: 4.02921949e-17 - art_sys_162: 4.02921949e-17 - art_sys_163: 5.14048931e-17 - art_sys_164: 5.14048931e-17 - art_sys_165: -5.68025161e-31 - art_sys_166: 1.87994565e-31 - art_sys_167: 0.0 - art_sys_168: -1.88365865e-25 - art_sys_169: -2.10686089e-25 - art_sys_170: -2.76450883e-26 - art_sys_171: -1.29316364e-25 - art_sys_172: -1.81307679e-26 - art_sys_173: -9.62116559e-28 - art_sys_174: -5.56992076e-28 - art_sys_175: 1.10039833e-28 - art_sys_176: -1.23219496e-28 - art_sys_177: 3.06044247e-27 - art_sys_178: -1.65141755e-28 - art_sys_179: 7.71334679e-31 - art_sys_180: -1.38265581e-29 - art_sys_181: -3.23818984e-28 - art_sys_182: -1.77985418e-29 - art_sys_183: -3.84803835e-31 - art_sys_184: 1.63934382e-31 - art_sys_185: 4.49311474e-33 + art_sys_51: 1.41063609e-02 + art_sys_52: -1.70542173e-18 + art_sys_53: 5.67536346e-19 + art_sys_54: 4.31327286e-19 + art_sys_55: 5.15364216e-19 + art_sys_56: 1.01243143e-18 + art_sys_57: -1.68822302e-15 + art_sys_58: -3.15242713e-15 + art_sys_59: 4.27336313e-15 + art_sys_60: 7.52329300e-03 + art_sys_61: 4.04864106e-16 + art_sys_62: -1.78050126e-16 + art_sys_63: 8.60601179e-18 + art_sys_64: 5.30001579e-17 + art_sys_65: 4.66436674e-17 + art_sys_66: -8.12547945e-04 + art_sys_67: 1.32858834e-18 + art_sys_68: -2.84858634e-18 + art_sys_69: -4.00400978e-04 + art_sys_70: 1.91261276e-16 + art_sys_71: -6.57019403e-15 + art_sys_72: -5.77964832e-15 + art_sys_73: 9.30516938e-05 + art_sys_74: -5.43235063e-13 + art_sys_75: 2.50438051e-19 + art_sys_76: 4.75696687e-17 + art_sys_77: 1.18123704e-17 + art_sys_78: 5.06465114e-18 + art_sys_79: -3.36932150e-19 + art_sys_80: -2.09536219e-13 + art_sys_81: 7.14866018e-19 + art_sys_82: 1.60231094e-18 + art_sys_83: 9.05578150e-19 + art_sys_84: -7.64402919e-17 + art_sys_85: 2.71295536e-19 + art_sys_86: -7.77689922e-22 + art_sys_87: -1.06494771e-15 + art_sys_88: -1.35864177e-15 + art_sys_89: 1.64458309e-15 + art_sys_90: 6.05737853e-13 + art_sys_91: 4.66841333e-14 + art_sys_92: 6.57749517e-07 + art_sys_93: -9.22284171e-14 + art_sys_94: 3.29069132e-07 + art_sys_95: 3.63845045e-15 + art_sys_96: 3.87270123e-16 + art_sys_97: -2.13193329e-07 + art_sys_98: 4.07738683e-15 + art_sys_99: -3.42248214e-15 + art_sys_100: -1.07808914e-07 + art_sys_101: 1.70025366e-14 + art_sys_102: -2.91356032e-16 + art_sys_103: 5.65483942e-08 + art_sys_104: -8.78297436e-15 + art_sys_105: -9.62499624e-16 + art_sys_106: -1.21866318e-14 + art_sys_107: -8.33028267e-15 + art_sys_108: 2.56069724e-08 + art_sys_109: 1.95729181e-13 + art_sys_110: 6.94906240e-16 + art_sys_111: 7.48913292e-13 + art_sys_112: -1.02207086e-08 + art_sys_113: 1.50706006e-16 + art_sys_114: -7.20639304e-13 + art_sys_115: -3.82964426e-09 + art_sys_116: -7.85932016e-14 + art_sys_117: 1.01276634e-16 + art_sys_118: -7.37803085e-13 + art_sys_119: -1.40566551e-09 + art_sys_120: 1.29361435e-13 + art_sys_121: -3.13762718e-14 + art_sys_122: -7.85067772e-14 + art_sys_123: -4.73309306e-10 + art_sys_124: -1.56680842e-15 + art_sys_125: 8.78298976e-15 + art_sys_126: -1.00118272e-13 + art_sys_127: -1.89353625e-14 + art_sys_128: -1.69408286e-10 + art_sys_129: 5.55433220e-11 + art_sys_130: 1.81484777e-11 + art_sys_131: 5.59049710e-12 + art_sys_132: 3.21439835e-14 + art_sys_133: 1.35841522e-14 + art_sys_134: -1.64234805e-12 + art_sys_135: -3.32586238e-14 + art_sys_136: -5.48192680e-13 + art_sys_137: -1.03912585e-14 + art_sys_138: 6.58258617e-14 + art_sys_139: -3.00881934e-15 + art_sys_140: 6.82912581e-17 + art_sys_141: 1.37936771e-14 + art_sys_142: 0.0 + art_sys_143: -2.10092102e-15 + art_sys_144: -7.89317992e-15 + art_sys_145: -1.00881293e-14 + art_sys_146: 5.88496484e-17 + art_sys_147: -1.67428977e-16 + art_sys_148: 2.00606823e-16 + art_sys_149: -6.07640359e-17 + art_sys_150: 5.04262222e-18 + art_sys_151: 1.87811263e-19 + art_sys_152: 2.96624335e-18 + art_sys_153: 2.16329625e-19 + art_sys_154: 3.73499763e-18 + art_sys_155: -8.39856901e-18 + art_sys_156: -3.55414776e-17 + art_sys_157: -2.10534695e-17 + art_sys_158: 0.0 + art_sys_159: 4.28874313e-16 + art_sys_160: 4.28874313e-16 + art_sys_161: 3.42147518e-17 + art_sys_162: -1.26793469e-29 + art_sys_163: -0.0 + art_sys_164: -7.73991377e-30 + art_sys_165: -2.21620512e-25 + art_sys_166: 1.84935611e-25 + art_sys_167: -3.71151504e-27 + art_sys_168: 8.15844993e-27 + art_sys_169: 2.83095731e-27 + art_sys_170: -9.06800086e-27 + art_sys_171: -6.77362292e-26 + art_sys_172: 7.15942849e-26 + art_sys_173: -1.21872635e-26 + art_sys_174: -1.21189232e-29 + art_sys_175: 5.29831307e-28 + art_sys_176: -1.21313455e-27 + art_sys_177: 2.37895497e-28 + art_sys_178: 1.00312856e-28 + art_sys_179: -1.43357409e-27 + art_sys_180: -1.57406364e-28 + art_sys_181: 1.93300901e-29 + art_sys_182: -1.26912553e-29 + art_sys_183: -1.68566335e-31 + art_sys_184: -2.80242178e-32 + art_sys_185: -1.09367942e-30 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -20924,167 +20924,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: 1.83856745e-80 - art_sys_26: 9.63125665e-75 - art_sys_27: -6.04921515e-68 - art_sys_28: 3.61918466e-67 - art_sys_29: 1.39008040e-56 - art_sys_30: 1.12983237e-53 - art_sys_31: 5.28496016e-51 - art_sys_32: -6.31316970e-43 - art_sys_33: -1.89192893e-37 - art_sys_34: -1.90751371e-30 - art_sys_35: -1.33720760e-31 - art_sys_36: 4.01159843e-06 - art_sys_37: 2.23763094e-05 - art_sys_38: 5.17594766e-05 - art_sys_39: -2.61466724e-05 - art_sys_40: -5.02693029e-04 - art_sys_41: 5.82487091e-04 - art_sys_42: 1.96147319e-03 - art_sys_43: 1.36753960e-03 - art_sys_44: 1.20479416e-03 - art_sys_45: 1.41060448e-02 - art_sys_46: 2.02009903e-03 - art_sys_47: -5.38024262e-20 - art_sys_48: 6.39911674e-19 - art_sys_49: -2.56208605e-19 + art_sys_25: -1.14350156e-40 + art_sys_26: 2.91735402e-34 + art_sys_27: 1.51509893e-26 + art_sys_28: -3.70500552e-26 + art_sys_29: -4.01159843e-06 + art_sys_30: -2.23763094e-05 + art_sys_31: -5.17594766e-05 + art_sys_32: 2.61466724e-05 + art_sys_33: -5.02693029e-04 + art_sys_34: -5.82487091e-04 + art_sys_35: -1.96147319e-03 + art_sys_36: 8.98608716e-21 + art_sys_37: -8.21203116e-21 + art_sys_38: 1.36753960e-03 + art_sys_39: -1.41260724e-20 + art_sys_40: 4.04675078e-21 + art_sys_41: -1.14043056e-20 + art_sys_42: -1.20479416e-03 + art_sys_43: -1.39158659e-20 + art_sys_44: -1.41060448e-02 + art_sys_45: -7.34642117e-20 + art_sys_46: 3.40975102e-19 + art_sys_47: -2.02009903e-03 + art_sys_48: -2.29851259e-19 + art_sys_49: 2.11511227e-19 art_sys_50: 3.05628833e-02 - art_sys_51: 1.68818519e-02 - art_sys_52: -1.33045353e-19 - art_sys_53: -6.41552658e-19 - art_sys_54: -8.46235409e-19 - art_sys_55: -4.62767124e-19 - art_sys_56: 2.93711612e-19 - art_sys_57: 9.55145502e-03 - art_sys_58: -1.92531169e-03 - art_sys_59: 6.64670804e-19 - art_sys_60: -4.43599980e-19 - art_sys_61: 8.80199393e-04 - art_sys_62: -1.05110300e-19 - art_sys_63: -3.27679664e-19 - art_sys_64: -2.39424914e-15 - art_sys_65: 1.54648966e-15 - art_sys_66: -6.18459930e-16 - art_sys_67: 1.07036316e-16 - art_sys_68: -1.41155535e-17 - art_sys_69: -7.77104095e-17 - art_sys_70: -6.20279036e-17 - art_sys_71: -3.20847775e-17 - art_sys_72: 1.99658515e-18 - art_sys_73: -2.41945554e-18 - art_sys_74: -2.42320554e-04 - art_sys_75: 1.67882971e-19 - art_sys_76: 2.68961154e-16 - art_sys_77: -2.00802486e-17 - art_sys_78: 1.86739744e-17 - art_sys_79: 2.09108402e-20 - art_sys_80: 2.89023567e-17 - art_sys_81: -1.54414935e-20 - art_sys_82: 3.36374439e-15 - art_sys_83: -3.93276951e-18 - art_sys_84: -3.16669682e-18 - art_sys_85: 2.89727450e-19 - art_sys_86: -4.53936540e-19 - art_sys_87: 1.02134989e-13 - art_sys_88: 5.42740088e-15 - art_sys_89: 2.13298482e-19 - art_sys_90: -2.51361166e-16 - art_sys_91: -1.90267032e-16 - art_sys_92: -2.04154135e-19 - art_sys_93: 1.78312893e-20 - art_sys_94: 5.86685327e-15 - art_sys_95: -2.41053425e-06 - art_sys_96: -5.22511914e-15 - art_sys_97: 2.17921180e-15 - art_sys_98: 9.60055326e-07 - art_sys_99: 1.83936770e-17 - art_sys_100: -7.06840405e-07 - art_sys_101: -7.18989005e-13 - art_sys_102: 3.51083963e-07 - art_sys_103: -5.32420939e-13 - art_sys_104: -8.91826672e-13 - art_sys_105: 7.85871539e-16 - art_sys_106: 4.63471459e-12 - art_sys_107: -1.84808687e-07 - art_sys_108: 1.27404742e-15 - art_sys_109: 4.92360048e-15 - art_sys_110: 8.43839582e-08 - art_sys_111: -2.54479441e-15 - art_sys_112: -1.73190535e-12 - art_sys_113: 1.52722003e-13 - art_sys_114: 2.43245870e-15 - art_sys_115: -1.70981937e-14 - art_sys_116: 3.36370415e-08 - art_sys_117: 8.69037514e-15 - art_sys_118: -3.08007573e-13 - art_sys_119: -1.26656959e-08 - art_sys_120: -2.40507702e-13 - art_sys_121: -1.26855486e-15 - art_sys_122: -1.59247863e-13 - art_sys_123: -4.64876092e-09 - art_sys_124: 8.68499990e-14 - art_sys_125: 1.27856761e-15 - art_sys_126: 6.22812370e-14 - art_sys_127: 1.56804686e-09 - art_sys_128: -1.56083595e-13 - art_sys_129: 8.66360120e-18 - art_sys_130: -5.60688908e-10 - art_sys_131: -8.11626756e-16 - art_sys_132: 7.55724697e-13 - art_sys_133: -1.83308676e-10 - art_sys_134: -3.64714767e-13 - art_sys_135: -4.32534984e-14 - art_sys_136: -7.93511830e-17 - art_sys_137: -6.05548501e-11 - art_sys_138: -6.19667338e-14 - art_sys_139: -1.83629747e-11 - art_sys_140: -1.83948217e-17 - art_sys_141: -1.23042018e-13 - art_sys_142: 5.56838802e-14 - art_sys_143: -5.63797813e-12 - art_sys_144: 2.54940374e-16 - art_sys_145: 4.33117564e-14 - art_sys_146: -1.89700577e-12 - art_sys_147: 4.63289806e-17 - art_sys_148: 3.94348436e-18 - art_sys_149: -1.38388010e-14 - art_sys_150: -2.39624657e-13 - art_sys_151: 8.79294941e-15 - art_sys_152: -1.22976200e-17 - art_sys_153: 2.67645073e-14 - art_sys_154: -2.80416680e-14 - art_sys_155: 9.57308662e-18 - art_sys_156: 0.0 - art_sys_157: 1.33002673e-14 - art_sys_158: 0.0 - art_sys_159: 1.94980464e-15 - art_sys_160: 4.35764237e-16 - art_sys_161: -1.33789900e-16 - art_sys_162: -1.33789900e-16 - art_sys_163: -1.70076268e-16 - art_sys_164: -1.70076268e-16 - art_sys_165: 1.88014707e-30 - art_sys_166: -6.22285413e-31 - art_sys_167: -0.0 - art_sys_168: 8.86347833e-25 - art_sys_169: 6.99146438e-25 - art_sys_170: 6.12368450e-26 - art_sys_171: 4.30875331e-25 - art_sys_172: 5.93098489e-26 - art_sys_173: 3.06909540e-27 - art_sys_174: 1.84640402e-27 - art_sys_175: -3.36334271e-28 - art_sys_176: 4.07890896e-28 - art_sys_177: -1.01515167e-26 - art_sys_178: 5.47414397e-28 - art_sys_179: -2.56574877e-30 - art_sys_180: 4.57340633e-29 - art_sys_181: 1.07399611e-27 - art_sys_182: 5.84795703e-29 - art_sys_183: 1.30146369e-30 - art_sys_184: -5.44014956e-31 - art_sys_185: -1.49143830e-32 + art_sys_51: -1.68818519e-02 + art_sys_52: -3.24615451e-18 + art_sys_53: -3.65472071e-19 + art_sys_54: -6.73006969e-19 + art_sys_55: -3.94664672e-19 + art_sys_56: 6.02882661e-19 + art_sys_57: 9.72718456e-15 + art_sys_58: 6.54855270e-15 + art_sys_59: -3.51174953e-15 + art_sys_60: -9.55145502e-03 + art_sys_61: -5.63018725e-16 + art_sys_62: 4.00575117e-16 + art_sys_63: -1.33282591e-17 + art_sys_64: -1.25257562e-16 + art_sys_65: -1.03026285e-16 + art_sys_66: 1.92531169e-03 + art_sys_67: -3.19478533e-18 + art_sys_68: 6.56866745e-18 + art_sys_69: 8.80199386e-04 + art_sys_70: -2.37366000e-17 + art_sys_71: 1.55686647e-14 + art_sys_72: 1.37004869e-14 + art_sys_73: -2.42320554e-04 + art_sys_74: 1.19407447e-12 + art_sys_75: 4.27951890e-20 + art_sys_76: -1.88838906e-16 + art_sys_77: -3.75063874e-17 + art_sys_78: -2.00724383e-17 + art_sys_79: 2.78443149e-19 + art_sys_80: 4.60521774e-13 + art_sys_81: -3.30432745e-18 + art_sys_82: -5.73402346e-18 + art_sys_83: -3.08100055e-18 + art_sys_84: 2.28324638e-16 + art_sys_85: -9.74772922e-19 + art_sys_86: -1.36279357e-19 + art_sys_87: 3.48037924e-15 + art_sys_88: 4.47101730e-15 + art_sys_89: -5.43909548e-15 + art_sys_90: -1.33158148e-12 + art_sys_91: -1.21101199e-13 + art_sys_92: -2.41053628e-06 + art_sys_93: 2.02777939e-13 + art_sys_94: -9.60055541e-07 + art_sys_95: -1.02510492e-14 + art_sys_96: -1.28088918e-15 + art_sys_97: 7.06837878e-07 + art_sys_98: -1.28285706e-14 + art_sys_99: 8.56892063e-15 + art_sys_100: 3.51082213e-07 + art_sys_101: -5.61249173e-14 + art_sys_102: 9.64902159e-16 + art_sys_103: -1.84808124e-07 + art_sys_104: 2.93407110e-14 + art_sys_105: 3.19037852e-15 + art_sys_106: 3.69855068e-14 + art_sys_107: 1.72969677e-14 + art_sys_108: -8.43830284e-08 + art_sys_109: -6.44425779e-13 + art_sys_110: -2.30384567e-15 + art_sys_111: -2.50741137e-12 + art_sys_112: 3.36365603e-08 + art_sys_113: -4.99609833e-16 + art_sys_114: 2.37518611e-12 + art_sys_115: 1.26660413e-08 + art_sys_116: 2.59410642e-13 + art_sys_117: -3.35831044e-16 + art_sys_118: 2.44632736e-12 + art_sys_119: 4.64902586e-09 + art_sys_120: -4.27577382e-13 + art_sys_121: 1.03185829e-13 + art_sys_122: 2.56178454e-13 + art_sys_123: 1.56785941e-09 + art_sys_124: 5.28816685e-15 + art_sys_125: -2.88863110e-14 + art_sys_126: 3.30961308e-13 + art_sys_127: 6.22826751e-14 + art_sys_128: 5.61553787e-10 + art_sys_129: -1.84163223e-10 + art_sys_130: -6.02064117e-11 + art_sys_131: -1.85475153e-11 + art_sys_132: -1.05729420e-13 + art_sys_133: -4.50068271e-14 + art_sys_134: 5.44976402e-12 + art_sys_135: 1.09655988e-13 + art_sys_136: 1.81923009e-12 + art_sys_137: 3.42895869e-14 + art_sys_138: -2.18464163e-13 + art_sys_139: 9.98314747e-15 + art_sys_140: -1.94381681e-16 + art_sys_141: -4.57560149e-14 + art_sys_142: -0.0 + art_sys_143: 6.89906830e-15 + art_sys_144: 2.61672554e-14 + art_sys_145: 3.34654525e-14 + art_sys_146: -1.95157098e-16 + art_sys_147: 5.55376608e-16 + art_sys_148: -6.61632934e-16 + art_sys_149: 2.01771474e-16 + art_sys_150: -1.67104215e-17 + art_sys_151: -6.65925440e-19 + art_sys_152: -9.86511432e-18 + art_sys_153: -7.19065774e-19 + art_sys_154: -1.23814494e-17 + art_sys_155: 2.78472296e-17 + art_sys_156: 1.17902473e-16 + art_sys_157: 6.98534453e-17 + art_sys_158: -0.0 + art_sys_159: -1.42294611e-15 + art_sys_160: -1.42294611e-15 + art_sys_161: -1.13422943e-16 + art_sys_162: 4.20312606e-29 + art_sys_163: 0.0 + art_sys_164: 2.56570022e-29 + art_sys_165: 7.37913399e-25 + art_sys_166: -6.12815919e-25 + art_sys_167: 1.16807976e-26 + art_sys_168: -2.69445034e-26 + art_sys_169: -9.61694303e-27 + art_sys_170: 3.05650384e-26 + art_sys_171: 2.14692320e-25 + art_sys_172: -2.28638387e-25 + art_sys_173: 3.64714267e-26 + art_sys_174: 4.02002292e-29 + art_sys_175: -1.92123939e-27 + art_sys_176: 4.36151746e-27 + art_sys_177: -8.39743145e-28 + art_sys_178: -3.34568374e-28 + art_sys_179: 4.75467669e-27 + art_sys_180: 5.22348221e-28 + art_sys_181: -6.41388679e-29 + art_sys_182: 4.17837523e-29 + art_sys_183: 5.57443028e-31 + art_sys_184: 9.29881757e-32 + art_sys_185: 3.62684872e-30 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -21215,167 +21215,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: 2.32517467e-81 - art_sys_26: 1.21803277e-75 - art_sys_27: -7.65023976e-69 - art_sys_28: 4.57706160e-68 - art_sys_29: 1.75798812e-57 - art_sys_30: 1.42886115e-54 - art_sys_31: 6.68371208e-52 - art_sys_32: -7.98405423e-44 - art_sys_33: -2.39265915e-38 - art_sys_34: -2.41236870e-31 - art_sys_35: -1.69112166e-32 - art_sys_36: 5.07350415e-07 - art_sys_37: 2.73762663e-06 - art_sys_38: 5.53841394e-06 - art_sys_39: 1.54160714e-06 - art_sys_40: -3.86106380e-05 - art_sys_41: -1.41268021e-04 - art_sys_42: 3.10602343e-05 - art_sys_43: 1.15803797e-04 - art_sys_44: -1.30149254e-03 - art_sys_45: 2.17037072e-03 - art_sys_46: 4.90390377e-03 - art_sys_47: 1.02249955e-19 - art_sys_48: 8.49873663e-20 - art_sys_49: 5.53376417e-21 + art_sys_25: -1.44619658e-41 + art_sys_26: 3.68960351e-35 + art_sys_27: 1.91615906e-27 + art_sys_28: -4.68575336e-27 + art_sys_29: -5.07350415e-07 + art_sys_30: -2.73762663e-06 + art_sys_31: -5.53841394e-06 + art_sys_32: -1.54160714e-06 + art_sys_33: -3.86106380e-05 + art_sys_34: 1.41268021e-04 + art_sys_35: -3.10602343e-05 + art_sys_36: -1.81054667e-22 + art_sys_37: -1.70183584e-22 + art_sys_38: 1.15803797e-04 + art_sys_39: -1.31806857e-21 + art_sys_40: 5.29017616e-22 + art_sys_41: -4.99854342e-22 + art_sys_42: 1.30149254e-03 + art_sys_43: 1.15415589e-20 + art_sys_44: -2.17037072e-03 + art_sys_45: -1.83801244e-21 + art_sys_46: 1.26056610e-19 + art_sys_47: -4.90390377e-03 + art_sys_48: -3.47674480e-20 + art_sys_49: 2.99516813e-20 art_sys_50: 2.37640067e-03 - art_sys_51: 2.67082659e-02 - art_sys_52: 4.82086768e-19 - art_sys_53: -1.11440202e-18 - art_sys_54: -6.91411832e-19 - art_sys_55: 4.46989945e-19 - art_sys_56: 2.72611534e-19 - art_sys_57: -1.02872212e-02 - art_sys_58: 1.62036944e-03 - art_sys_59: 1.23174486e-19 - art_sys_60: 1.92770607e-19 - art_sys_61: -1.44971633e-03 - art_sys_62: -1.59172566e-19 - art_sys_63: -9.10121654e-20 - art_sys_64: 1.85092301e-15 - art_sys_65: -3.30074054e-15 - art_sys_66: 6.81995696e-16 - art_sys_67: -2.94340792e-16 - art_sys_68: 2.97191481e-17 - art_sys_69: 1.18095495e-16 - art_sys_70: 1.23319926e-16 - art_sys_71: 6.34294603e-17 - art_sys_72: -3.38761840e-18 - art_sys_73: 4.70845818e-18 - art_sys_74: 4.76844945e-04 - art_sys_75: -4.41209615e-19 - art_sys_76: -6.85179323e-16 - art_sys_77: 7.10085156e-17 - art_sys_78: -6.03422707e-17 - art_sys_79: -4.74989159e-20 - art_sys_80: -7.81754055e-17 - art_sys_81: 2.03492688e-19 - art_sys_82: -6.61960168e-15 - art_sys_83: 1.04211034e-17 - art_sys_84: 8.25041698e-18 - art_sys_85: -5.84312026e-19 - art_sys_86: 1.09195371e-18 - art_sys_87: -2.82543307e-13 - art_sys_88: -1.60009093e-14 - art_sys_89: -5.55059072e-19 - art_sys_90: 7.47410149e-16 - art_sys_91: 3.74361003e-16 - art_sys_92: 5.76442929e-19 - art_sys_93: -7.26163890e-20 - art_sys_94: -1.76967094e-14 - art_sys_95: 6.10570197e-06 - art_sys_96: 1.31451352e-14 - art_sys_97: -5.76815293e-15 - art_sys_98: -2.85274843e-06 - art_sys_99: -3.16924498e-14 - art_sys_100: 1.95706212e-06 - art_sys_101: 1.98773385e-12 - art_sys_102: -1.02499563e-06 - art_sys_103: 1.47909116e-12 - art_sys_104: 2.25235027e-12 - art_sys_105: -2.39395930e-15 - art_sys_106: -1.34997752e-11 - art_sys_107: 5.44336276e-07 - art_sys_108: -3.88097544e-15 - art_sys_109: -1.49989785e-14 - art_sys_110: -2.51068549e-07 - art_sys_111: 2.14693449e-13 - art_sys_112: 5.15266691e-12 - art_sys_113: -4.45866884e-13 - art_sys_114: -7.41572801e-15 - art_sys_115: 4.25190514e-14 - art_sys_116: -1.01139565e-07 - art_sys_117: -2.65084941e-14 - art_sys_118: 9.03443538e-13 - art_sys_119: 3.82046891e-08 - art_sys_120: 7.16387688e-13 - art_sys_121: 3.86721903e-15 - art_sys_122: 4.54482181e-13 - art_sys_123: 1.41032723e-08 - art_sys_124: -2.53271989e-13 - art_sys_125: -3.90298084e-15 - art_sys_126: -1.87657316e-13 - art_sys_127: -4.76609816e-09 - art_sys_128: 4.63571605e-13 - art_sys_129: -2.75752004e-17 - art_sys_130: 1.70806996e-09 - art_sys_131: 2.47919328e-15 - art_sys_132: -2.24810080e-12 - art_sys_133: 5.59175008e-10 - art_sys_134: 1.10040953e-12 - art_sys_135: 1.28574991e-13 - art_sys_136: 2.42452493e-16 - art_sys_137: 1.84856374e-10 - art_sys_138: 1.87661044e-13 - art_sys_139: 5.61009901e-11 - art_sys_140: 5.60098017e-17 - art_sys_141: 3.75494328e-13 - art_sys_142: -1.67937331e-13 - art_sys_143: 1.72266301e-11 - art_sys_144: -7.75645037e-16 - art_sys_145: -1.30996753e-13 - art_sys_146: 5.79807859e-12 - art_sys_147: -1.41580489e-16 - art_sys_148: -1.20407922e-17 - art_sys_149: 4.14791249e-14 - art_sys_150: 7.32627917e-13 - art_sys_151: -2.66216898e-14 - art_sys_152: 3.76678419e-17 - art_sys_153: -8.17411157e-14 - art_sys_154: 8.36863923e-14 - art_sys_155: -2.93067371e-17 - art_sys_156: -0.0 - art_sys_157: -4.00376168e-14 - art_sys_158: -0.0 - art_sys_159: -5.89164989e-15 - art_sys_160: -1.31334169e-15 - art_sys_161: 4.09719312e-16 - art_sys_162: 4.09719312e-16 - art_sys_163: 5.14365389e-16 - art_sys_164: 5.14365389e-16 - art_sys_165: -5.69470653e-30 - art_sys_166: 1.88511664e-30 - art_sys_167: 0.0 - art_sys_168: -1.43630592e-24 - art_sys_169: -2.13633099e-24 - art_sys_170: -1.13554593e-25 - art_sys_171: -1.31661187e-24 - art_sys_172: -1.81552301e-25 - art_sys_173: -9.46083780e-27 - art_sys_174: -5.69578097e-27 - art_sys_175: 1.02736092e-27 - art_sys_176: -1.24559319e-27 - art_sys_177: 3.09941278e-26 - art_sys_178: -1.66741202e-27 - art_sys_179: 7.86137460e-30 - art_sys_180: -1.38229412e-28 - art_sys_181: -3.27761614e-27 - art_sys_182: -1.78441176e-28 - art_sys_183: -3.98389761e-30 - art_sys_184: 1.66194560e-30 - art_sys_185: 4.55677027e-32 + art_sys_51: -2.67082659e-02 + art_sys_52: -1.94215564e-18 + art_sys_53: -8.17179930e-19 + art_sys_54: -1.19506725e-18 + art_sys_55: -8.35293634e-19 + art_sys_56: 7.86449197e-20 + art_sys_57: -2.10796667e-14 + art_sys_58: -5.13626647e-15 + art_sys_59: 1.62655761e-15 + art_sys_60: 1.02872212e-02 + art_sys_61: 2.16396862e-16 + art_sys_62: -3.91748430e-16 + art_sys_63: 6.48003082e-17 + art_sys_64: 1.59517152e-16 + art_sys_65: 1.30214786e-16 + art_sys_66: -1.62036944e-03 + art_sys_67: 5.82217254e-18 + art_sys_68: -1.14737144e-17 + art_sys_69: -1.44971632e-03 + art_sys_70: 1.36338390e-16 + art_sys_71: -1.30857887e-14 + art_sys_72: -1.14771403e-14 + art_sys_73: 4.76844946e-04 + art_sys_74: -1.96796849e-12 + art_sys_75: -7.41395499e-19 + art_sys_76: 4.60282847e-16 + art_sys_77: 1.14602597e-16 + art_sys_78: 4.40197966e-17 + art_sys_79: -1.98882619e-19 + art_sys_80: -7.58287287e-13 + art_sys_81: 6.93852900e-18 + art_sys_82: 1.47673884e-17 + art_sys_83: 9.52910887e-18 + art_sys_84: -6.65002517e-16 + art_sys_85: 2.32433314e-18 + art_sys_86: 2.32389072e-20 + art_sys_87: -1.02508143e-14 + art_sys_88: -1.34504608e-14 + art_sys_89: 1.64061446e-14 + art_sys_90: 2.19313944e-12 + art_sys_91: 2.37487508e-13 + art_sys_92: 6.10570789e-06 + art_sys_93: -3.34049547e-13 + art_sys_94: 2.85274895e-06 + art_sys_95: 2.18000174e-14 + art_sys_96: 3.88604656e-15 + art_sys_97: -1.95705509e-06 + art_sys_98: 4.58334352e-14 + art_sys_99: -1.74380973e-14 + art_sys_100: -1.02499052e-06 + art_sys_101: 1.56332222e-13 + art_sys_102: -2.93059238e-15 + art_sys_103: 5.44334614e-07 + art_sys_104: -8.09430180e-14 + art_sys_105: -9.71737898e-15 + art_sys_106: -1.07466242e-13 + art_sys_107: 1.00330171e-14 + art_sys_108: 2.51065783e-07 + art_sys_109: 1.82182487e-12 + art_sys_110: 7.02428905e-15 + art_sys_111: 6.90139501e-12 + art_sys_112: -1.01138107e-07 + art_sys_113: 1.52269763e-15 + art_sys_114: -6.60459592e-12 + art_sys_115: -3.82057302e-08 + art_sys_116: -7.73068120e-13 + art_sys_117: 1.02436050e-15 + art_sys_118: -6.75891847e-12 + art_sys_119: -1.41040761e-08 + art_sys_120: 1.19929839e-12 + art_sys_121: -3.10121258e-13 + art_sys_122: -7.60727437e-13 + art_sys_123: -4.76552530e-09 + art_sys_124: -1.52003803e-14 + art_sys_125: 8.61087439e-14 + art_sys_126: -9.98082618e-13 + art_sys_127: -1.87369595e-13 + art_sys_128: -1.71069632e-09 + art_sys_129: 5.61773890e-10 + art_sys_130: 1.83795454e-10 + art_sys_131: 5.66627992e-11 + art_sys_132: 3.17746079e-13 + art_sys_133: 1.36909783e-13 + art_sys_134: -1.66534317e-11 + art_sys_135: -3.29958349e-13 + art_sys_136: -5.56096011e-12 + art_sys_137: -1.03655579e-13 + art_sys_138: 6.67984622e-13 + art_sys_139: -3.05291472e-14 + art_sys_140: 4.71050747e-16 + art_sys_141: 1.39701937e-13 + art_sys_142: 0.0 + art_sys_143: -2.08289055e-14 + art_sys_144: -7.98181093e-14 + art_sys_145: -1.02202934e-13 + art_sys_146: 5.95147616e-16 + art_sys_147: -1.69529940e-15 + art_sys_148: 1.98375770e-15 + art_sys_149: -6.17823735e-16 + art_sys_150: 5.08775411e-17 + art_sys_151: 2.49530635e-18 + art_sys_152: 3.03569153e-17 + art_sys_153: 2.20918354e-18 + art_sys_154: 3.77138491e-17 + art_sys_155: -8.48962578e-17 + art_sys_156: -3.60010413e-16 + art_sys_157: -2.13453061e-16 + art_sys_158: 0.0 + art_sys_159: 4.35906023e-15 + art_sys_160: 4.35906023e-15 + art_sys_161: 3.45008533e-16 + art_sys_162: -1.27837446e-28 + art_sys_163: -0.0 + art_sys_164: -7.80329135e-29 + art_sys_165: -2.26703998e-24 + art_sys_166: 1.86714676e-24 + art_sys_167: -3.36520178e-26 + art_sys_168: 8.14785943e-26 + art_sys_169: 2.90832982e-26 + art_sys_170: -9.28954080e-26 + art_sys_171: -6.56793871e-25 + art_sys_172: 7.03009118e-25 + art_sys_173: -1.12154471e-25 + art_sys_174: -1.22742746e-28 + art_sys_175: 5.94912576e-27 + art_sys_176: -1.32166506e-26 + art_sys_177: 2.55332858e-27 + art_sys_178: 1.02116244e-27 + art_sys_179: -1.45125567e-26 + art_sys_180: -1.59409703e-27 + art_sys_181: 1.95757038e-28 + art_sys_182: -1.27546199e-28 + art_sys_183: -1.70271495e-30 + art_sys_184: -2.83992073e-31 + art_sys_185: -1.10539149e-29 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -21506,167 +21506,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: 1.28109607e-82 - art_sys_26: 6.71096675e-77 - art_sys_27: -4.21503477e-70 - art_sys_28: 2.52181296e-69 - art_sys_29: 9.68594618e-59 - art_sys_30: 7.87256294e-56 - art_sys_31: 3.68250927e-53 - art_sys_32: -4.39895575e-45 - art_sys_33: -1.31827783e-39 - art_sys_34: -1.32913716e-32 - art_sys_35: -9.31753360e-34 - art_sys_36: 2.79278704e-08 - art_sys_37: 2.88219018e-07 - art_sys_38: 4.10270950e-07 - art_sys_39: 9.68138409e-07 - art_sys_40: 1.11414178e-05 - art_sys_41: -5.95711075e-05 - art_sys_42: -8.36840280e-05 - art_sys_43: -4.75168139e-05 - art_sys_44: -2.59402519e-04 - art_sys_45: -8.01168626e-04 - art_sys_46: 3.08603433e-04 - art_sys_47: 1.41416028e-20 - art_sys_48: -6.16411418e-20 - art_sys_49: 1.68689383e-20 + art_sys_25: -7.96080801e-43 + art_sys_26: 2.03099811e-36 + art_sys_27: 1.05477877e-28 + art_sys_28: -2.57934388e-28 + art_sys_29: -2.79278704e-08 + art_sys_30: -2.88219018e-07 + art_sys_31: -4.10270950e-07 + art_sys_32: -9.68138409e-07 + art_sys_33: 1.11414178e-05 + art_sys_34: 5.95711075e-05 + art_sys_35: 8.36840280e-05 + art_sys_36: -4.53808710e-22 + art_sys_37: 3.54192259e-22 + art_sys_38: -4.75168139e-05 + art_sys_39: 4.50794107e-22 + art_sys_40: -9.87118912e-23 + art_sys_41: 4.98867558e-22 + art_sys_42: 2.59402519e-04 + art_sys_43: 2.48695794e-21 + art_sys_44: 8.01168626e-04 + art_sys_45: 4.45978153e-21 + art_sys_46: -1.27503758e-20 + art_sys_47: -3.08603433e-04 + art_sys_48: 1.31642360e-20 + art_sys_49: -1.71726174e-20 art_sys_50: -3.02458530e-03 - art_sys_51: 1.97513945e-03 - art_sys_52: 8.31913510e-20 - art_sys_53: -8.19612379e-20 - art_sys_54: -5.59166942e-22 - art_sys_55: 1.15160419e-19 - art_sys_56: 1.20668692e-20 - art_sys_57: -6.58299911e-03 - art_sys_58: -6.96171005e-03 - art_sys_59: -2.13931396e-19 - art_sys_60: -8.77593398e-19 - art_sys_61: 2.88352982e-03 - art_sys_62: 1.31764057e-19 - art_sys_63: -2.24953788e-19 - art_sys_64: -2.39381165e-15 - art_sys_65: 1.02564664e-14 - art_sys_66: -2.16576312e-15 - art_sys_67: 7.91674114e-16 - art_sys_68: -1.00435060e-16 - art_sys_69: -3.33473459e-16 - art_sys_70: -3.64956027e-16 - art_sys_71: -1.88687278e-16 - art_sys_72: 1.07091827e-17 - art_sys_73: -1.42809318e-17 - art_sys_74: -1.41768693e-03 - art_sys_75: 1.64871338e-18 - art_sys_76: 1.94416636e-15 - art_sys_77: -2.00084949e-16 - art_sys_78: 1.98251243e-16 - art_sys_79: 5.07282769e-19 - art_sys_80: 2.29499664e-16 - art_sys_81: -6.61733555e-19 - art_sys_82: 1.96803262e-14 - art_sys_83: -3.11062349e-17 - art_sys_84: -2.50338367e-17 - art_sys_85: 5.11329402e-19 - art_sys_86: -2.76798790e-18 - art_sys_87: 9.01276444e-13 - art_sys_88: 5.34031920e-14 - art_sys_89: 1.47415917e-18 - art_sys_90: -2.52399988e-15 - art_sys_91: -1.11351030e-15 - art_sys_92: -1.60237616e-18 - art_sys_93: 2.16558997e-19 - art_sys_94: 6.11133250e-14 - art_sys_95: -1.69164819e-05 - art_sys_96: -3.64835290e-14 - art_sys_97: 1.58063606e-14 - art_sys_98: 8.43766041e-06 - art_sys_99: 1.27916640e-13 - art_sys_100: -6.24968566e-06 - art_sys_101: -6.35787734e-12 - art_sys_102: 3.30496161e-06 - art_sys_103: -4.70627093e-12 - art_sys_104: -6.23496154e-12 - art_sys_105: 8.37824090e-15 - art_sys_106: 4.34386232e-11 - art_sys_107: -1.81282441e-06 - art_sys_108: 1.35822835e-14 - art_sys_109: 5.24912504e-14 - art_sys_110: 8.47786169e-07 - art_sys_111: -8.46534795e-13 - art_sys_112: -1.73974402e-11 - art_sys_113: 1.43760268e-12 - art_sys_114: 2.59887869e-14 - art_sys_115: -1.33934360e-13 - art_sys_116: 3.45629150e-07 - art_sys_117: 9.29951317e-14 - art_sys_118: -2.98123311e-12 - art_sys_119: -1.31935889e-07 - art_sys_120: -2.42223929e-12 - art_sys_121: -1.35505167e-14 - art_sys_122: -1.37702854e-12 - art_sys_123: -4.89485620e-08 - art_sys_124: 8.13294470e-13 - art_sys_125: 1.37119097e-14 - art_sys_126: 6.47835905e-13 - art_sys_127: 1.66376493e-08 - art_sys_128: -1.56020737e-12 - art_sys_129: 1.02885627e-16 - art_sys_130: -5.97778987e-09 - art_sys_131: -8.71867619e-15 - art_sys_132: 7.58880020e-12 - art_sys_133: -1.96181723e-09 - art_sys_134: -3.80175343e-12 - art_sys_135: -4.33267035e-13 - art_sys_136: -8.53951991e-16 - art_sys_137: -6.49518747e-10 - art_sys_138: -6.49080614e-13 - art_sys_139: -1.97323439e-10 - art_sys_140: -1.95930956e-16 - art_sys_141: -1.31832936e-12 - art_sys_142: 5.76864981e-13 - art_sys_143: -6.06206725e-11 - art_sys_144: 2.71061687e-15 - art_sys_145: 4.55859090e-13 - art_sys_146: -2.04123406e-11 - art_sys_147: 4.98352313e-16 - art_sys_148: 4.23547604e-17 - art_sys_149: -1.40819864e-13 - art_sys_150: -2.58072867e-12 - art_sys_151: 9.23821071e-14 - art_sys_152: -1.32945960e-16 - art_sys_153: 2.87606274e-13 - art_sys_154: -2.83486885e-13 - art_sys_155: 1.03763412e-16 - art_sys_156: 0.0 - art_sys_157: 1.37409872e-13 - art_sys_158: 0.0 - art_sys_159: 2.03977539e-14 - art_sys_160: 4.52014179e-15 - art_sys_161: -1.44997470e-15 - art_sys_162: -1.44997470e-15 - art_sys_163: -1.78281661e-15 - art_sys_164: -1.78281661e-15 - art_sys_165: 1.97881722e-29 - art_sys_166: -6.55213046e-30 - art_sys_167: -0.0 - art_sys_168: 6.32112097e-24 - art_sys_169: 7.52010782e-24 - art_sys_170: 1.00515010e-24 - art_sys_171: 4.61955710e-24 - art_sys_172: 6.36877548e-25 - art_sys_173: 3.29112810e-26 - art_sys_174: 1.97939952e-26 - art_sys_175: -3.59478735e-27 - art_sys_176: 4.37989919e-27 - art_sys_177: -1.08906350e-25 - art_sys_178: 5.83804444e-27 - art_sys_179: -2.79219925e-29 - art_sys_180: 4.78766307e-28 - art_sys_181: 1.15094234e-26 - art_sys_182: 6.28562816e-28 - art_sys_183: 1.40267503e-29 - art_sys_184: -5.84621505e-30 - art_sys_185: -1.60449891e-31 + art_sys_51: -1.97513945e-03 + art_sys_52: 8.48236398e-20 + art_sys_53: -7.20184215e-20 + art_sys_54: -8.07490976e-20 + art_sys_55: -7.47464045e-20 + art_sys_56: -7.23102727e-20 + art_sys_57: 7.63762147e-14 + art_sys_58: 2.00852493e-14 + art_sys_59: 1.74337639e-14 + art_sys_60: 6.58299911e-03 + art_sys_61: -3.40565154e-15 + art_sys_62: 1.35017570e-15 + art_sys_63: 4.32724282e-17 + art_sys_64: -4.12781739e-16 + art_sys_65: -3.90883445e-16 + art_sys_66: 6.96171005e-03 + art_sys_67: -1.48841039e-17 + art_sys_68: 2.49236418e-17 + art_sys_69: 2.88352980e-03 + art_sys_70: 2.04316128e-15 + art_sys_71: 5.63032973e-14 + art_sys_72: 4.95612779e-14 + art_sys_73: -1.41768693e-03 + art_sys_74: 3.91123676e-12 + art_sys_75: 1.43682368e-18 + art_sys_76: -1.22732479e-15 + art_sys_77: -3.70389781e-16 + art_sys_78: -9.63757619e-17 + art_sys_79: 4.76885524e-19 + art_sys_80: 1.50700181e-12 + art_sys_81: -1.38858171e-17 + art_sys_82: -4.04772296e-17 + art_sys_83: -2.73344107e-17 + art_sys_84: 1.95304263e-15 + art_sys_85: -5.08397971e-18 + art_sys_86: 8.31236705e-19 + art_sys_87: 3.41376371e-14 + art_sys_88: 4.59916659e-14 + art_sys_89: -5.66537068e-14 + art_sys_90: -4.36211377e-12 + art_sys_91: -7.01911853e-13 + art_sys_92: -1.69164993e-05 + art_sys_93: 6.64846081e-13 + art_sys_94: -8.43766193e-06 + art_sys_95: -6.34541542e-14 + art_sys_96: -1.34889878e-14 + art_sys_97: 6.24966333e-06 + art_sys_98: -1.35311144e-13 + art_sys_99: 3.83957605e-14 + art_sys_100: 3.30494514e-06 + art_sys_101: -5.05559041e-13 + art_sys_102: 1.02214908e-14 + art_sys_103: -1.81281885e-06 + art_sys_104: 2.55175669e-13 + art_sys_105: 3.39973651e-14 + art_sys_106: 3.25959748e-13 + art_sys_107: -2.62196013e-14 + art_sys_108: -8.47776828e-07 + art_sys_109: -5.84336471e-12 + art_sys_110: -2.46211299e-14 + art_sys_111: -2.21544161e-11 + art_sys_112: 3.45624050e-07 + art_sys_113: -5.33355503e-15 + art_sys_114: 2.10315825e-11 + art_sys_115: 1.31939476e-07 + art_sys_116: 2.61662127e-12 + art_sys_117: -3.59385360e-15 + art_sys_118: 2.15613729e-11 + art_sys_119: 4.89513519e-08 + art_sys_120: -3.86588919e-12 + art_sys_121: 1.05820063e-12 + art_sys_122: 2.54755906e-12 + art_sys_123: 1.66356397e-08 + art_sys_124: 5.06464986e-14 + art_sys_125: -2.91342899e-13 + art_sys_126: 3.44345026e-12 + art_sys_127: 6.40112847e-13 + art_sys_128: 5.98694748e-09 + art_sys_129: -1.97089802e-09 + art_sys_130: -6.45806431e-10 + art_sys_131: -1.99288727e-10 + art_sys_132: -1.08443859e-12 + art_sys_133: -4.78449076e-13 + art_sys_134: 5.86148037e-11 + art_sys_135: 1.13143849e-12 + art_sys_136: 1.95805723e-11 + art_sys_137: 3.57750847e-13 + art_sys_138: -2.35310234e-12 + art_sys_139: 1.07515806e-13 + art_sys_140: -1.43276542e-15 + art_sys_141: -4.91163138e-13 + art_sys_142: -0.0 + art_sys_143: 7.13043621e-14 + art_sys_144: 2.80048228e-13 + art_sys_145: 3.59425539e-13 + art_sys_146: -2.08789304e-15 + art_sys_147: 5.95509607e-15 + art_sys_148: -6.77933718e-15 + art_sys_149: 2.18192005e-15 + art_sys_150: -1.78193056e-16 + art_sys_151: -1.09470840e-17 + art_sys_152: -1.07938754e-16 + art_sys_153: -7.83505300e-18 + art_sys_154: -1.32124449e-16 + art_sys_155: 2.97766097e-16 + art_sys_156: 1.26595035e-15 + art_sys_157: 7.51244330e-16 + art_sys_158: -0.0 + art_sys_159: -1.53522116e-14 + art_sys_160: -1.53522116e-14 + art_sys_161: -1.20753328e-15 + art_sys_162: 4.47384784e-28 + art_sys_163: 0.0 + art_sys_164: 2.73076227e-28 + art_sys_165: 7.98848067e-24 + art_sys_166: -6.54017564e-24 + art_sys_167: 1.06450153e-25 + art_sys_168: -2.82963896e-25 + art_sys_169: -1.01255301e-25 + art_sys_170: 3.24713771e-25 + art_sys_171: 2.29558372e-24 + art_sys_172: -2.45810017e-24 + art_sys_173: 3.92954789e-25 + art_sys_174: 4.31537155e-28 + art_sys_175: -2.09638813e-26 + art_sys_176: 4.67810266e-26 + art_sys_177: -9.03066459e-27 + art_sys_178: -3.58835403e-27 + art_sys_179: 5.09723115e-26 + art_sys_180: 5.59813529e-27 + art_sys_181: -6.88247276e-28 + art_sys_182: 4.48568424e-28 + art_sys_183: 5.99083470e-30 + art_sys_184: 9.98708977e-31 + art_sys_185: 3.87678792e-29 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -21797,167 +21797,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: -1.57594330e-84 - art_sys_26: -8.25551140e-79 - art_sys_27: 5.18513494e-72 - art_sys_28: -3.10221417e-71 - art_sys_29: -1.19151896e-60 - art_sys_30: -9.68445192e-58 - art_sys_31: -4.53004750e-55 - art_sys_32: 5.41138584e-47 - art_sys_33: 1.62168260e-41 - art_sys_34: 1.63504123e-34 - art_sys_35: 1.14619861e-35 - art_sys_36: -3.51032666e-10 - art_sys_37: 3.67526173e-08 - art_sys_38: 3.85795824e-08 - art_sys_39: 1.84063241e-07 - art_sys_40: 3.86401432e-06 - art_sys_41: -1.21875230e-05 - art_sys_42: -2.30503909e-05 - art_sys_43: -1.54587071e-05 - art_sys_44: 2.90627656e-05 - art_sys_45: -2.63677623e-04 - art_sys_46: -3.56042049e-04 - art_sys_47: -5.81003086e-21 - art_sys_48: -1.39811620e-20 - art_sys_49: 1.79240234e-21 + art_sys_25: 1.00061354e-44 + art_sys_26: -2.55281149e-38 + art_sys_27: -1.32577738e-30 + art_sys_28: 3.24204078e-30 + art_sys_29: 3.51032666e-10 + art_sys_30: -3.67526173e-08 + art_sys_31: -3.85795824e-08 + art_sys_32: -1.84063241e-07 + art_sys_33: 3.86401432e-06 + art_sys_34: 1.21875230e-05 + art_sys_35: 2.30503909e-05 + art_sys_36: -1.15854855e-22 + art_sys_37: 9.07684027e-23 + art_sys_38: -1.54587071e-05 + art_sys_39: 1.52274074e-22 + art_sys_40: -3.90239418e-23 + art_sys_41: 1.45331323e-22 + art_sys_42: -2.90627656e-05 + art_sys_43: -2.06122506e-22 + art_sys_44: 2.63677623e-04 + art_sys_45: 8.81203737e-23 + art_sys_46: -1.17245605e-20 + art_sys_47: 3.56042049e-04 + art_sys_48: 3.67703569e-21 + art_sys_49: -4.33593461e-21 art_sys_50: -4.96469086e-04 - art_sys_51: -2.64395106e-03 - art_sys_52: -4.43309840e-20 - art_sys_53: 1.10415063e-19 - art_sys_54: 6.73477703e-20 - art_sys_55: -3.81673305e-20 - art_sys_56: -2.78326156e-20 - art_sys_57: 5.13012830e-04 - art_sys_58: -6.25085457e-03 - art_sys_59: -9.35817169e-20 - art_sys_60: -5.30671960e-19 - art_sys_61: -3.42399317e-03 - art_sys_62: 1.07022949e-19 - art_sys_63: -5.66871788e-19 - art_sys_64: -9.82958376e-15 - art_sys_65: -1.16627341e-14 - art_sys_66: 2.09369746e-15 - art_sys_67: -1.58174737e-15 - art_sys_68: 1.55251855e-16 - art_sys_69: 6.35457835e-16 - art_sys_70: 5.14699600e-16 - art_sys_71: 2.66721485e-16 - art_sys_72: -1.32349113e-17 - art_sys_73: 1.79062389e-17 - art_sys_74: 1.94874429e-03 - art_sys_75: -4.74823180e-18 - art_sys_76: -8.15223894e-15 - art_sys_77: 4.81787143e-16 - art_sys_78: -5.40705892e-16 - art_sys_79: -1.28932350e-18 - art_sys_80: -8.49781427e-16 - art_sys_81: 2.26076716e-18 - art_sys_82: -2.70522065e-14 - art_sys_83: 1.22776713e-16 - art_sys_84: 9.82938195e-17 - art_sys_85: -7.84240538e-18 - art_sys_86: 1.29681415e-17 - art_sys_87: -3.12404884e-12 - art_sys_88: -1.79549728e-13 - art_sys_89: -5.98133807e-18 - art_sys_90: 8.49773527e-15 - art_sys_91: 1.53046950e-15 - art_sys_92: 5.88821612e-18 - art_sys_93: -3.56054387e-19 - art_sys_94: -2.04210903e-13 - art_sys_95: 7.33986343e-05 - art_sys_96: 1.55532342e-13 - art_sys_97: -7.61961304e-14 - art_sys_98: -2.63256383e-05 - art_sys_99: 2.17565080e-13 - art_sys_100: 2.16208244e-05 - art_sys_101: 2.20387945e-11 - art_sys_102: -1.12555477e-05 - art_sys_103: 1.62088312e-11 - art_sys_104: 2.72149039e-11 - art_sys_105: -2.79077144e-14 - art_sys_106: -1.48473517e-10 - art_sys_107: 6.09517699e-06 - art_sys_108: -4.52418699e-14 - art_sys_109: -1.74854307e-13 - art_sys_110: -2.85209160e-06 - art_sys_111: -1.42206073e-12 - art_sys_112: 5.85283420e-11 - art_sys_113: -4.89614842e-12 - art_sys_114: -8.65152587e-14 - art_sys_115: 4.28758899e-13 - art_sys_116: -1.15758365e-06 - art_sys_117: -3.09443027e-13 - art_sys_118: 1.00789763e-11 - art_sys_119: 4.40864146e-07 - art_sys_120: 8.14572410e-12 - art_sys_121: 4.50981360e-14 - art_sys_122: 4.77215707e-12 - art_sys_123: 1.63436519e-07 - art_sys_124: -2.77331164e-12 - art_sys_125: -4.56134019e-14 - art_sys_126: -2.16545928e-12 - art_sys_127: -5.54277791e-08 - art_sys_128: 5.24858903e-12 - art_sys_129: -3.37215608e-16 - art_sys_130: 1.99124496e-08 - art_sys_131: 2.89953212e-14 - art_sys_132: -2.55328572e-11 - art_sys_133: 6.52791276e-09 - art_sys_134: 1.27025442e-11 - art_sys_135: 1.45867705e-12 - art_sys_136: 2.83808262e-15 - art_sys_137: 2.16068795e-09 - art_sys_138: 2.16836281e-12 - art_sys_139: 6.56184767e-10 - art_sys_140: 6.52679575e-16 - art_sys_141: 4.38651824e-12 - art_sys_142: -1.93022007e-12 - art_sys_143: 2.01550391e-10 - art_sys_144: -9.02985601e-15 - art_sys_145: -1.52074980e-12 - art_sys_146: 6.78602070e-11 - art_sys_147: -1.65682200e-15 - art_sys_148: -1.40813840e-16 - art_sys_149: 4.72352408e-13 - art_sys_150: 8.57790563e-12 - art_sys_151: -3.08325370e-13 - art_sys_152: 4.41707269e-16 - art_sys_153: -9.56029699e-13 - art_sys_154: 9.49816106e-13 - art_sys_155: -3.44090758e-16 - art_sys_156: -0.0 - art_sys_157: -4.59788441e-13 - art_sys_158: -0.0 - art_sys_159: -6.80815524e-14 - art_sys_160: -1.51114225e-14 - art_sys_161: 4.80674589e-15 - art_sys_162: 4.80674589e-15 - art_sys_163: 5.95002216e-15 - art_sys_164: 5.95002216e-15 - art_sys_165: -6.59871559e-29 - art_sys_166: 2.18476150e-29 - art_sys_167: 0.0 - art_sys_168: -1.01697797e-23 - art_sys_169: -2.49970076e-23 - art_sys_170: -2.58042500e-24 - art_sys_171: -1.53786439e-23 - art_sys_172: -2.11880671e-24 - art_sys_173: -1.09477078e-25 - art_sys_174: -6.59338421e-26 - art_sys_175: 1.19640988e-26 - art_sys_176: -1.45684873e-26 - art_sys_177: 3.62254135e-25 - art_sys_178: -1.94372284e-26 - art_sys_179: 9.24701618e-29 - art_sys_180: -1.59785361e-27 - art_sys_181: -3.82878004e-26 - art_sys_182: -2.08873298e-27 - art_sys_183: -4.66348970e-29 - art_sys_184: 1.94402459e-29 - art_sys_185: 5.33357793e-31 + art_sys_51: 2.64395106e-03 + art_sys_52: 2.11193677e-19 + art_sys_53: 7.85084796e-20 + art_sys_54: 1.16828350e-19 + art_sys_55: 8.17527871e-20 + art_sys_56: -1.54074040e-20 + art_sys_57: -7.18139788e-14 + art_sys_58: 2.23366348e-14 + art_sys_59: -2.05578770e-14 + art_sys_60: -5.13012830e-04 + art_sys_61: 2.18994774e-15 + art_sys_62: 8.63021076e-16 + art_sys_63: 4.15278637e-16 + art_sys_64: 4.04664776e-17 + art_sys_65: 3.58693370e-17 + art_sys_66: 6.25085457e-03 + art_sys_67: 1.90863769e-17 + art_sys_68: -3.48938849e-17 + art_sys_69: -3.42399314e-03 + art_sys_70: 1.48722726e-15 + art_sys_71: 5.06996111e-14 + art_sys_72: 4.49533110e-14 + art_sys_73: 1.94874429e-03 + art_sys_74: -4.65640311e-12 + art_sys_75: -5.78452254e-18 + art_sys_76: 5.85052363e-15 + art_sys_77: 1.22248540e-15 + art_sys_78: 5.52295577e-16 + art_sys_79: -1.43828060e-18 + art_sys_80: -1.78875985e-12 + art_sys_81: 1.02479162e-16 + art_sys_82: 1.71456166e-16 + art_sys_83: 9.64536662e-17 + art_sys_84: -6.33830292e-15 + art_sys_85: 2.59879845e-17 + art_sys_86: 5.02862268e-18 + art_sys_87: -1.14783295e-13 + art_sys_88: -1.54002221e-13 + art_sys_89: 1.89310883e-13 + art_sys_90: 5.17965359e-12 + art_sys_91: 9.63369930e-13 + art_sys_92: 7.33986911e-05 + art_sys_93: -7.89626470e-13 + art_sys_94: 2.63256453e-05 + art_sys_95: 1.44172976e-13 + art_sys_96: 4.50368059e-14 + art_sys_97: -2.16207477e-05 + art_sys_98: 5.01197783e-13 + art_sys_99: -1.29739969e-13 + art_sys_100: -1.12554916e-05 + art_sys_101: 1.72420178e-12 + art_sys_102: -3.40534532e-14 + art_sys_103: 6.09515829e-06 + art_sys_104: -9.00779000e-13 + art_sys_105: -1.13262962e-13 + art_sys_106: -1.05244970e-12 + art_sys_107: 6.94296398e-13 + art_sys_108: 2.85206018e-06 + art_sys_109: 2.00827762e-11 + art_sys_110: 8.19595838e-14 + art_sys_111: 7.71893505e-11 + art_sys_112: -1.15756666e-06 + art_sys_113: 1.77600619e-14 + art_sys_114: -7.24393525e-11 + art_sys_115: -4.40876138e-07 + art_sys_116: -8.80466540e-12 + art_sys_117: 1.19593080e-14 + art_sys_118: -7.46125922e-11 + art_sys_119: -1.63445833e-07 + art_sys_120: 1.32870991e-11 + art_sys_121: -3.54525222e-12 + art_sys_122: -8.53705753e-12 + art_sys_123: -5.54210789e-08 + art_sys_124: -1.74302034e-13 + art_sys_125: 9.78616137e-13 + art_sys_126: -1.15087477e-11 + art_sys_127: -2.14390528e-12 + art_sys_128: -1.99429646e-08 + art_sys_129: 6.55815676e-09 + art_sys_130: 2.14832728e-09 + art_sys_131: 6.62729449e-10 + art_sys_132: 3.63307804e-12 + art_sys_133: 1.59354271e-12 + art_sys_134: -1.94870247e-10 + art_sys_135: -3.78671619e-12 + art_sys_136: -6.50930075e-11 + art_sys_137: -1.19513913e-12 + art_sys_138: 7.82140999e-12 + art_sys_139: -3.57388863e-13 + art_sys_140: 3.66196054e-15 + art_sys_141: 1.63308112e-12 + art_sys_142: 0.0 + art_sys_143: -2.38598153e-13 + art_sys_144: -9.31710012e-13 + art_sys_145: -1.19500891e-12 + art_sys_146: 6.94802393e-15 + art_sys_147: -1.98116603e-14 + art_sys_148: 2.27039264e-14 + art_sys_149: -7.24668950e-15 + art_sys_150: 5.92791894e-16 + art_sys_151: 3.49826667e-17 + art_sys_152: 3.58037450e-16 + art_sys_153: 2.60060496e-17 + art_sys_154: 4.39713136e-16 + art_sys_155: -9.90734400e-16 + art_sys_156: -4.20895489e-15 + art_sys_157: -2.49737027e-15 + art_sys_158: 0.0 + art_sys_159: 5.10852518e-14 + art_sys_160: 5.10852518e-14 + art_sys_161: 4.01850107e-15 + art_sys_162: -1.48883841e-27 + art_sys_163: -0.0 + art_sys_164: -9.08763897e-28 + art_sys_165: -2.67429422e-23 + art_sys_166: 2.17660452e-23 + art_sys_167: -3.66511594e-25 + art_sys_168: 9.43992518e-25 + art_sys_169: 3.38449052e-25 + art_sys_170: -1.08164529e-24 + art_sys_171: -7.64159634e-24 + art_sys_172: 8.18423854e-24 + art_sys_173: -1.31043541e-24 + art_sys_174: -1.43484474e-27 + art_sys_175: 6.96914743e-26 + art_sys_176: -1.55726957e-25 + art_sys_177: 3.00564173e-26 + art_sys_178: 1.19383000e-26 + art_sys_179: -1.69584766e-25 + art_sys_180: -1.86233128e-26 + art_sys_181: 2.28923897e-27 + art_sys_182: -1.49203825e-27 + art_sys_183: -1.99229442e-29 + art_sys_184: -3.32091383e-30 + art_sys_185: -1.28991442e-28 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -22088,167 +22088,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: -1.21628518e-84 - art_sys_26: -6.37145768e-79 - art_sys_27: 4.00179539e-72 - art_sys_28: -2.39423398e-71 - art_sys_29: -9.19593239e-61 - art_sys_30: -7.47428855e-58 - art_sys_31: -3.49621046e-55 - art_sys_32: 4.17641178e-47 - art_sys_33: 1.25158592e-41 - art_sys_34: 1.26189587e-34 - art_sys_35: 8.84615789e-36 - art_sys_36: -2.66562795e-10 - art_sys_37: 4.87868611e-09 - art_sys_38: 5.31346452e-09 - art_sys_39: 2.38294428e-08 - art_sys_40: 6.71789689e-07 - art_sys_41: -1.80287584e-06 - art_sys_42: -3.63678586e-06 - art_sys_43: -1.99825287e-06 - art_sys_44: 1.93477493e-05 - art_sys_45: 4.60600348e-06 - art_sys_46: -6.73436113e-05 - art_sys_47: -1.60744466e-21 - art_sys_48: 4.13228449e-21 - art_sys_49: -6.75352221e-22 + art_sys_25: 7.59834034e-45 + art_sys_26: -1.93852369e-38 + art_sys_27: -1.00675309e-30 + art_sys_28: 2.46190244e-30 + art_sys_29: 2.66562795e-10 + art_sys_30: -4.87868611e-09 + art_sys_31: -5.31346452e-09 + art_sys_32: -2.38294428e-08 + art_sys_33: 6.71789689e-07 + art_sys_34: 1.80287584e-06 + art_sys_35: 3.63678586e-06 + art_sys_36: -1.80755184e-23 + art_sys_37: 1.36004583e-23 + art_sys_38: -1.99825287e-06 + art_sys_39: 2.00587711e-23 + art_sys_40: -4.64161352e-24 + art_sys_41: 1.93533025e-23 + art_sys_42: -1.93477493e-05 + art_sys_43: -1.61412235e-22 + art_sys_44: -4.60600348e-06 + art_sys_45: -2.07423883e-22 + art_sys_46: -1.00138123e-21 + art_sys_47: 6.73436113e-05 + art_sys_48: -2.29058229e-22 + art_sys_49: 2.20132920e-23 art_sys_50: 2.38080265e-04 - art_sys_51: -4.35894620e-04 - art_sys_52: -1.21408671e-20 - art_sys_53: 1.73035458e-20 - art_sys_54: 5.86725747e-21 - art_sys_55: -1.43773245e-20 - art_sys_56: -2.59443339e-21 - art_sys_57: 1.08855472e-03 - art_sys_58: -5.79389745e-04 - art_sys_59: 1.17807075e-20 - art_sys_60: -7.97091180e-20 - art_sys_61: -5.45550149e-03 - art_sys_62: -1.81831953e-20 - art_sys_63: 3.27162094e-19 - art_sys_64: 1.21741923e-15 - art_sys_65: 8.60748876e-15 - art_sys_66: -1.95026997e-15 - art_sys_67: 1.52633299e-15 - art_sys_68: -2.28361926e-16 - art_sys_69: -4.24521224e-16 - art_sys_70: -5.65382015e-16 - art_sys_71: -2.91879413e-16 - art_sys_72: 5.12869644e-18 - art_sys_73: -2.47539294e-17 - art_sys_74: -2.10561723e-03 - art_sys_75: 1.54422500e-17 - art_sys_76: 6.35839126e-15 - art_sys_77: -1.90193805e-15 - art_sys_78: 1.72430912e-15 - art_sys_79: 5.37342822e-18 - art_sys_80: 1.12887839e-15 - art_sys_81: -6.89176177e-18 - art_sys_82: 2.92299025e-14 - art_sys_83: -1.41336958e-16 - art_sys_84: -1.09198339e-16 - art_sys_85: -2.01767101e-17 - art_sys_86: -1.09130615e-18 - art_sys_87: 5.34359885e-12 - art_sys_88: 3.95339005e-13 - art_sys_89: 4.36784714e-18 - art_sys_90: -1.94088949e-14 - art_sys_91: -1.65365987e-15 - art_sys_92: -7.79674227e-18 - art_sys_93: 2.38897635e-18 - art_sys_94: 4.95266583e-13 - art_sys_95: -4.82261657e-05 - art_sys_96: -1.02734941e-13 - art_sys_97: 4.85689760e-14 - art_sys_98: 5.59102538e-05 - art_sys_99: 2.75874186e-12 - art_sys_100: -3.72037631e-05 - art_sys_101: -3.77611569e-11 - art_sys_102: 2.31541386e-05 - art_sys_103: -2.81606094e-11 - art_sys_104: -1.73110222e-11 - art_sys_105: 7.02301752e-14 - art_sys_106: 3.01988887e-10 - art_sys_107: -1.33563931e-05 - art_sys_108: 1.13846389e-13 - art_sys_109: 4.40021375e-13 - art_sys_110: 6.52244269e-06 - art_sys_111: -1.80233747e-11 - art_sys_112: -1.33815331e-10 - art_sys_113: 1.00710201e-11 - art_sys_114: 2.18504340e-13 - art_sys_115: -4.74810949e-13 - art_sys_116: 2.74557449e-06 - art_sys_117: 7.83565418e-13 - art_sys_118: -2.16805607e-11 - art_sys_119: -1.06922702e-06 - art_sys_120: -1.87047233e-11 - art_sys_121: -1.13877760e-13 - art_sys_122: -8.32574711e-12 - art_sys_123: -4.03154200e-07 - art_sys_124: 5.65536924e-12 - art_sys_125: 1.15902948e-13 - art_sys_126: 5.24096301e-12 - art_sys_127: 1.38459761e-07 - art_sys_128: -1.19023395e-11 - art_sys_129: 9.91177066e-16 - art_sys_130: -5.01126251e-08 - art_sys_131: -7.38784942e-14 - art_sys_132: 5.83417558e-11 - art_sys_133: -1.65330372e-08 - art_sys_134: -3.08411374e-11 - art_sys_135: -3.31930081e-12 - art_sys_136: -7.25436052e-15 - art_sys_137: -5.49142443e-09 - art_sys_138: -5.30463012e-12 - art_sys_139: -1.67275975e-09 - art_sys_140: -1.63991200e-15 - art_sys_141: -1.11299082e-11 - art_sys_142: 4.64007262e-12 - art_sys_143: -5.14303648e-10 - art_sys_144: 2.26291168e-14 - art_sys_145: 3.74926839e-12 - art_sys_146: -1.73375345e-10 - art_sys_147: 4.23079723e-15 - art_sys_148: 3.58708948e-16 - art_sys_149: -1.10196332e-12 - art_sys_150: -2.19475394e-11 - art_sys_151: 7.57638400e-13 - art_sys_152: -1.13713924e-15 - art_sys_153: 2.43790377e-12 - art_sys_154: -2.20066058e-12 - art_sys_155: 8.89306612e-16 - art_sys_156: 0.0 - art_sys_157: 1.10035341e-12 - art_sys_158: 0.0 - art_sys_159: 1.66164005e-13 - art_sys_160: 3.64015141e-14 - art_sys_161: -1.24251375e-14 - art_sys_162: -1.24251375e-14 - art_sys_163: -1.45655184e-14 - art_sys_164: -1.45655184e-14 - art_sys_165: 1.62638639e-28 - art_sys_166: -5.38846991e-29 - art_sys_167: -0.0 - art_sys_168: 8.25438168e-23 - art_sys_169: 6.38055714e-23 - art_sys_170: 2.84131790e-24 - art_sys_171: 3.89317060e-23 - art_sys_172: 5.38741598e-24 - art_sys_173: 2.76477469e-25 - art_sys_174: 1.65793161e-25 - art_sys_175: -3.05160281e-26 - art_sys_176: 3.71489597e-26 - art_sys_177: -9.21018501e-25 - art_sys_178: 4.89515117e-26 - art_sys_179: -2.40424932e-28 - art_sys_180: 3.90388849e-27 - art_sys_181: 9.71767288e-26 - art_sys_182: 5.32874919e-27 - art_sys_183: 1.18973050e-28 - art_sys_184: -4.95617246e-29 - art_sys_185: -1.36218524e-30 + art_sys_51: 4.35894620e-04 + art_sys_52: 1.13843396e-20 + art_sys_53: 1.40613384e-20 + art_sys_54: 1.80843278e-20 + art_sys_55: 1.45786143e-20 + art_sys_56: 6.96638127e-21 + art_sys_57: 8.62140347e-14 + art_sys_58: -1.87942279e-15 + art_sys_59: -1.52878113e-14 + art_sys_60: -1.08855472e-03 + art_sys_61: 1.49455056e-15 + art_sys_62: -6.32554974e-16 + art_sys_63: 8.88742389e-16 + art_sys_64: 1.01649897e-15 + art_sys_65: 4.08722585e-16 + art_sys_66: 5.79389745e-04 + art_sys_67: -7.80908167e-18 + art_sys_68: -8.98084517e-18 + art_sys_69: -5.45550145e-03 + art_sys_70: 7.21875419e-17 + art_sys_71: 4.82283727e-15 + art_sys_72: 4.55348174e-15 + art_sys_73: -2.10561723e-03 + art_sys_74: -7.41132909e-12 + art_sys_75: 1.34536233e-17 + art_sys_76: -1.70438748e-15 + art_sys_77: -2.82919405e-15 + art_sys_78: 4.49628044e-16 + art_sys_79: 4.18769915e-18 + art_sys_80: -2.86396365e-12 + art_sys_81: 1.06707683e-16 + art_sys_82: -1.25575604e-16 + art_sys_83: -1.55490576e-16 + art_sys_84: 1.21808199e-14 + art_sys_85: 1.01425759e-17 + art_sys_86: 2.93332398e-17 + art_sys_87: 2.51498323e-13 + art_sys_88: 3.65905235e-13 + art_sys_89: -4.59081171e-13 + art_sys_90: 8.25399861e-12 + art_sys_91: -1.01423037e-12 + art_sys_92: -4.82262722e-05 + art_sys_93: -1.25368743e-12 + art_sys_94: -5.59102576e-05 + art_sys_95: -1.25770212e-13 + art_sys_96: -1.11121208e-13 + art_sys_97: 3.72036290e-05 + art_sys_98: -1.12733913e-12 + art_sys_99: 5.96569235e-14 + art_sys_100: 2.31540231e-05 + art_sys_101: -3.11035272e-12 + art_sys_102: 8.48527764e-14 + art_sys_103: -1.33563515e-05 + art_sys_104: 1.47098862e-12 + art_sys_105: 2.84806988e-13 + art_sys_106: 2.09130688e-12 + art_sys_107: -2.01442069e-12 + art_sys_108: -6.52237082e-06 + art_sys_109: -3.72772560e-11 + art_sys_110: -2.07085153e-13 + art_sys_111: -1.30454847e-10 + art_sys_112: 2.74553214e-06 + art_sys_113: -4.47930919e-14 + art_sys_114: 1.26367203e-10 + art_sys_115: 1.06925596e-06 + art_sys_116: 2.02716592e-11 + art_sys_117: -3.02832338e-14 + art_sys_118: 1.27287879e-10 + art_sys_119: 4.03177181e-07 + art_sys_120: -2.42326247e-11 + art_sys_121: 8.38168504e-12 + art_sys_122: 1.92189479e-11 + art_sys_123: 1.38442766e-07 + art_sys_124: 3.60883398e-13 + art_sys_125: -2.25061770e-12 + art_sys_126: 2.78588049e-11 + art_sys_127: 5.08630671e-12 + art_sys_128: 5.01885967e-08 + art_sys_129: -1.66087740e-08 + art_sys_130: -5.46034413e-09 + art_sys_131: -1.68920499e-09 + art_sys_132: -8.59140488e-12 + art_sys_133: -3.99307042e-12 + art_sys_134: 4.97499539e-10 + art_sys_135: 9.04278156e-12 + art_sys_136: 1.66373408e-10 + art_sys_137: 2.90693617e-12 + art_sys_138: -2.00151661e-11 + art_sys_139: 9.14427966e-13 + art_sys_140: -6.32571502e-15 + art_sys_141: -4.15711018e-12 + art_sys_142: -0.0 + art_sys_143: 5.71941141e-13 + art_sys_144: 2.36046992e-12 + art_sys_145: 3.04454922e-12 + art_sys_146: -1.75855022e-14 + art_sys_147: 5.03261940e-14 + art_sys_148: -5.34470978e-14 + art_sys_149: 1.86623177e-14 + art_sys_150: -1.49337114e-15 + art_sys_151: -1.39514240e-16 + art_sys_152: -9.38523281e-16 + art_sys_153: -6.77468653e-17 + art_sys_154: -1.10866700e-15 + art_sys_155: 2.50616433e-15 + art_sys_156: 1.07187926e-14 + art_sys_157: 6.37586431e-15 + art_sys_158: -0.0 + art_sys_159: -1.31005209e-13 + art_sys_160: -1.31005209e-13 + art_sys_161: -1.00946052e-14 + art_sys_162: 3.73882351e-27 + art_sys_163: 0.0 + art_sys_164: 2.28187432e-27 + art_sys_165: 6.96907481e-23 + art_sys_166: -5.48807236e-23 + art_sys_167: 6.85418810e-25 + art_sys_168: -2.31322925e-24 + art_sys_169: -8.25683758e-25 + art_sys_170: 2.67317554e-24 + art_sys_171: 1.94350385e-23 + art_sys_172: -2.08212721e-23 + art_sys_173: 3.32302272e-24 + art_sys_174: 3.65263010e-27 + art_sys_175: -1.78172116e-25 + art_sys_176: 3.97829885e-25 + art_sys_177: -7.66457364e-26 + art_sys_178: -3.02948082e-26 + art_sys_179: 4.30636841e-25 + art_sys_180: 4.72730485e-26 + art_sys_181: -5.83000020e-27 + art_sys_182: 3.79345754e-27 + art_sys_183: 5.07841441e-29 + art_sys_184: 8.45928272e-30 + art_sys_185: 3.26089818e-28 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -22379,167 +22379,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: -8.40139435e-86 - art_sys_26: -4.40103437e-80 - art_sys_27: 2.76420874e-73 - art_sys_28: -1.65379833e-72 - art_sys_29: -6.35201810e-62 - art_sys_30: -5.16280613e-59 - art_sys_31: -2.41497992e-56 - art_sys_32: 2.88482365e-48 - art_sys_33: 8.64523147e-43 - art_sys_34: 8.71644664e-36 - art_sys_35: 6.11041411e-37 - art_sys_36: -1.84169019e-11 - art_sys_37: 3.60132157e-10 - art_sys_38: 4.52659684e-10 - art_sys_39: 1.56536859e-09 - art_sys_40: 4.97487637e-08 - art_sys_41: -1.40638580e-07 - art_sys_42: -2.40485602e-07 - art_sys_43: -3.29250718e-09 - art_sys_44: 1.78673663e-06 - art_sys_45: 1.15583117e-05 - art_sys_46: 9.76673846e-06 - art_sys_47: 9.39028596e-23 - art_sys_48: 1.17470689e-21 - art_sys_49: -9.09453415e-23 + art_sys_25: 5.24971562e-46 + art_sys_26: -1.33933170e-39 + art_sys_27: -6.95568661e-32 + art_sys_28: 1.70093561e-31 + art_sys_29: 1.84169019e-11 + art_sys_30: -3.60132157e-10 + art_sys_31: -4.52659684e-10 + art_sys_32: -1.56536859e-09 + art_sys_33: 4.97487637e-08 + art_sys_34: 1.40638580e-07 + art_sys_35: 2.40485602e-07 + art_sys_36: -1.25491851e-24 + art_sys_37: -1.56141959e-25 + art_sys_38: -3.29250718e-09 + art_sys_39: 8.85289209e-26 + art_sys_40: 1.78024014e-25 + art_sys_41: 3.33942833e-25 + art_sys_42: -1.78673663e-06 + art_sys_43: -1.57028180e-23 + art_sys_44: -1.15583117e-05 + art_sys_45: -2.07660871e-24 + art_sys_46: 4.25137881e-22 + art_sys_47: -9.76673846e-06 + art_sys_48: -1.64984054e-22 + art_sys_49: 1.71603090e-22 art_sys_50: 5.19172387e-05 - art_sys_51: 1.19587896e-04 - art_sys_52: 1.60612685e-21 - art_sys_53: -5.09855251e-21 - art_sys_54: -3.47158203e-21 - art_sys_55: 1.01286030e-21 - art_sys_56: 2.03682700e-21 - art_sys_57: 4.39685025e-05 - art_sys_58: 4.21270033e-04 - art_sys_59: 7.26434142e-21 - art_sys_60: 3.75177982e-20 - art_sys_61: -2.50775340e-04 - art_sys_62: -9.61284718e-21 - art_sys_63: 1.05374554e-19 - art_sys_64: -6.57596765e-14 - art_sys_65: 1.95497272e-14 - art_sys_66: -5.36968032e-15 - art_sys_67: -5.83077657e-15 - art_sys_68: 1.08069919e-16 - art_sys_69: 5.11489008e-17 - art_sys_70: 1.49218401e-17 - art_sys_71: -3.18351206e-18 - art_sys_72: 3.81419321e-17 - art_sys_73: -1.25215565e-17 - art_sys_74: -5.74256358e-04 - art_sys_75: -6.75342035e-17 - art_sys_76: -6.86699074e-14 - art_sys_77: 4.07084156e-16 - art_sys_78: -3.85506382e-15 - art_sys_79: -1.73134491e-17 - art_sys_80: -6.74084699e-15 - art_sys_81: 2.62971843e-17 - art_sys_82: 7.97181421e-15 - art_sys_83: 1.09249490e-15 - art_sys_84: 8.88591746e-16 - art_sys_85: -3.35990804e-17 - art_sys_86: 1.04385191e-16 - art_sys_87: -2.75578306e-11 - art_sys_88: -1.74179223e-12 - art_sys_89: -4.06273984e-17 - art_sys_90: 8.52915682e-14 - art_sys_91: -4.50946079e-16 - art_sys_92: 4.00657831e-17 - art_sys_93: 1.18347597e-18 - art_sys_94: -2.17164869e-12 - art_sys_95: 6.19814992e-04 - art_sys_96: 1.30218565e-12 - art_sys_97: -6.74297353e-13 - art_sys_98: -1.61636309e-04 - art_sys_99: 6.39540414e-12 - art_sys_100: 1.90775760e-04 - art_sys_101: 1.95540557e-10 - art_sys_102: -1.00986912e-04 - art_sys_103: 1.41229333e-10 - art_sys_104: 2.31009051e-10 - art_sys_105: -3.08951576e-13 - art_sys_106: -1.33112821e-09 - art_sys_107: 5.88037962e-05 - art_sys_108: -5.00817058e-13 - art_sys_109: -1.93577882e-12 - art_sys_110: -2.85948225e-05 - art_sys_111: -4.30046745e-11 - art_sys_112: 5.86662022e-10 - art_sys_113: -4.39279022e-11 - art_sys_114: -9.61343954e-13 - art_sys_115: 3.16317925e-12 - art_sys_116: -1.20006305e-05 - art_sys_117: -3.44798563e-12 - art_sys_118: 9.56043692e-11 - art_sys_119: 4.68837432e-06 - art_sys_120: 8.19735965e-11 - art_sys_121: 5.00647177e-13 - art_sys_122: 3.58905759e-11 - art_sys_123: 1.76854640e-06 - art_sys_124: -2.46376928e-11 - art_sys_125: -5.10514155e-13 - art_sys_126: -2.29996356e-11 - art_sys_127: -6.08177551e-07 - art_sys_128: 5.21984206e-11 - art_sys_129: -4.46126233e-15 - art_sys_130: 2.20459354e-07 - art_sys_131: 3.25597935e-13 - art_sys_132: -2.55769725e-10 - art_sys_133: 7.27565429e-08 - art_sys_134: 1.35245642e-10 - art_sys_135: 1.45530916e-11 - art_sys_136: 3.20069948e-14 - art_sys_137: 2.41920512e-08 - art_sys_138: 2.32424777e-11 - art_sys_139: 7.37113240e-09 - art_sys_140: 7.21122177e-15 - art_sys_141: 4.90172737e-11 - art_sys_142: -2.03096197e-11 - art_sys_143: 2.26701925e-09 - art_sys_144: -9.94667332e-14 - art_sys_145: -1.64752249e-11 - art_sys_146: 7.64400769e-10 - art_sys_147: -1.86519118e-14 - art_sys_148: -1.58091746e-15 - art_sys_149: 4.80668380e-12 - art_sys_150: 9.67928005e-11 - art_sys_151: -3.32140086e-12 - art_sys_152: 5.02077123e-15 - art_sys_153: -1.07464667e-11 - art_sys_154: 9.55230774e-12 - art_sys_155: -3.92358183e-15 - art_sys_156: -0.0 - art_sys_157: -4.81631896e-12 - art_sys_158: -0.0 - art_sys_159: -7.27317789e-13 - art_sys_160: -1.59371297e-13 - art_sys_161: 5.47406959e-14 - art_sys_162: 5.47406959e-14 - art_sys_163: 6.37587606e-14 - art_sys_164: 6.37587606e-14 - art_sys_165: -7.12524288e-28 - art_sys_166: 2.36089474e-28 - art_sys_167: 0.0 - art_sys_168: -2.28223817e-22 - art_sys_169: -2.81186481e-22 - art_sys_170: -1.79926194e-23 - art_sys_171: -1.71371798e-22 - art_sys_172: -2.37213998e-23 - art_sys_173: -1.21040296e-24 - art_sys_174: -7.28694045e-25 - art_sys_175: 1.34496691e-25 - art_sys_176: -1.63739077e-25 - art_sys_177: 4.05659636e-24 - art_sys_178: -2.15294607e-25 - art_sys_179: 1.06064059e-27 - art_sys_180: -1.70882394e-26 - art_sys_181: -4.27839193e-25 - art_sys_182: -2.34868623e-26 - art_sys_183: -5.24213824e-28 - art_sys_184: 2.18416964e-28 - art_sys_185: 6.00663763e-30 + art_sys_51: -1.19587896e-04 + art_sys_52: -1.17640255e-20 + art_sys_53: -3.50539247e-21 + art_sys_54: -5.59294591e-21 + art_sys_55: -3.61000098e-21 + art_sys_56: 1.54705445e-21 + art_sys_57: -1.07155793e-13 + art_sys_58: 2.83418123e-14 + art_sys_59: -1.32514815e-14 + art_sys_60: -4.39685025e-05 + art_sys_61: -1.58112546e-15 + art_sys_62: -2.76006806e-16 + art_sys_63: 6.03192138e-17 + art_sys_64: -3.18460520e-16 + art_sys_65: -3.30891994e-16 + art_sys_66: -4.21270033e-04 + art_sys_67: -8.87080638e-18 + art_sys_68: -4.60229216e-17 + art_sys_69: -2.50775338e-04 + art_sys_70: -1.05379109e-16 + art_sys_71: -3.40530455e-15 + art_sys_72: -2.99333647e-15 + art_sys_73: -5.74256358e-04 + art_sys_74: -3.40308349e-13 + art_sys_75: -6.31052191e-17 + art_sys_76: 5.20005931e-14 + art_sys_77: 1.09990823e-14 + art_sys_78: 3.82839552e-15 + art_sys_79: -1.64107943e-17 + art_sys_80: -1.32923375e-13 + art_sys_81: 8.70281218e-16 + art_sys_82: 1.37859395e-15 + art_sys_83: 8.00944511e-16 + art_sys_84: -4.09173381e-14 + art_sys_85: 1.50013572e-16 + art_sys_86: 6.98547285e-17 + art_sys_87: -1.10732531e-12 + art_sys_88: -1.59910983e-12 + art_sys_89: 2.01295938e-12 + art_sys_90: 3.79521885e-13 + art_sys_91: -2.78993762e-13 + art_sys_92: 6.19815363e-04 + art_sys_93: -5.62122516e-14 + art_sys_94: 1.61636377e-04 + art_sys_95: 6.83250783e-13 + art_sys_96: 4.87477347e-13 + art_sys_97: -1.90775094e-04 + art_sys_98: 3.47892515e-12 + art_sys_99: -9.90148191e-13 + art_sys_100: -1.00986408e-04 + art_sys_101: 1.53854494e-11 + art_sys_102: -3.72509286e-13 + art_sys_103: 5.88036132e-05 + art_sys_104: -7.88452062e-12 + art_sys_105: -1.25288473e-12 + art_sys_106: -7.46128090e-12 + art_sys_107: 7.20058789e-12 + art_sys_108: 2.85945074e-05 + art_sys_109: 1.78594717e-10 + art_sys_110: 9.11202010e-13 + art_sys_111: 6.93607832e-10 + art_sys_112: -1.20004441e-05 + art_sys_113: 1.97082496e-13 + art_sys_114: -6.32526547e-10 + art_sys_115: -4.68850113e-06 + art_sys_116: -8.88520262e-11 + art_sys_117: 1.33289841e-13 + art_sys_118: -6.56613447e-10 + art_sys_119: -1.76864721e-06 + art_sys_120: 1.19660752e-10 + art_sys_121: -3.66164512e-11 + art_sys_122: -8.33326628e-11 + art_sys_123: -6.08102602e-07 + art_sys_124: -1.72299373e-12 + art_sys_125: 9.87882137e-12 + art_sys_126: -1.22118996e-10 + art_sys_127: -2.22137428e-11 + art_sys_128: -2.20792897e-07 + art_sys_129: 7.30893365e-08 + art_sys_130: 2.40554175e-08 + art_sys_131: 7.44343504e-09 + art_sys_132: 3.75410512e-11 + art_sys_133: 1.75481409e-11 + art_sys_134: -2.19311408e-09 + art_sys_135: -3.95701216e-11 + art_sys_136: -7.33584691e-10 + art_sys_137: -1.27349742e-11 + art_sys_138: 8.82698642e-11 + art_sys_139: -4.03197385e-12 + art_sys_140: 2.21464055e-14 + art_sys_141: 1.83165894e-11 + art_sys_142: 0.0 + art_sys_143: -2.50127482e-12 + art_sys_144: -1.03936181e-11 + art_sys_145: -1.34162142e-11 + art_sys_146: 7.74119656e-14 + art_sys_147: -2.21662569e-13 + art_sys_148: 2.32300695e-13 + art_sys_149: -8.23864292e-14 + art_sys_150: 6.56396087e-15 + art_sys_151: 6.52028063e-16 + art_sys_152: 4.15642182e-15 + art_sys_153: 2.99702913e-16 + art_sys_154: 4.87651497e-15 + art_sys_155: -1.10305325e-14 + art_sys_156: -4.72318579e-14 + art_sys_157: -2.81056940e-14 + art_sys_158: 0.0 + art_sys_159: 5.78364578e-13 + art_sys_160: 5.78364578e-13 + art_sys_161: 4.43638173e-14 + art_sys_162: -1.64303888e-26 + art_sys_163: -0.0 + art_sys_164: -1.00275962e-26 + art_sys_165: -3.07203663e-22 + art_sys_166: 2.41291130e-22 + art_sys_167: -2.84034173e-24 + art_sys_168: 1.01394454e-23 + art_sys_169: 3.60223993e-24 + art_sys_170: -1.17151815e-23 + art_sys_171: -8.56101115e-23 + art_sys_172: 9.16944780e-23 + art_sys_173: -1.46269633e-23 + art_sys_174: -1.60937712e-26 + art_sys_175: 7.85802915e-25 + art_sys_176: -1.75440594e-24 + art_sys_177: 3.37872654e-25 + art_sys_178: 1.33416486e-25 + art_sys_179: -1.89660610e-24 + art_sys_180: -2.08183845e-25 + art_sys_181: 2.56906473e-26 + art_sys_182: -1.67109829e-26 + art_sys_183: -2.23803370e-28 + art_sys_184: -3.72760567e-29 + art_sys_185: -1.43498775e-27 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -22670,167 +22670,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: -2.15827372e-87 - art_sys_26: -1.13060243e-81 - art_sys_27: 7.10110597e-75 - art_sys_28: -4.24852039e-74 - art_sys_29: -1.63179984e-63 - art_sys_30: -1.32629758e-60 - art_sys_31: -6.20395565e-58 - art_sys_32: 7.41095932e-50 - art_sys_33: 2.22091423e-44 - art_sys_34: 2.23920903e-37 - art_sys_35: 1.56973306e-38 - art_sys_36: -4.76819712e-13 - art_sys_37: 2.91916793e-11 - art_sys_38: 3.81846546e-11 - art_sys_39: 1.37435402e-10 - art_sys_40: 3.62784507e-09 - art_sys_41: -1.45766719e-08 - art_sys_42: -1.47673737e-08 - art_sys_43: 2.49468354e-08 - art_sys_44: -4.99845581e-08 - art_sys_45: 2.55462954e-06 - art_sys_46: 4.59701409e-06 - art_sys_47: 7.38081358e-23 - art_sys_48: -7.26752290e-23 - art_sys_49: 2.39571463e-26 + art_sys_25: 1.35916828e-47 + art_sys_26: -3.46757290e-41 + art_sys_27: -1.80084966e-33 + art_sys_28: 4.40377707e-33 + art_sys_29: 4.76819712e-13 + art_sys_30: -2.91916793e-11 + art_sys_31: -3.81846546e-11 + art_sys_32: -1.37435402e-10 + art_sys_33: 3.62784507e-09 + art_sys_34: 1.45766719e-08 + art_sys_35: 1.47673737e-08 + art_sys_36: -9.23172076e-26 + art_sys_37: -1.21207875e-25 + art_sys_38: 2.49468354e-08 + art_sys_39: -2.38659351e-25 + art_sys_40: 1.07075980e-25 + art_sys_41: -1.63660619e-25 + art_sys_42: 4.99845581e-08 + art_sys_43: 4.46741498e-25 + art_sys_44: -2.55462954e-06 + art_sys_45: 9.00506130e-24 + art_sys_46: 1.34980217e-22 + art_sys_47: -4.59701409e-06 + art_sys_48: -2.46504239e-23 + art_sys_49: 4.48859228e-23 art_sys_50: -2.57390653e-06 - art_sys_51: 4.20271378e-05 - art_sys_52: 8.68875238e-22 - art_sys_53: -1.71543100e-21 - art_sys_54: -9.55470827e-22 - art_sys_55: 8.77589880e-22 - art_sys_56: 2.79848033e-22 - art_sys_57: -6.62528367e-05 - art_sys_58: 6.85977960e-05 - art_sys_59: -8.23181075e-23 - art_sys_60: 6.39106289e-21 - art_sys_61: 4.11031692e-04 - art_sys_62: 8.63301086e-22 - art_sys_63: -2.55449250e-20 - art_sys_64: -1.22294912e-13 - art_sys_65: -1.55682177e-14 - art_sys_66: 2.06846945e-15 - art_sys_67: -3.56126831e-15 - art_sys_68: 1.76174935e-16 - art_sys_69: 3.00441892e-16 - art_sys_70: -3.21250120e-17 - art_sys_71: 2.85563212e-17 - art_sys_72: -9.32635359e-17 - art_sys_73: -8.61097642e-17 - art_sys_74: 1.75022210e-04 - art_sys_75: 1.60353947e-16 - art_sys_76: -4.39770261e-14 - art_sys_77: -1.83174068e-14 - art_sys_78: 1.38053580e-14 - art_sys_79: 6.81256811e-17 - art_sys_80: 9.35597371e-16 - art_sys_81: -7.22860634e-17 - art_sys_82: -2.42959552e-15 - art_sys_83: 2.36234006e-17 - art_sys_84: 1.84320986e-16 - art_sys_85: -3.47507706e-16 - art_sys_86: 1.90774631e-16 - art_sys_87: 1.72820531e-11 - art_sys_88: 2.64165316e-12 - art_sys_89: -4.16271958e-17 - art_sys_90: -1.44829427e-13 - art_sys_91: 1.37506676e-16 - art_sys_92: -7.96761891e-18 - art_sys_93: 2.35607725e-17 - art_sys_94: 4.20290020e-12 - art_sys_95: 4.90308163e-04 - art_sys_96: 1.03051153e-12 - art_sys_97: -5.32266699e-13 - art_sys_98: 3.00643385e-04 - art_sys_99: 3.72611227e-11 - art_sys_100: -1.22215352e-04 - art_sys_101: -1.22262703e-10 - art_sys_102: 1.36476345e-04 - art_sys_103: -9.54786052e-11 - art_sys_104: 1.88693362e-10 - art_sys_105: 6.52112983e-13 - art_sys_106: 1.75422079e-09 - art_sys_107: -8.81151576e-05 - art_sys_108: 1.05693304e-12 - art_sys_109: 4.08631468e-12 - art_sys_110: 4.85567157e-05 - art_sys_111: -2.42985998e-10 - art_sys_112: -9.95620578e-10 - art_sys_113: 5.93531012e-11 - art_sys_114: 2.04551377e-12 - art_sys_115: 4.63176148e-12 - art_sys_116: 2.20432638e-05 - art_sys_117: 7.37892778e-12 - art_sys_118: -1.42040972e-10 - art_sys_119: -9.07387352e-06 - art_sys_120: -1.40544162e-10 - art_sys_121: -1.06382447e-12 - art_sys_122: -2.61005071e-11 - art_sys_123: -3.56542943e-06 - art_sys_124: 3.26630383e-11 - art_sys_125: 1.10203094e-12 - art_sys_126: 4.43872614e-11 - art_sys_127: 1.25976972e-06 - art_sys_128: -8.67689386e-11 - art_sys_129: 1.26602100e-14 - art_sys_130: -4.65434203e-07 - art_sys_131: -7.07846889e-13 - art_sys_132: 4.33429937e-10 - art_sys_133: -1.55781187e-07 - art_sys_134: -2.62431149e-10 - art_sys_135: -2.44463323e-11 - art_sys_136: -7.01691518e-14 - art_sys_137: -5.22500692e-08 - art_sys_138: -4.59368191e-11 - art_sys_139: -1.60372469e-08 - art_sys_140: -1.51466843e-14 - art_sys_141: -1.05513360e-10 - art_sys_142: 3.86020580e-11 - art_sys_143: -4.94366340e-09 - art_sys_144: 2.07753186e-13 - art_sys_145: 3.30634110e-11 - art_sys_146: -1.67223764e-09 - art_sys_147: 4.07512291e-14 - art_sys_148: 3.43201835e-15 - art_sys_149: -8.44458633e-12 - art_sys_150: -2.12494645e-10 - art_sys_151: 6.59722893e-12 - art_sys_152: -1.12008508e-14 - art_sys_153: 2.34117043e-11 - art_sys_154: -1.65873558e-11 - art_sys_155: 8.76101224e-15 - art_sys_156: 0.0 - art_sys_157: 9.03957816e-12 - art_sys_158: 0.0 - art_sys_159: 1.41777532e-12 - art_sys_160: 3.03371673e-13 - art_sys_161: -1.22213123e-13 - art_sys_162: -1.22213123e-13 - art_sys_163: -1.25056504e-13 - art_sys_164: -1.25056504e-13 - art_sys_165: 1.42247607e-27 - art_sys_166: -4.72144467e-28 - art_sys_167: -0.0 - art_sys_168: 6.12218128e-22 - art_sys_169: 6.13724296e-22 - art_sys_170: 6.11596476e-23 - art_sys_171: 3.66250216e-22 - art_sys_172: 5.12538284e-23 - art_sys_173: 2.54352096e-24 - art_sys_174: 1.53336038e-24 - art_sys_175: -2.93315721e-25 - art_sys_176: 3.56657836e-25 - art_sys_177: -8.76880286e-24 - art_sys_178: 4.54935804e-25 - art_sys_179: -2.38855873e-27 - art_sys_180: 3.33844276e-26 - art_sys_181: 9.20788038e-25 - art_sys_182: 5.12278501e-26 - art_sys_183: 1.14232100e-27 - art_sys_184: -4.75256731e-28 - art_sys_185: -1.31219111e-29 + art_sys_51: -4.20271378e-05 + art_sys_52: -2.58992496e-21 + art_sys_53: -1.28742039e-21 + art_sys_54: -1.85977712e-21 + art_sys_55: -1.33675060e-21 + art_sys_56: -1.78286121e-22 + art_sys_57: -1.61689074e-13 + art_sys_58: -1.51282214e-14 + art_sys_59: -2.20670608e-14 + art_sys_60: 6.62528367e-05 + art_sys_61: 7.00960463e-16 + art_sys_62: 2.02094221e-15 + art_sys_63: -2.31747090e-17 + art_sys_64: -6.97656592e-16 + art_sys_65: 8.09410691e-16 + art_sys_66: -6.85977960e-05 + art_sys_67: -6.79570440e-17 + art_sys_68: 1.45708634e-16 + art_sys_69: 4.11031689e-04 + art_sys_70: -1.23320734e-17 + art_sys_71: -5.65360294e-16 + art_sys_72: -5.21436328e-16 + art_sys_73: 1.75022210e-04 + art_sys_74: 5.58409640e-13 + art_sys_75: 1.17187650e-16 + art_sys_76: 6.70051601e-14 + art_sys_77: -1.98213912e-14 + art_sys_78: 1.58256027e-14 + art_sys_79: 4.88775075e-17 + art_sys_80: 2.15822224e-13 + art_sys_81: 2.77549284e-15 + art_sys_82: 9.97149521e-16 + art_sys_83: -5.28757492e-16 + art_sys_84: 5.65651429e-14 + art_sys_85: 5.58242412e-16 + art_sys_86: 4.28396945e-16 + art_sys_87: 1.65902723e-12 + art_sys_88: 2.94790903e-12 + art_sys_89: -3.89486354e-12 + art_sys_90: -6.21882256e-13 + art_sys_91: 8.53585687e-14 + art_sys_92: 4.90307689e-04 + art_sys_93: 9.52130442e-14 + art_sys_94: -3.00643326e-04 + art_sys_95: 4.97990087e-13 + art_sys_96: -9.83293317e-13 + art_sys_97: 1.22214888e-04 + art_sys_98: -6.41535555e-12 + art_sys_99: -2.32422278e-13 + art_sys_100: 1.36475664e-04 + art_sys_101: -1.13645866e-11 + art_sys_102: 7.66538623e-13 + art_sys_103: -8.81148710e-05 + art_sys_104: 4.19345217e-12 + art_sys_105: 2.64012929e-12 + art_sys_106: 9.95306408e-12 + art_sys_107: -1.39855198e-11 + art_sys_108: -4.85561806e-05 + art_sys_109: -1.65716848e-10 + art_sys_110: -1.94087034e-12 + art_sys_111: -4.00674240e-10 + art_sys_112: 2.20428813e-05 + art_sys_113: -4.18117319e-13 + art_sys_114: 4.37089767e-10 + art_sys_115: 9.07411621e-06 + art_sys_116: 1.53702695e-10 + art_sys_117: -2.85285095e-13 + art_sys_118: 3.99906114e-10 + art_sys_119: 3.56563272e-06 + art_sys_120: -1.00678893e-10 + art_sys_121: 6.67266007e-11 + art_sys_122: 1.33233312e-10 + art_sys_123: 1.25960813e-06 + art_sys_124: 2.44485140e-12 + art_sys_125: -1.69407969e-11 + art_sys_126: 2.35346205e-10 + art_sys_127: 4.07894618e-11 + art_sys_128: 4.66119248e-07 + art_sys_129: -1.56474727e-07 + art_sys_130: -5.19625652e-08 + art_sys_131: -1.61892276e-08 + art_sys_132: -6.84644493e-11 + art_sys_133: -3.66406940e-11 + art_sys_134: 4.78784478e-09 + art_sys_135: 7.38598625e-11 + art_sys_136: 1.60636635e-09 + art_sys_137: 2.48793045e-11 + art_sys_138: -1.93847428e-10 + art_sys_139: 8.85421805e-12 + art_sys_140: -2.39070245e-14 + art_sys_141: -3.97320238e-11 + art_sys_142: -0.0 + art_sys_143: 4.75589482e-12 + art_sys_144: 2.23136960e-11 + art_sys_145: 2.91621894e-11 + art_sys_146: -1.65489418e-13 + art_sys_147: 4.78184734e-13 + art_sys_148: -4.05733153e-13 + art_sys_149: 1.83552835e-13 + art_sys_150: -1.38676920e-14 + art_sys_151: -2.56345353e-15 + art_sys_152: -9.62715537e-15 + art_sys_153: -6.85342315e-16 + art_sys_154: -1.03310253e-14 + art_sys_155: 2.35649604e-14 + art_sys_156: 1.02558454e-13 + art_sys_157: 6.13909554e-14 + art_sys_158: -0.0 + art_sys_159: -1.28027740e-12 + art_sys_160: -1.28027740e-12 + art_sys_161: -9.29920761e-14 + art_sys_162: 3.44122702e-26 + art_sys_163: 0.0 + art_sys_164: 2.09967047e-26 + art_sys_165: 7.02548310e-22 + art_sys_166: -5.10823719e-22 + art_sys_167: 7.14488287e-25 + art_sys_168: -2.00313484e-23 + art_sys_169: -6.95927998e-24 + art_sys_170: 2.36013836e-23 + art_sys_171: 1.85043327e-22 + art_sys_172: -1.98289269e-22 + art_sys_173: 3.14018438e-23 + art_sys_174: 3.49142603e-26 + art_sys_175: -1.72330050e-24 + art_sys_176: 3.84088439e-24 + art_sys_177: -7.36248448e-25 + art_sys_178: -2.87127021e-25 + art_sys_179: 4.08794362e-24 + art_sys_180: 4.48309500e-25 + art_sys_181: -5.57817435e-26 + art_sys_182: 3.61309883e-26 + art_sys_183: 4.86842049e-28 + art_sys_184: 8.09491476e-29 + art_sys_185: 3.05863536e-27 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -22961,167 +22961,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: 6.45205493e-88 - art_sys_26: 3.37988127e-82 - art_sys_27: -2.12284125e-75 - art_sys_28: 1.27007460e-74 - art_sys_29: 4.87818660e-64 - art_sys_30: 3.96490238e-61 - art_sys_31: 1.85464249e-58 - art_sys_32: -2.21547039e-50 - art_sys_33: -6.63931550e-45 - art_sys_34: -6.69400691e-38 - art_sys_35: -4.69264093e-39 - art_sys_36: 1.40644714e-13 - art_sys_37: 1.50443611e-12 - art_sys_38: 8.96264410e-13 - art_sys_39: 1.55579318e-11 - art_sys_40: 2.33346837e-10 - art_sys_41: -1.63280322e-09 - art_sys_42: -1.02209831e-09 - art_sys_43: 3.51619695e-09 - art_sys_44: -2.55552477e-08 - art_sys_45: 1.82136188e-07 - art_sys_46: 4.43470704e-07 - art_sys_47: 7.79224381e-24 - art_sys_48: -7.93109974e-23 - art_sys_49: -1.42188787e-24 + art_sys_25: -4.00906174e-48 + art_sys_26: 1.02281035e-41 + art_sys_27: 5.31186431e-34 + art_sys_28: -1.29895720e-33 + art_sys_29: -1.40644714e-13 + art_sys_30: -1.50443611e-12 + art_sys_31: -8.96264410e-13 + art_sys_32: -1.55579318e-11 + art_sys_33: 2.33346837e-10 + art_sys_34: 1.63280322e-09 + art_sys_35: 1.02209831e-09 + art_sys_36: -7.88161981e-27 + art_sys_37: -1.64489569e-26 + art_sys_38: 3.51619695e-09 + art_sys_39: -3.41732907e-26 + art_sys_40: 1.44360329e-26 + art_sys_41: -2.40344976e-26 + art_sys_42: 2.55552477e-08 + art_sys_43: 2.24823931e-25 + art_sys_44: -1.82136188e-07 + art_sys_45: 1.08310266e-24 + art_sys_46: 1.15650095e-23 + art_sys_47: -4.43470704e-07 + art_sys_48: 4.43769557e-25 + art_sys_49: 4.66058143e-24 art_sys_50: -3.62967094e-06 - art_sys_51: -6.44777277e-07 - art_sys_52: 4.08968425e-23 - art_sys_53: 4.42020241e-23 - art_sys_54: 7.13758167e-23 - art_sys_55: 7.66773416e-23 - art_sys_56: -2.56273105e-23 - art_sys_57: -1.14166053e-05 - art_sys_58: -3.25255386e-05 - art_sys_59: -6.18629143e-22 - art_sys_60: -1.47513618e-21 - art_sys_61: 4.37590541e-05 - art_sys_62: 8.43505346e-22 - art_sys_63: -1.17658073e-20 - art_sys_64: -4.42784386e-14 - art_sys_65: 2.08089596e-16 - art_sys_66: -3.20220330e-15 - art_sys_67: 3.25529348e-16 - art_sys_68: -3.70844556e-16 - art_sys_69: -5.36284105e-16 - art_sys_70: 3.11066547e-17 - art_sys_71: -4.02697015e-16 - art_sys_72: 3.25082333e-17 - art_sys_73: 1.77472297e-16 - art_sys_74: 6.83328644e-05 - art_sys_75: -2.71300923e-16 - art_sys_76: 3.00906168e-15 - art_sys_77: -3.36043255e-14 - art_sys_78: 5.37245825e-15 - art_sys_79: -1.18378587e-16 - art_sys_80: 4.49531056e-15 - art_sys_81: 1.21555842e-16 - art_sys_82: -9.48590880e-16 - art_sys_83: 6.23582411e-16 - art_sys_84: 4.15363467e-16 - art_sys_85: 3.61911074e-16 - art_sys_86: -7.45442685e-17 - art_sys_87: -9.84793056e-12 - art_sys_88: -2.74340111e-12 - art_sys_89: 1.06063787e-16 - art_sys_90: 1.75399413e-13 - art_sys_91: 5.36745259e-17 - art_sys_92: -9.44050420e-17 - art_sys_93: 4.09411886e-17 - art_sys_94: -6.47568631e-12 - art_sys_95: -4.87038618e-05 - art_sys_96: -1.02312842e-13 - art_sys_97: 5.30267704e-14 - art_sys_98: 5.49372242e-04 - art_sys_99: 3.98276360e-11 - art_sys_100: 6.87389891e-05 - art_sys_101: 7.97156509e-11 - art_sys_102: -5.78242914e-05 - art_sys_103: 3.54611043e-11 - art_sys_104: -7.47875622e-12 - art_sys_105: -1.15233393e-12 - art_sys_106: -7.51200430e-10 - art_sys_107: 8.85765659e-05 - art_sys_108: -1.86728161e-12 - art_sys_109: -7.22184070e-12 - art_sys_110: -5.82493058e-05 - art_sys_111: -2.70010166e-10 - art_sys_112: 1.19325372e-09 - art_sys_113: -2.51303540e-11 - art_sys_114: -3.65869321e-12 - art_sys_115: -4.94428212e-12 - art_sys_116: -3.09327954e-05 - art_sys_117: -1.33147374e-11 - art_sys_118: 1.28218765e-10 - art_sys_119: 1.39816910e-05 - art_sys_120: 1.71830615e-10 - art_sys_121: 1.89571472e-12 - art_sys_122: -7.61146081e-11 - art_sys_123: 5.84279056e-06 - art_sys_124: -1.09044664e-11 - art_sys_125: -2.01787452e-12 - art_sys_126: -6.81620258e-11 - art_sys_127: -2.16224711e-06 - art_sys_128: 1.01204330e-10 - art_sys_129: -3.15616290e-14 - art_sys_130: 8.22727466e-07 - art_sys_131: 1.31101686e-12 - art_sys_132: -5.17234616e-10 - art_sys_133: 2.81340357e-07 - art_sys_134: 4.06065284e-10 - art_sys_135: 2.85780477e-11 - art_sys_136: 1.32148310e-13 - art_sys_137: 9.57779102e-08 - art_sys_138: 7.30237366e-11 - art_sys_139: 2.97090433e-08 - art_sys_140: 2.65357505e-14 - art_sys_141: 1.92417448e-10 - art_sys_142: -5.76183555e-11 - art_sys_143: 9.20006037e-09 - art_sys_144: -3.61333545e-13 - art_sys_145: -5.39596073e-11 - art_sys_146: 3.12666994e-09 - art_sys_147: -7.60536101e-14 - art_sys_148: -6.35163985e-15 - art_sys_149: 1.07677704e-11 - art_sys_150: 3.99587021e-10 - art_sys_151: -1.05313223e-11 - art_sys_152: 2.15698186e-14 - art_sys_153: -4.36034651e-11 - art_sys_154: 1.97874643e-11 - art_sys_155: -1.68580898e-14 - art_sys_156: -0.0 - art_sys_157: -1.32090612e-11 - art_sys_158: -0.0 - art_sys_159: -2.18710593e-12 - art_sys_160: -4.54139274e-13 - art_sys_161: 2.34301919e-13 - art_sys_162: 2.34301919e-13 - art_sys_163: 1.94320311e-13 - art_sys_164: 1.94320311e-13 - art_sys_165: -2.28502977e-27 - art_sys_166: 7.60785805e-28 - art_sys_167: 0.0 - art_sys_168: -9.54884850e-22 - art_sys_169: -1.14435245e-21 - art_sys_170: -1.16274905e-22 - art_sys_171: -6.59634815e-22 - art_sys_172: -9.39176407e-23 - art_sys_173: -4.44590316e-24 - art_sys_174: -2.68532688e-24 - art_sys_175: 5.46016905e-25 - art_sys_176: -6.61674573e-25 - art_sys_177: 1.60828799e-23 - art_sys_178: -8.05732044e-25 - art_sys_179: 4.63739539e-27 - art_sys_180: -5.16597660e-26 - art_sys_181: -1.67724396e-24 - art_sys_182: -9.54809422e-26 - art_sys_183: -2.12133352e-27 - art_sys_184: 8.80917765e-28 - art_sys_185: 2.45019174e-29 + art_sys_51: 6.44777277e-07 + art_sys_52: 3.17252742e-22 + art_sys_53: 8.00168699e-24 + art_sys_54: 4.03832895e-23 + art_sys_55: 1.01758455e-23 + art_sys_56: -1.17721978e-22 + art_sys_57: 8.86167236e-15 + art_sys_58: 5.75163086e-15 + art_sys_59: 4.51170019e-15 + art_sys_60: 1.14166053e-05 + art_sys_61: 6.27796362e-16 + art_sys_62: 1.86264661e-15 + art_sys_63: -8.83056957e-16 + art_sys_64: 1.95780855e-15 + art_sys_65: -1.81204460e-15 + art_sys_66: 3.25255386e-05 + art_sys_67: 1.17567586e-16 + art_sys_68: -2.38465299e-16 + art_sys_69: 4.37590538e-05 + art_sys_70: 8.60635503e-18 + art_sys_71: 2.62332743e-16 + art_sys_72: 2.29273885e-16 + art_sys_73: 6.83328644e-05 + art_sys_74: 5.94161311e-14 + art_sys_75: -2.21768924e-16 + art_sys_76: 1.72183058e-14 + art_sys_77: 4.51051636e-15 + art_sys_78: -1.12839379e-14 + art_sys_79: -9.32177937e-17 + art_sys_80: 2.31094104e-14 + art_sys_81: -2.03685040e-16 + art_sys_82: -8.00303323e-16 + art_sys_83: -1.52461743e-16 + art_sys_84: 1.14780350e-13 + art_sys_85: -7.32222303e-16 + art_sys_86: 2.05383485e-16 + art_sys_87: -1.66732870e-12 + art_sys_88: -4.16315068e-12 + art_sys_89: 5.99889681e-12 + art_sys_90: -6.62175876e-14 + art_sys_91: 3.32057629e-14 + art_sys_92: -4.87048526e-05 + art_sys_93: 9.93176462e-15 + art_sys_94: -5.49372160e-04 + art_sys_95: -1.30529892e-13 + art_sys_96: 1.61293365e-12 + art_sys_97: -6.87388544e-05 + art_sys_98: -1.17293334e-11 + art_sys_99: 7.52188176e-13 + art_sys_100: -5.78239978e-05 + art_sys_101: 7.02564716e-12 + art_sys_102: -1.30189906e-12 + art_sys_103: 8.85762549e-05 + art_sys_104: -2.08519207e-12 + art_sys_105: -4.65320334e-12 + art_sys_106: 1.29959467e-11 + art_sys_107: -2.65204877e-11 + art_sys_108: 5.82486638e-05 + art_sys_109: 8.25975496e-11 + art_sys_110: 3.47773333e-12 + art_sys_111: 3.56775094e-10 + art_sys_112: -3.09321503e-05 + art_sys_113: 7.44700535e-13 + art_sys_114: -1.71969811e-10 + art_sys_115: -1.39820579e-05 + art_sys_116: -1.88869286e-10 + art_sys_117: 5.15185317e-13 + art_sys_118: -2.18112330e-10 + art_sys_119: -5.84312383e-06 + art_sys_120: 7.59585038e-11 + art_sys_121: -9.21784952e-11 + art_sys_122: -1.37617084e-10 + art_sys_123: -2.16195299e-06 + art_sys_124: -3.29732143e-12 + art_sys_125: 2.14719100e-11 + art_sys_126: -3.60059527e-10 + art_sys_127: -5.69904022e-11 + art_sys_128: -8.23887433e-07 + art_sys_129: 2.82542895e-07 + art_sys_130: 9.52723243e-08 + art_sys_131: 2.99760205e-08 + art_sys_132: 9.47950135e-11 + art_sys_133: 6.37168016e-11 + art_sys_134: -8.92505128e-09 + art_sys_135: -1.06783008e-10 + art_sys_136: -3.00770438e-09 + art_sys_137: -3.90522559e-11 + art_sys_138: 3.64589888e-10 + art_sys_139: -1.66443552e-11 + art_sys_140: -1.90377174e-14 + art_sys_141: 7.34481584e-11 + art_sys_142: 0.0 + art_sys_143: -7.20849909e-12 + art_sys_144: -4.06267939e-11 + art_sys_145: -5.40642979e-11 + art_sys_146: 2.98587575e-13 + art_sys_147: -8.74454785e-13 + art_sys_148: 4.78287124e-13 + art_sys_149: -3.52631223e-13 + art_sys_150: 2.45927631e-14 + art_sys_151: 7.82242775e-15 + art_sys_152: 1.94686910e-14 + art_sys_153: 1.36237384e-15 + art_sys_154: 1.83938587e-14 + art_sys_155: -4.25236553e-14 + art_sys_156: -1.89897328e-13 + art_sys_157: -1.14600163e-13 + art_sys_158: 0.0 + art_sys_159: 2.43150049e-12 + art_sys_160: 2.43150049e-12 + art_sys_161: 1.62764880e-13 + art_sys_162: -6.01593803e-26 + art_sys_163: -0.0 + art_sys_164: -3.66932941e-26 + art_sys_165: -1.40117760e-21 + art_sys_166: 9.07339608e-22 + art_sys_167: 1.33364011e-23 + art_sys_168: 3.15485729e-23 + art_sys_169: 1.05239451e-23 + art_sys_170: -3.87527228e-23 + art_sys_171: -3.39541362e-22 + art_sys_172: 3.64055423e-22 + art_sys_173: -5.70378297e-23 + art_sys_174: -6.45471220e-26 + art_sys_175: 3.23506989e-24 + art_sys_176: -7.18839170e-24 + art_sys_177: 1.36857164e-24 + art_sys_178: 5.23227663e-25 + art_sys_179: -7.46477593e-24 + art_sys_180: -8.17956904e-25 + art_sys_181: 1.03073875e-25 + art_sys_182: -6.62956797e-26 + art_sys_183: -9.01687159e-28 + art_sys_184: -1.49721778e-28 + art_sys_185: -5.49607126e-27 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -23252,167 +23252,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: 1.12119230e-88 - art_sys_26: 5.87331771e-83 - art_sys_27: -3.68892282e-76 - art_sys_28: 2.20704547e-75 - art_sys_29: 8.47696635e-65 - art_sys_30: 6.88992588e-62 - art_sys_31: 3.22286606e-59 - art_sys_32: -3.84988717e-51 - art_sys_33: -1.15373311e-45 - art_sys_34: -1.16323700e-38 - art_sys_35: -8.15453828e-40 - art_sys_36: 2.44942889e-14 - art_sys_37: -2.99826674e-14 - art_sys_38: -3.38720262e-13 - art_sys_39: 1.84461428e-12 - art_sys_40: 2.69171659e-11 - art_sys_41: -1.36339122e-10 - art_sys_42: -1.89819955e-10 - art_sys_43: -8.71482329e-11 - art_sys_44: 7.52180847e-09 - art_sys_45: -3.47079233e-08 - art_sys_46: -1.21506716e-07 - art_sys_47: -2.22260662e-24 - art_sys_48: -1.27407841e-23 - art_sys_49: -1.60167000e-24 + art_sys_25: -6.98206869e-49 + art_sys_26: 1.78129762e-42 + art_sys_27: 9.25099285e-35 + art_sys_28: -2.26222716e-34 + art_sys_29: -2.44942889e-14 + art_sys_30: 2.99826674e-14 + art_sys_31: 3.38720262e-13 + art_sys_32: -1.84461428e-12 + art_sys_33: 2.69171659e-11 + art_sys_34: 1.36339122e-10 + art_sys_35: 1.89819955e-10 + art_sys_36: -1.03457224e-27 + art_sys_37: 5.44699707e-28 + art_sys_38: -8.71482329e-11 + art_sys_39: 8.27719438e-28 + art_sys_40: -1.48718476e-28 + art_sys_41: 1.12312565e-27 + art_sys_42: -7.52180847e-09 + art_sys_43: -6.60020099e-26 + art_sys_44: 3.47079233e-08 + art_sys_45: -3.99265487e-25 + art_sys_46: -2.84687949e-24 + art_sys_47: 1.21506716e-07 + art_sys_48: 6.07666628e-25 + art_sys_49: -5.46012261e-25 art_sys_50: -6.39759902e-07 - art_sys_51: -2.79280609e-06 - art_sys_52: -4.63212848e-23 - art_sys_53: 1.17671118e-22 - art_sys_54: 7.43234452e-23 - art_sys_55: -3.87844107e-23 - art_sys_56: -3.93841808e-23 - art_sys_57: 2.79855429e-06 - art_sys_58: -1.12840775e-05 - art_sys_59: -1.07221910e-22 - art_sys_60: -1.80086843e-21 - art_sys_61: -2.90563569e-05 - art_sys_62: 5.38913771e-23 - art_sys_63: 8.96918607e-22 - art_sys_64: -7.07844944e-15 - art_sys_65: -1.31014635e-14 - art_sys_66: 1.88250348e-15 - art_sys_67: -2.01938764e-15 - art_sys_68: 1.47631674e-15 - art_sys_69: 2.55852943e-16 - art_sys_70: 4.70551478e-16 - art_sys_71: 5.48926677e-16 - art_sys_72: -1.12386683e-16 - art_sys_73: -2.09418669e-16 - art_sys_74: -8.41069823e-06 - art_sys_75: 5.13019790e-16 - art_sys_76: -9.25690552e-15 - art_sys_77: -3.12522043e-14 - art_sys_78: -7.03627977e-16 - art_sys_79: 2.34237411e-16 - art_sys_80: -2.19110056e-15 - art_sys_81: -2.45631975e-16 - art_sys_82: 1.16744228e-16 - art_sys_83: -3.63550023e-16 - art_sys_84: 1.49966952e-15 - art_sys_85: 5.64489705e-16 - art_sys_86: -2.85583231e-17 - art_sys_87: -5.46695941e-11 - art_sys_88: 1.53011535e-12 - art_sys_89: -2.77248937e-17 - art_sys_90: -2.11410471e-13 - art_sys_91: -6.61565347e-18 - art_sys_92: 5.07320647e-18 - art_sys_93: -9.12347935e-19 - art_sys_94: 1.06033993e-11 - art_sys_95: -1.42816936e-04 - art_sys_96: -3.00141198e-13 - art_sys_97: 1.55115648e-13 - art_sys_98: 1.17718655e-04 - art_sys_99: 4.57367992e-12 - art_sys_100: 3.81916310e-04 - art_sys_101: 3.98178667e-10 - art_sys_102: 1.61832747e-05 - art_sys_103: 2.71525338e-10 - art_sys_104: -5.14245059e-11 - art_sys_105: 2.29226565e-12 - art_sys_106: 2.14322579e-10 - art_sys_107: -4.34179055e-05 - art_sys_108: 3.71311010e-12 - art_sys_109: 1.43715870e-11 - art_sys_110: 6.82749037e-05 - art_sys_111: -3.52592923e-11 - art_sys_112: -1.39619843e-09 - art_sys_113: 7.02464918e-12 - art_sys_114: 7.40281663e-12 - art_sys_115: 3.88150657e-11 - art_sys_116: 4.35526794e-05 - art_sys_117: 2.72647651e-11 - art_sys_118: -1.10760437e-10 - art_sys_119: -2.28956337e-05 - art_sys_120: -2.07573808e-10 - art_sys_121: -3.81301626e-12 - art_sys_122: 1.39581126e-10 - art_sys_123: -1.04793989e-05 - art_sys_124: 7.30770218e-13 - art_sys_125: 4.21838363e-12 - art_sys_126: 1.12340654e-10 - art_sys_127: 4.11867752e-06 - art_sys_128: -1.10547740e-10 - art_sys_129: 9.00932254e-14 - art_sys_130: -1.63767532e-06 - art_sys_131: -2.79022765e-12 - art_sys_132: 6.00791858e-10 - art_sys_133: -5.76816611e-07 - art_sys_134: -6.69154713e-10 - art_sys_135: -3.23975547e-11 - art_sys_136: -2.88551641e-13 - art_sys_137: -2.00441165e-07 - art_sys_138: -1.25037351e-10 - art_sys_139: -6.31827699e-08 - art_sys_140: -5.18762378e-14 - art_sys_141: -4.00825030e-10 - art_sys_142: 9.07555687e-11 - art_sys_143: -1.96823254e-08 - art_sys_144: 7.02344458e-13 - art_sys_145: 9.55227006e-11 - art_sys_146: -6.73893585e-09 - art_sys_147: 1.63469312e-13 - art_sys_148: 1.34616580e-14 - art_sys_149: -1.20715815e-11 - art_sys_150: -8.68236272e-10 - art_sys_151: 1.76444604e-11 - art_sys_152: -4.85807512e-14 - art_sys_153: 9.36884426e-11 - art_sys_154: -2.31346429e-11 - art_sys_155: 3.71897306e-14 - art_sys_156: 0.0 - art_sys_157: 1.99549624e-11 - art_sys_158: 0.0 - art_sys_159: 3.43215802e-12 - art_sys_160: 7.07751128e-13 - art_sys_161: -5.15716069e-13 - art_sys_162: -5.15716069e-13 - art_sys_163: -3.06635004e-13 - art_sys_164: -3.06635004e-13 - art_sys_165: 3.85187089e-27 - art_sys_166: -1.28977046e-27 - art_sys_167: -0.0 - art_sys_168: 2.46446116e-21 - art_sys_169: 2.45764506e-21 - art_sys_170: 1.67950074e-22 - art_sys_171: 1.34704256e-21 - art_sys_172: 1.96745147e-22 - art_sys_173: 8.71255896e-24 - art_sys_174: 5.23733442e-24 - art_sys_175: -1.16983346e-24 - art_sys_176: 1.41014567e-24 - art_sys_177: -3.37137948e-23 - art_sys_178: 1.60737083e-24 - art_sys_179: -1.02280365e-26 - art_sys_180: 8.13686172e-26 - art_sys_181: 3.48091607e-24 - art_sys_182: 2.05345943e-25 - art_sys_183: 4.52736164e-27 - art_sys_184: -1.87397645e-27 - art_sys_185: -5.25900575e-29 + art_sys_51: 2.79280609e-06 + art_sys_52: 2.34355816e-22 + art_sys_53: 8.12503125e-23 + art_sys_54: 1.30017933e-22 + art_sys_55: 8.68038421e-23 + art_sys_56: -1.40072736e-23 + art_sys_57: -4.61825634e-14 + art_sys_58: 2.98977012e-14 + art_sys_59: 5.39384165e-15 + art_sys_60: -2.79855429e-06 + art_sys_61: 7.22927763e-16 + art_sys_62: 3.01203192e-15 + art_sys_63: 5.57514508e-16 + art_sys_64: -2.01194295e-15 + art_sys_65: 3.73362559e-15 + art_sys_66: 1.12840775e-05 + art_sys_67: -3.33788779e-16 + art_sys_68: 4.53752207e-16 + art_sys_69: -2.90563567e-05 + art_sys_70: 2.53583733e-18 + art_sys_71: 9.20733164e-17 + art_sys_72: 8.28719363e-17 + art_sys_73: -8.41069824e-06 + art_sys_74: -3.94800355e-14 + art_sys_75: 4.22995573e-16 + art_sys_76: 9.08871835e-15 + art_sys_77: -7.48276432e-15 + art_sys_78: 1.21853160e-14 + art_sys_79: 2.00558186e-16 + art_sys_80: -1.52461775e-14 + art_sys_81: -2.06290081e-15 + art_sys_82: -5.89043279e-16 + art_sys_83: 4.99938025e-16 + art_sys_84: 2.59760061e-14 + art_sys_85: -1.47057445e-16 + art_sys_86: -3.22821868e-16 + art_sys_87: 8.18184598e-13 + art_sys_88: 5.89986879e-12 + art_sys_89: -9.81761805e-12 + art_sys_90: 4.39609342e-14 + art_sys_91: -4.30315016e-15 + art_sys_92: -1.42817166e-04 + art_sys_93: -6.90581572e-15 + art_sys_94: -1.17718579e-04 + art_sys_95: -1.73416760e-13 + art_sys_96: -2.89677517e-12 + art_sys_97: -3.81915063e-04 + art_sys_98: -2.51374362e-12 + art_sys_99: 3.26764537e-13 + art_sys_100: 1.61831925e-05 + art_sys_101: 3.42915138e-11 + art_sys_102: 2.43915168e-12 + art_sys_103: -4.34176713e-05 + art_sys_104: -1.38921418e-11 + art_sys_105: 9.22364016e-12 + art_sys_106: -3.54883386e-12 + art_sys_107: -6.96797167e-12 + art_sys_108: -6.82741508e-05 + art_sys_109: 2.01107174e-10 + art_sys_110: -7.05516296e-12 + art_sys_111: 1.48949683e-09 + art_sys_112: 4.35514924e-05 + art_sys_113: -1.49818471e-12 + art_sys_114: -1.18671964e-09 + art_sys_115: 2.28962182e-05 + art_sys_116: 2.36896221e-10 + art_sys_117: -1.05561002e-12 + art_sys_118: -1.38052487e-09 + art_sys_119: 1.04799970e-05 + art_sys_120: 1.62236665e-10 + art_sys_121: 1.26053715e-10 + art_sys_122: 9.13997351e-11 + art_sys_123: 4.11806784e-06 + art_sys_124: 4.77162154e-12 + art_sys_125: -2.58187054e-11 + art_sys_126: 5.83705238e-10 + art_sys_127: 7.92113656e-11 + art_sys_128: 1.63983745e-06 + art_sys_129: -5.79143432e-07 + art_sys_130: -1.99443808e-07 + art_sys_131: -6.37095453e-08 + art_sys_132: -1.30270617e-10 + art_sys_133: -1.23965058e-10 + art_sys_134: 1.91357093e-08 + art_sys_135: 1.58120951e-10 + art_sys_136: 6.49427207e-09 + art_sys_137: 6.64150058e-11 + art_sys_138: -7.92205351e-10 + art_sys_139: 3.61699977e-11 + art_sys_140: 2.22817805e-14 + art_sys_141: -1.56123312e-10 + art_sys_142: -0.0 + art_sys_143: 1.21094039e-11 + art_sys_144: 8.47629499e-11 + art_sys_145: 1.15373649e-10 + art_sys_146: -6.10456919e-13 + art_sys_147: 1.82476759e-12 + art_sys_148: -2.43570347e-13 + art_sys_149: 7.87240708e-13 + art_sys_150: -4.92300401e-14 + art_sys_151: -2.53636889e-14 + art_sys_152: -4.60222163e-14 + art_sys_153: -3.16678379e-15 + art_sys_154: -3.70065735e-14 + art_sys_155: 8.73247195e-14 + art_sys_156: 4.04544551e-13 + art_sys_157: 2.46759322e-13 + art_sys_158: -0.0 + art_sys_159: -5.36518273e-12 + art_sys_160: -5.36518273e-12 + art_sys_161: -3.18282737e-13 + art_sys_162: 1.17428200e-25 + art_sys_163: 0.0 + art_sys_164: 7.15895422e-26 + art_sys_165: 3.27067204e-21 + art_sys_166: -1.82247136e-21 + art_sys_167: -7.16431659e-23 + art_sys_168: -5.17816026e-23 + art_sys_169: -1.57324819e-23 + art_sys_170: 6.84113793e-23 + art_sys_171: 7.11944536e-22 + art_sys_172: -7.64061670e-22 + art_sys_173: 1.18029608e-22 + art_sys_174: 1.37219676e-25 + art_sys_175: -7.01457155e-24 + art_sys_176: 1.55163097e-23 + art_sys_177: -2.92764215e-24 + art_sys_178: -1.08666603e-24 + art_sys_179: 1.55425721e-23 + art_sys_180: 1.70207265e-24 + art_sys_181: -2.18567092e-25 + art_sys_182: 1.39065733e-25 + art_sys_183: 1.91611161e-27 + art_sys_184: 3.17692356e-28 + art_sys_185: 1.11960135e-26 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -23543,167 +23543,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: 1.09980917e-89 - art_sys_26: 5.76130310e-84 - art_sys_27: -3.61856851e-77 - art_sys_28: 2.16495319e-76 - art_sys_29: 8.31529554e-66 - art_sys_30: 6.75852275e-63 - art_sys_31: 3.16140028e-60 - art_sys_32: -3.77646298e-52 - art_sys_33: -1.13172937e-46 - art_sys_34: -1.14105200e-39 - art_sys_35: -7.99901675e-41 - art_sys_36: 2.40470508e-15 - art_sys_37: -1.36851745e-14 - art_sys_38: -6.40076687e-14 - art_sys_39: 2.05538946e-13 - art_sys_40: 4.66158910e-12 - art_sys_41: -4.02978104e-12 - art_sys_42: -2.89364483e-11 - art_sys_43: -7.04253291e-11 - art_sys_44: 3.20236087e-09 - art_sys_45: -8.74566646e-09 - art_sys_46: -3.79072572e-08 - art_sys_47: -7.18178978e-25 - art_sys_48: -6.08388147e-25 - art_sys_49: -3.87069519e-25 + art_sys_25: -6.85458368e-50 + art_sys_26: 1.74877305e-43 + art_sys_27: 9.08207975e-36 + art_sys_28: -2.22092135e-35 + art_sys_29: -2.40470508e-15 + art_sys_30: 1.36851745e-14 + art_sys_31: 6.40076687e-14 + art_sys_32: -2.05538946e-13 + art_sys_33: 4.66158910e-12 + art_sys_34: 4.02978104e-12 + art_sys_35: 2.89364483e-11 + art_sys_36: -1.17726101e-28 + art_sys_37: 3.72668956e-28 + art_sys_38: -7.04253291e-11 + art_sys_39: 6.85909416e-28 + art_sys_40: -2.46520001e-28 + art_sys_41: 6.12192889e-28 + art_sys_42: -3.20236087e-09 + art_sys_43: -2.78198774e-26 + art_sys_44: 8.74566646e-09 + art_sys_45: -1.29216583e-25 + art_sys_46: -8.39998892e-25 + art_sys_47: 3.79072572e-08 + art_sys_48: 7.10661562e-26 + art_sys_49: -2.34745835e-25 art_sys_50: -3.70664342e-08 - art_sys_51: -6.16399893e-07 - art_sys_52: -1.17685028e-23 - art_sys_53: 2.55984033e-23 - art_sys_54: 1.47808898e-23 - art_sys_55: -1.11371674e-23 - art_sys_56: -7.92899679e-24 - art_sys_57: 1.10268596e-06 - art_sys_58: -3.14835193e-07 - art_sys_59: 1.09288399e-23 - art_sys_60: -4.25556121e-23 - art_sys_61: -7.66249814e-06 - art_sys_62: -3.42550954e-23 - art_sys_63: 9.90969299e-22 - art_sys_64: 4.72157533e-14 - art_sys_65: -7.75254970e-16 - art_sys_66: -4.14931844e-15 - art_sys_67: -1.37722999e-15 - art_sys_68: -1.62458949e-15 - art_sys_69: -8.77757124e-16 - art_sys_70: 2.55932481e-16 - art_sys_71: -9.99543076e-16 - art_sys_72: 3.11843837e-16 - art_sys_73: 5.19534935e-16 - art_sys_74: -6.62341450e-06 - art_sys_75: -9.54302144e-16 - art_sys_76: -5.91663896e-14 - art_sys_77: -2.87744326e-14 - art_sys_78: 1.56628515e-15 - art_sys_79: -4.20917476e-16 - art_sys_80: -4.87122432e-15 - art_sys_81: 4.74109029e-16 - art_sys_82: 9.19433798e-17 - art_sys_83: 1.48918441e-15 - art_sys_84: -9.09816791e-17 - art_sys_85: 5.74458644e-16 - art_sys_86: 2.85652802e-16 - art_sys_87: -2.19483929e-11 - art_sys_88: -3.75537895e-13 - art_sys_89: 5.28477508e-17 - art_sys_90: 1.09277808e-13 - art_sys_91: -5.20567748e-18 - art_sys_92: 2.61675203e-17 - art_sys_93: 1.85404226e-17 - art_sys_94: -1.49966518e-11 - art_sys_95: -1.90181896e-05 - art_sys_96: -3.99708939e-14 - art_sys_97: 2.06460254e-14 - art_sys_98: -9.10327766e-05 - art_sys_99: -7.41005279e-12 - art_sys_100: 1.53030128e-04 - art_sys_101: 1.57440157e-10 - art_sys_102: 2.63800562e-04 - art_sys_103: 1.12306103e-10 - art_sys_104: -1.11067091e-11 - art_sys_105: -4.35386613e-12 - art_sys_106: 3.42562657e-09 - art_sys_107: 4.76284697e-06 - art_sys_108: -7.04942309e-12 - art_sys_109: -2.73073644e-11 - art_sys_110: -3.36855140e-05 - art_sys_111: 7.19608142e-11 - art_sys_112: 6.87010248e-10 - art_sys_113: 1.14850565e-10 - art_sys_114: -1.44251768e-11 - art_sys_115: 5.54555689e-11 - art_sys_116: -5.16242533e-05 - art_sys_117: -5.40586215e-11 - art_sys_118: -1.44949375e-11 - art_sys_119: 3.23878744e-05 - art_sys_120: 1.21539130e-10 - art_sys_121: 7.37144160e-12 - art_sys_122: -3.48836411e-10 - art_sys_123: 1.72000553e-05 - art_sys_124: 7.10098502e-11 - art_sys_125: -8.60711737e-12 - art_sys_126: -1.57320888e-10 - art_sys_127: -7.39442374e-06 - art_sys_128: 5.80824244e-11 - art_sys_129: -2.47489078e-13 - art_sys_130: 3.11308840e-06 - art_sys_131: 5.84334991e-12 - art_sys_132: -2.76043547e-10 - art_sys_133: 1.14563104e-06 - art_sys_134: 9.55108391e-10 - art_sys_135: 1.25345818e-11 - art_sys_136: 6.29991531e-13 - art_sys_137: 4.09369899e-07 - art_sys_138: 1.96254025e-10 - art_sys_139: 1.31898922e-07 - art_sys_140: 9.54831847e-14 - art_sys_141: 8.15311610e-10 - art_sys_142: -1.28260499e-10 - art_sys_143: 4.15013111e-08 - art_sys_144: -1.29663212e-12 - art_sys_145: -1.46185509e-10 - art_sys_146: 1.43453631e-08 - art_sys_147: -3.46746033e-13 - art_sys_148: -2.80656337e-14 - art_sys_149: 6.85936845e-12 - art_sys_150: 1.87012263e-09 - art_sys_151: -2.47164627e-11 - art_sys_152: 1.09654828e-13 - art_sys_153: -2.00168622e-10 - art_sys_154: 1.14354335e-11 - art_sys_155: -8.10509327e-14 - art_sys_156: -0.0 - art_sys_157: -2.58050513e-11 - art_sys_158: -0.0 - art_sys_159: -4.16868454e-12 - art_sys_160: -9.49819427e-13 - art_sys_161: 1.12223764e-12 - art_sys_162: 1.12223764e-12 - art_sys_163: 3.66354423e-13 - art_sys_164: 3.66354423e-13 - art_sys_165: -5.45677855e-27 - art_sys_166: 1.85007331e-27 - art_sys_167: 0.0 - art_sys_168: -5.66506694e-21 - art_sys_169: -5.20751047e-21 - art_sys_170: -2.16687730e-22 - art_sys_171: -2.66243223e-21 - art_sys_172: -4.02583973e-22 - art_sys_173: -1.59510586e-23 - art_sys_174: -9.52960470e-24 - art_sys_175: 2.47766821e-24 - art_sys_176: -2.94717874e-24 - art_sys_177: 6.90385724e-23 - art_sys_178: -3.07773891e-24 - art_sys_179: 2.20926850e-26 - art_sys_180: -9.90610700e-26 - art_sys_181: -7.03447358e-24 - art_sys_182: -4.38477877e-25 - art_sys_183: -9.51514065e-27 - art_sys_184: 3.91464843e-27 - art_sys_185: 1.11137944e-28 + art_sys_51: 6.16399893e-07 + art_sys_52: 4.39065894e-23 + art_sys_53: 1.83892962e-23 + art_sys_54: 2.79601647e-23 + art_sys_55: 1.94802936e-23 + art_sys_56: 6.40489633e-25 + art_sys_57: 6.36801134e-14 + art_sys_58: -2.90060512e-14 + art_sys_59: -2.54754489e-15 + art_sys_60: -1.10268596e-06 + art_sys_61: 7.82556782e-16 + art_sys_62: -3.63633872e-15 + art_sys_63: -2.20617758e-15 + art_sys_64: 4.56977050e-15 + art_sys_65: -6.32512723e-15 + art_sys_66: 3.14835193e-07 + art_sys_67: 3.64290174e-16 + art_sys_68: -8.29605962e-16 + art_sys_69: -7.66249808e-06 + art_sys_70: 2.36963123e-21 + art_sys_71: 2.73320018e-18 + art_sys_72: 2.82795841e-18 + art_sys_73: -6.62341450e-06 + art_sys_74: -1.04091412e-14 + art_sys_75: -8.47918985e-16 + art_sys_76: -2.70366640e-14 + art_sys_77: -5.70197502e-14 + art_sys_78: -3.06733194e-16 + art_sys_79: -3.52264078e-16 + art_sys_80: -4.03235225e-15 + art_sys_81: -1.30793758e-15 + art_sys_82: -3.82227338e-16 + art_sys_83: 1.76731286e-15 + art_sys_84: -1.83123825e-14 + art_sys_85: 1.75989644e-16 + art_sys_86: 2.85507496e-17 + art_sys_87: -8.84534403e-14 + art_sys_88: -7.12195415e-12 + art_sys_89: 1.38797277e-11 + art_sys_90: 1.15939734e-14 + art_sys_91: -3.25406355e-15 + art_sys_92: -1.90180292e-05 + art_sys_93: -1.78761259e-15 + art_sys_94: 9.10327921e-05 + art_sys_95: -7.84451300e-15 + art_sys_96: 4.76488997e-12 + art_sys_97: -1.53029615e-04 + art_sys_98: 1.94345975e-12 + art_sys_99: -9.05774707e-14 + art_sys_100: 2.63799264e-04 + art_sys_101: 1.34490612e-11 + art_sys_102: -4.28003154e-12 + art_sys_103: 4.76275560e-06 + art_sys_104: -5.70999600e-12 + art_sys_105: -1.74202377e-11 + art_sys_106: -4.91270117e-12 + art_sys_107: 3.81514694e-12 + art_sys_108: 3.36851425e-05 + art_sys_109: -8.94324649e-11 + art_sys_110: 1.37996890e-11 + art_sys_111: 5.99071546e-10 + art_sys_112: -5.16223905e-05 + art_sys_113: 2.89413431e-12 + art_sys_114: -4.47195029e-10 + art_sys_115: -3.23886782e-05 + art_sys_116: -1.21965321e-10 + art_sys_117: 2.09396113e-12 + art_sys_118: -6.27185183e-10 + art_sys_119: -1.72010379e-05 + art_sys_120: 8.20899473e-11 + art_sys_121: -1.43346869e-10 + art_sys_122: -3.67723729e-12 + art_sys_123: -7.39322169e-06 + art_sys_124: -3.46913261e-12 + art_sys_125: 2.34051443e-11 + art_sys_126: -8.18942795e-10 + art_sys_127: -9.21518600e-11 + art_sys_128: -3.11684482e-06 + art_sys_129: 1.14991332e-06 + art_sys_130: 4.07490546e-07 + art_sys_131: 1.32893510e-07 + art_sys_132: 1.49029083e-10 + art_sys_133: 2.29879374e-10 + art_sys_134: -4.04599158e-08 + art_sys_135: -1.96693343e-10 + art_sys_136: -1.38532862e-08 + art_sys_137: -1.06791211e-10 + art_sys_138: 1.70504118e-09 + art_sys_139: -7.78717376e-11 + art_sys_140: 1.21695465e-14 + art_sys_141: 3.28377830e-10 + art_sys_142: 0.0 + art_sys_143: -2.20992568e-11 + art_sys_144: -1.74567192e-10 + art_sys_145: -2.43750859e-10 + art_sys_146: 1.20868040e-12 + art_sys_147: -3.70978264e-12 + art_sys_148: -1.48071164e-12 + art_sys_149: -1.75083962e-12 + art_sys_150: 9.59015230e-14 + art_sys_151: 7.46015796e-14 + art_sys_152: 1.08232342e-13 + art_sys_153: 7.32204452e-15 + art_sys_154: 7.20660927e-14 + art_sys_155: -1.75090594e-13 + art_sys_156: -8.53448506e-13 + art_sys_157: -5.26484073e-13 + art_sys_158: 0.0 + art_sys_159: 1.16897303e-11 + art_sys_160: 1.16897303e-11 + art_sys_161: 5.94108711e-13 + art_sys_162: -2.18710074e-25 + art_sys_163: -0.0 + art_sys_164: -1.33278872e-25 + art_sys_165: -7.58515367e-21 + art_sys_166: 3.54430786e-21 + art_sys_167: 2.60686860e-22 + art_sys_168: 6.94231810e-23 + art_sys_169: 1.57282048e-23 + art_sys_170: -1.08594609e-22 + art_sys_171: -1.45893182e-21 + art_sys_172: 1.56708390e-21 + art_sys_173: -2.38117262e-22 + art_sys_174: -2.88604337e-25 + art_sys_175: 1.50566871e-23 + art_sys_176: -3.30754848e-23 + art_sys_177: 6.17351337e-24 + art_sys_178: 2.19627646e-24 + art_sys_179: -3.14927015e-23 + art_sys_180: -3.45427402e-24 + art_sys_181: 4.54855076e-25 + art_sys_182: -2.84710914e-25 + art_sys_183: -3.99277595e-27 + art_sys_184: -6.63308707e-28 + art_sys_185: -2.21307069e-26 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -23834,167 +23834,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: 7.89233709e-91 - art_sys_26: 4.13436690e-85 - art_sys_27: -2.59671981e-78 - art_sys_28: 1.55359138e-77 - art_sys_29: 5.96713662e-67 - art_sys_30: 4.84998139e-64 - art_sys_31: 2.26865146e-61 - art_sys_32: -2.71002641e-53 - art_sys_33: -8.12139960e-48 - art_sys_34: -8.18829970e-41 - art_sys_35: -5.74017190e-42 - art_sys_36: 1.72685773e-16 - art_sys_37: -1.63984776e-15 - art_sys_38: -7.24560386e-15 - art_sys_39: 1.78684731e-14 - art_sys_40: 5.11476579e-13 - art_sys_41: 1.46347879e-12 - art_sys_42: -1.05153403e-12 - art_sys_43: -7.04828103e-12 - art_sys_44: 4.81022244e-10 - art_sys_45: -6.41675609e-10 - art_sys_46: -3.84238151e-09 - art_sys_47: -7.66463838e-26 - art_sys_48: 3.64473402e-26 - art_sys_49: -3.44542651e-26 + art_sys_25: -4.92238757e-51 + art_sys_26: 1.25582226e-44 + art_sys_27: 6.52198857e-37 + art_sys_28: -1.59487959e-36 + art_sys_29: -1.72685773e-16 + art_sys_30: 1.63984776e-15 + art_sys_31: 7.24560386e-15 + art_sys_32: -1.78684731e-14 + art_sys_33: 5.11476579e-13 + art_sys_34: -1.46347879e-12 + art_sys_35: 1.05153403e-12 + art_sys_36: -8.35234246e-31 + art_sys_37: 3.51530984e-29 + art_sys_38: -7.04828103e-12 + art_sys_39: 6.94340034e-29 + art_sys_40: -2.73819622e-29 + art_sys_41: 5.99687476e-29 + art_sys_42: -4.81022244e-10 + art_sys_43: -4.28930419e-27 + art_sys_44: 6.41675609e-10 + art_sys_45: -1.29170627e-26 + art_sys_46: -7.91811583e-26 + art_sys_47: 3.84238151e-09 + art_sys_48: 1.14300546e-27 + art_sys_49: -1.94300839e-26 art_sys_50: 1.90505265e-09 - art_sys_51: -4.46553944e-08 - art_sys_52: -9.15337865e-25 - art_sys_53: 1.84581022e-24 - art_sys_54: 1.01137632e-24 - art_sys_55: -9.18248847e-25 - art_sys_56: -5.89122134e-25 - art_sys_57: 1.05098200e-07 - art_sys_58: 5.38398827e-07 - art_sys_59: 7.64747559e-24 - art_sys_60: 4.69399048e-23 - art_sys_61: 1.59571097e-07 - art_sys_62: -8.54210285e-24 - art_sys_63: 1.06141145e-22 - art_sys_64: -7.44788485e-14 - art_sys_65: -1.16719708e-14 - art_sys_66: -8.31981777e-15 - art_sys_67: 3.69000784e-15 - art_sys_68: 3.42007265e-15 - art_sys_69: 2.25224629e-16 - art_sys_70: -9.32465251e-16 - art_sys_71: 1.87285589e-15 - art_sys_72: -5.42202429e-16 - art_sys_73: -8.75781201e-16 - art_sys_74: -5.64883630e-07 - art_sys_75: 1.70895366e-15 - art_sys_76: 9.68544300e-16 - art_sys_77: -6.59082277e-14 - art_sys_78: -1.95509154e-14 - art_sys_79: 7.48801954e-16 - art_sys_80: 3.26083930e-15 - art_sys_81: -8.50204157e-16 - art_sys_82: 7.84303896e-18 - art_sys_83: -1.34481337e-15 - art_sys_84: 1.08895482e-16 - art_sys_85: 1.12427550e-15 - art_sys_86: 1.73642391e-16 - art_sys_87: 6.92375860e-12 - art_sys_88: -5.31813061e-12 - art_sys_89: -4.31019401e-17 - art_sys_90: -5.08359921e-14 - art_sys_91: -4.42903701e-19 - art_sys_92: -9.23911550e-18 - art_sys_93: -2.58242032e-18 - art_sys_94: 1.79022216e-11 - art_sys_95: 1.73874760e-05 - art_sys_96: 3.65403208e-14 - art_sys_97: -1.88876709e-14 - art_sys_98: -3.59214557e-05 - art_sys_99: -2.17926341e-12 - art_sys_100: -4.84912837e-05 - art_sys_101: -5.08757283e-11 - art_sys_102: 1.32293647e-04 - art_sys_103: -3.39426328e-11 - art_sys_104: 4.66612031e-12 - art_sys_105: 7.80541416e-12 - art_sys_106: 1.71701370e-09 - art_sys_107: 1.90086170e-04 - art_sys_108: 1.26294409e-11 - art_sys_109: 4.89926477e-11 - art_sys_110: 5.31963548e-06 - art_sys_111: 3.91147305e-11 - art_sys_112: -1.02348510e-10 - art_sys_113: 5.77029967e-11 - art_sys_114: 2.67512532e-11 - art_sys_115: 2.01682983e-11 - art_sys_116: 2.70063001e-05 - art_sys_117: 1.02557415e-10 - art_sys_118: -5.52290733e-11 - art_sys_119: -3.86725571e-05 - art_sys_120: -3.62070040e-11 - art_sys_121: -1.34122858e-11 - art_sys_122: -1.22515267e-10 - art_sys_123: -2.44395783e-05 - art_sys_124: 4.27282950e-11 - art_sys_125: 1.70634925e-11 - art_sys_126: 2.01845552e-10 - art_sys_127: 1.21747763e-05 - art_sys_128: 1.31190321e-11 - art_sys_129: 6.58091864e-13 - art_sys_130: -5.58851144e-06 - art_sys_131: -1.20637554e-11 - art_sys_132: 1.30818474e-11 - art_sys_133: -2.17948041e-06 - art_sys_134: -1.15952067e-09 - art_sys_135: -2.71498030e-13 - art_sys_136: -1.38809822e-12 - art_sys_137: -8.12675003e-07 - art_sys_138: -2.50244222e-10 - art_sys_139: -2.69940236e-07 - art_sys_140: -1.59975903e-13 - art_sys_141: -1.61749251e-09 - art_sys_142: 1.35873333e-10 - art_sys_143: -8.61832818e-08 - art_sys_144: 2.23213253e-12 - art_sys_145: 2.09744315e-10 - art_sys_146: -3.02256807e-08 - art_sys_147: 7.27087567e-13 - art_sys_148: 5.72908472e-14 - art_sys_149: 2.32137593e-11 - art_sys_150: -4.00622395e-09 - art_sys_151: 2.08968151e-11 - art_sys_152: -2.49373269e-13 - art_sys_153: 4.27117215e-10 - art_sys_154: -1.81875326e-12 - art_sys_155: 1.73050853e-13 - art_sys_156: 0.0 - art_sys_157: 2.29283149e-11 - art_sys_158: 0.0 - art_sys_159: 1.39554758e-12 - art_sys_160: 8.84906154e-13 - art_sys_161: -2.37679638e-12 - art_sys_162: -2.37679638e-12 - art_sys_163: -7.71964035e-14 - art_sys_164: -7.71964035e-14 - art_sys_165: 4.76728225e-27 - art_sys_166: -1.69666820e-27 - art_sys_167: -0.0 - art_sys_168: 5.61633857e-21 - art_sys_169: 1.09264676e-20 - art_sys_170: 3.91742637e-22 - art_sys_171: 5.02576354e-21 - art_sys_172: 8.01547387e-22 - art_sys_173: 2.64031018e-23 - art_sys_174: 1.53675018e-23 - art_sys_175: -5.18787643e-24 - art_sys_176: 6.04308707e-24 - art_sys_177: -1.37489135e-22 - art_sys_178: 5.58269931e-24 - art_sys_179: -4.60746087e-26 - art_sys_180: 3.26873333e-26 - art_sys_181: 1.37362230e-23 - art_sys_182: 9.33538768e-25 - art_sys_183: 1.96576854e-26 - art_sys_184: -8.01874028e-27 - art_sys_185: -2.31585245e-28 + art_sys_51: 4.46553944e-08 + art_sys_52: 2.83790119e-24 + art_sys_53: 1.35556516e-24 + art_sys_54: 2.00234001e-24 + art_sys_55: 1.42430842e-24 + art_sys_56: 2.21144598e-25 + art_sys_57: -9.77013382e-14 + art_sys_58: -6.14813157e-15 + art_sys_59: 6.35201184e-15 + art_sys_60: -1.05098200e-07 + art_sys_61: -4.37524241e-15 + art_sys_62: 3.58760558e-15 + art_sys_63: 3.17673913e-15 + art_sys_64: -7.20263131e-15 + art_sys_65: 1.08217698e-14 + art_sys_66: -5.38398827e-07 + art_sys_67: -7.48208227e-16 + art_sys_68: 1.41971815e-15 + art_sys_69: 1.59571096e-07 + art_sys_70: -1.36121026e-19 + art_sys_71: -4.36366252e-18 + art_sys_72: -3.86173832e-18 + art_sys_73: -5.64883630e-07 + art_sys_74: 2.17210327e-16 + art_sys_75: 1.50729429e-15 + art_sys_76: -1.27425522e-15 + art_sys_77: -1.31338730e-14 + art_sys_78: -5.06811343e-15 + art_sys_79: 6.39215949e-16 + art_sys_80: 8.20977711e-17 + art_sys_81: -1.62616559e-15 + art_sys_82: -3.62157608e-16 + art_sys_83: -1.76317491e-16 + art_sys_84: -8.32210813e-15 + art_sys_85: -1.25872129e-16 + art_sys_86: 2.10048063e-17 + art_sys_87: -3.57014224e-12 + art_sys_88: 3.77027423e-12 + art_sys_89: -1.65450156e-11 + art_sys_90: -2.41312611e-16 + art_sys_91: -2.43496072e-16 + art_sys_92: 1.73875427e-05 + art_sys_93: 6.48045824e-17 + art_sys_94: 3.59214432e-05 + art_sys_95: 2.41839700e-14 + art_sys_96: -6.79899260e-12 + art_sys_97: 4.84911238e-05 + art_sys_98: 7.66928469e-13 + art_sys_99: -6.69401271e-14 + art_sys_100: 1.32293013e-04 + art_sys_101: -4.38565950e-12 + art_sys_102: 6.78178052e-12 + art_sys_103: 1.90085757e-04 + art_sys_104: 1.75000735e-12 + art_sys_105: 3.09845548e-11 + art_sys_106: -4.94415566e-14 + art_sys_107: 1.88769796e-12 + art_sys_108: -5.31957563e-06 + art_sys_109: -1.02966971e-10 + art_sys_110: -2.57474988e-11 + art_sys_111: -1.78557506e-10 + art_sys_112: 2.70034387e-05 + art_sys_113: -5.31211157e-12 + art_sys_114: 1.69417943e-10 + art_sys_115: 3.86734369e-05 + art_sys_116: 7.07643201e-11 + art_sys_117: -3.97869422e-12 + art_sys_118: 1.47135286e-10 + art_sys_119: 2.44409769e-05 + art_sys_120: 7.18121948e-11 + art_sys_121: 4.98453703e-11 + art_sys_122: -2.90516844e-10 + art_sys_123: 1.21725191e-05 + art_sys_124: 1.23434663e-11 + art_sys_125: -3.24763510e-12 + art_sys_126: 9.48935015e-10 + art_sys_127: 3.59381389e-11 + art_sys_128: 5.59436174e-06 + art_sys_129: -2.18682826e-06 + art_sys_130: -8.09360624e-07 + art_sys_131: -2.71711175e-07 + art_sys_132: -5.75121190e-11 + art_sys_133: -3.99342144e-10 + art_sys_134: 8.43007855e-08 + art_sys_135: 1.50697054e-10 + art_sys_136: 2.92596796e-08 + art_sys_137: 1.47230589e-10 + art_sys_138: -3.64476693e-09 + art_sys_139: 1.65758035e-10 + art_sys_140: -3.43824217e-15 + art_sys_141: -6.84283114e-10 + art_sys_142: -0.0 + art_sys_143: 3.71931780e-11 + art_sys_144: 3.53604166e-10 + art_sys_145: 5.10347785e-10 + art_sys_146: -2.29210957e-12 + art_sys_147: 7.31455603e-12 + art_sys_148: 8.10121202e-12 + art_sys_149: 3.88912785e-12 + art_sys_150: -1.79585203e-13 + art_sys_151: -2.06661142e-13 + art_sys_152: -2.53082349e-13 + art_sys_153: -1.69075708e-14 + art_sys_154: -1.34740804e-13 + art_sys_155: 3.41757240e-13 + art_sys_156: 1.78587406e-12 + art_sys_157: 1.11504489e-12 + art_sys_158: -0.0 + art_sys_159: -2.50591491e-11 + art_sys_160: -2.50591491e-11 + art_sys_161: -1.04739709e-12 + art_sys_162: 3.84395471e-25 + art_sys_163: 0.0 + art_sys_164: 2.34131178e-25 + art_sys_165: 1.76731260e-20 + art_sys_166: -6.57694045e-21 + art_sys_167: -8.21607889e-22 + art_sys_168: -4.61592309e-23 + art_sys_169: 1.09698582e-23 + art_sys_170: 1.43775909e-22 + art_sys_171: 2.91208760e-21 + art_sys_172: -3.13108854e-21 + art_sys_173: 4.66653129e-22 + art_sys_174: 6.01139710e-25 + art_sys_175: -3.21082272e-23 + art_sys_176: 6.98191760e-23 + art_sys_177: -1.28651676e-23 + art_sys_178: -4.29858517e-24 + art_sys_179: 6.17614486e-23 + art_sys_180: 6.80656855e-24 + art_sys_181: -9.29771715e-25 + art_sys_182: 5.67338397e-25 + art_sys_183: 8.14791633e-27 + art_sys_184: 1.36076553e-27 + art_sys_185: 4.23757408e-26 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -24125,167 +24125,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: 4.73841062e-92 - art_sys_26: 2.48219606e-86 - art_sys_27: -1.55902169e-79 - art_sys_28: 9.32747019e-79 - art_sys_29: 3.58255650e-68 - art_sys_30: 2.91183753e-65 - art_sys_31: 1.36205563e-62 - art_sys_32: -1.62704885e-54 - art_sys_33: -4.87593545e-49 - art_sys_34: -4.91610100e-42 - art_sys_35: -3.44629115e-43 - art_sys_36: 1.03774000e-17 - art_sys_37: -1.50695451e-16 - art_sys_38: -6.67817965e-16 - art_sys_39: 1.12660823e-15 - art_sys_40: 1.88515760e-14 - art_sys_41: 3.75752230e-13 - art_sys_42: 4.84528447e-13 - art_sys_43: 3.82553310e-13 - art_sys_44: 2.20535508e-11 - art_sys_45: 5.57666815e-11 - art_sys_46: 1.93101376e-10 - art_sys_47: 2.96291571e-27 - art_sys_48: -9.89101595e-27 - art_sys_49: 3.77880873e-27 + art_sys_25: -2.95806549e-52 + art_sys_26: 7.54675331e-46 + art_sys_27: 3.91933163e-38 + art_sys_28: -9.58428854e-38 + art_sys_29: -1.03774000e-17 + art_sys_30: 1.50695451e-16 + art_sys_31: 6.67817965e-16 + art_sys_32: -1.12660823e-15 + art_sys_33: 1.88515760e-14 + art_sys_34: -3.75752230e-13 + art_sys_35: -4.84528447e-13 + art_sys_36: 2.58726612e-30 + art_sys_37: -3.38910235e-30 + art_sys_38: 3.82553310e-13 + art_sys_39: -3.53774642e-30 + art_sys_40: 7.58560242e-31 + art_sys_41: -3.39528563e-30 + art_sys_42: -2.20535508e-11 + art_sys_43: -1.90472749e-28 + art_sys_44: -5.57666815e-11 + art_sys_45: 1.06336523e-27 + art_sys_46: 4.71837760e-27 + art_sys_47: -1.93101376e-10 + art_sys_48: 2.52935818e-28 + art_sys_49: 1.53052945e-27 art_sys_50: -4.26537697e-10 - art_sys_51: 6.72284257e-09 - art_sys_52: 1.41863847e-25 - art_sys_53: -2.74657609e-25 - art_sys_54: -1.43457268e-25 - art_sys_55: 1.43303777e-25 - art_sys_56: 5.19188818e-26 - art_sys_57: -1.75762656e-08 - art_sys_58: 1.51304798e-07 - art_sys_59: 1.44037373e-24 - art_sys_60: 1.71601827e-23 - art_sys_61: 4.29765044e-07 - art_sys_62: -3.28152168e-25 - art_sys_63: -4.02272924e-23 - art_sys_64: 1.51187362e-13 - art_sys_65: -2.51792933e-14 - art_sys_66: -1.02408559e-14 - art_sys_67: -6.96024133e-15 - art_sys_68: -7.47819335e-15 - art_sys_69: 2.13161120e-15 - art_sys_70: 3.36605155e-15 - art_sys_71: -1.85290463e-15 - art_sys_72: 6.55061040e-16 - art_sys_73: 1.33606342e-15 - art_sys_74: 3.15990475e-07 - art_sys_75: -2.71022821e-15 - art_sys_76: 2.85016000e-14 - art_sys_77: -1.36661893e-14 - art_sys_78: -6.28400835e-15 - art_sys_79: -1.23857693e-15 - art_sys_80: -1.89022890e-16 - art_sys_81: 1.40114038e-15 - art_sys_82: -4.38607623e-18 - art_sys_83: 1.75084367e-16 - art_sys_84: -2.79427365e-16 - art_sys_85: 7.56799702e-16 - art_sys_86: 7.56829732e-17 - art_sys_87: 5.02762158e-12 - art_sys_88: -2.11203283e-12 - art_sys_89: 2.66466429e-17 - art_sys_90: -4.78296164e-13 - art_sys_91: 2.48790819e-19 - art_sys_92: 1.07128870e-17 - art_sys_93: -2.22662412e-17 - art_sys_94: -9.52373410e-12 - art_sys_95: 4.94321084e-06 - art_sys_96: 1.03884658e-14 - art_sys_97: -5.36885708e-15 - art_sys_98: 7.23814081e-06 - art_sys_99: 6.91840861e-13 - art_sys_100: -3.50739343e-05 - art_sys_101: -3.62923581e-11 - art_sys_102: -2.73190850e-05 - art_sys_103: -2.53942070e-11 - art_sys_104: 2.21666006e-12 - art_sys_105: -1.27328978e-11 - art_sys_106: -3.54841761e-10 - art_sys_107: 1.00561125e-04 - art_sys_108: -2.05758189e-11 - art_sys_109: -8.00729567e-11 - art_sys_110: 1.42775000e-04 - art_sys_111: 4.36522414e-14 - art_sys_112: -2.91246379e-09 - art_sys_113: -1.18356764e-11 - art_sys_114: -4.60494630e-11 - art_sys_115: -3.14082414e-12 - art_sys_116: -6.17435191e-06 - art_sys_117: -1.82432141e-10 - art_sys_118: -2.56801916e-10 - art_sys_119: 2.05900867e-05 - art_sys_120: -3.78837754e-10 - art_sys_121: 2.24698110e-11 - art_sys_122: 3.58244286e-10 - art_sys_123: 2.91543351e-05 - art_sys_124: -2.15970045e-11 - art_sys_125: -3.22426007e-11 - art_sys_126: -9.66571893e-11 - art_sys_127: -1.72683586e-05 - art_sys_128: -1.65109773e-10 - art_sys_129: -1.66504990e-12 - art_sys_130: 9.14293439e-06 - art_sys_131: 2.42487561e-11 - art_sys_132: 1.32725136e-09 - art_sys_133: 3.89194570e-06 - art_sys_134: 6.58414520e-10 - art_sys_135: -6.40202353e-11 - art_sys_136: 3.04823772e-12 - art_sys_137: 1.53437778e-06 - art_sys_138: 2.87720901e-10 - art_sys_139: 5.33409086e-07 - art_sys_140: 2.20621052e-13 - art_sys_141: 3.08547305e-09 - art_sys_142: -1.42564915e-10 - art_sys_143: 1.73933222e-07 - art_sys_144: -3.43586650e-12 - art_sys_145: -1.34976964e-10 - art_sys_146: 6.22285131e-08 - art_sys_147: -1.48648834e-12 - art_sys_148: -1.11941779e-13 - art_sys_149: -5.98862417e-11 - art_sys_150: 8.44708176e-09 - art_sys_151: 2.88832517e-11 - art_sys_152: 5.69809847e-13 - art_sys_153: -9.03693163e-10 - art_sys_154: -4.84634231e-11 - art_sys_155: -3.49233298e-13 - art_sys_156: -0.0 - art_sys_157: -1.00363596e-11 - art_sys_158: -0.0 - art_sys_159: 1.32480666e-11 - art_sys_160: -1.50847924e-13 - art_sys_161: 4.80505655e-12 - art_sys_162: 4.80505655e-12 - art_sys_163: -1.41960204e-12 - art_sys_164: -1.41960204e-12 - art_sys_165: 5.66606805e-27 - art_sys_166: -1.58122750e-27 - art_sys_167: -0.0 - art_sys_168: -1.14552162e-20 - art_sys_169: -2.24301218e-20 - art_sys_170: 3.46488891e-24 - art_sys_171: -8.85368558e-21 - art_sys_172: -1.52798896e-21 - art_sys_173: -3.55123416e-23 - art_sys_174: -1.90484924e-23 - art_sys_175: 1.06092130e-23 - art_sys_176: -1.19805479e-23 - art_sys_177: 2.61751663e-22 - art_sys_178: -9.28845062e-24 - art_sys_179: 8.76245926e-26 - art_sys_180: 3.21379707e-25 - art_sys_181: -2.54320694e-23 - art_sys_182: -1.96924302e-24 - art_sys_183: -3.95408410e-26 - art_sys_184: 1.58386045e-26 - art_sys_185: 4.63138344e-28 + art_sys_51: -6.72284257e-09 + art_sys_52: -4.16473420e-25 + art_sys_53: -2.02687372e-25 + art_sys_54: -2.91614082e-25 + art_sys_55: -2.14974854e-25 + art_sys_56: -3.84276892e-26 + art_sys_57: 6.94097803e-14 + art_sys_58: -1.33193195e-17 + art_sys_59: 5.30422359e-15 + art_sys_60: 1.75762656e-08 + art_sys_61: 7.72602016e-15 + art_sys_62: -7.41676398e-15 + art_sys_63: -3.89211448e-15 + art_sys_64: 9.90924864e-15 + art_sys_65: -1.61453769e-14 + art_sys_66: -1.51304798e-07 + art_sys_67: 1.14862620e-15 + art_sys_68: -2.27877599e-15 + art_sys_69: 4.29765041e-07 + art_sys_70: -3.49606442e-20 + art_sys_71: -1.23552072e-18 + art_sys_72: -1.11422752e-18 + art_sys_73: 3.15990475e-07 + art_sys_74: 5.83926529e-16 + art_sys_75: -2.44132314e-15 + art_sys_76: 4.11398605e-14 + art_sys_77: 6.78735592e-15 + art_sys_78: 1.32017212e-14 + art_sys_79: -1.08046196e-15 + art_sys_80: 2.26013695e-16 + art_sys_81: 2.75216277e-15 + art_sys_82: -2.51255334e-17 + art_sys_83: 1.44946773e-16 + art_sys_84: 2.54705289e-15 + art_sys_85: 1.04518855e-15 + art_sys_86: -4.67571441e-17 + art_sys_87: -1.88572205e-12 + art_sys_88: -1.25783615e-12 + art_sys_89: 8.80406862e-12 + art_sys_90: -6.50262723e-16 + art_sys_91: 1.62782183e-16 + art_sys_92: 4.94319856e-06 + art_sys_93: 1.06458241e-16 + art_sys_94: -7.23814610e-06 + art_sys_95: 4.36881200e-15 + art_sys_96: 8.15482967e-12 + art_sys_97: 3.50738177e-05 + art_sys_98: -1.54527759e-13 + art_sys_99: 2.89030531e-15 + art_sys_100: -2.73189411e-05 + art_sys_101: -3.10476408e-12 + art_sys_102: -8.92494537e-12 + art_sys_103: 1.00561198e-04 + art_sys_104: 1.29815051e-12 + art_sys_105: -4.99179193e-11 + art_sys_106: 7.84418570e-13 + art_sys_107: -2.22760968e-13 + art_sys_108: -1.42773424e-04 + art_sys_109: 5.13315701e-12 + art_sys_110: 4.47307450e-11 + art_sys_111: -1.36151746e-10 + art_sys_112: -6.17267679e-06 + art_sys_113: 9.00053898e-12 + art_sys_114: 1.05889820e-10 + art_sys_115: -2.05905362e-05 + art_sys_116: 5.48732353e-10 + art_sys_117: 7.06857397e-12 + art_sys_118: 1.39536747e-10 + art_sys_119: -2.91560071e-05 + art_sys_120: 2.88398714e-11 + art_sys_121: 1.67170170e-12 + art_sys_122: -1.38203725e-10 + art_sys_123: -1.72644826e-05 + art_sys_124: 3.28208608e-11 + art_sys_125: -1.56305515e-11 + art_sys_126: -5.19476097e-10 + art_sys_127: -3.48681527e-12 + art_sys_128: -9.15029421e-06 + art_sys_129: 3.90321201e-06 + art_sys_130: 1.52911283e-06 + art_sys_131: 5.36293908e-07 + art_sys_132: -5.62000657e-13 + art_sys_133: 6.26250763e-10 + art_sys_134: -1.70792905e-07 + art_sys_135: -1.38119411e-11 + art_sys_136: -6.03958552e-08 + art_sys_137: -2.10006878e-10 + art_sys_138: 7.65554353e-09 + art_sys_139: -3.46415835e-10 + art_sys_140: -2.55772639e-15 + art_sys_141: 1.40372579e-09 + art_sys_142: 0.0 + art_sys_143: -9.95892888e-11 + art_sys_144: -7.06449198e-10 + art_sys_145: -1.05254723e-09 + art_sys_146: 4.05764730e-12 + art_sys_147: -1.36835474e-11 + art_sys_148: -2.81723770e-11 + art_sys_149: -8.50789913e-12 + art_sys_150: 3.20982292e-13 + art_sys_151: 5.38104475e-13 + art_sys_152: 5.78766679e-13 + art_sys_153: 3.83330439e-14 + art_sys_154: 2.36220017e-13 + art_sys_155: -6.40616393e-13 + art_sys_156: -3.68275286e-12 + art_sys_157: -2.32802688e-12 + art_sys_158: 0.0 + art_sys_159: 5.30112386e-11 + art_sys_160: 5.30112386e-11 + art_sys_161: 1.64166410e-12 + art_sys_162: -5.99595825e-25 + art_sys_163: -0.0 + art_sys_164: -3.65135087e-25 + art_sys_165: -4.05641336e-20 + art_sys_166: 1.15090108e-20 + art_sys_167: 2.36213677e-21 + art_sys_168: -1.33420727e-22 + art_sys_169: -1.15960483e-22 + art_sys_170: -8.54658663e-23 + art_sys_171: -5.55534324e-21 + art_sys_172: 5.97889844e-21 + art_sys_173: -8.72633642e-22 + art_sys_174: -1.23233428e-24 + art_sys_175: 6.71723690e-23 + art_sys_176: -1.43996694e-22 + art_sys_177: 2.61417530e-23 + art_sys_178: 7.96546430e-24 + art_sys_179: -1.14561797e-22 + art_sys_180: -1.27728989e-23 + art_sys_181: 1.83867682e-24 + art_sys_182: -1.07837334e-24 + art_sys_183: -1.60117743e-26 + art_sys_184: -2.70603387e-27 + art_sys_185: -7.66361848e-26 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -24416,167 +24416,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: 2.65224624e-93 - art_sys_26: 1.38936781e-87 - art_sys_27: -8.72636369e-81 - art_sys_28: 5.22089575e-80 - art_sys_29: 2.00527620e-69 - art_sys_30: 1.62985245e-66 - art_sys_31: 7.62387905e-64 - art_sys_32: -9.10713433e-56 - art_sys_33: -2.72922348e-50 - art_sys_34: -2.75170548e-43 - art_sys_35: -1.92900395e-44 - art_sys_36: 5.81616300e-19 - art_sys_37: -1.25325767e-17 - art_sys_38: -5.50202164e-17 - art_sys_39: 4.00719425e-17 - art_sys_40: -4.07530615e-15 - art_sys_41: 5.43926034e-14 - art_sys_42: 1.24253770e-13 - art_sys_43: 2.12998392e-13 - art_sys_44: -5.46455676e-12 - art_sys_45: 1.91790643e-11 - art_sys_46: 1.20839044e-10 - art_sys_47: 2.25480066e-27 - art_sys_48: -4.72145334e-27 - art_sys_49: 1.56336499e-27 + art_sys_25: -1.65789020e-53 + art_sys_26: 4.22968607e-47 + art_sys_27: 2.19664559e-39 + art_sys_28: -5.37165189e-39 + art_sys_29: -5.81616300e-19 + art_sys_30: 1.25325767e-17 + art_sys_31: 5.50202164e-17 + art_sys_32: -4.00719425e-17 + art_sys_33: -4.07530615e-15 + art_sys_34: -5.43926034e-14 + art_sys_35: -1.24253770e-13 + art_sys_36: 5.73739065e-31 + art_sys_37: -1.25869657e-30 + art_sys_38: 2.12998392e-13 + art_sys_39: -2.04744480e-30 + art_sys_40: 6.66578446e-31 + art_sys_41: -1.86706007e-30 + art_sys_42: 5.46455676e-12 + art_sys_43: 4.74007976e-29 + art_sys_44: -1.91790643e-11 + art_sys_45: 5.36473746e-28 + art_sys_46: 2.52064263e-27 + art_sys_47: -1.20839044e-10 + art_sys_48: 2.41335663e-28 + art_sys_49: 7.06195124e-28 art_sys_50: -3.38750858e-10 - art_sys_51: 2.24719092e-09 - art_sys_52: 5.01355986e-26 - art_sys_53: -9.16194658e-26 - art_sys_54: -4.72197929e-26 - art_sys_55: 5.26226641e-26 - art_sys_56: 9.96433310e-27 - art_sys_57: -6.78083609e-09 - art_sys_58: 2.01177902e-08 - art_sys_59: 1.18386178e-25 - art_sys_60: 4.77608445e-25 - art_sys_61: 9.39930782e-08 - art_sys_62: 1.58259131e-25 - art_sys_63: -1.23916756e-23 - art_sys_64: 4.28511789e-14 - art_sys_65: 6.17809965e-15 - art_sys_66: -1.49316967e-14 - art_sys_67: 8.45205255e-15 - art_sys_68: 1.25332170e-14 - art_sys_69: -2.75520655e-15 - art_sys_70: -8.56060287e-15 - art_sys_71: -1.62733738e-15 - art_sys_72: -3.76296273e-16 - art_sys_73: -1.27135597e-15 - art_sys_74: 8.99524307e-08 - art_sys_75: 3.30723466e-15 - art_sys_76: 9.17379841e-15 - art_sys_77: 4.74085439e-14 - art_sys_78: 1.88979932e-16 - art_sys_79: 1.55706416e-15 - art_sys_80: 1.62999625e-15 - art_sys_81: -1.81119989e-15 - art_sys_82: -1.24878184e-18 - art_sys_83: -1.26690725e-15 - art_sys_84: 3.63333153e-16 - art_sys_85: -2.07424411e-16 - art_sys_86: -1.65142240e-16 - art_sys_87: -2.28788506e-13 - art_sys_88: 8.61538842e-13 - art_sys_89: -1.07562263e-17 - art_sys_90: -2.30049424e-13 - art_sys_91: 7.06719582e-20 - art_sys_92: -6.37212087e-19 - art_sys_93: -2.73542726e-17 - art_sys_94: 2.62300659e-12 - art_sys_95: -1.07181009e-06 - art_sys_96: -2.25243357e-15 - art_sys_97: 1.16438449e-15 - art_sys_98: 5.24922603e-06 - art_sys_99: 3.62408145e-13 - art_sys_100: 1.61442107e-06 - art_sys_101: 1.75557473e-12 - art_sys_102: -2.81947796e-05 - art_sys_103: 1.02715142e-12 - art_sys_104: -5.40501602e-14 - art_sys_105: 1.83431456e-11 - art_sys_106: -3.66011028e-10 - art_sys_107: -1.81360458e-05 - art_sys_108: 2.96183379e-11 - art_sys_109: 1.15331956e-10 - art_sys_110: 7.25276848e-05 - art_sys_111: -6.06416998e-12 - art_sys_112: -1.48194235e-09 - art_sys_113: -1.22849860e-11 - art_sys_114: 7.24399389e-11 - art_sys_115: -3.46745201e-12 - art_sys_116: -1.07434083e-04 - art_sys_117: 3.01920170e-10 - art_sys_118: -1.24740136e-10 - art_sys_119: -5.70176402e-06 - art_sys_120: -1.26000594e-10 - art_sys_121: -3.34388171e-11 - art_sys_122: 1.95718728e-10 - art_sys_123: -1.64354390e-05 - art_sys_124: -2.73157179e-11 - art_sys_125: 5.85803055e-11 - art_sys_126: 9.45133991e-11 - art_sys_127: 2.11922738e-05 - art_sys_128: -5.41768593e-11 - art_sys_129: 3.95662541e-12 - art_sys_130: -1.31950167e-05 - art_sys_131: -4.83593865e-11 - art_sys_132: 6.56109094e-10 - art_sys_133: -6.48209816e-06 - art_sys_134: -2.30579609e-10 - art_sys_135: -5.94333903e-11 - art_sys_136: -6.93910228e-12 - art_sys_137: -2.78128941e-06 - art_sys_138: -8.03193713e-11 - art_sys_139: -1.02689308e-06 - art_sys_140: -1.78860804e-13 - art_sys_141: -5.73641598e-09 - art_sys_142: -2.10155737e-11 - art_sys_143: -3.46905743e-07 - art_sys_144: 4.72152240e-12 - art_sys_145: 1.54103312e-10 - art_sys_146: -1.27538719e-07 - art_sys_147: 3.02157205e-12 - art_sys_148: 2.14368440e-13 - art_sys_149: 1.73327032e-10 - art_sys_150: -1.79072588e-08 - art_sys_151: -1.87398531e-10 - art_sys_152: -1.30941413e-12 - art_sys_153: 1.96728442e-09 - art_sys_154: -2.46147816e-11 - art_sys_155: 7.09350198e-13 - art_sys_156: 0.0 - art_sys_157: -1.97116528e-11 - art_sys_158: 0.0 - art_sys_159: -5.02613081e-11 - art_sys_160: -1.66727443e-12 - art_sys_161: -9.68763434e-12 - art_sys_162: -9.68763434e-12 - art_sys_163: 5.37644883e-12 - art_sys_164: 5.37644883e-12 - art_sys_165: -3.58411525e-26 - art_sys_166: 1.12044416e-26 - art_sys_167: 0.0 - art_sys_168: 6.63580064e-20 - art_sys_169: 4.59419698e-20 - art_sys_170: 7.49626016e-22 - art_sys_171: 1.44545725e-20 - art_sys_172: 2.81761218e-21 - art_sys_173: 2.47907592e-23 - art_sys_174: 4.56568468e-24 - art_sys_175: -2.17622164e-23 - art_sys_176: 2.30660273e-23 - art_sys_177: -4.79437768e-22 - art_sys_178: 1.42322737e-23 - art_sys_179: -1.67367225e-25 - art_sys_180: -1.22584403e-24 - art_sys_181: 4.48198633e-23 - art_sys_182: 4.25401855e-24 - art_sys_183: 7.86770087e-26 - art_sys_184: -3.05419277e-26 - art_sys_185: -9.15595620e-28 + art_sys_51: -2.24719092e-09 + art_sys_52: -1.24575731e-25 + art_sys_53: -6.92983025e-26 + art_sys_54: -1.05884202e-25 + art_sys_55: -7.24083742e-26 + art_sys_56: -2.12079885e-26 + art_sys_57: 1.06402128e-14 + art_sys_58: 1.41735254e-14 + art_sys_59: -7.79453980e-15 + art_sys_60: 6.78083609e-09 + art_sys_61: -4.61203482e-15 + art_sys_62: 9.49429665e-15 + art_sys_63: 3.75882715e-15 + art_sys_64: -1.07618005e-14 + art_sys_65: 1.94169083e-14 + art_sys_66: -2.01177902e-08 + art_sys_67: -1.23370613e-15 + art_sys_68: 2.77467228e-15 + art_sys_69: 9.39930775e-08 + art_sys_70: -4.33740261e-21 + art_sys_71: -1.65158690e-19 + art_sys_72: -1.50923150e-19 + art_sys_73: 8.99524307e-08 + art_sys_74: 1.27698703e-16 + art_sys_75: 3.02784148e-15 + art_sys_76: -6.40134222e-14 + art_sys_77: 5.30743278e-15 + art_sys_78: -5.42609810e-15 + art_sys_79: 1.39156183e-15 + art_sys_80: 4.94866354e-17 + art_sys_81: 1.32216686e-15 + art_sys_82: -1.07338675e-16 + art_sys_83: 6.61396862e-16 + art_sys_84: -2.96156271e-16 + art_sys_85: 1.20050744e-15 + art_sys_86: 2.42904851e-16 + art_sys_87: 3.44031179e-13 + art_sys_88: -1.51864452e-11 + art_sys_89: -2.34748181e-12 + art_sys_90: -1.42218913e-16 + art_sys_91: 4.16754082e-17 + art_sys_92: -1.07181964e-06 + art_sys_93: 1.98506026e-17 + art_sys_94: -5.24922512e-06 + art_sys_95: -1.92762622e-15 + art_sys_96: -4.80274183e-12 + art_sys_97: -1.61441553e-06 + art_sys_98: -1.12063558e-13 + art_sys_99: 7.93884272e-15 + art_sys_100: -2.81946424e-05 + art_sys_101: 1.53422152e-13 + art_sys_102: 9.85833165e-12 + art_sys_103: -1.81358565e-05 + art_sys_104: -5.48726966e-14 + art_sys_105: 6.99824112e-11 + art_sys_106: 9.90276205e-14 + art_sys_107: -2.56609724e-13 + art_sys_108: -7.25268842e-05 + art_sys_109: 1.85371888e-11 + art_sys_110: -7.14901015e-11 + art_sys_111: 4.16011001e-12 + art_sys_112: -1.07436554e-04 + art_sys_113: -1.38129631e-11 + art_sys_114: -9.08327994e-12 + art_sys_115: 5.70163637e-06 + art_sys_116: 2.60061218e-10 + art_sys_117: -1.16790475e-11 + art_sys_118: 1.07609976e-12 + art_sys_119: 1.64363998e-05 + art_sys_120: -9.98581360e-12 + art_sys_121: -3.82233105e-10 + art_sys_122: 3.65950058e-11 + art_sys_123: 2.11870763e-05 + art_sys_124: 1.95766641e-11 + art_sys_125: 4.05538353e-11 + art_sys_126: 5.33438340e-11 + art_sys_127: -2.43559774e-10 + art_sys_128: 1.32021629e-05 + art_sys_129: -6.49807734e-06 + art_sys_130: -2.77386147e-06 + art_sys_131: -1.03123453e-06 + art_sys_132: 3.77552787e-10 + art_sys_133: -9.06266645e-10 + art_sys_134: 3.42034886e-07 + art_sys_135: -2.90083361e-10 + art_sys_136: 1.24025255e-07 + art_sys_137: 2.09300024e-10 + art_sys_138: -1.60948301e-08 + art_sys_139: 7.09621096e-10 + art_sys_140: 2.07288742e-16 + art_sys_141: -2.92342844e-09 + art_sys_142: -0.0 + art_sys_143: 1.87824448e-10 + art_sys_144: 1.40969630e-09 + art_sys_145: 2.19483249e-09 + art_sys_146: -6.73266934e-12 + art_sys_147: 2.43842598e-11 + art_sys_148: 7.89664264e-11 + art_sys_149: 1.86413217e-11 + art_sys_150: -5.89919776e-13 + art_sys_151: -1.26206056e-12 + art_sys_152: -1.28536350e-12 + art_sys_153: -8.52403055e-14 + art_sys_154: -4.06248376e-13 + art_sys_155: 1.19704085e-12 + art_sys_156: 7.72393270e-12 + art_sys_157: 4.89788366e-12 + art_sys_158: -0.0 + art_sys_159: -1.03722948e-10 + art_sys_160: -1.03722948e-10 + art_sys_161: -2.60915099e-12 + art_sys_162: 9.51565852e-25 + art_sys_163: 0.0 + art_sys_164: 5.80368041e-25 + art_sys_165: 9.38033708e-20 + art_sys_166: -1.95667263e-20 + art_sys_167: -6.12185636e-21 + art_sys_168: 6.59381890e-22 + art_sys_169: 4.07687398e-22 + art_sys_170: -1.08941662e-22 + art_sys_171: 1.02424498e-20 + art_sys_172: -1.10265430e-20 + art_sys_173: 1.59172237e-21 + art_sys_174: 2.56008587e-24 + art_sys_175: -1.40722030e-22 + art_sys_176: 2.95412365e-22 + art_sys_177: -5.29059301e-23 + art_sys_178: -1.40605444e-23 + art_sys_179: 2.01168481e-22 + art_sys_180: 2.31400809e-23 + art_sys_181: -3.57265420e-24 + art_sys_182: 1.96678122e-24 + art_sys_183: 3.05457720e-26 + art_sys_184: 5.32260981e-27 + art_sys_185: 1.38895388e-25 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -24707,167 +24707,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: 1.50918737e-94 - art_sys_26: 7.90581325e-89 - art_sys_27: -4.96549591e-82 - art_sys_28: 2.97080633e-81 - art_sys_29: 1.14104696e-70 - art_sys_30: 9.27422462e-68 - art_sys_31: 4.33815752e-65 - art_sys_32: -5.18216292e-57 - art_sys_33: -1.55298914e-51 - art_sys_34: -1.56578190e-44 - art_sys_35: -1.09764635e-45 - art_sys_36: 3.31485043e-20 - art_sys_37: -1.00060269e-18 - art_sys_38: -4.25850607e-18 - art_sys_39: -8.70347860e-19 - art_sys_40: -9.29308083e-16 - art_sys_41: 5.81596334e-15 - art_sys_42: 1.74778628e-14 - art_sys_43: 3.46667439e-14 - art_sys_44: -1.40762252e-12 - art_sys_45: 2.27740325e-12 - art_sys_46: 1.96665448e-11 - art_sys_47: 3.79895402e-28 - art_sys_48: -1.49475631e-27 - art_sys_49: 2.30545558e-28 + art_sys_25: -9.44894010e-55 + art_sys_26: 2.41065725e-48 + art_sys_27: 1.25195098e-40 + art_sys_28: -3.06150654e-40 + art_sys_29: -3.31485043e-20 + art_sys_30: 1.00060269e-18 + art_sys_31: 4.25850607e-18 + art_sys_32: 8.70347860e-19 + art_sys_33: -9.29308083e-16 + art_sys_34: -5.81596334e-15 + art_sys_35: -1.74778628e-14 + art_sys_36: 7.67336159e-32 + art_sys_37: -2.03098053e-31 + art_sys_38: 3.46667439e-14 + art_sys_39: -3.34840999e-31 + art_sys_40: 1.13088587e-31 + art_sys_41: -3.06463952e-31 + art_sys_42: 1.40762252e-12 + art_sys_43: 1.20745324e-29 + art_sys_44: -2.27740325e-12 + art_sys_45: 8.69525722e-29 + art_sys_46: 3.89787833e-28 + art_sys_47: -1.96665448e-11 + art_sys_48: 5.85743191e-29 + art_sys_49: 1.01818389e-28 art_sys_50: -7.02560566e-11 - art_sys_51: 3.01482438e-10 - art_sys_52: 7.08109272e-27 - art_sys_53: -1.22196249e-26 - art_sys_54: -5.63349220e-27 - art_sys_55: 7.67212613e-27 - art_sys_56: 4.46030338e-27 - art_sys_57: -9.32691868e-10 - art_sys_58: 1.76530870e-09 - art_sys_59: 4.79775969e-27 - art_sys_60: 2.45590531e-25 - art_sys_61: 8.30286157e-09 - art_sys_62: 1.25642753e-26 - art_sys_63: -3.08013940e-25 - art_sys_64: 5.36880665e-14 - art_sys_65: 2.26663082e-14 - art_sys_66: 2.52638268e-14 - art_sys_67: -1.26236676e-14 - art_sys_68: -2.20153017e-14 - art_sys_69: 5.28652407e-15 - art_sys_70: 1.53156184e-14 - art_sys_71: 8.98392726e-15 - art_sys_72: -1.65029604e-16 - art_sys_73: 7.80984748e-16 - art_sys_74: 2.18801966e-09 - art_sys_75: -3.64450959e-15 - art_sys_76: 5.05142907e-14 - art_sys_77: -1.72843010e-15 - art_sys_78: -2.46160376e-15 - art_sys_79: -1.79490411e-15 - art_sys_80: -2.25234698e-15 - art_sys_81: 2.18812793e-15 - art_sys_82: -3.04261040e-20 - art_sys_83: -1.09663706e-16 - art_sys_84: -6.23056068e-17 - art_sys_85: 8.30427994e-16 - art_sys_86: 3.97591736e-17 - art_sys_87: -6.19398328e-13 - art_sys_88: 5.07518584e-13 - art_sys_89: -3.24388049e-17 - art_sys_90: 5.09150025e-14 - art_sys_91: 1.66553291e-21 - art_sys_92: 7.08682669e-18 - art_sys_93: -1.43136867e-17 - art_sys_94: 3.72381111e-11 - art_sys_95: -5.91312458e-07 - art_sys_96: -1.24266205e-15 - art_sys_97: 6.42300727e-16 - art_sys_98: 5.19844852e-08 - art_sys_99: -1.37858165e-14 - art_sys_100: 4.33807199e-06 - art_sys_101: 4.50320643e-12 - art_sys_102: -2.86978975e-07 - art_sys_103: 3.11680069e-12 - art_sys_104: -2.16409675e-13 - art_sys_105: -2.22313540e-11 - art_sys_106: -3.70726060e-12 - art_sys_107: -2.05760861e-05 - art_sys_108: -3.57051466e-11 - art_sys_109: -1.41395638e-10 - art_sys_110: -1.40629292e-05 - art_sys_111: -1.35340562e-12 - art_sys_112: 2.86494752e-10 - art_sys_113: -1.36775752e-13 - art_sys_114: -9.81400336e-11 - art_sys_115: -3.05156810e-13 - art_sys_116: -5.29024748e-05 - art_sys_117: -4.33990390e-10 - art_sys_118: 2.63069558e-11 - art_sys_119: -8.04878605e-05 - art_sys_120: 7.05181652e-11 - art_sys_121: 3.77950927e-11 - art_sys_122: -3.26603995e-11 - art_sys_123: 4.63282827e-06 - art_sys_124: -4.51562603e-12 - art_sys_125: -9.88107181e-11 - art_sys_126: 4.70833501e-10 - art_sys_127: -1.21792578e-05 - art_sys_128: 3.85314193e-11 - art_sys_129: -9.05607518e-12 - art_sys_130: 1.62157581e-05 - art_sys_131: 9.47954026e-11 - art_sys_132: -2.07736890e-10 - art_sys_133: 9.43692186e-06 - art_sys_134: -2.31402833e-09 - art_sys_135: 8.24444436e-11 - art_sys_136: 1.57754087e-11 - art_sys_137: 4.66141485e-06 - art_sys_138: 7.03342629e-11 - art_sys_139: 1.88524161e-06 - art_sys_140: -2.94443632e-13 - art_sys_141: 1.03140637e-08 - art_sys_142: -1.32332667e-10 - art_sys_143: 6.67862796e-07 - art_sys_144: -4.94747868e-12 - art_sys_145: 4.58284229e-10 - art_sys_146: 2.55977244e-07 - art_sys_147: -5.98380017e-12 - art_sys_148: -3.72240619e-13 - art_sys_149: -1.79044165e-10 - art_sys_150: 3.76805264e-08 - art_sys_151: 6.31017009e-10 - art_sys_152: 3.07775266e-12 - art_sys_153: -4.25835911e-09 - art_sys_154: 4.77400485e-12 - art_sys_155: -1.21467346e-12 - art_sys_156: -0.0 - art_sys_157: 1.92753691e-11 - art_sys_158: -0.0 - art_sys_159: 1.46423056e-10 - art_sys_160: 5.42454972e-12 - art_sys_161: 1.64524019e-11 - art_sys_162: 1.64524019e-11 - art_sys_163: -1.54633687e-11 - art_sys_164: -1.54633687e-11 - art_sys_165: 1.22377099e-25 - art_sys_166: -3.91983180e-26 - art_sys_167: -0.0 - art_sys_168: -9.46887535e-20 - art_sys_169: -9.20839043e-20 - art_sys_170: 5.74897061e-21 - art_sys_171: -1.99344881e-20 - art_sys_172: -4.88479723e-21 - art_sys_173: 5.85058395e-23 - art_sys_174: 7.25417679e-23 - art_sys_175: 4.28836052e-23 - art_sys_176: -4.33536347e-23 - art_sys_177: 8.17841331e-22 - art_sys_178: -1.77294123e-23 - art_sys_179: 2.25627364e-25 - art_sys_180: 3.57503523e-24 - art_sys_181: -7.11457593e-23 - art_sys_182: -9.16474586e-24 - art_sys_183: -1.52032790e-25 - art_sys_184: 5.58799340e-26 - art_sys_185: 1.68042879e-27 + art_sys_51: -3.01482438e-10 + art_sys_52: -1.48589856e-26 + art_sys_53: -9.35902206e-27 + art_sys_54: -1.39340352e-26 + art_sys_55: -9.80459829e-27 + art_sys_56: -3.35075717e-27 + art_sys_57: -1.43058537e-13 + art_sys_58: 6.44435647e-15 + art_sys_59: 3.67512343e-14 + art_sys_60: 9.32691868e-10 + art_sys_61: -1.57733224e-14 + art_sys_62: -3.68029724e-15 + art_sys_63: 1.09746109e-15 + art_sys_64: 3.23935766e-15 + art_sys_65: -1.44177497e-14 + art_sys_66: -1.76530870e-09 + art_sys_67: 6.83219394e-16 + art_sys_68: -2.66546790e-15 + art_sys_69: 8.30286151e-09 + art_sys_70: -3.62452066e-22 + art_sys_71: -1.44943587e-20 + art_sys_72: -1.32473032e-20 + art_sys_73: 2.18801967e-09 + art_sys_74: 1.12802170e-17 + art_sys_75: -3.38110517e-15 + art_sys_76: -6.68271255e-16 + art_sys_77: -1.65134532e-14 + art_sys_78: -1.36719782e-15 + art_sys_79: -1.69386145e-15 + art_sys_80: 4.35602141e-18 + art_sys_81: 1.40135338e-15 + art_sys_82: 5.14903509e-16 + art_sys_83: 1.43231854e-16 + art_sys_84: 1.79577214e-15 + art_sys_85: 3.34314609e-16 + art_sys_86: -4.60167313e-16 + art_sys_87: 3.84876759e-13 + art_sys_88: -7.31138078e-12 + art_sys_89: -3.43393464e-11 + art_sys_90: -1.25607707e-17 + art_sys_91: -8.56363767e-20 + art_sys_92: -5.91312633e-07 + art_sys_93: 9.71158665e-19 + art_sys_94: -5.19837046e-08 + art_sys_95: -6.54009506e-16 + art_sys_96: 1.44905204e-12 + art_sys_97: -4.33805759e-06 + art_sys_98: -1.10742966e-15 + art_sys_99: 8.07753180e-16 + art_sys_100: -2.86979478e-07 + art_sys_101: 3.85446725e-13 + art_sys_102: -7.50691045e-13 + art_sys_103: -2.05760696e-05 + art_sys_104: -1.59904917e-13 + art_sys_105: -8.21757648e-11 + art_sys_106: -7.36885889e-14 + art_sys_107: -1.77362824e-14 + art_sys_108: 1.40627741e-05 + art_sys_109: 1.27549591e-12 + art_sys_110: 9.99717915e-11 + art_sys_111: 1.66154003e-11 + art_sys_112: -5.29104332e-05 + art_sys_113: 1.84310421e-11 + art_sys_114: -1.35536993e-11 + art_sys_115: 8.04894393e-05 + art_sys_116: -5.70266593e-11 + art_sys_117: 1.67197654e-11 + art_sys_118: -1.66742151e-11 + art_sys_119: -4.63310106e-06 + art_sys_120: -7.65328793e-12 + art_sys_121: -2.76958188e-10 + art_sys_122: 3.03899454e-11 + art_sys_123: -1.21722119e-05 + art_sys_124: 9.87648604e-13 + art_sys_125: 3.67718126e-11 + art_sys_126: 1.78783280e-09 + art_sys_127: -1.66552727e-10 + art_sys_128: -1.62129434e-05 + art_sys_129: 9.45310385e-06 + art_sys_130: 4.65413042e-06 + art_sys_131: 1.89065944e-06 + art_sys_132: 2.47478339e-10 + art_sys_133: 9.94461833e-10 + art_sys_134: -6.61139341e-07 + art_sys_135: 2.83836359e-10 + art_sys_136: -2.49498453e-07 + art_sys_137: -2.90122396e-10 + art_sys_138: 3.35022388e-08 + art_sys_139: -1.42007864e-09 + art_sys_140: 3.16077010e-16 + art_sys_141: 6.00742192e-09 + art_sys_142: 0.0 + art_sys_143: -5.45741781e-10 + art_sys_144: -2.79929204e-09 + art_sys_145: -4.52418469e-09 + art_sys_146: 9.73172597e-12 + art_sys_147: -3.97998487e-11 + art_sys_148: -2.05548483e-10 + art_sys_149: -4.00432542e-11 + art_sys_150: 9.74221732e-13 + art_sys_151: 2.96697442e-12 + art_sys_152: 2.81710466e-12 + art_sys_153: 1.88726282e-13 + art_sys_154: 6.08655731e-13 + art_sys_155: -2.11323196e-12 + art_sys_156: -1.60034693e-11 + art_sys_157: -1.02320243e-11 + art_sys_158: 0.0 + art_sys_159: 2.13593700e-10 + art_sys_160: 2.13593700e-10 + art_sys_161: 2.79470377e-12 + art_sys_162: -1.00564593e-24 + art_sys_163: -0.0 + art_sys_164: -6.15787289e-25 + art_sys_165: -2.09314426e-19 + art_sys_166: 2.95390016e-20 + art_sys_167: 1.56258461e-20 + art_sys_168: -2.24230137e-21 + art_sys_169: -1.20901518e-21 + art_sys_170: 9.99926679e-22 + art_sys_171: -1.77385891e-20 + art_sys_172: 1.90358425e-20 + art_sys_173: -2.72569430e-21 + art_sys_174: -5.24749821e-24 + art_sys_175: 2.90543323e-22 + art_sys_176: -5.94289926e-22 + art_sys_177: 1.04793793e-22 + art_sys_178: 2.26013608e-23 + art_sys_179: -3.19611755e-22 + art_sys_180: -3.88335393e-23 + art_sys_181: 6.73153732e-24 + art_sys_182: -3.34678492e-24 + art_sys_183: -5.55440952e-26 + art_sys_184: -1.00294011e-26 + art_sys_185: -2.30105998e-25 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -24998,167 +24998,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: 9.42778659e-96 - art_sys_26: 4.93870555e-90 - art_sys_27: -3.10191013e-83 - art_sys_28: 1.85584168e-82 - art_sys_29: 7.12803958e-72 - art_sys_30: 5.79354244e-69 - art_sys_31: 2.71001628e-66 - art_sys_32: -3.23726048e-58 - art_sys_33: -9.70141318e-53 - art_sys_34: -9.78132865e-46 - art_sys_35: -6.85691901e-47 - art_sys_36: 2.07360648e-21 - art_sys_37: -7.78541478e-20 - art_sys_38: -3.20507614e-19 - art_sys_39: -2.55796041e-19 - art_sys_40: -1.11160223e-16 - art_sys_41: 5.12601756e-16 - art_sys_42: 1.78944666e-15 - art_sys_43: 3.70207262e-15 - art_sys_44: -1.78915522e-13 - art_sys_45: 1.46727718e-13 - art_sys_46: 1.93778207e-12 - art_sys_47: 3.84969904e-29 - art_sys_48: -1.75160627e-28 - art_sys_49: 2.29211759e-29 + art_sys_25: -5.91078919e-56 + art_sys_26: 1.50798784e-49 + art_sys_27: 7.83158559e-42 + art_sys_28: -1.91512694e-41 + art_sys_29: -2.07360648e-21 + art_sys_30: 7.78541478e-20 + art_sys_31: 3.20507614e-19 + art_sys_32: 2.55796041e-19 + art_sys_33: -1.11160223e-16 + art_sys_34: -5.12601756e-16 + art_sys_35: -1.78944666e-15 + art_sys_36: 7.67697572e-33 + art_sys_37: -2.13283510e-32 + art_sys_38: 3.70207262e-15 + art_sys_39: -3.58347090e-32 + art_sys_40: 1.22208426e-32 + art_sys_41: -3.29900080e-32 + art_sys_42: 1.78915522e-13 + art_sys_43: 1.59477075e-30 + art_sys_44: -1.46727718e-13 + art_sys_45: 8.63029195e-30 + art_sys_46: 3.65650389e-29 + art_sys_47: -1.93778207e-12 + art_sys_48: 6.53718538e-30 + art_sys_49: 6.61816028e-30 art_sys_50: -6.93124683e-12 - art_sys_51: 2.75761600e-11 - art_sys_52: 6.54399101e-28 - art_sys_53: -1.11524805e-27 - art_sys_54: -5.11548140e-28 - art_sys_55: 7.13870194e-28 - art_sys_56: 2.87431494e-28 - art_sys_57: -6.06860050e-11 - art_sys_58: 3.35235517e-10 - art_sys_59: 2.85414285e-27 - art_sys_60: 3.85998545e-26 - art_sys_61: 1.77757648e-10 - art_sys_62: -5.29524792e-27 - art_sys_63: 3.75376401e-25 - art_sys_64: -4.67633849e-15 - art_sys_65: 1.70618714e-14 - art_sys_66: -1.65902781e-14 - art_sys_67: -1.76724346e-15 - art_sys_68: 3.14392655e-14 - art_sys_69: -1.64273266e-14 - art_sys_70: -3.73890236e-14 - art_sys_71: -4.46142350e-14 - art_sys_72: 5.21208232e-15 - art_sys_73: 5.50301222e-15 - art_sys_74: -2.62219540e-09 - art_sys_75: -4.31731666e-15 - art_sys_76: -5.87552647e-14 - art_sys_77: -1.09652004e-14 - art_sys_78: 5.42030158e-15 - art_sys_79: -1.65914960e-15 - art_sys_80: -2.47125899e-15 - art_sys_81: 1.28304240e-15 - art_sys_82: 3.63985605e-20 - art_sys_83: -7.42253156e-17 - art_sys_84: -7.93045809e-16 - art_sys_85: 3.77074303e-16 - art_sys_86: 1.39254017e-16 - art_sys_87: -6.72441306e-14 - art_sys_88: -5.82486150e-14 - art_sys_89: 5.19567020e-17 - art_sys_90: 4.83281972e-14 - art_sys_91: -2.07036256e-21 - art_sys_92: -5.90583877e-17 - art_sys_93: 2.86445330e-17 - art_sys_94: 1.82007641e-11 - art_sys_95: -6.69317894e-09 - art_sys_96: -1.40636790e-17 - art_sys_97: 7.26574138e-18 - art_sys_98: -4.37694991e-07 - art_sys_99: -3.30928086e-14 - art_sys_100: 4.70413553e-07 - art_sys_101: 4.81564662e-13 - art_sys_102: 3.31717560e-06 - art_sys_103: 3.49235716e-13 - art_sys_104: -3.98366465e-14 - art_sys_105: 1.32569779e-11 - art_sys_106: 4.30655293e-11 - art_sys_107: -5.09574071e-07 - art_sys_108: 2.13313948e-11 - art_sys_109: 8.23615474e-11 - art_sys_110: -1.49396222e-05 - art_sys_111: 4.64947791e-13 - art_sys_112: 3.05115011e-10 - art_sys_113: 1.44383337e-12 - art_sys_114: 1.01140174e-10 - art_sys_115: 3.10740869e-13 - art_sys_116: 1.07746964e-05 - art_sys_117: 5.31518771e-10 - art_sys_118: 2.65436153e-11 - art_sys_119: -3.93282876e-05 - art_sys_120: 3.29838319e-11 - art_sys_121: -3.06657889e-11 - art_sys_122: -3.78601351e-11 - art_sys_123: 5.99036833e-05 - art_sys_124: 3.66698403e-12 - art_sys_125: 1.49330969e-10 - art_sys_126: 2.08478403e-10 - art_sys_127: 4.52556700e-06 - art_sys_128: 1.66307305e-11 - art_sys_129: 1.79873457e-11 - art_sys_130: -9.66316071e-06 - art_sys_131: -1.79411282e-10 - art_sys_132: -1.73470392e-10 - art_sys_133: -1.17513207e-05 - art_sys_134: -9.60877224e-10 - art_sys_135: 1.17747735e-10 - art_sys_136: -3.60504640e-11 - art_sys_137: -6.81616423e-06 - art_sys_138: 5.47997745e-10 - art_sys_139: -3.19760134e-06 - art_sys_140: 2.09067037e-12 - art_sys_141: -1.74295767e-08 - art_sys_142: -2.39359734e-10 - art_sys_143: -1.22547202e-06 - art_sys_144: 4.38458995e-12 - art_sys_145: 2.34926385e-10 - art_sys_146: -4.95901418e-07 - art_sys_147: 1.14145407e-11 - art_sys_148: 5.91585947e-13 - art_sys_149: 4.30847588e-10 - art_sys_150: -7.80546405e-08 - art_sys_151: -1.43262444e-09 - art_sys_152: -7.00727301e-12 - art_sys_153: 9.47381635e-09 - art_sys_154: 5.07052356e-12 - art_sys_155: 2.12541005e-12 - art_sys_156: 0.0 - art_sys_157: 2.48733871e-11 - art_sys_158: 0.0 - art_sys_159: -2.41519011e-10 - art_sys_160: -7.04263659e-12 - art_sys_161: -3.11711147e-11 - art_sys_162: -3.11711147e-11 - art_sys_163: 2.73531419e-11 - art_sys_164: 2.73531419e-11 - art_sys_165: -2.13157450e-25 - art_sys_166: 6.83613694e-26 - art_sys_167: 0.0 - art_sys_168: 2.29093573e-19 - art_sys_169: 1.79685362e-19 - art_sys_170: 3.21721283e-21 - art_sys_171: 2.19772176e-20 - art_sys_172: 7.98059231e-21 - art_sys_173: -3.67980154e-22 - art_sys_174: -3.36127008e-22 - art_sys_175: -8.41592175e-23 - art_sys_176: 7.44128501e-23 - art_sys_177: -1.26254759e-21 - art_sys_178: 1.76700911e-23 - art_sys_179: -3.07237944e-25 - art_sys_180: -5.96428977e-24 - art_sys_181: 1.00212183e-22 - art_sys_182: 2.02573391e-23 - art_sys_183: 2.90878457e-25 - art_sys_184: -9.45143983e-26 - art_sys_185: -2.86314874e-27 + art_sys_51: -2.75761600e-11 + art_sys_52: -1.32220878e-27 + art_sys_53: -8.56587666e-28 + art_sys_54: -1.41503927e-27 + art_sys_55: -8.96998174e-28 + art_sys_56: -2.38616421e-28 + art_sys_57: -3.88961394e-14 + art_sys_58: -1.37570107e-14 + art_sys_59: -2.45752227e-14 + art_sys_60: 6.06860050e-11 + art_sys_61: 2.79080766e-14 + art_sys_62: -7.11726221e-16 + art_sys_63: -7.84365070e-15 + art_sys_64: 9.97854175e-15 + art_sys_65: -1.27768876e-14 + art_sys_66: -3.35235517e-10 + art_sys_67: 3.34682723e-15 + art_sys_68: -3.09782897e-15 + art_sys_69: 1.77757647e-10 + art_sys_70: -7.78146780e-23 + art_sys_71: -2.71924529e-21 + art_sys_72: -2.41042456e-21 + art_sys_73: -2.62219540e-09 + art_sys_74: 2.41740448e-19 + art_sys_75: -4.99846021e-15 + art_sys_76: 7.05461327e-15 + art_sys_77: 4.30027648e-14 + art_sys_78: -1.20409175e-15 + art_sys_79: -2.28400920e-15 + art_sys_80: 8.61346094e-20 + art_sys_81: -9.37691908e-15 + art_sys_82: 2.14048401e-16 + art_sys_83: -2.87295703e-16 + art_sys_84: 2.26914504e-15 + art_sys_85: 7.16142777e-16 + art_sys_86: 1.23879857e-16 + art_sys_87: 7.21103423e-15 + art_sys_88: 1.56019703e-12 + art_sys_89: -1.68053431e-11 + art_sys_90: -2.68321843e-19 + art_sys_91: -1.29587722e-18 + art_sys_92: -6.69239611e-09 + art_sys_93: 3.26498418e-20 + art_sys_94: 4.37695022e-07 + art_sys_95: 5.58444555e-17 + art_sys_96: 1.60169578e-11 + art_sys_97: -4.70412044e-07 + art_sys_98: 9.34414949e-15 + art_sys_99: -5.41232633e-16 + art_sys_100: 3.31715922e-06 + art_sys_101: 4.09727256e-14 + art_sys_102: -1.31523466e-12 + art_sys_103: -5.09603640e-07 + art_sys_104: -1.77090866e-14 + art_sys_105: 3.38221415e-11 + art_sys_106: -1.84112541e-14 + art_sys_107: 1.92679135e-14 + art_sys_108: 1.49394573e-05 + art_sys_109: -1.98550041e-12 + art_sys_110: -1.09785393e-10 + art_sys_111: 2.07581529e-12 + art_sys_112: 1.07714846e-05 + art_sys_113: -1.68295725e-11 + art_sys_114: -9.71794306e-13 + art_sys_115: 3.93291434e-05 + art_sys_116: -5.47770086e-11 + art_sys_117: -1.91551701e-11 + art_sys_118: -2.63478046e-12 + art_sys_119: -5.99070469e-05 + art_sys_120: 3.33055220e-13 + art_sys_121: -7.16762442e-12 + art_sys_122: -8.94182420e-13 + art_sys_123: 4.53084643e-06 + art_sys_124: -2.90616053e-12 + art_sys_125: 2.35487310e-12 + art_sys_126: 8.64401932e-10 + art_sys_127: -6.16319862e-13 + art_sys_128: 9.65273775e-06 + art_sys_129: -1.17711951e-05 + art_sys_130: -6.81215177e-06 + art_sys_131: -3.20402255e-06 + art_sys_132: -6.24453109e-12 + art_sys_133: -1.15112861e-09 + art_sys_134: 1.21698783e-06 + art_sys_135: 1.30180601e-10 + art_sys_136: 4.82999496e-07 + art_sys_137: 1.98802558e-10 + art_sys_138: -6.81336779e-08 + art_sys_139: 2.64976350e-09 + art_sys_140: 1.51011655e-17 + art_sys_141: -1.26442088e-08 + art_sys_142: -0.0 + art_sys_143: 9.30074897e-10 + art_sys_144: 5.57815361e-09 + art_sys_145: 9.45696301e-09 + art_sys_146: -1.17135763e-11 + art_sys_147: 5.53182814e-11 + art_sys_148: 4.33776254e-10 + art_sys_149: 8.31936266e-11 + art_sys_150: -2.14100761e-12 + art_sys_151: -5.56889006e-12 + art_sys_152: -5.54402777e-12 + art_sys_153: -3.83548701e-13 + art_sys_154: -9.65148934e-13 + art_sys_155: 3.86452313e-12 + art_sys_156: 3.39849273e-11 + art_sys_157: 2.13998218e-11 + art_sys_158: -0.0 + art_sys_159: -3.45560532e-10 + art_sys_160: -3.45560532e-10 + art_sys_161: -4.88138330e-12 + art_sys_162: 1.80680245e-24 + art_sys_163: 0.0 + art_sys_164: 1.12248217e-24 + art_sys_165: 4.46784467e-19 + art_sys_166: -4.93149891e-20 + art_sys_167: -3.22137297e-20 + art_sys_168: 4.63194795e-21 + art_sys_169: 2.39479057e-21 + art_sys_170: -1.73200122e-21 + art_sys_171: 2.79803531e-20 + art_sys_172: -2.96500713e-20 + art_sys_173: 4.49359556e-21 + art_sys_174: 1.09844003e-23 + art_sys_175: -5.83417904e-22 + art_sys_176: 1.15100758e-21 + art_sys_177: -2.01299376e-22 + art_sys_178: -3.10449375e-23 + art_sys_179: 4.18585724e-22 + art_sys_180: 5.98558234e-23 + art_sys_181: -1.19917704e-23 + art_sys_182: 4.99857736e-24 + art_sys_183: 9.20201158e-26 + art_sys_184: 1.81855655e-26 + art_sys_185: 4.13524509e-25 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -25289,167 +25289,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: 5.10515379e-97 - art_sys_26: 2.67431291e-91 - art_sys_27: -1.67968676e-84 - art_sys_28: 1.00493972e-83 - art_sys_29: 3.85983900e-73 - art_sys_30: 3.13720776e-70 - art_sys_31: 1.46747593e-67 - art_sys_32: -1.75297908e-59 - art_sys_33: -5.25332282e-54 - art_sys_34: -5.29659711e-47 - art_sys_35: -3.71302700e-48 - art_sys_36: 1.12489355e-22 - art_sys_37: -5.31379748e-21 - art_sys_38: -2.11580575e-20 - art_sys_39: -2.82332336e-20 - art_sys_40: -9.75789715e-18 - art_sys_41: 4.02943960e-17 - art_sys_42: 1.48413920e-16 - art_sys_43: 3.04767719e-16 - art_sys_44: -1.52166445e-14 - art_sys_45: 6.59423827e-15 - art_sys_46: 1.48124723e-13 - art_sys_47: 2.99190925e-30 - art_sys_48: 7.62376371e-31 - art_sys_49: 2.71349123e-30 + art_sys_25: -3.20649462e-57 + art_sys_26: 8.18055719e-51 + art_sys_27: 4.24849140e-43 + art_sys_28: -1.03892121e-42 + art_sys_29: -1.12489355e-22 + art_sys_30: 5.31379748e-21 + art_sys_31: 2.11580575e-20 + art_sys_32: 2.82332336e-20 + art_sys_33: -9.75789715e-18 + art_sys_34: -4.02943960e-17 + art_sys_35: -1.48413920e-16 + art_sys_36: 6.32063962e-34 + art_sys_37: -1.84703250e-33 + art_sys_38: 3.04767719e-16 + art_sys_39: -2.95372900e-33 + art_sys_40: 1.00654622e-33 + art_sys_41: -2.71829428e-33 + art_sys_42: 1.52166445e-14 + art_sys_43: 1.34903104e-31 + art_sys_44: -6.59423827e-15 + art_sys_45: 6.74296553e-31 + art_sys_46: 2.69001590e-30 + art_sys_47: -1.48124723e-13 + art_sys_48: 2.50475448e-31 + art_sys_49: 5.07639259e-31 art_sys_50: -3.98352832e-14 - art_sys_51: 3.62951697e-12 - art_sys_52: 7.35306626e-29 - art_sys_53: -1.49707576e-28 - art_sys_54: -7.85092445e-29 - art_sys_55: 7.24142968e-29 - art_sys_56: 4.77117384e-29 - art_sys_57: -4.60741144e-12 - art_sys_58: 9.99934005e-11 - art_sys_59: 1.07870040e-27 - art_sys_60: 5.48395496e-27 - art_sys_61: 1.41906119e-10 - art_sys_62: -1.02211699e-27 - art_sys_63: 3.66165552e-26 - art_sys_64: -1.07133488e-13 - art_sys_65: 2.58877816e-14 - art_sys_66: 1.35319824e-14 - art_sys_67: 7.48489305e-15 - art_sys_68: -4.40748658e-14 - art_sys_69: 2.43429211e-14 - art_sys_70: 5.10818347e-14 - art_sys_71: 5.55257776e-14 - art_sys_72: -6.54597560e-15 - art_sys_73: -6.53921602e-15 - art_sys_74: -2.39730403e-10 - art_sys_75: 4.45970556e-15 - art_sys_76: 5.83210927e-14 - art_sys_77: 2.67848976e-15 - art_sys_78: -9.94977129e-17 - art_sys_79: 1.45670992e-15 - art_sys_80: -8.13275714e-16 - art_sys_81: -9.39732447e-16 - art_sys_82: 3.33099475e-21 - art_sys_83: -1.34805319e-16 - art_sys_84: -2.52737875e-16 - art_sys_85: 3.88852688e-16 - art_sys_86: -1.32148885e-16 - art_sys_87: 4.29083362e-14 - art_sys_88: -6.61972905e-14 - art_sys_89: 7.31492484e-17 - art_sys_90: 2.52849015e-16 - art_sys_91: -1.86440093e-22 - art_sys_92: 6.36364934e-18 - art_sys_93: 9.03158860e-18 - art_sys_94: -3.69345710e-12 - art_sys_95: 3.81676245e-08 - art_sys_96: 8.02110281e-17 - art_sys_97: -4.14589260e-17 - art_sys_98: -7.00293103e-08 - art_sys_99: -4.12061370e-15 - art_sys_100: -3.00711940e-07 - art_sys_101: -3.13171199e-13 - art_sys_102: 5.01637890e-07 - art_sys_103: -2.14367965e-13 - art_sys_104: 8.42944765e-15 - art_sys_105: -3.18195848e-12 - art_sys_106: 6.51138090e-12 - art_sys_107: 2.33100463e-06 - art_sys_108: -4.34435007e-12 - art_sys_109: -2.82130821e-11 - art_sys_110: -2.27072663e-07 - art_sys_111: 2.30126556e-13 - art_sys_112: 4.72056787e-12 - art_sys_113: 2.19730743e-13 - art_sys_114: -4.27728719e-11 - art_sys_115: 9.67421239e-14 - art_sys_116: 1.06822612e-05 - art_sys_117: -2.89996392e-10 - art_sys_118: 2.40078695e-13 - art_sys_119: 7.98541873e-06 - art_sys_120: -6.05227702e-12 - art_sys_121: -5.85088338e-11 - art_sys_122: -9.53606132e-13 - art_sys_123: 2.75238254e-05 - art_sys_124: 1.33083401e-12 - art_sys_125: -1.96363032e-10 - art_sys_126: -5.06733545e-11 - art_sys_127: 4.46117703e-05 - art_sys_128: -3.79051704e-12 - art_sys_129: -3.48170019e-11 - art_sys_130: 3.39187076e-06 - art_sys_131: 3.38652494e-10 - art_sys_132: 6.52370993e-12 - art_sys_133: 7.36648746e-06 - art_sys_134: 2.92166495e-10 - art_sys_135: 2.81987863e-11 - art_sys_136: 8.14260626e-11 - art_sys_137: 8.74628162e-06 - art_sys_138: 2.54391092e-10 - art_sys_139: 4.87700339e-06 - art_sys_140: -6.85468006e-12 - art_sys_141: 2.90373809e-08 - art_sys_142: -1.98505257e-10 - art_sys_143: 2.12679787e-06 - art_sys_144: -3.09850788e-12 - art_sys_145: -2.00393644e-10 - art_sys_146: 9.34123359e-07 - art_sys_147: -2.10316139e-11 - art_sys_148: -7.40028385e-13 - art_sys_149: -9.47993604e-10 - art_sys_150: 1.61068709e-07 - art_sys_151: 2.86146201e-09 - art_sys_152: 1.61735285e-11 - art_sys_153: -2.05442385e-08 - art_sys_154: 7.69563446e-14 - art_sys_155: -2.06110650e-12 - art_sys_156: -0.0 - art_sys_157: 2.94740576e-11 + art_sys_51: -3.62951697e-12 + art_sys_52: -2.39526038e-28 + art_sys_53: -1.09068823e-28 + art_sys_54: -1.61617590e-28 + art_sys_55: -1.15580247e-28 + art_sys_56: -2.23741497e-30 + art_sys_57: -2.86568315e-15 + art_sys_58: 1.09100573e-14 + art_sys_59: -1.59011313e-14 + art_sys_60: 4.60741144e-12 + art_sys_61: -7.04816201e-14 + art_sys_62: 2.72396491e-14 + art_sys_63: 2.35843073e-14 + art_sys_64: -3.87545600e-14 + art_sys_65: 4.70636828e-14 + art_sys_66: -9.99934005e-11 + art_sys_67: -5.99912024e-15 + art_sys_68: 6.13394572e-15 + art_sys_69: 1.41906118e-10 + art_sys_70: -2.37569490e-23 + art_sys_71: -8.13173783e-22 + art_sys_72: -7.25678482e-22 + art_sys_73: -2.39730403e-10 + art_sys_74: 1.92850036e-19 + art_sys_75: 6.69914489e-15 + art_sys_76: -9.39998829e-14 + art_sys_77: 1.07185464e-14 + art_sys_78: 6.46437097e-15 + art_sys_79: 2.48350948e-15 + art_sys_80: 7.37101404e-20 + art_sys_81: 4.87294643e-15 + art_sys_82: 1.95326374e-15 + art_sys_83: 6.32593659e-17 + art_sys_84: -2.44289849e-15 + art_sys_85: 2.45338985e-17 + art_sys_86: 1.84731370e-17 + art_sys_87: -4.23325997e-14 + art_sys_88: 1.48746144e-12 + art_sys_89: 3.40364911e-12 + art_sys_90: -2.14694944e-19 + art_sys_91: -4.46043607e-20 + art_sys_92: 3.81677553e-08 + art_sys_93: 9.33944328e-20 + art_sys_94: 7.00292472e-08 + art_sys_95: 5.18474419e-17 + art_sys_96: 6.59821581e-12 + art_sys_97: 3.00710935e-07 + art_sys_98: 1.49462520e-15 + art_sys_99: -1.35856771e-16 + art_sys_100: 5.01635638e-07 + art_sys_101: -2.68189000e-14 + art_sys_102: 3.83759589e-11 + art_sys_103: 2.33099903e-06 + art_sys_104: 1.10416139e-14 + art_sys_105: 5.83491662e-13 + art_sys_106: 3.54193221e-15 + art_sys_107: 4.40452617e-15 + art_sys_108: 2.27070132e-07 + art_sys_109: -3.50590452e-13 + art_sys_110: 6.96387112e-11 + art_sys_111: -1.11204552e-12 + art_sys_112: 1.06831524e-05 + art_sys_113: 9.79115101e-12 + art_sys_114: 1.00659094e-12 + art_sys_115: -7.98556292e-06 + art_sys_116: -1.93452546e-13 + art_sys_117: 9.87119821e-12 + art_sys_118: 1.07249237e-12 + art_sys_119: -2.75252823e-05 + art_sys_120: 1.00210089e-12 + art_sys_121: 4.65384329e-11 + art_sys_122: -3.67083540e-12 + art_sys_123: 4.46078527e-05 + art_sys_124: -7.54974900e-13 + art_sys_125: -5.88679489e-12 + art_sys_126: -1.62798698e-10 + art_sys_127: 2.89084323e-11 + art_sys_128: -3.34906711e-06 + art_sys_129: 7.36761173e-06 + art_sys_130: 8.76039221e-06 + art_sys_131: 4.88165761e-06 + art_sys_132: -3.38528135e-11 + art_sys_133: 1.07686021e-10 + art_sys_134: -2.11594805e-06 + art_sys_135: -1.12805234e-10 + art_sys_136: -9.10615244e-07 + art_sys_137: 2.32552834e-10 + art_sys_138: 1.37752100e-07 + art_sys_139: -4.61968995e-09 + art_sys_140: -2.38816542e-17 + art_sys_141: 2.57350266e-08 + art_sys_142: 0.0 + art_sys_143: -1.88394716e-09 + art_sys_144: -1.08838238e-08 + art_sys_145: -1.92151092e-08 + art_sys_146: 1.03828325e-11 + art_sys_147: -6.06019687e-11 + art_sys_148: -9.29414577e-10 + art_sys_149: -1.66751729e-10 + art_sys_150: 3.40623223e-12 + art_sys_151: 1.14615045e-11 + art_sys_152: 1.11456822e-11 + art_sys_153: 7.98149891e-13 + art_sys_154: 9.25525949e-13 + art_sys_155: -6.25769110e-12 + art_sys_156: -6.99305157e-11 + art_sys_157: -4.41301341e-11 art_sys_158: 0.0 - art_sys_159: 4.02933596e-10 - art_sys_160: 1.92535249e-11 - art_sys_161: 2.87492391e-11 - art_sys_162: 2.87492391e-11 - art_sys_163: -4.44284221e-11 - art_sys_164: -4.44284221e-11 - art_sys_165: 3.83843646e-25 - art_sys_166: -1.24678038e-25 - art_sys_167: -0.0 - art_sys_168: -5.87748949e-20 - art_sys_169: -3.38319175e-19 - art_sys_170: 1.20160627e-20 - art_sys_171: -2.28943362e-21 - art_sys_172: -1.17935750e-20 - art_sys_173: 1.10159904e-21 - art_sys_174: 1.01378884e-21 - art_sys_175: 1.48857037e-22 - art_sys_176: -1.28748586e-22 - art_sys_177: 1.63351635e-21 - art_sys_178: -1.51824191e-25 - art_sys_179: -3.13736908e-25 - art_sys_180: 9.87277777e-24 - art_sys_181: -9.45513510e-23 - art_sys_182: -4.35186833e-23 - art_sys_183: -5.29481277e-25 - art_sys_184: 1.43989551e-25 - art_sys_185: 4.33593385e-27 + art_sys_159: 7.18851862e-10 + art_sys_160: 7.18851862e-10 + art_sys_161: -1.21278229e-12 + art_sys_162: 4.38354763e-25 + art_sys_163: 0.0 + art_sys_164: 2.11279767e-25 + art_sys_165: -9.58008548e-19 + art_sys_166: 5.57414823e-20 + art_sys_167: 7.39651607e-20 + art_sys_168: -1.09895543e-20 + art_sys_169: -5.55212473e-21 + art_sys_170: 5.02675074e-21 + art_sys_171: -4.05568531e-20 + art_sys_172: 4.13742046e-20 + art_sys_173: -6.87288694e-21 + art_sys_174: -2.22437867e-23 + art_sys_175: 1.14891168e-21 + art_sys_176: -2.17865430e-21 + art_sys_177: 3.77027713e-22 + art_sys_178: 3.27073944e-23 + art_sys_179: -3.83196392e-22 + art_sys_180: -7.97567570e-23 + art_sys_181: 2.08607140e-23 + art_sys_182: -6.44297024e-24 + art_sys_183: -1.41307556e-25 + art_sys_184: -3.04172090e-26 + art_sys_185: -6.18520170e-25 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -25580,167 +25580,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: 2.05282799e-98 - art_sys_26: 1.07536514e-92 - art_sys_27: -6.75417068e-86 - art_sys_28: 4.04095249e-85 - art_sys_29: 1.55207578e-74 - art_sys_30: 1.26149930e-71 - art_sys_31: 5.90085199e-69 - art_sys_32: -7.04888567e-61 - art_sys_33: -2.11240810e-55 - art_sys_34: -2.12980908e-48 - art_sys_35: -1.49304137e-49 - art_sys_36: 4.53731186e-24 - art_sys_37: -2.89285522e-22 - art_sys_38: -1.05725815e-21 - art_sys_39: -3.04681657e-21 - art_sys_40: -7.24121425e-19 - art_sys_41: 3.14358216e-18 - art_sys_42: 1.12030282e-17 - art_sys_43: 2.25194584e-17 - art_sys_44: -1.04198711e-15 - art_sys_45: 9.90029664e-16 - art_sys_46: 1.58573504e-14 - art_sys_47: 3.09081742e-31 - art_sys_48: 1.89298105e-30 - art_sys_49: 5.21586742e-31 + art_sys_25: -1.29335471e-58 + art_sys_26: 3.29966627e-52 + art_sys_27: 1.71364902e-44 + art_sys_28: -4.19053762e-44 + art_sys_29: -4.53731186e-24 + art_sys_30: 2.89285522e-22 + art_sys_31: 1.05725815e-21 + art_sys_32: 3.04681657e-21 + art_sys_33: -7.24121425e-19 + art_sys_34: -3.14358216e-18 + art_sys_35: -1.12030282e-17 + art_sys_36: 4.79418932e-35 + art_sys_37: -1.32365850e-34 + art_sys_38: 2.25194584e-17 + art_sys_39: -2.18249207e-34 + art_sys_40: 7.40602679e-35 + art_sys_41: -1.99647190e-34 + art_sys_42: 1.04198711e-15 + art_sys_43: 9.02889742e-33 + art_sys_44: -9.90029664e-16 + art_sys_45: 7.75319903e-32 + art_sys_46: 2.97046827e-31 + art_sys_47: -1.58573504e-14 + art_sys_48: -2.12707755e-32 + art_sys_49: 6.11957136e-32 art_sys_50: 8.21882918e-14 - art_sys_51: 8.12229309e-13 - art_sys_52: 1.51767016e-29 - art_sys_53: -3.37992230e-29 - art_sys_54: -2.01533450e-29 - art_sys_55: 1.39776682e-29 - art_sys_56: 6.74287333e-30 - art_sys_57: -2.10866669e-12 - art_sys_58: 1.67922879e-11 - art_sys_59: 1.58611159e-28 - art_sys_60: 1.83265302e-27 - art_sys_61: 7.04432475e-11 - art_sys_62: 1.00982330e-28 - art_sys_63: -1.47777158e-26 - art_sys_64: -6.81473414e-14 - art_sys_65: -9.72559108e-15 - art_sys_66: -8.39958251e-15 - art_sys_67: -8.10004465e-14 - art_sys_68: 6.61567069e-14 - art_sys_69: -5.12070859e-14 - art_sys_70: -1.00591363e-13 - art_sys_71: -1.49616967e-13 - art_sys_72: 2.22116401e-14 - art_sys_73: 2.72001618e-14 - art_sys_74: 1.08278766e-10 - art_sys_75: -3.37201569e-14 - art_sys_76: 2.11596590e-14 - art_sys_77: -6.16766125e-15 - art_sys_78: -3.70561228e-15 - art_sys_79: -1.46732505e-14 - art_sys_80: -4.65447461e-15 - art_sys_81: 1.45872284e-14 - art_sys_82: -1.50249706e-21 - art_sys_83: 1.23168101e-15 - art_sys_84: -6.40712981e-17 - art_sys_85: -4.52374426e-16 - art_sys_86: -1.91091288e-16 - art_sys_87: 2.17299801e-14 - art_sys_88: 1.53537269e-15 - art_sys_89: -4.05472955e-17 - art_sys_90: -1.38440939e-15 - art_sys_91: 8.59951718e-23 - art_sys_92: 1.91493972e-18 - art_sys_93: -1.38013579e-17 - art_sys_94: -3.66001954e-12 - art_sys_95: 6.11110960e-09 - art_sys_96: 1.28426208e-17 - art_sys_97: -6.63783562e-18 - art_sys_98: 1.68015232e-08 - art_sys_99: 1.44548577e-15 - art_sys_100: -8.08794553e-08 - art_sys_101: -8.36874556e-14 - art_sys_102: -2.09716751e-07 - art_sys_103: -5.85610893e-14 - art_sys_104: 4.42540951e-15 - art_sys_105: -4.41957080e-11 - art_sys_106: -2.72279796e-12 - art_sys_107: 3.88614809e-07 - art_sys_108: -7.03233454e-11 - art_sys_109: -2.94070530e-10 - art_sys_110: 1.69314353e-06 - art_sys_111: -4.75310775e-16 - art_sys_112: -3.45681463e-11 - art_sys_113: -9.10757353e-14 - art_sys_114: -4.03072492e-11 - art_sys_115: -4.77681773e-15 - art_sys_116: 9.98774069e-08 - art_sys_117: 1.06866495e-10 - art_sys_118: -3.06354118e-12 - art_sys_119: 7.91546980e-06 - art_sys_120: -4.55517280e-12 - art_sys_121: 3.83256358e-11 - art_sys_122: 4.13115613e-12 - art_sys_123: -6.24830932e-06 - art_sys_124: -2.24883442e-13 - art_sys_125: 1.84751473e-10 - art_sys_126: -4.34670241e-11 - art_sys_127: 2.07093155e-05 - art_sys_128: -2.49257087e-12 - art_sys_129: 5.49640064e-11 - art_sys_130: 3.26969556e-05 - art_sys_131: -5.94587985e-10 - art_sys_132: 2.30701696e-11 - art_sys_133: -3.26133701e-06 - art_sys_134: 2.14087496e-10 - art_sys_135: -1.57081204e-11 - art_sys_136: -1.70246340e-10 - art_sys_137: -5.69132745e-06 - art_sys_138: -6.05656528e-11 - art_sys_139: -6.38619608e-06 - art_sys_140: 1.89311865e-11 - art_sys_141: -4.30410369e-08 - art_sys_142: 1.55420734e-10 - art_sys_143: -3.24284885e-06 - art_sys_144: 1.21148399e-11 - art_sys_145: 1.44299729e-10 - art_sys_146: -1.62923461e-06 - art_sys_147: 3.56082197e-11 - art_sys_148: 4.77184868e-13 - art_sys_149: 1.88694290e-09 - art_sys_150: -3.18475701e-07 - art_sys_151: -5.01535790e-09 - art_sys_152: -3.53608530e-11 - art_sys_153: 4.39688507e-08 - art_sys_154: -5.74670961e-13 - art_sys_155: 7.34304394e-13 - art_sys_156: 0.0 - art_sys_157: -2.00418274e-10 + art_sys_51: -8.12229309e-13 + art_sys_52: -6.04175666e-29 + art_sys_53: -2.40198138e-29 + art_sys_54: -3.48081100e-29 + art_sys_55: -2.55786358e-29 + art_sys_56: -1.83342840e-30 + art_sys_57: -5.73461667e-15 + art_sys_58: -3.30040513e-15 + art_sys_59: 1.48489772e-14 + art_sys_60: 2.10866669e-12 + art_sys_61: -6.41618661e-14 + art_sys_62: -2.86257682e-15 + art_sys_63: -1.07669859e-14 + art_sys_64: 4.35322613e-14 + art_sys_65: -1.14295905e-13 + art_sys_66: -1.67922879e-11 + art_sys_67: 2.03407911e-14 + art_sys_68: -3.06338639e-14 + art_sys_69: 7.04432469e-11 + art_sys_70: -3.82613919e-24 + art_sys_71: -1.37662886e-22 + art_sys_72: -1.25374676e-22 + art_sys_73: 1.08278767e-10 + art_sys_74: 9.57055126e-20 + art_sys_75: -4.66789754e-14 + art_sys_76: 6.58500573e-15 + art_sys_77: -8.17246622e-15 + art_sys_78: -1.41290077e-14 + art_sys_79: -2.27245144e-14 + art_sys_80: 3.71969013e-20 + art_sys_81: 9.25229483e-16 + art_sys_82: 4.23762050e-16 + art_sys_83: 4.37018489e-16 + art_sys_84: 2.37388000e-14 + art_sys_85: 6.44737746e-17 + art_sys_86: 1.74469219e-16 + art_sys_87: -2.56961336e-14 + art_sys_88: 1.42608610e-14 + art_sys_89: 3.38907485e-12 + art_sys_90: -1.06606702e-19 + art_sys_91: 6.44528841e-20 + art_sys_92: 6.11108039e-09 + art_sys_93: 2.58041679e-20 + art_sys_94: -1.68015359e-08 + art_sys_95: 4.25820267e-18 + art_sys_96: -2.04555228e-12 + art_sys_97: 8.08791920e-08 + art_sys_98: -3.58768035e-16 + art_sys_99: 1.34264587e-17 + art_sys_100: -2.09715683e-07 + art_sys_101: -7.14718815e-15 + art_sys_102: 3.79970682e-11 + art_sys_103: 3.88617426e-07 + art_sys_104: 2.99834681e-15 + art_sys_105: -2.27561011e-10 + art_sys_106: 1.76693869e-15 + art_sys_107: -5.18717805e-16 + art_sys_108: -1.69312485e-06 + art_sys_109: 1.20438572e-13 + art_sys_110: 7.44881601e-12 + art_sys_111: -3.29169576e-13 + art_sys_112: 1.00565891e-07 + art_sys_113: 1.56160135e-11 + art_sys_114: 2.18726273e-13 + art_sys_115: -7.91563684e-06 + art_sys_116: 6.30227906e-12 + art_sys_117: 1.33488142e-11 + art_sys_118: 3.68840913e-13 + art_sys_119: 6.24878518e-06 + art_sys_120: 1.12799060e-13 + art_sys_121: 9.38890166e-12 + art_sys_122: -4.18482922e-13 + art_sys_123: 2.07786399e-05 + art_sys_124: 2.05965240e-13 + art_sys_125: -1.32232484e-12 + art_sys_126: -1.60707183e-10 + art_sys_127: 3.60460012e-12 + art_sys_128: -3.26947929e-05 + art_sys_129: -3.29521861e-06 + art_sys_130: -5.71383790e-06 + art_sys_131: -6.39583818e-06 + art_sys_132: -8.72091735e-12 + art_sys_133: -1.38201851e-09 + art_sys_134: 3.22537134e-06 + art_sys_135: -2.23924138e-10 + art_sys_136: 1.58044783e-06 + art_sys_137: 7.55086214e-10 + art_sys_138: -2.66037754e-07 + art_sys_139: 7.21537186e-09 + art_sys_140: -5.47585672e-18 + art_sys_141: -5.32826657e-08 + art_sys_142: 0.0 + art_sys_143: 3.68392632e-09 + art_sys_144: 2.15849286e-08 + art_sys_145: 3.95112602e-08 + art_sys_146: -6.26721356e-13 + art_sys_147: 1.97477192e-11 + art_sys_148: 1.55777294e-09 + art_sys_149: 3.12243619e-10 + art_sys_150: -9.69109476e-12 + art_sys_151: -1.74231336e-11 + art_sys_152: -1.82536913e-11 + art_sys_153: -1.44808546e-12 + art_sys_154: -8.75681666e-13 + art_sys_155: 1.08702556e-11 + art_sys_156: 1.45852634e-10 + art_sys_157: 9.06438869e-11 art_sys_158: -0.0 - art_sys_159: -1.51285230e-10 - art_sys_160: -2.20548669e-11 - art_sys_161: -5.41567900e-11 - art_sys_162: -5.41567900e-11 - art_sys_163: 2.15840424e-11 - art_sys_164: 2.15840424e-11 - art_sys_165: -1.22381318e-25 - art_sys_166: 3.86290679e-26 - art_sys_167: 0.0 - art_sys_168: 9.01410342e-19 - art_sys_169: 5.97321658e-19 - art_sys_170: -3.12996688e-20 - art_sys_171: -3.09815583e-20 - art_sys_172: 1.80635376e-20 - art_sys_173: -2.80160123e-21 - art_sys_174: -2.44481343e-21 - art_sys_175: -2.60258047e-22 - art_sys_176: 1.92951924e-22 - art_sys_177: -1.67933814e-21 - art_sys_178: -2.59810639e-23 - art_sys_179: 1.91310825e-24 - art_sys_180: -3.57285776e-24 - art_sys_181: 4.75314796e-23 - art_sys_182: 9.30118513e-23 - art_sys_183: 1.01978519e-24 - art_sys_184: -1.81140706e-25 - art_sys_185: -4.96672773e-27 + art_sys_159: -1.09371733e-09 + art_sys_160: -1.09371733e-09 + art_sys_161: 5.04044129e-12 + art_sys_162: -1.55833497e-24 + art_sys_163: -0.0 + art_sys_164: -7.60363068e-25 + art_sys_165: 1.88114320e-18 + art_sys_166: -1.15002096e-19 + art_sys_167: -1.28470400e-19 + art_sys_168: 1.61053866e-20 + art_sys_169: 8.49016486e-21 + art_sys_170: -2.57903702e-21 + art_sys_171: 4.66283436e-20 + art_sys_172: -4.30374246e-20 + art_sys_173: 1.01008884e-20 + art_sys_174: 4.58307175e-23 + art_sys_175: -2.11429007e-21 + art_sys_176: 3.83813739e-21 + art_sys_177: -6.61043205e-22 + art_sys_178: -7.53666511e-24 + art_sys_179: -1.24533011e-22 + art_sys_180: 8.70656493e-23 + art_sys_181: -3.31148542e-23 + art_sys_182: 5.26070472e-24 + art_sys_183: 1.78539096e-25 + art_sys_184: 4.51987667e-26 + art_sys_185: 1.04039618e-24 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -25871,167 +25871,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: 3.63240753e-100 - art_sys_26: 1.90282112e-94 - art_sys_27: -1.19512696e-87 - art_sys_28: 7.15032462e-87 - art_sys_29: 2.74634402e-76 - art_sys_30: 2.23217906e-73 - art_sys_31: 1.04413520e-70 - art_sys_32: -1.24727576e-62 - art_sys_33: -3.73783253e-57 - art_sys_34: -3.76862296e-50 - art_sys_35: -2.64188469e-51 - art_sys_36: 8.10606026e-26 - art_sys_37: -9.28682551e-24 - art_sys_38: -1.46799097e-23 - art_sys_39: -3.84986226e-22 - art_sys_40: -5.77868369e-20 - art_sys_41: 2.59627848e-19 - art_sys_42: 9.18605772e-19 - art_sys_43: 1.92392281e-18 - art_sys_44: -1.07511785e-16 - art_sys_45: 1.84313112e-16 - art_sys_46: 2.64520084e-15 - art_sys_47: 5.03582620e-32 - art_sys_48: 1.70233082e-31 - art_sys_49: 9.26011265e-32 + art_sys_25: -2.31062055e-60 + art_sys_26: 5.89496188e-54 + art_sys_27: 3.06149010e-46 + art_sys_28: -7.48653272e-46 + art_sys_29: -8.10606026e-26 + art_sys_30: 9.28682551e-24 + art_sys_31: 1.46799097e-23 + art_sys_32: 3.84986226e-22 + art_sys_33: -5.77868369e-20 + art_sys_34: -2.59627848e-19 + art_sys_35: -9.18605772e-19 + art_sys_36: 3.93330319e-36 + art_sys_37: -1.20732057e-35 + art_sys_38: 1.92392281e-18 + art_sys_39: -1.86216355e-35 + art_sys_40: 6.36636178e-36 + art_sys_41: -1.74030761e-35 + art_sys_42: 1.07511785e-16 + art_sys_43: 9.34266079e-34 + art_sys_44: -1.84313112e-16 + art_sys_45: 1.36308320e-32 + art_sys_46: 5.03038403e-32 + art_sys_47: -2.64520084e-15 + art_sys_48: -7.63030210e-34 + art_sys_49: 1.19607260e-32 art_sys_50: 9.20408277e-15 - art_sys_51: 1.45308429e-13 - art_sys_52: 2.79885224e-30 - art_sys_53: -6.01223548e-30 - art_sys_54: -3.39706514e-30 - art_sys_55: 2.63941996e-30 - art_sys_56: 7.91257092e-31 - art_sys_57: -5.63572239e-13 - art_sys_58: 5.38984462e-13 - art_sys_59: -3.03471457e-30 - art_sys_60: 7.54641592e-29 - art_sys_61: 1.23383224e-11 - art_sys_62: 6.07737556e-29 - art_sys_63: -4.47510318e-27 - art_sys_64: -4.01728167e-15 - art_sys_65: 1.71923557e-15 - art_sys_66: -3.09914292e-14 - art_sys_67: 3.47779007e-15 - art_sys_68: -8.53444252e-14 - art_sys_69: -2.57469141e-15 - art_sys_70: 1.18100174e-14 - art_sys_71: -5.00088579e-14 - art_sys_72: 7.48177026e-15 - art_sys_73: 1.36146140e-14 - art_sys_74: 3.17596416e-11 - art_sys_75: -2.56033586e-14 - art_sys_76: 3.35391091e-14 - art_sys_77: 5.02640109e-15 - art_sys_78: 1.00066737e-14 - art_sys_79: -1.20192546e-14 - art_sys_80: -4.16533741e-15 - art_sys_81: 1.33567862e-14 - art_sys_82: -4.40953517e-22 - art_sys_83: -6.93223347e-16 - art_sys_84: 6.52521402e-16 - art_sys_85: 3.43248561e-16 - art_sys_86: -5.84000602e-17 - art_sys_87: 9.74615208e-15 - art_sys_88: 9.92530359e-15 - art_sys_89: 8.23748957e-18 - art_sys_90: 4.03745415e-15 - art_sys_91: 2.49904258e-23 - art_sys_92: -3.38352196e-18 - art_sys_93: 9.97730964e-18 - art_sys_94: -3.00889137e-14 - art_sys_95: -1.13805940e-09 - art_sys_96: -2.39170793e-18 - art_sys_97: 1.23623992e-18 - art_sys_98: 6.43563548e-09 - art_sys_99: 4.49580250e-16 - art_sys_100: 6.87479895e-09 - art_sys_101: 7.23330917e-15 - art_sys_102: -6.94475793e-08 - art_sys_103: 4.77808936e-15 - art_sys_104: 3.11601064e-16 - art_sys_105: -1.89088844e-11 - art_sys_106: -9.01562011e-13 - art_sys_107: -1.41778839e-07 - art_sys_108: -3.02718204e-11 - art_sys_109: -1.34539783e-10 - art_sys_110: 2.66271011e-07 - art_sys_111: -1.85452460e-14 - art_sys_112: -5.44355014e-12 - art_sys_113: -3.03156842e-14 - art_sys_114: 2.03925937e-10 - art_sys_115: -8.99715896e-15 - art_sys_116: -1.21022224e-06 - art_sys_117: 1.27101070e-09 - art_sys_118: -4.68861972e-13 - art_sys_119: 7.22897486e-08 - art_sys_120: 4.50441435e-14 - art_sys_121: -3.25702257e-10 - art_sys_122: 6.77343890e-13 - art_sys_123: -5.56791736e-06 - art_sys_124: -1.78027950e-13 - art_sys_125: -1.15360772e-10 - art_sys_126: 4.47080410e-13 - art_sys_127: -4.48393297e-06 - art_sys_128: 9.83398444e-14 - art_sys_129: -7.98248035e-11 - art_sys_130: 1.45614524e-05 - art_sys_131: 9.77601430e-10 - art_sys_132: 2.35591520e-12 - art_sys_133: -2.42292930e-05 - art_sys_134: -1.75140807e-11 - art_sys_135: -7.17459059e-12 - art_sys_136: 3.44450458e-10 - art_sys_137: 2.68648093e-06 - art_sys_138: -5.03730452e-11 - art_sys_139: 4.62622792e-06 - art_sys_140: -3.97725680e-11 - art_sys_141: 5.67715864e-08 - art_sys_142: -1.41204467e-10 - art_sys_143: 4.32265307e-06 - art_sys_144: -4.74997450e-11 - art_sys_145: -1.35403532e-10 - art_sys_146: 2.51919798e-06 - art_sys_147: -5.38310604e-11 - art_sys_148: -2.36120503e-13 - art_sys_149: -3.81989111e-09 - art_sys_150: 5.95873040e-07 - art_sys_151: 6.41227790e-09 - art_sys_152: 6.99501320e-11 - art_sys_153: -8.76063661e-08 - art_sys_154: -9.03649129e-14 - art_sys_155: 5.64151800e-12 - art_sys_156: -0.0 - art_sys_157: 4.47754576e-10 + art_sys_51: -1.45308429e-13 + art_sys_52: -1.03948106e-29 + art_sys_53: -4.31487877e-30 + art_sys_54: -6.26099668e-30 + art_sys_55: -4.58771684e-30 + art_sys_56: -1.06501982e-30 + art_sys_57: 7.30292156e-15 + art_sys_58: -3.53600918e-15 + art_sys_59: 1.53896807e-14 + art_sys_60: 5.63572239e-13 + art_sys_61: 3.71092150e-14 + art_sys_62: 8.99110253e-15 + art_sys_63: 5.38343540e-16 + art_sys_64: -9.67066733e-15 + art_sys_65: 1.38358302e-14 + art_sys_66: -5.38984462e-13 + art_sys_67: -3.66963206e-15 + art_sys_68: 2.98363341e-15 + art_sys_69: 1.23383223e-11 + art_sys_70: -7.64831532e-26 + art_sys_71: -4.65726646e-24 + art_sys_72: -4.78237434e-24 + art_sys_73: 3.17596416e-11 + art_sys_74: 1.67611148e-20 + art_sys_75: 1.73857570e-15 + art_sys_76: 1.04304084e-14 + art_sys_77: -1.39846551e-15 + art_sys_78: 6.71076532e-15 + art_sys_79: 1.83197691e-16 + art_sys_80: 6.54928865e-21 + art_sys_81: 3.83392150e-15 + art_sys_82: 3.06385624e-16 + art_sys_83: 6.56484592e-16 + art_sys_84: 3.25296489e-16 + art_sys_85: 7.05033223e-16 + art_sys_86: 9.49184915e-17 + art_sys_87: 1.64992226e-15 + art_sys_88: -1.69039882e-13 + art_sys_89: 3.22041854e-14 + art_sys_90: -1.86717412e-20 + art_sys_91: 1.33195253e-20 + art_sys_92: -1.13807109e-09 + art_sys_93: 1.00634288e-21 + art_sys_94: -6.43563342e-09 + art_sys_95: -2.17344465e-18 + art_sys_96: -1.41526292e-12 + art_sys_97: -6.87477455e-09 + art_sys_98: -1.37374301e-16 + art_sys_99: 9.51050816e-18 + art_sys_100: -6.94472506e-08 + art_sys_101: 6.21574997e-16 + art_sys_102: 6.75351640e-12 + art_sys_103: -1.41777980e-07 + art_sys_104: -2.48944090e-16 + art_sys_105: -1.28684706e-10 + art_sys_106: 2.59062107e-17 + art_sys_107: -3.31774492e-16 + art_sys_108: -2.66268069e-07 + art_sys_109: 4.09516716e-14 + art_sys_110: -1.47287161e-10 + art_sys_111: 2.00988389e-14 + art_sys_112: -1.21023856e-06 + art_sys_113: -1.08393878e-11 + art_sys_114: -3.15652332e-14 + art_sys_115: -7.22940534e-08 + art_sys_116: 9.35212580e-13 + art_sys_117: -5.25620588e-11 + art_sys_118: -1.36905816e-14 + art_sys_119: 5.56821599e-06 + art_sys_120: -7.19883430e-14 + art_sys_121: -4.16048772e-12 + art_sys_122: 2.54181403e-13 + art_sys_123: -4.46871729e-06 + art_sys_124: 1.23778688e-13 + art_sys_125: 5.04483838e-13 + art_sys_126: -4.75976553e-12 + art_sys_127: -1.62865751e-12 + art_sys_128: -1.45727701e-05 + art_sys_129: -2.42270846e-05 + art_sys_130: 2.72958229e-06 + art_sys_131: 4.63664895e-06 + art_sys_132: 1.43507457e-11 + art_sys_133: -1.71226857e-09 + art_sys_134: -4.29130398e-06 + art_sys_135: 1.62601904e-10 + art_sys_136: -2.43989823e-06 + art_sys_137: -9.05084896e-10 + art_sys_138: 4.83741749e-07 + art_sys_139: -7.88883340e-09 + art_sys_140: 3.31052186e-18 + art_sys_141: 1.00408648e-07 + art_sys_142: -0.0 + art_sys_143: -6.58071983e-09 + art_sys_144: -3.85612647e-08 + art_sys_145: -7.39392223e-08 + art_sys_146: 1.94792914e-11 + art_sys_147: 7.81296335e-11 + art_sys_148: -2.73631826e-09 + art_sys_149: -5.26366134e-10 + art_sys_150: 1.57951190e-11 + art_sys_151: 2.94701863e-11 + art_sys_152: 3.13338539e-11 + art_sys_153: 2.54951768e-12 + art_sys_154: -2.66197290e-12 + art_sys_155: -1.36440079e-11 + art_sys_156: -2.78558251e-10 + art_sys_157: -1.71590732e-10 art_sys_158: 0.0 - art_sys_159: -3.19619990e-10 - art_sys_160: 4.29034472e-11 - art_sys_161: -4.77605059e-11 - art_sys_162: -4.77605059e-11 - art_sys_163: 3.36193036e-11 - art_sys_164: 3.36193036e-11 - art_sys_165: -2.36097435e-25 - art_sys_166: 7.24443015e-26 - art_sys_167: 0.0 - art_sys_168: -4.85004066e-19 - art_sys_169: -9.16488413e-19 - art_sys_170: 7.25297063e-20 - art_sys_171: 1.35631538e-19 - art_sys_172: -2.43297973e-20 - art_sys_173: 5.46198279e-21 - art_sys_174: 4.87493661e-21 - art_sys_175: 3.44412795e-22 - art_sys_176: -2.71463686e-22 - art_sys_177: 1.92745079e-22 - art_sys_178: 9.08154164e-23 - art_sys_179: -6.59093275e-24 - art_sys_180: -8.51780144e-24 - art_sys_181: 2.08069832e-22 - art_sys_182: -1.73798973e-22 - art_sys_183: -1.66439900e-24 - art_sys_184: 1.51005961e-25 - art_sys_185: 5.96869256e-27 + art_sys_159: 2.43883663e-09 + art_sys_160: 2.43883663e-09 + art_sys_161: -6.29865990e-11 + art_sys_162: 2.27311571e-23 + art_sys_163: 0.0 + art_sys_164: 1.34401929e-23 + art_sys_165: -3.62763690e-18 + art_sys_166: 4.37939588e-20 + art_sys_167: 2.39267711e-19 + art_sys_168: -3.09930107e-20 + art_sys_169: -1.55158385e-20 + art_sys_170: 1.08419456e-20 + art_sys_171: -5.39332510e-20 + art_sys_172: 3.40237682e-20 + art_sys_173: -1.41265277e-20 + art_sys_174: -8.57102618e-23 + art_sys_175: 3.50240201e-21 + art_sys_176: -6.01962490e-21 + art_sys_177: 1.02764691e-21 + art_sys_178: -5.28677810e-23 + art_sys_179: 1.23216876e-21 + art_sys_180: -6.76009331e-23 + art_sys_181: 4.73138920e-23 + art_sys_182: 1.12471210e-24 + art_sys_183: -1.70765609e-25 + art_sys_184: -5.44699105e-26 + art_sys_185: -1.03103628e-24 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -26162,167 +26162,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: -1.53830016e-101 - art_sys_26: -8.05831951e-96 - art_sys_27: 5.06128236e-89 - art_sys_28: -3.02811443e-88 - art_sys_29: -1.16305824e-77 - art_sys_30: -9.45312833e-75 - art_sys_31: -4.42184243e-72 - art_sys_32: 5.28212905e-64 - art_sys_33: 1.58294696e-58 - art_sys_34: 1.59598650e-51 - art_sys_35: 1.11882042e-52 - art_sys_36: -3.45845938e-27 - art_sys_37: 5.34551977e-25 - art_sys_38: 5.64548878e-24 - art_sys_39: -4.29973547e-23 - art_sys_40: -4.87860419e-21 - art_sys_41: 1.62458361e-20 - art_sys_42: 6.90829894e-20 - art_sys_43: 1.60488798e-19 - art_sys_44: -1.67274544e-17 - art_sys_45: 5.91693550e-18 - art_sys_46: 3.08128012e-16 - art_sys_47: 6.01530741e-33 - art_sys_48: -1.99239410e-33 - art_sys_49: 9.59554499e-33 + art_sys_25: 9.85828374e-62 + art_sys_26: -2.51509089e-55 + art_sys_27: -1.30618756e-47 + art_sys_28: 3.19413604e-47 + art_sys_29: 3.45845938e-27 + art_sys_30: -5.34551977e-25 + art_sys_31: -5.64548878e-24 + art_sys_32: 4.29973547e-23 + art_sys_33: -4.87860419e-21 + art_sys_34: -1.62458361e-20 + art_sys_35: -6.90829894e-20 + art_sys_36: 2.88560166e-37 + art_sys_37: -9.40556979e-37 + art_sys_38: 1.60488798e-19 + art_sys_39: -1.55371324e-36 + art_sys_40: 5.41512553e-37 + art_sys_41: -1.58541343e-36 + art_sys_42: 1.67274544e-17 + art_sys_43: 1.42952125e-34 + art_sys_44: -5.91693550e-18 + art_sys_45: 1.64901792e-33 + art_sys_46: 5.51128863e-33 + art_sys_47: -3.08128012e-16 + art_sys_48: 8.20175317e-34 + art_sys_49: 1.10307191e-33 art_sys_50: -2.65519013e-17 - art_sys_51: 1.43191210e-14 - art_sys_52: 2.89518782e-31 - art_sys_53: -5.89253170e-31 - art_sys_54: -3.22628193e-31 - art_sys_55: 2.83516508e-31 - art_sys_56: 1.84398326e-31 - art_sys_57: -6.72824031e-14 - art_sys_58: -3.99351511e-13 - art_sys_59: -5.64546316e-30 - art_sys_60: -2.91683455e-29 - art_sys_61: 1.70142488e-13 - art_sys_62: 8.11361090e-30 - art_sys_63: -2.65741683e-28 - art_sys_64: 2.52380987e-14 - art_sys_65: 7.66729522e-15 - art_sys_66: 1.97243911e-14 - art_sys_67: 2.26624260e-14 - art_sys_68: -7.93998098e-15 - art_sys_69: 2.94868681e-14 - art_sys_70: 6.06623357e-14 - art_sys_71: 1.21186925e-13 - art_sys_72: -2.15877560e-14 - art_sys_73: -2.94686481e-14 - art_sys_74: 1.75953573e-12 - art_sys_75: 4.66359705e-14 - art_sys_76: -2.08340518e-14 - art_sys_77: 9.64109417e-16 - art_sys_78: 1.48166294e-14 - art_sys_79: 2.26791226e-14 - art_sys_80: -4.11770321e-15 - art_sys_81: -2.40367673e-14 - art_sys_82: -2.44728043e-23 - art_sys_83: 2.22042571e-15 - art_sys_84: -1.88086591e-16 - art_sys_85: 6.28712580e-16 - art_sys_86: 1.24209886e-16 - art_sys_87: -2.00565324e-14 - art_sys_88: -7.48857501e-15 - art_sys_89: -2.23506484e-17 - art_sys_90: -8.20002666e-15 - art_sys_91: 1.34125829e-24 - art_sys_92: -1.04888453e-17 - art_sys_93: -2.30114859e-19 - art_sys_94: 3.99253418e-13 - art_sys_95: -4.67293889e-10 - art_sys_96: -9.82033205e-19 - art_sys_97: 5.07588211e-19 - art_sys_98: 5.83319187e-11 - art_sys_99: -9.59941511e-18 - art_sys_100: 5.49903906e-09 - art_sys_101: 5.70825303e-15 - art_sys_102: 3.12508562e-09 - art_sys_103: 3.95111951e-15 - art_sys_104: -1.99254938e-16 - art_sys_105: 5.76759751e-12 - art_sys_106: 4.05834601e-14 - art_sys_107: -4.90751953e-08 - art_sys_108: 9.18106651e-12 - art_sys_109: 1.54693787e-11 - art_sys_110: -1.03634630e-07 - art_sys_111: -3.04337666e-15 - art_sys_112: 2.11498562e-12 - art_sys_113: 1.33218189e-15 - art_sys_114: 1.89899207e-10 - art_sys_115: -1.71508527e-15 - art_sys_116: -1.75256283e-07 - art_sys_117: 6.42167001e-10 - art_sys_118: 1.90691382e-13 - art_sys_119: -8.76302968e-07 - art_sys_120: 3.83112945e-13 - art_sys_121: -5.39692073e-10 - art_sys_122: -2.44244016e-13 - art_sys_123: 6.46433797e-08 - art_sys_124: -7.11164742e-15 - art_sys_125: -1.21680370e-10 - art_sys_126: 4.92764227e-12 - art_sys_127: -4.03403825e-06 - art_sys_128: 2.30787656e-13 - art_sys_129: 1.12484451e-10 - art_sys_130: -3.51666811e-06 - art_sys_131: -1.46241595e-09 - art_sys_132: -1.80465845e-12 - art_sys_133: -1.01996604e-05 - art_sys_134: -3.66092611e-11 - art_sys_135: 1.18561524e-12 - art_sys_136: -6.12861548e-10 - art_sys_137: 1.77347322e-05 - art_sys_138: 1.82229338e-12 - art_sys_139: -2.62689637e-06 - art_sys_140: 8.63592771e-11 - art_sys_141: -5.36828492e-08 - art_sys_142: 1.39798996e-10 - art_sys_143: -3.25380434e-06 - art_sys_144: 6.94014973e-11 - art_sys_145: -2.04320885e-10 - art_sys_146: -3.51733730e-06 - art_sys_147: 7.20459631e-11 - art_sys_148: -7.63774377e-13 - art_sys_149: 7.30458410e-09 - art_sys_150: -1.06241796e-06 - art_sys_151: -1.69738360e-08 - art_sys_152: -1.33072298e-10 - art_sys_153: 1.64464071e-07 - art_sys_154: 3.51743204e-14 - art_sys_155: -1.74925249e-11 - art_sys_156: 0.0 - art_sys_157: -6.84145009e-10 + art_sys_51: -1.43191210e-14 + art_sys_52: -9.54413667e-31 + art_sys_53: -4.28592908e-31 + art_sys_54: -6.33292860e-31 + art_sys_55: -4.55097134e-31 + art_sys_56: -1.63837983e-31 + art_sys_57: 3.40751393e-14 + art_sys_58: -1.94056279e-14 + art_sys_59: -1.04242935e-14 + art_sys_60: 6.72824031e-14 + art_sys_61: 8.35276898e-14 + art_sys_62: -3.51005700e-15 + art_sys_63: -3.45722253e-14 + art_sys_64: 5.12225242e-14 + art_sys_65: -9.04961306e-14 + art_sys_66: 3.99351511e-13 + art_sys_67: 1.15475074e-14 + art_sys_68: -1.52683961e-14 + art_sys_69: 1.70142487e-13 + art_sys_70: 1.00943575e-25 + art_sys_71: 3.23010761e-24 + art_sys_72: 2.84284346e-24 + art_sys_73: 1.75953573e-12 + art_sys_74: 2.30797484e-22 + art_sys_75: -2.19326721e-14 + art_sys_76: 1.62745775e-14 + art_sys_77: -2.16183582e-14 + art_sys_78: -5.12362454e-16 + art_sys_79: -9.80233402e-15 + art_sys_80: 9.38402153e-23 + art_sys_81: 2.34769112e-15 + art_sys_82: 1.51180384e-16 + art_sys_83: 1.54037579e-16 + art_sys_84: 1.04590384e-14 + art_sys_85: -6.75130513e-17 + art_sys_86: -2.67958247e-17 + art_sys_87: -7.15300564e-15 + art_sys_88: -2.03625374e-14 + art_sys_89: -3.70624047e-13 + art_sys_90: -2.57036657e-22 + art_sys_91: -3.41658049e-23 + art_sys_92: -4.67294061e-10 + art_sys_93: -7.03515383e-22 + art_sys_94: -5.83309056e-11 + art_sys_95: -5.19380669e-19 + art_sys_96: 9.24009600e-14 + art_sys_97: -5.49902093e-09 + art_sys_98: -1.23760300e-18 + art_sys_99: 6.59992866e-19 + art_sys_100: 3.12506566e-09 + art_sys_101: 4.87980597e-16 + art_sys_102: -4.25044549e-12 + art_sys_103: -4.90752995e-08 + art_sys_104: -2.02979066e-16 + art_sys_105: -1.84534970e-11 + art_sys_106: -9.26068074e-17 + art_sys_107: -2.21231683e-17 + art_sys_108: 1.03633487e-07 + art_sys_109: -2.24979351e-15 + art_sys_110: -1.31209410e-10 + art_sys_111: 2.14000222e-14 + art_sys_112: -1.75335560e-07 + art_sys_113: -8.39057195e-12 + art_sys_114: -1.64371869e-14 + art_sys_115: 8.76321084e-07 + art_sys_116: -3.93118644e-13 + art_sys_117: 5.47429930e-11 + art_sys_118: -2.32094839e-14 + art_sys_119: -6.46748030e-08 + art_sys_120: -1.90675973e-14 + art_sys_121: -1.61499832e-12 + art_sys_122: 6.60000262e-14 + art_sys_123: -4.03390632e-06 + art_sys_124: 4.09872677e-15 + art_sys_125: 2.30640865e-13 + art_sys_126: 1.70997772e-11 + art_sys_127: -1.22648806e-12 + art_sys_128: 3.43970866e-06 + art_sys_129: -1.01543868e-05 + art_sys_130: 1.77448152e-05 + art_sys_131: -2.64919500e-06 + art_sys_132: -4.87825168e-12 + art_sys_133: -1.53192556e-10 + art_sys_134: 3.20670573e-06 + art_sys_135: -1.86602001e-10 + art_sys_136: 3.37619462e-06 + art_sys_137: 1.36730386e-09 + art_sys_138: -8.47407497e-07 + art_sys_139: 6.03030786e-09 + art_sys_140: -3.78311444e-18 + art_sys_141: -1.87664024e-07 + art_sys_142: 0.0 + art_sys_143: 1.15346977e-08 + art_sys_144: 6.77856940e-08 + art_sys_145: 1.38602474e-07 + art_sys_146: 9.26706971e-12 + art_sys_147: -2.21477082e-10 + art_sys_148: 4.41575579e-09 + art_sys_149: 8.44177599e-10 + art_sys_150: -3.99482498e-11 + art_sys_151: -4.95101129e-11 + art_sys_152: -3.70569781e-11 + art_sys_153: -4.06307052e-12 + art_sys_154: 1.04504765e-11 + art_sys_155: 1.61432910e-11 + art_sys_156: 5.23711392e-10 + art_sys_157: 3.23541562e-10 art_sys_158: -0.0 - art_sys_159: 2.54196907e-10 - art_sys_160: -1.37318752e-10 - art_sys_161: -4.42068524e-11 - art_sys_162: -4.42068524e-11 - art_sys_163: -7.05372998e-11 - art_sys_164: -7.05372998e-11 - art_sys_165: 7.34415154e-25 - art_sys_166: -2.41810097e-25 - art_sys_167: -0.0 - art_sys_168: 2.20111375e-18 - art_sys_169: 1.27470892e-18 - art_sys_170: -1.18374038e-19 - art_sys_171: -1.56463527e-19 - art_sys_172: 4.93101171e-20 - art_sys_173: -9.82233633e-21 - art_sys_174: -7.72720910e-21 - art_sys_175: -4.54990079e-22 - art_sys_176: 3.66528147e-22 - art_sys_177: 1.43958928e-21 - art_sys_178: -1.60660168e-22 - art_sys_179: 1.56092644e-23 - art_sys_180: 1.02564943e-23 - art_sys_181: -3.98226653e-22 - art_sys_182: 3.05352236e-22 - art_sys_183: 3.15352743e-24 - art_sys_184: -5.17921637e-26 - art_sys_185: -7.62246927e-27 + art_sys_159: -4.53684972e-09 + art_sys_160: -4.53684972e-09 + art_sys_161: 1.84980628e-10 + art_sys_162: -6.70631964e-23 + art_sys_163: -0.0 + art_sys_164: -3.99754512e-23 + art_sys_165: 6.56571628e-18 + art_sys_166: -7.76512500e-20 + art_sys_167: -3.53307830e-19 + art_sys_168: 5.02033004e-20 + art_sys_169: 2.72498834e-20 + art_sys_170: -1.39975133e-20 + art_sys_171: 3.54787872e-20 + art_sys_172: 5.78469522e-21 + art_sys_173: 1.66900795e-20 + art_sys_174: 1.59935308e-22 + art_sys_175: -5.37577359e-21 + art_sys_176: 9.11101339e-21 + art_sys_177: -1.51788349e-21 + art_sys_178: 1.53987925e-22 + art_sys_179: -2.80626924e-21 + art_sys_180: 2.12479786e-23 + art_sys_181: -6.77668129e-23 + art_sys_182: -9.95659345e-24 + art_sys_183: 1.40163905e-25 + art_sys_184: 2.72934978e-26 + art_sys_185: 4.38806153e-25 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -26453,167 +26453,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: 1.36110741e-102 - art_sys_26: 7.13010233e-97 - art_sys_27: -4.47828589e-90 - art_sys_28: 2.67931337e-89 - art_sys_29: 1.02908842e-78 - art_sys_30: 8.36424564e-76 - art_sys_31: 3.91250115e-73 - art_sys_32: -4.67369346e-65 - art_sys_33: -1.40061115e-59 - art_sys_34: -1.41214869e-52 - art_sys_35: -9.89946203e-54 - art_sys_36: 2.73963393e-28 - art_sys_37: 1.26257371e-25 - art_sys_38: 9.40195404e-25 - art_sys_39: -3.82134416e-24 - art_sys_40: -3.87583470e-22 - art_sys_41: -1.34793103e-24 - art_sys_42: 2.97903274e-21 - art_sys_43: 7.73945229e-21 - art_sys_44: -2.22514264e-18 - art_sys_45: -4.16219887e-18 - art_sys_46: 1.07453675e-17 - art_sys_47: 2.59369297e-34 - art_sys_48: -6.16155462e-34 - art_sys_49: 3.31638471e-34 + art_sys_25: -7.80932988e-63 + art_sys_26: 1.99235231e-56 + art_sys_27: 1.03470845e-48 + art_sys_28: -2.53026416e-48 + art_sys_29: -2.73963393e-28 + art_sys_30: -1.26257371e-25 + art_sys_31: -9.40195404e-25 + art_sys_32: 3.82134416e-24 + art_sys_33: -3.87583470e-22 + art_sys_34: 1.34793103e-24 + art_sys_35: -2.97903274e-21 + art_sys_36: 1.09828492e-38 + art_sys_37: -4.01782032e-38 + art_sys_38: 7.73945229e-21 + art_sys_39: -7.56962939e-38 + art_sys_40: 2.70734861e-38 + art_sys_41: -1.00736801e-37 + art_sys_42: 2.22514264e-18 + art_sys_43: 1.97941420e-35 + art_sys_44: 4.16219887e-18 + art_sys_45: 6.88863420e-35 + art_sys_46: 9.19063603e-35 + art_sys_47: -1.07453675e-17 + art_sys_48: 1.00029499e-34 + art_sys_49: -2.78821249e-35 art_sys_50: -3.25602369e-17 - art_sys_51: 3.42054994e-16 - art_sys_52: 7.38178475e-33 - art_sys_53: -1.40000410e-32 - art_sys_54: -7.09546693e-33 - art_sys_55: 7.56966527e-33 - art_sys_56: 5.57991498e-33 - art_sys_57: -7.00077806e-16 - art_sys_58: -9.46961659e-14 - art_sys_59: -1.08044646e-30 - art_sys_60: -1.29412119e-29 - art_sys_61: -3.16461685e-13 - art_sys_62: -1.21946965e-31 - art_sys_63: 9.03514760e-29 - art_sys_64: 7.29344019e-15 - art_sys_65: 1.04019299e-14 - art_sys_66: -7.77699182e-15 - art_sys_67: 8.90933341e-14 - art_sys_68: -2.91990921e-14 - art_sys_69: 1.87153257e-14 - art_sys_70: 2.19102776e-14 - art_sys_71: 6.59476321e-15 - art_sys_72: -1.63499226e-15 - art_sys_73: 8.57697893e-16 - art_sys_74: -6.69926775e-13 - art_sys_75: -2.57338475e-15 - art_sys_76: -4.02640119e-14 - art_sys_77: 2.66472701e-14 - art_sys_78: 4.70248269e-15 - art_sys_79: -2.00481552e-15 - art_sys_80: 9.45456718e-16 - art_sys_81: 2.21317790e-15 - art_sys_82: 9.29714112e-24 - art_sys_83: 5.28038155e-16 - art_sys_84: -9.43746709e-16 - art_sys_85: -1.17587050e-15 - art_sys_86: -4.20317594e-16 - art_sys_87: 2.06624798e-15 - art_sys_88: 8.04408007e-16 - art_sys_89: 2.88082464e-17 - art_sys_90: 1.13196764e-15 - art_sys_91: -5.34889565e-25 - art_sys_92: 5.07858041e-17 - art_sys_93: -2.69058080e-17 - art_sys_94: 5.90381066e-14 - art_sys_95: -2.29701194e-11 - art_sys_96: -4.82703800e-20 - art_sys_97: 2.49495784e-20 - art_sys_98: -2.78347068e-10 - art_sys_99: -2.16049171e-17 - art_sys_100: 4.43487499e-10 - art_sys_101: 4.56047194e-16 - art_sys_102: 4.05734617e-09 - art_sys_103: 3.25836336e-16 - art_sys_104: -4.95457557e-17 - art_sys_105: 4.44529313e-12 - art_sys_106: 5.26744120e-14 - art_sys_107: 1.18074068e-09 - art_sys_108: 7.12838752e-12 - art_sys_109: 3.03691914e-11 - art_sys_110: -3.28398899e-08 - art_sys_111: 5.63855746e-16 - art_sys_112: 6.70794497e-13 - art_sys_113: 1.76704133e-15 - art_sys_114: -1.34886801e-11 - art_sys_115: 1.76131721e-16 - art_sys_116: 6.84208671e-08 - art_sys_117: -4.45958707e-11 - art_sys_118: 5.93586819e-14 - art_sys_119: -1.25811941e-07 - art_sys_120: 4.46155602e-14 - art_sys_121: 4.30717433e-12 - art_sys_122: -7.95625153e-14 - art_sys_123: 5.83045284e-07 - art_sys_124: 1.19145048e-14 - art_sys_125: -5.86595038e-11 - art_sys_126: 6.37226065e-13 - art_sys_127: 2.04322053e-08 - art_sys_128: 2.14500246e-14 - art_sys_129: -1.01739300e-10 - art_sys_130: -2.71954464e-06 - art_sys_131: 1.68915617e-09 - art_sys_132: -4.08587262e-13 - art_sys_133: 2.30129926e-06 - art_sys_134: -1.50819701e-11 - art_sys_135: 1.00707687e-12 - art_sys_136: 1.18014664e-09 - art_sys_137: 7.00667019e-06 - art_sys_138: -2.06540273e-12 - art_sys_139: -1.24050021e-05 - art_sys_140: -1.48270012e-10 - art_sys_141: -2.01761040e-10 - art_sys_142: -6.34049845e-11 - art_sys_143: 2.34278571e-06 - art_sys_144: -1.91443191e-10 - art_sys_145: 1.28225785e-10 - art_sys_146: 3.17047104e-06 - art_sys_147: -6.64342753e-11 - art_sys_148: -8.57962338e-12 - art_sys_149: -1.21026685e-08 - art_sys_150: 1.76560631e-06 - art_sys_151: 1.74234496e-08 - art_sys_152: 2.03454847e-10 - art_sys_153: -3.16978553e-07 - art_sys_154: 1.11489074e-14 - art_sys_155: -8.16385903e-12 - art_sys_156: -0.0 - art_sys_157: 1.61910439e-09 + art_sys_51: -3.42054994e-16 + art_sys_52: -2.04597100e-32 + art_sys_53: -1.03403321e-32 + art_sys_54: -1.62217844e-32 + art_sys_55: -1.09898183e-32 + art_sys_56: -1.53975657e-33 + art_sys_57: 8.50334878e-16 + art_sys_58: 1.18055153e-14 + art_sys_59: -2.34530841e-14 + art_sys_60: 7.00077806e-16 + art_sys_61: 6.85341694e-14 + art_sys_62: 3.10808446e-14 + art_sys_63: 2.03999839e-14 + art_sys_64: -7.46670128e-14 + art_sys_65: 1.57952067e-13 + art_sys_66: 9.46961659e-14 + art_sys_67: -2.60497624e-14 + art_sys_68: 3.64826101e-14 + art_sys_69: -3.16461682e-13 + art_sys_70: 2.24242132e-26 + art_sys_71: 7.74355538e-25 + art_sys_72: 7.00935749e-25 + art_sys_73: -6.69926775e-13 + art_sys_74: -4.29967310e-22 + art_sys_75: 4.99217127e-14 + art_sys_76: -3.06352268e-14 + art_sys_77: -7.98566222e-15 + art_sys_78: 3.20507256e-15 + art_sys_79: 2.34984910e-14 + art_sys_80: -1.67590957e-22 + art_sys_81: 6.02276837e-16 + art_sys_82: -4.42339646e-16 + art_sys_83: -4.99864435e-16 + art_sys_84: -2.38794270e-14 + art_sys_85: 6.89444588e-16 + art_sys_86: -4.35502970e-16 + art_sys_87: 1.76329535e-14 + art_sys_88: 2.12488504e-15 + art_sys_89: -6.12784014e-14 + art_sys_90: 4.78952109e-22 + art_sys_91: -3.70742665e-22 + art_sys_92: -2.29696242e-11 + art_sys_93: -1.08455081e-22 + art_sys_94: 2.78347114e-10 + art_sys_95: 1.50827622e-20 + art_sys_96: 1.51368892e-13 + art_sys_97: -4.43486135e-10 + art_sys_98: 5.94243375e-18 + art_sys_99: -3.20687369e-19 + art_sys_100: 4.05732631e-09 + art_sys_101: 3.88580536e-17 + art_sys_102: -1.22267481e-12 + art_sys_103: 1.18067077e-09 + art_sys_104: -1.65688867e-17 + art_sys_105: -3.63788628e-12 + art_sys_106: -1.36047937e-17 + art_sys_107: 1.17442285e-17 + art_sys_108: 3.28395274e-08 + art_sys_109: -2.38975891e-15 + art_sys_110: -3.28386406e-11 + art_sys_111: 2.08063746e-15 + art_sys_112: 6.84112402e-08 + art_sys_113: -9.15640846e-13 + art_sys_114: -7.53979162e-16 + art_sys_115: 1.25814756e-07 + art_sys_116: -1.19887163e-13 + art_sys_117: 6.65817313e-11 + art_sys_118: -2.59961370e-15 + art_sys_119: -5.83123498e-07 + art_sys_120: 1.49738201e-15 + art_sys_121: 9.65782453e-14 + art_sys_122: -5.72822181e-15 + art_sys_123: 2.25821739e-10 + art_sys_124: -8.91227798e-15 + art_sys_125: 2.67422135e-15 + art_sys_126: 4.08959745e-12 + art_sys_127: -1.82957305e-12 + art_sys_128: 2.68149785e-06 + art_sys_129: 2.33878884e-06 + art_sys_130: 6.85861752e-06 + art_sys_131: -1.23897257e-05 + art_sys_132: 1.32865888e-11 + art_sys_133: -8.43324988e-09 + art_sys_134: -2.33542240e-06 + art_sys_135: 1.55198209e-10 + art_sys_136: -2.96158222e-06 + art_sys_137: -1.97499991e-09 + art_sys_138: 1.34313652e-06 + art_sys_139: 1.63561649e-08 + art_sys_140: 7.04481753e-18 + art_sys_141: 3.44061753e-07 + art_sys_142: -0.0 + art_sys_143: -1.89492464e-08 + art_sys_144: -1.11793525e-07 + art_sys_145: -2.46146355e-07 + art_sys_146: 2.36773668e-10 + art_sys_147: 2.81653072e-10 + art_sys_148: -6.01277263e-09 + art_sys_149: -1.13857787e-09 + art_sys_150: 8.63132626e-11 + art_sys_151: 6.59773043e-11 + art_sys_152: 5.01571122e-11 + art_sys_153: 4.51457964e-12 + art_sys_154: -2.51705351e-11 + art_sys_155: -1.30722990e-11 + art_sys_156: -9.74877203e-10 + art_sys_157: -5.58485156e-10 art_sys_158: 0.0 - art_sys_159: -2.03631030e-09 - art_sys_160: 6.19986904e-11 - art_sys_161: 1.42153553e-10 - art_sys_162: 1.42153553e-10 - art_sys_163: 1.99963530e-10 - art_sys_164: 1.99963530e-10 - art_sys_165: -2.14821112e-24 - art_sys_166: 7.03699014e-25 - art_sys_167: 0.0 - art_sys_168: -1.52028031e-18 - art_sys_169: -1.17722223e-18 - art_sys_170: 1.58400069e-19 - art_sys_171: 1.97262098e-19 - art_sys_172: -8.77843288e-20 - art_sys_173: 1.77238354e-20 - art_sys_174: 1.03352203e-20 - art_sys_175: 4.01654576e-22 - art_sys_176: -9.54481985e-23 - art_sys_177: -5.89635934e-21 - art_sys_178: 2.12673701e-22 - art_sys_179: -1.34225096e-23 - art_sys_180: -5.19712064e-23 - art_sys_181: 7.10153023e-22 - art_sys_182: -4.24093640e-22 - art_sys_183: -4.14552826e-24 - art_sys_184: -1.80164625e-25 - art_sys_185: 1.61692550e-26 + art_sys_159: 5.96249619e-09 + art_sys_160: 5.96249619e-09 + art_sys_161: -3.57401450e-10 + art_sys_162: 1.27135971e-22 + art_sys_163: 0.0 + art_sys_164: 7.51209758e-23 + art_sys_165: -1.19096170e-17 + art_sys_166: -3.40276801e-19 + art_sys_167: 3.18152723e-19 + art_sys_168: -5.49650269e-20 + art_sys_169: -3.47147167e-20 + art_sys_170: 3.25309844e-21 + art_sys_171: -9.78431871e-20 + art_sys_172: -6.87181180e-21 + art_sys_173: -2.47169479e-20 + art_sys_174: -2.88860939e-22 + art_sys_175: 5.95521355e-21 + art_sys_176: -8.62369684e-21 + art_sys_177: 1.39012980e-21 + art_sys_178: -2.10460265e-22 + art_sys_179: 3.52350636e-21 + art_sys_180: -1.14807096e-22 + art_sys_181: 4.70298985e-23 + art_sys_182: 3.80508519e-23 + art_sys_183: 8.98614345e-26 + art_sys_184: -2.26752174e-27 + art_sys_185: 8.65388773e-25 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -26744,167 +26744,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: 6.26066347e-103 - art_sys_26: 3.27962163e-97 - art_sys_27: -2.05986999e-90 - art_sys_28: 1.23239951e-89 - art_sys_29: 4.73348164e-79 - art_sys_30: 3.84728879e-76 - art_sys_31: 1.79962697e-73 - art_sys_32: -2.14975138e-65 - art_sys_33: -6.44236895e-60 - art_sys_34: -6.49543801e-53 - art_sys_35: -4.55343992e-54 - art_sys_36: 1.33919756e-28 - art_sys_37: 1.52808715e-26 - art_sys_38: 1.07716143e-25 - art_sys_39: -2.26955421e-25 - art_sys_40: -1.60884049e-23 - art_sys_41: -2.43359680e-22 - art_sys_42: -4.17446253e-22 - art_sys_43: -1.03573016e-21 - art_sys_44: -1.82116329e-19 - art_sys_45: -1.05863740e-18 - art_sys_46: -3.43012312e-18 - art_sys_47: -5.57717008e-35 - art_sys_48: 5.88765596e-34 - art_sys_49: -5.87596713e-35 + art_sys_25: -3.81737143e-63 + art_sys_26: 9.73905434e-57 + art_sys_27: 5.05788147e-49 + art_sys_28: -1.23684852e-48 + art_sys_29: -1.33919756e-28 + art_sys_30: -1.52808715e-26 + art_sys_31: -1.07716143e-25 + art_sys_32: 2.26955421e-25 + art_sys_33: -1.60884049e-23 + art_sys_34: 2.43359680e-22 + art_sys_35: 4.17446253e-22 + art_sys_36: -2.03331151e-39 + art_sys_37: 6.89010584e-39 + art_sys_38: -1.03573016e-21 + art_sys_39: 9.80155624e-39 + art_sys_40: -3.38486003e-39 + art_sys_41: 5.27338229e-39 + art_sys_42: 1.82116329e-19 + art_sys_43: 1.56959045e-36 + art_sys_44: 1.05863740e-18 + art_sys_45: -1.57094835e-35 + art_sys_46: -8.41177629e-35 + art_sys_47: 3.43012312e-18 + art_sys_48: -1.15464715e-35 + art_sys_49: -2.77887342e-35 art_sys_50: 2.48800195e-17 - art_sys_51: -1.04753648e-16 - art_sys_52: -2.48265354e-33 - art_sys_53: 4.19702801e-33 - art_sys_54: 1.92834257e-33 - art_sys_55: -2.69017741e-33 - art_sys_56: -8.64146319e-34 - art_sys_57: 1.10376361e-15 - art_sys_58: -1.12072270e-14 - art_sys_59: -1.06769732e-31 - art_sys_60: -1.08556864e-30 - art_sys_61: -6.99702119e-14 - art_sys_62: -2.09725012e-31 - art_sys_63: 2.43575283e-29 - art_sys_64: 2.06118419e-15 - art_sys_65: 4.99748207e-15 - art_sys_66: -7.90945290e-15 - art_sys_67: 6.24394022e-14 - art_sys_68: -6.76459895e-15 - art_sys_69: -2.28395646e-16 - art_sys_70: -1.50524485e-14 - art_sys_71: -5.00706147e-14 - art_sys_72: 9.05132978e-15 - art_sys_73: 1.25912540e-14 - art_sys_74: -1.76075952e-13 - art_sys_75: -1.74615164e-14 - art_sys_76: 3.97078799e-14 - art_sys_77: -1.51152287e-17 - art_sys_78: 8.65418596e-15 - art_sys_79: -8.01170289e-15 - art_sys_80: -5.88085119e-15 - art_sys_81: 8.17741134e-15 - art_sys_82: 2.44739319e-24 - art_sys_83: 1.70237588e-15 - art_sys_84: 7.88744966e-17 - art_sys_85: -4.04801733e-16 - art_sys_86: -3.65968635e-16 - art_sys_87: 5.99364246e-15 - art_sys_88: 2.47817352e-15 - art_sys_89: -5.73224960e-17 - art_sys_90: 2.53706653e-15 - art_sys_91: -1.38298762e-25 - art_sys_92: 1.77543803e-17 - art_sys_93: -6.15983450e-18 - art_sys_94: -2.14983817e-14 - art_sys_95: 1.49835162e-11 - art_sys_96: 3.14886726e-20 - art_sys_97: -1.62757258e-20 - art_sys_98: -4.65327616e-11 - art_sys_99: -3.04851945e-18 - art_sys_100: -1.88748280e-10 - art_sys_101: -1.96607871e-16 - art_sys_102: 4.17875938e-10 - art_sys_103: -1.34487209e-16 - art_sys_104: 9.56600599e-19 - art_sys_105: 3.78354642e-13 - art_sys_106: 5.42464567e-15 - art_sys_107: 2.77485220e-09 - art_sys_108: 6.27645285e-13 - art_sys_109: 1.25734106e-11 - art_sys_110: 1.37391725e-09 - art_sys_111: 2.45532096e-16 - art_sys_112: -2.79638257e-14 - art_sys_113: 1.83523532e-16 - art_sys_114: -7.15074189e-11 - art_sys_115: 1.29617752e-16 - art_sys_116: 2.18727590e-08 - art_sys_117: -6.22576462e-11 - art_sys_118: -2.68354060e-15 - art_sys_119: 5.03548257e-08 - art_sys_120: -1.71311981e-14 - art_sys_121: 2.58882032e-10 - art_sys_122: 2.92063529e-15 - art_sys_123: 7.28979133e-08 - art_sys_124: 2.30858306e-15 - art_sys_125: -8.60651324e-11 - art_sys_126: -2.92231718e-13 - art_sys_127: 4.39990772e-07 - art_sys_128: -1.19402587e-14 - art_sys_129: 1.20608080e-10 - art_sys_130: 5.45669643e-08 - art_sys_131: -1.64680270e-09 - art_sys_132: 6.34879784e-14 - art_sys_133: 1.81995771e-06 - art_sys_134: -6.22833378e-12 - art_sys_135: 5.01290407e-14 - art_sys_136: -1.73035177e-09 - art_sys_137: -1.78301982e-06 - art_sys_138: -5.09022480e-12 - art_sys_139: -4.39401537e-06 - art_sys_140: 2.35362345e-10 - art_sys_141: 8.77790351e-08 - art_sys_142: -3.15895288e-10 - art_sys_143: 9.10760418e-06 - art_sys_144: -6.44523087e-11 - art_sys_145: -1.57265408e-09 - art_sys_146: -2.12839996e-06 - art_sys_147: 5.40495327e-11 - art_sys_148: 2.77402081e-11 - art_sys_149: 1.65040581e-08 - art_sys_150: -2.15563270e-06 - art_sys_151: -2.98991253e-08 - art_sys_152: -2.09572184e-10 - art_sys_153: 4.52680821e-07 - art_sys_154: -4.69867266e-16 - art_sys_155: 9.86592841e-11 - art_sys_156: 0.0 - art_sys_157: -1.70363926e-09 + art_sys_51: 1.04753648e-16 + art_sys_52: 5.11635870e-33 + art_sys_53: 3.20399617e-33 + art_sys_54: 4.25943435e-33 + art_sys_55: 3.39853597e-33 + art_sys_56: 3.76191595e-33 + art_sys_57: -3.49466032e-15 + art_sys_58: 6.67212624e-15 + art_sys_59: 1.04844677e-14 + art_sys_60: -1.10376361e-15 + art_sys_61: 3.14180832e-14 + art_sys_62: -3.40756682e-14 + art_sys_63: -5.23133285e-15 + art_sys_64: 7.83238737e-15 + art_sys_65: 1.89975375e-14 + art_sys_66: 1.12072270e-14 + art_sys_67: -6.96000051e-15 + art_sys_68: 9.42423399e-15 + art_sys_69: -6.99702114e-14 + art_sys_70: 2.52632971e-27 + art_sys_71: 9.24083177e-26 + art_sys_72: 8.53970783e-26 + art_sys_73: -1.76075952e-13 + art_sys_74: -9.50585005e-23 + art_sys_75: 1.74487685e-14 + art_sys_76: 6.71903354e-16 + art_sys_77: 4.78293091e-14 + art_sys_78: -2.37197200e-14 + art_sys_79: 8.41298089e-15 + art_sys_80: -3.71288388e-23 + art_sys_81: -1.43299440e-15 + art_sys_82: -1.40126834e-16 + art_sys_83: 2.26669228e-16 + art_sys_84: -9.08962577e-15 + art_sys_85: -2.47277364e-17 + art_sys_86: 3.57566848e-16 + art_sys_87: 7.24725711e-15 + art_sys_88: -1.29701457e-16 + art_sys_89: 1.82524056e-14 + art_sys_90: 1.05869724e-22 + art_sys_91: -5.72658423e-23 + art_sys_92: 1.49836018e-11 + art_sys_93: 7.88940624e-24 + art_sys_94: 4.65327208e-11 + art_sys_95: 2.31047536e-20 + art_sys_96: 9.86829509e-15 + art_sys_97: 1.88747645e-10 + art_sys_98: 9.93007539e-19 + art_sys_99: -7.72472041e-20 + art_sys_100: 4.17874140e-10 + art_sys_101: -1.68199583e-17 + art_sys_102: -1.06705895e-13 + art_sys_103: 2.77484889e-09 + art_sys_104: 6.93866619e-18 + art_sys_105: 1.92428431e-11 + art_sys_106: 2.19157142e-18 + art_sys_107: 2.88773272e-18 + art_sys_108: -1.37390216e-09 + art_sys_109: -2.02058277e-16 + art_sys_110: 3.20592846e-11 + art_sys_111: -6.86108205e-16 + art_sys_112: 2.18775361e-08 + art_sys_113: 7.43695137e-12 + art_sys_114: 6.39730840e-16 + art_sys_115: -5.03558395e-08 + art_sys_116: 5.83623624e-15 + art_sys_117: -4.39308726e-12 + art_sys_118: 7.14566605e-16 + art_sys_119: -7.29448478e-08 + art_sys_120: 1.23147874e-15 + art_sys_121: 1.34227845e-13 + art_sys_122: -4.31959137e-15 + art_sys_123: 4.08794352e-07 + art_sys_124: -1.95053814e-15 + art_sys_125: -2.00194416e-14 + art_sys_126: -1.20686684e-12 + art_sys_127: -3.53496790e-13 + art_sys_128: -4.86309381e-08 + art_sys_129: 1.82254138e-06 + art_sys_130: -1.83825231e-06 + art_sys_131: -4.36021208e-06 + art_sys_132: 2.83495130e-11 + art_sys_133: -9.68917373e-09 + art_sys_134: -9.12786006e-06 + art_sys_135: -6.24282631e-11 + art_sys_136: 1.86755672e-06 + art_sys_137: 2.12065236e-09 + art_sys_138: -1.59102226e-06 + art_sys_139: -5.10699084e-08 + art_sys_140: -9.04009788e-18 + art_sys_141: -4.66731822e-07 + art_sys_142: 0.0 + art_sys_143: 2.34065419e-08 + art_sys_144: 1.38675262e-07 + art_sys_145: 3.27622498e-07 + art_sys_146: 2.52657019e-10 + art_sys_147: 3.15500288e-10 + art_sys_148: 6.65868412e-09 + art_sys_149: 1.27355959e-09 + art_sys_150: -1.32841205e-10 + art_sys_151: -1.08714655e-10 + art_sys_152: 1.96133379e-11 + art_sys_153: -3.99126508e-12 + art_sys_154: 3.22721932e-11 + art_sys_155: 1.38977429e-11 + art_sys_156: 1.32948769e-09 + art_sys_157: 7.18700806e-10 art_sys_158: -0.0 - art_sys_159: 2.14478939e-09 - art_sys_160: 7.99304617e-11 - art_sys_161: -1.10505117e-09 - art_sys_162: -1.10505117e-09 - art_sys_163: -1.70109034e-10 - art_sys_164: -1.70109034e-10 - art_sys_165: 3.48425036e-24 - art_sys_166: -1.19279818e-24 - art_sys_167: -0.0 - art_sys_168: 3.17340466e-18 - art_sys_169: 9.49830564e-19 - art_sys_170: -1.00620543e-18 - art_sys_171: -2.64994665e-19 - art_sys_172: 1.24824994e-19 - art_sys_173: -1.90242899e-20 - art_sys_174: -7.70096272e-21 - art_sys_175: -2.36139264e-22 - art_sys_176: 1.50368175e-22 - art_sys_177: 3.44278312e-21 - art_sys_178: -8.94287911e-23 - art_sys_179: -1.29016905e-23 - art_sys_180: 5.37511547e-23 - art_sys_181: -5.64235953e-22 - art_sys_182: 3.98916306e-22 - art_sys_183: 4.15684062e-24 - art_sys_184: -1.92499556e-25 - art_sys_185: -9.99674955e-26 + art_sys_159: -5.94703905e-09 + art_sys_160: -5.94703905e-09 + art_sys_161: 4.41555233e-10 + art_sys_162: -1.54341856e-22 + art_sys_163: -0.0 + art_sys_164: -9.03607630e-23 + art_sys_165: 1.63945525e-17 + art_sys_166: 7.02290611e-19 + art_sys_167: -1.39560786e-19 + art_sys_168: 3.08749553e-20 + art_sys_169: 3.15224724e-20 + art_sys_170: -2.31735032e-21 + art_sys_171: 8.01204287e-20 + art_sys_172: -3.87064829e-20 + art_sys_173: 1.57772104e-20 + art_sys_174: 3.89114373e-22 + art_sys_175: -5.89807081e-21 + art_sys_176: 1.00200389e-20 + art_sys_177: -1.66566697e-21 + art_sys_178: -9.35748478e-23 + art_sys_179: 1.65401054e-21 + art_sys_180: 2.76587004e-22 + art_sys_181: -8.62151400e-23 + art_sys_182: 1.69092696e-24 + art_sys_183: 2.53078955e-25 + art_sys_184: -1.67708022e-25 + art_sys_185: -1.74907613e-24 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -27035,167 +27035,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: 8.28878117e-104 - art_sys_26: 4.34204239e-98 - art_sys_27: -2.72715694e-91 - art_sys_28: 1.63163059e-90 - art_sys_29: 6.26687479e-80 - art_sys_30: 5.09360318e-77 - art_sys_31: 2.38260919e-74 - art_sys_32: -2.84615507e-66 - art_sys_33: -8.52934958e-61 - art_sys_34: -8.59961016e-54 - art_sys_35: -6.02850926e-55 - art_sys_36: 1.78692266e-29 - art_sys_37: 1.27093896e-27 - art_sys_38: 8.74606783e-27 - art_sys_39: 1.73766005e-27 - art_sys_40: 2.07100625e-24 - art_sys_41: -4.62429891e-23 - art_sys_42: -1.23872245e-22 - art_sys_43: -3.18836892e-22 - art_sys_44: 1.76052766e-21 - art_sys_45: -1.12688396e-19 - art_sys_46: -6.53941319e-19 - art_sys_47: -1.16942471e-35 - art_sys_48: 1.79087450e-34 - art_sys_49: -6.21654971e-36 + art_sys_25: -5.09360592e-64 + art_sys_26: 1.29950427e-57 + art_sys_27: 6.74884681e-50 + art_sys_28: -1.65035525e-49 + art_sys_29: -1.78692266e-29 + art_sys_30: -1.27093896e-27 + art_sys_31: -8.74606783e-27 + art_sys_32: -1.73766005e-27 + art_sys_33: 2.07100625e-24 + art_sys_34: 4.62429891e-23 + art_sys_35: 1.23872245e-22 + art_sys_36: -5.49724414e-40 + art_sys_37: 1.84853039e-39 + art_sys_38: -3.18836892e-22 + art_sys_39: 3.05333213e-39 + art_sys_40: -1.07049542e-39 + art_sys_41: 2.61564369e-39 + art_sys_42: -1.76052766e-21 + art_sys_43: -1.52558754e-38 + art_sys_44: 1.12688396e-19 + art_sys_45: -3.18943180e-36 + art_sys_46: -1.39746210e-35 + art_sys_47: 6.53941319e-19 + art_sys_48: -4.93254003e-36 + art_sys_49: -4.23338491e-36 art_sys_50: 7.71414326e-18 - art_sys_51: -8.77537465e-18 - art_sys_52: -2.90139123e-34 - art_sys_53: 3.22167297e-34 - art_sys_54: 7.37389013e-35 - art_sys_55: -3.65771827e-34 - art_sys_56: -2.01187291e-35 - art_sys_57: 1.52652431e-16 - art_sys_58: -6.58749902e-16 - art_sys_59: -4.59634586e-33 - art_sys_60: -5.89138639e-32 - art_sys_61: -6.29802390e-15 - art_sys_62: -2.46063286e-32 - art_sys_63: 1.85556721e-30 - art_sys_64: -2.60419371e-15 - art_sys_65: 4.02692788e-15 - art_sys_66: -3.76520187e-14 - art_sys_67: -2.09832797e-14 - art_sys_68: -6.83210362e-14 - art_sys_69: 5.55140711e-15 - art_sys_70: 3.33466903e-14 - art_sys_71: 2.44585818e-14 - art_sys_72: 9.07937921e-16 - art_sys_73: 2.77620757e-17 - art_sys_74: -1.32354011e-14 - art_sys_75: -7.03373051e-15 - art_sys_76: -5.62248493e-14 - art_sys_77: -4.42027555e-14 - art_sys_78: 6.22301183e-15 - art_sys_79: -3.16793032e-15 - art_sys_80: -6.63347498e-15 - art_sys_81: 4.09446981e-15 - art_sys_82: 1.85004247e-25 - art_sys_83: 1.49710797e-16 - art_sys_84: 3.75329014e-16 - art_sys_85: -5.59862081e-17 - art_sys_86: 1.58734181e-16 - art_sys_87: 3.72864126e-15 - art_sys_88: 1.58070615e-15 - art_sys_89: 2.07254139e-17 - art_sys_90: 1.72929666e-15 - art_sys_91: -1.01807547e-26 - art_sys_92: -2.54219232e-19 - art_sys_93: 3.21217230e-17 - art_sys_94: -5.22026094e-15 - art_sys_95: 2.86789501e-12 - art_sys_96: 6.02693713e-21 - art_sys_97: -3.11519718e-21 - art_sys_98: 3.50850156e-12 - art_sys_99: 3.49482671e-19 - art_sys_100: -4.29210899e-11 - art_sys_101: -4.44936579e-17 - art_sys_102: -1.25060172e-10 - art_sys_103: -3.09398961e-17 - art_sys_104: 2.22819423e-18 - art_sys_105: -1.35321630e-13 - art_sys_106: -1.62363266e-15 - art_sys_107: 2.69923612e-10 - art_sys_108: -2.06746429e-13 - art_sys_109: 7.94171596e-12 - art_sys_110: 1.79303101e-09 - art_sys_111: 5.77475169e-18 - art_sys_112: -3.66131011e-14 - art_sys_113: -5.42889777e-17 - art_sys_114: -2.14454495e-11 - art_sys_115: 1.09038344e-17 - art_sys_116: -1.18802654e-09 - art_sys_117: 1.95067305e-11 - art_sys_118: -3.27323856e-15 - art_sys_119: 1.39909428e-08 - art_sys_120: -4.00209459e-15 - art_sys_121: 9.11758724e-11 - art_sys_122: 4.26520259e-15 - art_sys_123: -3.42241492e-08 - art_sys_124: -3.51008238e-16 - art_sys_125: -1.35960682e-10 - art_sys_126: -7.52733232e-14 - art_sys_127: 6.25917969e-08 - art_sys_128: -2.40664349e-15 - art_sys_129: -5.49428054e-12 - art_sys_130: 2.68837965e-07 - art_sys_131: -1.64516902e-10 - art_sys_132: 2.90376933e-14 - art_sys_133: -6.73973956e-08 - art_sys_134: -4.22615816e-12 - art_sys_135: -5.83621093e-14 - art_sys_136: 2.50842551e-09 - art_sys_137: -1.19565834e-06 - art_sys_138: -1.59896752e-12 - art_sys_139: 1.32581535e-06 - art_sys_140: -3.39794246e-10 - art_sys_141: 5.11263056e-08 - art_sys_142: -1.42894648e-10 - art_sys_143: 3.21413627e-06 - art_sys_144: -5.46209351e-10 - art_sys_145: -3.15829881e-10 - art_sys_146: -5.76536606e-06 - art_sys_147: 1.38546563e-10 - art_sys_148: -2.29300909e-11 - art_sys_149: -1.83319842e-08 - art_sys_150: 2.55380585e-06 - art_sys_151: 2.19094413e-08 - art_sys_152: 3.08079840e-10 - art_sys_153: -6.95198822e-07 - art_sys_154: -6.02256234e-16 - art_sys_155: -8.45518251e-11 - art_sys_156: -0.0 - art_sys_157: 3.24624858e-09 + art_sys_51: 8.77537465e-18 + art_sys_52: 5.96032213e-36 + art_sys_53: 3.06011482e-34 + art_sys_54: 3.51150080e-34 + art_sys_55: 3.01042440e-34 + art_sys_56: 6.26932224e-34 + art_sys_57: -5.88432703e-15 + art_sys_58: -7.66187038e-16 + art_sys_59: -1.00621480e-14 + art_sys_60: -1.52652431e-16 + art_sys_61: 4.41522296e-15 + art_sys_62: -2.04265124e-15 + art_sys_63: 1.31677814e-14 + art_sys_64: -3.25904009e-14 + art_sys_65: 8.11412276e-14 + art_sys_66: 6.58749902e-16 + art_sys_67: -1.30412279e-14 + art_sys_68: 1.86031911e-14 + art_sys_69: -6.29802385e-15 + art_sys_70: 1.38974552e-28 + art_sys_71: 5.48329703e-27 + art_sys_72: 5.18342827e-27 + art_sys_73: -1.32354011e-14 + art_sys_74: -8.55592498e-24 + art_sys_75: 2.66378884e-14 + art_sys_76: -4.67907799e-14 + art_sys_77: -5.58659630e-15 + art_sys_78: 1.67084954e-15 + art_sys_79: 1.22709822e-14 + art_sys_80: -3.33330636e-24 + art_sys_81: -2.26304821e-16 + art_sys_82: 3.43390192e-17 + art_sys_83: -8.36173320e-16 + art_sys_84: -1.27066361e-14 + art_sys_85: -6.12613598e-16 + art_sys_86: 2.56515439e-16 + art_sys_87: 9.41166605e-15 + art_sys_88: -4.21797866e-15 + art_sys_89: 1.92674432e-15 + art_sys_90: 9.52333299e-24 + art_sys_91: -1.01359012e-24 + art_sys_92: 2.86788915e-12 + art_sys_93: 3.21537223e-24 + art_sys_94: -3.50850902e-12 + art_sys_95: 2.62890891e-21 + art_sys_96: -1.28704368e-14 + art_sys_97: 4.29209517e-11 + art_sys_98: -7.49651921e-20 + art_sys_99: 8.04365510e-22 + art_sys_100: -1.25059531e-10 + art_sys_101: -3.80022944e-18 + art_sys_102: 1.47513718e-13 + art_sys_103: 2.69926689e-10 + art_sys_104: 1.58732914e-18 + art_sys_105: 8.27086373e-13 + art_sys_106: 7.94252501e-19 + art_sys_107: -1.67393859e-20 + art_sys_108: -1.79301122e-09 + art_sys_109: 7.76035444e-17 + art_sys_110: 6.76916874e-12 + art_sys_111: -1.77021664e-16 + art_sys_112: -1.18683607e-09 + art_sys_113: -5.48353227e-13 + art_sys_114: 1.12555256e-16 + art_sys_115: -1.39912410e-08 + art_sys_116: 6.64627994e-15 + art_sys_117: -1.16235945e-11 + art_sys_118: 2.00708277e-16 + art_sys_119: 3.41967194e-08 + art_sys_120: 7.25942637e-17 + art_sys_121: 1.17770843e-14 + art_sys_122: -2.27703883e-16 + art_sys_123: 4.53447824e-08 + art_sys_124: 2.20319029e-16 + art_sys_125: -3.55835198e-15 + art_sys_126: -4.54651162e-13 + art_sys_127: 2.32548459e-13 + art_sys_128: -2.84422879e-07 + art_sys_129: -5.63756660e-08 + art_sys_130: -1.20508063e-06 + art_sys_131: 1.33916287e-06 + art_sys_132: 5.12036662e-12 + art_sys_133: -3.58927795e-10 + art_sys_134: -3.18392624e-06 + art_sys_135: -1.87048435e-10 + art_sys_136: 6.00370878e-06 + art_sys_137: -2.12678364e-09 + art_sys_138: 1.73671802e-06 + art_sys_139: 1.06426321e-07 + art_sys_140: 1.16243223e-17 + art_sys_141: 6.46958300e-07 + art_sys_142: -0.0 + art_sys_143: -2.94028349e-08 + art_sys_144: -1.74744672e-07 + art_sys_145: -4.33955864e-07 + art_sys_146: -9.81763185e-11 + art_sys_147: 2.10289406e-10 + art_sys_148: -3.17914446e-09 + art_sys_149: -5.20441955e-10 + art_sys_150: 2.22764666e-10 + art_sys_151: 3.50694834e-10 + art_sys_152: 6.29107743e-11 + art_sys_153: -3.12495259e-12 + art_sys_154: -6.27515871e-11 + art_sys_155: 3.32444677e-11 + art_sys_156: -1.88282006e-09 + art_sys_157: -9.28908007e-10 art_sys_158: 0.0 - art_sys_159: -4.69377845e-09 - art_sys_160: 2.31927730e-11 - art_sys_161: 1.24241696e-09 - art_sys_162: 1.24241696e-09 - art_sys_163: 4.79235392e-10 - art_sys_164: 4.79235392e-10 - art_sys_165: -6.67946388e-24 - art_sys_166: 2.24358877e-24 - art_sys_167: 0.0 - art_sys_168: 8.26216271e-20 - art_sys_169: 1.50260682e-18 - art_sys_170: 1.08360164e-18 - art_sys_171: 2.17550026e-19 - art_sys_172: -1.71116283e-19 - art_sys_173: 3.45239799e-20 - art_sys_174: -3.37686492e-21 - art_sys_175: -3.81552211e-22 - art_sys_176: 1.07199278e-21 - art_sys_177: -1.01322618e-21 - art_sys_178: 5.05419952e-23 - art_sys_179: -6.11509563e-24 - art_sys_180: -1.21430961e-22 - art_sys_181: -2.53177317e-22 - art_sys_182: -5.07229058e-23 - art_sys_183: -6.75715532e-25 - art_sys_184: -3.40989837e-25 - art_sys_185: -1.77730040e-25 + art_sys_159: 4.27901894e-09 + art_sys_160: 4.27901894e-09 + art_sys_161: -7.00288679e-10 + art_sys_162: 2.41038398e-22 + art_sys_163: 0.0 + art_sys_164: 1.40072974e-22 + art_sys_165: -2.23214133e-17 + art_sys_166: -2.02159333e-18 + art_sys_167: -8.97685775e-19 + art_sys_168: -4.46904944e-21 + art_sys_169: -3.61326258e-20 + art_sys_170: -8.78933127e-20 + art_sys_171: 2.37873324e-20 + art_sys_172: -1.84977166e-19 + art_sys_173: 5.10186501e-20 + art_sys_174: -5.27728781e-22 + art_sys_175: -4.28388598e-21 + art_sys_176: 1.45112813e-20 + art_sys_177: -2.80898126e-21 + art_sys_178: -2.67338971e-22 + art_sys_179: 1.12951732e-21 + art_sys_180: -2.70982488e-22 + art_sys_181: -2.00075458e-22 + art_sys_182: 1.40726148e-22 + art_sys_183: 5.13294493e-25 + art_sys_184: -2.62917682e-26 + art_sys_185: 5.80179756e-24 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -27326,167 +27326,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: 1.89983132e-105 - art_sys_26: 9.95218471e-100 - art_sys_27: -6.25078412e-93 - art_sys_28: 3.73978133e-92 - art_sys_29: 1.43639997e-81 - art_sys_30: 1.16748008e-78 - art_sys_31: 5.46106297e-76 - art_sys_32: -6.52353399e-68 - art_sys_33: -1.95497085e-62 - art_sys_34: -1.97107493e-55 - art_sys_35: -1.38176537e-56 - art_sys_36: 4.10643620e-31 - art_sys_37: 2.33285124e-29 - art_sys_38: 1.55879646e-28 - art_sys_39: 5.53385931e-28 - art_sys_40: 1.42815778e-25 - art_sys_41: -1.55068644e-24 - art_sys_42: -4.85437340e-24 - art_sys_43: -1.22409168e-23 - art_sys_44: 7.23637866e-22 - art_sys_45: -7.37550849e-22 - art_sys_46: -1.16579048e-20 - art_sys_47: -2.26475157e-37 - art_sys_48: 6.27450078e-36 - art_sys_49: 1.27894344e-37 + art_sys_25: -1.17053554e-65 + art_sys_26: 2.98632435e-59 + art_sys_27: 1.55091799e-51 + art_sys_28: -3.79259704e-51 + art_sys_29: -4.10643620e-31 + art_sys_30: -2.33285124e-29 + art_sys_31: -1.55879646e-28 + art_sys_32: -5.53385931e-28 + art_sys_33: 1.42815778e-25 + art_sys_34: 1.55068644e-24 + art_sys_35: 4.85437340e-24 + art_sys_36: -2.09926244e-41 + art_sys_37: 7.22379027e-41 + art_sys_38: -1.22409168e-23 + art_sys_39: 1.17628386e-40 + art_sys_40: -4.11733197e-41 + art_sys_41: 1.11851055e-40 + art_sys_42: -7.23637866e-22 + art_sys_43: -6.28020577e-39 + art_sys_44: 7.37550849e-22 + art_sys_45: -5.74566914e-38 + art_sys_46: -2.18803789e-37 + art_sys_47: 1.16579048e-20 + art_sys_48: -1.87281575e-37 + art_sys_49: -4.30973816e-38 art_sys_50: 2.76788098e-19 - art_sys_51: 3.15701488e-19 - art_sys_52: 2.34064439e-36 - art_sys_53: -1.40637099e-35 - art_sys_54: -1.16267655e-35 - art_sys_55: -6.65341418e-37 - art_sys_56: 4.28360581e-36 - art_sys_57: 6.70905462e-19 - art_sys_58: -2.38658470e-17 - art_sys_59: -2.51916914e-34 - art_sys_60: -2.08972916e-33 - art_sys_61: -5.11782790e-17 - art_sys_62: 1.36422390e-34 - art_sys_63: -3.71564169e-32 - art_sys_64: -6.64245642e-16 - art_sys_65: 5.69782991e-15 - art_sys_66: 1.88673823e-15 - art_sys_67: -5.31216962e-14 - art_sys_68: 6.26225999e-14 - art_sys_69: -4.31233342e-14 - art_sys_70: -9.18025907e-14 - art_sys_71: -1.42543570e-13 - art_sys_72: 1.81551073e-14 - art_sys_73: 2.58404262e-14 - art_sys_74: 2.66938817e-16 - art_sys_75: -3.33976210e-14 - art_sys_76: -3.87009891e-14 - art_sys_77: 3.03704495e-14 - art_sys_78: 2.84768138e-15 - art_sys_79: -1.56956997e-14 - art_sys_80: 1.75851009e-15 - art_sys_81: 1.58594694e-14 - art_sys_82: 1.75584196e-28 - art_sys_83: 4.61456856e-17 - art_sys_84: -6.80024435e-16 - art_sys_85: 1.12084645e-15 - art_sys_86: 2.58926633e-16 - art_sys_87: 1.16923973e-14 - art_sys_88: 5.00034873e-15 - art_sys_89: 1.95369407e-17 - art_sys_90: 4.96522954e-15 - art_sys_91: -3.40696195e-28 - art_sys_92: -2.03753676e-17 - art_sys_93: -2.47720925e-17 - art_sys_94: 3.68831549e-15 - art_sys_95: -2.42812470e-14 - art_sys_96: -5.10323696e-23 - art_sys_97: 2.63750478e-23 - art_sys_98: 5.20485755e-13 - art_sys_99: 3.83872377e-20 - art_sys_100: 4.36568910e-13 - art_sys_101: 4.61038476e-19 - art_sys_102: -8.37616599e-12 - art_sys_103: 3.00583470e-19 - art_sys_104: 7.50561622e-20 - art_sys_105: 1.22579943e-13 - art_sys_106: -1.08741430e-16 - art_sys_107: -2.53713212e-11 - art_sys_108: 2.00495082e-13 - art_sys_109: 7.39818728e-12 - art_sys_110: 2.63924273e-11 - art_sys_111: -2.69080565e-18 - art_sys_112: -5.39962864e-16 - art_sys_113: -3.66120467e-18 - art_sys_114: 4.48103821e-12 - art_sys_115: -1.39525558e-18 - art_sys_116: -3.16519571e-10 - art_sys_117: -5.66061257e-14 - art_sys_118: -4.59992227e-17 - art_sys_119: -4.15825999e-10 - art_sys_120: 1.25262451e-16 - art_sys_121: -1.96591581e-11 - art_sys_122: 6.71385695e-17 - art_sys_123: -1.92712599e-09 - art_sys_124: -3.88408236e-17 - art_sys_125: 9.68691031e-11 - art_sys_126: 2.63915698e-15 - art_sys_127: 4.93869709e-09 - art_sys_128: 1.02893172e-16 - art_sys_129: 8.54537672e-11 - art_sys_130: -1.76969463e-09 - art_sys_131: -1.41933953e-09 - art_sys_132: -3.34529604e-16 - art_sys_133: -3.62699315e-08 - art_sys_134: -3.23996776e-12 - art_sys_135: 8.14961950e-15 - art_sys_136: -5.24350259e-09 - art_sys_137: 1.00472108e-08 - art_sys_138: -6.55431529e-13 - art_sys_139: 1.78259904e-07 - art_sys_140: 8.65380304e-10 - art_sys_141: 1.15952035e-08 - art_sys_142: -1.76514812e-11 - art_sys_143: -1.15498427e-07 - art_sys_144: -8.32916285e-09 - art_sys_145: 3.20289480e-10 - art_sys_146: -6.46225324e-07 - art_sys_147: 4.41460337e-10 - art_sys_148: 5.21974463e-10 - art_sys_149: -9.66000114e-09 - art_sys_150: 1.76278798e-06 - art_sys_151: 1.79423167e-07 - art_sys_152: 1.74832340e-09 - art_sys_153: 2.03182686e-06 - art_sys_154: -4.36209498e-17 - art_sys_155: 3.54640571e-09 - art_sys_156: 0.0 - art_sys_157: -2.23096627e-08 + art_sys_51: -3.15701488e-19 + art_sys_52: -4.18625322e-35 + art_sys_53: -8.18515541e-36 + art_sys_54: -1.50037900e-35 + art_sys_55: -9.20239993e-36 + art_sys_56: 9.25534513e-36 + art_sys_57: 2.95140909e-15 + art_sys_58: -5.82754194e-15 + art_sys_59: -2.45744239e-15 + art_sys_60: -6.70905462e-19 + art_sys_61: -1.39893582e-15 + art_sys_62: 7.41140528e-15 + art_sys_63: -1.81764505e-14 + art_sys_64: 3.80777523e-14 + art_sys_65: -9.10962675e-14 + art_sys_66: 2.38658470e-17 + art_sys_67: 1.69607239e-14 + art_sys_68: -2.15966504e-14 + art_sys_69: -5.11782786e-17 + art_sys_70: 5.83942805e-30 + art_sys_71: 1.94496740e-28 + art_sys_72: 1.74515510e-28 + art_sys_73: 2.66938817e-16 + art_sys_74: -6.95404913e-26 + art_sys_75: -3.13543900e-14 + art_sys_76: 8.68569894e-15 + art_sys_77: -2.41624431e-14 + art_sys_78: -5.87301378e-15 + art_sys_79: -1.39183374e-14 + art_sys_80: -2.81570089e-26 + art_sys_81: -1.34804895e-15 + art_sys_82: -2.34221594e-16 + art_sys_83: 9.11078211e-16 + art_sys_84: 1.44251466e-14 + art_sys_85: -2.46889245e-16 + art_sys_86: -4.57918246e-16 + art_sys_87: -1.04955628e-14 + art_sys_88: 4.40226595e-15 + art_sys_89: 4.29396236e-15 + art_sys_90: 8.09523815e-26 + art_sys_91: 1.35702094e-25 + art_sys_92: -2.42821832e-14 + art_sys_93: -1.69975075e-25 + art_sys_94: -5.20485606e-13 + art_sys_95: -1.01768167e-22 + art_sys_96: 2.41488797e-15 + art_sys_97: -4.36567225e-13 + art_sys_98: -1.11094779e-20 + art_sys_99: 6.84068758e-22 + art_sys_100: -8.37612713e-12 + art_sys_101: 3.95799222e-20 + art_sys_102: 1.33308259e-12 + art_sys_103: -2.53712110e-11 + art_sys_104: -1.58011684e-20 + art_sys_105: -6.18207113e-11 + art_sys_106: 3.27878654e-21 + art_sys_107: -2.64101160e-20 + art_sys_108: -2.63921350e-11 + art_sys_109: 4.17341020e-18 + art_sys_110: -5.08927026e-11 + art_sys_111: 8.60785157e-19 + art_sys_112: -3.16561598e-10 + art_sys_113: -3.52477724e-11 + art_sys_114: -2.54441313e-18 + art_sys_115: 4.15834030e-10 + art_sys_116: 8.90536037e-17 + art_sys_117: 1.52714306e-12 + art_sys_118: -6.98862242e-19 + art_sys_119: 1.91263510e-09 + art_sys_120: -1.26979832e-17 + art_sys_121: -1.52951849e-15 + art_sys_122: 4.42521101e-17 + art_sys_123: 1.61199190e-08 + art_sys_124: -3.25305842e-17 + art_sys_125: 6.22445728e-15 + art_sys_126: 1.74543088e-12 + art_sys_127: -4.22430775e-13 + art_sys_128: -2.51911151e-08 + art_sys_129: -6.00930556e-08 + art_sys_130: 2.20298221e-08 + art_sys_131: 1.16565670e-07 + art_sys_132: -1.38390928e-11 + art_sys_133: 7.08396388e-09 + art_sys_134: 1.16637756e-07 + art_sys_135: 2.55578204e-10 + art_sys_136: 5.98706188e-07 + art_sys_137: -4.97697372e-09 + art_sys_138: 2.35973735e-06 + art_sys_139: -4.39733662e-07 + art_sys_140: -8.32046256e-18 + art_sys_141: -9.72541620e-07 + art_sys_142: -0.0 + art_sys_143: 1.50991445e-08 + art_sys_144: 9.41936379e-08 + art_sys_145: 4.11626771e-07 + art_sys_146: -1.24291684e-10 + art_sys_147: 2.05176054e-10 + art_sys_148: -3.06146268e-09 + art_sys_149: -4.97186442e-10 + art_sys_150: -8.44874423e-10 + art_sys_151: -3.70064644e-10 + art_sys_152: 1.92973168e-10 + art_sys_153: 9.99084590e-12 + art_sys_154: -1.31383341e-10 + art_sys_155: 3.32949068e-12 + art_sys_156: 3.01781206e-09 + art_sys_157: 1.46210341e-10 art_sys_158: -0.0 - art_sys_159: 7.52000063e-08 - art_sys_160: 1.35703013e-08 - art_sys_161: -2.03077439e-08 - art_sys_162: -2.03077439e-08 - art_sys_163: -5.73624081e-10 - art_sys_164: -5.73624081e-10 - art_sys_165: 4.07117508e-23 - art_sys_166: -1.39789268e-23 - art_sys_167: -0.0 - art_sys_168: 2.91062352e-18 - art_sys_169: 5.01696110e-18 - art_sys_170: 2.96147456e-20 - art_sys_171: -1.94395389e-18 - art_sys_172: 1.41933618e-19 - art_sys_173: 1.31690076e-19 - art_sys_174: 3.60972032e-20 - art_sys_175: 8.89295159e-21 - art_sys_176: 6.55300455e-21 - art_sys_177: 1.23886083e-20 - art_sys_178: 1.76546630e-21 - art_sys_179: -1.29472466e-21 - art_sys_180: 1.46140168e-21 - art_sys_181: -6.31756068e-21 - art_sys_182: 1.30195214e-21 - art_sys_183: 2.69380747e-24 - art_sys_184: -5.13287995e-24 - art_sys_185: -1.83787031e-24 + art_sys_159: 7.26998554e-08 + art_sys_160: 7.26998554e-08 + art_sys_161: -2.99345442e-09 + art_sys_162: 1.19212294e-21 + art_sys_163: 0.0 + art_sys_164: 7.48797884e-22 + art_sys_165: 5.28597473e-17 + art_sys_166: 1.23830394e-17 + art_sys_167: 7.05232126e-18 + art_sys_168: -7.83230357e-19 + art_sys_169: -2.44570095e-19 + art_sys_170: 2.82785150e-20 + art_sys_171: 2.37219139e-20 + art_sys_172: 9.31913592e-20 + art_sys_173: 1.03801200e-19 + art_sys_174: 6.95230359e-22 + art_sys_175: -7.70961815e-21 + art_sys_176: 5.90253374e-21 + art_sys_177: -3.07024204e-21 + art_sys_178: -8.73372629e-22 + art_sys_179: -2.83100881e-22 + art_sys_180: -1.32495136e-21 + art_sys_181: 3.79277192e-23 + art_sys_182: -1.14728026e-22 + art_sys_183: -8.47678273e-25 + art_sys_184: 1.72673596e-25 + art_sys_185: 3.28966634e-23 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -27617,167 +27617,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: 3.57557039e-109 - art_sys_26: 1.87304718e-103 - art_sys_27: -1.17642648e-96 - art_sys_28: 7.03844140e-96 - art_sys_29: 2.70337117e-85 - art_sys_30: 2.19725149e-82 - art_sys_31: 1.02779730e-79 - art_sys_32: -1.22775926e-71 - art_sys_33: -3.67934553e-66 - art_sys_34: -3.70965417e-59 - art_sys_35: -2.60054631e-60 - art_sys_36: 7.73113125e-35 - art_sys_37: 4.24705910e-33 - art_sys_38: 2.65041875e-32 - art_sys_39: 2.75521701e-31 - art_sys_40: 6.78034752e-29 - art_sys_41: -5.31792209e-28 - art_sys_42: -1.84214528e-27 - art_sys_43: -4.17701990e-27 - art_sys_44: 4.96479948e-25 - art_sys_45: 1.58806274e-24 - art_sys_46: 3.14623460e-24 - art_sys_47: 4.25297455e-41 - art_sys_48: -3.71220210e-40 - art_sys_49: -1.64628765e-41 + art_sys_25: -2.20375121e-69 + art_sys_26: 5.62231190e-63 + art_sys_27: 2.91989203e-55 + art_sys_28: -7.14027043e-55 + art_sys_29: -7.73113125e-35 + art_sys_30: -4.24705910e-33 + art_sys_31: -2.65041875e-32 + art_sys_32: -2.75521701e-31 + art_sys_33: 6.78034752e-29 + art_sys_34: 5.31792209e-28 + art_sys_35: 1.84214528e-27 + art_sys_36: -7.84750425e-45 + art_sys_37: 2.31675446e-44 + art_sys_38: -4.17701990e-27 + art_sys_39: 4.03064283e-44 + art_sys_40: -1.38650130e-44 + art_sys_41: 4.26593987e-44 + art_sys_42: -4.96479948e-25 + art_sys_43: -4.22462391e-42 + art_sys_44: -1.58806274e-24 + art_sys_45: 1.40307168e-41 + art_sys_46: 9.18365212e-41 + art_sys_47: -3.14623460e-24 + art_sys_48: 1.57609356e-42 + art_sys_49: 3.09256866e-41 art_sys_50: -1.82663241e-23 - art_sys_51: -9.24457090e-24 - art_sys_52: 7.51635238e-41 - art_sys_53: 4.66298852e-40 - art_sys_54: 4.83631284e-40 - art_sys_55: 2.63318615e-40 - art_sys_56: -1.66343310e-40 - art_sys_57: -9.84555952e-22 - art_sys_58: -5.41565679e-20 - art_sys_59: -6.31467079e-37 - art_sys_60: -2.44873425e-36 - art_sys_61: -9.90944211e-20 - art_sys_62: 4.09852575e-37 - art_sys_63: -1.10248391e-35 - art_sys_64: 1.15236300e-14 - art_sys_65: 1.56006041e-15 - art_sys_66: 1.49877598e-14 - art_sys_67: 4.47860679e-14 - art_sys_68: -4.18053171e-14 - art_sys_69: 4.50313448e-14 - art_sys_70: 9.40154017e-14 - art_sys_71: 1.62063004e-13 - art_sys_72: -2.39676226e-14 - art_sys_73: -3.36639002e-14 - art_sys_74: 6.76262950e-20 - art_sys_75: 4.87183051e-14 - art_sys_76: -3.30374606e-14 - art_sys_77: 3.40674602e-14 - art_sys_78: 1.64015885e-14 - art_sys_79: 2.34676856e-14 - art_sys_80: -5.20333137e-15 - art_sys_81: -2.44054728e-14 - art_sys_82: -5.97315494e-27 - art_sys_83: 3.04100443e-16 - art_sys_84: 8.05041854e-17 - art_sys_85: 7.12252948e-16 - art_sys_86: -1.50740200e-16 - art_sys_87: -1.90364532e-14 - art_sys_88: -8.22568753e-15 - art_sys_89: -3.01652551e-17 - art_sys_90: -8.33491639e-15 - art_sys_91: 8.43559095e-28 - art_sys_92: 1.20431010e-17 - art_sys_93: 2.39862906e-18 - art_sys_94: -6.01962046e-15 - art_sys_95: -1.34368713e-16 - art_sys_96: -2.82491516e-25 - art_sys_97: 1.45973859e-25 - art_sys_98: 2.73549404e-17 - art_sys_99: -1.95946034e-24 - art_sys_100: 2.90414699e-15 - art_sys_101: 3.01466593e-21 - art_sys_102: 4.54601998e-15 - art_sys_103: 2.08724003e-21 - art_sys_104: -8.87179468e-23 - art_sys_105: -1.17776159e-13 - art_sys_106: 5.90196147e-20 - art_sys_107: -5.03005660e-14 - art_sys_108: -1.91737196e-13 - art_sys_109: -5.74840770e-12 - art_sys_110: -2.08633892e-13 - art_sys_111: -3.04815126e-21 - art_sys_112: 4.25959238e-18 - art_sys_113: 1.94995754e-21 - art_sys_114: -2.30542901e-12 - art_sys_115: -3.42860443e-21 - art_sys_116: -3.78423600e-13 - art_sys_117: 1.39797580e-13 - art_sys_118: 3.83994428e-19 - art_sys_119: -4.96148116e-12 - art_sys_120: 7.82704974e-19 - art_sys_121: 1.06920250e-11 - art_sys_122: -4.90004215e-19 - art_sys_123: 2.16534241e-11 - art_sys_124: -7.64507343e-21 - art_sys_125: -6.56607368e-11 - art_sys_126: -5.30788669e-17 - art_sys_127: -9.07626661e-09 - art_sys_128: 1.74357175e-19 - art_sys_129: 5.59951824e-12 - art_sys_130: 1.38638488e-08 - art_sys_131: 4.28674481e-11 - art_sys_132: 8.64733120e-17 - art_sys_133: 6.64715134e-09 - art_sys_134: 2.53048747e-12 - art_sys_135: -8.12996021e-15 - art_sys_136: -4.45261182e-10 - art_sys_137: -1.14713090e-08 - art_sys_138: 5.91308726e-13 - art_sys_139: 7.39739051e-09 - art_sys_140: 5.61578369e-10 - art_sys_141: -9.55396326e-09 - art_sys_142: 1.69698553e-11 - art_sys_143: -2.96463731e-08 - art_sys_144: -3.77404074e-08 - art_sys_145: -2.66943011e-10 - art_sys_146: 1.76444297e-07 - art_sys_147: 2.22338557e-09 - art_sys_148: 2.79930470e-09 - art_sys_149: 1.82042078e-09 - art_sys_150: -3.32609633e-07 - art_sys_151: -7.06073913e-08 - art_sys_152: 7.94921051e-09 - art_sys_153: -4.22144684e-07 - art_sys_154: -2.44599822e-17 - art_sys_155: 1.22527261e-08 - art_sys_156: -0.0 - art_sys_157: -2.54815792e-08 + art_sys_51: 9.24457090e-24 + art_sys_52: 2.00145592e-39 + art_sys_53: 1.84186331e-40 + art_sys_54: 4.38826022e-40 + art_sys_55: 2.49526744e-40 + art_sys_56: -3.75164405e-39 + art_sys_57: -1.48688363e-14 + art_sys_58: -3.59583375e-15 + art_sys_59: 1.24957329e-14 + art_sys_60: 9.84555952e-22 + art_sys_61: 9.32102488e-14 + art_sys_62: -4.29668069e-14 + art_sys_63: -8.71046021e-15 + art_sys_64: -6.74174657e-16 + art_sys_65: 5.96228291e-14 + art_sys_66: 5.41565679e-20 + art_sys_67: -1.44154008e-14 + art_sys_68: 2.14598686e-14 + art_sys_69: -9.90944203e-20 + art_sys_70: -1.57387430e-31 + art_sys_71: 4.80252426e-31 + art_sys_72: 3.87138038e-31 + art_sys_73: 6.76262950e-20 + art_sys_74: -1.34639870e-28 + art_sys_75: 3.65281453e-14 + art_sys_76: 1.64905248e-14 + art_sys_77: 2.02767466e-14 + art_sys_78: 8.09220337e-15 + art_sys_79: 1.80134143e-14 + art_sys_80: 2.64586549e-27 + art_sys_81: -2.06905178e-15 + art_sys_82: -3.39724688e-16 + art_sys_83: -2.01888595e-16 + art_sys_84: -1.91761878e-14 + art_sys_85: -4.07896391e-16 + art_sys_86: -1.34870734e-16 + art_sys_87: 1.52825852e-14 + art_sys_88: -6.63694789e-15 + art_sys_89: -6.74981935e-15 + art_sys_90: -4.52216733e-27 + art_sys_91: -6.88508925e-26 + art_sys_92: -1.34368782e-16 + art_sys_93: 1.58573165e-25 + art_sys_94: -2.73543957e-17 + art_sys_95: -1.50633011e-25 + art_sys_96: -5.15416359e-15 + art_sys_97: -2.90413752e-15 + art_sys_98: -5.78332583e-25 + art_sys_99: 2.02188563e-25 + art_sys_100: 4.54599293e-15 + art_sys_101: 2.57449395e-22 + art_sys_102: 1.02567047e-12 + art_sys_103: -5.03008858e-14 + art_sys_104: -1.07272137e-22 + art_sys_105: -4.85633207e-11 + art_sys_106: -4.82076148e-23 + art_sys_107: -1.15183570e-23 + art_sys_108: 2.08631592e-13 + art_sys_109: -4.77551018e-21 + art_sys_110: -3.68335219e-11 + art_sys_111: 1.15763816e-20 + art_sys_112: -3.78860841e-13 + art_sys_113: -3.01910539e-11 + art_sys_114: -7.99897192e-21 + art_sys_115: 4.96142626e-12 + art_sys_116: -7.81600907e-19 + art_sys_117: -2.24885267e-12 + art_sys_118: -1.40382471e-20 + art_sys_119: -4.93774881e-13 + art_sys_120: -2.30075209e-20 + art_sys_121: 3.69024891e-17 + art_sys_122: -1.98808241e-19 + art_sys_123: 1.75471837e-08 + art_sys_124: -5.25673188e-17 + art_sys_125: 4.59397546e-15 + art_sys_126: 1.34497522e-12 + art_sys_127: -3.20609322e-13 + art_sys_128: 1.49267604e-08 + art_sys_129: 5.02486891e-09 + art_sys_130: -6.25976109e-09 + art_sys_131: 2.79468175e-08 + art_sys_132: -9.58523485e-12 + art_sys_133: 5.02724224e-09 + art_sys_134: 3.06374995e-08 + art_sys_135: 1.67760697e-10 + art_sys_136: -1.31006903e-07 + art_sys_137: -3.61696022e-10 + art_sys_138: -3.95263776e-07 + art_sys_139: 9.61526031e-08 + art_sys_140: 3.84422797e-17 + art_sys_141: 9.81887432e-07 + art_sys_142: -0.0 + art_sys_143: -1.25934177e-07 + art_sys_144: -7.27619090e-07 + art_sys_145: -9.82201465e-07 + art_sys_146: 1.13932193e-10 + art_sys_147: -2.29566837e-10 + art_sys_148: -4.81909713e-09 + art_sys_149: -7.51678860e-10 + art_sys_150: 8.70106057e-11 + art_sys_151: 4.86183943e-09 + art_sys_152: 2.11561987e-09 + art_sys_153: 1.05429406e-10 + art_sys_154: -1.38478763e-09 + art_sys_155: 2.54446044e-09 + art_sys_156: -3.55121681e-09 + art_sys_157: -4.90625022e-09 art_sys_158: -0.0 - art_sys_159: 1.91443779e-07 - art_sys_160: 4.74672118e-08 - art_sys_161: -6.85998015e-08 - art_sys_162: -6.85998015e-08 - art_sys_163: 3.28817238e-09 - art_sys_164: 3.28817238e-09 - art_sys_165: 8.75687564e-23 - art_sys_166: -3.12193508e-23 - art_sys_167: -0.0 - art_sys_168: -5.19548813e-18 - art_sys_169: -2.31935065e-18 - art_sys_170: 7.51309590e-18 - art_sys_171: -7.72605180e-18 - art_sys_172: -3.80790615e-19 - art_sys_173: 5.88026906e-19 - art_sys_174: 1.83918111e-19 - art_sys_175: 2.92867307e-20 - art_sys_176: 4.03631000e-20 - art_sys_177: 1.77643346e-20 - art_sys_178: 4.31386636e-21 - art_sys_179: -4.86076874e-21 - art_sys_180: 3.39055513e-21 - art_sys_181: -2.81855233e-20 - art_sys_182: 1.22971532e-21 - art_sys_183: 1.27196462e-23 - art_sys_184: -2.60369578e-23 - art_sys_185: -9.42814493e-24 + art_sys_159: 2.25481582e-07 + art_sys_160: 2.25481582e-07 + art_sys_161: -1.96486397e-08 + art_sys_162: 7.37513108e-21 + art_sys_163: 0.0 + art_sys_164: 4.50039970e-21 + art_sys_165: 2.30921517e-17 + art_sys_166: -2.02183660e-17 + art_sys_167: -8.79153793e-18 + art_sys_168: -4.17561770e-18 + art_sys_169: -1.86312155e-18 + art_sys_170: -2.07519628e-18 + art_sys_171: 5.61312650e-19 + art_sys_172: 2.17412160e-19 + art_sys_173: 6.28812589e-19 + art_sys_174: -7.95775662e-22 + art_sys_175: -2.28405194e-20 + art_sys_176: 1.04009259e-21 + art_sys_177: -2.00503045e-20 + art_sys_178: -6.55760381e-21 + art_sys_179: -1.29578410e-20 + art_sys_180: -1.30174415e-20 + art_sys_181: -2.94814042e-22 + art_sys_182: 1.27135363e-22 + art_sys_183: -4.90264269e-24 + art_sys_184: 1.64026252e-24 + art_sys_185: 2.45928461e-22 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -27908,167 +27908,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: 6.08244803e-113 - art_sys_26: 3.18626426e-107 - art_sys_27: -2.00123396e-100 - art_sys_28: 1.19731817e-99 - art_sys_29: 4.59873889e-89 - art_sys_30: 3.73777230e-86 - art_sys_31: 1.74839899e-83 - art_sys_32: -2.08855681e-75 - art_sys_33: -6.25898121e-70 - art_sys_34: -6.31053962e-63 - art_sys_35: -4.42382222e-64 - art_sys_36: 1.31170418e-38 - art_sys_37: 9.08579461e-37 - art_sys_38: 5.09717781e-36 - art_sys_39: 1.05673022e-34 - art_sys_40: 2.72250845e-32 - art_sys_41: -1.85504436e-31 - art_sys_42: -6.69603715e-31 - art_sys_43: -1.26206691e-30 - art_sys_44: 3.07623325e-28 - art_sys_45: 1.10645273e-27 - art_sys_46: -1.30835908e-27 - art_sys_47: -3.52480842e-44 - art_sys_48: -2.82159696e-42 - art_sys_49: -5.56229721e-43 + art_sys_25: -3.73900015e-73 + art_sys_26: 9.53910991e-67 + art_sys_27: 4.95404231e-59 + art_sys_28: -1.21145582e-58 + art_sys_29: -1.31170418e-38 + art_sys_30: -9.08579461e-37 + art_sys_31: -5.09717781e-36 + art_sys_32: -1.05673022e-34 + art_sys_33: 2.72250845e-32 + art_sys_34: 1.85504436e-31 + art_sys_35: 6.69603715e-31 + art_sys_36: -2.83714396e-48 + art_sys_37: 6.63792710e-48 + art_sys_38: -1.26206691e-30 + art_sys_39: 1.22484297e-47 + art_sys_40: -4.06066526e-48 + art_sys_41: 1.58003477e-47 + art_sys_42: -3.07623325e-28 + art_sys_43: -2.66574421e-45 + art_sys_44: -1.10645273e-27 + art_sys_45: -1.23508842e-44 + art_sys_46: 1.57088190e-45 + art_sys_47: 1.30835908e-27 + art_sys_48: 5.85414500e-44 + art_sys_49: 2.36911219e-45 art_sys_50: -1.29147098e-25 - art_sys_51: -9.46165279e-25 - art_sys_52: -1.72169925e-41 - art_sys_53: 3.93733210e-41 - art_sys_54: 2.35211212e-41 - art_sys_55: -1.55090324e-41 - art_sys_56: -9.55666527e-42 - art_sys_57: 6.32141821e-24 - art_sys_58: -8.98078225e-23 - art_sys_59: -9.06923003e-40 - art_sys_60: -7.54562714e-39 - art_sys_61: -7.13801197e-22 - art_sys_62: -2.47630086e-39 - art_sys_63: 7.05457199e-37 - art_sys_64: -2.82498256e-15 - art_sys_65: -1.47413522e-14 - art_sys_66: 3.45832148e-14 - art_sys_67: 8.99847767e-14 - art_sys_68: -6.27188150e-14 - art_sys_69: 5.47697955e-14 - art_sys_70: 9.48854730e-14 - art_sys_71: 1.25426222e-13 - art_sys_72: -1.49270987e-14 - art_sys_73: -1.65645826e-14 - art_sys_74: -5.13094782e-21 - art_sys_75: 1.57349283e-14 - art_sys_76: -3.39417671e-14 - art_sys_77: 7.57380626e-16 - art_sys_78: -1.44335617e-15 - art_sys_79: 5.30501021e-15 - art_sys_80: 1.11374973e-15 - art_sys_81: -4.70263432e-15 - art_sys_82: -1.15095314e-27 - art_sys_83: 3.53569288e-16 - art_sys_84: 7.26534693e-16 - art_sys_85: 1.62258354e-16 - art_sys_86: -9.80746906e-17 - art_sys_87: -1.93371369e-15 - art_sys_88: -5.89237247e-16 - art_sys_89: -6.69411083e-17 - art_sys_90: -4.77770769e-16 - art_sys_91: 1.93826481e-28 - art_sys_92: 1.46691174e-17 - art_sys_93: 2.17302627e-18 - art_sys_94: -1.12510813e-16 - art_sys_95: 4.43282479e-18 - art_sys_96: 9.29981663e-27 - art_sys_97: -4.81564283e-27 - art_sys_98: -1.60083916e-17 - art_sys_99: -1.06965569e-24 - art_sys_100: -1.45154178e-16 - art_sys_101: -1.50888862e-22 - art_sys_102: 3.34088577e-16 - art_sys_103: -1.03877663e-22 - art_sys_104: -1.67528854e-24 - art_sys_105: -4.56960001e-13 - art_sys_106: 4.33718715e-21 - art_sys_107: 6.14218209e-15 - art_sys_108: -7.49440785e-13 - art_sys_109: -2.59649362e-11 - art_sys_110: 1.49971776e-14 - art_sys_111: 4.54443995e-22 - art_sys_112: -3.06102072e-19 - art_sys_113: 1.48988371e-22 - art_sys_114: -5.18699217e-12 - art_sys_115: 4.10232664e-22 - art_sys_116: 9.60530652e-14 - art_sys_117: -7.82649025e-12 - art_sys_118: -2.78137020e-20 - art_sys_119: 7.15296811e-13 - art_sys_120: -9.42022166e-20 - art_sys_121: 2.79505803e-11 - art_sys_122: 3.50487784e-20 - art_sys_123: 7.47566828e-11 - art_sys_124: 4.64652915e-20 - art_sys_125: -1.30600646e-10 - art_sys_126: -3.74770163e-16 - art_sys_127: -4.16275061e-08 - art_sys_128: -2.23920894e-18 - art_sys_129: 4.79305326e-11 - art_sys_130: -1.39973859e-08 - art_sys_131: -4.67723530e-10 - art_sys_132: 4.39991223e-16 - art_sys_133: -1.08089943e-09 - art_sys_134: 1.19060167e-11 - art_sys_135: -3.79358195e-14 - art_sys_136: -5.29096701e-09 - art_sys_137: -2.23237879e-08 - art_sys_138: 2.81926691e-12 - art_sys_139: 2.12709827e-08 - art_sys_140: 4.24295697e-10 - art_sys_141: -4.57382132e-08 - art_sys_142: 7.94034014e-11 - art_sys_143: 1.60197559e-08 - art_sys_144: 1.37578029e-08 - art_sys_145: -1.74614256e-09 - art_sys_146: -7.54945187e-08 - art_sys_147: -6.17297252e-10 - art_sys_148: -8.00599129e-10 - art_sys_149: 3.18791983e-09 - art_sys_150: 1.84510974e-07 - art_sys_151: -5.60023370e-08 - art_sys_152: -2.31170876e-09 - art_sys_153: -1.15410189e-07 - art_sys_154: -8.11868576e-17 - art_sys_155: -3.52044811e-09 - art_sys_156: -0.0 - art_sys_157: -8.04693408e-08 + art_sys_51: 9.46165279e-25 + art_sys_52: 7.28765377e-41 + art_sys_53: 2.75900394e-41 + art_sys_54: 4.35043626e-41 + art_sys_55: 2.96371600e-41 + art_sys_56: 1.42903082e-41 + art_sys_57: 1.17254575e-14 + art_sys_58: 8.51696351e-16 + art_sys_59: -4.18856874e-15 + art_sys_60: -6.32141817e-24 + art_sys_61: -1.24752241e-13 + art_sys_62: 8.23275447e-14 + art_sys_63: 6.92657010e-14 + art_sys_64: -1.31144764e-13 + art_sys_65: 1.95347175e-13 + art_sys_66: 8.98078222e-23 + art_sys_67: -2.19335118e-14 + art_sys_68: 3.05989690e-14 + art_sys_69: -7.13801191e-22 + art_sys_70: -3.51213756e-31 + art_sys_71: 4.55073455e-32 + art_sys_72: 1.38713908e-32 + art_sys_73: -5.13094782e-21 + art_sys_74: -9.42455626e-31 + art_sys_75: 3.62708520e-14 + art_sys_76: 4.54567387e-14 + art_sys_77: -2.32498006e-14 + art_sys_78: -1.61626941e-14 + art_sys_79: 1.60589517e-14 + art_sys_80: 2.31910437e-27 + art_sys_81: 1.70815911e-15 + art_sys_82: -1.67372473e-16 + art_sys_83: -6.43610887e-16 + art_sys_84: -1.59291317e-14 + art_sys_85: 1.34356310e-16 + art_sys_86: 3.11976286e-16 + art_sys_87: 1.10150768e-14 + art_sys_88: -4.62577077e-15 + art_sys_89: -4.54436644e-15 + art_sys_90: -3.99862031e-27 + art_sys_91: -5.70037220e-26 + art_sys_92: 4.43285421e-18 + art_sys_93: 1.31925651e-25 + art_sys_94: 1.60083623e-17 + art_sys_95: 7.38134373e-27 + art_sys_96: -2.91239311e-15 + art_sys_97: 1.45153686e-16 + art_sys_98: 3.41093378e-25 + art_sys_99: -2.64164615e-26 + art_sys_100: 3.34087504e-16 + art_sys_101: -1.28903638e-23 + art_sys_102: -7.23249092e-13 + art_sys_103: 6.14219944e-15 + art_sys_104: 5.35466183e-24 + art_sys_105: 3.42519432e-11 + art_sys_106: 2.21060075e-24 + art_sys_107: 1.27542149e-24 + art_sys_108: -1.49970959e-14 + art_sys_109: 1.04479370e-22 + art_sys_110: 2.61546090e-11 + art_sys_111: -5.18066021e-22 + art_sys_112: 9.61169902e-14 + art_sys_113: 2.11638253e-11 + art_sys_114: 4.65902000e-22 + art_sys_115: -7.15553662e-13 + art_sys_116: 5.79249040e-20 + art_sys_117: 1.40878143e-12 + art_sys_118: 7.32602074e-22 + art_sys_119: -3.14484445e-12 + art_sys_120: 5.83944103e-21 + art_sys_121: -2.98058476e-17 + art_sys_122: 1.77536344e-19 + art_sys_123: -1.24239119e-08 + art_sys_124: 3.73670176e-17 + art_sys_125: -3.24407168e-15 + art_sys_126: -9.51807825e-13 + art_sys_127: 2.27425702e-13 + art_sys_128: -1.30126337e-08 + art_sys_129: -6.30719366e-09 + art_sys_130: 1.16171071e-08 + art_sys_131: -2.02156673e-08 + art_sys_132: 6.76723182e-12 + art_sys_133: -3.56687272e-09 + art_sys_134: 1.68907219e-08 + art_sys_135: -1.20834988e-10 + art_sys_136: 2.50529888e-08 + art_sys_137: 6.04038002e-10 + art_sys_138: 3.07425199e-08 + art_sys_139: 5.62409719e-09 + art_sys_140: -2.53444659e-17 + art_sys_141: -6.12590467e-07 + art_sys_142: -0.0 + art_sys_143: 8.23160591e-08 + art_sys_144: 4.76452636e-07 + art_sys_145: 6.45990521e-07 + art_sys_146: -6.58786775e-11 + art_sys_147: 1.33958134e-10 + art_sys_148: 3.66861585e-09 + art_sys_149: 5.77358598e-10 + art_sys_150: -3.04383529e-11 + art_sys_151: 1.06602809e-09 + art_sys_152: 3.40681766e-09 + art_sys_153: 1.90272554e-10 + art_sys_154: -2.52867292e-09 + art_sys_155: 4.60559456e-09 + art_sys_156: -5.81467368e-10 + art_sys_157: -1.64334705e-09 art_sys_158: -0.0 - art_sys_159: 5.68960753e-07 - art_sys_160: 9.17536322e-09 - art_sys_161: 7.38663217e-09 - art_sys_162: 7.38663217e-09 - art_sys_163: -6.72456649e-08 - art_sys_164: -6.72456649e-08 - art_sys_165: 6.38298078e-22 - art_sys_166: -2.09134063e-22 - art_sys_167: -0.0 - art_sys_168: 1.08989632e-17 - art_sys_169: 2.16605222e-18 - art_sys_170: -2.55957695e-18 - art_sys_171: 2.48527967e-18 - art_sys_172: 2.35988442e-19 - art_sys_173: -1.51671966e-19 - art_sys_174: -6.57919847e-20 - art_sys_175: -1.64670448e-20 - art_sys_176: -8.27400950e-21 - art_sys_177: -3.04393284e-21 - art_sys_178: -3.81614249e-21 - art_sys_179: 1.29537430e-21 - art_sys_180: 1.44647599e-20 - art_sys_181: 7.50826687e-21 - art_sys_182: 2.97908417e-22 - art_sys_183: -1.70900880e-23 - art_sys_184: 7.33740450e-24 - art_sys_185: 2.65010814e-24 + art_sys_159: -2.10807194e-07 + art_sys_160: -2.10807194e-07 + art_sys_161: -2.38833838e-08 + art_sys_162: 8.62657116e-21 + art_sys_163: 0.0 + art_sys_164: 5.17408156e-21 + art_sys_165: 2.75975055e-17 + art_sys_166: -5.32773102e-17 + art_sys_167: 1.43974759e-17 + art_sys_168: -1.13075458e-17 + art_sys_169: -4.82045205e-18 + art_sys_170: 1.82139349e-18 + art_sys_171: 8.87086796e-19 + art_sys_172: 2.82104751e-19 + art_sys_173: 1.60328763e-18 + art_sys_174: 9.11006259e-22 + art_sys_175: -3.63908608e-20 + art_sys_176: -7.79604751e-21 + art_sys_177: -3.47799220e-20 + art_sys_178: -1.20124065e-20 + art_sys_179: -1.78761668e-20 + art_sys_180: -2.37999063e-20 + art_sys_181: -2.53421228e-22 + art_sys_182: 3.26089917e-23 + art_sys_183: -1.01166069e-23 + art_sys_184: 2.97878584e-24 + art_sys_185: 5.21977624e-22 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -30831,154 +30831,154 @@ bins: art_sys_35: 0.0 art_sys_36: 0.0 art_sys_37: 0.0 - art_sys_38: 0.0 - art_sys_39: 0.0 - art_sys_40: 0.0 - art_sys_41: 0.0 - art_sys_42: 0.0 - art_sys_43: 0.0 - art_sys_44: 1.36115420e-203 - art_sys_45: 6.86475408e-197 - art_sys_46: 7.85781685e-147 - art_sys_47: 4.35061903e-152 - art_sys_48: -2.34538973e-144 - art_sys_49: 2.00116980e-135 - art_sys_50: -8.58014680e-128 - art_sys_51: 3.56003142e-117 - art_sys_52: 3.95534849e-134 - art_sys_53: 1.26323980e-130 - art_sys_54: 1.49468448e-125 - art_sys_55: 3.68559318e-122 - art_sys_56: 5.94361651e-119 - art_sys_57: 2.11815837e-40 - art_sys_58: 1.04958410e-26 - art_sys_59: -4.02762764e-38 - art_sys_60: 4.86963774e-35 - art_sys_61: 1.91967639e-20 - art_sys_62: -5.32868957e-35 - art_sys_63: -9.00106835e-25 - art_sys_64: -2.16787412e+02 - art_sys_65: -4.37790419e+01 - art_sys_66: 1.67063222e+01 - art_sys_67: -1.65771551e+00 - art_sys_68: 5.96340175e-02 - art_sys_69: -2.49903218e-02 - art_sys_70: -1.15349606e-02 - art_sys_71: -1.40806357e-03 - art_sys_72: 6.69009329e-06 - art_sys_73: 5.60438486e-06 - art_sys_74: 9.42122663e-20 + art_sys_38: -3.61768887e-277 + art_sys_39: 5.61924312e-256 + art_sys_40: 3.77317071e-251 + art_sys_41: -5.15192978e-240 + art_sys_42: 1.33084959e-140 + art_sys_43: 1.65531929e-140 + art_sys_44: 9.59413360e-134 + art_sys_45: -1.70021178e-124 + art_sys_46: 4.43773745e-117 + art_sys_47: 3.57606052e-111 + art_sys_48: -3.80623040e-105 + art_sys_49: 1.25417564e-97 + art_sys_50: 1.09268285e-89 + art_sys_51: -8.69991158e-77 + art_sys_52: -4.04678139e-85 + art_sys_53: -3.32741928e-87 + art_sys_54: 3.51029310e-78 + art_sys_55: 1.57160984e-75 + art_sys_56: -9.43716520e-73 + art_sys_57: -2.16787412e+02 + art_sys_58: -4.37790419e+01 + art_sys_59: 1.67063222e+01 + art_sys_60: -8.88481246e-19 + art_sys_61: 1.65771551e+00 + art_sys_62: -5.96340175e-02 + art_sys_63: -2.49903218e-02 + art_sys_64: 1.15349606e-02 + art_sys_65: -1.40806357e-03 + art_sys_66: 3.04585484e-20 + art_sys_67: 6.69009329e-06 + art_sys_68: -5.60438486e-06 + art_sys_69: -1.72917619e-19 + art_sys_70: 3.51987571e-19 + art_sys_71: -5.36100020e-20 + art_sys_72: -1.63300862e-20 + art_sys_73: 4.82021047e-20 + art_sys_74: 3.89290130e-20 art_sys_75: -8.94736478e-07 - art_sys_76: 8.96837063e-20 - art_sys_77: -1.04004457e-19 - art_sys_78: -1.23421769e-22 + art_sys_76: 4.94587834e-20 + art_sys_77: -7.04003224e-20 + art_sys_78: 7.77103825e-20 art_sys_79: -1.28202766e-07 - art_sys_80: -1.37887257e-20 - art_sys_81: 7.21304953e-08 - art_sys_82: 9.36529611e-20 - art_sys_83: -9.03909508e-22 - art_sys_84: 8.32541424e-22 - art_sys_85: -1.83221143e-22 - art_sys_86: -2.43828275e-22 - art_sys_87: 7.33233485e-09 - art_sys_88: 1.47671462e-09 - art_sys_89: -5.16436867e-24 - art_sys_90: 6.82245378e-10 - art_sys_91: -6.12642427e-20 - art_sys_92: -1.91253860e-25 - art_sys_93: -4.74160326e-25 - art_sys_94: 5.60659518e-11 - art_sys_95: -1.50409249e-19 - art_sys_96: -3.46589518e-20 - art_sys_97: 4.32072918e-20 - art_sys_98: 7.04229071e-22 - art_sys_99: -1.04513019e-20 - art_sys_100: -9.95905892e-19 - art_sys_101: -2.48387678e-20 - art_sys_102: 1.04725982e-19 - art_sys_103: -1.93660778e-19 - art_sys_104: 2.51874208e-20 - art_sys_105: 9.55312826e-13 - art_sys_106: 4.59944572e-20 - art_sys_107: -8.32603193e-21 - art_sys_108: 3.81954669e-13 - art_sys_109: 1.87842970e-13 - art_sys_110: -4.56908532e-20 - art_sys_111: -1.76187383e-20 - art_sys_112: -5.00348398e-21 - art_sys_113: 1.93021675e-21 - art_sys_114: -7.10477154e-14 - art_sys_115: -1.11039638e-20 - art_sys_116: -1.27254075e-21 - art_sys_117: -3.23567387e-14 - art_sys_118: 1.27476866e-20 - art_sys_119: 1.56993126e-20 - art_sys_120: 3.25829192e-21 - art_sys_121: -1.38018157e-14 - art_sys_122: 2.31677245e-20 - art_sys_123: 1.10443928e-20 - art_sys_124: -3.43161862e-22 - art_sys_125: -5.37748618e-15 - art_sys_126: -8.01175541e-22 - art_sys_127: 1.20251662e-19 - art_sys_128: 5.51981730e-21 - art_sys_129: 1.98077065e-15 - art_sys_130: -1.35790392e-20 - art_sys_131: -7.30519453e-16 - art_sys_132: -2.52433941e-20 - art_sys_133: 5.53664052e-20 - art_sys_134: 1.07222014e-21 - art_sys_135: 9.43872816e-23 - art_sys_136: -2.37709006e-16 - art_sys_137: 9.87917823e-20 - art_sys_138: 1.58628315e-22 - art_sys_139: -1.00781401e-20 - art_sys_140: 7.85290703e-17 - art_sys_141: -2.27695042e-20 - art_sys_142: 1.31224798e-21 - art_sys_143: 2.26471053e-20 - art_sys_144: -2.53522351e-17 - art_sys_145: 5.85473438e-22 - art_sys_146: -2.10692388e-20 - art_sys_147: 8.31904799e-18 - art_sys_148: 2.45112778e-18 - art_sys_149: -7.63586026e-23 - art_sys_150: -1.00502515e-20 - art_sys_151: -5.08249674e-21 - art_sys_152: -8.63019837e-19 - art_sys_153: 1.38823897e-20 - art_sys_154: -7.56561914e-23 - art_sys_155: 1.77922339e-19 - art_sys_156: 0.0 - art_sys_157: -6.80974677e-22 + art_sys_80: -9.78610716e-20 + art_sys_81: 5.49367958e-21 + art_sys_82: 2.44961077e-21 + art_sys_83: -1.57389699e-21 + art_sys_84: 7.21304953e-08 + art_sys_85: 2.87390632e-23 + art_sys_86: -6.62685161e-23 + art_sys_87: -7.33233485e-09 + art_sys_88: 1.47671463e-09 + art_sys_89: 6.82245377e-10 + art_sys_90: 2.89880031e-20 + art_sys_91: 2.58076638e-19 + art_sys_92: 9.93713860e-20 + art_sys_93: -6.18125393e-19 + art_sys_94: -1.25298411e-19 + art_sys_95: 1.16583900e-20 + art_sys_96: 5.60659522e-11 + art_sys_97: -1.10756484e-21 + art_sys_98: -9.26652967e-21 + art_sys_99: 5.53591145e-21 + art_sys_100: -1.87384852e-20 + art_sys_101: -1.92194185e-20 + art_sys_102: 9.55318175e-13 + art_sys_103: 1.09515591e-19 + art_sys_104: -1.93499632e-20 + art_sys_105: -3.81953300e-13 + art_sys_106: -8.55871128e-22 + art_sys_107: -4.52874609e-22 + art_sys_108: -8.89193215e-21 + art_sys_109: -1.23624144e-20 + art_sys_110: 1.87843088e-13 + art_sys_111: 3.30348703e-21 + art_sys_112: -1.89215748e-20 + art_sys_113: -7.10474786e-14 + art_sys_114: 4.49224602e-21 + art_sys_115: -1.59129156e-20 + art_sys_116: -8.65566469e-21 + art_sys_117: 3.23568754e-14 + art_sys_118: -1.25593500e-21 + art_sys_119: -4.74508028e-20 + art_sys_120: 1.64698963e-21 + art_sys_121: -5.77261131e-20 + art_sys_122: -7.38900172e-21 + art_sys_123: 8.13601642e-20 + art_sys_124: 1.47088482e-20 + art_sys_125: -5.34840336e-21 + art_sys_126: 4.21276941e-21 + art_sys_127: 1.48190674e-20 + art_sys_128: 1.04171689e-19 + art_sys_129: 3.36349859e-20 + art_sys_130: -2.73608285e-20 + art_sys_131: 8.36421061e-21 + art_sys_132: -2.08160255e-20 + art_sys_133: -9.89186143e-22 + art_sys_134: -1.94659389e-20 + art_sys_135: -1.93893816e-21 + art_sys_136: 1.50127157e-19 + art_sys_137: -1.38390267e-21 + art_sys_138: -1.24017207e-19 + art_sys_139: 3.85073000e-21 + art_sys_140: 6.02937721e-23 + art_sys_141: -4.43889907e-20 + art_sys_142: 0.0 + art_sys_143: 4.61705951e-21 + art_sys_144: 2.80943049e-20 + art_sys_145: 4.68947459e-20 + art_sys_146: -1.38019883e-14 + art_sys_147: -5.37743156e-15 + art_sys_148: -1.98075904e-15 + art_sys_149: -7.30520900e-16 + art_sys_150: 2.37741197e-16 + art_sys_151: 7.85053571e-17 + art_sys_152: -2.54073911e-17 + art_sys_153: 8.30672072e-18 + art_sys_154: -2.56648792e-18 + art_sys_155: 7.74070353e-19 + art_sys_156: -2.32073132e-19 + art_sys_157: 1.19074512e-20 art_sys_158: 0.0 - art_sys_159: 3.29041200e-21 - art_sys_160: -3.41667397e-20 - art_sys_161: 2.69500030e-22 - art_sys_162: 2.69500030e-22 - art_sys_163: -6.61138280e-22 - art_sys_164: -6.61138280e-22 - art_sys_165: 1.08804407e-34 - art_sys_166: -5.40388211e-35 - art_sys_167: -0.0 - art_sys_168: 2.21472602e-28 - art_sys_169: -3.18359699e-27 - art_sys_170: 1.28035150e-27 - art_sys_171: -7.63496562e-26 - art_sys_172: -6.63773547e-27 - art_sys_173: 1.91354883e-28 - art_sys_174: 4.54639631e-28 - art_sys_175: -2.46841040e-28 - art_sys_176: 2.17486139e-29 - art_sys_177: -5.83328084e-31 - art_sys_178: -2.51691922e-32 - art_sys_179: -8.94379283e-33 - art_sys_180: 8.86327532e-34 - art_sys_181: -1.40696929e-30 - art_sys_182: 1.45431699e-29 - art_sys_183: -1.66521029e-31 - art_sys_184: 9.89157403e-34 - art_sys_185: 9.90190209e-34 + art_sys_159: -3.80214466e-21 + art_sys_160: -3.80214466e-21 + art_sys_161: -1.69452667e-21 + art_sys_162: 3.67346223e-34 + art_sys_163: 0.0 + art_sys_164: 1.34315466e-34 + art_sys_165: 5.85143418e-27 + art_sys_166: -1.03497377e-27 + art_sys_167: 1.77962779e-27 + art_sys_168: -6.79413978e-28 + art_sys_169: -7.81225711e-29 + art_sys_170: 1.66877323e-28 + art_sys_171: -2.10229974e-26 + art_sys_172: 9.36543324e-26 + art_sys_173: 1.27582292e-27 + art_sys_174: -1.70714911e-32 + art_sys_175: -2.72483408e-28 + art_sys_176: -1.21661132e-28 + art_sys_177: 7.32187861e-29 + art_sys_178: 4.29608925e-30 + art_sys_179: 5.36568890e-30 + art_sys_180: -2.52398734e-31 + art_sys_181: 1.48806139e-30 + art_sys_182: -9.88654698e-31 + art_sys_183: -1.30934585e-32 + art_sys_184: -2.99789599e-34 + art_sys_185: 2.27391205e-34 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -31122,154 +31122,154 @@ bins: art_sys_35: 0.0 art_sys_36: 0.0 art_sys_37: 0.0 - art_sys_38: 0.0 - art_sys_39: 0.0 - art_sys_40: 0.0 - art_sys_41: 0.0 - art_sys_42: 0.0 - art_sys_43: 0.0 - art_sys_44: 7.38907743e-204 - art_sys_45: 3.72655789e-197 - art_sys_46: 4.23504235e-147 - art_sys_47: 2.34480597e-152 - art_sys_48: -1.26406927e-144 - art_sys_49: 1.07854879e-135 - art_sys_50: -4.62434869e-128 - art_sys_51: 1.91871154e-117 - art_sys_52: 2.13177129e-134 - art_sys_53: 6.80834660e-131 - art_sys_54: 8.05573888e-126 - art_sys_55: 1.98638419e-122 - art_sys_56: 3.20336655e-119 - art_sys_57: 1.14149839e-40 - art_sys_58: 5.65632189e-27 - art_sys_59: -2.17053198e-38 - art_sys_60: 2.62430030e-35 - art_sys_61: 1.03453431e-20 - art_sys_62: -2.87171478e-35 - art_sys_63: -4.85077281e-25 - art_sys_64: -1.16829074e+02 - art_sys_65: 7.20190727e+01 - art_sys_66: -2.96178110e+01 - art_sys_67: 5.21590718e+00 - art_sys_68: -2.01750628e-01 - art_sys_69: 8.71248165e-02 - art_sys_70: 4.37592898e-02 - art_sys_71: 5.84608620e-03 - art_sys_72: -3.84425099e-05 - art_sys_73: -3.05136106e-05 - art_sys_74: -2.34663213e-19 + art_sys_38: -2.25883952e-290 + art_sys_39: 2.62593868e-256 + art_sys_40: 1.76324722e-251 + art_sys_41: -2.40755766e-240 + art_sys_42: 7.17209184e-141 + art_sys_43: 8.92069405e-141 + art_sys_44: 5.17038199e-134 + art_sys_45: -9.16262452e-125 + art_sys_46: 2.39154454e-117 + art_sys_47: 1.92717755e-111 + art_sys_48: -2.05121858e-105 + art_sys_49: 6.75888769e-98 + art_sys_50: 5.88858566e-90 + art_sys_51: -4.68847611e-77 + art_sys_52: -2.18085411e-85 + art_sys_53: -1.79318211e-87 + art_sys_54: 1.89173478e-78 + art_sys_55: 8.46957480e-76 + art_sys_56: -5.08579003e-73 + art_sys_57: -1.16829074e+02 + art_sys_58: 7.20190727e+01 + art_sys_59: -2.96178110e+01 + art_sys_60: 1.26790148e-18 + art_sys_61: -5.21590718e+00 + art_sys_62: 2.01750628e-01 + art_sys_63: 8.71248165e-02 + art_sys_64: -4.37592898e-02 + art_sys_65: 5.84608620e-03 + art_sys_66: 8.86697426e-19 + art_sys_67: -3.84425099e-05 + art_sys_68: 3.05136106e-05 + art_sys_69: 3.10257213e-19 + art_sys_70: -4.93099133e-19 + art_sys_71: -1.31523730e-20 + art_sys_72: 7.22695306e-20 + art_sys_73: -3.21550904e-20 + art_sys_74: -7.06549963e-20 art_sys_75: 4.97968490e-06 - art_sys_76: -6.47359711e-19 - art_sys_77: 7.22360641e-19 - art_sys_78: 2.22609336e-20 + art_sys_76: -3.29588109e-19 + art_sys_77: 4.85182345e-19 + art_sys_78: -5.44354345e-19 art_sys_79: 8.71994167e-07 - art_sys_80: 8.65811138e-20 - art_sys_81: -4.42884148e-07 - art_sys_82: -3.06769305e-19 - art_sys_83: 6.18777539e-21 - art_sys_84: -5.93381310e-21 - art_sys_85: 1.40190969e-21 - art_sys_86: 1.70121205e-21 - art_sys_87: -5.16165863e-08 - art_sys_88: -9.48635852e-09 - art_sys_89: 3.43259502e-23 - art_sys_90: -4.53990275e-09 - art_sys_91: -7.27503417e-20 - art_sys_92: 1.29198037e-24 - art_sys_93: 3.15137939e-24 - art_sys_94: -3.72932809e-10 - art_sys_95: -4.78125842e-20 - art_sys_96: -5.57980852e-20 - art_sys_97: -4.76416601e-20 - art_sys_98: 4.31667808e-19 - art_sys_99: 1.85971226e-20 - art_sys_100: 7.04943339e-18 - art_sys_101: 2.13843686e-19 - art_sys_102: -2.45749185e-19 - art_sys_103: 1.34120119e-18 - art_sys_104: -1.06775435e-19 - art_sys_105: -5.00370969e-12 - art_sys_106: -6.30035389e-20 - art_sys_107: 1.96873359e-20 - art_sys_108: -2.58442701e-12 - art_sys_109: -1.13057006e-12 - art_sys_110: 3.06250020e-19 - art_sys_111: 9.52532728e-20 - art_sys_112: 6.79466047e-20 - art_sys_113: -3.39127394e-20 - art_sys_114: 4.54212386e-13 - art_sys_115: -1.42826735e-20 - art_sys_116: -3.48247991e-21 - art_sys_117: 2.08212630e-13 - art_sys_118: 2.36703278e-20 - art_sys_119: -9.94721134e-20 - art_sys_120: -1.12431808e-20 - art_sys_121: 8.95502735e-14 - art_sys_122: -1.67858358e-19 - art_sys_123: 2.71983705e-21 - art_sys_124: 6.34267054e-21 - art_sys_125: 3.53788465e-14 - art_sys_126: 1.59757544e-20 - art_sys_127: -3.64064177e-19 - art_sys_128: 4.37268286e-22 - art_sys_129: -1.30817582e-14 - art_sys_130: 7.00878108e-21 - art_sys_131: 4.86215021e-15 - art_sys_132: 1.45323433e-19 - art_sys_133: -4.03541441e-19 - art_sys_134: -9.88924556e-22 - art_sys_135: -7.06679920e-21 - art_sys_136: 1.58687148e-15 - art_sys_137: -5.48910335e-19 - art_sys_138: -2.75566163e-22 - art_sys_139: 3.13668322e-20 - art_sys_140: -5.25815622e-16 - art_sys_141: 1.82764950e-19 - art_sys_142: -1.99374183e-21 - art_sys_143: -1.23949058e-19 - art_sys_144: 1.70042577e-16 - art_sys_145: 9.17710123e-22 - art_sys_146: 1.19126381e-19 - art_sys_147: -5.58419600e-17 - art_sys_148: -1.64657063e-17 - art_sys_149: -7.72275255e-22 - art_sys_150: 6.65444941e-20 - art_sys_151: 4.37226807e-20 - art_sys_152: 5.79830456e-18 - art_sys_153: -8.91293234e-20 - art_sys_154: -3.18528183e-22 - art_sys_155: -1.19587208e-18 - art_sys_156: -0.0 - art_sys_157: 3.81094792e-21 + art_sys_80: -2.05832180e-20 + art_sys_81: -3.37845828e-20 + art_sys_82: -1.58688001e-20 + art_sys_83: 9.84029093e-21 + art_sys_84: -4.42884148e-07 + art_sys_85: -2.85591670e-22 + art_sys_86: 4.40634516e-22 + art_sys_87: 5.16165864e-08 + art_sys_88: -9.48635853e-09 + art_sys_89: -4.53990274e-09 + art_sys_90: -1.97091949e-19 + art_sys_91: -1.55434814e-18 + art_sys_92: 7.79050541e-20 + art_sys_93: 3.66292318e-18 + art_sys_94: 8.16483038e-21 + art_sys_95: -1.46201575e-20 + art_sys_96: -3.72932811e-10 + art_sys_97: -2.06058956e-20 + art_sys_98: -2.88973144e-20 + art_sys_99: -2.78191236e-20 + art_sys_100: 4.45897995e-20 + art_sys_101: 7.50014657e-21 + art_sys_102: -5.00374610e-12 + art_sys_103: -6.24731812e-19 + art_sys_104: -3.83298069e-22 + art_sys_105: 2.58441818e-12 + art_sys_106: -2.26148634e-20 + art_sys_107: 5.60902700e-21 + art_sys_108: -2.20122518e-20 + art_sys_109: -1.52918072e-20 + art_sys_110: -1.13057085e-12 + art_sys_111: 3.33238324e-20 + art_sys_112: -6.88014845e-22 + art_sys_113: 4.54210881e-13 + art_sys_114: 9.65532380e-22 + art_sys_115: 1.47279429e-20 + art_sys_116: 4.72175991e-20 + art_sys_117: -2.08213530e-13 + art_sys_118: -3.05743948e-21 + art_sys_119: 3.72497523e-19 + art_sys_120: -3.15830555e-21 + art_sys_121: 3.72579633e-19 + art_sys_122: 6.90099755e-20 + art_sys_123: -2.32094479e-19 + art_sys_124: -8.38527888e-20 + art_sys_125: 3.31201763e-20 + art_sys_126: -1.56910269e-20 + art_sys_127: -1.02464520e-19 + art_sys_128: -3.83248321e-19 + art_sys_129: -1.32363584e-19 + art_sys_130: 7.17253418e-20 + art_sys_131: -2.64591654e-20 + art_sys_132: 1.46370643e-19 + art_sys_133: 1.19798292e-20 + art_sys_134: 1.29756388e-19 + art_sys_135: 1.83181484e-20 + art_sys_136: -9.97145652e-19 + art_sys_137: 9.03421045e-21 + art_sys_138: 8.28182972e-19 + art_sys_139: -1.86945438e-20 + art_sys_140: 3.23549276e-22 + art_sys_141: 3.00566731e-19 + art_sys_142: -0.0 + art_sys_143: -3.01805603e-20 + art_sys_144: -1.83272073e-19 + art_sys_145: -3.16071263e-19 + art_sys_146: 8.95513770e-14 + art_sys_147: 3.53784916e-14 + art_sys_148: 1.30816771e-14 + art_sys_149: 4.86216023e-15 + art_sys_150: -1.58708434e-15 + art_sys_151: -5.25656712e-16 + art_sys_152: 1.70412488e-16 + art_sys_153: -5.57592621e-17 + art_sys_154: 1.72402441e-17 + art_sys_155: -5.20084920e-18 + art_sys_156: 1.55952482e-18 + art_sys_157: -7.99393905e-20 art_sys_158: -0.0 - art_sys_159: -1.85024539e-20 - art_sys_160: 2.29653545e-19 - art_sys_161: -1.80943272e-21 - art_sys_162: -1.80943272e-21 - art_sys_163: 4.14495452e-21 - art_sys_164: 4.14495452e-21 - art_sys_165: -7.28285954e-34 - art_sys_166: 3.62203271e-34 - art_sys_167: 0.0 - art_sys_168: -1.08460071e-28 - art_sys_169: 6.68881862e-27 - art_sys_170: -1.24928809e-26 - art_sys_171: -4.99860880e-26 - art_sys_172: -8.27578988e-27 - art_sys_173: -2.50099880e-27 - art_sys_174: -8.97783686e-28 - art_sys_175: 1.11765174e-28 - art_sys_176: -1.17961683e-29 - art_sys_177: -3.37583495e-32 - art_sys_178: -8.47304786e-32 - art_sys_179: 6.01475192e-32 - art_sys_180: -5.87028541e-33 - art_sys_181: 1.64258000e-30 - art_sys_182: -1.67390048e-29 - art_sys_183: -9.08325248e-33 - art_sys_184: -7.08339900e-33 - art_sys_185: -6.65055568e-33 + art_sys_159: 2.49957835e-20 + art_sys_160: 2.49957835e-20 + art_sys_161: 1.14173359e-20 + art_sys_162: -2.47998982e-33 + art_sys_163: -0.0 + art_sys_164: -9.09663559e-34 + art_sys_165: -2.04356279e-26 + art_sys_166: 5.60445071e-27 + art_sys_167: -1.19531683e-26 + art_sys_168: 2.72490295e-27 + art_sys_169: 1.64602192e-27 + art_sys_170: 3.91075900e-27 + art_sys_171: -4.42795235e-26 + art_sys_172: -7.65598192e-26 + art_sys_173: 5.98280256e-27 + art_sys_174: 1.14709554e-31 + art_sys_175: -6.11535747e-28 + art_sys_176: -2.93144129e-29 + art_sys_177: 1.30526807e-28 + art_sys_178: 8.75063432e-30 + art_sys_179: -8.02443188e-30 + art_sys_180: 8.80310765e-31 + art_sys_181: 1.19998016e-30 + art_sys_182: 1.32902840e-31 + art_sys_183: 4.23649165e-32 + art_sys_184: 2.26968529e-33 + art_sys_185: -1.52816829e-33 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -31413,154 +31413,154 @@ bins: art_sys_35: 0.0 art_sys_36: 0.0 art_sys_37: 0.0 - art_sys_38: 0.0 - art_sys_39: 0.0 - art_sys_40: 0.0 - art_sys_41: 0.0 - art_sys_42: 0.0 - art_sys_43: 0.0 - art_sys_44: 1.15905966e-204 - art_sys_45: 5.84552381e-198 - art_sys_46: 6.43135188e-148 - art_sys_47: 3.56083151e-153 - art_sys_48: -1.91962054e-145 - art_sys_49: 1.63788841e-136 - art_sys_50: -7.02255401e-129 - art_sys_51: 2.91376284e-118 - art_sys_52: 3.23731622e-135 - art_sys_53: 1.03391818e-131 - art_sys_54: 1.22334766e-126 - art_sys_55: 3.01653081e-123 - art_sys_56: 4.86464497e-120 - art_sys_57: 1.73275137e-41 - art_sys_58: 8.58608263e-28 - art_sys_59: -3.29478542e-39 - art_sys_60: 3.98358859e-36 - art_sys_61: 1.57038394e-21 - art_sys_62: -4.35915848e-36 - art_sys_63: -7.36328961e-26 - art_sys_64: -1.77342112e+01 - art_sys_65: 7.93233911e+01 - art_sys_66: 2.09716342e+01 - art_sys_67: -8.34994666e+00 - art_sys_68: 5.61705271e-01 - art_sys_69: -2.11673834e-01 - art_sys_70: -1.23598004e-01 - art_sys_71: -1.82633582e-02 - art_sys_72: 1.19068463e-04 - art_sys_73: 1.06131427e-04 - art_sys_74: 3.55991238e-19 + art_sys_38: -7.32313064e-278 + art_sys_39: 2.22469666e-257 + art_sys_40: 1.49382409e-252 + art_sys_41: -2.03968405e-241 + art_sys_42: 1.08869633e-141 + art_sys_43: 1.35412751e-141 + art_sys_44: 7.84844371e-135 + art_sys_45: -1.39085164e-125 + art_sys_46: 3.63027388e-118 + art_sys_47: 2.92538241e-112 + art_sys_48: -3.11367199e-106 + art_sys_49: 1.02597351e-98 + art_sys_50: 8.93864964e-91 + art_sys_51: -7.11692887e-78 + art_sys_52: -3.31045380e-86 + art_sys_53: -2.72198242e-88 + art_sys_54: 2.87158164e-79 + art_sys_55: 1.28564932e-76 + art_sys_56: -7.72003633e-74 + art_sys_57: -1.77342112e+01 + art_sys_58: 7.93233911e+01 + art_sys_59: 2.09716342e+01 + art_sys_60: -2.87499626e-18 + art_sys_61: 8.34994666e+00 + art_sys_62: -5.61705271e-01 + art_sys_63: -2.11673834e-01 + art_sys_64: 1.23598004e-01 + art_sys_65: -1.82633582e-02 + art_sys_66: 1.61216020e-19 + art_sys_67: 1.19068463e-04 + art_sys_68: -1.06131427e-04 + art_sys_69: 3.07650150e-20 + art_sys_70: 2.76969060e-20 + art_sys_71: 2.95682174e-19 + art_sys_72: -2.85064909e-19 + art_sys_73: -9.22715832e-20 + art_sys_74: -6.06135445e-21 art_sys_75: -1.76867829e-05 - art_sys_76: 2.51502281e-18 - art_sys_77: -2.77627724e-18 - art_sys_78: -2.56411313e-19 + art_sys_76: 1.29169842e-18 + art_sys_77: -1.90967758e-18 + art_sys_78: 2.09412166e-18 art_sys_79: -3.35520488e-06 - art_sys_80: -3.31706434e-19 - art_sys_81: 1.69406650e-06 - art_sys_82: 4.82843710e-19 - art_sys_83: -2.48049057e-20 - art_sys_84: 2.35594262e-20 - art_sys_85: -5.22111888e-21 - art_sys_86: -6.77836929e-21 - art_sys_87: 2.05501344e-07 - art_sys_88: 3.86714058e-08 - art_sys_89: -1.39223033e-22 - art_sys_90: 1.83591280e-08 - art_sys_91: -9.00349738e-20 - art_sys_92: -5.38282385e-24 - art_sys_93: -1.30150063e-23 - art_sys_94: 1.54258672e-09 - art_sys_95: 1.38623479e-19 - art_sys_96: 5.19790818e-20 - art_sys_97: -7.22297866e-20 - art_sys_98: -1.54970363e-18 - art_sys_99: -5.49464081e-20 - art_sys_100: -2.82064110e-17 - art_sys_101: -8.88676969e-19 - art_sys_102: 1.39873939e-19 - art_sys_103: -5.31525365e-18 - art_sys_104: 3.30399343e-19 - art_sys_105: 1.82961154e-11 - art_sys_106: 2.40698028e-19 - art_sys_107: -6.85282102e-21 - art_sys_108: 1.02027514e-11 - art_sys_109: 4.40282422e-12 - art_sys_110: -1.27633997e-18 - art_sys_111: -3.58291399e-19 - art_sys_112: -2.59967836e-19 - art_sys_113: 1.22379442e-19 - art_sys_114: -1.77791188e-12 - art_sys_115: 9.65829048e-20 - art_sys_116: 1.19628563e-20 - art_sys_117: -8.23895733e-13 - art_sys_118: -9.78586980e-20 - art_sys_119: 4.00065799e-19 - art_sys_120: 8.29592628e-21 - art_sys_121: -3.55098236e-13 - art_sys_122: 6.85779395e-19 - art_sys_123: 7.92268291e-22 - art_sys_124: -1.20588546e-20 - art_sys_125: -1.41225649e-13 - art_sys_126: -8.10690518e-20 - art_sys_127: 6.41157352e-19 - art_sys_128: 6.31795290e-21 - art_sys_129: 5.23882207e-14 - art_sys_130: 1.63078967e-19 - art_sys_131: -1.95347439e-14 - art_sys_132: -5.85128116e-19 - art_sys_133: 1.64308809e-18 - art_sys_134: 1.84591236e-21 - art_sys_135: 1.76207779e-20 - art_sys_136: -6.39038720e-15 - art_sys_137: 2.02324842e-18 - art_sys_138: 2.94561126e-22 - art_sys_139: -7.68330073e-20 - art_sys_140: 2.12033977e-15 - art_sys_141: -7.88840068e-19 - art_sys_142: -4.78555181e-22 - art_sys_143: 4.36629526e-19 - art_sys_144: -6.86427153e-16 - art_sys_145: -4.73332558e-21 - art_sys_146: -4.35750116e-19 - art_sys_147: 2.25526843e-16 - art_sys_148: 6.65252407e-17 - art_sys_149: 6.10240779e-21 - art_sys_150: -2.64374624e-19 - art_sys_151: -1.96019313e-19 - art_sys_152: -2.34294100e-17 - art_sys_153: 3.50588938e-19 - art_sys_154: 6.58367353e-22 - art_sys_155: 4.83322124e-18 - art_sys_156: 0.0 - art_sys_157: -1.47583671e-20 + art_sys_80: -4.14301039e-19 + art_sys_81: 1.27860227e-19 + art_sys_82: 6.14584304e-20 + art_sys_83: -3.77956846e-20 + art_sys_84: 1.69406650e-06 + art_sys_85: 1.27744642e-21 + art_sys_86: -1.78974234e-21 + art_sys_87: -2.05501345e-07 + art_sys_88: 3.86714059e-08 + art_sys_89: 1.83591280e-08 + art_sys_90: 6.55724380e-19 + art_sys_91: 6.03194236e-18 + art_sys_92: -8.90544961e-20 + art_sys_93: -1.40195592e-17 + art_sys_94: 9.75993826e-20 + art_sys_95: -4.12359125e-21 + art_sys_96: 1.54258673e-09 + art_sys_97: -2.06737126e-20 + art_sys_98: 3.56744571e-20 + art_sys_99: 9.68153097e-20 + art_sys_100: -3.80972178e-21 + art_sys_101: 4.25249699e-21 + art_sys_102: 1.82962593e-11 + art_sys_103: 2.33899655e-18 + art_sys_104: -9.22800197e-21 + art_sys_105: -1.02027168e-11 + art_sys_106: 3.69183797e-21 + art_sys_107: 9.38893041e-21 + art_sys_108: 7.00566760e-20 + art_sys_109: 4.73686767e-20 + art_sys_110: 4.40282732e-12 + art_sys_111: -2.38653101e-21 + art_sys_112: -3.22906361e-20 + art_sys_113: -1.77790595e-12 + art_sys_114: 2.77045397e-20 + art_sys_115: 3.49625472e-20 + art_sys_116: -2.03652359e-19 + art_sys_117: 8.23899319e-13 + art_sys_118: -1.63467945e-20 + art_sys_119: -1.55360614e-18 + art_sys_120: 4.06251645e-20 + art_sys_121: -1.52448079e-18 + art_sys_122: -2.83461254e-19 + art_sys_123: 3.59375367e-19 + art_sys_124: 3.39897057e-19 + art_sys_125: -1.41041738e-19 + art_sys_126: 6.50198649e-20 + art_sys_127: 4.11009038e-19 + art_sys_128: 9.16486261e-19 + art_sys_129: 3.38252430e-19 + art_sys_130: -9.79957707e-20 + art_sys_131: 5.23843344e-20 + art_sys_132: -6.01941279e-19 + art_sys_133: -7.08914271e-20 + art_sys_134: -5.10605303e-19 + art_sys_135: -7.86373089e-20 + art_sys_136: 4.00468419e-18 + art_sys_137: -3.79256685e-20 + art_sys_138: -3.33574906e-18 + art_sys_139: 6.48818386e-20 + art_sys_140: -4.11050465e-23 + art_sys_141: -1.21819184e-18 + art_sys_142: 0.0 + art_sys_143: 1.19389365e-19 + art_sys_144: 7.30083128e-19 + art_sys_145: 1.27819677e-18 + art_sys_146: -3.55102615e-13 + art_sys_147: -1.41224230e-13 + art_sys_148: -5.23878911e-14 + art_sys_149: -1.95347805e-14 + art_sys_150: 6.39124310e-15 + art_sys_151: 2.11969853e-15 + art_sys_152: -6.87920128e-16 + art_sys_153: 2.25192769e-16 + art_sys_154: -6.96537650e-17 + art_sys_155: 2.10156669e-17 + art_sys_156: -6.30225587e-18 + art_sys_157: 3.22822637e-19 art_sys_158: 0.0 - art_sys_159: 6.79702921e-20 - art_sys_160: -9.28198321e-19 - art_sys_161: 7.16482467e-21 - art_sys_162: 7.16482467e-21 - art_sys_163: -1.62303767e-20 - art_sys_164: -1.62303767e-20 - art_sys_165: 2.93832075e-33 - art_sys_166: -1.46216752e-33 - art_sys_167: -0.0 - art_sys_168: -1.64089886e-27 - art_sys_169: -1.10773800e-26 - art_sys_170: 8.40894663e-27 - art_sys_171: 8.14224217e-26 - art_sys_172: 3.18311151e-27 - art_sys_173: 1.28842254e-27 - art_sys_174: -8.22919896e-28 - art_sys_175: -1.86807212e-28 - art_sys_176: -2.45405736e-29 - art_sys_177: -3.28398307e-31 - art_sys_178: 1.43195780e-30 - art_sys_179: -2.43160898e-31 - art_sys_180: 2.35643715e-32 - art_sys_181: -2.48894622e-30 - art_sys_182: 3.88857281e-31 - art_sys_183: -1.90986651e-31 - art_sys_184: 3.11154888e-32 - art_sys_185: 2.69043229e-32 + art_sys_159: -9.98658145e-20 + art_sys_160: -9.98658145e-20 + art_sys_161: -4.61859639e-20 + art_sys_162: 1.00404110e-32 + art_sys_163: 0.0 + art_sys_164: 3.68768213e-33 + art_sys_165: 5.53739507e-26 + art_sys_166: -1.59651145e-26 + art_sys_167: 4.28554852e-26 + art_sys_168: -1.16412056e-26 + art_sys_169: -6.86670074e-27 + art_sys_170: -2.17887785e-27 + art_sys_171: -6.29289514e-26 + art_sys_172: 6.63259759e-26 + art_sys_173: -1.33399373e-26 + art_sys_174: -4.63528390e-31 + art_sys_175: 3.87592932e-28 + art_sys_176: -1.50002943e-27 + art_sys_177: 2.35538820e-28 + art_sys_178: 2.03780024e-29 + art_sys_179: 4.00742321e-29 + art_sys_180: -2.92878962e-30 + art_sys_181: -1.75538956e-30 + art_sys_182: -1.29049166e-30 + art_sys_183: -1.79656275e-31 + art_sys_184: -9.16717510e-33 + art_sys_185: 6.17577517e-33 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -31704,154 +31704,154 @@ bins: art_sys_35: 0.0 art_sys_36: 0.0 art_sys_37: 0.0 - art_sys_38: 0.0 - art_sys_39: 0.0 - art_sys_40: 0.0 - art_sys_41: 0.0 - art_sys_42: 0.0 - art_sys_43: 0.0 - art_sys_44: -7.44544274e-205 - art_sys_45: -3.75498486e-198 - art_sys_46: -4.37298032e-148 - art_sys_47: -2.42117776e-153 - art_sys_48: 1.30524080e-145 - art_sys_49: -1.11367780e-136 - art_sys_50: 4.77496661e-129 - art_sys_51: -1.98120517e-118 - art_sys_52: -2.20120442e-135 - art_sys_53: -7.03009870e-132 - art_sys_54: -8.31811932e-127 - art_sys_55: -2.05108197e-123 - art_sys_56: -3.30770219e-120 - art_sys_57: -1.17905284e-41 - art_sys_58: -5.84241064e-28 - art_sys_59: 2.24194085e-39 - art_sys_60: -2.71063782e-36 - art_sys_61: -1.06856971e-21 - art_sys_62: 2.96619713e-36 - art_sys_63: 5.01035961e-26 - art_sys_64: 1.20672664e+01 - art_sys_65: 2.75971364e+01 - art_sys_66: 4.36120968e+01 - art_sys_67: 7.95268450e+00 - art_sys_68: -5.52125017e-01 - art_sys_69: 3.52165304e-01 - art_sys_70: 2.20183996e-01 - art_sys_71: 4.03383715e-02 - art_sys_72: -3.45210108e-04 - art_sys_73: -2.81291270e-04 - art_sys_74: 8.12144267e-20 + art_sys_38: 2.74617399e-278 + art_sys_39: -3.12466057e-257 + art_sys_40: -2.09812559e-252 + art_sys_41: 2.86480429e-241 + art_sys_42: -7.40804868e-142 + art_sys_43: -9.21417868e-142 + art_sys_44: -5.34048397e-135 + art_sys_45: 9.46406850e-126 + art_sys_46: -2.47022469e-118 + art_sys_47: -1.99058036e-112 + art_sys_48: 2.11870225e-106 + art_sys_49: -6.98125040e-99 + art_sys_50: -6.08231604e-91 + art_sys_51: 4.84272372e-78 + art_sys_52: 2.25260269e-86 + art_sys_53: 1.85217656e-88 + art_sys_54: -1.95397154e-79 + art_sys_55: -8.74821793e-77 + art_sys_56: 5.25310899e-74 + art_sys_57: 1.20672664e+01 + art_sys_58: 2.75971364e+01 + art_sys_59: 4.36120968e+01 + art_sys_60: 3.09979401e-18 + art_sys_61: -7.95268450e+00 + art_sys_62: 5.52125017e-01 + art_sys_63: 3.52165304e-01 + art_sys_64: -2.20183996e-01 + art_sys_65: 4.03383715e-02 + art_sys_66: 7.86800813e-19 + art_sys_67: -3.45210108e-04 + art_sys_68: 2.81291270e-04 + art_sys_69: 7.15752915e-19 + art_sys_70: -6.83778183e-19 + art_sys_71: -8.49576439e-19 + art_sys_72: 1.32738206e-19 + art_sys_73: 5.39316129e-19 + art_sys_74: -5.11816220e-20 art_sys_75: 5.14588090e-05 - art_sys_76: -7.46946356e-18 - art_sys_77: 8.21771488e-18 - art_sys_78: 7.01026237e-20 + art_sys_76: -3.95764019e-18 + art_sys_77: 5.84703956e-18 + art_sys_78: -6.15830389e-18 art_sys_79: 9.91087092e-06 - art_sys_80: 9.80185157e-19 - art_sys_81: -5.03384868e-06 - art_sys_82: -1.38653961e-18 - art_sys_83: 7.77685928e-20 - art_sys_84: -7.35596101e-20 - art_sys_85: 1.65670564e-20 - art_sys_86: 2.10886220e-20 - art_sys_87: -6.39629981e-07 + art_sys_80: 1.20163396e-18 + art_sys_81: -3.78193747e-19 + art_sys_82: -1.86509517e-19 + art_sys_83: 1.14744378e-19 + art_sys_84: -5.03384868e-06 + art_sys_85: -2.59667708e-21 + art_sys_86: 5.44701434e-21 + art_sys_87: 6.39629981e-07 art_sys_88: -1.17285080e-07 - art_sys_89: 4.34037668e-22 - art_sys_90: -5.72723904e-08 - art_sys_91: 2.23643306e-19 - art_sys_92: 1.68198374e-23 - art_sys_93: 4.09061566e-23 - art_sys_94: -4.83203468e-09 - art_sys_95: -4.46731866e-19 - art_sys_96: -6.98547916e-20 - art_sys_97: 1.22841000e-21 - art_sys_98: 4.82546830e-18 - art_sys_99: 2.08632610e-19 - art_sys_100: 8.75218063e-17 - art_sys_101: 2.76018447e-18 - art_sys_102: -1.15475148e-18 - art_sys_103: 1.64795594e-17 - art_sys_104: -1.07726126e-18 - art_sys_105: -6.23115260e-11 - art_sys_106: -6.73989007e-19 - art_sys_107: 1.26322427e-19 - art_sys_108: -3.43318118e-11 - art_sys_109: -1.48153061e-11 - art_sys_110: 3.97386452e-18 - art_sys_111: 1.13064357e-18 - art_sys_112: 8.17233576e-19 - art_sys_113: -3.75118188e-19 - art_sys_114: 6.07223571e-12 - art_sys_115: -2.45101406e-19 - art_sys_116: -9.13428927e-21 - art_sys_117: 2.81422030e-12 - art_sys_118: 2.45185539e-19 - art_sys_119: -1.29116756e-18 - art_sys_120: -2.20316285e-20 - art_sys_121: 1.22023511e-12 - art_sys_122: -2.13472249e-18 - art_sys_123: 1.02804590e-20 - art_sys_124: 4.27761692e-20 - art_sys_125: 4.86577402e-13 - art_sys_126: 2.39379521e-19 - art_sys_127: -8.26279927e-19 - art_sys_128: -3.30911203e-20 - art_sys_129: -1.80859099e-13 - art_sys_130: -1.08111627e-18 - art_sys_131: 6.75614202e-14 - art_sys_132: 1.84021499e-18 - art_sys_133: -5.62054131e-18 - art_sys_134: -3.27151716e-21 - art_sys_135: -4.94502083e-20 - art_sys_136: 2.21159133e-14 - art_sys_137: -6.51138600e-18 - art_sys_138: -2.38611676e-21 - art_sys_139: 1.71189538e-19 - art_sys_140: -7.34401233e-15 - art_sys_141: 2.75009504e-18 - art_sys_142: -4.68285514e-21 - art_sys_143: -1.39051776e-18 - art_sys_144: 2.37807029e-15 - art_sys_145: 2.00898844e-20 - art_sys_146: 1.40312255e-18 - art_sys_147: -7.81503267e-16 - art_sys_148: -2.30551365e-16 - art_sys_149: -2.36381311e-20 - art_sys_150: 9.05818551e-19 - art_sys_151: 7.24137490e-19 - art_sys_152: 8.12005528e-17 - art_sys_153: -1.19082116e-18 - art_sys_154: -2.52092727e-21 - art_sys_155: -1.67519868e-17 - art_sys_156: -0.0 - art_sys_157: 4.62482884e-20 + art_sys_89: -5.72723904e-08 + art_sys_90: -1.83459727e-18 + art_sys_91: -1.80089175e-17 + art_sys_92: 3.43469468e-19 + art_sys_93: 4.16863806e-17 + art_sys_94: -2.00956276e-19 + art_sys_95: 5.09785877e-20 + art_sys_96: -4.83203470e-09 + art_sys_97: -2.56329129e-20 + art_sys_98: -8.50338140e-20 + art_sys_99: -2.46776857e-19 + art_sys_100: 1.74978762e-20 + art_sys_101: 8.86028826e-21 + art_sys_102: -6.23120103e-11 + art_sys_103: -7.44424854e-18 + art_sys_104: -1.54356434e-20 + art_sys_105: 3.43316955e-11 + art_sys_106: 3.34826419e-20 + art_sys_107: -2.46424098e-20 + art_sys_108: -1.43224126e-19 + art_sys_109: -1.50739063e-19 + art_sys_110: -1.48153169e-11 + art_sys_111: 7.21559130e-21 + art_sys_112: 1.07058580e-19 + art_sys_113: 6.07221560e-12 + art_sys_114: -1.92054723e-20 + art_sys_115: -8.65921959e-20 + art_sys_116: 6.17016840e-19 + art_sys_117: -2.81423260e-12 + art_sys_118: 3.65858529e-20 + art_sys_119: 4.89813208e-18 + art_sys_120: -1.23235188e-19 + art_sys_121: 4.57683899e-18 + art_sys_122: 8.99716633e-19 + art_sys_123: -8.72814032e-20 + art_sys_124: -1.04481329e-18 + art_sys_125: 4.57331614e-19 + art_sys_126: -1.92341357e-19 + art_sys_127: -1.28042977e-18 + art_sys_128: -1.47307809e-18 + art_sys_129: -6.23777907e-19 + art_sys_130: -1.76139318e-19 + art_sys_131: -2.84365888e-20 + art_sys_132: 1.86220012e-18 + art_sys_133: 2.74937021e-19 + art_sys_134: 1.71855416e-18 + art_sys_135: 2.45731741e-19 + art_sys_136: -1.38436272e-17 + art_sys_137: 1.16318303e-19 + art_sys_138: 1.15410198e-17 + art_sys_139: -1.96673073e-19 + art_sys_140: 6.01565849e-23 + art_sys_141: 4.24630528e-18 + art_sys_142: -0.0 + art_sys_143: -4.12582126e-19 + art_sys_144: -2.50974660e-18 + art_sys_145: -4.44554841e-18 + art_sys_146: 1.22025008e-12 + art_sys_147: 4.86572513e-13 + art_sys_148: 1.80857953e-13 + art_sys_149: 6.75615485e-14 + art_sys_150: -2.21188756e-14 + art_sys_151: -7.34179112e-15 + art_sys_152: 2.38324235e-15 + art_sys_153: -7.80345651e-16 + art_sys_154: 2.41392868e-16 + art_sys_155: -7.28355287e-17 + art_sys_156: 2.18428424e-17 + art_sys_157: -1.11864185e-18 art_sys_158: -0.0 - art_sys_159: -2.19321848e-19 - art_sys_160: 3.21760324e-18 - art_sys_161: -2.44727855e-20 - art_sys_162: -2.44727855e-20 - art_sys_163: 5.50180653e-20 - art_sys_164: 5.50180653e-20 - art_sys_165: -1.01725662e-32 - art_sys_166: 5.06406256e-33 - art_sys_167: 0.0 - art_sys_168: 1.73682058e-26 - art_sys_169: 1.30592358e-26 - art_sys_170: -6.09144097e-28 - art_sys_171: 1.17332091e-25 - art_sys_172: 1.69481121e-26 - art_sys_173: -1.18042042e-27 - art_sys_174: 1.01818535e-27 - art_sys_175: 1.28731638e-28 - art_sys_176: 9.59419066e-29 - art_sys_177: -5.50418955e-30 - art_sys_178: -5.35631968e-30 - art_sys_179: 8.42872979e-31 - art_sys_180: -8.12929493e-32 - art_sys_181: 4.30267255e-32 - art_sys_182: 1.23559044e-29 - art_sys_183: 4.02526696e-31 - art_sys_184: -1.07899487e-31 - art_sys_185: -9.32554267e-32 + art_sys_159: 3.42390921e-19 + art_sys_160: 3.42390921e-19 + art_sys_161: 1.60192601e-19 + art_sys_162: -3.48440316e-32 + art_sys_163: -0.0 + art_sys_164: -1.28090187e-32 + art_sys_165: -1.84064622e-25 + art_sys_166: 5.35258041e-26 + art_sys_167: -1.47542594e-25 + art_sys_168: 4.08090985e-26 + art_sys_169: 1.81698530e-26 + art_sys_170: 2.30257543e-26 + art_sys_171: -2.44165309e-26 + art_sys_172: 2.25166049e-26 + art_sys_173: -6.00634230e-27 + art_sys_174: 1.60648835e-30 + art_sys_175: -6.81247704e-28 + art_sys_176: 1.16552396e-27 + art_sys_177: -2.92306925e-28 + art_sys_178: -9.10735095e-29 + art_sys_179: -1.25376897e-28 + art_sys_180: 5.34393238e-30 + art_sys_181: 3.96178954e-30 + art_sys_182: 3.98402792e-30 + art_sys_183: 6.31950933e-31 + art_sys_184: 3.17342785e-32 + art_sys_185: -2.14042220e-32 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -31995,154 +31995,154 @@ bins: art_sys_35: 0.0 art_sys_36: 0.0 art_sys_37: 0.0 - art_sys_38: 0.0 - art_sys_39: 0.0 - art_sys_40: 0.0 - art_sys_41: 0.0 - art_sys_42: 0.0 - art_sys_43: 0.0 - art_sys_44: -1.22550997e-205 - art_sys_45: -6.18065497e-199 - art_sys_46: -6.99838737e-149 - art_sys_47: -3.87478072e-154 - art_sys_48: 2.08886847e-146 - art_sys_49: -1.78229676e-137 - art_sys_50: 7.64171425e-130 - art_sys_51: -3.17066170e-119 - art_sys_52: -3.52274197e-136 - art_sys_53: -1.12507604e-132 - art_sys_54: -1.33120702e-127 - art_sys_55: -3.28249045e-124 - art_sys_56: -5.29354800e-121 - art_sys_57: -1.88624289e-42 - art_sys_58: -9.34665962e-29 - art_sys_59: 3.58664588e-40 - art_sys_60: -4.33646498e-37 - art_sys_61: -1.70949253e-22 - art_sys_62: 4.74531735e-37 - art_sys_63: 8.01554849e-27 - art_sys_64: 1.93051528e+00 - art_sys_65: -1.91473892e+00 - art_sys_66: 3.26468412e+00 - art_sys_67: 2.99327304e+00 - art_sys_68: 3.66641440e+00 - art_sys_69: -1.10523007e+00 - art_sys_70: -1.02159751e+00 - art_sys_71: -1.99410627e-01 - art_sys_72: 1.93753230e-03 - art_sys_73: 1.66268257e-03 - art_sys_74: -2.41179386e-19 + art_sys_38: 4.57695665e-279 + art_sys_39: -3.67073237e-258 + art_sys_40: -2.46479815e-253 + art_sys_41: 3.36546308e-242 + art_sys_42: -1.18513589e-142 + art_sys_43: -1.47407966e-142 + art_sys_44: -8.54367930e-136 + art_sys_45: 1.51405690e-126 + art_sys_46: -3.95185300e-119 + art_sys_47: -3.18452041e-113 + art_sys_48: 3.38948917e-107 + art_sys_49: -1.11685692e-99 + art_sys_50: -9.73045851e-92 + art_sys_51: 7.74736497e-79 + art_sys_52: 3.60370242e-87 + art_sys_53: 2.96310271e-89 + art_sys_54: -3.12595382e-80 + art_sys_55: -1.39953549e-77 + art_sys_56: 8.40389726e-75 + art_sys_57: 1.93051528e+00 + art_sys_58: -1.91473892e+00 + art_sys_59: 3.26468412e+00 + art_sys_60: 9.74699181e-19 + art_sys_61: -2.99327304e+00 + art_sys_62: -3.66641440e+00 + art_sys_63: -1.10523007e+00 + art_sys_64: 1.02159751e+00 + art_sys_65: -1.99410627e-01 + art_sys_66: 2.29827632e-19 + art_sys_67: 1.93753230e-03 + art_sys_68: -1.66268257e-03 + art_sys_69: -9.71484230e-19 + art_sys_70: 1.06463130e-19 + art_sys_71: 1.73077296e-19 + art_sys_72: 1.00590739e-19 + art_sys_73: -8.91548032e-20 + art_sys_74: 1.07766461e-19 art_sys_75: -3.03675240e-04 - art_sys_76: 4.74303202e-17 - art_sys_77: -5.17454148e-17 - art_sys_78: -1.57855931e-18 + art_sys_76: 2.49346500e-17 + art_sys_77: -3.68335801e-17 + art_sys_78: 3.89262838e-17 art_sys_79: -6.24035646e-05 - art_sys_80: -6.26986551e-18 - art_sys_81: 3.12283671e-05 - art_sys_82: 7.65249578e-18 - art_sys_83: -4.94175099e-19 - art_sys_84: 4.63630893e-19 - art_sys_85: -1.04755666e-19 - art_sys_86: -1.33231633e-19 - art_sys_87: 4.03856582e-06 - art_sys_88: 7.52664846e-07 - art_sys_89: -2.74500763e-21 - art_sys_90: 3.62309415e-07 - art_sys_91: -1.37667097e-18 - art_sys_92: -1.11125355e-22 - art_sys_93: -2.60575655e-22 - art_sys_94: 3.09370346e-08 - art_sys_95: 3.02826580e-18 - art_sys_96: 1.15796412e-19 - art_sys_97: -5.32691904e-20 - art_sys_98: -3.04719801e-17 - art_sys_99: -1.31026152e-18 - art_sys_100: -5.52460290e-16 - art_sys_101: -1.71658888e-17 - art_sys_102: 6.68004941e-18 - art_sys_103: -1.04171145e-16 - art_sys_104: 6.77345267e-18 - art_sys_105: 3.38638091e-10 - art_sys_106: 4.26679304e-18 - art_sys_107: -6.68024341e-19 - art_sys_108: 2.08165543e-10 - art_sys_109: 8.69627538e-11 - art_sys_110: -2.52700531e-17 - art_sys_111: -7.28752951e-18 - art_sys_112: -5.29446213e-18 - art_sys_113: 2.36992867e-18 - art_sys_114: -3.60079817e-11 - art_sys_115: 1.56469818e-18 - art_sys_116: 7.07361700e-20 - art_sys_117: -1.67826821e-11 - art_sys_118: -1.61120528e-18 - art_sys_119: 8.23466038e-18 - art_sys_120: 9.73223432e-20 - art_sys_121: -7.28165789e-12 - art_sys_122: 1.34826681e-17 - art_sys_123: -1.21530497e-20 - art_sys_124: -2.75237808e-19 - art_sys_125: -2.91630851e-12 - art_sys_126: -1.55373827e-18 - art_sys_127: 2.25436722e-18 - art_sys_128: 2.20033317e-19 - art_sys_129: 1.08576635e-12 - art_sys_130: 7.43599202e-18 - art_sys_131: -4.06446984e-13 - art_sys_132: -1.17755141e-17 - art_sys_133: 3.35754501e-17 - art_sys_134: -8.43297277e-21 - art_sys_135: 3.13366585e-19 - art_sys_136: -1.33239164e-13 - art_sys_137: 3.82385451e-17 - art_sys_138: 1.31731464e-20 - art_sys_139: -8.61736892e-19 - art_sys_140: 4.42812044e-14 - art_sys_141: -1.69365020e-17 - art_sys_142: 2.32421048e-20 - art_sys_143: 8.11312515e-18 - art_sys_144: -1.43490860e-14 - art_sys_145: -1.19518424e-19 - art_sys_146: -8.25269600e-18 - art_sys_147: 4.71679564e-15 - art_sys_148: 1.39187932e-15 - art_sys_149: 1.53870415e-19 - art_sys_150: -5.44974807e-18 - art_sys_151: -4.45478756e-18 - art_sys_152: -4.90258342e-16 - art_sys_153: 7.13231152e-18 - art_sys_154: 1.61529353e-20 - art_sys_155: 1.01156385e-16 - art_sys_156: 0.0 - art_sys_157: -2.69898997e-19 + art_sys_80: -6.75165560e-18 + art_sys_81: 2.33530249e-18 + art_sys_82: 1.17594545e-18 + art_sys_83: -7.06657609e-19 + art_sys_84: 3.12283671e-05 + art_sys_85: 1.42546028e-20 + art_sys_86: -3.52888652e-20 + art_sys_87: -4.03856582e-06 + art_sys_88: 7.52664847e-07 + art_sys_89: 3.62309415e-07 + art_sys_90: 1.17873469e-17 + art_sys_91: 1.11710768e-16 + art_sys_92: -2.96042840e-18 + art_sys_93: -2.58598237e-16 + art_sys_94: 1.63399384e-18 + art_sys_95: -1.70912012e-19 + art_sys_96: 3.09370348e-08 + art_sys_97: 5.40832967e-20 + art_sys_98: 5.31919125e-19 + art_sys_99: 1.47309695e-18 + art_sys_100: 9.97571201e-20 + art_sys_101: -1.12231306e-20 + art_sys_102: 3.38641035e-10 + art_sys_103: 4.68332109e-17 + art_sys_104: 2.70175190e-20 + art_sys_105: -2.08164847e-10 + art_sys_106: -7.08538002e-21 + art_sys_107: 1.39507991e-19 + art_sys_108: 8.31632185e-19 + art_sys_109: 1.02800795e-18 + art_sys_110: 8.69628181e-11 + art_sys_111: 4.38673852e-20 + art_sys_112: -5.52239830e-19 + art_sys_113: -3.60078627e-11 + art_sys_114: 1.11735592e-19 + art_sys_115: 4.87572435e-19 + art_sys_116: -3.90081539e-18 + art_sys_117: 1.67827555e-11 + art_sys_118: -2.61918095e-19 + art_sys_119: -3.12634531e-17 + art_sys_120: 7.74067228e-19 + art_sys_121: -2.95402337e-17 + art_sys_122: -5.71350841e-18 + art_sys_123: -1.32873380e-18 + art_sys_124: 6.60907353e-18 + art_sys_125: -2.86692435e-18 + art_sys_126: 1.23106863e-18 + art_sys_127: 8.09944397e-18 + art_sys_128: 6.14578795e-18 + art_sys_129: 2.72551225e-18 + art_sys_130: 1.91213116e-18 + art_sys_131: -1.11181788e-19 + art_sys_132: -1.18154896e-17 + art_sys_133: -1.57073378e-18 + art_sys_134: -1.02688492e-17 + art_sys_135: -1.55345880e-18 + art_sys_136: 8.32650066e-17 + art_sys_137: -7.54844958e-19 + art_sys_138: -6.94377636e-17 + art_sys_139: 1.13047490e-18 + art_sys_140: 3.07055054e-22 + art_sys_141: -2.55981055e-17 + art_sys_142: 0.0 + art_sys_143: 2.47086683e-18 + art_sys_144: 1.50608228e-17 + art_sys_145: 2.67853874e-17 + art_sys_146: -7.28174724e-12 + art_sys_147: -2.91627920e-12 + art_sys_148: -1.08575945e-12 + art_sys_149: -4.06447759e-13 + art_sys_150: 1.33257003e-13 + art_sys_151: 4.42678078e-14 + art_sys_152: -1.43802923e-14 + art_sys_153: 4.70980891e-15 + art_sys_154: -1.45731959e-15 + art_sys_155: 4.39758935e-16 + art_sys_156: -1.31887994e-16 + art_sys_157: 6.75147574e-18 art_sys_158: 0.0 - art_sys_159: 1.29139585e-18 - art_sys_160: -1.94261002e-17 - art_sys_161: 1.46814938e-19 - art_sys_162: 1.46814938e-19 - art_sys_163: -3.29629532e-19 - art_sys_164: -3.29629532e-19 - art_sys_165: 6.13990569e-32 - art_sys_166: -3.05694136e-32 - art_sys_167: -0.0 - art_sys_168: -1.16137016e-25 - art_sys_169: -6.19928288e-26 - art_sys_170: 8.07470155e-27 - art_sys_171: -8.65322809e-26 - art_sys_172: -1.85975380e-26 - art_sys_173: -5.40640596e-28 - art_sys_174: 3.21304971e-28 - art_sys_175: -1.89882335e-28 - art_sys_176: -5.21486874e-28 - art_sys_177: 5.47210882e-29 - art_sys_178: 2.98542946e-29 - art_sys_179: -5.09065372e-30 - art_sys_180: 4.90074784e-31 - art_sys_181: -1.44922296e-30 - art_sys_182: 2.33806722e-29 - art_sys_183: -2.95865243e-31 - art_sys_184: 6.40885082e-31 - art_sys_185: 5.63167694e-31 + art_sys_159: -2.05127792e-18 + art_sys_160: -2.05127792e-18 + art_sys_161: -9.67696951e-19 + art_sys_162: 2.10577186e-31 + art_sys_163: 0.0 + art_sys_164: 7.74635562e-32 + art_sys_165: 1.13103095e-24 + art_sys_166: -3.26891160e-25 + art_sys_167: 8.94860928e-25 + art_sys_168: -2.46729652e-25 + art_sys_169: -1.14835505e-25 + art_sys_170: -1.26580156e-25 + art_sys_171: -2.56562116e-26 + art_sys_172: 1.25993624e-26 + art_sys_173: 3.61155244e-26 + art_sys_174: -9.69973995e-30 + art_sys_175: -1.84695904e-27 + art_sys_176: -6.44397916e-28 + art_sys_177: 6.59943503e-28 + art_sys_178: 4.75846951e-28 + art_sys_179: 7.63386254e-28 + art_sys_180: -2.57677574e-29 + art_sys_181: -3.44363685e-29 + art_sys_182: -1.68365509e-29 + art_sys_183: -3.76310573e-30 + art_sys_184: -1.91940134e-31 + art_sys_185: 1.29242364e-31 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -32286,154 +32286,154 @@ bins: art_sys_35: 0.0 art_sys_36: 0.0 art_sys_37: 0.0 - art_sys_38: 0.0 - art_sys_39: 0.0 - art_sys_40: 0.0 - art_sys_41: 0.0 - art_sys_42: 0.0 - art_sys_43: 0.0 - art_sys_44: 2.07221869e-206 - art_sys_45: 1.04508895e-199 - art_sys_46: 1.24432057e-149 - art_sys_47: 6.88940051e-155 - art_sys_48: -3.71402991e-147 - art_sys_49: 3.16894221e-138 - art_sys_50: -1.35870476e-130 - art_sys_51: 5.63746955e-120 - art_sys_52: 6.26347186e-137 - art_sys_53: 2.00039693e-133 - art_sys_54: 2.36689996e-128 - art_sys_55: 5.83630223e-125 - art_sys_56: 9.41198352e-122 - art_sys_57: 3.35590373e-43 - art_sys_58: 1.66290832e-29 - art_sys_59: -6.38117092e-41 - art_sys_60: 7.71520939e-38 - art_sys_61: 3.04143884e-23 - art_sys_62: -8.44253232e-38 - art_sys_63: -1.42608406e-27 - art_sys_64: -3.43467092e-01 - art_sys_65: -1.66166898e+00 - art_sys_66: -2.11306803e+00 - art_sys_67: -2.11876220e-01 - art_sys_68: 3.04260091e+00 - art_sys_69: 1.37019594e+00 - art_sys_70: 1.02688199e+00 - art_sys_71: 3.79530747e-01 - art_sys_72: -4.02416382e-03 - art_sys_73: -3.88907768e-03 - art_sys_74: 2.23947414e-19 + art_sys_38: -2.86059791e-280 + art_sys_39: 1.01489534e-258 + art_sys_40: 6.81474933e-254 + art_sys_41: -9.30493558e-243 + art_sys_42: 2.10853141e-143 + art_sys_43: 2.62260495e-143 + art_sys_44: 1.52004646e-136 + art_sys_45: -2.69373036e-127 + art_sys_46: 7.03092889e-120 + art_sys_47: 5.66573113e-114 + art_sys_48: -6.03040076e-108 + art_sys_49: 1.98705305e-100 + art_sys_50: 1.73119197e-92 + art_sys_51: -1.37837040e-79 + art_sys_52: -6.41151770e-88 + art_sys_53: -5.27179641e-90 + art_sys_54: 5.56153253e-81 + art_sys_55: 2.48997989e-78 + art_sys_56: -1.49517717e-75 + art_sys_57: -3.43467092e-01 + art_sys_58: -1.66166898e+00 + art_sys_59: -2.11306803e+00 + art_sys_60: -5.37943537e-20 + art_sys_61: 2.11876220e-01 + art_sys_62: -3.04260091e+00 + art_sys_63: 1.37019594e+00 + art_sys_64: -1.02688199e+00 + art_sys_65: 3.79530747e-01 + art_sys_66: 5.06082385e-20 + art_sys_67: -4.02416382e-03 + art_sys_68: 3.88907768e-03 + art_sys_69: -9.40673479e-19 + art_sys_70: 7.74060931e-20 + art_sys_71: 6.94901313e-20 + art_sys_72: -8.85749267e-21 + art_sys_73: -1.38795647e-19 + art_sys_74: -7.61452927e-21 art_sys_75: 8.58045518e-04 - art_sys_76: -1.33450461e-16 - art_sys_77: 1.45519631e-16 - art_sys_78: -1.28369657e-17 + art_sys_76: -7.66870739e-17 + art_sys_77: 1.12537499e-16 + art_sys_78: -1.07930080e-16 art_sys_79: 1.76849771e-04 - art_sys_80: 1.83914037e-17 - art_sys_81: -9.34564265e-05 - art_sys_82: -2.28156292e-17 - art_sys_83: 1.53278472e-18 - art_sys_84: -1.44910717e-18 - art_sys_85: 3.54684137e-19 - art_sys_86: 4.19224368e-19 - art_sys_87: -1.26499243e-05 + art_sys_80: 1.93511939e-17 + art_sys_81: -6.91557589e-18 + art_sys_82: -3.56971847e-18 + art_sys_83: 2.15161850e-18 + art_sys_84: -9.34564265e-05 + art_sys_85: -7.53710961e-20 + art_sys_86: 1.10656673e-19 + art_sys_87: 1.26499244e-05 art_sys_88: -2.40036983e-06 - art_sys_89: 8.95676295e-21 - art_sys_90: -1.18019739e-06 - art_sys_91: 4.28701125e-18 - art_sys_92: 3.59834847e-22 - art_sys_93: 8.66491553e-22 - art_sys_94: -1.02841387e-07 - art_sys_95: -9.42742840e-18 - art_sys_96: -2.83884238e-19 - art_sys_97: -4.73571697e-20 - art_sys_98: 9.51941714e-17 - art_sys_99: 4.23503396e-18 - art_sys_100: 1.73032152e-15 - art_sys_101: 5.37893602e-17 - art_sys_102: -2.12098096e-17 - art_sys_103: 3.26353830e-16 - art_sys_104: -2.11778231e-17 - art_sys_105: -1.34544526e-09 - art_sys_106: -1.34369885e-17 - art_sys_107: 2.09880070e-18 - art_sys_108: -7.35254114e-10 - art_sys_109: -3.23759862e-10 - art_sys_110: 8.21162832e-17 - art_sys_111: 2.31519682e-17 - art_sys_112: 1.68915254e-17 - art_sys_113: -7.92870245e-18 - art_sys_114: 1.32728731e-10 - art_sys_115: -4.92902668e-18 - art_sys_116: -2.01446006e-19 - art_sys_117: 6.21640224e-11 - art_sys_118: 5.17738863e-18 - art_sys_119: -2.75046902e-17 - art_sys_120: -3.31038367e-19 - art_sys_121: 2.70930433e-11 - art_sys_122: -4.38955999e-17 - art_sys_123: 7.61540488e-20 - art_sys_124: 9.22659746e-19 - art_sys_125: 1.08653456e-11 - art_sys_126: 5.13499389e-18 - art_sys_127: -5.84518087e-18 - art_sys_128: -7.33667554e-19 - art_sys_129: -4.05530924e-12 - art_sys_130: -3.14685422e-17 - art_sys_131: 1.51936325e-12 - art_sys_132: 3.91400848e-17 - art_sys_133: -1.23360307e-16 - art_sys_134: 1.97600592e-20 - art_sys_135: -1.05296087e-18 - art_sys_136: 4.98469880e-13 - art_sys_137: -1.39164821e-16 - art_sys_138: -5.94065525e-20 - art_sys_139: 3.02097202e-18 - art_sys_140: -1.65745260e-13 - art_sys_141: 5.97995712e-17 - art_sys_142: -9.00521604e-20 - art_sys_143: -2.98167533e-17 - art_sys_144: 5.37178323e-14 - art_sys_145: 4.27561033e-19 - art_sys_146: 3.00814713e-17 - art_sys_147: -1.76617002e-14 - art_sys_148: -5.21198765e-15 - art_sys_149: -5.57589460e-19 - art_sys_150: 2.03454052e-17 - art_sys_151: 1.69360915e-17 - art_sys_152: 1.83589902e-15 - art_sys_153: -2.65590885e-17 - art_sys_154: -5.26212067e-20 - art_sys_155: -3.78821093e-16 - art_sys_156: 0.0 - art_sys_157: 9.83650329e-19 + art_sys_89: -1.18019739e-06 + art_sys_90: -3.38277804e-17 + art_sys_91: -3.34447209e-16 + art_sys_92: 8.57110109e-18 + art_sys_93: 7.73925601e-16 + art_sys_94: -4.97140995e-18 + art_sys_95: 7.69069234e-19 + art_sys_96: -1.02841387e-07 + art_sys_97: -8.72439128e-20 + art_sys_98: -1.75343963e-18 + art_sys_99: -4.38084304e-18 + art_sys_100: -3.42438070e-19 + art_sys_101: -7.29800026e-21 + art_sys_102: -1.34545563e-09 + art_sys_103: -1.46670911e-16 + art_sys_104: -6.80122948e-20 + art_sys_105: 7.35251616e-10 + art_sys_106: 2.82181350e-20 + art_sys_107: -4.02504868e-19 + art_sys_108: -2.65319892e-18 + art_sys_109: -3.18960892e-18 + art_sys_110: -3.23760098e-10 + art_sys_111: -1.72987623e-19 + art_sys_112: 2.22794163e-18 + art_sys_113: 1.32728289e-10 + art_sys_114: -3.79270576e-19 + art_sys_115: -1.51453296e-18 + art_sys_116: 1.22224337e-17 + art_sys_117: -6.21642950e-11 + art_sys_118: 8.13994673e-19 + art_sys_119: 1.03880386e-16 + art_sys_120: -2.42808205e-18 + art_sys_121: 9.35220621e-17 + art_sys_122: 1.78715003e-17 + art_sys_123: 9.87997320e-18 + art_sys_124: -2.06724322e-17 + art_sys_125: 9.18410876e-18 + art_sys_126: -4.08534328e-18 + art_sys_127: -2.64129660e-17 + art_sys_128: -4.86004040e-18 + art_sys_129: -5.34939818e-18 + art_sys_130: -1.13256315e-17 + art_sys_131: 1.86783154e-18 + art_sys_132: 3.82964033e-17 + art_sys_133: 6.15525793e-18 + art_sys_134: 3.76489964e-17 + art_sys_135: 5.06465284e-18 + art_sys_136: -3.11348709e-16 + art_sys_137: 2.42619678e-18 + art_sys_138: 2.59335435e-16 + art_sys_139: -3.92326713e-18 + art_sys_140: -7.43768513e-22 + art_sys_141: 9.60189155e-17 + art_sys_142: -0.0 + art_sys_143: -9.26387601e-18 + art_sys_144: -5.61624143e-17 + art_sys_145: -1.00373319e-16 + art_sys_146: 2.70933746e-11 + art_sys_147: 1.08652364e-11 + art_sys_148: 4.05528341e-12 + art_sys_149: 1.51936613e-12 + art_sys_150: -4.98536608e-13 + art_sys_151: -1.65695113e-13 + art_sys_152: 5.38346551e-14 + art_sys_153: -1.76355387e-14 + art_sys_154: 5.45703113e-15 + art_sys_155: -1.64679865e-15 + art_sys_156: 4.93896813e-16 + art_sys_157: -2.52773416e-17 art_sys_158: -0.0 - art_sys_159: -4.72157962e-18 - art_sys_160: 7.27506165e-17 - art_sys_161: -5.45810147e-19 - art_sys_162: -5.45810147e-19 - art_sys_163: 1.22528786e-18 - art_sys_164: 1.22528786e-18 - art_sys_165: -2.29848034e-31 - art_sys_166: 1.14451182e-31 - art_sys_167: 0.0 - art_sys_168: 3.97967519e-25 - art_sys_169: 2.38294232e-25 - art_sys_170: -1.86095378e-26 - art_sys_171: 5.75349859e-26 - art_sys_172: 2.28508390e-26 - art_sys_173: -1.28038815e-28 - art_sys_174: -3.47362165e-27 - art_sys_175: -3.17202844e-28 - art_sys_176: 2.11420263e-27 - art_sys_177: -3.21618691e-28 - art_sys_178: -1.12043498e-28 - art_sys_179: 1.90648568e-29 - art_sys_180: -1.83259629e-30 - art_sys_181: -9.79253100e-29 - art_sys_182: -1.31043430e-28 - art_sys_183: 8.37757528e-31 - art_sys_184: -2.39745174e-30 - art_sys_185: -2.10912562e-30 + art_sys_159: 7.62733407e-18 + art_sys_160: 7.62733407e-18 + art_sys_161: 3.62473851e-18 + art_sys_162: -7.88944327e-31 + art_sys_163: -0.0 + art_sys_164: -2.90326132e-31 + art_sys_165: -4.22334788e-24 + art_sys_166: 1.22188080e-24 + art_sys_167: -3.33547675e-24 + art_sys_168: 9.23091971e-25 + art_sys_169: 4.26109353e-25 + art_sys_170: 4.77241609e-25 + art_sys_171: 1.93705790e-25 + art_sys_172: -1.43559929e-25 + art_sys_173: -8.04525961e-26 + art_sys_174: 3.63229647e-29 + art_sys_175: 6.89499805e-27 + art_sys_176: 5.89164241e-27 + art_sys_177: -2.81966357e-27 + art_sys_178: -1.81407640e-27 + art_sys_179: -2.61394985e-27 + art_sys_180: 9.05665045e-29 + art_sys_181: 1.24803860e-28 + art_sys_182: 6.01710126e-29 + art_sys_183: 1.40915291e-29 + art_sys_184: 7.19072935e-31 + art_sys_185: -4.83986306e-31 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -32577,154 +32577,154 @@ bins: art_sys_35: 0.0 art_sys_36: 0.0 art_sys_37: 0.0 - art_sys_38: 0.0 - art_sys_39: 0.0 - art_sys_40: 0.0 - art_sys_41: 0.0 - art_sys_42: 0.0 - art_sys_43: 0.0 - art_sys_44: 1.31141852e-206 - art_sys_45: 6.61392047e-200 - art_sys_46: 7.58242420e-150 - art_sys_47: 4.19814302e-155 - art_sys_48: -2.26319093e-147 - art_sys_49: 1.93103487e-138 - art_sys_50: -8.27943868e-131 - art_sys_51: 3.43526312e-120 - art_sys_52: 3.81672551e-137 - art_sys_53: 1.21896708e-133 - art_sys_54: 1.44230032e-128 - art_sys_55: 3.55642432e-125 - art_sys_56: 5.73531077e-122 - art_sys_57: 2.04398195e-43 - art_sys_58: 1.01282839e-29 - art_sys_59: -3.88658294e-41 - art_sys_60: 4.69910645e-38 - art_sys_61: 1.85245066e-23 - art_sys_62: -5.14213966e-38 - art_sys_63: -8.68585723e-28 - art_sys_64: -2.09195669e-01 - art_sys_65: -9.72117903e-02 - art_sys_66: -5.21203204e-01 - art_sys_67: -4.67999087e-01 - art_sys_68: 2.99150030e-01 - art_sys_69: 2.93428211e+00 - art_sys_70: -2.69479787e-01 - art_sys_71: -4.34233441e-01 - art_sys_72: 1.40853718e-02 - art_sys_73: 1.07149593e-02 - art_sys_74: -1.61730433e-19 + art_sys_38: 2.86059791e-280 + art_sys_39: 4.72851977e-259 + art_sys_40: 3.17507384e-254 + art_sys_41: -4.33528176e-243 + art_sys_42: 1.28424417e-143 + art_sys_43: 1.59735117e-143 + art_sys_44: 9.25815379e-137 + art_sys_45: -1.64067156e-127 + art_sys_46: 4.28233101e-120 + art_sys_47: 3.45082940e-114 + art_sys_48: -3.67293890e-108 + art_sys_49: 1.21025529e-100 + art_sys_50: 1.05441787e-92 + art_sys_51: -8.39524680e-80 + art_sys_52: -3.90506596e-88 + art_sys_53: -3.21089540e-90 + art_sys_54: 3.38736511e-81 + art_sys_55: 1.51657317e-78 + art_sys_56: -9.10668232e-76 + art_sys_57: -2.09195669e-01 + art_sys_58: -9.72117903e-02 + art_sys_59: -5.21203204e-01 + art_sys_60: -1.60938418e-19 + art_sys_61: 4.67999087e-01 + art_sys_62: -2.99150030e-01 + art_sys_63: 2.93428211e+00 + art_sys_64: 2.69479787e-01 + art_sys_65: -4.34233441e-01 + art_sys_66: 2.46529569e-18 + art_sys_67: 1.40853718e-02 + art_sys_68: -1.07149593e-02 + art_sys_69: 9.41696137e-19 + art_sys_70: 1.13241443e-18 + art_sys_71: -5.72712792e-19 + art_sys_72: -3.31422670e-20 + art_sys_73: -8.69711890e-20 + art_sys_74: -4.90970510e-20 art_sys_75: -2.49775653e-03 - art_sys_76: 4.07945364e-16 - art_sys_77: -4.42105543e-16 - art_sys_78: -1.17612945e-18 + art_sys_76: 2.31790281e-16 + art_sys_77: -3.41759304e-16 + art_sys_78: 3.28259830e-16 art_sys_79: -5.35255119e-04 - art_sys_80: -5.51071676e-17 - art_sys_81: 2.77838279e-04 - art_sys_82: 6.82830992e-17 - art_sys_83: -4.35527412e-18 - art_sys_84: 4.42575354e-18 - art_sys_85: -1.03795546e-18 - art_sys_86: -1.27578954e-18 - art_sys_87: 3.85738759e-05 + art_sys_80: -5.88940103e-17 + art_sys_81: 2.05206183e-17 + art_sys_82: 1.07405142e-17 + art_sys_83: -6.35309815e-18 + art_sys_84: 2.77838279e-04 + art_sys_85: 2.05456601e-19 + art_sys_86: -3.34207950e-19 + art_sys_87: -3.85738759e-05 art_sys_88: 7.23534616e-06 - art_sys_89: -2.70593986e-20 - art_sys_90: 3.56211446e-06 - art_sys_91: -1.27631671e-17 - art_sys_92: -1.10307959e-21 - art_sys_93: -2.63691351e-21 - art_sys_94: 3.11993618e-07 - art_sys_95: 2.87517049e-17 - art_sys_96: 8.04629135e-19 - art_sys_97: 2.56482705e-19 - art_sys_98: -2.90422400e-16 - art_sys_99: -1.29873510e-17 - art_sys_100: -5.27627553e-15 - art_sys_101: -1.63942862e-16 - art_sys_102: 6.43685193e-17 - art_sys_103: -9.95150426e-16 - art_sys_104: 6.46680858e-17 - art_sys_105: 3.59660824e-09 - art_sys_106: 4.09764081e-17 - art_sys_107: -6.17164536e-18 - art_sys_108: 2.21654089e-09 - art_sys_109: 9.29493910e-10 - art_sys_110: -2.47847990e-16 - art_sys_111: -6.96969755e-17 - art_sys_112: -5.08410832e-17 - art_sys_113: 2.39994174e-17 - art_sys_114: -3.90862153e-10 - art_sys_115: 1.48599787e-17 - art_sys_116: 5.78317204e-19 - art_sys_117: -1.83072818e-10 - art_sys_118: -1.55560569e-17 - art_sys_119: 8.33705476e-17 - art_sys_120: 1.01414474e-18 - art_sys_121: -8.00867105e-11 - art_sys_122: 1.32513084e-16 - art_sys_123: -1.81641062e-19 - art_sys_124: -2.75608161e-18 - art_sys_125: -3.22370923e-11 - art_sys_126: -1.55966197e-17 - art_sys_127: 1.56986446e-17 - art_sys_128: 2.19833462e-18 - art_sys_129: 1.20511000e-11 - art_sys_130: 9.68905785e-17 - art_sys_131: -4.52481036e-12 - art_sys_132: -1.18750579e-16 - art_sys_133: 3.62565675e-16 - art_sys_134: -6.56368896e-20 - art_sys_135: 3.17432288e-18 - art_sys_136: -1.48602854e-12 - art_sys_137: 4.09430620e-16 - art_sys_138: 1.38073191e-19 - art_sys_139: -9.04382648e-18 - art_sys_140: 4.94547568e-13 - art_sys_141: -1.81138555e-16 - art_sys_142: 2.63827492e-19 - art_sys_143: 8.81895978e-17 - art_sys_144: -1.60368487e-13 - art_sys_145: -1.29185576e-18 - art_sys_146: -8.87287864e-17 - art_sys_147: 5.27401130e-14 - art_sys_148: 1.55672438e-14 - art_sys_149: 1.70030223e-18 - art_sys_150: -6.06805271e-17 - art_sys_151: -5.08416566e-17 - art_sys_152: -5.48377578e-15 - art_sys_153: 7.90690987e-17 - art_sys_154: 1.58788826e-19 - art_sys_155: 1.13166651e-15 - art_sys_156: -0.0 - art_sys_157: -2.89686392e-18 + art_sys_89: 3.56211445e-06 + art_sys_90: 1.01892021e-16 + art_sys_91: 9.94687553e-16 + art_sys_92: -2.52684243e-17 + art_sys_93: -2.30098469e-15 + art_sys_94: 1.44787867e-17 + art_sys_95: -2.12233750e-18 + art_sys_96: 3.11993620e-07 + art_sys_97: 2.97662368e-20 + art_sys_98: 5.35071526e-18 + art_sys_99: 1.30404469e-17 + art_sys_100: 1.18157512e-18 + art_sys_101: -1.94772828e-20 + art_sys_102: 3.59663959e-09 + art_sys_103: 4.47298018e-16 + art_sys_104: 1.92905940e-19 + art_sys_105: -2.21653347e-09 + art_sys_106: -8.42264555e-20 + art_sys_107: 1.18216846e-18 + art_sys_108: 7.93282925e-18 + art_sys_109: 9.72916143e-18 + art_sys_110: 9.29494618e-10 + art_sys_111: 4.75647417e-19 + art_sys_112: -6.75152109e-18 + art_sys_113: -3.90860867e-10 + art_sys_114: 1.13845095e-18 + art_sys_115: 4.57399792e-18 + art_sys_116: -3.72966551e-17 + art_sys_117: 1.83073622e-10 + art_sys_118: -2.52027680e-18 + art_sys_119: -3.15142247e-16 + art_sys_120: 7.42829309e-18 + art_sys_121: -2.81758205e-16 + art_sys_122: -5.45158027e-17 + art_sys_123: -2.93233221e-17 + art_sys_124: 6.30031972e-17 + art_sys_125: -2.79074977e-17 + art_sys_126: 1.23901691e-17 + art_sys_127: 7.96753250e-17 + art_sys_128: -1.11458523e-18 + art_sys_129: 9.51031203e-18 + art_sys_130: 3.82931833e-17 + art_sys_131: -7.67831402e-18 + art_sys_132: -1.15567068e-16 + art_sys_133: -1.67755820e-17 + art_sys_134: -1.11138529e-16 + art_sys_135: -1.52723620e-17 + art_sys_136: 9.27379373e-16 + art_sys_137: -7.41756591e-18 + art_sys_138: -7.71827303e-16 + art_sys_139: 1.11523542e-17 + art_sys_140: 2.70705446e-21 + art_sys_141: -2.86365453e-16 + art_sys_142: 0.0 + art_sys_143: 2.75224626e-17 + art_sys_144: 1.66941883e-16 + art_sys_145: 2.99244186e-16 + art_sys_146: -8.00876870e-11 + art_sys_147: -3.22367680e-11 + art_sys_148: -1.20510230e-11 + art_sys_149: -4.52481896e-12 + art_sys_150: 1.48622739e-12 + art_sys_151: 4.94397907e-13 + art_sys_152: -1.60717236e-13 + art_sys_153: 5.26619910e-14 + art_sys_154: -1.62990283e-14 + art_sys_155: 4.91898450e-15 + art_sys_156: -1.47534890e-15 + art_sys_157: 7.54830730e-17 art_sys_158: 0.0 - art_sys_159: 1.39548644e-17 - art_sys_160: -2.17287971e-16 - art_sys_161: 1.62351252e-18 - art_sys_162: 1.62351252e-18 - art_sys_163: -3.64642314e-18 - art_sys_164: -3.64642314e-18 - art_sys_165: 6.86473331e-31 - art_sys_166: -3.41844691e-31 - art_sys_167: -0.0 - art_sys_168: -1.27020647e-24 - art_sys_169: -7.01390804e-25 - art_sys_170: 8.17490264e-26 - art_sys_171: -2.40215492e-25 - art_sys_172: -6.05797749e-26 - art_sys_173: 2.11651220e-27 - art_sys_174: 1.39548872e-26 - art_sys_175: 6.80031290e-28 - art_sys_176: -6.20561461e-27 - art_sys_177: 1.30769378e-27 - art_sys_178: 3.31599693e-28 - art_sys_179: -5.69628528e-29 - art_sys_180: 5.47049935e-30 - art_sys_181: 2.90667365e-28 - art_sys_182: 3.91889370e-28 - art_sys_183: -3.00319968e-30 - art_sys_184: 7.16148210e-30 - art_sys_185: 6.30131675e-30 + art_sys_159: -2.26291354e-17 + art_sys_160: -2.26291354e-17 + art_sys_161: -1.08302799e-17 + art_sys_162: 2.35788483e-30 + art_sys_163: 0.0 + art_sys_164: 8.68052812e-31 + art_sys_165: 1.25879310e-23 + art_sys_166: -3.64285833e-24 + art_sys_167: 9.91643744e-24 + art_sys_168: -2.75751717e-24 + art_sys_169: -1.28125401e-24 + art_sys_170: -1.41203367e-24 + art_sys_171: -5.81959317e-25 + art_sys_172: 2.74587718e-25 + art_sys_173: 2.74705818e-25 + art_sys_174: -1.08500137e-28 + art_sys_175: -1.86588109e-26 + art_sys_176: -1.93006390e-26 + art_sys_177: 9.33675055e-27 + art_sys_178: 5.52874916e-27 + art_sys_179: 7.78093014e-27 + art_sys_180: -2.67967901e-28 + art_sys_181: -3.71347264e-28 + art_sys_182: -1.86311670e-28 + art_sys_183: -4.21018226e-29 + art_sys_184: -2.14914688e-30 + art_sys_185: 1.44573434e-30 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -32868,154 +32868,154 @@ bins: art_sys_35: 0.0 art_sys_36: 0.0 art_sys_37: 0.0 - art_sys_38: 0.0 - art_sys_39: 0.0 - art_sys_40: 0.0 - art_sys_41: 0.0 - art_sys_42: 0.0 - art_sys_43: 0.0 - art_sys_44: 1.34018205e-207 - art_sys_45: 6.75898427e-201 - art_sys_46: 7.33003406e-151 - art_sys_47: 4.05840277e-156 - art_sys_48: -2.18785789e-148 - art_sys_49: 1.86675805e-139 - art_sys_50: -8.00384757e-132 - art_sys_51: 3.32091624e-121 - art_sys_52: 3.68968122e-138 - art_sys_53: 1.17839229e-134 - art_sys_54: 1.39429162e-129 - art_sys_55: 3.43804444e-126 - art_sys_56: 5.54440404e-123 - art_sys_57: 1.97447585e-44 - art_sys_58: 9.78386920e-31 - art_sys_59: -3.75441875e-42 - art_sys_60: 4.53931221e-39 - art_sys_61: 1.78945763e-24 - art_sys_62: -4.96718871e-39 - art_sys_63: -8.39049255e-29 - art_sys_64: -2.02081914e-02 - art_sys_65: 1.27852765e-01 - art_sys_66: 9.67815616e-02 - art_sys_67: -7.67061301e-02 - art_sys_68: -5.64323162e-01 - art_sys_69: 1.17849762e+00 - art_sys_70: -1.57544816e+00 - art_sys_71: 4.43368543e-01 - art_sys_72: -9.98240157e-03 - art_sys_73: -1.83320775e-02 - art_sys_74: 1.09751024e-19 + art_sys_38: -1.43029895e-280 + art_sys_39: 2.87725614e-260 + art_sys_40: 1.93200033e-255 + art_sys_41: -2.63797463e-244 + art_sys_42: 1.24057299e-144 + art_sys_43: 1.54303267e-144 + art_sys_44: 8.94332694e-138 + art_sys_45: -1.58487993e-128 + art_sys_46: 4.13670881e-121 + art_sys_47: 3.33348270e-115 + art_sys_48: -3.54803929e-109 + art_sys_49: 1.16910013e-101 + art_sys_50: 1.01856201e-93 + art_sys_51: -8.10976342e-81 + art_sys_52: -3.77227279e-89 + art_sys_53: -3.10170775e-91 + art_sys_54: 3.27217654e-82 + art_sys_55: 1.46500155e-79 + art_sys_56: -8.79700631e-77 + art_sys_57: -2.02081914e-02 + art_sys_58: 1.27852765e-01 + art_sys_59: 9.67815616e-02 + art_sys_60: -2.89880748e-20 + art_sys_61: 7.67061301e-02 + art_sys_62: 5.64323162e-01 + art_sys_63: 1.17849762e+00 + art_sys_64: 1.57544816e+00 + art_sys_65: 4.43368543e-01 + art_sys_66: 8.44814671e-20 + art_sys_67: -9.98240157e-03 + art_sys_68: 1.83320775e-02 + art_sys_69: 1.75498117e-18 + art_sys_70: -6.03083658e-20 + art_sys_71: -2.17922006e-19 + art_sys_72: 3.46254178e-19 + art_sys_73: -3.14259426e-19 + art_sys_74: 2.60448856e-19 art_sys_75: 5.56820294e-03 - art_sys_76: -9.98265144e-16 - art_sys_77: 1.07094765e-15 - art_sys_78: 1.15140847e-17 + art_sys_76: -6.23791095e-16 + art_sys_77: 9.12534451e-16 + art_sys_78: -7.84133372e-16 art_sys_79: 1.31042981e-03 - art_sys_80: 1.37965308e-16 - art_sys_81: -7.17362607e-04 - art_sys_82: -1.75744653e-16 - art_sys_83: 1.23212870e-17 - art_sys_84: -1.21009122e-17 - art_sys_85: 2.96239845e-18 - art_sys_86: 3.53112965e-18 - art_sys_87: -1.06025508e-04 + art_sys_80: 1.46559404e-16 + art_sys_81: -5.19253435e-17 + art_sys_82: -2.87469065e-17 + art_sys_83: 1.65337667e-17 + art_sys_84: -7.17362608e-04 + art_sys_85: -5.01292310e-19 + art_sys_86: 9.53721219e-19 + art_sys_87: 1.06025508e-04 art_sys_88: -2.07734355e-05 - art_sys_89: 7.83563034e-20 - art_sys_90: -1.02949171e-05 - art_sys_91: 3.29477480e-17 - art_sys_92: 3.29123652e-21 - art_sys_93: 7.85882782e-21 - art_sys_94: -9.28972877e-07 - art_sys_95: -7.94966847e-17 - art_sys_96: -1.97852697e-18 - art_sys_97: -6.63051432e-19 - art_sys_98: 7.98379886e-16 - art_sys_99: 3.58269820e-17 - art_sys_100: 1.45022629e-14 - art_sys_101: 4.50652024e-16 - art_sys_102: -1.78026516e-16 - art_sys_103: 2.73540085e-15 - art_sys_104: -1.77858046e-16 - art_sys_105: -1.17981932e-08 - art_sys_106: -1.12615118e-16 - art_sys_107: 1.77518723e-17 - art_sys_108: -6.65478528e-09 - art_sys_109: -2.94358641e-09 - art_sys_110: 7.15978351e-16 - art_sys_111: 2.00063663e-16 - art_sys_112: 1.45741307e-16 - art_sys_113: -6.99493585e-17 - art_sys_114: 1.21617039e-09 - art_sys_115: -4.26884095e-17 - art_sys_116: -1.68883396e-18 - art_sys_117: 5.75756635e-10 - art_sys_118: 4.46789258e-17 - art_sys_119: -2.48231976e-16 - art_sys_120: -2.96019678e-18 - art_sys_121: 2.52399101e-10 - art_sys_122: -3.82997253e-16 - art_sys_123: 6.20028932e-19 - art_sys_124: 7.99714574e-18 - art_sys_125: 1.01906471e-10 - art_sys_126: 4.64402990e-17 - art_sys_127: -4.54528236e-17 - art_sys_128: -6.55402197e-18 - art_sys_129: -3.81988755e-11 - art_sys_130: -3.11000712e-16 - art_sys_131: 1.43612078e-11 - art_sys_132: 3.53586509e-16 - art_sys_133: -1.13977300e-15 - art_sys_134: 2.02470880e-19 - art_sys_135: -9.47534085e-18 - art_sys_136: 4.72289542e-12 - art_sys_137: -1.28923878e-15 - art_sys_138: -5.02792872e-19 - art_sys_139: 2.80144878e-17 - art_sys_140: -1.57275104e-12 - art_sys_141: 5.42565491e-16 - art_sys_142: -8.22715165e-19 - art_sys_143: -2.78730747e-16 - art_sys_144: 5.10233642e-13 - art_sys_145: 3.87808020e-18 - art_sys_146: 2.80471555e-16 - art_sys_147: -1.67844555e-13 - art_sys_148: -4.95488600e-14 - art_sys_149: -5.16825775e-18 - art_sys_150: 1.92773318e-16 - art_sys_151: 1.62167203e-16 - art_sys_152: 1.74556382e-14 - art_sys_153: -2.51172607e-16 - art_sys_154: -4.59623950e-19 - art_sys_155: -3.60254737e-15 - art_sys_156: 0.0 - art_sys_157: 9.17569551e-18 + art_sys_89: -1.02949171e-05 + art_sys_90: -2.53352255e-16 + art_sys_91: -2.56812280e-15 + art_sys_92: 6.52237132e-17 + art_sys_93: 5.94097922e-15 + art_sys_94: -3.74233138e-17 + art_sys_95: 5.44179587e-18 + art_sys_96: -9.28972881e-07 + art_sys_97: -1.08251819e-19 + art_sys_98: -1.38781850e-17 + art_sys_99: -3.36532725e-17 + art_sys_100: -3.34463604e-18 + art_sys_101: 4.06098909e-20 + art_sys_102: -1.17982871e-08 + art_sys_103: -1.22955647e-15 + art_sys_104: -5.28545662e-19 + art_sys_105: 6.65476272e-09 + art_sys_106: 1.66504542e-19 + art_sys_107: -3.03934879e-18 + art_sys_108: -2.28353116e-17 + art_sys_109: -2.67496375e-17 + art_sys_110: -2.94358859e-09 + art_sys_111: -1.25020376e-18 + art_sys_112: 2.06390579e-17 + art_sys_113: 1.21616633e-09 + art_sys_114: -3.16260496e-18 + art_sys_115: -1.30501119e-17 + art_sys_116: 1.02078816e-16 + art_sys_117: -5.75759168e-10 + art_sys_118: 6.92508313e-18 + art_sys_119: 9.38365508e-16 + art_sys_120: -2.04090282e-17 + art_sys_121: 8.07120754e-16 + art_sys_122: 1.49770974e-16 + art_sys_123: 1.00866866e-16 + art_sys_124: -1.73323456e-16 + art_sys_125: 7.83397708e-17 + art_sys_126: -3.68096455e-17 + art_sys_127: -2.30706625e-16 + art_sys_128: 5.03313637e-17 + art_sys_129: -2.11842203e-17 + art_sys_130: -1.27175130e-16 + art_sys_131: 2.69552530e-17 + art_sys_132: 3.33375482e-16 + art_sys_133: 5.44055255e-17 + art_sys_134: 3.51438347e-16 + art_sys_135: 4.43223673e-17 + art_sys_136: -2.94356126e-15 + art_sys_137: 2.14966017e-17 + art_sys_138: 2.44897769e-15 + art_sys_139: -3.46478857e-17 + art_sys_140: -6.40301451e-21 + art_sys_141: 9.09445213e-16 + art_sys_142: -0.0 + art_sys_143: -8.76135985e-17 + art_sys_144: -5.29474363e-16 + art_sys_145: -9.50216300e-16 + art_sys_146: 2.52402174e-10 + art_sys_147: 1.01905446e-10 + art_sys_148: 3.81986306e-11 + art_sys_149: 1.43612351e-11 + art_sys_150: -4.72352727e-12 + art_sys_151: -1.57227501e-12 + art_sys_152: 5.11343208e-13 + art_sys_153: -1.67595932e-13 + art_sys_154: 5.18778936e-14 + art_sys_155: -1.56579709e-14 + art_sys_156: 4.69641923e-15 + art_sys_157: -2.40187882e-16 art_sys_158: -0.0 - art_sys_159: -4.41803245e-17 - art_sys_160: 6.91627510e-16 - art_sys_161: -5.14771050e-18 - art_sys_162: -5.14771050e-18 - art_sys_163: 1.15847955e-17 - art_sys_164: 1.15847955e-17 - art_sys_165: -2.18504312e-30 - art_sys_166: 1.08812123e-30 - art_sys_167: 0.0 - art_sys_168: 3.88034609e-24 - art_sys_169: 2.19783065e-24 - art_sys_170: -2.01088801e-25 - art_sys_171: 6.48669954e-25 - art_sys_172: 2.16560694e-25 - art_sys_173: 5.58920377e-27 - art_sys_174: -3.67125689e-26 - art_sys_175: -2.68025918e-27 - art_sys_176: 1.98553311e-26 - art_sys_177: -4.36251632e-27 - art_sys_178: -1.04318437e-27 - art_sys_179: 1.81355179e-28 - art_sys_180: -1.74084552e-29 - art_sys_181: -1.16654037e-27 - art_sys_182: -1.22910297e-27 - art_sys_183: 9.59004422e-30 - art_sys_184: -2.28028794e-29 - art_sys_185: -2.00621364e-29 + art_sys_159: 7.16685586e-17 + art_sys_160: 7.16685586e-17 + art_sys_161: 3.44834055e-17 + art_sys_162: -7.50923097e-30 + art_sys_163: -0.0 + art_sys_164: -2.76556928e-30 + art_sys_165: -4.00440822e-23 + art_sys_166: 1.15956352e-23 + art_sys_167: -3.23115282e-23 + art_sys_168: 8.77700504e-24 + art_sys_169: 4.07349168e-24 + art_sys_170: 4.51127000e-24 + art_sys_171: 1.74336433e-24 + art_sys_172: -8.09293342e-25 + art_sys_173: -8.43711973e-25 + art_sys_174: 3.45374549e-28 + art_sys_175: 6.13604081e-26 + art_sys_176: 6.23459398e-26 + art_sys_177: -2.96869651e-26 + art_sys_178: -1.75608412e-26 + art_sys_179: -2.34653413e-26 + art_sys_180: 7.61157345e-28 + art_sys_181: 1.17030909e-27 + art_sys_182: 5.92382605e-28 + art_sys_183: 1.34093495e-28 + art_sys_184: 6.84519873e-30 + art_sys_185: -4.60229645e-30 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -33159,154 +33159,154 @@ bins: art_sys_35: 0.0 art_sys_36: 0.0 art_sys_37: 0.0 - art_sys_38: 0.0 - art_sys_39: 0.0 - art_sys_40: 0.0 - art_sys_41: 0.0 - art_sys_42: 0.0 - art_sys_43: 0.0 - art_sys_44: -2.66018419e-208 - art_sys_45: -1.34161955e-201 - art_sys_46: -1.59587855e-151 - art_sys_47: -8.83586337e-157 - art_sys_48: 4.76335507e-149 - art_sys_49: -4.06426369e-140 - art_sys_50: 1.74257972e-132 - art_sys_51: -7.23022426e-122 - art_sys_52: -8.03309113e-139 - art_sys_53: -2.56556923e-135 - art_sys_54: -3.03562039e-130 - art_sys_55: -7.48523315e-127 - art_sys_56: -1.20711520e-123 - art_sys_57: -4.30401801e-45 - art_sys_58: -2.13271533e-31 - art_sys_59: 8.18398761e-43 - art_sys_60: -9.89492042e-40 - art_sys_61: -3.90071008e-25 - art_sys_62: 1.08277242e-39 - art_sys_63: 1.82898317e-29 - art_sys_64: 4.40503860e-03 - art_sys_65: 2.10391499e-02 - art_sys_66: 3.26755347e-02 - art_sys_67: 1.63308905e-02 - art_sys_68: -6.86244571e-02 - art_sys_69: -7.21227374e-02 - art_sys_70: -1.57999570e-01 - art_sys_71: 1.30758121e-01 - art_sys_72: 1.28530691e-01 - art_sys_73: 8.43869071e-02 - art_sys_74: -1.86117864e-19 + art_sys_38: 1.11742106e-282 + art_sys_39: -1.23771782e-260 + art_sys_40: -8.31094235e-256 + art_sys_41: 1.13478545e-244 + art_sys_42: -2.70423643e-145 + art_sys_43: -3.36354670e-145 + art_sys_44: -1.94949196e-138 + art_sys_45: 3.45476656e-129 + art_sys_46: -9.01731603e-122 + art_sys_47: -7.26642083e-116 + art_sys_48: 7.73411740e-110 + art_sys_49: -2.54843785e-102 + art_sys_50: -2.22029057e-94 + art_sys_51: 1.76778940e-81 + art_sys_52: 8.22290798e-90 + art_sys_53: 6.76119116e-92 + art_sys_54: -7.13278390e-83 + art_sys_55: -3.19345224e-80 + art_sys_56: 1.91759657e-77 + art_sys_57: 4.40503860e-03 + art_sys_58: 2.10391499e-02 + art_sys_59: 3.26755347e-02 + art_sys_60: 4.97679683e-21 + art_sys_61: -1.63308905e-02 + art_sys_62: 6.86244571e-02 + art_sys_63: -7.21227374e-02 + art_sys_64: 1.57999570e-01 + art_sys_65: 1.30758121e-01 + art_sys_66: -9.19260845e-20 + art_sys_67: 1.28530691e-01 + art_sys_68: -8.43869071e-02 + art_sys_69: 2.97538791e-19 + art_sys_70: 5.79493098e-19 + art_sys_71: -2.75807642e-19 + art_sys_72: 3.05745511e-19 + art_sys_73: 3.08089373e-19 + art_sys_74: 3.69923269e-20 art_sys_75: -2.87023061e-02 - art_sys_76: 4.85916462e-15 - art_sys_77: -5.22401098e-15 - art_sys_78: -4.82395872e-17 + art_sys_76: 3.21631713e-15 + art_sys_77: -4.67461456e-15 + art_sys_78: 3.76440200e-15 art_sys_79: -6.38049702e-03 - art_sys_80: -7.18165656e-16 - art_sys_81: 3.59234340e-03 - art_sys_82: 8.79969268e-16 - art_sys_83: -6.46259686e-17 - art_sys_84: 6.30343925e-17 - art_sys_85: -1.45102894e-17 - art_sys_86: -1.83414597e-17 - art_sys_87: 5.51489660e-04 + art_sys_80: -7.21002032e-16 + art_sys_81: 2.58821895e-16 + art_sys_82: 1.46378966e-16 + art_sys_83: -8.40646317e-17 + art_sys_84: 3.59234340e-03 + art_sys_85: 1.78995509e-18 + art_sys_86: -4.94808115e-18 + art_sys_87: -5.51489660e-04 art_sys_88: 1.06965420e-04 - art_sys_89: -4.12301065e-19 - art_sys_90: 5.41250665e-05 - art_sys_91: -1.64738080e-16 - art_sys_92: -1.76288652e-20 - art_sys_93: -4.19419948e-20 - art_sys_94: 4.95539026e-06 - art_sys_95: 4.13053125e-16 - art_sys_96: 9.35895358e-18 - art_sys_97: 2.87024154e-18 - art_sys_98: -4.15236719e-15 - art_sys_99: -1.86186836e-16 - art_sys_100: -7.54334131e-14 - art_sys_101: -2.34400240e-15 - art_sys_102: 9.24380130e-16 - art_sys_103: -1.42281034e-14 - art_sys_104: 9.25149326e-16 - art_sys_105: 6.32975474e-08 - art_sys_106: 5.85818281e-16 - art_sys_107: -9.09636864e-17 - art_sys_108: 3.74912185e-08 - art_sys_109: 1.61526517e-08 - art_sys_110: -3.75818123e-15 - art_sys_111: -1.02864434e-15 - art_sys_112: -7.47528086e-16 - art_sys_113: 3.77410015e-16 - art_sys_114: -6.84542663e-09 - art_sys_115: 2.19773689e-16 - art_sys_116: 9.12219077e-18 - art_sys_117: -3.23317199e-09 - art_sys_118: -2.30037737e-16 - art_sys_119: 1.32401400e-15 - art_sys_120: 1.55517618e-17 - art_sys_121: -1.42711966e-09 - art_sys_122: 2.01360098e-15 - art_sys_123: -3.28567014e-18 - art_sys_124: -4.20517665e-17 - art_sys_125: -5.77656691e-10 - art_sys_126: -2.47702723e-16 - art_sys_127: 2.53105761e-16 - art_sys_128: 3.49865426e-17 - art_sys_129: 2.17019340e-10 - art_sys_130: 1.77579932e-15 - art_sys_131: -8.17410856e-11 - art_sys_132: -1.88612741e-15 - art_sys_133: 6.40720118e-15 - art_sys_134: -1.13944284e-18 - art_sys_135: 5.05678702e-17 - art_sys_136: -2.69051493e-11 - art_sys_137: 7.29516953e-15 - art_sys_138: 2.72739197e-18 - art_sys_139: -1.60540591e-16 - art_sys_140: 8.96709580e-12 - art_sys_141: -3.06225873e-15 - art_sys_142: 4.60935343e-18 - art_sys_143: 1.58445635e-15 - art_sys_144: -2.91013927e-12 - art_sys_145: -2.19044245e-17 - art_sys_146: -1.59434366e-15 - art_sys_147: 9.57552235e-13 - art_sys_148: 2.82720429e-13 - art_sys_149: 2.92892824e-17 - art_sys_150: -1.09804907e-15 - art_sys_151: -9.26001393e-16 - art_sys_152: -9.96046156e-14 - art_sys_153: 1.43102300e-15 - art_sys_154: 2.42925208e-18 - art_sys_155: 2.05586661e-14 - art_sys_156: -0.0 - art_sys_157: -5.21723144e-17 + art_sys_89: 5.41250665e-05 + art_sys_90: 1.24357575e-15 + art_sys_91: 1.28605060e-14 + art_sys_92: -3.26664761e-16 + art_sys_93: -2.97507596e-14 + art_sys_94: 1.87283473e-16 + art_sys_95: -2.74100764e-17 + art_sys_96: 4.95539029e-06 + art_sys_97: 5.12758148e-19 + art_sys_98: 6.94071857e-17 + art_sys_99: 1.68463616e-16 + art_sys_100: 1.74884509e-17 + art_sys_101: -1.33847584e-19 + art_sys_102: 6.32980772e-08 + art_sys_103: 6.39556952e-15 + art_sys_104: 2.79919669e-18 + art_sys_105: -3.74910923e-08 + art_sys_106: -8.05902217e-19 + art_sys_107: 1.52332451e-17 + art_sys_108: 1.17644053e-16 + art_sys_109: 1.39034571e-16 + art_sys_110: 1.61526642e-08 + art_sys_111: 6.54832344e-18 + art_sys_112: -1.26854670e-16 + art_sys_113: -6.84540408e-09 + art_sys_114: 1.63725524e-17 + art_sys_115: 6.67300042e-17 + art_sys_116: -5.31592147e-16 + art_sys_117: 3.23318627e-09 + art_sys_118: -3.60784046e-17 + art_sys_119: -5.00549292e-15 + art_sys_120: 1.06181611e-16 + art_sys_121: -4.12537963e-15 + art_sys_122: -7.79269631e-16 + art_sys_123: -5.47314660e-16 + art_sys_124: 9.00156493e-16 + art_sys_125: -4.12736554e-16 + art_sys_126: 1.95979395e-16 + art_sys_127: 1.21288923e-15 + art_sys_128: -2.90602599e-16 + art_sys_129: 9.53514031e-17 + art_sys_130: 7.33674877e-16 + art_sys_131: -1.63835566e-16 + art_sys_132: -1.74478282e-15 + art_sys_133: -2.91883160e-16 + art_sys_134: -1.99519833e-15 + art_sys_135: -2.32859183e-16 + art_sys_136: 1.67545706e-14 + art_sys_137: -1.12672592e-16 + art_sys_138: -1.39345243e-14 + art_sys_139: 1.93274855e-16 + art_sys_140: 3.27578703e-20 + art_sys_141: -5.17852161e-15 + art_sys_142: 0.0 + art_sys_143: 4.99624086e-16 + art_sys_144: 3.01105389e-15 + art_sys_145: 5.41029120e-15 + art_sys_146: -1.42713694e-09 + art_sys_147: -5.77650876e-10 + art_sys_148: -2.17017943e-10 + art_sys_149: -8.17412407e-11 + art_sys_150: 2.69087475e-11 + art_sys_151: 8.96438132e-12 + art_sys_152: -2.91646761e-12 + art_sys_153: 9.56133836e-13 + art_sys_154: -2.96008275e-13 + art_sys_155: 8.93474637e-14 + art_sys_156: -2.67998635e-14 + art_sys_157: 1.37024287e-15 art_sys_158: 0.0 - art_sys_159: 2.51387120e-16 - art_sys_160: -3.94625832e-15 - art_sys_161: 2.92990973e-17 - art_sys_162: 2.92990973e-17 - art_sys_163: -6.60186053e-17 - art_sys_164: -6.60186053e-17 - art_sys_165: 1.24681510e-29 - art_sys_166: -6.20908050e-30 - art_sys_167: -0.0 - art_sys_168: -2.18366922e-23 - art_sys_169: -1.24599220e-23 - art_sys_170: 1.23173787e-24 - art_sys_171: -2.94562360e-24 - art_sys_172: -1.17193110e-24 - art_sys_173: -1.60842742e-26 - art_sys_174: 1.94294790e-25 - art_sys_175: 1.65190114e-26 - art_sys_176: -1.13715867e-25 - art_sys_177: 2.76098105e-26 - art_sys_178: 5.89904531e-27 - art_sys_179: -1.03507243e-27 - art_sys_180: 9.93191578e-29 - art_sys_181: 6.98930527e-27 - art_sys_182: 7.09789245e-27 - art_sys_183: -6.10488798e-29 - art_sys_184: 1.30139146e-28 - art_sys_185: 1.14496770e-28 + art_sys_159: -4.07068040e-16 + art_sys_160: -4.07068040e-16 + art_sys_161: -1.96813773e-16 + art_sys_162: 4.28672498e-29 + art_sys_163: 0.0 + art_sys_164: 1.57926218e-29 + art_sys_165: 2.28270665e-22 + art_sys_166: -6.61564637e-23 + art_sys_167: 1.77719070e-22 + art_sys_168: -5.00217055e-23 + art_sys_169: -2.32091990e-23 + art_sys_170: -2.58096836e-23 + art_sys_171: -9.44086645e-24 + art_sys_172: 3.75729440e-24 + art_sys_173: 4.69666829e-24 + art_sys_174: -1.97082725e-27 + art_sys_175: -3.51009715e-25 + art_sys_176: -3.55411852e-25 + art_sys_177: 1.69945306e-25 + art_sys_178: 1.00397549e-25 + art_sys_179: 1.28850624e-25 + art_sys_180: -4.21731582e-27 + art_sys_181: -6.69150525e-27 + art_sys_182: -3.36131960e-27 + art_sys_183: -7.65244258e-28 + art_sys_184: -3.90782477e-29 + art_sys_185: 2.62629562e-29 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -33450,154 +33450,154 @@ bins: art_sys_35: 0.0 art_sys_36: 0.0 art_sys_37: 0.0 - art_sys_38: 0.0 - art_sys_39: 0.0 - art_sys_40: 0.0 - art_sys_41: 0.0 - art_sys_42: 0.0 - art_sys_43: 0.0 - art_sys_44: -1.18906337e-208 - art_sys_45: -5.99684271e-202 - art_sys_46: -6.88387502e-152 - art_sys_47: -3.81137894e-157 - art_sys_48: 2.05468899e-149 - art_sys_49: -1.75313361e-140 - art_sys_50: 7.51667536e-133 - art_sys_51: -3.11878119e-122 - art_sys_52: -3.46510045e-139 - art_sys_53: -1.10666679e-135 - art_sys_54: -1.30942491e-130 - art_sys_55: -3.22878012e-127 - art_sys_56: -5.20693139e-124 - art_sys_57: -1.85570438e-45 - art_sys_58: -9.19533606e-32 - art_sys_59: 3.52857764e-43 - art_sys_60: -4.26625704e-40 - art_sys_61: -1.68181564e-25 - art_sys_62: 4.66846226e-40 - art_sys_63: 7.88577578e-30 - art_sys_64: 1.89926002e-03 - art_sys_65: 1.15514208e-03 - art_sys_66: 4.47839131e-03 - art_sys_67: 7.03394410e-03 - art_sys_68: 2.28529119e-02 - art_sys_69: -8.49182234e-02 - art_sys_70: 9.10314569e-02 - art_sys_71: -2.25408899e-02 - art_sys_72: 1.42578380e-01 - art_sys_73: -3.39918644e-02 - art_sys_74: -2.18209571e-19 + art_sys_38: 2.23484212e-282 + art_sys_39: -4.49604083e-261 + art_sys_40: -3.01897056e-256 + art_sys_41: 4.12213641e-245 + art_sys_42: -1.16594843e-145 + art_sys_43: -1.45021417e-145 + art_sys_44: -8.40535633e-139 + art_sys_45: 1.48954418e-129 + art_sys_46: -3.88787213e-122 + art_sys_47: -3.13296273e-116 + art_sys_48: 3.33461302e-110 + art_sys_49: -1.09877490e-102 + art_sys_50: -9.57292147e-95 + art_sys_51: 7.62193440e-82 + art_sys_52: 3.54535814e-90 + art_sys_53: 2.91512980e-92 + art_sys_54: -3.07534433e-83 + art_sys_55: -1.37687688e-80 + art_sys_56: 8.26783737e-78 + art_sys_57: 1.89926002e-03 + art_sys_58: 1.15514208e-03 + art_sys_59: 4.47839131e-03 + art_sys_60: 2.06048376e-21 + art_sys_61: -7.03394410e-03 + art_sys_62: -2.28529119e-02 + art_sys_63: -8.49182234e-02 + art_sys_64: -9.10314569e-02 + art_sys_65: -2.25408899e-02 + art_sys_66: 1.54007586e-19 + art_sys_67: 1.42578380e-01 + art_sys_68: 3.39918644e-02 + art_sys_69: 5.37437986e-19 + art_sys_70: 1.94815719e-19 + art_sys_71: -4.30667883e-19 + art_sys_72: 2.91694052e-19 + art_sys_73: 3.63300651e-19 + art_sys_74: 2.59328220e-20 art_sys_75: 3.25418310e-02 - art_sys_76: -9.07487666e-15 - art_sys_77: 9.26967382e-15 - art_sys_78: 6.09682485e-16 + art_sys_76: -6.93342838e-15 + art_sys_77: 1.00875717e-14 + art_sys_78: -6.46561309e-15 art_sys_79: 1.14093504e-02 - art_sys_80: 1.34641119e-15 - art_sys_81: -6.73714534e-03 - art_sys_82: -1.65012244e-15 - art_sys_83: 1.41712096e-16 - art_sys_84: -1.42604673e-16 - art_sys_85: 3.36693463e-17 - art_sys_86: 4.22419414e-17 - art_sys_87: -1.25652505e-03 + art_sys_80: 1.31288266e-15 + art_sys_81: -4.58189124e-16 + art_sys_82: -3.00222543e-16 + art_sys_83: 1.63905738e-16 + art_sys_84: -6.73714534e-03 + art_sys_85: -8.34421874e-18 + art_sys_86: 1.18932619e-17 + art_sys_87: 1.25652506e-03 art_sys_88: -2.58648401e-04 - art_sys_89: 1.01714066e-18 - art_sys_90: -1.32979077e-04 - art_sys_91: 3.04964167e-16 - art_sys_92: 4.62089064e-20 - art_sys_93: 1.09411188e-19 - art_sys_94: -1.29318176e-05 - art_sys_95: -9.49352664e-16 - art_sys_96: -1.83607023e-17 - art_sys_97: -4.79758892e-18 - art_sys_98: 9.45966143e-15 - art_sys_99: 4.23915149e-16 - art_sys_100: 1.71865656e-13 - art_sys_101: 5.34075276e-15 - art_sys_102: -2.12606983e-15 - art_sys_103: 3.24178214e-14 - art_sys_104: -2.10880658e-15 - art_sys_105: -1.63251998e-07 - art_sys_106: -1.33451469e-15 - art_sys_107: 2.18939094e-16 - art_sys_108: -9.78179919e-08 - art_sys_109: -4.33799945e-08 - art_sys_110: 9.22235872e-15 - art_sys_111: 2.48432968e-15 - art_sys_112: 1.80202900e-15 - art_sys_113: -9.44677307e-16 - art_sys_114: 1.83925745e-08 - art_sys_115: -5.31504515e-16 - art_sys_116: -2.38393338e-17 - art_sys_117: 8.85595150e-09 - art_sys_118: 5.56651397e-16 - art_sys_119: -3.45521491e-15 - art_sys_120: -3.82739257e-17 - art_sys_121: 3.93541846e-09 - art_sys_122: -4.94706693e-15 - art_sys_123: 8.46320104e-18 - art_sys_124: 1.03314177e-16 - art_sys_125: 1.60825694e-09 - art_sys_126: 6.46423192e-16 - art_sys_127: -6.54757459e-16 - art_sys_128: -9.12819896e-17 - art_sys_129: -6.07681158e-10 - art_sys_130: -4.85251625e-15 - art_sys_131: 2.29918801e-10 - art_sys_132: 4.92213957e-15 - art_sys_133: -1.76023275e-14 - art_sys_134: 2.95822214e-18 - art_sys_135: -1.31916053e-16 - art_sys_136: 7.59204938e-11 - art_sys_137: -2.02609248e-14 - art_sys_138: -6.95765012e-18 - art_sys_139: 4.46048807e-16 - art_sys_140: -2.53511746e-11 - art_sys_141: 7.99131591e-15 - art_sys_142: -1.19736623e-17 - art_sys_143: -4.44068322e-15 - art_sys_144: 8.23803276e-12 - art_sys_145: 5.72336980e-17 - art_sys_146: 4.48001349e-15 - art_sys_147: -2.71243836e-12 - art_sys_148: -8.01217533e-13 - art_sys_149: -7.78160579e-17 - art_sys_150: 3.09440720e-15 - art_sys_151: 2.62576284e-15 - art_sys_152: 2.82323973e-13 - art_sys_153: -4.03945218e-15 - art_sys_154: -5.99144771e-18 - art_sys_155: -5.82873947e-14 - art_sys_156: 0.0 - art_sys_157: 1.47108590e-16 + art_sys_89: -1.32979077e-04 + art_sys_90: -2.26031591e-15 + art_sys_91: -2.41182205e-14 + art_sys_92: 6.12207317e-16 + art_sys_93: 5.57954071e-14 + art_sys_94: -3.50954956e-16 + art_sys_95: 5.38529744e-17 + art_sys_96: -1.29318177e-05 + art_sys_97: -1.20674612e-18 + art_sys_98: -1.29887259e-16 + art_sys_99: -3.15961323e-16 + art_sys_100: -4.09791962e-17 + art_sys_101: 3.76806427e-19 + art_sys_102: -1.63253381e-07 + art_sys_103: -1.45723009e-14 + art_sys_104: -6.58831941e-18 + art_sys_105: 9.78176620e-08 + art_sys_106: 1.81555663e-18 + art_sys_107: -2.83015229e-17 + art_sys_108: -2.85159927e-16 + art_sys_109: -3.16784911e-16 + art_sys_110: -4.33800282e-08 + art_sys_111: -1.45912549e-17 + art_sys_112: 3.45474690e-16 + art_sys_113: 1.83925132e-08 + art_sys_114: -3.70770665e-17 + art_sys_115: -1.60530595e-16 + art_sys_116: 1.20373918e-15 + art_sys_117: -8.85599077e-09 + art_sys_118: 8.22946796e-17 + art_sys_119: 1.30625854e-14 + art_sys_120: -2.41920075e-16 + art_sys_121: 9.91789390e-15 + art_sys_122: 1.77419835e-15 + art_sys_123: 1.40903452e-15 + art_sys_124: -2.05234483e-15 + art_sys_125: 9.74999943e-16 + art_sys_126: -5.08757023e-16 + art_sys_127: -2.98705570e-15 + art_sys_128: 1.06477442e-15 + art_sys_129: -1.62596102e-16 + art_sys_130: -2.06626416e-15 + art_sys_131: 4.93884438e-16 + art_sys_132: 4.26951012e-15 + art_sys_133: 7.54330797e-16 + art_sys_134: 5.59845769e-15 + art_sys_135: 5.75623980e-16 + art_sys_136: -4.71249303e-14 + art_sys_137: 2.83052220e-16 + art_sys_138: 3.91752460e-14 + art_sys_139: -5.25508371e-16 + art_sys_140: -7.01369477e-20 + art_sys_141: 1.45723072e-14 + art_sys_142: -0.0 + art_sys_143: -1.40981109e-15 + art_sys_144: -8.45710693e-15 + art_sys_145: -1.52242708e-14 + art_sys_146: 3.93546590e-09 + art_sys_147: 1.60824074e-09 + art_sys_148: 6.07677213e-10 + art_sys_149: 2.29919236e-10 + art_sys_150: -7.59306394e-11 + art_sys_151: -2.53434964e-11 + art_sys_152: 8.25594581e-12 + art_sys_153: -2.70842045e-12 + art_sys_154: 8.38864185e-13 + art_sys_155: -2.53256713e-13 + art_sys_156: 7.59723543e-14 + art_sys_157: -3.88070619e-15 art_sys_158: -0.0 - art_sys_159: -7.08424792e-16 - art_sys_160: 1.11831323e-14 - art_sys_161: -8.24627832e-17 - art_sys_162: -8.24627832e-17 - art_sys_163: 1.86527097e-16 - art_sys_164: 1.86527097e-16 - art_sys_165: -3.53399304e-29 - art_sys_166: 1.75998685e-29 - art_sys_167: 0.0 - art_sys_168: 5.88207600e-23 - art_sys_169: 3.47711470e-23 - art_sys_170: -3.64673986e-24 - art_sys_171: 4.00485621e-24 - art_sys_172: 2.85419927e-24 - art_sys_173: 1.83554055e-27 - art_sys_174: -5.10744905e-25 - art_sys_175: -6.19917188e-26 - art_sys_176: 3.24448657e-25 - art_sys_177: -7.25448465e-26 - art_sys_178: -1.64792978e-26 - art_sys_179: 2.93565132e-27 - art_sys_180: -2.81431856e-28 - art_sys_181: -2.25269244e-26 - art_sys_182: -1.97867729e-26 - art_sys_183: 1.87343422e-28 - art_sys_184: -3.69090138e-28 - art_sys_185: -3.24716930e-28 + art_sys_159: 1.13986266e-15 + art_sys_160: 1.13986266e-15 + art_sys_161: 5.58234382e-16 + art_sys_162: -1.21658575e-28 + art_sys_163: -0.0 + art_sys_164: -4.48630496e-29 + art_sys_165: -6.46147752e-22 + art_sys_166: 1.87315857e-22 + art_sys_167: -5.15070280e-22 + art_sys_168: 1.41971510e-22 + art_sys_169: 6.57025266e-23 + art_sys_170: 7.32911766e-23 + art_sys_171: 2.66836574e-23 + art_sys_172: -1.01120244e-23 + art_sys_173: -1.24419525e-23 + art_sys_174: 5.58656594e-27 + art_sys_175: 9.96758387e-25 + art_sys_176: 1.00827271e-24 + art_sys_177: -4.81599570e-25 + art_sys_178: -2.84113696e-25 + art_sys_179: -3.41155286e-25 + art_sys_180: 1.06078925e-26 + art_sys_181: 1.88848915e-26 + art_sys_182: 9.42623111e-27 + art_sys_183: 2.16910432e-27 + art_sys_184: 1.10946474e-28 + art_sys_185: -7.44551569e-29 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -33742,153 +33742,153 @@ bins: art_sys_36: 0.0 art_sys_37: 0.0 art_sys_38: 0.0 - art_sys_39: 0.0 - art_sys_40: 0.0 - art_sys_41: 0.0 - art_sys_42: 0.0 - art_sys_43: 0.0 - art_sys_44: -2.76892450e-209 - art_sys_45: -1.39646084e-202 - art_sys_46: -1.55919819e-152 - art_sys_47: -8.63277605e-158 - art_sys_48: 4.65387205e-150 - art_sys_49: -3.97084889e-141 - art_sys_50: 1.70252751e-133 - art_sys_51: -7.06404165e-123 - art_sys_52: -7.84845502e-140 - art_sys_53: -2.50660107e-136 - art_sys_54: -2.96584838e-131 - art_sys_55: -7.31318930e-128 - art_sys_56: -1.17937034e-124 - art_sys_57: -4.20161431e-46 - art_sys_58: -2.08197253e-32 - art_sys_59: 7.98926942e-44 - art_sys_60: -9.65949473e-41 - art_sys_61: -3.80790212e-26 - art_sys_62: 1.05701097e-40 - art_sys_63: 1.78546694e-30 - art_sys_64: 4.30023124e-04 - art_sys_65: -1.19311629e-03 - art_sys_66: -1.12973738e-03 - art_sys_67: 3.65079577e-04 - art_sys_68: 1.14984477e-02 - art_sys_69: -6.00041474e-03 - art_sys_70: 3.02971354e-02 - art_sys_71: -2.18635288e-02 - art_sys_72: 5.11831117e-02 - art_sys_73: -1.26694346e-01 - art_sys_74: -6.18835071e-20 + art_sys_39: -9.02354232e-262 + art_sys_40: -6.05906604e-257 + art_sys_41: 8.27311718e-246 + art_sys_42: -2.63989531e-146 + art_sys_43: -3.28351880e-146 + art_sys_44: -1.90310825e-139 + art_sys_45: 3.37256829e-130 + art_sys_46: -8.80276962e-123 + art_sys_47: -7.09353296e-117 + art_sys_48: 7.55010177e-111 + art_sys_49: -2.48780360e-103 + art_sys_50: -2.16746383e-95 + art_sys_51: 1.72572889e-82 + art_sys_52: 8.02726270e-91 + art_sys_53: 6.60032408e-93 + art_sys_54: -6.96307563e-84 + art_sys_55: -3.11747135e-81 + art_sys_56: 1.87197174e-78 + art_sys_57: 4.30023124e-04 + art_sys_58: -1.19311629e-03 + art_sys_59: -1.12973738e-03 + art_sys_60: 1.38708878e-22 + art_sys_61: -3.65079577e-04 + art_sys_62: -1.14984477e-02 + art_sys_63: -6.00041474e-03 + art_sys_64: -3.02971354e-02 + art_sys_65: -2.18635288e-02 + art_sys_66: 9.33464338e-20 + art_sys_67: 5.11831117e-02 + art_sys_68: 1.26694346e-01 + art_sys_69: 6.18650552e-19 + art_sys_70: -4.12936485e-19 + art_sys_71: -2.66320487e-19 + art_sys_72: 1.36777983e-19 + art_sys_73: 1.26698837e-19 + art_sys_74: 4.79241545e-20 art_sys_75: -2.40447666e-02 - art_sys_76: 6.17745507e-15 - art_sys_77: -5.87216449e-15 - art_sys_78: -1.92223854e-15 + art_sys_76: 9.81840900e-15 + art_sys_77: -1.36178783e-14 + art_sys_78: 2.68210369e-15 art_sys_79: -7.69164209e-03 - art_sys_80: -1.60758211e-15 - art_sys_81: 7.65701046e-03 - art_sys_82: 1.87385976e-15 - art_sys_83: -2.09710581e-16 - art_sys_84: 2.11756095e-16 - art_sys_85: -5.21953897e-17 - art_sys_86: -6.47736038e-17 - art_sys_87: 1.89016022e-03 - art_sys_88: 4.29204135e-04 - art_sys_89: -1.80138249e-18 - art_sys_90: 2.33864373e-04 - art_sys_91: -3.38447182e-16 - art_sys_92: -8.77878639e-20 - art_sys_93: -2.12620561e-19 - art_sys_94: 2.49728439e-05 - art_sys_95: 1.45198409e-15 - art_sys_96: 2.22018692e-17 - art_sys_97: 4.24121080e-18 - art_sys_98: -1.42262042e-14 - art_sys_99: -6.37911745e-16 - art_sys_100: -2.58521416e-13 - art_sys_101: -8.03413130e-15 - art_sys_102: 3.25187792e-15 - art_sys_103: -4.87662180e-14 - art_sys_104: 3.17617714e-15 - art_sys_105: 3.73562119e-07 - art_sys_106: 2.00655765e-15 - art_sys_107: -3.56769931e-16 - art_sys_108: 2.13266555e-07 - art_sys_109: 9.72644339e-08 - art_sys_110: -1.61508615e-14 - art_sys_111: -4.10415687e-15 - art_sys_112: -2.95542288e-15 - art_sys_113: 1.76974582e-15 - art_sys_114: -4.20177224e-08 - art_sys_115: 8.82458130e-16 - art_sys_116: 4.61660690e-17 - art_sys_117: -2.03613800e-08 - art_sys_118: -9.24288682e-16 - art_sys_119: 6.67244222e-15 - art_sys_120: 6.73832637e-17 - art_sys_121: -9.16691323e-09 - art_sys_122: 8.69954820e-15 - art_sys_123: -1.90540546e-17 - art_sys_124: -1.81672557e-16 - art_sys_125: -3.76728122e-09 - art_sys_126: -1.24835281e-15 - art_sys_127: 1.41907487e-15 - art_sys_128: 1.76221325e-16 - art_sys_129: 1.43201375e-09 - art_sys_130: 1.14195290e-14 - art_sys_131: -5.43654920e-10 - art_sys_132: -9.50517482e-15 - art_sys_133: 4.06080418e-14 - art_sys_134: -6.59989987e-18 - art_sys_135: 2.56069233e-16 - art_sys_136: -1.79948682e-10 - art_sys_137: 4.73691609e-14 - art_sys_138: 1.86314112e-17 - art_sys_139: -1.04046335e-15 - art_sys_140: 6.01852561e-11 - art_sys_141: -1.74046022e-14 - art_sys_142: 2.72336080e-17 - art_sys_143: 1.04702043e-14 - art_sys_144: -1.95736680e-11 - art_sys_145: -1.24799150e-16 - art_sys_146: -1.05877949e-14 - art_sys_147: 6.44849491e-12 - art_sys_148: 1.90536004e-12 - art_sys_149: 1.72978636e-16 - art_sys_150: -7.32740140e-15 - art_sys_151: -6.24769772e-15 - art_sys_152: -6.71478132e-13 - art_sys_153: 9.57868852e-15 - art_sys_154: 1.06784996e-17 - art_sys_155: 1.38656599e-13 - art_sys_156: -0.0 - art_sys_157: -3.48691078e-16 + art_sys_80: -1.11305311e-15 + art_sys_81: 4.55125758e-16 + art_sys_82: 4.00498388e-16 + art_sys_83: -1.97802491e-16 + art_sys_84: 7.65701046e-03 + art_sys_85: 1.18630062e-17 + art_sys_86: -1.98181741e-17 + art_sys_87: -1.89016022e-03 + art_sys_88: 4.29204136e-04 + art_sys_89: 2.33864373e-04 + art_sys_90: 1.85491188e-15 + art_sys_91: 2.74103034e-14 + art_sys_92: -6.95093466e-16 + art_sys_93: -6.34132288e-14 + art_sys_94: 3.99123317e-16 + art_sys_95: -6.64745952e-17 + art_sys_96: 2.49728440e-05 + art_sys_97: 1.85311711e-18 + art_sys_98: 1.47042441e-16 + art_sys_99: 3.59113136e-16 + art_sys_100: 6.48001223e-17 + art_sys_101: -7.82718484e-19 + art_sys_102: 3.73565131e-07 + art_sys_103: 2.19221605e-14 + art_sys_104: 1.04871624e-17 + art_sys_105: -2.13265830e-07 + art_sys_106: -2.61493415e-18 + art_sys_107: 3.16002260e-17 + art_sys_108: 4.75547393e-16 + art_sys_109: 4.76416152e-16 + art_sys_110: 9.72645126e-08 + art_sys_111: 2.10966180e-17 + art_sys_112: -8.16642135e-16 + art_sys_113: -4.20175833e-08 + art_sys_114: 5.52047844e-17 + art_sys_115: 2.60200859e-16 + art_sys_116: -1.79080349e-15 + art_sys_117: 2.03614710e-08 + art_sys_118: -1.24015318e-16 + art_sys_119: -2.52254222e-14 + art_sys_120: 3.63881719e-16 + art_sys_121: -1.60962108e-14 + art_sys_122: -2.66607968e-15 + art_sys_123: -3.27614782e-15 + art_sys_124: 3.08308436e-15 + art_sys_125: -1.60752060e-15 + art_sys_126: 9.74268842e-16 + art_sys_127: 5.27369818e-15 + art_sys_128: -2.90390204e-15 + art_sys_129: 2.23900336e-16 + art_sys_130: 4.87423088e-15 + art_sys_131: -1.23485112e-15 + art_sys_132: -7.41083084e-15 + art_sys_133: -1.69429147e-15 + art_sys_134: -1.32048874e-14 + art_sys_135: -1.02209039e-15 + art_sys_136: 1.11426998e-13 + art_sys_137: -4.96837639e-16 + art_sys_138: -9.25900497e-14 + art_sys_139: 1.20693348e-15 + art_sys_140: 9.75086039e-20 + art_sys_141: -3.44715442e-14 + art_sys_142: 0.0 + art_sys_143: 3.35467530e-15 + art_sys_144: 1.99735947e-14 + art_sys_145: 3.60127968e-14 + art_sys_146: -9.16702258e-09 + art_sys_147: -3.76724323e-09 + art_sys_148: -1.43200440e-09 + art_sys_149: -5.43655947e-10 + art_sys_150: 1.79972713e-10 + art_sys_151: 6.01670220e-11 + art_sys_152: -1.96162280e-11 + art_sys_153: 6.43894271e-12 + art_sys_154: -1.99487119e-12 + art_sys_155: 6.02354748e-13 + art_sys_156: -1.80709457e-13 + art_sys_157: 9.22418172e-15 art_sys_158: 0.0 - art_sys_159: 1.67780665e-15 - art_sys_160: -2.65942692e-14 - art_sys_161: 1.95015343e-16 - art_sys_162: 1.95015343e-16 - art_sys_163: -4.42672414e-16 - art_sys_164: -4.42672414e-16 - art_sys_165: 8.40532384e-29 - art_sys_166: -4.18610564e-29 - art_sys_167: -0.0 - art_sys_168: -1.53057526e-22 - art_sys_169: -8.13158213e-23 - art_sys_170: 8.51845788e-24 - art_sys_171: 2.06237251e-24 - art_sys_172: -5.59332307e-24 - art_sys_173: 1.66827136e-25 - art_sys_174: 1.12274288e-24 - art_sys_175: 1.93109802e-25 - art_sys_176: -7.80916292e-25 - art_sys_177: 1.78805036e-25 - art_sys_178: 3.79071229e-26 - art_sys_179: -6.98519853e-27 - art_sys_180: 6.69216518e-28 - art_sys_181: 5.77708868e-26 - art_sys_182: 4.66405487e-26 - art_sys_183: -4.80193940e-28 - art_sys_184: 8.78201494e-28 - art_sys_185: 7.72604297e-28 + art_sys_159: -2.68525634e-15 + art_sys_160: -2.68525634e-15 + art_sys_161: -1.32838579e-15 + art_sys_162: 2.89628783e-28 + art_sys_163: 0.0 + art_sys_164: 1.06880918e-28 + art_sys_165: 1.53405646e-21 + art_sys_166: -4.45215022e-22 + art_sys_167: 1.20304398e-21 + art_sys_168: -3.37558044e-22 + art_sys_169: -1.55766791e-22 + art_sys_170: -1.75338221e-22 + art_sys_171: -5.45007268e-23 + art_sys_172: 1.40260220e-23 + art_sys_173: 2.74280268e-23 + art_sys_174: -1.32877066e-26 + art_sys_175: -2.37238099e-24 + art_sys_176: -2.39142334e-24 + art_sys_177: 1.14411649e-24 + art_sys_178: 6.77819512e-25 + art_sys_179: 7.07486902e-25 + art_sys_180: -2.48189878e-26 + art_sys_181: -4.55282483e-26 + art_sys_182: -2.17165711e-26 + art_sys_183: -5.15860124e-27 + art_sys_184: -2.64192397e-28 + art_sys_185: 1.77109660e-28 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -34033,153 +34033,153 @@ bins: art_sys_36: 0.0 art_sys_37: 0.0 art_sys_38: 0.0 - art_sys_39: 0.0 - art_sys_40: 0.0 - art_sys_41: 0.0 - art_sys_42: 0.0 - art_sys_43: 0.0 - art_sys_44: -1.90553233e-210 - art_sys_45: -9.61023367e-204 - art_sys_46: -9.89976917e-154 - art_sys_47: -5.48118198e-159 - art_sys_48: 2.95486868e-151 - art_sys_49: -2.52119889e-142 - art_sys_50: 1.08098056e-134 - art_sys_51: -4.48515026e-124 - art_sys_52: -4.98319544e-141 - art_sys_53: -1.59150852e-137 - art_sys_54: -1.88309700e-132 - art_sys_55: -4.64334082e-129 - art_sys_56: -7.48813985e-126 - art_sys_57: -2.66467205e-47 - art_sys_58: -1.32039107e-33 - art_sys_59: 5.06681038e-45 - art_sys_60: -6.12607054e-42 - art_sys_61: -2.41497901e-27 - art_sys_62: 6.70368098e-42 - art_sys_63: 1.13234664e-31 - art_sys_64: 2.72721499e-05 - art_sys_65: -3.60285269e-04 - art_sys_66: -5.23186009e-04 - art_sys_67: -3.81528105e-04 - art_sys_68: 2.32361333e-04 - art_sys_69: 6.27790428e-03 - art_sys_70: -3.40802396e-03 - art_sys_71: -7.72761699e-04 - art_sys_72: -1.01361971e-02 - art_sys_73: -2.00420601e-02 - art_sys_74: 1.91496469e-20 + art_sys_39: -3.76065997e-263 + art_sys_40: -2.52518206e-258 + art_sys_41: 3.44791209e-247 + art_sys_42: -1.67422648e-147 + art_sys_43: -2.08241369e-147 + art_sys_44: -1.20695477e-140 + art_sys_45: 2.13888904e-131 + art_sys_46: -5.58273275e-124 + art_sys_47: -4.49873171e-118 + art_sys_48: 4.78828849e-112 + art_sys_49: -1.57776964e-104 + art_sys_50: -1.37460957e-96 + art_sys_51: 1.09446045e-83 + art_sys_52: 5.09090483e-92 + art_sys_53: 4.18593772e-94 + art_sys_54: -4.41599542e-85 + art_sys_55: -1.97710609e-82 + art_sys_56: 1.18720794e-79 + art_sys_57: 2.72721499e-05 + art_sys_58: -3.60285269e-04 + art_sys_59: -5.23186009e-04 + art_sys_60: -1.21430233e-22 + art_sys_61: 3.81528105e-04 + art_sys_62: -2.32361333e-04 + art_sys_63: 6.27790428e-03 + art_sys_64: 3.40802396e-03 + art_sys_65: -7.72761699e-04 + art_sys_66: -6.99228419e-21 + art_sys_67: -1.01361971e-02 + art_sys_68: 2.00420601e-02 + art_sys_69: 4.14033064e-20 + art_sys_70: -1.10145675e-19 + art_sys_71: 9.71763224e-21 + art_sys_72: -1.48684489e-20 + art_sys_73: -3.15306063e-20 + art_sys_74: 4.81696031e-21 art_sys_75: -3.29315067e-02 - art_sys_76: -2.03375973e-14 - art_sys_77: 1.66306104e-14 - art_sys_78: 6.23605561e-15 + art_sys_76: -2.49194270e-14 + art_sys_77: 3.64575925e-14 + art_sys_78: -7.91334216e-15 art_sys_79: 1.87526498e-02 - art_sys_80: 3.23582529e-15 - art_sys_81: -1.35410373e-02 - art_sys_82: -3.31546220e-15 - art_sys_83: 5.68676598e-16 - art_sys_84: -5.84145626e-16 - art_sys_85: 1.47056398e-16 - art_sys_86: 1.79607781e-16 - art_sys_87: -5.21288118e-03 + art_sys_80: 2.33820727e-15 + art_sys_81: -6.05290924e-16 + art_sys_82: -9.54450407e-16 + art_sys_83: 3.99604684e-16 + art_sys_84: -1.35410373e-02 + art_sys_85: -4.58185655e-17 + art_sys_86: 5.60417717e-17 + art_sys_87: 5.21288118e-03 art_sys_88: -1.19457306e-03 - art_sys_89: 5.34606369e-18 - art_sys_90: -6.88435721e-04 - art_sys_91: 5.64581015e-16 - art_sys_92: 2.93400903e-19 - art_sys_93: 6.85013336e-19 - art_sys_94: -8.03338511e-05 - art_sys_95: -4.00986648e-15 - art_sys_96: -4.51272863e-17 - art_sys_97: -2.52639453e-18 - art_sys_98: 3.92336270e-14 - art_sys_99: 1.75933885e-15 - art_sys_100: 7.12964085e-13 - art_sys_101: 2.21576653e-14 - art_sys_102: -8.98389709e-15 - art_sys_103: 1.34493653e-13 - art_sys_104: -8.76684405e-15 - art_sys_105: -1.14242797e-06 - art_sys_106: -5.53284828e-15 - art_sys_107: 9.74496142e-16 - art_sys_108: -7.21296838e-07 - art_sys_109: -3.27764109e-07 - art_sys_110: 4.73610596e-14 - art_sys_111: 1.13706326e-14 - art_sys_112: 8.12631597e-15 - art_sys_113: -5.50227124e-15 - art_sys_114: 1.45453867e-07 - art_sys_115: -2.45741894e-15 - art_sys_116: -1.48799297e-16 - art_sys_117: 7.19037452e-08 - art_sys_118: 2.57482913e-15 - art_sys_119: -2.14642560e-14 - art_sys_120: -1.98553432e-16 - art_sys_121: 3.27338785e-08 - art_sys_122: -2.56075431e-14 - art_sys_123: 6.03152335e-17 - art_sys_124: 5.34715185e-16 - art_sys_125: 1.36195938e-08 - art_sys_126: 4.01573720e-15 - art_sys_127: -4.80341344e-15 - art_sys_128: -5.66735398e-16 - art_sys_129: -5.21128503e-09 - art_sys_130: -4.02230088e-14 - art_sys_131: 1.99010065e-09 - art_sys_132: 3.05766832e-14 - art_sys_133: -1.44078329e-13 - art_sys_134: 2.25291685e-17 - art_sys_135: -8.22412212e-16 - art_sys_136: 6.61016104e-10 - art_sys_137: -1.70820978e-13 - art_sys_138: -5.52483301e-17 - art_sys_139: 3.81000886e-15 - art_sys_140: -2.21605987e-10 - art_sys_141: 5.90297740e-14 - art_sys_142: -8.99171198e-17 - art_sys_143: -3.82105819e-14 - art_sys_144: 7.21764334e-11 - art_sys_145: 4.23893015e-16 - art_sys_146: 3.87436903e-14 - art_sys_147: -2.37964136e-11 - art_sys_148: -7.03500502e-12 - art_sys_149: -5.99309066e-16 - art_sys_150: 2.68787766e-14 - art_sys_151: 2.30752431e-14 - art_sys_152: 2.47969260e-12 - art_sys_153: -3.52095266e-14 - art_sys_154: -3.18153012e-17 - art_sys_155: -5.12198454e-13 - art_sys_156: 0.0 - art_sys_157: 1.28006673e-15 + art_sys_89: -6.88435721e-04 + art_sys_90: -4.02088461e-15 + art_sys_91: -4.84705082e-14 + art_sys_92: 1.22593475e-15 + art_sys_93: 1.12142785e-13 + art_sys_94: -7.06072010e-16 + art_sys_95: 1.38674667e-16 + art_sys_96: -8.03338516e-05 + art_sys_97: -5.23574667e-18 + art_sys_98: -2.58033319e-16 + art_sys_99: -6.35023510e-16 + art_sys_100: -1.79377719e-16 + art_sys_101: 2.62464986e-18 + art_sys_102: -1.14243818e-06 + art_sys_103: -6.04596636e-14 + art_sys_104: -2.82551880e-17 + art_sys_105: 7.21294409e-07 + art_sys_106: 7.20247259e-18 + art_sys_107: -5.37668729e-17 + art_sys_108: -1.32735466e-15 + art_sys_109: -1.31390909e-15 + art_sys_110: -3.27764388e-07 + art_sys_111: -5.80048736e-17 + art_sys_112: 2.96516217e-15 + art_sys_113: 1.45453385e-07 + art_sys_114: -1.52087024e-16 + art_sys_115: -7.07019839e-16 + art_sys_116: 4.93424989e-15 + art_sys_117: -7.19040686e-08 + art_sys_118: 3.42071482e-16 + art_sys_119: 8.11464381e-14 + art_sys_120: -1.00347929e-15 + art_sys_121: 4.37695130e-14 + art_sys_122: 7.35509777e-15 + art_sys_123: 9.96237171e-15 + art_sys_124: -8.46685523e-15 + art_sys_125: 4.67977765e-15 + art_sys_126: -3.11252514e-15 + art_sys_127: -1.55359999e-14 + art_sys_128: 1.04425431e-14 + art_sys_129: 1.09057994e-16 + art_sys_130: -1.77203360e-14 + art_sys_131: 4.85663924e-15 + art_sys_132: 2.15635131e-14 + art_sys_133: 5.21864187e-15 + art_sys_134: 4.82058865e-14 + art_sys_135: 3.03161419e-15 + art_sys_136: -4.07865806e-13 + art_sys_137: 1.49197465e-15 + art_sys_138: 3.38722229e-13 + art_sys_139: -4.22629161e-15 + art_sys_140: -2.34696915e-19 + art_sys_141: 1.26248369e-13 + art_sys_142: -0.0 + art_sys_143: -1.23096505e-14 + art_sys_144: -7.29758413e-14 + art_sys_145: -1.31891872e-13 + art_sys_146: 3.27342659e-08 + art_sys_147: 1.36194563e-08 + art_sys_148: 5.21125059e-09 + art_sys_149: 1.99010440e-09 + art_sys_150: -6.61104295e-10 + art_sys_151: -2.21538809e-10 + art_sys_152: 7.23333580e-11 + art_sys_153: -2.37611634e-11 + art_sys_154: 7.36538582e-12 + art_sys_155: -2.22448685e-12 + art_sys_156: 6.67441207e-13 + art_sys_157: -3.40343046e-14 art_sys_158: -0.0 - art_sys_159: -6.15895989e-15 - art_sys_160: 9.81847926e-14 - art_sys_161: -7.14662851e-16 - art_sys_162: -7.14662851e-16 - art_sys_163: 1.62890464e-15 - art_sys_164: 1.62890464e-15 - art_sys_165: -3.10399232e-28 - art_sys_166: 1.54595508e-28 - art_sys_167: 0.0 - art_sys_168: 5.28863839e-22 - art_sys_169: 2.95662757e-22 - art_sys_170: -3.26479382e-23 - art_sys_171: -4.60955036e-23 - art_sys_172: 1.63552883e-23 - art_sys_173: -1.28010285e-24 - art_sys_174: -3.75331000e-24 - art_sys_175: -8.11048170e-25 - art_sys_176: 2.89849497e-24 - art_sys_177: -5.48186969e-25 - art_sys_178: -1.41405687e-25 - art_sys_179: 2.58142098e-26 - art_sys_180: -2.47056062e-27 - art_sys_181: -2.47080036e-25 - art_sys_182: -1.69033121e-25 - art_sys_183: 1.90965088e-27 - art_sys_184: -3.24467862e-27 - art_sys_185: -2.85492152e-27 + art_sys_159: 9.77572961e-15 + art_sys_160: 9.77572961e-15 + art_sys_161: 4.90933807e-15 + art_sys_162: -1.07109289e-27 + art_sys_163: -0.0 + art_sys_164: -3.95688449e-28 + art_sys_165: -5.65150620e-21 + art_sys_166: 1.64256391e-21 + art_sys_167: -4.56648411e-21 + art_sys_168: 1.24541185e-21 + art_sys_169: 5.74065942e-22 + art_sys_170: 6.49126012e-22 + art_sys_171: 1.80613506e-22 + art_sys_172: -2.84358846e-23 + art_sys_173: -9.91935253e-23 + art_sys_174: 4.90742996e-26 + art_sys_175: 8.79863944e-24 + art_sys_176: 8.79166682e-24 + art_sys_177: -4.21054018e-24 + art_sys_178: -2.51119144e-24 + art_sys_179: -2.37195958e-24 + art_sys_180: 9.85365054e-26 + art_sys_181: 1.68969360e-25 + art_sys_182: 7.90651649e-26 + art_sys_183: 1.90460874e-26 + art_sys_184: 9.77392689e-28 + art_sys_185: -6.54184310e-28 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -34324,153 +34324,153 @@ bins: art_sys_36: 0.0 art_sys_37: 0.0 art_sys_38: 0.0 - art_sys_39: 0.0 - art_sys_40: 0.0 - art_sys_41: 0.0 - art_sys_42: 0.0 - art_sys_43: 0.0 - art_sys_44: 7.44500417e-212 - art_sys_45: 3.75476500e-205 - art_sys_46: 6.50319282e-155 - art_sys_47: 3.60060751e-160 - art_sys_48: -1.94106352e-152 - art_sys_49: 1.65618432e-143 - art_sys_50: -7.10099893e-136 - art_sys_51: 2.94631082e-125 - art_sys_52: 3.27347841e-142 - art_sys_53: 1.04546748e-138 - art_sys_54: 1.23701297e-133 - art_sys_55: 3.05022674e-130 - art_sys_56: 4.91898512e-127 - art_sys_57: 1.76090622e-48 - art_sys_58: 8.72559476e-35 - art_sys_59: -3.34832119e-46 - art_sys_60: 4.04831646e-43 - art_sys_61: 1.59590054e-28 - art_sys_62: -4.42996692e-43 - art_sys_63: -7.48293302e-33 - art_sys_64: -1.80223711e-06 - art_sys_65: -7.41697073e-05 - art_sys_66: -1.19884608e-04 - art_sys_67: -1.10552010e-04 - art_sys_68: -5.04522270e-04 - art_sys_69: 1.83365138e-03 - art_sys_70: -2.46062640e-03 - art_sys_71: 1.35657430e-03 - art_sys_72: -6.71641193e-03 - art_sys_73: 1.05094191e-02 - art_sys_74: 9.02840986e-21 + art_sys_39: 9.02590533e-264 + art_sys_40: 6.06065274e-259 + art_sys_41: -8.27528367e-248 + art_sys_42: 1.10638707e-148 + art_sys_43: 1.37613136e-148 + art_sys_44: 7.97597673e-142 + art_sys_45: -1.41345224e-132 + art_sys_46: 3.68926389e-125 + art_sys_47: 2.97291832e-119 + art_sys_48: -3.16426750e-113 + art_sys_49: 1.04264503e-105 + art_sys_50: 9.08389791e-98 + art_sys_51: -7.23257516e-85 + art_sys_52: -3.36424690e-93 + art_sys_53: -2.76621317e-95 + art_sys_54: 2.91824330e-86 + art_sys_55: 1.30654044e-83 + art_sys_56: -7.84548279e-81 + art_sys_57: -1.80223711e-06 + art_sys_58: -7.41697073e-05 + art_sys_59: -1.19884608e-04 + art_sys_60: -3.86610728e-23 + art_sys_61: 1.10552010e-04 + art_sys_62: 5.04522270e-04 + art_sys_63: 1.83365138e-03 + art_sys_64: 2.46062640e-03 + art_sys_65: 1.35657430e-03 + art_sys_66: -9.22673792e-21 + art_sys_67: -6.71641193e-03 + art_sys_68: -1.05094191e-02 + art_sys_69: -6.00947155e-20 + art_sys_70: 2.88199824e-20 + art_sys_71: 2.90209680e-20 + art_sys_72: -1.66952584e-20 + art_sys_73: -2.02123013e-20 + art_sys_74: -3.41805220e-21 art_sys_75: -6.08926013e-03 - art_sys_76: -1.82046868e-14 - art_sys_77: 2.49737430e-14 - art_sys_78: -1.33486838e-14 + art_sys_76: 2.65759020e-14 + art_sys_77: -3.30366329e-14 + art_sys_78: -3.05542038e-14 art_sys_79: 2.96369593e-02 - art_sys_80: -1.93668212e-15 - art_sys_81: 6.14096465e-03 - art_sys_82: 1.49144958e-15 - art_sys_83: -5.36808723e-16 - art_sys_84: 6.12743963e-16 - art_sys_85: -1.79523325e-16 - art_sys_86: -2.22857370e-16 - art_sys_87: 5.92172252e-03 + art_sys_80: 1.67926474e-15 + art_sys_81: -4.81914950e-16 + art_sys_82: 8.94524328e-16 + art_sys_83: -2.99620475e-16 + art_sys_84: 6.14096465e-03 + art_sys_85: 5.50505375e-17 + art_sys_86: -1.00739281e-16 + art_sys_87: -5.92172252e-03 art_sys_88: 2.10768907e-03 - art_sys_89: -1.02191580e-17 - art_sys_90: 1.28843390e-03 - art_sys_91: -1.91998195e-16 - art_sys_92: -6.94295703e-19 - art_sys_93: -1.62187165e-18 - art_sys_94: 1.87903010e-04 - art_sys_95: 5.00177448e-15 - art_sys_96: 3.13797274e-17 - art_sys_97: -8.05065678e-18 - art_sys_98: -4.45009258e-14 - art_sys_99: -2.00167260e-15 - art_sys_100: -8.09728769e-13 - art_sys_101: -2.51749439e-14 - art_sys_102: 1.12055310e-14 - art_sys_103: -1.52794882e-13 - art_sys_104: 1.00115641e-14 - art_sys_105: 3.29289503e-06 - art_sys_106: 6.27091761e-15 - art_sys_107: -1.68630168e-15 - art_sys_108: 1.90889621e-06 - art_sys_109: 9.31095080e-07 - art_sys_110: -8.82999680e-14 - art_sys_111: -1.99587447e-14 - art_sys_112: -1.41400971e-14 - art_sys_113: 1.08312896e-14 - art_sys_114: -4.16405408e-07 - art_sys_115: 4.33867628e-15 - art_sys_116: 3.49681117e-16 - art_sys_117: -2.09651301e-07 - art_sys_118: -4.56821683e-15 - art_sys_119: 5.02054980e-14 - art_sys_120: 3.72755849e-16 - art_sys_121: -9.68617593e-08 - art_sys_122: 4.79231834e-14 - art_sys_123: -1.68725550e-16 - art_sys_124: -1.00043877e-15 - art_sys_125: -4.06557314e-08 - art_sys_126: -9.39335511e-15 - art_sys_127: 1.26676430e-14 - art_sys_128: 1.32483402e-15 - art_sys_129: 1.56837222e-08 - art_sys_130: 1.19158683e-13 - art_sys_131: -6.01578792e-09 - art_sys_132: -7.15190920e-14 - art_sys_133: 4.22142950e-13 - art_sys_134: -6.06089976e-17 - art_sys_135: 1.93779110e-15 - art_sys_136: -2.00530545e-09 - art_sys_137: 5.08774604e-13 - art_sys_138: 1.84194871e-16 - art_sys_139: -1.12611109e-14 - art_sys_140: 6.73637612e-10 - art_sys_141: -1.55863966e-13 - art_sys_142: 2.49700388e-16 - art_sys_143: 1.15000820e-13 - art_sys_144: -2.19676273e-10 - art_sys_145: -1.12159288e-15 - art_sys_146: -1.17077666e-13 - art_sys_147: 7.24813014e-11 - art_sys_148: 2.14367992e-11 - art_sys_149: 1.64283572e-15 - art_sys_150: -8.14094579e-14 - art_sys_151: -7.03463220e-14 - art_sys_152: -7.55747780e-12 - art_sys_153: 1.06868471e-13 - art_sys_154: 6.02433177e-17 - art_sys_155: 1.56145230e-12 - art_sys_156: -0.0 - art_sys_157: -3.88533384e-15 + art_sys_89: 1.28843390e-03 + art_sys_90: -3.33582839e-15 + art_sys_91: 2.19752101e-14 + art_sys_92: -5.49696229e-16 + art_sys_93: -5.08565797e-14 + art_sys_94: 3.21011814e-16 + art_sys_95: -1.03067835e-16 + art_sys_96: 1.87903011e-04 + art_sys_97: 7.83276161e-18 + art_sys_98: 1.12903754e-16 + art_sys_99: 2.87968848e-16 + art_sys_100: 2.61564434e-16 + art_sys_101: -4.47268923e-18 + art_sys_102: 3.29292199e-06 + art_sys_103: 6.87066276e-14 + art_sys_104: 4.81772619e-17 + art_sys_105: -1.90888969e-06 + art_sys_106: -6.58178613e-18 + art_sys_107: 1.93010136e-17 + art_sys_108: 2.36694413e-15 + art_sys_109: 1.49067946e-15 + art_sys_110: 9.31095887e-07 + art_sys_111: 5.01821070e-17 + art_sys_112: -6.59194346e-15 + art_sys_113: -4.16404021e-07 + art_sys_114: 1.62338444e-16 + art_sys_115: 1.22550349e-15 + art_sys_116: -5.22982074e-15 + art_sys_117: 2.09652252e-07 + art_sys_118: -3.92565757e-16 + art_sys_119: -1.89804302e-13 + art_sys_120: 1.13936403e-15 + art_sys_121: -7.52101436e-14 + art_sys_122: -8.29150106e-15 + art_sys_123: -2.92251988e-14 + art_sys_124: 9.66792016e-15 + art_sys_125: -7.18163266e-15 + art_sys_126: 7.17970830e-15 + art_sys_127: 2.93587632e-14 + art_sys_128: -3.80699848e-14 + art_sys_129: -2.21412595e-15 + art_sys_130: 5.30748475e-14 + art_sys_131: -1.54074015e-14 + art_sys_132: -3.97855588e-14 + art_sys_133: -1.47481274e-14 + art_sys_134: -1.45409367e-13 + art_sys_135: -5.91650998e-15 + art_sys_136: 1.23284933e-12 + art_sys_137: -2.84156806e-15 + art_sys_138: -1.02341172e-12 + art_sys_139: 1.23196175e-14 + art_sys_140: 2.95002580e-19 + art_sys_141: -3.81770723e-13 + art_sys_142: 0.0 + art_sys_143: 3.73941355e-14 + art_sys_144: 2.20278408e-13 + art_sys_145: 3.98841746e-13 + art_sys_146: -9.68628928e-08 + art_sys_147: -4.06553204e-08 + art_sys_148: -1.56836177e-08 + art_sys_149: -6.01579924e-09 + art_sys_150: 2.00557278e-09 + art_sys_151: 6.73433305e-10 + art_sys_152: -2.20153859e-10 + art_sys_153: 7.23739317e-11 + art_sys_154: -2.24432766e-11 + art_sys_155: 6.77984035e-12 + art_sys_156: -2.03444899e-12 + art_sys_157: 1.03635101e-13 art_sys_158: 0.0 - art_sys_159: 1.86679342e-14 - art_sys_160: -2.99184317e-13 - art_sys_161: 2.16154685e-15 - art_sys_162: 2.16154685e-15 - art_sys_163: -4.94948417e-15 - art_sys_164: -4.94948417e-15 - art_sys_165: 9.46023392e-28 - art_sys_166: -4.71188629e-28 - art_sys_167: -0.0 - art_sys_168: -1.59495035e-21 - art_sys_169: -8.86824609e-22 - art_sys_170: 9.66499856e-23 - art_sys_171: 2.33075939e-22 - art_sys_172: -4.27815843e-23 - art_sys_173: 3.77809399e-24 - art_sys_174: 1.05874131e-23 - art_sys_175: 2.81131411e-24 - art_sys_176: -8.91257803e-24 - art_sys_177: 1.59305658e-24 - art_sys_178: 4.22131752e-25 - art_sys_179: -7.87224699e-26 - art_sys_180: 7.52770752e-27 - art_sys_181: 8.26334515e-25 - art_sys_182: 5.00511063e-25 - art_sys_183: -6.02870839e-27 - art_sys_184: 9.89413431e-27 - art_sys_185: 8.70597439e-27 + art_sys_159: -2.94084237e-14 + art_sys_160: -2.94084237e-14 + art_sys_161: -1.49729754e-14 + art_sys_162: 3.26871847e-27 + art_sys_163: 0.0 + art_sys_164: 1.20874289e-27 + art_sys_165: 1.71842868e-20 + art_sys_166: -5.00002733e-21 + art_sys_167: 1.37243573e-20 + art_sys_168: -3.78957289e-21 + art_sys_169: -1.74431411e-21 + art_sys_170: -1.98830938e-21 + art_sys_171: -4.58560844e-22 + art_sys_172: -2.02164645e-23 + art_sys_173: 2.86166966e-22 + art_sys_174: -1.49574863e-25 + art_sys_175: -2.69117794e-23 + art_sys_176: -2.66848129e-23 + art_sys_177: 1.28088462e-23 + art_sys_178: 7.66997112e-24 + art_sys_179: 6.07098172e-24 + art_sys_180: -3.36817739e-25 + art_sys_181: -5.24544038e-25 + art_sys_182: -2.32350984e-25 + art_sys_183: -5.80284028e-26 + art_sys_184: -2.98409498e-27 + art_sys_185: 1.99420462e-27 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -34614,154 +34614,154 @@ bins: art_sys_35: 0.0 art_sys_36: 0.0 art_sys_37: 0.0 - art_sys_38: 0.0 - art_sys_39: 0.0 - art_sys_40: 0.0 - art_sys_41: 0.0 - art_sys_42: 0.0 - art_sys_43: 0.0 - art_sys_44: 4.72926047e-212 - art_sys_45: 2.38512384e-205 - art_sys_46: 3.09404421e-155 - art_sys_47: 1.71307220e-160 - art_sys_48: -9.23505811e-153 - art_sys_49: 7.87967952e-144 - art_sys_50: -3.37846428e-136 - art_sys_51: 1.40177543e-125 - art_sys_52: 1.55743300e-142 - art_sys_53: 4.97405309e-139 - art_sys_54: 5.88537498e-134 - art_sys_55: 1.45121584e-130 - art_sys_56: 2.34032081e-127 - art_sys_57: 8.35335280e-49 - art_sys_58: 4.13923073e-35 - art_sys_59: -1.58837012e-46 - art_sys_60: 1.92043251e-43 - art_sys_61: 7.57060204e-29 - art_sys_62: -2.10149226e-43 - art_sys_63: -3.54973927e-33 - art_sys_64: -8.54941660e-07 - art_sys_65: -1.23406385e-05 - art_sys_66: -1.94181186e-05 - art_sys_67: -1.10803930e-05 - art_sys_68: -1.51113552e-04 - art_sys_69: 8.65548323e-05 - art_sys_70: -3.97357328e-04 - art_sys_71: 3.65017462e-04 - art_sys_72: -1.15567069e-04 - art_sys_73: 4.08567374e-03 - art_sys_74: -5.26675898e-22 + art_sys_38: -4.36492601e-285 + art_sys_39: 2.72692525e-264 + art_sys_40: 1.83105704e-259 + art_sys_41: -2.50014583e-248 + art_sys_42: 5.24845502e-149 + art_sys_43: 6.52806217e-149 + art_sys_44: 3.78362658e-142 + art_sys_45: -6.70510413e-133 + art_sys_46: 1.75010502e-125 + art_sys_47: 1.41028656e-119 + art_sys_48: -1.50105837e-113 + art_sys_49: 4.94607693e-106 + art_sys_50: 4.30919983e-98 + art_sys_51: -3.43097335e-85 + art_sys_52: -1.59592416e-93 + art_sys_53: -1.31223022e-95 + art_sys_54: 1.38434994e-86 + art_sys_55: 6.19793825e-84 + art_sys_56: -3.72172314e-81 + art_sys_57: -8.54941660e-07 + art_sys_58: -1.23406385e-05 + art_sys_59: -1.94181186e-05 + art_sys_60: -4.07397601e-24 + art_sys_61: 1.10803930e-05 + art_sys_62: 1.51113552e-04 + art_sys_63: 8.65548323e-05 + art_sys_64: 3.97357328e-04 + art_sys_65: 3.65017462e-04 + art_sys_66: -6.79200036e-22 + art_sys_67: -1.15567069e-04 + art_sys_68: -4.08567374e-03 + art_sys_69: -1.50313094e-20 + art_sys_70: 1.73076788e-20 + art_sys_71: 4.12293188e-21 + art_sys_72: -1.35117345e-21 + art_sys_73: 3.55360849e-22 + art_sys_74: -1.23746472e-21 art_sys_75: 4.61979406e-03 - art_sys_76: -4.44978082e-14 - art_sys_77: 2.88617812e-14 - art_sys_78: -3.00769838e-15 + art_sys_76: -1.68031866e-14 + art_sys_77: 3.01844511e-14 + art_sys_78: -1.30655950e-14 art_sys_79: 1.12023691e-02 - art_sys_80: -2.80125061e-15 - art_sys_81: 2.09967849e-02 - art_sys_82: 5.12811851e-15 - art_sys_83: 2.98522647e-16 - art_sys_84: -5.56063097e-16 - art_sys_85: 1.51278776e-16 - art_sys_86: 1.96538553e-16 - art_sys_87: -5.14716401e-03 + art_sys_80: -7.32372752e-16 + art_sys_81: 2.50979792e-15 + art_sys_82: -2.11700562e-16 + art_sys_83: -3.07477988e-16 + art_sys_84: 2.09967849e-02 + art_sys_85: -4.11728984e-17 + art_sys_86: 1.06455823e-16 + art_sys_87: 5.14716402e-03 art_sys_88: -1.68271984e-03 - art_sys_89: 1.40883855e-17 - art_sys_90: -1.69869052e-03 - art_sys_91: -1.11386140e-15 - art_sys_92: 1.32899018e-18 - art_sys_93: 3.01758620e-18 - art_sys_94: -3.44065177e-04 - art_sys_95: -4.25872125e-15 - art_sys_96: 2.92208785e-17 - art_sys_97: 3.85652838e-17 - art_sys_98: 3.86936459e-14 - art_sys_99: 1.73915411e-15 - art_sys_100: 7.03651460e-13 - art_sys_101: 2.18836647e-14 - art_sys_102: -9.55986157e-15 - art_sys_103: 1.32826832e-13 - art_sys_104: -8.81259103e-15 - art_sys_105: -7.53171550e-06 - art_sys_106: -5.43725318e-15 - art_sys_107: 1.01630381e-15 - art_sys_108: -4.66369687e-06 - art_sys_109: -2.29967506e-06 - art_sys_110: 1.13505285e-13 - art_sys_111: 1.50029340e-14 - art_sys_112: 9.51636746e-15 - art_sys_113: -1.89450508e-14 - art_sys_114: 1.07851219e-06 - art_sys_115: -3.48780036e-15 - art_sys_116: -6.43621144e-16 - art_sys_117: 5.53643369e-07 - art_sys_118: 3.68928257e-15 - art_sys_119: -9.19303059e-14 - art_sys_120: -4.94300227e-16 - art_sys_121: 2.60302672e-07 - art_sys_122: -6.31555979e-14 - art_sys_123: 3.94897862e-16 - art_sys_124: 1.31788575e-15 - art_sys_125: 1.10680954e-07 - art_sys_126: 1.72013094e-14 - art_sys_127: -3.09853949e-14 - art_sys_128: -2.42427350e-15 - art_sys_129: -4.30208951e-08 - art_sys_130: -3.19231210e-13 - art_sys_131: 1.66050530e-08 - art_sys_132: 1.30955764e-13 - art_sys_133: -1.12181688e-12 - art_sys_134: 1.53446351e-16 - art_sys_135: -3.58270910e-15 - art_sys_136: 5.55363354e-09 - art_sys_137: -1.38116426e-12 - art_sys_138: -4.76550322e-16 - art_sys_139: 3.09870335e-14 - art_sys_140: -1.87032575e-09 - art_sys_141: 3.81636729e-13 - art_sys_142: -6.21443926e-16 - art_sys_143: -3.16507910e-13 - art_sys_144: 6.10720541e-10 - art_sys_145: 2.75330103e-15 - art_sys_146: 3.23074539e-13 - art_sys_147: -2.01663131e-10 - art_sys_148: -5.96729653e-11 - art_sys_149: -4.17993353e-15 - art_sys_150: 2.25172808e-13 - art_sys_151: 1.95901158e-13 - art_sys_152: 2.10411349e-11 - art_sys_153: -2.96220281e-13 - art_sys_154: -8.54655842e-17 - art_sys_155: -4.34857919e-12 - art_sys_156: 0.0 - art_sys_157: 1.07589198e-14 + art_sys_89: -1.69869051e-03 + art_sys_90: 4.66655195e-16 + art_sys_91: 7.51828307e-14 + art_sys_92: -1.92425038e-15 + art_sys_93: -1.73892486e-13 + art_sys_94: 1.09189994e-15 + art_sys_95: -6.53978455e-17 + art_sys_96: -3.44065178e-04 + art_sys_97: -6.44118523e-18 + art_sys_98: 4.14714511e-16 + art_sys_99: 9.84804598e-16 + art_sys_100: -2.14866863e-16 + art_sys_101: 5.14470785e-18 + art_sys_102: -7.53178145e-06 + art_sys_103: -5.97150316e-14 + art_sys_104: -3.42990474e-17 + art_sys_105: 4.66368099e-06 + art_sys_106: 5.19517263e-18 + art_sys_107: 9.97063901e-17 + art_sys_108: -1.95223734e-15 + art_sys_109: -1.29567069e-15 + art_sys_110: -2.29967723e-06 + art_sys_111: -4.75668705e-17 + art_sys_112: 1.76187173e-14 + art_sys_113: 1.07850863e-06 + art_sys_114: -1.42832022e-16 + art_sys_115: -6.72193943e-16 + art_sys_116: 4.63536290e-15 + art_sys_117: -5.53645907e-07 + art_sys_118: 3.40583919e-16 + art_sys_119: 3.47548154e-13 + art_sys_120: -9.89470817e-16 + art_sys_121: 4.16588886e-14 + art_sys_122: 7.28043174e-15 + art_sys_123: 6.78035340e-14 + art_sys_124: -7.70283649e-15 + art_sys_125: 9.99652583e-15 + art_sys_126: -1.29089444e-14 + art_sys_127: -3.86487179e-14 + art_sys_128: 1.03669109e-13 + art_sys_129: 1.38127049e-14 + art_sys_130: -1.45282167e-13 + art_sys_131: 4.55761083e-14 + art_sys_132: 4.85017404e-14 + art_sys_133: 3.32376301e-14 + art_sys_134: 4.00059811e-13 + art_sys_135: 8.23940662e-15 + art_sys_136: -3.40278448e-12 + art_sys_137: 3.19899928e-15 + art_sys_138: 2.82291276e-12 + art_sys_139: -3.23038040e-14 + art_sys_140: -1.19338864e-19 + art_sys_141: 1.05437556e-12 + art_sys_142: -0.0 + art_sys_143: -1.03491543e-13 + art_sys_144: -6.06756887e-13 + art_sys_145: -1.10149470e-12 + art_sys_146: 2.60305679e-07 + art_sys_147: 1.10679834e-07 + art_sys_148: 4.30206050e-08 + art_sys_149: 1.66050842e-08 + art_sys_150: -5.55437310e-09 + art_sys_151: -1.86975822e-09 + art_sys_152: 6.12048187e-10 + art_sys_153: -2.01364394e-10 + art_sys_154: 6.24737764e-11 + art_sys_155: -1.88765411e-11 + art_sys_156: 5.66504604e-12 + art_sys_157: -2.88299250e-13 art_sys_158: -0.0 - art_sys_159: -5.16737988e-14 - art_sys_160: 8.32777615e-13 - art_sys_161: -5.97131329e-15 - art_sys_162: -5.97131329e-15 - art_sys_163: 1.37343199e-14 - art_sys_164: 1.37343199e-14 - art_sys_165: -2.63390351e-27 - art_sys_166: 1.31193227e-27 - art_sys_167: 0.0 - art_sys_168: 4.62316860e-21 - art_sys_169: 2.42318882e-21 - art_sys_170: -2.81488165e-22 - art_sys_171: -1.00611833e-21 - art_sys_172: 8.02324975e-23 - art_sys_173: -1.79620282e-23 - art_sys_174: -2.57652581e-23 - art_sys_175: -8.84948569e-24 - art_sys_176: 2.49733641e-23 - art_sys_177: -3.73384073e-24 - art_sys_178: -1.19321348e-24 - art_sys_179: 2.19325871e-25 - art_sys_180: -2.09518700e-26 - art_sys_181: -2.54985511e-24 - art_sys_182: -1.36075598e-24 - art_sys_183: 1.84328777e-26 - art_sys_184: -2.75575267e-26 - art_sys_185: -2.42527008e-26 + art_sys_159: 8.06996999e-14 + art_sys_160: 8.06996999e-14 + art_sys_161: 4.17182367e-14 + art_sys_162: -9.11321129e-27 + art_sys_163: -0.0 + art_sys_164: -3.37347787e-27 + art_sys_165: -4.77017223e-20 + art_sys_166: 1.39115667e-20 + art_sys_167: -3.78391502e-20 + art_sys_168: 1.05514251e-20 + art_sys_169: 4.84729637e-21 + art_sys_170: 5.55155594e-21 + art_sys_171: 1.06406471e-21 + art_sys_172: 3.15682324e-22 + art_sys_173: -7.84973651e-22 + art_sys_174: 4.16474902e-25 + art_sys_175: 7.50779203e-23 + art_sys_176: 7.39554470e-23 + art_sys_177: -3.55394983e-23 + art_sys_178: -2.13913076e-23 + art_sys_179: -1.44612987e-23 + art_sys_180: 1.11528637e-24 + art_sys_181: 1.47511937e-24 + art_sys_182: 6.40002111e-25 + art_sys_183: 1.61532687e-25 + art_sys_184: 8.32230781e-27 + art_sys_185: -5.55328621e-27 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -34905,154 +34905,154 @@ bins: art_sys_35: 0.0 art_sys_36: 0.0 art_sys_37: 0.0 - art_sys_38: 0.0 - art_sys_39: 0.0 - art_sys_40: 0.0 - art_sys_41: 0.0 - art_sys_42: 0.0 - art_sys_43: 0.0 - art_sys_44: 4.47792614e-213 - art_sys_45: 2.25836759e-206 - art_sys_46: 2.97781309e-156 - art_sys_47: 1.64871879e-161 - art_sys_48: -8.88813314e-154 - art_sys_49: 7.58367082e-145 - art_sys_50: -3.25154861e-137 - art_sys_51: 1.34911622e-126 - art_sys_52: 1.49892633e-143 - art_sys_53: 4.78719739e-140 - art_sys_54: 5.66428449e-135 - art_sys_55: 1.39669934e-131 - art_sys_56: 2.25240412e-128 - art_sys_57: 8.04091361e-50 - art_sys_58: 3.98441171e-36 - art_sys_59: -1.52896055e-47 - art_sys_60: 1.84860287e-44 - art_sys_61: 7.28743996e-30 - art_sys_62: -2.02290073e-44 - art_sys_63: -3.41696891e-34 - art_sys_64: -8.22964411e-08 - art_sys_65: -1.31486126e-06 - art_sys_66: -1.64162720e-06 - art_sys_67: 1.98844325e-06 - art_sys_68: -1.19840938e-05 - art_sys_69: -7.97949859e-05 - art_sys_70: 4.71002667e-05 - art_sys_71: -1.20878237e-05 - art_sys_72: 5.43849868e-04 - art_sys_73: -2.61461457e-04 - art_sys_74: -8.33617174e-22 + art_sys_38: -5.45615751e-286 + art_sys_39: 2.62778127e-265 + art_sys_40: 1.76448454e-260 + art_sys_41: -2.40924695e-249 + art_sys_42: 5.05214799e-150 + art_sys_43: 6.28389422e-150 + art_sys_44: 3.64210826e-143 + art_sys_45: -6.45431431e-134 + art_sys_46: 1.68464615e-126 + art_sys_47: 1.35753786e-120 + art_sys_48: -1.44491455e-114 + art_sys_49: 4.76107969e-107 + art_sys_50: 4.14802360e-99 + art_sys_51: -3.30264526e-86 + art_sys_52: -1.53623210e-94 + art_sys_53: -1.26314910e-96 + art_sys_54: 1.33257135e-87 + art_sys_55: 5.96611787e-85 + art_sys_56: -3.58252020e-82 + art_sys_57: -8.22964411e-08 + art_sys_58: -1.31486126e-06 + art_sys_59: -1.64162720e-06 + art_sys_60: 7.73658834e-25 + art_sys_61: -1.98844325e-06 + art_sys_62: 1.19840938e-05 + art_sys_63: -7.97949859e-05 + art_sys_64: -4.71002667e-05 + art_sys_65: -1.20878237e-05 + art_sys_66: 6.34712413e-22 + art_sys_67: 5.43849868e-04 + art_sys_68: 2.61461457e-04 + art_sys_69: 2.86307403e-21 + art_sys_70: 1.90298435e-22 + art_sys_71: -1.81186498e-21 + art_sys_72: 1.21943648e-21 + art_sys_73: 1.32223704e-21 + art_sys_74: 9.60743677e-23 art_sys_75: 1.36089260e-03 - art_sys_76: 1.53714717e-14 - art_sys_77: 8.75110611e-15 - art_sys_78: 7.79413718e-15 + art_sys_76: -1.95008049e-14 + art_sys_77: 4.69729628e-14 + art_sys_78: 2.73853055e-15 art_sys_79: -1.60862686e-03 - art_sys_80: -3.03796197e-15 - art_sys_81: 3.82796475e-03 - art_sys_82: 9.36074592e-16 - art_sys_83: 1.50419083e-15 - art_sys_84: -1.05535213e-15 - art_sys_85: 9.80758411e-17 - art_sys_86: 1.38825349e-16 - art_sys_87: -6.64913177e-03 + art_sys_80: -3.95765979e-16 + art_sys_81: -1.44273792e-15 + art_sys_82: -8.75140376e-16 + art_sys_83: -5.73273966e-18 + art_sys_84: 3.82796475e-03 + art_sys_85: -7.12617860e-17 + art_sys_86: -2.23420800e-16 + art_sys_87: 6.64913177e-03 art_sys_88: 3.51227705e-03 - art_sys_89: -2.44743992e-17 - art_sys_90: 2.70987296e-03 - art_sys_91: -3.05547008e-16 - art_sys_92: -3.63889453e-18 - art_sys_93: -7.97073503e-18 - art_sys_94: 8.97300865e-04 - art_sys_95: -2.11915094e-15 - art_sys_96: -1.23121766e-17 - art_sys_97: 2.33216808e-17 - art_sys_98: 5.04970634e-14 - art_sys_99: 2.22311798e-15 - art_sys_100: 9.10685828e-13 - art_sys_101: 2.82334616e-14 - art_sys_102: -4.74538003e-15 - art_sys_103: 1.71457052e-13 - art_sys_104: -1.07956174e-14 - art_sys_105: 1.97314266e-05 - art_sys_106: -7.16212992e-15 - art_sys_107: -2.58589225e-15 - art_sys_108: 1.32943460e-05 - art_sys_109: 6.98656102e-06 - art_sys_110: -1.83300581e-13 - art_sys_111: -3.24673604e-14 - art_sys_112: -2.20271149e-14 - art_sys_113: 2.66484230e-14 - art_sys_114: -3.37853372e-06 - art_sys_115: 7.25183130e-15 - art_sys_116: 1.68704429e-15 - art_sys_117: -1.79732725e-06 - art_sys_118: -7.99583581e-15 - art_sys_119: 2.39748571e-13 - art_sys_120: 7.99505250e-16 - art_sys_121: -8.62352377e-07 - art_sys_122: 1.00784295e-13 - art_sys_123: -1.06717135e-15 - art_sys_124: -2.10069209e-15 - art_sys_125: -3.72678528e-07 - art_sys_126: -4.48610026e-14 - art_sys_127: 8.84708979e-14 - art_sys_128: 6.31818207e-15 - art_sys_129: 1.46514152e-07 - art_sys_130: 1.03740231e-12 - art_sys_131: -5.69617649e-08 - art_sys_132: -3.41523266e-13 - art_sys_133: 3.67081427e-12 - art_sys_134: -4.40885034e-16 - art_sys_135: 9.34593819e-15 - art_sys_136: -1.91536937e-08 - art_sys_137: 4.63485320e-12 - art_sys_138: 1.26160332e-15 - art_sys_139: -1.05084864e-13 - art_sys_140: 6.47002125e-09 - art_sys_141: -1.09010485e-12 - art_sys_142: 1.74203411e-15 - art_sys_143: 1.07924202e-12 - art_sys_144: -2.11696379e-09 - art_sys_145: -7.89959391e-15 - art_sys_146: -1.10782793e-12 - art_sys_147: 6.99780420e-10 - art_sys_148: 2.07212544e-10 - art_sys_149: 1.27254334e-14 - art_sys_150: -7.74764673e-13 - art_sys_151: -6.80524767e-13 - art_sys_152: -7.30849042e-11 - art_sys_153: 1.02236951e-12 - art_sys_154: 1.31703441e-16 - art_sys_155: 1.51106042e-11 - art_sys_156: -0.0 - art_sys_157: -3.70900977e-14 + art_sys_89: 2.70987296e-03 + art_sys_90: 4.77942488e-16 + art_sys_91: 1.37170933e-14 + art_sys_92: -3.60638942e-16 + art_sys_93: -3.17042410e-14 + art_sys_94: 1.97850147e-16 + art_sys_95: 5.27124152e-17 + art_sys_96: 8.97300870e-04 + art_sys_97: 6.41401245e-18 + art_sys_98: 8.02786023e-17 + art_sys_99: 1.79393979e-16 + art_sys_100: 1.58802484e-16 + art_sys_101: -1.71620090e-18 + art_sys_102: 1.97316149e-05 + art_sys_103: -7.69444562e-14 + art_sys_104: 8.18547958e-17 + art_sys_105: -1.32943007e-05 + art_sys_106: 2.06426340e-17 + art_sys_107: 1.70169381e-17 + art_sys_108: 4.08892767e-15 + art_sys_109: -1.68869157e-15 + art_sys_110: 6.98656801e-06 + art_sys_111: -1.79264084e-16 + art_sys_112: -2.13633888e-14 + art_sys_113: -3.37852247e-06 + art_sys_114: -2.63976095e-16 + art_sys_115: 1.98429041e-15 + art_sys_116: 8.80776327e-15 + art_sys_117: 1.79733559e-06 + art_sys_118: 4.09678245e-16 + art_sys_119: -9.06384982e-13 + art_sys_120: -1.28401985e-15 + art_sys_121: -1.09927140e-13 + art_sys_122: 9.79198172e-15 + art_sys_123: -1.77494569e-13 + art_sys_124: -1.06606438e-14 + art_sys_125: -7.68626264e-15 + art_sys_126: 3.32677447e-14 + art_sys_127: 6.29734795e-14 + art_sys_128: -3.82763163e-13 + art_sys_129: -7.54266444e-14 + art_sys_130: 4.91316653e-13 + art_sys_131: -1.66882087e-13 + art_sys_132: -7.94080714e-14 + art_sys_133: -8.75145205e-14 + art_sys_134: -1.36842444e-12 + art_sys_135: -1.59835462e-14 + art_sys_136: 1.16717487e-11 + art_sys_137: -4.06554267e-15 + art_sys_138: -9.67664526e-12 + art_sys_139: 1.04035729e-13 + art_sys_140: 2.80061392e-19 + art_sys_141: -3.61863608e-12 + art_sys_142: 0.0 + art_sys_143: 3.54832214e-13 + art_sys_144: 2.07633686e-12 + art_sys_145: 3.78049535e-12 + art_sys_146: -8.62362193e-07 + art_sys_147: -3.72674749e-07 + art_sys_148: -1.46513150e-07 + art_sys_149: -5.69618714e-08 + art_sys_150: 1.91562413e-08 + art_sys_151: 6.46805639e-09 + art_sys_152: -2.12156537e-09 + art_sys_153: 6.98743773e-10 + art_sys_154: -2.16934110e-10 + art_sys_155: 6.55688053e-11 + art_sys_156: -1.96810765e-11 + art_sys_157: 1.00007582e-12 art_sys_158: 0.0 - art_sys_159: 1.78018329e-13 - art_sys_160: -2.89164947e-12 - art_sys_161: 2.05163410e-14 - art_sys_162: 2.05163410e-14 - art_sys_163: -4.74732540e-14 - art_sys_164: -4.74732540e-14 - art_sys_165: 9.14864582e-27 - art_sys_166: -4.55717632e-27 - art_sys_167: -0.0 - art_sys_168: -1.64914157e-20 - art_sys_169: -8.27267279e-21 - art_sys_170: 9.48602426e-22 - art_sys_171: 3.41237833e-21 - art_sys_172: -3.24553439e-22 - art_sys_173: 4.12802418e-23 - art_sys_174: 9.26843203e-23 - art_sys_175: 3.21374331e-23 - art_sys_176: -8.69379360e-23 - art_sys_177: 1.20336222e-23 - art_sys_178: 4.10089324e-24 - art_sys_179: -7.62542695e-25 - art_sys_180: 7.27460403e-26 - art_sys_181: 9.16249342e-24 - art_sys_182: 4.64626607e-24 - art_sys_183: -6.48548875e-26 - art_sys_184: 9.57785586e-26 - art_sys_185: 8.43137390e-26 + art_sys_159: -2.74746690e-13 + art_sys_160: -2.74746690e-13 + art_sys_161: -1.45058695e-13 + art_sys_162: 3.17165733e-26 + art_sys_163: 0.0 + art_sys_164: 1.17580245e-26 + art_sys_165: 1.65182525e-19 + art_sys_166: -4.82598715e-20 + art_sys_167: 1.33346710e-19 + art_sys_168: -3.66154742e-20 + art_sys_169: -1.68206833e-20 + art_sys_170: -1.93026281e-20 + art_sys_171: -3.62969649e-21 + art_sys_172: -1.11257654e-21 + art_sys_173: 2.59772817e-21 + art_sys_174: -1.44674363e-24 + art_sys_175: -2.61934379e-22 + art_sys_176: -2.55234036e-22 + art_sys_177: 1.22896969e-22 + art_sys_178: 7.45633607e-23 + art_sys_179: 4.54886289e-23 + art_sys_180: -4.42893548e-24 + art_sys_181: -5.14307361e-24 + art_sys_182: -2.18469146e-24 + art_sys_183: -5.60853356e-25 + art_sys_184: -2.89832462e-26 + art_sys_185: 1.92949872e-26 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -35197,153 +35197,153 @@ bins: art_sys_36: 0.0 art_sys_37: 0.0 art_sys_38: 0.0 - art_sys_39: 0.0 - art_sys_40: 0.0 - art_sys_41: 0.0 - art_sys_42: 0.0 - art_sys_43: 0.0 - art_sys_44: -1.50492835e-214 - art_sys_45: -7.58985163e-208 - art_sys_46: -4.01784340e-158 - art_sys_47: -2.22454993e-163 - art_sys_48: 1.19924005e-155 - art_sys_49: -1.02323419e-146 - art_sys_50: 4.38718373e-139 - art_sys_51: -1.82030824e-128 - art_sys_52: -2.02244099e-145 - art_sys_53: -6.45917282e-142 - art_sys_54: -7.64259117e-137 - art_sys_55: -1.88451023e-133 - art_sys_56: -3.03907826e-130 - art_sys_57: -1.06689319e-51 - art_sys_58: -5.28664023e-38 - art_sys_59: 2.02867197e-49 - art_sys_60: -2.45278324e-46 - art_sys_61: -9.66919988e-32 - art_sys_62: 2.68404624e-46 - art_sys_63: 4.53373963e-36 - art_sys_64: 1.09193388e-09 - art_sys_65: -1.50647605e-07 - art_sys_66: -9.03857021e-08 - art_sys_67: 9.50919604e-07 - art_sys_68: 1.79941395e-06 - art_sys_69: -2.97311694e-05 - art_sys_70: 3.22684082e-05 - art_sys_71: -2.14998368e-05 - art_sys_72: 1.35453796e-04 - art_sys_73: -3.49825553e-04 - art_sys_74: -1.49082580e-22 + art_sys_39: 4.56140363e-267 + art_sys_40: 3.06285989e-262 + art_sys_41: -4.18206348e-251 + art_sys_42: -6.70332715e-152 + art_sys_43: -8.33764150e-152 + art_sys_44: -4.83244815e-145 + art_sys_45: 8.56375950e-136 + art_sys_46: -2.23523426e-128 + art_sys_47: -1.80121810e-122 + art_sys_48: 1.91715186e-116 + art_sys_49: -6.31712983e-109 + art_sys_50: -5.50371035e-101 + art_sys_51: 4.38203942e-88 + art_sys_52: 2.03831446e-96 + art_sys_53: 1.67598054e-98 + art_sys_54: -1.76809185e-89 + art_sys_55: -7.91600721e-87 + art_sys_56: 4.75338508e-84 + art_sys_57: 1.09193388e-09 + art_sys_58: -1.50647605e-07 + art_sys_59: -9.03857021e-08 + art_sys_60: 3.60128433e-25 + art_sys_61: -9.50919604e-07 + art_sys_62: -1.79941395e-06 + art_sys_63: -2.97311694e-05 + art_sys_64: -3.22684082e-05 + art_sys_65: -2.14998368e-05 + art_sys_66: 1.82235722e-22 + art_sys_67: 1.35453796e-04 + art_sys_68: 3.49825553e-04 + art_sys_69: 1.73930075e-21 + art_sys_70: -1.18442416e-21 + art_sys_71: -7.14034672e-22 + art_sys_72: 3.83902839e-22 + art_sys_73: 2.11981812e-22 + art_sys_74: 1.38074353e-22 art_sys_75: -1.95607850e-04 - art_sys_76: -4.03806191e-14 - art_sys_77: 2.40541315e-14 - art_sys_78: 2.48786478e-15 + art_sys_76: -1.93025112e-14 + art_sys_77: 2.96805601e-15 + art_sys_78: -5.51014030e-15 art_sys_79: -1.42949132e-03 - art_sys_80: 1.66716515e-15 - art_sys_81: -1.81873912e-03 - art_sys_82: -4.44052346e-16 - art_sys_83: -5.88837265e-16 - art_sys_84: -6.62892251e-16 - art_sys_85: -5.05732730e-17 - art_sys_86: -1.31406732e-16 - art_sys_87: -1.28084866e-03 + art_sys_80: 3.04582554e-17 + art_sys_81: -3.06748775e-15 + art_sys_82: -1.09698918e-16 + art_sys_83: -2.06888733e-16 + art_sys_84: -1.81873912e-03 + art_sys_85: 2.79889055e-16 + art_sys_86: 1.26887802e-17 + art_sys_87: 1.28084866e-03 art_sys_88: 5.87034349e-03 - art_sys_89: 1.38796872e-17 - art_sys_90: -1.05892414e-03 - art_sys_91: 6.53382734e-17 - art_sys_92: 4.92745087e-18 - art_sys_93: 1.12954542e-17 - art_sys_94: -1.15825124e-03 - art_sys_95: 2.68147349e-15 - art_sys_96: -7.95445894e-18 - art_sys_97: 2.49738873e-18 - art_sys_98: 1.01953985e-14 - art_sys_99: 4.06826761e-16 - art_sys_100: 1.75188351e-13 - art_sys_101: 5.42772482e-15 - art_sys_102: 5.86344902e-15 - art_sys_103: 3.30887599e-14 - art_sys_104: -2.62141708e-15 - art_sys_105: -6.40567707e-05 - art_sys_106: -1.34954080e-15 - art_sys_107: -6.94480414e-15 - art_sys_108: -3.50911896e-05 - art_sys_109: -2.00884440e-05 - art_sys_110: 5.24062761e-14 - art_sys_111: -6.20541159e-14 - art_sys_112: -5.17160141e-14 - art_sys_113: -4.13100422e-14 - art_sys_114: 9.85898164e-06 - art_sys_115: 1.19175973e-14 - art_sys_116: -2.19073274e-15 - art_sys_117: 5.29584882e-06 - art_sys_118: -1.21537165e-14 - art_sys_119: -3.09473283e-13 - art_sys_120: -3.40901106e-16 - art_sys_121: 2.57184367e-06 - art_sys_122: -3.92085130e-14 - art_sys_123: 3.22207781e-15 - art_sys_124: 8.13704880e-16 - art_sys_125: 1.11767816e-06 - art_sys_126: 5.79366844e-14 - art_sys_127: -2.32006905e-13 - art_sys_128: -8.15010966e-15 - art_sys_129: -4.41340036e-07 - art_sys_130: -3.13025301e-12 - art_sys_131: 1.72090285e-07 - art_sys_132: 4.40822295e-13 - art_sys_133: -1.08587133e-11 - art_sys_134: 1.21542275e-15 - art_sys_135: -1.29457166e-14 - art_sys_136: 5.79527395e-08 - art_sys_137: -1.38793485e-11 - art_sys_138: -5.08664021e-15 - art_sys_139: 3.12222346e-13 - art_sys_140: -1.96015612e-08 - art_sys_141: 2.86227955e-12 - art_sys_142: -5.14984889e-15 - art_sys_143: -3.25409744e-12 - art_sys_144: 6.41663325e-09 - art_sys_145: 2.08116348e-14 - art_sys_146: 3.34641269e-12 - art_sys_147: -2.12198112e-09 - art_sys_148: -6.28459155e-10 - art_sys_149: -3.52080010e-14 - art_sys_150: 2.34286287e-12 - art_sys_151: 2.06460364e-12 - art_sys_152: 2.21680400e-10 - art_sys_153: -3.09511010e-12 - art_sys_154: -9.11112333e-17 - art_sys_155: -4.58391254e-11 - art_sys_156: 0.0 - art_sys_157: 1.12328627e-13 + art_sys_89: -1.05892414e-03 + art_sys_90: -9.97200391e-18 + art_sys_91: -6.50928347e-15 + art_sys_92: 1.63722095e-16 + art_sys_93: 1.50620256e-14 + art_sys_94: -9.49819241e-17 + art_sys_95: 2.51558902e-17 + art_sys_96: -1.15825124e-03 + art_sys_97: 1.45477561e-17 + art_sys_98: -3.59265888e-17 + art_sys_99: -8.53871054e-17 + art_sys_100: 4.37849683e-16 + art_sys_101: -7.77143379e-18 + art_sys_102: -6.40572658e-05 + art_sys_103: -1.46459055e-14 + art_sys_104: 1.40889926e-16 + art_sys_105: 3.50910666e-05 + art_sys_106: 8.54297665e-18 + art_sys_107: -1.00687837e-17 + art_sys_108: 6.23984527e-15 + art_sys_109: -3.35193315e-16 + art_sys_110: -2.00884646e-05 + art_sys_111: -1.49669401e-16 + art_sys_112: 6.73418805e-14 + art_sys_113: 9.85894879e-06 + art_sys_114: -1.20261661e-16 + art_sys_115: 5.37832236e-15 + art_sys_116: 4.40573727e-15 + art_sys_117: -5.29587358e-06 + art_sys_118: 5.25040204e-17 + art_sys_119: 1.17000825e-12 + art_sys_120: -2.43858369e-16 + art_sys_121: -3.37045022e-13 + art_sys_122: 2.78192065e-15 + art_sys_123: 5.97434261e-13 + art_sys_124: 3.45968332e-15 + art_sys_125: 1.64501819e-14 + art_sys_126: -4.18925649e-14 + art_sys_127: -2.23480373e-14 + art_sys_128: 1.27687084e-12 + art_sys_129: 2.53465445e-13 + art_sys_130: -1.47568953e-12 + art_sys_131: 5.15077676e-13 + art_sys_132: 4.88753131e-15 + art_sys_133: 2.71859429e-13 + art_sys_134: 4.12853473e-12 + art_sys_135: 1.27141727e-14 + art_sys_136: -3.52609076e-11 + art_sys_137: -2.24330808e-14 + art_sys_138: 2.92265555e-11 + art_sys_139: -3.07216152e-13 + art_sys_140: 5.34192165e-19 + art_sys_141: 1.09347787e-11 + art_sys_142: -0.0 + art_sys_143: -1.07118765e-12 + art_sys_144: -6.26710113e-12 + art_sys_145: -1.14238341e-11 + art_sys_146: 2.57187267e-06 + art_sys_147: 1.11766682e-06 + art_sys_148: 4.41337003e-07 + art_sys_149: 1.72090606e-07 + art_sys_150: -5.79604432e-08 + art_sys_151: -1.95956074e-08 + art_sys_152: 6.43058061e-09 + art_sys_153: -2.11883762e-09 + art_sys_154: 6.57940695e-10 + art_sys_155: -1.98884777e-10 + art_sys_156: 5.97003117e-11 + art_sys_157: -3.03218543e-12 art_sys_158: -0.0 - art_sys_159: -5.38560576e-13 - art_sys_160: 8.77014256e-12 - art_sys_161: -6.19788303e-14 - art_sys_162: -6.19788303e-14 - art_sys_163: 1.43802193e-13 - art_sys_164: 1.43802193e-13 - art_sys_165: -2.77500534e-26 - art_sys_166: 1.38232391e-26 - art_sys_167: 0.0 - art_sys_168: 4.57821255e-20 - art_sys_169: 2.48745486e-20 - art_sys_170: -3.06758595e-21 - art_sys_171: -1.04724687e-20 - art_sys_172: 9.49266881e-22 - art_sys_173: -1.88817876e-22 - art_sys_174: -2.71843280e-22 - art_sys_175: -9.98060328e-23 - art_sys_176: 2.64238353e-22 - art_sys_177: -3.91414313e-23 - art_sys_178: -1.24582401e-23 - art_sys_179: 2.31360851e-24 - art_sys_180: -2.20625318e-25 - art_sys_181: -2.80139898e-23 - art_sys_182: -1.37862767e-23 - art_sys_183: 2.05311079e-25 - art_sys_184: -2.90539722e-25 - art_sys_185: -2.55802734e-25 + art_sys_159: 8.27782647e-13 + art_sys_160: 8.27782647e-13 + art_sys_161: 4.40146524e-13 + art_sys_162: -9.62646994e-26 + art_sys_163: -0.0 + art_sys_164: -3.57044573e-26 + art_sys_165: -5.00704788e-19 + art_sys_166: 1.46338535e-19 + art_sys_167: -3.94263130e-19 + art_sys_168: 1.11092860e-19 + art_sys_169: 5.10535991e-20 + art_sys_170: 5.85683214e-20 + art_sys_171: 1.08509667e-20 + art_sys_172: 4.21781667e-21 + art_sys_173: -7.87140156e-21 + art_sys_174: 4.38839715e-24 + art_sys_175: 7.95642245e-22 + art_sys_176: 7.72547177e-22 + art_sys_177: -3.72528180e-22 + art_sys_178: -2.26744322e-22 + art_sys_179: -1.28671482e-22 + art_sys_180: 1.48324555e-23 + art_sys_181: 1.56706608e-23 + art_sys_182: 6.63519581e-24 + art_sys_183: 1.70094978e-24 + art_sys_184: 8.79847184e-26 + art_sys_185: -5.85314340e-26 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -35488,153 +35488,153 @@ bins: art_sys_36: 0.0 art_sys_37: 0.0 art_sys_38: 0.0 - art_sys_39: 0.0 - art_sys_40: 0.0 - art_sys_41: 0.0 - art_sys_42: 0.0 - art_sys_43: 0.0 - art_sys_44: -1.54513130e-214 - art_sys_45: -7.79261141e-208 - art_sys_46: -8.28945055e-158 - art_sys_47: -4.58960065e-163 - art_sys_48: 2.47422313e-155 - art_sys_49: -2.11109503e-146 - art_sys_50: 9.05145844e-139 - art_sys_51: -3.75558568e-128 - art_sys_52: -4.17261773e-145 - art_sys_53: -1.33263018e-141 - art_sys_54: -1.57678823e-136 - art_sys_55: -3.88804460e-133 - art_sys_56: -6.27010225e-130 - art_sys_57: -2.23237831e-51 - art_sys_58: -1.10618205e-37 - art_sys_59: 4.24481413e-49 - art_sys_60: -5.13222896e-46 - art_sys_61: -2.02319335e-31 - art_sys_62: 5.61612976e-46 - art_sys_63: 9.48644351e-36 - art_sys_64: 2.28477486e-09 - art_sys_65: -1.94321300e-08 - art_sys_66: 1.93851388e-09 - art_sys_67: 2.28727294e-07 - art_sys_68: 9.28098509e-07 - art_sys_69: -6.89577051e-06 - art_sys_70: 8.54355185e-06 - art_sys_71: -5.57429402e-06 - art_sys_72: -5.28427859e-06 - art_sys_73: -6.23799733e-05 - art_sys_74: 1.95541673e-23 + art_sys_39: -4.53805194e-267 + art_sys_40: -3.04717986e-262 + art_sys_41: 4.16065378e-251 + art_sys_42: -1.40261433e-151 + art_sys_43: -1.74458074e-151 + art_sys_44: -1.01114877e-144 + art_sys_45: 1.79189401e-135 + art_sys_46: -4.67703804e-128 + art_sys_47: -3.76889604e-122 + art_sys_48: 4.01147760e-116 + art_sys_49: -1.32180582e-108 + art_sys_50: -1.15160469e-100 + art_sys_51: 9.16904568e-88 + art_sys_52: 4.26500007e-96 + art_sys_53: 3.50684707e-98 + art_sys_54: -3.69958218e-89 + art_sys_55: -1.65635734e-86 + art_sys_56: 9.94605497e-84 + art_sys_57: 2.28477486e-09 + art_sys_58: -1.94321300e-08 + art_sys_59: 1.93851388e-09 + art_sys_60: 6.56425019e-26 + art_sys_61: -2.28727294e-07 + art_sys_62: -9.28098509e-07 + art_sys_63: -6.89577051e-06 + art_sys_64: -8.54355185e-06 + art_sys_65: -5.57429402e-06 + art_sys_66: -1.85697527e-24 + art_sys_67: -5.28427859e-06 + art_sys_68: 6.23799733e-05 + art_sys_69: 2.01123170e-22 + art_sys_70: -2.83242403e-22 + art_sys_71: -4.14424383e-23 + art_sys_72: 5.32719858e-24 + art_sys_73: -1.05052173e-23 + art_sys_74: 1.85273712e-23 art_sys_75: -1.71697195e-04 - art_sys_76: 5.30733649e-14 - art_sys_77: -2.69904217e-16 - art_sys_78: -6.01188427e-15 + art_sys_76: 4.17027858e-15 + art_sys_77: -3.24358998e-15 + art_sys_78: 1.75699222e-14 art_sys_79: -7.58483236e-05 - art_sys_80: 2.43761679e-15 - art_sys_81: -8.04361074e-04 - art_sys_82: -1.96563911e-16 - art_sys_83: -1.15835622e-15 - art_sys_84: 4.21569519e-17 - art_sys_85: 1.95412711e-17 - art_sys_86: 2.89683953e-16 - art_sys_87: 9.53422964e-04 - art_sys_88: 2.44731943e-03 - art_sys_89: 2.51470161e-17 - art_sys_90: -4.02898284e-03 - art_sys_91: 5.59413120e-17 - art_sys_92: -8.09407016e-18 - art_sys_93: -1.19188951e-17 - art_sys_94: 1.07511271e-03 - art_sys_95: 2.05909777e-15 - art_sys_96: 1.13630838e-18 - art_sys_97: -3.00245299e-18 - art_sys_98: -6.97533109e-15 - art_sys_99: -3.30993054e-16 - art_sys_100: -1.31534392e-13 - art_sys_101: -4.04476216e-15 - art_sys_102: 4.45413389e-15 - art_sys_103: -2.44703442e-14 - art_sys_104: 7.52483141e-16 - art_sys_105: 4.45826890e-05 - art_sys_106: 1.06955799e-15 - art_sys_107: -4.98387911e-15 - art_sys_108: 5.63711731e-05 - art_sys_109: 3.27423425e-05 - art_sys_110: 2.51939046e-13 - art_sys_111: -3.08136854e-14 - art_sys_112: -3.07610573e-14 - art_sys_113: -7.23192633e-14 - art_sys_114: -1.87586077e-05 - art_sys_115: 4.84694737e-15 - art_sys_116: 2.05795360e-15 - art_sys_117: -1.08393644e-05 - art_sys_118: -6.98545342e-15 - art_sys_119: 2.87258814e-13 - art_sys_120: -1.10962397e-15 - art_sys_121: -5.52325892e-06 - art_sys_122: -1.49556949e-13 - art_sys_123: -3.20622700e-15 - art_sys_124: 3.13312251e-15 - art_sys_125: -2.48902733e-06 - art_sys_126: -5.37883750e-14 - art_sys_127: 3.78828927e-13 - art_sys_128: 7.55287382e-15 - art_sys_129: 1.00525653e-06 - art_sys_130: 6.37539667e-12 - art_sys_131: -3.98329674e-07 - art_sys_132: -4.09184837e-13 - art_sys_133: 2.26492873e-11 - art_sys_134: -2.00190102e-15 - art_sys_135: 1.16885364e-14 - art_sys_136: -1.35558657e-07 - art_sys_137: 3.06888843e-11 - art_sys_138: 3.69260193e-15 - art_sys_139: -7.33669521e-13 - art_sys_140: 4.61524166e-08 - art_sys_141: -4.67748962e-12 - art_sys_142: 6.94006689e-15 - art_sys_143: 7.44352871e-12 - art_sys_144: -1.51709360e-08 - art_sys_145: -3.45175413e-14 - art_sys_146: -7.73982613e-12 - art_sys_147: 5.02819756e-09 - art_sys_148: 1.49143336e-09 - art_sys_149: 6.76248108e-14 - art_sys_150: -5.45720350e-12 - art_sys_151: -4.90145537e-12 - art_sys_152: -5.26373561e-10 - art_sys_153: 7.25352279e-12 - art_sys_154: -2.38804968e-16 - art_sys_155: 1.08938866e-10 - art_sys_156: -0.0 - art_sys_157: -2.62087283e-13 + art_sys_80: 5.34337313e-17 + art_sys_81: -2.65432049e-15 + art_sys_82: -1.42787200e-16 + art_sys_83: 3.44536077e-17 + art_sys_84: -8.04361074e-04 + art_sys_85: -1.94684751e-16 + art_sys_86: -3.70591605e-16 + art_sys_87: -9.53422964e-04 + art_sys_88: 2.44731944e-03 + art_sys_89: -4.02898284e-03 + art_sys_90: -5.20621799e-17 + art_sys_91: -2.88158601e-15 + art_sys_92: 7.49461669e-17 + art_sys_93: 6.66176635e-15 + art_sys_94: -4.17246135e-17 + art_sys_95: -6.12498312e-18 + art_sys_96: 1.07511272e-03 + art_sys_97: 6.69332645e-18 + art_sys_98: -1.73977363e-17 + art_sys_99: -3.77635946e-17 + art_sys_100: 2.12561105e-16 + art_sys_101: -4.31922051e-18 + art_sys_102: 4.45834942e-05 + art_sys_103: 1.11320967e-14 + art_sys_104: 6.29251408e-17 + art_sys_105: -5.63709848e-05 + art_sys_106: -4.08175834e-18 + art_sys_107: -1.90741896e-18 + art_sys_108: 2.24616266e-15 + art_sys_109: 2.38214134e-16 + art_sys_110: 3.27423858e-05 + art_sys_111: -4.31145996e-17 + art_sys_112: 9.42300719e-14 + art_sys_113: -1.87585459e-05 + art_sys_114: -1.29253921e-19 + art_sys_115: 5.11049707e-15 + art_sys_116: 3.36618792e-16 + art_sys_117: 1.08394166e-05 + art_sys_118: -7.31772699e-17 + art_sys_119: -1.08601523e-12 + art_sys_120: 1.90085750e-16 + art_sys_121: -2.38945299e-13 + art_sys_122: -6.49984237e-16 + art_sys_123: -4.08657726e-13 + art_sys_124: 7.44158615e-15 + art_sys_125: 2.81081316e-14 + art_sys_126: 3.82593083e-14 + art_sys_127: -9.20292990e-14 + art_sys_128: -2.54265974e-12 + art_sys_129: -9.49134792e-13 + art_sys_130: 3.31421895e-12 + art_sys_131: -1.33989127e-12 + art_sys_132: 9.56083658e-14 + art_sys_133: -2.00673819e-13 + art_sys_134: -9.50238479e-12 + art_sys_135: -4.51662373e-16 + art_sys_136: 8.15998914e-11 + art_sys_137: 7.30181408e-14 + art_sys_138: -6.75503700e-11 + art_sys_139: 6.13897627e-13 + art_sys_140: 2.35155080e-19 + art_sys_141: -2.53329135e-11 + art_sys_142: 0.0 + art_sys_143: 2.46548476e-12 + art_sys_144: 1.44323943e-11 + art_sys_145: 2.64685107e-11 + art_sys_146: -5.52331910e-06 + art_sys_147: -2.48900198e-06 + art_sys_148: -1.00524942e-06 + art_sys_149: -3.98330413e-07 + art_sys_150: 1.35576628e-07 + art_sys_151: 4.61383753e-08 + art_sys_152: -1.52039048e-08 + art_sys_153: 5.02074853e-09 + art_sys_154: -1.56133169e-09 + art_sys_155: 4.72282501e-10 + art_sys_156: -1.41818847e-10 + art_sys_157: 7.18086773e-12 art_sys_158: 0.0 - art_sys_159: 1.25794532e-12 - art_sys_160: -2.08096023e-11 - art_sys_161: 1.44035132e-13 - art_sys_162: 1.44035132e-13 - art_sys_163: -3.37926901e-13 - art_sys_164: -3.37926901e-13 - art_sys_165: 6.58916515e-26 - art_sys_166: -3.28273149e-26 - art_sys_167: -0.0 - art_sys_168: -1.01898995e-19 - art_sys_169: -5.71014462e-20 - art_sys_170: 6.81015995e-21 - art_sys_171: 1.96355696e-20 - art_sys_172: -2.83239738e-21 - art_sys_173: 9.48044734e-23 - art_sys_174: 7.13046126e-22 - art_sys_175: 2.37000324e-22 - art_sys_176: -6.26754922e-22 - art_sys_177: 8.07944085e-23 - art_sys_178: 2.92369822e-23 - art_sys_179: -5.50492709e-24 - art_sys_180: 5.23447742e-25 - art_sys_181: 7.27408533e-23 - art_sys_182: 3.20214557e-23 - art_sys_183: -4.85455835e-25 - art_sys_184: 6.90628869e-25 - art_sys_185: 6.08495147e-25 + art_sys_159: -1.88611675e-12 + art_sys_160: -1.88611675e-12 + art_sys_161: -1.04734134e-12 + art_sys_162: 2.29481739e-25 + art_sys_163: 0.0 + art_sys_164: 8.53647319e-26 + art_sys_165: 1.18121372e-18 + art_sys_166: -3.46642943e-19 + art_sys_167: 9.41099043e-19 + art_sys_168: -2.63224240e-19 + art_sys_169: -1.20908098e-19 + art_sys_170: -1.39021734e-19 + art_sys_171: -2.62319442e-20 + art_sys_172: -9.43920973e-21 + art_sys_173: 1.82880122e-20 + art_sys_174: -1.04226085e-23 + art_sys_175: -1.90146994e-21 + art_sys_176: -1.81188326e-21 + art_sys_177: 8.77161514e-22 + art_sys_178: 5.38805396e-22 + art_sys_179: 2.81569996e-22 + art_sys_180: -4.06916864e-23 + art_sys_181: -3.71652333e-23 + art_sys_182: -1.53363669e-23 + art_sys_183: -4.03543853e-24 + art_sys_184: -2.10042820e-25 + art_sys_185: 1.39073487e-25 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -35778,154 +35778,154 @@ bins: art_sys_35: 0.0 art_sys_36: 0.0 art_sys_37: 0.0 - art_sys_38: 0.0 - art_sys_39: 0.0 - art_sys_40: 0.0 - art_sys_41: 0.0 - art_sys_42: 0.0 - art_sys_43: 0.0 - art_sys_44: -1.93405307e-215 - art_sys_45: -9.75407357e-209 - art_sys_46: -1.06689161e-158 - art_sys_47: -5.90703377e-164 - art_sys_48: 3.18444255e-156 - art_sys_49: -2.71707946e-147 - art_sys_50: 1.16496564e-139 - art_sys_51: -4.83361694e-129 - art_sys_52: -5.37035695e-146 - art_sys_53: -1.71515826e-142 - art_sys_54: -2.02940125e-137 - art_sys_55: -5.00409786e-134 - art_sys_56: -8.06991906e-131 - art_sys_57: -2.87426013e-52 - art_sys_58: -1.42424559e-38 - art_sys_59: 5.46533711e-50 - art_sys_60: -6.60791270e-47 - art_sys_61: -2.60492764e-32 - art_sys_62: 7.23096602e-47 - art_sys_63: 1.22141065e-36 - art_sys_64: 2.94172244e-10 - art_sys_65: -1.48965673e-09 - art_sys_66: 6.46668990e-10 - art_sys_67: 2.19833606e-08 - art_sys_68: 1.08570479e-07 - art_sys_69: -6.57746631e-07 - art_sys_70: 7.99237837e-07 - art_sys_71: -2.93598887e-07 - art_sys_72: -6.89006760e-06 - art_sys_73: 7.04723181e-06 - art_sys_74: 9.82709938e-24 + art_sys_38: 1.06565576e-288 + art_sys_39: -6.28912018e-268 + art_sys_40: -4.22297524e-263 + art_sys_41: 5.76609775e-252 + art_sys_42: -1.80591196e-152 + art_sys_43: -2.24620493e-152 + art_sys_44: -1.30188722e-145 + art_sys_45: 2.30712233e-136 + art_sys_46: -6.02183991e-129 + art_sys_47: -4.85257729e-123 + art_sys_48: 5.16490901e-117 + art_sys_49: -1.70186835e-109 + art_sys_50: -1.48272882e-101 + art_sys_51: 1.18054471e-88 + art_sys_52: 5.49132750e-97 + art_sys_53: 4.51518064e-99 + art_sys_54: -4.76333342e-90 + art_sys_55: -2.13261442e-87 + art_sys_56: 1.28058721e-84 + art_sys_57: 2.94172244e-10 + art_sys_58: -1.48965673e-09 + art_sys_59: 6.46668990e-10 + art_sys_60: 5.54512104e-27 + art_sys_61: -2.19833606e-08 + art_sys_62: -1.08570479e-07 + art_sys_63: -6.57746631e-07 + art_sys_64: -7.99237837e-07 + art_sys_65: -2.93598887e-07 + art_sys_66: -8.41420887e-24 + art_sys_67: -6.89006760e-06 + art_sys_68: -7.04723181e-06 + art_sys_69: -5.16740451e-23 + art_sys_70: 1.37190369e-23 + art_sys_71: 2.66759778e-23 + art_sys_72: -1.69615273e-23 + art_sys_73: -1.52874102e-23 + art_sys_74: -3.42259100e-24 art_sys_75: -1.11328733e-05 - art_sys_76: -1.10399022e-13 - art_sys_77: 2.79167479e-14 - art_sys_78: 1.26676950e-14 + art_sys_76: 4.93626916e-15 + art_sys_77: 6.63481307e-15 + art_sys_78: -2.36741175e-14 art_sys_79: 8.02009625e-05 - art_sys_80: 4.57325043e-15 - art_sys_81: 2.91268252e-05 - art_sys_82: 7.09330152e-18 - art_sys_83: -1.26986963e-15 - art_sys_84: 4.23006796e-16 - art_sys_85: -4.01081321e-17 - art_sys_86: -2.52537616e-17 - art_sys_87: 1.94380679e-04 + art_sys_80: 3.62859799e-18 + art_sys_81: 3.66052685e-15 + art_sys_82: 1.21347012e-15 + art_sys_83: -1.33958787e-16 + art_sys_84: 2.91268252e-05 + art_sys_85: 5.02275299e-16 + art_sys_86: 8.35780536e-17 + art_sys_87: -1.94380679e-04 art_sys_88: -1.86357750e-04 - art_sys_89: -9.13197647e-18 - art_sys_90: -4.45125466e-04 - art_sys_91: 2.04208367e-18 - art_sys_92: 6.81768636e-18 - art_sys_93: 9.59855347e-18 - art_sys_94: 4.38054940e-04 - art_sys_95: 1.21181295e-17 - art_sys_96: 6.59947661e-19 - art_sys_97: -5.16623938e-19 - art_sys_98: -1.48384204e-15 - art_sys_99: -6.46575731e-17 - art_sys_100: -2.67352725e-14 - art_sys_101: -8.23786253e-16 - art_sys_102: 1.84305597e-17 - art_sys_103: -5.00182477e-15 - art_sys_104: 2.54746906e-16 - art_sys_105: -3.99959516e-04 - art_sys_106: 2.10151172e-16 - art_sys_107: -8.21850860e-17 - art_sys_108: -1.80195916e-04 - art_sys_109: -1.41396469e-04 - art_sys_110: 2.90272464e-14 - art_sys_111: 1.31355901e-15 - art_sys_112: 4.35581716e-16 - art_sys_113: -6.03933140e-15 - art_sys_114: 7.56386079e-05 - art_sys_115: -3.94014309e-16 - art_sys_116: 8.22435413e-16 - art_sys_117: 4.49250247e-05 - art_sys_118: -2.98898063e-17 - art_sys_119: 1.17024731e-13 - art_sys_120: -1.69763072e-16 - art_sys_121: 2.32668427e-05 - art_sys_122: -1.65114509e-14 - art_sys_123: 1.89625697e-14 - art_sys_124: 3.64143210e-16 - art_sys_125: 1.06181044e-05 - art_sys_126: -2.15628591e-14 - art_sys_127: -1.17959383e-12 - art_sys_128: 3.07411546e-15 - art_sys_129: -4.33822348e-06 - art_sys_130: -2.65321461e-11 - art_sys_131: 1.73197535e-06 - art_sys_132: -1.66934203e-13 - art_sys_133: -9.45626376e-11 - art_sys_134: 6.48840611e-15 - art_sys_135: -4.80409759e-15 - art_sys_136: 5.92786249e-07 - art_sys_137: -1.30590888e-10 - art_sys_138: -3.60571577e-14 - art_sys_139: 3.11074152e-12 - art_sys_140: -2.02602615e-07 - art_sys_141: 1.45736480e-11 - art_sys_142: -2.92138442e-14 - art_sys_143: -3.20208401e-11 - art_sys_144: 6.67491981e-08 - art_sys_145: 1.09247088e-13 - art_sys_146: 3.36368403e-11 - art_sys_147: -2.21569602e-08 - art_sys_148: -6.57769803e-09 - art_sys_149: -2.50883829e-13 - art_sys_150: 2.38114731e-11 - art_sys_151: 2.16103424e-11 - art_sys_152: 2.32241598e-09 - art_sys_153: -3.17691598e-11 - art_sys_154: -2.08121533e-17 - art_sys_155: -4.80916211e-10 - art_sys_156: -0.0 - art_sys_157: 1.14708691e-12 + art_sys_89: -4.45125466e-04 + art_sys_90: -4.42338304e-18 + art_sys_91: 1.03929894e-16 + art_sys_92: -2.33510661e-18 + art_sys_93: -2.41170844e-16 + art_sys_94: 1.55258376e-18 + art_sys_95: -2.37600727e-18 + art_sys_96: 4.38054942e-04 + art_sys_97: -3.89095622e-19 + art_sys_98: 4.27281710e-19 + art_sys_99: 1.36432435e-18 + art_sys_100: -1.06548594e-17 + art_sys_101: 1.17772044e-19 + art_sys_102: -3.99962047e-04 + art_sys_103: 2.24643067e-15 + art_sys_104: -3.87790307e-18 + art_sys_105: 1.80195242e-04 + art_sys_106: -1.23426126e-18 + art_sys_107: 5.33987957e-19 + art_sys_108: -2.45256536e-16 + art_sys_109: 4.97766678e-17 + art_sys_110: -1.41396638e-04 + art_sys_111: 6.61043677e-18 + art_sys_112: 6.69037780e-15 + art_sys_113: 7.56383478e-05 + art_sys_114: 9.02961875e-18 + art_sys_115: 3.03544386e-16 + art_sys_116: -2.92517987e-16 + art_sys_117: -4.49252432e-05 + art_sys_118: -1.14669315e-17 + art_sys_119: -4.42181421e-13 + art_sys_120: 3.80494623e-17 + art_sys_121: -2.43556161e-15 + art_sys_122: -2.65693885e-16 + art_sys_123: 3.81948864e-12 + art_sys_124: 6.19232663e-16 + art_sys_125: 2.34950239e-15 + art_sys_126: 1.68242643e-14 + art_sys_127: -1.05493028e-14 + art_sys_128: 1.35221709e-11 + art_sys_129: 3.96308514e-12 + art_sys_130: -1.40378922e-11 + art_sys_131: 5.77252705e-12 + art_sys_132: 9.74745372e-15 + art_sys_133: 1.66604454e-12 + art_sys_134: 4.13682946e-11 + art_sys_135: 3.59497343e-14 + art_sys_136: -3.54733673e-10 + art_sys_137: -4.16094805e-13 + art_sys_138: 2.93681016e-10 + art_sys_139: -2.58431116e-12 + art_sys_140: -1.18327962e-20 + art_sys_141: 1.10122091e-10 + art_sys_142: -0.0 + art_sys_143: -1.06922097e-11 + art_sys_144: -6.26925735e-11 + art_sys_145: -1.15082809e-10 + art_sys_146: 2.32670934e-05 + art_sys_147: 1.06179961e-05 + art_sys_148: 4.33819234e-06 + art_sys_149: 1.73197855e-06 + art_sys_150: -5.92864704e-07 + art_sys_151: -2.02540920e-07 + art_sys_152: 6.68942388e-08 + art_sys_153: -2.21241349e-08 + art_sys_154: 6.88581883e-09 + art_sys_155: -2.08386437e-09 + art_sys_156: 6.25893372e-10 + art_sys_157: -3.16233064e-11 art_sys_158: -0.0 - art_sys_159: -5.50228120e-12 - art_sys_160: 9.17761416e-11 - art_sys_161: -6.27527464e-13 - art_sys_162: -6.27527464e-13 - art_sys_163: 1.48170382e-12 - art_sys_164: 1.48170382e-12 - art_sys_165: -2.90724675e-25 - art_sys_166: 1.44851163e-25 - art_sys_167: 0.0 - art_sys_168: 4.74015470e-19 - art_sys_169: 2.48978562e-19 - art_sys_170: -3.11279406e-20 - art_sys_171: -8.82285156e-20 - art_sys_172: 1.31818408e-20 - art_sys_173: -8.65815300e-22 - art_sys_174: -3.21678593e-21 - art_sys_175: -1.01936053e-21 - art_sys_176: 2.76522610e-21 - art_sys_177: -3.32439314e-22 - art_sys_178: -1.27559386e-22 - art_sys_179: 2.43192194e-23 - art_sys_180: -2.30870038e-24 - art_sys_181: -3.21936791e-22 - art_sys_182: -1.35859044e-22 - art_sys_183: 2.11792189e-24 - art_sys_184: -3.04917466e-24 - art_sys_185: -2.68785464e-24 + art_sys_159: 8.15058398e-12 + art_sys_160: 8.15058398e-12 + art_sys_161: 4.62652699e-12 + art_sys_162: -1.01474890e-24 + art_sys_163: -0.0 + art_sys_164: -3.78097968e-25 + art_sys_165: -5.18891823e-18 + art_sys_166: 1.52766114e-18 + art_sys_167: -4.26135516e-18 + art_sys_168: 1.15957362e-18 + art_sys_169: 5.33843931e-19 + art_sys_170: 6.12945431e-19 + art_sys_171: 1.15421642e-19 + art_sys_172: 4.45262647e-20 + art_sys_173: -8.06714571e-20 + art_sys_174: 4.59914865e-23 + art_sys_175: 8.42063001e-21 + art_sys_176: 7.94544473e-21 + art_sys_177: -3.85872616e-21 + art_sys_178: -2.37319492e-21 + art_sys_179: -1.20982886e-21 + art_sys_180: 1.84769074e-22 + art_sys_181: 1.64420757e-22 + art_sys_182: 6.62499718e-23 + art_sys_183: 1.77927407e-23 + art_sys_184: 9.30178227e-25 + art_sys_185: -6.13918735e-25 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -36069,154 +36069,154 @@ bins: art_sys_35: 0.0 art_sys_36: 0.0 art_sys_37: 0.0 - art_sys_38: 0.0 - art_sys_39: 0.0 - art_sys_40: 0.0 - art_sys_41: 0.0 - art_sys_42: 0.0 - art_sys_43: 0.0 - art_sys_44: -2.60157323e-216 - art_sys_45: -1.31206000e-209 - art_sys_46: -1.44076880e-159 - art_sys_47: -7.97707081e-165 - art_sys_48: 4.30038572e-157 - art_sys_49: -3.66924181e-148 - art_sys_50: 1.57321149e-140 - art_sys_51: -6.52749012e-130 - art_sys_52: -7.25232313e-147 - art_sys_53: -2.31621140e-143 - art_sys_54: -2.74057642e-138 - art_sys_55: -6.75771369e-135 - art_sys_56: -1.08979089e-131 - art_sys_57: -3.88170033e-53 - art_sys_58: -1.92344962e-39 - art_sys_59: 7.38096062e-51 - art_sys_60: -8.92401377e-48 - art_sys_61: -3.51796568e-33 - art_sys_62: 9.76529689e-48 - art_sys_63: 1.64952019e-37 - art_sys_64: 3.97280847e-11 - art_sys_65: -1.82872138e-10 - art_sys_66: 7.44974278e-11 - art_sys_67: 2.74757708e-09 - art_sys_68: 1.29677462e-08 - art_sys_69: -8.27378828e-08 - art_sys_70: 8.09328000e-08 - art_sys_71: 4.75944715e-08 - art_sys_72: -1.98541534e-06 - art_sys_73: 4.60540502e-06 - art_sys_74: 2.32733468e-24 + art_sys_38: 1.33206970e-289 + art_sys_39: -8.49242551e-269 + art_sys_40: -5.70243557e-264 + art_sys_41: 7.78616950e-253 + art_sys_42: -2.43889168e-153 + art_sys_43: -3.03350918e-153 + art_sys_44: -1.75820414e-146 + art_sys_45: 3.11577838e-137 + art_sys_46: -8.13252005e-130 + art_sys_47: -6.55342597e-124 + art_sys_48: 6.97523128e-118 + art_sys_49: -2.29838035e-110 + art_sys_50: -2.00243149e-102 + art_sys_51: 1.59433058e-89 + art_sys_52: 7.41606081e-98 + art_sys_53: 6.09777039e-100 + art_sys_54: -6.43290175e-91 + art_sys_55: -2.88010471e-88 + art_sys_56: 1.72943839e-85 + art_sys_57: 3.97280847e-11 + art_sys_58: -1.82872138e-10 + art_sys_59: 7.44974278e-11 + art_sys_60: 7.87367488e-28 + art_sys_61: -2.74757708e-09 + art_sys_62: -1.29677462e-08 + art_sys_63: -8.27378828e-08 + art_sys_64: -8.09328000e-08 + art_sys_65: 4.75944715e-08 + art_sys_66: -2.57490302e-24 + art_sys_67: -1.98541534e-06 + art_sys_68: -4.60540502e-06 + art_sys_69: -2.42090007e-23 + art_sys_70: 1.51219321e-23 + art_sys_71: 1.00577558e-23 + art_sys_72: -5.62812200e-24 + art_sys_73: -4.81005810e-24 + art_sys_74: -1.80872247e-24 art_sys_75: 5.58268033e-06 - art_sys_76: 4.27742433e-14 - art_sys_77: -1.92997795e-14 - art_sys_78: 3.17705730e-15 + art_sys_76: -6.80727778e-14 + art_sys_77: -1.40634920e-16 + art_sys_78: -1.22948127e-14 art_sys_79: 2.37495903e-05 - art_sys_80: 6.30562560e-15 - art_sys_81: 5.46848577e-05 - art_sys_82: 1.33575877e-17 - art_sys_83: 1.24785201e-15 - art_sys_84: 7.88040113e-16 - art_sys_85: 4.83626895e-17 - art_sys_86: -7.48610897e-17 - art_sys_87: -3.65957874e-05 + art_sys_80: -2.29719614e-18 + art_sys_81: -1.48194783e-15 + art_sys_82: -8.76960740e-16 + art_sys_83: 5.37965629e-17 + art_sys_84: 5.46848577e-05 + art_sys_85: -8.67228855e-17 + art_sys_86: -1.98996259e-16 + art_sys_87: 3.65957875e-05 art_sys_88: -2.15961586e-04 - art_sys_89: 3.50305884e-17 - art_sys_90: 2.78780939e-04 - art_sys_91: -3.29506425e-18 - art_sys_92: -3.93991976e-17 - art_sys_93: -8.92183268e-18 - art_sys_94: -5.50229459e-05 - art_sys_95: -1.51620415e-16 - art_sys_96: 1.05174807e-20 - art_sys_97: 1.16537427e-19 - art_sys_98: 2.56752239e-16 - art_sys_99: 1.32089167e-17 - art_sys_100: 5.08023328e-15 - art_sys_101: 1.55197132e-16 - art_sys_102: -3.27799154e-16 - art_sys_103: 9.35282312e-16 - art_sys_104: -6.97522760e-19 - art_sys_105: -4.57133379e-04 - art_sys_106: -4.28206452e-17 - art_sys_107: 3.94327587e-16 - art_sys_108: 1.07420356e-04 - art_sys_109: 6.30984399e-05 - art_sys_110: -1.73099118e-14 - art_sys_111: 2.61349272e-15 - art_sys_112: 2.51837826e-15 - art_sys_113: 5.20310375e-15 - art_sys_114: -7.96891840e-05 - art_sys_115: -4.30277819e-16 - art_sys_116: -1.16743550e-16 - art_sys_117: -5.76905946e-05 - art_sys_118: 5.69974953e-16 - art_sys_119: -1.47217255e-14 - art_sys_120: 1.46487670e-17 - art_sys_121: -3.47509541e-05 - art_sys_122: 1.03632817e-14 - art_sys_123: 1.22017197e-14 - art_sys_124: -1.98657570e-16 - art_sys_125: -1.74421880e-05 - art_sys_126: 2.86741618e-15 - art_sys_127: 7.75547665e-13 - art_sys_128: -3.93144143e-16 - art_sys_129: 7.57075386e-06 - art_sys_130: 3.27513435e-11 - art_sys_131: -3.15479077e-06 - art_sys_132: 2.07062778e-14 - art_sys_133: 1.29327419e-10 - art_sys_134: -4.14861373e-15 - art_sys_135: -1.08633226e-14 - art_sys_136: -1.10976527e-06 - art_sys_137: 2.10858179e-10 - art_sys_138: -3.77573643e-14 - art_sys_139: -6.13807657e-12 - art_sys_140: 3.86291326e-07 - art_sys_141: -9.55299403e-12 - art_sys_142: -8.82527391e-16 - art_sys_143: 5.59681477e-11 - art_sys_144: -1.28685548e-07 - art_sys_145: -8.13035614e-14 - art_sys_146: -6.11392037e-11 - art_sys_147: 4.29921163e-08 - art_sys_148: 1.28173351e-08 - art_sys_149: 3.46326856e-13 - art_sys_150: -4.41388514e-11 - art_sys_151: -4.20462465e-11 - art_sys_152: -4.53285497e-09 - art_sys_153: 5.98665181e-11 - art_sys_154: 2.00392725e-17 - art_sys_155: 9.41046505e-10 - art_sys_156: 0.0 - art_sys_157: -2.13143308e-12 + art_sys_89: 2.78780939e-04 + art_sys_90: 1.52252633e-18 + art_sys_91: 1.95855312e-16 + art_sys_92: -5.04719400e-18 + art_sys_93: -4.52895238e-16 + art_sys_94: 2.84299607e-18 + art_sys_95: 9.79120073e-20 + art_sys_96: -5.50229462e-05 + art_sys_97: -5.70598666e-19 + art_sys_98: 1.16958733e-18 + art_sys_99: 2.56814703e-18 + art_sys_100: -1.78678341e-17 + art_sys_101: 3.51388231e-19 + art_sys_102: -4.57131753e-04 + art_sys_103: -4.31353962e-16 + art_sys_104: -5.43604533e-18 + art_sys_105: -1.07420086e-04 + art_sys_106: 1.69257160e-19 + art_sys_107: 1.32229302e-19 + art_sys_108: -2.05909722e-16 + art_sys_109: -8.96300630e-18 + art_sys_110: 6.30986785e-05 + art_sys_111: 4.47223876e-18 + art_sys_112: -6.89989074e-15 + art_sys_113: -7.96889261e-05 + art_sys_114: 1.60771623e-18 + art_sys_115: -3.86533666e-16 + art_sys_116: -7.84945057e-17 + art_sys_117: 5.76909036e-05 + art_sys_118: 3.40560524e-18 + art_sys_119: 5.59271000e-14 + art_sys_120: -7.50224802e-18 + art_sys_121: 1.89796721e-14 + art_sys_122: -3.86700779e-18 + art_sys_123: 4.40510236e-12 + art_sys_124: -5.03454415e-16 + art_sys_125: -2.02909895e-15 + art_sys_126: -8.28314468e-16 + art_sys_127: 6.18544800e-15 + art_sys_128: -1.05794593e-11 + art_sys_129: -1.03880182e-11 + art_sys_130: 2.30400409e-11 + art_sys_131: -1.21552029e-11 + art_sys_132: -9.14802239e-15 + art_sys_133: 1.75891768e-12 + art_sys_134: -7.49230952e-11 + art_sys_135: -1.35011084e-14 + art_sys_136: 6.45682595e-10 + art_sys_137: 6.09244132e-13 + art_sys_138: -5.33620862e-10 + art_sys_139: 3.19277912e-12 + art_sys_140: -2.73594182e-20 + art_sys_141: -2.00733582e-10 + art_sys_142: 0.0 + art_sys_143: 1.92858752e-11 + art_sys_144: 1.13102480e-10 + art_sys_145: 2.09912298e-10 + art_sys_146: -3.47512914e-05 + art_sys_147: -1.74420085e-05 + art_sys_148: -7.57069516e-06 + art_sys_149: -3.15479650e-06 + art_sys_150: 1.10991099e-06 + art_sys_151: 3.86173177e-07 + art_sys_152: -1.28965015e-07 + art_sys_153: 4.29284173e-08 + art_sys_154: -1.34161725e-08 + art_sys_155: 4.06814595e-09 + art_sys_156: -1.22319324e-09 + art_sys_157: 6.12448081e-11 art_sys_158: 0.0 - art_sys_159: 1.03001613e-11 - art_sys_160: -1.78764316e-10 - art_sys_161: 1.15840465e-12 - art_sys_162: 1.15840465e-12 - art_sys_163: -2.80680630e-12 - art_sys_164: -2.80680630e-12 - art_sys_165: 5.67443749e-25 - art_sys_166: -2.82834046e-25 - art_sys_167: -0.0 - art_sys_168: -8.84477714e-19 - art_sys_169: -4.41729253e-19 - art_sys_170: 6.28471062e-20 - art_sys_171: 1.22733686e-19 - art_sys_172: -3.02348243e-20 - art_sys_173: -6.73280580e-22 - art_sys_174: 7.29531293e-21 - art_sys_175: 1.92524204e-21 - art_sys_176: -5.38346542e-21 - art_sys_177: 4.78028522e-22 - art_sys_178: 2.39861473e-22 - art_sys_179: -4.77478593e-23 - art_sys_180: 4.49774015e-24 - art_sys_181: 7.01657259e-22 - art_sys_182: 2.38663211e-22 - art_sys_183: -4.02332817e-24 - art_sys_184: 5.96819374e-24 - art_sys_185: 5.27315016e-24 + art_sys_159: -1.42905086e-11 + art_sys_160: -1.42905086e-11 + art_sys_161: -9.07866470e-12 + art_sys_162: 2.00033436e-24 + art_sys_163: 0.0 + art_sys_164: 7.50780771e-25 + art_sys_165: 9.95840200e-18 + art_sys_166: -2.96346376e-18 + art_sys_167: 8.23345376e-18 + art_sys_168: -2.25151280e-18 + art_sys_169: -1.03831007e-18 + art_sys_170: -1.19555388e-18 + art_sys_171: -2.12980900e-19 + art_sys_172: -9.40320538e-20 + art_sys_173: 1.54920689e-19 + art_sys_174: -8.98268951e-23 + art_sys_175: -1.66810018e-20 + art_sys_176: -1.50939145e-20 + art_sys_177: 7.39700243e-21 + art_sys_178: 4.65945999e-21 + art_sys_179: 2.01305898e-21 + art_sys_180: -4.48693322e-22 + art_sys_181: -3.20263283e-22 + art_sys_182: -1.20494175e-22 + art_sys_183: -3.46530487e-23 + art_sys_184: -1.84373460e-24 + art_sys_185: 1.20074605e-24 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -36361,153 +36361,153 @@ bins: art_sys_36: 0.0 art_sys_37: 0.0 art_sys_38: 0.0 - art_sys_39: 0.0 - art_sys_40: 0.0 - art_sys_41: 0.0 - art_sys_42: 0.0 - art_sys_43: 0.0 - art_sys_44: -2.45457986e-217 - art_sys_45: -1.23792635e-210 - art_sys_46: -1.35455517e-160 - art_sys_47: -7.49973382e-166 - art_sys_48: 4.04305653e-158 - art_sys_49: -3.44967940e-149 - art_sys_50: 1.47907267e-141 - art_sys_51: -6.13689406e-131 - art_sys_52: -6.81835409e-148 - art_sys_53: -2.17761248e-144 - art_sys_54: -2.57658409e-139 - art_sys_55: -6.35334136e-136 - art_sys_56: -1.02457929e-132 - art_sys_57: -3.64925499e-54 - art_sys_58: -1.80826894e-40 - art_sys_59: 6.93897136e-52 - art_sys_60: -8.38962286e-49 - art_sys_61: -3.30730163e-34 - art_sys_62: 9.18054836e-49 - art_sys_63: 1.55074304e-38 - art_sys_64: 3.73490735e-12 - art_sys_65: -1.87768726e-11 - art_sys_66: 7.09997194e-12 - art_sys_67: 2.86618160e-10 - art_sys_68: 8.70284781e-10 - art_sys_69: -9.09601305e-09 - art_sys_70: 4.74935554e-09 - art_sys_71: 1.98117235e-08 - art_sys_72: -2.97435975e-07 - art_sys_73: 9.72435787e-07 - art_sys_74: 2.91350514e-25 + art_sys_39: -7.68727753e-270 + art_sys_40: -5.16180016e-265 + art_sys_41: 7.04798022e-254 + art_sys_42: -2.29284510e-154 + art_sys_43: -2.85185550e-154 + art_sys_44: -1.65291874e-147 + art_sys_45: 2.92919822e-138 + art_sys_46: -7.64552559e-131 + art_sys_47: -6.16099138e-125 + art_sys_48: 6.55753799e-119 + art_sys_49: -2.16074791e-111 + art_sys_50: -1.88252117e-103 + art_sys_51: 1.49885831e-90 + art_sys_52: 6.97196962e-99 + art_sys_53: 5.73262153e-101 + art_sys_54: -6.04768444e-92 + art_sys_55: -2.70763725e-89 + art_sys_56: 1.62587554e-86 + art_sys_57: 3.73490735e-12 + art_sys_58: -1.87768726e-11 + art_sys_59: 7.09997194e-12 + art_sys_60: 1.05199056e-28 + art_sys_61: -2.86618160e-10 + art_sys_62: -8.70284781e-10 + art_sys_63: -9.09601305e-09 + art_sys_64: -4.74935554e-09 + art_sys_65: 1.98117235e-08 + art_sys_66: -4.04949910e-25 + art_sys_67: -2.97435975e-07 + art_sys_68: -9.72435787e-07 + art_sys_69: -4.65860394e-24 + art_sys_70: 3.48954955e-24 + art_sys_71: 1.76847143e-24 + art_sys_72: -9.26274809e-25 + art_sys_73: -2.47073487e-25 + art_sys_74: -3.67476779e-25 art_sys_75: 2.23147652e-06 - art_sys_76: 6.06537558e-15 - art_sys_77: -1.87319760e-14 - art_sys_78: 8.00328141e-16 + art_sys_76: 3.13584276e-14 + art_sys_77: -2.05802008e-15 + art_sys_78: -1.56484122e-14 art_sys_79: -2.14553170e-07 - art_sys_80: -2.28225853e-15 - art_sys_81: 1.03667596e-05 - art_sys_82: 2.53372326e-18 - art_sys_83: -4.74162780e-16 - art_sys_84: -8.32685976e-16 - art_sys_85: 6.13380551e-16 - art_sys_86: -4.48344528e-16 - art_sys_87: -2.53627059e-05 + art_sys_80: -7.74292328e-19 + art_sys_81: 4.43882944e-15 + art_sys_82: -6.29251044e-16 + art_sys_83: -1.22531640e-15 + art_sys_84: 1.03667596e-05 + art_sys_85: 7.93367351e-17 + art_sys_86: 1.36823392e-16 + art_sys_87: 2.53627059e-05 art_sys_88: -1.26647670e-05 - art_sys_89: -2.65974346e-17 - art_sys_90: 8.41642393e-05 - art_sys_91: -9.53381945e-19 - art_sys_92: 8.64236868e-19 - art_sys_93: 4.04270374e-18 - art_sys_94: -6.97502452e-05 - art_sys_95: -2.35778266e-17 - art_sys_96: -5.48400795e-20 - art_sys_97: 7.75423740e-20 - art_sys_98: 1.90282281e-16 - art_sys_99: 8.58965223e-18 - art_sys_100: 3.49452167e-15 - art_sys_101: 1.07512007e-16 - art_sys_102: -5.02541338e-17 - art_sys_103: 6.51770076e-16 - art_sys_104: -2.67534161e-17 - art_sys_105: -1.04145656e-04 - art_sys_106: -2.76068958e-17 - art_sys_107: 6.71872340e-17 - art_sys_108: 4.13736649e-04 - art_sys_109: 1.54893253e-05 - art_sys_110: -5.36189235e-15 - art_sys_111: 2.46080441e-16 - art_sys_112: 3.17468677e-16 - art_sys_113: 1.34630733e-15 - art_sys_114: 1.61535957e-05 - art_sys_115: -2.30235606e-17 - art_sys_116: -1.35081522e-16 - art_sys_117: 4.62547007e-05 - art_sys_118: 1.00311882e-16 - art_sys_119: -1.86405175e-14 - art_sys_120: 7.70926455e-18 - art_sys_121: 3.70627848e-05 - art_sys_122: 3.12720752e-15 - art_sys_123: -8.85703039e-15 - art_sys_124: -6.09226699e-17 - art_sys_125: 2.22858819e-05 - art_sys_126: 3.45070132e-15 - art_sys_127: 2.85227638e-12 - art_sys_128: -4.96500806e-16 - art_sys_129: -1.07469082e-05 - art_sys_130: -1.75070922e-11 - art_sys_131: 4.79339648e-06 - art_sys_132: 2.65001969e-14 - art_sys_133: -1.21788888e-10 - art_sys_134: -1.52223146e-14 - art_sys_135: -2.93743851e-15 - art_sys_136: 1.76488988e-06 - art_sys_137: -2.62458945e-10 - art_sys_138: -4.70875924e-15 - art_sys_139: 9.20509869e-12 - art_sys_140: -6.32473878e-07 - art_sys_141: -3.56248216e-11 - art_sys_142: 4.57610140e-14 - art_sys_143: -7.75386455e-11 - art_sys_144: 2.14550141e-07 - art_sys_145: -2.29867055e-13 - art_sys_146: 9.25475735e-11 - art_sys_147: -7.24592690e-08 - art_sys_148: -2.17524627e-08 - art_sys_149: -1.71375815e-13 - art_sys_150: 6.90654929e-11 - art_sys_151: 7.09207766e-11 - art_sys_152: 7.71524407e-09 - art_sys_153: -9.63471192e-11 - art_sys_154: 5.33728234e-18 - art_sys_155: -1.60860112e-09 - art_sys_156: -0.0 - art_sys_157: 3.37965150e-12 + art_sys_89: 8.41642392e-05 + art_sys_90: 5.88503938e-19 + art_sys_91: 3.71619009e-17 + art_sys_92: -9.87466769e-19 + art_sys_93: -8.58616536e-17 + art_sys_94: 5.35347411e-19 + art_sys_95: 2.27546302e-19 + art_sys_96: -6.97502455e-05 + art_sys_97: -4.47665518e-20 + art_sys_98: 2.31613323e-19 + art_sys_99: 4.87354432e-19 + art_sys_100: -1.53628483e-18 + art_sys_101: 3.95853805e-20 + art_sys_102: -1.04139676e-04 + art_sys_103: -2.94348280e-16 + art_sys_104: -3.93014112e-19 + art_sys_105: -4.13735522e-04 + art_sys_106: 1.74102177e-19 + art_sys_107: 3.33875577e-20 + art_sys_108: -5.42981669e-18 + art_sys_109: -6.42792481e-18 + art_sys_110: 1.54892447e-05 + art_sys_111: -1.87772006e-20 + art_sys_112: -1.65519741e-15 + art_sys_113: 1.61534307e-05 + art_sys_114: -6.78027576e-19 + art_sys_115: -9.44217701e-17 + art_sys_116: 1.85597761e-17 + art_sys_117: -4.62550014e-05 + art_sys_118: 1.67219742e-18 + art_sys_119: 7.05374665e-14 + art_sys_120: -5.00435739e-18 + art_sys_121: 2.97367023e-15 + art_sys_122: 2.69552334e-17 + art_sys_123: 1.01941964e-12 + art_sys_124: -1.35078059e-16 + art_sys_125: -5.24634841e-16 + art_sys_126: -2.24008498e-15 + art_sys_127: 1.91191714e-15 + art_sys_128: 2.25861155e-11 + art_sys_129: 1.43767925e-11 + art_sys_130: -2.76730758e-11 + art_sys_131: 1.82128201e-11 + art_sys_132: -3.10316655e-15 + art_sys_133: 4.93345104e-13 + art_sys_134: 1.14914285e-10 + art_sys_135: 5.29198961e-14 + art_sys_136: -9.79567711e-10 + art_sys_137: -9.85752624e-13 + art_sys_138: 8.09802778e-10 + art_sys_139: -2.69831020e-12 + art_sys_140: 9.06952190e-21 + art_sys_141: 3.04376032e-10 + art_sys_142: -0.0 + art_sys_143: -2.90550807e-11 + art_sys_144: -1.70489136e-10 + art_sys_145: -3.18874831e-10 + art_sys_146: 3.70630882e-05 + art_sys_147: 2.22856491e-05 + art_sys_148: 1.07468145e-05 + art_sys_149: 4.79340493e-06 + art_sys_150: -1.76511864e-06 + art_sys_151: -6.32279015e-07 + art_sys_152: 2.15015670e-07 + art_sys_153: -7.23518922e-08 + art_sys_154: 2.27645672e-08 + art_sys_155: -6.92685847e-09 + art_sys_156: 2.08647926e-09 + art_sys_157: -1.02807880e-10 art_sys_158: -0.0 - art_sys_159: -1.64449384e-11 - art_sys_160: 3.03267215e-10 - art_sys_161: -1.80376007e-12 - art_sys_162: -1.80376007e-12 - art_sys_163: 4.54103422e-12 - art_sys_164: 4.54103422e-12 - art_sys_165: -9.65848417e-25 - art_sys_166: 4.81721778e-25 - art_sys_167: 0.0 - art_sys_168: 1.28275622e-18 - art_sys_169: 6.57826746e-19 - art_sys_170: -1.18149697e-19 - art_sys_171: -1.41867346e-19 - art_sys_172: 6.11247305e-20 - art_sys_173: 6.67161076e-21 - art_sys_174: -1.46041562e-20 - art_sys_175: -2.93880114e-21 - art_sys_176: 9.14822850e-21 - art_sys_177: -4.33588681e-22 - art_sys_178: -3.89459735e-22 - art_sys_179: 8.20676720e-23 - art_sys_180: -7.63745125e-24 - art_sys_181: -1.31338894e-21 - art_sys_182: -3.41899205e-22 - art_sys_183: 6.22651767e-24 - art_sys_184: -1.02060354e-23 - art_sys_185: -9.05356046e-24 + art_sys_159: 2.05381416e-11 + art_sys_160: 2.05381416e-11 + art_sys_161: 1.55753182e-11 + art_sys_162: -3.45483088e-24 + art_sys_163: -0.0 + art_sys_164: -1.31047413e-24 + art_sys_165: -1.64884816e-17 + art_sys_166: 4.99496412e-18 + art_sys_167: -1.41130276e-17 + art_sys_168: 3.79583795e-18 + art_sys_169: 1.76285957e-18 + art_sys_170: 2.02991775e-18 + art_sys_171: 3.54268986e-19 + art_sys_172: 1.71404523e-19 + art_sys_173: -2.65015876e-19 + art_sys_174: 1.53051844e-22 + art_sys_175: 2.89718266e-20 + art_sys_176: 2.47546077e-20 + art_sys_177: -1.22783270e-20 + art_sys_178: -7.91500135e-21 + art_sys_179: -2.85530008e-21 + art_sys_180: 8.99028388e-22 + art_sys_181: 5.46151844e-22 + art_sys_182: 1.80846812e-22 + art_sys_183: 5.87556445e-23 + art_sys_184: 3.22187325e-24 + art_sys_185: -2.05153864e-24 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -36651,154 +36651,154 @@ bins: art_sys_35: 0.0 art_sys_36: 0.0 art_sys_37: 0.0 - art_sys_38: 0.0 - art_sys_39: 0.0 - art_sys_40: 0.0 - art_sys_41: 0.0 - art_sys_42: 0.0 - art_sys_43: 0.0 - art_sys_44: -1.09205306e-218 - art_sys_45: -5.50758710e-212 - art_sys_46: -5.93672432e-162 - art_sys_47: -3.28697223e-167 - art_sys_48: 1.77198483e-159 - art_sys_49: -1.51192038e-150 - art_sys_50: 6.48245781e-143 - art_sys_51: -2.68966884e-132 - art_sys_52: -2.98833814e-149 - art_sys_53: -9.54400773e-146 - art_sys_54: -1.12926146e-140 - art_sys_55: -2.78453304e-137 - art_sys_56: -4.49051096e-134 - art_sys_57: -1.59910449e-55 - art_sys_58: -7.92383921e-42 - art_sys_59: 3.04065906e-53 - art_sys_60: -3.67633492e-50 - art_sys_61: -1.44926043e-35 - art_sys_62: 4.02289241e-50 - art_sys_63: 6.79536005e-40 - art_sys_64: 1.63663737e-13 - art_sys_65: -1.08903284e-12 - art_sys_66: 1.25469566e-12 - art_sys_67: 2.43125422e-11 - art_sys_68: 1.73873544e-11 - art_sys_69: -8.96794487e-10 - art_sys_70: 3.27223802e-10 - art_sys_71: 2.00122274e-09 - art_sys_72: -1.12711098e-08 - art_sys_73: 3.87396780e-08 - art_sys_74: 1.10532651e-26 + art_sys_38: -1.04067946e-291 + art_sys_39: -2.88797200e-271 + art_sys_40: -1.93919541e-266 + art_sys_41: 2.64779961e-255 + art_sys_42: -1.00472529e-155 + art_sys_43: -1.24968379e-155 + art_sys_44: -7.24309400e-149 + art_sys_45: 1.28357539e-139 + art_sys_46: -3.35027121e-132 + art_sys_47: -2.69974795e-126 + art_sys_48: 2.87351477e-120 + art_sys_49: -9.46840271e-113 + art_sys_50: -8.24921245e-105 + art_sys_51: 6.56800083e-92 + art_sys_52: 3.05511881e-100 + art_sys_53: 2.51203617e-102 + art_sys_54: -2.65009682e-93 + art_sys_55: -1.18648732e-90 + art_sys_56: 7.12459067e-88 + art_sys_57: 1.63663737e-13 + art_sys_58: -1.08903284e-12 + art_sys_59: 1.25469566e-12 + art_sys_60: 8.18563677e-30 + art_sys_61: -2.43125422e-11 + art_sys_62: -1.73873544e-11 + art_sys_63: -8.96794487e-10 + art_sys_64: -3.27223802e-10 + art_sys_65: 2.00122274e-09 + art_sys_66: -1.78754255e-26 + art_sys_67: -1.12711098e-08 + art_sys_68: -3.87396780e-08 + art_sys_69: -1.83227061e-25 + art_sys_70: 1.39363874e-25 + art_sys_71: 6.90383610e-26 + art_sys_72: -3.53234341e-26 + art_sys_73: -4.98985741e-28 + art_sys_74: -1.47525141e-26 art_sys_75: 2.02808024e-07 - art_sys_76: -7.30670505e-14 - art_sys_77: -3.94359757e-14 - art_sys_78: 3.20707473e-14 + art_sys_76: 9.70648258e-15 + art_sys_77: 7.83462098e-15 + art_sys_78: 1.78902221e-14 art_sys_79: -1.74445234e-06 - art_sys_80: 2.84921907e-15 - art_sys_81: -1.71311996e-06 - art_sys_82: -4.18138711e-19 - art_sys_83: 6.33539897e-16 - art_sys_84: 3.69249488e-16 - art_sys_85: -1.60935460e-16 - art_sys_86: -1.55321311e-16 - art_sys_87: -2.23340808e-06 + art_sys_80: 1.03277873e-22 + art_sys_81: -1.56754065e-15 + art_sys_82: 1.00336997e-15 + art_sys_83: 1.06894443e-15 + art_sys_84: -1.71311996e-06 + art_sys_85: 5.68089129e-16 + art_sys_86: -4.89354293e-16 + art_sys_87: 2.23340808e-06 art_sys_88: 1.87565112e-05 - art_sys_89: -1.75446066e-18 - art_sys_90: -1.22526251e-05 - art_sys_91: 4.21683563e-20 - art_sys_92: 1.25956727e-17 - art_sys_93: 8.88597796e-18 - art_sys_94: -6.78926900e-06 - art_sys_95: 9.74455875e-18 - art_sys_96: -1.09462105e-20 - art_sys_97: 7.60781153e-21 - art_sys_98: 1.85451554e-17 - art_sys_99: 6.74370339e-19 - art_sys_100: 3.02761647e-16 - art_sys_101: 9.47439077e-18 - art_sys_102: 2.11330486e-17 - art_sys_103: 5.80254770e-17 - art_sys_104: -6.84755149e-18 - art_sys_105: 8.66206617e-05 - art_sys_106: -2.11207965e-18 - art_sys_107: -2.65069653e-17 - art_sys_108: 1.87158061e-04 - art_sys_109: -2.47212989e-04 - art_sys_110: 7.36813212e-16 - art_sys_111: -2.10642799e-16 - art_sys_112: -1.88747128e-16 - art_sys_113: -2.68274107e-16 - art_sys_114: 3.71716956e-05 - art_sys_115: 3.77722850e-17 - art_sys_116: -1.06768110e-17 - art_sys_117: -4.17758794e-06 - art_sys_118: -3.78324937e-17 - art_sys_119: -1.80988592e-15 - art_sys_120: 8.32424678e-18 - art_sys_121: -3.20163433e-05 - art_sys_122: -4.57808548e-16 - art_sys_123: -8.40378754e-15 - art_sys_124: 6.56763200e-18 - art_sys_125: -2.66912832e-05 - art_sys_126: 5.04334098e-16 - art_sys_127: 1.27246551e-12 - art_sys_128: -5.28033940e-17 - art_sys_129: 1.54428147e-05 - art_sys_130: -1.31834741e-11 - art_sys_131: -7.68259021e-06 - art_sys_132: 2.64282033e-15 - art_sys_133: 6.26685931e-11 - art_sys_134: -7.94125764e-15 - art_sys_135: 1.91012657e-15 - art_sys_136: -3.02966367e-06 - art_sys_137: 3.02573649e-10 - art_sys_138: 9.16955083e-15 - art_sys_139: -1.72655756e-11 - art_sys_140: 1.13723845e-06 - art_sys_141: -1.42830399e-11 - art_sys_142: 1.88135464e-14 - art_sys_143: 1.04107662e-10 - art_sys_144: -3.96726335e-07 - art_sys_145: -1.43422897e-13 - art_sys_146: -1.47496636e-10 - art_sys_147: 1.36328373e-07 - art_sys_148: 4.13949346e-08 - art_sys_149: 8.99173440e-13 - art_sys_150: -1.16162554e-10 - art_sys_151: -1.32660737e-10 - art_sys_152: -1.47517437e-08 - art_sys_153: 1.69025662e-10 - art_sys_154: -1.51502667e-18 - art_sys_155: 3.09785574e-09 - art_sys_156: 0.0 - art_sys_157: -5.74190124e-12 + art_sys_89: -1.22526251e-05 + art_sys_90: 2.58435878e-20 + art_sys_91: -6.12963960e-18 + art_sys_92: 1.52279103e-19 + art_sys_93: 1.41868687e-17 + art_sys_94: -8.98672643e-20 + art_sys_95: 3.50343670e-20 + art_sys_96: -6.78926903e-06 + art_sys_97: 4.70384674e-20 + art_sys_98: -3.69158557e-20 + art_sys_99: -8.04664893e-20 + art_sys_100: 1.44575233e-18 + art_sys_101: -2.65885475e-20 + art_sys_102: 8.66233413e-05 + art_sys_103: -2.52596924e-17 + art_sys_104: 4.55254653e-19 + art_sys_105: -1.87157731e-04 + art_sys_106: 1.96925430e-20 + art_sys_107: -1.43399518e-20 + art_sys_108: 1.90217624e-17 + art_sys_109: -5.81769808e-19 + art_sys_110: -2.47212960e-04 + art_sys_111: -4.58159913e-19 + art_sys_112: 3.78682267e-16 + art_sys_113: 3.71715521e-05 + art_sys_114: -3.15589274e-19 + art_sys_115: 2.10151390e-17 + art_sys_116: 1.23059810e-17 + art_sys_117: 4.17778132e-06 + art_sys_118: 4.29800785e-20 + art_sys_119: 6.79291643e-15 + art_sys_120: -3.98227681e-19 + art_sys_121: -1.32027506e-15 + art_sys_122: 7.02171198e-18 + art_sys_123: -8.47901801e-13 + art_sys_124: 2.30252184e-17 + art_sys_125: 1.04970797e-16 + art_sys_126: -4.32327730e-16 + art_sys_127: -2.50602710e-16 + art_sys_128: 4.52714125e-11 + art_sys_129: -6.95564284e-12 + art_sys_130: 2.81593487e-11 + art_sys_131: -2.63432418e-11 + art_sys_132: 9.65758982e-16 + art_sys_133: -3.34675530e-13 + art_sys_134: -1.87826753e-10 + art_sys_135: -7.76368146e-14 + art_sys_136: 1.56649313e-09 + art_sys_137: 1.55344439e-12 + art_sys_138: -1.29739493e-09 + art_sys_139: 1.58487632e-13 + art_sys_140: -1.45293469e-20 + art_sys_141: -4.85233119e-10 + art_sys_142: 0.0 + art_sys_143: 4.62185558e-11 + art_sys_144: 2.71288404e-10 + art_sys_145: 5.10149096e-10 + art_sys_146: -3.20164692e-05 + art_sys_147: -2.66909985e-05 + art_sys_148: -1.54426540e-05 + art_sys_149: -7.68260316e-06 + art_sys_150: 3.03004780e-06 + art_sys_151: 1.13688403e-06 + art_sys_152: -3.97586028e-07 + art_sys_153: 1.36126297e-07 + art_sys_154: -4.33079748e-08 + art_sys_155: 1.32521905e-08 + art_sys_156: -4.00420923e-09 + art_sys_157: 1.92129237e-10 art_sys_158: 0.0 - art_sys_159: 2.86594304e-11 - art_sys_160: -5.76745150e-10 - art_sys_161: 3.04277415e-12 - art_sys_162: 3.04277415e-12 - art_sys_163: -7.96116373e-12 - art_sys_164: -7.96116373e-12 - art_sys_165: 1.84689921e-24 - art_sys_166: -9.22121849e-25 - art_sys_167: -0.0 - art_sys_168: -1.79857465e-18 - art_sys_169: -9.91350894e-19 - art_sys_170: 2.83492177e-19 - art_sys_171: 1.49413234e-19 - art_sys_172: -1.26268156e-19 - art_sys_173: -2.65158604e-20 - art_sys_174: 3.20413867e-20 - art_sys_175: 5.42570496e-21 - art_sys_176: -1.75026028e-20 - art_sys_177: 5.14850600e-22 - art_sys_178: 6.98376938e-22 - art_sys_179: -1.59449356e-22 - art_sys_180: 1.45637881e-23 - art_sys_181: 2.58806595e-21 - art_sys_182: 4.55138110e-22 - art_sys_183: -1.05507016e-23 - art_sys_184: 1.96354821e-23 - art_sys_185: 1.75522048e-23 + art_sys_159: -3.00705528e-11 + art_sys_160: -3.00705528e-11 + art_sys_161: -3.00913947e-11 + art_sys_162: 6.73328439e-24 + art_sys_163: 0.0 + art_sys_164: 2.58886706e-24 + art_sys_165: 3.03122184e-17 + art_sys_166: -9.41422123e-18 + art_sys_167: 2.55483243e-17 + art_sys_168: -7.14844301e-18 + art_sys_169: -3.35154830e-18 + art_sys_170: -3.86636990e-18 + art_sys_171: -6.68223717e-19 + art_sys_172: -3.57125035e-19 + art_sys_173: 5.00157583e-19 + art_sys_174: -2.93165738e-22 + art_sys_175: -5.63871142e-20 + art_sys_176: -4.57502717e-20 + art_sys_177: 2.29064602e-20 + art_sys_178: 1.51640216e-20 + art_sys_179: 4.42353676e-21 + art_sys_180: -1.96583550e-21 + art_sys_181: -1.03145797e-21 + art_sys_182: -3.05053025e-22 + art_sys_183: -1.11795386e-22 + art_sys_184: -6.41909419e-24 + art_sys_185: 3.94817969e-24 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -36942,154 +36942,154 @@ bins: art_sys_35: 0.0 art_sys_36: 0.0 art_sys_37: 0.0 - art_sys_38: 0.0 - art_sys_39: 0.0 - art_sys_40: 0.0 - art_sys_41: 0.0 - art_sys_42: 0.0 - art_sys_43: 0.0 - art_sys_44: 4.12165827e-220 - art_sys_45: 2.07868967e-213 - art_sys_46: 2.37550788e-163 - art_sys_47: 1.31524188e-168 - art_sys_48: -7.09038131e-161 - art_sys_49: 6.04976512e-152 - art_sys_50: -2.59387648e-144 - art_sys_51: 1.07623820e-133 - art_sys_52: 1.19574707e-150 - art_sys_53: 3.81891836e-147 - art_sys_54: 4.51860208e-142 - art_sys_55: 1.11419696e-138 - art_sys_56: 1.79682323e-135 - art_sys_57: 6.40225247e-57 - art_sys_58: 3.17242678e-43 - art_sys_59: -1.21737304e-54 - art_sys_60: 1.47187532e-51 - art_sys_61: 5.80232952e-37 - art_sys_62: -1.61063890e-51 - art_sys_63: -2.72062338e-41 - art_sys_64: -6.55252105e-15 - art_sys_65: 9.86402064e-15 - art_sys_66: 3.01274945e-13 - art_sys_67: 2.46897008e-12 - art_sys_68: 5.39384338e-12 - art_sys_69: -1.02621537e-10 - art_sys_70: 1.16533470e-10 - art_sys_71: -1.32340574e-10 - art_sys_72: 2.58232574e-09 - art_sys_73: -1.98914848e-08 - art_sys_74: -1.45736287e-28 + art_sys_38: -3.98258068e-293 + art_sys_39: 1.92791269e-272 + art_sys_40: 1.29454159e-267 + art_sys_41: -1.76758158e-256 + art_sys_42: 4.02256738e-157 + art_sys_43: 5.00329522e-157 + art_sys_44: 2.89988059e-150 + art_sys_45: -5.13898529e-141 + art_sys_46: 1.34133099e-133 + art_sys_47: 1.08088431e-127 + art_sys_48: -1.15045445e-121 + art_sys_49: 3.79081609e-114 + art_sys_50: 3.30269510e-106 + art_sys_51: -2.62959698e-93 + art_sys_52: -1.22316233e-101 + art_sys_53: -1.00573111e-103 + art_sys_54: 1.06100574e-94 + art_sys_55: 4.75027873e-92 + art_sys_56: -2.85243601e-89 + art_sys_57: -6.55252105e-15 + art_sys_58: 9.86402064e-15 + art_sys_59: 3.01274945e-13 + art_sys_60: 8.85042475e-31 + art_sys_61: -2.46897008e-12 + art_sys_62: -5.39384338e-12 + art_sys_63: -1.02621537e-10 + art_sys_64: -1.16533470e-10 + art_sys_65: -1.32340574e-10 + art_sys_66: 3.31864678e-27 + art_sys_67: 2.58232574e-09 + art_sys_68: 1.98914848e-08 + art_sys_69: 8.25913758e-26 + art_sys_70: -8.03372199e-26 + art_sys_71: -2.58798079e-26 + art_sys_72: 1.16026175e-26 + art_sys_73: -1.84849006e-27 + art_sys_74: 6.93128193e-27 art_sys_75: -3.80519460e-08 - art_sys_76: 9.36555299e-15 - art_sys_77: -1.19999673e-15 - art_sys_78: 1.46329542e-14 + art_sys_76: -2.89043961e-14 + art_sys_77: -7.22889555e-18 + art_sys_78: -6.83740545e-15 art_sys_79: -4.91989196e-07 - art_sys_80: -3.48155629e-15 - art_sys_81: -1.01696352e-06 - art_sys_82: -2.48392195e-19 - art_sys_83: 4.72821826e-16 - art_sys_84: -6.76761236e-16 - art_sys_85: 2.84200684e-16 - art_sys_86: -1.10346121e-16 - art_sys_87: 9.75064194e-07 - art_sys_88: 5.32752229e-06 - art_sys_89: -1.62999024e-17 - art_sys_90: -8.71977394e-06 - art_sys_91: 6.62834511e-20 - art_sys_92: -3.78108412e-17 - art_sys_93: 2.00542565e-17 - art_sys_94: 5.38539523e-06 - art_sys_95: 3.78558683e-18 - art_sys_96: 6.49575611e-22 - art_sys_97: -2.52688223e-21 - art_sys_98: -6.87986042e-18 - art_sys_99: -3.50298559e-19 - art_sys_100: -1.35760896e-16 - art_sys_101: -4.12905514e-18 - art_sys_102: 8.13894316e-18 - art_sys_103: -2.48829451e-17 - art_sys_104: -1.87841708e-19 - art_sys_105: 4.36633753e-05 - art_sys_106: 1.11138098e-18 - art_sys_107: -1.12015654e-17 - art_sys_108: -2.91408828e-05 - art_sys_109: -1.69615613e-04 - art_sys_110: 5.44979999e-16 - art_sys_111: -6.69756588e-17 - art_sys_112: -6.64771174e-17 - art_sys_113: -1.56628113e-16 - art_sys_114: -1.49782669e-04 - art_sys_115: 1.05800862e-17 - art_sys_116: 1.13128629e-17 - art_sys_117: -3.54576663e-05 - art_sys_118: -1.77307344e-17 - art_sys_119: 1.44083180e-15 - art_sys_120: 3.69715390e-18 - art_sys_121: 1.56613423e-06 - art_sys_122: -3.25076790e-16 - art_sys_123: -5.19125071e-16 - art_sys_124: 5.12167391e-18 - art_sys_125: 2.34232514e-05 - art_sys_126: -1.24556903e-16 - art_sys_127: -2.39228145e-13 - art_sys_128: 3.60441990e-17 - art_sys_129: -1.86791854e-05 - art_sys_130: 8.08666735e-11 - art_sys_131: 1.11713302e-05 - art_sys_132: -2.01999951e-15 - art_sys_133: 1.53384515e-12 - art_sys_134: -2.39930292e-16 - art_sys_135: 1.00659335e-15 - art_sys_136: 4.90568804e-06 - art_sys_137: -2.49345244e-10 - art_sys_138: 3.86503272e-15 - art_sys_139: 2.06380827e-11 - art_sys_140: -1.97135880e-06 - art_sys_141: -1.14859821e-12 - art_sys_142: 4.87551928e-15 - art_sys_143: -1.03666080e-10 - art_sys_144: 7.18257346e-07 - art_sys_145: 4.02201818e-14 - art_sys_146: 2.12725848e-10 - art_sys_147: -2.53310412e-07 - art_sys_148: -7.82885473e-08 - art_sys_149: -1.21453206e-12 - art_sys_150: 1.82491819e-10 - art_sys_151: 2.41729017e-10 - art_sys_152: 2.81123368e-08 - art_sys_153: -2.83509436e-10 - art_sys_154: -8.09439348e-19 - art_sys_155: -5.97007025e-09 - art_sys_156: -0.0 - art_sys_157: 9.43212052e-12 + art_sys_80: 3.91058642e-20 + art_sys_81: -3.26216209e-15 + art_sys_82: 5.22547070e-16 + art_sys_83: -1.60339380e-15 + art_sys_84: -1.01696352e-06 + art_sys_85: 4.64808716e-18 + art_sys_86: -3.65941397e-16 + art_sys_87: -9.75064195e-07 + art_sys_88: 5.32752230e-06 + art_sys_89: -8.71977393e-06 + art_sys_90: -1.58809071e-20 + art_sys_91: -3.64284072e-18 + art_sys_92: 9.42927817e-20 + art_sys_93: 8.42244873e-18 + art_sys_94: -5.28597936e-20 + art_sys_95: -5.35015884e-21 + art_sys_96: 5.38539526e-06 + art_sys_97: 1.42352719e-20 + art_sys_98: -2.24542009e-20 + art_sys_99: -4.78680643e-20 + art_sys_100: 4.45770321e-19 + art_sys_101: -8.95007790e-21 + art_sys_102: 4.36629461e-05 + art_sys_103: 1.14752666e-17 + art_sys_104: 1.34176767e-19 + art_sys_105: 2.91406788e-05 + art_sys_106: -1.31058543e-20 + art_sys_107: -8.28868592e-21 + art_sys_108: 4.88204476e-18 + art_sys_109: 2.48612223e-19 + art_sys_110: -1.69614974e-04 + art_sys_111: -1.12270689e-19 + art_sys_112: 2.04172767e-16 + art_sys_113: -1.49782647e-04 + art_sys_114: -1.57513235e-20 + art_sys_115: 1.25253952e-17 + art_sys_116: 1.89537905e-18 + art_sys_117: 3.54577246e-05 + art_sys_118: -8.65747960e-20 + art_sys_119: -5.47333869e-15 + art_sys_120: 2.07766600e-19 + art_sys_121: -5.18746353e-16 + art_sys_122: 1.61162724e-19 + art_sys_123: -4.26701122e-13 + art_sys_124: 1.43987645e-17 + art_sys_125: 6.12012075e-17 + art_sys_126: 8.07806465e-17 + art_sys_127: -1.80752949e-16 + art_sys_128: 2.62339297e-12 + art_sys_129: -1.05777026e-11 + art_sys_130: -1.21143477e-11 + art_sys_131: 2.68637040e-11 + art_sys_132: 5.24724730e-17 + art_sys_133: -9.72293079e-14 + art_sys_134: 2.84433980e-10 + art_sys_135: 1.07740988e-13 + art_sys_136: -2.27010375e-09 + art_sys_137: -2.26412380e-12 + art_sys_138: 1.89033420e-09 + art_sys_139: 6.47718286e-12 + art_sys_140: 2.41238552e-20 + art_sys_141: 6.96770780e-10 + art_sys_142: -0.0 + art_sys_143: -6.70482472e-11 + art_sys_144: -3.93511544e-10 + art_sys_145: -7.37723089e-10 + art_sys_146: 1.56605541e-06 + art_sys_147: 2.34229903e-05 + art_sys_148: 1.86789295e-05 + art_sys_149: 1.11713477e-05 + art_sys_150: -4.90628832e-06 + art_sys_151: -1.97073302e-06 + art_sys_152: 7.19810784e-07 + art_sys_153: -2.52934807e-07 + art_sys_154: 8.18696253e-08 + art_sys_155: -2.52778446e-08 + art_sys_156: 7.67536557e-09 + art_sys_157: -3.52597762e-10 art_sys_158: -0.0 - art_sys_159: -4.78433898e-11 - art_sys_160: 1.09026399e-09 - art_sys_161: -4.88151460e-12 - art_sys_162: -4.88151460e-12 - art_sys_163: 1.31117565e-11 - art_sys_164: 1.31117565e-11 - art_sys_165: -3.51987786e-24 - art_sys_166: 1.76024493e-24 - art_sys_167: 0.0 - art_sys_168: 2.68088370e-18 - art_sys_169: 1.30048587e-18 - art_sys_170: -6.75568729e-19 - art_sys_171: -9.55708379e-20 - art_sys_172: 2.55890006e-19 - art_sys_173: 8.32814498e-20 - art_sys_174: -6.51880505e-20 - art_sys_175: -1.02854391e-20 - art_sys_176: 3.36151529e-20 - art_sys_177: -4.56865888e-22 - art_sys_178: -1.20666412e-21 - art_sys_179: 3.11343549e-22 - art_sys_180: -2.76968433e-23 - art_sys_181: -5.21034661e-21 - art_sys_182: -4.42985564e-22 - art_sys_183: 1.68480160e-23 - art_sys_184: -3.77601853e-23 - art_sys_185: -3.41696624e-23 + art_sys_159: 3.71842411e-11 + art_sys_160: 3.71842411e-11 + art_sys_161: 5.80427187e-11 + art_sys_162: -1.31230161e-23 + art_sys_163: -0.0 + art_sys_164: -5.12515632e-24 + art_sys_165: -5.47157091e-17 + art_sys_166: 1.75694886e-17 + art_sys_167: -4.80415753e-17 + art_sys_168: 1.33317513e-17 + art_sys_169: 6.34932810e-18 + art_sys_170: 7.31587499e-18 + art_sys_171: 1.22318749e-18 + art_sys_172: 7.10878951e-19 + art_sys_173: -9.53170496e-19 + art_sys_174: 5.60162952e-22 + art_sys_175: 1.08898108e-19 + art_sys_176: 8.39454390e-20 + art_sys_177: -4.25162044e-20 + art_sys_178: -2.86807273e-20 + art_sys_179: -7.72628725e-21 + art_sys_180: 4.03996942e-21 + art_sys_181: 1.93651131e-21 + art_sys_182: 5.00780903e-22 + art_sys_183: 2.11515392e-22 + art_sys_184: 1.30096823e-23 + art_sys_185: -7.60369724e-24 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -37234,153 +37234,153 @@ bins: art_sys_36: 0.0 art_sys_37: 0.0 art_sys_38: 0.0 - art_sys_39: 0.0 - art_sys_40: 0.0 - art_sys_41: 0.0 - art_sys_42: 0.0 - art_sys_43: 0.0 - art_sys_44: 1.45676285e-220 - art_sys_45: 7.34694026e-214 - art_sys_46: 8.03405836e-164 - art_sys_47: 4.44819825e-169 - art_sys_48: -2.39799404e-161 - art_sys_49: 2.04605367e-152 - art_sys_50: -8.77258932e-145 - art_sys_51: 3.63987870e-134 - art_sys_52: 4.04406229e-151 - art_sys_53: 1.29157277e-147 - art_sys_54: 1.52820848e-142 - art_sys_55: 3.76825666e-139 - art_sys_56: 6.07692477e-136 - art_sys_57: 2.16419459e-57 - art_sys_58: 1.07239584e-43 - art_sys_59: -4.11516441e-55 - art_sys_60: 4.97547484e-52 - art_sys_61: 1.96139878e-37 - art_sys_62: -5.44453840e-52 - art_sys_63: -9.19669825e-42 - art_sys_64: -2.21499081e-15 - art_sys_65: 1.33157173e-14 - art_sys_66: 5.65367001e-14 - art_sys_67: 3.05109246e-13 - art_sys_68: 2.46858353e-12 - art_sys_69: -1.05130764e-11 - art_sys_70: 2.63616333e-11 - art_sys_71: -7.06652002e-11 - art_sys_72: 3.31832410e-10 - art_sys_73: -4.93151385e-09 - art_sys_74: 4.37005286e-28 + art_sys_39: 4.49681605e-273 + art_sys_40: 3.01949107e-268 + art_sys_41: -4.12284719e-257 + art_sys_42: 1.35977422e-157 + art_sys_43: 1.69129594e-157 + art_sys_44: 9.80265213e-151 + art_sys_45: -1.73716412e-141 + art_sys_46: 4.53418707e-134 + art_sys_47: 3.65378248e-128 + art_sys_48: -3.88895487e-122 + art_sys_49: 1.28143385e-114 + art_sys_50: 1.11643118e-106 + art_sys_51: -8.88899513e-94 + art_sys_52: -4.13473399e-102 + art_sys_53: -3.39973729e-104 + art_sys_54: 3.58658568e-95 + art_sys_55: 1.60576715e-92 + art_sys_56: -9.64227219e-90 + art_sys_57: -2.21499081e-15 + art_sys_58: 1.33157173e-14 + art_sys_59: 5.65367001e-14 + art_sys_60: 9.08000203e-32 + art_sys_61: -3.05109246e-13 + art_sys_62: -2.46858353e-12 + art_sys_63: -1.05130764e-11 + art_sys_64: -2.63616333e-11 + art_sys_65: -7.06652002e-11 + art_sys_66: 5.19869922e-28 + art_sys_67: 3.31832410e-10 + art_sys_68: 4.93151385e-09 + art_sys_69: 1.93566767e-26 + art_sys_70: -2.06465916e-26 + art_sys_71: -5.52620547e-27 + art_sys_72: 2.21361464e-27 + art_sys_73: 2.21118174e-29 + art_sys_74: 1.69916095e-27 art_sys_75: -1.38698670e-08 - art_sys_76: -1.74477288e-14 - art_sys_77: 3.56243303e-14 - art_sys_78: 6.27737201e-15 + art_sys_76: -3.05871863e-14 + art_sys_77: -2.41847103e-14 + art_sys_78: -1.19815063e-14 art_sys_79: -6.98739637e-08 - art_sys_80: -3.56657596e-15 - art_sys_81: -1.92571106e-07 - art_sys_82: -4.70425954e-20 - art_sys_83: -9.00488026e-16 - art_sys_84: -2.93362470e-16 - art_sys_85: 2.40748417e-17 - art_sys_86: 2.97249716e-16 - art_sys_87: 3.62393193e-07 + art_sys_80: 9.07784583e-21 + art_sys_81: -2.81103430e-16 + art_sys_82: -4.47618654e-16 + art_sys_83: -4.86731216e-16 + art_sys_84: -1.92571106e-07 + art_sys_85: 5.82693095e-16 + art_sys_86: -7.83640639e-16 + art_sys_87: -3.62393194e-07 art_sys_88: 1.63998589e-07 - art_sys_89: -6.17916542e-17 - art_sys_90: -1.27930564e-06 - art_sys_91: 1.57775208e-20 - art_sys_92: 6.84461619e-17 - art_sys_93: -1.92008768e-18 - art_sys_94: 1.83953402e-06 - art_sys_95: 3.26706230e-19 - art_sys_96: 6.85199088e-22 - art_sys_97: -1.11946625e-21 - art_sys_98: -2.72045815e-18 - art_sys_99: -1.22690013e-19 - art_sys_100: -4.99547754e-17 - art_sys_101: -1.53584491e-18 - art_sys_102: 6.93055728e-19 - art_sys_103: -9.31055173e-18 - art_sys_104: 3.69499086e-19 - art_sys_105: -2.16422029e-06 - art_sys_106: 3.83722375e-19 - art_sys_107: -1.08434857e-18 - art_sys_108: -4.03494329e-05 - art_sys_109: -3.20877606e-06 - art_sys_110: 8.15219676e-17 - art_sys_111: -3.43315676e-18 - art_sys_112: -4.50033577e-18 - art_sys_113: -2.03373805e-17 - art_sys_114: -1.35626434e-04 - art_sys_115: 3.06512694e-19 - art_sys_116: 3.45357622e-18 - art_sys_117: 9.46285824e-05 - art_sys_118: -2.12543416e-18 - art_sys_119: 4.91336383e-16 - art_sys_120: -6.01182838e-19 - art_sys_121: 2.53216265e-05 - art_sys_122: -4.73740480e-17 - art_sys_123: 1.28394513e-15 - art_sys_124: 1.01909804e-18 - art_sys_125: -2.55188941e-06 - art_sys_126: -8.17103194e-17 - art_sys_127: -3.03615779e-13 - art_sys_128: 1.33298797e-17 - art_sys_129: 1.66283716e-05 - art_sys_130: 7.09950930e-11 - art_sys_131: -1.36519882e-05 - art_sys_132: -7.01733499e-16 - art_sys_133: -1.43720814e-10 - art_sys_134: 8.98882142e-16 - art_sys_135: -3.91388125e-17 - art_sys_136: -7.17601923e-06 - art_sys_137: 4.40410978e-12 - art_sys_138: -3.14986362e-16 - art_sys_139: -1.24968601e-11 - art_sys_140: 3.20900403e-06 - art_sys_141: 1.29902532e-12 - art_sys_142: -2.23677999e-15 - art_sys_143: 2.97906531e-11 - art_sys_144: -1.24686302e-06 - art_sys_145: -4.39678987e-14 - art_sys_146: -2.56663789e-10 - art_sys_147: 4.58084080e-07 - art_sys_148: 1.45431169e-07 - art_sys_149: 1.68681439e-12 - art_sys_150: -2.56434092e-10 - art_sys_151: -4.18620016e-10 - art_sys_152: -5.28650185e-08 - art_sys_153: 4.40451106e-10 - art_sys_154: -5.47752241e-20 - art_sys_155: 1.14255402e-08 - art_sys_156: 0.0 - art_sys_157: -1.42898669e-11 + art_sys_89: -1.27930564e-06 + art_sys_90: -2.85663834e-21 + art_sys_91: -6.90113093e-19 + art_sys_92: 1.81593693e-20 + art_sys_93: 1.59492352e-18 + art_sys_94: -9.96422146e-21 + art_sys_95: -3.03655251e-21 + art_sys_96: 1.83953403e-06 + art_sys_97: 6.26743613e-22 + art_sys_98: -4.16696858e-21 + art_sys_99: -9.06801954e-21 + art_sys_100: 2.06182508e-20 + art_sys_101: -5.56629455e-22 + art_sys_102: -2.16480140e-06 + art_sys_103: 4.20549321e-18 + art_sys_104: 5.56441686e-21 + art_sys_105: 4.03493227e-05 + art_sys_106: -5.26832801e-21 + art_sys_107: -3.34491473e-21 + art_sys_108: 5.46969081e-20 + art_sys_109: 9.17402508e-20 + art_sys_110: -3.20830671e-06 + art_sys_111: 6.76152552e-23 + art_sys_112: 2.49295055e-17 + art_sys_113: -1.35626803e-04 + art_sys_114: 2.61760238e-20 + art_sys_115: 1.76222457e-18 + art_sys_116: -2.78088629e-19 + art_sys_117: -9.46289042e-05 + art_sys_118: -1.44458067e-20 + art_sys_119: -1.85664004e-15 + art_sys_120: 7.13825725e-20 + art_sys_121: -4.36803886e-17 + art_sys_122: -3.73062175e-19 + art_sys_123: 2.79244611e-14 + art_sys_124: 1.99025269e-18 + art_sys_125: 7.95618689e-18 + art_sys_126: 6.55829610e-17 + art_sys_127: -3.07543969e-17 + art_sys_128: -1.98621903e-11 + art_sys_129: 5.11034325e-11 + art_sys_130: -1.88912804e-11 + art_sys_131: -2.76320660e-11 + art_sys_132: 6.85737063e-16 + art_sys_133: -1.47441627e-13 + art_sys_134: -3.53376412e-10 + art_sys_135: -1.35613692e-13 + art_sys_136: 2.76380349e-09 + art_sys_137: 2.79168621e-12 + art_sys_138: -2.31312878e-09 + art_sys_139: -2.83892078e-11 + art_sys_140: -2.86119049e-20 + art_sys_141: -8.32148962e-10 + art_sys_142: 0.0 + art_sys_143: 8.14349302e-11 + art_sys_144: 4.77954364e-10 + art_sys_145: 8.93664086e-10 + art_sys_146: 2.53220577e-05 + art_sys_147: -2.55184714e-06 + art_sys_148: -1.66280224e-05 + art_sys_149: -1.36520075e-05 + art_sys_150: 7.17684246e-06 + art_sys_151: 3.20795620e-06 + art_sys_152: -1.24955293e-06 + art_sys_153: 4.57404502e-07 + art_sys_154: -1.51984739e-07 + art_sys_155: 4.76002075e-08 + art_sys_156: -1.45689585e-08 + art_sys_157: 6.22292675e-10 art_sys_158: 0.0 - art_sys_159: 7.40548510e-11 - art_sys_160: -2.02663697e-09 - art_sys_161: 7.31740583e-12 - art_sys_162: 7.31740583e-12 - art_sys_163: -1.89427716e-11 - art_sys_164: -1.89427716e-11 - art_sys_165: 6.62135526e-24 - art_sys_166: -3.31929674e-24 - art_sys_167: -0.0 - art_sys_168: -2.50979641e-18 - art_sys_169: -1.06016689e-18 - art_sys_170: 1.65048030e-18 - art_sys_171: -2.11561233e-19 - art_sys_172: -5.18116948e-19 - art_sys_173: -2.10020102e-19 - art_sys_174: 1.25916687e-19 - art_sys_175: 2.07580988e-20 - art_sys_176: -6.42975415e-20 - art_sys_177: 2.06777071e-21 - art_sys_178: 1.96886974e-21 - art_sys_179: -6.07232811e-22 - art_sys_180: 5.21003953e-23 - art_sys_181: 9.63396155e-21 - art_sys_182: -5.50745326e-23 - art_sys_183: -2.95160972e-23 - art_sys_184: 7.17840333e-23 - art_sys_185: 6.63242578e-23 + art_sys_159: -2.88218396e-11 + art_sys_160: -2.88218396e-11 + art_sys_161: -1.10580839e-10 + art_sys_162: 2.52858409e-23 + art_sys_163: 0.0 + art_sys_164: 1.00395474e-23 + art_sys_165: 9.56080269e-17 + art_sys_166: -3.20831649e-17 + art_sys_167: 8.88964779e-17 + art_sys_168: -2.42379099e-17 + art_sys_169: -1.17888029e-17 + art_sys_170: -1.35921725e-17 + art_sys_171: -2.34798099e-18 + art_sys_172: -1.27159601e-18 + art_sys_173: 1.72006406e-18 + art_sys_174: -1.05764615e-21 + art_sys_175: -2.04422979e-19 + art_sys_176: -1.54842936e-19 + art_sys_177: 7.83305481e-20 + art_sys_178: 5.35792718e-20 + art_sys_179: 1.41488717e-20 + art_sys_180: -7.67788746e-21 + art_sys_181: -3.57108401e-21 + art_sys_182: -8.44423311e-22 + art_sys_183: -3.93852160e-22 + art_sys_184: -2.67525184e-23 + art_sys_185: 1.45476072e-23 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -37524,154 +37524,154 @@ bins: art_sys_35: 0.0 art_sys_36: 0.0 art_sys_37: 0.0 - art_sys_38: 0.0 - art_sys_39: 0.0 - art_sys_40: 0.0 - art_sys_41: 0.0 - art_sys_42: 0.0 - art_sys_43: 0.0 - art_sys_44: 1.79659907e-221 - art_sys_45: 9.06084740e-215 - art_sys_46: 9.74260548e-165 - art_sys_47: 5.39416553e-170 - art_sys_48: -2.90795870e-162 - art_sys_49: 2.48117362e-153 - art_sys_50: -1.06381947e-145 - art_sys_51: 4.41394631e-135 - art_sys_52: 4.90408479e-152 - art_sys_53: 1.56624254e-148 - art_sys_54: 1.85320191e-143 - art_sys_55: 4.56962551e-140 - art_sys_56: 7.36926195e-137 - art_sys_57: 2.62380452e-58 - art_sys_58: 1.30014050e-44 - art_sys_59: -4.98910174e-56 - art_sys_60: 6.03211629e-53 - art_sys_61: 2.37794097e-38 - art_sys_62: -6.60074652e-53 - art_sys_63: -1.11498008e-42 - art_sys_64: -2.68538831e-16 - art_sys_65: 2.20737114e-15 - art_sys_66: 8.16888279e-15 - art_sys_67: 3.62963266e-14 - art_sys_68: 4.94003260e-13 - art_sys_69: -4.34811439e-13 - art_sys_70: 2.95152120e-12 - art_sys_71: -9.75849279e-12 - art_sys_72: -4.94496708e-11 - art_sys_73: -4.51854033e-10 - art_sys_74: 1.67155942e-28 + art_sys_38: 1.01628853e-294 + art_sys_39: 4.19807074e-274 + art_sys_40: 2.81889148e-269 + art_sys_41: -3.84894656e-258 + art_sys_42: 1.64854936e-158 + art_sys_43: 2.05047632e-158 + art_sys_44: 1.18844406e-151 + art_sys_45: -2.10608552e-142 + art_sys_46: 5.49711201e-135 + art_sys_47: 4.42973597e-129 + art_sys_48: -4.71485190e-123 + art_sys_49: 1.55357185e-115 + art_sys_50: 1.35352758e-107 + art_sys_51: -1.07767503e-94 + art_sys_52: -5.01282711e-103 + art_sys_53: -4.12173922e-105 + art_sys_54: 4.34826859e-96 + art_sys_55: 1.94678379e-93 + art_sys_56: -1.16900008e-90 + art_sys_57: -2.68538831e-16 + art_sys_58: 2.20737114e-15 + art_sys_59: 8.16888279e-15 + art_sys_60: 1.25141701e-32 + art_sys_61: -3.62963266e-14 + art_sys_62: -4.94003260e-13 + art_sys_63: -4.34811439e-13 + art_sys_64: -2.95152120e-12 + art_sys_65: -9.75849279e-12 + art_sys_66: -4.40644583e-29 + art_sys_67: -4.94496708e-11 + art_sys_68: 4.51854033e-10 + art_sys_69: 1.48476394e-27 + art_sys_70: -2.08657842e-27 + art_sys_71: -2.74345577e-28 + art_sys_72: 3.30133761e-29 + art_sys_73: -2.06849630e-28 + art_sys_74: 1.32539749e-28 art_sys_75: -1.44051399e-09 - art_sys_76: 7.64416489e-14 - art_sys_77: -4.48328270e-14 - art_sys_78: -2.76948180e-14 + art_sys_76: -9.02978307e-14 + art_sys_77: 1.73089893e-14 + art_sys_78: 1.17780739e-14 art_sys_79: -3.47883648e-09 - art_sys_80: 1.55083421e-15 - art_sys_81: -1.14978580e-08 - art_sys_82: -2.80898236e-21 - art_sys_83: -1.78728153e-15 - art_sys_84: 1.21865772e-15 - art_sys_85: 1.04093435e-16 - art_sys_86: -9.00723860e-16 - art_sys_87: 4.94589995e-08 + art_sys_80: 5.91798770e-22 + art_sys_81: -3.52816019e-15 + art_sys_82: 2.24431926e-16 + art_sys_83: -2.86569179e-15 + art_sys_84: -1.14978580e-08 + art_sys_85: -1.65323319e-16 + art_sys_86: 6.78362560e-16 + art_sys_87: -4.94589995e-08 art_sys_88: -2.64989259e-07 - art_sys_89: -8.02953024e-17 - art_sys_90: 2.00388816e-07 - art_sys_91: 1.46489404e-21 - art_sys_92: -4.68574340e-17 - art_sys_93: 1.33932030e-17 - art_sys_94: -9.42880260e-09 - art_sys_95: -1.26324791e-19 - art_sys_96: 1.33745744e-22 - art_sys_97: -2.03615544e-22 - art_sys_98: -3.97123414e-19 - art_sys_99: -1.55499936e-20 - art_sys_100: -6.71911427e-18 - art_sys_101: -2.10039543e-19 - art_sys_102: -2.72773925e-19 - art_sys_103: -1.28248779e-18 - art_sys_104: 1.31276310e-19 - art_sys_105: -6.05341929e-06 - art_sys_106: 4.98548071e-20 - art_sys_107: 4.02422975e-19 - art_sys_108: -5.12470723e-06 - art_sys_109: 2.95200886e-05 - art_sys_110: -1.21560836e-17 - art_sys_111: 3.01505546e-18 - art_sys_112: 2.72453846e-18 - art_sys_113: 4.20870115e-18 - art_sys_114: -1.60964920e-05 - art_sys_115: -5.31220219e-19 - art_sys_116: -1.53355324e-19 - art_sys_117: 9.69281295e-05 - art_sys_118: 6.23491858e-19 - art_sys_119: -2.81124651e-18 - art_sys_120: -7.72536059e-19 - art_sys_121: -6.53937152e-05 - art_sys_122: 7.66314711e-18 - art_sys_123: 3.43626201e-16 - art_sys_124: 5.46061686e-20 - art_sys_125: -1.75185101e-05 - art_sys_126: -2.37700686e-17 - art_sys_127: -3.70542018e-14 - art_sys_128: 3.90906324e-19 - art_sys_129: -2.57479587e-06 - art_sys_130: 9.94246812e-12 - art_sys_131: 1.27222583e-05 - art_sys_132: -9.53790438e-19 - art_sys_133: -1.43552057e-10 - art_sys_134: 2.10047946e-16 - art_sys_135: -1.30506805e-16 - art_sys_136: 9.05352772e-06 - art_sys_137: 2.02241757e-10 - art_sys_138: -5.81782253e-16 - art_sys_139: -1.19346303e-11 - art_sys_140: -4.82234661e-06 - art_sys_141: 7.61502101e-13 - art_sys_142: -2.63089815e-15 - art_sys_143: 7.71788628e-11 - art_sys_144: 2.06727637e-06 - art_sys_145: 4.28165288e-15 - art_sys_146: 2.36342954e-10 - art_sys_147: -8.05377797e-07 - art_sys_148: -2.66374259e-07 - art_sys_149: -1.86639965e-12 - art_sys_150: 3.12139550e-10 - art_sys_151: 6.73218153e-10 - art_sys_152: 9.86072315e-08 - art_sys_153: -6.21510712e-10 - art_sys_154: 8.31113368e-20 - art_sys_155: -2.18766955e-08 - art_sys_156: -0.0 - art_sys_157: 1.98802696e-11 + art_sys_89: 2.00388816e-07 + art_sys_90: 2.57391739e-22 + art_sys_91: -4.12505053e-20 + art_sys_92: 1.13733178e-21 + art_sys_93: 9.52396523e-20 + art_sys_94: -5.84529024e-22 + art_sys_95: -4.87049725e-22 + art_sys_96: -9.42880264e-09 + art_sys_97: -6.61065628e-22 + art_sys_98: -1.92579058e-22 + art_sys_99: -5.35148409e-22 + art_sys_100: -2.03322357e-20 + art_sys_101: 3.71049483e-22 + art_sys_102: -6.05349179e-06 + art_sys_103: 5.64828816e-19 + art_sys_104: -6.13519742e-21 + art_sys_105: 5.12471601e-06 + art_sys_106: 2.24130393e-22 + art_sys_107: 6.12622592e-22 + art_sys_108: -2.62602234e-19 + art_sys_109: 1.13961898e-20 + art_sys_110: 2.95201181e-05 + art_sys_111: 6.81009027e-21 + art_sys_112: -5.84978846e-18 + art_sys_113: -1.60968504e-05 + art_sys_114: 6.73398072e-21 + art_sys_115: -3.66287430e-19 + art_sys_116: -1.92790982e-19 + art_sys_117: -9.69279360e-05 + art_sys_118: 3.55502506e-21 + art_sys_119: 1.41266459e-17 + art_sys_120: 7.35014875e-21 + art_sys_121: 1.94130393e-17 + art_sys_122: -1.21211090e-19 + art_sys_123: 6.19720541e-14 + art_sys_124: -3.27987036e-19 + art_sys_125: -1.58015737e-18 + art_sys_126: 2.25011426e-17 + art_sys_127: 6.21889624e-18 + art_sys_128: -8.46620823e-12 + art_sys_129: 5.81616320e-11 + art_sys_130: 2.85401802e-11 + art_sys_131: 3.64673619e-11 + art_sys_132: -5.98248435e-16 + art_sys_133: 1.40567868e-13 + art_sys_134: 3.25490125e-10 + art_sys_135: 1.24936425e-13 + art_sys_136: -2.56009576e-09 + art_sys_137: -2.59158951e-12 + art_sys_138: 2.15315724e-09 + art_sys_139: 7.84468122e-11 + art_sys_140: 2.65589529e-20 + art_sys_141: 7.35332508e-10 + art_sys_142: -0.0 + art_sys_143: -7.44992917e-11 + art_sys_144: -4.37422755e-10 + art_sys_145: -8.18207416e-10 + art_sys_146: -6.53933679e-05 + art_sys_147: -1.75183395e-05 + art_sys_148: 2.57439541e-06 + art_sys_149: 1.27222719e-05 + art_sys_150: -9.05443402e-06 + art_sys_151: -4.82069861e-06 + art_sys_152: 2.07172095e-06 + art_sys_153: -8.04182350e-07 + art_sys_154: 2.78114405e-07 + art_sys_155: -8.89602142e-08 + art_sys_156: 2.75668200e-08 + art_sys_157: -1.04694818e-09 art_sys_158: -0.0 - art_sys_159: -1.04628802e-10 - art_sys_160: 3.72019641e-09 - art_sys_161: -1.07799991e-11 - art_sys_162: -1.07799991e-11 - art_sys_163: 2.02453718e-11 - art_sys_164: 2.02453718e-11 - art_sys_165: -1.23560807e-23 - art_sys_166: 6.21579374e-24 - art_sys_167: 0.0 - art_sys_168: 9.84906943e-19 - art_sys_169: -4.39058985e-19 - art_sys_170: -3.93182975e-18 - art_sys_171: 1.06575593e-18 - art_sys_172: 9.92514621e-19 - art_sys_173: 5.89731280e-19 - art_sys_174: -2.42007660e-19 - art_sys_175: -4.51993384e-20 - art_sys_176: 1.23371738e-19 - art_sys_177: -6.58447689e-21 - art_sys_178: -2.91899357e-21 - art_sys_179: 1.19287416e-21 - art_sys_180: -9.77687360e-23 - art_sys_181: -1.85849593e-20 - art_sys_182: 1.57830449e-21 - art_sys_183: 5.29306511e-23 - art_sys_184: -1.35371227e-22 - art_sys_185: -1.29345817e-22 + art_sys_159: -1.14618537e-11 + art_sys_160: -1.14618537e-11 + art_sys_161: 2.08667499e-10 + art_sys_162: -4.82073363e-23 + art_sys_163: -0.0 + art_sys_164: -1.94178712e-23 + art_sys_165: -1.63125580e-16 + art_sys_166: 5.75889751e-17 + art_sys_167: -1.57866317e-16 + art_sys_168: 4.31641251e-17 + art_sys_169: 2.16029671e-17 + art_sys_170: 2.48855384e-17 + art_sys_171: 4.24865961e-18 + art_sys_172: 2.40619263e-18 + art_sys_173: -3.07190223e-18 + art_sys_174: 1.98492812e-21 + art_sys_175: 3.77568609e-19 + art_sys_176: 2.81495745e-19 + art_sys_177: -1.42730528e-19 + art_sys_178: -9.84309735e-20 + art_sys_179: -2.83884187e-20 + art_sys_180: 1.43311282e-20 + art_sys_181: 6.51000388e-21 + art_sys_182: 1.48873639e-21 + art_sys_183: 7.24715344e-22 + art_sys_184: 5.61235557e-23 + art_sys_185: -2.78653400e-23 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -37815,154 +37815,154 @@ bins: art_sys_35: 0.0 art_sys_36: 0.0 art_sys_37: 0.0 - art_sys_38: 0.0 - art_sys_39: 0.0 - art_sys_40: 0.0 - art_sys_41: 0.0 - art_sys_42: 0.0 - art_sys_43: 0.0 - art_sys_44: 1.60778711e-222 - art_sys_45: 8.10860573e-216 - art_sys_46: 8.56095755e-166 - art_sys_47: 4.73992529e-171 - art_sys_48: -2.55526214e-163 - art_sys_49: 2.18024040e-154 - art_sys_50: -9.34792372e-147 - art_sys_51: 3.87859356e-136 - art_sys_52: 4.30928479e-153 - art_sys_53: 1.37627824e-149 - art_sys_54: 1.62843327e-144 - art_sys_55: 4.01539096e-141 - art_sys_56: 6.47546889e-138 - art_sys_57: 2.30492860e-59 - art_sys_58: 1.14213197e-45 - art_sys_59: -4.38276678e-57 - art_sys_60: 5.29902178e-54 - art_sys_61: 2.08894531e-39 - art_sys_62: -5.79859038e-54 - art_sys_63: -9.79474441e-44 - art_sys_64: -2.35902797e-17 - art_sys_65: 2.54129500e-16 - art_sys_66: 9.28334207e-16 - art_sys_67: 3.20866718e-15 - art_sys_68: 5.86549202e-14 - art_sys_69: 1.29029798e-13 - art_sys_70: 3.53848435e-15 - art_sys_71: -2.81517318e-13 - art_sys_72: -2.19238637e-11 - art_sys_73: 3.16627441e-11 - art_sys_74: 2.88171221e-29 + art_sys_38: -1.27036066e-295 + art_sys_39: 2.12094851e-275 + art_sys_40: 1.42416007e-270 + art_sys_41: -1.94456385e-259 + art_sys_42: 1.44819798e-159 + art_sys_43: 1.80127798e-159 + art_sys_44: 1.04401016e-152 + art_sys_45: -1.85012889e-143 + art_sys_46: 4.82903739e-136 + art_sys_47: 3.89138162e-130 + art_sys_48: -4.14184686e-124 + art_sys_49: 1.36476326e-116 + art_sys_50: 1.18903076e-108 + art_sys_51: -9.46703106e-96 + art_sys_52: -4.40360856e-104 + art_sys_53: -3.62081630e-106 + art_sys_54: 3.81981512e-97 + art_sys_55: 1.71018740e-94 + art_sys_56: -1.02692924e-91 + art_sys_57: -2.35902797e-17 + art_sys_58: 2.54129500e-16 + art_sys_59: 9.28334207e-16 + art_sys_60: 1.37827610e-33 + art_sys_61: -3.20866718e-15 + art_sys_62: -5.86549202e-14 + art_sys_63: 1.29029798e-13 + art_sys_64: -3.53848435e-15 + art_sys_65: -2.81517318e-13 + art_sys_66: -2.62765201e-29 + art_sys_67: -2.19238637e-11 + art_sys_68: -3.16627441e-11 + art_sys_69: -1.95881162e-28 + art_sys_70: 8.41915154e-29 + art_sys_71: 9.30110575e-29 + art_sys_72: -5.62847447e-29 + art_sys_73: -4.69612772e-29 + art_sys_74: -1.18868431e-29 art_sys_75: 1.48607705e-10 - art_sys_76: -1.39045126e-14 - art_sys_77: -2.68050659e-14 - art_sys_78: -1.22612702e-14 + art_sys_76: 1.10726584e-13 + art_sys_77: -3.31819220e-14 + art_sys_78: 1.76381529e-14 art_sys_79: 7.53248561e-10 - art_sys_80: -1.66444552e-16 - art_sys_81: 3.14910429e-09 - art_sys_82: 7.69411037e-22 - art_sys_83: -6.59657618e-17 - art_sys_84: 1.41946038e-15 - art_sys_85: -9.93730431e-16 - art_sys_86: 9.51656229e-16 - art_sys_87: -6.91832720e-10 - art_sys_88: -8.53019343e-08 - art_sys_89: 5.12199170e-17 - art_sys_90: 1.21813743e-07 - art_sys_91: -1.55602437e-22 - art_sys_92: 5.38594665e-17 - art_sys_93: 1.64289669e-17 - art_sys_94: -1.32152216e-07 - art_sys_95: -5.11647233e-20 - art_sys_96: 7.40717708e-24 - art_sys_97: -1.82193932e-23 - art_sys_98: -2.44196173e-21 - art_sys_99: 5.89192267e-22 - art_sys_100: 1.27059904e-19 - art_sys_101: 2.77413407e-21 - art_sys_102: -1.09666060e-19 - art_sys_103: 1.40362434e-20 - art_sys_104: 2.47244196e-20 - art_sys_105: -1.11823464e-06 - art_sys_106: -8.80149254e-22 - art_sys_107: 1.75508338e-19 - art_sys_108: 3.74091465e-06 - art_sys_109: 7.35833397e-06 - art_sys_110: -7.58089820e-18 - art_sys_111: 1.04747189e-18 - art_sys_112: 1.01237469e-18 - art_sys_113: 2.23415562e-18 - art_sys_114: 2.00775749e-05 - art_sys_115: -1.71529960e-19 - art_sys_116: -2.77114359e-19 - art_sys_117: 1.57473773e-05 - art_sys_118: 3.21136812e-19 - art_sys_119: -3.53566395e-17 - art_sys_120: -1.22433888e-19 - art_sys_121: -6.80387199e-05 - art_sys_122: 4.56943065e-18 - art_sys_123: -7.74376747e-17 - art_sys_124: -6.32103002e-20 - art_sys_125: 4.70063663e-05 - art_sys_126: -3.55593215e-19 - art_sys_127: 2.99263403e-14 - art_sys_128: -8.64916617e-19 - art_sys_129: -1.12539978e-05 - art_sys_130: -9.46915173e-12 - art_sys_131: -3.03169400e-06 - art_sys_132: 4.94439991e-17 - art_sys_133: -1.70788940e-10 - art_sys_134: 1.04157483e-16 - art_sys_135: -3.13277655e-17 - art_sys_136: -8.79786319e-06 - art_sys_137: -4.81468349e-10 - art_sys_138: 8.30669058e-17 - art_sys_139: 4.02823400e-11 - art_sys_140: 6.23918607e-06 - art_sys_141: -2.59202410e-12 - art_sys_142: 8.04105740e-15 - art_sys_143: -2.20068981e-10 - art_sys_144: -3.14193219e-06 - art_sys_145: 2.60845982e-14 - art_sys_146: -5.14790414e-11 - art_sys_147: 1.34085744e-06 - art_sys_148: 4.71057382e-07 - art_sys_149: 1.55089891e-12 - art_sys_150: -2.76508044e-10 - art_sys_151: -9.47210283e-10 - art_sys_152: -1.79591426e-07 - art_sys_153: 7.26508682e-10 - art_sys_154: -1.25406189e-20 - art_sys_155: 4.14247880e-08 - art_sys_156: 0.0 - art_sys_157: -2.21861849e-11 + art_sys_80: -1.76419638e-22 + art_sys_81: 9.63882570e-15 + art_sys_82: -3.26023861e-15 + art_sys_83: 7.94692273e-16 + art_sys_84: 3.14910430e-09 + art_sys_85: 1.22279861e-15 + art_sys_86: -1.65471766e-15 + art_sys_87: 6.91832720e-10 + art_sys_88: -8.53019344e-08 + art_sys_89: 1.21813743e-07 + art_sys_90: 1.98438139e-22 + art_sys_91: 1.12772788e-20 + art_sys_92: -2.86062895e-22 + art_sys_93: -2.60789998e-20 + art_sys_94: 1.65647660e-22 + art_sys_95: -6.99661978e-24 + art_sys_96: -1.32152217e-07 + art_sys_97: -2.23785322e-22 + art_sys_98: 8.79760336e-23 + art_sys_99: 1.51600388e-22 + art_sys_100: -6.87719395e-21 + art_sys_101: 1.34419466e-22 + art_sys_102: -1.11818047e-06 + art_sys_103: -1.07761200e-20 + art_sys_104: -2.10153517e-21 + art_sys_105: -3.74089921e-06 + art_sys_106: 5.24284342e-22 + art_sys_107: 4.31797774e-22 + art_sys_108: -7.96737069e-20 + art_sys_109: -4.01289929e-22 + art_sys_110: 7.35825781e-06 + art_sys_111: 2.07111869e-21 + art_sys_112: -2.94061395e-18 + art_sys_113: 2.00775158e-05 + art_sys_114: -1.45477679e-21 + art_sys_115: -2.09501525e-19 + art_sys_116: -4.44713779e-20 + art_sys_117: -1.57470196e-05 + art_sys_118: 5.72763365e-22 + art_sys_119: 1.34463204e-16 + art_sys_120: -8.46100598e-22 + art_sys_121: 7.81313003e-18 + art_sys_122: -2.81340387e-20 + art_sys_123: 1.02771349e-14 + art_sys_124: -1.89952445e-19 + art_sys_125: -8.86862319e-19 + art_sys_126: 2.19319776e-18 + art_sys_127: -3.91453868e-18 + art_sys_128: 9.80267271e-13 + art_sys_129: 1.38464721e-11 + art_sys_130: -1.92077566e-11 + art_sys_131: -3.77775672e-11 + art_sys_132: 6.95778484e-17 + art_sys_133: -2.01901641e-14 + art_sys_134: -5.09228225e-11 + art_sys_135: -2.92343392e-14 + art_sys_136: 5.93870713e-10 + art_sys_137: 6.10162143e-13 + art_sys_138: -5.05264099e-10 + art_sys_139: -1.64357769e-10 + art_sys_140: -5.60008468e-21 + art_sys_141: -6.65444725e-11 + art_sys_142: 0.0 + art_sys_143: 1.45502860e-11 + art_sys_144: 8.58022788e-11 + art_sys_145: 1.57177925e-10 + art_sys_146: -6.80385188e-05 + art_sys_147: 4.70058243e-05 + art_sys_148: 1.12541626e-05 + art_sys_149: -3.03169237e-06 + art_sys_150: 8.79847864e-06 + art_sys_151: 6.23687368e-06 + art_sys_152: -3.14865729e-06 + art_sys_153: 1.33886598e-06 + art_sys_154: -4.91212815e-07 + art_sys_155: 1.62473657e-07 + art_sys_156: -5.13248180e-08 + art_sys_157: 1.57074221e-09 art_sys_158: 0.0 - art_sys_159: 1.18615748e-10 - art_sys_160: -6.64435552e-09 - art_sys_161: 1.54216932e-11 - art_sys_162: 1.54216932e-11 - art_sys_163: 2.04165845e-12 - art_sys_164: 2.04165845e-12 - art_sys_165: 2.25158415e-23 - art_sys_166: -1.13828132e-23 - art_sys_167: -0.0 - art_sys_168: 4.81627854e-18 - art_sys_169: 5.10565549e-18 - art_sys_170: 8.97765607e-18 - art_sys_171: -3.24895192e-18 - art_sys_172: -1.93092027e-18 - art_sys_173: -1.40972015e-18 - art_sys_174: 4.37170333e-19 - art_sys_175: 1.03071743e-19 - art_sys_176: -2.34937811e-19 - art_sys_177: 2.09244505e-20 - art_sys_178: 3.59099537e-21 - art_sys_179: -2.33354189e-21 - art_sys_180: 1.81622899e-22 - art_sys_181: 3.65019713e-20 - art_sys_182: -4.00799825e-21 - art_sys_183: -1.14269821e-22 - art_sys_184: 2.49021175e-22 - art_sys_185: 2.50779169e-22 + art_sys_159: 1.08925247e-10 + art_sys_160: 1.08925247e-10 + art_sys_161: -3.84284023e-10 + art_sys_162: 8.95998538e-23 + art_sys_163: 0.0 + art_sys_164: 3.65208756e-23 + art_sys_165: 2.64867897e-16 + art_sys_166: -9.89467614e-17 + art_sys_167: 2.71834304e-16 + art_sys_168: -7.35433606e-17 + art_sys_169: -3.81161765e-17 + art_sys_170: -4.39875195e-17 + art_sys_171: -7.46243138e-18 + art_sys_172: -4.29562081e-18 + art_sys_173: 5.27431249e-18 + art_sys_174: -3.64662275e-21 + art_sys_175: -6.71909633e-19 + art_sys_176: -5.08168200e-19 + art_sys_177: 2.54301543e-19 + art_sys_178: 1.77036806e-19 + art_sys_179: 5.10886669e-20 + art_sys_180: -2.47170386e-20 + art_sys_181: -1.15819108e-20 + art_sys_182: -2.63802226e-21 + art_sys_183: -1.29312818e-21 + art_sys_184: -1.19561856e-22 + art_sys_185: 5.29801210e-23 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -38106,154 +38106,154 @@ bins: art_sys_35: 0.0 art_sys_36: 0.0 art_sys_37: 0.0 - art_sys_38: 0.0 - art_sys_39: 0.0 - art_sys_40: 0.0 - art_sys_41: 0.0 - art_sys_42: 0.0 - art_sys_43: 0.0 - art_sys_44: 1.23197978e-223 - art_sys_45: 6.21328421e-217 - art_sys_46: 6.43643304e-167 - art_sys_47: 3.56364478e-172 - art_sys_48: -1.92113716e-164 - art_sys_49: 1.63918244e-155 - art_sys_50: -7.02810226e-148 - art_sys_51: 2.91606489e-137 - art_sys_52: 3.23987391e-154 - art_sys_53: 1.03473504e-150 - art_sys_54: 1.22431418e-145 - art_sys_55: 3.01891405e-142 - art_sys_56: 4.86848833e-139 - art_sys_57: 1.73241246e-60 - art_sys_58: 8.58440325e-47 - art_sys_59: -3.29414099e-58 - art_sys_60: 3.98280943e-55 - art_sys_61: 1.57007678e-40 - art_sys_62: -4.35828507e-55 - art_sys_63: -7.36184940e-45 - art_sys_64: -1.77307418e-18 - art_sys_65: 2.39221073e-17 - art_sys_66: 8.71534268e-17 - art_sys_67: 1.64769873e-16 - art_sys_68: 4.06652585e-15 - art_sys_69: 3.74959397e-14 - art_sys_70: -6.03079124e-14 - art_sys_71: 1.42407827e-13 - art_sys_72: -3.67348290e-12 - art_sys_73: 1.66336433e-11 - art_sys_74: 2.52167582e-30 + art_sys_38: 7.93975415e-297 + art_sys_39: 1.13742447e-278 + art_sys_40: 7.63738996e-274 + art_sys_41: -1.04284185e-262 + art_sys_42: 1.08848322e-160 + art_sys_43: 1.35386244e-160 + art_sys_44: 7.84690735e-154 + art_sys_45: -1.39057938e-144 + art_sys_46: 3.62956324e-137 + art_sys_47: 2.92480976e-131 + art_sys_48: -3.11306248e-125 + art_sys_49: 1.02577267e-117 + art_sys_50: 8.93689986e-110 + art_sys_51: -7.11553570e-97 + art_sys_52: -3.30980576e-105 + art_sys_53: -2.72144958e-107 + art_sys_54: 2.87101951e-98 + art_sys_55: 1.28539765e-95 + art_sys_56: -7.71852510e-93 + art_sys_57: -1.77307418e-18 + art_sys_58: 2.39221073e-17 + art_sys_59: 8.71534268e-17 + art_sys_60: 6.93919639e-35 + art_sys_61: -1.64769873e-16 + art_sys_62: -4.06652585e-15 + art_sys_63: 3.74959397e-14 + art_sys_64: 6.03079124e-14 + art_sys_65: 1.42407827e-13 + art_sys_66: -4.71784297e-30 + art_sys_67: -3.67348290e-12 + art_sys_68: -1.66336433e-11 + art_sys_69: -7.45357381e-29 + art_sys_70: 6.33966178e-29 + art_sys_71: 2.60647287e-29 + art_sys_72: -1.28968316e-29 + art_sys_73: -1.14029000e-29 + art_sys_74: -5.69993539e-30 art_sys_75: 7.58073353e-11 - art_sys_76: 3.02595765e-14 - art_sys_77: -2.70637172e-14 - art_sys_78: -7.59479017e-15 + art_sys_76: -7.80480878e-14 + art_sys_77: 2.55466757e-14 + art_sys_78: 5.59187235e-15 art_sys_79: 1.96359933e-10 - art_sys_80: -9.05950401e-15 - art_sys_81: 9.81752275e-10 - art_sys_82: 2.39880181e-22 - art_sys_83: -1.48112107e-15 - art_sys_84: -2.72797003e-15 - art_sys_85: 2.14617334e-15 - art_sys_86: -1.87642159e-15 - art_sys_87: -1.35164566e-09 + art_sys_80: -5.77631421e-23 + art_sys_81: -1.31801765e-14 + art_sys_82: 3.04155073e-15 + art_sys_83: -1.27843754e-15 + art_sys_84: 9.81752275e-10 + art_sys_85: -2.23839613e-15 + art_sys_86: 3.16007829e-15 + art_sys_87: 1.35164566e-09 art_sys_88: -1.39177891e-08 - art_sys_89: -1.06837090e-16 - art_sys_90: 2.31601951e-08 - art_sys_91: -7.01581236e-23 - art_sys_92: -3.17946138e-17 - art_sys_93: -5.74181513e-17 - art_sys_94: -2.85828867e-08 - art_sys_95: -9.13122419e-21 - art_sys_96: -1.55694863e-24 - art_sys_97: 3.33051388e-25 - art_sys_98: 8.95154252e-21 - art_sys_99: 5.13237476e-22 - art_sys_100: 1.91192989e-19 - art_sys_101: 5.70467618e-21 - art_sys_102: -1.95149333e-20 - art_sys_103: 3.41493672e-20 - art_sys_104: 2.56875442e-21 - art_sys_105: 3.11260862e-07 - art_sys_106: -1.42206536e-21 - art_sys_107: 3.11781756e-20 - art_sys_108: 1.30861107e-06 - art_sys_109: -1.94749315e-06 - art_sys_110: -1.44679275e-18 - art_sys_111: 1.74959078e-19 - art_sys_112: 1.73182389e-19 - art_sys_113: 4.14924959e-19 - art_sys_114: 6.85496085e-06 - art_sys_115: -2.82954224e-20 - art_sys_116: -4.84066625e-20 - art_sys_117: -1.26605068e-05 - art_sys_118: 5.93648281e-20 - art_sys_119: -7.61938745e-18 - art_sys_120: 4.74925845e-20 - art_sys_121: -1.11225969e-05 - art_sys_122: 8.49273028e-19 - art_sys_123: -4.81666950e-17 - art_sys_124: -3.62479097e-20 - art_sys_125: 4.64130227e-05 - art_sys_126: 2.94503808e-18 - art_sys_127: 9.89956814e-15 - art_sys_128: -2.39665801e-19 - art_sys_129: 3.38437503e-05 - art_sys_130: -3.54455518e-12 - art_sys_131: -7.91928980e-06 - art_sys_132: 1.11559994e-17 - art_sys_133: -9.98048637e-11 - art_sys_134: 9.29679170e-17 - art_sys_135: 5.30779595e-21 - art_sys_136: 2.71598838e-06 - art_sys_137: -4.91635272e-10 - art_sys_138: 1.88131826e-16 - art_sys_139: 2.39652688e-11 - art_sys_140: -6.40943158e-06 - art_sys_141: -2.42054811e-12 - art_sys_142: 7.58784864e-15 - art_sys_143: -2.09819467e-10 - art_sys_144: 4.18938535e-06 - art_sys_145: 1.75518912e-14 - art_sys_146: -1.37208428e-10 - art_sys_147: -2.07855148e-06 - art_sys_148: -8.02547579e-07 - art_sys_149: -7.99041978e-13 - art_sys_150: 1.56815766e-10 - art_sys_151: 1.02724436e-09 - art_sys_152: 3.20157470e-07 - art_sys_153: -6.58994266e-10 - art_sys_154: 2.15432574e-20 - art_sys_155: -7.83210739e-08 - art_sys_156: -0.0 - art_sys_157: 1.95741591e-11 + art_sys_89: 2.31601951e-08 + art_sys_90: 4.57831974e-23 + art_sys_91: 3.51761043e-21 + art_sys_92: -9.14407213e-23 + art_sys_93: -8.13078212e-21 + art_sys_94: 5.11632024e-23 + art_sys_95: 1.05369085e-23 + art_sys_96: -2.85828868e-08 + art_sys_97: -3.72521788e-23 + art_sys_98: 2.47323826e-23 + art_sys_99: 4.68318833e-23 + art_sys_100: -1.13050108e-21 + art_sys_101: 2.29006863e-23 + art_sys_102: 3.11279646e-07 + art_sys_103: -1.61577112e-20 + art_sys_104: -3.81395656e-22 + art_sys_105: -1.30860914e-06 + art_sys_106: 5.93604021e-23 + art_sys_107: -4.49943002e-23 + art_sys_108: -1.31429247e-20 + art_sys_109: -2.14213604e-22 + art_sys_110: -1.94751484e-06 + art_sys_111: 3.27169073e-22 + art_sys_112: -5.40815115e-19 + art_sys_113: 6.85500795e-06 + art_sys_114: -6.74436710e-22 + art_sys_115: -3.87926611e-20 + art_sys_116: -6.19478797e-21 + art_sys_117: 1.26605919e-05 + art_sys_118: -6.64049556e-22 + art_sys_119: 2.87418003e-17 + art_sys_120: -1.46994660e-22 + art_sys_121: 1.35986329e-18 + art_sys_122: -9.02120037e-21 + art_sys_123: -3.24892850e-15 + art_sys_124: -3.60514814e-20 + art_sys_125: -2.09477986e-19 + art_sys_126: -3.17093338e-18 + art_sys_127: -6.15472181e-18 + art_sys_128: 1.40297380e-12 + art_sys_129: -7.36190139e-12 + art_sys_130: -3.70203210e-11 + art_sys_131: -4.99947134e-11 + art_sys_132: 3.67487262e-16 + art_sys_133: -8.94972361e-14 + art_sys_134: -2.05254899e-10 + art_sys_135: -7.93234100e-14 + art_sys_136: 1.62751312e-09 + art_sys_137: 1.63331829e-12 + art_sys_138: -1.35728299e-09 + art_sys_139: 2.19218186e-10 + art_sys_140: -1.81336332e-20 + art_sys_141: -6.53373681e-10 + art_sys_142: 0.0 + art_sys_143: 5.19877113e-11 + art_sys_144: 3.04577240e-10 + art_sys_145: 5.75869894e-10 + art_sys_146: -1.11224997e-05 + art_sys_147: 4.64125159e-05 + art_sys_148: -3.38436858e-05 + art_sys_149: -7.91930985e-06 + art_sys_150: -2.71539507e-06 + art_sys_151: -6.40668620e-06 + art_sys_152: 4.19831767e-06 + art_sys_153: -2.07546310e-06 + art_sys_154: 8.35472214e-07 + art_sys_155: -2.90725411e-07 + art_sys_156: 9.47792958e-08 + art_sys_157: -1.86391478e-09 art_sys_158: -0.0 - art_sys_159: -9.94016633e-11 - art_sys_160: 1.15878007e-08 - art_sys_161: -2.42584524e-11 - art_sys_162: -2.42584524e-11 - art_sys_163: -9.99762420e-11 - art_sys_164: -9.99762420e-11 - art_sys_165: -4.01993432e-23 - art_sys_166: 2.04592115e-23 - art_sys_167: 0.0 - art_sys_168: -1.48411022e-17 - art_sys_169: -1.40469261e-17 - art_sys_170: -2.00773949e-17 - art_sys_171: 7.48184263e-18 - art_sys_172: 3.70245667e-18 - art_sys_173: 3.38088301e-18 - art_sys_174: -8.22440924e-19 - art_sys_175: -2.30172209e-19 - art_sys_176: 4.48248147e-19 - art_sys_177: -5.11324295e-20 - art_sys_178: -1.87988588e-21 - art_sys_179: 4.59139886e-21 - art_sys_180: -3.39978651e-22 - art_sys_181: -7.15745761e-20 - art_sys_182: 8.95346119e-21 - art_sys_183: 2.33300100e-22 - art_sys_184: -4.39656571e-22 - art_sys_185: -4.86143600e-22 + art_sys_159: -1.88145877e-10 + art_sys_160: -1.88145877e-10 + art_sys_161: 6.93193100e-10 + art_sys_162: -1.62371786e-22 + art_sys_163: -0.0 + art_sys_164: -6.64973579e-23 + art_sys_165: -4.16086233e-16 + art_sys_166: 1.63820329e-16 + art_sys_167: -4.39950807e-16 + art_sys_168: 1.19679662e-16 + art_sys_169: 6.47405513e-17 + art_sys_170: 7.47836979e-17 + art_sys_171: 1.29615466e-17 + art_sys_172: 7.76199253e-18 + art_sys_173: -8.73451461e-18 + art_sys_174: 6.59569136e-21 + art_sys_175: 1.15791106e-18 + art_sys_176: 8.81237658e-19 + art_sys_177: -4.36652149e-19 + art_sys_178: -3.06198671e-19 + art_sys_179: -9.04175190e-20 + art_sys_180: 4.25348179e-20 + art_sys_181: 1.99541585e-20 + art_sys_182: 4.68779800e-21 + art_sys_183: 2.23782534e-21 + art_sys_184: 2.58317444e-22 + art_sys_185: -1.01228200e-22 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -38397,154 +38397,154 @@ bins: art_sys_35: 0.0 art_sys_36: 0.0 art_sys_37: 0.0 - art_sys_38: 0.0 - art_sys_39: 0.0 - art_sys_40: 0.0 - art_sys_41: 0.0 - art_sys_42: 0.0 - art_sys_43: 0.0 - art_sys_44: 9.05473198e-225 - art_sys_45: 4.56660278e-218 - art_sys_46: 4.65692313e-168 - art_sys_47: 2.57838771e-173 - art_sys_48: -1.38999163e-165 - art_sys_49: 1.18599022e-156 - art_sys_50: -5.08501087e-149 - art_sys_51: 2.10984717e-138 - art_sys_52: 2.34413124e-155 - art_sys_53: 7.48657136e-152 - art_sys_54: 8.85822469e-147 - art_sys_55: 2.18426116e-143 - art_sys_56: 3.52247523e-140 - art_sys_57: 1.25313864e-61 - art_sys_58: 6.20951859e-48 - art_sys_59: -2.38281324e-59 - art_sys_60: 2.88096079e-56 - art_sys_61: 1.13571330e-41 - art_sys_62: -3.15258766e-56 - art_sys_63: -5.32518562e-46 - art_sys_64: -1.28255124e-19 - art_sys_65: 2.01674009e-18 - art_sys_66: 7.14610663e-18 - art_sys_67: -4.49356031e-18 - art_sys_68: 4.09662878e-17 - art_sys_69: 6.18275584e-15 - art_sys_70: -1.31230127e-14 - art_sys_71: 3.48551495e-14 - art_sys_72: -3.78360604e-13 - art_sys_73: 2.94029784e-12 - art_sys_74: 2.94385765e-32 + art_sys_38: -4.96234635e-298 + art_sys_39: -1.25963618e-277 + art_sys_40: -8.45811756e-273 + art_sys_41: 1.15488107e-261 + art_sys_42: 7.87353098e-162 + art_sys_43: 9.79314856e-162 + art_sys_44: 5.67605152e-155 + art_sys_45: -1.00587401e-145 + art_sys_46: 2.62544045e-138 + art_sys_47: 2.11565782e-132 + art_sys_48: -2.25183021e-126 + art_sys_49: 7.41991496e-119 + art_sys_50: 6.46449636e-111 + art_sys_51: -5.14701467e-98 + art_sys_52: -2.39414424e-106 + art_sys_53: -1.96855746e-108 + art_sys_54: 2.07674870e-99 + art_sys_55: 9.29790932e-97 + art_sys_56: -5.58318636e-94 + art_sys_57: -1.28255124e-19 + art_sys_58: 2.01674009e-18 + art_sys_59: 7.14610663e-18 + art_sys_60: -1.51818258e-36 + art_sys_61: 4.49356031e-18 + art_sys_62: -4.09662878e-17 + art_sys_63: 6.18275584e-15 + art_sys_64: 1.31230127e-14 + art_sys_65: 3.48551495e-14 + art_sys_66: -5.18978696e-31 + art_sys_67: -3.78360604e-13 + art_sys_68: -2.94029784e-12 + art_sys_69: -1.21953144e-29 + art_sys_70: 1.18691552e-29 + art_sys_71: 3.81964932e-30 + art_sys_72: -1.70383253e-30 + art_sys_73: -4.67161684e-32 + art_sys_74: -1.05854587e-30 art_sys_75: 1.40456897e-11 - art_sys_76: 1.59741284e-14 - art_sys_77: 3.51801613e-14 - art_sys_78: 1.12163414e-14 + art_sys_76: 3.64351441e-14 + art_sys_77: -1.94859860e-14 + art_sys_78: 1.91532326e-15 art_sys_79: 2.45084184e-11 - art_sys_80: 1.20734786e-14 - art_sys_81: 1.47004730e-10 - art_sys_82: 3.59205401e-23 - art_sys_83: 7.19256764e-16 - art_sys_84: 1.17978027e-15 - art_sys_85: -2.11800939e-15 - art_sys_86: 3.33108537e-15 - art_sys_87: -1.95622702e-10 - art_sys_88: -1.44654575e-09 - art_sys_89: 2.97583360e-16 - art_sys_90: 1.84421450e-09 - art_sys_91: -1.05180319e-23 - art_sys_92: 1.19830893e-16 - art_sys_93: 1.22513172e-16 - art_sys_94: 6.42921531e-10 - art_sys_95: -9.84359784e-22 - art_sys_96: -2.51125738e-25 - art_sys_97: 4.32839379e-25 - art_sys_98: 1.34608453e-21 - art_sys_99: 7.17829355e-23 - art_sys_100: 2.72485380e-20 - art_sys_101: 8.29266089e-22 - art_sys_102: -2.11280290e-21 - art_sys_103: 4.98819619e-21 - art_sys_104: 8.06132956e-23 - art_sys_105: 1.57725632e-07 - art_sys_106: -2.47437539e-22 - art_sys_107: 2.49589288e-21 - art_sys_108: -4.51923320e-08 - art_sys_109: -1.18392333e-06 - art_sys_110: -1.14382371e-19 - art_sys_111: 1.73501318e-20 - art_sys_112: 1.70044829e-20 - art_sys_113: 3.44769269e-20 - art_sys_114: -9.43630111e-07 - art_sys_115: -2.83580317e-21 - art_sys_116: 4.44602198e-21 - art_sys_117: -5.20212024e-06 - art_sys_118: 2.86957506e-21 - art_sys_119: 1.79564128e-19 - art_sys_120: 2.18939119e-20 - art_sys_121: 8.88830615e-06 - art_sys_122: 6.10497527e-20 - art_sys_123: -3.24803490e-18 - art_sys_124: -7.46597519e-21 - art_sys_125: 7.35543375e-06 - art_sys_126: 1.02093086e-18 - art_sys_127: -8.51617161e-16 - art_sys_128: -1.13527319e-20 - art_sys_129: 3.33085008e-05 - art_sys_130: 3.46876189e-13 - art_sys_131: 2.43086528e-05 - art_sys_132: -1.04797347e-19 - art_sys_133: -6.14196965e-12 - art_sys_134: 1.09755265e-17 - art_sys_135: 2.31976884e-18 - art_sys_136: 4.36911441e-06 - art_sys_137: -7.94760739e-11 - art_sys_138: 3.19335907e-17 - art_sys_139: -9.05623409e-12 - art_sys_140: 2.45835262e-06 - art_sys_141: -3.86818983e-13 - art_sys_142: 1.10362928e-15 - art_sys_143: -2.65299498e-11 - art_sys_144: -4.29979925e-06 - art_sys_145: 5.76896735e-14 - art_sys_146: 4.52721243e-10 - art_sys_147: 2.72065414e-06 - art_sys_148: 1.23128371e-06 - art_sys_149: -1.21211921e-12 - art_sys_150: 1.50701899e-10 - art_sys_151: -4.73067165e-10 - art_sys_152: -5.29387978e-07 - art_sys_153: 7.88807668e-11 - art_sys_154: 2.48921081e-21 - art_sys_155: 1.41319089e-07 - art_sys_156: 0.0 - art_sys_157: 3.98123955e-12 + art_sys_80: -9.00081334e-24 + art_sys_81: 2.17642682e-14 + art_sys_82: -4.02237437e-15 + art_sys_83: 2.09553036e-15 + art_sys_84: 1.47004730e-10 + art_sys_85: 4.33335751e-15 + art_sys_86: -4.27675083e-15 + art_sys_87: 1.95622703e-10 + art_sys_88: -1.44654576e-09 + art_sys_89: 1.84421450e-09 + art_sys_90: 7.65277013e-24 + art_sys_91: 5.26694857e-22 + art_sys_92: -1.37127020e-23 + art_sys_93: -1.21749323e-21 + art_sys_94: 7.63789821e-24 + art_sys_95: 1.39130251e-24 + art_sys_96: 6.42921534e-10 + art_sys_97: -3.76292840e-24 + art_sys_98: 3.51313947e-24 + art_sys_99: 6.88920094e-24 + art_sys_100: -1.13265605e-22 + art_sys_101: 2.31986521e-24 + art_sys_102: 1.57724941e-07 + art_sys_103: -2.32950265e-21 + art_sys_104: -4.77013430e-23 + art_sys_105: 4.51913174e-08 + art_sys_106: -3.42321297e-23 + art_sys_107: -5.16384241e-23 + art_sys_108: -1.53023880e-21 + art_sys_109: 1.18389346e-23 + art_sys_110: -1.18391887e-06 + art_sys_111: 2.72193304e-23 + art_sys_112: -4.59178475e-20 + art_sys_113: -9.43610361e-07 + art_sys_114: 1.44919259e-22 + art_sys_115: -2.13114968e-21 + art_sys_116: -6.89770280e-22 + art_sys_117: 5.20207872e-06 + art_sys_118: -2.07383593e-22 + art_sys_119: -7.51377979e-19 + art_sys_120: 5.92930603e-23 + art_sys_121: 1.25540501e-19 + art_sys_122: -1.56022551e-21 + art_sys_123: -1.27381618e-15 + art_sys_124: -3.18705362e-21 + art_sys_125: -2.17964487e-20 + art_sys_126: -1.36229896e-18 + art_sys_127: 6.97131439e-18 + art_sys_128: 2.08152428e-13 + art_sys_129: -4.10639605e-12 + art_sys_130: -1.73588054e-12 + art_sys_131: 6.31660941e-11 + art_sys_132: -9.68991892e-16 + art_sys_133: 1.97997839e-13 + art_sys_134: 5.84630345e-10 + art_sys_135: 2.38517022e-13 + art_sys_136: -4.88741036e-09 + art_sys_137: -4.95156996e-12 + art_sys_138: 4.11635413e-09 + art_sys_139: -1.80888375e-10 + art_sys_140: 5.26375587e-20 + art_sys_141: 1.64788103e-09 + art_sys_142: -0.0 + art_sys_143: -1.49263010e-10 + art_sys_144: -8.75557738e-10 + art_sys_145: -1.64474605e-09 + art_sys_146: 8.88831198e-06 + art_sys_147: 7.35536288e-06 + art_sys_148: -3.33094864e-05 + art_sys_149: 2.43086691e-05 + art_sys_150: -4.37037901e-06 + art_sys_151: 2.45623362e-06 + art_sys_152: -4.30888355e-06 + art_sys_153: 2.71661741e-06 + art_sys_154: -1.27893394e-06 + art_sys_155: 4.83189213e-07 + art_sys_156: -1.65652167e-07 + art_sys_157: 4.65893471e-10 art_sys_158: 0.0 - art_sys_159: -5.26077933e-11 - art_sys_160: -1.88708540e-08 - art_sys_161: 3.64233976e-11 - art_sys_162: 3.64233976e-11 - art_sys_163: 3.98311924e-10 - art_sys_164: 3.98311924e-10 - art_sys_165: 6.63473508e-23 - art_sys_166: -3.40855347e-23 - art_sys_167: -0.0 - art_sys_168: 3.53739891e-17 - art_sys_169: 2.97635531e-17 - art_sys_170: 4.07629759e-17 - art_sys_171: -1.47292882e-17 - art_sys_172: -6.49573518e-18 - art_sys_173: -7.26435487e-18 - art_sys_174: 1.41295766e-18 - art_sys_175: 4.99786270e-19 - art_sys_176: -8.20475464e-19 - art_sys_177: 1.06751137e-19 - art_sys_178: -5.86491775e-21 - art_sys_179: -8.65250544e-21 - art_sys_180: 6.24064834e-22 - art_sys_181: 1.38867256e-19 - art_sys_182: -1.27659774e-20 - art_sys_183: -4.77536046e-22 - art_sys_184: 6.99326095e-22 - art_sys_185: 9.01687794e-22 + art_sys_159: 2.24943099e-10 + art_sys_160: 2.24943099e-10 + art_sys_161: -1.18013144e-09 + art_sys_162: 2.77810969e-22 + art_sys_163: 0.0 + art_sys_164: 1.14085874e-22 + art_sys_165: 5.68579024e-16 + art_sys_166: -2.35263717e-16 + art_sys_167: 6.33630611e-16 + art_sys_168: -1.72968295e-16 + art_sys_169: -9.85205294e-17 + art_sys_170: -1.14383655e-16 + art_sys_171: -1.94894225e-17 + art_sys_172: -1.26155367e-17 + art_sys_173: 1.30177593e-17 + art_sys_174: -1.11507656e-20 + art_sys_175: -1.82719989e-18 + art_sys_176: -1.40349551e-18 + art_sys_177: 6.77243769e-19 + art_sys_178: 4.86073282e-19 + art_sys_179: 1.31224901e-19 + art_sys_180: -6.69444364e-20 + art_sys_181: -3.16809657e-20 + art_sys_182: -6.82882518e-21 + art_sys_183: -3.53635951e-21 + art_sys_184: -5.39399707e-22 + art_sys_185: 1.87284291e-22 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -38689,153 +38689,153 @@ bins: art_sys_36: 0.0 art_sys_37: 0.0 art_sys_38: 0.0 - art_sys_39: 0.0 - art_sys_40: 0.0 - art_sys_41: 0.0 - art_sys_42: 0.0 - art_sys_43: 0.0 - art_sys_44: 6.23986386e-226 - art_sys_45: 3.14697106e-219 - art_sys_46: 3.18952546e-169 - art_sys_47: 1.76593708e-174 - art_sys_48: -9.52004914e-167 - art_sys_49: 8.12284398e-158 - art_sys_50: -3.48272264e-150 - art_sys_51: 1.44503379e-139 - art_sys_52: 1.60549488e-156 - art_sys_53: 5.12755081e-153 - art_sys_54: 6.06699582e-148 - art_sys_55: 1.49599991e-144 - art_sys_56: 2.41254238e-141 - art_sys_57: 8.58201702e-63 - art_sys_58: 4.25253781e-49 - art_sys_59: -1.63185007e-60 - art_sys_60: 1.97300232e-57 - art_sys_61: 7.77783928e-43 - art_sys_62: -2.15898969e-57 - art_sys_63: -3.64690963e-47 - art_sys_64: -8.78344678e-21 - art_sys_65: 1.44901701e-19 - art_sys_66: 4.82086974e-19 - art_sys_67: -2.09907885e-18 - art_sys_68: -3.06089000e-17 - art_sys_69: 7.13436485e-16 - art_sys_70: -1.69047730e-15 - art_sys_71: 4.56264222e-15 - art_sys_72: -1.98145605e-14 - art_sys_73: 3.10646793e-13 - art_sys_74: -2.90913592e-32 + art_sys_39: -1.44464772e-278 + art_sys_40: -9.70042100e-274 + art_sys_41: 1.32450644e-262 + art_sys_42: 5.39212295e-163 + art_sys_43: 6.70675727e-163 + art_sys_44: 3.88719721e-156 + art_sys_45: -6.88864546e-147 + art_sys_46: 1.79801130e-139 + art_sys_47: 1.44889086e-133 + art_sys_48: -1.54214740e-127 + art_sys_49: 5.08146775e-120 + art_sys_50: 4.42715718e-112 + art_sys_51: -3.52489067e-99 + art_sys_52: -1.63960999e-107 + art_sys_53: -1.34815039e-109 + art_sys_54: 1.42224427e-100 + art_sys_55: 6.36759674e-98 + art_sys_56: -3.82359927e-95 + art_sys_57: -8.78344678e-21 + art_sys_58: 1.44901701e-19 + art_sys_59: 4.82086974e-19 + art_sys_60: -7.23977940e-37 + art_sys_61: 2.09907885e-18 + art_sys_62: 3.06089000e-17 + art_sys_63: 7.13436485e-16 + art_sys_64: 1.69047730e-15 + art_sys_65: 4.56264222e-15 + art_sys_66: -3.16280364e-32 + art_sys_67: -1.98145605e-14 + art_sys_68: -3.10646793e-13 + art_sys_69: -1.21535987e-30 + art_sys_70: 1.30319884e-30 + art_sys_71: 3.44951303e-31 + art_sys_72: -1.37101380e-31 + art_sys_73: -1.38854975e-31 + art_sys_74: -1.10433641e-31 art_sys_75: 1.48145740e-12 - art_sys_76: -4.77958445e-14 - art_sys_77: 2.85188180e-14 - art_sys_78: 9.18444343e-15 + art_sys_76: 4.78971115e-14 + art_sys_77: -2.22879214e-14 + art_sys_78: -9.96721191e-15 art_sys_79: 2.25168496e-12 - art_sys_80: -1.99224990e-14 - art_sys_81: 1.31213614e-11 - art_sys_82: 3.20618901e-24 - art_sys_83: 6.10962088e-16 - art_sys_84: -2.36634943e-15 - art_sys_85: 4.15197729e-15 - art_sys_86: -6.07647426e-15 - art_sys_87: 3.83982386e-12 + art_sys_80: -7.98790352e-25 + art_sys_81: -3.04151758e-14 + art_sys_82: 6.25197622e-15 + art_sys_83: -4.78408842e-15 + art_sys_84: 1.31213614e-11 + art_sys_85: -5.14883255e-15 + art_sys_86: 5.30147230e-15 + art_sys_87: -3.83982386e-12 art_sys_88: -1.42885919e-10 - art_sys_89: -4.49076490e-16 - art_sys_90: -5.89754170e-11 - art_sys_91: -5.74723420e-25 - art_sys_92: -1.89712677e-16 - art_sys_93: -8.66190061e-17 - art_sys_94: 1.34104084e-09 - art_sys_95: -8.27162675e-23 - art_sys_96: 3.76140307e-26 - art_sys_97: 1.40299084e-26 - art_sys_98: -4.19966322e-23 - art_sys_99: -7.45784747e-25 - art_sys_100: -5.49206544e-22 - art_sys_101: -1.56411737e-23 - art_sys_102: -1.83351780e-22 - art_sys_103: -9.77079735e-23 - art_sys_104: 3.83135795e-24 - art_sys_105: 1.12986350e-08 - art_sys_106: -1.36993770e-23 - art_sys_107: -3.42843089e-23 - art_sys_108: -1.06567546e-07 - art_sys_109: -7.54812558e-08 - art_sys_110: 4.07846257e-21 - art_sys_111: 1.40661956e-21 - art_sys_112: 1.19286030e-21 - art_sys_113: -2.94117436e-22 - art_sys_114: -8.77188817e-07 - art_sys_115: -2.06999419e-22 - art_sys_116: 2.89473290e-21 - art_sys_117: 3.93231702e-07 - art_sys_118: -9.28890294e-22 - art_sys_119: 3.58613369e-19 - art_sys_120: 1.63786161e-21 - art_sys_121: 3.44333428e-06 - art_sys_122: -3.12487228e-21 - art_sys_123: 2.78128558e-18 - art_sys_124: 8.18229398e-22 - art_sys_125: -5.73664135e-06 - art_sys_126: 1.15413516e-20 - art_sys_127: -9.45536620e-16 - art_sys_128: 9.14278180e-21 - art_sys_129: 4.80818242e-06 - art_sys_130: 4.21236026e-13 - art_sys_131: 2.12609933e-05 - art_sys_132: -5.02597470e-19 - art_sys_133: 1.52059489e-11 - art_sys_134: -1.52990868e-17 - art_sys_135: 1.07483561e-18 - art_sys_136: -1.77247943e-05 - art_sys_137: 6.10736748e-11 - art_sys_138: -2.22089477e-17 - art_sys_139: -8.91128933e-12 - art_sys_140: 2.75837818e-06 - art_sys_141: 2.94586510e-13 - art_sys_142: -9.91901086e-16 - art_sys_143: 3.03454422e-11 - art_sys_144: 1.96510520e-06 - art_sys_145: 4.11561495e-14 - art_sys_146: 3.91322339e-10 - art_sys_147: -3.02008041e-06 - art_sys_148: -1.76101687e-06 - art_sys_149: -4.27053794e-13 - art_sys_150: 2.29180491e-11 - art_sys_151: -6.86586020e-10 - art_sys_152: 8.62882265e-07 - art_sys_153: 2.51806133e-10 - art_sys_154: -1.19679346e-20 - art_sys_155: -2.61658913e-07 - art_sys_156: 0.0 - art_sys_157: -1.28886567e-11 + art_sys_89: -5.89754170e-11 + art_sys_90: 1.07457112e-24 + art_sys_91: 4.69735780e-23 + art_sys_92: -1.19448762e-24 + art_sys_93: -1.08666671e-22 + art_sys_94: 6.83091275e-25 + art_sys_95: -1.28879951e-25 + art_sys_96: 1.34104085e-09 + art_sys_97: -3.16793272e-25 + art_sys_98: 3.00220958e-25 + art_sys_99: 5.85211405e-25 + art_sys_100: -1.05947696e-23 + art_sys_101: 1.84904457e-25 + art_sys_102: 1.12970966e-08 + art_sys_103: 3.86315909e-23 + art_sys_104: -4.10676550e-24 + art_sys_105: 1.06567216e-07 + art_sys_106: -1.00222144e-23 + art_sys_107: -8.94425955e-24 + art_sys_108: -1.59354522e-22 + art_sys_109: 3.94950203e-24 + art_sys_110: -7.54781760e-08 + art_sys_111: 1.06581613e-24 + art_sys_112: -7.00991220e-23 + art_sys_113: -8.77190214e-07 + art_sys_114: 1.12251473e-22 + art_sys_115: 4.46850171e-22 + art_sys_116: -9.61960875e-23 + art_sys_117: -3.93251869e-07 + art_sys_118: 4.40648802e-23 + art_sys_119: -1.37600428e-18 + art_sys_120: 5.47560522e-24 + art_sys_121: 6.64731317e-21 + art_sys_122: 6.28802654e-22 + art_sys_123: -2.50953480e-17 + art_sys_124: -6.89617684e-23 + art_sys_125: 9.55921297e-21 + art_sys_126: 1.18910473e-19 + art_sys_127: 7.25917073e-18 + art_sys_128: -9.56373130e-14 + art_sys_129: 1.01598616e-13 + art_sys_130: 1.04919441e-11 + art_sys_131: 6.42067412e-11 + art_sys_132: -8.83635029e-16 + art_sys_133: 1.85509862e-13 + art_sys_134: 5.25290673e-10 + art_sys_135: 2.10567842e-13 + art_sys_136: -4.31762747e-09 + art_sys_137: -4.36210110e-12 + art_sys_138: 3.62603252e-09 + art_sys_139: -1.95157507e-10 + art_sys_140: 4.65407678e-20 + art_sys_141: 1.47736604e-09 + art_sys_142: -0.0 + art_sys_143: -1.32194864e-10 + art_sys_144: -7.75287644e-10 + art_sys_145: -1.45674773e-09 + art_sys_146: 3.44331791e-06 + art_sys_147: -5.73657613e-06 + art_sys_148: -4.80890556e-06 + art_sys_149: 2.12610185e-05 + art_sys_150: 1.77277936e-05 + art_sys_151: 2.75866460e-06 + art_sys_152: 1.96943038e-06 + art_sys_153: -3.01561630e-06 + art_sys_154: 1.82590254e-06 + art_sys_155: -7.92347807e-07 + art_sys_156: 2.94877709e-07 + art_sys_157: 6.60930578e-09 art_sys_158: -0.0 - art_sys_159: 1.29560893e-10 - art_sys_160: 3.14990862e-08 - art_sys_161: -3.98526035e-11 - art_sys_162: -3.98526035e-11 - art_sys_163: -1.14472428e-09 - art_sys_164: -1.14472428e-09 - art_sys_165: -1.07591011e-22 - art_sys_166: 5.58758239e-23 - art_sys_167: 0.0 - art_sys_168: -6.34208486e-17 - art_sys_169: -5.12375353e-17 - art_sys_170: -8.50544025e-17 - art_sys_171: 2.64966784e-17 - art_sys_172: 1.25273984e-17 - art_sys_173: 1.51315844e-17 - art_sys_174: -2.51896702e-18 - art_sys_175: -1.13025769e-18 - art_sys_176: 1.55906047e-18 - art_sys_177: -2.33454921e-19 - art_sys_178: 2.69084004e-20 - art_sys_179: 1.66103059e-20 - art_sys_180: -1.25366399e-21 - art_sys_181: -2.83029588e-19 - art_sys_182: 2.79535427e-20 - art_sys_183: 7.23483534e-22 - art_sys_184: -9.76662327e-22 - art_sys_185: -1.69773957e-21 + art_sys_159: 2.05366994e-10 + art_sys_160: 2.05366994e-10 + art_sys_161: 2.06875995e-09 + art_sys_162: -4.87398315e-22 + art_sys_163: -0.0 + art_sys_164: -1.99410586e-22 + art_sys_165: -7.30044533e-16 + art_sys_166: 3.15327441e-16 + art_sys_167: -8.29772581e-16 + art_sys_168: 2.32382235e-16 + art_sys_169: 1.38125884e-16 + art_sys_170: 1.62337258e-16 + art_sys_171: 2.80050177e-17 + art_sys_172: 1.89380612e-17 + art_sys_173: -1.83111850e-17 + art_sys_174: 1.88274697e-20 + art_sys_175: 2.75494288e-18 + art_sys_176: 2.17179900e-18 + art_sys_177: -9.89390737e-19 + art_sys_178: -7.40962962e-19 + art_sys_179: -1.93255131e-19 + art_sys_180: 9.91343560e-20 + art_sys_181: 4.75774325e-20 + art_sys_182: 8.83663141e-21 + art_sys_183: 5.38752585e-21 + art_sys_184: 1.15145810e-21 + art_sys_185: -3.65835825e-22 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -38980,153 +38980,153 @@ bins: art_sys_36: 0.0 art_sys_37: 0.0 art_sys_38: 0.0 - art_sys_39: 0.0 - art_sys_40: 0.0 - art_sys_41: 0.0 - art_sys_42: 0.0 - art_sys_43: 0.0 - art_sys_44: 4.19883277e-227 - art_sys_45: 2.11761113e-220 - art_sys_46: 2.14986512e-170 - art_sys_47: 1.19031078e-175 - art_sys_48: -6.41688609e-168 - art_sys_49: 5.47511508e-159 - art_sys_50: -2.34749151e-151 - art_sys_51: 9.74009387e-141 - art_sys_52: 1.08216645e-157 - art_sys_53: 3.45617013e-154 - art_sys_54: 4.08939288e-149 - art_sys_55: 1.00836255e-145 - art_sys_56: 1.62614808e-142 - art_sys_57: 5.78488280e-64 - art_sys_58: 2.86650944e-50 - art_sys_59: -1.09998167e-61 - art_sys_60: 1.32994228e-58 - art_sys_61: 5.24281048e-44 - art_sys_62: -1.45531261e-58 - art_sys_63: -2.45827348e-48 - art_sys_64: -5.92066063e-22 - art_sys_65: 9.51577016e-21 - art_sys_66: 2.87793198e-20 - art_sys_67: -2.70545254e-19 - art_sys_68: -4.43295628e-18 - art_sys_69: 6.67668516e-17 - art_sys_70: -1.64150633e-16 - art_sys_71: 4.28305986e-16 - art_sys_72: -3.66411013e-17 - art_sys_73: 2.25923695e-14 - art_sys_74: -4.35188619e-33 + art_sys_39: -1.05701222e-279 + art_sys_40: -7.09755282e-275 + art_sys_41: 9.69107875e-264 + art_sys_42: 3.63466997e-164 + art_sys_43: 4.52082593e-164 + art_sys_44: 2.62024422e-157 + art_sys_45: -4.64343136e-148 + art_sys_46: 1.21198603e-140 + art_sys_47: 9.76654306e-135 + art_sys_48: -1.03951577e-128 + art_sys_49: 3.42526653e-121 + art_sys_50: 2.98421520e-113 + art_sys_51: -2.37602414e-100 + art_sys_52: -1.10521241e-108 + art_sys_53: -9.08748147e-111 + art_sys_54: 9.58692633e-102 + art_sys_55: 4.29220789e-99 + art_sys_56: -2.57737473e-96 + art_sys_57: -5.92066063e-22 + art_sys_58: 9.51577016e-21 + art_sys_59: 2.87793198e-20 + art_sys_60: -9.72072494e-38 + art_sys_61: 2.70545254e-19 + art_sys_62: 4.43295628e-18 + art_sys_63: 6.67668516e-17 + art_sys_64: 1.64150633e-16 + art_sys_65: 4.28305986e-16 + art_sys_66: -7.36587806e-34 + art_sys_67: -3.66411013e-17 + art_sys_68: -2.25923695e-14 + art_sys_69: -8.32659400e-32 + art_sys_70: 9.81823266e-32 + art_sys_71: 2.10073550e-32 + art_sys_72: -6.96776598e-33 + art_sys_73: 1.10626993e-33 + art_sys_74: -7.10680856e-33 art_sys_75: 9.05762821e-14 - art_sys_76: 2.15412961e-15 - art_sys_77: -2.50141717e-14 - art_sys_78: -1.17542237e-14 + art_sys_76: -2.48256672e-14 + art_sys_77: -4.64543814e-14 + art_sys_78: 3.45546398e-15 art_sys_79: 3.97791468e-13 - art_sys_80: 1.91276989e-14 - art_sys_81: 1.14483058e-12 - art_sys_82: 2.79676122e-25 - art_sys_83: -4.59681060e-15 - art_sys_84: 6.16401208e-15 - art_sys_85: -8.66672118e-15 - art_sys_86: 1.14937073e-14 - art_sys_87: 4.40485786e-12 + art_sys_80: -5.52323181e-26 + art_sys_81: 3.27401885e-14 + art_sys_82: -4.71092016e-15 + art_sys_83: 3.83533654e-15 + art_sys_84: 1.14483058e-12 + art_sys_85: 4.00810442e-15 + art_sys_86: -4.05923939e-15 + art_sys_87: -4.40485786e-12 art_sys_88: -3.78421880e-11 - art_sys_89: 5.53848982e-16 - art_sys_90: 9.29289625e-12 - art_sys_91: 2.41944749e-26 - art_sys_92: 2.36183465e-16 - art_sys_93: 1.12298119e-16 - art_sys_94: 1.93531805e-10 - art_sys_95: -1.97442576e-23 - art_sys_96: 1.61086542e-26 - art_sys_97: -1.08065578e-26 - art_sys_98: -3.66721896e-23 - art_sys_99: -1.33244728e-24 - art_sys_100: -6.01583201e-22 - art_sys_101: -1.86290656e-23 - art_sys_102: -4.38311766e-23 - art_sys_103: -1.13998768e-22 - art_sys_104: 1.06726533e-23 - art_sys_105: -6.80683356e-09 - art_sys_106: 1.75732559e-24 - art_sys_107: 2.43827014e-23 - art_sys_108: -1.96233415e-08 - art_sys_109: 7.00393742e-08 - art_sys_110: -5.18543799e-22 - art_sys_111: 4.14913490e-22 - art_sys_112: 3.56169273e-22 - art_sys_113: 3.05755123e-22 - art_sys_114: -1.05871687e-07 - art_sys_115: -6.09617572e-23 - art_sys_116: 2.77558659e-22 - art_sys_117: 5.78823735e-07 - art_sys_118: -9.20846753e-23 - art_sys_119: 5.12916157e-20 - art_sys_120: -8.82289973e-22 - art_sys_121: -2.48203945e-07 - art_sys_122: 6.71466217e-22 - art_sys_123: 7.49295686e-19 - art_sys_124: 5.58842782e-22 - art_sys_125: -2.23001346e-06 - art_sys_126: -7.08549898e-20 - art_sys_127: -1.14808647e-16 - art_sys_128: 2.43055651e-21 - art_sys_129: -3.89975548e-06 - art_sys_130: 6.20325304e-14 - art_sys_131: 2.84690523e-06 - art_sys_132: -8.12458300e-20 - art_sys_133: 4.53383094e-12 - art_sys_134: -5.21757867e-18 - art_sys_135: 1.78810366e-19 - art_sys_136: -1.46249928e-05 - art_sys_137: 2.38412153e-11 - art_sys_138: -8.14090376e-18 - art_sys_139: -8.36661861e-13 - art_sys_140: -1.20338974e-05 - art_sys_141: 1.16694746e-13 - art_sys_142: -3.69501894e-16 - art_sys_143: 1.05158467e-11 - art_sys_144: 1.47823369e-06 - art_sys_145: 4.96971561e-15 - art_sys_146: 5.49583416e-11 - art_sys_147: 1.45302355e-06 - art_sys_148: 2.01033382e-06 - art_sys_149: -2.26978519e-12 - art_sys_150: 4.04840106e-10 - art_sys_151: 1.88526610e-09 - art_sys_152: -1.22292557e-06 - art_sys_153: -1.54796167e-09 - art_sys_154: 7.27227076e-20 - art_sys_155: 4.51691626e-07 - art_sys_156: -0.0 - art_sys_157: 6.59186796e-11 - art_sys_158: -0.0 - art_sys_159: -4.52036878e-10 - art_sys_160: -4.97135795e-08 - art_sys_161: 3.54092005e-11 - art_sys_162: 3.54092005e-11 - art_sys_163: 2.81351842e-09 - art_sys_164: 2.81351842e-09 - art_sys_165: 1.45415313e-22 - art_sys_166: -7.68962190e-23 - art_sys_167: -0.0 - art_sys_168: 1.71673858e-16 - art_sys_169: 1.01636370e-16 - art_sys_170: 1.60860056e-16 - art_sys_171: -4.12980502e-17 - art_sys_172: -2.23431188e-17 - art_sys_173: -2.81792485e-17 - art_sys_174: 4.12905387e-18 - art_sys_175: 2.31849576e-18 - art_sys_176: -2.79491023e-18 - art_sys_177: 4.79739620e-19 - art_sys_178: -7.15231260e-20 - art_sys_179: -2.93708793e-20 - art_sys_180: 2.55158740e-21 - art_sys_181: 5.62339049e-19 - art_sys_182: -4.85020438e-20 - art_sys_183: -3.03456968e-22 - art_sys_184: 7.66684898e-22 - art_sys_185: 2.93291260e-21 + art_sys_89: 9.29289624e-12 + art_sys_90: 1.42668199e-25 + art_sys_91: 4.09145793e-24 + art_sys_92: -9.70396539e-26 + art_sys_93: -9.47970424e-24 + art_sys_94: 6.07240262e-26 + art_sys_95: -5.26367722e-26 + art_sys_96: 1.93531806e-10 + art_sys_97: -8.83460930e-26 + art_sys_98: 3.01492063e-26 + art_sys_99: 4.95351868e-26 + art_sys_100: -3.12412062e-24 + art_sys_101: 5.12663853e-26 + art_sys_102: -6.80711443e-09 + art_sys_103: 5.03728692e-23 + art_sys_104: -4.32703342e-25 + art_sys_105: 1.96233445e-08 + art_sys_106: 4.66433359e-25 + art_sys_107: 1.40132888e-24 + art_sys_108: -2.89547929e-23 + art_sys_109: -2.58861022e-24 + art_sys_110: 7.00396540e-08 + art_sys_111: 7.03849521e-25 + art_sys_112: -4.69297717e-22 + art_sys_113: -1.05873890e-07 + art_sys_114: 1.25891957e-23 + art_sys_115: 3.56911351e-23 + art_sys_116: -1.72318934e-23 + art_sys_117: -5.78823285e-07 + art_sys_118: 3.10506789e-23 + art_sys_119: -1.95650400e-19 + art_sys_120: -6.90241841e-24 + art_sys_121: 2.53060791e-21 + art_sys_122: 3.06228044e-22 + art_sys_123: 4.19268774e-17 + art_sys_124: -4.68584878e-23 + art_sys_125: 3.37810686e-21 + art_sys_126: 1.63897868e-19 + art_sys_127: 1.17319788e-18 + art_sys_128: -3.88686084e-14 + art_sys_129: 4.55155370e-13 + art_sys_130: 3.05710739e-12 + art_sys_131: 1.01476051e-11 + art_sys_132: -1.27043811e-16 + art_sys_133: 2.73853862e-14 + art_sys_134: 7.42846353e-11 + art_sys_135: 2.90422983e-14 + art_sys_136: -5.96228731e-10 + art_sys_137: -5.98014777e-13 + art_sys_138: 4.94960252e-10 + art_sys_139: 3.07296678e-10 + art_sys_140: 4.24139886e-21 + art_sys_141: -3.45772449e-11 + art_sys_142: 0.0 + art_sys_143: -1.16235811e-11 + art_sys_144: -6.90384089e-11 + art_sys_145: -1.23184904e-10 + art_sys_146: -2.48209104e-07 + art_sys_147: -2.22998984e-06 + art_sys_148: 3.89968412e-06 + art_sys_149: 2.84691156e-06 + art_sys_150: 1.46299832e-05 + art_sys_151: -1.20313506e-05 + art_sys_152: 1.48142339e-06 + art_sys_153: 1.45101195e-06 + art_sys_154: -2.07694422e-06 + art_sys_155: 1.13033586e-06 + art_sys_156: -4.85165481e-07 + art_sys_157: -2.79689759e-08 + art_sys_158: 0.0 + art_sys_159: -1.99642748e-10 + art_sys_160: -1.99642748e-10 + art_sys_161: -3.55834276e-09 + art_sys_162: 8.46177932e-22 + art_sys_163: 0.0 + art_sys_164: 3.47983491e-22 + art_sys_165: 5.91837211e-16 + art_sys_166: -2.68802859e-16 + art_sys_167: 8.43005617e-16 + art_sys_168: -2.42405608e-16 + art_sys_169: -1.50220930e-16 + art_sys_170: -1.81903051e-16 + art_sys_171: -3.02231834e-17 + art_sys_172: -2.28447118e-17 + art_sys_173: 2.07660401e-17 + art_sys_174: -2.86305556e-20 + art_sys_175: -3.46224857e-18 + art_sys_176: -2.86367631e-18 + art_sys_177: 1.15581810e-18 + art_sys_178: 9.56380766e-19 + art_sys_179: 2.19320107e-19 + art_sys_180: -1.24435605e-19 + art_sys_181: -6.12847433e-20 + art_sys_182: -7.52100532e-21 + art_sys_183: -7.12362453e-21 + art_sys_184: -2.15326741e-21 + art_sys_185: 6.88573568e-22 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -39271,153 +39271,153 @@ bins: art_sys_36: 0.0 art_sys_37: 0.0 art_sys_38: 0.0 - art_sys_39: 0.0 - art_sys_40: 0.0 - art_sys_41: 0.0 - art_sys_42: 0.0 - art_sys_43: 0.0 - art_sys_44: 2.66102653e-228 - art_sys_45: 1.34204425e-221 - art_sys_46: 1.36713111e-171 - art_sys_47: 7.56936275e-177 - art_sys_48: -4.08059302e-169 - art_sys_49: 3.48170687e-160 - art_sys_50: -1.49280466e-152 - art_sys_51: 6.19387013e-142 - art_sys_52: 6.88165691e-159 - art_sys_53: 2.19782984e-155 - art_sys_54: 2.60050557e-150 - art_sys_55: 6.41232697e-147 - art_sys_56: 1.03409168e-143 - art_sys_57: 3.67897788e-65 - art_sys_58: 1.82299715e-51 - art_sys_59: -6.99548872e-63 - art_sys_60: 8.45795568e-60 - art_sys_61: 3.33423933e-45 - art_sys_62: -9.25527955e-60 - art_sys_63: -1.56337372e-49 - art_sys_64: -3.76532772e-23 - art_sys_65: 5.78354577e-22 - art_sys_66: 1.52023090e-21 - art_sys_67: -2.58532840e-20 - art_sys_68: -3.93258845e-19 - art_sys_69: 5.65994534e-18 - art_sys_70: -1.36499601e-17 - art_sys_71: 3.28877015e-17 - art_sys_72: 2.41137039e-17 - art_sys_73: 1.39559268e-15 - art_sys_74: -3.08530242e-34 + art_sys_39: -5.82821371e-281 + art_sys_40: -3.91348880e-276 + art_sys_41: 5.34352179e-265 + art_sys_42: 2.31151971e-165 + art_sys_43: 2.87508310e-165 + art_sys_44: 1.66638132e-158 + art_sys_45: -2.95305576e-149 + art_sys_46: 7.70779635e-142 + art_sys_47: 6.21117101e-136 + art_sys_48: -6.61094738e-130 + art_sys_49: 2.17834663e-122 + art_sys_50: 1.89785381e-114 + art_sys_51: -1.51106611e-101 + art_sys_52: -7.02875444e-110 + art_sys_53: -5.77931220e-112 + art_sys_54: 6.09694121e-103 + art_sys_55: 2.72969023e-100 + art_sys_56: -1.63911787e-97 + art_sys_57: -3.76532772e-23 + art_sys_58: 5.78354577e-22 + art_sys_59: 1.52023090e-21 + art_sys_60: -8.97512016e-39 + art_sys_61: 2.58532840e-20 + art_sys_62: 3.93258845e-19 + art_sys_63: 5.65994534e-18 + art_sys_64: 1.36499601e-17 + art_sys_65: 3.28877015e-17 + art_sys_66: -2.29580134e-35 + art_sys_67: 2.41137039e-17 + art_sys_68: -1.39559268e-15 + art_sys_69: -5.04317008e-33 + art_sys_70: 6.12588210e-33 + art_sys_71: 1.22139285e-33 + art_sys_72: -3.72184990e-34 + art_sys_73: -5.78748416e-35 + art_sys_74: -4.73624140e-34 art_sys_75: 2.94588761e-15 - art_sys_76: -2.73419951e-14 - art_sys_77: 9.02109284e-15 - art_sys_78: 1.85862719e-14 + art_sys_76: 4.44825805e-15 + art_sys_77: 3.06807217e-14 + art_sys_78: 2.35475558e-14 art_sys_79: 1.08022736e-13 - art_sys_80: -4.32106095e-16 - art_sys_81: 2.52222204e-13 - art_sys_82: 6.16097138e-26 - art_sys_83: 1.25179577e-14 - art_sys_84: -1.15892998e-14 - art_sys_85: 1.39222710e-14 - art_sys_86: -1.80528728e-14 - art_sys_87: 2.52909341e-13 + art_sys_80: -1.07043071e-26 + art_sys_81: -1.74737905e-14 + art_sys_82: -1.37935682e-15 + art_sys_83: -2.95390008e-18 + art_sys_84: 2.52222204e-13 + art_sys_85: 1.02199384e-15 + art_sys_86: -1.68617898e-15 + art_sys_87: -2.52909341e-13 art_sys_88: -1.04500086e-11 - art_sys_89: -7.46835193e-16 - art_sys_90: 1.62539918e-11 - art_sys_91: -6.38362092e-27 - art_sys_92: -2.51528937e-16 - art_sys_93: 8.13227927e-18 - art_sys_94: -2.39033555e-11 - art_sys_95: -6.05340639e-24 - art_sys_96: 1.69589597e-27 - art_sys_97: -4.09306064e-27 - art_sys_98: -2.84660772e-24 - art_sys_99: -4.12090183e-26 - art_sys_100: -3.02377361e-23 - art_sys_101: -1.09980858e-24 - art_sys_102: -1.30723834e-23 - art_sys_103: -7.02850447e-24 - art_sys_104: 3.75304991e-24 - art_sys_105: -1.98432273e-09 - art_sys_106: 3.32132264e-25 - art_sys_107: 2.32031016e-23 - art_sys_108: 1.74688019e-09 - art_sys_109: 1.98283986e-08 - art_sys_110: -1.01605110e-21 - art_sys_111: 1.32264800e-22 - art_sys_112: 1.25117724e-22 - art_sys_113: 2.94705323e-22 - art_sys_114: 4.07446709e-08 - art_sys_115: -2.35846607e-23 - art_sys_116: -8.48165779e-23 - art_sys_117: 9.09415304e-08 - art_sys_118: 5.09830521e-23 - art_sys_119: -6.48572597e-21 - art_sys_120: -2.65919035e-22 - art_sys_121: -3.74973572e-07 - art_sys_122: 7.47777344e-22 - art_sys_123: 5.26390047e-21 - art_sys_124: -4.90096861e-24 - art_sys_125: 1.40631466e-07 - art_sys_126: -1.67068842e-20 - art_sys_127: 3.41494683e-17 - art_sys_128: 1.14811206e-22 - art_sys_129: -1.48028364e-06 - art_sys_130: -1.63531194e-14 - art_sys_131: -2.46694765e-06 - art_sys_132: 7.08921904e-21 - art_sys_133: -6.67829587e-13 - art_sys_134: 5.91617802e-19 - art_sys_135: -6.31402419e-20 - art_sys_136: -1.76566247e-06 - art_sys_137: -1.52093349e-12 - art_sys_138: 8.10129328e-19 - art_sys_139: 9.39494497e-13 - art_sys_140: -9.56916355e-06 - art_sys_141: -6.63469103e-15 - art_sys_142: 2.95784208e-17 - art_sys_143: -1.16234330e-12 - art_sys_144: -8.34657188e-06 - art_sys_145: -4.65941347e-15 - art_sys_146: -4.27050650e-11 - art_sys_147: 9.84958274e-07 - art_sys_148: -1.08613996e-06 - art_sys_149: -1.82913557e-12 - art_sys_150: 3.37820011e-10 - art_sys_151: 1.76099027e-09 - art_sys_152: 1.39162898e-06 - art_sys_153: -1.43073954e-09 - art_sys_154: 8.23059248e-20 - art_sys_155: -6.90135379e-07 - art_sys_156: 0.0 - art_sys_157: 7.95843952e-11 - art_sys_158: 0.0 - art_sys_159: -6.60810166e-10 - art_sys_160: 8.37072430e-08 - art_sys_161: 1.42973386e-10 - art_sys_162: 1.42973386e-10 - art_sys_163: -5.11830962e-09 - art_sys_164: -5.11830962e-09 - art_sys_165: -1.30936612e-22 - art_sys_166: 7.11135507e-23 - art_sys_167: 0.0 - art_sys_168: -3.65401839e-16 - art_sys_169: -1.77781996e-16 - art_sys_170: -2.85885722e-16 - art_sys_171: 6.94761768e-17 - art_sys_172: 3.96232540e-17 - art_sys_173: 4.41649054e-17 - art_sys_174: -5.98992366e-18 - art_sys_175: -4.10322227e-18 - art_sys_176: 4.53147528e-18 - art_sys_177: -8.88798642e-19 - art_sys_178: 1.34414165e-19 - art_sys_179: 4.29578346e-20 - art_sys_180: -5.46372645e-21 - art_sys_181: -9.97154549e-19 - art_sys_182: 8.54574758e-20 - art_sys_183: -6.18358321e-22 - art_sys_184: 6.10153764e-22 - art_sys_185: -4.46032407e-21 + art_sys_89: 1.62539918e-11 + art_sys_90: 1.51571671e-26 + art_sys_91: 9.02730436e-25 + art_sys_92: -2.22087914e-26 + art_sys_93: -2.08860075e-24 + art_sys_94: 1.34342316e-26 + art_sys_95: -3.63668315e-27 + art_sys_96: -2.39033556e-11 + art_sys_97: -2.75529763e-26 + art_sys_98: 7.83072151e-27 + art_sys_99: 1.24962214e-26 + art_sys_100: -9.02547476e-25 + art_sys_101: 1.65312407e-26 + art_sys_102: -1.98429701e-09 + art_sys_103: 2.75615591e-24 + art_sys_104: -1.29543170e-25 + art_sys_105: -1.74686096e-09 + art_sys_106: 6.81667713e-25 + art_sys_107: 7.99190735e-25 + art_sys_108: -7.28632655e-24 + art_sys_109: -9.13270287e-25 + art_sys_110: 1.98282368e-08 + art_sys_111: 3.32810819e-25 + art_sys_112: -3.83015811e-22 + art_sys_113: 4.07443134e-08 + art_sys_114: -5.30310450e-24 + art_sys_115: -2.63219181e-23 + art_sys_116: -3.29002617e-24 + art_sys_117: -9.09395604e-08 + art_sys_118: 3.51553071e-24 + art_sys_119: 2.58749833e-20 + art_sys_120: -1.93227810e-24 + art_sys_121: 9.72053375e-22 + art_sys_122: -8.96799833e-26 + art_sys_123: 5.49514392e-18 + art_sys_124: -2.18419015e-23 + art_sys_125: -6.31728737e-22 + art_sys_126: 1.51247615e-20 + art_sys_127: -7.76167846e-19 + art_sys_128: -1.59061059e-15 + art_sys_129: 8.28638310e-14 + art_sys_130: -7.48027790e-13 + art_sys_131: -6.97922696e-12 + art_sys_132: 1.00434871e-16 + art_sys_133: -2.08946025e-14 + art_sys_134: -5.99753186e-11 + art_sys_135: -2.41782633e-14 + art_sys_136: 4.95625476e-10 + art_sys_137: 5.02475488e-13 + art_sys_138: -4.19283667e-10 + art_sys_139: 2.77496968e-10 + art_sys_140: -6.83418720e-21 + art_sys_141: -3.51371317e-10 + art_sys_142: 0.0 + art_sys_143: 2.01462990e-11 + art_sys_144: 1.17510034e-10 + art_sys_145: 2.26145024e-10 + art_sys_146: -3.74972846e-07 + art_sys_147: 1.40629486e-07 + art_sys_148: 1.48037262e-06 + art_sys_149: -2.46694996e-06 + art_sys_150: 1.76769899e-06 + art_sys_151: -9.57093698e-06 + art_sys_152: -8.36261203e-06 + art_sys_153: 9.83250555e-07 + art_sys_154: 1.14634963e-06 + art_sys_155: -1.29336598e-06 + art_sys_156: 7.05502846e-07 + art_sys_157: 8.33052994e-08 + art_sys_158: -0.0 + art_sys_159: -1.94648643e-10 + art_sys_160: -1.94648643e-10 + art_sys_161: 6.06303982e-09 + art_sys_162: -1.45164436e-21 + art_sys_163: -0.0 + art_sys_164: -6.00064240e-22 + art_sys_165: 7.85183167e-17 + art_sys_166: 9.64255644e-18 + art_sys_167: -1.88992553e-16 + art_sys_168: 1.16991926e-16 + art_sys_169: 6.44660859e-17 + art_sys_170: 9.46433638e-17 + art_sys_171: 1.44897532e-17 + art_sys_172: 1.38669615e-17 + art_sys_173: -1.46941619e-17 + art_sys_174: 3.56843988e-20 + art_sys_175: 2.89177794e-18 + art_sys_176: 2.77981443e-18 + art_sys_177: -7.31829750e-19 + art_sys_178: -8.70082750e-19 + art_sys_179: -1.22813008e-19 + art_sys_180: 1.09925617e-19 + art_sys_181: 5.51960682e-20 + art_sys_182: -2.20225240e-21 + art_sys_183: 7.12432626e-21 + art_sys_184: 3.52768205e-21 + art_sys_185: -1.25335248e-21 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -39561,154 +39561,154 @@ bins: art_sys_35: 0.0 art_sys_36: 0.0 art_sys_37: 0.0 - art_sys_38: 0.0 - art_sys_39: 0.0 - art_sys_40: 0.0 - art_sys_41: 0.0 - art_sys_42: 0.0 - art_sys_43: 0.0 - art_sys_44: 1.35939464e-229 - art_sys_45: 6.85587961e-223 - art_sys_46: 7.00128284e-173 - art_sys_47: 3.87638385e-178 - art_sys_48: -2.08973271e-170 - art_sys_49: 1.78303415e-161 - art_sys_50: -7.64487589e-154 - art_sys_51: 3.17197351e-143 - art_sys_52: 3.52419943e-160 - art_sys_53: 1.12554153e-156 - art_sys_54: 1.33175779e-151 - art_sys_55: 3.28384853e-148 - art_sys_56: 5.29573812e-145 - art_sys_57: 1.88422231e-66 - art_sys_58: 9.33664732e-53 - art_sys_59: -3.58280380e-64 - art_sys_60: 4.33181967e-61 - art_sys_61: 1.70766130e-46 - art_sys_62: -4.74023825e-61 - art_sys_63: -8.00696209e-51 - art_sys_64: -1.92844718e-24 - art_sys_65: 2.80855432e-23 - art_sys_66: 4.98485813e-23 - art_sys_67: -2.17899558e-21 - art_sys_68: -2.65850980e-20 - art_sys_69: 4.65479165e-19 - art_sys_70: -1.06517513e-18 - art_sys_71: 2.38288278e-18 - art_sys_72: -1.11157644e-17 - art_sys_73: 1.47545602e-16 - art_sys_74: -1.12620869e-35 + art_sys_38: -3.78596981e-303 + art_sys_39: -2.03126763e-282 + art_sys_40: -1.36394155e-277 + art_sys_41: 1.86234130e-266 + art_sys_42: 1.18386606e-166 + art_sys_43: 1.47250024e-166 + art_sys_44: 8.53452510e-160 + art_sys_45: -1.51243465e-150 + art_sys_46: 3.94761875e-143 + art_sys_47: 3.18110832e-137 + art_sys_48: -3.38585747e-131 + art_sys_49: 1.11566025e-123 + art_sys_50: 9.72003271e-116 + art_sys_51: -7.73906398e-103 + art_sys_52: -3.59984120e-111 + art_sys_53: -2.95992786e-113 + art_sys_54: 3.12260448e-104 + art_sys_55: 1.39803594e-101 + art_sys_56: -8.39489282e-99 + art_sys_57: -1.92844718e-24 + art_sys_58: 2.80855432e-23 + art_sys_59: 4.98485813e-23 + art_sys_60: -7.78746992e-40 + art_sys_61: 2.17899558e-21 + art_sys_62: 2.65850980e-20 + art_sys_63: 4.65479165e-19 + art_sys_64: 1.06517513e-18 + art_sys_65: 2.38288278e-18 + art_sys_66: -1.73744494e-35 + art_sys_67: -1.11157644e-17 + art_sys_68: -1.47545602e-16 + art_sys_69: -5.83079417e-34 + art_sys_70: 6.14641277e-34 + art_sys_71: 1.68801189e-34 + art_sys_72: -6.86157964e-35 + art_sys_73: -1.03531522e-35 + art_sys_74: -4.67489912e-35 art_sys_75: 5.81048954e-16 - art_sys_76: -5.91457109e-14 - art_sys_77: 3.96734356e-14 - art_sys_78: -1.81048541e-15 + art_sys_76: 3.04371391e-14 + art_sys_77: 2.00241126e-14 + art_sys_78: -1.09027726e-14 art_sys_79: 2.27462793e-14 - art_sys_80: -1.32062232e-14 - art_sys_81: 6.60475718e-14 - art_sys_82: 1.61349206e-26 - art_sys_83: -1.93466224e-14 - art_sys_84: 1.44997284e-14 - art_sys_85: -1.70735030e-14 - art_sys_86: 2.11518852e-14 - art_sys_87: -1.63993394e-13 - art_sys_88: -1.71191400e-12 - art_sys_89: 5.53240786e-16 - art_sys_90: 4.51453373e-12 - art_sys_91: -5.78577193e-27 - art_sys_92: -8.51502905e-17 - art_sys_93: -5.87130608e-16 - art_sys_94: -1.40753345e-11 - art_sys_95: -1.12053762e-24 - art_sys_96: -2.55219426e-28 - art_sys_97: -4.23295418e-28 - art_sys_98: 1.08518045e-24 - art_sys_99: 6.27099248e-26 - art_sys_100: 2.37024881e-23 - art_sys_101: 6.86048916e-25 - art_sys_102: -2.35615251e-24 - art_sys_103: 4.09315109e-24 - art_sys_104: 6.09584963e-25 - art_sys_105: -6.72095858e-11 - art_sys_106: -5.13832271e-26 - art_sys_107: 5.97489129e-24 - art_sys_108: 1.36710245e-09 - art_sys_109: 1.72905095e-10 - art_sys_110: -2.84146945e-22 - art_sys_111: 2.36962256e-23 - art_sys_112: 2.43768641e-23 - art_sys_113: 7.66747338e-23 - art_sys_114: 1.56789514e-08 - art_sys_115: -5.08774104e-24 - art_sys_116: -3.17150051e-23 - art_sys_117: -2.32537189e-08 - art_sys_118: 1.84746923e-23 - art_sys_119: -3.75841491e-21 - art_sys_120: -1.16481967e-23 - art_sys_121: -5.84389534e-08 - art_sys_122: 1.78658858e-22 - art_sys_123: -3.54164558e-20 - art_sys_124: -4.65861159e-23 - art_sys_125: 2.39454478e-07 - art_sys_126: 5.27957597e-22 - art_sys_127: 1.11391925e-17 - art_sys_128: -9.42597010e-23 - art_sys_129: 1.11583579e-07 - art_sys_130: -7.58740723e-15 - art_sys_131: -8.89786879e-07 - art_sys_132: 5.37233526e-21 - art_sys_133: -5.88144893e-13 - art_sys_134: 6.47460647e-19 - art_sys_135: -3.63163304e-20 - art_sys_136: 1.75940290e-06 - art_sys_137: -2.56233382e-12 - art_sys_138: 9.12486764e-19 - art_sys_139: 2.77284694e-13 - art_sys_140: -9.39779023e-07 - art_sys_141: -1.24422110e-14 - art_sys_142: 4.14773678e-17 - art_sys_143: -1.25734927e-12 - art_sys_144: -6.34276210e-06 - art_sys_145: -1.64352167e-15 - art_sys_146: -1.59084387e-11 - art_sys_147: -5.86453975e-06 - art_sys_148: -4.64713186e-07 - art_sys_149: -2.52626102e-13 - art_sys_150: 4.80981105e-11 - art_sys_151: 3.01836779e-10 - art_sys_152: -8.83149401e-07 - art_sys_153: -2.75800255e-10 - art_sys_154: 2.37368547e-20 - art_sys_155: 8.90632549e-07 - art_sys_156: 0.0 - art_sys_157: 2.53441098e-11 + art_sys_80: -3.20105304e-27 + art_sys_81: -9.71760772e-15 + art_sys_82: 1.01336794e-14 + art_sys_83: -3.11663258e-15 + art_sys_84: 6.60475718e-14 + art_sys_85: -6.19015819e-15 + art_sys_86: 6.94870396e-15 + art_sys_87: 1.63993395e-13 + art_sys_88: -1.71191401e-12 + art_sys_89: 4.51453373e-12 + art_sys_90: 4.01316706e-28 + art_sys_91: 2.36790999e-25 + art_sys_92: -6.19623622e-27 + art_sys_93: -5.46994010e-25 + art_sys_94: 3.47060684e-27 + art_sys_95: 1.40625761e-27 + art_sys_96: -1.40753346e-11 + art_sys_97: -4.96034247e-27 + art_sys_98: 1.93895688e-27 + art_sys_99: 3.44210570e-27 + art_sys_100: -1.45111412e-25 + art_sys_101: 3.05900939e-27 + art_sys_102: -6.71898715e-11 + art_sys_103: -1.95136970e-24 + art_sys_104: -4.16595584e-26 + art_sys_105: -1.36709893e-09 + art_sys_106: 1.07295860e-25 + art_sys_107: 9.82296624e-26 + art_sys_108: -1.52272807e-24 + art_sys_109: -3.42006125e-26 + art_sys_110: 1.72852076e-10 + art_sys_111: 6.87822060e-26 + art_sys_112: -9.74186655e-23 + art_sys_113: 1.56790384e-08 + art_sys_114: -1.95845946e-24 + art_sys_115: -9.15568833e-24 + art_sys_116: -5.37121974e-25 + art_sys_117: 2.32540850e-08 + art_sys_118: -1.56114425e-24 + art_sys_119: 1.48275732e-20 + art_sys_120: 8.31541943e-26 + art_sys_121: 1.81485313e-22 + art_sys_122: -2.83824756e-23 + art_sys_123: 9.46022286e-19 + art_sys_124: -4.08111679e-24 + art_sys_125: -5.00701648e-22 + art_sys_126: -1.12256972e-20 + art_sys_127: -3.09888350e-19 + art_sys_128: 2.31268525e-15 + art_sys_129: -1.94989999e-14 + art_sys_130: -4.87508552e-13 + art_sys_131: -2.74877641e-12 + art_sys_132: 3.76234636e-17 + art_sys_133: -7.92829959e-15 + art_sys_134: -2.22915270e-11 + art_sys_135: -8.87918917e-15 + art_sys_136: 1.82124490e-10 + art_sys_137: 1.83889420e-13 + art_sys_138: -1.53008691e-10 + art_sys_139: 3.29688975e-11 + art_sys_140: -2.33130387e-21 + art_sys_141: -7.91479609e-11 + art_sys_142: -0.0 + art_sys_143: 5.87705609e-12 + art_sys_144: 3.45409509e-11 + art_sys_145: 6.66865033e-11 + art_sys_146: -5.84382621e-08 + art_sys_147: 2.39451849e-07 + art_sys_148: -1.11555061e-07 + art_sys_149: -8.89788209e-07 + art_sys_150: -1.75958034e-06 + art_sys_151: -9.42171836e-07 + art_sys_152: -6.35388118e-06 + art_sys_153: -5.85515314e-06 + art_sys_154: 4.67370005e-07 + art_sys_155: 8.05980342e-07 + art_sys_156: -8.59605078e-07 + art_sys_157: -1.64954664e-07 art_sys_158: 0.0 - art_sys_159: -2.47575322e-10 - art_sys_160: -1.31622640e-07 - art_sys_161: 5.49977145e-11 - art_sys_162: 5.49977145e-11 - art_sys_163: 8.56833668e-09 - art_sys_164: 8.56833668e-09 - art_sys_165: -6.61635396e-23 - art_sys_166: 2.75371766e-23 - art_sys_167: 0.0 - art_sys_168: 6.48571342e-16 - art_sys_169: 3.15354474e-16 - art_sys_170: 4.58154115e-16 - art_sys_171: -1.05311119e-16 - art_sys_172: -5.93677469e-17 - art_sys_173: -6.41890975e-17 - art_sys_174: 7.66318435e-18 - art_sys_175: 6.21748000e-18 - art_sys_176: -6.42726174e-18 - art_sys_177: 1.38731795e-18 - art_sys_178: -2.23473837e-19 - art_sys_179: -4.98592255e-20 - art_sys_180: 1.08575103e-20 - art_sys_181: 1.66145018e-18 - art_sys_182: -1.39166705e-19 - art_sys_183: 9.01618979e-21 - art_sys_184: -5.37085508e-21 - art_sys_185: 5.38810151e-21 + art_sys_159: -4.64908793e-11 + art_sys_160: -4.64908793e-11 + art_sys_161: -1.03255621e-08 + art_sys_162: 2.46984036e-21 + art_sys_163: 0.0 + art_sys_164: 1.02004657e-21 + art_sys_165: -6.64842458e-16 + art_sys_166: 3.81680394e-16 + art_sys_167: -6.47604918e-16 + art_sys_168: 9.53240657e-17 + art_sys_169: 7.58311947e-17 + art_sys_170: 6.23632184e-17 + art_sys_171: 1.67464436e-17 + art_sys_172: 3.56508633e-18 + art_sys_173: -3.43468787e-18 + art_sys_174: -3.45457842e-20 + art_sys_175: -7.07901767e-19 + art_sys_176: -1.34658925e-18 + art_sys_177: -3.57633350e-19 + art_sys_178: 4.00630612e-19 + art_sys_179: -9.23350402e-20 + art_sys_180: -5.90282092e-20 + art_sys_181: -3.60387121e-20 + art_sys_182: 1.26196493e-20 + art_sys_183: -7.13963202e-21 + art_sys_184: -3.03006590e-21 + art_sys_185: 2.01464813e-21 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -39852,154 +39852,154 @@ bins: art_sys_35: 0.0 art_sys_36: 0.0 art_sys_37: 0.0 - art_sys_38: 0.0 - art_sys_39: 0.0 - art_sys_40: 0.0 - art_sys_41: 0.0 - art_sys_42: 0.0 - art_sys_43: 0.0 - art_sys_44: 3.35733306e-231 - art_sys_45: 1.69321473e-224 - art_sys_46: 1.77246937e-174 - art_sys_47: 9.81358960e-180 - art_sys_48: -5.29044077e-172 - art_sys_49: 4.51399193e-163 - art_sys_50: -1.93540365e-155 - art_sys_51: 8.03027963e-145 - art_sys_52: 8.92198713e-162 - art_sys_53: 2.84946048e-158 - art_sys_54: 3.37152483e-153 - art_sys_55: 8.31350635e-150 - art_sys_56: 1.34068768e-146 - art_sys_57: 4.77335455e-68 - art_sys_58: 2.36527971e-54 - art_sys_59: -9.07641986e-66 - art_sys_60: 1.09739232e-62 - art_sys_61: 4.32606746e-48 - art_sys_62: -1.20085224e-62 - art_sys_63: -2.02842673e-52 - art_sys_64: -4.88539080e-26 - art_sys_65: 4.10946629e-25 - art_sys_66: -3.18773093e-24 - art_sys_67: -1.76557990e-22 - art_sys_68: -1.92859028e-21 - art_sys_69: 3.74634878e-20 - art_sys_70: -8.57572565e-20 - art_sys_71: 2.10149065e-19 - art_sys_72: -7.84425669e-19 - art_sys_73: 2.35246880e-17 - art_sys_74: -3.40843800e-36 + art_sys_38: 2.36623113e-304 + art_sys_39: 1.76816223e-284 + art_sys_40: 1.18727307e-279 + art_sys_41: -1.62111677e-268 + art_sys_42: 2.99912227e-168 + art_sys_43: 3.73032760e-168 + art_sys_44: 2.16207602e-161 + art_sys_45: -3.83149461e-152 + art_sys_46: 1.00006172e-144 + art_sys_47: 8.05879406e-139 + art_sys_48: -8.57749101e-133 + art_sys_49: 2.82633449e-125 + art_sys_50: 2.46240410e-117 + art_sys_51: -1.96055954e-104 + art_sys_52: -9.11958220e-113 + art_sys_53: -7.49847118e-115 + art_sys_54: 7.91058458e-106 + art_sys_55: 3.54168504e-103 + art_sys_56: -2.12670257e-100 + art_sys_57: -4.88539080e-26 + art_sys_58: 4.10946629e-25 + art_sys_59: -3.18773093e-24 + art_sys_60: -6.25702713e-41 + art_sys_61: 1.76557990e-22 + art_sys_62: 1.92859028e-21 + art_sys_63: 3.74634878e-20 + art_sys_64: 8.57572565e-20 + art_sys_65: 2.10149065e-19 + art_sys_66: -1.29028494e-36 + art_sys_67: -7.84425669e-19 + art_sys_68: -2.35246880e-17 + art_sys_69: -8.95546286e-35 + art_sys_70: 1.00557445e-34 + art_sys_71: 2.40224636e-35 + art_sys_72: -8.91790389e-36 + art_sys_73: -2.80538297e-36 + art_sys_74: -7.46370384e-36 art_sys_75: 2.01482105e-16 - art_sys_76: -4.55511796e-14 - art_sys_77: 2.97718662e-14 - art_sys_78: -6.44525320e-15 + art_sys_76: 3.79961004e-14 + art_sys_77: -3.25034351e-14 + art_sys_78: -2.72217741e-14 art_sys_79: 3.08402114e-15 - art_sys_80: 5.84255844e-14 - art_sys_81: 1.10605697e-14 - art_sys_82: 2.70223162e-27 - art_sys_83: 2.94654073e-14 - art_sys_84: -1.78601117e-14 - art_sys_85: 2.35910237e-14 - art_sys_86: -2.44346682e-14 - art_sys_87: -4.92392206e-14 - art_sys_88: -7.89733277e-14 - art_sys_89: -6.43631238e-16 - art_sys_90: 5.01172576e-13 - art_sys_91: -1.38133220e-27 - art_sys_92: 2.23302727e-16 - art_sys_93: 5.99488877e-16 - art_sys_94: -2.05039360e-12 - art_sys_95: -7.79101873e-26 - art_sys_96: -1.16246335e-28 - art_sys_97: 4.87930057e-29 - art_sys_98: 3.64738539e-25 - art_sys_99: 1.69626784e-26 - art_sys_100: 6.88220615e-24 - art_sys_101: 2.07675077e-25 - art_sys_102: -1.52559879e-25 - art_sys_103: 1.25518293e-24 - art_sys_104: 1.35205796e-26 - art_sys_105: 7.50065442e-11 - art_sys_106: -3.15220352e-26 - art_sys_107: 5.94071280e-25 - art_sys_108: 1.76272807e-10 - art_sys_109: -9.36567709e-10 - art_sys_110: -3.16786192e-23 - art_sys_111: 1.36366348e-24 - art_sys_112: 1.80131539e-24 - art_sys_113: 8.00802156e-24 - art_sys_114: 8.30564720e-10 - art_sys_115: -3.48143133e-25 - art_sys_116: -3.38004568e-24 - art_sys_117: -1.01640281e-08 - art_sys_118: 2.10449093e-24 - art_sys_119: -5.42786460e-22 - art_sys_120: 9.37633239e-24 - art_sys_121: 1.45443477e-08 - art_sys_122: 1.25486955e-23 - art_sys_123: -6.74907598e-21 - art_sys_124: -7.33294926e-24 - art_sys_125: 3.50302244e-08 - art_sys_126: 9.46092432e-22 - art_sys_127: -1.02911772e-19 - art_sys_128: -2.72195234e-23 - art_sys_129: 1.51969349e-07 - art_sys_130: -6.45985739e-16 - art_sys_131: 8.15466767e-08 - art_sys_132: 8.84794400e-22 - art_sys_133: -6.42828583e-14 - art_sys_134: 8.30873388e-20 - art_sys_135: -3.43586625e-21 - art_sys_136: 5.55448855e-07 - art_sys_137: -3.70196171e-13 - art_sys_138: 9.71010048e-20 - art_sys_139: -3.37806474e-14 - art_sys_140: 1.14954267e-06 - art_sys_141: -1.88052548e-15 - art_sys_142: 5.52850567e-18 - art_sys_143: -1.39672528e-13 - art_sys_144: -5.06941478e-07 - art_sys_145: 1.43545975e-16 - art_sys_146: 1.20405645e-12 - art_sys_147: -4.03236847e-06 - art_sys_148: 3.90645573e-06 - art_sys_149: 2.05624945e-13 - art_sys_150: -3.74234039e-11 - art_sys_151: -1.76196623e-10 - art_sys_152: -4.82704182e-08 - art_sys_153: 1.34402946e-10 - art_sys_154: -5.53587303e-21 - art_sys_155: -8.26292461e-07 - art_sys_156: 0.0 - art_sys_157: -5.28287045e-12 - art_sys_158: 0.0 - art_sys_159: 2.92811904e-11 - art_sys_160: 2.87092749e-07 - art_sys_161: -2.32836013e-12 - art_sys_162: -2.32836013e-12 - art_sys_163: -8.44131408e-09 - art_sys_164: -8.44131408e-09 - art_sys_165: 6.80979935e-22 - art_sys_166: -3.48418209e-22 - art_sys_167: -0.0 - art_sys_168: -7.68756742e-16 - art_sys_169: -3.27383306e-16 - art_sys_170: -5.05570139e-16 - art_sys_171: 1.12049777e-16 - art_sys_172: 6.22339913e-17 - art_sys_173: 6.55987840e-17 - art_sys_174: -6.68643840e-18 - art_sys_175: -6.01203739e-18 - art_sys_176: 6.76692436e-18 - art_sys_177: -1.43291189e-18 - art_sys_178: 1.76362405e-19 - art_sys_179: 1.31140942e-20 - art_sys_180: -2.39060178e-20 - art_sys_181: -1.58095653e-18 - art_sys_182: 1.32365854e-19 - art_sys_183: 5.52457091e-21 - art_sys_184: 3.00625307e-21 - art_sys_185: -7.45257879e-21 + art_sys_80: -5.88147506e-28 + art_sys_81: 5.57980473e-14 + art_sys_82: -1.72740351e-14 + art_sys_83: 1.04214746e-14 + art_sys_84: 1.10605697e-14 + art_sys_85: 1.50988563e-14 + art_sys_86: -1.70429442e-14 + art_sys_87: 4.92392206e-14 + art_sys_88: -7.89733278e-14 + art_sys_89: 5.01172575e-13 + art_sys_90: -2.42810508e-28 + art_sys_91: 3.96900341e-26 + art_sys_92: -1.08029317e-27 + art_sys_93: -9.16110679e-26 + art_sys_94: 5.72496369e-28 + art_sys_95: 5.55649114e-28 + art_sys_96: -2.05039361e-12 + art_sys_97: -2.95440803e-28 + art_sys_98: 2.83430783e-28 + art_sys_99: 5.66601270e-28 + art_sys_100: -5.12468210e-27 + art_sys_101: 2.00292353e-28 + art_sys_102: 7.50090614e-11 + art_sys_103: -5.79859081e-25 + art_sys_104: -7.77106011e-27 + art_sys_105: -1.76273071e-10 + art_sys_106: -1.26945164e-26 + art_sys_107: -2.69972486e-26 + art_sys_108: -1.75552139e-25 + art_sys_109: 3.71188173e-26 + art_sys_110: -9.36569237e-10 + art_sys_111: 2.95640904e-27 + art_sys_112: -1.00128270e-23 + art_sys_113: 8.30604141e-10 + art_sys_114: -8.87450678e-26 + art_sys_115: -1.18608316e-24 + art_sys_116: -1.33242108e-25 + art_sys_117: 1.01639621e-08 + art_sys_118: -5.17138961e-25 + art_sys_119: 2.10425811e-21 + art_sys_120: 1.24633940e-25 + art_sys_121: 1.38229681e-23 + art_sys_122: -5.89044853e-24 + art_sys_123: 5.20208874e-19 + art_sys_124: -6.83491729e-25 + art_sys_125: -3.57769977e-23 + art_sys_126: -2.58643559e-21 + art_sys_127: 1.96125736e-20 + art_sys_128: 5.69778740e-16 + art_sys_129: -8.88178723e-15 + art_sys_130: -1.52781537e-14 + art_sys_131: 1.85432163e-13 + art_sys_132: -3.06822906e-18 + art_sys_133: 6.20047802e-16 + art_sys_134: 1.86126680e-12 + art_sys_135: 7.67038162e-16 + art_sys_136: -1.57053195e-11 + art_sys_137: -1.60993566e-14 + art_sys_138: 1.35771786e-11 + art_sys_139: -3.17862923e-11 + art_sys_140: 6.72487569e-22 + art_sys_141: 2.75825582e-11 + art_sys_142: -0.0 + art_sys_143: -1.18719071e-12 + art_sys_144: -6.81537005e-12 + art_sys_145: -1.26048449e-11 + art_sys_146: 1.45444285e-08 + art_sys_147: 3.50298759e-08 + art_sys_148: -1.51972855e-07 + art_sys_149: 8.15466674e-08 + art_sys_150: -5.55760531e-07 + art_sys_151: 1.14914641e-06 + art_sys_152: -5.07129003e-07 + art_sys_153: -4.02617864e-06 + art_sys_154: -3.82125681e-06 + art_sys_155: 7.58387139e-08 + art_sys_156: 7.62819284e-07 + art_sys_157: 3.43824065e-07 + art_sys_158: -0.0 + art_sys_159: 1.14800363e-11 + art_sys_160: 1.14800363e-11 + art_sys_161: 1.79401266e-08 + art_sys_162: -4.28357982e-21 + art_sys_163: -0.0 + art_sys_164: -1.76619848e-21 + art_sys_165: 1.70354891e-15 + art_sys_166: -8.39219855e-16 + art_sys_167: 1.91495041e-15 + art_sys_168: -4.07344529e-16 + art_sys_169: -2.80493304e-16 + art_sys_170: -2.95788281e-16 + art_sys_171: -6.31111888e-17 + art_sys_172: -3.83303748e-17 + art_sys_173: 2.83022133e-17 + art_sys_174: 2.50956015e-21 + art_sys_175: -2.88976438e-18 + art_sys_176: -9.12066324e-19 + art_sys_177: 1.92251249e-18 + art_sys_178: 3.93946305e-19 + art_sys_179: 3.92910429e-19 + art_sys_180: -2.33909864e-20 + art_sys_181: -6.12817438e-21 + art_sys_182: -2.47748263e-20 + art_sys_183: 5.73111953e-21 + art_sys_184: 1.12718621e-21 + art_sys_185: -3.28707313e-21 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -40143,154 +40143,154 @@ bins: art_sys_35: 0.0 art_sys_36: 0.0 art_sys_37: 0.0 - art_sys_38: 0.0 - art_sys_39: 0.0 - art_sys_40: 0.0 - art_sys_41: 0.0 - art_sys_42: 0.0 - art_sys_43: 0.0 - art_sys_44: -2.13373496e-232 - art_sys_45: -1.07611364e-225 - art_sys_46: -9.79197057e-176 - art_sys_47: -5.42149738e-181 - art_sys_48: 2.92269311e-173 - art_sys_49: -2.49374555e-164 - art_sys_50: 1.06920976e-156 - art_sys_51: -4.43631146e-146 - art_sys_52: -4.92893342e-163 - art_sys_53: -1.57417858e-159 - art_sys_54: -1.86259195e-154 - art_sys_55: -4.59277947e-151 - art_sys_56: -7.40660148e-148 - art_sys_57: -2.62824228e-69 - art_sys_58: -1.30233949e-55 - art_sys_59: 4.99754003e-67 - art_sys_60: -6.04231864e-64 - art_sys_61: -2.38196289e-49 - art_sys_62: 6.61199559e-64 - art_sys_63: 1.11686589e-53 - art_sys_64: 2.68992989e-27 - art_sys_65: -1.05202758e-25 - art_sys_66: -7.81142500e-25 - art_sys_67: -1.27999187e-23 - art_sys_68: -2.02928855e-22 - art_sys_69: 2.42751732e-21 - art_sys_70: -6.28895478e-21 - art_sys_71: 1.88434804e-20 - art_sys_72: 4.28236886e-19 - art_sys_73: 1.97412070e-18 - art_sys_74: -1.08749023e-36 + art_sys_38: -3.69723614e-306 + art_sys_39: 9.60547675e-285 + art_sys_40: 6.44981941e-280 + art_sys_41: -8.80665613e-269 + art_sys_42: -1.65133671e-169 + art_sys_43: -2.05394324e-169 + art_sys_44: -1.19045347e-162 + art_sys_45: 2.10964647e-153 + art_sys_46: -5.50640648e-146 + art_sys_47: -4.43722573e-140 + art_sys_48: 4.72282373e-134 + art_sys_49: -1.55619861e-126 + art_sys_50: -1.35581611e-118 + art_sys_51: 1.07949715e-105 + art_sys_52: 5.02130275e-114 + art_sys_53: 4.12870822e-116 + art_sys_54: -4.35562060e-107 + art_sys_55: -1.95007539e-104 + art_sys_56: 1.17097661e-101 + art_sys_57: 2.68992989e-27 + art_sys_58: -1.05202758e-25 + art_sys_59: -7.81142500e-25 + art_sys_60: -3.69569691e-42 + art_sys_61: 1.27999187e-23 + art_sys_62: 2.02928855e-22 + art_sys_63: 2.42751732e-21 + art_sys_64: 6.28895478e-21 + art_sys_65: 1.88434804e-20 + art_sys_66: 4.93665295e-37 + art_sys_67: 4.28236886e-19 + art_sys_68: -1.97412070e-18 + art_sys_69: -5.73901589e-36 + art_sys_70: 9.65899210e-36 + art_sys_71: 5.77576755e-37 + art_sys_72: 2.95740044e-37 + art_sys_73: 1.19682810e-36 + art_sys_74: -5.51073200e-37 art_sys_75: 2.58065164e-17 - art_sys_76: 3.95787230e-15 - art_sys_77: 8.01645522e-16 - art_sys_78: 1.98871606e-14 + art_sys_76: 1.91020429e-14 + art_sys_77: -1.66481220e-14 + art_sys_78: -1.68019572e-14 art_sys_79: 2.29073936e-16 - art_sys_80: -4.00723630e-14 - art_sys_81: 9.50612920e-16 - art_sys_82: 2.32256587e-28 - art_sys_83: -7.47502385e-15 - art_sys_84: 3.42415275e-17 - art_sys_85: 5.23103260e-16 - art_sys_86: -4.01505720e-15 - art_sys_87: -5.73965252e-15 + art_sys_80: -5.31338590e-29 + art_sys_81: 7.80592690e-14 + art_sys_82: -4.64376681e-14 + art_sys_83: 2.49709182e-14 + art_sys_84: 9.50612920e-16 + art_sys_85: 3.86467849e-14 + art_sys_86: -4.30836102e-14 + art_sys_87: 5.73965252e-15 art_sys_88: 2.31819662e-14 - art_sys_89: -3.00623707e-16 - art_sys_90: -1.39614179e-14 - art_sys_91: -1.50583878e-28 - art_sys_92: -1.20029411e-15 - art_sys_93: -1.99171767e-15 - art_sys_94: 1.16753986e-14 - art_sys_95: 1.01558383e-26 - art_sys_96: -1.61815479e-29 - art_sys_97: 2.19990982e-29 - art_sys_98: 4.54031381e-26 - art_sys_99: 1.83544362e-27 - art_sys_100: 7.82169023e-25 - art_sys_101: 2.43657051e-26 - art_sys_102: 2.30910148e-26 - art_sys_103: 1.48524187e-25 - art_sys_104: -1.26618142e-26 - art_sys_105: 1.39577975e-11 - art_sys_106: -6.00503843e-27 - art_sys_107: -3.46093656e-26 - art_sys_108: -1.67271050e-11 - art_sys_109: -1.46701373e-10 - art_sys_110: 8.52622816e-25 - art_sys_111: -2.75603018e-25 - art_sys_112: -2.15548411e-25 - art_sys_113: -3.18667826e-25 - art_sys_114: -4.41899982e-10 - art_sys_115: 7.97384225e-26 - art_sys_116: 2.87593985e-25 - art_sys_117: -6.55225992e-10 - art_sys_118: -1.23425962e-25 - art_sys_119: 3.81967900e-24 - art_sys_120: 1.88819711e-24 - art_sys_121: 4.92405870e-09 - art_sys_122: -1.95180893e-24 - art_sys_123: 2.17801302e-23 - art_sys_124: 1.16026158e-24 - art_sys_125: -6.61747272e-09 - art_sys_126: 1.28872510e-22 - art_sys_127: -3.53906830e-19 - art_sys_128: -2.51917025e-24 - art_sys_129: 1.71468858e-08 - art_sys_130: 1.66528677e-16 - art_sys_131: 6.95768577e-08 - art_sys_132: 9.80497851e-24 - art_sys_133: 1.99537821e-14 - art_sys_134: -1.97368412e-20 - art_sys_135: 1.27588724e-21 - art_sys_136: -4.39047291e-08 - art_sys_137: 7.18568030e-14 - art_sys_138: -3.22452780e-20 - art_sys_139: -2.09192970e-14 - art_sys_140: 2.67679002e-07 - art_sys_141: 3.37620601e-16 - art_sys_142: -1.27259330e-18 - art_sys_143: 4.41142446e-14 - art_sys_144: 5.61100952e-07 - art_sys_145: 1.27197546e-16 - art_sys_146: 1.19052816e-12 - art_sys_147: -2.86567094e-07 - art_sys_148: 2.43550595e-06 - art_sys_149: 5.73918961e-14 - art_sys_150: -1.05791479e-11 - art_sys_151: -5.65520695e-11 - art_sys_152: 2.52556246e-06 - art_sys_153: 4.82778681e-11 - art_sys_154: -2.94660114e-21 - art_sys_155: 4.05843539e-07 - art_sys_156: -0.0 - art_sys_157: -2.53840207e-12 - art_sys_158: -0.0 - art_sys_159: 3.08167739e-11 - art_sys_160: -4.73429351e-07 - art_sys_161: -1.07215122e-11 - art_sys_162: -1.07215122e-11 - art_sys_163: 1.10563367e-08 - art_sys_164: 1.10563367e-08 - art_sys_165: -2.23407637e-21 - art_sys_166: 1.14913152e-21 - art_sys_167: 0.0 - art_sys_168: 9.20023420e-16 - art_sys_169: 4.47851544e-16 - art_sys_170: 5.60263967e-16 - art_sys_171: -1.20343064e-16 - art_sys_172: -6.47836798e-17 - art_sys_173: -5.98064911e-17 - art_sys_174: 5.98161898e-18 - art_sys_175: 4.92010611e-18 - art_sys_176: -5.88317832e-18 - art_sys_177: 1.36439716e-18 - art_sys_178: -2.29516624e-19 - art_sys_179: 6.23559546e-20 - art_sys_180: 4.73369183e-20 - art_sys_181: 1.57248106e-18 - art_sys_182: -1.31779865e-19 - art_sys_183: 8.76180581e-21 - art_sys_184: -3.33984147e-21 - art_sys_185: 8.39862425e-21 + art_sys_89: -1.39614179e-14 + art_sys_90: -4.42922176e-29 + art_sys_91: 3.41347455e-27 + art_sys_92: -9.67745487e-29 + art_sys_93: -7.87460813e-27 + art_sys_94: 4.80032208e-29 + art_sys_95: 5.90419755e-29 + art_sys_96: 1.16753987e-14 + art_sys_97: 5.76940516e-29 + art_sys_98: 1.72632504e-29 + art_sys_99: 4.39342282e-29 + art_sys_100: 2.21338357e-27 + art_sys_101: -3.13935627e-29 + art_sys_102: 1.39575524e-11 + art_sys_103: -6.69542759e-26 + art_sys_104: -4.10155279e-28 + art_sys_105: 1.67269555e-11 + art_sys_106: -5.24951210e-27 + art_sys_107: -6.62144651e-27 + art_sys_108: 6.19243279e-27 + art_sys_109: 5.79445803e-27 + art_sys_110: -1.46699690e-10 + art_sys_111: -1.36570373e-27 + art_sys_112: 4.35197586e-25 + art_sys_113: -4.41897289e-10 + art_sys_114: 5.77027345e-26 + art_sys_115: -2.40758145e-26 + art_sys_116: -1.62521867e-26 + art_sys_117: 6.55199355e-10 + art_sys_118: -1.98693685e-26 + art_sys_119: -3.68886807e-23 + art_sys_120: 1.45475248e-26 + art_sys_121: -5.33867299e-25 + art_sys_122: 3.99692901e-25 + art_sys_123: 2.14390361e-20 + art_sys_124: -1.31747542e-25 + art_sys_125: 2.26435512e-23 + art_sys_126: 2.34167508e-22 + art_sys_127: 2.26446447e-20 + art_sys_128: 3.29664397e-18 + art_sys_129: -4.41266641e-16 + art_sys_130: 2.66502765e-14 + art_sys_131: 2.03359428e-13 + art_sys_132: -2.88684473e-18 + art_sys_133: 6.03561353e-16 + art_sys_134: 1.71760733e-12 + art_sys_135: 6.88015480e-16 + art_sys_136: -1.41081649e-11 + art_sys_137: -1.42854792e-14 + art_sys_138: 1.19201036e-11 + art_sys_139: -7.90429376e-12 + art_sys_140: 3.12554263e-22 + art_sys_141: 1.01255494e-11 + art_sys_142: -0.0 + art_sys_143: -5.78575863e-13 + art_sys_144: -3.35674795e-12 + art_sys_145: -6.50055226e-12 + art_sys_146: 4.92403519e-09 + art_sys_147: -6.61739474e-09 + art_sys_148: -1.71492592e-08 + art_sys_149: 6.95769447e-08 + art_sys_150: 4.38659376e-08 + art_sys_151: 2.67859591e-07 + art_sys_152: 5.62253560e-07 + art_sys_153: -2.86655305e-07 + art_sys_154: -2.27747907e-06 + art_sys_155: -2.53175383e-06 + art_sys_156: -3.15588270e-07 + art_sys_157: -4.41089970e-07 + art_sys_158: 0.0 + art_sys_159: 2.38298542e-14 + art_sys_160: 2.38298542e-14 + art_sys_161: -3.51059329e-08 + art_sys_162: 8.27590792e-21 + art_sys_163: 0.0 + art_sys_164: 3.38880163e-21 + art_sys_165: 5.04777377e-15 + art_sys_166: -2.26557144e-15 + art_sys_167: 3.92680900e-15 + art_sys_168: -5.85641282e-16 + art_sys_169: -3.02217432e-16 + art_sys_170: -2.48763858e-16 + art_sys_171: -3.28002704e-17 + art_sys_172: -1.25687018e-17 + art_sys_173: 7.93274322e-18 + art_sys_174: 4.25028035e-20 + art_sys_175: 8.91933245e-19 + art_sys_176: 1.84141223e-18 + art_sys_177: -6.29300270e-19 + art_sys_178: 3.30637546e-19 + art_sys_179: 1.31165278e-19 + art_sys_180: -2.15666290e-19 + art_sys_181: -1.29568545e-19 + art_sys_182: -5.87728518e-20 + art_sys_183: -3.20514898e-20 + art_sys_184: 1.64858673e-20 + art_sys_185: 4.62535489e-21 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -40434,154 +40434,154 @@ bins: art_sys_35: 0.0 art_sys_36: 0.0 art_sys_37: 0.0 - art_sys_38: 0.0 - art_sys_39: 0.0 - art_sys_40: 0.0 - art_sys_41: 0.0 - art_sys_42: 0.0 - art_sys_43: 0.0 - art_sys_44: -3.90000745e-233 - art_sys_45: -1.96690364e-226 - art_sys_46: -1.77809757e-176 - art_sys_47: -9.84475112e-182 - art_sys_48: 5.30723974e-174 - art_sys_49: -4.52832540e-165 - art_sys_50: 1.94154922e-157 - art_sys_51: -8.05577853e-147 - art_sys_52: -8.95031749e-164 - art_sys_53: -2.85850850e-160 - art_sys_54: -3.38223058e-155 - art_sys_55: -8.33990459e-152 - art_sys_56: -1.34494482e-148 - art_sys_57: -4.77314536e-70 - art_sys_58: -2.36517605e-56 - art_sys_59: 9.07602208e-68 - art_sys_60: -1.09734423e-64 - art_sys_61: -4.32587786e-50 - art_sys_62: 1.20079214e-64 - art_sys_63: 2.02833783e-54 - art_sys_64: 4.88517613e-28 - art_sys_65: -1.85361059e-26 - art_sys_66: -1.10305955e-25 - art_sys_67: -1.08795800e-24 - art_sys_68: -2.99808523e-23 - art_sys_69: 1.37111886e-22 - art_sys_70: -4.77718831e-22 - art_sys_71: 1.63180738e-21 - art_sys_72: 1.42181339e-19 - art_sys_73: -1.87062431e-20 - art_sys_74: -2.21893775e-37 + art_sys_38: -1.15538629e-307 + art_sys_39: 1.23838073e-285 + art_sys_40: 8.31539366e-281 + art_sys_41: -1.13539323e-269 + art_sys_42: -2.99898924e-170 + art_sys_43: -3.73016215e-170 + art_sys_44: -2.16198012e-163 + art_sys_45: 3.83132466e-154 + art_sys_46: -1.00001736e-146 + art_sys_47: -8.05843662e-141 + art_sys_48: 8.57711057e-135 + art_sys_49: -2.82620913e-127 + art_sys_50: -2.46229488e-119 + art_sys_51: 1.96047258e-106 + art_sys_52: 9.11917771e-115 + art_sys_53: 7.49813859e-117 + art_sys_54: -7.91023371e-108 + art_sys_55: -3.54152795e-105 + art_sys_56: 2.12660824e-102 + art_sys_57: 4.88517613e-28 + art_sys_58: -1.85361059e-26 + art_sys_59: -1.10305955e-25 + art_sys_60: -3.66442099e-43 + art_sys_61: 1.08795800e-24 + art_sys_62: 2.99808523e-23 + art_sys_63: 1.37111886e-22 + art_sys_64: 4.77718831e-22 + art_sys_65: 1.63180738e-21 + art_sys_66: 1.71392262e-37 + art_sys_67: 1.42181339e-19 + art_sys_68: 1.87062431e-20 + art_sys_69: 5.81375629e-37 + art_sys_70: 2.68765371e-37 + art_sys_71: -4.31091528e-37 + art_sys_72: 3.06812453e-37 + art_sys_73: 3.52034180e-37 + art_sys_74: 3.76139822e-38 art_sys_75: 1.36728215e-18 - art_sys_76: -1.86062489e-15 - art_sys_77: 3.80379500e-15 - art_sys_78: 4.48062736e-15 + art_sys_76: -6.87310915e-15 + art_sys_77: -5.49470958e-15 + art_sys_78: 1.57244141e-14 art_sys_79: 1.06453686e-17 - art_sys_80: 5.16177870e-14 - art_sys_81: 3.70690699e-17 - art_sys_82: 9.05620070e-30 - art_sys_83: 3.15060807e-14 - art_sys_84: -2.01405210e-14 - art_sys_85: 3.03749513e-14 - art_sys_86: -3.36984508e-14 - art_sys_87: -3.63332719e-16 - art_sys_88: 6.94831521e-15 - art_sys_89: -6.44477871e-15 - art_sys_90: -1.39992318e-14 - art_sys_91: -9.49819276e-30 - art_sys_92: -3.52011216e-15 - art_sys_93: -7.29725227e-15 - art_sys_94: 5.17222105e-14 - art_sys_95: 3.89743774e-27 - art_sys_96: -1.42387912e-30 - art_sys_97: 4.12102246e-30 - art_sys_98: 3.36175522e-27 - art_sys_99: 9.19017619e-29 - art_sys_100: 4.58596235e-26 - art_sys_101: 1.57224431e-27 - art_sys_102: 8.25727312e-27 - art_sys_103: 9.80282545e-27 - art_sys_104: -3.40878588e-27 - art_sys_105: 6.40314006e-13 - art_sys_106: -8.92526429e-28 - art_sys_107: -2.11614783e-26 - art_sys_108: -9.04523453e-12 - art_sys_109: 2.44238253e-12 - art_sys_110: 8.75772576e-25 - art_sys_111: -8.99231573e-26 - art_sys_112: -8.84060418e-26 - art_sys_113: -2.44954002e-25 - art_sys_114: -1.17142429e-10 - art_sys_115: 2.79824592e-26 - art_sys_116: 1.49908233e-25 - art_sys_117: 2.57596673e-10 - art_sys_118: -7.77354577e-26 - art_sys_119: 1.37980106e-23 - art_sys_120: 1.14396533e-25 - art_sys_121: 4.10143698e-10 - art_sys_122: -5.96673305e-25 - art_sys_123: 2.02199580e-22 - art_sys_124: 5.43512334e-25 - art_sys_125: -3.05227465e-09 - art_sys_126: -5.94362359e-24 - art_sys_127: -4.07829650e-20 - art_sys_128: 2.66507087e-25 - art_sys_129: -4.29461669e-09 - art_sys_130: 5.57625249e-17 - art_sys_131: 1.02486435e-08 - art_sys_132: -2.00643119e-23 - art_sys_133: 7.40442650e-15 - art_sys_134: -8.18994052e-21 - art_sys_135: 4.56643983e-22 - art_sys_136: -4.67210648e-08 - art_sys_137: 3.25897229e-14 - art_sys_138: -1.11372033e-20 - art_sys_139: -2.51863427e-15 - art_sys_140: -2.83697488e-08 - art_sys_141: 1.61097880e-16 - art_sys_142: -5.31044277e-19 - art_sys_143: 1.58441099e-14 - art_sys_144: 1.77383444e-07 - art_sys_145: 2.03611091e-17 - art_sys_146: 1.92065873e-13 - art_sys_147: 3.49334844e-07 - art_sys_148: 2.09912373e-07 - art_sys_149: -2.93371819e-15 - art_sys_150: 4.99528610e-13 - art_sys_151: 5.46888889e-13 - art_sys_152: 1.15099841e-06 - art_sys_153: 1.00564977e-12 - art_sys_154: -3.75700486e-22 - art_sys_155: 1.24082648e-06 - art_sys_156: -0.0 - art_sys_157: -1.46467519e-12 + art_sys_80: -1.94893958e-30 + art_sys_81: -1.65105081e-14 + art_sys_82: 3.17212098e-14 + art_sys_83: -6.29691305e-15 + art_sys_84: 3.70690699e-17 + art_sys_85: -1.69954167e-14 + art_sys_86: 1.59751732e-14 + art_sys_87: 3.63332719e-16 + art_sys_88: 6.94831522e-15 + art_sys_89: -1.39992318e-14 + art_sys_90: -4.59136425e-30 + art_sys_91: 1.33268095e-28 + art_sys_92: -4.35550275e-30 + art_sys_93: -3.07238912e-28 + art_sys_94: 1.63581246e-30 + art_sys_95: 2.34767015e-30 + art_sys_96: 5.17222108e-14 + art_sys_97: 1.95548664e-29 + art_sys_98: -8.93784244e-31 + art_sys_99: 4.28631208e-31 + art_sys_100: 5.78214464e-28 + art_sys_101: -1.13782994e-29 + art_sys_102: 6.40183575e-13 + art_sys_103: -4.03659730e-27 + art_sys_104: 1.38098162e-28 + art_sys_105: 9.04521441e-12 + art_sys_106: -5.82454681e-28 + art_sys_107: -5.35297162e-28 + art_sys_108: 7.35199914e-27 + art_sys_109: -3.27461569e-28 + art_sys_110: 2.44276978e-12 + art_sys_111: -3.72628823e-28 + art_sys_112: 3.16815228e-25 + art_sys_113: -1.17143402e-10 + art_sys_114: 1.46467116e-26 + art_sys_115: 2.61075641e-26 + art_sys_116: 3.84134338e-27 + art_sys_117: -2.57599350e-10 + art_sys_118: 1.57123900e-26 + art_sys_119: -6.00817116e-23 + art_sys_120: -1.98290150e-27 + art_sys_121: -3.34686230e-25 + art_sys_122: 3.58388701e-25 + art_sys_123: -4.06581869e-20 + art_sys_124: -9.12187289e-27 + art_sys_125: 6.29161840e-24 + art_sys_126: 1.57699605e-22 + art_sys_127: 3.71233321e-21 + art_sys_128: -2.06781490e-17 + art_sys_129: 2.75457678e-16 + art_sys_130: 6.23574106e-15 + art_sys_131: 3.28655951e-14 + art_sys_132: -4.43935037e-19 + art_sys_133: 9.39246671e-17 + art_sys_134: 2.62262414e-13 + art_sys_135: 1.03903110e-16 + art_sys_136: -2.13189850e-12 + art_sys_137: -2.14509640e-15 + art_sys_138: 1.77833047e-12 + art_sys_139: 6.91524598e-13 + art_sys_140: -7.46219475e-23 + art_sys_141: 3.60964510e-13 + art_sys_142: 0.0 + art_sys_143: -5.91675178e-14 + art_sys_144: -3.63262730e-13 + art_sys_145: -4.99399175e-13 + art_sys_146: 4.10134567e-10 + art_sys_147: -3.05224185e-09 + art_sys_148: 4.29430401e-09 + art_sys_149: 1.02486627e-08 + art_sys_150: 4.67351891e-08 + art_sys_151: -2.82936127e-08 + art_sys_152: 1.77659291e-07 + art_sys_153: 3.48760722e-07 + art_sys_154: -1.94157450e-07 + art_sys_155: -1.48171933e-06 + art_sys_156: -1.21762558e-06 + art_sys_157: 6.65147351e-07 art_sys_158: -0.0 - art_sys_159: 1.93621348e-12 - art_sys_160: 7.04701443e-07 - art_sys_161: -1.80866891e-11 - art_sys_162: -1.80866891e-11 - art_sys_163: 2.41716246e-09 - art_sys_164: 2.41716246e-09 - art_sys_165: 3.66050113e-21 - art_sys_166: -1.89931101e-21 - art_sys_167: -0.0 - art_sys_168: 2.08991448e-15 - art_sys_169: 1.10221452e-15 - art_sys_170: 1.26090625e-15 - art_sys_171: -2.52556195e-16 - art_sys_172: -1.36887249e-16 - art_sys_173: -1.37053723e-16 - art_sys_174: 1.14605466e-17 - art_sys_175: 1.93258013e-17 - art_sys_176: -1.16723955e-17 - art_sys_177: 3.40189676e-18 - art_sys_178: -1.35223243e-18 - art_sys_179: -2.41300955e-19 - art_sys_180: -6.49992269e-20 - art_sys_181: 7.05245691e-18 - art_sys_182: -6.31575400e-19 - art_sys_183: 2.56455758e-19 - art_sys_184: -1.05750302e-19 - art_sys_185: -3.08116041e-20 + art_sys_159: 5.11034051e-12 + art_sys_160: 5.11034051e-12 + art_sys_161: 2.86085874e-08 + art_sys_162: -6.79700918e-21 + art_sys_163: -0.0 + art_sys_164: -2.79392936e-21 + art_sys_165: -2.59391391e-15 + art_sys_166: 2.20236558e-15 + art_sys_167: -3.98372405e-15 + art_sys_168: 1.35870008e-15 + art_sys_169: 6.78022999e-16 + art_sys_170: 8.13955774e-16 + art_sys_171: 1.66248752e-16 + art_sys_172: 8.88208810e-17 + art_sys_173: -8.81895331e-17 + art_sys_174: -1.78276309e-19 + art_sys_175: 8.20624522e-18 + art_sys_176: 6.70536477e-18 + art_sys_177: -4.95737223e-18 + art_sys_178: -2.25292528e-18 + art_sys_179: -1.02293033e-18 + art_sys_180: 3.51791309e-19 + art_sys_181: 1.33137118e-19 + art_sys_182: 7.46358787e-20 + art_sys_183: 2.34530729e-20 + art_sys_184: -8.29978042e-21 + art_sys_185: -4.24681580e-21 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -40726,153 +40726,153 @@ bins: art_sys_36: 0.0 art_sys_37: 0.0 art_sys_38: 0.0 - art_sys_39: 0.0 - art_sys_40: 0.0 - art_sys_41: 0.0 - art_sys_42: 0.0 - art_sys_43: 0.0 - art_sys_44: -3.23653832e-236 - art_sys_45: -1.63229404e-229 - art_sys_46: -1.38807295e-179 - art_sys_47: -7.68531092e-185 - art_sys_48: 4.14309991e-177 - art_sys_49: -3.53503997e-168 - art_sys_50: 1.51567158e-160 - art_sys_51: -6.28874838e-150 - art_sys_52: -6.98707074e-167 - art_sys_53: -2.23149639e-163 - art_sys_54: -2.64034035e-158 - art_sys_55: -6.51055156e-155 - art_sys_56: -1.04993199e-151 - art_sys_57: -3.72174304e-73 - art_sys_58: -1.84418802e-59 - art_sys_59: 7.07680564e-71 - art_sys_60: -8.55627255e-68 - art_sys_61: -3.37299718e-53 - art_sys_62: 9.36286484e-68 - art_sys_63: 1.58154668e-57 - art_sys_64: 3.80909612e-31 - art_sys_65: -1.86010871e-29 - art_sys_66: -1.04737674e-28 - art_sys_67: -6.11669721e-28 - art_sys_68: -3.15066711e-26 - art_sys_69: -2.94781022e-26 - art_sys_70: -1.03498373e-25 - art_sys_71: 3.25068340e-25 - art_sys_72: 2.13326673e-22 - art_sys_73: -3.83623345e-22 - art_sys_74: -2.62728448e-40 + art_sys_39: 1.11952209e-288 + art_sys_40: 7.51728983e-284 + art_sys_41: -1.02641924e-272 + art_sys_42: -2.33838786e-173 + art_sys_43: -2.90850189e-173 + art_sys_44: -1.68575065e-166 + art_sys_45: 2.98738087e-157 + art_sys_46: -7.79738861e-150 + art_sys_47: -6.28336711e-144 + art_sys_48: 6.68779032e-138 + art_sys_49: -2.20366683e-130 + art_sys_50: -1.91991368e-122 + art_sys_51: 1.52863012e-109 + art_sys_52: 7.11045380e-118 + art_sys_53: 5.84648855e-120 + art_sys_54: -6.16780955e-111 + art_sys_55: -2.76141903e-108 + art_sys_56: 1.65817030e-105 + art_sys_57: 3.80909612e-31 + art_sys_58: -1.86010871e-29 + art_sys_59: -1.04737674e-28 + art_sys_60: -1.66775983e-46 + art_sys_61: 6.11669721e-28 + art_sys_62: 3.15066711e-26 + art_sys_63: -2.94781022e-26 + art_sys_64: 1.03498373e-25 + art_sys_65: 3.25068340e-25 + art_sys_66: 2.60696625e-40 + art_sys_67: 2.13326673e-22 + art_sys_68: 3.83623345e-22 + art_sys_69: 2.18420689e-39 + art_sys_70: -1.14659196e-39 + art_sys_71: -9.75293204e-40 + art_sys_72: 5.70499644e-40 + art_sys_73: 2.87270247e-40 + art_sys_74: 1.44316320e-40 art_sys_75: -2.28059340e-21 - art_sys_76: -4.10201080e-15 - art_sys_77: -2.82901401e-15 - art_sys_78: 2.56053730e-15 + art_sys_76: 8.99889159e-15 + art_sys_77: 1.77776288e-14 + art_sys_78: 2.86203018e-15 art_sys_79: -8.74768233e-22 - art_sys_80: 2.44296120e-15 - art_sys_81: -5.21314259e-20 - art_sys_82: -1.27500950e-32 - art_sys_83: -8.44346836e-15 - art_sys_84: 5.57418721e-15 - art_sys_85: -5.73837798e-15 - art_sys_86: 4.48201302e-15 - art_sys_87: 1.85205421e-19 - art_sys_88: 9.30766121e-18 - art_sys_89: -3.16853804e-15 - art_sys_90: -2.37463829e-17 - art_sys_91: 3.72933508e-33 - art_sys_92: -2.05100715e-15 - art_sys_93: -4.84251662e-15 - art_sys_94: 9.09109523e-17 - art_sys_95: 5.64390101e-30 - art_sys_96: 1.70127951e-34 - art_sys_97: 9.52879313e-33 - art_sys_98: -5.75812102e-31 - art_sys_99: -1.04899543e-31 - art_sys_100: -3.19836568e-29 - art_sys_101: -7.32162328e-31 - art_sys_102: 1.15713488e-29 - art_sys_103: -4.05104584e-30 - art_sys_104: -4.46950087e-30 - art_sys_105: -2.65093179e-15 - art_sys_106: -7.18021778e-31 - art_sys_107: -3.34009909e-29 - art_sys_108: -1.30246263e-14 - art_sys_109: 5.40966723e-14 - art_sys_110: 1.48528354e-27 - art_sys_111: -1.21044511e-28 - art_sys_112: -1.32653140e-28 - art_sys_113: -4.03839237e-28 - art_sys_114: -1.13387154e-13 - art_sys_115: 4.26951734e-29 - art_sys_116: 2.43023984e-28 - art_sys_117: 1.00130414e-12 - art_sys_118: -1.18347209e-28 - art_sys_119: 2.40061692e-26 - art_sys_120: -2.66841081e-28 - art_sys_121: -1.17899335e-12 - art_sys_122: -4.99279200e-28 - art_sys_123: 2.93684814e-25 - art_sys_124: 1.57852587e-27 - art_sys_125: -9.30599659e-12 - art_sys_126: -5.89902574e-26 - art_sys_127: 3.05166093e-22 - art_sys_128: 7.29958861e-28 - art_sys_129: -4.31865025e-11 - art_sys_130: 6.48208578e-20 - art_sys_131: 9.09643005e-13 - art_sys_132: -4.42148936e-26 - art_sys_133: 2.09261786e-17 - art_sys_134: -2.46101944e-23 - art_sys_135: 1.26725876e-24 - art_sys_136: -6.74018658e-10 - art_sys_137: 9.77399803e-17 - art_sys_138: -2.63548533e-23 - art_sys_139: 6.22672418e-18 - art_sys_140: -2.67306662e-09 - art_sys_141: 5.14738747e-19 - art_sys_142: -1.57509334e-21 - art_sys_143: 4.50926573e-17 - art_sys_144: -1.04070311e-09 - art_sys_145: 1.46044332e-19 - art_sys_146: 8.41411621e-16 - art_sys_147: 2.58209046e-08 - art_sys_148: -1.02896036e-07 - art_sys_149: -5.29992602e-16 - art_sys_150: 9.58619367e-14 - art_sys_151: 4.62250762e-13 - art_sys_152: -2.23973260e-07 - art_sys_153: -3.74560757e-13 - art_sys_154: -2.69154060e-23 - art_sys_155: 2.76426827e-08 - art_sys_156: 0.0 - art_sys_157: -4.94103607e-13 + art_sys_80: 3.71919737e-33 + art_sys_81: 1.74847737e-14 + art_sys_82: -1.62933505e-14 + art_sys_83: 8.73032223e-15 + art_sys_84: -5.21314259e-20 + art_sys_85: 1.29107986e-14 + art_sys_86: -1.41723217e-14 + art_sys_87: -1.85205421e-19 + art_sys_88: 9.30766122e-18 + art_sys_89: -2.37463829e-17 + art_sys_90: -2.69256679e-34 + art_sys_91: -1.86643161e-31 + art_sys_92: 4.16496032e-33 + art_sys_93: 4.31789659e-31 + art_sys_94: -2.47233284e-33 + art_sys_95: 5.45824741e-34 + art_sys_96: 9.09109528e-17 + art_sys_97: 2.76450320e-32 + art_sys_98: -5.21534698e-33 + art_sys_99: -4.73238903e-33 + art_sys_100: 6.72096405e-31 + art_sys_101: -1.67995440e-32 + art_sys_102: -2.65111845e-15 + art_sys_103: 2.68744249e-30 + art_sys_104: 4.37327601e-31 + art_sys_105: 1.30246354e-14 + art_sys_106: 5.75251118e-31 + art_sys_107: 1.72263478e-30 + art_sys_108: 1.60660269e-29 + art_sys_109: -2.87651678e-30 + art_sys_110: 5.40969578e-14 + art_sys_111: -4.04320177e-31 + art_sys_112: 5.22053160e-28 + art_sys_113: -1.13391054e-13 + art_sys_114: 1.32159935e-29 + art_sys_115: 5.19861215e-29 + art_sys_116: 1.80885551e-29 + art_sys_117: -1.00129879e-12 + art_sys_118: 5.10915398e-29 + art_sys_119: -1.15027142e-25 + art_sys_120: -1.17949777e-29 + art_sys_121: 3.36694369e-28 + art_sys_122: 1.16703650e-27 + art_sys_123: -3.58020644e-22 + art_sys_124: -5.99972550e-29 + art_sys_125: 1.65340119e-26 + art_sys_126: 5.12908008e-25 + art_sys_127: 3.57555482e-24 + art_sys_128: -5.86860648e-20 + art_sys_129: 1.21231383e-18 + art_sys_130: 1.35398852e-17 + art_sys_131: 3.01016746e-17 + art_sys_132: -2.79815311e-22 + art_sys_133: 6.64102923e-20 + art_sys_134: 1.52647096e-16 + art_sys_135: 5.07409704e-20 + art_sys_136: -1.05522711e-15 + art_sys_137: -6.76880851e-19 + art_sys_138: 9.73596415e-17 + art_sys_139: 7.54558116e-14 + art_sys_140: 5.02298121e-25 + art_sys_141: -2.73847122e-14 + art_sys_142: -0.0 + art_sys_143: -3.51175917e-14 + art_sys_144: -1.93044877e-13 + art_sys_145: 4.14618413e-14 + art_sys_146: -1.17902122e-12 + art_sys_147: -9.30590363e-12 + art_sys_148: 4.31866809e-11 + art_sys_149: 9.09689063e-13 + art_sys_150: 6.74623244e-10 + art_sys_151: -2.67301573e-09 + art_sys_152: -1.04842257e-09 + art_sys_153: 2.57449669e-08 + art_sys_154: 1.05685469e-07 + art_sys_155: 1.95406141e-07 + art_sys_156: -1.96783288e-07 + art_sys_157: 6.19332540e-07 art_sys_158: 0.0 - art_sys_159: -5.82304753e-12 - art_sys_160: 3.82650404e-07 - art_sys_161: -1.92814650e-11 - art_sys_162: -1.92814650e-11 - art_sys_163: 6.43393901e-08 - art_sys_164: 6.43393901e-08 - art_sys_165: -5.10680084e-21 - art_sys_166: 2.52786574e-21 - art_sys_167: 0.0 - art_sys_168: 1.71614580e-15 - art_sys_169: 9.21798158e-16 - art_sys_170: 1.10509202e-15 - art_sys_171: -2.29972913e-16 - art_sys_172: -1.31603501e-16 - art_sys_173: -1.12571582e-16 - art_sys_174: 1.25019933e-17 - art_sys_175: 5.81593324e-18 - art_sys_176: -2.05832196e-18 - art_sys_177: 8.96977771e-19 - art_sys_178: -1.06734650e-18 - art_sys_179: -7.05169431e-20 - art_sys_180: 4.77371209e-20 - art_sys_181: 4.24666312e-18 - art_sys_182: -3.39243113e-19 - art_sys_183: 1.82768550e-19 - art_sys_184: -3.46735093e-20 - art_sys_185: 6.45838941e-21 + art_sys_159: -3.27831935e-12 + art_sys_160: -3.27831935e-12 + art_sys_161: -2.12358031e-07 + art_sys_162: 4.89351955e-20 + art_sys_163: 0.0 + art_sys_164: 1.97840076e-20 + art_sys_165: 4.70637266e-16 + art_sys_166: -2.56741226e-16 + art_sys_167: -1.91294127e-17 + art_sys_168: 2.62494865e-16 + art_sys_169: 1.49004385e-16 + art_sys_170: 2.02389375e-16 + art_sys_171: 4.72738360e-17 + art_sys_172: 1.60992372e-17 + art_sys_173: -2.34081347e-17 + art_sys_174: -5.35503863e-20 + art_sys_175: -1.86053138e-18 + art_sys_176: 1.44612518e-18 + art_sys_177: 7.76442379e-19 + art_sys_178: -1.52245832e-18 + art_sys_179: -3.25490334e-19 + art_sys_180: 5.31773564e-19 + art_sys_181: 1.34307725e-19 + art_sys_182: -6.01013899e-21 + art_sys_183: -3.91749088e-21 + art_sys_184: 2.98566739e-21 + art_sys_185: 1.15764784e-20 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -41016,154 +41016,154 @@ bins: art_sys_35: 0.0 art_sys_36: 0.0 art_sys_37: 0.0 - art_sys_38: 0.0 - art_sys_39: 0.0 - art_sys_40: 0.0 - art_sys_41: 0.0 - art_sys_42: 0.0 - art_sys_43: 0.0 - art_sys_44: -5.50997800e-239 - art_sys_45: -2.77886533e-232 - art_sys_46: -1.99519457e-182 - art_sys_47: -1.10467470e-187 - art_sys_48: 5.95522770e-180 - art_sys_49: -5.08121175e-171 - art_sys_50: 2.17860287e-163 - art_sys_51: -9.03934962e-153 - art_sys_52: -1.00431074e-169 - art_sys_53: -3.20751838e-166 - art_sys_54: -3.79518436e-161 - art_sys_55: -9.35816607e-158 - art_sys_56: -1.50915599e-154 - art_sys_57: -5.32938883e-76 - art_sys_58: -2.64080431e-62 - art_sys_59: 1.01337058e-73 - art_sys_60: -1.22522439e-70 - art_sys_61: -4.82999856e-56 - art_sys_62: 1.34075170e-70 - art_sys_63: 2.26471229e-60 - art_sys_64: 5.45447424e-34 - art_sys_65: -4.56269778e-32 - art_sys_66: -2.46717240e-31 - art_sys_67: 4.91848043e-31 - art_sys_68: -6.49182809e-29 - art_sys_69: -8.65467716e-28 - art_sys_70: 1.86437845e-27 - art_sys_71: -7.43743559e-27 - art_sys_72: 5.20483772e-25 - art_sys_73: -2.15165829e-24 - art_sys_74: -4.21880553e-43 + art_sys_38: -3.44331948e-315 + art_sys_39: 2.78212562e-291 + art_sys_40: 1.86812255e-286 + art_sys_41: -2.55075562e-275 + art_sys_42: -3.34847685e-176 + art_sys_43: -4.16485708e-176 + art_sys_44: -2.41392675e-169 + art_sys_45: 4.27780858e-160 + art_sys_46: -1.11655451e-152 + art_sys_47: -8.99752758e-147 + art_sys_48: 9.57664527e-141 + art_sys_49: -3.15556178e-133 + art_sys_50: -2.74923874e-125 + art_sys_51: 2.18893651e-112 + art_sys_52: 1.01818823e-120 + art_sys_53: 8.37193515e-123 + art_sys_54: -8.83205383e-114 + art_sys_55: -3.95424037e-111 + art_sys_56: 2.37443281e-108 + art_sys_57: 5.45447424e-34 + art_sys_58: -4.56269778e-32 + art_sys_59: -2.46717240e-31 + art_sys_60: 1.36451238e-49 + art_sys_61: -4.91848043e-31 + art_sys_62: 6.49182809e-29 + art_sys_63: -8.65467716e-28 + art_sys_64: -1.86437845e-27 + art_sys_65: -7.43743559e-27 + art_sys_66: 6.49735011e-43 + art_sys_67: 5.20483772e-25 + art_sys_68: 2.15165829e-24 + art_sys_69: 9.81424280e-42 + art_sys_70: -8.09578583e-42 + art_sys_71: -3.50283886e-42 + art_sys_72: 1.76827709e-42 + art_sys_73: 8.09182188e-43 + art_sys_74: 8.42384887e-43 art_sys_75: -2.30580093e-23 - art_sys_76: 1.10544832e-14 - art_sys_77: 1.49964250e-15 - art_sys_78: 5.74057670e-16 + art_sys_76: 3.70010919e-17 + art_sys_77: -8.34787200e-15 + art_sys_78: -1.43651687e-14 art_sys_79: 3.33328364e-23 - art_sys_80: -2.87116441e-14 - art_sys_81: -2.95882213e-22 - art_sys_82: -7.55565512e-35 - art_sys_83: 3.78232254e-15 - art_sys_84: 2.83250497e-15 - art_sys_85: 1.79339083e-15 - art_sys_86: -3.00024410e-15 - art_sys_87: 1.14805924e-21 + art_sys_80: 2.73116324e-35 + art_sys_81: 2.93438292e-14 + art_sys_82: -7.79529495e-15 + art_sys_83: -9.30189555e-16 + art_sys_84: -2.95882213e-22 + art_sys_85: -4.97105229e-16 + art_sys_86: 1.52215321e-15 + art_sys_87: -1.14805924e-21 art_sys_88: 4.03433081e-20 - art_sys_89: -2.80851979e-15 - art_sys_90: -9.24222294e-20 - art_sys_91: -3.92496271e-34 - art_sys_92: -1.59978202e-15 - art_sys_93: -3.97251435e-15 - art_sys_94: -6.76270759e-20 - art_sys_95: 2.47031741e-32 - art_sys_96: 1.21672870e-33 - art_sys_97: 3.67442482e-33 - art_sys_98: -9.15577351e-33 - art_sys_99: -1.76830087e-33 - art_sys_100: -1.84802273e-31 - art_sys_101: -6.00303816e-33 - art_sys_102: 5.05659667e-32 - art_sys_103: -2.69094404e-32 - art_sys_104: -1.70195276e-32 - art_sys_105: -3.00087347e-17 - art_sys_106: 4.05746740e-33 - art_sys_107: -1.01025809e-31 - art_sys_108: 3.54746384e-16 - art_sys_109: -2.41201731e-16 - art_sys_110: 5.86038216e-30 - art_sys_111: -5.72873551e-31 - art_sys_112: -6.20901449e-31 - art_sys_113: -1.52476949e-30 - art_sys_114: 1.16793005e-14 - art_sys_115: -1.84872790e-30 - art_sys_116: -8.29778397e-30 - art_sys_117: -5.37036360e-14 - art_sys_118: 1.70888740e-30 - art_sys_119: -1.09464344e-29 - art_sys_120: -8.74188470e-30 - art_sys_121: -8.22152093e-15 - art_sys_122: -4.33214878e-30 - art_sys_123: 8.30781053e-27 - art_sys_124: -1.84987201e-28 - art_sys_125: 1.06604785e-12 - art_sys_126: 9.77503568e-28 - art_sys_127: -3.62967739e-23 - art_sys_128: 9.63023625e-29 - art_sys_129: 4.21900653e-12 - art_sys_130: -4.57304694e-21 - art_sys_131: -2.97060070e-12 - art_sys_132: 5.29240958e-28 - art_sys_133: -2.56481746e-18 - art_sys_134: 2.92320259e-24 - art_sys_135: -1.53064095e-25 - art_sys_136: 9.28219759e-11 - art_sys_137: -1.12507080e-17 - art_sys_138: 3.40239240e-24 - art_sys_139: -4.04839322e-20 - art_sys_140: 3.64711587e-10 - art_sys_141: -5.89981616e-20 - art_sys_142: 1.89319652e-22 - art_sys_143: -5.84952852e-18 - art_sys_144: 1.34919042e-10 - art_sys_145: -2.62933660e-20 - art_sys_146: -1.68349835e-16 - art_sys_147: -3.19634830e-09 - art_sys_148: 1.09113478e-07 - art_sys_149: 6.65095680e-17 - art_sys_150: -1.20047636e-14 - art_sys_151: -3.83848739e-14 - art_sys_152: -7.75280482e-08 - art_sys_153: 4.81174824e-15 - art_sys_154: 3.71381801e-23 - art_sys_155: 2.32077282e-07 - art_sys_156: 0.0 - art_sys_157: -2.21295051e-13 - art_sys_158: 0.0 - art_sys_159: -5.85638878e-12 - art_sys_160: 2.37744496e-07 - art_sys_161: -1.88166711e-10 - art_sys_162: -1.88166711e-10 - art_sys_163: 1.32787558e-07 - art_sys_164: 1.32787558e-07 - art_sys_165: 8.96151617e-21 - art_sys_166: -4.86657483e-21 - art_sys_167: -0.0 - art_sys_168: 1.25818505e-15 - art_sys_169: 7.39434092e-16 - art_sys_170: 8.92799174e-16 - art_sys_171: -1.87981813e-16 - art_sys_172: -1.11259554e-16 - art_sys_173: -1.15457375e-16 - art_sys_174: 1.67409326e-17 - art_sys_175: 1.28999241e-17 - art_sys_176: -9.37481612e-18 - art_sys_177: 2.16962897e-18 - art_sys_178: -7.50830759e-19 - art_sys_179: -9.24582163e-20 - art_sys_180: -5.79435659e-20 - art_sys_181: 4.55601634e-18 - art_sys_182: -3.83755290e-19 - art_sys_183: 1.56673745e-19 - art_sys_184: -6.60161450e-20 - art_sys_185: -2.18638424e-20 + art_sys_89: -9.24222293e-20 + art_sys_90: 3.28586899e-34 + art_sys_91: -1.01696976e-33 + art_sys_92: 1.60209680e-34 + art_sys_93: 2.71114776e-33 + art_sys_94: -2.63437104e-35 + art_sys_95: 2.78986113e-34 + art_sys_96: -6.76270762e-20 + art_sys_97: 6.25243940e-35 + art_sys_98: -1.16320067e-34 + art_sys_99: 8.64059478e-35 + art_sys_100: 2.23011994e-33 + art_sys_101: -3.13653455e-35 + art_sys_102: -3.00036195e-17 + art_sys_103: 1.72781641e-32 + art_sys_104: 3.11076572e-33 + art_sys_105: -3.54745852e-16 + art_sys_106: 1.80016682e-32 + art_sys_107: 3.35943032e-33 + art_sys_108: -3.08384087e-32 + art_sys_109: 1.68587759e-32 + art_sys_110: -2.41238242e-16 + art_sys_111: 1.22936305e-32 + art_sys_112: 1.84694067e-30 + art_sys_113: 1.16795080e-14 + art_sys_114: -1.49302040e-30 + art_sys_115: 8.39079349e-31 + art_sys_116: -4.50728919e-31 + art_sys_117: 5.37037295e-14 + art_sys_118: -2.87202010e-30 + art_sys_119: 3.10197104e-27 + art_sys_120: 5.06954754e-31 + art_sys_121: -2.70722910e-28 + art_sys_122: -1.90368055e-29 + art_sys_123: 3.85985637e-23 + art_sys_124: 4.00641081e-29 + art_sys_125: -2.78309676e-27 + art_sys_126: -5.78487966e-26 + art_sys_127: -1.35805954e-24 + art_sys_128: 3.48119398e-21 + art_sys_129: -9.71982997e-20 + art_sys_130: -2.51157237e-18 + art_sys_131: -1.20441156e-17 + art_sys_132: 1.55020721e-22 + art_sys_133: -3.33149994e-20 + art_sys_134: -9.06064061e-17 + art_sys_135: -3.49959005e-20 + art_sys_136: 7.19515104e-16 + art_sys_137: 6.80380353e-19 + art_sys_138: -5.12968492e-16 + art_sys_139: -5.48566618e-15 + art_sys_140: 1.40023242e-23 + art_sys_141: -1.18163408e-13 + art_sys_142: 0.0 + art_sys_143: 8.32129855e-14 + art_sys_144: 4.32043823e-13 + art_sys_145: 2.09591873e-14 + art_sys_146: -8.21811626e-15 + art_sys_147: 1.06603700e-12 + art_sys_148: -4.21892822e-12 + art_sys_149: -2.97060831e-12 + art_sys_150: -9.29046633e-11 + art_sys_151: 3.64701629e-10 + art_sys_152: 1.36147241e-10 + art_sys_153: -3.87262459e-09 + art_sys_154: 1.51661399e-08 + art_sys_155: -7.40198274e-08 + art_sys_156: 4.02039528e-07 + art_sys_157: -6.86338056e-07 + art_sys_158: -0.0 + art_sys_159: 1.56748602e-11 + art_sys_160: 1.56748602e-11 + art_sys_161: -8.70301405e-08 + art_sys_162: 2.03761497e-20 + art_sys_163: 0.0 + art_sys_164: 8.31234386e-21 + art_sys_165: 4.03527152e-18 + art_sys_166: -1.03362690e-15 + art_sys_167: 7.06023582e-16 + art_sys_168: -3.79054521e-16 + art_sys_169: -3.80781766e-17 + art_sys_170: -5.63020457e-17 + art_sys_171: -8.20271075e-19 + art_sys_172: 9.42536067e-18 + art_sys_173: -7.45559121e-18 + art_sys_174: 1.37811420e-19 + art_sys_175: 5.51939033e-18 + art_sys_176: 3.16277324e-18 + art_sys_177: -7.74900681e-19 + art_sys_178: -4.47999131e-19 + art_sys_179: 1.50416461e-19 + art_sys_180: -1.64768379e-19 + art_sys_181: -1.03114697e-19 + art_sys_182: -7.79544651e-20 + art_sys_183: -3.25457424e-20 + art_sys_184: 1.35105110e-20 + art_sys_185: 8.17951377e-21 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -43953,127 +43953,127 @@ bins: art_sys_62: 0.0 art_sys_63: 0.0 art_sys_64: 0.0 - art_sys_65: 0.0 - art_sys_66: 0.0 - art_sys_67: 0.0 - art_sys_68: 0.0 - art_sys_69: 0.0 - art_sys_70: 0.0 - art_sys_71: 0.0 - art_sys_72: 1.55472742e-188 - art_sys_73: -9.63676516e-180 - art_sys_74: -3.00403639e-181 - art_sys_75: -1.47554440e-65 - art_sys_76: -1.79211144e+02 + art_sys_65: -7.86983674e-250 + art_sys_66: -2.42345969e-174 + art_sys_67: -6.52276146e-132 + art_sys_68: -1.82324534e-121 + art_sys_69: 3.44933470e-129 + art_sys_70: -1.71947994e-127 + art_sys_71: -1.76125016e-121 + art_sys_72: 6.67226755e-109 + art_sys_73: -4.34496723e-97 + art_sys_74: -2.56938469e-99 + art_sys_75: -1.20951425e-27 + art_sys_76: 1.79211144e+02 art_sys_77: 3.83863567e+01 art_sys_78: 1.36807570e+01 - art_sys_79: -1.28670842e-17 - art_sys_80: -2.26473660e+00 - art_sys_81: 4.00973278e-18 - art_sys_82: -1.39205744e-19 - art_sys_83: -3.64301698e-02 - art_sys_84: 1.13971321e-02 + art_sys_79: 9.08663177e-19 + art_sys_80: -1.06708704e-19 + art_sys_81: -2.26473660e+00 + art_sys_82: 3.64301698e-02 + art_sys_83: -1.13971321e-02 + art_sys_84: 2.03210210e-18 art_sys_85: -6.14263486e-03 art_sys_86: 1.49833498e-03 - art_sys_87: -1.67591942e-19 - art_sys_88: -4.32451501e-20 - art_sys_89: 3.23104452e-06 - art_sys_90: -2.75639663e-19 - art_sys_91: 1.82663129e-20 - art_sys_92: 5.81535322e-07 - art_sys_93: 5.44945876e-07 - art_sys_94: 3.53252269e-20 - art_sys_95: 2.74646926e-20 - art_sys_96: -9.96519529e-20 - art_sys_97: -6.77831678e-20 - art_sys_98: 7.40029331e-21 - art_sys_99: -1.24709142e-19 - art_sys_100: 8.04397652e-20 - art_sys_101: -1.68411460e-20 - art_sys_102: 3.32202332e-20 - art_sys_103: 1.65802585e-20 - art_sys_104: 3.65197410e-20 - art_sys_105: 1.08356579e-19 - art_sys_106: 9.28937680e-21 - art_sys_107: 1.47503349e-20 - art_sys_108: -3.15424594e-20 - art_sys_109: 4.17451967e-20 - art_sys_110: -2.72326738e-21 - art_sys_111: 7.33444208e-21 - art_sys_112: 1.30811447e-20 - art_sys_113: 7.93440801e-22 - art_sys_114: -5.14153583e-21 - art_sys_115: -2.00083417e-23 - art_sys_116: 9.81960388e-21 - art_sys_117: 9.84654194e-21 - art_sys_118: 1.54509821e-21 - art_sys_119: 8.97057970e-21 - art_sys_120: 1.41886219e-21 - art_sys_121: -1.28682867e-21 - art_sys_122: -5.06138974e-21 - art_sys_123: -5.72424204e-22 - art_sys_124: -8.52003374e-21 - art_sys_125: -3.18386295e-21 - art_sys_126: -5.25657619e-21 - art_sys_127: -4.99429475e-21 - art_sys_128: 3.27113567e-21 - art_sys_129: 7.09941697e-22 - art_sys_130: -3.85260288e-21 - art_sys_131: -1.50648377e-21 - art_sys_132: 3.66228828e-23 - art_sys_133: -3.80816400e-22 - art_sys_134: 9.14282173e-23 - art_sys_135: -5.77012924e-21 - art_sys_136: 2.82768313e-21 - art_sys_137: -4.89602468e-22 - art_sys_138: 4.20303073e-22 - art_sys_139: -2.84979287e-22 - art_sys_140: -2.63152436e-21 - art_sys_141: -1.92631722e-23 - art_sys_142: -1.32304895e-22 - art_sys_143: 2.85060348e-22 - art_sys_144: 3.24909423e-21 - art_sys_145: 7.27402119e-22 - art_sys_146: 1.02335016e-21 - art_sys_147: -8.96294935e-22 - art_sys_148: 4.73683160e-21 - art_sys_149: -8.91585750e-23 - art_sys_150: -1.21739239e-22 - art_sys_151: 2.54838681e-22 - art_sys_152: -2.17515259e-21 - art_sys_153: -4.79495833e-24 - art_sys_154: 1.33851569e-23 - art_sys_155: -3.93282631e-22 - art_sys_156: 0.0 - art_sys_157: 1.58889476e-23 - art_sys_158: 0.0 - art_sys_159: -4.36991253e-23 - art_sys_160: -4.61196370e-22 - art_sys_161: 6.13483853e-24 - art_sys_162: 6.13483853e-24 - art_sys_163: -4.39911602e-23 - art_sys_164: -4.39911602e-23 - art_sys_165: -3.30885453e-26 - art_sys_166: -2.70659867e-27 - art_sys_167: -0.0 - art_sys_168: -7.53591434e-09 - art_sys_169: -5.64255371e-09 - art_sys_170: -1.61016227e-09 - art_sys_171: 5.33931568e-11 + art_sys_87: -4.93078217e-19 + art_sys_88: 5.14266017e-19 + art_sys_89: -1.58461629e-19 + art_sys_90: -5.09376508e-20 + art_sys_91: -5.09984153e-20 + art_sys_92: -6.55047316e-20 + art_sys_93: -1.26223327e-20 + art_sys_94: 6.19444351e-20 + art_sys_95: -2.39348795e-21 + art_sys_96: 3.68218429e-20 + art_sys_97: -3.59391381e-20 + art_sys_98: 1.01620645e-20 + art_sys_99: -3.03094027e-21 + art_sys_100: 4.45344551e-22 + art_sys_101: -2.85560234e-21 + art_sys_102: 1.23194768e-19 + art_sys_103: 2.64587480e-20 + art_sys_104: 2.32603644e-20 + art_sys_105: 6.33665268e-20 + art_sys_106: 9.64601424e-21 + art_sys_107: -2.85005259e-20 + art_sys_108: -1.75716701e-20 + art_sys_109: -7.08426991e-21 + art_sys_110: 4.00581182e-21 + art_sys_111: -6.69186097e-21 + art_sys_112: 2.44926490e-20 + art_sys_113: 1.06096645e-20 + art_sys_114: 8.53931465e-21 + art_sys_115: 4.71373027e-21 + art_sys_116: -5.85685774e-21 + art_sys_117: 9.03610230e-21 + art_sys_118: -2.04433214e-21 + art_sys_119: 4.21883296e-21 + art_sys_120: -5.98386314e-21 + art_sys_121: 2.84033721e-21 + art_sys_122: 3.04628458e-21 + art_sys_123: 1.36200837e-20 + art_sys_124: 8.57866390e-21 + art_sys_125: -9.76965900e-22 + art_sys_126: -2.00628061e-21 + art_sys_127: -5.24093201e-22 + art_sys_128: 5.09052840e-21 + art_sys_129: -2.51241246e-22 + art_sys_130: 9.67242980e-22 + art_sys_131: 3.98683530e-22 + art_sys_132: -3.44440083e-23 + art_sys_133: 8.98696825e-22 + art_sys_134: 6.71341130e-22 + art_sys_135: -1.09367501e-21 + art_sys_136: -4.56132741e-22 + art_sys_137: -2.64623227e-22 + art_sys_138: -1.59372942e-22 + art_sys_139: 3.15906609e-22 + art_sys_140: 1.17399526e-22 + art_sys_141: 2.13915030e-22 + art_sys_142: -0.0 + art_sys_143: -8.04018856e-23 + art_sys_144: -1.34276114e-22 + art_sys_145: -1.41751172e-22 + art_sys_146: 9.23484385e-21 + art_sys_147: -5.57663258e-21 + art_sys_148: 2.35144319e-21 + art_sys_149: 4.52650926e-21 + art_sys_150: 6.18219025e-22 + art_sys_151: 9.19331087e-22 + art_sys_152: -1.31760019e-21 + art_sys_153: -1.22045618e-21 + art_sys_154: -8.80236267e-22 + art_sys_155: -5.12220668e-22 + art_sys_156: -6.70666371e-22 + art_sys_157: 6.16188104e-22 + art_sys_158: -0.0 + art_sys_159: 2.44487559e-24 + art_sys_160: 2.44487559e-24 + art_sys_161: -3.61445140e-23 + art_sys_162: -3.30910606e-26 + art_sys_163: 0.0 + art_sys_164: 2.70628237e-27 + art_sys_165: -3.23104452e-06 + art_sys_166: 5.81535322e-07 + art_sys_167: -5.44945876e-07 + art_sys_168: 7.53591434e-09 + art_sys_169: 5.64255371e-09 + art_sys_170: 1.61016227e-09 + art_sys_171: 5.33931569e-11 art_sys_172: 1.80782662e-11 - art_sys_173: 5.37550729e-12 - art_sys_174: -3.13593714e-14 - art_sys_175: -6.46715461e-15 - art_sys_176: 2.50869041e-15 - art_sys_177: -1.19105751e-16 - art_sys_178: 2.90756311e-17 - art_sys_179: 3.37793392e-22 - art_sys_180: 2.84771342e-24 - art_sys_181: -7.90074157e-16 - art_sys_182: 4.54755228e-18 - art_sys_183: -6.91830178e-19 - art_sys_184: 1.24257570e-19 - art_sys_185: 1.08623450e-20 + art_sys_173: -5.37550729e-12 + art_sys_174: -3.37793392e-22 + art_sys_175: 3.13593883e-14 + art_sys_176: 6.46715709e-15 + art_sys_177: -2.50869062e-15 + art_sys_178: -7.90074090e-16 + art_sys_179: -1.19106491e-16 + art_sys_180: 2.90755296e-17 + art_sys_181: 4.54871371e-18 + art_sys_182: 6.91794462e-19 + art_sys_183: 1.24257390e-19 + art_sys_184: -1.08623457e-20 + art_sys_185: 2.84771342e-24 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -44244,127 +44244,127 @@ bins: art_sys_62: 0.0 art_sys_63: 0.0 art_sys_64: 0.0 - art_sys_65: 0.0 - art_sys_66: 0.0 - art_sys_67: 0.0 - art_sys_68: 0.0 - art_sys_69: 0.0 - art_sys_70: 0.0 - art_sys_71: 0.0 - art_sys_72: 8.44247689e-189 - art_sys_73: -5.23295376e-180 - art_sys_74: -1.63125108e-181 - art_sys_75: -8.01250243e-66 - art_sys_76: -9.73152501e+01 + art_sys_65: -4.27346828e-250 + art_sys_66: -1.31598728e-174 + art_sys_67: -3.54199047e-132 + art_sys_68: -9.90058838e-122 + art_sys_69: 1.87305801e-129 + art_sys_70: -9.33712140e-128 + art_sys_71: -9.56394211e-122 + art_sys_72: 3.62317528e-109 + art_sys_73: -2.35940447e-97 + art_sys_74: -1.39522749e-99 + art_sys_75: -6.56790527e-28 + art_sys_76: 9.73152501e+01 art_sys_77: -6.56877066e+01 art_sys_78: -2.29836532e+01 - art_sys_79: -1.75001018e-20 - art_sys_80: 6.21644206e+00 - art_sys_81: -2.93594113e-19 - art_sys_82: 1.31743477e-19 - art_sys_83: 1.14070556e-01 - art_sys_84: -3.64296223e-02 + art_sys_79: -1.58584563e-18 + art_sys_80: 3.45122425e-20 + art_sys_81: 6.21644206e+00 + art_sys_82: -1.14070556e-01 + art_sys_83: 3.64296223e-02 + art_sys_84: -4.52376791e-18 art_sys_85: 2.17062190e-02 art_sys_86: -5.60326851e-03 - art_sys_87: 2.69211777e-19 - art_sys_88: 8.84252054e-20 - art_sys_89: -1.73133584e-05 - art_sys_90: 7.55159889e-19 - art_sys_91: -1.17950000e-19 - art_sys_92: -3.84173046e-06 - art_sys_93: -2.96674061e-06 - art_sys_94: 1.88990619e-19 - art_sys_95: 1.20977909e-19 - art_sys_96: 9.51387139e-20 - art_sys_97: -1.67647467e-20 - art_sys_98: -2.50331841e-20 - art_sys_99: 3.46417173e-20 - art_sys_100: 8.13356875e-20 - art_sys_101: 2.43894197e-20 - art_sys_102: 3.94904740e-20 - art_sys_103: -6.53094959e-21 - art_sys_104: 2.67657604e-20 - art_sys_105: 7.22054399e-20 - art_sys_106: 2.38782388e-20 - art_sys_107: -3.15898887e-20 - art_sys_108: 2.89817581e-20 - art_sys_109: -3.05872977e-20 - art_sys_110: 4.05565479e-20 - art_sys_111: -3.50266941e-20 - art_sys_112: 1.56120980e-20 - art_sys_113: -1.14299902e-20 - art_sys_114: 1.21917543e-20 - art_sys_115: 7.85319696e-21 - art_sys_116: -1.85938017e-20 - art_sys_117: 1.95153978e-20 - art_sys_118: 5.60044390e-21 - art_sys_119: -4.41920684e-21 - art_sys_120: -1.43138408e-21 - art_sys_121: 1.83269982e-21 - art_sys_122: 6.05491500e-21 - art_sys_123: -1.01417884e-20 - art_sys_124: 7.49887725e-21 - art_sys_125: 1.79318081e-21 - art_sys_126: -5.48754588e-21 - art_sys_127: 2.49332893e-22 - art_sys_128: -5.95320437e-21 - art_sys_129: -1.42598422e-21 - art_sys_130: 8.83869911e-21 - art_sys_131: 2.66993875e-21 - art_sys_132: 1.28704029e-21 - art_sys_133: -7.10084263e-21 - art_sys_134: 2.69130064e-22 - art_sys_135: -4.14262494e-21 - art_sys_136: -8.50712164e-22 - art_sys_137: 1.31664249e-21 - art_sys_138: 4.97295384e-22 - art_sys_139: 1.31347374e-21 - art_sys_140: -1.14947459e-21 - art_sys_141: -8.37701242e-22 - art_sys_142: 7.80223584e-22 - art_sys_143: -2.02511400e-21 - art_sys_144: -2.13689359e-21 - art_sys_145: -4.92487727e-22 - art_sys_146: 1.29700888e-21 - art_sys_147: -2.00818884e-21 - art_sys_148: -1.11218536e-20 - art_sys_149: -1.85520275e-22 - art_sys_150: -8.22870278e-23 - art_sys_151: 1.27921800e-22 - art_sys_152: 5.19850758e-21 - art_sys_153: -1.51066026e-22 - art_sys_154: 1.18190031e-22 - art_sys_155: 3.25482161e-22 - art_sys_156: -0.0 - art_sys_157: -1.54540775e-22 - art_sys_158: -0.0 - art_sys_159: -1.30045445e-23 - art_sys_160: 1.00932237e-21 - art_sys_161: 8.29443085e-25 - art_sys_162: 8.29443085e-25 - art_sys_163: 8.01405861e-23 - art_sys_164: 8.01405861e-23 - art_sys_165: 1.67624247e-25 - art_sys_166: 1.40917485e-26 - art_sys_167: 0.0 - art_sys_168: 1.00536705e-07 - art_sys_169: 3.26340826e-08 - art_sys_170: 1.26781678e-08 + art_sys_87: -2.64139901e-18 + art_sys_88: -8.00085835e-19 + art_sys_89: 1.30543906e-19 + art_sys_90: -4.48101643e-20 + art_sys_91: 3.48568629e-20 + art_sys_92: -7.17157735e-20 + art_sys_93: 1.63987249e-21 + art_sys_94: 4.03367375e-20 + art_sys_95: 7.79045318e-20 + art_sys_96: 1.19810944e-20 + art_sys_97: 6.36035105e-20 + art_sys_98: -2.50694722e-20 + art_sys_99: 2.29729535e-20 + art_sys_100: -2.89357488e-20 + art_sys_101: 6.44316377e-21 + art_sys_102: -5.89838399e-20 + art_sys_103: 1.84587146e-20 + art_sys_104: -3.77896577e-20 + art_sys_105: 2.97887649e-20 + art_sys_106: -2.60244401e-20 + art_sys_107: 2.19827923e-20 + art_sys_108: -1.28167813e-20 + art_sys_109: -1.04070413e-20 + art_sys_110: -5.90367471e-20 + art_sys_111: -5.48499437e-21 + art_sys_112: -2.09139516e-20 + art_sys_113: -1.88426089e-20 + art_sys_114: 2.06008700e-21 + art_sys_115: 1.71171621e-20 + art_sys_116: 1.43004280e-20 + art_sys_117: 2.49051428e-21 + art_sys_118: -2.23168296e-22 + art_sys_119: -5.79186892e-21 + art_sys_120: -3.27963199e-21 + art_sys_121: -6.85369077e-22 + art_sys_122: -9.62201044e-22 + art_sys_123: 1.64869465e-20 + art_sys_124: 4.19487779e-22 + art_sys_125: -1.57635811e-21 + art_sys_126: -1.82439961e-21 + art_sys_127: -1.23279965e-21 + art_sys_128: -4.68519062e-21 + art_sys_129: 4.13655586e-21 + art_sys_130: 4.45119811e-22 + art_sys_131: -1.94454627e-22 + art_sys_132: 2.68682784e-21 + art_sys_133: -1.70044953e-21 + art_sys_134: 5.32080867e-22 + art_sys_135: -2.49254057e-22 + art_sys_136: -1.26463622e-21 + art_sys_137: 4.19467717e-22 + art_sys_138: 3.60900197e-22 + art_sys_139: -3.13192240e-22 + art_sys_140: -1.32968536e-22 + art_sys_141: 2.22690995e-23 + art_sys_142: 0.0 + art_sys_143: 1.02217456e-22 + art_sys_144: -6.63513898e-23 + art_sys_145: -6.20738290e-23 + art_sys_146: 7.93851541e-21 + art_sys_147: -9.31507932e-21 + art_sys_148: 2.89112862e-21 + art_sys_149: 1.20506915e-21 + art_sys_150: -2.61820836e-22 + art_sys_151: -1.28517853e-21 + art_sys_152: -2.12153029e-21 + art_sys_153: -5.22963257e-22 + art_sys_154: -3.37281311e-22 + art_sys_155: 1.57320967e-21 + art_sys_156: 1.89855733e-21 + art_sys_157: -1.69607318e-21 + art_sys_158: 0.0 + art_sys_159: 9.34565280e-23 + art_sys_160: 9.34565280e-23 + art_sys_161: 8.73121599e-23 + art_sys_162: 1.67631832e-25 + art_sys_163: -0.0 + art_sys_164: -1.40901060e-26 + art_sys_165: 1.73133584e-05 + art_sys_166: -3.84173046e-06 + art_sys_167: 2.96674061e-06 + art_sys_168: -1.00536705e-07 + art_sys_169: -3.26340826e-08 + art_sys_170: -1.26781678e-08 art_sys_171: -3.89420894e-10 art_sys_172: -1.14734360e-10 - art_sys_173: -3.95916883e-11 - art_sys_174: 1.13766669e-13 - art_sys_175: 3.30507866e-14 - art_sys_176: -1.28728253e-14 - art_sys_177: 6.80927833e-16 - art_sys_178: -1.41410806e-16 - art_sys_179: -1.83312542e-21 - art_sys_180: -1.91403183e-23 - art_sys_181: 3.64597505e-15 - art_sys_182: -2.43941557e-17 - art_sys_183: 3.69687174e-18 - art_sys_184: -6.38879149e-19 - art_sys_185: -5.84571906e-20 + art_sys_173: 3.95916883e-11 + art_sys_174: 1.83312542e-21 + art_sys_175: -1.13766676e-13 + art_sys_176: -3.30507876e-14 + art_sys_177: 1.28728255e-14 + art_sys_178: 3.64597521e-15 + art_sys_179: 6.80932007e-16 + art_sys_180: -1.41410738e-16 + art_sys_181: -2.43951277e-17 + art_sys_182: -3.69697512e-18 + art_sys_183: -6.38879480e-19 + art_sys_184: 5.84571910e-20 + art_sys_185: -1.91403183e-23 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -44535,127 +44535,127 @@ bins: art_sys_62: 0.0 art_sys_63: 0.0 art_sys_64: 0.0 - art_sys_65: 0.0 - art_sys_66: 0.0 - art_sys_67: 0.0 - art_sys_68: 0.0 - art_sys_69: 0.0 - art_sys_70: 0.0 - art_sys_71: 0.0 - art_sys_72: 8.49889814e-190 - art_sys_73: -5.26792570e-181 - art_sys_74: -1.64215276e-182 - art_sys_75: -8.06608408e-67 - art_sys_76: -9.79660221e+00 + art_sys_65: -4.30197040e-251 + art_sys_66: -1.32478762e-175 + art_sys_67: -3.56567667e-133 + art_sys_68: -9.96679615e-123 + art_sys_69: 1.88558363e-130 + art_sys_70: -9.39956112e-129 + art_sys_71: -9.62789864e-123 + art_sys_72: 3.64740438e-110 + art_sys_73: -2.37518241e-98 + art_sys_74: -1.40455773e-100 + art_sys_75: -6.61182653e-29 + art_sys_76: 9.79660221e+00 art_sys_77: -6.54564256e+01 art_sys_78: 2.22022920e+01 - art_sys_79: 2.31926784e-18 - art_sys_80: -9.61246934e+00 - art_sys_81: -4.81967074e-18 - art_sys_82: -4.13748773e-20 - art_sys_83: -3.85474990e-01 - art_sys_84: 9.48794213e-02 + art_sys_79: -3.92561298e-19 + art_sys_80: -6.69598354e-21 + art_sys_81: -9.61246934e+00 + art_sys_82: 3.85474990e-01 + art_sys_83: -9.48794213e-02 + art_sys_84: 5.93018216e-18 art_sys_85: -6.75969295e-02 art_sys_86: 1.81977130e-02 - art_sys_87: -3.06023000e-19 - art_sys_88: -1.00151609e-19 - art_sys_89: 4.96831583e-05 - art_sys_90: -5.41178846e-19 - art_sys_91: 1.98314435e-21 - art_sys_92: 1.53406808e-05 - art_sys_93: 1.03079106e-05 - art_sys_94: 1.16562224e-19 - art_sys_95: -9.65021789e-20 - art_sys_96: -7.63186588e-20 - art_sys_97: 2.17978761e-20 - art_sys_98: 1.33804536e-19 - art_sys_99: 2.79295543e-20 - art_sys_100: 3.73737034e-21 - art_sys_101: -4.64949074e-20 - art_sys_102: 2.33912673e-20 - art_sys_103: -2.17742536e-20 - art_sys_104: 9.60955797e-21 - art_sys_105: -1.93905981e-20 - art_sys_106: -1.51029507e-20 - art_sys_107: 3.52975173e-20 - art_sys_108: 3.98150262e-20 - art_sys_109: -1.24001362e-20 - art_sys_110: 8.93625333e-21 - art_sys_111: 4.27041621e-20 - art_sys_112: 6.63567060e-21 - art_sys_113: 3.03717121e-21 - art_sys_114: 1.07403563e-20 - art_sys_115: 9.22097428e-21 - art_sys_116: 5.74025901e-21 - art_sys_117: -2.51412642e-20 - art_sys_118: 7.14136161e-21 - art_sys_119: 5.19994718e-21 - art_sys_120: 2.75602259e-21 - art_sys_121: -4.61593853e-21 - art_sys_122: 4.59803747e-21 - art_sys_123: 6.51284434e-21 - art_sys_124: -7.99875900e-21 - art_sys_125: 1.28880615e-20 - art_sys_126: -4.57499220e-21 - art_sys_127: -2.63047405e-21 - art_sys_128: -6.38725236e-21 - art_sys_129: -5.56865294e-22 - art_sys_130: -1.59899349e-21 - art_sys_131: 6.24201839e-21 - art_sys_132: -3.42689866e-22 - art_sys_133: -1.82632764e-21 - art_sys_134: 1.59261552e-21 - art_sys_135: -1.64425126e-21 - art_sys_136: 1.07872114e-22 - art_sys_137: 1.97568441e-21 - art_sys_138: -6.59294060e-22 - art_sys_139: -1.37839062e-22 - art_sys_140: -3.34953706e-21 - art_sys_141: 8.30166726e-22 - art_sys_142: -7.87262515e-22 - art_sys_143: 2.53460923e-21 - art_sys_144: -3.19473481e-21 - art_sys_145: -5.10680319e-22 - art_sys_146: -8.75318264e-24 - art_sys_147: -1.99629749e-21 - art_sys_148: 1.66640207e-20 - art_sys_149: -3.82565166e-23 - art_sys_150: 6.97012658e-23 - art_sys_151: 1.86026209e-23 - art_sys_152: -9.17813827e-21 - art_sys_153: -6.62429676e-24 - art_sys_154: -2.07155075e-22 - art_sys_155: 2.24145506e-22 - art_sys_156: -0.0 - art_sys_157: -1.08794865e-22 + art_sys_87: -2.09255196e-18 + art_sys_88: 2.43714325e-19 + art_sys_89: 6.25845360e-19 + art_sys_90: 3.07670072e-21 + art_sys_91: 7.50922115e-21 + art_sys_92: 1.73952663e-20 + art_sys_93: -1.12976435e-19 + art_sys_94: -4.51348310e-21 + art_sys_95: -5.74115037e-20 + art_sys_96: 1.41946733e-20 + art_sys_97: 3.34104277e-20 + art_sys_98: 4.43536263e-20 + art_sys_99: -1.91584364e-20 + art_sys_100: 3.81672369e-20 + art_sys_101: 2.57663127e-21 + art_sys_102: 1.58885200e-21 + art_sys_103: 8.86109846e-21 + art_sys_104: -3.42378649e-20 + art_sys_105: -4.65876792e-20 + art_sys_106: 1.73715276e-21 + art_sys_107: 3.03422601e-20 + art_sys_108: 1.81714358e-21 + art_sys_109: -6.19240905e-21 + art_sys_110: 5.16623332e-20 + art_sys_111: -2.62309540e-21 + art_sys_112: 2.72405034e-20 + art_sys_113: 1.00983178e-20 + art_sys_114: -2.68987171e-21 + art_sys_115: -1.56128333e-20 + art_sys_116: -4.54502510e-21 + art_sys_117: 1.77938260e-20 + art_sys_118: 3.99161745e-21 + art_sys_119: 1.03345112e-20 + art_sys_120: -9.91780215e-23 + art_sys_121: -7.86531551e-21 + art_sys_122: 5.12424039e-21 + art_sys_123: -7.89229859e-21 + art_sys_124: 2.56092259e-21 + art_sys_125: 8.12654802e-22 + art_sys_126: 3.60981444e-21 + art_sys_127: -1.66121479e-21 + art_sys_128: 3.95831416e-21 + art_sys_129: -3.16558040e-21 + art_sys_130: -1.34077278e-21 + art_sys_131: -1.23331049e-21 + art_sys_132: 1.52738698e-22 + art_sys_133: 2.45686813e-21 + art_sys_134: 1.05253717e-21 + art_sys_135: -2.47684505e-22 + art_sys_136: -6.80531222e-23 + art_sys_137: -4.29164837e-22 + art_sys_138: 1.70364582e-22 + art_sys_139: -4.17758794e-22 + art_sys_140: -1.65119598e-22 + art_sys_141: 1.35827413e-22 + art_sys_142: 0.0 + art_sys_143: 1.57478533e-22 + art_sys_144: -9.78218562e-24 + art_sys_145: -1.08817122e-22 + art_sys_146: 2.54262994e-20 + art_sys_147: -5.30408701e-21 + art_sys_148: 1.32624567e-20 + art_sys_149: -7.74552156e-21 + art_sys_150: 4.65890196e-22 + art_sys_151: -1.08580957e-22 + art_sys_152: -9.26477833e-22 + art_sys_153: -1.05883910e-21 + art_sys_154: -2.86916021e-21 + art_sys_155: -3.47395017e-21 + art_sys_156: -3.12036256e-21 + art_sys_157: 2.73608498e-21 art_sys_158: -0.0 - art_sys_159: -5.51424009e-24 - art_sys_160: -1.55426149e-21 - art_sys_161: 2.02396791e-23 - art_sys_162: 2.02396791e-23 - art_sys_163: -1.18635282e-22 - art_sys_164: -1.18635282e-22 - art_sys_165: -6.93381563e-25 - art_sys_166: -5.81034158e-26 - art_sys_167: -0.0 - art_sys_168: -3.85313393e-07 - art_sys_169: -1.28012802e-07 - art_sys_170: -4.82793484e-08 + art_sys_159: 1.21556149e-22 + art_sys_160: 1.21556149e-22 + art_sys_161: -1.30530094e-22 + art_sys_162: -6.93403754e-25 + art_sys_163: 0.0 + art_sys_164: 5.80988200e-26 + art_sys_165: -4.96831583e-05 + art_sys_166: 1.53406808e-05 + art_sys_167: -1.03079106e-05 + art_sys_168: 3.85313393e-07 + art_sys_169: 1.28012802e-07 + art_sys_170: 4.82793484e-08 art_sys_171: 1.75598667e-09 art_sys_172: 4.47802284e-10 - art_sys_173: 1.65565254e-10 - art_sys_174: -5.72967453e-13 - art_sys_175: -1.15487229e-13 - art_sys_176: 5.93919167e-14 - art_sys_177: -2.88961712e-15 - art_sys_178: 5.99282368e-16 - art_sys_179: 7.61066617e-21 - art_sys_180: 7.14652547e-23 - art_sys_181: -1.45570738e-14 - art_sys_182: 9.95641545e-17 - art_sys_183: -1.57405855e-17 - art_sys_184: 2.64478104e-18 - art_sys_185: 2.51045321e-19 + art_sys_173: -1.65565254e-10 + art_sys_174: -7.61066617e-21 + art_sys_175: 5.72967471e-13 + art_sys_176: 1.15487232e-13 + art_sys_177: -5.93919170e-14 + art_sys_178: -1.45570732e-14 + art_sys_179: -2.88961814e-15 + art_sys_180: 5.99282568e-16 + art_sys_181: 9.95631900e-17 + art_sys_182: 1.57405824e-17 + art_sys_183: 2.64478070e-18 + art_sys_184: -2.51045319e-19 + art_sys_185: 7.14652547e-23 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -44826,127 +44826,127 @@ bins: art_sys_62: 0.0 art_sys_63: 0.0 art_sys_64: 0.0 - art_sys_65: 0.0 - art_sys_66: 0.0 - art_sys_67: 0.0 - art_sys_68: 0.0 - art_sys_69: 0.0 - art_sys_70: 0.0 - art_sys_71: 0.0 - art_sys_72: -9.31473905e-190 - art_sys_73: 5.77361353e-181 - art_sys_74: 1.79978913e-182 - art_sys_75: 8.84032779e-67 - art_sys_76: 1.07369541e+01 + art_sys_65: 4.71501700e-251 + art_sys_66: 1.45195075e-175 + art_sys_67: 3.90793726e-133 + art_sys_68: 1.09234846e-122 + art_sys_69: -2.06657620e-130 + art_sys_70: 1.03018020e-128 + art_sys_71: 1.05520571e-122 + art_sys_72: -3.99750982e-110 + art_sys_73: 2.60317036e-98 + art_sys_74: 1.53937780e-100 + art_sys_75: 7.24647961e-29 + art_sys_76: -1.07369541e+01 art_sys_77: -1.45718422e+01 art_sys_78: 4.00754141e+01 - art_sys_79: -1.12089726e-18 - art_sys_80: 9.54766392e+00 - art_sys_81: 2.00501301e-18 - art_sys_82: -1.56024322e-19 - art_sys_83: 3.48278746e-01 - art_sys_84: -2.07018675e-01 + art_sys_79: 8.31993657e-19 + art_sys_80: -7.66118846e-20 + art_sys_81: 9.54766392e+00 + art_sys_82: -3.48278746e-01 + art_sys_83: 2.07018675e-01 + art_sys_84: -9.17281771e-21 art_sys_85: 1.29071419e-01 art_sys_86: -4.14218804e-02 - art_sys_87: -4.88001364e-19 - art_sys_88: -4.73163566e-20 - art_sys_89: -1.83916672e-04 - art_sys_90: 4.16692254e-19 - art_sys_91: 5.53279059e-20 - art_sys_92: -4.31992767e-05 - art_sys_93: -3.44811731e-05 - art_sys_94: 1.94084453e-20 - art_sys_95: 1.08276399e-19 - art_sys_96: -7.18369087e-21 - art_sys_97: 9.85686357e-21 - art_sys_98: -1.33375915e-20 - art_sys_99: 4.43843080e-20 - art_sys_100: 2.28677346e-20 - art_sys_101: -2.36252701e-20 - art_sys_102: -4.39592715e-21 - art_sys_103: -1.58902993e-20 - art_sys_104: 7.46440241e-21 - art_sys_105: -1.18065285e-21 - art_sys_106: -1.57190452e-20 - art_sys_107: -3.35214379e-20 - art_sys_108: 9.99332395e-21 - art_sys_109: 5.09523221e-20 - art_sys_110: 1.54042169e-20 - art_sys_111: 8.79377473e-21 - art_sys_112: 1.40426505e-20 - art_sys_113: 1.33982575e-20 - art_sys_114: 2.77602091e-21 - art_sys_115: -8.17228846e-22 - art_sys_116: -1.85563735e-21 - art_sys_117: 3.48618376e-20 - art_sys_118: -9.62853675e-21 - art_sys_119: -1.46894072e-21 - art_sys_120: 5.40025226e-21 - art_sys_121: 3.88369837e-21 - art_sys_122: 1.86599750e-21 - art_sys_123: 6.81572808e-21 - art_sys_124: -1.14364383e-20 - art_sys_125: -1.25152296e-20 - art_sys_126: -3.85515868e-21 - art_sys_127: 1.49999999e-21 - art_sys_128: -2.50659304e-21 - art_sys_129: 1.24659525e-21 - art_sys_130: -1.26474434e-21 - art_sys_131: -2.69109471e-21 - art_sys_132: -2.89773724e-22 - art_sys_133: 1.11376865e-21 - art_sys_134: 1.05860745e-21 - art_sys_135: -6.68052335e-22 - art_sys_136: 1.60823246e-21 - art_sys_137: 6.87580934e-22 - art_sys_138: -3.04064729e-21 - art_sys_139: 1.66196495e-21 - art_sys_140: 5.99060713e-22 - art_sys_141: -1.36003475e-21 - art_sys_142: -1.70078125e-21 - art_sys_143: 5.64686443e-22 - art_sys_144: 6.21904166e-22 - art_sys_145: -2.71181149e-22 - art_sys_146: -6.90274154e-23 - art_sys_147: -3.12175205e-21 - art_sys_148: -1.52191955e-20 - art_sys_149: 4.14120800e-22 - art_sys_150: 1.24420706e-22 - art_sys_151: 7.27928019e-23 - art_sys_152: 1.18684089e-20 - art_sys_153: 1.14140274e-22 - art_sys_154: 7.26684296e-23 - art_sys_155: -1.20389046e-21 - art_sys_156: -0.0 - art_sys_157: 8.86539475e-23 + art_sys_87: -1.38217557e-19 + art_sys_88: -4.27790128e-19 + art_sys_89: -8.85760382e-19 + art_sys_90: -6.46682761e-20 + art_sys_91: -2.50063660e-20 + art_sys_92: 3.99352079e-20 + art_sys_93: -4.57086893e-20 + art_sys_94: 9.80804896e-21 + art_sys_95: 2.52564962e-20 + art_sys_96: -5.56188359e-20 + art_sys_97: 2.12758913e-20 + art_sys_98: -4.97642430e-20 + art_sys_99: 2.31219148e-20 + art_sys_100: -2.71774142e-20 + art_sys_101: -2.75883447e-20 + art_sys_102: -6.28325586e-21 + art_sys_103: -4.28437624e-21 + art_sys_104: -3.20728438e-20 + art_sys_105: -3.99390717e-20 + art_sys_106: 3.11848124e-21 + art_sys_107: 9.91388059e-21 + art_sys_108: 1.61333785e-20 + art_sys_109: -2.18535387e-20 + art_sys_110: -3.59622231e-20 + art_sys_111: -1.14209411e-21 + art_sys_112: 3.77455662e-21 + art_sys_113: 2.63064251e-20 + art_sys_114: 4.22215591e-21 + art_sys_115: 1.91918914e-20 + art_sys_116: -1.34165863e-21 + art_sys_117: 1.12242131e-20 + art_sys_118: -4.96812048e-21 + art_sys_119: 4.14193726e-21 + art_sys_120: 1.00517826e-21 + art_sys_121: -5.51954413e-22 + art_sys_122: 3.09459301e-21 + art_sys_123: -1.96565300e-21 + art_sys_124: 2.96763332e-21 + art_sys_125: 1.40075621e-21 + art_sys_126: 1.86703194e-22 + art_sys_127: -1.81708495e-21 + art_sys_128: 1.13818540e-21 + art_sys_129: -8.96418792e-22 + art_sys_130: 6.60380638e-22 + art_sys_131: 3.25628201e-22 + art_sys_132: -1.15457104e-21 + art_sys_133: 1.94899475e-21 + art_sys_134: 1.93789625e-21 + art_sys_135: 4.58697152e-22 + art_sys_136: -9.39000138e-22 + art_sys_137: 6.63951354e-22 + art_sys_138: 2.06879217e-22 + art_sys_139: -3.28294182e-22 + art_sys_140: -1.41814596e-22 + art_sys_141: 5.47287673e-24 + art_sys_142: 0.0 + art_sys_143: -1.34311967e-22 + art_sys_144: 5.22868735e-23 + art_sys_145: 6.25012765e-23 + art_sys_146: -6.94962697e-21 + art_sys_147: -1.64311792e-21 + art_sys_148: -1.18231991e-20 + art_sys_149: -1.66543454e-22 + art_sys_150: -5.22081121e-22 + art_sys_151: 1.09059994e-21 + art_sys_152: 1.62001719e-22 + art_sys_153: -1.15338467e-21 + art_sys_154: 5.95528640e-21 + art_sys_155: 4.40106881e-21 + art_sys_156: 3.36559476e-21 + art_sys_157: -2.90445768e-21 art_sys_158: 0.0 - art_sys_159: -1.56620431e-23 - art_sys_160: 1.28427854e-21 - art_sys_161: 2.36135147e-23 - art_sys_162: 2.36135147e-23 - art_sys_163: 1.29101036e-22 - art_sys_164: 1.29101036e-22 - art_sys_165: 2.40371957e-24 - art_sys_166: 2.02420426e-25 - art_sys_167: 0.0 - art_sys_168: 1.37271019e-06 - art_sys_169: 4.14285433e-07 - art_sys_170: 1.72150319e-07 + art_sys_159: 3.58539971e-23 + art_sys_160: 3.58539971e-23 + art_sys_161: 1.31433060e-22 + art_sys_162: 2.40374413e-24 + art_sys_163: -0.0 + art_sys_164: -2.02403650e-25 + art_sys_165: 1.83916672e-04 + art_sys_166: -4.31992767e-05 + art_sys_167: 3.44811731e-05 + art_sys_168: -1.37271019e-06 + art_sys_169: -4.14285433e-07 + art_sys_170: -1.72150319e-07 art_sys_171: -5.27663509e-09 art_sys_172: -1.58040056e-09 - art_sys_173: -5.51536963e-10 - art_sys_174: 1.57421385e-12 - art_sys_175: 4.59481376e-13 - art_sys_176: -1.85722356e-13 - art_sys_177: 9.91269433e-15 - art_sys_178: -2.00790581e-15 - art_sys_179: -2.64730741e-20 - art_sys_180: -2.81216987e-22 - art_sys_181: 5.09824629e-14 - art_sys_182: -3.51856575e-16 - art_sys_183: 5.32727692e-17 - art_sys_184: -9.16883733e-18 - art_sys_185: -8.43183790e-19 + art_sys_173: 5.51536963e-10 + art_sys_174: 2.64730741e-20 + art_sys_175: -1.57421384e-12 + art_sys_176: -4.59481367e-13 + art_sys_177: 1.85722355e-13 + art_sys_178: 5.09824625e-14 + art_sys_179: 9.91269490e-15 + art_sys_180: -2.00790632e-15 + art_sys_181: -3.51855992e-16 + art_sys_182: -5.32727661e-17 + art_sys_183: -9.16883727e-18 + art_sys_184: 8.43183789e-19 + art_sys_185: -2.81216987e-22 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -45117,127 +45117,127 @@ bins: art_sys_62: 0.0 art_sys_63: 0.0 art_sys_64: 0.0 - art_sys_65: 0.0 - art_sys_66: 0.0 - art_sys_67: 0.0 - art_sys_68: 0.0 - art_sys_69: 0.0 - art_sys_70: 0.0 - art_sys_71: 0.0 - art_sys_72: -8.25393221e-191 - art_sys_73: 5.11608692e-182 - art_sys_74: 1.59482057e-183 - art_sys_75: 7.83357095e-68 - art_sys_76: 9.51420511e-01 + art_sys_65: 4.17801147e-252 + art_sys_66: 1.28659927e-176 + art_sys_67: 3.46289239e-134 + art_sys_68: 9.67949304e-124 + art_sys_69: -1.83122975e-131 + art_sys_70: 9.12860914e-130 + art_sys_71: 9.35036460e-124 + art_sys_72: -3.54226421e-111 + art_sys_73: 2.30671534e-99 + art_sys_74: 1.36406992e-101 + art_sys_75: 6.42123386e-30 + art_sys_76: -9.51420511e-01 art_sys_77: 2.48584661e+00 art_sys_78: 1.55320620e+00 - art_sys_79: -1.87968737e-19 - art_sys_80: 2.26076306e+00 - art_sys_81: 6.62380318e-19 - art_sys_82: -8.43247044e-21 - art_sys_83: -3.89979444e+00 - art_sys_84: 6.58564307e-01 + art_sys_79: 7.75876728e-20 + art_sys_80: -6.04838672e-21 + art_sys_81: 2.26076306e+00 + art_sys_82: 3.89979444e+00 + art_sys_83: -6.58564307e-01 + art_sys_84: 7.44713428e-19 art_sys_85: -7.33558540e-01 art_sys_86: 2.17859452e-01 - art_sys_87: 7.52851680e-19 - art_sys_88: -4.32803524e-19 - art_sys_89: 9.55886479e-04 - art_sys_90: 4.60632201e-19 - art_sys_91: 1.19859990e-19 - art_sys_92: 2.85774007e-04 - art_sys_93: 1.93413205e-04 - art_sys_94: -6.81170913e-20 - art_sys_95: 7.08808261e-20 - art_sys_96: -7.78135342e-20 - art_sys_97: 4.70338200e-21 - art_sys_98: -4.66076449e-20 - art_sys_99: 6.96931000e-20 - art_sys_100: 7.84034895e-21 - art_sys_101: 5.37481748e-20 - art_sys_102: -4.81106113e-21 - art_sys_103: 6.05288822e-20 - art_sys_104: 2.12549180e-20 - art_sys_105: -2.13661668e-20 - art_sys_106: 6.18078777e-21 - art_sys_107: 1.83464965e-20 - art_sys_108: 2.44019250e-20 - art_sys_109: -4.06417306e-21 - art_sys_110: -5.33505543e-21 - art_sys_111: 1.45361709e-20 - art_sys_112: -1.81720103e-21 - art_sys_113: -2.18501449e-20 - art_sys_114: 4.77540532e-20 - art_sys_115: 2.07317401e-20 - art_sys_116: 1.89782226e-21 - art_sys_117: 1.51704351e-20 - art_sys_118: -3.51530227e-21 - art_sys_119: -1.64640884e-20 - art_sys_120: 9.39949329e-22 - art_sys_121: -1.17625846e-23 - art_sys_122: -9.27280018e-21 - art_sys_123: 8.37646849e-22 - art_sys_124: -1.43920068e-21 - art_sys_125: 3.56148866e-21 - art_sys_126: -3.34405568e-22 - art_sys_127: -6.14368581e-21 - art_sys_128: -2.05027884e-21 - art_sys_129: -9.38377319e-23 - art_sys_130: 3.71056655e-21 - art_sys_131: -2.42765301e-21 - art_sys_132: 2.55931387e-21 - art_sys_133: 2.44409545e-22 - art_sys_134: -1.42636692e-21 - art_sys_135: 6.46601080e-21 - art_sys_136: -2.15466944e-21 - art_sys_137: -2.22639166e-21 - art_sys_138: -2.89631701e-21 - art_sys_139: 6.37384039e-22 - art_sys_140: 2.41453618e-22 - art_sys_141: 1.19566423e-21 - art_sys_142: 2.15869354e-22 - art_sys_143: -1.87365486e-21 - art_sys_144: 3.11388135e-22 - art_sys_145: -3.66163519e-22 - art_sys_146: -4.90316069e-23 - art_sys_147: -7.31579787e-23 - art_sys_148: 1.93343589e-20 - art_sys_149: -1.91444143e-22 - art_sys_150: 9.70794350e-22 - art_sys_151: -7.27944482e-22 - art_sys_152: -4.54614304e-20 - art_sys_153: -3.50266816e-22 - art_sys_154: -8.86453527e-23 - art_sys_155: 1.26188142e-20 - art_sys_156: -0.0 - art_sys_157: -7.71877473e-23 + art_sys_87: -6.35471199e-19 + art_sys_88: -1.80018797e-19 + art_sys_89: -1.51664449e-19 + art_sys_90: -3.22308353e-19 + art_sys_91: -2.16448858e-20 + art_sys_92: -5.08567276e-20 + art_sys_93: -9.08640234e-20 + art_sys_94: -2.90409764e-20 + art_sys_95: -1.32214275e-19 + art_sys_96: 2.01504214e-19 + art_sys_97: 5.65095946e-22 + art_sys_98: 5.96549290e-20 + art_sys_99: 2.84913641e-21 + art_sys_100: -4.70706643e-20 + art_sys_101: 4.89217361e-22 + art_sys_102: -1.23998041e-20 + art_sys_103: 1.65651781e-20 + art_sys_104: 3.72461880e-20 + art_sys_105: 3.37399807e-21 + art_sys_106: 6.23968784e-21 + art_sys_107: -5.90428376e-21 + art_sys_108: -7.67907526e-21 + art_sys_109: 4.33063850e-21 + art_sys_110: 3.62267254e-20 + art_sys_111: -7.67073275e-21 + art_sys_112: -7.89467701e-23 + art_sys_113: -3.54236972e-20 + art_sys_114: -3.18035382e-21 + art_sys_115: -3.14790503e-21 + art_sys_116: 1.09191338e-20 + art_sys_117: -2.59732275e-21 + art_sys_118: -2.55325880e-21 + art_sys_119: -9.69465451e-21 + art_sys_120: -9.36786714e-23 + art_sys_121: 5.98489309e-21 + art_sys_122: 2.45862606e-22 + art_sys_123: 6.90834366e-21 + art_sys_124: -1.12327248e-21 + art_sys_125: 5.87595283e-22 + art_sys_126: 1.89820818e-21 + art_sys_127: 2.90742356e-22 + art_sys_128: -5.02213027e-21 + art_sys_129: -2.46659981e-22 + art_sys_130: 2.13430697e-21 + art_sys_131: 1.97131222e-21 + art_sys_132: 2.58048433e-22 + art_sys_133: 7.00842985e-22 + art_sys_134: -1.65600389e-21 + art_sys_135: -3.81978937e-22 + art_sys_136: -2.89758927e-22 + art_sys_137: 1.72233971e-22 + art_sys_138: -3.83011869e-22 + art_sys_139: 2.98684409e-22 + art_sys_140: 4.59894122e-23 + art_sys_141: -4.02264745e-22 + art_sys_142: -0.0 + art_sys_143: 4.19140501e-23 + art_sys_144: 9.30856450e-23 + art_sys_145: 3.43970736e-22 + art_sys_146: -1.29657856e-20 + art_sys_147: 1.43285088e-21 + art_sys_148: 2.67927602e-21 + art_sys_149: 4.99999581e-21 + art_sys_150: 1.24351664e-21 + art_sys_151: 4.21132423e-21 + art_sys_152: -1.71688011e-21 + art_sys_153: -1.04978562e-21 + art_sys_154: -3.79902195e-20 + art_sys_155: -1.41895752e-20 + art_sys_156: -4.32101982e-21 + art_sys_157: 3.87621570e-21 art_sys_158: -0.0 - art_sys_159: 2.58421149e-23 - art_sys_160: -5.49564801e-23 - art_sys_161: 6.19383058e-23 - art_sys_162: 6.19383058e-23 - art_sys_163: -2.75280503e-22 - art_sys_164: -2.75280503e-22 - art_sys_165: -1.29274425e-23 - art_sys_166: -1.09728353e-24 - art_sys_167: -0.0 - art_sys_168: -8.67287171e-06 - art_sys_169: -2.49206367e-06 - art_sys_170: -1.01580368e-06 + art_sys_159: -4.68060483e-23 + art_sys_160: -4.68060483e-23 + art_sys_161: -2.69545651e-22 + art_sys_162: -1.29275828e-23 + art_sys_163: 0.0 + art_sys_164: 1.09719718e-24 + art_sys_165: -9.55886479e-04 + art_sys_166: 2.85774007e-04 + art_sys_167: -1.93413205e-04 + art_sys_168: 8.67287171e-06 + art_sys_169: 2.49206367e-06 + art_sys_170: 1.01580368e-06 art_sys_171: 3.67763054e-08 art_sys_172: 8.94994579e-09 - art_sys_173: 3.47726667e-09 - art_sys_174: -8.98965312e-12 - art_sys_175: -2.19571391e-12 - art_sys_176: 1.09752767e-12 - art_sys_177: -5.59470915e-14 - art_sys_178: 1.10310188e-14 - art_sys_179: 1.45916896e-19 - art_sys_180: 1.48215825e-21 - art_sys_181: -2.61832908e-13 - art_sys_182: 1.89542430e-15 - art_sys_183: -3.00135081e-16 - art_sys_184: 4.96406112e-17 - art_sys_185: 4.80290338e-18 + art_sys_173: -3.47726667e-09 + art_sys_174: -1.45916896e-19 + art_sys_175: 8.98965314e-12 + art_sys_176: 2.19571390e-12 + art_sys_177: -1.09752767e-12 + art_sys_178: -2.61832908e-13 + art_sys_179: -5.59470948e-14 + art_sys_180: 1.10310189e-14 + art_sys_181: 1.89542425e-15 + art_sys_182: 3.00135252e-16 + art_sys_183: 4.96406124e-17 + art_sys_184: -4.80290338e-18 + art_sys_185: 1.48215825e-21 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -45408,127 +45408,127 @@ bins: art_sys_62: 0.0 art_sys_63: 0.0 art_sys_64: 0.0 - art_sys_65: 0.0 - art_sys_66: 0.0 - art_sys_67: 0.0 - art_sys_68: 0.0 - art_sys_69: 0.0 - art_sys_70: 0.0 - art_sys_71: 0.0 - art_sys_72: 3.60021353e-191 - art_sys_73: -2.23154309e-182 - art_sys_74: -6.95631422e-184 - art_sys_75: -3.41684897e-68 - art_sys_76: -4.14990841e-01 + art_sys_65: -1.82238996e-252 + art_sys_66: -5.61189196e-177 + art_sys_67: -1.51044528e-134 + art_sys_68: -4.22200374e-124 + art_sys_69: 7.98746260e-132 + art_sys_70: -3.98171906e-130 + art_sys_71: -4.07844442e-124 + art_sys_72: 1.54506571e-111 + art_sys_73: -1.00614369e-99 + art_sys_74: -5.94980364e-102 + art_sys_75: -2.80081542e-30 + art_sys_76: 4.14990841e-01 art_sys_77: 7.71322404e-01 art_sys_78: -1.95915411e+00 - art_sys_79: -1.60943542e-20 - art_sys_80: -5.65278531e-01 - art_sys_81: -1.20769764e-19 - art_sys_82: 7.59635334e-21 - art_sys_83: -1.93699114e+00 - art_sys_84: -1.99323586e+00 + art_sys_79: -3.97868035e-20 + art_sys_80: 3.85313480e-21 + art_sys_81: -5.65278531e-01 + art_sys_82: 1.93699114e+00 + art_sys_83: 1.99323586e+00 + art_sys_84: -1.80835392e-19 art_sys_85: 9.71138353e-01 art_sys_86: -4.72301328e-01 - art_sys_87: 4.49220631e-19 - art_sys_88: 2.96400142e-20 - art_sys_89: -2.37697775e-03 - art_sys_90: 4.59749044e-20 - art_sys_91: -5.49903454e-20 - art_sys_92: -7.79906198e-04 - art_sys_93: -6.06904599e-04 - art_sys_94: 1.18958531e-19 - art_sys_95: 7.11188987e-20 - art_sys_96: 4.63464240e-20 - art_sys_97: 4.82698622e-20 - art_sys_98: -8.34924029e-20 - art_sys_99: 4.08683850e-21 - art_sys_100: 7.34911192e-20 - art_sys_101: 4.95326017e-20 - art_sys_102: -1.04942920e-20 - art_sys_103: -2.07910123e-20 - art_sys_104: -9.55116685e-21 - art_sys_105: 4.07252704e-20 - art_sys_106: -2.76999024e-20 - art_sys_107: 1.33541422e-20 - art_sys_108: 3.09508046e-21 - art_sys_109: 3.26198048e-20 - art_sys_110: -6.19122441e-21 - art_sys_111: -3.24347671e-20 - art_sys_112: 1.91085583e-20 - art_sys_113: 3.10997972e-20 - art_sys_114: 5.39208914e-20 - art_sys_115: -4.71297358e-21 - art_sys_116: -1.53738518e-20 - art_sys_117: -3.20463045e-20 - art_sys_118: 5.29080387e-21 - art_sys_119: 1.14106298e-21 - art_sys_120: -3.73829441e-21 - art_sys_121: 4.73015364e-21 - art_sys_122: 1.05427240e-22 - art_sys_123: 5.13512872e-22 - art_sys_124: 1.24651067e-21 - art_sys_125: 4.92664472e-21 - art_sys_126: -2.13458449e-21 - art_sys_127: 1.26563091e-20 - art_sys_128: 9.53024274e-22 - art_sys_129: -1.99266127e-21 - art_sys_130: 3.86408126e-21 - art_sys_131: 2.54527023e-21 - art_sys_132: 3.97393071e-21 - art_sys_133: 1.53883987e-21 - art_sys_134: 7.21035614e-21 - art_sys_135: -1.76852492e-21 - art_sys_136: 5.03625162e-21 - art_sys_137: 1.46735933e-21 - art_sys_138: 1.75322496e-21 - art_sys_139: -8.25727152e-22 - art_sys_140: -1.16674478e-21 - art_sys_141: -2.80388572e-21 - art_sys_142: -4.36520033e-22 - art_sys_143: -5.27267588e-22 - art_sys_144: 5.56555149e-22 - art_sys_145: -5.12735695e-22 - art_sys_146: -6.70720975e-22 - art_sys_147: 8.02951187e-22 - art_sys_148: -1.73375859e-20 - art_sys_149: 3.35329573e-23 - art_sys_150: -7.49770565e-22 - art_sys_151: -2.23145011e-22 - art_sys_152: 5.87766333e-20 - art_sys_153: -2.93172925e-23 - art_sys_154: -1.22219238e-22 - art_sys_155: -1.34706272e-20 - art_sys_156: -0.0 - art_sys_157: -1.04823922e-24 - art_sys_158: 0.0 - art_sys_159: 9.40736199e-23 - art_sys_160: -1.14687406e-21 - art_sys_161: 5.25088547e-25 - art_sys_162: 5.25088547e-25 - art_sys_163: 7.23204413e-22 - art_sys_164: 7.23204413e-22 - art_sys_165: 5.83235801e-23 - art_sys_166: 4.86966035e-24 - art_sys_167: 0.0 - art_sys_168: 2.55091632e-05 - art_sys_169: 8.50277782e-06 - art_sys_170: 3.44112666e-06 + art_sys_87: 1.46548117e-18 + art_sys_88: 2.54946384e-19 + art_sys_89: -3.23558554e-20 + art_sys_90: -2.69858032e-20 + art_sys_91: -5.75826908e-20 + art_sys_92: -3.21753988e-20 + art_sys_93: 1.32266946e-20 + art_sys_94: 3.90183457e-20 + art_sys_95: 8.37492604e-20 + art_sys_96: -2.20987317e-19 + art_sys_97: 6.35424130e-20 + art_sys_98: -1.63294759e-20 + art_sys_99: -1.89974962e-20 + art_sys_100: -2.45047910e-20 + art_sys_101: 2.30106372e-21 + art_sys_102: -1.00293885e-20 + art_sys_103: 5.96811637e-21 + art_sys_104: -7.62703161e-21 + art_sys_105: -4.29805473e-20 + art_sys_106: -9.20691940e-21 + art_sys_107: -2.55097294e-21 + art_sys_108: 2.03647010e-20 + art_sys_109: 5.95441706e-21 + art_sys_110: -2.29133676e-20 + art_sys_111: -3.75834023e-21 + art_sys_112: -1.27577078e-20 + art_sys_113: -2.72937715e-21 + art_sys_114: 6.83235540e-21 + art_sys_115: 1.73254664e-20 + art_sys_116: -1.54400818e-21 + art_sys_117: -2.36768779e-20 + art_sys_118: -5.21675278e-22 + art_sys_119: -1.06668778e-20 + art_sys_120: 1.64260743e-21 + art_sys_121: 3.52926038e-21 + art_sys_122: -8.55627007e-22 + art_sys_123: 4.45928386e-21 + art_sys_124: 2.48368677e-21 + art_sys_125: 2.25880794e-21 + art_sys_126: -1.83502803e-21 + art_sys_127: -2.43501123e-21 + art_sys_128: 2.59552654e-21 + art_sys_129: -3.57074894e-22 + art_sys_130: 2.27694198e-21 + art_sys_131: -1.75622876e-21 + art_sys_132: -8.04377516e-23 + art_sys_133: -6.77285477e-23 + art_sys_134: 1.38703062e-21 + art_sys_135: -8.79268809e-22 + art_sys_136: 1.26057617e-22 + art_sys_137: -2.41487810e-22 + art_sys_138: 3.90238161e-22 + art_sys_139: -1.88206273e-22 + art_sys_140: -1.21314225e-22 + art_sys_141: -2.41333213e-22 + art_sys_142: 0.0 + art_sys_143: 1.18689321e-22 + art_sys_144: 2.57198668e-22 + art_sys_145: 2.53165584e-22 + art_sys_146: -6.19817478e-21 + art_sys_147: -9.42485448e-21 + art_sys_148: -7.55603069e-21 + art_sys_149: -4.12571741e-21 + art_sys_150: -2.49624936e-21 + art_sys_151: 9.21486369e-22 + art_sys_152: -1.01642676e-21 + art_sys_153: -5.06907362e-22 + art_sys_154: 4.30688706e-20 + art_sys_155: 1.96235861e-20 + art_sys_156: 4.47126622e-21 + art_sys_157: -3.65180288e-21 + art_sys_158: -0.0 + art_sys_159: -4.67498905e-23 + art_sys_160: -4.67498905e-23 + art_sys_161: 2.03645010e-22 + art_sys_162: 5.83233375e-23 + art_sys_163: -0.0 + art_sys_164: -4.86945914e-24 + art_sys_165: 2.37697775e-03 + art_sys_166: -7.79906198e-04 + art_sys_167: 6.06904599e-04 + art_sys_168: -2.55091632e-05 + art_sys_169: -8.50277782e-06 + art_sys_170: -3.44112666e-06 art_sys_171: -1.17126754e-07 art_sys_172: -3.40780338e-08 - art_sys_173: -1.19915646e-08 - art_sys_174: 4.63254393e-11 - art_sys_175: 9.93457524e-12 - art_sys_176: -4.79041716e-12 - art_sys_177: 2.39099469e-13 - art_sys_178: -4.95016138e-14 - art_sys_179: -6.34565991e-19 - art_sys_180: -6.15188607e-21 - art_sys_181: 1.22531339e-12 - art_sys_182: -8.38840495e-15 - art_sys_183: 1.29643002e-15 - art_sys_184: -2.21721161e-16 - art_sys_185: -2.05790113e-17 + art_sys_173: 1.19915646e-08 + art_sys_174: 6.34565991e-19 + art_sys_175: -4.63254393e-11 + art_sys_176: -9.93457524e-12 + art_sys_177: 4.79041716e-12 + art_sys_178: 1.22531339e-12 + art_sys_179: 2.39099471e-13 + art_sys_180: -4.95016133e-14 + art_sys_181: -8.38840451e-15 + art_sys_182: -1.29642981e-15 + art_sys_183: -2.21721160e-16 + art_sys_184: 2.05790113e-17 + art_sys_185: -6.15188607e-21 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -45699,127 +45699,127 @@ bins: art_sys_62: 0.0 art_sys_63: 0.0 art_sys_64: 0.0 - art_sys_65: 0.0 - art_sys_66: 0.0 - art_sys_67: 0.0 - art_sys_68: 0.0 - art_sys_69: 0.0 - art_sys_70: 0.0 - art_sys_71: 0.0 - art_sys_72: 7.57216025e-192 - art_sys_73: -4.69349990e-183 - art_sys_74: -1.46308894e-184 - art_sys_75: -7.18651385e-69 - art_sys_76: -8.72832674e-02 + art_sys_65: -3.83292074e-253 + art_sys_66: -1.18032549e-177 + art_sys_67: -3.17685564e-135 + art_sys_68: -8.87996180e-125 + art_sys_69: 1.67996921e-132 + art_sys_70: -8.37458120e-131 + art_sys_71: -8.57801954e-125 + art_sys_72: 3.24967132e-112 + art_sys_73: -2.11617944e-100 + art_sys_74: -1.25139702e-102 + art_sys_75: -5.89083655e-31 + art_sys_76: 8.72832674e-02 art_sys_77: -1.09606082e-01 art_sys_78: -1.29949206e-01 - art_sys_79: 1.00099761e-20 - art_sys_80: -2.33708687e-01 - art_sys_81: -6.16440791e-20 - art_sys_82: 6.13598939e-22 - art_sys_83: 4.73613539e-01 - art_sys_84: -2.26881092e+00 + art_sys_79: -5.03184479e-21 + art_sys_80: 5.00628272e-22 + art_sys_81: -2.33708687e-01 + art_sys_82: -4.73613539e-01 + art_sys_83: 2.26881092e+00 + art_sys_84: -9.79043861e-19 art_sys_85: -9.14928319e-01 art_sys_86: 5.61238569e-01 - art_sys_87: -2.63998302e-18 - art_sys_88: 1.14536445e-18 - art_sys_89: 1.18104713e-02 - art_sys_90: -3.58174096e-19 - art_sys_91: -8.15495385e-20 - art_sys_92: 2.46589436e-03 - art_sys_93: 2.16759950e-03 - art_sys_94: -1.08619540e-19 - art_sys_95: -2.44305337e-20 - art_sys_96: -1.16457449e-19 - art_sys_97: 7.38083636e-22 - art_sys_98: -3.54120306e-20 - art_sys_99: -3.11193681e-20 - art_sys_100: 1.16610055e-19 - art_sys_101: 4.40849186e-20 - art_sys_102: 9.64248888e-21 - art_sys_103: 1.20493230e-20 - art_sys_104: -3.37759173e-20 - art_sys_105: 3.22820228e-20 - art_sys_106: 2.17923905e-20 - art_sys_107: 5.22669684e-21 - art_sys_108: 6.99070616e-20 - art_sys_109: -4.26608934e-20 - art_sys_110: 8.26095535e-21 - art_sys_111: 1.39204821e-20 - art_sys_112: -9.90340981e-21 - art_sys_113: -2.41865746e-20 - art_sys_114: 8.54900624e-21 - art_sys_115: -5.23746457e-21 - art_sys_116: -1.66969593e-20 - art_sys_117: 1.80220785e-20 - art_sys_118: 1.10006836e-20 - art_sys_119: -2.62238267e-21 - art_sys_120: 2.60989010e-21 - art_sys_121: 2.20613215e-21 - art_sys_122: -9.10240951e-21 - art_sys_123: -5.72237222e-21 - art_sys_124: -7.53828155e-22 - art_sys_125: 4.07417029e-21 - art_sys_126: -6.94078476e-21 - art_sys_127: 3.43410604e-21 - art_sys_128: 1.98514263e-21 - art_sys_129: 1.08252792e-20 - art_sys_130: -1.51009923e-21 - art_sys_131: 1.66740465e-21 - art_sys_132: -4.53127894e-21 - art_sys_133: 5.24577203e-21 - art_sys_134: -5.33075208e-21 - art_sys_135: 3.85618241e-23 - art_sys_136: 1.18023593e-21 - art_sys_137: -5.31994366e-21 - art_sys_138: 2.05057413e-21 - art_sys_139: 3.20986205e-22 - art_sys_140: 7.37666887e-23 - art_sys_141: -7.70715762e-22 - art_sys_142: -9.79823146e-22 - art_sys_143: 1.14376540e-22 - art_sys_144: 2.04288432e-21 - art_sys_145: 8.05820184e-22 - art_sys_146: -4.53118663e-22 - art_sys_147: -2.25476672e-22 - art_sys_148: 1.35964125e-20 - art_sys_149: 2.24492300e-22 - art_sys_150: 3.25960315e-22 - art_sys_151: -5.83414709e-23 - art_sys_152: -7.62938640e-20 - art_sys_153: -1.79661070e-22 - art_sys_154: 1.13585419e-23 - art_sys_155: 2.02300312e-20 - art_sys_156: -0.0 - art_sys_157: -1.15765703e-22 + art_sys_87: -2.68578158e-19 + art_sys_88: -6.28509802e-19 + art_sys_89: -1.37596047e-19 + art_sys_90: -6.10927572e-21 + art_sys_91: -1.13722421e-19 + art_sys_92: -3.48609206e-20 + art_sys_93: -9.03428707e-21 + art_sys_94: 4.06971705e-20 + art_sys_95: 1.10589358e-19 + art_sys_96: 1.01385313e-19 + art_sys_97: 1.63220011e-20 + art_sys_98: 4.32191747e-20 + art_sys_99: -1.81387677e-20 + art_sys_100: -8.86681253e-21 + art_sys_101: 3.12188728e-20 + art_sys_102: -1.19576777e-19 + art_sys_103: 4.10455800e-20 + art_sys_104: -1.99205630e-20 + art_sys_105: 7.60692385e-21 + art_sys_106: -5.48283102e-21 + art_sys_107: 9.99508944e-21 + art_sys_108: -2.09412917e-20 + art_sys_109: -6.57861922e-21 + art_sys_110: 7.37353459e-20 + art_sys_111: -1.56921380e-20 + art_sys_112: 1.11333490e-20 + art_sys_113: -4.16755347e-21 + art_sys_114: 5.68195423e-21 + art_sys_115: 1.34061036e-20 + art_sys_116: 1.53490434e-21 + art_sys_117: -5.77453934e-20 + art_sys_118: 1.87512891e-21 + art_sys_119: 1.40305240e-20 + art_sys_120: -3.56533117e-21 + art_sys_121: 7.03936847e-22 + art_sys_122: 4.43565088e-21 + art_sys_123: -7.21644818e-21 + art_sys_124: 3.24496295e-21 + art_sys_125: 7.89042665e-22 + art_sys_126: 5.17851547e-22 + art_sys_127: -2.67659236e-22 + art_sys_128: 4.97345634e-21 + art_sys_129: -2.34758061e-21 + art_sys_130: 8.36504995e-21 + art_sys_131: -3.73873832e-21 + art_sys_132: 3.13743225e-23 + art_sys_133: -1.93888461e-21 + art_sys_134: 6.20506421e-22 + art_sys_135: 8.53851153e-22 + art_sys_136: 1.27693973e-22 + art_sys_137: 2.72515208e-22 + art_sys_138: -1.82109433e-22 + art_sys_139: 1.86697883e-22 + art_sys_140: 1.21882882e-22 + art_sys_141: -5.37612238e-23 + art_sys_142: -0.0 + art_sys_143: 1.21713574e-22 + art_sys_144: 8.16437356e-23 + art_sys_145: -2.90271309e-24 + art_sys_146: -1.72766272e-20 + art_sys_147: -1.05164288e-20 + art_sys_148: -5.05878648e-21 + art_sys_149: -2.60985534e-21 + art_sys_150: -3.55598491e-21 + art_sys_151: -1.45881504e-21 + art_sys_152: 2.87105019e-21 + art_sys_153: 5.92276119e-22 + art_sys_154: -4.99882980e-20 + art_sys_155: -1.86693516e-20 + art_sys_156: -1.32433723e-22 + art_sys_157: 2.21142204e-21 art_sys_158: 0.0 - art_sys_159: -1.21612874e-23 - art_sys_160: 4.22290824e-21 - art_sys_161: 2.12802173e-23 - art_sys_162: 2.12802173e-23 - art_sys_163: -1.19470822e-21 - art_sys_164: -1.19470822e-21 - art_sys_165: -1.60197838e-22 - art_sys_166: -1.36843572e-23 - art_sys_167: -0.0 - art_sys_168: -1.00527489e-04 - art_sys_169: -2.84992003e-05 - art_sys_170: -1.22701055e-05 + art_sys_159: -7.23906108e-24 + art_sys_160: -7.23906108e-24 + art_sys_161: -2.52355579e-22 + art_sys_162: -1.60195678e-22 + art_sys_163: 0.0 + art_sys_164: 1.36833082e-23 + art_sys_165: -1.18104713e-02 + art_sys_166: 2.46589436e-03 + art_sys_167: -2.16759950e-03 + art_sys_168: 1.00527489e-04 + art_sys_169: 2.84992003e-05 + art_sys_170: 1.22701055e-05 art_sys_171: 4.17007605e-07 art_sys_172: 1.09447160e-07 - art_sys_173: 4.18102947e-08 - art_sys_174: -8.57413597e-11 - art_sys_175: -3.05808041e-11 - art_sys_176: 1.23524354e-11 - art_sys_177: -6.83156030e-13 - art_sys_178: 1.33772923e-13 - art_sys_179: 1.81744562e-18 - art_sys_180: 2.01167908e-20 - art_sys_181: -3.28626743e-12 - art_sys_182: 2.37826579e-14 - art_sys_183: -3.66744883e-15 - art_sys_184: 6.15817138e-16 - art_sys_185: 5.84536714e-17 + art_sys_173: -4.18102947e-08 + art_sys_174: -1.81744562e-18 + art_sys_175: 8.57413597e-11 + art_sys_176: 3.05808041e-11 + art_sys_177: -1.23524354e-11 + art_sys_178: -3.28626743e-12 + art_sys_179: -6.83156033e-13 + art_sys_180: 1.33772923e-13 + art_sys_181: 2.37826574e-14 + art_sys_182: 3.66744885e-15 + art_sys_183: 6.15817138e-16 + art_sys_184: -5.84536714e-17 + art_sys_185: 2.01167908e-20 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -45990,127 +45990,127 @@ bins: art_sys_62: 0.0 art_sys_63: 0.0 art_sys_64: 0.0 - art_sys_65: 0.0 - art_sys_66: 0.0 - art_sys_67: 0.0 - art_sys_68: 0.0 - art_sys_69: 0.0 - art_sys_70: 0.0 - art_sys_71: 0.0 - art_sys_72: -8.87708073e-193 - art_sys_73: 5.50233701e-184 - art_sys_74: 1.71522501e-185 - art_sys_75: 8.42493280e-70 - art_sys_76: 1.02324392e-02 + art_sys_65: 4.49352530e-254 + art_sys_66: 1.38372556e-178 + art_sys_67: 3.72430860e-136 + art_sys_68: 1.04102049e-125 + art_sys_69: -1.96947059e-133 + art_sys_70: 9.81773435e-132 + art_sys_71: 1.00562303e-125 + art_sys_72: -3.80967226e-113 + art_sys_73: 2.48085093e-101 + art_sys_74: 1.46704453e-103 + art_sys_75: 6.90597738e-32 + art_sys_76: -1.02324392e-02 art_sys_77: -6.09757045e-02 art_sys_78: 1.09840418e-01 - art_sys_79: 1.37929604e-21 - art_sys_80: 2.46817492e-02 - art_sys_81: 4.47952243e-21 - art_sys_82: -4.14280006e-22 - art_sys_83: 4.11002677e-01 - art_sys_84: -2.51577085e-01 + art_sys_79: 1.96607689e-21 + art_sys_80: -2.05567898e-22 + art_sys_81: 2.46817492e-02 + art_sys_82: -4.11002677e-01 + art_sys_83: 2.51577085e-01 + art_sys_84: -2.25269947e-19 art_sys_85: -1.50524545e+00 art_sys_86: -7.51931830e-01 - art_sys_87: 4.64985515e-19 - art_sys_88: 6.70796216e-19 - art_sys_89: -8.05710365e-03 - art_sys_90: 1.08587574e-19 - art_sys_91: 1.91856975e-20 - art_sys_92: -7.64305344e-03 - art_sys_93: -5.01562437e-03 - art_sys_94: 1.04735156e-19 - art_sys_95: 7.04200057e-21 - art_sys_96: 5.60779509e-20 - art_sys_97: -9.25933174e-20 - art_sys_98: 2.02909803e-20 - art_sys_99: 2.14644955e-21 - art_sys_100: 7.55212049e-21 - art_sys_101: -4.30632434e-20 - art_sys_102: -1.46923813e-20 - art_sys_103: 1.64373849e-20 - art_sys_104: 1.03848826e-20 - art_sys_105: -7.12857659e-20 - art_sys_106: -1.10318781e-23 - art_sys_107: -3.34343620e-21 - art_sys_108: 1.71165445e-20 - art_sys_109: 3.15648769e-20 - art_sys_110: 8.41578561e-21 - art_sys_111: 2.30959852e-20 - art_sys_112: -2.04730237e-21 - art_sys_113: -3.58181956e-21 - art_sys_114: -2.17169568e-20 - art_sys_115: 3.55355104e-21 - art_sys_116: 2.00091383e-22 - art_sys_117: -2.89385565e-20 - art_sys_118: -8.75849444e-22 - art_sys_119: -1.01019631e-20 - art_sys_120: -5.62539680e-21 - art_sys_121: -1.04750307e-20 - art_sys_122: -2.02453481e-21 - art_sys_123: 6.77416816e-21 - art_sys_124: 1.49597684e-21 - art_sys_125: -1.67764376e-20 - art_sys_126: -2.14328313e-21 - art_sys_127: 2.22390917e-21 - art_sys_128: 6.64338391e-22 - art_sys_129: -1.04058144e-21 - art_sys_130: 2.16576814e-21 - art_sys_131: 1.18239607e-21 - art_sys_132: -6.06418733e-21 - art_sys_133: -7.60152816e-21 - art_sys_134: 1.50182934e-21 - art_sys_135: 7.51018738e-22 - art_sys_136: -4.71758399e-21 - art_sys_137: -1.35558055e-21 - art_sys_138: -7.09460428e-23 - art_sys_139: -7.17027865e-22 - art_sys_140: -4.27967443e-21 - art_sys_141: 9.21588219e-22 - art_sys_142: 1.59727069e-21 - art_sys_143: 3.78629606e-22 - art_sys_144: 6.29790171e-22 - art_sys_145: -5.68827032e-22 - art_sys_146: 1.39847969e-21 - art_sys_147: 1.30869527e-21 - art_sys_148: -1.18570981e-20 - art_sys_149: -6.04252863e-24 - art_sys_150: 6.28527670e-22 - art_sys_151: 5.05593284e-22 - art_sys_152: 7.86490570e-20 - art_sys_153: 2.33123491e-22 - art_sys_154: -3.67307258e-23 - art_sys_155: -1.90975892e-20 - art_sys_156: 0.0 - art_sys_157: 2.33643464e-22 - art_sys_158: 0.0 - art_sys_159: -1.24950036e-22 - art_sys_160: -4.94165883e-21 - art_sys_161: -2.56328338e-23 - art_sys_162: -2.56328338e-23 - art_sys_163: 1.51760919e-21 - art_sys_164: 1.51760919e-21 - art_sys_165: 6.79906882e-22 - art_sys_166: 5.67876401e-23 - art_sys_167: 0.0 - art_sys_168: 2.79340298e-04 - art_sys_169: 8.90654986e-05 - art_sys_170: 3.71210514e-05 + art_sys_87: 1.33845679e-18 + art_sys_88: 2.40145419e-19 + art_sys_89: 2.06636050e-20 + art_sys_90: -1.78526414e-19 + art_sys_91: 5.11014246e-21 + art_sys_92: -1.27682458e-19 + art_sys_93: -1.45085870e-19 + art_sys_94: 4.02212940e-20 + art_sys_95: -8.22446353e-20 + art_sys_96: 4.07794861e-19 + art_sys_97: -1.00113789e-20 + art_sys_98: -5.01113658e-20 + art_sys_99: -6.81249257e-21 + art_sys_100: -4.63708329e-21 + art_sys_101: -5.46365848e-20 + art_sys_102: 8.59909990e-20 + art_sys_103: -1.30797554e-20 + art_sys_104: 7.21184285e-21 + art_sys_105: -4.84546565e-20 + art_sys_106: 2.49861272e-20 + art_sys_107: -1.58111542e-20 + art_sys_108: 2.13944545e-20 + art_sys_109: 1.32797207e-20 + art_sys_110: -1.18745222e-20 + art_sys_111: -8.84216252e-21 + art_sys_112: 1.19578788e-20 + art_sys_113: -2.21429186e-20 + art_sys_114: 1.27155587e-20 + art_sys_115: 4.17009528e-21 + art_sys_116: 1.54974292e-20 + art_sys_117: 2.80058694e-21 + art_sys_118: 2.05101327e-21 + art_sys_119: -1.55428133e-20 + art_sys_120: -2.77727944e-21 + art_sys_121: -3.43056053e-21 + art_sys_122: 1.70600681e-21 + art_sys_123: 3.05730646e-21 + art_sys_124: 6.40814961e-22 + art_sys_125: -1.00060461e-21 + art_sys_126: 4.17850913e-22 + art_sys_127: -2.99342325e-21 + art_sys_128: 1.12791044e-20 + art_sys_129: -3.06095914e-21 + art_sys_130: -1.66999832e-21 + art_sys_131: -2.83047867e-21 + art_sys_132: -1.04273641e-21 + art_sys_133: -5.55869185e-22 + art_sys_134: 1.50919674e-21 + art_sys_135: -2.83178247e-22 + art_sys_136: 5.11179255e-22 + art_sys_137: 6.41569002e-24 + art_sys_138: -1.67578366e-22 + art_sys_139: -4.22020479e-22 + art_sys_140: -1.43565692e-22 + art_sys_141: -1.08359454e-22 + art_sys_142: 0.0 + art_sys_143: -6.48705193e-23 + art_sys_144: -5.03113883e-23 + art_sys_145: 8.23286181e-23 + art_sys_146: 2.86140142e-20 + art_sys_147: 3.54919622e-21 + art_sys_148: -1.77800183e-21 + art_sys_149: 1.08243348e-21 + art_sys_150: -9.11103159e-22 + art_sys_151: 4.73526669e-21 + art_sys_152: 1.52282046e-21 + art_sys_153: -2.57631284e-22 + art_sys_154: 4.75865276e-20 + art_sys_155: 1.83786042e-20 + art_sys_156: -1.45915739e-21 + art_sys_157: -2.29731952e-21 + art_sys_158: -0.0 + art_sys_159: -7.17311150e-23 + art_sys_160: -7.17311150e-23 + art_sys_161: 2.71016467e-22 + art_sys_162: 6.79899824e-22 + art_sys_163: -0.0 + art_sys_164: -5.67872107e-23 + art_sys_165: 8.05710365e-03 + art_sys_166: -7.64305344e-03 + art_sys_167: 5.01562437e-03 + art_sys_168: -2.79340298e-04 + art_sys_169: -8.90654986e-05 + art_sys_170: -3.71210514e-05 art_sys_171: -1.43173981e-06 art_sys_172: -3.76865019e-07 - art_sys_173: -1.40892706e-07 - art_sys_174: 5.80685303e-10 - art_sys_175: 1.02322748e-10 - art_sys_176: -5.93611779e-11 - art_sys_177: 2.85740628e-12 - art_sys_178: -5.82002329e-13 - art_sys_179: -7.45908402e-18 - art_sys_180: -6.90291338e-20 - art_sys_181: 1.37764597e-11 - art_sys_182: -9.74862860e-14 - art_sys_183: 1.54371815e-14 - art_sys_184: -2.58869574e-15 - art_sys_185: -2.46442789e-16 + art_sys_173: 1.40892706e-07 + art_sys_174: 7.45908402e-18 + art_sys_175: -5.80685303e-10 + art_sys_176: -1.02322748e-10 + art_sys_177: 5.93611779e-11 + art_sys_178: 1.37764597e-11 + art_sys_179: 2.85740629e-12 + art_sys_180: -5.82002329e-13 + art_sys_181: -9.74862861e-14 + art_sys_182: -1.54371816e-14 + art_sys_183: -2.58869574e-15 + art_sys_184: 2.46442789e-16 + art_sys_185: -6.90291338e-20 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -46281,127 +46281,127 @@ bins: art_sys_62: 0.0 art_sys_63: 0.0 art_sys_64: 0.0 - art_sys_65: 0.0 - art_sys_66: 0.0 - art_sys_67: 0.0 - art_sys_68: 0.0 - art_sys_69: 0.0 - art_sys_70: 0.0 - art_sys_71: 0.0 - art_sys_72: -2.91662451e-193 - art_sys_73: 1.80782979e-184 - art_sys_74: 5.63548699e-186 - art_sys_75: 2.76807807e-70 - art_sys_76: 3.36194855e-03 + art_sys_65: 1.47636130e-254 + art_sys_66: 4.54633938e-179 + art_sys_67: 1.22365094e-136 + art_sys_68: 3.42035485e-126 + art_sys_69: -6.47085083e-134 + art_sys_70: 3.22569399e-132 + art_sys_71: 3.30405371e-126 + art_sys_72: -1.25169784e-113 + art_sys_73: 8.15103123e-102 + art_sys_74: 4.82009040e-104 + art_sys_75: 2.26901329e-32 + art_sys_76: -3.36194855e-03 art_sys_77: -3.04001063e-03 art_sys_78: 1.33022593e-02 - art_sys_79: 2.74486511e-22 - art_sys_80: 1.08982924e-02 - art_sys_81: 2.61297825e-21 - art_sys_82: -5.27950132e-23 - art_sys_83: -1.03393318e-02 - art_sys_84: 1.11457007e-01 + art_sys_79: 3.02817256e-22 + art_sys_80: -3.38754240e-23 + art_sys_81: 1.08982924e-02 + art_sys_82: 1.03393318e-02 + art_sys_83: -1.11457007e-01 + art_sys_84: 4.50307650e-20 art_sys_85: -2.57757398e-02 art_sys_86: -1.06619479e-01 - art_sys_87: 2.33010324e-19 - art_sys_88: -1.83087414e-20 - art_sys_89: 1.62601696e-01 - art_sys_90: 3.53124118e-19 - art_sys_91: 2.76606055e-20 - art_sys_92: 2.24298315e-02 - art_sys_93: 3.06550642e-02 - art_sys_94: 1.60380711e-19 - art_sys_95: 5.82711261e-20 - art_sys_96: 4.19077812e-20 - art_sys_97: -1.13262644e-19 - art_sys_98: 2.73561763e-20 - art_sys_99: -2.22803401e-20 - art_sys_100: -1.52412467e-21 - art_sys_101: -4.60001375e-21 - art_sys_102: -3.69282923e-20 - art_sys_103: 2.15564253e-20 - art_sys_104: 2.42056146e-20 - art_sys_105: 2.18716976e-20 - art_sys_106: -4.62826845e-20 - art_sys_107: 5.76112823e-20 - art_sys_108: -2.07439682e-20 - art_sys_109: -3.27151848e-21 - art_sys_110: -3.22976001e-20 - art_sys_111: 7.70151250e-21 - art_sys_112: 1.35069961e-20 - art_sys_113: -4.21663038e-21 - art_sys_114: -3.36750572e-20 - art_sys_115: -3.67088085e-21 - art_sys_116: -1.46489682e-21 - art_sys_117: 2.78353439e-20 - art_sys_118: -7.49207136e-21 - art_sys_119: -8.45904808e-21 - art_sys_120: -2.03067767e-21 - art_sys_121: 1.00159796e-21 - art_sys_122: -6.22719424e-21 - art_sys_123: 6.24580197e-21 - art_sys_124: -5.74180157e-21 - art_sys_125: -6.34395541e-21 - art_sys_126: 3.29728497e-21 - art_sys_127: -5.00439310e-21 - art_sys_128: -3.54788902e-21 - art_sys_129: 1.09424619e-20 - art_sys_130: -4.01208728e-21 - art_sys_131: -1.98638558e-21 - art_sys_132: 3.81289354e-22 - art_sys_133: -1.61493728e-21 - art_sys_134: -1.19647981e-21 - art_sys_135: -5.10732310e-22 - art_sys_136: -1.63561006e-21 - art_sys_137: 1.81626821e-21 - art_sys_138: 4.59942753e-22 - art_sys_139: -3.23182425e-21 - art_sys_140: 1.27161929e-21 - art_sys_141: -1.26024805e-21 - art_sys_142: 7.94165325e-23 - art_sys_143: 4.29647526e-23 - art_sys_144: 6.75395505e-22 - art_sys_145: -2.08957356e-21 - art_sys_146: -1.61700403e-21 - art_sys_147: 1.03981704e-21 - art_sys_148: 2.80333182e-20 - art_sys_149: -2.51788482e-22 - art_sys_150: -1.21566578e-23 - art_sys_151: 5.81669698e-23 - art_sys_152: -2.89426748e-19 - art_sys_153: 6.07669831e-22 - art_sys_154: 1.16634868e-22 - art_sys_155: 7.50783411e-20 - art_sys_156: 0.0 - art_sys_157: 1.23888657e-22 - art_sys_158: -0.0 - art_sys_159: 2.11636617e-23 - art_sys_160: 2.81661837e-20 - art_sys_161: -1.26889550e-23 - art_sys_162: -1.26889550e-23 - art_sys_163: -7.29507805e-21 - art_sys_164: -7.29507805e-21 - art_sys_165: -3.23473577e-21 - art_sys_166: -2.74291376e-22 - art_sys_167: -0.0 - art_sys_168: -1.33238599e-03 - art_sys_169: -4.47610907e-04 - art_sys_170: -1.92101654e-04 + art_sys_87: 1.49188195e-19 + art_sys_88: 6.86342763e-20 + art_sys_89: 1.08082059e-20 + art_sys_90: -1.14983409e-20 + art_sys_91: 7.91554684e-21 + art_sys_92: -7.20312598e-21 + art_sys_93: -9.48575025e-21 + art_sys_94: 8.51585439e-22 + art_sys_95: -1.20890362e-20 + art_sys_96: 2.18868594e-20 + art_sys_97: -9.17445501e-22 + art_sys_98: -7.63580690e-21 + art_sys_99: 5.38799530e-22 + art_sys_100: 1.53228369e-22 + art_sys_101: -6.38932169e-21 + art_sys_102: 1.52730310e-20 + art_sys_103: -4.26896066e-21 + art_sys_104: 1.62776026e-21 + art_sys_105: -4.93750086e-21 + art_sys_106: 2.09453813e-21 + art_sys_107: -1.92176351e-21 + art_sys_108: 3.53718397e-21 + art_sys_109: 1.60918740e-21 + art_sys_110: -6.93666100e-21 + art_sys_111: 4.05407910e-22 + art_sys_112: -1.28925402e-22 + art_sys_113: -1.17614213e-21 + art_sys_114: 6.69481300e-22 + art_sys_115: -2.03283185e-22 + art_sys_116: 9.59635120e-22 + art_sys_117: 4.08981767e-21 + art_sys_118: 1.83896596e-23 + art_sys_119: -2.16910042e-21 + art_sys_120: 8.85418620e-23 + art_sys_121: -2.88279416e-22 + art_sys_122: -2.03757219e-22 + art_sys_123: 7.89868185e-22 + art_sys_124: -1.41086830e-22 + art_sys_125: -9.93160236e-23 + art_sys_126: -5.34690158e-23 + art_sys_127: -2.49398798e-22 + art_sys_128: 5.55199251e-22 + art_sys_129: -6.93301715e-23 + art_sys_130: -6.99662421e-22 + art_sys_131: 2.30857006e-23 + art_sys_132: -8.00737460e-23 + art_sys_133: 9.65567623e-23 + art_sys_134: 9.83851510e-23 + art_sys_135: -1.09437561e-22 + art_sys_136: 3.01781123e-23 + art_sys_137: -2.49103867e-23 + art_sys_138: 1.51665023e-23 + art_sys_139: -2.91345129e-22 + art_sys_140: -2.13403433e-23 + art_sys_141: 2.65985809e-23 + art_sys_142: -0.0 + art_sys_143: -1.20412556e-23 + art_sys_144: -4.47461244e-24 + art_sys_145: 4.61890075e-24 + art_sys_146: 3.29013148e-21 + art_sys_147: 8.77115032e-22 + art_sys_148: 8.33592669e-23 + art_sys_149: -2.28911659e-22 + art_sys_150: -3.22330956e-21 + art_sys_151: 3.90218944e-21 + art_sys_152: 4.41343835e-22 + art_sys_153: 2.62696706e-22 + art_sys_154: -1.48680596e-19 + art_sys_155: -3.13059936e-20 + art_sys_156: 1.93485039e-20 + art_sys_157: 6.15671432e-21 + art_sys_158: 0.0 + art_sys_159: -5.36340466e-23 + art_sys_160: -5.36340466e-23 + art_sys_161: -1.35112345e-21 + art_sys_162: -3.23469886e-21 + art_sys_163: 0.0 + art_sys_164: 2.74277057e-22 + art_sys_165: -1.62601696e-01 + art_sys_166: 2.24298315e-02 + art_sys_167: -3.06550642e-02 + art_sys_168: 1.33238599e-03 + art_sys_169: 4.47610907e-04 + art_sys_170: 1.92101654e-04 art_sys_171: 6.54228052e-06 art_sys_172: 1.90472317e-06 - art_sys_173: 6.98917776e-07 - art_sys_174: -1.78312175e-09 - art_sys_175: -6.32858458e-10 - art_sys_176: 2.35885682e-10 - art_sys_177: -1.31830497e-11 - art_sys_178: 2.69596123e-12 - art_sys_179: 3.59466062e-17 - art_sys_180: 3.91796815e-19 - art_sys_181: -6.83156840e-11 - art_sys_182: 4.73983979e-13 - art_sys_183: -7.20985957e-14 - art_sys_184: 1.23670669e-14 - art_sys_185: 1.14422274e-15 + art_sys_173: -6.98917776e-07 + art_sys_174: -3.59466062e-17 + art_sys_175: 1.78312175e-09 + art_sys_176: 6.32858458e-10 + art_sys_177: -2.35885682e-10 + art_sys_178: -6.83156840e-11 + art_sys_179: -1.31830497e-11 + art_sys_180: 2.69596123e-12 + art_sys_181: 4.73983978e-13 + art_sys_182: 7.20985957e-14 + art_sys_183: 1.23670669e-14 + art_sys_184: -1.14422274e-15 + art_sys_185: 3.91796815e-19 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -46572,127 +46572,127 @@ bins: art_sys_62: 0.0 art_sys_63: 0.0 art_sys_64: 0.0 - art_sys_65: 0.0 - art_sys_66: 0.0 - art_sys_67: 0.0 - art_sys_68: 0.0 - art_sys_69: 0.0 - art_sys_70: 0.0 - art_sys_71: 0.0 - art_sys_72: -3.19352327e-194 - art_sys_73: 1.97946170e-185 - art_sys_74: 6.17050938e-187 - art_sys_75: 3.03088228e-71 - art_sys_76: 3.68113545e-04 + art_sys_65: 1.61651038e-255 + art_sys_66: 4.97797357e-180 + art_sys_67: 1.33982564e-137 + art_sys_68: 3.74508690e-127 + art_sys_69: -7.08520015e-135 + art_sys_70: 3.53194474e-133 + art_sys_71: 3.61774401e-127 + art_sys_72: -1.37053534e-114 + art_sys_73: 8.92489862e-103 + art_sys_74: 5.27771481e-105 + art_sys_75: 2.48443578e-33 + art_sys_76: -3.68113545e-04 art_sys_77: 1.08250018e-03 art_sys_78: -1.16858131e-03 - art_sys_79: 2.73276525e-23 - art_sys_80: 2.53615436e-04 - art_sys_81: 8.91802923e-23 - art_sys_82: 4.19224109e-24 - art_sys_83: -1.96357255e-02 - art_sys_84: 1.42344586e-02 + art_sys_79: -1.44276616e-23 + art_sys_80: 1.65200714e-24 + art_sys_81: 2.53615436e-04 + art_sys_82: 1.96357255e-02 + art_sys_83: -1.42344586e-02 + art_sys_84: 1.14961935e-20 art_sys_85: 8.30493993e-02 art_sys_86: 4.91203192e-02 - art_sys_87: -3.97267831e-20 - art_sys_88: -3.13819337e-20 - art_sys_89: 7.08353083e-02 - art_sys_90: 1.28734929e-19 - art_sys_91: -4.48448319e-21 - art_sys_92: -9.20702885e-02 - art_sys_93: -4.80288106e-02 - art_sys_94: 2.90452809e-20 - art_sys_95: 7.53456243e-22 - art_sys_96: 3.29458207e-20 - art_sys_97: 7.00219013e-21 - art_sys_98: -9.04122276e-20 - art_sys_99: -2.21251730e-20 - art_sys_100: -6.60467275e-20 - art_sys_101: -2.24923611e-20 - art_sys_102: 6.67216096e-21 - art_sys_103: 6.31000810e-21 - art_sys_104: 3.38565204e-20 - art_sys_105: -1.59027945e-20 - art_sys_106: -3.26762899e-20 - art_sys_107: 5.51503775e-20 - art_sys_108: -1.51413273e-20 - art_sys_109: 2.28267354e-20 - art_sys_110: -2.00642692e-21 - art_sys_111: 4.28113511e-21 - art_sys_112: -1.22505757e-20 - art_sys_113: 5.12180224e-21 - art_sys_114: -3.17415847e-21 - art_sys_115: 8.91729883e-21 - art_sys_116: 2.76291301e-20 - art_sys_117: -4.88199806e-21 - art_sys_118: 7.65707264e-21 - art_sys_119: -2.30360362e-21 - art_sys_120: -1.51590409e-20 - art_sys_121: -7.58492433e-21 - art_sys_122: -8.56110864e-21 - art_sys_123: -1.22882027e-20 - art_sys_124: 1.53286727e-21 - art_sys_125: -2.64500942e-21 - art_sys_126: 6.54727360e-21 - art_sys_127: 4.00696165e-21 - art_sys_128: -2.56119936e-21 - art_sys_129: 1.08746006e-20 - art_sys_130: 6.38204296e-21 - art_sys_131: 1.08163417e-21 - art_sys_132: -4.45749445e-21 - art_sys_133: 1.66726566e-21 - art_sys_134: -3.68097187e-21 - art_sys_135: 2.97199989e-22 - art_sys_136: 3.05867928e-21 - art_sys_137: -4.39828731e-22 - art_sys_138: -2.32708542e-23 - art_sys_139: -3.79839258e-22 - art_sys_140: -6.15181586e-23 - art_sys_141: 1.08671308e-21 - art_sys_142: 1.52092738e-21 - art_sys_143: 3.71810206e-23 - art_sys_144: 1.25187721e-21 - art_sys_145: 1.77023266e-21 - art_sys_146: 1.83694437e-22 - art_sys_147: 2.14454734e-22 - art_sys_148: -2.35524343e-20 - art_sys_149: 6.47545557e-23 - art_sys_150: -1.50617021e-22 - art_sys_151: -2.13725354e-22 - art_sys_152: 2.50183666e-19 - art_sys_153: 2.61355133e-22 - art_sys_154: -1.43269629e-22 - art_sys_155: -6.28961739e-20 - art_sys_156: 0.0 - art_sys_157: 1.61885895e-22 + art_sys_87: -8.72044217e-20 + art_sys_88: -1.76395519e-20 + art_sys_89: -1.67470561e-21 + art_sys_90: 1.05286032e-20 + art_sys_91: -5.45468712e-22 + art_sys_92: 7.61115181e-21 + art_sys_93: 8.56094346e-21 + art_sys_94: -2.42957529e-21 + art_sys_95: 4.94383173e-21 + art_sys_96: -2.39041768e-20 + art_sys_97: 4.41085520e-22 + art_sys_98: 3.27597455e-21 + art_sys_99: 4.41775136e-22 + art_sys_100: 2.94606646e-22 + art_sys_101: 3.39437336e-21 + art_sys_102: -5.59160740e-21 + art_sys_103: 8.40442786e-22 + art_sys_104: -4.47667476e-22 + art_sys_105: 3.09518752e-21 + art_sys_106: -1.48467840e-21 + art_sys_107: 9.91819578e-22 + art_sys_108: -1.44356710e-21 + art_sys_109: -7.93757680e-22 + art_sys_110: 1.09769986e-21 + art_sys_111: 2.80417408e-22 + art_sys_112: -6.31949672e-22 + art_sys_113: 1.26471155e-21 + art_sys_114: -7.57433225e-22 + art_sys_115: -2.88915619e-22 + art_sys_116: -9.11210182e-22 + art_sys_117: -3.03989648e-22 + art_sys_118: -1.16646465e-22 + art_sys_119: 1.08914972e-21 + art_sys_120: 1.44989656e-22 + art_sys_121: 2.01354328e-22 + art_sys_122: -7.80855898e-23 + art_sys_123: -2.20406287e-22 + art_sys_124: -3.73533925e-23 + art_sys_125: 5.59485727e-23 + art_sys_126: 2.55721624e-23 + art_sys_127: 1.87379132e-22 + art_sys_128: -6.72285654e-22 + art_sys_129: 1.66529269e-22 + art_sys_130: 1.47701923e-22 + art_sys_131: 1.67687602e-22 + art_sys_132: 6.39195654e-23 + art_sys_133: 2.69356094e-23 + art_sys_134: -1.02202692e-22 + art_sys_135: 2.84803225e-23 + art_sys_136: -3.23043977e-23 + art_sys_137: 1.07555016e-24 + art_sys_138: 5.81588592e-24 + art_sys_139: 9.14635378e-23 + art_sys_140: 9.45901775e-24 + art_sys_141: -2.53974752e-23 + art_sys_142: 0.0 + art_sys_143: 3.47964420e-24 + art_sys_144: 4.72634336e-24 + art_sys_145: 3.29319585e-24 + art_sys_146: -2.01243803e-21 + art_sys_147: -2.19395195e-22 + art_sys_148: 1.18339314e-22 + art_sys_149: -9.42344744e-23 + art_sys_150: 6.34501050e-22 + art_sys_151: -7.01802258e-21 + art_sys_152: 8.73865985e-22 + art_sys_153: -2.44602034e-21 + art_sys_154: 1.32745408e-19 + art_sys_155: 3.56984327e-20 + art_sys_156: -1.59719811e-20 + art_sys_157: -1.82747007e-20 art_sys_158: -0.0 - art_sys_159: 1.32187943e-23 - art_sys_160: -2.28932928e-20 - art_sys_161: 8.95249273e-24 - art_sys_162: 8.95249273e-24 - art_sys_163: 6.54495424e-21 - art_sys_164: 6.54495424e-21 - art_sys_165: 1.21236277e-20 - art_sys_166: 1.02326212e-21 - art_sys_167: 0.0 - art_sys_168: 4.88467869e-03 - art_sys_169: 1.27830347e-03 - art_sys_170: 6.26384981e-04 + art_sys_159: -5.50520245e-24 + art_sys_160: -5.50520245e-24 + art_sys_161: 1.11498713e-21 + art_sys_162: 1.21235630e-20 + art_sys_163: -0.0 + art_sys_164: -1.02327323e-21 + art_sys_165: -7.08353083e-02 + art_sys_166: -9.20702885e-02 + art_sys_167: 4.80288106e-02 + art_sys_168: -4.88467869e-03 + art_sys_169: -1.27830347e-03 + art_sys_170: -6.26384981e-04 art_sys_171: -2.51499998e-05 art_sys_172: -6.42645336e-06 - art_sys_173: -2.55845223e-06 - art_sys_174: 8.79520325e-09 - art_sys_175: 1.80977099e-09 - art_sys_176: -1.03667391e-09 - art_sys_177: 5.23544195e-11 - art_sys_178: -1.01990399e-11 - art_sys_179: -1.36136190e-16 - art_sys_180: -1.35490357e-18 - art_sys_181: 2.35069720e-10 - art_sys_182: -1.76764351e-12 - art_sys_183: 2.79760534e-13 - art_sys_184: -4.63822680e-14 - art_sys_185: -4.47947512e-15 + art_sys_173: 2.55845223e-06 + art_sys_174: 1.36136190e-16 + art_sys_175: -8.79520325e-09 + art_sys_176: -1.80977099e-09 + art_sys_177: 1.03667391e-09 + art_sys_178: 2.35069720e-10 + art_sys_179: 5.23544195e-11 + art_sys_180: -1.01990399e-11 + art_sys_181: -1.76764351e-12 + art_sys_182: -2.79760534e-13 + art_sys_183: -4.63822680e-14 + art_sys_184: 4.47947512e-15 + art_sys_185: -1.35490357e-18 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -46863,127 +46863,127 @@ bins: art_sys_62: 0.0 art_sys_63: 0.0 art_sys_64: 0.0 - art_sys_65: 0.0 - art_sys_66: 0.0 - art_sys_67: 0.0 - art_sys_68: 0.0 - art_sys_69: 0.0 - art_sys_70: 0.0 - art_sys_71: 0.0 - art_sys_72: 7.78479020e-196 - art_sys_73: -4.82529567e-187 - art_sys_74: -1.50417319e-188 - art_sys_75: -7.38808995e-73 - art_sys_76: -8.97314949e-06 + art_sys_65: -3.94093215e-257 + art_sys_66: -1.21343270e-181 + art_sys_67: -3.26596397e-139 + art_sys_68: -9.12903779e-129 + art_sys_69: 1.72709103e-136 + art_sys_70: -8.60948167e-135 + art_sys_71: -8.81862629e-129 + art_sys_72: 3.34082207e-116 + art_sys_73: -2.17553662e-104 + art_sys_74: -1.28649773e-106 + art_sys_75: -6.05606991e-35 + art_sys_76: 8.97314949e-06 art_sys_77: 3.78401236e-04 art_sys_78: -7.88297274e-04 - art_sys_79: 2.29617555e-23 - art_sys_80: -4.32530253e-04 - art_sys_81: -9.73490720e-23 - art_sys_82: 3.02126528e-24 - art_sys_83: -1.99822595e-04 - art_sys_84: -7.51026517e-03 + art_sys_79: -1.49822484e-23 + art_sys_80: 1.77503949e-24 + art_sys_81: -4.32530253e-04 + art_sys_82: 1.99822595e-04 + art_sys_83: 7.51026517e-03 + art_sys_84: -2.86461671e-21 art_sys_85: 3.62769579e-04 art_sys_86: 6.55998977e-03 - art_sys_87: -1.48679751e-20 - art_sys_88: 3.23448253e-22 - art_sys_89: -2.85816045e-02 - art_sys_90: -5.84826612e-20 - art_sys_91: -1.46109775e-20 - art_sys_92: -9.75427685e-02 - art_sys_93: 5.29020574e-02 - art_sys_94: -1.85776796e-20 - art_sys_95: -9.16697338e-20 - art_sys_96: -2.71564084e-20 - art_sys_97: 2.37930535e-21 - art_sys_98: 2.53611636e-20 - art_sys_99: 5.22492512e-20 - art_sys_100: -2.43624813e-20 - art_sys_101: 8.10176216e-21 - art_sys_102: 1.09403110e-20 - art_sys_103: -2.07908317e-20 - art_sys_104: -1.38505717e-20 - art_sys_105: 2.14923378e-21 - art_sys_106: 1.76041665e-20 - art_sys_107: 3.11837705e-20 - art_sys_108: -7.50461223e-21 - art_sys_109: -3.01423837e-20 - art_sys_110: 2.73855129e-20 - art_sys_111: 5.60966627e-21 - art_sys_112: 1.36766091e-20 - art_sys_113: 5.94022429e-21 - art_sys_114: 5.06792929e-20 - art_sys_115: 1.16784650e-20 - art_sys_116: 3.99890795e-22 - art_sys_117: -1.29052411e-20 - art_sys_118: 1.96564379e-21 - art_sys_119: 2.70286691e-21 - art_sys_120: -4.85511255e-21 - art_sys_121: -9.51022540e-21 - art_sys_122: -1.20242149e-20 - art_sys_123: -3.49993037e-21 - art_sys_124: -9.05460260e-21 - art_sys_125: -1.17437386e-21 - art_sys_126: 4.56395492e-21 - art_sys_127: 5.82609529e-21 - art_sys_128: 2.93661284e-21 - art_sys_129: 7.49312512e-21 - art_sys_130: 2.50839006e-21 - art_sys_131: 6.93367195e-22 - art_sys_132: -1.38902405e-22 - art_sys_133: -2.36733873e-21 - art_sys_134: 2.29955146e-21 - art_sys_135: -1.81063211e-21 - art_sys_136: 4.32238258e-21 - art_sys_137: 4.43509954e-22 - art_sys_138: 1.14118377e-21 - art_sys_139: -2.21433008e-23 - art_sys_140: 4.48032218e-21 - art_sys_141: 1.73587520e-21 - art_sys_142: -5.55201710e-22 - art_sys_143: -1.21204134e-22 - art_sys_144: -9.61169407e-22 - art_sys_145: 2.79368994e-22 - art_sys_146: 1.97739536e-21 - art_sys_147: 2.03052752e-21 - art_sys_148: 2.29151099e-20 - art_sys_149: 9.38942662e-22 - art_sys_150: 3.91415346e-22 - art_sys_151: 6.44825528e-22 - art_sys_152: -1.97289574e-19 - art_sys_153: -2.84746321e-23 - art_sys_154: 1.07670755e-22 - art_sys_155: 4.96675389e-20 - art_sys_156: 0.0 - art_sys_157: 1.82611657e-22 + art_sys_87: -8.98193638e-21 + art_sys_88: -4.41172686e-21 + art_sys_89: -7.24463733e-22 + art_sys_90: 5.34083853e-22 + art_sys_91: -5.31471710e-22 + art_sys_92: 3.63739753e-22 + art_sys_93: 4.91954775e-22 + art_sys_94: -3.25199208e-23 + art_sys_95: 7.04983921e-22 + art_sys_96: -1.15214276e-21 + art_sys_97: 5.59164999e-23 + art_sys_98: 4.87148844e-22 + art_sys_99: -3.62488530e-23 + art_sys_100: -2.71454118e-23 + art_sys_101: 3.83602780e-22 + art_sys_102: -9.49839130e-22 + art_sys_103: 2.73547599e-22 + art_sys_104: -9.23174453e-23 + art_sys_105: 2.90222902e-22 + art_sys_106: -1.18521405e-22 + art_sys_107: 1.14085971e-22 + art_sys_108: -2.20502946e-22 + art_sys_109: -9.68519071e-23 + art_sys_110: 4.64867835e-22 + art_sys_111: -3.04575653e-23 + art_sys_112: 1.78400454e-23 + art_sys_113: 5.03201438e-23 + art_sys_114: -3.73798707e-23 + art_sys_115: 2.13412197e-23 + art_sys_116: -4.88262553e-23 + art_sys_117: -2.71629796e-22 + art_sys_118: -2.54785964e-25 + art_sys_119: 1.39142064e-22 + art_sys_120: -7.94304458e-24 + art_sys_121: 1.82642661e-23 + art_sys_122: 1.59085991e-23 + art_sys_123: -4.82131005e-23 + art_sys_124: 9.43438241e-24 + art_sys_125: 6.13925388e-24 + art_sys_126: 4.93073063e-24 + art_sys_127: 1.42209450e-23 + art_sys_128: -2.94213035e-23 + art_sys_129: 1.68919769e-24 + art_sys_130: 4.14228817e-23 + art_sys_131: -4.13940263e-24 + art_sys_132: 4.75730681e-24 + art_sys_133: -6.65883741e-24 + art_sys_134: -4.41777769e-24 + art_sys_135: 6.51137925e-24 + art_sys_136: 3.96698629e-25 + art_sys_137: 1.64905966e-24 + art_sys_138: -1.21565459e-23 + art_sys_139: 2.00004793e-22 + art_sys_140: 1.31519393e-24 + art_sys_141: 5.47274005e-23 + art_sys_142: 0.0 + art_sys_143: -7.08198392e-25 + art_sys_144: -8.17273980e-24 + art_sys_145: -1.97780151e-23 + art_sys_146: -1.40550183e-22 + art_sys_147: -5.55016701e-23 + art_sys_148: -6.03930616e-24 + art_sys_149: 2.17562796e-21 + art_sys_150: 3.78781338e-21 + art_sys_151: 1.21354052e-21 + art_sys_152: 7.09675477e-22 + art_sys_153: 1.60619824e-21 + art_sys_154: -1.01580025e-19 + art_sys_155: -2.19027567e-20 + art_sys_156: 1.28696049e-20 + art_sys_157: 1.20738882e-20 art_sys_158: 0.0 - art_sys_159: -3.73628977e-23 - art_sys_160: 1.92000049e-20 - art_sys_161: -1.54404759e-23 - art_sys_162: -1.54404759e-23 - art_sys_163: -5.31279227e-21 - art_sys_164: -5.31279227e-21 - art_sys_165: -3.83438112e-20 - art_sys_166: -3.21555240e-21 - art_sys_167: -0.0 - art_sys_168: -3.09653715e-03 - art_sys_169: -2.55839587e-03 - art_sys_170: -1.08840712e-03 + art_sys_159: 3.40395174e-23 + art_sys_160: 3.40395174e-23 + art_sys_161: -9.95925913e-22 + art_sys_162: -3.83437412e-20 + art_sys_163: 0.0 + art_sys_164: 3.21555976e-21 + art_sys_165: 2.85816045e-02 + art_sys_166: -9.75427685e-02 + art_sys_167: -5.29020574e-02 + art_sys_168: 3.09653715e-03 + art_sys_169: 2.55839587e-03 + art_sys_170: 1.08840712e-03 art_sys_171: 5.33271702e-05 art_sys_172: 1.55741371e-05 - art_sys_173: 5.94374438e-06 - art_sys_174: -2.65569941e-08 - art_sys_175: -6.47343671e-09 - art_sys_176: 2.91304839e-09 - art_sys_177: -1.51911971e-10 - art_sys_178: 3.24734326e-11 - art_sys_179: 4.18113663e-16 - art_sys_180: 4.07980774e-18 - art_sys_181: -7.99516742e-10 - art_sys_182: 5.46749187e-12 - art_sys_183: -8.51766525e-13 - art_sys_184: 1.45768359e-13 - art_sys_185: 1.35663946e-14 + art_sys_173: -5.94374438e-06 + art_sys_174: -4.18113663e-16 + art_sys_175: 2.65569941e-08 + art_sys_176: 6.47343671e-09 + art_sys_177: -2.91304839e-09 + art_sys_178: -7.99516742e-10 + art_sys_179: -1.51911971e-10 + art_sys_180: 3.24734326e-11 + art_sys_181: 5.46749187e-12 + art_sys_182: 8.51766525e-13 + art_sys_183: 1.45768359e-13 + art_sys_184: -1.35663946e-14 + art_sys_185: 4.07980774e-18 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -47154,127 +47154,127 @@ bins: art_sys_62: 0.0 art_sys_63: 0.0 art_sys_64: 0.0 - art_sys_65: 0.0 - art_sys_66: 0.0 - art_sys_67: 0.0 - art_sys_68: 0.0 - art_sys_69: 0.0 - art_sys_70: 0.0 - art_sys_71: 0.0 - art_sys_72: 5.99837050e-196 - art_sys_73: -3.71800787e-187 - art_sys_74: -1.15900209e-188 - art_sys_75: -5.69284586e-73 - art_sys_76: -6.91420344e-06 + art_sys_65: -3.03634243e-257 + art_sys_66: -9.35002869e-182 + art_sys_67: -2.51656782e-139 + art_sys_68: -7.03432218e-129 + art_sys_69: 1.33079904e-136 + art_sys_70: -6.63398151e-135 + art_sys_71: -6.79513657e-129 + art_sys_72: 2.57424926e-116 + art_sys_73: -1.67634594e-104 + art_sys_74: -9.91302668e-107 + art_sys_75: -4.66646627e-35 + art_sys_76: 6.91420344e-06 art_sys_77: 4.43448108e-05 art_sys_78: -1.05908136e-04 - art_sys_79: 3.13080204e-24 - art_sys_80: -6.09551521e-05 - art_sys_81: -1.39709990e-23 - art_sys_82: 4.09895785e-25 - art_sys_83: 9.06624040e-04 - art_sys_84: -1.49866755e-03 + art_sys_79: -2.10986450e-24 + art_sys_80: 2.42242038e-25 + art_sys_81: -6.09551521e-05 + art_sys_82: -9.06624040e-04 + art_sys_83: 1.49866755e-03 + art_sys_84: -8.65045347e-22 art_sys_85: -4.42117708e-03 art_sys_86: -2.44412873e-03 - art_sys_87: 1.43213684e-21 - art_sys_88: 1.60492907e-21 - art_sys_89: -7.78731473e-03 - art_sys_90: -1.47776390e-20 - art_sys_91: -6.08047885e-22 - art_sys_92: 2.61815222e-03 - art_sys_93: 1.63842154e-02 - art_sys_94: 1.84553559e-21 - art_sys_95: -1.01428912e-20 - art_sys_96: -8.07501871e-21 - art_sys_97: -5.10293571e-21 - art_sys_98: 1.90016431e-20 - art_sys_99: 9.55860707e-21 - art_sys_100: 7.49226035e-21 - art_sys_101: 5.01076833e-21 - art_sys_102: -7.64708996e-22 - art_sys_103: -2.94648637e-21 - art_sys_104: -6.43052869e-21 - art_sys_105: 4.58532746e-21 - art_sys_106: 5.36662208e-21 - art_sys_107: -1.32732143e-21 - art_sys_108: 1.20189798e-21 - art_sys_109: -8.39936303e-21 - art_sys_110: 2.54520922e-21 - art_sys_111: -3.41084768e-22 - art_sys_112: 4.41712181e-21 - art_sys_113: -2.29476957e-22 - art_sys_114: 6.09414961e-21 - art_sys_115: -5.04270350e-23 - art_sys_116: -4.50871076e-21 - art_sys_117: 7.05679642e-22 - art_sys_118: -1.26460476e-21 - art_sys_119: 4.33722202e-22 - art_sys_120: 1.76059656e-21 - art_sys_121: 7.29015429e-23 - art_sys_122: -5.73311180e-22 - art_sys_123: 1.70057763e-21 - art_sys_124: -1.75882741e-21 - art_sys_125: 1.10543725e-22 - art_sys_126: -2.81678491e-22 - art_sys_127: -9.76909247e-23 - art_sys_128: 6.50100302e-22 - art_sys_129: -1.37821274e-22 - art_sys_130: -9.01190067e-22 - art_sys_131: 4.64777238e-22 - art_sys_132: 7.54458456e-22 - art_sys_133: -5.80393505e-22 - art_sys_134: 8.12533447e-22 - art_sys_135: -3.21250691e-22 - art_sys_136: -6.53692972e-21 - art_sys_137: 2.15122054e-22 - art_sys_138: 1.85359493e-22 - art_sys_139: -3.00908187e-23 - art_sys_140: -6.05067894e-21 - art_sys_141: -3.69509671e-24 - art_sys_142: -3.34368112e-22 - art_sys_143: 6.00049809e-25 - art_sys_144: 3.20621588e-21 - art_sys_145: -3.32480362e-22 - art_sys_146: 4.93107975e-23 - art_sys_147: -9.38235096e-22 - art_sys_148: -2.14594748e-20 - art_sys_149: 1.20008860e-22 - art_sys_150: -2.29528597e-21 - art_sys_151: -1.49222650e-21 - art_sys_152: 2.40783798e-19 - art_sys_153: 1.68962661e-22 - art_sys_154: 4.32369714e-23 - art_sys_155: -6.41498751e-20 - art_sys_156: 0.0 - art_sys_157: -2.55217080e-25 + art_sys_87: 4.73406042e-21 + art_sys_88: 7.79550352e-22 + art_sys_89: 4.49355089e-23 + art_sys_90: -5.50523858e-22 + art_sys_91: -6.09690607e-24 + art_sys_92: -4.05289398e-22 + art_sys_93: -4.43540364e-22 + art_sys_94: 1.39436636e-22 + art_sys_95: -2.19718984e-22 + art_sys_96: 1.24618202e-21 + art_sys_97: -1.21611577e-23 + art_sys_98: -1.60085410e-22 + art_sys_99: -3.17092068e-23 + art_sys_100: -2.04416407e-23 + art_sys_101: -1.67346623e-22 + art_sys_102: 2.58843005e-22 + art_sys_103: -2.97539077e-23 + art_sys_104: 1.76178611e-23 + art_sys_105: -1.62259644e-22 + art_sys_106: 7.43943783e-23 + art_sys_107: -4.90463431e-23 + art_sys_108: 7.13792759e-23 + art_sys_109: 4.51194603e-23 + art_sys_110: -4.08351887e-23 + art_sys_111: -2.51875006e-23 + art_sys_112: 3.40266846e-23 + art_sys_113: -6.70367013e-23 + art_sys_114: 4.15326295e-23 + art_sys_115: 1.85673051e-23 + art_sys_116: 4.73675007e-23 + art_sys_117: -1.21537373e-24 + art_sys_118: 6.39290078e-24 + art_sys_119: -5.76913966e-23 + art_sys_120: -8.31177409e-24 + art_sys_121: -9.80524957e-24 + art_sys_122: 5.55254063e-24 + art_sys_123: 1.01108170e-23 + art_sys_124: 2.85072596e-24 + art_sys_125: -2.42341147e-24 + art_sys_126: 2.07923343e-24 + art_sys_127: -9.99970264e-24 + art_sys_128: 3.61718176e-23 + art_sys_129: -9.31944875e-24 + art_sys_130: -5.94956867e-24 + art_sys_131: -9.89087110e-24 + art_sys_132: -3.30166849e-24 + art_sys_133: -1.88125209e-24 + art_sys_134: 5.77988941e-24 + art_sys_135: -9.98065420e-25 + art_sys_136: 1.98090632e-24 + art_sys_137: -2.59776020e-26 + art_sys_138: -1.46681261e-24 + art_sys_139: -7.09909588e-25 + art_sys_140: -4.42847901e-25 + art_sys_141: 2.19638366e-23 + art_sys_142: 0.0 + art_sys_143: -1.19347334e-24 + art_sys_144: -5.78295931e-24 + art_sys_145: -7.66970868e-24 + art_sys_146: 1.07303952e-22 + art_sys_147: 7.74733272e-24 + art_sys_148: -8.14036856e-24 + art_sys_149: 2.85002041e-22 + art_sys_150: 2.67527320e-22 + art_sys_151: 1.47125764e-21 + art_sys_152: 3.41556169e-22 + art_sys_153: -3.99344897e-22 + art_sys_154: 1.19708349e-19 + art_sys_155: 3.22494408e-20 + art_sys_156: -1.28876533e-20 + art_sys_157: -2.94535851e-20 art_sys_158: -0.0 - art_sys_159: 4.30521295e-23 - art_sys_160: -2.37075766e-20 - art_sys_161: -1.87404274e-23 - art_sys_162: -1.87404274e-23 - art_sys_163: 6.54815008e-21 - art_sys_164: 6.54815008e-21 - art_sys_165: 1.41154962e-19 - art_sys_166: 1.19993422e-20 - art_sys_167: 0.0 - art_sys_168: 3.06116706e-02 - art_sys_169: 5.91395387e-03 - art_sys_170: 4.61418038e-03 + art_sys_159: 3.59126834e-23 + art_sys_160: 3.59126834e-23 + art_sys_161: 9.72068909e-22 + art_sys_162: 1.41154910e-19 + art_sys_163: -0.0 + art_sys_164: -1.19993417e-20 + art_sys_165: 7.78731473e-03 + art_sys_166: 2.61815222e-03 + art_sys_167: -1.63842154e-02 + art_sys_168: -3.06116706e-02 + art_sys_169: -5.91395387e-03 + art_sys_170: -4.61418038e-03 art_sys_171: -1.83762673e-04 art_sys_172: -5.75051615e-05 - art_sys_173: -2.31981897e-05 - art_sys_174: 7.16976572e-08 - art_sys_175: 2.32751474e-08 - art_sys_176: -1.05598498e-08 - art_sys_177: 5.96286168e-10 - art_sys_178: -1.14402128e-10 - art_sys_179: -1.59599162e-15 - art_sys_180: -1.76870870e-17 - art_sys_181: 2.70366399e-09 - art_sys_182: -2.08563655e-11 - art_sys_183: 3.19627515e-12 - art_sys_184: -5.40075035e-13 - art_sys_185: -5.09840259e-14 + art_sys_173: 2.31981897e-05 + art_sys_174: 1.59599162e-15 + art_sys_175: -7.16976572e-08 + art_sys_176: -2.32751474e-08 + art_sys_177: 1.05598498e-08 + art_sys_178: 2.70366399e-09 + art_sys_179: 5.96286168e-10 + art_sys_180: -1.14402128e-10 + art_sys_181: -2.08563655e-11 + art_sys_182: -3.19627515e-12 + art_sys_183: -5.40075035e-13 + art_sys_184: 5.09840259e-14 + art_sys_185: -1.76870870e-17 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -47445,127 +47445,127 @@ bins: art_sys_62: 0.0 art_sys_63: 0.0 art_sys_64: 0.0 - art_sys_65: 0.0 - art_sys_66: 0.0 - art_sys_67: 0.0 - art_sys_68: 0.0 - art_sys_69: 0.0 - art_sys_70: 0.0 - art_sys_71: 0.0 - art_sys_72: 6.73830904e-197 - art_sys_73: -4.17664864e-188 - art_sys_74: -1.30197263e-189 - art_sys_75: -6.39510263e-74 - art_sys_76: -7.76712415e-07 + art_sys_65: -3.41088391e-258 + art_sys_66: -1.05034274e-182 + art_sys_67: -2.82700602e-140 + art_sys_68: -7.90206047e-130 + art_sys_69: 1.49496344e-137 + art_sys_70: -7.45233466e-136 + art_sys_71: -7.63336946e-130 + art_sys_72: 2.89180290e-117 + art_sys_73: -1.88313624e-105 + art_sys_74: -1.11358755e-107 + art_sys_75: -5.24211114e-36 + art_sys_76: 7.76712415e-07 art_sys_77: 3.81866279e-06 art_sys_78: -8.41035134e-06 - art_sys_79: 8.68462633e-26 - art_sys_80: -6.31672737e-08 - art_sys_81: 5.93502560e-26 - art_sys_82: 3.26159914e-26 - art_sys_83: 1.10360371e-04 - art_sys_84: 7.19439318e-05 + art_sys_79: -1.63160279e-25 + art_sys_80: 1.43607515e-26 + art_sys_81: -6.31672737e-08 + art_sys_82: -1.10360371e-04 + art_sys_83: -7.19439318e-05 + art_sys_84: -5.55702155e-24 art_sys_85: -4.47231162e-04 art_sys_86: -4.65266960e-04 - art_sys_87: 6.30546897e-22 - art_sys_88: 2.87755930e-22 - art_sys_89: 1.95598560e-03 - art_sys_90: 3.95753674e-21 - art_sys_91: 1.07548749e-21 - art_sys_92: 7.37817817e-03 - art_sys_93: -4.98788088e-03 - art_sys_94: -1.84008076e-21 - art_sys_95: 7.38738389e-21 - art_sys_96: 2.36378979e-21 - art_sys_97: 4.26272236e-22 - art_sys_98: -2.94107440e-21 - art_sys_99: -4.41628661e-21 - art_sys_100: 1.55550859e-21 - art_sys_101: -8.55698076e-22 - art_sys_102: -9.32358219e-22 - art_sys_103: 1.67755354e-21 - art_sys_104: 1.28837472e-21 - art_sys_105: -4.99018671e-22 - art_sys_106: -1.67892588e-21 - art_sys_107: -2.44598748e-21 - art_sys_108: 4.93134638e-22 - art_sys_109: 2.76485628e-21 - art_sys_110: -2.12464058e-21 - art_sys_111: -3.49713549e-22 - art_sys_112: -1.31776177e-21 - art_sys_113: -3.74810397e-22 - art_sys_114: -4.05054344e-21 - art_sys_115: -8.90384805e-22 - art_sys_116: 1.73532080e-22 - art_sys_117: 8.34928477e-22 - art_sys_118: -6.69628318e-23 - art_sys_119: -2.03113728e-22 - art_sys_120: 3.03813061e-22 - art_sys_121: 7.01516501e-22 - art_sys_122: 9.83712808e-22 - art_sys_123: 1.74398956e-22 - art_sys_124: 8.07902017e-22 - art_sys_125: 1.01566819e-22 - art_sys_126: -3.55554784e-22 - art_sys_127: -4.26376293e-22 - art_sys_128: -2.44449340e-22 - art_sys_129: -6.33704343e-22 - art_sys_130: -2.83761959e-22 - art_sys_131: 7.75898097e-22 - art_sys_132: -2.83905937e-23 - art_sys_133: 2.12635626e-22 - art_sys_134: -2.10133004e-22 - art_sys_135: 1.57833550e-22 - art_sys_136: 1.57496888e-21 - art_sys_137: -4.78836170e-23 - art_sys_138: -9.91342366e-23 - art_sys_139: -2.12306520e-23 - art_sys_140: -1.73831784e-21 - art_sys_141: -1.40152416e-22 - art_sys_142: 5.93055129e-23 - art_sys_143: -3.51192963e-24 - art_sys_144: -4.23878581e-22 - art_sys_145: 6.89379281e-25 - art_sys_146: -5.48027721e-22 - art_sys_147: 1.23467234e-21 - art_sys_148: 2.13159072e-20 - art_sys_149: -6.89862807e-23 - art_sys_150: -1.22291201e-21 - art_sys_151: -2.22088161e-22 - art_sys_152: -1.84102971e-19 - art_sys_153: -2.03439881e-22 - art_sys_154: -1.07753986e-23 - art_sys_155: 4.85247968e-20 - art_sys_156: -0.0 - art_sys_157: -8.98991647e-24 - art_sys_158: -0.0 - art_sys_159: -1.80306932e-23 - art_sys_160: 1.89539543e-20 - art_sys_161: -5.43286246e-24 - art_sys_162: -5.43286246e-24 - art_sys_163: -4.96717027e-21 - art_sys_164: -4.96717027e-21 - art_sys_165: -6.04475067e-19 - art_sys_166: -5.07699641e-20 - art_sys_167: -0.0 - art_sys_168: 1.33094888e-02 - art_sys_169: -1.89645824e-02 - art_sys_170: -6.98784270e-03 + art_sys_87: 7.69730838e-22 + art_sys_88: 2.24632520e-22 + art_sys_89: 2.77254808e-23 + art_sys_90: -7.11477210e-23 + art_sys_91: 1.63084577e-23 + art_sys_92: -5.27417006e-23 + art_sys_93: -6.01142483e-23 + art_sys_94: 1.56626223e-23 + art_sys_95: -4.35455749e-23 + art_sys_96: 1.55409743e-22 + art_sys_97: -2.56766664e-24 + art_sys_98: -3.26903649e-23 + art_sys_99: -1.54817530e-24 + art_sys_100: -1.09937421e-24 + art_sys_101: -2.93819796e-23 + art_sys_102: 5.70758726e-23 + art_sys_103: -1.20623938e-23 + art_sys_104: 4.46909454e-24 + art_sys_105: -2.61854732e-23 + art_sys_106: 1.12622598e-23 + art_sys_107: -8.65532740e-24 + art_sys_108: 1.45971898e-23 + art_sys_109: 7.15081373e-24 + art_sys_110: -1.96580431e-23 + art_sys_111: -4.86054303e-25 + art_sys_112: 2.75352431e-24 + art_sys_113: -8.41607834e-24 + art_sys_114: 5.48023984e-24 + art_sys_115: 1.43076931e-24 + art_sys_116: 6.29953413e-24 + art_sys_117: 8.53307865e-24 + art_sys_118: 6.54341565e-25 + art_sys_119: -9.29317620e-24 + art_sys_120: -6.10551739e-25 + art_sys_121: -1.59443682e-24 + art_sys_122: 4.64438544e-26 + art_sys_123: 2.57914195e-24 + art_sys_124: 6.51826992e-27 + art_sys_125: -4.31347127e-25 + art_sys_126: -3.03967740e-25 + art_sys_127: -1.49297231e-24 + art_sys_128: 4.67419556e-24 + art_sys_129: -1.07861152e-24 + art_sys_130: -1.79100945e-24 + art_sys_131: -8.69112953e-25 + art_sys_132: -4.90431866e-25 + art_sys_133: 2.01217570e-26 + art_sys_134: 7.09035745e-25 + art_sys_135: -3.66230509e-25 + art_sys_136: 6.72264026e-26 + art_sys_137: -5.62307928e-26 + art_sys_138: 9.17274966e-25 + art_sys_139: -1.48064564e-23 + art_sys_140: -9.01297264e-26 + art_sys_141: -5.91713990e-24 + art_sys_142: -0.0 + art_sys_143: 1.77071408e-25 + art_sys_144: 1.18163051e-24 + art_sys_145: 2.19389720e-24 + art_sys_146: 1.39243469e-23 + art_sys_147: 2.50263996e-24 + art_sys_148: -7.18857009e-25 + art_sys_149: -1.81292360e-22 + art_sys_150: -2.96137687e-22 + art_sys_151: -6.92702716e-22 + art_sys_152: -1.39766938e-22 + art_sys_153: -1.41468337e-21 + art_sys_154: -9.48790239e-20 + art_sys_155: -2.34968219e-20 + art_sys_156: 1.01272070e-20 + art_sys_157: 2.03728288e-20 + art_sys_158: 0.0 + art_sys_159: -1.32815052e-23 + art_sys_160: -1.32815052e-23 + art_sys_161: -8.40850756e-22 + art_sys_162: -6.04474946e-19 + art_sys_163: 0.0 + art_sys_164: 5.07699677e-20 + art_sys_165: -1.95598560e-03 + art_sys_166: 7.37817817e-03 + art_sys_167: 4.98788088e-03 + art_sys_168: -1.33094888e-02 + art_sys_169: 1.89645824e-02 + art_sys_170: 6.98784270e-03 art_sys_171: 7.31921280e-04 art_sys_172: 1.68671491e-04 - art_sys_173: 7.83554807e-05 - art_sys_174: -4.43163895e-07 - art_sys_175: -8.44264841e-08 - art_sys_176: 4.85015249e-08 - art_sys_177: -2.43968037e-09 - art_sys_178: 5.16511018e-10 - art_sys_179: 6.66388699e-15 - art_sys_180: 6.11277083e-17 - art_sys_181: -1.19148186e-08 - art_sys_182: 8.54434190e-11 - art_sys_183: -1.37911344e-11 - art_sys_184: 2.30152619e-12 - art_sys_185: 2.21591861e-13 + art_sys_173: -7.83554807e-05 + art_sys_174: -6.66388699e-15 + art_sys_175: 4.43163895e-07 + art_sys_176: 8.44264841e-08 + art_sys_177: -4.85015249e-08 + art_sys_178: -1.19148186e-08 + art_sys_179: -2.43968037e-09 + art_sys_180: 5.16511018e-10 + art_sys_181: 8.54434190e-11 + art_sys_182: 1.37911344e-11 + art_sys_183: 2.30152619e-12 + art_sys_184: -2.21591861e-13 + art_sys_185: 6.11277083e-17 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -47736,127 +47736,127 @@ bins: art_sys_62: 0.0 art_sys_63: 0.0 art_sys_64: 0.0 - art_sys_65: 0.0 - art_sys_66: 0.0 - art_sys_67: 0.0 - art_sys_68: 0.0 - art_sys_69: 0.0 - art_sys_70: 0.0 - art_sys_71: 0.0 - art_sys_72: 3.41871101e-198 - art_sys_73: -2.11904123e-189 - art_sys_74: -6.60561598e-191 - art_sys_75: -3.24457471e-75 - art_sys_76: -3.94067400e-08 + art_sys_65: -1.73054236e-259 + art_sys_66: -5.32894574e-184 + art_sys_67: -1.43429008e-141 + art_sys_68: -4.00913435e-131 + art_sys_69: 7.58474237e-139 + art_sys_70: -3.78096459e-137 + art_sys_71: -3.87281314e-131 + art_sys_72: 1.46716497e-118 + art_sys_73: -9.55414883e-107 + art_sys_74: -5.64982022e-109 + art_sys_75: -2.65960098e-37 + art_sys_76: 3.94067400e-08 art_sys_77: 3.49835555e-07 art_sys_78: -5.48509185e-07 - art_sys_79: -4.01596505e-27 - art_sys_80: 9.95029366e-07 - art_sys_81: 2.49174468e-25 - art_sys_82: 2.12221564e-27 - art_sys_83: -1.05272557e-05 - art_sys_84: 6.42413964e-05 + art_sys_79: -9.14364465e-27 + art_sys_80: -8.01878449e-29 + art_sys_81: 9.95029366e-07 + art_sys_82: 1.05272557e-05 + art_sys_83: -6.42413964e-05 + art_sys_84: 2.85677988e-23 art_sys_85: 9.58745176e-05 art_sys_86: 4.28592571e-05 - art_sys_87: 1.64224914e-24 - art_sys_88: -2.05442439e-23 - art_sys_89: 4.86403726e-04 - art_sys_90: 9.42004853e-22 - art_sys_91: 2.83717441e-23 - art_sys_92: -2.81838063e-04 - art_sys_93: -1.41387088e-03 - art_sys_94: -3.38503195e-22 - art_sys_95: 7.82694677e-22 - art_sys_96: 6.65649079e-22 - art_sys_97: 5.26400962e-22 - art_sys_98: -1.63512130e-21 - art_sys_99: -7.73102248e-22 - art_sys_100: -6.51911886e-22 - art_sys_101: -4.36022308e-22 - art_sys_102: 9.64713615e-23 - art_sys_103: 2.25046314e-22 - art_sys_104: 5.25314371e-22 - art_sys_105: -4.34331203e-22 - art_sys_106: -4.22839093e-22 - art_sys_107: 6.72679178e-23 - art_sys_108: -1.42599196e-23 - art_sys_109: 7.23959948e-22 - art_sys_110: -1.74354552e-22 - art_sys_111: 2.70204750e-23 - art_sys_112: -3.85372891e-22 - art_sys_113: 2.46386172e-23 - art_sys_114: -4.59595623e-22 - art_sys_115: 1.30765004e-23 - art_sys_116: 3.85559218e-22 - art_sys_117: -9.16146432e-23 - art_sys_118: 1.15274247e-22 - art_sys_119: -2.99408361e-23 - art_sys_120: -1.51647798e-22 - art_sys_121: -1.33894506e-23 - art_sys_122: 5.07264708e-23 - art_sys_123: -1.50344328e-22 - art_sys_124: 1.53485170e-22 - art_sys_125: -1.21331951e-23 - art_sys_126: 2.22719730e-23 - art_sys_127: 1.72480570e-23 - art_sys_128: -5.08326280e-23 - art_sys_129: 2.66664342e-24 - art_sys_130: 8.21633905e-23 - art_sys_131: 3.64452798e-22 - art_sys_132: -6.62034478e-23 - art_sys_133: 4.79209366e-23 - art_sys_134: -6.62932553e-23 - art_sys_135: 2.74228523e-23 - art_sys_136: 3.23876005e-22 - art_sys_137: -1.84111250e-23 - art_sys_138: -1.59888491e-23 - art_sys_139: -2.17303857e-24 - art_sys_140: -2.66726158e-21 - art_sys_141: 2.33707090e-24 - art_sys_142: 2.87459235e-23 - art_sys_143: -4.30832855e-24 - art_sys_144: 1.02200102e-21 - art_sys_145: 3.03631051e-23 - art_sys_146: -2.44074405e-22 - art_sys_147: 7.62853923e-23 - art_sys_148: -1.56638096e-20 - art_sys_149: -7.25289716e-24 - art_sys_150: -2.00835422e-22 - art_sys_151: 1.33375088e-22 - art_sys_152: 1.45279973e-19 - art_sys_153: -1.99893640e-24 - art_sys_154: -3.80933367e-24 - art_sys_155: -3.95400655e-20 - art_sys_156: 0.0 - art_sys_157: -6.16332393e-24 - art_sys_158: 0.0 - art_sys_159: 4.77171758e-23 - art_sys_160: -1.50291675e-20 - art_sys_161: -2.18743749e-23 - art_sys_162: -2.18743749e-23 - art_sys_163: 4.01524833e-21 - art_sys_164: 4.01524833e-21 - art_sys_165: 2.11556945e-18 - art_sys_166: 1.77817946e-19 - art_sys_167: 0.0 - art_sys_168: -4.24917491e-03 - art_sys_169: -1.35293148e-02 - art_sys_170: 1.21974535e-02 + art_sys_87: -9.33330317e-23 + art_sys_88: -8.15341902e-24 + art_sys_89: 1.29198666e-24 + art_sys_90: 1.15437766e-23 + art_sys_91: 1.77829176e-24 + art_sys_92: 8.62197956e-24 + art_sys_93: 8.96733598e-24 + art_sys_94: -3.36255374e-24 + art_sys_95: 2.84794618e-24 + art_sys_96: -2.41783488e-23 + art_sys_97: -2.13145142e-25 + art_sys_98: 2.62425836e-24 + art_sys_99: 8.60170144e-25 + art_sys_100: 6.82332913e-25 + art_sys_101: 2.91653668e-24 + art_sys_102: -3.53902834e-24 + art_sys_103: 9.42745140e-26 + art_sys_104: -1.20320363e-25 + art_sys_105: 3.28449027e-24 + art_sys_106: -1.37590807e-24 + art_sys_107: 8.60421596e-25 + art_sys_108: -1.22043087e-24 + art_sys_109: -8.06849125e-25 + art_sys_110: -6.86145429e-26 + art_sys_111: 6.55472015e-25 + art_sys_112: -7.61020916e-25 + art_sys_113: 1.45064421e-24 + art_sys_114: -9.14350479e-25 + art_sys_115: -5.85317944e-25 + art_sys_116: -9.64443325e-25 + art_sys_117: 8.19588360e-25 + art_sys_118: -1.42516568e-25 + art_sys_119: 1.14379906e-24 + art_sys_120: 2.02756418e-25 + art_sys_121: 1.62828088e-25 + art_sys_122: -1.59340757e-25 + art_sys_123: -1.37789771e-25 + art_sys_124: -1.05345559e-25 + art_sys_125: 2.84154034e-26 + art_sys_126: 2.44079695e-26 + art_sys_127: 2.09836478e-25 + art_sys_128: -7.78846468e-25 + art_sys_129: 2.25038091e-25 + art_sys_130: 2.90271552e-26 + art_sys_131: 2.50481510e-25 + art_sys_132: 6.50635836e-26 + art_sys_133: 5.95886220e-26 + art_sys_134: -1.33158141e-25 + art_sys_135: 2.20327199e-26 + art_sys_136: -5.60215182e-26 + art_sys_137: -2.75402542e-27 + art_sys_138: 5.95485679e-26 + art_sys_139: 4.26638134e-24 + art_sys_140: 8.17220242e-27 + art_sys_141: -5.46356612e-24 + art_sys_142: -0.0 + art_sys_143: 1.75842958e-25 + art_sys_144: 1.02494420e-24 + art_sys_145: 1.91588050e-24 + art_sys_146: -2.17573387e-24 + art_sys_147: 9.99187842e-27 + art_sys_148: 2.51819518e-25 + art_sys_149: -2.32899185e-23 + art_sys_150: -1.27491615e-23 + art_sys_151: 2.47738716e-21 + art_sys_152: 5.22863771e-23 + art_sys_153: 4.34688705e-22 + art_sys_154: 7.27234549e-20 + art_sys_155: 1.89131419e-20 + art_sys_156: -7.08051850e-21 + art_sys_157: -1.88485660e-20 + art_sys_158: -0.0 + art_sys_159: -3.10416384e-23 + art_sys_160: -3.10416384e-23 + art_sys_161: 5.77376988e-22 + art_sys_162: 2.11556926e-18 + art_sys_163: -0.0 + art_sys_164: -1.77817951e-19 + art_sys_165: -4.86403726e-04 + art_sys_166: -2.81838063e-04 + art_sys_167: 1.41387088e-03 + art_sys_168: 4.24917491e-03 + art_sys_169: 1.35293148e-02 + art_sys_170: -1.21974535e-02 art_sys_171: -5.08853070e-04 art_sys_172: -4.43501778e-04 - art_sys_173: -1.63507840e-04 - art_sys_174: 1.11754290e-06 - art_sys_175: 3.42007728e-07 - art_sys_176: -1.45805218e-07 - art_sys_177: 8.37977080e-09 - art_sys_178: -1.69855475e-09 - art_sys_179: -2.32481175e-14 - art_sys_180: -2.50661486e-16 - art_sys_181: 4.12987994e-08 - art_sys_182: -3.06271488e-10 - art_sys_183: 4.61445893e-11 - art_sys_184: -8.02500424e-12 - art_sys_185: -7.32535387e-13 + art_sys_173: 1.63507840e-04 + art_sys_174: 2.32481175e-14 + art_sys_175: -1.11754290e-06 + art_sys_176: -3.42007728e-07 + art_sys_177: 1.45805218e-07 + art_sys_178: 4.12987994e-08 + art_sys_179: 8.37977080e-09 + art_sys_180: -1.69855475e-09 + art_sys_181: -3.06271488e-10 + art_sys_182: -4.61445893e-11 + art_sys_183: -8.02500424e-12 + art_sys_184: 7.32535387e-13 + art_sys_185: -2.50661486e-16 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -48027,127 +48027,127 @@ bins: art_sys_62: 0.0 art_sys_63: 0.0 art_sys_64: 0.0 - art_sys_65: 0.0 - art_sys_66: 0.0 - art_sys_67: 0.0 - art_sys_68: 0.0 - art_sys_69: 0.0 - art_sys_70: 0.0 - art_sys_71: 0.0 - art_sys_72: -1.30171658e-200 - art_sys_73: 8.06851209e-192 - art_sys_74: 2.51517014e-193 - art_sys_75: 1.23562477e-77 - art_sys_76: 1.50071884e-10 + art_sys_65: 6.58564612e-262 + art_sys_66: 2.02941146e-186 + art_sys_67: 5.46217764e-144 + art_sys_68: 1.52679046e-133 + art_sys_69: -2.88848197e-141 + art_sys_70: 1.43989703e-139 + art_sys_71: 1.47487553e-133 + art_sys_72: -5.58737443e-121 + art_sys_73: 3.63848701e-109 + art_sys_74: 2.15160951e-111 + art_sys_75: 1.01285042e-39 + art_sys_76: -1.50071884e-10 art_sys_77: 3.55595890e-08 art_sys_78: -5.05408703e-08 - art_sys_79: 1.27764566e-27 - art_sys_80: 1.24110762e-07 - art_sys_81: 3.08723160e-26 - art_sys_82: 1.96224232e-28 - art_sys_83: -4.11028600e-06 - art_sys_84: 1.01035468e-05 + art_sys_79: -7.92762585e-28 + art_sys_80: -3.91865178e-29 + art_sys_81: 1.24110762e-07 + art_sys_82: 4.11028600e-06 + art_sys_83: -1.01035468e-05 + art_sys_84: 5.25729676e-24 art_sys_85: 2.79553589e-05 art_sys_86: 2.01579474e-05 - art_sys_87: -1.70917247e-23 - art_sys_88: -1.80784724e-23 - art_sys_89: -5.94528754e-05 - art_sys_90: -1.20671703e-22 - art_sys_91: -2.54616242e-23 - art_sys_92: -3.93034303e-04 - art_sys_93: 2.63341017e-04 - art_sys_94: 1.07749560e-22 - art_sys_95: -3.75175633e-22 - art_sys_96: -1.13158510e-22 - art_sys_97: -4.50714690e-23 - art_sys_98: 1.49991255e-22 - art_sys_99: 2.24390364e-22 - art_sys_100: -8.88462412e-23 - art_sys_101: 4.17010119e-23 - art_sys_102: 3.98527972e-23 - art_sys_103: -8.27041638e-23 - art_sys_104: -5.89967092e-23 - art_sys_105: 3.00402932e-23 - art_sys_106: 6.22488079e-23 - art_sys_107: 1.52242838e-22 - art_sys_108: -4.66432986e-23 - art_sys_109: -1.44182292e-22 - art_sys_110: 1.04447423e-22 - art_sys_111: 2.78404326e-23 - art_sys_112: 7.06311093e-23 - art_sys_113: 2.16334839e-23 - art_sys_114: 2.06093335e-22 - art_sys_115: 4.69310277e-23 - art_sys_116: -6.33449602e-24 - art_sys_117: -3.90312169e-23 - art_sys_118: 2.85107828e-24 - art_sys_119: 8.64187846e-24 - art_sys_120: -1.75635894e-23 - art_sys_121: -3.77684194e-23 - art_sys_122: -5.40525106e-23 - art_sys_123: -9.30613982e-24 - art_sys_124: -4.35382794e-23 - art_sys_125: -7.14670628e-24 - art_sys_126: 2.00923073e-23 - art_sys_127: 2.17899116e-23 - art_sys_128: 1.17967774e-23 - art_sys_129: 3.61150652e-23 - art_sys_130: 1.14810615e-23 - art_sys_131: -6.72366709e-23 - art_sys_132: 1.06739294e-24 - art_sys_133: -1.12369460e-23 - art_sys_134: 1.02817944e-23 - art_sys_135: -8.36696341e-24 - art_sys_136: 3.24824620e-22 - art_sys_137: 3.00754980e-24 - art_sys_138: 5.31128236e-24 - art_sys_139: -1.37903831e-24 - art_sys_140: 3.63110494e-22 - art_sys_141: 6.98030082e-24 - art_sys_142: -2.93437298e-24 - art_sys_143: -1.27513366e-25 - art_sys_144: 4.49861139e-22 - art_sys_145: -2.97376340e-25 - art_sys_146: 3.50010444e-23 - art_sys_147: -1.10629554e-21 - art_sys_148: 1.49275003e-20 - art_sys_149: 3.59111143e-24 - art_sys_150: 6.50171659e-23 - art_sys_151: -1.36038152e-22 - art_sys_152: -1.36343930e-19 - art_sys_153: 1.27805449e-22 - art_sys_154: 5.80677134e-25 - art_sys_155: 3.97079536e-20 - art_sys_156: -0.0 - art_sys_157: -4.22654836e-24 - art_sys_158: -0.0 - art_sys_159: 3.69144046e-23 - art_sys_160: 1.50831220e-20 - art_sys_161: 5.06000140e-24 - art_sys_162: 5.06000140e-24 - art_sys_163: -3.57188733e-21 - art_sys_164: -3.57188733e-21 - art_sys_165: -7.82471173e-18 - art_sys_166: -6.68932788e-19 - art_sys_167: -0.0 - art_sys_168: -1.11801976e-03 - art_sys_169: 1.06805899e-03 - art_sys_170: 2.46177898e-03 + art_sys_87: -3.74333754e-23 + art_sys_88: -7.58254191e-24 + art_sys_89: -4.81984831e-25 + art_sys_90: 3.89185003e-24 + art_sys_91: -1.07355397e-25 + art_sys_92: 2.91213985e-24 + art_sys_93: 3.14696501e-24 + art_sys_94: -1.02106211e-24 + art_sys_95: 1.61108482e-24 + art_sys_96: -8.25586714e-24 + art_sys_97: 4.43809542e-28 + art_sys_98: 1.34291415e-24 + art_sys_99: 2.09776630e-25 + art_sys_100: 1.56914896e-25 + art_sys_101: 1.29288230e-24 + art_sys_102: -2.15094983e-24 + art_sys_103: 3.92258179e-25 + art_sys_104: -1.33891839e-25 + art_sys_105: 1.29264908e-24 + art_sys_106: -5.34728116e-25 + art_sys_107: 3.81746578e-25 + art_sys_108: -6.14558285e-25 + art_sys_109: -3.88629858e-25 + art_sys_110: 5.34030680e-25 + art_sys_111: 2.39318906e-25 + art_sys_112: -1.98129472e-25 + art_sys_113: 4.71969879e-25 + art_sys_114: -3.07056309e-25 + art_sys_115: -1.53661620e-25 + art_sys_116: -3.33868797e-25 + art_sys_117: -7.68481521e-26 + art_sys_118: -4.15934419e-26 + art_sys_119: 3.45381881e-25 + art_sys_120: 4.97100426e-26 + art_sys_121: 6.95853375e-26 + art_sys_122: -2.58011774e-26 + art_sys_123: -9.50254183e-26 + art_sys_124: -2.02105524e-26 + art_sys_125: 1.54997092e-26 + art_sys_126: 1.12354413e-26 + art_sys_127: 7.76620528e-26 + art_sys_128: -2.61217043e-25 + art_sys_129: 6.63688865e-26 + art_sys_130: 4.17692173e-26 + art_sys_131: 6.53196062e-26 + art_sys_132: 2.43525573e-26 + art_sys_133: 9.69683041e-27 + art_sys_134: -3.96840536e-26 + art_sys_135: 1.28642156e-26 + art_sys_136: -4.13699847e-27 + art_sys_137: 1.22689201e-27 + art_sys_138: -1.85627161e-26 + art_sys_139: -1.68148942e-24 + art_sys_140: 3.84716105e-27 + art_sys_141: 1.09023789e-24 + art_sys_142: 0.0 + art_sys_143: 1.07683297e-25 + art_sys_144: 5.34659875e-25 + art_sys_145: -1.45030998e-25 + art_sys_146: -6.20479842e-25 + art_sys_147: -6.08158475e-26 + art_sys_148: 6.68271128e-26 + art_sys_149: 9.45382839e-24 + art_sys_150: 9.07128062e-24 + art_sys_151: -2.66046724e-21 + art_sys_152: 6.15820393e-22 + art_sys_153: -5.39921477e-21 + art_sys_154: -7.03140455e-20 + art_sys_155: -1.92428712e-20 + art_sys_156: 7.10095114e-21 + art_sys_157: 1.90576093e-20 + art_sys_158: 0.0 + art_sys_159: 5.03239787e-24 + art_sys_160: 5.03239787e-24 + art_sys_161: -4.90098775e-22 + art_sys_162: -7.82471154e-18 + art_sys_163: 0.0 + art_sys_164: 6.68932805e-19 + art_sys_165: 5.94528754e-05 + art_sys_166: -3.93034303e-04 + art_sys_167: -2.63341017e-04 + art_sys_168: 1.11801976e-03 + art_sys_169: -1.06805899e-03 + art_sys_170: -2.46177898e-03 art_sys_171: 5.84891691e-03 art_sys_172: 9.21494727e-04 - art_sys_173: 7.14400336e-04 - art_sys_174: -3.64992991e-06 - art_sys_175: -1.04922352e-06 - art_sys_176: 5.67304433e-07 - art_sys_177: -3.19784040e-08 - art_sys_178: 6.48768231e-09 - art_sys_179: 8.92605978e-14 - art_sys_180: 9.11092514e-16 - art_sys_181: -1.42350486e-07 - art_sys_182: 1.12475054e-09 - art_sys_183: -1.82338313e-10 - art_sys_184: 2.99810524e-11 - art_sys_185: 2.94929350e-12 + art_sys_173: -7.14400336e-04 + art_sys_174: -8.92605979e-14 + art_sys_175: 3.64992991e-06 + art_sys_176: 1.04922352e-06 + art_sys_177: -5.67304433e-07 + art_sys_178: -1.42350486e-07 + art_sys_179: -3.19784040e-08 + art_sys_180: 6.48768231e-09 + art_sys_181: 1.12475054e-09 + art_sys_182: 1.82338313e-10 + art_sys_183: 2.99810524e-11 + art_sys_184: -2.94929350e-12 + art_sys_185: 9.11092514e-16 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -48318,127 +48318,127 @@ bins: art_sys_62: 0.0 art_sys_63: 0.0 art_sys_64: 0.0 - art_sys_65: 0.0 - art_sys_66: 0.0 - art_sys_67: 0.0 - art_sys_68: 0.0 - art_sys_69: 0.0 - art_sys_70: 0.0 - art_sys_71: 0.0 - art_sys_72: -9.29314649e-201 - art_sys_73: 5.76022967e-192 - art_sys_74: 1.79561702e-193 - art_sys_75: 8.82003575e-78 - art_sys_76: 1.07123086e-10 + art_sys_65: 4.70374654e-262 + art_sys_66: 1.44861795e-186 + art_sys_67: 3.89896700e-144 + art_sys_68: 1.08984108e-133 + art_sys_69: -2.06183259e-141 + art_sys_70: 1.02781553e-139 + art_sys_71: 1.05278360e-133 + art_sys_72: -3.98833395e-121 + art_sys_73: 2.59719506e-109 + art_sys_74: 1.53584432e-111 + art_sys_75: 7.22984607e-40 + art_sys_76: -1.07123086e-10 art_sys_77: 3.33635311e-09 art_sys_78: -5.83709522e-09 - art_sys_79: 1.56711368e-28 - art_sys_80: 7.54725820e-09 - art_sys_81: 1.89300754e-27 - art_sys_82: 2.28145454e-29 - art_sys_83: -5.02770125e-07 - art_sys_84: 9.45176410e-07 + art_sys_79: -1.02987264e-28 + art_sys_80: 2.48045214e-30 + art_sys_81: 7.54725820e-09 + art_sys_82: 5.02770125e-07 + art_sys_83: -9.45176410e-07 + art_sys_84: 5.29314135e-25 art_sys_85: 3.14491946e-06 art_sys_86: 2.12075160e-06 - art_sys_87: -1.77408183e-24 - art_sys_88: -3.04581857e-24 - art_sys_89: -2.11907003e-05 - art_sys_90: -4.16888621e-23 - art_sys_91: -3.68825835e-24 - art_sys_92: -1.30603949e-05 - art_sys_93: 7.89370340e-05 - art_sys_94: 1.79257100e-23 - art_sys_95: -5.68313300e-23 - art_sys_96: -3.56600664e-23 - art_sys_97: -2.76900411e-23 - art_sys_98: 8.08882947e-23 - art_sys_99: 4.75017458e-23 - art_sys_100: 2.22773073e-23 - art_sys_101: 2.17012872e-23 - art_sys_102: -2.85178144e-24 - art_sys_103: -1.46933279e-23 - art_sys_104: -2.60533575e-23 - art_sys_105: 2.15695832e-23 - art_sys_106: 2.09691658e-23 - art_sys_107: 7.11276298e-24 - art_sys_108: 1.71940278e-24 - art_sys_109: -4.09834812e-23 - art_sys_110: 1.35480649e-23 - art_sys_111: 9.41318163e-25 - art_sys_112: 2.15299262e-23 - art_sys_113: -3.96234216e-25 - art_sys_114: 3.29797389e-23 - art_sys_115: 2.41170294e-24 - art_sys_116: -1.70502471e-23 - art_sys_117: 2.25489924e-24 - art_sys_118: -4.93825747e-24 - art_sys_119: 1.71370418e-24 - art_sys_120: 5.39216246e-24 - art_sys_121: -1.81614481e-24 - art_sys_122: -5.83202375e-24 - art_sys_123: 5.96954235e-24 - art_sys_124: -9.60793502e-24 - art_sys_125: 8.17274714e-26 - art_sys_126: 4.34994069e-25 - art_sys_127: 5.38154367e-25 - art_sys_128: 2.88377191e-24 - art_sys_129: 2.57995543e-24 - art_sys_130: -2.86687106e-24 - art_sys_131: -2.17695016e-23 - art_sys_132: 2.95807301e-24 - art_sys_133: -2.79509838e-24 - art_sys_134: 3.48291546e-24 - art_sys_135: -1.74381748e-24 - art_sys_136: 1.28327651e-21 - art_sys_137: 9.91688019e-25 - art_sys_138: 1.04979338e-24 - art_sys_139: 2.40708516e-25 - art_sys_140: 1.31013475e-23 - art_sys_141: 3.28152275e-25 - art_sys_142: -1.44045853e-24 - art_sys_143: 2.82922569e-25 - art_sys_144: -4.54485220e-22 - art_sys_145: -1.37040134e-24 - art_sys_146: 1.13433922e-23 - art_sys_147: 2.51115642e-21 - art_sys_148: -1.32195440e-20 - art_sys_149: 1.48277920e-24 - art_sys_150: -1.51580635e-22 - art_sys_151: -2.47474431e-22 - art_sys_152: 9.65964144e-20 - art_sys_153: 4.62585152e-23 - art_sys_154: 2.03643022e-25 - art_sys_155: -2.80672408e-20 - art_sys_156: -0.0 - art_sys_157: 5.97545037e-24 - art_sys_158: 0.0 - art_sys_159: -5.28493239e-23 - art_sys_160: -1.08851142e-20 - art_sys_161: 1.21972280e-23 - art_sys_162: 1.21972280e-23 - art_sys_163: 2.72134563e-21 - art_sys_164: 2.72134563e-21 - art_sys_165: 3.85140171e-17 - art_sys_166: 3.19028226e-18 - art_sys_167: 0.0 - art_sys_168: 3.04898453e-04 - art_sys_169: 9.63034362e-04 - art_sys_170: -1.14728062e-03 + art_sys_87: -3.94760240e-24 + art_sys_88: -7.87621535e-25 + art_sys_89: -5.88255974e-26 + art_sys_90: 4.27266026e-25 + art_sys_91: -1.38700247e-26 + art_sys_92: 3.14359396e-25 + art_sys_93: 3.44056260e-25 + art_sys_94: -1.06889762e-25 + art_sys_95: 1.83402732e-25 + art_sys_96: -8.73657682e-25 + art_sys_97: 5.27907113e-27 + art_sys_98: 1.40458663e-25 + art_sys_99: 2.20623166e-26 + art_sys_100: 1.60748661e-26 + art_sys_101: 1.39134456e-25 + art_sys_102: -2.29297976e-25 + art_sys_103: 4.55254525e-26 + art_sys_104: -1.59686677e-26 + art_sys_105: 1.35567256e-25 + art_sys_106: -5.86737213e-26 + art_sys_107: 4.10318929e-26 + art_sys_108: -6.39494597e-26 + art_sys_109: -3.15754544e-26 + art_sys_110: 5.32129658e-26 + art_sys_111: 1.37514848e-26 + art_sys_112: -2.27950654e-26 + art_sys_113: 5.17014654e-26 + art_sys_114: -3.30407650e-26 + art_sys_115: -1.60226575e-26 + art_sys_116: -3.65274670e-26 + art_sys_117: -9.24653055e-27 + art_sys_118: -4.57790142e-27 + art_sys_119: 4.36870867e-26 + art_sys_120: 5.60767438e-27 + art_sys_121: 7.65447201e-27 + art_sys_122: -3.44401642e-27 + art_sys_123: -9.92983305e-27 + art_sys_124: -1.87766245e-27 + art_sys_125: 1.81898498e-27 + art_sys_126: 7.18285000e-28 + art_sys_127: 8.18327451e-27 + art_sys_128: -2.79579568e-26 + art_sys_129: 7.22432066e-27 + art_sys_130: 6.79027585e-27 + art_sys_131: 7.36054373e-27 + art_sys_132: 2.57954673e-27 + art_sys_133: 1.06711608e-27 + art_sys_134: -4.91258356e-27 + art_sys_135: 1.32152216e-27 + art_sys_136: 4.72046639e-29 + art_sys_137: 1.41372614e-28 + art_sys_138: -3.26171050e-26 + art_sys_139: 2.74411848e-24 + art_sys_140: 4.05683476e-28 + art_sys_141: -1.99263470e-24 + art_sys_142: -0.0 + art_sys_143: 6.22137862e-26 + art_sys_144: 3.56622697e-25 + art_sys_145: 6.70581846e-25 + art_sys_146: -9.43296608e-26 + art_sys_147: -7.28647113e-27 + art_sys_148: 6.52025957e-27 + art_sys_149: 1.61652265e-24 + art_sys_150: 6.29625649e-24 + art_sys_151: 2.13696205e-21 + art_sys_152: -1.69209908e-21 + art_sys_153: -1.39281140e-21 + art_sys_154: 5.10583489e-20 + art_sys_155: 1.37217832e-20 + art_sys_156: -5.02397469e-21 + art_sys_157: -1.33530769e-20 + art_sys_158: -0.0 + art_sys_159: -5.06653991e-24 + art_sys_160: -5.06653991e-24 + art_sys_161: 3.45514241e-22 + art_sys_162: 3.85140173e-17 + art_sys_163: -0.0 + art_sys_164: -3.19028226e-18 + art_sys_165: 2.11907003e-05 + art_sys_166: -1.30603949e-05 + art_sys_167: -7.89370340e-05 + art_sys_168: -3.04898453e-04 + art_sys_169: -9.63034362e-04 + art_sys_170: 1.14728062e-03 art_sys_171: 1.98949264e-03 art_sys_172: -3.73372631e-03 - art_sys_173: -1.11359116e-03 - art_sys_174: 2.82284227e-05 - art_sys_175: 4.85873134e-06 - art_sys_176: -2.88741766e-06 - art_sys_177: 1.49311697e-07 - art_sys_178: -3.15689476e-08 - art_sys_179: -4.14014743e-13 - art_sys_180: -3.84860871e-15 - art_sys_181: 7.34077655e-07 - art_sys_182: -5.40164635e-09 - art_sys_183: 8.39737807e-10 - art_sys_184: -1.45109523e-10 - art_sys_185: -1.33933069e-11 + art_sys_173: 1.11359116e-03 + art_sys_174: 4.14014743e-13 + art_sys_175: -2.82284227e-05 + art_sys_176: -4.85873134e-06 + art_sys_177: 2.88741766e-06 + art_sys_178: 7.34077655e-07 + art_sys_179: 1.49311697e-07 + art_sys_180: -3.15689476e-08 + art_sys_181: -5.40164635e-09 + art_sys_182: -8.39737807e-10 + art_sys_183: -1.45109523e-10 + art_sys_184: 1.33933069e-11 + art_sys_185: -3.84860871e-15 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -48609,127 +48609,127 @@ bins: art_sys_62: 0.0 art_sys_63: 0.0 art_sys_64: 0.0 - art_sys_65: 0.0 - art_sys_66: 0.0 - art_sys_67: 0.0 - art_sys_68: 0.0 - art_sys_69: 0.0 - art_sys_70: 0.0 - art_sys_71: 0.0 - art_sys_72: -1.25945487e-202 - art_sys_73: 7.80655866e-194 - art_sys_74: 2.43351228e-195 - art_sys_75: 1.19543872e-79 - art_sys_76: 1.45191118e-12 + art_sys_65: 6.37302435e-264 + art_sys_66: 1.96340922e-188 + art_sys_67: 5.28453202e-146 + art_sys_68: 1.47713487e-135 + art_sys_69: -2.79454028e-143 + art_sys_70: 1.39306747e-141 + art_sys_71: 1.42690837e-135 + art_sys_72: -5.40565707e-123 + art_sys_73: 3.52015302e-111 + art_sys_74: 2.08163302e-113 + art_sys_75: 9.79909629e-42 + art_sys_76: -1.45191118e-12 art_sys_77: 2.22519756e-10 art_sys_78: -4.58784486e-10 - art_sys_79: 3.09518854e-29 - art_sys_80: 3.10805926e-10 - art_sys_81: 7.90088712e-29 - art_sys_82: 1.80344359e-30 - art_sys_83: -3.40600854e-08 - art_sys_84: 7.43309308e-08 + art_sys_79: -8.68484495e-30 + art_sys_80: 4.86231797e-31 + art_sys_81: 3.10805926e-10 + art_sys_82: 3.40600854e-08 + art_sys_83: -7.43309308e-08 + art_sys_84: 4.00620254e-26 art_sys_85: 1.93872712e-07 art_sys_86: 2.90637597e-08 - art_sys_87: 6.47459649e-26 - art_sys_88: -9.20411674e-26 - art_sys_89: 9.85211972e-08 - art_sys_90: 2.55449927e-25 - art_sys_91: 1.52241895e-24 - art_sys_92: 1.21400774e-05 - art_sys_93: -7.97817680e-06 - art_sys_94: -3.94597614e-24 - art_sys_95: 1.08674084e-23 - art_sys_96: 2.95754871e-24 - art_sys_97: 2.33112464e-24 - art_sys_98: -4.31142431e-24 - art_sys_99: -6.47358937e-24 - art_sys_100: 2.94789865e-24 - art_sys_101: -1.15294808e-24 - art_sys_102: -8.39605495e-25 - art_sys_103: 2.27368937e-24 - art_sys_104: 1.43102168e-24 - art_sys_105: -9.97585569e-25 - art_sys_106: -8.89198886e-25 - art_sys_107: -5.62382923e-24 - art_sys_108: 1.25438801e-24 - art_sys_109: 4.28503900e-24 - art_sys_110: -2.88009601e-24 - art_sys_111: -6.03743866e-25 - art_sys_112: -2.18005739e-24 - art_sys_113: -6.04687430e-25 - art_sys_114: -5.90796542e-24 - art_sys_115: -1.43037001e-24 - art_sys_116: 8.21049417e-26 - art_sys_117: 9.87649892e-25 - art_sys_118: -6.69817320e-26 - art_sys_119: -1.73036771e-25 - art_sys_120: 6.28352012e-25 - art_sys_121: 1.17823815e-24 - art_sys_122: 1.73503206e-24 - art_sys_123: 2.89404166e-25 - art_sys_124: 1.35564519e-24 - art_sys_125: 2.75625944e-25 - art_sys_126: -6.61671380e-25 - art_sys_127: -6.28664186e-25 - art_sys_128: -3.15943671e-25 - art_sys_129: -1.25666912e-24 - art_sys_130: -3.28607629e-25 - art_sys_131: 3.70910144e-24 - art_sys_132: -8.19947970e-27 - art_sys_133: 3.46382246e-25 - art_sys_134: -2.80646127e-25 - art_sys_135: 2.55036943e-25 - art_sys_136: -2.24468824e-22 - art_sys_137: -9.44241199e-26 - art_sys_138: -1.65362596e-25 - art_sys_139: 1.48810090e-26 - art_sys_140: 4.12437004e-22 - art_sys_141: -2.05252229e-25 - art_sys_142: 8.06954593e-26 - art_sys_143: -1.67586539e-26 - art_sys_144: 3.70641630e-22 - art_sys_145: 1.81464314e-26 - art_sys_146: 3.09406434e-25 - art_sys_147: -1.51934518e-21 - art_sys_148: 8.86478593e-21 - art_sys_149: -6.34336273e-25 - art_sys_150: 9.07034056e-23 - art_sys_151: 2.17265189e-22 - art_sys_152: -7.28815382e-20 - art_sys_153: -1.11208918e-22 - art_sys_154: -1.76965026e-26 - art_sys_155: 2.24194666e-20 - art_sys_156: 0.0 - art_sys_157: 2.02247183e-24 + art_sys_87: -7.33496793e-26 + art_sys_88: 1.12019715e-26 + art_sys_89: 3.04568823e-27 + art_sys_90: 1.92131416e-26 + art_sys_91: 3.65163586e-27 + art_sys_92: 1.25458990e-26 + art_sys_93: 1.42078708e-26 + art_sys_94: -4.06119430e-27 + art_sys_95: 5.65850149e-27 + art_sys_96: -4.46032939e-26 + art_sys_97: 1.26987912e-27 + art_sys_98: 1.17710302e-27 + art_sys_99: 1.03949469e-27 + art_sys_100: 8.84875883e-28 + art_sys_101: 3.30506453e-27 + art_sys_102: -2.31563786e-27 + art_sys_103: -6.15073470e-28 + art_sys_104: -4.44475026e-28 + art_sys_105: 2.98222487e-27 + art_sys_106: -2.13942189e-27 + art_sys_107: 9.57257068e-28 + art_sys_108: -4.47149844e-28 + art_sys_109: -9.47010135e-28 + art_sys_110: -3.15361282e-27 + art_sys_111: 1.42629092e-27 + art_sys_112: -1.73465901e-27 + art_sys_113: 2.53478457e-27 + art_sys_114: -1.15223849e-27 + art_sys_115: -5.62874290e-28 + art_sys_116: -1.55335835e-27 + art_sys_117: 1.84831918e-27 + art_sys_118: -2.46180832e-28 + art_sys_119: 8.14151950e-28 + art_sys_120: 4.14761535e-28 + art_sys_121: 2.47415883e-28 + art_sys_122: -3.76270698e-28 + art_sys_123: 3.62084384e-29 + art_sys_124: -1.24219432e-28 + art_sys_125: 8.26159795e-29 + art_sys_126: -1.06453330e-28 + art_sys_127: 2.17271241e-28 + art_sys_128: -1.06217228e-27 + art_sys_129: 3.59286988e-28 + art_sys_130: -1.78643203e-28 + art_sys_131: 3.50215699e-28 + art_sys_132: 8.15579698e-29 + art_sys_133: 1.20219864e-28 + art_sys_134: -1.03125520e-28 + art_sys_135: -1.61306666e-29 + art_sys_136: -1.57915025e-28 + art_sys_137: -9.62607178e-30 + art_sys_138: -1.83230104e-26 + art_sys_139: 2.29794935e-24 + art_sys_140: 3.71340434e-30 + art_sys_141: -2.41524083e-24 + art_sys_142: 0.0 + art_sys_143: 1.58417651e-25 + art_sys_144: 8.62172243e-25 + art_sys_145: 9.47385220e-25 + art_sys_146: -1.95061739e-27 + art_sys_147: -3.72600032e-29 + art_sys_148: 1.60774022e-28 + art_sys_149: -2.82455052e-25 + art_sys_150: 2.50133154e-24 + art_sys_151: 1.35712501e-21 + art_sys_152: 1.90376394e-21 + art_sys_153: -2.48929310e-21 + art_sys_154: -3.82747542e-20 + art_sys_155: -1.12690347e-20 + art_sys_156: 3.74488481e-21 + art_sys_157: 1.07788320e-20 art_sys_158: 0.0 - art_sys_159: -1.41777060e-23 - art_sys_160: 8.44922472e-21 - art_sys_161: 1.17945440e-23 - art_sys_162: 1.17945440e-23 - art_sys_163: -2.03045056e-21 - art_sys_164: -2.03045056e-21 - art_sys_165: -1.09747458e-16 - art_sys_166: -9.50590635e-18 - art_sys_167: -0.0 - art_sys_168: 5.82848541e-05 - art_sys_169: -1.03424095e-04 - art_sys_170: -1.56515089e-04 + art_sys_159: -4.06339842e-24 + art_sys_160: -4.06339842e-24 + art_sys_161: -3.52284146e-22 + art_sys_162: -1.09747459e-16 + art_sys_163: 0.0 + art_sys_164: 9.50590635e-18 + art_sys_165: -9.85211972e-08 + art_sys_166: 1.21400774e-05 + art_sys_167: 7.97817680e-06 + art_sys_168: -5.82848541e-05 + art_sys_169: 1.03424095e-04 + art_sys_170: 1.56515089e-04 art_sys_171: -8.47539000e-04 art_sys_172: -1.99700024e-03 - art_sys_173: 2.46280968e-03 - art_sys_174: -6.61175517e-06 - art_sys_175: -1.73139323e-05 - art_sys_176: 5.56719051e-06 - art_sys_177: -4.16174628e-07 - art_sys_178: 8.57442529e-08 - art_sys_179: 1.26342142e-12 - art_sys_180: 1.49301349e-14 - art_sys_181: -1.94790970e-06 - art_sys_182: 1.59098293e-08 - art_sys_183: -2.47804941e-09 - art_sys_184: 4.20068470e-10 - art_sys_185: 4.00005870e-11 + art_sys_173: -2.46280968e-03 + art_sys_174: -1.26342142e-12 + art_sys_175: 6.61175517e-06 + art_sys_176: 1.73139323e-05 + art_sys_177: -5.56719051e-06 + art_sys_178: -1.94790970e-06 + art_sys_179: -4.16174628e-07 + art_sys_180: 8.57442529e-08 + art_sys_181: 1.59098293e-08 + art_sys_182: 2.47804941e-09 + art_sys_183: 4.20068470e-10 + art_sys_184: -4.00005870e-11 + art_sys_185: 1.49301349e-14 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -48900,127 +48900,127 @@ bins: art_sys_62: 0.0 art_sys_63: 0.0 art_sys_64: 0.0 - art_sys_65: 0.0 - art_sys_66: 0.0 - art_sys_67: 0.0 - art_sys_68: 0.0 - art_sys_69: 0.0 - art_sys_70: 0.0 - art_sys_71: 0.0 - art_sys_72: 4.38611883e-203 - art_sys_73: -2.71867573e-194 - art_sys_74: -8.47483642e-196 - art_sys_75: -4.16268999e-80 - art_sys_76: -5.05576406e-13 + art_sys_65: -2.22026945e-264 + art_sys_66: -6.83687419e-189 + art_sys_67: -1.84015024e-146 + art_sys_68: -5.14359659e-136 + art_sys_69: 9.73099218e-144 + art_sys_70: -4.85086178e-142 + art_sys_71: -4.96870066e-136 + art_sys_72: 1.88232772e-123 + art_sys_73: -1.22576804e-111 + art_sys_74: -7.24854633e-114 + art_sys_75: -3.41218661e-42 + art_sys_76: 5.05576406e-13 art_sys_77: 7.33461006e-12 art_sys_78: -1.44916423e-11 - art_sys_79: 1.92934069e-31 - art_sys_80: 2.50459715e-11 - art_sys_81: 6.19007608e-30 - art_sys_82: 5.77820380e-32 - art_sys_83: -1.26525157e-09 - art_sys_84: 5.54804294e-09 + art_sys_79: -2.69845002e-31 + art_sys_80: 1.78311751e-34 + art_sys_81: 2.50459715e-11 + art_sys_82: 1.26525157e-09 + art_sys_83: -5.54804294e-09 + art_sys_84: 2.60187530e-27 art_sys_85: 7.10252642e-09 art_sys_86: -9.26594511e-09 - art_sys_87: 2.09743876e-26 - art_sys_88: 2.40178336e-26 - art_sys_89: 3.89753008e-07 - art_sys_90: 7.68373155e-25 - art_sys_91: 2.38859951e-25 - art_sys_92: 1.50389482e-06 - art_sys_93: -2.74459749e-06 - art_sys_94: -8.27703384e-25 - art_sys_95: 2.42418598e-24 - art_sys_96: 1.13742873e-24 - art_sys_97: 9.99674353e-25 - art_sys_98: -2.42370864e-24 - art_sys_99: -1.78151189e-24 - art_sys_100: -2.56288235e-25 - art_sys_101: -6.43454464e-25 - art_sys_102: 2.48721347e-26 - art_sys_103: 5.65333534e-25 - art_sys_104: 7.59965710e-25 - art_sys_105: -6.46121599e-25 - art_sys_106: -6.73337298e-25 - art_sys_107: -8.64147286e-25 - art_sys_108: -5.47271250e-26 - art_sys_109: 1.43177573e-24 - art_sys_110: -5.87557555e-25 - art_sys_111: -7.13080161e-26 - art_sys_112: -7.52517879e-25 - art_sys_113: -5.04115101e-26 - art_sys_114: -1.37284556e-24 - art_sys_115: -1.97434886e-25 - art_sys_116: 4.26785629e-25 - art_sys_117: 1.79753874e-26 - art_sys_118: 1.19590856e-25 - art_sys_119: -5.17562606e-26 - art_sys_120: -6.81611772e-26 - art_sys_121: 1.65137581e-25 - art_sys_122: 3.21297627e-25 - art_sys_123: -1.21838767e-25 - art_sys_124: 3.73890764e-25 - art_sys_125: 3.14111762e-26 - art_sys_126: -7.86511464e-26 - art_sys_127: -7.01779180e-26 - art_sys_128: -9.88632593e-26 - art_sys_129: -1.99445726e-25 - art_sys_130: 6.05569586e-26 - art_sys_131: 8.41074588e-25 - art_sys_132: -7.31534351e-26 - art_sys_133: 1.03563270e-25 - art_sys_134: -1.11609787e-25 - art_sys_135: 6.82674220e-26 - art_sys_136: -8.30164800e-23 - art_sys_137: -3.50963754e-26 - art_sys_138: -4.25850520e-26 - art_sys_139: -4.94695893e-27 - art_sys_140: 1.65280361e-22 - art_sys_141: -2.59709258e-26 - art_sys_142: 4.33141702e-26 - art_sys_143: -1.16146901e-26 - art_sys_144: 1.54794105e-21 - art_sys_145: 3.69630129e-26 - art_sys_146: -2.83820229e-25 - art_sys_147: 3.17227653e-21 - art_sys_148: -1.74087834e-20 - art_sys_149: -9.57249560e-26 - art_sys_150: 1.20258804e-23 - art_sys_151: 1.90828681e-23 - art_sys_152: 9.08941184e-20 - art_sys_153: -3.44574630e-24 - art_sys_154: -6.77929690e-27 - art_sys_155: -3.49095578e-20 - art_sys_156: -0.0 - art_sys_157: -5.11926120e-25 + art_sys_87: 1.44789258e-26 + art_sys_88: 6.62827862e-27 + art_sys_89: 8.21823595e-28 + art_sys_90: -1.29553107e-29 + art_sys_91: 6.38730904e-28 + art_sys_92: -2.15000382e-28 + art_sys_93: -1.90404840e-28 + art_sys_94: 8.42343077e-29 + art_sys_95: -4.21526577e-28 + art_sys_96: -4.39317425e-28 + art_sys_97: 1.20443593e-28 + art_sys_98: -7.23077927e-28 + art_sys_99: 2.36963944e-29 + art_sys_100: 3.06009927e-29 + art_sys_101: -4.21980941e-28 + art_sys_102: 1.14490045e-27 + art_sys_103: -3.58623623e-28 + art_sys_104: 4.72776485e-29 + art_sys_105: -4.24912731e-28 + art_sys_106: 7.53277964e-29 + art_sys_107: -1.26567882e-28 + art_sys_108: 3.37922024e-28 + art_sys_109: 1.09992255e-28 + art_sys_110: -7.81180545e-28 + art_sys_111: 7.88163157e-29 + art_sys_112: -9.67357598e-29 + art_sys_113: 2.27284705e-29 + art_sys_114: 4.22184488e-29 + art_sys_115: 7.64318894e-30 + art_sys_116: 1.40130729e-29 + art_sys_117: 3.37046214e-28 + art_sys_118: -5.69164566e-30 + art_sys_119: -1.96797906e-28 + art_sys_120: 2.33615973e-29 + art_sys_121: -1.46905053e-29 + art_sys_122: -3.13992124e-29 + art_sys_123: 6.80151690e-29 + art_sys_124: -7.13325333e-30 + art_sys_125: -7.83602549e-31 + art_sys_126: -1.79948349e-29 + art_sys_127: -2.02540868e-29 + art_sys_128: 2.59475908e-29 + art_sys_129: 3.53524921e-30 + art_sys_130: -6.50486447e-29 + art_sys_131: 4.84737877e-30 + art_sys_132: -5.10710590e-30 + art_sys_133: 1.04832910e-29 + art_sys_134: 1.55269581e-29 + art_sys_135: -9.97194791e-30 + art_sys_136: -6.17722634e-29 + art_sys_137: -3.94566386e-30 + art_sys_138: 1.67744358e-27 + art_sys_139: -1.27009648e-25 + art_sys_140: -2.04316604e-30 + art_sys_141: 2.34738336e-26 + art_sys_142: 0.0 + art_sys_143: 2.04809786e-26 + art_sys_144: 1.02832421e-25 + art_sys_145: 1.36617227e-26 + art_sys_146: 2.69441241e-28 + art_sys_147: 4.58117574e-29 + art_sys_148: -1.45323437e-29 + art_sys_149: -6.71667267e-26 + art_sys_150: -3.57680833e-25 + art_sys_151: -1.28451011e-22 + art_sys_152: 1.70826765e-22 + art_sys_153: 6.41785687e-22 + art_sys_154: 5.35640435e-20 + art_sys_155: 3.92964912e-20 + art_sys_156: -8.04855327e-21 + art_sys_157: -1.11559657e-20 art_sys_158: -0.0 - art_sys_159: 3.51222619e-24 - art_sys_160: -1.05604738e-20 - art_sys_161: 1.38233357e-23 - art_sys_162: 1.38233357e-23 - art_sys_163: 2.84034672e-21 - art_sys_164: 2.84034672e-21 - art_sys_165: 6.37042910e-16 - art_sys_166: 5.28314565e-17 - art_sys_167: 0.0 - art_sys_168: -8.39945972e-06 - art_sys_169: -3.97889774e-05 - art_sys_170: 5.00739265e-05 + art_sys_159: 3.04052896e-24 + art_sys_160: 3.04052896e-24 + art_sys_161: 1.93797609e-22 + art_sys_162: 6.37042911e-16 + art_sys_163: -0.0 + art_sys_164: -5.28314565e-17 + art_sys_165: -3.89753008e-07 + art_sys_166: 1.50389482e-06 + art_sys_167: 2.74459749e-06 + art_sys_168: 8.39945972e-06 + art_sys_169: 3.97889774e-05 + art_sys_170: -5.00739265e-05 art_sys_171: -9.78639287e-05 art_sys_172: 1.91623621e-04 - art_sys_173: 1.46487778e-04 - art_sys_174: 4.48202730e-04 - art_sys_175: 4.74911587e-05 - art_sys_176: -4.83296360e-05 - art_sys_177: 2.48232039e-06 - art_sys_178: -5.11073173e-07 - art_sys_179: -6.95582013e-12 - art_sys_180: -6.06712393e-14 - art_sys_181: 1.04052907e-05 - art_sys_182: -8.78024195e-08 - art_sys_183: 1.42458404e-08 - art_sys_184: -2.39505725e-09 - art_sys_185: -2.30448492e-10 + art_sys_173: -1.46487778e-04 + art_sys_174: 6.95582013e-12 + art_sys_175: -4.48202730e-04 + art_sys_176: -4.74911587e-05 + art_sys_177: 4.83296360e-05 + art_sys_178: 1.04052907e-05 + art_sys_179: 2.48232039e-06 + art_sys_180: -5.11073173e-07 + art_sys_181: -8.78024195e-08 + art_sys_182: -1.42458404e-08 + art_sys_183: -2.39505725e-09 + art_sys_184: 2.30448492e-10 + art_sys_185: -6.06712393e-14 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -49191,127 +49191,127 @@ bins: art_sys_62: 0.0 art_sys_63: 0.0 art_sys_64: 0.0 - art_sys_65: 0.0 - art_sys_66: 0.0 - art_sys_67: 0.0 - art_sys_68: 0.0 - art_sys_69: 0.0 - art_sys_70: 0.0 - art_sys_71: 0.0 - art_sys_72: 4.40012211e-204 - art_sys_73: -2.72735547e-195 - art_sys_74: -8.50189349e-197 - art_sys_75: -4.17602222e-81 - art_sys_76: -5.07195661e-14 + art_sys_65: -2.22728626e-265 + art_sys_66: -6.85877125e-190 + art_sys_67: -1.84604386e-147 + art_sys_68: -5.16007046e-137 + art_sys_69: 9.76215852e-145 + art_sys_70: -4.86639808e-143 + art_sys_71: -4.98461437e-137 + art_sys_72: 1.88835643e-124 + art_sys_73: -1.22969391e-112 + art_sys_74: -7.27176191e-115 + art_sys_75: -3.42311514e-43 + art_sys_76: 5.07195661e-14 art_sys_77: 2.73720301e-15 art_sys_78: 3.97525068e-13 - art_sys_79: -2.83039047e-32 - art_sys_80: 3.13058554e-12 - art_sys_81: 7.60956312e-31 - art_sys_82: -1.47287838e-33 - art_sys_83: -5.43018193e-11 - art_sys_84: 3.77012908e-10 + art_sys_79: 1.04229750e-32 + art_sys_80: -3.84360589e-33 + art_sys_81: 3.13058554e-12 + art_sys_82: 5.43018193e-11 + art_sys_83: -3.77012908e-10 + art_sys_84: 1.66737514e-28 art_sys_85: 4.16767233e-10 art_sys_86: -4.47136836e-10 - art_sys_87: 1.09946316e-27 - art_sys_88: 1.19550631e-27 - art_sys_89: 2.01760551e-08 - art_sys_90: 3.94455672e-26 - art_sys_91: 3.08244700e-27 - art_sys_92: 8.22208769e-09 - art_sys_93: -6.77868744e-08 - art_sys_94: -1.66819154e-26 - art_sys_95: 4.82058740e-26 - art_sys_96: 3.10626661e-26 - art_sys_97: 2.33743353e-26 - art_sys_98: -7.07055421e-26 - art_sys_99: -4.06387768e-26 - art_sys_100: -2.07697157e-26 - art_sys_101: -1.89395454e-26 - art_sys_102: 2.30790605e-27 - art_sys_103: 1.25635710e-26 - art_sys_104: 2.29719341e-26 - art_sys_105: -1.85791892e-26 - art_sys_106: -1.93465721e-26 - art_sys_107: -3.80507906e-27 - art_sys_108: 1.70684223e-27 - art_sys_109: 3.51525620e-26 - art_sys_110: -1.14859536e-26 - art_sys_111: -9.55954893e-28 - art_sys_112: -1.84533682e-26 - art_sys_113: 7.95065282e-28 - art_sys_114: -2.78943012e-26 - art_sys_115: -1.76345414e-27 - art_sys_116: 1.52297177e-26 - art_sys_117: -2.18186161e-27 - art_sys_118: 4.37187397e-27 - art_sys_119: -1.51937405e-27 - art_sys_120: -4.97959157e-27 - art_sys_121: 1.31947787e-27 - art_sys_122: 4.66894933e-27 - art_sys_123: -5.38332286e-27 - art_sys_124: 8.11903649e-27 - art_sys_125: -2.43813367e-28 - art_sys_126: -1.63493126e-28 - art_sys_127: -3.10658354e-28 - art_sys_128: -2.50748415e-27 - art_sys_129: -1.87466660e-27 - art_sys_130: 2.68166988e-27 - art_sys_131: -4.15030417e-26 - art_sys_132: -2.61532217e-27 - art_sys_133: 2.40684826e-27 - art_sys_134: -3.03907060e-27 - art_sys_135: 1.47390725e-27 - art_sys_136: 1.83943676e-23 - art_sys_137: -8.40415460e-28 - art_sys_138: -8.82165319e-28 - art_sys_139: 1.34134170e-28 - art_sys_140: 2.87588270e-22 - art_sys_141: -2.37683744e-28 - art_sys_142: 1.25563321e-27 - art_sys_143: -2.41547930e-28 - art_sys_144: 1.72816826e-21 - art_sys_145: 1.17946166e-27 - art_sys_146: -1.43900228e-25 - art_sys_147: 2.21105950e-21 - art_sys_148: 1.23762289e-20 - art_sys_149: 3.64886664e-26 - art_sys_150: -6.52786913e-24 - art_sys_151: -1.76770211e-23 - art_sys_152: -6.52428039e-20 - art_sys_153: 1.18670127e-23 - art_sys_154: -1.76793467e-28 - art_sys_155: 3.81427802e-20 - art_sys_156: -0.0 - art_sys_157: -8.35577552e-25 - art_sys_158: -0.0 - art_sys_159: 8.34712985e-24 - art_sys_160: 9.57564825e-21 - art_sys_161: -7.08212577e-25 - art_sys_162: -7.08212577e-25 - art_sys_163: -2.56700343e-21 - art_sys_164: -2.56700343e-21 - art_sys_165: -1.96019289e-15 - art_sys_166: -1.67602280e-16 - art_sys_167: -0.0 - art_sys_168: -2.05374805e-06 - art_sys_169: 1.59076530e-06 - art_sys_170: 6.79374442e-06 + art_sys_87: 6.60181577e-28 + art_sys_88: 3.36891629e-28 + art_sys_89: 4.58400957e-29 + art_sys_90: 6.45023900e-30 + art_sys_91: 3.58153564e-29 + art_sys_92: -5.01809741e-30 + art_sys_93: -4.48452697e-30 + art_sys_94: 1.21177104e-30 + art_sys_95: -2.24463152e-29 + art_sys_96: -3.82275218e-29 + art_sys_97: 4.93385869e-30 + art_sys_98: -3.56142537e-29 + art_sys_99: 2.45465744e-30 + art_sys_100: 2.40251251e-30 + art_sys_101: -2.01669232e-29 + art_sys_102: 5.84919128e-29 + art_sys_103: -2.11377739e-29 + art_sys_104: 2.74382770e-30 + art_sys_105: -1.91897794e-29 + art_sys_106: 3.21750374e-30 + art_sys_107: -6.03830030e-30 + art_sys_108: 1.64605216e-29 + art_sys_109: 5.75133613e-30 + art_sys_110: -4.03808021e-29 + art_sys_111: 4.04078731e-30 + art_sys_112: -5.34612027e-30 + art_sys_113: 2.05657325e-30 + art_sys_114: 1.47406891e-30 + art_sys_115: -5.04747961e-31 + art_sys_116: 1.49615952e-31 + art_sys_117: 1.86738087e-29 + art_sys_118: -3.86180758e-31 + art_sys_119: -8.30289079e-30 + art_sys_120: 1.31544117e-30 + art_sys_121: -7.03724884e-31 + art_sys_122: -1.68484214e-30 + art_sys_123: 3.41905381e-30 + art_sys_124: -5.18492399e-31 + art_sys_125: -6.01716866e-32 + art_sys_126: -6.17816787e-31 + art_sys_127: -8.69503028e-31 + art_sys_128: 7.57961317e-31 + art_sys_129: 3.51515707e-31 + art_sys_130: -3.33435857e-30 + art_sys_131: 4.83969340e-31 + art_sys_132: -2.18456100e-31 + art_sys_133: 5.94618943e-31 + art_sys_134: 6.37375505e-31 + art_sys_135: -5.03450633e-31 + art_sys_136: -5.89259874e-30 + art_sys_137: -4.97185656e-31 + art_sys_138: 7.26616037e-28 + art_sys_139: -5.41259877e-26 + art_sys_140: -9.71909507e-32 + art_sys_141: -1.08129609e-25 + art_sys_142: 0.0 + art_sys_143: 6.60481150e-26 + art_sys_144: 3.31493741e-25 + art_sys_145: 9.47058930e-26 + art_sys_146: 1.11964857e-29 + art_sys_147: 2.59746133e-30 + art_sys_148: -4.07268458e-31 + art_sys_149: -1.36247540e-27 + art_sys_150: -1.24325150e-25 + art_sys_151: -5.71294737e-23 + art_sys_152: -6.82406783e-23 + art_sys_153: 5.93336304e-23 + art_sys_154: -3.98718252e-20 + art_sys_155: -2.99462217e-20 + art_sys_156: 2.03718631e-21 + art_sys_157: 1.67251841e-20 + art_sys_158: 0.0 + art_sys_159: 1.06961481e-23 + art_sys_160: 1.06961481e-23 + art_sys_161: -1.85637241e-21 + art_sys_162: -1.96019289e-15 + art_sys_163: 0.0 + art_sys_164: 1.67602280e-16 + art_sys_165: -2.01760551e-08 + art_sys_166: 8.22208769e-09 + art_sys_167: 6.77868744e-08 + art_sys_168: 2.05374805e-06 + art_sys_169: -1.59076530e-06 + art_sys_170: -6.79374442e-06 art_sys_171: 4.48070347e-05 art_sys_172: 8.98313735e-05 - art_sys_173: -1.45697426e-04 - art_sys_174: 1.01253517e-04 - art_sys_175: -2.89231121e-04 - art_sys_176: 6.17271763e-05 - art_sys_177: -6.04438398e-06 - art_sys_178: 1.46801565e-06 - art_sys_179: 2.16340418e-11 - art_sys_180: 2.41775266e-13 - art_sys_181: -3.36881733e-05 - art_sys_182: 2.66333728e-07 - art_sys_183: -4.14569408e-08 - art_sys_184: 7.35981513e-09 - art_sys_185: 6.72871765e-10 + art_sys_173: 1.45697426e-04 + art_sys_174: -2.16340418e-11 + art_sys_175: -1.01253517e-04 + art_sys_176: 2.89231121e-04 + art_sys_177: -6.17271763e-05 + art_sys_178: -3.36881733e-05 + art_sys_179: -6.04438398e-06 + art_sys_180: 1.46801565e-06 + art_sys_181: 2.66333728e-07 + art_sys_182: 4.14569408e-08 + art_sys_183: 7.35981513e-09 + art_sys_184: -6.72871765e-10 + art_sys_185: 2.41775266e-13 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -49482,127 +49482,127 @@ bins: art_sys_62: 0.0 art_sys_63: 0.0 art_sys_64: 0.0 - art_sys_65: 0.0 - art_sys_66: 0.0 - art_sys_67: 0.0 - art_sys_68: 0.0 - art_sys_69: 0.0 - art_sys_70: 0.0 - art_sys_71: 0.0 - art_sys_72: 2.56974186e-205 - art_sys_73: -1.59281933e-196 - art_sys_74: -4.96524212e-198 - art_sys_75: -2.43887426e-82 - art_sys_76: -2.96211653e-15 + art_sys_65: -1.30075338e-266 + art_sys_66: -4.00564934e-191 + art_sys_67: -1.07812378e-148 + art_sys_68: -3.01357664e-138 + art_sys_69: 5.70128124e-146 + art_sys_70: -2.84206654e-144 + art_sys_71: -2.91110704e-138 + art_sys_72: 1.10283510e-125 + art_sys_73: -7.18164003e-114 + art_sys_74: -4.24684353e-116 + art_sys_75: -1.99916259e-44 + art_sys_76: 2.96211653e-15 art_sys_77: -1.77413255e-14 art_sys_78: 8.50287906e-14 - art_sys_79: -3.06718671e-33 - art_sys_80: 2.61004393e-13 - art_sys_81: 6.32853105e-32 - art_sys_82: -3.29866247e-34 - art_sys_83: -4.24870017e-12 - art_sys_84: 6.61939702e-12 + art_sys_79: 1.95817868e-33 + art_sys_80: -4.12549911e-34 + art_sys_81: 2.61004393e-13 + art_sys_82: 4.24870017e-12 + art_sys_83: -6.61939702e-12 + art_sys_84: 3.86226847e-30 art_sys_85: 2.21789879e-11 art_sys_86: 2.50936504e-11 - art_sys_87: -2.87140454e-29 - art_sys_88: -3.89041151e-28 - art_sys_89: -5.12840017e-09 - art_sys_90: -1.00474202e-26 - art_sys_91: -1.52598091e-27 - art_sys_92: -7.31576203e-09 - art_sys_93: 3.85384728e-08 - art_sys_94: 1.52994770e-26 - art_sys_95: -2.65172738e-26 - art_sys_96: -1.60350192e-26 - art_sys_97: -1.63083891e-26 - art_sys_98: 3.86712972e-26 - art_sys_99: 2.22398328e-26 - art_sys_100: 9.95957890e-27 - art_sys_101: 1.01580551e-26 - art_sys_102: -1.98949453e-27 - art_sys_103: -6.50382609e-27 - art_sys_104: -1.16219971e-26 - art_sys_105: 1.08433444e-26 - art_sys_106: 9.07027517e-27 - art_sys_107: 7.54042334e-27 - art_sys_108: -3.13972654e-27 - art_sys_109: -1.97976144e-26 - art_sys_110: 5.81269094e-27 - art_sys_111: 3.78209256e-28 - art_sys_112: 1.06314798e-26 - art_sys_113: 5.73623707e-28 - art_sys_114: 1.49322137e-26 - art_sys_115: 1.22687987e-27 - art_sys_116: -7.96073161e-27 - art_sys_117: 1.77467045e-27 - art_sys_118: -2.45678507e-27 - art_sys_119: 5.80625013e-28 - art_sys_120: 2.33737679e-27 - art_sys_121: -9.84085705e-28 - art_sys_122: -3.18759580e-27 - art_sys_123: 2.86340405e-27 - art_sys_124: -4.81340131e-27 - art_sys_125: -1.78182067e-28 - art_sys_126: 3.90395322e-28 - art_sys_127: 2.06650173e-28 - art_sys_128: 1.28156084e-27 - art_sys_129: 1.69301203e-27 - art_sys_130: -1.38353509e-27 - art_sys_131: -3.25774312e-26 - art_sys_132: 1.37022386e-27 - art_sys_133: -1.37464472e-27 - art_sys_134: 1.60593913e-27 - art_sys_135: -8.58263582e-28 - art_sys_136: 2.60765437e-24 - art_sys_137: 5.20214316e-28 - art_sys_138: 5.28094526e-28 - art_sys_139: 1.41555796e-28 - art_sys_140: 2.86279316e-22 - art_sys_141: 1.49940261e-28 - art_sys_142: -6.81048272e-28 - art_sys_143: 3.85544989e-28 - art_sys_144: 4.64024792e-22 - art_sys_145: -6.94519652e-28 - art_sys_146: 1.42840775e-26 - art_sys_147: -1.63099932e-22 - art_sys_148: -7.46017190e-21 - art_sys_149: 3.22778286e-27 - art_sys_150: -5.36583146e-25 - art_sys_151: -4.04257872e-24 - art_sys_152: 6.63003736e-20 - art_sys_153: 4.77044420e-24 - art_sys_154: 1.01302764e-28 - art_sys_155: -2.19659087e-20 - art_sys_156: -0.0 - art_sys_157: -5.96747285e-25 - art_sys_158: -0.0 - art_sys_159: 6.12792158e-24 - art_sys_160: -7.60166528e-21 - art_sys_161: 1.06013509e-24 - art_sys_162: 1.06013509e-24 - art_sys_163: 9.22999626e-22 - art_sys_164: 9.22999626e-22 - art_sys_165: 5.17590804e-15 - art_sys_166: 4.38664943e-16 - art_sys_167: 0.0 - art_sys_168: 6.64108385e-08 - art_sys_169: 1.19583320e-06 - art_sys_170: -1.51479471e-06 + art_sys_87: -4.49464309e-29 + art_sys_88: -1.13468764e-29 + art_sys_89: -9.97816892e-31 + art_sys_90: 3.64660318e-30 + art_sys_91: -4.96343234e-31 + art_sys_92: 2.91023791e-30 + art_sys_93: 3.10457186e-30 + art_sys_94: -1.04195926e-30 + art_sys_95: 1.75607948e-30 + art_sys_96: -7.78276126e-30 + art_sys_97: -7.70573022e-32 + art_sys_98: 1.75933782e-30 + art_sys_99: 1.74174527e-31 + art_sys_100: 1.20958836e-31 + art_sys_101: 1.49860101e-30 + art_sys_102: -2.72792517e-30 + art_sys_103: 7.03375157e-31 + art_sys_104: -1.45421842e-31 + art_sys_105: 1.50333700e-30 + art_sys_106: -5.56365639e-31 + art_sys_107: 4.42174923e-31 + art_sys_108: -8.00277737e-31 + art_sys_109: -3.82702226e-31 + art_sys_110: 1.00723934e-30 + art_sys_111: 1.65406977e-31 + art_sys_112: -1.29363717e-31 + art_sys_113: 4.25780058e-31 + art_sys_114: -3.23484672e-31 + art_sys_115: -1.54290225e-31 + art_sys_116: -3.25440421e-31 + art_sys_117: -2.77398583e-31 + art_sys_118: -3.70150857e-32 + art_sys_119: 5.97056308e-31 + art_sys_120: 3.40443788e-32 + art_sys_121: 7.71313125e-32 + art_sys_122: -7.64646864e-33 + art_sys_123: -1.31143077e-31 + art_sys_124: -1.49851598e-32 + art_sys_125: 1.52486322e-32 + art_sys_126: 5.04445741e-33 + art_sys_127: 8.71250832e-32 + art_sys_128: -2.67787636e-31 + art_sys_129: 5.94199048e-32 + art_sys_130: 6.91005015e-32 + art_sys_131: 5.61205728e-32 + art_sys_132: 2.66890127e-32 + art_sys_133: 3.17140879e-33 + art_sys_134: -9.07654394e-32 + art_sys_135: 1.58550401e-32 + art_sys_136: 1.30117624e-30 + art_sys_137: 3.37352501e-32 + art_sys_138: -3.20158307e-29 + art_sys_139: -2.00400976e-26 + art_sys_140: 5.04167572e-33 + art_sys_141: 1.36656284e-25 + art_sys_142: -0.0 + art_sys_143: -4.81291047e-26 + art_sys_144: -2.43520002e-25 + art_sys_145: -8.67876476e-26 + art_sys_146: -6.48321499e-31 + art_sys_147: -8.49250526e-32 + art_sys_148: 7.70676948e-32 + art_sys_149: 7.79645632e-28 + art_sys_150: 2.17886306e-26 + art_sys_151: 9.77036034e-24 + art_sys_152: -2.43151337e-23 + art_sys_153: -1.54742063e-21 + art_sys_154: 3.04720011e-20 + art_sys_155: 1.67783191e-19 + art_sys_156: -2.24259673e-20 + art_sys_157: -2.70200743e-21 + art_sys_158: 0.0 + art_sys_159: -7.06540484e-24 + art_sys_160: -7.06540484e-24 + art_sys_161: 5.12796447e-22 + art_sys_162: 5.17590804e-15 + art_sys_163: -0.0 + art_sys_164: -4.38664943e-16 + art_sys_165: 5.12840017e-09 + art_sys_166: -7.31576203e-09 + art_sys_167: -3.85384728e-08 + art_sys_168: -6.64108385e-08 + art_sys_169: -1.19583320e-06 + art_sys_170: 1.51479471e-06 art_sys_171: 2.68165371e-06 art_sys_172: -1.54963555e-05 - art_sys_173: 4.26228856e-06 - art_sys_174: -7.18790785e-05 - art_sys_175: -1.12327586e-04 - art_sys_176: -2.05026722e-04 - art_sys_177: 1.73424816e-05 - art_sys_178: -3.13465395e-06 - art_sys_179: -5.96528758e-11 - art_sys_180: -6.30936003e-13 - art_sys_181: 3.32214375e-05 - art_sys_182: -6.81315422e-07 - art_sys_183: 1.12897897e-07 - art_sys_184: -1.90495875e-08 - art_sys_185: -1.89694123e-09 + art_sys_173: -4.26228856e-06 + art_sys_174: 5.96528758e-11 + art_sys_175: 7.18790785e-05 + art_sys_176: 1.12327586e-04 + art_sys_177: 2.05026722e-04 + art_sys_178: 3.32214375e-05 + art_sys_179: 1.73424816e-05 + art_sys_180: -3.13465395e-06 + art_sys_181: -6.81315422e-07 + art_sys_182: -1.12897897e-07 + art_sys_183: -1.90495875e-08 + art_sys_184: 1.89694123e-09 + art_sys_185: -6.30936003e-13 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -49773,127 +49773,127 @@ bins: art_sys_62: 0.0 art_sys_63: 0.0 art_sys_64: 0.0 - art_sys_65: 0.0 - art_sys_66: 0.0 - art_sys_67: 0.0 - art_sys_68: 0.0 - art_sys_69: 0.0 - art_sys_70: 0.0 - art_sys_71: 0.0 - art_sys_72: 9.40118112e-207 - art_sys_73: -5.82719346e-198 - art_sys_74: -1.81649142e-199 - art_sys_75: -8.92244213e-84 - art_sys_76: -1.08366855e-16 + art_sys_65: -4.75864603e-268 + art_sys_66: -1.46543735e-192 + art_sys_67: -3.94423656e-150 + art_sys_68: -1.10249485e-139 + art_sys_69: 2.08577181e-147 + art_sys_70: -1.03974914e-145 + art_sys_71: -1.06500710e-139 + art_sys_72: 4.03464112e-127 + art_sys_73: -2.62735019e-115 + art_sys_74: -1.55367647e-117 + art_sys_75: -7.31378931e-46 + art_sys_76: 1.08366855e-16 art_sys_77: -1.15121762e-15 art_sys_78: 5.23194668e-15 - art_sys_79: -3.58695401e-34 - art_sys_80: 1.04212893e-14 - art_sys_81: 2.53043829e-33 - art_sys_82: -2.06804325e-35 - art_sys_83: -1.42472166e-13 - art_sys_84: -2.09987779e-12 + art_sys_79: 1.19612917e-34 + art_sys_80: -1.98358655e-35 + art_sys_81: 1.04212893e-14 + art_sys_82: 1.42472166e-13 + art_sys_83: 2.09987779e-12 + art_sys_84: -8.02785964e-31 art_sys_85: -2.79564671e-12 art_sys_86: -9.26258479e-13 - art_sys_87: -5.92304096e-31 - art_sys_88: -5.33101643e-29 - art_sys_89: -7.44400608e-10 - art_sys_90: -1.44698664e-27 - art_sys_91: -5.55703292e-29 - art_sys_92: 4.49214237e-10 - art_sys_93: 4.00652732e-09 - art_sys_94: 1.29190091e-27 - art_sys_95: -2.19288087e-27 - art_sys_96: -1.73303553e-27 - art_sys_97: -1.76702361e-27 - art_sys_98: 4.45111433e-27 - art_sys_99: 2.12135817e-27 - art_sys_100: 1.61579062e-27 - art_sys_101: 1.17465438e-27 - art_sys_102: -3.44671564e-28 - art_sys_103: -5.84775549e-28 - art_sys_104: -1.33909953e-27 - art_sys_105: 1.25830120e-27 - art_sys_106: 1.01889900e-27 - art_sys_107: 3.51020766e-29 - art_sys_108: 1.45751128e-28 - art_sys_109: -2.04041427e-27 - art_sys_110: 4.31368965e-28 - art_sys_111: 3.28249698e-29 - art_sys_112: 1.10522187e-27 - art_sys_113: -1.19738563e-28 - art_sys_114: 1.27554563e-27 - art_sys_115: -5.21745534e-30 - art_sys_116: -1.01048828e-27 - art_sys_117: 3.30732890e-28 - art_sys_118: -3.19054214e-28 - art_sys_119: 5.89814430e-29 - art_sys_120: 3.72673509e-28 - art_sys_121: 7.13163020e-30 - art_sys_122: -2.03963981e-28 - art_sys_123: 3.97871772e-28 - art_sys_124: -4.57542807e-28 - art_sys_125: 9.11484647e-30 - art_sys_126: -2.82105378e-29 - art_sys_127: -4.23640114e-29 - art_sys_128: 1.30087777e-28 - art_sys_129: 6.47236183e-29 - art_sys_130: -2.19387371e-28 - art_sys_131: -3.28073997e-27 - art_sys_132: 1.74649229e-28 - art_sys_133: -1.35710788e-28 - art_sys_134: 1.74349879e-28 - art_sys_135: -8.03891791e-29 - art_sys_136: -6.02387692e-25 - art_sys_137: 5.60234167e-29 - art_sys_138: 4.82990305e-29 - art_sys_139: 1.31984430e-29 - art_sys_140: 1.76800169e-23 - art_sys_141: -4.16622440e-30 - art_sys_142: -7.78801041e-29 - art_sys_143: 6.53796699e-29 - art_sys_144: -1.71660333e-21 - art_sys_145: -8.45964938e-29 - art_sys_146: 8.26432547e-27 - art_sys_147: -1.13599624e-21 - art_sys_148: 6.87567825e-21 - art_sys_149: -1.32265957e-27 - art_sys_150: 2.36390317e-25 - art_sys_151: 5.35175337e-25 - art_sys_152: -3.55284695e-20 - art_sys_153: -3.14645352e-25 - art_sys_154: 1.07463699e-29 - art_sys_155: 1.92038178e-20 - art_sys_156: -0.0 - art_sys_157: 4.59713825e-26 - art_sys_158: -0.0 - art_sys_159: -1.10747447e-24 - art_sys_160: 4.66446649e-21 - art_sys_161: 7.14358829e-24 - art_sys_162: 7.14358829e-24 - art_sys_163: -1.02385030e-21 - art_sys_164: -1.02385030e-21 - art_sys_165: -1.65560573e-14 - art_sys_166: -1.39629676e-15 - art_sys_167: -0.0 - art_sys_168: 3.99361402e-08 - art_sys_169: 9.70988872e-08 - art_sys_170: -3.11700333e-07 + art_sys_87: 2.26418807e-30 + art_sys_88: 4.04059665e-32 + art_sys_89: -7.45559165e-32 + art_sys_90: -3.40817120e-31 + art_sys_91: -7.60116906e-32 + art_sys_92: -2.36696410e-31 + art_sys_93: -2.45379065e-31 + art_sys_94: 9.17809676e-32 + art_sys_95: -6.55158264e-32 + art_sys_96: 6.19793162e-31 + art_sys_97: 9.01787768e-33 + art_sys_98: -4.70611948e-32 + art_sys_99: -2.53699783e-32 + art_sys_100: -2.52197873e-32 + art_sys_101: -6.67652272e-32 + art_sys_102: 5.96277128e-32 + art_sys_103: 6.33105948e-33 + art_sys_104: 3.42413232e-33 + art_sys_105: -8.16013959e-32 + art_sys_106: 3.48983826e-32 + art_sys_107: -2.02661376e-32 + art_sys_108: 2.47762353e-32 + art_sys_109: 1.99909122e-32 + art_sys_110: 2.60646133e-32 + art_sys_111: -2.51151362e-32 + art_sys_112: 2.26345089e-32 + art_sys_113: -4.32059761e-32 + art_sys_114: 2.44869233e-32 + art_sys_115: 1.74120567e-32 + art_sys_116: 2.65915353e-32 + art_sys_117: -3.56703316e-32 + art_sys_118: 3.85632570e-33 + art_sys_119: -2.66431913e-32 + art_sys_120: -6.07907222e-33 + art_sys_121: -3.27380121e-33 + art_sys_122: 5.09996088e-33 + art_sys_123: 2.58428481e-33 + art_sys_124: 3.35051262e-33 + art_sys_125: -4.81152586e-34 + art_sys_126: -9.96429005e-34 + art_sys_127: -5.38470655e-33 + art_sys_128: 2.05288679e-32 + art_sys_129: -6.32219194e-33 + art_sys_130: 2.46981419e-33 + art_sys_131: -7.26458674e-33 + art_sys_132: -1.60143535e-33 + art_sys_133: -1.90599708e-33 + art_sys_134: -5.19010851e-33 + art_sys_135: -5.55977237e-34 + art_sys_136: 4.20703791e-31 + art_sys_137: 7.23726362e-32 + art_sys_138: -2.30430739e-28 + art_sys_139: 6.59585642e-26 + art_sys_140: -1.74600441e-34 + art_sys_141: -2.64075782e-25 + art_sys_142: 0.0 + art_sys_143: 8.60287121e-26 + art_sys_144: 4.36159951e-25 + art_sys_145: 1.63955943e-25 + art_sys_146: 4.02824496e-32 + art_sys_147: -2.62952501e-33 + art_sys_148: -6.85699713e-33 + art_sys_149: 6.77343187e-29 + art_sys_150: 4.93326391e-27 + art_sys_151: 2.24981634e-24 + art_sys_152: 5.22143625e-23 + art_sys_153: 1.71241984e-21 + art_sys_154: -1.98185870e-20 + art_sys_155: -3.27170003e-20 + art_sys_156: 3.34207203e-21 + art_sys_157: 7.35805177e-21 + art_sys_158: 0.0 + art_sys_159: 1.20549063e-23 + art_sys_160: 1.20549063e-23 + art_sys_161: -9.84727820e-22 + art_sys_162: -1.65560573e-14 + art_sys_163: 0.0 + art_sys_164: 1.39629676e-15 + art_sys_165: 7.44400608e-10 + art_sys_166: 4.49214237e-10 + art_sys_167: -4.00652732e-09 + art_sys_168: -3.99361402e-08 + art_sys_169: -9.70988872e-08 + art_sys_170: 3.11700333e-07 art_sys_171: -1.27211114e-06 art_sys_172: -3.83375623e-06 - art_sys_173: 5.81141436e-06 - art_sys_174: -9.08062170e-06 - art_sys_175: 4.20758608e-05 - art_sys_176: -7.13109191e-05 - art_sys_177: -1.88350371e-05 - art_sys_178: 1.04905946e-05 - art_sys_179: 1.73630929e-10 - art_sys_180: 1.17385812e-12 - art_sys_181: -1.45159785e-04 - art_sys_182: 1.62703354e-06 - art_sys_183: -3.24435622e-07 - art_sys_184: 5.84119625e-08 - art_sys_185: 5.73421303e-09 + art_sys_173: -5.81141436e-06 + art_sys_174: -1.73630929e-10 + art_sys_175: 9.08062170e-06 + art_sys_176: -4.20758608e-05 + art_sys_177: 7.13109191e-05 + art_sys_178: -1.45159785e-04 + art_sys_179: -1.88350371e-05 + art_sys_180: 1.04905946e-05 + art_sys_181: 1.62703354e-06 + art_sys_182: 3.24435622e-07 + art_sys_183: 5.84119625e-08 + art_sys_184: -5.73421303e-09 + art_sys_185: 1.17385812e-12 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -50064,127 +50064,127 @@ bins: art_sys_62: 0.0 art_sys_63: 0.0 art_sys_64: 0.0 - art_sys_65: 0.0 - art_sys_66: 0.0 - art_sys_67: 0.0 - art_sys_68: 0.0 - art_sys_69: 0.0 - art_sys_70: 0.0 - art_sys_71: 0.0 - art_sys_72: 2.67929193e-208 - art_sys_73: -1.66072244e-199 - art_sys_74: -5.17691421e-201 - art_sys_75: -2.54286329e-85 - art_sys_76: -3.08841562e-18 + art_sys_65: -1.35617506e-269 + art_sys_66: -4.17644271e-194 + art_sys_67: -1.12409296e-151 + art_sys_68: -3.14206990e-141 + art_sys_69: 5.94437318e-149 + art_sys_70: -2.96324693e-147 + art_sys_71: -3.03523119e-141 + art_sys_72: 1.14985793e-128 + art_sys_73: -7.48785170e-117 + art_sys_74: -4.42792098e-119 + art_sys_75: -2.08440313e-47 + art_sys_76: 3.08841562e-18 art_sys_77: -4.96150528e-17 art_sys_78: 2.23280032e-16 - art_sys_79: -4.69966214e-36 - art_sys_80: 1.55973711e-16 - art_sys_81: 3.83054655e-35 - art_sys_82: -9.05026456e-37 - art_sys_83: 1.35917614e-14 - art_sys_84: -2.44068329e-13 + art_sys_79: 5.09758341e-36 + art_sys_80: -5.64357739e-37 + art_sys_81: 1.55973711e-16 + art_sys_82: -1.35917614e-14 + art_sys_83: 2.44068329e-13 + art_sys_84: -1.02142681e-31 art_sys_85: -5.70157823e-13 art_sys_86: -6.85424392e-13 - art_sys_87: 7.72169181e-31 - art_sys_88: -1.57593356e-30 - art_sys_89: -2.50460910e-11 - art_sys_90: -4.81914994e-29 - art_sys_91: 4.40088619e-30 - art_sys_92: 8.64467966e-11 - art_sys_93: 5.77653768e-11 - art_sys_94: 2.44459030e-29 - art_sys_95: 6.44886468e-30 - art_sys_96: -2.93849918e-29 - art_sys_97: -2.97171566e-29 - art_sys_98: 9.26747585e-29 - art_sys_99: 1.80573740e-29 - art_sys_100: 6.17197685e-29 - art_sys_101: 2.47618441e-29 - art_sys_102: -1.17681366e-29 - art_sys_103: -2.44285442e-30 - art_sys_104: -2.80178572e-29 - art_sys_105: 2.67366900e-29 - art_sys_106: 2.12194561e-29 - art_sys_107: -3.10757459e-29 - art_sys_108: 8.36888385e-30 - art_sys_109: -2.82327235e-29 - art_sys_110: -5.09888530e-30 - art_sys_111: -6.96252909e-30 - art_sys_112: 1.59285293e-29 - art_sys_113: -6.91834448e-30 - art_sys_114: -2.08783566e-30 - art_sys_115: -8.84771784e-30 - art_sys_116: -2.65932147e-29 - art_sys_117: 1.33065798e-29 - art_sys_118: -8.80241653e-30 - art_sys_119: 7.83456456e-31 - art_sys_120: 1.39699333e-29 - art_sys_121: 7.65268192e-30 - art_sys_122: 5.51377432e-30 - art_sys_123: 1.23617981e-29 - art_sys_124: -3.76638923e-30 - art_sys_125: 2.12714749e-30 - art_sys_126: -4.96058492e-30 - art_sys_127: -5.08115616e-30 - art_sys_128: 1.67643123e-30 - art_sys_129: -6.42854711e-30 - art_sys_130: -6.98751571e-30 - art_sys_131: -3.55264298e-29 - art_sys_132: 4.64425852e-30 - art_sys_133: -1.51195009e-30 - art_sys_134: 3.03734521e-30 - art_sys_135: -5.75332192e-31 - art_sys_136: -8.64024671e-26 - art_sys_137: 8.85116767e-31 - art_sys_138: 2.57312375e-31 - art_sys_139: 5.05962749e-32 - art_sys_140: -1.18973575e-22 - art_sys_141: -1.28190340e-30 - art_sys_142: -1.59012656e-30 - art_sys_143: 1.13317941e-30 - art_sys_144: 4.53994397e-21 - art_sys_145: -2.02359427e-30 - art_sys_146: 6.10813057e-28 - art_sys_147: -7.82202271e-22 - art_sys_148: -5.94480996e-21 - art_sys_149: -6.58068625e-28 - art_sys_150: 1.21728470e-25 - art_sys_151: 1.05962790e-24 - art_sys_152: 3.23069835e-20 - art_sys_153: -1.25850648e-24 - art_sys_154: 1.77990126e-31 - art_sys_155: -1.41031761e-20 - art_sys_156: 0.0 - art_sys_157: 1.28095750e-25 + art_sys_87: 1.22861418e-30 + art_sys_88: 3.09996796e-31 + art_sys_89: 2.33664730e-32 + art_sys_90: -1.01702480e-31 + art_sys_91: 1.08839485e-32 + art_sys_92: -7.95866101e-32 + art_sys_93: -8.37246608e-32 + art_sys_94: 2.90873413e-32 + art_sys_95: -4.52193439e-32 + art_sys_96: 1.88082238e-31 + art_sys_97: 4.30161887e-33 + art_sys_98: -4.68676506e-32 + art_sys_99: -5.69994457e-33 + art_sys_100: -4.53621401e-33 + art_sys_101: -4.00473383e-32 + art_sys_102: 7.32060008e-32 + art_sys_103: -1.61779073e-32 + art_sys_104: 3.88678921e-33 + art_sys_105: -4.17385723e-32 + art_sys_106: 1.46489592e-32 + art_sys_107: -1.19444257e-32 + art_sys_108: 2.20339768e-32 + art_sys_109: 1.24142614e-32 + art_sys_110: -2.73359900e-32 + art_sys_111: -5.60882956e-33 + art_sys_112: 3.07533582e-33 + art_sys_113: -1.18148236e-32 + art_sys_114: 8.90117769e-33 + art_sys_115: 4.65514875e-33 + art_sys_116: 8.77071620e-33 + art_sys_117: 6.58467008e-33 + art_sys_118: 9.48639990e-34 + art_sys_119: -1.33360832e-32 + art_sys_120: -8.80238001e-34 + art_sys_121: -1.89566198e-33 + art_sys_122: 2.30873282e-34 + art_sys_123: 3.70788423e-33 + art_sys_124: 4.77294112e-34 + art_sys_125: -3.20950083e-34 + art_sys_126: -1.85329188e-34 + art_sys_127: -2.41820580e-33 + art_sys_128: 7.23396378e-33 + art_sys_129: -1.68294847e-33 + art_sys_130: -2.54555919e-33 + art_sys_131: -1.74732289e-33 + art_sys_132: -7.16790557e-34 + art_sys_133: -8.08677317e-35 + art_sys_134: 2.49003385e-34 + art_sys_135: -4.57551604e-34 + art_sys_136: -7.96297075e-32 + art_sys_137: 3.08068570e-32 + art_sys_138: -1.08196729e-28 + art_sys_139: 3.34219724e-26 + art_sys_140: -1.54772994e-34 + art_sys_141: -1.39300316e-25 + art_sys_142: 0.0 + art_sys_143: 4.74692605e-26 + art_sys_144: 2.40777734e-25 + art_sys_145: 8.86460562e-26 + art_sys_146: 2.55348332e-32 + art_sys_147: 1.96776074e-33 + art_sys_148: -2.26340022e-33 + art_sys_149: 2.65924259e-32 + art_sys_150: -2.90519049e-28 + art_sys_151: -1.49455876e-25 + art_sys_152: 4.01854411e-23 + art_sys_153: -3.78604378e-21 + art_sys_154: 1.43599626e-20 + art_sys_155: 9.10600566e-20 + art_sys_156: -1.39999885e-20 + art_sys_157: -1.46464347e-21 art_sys_158: 0.0 - art_sys_159: -6.43815837e-25 - art_sys_160: -4.54089721e-21 - art_sys_161: -6.51494413e-24 - art_sys_162: -6.51494413e-24 - art_sys_163: 4.07189168e-22 - art_sys_164: 4.07189168e-22 - art_sys_165: 5.31586306e-14 - art_sys_166: 4.48228136e-15 - art_sys_167: 0.0 - art_sys_168: 1.07194052e-09 - art_sys_169: -8.16774315e-10 - art_sys_170: -2.41879631e-09 + art_sys_159: 6.59107817e-24 + art_sys_160: 6.59107817e-24 + art_sys_161: 4.85987102e-22 + art_sys_162: 5.31586306e-14 + art_sys_163: -0.0 + art_sys_164: -4.48228136e-15 + art_sys_165: 2.50460910e-11 + art_sys_166: 8.64467966e-11 + art_sys_167: -5.77653768e-11 + art_sys_168: -1.07194052e-09 + art_sys_169: 8.16774315e-10 + art_sys_170: 2.41879631e-09 art_sys_171: -1.35541824e-07 art_sys_172: 2.16672056e-07 - art_sys_173: 1.00066865e-07 - art_sys_174: 5.60925330e-06 - art_sys_175: 9.49007874e-06 - art_sys_176: 2.58820103e-05 - art_sys_177: 9.93104835e-05 - art_sys_178: -1.20583780e-05 - art_sys_179: -5.90891307e-10 - art_sys_180: -8.71848270e-12 - art_sys_181: -3.96582467e-05 - art_sys_182: -6.08325269e-06 - art_sys_183: 8.30447847e-07 - art_sys_184: -1.78645898e-07 - art_sys_185: -1.46879142e-08 + art_sys_173: -1.00066865e-07 + art_sys_174: 5.90891307e-10 + art_sys_175: -5.60925330e-06 + art_sys_176: -9.49007874e-06 + art_sys_177: -2.58820103e-05 + art_sys_178: -3.96582467e-05 + art_sys_179: 9.93104835e-05 + art_sys_180: -1.20583780e-05 + art_sys_181: -6.08325269e-06 + art_sys_182: -8.30447847e-07 + art_sys_183: -1.78645898e-07 + art_sys_184: 1.46879142e-08 + art_sys_185: -8.71848270e-12 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -50355,127 +50355,127 @@ bins: art_sys_62: 0.0 art_sys_63: 0.0 art_sys_64: 0.0 - art_sys_65: 0.0 - art_sys_66: 0.0 - art_sys_67: 0.0 - art_sys_68: 0.0 - art_sys_69: 0.0 - art_sys_70: 0.0 - art_sys_71: 0.0 - art_sys_72: 6.12024501e-210 - art_sys_73: -3.79355011e-201 - art_sys_74: -1.18255062e-202 - art_sys_75: -5.80865613e-87 - art_sys_76: -7.05485994e-20 + art_sys_65: -3.09779143e-271 + art_sys_66: -9.54023743e-196 + art_sys_67: -2.56776268e-153 + art_sys_68: -7.17742227e-143 + art_sys_69: 1.35787165e-150 + art_sys_70: -6.76893742e-149 + art_sys_71: -6.93337088e-143 + art_sys_72: 2.62661753e-130 + art_sys_73: -1.71044806e-118 + art_sys_74: -1.01146886e-120 + art_sys_75: -4.76139677e-49 + art_sys_76: 7.05485994e-20 art_sys_77: -2.03420626e-18 art_sys_78: 9.28789434e-18 - art_sys_79: -2.70909303e-37 - art_sys_80: -7.35012951e-19 - art_sys_81: -1.48058548e-37 - art_sys_82: -3.82403363e-38 - art_sys_83: 1.87522118e-15 - art_sys_84: -1.41718951e-14 + art_sys_79: 2.12492936e-37 + art_sys_80: -1.64305418e-38 + art_sys_81: -7.35012951e-19 + art_sys_82: -1.87522118e-15 + art_sys_83: 1.41718951e-14 + art_sys_84: -6.25885452e-33 art_sys_85: -4.53663004e-14 art_sys_86: -6.69936006e-14 - art_sys_87: 8.59211259e-32 - art_sys_88: 1.71444199e-31 - art_sys_89: 2.05112942e-12 - art_sys_90: 3.98550034e-30 - art_sys_91: -1.43897341e-31 - art_sys_92: -4.40390859e-12 - art_sys_93: -9.52340230e-12 - art_sys_94: -2.84873393e-30 - art_sys_95: 3.49623331e-30 - art_sys_96: 4.23576613e-30 - art_sys_97: 4.52958299e-30 - art_sys_98: -1.17390311e-29 - art_sys_99: -4.45007808e-30 - art_sys_100: -5.41407575e-30 - art_sys_101: -3.08289929e-30 - art_sys_102: 1.22264214e-30 - art_sys_103: 1.09504262e-30 - art_sys_104: 3.48524313e-30 - art_sys_105: -3.38354425e-30 - art_sys_106: -2.37243948e-30 - art_sys_107: 1.19053860e-30 - art_sys_108: -1.14389433e-30 - art_sys_109: 4.79401582e-30 - art_sys_110: -4.96908095e-31 - art_sys_111: 1.76887160e-31 - art_sys_112: -2.63322955e-30 - art_sys_113: 5.27651822e-31 - art_sys_114: -2.19315366e-30 - art_sys_115: 3.81880063e-31 - art_sys_116: 2.90285401e-30 - art_sys_117: -1.21586617e-30 - art_sys_118: 9.39195208e-31 - art_sys_119: -1.22553370e-31 - art_sys_120: -1.22697845e-30 - art_sys_121: -3.16737664e-31 - art_sys_122: 1.47764583e-31 - art_sys_123: -1.22229482e-30 - art_sys_124: 9.74845249e-31 - art_sys_125: -1.14004993e-31 - art_sys_126: 2.49063340e-31 - art_sys_127: 3.03141061e-31 - art_sys_128: -2.92803347e-31 - art_sys_129: 1.29979319e-31 - art_sys_130: 7.34614347e-31 - art_sys_131: 2.15621164e-29 - art_sys_132: -5.01521920e-31 - art_sys_133: 3.04233392e-31 - art_sys_134: -4.30657469e-31 - art_sys_135: 1.66711645e-31 - art_sys_136: 1.91026302e-27 - art_sys_137: -1.31797573e-31 - art_sys_138: -9.70222928e-32 - art_sys_139: -3.56954754e-33 - art_sys_140: -1.53374192e-22 - art_sys_141: 6.62083686e-32 - art_sys_142: 2.03761138e-31 - art_sys_143: 8.68825429e-31 - art_sys_144: -2.12843382e-21 - art_sys_145: 3.66395606e-31 - art_sys_146: 5.77925250e-28 - art_sys_147: -1.59042031e-21 - art_sys_148: 3.02566852e-21 - art_sys_149: -1.34422948e-27 - art_sys_150: 2.50341301e-25 - art_sys_151: 2.41978103e-24 - art_sys_152: -2.34961770e-20 - art_sys_153: -3.01172467e-24 - art_sys_154: -2.59723835e-32 - art_sys_155: 9.46911558e-21 - art_sys_156: 0.0 - art_sys_157: 4.13791309e-25 - art_sys_158: 0.0 - art_sys_159: -4.71374810e-24 - art_sys_160: 2.90894723e-21 - art_sys_161: 5.02438823e-24 - art_sys_162: 5.02438823e-24 - art_sys_163: -4.64872922e-22 - art_sys_164: -4.64872922e-22 - art_sys_165: -1.38154194e-13 - art_sys_166: -1.32439370e-14 - art_sys_167: -0.0 - art_sys_168: -4.44785513e-10 - art_sys_169: -3.09873485e-10 - art_sys_170: 3.51394825e-09 + art_sys_87: 1.19612516e-31 + art_sys_88: 3.22781751e-32 + art_sys_89: 2.70340484e-33 + art_sys_90: -8.92268473e-33 + art_sys_91: 1.54952218e-33 + art_sys_92: -7.11195606e-33 + art_sys_93: -7.51284351e-33 + art_sys_94: 2.55921395e-33 + art_sys_95: -4.43214547e-33 + art_sys_96: 1.79615733e-32 + art_sys_97: 3.95077921e-34 + art_sys_98: -4.66875373e-33 + art_sys_99: -3.89173291e-34 + art_sys_100: -3.45326133e-34 + art_sys_101: -3.85297046e-33 + art_sys_102: 7.48958574e-33 + art_sys_103: -1.78815564e-33 + art_sys_104: 3.96852645e-34 + art_sys_105: -3.94737607e-33 + art_sys_106: 1.35631520e-33 + art_sys_107: -1.14780673e-33 + art_sys_108: 2.17840595e-33 + art_sys_109: 9.83421092e-34 + art_sys_110: -2.99387456e-33 + art_sys_111: -2.40887846e-34 + art_sys_112: 2.05663594e-34 + art_sys_113: -1.01788686e-33 + art_sys_114: 8.00214072e-34 + art_sys_115: 3.73101611e-34 + art_sys_116: 7.82540387e-34 + art_sys_117: 8.84069032e-34 + art_sys_118: 8.02099044e-35 + art_sys_119: -1.46117447e-33 + art_sys_120: -5.76117108e-35 + art_sys_121: -1.81486254e-34 + art_sys_122: -7.44736774e-36 + art_sys_123: 3.76057357e-34 + art_sys_124: 3.32262825e-35 + art_sys_125: -3.17207254e-35 + art_sys_126: -3.06087602e-35 + art_sys_127: -2.25198699e-34 + art_sys_128: 6.50434975e-34 + art_sys_129: -1.44940638e-34 + art_sys_130: -2.99004157e-34 + art_sys_131: -1.51153923e-34 + art_sys_132: -6.58825248e-35 + art_sys_133: 1.63231823e-36 + art_sys_134: -2.02627311e-33 + art_sys_135: -6.66637630e-35 + art_sys_136: 5.93181053e-32 + art_sys_137: 5.15757063e-32 + art_sys_138: -1.77504394e-28 + art_sys_139: 5.68300674e-26 + art_sys_140: -2.02452277e-35 + art_sys_141: -2.41297430e-25 + art_sys_142: 0.0 + art_sys_143: 8.03549494e-26 + art_sys_144: 4.07343750e-25 + art_sys_145: 1.50651426e-25 + art_sys_146: 2.68453764e-33 + art_sys_147: 2.22680242e-34 + art_sys_148: -1.99121774e-34 + art_sys_149: 5.42698226e-32 + art_sys_150: -1.24075013e-28 + art_sys_151: -7.87596768e-26 + art_sys_152: 5.37266122e-23 + art_sys_153: -1.59162522e-21 + art_sys_154: -1.01932633e-20 + art_sys_155: -3.67872779e-20 + art_sys_156: 5.21376957e-21 + art_sys_157: 1.51470960e-21 + art_sys_158: -0.0 + art_sys_159: 1.13490393e-23 + art_sys_160: 1.13490393e-23 + art_sys_161: -3.68563361e-22 + art_sys_162: -1.38154194e-13 + art_sys_163: 0.0 + art_sys_164: 1.32439370e-14 + art_sys_165: -2.05112942e-12 + art_sys_166: -4.40390859e-12 + art_sys_167: 9.52340230e-12 + art_sys_168: 4.44785513e-10 + art_sys_169: 3.09873485e-10 + art_sys_170: -3.51394825e-09 art_sys_171: 8.49803566e-09 art_sys_172: 1.01265580e-07 - art_sys_173: -1.31578849e-07 - art_sys_174: 3.38681443e-07 - art_sys_175: -3.33993778e-06 - art_sys_176: 4.87642831e-06 - art_sys_177: 2.40093284e-05 - art_sys_178: 6.66461828e-05 - art_sys_179: 1.78384146e-09 - art_sys_180: 8.99477014e-12 - art_sys_181: 1.75284873e-05 - art_sys_182: 6.44617854e-06 - art_sys_183: -3.20841382e-06 - art_sys_184: 4.54733327e-07 - art_sys_185: 6.69527873e-08 + art_sys_173: 1.31578849e-07 + art_sys_174: -1.78384146e-09 + art_sys_175: -3.38681443e-07 + art_sys_176: 3.33993778e-06 + art_sys_177: -4.87642831e-06 + art_sys_178: 1.75284873e-05 + art_sys_179: 2.40093284e-05 + art_sys_180: 6.66461828e-05 + art_sys_181: 6.44617854e-06 + art_sys_182: 3.20841382e-06 + art_sys_183: 4.54733327e-07 + art_sys_184: -6.69527873e-08 + art_sys_185: 8.99477014e-12 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -50646,127 +50646,127 @@ bins: art_sys_62: 0.0 art_sys_63: 0.0 art_sys_64: 0.0 - art_sys_65: 0.0 - art_sys_66: 0.0 - art_sys_67: 0.0 - art_sys_68: 0.0 - art_sys_69: 0.0 - art_sys_70: 0.0 - art_sys_71: 0.0 - art_sys_72: 5.48837178e-212 - art_sys_73: -3.40189214e-203 - art_sys_74: -1.06046040e-204 - art_sys_75: -5.20934684e-89 - art_sys_76: -6.32697332e-22 + art_sys_65: -2.77729662e-273 + art_sys_66: -8.55592133e-198 + art_sys_67: -2.30283323e-155 + art_sys_68: -6.43689026e-145 + art_sys_69: 1.21777297e-152 + art_sys_70: -6.07055091e-151 + art_sys_71: -6.21801891e-145 + art_sys_72: 2.35561572e-132 + art_sys_73: -1.53397223e-120 + art_sys_74: -9.07110354e-123 + art_sys_75: -4.27013868e-51 + art_sys_76: 6.32697332e-22 art_sys_77: -8.66572271e-20 art_sys_78: 4.24065718e-19 - art_sys_79: -2.05735165e-38 - art_sys_80: 2.51834783e-19 - art_sys_81: 6.23061112e-38 - art_sys_82: -1.72774494e-39 - art_sys_83: 1.05031275e-16 - art_sys_84: -5.30665500e-16 + art_sys_79: 9.79459698e-39 + art_sys_80: -1.03026521e-39 + art_sys_81: 2.51834783e-19 + art_sys_82: -1.05031275e-16 + art_sys_83: 5.30665500e-16 + art_sys_84: -2.45079511e-34 art_sys_85: -2.10518437e-15 art_sys_86: -3.15751051e-15 - art_sys_87: 4.14175189e-33 - art_sys_88: 1.84321014e-32 - art_sys_89: 2.37541087e-13 - art_sys_90: 4.59545081e-31 - art_sys_91: -6.77819704e-32 - art_sys_92: -1.37609316e-12 - art_sys_93: -1.00532884e-13 - art_sys_94: 1.56177635e-31 - art_sys_95: -6.02864500e-31 - art_sys_96: 1.13856326e-31 - art_sys_97: 1.30238180e-31 - art_sys_98: -5.95439441e-31 - art_sys_99: 1.66351537e-31 - art_sys_100: -6.94214858e-31 - art_sys_101: -1.61136725e-31 - art_sys_102: 1.56606439e-31 - art_sys_103: -9.11509905e-32 - art_sys_104: 1.77477126e-31 - art_sys_105: -1.82328356e-31 - art_sys_106: 1.50301884e-32 - art_sys_107: 5.60004280e-31 - art_sys_108: -1.50457498e-31 - art_sys_109: 3.07730528e-32 - art_sys_110: 1.87106715e-31 - art_sys_111: 1.03191139e-31 - art_sys_112: -2.80812808e-32 - art_sys_113: 8.98040531e-32 - art_sys_114: 3.10897791e-31 - art_sys_115: 1.50133353e-31 - art_sys_116: 2.31536957e-31 - art_sys_117: -1.69943475e-31 - art_sys_118: 8.01477552e-32 - art_sys_119: 8.15389738e-34 - art_sys_120: -1.55357855e-31 - art_sys_121: -1.29322199e-31 - art_sys_122: -1.36802953e-31 - art_sys_123: -1.23007861e-31 - art_sys_124: -3.63710518e-32 - art_sys_125: -3.50502042e-32 - art_sys_126: 7.77460810e-32 - art_sys_127: 7.56232595e-32 - art_sys_128: 7.89777283e-34 - art_sys_129: 1.32319414e-31 - art_sys_130: 7.13120858e-32 - art_sys_131: 8.19574273e-31 - art_sys_132: -4.04534826e-32 - art_sys_133: -4.34762851e-33 - art_sys_134: -1.28002279e-32 - art_sys_135: -7.95115232e-33 - art_sys_136: 6.30248527e-28 - art_sys_137: -1.03879199e-33 - art_sys_138: 6.18567673e-33 - art_sys_139: -7.82280129e-32 - art_sys_140: -1.06641221e-23 - art_sys_141: 2.02382518e-32 - art_sys_142: 9.98375589e-33 - art_sys_143: 1.51025538e-31 - art_sys_144: -1.06059704e-21 - art_sys_145: 3.32842237e-32 - art_sys_146: 7.38738656e-29 - art_sys_147: -4.77199689e-22 - art_sys_148: -2.35373931e-21 - art_sys_149: -1.62496887e-28 - art_sys_150: 3.02530373e-26 - art_sys_151: 2.92884626e-25 - art_sys_152: 1.53476862e-20 - art_sys_153: -3.71681301e-25 - art_sys_154: -5.98103166e-34 - art_sys_155: -5.19735426e-21 - art_sys_156: 0.0 - art_sys_157: 6.29221238e-26 + art_sys_87: 5.64174612e-33 + art_sys_88: 1.53776627e-33 + art_sys_89: 1.36623473e-34 + art_sys_90: -4.17331571e-34 + art_sys_91: 7.86682228e-35 + art_sys_92: -3.31427791e-34 + art_sys_93: -3.52080867e-34 + art_sys_94: 1.17530231e-34 + art_sys_95: -2.14055864e-34 + art_sys_96: 8.26804097e-34 + art_sys_97: 1.66381673e-35 + art_sys_98: -2.20542648e-34 + art_sys_99: -1.73727098e-35 + art_sys_100: -1.52756521e-35 + art_sys_101: -1.82045097e-34 + art_sys_102: 3.49603766e-34 + art_sys_103: -9.79888993e-35 + art_sys_104: 1.96163600e-35 + art_sys_105: -1.84707764e-34 + art_sys_106: 6.40117031e-35 + art_sys_107: -5.42160886e-35 + art_sys_108: 1.02725277e-34 + art_sys_109: 4.57881569e-35 + art_sys_110: -1.43092942e-34 + art_sys_111: -4.59148523e-36 + art_sys_112: 9.40638729e-36 + art_sys_113: -4.76312711e-35 + art_sys_114: 3.73235992e-35 + art_sys_115: 1.70502647e-35 + art_sys_116: 3.66479518e-35 + art_sys_117: 4.43916305e-35 + art_sys_118: 3.67332289e-36 + art_sys_119: -7.80164339e-35 + art_sys_120: -2.59378089e-36 + art_sys_121: -8.61255902e-36 + art_sys_122: -5.35167575e-37 + art_sys_123: 1.78470001e-35 + art_sys_124: 1.37015156e-36 + art_sys_125: -1.56408462e-36 + art_sys_126: -1.77334027e-36 + art_sys_127: -1.05005418e-35 + art_sys_128: 3.02508425e-35 + art_sys_129: -6.65343421e-36 + art_sys_130: -1.22904063e-35 + art_sys_131: 1.92594434e-35 + art_sys_132: -3.11037832e-36 + art_sys_133: 4.18691824e-37 + art_sys_134: 7.22881041e-34 + art_sys_135: -1.24663393e-36 + art_sys_136: -2.09490858e-32 + art_sys_137: 7.28652711e-33 + art_sys_138: -2.58575422e-29 + art_sys_139: 8.00285575e-27 + art_sys_140: -6.15264993e-36 + art_sys_141: -2.94181768e-26 + art_sys_142: 0.0 + art_sys_143: 1.06098174e-26 + art_sys_144: 5.37797189e-26 + art_sys_145: 2.01683230e-26 + art_sys_146: 1.11965610e-34 + art_sys_147: 1.10188215e-35 + art_sys_148: -8.16324699e-36 + art_sys_149: -5.24229892e-31 + art_sys_150: -6.24770290e-30 + art_sys_151: -7.06873390e-27 + art_sys_152: 5.87610172e-24 + art_sys_153: 1.51508802e-22 + art_sys_154: 7.25472448e-21 + art_sys_155: 2.41471700e-20 + art_sys_156: -1.71494873e-20 + art_sys_157: 2.28381082e-21 art_sys_158: 0.0 - art_sys_159: -7.94410163e-25 - art_sys_160: -2.00661284e-21 - art_sys_161: 1.79888455e-24 - art_sys_162: 1.79888455e-24 - art_sys_163: 2.82876966e-22 - art_sys_164: 2.82876966e-22 - art_sys_165: 7.40067797e-13 - art_sys_166: 5.17306702e-14 - art_sys_167: 0.0 - art_sys_168: -5.40817654e-11 - art_sys_169: 1.71803021e-11 - art_sys_170: 3.41049313e-10 + art_sys_159: 1.44845346e-24 + art_sys_160: 1.44845346e-24 + art_sys_161: 7.07002994e-23 + art_sys_162: 7.40067797e-13 + art_sys_163: -0.0 + art_sys_164: -5.17306702e-14 + art_sys_165: -2.37541087e-13 + art_sys_166: -1.37609316e-12 + art_sys_167: 1.00532884e-13 + art_sys_168: 5.40817654e-11 + art_sys_169: -1.71803021e-11 + art_sys_170: -3.41049313e-10 art_sys_171: 1.82750865e-09 art_sys_172: 7.82362843e-09 - art_sys_173: -1.19128919e-08 - art_sys_174: -2.38318048e-07 - art_sys_175: -3.86162265e-07 - art_sys_176: -1.85374723e-06 - art_sys_177: -1.11809832e-05 - art_sys_178: 1.31646391e-05 - art_sys_179: -5.46893852e-09 - art_sys_180: -2.70906361e-11 - art_sys_181: 2.15308341e-06 - art_sys_182: -4.32352603e-05 - art_sys_183: 3.53972035e-06 - art_sys_184: -1.92044125e-06 - art_sys_185: -8.08989780e-08 + art_sys_173: 1.19128919e-08 + art_sys_174: 5.46893852e-09 + art_sys_175: 2.38318048e-07 + art_sys_176: 3.86162265e-07 + art_sys_177: 1.85374723e-06 + art_sys_178: 2.15308341e-06 + art_sys_179: -1.11809832e-05 + art_sys_180: 1.31646391e-05 + art_sys_181: -4.32352603e-05 + art_sys_182: -3.53972035e-06 + art_sys_183: -1.92044125e-06 + art_sys_184: 8.08989780e-08 + art_sys_185: -2.70906361e-11 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -50937,127 +50937,127 @@ bins: art_sys_62: 0.0 art_sys_63: 0.0 art_sys_64: 0.0 - art_sys_65: 0.0 - art_sys_66: 0.0 - art_sys_67: 0.0 - art_sys_68: 0.0 - art_sys_69: 0.0 - art_sys_70: 0.0 - art_sys_71: 0.0 - art_sys_72: -4.24260496e-213 - art_sys_73: 2.62972062e-204 - art_sys_74: 8.19753966e-206 - art_sys_75: 4.02635303e-90 - art_sys_76: 4.89017701e-23 + art_sys_65: 2.14784895e-274 + art_sys_66: 6.61295204e-199 + art_sys_67: 1.77988140e-156 + art_sys_68: 4.97513284e-146 + art_sys_69: -9.41228146e-154 + art_sys_70: 4.69198572e-152 + art_sys_71: 4.80596513e-146 + art_sys_72: -1.82067749e-133 + art_sys_73: 1.18562152e-121 + art_sys_74: 7.01114099e-124 + art_sys_75: 3.30043023e-52 + art_sys_76: -4.89017701e-23 art_sys_77: -3.02785462e-21 art_sys_78: 1.60304190e-20 - art_sys_79: -1.15661600e-39 - art_sys_80: 2.48508140e-20 - art_sys_81: 6.06255217e-39 - art_sys_82: -6.42740825e-41 - art_sys_83: 3.43402357e-18 - art_sys_84: -1.47218484e-17 + art_sys_79: 3.73941284e-40 + art_sys_80: -5.39748284e-41 + art_sys_81: 2.48508140e-20 + art_sys_82: -3.43402357e-18 + art_sys_83: 1.47218484e-17 + art_sys_84: -6.96406973e-36 art_sys_85: -6.30703000e-17 art_sys_86: -7.99229009e-17 - art_sys_87: 9.97070509e-35 - art_sys_88: 7.39017280e-34 - art_sys_89: 9.64950578e-15 - art_sys_90: 1.83337371e-32 - art_sys_91: -4.86193952e-33 - art_sys_92: -1.00314439e-13 - art_sys_93: 4.64327510e-14 - art_sys_94: 3.87423953e-32 - art_sys_95: -7.55088403e-32 - art_sys_96: -1.43302182e-32 - art_sys_97: -1.45180981e-32 - art_sys_98: 1.39979427e-32 - art_sys_99: 4.12564759e-32 - art_sys_100: -3.18813550e-32 - art_sys_101: 3.25060289e-33 - art_sys_102: 7.84691244e-33 - art_sys_103: -1.47645484e-32 - art_sys_104: -4.13958409e-33 - art_sys_105: 3.09180646e-33 - art_sys_106: 6.73764243e-33 - art_sys_107: 4.64415697e-32 - art_sys_108: -1.30271149e-32 - art_sys_109: -2.51861611e-32 - art_sys_110: 2.00416570e-32 - art_sys_111: 5.87077753e-33 - art_sys_112: 1.28114549e-32 - art_sys_113: 4.85749838e-33 - art_sys_114: 4.06093872e-32 - art_sys_115: 1.15218782e-32 - art_sys_116: 4.25417685e-33 - art_sys_117: -8.45014842e-33 - art_sys_118: 1.85560468e-33 - art_sys_119: 7.97495969e-34 - art_sys_120: -6.95694381e-33 - art_sys_121: -1.01236335e-32 - art_sys_122: -1.34144899e-32 - art_sys_123: -4.12442510e-33 - art_sys_124: -9.02778186e-33 - art_sys_125: -2.50107650e-33 - art_sys_126: 5.66204806e-33 - art_sys_127: 5.19358956e-33 - art_sys_128: 1.78622812e-33 - art_sys_129: -3.16472946e-32 - art_sys_130: 1.34839771e-33 - art_sys_131: -1.11908838e-31 - art_sys_132: -7.73484682e-34 - art_sys_133: -2.24364443e-33 - art_sys_134: 1.34654506e-33 - art_sys_135: -1.70244149e-33 - art_sys_136: 4.34402355e-28 - art_sys_137: -3.84887136e-33 - art_sys_138: 1.13161805e-33 - art_sys_139: 2.34665760e-31 - art_sys_140: 1.37491171e-23 - art_sys_141: 3.52810167e-33 - art_sys_142: -2.85859558e-34 - art_sys_143: 2.38754373e-31 - art_sys_144: 2.67672252e-22 - art_sys_145: -1.11620320e-32 - art_sys_146: -4.75816258e-29 - art_sys_147: 1.68348365e-22 - art_sys_148: 1.39027017e-21 - art_sys_149: 1.28523247e-28 - art_sys_150: -2.39159833e-26 - art_sys_151: -2.28059721e-25 - art_sys_152: -1.03204164e-20 - art_sys_153: 2.84367719e-25 - art_sys_154: 5.99119316e-35 - art_sys_155: 6.05637211e-21 - art_sys_156: -0.0 - art_sys_157: -4.48474262e-26 + art_sys_87: 1.42328844e-34 + art_sys_88: 3.77756264e-35 + art_sys_89: 3.26297989e-36 + art_sys_90: -1.15150761e-35 + art_sys_91: 1.83551780e-36 + art_sys_92: -8.89547200e-36 + art_sys_93: -9.55129126e-36 + art_sys_94: 3.08437471e-36 + art_sys_95: -5.78238612e-36 + art_sys_96: 2.21897746e-35 + art_sys_97: 3.03579692e-37 + art_sys_98: -5.50776187e-36 + art_sys_99: -5.11515251e-37 + art_sys_100: -4.26051996e-37 + art_sys_101: -4.71348065e-36 + art_sys_102: 8.94025819e-36 + art_sys_103: -2.03143973e-36 + art_sys_104: 5.42508169e-37 + art_sys_105: -4.72830157e-36 + art_sys_106: 1.71512896e-36 + art_sys_107: -1.40399914e-36 + art_sys_108: 2.57089432e-36 + art_sys_109: 9.56490134e-37 + art_sys_110: -3.38640912e-36 + art_sys_111: 6.42350192e-38 + art_sys_112: 3.29154609e-37 + art_sys_113: -1.32865957e-36 + art_sys_114: 9.83540540e-37 + art_sys_115: 4.42901009e-37 + art_sys_116: 9.98230194e-37 + art_sys_117: 1.03532174e-36 + art_sys_118: 1.02382472e-37 + art_sys_119: -1.66828397e-36 + art_sys_120: -8.51808759e-38 + art_sys_121: -2.27060635e-37 + art_sys_122: 7.45331776e-40 + art_sys_123: 4.55241874e-37 + art_sys_124: 3.82157980e-38 + art_sys_125: -4.48285719e-38 + art_sys_126: -3.48816709e-38 + art_sys_127: -2.70670640e-37 + art_sys_128: 8.02226213e-37 + art_sys_129: -1.69777149e-37 + art_sys_130: -4.18797668e-36 + art_sys_131: -1.59802870e-34 + art_sys_132: -7.49631156e-38 + art_sys_133: -1.01526716e-36 + art_sys_134: -5.56563514e-33 + art_sys_135: -1.44381803e-35 + art_sys_136: 2.28719598e-31 + art_sys_137: -1.12765400e-34 + art_sys_138: 8.82871148e-30 + art_sys_139: -4.87721315e-27 + art_sys_140: 3.06242442e-36 + art_sys_141: 2.20858279e-26 + art_sys_142: -0.0 + art_sys_143: -7.91109121e-27 + art_sys_144: -4.01304381e-26 + art_sys_145: -1.44696371e-26 + art_sys_146: 1.84816243e-36 + art_sys_147: 2.83573377e-37 + art_sys_148: -6.94149627e-36 + art_sys_149: 2.71356776e-30 + art_sys_150: -1.72479761e-29 + art_sys_151: 1.91895251e-27 + art_sys_152: -5.18811522e-24 + art_sys_153: 1.89413345e-22 + art_sys_154: -6.39996245e-21 + art_sys_155: -2.06421929e-20 + art_sys_156: 5.05101055e-21 + art_sys_157: 8.59451913e-22 art_sys_158: -0.0 - art_sys_159: 4.52893922e-25 - art_sys_160: 3.25952535e-21 - art_sys_161: -5.84784675e-25 - art_sys_162: -5.84784675e-25 - art_sys_163: -1.40711044e-22 - art_sys_164: -1.40711044e-22 - art_sys_165: -6.73456121e-13 - art_sys_166: -1.55456698e-13 - art_sys_167: -0.0 - art_sys_168: -2.57706171e-12 - art_sys_169: 2.08729600e-12 - art_sys_170: 1.37012707e-11 + art_sys_159: -1.09484507e-24 + art_sys_160: -1.09484507e-24 + art_sys_161: -1.62709827e-22 + art_sys_162: -6.73456121e-13 + art_sys_163: 0.0 + art_sys_164: 1.55456698e-13 + art_sys_165: -9.64950578e-15 + art_sys_166: -1.00314439e-13 + art_sys_167: -4.64327510e-14 + art_sys_168: 2.57706171e-12 + art_sys_169: -2.08729600e-12 + art_sys_170: -1.37012707e-11 art_sys_171: 2.29484171e-11 art_sys_172: 1.80653894e-10 - art_sys_173: 3.26091276e-10 - art_sys_174: -8.68384866e-09 - art_sys_175: 1.32393082e-07 - art_sys_176: -1.57306862e-07 - art_sys_177: -1.04739491e-06 - art_sys_178: -6.64654779e-06 - art_sys_179: 2.35600052e-08 - art_sys_180: 5.79181783e-10 - art_sys_181: -1.07286325e-06 - art_sys_182: -7.23908953e-06 - art_sys_183: -2.69989030e-05 - art_sys_184: 2.13951448e-06 - art_sys_185: 7.13668928e-07 + art_sys_173: -3.26091276e-10 + art_sys_174: -2.35600052e-08 + art_sys_175: 8.68384866e-09 + art_sys_176: -1.32393082e-07 + art_sys_177: 1.57306862e-07 + art_sys_178: -1.07286325e-06 + art_sys_179: -1.04739491e-06 + art_sys_180: -6.64654779e-06 + art_sys_181: -7.23908953e-06 + art_sys_182: 2.69989030e-05 + art_sys_183: 2.13951448e-06 + art_sys_184: -7.13668928e-07 + art_sys_185: 5.79181783e-10 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -51228,127 +51228,127 @@ bins: art_sys_62: 0.0 art_sys_63: 0.0 art_sys_64: 0.0 - art_sys_65: 0.0 - art_sys_66: 0.0 - art_sys_67: 0.0 - art_sys_68: 0.0 - art_sys_69: 0.0 - art_sys_70: 0.0 - art_sys_71: 0.0 - art_sys_72: -2.53650660e-214 - art_sys_73: 1.57221890e-205 - art_sys_74: 4.90102511e-207 - art_sys_75: 2.40727795e-91 - art_sys_76: 2.92374146e-24 + art_sys_65: 1.28402125e-275 + art_sys_66: 3.95375502e-200 + art_sys_67: 1.06415638e-157 + art_sys_68: 2.97453489e-147 + art_sys_69: -5.62741951e-155 + art_sys_70: 2.80524675e-153 + art_sys_71: 2.87339282e-147 + art_sys_72: -1.08854756e-134 + art_sys_73: 7.08859983e-123 + art_sys_74: 4.19182445e-125 + art_sys_75: 1.97326286e-53 + art_sys_76: -2.92374146e-24 art_sys_77: -7.54411463e-23 art_sys_78: 4.16499482e-22 - art_sys_79: -1.66898187e-41 - art_sys_80: 7.93468082e-22 - art_sys_81: 1.93279507e-40 - art_sys_82: -1.66044240e-42 - art_sys_83: 9.89137205e-20 - art_sys_84: -4.58101166e-19 + art_sys_79: 9.76377097e-42 + art_sys_80: -1.54730260e-42 + art_sys_81: 7.93468082e-22 + art_sys_82: -9.89137205e-20 + art_sys_83: 4.58101166e-19 + art_sys_84: -2.14294248e-37 art_sys_85: -1.85322941e-18 art_sys_86: -2.02118847e-18 - art_sys_87: 2.41231407e-36 - art_sys_88: 2.03594186e-35 - art_sys_89: 2.64778072e-16 - art_sys_90: 5.01017569e-34 - art_sys_91: -3.61992638e-34 - art_sys_92: -3.63316941e-15 - art_sys_93: 1.57564314e-15 - art_sys_94: 1.47881795e-33 - art_sys_95: -2.70404079e-33 - art_sys_96: -4.98963619e-34 - art_sys_97: -4.19739075e-34 - art_sys_98: 4.05439824e-34 - art_sys_99: 1.45825054e-33 - art_sys_100: -1.18377373e-33 - art_sys_101: 1.06535023e-34 - art_sys_102: 3.30306215e-34 - art_sys_103: -5.33063348e-34 - art_sys_104: -1.35736485e-34 - art_sys_105: 7.00065660e-35 - art_sys_106: 2.60147777e-34 - art_sys_107: 1.60774507e-33 - art_sys_108: -4.56037077e-34 - art_sys_109: -8.61721929e-34 - art_sys_110: 7.31852608e-34 - art_sys_111: 2.89927782e-34 - art_sys_112: 4.32379870e-34 - art_sys_113: 1.86369202e-34 - art_sys_114: 1.43640626e-33 - art_sys_115: 4.17260350e-34 - art_sys_116: 1.74289663e-34 - art_sys_117: -3.26603674e-34 - art_sys_118: 7.69129139e-35 - art_sys_119: 3.23100480e-35 - art_sys_120: -2.57165181e-34 - art_sys_121: -3.44554123e-34 - art_sys_122: -4.75112768e-34 - art_sys_123: -1.59276245e-34 - art_sys_124: -3.12615059e-34 - art_sys_125: -8.04438388e-35 - art_sys_126: 2.02626910e-34 - art_sys_127: 1.89818177e-34 - art_sys_128: 6.38407980e-35 - art_sys_129: 8.22136680e-32 - art_sys_130: 1.33360577e-34 - art_sys_131: -6.04918841e-31 - art_sys_132: -3.15503648e-35 - art_sys_133: 5.53216486e-35 - art_sys_134: 4.61968747e-35 - art_sys_135: -5.94333382e-35 - art_sys_136: -7.56031941e-30 - art_sys_137: 9.73523877e-33 - art_sys_138: 3.92741021e-35 - art_sys_139: -6.16086803e-31 - art_sys_140: -5.58860746e-26 - art_sys_141: -5.72667804e-33 - art_sys_142: 1.61857832e-35 - art_sys_143: -1.19007093e-30 - art_sys_144: 4.28903206e-23 - art_sys_145: -9.37453302e-33 - art_sys_146: -7.65272066e-29 - art_sys_147: 2.79575964e-24 - art_sys_148: -1.07705503e-21 - art_sys_149: 3.65349770e-30 - art_sys_150: -6.52098548e-28 - art_sys_151: -5.31781477e-27 - art_sys_152: 7.89440342e-21 - art_sys_153: 6.53367522e-27 - art_sys_154: 2.59292849e-36 - art_sys_155: -7.90342014e-21 - art_sys_156: 0.0 - art_sys_157: 1.65062146e-27 + art_sys_87: 3.57965656e-36 + art_sys_88: 9.20217068e-37 + art_sys_89: 8.01993256e-38 + art_sys_90: -3.16376052e-37 + art_sys_91: 4.03167728e-38 + art_sys_92: -2.39136030e-37 + art_sys_93: -2.58378128e-37 + art_sys_94: 8.19124841e-38 + art_sys_95: -1.53387254e-37 + art_sys_96: 6.01515864e-37 + art_sys_97: 5.50580411e-39 + art_sys_98: -1.37687847e-37 + art_sys_99: -1.49436552e-38 + art_sys_100: -1.21651540e-38 + art_sys_101: -1.21671721e-37 + art_sys_102: 2.26781986e-37 + art_sys_103: -4.93350991e-38 + art_sys_104: 1.45240734e-38 + art_sys_105: -1.21376238e-37 + art_sys_106: 4.57234929e-38 + art_sys_107: -3.62556096e-38 + art_sys_108: 6.42742653e-38 + art_sys_109: 3.38083361e-38 + art_sys_110: -7.90276023e-38 + art_sys_111: -1.13858913e-38 + art_sys_112: 1.07185899e-38 + art_sys_113: -3.69259711e-38 + art_sys_114: 2.59866384e-38 + art_sys_115: 1.21004305e-38 + art_sys_116: 2.70996358e-38 + art_sys_117: 2.30500725e-38 + art_sys_118: 2.89231262e-39 + art_sys_119: -4.29804183e-38 + art_sys_120: -2.71554596e-39 + art_sys_121: -5.94278580e-39 + art_sys_122: 6.78834322e-40 + art_sys_123: 6.96655788e-39 + art_sys_124: 1.07995995e-39 + art_sys_125: -1.21223615e-39 + art_sys_126: -2.34836590e-39 + art_sys_127: -7.16322714e-39 + art_sys_128: 2.16156451e-38 + art_sys_129: -8.59895262e-39 + art_sys_130: 3.68314476e-37 + art_sys_131: 1.11875190e-35 + art_sys_132: -2.04494752e-39 + art_sys_133: 1.05916329e-37 + art_sys_134: 5.70557987e-34 + art_sys_135: 3.60823637e-36 + art_sys_136: -4.98073642e-32 + art_sys_137: -4.73782258e-33 + art_sys_138: 1.15413503e-29 + art_sys_139: -1.67324583e-27 + art_sys_140: -1.20699994e-36 + art_sys_141: 3.59965528e-27 + art_sys_142: -0.0 + art_sys_143: -5.22092385e-28 + art_sys_144: -2.68975779e-27 + art_sys_145: -1.39016351e-27 + art_sys_146: 5.25928654e-38 + art_sys_147: 7.25348808e-39 + art_sys_148: -4.51699843e-36 + art_sys_149: -2.07351360e-30 + art_sys_150: 2.09234348e-29 + art_sys_151: 1.81718991e-28 + art_sys_152: -5.58997372e-26 + art_sys_153: -5.93333907e-23 + art_sys_154: 3.46842370e-21 + art_sys_155: 8.62541649e-21 + art_sys_156: -4.55565271e-21 + art_sys_157: 5.07022796e-22 art_sys_158: 0.0 - art_sys_159: 2.27015092e-26 - art_sys_160: -2.14422252e-21 - art_sys_161: -9.72340631e-26 - art_sys_162: -9.72340631e-26 - art_sys_163: 2.34790388e-22 - art_sys_164: 2.34790388e-22 - art_sys_165: 1.09961207e-11 - art_sys_166: 4.79627367e-13 - art_sys_167: 0.0 - art_sys_168: -7.30460612e-14 - art_sys_169: -1.79970662e-13 - art_sys_170: 9.23405513e-13 + art_sys_159: -7.24614004e-26 + art_sys_160: -7.24614004e-26 + art_sys_161: -2.53553703e-23 + art_sys_162: 1.09961207e-11 + art_sys_163: -0.0 + art_sys_164: -4.79627367e-13 + art_sys_165: -2.64778072e-16 + art_sys_166: -3.63316941e-15 + art_sys_167: -1.57564314e-15 + art_sys_168: 7.30460612e-14 + art_sys_169: 1.79970662e-13 + art_sys_170: -9.23405513e-13 art_sys_171: -5.70625184e-12 art_sys_172: 4.01215947e-11 - art_sys_173: 2.52354381e-12 - art_sys_174: 5.52382147e-09 - art_sys_175: 9.24961649e-09 - art_sys_176: 6.59557343e-08 - art_sys_177: 6.37622798e-07 - art_sys_178: -3.75827757e-07 - art_sys_179: -3.86288487e-08 - art_sys_180: 2.68038031e-09 - art_sys_181: -4.48322037e-08 - art_sys_182: 4.17407605e-06 - art_sys_183: -3.93774882e-06 - art_sys_184: -1.71243259e-05 - art_sys_185: -3.99126220e-07 + art_sys_173: -2.52354381e-12 + art_sys_174: 3.86288487e-08 + art_sys_175: -5.52382147e-09 + art_sys_176: -9.24961649e-09 + art_sys_177: -6.59557343e-08 + art_sys_178: -4.48322037e-08 + art_sys_179: 6.37622798e-07 + art_sys_180: -3.75827757e-07 + art_sys_181: 4.17407605e-06 + art_sys_182: 3.93774882e-06 + art_sys_183: -1.71243259e-05 + art_sys_184: 3.99126220e-07 + art_sys_185: 2.68038031e-09 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -51519,127 +51519,127 @@ bins: art_sys_62: 0.0 art_sys_63: 0.0 art_sys_64: 0.0 - art_sys_65: 0.0 - art_sys_66: 0.0 - art_sys_67: 0.0 - art_sys_68: 0.0 - art_sys_69: 0.0 - art_sys_70: 0.0 - art_sys_71: 0.0 - art_sys_72: -1.71707271e-216 - art_sys_73: 1.06430402e-207 - art_sys_74: 3.31771912e-209 - art_sys_75: 1.62961003e-93 - art_sys_76: 1.97923070e-26 + art_sys_65: 8.69180048e-278 + art_sys_66: 2.67649975e-202 + art_sys_67: 7.20382084e-160 + art_sys_68: 2.01361538e-149 + art_sys_69: -3.80948917e-157 + art_sys_70: 1.89901555e-155 + art_sys_71: 1.94514712e-149 + art_sys_72: -7.36893730e-137 + art_sys_73: 4.79863715e-125 + art_sys_74: 2.83766118e-127 + art_sys_75: 1.33580294e-55 + art_sys_76: -1.97923070e-26 art_sys_77: -2.00675446e-25 art_sys_78: 9.44407162e-25 - art_sys_79: -4.07137837e-44 - art_sys_80: 5.41726791e-27 - art_sys_81: 4.15117077e-45 - art_sys_82: -3.88028493e-45 - art_sys_83: 9.68698546e-22 - art_sys_84: -3.64914000e-21 + art_sys_79: 2.17009442e-44 + art_sys_80: -1.74199812e-45 + art_sys_81: 5.41726791e-27 + art_sys_82: -9.68698546e-22 + art_sys_83: 3.64914130e-21 + art_sys_84: -1.76000578e-39 art_sys_85: -1.78298191e-20 art_sys_86: -2.79539165e-20 - art_sys_87: 3.74010243e-38 - art_sys_88: 2.72949522e-37 - art_sys_89: 3.59894668e-18 - art_sys_90: 6.83104828e-36 - art_sys_91: -1.71870754e-36 - art_sys_92: -1.98110517e-17 - art_sys_93: -2.66556023e-17 - art_sys_94: -1.01515929e-35 - art_sys_95: 4.96442725e-36 - art_sys_96: 1.14035759e-35 - art_sys_97: 1.49438335e-35 - art_sys_98: -3.51805644e-35 - art_sys_99: -1.05235450e-35 - art_sys_100: -1.84175972e-35 - art_sys_101: -9.15124066e-36 - art_sys_102: 4.75992949e-36 - art_sys_103: 2.00432016e-36 - art_sys_104: 9.89177168e-36 - art_sys_105: -1.06187799e-35 - art_sys_106: -6.50213891e-36 - art_sys_107: 5.18291683e-36 - art_sys_108: -1.24829740e-36 - art_sys_109: 1.31774909e-35 - art_sys_110: 3.63052766e-37 - art_sys_111: -1.33163821e-37 - art_sys_112: -7.45088902e-36 - art_sys_113: 1.49658154e-36 - art_sys_114: -3.62537915e-36 - art_sys_115: 1.92834763e-36 - art_sys_116: 9.05017805e-36 - art_sys_117: -4.72351303e-36 - art_sys_118: 3.08652426e-36 - art_sys_119: -1.66897537e-37 - art_sys_120: -4.13943315e-36 - art_sys_121: -1.52940533e-36 - art_sys_122: -2.27924984e-37 - art_sys_123: -4.05374710e-36 - art_sys_124: 2.52599633e-36 - art_sys_125: -2.92018286e-34 - art_sys_126: 1.03645043e-36 - art_sys_127: 1.31731855e-36 - art_sys_128: -7.11723964e-37 - art_sys_129: -3.26722675e-30 - art_sys_130: 3.18943888e-36 - art_sys_131: 6.30941668e-30 - art_sys_132: -1.57390581e-36 - art_sys_133: -4.88575514e-33 - art_sys_134: -1.16779402e-36 - art_sys_135: 4.08697640e-37 - art_sys_136: -1.44194771e-29 - art_sys_137: -3.37421733e-31 - art_sys_138: 7.90221365e-36 - art_sys_139: 1.85760074e-29 - art_sys_140: -3.06984251e-25 - art_sys_141: 1.59993144e-31 - art_sys_142: -6.53916203e-34 - art_sys_143: 2.85263821e-29 - art_sys_144: -4.08326222e-24 - art_sys_145: 1.42660426e-31 - art_sys_146: 1.28506690e-27 - art_sys_147: -1.24366909e-24 - art_sys_148: -1.23269066e-23 - art_sys_149: -9.38189278e-30 - art_sys_150: 1.52604797e-27 - art_sys_151: 4.61776740e-27 - art_sys_152: 6.56700395e-21 - art_sys_153: 5.68932306e-27 - art_sys_154: -8.13161489e-36 - art_sys_155: 1.48477980e-19 - art_sys_156: -0.0 - art_sys_157: -1.19506306e-25 + art_sys_87: 4.94180491e-38 + art_sys_88: 1.37969962e-38 + art_sys_89: 1.26385887e-39 + art_sys_90: -3.61819984e-39 + art_sys_91: 7.45228075e-40 + art_sys_92: -2.87809307e-39 + art_sys_93: -3.06577632e-39 + art_sys_94: 1.01342114e-39 + art_sys_95: -1.91178785e-39 + art_sys_96: 6.94307932e-39 + art_sys_97: 1.40338007e-40 + art_sys_98: -1.95612820e-39 + art_sys_99: -1.87096402e-40 + art_sys_100: -1.26142391e-40 + art_sys_101: -1.60862409e-39 + art_sys_102: 3.13276919e-39 + art_sys_103: -7.28717825e-40 + art_sys_104: 1.77678414e-40 + art_sys_105: -1.62215445e-39 + art_sys_106: 5.61738592e-40 + art_sys_107: -4.78999365e-40 + art_sys_108: 9.11276816e-40 + art_sys_109: 4.24846139e-40 + art_sys_110: -1.29456876e-39 + art_sys_111: -9.13605205e-41 + art_sys_112: 7.58692603e-41 + art_sys_113: -4.18583573e-40 + art_sys_114: 3.21131781e-40 + art_sys_115: 1.50872511e-40 + art_sys_116: 3.18735512e-40 + art_sys_117: 4.17955185e-40 + art_sys_118: 3.10049124e-41 + art_sys_119: -5.53911314e-40 + art_sys_120: -2.09937509e-41 + art_sys_121: 5.08658669e-42 + art_sys_122: -6.81265428e-41 + art_sys_123: -2.03103438e-39 + art_sys_124: -9.82478675e-42 + art_sys_125: 1.45847929e-41 + art_sys_126: -2.67006035e-40 + art_sys_127: -1.45208295e-39 + art_sys_128: 6.48648989e-40 + art_sys_129: -7.29257860e-37 + art_sys_130: -3.44496075e-34 + art_sys_131: -1.38529684e-32 + art_sys_132: 5.70725557e-37 + art_sys_133: -7.98672744e-35 + art_sys_134: -4.98948366e-31 + art_sys_135: -1.27179419e-33 + art_sys_136: 1.98425096e-29 + art_sys_137: 4.53278316e-31 + art_sys_138: -8.25159087e-28 + art_sys_139: 6.04626596e-26 + art_sys_140: -2.15604062e-35 + art_sys_141: -2.86025518e-26 + art_sys_142: -0.0 + art_sys_143: 3.22188318e-27 + art_sys_144: 1.62528031e-26 + art_sys_145: 2.37820723e-26 + art_sys_146: 8.72442005e-40 + art_sys_147: 2.81725783e-38 + art_sys_148: -6.11989135e-34 + art_sys_149: 2.26260203e-28 + art_sys_150: -7.62411471e-28 + art_sys_151: -5.32033694e-27 + art_sys_152: 6.91922896e-26 + art_sys_153: 1.55128908e-24 + art_sys_154: 3.06959941e-22 + art_sys_155: 3.62090958e-21 + art_sys_156: -1.37338248e-19 + art_sys_157: 5.20473531e-20 art_sys_158: -0.0 - art_sys_159: -4.72515687e-25 - art_sys_160: 8.36181175e-20 - art_sys_161: -1.89562266e-24 - art_sys_162: -1.89562266e-24 - art_sys_163: 7.92707307e-22 - art_sys_164: 7.92707307e-22 - art_sys_165: -5.04784083e-14 - art_sys_166: -1.10931055e-11 - art_sys_167: -0.0 - art_sys_168: -1.08676209e-15 - art_sys_169: -7.27394197e-15 - art_sys_170: 2.86222451e-14 + art_sys_159: -3.45740532e-26 + art_sys_160: -3.45740532e-26 + art_sys_161: -3.03608807e-21 + art_sys_162: -5.04784076e-14 + art_sys_163: 0.0 + art_sys_164: 1.10931055e-11 + art_sys_165: -3.59894668e-18 + art_sys_166: -1.98110517e-17 + art_sys_167: 2.66556023e-17 + art_sys_168: 1.08676209e-15 + art_sys_169: 7.27394198e-15 + art_sys_170: -2.86222450e-14 art_sys_171: 1.47317004e-13 art_sys_172: 1.64744576e-12 - art_sys_173: -3.58264593e-12 - art_sys_174: 4.52216187e-11 - art_sys_175: -7.24569229e-10 - art_sys_176: 1.03191117e-09 - art_sys_177: 9.18635548e-09 - art_sys_178: 9.45891935e-08 - art_sys_179: 1.01850606e-06 - art_sys_180: 5.22228290e-08 - art_sys_181: 8.86499327e-09 - art_sys_182: 2.18032884e-07 - art_sys_183: 1.42432270e-06 - art_sys_184: -8.21763050e-07 - art_sys_185: 9.52758645e-06 + art_sys_173: 3.58264593e-12 + art_sys_174: -1.01850606e-06 + art_sys_175: -4.52216187e-11 + art_sys_176: 7.24569229e-10 + art_sys_177: -1.03191117e-09 + art_sys_178: 8.86499327e-09 + art_sys_179: 9.18635548e-09 + art_sys_180: 9.45891935e-08 + art_sys_181: 2.18032884e-07 + art_sys_182: -1.42432270e-06 + art_sys_183: -8.21763050e-07 + art_sys_184: -9.52758645e-06 + art_sys_185: 5.22228290e-08 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -51810,127 +51810,127 @@ bins: art_sys_62: 0.0 art_sys_63: 0.0 art_sys_64: 0.0 - art_sys_65: 0.0 - art_sys_66: 0.0 - art_sys_67: 0.0 - art_sys_68: 0.0 - art_sys_69: 0.0 - art_sys_70: 0.0 - art_sys_71: 0.0 - art_sys_72: -1.44307352e-218 - art_sys_73: 8.94469371e-210 - art_sys_74: 2.78829929e-211 - art_sys_75: 1.36960322e-95 - art_sys_76: 1.66344136e-28 + art_sys_65: 7.30421534e-280 + art_sys_66: 2.24946004e-204 + art_sys_67: 6.05444003e-162 + art_sys_68: 1.69233992e-151 + art_sys_69: -3.20167925e-159 + art_sys_70: 1.59602466e-157 + art_sys_71: 1.63479587e-151 + art_sys_72: -6.19321188e-139 + art_sys_73: 4.03300713e-127 + art_sys_74: 2.38490793e-129 + art_sys_75: 1.12267350e-57 + art_sys_76: -1.66344136e-28 art_sys_77: 4.49631437e-27 art_sys_78: -3.73005099e-26 - art_sys_79: 2.43543940e-45 - art_sys_80: -1.33083549e-25 - art_sys_81: -3.23746492e-44 - art_sys_82: 1.45796968e-46 - art_sys_83: 2.47820777e-23 - art_sys_84: 3.36093567e-25 - art_sys_85: -2.75708846e-22 + art_sys_79: -9.07921617e-46 + art_sys_80: 2.00221149e-46 + art_sys_81: -1.33083549e-25 + art_sys_82: -2.47820776e-23 + art_sys_83: -3.32878885e-25 + art_sys_84: -7.37883384e-42 + art_sys_85: -2.75708844e-22 art_sys_86: -5.62284973e-22 - art_sys_87: 8.24977226e-40 - art_sys_88: 1.03354295e-38 - art_sys_89: 1.38697727e-19 - art_sys_90: 2.63878651e-37 - art_sys_91: -9.60975918e-38 - art_sys_92: -8.39974492e-19 - art_sys_93: -5.51475169e-19 - art_sys_94: -1.63544961e-37 - art_sys_95: -1.07806740e-37 - art_sys_96: 2.56837685e-37 - art_sys_97: 3.38897758e-37 - art_sys_98: -8.79746782e-37 - art_sys_99: -1.47648584e-37 - art_sys_100: -5.86386871e-37 - art_sys_101: -2.27875415e-37 - art_sys_102: 1.46029132e-37 - art_sys_103: 7.43582569e-39 - art_sys_104: 2.49046847e-37 - art_sys_105: -2.67413927e-37 - art_sys_106: -9.46694822e-38 - art_sys_107: 2.68455563e-37 - art_sys_108: -7.17090324e-38 - art_sys_109: 2.65971067e-37 - art_sys_110: 7.03191537e-38 - art_sys_111: 5.40520658e-38 - art_sys_112: -1.54378622e-37 - art_sys_113: 5.91665819e-38 - art_sys_114: 3.25641007e-38 - art_sys_115: 8.72184853e-38 - art_sys_116: 2.52182327e-37 - art_sys_117: -1.48956818e-37 - art_sys_118: 8.66818143e-38 - art_sys_119: -2.49118423e-39 - art_sys_120: -1.30787752e-37 - art_sys_121: -5.25579707e-38 - art_sys_122: -4.93155811e-38 - art_sys_123: -1.19510945e-37 - art_sys_124: 3.72609423e-38 - art_sys_125: -2.60431465e-34 - art_sys_126: 4.56004317e-38 - art_sys_127: 5.00140154e-38 - art_sys_128: -1.33264201e-38 - art_sys_129: -2.85523205e-30 - art_sys_130: 5.69706647e-37 - art_sys_131: -1.69019937e-29 - art_sys_132: -4.38832871e-38 - art_sys_133: -3.84940567e-33 - art_sys_134: -1.33575460e-38 - art_sys_135: 2.89479130e-39 - art_sys_136: -5.21014151e-29 - art_sys_137: -2.29334793e-31 - art_sys_138: 3.96914788e-36 - art_sys_139: 8.41347168e-30 - art_sys_140: -3.44319473e-25 - art_sys_141: 4.71601539e-32 - art_sys_142: -1.12013580e-34 - art_sys_143: 8.26561715e-31 - art_sys_144: -4.58975571e-25 - art_sys_145: -1.58835753e-31 - art_sys_146: -1.08197560e-27 - art_sys_147: 1.60203683e-24 - art_sys_148: 4.95681861e-22 - art_sys_149: 2.60948286e-29 - art_sys_150: -3.99413512e-27 - art_sys_151: 3.31368044e-27 - art_sys_152: -8.98813757e-21 - art_sys_153: -4.61537229e-27 - art_sys_154: -7.04929020e-36 - art_sys_155: -2.05887943e-19 - art_sys_156: 0.0 - art_sys_157: 1.19962271e-26 + art_sys_87: 9.69423542e-40 + art_sys_88: 2.93358250e-40 + art_sys_89: 2.93710101e-41 + art_sys_90: -6.45426631e-41 + art_sys_91: 1.87452796e-41 + art_sys_92: -5.25984491e-41 + art_sys_93: -5.62749300e-41 + art_sys_94: 1.81919848e-41 + art_sys_95: -3.83565175e-41 + art_sys_96: 1.26166485e-40 + art_sys_97: 2.67854012e-42 + art_sys_98: -4.01242162e-41 + art_sys_99: -2.53404811e-42 + art_sys_100: -1.76315764e-42 + art_sys_101: -3.18453724e-41 + art_sys_102: 6.40589853e-41 + art_sys_103: -1.42588147e-41 + art_sys_104: 3.66899267e-42 + art_sys_105: -3.15877930e-41 + art_sys_106: 1.06842726e-41 + art_sys_107: -9.46971441e-42 + art_sys_108: 1.85286239e-41 + art_sys_109: 7.73109544e-42 + art_sys_110: -2.88766197e-41 + art_sys_111: -1.33433532e-42 + art_sys_112: 7.67475365e-43 + art_sys_113: 1.78994339e-41 + art_sys_114: 6.02155462e-42 + art_sys_115: 1.97563571e-42 + art_sys_116: 5.81090756e-42 + art_sys_117: 4.64815313e-42 + art_sys_118: 5.23684649e-43 + art_sys_119: 4.91916672e-41 + art_sys_120: -2.07177508e-43 + art_sys_121: -1.06381578e-40 + art_sys_122: 8.06787302e-41 + art_sys_123: 6.95930814e-39 + art_sys_124: 2.60181325e-41 + art_sys_125: -5.34199319e-41 + art_sys_126: 8.01992027e-40 + art_sys_127: -2.67212907e-39 + art_sys_128: -1.11715597e-39 + art_sys_129: -1.57673309e-36 + art_sys_130: -7.75521148e-34 + art_sys_131: -3.13752803e-32 + art_sys_132: 1.28396272e-36 + art_sys_133: -1.80543023e-34 + art_sys_134: -1.11922901e-30 + art_sys_135: -2.71782718e-33 + art_sys_136: 4.28926144e-29 + art_sys_137: 6.72172700e-31 + art_sys_138: -9.53096012e-28 + art_sys_139: -6.99833493e-27 + art_sys_140: 2.88950098e-35 + art_sys_141: 4.82359437e-26 + art_sys_142: 0.0 + art_sys_143: -3.70161280e-27 + art_sys_144: -1.93305737e-26 + art_sys_145: -3.53228400e-26 + art_sys_146: 3.31172710e-41 + art_sys_147: 7.09951169e-38 + art_sys_148: -1.65809610e-33 + art_sys_149: 4.10771041e-28 + art_sys_150: 5.64359441e-28 + art_sys_151: 5.42146255e-27 + art_sys_152: 1.49706201e-27 + art_sys_153: 1.34966330e-23 + art_sys_154: -1.63374748e-21 + art_sys_155: -1.28650512e-20 + art_sys_156: 1.77476016e-19 + art_sys_157: -5.97088312e-20 art_sys_158: 0.0 - art_sys_159: -2.53179827e-25 - art_sys_160: -1.39078685e-20 - art_sys_161: 5.31026088e-24 - art_sys_162: 5.31026088e-24 - art_sys_163: 6.71490157e-21 - art_sys_164: 6.71490157e-21 - art_sys_165: 5.81208819e-10 - art_sys_166: 2.21680934e-13 - art_sys_167: -0.0 - art_sys_168: -5.28782274e-17 - art_sys_169: -1.47385389e-16 - art_sys_170: 1.00315949e-15 + art_sys_159: 1.12485350e-25 + art_sys_160: 1.12485350e-25 + art_sys_161: 3.91409473e-21 + art_sys_162: 5.81208819e-10 + art_sys_163: 0.0 + art_sys_164: -2.21680934e-13 + art_sys_165: -1.38697727e-19 + art_sys_166: -8.39974491e-19 + art_sys_167: 5.51475169e-19 + art_sys_168: 5.28782274e-17 + art_sys_169: 1.47385390e-16 + art_sys_170: -1.00315949e-15 art_sys_171: 2.10502919e-14 - art_sys_172: 1.69054091e-14 - art_sys_173: -1.55574630e-13 - art_sys_174: -1.24646235e-11 - art_sys_175: -2.73659610e-11 - art_sys_176: -1.28921057e-10 - art_sys_177: -2.40009642e-10 - art_sys_178: 6.12852630e-09 - art_sys_179: -1.30228260e-06 - art_sys_180: 2.86763638e-07 - art_sys_181: 2.84172183e-10 - art_sys_182: 7.54328157e-08 - art_sys_183: 5.53727712e-07 - art_sys_184: -1.28011170e-08 - art_sys_185: 5.72936307e-06 + art_sys_172: 1.69054092e-14 + art_sys_173: 1.55574630e-13 + art_sys_174: 1.30228260e-06 + art_sys_175: 1.24646235e-11 + art_sys_176: 2.73659610e-11 + art_sys_177: 1.28921057e-10 + art_sys_178: 2.84172183e-10 + art_sys_179: -2.40009642e-10 + art_sys_180: 6.12852630e-09 + art_sys_181: 7.54328157e-08 + art_sys_182: -5.53727712e-07 + art_sys_183: -1.28011170e-08 + art_sys_184: -5.72936307e-06 + art_sys_185: 2.86763638e-07 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -52101,127 +52101,127 @@ bins: art_sys_62: 0.0 art_sys_63: 0.0 art_sys_64: 0.0 - art_sys_65: 0.0 - art_sys_66: 0.0 - art_sys_67: 0.0 - art_sys_68: 0.0 - art_sys_69: 0.0 - art_sys_70: 0.0 - art_sys_71: 0.0 - art_sys_72: 1.27454356e-221 - art_sys_73: -7.90008383e-213 - art_sys_74: -2.46266656e-214 - art_sys_75: -1.20952882e-98 - art_sys_76: -1.46902420e-31 + art_sys_65: -6.45330426e-283 + art_sys_66: -1.98655114e-207 + art_sys_67: -5.34681843e-165 + art_sys_68: -1.49454520e-154 + art_sys_69: 2.82747828e-162 + art_sys_70: -1.40948693e-160 + art_sys_71: -1.44372670e-154 + art_sys_72: 5.46937112e-142 + art_sys_73: -3.56164349e-130 + art_sys_74: -2.10616830e-132 + art_sys_75: -9.91459385e-61 + art_sys_76: 1.46902420e-31 art_sys_77: 1.76525214e-29 art_sys_78: -1.31452798e-28 - art_sys_79: 3.33211553e-48 - art_sys_80: -1.68449024e-28 - art_sys_81: -4.15185235e-47 - art_sys_82: 5.36273321e-49 - art_sys_83: 3.20898403e-28 - art_sys_84: 4.65376448e-25 - art_sys_85: 1.20999157e-24 - art_sys_86: 2.60379251e-24 - art_sys_87: -3.60692021e-42 - art_sys_88: -1.87573701e-42 - art_sys_89: -1.81681944e-23 - art_sys_90: -3.85660546e-41 - art_sys_91: -3.93496723e-41 - art_sys_92: -4.09421335e-21 - art_sys_93: 6.89356040e-21 - art_sys_94: 2.83468521e-39 - art_sys_95: -5.88718573e-39 - art_sys_96: -2.61427833e-39 - art_sys_97: -2.97541328e-39 - art_sys_98: 5.88318084e-39 - art_sys_99: 4.32718695e-39 - art_sys_100: 4.03102442e-40 - art_sys_101: 1.53971708e-39 - art_sys_102: -1.97798215e-40 - art_sys_103: -1.31432710e-39 - art_sys_104: -1.69702783e-39 - art_sys_105: 1.67577654e-39 - art_sys_106: 9.89427824e-40 - art_sys_107: 2.57228273e-39 - art_sys_108: -6.89509153e-40 - art_sys_109: -3.56699097e-39 - art_sys_110: 1.35919694e-39 - art_sys_111: 3.24538108e-40 - art_sys_112: 1.91136891e-39 - art_sys_113: 1.90972339e-40 - art_sys_114: 3.29955072e-39 - art_sys_115: 5.20619048e-40 - art_sys_116: -9.81873043e-40 - art_sys_117: 3.87945872e-40 - art_sys_118: -3.00525040e-40 - art_sys_119: 8.63989205e-41 - art_sys_120: 1.00814383e-40 - art_sys_121: 7.82527330e-36 - art_sys_122: -8.78379883e-40 - art_sys_123: 2.82982029e-40 - art_sys_124: -9.66596905e-40 - art_sys_125: -1.26724493e-31 - art_sys_126: 2.38208550e-40 - art_sys_127: 9.56006492e-39 - art_sys_128: 2.25923154e-40 - art_sys_129: -1.41854894e-27 - art_sys_130: 2.47949058e-34 - art_sys_131: 2.32465996e-27 - art_sys_132: 2.97468365e-40 - art_sys_133: -2.11487825e-30 - art_sys_134: 7.99140344e-36 - art_sys_135: -1.55912661e-36 - art_sys_136: 1.43219618e-27 - art_sys_137: -1.45449574e-28 - art_sys_138: 3.48323441e-33 - art_sys_139: 7.93975411e-27 - art_sys_140: -4.87281956e-25 - art_sys_141: 6.79782640e-29 - art_sys_142: -2.76815812e-31 - art_sys_143: 1.19978166e-26 - art_sys_144: -5.37498436e-25 - art_sys_145: 5.72654016e-29 - art_sys_146: 5.21974188e-25 - art_sys_147: -1.42321192e-23 - art_sys_148: -2.35881780e-22 - art_sys_149: -2.18083503e-27 - art_sys_150: 3.27019582e-25 - art_sys_151: 1.74977352e-25 - art_sys_152: 3.17112963e-21 - art_sys_153: -6.40625862e-25 - art_sys_154: 1.22760143e-34 - art_sys_155: 5.08623936e-20 - art_sys_156: 0.0 - art_sys_157: -5.62278813e-26 + art_sys_79: -3.17290509e-48 + art_sys_80: 4.11628033e-49 + art_sys_81: -1.68449024e-28 + art_sys_82: -2.95866511e-28 + art_sys_83: 1.16617913e-25 + art_sys_84: -4.68447329e-44 + art_sys_85: 1.21028714e-24 + art_sys_86: 2.60379257e-24 + art_sys_87: -4.46168375e-42 + art_sys_88: -1.37778360e-42 + art_sys_89: -1.47280256e-43 + art_sys_90: 3.00110446e-43 + art_sys_91: -9.10622510e-44 + art_sys_92: 2.39712220e-43 + art_sys_93: 2.58235549e-43 + art_sys_94: -8.08184625e-44 + art_sys_95: 1.82930245e-43 + art_sys_96: -5.66026298e-43 + art_sys_97: -1.20556285e-44 + art_sys_98: 1.84472887e-43 + art_sys_99: 9.81392002e-45 + art_sys_100: 8.46213980e-45 + art_sys_101: 1.47258608e-43 + art_sys_102: -3.05016498e-43 + art_sys_103: 7.57398064e-44 + art_sys_104: -1.84138688e-44 + art_sys_105: 1.45314857e-43 + art_sys_106: -4.91643817e-44 + art_sys_107: 4.39516588e-44 + art_sys_108: -8.59757476e-44 + art_sys_109: -3.55211942e-44 + art_sys_110: 1.47397534e-43 + art_sys_111: -4.98092597e-45 + art_sys_112: -2.80593375e-45 + art_sys_113: -1.03453695e-41 + art_sys_114: -2.68466267e-44 + art_sys_115: 1.48383128e-44 + art_sys_116: -2.66187104e-44 + art_sys_117: 1.39716422e-42 + art_sys_118: -2.25558665e-45 + art_sys_119: -3.71150431e-41 + art_sys_120: 5.71009064e-46 + art_sys_121: 2.42625588e-42 + art_sys_122: -8.73428327e-42 + art_sys_123: -4.68522219e-39 + art_sys_124: -1.11425614e-42 + art_sys_125: -1.12331649e-40 + art_sys_126: -1.49026611e-39 + art_sys_127: -5.68394875e-37 + art_sys_128: -6.09958176e-38 + art_sys_129: -3.22117391e-34 + art_sys_130: -1.52651872e-31 + art_sys_131: -6.13932845e-30 + art_sys_132: 2.52494531e-34 + art_sys_133: -3.53803078e-32 + art_sys_134: -2.20634764e-28 + art_sys_135: -5.55124669e-31 + art_sys_136: 8.69061606e-27 + art_sys_137: 1.72496490e-28 + art_sys_138: -2.85844227e-25 + art_sys_139: 1.16596253e-23 + art_sys_140: 4.65702720e-35 + art_sys_141: 1.83150991e-24 + art_sys_142: -0.0 + art_sys_143: -2.71441181e-25 + art_sys_144: -1.48315677e-24 + art_sys_145: -1.32661664e-24 + art_sys_146: -1.95384577e-40 + art_sys_147: 1.25401171e-35 + art_sys_148: -2.74753873e-31 + art_sys_149: 9.91153999e-26 + art_sys_150: -7.20406176e-27 + art_sys_151: -6.66607599e-27 + art_sys_152: -1.44438560e-25 + art_sys_153: -3.13040988e-24 + art_sys_154: 7.72504629e-22 + art_sys_155: 6.15158918e-21 + art_sys_156: -7.22085335e-20 + art_sys_157: 2.76611159e-20 art_sys_158: -0.0 - art_sys_159: -4.94400236e-24 - art_sys_160: 1.66585668e-19 - art_sys_161: 1.08792336e-23 - art_sys_162: 1.08792336e-23 - art_sys_163: -6.56858447e-21 - art_sys_164: -6.56858447e-21 - art_sys_165: 8.18908497e-09 - art_sys_166: -4.60719507e-09 - art_sys_167: -0.0 - art_sys_168: -1.11337770e-19 - art_sys_169: 4.65805930e-19 - art_sys_170: 3.43902673e-18 - art_sys_171: 8.37512960e-17 - art_sys_172: 1.37327822e-15 - art_sys_173: -4.04900181e-15 - art_sys_174: -1.52923756e-12 - art_sys_175: -9.70567108e-13 - art_sys_176: -5.67979320e-11 - art_sys_177: -1.85401883e-09 - art_sys_178: -3.62439598e-09 - art_sys_179: 5.23875188e-07 - art_sys_180: 4.92758034e-07 - art_sys_181: -7.94397922e-11 - art_sys_182: -6.76492695e-08 - art_sys_183: -3.39038038e-07 - art_sys_184: 1.49270221e-07 - art_sys_185: -3.50622813e-06 + art_sys_159: 1.61339883e-24 + art_sys_160: 1.61339883e-24 + art_sys_161: 3.88743564e-20 + art_sys_162: 8.18908497e-09 + art_sys_163: 0.0 + art_sys_164: 4.60719507e-09 + art_sys_165: 1.81681937e-23 + art_sys_166: -4.09423114e-21 + art_sys_167: -6.89356040e-21 + art_sys_168: 1.11337770e-19 + art_sys_169: -4.65806178e-19 + art_sys_170: -3.43902791e-18 + art_sys_171: 8.37513009e-17 + art_sys_172: 1.37327810e-15 + art_sys_173: 4.04900189e-15 + art_sys_174: -5.23875188e-07 + art_sys_175: 1.52923756e-12 + art_sys_176: 9.70567108e-13 + art_sys_177: 5.67979320e-11 + art_sys_178: -7.94397922e-11 + art_sys_179: -1.85401883e-09 + art_sys_180: -3.62439598e-09 + art_sys_181: -6.76492695e-08 + art_sys_182: 3.39038038e-07 + art_sys_183: 1.49270221e-07 + art_sys_184: 3.50622813e-06 + art_sys_185: 4.92758034e-07 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -52392,127 +52392,127 @@ bins: art_sys_62: 0.0 art_sys_63: 0.0 art_sys_64: 0.0 - art_sys_65: 0.0 - art_sys_66: 0.0 - art_sys_67: 0.0 - art_sys_68: 0.0 - art_sys_69: 0.0 - art_sys_70: 0.0 - art_sys_71: 0.0 - art_sys_72: 1.94154514e-223 - art_sys_73: -1.20344018e-214 - art_sys_74: -3.75144361e-216 - art_sys_75: -1.84258705e-100 - art_sys_76: -2.23790035e-33 + art_sys_65: -9.82911910e-285 + art_sys_66: -3.02629693e-209 + art_sys_67: -8.14530272e-167 + art_sys_68: -2.27677884e-156 + art_sys_69: 4.30735900e-164 + art_sys_70: -2.14720172e-162 + art_sys_71: -2.19936232e-156 + art_sys_72: 8.33199856e-144 + art_sys_73: -5.42578072e-132 + art_sys_74: -3.20852084e-134 + art_sys_75: -1.51038172e-62 + art_sys_76: 2.23790035e-33 art_sys_77: 1.29232269e-31 art_sys_78: -9.37243277e-31 - art_sys_79: 2.30374717e-50 - art_sys_80: 1.35291914e-30 - art_sys_81: 3.20058002e-49 - art_sys_82: 4.02625556e-51 - art_sys_83: -8.14019943e-28 - art_sys_84: 8.35278301e-27 - art_sys_85: 3.39301063e-26 - art_sys_86: 8.23679038e-26 - art_sys_87: -1.19098454e-43 - art_sys_88: -1.96083659e-43 - art_sys_89: -2.47398751e-24 - art_sys_90: -4.75498200e-42 - art_sys_91: 1.89413047e-42 - art_sys_92: 3.90935891e-23 - art_sys_93: -1.64158313e-22 - art_sys_94: -7.58229219e-41 - art_sys_95: 1.08924256e-40 - art_sys_96: 6.22277016e-41 - art_sys_97: 8.12586251e-41 - art_sys_98: -1.59596217e-40 - art_sys_99: -9.09779845e-41 - art_sys_100: -3.64021450e-41 - art_sys_101: -4.13200096e-41 - art_sys_102: 1.23984760e-41 - art_sys_103: 2.50072727e-41 - art_sys_104: 4.41715579e-41 - art_sys_105: -4.75468287e-41 - art_sys_106: -2.89171042e-41 - art_sys_107: -3.60434063e-41 - art_sys_108: 5.27013430e-42 - art_sys_109: 8.36131322e-41 - art_sys_110: -2.13990436e-41 - art_sys_111: -4.39647999e-42 - art_sys_112: -4.58165952e-41 - art_sys_113: 2.69157813e-42 - art_sys_114: -6.18196993e-41 - art_sys_115: -5.84326589e-42 - art_sys_116: 3.16204092e-41 - art_sys_117: 5.02640324e-40 - art_sys_118: 1.04705166e-41 - art_sys_119: -1.35669628e-42 - art_sys_120: -8.24615273e-42 - art_sys_121: 1.21191842e-35 - art_sys_122: 1.53555750e-41 - art_sys_123: -1.16244704e-41 - art_sys_124: 2.11819015e-41 - art_sys_125: -1.96360497e-31 - art_sys_126: -2.68437708e-42 - art_sys_127: 1.45483802e-38 - art_sys_128: -4.89249690e-42 - art_sys_129: -2.20051130e-27 - art_sys_130: 3.85329761e-34 - art_sys_131: 5.86002776e-27 - art_sys_132: 1.96539215e-40 - art_sys_133: -3.29711829e-30 - art_sys_134: 1.24911099e-35 - art_sys_135: -2.44440322e-36 - art_sys_136: 1.99742846e-27 - art_sys_137: -2.28201284e-28 - art_sys_138: 5.52667397e-33 - art_sys_139: 1.26235105e-26 - art_sys_140: 6.85198206e-25 - art_sys_141: 1.09084677e-28 - art_sys_142: -4.47431470e-31 - art_sys_143: 1.95547551e-26 - art_sys_144: -7.72334362e-25 - art_sys_145: 9.98305463e-29 - art_sys_146: 8.95403160e-25 - art_sys_147: -8.88262682e-24 - art_sys_148: 1.08394222e-22 - art_sys_149: -4.83973866e-27 - art_sys_150: 7.38066117e-25 - art_sys_151: 5.09382855e-25 - art_sys_152: -1.45635145e-21 - art_sys_153: -1.62104001e-24 - art_sys_154: 3.22085437e-34 - art_sys_155: -2.23032637e-20 - art_sys_156: 0.0 - art_sys_157: 4.98131172e-25 - art_sys_158: -0.0 - art_sys_159: -5.81863490e-24 - art_sys_160: -7.95344166e-20 - art_sys_161: 1.54675049e-23 - art_sys_162: 1.54675049e-23 - art_sys_163: -4.47720042e-20 - art_sys_164: -4.47720042e-20 - art_sys_165: 1.73774652e-08 - art_sys_166: -8.78394684e-09 - art_sys_167: -0.0 - art_sys_168: 6.49350057e-20 - art_sys_169: -6.74699869e-20 - art_sys_170: -2.26342617e-18 - art_sys_171: -2.47341694e-17 - art_sys_172: -8.76205203e-16 - art_sys_173: 2.30676870e-15 - art_sys_174: 7.12640292e-13 - art_sys_175: 6.52093865e-13 - art_sys_176: 2.67653511e-11 - art_sys_177: 8.79241103e-10 - art_sys_178: 1.68042578e-09 - art_sys_179: -2.50710231e-07 - art_sys_180: -2.35756144e-07 - art_sys_181: 3.49856372e-11 - art_sys_182: 3.20978225e-08 - art_sys_183: 1.60354345e-07 - art_sys_184: -7.10819078e-08 - art_sys_185: 1.66127103e-06 + art_sys_79: -2.25724638e-50 + art_sys_80: 4.44214887e-52 + art_sys_81: 1.35291914e-30 + art_sys_82: 8.68477356e-28 + art_sys_83: 1.25778828e-24 + art_sys_84: -5.04560430e-43 + art_sys_85: 3.45730689e-26 + art_sys_86: 8.23680470e-26 + art_sys_87: 2.57504051e-43 + art_sys_88: -1.63018111e-43 + art_sys_89: -7.05070881e-44 + art_sys_90: 2.02071013e-44 + art_sys_91: -4.98600715e-44 + art_sys_92: -1.02798650e-44 + art_sys_93: 1.20001166e-44 + art_sys_94: 2.36808681e-44 + art_sys_95: 7.02231488e-44 + art_sys_96: -7.66079970e-44 + art_sys_97: 2.09247971e-44 + art_sys_98: 5.74309355e-45 + art_sys_99: -9.24419949e-45 + art_sys_100: -6.16006359e-45 + art_sys_101: 1.20084100e-44 + art_sys_102: -4.46214732e-44 + art_sys_103: 1.48123450e-44 + art_sys_104: -1.19045542e-44 + art_sys_105: -6.53639828e-45 + art_sys_106: -5.32554488e-45 + art_sys_107: 3.69531693e-45 + art_sys_108: -1.93470854e-45 + art_sys_109: -1.57274458e-45 + art_sys_110: -2.65851928e-43 + art_sys_111: -5.90806627e-45 + art_sys_112: -4.64571515e-47 + art_sys_113: 8.58897181e-42 + art_sys_114: 3.42721647e-45 + art_sys_115: -5.73072829e-43 + art_sys_116: -1.09614137e-45 + art_sys_117: -3.88425415e-42 + art_sys_118: 4.21432155e-46 + art_sys_119: -4.45009243e-42 + art_sys_120: 5.25564695e-45 + art_sys_121: -1.27126890e-40 + art_sys_122: 8.28355242e-41 + art_sys_123: -1.79085562e-39 + art_sys_124: 3.01518413e-41 + art_sys_125: -3.10002517e-40 + art_sys_126: -2.19936379e-39 + art_sys_127: -1.22187215e-36 + art_sys_128: -1.23041601e-37 + art_sys_129: -6.90060240e-34 + art_sys_130: -3.28227091e-31 + art_sys_131: -1.31992174e-29 + art_sys_132: 5.41975830e-34 + art_sys_133: -7.60023800e-32 + art_sys_134: -4.73133931e-28 + art_sys_135: -1.17970388e-30 + art_sys_136: 1.85044448e-26 + art_sys_137: 3.50731935e-28 + art_sys_138: -5.68037389e-25 + art_sys_139: 1.98866101e-23 + art_sys_140: 1.70239469e-34 + art_sys_141: 8.17278040e-24 + art_sys_142: -0.0 + art_sys_143: -7.70503325e-25 + art_sys_144: -4.21615078e-24 + art_sys_145: -4.34850713e-24 + art_sys_146: -4.00478185e-40 + art_sys_147: 2.73714258e-35 + art_sys_148: -6.05107324e-31 + art_sys_149: 2.08311712e-25 + art_sys_150: 8.25912625e-27 + art_sys_151: 2.97521079e-25 + art_sys_152: -1.67734900e-25 + art_sys_153: 1.75625705e-24 + art_sys_154: -3.66601349e-22 + art_sys_155: -3.35540507e-21 + art_sys_156: 2.36948416e-20 + art_sys_157: -5.07849036e-20 + art_sys_158: 0.0 + art_sys_159: 2.84902351e-24 + art_sys_160: 2.84902351e-24 + art_sys_161: 8.07758130e-20 + art_sys_162: 1.73774652e-08 + art_sys_163: 0.0 + art_sys_164: 8.78394684e-09 + art_sys_165: 2.47398760e-24 + art_sys_166: 3.90986298e-23 + art_sys_167: 1.64158312e-22 + art_sys_168: -6.49350058e-20 + art_sys_169: 6.74702248e-20 + art_sys_170: 2.26342671e-18 + art_sys_171: -2.47341717e-17 + art_sys_172: -8.76205147e-16 + art_sys_173: -2.30676874e-15 + art_sys_174: 2.50710231e-07 + art_sys_175: -7.12640292e-13 + art_sys_176: -6.52093865e-13 + art_sys_177: -2.67653511e-11 + art_sys_178: 3.49856372e-11 + art_sys_179: 8.79241103e-10 + art_sys_180: 1.68042578e-09 + art_sys_181: 3.20978225e-08 + art_sys_182: -1.60354345e-07 + art_sys_183: -7.10819078e-08 + art_sys_184: -1.66127103e-06 + art_sys_185: -2.35756144e-07 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -52683,127 +52683,127 @@ bins: art_sys_62: 0.0 art_sys_63: 0.0 art_sys_64: 0.0 - art_sys_65: 0.0 - art_sys_66: 0.0 - art_sys_67: 0.0 - art_sys_68: 0.0 - art_sys_69: 0.0 - art_sys_70: 0.0 - art_sys_71: 0.0 - art_sys_72: 5.42910946e-226 - art_sys_73: -3.36515920e-217 - art_sys_74: -1.04900976e-218 - art_sys_75: -5.15237830e-103 - art_sys_76: -6.25778260e-36 + art_sys_65: -2.74852752e-287 + art_sys_66: -8.46235548e-212 + art_sys_67: -2.27764983e-169 + art_sys_68: -6.36649750e-159 + art_sys_69: 1.20445560e-166 + art_sys_70: -6.00416438e-165 + art_sys_71: -6.15001970e-159 + art_sys_72: 2.32985511e-146 + art_sys_73: -1.51719696e-134 + art_sys_74: -8.97190346e-137 + art_sys_75: -4.22344116e-65 + art_sys_76: 6.25778260e-36 art_sys_77: 3.89756025e-34 art_sys_78: -3.04139459e-33 - art_sys_79: 1.12473857e-52 - art_sys_80: 2.04105604e-33 - art_sys_81: 4.70718902e-52 - art_sys_82: 1.29021650e-53 - art_sys_83: -8.03534243e-30 - art_sys_84: 1.35609385e-28 - art_sys_85: 7.15854783e-28 - art_sys_86: 3.20875585e-27 - art_sys_87: -4.94100758e-45 - art_sys_88: 4.85079733e-44 - art_sys_89: 6.59802435e-25 - art_sys_90: 1.32714870e-42 - art_sys_91: 8.04319321e-43 - art_sys_92: 1.45596142e-23 - art_sys_93: -5.64166673e-23 - art_sys_94: -2.58695220e-41 - art_sys_95: 3.83758307e-41 - art_sys_96: 2.17454021e-41 - art_sys_97: 2.68369801e-41 - art_sys_98: -5.46252998e-41 - art_sys_99: -3.18154543e-41 - art_sys_100: -1.21302856e-41 - art_sys_101: -1.41683120e-41 - art_sys_102: 3.77491854e-42 - art_sys_103: 8.92424314e-42 - art_sys_104: 1.53923841e-41 - art_sys_105: -1.60489307e-41 - art_sys_106: -1.13960981e-41 - art_sys_107: -1.29736697e-41 - art_sys_108: 2.50320444e-42 - art_sys_109: 2.88144234e-41 - art_sys_110: -7.89297800e-42 - art_sys_111: -1.48496144e-42 - art_sys_112: -1.57063494e-41 - art_sys_113: 6.88192427e-43 - art_sys_114: -2.18359193e-41 - art_sys_115: -2.15040020e-42 - art_sys_116: 1.07667434e-41 - art_sys_117: 7.72164810e-40 - art_sys_118: 3.50777795e-42 - art_sys_119: -5.50959088e-43 - art_sys_120: -2.77578113e-42 - art_sys_121: 1.83104912e-35 - art_sys_122: 5.32163750e-42 - art_sys_123: -3.90274400e-42 - art_sys_124: 7.29015230e-42 - art_sys_125: -2.96086222e-31 - art_sys_126: -9.45565367e-43 - art_sys_127: 2.18563343e-38 - art_sys_128: -1.72823434e-42 - art_sys_129: -3.30495644e-27 - art_sys_130: 5.74979754e-34 - art_sys_131: -3.90240145e-27 - art_sys_132: 2.95830053e-40 - art_sys_133: -4.86449608e-30 - art_sys_134: 1.82549920e-35 - art_sys_135: -3.53229484e-36 - art_sys_136: 5.67323077e-27 - art_sys_137: -3.29029076e-28 - art_sys_138: 7.64370764e-33 - art_sys_139: 1.73242277e-26 - art_sys_140: 3.79443672e-25 - art_sys_141: 1.44484545e-28 - art_sys_142: -5.76037670e-31 - art_sys_143: 2.43477984e-26 - art_sys_144: 6.55308355e-25 - art_sys_145: 9.14284784e-29 - art_sys_146: 8.88870410e-25 - art_sys_147: 2.29853876e-23 - art_sys_148: 2.50046087e-23 - art_sys_149: 6.31573297e-28 - art_sys_150: -1.47729452e-25 - art_sys_151: -7.31560815e-25 - art_sys_152: -3.36917178e-22 - art_sys_153: 9.89436302e-25 - art_sys_154: 5.09598145e-35 - art_sys_155: -4.49743956e-21 - art_sys_156: 0.0 - art_sys_157: 1.67633785e-25 + art_sys_79: -7.36880893e-53 + art_sys_80: 3.74488140e-54 + art_sys_81: 2.04105604e-33 + art_sys_82: -3.15134173e-30 + art_sys_83: -2.60227294e-25 + art_sys_84: 1.04443606e-43 + art_sys_85: 5.84037665e-28 + art_sys_86: 3.20864881e-27 + art_sys_87: -8.80834487e-44 + art_sys_88: 2.29194561e-44 + art_sys_89: 1.35209764e-44 + art_sys_90: -2.03883046e-45 + art_sys_91: 9.62082865e-45 + art_sys_92: 3.91720524e-45 + art_sys_93: -5.92235534e-46 + art_sys_94: -5.53473671e-45 + art_sys_95: -1.32324656e-44 + art_sys_96: 1.95605833e-45 + art_sys_97: -4.46040513e-45 + art_sys_98: 2.56189708e-46 + art_sys_99: 2.02012885e-45 + art_sys_100: 1.33614586e-45 + art_sys_101: -1.36358981e-45 + art_sys_102: 6.90229794e-45 + art_sys_103: -2.44309245e-45 + art_sys_104: 2.34004150e-45 + art_sys_105: 2.48236941e-45 + art_sys_106: 7.39174007e-46 + art_sys_107: -4.30564512e-46 + art_sys_108: -2.65832189e-46 + art_sys_109: 6.18640740e-47 + art_sys_110: 3.27479914e-43 + art_sys_111: 1.18190067e-45 + art_sys_112: 2.98492329e-48 + art_sys_113: 4.29393851e-42 + art_sys_114: -9.13722059e-46 + art_sys_115: 6.80934169e-43 + art_sys_116: 2.16096204e-47 + art_sys_117: 2.81449675e-43 + art_sys_118: -1.20242075e-46 + art_sys_119: 1.77356032e-41 + art_sys_120: -6.92186353e-45 + art_sys_121: 1.46118684e-40 + art_sys_122: -1.02263216e-40 + art_sys_123: 3.50291543e-39 + art_sys_124: -3.54074894e-41 + art_sys_125: 8.24124234e-41 + art_sys_126: 5.81355381e-40 + art_sys_127: 1.86879329e-37 + art_sys_128: -2.34166903e-38 + art_sys_129: 9.35424442e-35 + art_sys_130: 5.00660352e-32 + art_sys_131: 2.01161001e-30 + art_sys_132: -7.88650395e-35 + art_sys_133: 1.13127858e-32 + art_sys_134: 6.68735395e-29 + art_sys_135: 1.20277781e-31 + art_sys_136: -2.04352423e-27 + art_sys_137: 3.29989288e-29 + art_sys_138: -1.12656842e-25 + art_sys_139: 1.89081647e-23 + art_sys_140: -2.02868982e-34 + art_sys_141: -1.86888556e-23 + art_sys_142: 0.0 + art_sys_143: 8.26656648e-25 + art_sys_144: 4.56675384e-24 + art_sys_145: 6.63799323e-24 + art_sys_146: 9.52328303e-41 + art_sys_147: -6.03038940e-36 + art_sys_148: 1.57628993e-31 + art_sys_149: -9.78307295e-27 + art_sys_150: -8.83913012e-26 + art_sys_151: -1.28897170e-24 + art_sys_152: -5.41608284e-25 + art_sys_153: 5.93285940e-25 + art_sys_154: -8.43939385e-23 + art_sys_155: -7.74263139e-22 + art_sys_156: 5.46141182e-21 + art_sys_157: -1.17466992e-20 art_sys_158: 0.0 - art_sys_159: -4.39368373e-24 - art_sys_160: -2.56004692e-20 - art_sys_161: 2.13510641e-24 - art_sys_162: 2.13510641e-24 - art_sys_163: 1.16807250e-20 - art_sys_164: 1.16807250e-20 - art_sys_165: -1.28189605e-08 - art_sys_166: -3.83822001e-09 - art_sys_167: 0.0 - art_sys_168: 1.42274661e-20 - art_sys_169: -1.50359014e-20 - art_sys_170: -5.10853255e-19 - art_sys_171: -5.51197639e-18 - art_sys_172: -1.99582166e-16 - art_sys_173: 5.24979385e-16 - art_sys_174: 1.63265041e-13 - art_sys_175: 1.48255681e-13 - art_sys_176: 6.13991396e-12 - art_sys_177: 2.01857017e-10 - art_sys_178: 3.86467183e-10 - art_sys_179: -5.79472438e-08 - art_sys_180: -5.35096112e-08 - art_sys_181: 8.05435237e-12 - art_sys_182: 7.37472745e-09 - art_sys_183: 3.68562564e-08 - art_sys_184: -1.63789208e-08 - art_sys_185: 3.82076920e-07 + art_sys_159: 2.54700891e-24 + art_sys_160: 2.54700891e-24 + art_sys_161: 1.53086496e-20 + art_sys_162: -1.28189605e-08 + art_sys_163: -0.0 + art_sys_164: 3.83822001e-09 + art_sys_165: -6.59808081e-25 + art_sys_166: 1.44021830e-23 + art_sys_167: 5.64166665e-23 + art_sys_168: -1.42274661e-20 + art_sys_169: 1.50359299e-20 + art_sys_170: 5.10853381e-19 + art_sys_171: -5.51197691e-18 + art_sys_172: -1.99582153e-16 + art_sys_173: -5.24979393e-16 + art_sys_174: 5.79472438e-08 + art_sys_175: -1.63265041e-13 + art_sys_176: -1.48255681e-13 + art_sys_177: -6.13991396e-12 + art_sys_178: 8.05435237e-12 + art_sys_179: 2.01857017e-10 + art_sys_180: 3.86467183e-10 + art_sys_181: 7.37472745e-09 + art_sys_182: -3.68562564e-08 + art_sys_183: -1.63789208e-08 + art_sys_184: -3.82076920e-07 + art_sys_185: -5.35096112e-08 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -52974,127 +52974,127 @@ bins: art_sys_62: 0.0 art_sys_63: 0.0 art_sys_64: 0.0 - art_sys_65: 0.0 - art_sys_66: 0.0 - art_sys_67: 0.0 - art_sys_68: 0.0 - art_sys_69: 0.0 - art_sys_70: 0.0 - art_sys_71: 0.0 - art_sys_72: 1.41128849e-226 - art_sys_73: -8.74767854e-218 - art_sys_74: -2.72688441e-219 - art_sys_75: -1.33935641e-103 - art_sys_76: -1.62670533e-36 + art_sys_65: -7.14469040e-288 + art_sys_66: -2.19978220e-212 + art_sys_67: -5.92073163e-170 + art_sys_68: -1.65496568e-159 + art_sys_69: 3.13097224e-167 + art_sys_70: -1.56077749e-165 + art_sys_71: -1.59869246e-159 + art_sys_72: 6.05643879e-147 + art_sys_73: -3.94394078e-135 + art_sys_74: -2.33223878e-137 + art_sys_75: -1.09787999e-65 + art_sys_76: 1.62670533e-36 art_sys_77: 9.47948125e-35 art_sys_78: -6.58560642e-34 - art_sys_79: 3.88403736e-53 - art_sys_80: 4.76422594e-33 - art_sys_81: 1.14475995e-51 - art_sys_82: 3.13310017e-54 - art_sys_83: -2.43334102e-30 - art_sys_84: 1.73115754e-29 - art_sys_85: 8.65137561e-29 - art_sys_86: 2.25493709e-28 - art_sys_87: -3.31776083e-46 - art_sys_88: 9.80900789e-46 - art_sys_89: 1.37196393e-26 - art_sys_90: 3.09505130e-44 - art_sys_91: 7.14783467e-44 - art_sys_92: 5.91862959e-25 - art_sys_93: -2.04009508e-24 - art_sys_94: -9.53463333e-43 - art_sys_95: 1.41805764e-42 - art_sys_96: 7.83053283e-43 - art_sys_97: 9.70219142e-43 - art_sys_98: -1.95224146e-42 - art_sys_99: -1.16113278e-42 - art_sys_100: -4.07450780e-43 - art_sys_101: -5.06767545e-43 - art_sys_102: 1.27154240e-43 - art_sys_103: 3.27829577e-43 - art_sys_104: 5.49794080e-43 - art_sys_105: -5.73061079e-43 - art_sys_106: -4.17628274e-43 - art_sys_107: -5.09584809e-43 - art_sys_108: 5.07227654e-44 - art_sys_109: 1.04295710e-42 - art_sys_110: -2.93790497e-43 - art_sys_111: -8.36173227e-44 - art_sys_112: -5.67935686e-43 - art_sys_113: -5.66048441e-45 - art_sys_114: -8.03934487e-43 - art_sys_115: -8.49493400e-44 - art_sys_116: 3.79836200e-43 - art_sys_117: 1.89956237e-40 - art_sys_118: 1.23383729e-43 - art_sys_119: -2.00447691e-44 - art_sys_120: -9.33831824e-44 - art_sys_121: 4.46925807e-36 - art_sys_122: 1.99221739e-43 - art_sys_123: -1.37499437e-43 - art_sys_124: 2.65877508e-43 - art_sys_125: -7.16210806e-32 - art_sys_126: -3.82258103e-44 - art_sys_127: 5.19753606e-39 - art_sys_128: -6.27662177e-44 - art_sys_129: -7.85010487e-28 - art_sys_130: 1.32591061e-34 - art_sys_131: -5.71583941e-27 - art_sys_132: 6.43504263e-41 - art_sys_133: -1.05676661e-30 - art_sys_134: 3.76868614e-36 - art_sys_135: -6.83287690e-37 - art_sys_136: -9.79213230e-27 - art_sys_137: -6.27952567e-29 - art_sys_138: 1.07959694e-33 - art_sys_139: 2.28241160e-27 - art_sys_140: -3.74435175e-25 - art_sys_141: 1.26043068e-29 - art_sys_142: -2.90170651e-32 - art_sys_143: 1.34284694e-28 - art_sys_144: -9.53788522e-25 - art_sys_145: -4.47435392e-29 - art_sys_146: -3.05791145e-25 - art_sys_147: 1.20241261e-23 - art_sys_148: 4.69385762e-24 - art_sys_149: 7.47326040e-27 - art_sys_150: -1.14640423e-24 - art_sys_151: 1.60714362e-24 - art_sys_152: -1.79846206e-23 - art_sys_153: 2.49655786e-25 - art_sys_154: -5.02621602e-35 - art_sys_155: 6.62071875e-23 - art_sys_156: 0.0 - art_sys_157: 1.00934300e-26 + art_sys_79: -1.58014148e-53 + art_sys_80: -3.40583425e-54 + art_sys_81: 4.76422594e-33 + art_sys_82: 2.71334412e-29 + art_sys_83: 5.74262838e-25 + art_sys_84: -2.30477273e-43 + art_sys_85: 3.77767374e-28 + art_sys_86: 2.25752726e-28 + art_sys_87: 1.81745557e-43 + art_sys_88: -5.45976987e-44 + art_sys_89: -3.01769776e-44 + art_sys_90: 5.15853408e-45 + art_sys_91: -2.14943838e-44 + art_sys_92: -8.05497555e-45 + art_sys_93: 1.91437310e-45 + art_sys_94: 1.19939283e-44 + art_sys_95: 2.96182837e-44 + art_sys_96: -2.35301674e-44 + art_sys_97: 9.77999079e-45 + art_sys_98: -3.40414377e-47 + art_sys_99: -4.42908825e-45 + art_sys_100: -2.93055599e-45 + art_sys_101: 3.40059993e-45 + art_sys_102: -1.60704193e-44 + art_sys_103: 6.04751214e-45 + art_sys_104: -5.20134342e-45 + art_sys_105: -5.07511676e-45 + art_sys_106: -1.75067768e-45 + art_sys_107: 1.06669358e-45 + art_sys_108: 3.44652352e-46 + art_sys_109: -2.31980749e-46 + art_sys_110: 6.20294244e-43 + art_sys_111: -2.61127195e-45 + art_sys_112: 1.41937208e-48 + art_sys_113: 7.37883542e-43 + art_sys_114: 1.94779981e-45 + art_sys_115: 1.27725188e-42 + art_sys_116: -1.42677150e-46 + art_sys_117: -1.89460430e-43 + art_sys_118: 2.42718506e-46 + art_sys_119: -4.71865577e-42 + art_sys_120: -1.31267080e-44 + art_sys_121: 2.63341051e-40 + art_sys_122: -2.08900730e-40 + art_sys_123: -3.24641962e-40 + art_sys_124: -6.71807355e-41 + art_sys_125: -3.74411726e-41 + art_sys_126: -1.06665824e-39 + art_sys_127: -5.12797003e-37 + art_sys_128: -1.85106927e-38 + art_sys_129: -2.76473496e-34 + art_sys_130: -1.36539258e-31 + art_sys_131: -5.54023646e-30 + art_sys_132: 2.27346785e-34 + art_sys_133: -3.19059725e-32 + art_sys_134: -1.98198923e-28 + art_sys_135: -4.86445336e-31 + art_sys_136: 7.65611079e-27 + art_sys_137: 1.37290194e-28 + art_sys_138: -2.19998143e-25 + art_sys_139: 8.33954873e-24 + art_sys_140: -7.75296643e-35 + art_sys_141: -1.91577406e-24 + art_sys_142: -0.0 + art_sys_143: 5.70891940e-25 + art_sys_144: 2.96052330e-24 + art_sys_145: 1.15192039e-24 + art_sys_146: -1.83089997e-40 + art_sys_147: 1.27431488e-35 + art_sys_148: -3.00985132e-31 + art_sys_149: 6.88267966e-26 + art_sys_150: -1.16168109e-25 + art_sys_151: -5.71934050e-25 + art_sys_152: -7.18318755e-26 + art_sys_153: -4.12837473e-25 + art_sys_154: -2.55964054e-24 + art_sys_155: -1.42121367e-23 + art_sys_156: 1.88740504e-22 + art_sys_157: 2.17470846e-21 art_sys_158: 0.0 - art_sys_159: -3.00125716e-24 - art_sys_160: -4.56744226e-22 - art_sys_161: 2.61941482e-24 - art_sys_162: 2.61941482e-24 - art_sys_163: 2.18990543e-21 - art_sys_164: 2.18990543e-21 - art_sys_165: 1.42436114e-07 - art_sys_166: 9.91106211e-10 - art_sys_167: 0.0 - art_sys_168: 4.33122222e-22 - art_sys_169: -5.00713506e-22 - art_sys_170: -1.54457188e-20 - art_sys_171: -1.66510581e-19 - art_sys_172: -6.05964955e-18 - art_sys_173: 1.58555969e-17 - art_sys_174: 4.77329394e-15 - art_sys_175: 2.98728692e-15 - art_sys_176: 1.77844764e-13 - art_sys_177: 5.70029817e-12 - art_sys_178: 1.28564049e-11 - art_sys_179: 5.70227358e-10 - art_sys_180: -5.55355500e-09 - art_sys_181: 2.79539098e-13 - art_sys_182: 2.06268680e-10 - art_sys_183: 1.14130405e-09 - art_sys_184: 1.06113472e-11 - art_sys_185: 9.95122282e-09 + art_sys_159: 6.21208972e-25 + art_sys_160: 6.21208972e-25 + art_sys_161: 1.54856880e-19 + art_sys_162: 1.42436114e-07 + art_sys_163: -0.0 + art_sys_164: -9.91106212e-10 + art_sys_165: -1.37283990e-26 + art_sys_166: 3.54173714e-25 + art_sys_167: 2.04009526e-24 + art_sys_168: -4.33122166e-22 + art_sys_169: 5.00707891e-22 + art_sys_170: 1.54457227e-20 + art_sys_171: -1.66510597e-19 + art_sys_172: -6.05964915e-18 + art_sys_173: -1.58555972e-17 + art_sys_174: -5.70227358e-10 + art_sys_175: -4.77329394e-15 + art_sys_176: -2.98728692e-15 + art_sys_177: -1.77844764e-13 + art_sys_178: 2.79539098e-13 + art_sys_179: 5.70029817e-12 + art_sys_180: 1.28564049e-11 + art_sys_181: 2.06268680e-10 + art_sys_182: -1.14130405e-09 + art_sys_183: 1.06113472e-11 + art_sys_184: -9.95122282e-09 + art_sys_185: -5.55355500e-09 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -55821,190 +55821,190 @@ bins: luminosity_uncertainty: 4.83381600e+02 uncorrelated_uncertainty: 185.916 - art_sys_1: 5.66210590e-14 - art_sys_2: -3.22733560e-14 + art_sys_2: -3.77775940e-14 art_sys_3: -1.61153998e+02 - art_sys_4: 4.54515521e-15 + art_sys_4: -3.80686109e-14 art_sys_5: -3.30097149e+01 - art_sys_6: 1.79137873e-14 - art_sys_7: 1.27129730e-14 + art_sys_6: 2.77191027e-14 + art_sys_7: 1.73279604e-14 art_sys_8: 1.13391038e+01 - art_sys_9: -4.44289958e-15 - art_sys_10: -1.42177574e-15 + art_sys_9: -7.06154604e-15 + art_sys_10: -1.94090088e-15 art_sys_11: -1.78364090e+00 - art_sys_12: -2.01723758e-15 - art_sys_13: 4.84842050e-15 - art_sys_14: -1.07984120e-15 - art_sys_15: -2.92725113e-02 - art_sys_16: -6.66504064e-16 - art_sys_17: 1.43554668e-16 + art_sys_12: -1.99804023e-15 + art_sys_13: -5.23811573e-15 + art_sys_14: 1.09842491e-15 + art_sys_15: 2.92725113e-02 + art_sys_16: 6.64439190e-16 + art_sys_17: -6.89481947e-17 art_sys_18: -8.67938826e-03 - art_sys_19: 2.26281367e-16 - art_sys_20: 2.63973819e-16 + art_sys_19: -2.22575304e-16 + art_sys_20: -1.30912919e-15 art_sys_21: 4.32484912e-03 - art_sys_22: 3.29985512e-16 - art_sys_23: -8.20220586e-16 + art_sys_22: 1.03215121e-15 + art_sys_23: -8.19484456e-16 art_sys_24: 1.00707911e-03 - art_sys_25: 8.59317264e-18 - art_sys_26: 6.04246870e-17 - art_sys_27: 1.97892746e-06 - art_sys_28: -1.35936226e-16 - art_sys_29: 3.38370985e-07 - art_sys_30: 7.51813856e-17 - art_sys_31: 3.26312265e-17 - art_sys_32: -2.69849557e-07 - art_sys_33: -3.11281386e-17 - art_sys_34: 1.30107678e-17 - art_sys_35: -1.28460532e-17 - art_sys_36: 4.68573647e-17 - art_sys_37: 5.43606010e-19 - art_sys_38: 3.93365048e-20 - art_sys_39: -2.40583521e-20 - art_sys_40: 9.47650842e-20 - art_sys_41: 1.73757879e-19 - art_sys_42: -2.75385698e-19 - art_sys_43: -7.00545013e-19 - art_sys_44: -1.19801616e-19 - art_sys_45: 1.74150612e-19 - art_sys_46: 9.66233432e-20 - art_sys_47: 2.52284988e-09 - art_sys_48: 3.33555880e-17 + art_sys_25: -8.71717237e-18 + art_sys_26: 6.05298415e-17 + art_sys_27: -1.97892746e-06 + art_sys_28: 9.54330708e-17 + art_sys_29: 9.88769773e-17 + art_sys_30: 1.07310709e-17 + art_sys_31: -9.80612658e-19 + art_sys_32: 2.38820306e-20 + art_sys_33: -4.21308729e-20 + art_sys_34: -1.50590843e-19 + art_sys_35: -1.71640809e-19 + art_sys_36: 3.38370985e-07 + art_sys_37: 7.78589314e-17 + art_sys_38: -7.59162815e-19 + art_sys_39: -3.75690298e-17 + art_sys_40: -2.69849557e-07 + art_sys_41: 2.93268989e-17 + art_sys_42: -3.36831439e-18 + art_sys_43: -1.58041607e-17 + art_sys_44: 1.15128762e-18 + art_sys_45: -5.87074330e-18 + art_sys_46: 2.52284988e-09 + art_sys_47: -1.70658201e-19 + art_sys_48: -2.32338639e-18 art_sys_49: -1.80492884e-09 - art_sys_50: 6.62686414e-21 - art_sys_51: 5.38901520e-20 - art_sys_52: -1.87290653e-18 - art_sys_53: 5.26283831e-18 + art_sys_50: -3.53548599e-20 + art_sys_51: 1.38813191e-19 + art_sys_52: 5.90740955e-18 + art_sys_53: 8.39130722e-19 art_sys_54: -4.15197235e-10 - art_sys_55: -3.57930303e-18 - art_sys_56: 7.61740621e-19 - art_sys_57: -5.77796217e-20 - art_sys_58: 3.66166125e-22 - art_sys_59: -1.63737040e-18 - art_sys_60: -1.05808172e-11 - art_sys_61: -5.85440365e-21 - art_sys_62: -6.09455183e-20 - art_sys_63: 2.90248291e-12 - art_sys_64: 3.20230886e-20 - art_sys_65: -2.84254116e-21 - art_sys_66: 1.62946985e-21 - art_sys_67: -2.39238118e-22 - art_sys_68: 8.93057477e-24 - art_sys_69: -4.91417401e-24 - art_sys_70: -2.19113266e-24 - art_sys_71: -1.67315023e-25 - art_sys_72: 4.32159901e-26 - art_sys_73: -2.38873139e-26 - art_sys_74: -3.54045121e-22 - art_sys_75: -5.01085431e-26 - art_sys_76: 6.83020064e-24 - art_sys_77: 1.92827036e-23 - art_sys_78: 4.84005155e-25 - art_sys_79: 8.94454034e-25 - art_sys_80: -2.61069802e-26 - art_sys_81: -7.91488157e-22 - art_sys_82: 5.74327083e-13 - art_sys_83: 2.90582189e-26 - art_sys_84: 1.08388549e-26 - art_sys_85: -1.31935422e-26 - art_sys_86: -2.15250623e-27 - art_sys_87: 9.78881037e-26 - art_sys_88: 6.97780969e-23 - art_sys_89: 1.99706507e-29 - art_sys_90: -2.17492893e-26 - art_sys_91: 1.19010826e-18 - art_sys_92: 4.41667890e-28 - art_sys_93: -2.33275359e-28 - art_sys_94: -1.57404868e-23 - art_sys_95: 9.30094681e-23 - art_sys_96: -8.27774125e-19 - art_sys_97: -2.92522989e-20 - art_sys_98: 3.93589094e-23 - art_sys_99: -1.07952797e-19 - art_sys_100: 2.14857380e-23 - art_sys_101: 8.59957899e-20 - art_sys_102: 3.60158876e-22 - art_sys_103: 2.25147738e-21 - art_sys_104: -6.75505681e-20 - art_sys_105: -7.74440422e-23 - art_sys_106: 8.99014697e-21 - art_sys_107: -7.09667617e-22 - art_sys_108: -1.25868892e-22 - art_sys_109: 4.95382422e-24 - art_sys_110: 3.28202256e-21 - art_sys_111: -1.29483203e-20 - art_sys_112: 2.79625971e-15 - art_sys_113: -1.25692550e-20 - art_sys_114: 9.39053418e-25 - art_sys_115: 5.55789725e-22 - art_sys_116: 4.00111833e-22 - art_sys_117: 5.38630440e-25 - art_sys_118: 1.71636365e-21 - art_sys_119: 5.16747520e-22 - art_sys_120: 3.84969315e-16 - art_sys_121: -3.93040002e-25 - art_sys_122: -1.84911008e-21 - art_sys_123: -2.48561988e-22 - art_sys_124: 9.18725204e-23 - art_sys_125: 4.15059046e-25 - art_sys_126: 7.47377721e-17 - art_sys_127: 3.64283034e-22 - art_sys_128: 7.30401269e-22 - art_sys_129: 1.24103384e-24 - art_sys_130: -8.57360416e-21 - art_sys_131: -1.72646552e-23 - art_sys_132: -7.28216973e-21 - art_sys_133: 1.91247136e-20 - art_sys_134: 1.38085308e-17 - art_sys_135: 3.08386328e-21 - art_sys_136: 5.03328967e-23 - art_sys_137: -2.89939171e-21 - art_sys_138: 1.83153822e-22 - art_sys_139: 4.46860529e-20 - art_sys_140: -1.18554604e-23 - art_sys_141: 1.79264375e-18 - art_sys_142: -9.09095912e-23 - art_sys_143: -3.16574713e-21 - art_sys_144: 8.92452239e-23 - art_sys_145: 2.38985476e-21 - art_sys_146: 2.33501216e-22 - art_sys_147: -1.91092262e-24 - art_sys_148: -1.24324536e-24 - art_sys_149: -1.53178426e-23 - art_sys_150: 9.84303416e-22 - art_sys_151: 2.41490301e-20 - art_sys_152: 2.43439337e-24 - art_sys_153: 2.59921292e-21 - art_sys_154: 1.52433870e-22 - art_sys_155: -1.04131958e-23 - art_sys_156: 0.0 - art_sys_157: 7.77419512e-23 - art_sys_158: 0.0 - art_sys_159: 5.45523985e-22 - art_sys_160: 5.46175823e-24 - art_sys_161: -7.46868374e-23 - art_sys_162: -7.46868374e-23 - art_sys_163: -6.32094514e-23 - art_sys_164: -6.32094514e-23 - art_sys_165: 7.35873080e-37 - art_sys_166: -2.44888924e-37 - art_sys_167: -0.0 - art_sys_168: 3.11622066e-32 - art_sys_169: 3.09173808e-32 - art_sys_170: 1.37552904e-32 - art_sys_171: 1.27399929e-32 - art_sys_172: -2.86964913e-33 - art_sys_173: -6.38562595e-34 - art_sys_174: -1.50670356e-34 - art_sys_175: -1.81882596e-34 - art_sys_176: 8.17473452e-35 - art_sys_177: -3.31876458e-35 - art_sys_178: -5.11620083e-35 - art_sys_179: 3.41126818e-36 - art_sys_180: 1.41574163e-35 - art_sys_181: -1.60978841e-35 - art_sys_182: 4.51293082e-36 - art_sys_183: -3.01545388e-38 - art_sys_184: -6.07209372e-38 - art_sys_185: 2.00494712e-38 + art_sys_55: 3.97457610e-18 + art_sys_56: -5.44294003e-19 + art_sys_57: 1.79787636e-20 + art_sys_58: 9.71294105e-22 + art_sys_59: -1.06966977e-22 + art_sys_60: -1.29510208e-19 + art_sys_61: -2.88800604e-22 + art_sys_62: 1.28216920e-23 + art_sys_63: 3.52383882e-24 + art_sys_64: 7.70180758e-25 + art_sys_65: -1.85369873e-25 + art_sys_66: -3.40771446e-21 + art_sys_67: -1.02049137e-25 + art_sys_68: -1.02605793e-25 + art_sys_69: -1.85773925e-20 + art_sys_70: -8.88538270e-18 + art_sys_71: -1.05808188e-11 + art_sys_72: -6.94634939e-20 + art_sys_73: 7.59288955e-22 + art_sys_74: -2.90248098e-12 + art_sys_75: 9.49362930e-25 + art_sys_76: -3.10786964e-23 + art_sys_77: 1.46789362e-23 + art_sys_78: -8.64387029e-25 + art_sys_79: -1.39251170e-22 + art_sys_80: -5.74325088e-13 + art_sys_81: 5.13112390e-27 + art_sys_82: -4.20539678e-26 + art_sys_83: 4.78418995e-27 + art_sys_84: 2.00624948e-24 + art_sys_85: 1.91094988e-27 + art_sys_86: -2.07823249e-28 + art_sys_87: 5.97780551e-24 + art_sys_88: 1.23826705e-23 + art_sys_89: -5.59661750e-25 + art_sys_90: 2.00339232e-18 + art_sys_91: 5.12698935e-19 + art_sys_92: -1.02962382e-22 + art_sys_93: 2.56618508e-19 + art_sys_94: 1.40892883e-22 + art_sys_95: -3.73633789e-20 + art_sys_96: 9.38759672e-25 + art_sys_97: -1.39979565e-20 + art_sys_98: 1.43747699e-20 + art_sys_99: 4.12611652e-21 + art_sys_100: -6.43544102e-22 + art_sys_101: -8.71450655e-20 + art_sys_102: -1.10490406e-23 + art_sys_103: -1.82778692e-20 + art_sys_104: -2.79351096e-20 + art_sys_105: 1.78057132e-25 + art_sys_106: -6.40277603e-21 + art_sys_107: -9.45835082e-22 + art_sys_108: -1.28480808e-21 + art_sys_109: 2.79628161e-15 + art_sys_110: 2.45918451e-25 + art_sys_111: 5.20571842e-20 + art_sys_112: -7.79914241e-21 + art_sys_113: 1.69763693e-25 + art_sys_114: -2.60932408e-20 + art_sys_115: -6.04933368e-22 + art_sys_116: 3.84983505e-16 + art_sys_117: -8.62007430e-27 + art_sys_118: -4.31966118e-20 + art_sys_119: -7.58470294e-23 + art_sys_120: 2.50452291e-20 + art_sys_121: -7.47378846e-17 + art_sys_122: -2.30121059e-23 + art_sys_123: -4.71227223e-21 + art_sys_124: -1.83989964e-20 + art_sys_125: 7.85144835e-21 + art_sys_126: 1.38033181e-17 + art_sys_127: -1.46059636e-21 + art_sys_128: 3.74911354e-21 + art_sys_129: -2.12873037e-22 + art_sys_130: 1.54299246e-20 + art_sys_131: 1.49671479e-20 + art_sys_132: 4.36365865e-21 + art_sys_133: -1.79095597e-18 + art_sys_134: 6.53599191e-20 + art_sys_135: -4.81394058e-21 + art_sys_136: 5.37626446e-21 + art_sys_137: -3.82006713e-22 + art_sys_138: -9.54123895e-21 + art_sys_139: 2.80982399e-20 + art_sys_140: -1.74147857e-23 + art_sys_141: 2.42227777e-22 + art_sys_142: -0.0 + art_sys_143: -1.04681739e-21 + art_sys_144: -1.58943243e-21 + art_sys_145: -1.64281426e-21 + art_sys_146: 6.63379249e-25 + art_sys_147: -1.26268336e-24 + art_sys_148: -3.80627438e-24 + art_sys_149: -2.41930134e-24 + art_sys_150: -7.17852971e-24 + art_sys_151: -1.73840695e-23 + art_sys_152: 1.20505388e-23 + art_sys_153: 2.35297837e-25 + art_sys_154: -2.07660137e-24 + art_sys_155: -5.89465296e-25 + art_sys_156: -3.10648970e-24 + art_sys_157: -1.30493150e-23 + art_sys_158: -0.0 + art_sys_159: 1.37192404e-21 + art_sys_160: 1.37192404e-21 + art_sys_161: -8.92352646e-23 + art_sys_162: 3.32836104e-35 + art_sys_163: 0.0 + art_sys_164: 2.02222998e-35 + art_sys_165: 1.34065328e-31 + art_sys_166: 2.93730597e-31 + art_sys_167: 9.64388672e-32 + art_sys_168: -1.06212894e-32 + art_sys_169: -4.41181944e-33 + art_sys_170: 1.12627797e-32 + art_sys_171: -7.53226830e-33 + art_sys_172: 2.82822785e-32 + art_sys_173: 2.25017555e-33 + art_sys_174: -3.43545155e-37 + art_sys_175: 3.77483791e-34 + art_sys_176: -2.22949495e-34 + art_sys_177: 2.55935098e-36 + art_sys_178: -5.09338418e-36 + art_sys_179: -2.65749075e-36 + art_sys_180: -7.04228585e-36 + art_sys_181: 8.73506640e-37 + art_sys_182: -8.49566114e-37 + art_sys_183: 6.05034778e-39 + art_sys_184: 7.47296018e-39 + art_sys_185: 1.06905093e-36 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -56112,190 +56112,190 @@ bins: luminosity_uncertainty: 4.83381600e+02 uncorrelated_uncertainty: 185.916 - art_sys_1: 7.33133957e-14 - art_sys_2: 3.47508813e-14 + art_sys_2: 3.31687128e-14 art_sys_3: -8.52558389e+01 - art_sys_4: 1.03995593e-14 + art_sys_4: 7.77398616e-14 art_sys_5: 5.81247708e+01 - art_sys_6: -2.06251145e-14 - art_sys_7: -7.08944093e-15 + art_sys_6: -3.32340387e-14 + art_sys_7: -1.70616265e-14 art_sys_8: -1.98691711e+01 - art_sys_9: 8.78290703e-15 - art_sys_10: 5.53553390e-15 + art_sys_9: 1.59269476e-14 + art_sys_10: 5.92253827e-15 art_sys_11: 5.01987495e+00 - art_sys_12: 8.60287903e-15 - art_sys_13: -1.33596212e-14 - art_sys_14: 3.73794688e-15 - art_sys_15: 9.36409003e-02 - art_sys_16: 1.16973067e-15 - art_sys_17: 6.14542600e-16 + art_sys_12: 8.30612695e-15 + art_sys_13: 1.39851578e-14 + art_sys_14: -3.83038206e-15 + art_sys_15: -9.36409003e-02 + art_sys_16: -1.16395874e-15 + art_sys_17: -4.20915600e-17 art_sys_18: 2.85277054e-02 - art_sys_19: -3.88402061e-16 - art_sys_20: -7.82515615e-16 + art_sys_19: 3.75084360e-16 + art_sys_20: 3.39898517e-15 art_sys_21: -1.56399807e-02 - art_sys_22: -1.06385630e-15 - art_sys_23: 2.34116465e-15 + art_sys_22: -2.92896720e-15 + art_sys_23: 2.33825839e-15 art_sys_24: -3.82749610e-03 - art_sys_25: -5.20484850e-17 - art_sys_26: -1.28138481e-16 - art_sys_27: -1.07622457e-05 - art_sys_28: 3.61084817e-16 - art_sys_29: -2.18339375e-06 - art_sys_30: -2.11374188e-16 - art_sys_31: -1.16200726e-16 - art_sys_32: 1.47227065e-06 - art_sys_33: 6.53813877e-17 - art_sys_34: -2.68572822e-17 - art_sys_35: 4.86023220e-17 - art_sys_36: 1.60090176e-16 - art_sys_37: 2.48875696e-18 - art_sys_38: -3.82440651e-19 - art_sys_39: 5.66496113e-20 - art_sys_40: -6.43951833e-20 - art_sys_41: 7.64830356e-21 - art_sys_42: 4.95781093e-19 - art_sys_43: 4.78395739e-19 - art_sys_44: 5.41445927e-18 - art_sys_45: -1.35346182e-18 - art_sys_46: 2.18364068e-21 - art_sys_47: -3.72127349e-08 - art_sys_48: -1.86807738e-16 + art_sys_25: 5.23850648e-17 + art_sys_26: -1.27666224e-16 + art_sys_27: 1.07622457e-05 + art_sys_28: -2.55852521e-16 + art_sys_29: -3.09911372e-16 + art_sys_30: -5.39449792e-18 + art_sys_31: 9.32536019e-19 + art_sys_32: -8.39130744e-20 + art_sys_33: 3.60464761e-20 + art_sys_34: 6.03669662e-19 + art_sys_35: 4.93050872e-19 + art_sys_36: -2.18339375e-06 + art_sys_37: -2.13372471e-16 + art_sys_38: -3.20353602e-19 + art_sys_39: 1.24847827e-16 + art_sys_40: 1.47227065e-06 + art_sys_41: -6.42731492e-17 + art_sys_42: 3.20615411e-18 + art_sys_43: 2.80150720e-17 + art_sys_44: -9.64914100e-19 + art_sys_45: 2.98708673e-17 + art_sys_46: -3.72127349e-08 + art_sys_47: 3.33593944e-20 + art_sys_48: -2.42942456e-18 art_sys_49: 1.05364930e-08 - art_sys_50: -7.14974878e-21 - art_sys_51: -1.62904790e-20 - art_sys_52: 5.72125531e-18 - art_sys_53: -7.99763769e-18 + art_sys_50: -4.99675733e-20 + art_sys_51: 1.23745933e-19 + art_sys_52: -8.75171295e-18 + art_sys_53: -7.00293803e-18 art_sys_54: 3.35859084e-09 - art_sys_55: 1.25070560e-17 - art_sys_56: -4.06150105e-18 - art_sys_57: 3.75153075e-20 - art_sys_58: -6.36496089e-22 - art_sys_59: 1.18586503e-17 - art_sys_60: 7.93975047e-11 - art_sys_61: 1.21786756e-22 - art_sys_62: 2.51404569e-19 - art_sys_63: -1.87485134e-11 - art_sys_64: -7.82418845e-20 - art_sys_65: 6.46642747e-21 - art_sys_66: -1.98906433e-21 - art_sys_67: -1.59068689e-22 - art_sys_68: -4.11284343e-24 - art_sys_69: 4.19047002e-24 - art_sys_70: 1.96577010e-24 - art_sys_71: -1.46742278e-25 - art_sys_72: -3.05385079e-25 - art_sys_73: 1.72865827e-25 - art_sys_74: -1.73389659e-21 - art_sys_75: -4.96448779e-26 - art_sys_76: -4.92830484e-23 - art_sys_77: -1.47055081e-22 - art_sys_78: -4.39129084e-24 - art_sys_79: -7.46417656e-25 - art_sys_80: 2.73202251e-27 - art_sys_81: 6.08459860e-21 - art_sys_82: -4.41113855e-12 - art_sys_83: -9.32301996e-26 - art_sys_84: -4.46898451e-26 - art_sys_85: 4.50995033e-26 - art_sys_86: 8.52885612e-27 - art_sys_87: 2.13471756e-25 - art_sys_88: -2.47166291e-22 - art_sys_89: -4.01592227e-29 - art_sys_90: 2.31686576e-24 - art_sys_91: -8.33733355e-18 - art_sys_92: -1.53662170e-27 - art_sys_93: 8.50202074e-28 - art_sys_94: 8.09373501e-23 - art_sys_95: 4.54626146e-22 - art_sys_96: 7.72231106e-18 - art_sys_97: 2.58704139e-19 - art_sys_98: 4.64592928e-23 - art_sys_99: 6.90634905e-19 - art_sys_100: 3.83621135e-23 - art_sys_101: -6.67644683e-19 - art_sys_102: -1.27054163e-21 - art_sys_103: -1.02442685e-20 - art_sys_104: 1.93168112e-19 - art_sys_105: 3.66821325e-22 - art_sys_106: 3.64557935e-21 - art_sys_107: 3.61176030e-21 - art_sys_108: 5.96211104e-22 - art_sys_109: -2.32676554e-23 - art_sys_110: -2.78496376e-21 - art_sys_111: 1.16445263e-20 - art_sys_112: -9.90567004e-15 - art_sys_113: 1.00824326e-19 - art_sys_114: -4.48032713e-24 - art_sys_115: 1.01987602e-20 - art_sys_116: -1.98350108e-21 - art_sys_117: -2.36822297e-24 - art_sys_118: -7.23168332e-21 - art_sys_119: -2.90468336e-21 - art_sys_120: -1.98408281e-15 - art_sys_121: 1.94258492e-24 - art_sys_122: 7.90907366e-21 - art_sys_123: 1.13397629e-21 - art_sys_124: -1.43951470e-21 - art_sys_125: -3.05326491e-24 - art_sys_126: -3.84113040e-16 - art_sys_127: -1.37793765e-21 - art_sys_128: -3.81158178e-21 - art_sys_129: -7.93320032e-24 - art_sys_130: 4.06527178e-20 - art_sys_131: 1.10425001e-22 - art_sys_132: 3.74227735e-20 - art_sys_133: -9.04042739e-20 - art_sys_134: -6.31037514e-17 - art_sys_135: -1.57460505e-20 - art_sys_136: -3.25212403e-22 - art_sys_137: 1.39416403e-20 - art_sys_138: -7.97209335e-22 - art_sys_139: -2.11770135e-19 - art_sys_140: 6.99292688e-23 - art_sys_141: -8.49111568e-18 - art_sys_142: 3.60100056e-22 - art_sys_143: 1.49908321e-20 - art_sys_144: -4.51790247e-22 - art_sys_145: -1.08738853e-20 - art_sys_146: -1.10687294e-21 - art_sys_147: 8.01752702e-24 - art_sys_148: 4.32799548e-24 - art_sys_149: -1.11500110e-23 - art_sys_150: -5.11051087e-21 - art_sys_151: -1.57844160e-19 - art_sys_152: -2.45644555e-23 - art_sys_153: -1.37541295e-20 - art_sys_154: -7.74865221e-22 - art_sys_155: 6.03013526e-23 - art_sys_156: -0.0 - art_sys_157: -3.45607584e-22 - art_sys_158: -0.0 - art_sys_159: -2.48909867e-21 - art_sys_160: -2.05736748e-24 - art_sys_161: 3.44408803e-22 - art_sys_162: 3.44408803e-22 - art_sys_163: 3.00152937e-22 - art_sys_164: 3.00152937e-22 - art_sys_165: -3.47620802e-36 - art_sys_166: 1.15667684e-36 - art_sys_167: 0.0 - art_sys_168: -2.21039332e-31 - art_sys_169: -1.95392411e-31 - art_sys_170: -1.17267812e-31 - art_sys_171: -8.05343387e-32 - art_sys_172: 1.52021511e-32 - art_sys_173: 7.60065781e-34 - art_sys_174: 1.96418454e-33 - art_sys_175: 1.12217122e-33 - art_sys_176: -4.43233493e-34 - art_sys_177: 1.88591465e-34 - art_sys_178: 2.75280100e-34 - art_sys_179: -1.95972248e-35 - art_sys_180: -6.53941713e-35 - art_sys_181: 9.03627579e-35 - art_sys_182: -3.15321026e-35 - art_sys_183: 1.81657012e-37 - art_sys_184: 2.96192376e-37 - art_sys_185: -9.15562527e-38 + art_sys_55: -1.52397054e-17 + art_sys_56: 2.99228044e-18 + art_sys_57: -3.85470198e-20 + art_sys_58: -3.98891758e-21 + art_sys_59: 1.19964516e-21 + art_sys_60: -5.44986945e-20 + art_sys_61: 8.31241279e-22 + art_sys_62: 3.23418550e-25 + art_sys_63: -2.93237564e-23 + art_sys_64: -6.22621761e-25 + art_sys_65: 7.47740030e-25 + art_sys_66: 3.90786745e-20 + art_sys_67: 8.24638566e-25 + art_sys_68: 5.72046230e-25 + art_sys_69: 1.28253258e-19 + art_sys_70: 6.59414162e-17 + art_sys_71: 7.93975133e-11 + art_sys_72: 4.57889274e-19 + art_sys_73: -3.31870777e-21 + art_sys_74: 1.87485014e-11 + art_sys_75: 3.99836777e-24 + art_sys_76: 2.41144013e-22 + art_sys_77: -1.15044769e-22 + art_sys_78: 6.62603235e-24 + art_sys_79: 1.05903232e-21 + art_sys_80: 4.41112335e-12 + art_sys_81: -1.37766143e-26 + art_sys_82: 1.44178805e-25 + art_sys_83: -1.50527138e-26 + art_sys_84: -6.70359340e-25 + art_sys_85: -8.41146036e-27 + art_sys_86: -6.93291870e-27 + art_sys_87: -1.71206522e-23 + art_sys_88: -6.40295513e-23 + art_sys_89: 2.13641280e-24 + art_sys_90: -1.11202562e-17 + art_sys_91: -4.89603835e-18 + art_sys_92: 1.66298547e-22 + art_sys_93: -1.92387311e-18 + art_sys_94: -7.01893137e-22 + art_sys_95: 6.54607542e-20 + art_sys_96: -4.19208233e-24 + art_sys_97: 4.96738516e-20 + art_sys_98: -2.98384629e-20 + art_sys_99: 1.04085918e-21 + art_sys_100: 2.20508368e-21 + art_sys_101: 1.68246510e-19 + art_sys_102: 5.23678380e-23 + art_sys_103: 9.49289923e-20 + art_sys_104: 5.23270085e-20 + art_sys_105: -1.27391254e-24 + art_sys_106: 1.58250971e-20 + art_sys_107: 8.76083378e-21 + art_sys_108: 6.61931336e-21 + art_sys_109: -9.90574721e-15 + art_sys_110: -1.51552999e-24 + art_sys_111: -1.82401030e-19 + art_sys_112: 3.52374981e-20 + art_sys_113: -1.04622142e-24 + art_sys_114: 7.70852366e-20 + art_sys_115: 2.76330199e-21 + art_sys_116: -1.98415564e-15 + art_sys_117: 5.59454084e-26 + art_sys_118: 1.43840367e-19 + art_sys_119: 3.48018236e-22 + art_sys_120: -8.39709970e-20 + art_sys_121: 3.84114102e-16 + art_sys_122: 7.25156623e-21 + art_sys_123: 2.22844311e-20 + art_sys_124: 9.34938965e-20 + art_sys_125: -3.97518459e-20 + art_sys_126: -6.30799697e-17 + art_sys_127: 6.22384413e-21 + art_sys_128: -1.78508211e-20 + art_sys_129: 1.16614669e-21 + art_sys_130: -7.33240225e-20 + art_sys_131: -7.07805165e-20 + art_sys_132: -1.99503092e-20 + art_sys_133: 8.48352173e-18 + art_sys_134: -3.08996192e-19 + art_sys_135: 2.18851593e-20 + art_sys_136: -2.73677382e-20 + art_sys_137: 1.51005292e-21 + art_sys_138: 6.38226988e-20 + art_sys_139: -1.76503639e-19 + art_sys_140: 1.51195769e-22 + art_sys_141: -7.30228109e-21 + art_sys_142: 0.0 + art_sys_143: 5.35986869e-21 + art_sys_144: 1.07824132e-20 + art_sys_145: 1.41467969e-20 + art_sys_146: -4.32928375e-24 + art_sys_147: 8.26257022e-24 + art_sys_148: 2.08072980e-23 + art_sys_149: 1.50212278e-23 + art_sys_150: 4.96891250e-23 + art_sys_151: 9.38110644e-23 + art_sys_152: -5.64139134e-23 + art_sys_153: -1.08171632e-24 + art_sys_154: 8.76842504e-24 + art_sys_155: 1.01205690e-23 + art_sys_156: 3.30456037e-23 + art_sys_157: 8.40598133e-23 + art_sys_158: 0.0 + art_sys_159: -7.39968087e-21 + art_sys_160: -7.39968087e-21 + art_sys_161: 4.84475527e-22 + art_sys_162: -1.80600182e-34 + art_sys_163: -0.0 + art_sys_164: -1.09685824e-34 + art_sys_165: -8.94698476e-31 + art_sys_166: -1.90711212e-30 + art_sys_167: -6.35947485e-31 + art_sys_168: 5.47542061e-32 + art_sys_169: 1.97801078e-32 + art_sys_170: -5.26975031e-32 + art_sys_171: -1.86293272e-32 + art_sys_172: -4.33393771e-32 + art_sys_173: 4.55785065e-34 + art_sys_174: 7.32987120e-36 + art_sys_175: -1.42320345e-33 + art_sys_176: -7.97600844e-34 + art_sys_177: 1.39313036e-34 + art_sys_178: 2.46385684e-35 + art_sys_179: 4.10889893e-36 + art_sys_180: 3.08720712e-35 + art_sys_181: -6.08638219e-36 + art_sys_182: 3.46026837e-36 + art_sys_183: -2.51096726e-38 + art_sys_184: -3.51247273e-38 + art_sys_185: -5.78639831e-36 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -56403,190 +56403,190 @@ bins: luminosity_uncertainty: 241.8286 uncorrelated_uncertainty: 9.30110000e+01 - art_sys_1: 1.03315152e-14 - art_sys_2: 7.83974319e-14 + art_sys_2: 7.83146434e-14 art_sys_3: -8.35379826e+00 - art_sys_4: -7.87418175e-14 + art_sys_4: 9.06012275e-14 art_sys_5: 5.65117323e+01 - art_sys_6: 1.69109276e-14 - art_sys_7: 1.21553236e-14 + art_sys_6: 4.59852596e-15 + art_sys_7: 2.43151883e-14 art_sys_8: 1.98072711e+01 - art_sys_9: -5.52348722e-15 - art_sys_10: -8.04786590e-15 + art_sys_9: -1.75104661e-14 + art_sys_10: -8.05103252e-15 art_sys_11: -7.92238438e+00 - art_sys_12: -1.32358262e-14 - art_sys_13: 3.13044044e-14 - art_sys_14: -4.77492602e-15 - art_sys_15: -3.13455227e-01 - art_sys_16: -1.51018316e-15 - art_sys_17: -5.00540631e-16 + art_sys_12: -1.28944893e-14 + art_sys_13: -3.28567190e-14 + art_sys_14: 5.07280640e-15 + art_sys_15: 3.13455227e-01 + art_sys_16: 1.50311220e-15 + art_sys_17: 9.37644590e-16 art_sys_18: -7.50215504e-02 - art_sys_19: 7.86183286e-16 - art_sys_20: 9.38600314e-16 + art_sys_19: -7.42511148e-16 + art_sys_20: -5.50626272e-15 art_sys_21: 4.86733428e-02 - art_sys_22: 1.73764774e-15 - art_sys_23: -3.69592620e-15 + art_sys_22: 4.76708378e-15 + art_sys_23: -3.68776372e-15 art_sys_24: 1.23672193e-02 - art_sys_25: 7.81956497e-17 - art_sys_26: 2.44595777e-16 - art_sys_27: 3.08573026e-05 - art_sys_28: -4.34726499e-16 - art_sys_29: 8.55392108e-06 - art_sys_30: 3.60705844e-16 - art_sys_31: 3.08032452e-16 - art_sys_32: -5.06643749e-06 - art_sys_33: -8.48846356e-17 - art_sys_34: 3.46342986e-17 - art_sys_35: -1.63445899e-16 - art_sys_36: -3.46483647e-17 - art_sys_37: 2.24154932e-18 - art_sys_38: 7.31403978e-20 - art_sys_39: -3.19305134e-21 - art_sys_40: -5.90252035e-20 - art_sys_41: -2.86564642e-19 - art_sys_42: -3.84589093e-19 - art_sys_43: 8.24058049e-19 - art_sys_44: -6.50495423e-18 - art_sys_45: 2.30749259e-18 - art_sys_46: -1.64271867e-19 - art_sys_47: 1.42109417e-07 - art_sys_48: 7.50918292e-16 + art_sys_25: -7.94154226e-17 + art_sys_26: 2.44548236e-16 + art_sys_27: -3.08573026e-05 + art_sys_28: 4.03778142e-16 + art_sys_29: -1.11347166e-16 + art_sys_30: 1.49951986e-17 + art_sys_31: -3.78085327e-18 + art_sys_32: 3.19700137e-19 + art_sys_33: -3.52047621e-19 + art_sys_34: -2.47143299e-19 + art_sys_35: -6.06715597e-21 + art_sys_36: 8.55392108e-06 + art_sys_37: 3.59175888e-16 + art_sys_38: 4.66769943e-19 + art_sys_39: -2.94833977e-16 + art_sys_40: -5.06643749e-06 + art_sys_41: 8.47631908e-17 + art_sys_42: 1.78111872e-18 + art_sys_43: -3.49543296e-17 + art_sys_44: -4.88176553e-19 + art_sys_45: -1.36737612e-16 + art_sys_46: 1.42109417e-07 + art_sys_47: 1.09582481e-19 + art_sys_48: 2.96079912e-17 art_sys_49: -4.10425760e-08 - art_sys_50: -7.34971046e-20 - art_sys_51: -2.77397143e-19 - art_sys_52: -2.00979553e-17 - art_sys_53: -5.14481146e-18 + art_sys_50: -4.07334941e-20 + art_sys_51: 9.66421826e-20 + art_sys_52: 1.42872877e-18 + art_sys_53: 2.74187767e-17 art_sys_54: -1.26238490e-08 - art_sys_55: -2.22887446e-17 - art_sys_56: 1.52763875e-17 - art_sys_57: 1.26062246e-19 - art_sys_58: -4.01024423e-22 - art_sys_59: -5.25647764e-17 - art_sys_60: -3.57463697e-10 - art_sys_61: 5.41834411e-21 - art_sys_62: -9.26845395e-19 - art_sys_63: 7.25955061e-11 - art_sys_64: 9.91812794e-20 - art_sys_65: -6.26341544e-21 - art_sys_66: -6.87767077e-21 - art_sys_67: 1.76532181e-21 - art_sys_68: 1.81649603e-23 - art_sys_69: -1.39042689e-23 - art_sys_70: -4.66950072e-24 - art_sys_71: 1.08923653e-24 - art_sys_72: 1.27794115e-24 - art_sys_73: -7.31151773e-25 - art_sys_74: 2.47477498e-21 - art_sys_75: 1.93935931e-25 - art_sys_76: 2.07533970e-22 - art_sys_77: 6.10963130e-22 - art_sys_78: 1.78333781e-23 - art_sys_79: 1.68436846e-24 - art_sys_80: -1.77654207e-25 - art_sys_81: -2.52454132e-20 - art_sys_82: 1.82999743e-11 - art_sys_83: 4.72395086e-25 - art_sys_84: 1.98283767e-25 - art_sys_85: -2.33984122e-25 - art_sys_86: -4.01289985e-26 - art_sys_87: 3.48174238e-26 - art_sys_88: 1.22951805e-21 - art_sys_89: 3.35897694e-28 - art_sys_90: -1.24728461e-24 - art_sys_91: 3.35425367e-17 - art_sys_92: 7.58272301e-27 - art_sys_93: -4.10140929e-27 - art_sys_94: -3.74659792e-22 - art_sys_95: -5.97524915e-23 - art_sys_96: -3.36311119e-17 - art_sys_97: -9.54887036e-19 - art_sys_98: -1.77670400e-24 - art_sys_99: -2.76548902e-18 - art_sys_100: 1.66232302e-23 - art_sys_101: 2.80793668e-18 - art_sys_102: 6.14662618e-21 - art_sys_103: 2.21885738e-20 - art_sys_104: -3.45605962e-19 - art_sys_105: -1.50324145e-21 - art_sys_106: -8.87720957e-20 - art_sys_107: -1.27825740e-20 - art_sys_108: -2.44335192e-21 - art_sys_109: 9.52055124e-23 - art_sys_110: 5.46553614e-20 - art_sys_111: -1.77829820e-20 - art_sys_112: 4.92751261e-14 - art_sys_113: -3.74345276e-19 - art_sys_114: 1.83836877e-23 - art_sys_115: -1.85148180e-20 - art_sys_116: 8.63386466e-21 - art_sys_117: 9.56892468e-24 - art_sys_118: 1.49768131e-20 - art_sys_119: 1.47056926e-20 - art_sys_120: 7.01545873e-15 - art_sys_121: -8.01834985e-24 - art_sys_122: -2.41650940e-20 - art_sys_123: -4.52190060e-21 - art_sys_124: -2.71794564e-21 - art_sys_125: 1.32966086e-23 - art_sys_126: 1.77805284e-15 - art_sys_127: 5.39023228e-21 - art_sys_128: 1.56534153e-20 - art_sys_129: 3.40403175e-23 - art_sys_130: -1.66638443e-19 - art_sys_131: -4.73837547e-22 - art_sys_132: -1.30824204e-19 - art_sys_133: 3.70385623e-19 - art_sys_134: 2.52123594e-16 - art_sys_135: 6.95857241e-20 - art_sys_136: 1.39699094e-21 - art_sys_137: -5.73001264e-20 - art_sys_138: 3.12671350e-21 - art_sys_139: 8.67943960e-19 - art_sys_140: -2.97915007e-22 - art_sys_141: 3.47978098e-17 - art_sys_142: -1.03003971e-21 - art_sys_143: -6.14207310e-20 - art_sys_144: 1.89111991e-21 - art_sys_145: 4.32426285e-20 - art_sys_146: 4.54717870e-21 - art_sys_147: -3.16049118e-23 - art_sys_148: -1.60700658e-23 - art_sys_149: -6.02771858e-24 - art_sys_150: 2.13290199e-20 - art_sys_151: 6.78750052e-19 - art_sys_152: 1.11751103e-22 - art_sys_153: 5.74270275e-20 - art_sys_154: 3.35774515e-21 - art_sys_155: -2.52700470e-22 - art_sys_156: 0.0 - art_sys_157: 1.36901653e-21 - art_sys_158: 0.0 - art_sys_159: 1.00469707e-20 - art_sys_160: -2.49677084e-24 - art_sys_161: -1.38359844e-21 - art_sys_162: -1.38359844e-21 - art_sys_163: -1.21354096e-21 - art_sys_164: -1.21354096e-21 - art_sys_165: 1.40396253e-35 - art_sys_166: -4.67085619e-36 - art_sys_167: -0.0 - art_sys_168: 9.47987315e-31 - art_sys_169: 8.46257329e-31 - art_sys_170: 4.10831828e-31 - art_sys_171: 2.83490427e-31 - art_sys_172: -7.59506855e-32 - art_sys_173: -3.84189960e-33 - art_sys_174: -8.07649905e-33 - art_sys_175: -4.53757394e-33 - art_sys_176: 1.85423989e-33 - art_sys_177: -8.05917458e-34 - art_sys_178: -1.17248292e-33 - art_sys_179: 8.18414703e-35 - art_sys_180: 2.64158142e-34 - art_sys_181: -3.84751334e-34 - art_sys_182: 1.34224249e-34 - art_sys_183: -9.06407144e-37 - art_sys_184: -1.22415651e-36 - art_sys_185: 3.70950167e-37 + art_sys_55: 3.33561273e-17 + art_sys_56: -1.16693608e-17 + art_sys_57: 2.05743598e-19 + art_sys_58: 1.54264450e-20 + art_sys_59: -3.32997677e-21 + art_sys_60: -1.53206645e-19 + art_sys_61: -2.66935032e-21 + art_sys_62: -4.79222898e-23 + art_sys_63: 8.20710057e-23 + art_sys_64: 1.78224240e-23 + art_sys_65: -5.07523244e-24 + art_sys_66: -1.66184513e-19 + art_sys_67: -3.95032552e-24 + art_sys_68: -2.27580773e-24 + art_sys_69: -5.49978878e-19 + art_sys_70: -2.99776031e-16 + art_sys_71: -3.57463728e-10 + art_sys_72: -2.07095945e-18 + art_sys_73: -8.60590515e-22 + art_sys_74: -7.25954594e-11 + art_sys_75: -9.53496555e-24 + art_sys_76: -9.97969768e-22 + art_sys_77: 4.75036942e-22 + art_sys_78: -2.73110076e-23 + art_sys_79: -4.39148697e-21 + art_sys_80: -1.82999116e-11 + art_sys_81: 9.75537725e-26 + art_sys_82: -7.31557470e-25 + art_sys_83: 8.10670842e-26 + art_sys_84: 1.33984113e-23 + art_sys_85: 3.82918389e-26 + art_sys_86: 2.40824585e-27 + art_sys_87: 9.76087254e-23 + art_sys_88: 2.94542077e-22 + art_sys_89: -6.20278824e-24 + art_sys_90: 3.92362754e-17 + art_sys_91: 2.13097506e-17 + art_sys_92: -4.04890712e-22 + art_sys_93: 8.00809450e-18 + art_sys_94: 3.17582740e-21 + art_sys_95: -2.16428155e-19 + art_sys_96: 1.66005841e-23 + art_sys_97: -2.46997827e-19 + art_sys_98: 2.18826102e-19 + art_sys_99: 1.57523771e-21 + art_sys_100: -1.10595860e-20 + art_sys_101: -2.89724386e-19 + art_sys_102: -2.14629551e-22 + art_sys_103: -3.33467628e-19 + art_sys_104: -3.76387599e-20 + art_sys_105: 5.53121950e-24 + art_sys_106: -1.29871467e-19 + art_sys_107: -3.83565662e-20 + art_sys_108: -2.31930434e-20 + art_sys_109: 4.92755117e-14 + art_sys_110: 6.48136322e-24 + art_sys_111: 9.39650601e-19 + art_sys_112: -1.38474300e-19 + art_sys_113: 4.47069346e-24 + art_sys_114: -4.18493685e-19 + art_sys_115: -1.10250190e-20 + art_sys_116: 7.01571566e-15 + art_sys_117: -2.41491720e-25 + art_sys_118: -7.35617011e-19 + art_sys_119: -1.38623805e-21 + art_sys_120: 4.31676005e-19 + art_sys_121: -1.77805940e-15 + art_sys_122: -3.73168296e-21 + art_sys_123: -9.13069050e-20 + art_sys_124: -3.33868142e-19 + art_sys_125: 1.46012655e-19 + art_sys_126: 2.52028864e-16 + art_sys_127: -2.93699579e-20 + art_sys_128: 7.32358069e-20 + art_sys_129: -4.90349481e-21 + art_sys_130: 3.00662434e-19 + art_sys_131: 2.89976107e-19 + art_sys_132: 7.79316619e-20 + art_sys_133: -3.47669827e-17 + art_sys_134: 1.26587598e-18 + art_sys_135: -8.66146518e-20 + art_sys_136: 1.13551864e-19 + art_sys_137: -5.21011930e-21 + art_sys_138: -2.75228819e-19 + art_sys_139: 7.55275715e-19 + art_sys_140: -5.35453935e-22 + art_sys_141: 3.45880495e-20 + art_sys_142: -0.0 + art_sys_143: -2.18480512e-20 + art_sys_144: -4.65515630e-20 + art_sys_145: -6.27811757e-20 + art_sys_146: 1.86215545e-23 + art_sys_147: -3.55546248e-23 + art_sys_148: -8.80524703e-23 + art_sys_149: -6.43033740e-23 + art_sys_150: -2.15145425e-22 + art_sys_151: -3.97407702e-22 + art_sys_152: 2.31249789e-22 + art_sys_153: 4.45684169e-24 + art_sys_154: -3.57931624e-23 + art_sys_155: -4.56773808e-23 + art_sys_156: -1.49786757e-22 + art_sys_157: -3.62164384e-22 + art_sys_158: -0.0 + art_sys_159: 3.11032363e-20 + art_sys_160: 3.11032363e-20 + art_sys_161: -2.04662333e-21 + art_sys_162: 7.62660071e-34 + art_sys_163: 0.0 + art_sys_164: 4.63113999e-34 + art_sys_165: 3.78313641e-30 + art_sys_166: 8.19522899e-30 + art_sys_167: 2.73524255e-30 + art_sys_168: -2.33321655e-31 + art_sys_169: -8.38893611e-32 + art_sys_170: 2.26058294e-31 + art_sys_171: 6.45627911e-32 + art_sys_172: 2.30303857e-31 + art_sys_173: -7.52181216e-33 + art_sys_174: -3.42828496e-35 + art_sys_175: 4.38122121e-33 + art_sys_176: 5.10571544e-33 + art_sys_177: -8.44334978e-34 + art_sys_178: -1.12323963e-34 + art_sys_179: -2.01883239e-36 + art_sys_180: -1.28573406e-34 + art_sys_181: 2.75552387e-35 + art_sys_182: -1.61460016e-35 + art_sys_183: 9.09584603e-38 + art_sys_184: 1.44558536e-37 + art_sys_185: 2.44769501e-35 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -56694,190 +56694,190 @@ bins: luminosity_uncertainty: 1.04034060e+02 uncorrelated_uncertainty: 40.0131 - art_sys_1: -4.72513881e-15 - art_sys_2: 2.42070446e-14 + art_sys_2: 2.43515277e-14 art_sys_3: 8.88853667e+00 - art_sys_4: 3.87091027e-14 + art_sys_4: 7.52946524e-14 art_sys_5: 1.22951844e+01 - art_sys_6: 6.01618023e-14 - art_sys_7: -1.26001573e-14 + art_sys_6: 5.74852088e-14 + art_sys_7: -2.21156937e-14 art_sys_8: 3.34585640e+01 - art_sys_9: -1.57269478e-14 - art_sys_10: 9.07723978e-15 + art_sys_9: -3.88752661e-15 + art_sys_10: 8.74803412e-15 art_sys_11: 8.18473636e+00 - art_sys_12: 2.81168604e-14 - art_sys_13: -2.93764303e-14 - art_sys_14: 4.37614421e-15 - art_sys_15: 2.97891803e-01 - art_sys_16: 1.82098426e-15 - art_sys_17: 2.70967818e-17 + art_sys_12: 2.78202959e-14 + art_sys_13: 3.09350892e-14 + art_sys_14: -4.73634256e-15 + art_sys_15: -2.97891803e-01 + art_sys_16: -1.81756895e-15 + art_sys_17: -1.48517331e-15 art_sys_18: 1.66819769e-01 - art_sys_19: 1.81376593e-15 - art_sys_20: -9.22182643e-16 + art_sys_19: -1.89601587e-15 + art_sys_20: 5.80082370e-15 art_sys_21: -9.56776610e-02 - art_sys_22: -1.86152181e-15 - art_sys_23: 3.91858420e-15 + art_sys_22: -4.99631376e-15 + art_sys_23: 3.90486888e-15 art_sys_24: -2.86389368e-02 - art_sys_25: -6.22532840e-17 - art_sys_26: -2.71866336e-16 - art_sys_27: -1.15703962e-04 - art_sys_28: 8.48345287e-17 - art_sys_29: -2.46174492e-05 - art_sys_30: -3.75068702e-16 - art_sys_31: -5.81363457e-16 - art_sys_32: 1.71523137e-05 - art_sys_33: 6.81554874e-17 - art_sys_34: -2.12691108e-17 - art_sys_35: 3.59871206e-16 - art_sys_36: 2.18549773e-17 - art_sys_37: -8.02289708e-19 - art_sys_38: -2.22591886e-19 - art_sys_39: -2.66342559e-20 - art_sys_40: -4.85119806e-20 - art_sys_41: -1.16047667e-19 - art_sys_42: -1.45558629e-19 - art_sys_43: 3.60872863e-19 - art_sys_44: -4.10167885e-18 - art_sys_45: 1.37654957e-18 - art_sys_46: -4.46276165e-20 - art_sys_47: -5.14892200e-07 - art_sys_48: -2.44138308e-15 + art_sys_25: 6.46425746e-17 + art_sys_26: -2.71584814e-16 + art_sys_27: 1.15703962e-04 + art_sys_28: -3.59808793e-16 + art_sys_29: 2.23120463e-16 + art_sys_30: -1.38633821e-17 + art_sys_31: 1.19582194e-17 + art_sys_32: -1.05018276e-18 + art_sys_33: 1.22671843e-18 + art_sys_34: 6.40296063e-20 + art_sys_35: -4.40526910e-19 + art_sys_36: -2.46174492e-05 + art_sys_37: -3.76934414e-16 + art_sys_38: 4.70675061e-19 + art_sys_39: 4.44537721e-16 + art_sys_40: 1.71523137e-05 + art_sys_41: -6.20468928e-17 + art_sys_42: 1.61033852e-18 + art_sys_43: 2.92665213e-17 + art_sys_44: -3.29054804e-19 + art_sys_45: 3.43272063e-16 + art_sys_46: -5.14892200e-07 + art_sys_47: 5.01757985e-20 + art_sys_48: -1.50427559e-16 art_sys_49: 1.34128403e-07 - art_sys_50: -1.77541484e-20 - art_sys_51: 3.34095121e-20 - art_sys_52: 4.36051345e-17 - art_sys_53: 8.61553657e-17 + art_sys_50: -4.76843672e-20 + art_sys_51: 2.00814169e-19 + art_sys_52: 6.59409576e-17 + art_sys_53: -8.52246073e-17 art_sys_54: 4.59054546e-08 - art_sys_55: 3.17969301e-17 - art_sys_56: -4.70384477e-17 - art_sys_57: 2.37834150e-20 - art_sys_58: 1.01101412e-21 - art_sys_59: 1.55774606e-16 - art_sys_60: 1.07284721e-09 - art_sys_61: -3.23227151e-20 - art_sys_62: 2.33526377e-18 - art_sys_63: -2.58468864e-10 - art_sys_64: -4.30091591e-19 - art_sys_65: 2.22869738e-20 - art_sys_66: 1.93715273e-20 - art_sys_67: -3.74575736e-21 - art_sys_68: -6.20261108e-23 - art_sys_69: 4.78598631e-23 - art_sys_70: 1.50023128e-23 - art_sys_71: -3.60792256e-24 - art_sys_72: -4.19133939e-24 - art_sys_73: 2.35059422e-24 - art_sys_74: -7.85410615e-21 - art_sys_75: -7.97747487e-25 - art_sys_76: -6.85938578e-22 - art_sys_77: -2.04936139e-21 - art_sys_78: -6.14959983e-23 - art_sys_79: -8.05606597e-24 - art_sys_80: -5.75004544e-26 - art_sys_81: 8.48178373e-20 - art_sys_82: -6.14860499e-11 - art_sys_83: -1.32211363e-24 - art_sys_84: -6.13273534e-25 - art_sys_85: 6.06011279e-25 - art_sys_86: 1.16786452e-25 - art_sys_87: -3.64062628e-26 - art_sys_88: -3.33092489e-21 - art_sys_89: -6.54291662e-28 - art_sys_90: 3.45846185e-23 - art_sys_91: -1.14477159e-16 - art_sys_92: -2.07277134e-26 - art_sys_93: 1.14888940e-26 - art_sys_94: 1.15685944e-21 - art_sys_95: 3.02992687e-22 - art_sys_96: 1.15123885e-16 - art_sys_97: 3.57478103e-18 - art_sys_98: 1.69517032e-22 - art_sys_99: 9.25053326e-18 - art_sys_100: -6.88925450e-23 - art_sys_101: -9.70246731e-18 - art_sys_102: -1.69651970e-20 - art_sys_103: -7.88243596e-20 - art_sys_104: 4.50987926e-19 - art_sys_105: 5.15354684e-21 - art_sys_106: 3.75933120e-19 - art_sys_107: 5.04440399e-20 - art_sys_108: 8.37635624e-21 - art_sys_109: -3.26377738e-22 - art_sys_110: -2.41741530e-20 - art_sys_111: 2.08457482e-20 - art_sys_112: -1.33485686e-13 - art_sys_113: 1.35079344e-18 - art_sys_114: -6.30272030e-23 - art_sys_115: 3.05816614e-20 - art_sys_116: -2.80697137e-20 - art_sys_117: -3.28053499e-23 - art_sys_118: -3.58399215e-20 - art_sys_119: -4.22534854e-20 - art_sys_120: -2.76756968e-14 - art_sys_121: 2.75081406e-23 - art_sys_122: 6.31402020e-20 - art_sys_123: 1.57690652e-20 - art_sys_124: 7.09630357e-21 - art_sys_125: -4.57156926e-23 - art_sys_126: -5.48938662e-15 - art_sys_127: -1.84575434e-20 - art_sys_128: -6.52475754e-20 - art_sys_129: -1.16784094e-22 - art_sys_130: 5.71254476e-19 - art_sys_131: 1.62569575e-21 - art_sys_132: 5.17156165e-19 - art_sys_133: -1.26965563e-18 - art_sys_134: -8.78066181e-16 - art_sys_135: -2.22273634e-19 - art_sys_136: -4.79412600e-21 - art_sys_137: 1.96409634e-19 - art_sys_138: -1.05429842e-20 - art_sys_139: -2.97549161e-18 - art_sys_140: 1.01829913e-21 - art_sys_141: -1.19293851e-16 - art_sys_142: 4.97732038e-21 - art_sys_143: 2.10598175e-19 - art_sys_144: -6.42464085e-21 - art_sys_145: -1.51128385e-19 - art_sys_146: -1.55541904e-20 - art_sys_147: 1.09907124e-22 - art_sys_148: 5.67020306e-23 - art_sys_149: -3.56972399e-22 - art_sys_150: -7.29669805e-20 - art_sys_151: -2.33027410e-18 - art_sys_152: -3.79069894e-22 - art_sys_153: -1.96975774e-19 - art_sys_154: -1.04257640e-20 - art_sys_155: 8.75383062e-22 - art_sys_156: -0.0 - art_sys_157: -4.76256927e-21 - art_sys_158: -0.0 - art_sys_159: -3.47151864e-20 - art_sys_160: 3.29171486e-23 - art_sys_161: 4.81239654e-21 - art_sys_162: 4.81239654e-21 - art_sys_163: 4.21713979e-21 - art_sys_164: 4.21713979e-21 - art_sys_165: -4.87937514e-35 - art_sys_166: 1.62352117e-35 - art_sys_167: 0.0 - art_sys_168: -3.40452984e-30 - art_sys_169: -2.90638950e-30 - art_sys_170: -1.40133128e-30 - art_sys_171: -9.82457055e-31 - art_sys_172: 2.69091244e-31 - art_sys_173: 1.28603511e-32 - art_sys_174: 2.77700315e-32 - art_sys_175: 1.51913189e-32 - art_sys_176: -6.23114848e-33 - art_sys_177: 2.73258705e-33 - art_sys_178: 3.95536752e-33 - art_sys_179: -2.84134901e-34 - art_sys_180: -9.14153290e-34 - art_sys_181: 1.29921322e-33 - art_sys_182: -4.61810783e-34 - art_sys_183: 3.17390168e-36 - art_sys_184: 4.18178850e-36 - art_sys_185: -1.27726760e-36 + art_sys_55: -7.11991812e-17 + art_sys_56: 3.59152939e-17 + art_sys_57: -7.07165013e-19 + art_sys_58: -6.86342397e-20 + art_sys_59: 2.89153991e-21 + art_sys_60: -1.59107025e-20 + art_sys_61: 9.03912253e-21 + art_sys_62: 3.26450513e-23 + art_sys_63: -3.04453895e-22 + art_sys_64: -3.80729438e-23 + art_sys_65: 1.64383463e-23 + art_sys_66: 5.01358128e-19 + art_sys_67: 1.01186222e-23 + art_sys_68: 7.03498024e-24 + art_sys_69: 1.81819721e-18 + art_sys_70: 8.87822775e-16 + art_sys_71: 1.07284733e-09 + art_sys_72: 5.92569200e-18 + art_sys_73: 5.07182450e-22 + art_sys_74: 2.58468700e-10 + art_sys_75: 2.91561299e-23 + art_sys_76: 3.36275873e-21 + art_sys_77: -1.60452499e-21 + art_sys_78: 9.24179743e-23 + art_sys_79: 1.47746476e-20 + art_sys_80: 6.14858385e-11 + art_sys_81: -1.79544900e-25 + art_sys_82: 1.93387145e-24 + art_sys_83: -1.95783259e-25 + art_sys_84: -3.40612522e-23 + art_sys_85: -1.24186391e-25 + art_sys_86: -7.88049681e-26 + art_sys_87: -2.28763511e-22 + art_sys_88: -9.14716879e-22 + art_sys_89: 2.84646845e-23 + art_sys_90: -1.52008248e-16 + art_sys_91: -7.61649445e-17 + art_sys_92: 1.30363468e-21 + art_sys_93: -2.69148839e-17 + art_sys_94: -8.57494604e-21 + art_sys_95: 6.38849747e-19 + art_sys_96: -5.80821212e-23 + art_sys_97: 6.68886729e-19 + art_sys_98: -9.65479297e-19 + art_sys_99: 8.74412291e-21 + art_sys_100: 2.95296054e-20 + art_sys_101: 4.04695725e-19 + art_sys_102: 7.35771770e-22 + art_sys_103: 1.32483428e-18 + art_sys_104: 7.00504417e-20 + art_sys_105: -1.89618150e-23 + art_sys_106: 3.87308165e-19 + art_sys_107: 1.29425305e-19 + art_sys_108: 9.22738286e-20 + art_sys_109: -1.33486726e-13 + art_sys_110: -2.22012726e-23 + art_sys_111: -2.56680182e-18 + art_sys_112: 4.88948249e-19 + art_sys_113: -1.53165678e-23 + art_sys_114: 1.15110391e-18 + art_sys_115: 3.84471162e-20 + art_sys_116: -2.76767120e-14 + art_sys_117: 8.29543046e-25 + art_sys_118: 2.00138953e-18 + art_sys_119: 4.83565944e-21 + art_sys_120: -1.15738167e-18 + art_sys_121: 5.48940298e-15 + art_sys_122: 9.47832465e-20 + art_sys_123: 3.12988594e-19 + art_sys_124: 1.30748484e-18 + art_sys_125: -5.56792601e-19 + art_sys_126: -8.77735412e-16 + art_sys_127: 8.68523239e-20 + art_sys_128: -2.51033533e-19 + art_sys_129: 1.67938299e-20 + art_sys_130: -1.03075820e-18 + art_sys_131: -9.94117529e-19 + art_sys_132: -2.77268589e-19 + art_sys_133: 1.19188197e-16 + art_sys_134: -4.33963681e-18 + art_sys_135: 3.04155796e-19 + art_sys_136: -3.89429556e-19 + art_sys_137: 2.01588597e-20 + art_sys_138: 9.44963354e-19 + art_sys_139: -2.59231889e-18 + art_sys_140: 2.11116869e-21 + art_sys_141: -1.18559271e-19 + art_sys_142: 0.0 + art_sys_143: 7.61872703e-20 + art_sys_144: 1.59897439e-19 + art_sys_145: 2.15264266e-19 + art_sys_146: -6.39009928e-23 + art_sys_147: 1.21999150e-22 + art_sys_148: 2.99604208e-22 + art_sys_149: 2.20283108e-22 + art_sys_150: 7.38765390e-22 + art_sys_151: 1.34818826e-21 + art_sys_152: -7.90908112e-22 + art_sys_153: -1.51171736e-23 + art_sys_154: 1.20488882e-22 + art_sys_155: 1.61061708e-22 + art_sys_156: 5.11878142e-22 + art_sys_157: 1.23880135e-21 + art_sys_158: 0.0 + art_sys_159: -1.06307677e-19 + art_sys_160: -1.06307677e-19 + art_sys_161: 6.96833429e-21 + art_sys_162: -2.59736435e-33 + art_sys_163: -0.0 + art_sys_164: -1.57738353e-33 + art_sys_165: -1.31660872e-29 + art_sys_166: -2.81208338e-29 + art_sys_167: -9.40733811e-30 + art_sys_168: 7.82606396e-31 + art_sys_169: 2.80334835e-31 + art_sys_170: -7.55604420e-31 + art_sys_171: -1.24727629e-31 + art_sys_172: -7.10264031e-31 + art_sys_173: 5.81578573e-32 + art_sys_174: 1.17764862e-34 + art_sys_175: -1.44052975e-32 + art_sys_176: -1.45545491e-32 + art_sys_177: 2.59688434e-33 + art_sys_178: 3.57825356e-34 + art_sys_179: -2.77476156e-35 + art_sys_180: 4.18712100e-34 + art_sys_181: -9.01704867e-35 + art_sys_182: 5.19734194e-35 + art_sys_183: -3.55809073e-37 + art_sys_184: -4.92916942e-37 + art_sys_185: -8.31913339e-35 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -56985,190 +56985,190 @@ bins: luminosity_uncertainty: 4.15841400e+01 uncorrelated_uncertainty: 1.59939000e+01 - art_sys_1: -7.51836422e-16 - art_sys_2: -2.36054835e-15 + art_sys_2: -2.34122295e-15 art_sys_3: 7.63076315e-01 - art_sys_4: 1.68234238e-14 + art_sys_4: 6.96034821e-15 art_sys_5: -2.05309978e+00 - art_sys_6: 3.50898031e-15 - art_sys_7: -5.29359626e-15 + art_sys_6: 3.98323905e-15 + art_sys_7: -7.55300999e-15 art_sys_8: 1.21291106e+00 - art_sys_9: 1.86053891e-15 - art_sys_10: 6.24475140e-16 + art_sys_9: 4.70376131e-15 + art_sys_10: 6.03251455e-16 art_sys_11: 1.87882270e+00 - art_sys_12: 2.43820942e-15 - art_sys_13: 2.17742841e-13 - art_sys_14: 1.55372540e-14 - art_sys_15: -3.24579345e+00 - art_sys_16: 3.86289103e-15 - art_sys_17: 6.07551789e-15 + art_sys_12: 2.04102738e-16 + art_sys_13: -2.17389777e-13 + art_sys_14: -1.25280090e-14 + art_sys_15: 3.24579345e+00 + art_sys_16: -3.79578136e-15 + art_sys_17: 6.29691458e-15 art_sys_18: -5.45311693e-01 - art_sys_19: -5.55384590e-15 - art_sys_20: -8.51401636e-15 + art_sys_19: 6.05934175e-15 + art_sys_20: -6.93468872e-15 art_sys_21: 5.43312893e-01 - art_sys_22: 2.31700927e-15 - art_sys_23: -7.29765553e-15 + art_sys_22: 1.88041313e-15 + art_sys_23: -7.20051938e-15 art_sys_24: 1.50225105e-01 - art_sys_25: 1.91758035e-16 - art_sys_26: 8.89139151e-16 - art_sys_27: 6.02977710e-04 - art_sys_28: 3.89833081e-15 - art_sys_29: 1.62072006e-04 - art_sys_30: 7.05977347e-16 - art_sys_31: 2.80724536e-15 - art_sys_32: -9.61306403e-05 - art_sys_33: 4.56701106e-17 - art_sys_34: -2.75119983e-17 - art_sys_35: -2.08704780e-15 - art_sys_36: 2.80482918e-17 - art_sys_37: 1.29339216e-17 - art_sys_38: 1.56024577e-18 - art_sys_39: 1.95916840e-20 - art_sys_40: 3.60790949e-19 - art_sys_41: -2.05867179e-20 - art_sys_42: 9.99461762e-20 - art_sys_43: -1.53244822e-19 - art_sys_44: -2.57201736e-18 - art_sys_45: 2.75582974e-19 - art_sys_46: -1.52943649e-19 - art_sys_47: 3.31179481e-06 - art_sys_48: 1.45966564e-14 - art_sys_49: -8.12363154e-07 - art_sys_50: -1.68436090e-20 - art_sys_51: 2.57544936e-20 - art_sys_52: -2.27233147e-16 - art_sys_53: -6.04926047e-16 + art_sys_25: -2.05164715e-16 + art_sys_26: 8.88458644e-16 + art_sys_27: -6.02977710e-04 + art_sys_28: -6.90132159e-16 + art_sys_29: -1.29674600e-16 + art_sys_30: 1.04308957e-16 + art_sys_31: -7.21051046e-17 + art_sys_32: 6.23476214e-18 + art_sys_33: -7.37042614e-18 + art_sys_34: -7.30479205e-19 + art_sys_35: 2.44534365e-18 + art_sys_36: 1.62072006e-04 + art_sys_37: 7.10740439e-16 + art_sys_38: -1.55842550e-18 + art_sys_39: -1.88506209e-15 + art_sys_40: -9.61306403e-05 + art_sys_41: -6.78050849e-17 + art_sys_42: 3.76168121e-18 + art_sys_43: -3.52603981e-17 + art_sys_44: -5.38445694e-19 + art_sys_45: -2.20120789e-15 + art_sys_46: 3.31179481e-06 + art_sys_47: 7.07969920e-20 + art_sys_48: 9.76265614e-16 + art_sys_49: -8.12363155e-07 + art_sys_50: 1.63457592e-20 + art_sys_51: -1.10151118e-19 + art_sys_52: -4.80631496e-16 + art_sys_53: 5.43906828e-16 art_sys_54: -2.71999838e-07 - art_sys_55: -9.99140315e-17 - art_sys_56: 2.82177593e-16 - art_sys_57: -3.23109998e-20 - art_sys_58: -7.45837272e-22 - art_sys_59: -1.12420170e-15 - art_sys_60: -7.68092746e-09 - art_sys_61: 2.10786969e-19 - art_sys_62: -1.37306417e-17 - art_sys_63: 1.47845156e-09 - art_sys_64: 2.46141853e-18 - art_sys_65: -1.05200594e-19 - art_sys_66: -1.30914647e-19 - art_sys_67: 2.56127935e-20 - art_sys_68: 5.34452946e-22 - art_sys_69: -3.67111437e-22 - art_sys_70: -9.71094297e-23 - art_sys_71: 2.47838373e-23 - art_sys_72: 2.72480824e-23 - art_sys_73: -1.56597250e-23 - art_sys_74: 4.76489319e-20 - art_sys_75: 4.37953391e-24 - art_sys_76: 4.39377226e-21 - art_sys_77: 1.31616813e-20 - art_sys_78: 4.02258620e-22 - art_sys_79: 4.48940714e-23 - art_sys_80: 1.44739707e-24 - art_sys_81: -5.45004160e-19 - art_sys_82: 3.95066616e-10 - art_sys_83: 6.94709570e-24 - art_sys_84: 3.32721282e-24 - art_sys_85: -3.54997496e-24 - art_sys_86: -6.59390175e-25 - art_sys_87: 1.81797134e-26 - art_sys_88: 1.89804305e-20 - art_sys_89: 3.56974334e-27 - art_sys_90: -1.10232453e-22 - art_sys_91: 7.02368006e-16 - art_sys_92: 1.16065406e-25 - art_sys_93: -6.42459273e-26 - art_sys_94: -6.99167458e-21 - art_sys_95: 3.55006967e-22 - art_sys_96: -7.48660449e-16 - art_sys_97: -2.05986420e-17 - art_sys_98: 4.08602037e-23 - art_sys_99: -5.85506219e-17 - art_sys_100: -2.42925748e-23 - art_sys_101: 6.21748755e-17 - art_sys_102: 9.56286746e-20 - art_sys_103: 5.18656665e-19 - art_sys_104: -1.27238390e-18 - art_sys_105: -2.73197367e-20 - art_sys_106: -2.89276581e-18 - art_sys_107: -2.43351331e-19 - art_sys_108: -4.44060397e-20 - art_sys_109: 1.72371141e-21 - art_sys_110: 4.83742210e-19 - art_sys_111: 7.25430016e-20 - art_sys_112: 7.60612584e-13 - art_sys_113: -7.99285167e-18 - art_sys_114: 3.35173443e-22 - art_sys_115: -1.46837943e-19 - art_sys_116: 1.59470613e-19 - art_sys_117: 1.67897732e-22 - art_sys_118: 1.43033930e-19 - art_sys_119: 2.80542634e-19 - art_sys_120: 1.33551280e-13 - art_sys_121: -1.48480493e-22 - art_sys_122: -3.16390409e-19 - art_sys_123: -8.08172426e-20 - art_sys_124: -6.98706379e-20 - art_sys_125: 2.77653696e-22 - art_sys_126: 3.31751406e-14 - art_sys_127: 8.64418164e-20 - art_sys_128: 3.18380347e-19 - art_sys_129: 6.86760574e-22 - art_sys_130: -3.02988261e-18 - art_sys_131: -9.56132582e-21 - art_sys_132: -2.48329004e-18 - art_sys_133: 6.72528842e-18 - art_sys_134: 4.50859452e-15 - art_sys_135: 1.29681433e-18 - art_sys_136: 2.82661728e-20 - art_sys_137: -1.04829901e-18 - art_sys_138: 5.37914084e-20 - art_sys_139: 1.57775527e-17 - art_sys_140: -5.87290435e-21 - art_sys_141: 6.32413161e-16 - art_sys_142: -1.69625651e-20 - art_sys_143: -1.11609814e-18 - art_sys_144: 3.53646183e-20 - art_sys_145: 7.71674025e-19 - art_sys_146: 8.26871250e-20 - art_sys_147: -5.39252773e-22 - art_sys_148: -2.39414094e-22 - art_sys_149: 2.75273634e-21 - art_sys_150: 4.02576440e-19 - art_sys_151: 1.37756828e-17 - art_sys_152: 2.46555347e-21 - art_sys_153: 1.09148313e-18 - art_sys_154: 6.08091283e-20 - art_sys_155: -4.95196883e-21 - art_sys_156: 0.0 - art_sys_157: 2.41566876e-20 - art_sys_158: 0.0 - art_sys_159: 1.79301250e-19 - art_sys_160: -8.20930837e-22 - art_sys_161: -2.47985838e-20 - art_sys_162: -2.47985838e-20 - art_sys_163: -2.20494650e-20 - art_sys_164: -2.20494650e-20 - art_sys_165: 2.54492035e-34 - art_sys_166: -8.46608371e-35 - art_sys_167: -0.0 - art_sys_168: 1.89709032e-29 - art_sys_169: 1.71111170e-29 - art_sys_170: 1.01279750e-29 - art_sys_171: 5.74171702e-30 - art_sys_172: -1.55903471e-30 - art_sys_173: -5.20508284e-32 - art_sys_174: -1.59148189e-31 - art_sys_175: -8.68072930e-32 - art_sys_176: 3.55006962e-32 - art_sys_177: -1.57078791e-32 - art_sys_178: -2.24379331e-32 - art_sys_179: 1.59959961e-33 - art_sys_180: 4.74100977e-33 - art_sys_181: -7.48585514e-33 - art_sys_182: 2.72303185e-33 - art_sys_183: -1.89342233e-35 - art_sys_184: -2.25404657e-35 - art_sys_185: 6.62545960e-36 + art_sys_55: 3.36203125e-16 + art_sys_56: -2.16813606e-16 + art_sys_57: 3.81421636e-18 + art_sys_58: 3.65979474e-19 + art_sys_59: -6.59548642e-20 + art_sys_60: 8.43825199e-20 + art_sys_61: -4.93720861e-20 + art_sys_62: -4.64420562e-22 + art_sys_63: 1.84781691e-21 + art_sys_64: 2.75323565e-22 + art_sys_65: -9.13185187e-23 + art_sys_66: -3.58174210e-18 + art_sys_67: -8.80846531e-23 + art_sys_68: -5.77497007e-23 + art_sys_69: -1.17769371e-17 + art_sys_70: -6.45979512e-15 + art_sys_71: -7.68092807e-09 + art_sys_72: -4.16848728e-17 + art_sys_73: 1.62282778e-21 + art_sys_74: -1.47845060e-09 + art_sys_75: -2.00326601e-22 + art_sys_76: -2.16113666e-20 + art_sys_77: 1.03180353e-20 + art_sys_78: -5.89819683e-22 + art_sys_79: -9.49433496e-20 + art_sys_80: -3.95065269e-10 + art_sys_81: 1.34992122e-24 + art_sys_82: -1.11275025e-23 + art_sys_83: 1.19038588e-24 + art_sys_84: 1.76522793e-22 + art_sys_85: 6.09976921e-25 + art_sys_86: 1.92770633e-25 + art_sys_87: 1.41288096e-21 + art_sys_88: 5.50684509e-21 + art_sys_89: -9.75842305e-23 + art_sys_90: 7.42754366e-16 + art_sys_91: 4.71726610e-16 + art_sys_92: -7.62071348e-21 + art_sys_93: 1.72997865e-16 + art_sys_94: 4.89649727e-20 + art_sys_95: -3.75319925e-18 + art_sys_96: 2.94842005e-22 + art_sys_97: -3.81198500e-18 + art_sys_98: 6.30058871e-18 + art_sys_99: 1.08274379e-19 + art_sys_100: -1.69488602e-19 + art_sys_101: -8.93052210e-19 + art_sys_102: -3.90090866e-21 + art_sys_103: -6.37571238e-18 + art_sys_104: 1.63645039e-19 + art_sys_105: 1.14707356e-22 + art_sys_106: -2.35599942e-18 + art_sys_107: -7.90482410e-19 + art_sys_108: -4.41786298e-19 + art_sys_109: 7.60618522e-13 + art_sys_110: 1.29376372e-22 + art_sys_111: 1.46703171e-17 + art_sys_112: -2.46319034e-18 + art_sys_113: 8.91569606e-23 + art_sys_114: -6.59392898e-18 + art_sys_115: -1.97053698e-19 + art_sys_116: 1.33556161e-13 + art_sys_117: -4.92749728e-24 + art_sys_118: -1.14387768e-17 + art_sys_119: -2.47702909e-20 + art_sys_120: 6.65692149e-18 + art_sys_121: -3.31752759e-14 + art_sys_122: -2.86516187e-19 + art_sys_123: -1.65822487e-18 + art_sys_124: -6.32300920e-18 + art_sys_125: 2.75355943e-18 + art_sys_126: 4.50690178e-15 + art_sys_127: -5.06876591e-19 + art_sys_128: 1.33406716e-18 + art_sys_129: -9.43609244e-20 + art_sys_130: 5.47213203e-18 + art_sys_131: 5.26623146e-18 + art_sys_132: 1.39496668e-18 + art_sys_133: -6.31866187e-16 + art_sys_134: 2.29863695e-17 + art_sys_135: -1.54521965e-18 + art_sys_136: 2.12671244e-18 + art_sys_137: -8.52470562e-20 + art_sys_138: -5.61934141e-18 + art_sys_139: 1.51650337e-17 + art_sys_140: -1.15414498e-20 + art_sys_141: 8.32874841e-19 + art_sys_142: -0.0 + art_sys_143: -4.10658598e-19 + art_sys_144: -9.54001015e-19 + art_sys_145: -1.35220543e-18 + art_sys_146: 3.77768510e-22 + art_sys_147: -7.21802435e-22 + art_sys_148: -1.69356047e-21 + art_sys_149: -1.28689026e-21 + art_sys_150: -4.42991125e-21 + art_sys_151: -7.61051424e-21 + art_sys_152: 4.18163897e-21 + art_sys_153: 7.99963744e-23 + art_sys_154: -6.16259448e-22 + art_sys_155: -1.07093291e-21 + art_sys_156: -3.33139953e-21 + art_sys_157: -7.32170618e-21 + art_sys_158: -0.0 + art_sys_159: 5.95367096e-19 + art_sys_160: 5.95367096e-19 + art_sys_161: -3.92720275e-20 + art_sys_162: 1.46313860e-32 + art_sys_163: 0.0 + art_sys_164: 8.88345164e-33 + art_sys_165: 7.89908511e-29 + art_sys_166: 1.66203938e-28 + art_sys_167: 5.59659348e-29 + art_sys_168: -4.40105858e-30 + art_sys_169: -1.53926337e-30 + art_sys_170: 4.25538317e-30 + art_sys_171: 9.57928396e-31 + art_sys_172: 4.64656770e-30 + art_sys_173: -3.71035757e-31 + art_sys_174: -8.12187667e-34 + art_sys_175: 8.34107310e-32 + art_sys_176: 1.08021129e-31 + art_sys_177: -1.84843050e-32 + art_sys_178: -2.13429035e-33 + art_sys_179: 3.58192212e-34 + art_sys_180: -2.25220579e-33 + art_sys_181: 5.50586949e-34 + art_sys_182: -3.20579304e-34 + art_sys_183: 1.50092302e-36 + art_sys_184: 2.62030507e-36 + art_sys_185: 4.69217071e-34 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -57276,190 +57276,190 @@ bins: luminosity_uncertainty: 18.19883 uncorrelated_uncertainty: 6.99955 - art_sys_1: 1.63209936e-16 - art_sys_2: -1.15220613e-15 + art_sys_2: -1.15955722e-15 art_sys_3: -3.28918405e-01 - art_sys_4: 7.17033717e-15 + art_sys_4: 5.73700133e-15 art_sys_5: -6.13796271e-01 - art_sys_6: -2.94920743e-15 - art_sys_7: -6.81430586e-15 + art_sys_6: -2.79295938e-15 + art_sys_7: -6.55594503e-15 art_sys_8: -1.56902250e+00 - art_sys_9: -2.02683051e-16 - art_sys_10: -1.61031920e-15 + art_sys_9: -8.58623765e-16 + art_sys_10: -1.59505027e-15 art_sys_11: -4.73037341e-01 - art_sys_12: -2.43041768e-15 - art_sys_13: 1.14453742e-13 - art_sys_14: -1.12378907e-15 - art_sys_15: -1.51683953e+00 - art_sys_16: 9.89644452e-16 - art_sys_17: -1.23916338e-14 + art_sys_12: -3.34506639e-15 + art_sys_13: -1.14542259e-13 + art_sys_14: -7.01131522e-16 + art_sys_15: 1.51683953e+00 + art_sys_16: -1.11833545e-15 + art_sys_17: -1.20238432e-14 art_sys_18: 1.68284698e+00 - art_sys_19: 5.56882181e-14 - art_sys_20: 7.67607065e-16 + art_sys_19: -5.64665035e-14 + art_sys_20: 4.15486480e-16 art_sys_21: -7.63362276e-01 - art_sys_22: -2.39978832e-15 - art_sys_23: 5.59992247e-16 + art_sys_22: -2.02703018e-15 + art_sys_23: 4.89627712e-16 art_sys_24: -3.37594815e-01 - art_sys_25: 1.67201333e-16 - art_sys_26: -8.54091570e-16 - art_sys_27: -1.49594306e-03 - art_sys_28: -8.16760180e-15 - art_sys_29: -4.50349103e-04 - art_sys_30: -6.36181730e-16 - art_sys_31: -5.46194619e-15 - art_sys_32: 3.04817001e-04 - art_sys_33: -5.05127956e-17 - art_sys_34: 1.47102539e-16 - art_sys_35: 3.84922281e-15 - art_sys_36: 1.91457537e-16 - art_sys_37: -2.65474625e-17 - art_sys_38: -6.78869913e-18 - art_sys_39: -5.45905181e-20 - art_sys_40: -7.89583953e-19 - art_sys_41: -1.04930081e-18 - art_sys_42: -8.23414807e-19 - art_sys_43: -1.72889040e-18 - art_sys_44: -6.05946893e-19 - art_sys_45: -1.11383943e-19 - art_sys_46: -1.18049161e-19 - art_sys_47: -9.59862599e-06 - art_sys_48: -5.31201429e-14 - art_sys_49: 2.80212827e-06 - art_sys_50: -1.21432527e-20 - art_sys_51: 3.05400991e-20 - art_sys_52: 7.83395826e-16 - art_sys_53: 2.16072152e-15 - art_sys_54: 9.23394922e-07 - art_sys_55: 1.95990063e-16 - art_sys_56: -9.23187049e-16 - art_sys_57: 9.77494880e-20 - art_sys_58: 1.04656207e-21 - art_sys_59: 3.51953761e-15 - art_sys_60: 2.41552909e-08 - art_sys_61: -7.31277003e-19 - art_sys_62: 3.93635981e-17 - art_sys_63: -5.64751070e-09 - art_sys_64: -7.90293517e-18 - art_sys_65: 3.92273785e-19 - art_sys_66: 3.18250382e-19 - art_sys_67: -6.76236500e-20 - art_sys_68: -1.36945893e-21 - art_sys_69: 1.24939005e-21 - art_sys_70: 3.00010049e-22 - art_sys_71: -8.51949539e-23 - art_sys_72: -9.11648945e-23 - art_sys_73: 5.01874225e-23 - art_sys_74: -1.63060196e-19 - art_sys_75: -1.77512711e-23 - art_sys_76: -1.53883600e-20 - art_sys_77: -4.49721469e-20 - art_sys_78: -1.28169864e-21 - art_sys_79: -1.58837898e-22 - art_sys_80: 2.01671564e-23 - art_sys_81: 1.85658845e-18 - art_sys_82: -1.34581978e-09 - art_sys_83: -4.06284993e-23 - art_sys_84: -1.67803590e-23 - art_sys_85: 1.94084998e-23 - art_sys_86: 3.35755426e-24 - art_sys_87: 6.16354676e-25 - art_sys_88: -1.02630278e-19 - art_sys_89: -2.57076030e-26 - art_sys_90: 2.19223663e-22 - art_sys_91: -2.50897448e-15 - art_sys_92: -6.33553895e-25 - art_sys_93: 3.43952199e-25 - art_sys_94: 3.08931552e-20 - art_sys_95: -3.51017849e-22 - art_sys_96: 2.54337006e-15 - art_sys_97: 6.99317306e-17 - art_sys_98: -5.71827309e-23 - art_sys_99: 2.00566813e-16 - art_sys_100: -6.72515937e-23 - art_sys_101: -2.13224240e-16 - art_sys_102: -5.13155908e-19 - art_sys_103: -1.76052442e-18 - art_sys_104: 2.81501452e-18 - art_sys_105: 1.29631636e-19 - art_sys_106: 9.59696494e-18 - art_sys_107: 1.12593863e-18 - art_sys_108: 2.10699785e-19 - art_sys_109: -8.21620552e-21 - art_sys_110: -4.10128970e-18 - art_sys_111: 1.09483381e-18 - art_sys_112: -4.11314344e-12 - art_sys_113: 2.71411860e-17 - art_sys_114: -1.58428361e-21 - art_sys_115: 1.75724451e-19 - art_sys_116: -7.25201115e-19 - art_sys_117: -8.31421464e-22 - art_sys_118: -4.78688443e-19 - art_sys_119: -1.17811501e-18 - art_sys_120: -6.17780211e-13 - art_sys_121: 6.89125981e-22 - art_sys_122: 1.51223575e-18 - art_sys_123: 3.92650422e-19 - art_sys_124: 4.90182312e-19 - art_sys_125: -1.11317476e-21 - art_sys_126: -1.46601571e-13 - art_sys_127: -4.75736544e-19 - art_sys_128: -1.51280873e-18 - art_sys_129: -2.87047285e-21 - art_sys_130: 1.43685482e-17 - art_sys_131: 3.99566101e-20 - art_sys_132: 1.14832550e-17 - art_sys_133: -3.19453030e-17 - art_sys_134: -2.18773787e-14 - art_sys_135: -5.77374203e-18 - art_sys_136: -1.17739968e-19 - art_sys_137: 4.93423058e-18 - art_sys_138: -2.66475996e-19 - art_sys_139: -7.48430949e-17 - art_sys_140: 2.52174290e-20 - art_sys_141: -3.00076570e-15 - art_sys_142: 1.04807149e-19 - art_sys_143: 5.29709029e-18 - art_sys_144: -1.61532380e-19 - art_sys_145: -3.75851097e-18 - art_sys_146: -3.91735914e-19 - art_sys_147: 2.77497372e-21 - art_sys_148: 1.45274287e-21 - art_sys_149: -8.45759716e-23 - art_sys_150: -1.82333342e-18 - art_sys_151: -5.71747217e-17 - art_sys_152: -9.17671755e-21 - art_sys_153: -4.90705557e-18 - art_sys_154: -2.64073952e-19 - art_sys_155: 2.15351055e-20 - art_sys_156: -0.0 - art_sys_157: -1.18395512e-19 - art_sys_158: -0.0 - art_sys_159: -8.72302465e-19 - art_sys_160: -2.63305406e-22 - art_sys_161: 1.20347651e-19 - art_sys_162: 1.20347651e-19 - art_sys_163: 1.05226617e-19 - art_sys_164: 1.05226617e-19 - art_sys_165: -1.21801811e-33 - art_sys_166: 4.05249774e-34 - art_sys_167: 0.0 - art_sys_168: -8.40515189e-29 - art_sys_169: -7.11449095e-29 - art_sys_170: -3.08159163e-29 - art_sys_171: -2.38419257e-29 - art_sys_172: 6.90408545e-30 - art_sys_173: 3.96228229e-31 - art_sys_174: 6.60248793e-31 - art_sys_175: 3.76615766e-31 - art_sys_176: -1.55932665e-31 - art_sys_177: 6.81603392e-32 - art_sys_178: 9.93661723e-32 - art_sys_179: -6.98479657e-33 - art_sys_180: -2.29233174e-32 - art_sys_181: 3.24208095e-32 - art_sys_182: -1.09987385e-32 - art_sys_183: 7.95899053e-35 - art_sys_184: 1.05142642e-34 - art_sys_185: -3.21565347e-35 + art_sys_25: -1.47915526e-16 + art_sys_26: -8.52695077e-16 + art_sys_27: 1.49594306e-03 + art_sys_28: 3.93678287e-15 + art_sys_29: 3.22619738e-16 + art_sys_30: -2.75179144e-16 + art_sys_31: 2.18653461e-16 + art_sys_32: -1.94664598e-17 + art_sys_33: 2.20414584e-17 + art_sys_34: 1.27979064e-18 + art_sys_35: -5.59381758e-18 + art_sys_36: -4.50349103e-04 + art_sys_37: -6.45037931e-16 + art_sys_38: 1.80333848e-18 + art_sys_39: 2.23567938e-15 + art_sys_40: 3.04817001e-04 + art_sys_41: 1.40980308e-16 + art_sys_42: -5.83946854e-18 + art_sys_43: 2.42121969e-17 + art_sys_44: 1.51434200e-18 + art_sys_45: 4.13807076e-15 + art_sys_46: -9.59862598e-06 + art_sys_47: -4.05499574e-20 + art_sys_48: -3.76222127e-15 + art_sys_49: 2.80212828e-06 + art_sys_50: 2.89962313e-21 + art_sys_51: -1.04289132e-19 + art_sys_52: 1.74243730e-15 + art_sys_53: -1.38944665e-15 + art_sys_54: 9.23394923e-07 + art_sys_55: -9.97819146e-16 + art_sys_56: 7.00856141e-16 + art_sys_57: -1.16024152e-17 + art_sys_58: -1.11492810e-18 + art_sys_59: 9.70239379e-20 + art_sys_60: 1.36278208e-19 + art_sys_61: 1.44966342e-19 + art_sys_62: 1.37369794e-21 + art_sys_63: -6.60031502e-21 + art_sys_64: -8.64430071e-22 + art_sys_65: 3.18343261e-22 + art_sys_66: 1.12698946e-17 + art_sys_67: 2.53673545e-22 + art_sys_68: 1.62067349e-22 + art_sys_69: 3.98133079e-17 + art_sys_70: 2.00369751e-14 + art_sys_71: 2.41552936e-08 + art_sys_72: 1.23218657e-16 + art_sys_73: -9.97567862e-22 + art_sys_74: 5.64750709e-09 + art_sys_75: 6.13195138e-22 + art_sys_76: 7.33280907e-20 + art_sys_77: -3.48527424e-20 + art_sys_78: 2.01525665e-21 + art_sys_79: 3.23519443e-19 + art_sys_80: 1.34581516e-09 + art_sys_81: -7.69171706e-24 + art_sys_82: 6.09756227e-23 + art_sys_83: -6.68751841e-24 + art_sys_84: -5.83341545e-22 + art_sys_85: -3.20399165e-24 + art_sys_86: -5.53594551e-25 + art_sys_87: -7.89561100e-21 + art_sys_88: -2.43174757e-20 + art_sys_89: 6.11727820e-22 + art_sys_90: -3.30475484e-15 + art_sys_91: -1.68813867e-15 + art_sys_92: 4.04893184e-20 + art_sys_93: -5.89453817e-16 + art_sys_94: -2.65292813e-19 + art_sys_95: 1.25850074e-17 + art_sys_96: -1.43984516e-21 + art_sys_97: 2.06150931e-17 + art_sys_98: -2.23300398e-17 + art_sys_99: -3.65146295e-19 + art_sys_100: 9.19932953e-19 + art_sys_101: 1.33514699e-18 + art_sys_102: 1.85077988e-20 + art_sys_103: 2.93997263e-17 + art_sys_104: 2.50603543e-20 + art_sys_105: -4.62527991e-22 + art_sys_106: 1.21280593e-17 + art_sys_107: 2.64916739e-18 + art_sys_108: 2.04763182e-18 + art_sys_109: -4.11317561e-12 + art_sys_110: -5.47580558e-22 + art_sys_111: -7.99202050e-17 + art_sys_112: 1.20888071e-17 + art_sys_113: -3.77995081e-22 + art_sys_114: 3.58875509e-17 + art_sys_115: 9.57212784e-19 + art_sys_116: -6.17802858e-13 + art_sys_117: 2.02588620e-23 + art_sys_118: 6.20306102e-17 + art_sys_119: 1.20399722e-19 + art_sys_120: -3.62528535e-17 + art_sys_121: 1.46602059e-13 + art_sys_122: 5.22918112e-19 + art_sys_123: 7.87467212e-18 + art_sys_124: 2.94205395e-17 + art_sys_125: -1.27800812e-17 + art_sys_126: -2.18691498e-14 + art_sys_127: 2.46332942e-18 + art_sys_128: -6.31217228e-18 + art_sys_129: 4.17626314e-19 + art_sys_130: -2.59198301e-17 + art_sys_131: -2.50097331e-17 + art_sys_132: -6.80639905e-18 + art_sys_133: 2.99809471e-15 + art_sys_134: -1.09180536e-16 + art_sys_135: 7.54417280e-18 + art_sys_136: -9.73275165e-18 + art_sys_137: 4.73639613e-19 + art_sys_138: 2.31522153e-17 + art_sys_139: -6.37723808e-17 + art_sys_140: 4.07526487e-20 + art_sys_141: -2.78500121e-18 + art_sys_142: 0.0 + art_sys_143: 1.87949905e-18 + art_sys_144: 3.91233774e-18 + art_sys_145: 5.21004754e-18 + art_sys_146: -1.56843959e-21 + art_sys_147: 2.99409252e-21 + art_sys_148: 7.48060744e-21 + art_sys_149: 5.42939520e-21 + art_sys_150: 1.80627287e-20 + art_sys_151: 3.37528953e-20 + art_sys_152: -1.99433852e-20 + art_sys_153: -3.83675272e-22 + art_sys_154: 3.09742136e-21 + art_sys_155: 3.75115439e-21 + art_sys_156: 1.23116657e-20 + art_sys_157: 3.04884886e-20 + art_sys_158: 0.0 + art_sys_159: -2.64981359e-18 + art_sys_160: -2.64981359e-18 + art_sys_161: 1.73999572e-19 + art_sys_162: -6.48493626e-32 + art_sys_163: -0.0 + art_sys_164: -3.93817493e-32 + art_sys_165: -3.21846240e-28 + art_sys_166: -6.91120528e-28 + art_sys_167: -2.31082321e-28 + art_sys_168: 1.97614270e-29 + art_sys_169: 7.23803637e-30 + art_sys_170: -1.89850008e-29 + art_sys_171: -1.69217214e-30 + art_sys_172: -1.37944037e-29 + art_sys_173: 3.62480967e-31 + art_sys_174: 2.77582483e-33 + art_sys_175: -2.07675070e-31 + art_sys_176: -3.49501399e-31 + art_sys_177: 6.94879467e-32 + art_sys_178: 9.58261406e-33 + art_sys_179: -4.15562871e-34 + art_sys_180: 1.09215758e-32 + art_sys_181: -2.11905195e-33 + art_sys_182: 1.22215053e-33 + art_sys_183: -9.74438479e-36 + art_sys_184: -1.24419597e-35 + art_sys_185: -2.07992541e-33 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -57567,190 +57567,190 @@ bins: luminosity_uncertainty: 8.093644 uncorrelated_uncertainty: 3.11294 - art_sys_1: 4.88427097e-17 - art_sys_2: 9.90750657e-17 + art_sys_2: 9.66407094e-17 art_sys_3: -6.27501474e-02 - art_sys_4: 1.53008772e-14 + art_sys_4: 1.60637396e-14 art_sys_5: 8.87627216e-02 - art_sys_6: -2.19626305e-16 - art_sys_7: 1.66410674e-14 + art_sys_6: -2.36352092e-16 + art_sys_7: 1.68793072e-14 art_sys_8: -8.08739447e-02 - art_sys_9: 5.01421725e-15 - art_sys_10: -2.31506674e-16 + art_sys_9: 4.74811945e-15 + art_sys_10: -2.30370511e-16 art_sys_11: -1.75463021e-01 - art_sys_12: 1.52921372e-16 - art_sys_13: -2.46167374e-14 - art_sys_14: -1.97958596e-15 - art_sys_15: 3.91384660e-01 - art_sys_16: 1.00557448e-15 - art_sys_17: 9.70727651e-15 + art_sys_12: 3.96571533e-16 + art_sys_13: 2.45838572e-14 + art_sys_14: 2.15357475e-15 + art_sys_15: -3.91384660e-01 + art_sys_16: 1.06427762e-15 + art_sys_17: 9.69862796e-15 art_sys_18: 1.70871368e+00 - art_sys_19: 3.68457538e-14 - art_sys_20: 1.29432833e-14 + art_sys_19: -3.57755467e-14 + art_sys_20: 1.28308363e-14 art_sys_21: 8.52318268e-01 - art_sys_22: -2.88081727e-16 - art_sys_23: 8.57577486e-15 + art_sys_22: -2.77553426e-16 + art_sys_23: 8.68557319e-15 art_sys_24: 4.28389318e-01 - art_sys_25: -8.67725684e-17 - art_sys_26: 6.98996688e-16 - art_sys_27: 8.22657569e-03 - art_sys_28: 2.05729626e-14 - art_sys_29: 1.55541242e-03 - art_sys_30: 5.11536881e-16 - art_sys_31: 1.14246856e-14 - art_sys_32: -1.18151027e-03 - art_sys_33: 1.53242554e-16 - art_sys_34: -7.75588878e-16 - art_sys_35: -7.16424992e-15 - art_sys_36: -1.05279240e-16 - art_sys_37: 1.43021715e-16 - art_sys_38: 2.74465182e-17 - art_sys_39: 4.32574672e-19 - art_sys_40: 3.59184345e-18 - art_sys_41: 3.41627336e-18 - art_sys_42: 1.68724985e-18 - art_sys_43: 4.49581118e-18 - art_sys_44: 4.51055700e-20 - art_sys_45: -6.52040407e-20 - art_sys_46: 2.72368886e-19 - art_sys_47: 4.20896437e-05 - art_sys_48: 1.83306125e-13 + art_sys_25: 6.68573722e-17 + art_sys_26: 6.93139098e-16 + art_sys_27: -8.22657569e-03 + art_sys_28: -2.09868922e-14 + art_sys_29: -7.43450614e-16 + art_sys_30: 1.02082610e-15 + art_sys_31: -8.33849584e-16 + art_sys_32: 7.50210189e-17 + art_sys_33: -7.91837154e-17 + art_sys_34: -7.08241020e-18 + art_sys_35: 1.85286811e-17 + art_sys_36: 1.55541242e-03 + art_sys_37: 5.35674424e-16 + art_sys_38: -2.96831492e-18 + art_sys_39: 9.12802679e-16 + art_sys_40: -1.18151027e-03 + art_sys_41: -5.02206376e-16 + art_sys_42: 1.72579438e-18 + art_sys_43: -3.30970168e-17 + art_sys_44: -3.27700753e-19 + art_sys_45: -8.44896822e-15 + art_sys_46: 4.20896436e-05 + art_sys_47: 8.21176777e-20 + art_sys_48: 1.38931363e-14 art_sys_49: -1.01574106e-05 - art_sys_50: 5.03928810e-20 - art_sys_51: 2.25364598e-19 - art_sys_52: -1.25803590e-15 - art_sys_53: -8.51076082e-15 + art_sys_50: 1.59780443e-20 + art_sys_51: -3.99037217e-21 + art_sys_52: -6.83607688e-15 + art_sys_53: 5.36180652e-15 art_sys_54: -3.61149274e-06 - art_sys_55: -4.72330417e-16 - art_sys_56: 3.27139749e-15 - art_sys_57: -1.80069897e-19 - art_sys_58: -6.58245441e-22 - art_sys_59: -1.38119443e-14 - art_sys_60: -9.43584435e-08 - art_sys_61: 2.82043382e-18 - art_sys_62: -1.17162783e-16 - art_sys_63: 1.97343730e-08 - art_sys_64: 3.07996090e-17 - art_sys_65: -1.61805611e-18 - art_sys_66: -9.78368607e-19 - art_sys_67: 1.88595967e-19 - art_sys_68: 4.45744400e-21 - art_sys_69: -4.35637003e-21 - art_sys_70: -1.02149856e-21 - art_sys_71: 3.27293707e-22 - art_sys_72: 3.42796397e-22 - art_sys_73: -1.82732019e-22 - art_sys_74: 6.28786253e-19 - art_sys_75: 7.49194837e-23 - art_sys_76: 5.67562264e-20 - art_sys_77: 1.72245309e-19 - art_sys_78: 5.39206913e-21 - art_sys_79: 6.58574400e-22 - art_sys_80: 6.69588892e-23 - art_sys_81: -7.14270308e-18 - art_sys_82: 5.17773656e-09 - art_sys_83: 6.80599020e-23 - art_sys_84: 3.91305130e-23 - art_sys_85: -3.32256113e-23 - art_sys_86: -7.23539115e-24 - art_sys_87: -1.12732042e-23 - art_sys_88: 1.88660415e-19 - art_sys_89: 2.23571343e-26 - art_sys_90: -3.50453026e-21 - art_sys_91: 9.22586643e-15 - art_sys_92: 1.16319765e-24 - art_sys_93: -6.66981387e-25 - art_sys_94: -8.38859068e-20 - art_sys_95: 9.13608985e-22 - art_sys_96: -9.83334720e-15 - art_sys_97: -2.75959483e-16 - art_sys_98: 4.35545567e-22 - art_sys_99: -7.69414914e-16 - art_sys_100: 1.67117019e-22 - art_sys_101: 8.18916988e-16 - art_sys_102: 9.80848338e-19 - art_sys_103: 7.05213565e-18 - art_sys_104: -6.04566527e-18 - art_sys_105: -3.61716281e-19 - art_sys_106: -3.79992488e-17 - art_sys_107: -3.63945981e-18 - art_sys_108: -5.87928849e-19 - art_sys_109: 2.28287562e-20 - art_sys_110: -4.75213606e-18 - art_sys_111: 1.86957953e-18 - art_sys_112: 7.55977149e-12 - art_sys_113: -1.06166440e-16 - art_sys_114: 4.43664647e-21 - art_sys_115: -2.90660478e-19 - art_sys_116: 2.00611416e-18 - art_sys_117: 2.22946377e-21 - art_sys_118: 6.45417169e-19 - art_sys_119: 3.15754012e-18 - art_sys_120: 1.99679619e-12 - art_sys_121: -1.96390498e-21 - art_sys_122: -2.81192271e-18 - art_sys_123: -1.08889863e-18 - art_sys_124: -7.62669508e-19 - art_sys_125: 3.64203375e-21 - art_sys_126: 3.97957192e-13 - art_sys_127: 1.15644851e-18 - art_sys_128: 4.94213317e-18 - art_sys_129: 9.01960933e-21 - art_sys_130: -4.01122815e-17 - art_sys_131: -1.25577737e-19 - art_sys_132: -3.72188808e-17 - art_sys_133: 8.90417509e-17 - art_sys_134: 6.06703914e-14 - art_sys_135: 1.60461598e-17 - art_sys_136: 3.71226036e-19 - art_sys_137: -1.38701266e-17 - art_sys_138: 7.05148098e-19 - art_sys_139: 2.08887546e-16 - art_sys_140: -7.70812848e-20 - art_sys_141: 8.37300441e-15 - art_sys_142: -3.21847255e-19 - art_sys_143: -1.47788771e-17 - art_sys_144: 4.64094057e-19 - art_sys_145: 1.04214617e-17 - art_sys_146: 1.09294372e-18 - art_sys_147: -7.25923978e-21 - art_sys_148: -3.31200414e-21 - art_sys_149: 5.80759562e-20 - art_sys_150: 5.30505222e-18 - art_sys_151: 1.80926319e-16 - art_sys_152: 3.19438168e-20 - art_sys_153: 1.44020956e-17 - art_sys_154: 7.10777088e-19 - art_sys_155: -6.56199458e-20 - art_sys_156: 0.0 - art_sys_157: 3.25245356e-19 - art_sys_158: 0.0 - art_sys_159: 2.39158415e-18 - art_sys_160: -1.12105754e-20 - art_sys_161: -3.32270662e-19 - art_sys_162: -3.32270662e-19 - art_sys_163: -2.94848235e-19 - art_sys_164: -2.94848235e-19 - art_sys_165: 3.40413683e-33 - art_sys_166: -1.13254997e-33 - art_sys_167: -0.0 - art_sys_168: 2.73001188e-28 - art_sys_169: 2.25535337e-28 - art_sys_170: 8.71613827e-29 - art_sys_171: 7.25888831e-29 - art_sys_172: -2.14814350e-29 - art_sys_173: -7.96038988e-31 - art_sys_174: -2.01277844e-30 - art_sys_175: -1.12186053e-30 - art_sys_176: 4.60602372e-31 - art_sys_177: -2.05197954e-31 - art_sys_178: -2.92499139e-31 - art_sys_179: 2.12336796e-32 - art_sys_180: 6.32764315e-32 - art_sys_181: -9.74829761e-32 - art_sys_182: 3.54506096e-32 - art_sys_183: -2.52293899e-34 - art_sys_184: -2.97335849e-34 - art_sys_185: 8.81367780e-35 + art_sys_55: 3.60649504e-15 + art_sys_56: -2.44545020e-15 + art_sys_57: 4.33847745e-17 + art_sys_58: 4.14601367e-18 + art_sys_59: 2.63480639e-20 + art_sys_60: -6.79861177e-20 + art_sys_61: -5.62669190e-19 + art_sys_62: -6.45670906e-21 + art_sys_63: 2.43834192e-20 + art_sys_64: 3.40252721e-21 + art_sys_65: -1.11959024e-21 + art_sys_66: -4.40024802e-17 + art_sys_67: -9.69642579e-22 + art_sys_68: -6.77476063e-22 + art_sys_69: -1.54162723e-16 + art_sys_70: -7.89477703e-14 + art_sys_71: -9.43584521e-08 + art_sys_72: -4.64707927e-16 + art_sys_73: 3.43264499e-21 + art_sys_74: -1.97343603e-08 + art_sys_75: -2.30453599e-21 + art_sys_76: -2.83939816e-19 + art_sys_77: 1.35843671e-19 + art_sys_78: -7.77590847e-21 + art_sys_79: -1.24480117e-18 + art_sys_80: -5.17771888e-09 + art_sys_81: 7.25645984e-24 + art_sys_82: -1.05924655e-22 + art_sys_83: 9.75847560e-24 + art_sys_84: 2.31428673e-21 + art_sys_85: 7.91318462e-24 + art_sys_86: 1.44826550e-24 + art_sys_87: 1.12493899e-20 + art_sys_88: 6.64391491e-20 + art_sys_89: -1.78439497e-21 + art_sys_90: 1.02806737e-14 + art_sys_91: 6.26023539e-15 + art_sys_92: -7.40367175e-20 + art_sys_93: 2.26844211e-15 + art_sys_94: 4.86593866e-19 + art_sys_95: -5.00021217e-17 + art_sys_96: 3.98603301e-21 + art_sys_97: -3.78821727e-17 + art_sys_98: 8.60257315e-17 + art_sys_99: 8.82566182e-19 + art_sys_100: -1.65955689e-18 + art_sys_101: -1.16911333e-18 + art_sys_102: -5.16473429e-20 + art_sys_103: -9.59091047e-17 + art_sys_104: 2.56536933e-18 + art_sys_105: 1.50068418e-21 + art_sys_106: -2.30752121e-17 + art_sys_107: -1.03771345e-17 + art_sys_108: -6.65532691e-18 + art_sys_109: 7.55983013e-12 + art_sys_110: 1.69893486e-21 + art_sys_111: 1.47050802e-16 + art_sys_112: -3.36072853e-17 + art_sys_113: 1.17084442e-21 + art_sys_114: -6.68952122e-17 + art_sys_115: -2.65517020e-18 + art_sys_116: 1.99686928e-12 + art_sys_117: -6.46334049e-23 + art_sys_118: -1.14273528e-16 + art_sys_119: -3.33728921e-19 + art_sys_120: 6.52640995e-17 + art_sys_121: -3.97958559e-13 + art_sys_122: -9.34643658e-18 + art_sys_123: -2.19542261e-17 + art_sys_124: -9.39255348e-17 + art_sys_125: 3.99713707e-17 + art_sys_126: 6.06475547e-14 + art_sys_127: -5.84025871e-18 + art_sys_128: 1.76574032e-17 + art_sys_129: -1.24251821e-18 + art_sys_130: 7.24427732e-17 + art_sys_131: 6.97291244e-17 + art_sys_132: 1.91538186e-17 + art_sys_133: -8.36574905e-15 + art_sys_134: 3.04354285e-16 + art_sys_135: -2.09652798e-17 + art_sys_136: 2.80932660e-17 + art_sys_137: -1.29011865e-18 + art_sys_138: -7.37714588e-17 + art_sys_139: 1.99306499e-16 + art_sys_140: -1.58807337e-19 + art_sys_141: 1.07954994e-17 + art_sys_142: -0.0 + art_sys_143: -5.50594040e-18 + art_sys_144: -1.25275728e-17 + art_sys_145: -1.76660995e-17 + art_sys_146: 4.96011394e-21 + art_sys_147: -9.47640028e-21 + art_sys_148: -2.22010835e-20 + art_sys_149: -1.68959109e-20 + art_sys_150: -5.81234144e-20 + art_sys_151: -9.95930042e-20 + art_sys_152: 5.52924484e-20 + art_sys_153: 1.05197104e-21 + art_sys_154: -8.08448175e-21 + art_sys_155: -1.41350745e-20 + art_sys_156: -4.33349067e-20 + art_sys_157: -9.59575212e-20 + art_sys_158: -0.0 + art_sys_159: 7.83239314e-18 + art_sys_160: 7.83239314e-18 + art_sys_161: -5.15160455e-19 + art_sys_162: 1.91967827e-31 + art_sys_163: 0.0 + art_sys_164: 1.16563421e-31 + art_sys_165: 1.02754428e-27 + art_sys_166: 2.18123075e-27 + art_sys_167: 7.33295940e-28 + art_sys_168: -5.71510158e-29 + art_sys_169: -2.00742016e-29 + art_sys_170: 5.54834395e-29 + art_sys_171: 4.41462026e-30 + art_sys_172: 5.13526752e-29 + art_sys_173: -4.34750712e-30 + art_sys_174: -1.05516982e-32 + art_sys_175: 8.85346510e-31 + art_sys_176: 1.12910813e-30 + art_sys_177: -1.94732025e-31 + art_sys_178: -2.61145177e-32 + art_sys_179: 6.49924746e-33 + art_sys_180: -2.87992348e-32 + art_sys_181: 6.77299117e-33 + art_sys_182: -3.83945907e-33 + art_sys_183: 2.37023244e-35 + art_sys_184: 3.45574815e-35 + art_sys_185: 6.14802608e-33 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -57858,190 +57858,190 @@ bins: luminosity_uncertainty: 3.76038 uncorrelated_uncertainty: 1.4463 - art_sys_1: -1.84595261e-18 - art_sys_2: 7.48977240e-17 + art_sys_2: 7.50658649e-17 art_sys_3: 7.55482128e-03 - art_sys_4: 5.49625448e-17 + art_sys_4: 1.68309498e-16 art_sys_5: 4.37778576e-02 - art_sys_6: 1.45705575e-16 - art_sys_7: -1.52299224e-17 + art_sys_6: 1.35968243e-16 + art_sys_7: -3.14545793e-17 art_sys_8: 8.02527676e-02 - art_sys_9: -1.90648701e-17 - art_sys_10: 4.56529296e-17 + art_sys_9: 4.62447160e-18 + art_sys_10: 4.49167118e-17 art_sys_11: 2.02451264e-02 - art_sys_12: 1.29697199e-16 - art_sys_13: -2.16068019e-14 - art_sys_14: 2.60752807e-16 - art_sys_15: 2.83998131e-01 - art_sys_16: -1.54775106e-15 - art_sys_17: 7.67195090e-15 + art_sys_12: 2.97284822e-16 + art_sys_13: 2.16105174e-14 + art_sys_14: 1.06951115e-15 + art_sys_15: -2.83998131e-01 + art_sys_16: -2.81099491e-16 + art_sys_17: 7.62234234e-15 art_sys_18: 1.29552355e-01 - art_sys_19: -2.91131476e-15 - art_sys_20: -3.47301046e-14 + art_sys_19: 9.27948223e-16 + art_sys_20: -3.46941966e-14 art_sys_21: 1.11517690e+00 - art_sys_22: -9.04695053e-17 - art_sys_23: -2.63506790e-14 + art_sys_22: -5.42128835e-17 + art_sys_23: -2.64592681e-14 art_sys_24: -6.32757998e-01 - art_sys_25: 2.04111769e-16 - art_sys_26: -5.04809784e-16 - art_sys_27: -5.58164153e-03 - art_sys_28: -3.87102006e-14 - art_sys_29: -4.99269104e-03 - art_sys_30: -3.46126997e-16 - art_sys_31: -1.72601075e-14 - art_sys_32: 2.82885046e-03 - art_sys_33: -1.96828951e-16 - art_sys_34: 2.24303720e-15 - art_sys_35: 7.52861134e-15 - art_sys_36: 4.07782775e-16 - art_sys_37: -4.31169485e-16 - art_sys_38: -7.78436823e-17 - art_sys_39: -5.63116690e-19 - art_sys_40: -9.35326504e-18 - art_sys_41: -9.34989914e-18 - art_sys_42: -4.57528972e-18 - art_sys_43: -1.27291388e-17 - art_sys_44: -3.02878148e-18 - art_sys_45: 9.64299916e-19 - art_sys_46: -7.12165544e-19 - art_sys_47: -1.21661833e-04 - art_sys_48: -6.25734047e-13 + art_sys_25: -2.31807068e-16 + art_sys_26: -5.03601941e-16 + art_sys_27: 5.58164153e-03 + art_sys_28: 9.46944842e-14 + art_sys_29: 2.81735582e-15 + art_sys_30: -2.92180769e-15 + art_sys_31: 2.12160728e-15 + art_sys_32: -1.92450348e-16 + art_sys_33: 2.32198750e-16 + art_sys_34: 1.94388879e-17 + art_sys_35: -4.66880412e-17 + art_sys_36: -4.99269104e-03 + art_sys_37: -4.01780586e-16 + art_sys_38: 5.28957332e-18 + art_sys_39: -1.22927391e-14 + art_sys_40: 2.82885046e-03 + art_sys_41: 1.01490622e-15 + art_sys_42: -3.51007341e-18 + art_sys_43: 1.02920566e-16 + art_sys_44: 8.50587558e-19 + art_sys_45: 1.12570574e-14 + art_sys_46: -1.21661833e-04 + art_sys_47: -2.80692566e-19 + art_sys_48: -4.60251060e-14 art_sys_49: 3.34380460e-05 - art_sys_50: 1.25937981e-21 - art_sys_51: 6.61221503e-20 - art_sys_52: 5.36256235e-15 - art_sys_53: 2.65883482e-14 + art_sys_50: 1.84337650e-20 + art_sys_51: -8.66519211e-20 + art_sys_52: 2.14151811e-14 + art_sys_53: -1.44261896e-14 art_sys_54: 1.13011766e-05 - art_sys_55: 1.28681057e-15 - art_sys_56: -1.05089288e-14 - art_sys_57: 9.88169694e-20 - art_sys_58: -1.44790589e-21 - art_sys_59: 4.97808416e-14 - art_sys_60: 3.40041922e-07 - art_sys_61: -9.86279928e-18 - art_sys_62: 3.61893936e-16 - art_sys_63: -7.07446460e-08 - art_sys_64: -7.40530917e-17 - art_sys_65: 3.58170416e-18 - art_sys_66: 3.89869283e-18 - art_sys_67: -9.36572491e-19 - art_sys_68: -1.08517696e-20 - art_sys_69: 1.43170933e-20 - art_sys_70: 3.36009807e-21 - art_sys_71: -1.30175995e-21 - art_sys_72: -1.21933049e-21 - art_sys_73: 6.78238006e-22 - art_sys_74: -2.19650767e-18 - art_sys_75: -2.18764905e-22 - art_sys_76: -2.07616056e-19 - art_sys_77: -6.03122796e-19 - art_sys_78: -1.70843745e-20 - art_sys_79: -1.84826906e-21 - art_sys_80: 3.31540111e-22 - art_sys_81: 2.48851461e-17 - art_sys_82: -1.80381411e-08 - art_sys_83: -5.54039531e-22 - art_sys_84: -2.24678845e-22 - art_sys_85: 2.78399947e-22 - art_sys_86: 4.63843824e-23 - art_sys_87: -1.10758659e-23 - art_sys_88: -1.44398170e-18 - art_sys_89: -3.92724188e-25 - art_sys_90: -2.17663015e-21 - art_sys_91: -3.27009584e-14 - art_sys_92: -8.87970962e-24 - art_sys_93: 4.77094691e-24 - art_sys_94: 4.36227383e-19 - art_sys_95: -3.91368433e-21 - art_sys_96: 3.42086874e-14 - art_sys_97: 8.27499720e-16 - art_sys_98: -1.65456387e-21 - art_sys_99: 2.68063754e-15 - art_sys_100: -1.81752741e-21 - art_sys_101: -2.85320619e-15 - art_sys_102: -7.15347373e-18 - art_sys_103: -2.22179711e-17 - art_sys_104: 1.80034981e-17 - art_sys_105: 1.68300740e-18 - art_sys_106: 1.34270980e-16 - art_sys_107: 1.31757671e-17 - art_sys_108: 2.73558282e-18 - art_sys_109: -1.06446939e-19 - art_sys_110: -7.86052266e-17 - art_sys_111: 1.62854374e-17 - art_sys_112: -5.78711211e-11 - art_sys_113: 3.32089819e-16 - art_sys_114: -2.06052438e-20 - art_sys_115: 7.31623612e-19 - art_sys_116: -9.82758159e-18 - art_sys_117: -1.05898856e-20 - art_sys_118: -5.36232289e-18 - art_sys_119: -1.76218877e-17 - art_sys_120: -7.23140409e-12 - art_sys_121: 9.03973529e-21 - art_sys_122: 2.01072040e-17 - art_sys_123: 4.97647800e-18 - art_sys_124: 7.62919177e-18 - art_sys_125: -1.56762940e-20 - art_sys_126: -2.07004965e-12 - art_sys_127: -5.78075877e-18 - art_sys_128: -1.76478586e-17 - art_sys_129: -3.96170008e-20 - art_sys_130: 1.86604877e-16 - art_sys_131: 5.51508981e-19 - art_sys_132: 1.33851267e-16 - art_sys_133: -4.14572192e-16 - art_sys_134: -2.77630031e-13 - art_sys_135: -7.95416167e-17 - art_sys_136: -1.62761945e-18 - art_sys_137: 6.43084040e-17 - art_sys_138: -3.40251574e-18 - art_sys_139: -9.71834044e-16 - art_sys_140: 3.43971752e-19 - art_sys_141: -3.89598748e-14 - art_sys_142: 9.55490614e-19 - art_sys_143: 6.87609093e-17 - art_sys_144: -2.14402019e-18 - art_sys_145: -4.75216818e-17 - art_sys_146: -5.09487997e-18 - art_sys_147: 3.44823831e-20 - art_sys_148: 1.66959802e-20 - art_sys_149: -1.17540659e-20 - art_sys_150: -2.42244076e-17 - art_sys_151: -7.91659287e-16 - art_sys_152: -1.35088956e-19 - art_sys_153: -6.53494492e-17 - art_sys_154: -3.52262382e-18 - art_sys_155: 2.90193127e-19 - art_sys_156: -0.0 - art_sys_157: -1.48474166e-18 - art_sys_158: -0.0 - art_sys_159: -1.11542766e-17 - art_sys_160: 1.87759466e-20 - art_sys_161: 1.53610658e-18 - art_sys_162: 1.53610658e-18 - art_sys_163: 1.35417821e-18 - art_sys_164: 1.35417821e-18 - art_sys_165: -1.56530328e-32 - art_sys_166: 5.20733270e-33 - art_sys_167: 0.0 - art_sys_168: -1.12059315e-27 - art_sys_169: -9.88232202e-28 - art_sys_170: -6.97899617e-28 - art_sys_171: -3.17287991e-28 - art_sys_172: 9.89532323e-29 - art_sys_173: 4.97762126e-30 - art_sys_174: 8.78439241e-30 - art_sys_175: 5.04932127e-30 - art_sys_176: -2.10422643e-30 - art_sys_177: 9.28001835e-31 - art_sys_178: 1.34264478e-30 - art_sys_179: -9.38410267e-32 - art_sys_180: -2.93760162e-31 - art_sys_181: 4.41559802e-31 - art_sys_182: -1.48539393e-31 - art_sys_183: 1.14156392e-33 - art_sys_184: 1.37835390e-33 - art_sys_185: -4.12297957e-34 + art_sys_55: -1.10960323e-14 + art_sys_56: 7.82996491e-15 + art_sys_57: -1.13584302e-16 + art_sys_58: -1.14854779e-17 + art_sys_59: 2.24952251e-18 + art_sys_60: 2.54922305e-20 + art_sys_61: 1.33213704e-18 + art_sys_62: 1.43930708e-20 + art_sys_63: -8.51075238e-20 + art_sys_64: -1.10723466e-20 + art_sys_65: 3.25657000e-21 + art_sys_66: 1.58571373e-16 + art_sys_67: 3.48210957e-21 + art_sys_68: 2.41659803e-21 + art_sys_69: 5.36057000e-16 + art_sys_70: 2.84616704e-13 + art_sys_71: 3.40041953e-07 + art_sys_72: 1.63248415e-15 + art_sys_73: -7.32351004e-21 + art_sys_74: 7.07446005e-08 + art_sys_75: 7.19368055e-21 + art_sys_76: 9.81812663e-19 + art_sys_77: -4.66166864e-19 + art_sys_78: 2.68825992e-20 + art_sys_79: 4.33791874e-18 + art_sys_80: 1.80380794e-08 + art_sys_81: -1.25039311e-22 + art_sys_82: 8.64606234e-22 + art_sys_83: -9.74889429e-23 + art_sys_84: -5.21962449e-21 + art_sys_85: -3.76403999e-23 + art_sys_86: -6.75040044e-24 + art_sys_87: -1.16428895e-19 + art_sys_88: -3.42387307e-19 + art_sys_89: 5.70567917e-21 + art_sys_90: -3.80061567e-14 + art_sys_91: -2.20318866e-14 + art_sys_92: 5.70911852e-19 + art_sys_93: -7.90641954e-15 + art_sys_94: -3.73573553e-18 + art_sys_95: 1.70691157e-16 + art_sys_96: -1.80902654e-20 + art_sys_97: 2.90063898e-16 + art_sys_98: -2.98532219e-16 + art_sys_99: -1.31216542e-17 + art_sys_100: 1.29947224e-17 + art_sys_101: -1.77052231e-18 + art_sys_102: 2.40313389e-19 + art_sys_103: 3.42662695e-16 + art_sys_104: -4.82399659e-18 + art_sys_105: -6.48766736e-21 + art_sys_106: 1.70684948e-16 + art_sys_107: 3.30286411e-17 + art_sys_108: 2.37853197e-17 + art_sys_109: -5.78715745e-11 + art_sys_110: -7.51668658e-21 + art_sys_111: -1.12605793e-15 + art_sys_112: 1.51418427e-16 + art_sys_113: -5.18656899e-21 + art_sys_114: 5.04955903e-16 + art_sys_115: 1.21320977e-17 + art_sys_116: -7.23166852e-12 + art_sys_117: 2.80669835e-22 + art_sys_118: 8.73360703e-16 + art_sys_119: 1.52533584e-18 + art_sys_120: -5.13012998e-16 + art_sys_121: 2.07005791e-12 + art_sys_122: -7.46880329e-18 + art_sys_123: 1.02205026e-16 + art_sys_124: 3.45894714e-16 + art_sys_125: -1.53675689e-16 + art_sys_126: -2.77525846e-13 + art_sys_127: 3.46485389e-17 + art_sys_128: -8.20676869e-17 + art_sys_129: 5.60792890e-18 + art_sys_130: -3.36791446e-16 + art_sys_131: -3.24573164e-16 + art_sys_132: -8.49678424e-17 + art_sys_133: 3.89256510e-14 + art_sys_134: -1.41685341e-15 + art_sys_135: 9.50628300e-17 + art_sys_136: -1.28522748e-16 + art_sys_137: 5.22422229e-18 + art_sys_138: 3.21749185e-16 + art_sys_139: -8.77334432e-16 + art_sys_140: 4.66744952e-19 + art_sys_141: -4.32569801e-17 + art_sys_142: 0.0 + art_sys_143: 2.45406573e-17 + art_sys_144: 5.44704768e-17 + art_sys_145: 7.49727017e-17 + art_sys_146: -2.17175573e-20 + art_sys_147: 4.14786634e-20 + art_sys_148: 1.00837879e-19 + art_sys_149: 7.46341368e-20 + art_sys_150: 2.52326919e-19 + art_sys_151: 4.54669114e-19 + art_sys_152: -2.58587029e-19 + art_sys_153: -4.98022900e-21 + art_sys_154: 3.94865495e-20 + art_sys_155: 5.61376233e-20 + art_sys_156: 1.81346269e-19 + art_sys_157: 4.22122031e-19 + art_sys_158: 0.0 + art_sys_159: -3.55149068e-17 + art_sys_160: -3.55149068e-17 + art_sys_161: 2.34118792e-18 + art_sys_162: -8.72308118e-31 + art_sys_163: -0.0 + art_sys_164: -5.29655333e-31 + art_sys_165: -4.51140851e-27 + art_sys_166: -9.55203246e-27 + art_sys_167: -3.20237055e-27 + art_sys_168: 2.66019133e-28 + art_sys_169: 9.52425955e-29 + art_sys_170: -2.56871604e-28 + art_sys_171: -2.15730477e-29 + art_sys_172: -1.34854953e-28 + art_sys_173: -7.16571504e-30 + art_sys_174: 4.25591298e-32 + art_sys_175: -1.53697798e-30 + art_sys_176: -4.42524859e-30 + art_sys_177: 9.79143885e-31 + art_sys_178: 1.31066374e-31 + art_sys_179: -1.60939842e-32 + art_sys_180: 1.43172684e-31 + art_sys_181: -2.84992631e-32 + art_sys_182: 1.63937236e-32 + art_sys_183: -1.23295558e-34 + art_sys_184: -1.61818492e-34 + art_sys_185: -2.80005675e-32 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -58149,190 +58149,190 @@ bins: luminosity_uncertainty: 1.75861400e+00 uncorrelated_uncertainty: 6.76390000e-01 - art_sys_1: -1.31006895e-18 - art_sys_2: 4.26837597e-18 + art_sys_2: 4.33103364e-18 art_sys_3: 2.27953120e-03 - art_sys_4: 3.59762007e-17 + art_sys_4: 2.08314218e-17 art_sys_5: 1.87462833e-03 - art_sys_6: 1.76095855e-17 - art_sys_7: -1.26153067e-17 + art_sys_6: 1.71398498e-17 + art_sys_7: -2.03852986e-17 art_sys_8: 8.76248995e-03 - art_sys_9: -3.22388511e-18 - art_sys_10: 9.12058975e-18 + art_sys_9: 8.22746254e-18 + art_sys_10: 9.03319284e-18 art_sys_11: 7.69517351e-03 - art_sys_12: 1.35195169e-17 - art_sys_13: 5.60731841e-16 - art_sys_14: 1.38583692e-16 - art_sys_15: -1.07140019e-02 - art_sys_16: -3.12250088e-16 - art_sys_17: 8.38315783e-17 + art_sys_12: 6.81787042e-18 + art_sys_13: -5.59299312e-16 + art_sys_14: -8.19822093e-17 + art_sys_15: 1.07140019e-02 + art_sys_16: 3.92798017e-17 + art_sys_17: 8.29943224e-17 art_sys_18: -8.10092244e-02 - art_sys_19: -1.96720304e-15 - art_sys_20: -3.10305926e-15 + art_sys_19: 1.75445635e-15 + art_sys_20: -3.09745621e-15 art_sys_21: 2.59958545e-03 - art_sys_22: 2.74905959e-15 - art_sys_23: -2.11708901e-15 + art_sys_22: 2.75381503e-15 + art_sys_23: -2.13375684e-15 art_sys_24: -7.48757864e-02 - art_sys_25: 5.44919108e-16 - art_sys_26: -9.54488126e-16 - art_sys_27: 1.24313414e-01 - art_sys_28: 1.58442215e-13 - art_sys_29: 1.62801408e-02 - art_sys_30: 3.29702358e-16 - art_sys_31: 9.94376493e-14 - art_sys_32: -1.84131364e-02 - art_sys_33: 8.69466291e-16 - art_sys_34: -1.10340737e-14 - art_sys_35: -3.90165433e-14 - art_sys_36: -1.56083350e-15 - art_sys_37: 2.18439646e-15 - art_sys_38: 3.94370751e-16 - art_sys_39: 6.93602518e-19 - art_sys_40: 5.25244180e-17 - art_sys_41: 4.54924310e-17 - art_sys_42: 2.19989415e-17 - art_sys_43: 6.42452114e-17 - art_sys_44: -2.09206752e-18 - art_sys_45: -6.40648908e-19 - art_sys_46: 2.73597081e-18 - art_sys_47: 6.00859553e-04 - art_sys_48: 3.32939226e-12 + art_sys_25: -5.62574313e-16 + art_sys_26: -1.04438709e-15 + art_sys_27: -1.24313414e-01 + art_sys_28: -2.76545167e-13 + art_sys_29: -7.66826408e-15 + art_sys_30: 1.24691049e-14 + art_sys_31: -1.21542673e-14 + art_sys_32: 1.13141681e-15 + art_sys_33: -9.71007190e-16 + art_sys_34: -1.06181544e-16 + art_sys_35: 2.68622840e-16 + art_sys_36: 1.62801408e-02 + art_sys_37: 5.25671019e-16 + art_sys_38: -5.77554493e-17 + art_sys_39: 9.28942104e-14 + art_sys_40: -1.84131364e-02 + art_sys_41: -6.20995673e-15 + art_sys_42: 8.90017355e-18 + art_sys_43: -5.27265251e-16 + art_sys_44: -1.56157679e-18 + art_sys_45: -5.74817068e-14 + art_sys_46: 6.00859553e-04 + art_sys_47: 6.51206672e-19 + art_sys_48: 2.41583753e-13 art_sys_49: -1.75325806e-04 - art_sys_50: 2.43808006e-19 - art_sys_51: 1.38107609e-18 - art_sys_52: -3.33716762e-14 - art_sys_53: -1.45104765e-13 - art_sys_54: -6.15393774e-05 - art_sys_55: -6.74293133e-15 - art_sys_56: 5.49870275e-14 - art_sys_57: -1.87565105e-18 - art_sys_58: 1.50682240e-20 - art_sys_59: -2.32044815e-13 - art_sys_60: -1.59203807e-06 - art_sys_61: 5.08280479e-17 - art_sys_62: -1.82523419e-15 - art_sys_63: 3.72721291e-07 - art_sys_64: 4.86271791e-16 - art_sys_65: -2.91413976e-17 - art_sys_66: -5.55450401e-18 - art_sys_67: 8.22125125e-19 - art_sys_68: 1.76475689e-20 - art_sys_69: -6.29314793e-20 - art_sys_70: -1.27534880e-20 - art_sys_71: 6.13465181e-21 - art_sys_72: 5.90287874e-21 - art_sys_73: -2.86505234e-21 - art_sys_74: 1.13303739e-17 - art_sys_75: 1.65229594e-21 - art_sys_76: 1.02896717e-18 - art_sys_77: 3.09646756e-18 - art_sys_78: 9.42934364e-20 - art_sys_79: 1.27745144e-20 - art_sys_80: 6.21328663e-22 - art_sys_81: -1.28268367e-16 - art_sys_82: 9.29820407e-08 - art_sys_83: 1.65277034e-21 - art_sys_84: 8.85291303e-22 - art_sys_85: -7.75011450e-22 - art_sys_86: -1.62474796e-22 - art_sys_87: -4.14301685e-22 - art_sys_88: 4.39387694e-18 - art_sys_89: 6.20768376e-25 - art_sys_90: -7.54143552e-20 - art_sys_91: 1.68839117e-13 - art_sys_92: 2.73840426e-23 - art_sys_93: -1.55008773e-23 - art_sys_94: -1.73220609e-18 - art_sys_95: 1.51000049e-20 - art_sys_96: -1.76314608e-13 - art_sys_97: -4.61288413e-15 - art_sys_98: 8.35639945e-21 - art_sys_99: -1.38177222e-14 - art_sys_100: -1.40895811e-21 - art_sys_101: 1.47070211e-14 - art_sys_102: 2.27883195e-17 - art_sys_103: 1.21100008e-16 - art_sys_104: -8.74531369e-17 - art_sys_105: -8.09139329e-18 - art_sys_106: -6.88530328e-16 - art_sys_107: -8.16645904e-17 - art_sys_108: -1.31513043e-17 - art_sys_109: 5.12458512e-19 - art_sys_110: -8.64815446e-17 - art_sys_111: 4.01424329e-18 - art_sys_112: 1.76083520e-10 - art_sys_113: -1.80922425e-15 - art_sys_114: 9.89504758e-20 - art_sys_115: -3.03179328e-18 - art_sys_116: 4.29360054e-17 - art_sys_117: 5.15489375e-20 - art_sys_118: 1.44225699e-17 - art_sys_119: 6.10678601e-17 - art_sys_120: 4.47984253e-11 - art_sys_121: -4.31894560e-20 - art_sys_122: -6.45751038e-17 - art_sys_123: -2.48670880e-17 - art_sys_124: -1.88009822e-17 - art_sys_125: 7.16269503e-20 - art_sys_126: 8.21762818e-12 - art_sys_127: 2.90262374e-17 - art_sys_128: 1.11809351e-16 - art_sys_129: 1.83073788e-19 - art_sys_130: -8.96885973e-16 - art_sys_131: -2.54855555e-18 - art_sys_132: -8.35802796e-16 - art_sys_133: 1.99341648e-15 - art_sys_134: 1.38392322e-12 - art_sys_135: 3.36423178e-16 - art_sys_136: 7.51525412e-18 - art_sys_137: -3.08350011e-16 - art_sys_138: 1.63454839e-17 - art_sys_139: 4.67166594e-15 - art_sys_140: -1.59707465e-18 - art_sys_141: 1.87297534e-13 - art_sys_142: -8.72793706e-18 - art_sys_143: -3.30648993e-16 - art_sys_144: 1.00855258e-17 - art_sys_145: 2.38527886e-16 - art_sys_146: 2.44224435e-17 - art_sys_147: -1.72631917e-19 - art_sys_148: -8.91669587e-20 - art_sys_149: 7.71762222e-19 - art_sys_150: 1.14501048e-16 - art_sys_151: 3.65274484e-15 - art_sys_152: 5.93601217e-19 - art_sys_153: 3.09066273e-16 - art_sys_154: 1.39060790e-17 - art_sys_155: -1.37256463e-18 - art_sys_156: 0.0 - art_sys_157: 7.47858282e-18 - art_sys_158: 0.0 - art_sys_159: 5.45066182e-17 - art_sys_160: -4.75249711e-20 - art_sys_161: -7.55485019e-18 - art_sys_162: -7.55485019e-18 - art_sys_163: -6.61883266e-18 - art_sys_164: -6.61883266e-18 - art_sys_165: 7.65853183e-32 - art_sys_166: -2.54823127e-32 - art_sys_167: -0.0 - art_sys_168: 5.41325665e-27 - art_sys_169: 4.56421211e-27 - art_sys_170: 4.45462371e-27 - art_sys_171: 1.37991861e-27 - art_sys_172: -4.63669528e-28 - art_sys_173: -2.57504156e-29 - art_sys_174: -4.01025073e-29 - art_sys_175: -2.33495364e-29 - art_sys_176: 9.69917967e-30 - art_sys_177: -4.28632440e-30 - art_sys_178: -6.20765624e-30 - art_sys_179: 4.45503203e-31 - art_sys_180: 1.43515699e-30 - art_sys_181: -2.03230552e-30 - art_sys_182: 6.98303013e-31 - art_sys_183: -5.18456046e-33 - art_sys_184: -6.56570336e-33 - art_sys_185: 2.00559002e-33 + art_sys_50: 5.51061619e-20 + art_sys_51: -4.57115741e-19 + art_sys_52: -1.16674037e-13 + art_sys_53: 7.11529544e-14 + art_sys_54: -6.15393775e-05 + art_sys_55: 6.01243522e-14 + art_sys_56: -4.10316985e-14 + art_sys_57: 6.16050382e-16 + art_sys_58: 5.94013855e-17 + art_sys_59: 1.63057832e-17 + art_sys_60: 3.64313983e-19 + art_sys_61: -7.96916530e-18 + art_sys_62: -1.18714731e-19 + art_sys_63: 4.47923997e-19 + art_sys_64: 5.53504507e-20 + art_sys_65: -1.82766610e-20 + art_sys_66: -7.42808409e-16 + art_sys_67: -1.53905804e-20 + art_sys_68: -1.06332344e-20 + art_sys_69: -2.75922099e-15 + art_sys_70: -1.32064227e-12 + art_sys_71: -1.59203824e-06 + art_sys_72: -7.60776203e-15 + art_sys_73: 4.96704868e-20 + art_sys_74: -3.72721054e-07 + art_sys_75: -3.21595471e-20 + art_sys_76: -5.09352116e-18 + art_sys_77: 2.43296742e-18 + art_sys_78: -1.40216026e-19 + art_sys_79: -2.23675783e-17 + art_sys_80: -9.29817222e-08 + art_sys_81: 1.61724920e-22 + art_sys_82: -2.49315377e-21 + art_sys_83: 2.43098356e-22 + art_sys_84: 3.76544843e-20 + art_sys_85: 1.87811587e-22 + art_sys_86: 6.20360409e-23 + art_sys_87: 2.60770390e-19 + art_sys_88: 1.37373589e-18 + art_sys_89: -4.89878653e-20 + art_sys_90: 2.08551559e-13 + art_sys_91: 1.14835571e-13 + art_sys_92: -1.72398153e-18 + art_sys_93: 4.07502794e-14 + art_sys_94: 1.13340776e-17 + art_sys_95: -8.62202911e-16 + art_sys_96: 9.14092359e-20 + art_sys_97: -8.82374910e-16 + art_sys_98: 1.53083771e-15 + art_sys_99: 4.13721872e-17 + art_sys_100: -3.87166627e-17 + art_sys_101: 3.95344909e-18 + art_sys_102: -1.15523062e-18 + art_sys_103: -2.15065824e-15 + art_sys_104: 4.37602529e-17 + art_sys_105: 2.96343375e-20 + art_sys_106: -5.31063910e-16 + art_sys_107: -1.76394581e-16 + art_sys_108: -1.49696376e-16 + art_sys_109: 1.76084886e-10 + art_sys_110: 3.48150830e-20 + art_sys_111: 3.42805018e-15 + art_sys_112: -7.74768048e-16 + art_sys_113: 2.40255663e-20 + art_sys_114: -1.55829606e-15 + art_sys_115: -6.06285413e-17 + art_sys_116: 4.48000682e-11 + art_sys_117: -1.29460838e-21 + art_sys_118: -2.66243641e-15 + art_sys_119: -7.62382589e-18 + art_sys_120: 1.52327431e-15 + art_sys_121: -8.21764972e-12 + art_sys_122: -2.02043917e-16 + art_sys_123: -4.91411149e-16 + art_sys_124: -2.11079696e-15 + art_sys_125: 8.93605465e-16 + art_sys_126: 1.38340138e-12 + art_sys_127: -1.30063631e-16 + art_sys_128: 3.94120923e-16 + art_sys_129: -2.63466004e-17 + art_sys_130: 1.61832829e-15 + art_sys_131: 1.56083173e-15 + art_sys_132: 4.40023849e-16 + art_sys_133: -1.87131598e-13 + art_sys_134: 6.81353048e-15 + art_sys_135: -4.81065853e-16 + art_sys_136: 6.11160730e-16 + art_sys_137: -3.27815380e-17 + art_sys_138: -1.48111461e-15 + art_sys_139: 4.06416031e-15 + art_sys_140: -2.72734094e-18 + art_sys_141: 1.85361103e-16 + art_sys_142: -0.0 + art_sys_143: -1.20170464e-16 + art_sys_144: -2.50726375e-16 + art_sys_145: -3.37160377e-16 + art_sys_146: 1.00166445e-19 + art_sys_147: -1.91238016e-19 + art_sys_148: -4.70124869e-19 + art_sys_149: -3.45396859e-19 + art_sys_150: -1.15778472e-18 + art_sys_151: -2.11573007e-18 + art_sys_152: 1.24192993e-18 + art_sys_153: 2.37448477e-20 + art_sys_154: -1.89405760e-19 + art_sys_155: -2.51738252e-19 + art_sys_156: -8.01376955e-19 + art_sys_157: -1.94216715e-18 + art_sys_158: -0.0 + art_sys_159: 1.66818191e-16 + art_sys_160: 1.66818191e-16 + art_sys_161: -1.09349771e-17 + art_sys_162: 4.07586915e-30 + art_sys_163: 0.0 + art_sys_164: 2.47527929e-30 + art_sys_165: 2.09564012e-26 + art_sys_166: 4.40721622e-26 + art_sys_167: 1.47489543e-26 + art_sys_168: -1.22679719e-27 + art_sys_169: -4.42528820e-28 + art_sys_170: 1.18631917e-27 + art_sys_171: -7.16893088e-29 + art_sys_172: 6.77430581e-28 + art_sys_173: -2.15367232e-29 + art_sys_174: -1.84164392e-31 + art_sys_175: 9.41743255e-30 + art_sys_176: 1.58959548e-29 + art_sys_177: -3.26056065e-30 + art_sys_178: -5.52782782e-31 + art_sys_179: 8.93867543e-32 + art_sys_180: -6.57335099e-31 + art_sys_181: 1.24771736e-31 + art_sys_182: -6.93851674e-32 + art_sys_183: 6.74093553e-34 + art_sys_184: 7.73626678e-34 + art_sys_185: 1.30556393e-31 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -58440,190 +58440,190 @@ bins: luminosity_uncertainty: 8.45262600e-01 uncorrelated_uncertainty: 3.25101000e-01 - art_sys_1: -1.82517388e-19 - art_sys_2: -1.12318621e-18 + art_sys_2: -1.12231102e-18 art_sys_3: 2.20792751e-04 - art_sys_4: 9.47321818e-19 + art_sys_4: -1.87707020e-18 art_sys_5: -7.24334081e-04 - art_sys_6: -1.33213554e-18 - art_sys_7: -5.42121072e-19 + art_sys_6: -1.16911694e-18 + art_sys_7: -5.49812881e-19 art_sys_8: -8.55469714e-04 - art_sys_9: 5.49756353e-20 - art_sys_10: -6.38335246e-20 + art_sys_9: 3.70560651e-19 + art_sys_10: -5.67429440e-20 art_sys_11: 6.48004454e-05 - art_sys_12: -2.39094665e-18 - art_sys_13: 9.18306683e-16 - art_sys_14: -4.12118766e-17 - art_sys_15: -1.21292081e-02 - art_sys_16: 1.45260551e-16 - art_sys_17: -3.59023105e-16 + art_sys_12: -9.22643918e-18 + art_sys_13: -9.18290545e-16 + art_sys_14: -4.87762378e-17 + art_sys_15: 1.21292081e-02 + art_sys_16: -4.62691837e-17 + art_sys_17: -3.57076586e-16 art_sys_18: -6.45429229e-03 - art_sys_19: 1.24105994e-16 - art_sys_20: 1.89339776e-15 + art_sys_19: -1.01522143e-17 + art_sys_20: 1.89237390e-15 art_sys_21: -5.49947587e-02 - art_sys_22: -2.81594211e-17 - art_sys_23: 1.40618163e-15 + art_sys_22: -3.10501592e-17 + art_sys_23: 1.41284811e-15 art_sys_24: 3.68182305e-02 - art_sys_25: -1.20596907e-16 - art_sys_26: -6.97763607e-17 - art_sys_27: 4.65798719e-02 - art_sys_28: -3.99237263e-13 - art_sys_29: -6.95329785e-02 - art_sys_30: 3.67027147e-16 - art_sys_31: -1.29625699e-13 - art_sys_32: 3.17415305e-02 - art_sys_33: -1.21660923e-15 - art_sys_34: 4.59940141e-14 - art_sys_35: 1.96132415e-14 - art_sys_36: 7.82342358e-15 - art_sys_37: -8.25182640e-15 - art_sys_38: -1.66164611e-15 - art_sys_39: -2.50478790e-17 - art_sys_40: -1.99977754e-16 - art_sys_41: -1.66248209e-16 - art_sys_42: -3.79301192e-17 - art_sys_43: -1.60165688e-16 - art_sys_44: 7.07660042e-18 - art_sys_45: -2.91018180e-19 - art_sys_46: -8.44865484e-18 - art_sys_47: -2.51965635e-03 - art_sys_48: -9.72926332e-12 - art_sys_49: 5.54699362e-04 - art_sys_50: 3.96434388e-20 - art_sys_51: 1.45247331e-18 - art_sys_52: 8.60087564e-15 - art_sys_53: 5.23415158e-13 + art_sys_25: 1.15591346e-16 + art_sys_26: -8.63915939e-17 + art_sys_27: -4.65798719e-02 + art_sys_28: 1.45886108e-12 + art_sys_29: 4.49683229e-14 + art_sys_30: -3.59484544e-14 + art_sys_31: 2.53001537e-14 + art_sys_32: -2.43473611e-15 + art_sys_33: 3.13536027e-15 + art_sys_34: 2.60299735e-16 + art_sys_35: -5.14069952e-16 + art_sys_36: -6.95329785e-02 + art_sys_37: -4.58959811e-16 + art_sys_38: 6.87656767e-17 + art_sys_39: -2.01902634e-13 + art_sys_40: 3.17415305e-02 + art_sys_41: 1.04223804e-14 + art_sys_42: -3.34917721e-17 + art_sys_43: 2.48130215e-15 + art_sys_44: 6.28644950e-18 + art_sys_45: 9.70354212e-14 + art_sys_46: -2.51965635e-03 + art_sys_47: -2.19626697e-18 + art_sys_48: -7.65258327e-13 + art_sys_49: 5.54699363e-04 + art_sys_50: 1.36172049e-19 + art_sys_51: -7.99809319e-19 + art_sys_52: 4.18686775e-13 + art_sys_53: -2.90516860e-13 art_sys_54: 2.20632738e-04 - art_sys_55: 2.35589330e-14 - art_sys_56: -1.74218060e-13 - art_sys_57: -1.44124782e-19 - art_sys_58: -4.05023137e-22 - art_sys_59: 9.97167524e-13 - art_sys_60: 6.80317513e-06 - art_sys_61: -2.03900992e-16 - art_sys_62: 4.74572581e-15 - art_sys_63: -1.36883957e-06 - art_sys_64: -8.75476006e-16 - art_sys_65: 4.78730166e-17 - art_sys_66: 5.69320609e-17 - art_sys_67: -1.55070983e-17 - art_sys_68: -1.51568967e-20 - art_sys_69: 2.15505667e-19 - art_sys_70: 4.90545363e-20 - art_sys_71: -3.02528318e-20 - art_sys_72: -2.46864084e-20 - art_sys_73: 1.35156883e-20 - art_sys_74: -4.54433745e-17 - art_sys_75: -4.56843409e-21 - art_sys_76: -4.21965542e-18 - art_sys_77: -1.24445406e-17 - art_sys_78: -3.67603967e-19 - art_sys_79: -3.51690081e-20 - art_sys_80: 2.28732677e-21 - art_sys_81: 5.14465793e-16 - art_sys_82: -3.72900380e-07 - art_sys_83: -9.48065136e-21 - art_sys_84: -3.91264498e-21 - art_sys_85: 4.47776556e-21 - art_sys_86: 7.94269370e-22 - art_sys_87: -1.03351854e-23 - art_sys_88: -2.34935406e-17 - art_sys_89: -5.97473136e-24 - art_sys_90: 4.89098273e-20 - art_sys_91: -6.52861482e-13 - art_sys_92: -1.43208014e-22 - art_sys_93: 7.84397298e-23 - art_sys_94: 8.41363600e-18 - art_sys_95: -8.70857597e-20 - art_sys_96: 7.09528347e-13 - art_sys_97: 1.57451348e-14 - art_sys_98: -3.83244736e-20 - art_sys_99: 5.53784776e-14 - art_sys_100: -3.56072526e-20 - art_sys_101: -5.89650887e-14 - art_sys_102: -1.17405080e-16 - art_sys_103: -4.34776115e-16 - art_sys_104: 3.43186863e-16 - art_sys_105: 3.19272420e-17 - art_sys_106: 2.77436195e-15 - art_sys_107: 2.57089698e-16 - art_sys_108: 5.18958973e-17 - art_sys_109: -2.01217252e-18 - art_sys_110: -9.44813450e-16 - art_sys_111: 1.51751480e-16 - art_sys_112: -9.41527507e-10 - art_sys_113: 6.48281478e-15 - art_sys_114: -3.92062116e-19 - art_sys_115: 1.24739700e-17 - art_sys_116: -1.87956988e-16 - art_sys_117: -1.94322782e-19 - art_sys_118: -8.17651336e-17 - art_sys_119: -3.45464962e-16 - art_sys_120: -1.41112465e-10 - art_sys_121: 1.74513991e-19 - art_sys_122: 3.28718790e-16 - art_sys_123: 9.26997754e-17 - art_sys_124: 1.19265693e-16 - art_sys_125: -3.36833938e-19 - art_sys_126: -3.99183164e-11 - art_sys_127: -9.70433603e-17 - art_sys_128: -3.43348116e-16 - art_sys_129: -8.26176555e-19 - art_sys_130: 3.54153598e-15 - art_sys_131: 1.15029696e-17 - art_sys_132: 2.61291222e-15 - art_sys_133: -7.85804115e-15 - art_sys_134: -5.17456572e-12 - art_sys_135: -1.53434511e-15 - art_sys_136: -3.40291135e-17 - art_sys_137: 1.22754419e-15 - art_sys_138: -6.23194393e-17 - art_sys_139: -1.84400562e-14 - art_sys_140: 7.02777387e-18 - art_sys_141: -7.39086272e-13 - art_sys_142: 1.61156799e-17 - art_sys_143: 1.30425262e-15 - art_sys_144: -4.17640934e-17 - art_sys_145: -8.84211117e-16 - art_sys_146: -9.67047948e-17 - art_sys_147: 6.15644154e-19 - art_sys_148: 2.59042335e-19 - art_sys_149: -3.44175383e-18 - art_sys_150: -4.75917160e-16 - art_sys_151: -1.65959175e-14 - art_sys_152: -3.03888135e-18 - art_sys_153: -1.29208552e-15 - art_sys_154: -6.17010204e-17 - art_sys_155: 5.89876724e-18 - art_sys_156: -0.0 - art_sys_157: -2.71410177e-17 - art_sys_158: -0.0 - art_sys_159: -2.07994858e-16 - art_sys_160: 1.21156608e-18 - art_sys_161: 2.87622236e-17 - art_sys_162: 2.87622236e-17 - art_sys_163: 2.56839087e-17 - art_sys_164: 2.56839087e-17 - art_sys_165: -2.96224969e-31 - art_sys_166: 9.85389821e-32 - art_sys_167: 0.0 - art_sys_168: -2.30981935e-26 - art_sys_169: -2.06362522e-26 - art_sys_170: -1.01746485e-26 - art_sys_171: -6.40209845e-27 - art_sys_172: 2.15994342e-27 - art_sys_173: 8.85382805e-29 - art_sys_174: 1.72525559e-28 - art_sys_175: 9.96542164e-29 - art_sys_176: -4.17579772e-29 - art_sys_177: 1.87646370e-29 - art_sys_178: 2.67068217e-29 - art_sys_179: -1.90310994e-30 - art_sys_180: -5.50729046e-30 - art_sys_181: 8.91045060e-30 - art_sys_182: -3.04043834e-30 - art_sys_183: 2.48848547e-32 - art_sys_184: 2.64658713e-32 - art_sys_185: -7.69416709e-33 + art_sys_55: -2.15048993e-13 + art_sys_56: 1.28507734e-13 + art_sys_57: -1.35531168e-15 + art_sys_58: -1.51560246e-16 + art_sys_59: 4.61641297e-17 + art_sys_60: -1.22055647e-18 + art_sys_61: 1.45777793e-17 + art_sys_62: 1.07825534e-19 + art_sys_63: -1.65958968e-18 + art_sys_64: -1.91761024e-19 + art_sys_65: 4.97389085e-20 + art_sys_66: 3.17210709e-15 + art_sys_67: 7.00686185e-20 + art_sys_68: 4.87628290e-20 + art_sys_69: 1.11282666e-14 + art_sys_70: 5.70807181e-12 + art_sys_71: 6.80317571e-06 + art_sys_72: 3.28747206e-14 + art_sys_73: -1.17960889e-19 + art_sys_74: 1.36883869e-06 + art_sys_75: 1.21149927e-19 + art_sys_76: 2.03584597e-17 + art_sys_77: -9.69109044e-18 + art_sys_78: 5.56787092e-19 + art_sys_79: 8.97236536e-17 + art_sys_80: 3.72899110e-07 + art_sys_81: -1.90461744e-21 + art_sys_82: 1.38019315e-20 + art_sys_83: -1.51237560e-21 + art_sys_84: -5.81791843e-20 + art_sys_85: -7.71835323e-22 + art_sys_86: -1.21399847e-22 + art_sys_87: -1.78352324e-18 + art_sys_88: -6.61540881e-18 + art_sys_89: 9.31556729e-20 + art_sys_90: -6.77021278e-13 + art_sys_91: -4.44786129e-13 + art_sys_92: 9.27170083e-18 + art_sys_93: -1.63482958e-13 + art_sys_94: -6.07385300e-17 + art_sys_95: 3.66427237e-15 + art_sys_96: -3.34340490e-19 + art_sys_97: 4.71895617e-15 + art_sys_98: -6.22307846e-15 + art_sys_99: -3.73904453e-16 + art_sys_100: 2.10568895e-16 + art_sys_101: -4.27203723e-17 + art_sys_102: 4.55940030e-18 + art_sys_103: 6.71577648e-15 + art_sys_104: -1.48527993e-16 + art_sys_105: -1.38264083e-19 + art_sys_106: 2.79892583e-15 + art_sys_107: 6.47227467e-16 + art_sys_108: 4.64276484e-16 + art_sys_109: -9.41534870e-10 + art_sys_110: -1.55314730e-19 + art_sys_111: -1.83233672e-14 + art_sys_112: 2.80956018e-15 + art_sys_113: -1.07072467e-19 + art_sys_114: 8.23986853e-15 + art_sys_115: 2.26026715e-16 + art_sys_116: -1.41117614e-10 + art_sys_117: 5.89734281e-21 + art_sys_118: 1.42156936e-14 + art_sys_119: 2.83922152e-17 + art_sys_120: -8.30982369e-15 + art_sys_121: 3.99184875e-11 + art_sys_122: 1.02489301e-16 + art_sys_123: 1.93758795e-15 + art_sys_124: 6.70642055e-15 + art_sys_125: -2.97338445e-15 + art_sys_126: -5.17262511e-12 + art_sys_127: 6.34013855e-16 + art_sys_128: -1.56024723e-15 + art_sys_129: 1.12132581e-16 + art_sys_130: -6.39771732e-15 + art_sys_131: -6.15315773e-15 + art_sys_132: -1.58376299e-15 + art_sys_133: 7.38451554e-13 + art_sys_134: -2.68569017e-14 + art_sys_135: 1.76921002e-15 + art_sys_136: -2.50719067e-15 + art_sys_137: 8.79626351e-17 + art_sys_138: 6.78008291e-15 + art_sys_139: -1.82196710e-14 + art_sys_140: 8.98571890e-18 + art_sys_141: -1.04437806e-15 + art_sys_142: 0.0 + art_sys_143: 4.80004962e-16 + art_sys_144: 1.15154168e-15 + art_sys_145: 1.65365431e-15 + art_sys_146: -4.55090236e-19 + art_sys_147: 8.69737696e-19 + art_sys_148: 2.01520674e-18 + art_sys_149: 1.54538645e-18 + art_sys_150: 5.35628836e-18 + art_sys_151: 9.05040664e-18 + art_sys_152: -4.88242590e-18 + art_sys_153: -9.33787992e-20 + art_sys_154: 7.11564709e-19 + art_sys_155: 1.32875042e-18 + art_sys_156: 4.10758307e-18 + art_sys_157: 8.81827286e-18 + art_sys_158: 0.0 + art_sys_159: -7.06707940e-16 + art_sys_160: -7.06707940e-16 + art_sys_161: 4.66885652e-17 + art_sys_162: -1.73925521e-29 + art_sys_163: -0.0 + art_sys_164: -1.05592371e-29 + art_sys_165: -9.55124321e-26 + art_sys_166: -1.99913094e-25 + art_sys_167: -6.75592188e-26 + art_sys_168: 5.21796434e-27 + art_sys_169: 1.88981426e-27 + art_sys_170: -5.03647196e-27 + art_sys_171: -2.48973412e-28 + art_sys_172: -1.55176669e-27 + art_sys_173: -3.49812215e-28 + art_sys_174: 1.01455038e-30 + art_sys_175: -4.46134467e-30 + art_sys_176: -7.74920300e-29 + art_sys_177: 1.92009363e-29 + art_sys_178: 2.54573279e-30 + art_sys_179: -7.64937096e-31 + art_sys_180: 2.62669328e-30 + art_sys_181: -5.71234333e-31 + art_sys_182: 3.24227212e-31 + art_sys_183: -2.29132540e-33 + art_sys_184: -3.06182615e-33 + art_sys_185: -5.57882945e-31 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -58731,190 +58731,190 @@ bins: luminosity_uncertainty: 4.02651600e-01 uncorrelated_uncertainty: 0.154866 - art_sys_1: -7.50232345e-21 - art_sys_2: -3.80563227e-19 + art_sys_2: -3.80649316e-19 art_sys_3: -6.93996490e-06 - art_sys_4: -1.16878756e-18 + art_sys_4: -1.14568039e-18 art_sys_5: -2.18002536e-04 - art_sys_6: -8.60755234e-19 - art_sys_7: 3.64098471e-19 + art_sys_6: -8.14504627e-19 + art_sys_7: 6.12844891e-19 art_sys_8: -4.61591702e-04 - art_sys_9: 1.88871885e-19 - art_sys_10: -4.94300293e-19 + art_sys_9: -2.07546546e-19 + art_sys_10: -4.89958364e-19 art_sys_11: -2.70348230e-04 - art_sys_12: -9.54057407e-19 - art_sys_13: -4.57638620e-20 - art_sys_14: -5.38572590e-18 - art_sys_15: 1.33024039e-04 - art_sys_16: 1.25263518e-17 - art_sys_17: 2.71385681e-18 + art_sys_12: -8.77983125e-19 + art_sys_13: -4.26529381e-21 + art_sys_14: 3.78008000e-18 + art_sys_15: -1.33024039e-04 + art_sys_16: 1.11552468e-18 + art_sys_17: 2.81664407e-18 art_sys_18: 4.75208849e-03 - art_sys_19: 1.13337025e-16 - art_sys_20: 1.27384130e-16 + art_sys_19: -1.03442894e-16 + art_sys_20: 1.27178870e-16 art_sys_21: 1.08706313e-03 - art_sys_22: -1.68948126e-16 - art_sys_23: 8.68575725e-17 + art_sys_22: -1.69232586e-16 + art_sys_23: 8.76540902e-17 art_sys_24: 3.55705295e-03 - art_sys_25: -5.14161635e-17 - art_sys_26: 9.41356524e-17 - art_sys_27: -1.92454761e-02 - art_sys_28: -4.43193329e-13 - art_sys_29: -6.13630594e-02 - art_sys_30: 3.10406588e-16 - art_sys_31: 1.47602714e-13 - art_sys_32: -4.13385964e-02 - art_sys_33: 1.06549285e-15 - art_sys_34: -3.04144595e-14 - art_sys_35: -1.69242270e-14 - art_sys_36: -3.63727720e-15 - art_sys_37: 9.82615685e-15 - art_sys_38: 1.22587818e-15 - art_sys_39: -1.45530185e-16 - art_sys_40: 2.10004992e-16 - art_sys_41: 2.51345824e-17 - art_sys_42: -5.70794814e-17 - art_sys_43: 9.95269362e-18 - art_sys_44: -1.38803019e-18 - art_sys_45: 1.30606168e-18 - art_sys_46: -4.29002882e-18 - art_sys_47: 1.66823806e-03 - art_sys_48: 2.69632717e-11 + art_sys_25: 5.33707034e-17 + art_sys_26: 1.19469766e-16 + art_sys_27: 1.92454761e-02 + art_sys_28: 1.19655611e-12 + art_sys_29: 4.47398244e-14 + art_sys_30: -1.77338792e-14 + art_sys_31: -1.64599592e-14 + art_sys_32: 1.35511998e-15 + art_sys_33: 9.85316607e-16 + art_sys_34: -3.51685827e-16 + art_sys_35: 2.60241560e-16 + art_sys_36: -6.13630594e-02 + art_sys_37: -4.00053761e-16 + art_sys_38: -2.46476335e-16 + art_sys_39: 2.84186478e-13 + art_sys_40: -4.13385964e-02 + art_sys_41: -1.30582015e-14 + art_sys_42: -2.00310285e-17 + art_sys_43: -1.68423158e-15 + art_sys_44: -6.53525322e-18 + art_sys_45: -6.81951094e-14 + art_sys_46: 1.66823806e-03 + art_sys_47: -4.38215103e-18 + art_sys_48: 1.71030402e-12 art_sys_49: -1.24245651e-03 - art_sys_50: -9.35807737e-20 - art_sys_51: 1.00266187e-18 - art_sys_52: -5.91787426e-13 - art_sys_53: -9.70200255e-13 + art_sys_50: -2.40830223e-19 + art_sys_51: 6.68054164e-19 + art_sys_52: -7.82036486e-13 + art_sys_53: 1.79711666e-13 art_sys_54: -4.12761309e-04 - art_sys_55: -4.37978634e-14 - art_sys_56: 3.79569328e-13 - art_sys_57: 8.40890830e-19 - art_sys_58: -1.51356899e-20 - art_sys_59: -2.24806485e-12 - art_sys_60: -1.54238501e-05 - art_sys_61: 5.00323336e-16 - art_sys_62: -1.29569963e-14 - art_sys_63: 3.57715164e-06 - art_sys_64: 1.25231431e-15 - art_sys_65: -1.50699002e-16 - art_sys_66: 1.06068079e-16 - art_sys_67: -2.20090636e-17 - art_sys_68: -1.21214140e-18 - art_sys_69: -2.53689328e-19 - art_sys_70: -8.56582679e-21 - art_sys_71: 7.64993604e-20 - art_sys_72: 5.51097048e-20 - art_sys_73: -2.40148803e-20 - art_sys_74: 1.11491155e-16 - art_sys_75: 1.79965562e-20 - art_sys_76: 1.05679250e-17 - art_sys_77: 3.06188157e-17 - art_sys_78: 8.47545850e-19 - art_sys_79: 1.11862365e-19 - art_sys_80: -1.82776125e-20 - art_sys_81: -1.26284249e-15 - art_sys_82: 9.15371220e-07 - art_sys_83: 2.90275214e-20 - art_sys_84: 1.35022602e-20 - art_sys_85: -1.48410493e-20 - art_sys_86: -2.64093502e-21 - art_sys_87: -4.64007886e-21 - art_sys_88: 7.93234612e-17 - art_sys_89: 2.05044867e-23 - art_sys_90: -3.78609435e-19 - art_sys_91: 1.63915369e-12 - art_sys_92: 4.89044791e-22 - art_sys_93: -2.68293454e-22 - art_sys_94: -2.53689240e-17 - art_sys_95: 1.90427094e-19 - art_sys_96: -1.73812226e-12 - art_sys_97: -2.50380956e-14 - art_sys_98: 9.94279899e-20 - art_sys_99: -1.35985500e-13 - art_sys_100: 1.39744481e-20 - art_sys_101: 1.44762064e-13 - art_sys_102: 3.99493276e-16 - art_sys_103: 8.12036764e-16 - art_sys_104: -8.55302237e-16 - art_sys_105: -1.13059208e-16 - art_sys_106: -6.84533292e-15 - art_sys_107: -9.76949629e-16 - art_sys_108: -1.83761308e-16 - art_sys_109: 7.17341963e-18 - art_sys_110: 2.33524275e-15 - art_sys_111: -1.00536844e-15 - art_sys_112: 3.17930543e-09 - art_sys_113: -1.21202765e-14 - art_sys_114: 1.38045239e-18 - art_sys_115: -3.13913594e-17 - art_sys_116: 6.08931936e-16 - art_sys_117: 7.32760833e-19 - art_sys_118: 2.96058226e-16 - art_sys_119: 9.29060130e-16 - art_sys_120: 5.36000712e-10 - art_sys_121: -5.97993425e-19 - art_sys_122: -1.13087913e-15 - art_sys_123: -3.44361675e-16 - art_sys_124: -3.92564447e-16 - art_sys_125: 9.28809977e-19 - art_sys_126: 1.20360905e-10 - art_sys_127: 4.28279457e-16 - art_sys_128: 1.32775520e-15 - art_sys_129: 2.42455615e-18 - art_sys_130: -1.25299620e-14 - art_sys_131: -3.37484220e-17 - art_sys_132: -9.96680301e-15 - art_sys_133: 2.78682712e-14 - art_sys_134: 1.91726211e-11 - art_sys_135: 4.78098249e-15 - art_sys_136: 9.93508485e-17 - art_sys_137: -4.29560090e-15 - art_sys_138: 2.35199885e-16 - art_sys_139: 6.52707323e-14 - art_sys_140: -2.14794509e-17 - art_sys_141: 2.61713542e-12 - art_sys_142: -1.05768818e-16 - art_sys_143: -4.61990496e-15 - art_sys_144: 1.40006878e-16 - art_sys_145: 3.30105663e-15 - art_sys_146: 3.41769298e-16 - art_sys_147: -2.45337489e-18 - art_sys_148: -1.32013427e-18 - art_sys_149: 1.99550221e-21 - art_sys_150: 1.57357093e-15 - art_sys_151: 4.81914542e-14 - art_sys_152: 7.52210922e-18 - art_sys_153: 4.22418160e-15 - art_sys_154: 1.69703805e-16 - art_sys_155: -1.83257327e-17 - art_sys_156: 0.0 - art_sys_157: 1.03015863e-16 - art_sys_158: 0.0 - art_sys_159: 7.63321990e-16 - art_sys_160: 1.21649248e-18 - art_sys_161: -1.05060557e-16 - art_sys_162: -1.05060557e-16 - art_sys_163: -9.15205960e-17 - art_sys_164: -9.15205960e-17 - art_sys_165: 1.06006399e-30 - art_sys_166: -3.52695617e-31 - art_sys_167: -0.0 - art_sys_168: 6.43966542e-26 - art_sys_169: 6.04829488e-26 - art_sys_170: 5.31692543e-26 - art_sys_171: 1.72714641e-26 - art_sys_172: -6.75092559e-27 - art_sys_173: -4.83361213e-28 - art_sys_174: -5.06445057e-28 - art_sys_175: -3.12330044e-28 - art_sys_176: 1.32589118e-28 - art_sys_177: -5.83406447e-29 - art_sys_178: -8.56449755e-29 - art_sys_179: 5.94594691e-30 - art_sys_180: 2.00223059e-29 - art_sys_181: -2.76518844e-29 - art_sys_182: 8.62558768e-30 - art_sys_183: -7.25862400e-32 - art_sys_184: -9.14419988e-32 - art_sys_185: 2.81530461e-32 + art_sys_55: 4.02315266e-13 + art_sys_56: -2.87194604e-13 + art_sys_57: 5.54651645e-16 + art_sys_58: 8.64352557e-17 + art_sys_59: 2.49197504e-16 + art_sys_60: 2.16020530e-18 + art_sys_61: -8.29104099e-19 + art_sys_62: -7.29884172e-19 + art_sys_63: 4.25612678e-18 + art_sys_64: 4.03893489e-19 + art_sys_65: -8.24681979e-20 + art_sys_66: -7.19611869e-15 + art_sys_67: -1.35288165e-19 + art_sys_68: -1.00645007e-19 + art_sys_69: -2.72097448e-14 + art_sys_70: -1.28055677e-11 + art_sys_71: -1.54238518e-05 + art_sys_72: -7.39481522e-14 + art_sys_73: 2.92084514e-19 + art_sys_74: -3.57714937e-06 + art_sys_75: -8.01412650e-20 + art_sys_76: -4.98545404e-17 + art_sys_77: 2.36480971e-17 + art_sys_78: -1.37955704e-18 + art_sys_79: -2.20530540e-16 + art_sys_80: -9.15368089e-07 + art_sys_81: 5.36844002e-21 + art_sys_82: -4.65625681e-20 + art_sys_83: 5.10075426e-21 + art_sys_84: 1.12906537e-19 + art_sys_85: 2.64543325e-21 + art_sys_86: -4.53279344e-22 + art_sys_87: 5.67163213e-18 + art_sys_88: 2.00113740e-17 + art_sys_89: -6.12746509e-19 + art_sys_90: 1.94667141e-12 + art_sys_91: 1.12011191e-12 + art_sys_92: -3.12654773e-17 + art_sys_93: 4.01532995e-13 + art_sys_94: 2.05004872e-16 + art_sys_95: -8.61404921e-15 + art_sys_96: 1.25832413e-18 + art_sys_97: -1.59342559e-14 + art_sys_98: 1.51205513e-14 + art_sys_99: 1.94782070e-15 + art_sys_100: -7.08909596e-16 + art_sys_101: 1.74033354e-16 + art_sys_102: -1.61423052e-17 + art_sys_103: -2.55676866e-14 + art_sys_104: 2.23310226e-16 + art_sys_105: 3.85407301e-19 + art_sys_106: -9.38536642e-15 + art_sys_107: -1.24355790e-15 + art_sys_108: -1.77994683e-15 + art_sys_109: 3.17933026e-09 + art_sys_110: 4.64420385e-19 + art_sys_111: 6.18802254e-14 + art_sys_112: -1.06714992e-14 + art_sys_113: 3.20924879e-19 + art_sys_114: -2.78750098e-14 + art_sys_115: -8.39469972e-16 + art_sys_116: 5.36020360e-10 + art_sys_117: -1.69096844e-20 + art_sys_118: -4.80121769e-14 + art_sys_119: -1.05560908e-16 + art_sys_120: 2.79535800e-14 + art_sys_121: -1.20361244e-10 + art_sys_122: -9.65284495e-16 + art_sys_123: -6.86939763e-15 + art_sys_124: -2.54600500e-14 + art_sys_125: 1.10379757e-14 + art_sys_126: 1.91654005e-11 + art_sys_127: -2.12573727e-15 + art_sys_128: 5.50175046e-15 + art_sys_129: -3.58269760e-16 + art_sys_130: 2.25971152e-14 + art_sys_131: 2.18166491e-14 + art_sys_132: 5.99773039e-15 + art_sys_133: -2.61479042e-12 + art_sys_134: 9.52451129e-14 + art_sys_135: -6.64421471e-15 + art_sys_136: 8.41511532e-15 + art_sys_137: -4.34088559e-16 + art_sys_138: -1.94749867e-14 + art_sys_139: 5.39481885e-14 + art_sys_140: -1.51132295e-17 + art_sys_141: 2.19439430e-15 + art_sys_142: -0.0 + art_sys_143: -1.62916367e-15 + art_sys_144: -3.28857269e-15 + art_sys_145: -4.30111359e-15 + art_sys_146: 1.32230711e-18 + art_sys_147: -2.52371441e-18 + art_sys_148: -6.42735688e-18 + art_sys_149: -4.59991092e-18 + art_sys_150: -1.51495723e-17 + art_sys_151: -2.90556658e-17 + art_sys_152: 1.74266467e-17 + art_sys_153: 3.36510848e-19 + art_sys_154: -2.75113714e-18 + art_sys_155: -2.97393650e-18 + art_sys_156: -1.00449634e-17 + art_sys_157: -2.57521599e-17 + art_sys_158: -0.0 + art_sys_159: 2.27819253e-15 + art_sys_160: 2.27819253e-15 + art_sys_161: -1.49596190e-16 + art_sys_162: 5.57548727e-29 + art_sys_163: 0.0 + art_sys_164: 3.38595072e-29 + art_sys_165: 2.76172419e-25 + art_sys_166: 5.82575020e-25 + art_sys_167: 1.94856799e-25 + art_sys_168: -1.71230068e-26 + art_sys_169: -6.38880864e-27 + art_sys_170: 1.67376223e-26 + art_sys_171: -2.64912560e-27 + art_sys_172: -4.46237685e-28 + art_sys_173: 1.87460331e-27 + art_sys_174: -2.20266849e-30 + art_sys_175: -1.04499172e-28 + art_sys_176: 9.44663750e-29 + art_sys_177: -4.01800386e-29 + art_sys_178: -7.99942454e-30 + art_sys_179: 8.24163349e-31 + art_sys_180: -9.68285584e-30 + art_sys_181: 1.43897432e-30 + art_sys_182: -7.92781226e-31 + art_sys_183: 1.10321862e-32 + art_sys_184: 1.08630944e-32 + art_sys_185: 1.78943699e-30 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -59022,190 +59022,190 @@ bins: luminosity_uncertainty: 1.93150100e-01 uncorrelated_uncertainty: 7.42885000e-02 - art_sys_1: 1.01403276e-21 - art_sys_2: -4.07370573e-20 + art_sys_2: -4.07657067e-20 art_sys_3: -3.50750636e-06 - art_sys_4: -1.36050540e-19 + art_sys_4: -1.29950300e-19 art_sys_5: -2.23938153e-05 - art_sys_6: -9.80490487e-20 - art_sys_7: 3.40526055e-20 + art_sys_6: -9.33964554e-20 + art_sys_7: 6.37383445e-20 art_sys_8: -5.33662002e-05 - art_sys_9: 3.51165651e-20 - art_sys_10: -3.56267100e-20 + art_sys_9: -2.19636348e-20 + art_sys_10: -3.51022178e-20 art_sys_11: -3.06981755e-05 - art_sys_12: 1.44725097e-20 - art_sys_13: -3.57151124e-17 - art_sys_14: 4.33126942e-19 - art_sys_15: 4.80277987e-04 - art_sys_16: -3.24665272e-18 - art_sys_17: 1.57513123e-17 + art_sys_12: 2.90348914e-19 + art_sys_13: 3.57092382e-17 + art_sys_14: 2.88389602e-18 + art_sys_15: -4.80277987e-04 + art_sys_16: -1.19935193e-18 + art_sys_17: 1.56869826e-17 art_sys_18: 7.01432405e-04 - art_sys_19: 4.79457656e-18 - art_sys_20: -7.87272352e-17 + art_sys_19: -9.71071643e-18 + art_sys_20: -7.86796921e-17 art_sys_21: 2.51157723e-03 - art_sys_22: -1.13058424e-17 - art_sys_23: -5.85723101e-17 + art_sys_22: -1.11692837e-17 + art_sys_23: -5.88350587e-17 art_sys_24: -1.57892712e-03 - art_sys_25: 3.25165706e-18 - art_sys_26: 3.24357128e-18 - art_sys_27: -4.07492170e-03 - art_sys_28: 1.16225057e-14 - art_sys_29: 2.82350558e-03 - art_sys_30: -3.12870475e-17 - art_sys_31: 4.29922408e-14 - art_sys_32: -9.14951823e-03 - art_sys_33: 4.48188335e-16 - art_sys_34: 3.60843435e-13 - art_sys_35: -1.13543924e-13 - art_sys_36: 5.83460273e-14 - art_sys_37: -6.07707108e-14 - art_sys_38: -1.43315804e-14 - art_sys_39: -1.75018405e-16 - art_sys_40: -1.64606362e-15 - art_sys_41: -8.80753820e-16 - art_sys_42: 4.68974784e-16 - art_sys_43: 2.09534621e-16 - art_sys_44: 3.46221365e-17 - art_sys_45: -2.69625360e-17 - art_sys_46: 9.89578553e-18 - art_sys_47: -1.98632301e-02 - art_sys_48: -5.09153346e-11 - art_sys_49: 3.27323414e-03 - art_sys_50: -1.29995665e-19 - art_sys_51: -8.43076012e-19 - art_sys_52: -6.85389217e-13 - art_sys_53: 4.86912706e-12 + art_sys_25: -2.90332108e-18 + art_sys_26: 5.33051607e-18 + art_sys_27: 4.07492170e-03 + art_sys_28: -6.38296681e-14 + art_sys_29: 3.69433399e-14 + art_sys_30: 5.13459827e-14 + art_sys_31: -4.14896455e-15 + art_sys_32: -1.17597904e-15 + art_sys_33: 1.28832394e-15 + art_sys_34: 7.15518509e-16 + art_sys_35: 1.05089563e-15 + art_sys_36: 2.82350558e-03 + art_sys_37: 3.90851498e-18 + art_sys_38: 2.00743731e-16 + art_sys_39: 5.25737958e-14 + art_sys_40: -9.14951823e-03 + art_sys_41: -3.10390088e-15 + art_sys_42: 5.12315104e-17 + art_sys_43: 2.12562148e-14 + art_sys_44: 1.55253787e-17 + art_sys_45: 4.96808104e-13 + art_sys_46: -1.98632301e-02 + art_sys_47: 9.35996196e-18 + art_sys_48: -4.52123346e-12 + art_sys_49: 3.27323415e-03 + art_sys_50: 6.57690054e-19 + art_sys_51: -3.71391521e-18 + art_sys_52: 3.84239007e-12 + art_sys_53: -2.28932730e-12 art_sys_54: 2.01917381e-03 - art_sys_55: 2.14214376e-13 - art_sys_56: -1.03807929e-12 - art_sys_57: 4.08457731e-20 - art_sys_58: -5.66561207e-20 - art_sys_59: 8.56266864e-12 - art_sys_60: 5.89134004e-05 - art_sys_61: -2.19394532e-15 - art_sys_62: 5.96139805e-15 - art_sys_63: -1.46953926e-05 - art_sys_64: -9.75292903e-16 - art_sys_65: 3.16051669e-16 - art_sys_66: -6.71966430e-17 - art_sys_67: -2.87894081e-18 - art_sys_68: 4.27612653e-18 - art_sys_69: 1.33048344e-18 - art_sys_70: 1.02762303e-19 - art_sys_71: -3.65263231e-19 - art_sys_72: -2.50160711e-19 - art_sys_73: 1.24502123e-19 - art_sys_74: -4.88877042e-16 - art_sys_75: -6.13384857e-20 - art_sys_76: -4.47891477e-17 - art_sys_77: -1.33705503e-16 - art_sys_78: -4.03082856e-18 - art_sys_79: -3.96684154e-19 - art_sys_80: -1.86389935e-20 - art_sys_81: 5.53575587e-15 - art_sys_82: -4.01239584e-06 - art_sys_83: -8.55831289e-20 - art_sys_84: -4.27936466e-20 - art_sys_85: 3.77736341e-20 - art_sys_86: 8.01378020e-21 - art_sys_87: 1.33639420e-20 - art_sys_88: -2.10691813e-16 - art_sys_89: -3.84799106e-23 - art_sys_90: 3.40489542e-18 - art_sys_91: -6.88064176e-12 - art_sys_92: -1.28770736e-21 - art_sys_93: 7.37604541e-22 - art_sys_94: 9.80106092e-17 - art_sys_95: -9.72832461e-19 - art_sys_96: 7.64905259e-12 - art_sys_97: 1.31947098e-13 - art_sys_98: -4.60328381e-19 - art_sys_99: 5.95672013e-13 - art_sys_100: 3.55180288e-20 - art_sys_101: -6.34374123e-13 - art_sys_102: -1.09035348e-15 - art_sys_103: -3.98343340e-15 - art_sys_104: 3.65001093e-15 - art_sys_105: 4.18716373e-16 - art_sys_106: 2.98097816e-14 - art_sys_107: 3.81003758e-15 - art_sys_108: 6.80589589e-16 - art_sys_109: -2.63785204e-17 - art_sys_110: 3.30429928e-15 - art_sys_111: 4.30763915e-16 - art_sys_112: -8.44391841e-09 - art_sys_113: 5.93433117e-14 - art_sys_114: -5.14352677e-18 - art_sys_115: 1.26702983e-16 - art_sys_116: -2.30232299e-15 - art_sys_117: -2.53975546e-18 - art_sys_118: -7.08304009e-16 - art_sys_119: -3.76046440e-15 - art_sys_120: -2.09066199e-09 - art_sys_121: 2.29414893e-18 - art_sys_122: 3.09269865e-15 - art_sys_123: 1.23062523e-15 - art_sys_124: 8.94028015e-16 - art_sys_125: -4.47916157e-18 - art_sys_126: -4.64877314e-10 - art_sys_127: -1.25429833e-15 - art_sys_128: -5.14733176e-15 - art_sys_129: -1.09409374e-17 - art_sys_130: 4.64464293e-14 - art_sys_131: 1.52340029e-16 - art_sys_132: 3.88921304e-14 - art_sys_133: -1.03038708e-13 - art_sys_134: -6.85925884e-11 - art_sys_135: -1.84469391e-14 - art_sys_136: -4.50842160e-16 - art_sys_137: 1.61070507e-14 - art_sys_138: -8.12288619e-16 - art_sys_139: -2.41836766e-13 - art_sys_140: 9.26502158e-17 - art_sys_141: -9.69270596e-12 - art_sys_142: 3.35364974e-16 - art_sys_143: 1.71066092e-14 - art_sys_144: -5.45440661e-16 - art_sys_145: -1.17708680e-14 - art_sys_146: -1.26612374e-15 - art_sys_147: 8.12160063e-18 - art_sys_148: 3.42240326e-18 - art_sys_149: -8.37614259e-17 - art_sys_150: -6.25330984e-15 - art_sys_151: -2.19991296e-13 - art_sys_152: -4.02379053e-17 - art_sys_153: -1.70223049e-14 - art_sys_154: -5.58747192e-16 - art_sys_155: 7.84700177e-17 - art_sys_156: -0.0 - art_sys_157: -3.54594036e-16 - art_sys_158: -0.0 - art_sys_159: -2.74033177e-15 - art_sys_160: 1.87130135e-17 - art_sys_161: 3.81179179e-16 - art_sys_162: 3.81179179e-16 - art_sys_163: 3.40481628e-16 - art_sys_164: 3.40481628e-16 - art_sys_165: -3.92657889e-30 - art_sys_166: 1.30629465e-30 - art_sys_167: 0.0 - art_sys_168: -3.25994529e-25 - art_sys_169: -2.75127523e-25 - art_sys_170: -5.45345610e-26 - art_sys_171: -7.84687833e-26 - art_sys_172: 3.05501854e-26 - art_sys_173: 1.27629333e-27 - art_sys_174: 2.13836709e-27 - art_sys_175: 1.27415828e-27 - art_sys_176: -5.39629757e-28 - art_sys_177: 2.45676864e-28 - art_sys_178: 3.47782910e-28 - art_sys_179: -2.53517900e-29 - art_sys_180: -7.26870891e-29 - art_sys_181: 1.16148096e-28 - art_sys_182: -3.90397439e-29 - art_sys_183: 3.42619047e-31 - art_sys_184: 3.46540968e-31 - art_sys_185: -1.01089502e-31 + art_sys_55: -1.96627418e-12 + art_sys_56: 7.55885436e-13 + art_sys_57: 1.03548598e-15 + art_sys_58: -1.05476786e-16 + art_sys_59: -3.45966408e-17 + art_sys_60: -1.08757733e-17 + art_sys_61: -2.44401419e-17 + art_sys_62: -2.29678698e-18 + art_sys_63: -1.64706584e-17 + art_sys_64: -1.07845527e-18 + art_sys_65: 4.00517884e-19 + art_sys_66: 2.74963066e-14 + art_sys_67: 4.79627387e-19 + art_sys_68: 3.62734469e-19 + art_sys_69: 1.19758065e-13 + art_sys_70: 4.86215111e-11 + art_sys_71: 5.89134075e-05 + art_sys_72: 2.92439981e-13 + art_sys_73: -1.16833135e-18 + art_sys_74: 1.46953834e-05 + art_sys_75: 5.86049453e-19 + art_sys_76: 2.19820471e-16 + art_sys_77: -1.04800028e-16 + art_sys_78: 6.06312839e-18 + art_sys_79: 9.66433257e-16 + art_sys_80: 4.01238218e-06 + art_sys_81: -9.88080767e-21 + art_sys_82: 1.18860264e-19 + art_sys_83: -1.12927901e-20 + art_sys_84: -6.03480844e-20 + art_sys_85: -9.63977007e-21 + art_sys_86: -4.48278098e-21 + art_sys_87: -1.21583447e-17 + art_sys_88: -7.75387903e-17 + art_sys_89: 1.85889817e-18 + art_sys_90: -7.50675212e-12 + art_sys_91: -4.80926926e-12 + art_sys_92: 8.25417004e-17 + art_sys_93: -1.75972450e-12 + art_sys_94: -5.43416454e-16 + art_sys_95: 3.90980675e-14 + art_sys_96: -4.43992853e-18 + art_sys_97: 4.23139749e-14 + art_sys_98: -6.68142257e-14 + art_sys_99: -6.85761882e-15 + art_sys_100: 1.85872531e-15 + art_sys_101: -3.70899975e-16 + art_sys_102: 5.97959842e-17 + art_sys_103: 1.00340373e-13 + art_sys_104: -1.84682926e-15 + art_sys_105: -1.82901829e-18 + art_sys_106: 2.53885412e-14 + art_sys_107: 5.86976271e-15 + art_sys_108: 6.94259971e-15 + art_sys_109: -8.44398398e-09 + art_sys_110: -2.05313042e-18 + art_sys_111: -1.64392282e-13 + art_sys_112: 3.78547054e-14 + art_sys_113: -1.41546411e-18 + art_sys_114: 7.46819278e-14 + art_sys_115: 3.00085677e-15 + art_sys_116: -2.09073837e-09 + art_sys_117: 7.79607664e-20 + art_sys_118: 1.27672644e-13 + art_sys_119: 3.76685452e-16 + art_sys_120: -7.31748193e-14 + art_sys_121: 4.64878965e-10 + art_sys_122: 8.99263832e-15 + art_sys_123: 2.54067616e-14 + art_sys_124: 9.83718099e-14 + art_sys_125: -4.24924161e-14 + art_sys_126: -6.85667867e-11 + art_sys_127: 7.26340814e-15 + art_sys_128: -2.04642030e-14 + art_sys_129: 1.47727425e-15 + art_sys_130: -8.39158260e-14 + art_sys_131: -8.06910127e-14 + art_sys_132: -2.14696568e-14 + art_sys_133: 9.68440295e-12 + art_sys_134: -3.52181929e-13 + art_sys_135: 2.37027852e-14 + art_sys_136: -3.29831239e-14 + art_sys_137: 1.31278717e-15 + art_sys_138: 8.99205998e-14 + art_sys_139: -2.41263909e-13 + art_sys_140: 8.52176577e-17 + art_sys_141: -1.39979450e-14 + art_sys_142: 0.0 + art_sys_143: 6.41217899e-15 + art_sys_144: 1.52838851e-14 + art_sys_145: 2.20018636e-14 + art_sys_146: -6.03033430e-18 + art_sys_147: 1.15250200e-17 + art_sys_148: 2.64215133e-17 + art_sys_149: 2.04312744e-17 + art_sys_150: 7.10900305e-17 + art_sys_151: 1.18351550e-16 + art_sys_152: -6.38798508e-17 + art_sys_153: -1.21273722e-18 + art_sys_154: 9.13908858e-18 + art_sys_155: 1.80685433e-17 + art_sys_156: 5.46663180e-17 + art_sys_157: 1.16562386e-16 + art_sys_158: 0.0 + art_sys_159: -9.29255574e-15 + art_sys_160: -9.29255574e-15 + art_sys_161: 6.12309777e-16 + art_sys_162: -2.28137370e-28 + art_sys_163: -0.0 + art_sys_164: -1.38514319e-28 + art_sys_165: -1.27328094e-24 + art_sys_166: -2.65211845e-24 + art_sys_167: -8.92213659e-25 + art_sys_168: 6.74025075e-26 + art_sys_169: 2.40561736e-26 + art_sys_170: -6.62428640e-26 + art_sys_171: 5.66707911e-27 + art_sys_172: 4.70534435e-27 + art_sys_173: -8.49659686e-27 + art_sys_174: 1.36005466e-29 + art_sys_175: 4.86420304e-28 + art_sys_176: -5.56905917e-28 + art_sys_177: 2.02056017e-28 + art_sys_178: 3.14987381e-29 + art_sys_179: -1.38622246e-29 + art_sys_180: 3.30105048e-29 + art_sys_181: -6.81216783e-30 + art_sys_182: 3.76593839e-30 + art_sys_183: -3.51935327e-32 + art_sys_184: -3.99649768e-32 + art_sys_185: -7.30634034e-30 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -59313,190 +59313,190 @@ bins: luminosity_uncertainty: 9.01469400e-02 uncorrelated_uncertainty: 3.46719000e-02 - art_sys_1: 1.10010385e-22 - art_sys_2: -3.02637413e-21 + art_sys_2: -3.02872000e-21 art_sys_3: -3.25962952e-07 - art_sys_4: 4.11985855e-21 + art_sys_4: -5.93960209e-21 art_sys_5: -1.68210303e-06 - art_sys_6: -6.43399722e-21 - art_sys_7: -8.79637469e-22 + art_sys_6: -6.08350696e-21 + art_sys_7: -2.47385141e-21 art_sys_8: -3.57245924e-06 - art_sys_9: 2.03177343e-21 - art_sys_10: 4.32215255e-21 + art_sys_9: 1.54969508e-21 + art_sys_10: 4.35907568e-21 art_sys_11: 4.87461190e-07 - art_sys_12: 6.25004274e-22 - art_sys_13: -3.62583342e-18 - art_sys_14: 9.71722845e-20 - art_sys_15: 4.61273005e-05 - art_sys_16: -8.07740293e-19 - art_sys_17: 1.28341579e-18 + art_sys_12: 2.72943666e-20 + art_sys_13: 3.62590126e-18 + art_sys_14: 1.83352966e-19 + art_sys_15: -4.61273005e-05 + art_sys_16: 1.21583111e-19 + art_sys_17: 1.27459815e-18 art_sys_18: -5.45545230e-05 - art_sys_19: -2.36217985e-18 - art_sys_20: -9.99910393e-18 + art_sys_19: 1.67264674e-18 + art_sys_20: -9.99371735e-18 art_sys_21: 1.88384316e-04 - art_sys_22: 4.66113434e-18 - art_sys_23: -7.15349175e-18 + art_sys_22: 4.68317947e-18 + art_sys_23: -7.20156299e-18 art_sys_24: -2.32715617e-04 - art_sys_25: 3.21988683e-18 - art_sys_26: -5.70917255e-18 - art_sys_27: 1.09299439e-03 - art_sys_28: 2.76922158e-14 - art_sys_29: 3.79353656e-03 - art_sys_30: -1.79973323e-17 - art_sys_31: -1.20769501e-14 - art_sys_32: 3.22960200e-03 - art_sys_33: -8.11604283e-17 - art_sys_34: 1.27309705e-13 - art_sys_35: -5.54957967e-15 - art_sys_36: 4.32814216e-14 - art_sys_37: 4.45903466e-14 - art_sys_38: -3.95968981e-15 - art_sys_39: -2.85224458e-15 - art_sys_40: 7.57986718e-16 - art_sys_41: -1.22714630e-15 - art_sys_42: -2.66922375e-16 - art_sys_43: -4.97060745e-17 - art_sys_44: 3.26883517e-17 - art_sys_45: 1.02601984e-17 - art_sys_46: 2.87448522e-17 - art_sys_47: -7.00611504e-03 - art_sys_48: 2.89228731e-10 + art_sys_25: -3.37729813e-18 + art_sys_26: -7.13976935e-18 + art_sys_27: -1.09299439e-03 + art_sys_28: -7.36791703e-14 + art_sys_29: -2.28578748e-14 + art_sys_30: -2.55123219e-14 + art_sys_31: 1.82887958e-14 + art_sys_32: -4.71920004e-15 + art_sys_33: 9.15646919e-16 + art_sys_34: -1.75510721e-15 + art_sys_35: -4.33282510e-16 + art_sys_36: 3.79353656e-03 + art_sys_37: 2.61015824e-17 + art_sys_38: 1.15293469e-16 + art_sys_39: -2.16570721e-14 + art_sys_40: 3.22960200e-03 + art_sys_41: 1.01794928e-15 + art_sys_42: -1.75376949e-17 + art_sys_43: 7.46384882e-15 + art_sys_44: -6.48700683e-17 + art_sys_45: 2.09734147e-13 + art_sys_46: -7.00611503e-03 + art_sys_47: -9.37554815e-18 + art_sys_48: 1.64220360e-11 art_sys_49: -1.19462642e-02 - art_sys_50: -1.36565784e-18 - art_sys_51: 1.58360839e-18 - art_sys_52: -9.00981549e-12 - art_sys_53: -7.79705401e-12 + art_sys_50: -1.90067125e-19 + art_sys_51: 6.94053035e-18 + art_sys_52: -6.33952442e-12 + art_sys_53: -1.00178711e-12 art_sys_54: -3.35190987e-03 - art_sys_55: -3.50464886e-13 - art_sys_56: 3.58804730e-12 - art_sys_57: -3.68432386e-21 - art_sys_58: 9.41253890e-20 - art_sys_59: -3.95318530e-11 - art_sys_60: -2.68786649e-04 - art_sys_61: 8.16142947e-15 - art_sys_62: -1.42473276e-13 - art_sys_63: 4.80107678e-05 - art_sys_64: 1.31396234e-15 - art_sys_65: -8.91521324e-16 - art_sys_66: -1.66645430e-16 - art_sys_67: -2.76157637e-17 - art_sys_68: -1.79103426e-17 - art_sys_69: -5.30516214e-18 - art_sys_70: -4.42733013e-19 - art_sys_71: 1.34861279e-18 - art_sys_72: 9.38448217e-19 - art_sys_73: -4.66029529e-19 - art_sys_74: 1.81859624e-15 - art_sys_75: 2.22650876e-19 - art_sys_76: 1.76505136e-16 - art_sys_77: 5.00441380e-16 - art_sys_78: 1.32577727e-17 - art_sys_79: 1.37648947e-18 - art_sys_80: -4.95969372e-19 - art_sys_81: -2.05930821e-14 - art_sys_82: 1.49260123e-05 - art_sys_83: 6.01555005e-19 - art_sys_84: 2.50984895e-19 - art_sys_85: -3.03420862e-19 - art_sys_86: -5.11474933e-20 - art_sys_87: -1.42763168e-20 - art_sys_88: 1.57614547e-15 - art_sys_89: 5.00276927e-22 - art_sys_90: 5.95289565e-19 - art_sys_91: 2.45763284e-11 - art_sys_92: 9.66129692e-21 - art_sys_93: -5.22373823e-21 - art_sys_94: -5.13657194e-16 - art_sys_95: 3.56802679e-18 - art_sys_96: -2.85541886e-11 - art_sys_97: -5.12192436e-14 - art_sys_98: 1.67300385e-18 - art_sys_99: -2.21455845e-12 - art_sys_100: 9.83175694e-19 - art_sys_101: 2.35924606e-12 - art_sys_102: 7.83682337e-15 - art_sys_103: 6.51473373e-15 - art_sys_104: -1.41067034e-14 - art_sys_105: -2.07932032e-15 - art_sys_106: -1.12002987e-13 - art_sys_107: -1.52937072e-14 - art_sys_108: -3.37975637e-15 - art_sys_109: 1.31613783e-16 - art_sys_110: 7.87026585e-14 - art_sys_111: -2.45836393e-14 - art_sys_112: 6.31759754e-08 - art_sys_113: -9.79601293e-14 - art_sys_114: 2.54400447e-17 - art_sys_115: -5.35196209e-16 - art_sys_116: 1.17002155e-14 - art_sys_117: 1.31859271e-17 - art_sys_118: 6.02766363e-15 - art_sys_119: 2.02648588e-14 - art_sys_120: 8.39427649e-09 - art_sys_121: -1.11265707e-17 - art_sys_122: -2.21158213e-14 - art_sys_123: -6.13612690e-15 - art_sys_124: -8.18581134e-15 - art_sys_125: 1.88032308e-17 - art_sys_126: 2.43703781e-09 - art_sys_127: 7.31817402e-15 - art_sys_128: 2.04211869e-14 - art_sys_129: 4.79122938e-17 - art_sys_130: -2.30529794e-13 - art_sys_131: -6.66965554e-16 - art_sys_132: -1.55296715e-13 - art_sys_133: 5.12306198e-13 - art_sys_134: 3.42114194e-10 - art_sys_135: 9.36236394e-14 - art_sys_136: 1.96699996e-15 - art_sys_137: -7.93561140e-14 - art_sys_138: 4.27400598e-15 - art_sys_139: 1.20063921e-12 - art_sys_140: -4.18843829e-16 - art_sys_141: 4.81346127e-11 - art_sys_142: -1.35610704e-15 - art_sys_143: -8.49478381e-14 - art_sys_144: 2.64744950e-15 - art_sys_145: 5.86690836e-14 - art_sys_146: 6.30209444e-15 - art_sys_147: -4.27685767e-17 - art_sys_148: -2.10427192e-17 - art_sys_149: 1.34363091e-17 - art_sys_150: 2.97375362e-14 - art_sys_151: 9.55916048e-13 - art_sys_152: 1.61367848e-16 - art_sys_153: 8.00042386e-14 - art_sys_154: 2.81561357e-15 - art_sys_155: -3.51113924e-16 - art_sys_156: 0.0 - art_sys_157: 1.79840205e-15 - art_sys_158: 0.0 - art_sys_159: 1.37683210e-14 - art_sys_160: -6.90767329e-18 - art_sys_161: -1.88786341e-15 - art_sys_162: -1.88786341e-15 - art_sys_163: -1.66035315e-15 - art_sys_164: -1.66035315e-15 - art_sys_165: 1.92005082e-29 - art_sys_166: -6.38715049e-30 - art_sys_167: -0.0 - art_sys_168: 1.27057756e-24 - art_sys_169: 1.19849392e-24 - art_sys_170: 4.90834788e-25 - art_sys_171: 3.38187648e-25 - art_sys_172: -1.32373889e-25 - art_sys_173: -8.39998453e-27 - art_sys_174: -9.93606260e-27 - art_sys_175: -6.04477827e-27 - art_sys_176: 2.57070867e-27 - art_sys_177: -1.13728222e-27 - art_sys_178: -1.65640680e-27 - art_sys_179: 1.13455817e-28 - art_sys_180: 3.61893423e-28 - art_sys_181: -5.40271230e-28 - art_sys_182: 1.68942297e-28 - art_sys_183: -1.46729463e-30 - art_sys_184: -1.70214536e-30 - art_sys_185: 5.09840349e-31 + art_sys_55: 3.27615411e-12 + art_sys_56: -2.75785979e-12 + art_sys_57: -3.02125810e-15 + art_sys_58: -1.90166751e-16 + art_sys_59: 4.77601700e-16 + art_sys_60: 4.83005427e-17 + art_sys_61: 1.69251142e-16 + art_sys_62: -9.35174112e-18 + art_sys_63: 5.92911423e-17 + art_sys_64: 6.14423960e-18 + art_sys_65: -8.72983433e-19 + art_sys_66: -1.25269201e-13 + art_sys_67: -2.68328019e-18 + art_sys_68: -2.02444471e-18 + art_sys_69: -4.48794454e-13 + art_sys_70: -2.27314823e-10 + art_sys_71: -2.68786667e-04 + art_sys_72: -1.31349473e-12 + art_sys_73: 4.24277950e-18 + art_sys_74: -4.80107369e-05 + art_sys_75: -4.42028579e-19 + art_sys_76: -8.10492967e-16 + art_sys_77: 3.82810652e-16 + art_sys_78: -2.23702496e-17 + art_sys_79: -3.59634596e-15 + art_sys_80: -1.49259619e-05 + art_sys_81: 1.33895770e-19 + art_sys_82: -9.34500038e-19 + art_sys_83: 1.01719676e-19 + art_sys_84: 2.16104893e-19 + art_sys_85: 4.68165136e-20 + art_sys_86: 1.55186833e-20 + art_sys_87: 1.22317706e-16 + art_sys_88: 4.03521041e-16 + art_sys_89: -8.11015626e-18 + art_sys_90: 1.89993800e-11 + art_sys_91: 1.70033330e-11 + art_sys_92: -6.22571834e-16 + art_sys_93: 6.55321270e-12 + art_sys_94: 4.07697031e-15 + art_sys_95: -1.57327816e-13 + art_sys_96: 2.21780561e-17 + art_sys_97: -3.16648905e-13 + art_sys_98: 2.53438560e-13 + art_sys_99: 5.87836071e-14 + art_sys_100: -1.41680047e-14 + art_sys_101: 3.63606730e-15 + art_sys_102: -2.96914922e-16 + art_sys_103: -3.98390789e-13 + art_sys_104: 2.12469506e-15 + art_sys_105: 7.78186353e-18 + art_sys_106: -1.85480004e-13 + art_sys_107: -1.19849660e-14 + art_sys_108: -2.75884941e-14 + art_sys_109: 6.31764701e-08 + art_sys_110: 9.11986615e-18 + art_sys_111: 1.22946429e-12 + art_sys_112: -1.87673197e-13 + art_sys_113: 6.29803822e-18 + art_sys_114: -5.51775495e-13 + art_sys_115: -1.49585088e-14 + art_sys_116: 8.39458304e-09 + art_sys_117: -3.36400179e-19 + art_sys_118: -9.53578179e-13 + art_sys_119: -1.87939603e-15 + art_sys_120: 5.59290544e-13 + art_sys_121: -2.43704659e-09 + art_sys_122: 3.46588286e-15 + art_sys_123: -1.26297122e-13 + art_sys_124: -4.00619935e-13 + art_sys_125: 1.79584284e-13 + art_sys_126: 3.41985687e-10 + art_sys_127: -4.37413954e-14 + art_sys_128: 1.01354856e-13 + art_sys_129: -6.85432394e-15 + art_sys_130: 4.15982850e-13 + art_sys_131: 4.01058962e-13 + art_sys_132: 1.04825063e-13 + art_sys_133: -4.80921232e-11 + art_sys_134: 1.75080998e-12 + art_sys_135: -1.17697807e-13 + art_sys_136: 1.57815676e-13 + art_sys_137: -6.54294432e-15 + art_sys_138: -3.88020518e-13 + art_sys_139: 1.06184532e-12 + art_sys_140: -2.27647543e-17 + art_sys_141: 5.04236399e-14 + art_sys_142: -0.0 + art_sys_143: -3.00872555e-14 + art_sys_144: -6.56714834e-14 + art_sys_145: -8.94915196e-14 + art_sys_146: 2.62324045e-17 + art_sys_147: -5.00968777e-17 + art_sys_148: -1.23705186e-16 + art_sys_149: -9.04883952e-17 + art_sys_150: -3.03750962e-16 + art_sys_151: -5.59170470e-16 + art_sys_152: 3.20218921e-16 + art_sys_153: 6.20438118e-18 + art_sys_154: -4.97982358e-17 + art_sys_155: -6.47696981e-17 + art_sys_156: -2.15391940e-16 + art_sys_157: -5.11169702e-16 + art_sys_158: -0.0 + art_sys_159: 4.35114460e-14 + art_sys_160: 4.35114460e-14 + art_sys_161: -2.87278933e-15 + art_sys_162: 1.07027359e-27 + art_sys_163: 0.0 + art_sys_164: 6.49836574e-28 + art_sys_165: 5.49993270e-24 + art_sys_166: 1.15510650e-23 + art_sys_167: 3.86817999e-24 + art_sys_168: -3.29563097e-25 + art_sys_169: -1.24337157e-25 + art_sys_170: 3.22227779e-25 + art_sys_171: -2.50575405e-26 + art_sys_172: -1.61287283e-26 + art_sys_173: 4.46347484e-26 + art_sys_174: -4.97294779e-29 + art_sys_175: -2.31640782e-27 + art_sys_176: 2.44126873e-27 + art_sys_177: -9.60378618e-28 + art_sys_178: -1.59745371e-28 + art_sys_179: 2.43281188e-29 + art_sys_180: -1.82585707e-28 + art_sys_181: 2.95067125e-29 + art_sys_182: -1.66351814e-29 + art_sys_183: 1.85360146e-31 + art_sys_184: 2.00503016e-31 + art_sys_185: 3.43991870e-29 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -59604,190 +59604,190 @@ bins: luminosity_uncertainty: 4.16457600e-02 uncorrelated_uncertainty: 1.60176000e-02 - art_sys_1: -1.80580200e-25 - art_sys_2: -2.35343693e-22 + art_sys_2: -2.35557930e-22 art_sys_3: -1.23051052e-08 - art_sys_4: 2.34131616e-21 + art_sys_4: 3.97624152e-23 art_sys_5: -1.36089256e-07 - art_sys_6: -2.78206015e-22 - art_sys_7: -8.77562840e-22 + art_sys_6: -2.45898947e-22 + art_sys_7: -1.51716161e-21 art_sys_8: -2.00926068e-07 - art_sys_9: -4.35621963e-23 - art_sys_10: 7.45623049e-22 + art_sys_9: 7.14966498e-22 + art_sys_10: 7.47701040e-22 art_sys_11: 4.44618585e-07 - art_sys_12: -7.07183988e-22 - art_sys_13: 3.63471657e-19 - art_sys_14: -1.93762952e-20 - art_sys_15: -5.20505729e-06 - art_sys_16: 9.15895553e-20 - art_sys_17: -2.80877840e-19 + art_sys_12: -3.61210368e-21 + art_sys_13: -3.63388801e-19 + art_sys_14: -4.04714678e-20 + art_sys_15: 5.20505729e-06 + art_sys_16: -2.50253305e-20 + art_sys_17: -2.80519614e-19 art_sys_18: -2.71256521e-05 - art_sys_19: -4.62208249e-19 - art_sys_20: 1.22547486e-18 + art_sys_19: 5.42110964e-19 + art_sys_20: 1.22471556e-18 art_sys_21: -4.81442150e-05 - art_sys_22: 6.56814908e-19 - art_sys_23: 9.50759468e-19 + art_sys_22: 6.53628856e-19 + art_sys_23: 9.55460766e-19 art_sys_24: 2.57337836e-05 - art_sys_25: -1.07744116e-19 - art_sys_26: -2.99035048e-19 - art_sys_27: 1.95077404e-04 - art_sys_28: -1.24002030e-15 - art_sys_29: -2.38592254e-04 - art_sys_30: 2.16793046e-18 - art_sys_31: -2.92854305e-15 - art_sys_32: 5.67455656e-04 - art_sys_33: -3.40429086e-17 - art_sys_34: -4.29849495e-14 - art_sys_35: 1.58250891e-14 - art_sys_36: -7.94350739e-14 - art_sys_37: 1.91492455e-14 - art_sys_38: -1.84906392e-14 - art_sys_39: 2.46366707e-15 - art_sys_40: 2.21745034e-17 - art_sys_41: 2.63387626e-16 - art_sys_42: -9.44558249e-16 - art_sys_43: -3.87728365e-16 - art_sys_44: 2.16732740e-17 - art_sys_45: -4.74570231e-17 - art_sys_46: -5.79838943e-17 - art_sys_47: 2.36610260e-03 - art_sys_48: 1.48879789e-10 + art_sys_25: 8.50631872e-20 + art_sys_26: -3.77462555e-19 + art_sys_27: -1.95077404e-04 + art_sys_28: 5.13578119e-15 + art_sys_29: -9.21737428e-14 + art_sys_30: -3.22184654e-14 + art_sys_31: -1.29874453e-14 + art_sys_32: -5.23577608e-16 + art_sys_33: -4.50715001e-16 + art_sys_34: -1.75521920e-15 + art_sys_35: -2.60439843e-16 + art_sys_36: -2.38592254e-04 + art_sys_37: -6.93877425e-19 + art_sys_38: -1.57438936e-16 + art_sys_39: -2.99846266e-15 + art_sys_40: 5.67455656e-04 + art_sys_41: 1.98689989e-16 + art_sys_42: -4.39084142e-17 + art_sys_43: -2.53336687e-15 + art_sys_44: -7.91043890e-17 + art_sys_45: -5.68798504e-14 + art_sys_46: 2.36610260e-03 + art_sys_47: -6.36009605e-18 + art_sys_48: 8.91477250e-12 art_sys_49: -6.48060855e-03 - art_sys_50: 6.95635726e-19 - art_sys_51: -2.36118227e-18 - art_sys_52: -3.97605986e-12 - art_sys_53: 1.85841114e-11 - art_sys_54: 7.37143139e-03 - art_sys_55: 7.82653353e-13 - art_sys_56: 1.96478763e-12 - art_sys_57: 3.61238969e-19 - art_sys_58: -3.75234856e-19 - art_sys_59: 2.57430485e-11 - art_sys_60: 1.93722717e-04 - art_sys_61: -1.86252324e-14 - art_sys_62: -3.54029802e-13 - art_sys_63: -1.42306012e-04 - art_sys_64: -7.88531361e-15 - art_sys_65: 1.56306552e-15 - art_sys_66: 6.50721336e-17 - art_sys_67: 6.67750698e-17 - art_sys_68: 4.20745375e-17 - art_sys_69: 1.17023005e-17 - art_sys_70: 9.10777593e-19 - art_sys_71: -3.17586069e-18 - art_sys_72: -2.14204434e-18 - art_sys_73: 1.08537665e-18 - art_sys_74: -4.15021252e-15 - art_sys_75: -5.33533714e-19 - art_sys_76: -4.07923852e-16 - art_sys_77: -1.14364682e-15 - art_sys_78: -2.81988646e-17 - art_sys_79: -3.18280575e-18 - art_sys_80: 1.27142183e-18 - art_sys_81: 4.69955120e-14 - art_sys_82: -3.40627597e-05 - art_sys_83: -1.60928696e-18 - art_sys_84: -8.16163589e-19 - art_sys_85: 7.80321561e-19 - art_sys_86: 1.52921185e-19 - art_sys_87: 7.01729266e-20 - art_sys_88: -4.29539521e-15 - art_sys_89: -1.08839291e-21 - art_sys_90: 5.21726005e-17 - art_sys_91: -5.94231909e-11 - art_sys_92: -2.66392534e-20 - art_sys_93: 1.48823268e-20 - art_sys_94: 1.67369161e-15 - art_sys_95: -8.42953308e-18 - art_sys_96: 6.48411856e-11 - art_sys_97: 8.75685093e-14 - art_sys_98: -3.74037634e-18 - art_sys_99: 5.05816756e-12 - art_sys_100: 1.06468010e-17 - art_sys_101: -5.38610590e-12 - art_sys_102: -2.20418998e-14 - art_sys_103: -1.45325335e-14 - art_sys_104: 3.27519689e-14 - art_sys_105: 7.89597068e-15 - art_sys_106: 2.56799730e-13 - art_sys_107: 6.89596921e-14 - art_sys_108: 1.28340135e-14 - art_sys_109: -4.99640938e-16 - art_sys_110: -8.38259515e-16 - art_sys_111: 7.69101855e-14 - art_sys_112: -1.72179142e-07 - art_sys_113: 2.16837269e-13 - art_sys_114: -9.66338054e-17 - art_sys_115: 1.20467314e-15 - art_sys_116: -4.08679150e-14 - art_sys_117: -4.99289267e-17 - art_sys_118: -1.70683859e-14 - art_sys_119: -5.95666485e-14 - art_sys_120: -3.78341896e-08 - art_sys_121: 4.23368909e-17 - art_sys_122: 6.34327850e-14 - art_sys_123: 2.37020914e-14 - art_sys_124: 1.91196964e-14 - art_sys_125: -7.23507588e-17 - art_sys_126: -7.93947912e-09 - art_sys_127: -2.75358100e-14 - art_sys_128: -9.36774340e-14 - art_sys_129: -1.83350295e-16 - art_sys_130: 8.75391307e-13 - art_sys_131: 2.55248887e-15 - art_sys_132: 7.04326372e-13 - art_sys_133: -1.94510032e-12 - art_sys_134: -1.31918111e-09 - art_sys_135: -3.18644647e-13 - art_sys_136: -7.53191009e-15 - art_sys_137: 3.01390921e-13 - art_sys_138: -1.61142647e-14 - art_sys_139: -4.55923513e-12 - art_sys_140: 1.59153934e-15 - art_sys_141: -1.82780698e-10 - art_sys_142: 8.00187469e-15 - art_sys_143: 3.22652241e-13 - art_sys_144: -9.93381865e-15 - art_sys_145: -2.27354023e-13 - art_sys_146: -2.38514255e-14 - art_sys_147: 1.65432776e-16 - art_sys_148: 8.27411388e-17 - art_sys_149: -8.87653535e-16 - art_sys_150: -1.12830071e-13 - art_sys_151: -3.66332419e-12 - art_sys_152: -6.11016499e-16 - art_sys_153: -3.04889931e-13 - art_sys_154: -7.40865815e-15 - art_sys_155: 1.36087435e-15 - art_sys_156: -0.0 - art_sys_157: -6.83486002e-15 - art_sys_158: -0.0 - art_sys_159: -5.28615803e-14 - art_sys_160: 1.00596294e-16 - art_sys_161: 7.32526994e-15 - art_sys_162: 7.32526994e-15 - art_sys_163: 6.43828375e-15 - art_sys_164: 6.43828375e-15 - art_sys_165: -7.44554679e-29 - art_sys_166: 2.47725984e-29 - art_sys_167: 0.0 - art_sys_168: -4.82793952e-24 - art_sys_169: -4.59520692e-24 - art_sys_170: -2.57791508e-24 - art_sys_171: -1.31065007e-24 - art_sys_172: 5.06511282e-25 - art_sys_173: 2.89281872e-26 - art_sys_174: 3.72144687e-26 - art_sys_175: 2.24955008e-26 - art_sys_176: -9.54398347e-27 - art_sys_177: 4.26689702e-27 - art_sys_178: 6.15985615e-27 - art_sys_179: -4.41148968e-28 - art_sys_180: -1.39324582e-27 - art_sys_181: 2.01831373e-27 - art_sys_182: -6.48386469e-28 - art_sys_183: 5.63636223e-30 - art_sys_184: 6.43259042e-30 - art_sys_185: -1.94701191e-30 + art_sys_50: 2.24723330e-18 + art_sys_51: -1.33977611e-17 + art_sys_52: 1.41379149e-11 + art_sys_53: 1.63718196e-13 + art_sys_54: 7.37143140e-03 + art_sys_55: -7.17602584e-12 + art_sys_56: -1.49722277e-12 + art_sys_57: 4.48548397e-15 + art_sys_58: 7.84235367e-16 + art_sys_59: 4.96444361e-16 + art_sys_60: -3.40684188e-17 + art_sys_61: 3.51632013e-18 + art_sys_62: -3.96505819e-17 + art_sys_63: -1.08127755e-16 + art_sys_64: 3.01809587e-18 + art_sys_65: 7.35577146e-18 + art_sys_66: 9.13040513e-14 + art_sys_67: -2.31030120e-18 + art_sys_68: -4.61898789e-19 + art_sys_69: 1.00798306e-12 + art_sys_70: 1.33051853e-10 + art_sys_71: 1.93722808e-04 + art_sys_72: 1.05344953e-12 + art_sys_73: -1.03337174e-17 + art_sys_74: 1.42305926e-04 + art_sys_75: 8.19512630e-19 + art_sys_76: 1.85382608e-15 + art_sys_77: -8.72125326e-16 + art_sys_78: 5.27599752e-17 + art_sys_79: 8.20735616e-15 + art_sys_80: 3.40626426e-05 + art_sys_81: -2.21265733e-19 + art_sys_82: 2.45780543e-18 + art_sys_83: -2.43930010e-19 + art_sys_84: 8.56569618e-20 + art_sys_85: -1.72228998e-19 + art_sys_86: -7.18755766e-20 + art_sys_87: -2.68433424e-16 + art_sys_88: -1.32415668e-15 + art_sys_89: 4.55462290e-17 + art_sys_90: -9.04865313e-11 + art_sys_91: -4.35023500e-11 + art_sys_92: 1.68636946e-15 + art_sys_93: -1.49560248e-11 + art_sys_94: -1.10895509e-14 + art_sys_95: 2.95927429e-13 + art_sys_96: -8.60931346e-17 + art_sys_97: 8.62862776e-13 + art_sys_98: -5.52710319e-13 + art_sys_99: -1.36358373e-13 + art_sys_100: 3.80745744e-14 + art_sys_101: -1.08298615e-14 + art_sys_102: 1.12745658e-15 + art_sys_103: 1.81277912e-12 + art_sys_104: 8.23202285e-16 + art_sys_105: -2.97455327e-17 + art_sys_106: 5.06514623e-13 + art_sys_107: 2.07995931e-14 + art_sys_108: 1.25901907e-13 + art_sys_109: -1.72180482e-07 + art_sys_110: -3.47971510e-17 + art_sys_111: -3.35197832e-12 + art_sys_112: 7.37537957e-13 + art_sys_113: -2.40236387e-17 + art_sys_114: 1.51772900e-12 + art_sys_115: 5.77860220e-14 + art_sys_116: -3.78355749e-08 + art_sys_117: 1.29005235e-18 + art_sys_118: 2.60198142e-12 + art_sys_119: 7.25519626e-15 + art_sys_120: -1.49951177e-12 + art_sys_121: 7.93949912e-09 + art_sys_122: 1.37980910e-13 + art_sys_123: 4.79501328e-13 + art_sys_124: 1.78631895e-12 + art_sys_125: -7.71110150e-13 + art_sys_126: -1.31868383e-09 + art_sys_127: 1.41059911e-13 + art_sys_128: -3.84856149e-13 + art_sys_129: 2.60833267e-14 + art_sys_130: -1.57977498e-12 + art_sys_131: -1.52291403e-12 + art_sys_132: -4.15363227e-13 + art_sys_133: 1.82619640e-10 + art_sys_134: -6.64788898e-12 + art_sys_135: 4.59384395e-13 + art_sys_136: -6.00746812e-13 + art_sys_137: 2.88070772e-14 + art_sys_138: 1.48769017e-12 + art_sys_139: -4.06486439e-12 + art_sys_140: 3.50040089e-16 + art_sys_141: -1.95016482e-13 + art_sys_142: 0.0 + art_sys_143: 1.16814777e-13 + art_sys_144: 2.51878407e-13 + art_sys_145: 3.43617904e-13 + art_sys_146: -1.00455033e-16 + art_sys_147: 1.91831982e-16 + art_sys_148: 4.66103314e-16 + art_sys_149: 3.45323231e-16 + art_sys_150: 1.16542684e-15 + art_sys_151: 2.09691377e-15 + art_sys_152: -1.21122594e-15 + art_sys_153: -2.31634128e-17 + art_sys_154: 1.83294391e-16 + art_sys_155: 2.60674117e-16 + art_sys_156: 8.24815025e-16 + art_sys_157: 1.94762070e-15 + art_sys_158: 0.0 + art_sys_159: -1.64995286e-13 + art_sys_160: -1.64995286e-13 + art_sys_161: 1.08327685e-14 + art_sys_162: -4.03730190e-27 + art_sys_163: -0.0 + art_sys_164: -2.45170504e-27 + art_sys_165: -2.10503222e-23 + art_sys_166: -4.41788694e-23 + art_sys_167: -1.48427761e-23 + art_sys_168: 1.21346572e-24 + art_sys_169: 4.41045526e-25 + art_sys_170: -1.18675778e-24 + art_sys_171: 8.22348128e-26 + art_sys_172: 8.31739172e-26 + art_sys_173: -1.63835344e-25 + art_sys_174: 1.92701686e-28 + art_sys_175: 8.68416589e-27 + art_sys_176: -9.11570823e-27 + art_sys_177: 3.61906364e-27 + art_sys_178: 5.84795413e-28 + art_sys_179: -1.42602734e-28 + art_sys_180: 6.44671366e-28 + art_sys_181: -1.13075506e-28 + art_sys_182: 6.31032287e-29 + art_sys_183: -7.20578817e-31 + art_sys_184: -7.55294401e-31 + art_sys_185: -1.29357086e-28 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -59895,190 +59895,190 @@ bins: luminosity_uncertainty: 1.90702200e-02 uncorrelated_uncertainty: 7.33470000e-03 - art_sys_1: -8.54484822e-25 - art_sys_2: -2.00140007e-23 + art_sys_2: -2.00110540e-23 art_sys_3: 1.95956050e-10 - art_sys_4: 2.13881241e-22 + art_sys_4: 6.80163178e-24 art_sys_5: -1.17943326e-08 - art_sys_6: -2.38013979e-23 - art_sys_7: -8.06616328e-23 + art_sys_6: -2.11651145e-23 + art_sys_7: -1.37148810e-22 art_sys_8: -1.71615388e-08 - art_sys_9: -7.46084021e-23 - art_sys_10: 1.61810310e-23 + art_sys_9: 1.63698778e-23 + art_sys_10: 1.63393564e-23 art_sys_11: 4.06227489e-08 - art_sys_12: -2.87162507e-22 - art_sys_13: 1.05707512e-19 - art_sys_14: -2.77222942e-21 - art_sys_15: -1.42315624e-06 - art_sys_16: 2.81471327e-20 - art_sys_17: -6.34035642e-20 + art_sys_12: -1.13221719e-21 + art_sys_13: -1.05699594e-19 + art_sys_14: -8.62971641e-21 + art_sys_15: 1.42315624e-06 + art_sys_16: -6.87183017e-21 + art_sys_17: -6.32231969e-20 art_sys_18: -3.24319649e-06 - art_sys_19: -3.27562649e-20 - art_sys_20: 3.60921157e-19 + art_sys_19: 5.75194580e-20 + art_sys_20: 3.60751683e-19 art_sys_21: -1.03905634e-05 - art_sys_22: -2.82288305e-20 - art_sys_23: 2.69618992e-19 + art_sys_22: -2.90478662e-20 + art_sys_23: 2.71223887e-19 art_sys_24: 8.19645084e-06 - art_sys_25: -1.15022250e-19 - art_sys_26: 1.62027403e-19 - art_sys_27: -2.67748399e-05 - art_sys_28: -1.11527705e-15 - art_sys_29: -1.54926274e-04 - art_sys_30: 8.02595123e-19 - art_sys_31: 5.24818683e-16 - art_sys_32: -1.35185554e-04 - art_sys_33: 3.38393341e-18 - art_sys_34: -7.57047251e-15 - art_sys_35: 2.17064286e-16 - art_sys_36: -2.01612299e-14 - art_sys_37: 1.15639728e-14 - art_sys_38: -2.45002799e-14 - art_sys_39: -6.62108395e-15 - art_sys_40: 1.26010431e-15 - art_sys_41: -1.25255155e-15 - art_sys_42: 7.40012368e-16 - art_sys_43: -3.28678087e-16 - art_sys_44: 6.45412153e-17 - art_sys_45: 4.13447347e-17 - art_sys_46: -3.87989971e-18 - art_sys_47: 4.16630638e-04 - art_sys_48: -1.59187581e-11 + art_sys_25: 1.18930454e-19 + art_sys_26: 2.09687776e-19 + art_sys_27: 2.67748399e-05 + art_sys_28: 3.02468565e-15 + art_sys_29: -4.85112687e-14 + art_sys_30: 6.45148038e-15 + art_sys_31: -1.12445873e-14 + art_sys_32: -6.50757797e-15 + art_sys_33: 1.74517843e-15 + art_sys_34: -3.73733177e-16 + art_sys_35: 7.14475372e-16 + art_sys_36: -1.54926274e-04 + art_sys_37: -1.02387762e-18 + art_sys_38: 5.75329736e-17 + art_sys_39: 8.87231065e-16 + art_sys_40: -1.35185554e-04 + art_sys_41: -4.25763771e-17 + art_sys_42: -1.15000935e-17 + art_sys_43: -4.44246845e-16 + art_sys_44: -1.01037185e-16 + art_sys_45: -1.25851600e-14 + art_sys_46: 4.16630638e-04 + art_sys_47: -4.61824307e-18 + art_sys_48: -9.01445399e-13 art_sys_49: 6.55785237e-04 - art_sys_50: -1.97462307e-17 - art_sys_51: 7.87504068e-18 - art_sys_52: 5.01173554e-13 - art_sys_53: 2.37572588e-12 - art_sys_54: 9.68410294e-04 - art_sys_55: 1.85325316e-13 - art_sys_56: -1.97151351e-13 - art_sys_57: 8.44107477e-19 - art_sys_58: 1.19999504e-18 - art_sys_59: -4.32824644e-10 - art_sys_60: -2.91637366e-03 - art_sys_61: 1.01467054e-13 - art_sys_62: -1.59022759e-14 - art_sys_63: 3.67292411e-04 - art_sys_64: 4.86374816e-16 - art_sys_65: -6.94530638e-15 - art_sys_66: -3.80421883e-15 - art_sys_67: -1.98929905e-16 - art_sys_68: -2.42271879e-16 - art_sys_69: -5.81032934e-17 - art_sys_70: -2.21367930e-18 - art_sys_71: 1.74942047e-17 - art_sys_72: 1.15444247e-17 - art_sys_73: -5.81894115e-18 - art_sys_74: 2.26096964e-14 - art_sys_75: 2.82431937e-18 - art_sys_76: 2.14734141e-15 - art_sys_77: 6.20394472e-15 - art_sys_78: 1.74316087e-16 - art_sys_79: 1.67555835e-17 - art_sys_80: -2.02991650e-18 - art_sys_81: -2.56023406e-13 - art_sys_82: 1.85566997e-04 - art_sys_83: 5.25498002e-18 - art_sys_84: 2.98197763e-18 - art_sys_85: -2.80997559e-18 - art_sys_86: -5.69118495e-19 - art_sys_87: -5.15990158e-20 - art_sys_88: 1.51892131e-14 - art_sys_89: 4.23821972e-21 - art_sys_90: -1.84220175e-16 - art_sys_91: 2.49908775e-10 - art_sys_92: 9.19393023e-20 - art_sys_93: -5.22502806e-20 - art_sys_94: -7.72369453e-15 - art_sys_95: 4.50986838e-17 - art_sys_96: -3.60503962e-10 - art_sys_97: 3.86999997e-12 - art_sys_98: 2.08947819e-17 - art_sys_99: -2.74599286e-11 - art_sys_100: -1.95399659e-17 - art_sys_101: 2.93002347e-11 - art_sys_102: 7.79032613e-14 - art_sys_103: -3.58730605e-15 - art_sys_104: -1.72421942e-13 - art_sys_105: -3.23449955e-14 - art_sys_106: -1.38550713e-12 - art_sys_107: -2.43597315e-13 - art_sys_108: -5.25756774e-14 - art_sys_109: 2.03793379e-15 - art_sys_110: 6.26461315e-15 - art_sys_111: -1.79192686e-13 - art_sys_112: 6.08880482e-07 - art_sys_113: 3.80398669e-14 - art_sys_114: 3.97275993e-16 - art_sys_115: -6.14760071e-15 - art_sys_116: 1.76854683e-13 - art_sys_117: 1.96432106e-16 - art_sys_118: 5.67151283e-14 - art_sys_119: 3.03153274e-13 - art_sys_120: 1.33720482e-07 - art_sys_121: -1.77030336e-16 - art_sys_122: -2.22577004e-13 - art_sys_123: -9.30611012e-14 - art_sys_124: -6.60049495e-14 - art_sys_125: 3.44194033e-16 - art_sys_126: 3.66326796e-08 - art_sys_127: 9.72733071e-14 - art_sys_128: 3.23480305e-13 - art_sys_129: 8.43327785e-16 - art_sys_130: -3.58813135e-12 - art_sys_131: -1.17418375e-14 - art_sys_132: -2.47728379e-12 - art_sys_133: 7.96076282e-12 - art_sys_134: 5.18885450e-09 - art_sys_135: 1.41635187e-12 - art_sys_136: 3.47369995e-14 - art_sys_137: -1.24446753e-12 - art_sys_138: 6.39964417e-14 - art_sys_139: 1.86820499e-11 - art_sys_140: -7.18097790e-15 - art_sys_141: 7.48771639e-10 - art_sys_142: -2.19726990e-14 - art_sys_143: -1.32114960e-12 - art_sys_144: 4.27078603e-14 - art_sys_145: 8.89650355e-13 - art_sys_146: 9.81595164e-14 - art_sys_147: -6.12254376e-16 - art_sys_148: -2.48982878e-16 - art_sys_149: 5.42562664e-15 - art_sys_150: 4.84303104e-13 - art_sys_151: 1.69402047e-11 - art_sys_152: 3.14281143e-15 - art_sys_153: 1.31326098e-12 - art_sys_154: 2.35228417e-14 - art_sys_155: -5.96566077e-15 - art_sys_156: 0.0 - art_sys_157: 2.60625452e-14 - art_sys_158: 0.0 - art_sys_159: 2.09021213e-13 - art_sys_160: -1.20689295e-15 - art_sys_161: -2.87717228e-14 - art_sys_162: -2.87717228e-14 - art_sys_163: -2.57359663e-14 - art_sys_164: -2.57359663e-14 - art_sys_165: 2.96750722e-28 - art_sys_166: -9.87039131e-29 - art_sys_167: -0.0 - art_sys_168: 2.54271573e-23 - art_sys_169: 2.10879897e-23 - art_sys_170: 9.12928071e-24 - art_sys_171: 5.98016982e-24 - art_sys_172: -2.34471739e-24 - art_sys_173: -1.12542450e-25 - art_sys_174: -1.67277511e-25 - art_sys_175: -1.00621030e-25 - art_sys_176: 4.27356492e-26 - art_sys_177: -1.92655829e-26 - art_sys_178: -2.74926276e-26 - art_sys_179: 1.92104130e-27 - art_sys_180: 5.53054869e-27 - art_sys_181: -9.14614067e-27 - art_sys_182: 2.99323851e-27 - art_sys_183: -2.65181805e-29 - art_sys_184: -2.69204629e-29 - art_sys_185: 7.75493260e-30 + art_sys_50: 1.67894394e-17 + art_sys_51: 1.36302295e-17 + art_sys_52: 1.84599592e-12 + art_sys_53: 5.68189038e-14 + art_sys_54: 9.68410296e-04 + art_sys_55: -7.34386859e-13 + art_sys_56: 1.51800398e-13 + art_sys_57: -1.24630834e-14 + art_sys_58: 3.15224688e-16 + art_sys_59: 9.56693279e-15 + art_sys_60: 5.19167538e-16 + art_sys_61: 1.45514607e-15 + art_sys_62: -2.57006134e-16 + art_sys_63: 4.75026159e-16 + art_sys_64: 6.45270095e-17 + art_sys_65: -9.12251738e-18 + art_sys_66: -1.35773696e-12 + art_sys_67: -3.37358257e-17 + art_sys_68: -2.57619415e-17 + art_sys_69: -5.69345324e-12 + art_sys_70: -2.51167876e-09 + art_sys_71: -2.91637374e-03 + art_sys_72: -1.46876067e-11 + art_sys_73: 4.92732970e-17 + art_sys_74: -3.67292175e-04 + art_sys_75: -6.08199569e-19 + art_sys_76: -1.01483966e-14 + art_sys_77: 4.80348359e-15 + art_sys_78: -2.82329272e-16 + art_sys_79: -4.47156846e-14 + art_sys_80: -1.85566384e-04 + art_sys_81: 9.81314535e-19 + art_sys_82: -8.52223379e-18 + art_sys_83: 8.04099774e-19 + art_sys_84: 1.82743008e-19 + art_sys_85: 6.51057256e-19 + art_sys_86: 3.66992327e-19 + art_sys_87: 9.50022551e-16 + art_sys_88: 6.09199109e-15 + art_sys_89: -1.26439164e-16 + art_sys_90: -3.24906766e-11 + art_sys_91: 1.84873993e-10 + art_sys_92: -5.96337402e-15 + art_sys_93: 8.15467286e-11 + art_sys_94: 3.92157457e-14 + art_sys_95: -2.31067755e-12 + art_sys_96: 3.32556413e-16 + art_sys_97: -3.05135050e-12 + art_sys_98: 3.29528342e-12 + art_sys_99: 1.07190051e-12 + art_sys_100: -1.34642148e-13 + art_sys_101: 3.29274194e-14 + art_sys_102: -4.61941346e-15 + art_sys_103: -6.40786214e-12 + art_sys_104: 5.61773180e-14 + art_sys_105: 1.41299062e-16 + art_sys_106: -1.80723037e-12 + art_sys_107: -3.60427790e-14 + art_sys_108: -4.40388556e-13 + art_sys_109: 6.08885219e-07 + art_sys_110: 1.58601575e-16 + art_sys_111: 1.18533662e-11 + art_sys_112: -2.84973334e-12 + art_sys_113: 1.09381564e-16 + art_sys_114: -5.36849245e-12 + art_sys_115: -2.26905109e-13 + art_sys_116: 1.33725347e-07 + art_sys_117: -5.99808255e-18 + art_sys_118: -9.20253663e-12 + art_sys_119: -2.84498138e-14 + art_sys_120: 5.30634037e-12 + art_sys_121: -3.66328121e-08 + art_sys_122: -4.72830850e-13 + art_sys_123: -1.96299738e-12 + art_sys_124: -6.29435449e-12 + art_sys_125: 2.81348172e-12 + art_sys_126: 5.18690463e-09 + art_sys_127: -6.41749389e-13 + art_sys_128: 1.58115202e-12 + art_sys_129: -1.14210150e-13 + art_sys_130: 6.48228152e-12 + art_sys_131: 6.23330837e-12 + art_sys_132: 1.59843697e-12 + art_sys_133: -7.48129701e-10 + art_sys_134: 2.72070702e-11 + art_sys_135: -1.79149181e-12 + art_sys_136: 2.54552630e-12 + art_sys_137: -8.89615982e-14 + art_sys_138: -6.92344588e-12 + art_sys_139: 1.85863188e-11 + art_sys_140: 2.10038920e-15 + art_sys_141: 1.07888164e-12 + art_sys_142: -0.0 + art_sys_143: -4.88065654e-13 + art_sys_144: -1.17714245e-12 + art_sys_145: -1.69653336e-12 + art_sys_146: 4.64658707e-16 + art_sys_147: -8.88119595e-16 + art_sys_148: -2.06204630e-15 + art_sys_149: -1.57823426e-15 + art_sys_150: -5.47240814e-15 + art_sys_151: -9.27877325e-15 + art_sys_152: 4.95372299e-15 + art_sys_153: 9.53148821e-17 + art_sys_154: -7.28686072e-16 + art_sys_155: -1.34779429e-15 + art_sys_156: -4.23115731e-15 + art_sys_157: -9.02191522e-15 + art_sys_158: -0.0 + art_sys_159: 7.20805258e-13 + art_sys_160: 7.20805258e-13 + art_sys_161: -4.77570044e-14 + art_sys_162: 1.77869982e-26 + art_sys_163: 0.0 + art_sys_164: 1.07977361e-26 + art_sys_165: 9.76083728e-23 + art_sys_166: 2.04332707e-22 + art_sys_167: 6.87720406e-23 + art_sys_168: -5.37847867e-24 + art_sys_169: -1.95137683e-24 + art_sys_170: 5.32041119e-24 + art_sys_171: -3.88964203e-25 + art_sys_172: -3.69753155e-25 + art_sys_173: 7.26317706e-25 + art_sys_174: -1.04588195e-27 + art_sys_175: -3.94021825e-26 + art_sys_176: 4.31444981e-26 + art_sys_177: -1.63542843e-26 + art_sys_178: -2.57580079e-27 + art_sys_179: 8.89036148e-28 + art_sys_180: -2.75322644e-27 + art_sys_181: 5.21925874e-28 + art_sys_182: -2.88236503e-28 + art_sys_183: 2.65903695e-30 + art_sys_184: 3.11278411e-30 + art_sys_185: 5.71359184e-28 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -60186,190 +60186,190 @@ bins: luminosity_uncertainty: 8.19847600e-03 uncorrelated_uncertainty: 3.15326000e-03 - art_sys_1: -7.35209471e-26 - art_sys_2: -1.58064999e-24 + art_sys_2: -1.57900256e-24 art_sys_3: 2.97277657e-11 - art_sys_4: 9.49806363e-24 + art_sys_4: -1.32497480e-24 art_sys_5: -9.14922371e-10 - art_sys_6: -2.80467261e-24 - art_sys_7: -4.36227282e-24 + art_sys_6: -2.60909625e-24 + art_sys_7: -6.98433470e-24 art_sys_8: -1.70779515e-09 - art_sys_9: -5.67583965e-24 - art_sys_10: -2.30303832e-24 + art_sys_9: -2.82745291e-25 + art_sys_10: -2.28837388e-24 art_sys_11: 1.71341485e-09 - art_sys_12: -3.34631258e-23 - art_sys_13: 1.03470737e-20 - art_sys_14: -1.30700542e-21 - art_sys_15: -1.37714924e-07 - art_sys_16: 1.71029941e-21 - art_sys_17: -5.80628629e-21 + art_sys_12: -1.16028272e-22 + art_sys_13: -1.03467143e-20 + art_sys_14: -3.92696970e-23 + art_sys_15: 1.37714924e-07 + art_sys_16: 2.42753655e-22 + art_sys_17: -5.78720127e-21 art_sys_18: -2.39668605e-07 - art_sys_19: -1.55964679e-21 - art_sys_20: 3.15824173e-20 + art_sys_19: 3.60614756e-21 + art_sys_20: 3.15586135e-20 art_sys_21: -9.27110419e-07 - art_sys_22: -6.34457986e-21 - art_sys_23: 2.35654558e-20 + art_sys_22: -6.40940251e-21 + art_sys_23: 2.36825164e-20 art_sys_24: 6.68238371e-07 - art_sys_25: -1.02973431e-20 - art_sys_26: 1.58228710e-20 - art_sys_27: -6.39640696e-06 - art_sys_28: -2.27138483e-17 - art_sys_29: -1.38040269e-06 - art_sys_30: -2.95951480e-20 - art_sys_31: 1.19084077e-16 - art_sys_32: -2.39277473e-05 - art_sys_33: 1.28011042e-18 - art_sys_34: 2.20755022e-15 - art_sys_35: -7.21284866e-16 - art_sys_36: 5.71261276e-14 - art_sys_37: -1.51327551e-14 - art_sys_38: 9.92798175e-15 - art_sys_39: -2.99956882e-15 - art_sys_40: 9.18488771e-16 - art_sys_41: 4.59037465e-17 - art_sys_42: 5.31751089e-16 - art_sys_43: -1.28508970e-16 - art_sys_44: -4.70676377e-17 - art_sys_45: -9.62198036e-17 - art_sys_46: -1.82489281e-17 - art_sys_47: -1.21506173e-04 - art_sys_48: -7.49695672e-12 + art_sys_25: 1.10674899e-20 + art_sys_26: 2.00683972e-20 + art_sys_27: 6.39640696e-06 + art_sys_28: 1.41709907e-17 + art_sys_29: 8.84185703e-14 + art_sys_30: -1.71686838e-14 + art_sys_31: 1.61805593e-14 + art_sys_32: -1.13204864e-15 + art_sys_33: -1.17756009e-15 + art_sys_34: -1.15078682e-15 + art_sys_35: -2.56114608e-16 + art_sys_36: -1.38040269e-06 + art_sys_37: -4.29412916e-20 + art_sys_38: -2.37424064e-16 + art_sys_39: 1.30841566e-16 + art_sys_40: -2.39277473e-05 + art_sys_41: -8.22394731e-18 + art_sys_42: -7.01650320e-18 + art_sys_43: 1.29975636e-16 + art_sys_44: 4.32283504e-18 + art_sys_45: 3.01232818e-15 + art_sys_46: -1.21506173e-04 + art_sys_47: 4.76606319e-18 + art_sys_48: -4.49092639e-13 art_sys_49: 3.26466957e-04 - art_sys_50: 2.35325191e-18 - art_sys_51: 1.09911473e-17 - art_sys_52: 1.99678205e-13 - art_sys_53: -1.25755579e-12 - art_sys_54: -5.00831184e-04 - art_sys_55: -3.30406856e-14 - art_sys_56: -9.90501354e-14 - art_sys_57: -2.14242285e-19 - art_sys_58: -4.54040815e-18 - art_sys_59: -1.58978645e-10 - art_sys_60: -7.56563398e-04 - art_sys_61: -1.82154249e-13 - art_sys_62: 2.19604322e-14 - art_sys_63: -1.71924628e-03 - art_sys_64: -4.78969643e-15 - art_sys_65: 1.32941140e-14 - art_sys_66: 7.03656897e-15 - art_sys_67: 1.55777273e-16 - art_sys_68: 5.41102593e-16 - art_sys_69: 1.23136864e-16 - art_sys_70: 1.17476056e-17 - art_sys_71: -3.02868490e-17 - art_sys_72: -2.24497904e-17 - art_sys_73: 1.20496429e-17 - art_sys_74: -4.05889946e-14 - art_sys_75: -5.79265145e-18 - art_sys_76: -5.44039573e-15 - art_sys_77: -1.16273866e-14 - art_sys_78: -8.98476754e-18 - art_sys_79: -3.03508554e-17 - art_sys_80: 8.99582779e-17 - art_sys_81: 4.59618870e-13 - art_sys_82: -3.33133845e-04 - art_sys_83: -6.45233314e-17 - art_sys_84: -2.47650238e-17 - art_sys_85: 3.11763548e-17 - art_sys_86: 5.07177531e-18 - art_sys_87: 4.56506276e-19 - art_sys_88: -1.60880456e-13 - art_sys_89: -5.58406100e-20 - art_sys_90: -3.42951799e-16 - art_sys_91: -6.29352302e-10 - art_sys_92: -9.91312129e-19 - art_sys_93: 5.30363353e-19 - art_sys_94: 4.85255851e-14 - art_sys_95: -8.49078748e-17 - art_sys_96: 6.29430304e-10 - art_sys_97: -6.81623607e-12 - art_sys_98: -3.03256428e-17 - art_sys_99: 4.95315025e-11 - art_sys_100: 1.75675420e-16 - art_sys_101: -5.27029200e-11 - art_sys_102: -7.96660154e-13 - art_sys_103: 1.04755798e-15 - art_sys_104: 4.02210947e-13 - art_sys_105: 2.07606967e-13 - art_sys_106: 2.68357950e-12 - art_sys_107: 1.41826731e-12 - art_sys_108: 3.37449418e-13 - art_sys_109: -1.31539307e-14 - art_sys_110: -9.15103781e-12 - art_sys_111: 4.20943393e-12 - art_sys_112: -6.44880952e-06 - art_sys_113: -9.78668703e-15 - art_sys_114: -2.53796728e-15 - art_sys_115: 2.01004668e-14 - art_sys_116: -1.12058740e-12 - art_sys_117: -1.32848355e-15 - art_sys_118: -6.81628716e-13 - art_sys_119: -1.85902803e-12 - art_sys_120: -7.78426863e-07 - art_sys_121: 1.10567610e-15 - art_sys_122: 2.27513691e-12 - art_sys_123: 6.11758366e-13 - art_sys_124: 8.44985492e-13 - art_sys_125: -1.80714063e-15 - art_sys_126: -2.30245175e-07 - art_sys_127: -7.53606184e-13 - art_sys_128: -1.89321143e-12 - art_sys_129: -4.64763829e-15 - art_sys_130: 2.30148347e-11 - art_sys_131: 6.46955062e-14 - art_sys_132: 1.43920974e-11 - art_sys_133: -5.11648517e-11 - art_sys_134: -3.40842291e-08 - art_sys_135: -8.84234273e-12 - art_sys_136: -1.90670443e-13 - art_sys_137: 7.90846900e-12 - art_sys_138: -4.34982177e-13 - art_sys_139: -1.19870346e-10 - art_sys_140: 4.08342713e-14 - art_sys_141: -4.80600311e-09 - art_sys_142: 1.54658065e-13 - art_sys_143: 8.48265482e-12 - art_sys_144: -2.61209230e-13 - art_sys_145: -5.85730468e-12 - art_sys_146: -6.28506933e-13 - art_sys_147: 4.37096945e-15 - art_sys_148: 2.23803563e-15 - art_sys_149: -2.57958727e-16 - art_sys_150: -2.93602208e-12 - art_sys_151: -9.25943285e-11 - art_sys_152: -1.51560762e-14 - art_sys_153: -7.89326980e-12 - art_sys_154: -2.44120290e-13 - art_sys_155: 3.45013302e-14 - art_sys_156: -0.0 - art_sys_157: -1.75147138e-13 - art_sys_158: -0.0 - art_sys_159: -1.38656462e-12 - art_sys_160: -2.35812266e-16 - art_sys_161: 1.90557841e-13 - art_sys_162: 1.90557841e-13 - art_sys_163: 1.66890972e-13 - art_sys_164: 1.66890972e-13 - art_sys_165: -1.93130327e-27 - art_sys_166: 6.42511168e-28 - art_sys_167: 0.0 - art_sys_168: -1.33077042e-22 - art_sys_169: -1.15813826e-22 - art_sys_170: -4.15892890e-23 - art_sys_171: -3.41735747e-23 - art_sys_172: 1.27894427e-23 - art_sys_173: 8.39981826e-25 - art_sys_174: 9.70352735e-25 - art_sys_175: 5.90462625e-25 - art_sys_176: -2.51013210e-25 - art_sys_177: 1.10835496e-25 - art_sys_178: 1.61882362e-25 - art_sys_179: -1.11681492e-26 - art_sys_180: -3.64191960e-26 - art_sys_181: 5.25991537e-26 - art_sys_182: -1.63667157e-26 - art_sys_183: 1.41575699e-28 - art_sys_184: 1.69071353e-28 - art_sys_185: -5.12460498e-29 + art_sys_50: 7.65464037e-19 + art_sys_51: -1.71292317e-17 + art_sys_52: -9.60457339e-13 + art_sys_53: -8.23471564e-15 + art_sys_54: -5.00831185e-04 + art_sys_55: 5.40485858e-13 + art_sys_56: 7.54668631e-14 + art_sys_57: -2.43096462e-14 + art_sys_58: 1.55583368e-14 + art_sys_59: 7.51739348e-15 + art_sys_60: 1.35090176e-16 + art_sys_61: 1.14874067e-15 + art_sys_62: -8.52800683e-16 + art_sys_63: -9.31904819e-16 + art_sys_64: 1.34805343e-16 + art_sys_65: 1.08213729e-16 + art_sys_66: -3.35060412e-13 + art_sys_67: -8.33592569e-17 + art_sys_68: -3.80000673e-17 + art_sys_69: 9.69583022e-12 + art_sys_70: -1.16992112e-09 + art_sys_71: -7.56562098e-04 + art_sys_72: -3.81880656e-12 + art_sys_73: -1.06446879e-16 + art_sys_74: 1.71924527e-03 + art_sys_75: 1.04536786e-18 + art_sys_76: 1.72558728e-14 + art_sys_77: -7.54758244e-15 + art_sys_78: 5.22538116e-16 + art_sys_79: 8.02762452e-14 + art_sys_80: 3.33132679e-04 + art_sys_81: -1.41455760e-17 + art_sys_82: 9.59813608e-17 + art_sys_83: -1.06581738e-17 + art_sys_84: -3.76246037e-19 + art_sys_85: -4.22711266e-18 + art_sys_86: -1.71888471e-18 + art_sys_87: -1.28256670e-14 + art_sys_88: -3.80863006e-14 + art_sys_89: 9.30999370e-16 + art_sys_90: -1.32799905e-09 + art_sys_91: -4.69502014e-10 + art_sys_92: 6.36056917e-14 + art_sys_93: -1.46396348e-10 + art_sys_94: -4.16306697e-13 + art_sys_95: 2.30204229e-12 + art_sys_96: -2.20738603e-15 + art_sys_97: 3.23232351e-11 + art_sys_98: -5.17198225e-12 + art_sys_99: -1.91416364e-12 + art_sys_100: 1.44905649e-12 + art_sys_101: -4.55237705e-13 + art_sys_102: 2.96448450e-14 + art_sys_103: 3.68527514e-11 + art_sys_104: 7.59246567e-13 + art_sys_105: -7.48166788e-16 + art_sys_106: 1.86606189e-11 + art_sys_107: -1.82598826e-14 + art_sys_108: 2.55641459e-12 + art_sys_109: -6.44886007e-06 + art_sys_110: -8.86788018e-16 + art_sys_111: -1.25500111e-10 + art_sys_112: 1.88172012e-11 + art_sys_113: -6.12593370e-16 + art_sys_114: 5.62358196e-11 + art_sys_115: 1.49122406e-12 + art_sys_116: -7.78455315e-07 + art_sys_117: 3.25362245e-17 + art_sys_118: 9.73138293e-11 + art_sys_119: 1.87211575e-13 + art_sys_120: -5.72136794e-11 + art_sys_121: 2.30245893e-07 + art_sys_122: -1.10700024e-12 + art_sys_123: 1.26122357e-11 + art_sys_124: 3.72886212e-11 + art_sys_125: -1.68436189e-11 + art_sys_126: -3.40714125e-08 + art_sys_127: 4.46930741e-12 + art_sys_128: -1.01132094e-11 + art_sys_129: 6.73486450e-13 + art_sys_130: -4.15168502e-11 + art_sys_131: -4.00516526e-11 + art_sys_132: -1.04573417e-11 + art_sys_133: 4.80173376e-09 + art_sys_134: -1.74848968e-10 + art_sys_135: 1.17862829e-11 + art_sys_136: -1.56327045e-11 + art_sys_137: 6.65515009e-13 + art_sys_138: 3.75197378e-11 + art_sys_139: -1.03169012e-10 + art_sys_140: 9.93489808e-16 + art_sys_141: -4.61932219e-12 + art_sys_142: 0.0 + art_sys_143: 2.97309770e-12 + art_sys_144: 6.33902196e-12 + art_sys_145: 8.50706579e-12 + art_sys_146: -2.54075803e-15 + art_sys_147: 4.85097944e-15 + art_sys_148: 1.21188452e-14 + art_sys_149: 8.79238171e-15 + art_sys_150: 2.92977474e-14 + art_sys_151: 5.47729588e-14 + art_sys_152: -3.19794494e-14 + art_sys_153: -6.18425178e-16 + art_sys_154: 4.99893803e-15 + art_sys_155: 6.06455742e-15 + art_sys_156: 2.02387666e-14 + art_sys_157: 4.94858546e-14 + art_sys_158: 0.0 + art_sys_159: -4.27692822e-12 + art_sys_160: -4.27692822e-12 + art_sys_161: 2.81693155e-13 + art_sys_162: -1.04964886e-25 + art_sys_163: -0.0 + art_sys_164: -6.37371281e-26 + art_sys_165: -5.30343377e-22 + art_sys_166: -1.11862833e-21 + art_sys_167: -3.74991581e-22 + art_sys_168: 3.22580627e-23 + art_sys_169: 1.18343001e-23 + art_sys_170: -3.15916854e-23 + art_sys_171: 2.07322932e-24 + art_sys_172: 2.13279323e-24 + art_sys_173: -4.33512276e-24 + art_sys_174: 4.58542786e-27 + art_sys_175: 2.20915936e-25 + art_sys_176: -2.33680897e-25 + art_sys_177: 9.44113224e-26 + art_sys_178: 1.57274441e-26 + art_sys_179: -2.02663134e-27 + art_sys_180: 1.80081367e-26 + art_sys_181: -2.85712862e-27 + art_sys_182: 1.61031965e-27 + art_sys_183: -1.89790120e-29 + art_sys_184: -1.99849221e-29 + art_sys_185: -3.37109176e-27 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -60477,190 +60477,190 @@ bins: luminosity_uncertainty: 3.47755200e-03 uncorrelated_uncertainty: 1.33752000e-03 - art_sys_1: -2.31088309e-27 - art_sys_2: -8.51783533e-26 + art_sys_2: -8.51763943e-26 art_sys_3: -2.24916061e-14 - art_sys_4: 2.75105166e-25 + art_sys_4: -1.35655029e-25 art_sys_5: -4.78547476e-11 - art_sys_6: -1.88298858e-25 - art_sys_7: -1.18680516e-25 + art_sys_6: -1.76257723e-25 + art_sys_7: -1.85239937e-25 art_sys_8: -1.05479539e-10 - art_sys_9: -2.35153064e-25 - art_sys_10: -1.90519029e-25 + art_sys_9: -3.19179922e-26 + art_sys_10: -1.89595625e-25 art_sys_11: 4.49109309e-11 - art_sys_12: -2.37843640e-24 - art_sys_13: 5.41667408e-22 - art_sys_14: -9.17941189e-24 - art_sys_15: -7.27081679e-09 - art_sys_16: 1.61647355e-23 - art_sys_17: -3.02666674e-22 + art_sys_12: -6.77597853e-24 + art_sys_13: -5.41656781e-22 + art_sys_14: -4.41612937e-23 + art_sys_15: 7.27081679e-09 + art_sys_16: -9.59782922e-24 + art_sys_17: -3.01698544e-22 art_sys_18: -1.58005309e-08 - art_sys_19: -1.83667561e-22 - art_sys_20: 8.63030097e-22 + art_sys_19: 2.03068387e-22 + art_sys_20: 8.62372508e-22 art_sys_21: -4.50488778e-08 - art_sys_22: 6.34241698e-22 - art_sys_23: 6.82861783e-22 + art_sys_22: 6.33988767e-22 + art_sys_23: 6.82865366e-22 art_sys_24: 4.46749311e-09 - art_sys_25: 6.97196616e-22 - art_sys_26: -1.46297169e-21 - art_sys_27: 9.74578690e-08 - art_sys_28: 2.42601420e-17 - art_sys_29: 3.45326603e-06 - art_sys_30: -2.17115128e-20 - art_sys_31: -1.19475151e-17 - art_sys_32: 2.92836242e-06 - art_sys_33: -7.68571855e-20 - art_sys_34: 2.67606681e-16 - art_sys_35: 6.21155462e-18 - art_sys_36: -7.81136527e-14 - art_sys_37: -1.29988835e-14 - art_sys_38: 4.36990373e-15 - art_sys_39: 1.43672468e-15 - art_sys_40: -1.23464834e-15 - art_sys_41: 2.74438203e-16 - art_sys_42: -1.13561976e-15 - art_sys_43: -2.64974353e-16 - art_sys_44: -4.64679591e-17 - art_sys_45: 3.49624316e-17 - art_sys_46: -1.80430521e-18 - art_sys_47: -1.47277129e-05 - art_sys_48: 9.62076359e-13 - art_sys_49: -4.02132420e-05 - art_sys_50: 8.61010879e-18 - art_sys_51: 5.88551368e-18 - art_sys_52: -2.91251163e-14 - art_sys_53: -8.95626074e-14 - art_sys_54: -3.67713884e-05 - art_sys_55: -1.25479132e-14 - art_sys_56: 1.21396025e-14 - art_sys_57: 1.35075780e-18 - art_sys_58: -5.02161495e-18 - art_sys_59: 2.61861110e-11 - art_sys_60: 2.95933162e-04 - art_sys_61: 5.52676639e-13 - art_sys_62: 4.39362446e-16 - art_sys_63: -6.40592028e-04 - art_sys_64: 1.19448040e-14 - art_sys_65: -3.60611150e-14 - art_sys_66: -2.07187749e-14 - art_sys_67: -9.08460344e-16 - art_sys_68: -1.27414420e-15 - art_sys_69: -2.85461163e-16 - art_sys_70: 8.09149864e-18 - art_sys_71: 1.14935265e-16 - art_sys_72: 6.05165849e-17 - art_sys_73: -3.48979389e-17 - art_sys_74: 1.23150542e-13 - art_sys_75: 1.77792024e-17 - art_sys_76: 1.05555525e-14 - art_sys_77: 3.33712720e-14 - art_sys_78: 1.05533124e-15 - art_sys_79: 9.19036538e-17 - art_sys_80: 9.95194640e-17 - art_sys_81: -1.39451218e-12 - art_sys_82: 1.01074831e-03 - art_sys_83: 2.70648862e-18 - art_sys_84: 3.05555757e-17 - art_sys_85: 6.97114649e-18 - art_sys_86: -3.59034997e-18 - art_sys_87: -7.91994316e-19 - art_sys_88: 5.82495458e-15 - art_sys_89: -2.63214778e-20 - art_sys_90: -1.10244583e-14 - art_sys_91: 6.13124371e-10 - art_sys_92: 3.12680544e-20 - art_sys_93: -1.41691598e-19 - art_sys_94: -1.06795839e-13 - art_sys_95: 2.84355649e-16 - art_sys_96: -2.03780190e-09 - art_sys_97: 2.05165769e-11 - art_sys_98: 1.10844831e-16 - art_sys_99: -1.48593867e-10 - art_sys_100: -2.08357128e-15 - art_sys_101: 1.59181229e-10 - art_sys_102: 1.67500813e-13 - art_sys_103: 4.57533934e-16 - art_sys_104: -8.96128948e-13 - art_sys_105: -6.13282880e-13 - art_sys_106: -7.44161174e-12 - art_sys_107: -5.64482856e-12 - art_sys_108: -9.96844708e-13 - art_sys_109: 3.86879000e-14 - art_sys_110: -4.34422256e-11 - art_sys_111: 1.17313264e-12 - art_sys_112: 2.34880960e-07 - art_sys_113: -7.59900715e-16 - art_sys_114: 7.52504204e-15 - art_sys_115: -1.71217045e-14 - art_sys_116: 2.81694469e-12 - art_sys_117: 3.76780455e-15 - art_sys_118: 2.39096657e-14 - art_sys_119: 3.26292037e-12 - art_sys_120: 3.09700349e-06 - art_sys_121: -3.33784297e-15 - art_sys_122: -6.67556160e-13 - art_sys_123: -1.81892060e-12 - art_sys_124: 6.62625132e-13 - art_sys_125: 6.27270934e-15 - art_sys_126: 5.06215544e-07 - art_sys_127: 1.92785998e-12 - art_sys_128: 7.66502285e-12 - art_sys_129: 1.54912083e-14 - art_sys_130: -6.80181768e-11 - art_sys_131: -2.15683188e-13 - art_sys_132: -5.78577576e-11 - art_sys_133: 1.50966739e-10 - art_sys_134: 1.01076940e-07 - art_sys_135: 2.12351827e-11 - art_sys_136: 6.37708203e-13 - art_sys_137: -2.35408471e-11 - art_sys_138: 1.22855099e-12 - art_sys_139: 3.54187568e-10 - art_sys_140: -1.32395441e-13 - art_sys_141: 1.41967724e-08 - art_sys_142: -8.08542561e-13 - art_sys_143: -2.50542879e-11 - art_sys_144: 7.95786388e-13 - art_sys_145: 1.74986102e-11 - art_sys_146: 1.85704207e-12 - art_sys_147: -1.20439934e-14 - art_sys_148: -5.29292577e-15 - art_sys_149: 1.83286912e-13 - art_sys_150: 9.05186107e-12 - art_sys_151: 3.10828768e-10 - art_sys_152: 5.58997947e-14 - art_sys_153: 2.45546907e-11 - art_sys_154: 1.39810432e-14 - art_sys_155: -1.11439770e-13 - art_sys_156: 0.0 - art_sys_157: 4.94153059e-13 - art_sys_158: 0.0 - art_sys_159: 4.01819499e-12 - art_sys_160: -2.01558025e-14 - art_sys_161: -5.56123030e-13 - art_sys_162: -5.56123030e-13 - art_sys_163: -4.94422591e-13 - art_sys_164: -4.94422591e-13 - art_sys_165: 5.70663965e-27 - art_sys_166: -1.89840464e-27 - art_sys_167: -0.0 - art_sys_168: 4.39678724e-22 - art_sys_169: 3.86080993e-22 - art_sys_170: 1.31134264e-22 - art_sys_171: 1.14401105e-22 - art_sys_172: -4.29865013e-23 - art_sys_173: -2.09260557e-24 - art_sys_174: -3.07654154e-24 - art_sys_175: -1.85012252e-24 - art_sys_176: 7.85065304e-25 - art_sys_177: -3.54013788e-25 - art_sys_178: -5.05689360e-25 - art_sys_179: 3.59830797e-26 - art_sys_180: 1.06271014e-25 - art_sys_181: -1.67715443e-25 - art_sys_182: 5.49666833e-26 - art_sys_183: -4.84384373e-28 - art_sys_184: -5.06532914e-28 - art_sys_185: 1.48521697e-28 + art_sys_25: -7.17862549e-22 + art_sys_26: -2.20640224e-21 + art_sys_27: -9.74578690e-08 + art_sys_28: -6.80187529e-17 + art_sys_29: 2.97621679e-14 + art_sys_30: 1.32801314e-14 + art_sys_31: 1.95992567e-14 + art_sys_32: -6.83232719e-16 + art_sys_33: -6.02494979e-16 + art_sys_34: -2.84811144e-16 + art_sys_35: -2.01267307e-16 + art_sys_36: 3.45326603e-06 + art_sys_37: 1.88762289e-20 + art_sys_38: -1.01723318e-16 + art_sys_39: -1.86397282e-17 + art_sys_40: 2.92836242e-06 + art_sys_41: 9.25666441e-19 + art_sys_42: 2.95569280e-17 + art_sys_43: 1.57078947e-17 + art_sys_44: 9.28502642e-17 + art_sys_45: 4.58765568e-16 + art_sys_46: -1.47277129e-05 + art_sys_47: -6.37031759e-18 + art_sys_48: 5.52881655e-14 + art_sys_49: -4.02132421e-05 + art_sys_50: -8.31103399e-18 + art_sys_51: -6.64494175e-18 + art_sys_52: -6.98553217e-14 + art_sys_53: -2.25107885e-15 + art_sys_54: -3.67713885e-05 + art_sys_55: 1.48833278e-14 + art_sys_56: -9.32728769e-15 + art_sys_57: 6.74760265e-14 + art_sys_58: 3.75385931e-14 + art_sys_59: 3.98381169e-15 + art_sys_60: -4.50290522e-17 + art_sys_61: -2.99724937e-15 + art_sys_62: -1.67994333e-15 + art_sys_63: -1.78320534e-15 + art_sys_64: -2.83895629e-16 + art_sys_65: -1.55769463e-16 + art_sys_66: 1.43457091e-13 + art_sys_67: 4.81129778e-17 + art_sys_68: -3.31184751e-17 + art_sys_69: -3.23210949e-11 + art_sys_70: 5.80655295e-11 + art_sys_71: 2.95933667e-04 + art_sys_72: 1.48963469e-12 + art_sys_73: 2.31302006e-16 + art_sys_74: 6.40591444e-04 + art_sys_75: -5.41227889e-18 + art_sys_76: -5.76571958e-14 + art_sys_77: 2.74091498e-14 + art_sys_78: -1.80034931e-15 + art_sys_79: -2.43559245e-13 + art_sys_80: -1.01074512e-03 + art_sys_81: -2.36383267e-17 + art_sys_82: 1.93381829e-17 + art_sys_83: -9.19211816e-18 + art_sys_84: 1.35724911e-18 + art_sys_85: 8.54534509e-18 + art_sys_86: 8.78479312e-18 + art_sys_87: -1.28478248e-14 + art_sys_88: 8.55855422e-14 + art_sys_89: -4.49514966e-15 + art_sys_90: -3.06088052e-09 + art_sys_91: 7.23465797e-10 + art_sys_92: -1.78511872e-16 + art_sys_93: 4.44189224e-10 + art_sys_94: 1.06218712e-14 + art_sys_95: -1.63720855e-11 + art_sys_96: 6.55764931e-15 + art_sys_97: -1.15062391e-12 + art_sys_98: 1.94905429e-11 + art_sys_99: 5.79487029e-12 + art_sys_100: 5.78780241e-14 + art_sys_101: 1.30773677e-14 + art_sys_102: -8.75790381e-14 + art_sys_103: -1.50527070e-10 + art_sys_104: 7.29707339e-13 + art_sys_105: 2.57188039e-15 + art_sys_106: -1.45500771e-12 + art_sys_107: -1.61760122e-15 + art_sys_108: -1.03734535e-11 + art_sys_109: 2.34881057e-07 + art_sys_110: 2.91873157e-15 + art_sys_111: 4.80778598e-12 + art_sys_112: -5.74856966e-11 + art_sys_113: 2.01336038e-15 + art_sys_114: -4.94989124e-12 + art_sys_115: -4.43520271e-12 + art_sys_116: 3.09711648e-06 + art_sys_117: -1.09907593e-16 + art_sys_118: -4.21621692e-12 + art_sys_119: -5.55342935e-13 + art_sys_120: -2.90434577e-12 + art_sys_121: -5.06216057e-07 + art_sys_122: -2.98170914e-11 + art_sys_123: -3.72237150e-11 + art_sys_124: -1.43357916e-10 + art_sys_125: 6.11438572e-11 + art_sys_126: 1.01038712e-07 + art_sys_127: -9.54774444e-12 + art_sys_128: 2.99515696e-11 + art_sys_129: -2.12450510e-12 + art_sys_130: 1.22850538e-10 + art_sys_131: 1.18214701e-10 + art_sys_132: 3.24865250e-11 + art_sys_133: -1.41845041e-08 + art_sys_134: 5.15989406e-10 + art_sys_135: -3.56986123e-11 + art_sys_136: 4.78093496e-11 + art_sys_137: -2.24127121e-12 + art_sys_138: -1.26825946e-10 + art_sys_139: 3.42010803e-10 + art_sys_140: 8.04166503e-17 + art_sys_141: 1.89368660e-11 + art_sys_142: -0.0 + art_sys_143: -9.42315249e-12 + art_sys_144: -2.15717934e-11 + art_sys_145: -3.06011451e-11 + art_sys_146: 8.52350698e-15 + art_sys_147: -1.62870250e-14 + art_sys_148: -3.81414149e-14 + art_sys_149: -2.90225886e-14 + art_sys_150: -1.00017497e-13 + art_sys_151: -1.71427063e-13 + art_sys_152: 9.38713811e-14 + art_sys_153: 1.79647339e-15 + art_sys_154: -1.38229921e-14 + art_sys_155: -2.42628864e-14 + art_sys_156: -7.55117738e-14 + art_sys_157: -1.65233169e-13 + art_sys_158: -0.0 + art_sys_159: 1.34098967e-11 + art_sys_160: 1.34098967e-11 + art_sys_161: -8.84748627e-13 + art_sys_162: 3.29616338e-25 + art_sys_163: 0.0 + art_sys_164: 2.00123424e-25 + art_sys_165: 1.80408629e-21 + art_sys_166: 3.74871875e-21 + art_sys_167: 1.25879540e-21 + art_sys_168: -9.88687561e-23 + art_sys_169: -3.61567607e-23 + art_sys_170: 9.58861730e-23 + art_sys_171: -7.07778958e-24 + art_sys_172: -6.78748380e-24 + art_sys_173: 1.33408563e-23 + art_sys_174: -1.84524038e-26 + art_sys_175: -7.23236583e-25 + art_sys_176: 7.90443946e-25 + art_sys_177: -3.00120283e-25 + art_sys_178: -4.73287615e-26 + art_sys_179: 1.61498523e-26 + art_sys_180: -5.05350478e-26 + art_sys_181: 9.57454199e-27 + art_sys_182: -5.28635863e-27 + art_sys_183: 5.24924782e-29 + art_sys_184: 5.87851267e-29 + art_sys_185: 1.05721323e-26 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -60768,190 +60768,190 @@ bins: luminosity_uncertainty: 1.35273840e-03 uncorrelated_uncertainty: 5.20284000e-04 - art_sys_1: 6.51294285e-30 - art_sys_2: -2.00547156e-27 + art_sys_2: -2.00593155e-27 art_sys_3: -1.07503634e-13 - art_sys_4: 2.16699490e-26 + art_sys_4: -1.12701051e-28 art_sys_5: -1.12627300e-12 - art_sys_6: -3.95754344e-27 - art_sys_7: -1.03477776e-26 + art_sys_6: -3.68284970e-27 + art_sys_7: -1.63709996e-26 art_sys_8: -2.32600927e-12 - art_sys_9: -4.32194948e-27 - art_sys_10: 3.80179636e-28 + art_sys_9: 6.46316190e-27 + art_sys_10: 4.01708089e-28 art_sys_11: 4.16398993e-12 - art_sys_12: -3.64183506e-26 - art_sys_13: 1.48126298e-23 - art_sys_14: -8.34631036e-25 - art_sys_15: -2.08243027e-10 - art_sys_16: -6.76564405e-24 - art_sys_17: -9.78061519e-24 + art_sys_12: -1.58201769e-25 + art_sys_13: -1.48118015e-23 + art_sys_14: -8.99942130e-25 + art_sys_15: 2.08243027e-10 + art_sys_16: 5.07910405e-25 + art_sys_17: -9.76277574e-24 art_sys_18: -1.01477764e-09 - art_sys_19: -1.95914993e-23 - art_sys_20: -2.72523124e-23 + art_sys_19: 1.42379742e-23 + art_sys_20: -2.72029519e-23 art_sys_21: -1.36873792e-09 - art_sys_22: 1.36824578e-22 - art_sys_23: -1.56085825e-23 + art_sys_22: 1.37015591e-22 + art_sys_23: -1.59931451e-23 art_sys_24: -1.95408072e-09 - art_sys_25: 1.46156415e-22 - art_sys_26: -2.69067010e-22 - art_sys_27: 7.99780777e-08 - art_sys_28: 2.30696970e-18 - art_sys_29: 3.05300034e-07 - art_sys_30: -1.51989134e-21 - art_sys_31: -2.91300594e-18 - art_sys_32: 6.08448760e-07 - art_sys_33: -2.81562300e-20 - art_sys_34: -4.24083111e-17 - art_sys_35: 1.61219530e-17 - art_sys_36: -2.74498286e-15 - art_sys_37: 1.73557455e-16 - art_sys_38: -2.69301076e-16 - art_sys_39: 7.73101985e-17 - art_sys_40: -4.33438132e-17 - art_sys_41: -1.67352750e-17 - art_sys_42: -2.74423485e-17 - art_sys_43: 6.16862247e-18 - art_sys_44: 6.46023259e-18 - art_sys_45: 1.60442193e-17 - art_sys_46: 2.03897506e-17 - art_sys_47: 2.33415702e-06 - art_sys_48: 2.15052537e-13 - art_sys_49: -9.30094380e-06 - art_sys_50: 8.01279528e-18 - art_sys_51: -1.72386327e-17 - art_sys_52: -5.84905281e-15 - art_sys_53: 3.81106813e-14 - art_sys_54: 1.51883010e-05 - art_sys_55: 1.02328144e-15 - art_sys_56: 2.81837329e-15 - art_sys_57: -1.64298018e-17 - art_sys_58: 6.34149320e-18 - art_sys_59: 5.21854642e-12 - art_sys_60: 2.24317029e-05 - art_sys_61: 1.26635746e-14 - art_sys_62: -6.56344998e-16 - art_sys_63: 7.12664369e-05 - art_sys_64: -3.64419422e-14 - art_sys_65: 4.12182248e-14 - art_sys_66: 3.50316050e-15 - art_sys_67: -4.79964952e-15 - art_sys_68: 2.96455741e-15 - art_sys_69: 5.19879804e-16 - art_sys_70: 1.97327842e-16 - art_sys_71: -6.96273446e-18 - art_sys_72: -4.19596111e-17 - art_sys_73: 4.92378463e-17 - art_sys_74: 2.82492052e-15 - art_sys_75: -2.76655569e-17 - art_sys_76: -4.78497398e-14 - art_sys_77: -1.33935163e-14 - art_sys_78: 8.27537714e-15 - art_sys_79: -9.39475912e-18 - art_sys_80: 2.40413934e-15 - art_sys_81: -3.19448051e-14 - art_sys_82: 2.31666744e-05 - art_sys_83: -1.45710777e-15 - art_sys_84: -5.34844911e-16 - art_sys_85: 7.50300044e-16 - art_sys_86: 1.15429637e-16 - art_sys_87: 1.16791036e-17 - art_sys_88: -3.74324190e-12 - art_sys_89: -1.55834627e-18 - art_sys_90: -2.92692131e-14 - art_sys_91: 3.32080127e-11 - art_sys_92: -2.26109206e-17 - art_sys_93: 1.20411316e-17 - art_sys_94: 1.23632592e-12 - art_sys_95: -5.20980622e-17 - art_sys_96: -4.48140623e-11 - art_sys_97: 4.71939234e-13 - art_sys_98: 2.00134185e-16 - art_sys_99: -3.42689033e-12 - art_sys_100: 1.75952205e-15 - art_sys_101: 3.70493469e-12 - art_sys_102: -1.82588182e-11 - art_sys_103: -3.71391209e-17 - art_sys_104: 2.55571140e-12 - art_sys_105: 4.74362196e-12 - art_sys_106: 5.21734154e-12 - art_sys_107: 2.21872421e-11 - art_sys_108: 7.71094533e-12 - art_sys_109: -2.99116179e-13 - art_sys_110: -2.97739865e-10 - art_sys_111: 1.08910568e-10 - art_sys_112: -1.50043262e-04 - art_sys_113: 3.39943357e-15 - art_sys_114: -5.82259723e-14 - art_sys_115: 2.61814216e-13 - art_sys_116: -2.66742584e-11 - art_sys_117: -2.90248321e-14 - art_sys_118: -1.62050037e-11 - art_sys_119: -5.15914093e-11 - art_sys_120: -1.21923814e-05 - art_sys_121: 2.58593911e-14 - art_sys_122: 5.19873356e-11 - art_sys_123: 1.31501763e-11 - art_sys_124: 2.05760773e-11 - art_sys_125: -4.91667863e-14 - art_sys_126: -5.86571175e-06 - art_sys_127: -1.46730321e-11 - art_sys_128: -2.80562314e-11 - art_sys_129: -1.21316961e-13 - art_sys_130: 5.26252646e-10 - art_sys_131: 1.68903833e-12 - art_sys_132: 2.22135902e-10 - art_sys_133: -1.16798909e-09 - art_sys_134: -7.34175806e-07 - art_sys_135: -2.15456394e-10 - art_sys_136: -4.99384088e-12 - art_sys_137: 1.82295585e-10 - art_sys_138: -9.70807390e-12 - art_sys_139: -2.73989953e-09 - art_sys_140: 1.03997654e-12 - art_sys_141: -1.09820117e-07 - art_sys_142: 1.67033340e-12 - art_sys_143: 1.93749025e-10 - art_sys_144: -6.27430984e-12 - art_sys_145: -1.25433726e-10 - art_sys_146: -1.44221902e-11 - art_sys_147: 8.98101733e-14 - art_sys_148: 3.70785446e-14 - art_sys_149: -2.88948599e-13 - art_sys_150: -7.06430282e-11 - art_sys_151: -2.43333742e-09 - art_sys_152: -4.49307506e-13 - art_sys_153: -1.90916569e-10 - art_sys_154: -5.67769775e-12 - art_sys_155: 8.55932383e-13 - art_sys_156: -0.0 - art_sys_157: -3.52375524e-12 - art_sys_158: -0.0 - art_sys_159: -3.05640081e-11 - art_sys_160: 1.39232717e-13 - art_sys_161: 4.18151555e-12 - art_sys_162: 4.18151555e-12 - art_sys_163: 3.73274501e-12 - art_sys_164: 3.73274501e-12 - art_sys_165: -4.30574316e-26 - art_sys_166: 1.43203548e-26 - art_sys_167: 0.0 - art_sys_168: -3.35924490e-21 - art_sys_169: -3.03468362e-21 - art_sys_170: -6.31460988e-22 - art_sys_171: -9.10987784e-22 - art_sys_172: 3.36420228e-22 - art_sys_173: 1.76124865e-23 - art_sys_174: 2.44655597e-23 - art_sys_175: 1.47833689e-23 - art_sys_176: -6.28732796e-24 - art_sys_177: 2.81251808e-24 - art_sys_178: 4.04244442e-24 - art_sys_179: -2.75247877e-25 - art_sys_180: -8.06798310e-25 - art_sys_181: 1.33822486e-24 - art_sys_182: -4.29569646e-25 - art_sys_183: 3.80034297e-27 - art_sys_184: 3.95015837e-27 - art_sys_185: -1.13710977e-27 + art_sys_25: -1.59219954e-22 + art_sys_26: -3.79277792e-22 + art_sys_27: -7.99780777e-08 + art_sys_28: -5.85129109e-18 + art_sys_29: -2.91311866e-15 + art_sys_30: 6.48565758e-16 + art_sys_31: -4.80226469e-16 + art_sys_32: 1.70801603e-17 + art_sys_33: 6.69747303e-17 + art_sys_34: 5.35416644e-17 + art_sys_35: 1.24782291e-17 + art_sys_36: 3.05300034e-07 + art_sys_37: 1.97908428e-21 + art_sys_38: 5.16729955e-18 + art_sys_39: -3.44229839e-18 + art_sys_40: 6.08448760e-07 + art_sys_41: 2.04687904e-19 + art_sys_42: -3.59993852e-19 + art_sys_43: -2.49766663e-18 + art_sys_44: 6.82185801e-18 + art_sys_45: -5.56014424e-17 + art_sys_46: 2.33415702e-06 + art_sys_47: 1.57978669e-17 + art_sys_48: 1.27934038e-14 + art_sys_49: -9.30094381e-06 + art_sys_50: -9.39669220e-18 + art_sys_51: -1.27193723e-17 + art_sys_52: 2.91229763e-14 + art_sys_53: 9.89220806e-17 + art_sys_54: 1.51883011e-05 + art_sys_55: -1.63571808e-14 + art_sys_56: -2.14916970e-15 + art_sys_57: 9.84757761e-14 + art_sys_58: 7.05203765e-17 + art_sys_59: 1.62801807e-14 + art_sys_60: -1.90370381e-17 + art_sys_61: 6.62990721e-15 + art_sys_62: 8.23303551e-16 + art_sys_63: 2.18180946e-15 + art_sys_64: -1.10352320e-16 + art_sys_65: -4.90349744e-17 + art_sys_66: 9.74688744e-15 + art_sys_67: 8.99479921e-18 + art_sys_68: 5.25305060e-17 + art_sys_69: -6.98200625e-13 + art_sys_70: 4.02932999e-11 + art_sys_71: 2.24316500e-05 + art_sys_72: 1.13261414e-13 + art_sys_73: 8.40823352e-18 + art_sys_74: -7.12663969e-05 + art_sys_75: 2.90735502e-18 + art_sys_76: -2.72051544e-14 + art_sys_77: 3.22500514e-14 + art_sys_78: 9.59560028e-17 + art_sys_79: -5.57505035e-15 + art_sys_80: -2.31665962e-05 + art_sys_81: -4.09770673e-16 + art_sys_82: 2.24596045e-15 + art_sys_83: -2.54396981e-16 + art_sys_84: -1.40596982e-17 + art_sys_85: -9.06337607e-17 + art_sys_86: 9.10174300e-19 + art_sys_87: -3.24207134e-13 + art_sys_88: -9.65756756e-13 + art_sys_89: 1.12122808e-14 + art_sys_90: 3.36386294e-11 + art_sys_91: 2.68444412e-11 + art_sys_92: 1.48400390e-12 + art_sys_93: 1.01807273e-11 + art_sys_94: -9.69480007e-12 + art_sys_95: -2.77387651e-13 + art_sys_96: -4.62661781e-14 + art_sys_97: 7.52108705e-10 + art_sys_98: 1.59206789e-13 + art_sys_99: 1.32954917e-13 + art_sys_100: 3.39276101e-11 + art_sys_101: -1.09751154e-11 + art_sys_102: 6.77529878e-13 + art_sys_103: 5.69830543e-10 + art_sys_104: 2.34695390e-11 + art_sys_105: -2.02662651e-14 + art_sys_106: 4.31656674e-10 + art_sys_107: 1.83787236e-17 + art_sys_108: 3.88604367e-11 + art_sys_109: -1.50044441e-04 + art_sys_110: -2.28819563e-14 + art_sys_111: -2.91957402e-09 + art_sys_112: 3.96729133e-10 + art_sys_113: -1.57860514e-14 + art_sys_114: 1.30287381e-09 + art_sys_115: 3.20561491e-11 + art_sys_116: -1.21928219e-05 + art_sys_117: 8.60664753e-16 + art_sys_118: 2.26297662e-09 + art_sys_119: 4.01404754e-12 + art_sys_120: -1.34136274e-09 + art_sys_121: 5.86573549e-06 + art_sys_122: -8.58156861e-11 + art_sys_123: 2.87979817e-10 + art_sys_124: 5.90617134e-10 + art_sys_125: -2.92732376e-10 + art_sys_126: -7.33900780e-07 + art_sys_127: 1.17584957e-10 + art_sys_128: -2.31835708e-10 + art_sys_129: 1.65873831e-11 + art_sys_130: -9.50390481e-10 + art_sys_131: -9.14326470e-10 + art_sys_132: -2.17802534e-10 + art_sys_133: 1.09725472e-07 + art_sys_134: -3.99108688e-09 + art_sys_135: 2.51697657e-10 + art_sys_136: -3.71109549e-10 + art_sys_137: 9.56942215e-12 + art_sys_138: 9.93485866e-10 + art_sys_139: -2.67508341e-09 + art_sys_140: 5.62022398e-16 + art_sys_141: -1.51274007e-10 + art_sys_142: 0.0 + art_sys_143: 6.90096808e-11 + art_sys_144: 1.68544077e-10 + art_sys_145: 2.41590155e-10 + art_sys_146: -6.67724363e-14 + art_sys_147: 1.27615639e-13 + art_sys_148: 3.00944003e-13 + art_sys_149: 2.27595104e-13 + art_sys_150: 7.84085109e-13 + art_sys_151: 1.35837715e-12 + art_sys_152: -7.28662196e-13 + art_sys_153: -1.41350884e-14 + art_sys_154: 1.09690731e-13 + art_sys_155: 1.86159008e-13 + art_sys_156: 6.01043176e-13 + art_sys_157: 1.30018781e-12 + art_sys_158: 0.0 + art_sys_159: -1.04922871e-10 + art_sys_160: -1.04922871e-10 + art_sys_161: 6.96911529e-12 + art_sys_162: -2.59523818e-24 + art_sys_163: -0.0 + art_sys_164: -1.57537221e-24 + art_sys_165: -1.40114690e-20 + art_sys_166: -2.93617187e-20 + art_sys_167: -9.85849501e-21 + art_sys_168: 7.98234442e-22 + art_sys_169: 2.91879189e-22 + art_sys_170: -7.75070406e-22 + art_sys_171: 5.61026859e-23 + art_sys_172: 5.40796825e-23 + art_sys_173: -1.07435234e-22 + art_sys_174: 1.46755794e-25 + art_sys_175: 5.70946582e-24 + art_sys_176: -6.17834001e-24 + art_sys_177: 2.39130338e-24 + art_sys_178: 3.83947152e-25 + art_sys_179: -1.03878945e-25 + art_sys_180: 4.21754002e-25 + art_sys_181: -7.50477789e-26 + art_sys_182: 4.17384098e-26 + art_sys_183: -3.88396813e-28 + art_sys_184: -4.58689382e-28 + art_sys_185: -8.34986364e-26 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -61059,190 +61059,190 @@ bins: luminosity_uncertainty: 5.28587800e-04 uncorrelated_uncertainty: 2.03303000e-04 - art_sys_1: 4.39655329e-30 - art_sys_2: 1.69172620e-29 + art_sys_2: 1.67893807e-29 art_sys_3: -7.43038884e-15 - art_sys_4: 2.31347648e-27 + art_sys_4: 5.82150297e-28 art_sys_5: 7.53523553e-15 - art_sys_6: 1.93993736e-28 - art_sys_7: -8.43275847e-28 + art_sys_6: 1.92400040e-28 + art_sys_7: -1.45187717e-27 art_sys_8: 7.60416551e-14 - art_sys_9: -4.09018654e-28 - art_sys_10: 7.83665989e-28 + art_sys_9: 4.35884066e-28 + art_sys_10: 7.83035113e-28 art_sys_11: 4.66417533e-13 - art_sys_12: -1.35292033e-27 - art_sys_13: 5.10840289e-25 - art_sys_14: -4.07938828e-26 - art_sys_15: -7.46096033e-12 - art_sys_16: -1.25430670e-25 - art_sys_17: -4.49297101e-25 + art_sys_12: -5.70333100e-27 + art_sys_13: -5.10752341e-25 + art_sys_14: -2.32169107e-26 + art_sys_15: 7.46096033e-12 + art_sys_16: -6.48855641e-26 + art_sys_17: -4.49000174e-25 art_sys_18: -5.35552667e-11 - art_sys_19: -1.05831706e-24 - art_sys_20: -5.53179317e-25 + art_sys_19: 9.00158985e-25 + art_sys_20: -5.54103752e-25 art_sys_21: -6.88444324e-11 - art_sys_22: 5.88618637e-24 - art_sys_23: -2.15968996e-25 + art_sys_22: 5.89085454e-24 + art_sys_23: -2.27300815e-25 art_sys_24: -5.88969421e-11 - art_sys_25: 4.27820490e-24 - art_sys_26: -9.19039658e-24 - art_sys_27: 2.81668088e-09 - art_sys_28: 6.27326447e-21 - art_sys_29: 3.21862835e-10 - art_sys_30: 1.78817872e-23 - art_sys_31: -4.37891781e-20 - art_sys_32: 7.32906809e-09 - art_sys_33: -6.59095680e-22 - art_sys_34: -6.45451937e-18 - art_sys_35: 5.82879776e-19 - art_sys_36: 2.98419967e-15 - art_sys_37: 8.01585139e-16 - art_sys_38: -1.94657180e-16 - art_sys_39: -5.91560731e-17 - art_sys_40: 3.97053561e-17 - art_sys_41: -5.45838262e-18 - art_sys_42: 2.94657238e-17 - art_sys_43: 3.80807890e-18 - art_sys_44: 3.09298997e-19 - art_sys_45: -3.43018346e-17 - art_sys_46: -4.44292516e-17 - art_sys_47: 3.55230992e-07 - art_sys_48: -1.08999713e-14 + art_sys_25: -4.67949106e-24 + art_sys_26: -1.10829796e-23 + art_sys_27: -2.81668088e-09 + art_sys_28: -2.32640019e-21 + art_sys_29: -9.14734295e-16 + art_sys_30: -3.36547830e-16 + art_sys_31: -5.81599104e-16 + art_sys_32: 9.40626931e-17 + art_sys_33: 1.75545021e-17 + art_sys_34: 2.19418151e-17 + art_sys_35: -8.73354270e-18 + art_sys_36: 3.21862835e-10 + art_sys_37: 2.02421633e-23 + art_sys_38: -6.45421728e-18 + art_sys_39: -3.27630224e-20 + art_sys_40: 7.32906809e-09 + art_sys_41: 2.78842218e-21 + art_sys_42: -6.28552591e-18 + art_sys_43: -3.79120461e-19 + art_sys_44: 2.77933929e-17 + art_sys_45: -1.03326445e-17 + art_sys_46: 3.55230992e-07 + art_sys_47: 3.01789591e-17 + art_sys_48: -6.11835260e-16 art_sys_49: 4.45152052e-07 - art_sys_50: -2.30485322e-17 - art_sys_51: 3.66597587e-17 - art_sys_52: 3.52158770e-16 - art_sys_53: 2.85434040e-15 + art_sys_50: -1.49733761e-17 + art_sys_51: -3.24440585e-17 + art_sys_52: 2.20259807e-15 + art_sys_53: 4.56209099e-17 art_sys_54: 1.15708906e-06 - art_sys_55: 4.11327060e-16 - art_sys_56: -1.34539181e-16 - art_sys_57: 5.61896608e-17 - art_sys_58: -2.00473654e-17 - art_sys_59: -9.53604635e-13 - art_sys_60: -9.91338615e-06 - art_sys_61: -2.07487048e-14 - art_sys_62: -3.04719751e-17 - art_sys_63: 1.82345547e-05 - art_sys_64: 6.92085807e-14 - art_sys_65: 4.38478046e-15 - art_sys_66: -2.25276699e-15 - art_sys_67: 4.66142674e-15 - art_sys_68: 1.30601670e-16 - art_sys_69: 5.07678139e-16 - art_sys_70: 5.20523411e-16 - art_sys_71: 5.76799618e-16 - art_sys_72: -4.92939176e-17 - art_sys_73: -1.12347767e-16 - art_sys_74: -4.64491913e-15 - art_sys_75: 7.29705332e-17 - art_sys_76: -1.83126434e-14 - art_sys_77: -8.17478306e-15 - art_sys_78: -1.48888885e-15 - art_sys_79: 1.46163580e-17 - art_sys_80: 2.29477612e-15 - art_sys_81: 5.23732374e-14 - art_sys_82: -3.79756377e-05 - art_sys_83: -5.47342961e-16 - art_sys_84: 6.97035104e-16 - art_sys_85: 3.59320711e-16 - art_sys_86: -5.63703401e-17 - art_sys_87: -1.42711545e-17 - art_sys_88: -6.26160519e-13 - art_sys_89: -2.57449253e-19 - art_sys_90: -3.11211994e-13 - art_sys_91: -2.43580302e-11 - art_sys_92: -2.23581755e-18 - art_sys_93: -1.51550256e-18 - art_sys_94: -2.12459917e-12 - art_sys_95: 1.30409319e-15 - art_sys_96: 7.64333632e-11 - art_sys_97: -7.70868622e-13 - art_sys_98: -1.88349385e-16 - art_sys_99: 5.58267533e-12 - art_sys_100: -6.51118319e-14 - art_sys_101: -5.98398298e-12 - art_sys_102: 8.12327606e-13 - art_sys_103: -1.45258676e-17 - art_sys_104: 9.31457536e-14 - art_sys_105: -1.72032047e-11 - art_sys_106: 5.89122643e-13 - art_sys_107: -1.51572518e-10 - art_sys_108: -2.79615577e-11 - art_sys_109: 1.09369321e-12 - art_sys_110: -1.26542741e-09 - art_sys_111: 1.54327830e-11 - art_sys_112: -2.50603720e-05 - art_sys_113: 4.52047564e-16 - art_sys_114: 2.09695938e-13 - art_sys_115: 3.95375932e-13 - art_sys_116: 6.63610722e-11 - art_sys_117: 1.13504259e-13 - art_sys_118: -1.17145592e-12 - art_sys_119: 3.57251520e-11 - art_sys_120: 8.31318322e-05 - art_sys_121: -9.00514286e-14 - art_sys_122: -8.29194935e-12 - art_sys_123: -5.29900869e-11 - art_sys_124: 2.22130048e-11 - art_sys_125: 1.29314869e-13 - art_sys_126: 1.00692436e-05 - art_sys_127: 6.89611313e-11 - art_sys_128: 2.08559227e-10 - art_sys_129: 3.46611994e-13 - art_sys_130: -1.90614726e-09 - art_sys_131: -4.82390499e-12 - art_sys_132: -1.55731973e-09 - art_sys_133: 4.24256989e-09 - art_sys_134: 2.93596996e-06 - art_sys_135: 4.54316281e-10 - art_sys_136: 1.41715539e-11 - art_sys_137: -6.51497044e-10 - art_sys_138: 3.74471255e-11 - art_sys_139: 9.93069486e-09 - art_sys_140: -3.12991329e-12 - art_sys_141: 3.98233435e-07 - art_sys_142: -3.09528780e-11 - art_sys_143: -7.02922843e-10 - art_sys_144: 2.11705008e-11 - art_sys_145: 5.12674202e-10 - art_sys_146: 5.21141728e-11 - art_sys_147: -3.79598264e-13 - art_sys_148: -2.12670018e-13 - art_sys_149: 2.96617363e-12 - art_sys_150: 2.34926418e-10 - art_sys_151: 6.85706258e-09 - art_sys_152: 1.01748775e-12 - art_sys_153: 6.26987632e-10 - art_sys_154: -8.08264428e-13 - art_sys_155: -2.64287929e-12 - art_sys_156: 0.0 - art_sys_157: 1.43335215e-11 - art_sys_158: 0.0 - art_sys_159: 1.16357952e-10 - art_sys_160: 4.79434260e-13 - art_sys_161: -1.59070677e-11 - art_sys_162: -1.59070677e-11 - art_sys_163: -1.37525348e-11 - art_sys_164: -1.37525348e-11 - art_sys_165: 1.59510206e-25 - art_sys_166: -5.30680570e-26 - art_sys_167: -0.0 - art_sys_168: 1.02076356e-20 - art_sys_169: 8.63846492e-21 - art_sys_170: 4.93422749e-21 - art_sys_171: 2.30818597e-21 - art_sys_172: -9.45980095e-22 - art_sys_173: -7.93090644e-23 - art_sys_174: -7.60894538e-23 - art_sys_175: -4.68275834e-23 - art_sys_176: 1.99478790e-23 - art_sys_177: -8.63231025e-24 - art_sys_178: -1.28735677e-23 - art_sys_179: 8.56878803e-25 - art_sys_180: 3.03934036e-24 - art_sys_181: -4.10632301e-24 - art_sys_182: 1.21090573e-24 - art_sys_183: -1.02717581e-26 - art_sys_184: -1.38694893e-26 - art_sys_185: 4.30327166e-27 + art_sys_55: -4.25579256e-16 + art_sys_56: 1.04026721e-16 + art_sys_57: 1.08888533e-14 + art_sys_58: 9.10927933e-15 + art_sys_59: 1.52989686e-15 + art_sys_60: -3.69016656e-17 + art_sys_61: 1.31041915e-15 + art_sys_62: 5.61997158e-16 + art_sys_63: 8.23803725e-17 + art_sys_64: 4.02193464e-16 + art_sys_65: -4.37488704e-16 + art_sys_66: -4.76230500e-15 + art_sys_67: 3.18074074e-17 + art_sys_68: -8.45261360e-17 + art_sys_69: 1.21147690e-12 + art_sys_70: -2.79350626e-12 + art_sys_71: -9.91340087e-06 + art_sys_72: -4.99024734e-14 + art_sys_73: -1.46151782e-17 + art_sys_74: -1.82345364e-05 + art_sys_75: -4.52920903e-17 + art_sys_76: -5.80096367e-14 + art_sys_77: 2.49869765e-14 + art_sys_78: -8.36886933e-15 + art_sys_79: 9.14443288e-15 + art_sys_80: 3.79755176e-05 + art_sys_81: -8.04612230e-16 + art_sys_82: 9.83168477e-16 + art_sys_83: -2.94974098e-16 + art_sys_84: 2.27588600e-17 + art_sys_85: 2.20547702e-16 + art_sys_86: 2.46837574e-16 + art_sys_87: -4.23936853e-13 + art_sys_88: 1.72021180e-12 + art_sys_89: -1.75917062e-13 + art_sys_90: 1.07999436e-10 + art_sys_91: -2.78737821e-11 + art_sys_92: 3.07145139e-13 + art_sys_93: -1.66889705e-11 + art_sys_94: -1.74484773e-12 + art_sys_95: 6.06976063e-13 + art_sys_96: 1.93368365e-13 + art_sys_97: 1.26355227e-10 + art_sys_98: -7.22702084e-13 + art_sys_99: -2.17726085e-13 + art_sys_100: 8.73658562e-12 + art_sys_101: 2.42471955e-13 + art_sys_102: -2.45610561e-12 + art_sys_103: -4.04506721e-09 + art_sys_104: 6.83239599e-13 + art_sys_105: 5.41287175e-14 + art_sys_106: 5.71284384e-11 + art_sys_107: -5.20103687e-17 + art_sys_108: -2.80301385e-10 + art_sys_109: -2.50606173e-05 + art_sys_110: 6.69750737e-14 + art_sys_111: -4.80929747e-10 + art_sys_112: -1.71384019e-09 + art_sys_113: 4.63316909e-14 + art_sys_114: 1.37588186e-10 + art_sys_115: -1.29167808e-10 + art_sys_116: 8.31348762e-05 + art_sys_117: -2.39405803e-15 + art_sys_118: 3.59707650e-10 + art_sys_119: -1.61729648e-11 + art_sys_120: -3.63637602e-10 + art_sys_121: -1.00692057e-05 + art_sys_122: -8.47595737e-10 + art_sys_123: -1.04572689e-09 + art_sys_124: -3.85114811e-09 + art_sys_125: 1.62894580e-09 + art_sys_126: 2.93485455e-06 + art_sys_127: -2.70093704e-10 + art_sys_128: 8.36246138e-10 + art_sys_129: -5.28761048e-11 + art_sys_130: 3.43594164e-09 + art_sys_131: 3.32086043e-09 + art_sys_132: 9.58661886e-10 + art_sys_133: -3.97872112e-07 + art_sys_134: 1.44992827e-08 + art_sys_135: -1.05387819e-09 + art_sys_136: 1.25955529e-09 + art_sys_137: -7.99908075e-11 + art_sys_138: -2.75947141e-09 + art_sys_139: 7.73400182e-09 + art_sys_140: 9.66002116e-17 + art_sys_141: 2.68439708e-10 + art_sys_142: -0.0 + art_sys_143: -2.49563844e-10 + art_sys_144: -4.66415776e-10 + art_sys_145: -5.86537808e-10 + art_sys_146: 1.88287902e-13 + art_sys_147: -3.59204672e-13 + art_sys_148: -9.54377725e-13 + art_sys_149: -6.62148672e-13 + art_sys_150: -2.13356614e-12 + art_sys_151: -4.33959649e-12 + art_sys_152: 2.66443399e-12 + art_sys_153: 5.20373072e-14 + art_sys_154: -4.36736876e-13 + art_sys_155: -3.60800257e-13 + art_sys_156: -1.33781346e-12 + art_sys_157: -3.68854876e-12 + art_sys_158: -0.0 + art_sys_159: 3.38275430e-10 + art_sys_160: 3.38275430e-10 + art_sys_161: -2.22547047e-11 + art_sys_162: 8.29335289e-24 + art_sys_163: 0.0 + art_sys_164: 5.03635854e-24 + art_sys_165: 3.88093092e-20 + art_sys_166: 8.31046224e-20 + art_sys_167: 2.76102562e-20 + art_sys_168: -2.60889272e-21 + art_sys_169: -9.87109506e-22 + art_sys_170: 2.54532885e-21 + art_sys_171: -1.58989282e-22 + art_sys_172: -1.66645251e-22 + art_sys_173: 3.49519395e-22 + art_sys_174: -2.73796380e-25 + art_sys_175: -1.67929729e-23 + art_sys_176: 1.71592317e-23 + art_sys_177: -7.38465313e-24 + art_sys_178: -1.29284649e-24 + art_sys_179: -6.86916281e-26 + art_sys_180: -1.56687063e-24 + art_sys_181: 2.11994032e-25 + art_sys_182: -1.22022885e-25 + art_sys_183: 1.64316935e-27 + art_sys_184: 1.66353692e-27 + art_sys_185: 2.66827196e-25 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -61350,190 +61350,190 @@ bins: luminosity_uncertainty: 1.85734640e-04 uncorrelated_uncertainty: 7.14364000e-05 - art_sys_1: 2.41178215e-31 - art_sys_2: 3.72194126e-30 + art_sys_2: 3.71561684e-30 art_sys_3: -2.88475320e-16 - art_sys_4: 1.36967103e-28 + art_sys_4: 4.34761740e-29 art_sys_5: 1.90888401e-15 - art_sys_6: 2.05142113e-29 - art_sys_7: -4.83067439e-29 + art_sys_6: 2.01038809e-29 + art_sys_7: -8.49287376e-29 art_sys_8: 9.02636735e-15 - art_sys_9: -1.04371304e-29 - art_sys_10: 1.70347829e-29 + art_sys_9: 4.15403627e-29 + art_sys_10: 1.69467454e-29 art_sys_11: 2.75748850e-14 - art_sys_12: -1.71424086e-29 - art_sys_13: 3.27356426e-26 - art_sys_14: -3.07619688e-27 - art_sys_15: -4.37573447e-13 - art_sys_16: 1.01312442e-26 - art_sys_17: -1.52008562e-26 + art_sys_12: -2.64704455e-28 + art_sys_13: -3.27304240e-26 + art_sys_14: 4.42391600e-28 + art_sys_15: 4.37573447e-13 + art_sys_16: 1.33725901e-28 + art_sys_17: -1.51371184e-26 art_sys_18: -3.55516846e-13 - art_sys_19: 3.25375588e-27 - art_sys_20: 1.22662967e-25 + art_sys_19: 7.20113829e-27 + art_sys_20: 1.22580586e-25 art_sys_21: -2.27126531e-12 - art_sys_22: -4.31022198e-25 - art_sys_23: 8.76768944e-26 + art_sys_22: -4.31391275e-25 + art_sys_23: 8.82392146e-26 art_sys_24: 3.54881332e-12 - art_sys_25: -3.99355060e-25 - art_sys_26: 1.01320949e-24 - art_sys_27: -5.93497863e-10 - art_sys_28: -6.89617715e-21 - art_sys_29: -7.39742506e-10 - art_sys_30: 2.36726112e-24 - art_sys_31: 2.44487820e-20 - art_sys_32: -4.80459635e-09 - art_sys_33: 2.52905986e-22 - art_sys_34: 2.29127177e-19 - art_sys_35: -1.73254376e-19 - art_sys_36: -8.98820830e-17 - art_sys_37: -2.77734633e-17 - art_sys_38: 1.64995300e-17 - art_sys_39: -1.04052416e-18 - art_sys_40: -1.18886462e-18 - art_sys_41: 1.58862972e-18 - art_sys_42: -1.48042036e-18 - art_sys_43: -2.67360364e-19 - art_sys_44: -2.81017597e-19 - art_sys_45: 1.76309191e-18 - art_sys_46: 2.43979234e-18 - art_sys_47: -1.26122136e-08 - art_sys_48: -3.87914842e-15 - art_sys_49: 1.66135830e-07 - art_sys_50: 1.28807109e-18 - art_sys_51: -2.12210396e-18 - art_sys_52: 1.08700251e-16 - art_sys_53: -6.50988051e-16 + art_sys_25: 4.72580514e-25 + art_sys_26: 1.50134490e-24 + art_sys_27: 5.93497863e-10 + art_sys_28: 1.28711201e-20 + art_sys_29: 1.24372327e-16 + art_sys_30: -4.47389277e-18 + art_sys_31: 4.63888251e-17 + art_sys_32: -1.92733370e-18 + art_sys_33: -2.07532223e-18 + art_sys_34: -2.31976568e-18 + art_sys_35: -2.04285381e-19 + art_sys_36: -7.39742506e-10 + art_sys_37: -5.92120841e-24 + art_sys_38: -1.53366370e-20 + art_sys_39: 2.57354696e-20 + art_sys_40: -4.80459635e-09 + art_sys_41: -1.64706742e-21 + art_sys_42: 4.30921310e-19 + art_sys_43: 1.35710245e-20 + art_sys_44: -1.15069397e-18 + art_sys_45: 2.14290167e-19 + art_sys_46: -1.26122137e-08 + art_sys_47: -1.41147539e-18 + art_sys_48: -2.28490317e-16 + art_sys_49: 1.66135831e-07 + art_sys_50: 8.30380680e-19 + art_sys_51: 1.37629887e-18 + art_sys_52: -4.97240378e-16 + art_sys_53: 1.64366624e-18 art_sys_54: -2.59308351e-07 - art_sys_55: -1.87672086e-17 - art_sys_56: -5.02427535e-17 - art_sys_57: -3.16320008e-18 - art_sys_58: 1.12652984e-18 - art_sys_59: -1.35382274e-13 - art_sys_60: -3.66356093e-07 - art_sys_61: 7.75452249e-16 - art_sys_62: 1.17098419e-17 - art_sys_63: -2.95153553e-06 - art_sys_64: 3.32788689e-14 - art_sys_65: -3.12881629e-15 - art_sys_66: 1.58418130e-14 - art_sys_67: -1.64970944e-15 - art_sys_68: 1.35888728e-15 - art_sys_69: -1.04560325e-15 - art_sys_70: -1.50342407e-15 - art_sys_71: -2.22789734e-15 - art_sys_72: 2.44032706e-16 - art_sys_73: 3.54775609e-16 - art_sys_74: 1.73945668e-16 - art_sys_75: -3.91503010e-16 - art_sys_76: -1.05756823e-13 - art_sys_77: -9.05117850e-15 - art_sys_78: -5.79292989e-15 - art_sys_79: -1.58141079e-16 - art_sys_80: -2.44579687e-15 - art_sys_81: -1.78788510e-15 - art_sys_82: 1.41979795e-06 - art_sys_83: 6.38251514e-16 - art_sys_84: -3.24857883e-16 - art_sys_85: 3.26680614e-16 - art_sys_86: 1.01441602e-16 - art_sys_87: 1.12980041e-16 - art_sys_88: 3.17213152e-13 - art_sys_89: -9.46224332e-18 - art_sys_90: -6.54506037e-14 - art_sys_91: 4.07918750e-13 - art_sys_92: 1.69267707e-17 - art_sys_93: -3.95684666e-18 - art_sys_94: 1.02829133e-11 - art_sys_95: 2.96870637e-16 - art_sys_96: -2.90731685e-12 - art_sys_97: 2.87977518e-14 - art_sys_98: -5.70279821e-17 - art_sys_99: -2.08001337e-13 - art_sys_100: -1.38156113e-14 - art_sys_101: 2.21858087e-13 - art_sys_102: 2.74896017e-12 - art_sys_103: 1.21279472e-18 - art_sys_104: -1.23308214e-13 - art_sys_105: 4.03723536e-11 - art_sys_106: -3.30514240e-13 - art_sys_107: -3.71059912e-11 - art_sys_108: 6.56471248e-11 - art_sys_109: -2.48056700e-12 - art_sys_110: -2.57863791e-10 - art_sys_111: -8.71850468e-12 - art_sys_112: 1.27215547e-05 - art_sys_113: -2.47644035e-16 - art_sys_114: -5.06263769e-13 - art_sys_115: -4.05400443e-14 - art_sys_116: -1.98068866e-10 - art_sys_117: -1.86736306e-13 - art_sys_118: 1.35040218e-12 - art_sys_119: -4.74168891e-10 - art_sys_120: 1.99180926e-05 - art_sys_121: 2.47290983e-13 - art_sys_122: -7.60758833e-12 - art_sys_123: 8.30867937e-11 - art_sys_124: -1.06833534e-11 - art_sys_125: -7.76454148e-13 - art_sys_126: -4.87430395e-05 - art_sys_127: -9.62278974e-12 - art_sys_128: 9.64705343e-11 - art_sys_129: -1.71605439e-12 - art_sys_130: 4.49528801e-09 - art_sys_131: 2.39047625e-11 - art_sys_132: -4.48571340e-10 - art_sys_133: -9.88794434e-09 - art_sys_134: -4.66017339e-06 - art_sys_135: -1.64012828e-09 - art_sys_136: -7.13317523e-11 - art_sys_137: 1.62270496e-09 - art_sys_138: -6.95612330e-11 - art_sys_139: -2.33608348e-08 - art_sys_140: 1.36065018e-11 - art_sys_141: -9.34910256e-07 - art_sys_142: -8.21490812e-12 - art_sys_143: 1.64636360e-09 - art_sys_144: -6.59146890e-11 - art_sys_145: -7.86076141e-10 - art_sys_146: -1.24785817e-10 - art_sys_147: 3.44414991e-13 - art_sys_148: -2.83340503e-13 - art_sys_149: -3.15906874e-11 - art_sys_150: -7.57926223e-10 - art_sys_151: -3.51025196e-08 - art_sys_152: -8.38041411e-12 - art_sys_153: -2.10321818e-09 - art_sys_154: 5.12501726e-13 - art_sys_155: 1.05290103e-11 - art_sys_156: -0.0 - art_sys_157: -8.83378535e-12 - art_sys_158: -0.0 - art_sys_159: -2.15678766e-10 - art_sys_160: 8.26436646e-12 - art_sys_161: 2.93819969e-11 - art_sys_162: 2.93819969e-11 - art_sys_163: 2.93856243e-11 - art_sys_164: 2.93856243e-11 - art_sys_165: -3.32818440e-25 - art_sys_166: 1.10549155e-25 - art_sys_167: 0.0 - art_sys_168: -5.22760812e-20 - art_sys_169: -4.35552938e-20 - art_sys_170: -2.86873578e-22 - art_sys_171: -1.25365761e-20 - art_sys_172: 4.87517530e-21 - art_sys_173: 6.59799940e-23 - art_sys_174: 3.05391340e-22 - art_sys_175: 1.79105810e-22 - art_sys_176: -7.60855451e-23 - art_sys_177: 3.59061245e-23 - art_sys_178: 4.84990832e-23 - art_sys_179: -3.32440165e-24 - art_sys_180: -5.91139853e-24 - art_sys_181: 1.71478053e-23 - art_sys_182: -6.18555568e-24 - art_sys_183: 5.79666962e-26 - art_sys_184: 3.72059863e-26 - art_sys_185: -8.27324524e-27 + art_sys_55: 2.78393032e-16 + art_sys_56: 3.83647376e-17 + art_sys_57: 1.86900418e-14 + art_sys_58: -2.96258438e-15 + art_sys_59: -1.27855652e-14 + art_sys_60: 1.77126046e-18 + art_sys_61: -2.19312162e-15 + art_sys_62: 8.15423596e-16 + art_sys_63: 1.09981981e-15 + art_sys_64: -1.00458542e-15 + art_sys_65: 1.16966987e-15 + art_sys_66: -1.42770420e-16 + art_sys_67: -1.14515283e-16 + art_sys_68: 2.64780602e-16 + art_sys_69: -4.64187926e-14 + art_sys_70: -1.21469945e-12 + art_sys_71: -3.66353821e-07 + art_sys_72: -1.85295730e-15 + art_sys_73: 3.04452250e-19 + art_sys_74: 2.95153344e-06 + art_sys_75: 2.94668349e-16 + art_sys_76: 8.41995965e-14 + art_sys_77: 2.71752317e-14 + art_sys_78: -2.96689846e-15 + art_sys_79: -2.09365625e-16 + art_sys_80: -1.41979359e-06 + art_sys_81: -1.32223222e-15 + art_sys_82: -1.31489782e-15 + art_sys_83: 4.40563280e-16 + art_sys_84: -1.15505009e-16 + art_sys_85: -1.67404575e-16 + art_sys_86: -3.72631669e-17 + art_sys_87: -5.83650114e-14 + art_sys_88: -8.01846677e-12 + art_sys_89: -4.00289624e-14 + art_sys_90: -6.78480203e-12 + art_sys_91: 7.70442675e-13 + art_sys_92: -1.13562156e-13 + art_sys_93: 6.23957835e-13 + art_sys_94: 7.98230495e-13 + art_sys_95: -2.48208905e-14 + art_sys_96: -2.45372392e-13 + art_sys_97: -6.36568403e-11 + art_sys_98: 3.81336080e-14 + art_sys_99: 8.13825533e-15 + art_sys_100: -2.22308724e-12 + art_sys_101: 5.02065906e-13 + art_sys_102: 5.77318538e-12 + art_sys_103: -9.61136687e-10 + art_sys_104: -1.38744879e-12 + art_sys_105: -3.14943094e-13 + art_sys_106: -3.44118861e-11 + art_sys_107: 2.62954141e-17 + art_sys_108: -9.46903337e-11 + art_sys_109: 1.27216453e-05 + art_sys_110: -3.12460276e-13 + art_sys_111: 2.48566592e-10 + art_sys_112: 2.41020841e-09 + art_sys_113: -2.14675705e-13 + art_sys_114: -1.24490600e-10 + art_sys_115: 2.02697999e-10 + art_sys_116: 1.99190158e-05 + art_sys_117: 1.26399677e-14 + art_sys_118: -1.91587438e-10 + art_sys_119: 2.47815604e-11 + art_sys_120: 6.27221055e-11 + art_sys_121: 4.87432836e-05 + art_sys_122: -2.64490898e-10 + art_sys_123: 2.44107589e-09 + art_sys_124: -1.02999323e-09 + art_sys_125: -2.62157979e-10 + art_sys_126: -4.65843917e-06 + art_sys_127: 1.15541395e-09 + art_sys_128: -2.00629557e-09 + art_sys_129: 1.94857004e-10 + art_sys_130: -8.16861767e-09 + art_sys_131: -7.74464640e-09 + art_sys_132: -1.27163153e-09 + art_sys_133: 9.34236296e-07 + art_sys_134: -3.37808845e-08 + art_sys_135: 1.61397758e-09 + art_sys_136: -3.78872814e-09 + art_sys_137: -8.79413200e-11 + art_sys_138: 1.46260050e-08 + art_sys_139: -3.71579567e-08 + art_sys_140: -4.90750629e-17 + art_sys_141: -3.34942600e-09 + art_sys_142: 0.0 + art_sys_143: 6.83235510e-10 + art_sys_144: 2.51325990e-09 + art_sys_145: 4.18600930e-09 + art_sys_146: -9.62637936e-13 + art_sys_147: 1.84468214e-12 + art_sys_148: 3.59395340e-12 + art_sys_149: 3.13669007e-12 + art_sys_150: 1.18685664e-11 + art_sys_151: 1.60640918e-11 + art_sys_152: -6.06835816e-12 + art_sys_153: -1.16955399e-13 + art_sys_154: 6.80772659e-13 + art_sys_155: 3.82797960e-12 + art_sys_156: 1.13301933e-11 + art_sys_157: 1.86451551e-11 + art_sys_158: 0.0 + art_sys_159: -1.21113135e-09 + art_sys_160: -1.21113135e-09 + art_sys_161: 8.22967865e-11 + art_sys_162: -3.05942273e-23 + art_sys_163: -0.0 + art_sys_164: -1.85536109e-23 + art_sys_165: -2.04051996e-19 + art_sys_166: -4.21814498e-19 + art_sys_167: -1.43816864e-19 + art_sys_168: 9.11378368e-21 + art_sys_169: 3.14892040e-21 + art_sys_170: -8.99288583e-21 + art_sys_171: 7.97031877e-22 + art_sys_172: 6.86185544e-22 + art_sys_173: -1.24150365e-21 + art_sys_174: 3.14770562e-24 + art_sys_175: 7.77419790e-23 + art_sys_176: -9.08063561e-23 + art_sys_177: 3.02441359e-23 + art_sys_178: 4.14968038e-24 + art_sys_179: -3.88492913e-24 + art_sys_180: 3.60907147e-24 + art_sys_181: -1.07981632e-24 + art_sys_182: 5.73262769e-25 + art_sys_183: -1.45648038e-27 + art_sys_184: -3.94031651e-27 + art_sys_185: -9.86856350e-25 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -61641,190 +61641,190 @@ bins: luminosity_uncertainty: 6.05758400e-05 uncorrelated_uncertainty: 2.32984000e-05 - art_sys_1: 6.32793146e-33 - art_sys_2: 1.50683304e-31 + art_sys_2: 1.50586617e-31 art_sys_3: -6.78656170e-18 - art_sys_4: 3.75966114e-30 + art_sys_4: 1.44090567e-30 art_sys_5: 7.62202025e-17 - art_sys_6: 7.94234348e-31 - art_sys_7: -1.06995054e-30 + art_sys_6: 7.77622421e-31 + art_sys_7: -1.94905091e-30 art_sys_8: 3.55099461e-16 - art_sys_9: -3.19515145e-31 - art_sys_10: -1.18676235e-30 + art_sys_9: 1.06317275e-30 + art_sys_10: -1.19034912e-30 art_sys_11: 7.42269415e-16 - art_sys_12: 2.61815180e-30 - art_sys_13: 8.60137436e-28 - art_sys_14: 1.72247175e-28 - art_sys_15: -1.01999331e-14 - art_sys_16: -2.11035058e-28 - art_sys_17: 1.14114762e-27 + art_sys_12: -4.69062118e-30 + art_sys_13: -8.59996687e-28 + art_sys_14: 1.10638541e-28 + art_sys_15: 1.01999331e-14 + art_sys_16: 1.52981907e-29 + art_sys_17: 1.14548046e-27 art_sys_18: 1.64293548e-13 - art_sys_19: 3.30942504e-27 - art_sys_20: -4.83104666e-27 + art_sys_19: -3.59602868e-27 + art_sys_20: -4.82582852e-27 art_sys_21: 2.40254580e-13 - art_sys_22: -4.45069951e-26 - art_sys_23: -4.04810952e-27 + art_sys_22: -4.44924577e-26 + art_sys_23: -4.07275348e-27 art_sys_24: -8.79634453e-14 - art_sys_25: -3.65490643e-26 - art_sys_26: 8.49270706e-26 - art_sys_27: -5.53979338e-11 - art_sys_28: 2.00725159e-22 - art_sys_29: 4.94697152e-11 - art_sys_30: -5.66056999e-25 - art_sys_31: 1.68254197e-21 - art_sys_32: -3.05747034e-10 - art_sys_33: 2.00645462e-23 - art_sys_34: 6.41318627e-20 - art_sys_35: -1.57034849e-20 - art_sys_36: -6.12084469e-17 - art_sys_37: -1.17283649e-17 - art_sys_38: 4.26396410e-18 - art_sys_39: 8.83534352e-19 - art_sys_40: -6.36337826e-19 - art_sys_41: 2.05541140e-19 - art_sys_42: -7.92065354e-19 - art_sys_43: -9.13475982e-20 - art_sys_44: -1.07866797e-19 - art_sys_45: 6.24078610e-19 - art_sys_46: 1.07268555e-18 - art_sys_47: -3.52969141e-09 - art_sys_48: -1.89680965e-16 - art_sys_49: 8.28522728e-09 - art_sys_50: 5.60376306e-19 - art_sys_51: -8.67506550e-19 - art_sys_52: 4.95459271e-18 - art_sys_53: -7.73984744e-17 + art_sys_25: 4.16630956e-26 + art_sys_26: 1.08945754e-25 + art_sys_27: 5.53979338e-11 + art_sys_28: -1.12123742e-21 + art_sys_29: 1.96781606e-17 + art_sys_30: 1.19232499e-17 + art_sys_31: 1.49615669e-17 + art_sys_32: -1.06183362e-18 + art_sys_33: -1.98650953e-19 + art_sys_34: -9.13249771e-20 + art_sys_35: -4.96047344e-20 + art_sys_36: 4.94697152e-11 + art_sys_37: 5.00373775e-26 + art_sys_38: 1.53037747e-19 + art_sys_39: 1.51098223e-21 + art_sys_40: -3.05747034e-10 + art_sys_41: -1.08816949e-22 + art_sys_42: 2.23478370e-19 + art_sys_43: 3.77568098e-21 + art_sys_44: -5.69671832e-19 + art_sys_45: 9.27566859e-20 + art_sys_46: -3.52969142e-09 + art_sys_47: -1.12165344e-18 + art_sys_48: -1.13978051e-17 + art_sys_49: 8.28522729e-09 + art_sys_50: 5.74396589e-19 + art_sys_51: 9.40835515e-19 + art_sys_52: -5.92761885e-17 + art_sys_53: -2.13164378e-19 art_sys_54: -3.10230112e-08 - art_sys_55: -7.40566500e-18 - art_sys_56: -2.49774041e-18 - art_sys_57: -1.11719325e-18 - art_sys_58: 3.79570926e-19 - art_sys_59: 8.49012032e-15 - art_sys_60: 1.38015371e-07 - art_sys_61: 4.28113004e-16 - art_sys_62: 1.20291314e-18 - art_sys_63: -4.18374617e-07 - art_sys_64: -1.64477120e-14 - art_sys_65: -1.60489077e-14 - art_sys_66: -2.07809637e-14 - art_sys_67: 1.09066805e-14 - art_sys_68: -1.34219451e-15 - art_sys_69: 3.20596153e-15 - art_sys_70: 2.38772724e-15 - art_sys_71: 3.36622927e-15 - art_sys_72: -1.99243228e-16 - art_sys_73: -2.83615525e-16 - art_sys_74: 9.57140995e-17 - art_sys_75: 2.11945907e-16 - art_sys_76: 3.71272970e-14 - art_sys_77: 6.47651570e-15 - art_sys_78: -2.89709935e-14 - art_sys_79: 3.61701309e-17 - art_sys_80: 1.00363636e-15 - art_sys_81: -1.12217811e-15 - art_sys_82: 7.83451026e-07 - art_sys_83: 1.57860609e-15 - art_sys_84: -5.09306145e-16 - art_sys_85: -3.94282676e-16 - art_sys_86: 5.98464454e-16 - art_sys_87: -1.02642263e-17 - art_sys_88: 2.24400403e-14 - art_sys_89: 7.14375385e-17 - art_sys_90: 2.19312046e-14 - art_sys_91: 4.93676244e-13 - art_sys_92: 3.91053158e-17 - art_sys_93: -9.83349695e-19 - art_sys_94: 2.14950055e-12 - art_sys_95: -9.51800411e-17 - art_sys_96: -1.57772467e-12 - art_sys_97: 1.59025465e-14 - art_sys_98: 1.48612903e-17 - art_sys_99: -1.15063901e-13 - art_sys_100: 4.78780083e-15 - art_sys_101: 1.23617869e-13 - art_sys_102: -1.03486088e-13 - art_sys_103: 2.91530558e-19 - art_sys_104: -2.59876948e-16 - art_sys_105: -1.62402460e-10 - art_sys_106: -1.02294502e-14 - art_sys_107: 1.07004983e-11 - art_sys_108: -2.63994029e-10 - art_sys_109: 1.05053707e-11 - art_sys_110: 8.50135606e-11 - art_sys_111: -5.10129268e-13 - art_sys_112: 8.97170564e-07 - art_sys_113: -1.41966879e-17 - art_sys_114: 1.94947249e-12 - art_sys_115: -2.68105405e-14 - art_sys_116: 2.09453381e-10 - art_sys_117: 1.23890002e-12 - art_sys_118: 8.26453620e-16 - art_sys_119: -9.57319535e-10 - art_sys_120: -5.98018028e-06 - art_sys_121: -7.70367097e-13 - art_sys_122: 9.23590199e-13 - art_sys_123: -4.77460614e-10 - art_sys_124: -3.84394059e-12 - art_sys_125: 2.06955356e-13 - art_sys_126: -1.01965664e-05 - art_sys_127: 9.66980026e-10 - art_sys_128: -7.87096494e-12 - art_sys_129: 1.42101413e-12 - art_sys_130: -1.79647344e-08 - art_sys_131: -1.97068807e-11 - art_sys_132: 1.42006269e-10 - art_sys_133: 4.02495122e-08 - art_sys_134: 2.62470610e-05 - art_sys_135: -1.42507047e-10 - art_sys_136: 5.50823661e-11 - art_sys_137: -5.98056937e-09 - art_sys_138: 4.41377283e-10 - art_sys_139: 9.36759233e-08 - art_sys_140: -1.86887857e-11 - art_sys_141: 3.76038514e-06 - art_sys_142: -4.21742278e-10 - art_sys_143: -6.62606578e-09 - art_sys_144: 1.99255599e-10 - art_sys_145: 4.69197937e-09 - art_sys_146: 5.06669876e-10 - art_sys_147: -3.82789122e-12 - art_sys_148: -2.69534911e-12 - art_sys_149: -2.83475093e-11 - art_sys_150: 1.88174361e-09 - art_sys_151: 2.49681937e-08 - art_sys_152: -1.54655337e-13 - art_sys_153: 4.60336653e-09 - art_sys_154: 2.40095502e-14 - art_sys_155: -1.13814254e-11 - art_sys_156: 0.0 - art_sys_157: 9.51138169e-11 - art_sys_158: 0.0 - art_sys_159: 1.06700918e-09 - art_sys_160: 3.51440702e-11 - art_sys_161: -1.30264600e-10 - art_sys_162: -1.30264600e-10 - art_sys_163: -1.05178348e-10 - art_sys_164: -1.05178348e-10 - art_sys_165: 1.23613232e-24 - art_sys_166: -4.10615022e-25 - art_sys_167: -0.0 - art_sys_168: 1.02620680e-20 - art_sys_169: 3.28755058e-20 - art_sys_170: 5.56195010e-21 - art_sys_171: 7.17093616e-21 - art_sys_172: -3.38304128e-21 - art_sys_173: -1.70593393e-21 - art_sys_174: -6.21384297e-22 - art_sys_175: -4.27551738e-22 - art_sys_176: 1.87531354e-22 - art_sys_177: -6.66339173e-23 - art_sys_178: -1.19841282e-22 - art_sys_179: 3.52853737e-24 - art_sys_180: 2.65439174e-23 - art_sys_181: -3.35274782e-23 - art_sys_182: 4.17592700e-24 - art_sys_183: -2.58530044e-26 - art_sys_184: -1.30075837e-25 - art_sys_185: 4.12512387e-26 + art_sys_55: 2.04469942e-17 + art_sys_56: 1.89481890e-18 + art_sys_57: 5.57739048e-14 + art_sys_58: 4.56839154e-14 + art_sys_59: 1.62681970e-14 + art_sys_60: 1.30258246e-18 + art_sys_61: -1.60117308e-15 + art_sys_62: 3.72149188e-16 + art_sys_63: 5.15207113e-16 + art_sys_64: 7.80392776e-16 + art_sys_65: -1.23745792e-15 + art_sys_66: 6.75707030e-17 + art_sys_67: 1.00362035e-16 + art_sys_68: -2.74236401e-16 + art_sys_69: -2.50143115e-14 + art_sys_70: -1.42217094e-14 + art_sys_71: 1.38015710e-07 + art_sys_72: 6.94306773e-16 + art_sys_73: 5.05731862e-19 + art_sys_74: 4.18374214e-07 + art_sys_75: -1.96444562e-16 + art_sys_76: -2.60253619e-14 + art_sys_77: 8.56864333e-16 + art_sys_78: 1.39297047e-14 + art_sys_79: -2.50377250e-16 + art_sys_80: -7.83448550e-07 + art_sys_81: -2.63045614e-16 + art_sys_82: 1.72637269e-15 + art_sys_83: -7.67392279e-16 + art_sys_84: 6.94472665e-17 + art_sys_85: -5.92012408e-16 + art_sys_86: 3.36395166e-16 + art_sys_87: 2.59122409e-14 + art_sys_88: -1.64864225e-12 + art_sys_89: -2.55601334e-12 + art_sys_90: -2.28009340e-12 + art_sys_91: 5.69884675e-13 + art_sys_92: -1.32361882e-14 + art_sys_93: 3.44299488e-13 + art_sys_94: 6.75617489e-14 + art_sys_95: -1.24900094e-14 + art_sys_96: 1.68861622e-12 + art_sys_97: -4.55833022e-12 + art_sys_98: 1.53157602e-14 + art_sys_99: 4.49171038e-15 + art_sys_100: -4.14660847e-13 + art_sys_101: -4.86802016e-16 + art_sys_102: -2.31840132e-11 + art_sys_103: 2.91716089e-10 + art_sys_104: -2.71569486e-14 + art_sys_105: 1.47867913e-13 + art_sys_106: -1.94587088e-12 + art_sys_107: 1.66321757e-18 + art_sys_108: 1.60492986e-11 + art_sys_109: 8.97181181e-07 + art_sys_110: 3.31236264e-13 + art_sys_111: 1.68171676e-11 + art_sys_112: -1.62773021e-08 + art_sys_113: 2.33491932e-13 + art_sys_114: -1.87965656e-12 + art_sys_115: -1.16224996e-09 + art_sys_116: -5.98036465e-06 + art_sys_117: -7.82412973e-15 + art_sys_118: -1.20349675e-11 + art_sys_119: -1.44017178e-10 + art_sys_120: 1.27378328e-11 + art_sys_121: 1.01982558e-05 + art_sys_122: 4.76469537e-11 + art_sys_123: -9.91737975e-09 + art_sys_124: 1.09796597e-10 + art_sys_125: 1.33919991e-09 + art_sys_126: 2.62369845e-05 + art_sys_127: -4.27966678e-09 + art_sys_128: 7.82709850e-09 + art_sys_129: -3.67071312e-10 + art_sys_130: 3.22301615e-08 + art_sys_131: 3.14491451e-08 + art_sys_132: 8.45337825e-09 + art_sys_133: -3.75660526e-06 + art_sys_134: 1.37447802e-07 + art_sys_135: -9.94289270e-09 + art_sys_136: 1.01476002e-08 + art_sys_137: -7.67311370e-10 + art_sys_138: -9.01594677e-09 + art_sys_139: 3.33997640e-08 + art_sys_140: -5.84928246e-18 + art_sys_141: -2.87050480e-09 + art_sys_142: -0.0 + art_sys_143: -1.85816832e-09 + art_sys_144: -1.47623815e-09 + art_sys_145: 7.74863010e-11 + art_sys_146: 7.03808160e-13 + art_sys_147: -1.33050549e-12 + art_sys_148: -7.49213245e-12 + art_sys_149: -3.17508466e-12 + art_sys_150: -5.80098362e-12 + art_sys_151: -3.68402387e-11 + art_sys_152: 2.65389111e-11 + art_sys_153: 5.88891753e-13 + art_sys_154: -6.00945424e-12 + art_sys_155: 4.95009008e-12 + art_sys_156: 2.81309558e-12 + art_sys_157: -1.63823420e-11 + art_sys_158: -0.0 + art_sys_159: 2.54869338e-09 + art_sys_160: 2.54869338e-09 + art_sys_161: -1.76414083e-10 + art_sys_162: 6.55349302e-23 + art_sys_163: 0.0 + art_sys_164: 3.97557517e-23 + art_sys_165: 1.23231896e-19 + art_sys_166: 3.24806055e-19 + art_sys_167: 9.36975707e-20 + art_sys_168: -2.81424499e-20 + art_sys_169: -1.18764236e-20 + art_sys_170: 2.65448138e-20 + art_sys_171: -6.39339643e-22 + art_sys_172: -1.35015900e-21 + art_sys_173: 3.68597622e-21 + art_sys_174: 2.52778796e-24 + art_sys_175: -9.83043395e-23 + art_sys_176: 5.16898979e-23 + art_sys_177: -6.03773811e-23 + art_sys_178: -1.55655225e-23 + art_sys_179: -1.86922703e-23 + art_sys_180: -2.58318223e-23 + art_sys_181: 8.17828407e-25 + art_sys_182: -6.92616669e-25 + art_sys_183: 1.56104095e-26 + art_sys_184: 1.70084081e-26 + art_sys_185: 2.19335826e-24 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -61932,190 +61932,190 @@ bins: luminosity_uncertainty: 1.80390340e-05 uncorrelated_uncertainty: 6.93809000e-06 - art_sys_1: 5.79376746e-35 - art_sys_2: 1.84419429e-33 + art_sys_2: 1.84327797e-33 art_sys_3: -5.43834264e-20 - art_sys_4: 2.14415227e-32 + art_sys_4: 1.42580907e-32 art_sys_5: 9.15068458e-19 - art_sys_6: 9.39406496e-33 - art_sys_7: -1.08960284e-33 + art_sys_6: 9.16462264e-33 + art_sys_7: -5.37432084e-33 art_sys_8: 4.29876705e-18 - art_sys_9: -6.70914445e-33 - art_sys_10: -4.44687717e-32 + art_sys_9: -5.42776660e-33 + art_sys_10: -4.45082755e-32 art_sys_11: 3.70890994e-18 - art_sys_12: 4.26533547e-32 - art_sys_13: -1.73813635e-29 - art_sys_14: 1.20073841e-29 - art_sys_15: 2.46072258e-16 - art_sys_16: -3.87950937e-29 - art_sys_17: 6.67919119e-29 + art_sys_12: 1.44576323e-31 + art_sys_13: 1.73819772e-29 + art_sys_14: 5.47470898e-30 + art_sys_15: -2.46072258e-16 + art_sys_16: -1.13712569e-29 + art_sys_17: 6.68337913e-29 art_sys_18: 5.07698520e-15 - art_sys_19: 7.42562952e-29 - art_sys_20: -5.88017967e-28 + art_sys_19: -1.23913218e-28 + art_sys_20: -5.87421051e-28 art_sys_21: 1.29888809e-14 - art_sys_22: -3.23893531e-28 - art_sys_23: -4.37681447e-28 + art_sys_22: -3.21969719e-28 + art_sys_23: -4.40819219e-28 art_sys_24: -1.68924371e-14 - art_sys_25: 2.12153458e-28 - art_sys_26: 2.04603746e-28 - art_sys_27: -5.30330745e-13 - art_sys_28: 1.50901353e-23 - art_sys_29: 2.34593246e-12 - art_sys_30: -1.71631908e-26 - art_sys_31: 6.52871941e-24 - art_sys_32: -8.60191006e-13 - art_sys_33: 1.10504829e-25 - art_sys_34: 5.03593877e-22 - art_sys_35: -7.99307816e-23 - art_sys_36: -3.42138267e-19 - art_sys_37: 1.55684493e-20 - art_sys_38: 1.45449132e-20 - art_sys_39: 1.46442677e-20 - art_sys_40: -6.26812951e-21 - art_sys_41: -1.21070194e-21 - art_sys_42: -4.05846345e-21 - art_sys_43: -3.04145547e-22 - art_sys_44: 3.74539623e-22 - art_sys_45: -2.66847984e-21 - art_sys_46: -2.78062277e-21 - art_sys_47: -2.77172445e-11 - art_sys_48: 5.11750869e-19 + art_sys_25: -1.58932112e-28 + art_sys_26: 1.25138745e-28 + art_sys_27: 5.30330745e-13 + art_sys_28: -4.75986008e-23 + art_sys_29: -2.63486652e-19 + art_sys_30: 6.69259590e-20 + art_sys_31: -4.16320716e-20 + art_sys_32: 2.96667701e-21 + art_sys_33: 6.93163772e-21 + art_sys_34: 5.17637827e-21 + art_sys_35: 1.11294475e-21 + art_sys_36: 2.34593246e-12 + art_sys_37: 1.07465078e-26 + art_sys_38: 1.72430755e-21 + art_sys_39: 2.45553148e-24 + art_sys_40: -8.60191006e-13 + art_sys_41: -3.60425185e-25 + art_sys_42: -1.24709127e-22 + art_sys_43: 2.96026487e-23 + art_sys_44: -9.20952399e-22 + art_sys_45: 7.71761932e-22 + art_sys_46: -2.77172445e-11 + art_sys_47: -8.13076515e-22 + art_sys_48: 2.78723702e-20 art_sys_49: -2.02874244e-11 - art_sys_50: -1.44977337e-21 - art_sys_51: 2.34014589e-21 - art_sys_52: -1.77737711e-20 - art_sys_53: -1.47405483e-19 - art_sys_54: -5.95081008e-11 - art_sys_55: -1.25461964e-19 - art_sys_56: 6.37707714e-21 - art_sys_57: 5.10534431e-21 - art_sys_58: -1.92804514e-21 - art_sys_59: 8.57109770e-16 - art_sys_60: 4.35821735e-09 - art_sys_61: 1.79860840e-18 - art_sys_62: 3.61456107e-22 - art_sys_63: 7.75831560e-09 - art_sys_64: -9.36050075e-14 - art_sys_65: -4.56922675e-14 - art_sys_66: 2.47965728e-14 - art_sys_67: -5.11285306e-14 - art_sys_68: 3.10035382e-14 - art_sys_69: -2.53885195e-14 - art_sys_70: -4.88791814e-14 - art_sys_71: -6.89383464e-14 - art_sys_72: 9.32154289e-15 - art_sys_73: 1.16775765e-14 - art_sys_74: 3.98174364e-19 - art_sys_75: -1.47572360e-14 - art_sys_76: -1.07270304e-14 - art_sys_77: -2.25038131e-14 - art_sys_78: 1.26244623e-14 - art_sys_79: -6.56375057e-15 - art_sys_80: -4.09484183e-15 - art_sys_81: 6.65426679e-15 - art_sys_82: 3.28593354e-09 - art_sys_83: 9.51679441e-16 - art_sys_84: 9.24196737e-16 - art_sys_85: -5.23618530e-17 - art_sys_86: 5.55219291e-16 - art_sys_87: 4.86878880e-15 - art_sys_88: -1.99758673e-15 - art_sys_89: -4.45629244e-17 - art_sys_90: 3.66706609e-15 - art_sys_91: 4.17098550e-15 - art_sys_92: 5.73869190e-18 - art_sys_93: 4.89862854e-18 - art_sys_94: -2.09754749e-13 - art_sys_95: -7.04710961e-18 - art_sys_96: -6.40915793e-15 - art_sys_97: 6.67052781e-17 - art_sys_98: 1.20258039e-18 - art_sys_99: -4.94109389e-16 - art_sys_100: 3.31339777e-16 - art_sys_101: 5.19588948e-16 - art_sys_102: -4.77177204e-14 - art_sys_103: 5.16673852e-22 - art_sys_104: 1.05233435e-15 - art_sys_105: 5.40728604e-10 - art_sys_106: 3.28129058e-15 - art_sys_107: 8.47794767e-13 - art_sys_108: 8.80125002e-10 - art_sys_109: -2.96135764e-11 - art_sys_110: 6.20019577e-12 - art_sys_111: 1.08693827e-13 - art_sys_112: -1.62951336e-07 - art_sys_113: 3.01550794e-18 - art_sys_114: -7.37488960e-12 - art_sys_115: 5.37978781e-16 - art_sys_116: 6.86045234e-11 - art_sys_117: 8.39637395e-13 - art_sys_118: -1.71004415e-14 - art_sys_119: -2.04462445e-10 - art_sys_120: -4.65052454e-07 - art_sys_121: 4.82974916e-12 - art_sys_122: 1.32453910e-13 - art_sys_123: -1.29121926e-10 - art_sys_124: 1.83988468e-13 - art_sys_125: -3.02867948e-11 - art_sys_126: 9.99138903e-07 - art_sys_127: 6.24767965e-09 - art_sys_128: -2.51389926e-12 - art_sys_129: -6.07513756e-11 - art_sys_130: 6.10687951e-08 - art_sys_131: 8.46768791e-10 - art_sys_132: 2.14893779e-11 - art_sys_133: -1.29349093e-07 - art_sys_134: 6.86640570e-06 - art_sys_135: 8.06708074e-11 - art_sys_136: -2.54985042e-09 - art_sys_137: 2.56246237e-08 - art_sys_138: 2.04283521e-10 - art_sys_139: -3.15085173e-07 - art_sys_140: 4.41283183e-10 - art_sys_141: -1.25305401e-05 - art_sys_142: 2.61438221e-10 - art_sys_143: 2.19367013e-08 - art_sys_144: -1.51211237e-09 - art_sys_145: 1.32980942e-09 - art_sys_146: -1.75165238e-09 - art_sys_147: -1.69466684e-11 - art_sys_148: -3.51693188e-11 - art_sys_149: -2.41955423e-09 - art_sys_150: -1.86206962e-08 - art_sys_151: -1.26720198e-06 - art_sys_152: -3.59340056e-10 - art_sys_153: -5.46520045e-08 - art_sys_154: -6.90831723e-15 - art_sys_155: 3.29241717e-10 - art_sys_156: -0.0 - art_sys_157: 9.05751709e-10 - art_sys_158: -0.0 - art_sys_159: -7.23965641e-10 - art_sys_160: 5.24745907e-10 - art_sys_161: 1.30807126e-10 - art_sys_162: 1.30807126e-10 - art_sys_163: 3.22209208e-10 - art_sys_164: 3.22209208e-10 - art_sys_165: -3.31382618e-24 - art_sys_166: 1.09489236e-24 - art_sys_167: 0.0 - art_sys_168: -1.98282267e-18 - art_sys_169: -1.56389039e-18 - art_sys_170: -6.92047590e-19 - art_sys_171: -4.77937255e-19 - art_sys_172: 1.76744532e-19 - art_sys_173: -5.14273911e-21 - art_sys_174: 9.14962797e-21 - art_sys_175: 5.10147997e-21 - art_sys_176: -2.15428364e-21 - art_sys_177: 1.10976866e-21 - art_sys_178: 1.36040097e-21 - art_sys_179: -1.02337820e-22 - art_sys_180: -3.55339598e-23 - art_sys_181: 5.28662160e-22 - art_sys_182: -2.23377093e-22 - art_sys_183: 2.19594895e-24 - art_sys_184: 6.80105016e-25 - art_sys_185: -3.90341897e-26 + art_sys_50: -2.54849443e-22 + art_sys_51: 1.28628455e-21 + art_sys_52: -1.10295688e-19 + art_sys_53: -3.38072276e-21 + art_sys_54: -5.95081007e-11 + art_sys_55: -2.52067420e-19 + art_sys_56: -5.01635792e-21 + art_sys_57: -1.21393862e-13 + art_sys_58: 4.08161437e-14 + art_sys_59: -1.52448466e-14 + art_sys_60: 8.23592759e-22 + art_sys_61: -1.00558306e-16 + art_sys_62: 2.07707292e-14 + art_sys_63: 1.02966899e-14 + art_sys_64: -2.76101416e-14 + art_sys_65: 4.28180980e-14 + art_sys_66: 1.94942325e-18 + art_sys_67: -6.38923307e-15 + art_sys_68: 8.41290850e-15 + art_sys_69: -1.00197949e-16 + art_sys_70: 6.08807307e-15 + art_sys_71: 4.35821152e-09 + art_sys_72: 2.19672309e-17 + art_sys_73: 5.14889663e-21 + art_sys_74: -7.75831141e-09 + art_sys_75: 1.03484104e-14 + art_sys_76: -1.68281048e-14 + art_sys_77: -1.38526702e-14 + art_sys_78: 4.00508331e-16 + art_sys_79: 4.82511841e-15 + art_sys_80: -3.28592259e-09 + art_sys_81: -4.99277594e-16 + art_sys_82: -2.69881181e-15 + art_sys_83: -6.13488117e-17 + art_sys_84: -4.73743268e-15 + art_sys_85: -6.00908120e-17 + art_sys_86: 3.52751350e-16 + art_sys_87: 4.91822323e-15 + art_sys_88: 1.65903843e-13 + art_sys_89: -5.90653581e-13 + art_sys_90: 1.96250109e-15 + art_sys_91: 3.53139638e-15 + art_sys_92: 1.31827058e-15 + art_sys_93: 1.44402751e-15 + art_sys_94: -9.96405631e-15 + art_sys_95: -5.24513946e-17 + art_sys_96: 3.18481018e-12 + art_sys_97: 8.14130191e-13 + art_sys_98: -3.13815856e-17 + art_sys_99: 1.88402920e-17 + art_sys_100: 2.30522514e-14 + art_sys_101: -4.45627499e-15 + art_sys_102: 7.76512682e-11 + art_sys_103: 2.25327876e-11 + art_sys_104: 1.49452826e-14 + art_sys_105: -1.20480596e-11 + art_sys_106: 4.28702823e-13 + art_sys_107: -5.35195909e-19 + art_sys_108: 1.97073437e-12 + art_sys_109: -1.62952405e-07 + art_sys_110: -1.06563519e-11 + art_sys_111: -3.19408740e-12 + art_sys_112: -4.12313462e-09 + art_sys_113: -7.28819881e-12 + art_sys_114: 1.75226491e-12 + art_sys_115: -3.00089530e-10 + art_sys_116: -4.65072230e-07 + art_sys_117: 4.63724398e-13 + art_sys_118: 2.42377231e-12 + art_sys_119: -7.73030014e-11 + art_sys_120: -6.06699955e-13 + art_sys_121: -9.98743013e-07 + art_sys_122: 6.51675790e-12 + art_sys_123: 3.21035435e-08 + art_sys_124: -1.26827730e-11 + art_sys_125: 3.95457482e-10 + art_sys_126: 6.86399801e-06 + art_sys_127: -1.26596056e-09 + art_sys_128: -2.86510206e-08 + art_sys_129: 5.55345334e-09 + art_sys_130: -1.13815951e-07 + art_sys_131: -1.01666150e-07 + art_sys_132: 6.55807997e-10 + art_sys_133: 1.25288008e-05 + art_sys_134: -4.41934788e-07 + art_sys_135: 1.07808889e-09 + art_sys_136: -8.56348707e-08 + art_sys_137: -7.78296709e-09 + art_sys_138: 5.37573783e-07 + art_sys_139: -1.29427052e-06 + art_sys_140: -4.87894023e-18 + art_sys_141: -1.58522314e-07 + art_sys_142: 0.0 + art_sys_143: 1.59654518e-08 + art_sys_144: 9.34830692e-08 + art_sys_145: 1.73515342e-07 + art_sys_146: -3.46963985e-11 + art_sys_147: 6.66374722e-11 + art_sys_148: 1.02518897e-10 + art_sys_149: 1.07953705e-10 + art_sys_150: 4.46668627e-10 + art_sys_151: 4.48147601e-10 + art_sys_152: -7.19525152e-11 + art_sys_153: -1.21111197e-12 + art_sys_154: -7.15815969e-12 + art_sys_155: 1.79680315e-10 + art_sys_156: 4.92673155e-10 + art_sys_157: 6.64570247e-10 + art_sys_158: 0.0 + art_sys_159: -3.34575640e-08 + art_sys_160: -3.34575640e-08 + art_sys_161: 2.31946898e-09 + art_sys_162: -8.60862492e-22 + art_sys_163: -0.0 + art_sys_164: -5.21525271e-22 + art_sys_165: -7.46139990e-18 + art_sys_166: -1.51406289e-17 + art_sys_167: -5.24156440e-18 + art_sys_168: 2.31982305e-19 + art_sys_169: 7.00883644e-20 + art_sys_170: -2.35056122e-19 + art_sys_171: 2.89134512e-20 + art_sys_172: 2.09326467e-20 + art_sys_173: -3.22505254e-20 + art_sys_174: 1.47081493e-22 + art_sys_175: 2.61602914e-21 + art_sys_176: -3.34048176e-21 + art_sys_177: 9.18168079e-22 + art_sys_178: 9.32815490e-23 + art_sys_179: -2.37009119e-22 + art_sys_180: 2.80479688e-23 + art_sys_181: -3.88228568e-23 + art_sys_182: 1.94593398e-23 + art_sys_183: 7.32692617e-26 + art_sys_184: -5.20904302e-26 + art_sys_185: -2.76850173e-23 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -62223,190 +62223,190 @@ bins: luminosity_uncertainty: 4.72687800e-06 uncorrelated_uncertainty: 1.81803000e-06 - art_sys_1: 3.40550343e-37 - art_sys_2: 1.50392872e-35 + art_sys_2: 1.50390795e-35 art_sys_3: -2.42608020e-22 - art_sys_4: 5.93673068e-35 + art_sys_4: 1.06094414e-34 art_sys_5: 7.34591117e-21 - art_sys_6: 7.68136991e-35 - art_sys_7: 6.04300534e-35 + art_sys_6: 7.51190950e-35 + art_sys_7: 5.66950510e-35 art_sys_8: 3.53824006e-20 - art_sys_9: 3.27139503e-34 - art_sys_10: -4.53485984e-34 + art_sys_9: 1.70576995e-34 + art_sys_10: -4.53702474e-34 art_sys_11: 3.14896385e-21 - art_sys_12: 3.03577328e-33 - art_sys_13: -5.68447125e-31 - art_sys_14: 2.04786542e-31 - art_sys_15: 7.38817870e-18 - art_sys_16: -8.46113703e-31 - art_sys_17: 1.14285294e-30 + art_sys_12: 6.84092896e-33 + art_sys_13: 5.68445328e-31 + art_sys_14: 1.18788174e-31 + art_sys_15: -7.38817870e-18 + art_sys_16: -8.34643077e-32 + art_sys_17: 1.14255947e-30 art_sys_18: 5.81884913e-17 - art_sys_19: 5.47896537e-31 - art_sys_20: -1.18339404e-29 + art_sys_19: -1.57601979e-30 + art_sys_20: -1.18287274e-29 art_sys_21: 2.12399490e-16 - art_sys_22: 1.05612672e-29 - art_sys_23: -8.65712287e-30 + art_sys_22: 1.06008393e-29 + art_sys_23: -8.72927909e-30 art_sys_24: -3.53426680e-16 - art_sys_25: 9.66393481e-30 - art_sys_26: -2.03195877e-29 - art_sys_27: 9.70077695e-15 - art_sys_28: -8.38399332e-26 - art_sys_29: -1.49974835e-14 - art_sys_30: 1.54499876e-28 - art_sys_31: -2.97488316e-25 - art_sys_32: 4.60748693e-14 - art_sys_33: -4.49463056e-27 - art_sys_34: -4.08822420e-23 - art_sys_35: 4.98261784e-24 - art_sys_36: 8.84080375e-20 - art_sys_37: 1.00861051e-20 - art_sys_38: 2.07115102e-22 - art_sys_39: -9.72070971e-22 - art_sys_40: 1.30305988e-21 - art_sys_41: -7.05372109e-22 - art_sys_42: 9.25029886e-22 - art_sys_43: 1.83104411e-22 - art_sys_44: -2.93652781e-23 - art_sys_45: -2.03905662e-22 - art_sys_46: -3.78327236e-22 - art_sys_47: 2.24998432e-12 - art_sys_48: 2.10716066e-20 + art_sys_25: -1.06483289e-29 + art_sys_26: -2.35058160e-29 + art_sys_27: -9.70077695e-15 + art_sys_28: 3.16929865e-25 + art_sys_29: -2.97722495e-20 + art_sys_30: -1.34169876e-20 + art_sys_31: -1.99779257e-20 + art_sys_32: 2.49114397e-21 + art_sys_33: 6.54614075e-22 + art_sys_34: 6.36945618e-22 + art_sys_35: -2.26230376e-22 + art_sys_36: -1.49974835e-14 + art_sys_37: -2.80174358e-29 + art_sys_38: -2.08048170e-22 + art_sys_39: -1.83761357e-25 + art_sys_40: 4.60748693e-14 + art_sys_41: 1.78918228e-26 + art_sys_42: -2.69716173e-22 + art_sys_43: -2.40467509e-24 + art_sys_44: 4.48703183e-23 + art_sys_45: -6.41550495e-23 + art_sys_46: 2.24998432e-12 + art_sys_47: -6.30318406e-23 + art_sys_48: 1.40982179e-21 art_sys_49: -1.02346331e-12 - art_sys_50: -1.65593992e-22 - art_sys_51: 3.43871241e-22 - art_sys_52: -3.06983424e-22 - art_sys_53: 5.12482774e-20 - art_sys_54: 2.06222109e-11 - art_sys_55: 3.92542656e-21 - art_sys_56: 3.06021349e-22 - art_sys_57: 2.23908647e-22 - art_sys_58: -5.34871763e-23 - art_sys_59: 1.34446691e-17 - art_sys_60: -4.83169417e-11 - art_sys_61: -6.21796212e-19 - art_sys_62: -7.96436245e-22 - art_sys_63: 7.11571821e-10 - art_sys_64: 2.62157914e-14 - art_sys_65: 1.82868608e-14 - art_sys_66: -5.15838084e-14 - art_sys_67: 1.02487170e-14 - art_sys_68: 2.03008415e-14 - art_sys_69: -2.26033125e-14 - art_sys_70: -4.83641099e-14 - art_sys_71: -7.59434427e-14 - art_sys_72: 1.24881219e-14 - art_sys_73: 1.49062477e-14 - art_sys_74: -1.38492445e-19 - art_sys_75: -2.01056461e-14 - art_sys_76: -3.34706883e-14 - art_sys_77: -3.26332482e-14 - art_sys_78: -1.33745058e-14 - art_sys_79: -9.19453013e-15 - art_sys_80: -8.69475866e-16 - art_sys_81: 9.35818271e-15 - art_sys_82: -1.13710890e-09 - art_sys_83: -2.70388857e-16 - art_sys_84: -1.74087087e-17 - art_sys_85: -8.93693537e-17 - art_sys_86: 4.93814622e-16 - art_sys_87: 7.06489973e-15 - art_sys_88: 2.75953750e-15 - art_sys_89: -1.64430742e-17 - art_sys_90: 2.57842334e-15 - art_sys_91: -6.94550700e-16 - art_sys_92: 6.05997698e-17 - art_sys_93: -8.30714994e-18 - art_sys_94: -1.88495631e-14 - art_sys_95: 1.96083422e-18 - art_sys_96: 2.29211942e-15 - art_sys_97: -2.30837141e-17 - art_sys_98: -3.03445154e-19 - art_sys_99: 1.66844482e-16 - art_sys_100: -9.69337189e-17 - art_sys_101: -1.79301834e-16 - art_sys_102: 4.17259400e-15 - art_sys_103: -3.87089230e-22 - art_sys_104: 2.04541846e-17 - art_sys_105: -2.44353820e-10 - art_sys_106: 9.05823344e-17 - art_sys_107: -2.18031492e-13 - art_sys_108: -3.97719801e-10 - art_sys_109: 2.70999501e-11 - art_sys_110: -1.68990179e-12 - art_sys_111: 4.94835255e-15 - art_sys_112: -8.63695390e-09 - art_sys_113: 1.33267933e-19 - art_sys_114: 7.47072475e-13 - art_sys_115: 3.58674538e-16 - art_sys_116: -2.71567319e-11 - art_sys_117: 1.28369219e-11 - art_sys_118: 2.47550464e-16 - art_sys_119: 9.04761602e-11 - art_sys_120: 1.24093659e-07 - art_sys_121: 5.07248420e-12 - art_sys_122: -2.07714864e-14 - art_sys_123: 1.02197563e-11 - art_sys_124: 5.31790453e-14 - art_sys_125: -7.09813257e-11 - art_sys_126: 1.00517175e-07 - art_sys_127: 2.13383685e-08 - art_sys_128: 3.98039573e-13 - art_sys_129: -1.10374017e-10 - art_sys_130: -2.47063656e-08 - art_sys_131: 1.54604640e-09 - art_sys_132: -6.90692678e-12 - art_sys_133: 7.20939524e-08 - art_sys_134: -2.81856874e-06 - art_sys_135: -1.62220645e-11 - art_sys_136: -4.84562040e-09 - art_sys_137: -3.93439921e-09 - art_sys_138: -9.28560266e-11 - art_sys_139: 1.37198466e-07 - art_sys_140: 1.97269778e-10 - art_sys_141: 5.69539858e-06 - art_sys_142: -1.66641221e-10 - art_sys_143: -5.01228866e-09 - art_sys_144: 7.42850601e-09 - art_sys_145: 8.23970957e-10 - art_sys_146: 5.91468676e-09 - art_sys_147: 1.72567723e-10 - art_sys_148: 1.55909444e-10 - art_sys_149: -6.97959671e-09 - art_sys_150: 1.65340142e-09 - art_sys_151: -2.55107046e-06 - art_sys_152: -3.74869065e-11 - art_sys_153: -7.76661921e-08 - art_sys_154: -1.20348642e-16 - art_sys_155: 1.83693140e-09 - art_sys_156: -0.0 - art_sys_157: 1.84070203e-09 - art_sys_158: 0.0 - art_sys_159: -3.32557259e-08 - art_sys_160: 5.01071756e-09 - art_sys_161: 9.07455962e-09 - art_sys_162: 9.07455962e-09 - art_sys_163: 8.12783186e-09 - art_sys_164: 8.12783186e-09 - art_sys_165: -9.33482219e-23 - art_sys_166: 3.13201147e-23 - art_sys_167: 0.0 - art_sys_168: -7.94232669e-18 - art_sys_169: -3.06427518e-18 - art_sys_170: -1.58931340e-18 - art_sys_171: -1.40354330e-18 - art_sys_172: 3.53157649e-19 - art_sys_173: -2.15725489e-19 - art_sys_174: -3.08530803e-20 - art_sys_175: -2.77289341e-20 - art_sys_176: 1.32385073e-20 - art_sys_177: -2.97884521e-21 - art_sys_178: -7.93811570e-21 - art_sys_179: -6.80484047e-22 - art_sys_180: -1.12146321e-21 - art_sys_181: -1.96347385e-21 - art_sys_182: -5.22010596e-22 - art_sys_183: 4.81255784e-24 - art_sys_184: -2.04295435e-24 - art_sys_185: -5.89498138e-25 + art_sys_50: 3.33163279e-24 + art_sys_51: -7.56065219e-23 + art_sys_52: 3.94092369e-20 + art_sys_53: 1.97458749e-22 + art_sys_54: 2.06222110e-11 + art_sys_55: -1.67499901e-20 + art_sys_56: -2.23940630e-22 + art_sys_57: 4.51893421e-14 + art_sys_58: -1.56164887e-14 + art_sys_59: 1.02667914e-14 + art_sys_60: -9.32712650e-23 + art_sys_61: -1.22727172e-14 + art_sys_62: 4.58276353e-14 + art_sys_63: 2.14618883e-14 + art_sys_64: -5.14369652e-14 + art_sys_65: 6.64479070e-14 + art_sys_66: -2.90986772e-20 + art_sys_67: -8.42925000e-15 + art_sys_68: 1.06380111e-14 + art_sys_69: 3.63572422e-17 + art_sys_70: 1.87167530e-16 + art_sys_71: -4.83175198e-11 + art_sys_72: -2.42065277e-19 + art_sys_73: -6.48498173e-23 + art_sys_74: -7.11571173e-10 + art_sys_75: 1.09720545e-14 + art_sys_76: 8.83607454e-14 + art_sys_77: 1.97902029e-14 + art_sys_78: -4.57972540e-15 + art_sys_79: 4.95528517e-15 + art_sys_80: 1.13710531e-09 + art_sys_81: -5.81388346e-16 + art_sys_82: -1.19708007e-17 + art_sys_83: 8.10957147e-16 + art_sys_84: -4.55338702e-15 + art_sys_85: 2.64824590e-16 + art_sys_86: 6.66001113e-16 + art_sys_87: 2.48801401e-15 + art_sys_88: 1.40079593e-14 + art_sys_89: 2.35134863e-13 + art_sys_90: 3.43778504e-15 + art_sys_91: -8.14371466e-16 + art_sys_92: 1.72585005e-16 + art_sys_93: -4.99720018e-16 + art_sys_94: -7.41825751e-16 + art_sys_95: 1.84356907e-17 + art_sys_96: -1.40498352e-12 + art_sys_97: 4.43946556e-14 + art_sys_98: -2.26965448e-17 + art_sys_99: -6.51951047e-18 + art_sys_100: 5.70895711e-15 + art_sys_101: -4.10991149e-17 + art_sys_102: -3.46730631e-11 + art_sys_103: -6.06780947e-12 + art_sys_104: 2.82766876e-16 + art_sys_105: -1.69299184e-11 + art_sys_106: 1.85071299e-14 + art_sys_107: -3.37878685e-20 + art_sys_108: -2.94911536e-13 + art_sys_109: -8.63708715e-09 + art_sys_110: -1.39812953e-11 + art_sys_111: -1.57161587e-13 + art_sys_112: 1.69483937e-09 + art_sys_113: -9.11019429e-12 + art_sys_114: -3.76096227e-14 + art_sys_115: 1.23178897e-10 + art_sys_116: 1.24097330e-07 + art_sys_117: 9.68877506e-13 + art_sys_118: 1.19069265e-13 + art_sys_119: 3.19072673e-11 + art_sys_120: -1.28189266e-13 + art_sys_121: -1.00685327e-07 + art_sys_122: -1.23709139e-12 + art_sys_123: -2.00188501e-08 + art_sys_124: 9.67457364e-12 + art_sys_125: -1.59737500e-10 + art_sys_126: -2.81758093e-06 + art_sys_127: 5.18757718e-10 + art_sys_128: 1.09660323e-08 + art_sys_129: 4.74104491e-09 + art_sys_130: 3.90609703e-08 + art_sys_131: 5.04269896e-08 + art_sys_132: -2.07709701e-10 + art_sys_133: -5.66717866e-06 + art_sys_134: 2.40991640e-07 + art_sys_135: -5.95708493e-10 + art_sys_136: -9.98901737e-08 + art_sys_137: 2.76199873e-09 + art_sys_138: 1.09161867e-06 + art_sys_139: -2.49988866e-06 + art_sys_140: -9.84572348e-18 + art_sys_141: -2.90606574e-07 + art_sys_142: -0.0 + art_sys_143: 2.85775919e-08 + art_sys_144: 1.67154452e-07 + art_sys_145: 3.05149381e-07 + art_sys_146: -6.54543271e-11 + art_sys_147: 1.24592165e-10 + art_sys_148: -1.96254066e-10 + art_sys_149: 1.44834877e-10 + art_sys_150: 9.17912422e-10 + art_sys_151: -1.54803383e-09 + art_sys_152: 3.42952982e-10 + art_sys_153: 2.58954210e-11 + art_sys_154: -3.83117015e-10 + art_sys_155: 1.00661378e-09 + art_sys_156: 6.35509356e-10 + art_sys_157: 6.41578209e-10 + art_sys_158: -0.0 + art_sys_159: 1.20425948e-08 + art_sys_160: 1.20425948e-08 + art_sys_161: -4.41955370e-09 + art_sys_162: 1.55486925e-21 + art_sys_163: 0.0 + art_sys_164: 9.20709302e-22 + art_sys_165: -1.72195710e-17 + art_sys_166: -2.62596569e-17 + art_sys_167: -1.09617349e-17 + art_sys_168: -2.38189374e-18 + art_sys_169: -1.11920288e-18 + art_sys_170: 2.18054688e-18 + art_sys_171: 5.74387116e-20 + art_sys_172: -7.22411682e-20 + art_sys_173: 3.03742139e-19 + art_sys_174: 3.04753125e-22 + art_sys_175: -5.27509530e-22 + art_sys_176: -8.08755060e-21 + art_sys_177: -3.29105661e-21 + art_sys_178: -1.46871793e-21 + art_sys_179: -3.26653017e-21 + art_sys_180: -3.10533757e-21 + art_sys_181: -6.83653786e-23 + art_sys_182: -1.42974162e-24 + art_sys_183: -1.03274733e-24 + art_sys_184: 4.06272904e-25 + art_sys_185: 7.53964686e-23 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -62514,190 +62514,190 @@ bins: luminosity_uncertainty: 1.11805720e-06 uncorrelated_uncertainty: 4.30022000e-07 - art_sys_1: 2.80016365e-40 - art_sys_2: 2.01942071e-38 + art_sys_2: 2.01909076e-38 art_sys_3: -7.36016630e-26 - art_sys_4: 2.59226928e-37 + art_sys_4: 1.89782684e-37 art_sys_5: 9.63938744e-24 - art_sys_6: 1.10364529e-37 - art_sys_7: 5.39032611e-38 + art_sys_6: 1.08268917e-37 + art_sys_7: 1.01417059e-38 art_sys_8: 4.98073687e-23 - art_sys_9: 2.13573526e-38 - art_sys_10: -3.57962678e-37 + art_sys_9: -2.16993282e-37 + art_sys_10: -3.58180463e-37 art_sys_11: 3.78273898e-23 - art_sys_12: 3.14845440e-36 - art_sys_13: -1.07524971e-33 - art_sys_14: 2.95032362e-34 - art_sys_15: 1.36043129e-20 - art_sys_16: -1.74081685e-33 - art_sys_17: 1.84105286e-33 + art_sys_12: 9.99912836e-36 + art_sys_13: 1.07525217e-33 + art_sys_14: 1.04192798e-34 + art_sys_15: -1.36043129e-20 + art_sys_16: -4.37206420e-36 + art_sys_17: 1.83984288e-33 art_sys_18: 6.72360147e-20 - art_sys_19: 3.09737012e-34 - art_sys_20: -1.97085406e-32 + art_sys_19: -2.01377711e-33 + art_sys_20: -1.96986548e-32 art_sys_21: 3.22912371e-19 - art_sys_22: 3.53514295e-32 - art_sys_23: -1.43320031e-32 + art_sys_22: 3.54209105e-32 + art_sys_23: -1.44620852e-32 art_sys_24: -5.82107845e-19 - art_sys_25: 4.68724126e-33 - art_sys_26: -4.70756119e-32 - art_sys_27: 3.66490772e-17 - art_sys_28: -1.12751409e-27 - art_sys_29: -1.71862683e-16 - art_sys_30: 1.27847656e-30 - art_sys_31: -6.74306906e-28 - art_sys_32: 6.45815013e-17 - art_sys_33: -1.37769644e-29 - art_sys_34: -1.72330621e-25 - art_sys_35: 1.98691378e-26 - art_sys_36: 1.61188947e-21 - art_sys_37: -4.63077051e-23 - art_sys_38: 8.39121825e-24 - art_sys_39: -4.25591347e-23 - art_sys_40: 5.31021070e-25 - art_sys_41: 1.05582877e-23 - art_sys_42: 1.74546206e-23 - art_sys_43: 1.52452759e-24 - art_sys_44: -3.88079241e-25 - art_sys_45: -2.52194262e-23 - art_sys_46: -4.15836164e-23 - art_sys_47: 9.48425737e-15 - art_sys_48: 1.12133431e-22 + art_sys_25: -8.02580917e-33 + art_sys_26: -3.74961499e-32 + art_sys_27: -3.66490772e-17 + art_sys_28: 3.46505358e-27 + art_sys_29: -3.10297254e-22 + art_sys_30: 1.55217369e-22 + art_sys_31: -2.52447344e-22 + art_sys_32: 7.71984658e-23 + art_sys_33: -8.31106761e-24 + art_sys_34: 2.53936447e-25 + art_sys_35: 5.47351261e-24 + art_sys_36: -1.71862683e-16 + art_sys_37: -7.65536091e-31 + art_sys_38: -3.49764586e-24 + art_sys_39: -2.18570467e-31 + art_sys_40: 6.45815013e-17 + art_sys_41: 3.26119701e-29 + art_sys_42: -6.25767058e-24 + art_sys_43: -1.01391087e-26 + art_sys_44: 2.05363832e-23 + art_sys_45: -2.71564355e-25 + art_sys_46: 9.48425737e-15 + art_sys_47: 1.68042043e-23 + art_sys_48: 7.31007265e-24 art_sys_49: -5.30832819e-15 - art_sys_50: -2.01153745e-23 - art_sys_51: 3.36005868e-23 - art_sys_52: -1.90286904e-24 - art_sys_53: 2.62518293e-22 + art_sys_50: -7.79233340e-24 + art_sys_51: -2.17813620e-23 + art_sys_52: 2.01500319e-22 + art_sys_53: 7.61091477e-25 art_sys_54: 1.05610528e-13 - art_sys_55: 3.34343560e-23 - art_sys_56: 1.53958423e-24 - art_sys_57: 4.64489822e-23 - art_sys_58: -1.68038859e-23 - art_sys_59: 1.08521636e-19 - art_sys_60: -6.48085312e-13 - art_sys_61: -1.11415669e-20 - art_sys_62: -4.88543419e-24 - art_sys_63: 6.41994323e-12 - art_sys_64: 9.66856294e-15 - art_sys_65: 2.65800152e-15 - art_sys_66: -8.55784673e-15 - art_sys_67: 1.53707915e-14 - art_sys_68: 5.80787643e-14 - art_sys_69: -2.35949321e-14 - art_sys_70: -6.45758023e-14 - art_sys_71: -9.10480815e-14 - art_sys_72: 1.29312935e-14 - art_sys_73: 1.73681292e-14 - art_sys_74: -2.50276461e-21 - art_sys_75: -2.14935113e-14 - art_sys_76: -1.11865351e-13 - art_sys_77: 5.42473443e-15 - art_sys_78: -4.13629841e-15 - art_sys_79: -1.04065114e-14 - art_sys_80: 4.87531935e-17 - art_sys_81: 1.03308650e-14 - art_sys_82: -2.04031140e-11 - art_sys_83: 8.09991821e-16 - art_sys_84: -6.76595811e-16 - art_sys_85: -3.58864610e-17 - art_sys_86: 1.06178527e-16 - art_sys_87: 7.77527066e-15 - art_sys_88: 3.28389856e-15 - art_sys_89: -3.35103141e-17 - art_sys_90: 3.19834005e-15 - art_sys_91: -1.38910132e-17 - art_sys_92: -1.03005162e-19 - art_sys_93: 4.05482812e-18 - art_sys_94: -2.70602206e-15 - art_sys_95: 5.56798719e-19 - art_sys_96: 4.09911300e-17 - art_sys_97: -4.14218633e-19 - art_sys_98: -8.58775919e-20 - art_sys_99: 3.00070336e-18 - art_sys_100: -2.74736180e-17 - art_sys_101: -3.14397098e-18 - art_sys_102: 1.22912041e-15 - art_sys_103: -2.36024092e-23 - art_sys_104: 5.51647562e-18 - art_sys_105: -8.98687111e-11 - art_sys_106: 2.52808321e-17 - art_sys_107: -6.16499439e-14 - art_sys_108: -1.46273707e-10 - art_sys_109: 5.28428466e-12 - art_sys_110: -4.76273929e-13 - art_sys_111: 1.37739626e-15 - art_sys_112: -2.37697944e-09 - art_sys_113: 3.74217059e-20 - art_sys_114: -5.22808797e-13 - art_sys_115: 9.70236630e-17 - art_sys_116: -9.11690748e-12 - art_sys_117: 3.23630226e-12 - art_sys_118: 5.38269290e-17 - art_sys_119: 3.02281696e-11 - art_sys_120: 3.52699798e-08 - art_sys_121: 6.23176960e-12 - art_sys_122: -5.86016779e-15 - art_sys_123: 1.56952365e-11 - art_sys_124: 1.42906528e-14 - art_sys_125: -4.85066115e-11 - art_sys_126: 2.44998081e-08 - art_sys_127: 2.82219140e-10 - art_sys_128: 1.25621737e-13 - art_sys_129: -6.57369639e-12 - art_sys_130: -8.49586560e-09 - art_sys_131: 1.39855269e-10 - art_sys_132: -2.21243508e-12 - art_sys_133: 2.74840661e-08 - art_sys_134: -9.45030417e-07 - art_sys_135: -5.65896579e-12 - art_sys_136: -1.15249973e-09 - art_sys_137: 6.97967953e-09 - art_sys_138: -3.15946121e-11 - art_sys_139: 4.87834983e-08 - art_sys_140: 1.81405366e-09 - art_sys_141: 2.08432179e-06 - art_sys_142: -4.79773644e-11 - art_sys_143: -1.08999712e-08 - art_sys_144: -2.55678424e-08 - art_sys_145: -5.55036511e-12 - art_sys_146: -3.37679390e-08 - art_sys_147: -7.56489242e-10 - art_sys_148: -8.13170676e-10 - art_sys_149: -1.37647043e-09 - art_sys_150: -3.39053339e-08 - art_sys_151: -6.90559354e-07 - art_sys_152: -2.49649936e-09 - art_sys_153: -4.46781556e-08 - art_sys_154: -4.66601771e-17 - art_sys_155: -3.44975669e-09 - art_sys_156: -0.0 - art_sys_157: -1.41059786e-08 - art_sys_158: -0.0 - art_sys_159: 9.00556307e-08 - art_sys_160: -8.88521852e-09 - art_sys_161: 1.00787421e-08 - art_sys_162: 1.00787421e-08 - art_sys_163: -1.66554978e-08 - art_sys_164: -1.66554978e-08 - art_sys_165: 1.43080825e-22 - art_sys_166: -4.66205039e-23 - art_sys_167: -0.0 - art_sys_168: 8.21768615e-18 - art_sys_169: 2.75111703e-19 - art_sys_170: -1.28190335e-19 - art_sys_171: 1.17543899e-18 - art_sys_172: 9.53110135e-20 - art_sys_173: 5.13023598e-19 - art_sys_174: 1.31372767e-19 - art_sys_175: 1.02330965e-19 - art_sys_176: -4.83810427e-20 - art_sys_177: 1.45882385e-20 - art_sys_178: 2.87043677e-20 - art_sys_179: 1.37088443e-21 - art_sys_180: 2.65987808e-21 - art_sys_181: 8.53397981e-21 - art_sys_182: 2.54166264e-22 - art_sys_183: 3.42132427e-24 - art_sys_184: 7.34589566e-24 - art_sys_185: 2.73240826e-24 + art_sys_55: -5.81840608e-23 + art_sys_56: -1.11961935e-24 + art_sys_57: 1.95218609e-15 + art_sys_58: -3.36221784e-15 + art_sys_59: 3.36405439e-15 + art_sys_60: -2.73300470e-23 + art_sys_61: 1.09033403e-13 + art_sys_62: -3.74412678e-14 + art_sys_63: -1.24955122e-14 + art_sys_64: -1.49364982e-15 + art_sys_65: 6.19026153e-14 + art_sys_66: -3.50215149e-22 + art_sys_67: -1.64323530e-14 + art_sys_68: 2.34268696e-14 + art_sys_69: 6.49216106e-19 + art_sys_70: 1.71301078e-18 + art_sys_71: -6.48091008e-13 + art_sys_72: -3.25339826e-21 + art_sys_73: 4.22157016e-23 + art_sys_74: -6.41993557e-12 + art_sys_75: 3.85184487e-14 + art_sys_76: -4.88505721e-14 + art_sys_77: 2.05797329e-14 + art_sys_78: -3.92565202e-15 + art_sys_79: 1.88835095e-14 + art_sys_80: 2.04030492e-11 + art_sys_81: -1.52630750e-15 + art_sys_82: -7.62776324e-16 + art_sys_83: 3.28940865e-16 + art_sys_84: -1.99126172e-14 + art_sys_85: -6.71192176e-16 + art_sys_86: 4.00801084e-16 + art_sys_87: 1.55924501e-14 + art_sys_88: -3.17385895e-15 + art_sys_89: 7.15781820e-14 + art_sys_90: 5.40418334e-17 + art_sys_91: -1.53577095e-17 + art_sys_92: 4.81570863e-17 + art_sys_93: -8.96644183e-18 + art_sys_94: -2.05184717e-16 + art_sys_95: 4.20719521e-19 + art_sys_96: -5.13233710e-13 + art_sys_97: 1.22207878e-14 + art_sys_98: -3.56149230e-19 + art_sys_99: -1.16982096e-19 + art_sys_100: 1.57466003e-15 + art_sys_101: -1.58330830e-17 + art_sys_102: -1.24196160e-11 + art_sys_103: -1.72651929e-12 + art_sys_104: 8.91513871e-17 + art_sys_105: -2.11308642e-11 + art_sys_106: 5.20295496e-15 + art_sys_107: -1.07857174e-20 + art_sys_108: -7.65310455e-14 + art_sys_109: -2.37701632e-09 + art_sys_110: -1.65557983e-11 + art_sys_111: -4.32650496e-14 + art_sys_112: 5.66861013e-10 + art_sys_113: -1.23716798e-11 + art_sys_114: -1.09837236e-14 + art_sys_115: 4.12513016e-11 + art_sys_116: 3.52709901e-08 + art_sys_117: -7.34770635e-14 + art_sys_118: 3.35570304e-14 + art_sys_119: 1.29249711e-11 + art_sys_120: -3.26926583e-14 + art_sys_121: -2.45560149e-08 + art_sys_122: -3.58930729e-13 + art_sys_123: -1.11668201e-09 + art_sys_124: 3.51249233e-12 + art_sys_125: -5.37488124e-11 + art_sys_126: -9.44703854e-07 + art_sys_127: 1.75535693e-10 + art_sys_128: 4.77370436e-10 + art_sys_129: 1.96921524e-08 + art_sys_130: 4.14615327e-10 + art_sys_131: 3.89562960e-08 + art_sys_132: -5.21829259e-11 + art_sys_133: -2.08056980e-06 + art_sys_134: 8.02487579e-08 + art_sys_135: -1.87303926e-10 + art_sys_136: -6.23687451e-09 + art_sys_137: 7.11393367e-10 + art_sys_138: 2.28367039e-07 + art_sys_139: -6.93696606e-07 + art_sys_140: -3.40095654e-18 + art_sys_141: -1.95912932e-07 + art_sys_142: 0.0 + art_sys_143: 7.64652151e-09 + art_sys_144: 4.61155976e-08 + art_sys_145: 1.45469853e-07 + art_sys_146: -1.21928722e-11 + art_sys_147: 2.40396553e-11 + art_sys_148: 5.49627631e-11 + art_sys_149: 8.37050027e-11 + art_sys_150: 2.59289196e-10 + art_sys_151: 3.75235301e-09 + art_sys_152: -6.30967592e-10 + art_sys_153: -5.19534108e-11 + art_sys_154: 6.88716908e-10 + art_sys_155: -1.16420252e-09 + art_sys_156: 1.14199768e-09 + art_sys_157: 1.31774163e-09 + art_sys_158: 0.0 + art_sys_159: -3.04489080e-07 + art_sys_160: -3.04489080e-07 + art_sys_161: 2.10700883e-08 + art_sys_162: -7.71300113e-21 + art_sys_163: -0.0 + art_sys_164: -4.64735367e-21 + art_sys_165: 9.80333822e-18 + art_sys_166: -3.58317630e-17 + art_sys_167: 8.93536224e-18 + art_sys_168: 5.40309324e-18 + art_sys_169: 2.47664410e-18 + art_sys_170: -4.96314479e-18 + art_sys_171: -5.46470643e-20 + art_sys_172: 2.34209670e-19 + art_sys_173: -7.22932416e-19 + art_sys_174: 8.35641360e-23 + art_sys_175: 1.17786626e-20 + art_sys_176: 5.81020445e-21 + art_sys_177: 1.05614581e-20 + art_sys_178: 3.44906257e-21 + art_sys_179: 5.40974065e-21 + art_sys_180: 6.32495540e-21 + art_sys_181: -4.37285159e-23 + art_sys_182: 3.63191463e-23 + art_sys_183: 3.02292019e-24 + art_sys_184: -8.22722858e-25 + art_sys_185: -2.59434511e-22 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -62805,190 +62805,190 @@ bins: luminosity_uncertainty: 1.51584160e-07 uncorrelated_uncertainty: 5.83016000e-08 - art_sys_1: 2.28201732e-43 - art_sys_2: 4.85418966e-41 + art_sys_2: 4.85478916e-41 art_sys_3: 3.43944709e-28 - art_sys_4: 1.17557394e-39 + art_sys_4: 5.80037468e-40 art_sys_5: 2.27055212e-26 - art_sys_6: 2.93157855e-40 - art_sys_7: -4.98530278e-41 + art_sys_6: 2.87735437e-40 + art_sys_7: -3.34248315e-40 art_sys_8: 1.28291381e-25 - art_sys_9: 1.63213768e-39 - art_sys_10: -3.63540875e-40 + art_sys_9: 7.94647970e-40 + art_sys_10: -3.63708185e-40 art_sys_11: 1.98909839e-25 - art_sys_12: 1.54554596e-38 - art_sys_13: -4.35485502e-36 - art_sys_14: 1.20884975e-36 - art_sys_15: 5.45226491e-23 - art_sys_16: -5.74983412e-36 - art_sys_17: 7.46391458e-36 + art_sys_12: 4.66502578e-38 + art_sys_13: 4.35487321e-36 + art_sys_14: 5.84981105e-37 + art_sys_15: -5.45226491e-23 + art_sys_16: -7.77419293e-37 + art_sys_17: 7.45854745e-36 art_sys_18: 2.40515012e-22 - art_sys_19: 3.16268128e-37 - art_sys_20: -8.69720216e-35 + art_sys_19: -7.41185178e-36 + art_sys_20: -8.69047740e-35 art_sys_21: 1.42905635e-21 - art_sys_22: 1.15433488e-35 - art_sys_23: -6.36451996e-35 + art_sys_22: 1.17638935e-35 + art_sys_23: -6.41371032e-35 art_sys_24: -2.43294543e-21 - art_sys_25: -2.61272997e-34 - art_sys_26: 1.41159633e-34 - art_sys_27: -4.35941181e-20 - art_sys_28: -5.52100273e-29 - art_sys_29: -7.57745340e-18 - art_sys_30: 5.43659551e-32 - art_sys_31: 1.15722188e-28 - art_sys_32: -2.06788408e-17 - art_sys_33: 1.12223665e-30 - art_sys_34: 3.96861922e-27 - art_sys_35: -2.17971485e-27 - art_sys_36: -4.63672333e-22 - art_sys_37: -4.32157298e-23 - art_sys_38: 5.06183342e-23 - art_sys_39: 4.89320645e-24 - art_sys_40: -3.49025800e-24 - art_sys_41: -5.21443003e-25 - art_sys_42: -6.66262145e-24 - art_sys_43: 6.20577817e-25 - art_sys_44: -6.82635715e-25 - art_sys_45: 8.68520295e-24 - art_sys_46: 1.34950038e-23 - art_sys_47: -2.18389627e-16 - art_sys_48: -8.64750028e-23 + art_sys_25: 2.86740069e-34 + art_sys_26: 1.41635388e-33 + art_sys_27: 4.35941181e-20 + art_sys_28: 1.47276334e-28 + art_sys_29: 9.05437941e-23 + art_sys_30: -7.88925471e-23 + art_sys_31: 6.16486975e-23 + art_sys_32: -2.11443292e-23 + art_sys_33: -1.64995198e-24 + art_sys_34: -3.66970832e-25 + art_sys_35: 2.52137102e-24 + art_sys_36: -7.57745340e-18 + art_sys_37: -3.31598401e-32 + art_sys_38: -5.62359613e-25 + art_sys_39: 1.00270105e-28 + art_sys_40: -2.06788408e-17 + art_sys_41: -7.12163651e-30 + art_sys_42: 1.65078846e-24 + art_sys_43: 2.36244934e-28 + art_sys_44: 2.00195479e-24 + art_sys_45: 4.53119067e-27 + art_sys_46: -2.18389628e-16 + art_sys_47: 3.19905824e-24 + art_sys_48: -5.08875794e-24 art_sys_49: 3.70006330e-15 - art_sys_50: 6.84903792e-24 - art_sys_51: -1.20267966e-23 - art_sys_52: 2.40564126e-24 - art_sys_53: -3.56594063e-23 + art_sys_50: -1.58363588e-24 + art_sys_51: -1.94381119e-24 + art_sys_52: -2.72801414e-23 + art_sys_53: 6.82599545e-26 art_sys_54: -1.42919045e-14 - art_sys_55: -5.16806436e-24 - art_sys_56: -1.10377028e-24 - art_sys_57: -1.58132989e-23 - art_sys_58: 5.84892617e-24 - art_sys_59: -3.85592525e-20 - art_sys_60: 9.27639415e-14 - art_sys_61: 3.21756796e-21 - art_sys_62: 9.10540218e-25 - art_sys_63: -1.58266401e-12 - art_sys_64: 9.25355488e-16 - art_sys_65: -6.36159145e-15 - art_sys_66: 3.96028516e-14 - art_sys_67: 7.50557629e-14 - art_sys_68: -7.47815717e-14 - art_sys_69: 7.42758190e-14 - art_sys_70: 1.46639056e-13 - art_sys_71: 2.32491137e-13 - art_sys_72: -3.13540816e-14 - art_sys_73: -4.08332081e-14 - art_sys_74: 7.23022291e-22 - art_sys_75: 5.14285707e-14 - art_sys_76: -1.60583590e-15 - art_sys_77: -1.39332078e-14 - art_sys_78: 9.79064625e-15 - art_sys_79: 2.27919082e-14 - art_sys_80: 2.90073680e-15 - art_sys_81: -2.28445825e-14 - art_sys_82: 5.89314904e-12 - art_sys_83: -2.14082327e-17 - art_sys_84: 1.60753433e-16 - art_sys_85: 1.31708704e-16 - art_sys_86: 1.31606741e-17 - art_sys_87: -1.61332974e-14 - art_sys_88: -6.71123276e-15 - art_sys_89: -4.56968043e-17 - art_sys_90: -6.64770468e-15 - art_sys_91: 4.07420715e-18 - art_sys_92: -6.02454173e-17 - art_sys_93: 2.97751614e-17 - art_sys_94: -2.80108355e-15 - art_sys_95: -1.92550146e-19 - art_sys_96: -1.18339565e-17 - art_sys_97: 1.19642890e-19 - art_sys_98: 2.96919499e-20 - art_sys_99: -8.65762172e-19 - art_sys_100: 9.50283108e-18 - art_sys_101: 9.04618061e-19 - art_sys_102: -4.21881363e-16 - art_sys_103: 8.17907173e-24 - art_sys_104: -1.98685844e-18 - art_sys_105: 3.08302880e-11 - art_sys_106: -9.00768246e-18 - art_sys_107: 2.13117251e-14 - art_sys_108: 5.01780432e-11 - art_sys_109: -1.74654448e-11 - art_sys_110: 1.64662004e-13 - art_sys_111: -4.86679781e-16 - art_sys_112: 8.38077439e-10 - art_sys_113: -1.32284267e-20 - art_sys_114: -5.77086454e-12 - art_sys_115: -3.37361106e-17 - art_sys_116: 3.15685341e-12 - art_sys_117: -7.54116590e-13 - art_sys_118: -1.73199677e-17 - art_sys_119: -1.04703174e-11 - art_sys_120: -1.21947626e-08 - art_sys_121: 2.64882015e-11 - art_sys_122: 2.02196099e-15 - art_sys_123: 3.93118530e-11 - art_sys_124: -4.98955513e-15 - art_sys_125: -1.44882045e-10 - art_sys_126: -8.65080208e-09 - art_sys_127: -2.48988521e-08 - art_sys_128: -4.33029735e-14 - art_sys_129: 1.63258841e-10 - art_sys_130: 7.97901843e-09 - art_sys_131: -2.07877369e-09 - art_sys_132: 7.65838424e-13 - art_sys_133: -1.12155709e-08 - art_sys_134: 3.27271355e-07 - art_sys_135: 1.93168972e-12 - art_sys_136: 2.85222957e-09 - art_sys_137: -4.38535368e-08 - art_sys_138: 1.25663744e-11 - art_sys_139: -5.68615937e-09 - art_sys_140: -5.98490326e-10 - art_sys_141: -7.47491873e-07 - art_sys_142: 6.10204259e-11 - art_sys_143: 2.68501200e-08 - art_sys_144: 4.74799297e-09 - art_sys_145: -8.81311314e-10 - art_sys_146: -5.27636718e-08 - art_sys_147: -2.67838562e-11 - art_sys_148: -5.34987443e-11 - art_sys_149: 5.01999760e-10 - art_sys_150: 1.42745792e-07 - art_sys_151: 5.27814579e-08 - art_sys_152: -1.09813875e-10 - art_sys_153: -5.62510871e-08 - art_sys_154: -1.68342575e-17 - art_sys_155: 3.51772380e-11 - art_sys_156: -0.0 - art_sys_157: -1.64292080e-08 + art_sys_55: 7.70309873e-24 + art_sys_56: 8.37846643e-25 + art_sys_57: -1.04573480e-14 + art_sys_58: 1.17482013e-14 + art_sys_59: 2.23204610e-14 + art_sys_60: -4.40347918e-24 + art_sys_61: 4.46246688e-14 + art_sys_62: -6.95820365e-14 + art_sys_63: -1.96594373e-14 + art_sys_64: 4.38422109e-14 + art_sys_65: -3.03750401e-14 + art_sys_66: 5.91586881e-23 + art_sys_67: -7.51034282e-17 + art_sys_68: 3.86387115e-16 + art_sys_69: -1.87378403e-19 + art_sys_70: -5.00619324e-19 + art_sys_71: 9.27653915e-14 + art_sys_72: 4.64586291e-22 + art_sys_73: -1.99180384e-23 + art_sys_74: 1.58266196e-12 + art_sys_75: 6.96198580e-15 + art_sys_76: -1.71751827e-14 + art_sys_77: 4.01721703e-15 + art_sys_78: -2.73986738e-14 + art_sys_79: 3.68305348e-15 + art_sys_80: -5.89313033e-12 + art_sys_81: 1.20150885e-15 + art_sys_82: 1.23034378e-15 + art_sys_83: 3.48653536e-16 + art_sys_84: -4.52027084e-15 + art_sys_85: 9.73803859e-16 + art_sys_86: 8.06141974e-17 + art_sys_87: 4.28435381e-15 + art_sys_88: -3.17314922e-15 + art_sys_89: -2.92132424e-14 + art_sys_90: -1.52836703e-17 + art_sys_91: 4.46721115e-18 + art_sys_92: -1.68148074e-17 + art_sys_93: 2.58982819e-18 + art_sys_94: 7.20068458e-17 + art_sys_95: -1.25938431e-19 + art_sys_96: 1.74506508e-13 + art_sys_97: -4.30690806e-15 + art_sys_98: 1.05969166e-19 + art_sys_99: 3.37887660e-20 + art_sys_100: -5.48094012e-16 + art_sys_101: 5.72890996e-18 + art_sys_102: 3.81589356e-12 + art_sys_103: 5.96976230e-13 + art_sys_104: -3.19501652e-17 + art_sys_105: 2.91069044e-11 + art_sys_106: -1.83929677e-15 + art_sys_107: 3.79710448e-21 + art_sys_108: 2.63568784e-14 + art_sys_109: 8.38090319e-10 + art_sys_110: 2.36904399e-11 + art_sys_111: 1.52724954e-14 + art_sys_112: -1.96308025e-10 + art_sys_113: 1.64912757e-11 + art_sys_114: 3.66650715e-15 + art_sys_115: -1.42854069e-11 + art_sys_116: -1.21951111e-08 + art_sys_117: -7.66348052e-13 + art_sys_118: -1.18385346e-14 + art_sys_119: -6.72339279e-12 + art_sys_120: 1.13571420e-14 + art_sys_121: 8.67026826e-09 + art_sys_122: 1.23858765e-13 + art_sys_123: -7.69719300e-09 + art_sys_124: -1.21769459e-12 + art_sys_125: 1.86101933e-11 + art_sys_126: 3.27150624e-07 + art_sys_127: -6.06259143e-11 + art_sys_128: 3.10788300e-08 + art_sys_129: 1.40646073e-08 + art_sys_130: -1.30264018e-09 + art_sys_131: 1.61446104e-08 + art_sys_132: 2.28618318e-11 + art_sys_133: 7.17806009e-07 + art_sys_134: -6.59779663e-08 + art_sys_135: -3.48273164e-11 + art_sys_136: 3.72626367e-08 + art_sys_137: 8.99278993e-10 + art_sys_138: -2.60723159e-07 + art_sys_139: 3.33199405e-07 + art_sys_140: 1.65771311e-17 + art_sys_141: 4.44823127e-07 + art_sys_142: -0.0 + art_sys_143: -4.30434054e-08 + art_sys_144: -2.56001684e-07 + art_sys_145: -5.40399788e-07 + art_sys_146: 5.70407781e-11 + art_sys_147: -1.19178835e-10 + art_sys_148: -3.02090777e-09 + art_sys_149: -4.70022873e-10 + art_sys_150: -6.90821503e-11 + art_sys_151: -8.67469699e-09 + art_sys_152: 4.00761334e-10 + art_sys_153: 4.89910786e-11 + art_sys_154: -6.65549429e-10 + art_sys_155: 1.19655846e-09 + art_sys_156: -1.63351236e-09 + art_sys_157: -3.00646561e-09 art_sys_158: -0.0 - art_sys_159: -1.00981492e-07 - art_sys_160: 4.66467670e-09 - art_sys_161: 1.15601770e-07 - art_sys_162: 1.15601770e-07 - art_sys_163: 2.42045021e-08 - art_sys_164: 2.42045021e-08 - art_sys_165: -4.27492267e-22 - art_sys_166: 1.47438173e-22 - art_sys_167: 0.0 - art_sys_168: -4.25485089e-18 - art_sys_169: 3.75553033e-18 - art_sys_170: 3.38070959e-19 - art_sys_171: 1.94524620e-19 - art_sys_172: -4.18498283e-20 - art_sys_173: -1.31464204e-19 - art_sys_174: -2.33803256e-20 - art_sys_175: -1.30580718e-20 - art_sys_176: 3.19084889e-21 - art_sys_177: -8.74282931e-22 - art_sys_178: -3.59414933e-21 - art_sys_179: -9.07910951e-23 - art_sys_180: -3.48079085e-21 - art_sys_181: -3.86147180e-22 - art_sys_182: 4.89991839e-22 - art_sys_183: 8.52552604e-24 - art_sys_184: 4.40729725e-25 - art_sys_185: 1.63900309e-25 + art_sys_159: -2.95570609e-07 + art_sys_160: -2.95570609e-07 + art_sys_161: -1.04812313e-08 + art_sys_162: 3.45754272e-21 + art_sys_163: 0.0 + art_sys_164: 1.97982968e-21 + art_sys_165: 2.13604086e-17 + art_sys_166: -4.47438093e-17 + art_sys_167: 3.18564792e-17 + art_sys_168: -7.34218194e-18 + art_sys_169: -2.98329421e-18 + art_sys_170: 7.34297466e-18 + art_sys_171: -2.38927749e-19 + art_sys_172: -2.66043597e-19 + art_sys_173: 8.88530572e-19 + art_sys_174: -3.82791397e-22 + art_sys_175: -1.62629320e-20 + art_sys_176: 1.16045926e-20 + art_sys_177: -1.17658519e-20 + art_sys_178: -3.32683611e-21 + art_sys_179: -6.09457557e-21 + art_sys_180: -6.93089870e-21 + art_sys_181: 1.64388641e-23 + art_sys_182: -2.50629697e-22 + art_sys_183: -2.99009780e-24 + art_sys_184: 7.79818270e-25 + art_sys_185: 2.90581830e-22 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -65716,189 +65716,189 @@ bins: uncorrelated_uncertainty: 124.926 - art_sys_1: -1.44127189e+02 art_sys_2: -2.83295881e+01 - art_sys_3: -1.48945737e-13 - art_sys_4: 1.18398710e-14 - art_sys_5: 3.24611039e-14 + art_sys_3: -6.00388467e-14 + art_sys_4: -1.92562729e-14 + art_sys_5: 2.88479314e-14 art_sys_6: 9.53096229e+00 - art_sys_7: -1.90736856e-14 - art_sys_8: 2.46091523e-14 - art_sys_9: 7.73814972e-15 + art_sys_7: -9.35593242e-15 + art_sys_8: -1.67171710e-15 + art_sys_9: 7.72738737e-15 art_sys_10: -1.33686269e+00 - art_sys_11: -8.10528210e-15 - art_sys_12: -8.17913917e-16 - art_sys_13: -3.61923112e-02 - art_sys_14: -1.28261715e-15 - art_sys_15: -9.86301261e-17 - art_sys_16: -1.24868601e-15 + art_sys_11: -7.47379213e-15 + art_sys_12: -1.11679116e-15 + art_sys_13: 3.61923112e-02 + art_sys_14: 1.29495956e-15 + art_sys_15: -5.03761476e-18 + art_sys_16: 1.24632756e-15 art_sys_17: 9.21916398e-03 - art_sys_18: -1.11842454e-15 - art_sys_19: 3.60867421e-15 + art_sys_18: -1.10368827e-15 + art_sys_19: -3.60643414e-15 art_sys_20: -2.13597106e-03 - art_sys_21: -8.77944580e-17 + art_sys_21: -8.52539255e-17 art_sys_22: 3.00219217e-04 - art_sys_23: 5.33813666e-16 - art_sys_24: -5.89478965e-16 - art_sys_25: -6.41817499e-17 - art_sys_26: -3.01064126e-17 - art_sys_27: -1.26452517e-17 + art_sys_23: 5.33975418e-16 + art_sys_24: -5.89485257e-16 + art_sys_25: 6.41969522e-17 + art_sys_26: -3.02116948e-17 + art_sys_27: 1.26343846e-17 art_sys_28: 1.56165884e-06 - art_sys_29: -7.62463709e-19 - art_sys_30: 1.25252372e-17 - art_sys_31: -3.03114012e-07 - art_sys_32: 3.31227702e-18 - art_sys_33: 6.27044119e-17 - art_sys_34: -6.09968371e-18 - art_sys_35: -4.81302776e-08 - art_sys_36: -2.61979891e-16 - art_sys_37: -1.02798016e-17 - art_sys_38: 1.20369770e-18 - art_sys_39: 3.43577196e-20 - art_sys_40: 2.94017969e-20 - art_sys_41: 2.44342840e-19 - art_sys_42: -1.53448530e-19 - art_sys_43: 1.12964243e-20 - art_sys_44: -2.85153967e-18 - art_sys_45: 1.15144072e-18 - art_sys_46: 4.24389745e-21 - art_sys_47: 2.59710142e-18 - art_sys_48: -3.44993416e-17 - art_sys_49: 1.45602698e-17 - art_sys_50: -2.76764970e-20 - art_sys_51: 1.02164199e-19 - art_sys_52: -1.32601602e-09 - art_sys_53: 7.55134263e-18 - art_sys_54: -2.80051902e-19 - art_sys_55: -8.88284362e-18 - art_sys_56: 3.26305128e-10 - art_sys_57: -2.60748072e-19 - art_sys_58: 2.74109507e-21 - art_sys_59: 1.92283838e-18 - art_sys_60: 9.07623157e-20 - art_sys_61: 6.78111872e-21 - art_sys_62: -4.88095487e-11 - art_sys_63: -4.31766354e-20 - art_sys_64: 8.22996060e-20 - art_sys_65: -3.80542804e-21 - art_sys_66: 9.09551817e-21 - art_sys_67: -1.00246486e-21 - art_sys_68: -3.27907586e-25 - art_sys_69: -7.81177644e-24 - art_sys_70: -3.71866860e-24 - art_sys_71: -2.22570796e-24 - art_sys_72: 6.12494564e-26 - art_sys_73: 5.68691346e-28 - art_sys_74: 5.14954932e-22 - art_sys_75: 1.37810842e-25 - art_sys_76: -1.28767708e-23 - art_sys_77: 4.68760979e-23 - art_sys_78: -1.03943695e-23 - art_sys_79: 2.42220139e-25 - art_sys_80: 1.82869873e-23 - art_sys_81: -8.46539979e-21 - art_sys_82: 8.62219965e-19 - art_sys_83: 5.59359745e-24 - art_sys_84: 2.63442119e-24 - art_sys_85: -2.22310371e-24 - art_sys_86: -5.06119020e-25 - art_sys_87: 1.05210594e-21 - art_sys_88: 5.21173811e-23 - art_sys_89: 3.91633041e-26 - art_sys_90: 7.17131348e-25 - art_sys_91: -3.50659173e-19 - art_sys_92: -1.42196759e-26 - art_sys_93: 1.31735794e-26 - art_sys_94: 2.05436647e-26 - art_sys_95: 7.67426145e-21 - art_sys_96: 3.49889753e-18 - art_sys_97: 1.57346387e-12 - art_sys_98: 1.43713829e-20 - art_sys_99: -5.97305281e-22 - art_sys_100: -3.71144584e-19 - art_sys_101: -7.43951453e-19 - art_sys_102: 7.49027849e-20 - art_sys_103: -1.79672341e-13 - art_sys_104: -1.30298459e-19 - art_sys_105: -7.05142320e-27 - art_sys_106: -1.79831174e-21 - art_sys_107: 5.52075489e-23 - art_sys_108: -9.51579387e-27 - art_sys_109: -5.01353768e-28 - art_sys_110: -2.33482896e-21 - art_sys_111: 7.53619769e-20 - art_sys_112: 1.01092008e-21 - art_sys_113: 3.68787181e-15 - art_sys_114: 6.88166107e-29 - art_sys_115: 3.63367850e-20 - art_sys_116: -4.19405093e-28 - art_sys_117: -1.64178196e-28 - art_sys_118: -2.65213469e-20 - art_sys_119: -1.59573697e-24 - art_sys_120: -8.60318478e-24 - art_sys_121: -1.16226901e-27 - art_sys_122: 1.33390132e-20 - art_sys_123: 7.54533417e-26 - art_sys_124: -7.44070969e-21 - art_sys_125: -3.17957114e-28 - art_sys_126: 2.26278325e-25 - art_sys_127: -2.17165873e-26 - art_sys_128: 3.20690847e-21 - art_sys_129: -5.45202657e-28 - art_sys_130: 7.36704022e-27 - art_sys_131: -2.45114847e-28 - art_sys_132: 1.23841771e-21 - art_sys_133: -3.30103662e-27 - art_sys_134: -2.32468041e-26 - art_sys_135: -4.36370749e-22 - art_sys_136: 6.70037775e-29 - art_sys_137: -8.27313797e-28 - art_sys_138: -1.19638321e-22 - art_sys_139: -2.91793704e-27 - art_sys_140: 2.35753737e-30 - art_sys_141: -1.54725970e-26 - art_sys_142: -4.28471166e-23 - art_sys_143: -1.65143530e-27 - art_sys_144: 1.35964782e-29 - art_sys_145: -7.79058189e-24 - art_sys_146: 4.66293051e-28 - art_sys_147: -1.46289325e-30 - art_sys_148: 1.21880051e-31 - art_sys_149: 7.88565880e-25 - art_sys_150: -2.30292967e-26 - art_sys_151: 1.45082844e-27 - art_sys_152: 2.26693469e-29 - art_sys_153: 6.93223401e-28 - art_sys_154: -6.29932849e-18 - art_sys_155: 5.17404024e-29 - art_sys_156: -0.0 - art_sys_157: 7.66252526e-26 + art_sys_29: 6.84542499e-16 + art_sys_30: 1.77168740e-17 + art_sys_31: -2.86238007e-18 + art_sys_32: -3.51519408e-20 + art_sys_33: 6.42096361e-20 + art_sys_34: -4.78547252e-19 + art_sys_35: -7.16472967e-19 + art_sys_36: -2.46399416e-18 + art_sys_37: 2.07232780e-17 + art_sys_38: 1.85081559e-18 + art_sys_39: 3.03114012e-07 + art_sys_40: 5.12636724e-18 + art_sys_41: -5.85713926e-17 + art_sys_42: 7.18036075e-18 + art_sys_43: 1.24616256e-17 + art_sys_44: -1.73331362e-18 + art_sys_45: -4.81302776e-08 + art_sys_46: -1.18398200e-18 + art_sys_47: 1.59738209e-20 + art_sys_48: -3.30004112e-17 + art_sys_49: 3.32300464e-18 + art_sys_50: 1.20521657e-19 + art_sys_51: -2.96957907e-19 + art_sys_52: 2.30713158e-18 + art_sys_53: 1.32601602e-09 + art_sys_54: 4.04572559e-20 + art_sys_55: 9.88139668e-18 + art_sys_56: -3.26305153e-10 + art_sys_57: 4.98833099e-20 + art_sys_58: -9.54683798e-21 + art_sys_59: 4.85412686e-22 + art_sys_60: 3.30183526e-19 + art_sys_61: 1.35923694e-22 + art_sys_62: -8.61956059e-24 + art_sys_63: -4.92856370e-24 + art_sys_64: 3.08552182e-24 + art_sys_65: 2.60372660e-24 + art_sys_66: -6.53268529e-20 + art_sys_67: 1.71249918e-24 + art_sys_68: 1.77388374e-25 + art_sys_69: 3.45948535e-20 + art_sys_70: 1.27049546e-18 + art_sys_71: 1.15740218e-18 + art_sys_72: -4.88095407e-11 + art_sys_73: 6.52850920e-22 + art_sys_74: 3.75885179e-20 + art_sys_75: -1.34131548e-24 + art_sys_76: -1.00333354e-23 + art_sys_77: -1.09841234e-22 + art_sys_78: -3.42474607e-23 + art_sys_79: -7.78384119e-24 + art_sys_80: 3.83247378e-19 + art_sys_81: 1.73921740e-24 + art_sys_82: 8.97927985e-25 + art_sys_83: -4.33055050e-24 + art_sys_84: -2.66537666e-20 + art_sys_85: 6.32420362e-25 + art_sys_86: 2.25948128e-24 + art_sys_87: 6.21152539e-25 + art_sys_88: 3.06805860e-26 + art_sys_89: 2.27812898e-27 + art_sys_90: 3.02873787e-18 + art_sys_91: 3.29414600e-18 + art_sys_92: -8.19287862e-21 + art_sys_93: -1.57345935e-12 + art_sys_94: -5.25288457e-20 + art_sys_95: 1.54502300e-20 + art_sys_96: 9.75070481e-28 + art_sys_97: -6.15223904e-22 + art_sys_98: 9.76457177e-20 + art_sys_99: 1.79673757e-13 + art_sys_100: -8.26968697e-23 + art_sys_101: -1.24225562e-19 + art_sys_102: -7.96643738e-27 + art_sys_103: 2.29427677e-23 + art_sys_104: -1.98516374e-20 + art_sys_105: -1.69715040e-26 + art_sys_106: 4.99074997e-20 + art_sys_107: -3.68764273e-15 + art_sys_108: -1.79788182e-24 + art_sys_109: -6.23432851e-23 + art_sys_110: 1.34388033e-28 + art_sys_111: 3.48543129e-20 + art_sys_112: 9.97860622e-26 + art_sys_113: 1.68738172e-27 + art_sys_114: -2.34994133e-20 + art_sys_115: -3.33707013e-24 + art_sys_116: -6.28105746e-24 + art_sys_117: 1.54865728e-27 + art_sys_118: -1.17941893e-20 + art_sys_119: -2.12701310e-26 + art_sys_120: 7.17968741e-21 + art_sys_121: -1.15537719e-24 + art_sys_122: 3.47492918e-21 + art_sys_123: -1.61237675e-26 + art_sys_124: -1.35538903e-21 + art_sys_125: 4.67144218e-22 + art_sys_126: -1.99525182e-24 + art_sys_127: 1.27627493e-22 + art_sys_128: 7.61520661e-28 + art_sys_129: 1.46957619e-27 + art_sys_130: -1.90086260e-27 + art_sys_131: -1.70566867e-27 + art_sys_132: 4.50519464e-23 + art_sys_133: 4.58058222e-26 + art_sys_134: 1.71487915e-26 + art_sys_135: 7.92119201e-24 + art_sys_136: 1.43706800e-26 + art_sys_137: -7.52721734e-25 + art_sys_138: -4.34685325e-27 + art_sys_139: -1.75016092e-26 + art_sys_140: -6.47292972e-18 + art_sys_141: -2.82914073e-26 + art_sys_142: 0.0 + art_sys_143: 5.20268082e-25 + art_sys_144: 2.34852414e-25 + art_sys_145: 9.14473312e-26 + art_sys_146: -3.80710829e-29 + art_sys_147: 2.19854190e-28 + art_sys_148: -2.75044800e-27 + art_sys_149: -2.61993982e-27 + art_sys_150: 2.29782269e-28 + art_sys_151: -7.86513388e-29 + art_sys_152: -1.39372165e-29 + art_sys_153: -1.09883462e-29 + art_sys_154: -3.90107521e-30 + art_sys_155: 4.89169215e-30 + art_sys_156: 1.97812605e-29 + art_sys_157: 1.31284883e-27 art_sys_158: 0.0 - art_sys_159: -1.91991501e-26 - art_sys_160: -2.09105025e-27 - art_sys_161: -3.07234128e-28 - art_sys_162: -3.07234128e-28 - art_sys_163: 7.64431113e-28 - art_sys_164: 7.64431113e-28 - art_sys_165: -7.03802194e-42 - art_sys_166: 2.20855552e-42 - art_sys_167: 0.0 - art_sys_168: 3.56880855e-34 - art_sys_169: -1.11635027e-33 - art_sys_170: 1.07802693e-33 - art_sys_171: 1.08547052e-32 - art_sys_172: 2.07878599e-33 - art_sys_173: -1.55034532e-34 - art_sys_174: -5.70955308e-36 - art_sys_175: 9.25158775e-35 - art_sys_176: -8.35855554e-36 - art_sys_177: -7.99310572e-38 - art_sys_178: -6.40488980e-39 - art_sys_179: -3.79797264e-41 - art_sys_180: -3.96071350e-40 - art_sys_181: 5.21950615e-37 - art_sys_182: -2.97688418e-36 - art_sys_183: -4.72300127e-38 - art_sys_184: 8.14348679e-41 - art_sys_185: 9.87548974e-43 + art_sys_159: 5.37837301e-27 + art_sys_160: 5.37837301e-27 + art_sys_161: 4.44979377e-28 + art_sys_162: -1.49506205e-40 + art_sys_163: -0.0 + art_sys_164: -8.53122838e-41 + art_sys_165: -1.48737016e-33 + art_sys_166: -4.55764630e-34 + art_sys_167: 4.43239407e-34 + art_sys_168: -8.13022250e-35 + art_sys_169: -3.51829099e-34 + art_sys_170: 5.09599531e-34 + art_sys_171: 4.45455171e-33 + art_sys_172: 1.11001622e-31 + art_sys_173: -5.21583910e-33 + art_sys_174: 5.18985429e-41 + art_sys_175: 3.67774329e-34 + art_sys_176: 1.30947021e-34 + art_sys_177: 1.14830676e-36 + art_sys_178: -4.40041311e-36 + art_sys_179: 8.57424248e-36 + art_sys_180: -3.23158826e-37 + art_sys_181: -1.65060300e-36 + art_sys_182: -1.10999078e-36 + art_sys_183: -4.01823068e-39 + art_sys_184: 1.51930172e-41 + art_sys_185: -5.53222248e-42 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -66007,189 +66007,189 @@ bins: uncorrelated_uncertainty: 124.926 - art_sys_1: -7.40546891e+01 art_sys_2: 5.17553441e+01 - art_sys_3: 9.87591796e-14 - art_sys_4: -4.89906578e-14 - art_sys_5: -6.64684166e-14 + art_sys_3: -1.01509962e-13 + art_sys_4: 1.38353758e-14 + art_sys_5: -4.91907951e-14 art_sys_6: -1.73435696e+01 - art_sys_7: 4.12988140e-14 - art_sys_8: -8.70008729e-14 - art_sys_9: -2.27816179e-14 + art_sys_7: 3.99441354e-14 + art_sys_8: -8.08431515e-15 + art_sys_9: -1.50681716e-14 art_sys_10: 3.89869916e+00 - art_sys_11: 2.29194196e-14 - art_sys_12: 3.11003619e-15 - art_sys_13: 1.16031603e-01 - art_sys_14: 3.52981104e-15 - art_sys_15: 5.66658952e-16 - art_sys_16: 2.80586253e-15 + art_sys_11: 2.29641590e-14 + art_sys_12: 2.28651267e-15 + art_sys_13: -1.16031603e-01 + art_sys_14: -3.54968101e-15 + art_sys_15: -5.60199220e-16 + art_sys_16: -2.79751202e-15 art_sys_17: -3.15344596e-02 - art_sys_18: 3.47541655e-15 - art_sys_19: -9.68917813e-15 + art_sys_18: 3.47679314e-15 + art_sys_19: 9.68040904e-15 art_sys_20: 8.02872055e-03 - art_sys_21: 3.66289298e-16 + art_sys_21: 3.67062635e-16 art_sys_22: -1.17210415e-03 - art_sys_23: -2.32673410e-15 - art_sys_24: 1.33158310e-15 - art_sys_25: 1.80382101e-16 - art_sys_26: 9.10001214e-17 - art_sys_27: 3.40756743e-17 + art_sys_23: -2.32946898e-15 + art_sys_24: 1.33154587e-15 + art_sys_25: -1.80349608e-16 + art_sys_26: 9.05832695e-17 + art_sys_27: -3.41281724e-17 art_sys_28: -8.31030126e-06 - art_sys_29: -2.69687385e-18 - art_sys_30: -2.90971265e-17 - art_sys_31: 1.60940847e-06 - art_sys_32: -9.95217430e-18 - art_sys_33: -1.63817749e-16 - art_sys_34: 4.80596079e-18 - art_sys_35: 2.55144816e-07 - art_sys_36: -1.13183137e-16 - art_sys_37: -6.07045579e-19 - art_sys_38: 1.30650143e-18 - art_sys_39: 2.34585529e-20 - art_sys_40: 6.43984001e-21 - art_sys_41: 2.52703490e-19 - art_sys_42: -4.16992066e-19 - art_sys_43: -4.74307802e-19 - art_sys_44: -2.93338326e-18 - art_sys_45: 1.01092195e-18 - art_sys_46: 8.74864849e-20 - art_sys_47: -1.45837645e-17 - art_sys_48: 8.01378310e-17 - art_sys_49: -7.83089014e-17 - art_sys_50: 5.97284949e-20 - art_sys_51: 2.67332179e-19 - art_sys_52: 1.02589085e-08 - art_sys_53: -4.39277839e-17 - art_sys_54: 9.29146767e-19 - art_sys_55: 2.43278890e-17 - art_sys_56: -1.85589066e-09 - art_sys_57: 2.72550206e-20 - art_sys_58: -7.21359152e-22 - art_sys_59: -6.04097508e-18 - art_sys_60: 1.26714954e-19 - art_sys_61: -1.11757534e-20 - art_sys_62: 3.24684152e-10 - art_sys_63: -4.80984959e-20 - art_sys_64: -2.91645069e-20 - art_sys_65: -7.01779199e-21 - art_sys_66: 1.34667093e-21 - art_sys_67: 3.93009282e-22 - art_sys_68: -1.44048450e-23 - art_sys_69: 3.13316101e-23 - art_sys_70: 9.62497353e-24 - art_sys_71: 9.58248375e-24 - art_sys_72: -2.70780806e-25 - art_sys_73: 1.79927624e-25 - art_sys_74: 6.46906807e-21 - art_sys_75: -1.47013481e-25 - art_sys_76: 6.82354486e-23 - art_sys_77: -2.90514736e-22 - art_sys_78: 7.03512104e-23 - art_sys_79: -3.35578430e-25 - art_sys_80: -1.12380329e-22 - art_sys_81: 5.11981156e-20 - art_sys_82: -4.89966706e-18 - art_sys_83: -3.17879365e-23 - art_sys_84: -1.65694098e-23 - art_sys_85: 1.37484377e-23 - art_sys_86: 2.89183021e-24 - art_sys_87: -7.05765755e-21 - art_sys_88: -3.46305037e-22 - art_sys_89: -3.03431620e-25 - art_sys_90: -3.92650716e-24 - art_sys_91: 9.83722937e-19 - art_sys_92: 8.53809771e-26 - art_sys_93: -8.07390976e-26 - art_sys_94: -1.17269737e-25 - art_sys_95: -4.66711824e-20 - art_sys_96: -1.78771598e-17 - art_sys_97: -9.51559195e-12 - art_sys_98: -9.54076329e-20 - art_sys_99: -1.88930410e-19 - art_sys_100: 2.48936639e-18 - art_sys_101: 5.47195926e-18 - art_sys_102: -4.79865642e-19 - art_sys_103: 1.20512907e-12 - art_sys_104: 2.41483769e-19 - art_sys_105: 7.28528965e-26 - art_sys_106: 8.74821383e-20 - art_sys_107: -3.66046721e-22 - art_sys_108: 3.00908720e-27 - art_sys_109: 6.55561393e-28 - art_sys_110: 1.46888293e-20 - art_sys_111: -6.51262443e-19 - art_sys_112: -6.60001226e-21 - art_sys_113: -2.36135820e-14 - art_sys_114: 3.37307984e-28 - art_sys_115: -1.00933153e-19 - art_sys_116: -1.76172369e-25 - art_sys_117: -1.24923250e-27 - art_sys_118: 6.32220370e-20 - art_sys_119: -9.14501458e-25 - art_sys_120: 7.33490688e-23 - art_sys_121: -7.56354061e-28 - art_sys_122: -2.94351800e-20 - art_sys_123: -4.24671301e-25 - art_sys_124: 1.94250054e-20 - art_sys_125: -1.35666521e-28 - art_sys_126: -2.40420675e-25 - art_sys_127: -4.02097714e-27 - art_sys_128: -8.38472704e-21 - art_sys_129: 9.70725263e-28 - art_sys_130: -4.27816039e-27 - art_sys_131: 4.29295024e-29 - art_sys_132: -3.32347813e-21 - art_sys_133: 1.12145271e-26 - art_sys_134: -6.79655075e-25 - art_sys_135: 1.24619823e-21 - art_sys_136: -5.67764766e-29 - art_sys_137: -1.34673530e-27 - art_sys_138: 3.62985640e-22 - art_sys_139: 1.01469001e-26 - art_sys_140: -1.88134198e-30 - art_sys_141: 1.44823148e-27 - art_sys_142: 1.31842536e-22 - art_sys_143: 2.28171422e-27 - art_sys_144: -5.27890554e-29 - art_sys_145: 2.38525562e-23 - art_sys_146: -1.08291410e-27 - art_sys_147: 2.66924878e-29 - art_sys_148: -9.98354528e-31 - art_sys_149: -2.33141127e-24 - art_sys_150: 6.98839598e-26 - art_sys_151: -1.33983175e-26 - art_sys_152: -7.29654803e-29 - art_sys_153: -1.60252582e-26 - art_sys_154: 3.96274784e-17 - art_sys_155: -2.94287936e-28 - art_sys_156: 0.0 - art_sys_157: -4.61359867e-25 + art_sys_29: 2.81308015e-16 + art_sys_30: 1.34546453e-17 + art_sys_31: -1.40610482e-18 + art_sys_32: 2.32660656e-19 + art_sys_33: 1.29073917e-19 + art_sys_34: -1.04343187e-18 + art_sys_35: -1.26041322e-18 + art_sys_36: -5.22675205e-18 + art_sys_37: -8.24171746e-17 + art_sys_38: 2.10767313e-18 + art_sys_39: -1.60940847e-06 + art_sys_40: -2.24766602e-17 + art_sys_41: 1.58516030e-16 + art_sys_42: 3.77373459e-18 + art_sys_43: -6.98471516e-17 + art_sys_44: -1.25394762e-18 + art_sys_45: 2.55144816e-07 + art_sys_46: 8.75314223e-18 + art_sys_47: 1.09900794e-19 + art_sys_48: 8.07636765e-17 + art_sys_49: -2.32933099e-17 + art_sys_50: -1.18449433e-19 + art_sys_51: 4.77843620e-19 + art_sys_52: -1.22967607e-17 + art_sys_53: -1.02589085e-08 + art_sys_54: -1.05135150e-19 + art_sys_55: -2.58023266e-17 + art_sys_56: 1.85589081e-09 + art_sys_57: -4.04423065e-20 + art_sys_58: 4.86540718e-21 + art_sys_59: -2.04431885e-21 + art_sys_60: -5.59954771e-19 + art_sys_61: -7.56411187e-22 + art_sys_62: -6.46889176e-23 + art_sys_63: 4.78843468e-23 + art_sys_64: -3.07127821e-23 + art_sys_65: -1.65404510e-23 + art_sys_66: 4.32132742e-19 + art_sys_67: -1.18405531e-23 + art_sys_68: -3.05763796e-24 + art_sys_69: -2.60221125e-19 + art_sys_70: -6.03430778e-18 + art_sys_71: -7.37377711e-18 + art_sys_72: 3.24684102e-10 + art_sys_73: 7.46786617e-22 + art_sys_74: 3.72427375e-19 + art_sys_75: 3.71143805e-24 + art_sys_76: 1.18588530e-22 + art_sys_77: 6.59968886e-22 + art_sys_78: 2.08061184e-22 + art_sys_79: -1.71290115e-24 + art_sys_80: -2.76159404e-18 + art_sys_81: -9.16218274e-24 + art_sys_82: -5.60771279e-24 + art_sys_83: 2.65784418e-23 + art_sys_84: 1.61919749e-19 + art_sys_85: -4.05550426e-24 + art_sys_86: -1.36500479e-23 + art_sys_87: 6.10815849e-25 + art_sys_88: -1.75429714e-25 + art_sys_89: -4.67946865e-26 + art_sys_90: -1.64593546e-17 + art_sys_91: -2.35745930e-17 + art_sys_92: 5.71227872e-20 + art_sys_93: 9.51556370e-12 + art_sys_94: 3.36338528e-19 + art_sys_95: -7.72011297e-20 + art_sys_96: -2.63840480e-27 + art_sys_97: 2.73174292e-21 + art_sys_98: -3.09680454e-19 + art_sys_99: -1.20513765e-12 + art_sys_100: 7.09075213e-23 + art_sys_101: 4.23887672e-19 + art_sys_102: 1.03725043e-26 + art_sys_103: -2.18144013e-23 + art_sys_104: -1.08496828e-20 + art_sys_105: 1.16479407e-26 + art_sys_106: -1.38544973e-19 + art_sys_107: 2.36121183e-14 + art_sys_108: 1.31240444e-24 + art_sys_109: 1.50193030e-23 + art_sys_110: -1.18058353e-28 + art_sys_111: -1.01490423e-19 + art_sys_112: 1.33140656e-24 + art_sys_113: 1.37976945e-27 + art_sys_114: 7.06018173e-20 + art_sys_115: 3.09696885e-24 + art_sys_116: -4.99980656e-25 + art_sys_117: 1.31137191e-27 + art_sys_118: 3.95545922e-20 + art_sys_119: -3.19030298e-25 + art_sys_120: -2.07217024e-20 + art_sys_121: -1.18193697e-24 + art_sys_122: -9.10171914e-21 + art_sys_123: 5.20815618e-27 + art_sys_124: 3.57306139e-21 + art_sys_125: -1.28989695e-21 + art_sys_126: -3.61638043e-26 + art_sys_127: -3.69918147e-22 + art_sys_128: 1.25906632e-26 + art_sys_129: 5.57052025e-28 + art_sys_130: 7.63759030e-27 + art_sys_131: 2.39043035e-27 + art_sys_132: -1.32091333e-22 + art_sys_133: -6.45974631e-27 + art_sys_134: -5.90280989e-26 + art_sys_135: -2.42430750e-23 + art_sys_136: -4.63336537e-26 + art_sys_137: 3.00589769e-24 + art_sys_138: 1.83034951e-26 + art_sys_139: 7.82903008e-26 + art_sys_140: 4.07197241e-17 + art_sys_141: 1.87334351e-25 + art_sys_142: -0.0 + art_sys_143: -3.24482578e-24 + art_sys_144: -1.47825983e-24 + art_sys_145: -5.76745931e-25 + art_sys_146: 9.34926694e-29 + art_sys_147: -1.69394982e-28 + art_sys_148: 1.67959662e-27 + art_sys_149: -1.47073708e-28 + art_sys_150: 2.62041830e-30 + art_sys_151: 1.62235379e-29 + art_sys_152: -9.40024394e-29 + art_sys_153: -1.90746201e-29 + art_sys_154: 1.98479481e-29 + art_sys_155: -3.97230995e-29 + art_sys_156: -1.53263816e-28 + art_sys_157: -8.25551331e-27 art_sys_158: -0.0 - art_sys_159: 1.15383180e-25 - art_sys_160: 1.34520315e-26 - art_sys_161: 2.43915197e-27 - art_sys_162: 2.43915197e-27 - art_sys_163: -4.27666607e-27 - art_sys_164: -4.27666607e-27 - art_sys_165: 3.82797419e-41 - art_sys_166: -1.19102958e-41 - art_sys_167: -0.0 - art_sys_168: -6.93951140e-34 - art_sys_169: 1.47329629e-33 - art_sys_170: -1.34623154e-33 - art_sys_171: 1.94321105e-32 - art_sys_172: -6.17691977e-34 - art_sys_173: -3.02217104e-34 - art_sys_174: 9.02521651e-35 - art_sys_175: -1.06415005e-34 - art_sys_176: 8.52780881e-36 - art_sys_177: 5.21564658e-38 - art_sys_178: 5.04575326e-38 - art_sys_179: 2.30460949e-40 - art_sys_180: 2.35710038e-39 - art_sys_181: -3.60494848e-37 - art_sys_182: -2.94602649e-36 - art_sys_183: -9.47214603e-39 - art_sys_184: -6.40792556e-41 - art_sys_185: -7.91745317e-43 + art_sys_159: -3.77722612e-26 + art_sys_160: -3.77722612e-26 + art_sys_161: -2.66097098e-27 + art_sys_162: 8.86022160e-40 + art_sys_163: 0.0 + art_sys_164: 5.02700450e-40 + art_sys_165: -8.12924936e-34 + art_sys_166: -4.10628832e-34 + art_sys_167: 7.06501927e-35 + art_sys_168: -2.67682970e-34 + art_sys_169: 4.90811075e-34 + art_sys_170: 1.54385910e-33 + art_sys_171: -2.67770393e-32 + art_sys_172: -5.41968520e-32 + art_sys_173: 8.66466095e-33 + art_sys_174: -3.32265961e-40 + art_sys_175: -4.36480083e-34 + art_sys_176: 6.97498138e-34 + art_sys_177: -6.68303059e-35 + art_sys_178: -6.93320216e-36 + art_sys_179: 5.44448367e-37 + art_sys_180: -4.37201911e-37 + art_sys_181: 1.38078726e-36 + art_sys_182: -5.16665550e-37 + art_sys_183: -8.74711083e-39 + art_sys_184: 2.20176795e-41 + art_sys_185: 3.31168810e-41 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -66298,189 +66298,189 @@ bins: uncorrelated_uncertainty: 5.88576000e+01 - art_sys_1: -6.75394975e+00 art_sys_2: 4.84578686e+01 - art_sys_3: 9.16025315e-15 - art_sys_4: 6.42700306e-14 - art_sys_5: 7.86600653e-16 + art_sys_3: 1.02035355e-14 + art_sys_4: -2.44790078e-14 + art_sys_5: -2.94560381e-14 art_sys_6: 1.80896961e+01 - art_sys_7: 2.76554744e-15 - art_sys_8: 1.27548356e-13 - art_sys_9: 1.24746393e-14 + art_sys_7: 9.73947614e-15 + art_sys_8: 2.79903107e-15 + art_sys_9: -2.55092734e-15 art_sys_10: -6.35102935e+00 - art_sys_11: -3.92487520e-14 - art_sys_12: -4.77232957e-15 - art_sys_13: -3.74666874e-01 - art_sys_14: -4.77327864e-15 - art_sys_15: -6.49393982e-15 - art_sys_16: -5.08642817e-15 + art_sys_11: -3.92419907e-14 + art_sys_12: -4.77514265e-15 + art_sys_13: 3.74666874e-01 + art_sys_14: 4.88780125e-15 + art_sys_15: 6.50215758e-15 + art_sys_16: 5.05858745e-15 art_sys_17: 8.87390780e-02 - art_sys_18: -6.44465762e-15 - art_sys_19: 1.56579935e-14 + art_sys_18: -6.44716120e-15 + art_sys_19: -1.56284434e-14 art_sys_20: -2.62719128e-02 - art_sys_21: -2.09367278e-16 + art_sys_21: -2.05204966e-16 art_sys_22: 3.96660433e-03 - art_sys_23: 7.37292809e-15 - art_sys_24: -1.90146513e-15 - art_sys_25: -3.96754139e-16 - art_sys_26: -2.03619509e-16 - art_sys_27: -6.95604219e-17 + art_sys_23: 7.37599303e-15 + art_sys_24: -1.90181630e-15 + art_sys_25: 3.96794596e-16 + art_sys_26: -2.03553765e-16 + art_sys_27: 6.95948495e-17 art_sys_28: 2.63303923e-05 - art_sys_29: 3.51765007e-18 - art_sys_30: 6.76257905e-17 - art_sys_31: -6.09179365e-06 - art_sys_32: 1.83172019e-17 - art_sys_33: 2.89855042e-16 - art_sys_34: -1.12528038e-19 - art_sys_35: -9.16431595e-07 - art_sys_36: 1.50565901e-16 - art_sys_37: -5.02389347e-18 - art_sys_38: 9.27140423e-20 - art_sys_39: -3.84774986e-20 - art_sys_40: 4.01202365e-20 - art_sys_41: 4.03755116e-19 - art_sys_42: 1.80822300e-19 - art_sys_43: -1.56605709e-18 - art_sys_44: 6.83989633e-19 - art_sys_45: -2.06050894e-19 - art_sys_46: -3.92762961e-20 - art_sys_47: 5.69720118e-17 - art_sys_48: -1.27269621e-16 - art_sys_49: 3.05364714e-16 - art_sys_50: 1.67071181e-19 - art_sys_51: 5.96299281e-19 - art_sys_52: -4.12369641e-08 - art_sys_53: 1.43432878e-16 - art_sys_54: -2.97024758e-18 - art_sys_55: -4.72195620e-17 - art_sys_56: 7.28113278e-09 - art_sys_57: 1.40449246e-19 - art_sys_58: 5.43129933e-21 - art_sys_59: 1.12912471e-17 - art_sys_60: -6.73952124e-20 - art_sys_61: -9.58997834e-22 - art_sys_62: -1.28398289e-09 - art_sys_63: -4.31030591e-22 - art_sys_64: -1.04292301e-19 - art_sys_65: 7.23079693e-22 - art_sys_66: -7.93437419e-21 - art_sys_67: 2.78851626e-21 - art_sys_68: 2.18211891e-23 - art_sys_69: -1.31130738e-22 - art_sys_70: -4.64797115e-23 - art_sys_71: -4.08304123e-23 - art_sys_72: 1.19229583e-24 - art_sys_73: -1.07735212e-24 - art_sys_74: -1.27744553e-20 - art_sys_75: 5.66389769e-25 - art_sys_76: -2.81003260e-22 - art_sys_77: 1.19276068e-21 - art_sys_78: -2.59528179e-22 - art_sys_79: -3.92359284e-25 - art_sys_80: 4.63012450e-22 - art_sys_81: -2.12035317e-19 - art_sys_82: 2.05616863e-17 - art_sys_83: 1.39870575e-22 - art_sys_84: 6.76381964e-23 - art_sys_85: -5.64545039e-23 - art_sys_86: -1.21770291e-23 - art_sys_87: 2.83604121e-20 - art_sys_88: 1.75824124e-21 - art_sys_89: 1.15381101e-24 - art_sys_90: 1.48725131e-23 - art_sys_91: -9.12878008e-19 - art_sys_92: -3.53423525e-25 - art_sys_93: 3.37356432e-25 - art_sys_94: 6.37087267e-25 - art_sys_95: 1.92245886e-19 - art_sys_96: 6.42479006e-17 - art_sys_97: 3.94080667e-11 - art_sys_98: 3.83473592e-19 - art_sys_99: 1.00665165e-18 - art_sys_100: -1.00003169e-17 - art_sys_101: -2.24945262e-17 - art_sys_102: 2.41224754e-18 - art_sys_103: -4.84138912e-12 - art_sys_104: 1.68834254e-19 - art_sys_105: -3.14598776e-25 - art_sys_106: -8.08135466e-19 - art_sys_107: 1.78004770e-21 - art_sys_108: 3.00679653e-26 - art_sys_109: 9.47850011e-28 - art_sys_110: -5.93887889e-20 - art_sys_111: 3.83806034e-18 - art_sys_112: 2.66242547e-20 - art_sys_113: 1.18691150e-13 - art_sys_114: 3.67851923e-28 - art_sys_115: 1.75423964e-19 - art_sys_116: 5.20102012e-25 - art_sys_117: 4.67765095e-27 - art_sys_118: -1.24254705e-19 - art_sys_119: 4.25533434e-24 - art_sys_120: -2.90481177e-22 - art_sys_121: -1.81035819e-27 - art_sys_122: 4.34006095e-20 - art_sys_123: -7.59713454e-25 - art_sys_124: -4.32904719e-20 - art_sys_125: -3.01126822e-28 - art_sys_126: 1.28538424e-24 - art_sys_127: 1.50149346e-25 - art_sys_128: 1.97600044e-20 - art_sys_129: 2.29490728e-27 - art_sys_130: 2.24242899e-26 - art_sys_131: -5.57057578e-29 - art_sys_132: 7.74361462e-21 - art_sys_133: -2.51548237e-26 - art_sys_134: -8.16095487e-25 - art_sys_135: -2.83617864e-21 - art_sys_136: 7.41297335e-29 - art_sys_137: 2.39509138e-27 - art_sys_138: -8.20601391e-22 - art_sys_139: -2.00291732e-26 - art_sys_140: 2.98163291e-30 - art_sys_141: -1.79398285e-27 - art_sys_142: -2.91705211e-22 - art_sys_143: -5.14433850e-27 - art_sys_144: 8.38757436e-29 - art_sys_145: -5.22440848e-23 - art_sys_146: 5.46792256e-27 - art_sys_147: -1.28915835e-29 - art_sys_148: -4.08789154e-31 - art_sys_149: 5.39425512e-24 - art_sys_150: -1.66869578e-25 - art_sys_151: 6.18588034e-26 - art_sys_152: 1.81451482e-28 - art_sys_153: 8.27077918e-26 - art_sys_154: -1.60220253e-16 - art_sys_155: 1.13113129e-27 - art_sys_156: -0.0 - art_sys_157: 1.83787731e-24 + art_sys_29: 6.84681388e-16 + art_sys_30: 6.96167289e-19 + art_sys_31: 7.40424507e-19 + art_sys_32: -9.38116587e-19 + art_sys_33: -1.21398381e-19 + art_sys_34: 7.29717432e-20 + art_sys_35: 6.75412644e-19 + art_sys_36: 3.02262657e-18 + art_sys_37: 2.68199936e-16 + art_sys_38: -3.17798027e-18 + art_sys_39: 6.09179365e-06 + art_sys_40: 6.92559654e-17 + art_sys_41: -2.87144435e-16 + art_sys_42: 3.22371199e-18 + art_sys_43: 2.36186066e-16 + art_sys_44: -8.68449818e-20 + art_sys_45: -9.16431595e-07 + art_sys_46: -3.49024907e-17 + art_sys_47: -1.81645258e-19 + art_sys_48: -1.28974124e-16 + art_sys_49: 9.15494025e-17 + art_sys_50: -3.30894161e-19 + art_sys_51: 1.09483473e-18 + art_sys_52: 2.90232566e-17 + art_sys_53: 4.12369641e-08 + art_sys_54: 2.70385302e-20 + art_sys_55: 4.98046023e-17 + art_sys_56: -7.28113335e-09 + art_sys_57: 4.98239706e-21 + art_sys_58: 8.60041815e-21 + art_sys_59: -2.17083934e-21 + art_sys_60: -1.46553681e-18 + art_sys_61: 4.21172144e-22 + art_sys_62: 4.81567092e-22 + art_sys_63: -1.23011838e-22 + art_sys_64: 1.26285327e-22 + art_sys_65: 7.60872823e-23 + art_sys_66: -1.67244155e-18 + art_sys_67: 4.64943885e-23 + art_sys_68: 1.27482306e-23 + art_sys_69: 1.07695930e-18 + art_sys_70: 1.20624594e-17 + art_sys_71: 2.93970015e-17 + art_sys_72: -1.28398270e-09 + art_sys_73: 7.17937436e-21 + art_sys_74: -1.74708158e-18 + art_sys_75: 5.23319546e-24 + art_sys_76: -3.93619233e-22 + art_sys_77: -2.74061113e-21 + art_sys_78: -8.61854830e-22 + art_sys_79: -6.55961434e-24 + art_sys_80: 1.13833183e-17 + art_sys_81: 3.95777662e-23 + art_sys_82: 2.31637605e-23 + art_sys_83: -1.09633533e-22 + art_sys_84: -6.69607235e-19 + art_sys_85: 1.65669551e-23 + art_sys_86: 5.66418150e-23 + art_sys_87: 1.45990838e-25 + art_sys_88: 4.68232323e-25 + art_sys_89: 1.22048919e-25 + art_sys_90: 6.53624749e-17 + art_sys_91: 1.06012483e-16 + art_sys_92: -2.31010795e-19 + art_sys_93: -3.94079510e-11 + art_sys_94: -1.69098336e-18 + art_sys_95: 5.11511408e-19 + art_sys_96: -2.60088290e-26 + art_sys_97: -1.16682556e-20 + art_sys_98: 7.07227549e-19 + art_sys_99: 4.84142443e-12 + art_sys_100: 8.76551215e-23 + art_sys_101: -4.50298685e-19 + art_sys_102: 3.87504105e-26 + art_sys_103: -5.43614689e-23 + art_sys_104: 3.26754731e-19 + art_sys_105: 4.19366683e-26 + art_sys_106: 2.02551713e-19 + art_sys_107: -1.18683111e-13 + art_sys_108: -3.17827298e-24 + art_sys_109: 4.88963649e-23 + art_sys_110: 1.08126192e-27 + art_sys_111: 1.83872573e-19 + art_sys_112: 2.54824358e-24 + art_sys_113: 2.85654942e-27 + art_sys_114: -1.46394132e-19 + art_sys_115: 3.27893636e-24 + art_sys_116: -2.28590511e-23 + art_sys_117: -1.68002808e-27 + art_sys_118: -9.18735702e-20 + art_sys_119: -1.85287730e-25 + art_sys_120: 4.50908224e-20 + art_sys_121: 1.61864957e-24 + art_sys_122: 1.84926822e-20 + art_sys_123: 7.05500179e-27 + art_sys_124: -7.26688247e-21 + art_sys_125: 2.74089987e-21 + art_sys_126: 4.08710386e-24 + art_sys_127: 8.03113542e-22 + art_sys_128: -2.54395209e-26 + art_sys_129: 1.83778534e-27 + art_sys_130: -1.92328875e-26 + art_sys_131: -4.78364493e-27 + art_sys_132: 2.85448462e-22 + art_sys_133: -5.46454402e-26 + art_sys_134: 1.32359463e-25 + art_sys_135: 5.40549599e-23 + art_sys_136: 1.08433802e-25 + art_sys_137: -6.86996572e-24 + art_sys_138: -4.88657495e-26 + art_sys_139: -2.37145800e-25 + art_sys_140: -1.64638389e-16 + art_sys_141: -7.91034141e-25 + art_sys_142: 0.0 + art_sys_143: 1.31204050e-23 + art_sys_144: 5.98866238e-24 + art_sys_145: 2.34539948e-24 + art_sys_146: 3.90438592e-28 + art_sys_147: -8.93971417e-28 + art_sys_148: 2.48651002e-27 + art_sys_149: 2.32159150e-27 + art_sys_150: 1.92365418e-28 + art_sys_151: -2.48164670e-28 + art_sys_152: 8.09312672e-30 + art_sys_153: 3.83700610e-29 + art_sys_154: -6.33183708e-29 + art_sys_155: 1.90674611e-28 + art_sys_156: 7.14334808e-28 + art_sys_157: 3.33815922e-26 art_sys_158: 0.0 - art_sys_159: -4.57853918e-25 - art_sys_160: -5.47646251e-26 - art_sys_161: -1.06279029e-26 - art_sys_162: -1.06279029e-26 - art_sys_163: 1.64122687e-26 - art_sys_164: 1.64122687e-26 - art_sys_165: -1.44989266e-40 - art_sys_166: 4.49200284e-41 - art_sys_167: 0.0 - art_sys_168: -1.02192453e-33 - art_sys_169: 3.83680117e-33 - art_sys_170: -5.80851961e-33 - art_sys_171: -2.92485919e-32 - art_sys_172: -1.06403882e-32 - art_sys_173: -1.33154722e-33 - art_sys_174: -4.07956275e-34 - art_sys_175: -2.10258398e-34 - art_sys_176: 6.54723281e-37 - art_sys_177: 1.13910011e-37 - art_sys_178: -1.70242597e-37 - art_sys_179: -9.14439699e-40 - art_sys_180: -9.31321282e-39 - art_sys_181: 2.42211583e-37 - art_sys_182: 7.90088558e-36 - art_sys_183: -1.18814597e-37 - art_sys_184: 6.14187820e-41 - art_sys_185: -1.91078355e-42 + art_sys_159: 1.60974051e-25 + art_sys_160: 1.60974051e-25 + art_sys_161: 1.04746949e-26 + art_sys_162: -3.46978569e-39 + art_sys_163: -0.0 + art_sys_164: -1.96211986e-39 + art_sys_165: -5.71895048e-33 + art_sys_166: 1.86005037e-33 + art_sys_167: -1.51897513e-33 + art_sys_168: -2.98229932e-34 + art_sys_169: 1.46283954e-33 + art_sys_170: -5.87765250e-34 + art_sys_171: -2.95184580e-32 + art_sys_172: -1.19426215e-31 + art_sys_173: -1.59862232e-32 + art_sys_174: 1.36821704e-39 + art_sys_175: -2.49047009e-33 + art_sys_176: 4.90779999e-33 + art_sys_177: -9.43165813e-34 + art_sys_178: -7.27186008e-35 + art_sys_179: 1.65499410e-36 + art_sys_180: -4.48190140e-37 + art_sys_181: 2.22195382e-36 + art_sys_182: 2.42564998e-36 + art_sys_183: 8.80800130e-40 + art_sys_184: 6.79064032e-42 + art_sys_185: -1.30984845e-40 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -66589,189 +66589,189 @@ bins: uncorrelated_uncertainty: 24.8103 - art_sys_1: 7.49785198e+00 art_sys_2: 1.04501495e+01 - art_sys_3: -3.14088319e-14 - art_sys_4: -7.41158173e-15 - art_sys_5: -1.94035868e-14 + art_sys_3: 5.31085250e-14 + art_sys_4: 1.99570585e-14 + art_sys_5: 1.61893422e-14 art_sys_6: 2.80107291e+01 - art_sys_7: 8.39997057e-15 - art_sys_8: -1.43715123e-13 - art_sys_9: -1.63836314e-14 + art_sys_7: -1.14427302e-14 + art_sys_8: -1.32583573e-14 + art_sys_9: -5.47434993e-15 art_sys_10: 6.86122477e+00 - art_sys_11: 4.66137182e-14 - art_sys_12: 6.61301549e-15 - art_sys_13: 3.94537257e-01 - art_sys_14: 3.78004377e-15 - art_sys_15: 6.91479056e-15 - art_sys_16: 4.29381149e-15 + art_sys_11: 4.39341799e-14 + art_sys_12: 7.42132594e-15 + art_sys_13: -3.94537257e-01 + art_sys_14: -4.01744794e-15 + art_sys_15: -6.89579561e-15 + art_sys_16: -4.23373097e-15 art_sys_17: -1.91704565e-01 - art_sys_18: 5.09749415e-15 - art_sys_19: -1.27982851e-14 + art_sys_18: 5.12058147e-15 + art_sys_19: 1.27254842e-14 art_sys_20: 5.59750562e-02 - art_sys_21: -3.53922463e-16 + art_sys_21: -3.62663170e-16 art_sys_22: -9.80024123e-03 - art_sys_23: -1.69485934e-14 - art_sys_24: 1.50505371e-15 - art_sys_25: 6.49734221e-16 - art_sys_26: 3.06034894e-16 - art_sys_27: 1.01581544e-16 + art_sys_23: -1.69581587e-14 + art_sys_24: 1.50586803e-15 + art_sys_25: -6.49907902e-16 + art_sys_26: 3.06029451e-16 + art_sys_27: -1.01650364e-16 art_sys_28: -8.87628100e-05 - art_sys_29: -5.42623000e-18 - art_sys_30: -1.58797375e-16 - art_sys_31: 1.82933433e-05 - art_sys_32: -2.20200212e-17 - art_sys_33: -3.53340729e-16 - art_sys_34: 6.22842994e-18 - art_sys_35: 3.09343450e-06 - art_sys_36: 7.57162379e-17 - art_sys_37: 6.91876784e-18 - art_sys_38: -6.00011165e-19 - art_sys_39: -3.73333124e-20 - art_sys_40: 3.29484484e-20 - art_sys_41: 4.52845228e-19 - art_sys_42: 5.96739171e-20 - art_sys_43: -7.49491863e-19 - art_sys_44: 6.48564929e-18 - art_sys_45: -2.16100809e-18 - art_sys_46: 2.11077961e-19 - art_sys_47: -1.90033513e-16 - art_sys_48: 9.75489673e-17 - art_sys_49: -1.01923628e-15 - art_sys_50: 6.13152956e-20 - art_sys_51: 9.67521666e-20 - art_sys_52: 1.38464857e-07 - art_sys_53: -4.61060181e-16 - art_sys_54: 1.10985083e-17 - art_sys_55: 5.69393602e-17 - art_sys_56: -2.43425298e-08 - art_sys_57: 3.50836308e-19 - art_sys_58: 2.96367040e-22 - art_sys_59: -1.62121001e-17 - art_sys_60: -1.09563800e-20 - art_sys_61: 8.53892749e-21 - art_sys_62: 4.45650547e-09 - art_sys_63: -7.68779791e-20 - art_sys_64: -1.81257945e-19 - art_sys_65: 5.70943896e-21 - art_sys_66: -1.09928342e-20 - art_sys_67: 8.13120038e-22 - art_sys_68: -7.42360124e-23 - art_sys_69: 4.07179608e-22 - art_sys_70: 1.55951635e-22 - art_sys_71: 1.35098272e-22 - art_sys_72: -4.12808783e-24 - art_sys_73: 3.44253857e-24 - art_sys_74: 6.31456395e-20 - art_sys_75: -2.59898674e-24 - art_sys_76: 9.12350694e-22 - art_sys_77: -3.99573201e-21 - art_sys_78: 8.10050558e-22 - art_sys_79: 5.36840143e-25 - art_sys_80: -1.54353405e-21 - art_sys_81: 7.01338370e-19 - art_sys_82: -6.78021601e-17 - art_sys_83: -4.59789561e-22 - art_sys_84: -2.28433576e-22 - art_sys_85: 1.88183837e-22 - art_sys_86: 3.92259701e-23 - art_sys_87: -9.82663372e-20 - art_sys_88: -4.78539652e-21 - art_sys_89: -4.30007795e-24 - art_sys_90: -5.51200211e-23 - art_sys_91: -9.87792917e-20 - art_sys_92: 1.17038971e-24 - art_sys_93: -1.10777412e-24 - art_sys_94: -1.92088505e-24 - art_sys_95: -6.35297675e-19 - art_sys_96: -2.00579988e-16 - art_sys_97: -1.30349823e-10 - art_sys_98: -1.32890076e-18 - art_sys_99: -3.36237851e-18 - art_sys_100: 3.46597211e-17 - art_sys_101: 7.88157503e-17 - art_sys_102: -6.63623686e-18 - art_sys_103: 1.67799397e-11 - art_sys_104: -1.57700652e-18 - art_sys_105: 1.03477836e-24 - art_sys_106: 2.13067943e-18 - art_sys_107: -5.03335325e-21 - art_sys_108: 1.48937262e-26 - art_sys_109: 1.15550140e-27 - art_sys_110: 2.04624996e-19 - art_sys_111: -1.09563915e-17 - art_sys_112: -9.20501982e-20 - art_sys_113: -3.26540230e-13 - art_sys_114: 4.23914633e-29 - art_sys_115: -2.08442197e-19 - art_sys_116: -1.10096359e-24 - art_sys_117: 1.06198324e-26 - art_sys_118: 1.29973441e-19 - art_sys_119: 2.60225580e-24 - art_sys_120: 1.02607506e-21 - art_sys_121: -9.93133418e-28 - art_sys_122: 1.96791223e-20 - art_sys_123: 6.53732113e-25 - art_sys_124: 5.64319345e-20 - art_sys_125: 2.40236389e-28 - art_sys_126: 1.69172433e-24 - art_sys_127: 1.19835047e-25 - art_sys_128: -2.59548593e-20 - art_sys_129: -9.88568978e-28 - art_sys_130: -2.34019065e-26 - art_sys_131: -5.77157693e-28 - art_sys_132: -1.01898566e-20 - art_sys_133: 3.17283204e-26 - art_sys_134: 3.37916291e-24 - art_sys_135: 3.81248115e-21 - art_sys_136: 2.17961495e-28 - art_sys_137: 4.14763818e-28 - art_sys_138: 1.10836828e-21 - art_sys_139: 2.74451492e-26 - art_sys_140: -2.99047722e-29 - art_sys_141: -6.85052734e-27 - art_sys_142: 4.01316593e-22 - art_sys_143: 9.74732561e-27 - art_sys_144: -2.04806775e-28 - art_sys_145: 7.20861212e-23 - art_sys_146: -5.34889181e-27 - art_sys_147: 6.52025906e-29 - art_sys_148: -6.54418540e-31 - art_sys_149: -7.03294530e-24 - art_sys_150: 2.41402542e-25 - art_sys_151: -2.27468288e-25 - art_sys_152: -3.11759834e-28 - art_sys_153: -3.28021384e-25 - art_sys_154: 5.52000676e-16 - art_sys_155: -3.69920703e-27 - art_sys_156: 0.0 - art_sys_157: -6.34333764e-24 - art_sys_158: -0.0 - art_sys_159: 1.56061034e-24 - art_sys_160: 1.88153068e-25 - art_sys_161: 3.86853889e-26 - art_sys_162: 3.86853889e-26 - art_sys_163: -5.46399014e-26 - art_sys_164: -5.46399014e-26 - art_sys_165: 4.77655936e-40 - art_sys_166: -1.47488042e-40 - art_sys_167: -0.0 - art_sys_168: -9.32507050e-34 - art_sys_169: 2.09003634e-33 - art_sys_170: -1.86632979e-33 - art_sys_171: -6.74810089e-33 - art_sys_172: -7.26701607e-33 - art_sys_173: -1.01557834e-33 - art_sys_174: -4.58972005e-34 - art_sys_175: -9.92359828e-35 - art_sys_176: 3.20949146e-36 - art_sys_177: 4.16045337e-38 - art_sys_178: 2.55311695e-38 - art_sys_179: 3.08082834e-39 - art_sys_180: 3.16548366e-38 - art_sys_181: 1.46247203e-37 - art_sys_182: -3.90053654e-36 - art_sys_183: -1.72168059e-37 - art_sys_184: 4.11311215e-40 - art_sys_185: 6.45617472e-43 + art_sys_29: 9.27299776e-17 + art_sys_30: 4.51781159e-17 + art_sys_31: -7.50616215e-18 + art_sys_32: 2.75604229e-18 + art_sys_33: 4.90290731e-19 + art_sys_34: 1.41581563e-19 + art_sys_35: -6.07997701e-19 + art_sys_36: -2.82360642e-18 + art_sys_37: -7.66249287e-16 + art_sys_38: -4.52444520e-19 + art_sys_39: -1.82933433e-05 + art_sys_40: -1.77646991e-16 + art_sys_41: 3.55628965e-16 + art_sys_42: -5.63850329e-18 + art_sys_43: -8.09413974e-16 + art_sys_44: 1.62298172e-18 + art_sys_45: 3.09343450e-06 + art_sys_46: 1.16580856e-16 + art_sys_47: -1.13332796e-19 + art_sys_48: 1.04834239e-16 + art_sys_49: -3.16676024e-16 + art_sys_50: -4.02811223e-19 + art_sys_51: 1.54313189e-18 + art_sys_52: -5.19973470e-17 + art_sys_53: -1.38464857e-07 + art_sys_54: -4.49597759e-19 + art_sys_55: -7.09988537e-17 + art_sys_56: 2.43425317e-08 + art_sys_57: 8.76791704e-20 + art_sys_58: 4.45861943e-20 + art_sys_59: -1.32656321e-20 + art_sys_60: -1.92569964e-18 + art_sys_61: -5.27598534e-21 + art_sys_62: -1.08103690e-21 + art_sys_63: 5.78647651e-22 + art_sys_64: -4.41244276e-22 + art_sys_65: -2.50748986e-22 + art_sys_66: 5.86655946e-18 + art_sys_67: -1.63875342e-22 + art_sys_68: -4.68264397e-23 + art_sys_69: -3.54849682e-18 + art_sys_70: -1.82929127e-17 + art_sys_71: -1.02242528e-16 + art_sys_72: 4.45650480e-09 + art_sys_73: -6.67708594e-21 + art_sys_74: 6.19174305e-18 + art_sys_75: -1.74560595e-24 + art_sys_76: 1.70344082e-21 + art_sys_77: 9.03041959e-21 + art_sys_78: 2.85234193e-21 + art_sys_79: 1.35474099e-23 + art_sys_80: -3.76357010e-17 + art_sys_81: -1.22416839e-22 + art_sys_82: -7.69758020e-23 + art_sys_83: 3.64975912e-22 + art_sys_84: 2.21985080e-18 + art_sys_85: -5.67984292e-23 + art_sys_86: -1.86653950e-22 + art_sys_87: -3.24358474e-24 + art_sys_88: -1.74856754e-24 + art_sys_89: -3.90874258e-25 + art_sys_90: -2.12799713e-16 + art_sys_91: -3.65123220e-16 + art_sys_92: 7.98953997e-19 + art_sys_93: 1.30349434e-10 + art_sys_94: 4.64897717e-18 + art_sys_95: -1.87714223e-18 + art_sys_96: 4.14928657e-26 + art_sys_97: 4.00144557e-20 + art_sys_98: -1.31929973e-18 + art_sys_99: -1.67800575e-11 + art_sys_100: 4.19326795e-22 + art_sys_101: 3.84896236e-19 + art_sys_102: 4.44745520e-26 + art_sys_103: -5.10664430e-23 + art_sys_104: -9.76299084e-19 + art_sys_105: 2.73910574e-26 + art_sys_106: -1.43412042e-19 + art_sys_107: 3.26520057e-13 + art_sys_108: 3.22092708e-24 + art_sys_109: 6.81040327e-23 + art_sys_110: 2.94859196e-27 + art_sys_111: -2.42694443e-19 + art_sys_112: 2.13498427e-24 + art_sys_113: 9.64173173e-28 + art_sys_114: 1.85975726e-19 + art_sys_115: 8.73998709e-24 + art_sys_116: -1.75318197e-23 + art_sys_117: -1.64291701e-27 + art_sys_118: 1.08804874e-19 + art_sys_119: 1.22188448e-24 + art_sys_120: -5.84667468e-20 + art_sys_121: 8.17585908e-25 + art_sys_122: -2.60980330e-20 + art_sys_123: -3.65120676e-26 + art_sys_124: 1.05032814e-20 + art_sys_125: -3.86784566e-21 + art_sys_126: 2.38457276e-24 + art_sys_127: -1.11076169e-21 + art_sys_128: 2.55854800e-26 + art_sys_129: -4.00845390e-27 + art_sys_130: 2.37879399e-26 + art_sys_131: 6.46777074e-27 + art_sys_132: -3.92564903e-22 + art_sys_133: 7.50363150e-26 + art_sys_134: -1.87994744e-25 + art_sys_135: -7.69279440e-23 + art_sys_136: -1.70613806e-25 + art_sys_137: 1.13432756e-23 + art_sys_138: 1.12896579e-25 + art_sys_139: 6.21691587e-25 + art_sys_140: 5.67215843e-16 + art_sys_141: 2.82279217e-24 + art_sys_142: -0.0 + art_sys_143: -4.56367189e-23 + art_sys_144: -2.07446412e-23 + art_sys_145: -8.13109905e-24 + art_sys_146: 3.46223017e-28 + art_sys_147: -8.26635505e-28 + art_sys_148: 2.26217054e-27 + art_sys_149: 4.91348739e-27 + art_sys_150: -1.79391772e-28 + art_sys_151: 3.82021285e-28 + art_sys_152: -7.11838697e-29 + art_sys_153: -1.85038776e-29 + art_sys_154: 1.79840787e-28 + art_sys_155: -7.25254094e-28 + art_sys_156: -2.72450966e-27 + art_sys_157: -1.15044917e-25 + art_sys_158: 0.0 + art_sys_159: -5.63313123e-25 + art_sys_160: -5.63313123e-25 + art_sys_161: -3.58788774e-26 + art_sys_162: 1.18607395e-38 + art_sys_163: 0.0 + art_sys_164: 6.69805278e-39 + art_sys_165: -1.21647943e-33 + art_sys_166: 6.71046988e-34 + art_sys_167: -4.95409862e-34 + art_sys_168: -3.93115786e-34 + art_sys_169: 2.09426853e-33 + art_sys_170: -6.99711957e-34 + art_sys_171: -4.35933799e-32 + art_sys_172: -1.77504637e-31 + art_sys_173: 2.06017363e-32 + art_sys_174: -4.79122787e-39 + art_sys_175: -2.03373898e-33 + art_sys_176: 2.17870034e-33 + art_sys_177: -7.06383656e-34 + art_sys_178: -7.83545812e-35 + art_sys_179: -6.09284959e-36 + art_sys_180: 6.24809198e-37 + art_sys_181: 4.45692368e-36 + art_sys_182: 3.57968051e-37 + art_sys_183: -1.52230028e-38 + art_sys_184: 9.34694034e-41 + art_sys_185: 4.50992112e-40 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -66880,189 +66880,189 @@ bins: uncorrelated_uncertainty: 9.57669 - art_sys_1: 8.13604987e-01 art_sys_2: -1.94031515e+00 - art_sys_3: 1.06991173e-14 - art_sys_4: -6.56314005e-14 - art_sys_5: 1.81496837e-14 + art_sys_3: -3.82178589e-15 + art_sys_4: -2.02021984e-13 + art_sys_5: -1.21165718e-14 art_sys_6: 1.30413505e+00 - art_sys_7: -2.11918380e-14 - art_sys_8: -3.13182422e-14 - art_sys_9: 4.38626638e-15 + art_sys_7: 1.03754610e-14 + art_sys_8: -8.60968150e-15 + art_sys_9: 4.39153972e-16 art_sys_10: 1.96022707e+00 - art_sys_11: 1.96422511e-14 - art_sys_12: 7.90657399e-15 - art_sys_13: -3.11409182e+00 - art_sys_14: 1.27869597e-15 - art_sys_15: -8.75224085e-14 - art_sys_16: -2.76240309e-14 + art_sys_11: 2.80327363e-14 + art_sys_12: 1.66287387e-14 + art_sys_13: 3.11409182e+00 + art_sys_14: -3.19422706e-16 + art_sys_15: 8.70999381e-14 + art_sys_16: 2.72782452e-14 art_sys_17: 6.70494399e-01 - art_sys_18: -6.27921581e-15 - art_sys_19: 1.47612414e-14 + art_sys_18: -6.42552338e-15 + art_sys_19: -1.44221274e-14 art_sys_20: -2.77156420e-01 - art_sys_21: 2.49693606e-15 + art_sys_21: 2.55212893e-15 art_sys_22: 4.53336711e-02 - art_sys_23: 8.68683345e-14 - art_sys_24: -6.45817280e-16 - art_sys_25: -2.02049799e-15 - art_sys_26: -8.99138497e-16 - art_sys_27: -2.95237211e-16 - art_sys_28: 4.44004161e-04 - art_sys_29: 1.39757633e-17 - art_sys_30: 4.44876127e-16 - art_sys_31: -1.00159558e-04 - art_sys_32: 3.90118804e-17 - art_sys_33: 7.54077293e-16 - art_sys_34: -4.89578124e-17 - art_sys_35: -1.58459678e-05 - art_sys_36: 1.87074468e-17 - art_sys_37: 1.16420947e-18 - art_sys_38: 1.94642811e-18 - art_sys_39: 1.74932097e-19 - art_sys_40: -1.04577762e-19 - art_sys_41: 4.63621407e-19 - art_sys_42: 1.78378064e-19 - art_sys_43: -1.63852262e-18 - art_sys_44: 8.83566752e-18 - art_sys_45: -2.56819233e-18 - art_sys_46: 3.62916245e-19 - art_sys_47: 1.11242964e-15 - art_sys_48: 1.56450482e-16 - art_sys_49: 5.43307367e-15 - art_sys_50: 3.83917445e-20 - art_sys_51: 8.34071231e-20 - art_sys_52: -8.02521795e-07 - art_sys_53: 2.42509755e-15 - art_sys_54: -6.09827732e-17 - art_sys_55: -1.19663760e-16 - art_sys_56: 1.31948486e-07 - art_sys_57: 2.46695624e-19 - art_sys_58: 3.69702064e-21 - art_sys_59: 4.00883413e-17 - art_sys_60: -1.60865321e-20 - art_sys_61: -6.37880747e-20 - art_sys_62: -2.45072315e-08 - art_sys_63: 5.86644235e-19 - art_sys_64: 1.06889608e-19 - art_sys_65: -4.59547399e-21 - art_sys_66: 1.55637324e-20 - art_sys_67: 2.86656562e-22 - art_sys_68: 5.56717949e-22 - art_sys_69: -2.37267883e-21 - art_sys_70: -8.89235233e-22 - art_sys_71: -7.65285789e-22 - art_sys_72: 2.36363422e-23 - art_sys_73: -2.03120804e-23 - art_sys_74: -3.18521115e-19 - art_sys_75: 1.59013608e-23 - art_sys_76: -5.02907717e-21 - art_sys_77: 2.24430605e-20 - art_sys_78: -5.03854517e-21 - art_sys_79: -1.16863179e-23 - art_sys_80: 8.69299920e-21 - art_sys_81: -3.96402115e-18 - art_sys_82: 3.83382232e-16 - art_sys_83: 2.53050108e-21 - art_sys_84: 1.27749302e-21 - art_sys_85: -1.07138606e-21 - art_sys_86: -2.24095980e-22 - art_sys_87: 5.44702450e-19 - art_sys_88: 3.41607364e-20 - art_sys_89: 2.29151233e-23 - art_sys_90: 2.69237323e-22 - art_sys_91: 9.14270517e-18 - art_sys_92: -6.64006267e-24 - art_sys_93: 6.28638935e-24 - art_sys_94: 1.29117669e-23 - art_sys_95: 3.58708659e-18 - art_sys_96: 1.10660726e-15 - art_sys_97: 7.36749063e-10 - art_sys_98: 7.36364709e-18 - art_sys_99: 1.88175247e-17 - art_sys_100: -1.92074242e-16 - art_sys_101: -4.38349324e-16 - art_sys_102: 4.65458947e-17 - art_sys_103: -9.29888770e-11 - art_sys_104: 1.19003783e-17 - art_sys_105: -5.72749100e-24 - art_sys_106: -1.48122309e-17 - art_sys_107: 3.52492093e-20 - art_sys_108: 1.18747760e-26 - art_sys_109: -6.69093528e-28 - art_sys_110: -1.12522454e-18 - art_sys_111: 7.83871270e-17 - art_sys_112: 5.06423557e-19 - art_sys_113: 2.29031087e-12 - art_sys_114: -2.44687338e-28 - art_sys_115: 4.29851833e-19 - art_sys_116: 9.46115318e-24 - art_sys_117: -5.93856613e-27 - art_sys_118: -2.29041220e-19 - art_sys_119: 3.14691125e-24 - art_sys_120: -5.66199237e-21 - art_sys_121: -3.29061042e-27 - art_sys_122: -4.04488499e-19 - art_sys_123: -1.23278354e-24 - art_sys_124: -1.64345755e-19 - art_sys_125: 2.30592060e-28 - art_sys_126: 9.23127804e-25 - art_sys_127: -6.47427023e-26 - art_sys_128: 8.27275585e-20 - art_sys_129: -1.27539606e-27 - art_sys_130: 5.52271368e-26 - art_sys_131: 2.46945151e-28 - art_sys_132: 3.25917300e-20 - art_sys_133: -1.02350901e-25 - art_sys_134: 9.41978489e-25 - art_sys_135: -1.22934640e-20 - art_sys_136: -8.66944731e-29 - art_sys_137: 1.55403903e-26 - art_sys_138: -3.59170208e-21 - art_sys_139: -9.32461098e-26 - art_sys_140: 1.43272859e-29 - art_sys_141: 2.55813769e-26 - art_sys_142: -1.28337122e-21 - art_sys_143: -2.62698780e-26 - art_sys_144: 8.32591342e-28 - art_sys_145: -2.24952133e-22 - art_sys_146: 2.40352314e-26 - art_sys_147: -1.80368810e-28 - art_sys_148: -7.97779040e-31 - art_sys_149: 2.08283516e-23 - art_sys_150: -8.19907837e-25 - art_sys_151: 1.29245098e-24 - art_sys_152: 1.24249367e-27 - art_sys_153: 1.88589935e-24 - art_sys_154: -3.03533384e-15 - art_sys_155: 2.01619348e-26 - art_sys_156: -0.0 - art_sys_157: 3.46540895e-23 - art_sys_158: 0.0 - art_sys_159: -8.53667267e-24 - art_sys_160: -1.03814202e-24 - art_sys_161: -2.15791911e-25 - art_sys_162: -2.15791911e-25 - art_sys_163: 2.96197365e-25 - art_sys_164: 2.96197365e-25 - art_sys_165: -2.58021578e-39 - art_sys_166: 7.95747481e-40 - art_sys_167: 0.0 - art_sys_168: -1.06542858e-33 - art_sys_169: 1.52069555e-33 - art_sys_170: 2.45754929e-33 - art_sys_171: 2.15704674e-32 - art_sys_172: 3.55289984e-33 - art_sys_173: 2.82154834e-34 - art_sys_174: -1.59869118e-35 - art_sys_175: -9.86755562e-35 - art_sys_176: 1.52438645e-35 - art_sys_177: -1.47853764e-38 - art_sys_178: 4.59970317e-38 - art_sys_179: -1.69039796e-38 - art_sys_180: -1.72957087e-37 - art_sys_181: -6.55258789e-37 - art_sys_182: 4.38701864e-38 - art_sys_183: 8.14330908e-38 - art_sys_184: -4.70311782e-40 - art_sys_185: -9.62393369e-43 + art_sys_23: 8.69162020e-14 + art_sys_24: -6.48139251e-16 + art_sys_25: 2.02149598e-15 + art_sys_26: -9.00316254e-16 + art_sys_27: 2.95458976e-16 + art_sys_28: 4.44004160e-04 + art_sys_29: 1.07093457e-16 + art_sys_30: -1.39842975e-16 + art_sys_31: 1.92876162e-17 + art_sys_32: -1.51726629e-17 + art_sys_33: -3.54466429e-18 + art_sys_34: -9.41426198e-20 + art_sys_35: -1.07468020e-18 + art_sys_36: 1.32499081e-17 + art_sys_37: 3.82566010e-15 + art_sys_38: 2.81903641e-18 + art_sys_39: 1.00159558e-04 + art_sys_40: 8.92262893e-16 + art_sys_41: -7.53027946e-16 + art_sys_42: 7.76611583e-18 + art_sys_43: 4.14001138e-15 + art_sys_44: -2.73821453e-18 + art_sys_45: -1.58459678e-05 + art_sys_46: -6.54204118e-16 + art_sys_47: 2.92167308e-19 + art_sys_48: 5.17091322e-17 + art_sys_49: 1.73879517e-15 + art_sys_50: 3.91218350e-20 + art_sys_51: -1.70553624e-19 + art_sys_52: 1.81361230e-16 + art_sys_53: 8.02521795e-07 + art_sys_54: 2.28728883e-18 + art_sys_55: 1.94291203e-16 + art_sys_56: -1.31948497e-07 + art_sys_57: -1.13324716e-19 + art_sys_58: -1.27835977e-19 + art_sys_59: 1.05290237e-19 + art_sys_60: 4.09519540e-19 + art_sys_61: 3.08460172e-20 + art_sys_62: 6.36016907e-21 + art_sys_63: -3.32742198e-21 + art_sys_64: 2.46909725e-21 + art_sys_65: 1.34259373e-21 + art_sys_66: -3.22034088e-17 + art_sys_67: 8.96768583e-22 + art_sys_68: 2.53028927e-22 + art_sys_69: 2.01734892e-17 + art_sys_70: 4.90036005e-17 + art_sys_71: 5.61998966e-16 + art_sys_72: -2.45072278e-08 + art_sys_73: 8.97858887e-20 + art_sys_74: -3.53474196e-17 + art_sys_75: -7.52562922e-24 + art_sys_76: -8.83688973e-21 + art_sys_77: -5.11517224e-20 + art_sys_78: -1.61352735e-20 + art_sys_79: -6.01934470e-24 + art_sys_80: 2.13039360e-16 + art_sys_81: 7.11456011e-22 + art_sys_82: 4.35594943e-22 + art_sys_83: -2.05787219e-21 + art_sys_84: -1.25342718e-17 + art_sys_85: 3.15339010e-22 + art_sys_86: 1.05750888e-21 + art_sys_87: 1.80750456e-23 + art_sys_88: 9.09811339e-24 + art_sys_89: 2.16928994e-24 + art_sys_90: 1.19396271e-15 + art_sys_91: 2.07516382e-15 + art_sys_92: -4.42425009e-18 + art_sys_93: -7.36746880e-10 + art_sys_94: -3.26311865e-17 + art_sys_95: 1.00422521e-17 + art_sys_96: -1.75665486e-25 + art_sys_97: -2.20557063e-19 + art_sys_98: 6.40608172e-18 + art_sys_99: 9.29895390e-11 + art_sys_100: -7.05932086e-22 + art_sys_101: 9.95686339e-19 + art_sys_102: 2.07042851e-26 + art_sys_103: -1.92585006e-23 + art_sys_104: 6.31113478e-18 + art_sys_105: 8.48402247e-28 + art_sys_106: -3.12344338e-19 + art_sys_107: -2.29015444e-12 + art_sys_108: 2.88817275e-24 + art_sys_109: 5.89934920e-24 + art_sys_110: -9.30029660e-28 + art_sys_111: 6.29148391e-19 + art_sys_112: -3.53373082e-25 + art_sys_113: -1.68109522e-27 + art_sys_114: -5.59137662e-19 + art_sys_115: 1.77975458e-24 + art_sys_116: 4.09584276e-23 + art_sys_117: -1.31848608e-28 + art_sys_118: -3.51078620e-19 + art_sys_119: -2.72792915e-24 + art_sys_120: 1.87680480e-19 + art_sys_121: -2.30126334e-24 + art_sys_122: 8.27689102e-20 + art_sys_123: 6.93998001e-26 + art_sys_124: -3.31381424e-20 + art_sys_125: 1.23486265e-20 + art_sys_126: -1.39658870e-24 + art_sys_127: 3.56694302e-21 + art_sys_128: -4.43814418e-26 + art_sys_129: 9.56862737e-27 + art_sys_130: -8.63165253e-26 + art_sys_131: -1.24149425e-26 + art_sys_132: 1.23935085e-21 + art_sys_133: -1.53128000e-25 + art_sys_134: 6.15968485e-25 + art_sys_135: 2.56661263e-22 + art_sys_136: 6.38307597e-25 + art_sys_137: -4.37047140e-23 + art_sys_138: -5.36346337e-25 + art_sys_139: -3.13205426e-24 + art_sys_140: -3.11904018e-15 + art_sys_141: -1.56413650e-23 + art_sys_142: 0.0 + art_sys_143: 2.50988349e-22 + art_sys_144: 1.14123705e-22 + art_sys_145: 4.47595165e-23 + art_sys_146: -3.93050022e-28 + art_sys_147: 6.51491073e-28 + art_sys_148: -3.27534703e-28 + art_sys_149: -2.62542640e-27 + art_sys_150: 1.71882313e-29 + art_sys_151: -1.09723376e-27 + art_sys_152: 1.67422155e-28 + art_sys_153: 5.97926978e-29 + art_sys_154: -9.30062749e-28 + art_sys_155: 4.09376186e-27 + art_sys_156: 1.53176115e-26 + art_sys_157: 6.32628151e-25 + art_sys_158: -0.0 + art_sys_159: 3.12558196e-24 + art_sys_160: 3.12558196e-24 + art_sys_161: 1.96313759e-25 + art_sys_162: -6.48322391e-38 + art_sys_163: -0.0 + art_sys_164: -3.65886585e-38 + art_sys_165: -1.70350504e-33 + art_sys_166: -2.88840783e-34 + art_sys_167: 2.92141451e-34 + art_sys_168: -6.86645976e-34 + art_sys_169: 2.62474713e-33 + art_sys_170: -2.34377595e-33 + art_sys_171: 1.33368786e-32 + art_sys_172: -3.28242179e-32 + art_sys_173: -5.11631983e-33 + art_sys_174: 2.64341937e-38 + art_sys_175: 7.05222416e-34 + art_sys_176: -3.50525362e-34 + art_sys_177: 2.50340831e-34 + art_sys_178: 2.76020201e-35 + art_sys_179: 3.16835009e-36 + art_sys_180: -7.15751932e-37 + art_sys_181: 2.25208893e-36 + art_sys_182: -3.23687148e-36 + art_sys_183: -2.04287802e-38 + art_sys_184: 5.97399941e-41 + art_sys_185: -2.46959987e-39 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -67171,189 +67171,189 @@ bins: uncorrelated_uncertainty: 3.70346 - art_sys_1: -2.77738221e-01 art_sys_2: -6.15880279e-01 - art_sys_3: 2.63382655e-15 - art_sys_4: 9.85669451e-14 - art_sys_5: 1.59223480e-14 + art_sys_3: 9.75229312e-15 + art_sys_4: 8.09311746e-14 + art_sys_5: 1.75532377e-14 art_sys_6: -1.39595437e+00 - art_sys_7: 5.18371340e-14 - art_sys_8: 2.65307090e-14 - art_sys_9: 7.67992206e-15 + art_sys_7: -1.71466442e-14 + art_sys_8: -7.69071750e-15 + art_sys_9: 1.13507415e-14 art_sys_10: -3.48361807e-01 - art_sys_11: -1.28184052e-14 - art_sys_12: -4.81451799e-15 - art_sys_13: -1.54251751e+00 - art_sys_14: 1.37446289e-15 - art_sys_15: -3.61917211e-14 - art_sys_16: -1.18356863e-14 + art_sys_11: -6.38019716e-14 + art_sys_12: -2.66913610e-15 + art_sys_13: 1.54251751e+00 + art_sys_14: -3.47010662e-15 + art_sys_15: 3.71348237e-14 + art_sys_16: 1.23818277e-14 art_sys_17: -1.53012526e+00 - art_sys_18: -2.67261103e-14 - art_sys_19: 6.42533240e-14 + art_sys_18: -2.64651310e-14 + art_sys_19: -6.50799286e-14 art_sys_20: 4.51532656e-01 - art_sys_21: -6.24395468e-15 + art_sys_21: -6.35561545e-15 art_sys_22: -1.13162122e-01 - art_sys_23: -1.53085186e-13 - art_sys_24: -1.41575710e-15 - art_sys_25: 3.55699519e-15 - art_sys_26: 1.56990087e-15 - art_sys_27: 4.07929939e-16 + art_sys_23: -1.53244651e-13 + art_sys_24: -1.41079026e-15 + art_sys_25: -3.56012125e-15 + art_sys_26: 1.57056332e-15 + art_sys_27: -4.08889490e-16 art_sys_28: -1.14309874e-03 - art_sys_29: -1.52098905e-17 - art_sys_30: -9.23372582e-16 - art_sys_31: 3.09971643e-04 - art_sys_32: -5.46249653e-17 - art_sys_33: -1.16433174e-15 - art_sys_34: 1.33794578e-16 - art_sys_35: 5.46495932e-05 - art_sys_36: -5.52852870e-17 - art_sys_37: 8.19576690e-18 - art_sys_38: -1.64888587e-18 - art_sys_39: -5.22006981e-19 - art_sys_40: 6.40728871e-20 - art_sys_41: -3.84590286e-19 - art_sys_42: -2.10582631e-19 - art_sys_43: 7.32333983e-19 - art_sys_44: -3.91173485e-18 - art_sys_45: 9.43414146e-19 - art_sys_46: -9.40191621e-20 - art_sys_47: -3.67141767e-15 - art_sys_48: -1.11799735e-15 - art_sys_49: -2.04912831e-14 - art_sys_50: -1.88307092e-20 - art_sys_51: 1.07871932e-19 - art_sys_52: 2.64207392e-06 - art_sys_53: -8.64800402e-15 - art_sys_54: 2.23843497e-16 - art_sys_55: 1.49144932e-17 - art_sys_56: -4.84518813e-07 - art_sys_57: -2.05602999e-19 - art_sys_58: 6.50746527e-22 - art_sys_59: -5.95607057e-17 - art_sys_60: 4.26042569e-19 - art_sys_61: 2.89189483e-19 - art_sys_62: 8.91135556e-08 - art_sys_63: -2.31680181e-18 - art_sys_64: -7.62083349e-20 - art_sys_65: 1.49394202e-21 - art_sys_66: -3.36311030e-20 - art_sys_67: -6.39310426e-21 - art_sys_68: -1.95068451e-21 - art_sys_69: 8.80412535e-21 - art_sys_70: 3.28621887e-21 - art_sys_71: 2.83851823e-21 - art_sys_72: -8.74659784e-23 - art_sys_73: 7.51762581e-23 - art_sys_74: 1.17586379e-18 - art_sys_75: -5.89233362e-23 - art_sys_76: 1.94932133e-20 - art_sys_77: -8.32856791e-20 - art_sys_78: 2.04099560e-20 - art_sys_79: 3.97852072e-23 - art_sys_80: -3.22644080e-20 - art_sys_81: 1.47306832e-17 - art_sys_82: -1.42457737e-15 - art_sys_83: -9.08178339e-21 - art_sys_84: -4.73836328e-21 - art_sys_85: 3.97533476e-21 - art_sys_86: 8.37490278e-22 - art_sys_87: -2.00640036e-18 - art_sys_88: -1.10360739e-19 - art_sys_89: -8.40321303e-23 - art_sys_90: -1.16487523e-21 - art_sys_91: -3.07769748e-17 - art_sys_92: 2.46185139e-23 - art_sys_93: -2.31019556e-23 - art_sys_94: -4.41876035e-23 - art_sys_95: -1.33325288e-17 - art_sys_96: -4.08716808e-15 - art_sys_97: -2.73783067e-09 - art_sys_98: -2.71271797e-17 - art_sys_99: -6.53892568e-17 - art_sys_100: 7.07579058e-16 - art_sys_101: 1.61509994e-15 - art_sys_102: -1.53601202e-16 - art_sys_103: 3.42560162e-10 - art_sys_104: -4.12836252e-17 - art_sys_105: 2.17201998e-23 - art_sys_106: 4.51210698e-17 - art_sys_107: -1.16274078e-19 - art_sys_108: -7.95548528e-26 - art_sys_109: 2.58202989e-27 - art_sys_110: 4.26517141e-18 - art_sys_111: -2.59220381e-16 - art_sys_112: -1.92109549e-18 - art_sys_113: -7.55804396e-12 - art_sys_114: 1.09872497e-27 - art_sys_115: -3.60780109e-19 - art_sys_116: -3.89692334e-23 - art_sys_117: 4.12778543e-27 - art_sys_118: -4.01289601e-19 - art_sys_119: -8.67338199e-24 - art_sys_120: 2.14701807e-20 - art_sys_121: 7.78002172e-27 - art_sys_122: 2.34277339e-18 - art_sys_123: 2.61294762e-25 - art_sys_124: 1.89392053e-19 - art_sys_125: -3.86543187e-28 - art_sys_126: 1.21060251e-24 - art_sys_127: -5.44824335e-26 - art_sys_128: -1.22763794e-19 - art_sys_129: -1.29565893e-27 - art_sys_130: -5.28167023e-26 - art_sys_131: -2.91479456e-28 - art_sys_132: -4.71780686e-20 - art_sys_133: 1.42713949e-25 - art_sys_134: 1.56490105e-24 - art_sys_135: 1.81106406e-20 - art_sys_136: 1.31982285e-28 - art_sys_137: -5.00750674e-26 - art_sys_138: 5.36699437e-21 - art_sys_139: 1.48202483e-25 - art_sys_140: -3.51907949e-29 - art_sys_141: -3.61454055e-26 - art_sys_142: 1.89480195e-21 - art_sys_143: 3.79065878e-26 - art_sys_144: -2.12963099e-27 - art_sys_145: 3.17475616e-22 - art_sys_146: -5.78263463e-26 - art_sys_147: 2.72448457e-28 - art_sys_148: 6.33620872e-30 - art_sys_149: -2.23434848e-23 - art_sys_150: 1.46849822e-24 - art_sys_151: -4.95663376e-24 - art_sys_152: -3.16126342e-27 - art_sys_153: -7.34769982e-24 - art_sys_154: 1.15054493e-14 - art_sys_155: -7.54640932e-26 - art_sys_156: 0.0 - art_sys_157: -1.30736582e-22 - art_sys_158: -0.0 - art_sys_159: 3.22882749e-23 - art_sys_160: 3.95055509e-24 - art_sys_161: 8.29968594e-25 - art_sys_162: 8.29968594e-25 - art_sys_163: -1.11267162e-24 - art_sys_164: -1.11267162e-24 - art_sys_165: 9.66315871e-39 - art_sys_166: -2.97715414e-39 - art_sys_167: -0.0 - art_sys_168: 6.87897269e-34 - art_sys_169: -2.17144465e-33 - art_sys_170: 2.01802392e-33 - art_sys_171: 2.49625881e-32 - art_sys_172: 2.35200735e-33 - art_sys_173: -1.36840210e-34 - art_sys_174: -7.68555935e-36 - art_sys_175: 1.22843700e-34 - art_sys_176: -1.40237447e-35 - art_sys_177: -1.45537818e-37 - art_sys_178: 2.55595052e-38 - art_sys_179: 6.37488750e-38 - art_sys_180: 6.53644508e-37 - art_sys_181: 5.71628196e-37 - art_sys_182: -1.98456291e-36 - art_sys_183: -7.42521631e-38 - art_sys_184: 3.69246027e-40 - art_sys_185: 1.65864961e-42 + art_sys_29: 1.12940110e-16 + art_sys_30: 4.58520296e-16 + art_sys_31: -7.40580131e-17 + art_sys_32: 4.58225540e-17 + art_sys_33: 1.11184904e-17 + art_sys_34: -2.05232074e-19 + art_sys_35: -8.07567296e-19 + art_sys_36: -2.28537275e-17 + art_sys_37: -1.13739499e-14 + art_sys_38: 5.65074011e-18 + art_sys_39: -3.09971643e-04 + art_sys_40: -2.69362439e-15 + art_sys_41: 1.15437898e-15 + art_sys_42: 2.27929089e-18 + art_sys_43: -1.42388589e-14 + art_sys_44: -6.22577140e-19 + art_sys_45: 5.46495932e-05 + art_sys_46: 2.16910703e-15 + art_sys_47: 6.28760705e-20 + art_sys_48: -1.14221464e-15 + art_sys_49: -6.32881448e-15 + art_sys_50: 1.01727769e-19 + art_sys_51: -1.64812794e-19 + art_sys_52: -5.15411575e-16 + art_sys_53: -2.64207392e-06 + art_sys_54: -7.92314469e-18 + art_sys_55: -2.86418876e-16 + art_sys_56: 4.84518852e-07 + art_sys_57: 1.48127694e-19 + art_sys_58: 4.52958238e-19 + art_sys_59: -2.54618686e-19 + art_sys_60: 7.11273404e-20 + art_sys_61: -1.13571068e-19 + art_sys_62: -2.33405987e-20 + art_sys_63: 1.20937364e-20 + art_sys_64: -9.10316457e-21 + art_sys_65: -4.97652557e-21 + art_sys_66: 1.17091037e-16 + art_sys_67: -3.25830102e-21 + art_sys_68: -9.14698320e-22 + art_sys_69: -7.49705232e-17 + art_sys_70: -9.14070073e-17 + art_sys_71: -2.04320002e-15 + art_sys_72: 8.91135423e-08 + art_sys_73: -2.66700050e-19 + art_sys_74: 1.32105305e-16 + art_sys_75: 3.39920006e-23 + art_sys_76: 3.23818625e-20 + art_sys_77: 1.90100336e-19 + art_sys_78: 5.98809468e-20 + art_sys_79: -8.34896903e-24 + art_sys_80: -7.92141702e-16 + art_sys_81: -2.68160705e-21 + art_sys_82: -1.61286860e-21 + art_sys_83: 7.63524619e-21 + art_sys_84: 4.65602664e-17 + art_sys_85: -1.17365778e-21 + art_sys_86: -3.93449142e-21 + art_sys_87: -6.42909339e-23 + art_sys_88: -3.54590041e-23 + art_sys_89: -8.02056416e-24 + art_sys_90: -4.43964966e-15 + art_sys_91: -7.76910734e-15 + art_sys_92: 1.62933479e-17 + art_sys_93: 2.73782258e-09 + art_sys_94: 1.07660850e-16 + art_sys_95: -3.50358424e-17 + art_sys_96: 4.69270448e-25 + art_sys_97: 8.32156325e-19 + art_sys_98: -2.30225336e-17 + art_sys_99: -3.42562624e-10 + art_sys_100: 2.81139343e-21 + art_sys_101: -7.47840514e-19 + art_sys_102: -2.87482251e-26 + art_sys_103: 7.32631131e-24 + art_sys_104: -1.76764160e-17 + art_sys_105: -2.47468117e-27 + art_sys_106: 2.09132061e-18 + art_sys_107: 7.55755213e-12 + art_sys_108: 9.15491902e-25 + art_sys_109: -2.97686243e-22 + art_sys_110: -3.26742893e-27 + art_sys_111: -1.00104620e-18 + art_sys_112: 5.89337442e-25 + art_sys_113: 2.02021086e-28 + art_sys_114: 8.55924850e-19 + art_sys_115: -1.36178888e-24 + art_sys_116: -2.26935499e-23 + art_sys_117: 2.41888026e-27 + art_sys_118: 5.34041009e-19 + art_sys_119: 1.01201349e-24 + art_sys_120: -2.83210665e-19 + art_sys_121: 6.99739337e-25 + art_sys_122: -1.23769454e-19 + art_sys_123: -1.09527015e-25 + art_sys_124: 4.93249244e-20 + art_sys_125: -1.83920560e-20 + art_sys_126: -3.67592606e-24 + art_sys_127: -5.30845552e-21 + art_sys_128: 7.26644224e-26 + art_sys_129: -1.98874439e-26 + art_sys_130: 1.60389911e-25 + art_sys_131: -9.37586459e-27 + art_sys_132: -1.74578635e-21 + art_sys_133: 1.79741951e-25 + art_sys_134: -1.00927261e-24 + art_sys_135: -4.28962123e-22 + art_sys_136: -1.43581354e-24 + art_sys_137: 1.05549070e-22 + art_sys_138: 1.75934406e-24 + art_sys_139: 1.09239055e-23 + art_sys_140: 1.18226478e-14 + art_sys_141: 5.97282889e-23 + art_sys_142: -0.0 + art_sys_143: -9.52744213e-22 + art_sys_144: -4.32992101e-22 + art_sys_145: -1.69869097e-22 + art_sys_146: 3.12054109e-28 + art_sys_147: -1.30534308e-28 + art_sys_148: -2.96185566e-27 + art_sys_149: -8.31931079e-28 + art_sys_150: 2.37372376e-28 + art_sys_151: 3.66392929e-27 + art_sys_152: -5.85559619e-28 + art_sys_153: -1.15926774e-28 + art_sys_154: 3.33596414e-27 + art_sys_155: -1.58520425e-26 + art_sys_156: -5.92694846e-26 + art_sys_157: -2.39808729e-24 + art_sys_158: 0.0 + art_sys_159: -1.19092151e-23 + art_sys_160: -1.19092151e-23 + art_sys_161: -7.42313010e-25 + art_sys_162: 2.44992087e-37 + art_sys_163: 0.0 + art_sys_164: 1.38206034e-37 + art_sys_165: -1.60023654e-33 + art_sys_166: -2.34634997e-35 + art_sys_167: 3.52838985e-34 + art_sys_168: 2.61169667e-34 + art_sys_169: -9.39115868e-34 + art_sys_170: -1.02608547e-33 + art_sys_171: 2.49817959e-32 + art_sys_172: 3.83305918e-32 + art_sys_173: 4.17461024e-33 + art_sys_174: -1.00538271e-37 + art_sys_175: -7.01662245e-34 + art_sys_176: 1.27277414e-34 + art_sys_177: -2.08385955e-34 + art_sys_178: -2.68223522e-35 + art_sys_179: 7.23434835e-36 + art_sys_180: 1.63279342e-37 + art_sys_181: -1.09935939e-36 + art_sys_182: 5.36696091e-37 + art_sys_183: 7.63468462e-39 + art_sys_184: -1.72926657e-42 + art_sys_185: 9.34808626e-39 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -67462,189 +67462,189 @@ bins: uncorrelated_uncertainty: 1.50926000e+00 - art_sys_1: -5.38471507e-02 art_sys_2: 3.94903621e-02 - art_sys_3: 3.44153402e-14 - art_sys_4: 1.60796081e-14 - art_sys_5: 2.78943526e-15 + art_sys_3: -5.70247987e-14 + art_sys_4: 4.61019292e-14 + art_sys_5: -1.30425725e-14 art_sys_6: -1.09030774e-01 - art_sys_7: -1.20838118e-15 - art_sys_8: -3.12305606e-15 - art_sys_9: -7.09067458e-15 + art_sys_7: 2.25122794e-14 + art_sys_8: -1.55073677e-14 + art_sys_9: -2.86070699e-16 art_sys_10: -1.50259086e-01 - art_sys_11: -1.86987649e-14 - art_sys_12: -5.16972734e-16 - art_sys_13: 1.37386664e-01 - art_sys_14: 1.37053806e-15 - art_sys_15: 4.95659457e-15 - art_sys_16: 1.06766592e-16 + art_sys_11: 7.21599614e-14 + art_sys_12: -3.79806169e-15 + art_sys_13: -1.37386664e-01 + art_sys_14: -1.12507597e-15 + art_sys_15: -4.31779367e-15 + art_sys_16: -1.23323234e-15 art_sys_17: -1.10829645e+00 - art_sys_18: -8.21200996e-15 - art_sys_19: 1.84571288e-14 + art_sys_18: -8.49208698e-15 + art_sys_19: -1.68959371e-14 art_sys_20: -7.77156044e-01 - art_sys_21: -1.05556364e-14 + art_sys_21: -1.03134334e-14 art_sys_22: 1.97939796e-01 - art_sys_23: 2.86320091e-13 - art_sys_24: 9.56162155e-16 - art_sys_25: -4.50561877e-15 - art_sys_26: -1.79162726e-15 - art_sys_27: -4.72506090e-16 - art_sys_28: 6.83773607e-03 - art_sys_29: -2.71207428e-16 - art_sys_30: 1.53364894e-15 - art_sys_31: -1.36506946e-03 - art_sys_32: 5.93346854e-17 - art_sys_33: 1.62673448e-15 - art_sys_34: -2.14938092e-16 - art_sys_35: -2.61951660e-04 - art_sys_36: 3.18957520e-16 - art_sys_37: -3.80290209e-17 - art_sys_38: 6.85811227e-18 - art_sys_39: 2.26661401e-18 - art_sys_40: -7.02424825e-19 - art_sys_41: 2.69191360e-19 - art_sys_42: 3.17454732e-19 - art_sys_43: 2.35599660e-20 - art_sys_44: -2.61933642e-18 - art_sys_45: 7.49976761e-19 - art_sys_46: -6.72810270e-20 - art_sys_47: 1.87206499e-14 - art_sys_48: 8.89783857e-15 - art_sys_49: 9.39385223e-14 - art_sys_50: -8.27927084e-20 - art_sys_51: -3.41800447e-19 - art_sys_52: -1.34784054e-05 - art_sys_53: 4.17635926e-14 - art_sys_54: -1.07679479e-15 - art_sys_55: 8.62961776e-16 - art_sys_56: 2.26801086e-06 - art_sys_57: 1.34267901e-19 - art_sys_58: -2.03300197e-21 - art_sys_59: 6.77335942e-17 - art_sys_60: -9.39242023e-19 - art_sys_61: -1.34964336e-18 - art_sys_62: -4.34302730e-07 - art_sys_63: 1.13830497e-17 - art_sys_64: 5.50793834e-19 - art_sys_65: 1.55455821e-20 - art_sys_66: 1.71397229e-19 - art_sys_67: 2.76059331e-20 - art_sys_68: 9.51612544e-21 - art_sys_69: -4.12041008e-20 - art_sys_70: -1.55380492e-20 - art_sys_71: -1.33877623e-20 - art_sys_72: 4.11492122e-22 - art_sys_73: -3.51656976e-22 - art_sys_74: -5.52684155e-18 - art_sys_75: 2.74554194e-22 - art_sys_76: -8.70027988e-20 - art_sys_77: 3.95143939e-19 - art_sys_78: -9.39912850e-20 - art_sys_79: -1.71391063e-22 - art_sys_80: 1.52729533e-19 - art_sys_81: -6.94017623e-17 - art_sys_82: 6.71160586e-15 - art_sys_83: 4.25557837e-20 - art_sys_84: 2.25713018e-20 - art_sys_85: -1.84375224e-20 - art_sys_86: -3.87630390e-21 - art_sys_87: 9.73498826e-18 - art_sys_88: 5.57921343e-19 - art_sys_89: 4.22369019e-22 - art_sys_90: 5.11716442e-21 - art_sys_91: 1.59696036e-16 - art_sys_92: -1.15365928e-22 - art_sys_93: 1.09231670e-22 - art_sys_94: 2.15747587e-22 - art_sys_95: 6.28081089e-17 - art_sys_96: 1.91999564e-14 - art_sys_97: 1.28989445e-08 - art_sys_98: 1.31618577e-16 - art_sys_99: 3.13936547e-16 - art_sys_100: -3.43319380e-15 - art_sys_101: -7.84052700e-15 - art_sys_102: 7.65622990e-16 - art_sys_103: -1.66211132e-09 - art_sys_104: 2.05743345e-16 - art_sys_105: -1.02981176e-22 - art_sys_106: -2.17637163e-16 - art_sys_107: 5.79706268e-19 - art_sys_108: 3.85825398e-25 - art_sys_109: -1.29297187e-26 - art_sys_110: -2.02261291e-17 - art_sys_111: 1.29564718e-15 - art_sys_112: 9.10790796e-18 - art_sys_113: 3.76729575e-11 - art_sys_114: -6.10422564e-27 - art_sys_115: -1.48842102e-18 - art_sys_116: 1.93026656e-22 - art_sys_117: -3.57736325e-27 - art_sys_118: 4.60329302e-18 - art_sys_119: 5.92415925e-23 - art_sys_120: -1.01801209e-19 - art_sys_121: -4.05710856e-26 - art_sys_122: -1.27940137e-17 - art_sys_123: -3.62616912e-25 - art_sys_124: -2.63214674e-21 - art_sys_125: 4.25768475e-28 - art_sys_126: -1.24500962e-23 - art_sys_127: 1.01496636e-26 - art_sys_128: 1.89518225e-19 - art_sys_129: 3.06593517e-27 - art_sys_130: -2.55020255e-26 - art_sys_131: 2.03554503e-29 - art_sys_132: 6.71214445e-20 - art_sys_133: -1.57190819e-25 - art_sys_134: 2.43854898e-25 - art_sys_135: -2.75032618e-20 - art_sys_136: -2.37544650e-28 - art_sys_137: 2.28196988e-25 - art_sys_138: -8.53705093e-21 - art_sys_139: -2.82279127e-25 - art_sys_140: 9.83434116e-29 - art_sys_141: -8.30562511e-27 - art_sys_142: -2.87908842e-21 - art_sys_143: -5.86519828e-26 - art_sys_144: 8.34387045e-27 - art_sys_145: -4.03243270e-22 - art_sys_146: 2.10067910e-25 - art_sys_147: -5.29044618e-28 - art_sys_148: -3.72570401e-29 - art_sys_149: -1.08695004e-23 - art_sys_150: -3.62424933e-24 - art_sys_151: 2.37333578e-23 - art_sys_152: 1.18926010e-26 - art_sys_153: 3.53357300e-23 - art_sys_154: -5.45603088e-14 - art_sys_155: 3.56489142e-25 - art_sys_156: -0.0 - art_sys_157: 6.18387662e-22 - art_sys_158: 0.0 - art_sys_159: -1.52864262e-22 - art_sys_160: -1.87635650e-23 - art_sys_161: -3.95729895e-24 - art_sys_162: -3.95729895e-24 - art_sys_163: 5.25025852e-24 - art_sys_164: 5.25025852e-24 - art_sys_165: -4.55349810e-38 - art_sys_166: 1.40225228e-38 - art_sys_167: 0.0 - art_sys_168: -1.27726868e-33 - art_sys_169: 6.23412106e-33 - art_sys_170: -1.08638625e-32 - art_sys_171: -4.40611390e-32 - art_sys_172: -6.09317834e-33 - art_sys_173: -5.56150808e-34 - art_sys_174: 8.74338622e-34 - art_sys_175: -1.63500291e-34 - art_sys_176: 1.93683093e-35 - art_sys_177: 2.05479520e-37 - art_sys_178: -1.77417241e-38 - art_sys_179: -3.01958000e-37 - art_sys_180: -3.09331729e-36 - art_sys_181: -1.76162337e-36 - art_sys_182: 6.94647905e-36 - art_sys_183: 2.38499092e-37 - art_sys_184: -8.20257150e-40 - art_sys_185: -1.62306340e-42 + art_sys_23: 2.86654387e-13 + art_sys_24: 9.36758606e-16 + art_sys_25: 4.51892724e-15 + art_sys_26: -1.79673022e-15 + art_sys_27: 4.77792670e-16 + art_sys_28: 6.83773606e-03 + art_sys_29: 1.27349324e-15 + art_sys_30: -1.98407776e-15 + art_sys_31: 3.39405835e-16 + art_sys_32: -1.96584327e-16 + art_sys_33: -4.98214148e-17 + art_sys_34: -2.01435258e-18 + art_sys_35: 6.79013371e-19 + art_sys_36: -2.51194051e-16 + art_sys_37: 4.75332516e-14 + art_sys_38: -1.61209833e-17 + art_sys_39: 1.36506946e-03 + art_sys_40: 1.16842517e-14 + art_sys_41: -1.58552588e-15 + art_sys_42: -8.52241560e-18 + art_sys_43: 6.77585553e-14 + art_sys_44: 2.18399445e-18 + art_sys_45: -2.61951660e-04 + art_sys_46: -1.09360110e-14 + art_sys_47: -1.60912999e-19 + art_sys_48: 7.50431988e-15 + art_sys_49: 3.07560704e-14 + art_sys_50: 5.07706497e-20 + art_sys_51: -5.99661124e-19 + art_sys_52: 1.79844153e-15 + art_sys_53: 1.34784054e-05 + art_sys_54: 3.70839201e-17 + art_sys_55: 4.40784682e-16 + art_sys_56: -2.26801105e-06 + art_sys_57: -7.50917342e-19 + art_sys_58: -2.27599349e-18 + art_sys_59: 2.12953314e-18 + art_sys_60: 6.62202153e-19 + art_sys_61: 5.57935846e-19 + art_sys_62: 1.13409663e-19 + art_sys_63: -5.86381126e-20 + art_sys_64: 4.43392437e-20 + art_sys_65: 2.38514723e-20 + art_sys_66: -5.70662568e-16 + art_sys_67: 1.59020555e-20 + art_sys_68: 4.48559248e-21 + art_sys_69: 3.53869590e-16 + art_sys_70: 2.19757665e-16 + art_sys_71: 9.95760987e-15 + art_sys_72: -4.34302666e-07 + art_sys_73: 1.28034921e-18 + art_sys_74: -6.22385768e-16 + art_sys_75: -1.68533147e-22 + art_sys_76: -1.66819891e-19 + art_sys_77: -8.93954017e-19 + art_sys_78: -2.82599760e-19 + art_sys_79: -6.32567225e-24 + art_sys_80: 3.72449755e-15 + art_sys_81: 1.20775490e-20 + art_sys_82: 7.66853078e-21 + art_sys_83: -3.61342663e-20 + art_sys_84: -2.19671558e-16 + art_sys_85: 5.62356679e-21 + art_sys_86: 1.84982916e-20 + art_sys_87: 3.10398617e-22 + art_sys_88: 1.66232662e-22 + art_sys_89: 3.92427252e-23 + art_sys_90: 2.08987172e-14 + art_sys_91: 3.65961948e-14 + art_sys_92: -7.91544988e-17 + art_sys_93: -1.28989060e-08 + art_sys_94: -5.36628134e-16 + art_sys_95: 1.56022933e-16 + art_sys_96: -2.13794027e-24 + art_sys_97: -3.95165187e-18 + art_sys_98: 1.04951646e-16 + art_sys_99: 1.66212295e-09 + art_sys_100: -1.30420412e-20 + art_sys_101: 9.52783175e-18 + art_sys_102: 6.55723021e-26 + art_sys_103: -1.20900731e-23 + art_sys_104: 7.95381868e-17 + art_sys_105: -7.61976809e-26 + art_sys_106: -1.29867488e-17 + art_sys_107: -3.76704591e-11 + art_sys_108: 3.37025212e-25 + art_sys_109: 1.20613035e-21 + art_sys_110: 1.56347958e-26 + art_sys_111: 1.70421177e-18 + art_sys_112: -1.47883066e-24 + art_sys_113: -1.88736704e-27 + art_sys_114: -1.33685527e-18 + art_sys_115: 2.07718277e-24 + art_sys_116: 3.73126452e-23 + art_sys_117: 5.60489361e-28 + art_sys_118: -8.33645654e-19 + art_sys_119: -9.17172310e-25 + art_sys_120: 4.41772423e-19 + art_sys_121: -8.39991816e-25 + art_sys_122: 1.93093033e-19 + art_sys_123: 1.56919543e-25 + art_sys_124: -7.68890465e-20 + art_sys_125: 2.88899927e-20 + art_sys_126: 1.79684220e-24 + art_sys_127: 8.27566463e-21 + art_sys_128: -1.67424661e-25 + art_sys_129: 7.87469684e-26 + art_sys_130: -4.12686013e-25 + art_sys_131: 1.66702832e-25 + art_sys_132: 2.20315020e-21 + art_sys_133: -5.04315337e-25 + art_sys_134: 2.07897786e-24 + art_sys_135: 9.17985416e-22 + art_sys_136: 4.78855686e-24 + art_sys_137: -3.77134464e-22 + art_sys_138: -7.78253026e-24 + art_sys_139: -4.98564691e-23 + art_sys_140: -5.60646902e-14 + art_sys_141: -2.84148652e-22 + art_sys_142: 0.0 + art_sys_143: 4.52089920e-21 + art_sys_144: 2.05415179e-21 + art_sys_145: 8.05978268e-22 + art_sys_146: -6.34923221e-28 + art_sys_147: 2.64030789e-28 + art_sys_148: 6.54923136e-27 + art_sys_149: 1.81805079e-28 + art_sys_150: 1.18440338e-28 + art_sys_151: -1.60182003e-26 + art_sys_152: 1.65345301e-27 + art_sys_153: 4.17848913e-28 + art_sys_154: -1.54336500e-26 + art_sys_155: 7.58650541e-26 + art_sys_156: 2.83554799e-25 + art_sys_157: 1.13723347e-23 + art_sys_158: -0.0 + art_sys_159: 5.66013670e-23 + art_sys_160: 5.66013670e-23 + art_sys_161: 3.51642381e-24 + art_sys_162: -1.16023702e-36 + art_sys_163: -0.0 + art_sys_164: -6.54399910e-37 + art_sys_165: -8.38483231e-34 + art_sys_166: 1.43327204e-34 + art_sys_167: -3.10027962e-34 + art_sys_168: -1.91556153e-34 + art_sys_169: 1.86887940e-33 + art_sys_170: -2.43328768e-33 + art_sys_171: 3.38037445e-33 + art_sys_172: 4.33243792e-32 + art_sys_173: -2.80650700e-32 + art_sys_174: 4.77470586e-37 + art_sys_175: 1.73863214e-34 + art_sys_176: 6.38619565e-34 + art_sys_177: 1.86635316e-34 + art_sys_178: 5.48732958e-35 + art_sys_179: 1.65557289e-36 + art_sys_180: -8.18681946e-37 + art_sys_181: -1.16830264e-36 + art_sys_182: 1.22739305e-36 + art_sys_183: 1.11594490e-38 + art_sys_184: -8.50918190e-41 + art_sys_185: -4.43033399e-38 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -67753,189 +67753,189 @@ bins: uncorrelated_uncertainty: 6.15716000e-01 - art_sys_1: 2.26037332e-03 art_sys_2: 2.78712618e-02 - art_sys_3: 5.27532591e-16 - art_sys_4: -2.25913694e-15 - art_sys_5: 1.66180690e-14 + art_sys_3: 1.77374847e-14 + art_sys_4: -3.87221242e-14 + art_sys_5: 4.00786588e-14 art_sys_6: 4.29249682e-02 - art_sys_7: -4.21138440e-15 - art_sys_8: -5.60698441e-15 - art_sys_9: 1.48615068e-14 + art_sys_7: 3.60665751e-14 + art_sys_8: -2.40084126e-15 + art_sys_9: -3.72816680e-15 art_sys_10: 2.10163913e-03 - art_sys_11: 1.45083197e-14 - art_sys_12: 6.58921445e-18 - art_sys_13: 1.52718817e-01 - art_sys_14: 1.21343929e-15 - art_sys_15: 3.94197847e-15 - art_sys_16: 1.56700990e-15 + art_sys_11: -1.42150163e-13 + art_sys_12: 8.44079760e-15 + art_sys_13: -1.52718817e-01 + art_sys_14: -1.36714507e-15 + art_sys_15: -2.24155423e-15 + art_sys_16: -2.12604148e-15 art_sys_17: -4.72527386e-02 - art_sys_18: 3.04598032e-15 - art_sys_19: -4.37681431e-15 + art_sys_18: 2.13027854e-15 + art_sys_19: 1.82360002e-15 art_sys_20: -6.05817022e-01 - art_sys_21: -8.58883150e-16 + art_sys_21: -1.26611697e-15 art_sys_22: -3.58815494e-01 - art_sys_23: 2.05290586e-13 - art_sys_24: 2.86386773e-15 - art_sys_25: 6.08944084e-15 - art_sys_26: 2.07929022e-15 - art_sys_27: 5.90321525e-16 - art_sys_28: -7.95517144e-03 - art_sys_29: 3.25662617e-16 - art_sys_30: -1.80311493e-15 - art_sys_31: 4.43963901e-03 - art_sys_32: -4.79610545e-17 - art_sys_33: -2.46254813e-15 - art_sys_34: 2.95841080e-16 - art_sys_35: 8.03503824e-04 - art_sys_36: -2.59938133e-17 - art_sys_37: 1.53918862e-16 - art_sys_38: -2.27670702e-17 - art_sys_39: -8.76608187e-18 - art_sys_40: 2.49412207e-18 - art_sys_41: -2.06409647e-18 - art_sys_42: -1.27583524e-18 - art_sys_43: 1.07704523e-18 - art_sys_44: 1.44661766e-20 - art_sys_45: -5.56010094e-20 - art_sys_46: 1.32330510e-19 - art_sys_47: -6.72593794e-14 - art_sys_48: -3.23973407e-14 - art_sys_49: -3.61239602e-13 - art_sys_50: 1.26621345e-19 - art_sys_51: 1.06126159e-19 - art_sys_52: 4.83973826e-05 - art_sys_53: -1.58049201e-13 - art_sys_54: 4.21666033e-15 - art_sys_55: -4.40304368e-15 - art_sys_56: -8.60434145e-06 - art_sys_57: 1.18473208e-20 - art_sys_58: -5.64794323e-22 - art_sys_59: -7.04970116e-17 - art_sys_60: 3.55804559e-18 - art_sys_61: 5.50473410e-18 - art_sys_62: 1.64832857e-06 - art_sys_63: -4.27843674e-17 - art_sys_64: -2.23986552e-18 - art_sys_65: -9.28616546e-20 - art_sys_66: -7.03855706e-19 - art_sys_67: -1.04006052e-19 - art_sys_68: -3.73849234e-20 - art_sys_69: 1.70952943e-19 - art_sys_70: 6.30161462e-20 - art_sys_71: 5.45854013e-20 - art_sys_72: -1.68825554e-21 - art_sys_73: 1.45099650e-21 - art_sys_74: 2.24792471e-17 - art_sys_75: -1.12159661e-21 - art_sys_76: 3.67859646e-19 - art_sys_77: -1.59202247e-18 - art_sys_78: 3.57735045e-19 - art_sys_79: 8.40507241e-22 - art_sys_80: -6.17852717e-19 - art_sys_81: 2.82757916e-16 - art_sys_82: -2.73444647e-14 - art_sys_83: -1.78521494e-19 - art_sys_84: -9.03073366e-20 - art_sys_85: 7.50794167e-20 - art_sys_86: 1.61872180e-20 - art_sys_87: -3.80098771e-17 - art_sys_88: -2.44609605e-18 - art_sys_89: -1.55284039e-21 - art_sys_90: -2.13579682e-20 - art_sys_91: -6.53498940e-16 - art_sys_92: 4.74407776e-22 - art_sys_93: -4.52184355e-22 - art_sys_94: -9.61590296e-22 - art_sys_95: -2.55921469e-16 - art_sys_96: -7.81287593e-14 - art_sys_97: -5.25531147e-08 - art_sys_98: -5.13815712e-16 - art_sys_99: -1.22430752e-15 - art_sys_100: 1.34021124e-14 - art_sys_101: 3.06213757e-14 - art_sys_102: -3.38328725e-15 - art_sys_103: 6.48836104e-09 - art_sys_104: -8.03717031e-16 - art_sys_105: 4.14439596e-22 - art_sys_106: 9.52881420e-16 - art_sys_107: -2.56204500e-18 - art_sys_108: -1.66302241e-24 - art_sys_109: 5.94073361e-26 - art_sys_110: 8.13903569e-17 - art_sys_111: -5.73014692e-15 - art_sys_112: -3.66342053e-17 - art_sys_113: -1.66476442e-10 - art_sys_114: 2.36388109e-26 - art_sys_115: 1.09233310e-17 - art_sys_116: -7.85910956e-22 - art_sys_117: -2.15620853e-26 - art_sys_118: -2.18123627e-17 - art_sys_119: -2.31454434e-22 - art_sys_120: 4.09654626e-19 - art_sys_121: 1.75443912e-25 - art_sys_122: 5.35584333e-17 - art_sys_123: -1.31179320e-25 - art_sys_124: -1.09252896e-18 - art_sys_125: -4.92653171e-28 - art_sys_126: 5.11874431e-23 - art_sys_127: -4.43120488e-25 - art_sys_128: -2.80954305e-19 - art_sys_129: -2.77668445e-27 - art_sys_130: 5.68680881e-25 - art_sys_131: 5.05114375e-27 - art_sys_132: -7.79749811e-20 - art_sys_133: -2.84538722e-26 - art_sys_134: -1.13777944e-23 - art_sys_135: 3.91360983e-20 - art_sys_136: 1.54653840e-29 - art_sys_137: -9.83336167e-25 - art_sys_138: 1.36296050e-20 - art_sys_139: 6.40034376e-25 - art_sys_140: -2.39194465e-28 - art_sys_141: -7.11183417e-26 - art_sys_142: 4.05182906e-21 - art_sys_143: 8.45368909e-26 - art_sys_144: -3.28521480e-26 - art_sys_145: 2.53877190e-22 - art_sys_146: -7.83660119e-25 - art_sys_147: 1.19825954e-27 - art_sys_148: 1.69656955e-28 - art_sys_149: 1.87726991e-22 - art_sys_150: 1.05999828e-23 - art_sys_151: -9.61255888e-23 - art_sys_152: -4.43243653e-26 - art_sys_153: -1.43059458e-22 - art_sys_154: 2.19550492e-13 - art_sys_155: -1.43468411e-24 - art_sys_156: 0.0 - art_sys_157: -2.48586881e-21 - art_sys_158: -0.0 - art_sys_159: 6.14481933e-22 - art_sys_160: 7.55238934e-23 - art_sys_161: 1.59399056e-23 - art_sys_162: 1.59399056e-23 - art_sys_163: -2.10785376e-23 - art_sys_164: -2.10785376e-23 - art_sys_165: 1.82735935e-37 - art_sys_166: -5.62650087e-38 - art_sys_167: -0.0 - art_sys_168: -9.59010045e-36 - art_sys_169: -1.51886150e-35 - art_sys_170: 1.96015668e-33 - art_sys_171: 1.59348043e-33 - art_sys_172: -4.40471662e-34 - art_sys_173: -1.09153328e-33 - art_sys_174: -1.80672348e-36 - art_sys_175: -4.60048731e-37 - art_sys_176: -1.54405326e-37 - art_sys_177: 7.92935650e-38 - art_sys_178: 7.07732866e-39 - art_sys_179: 1.21563934e-36 - art_sys_180: 1.24324276e-35 - art_sys_181: 8.40297830e-37 - art_sys_182: -8.87278789e-41 - art_sys_183: 1.17489193e-41 - art_sys_184: -1.05706919e-41 - art_sys_185: -5.36331521e-42 + art_sys_23: 2.04860662e-13 + art_sys_24: 2.95576440e-15 + art_sys_25: -6.10837739e-15 + art_sys_26: 2.08679022e-15 + art_sys_27: -5.97689434e-16 + art_sys_28: -7.95517143e-03 + art_sys_29: -4.69147604e-15 + art_sys_30: 6.44829481e-15 + art_sys_31: -1.04972211e-15 + art_sys_32: 6.39525186e-16 + art_sys_33: 1.57587948e-16 + art_sys_34: 6.28799543e-18 + art_sys_35: -3.34007064e-18 + art_sys_36: 2.73585003e-16 + art_sys_37: -1.51397736e-13 + art_sys_38: 5.23447741e-17 + art_sys_39: -4.43963901e-03 + art_sys_40: -3.78557351e-14 + art_sys_41: 2.34455570e-15 + art_sys_42: 2.93223543e-18 + art_sys_43: -2.07492926e-13 + art_sys_44: -1.73104101e-18 + art_sys_45: 8.03503824e-04 + art_sys_46: 3.82764405e-14 + art_sys_47: 3.08278264e-20 + art_sys_48: -3.07744436e-14 + art_sys_49: -1.16760632e-13 + art_sys_50: 2.32260548e-20 + art_sys_51: 6.52588851e-20 + art_sys_52: -7.62703591e-15 + art_sys_53: -4.83973827e-05 + art_sys_54: -1.48473254e-16 + art_sys_55: -7.18265919e-16 + art_sys_56: 8.60434215e-06 + art_sys_57: 2.11871140e-18 + art_sys_58: 8.61041565e-18 + art_sys_59: -3.67929498e-18 + art_sys_60: 8.72100111e-20 + art_sys_61: -2.09831532e-18 + art_sys_62: -4.31024559e-19 + art_sys_63: 2.26173267e-19 + art_sys_64: -1.67701633e-19 + art_sys_65: -8.76477762e-20 + art_sys_66: 2.16586931e-15 + art_sys_67: -6.01714082e-20 + art_sys_68: -1.67334190e-20 + art_sys_69: -1.43772728e-15 + art_sys_70: -6.48334498e-16 + art_sys_71: -3.77931076e-14 + art_sys_72: 1.64832833e-06 + art_sys_73: -6.91567530e-18 + art_sys_74: 2.53344114e-15 + art_sys_75: 7.61202330e-22 + art_sys_76: 5.28490927e-19 + art_sys_77: 3.65449742e-18 + art_sys_78: 1.15010731e-18 + art_sys_79: -3.78697603e-23 + art_sys_80: -1.52185769e-14 + art_sys_81: -5.23961982e-20 + art_sys_82: -3.09954684e-20 + art_sys_83: 1.46325262e-19 + art_sys_84: 8.93145733e-16 + art_sys_85: -2.23834159e-20 + art_sys_86: -7.54068932e-20 + art_sys_87: -1.26276735e-21 + art_sys_88: -6.58907605e-22 + art_sys_89: -1.55821779e-22 + art_sys_90: -8.51662127e-14 + art_sys_91: -1.48697692e-13 + art_sys_92: 3.08425388e-16 + art_sys_93: 5.25529605e-08 + art_sys_94: 2.37244103e-15 + art_sys_95: -6.26470814e-16 + art_sys_96: 8.17524301e-24 + art_sys_97: 1.59441710e-17 + art_sys_98: -4.51718995e-16 + art_sys_99: -6.48840811e-09 + art_sys_100: 5.23295603e-20 + art_sys_101: -4.36628317e-17 + art_sys_102: -2.90004347e-25 + art_sys_103: 1.12436488e-23 + art_sys_104: -3.32840357e-16 + art_sys_105: 2.56025051e-25 + art_sys_106: 5.44089820e-17 + art_sys_107: 1.66464971e-10 + art_sys_108: 1.38309298e-24 + art_sys_109: -4.99732659e-21 + art_sys_110: -8.42819868e-26 + art_sys_111: -3.16242833e-18 + art_sys_112: 1.50931519e-24 + art_sys_113: -5.43340666e-30 + art_sys_114: 2.05417827e-18 + art_sys_115: 4.86201812e-26 + art_sys_116: -4.29557035e-23 + art_sys_117: 1.02737338e-27 + art_sys_118: 1.27704306e-18 + art_sys_119: 4.55225823e-27 + art_sys_120: -6.73415076e-19 + art_sys_121: 5.39367945e-24 + art_sys_122: -2.93479857e-19 + art_sys_123: -2.02047560e-25 + art_sys_124: 1.16416359e-19 + art_sys_125: -4.45753064e-20 + art_sys_126: -3.75411356e-24 + art_sys_127: -1.25595338e-20 + art_sys_128: 4.31882984e-25 + art_sys_129: -2.90958050e-25 + art_sys_130: 1.24209355e-24 + art_sys_131: -8.25937511e-25 + art_sys_132: -1.40796970e-21 + art_sys_133: 1.42091558e-24 + art_sys_134: -5.04614512e-24 + art_sys_135: -2.32739799e-21 + art_sys_136: -1.68060730e-23 + art_sys_137: 1.36722439e-21 + art_sys_138: 3.06384866e-23 + art_sys_139: 1.98263454e-22 + art_sys_140: 2.25605379e-13 + art_sys_141: 1.14454621e-21 + art_sys_142: -0.0 + art_sys_143: -1.81954518e-20 + art_sys_144: -8.26691007e-21 + art_sys_145: -3.24382726e-21 + art_sys_146: 2.24749959e-27 + art_sys_147: -1.76973095e-28 + art_sys_148: -1.80412629e-26 + art_sys_149: -3.12380042e-27 + art_sys_150: -5.23448391e-28 + art_sys_151: 6.23884866e-26 + art_sys_152: -5.67320595e-27 + art_sys_153: -1.53589211e-27 + art_sys_154: 6.16523047e-26 + art_sys_155: -3.06163101e-25 + art_sys_156: -1.14408807e-24 + art_sys_157: -4.57628251e-23 + art_sys_158: 0.0 + art_sys_159: -2.27921167e-22 + art_sys_160: -2.27921167e-22 + art_sys_161: -1.41452730e-23 + art_sys_162: 4.66680811e-36 + art_sys_163: 0.0 + art_sys_164: 2.63203855e-36 + art_sys_165: 1.08151834e-34 + art_sys_166: -9.96802283e-35 + art_sys_167: -5.87016375e-35 + art_sys_168: -2.81408668e-35 + art_sys_169: 4.91068899e-35 + art_sys_170: -1.69112085e-33 + art_sys_171: -1.72724779e-34 + art_sys_172: 1.22912571e-35 + art_sys_173: -2.55425038e-35 + art_sys_174: -1.92223302e-36 + art_sys_175: -2.79870600e-36 + art_sys_176: -2.01979572e-37 + art_sys_177: 8.85952038e-38 + art_sys_178: 2.88208589e-38 + art_sys_179: 2.05916252e-38 + art_sys_180: 8.39739960e-39 + art_sys_181: -1.33433740e-40 + art_sys_182: -1.64949878e-42 + art_sys_183: 2.55177501e-41 + art_sys_184: -1.45131073e-41 + art_sys_185: 1.78240983e-37 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -68044,189 +68044,189 @@ bins: uncorrelated_uncertainty: 0.245217 - art_sys_1: 1.79374360e-03 art_sys_2: 2.88932275e-03 - art_sys_3: -8.78678526e-15 - art_sys_4: 4.42563966e-14 - art_sys_5: -8.87792168e-17 + art_sys_3: -8.51942451e-15 + art_sys_4: 4.18106467e-14 + art_sys_5: -2.47243138e-15 art_sys_6: 8.97653902e-03 - art_sys_7: -2.50730988e-16 - art_sys_8: -4.53264123e-15 - art_sys_9: 6.91597897e-15 + art_sys_7: -3.51616880e-14 + art_sys_8: 1.17405343e-15 + art_sys_9: -7.87610768e-15 art_sys_10: 6.63353320e-03 - art_sys_11: -7.49945605e-14 - art_sys_12: 2.45916850e-15 - art_sys_13: 2.13242765e-03 - art_sys_14: 2.02913388e-16 - art_sys_15: -5.38738002e-15 - art_sys_16: -2.19368970e-15 + art_sys_11: -2.20721907e-13 + art_sys_12: -4.40408854e-16 + art_sys_13: -2.13242765e-03 + art_sys_14: -1.70649856e-16 + art_sys_15: 1.91992236e-15 + art_sys_16: 2.44940886e-16 art_sys_17: 5.83266822e-02 - art_sys_18: 1.05925103e-16 - art_sys_19: -9.31103174e-17 + art_sys_18: 1.40750939e-15 + art_sys_19: 1.77807730e-15 art_sys_20: -6.46581583e-04 - art_sys_21: 4.39944567e-16 + art_sys_21: 1.02982525e-16 art_sys_22: -5.99093398e-02 - art_sys_23: -1.91633853e-15 - art_sys_24: 4.80934349e-16 - art_sys_25: 2.71345100e-15 - art_sys_26: 1.08107132e-15 - art_sys_27: 8.38944543e-16 - art_sys_28: 8.51262057e-02 - art_sys_29: -4.84269572e-15 - art_sys_30: 7.22818493e-15 - art_sys_31: -1.57315388e-02 - art_sys_32: -2.99622310e-17 - art_sys_33: 4.76525650e-15 - art_sys_34: -5.74703359e-16 - art_sys_35: -3.84263668e-03 - art_sys_36: 2.02391376e-16 - art_sys_37: -6.05535686e-16 - art_sys_38: 1.04543874e-16 - art_sys_39: 3.63463228e-17 - art_sys_40: -1.13151636e-17 - art_sys_41: 8.49229647e-18 - art_sys_42: 5.66285652e-18 - art_sys_43: -4.65793884e-18 - art_sys_44: 3.30218397e-20 - art_sys_45: -9.76694280e-20 - art_sys_46: -4.65235294e-19 - art_sys_47: 2.66422652e-13 - art_sys_48: 1.23719491e-13 - art_sys_49: 1.53980308e-12 - art_sys_50: -3.65641151e-19 - art_sys_51: -3.03230483e-20 - art_sys_52: -1.91589136e-04 - art_sys_53: 6.69409993e-13 - art_sys_54: -1.75335831e-14 - art_sys_55: 1.94594822e-14 - art_sys_56: 3.61743292e-05 - art_sys_57: -3.42141548e-19 - art_sys_58: -5.51201673e-21 - art_sys_59: -3.00427704e-18 - art_sys_60: -1.45418161e-17 - art_sys_61: -2.23445011e-17 - art_sys_62: -6.98423443e-06 - art_sys_63: 1.82188990e-16 - art_sys_64: 8.93132340e-18 - art_sys_65: 3.81946336e-19 - art_sys_66: 2.82346308e-18 - art_sys_67: 4.39522881e-19 - art_sys_68: 1.56484798e-19 - art_sys_69: -6.95570947e-19 - art_sys_70: -2.56545203e-19 - art_sys_71: -2.21124476e-19 - art_sys_72: 6.79853982e-21 - art_sys_73: -5.81919314e-21 - art_sys_74: -9.12087879e-17 - art_sys_75: 4.58410345e-21 - art_sys_76: -1.47539067e-18 - art_sys_77: 6.52156997e-18 - art_sys_78: -1.53387204e-18 - art_sys_79: -3.11407587e-21 - art_sys_80: 2.52155536e-18 - art_sys_81: -1.14719228e-15 - art_sys_82: 1.10940789e-13 - art_sys_83: 7.29087645e-19 - art_sys_84: 3.72228250e-19 - art_sys_85: -3.06444429e-19 - art_sys_86: -6.43808042e-20 - art_sys_87: 1.59701032e-16 - art_sys_88: 8.55352998e-18 - art_sys_89: 6.87926326e-21 - art_sys_90: 9.56403551e-20 - art_sys_91: 2.66913065e-15 - art_sys_92: -1.91711250e-21 - art_sys_93: 1.82214640e-21 - art_sys_94: 3.37689924e-21 - art_sys_95: 1.03834937e-15 - art_sys_96: 3.17019231e-13 - art_sys_97: 2.13216060e-07 - art_sys_98: 2.15934550e-15 - art_sys_99: 5.13236366e-15 - art_sys_100: -5.63233562e-14 - art_sys_101: -1.28640021e-13 - art_sys_102: 1.19658780e-14 - art_sys_103: -2.72678104e-08 - art_sys_104: 3.38133696e-15 - art_sys_105: -1.73923402e-21 - art_sys_106: -3.35164423e-15 - art_sys_107: 9.05972168e-18 - art_sys_108: 5.98347979e-24 - art_sys_109: -1.98771400e-25 - art_sys_110: -3.41618229e-16 - art_sys_111: 2.02640732e-14 - art_sys_112: 1.53889024e-16 - art_sys_113: 5.88789348e-10 - art_sys_114: -9.80043992e-26 - art_sys_115: -4.19486631e-17 - art_sys_116: 3.30893616e-21 - art_sys_117: 7.88135766e-26 - art_sys_118: 9.59156265e-17 - art_sys_119: 9.90456369e-22 - art_sys_120: -1.71947589e-18 - art_sys_121: -6.26431157e-25 - art_sys_122: -2.27473118e-16 - art_sys_123: 3.92356821e-24 - art_sys_124: 5.97054087e-18 - art_sys_125: 4.87156004e-27 - art_sys_126: -2.40115462e-22 - art_sys_127: 1.70830252e-24 - art_sys_128: 5.68797699e-19 - art_sys_129: 1.58636521e-26 - art_sys_130: -2.29656008e-24 - art_sys_131: -1.63766803e-26 - art_sys_132: 8.44561336e-20 - art_sys_133: 6.56167875e-25 - art_sys_134: 4.37795464e-23 - art_sys_135: -7.36108587e-20 - art_sys_136: 4.65686974e-28 - art_sys_137: 3.57828161e-24 - art_sys_138: -3.09280960e-20 - art_sys_139: -1.89290548e-24 - art_sys_140: 1.15732259e-27 - art_sys_141: 2.10315136e-25 - art_sys_142: -7.92022491e-21 - art_sys_143: -1.76167684e-25 - art_sys_144: 1.25170984e-25 - art_sys_145: 5.17427337e-22 - art_sys_146: 3.03173972e-24 - art_sys_147: -3.60084257e-27 - art_sys_148: -6.84589429e-28 - art_sys_149: -9.52183688e-22 - art_sys_150: -3.86204783e-23 - art_sys_151: 4.00796258e-22 - art_sys_152: 1.79032965e-25 - art_sys_153: 5.98898317e-22 - art_sys_154: -9.21523261e-13 - art_sys_155: 6.00316308e-24 - art_sys_156: -0.0 - art_sys_157: 1.04389468e-20 - art_sys_158: 0.0 - art_sys_159: -2.58175286e-21 - art_sys_160: -3.17134648e-22 - art_sys_161: -6.70264247e-23 - art_sys_162: -6.70264247e-23 - art_sys_163: 8.85825208e-23 - art_sys_164: 8.85825208e-23 - art_sys_165: -7.67866800e-37 - art_sys_166: 2.36425647e-37 - art_sys_167: 0.0 - art_sys_168: -3.21177857e-34 - art_sys_169: 6.90893409e-33 - art_sys_170: -2.58812616e-32 - art_sys_171: -7.55673067e-32 - art_sys_172: -1.45734552e-32 - art_sys_173: 1.85035289e-33 - art_sys_174: 2.34939960e-33 - art_sys_175: -2.19085326e-34 - art_sys_176: 3.34772470e-35 - art_sys_177: -4.35163881e-37 - art_sys_178: -3.72937144e-37 - art_sys_179: -5.09303729e-36 - art_sys_180: -5.22377452e-35 - art_sys_181: -4.90067952e-36 - art_sys_182: 9.68546912e-36 - art_sys_183: -8.78448493e-38 - art_sys_184: 4.81972708e-40 - art_sys_185: 1.83709068e-41 + art_sys_23: -1.59623138e-15 + art_sys_24: 6.39712070e-17 + art_sys_25: -2.50738817e-15 + art_sys_26: 1.01196224e-15 + art_sys_27: -7.73816321e-16 + art_sys_28: 8.51262056e-02 + art_sys_29: 1.70945395e-14 + art_sys_30: -2.16512307e-14 + art_sys_31: 4.62119411e-15 + art_sys_32: -2.08856552e-15 + art_sys_33: -6.27932452e-16 + art_sys_34: -5.83570388e-17 + art_sys_35: -1.77323178e-18 + art_sys_36: -4.65393494e-15 + art_sys_37: 5.37304043e-13 + art_sys_38: -1.79572176e-16 + art_sys_39: 1.57315388e-02 + art_sys_40: 1.33938401e-13 + art_sys_41: -4.19836951e-15 + art_sys_42: -1.38196915e-17 + art_sys_43: 9.91468440e-13 + art_sys_44: 8.11961506e-18 + art_sys_45: -3.84263668e-03 + art_sys_46: -1.56278150e-13 + art_sys_47: -3.50866400e-19 + art_sys_48: 1.32776412e-13 + art_sys_49: 4.94665473e-13 + art_sys_50: -1.53015328e-19 + art_sys_51: -2.59308839e-19 + art_sys_52: 2.81577907e-14 + art_sys_53: 1.91589136e-04 + art_sys_54: 6.08249802e-16 + art_sys_55: 1.80638821e-15 + art_sys_56: -3.61743321e-05 + art_sys_57: -9.22886023e-18 + art_sys_58: -3.64226442e-17 + art_sys_59: 1.99326024e-17 + art_sys_60: -1.69468485e-18 + art_sys_61: 8.94435013e-18 + art_sys_62: 1.82664524e-18 + art_sys_63: -9.48306847e-19 + art_sys_64: 6.97718509e-19 + art_sys_65: 3.82515274e-19 + art_sys_66: -9.17711563e-15 + art_sys_67: 2.55477730e-19 + art_sys_68: 7.17811338e-20 + art_sys_69: 5.84667268e-15 + art_sys_70: 2.44391429e-15 + art_sys_71: 1.60134765e-13 + art_sys_72: -6.98423341e-06 + art_sys_73: 1.95397545e-17 + art_sys_74: -1.02855135e-14 + art_sys_75: -3.06056773e-21 + art_sys_76: -2.76532918e-18 + art_sys_77: -1.47818815e-17 + art_sys_78: -4.66781166e-18 + art_sys_79: 1.05998189e-22 + art_sys_80: 6.15972114e-14 + art_sys_81: 2.02144073e-19 + art_sys_82: 1.26055714e-19 + art_sys_83: -5.96535736e-19 + art_sys_84: -3.62981691e-15 + art_sys_85: 9.20253552e-20 + art_sys_86: 3.05690326e-19 + art_sys_87: 5.11726341e-21 + art_sys_88: 2.84386867e-21 + art_sys_89: 6.03951220e-22 + art_sys_90: 3.45435582e-13 + art_sys_91: 6.06416964e-13 + art_sys_92: -1.29815254e-15 + art_sys_93: -2.13215426e-07 + art_sys_94: -8.38670211e-15 + art_sys_95: 2.62832047e-15 + art_sys_96: -3.45671147e-23 + art_sys_97: -6.66060800e-17 + art_sys_98: 1.75040340e-15 + art_sys_99: 2.72680027e-08 + art_sys_100: -2.19752068e-19 + art_sys_101: 1.52303319e-16 + art_sys_102: 9.98940859e-25 + art_sys_103: -9.19868128e-23 + art_sys_104: 1.22474415e-15 + art_sys_105: -1.70812692e-24 + art_sys_106: -2.41899852e-16 + art_sys_107: -5.88751252e-10 + art_sys_108: -3.01299757e-24 + art_sys_109: 2.19914373e-20 + art_sys_110: 2.97562236e-25 + art_sys_111: 7.98295862e-18 + art_sys_112: -5.08114243e-24 + art_sys_113: -1.43483916e-26 + art_sys_114: -4.36532275e-18 + art_sys_115: 1.65520092e-23 + art_sys_116: 1.14025831e-22 + art_sys_117: -1.48506924e-26 + art_sys_118: -2.71747385e-18 + art_sys_119: 8.17304651e-25 + art_sys_120: 1.42788629e-18 + art_sys_121: -2.28770195e-23 + art_sys_122: 6.20559644e-19 + art_sys_123: 5.90772730e-25 + art_sys_124: -2.45190576e-19 + art_sys_125: 9.67376873e-20 + art_sys_126: 1.77359259e-23 + art_sys_127: 2.65372687e-20 + art_sys_128: -1.54334060e-24 + art_sys_129: 1.16297213e-24 + art_sys_130: -4.63809175e-24 + art_sys_131: 3.64346346e-24 + art_sys_132: -3.47217061e-21 + art_sys_133: -5.83424550e-24 + art_sys_134: 1.69644333e-23 + art_sys_135: 8.03158922e-21 + art_sys_136: 6.73348743e-23 + art_sys_137: -5.54458489e-21 + art_sys_138: -1.27695405e-22 + art_sys_139: -8.29042567e-22 + art_sys_140: -9.46928997e-13 + art_sys_141: -4.80522050e-21 + art_sys_142: 0.0 + art_sys_143: 7.63762154e-20 + art_sys_144: 3.47000912e-20 + art_sys_145: 1.36156955e-20 + art_sys_146: -8.45124786e-27 + art_sys_147: -7.12587655e-29 + art_sys_148: 7.52546897e-26 + art_sys_149: 1.57913835e-26 + art_sys_150: 1.75647873e-27 + art_sys_151: -2.57954684e-25 + art_sys_152: 2.21927225e-26 + art_sys_153: 6.31064926e-27 + art_sys_154: -2.58037507e-25 + art_sys_155: 1.28587809e-24 + art_sys_156: 4.80570653e-24 + art_sys_157: 1.92079622e-22 + art_sys_158: -0.0 + art_sys_159: 9.56856481e-22 + art_sys_160: 9.56856481e-22 + art_sys_161: 5.93669601e-23 + art_sys_162: -1.95858410e-35 + art_sys_163: -0.0 + art_sys_164: -1.10460539e-35 + art_sys_165: 1.17891809e-32 + art_sys_166: -1.83804559e-33 + art_sys_167: 6.62167333e-34 + art_sys_168: -1.09704355e-33 + art_sys_169: 6.40857222e-33 + art_sys_170: -2.98807331e-33 + art_sys_171: 2.60616360e-32 + art_sys_172: -2.08250707e-32 + art_sys_173: -5.09424329e-32 + art_sys_174: 8.06902513e-36 + art_sys_175: -3.32425126e-33 + art_sys_176: 6.15495172e-33 + art_sys_177: -1.34694893e-33 + art_sys_178: -7.95691364e-35 + art_sys_179: -7.88539504e-36 + art_sys_180: 2.81923661e-36 + art_sys_181: -7.39097545e-37 + art_sys_182: 1.35528352e-36 + art_sys_183: 2.17225763e-38 + art_sys_184: -6.75356090e-41 + art_sys_185: -7.48094353e-37 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -68335,189 +68335,189 @@ bins: uncorrelated_uncertainty: 9.31754000e-02 - art_sys_1: 2.23245273e-04 art_sys_2: -3.19069810e-04 - art_sys_3: -8.24547153e-16 - art_sys_4: -4.36421473e-15 - art_sys_5: -1.83059833e-15 + art_sys_3: 2.60597351e-15 + art_sys_4: 3.22698612e-15 + art_sys_5: 9.52863128e-17 art_sys_6: -4.69150442e-05 - art_sys_7: -2.25872340e-14 - art_sys_8: 5.18692186e-15 - art_sys_9: 3.14822992e-15 + art_sys_7: -4.01929236e-14 + art_sys_8: 1.44502559e-15 + art_sys_9: -5.02968011e-15 art_sys_10: 6.08932743e-04 - art_sys_11: 6.38617327e-15 - art_sys_12: -1.25419064e-15 - art_sys_13: -6.93391875e-03 - art_sys_14: -8.84840267e-16 - art_sys_15: -3.15617447e-15 - art_sys_16: -9.19051258e-16 + art_sys_11: -1.36946495e-13 + art_sys_12: -3.72002299e-15 + art_sys_13: 6.93391875e-03 + art_sys_14: -1.88559812e-16 + art_sys_15: -8.23482325e-15 + art_sys_16: 1.55656357e-15 art_sys_17: 4.70961375e-03 - art_sys_18: 1.02820831e-15 - art_sys_19: 2.16386791e-16 + art_sys_18: -2.32852431e-16 + art_sys_19: 6.13926733e-16 art_sys_20: 3.42412187e-02 - art_sys_21: -5.55226443e-16 + art_sys_21: -2.52606336e-16 art_sys_22: 2.14864545e-02 - art_sys_23: -1.15752021e-14 - art_sys_24: -5.71697364e-16 - art_sys_25: -5.70763616e-16 - art_sys_26: 7.46007253e-17 - art_sys_27: -4.73031747e-17 - art_sys_28: 3.49206569e-02 - art_sys_29: -1.76888458e-15 - art_sys_30: 4.59141505e-15 - art_sys_31: 4.17645421e-02 - art_sys_32: 2.91521560e-16 - art_sys_33: -8.22367153e-15 - art_sys_34: 4.22531567e-16 - art_sys_35: 7.66431301e-03 - art_sys_36: -5.27470153e-16 - art_sys_37: 2.36980893e-15 - art_sys_38: -3.26273744e-16 - art_sys_39: -1.17818156e-16 - art_sys_40: 3.15485319e-17 - art_sys_41: -3.00563435e-17 - art_sys_42: -1.47289621e-17 - art_sys_43: 1.59060844e-17 - art_sys_44: 2.04601707e-18 - art_sys_45: -1.30407776e-18 - art_sys_46: 1.88664775e-18 - art_sys_47: -1.01894198e-12 - art_sys_48: -5.40707187e-13 - art_sys_49: -4.96855808e-12 - art_sys_50: 2.36867447e-18 - art_sys_51: 3.56736780e-18 - art_sys_52: 7.33682923e-04 - art_sys_53: -2.51933650e-12 - art_sys_54: 6.71864354e-14 - art_sys_55: -7.71281672e-14 - art_sys_56: -1.20685540e-04 - art_sys_57: -1.67148620e-18 - art_sys_58: -7.27706542e-21 - art_sys_59: 1.82190322e-16 - art_sys_60: 5.69475094e-17 - art_sys_61: 8.81510100e-17 - art_sys_62: 2.60117461e-05 - art_sys_63: -6.74082595e-16 - art_sys_64: -3.57986854e-17 - art_sys_65: -1.48997001e-18 - art_sys_66: -1.11688002e-17 - art_sys_67: -1.71722158e-18 - art_sys_68: -6.13225175e-19 - art_sys_69: 2.69756512e-18 - art_sys_70: 1.01241987e-18 - art_sys_71: 8.75412263e-19 - art_sys_72: -2.70247530e-20 - art_sys_73: 2.31143802e-20 - art_sys_74: 3.60032633e-16 - art_sys_75: -1.80515611e-20 - art_sys_76: 5.57438949e-18 - art_sys_77: -2.56194172e-17 - art_sys_78: 6.02088418e-18 - art_sys_79: 1.20737312e-20 - art_sys_80: -9.92756573e-18 - art_sys_81: 4.52790065e-15 - art_sys_82: -4.37876259e-13 - art_sys_83: -2.74706088e-18 - art_sys_84: -1.45705637e-18 - art_sys_85: 1.21528516e-18 - art_sys_86: 2.55701159e-19 - art_sys_87: -6.22538324e-16 - art_sys_88: -4.28494774e-17 - art_sys_89: -2.58901039e-20 - art_sys_90: -3.46420012e-19 - art_sys_91: -1.05168742e-14 - art_sys_92: 7.53466795e-21 - art_sys_93: -7.18332540e-21 - art_sys_94: -1.61830487e-20 - art_sys_95: -4.09838537e-15 - art_sys_96: -1.25094088e-12 - art_sys_97: -8.41551279e-07 - art_sys_98: -8.41508355e-15 - art_sys_99: -2.00348350e-14 - art_sys_100: 2.19493507e-13 - art_sys_101: 5.01657701e-13 - art_sys_102: -5.91661128e-14 - art_sys_103: 1.06263330e-07 - art_sys_104: -1.31707059e-14 - art_sys_105: 6.82291070e-21 - art_sys_106: 1.66171783e-14 - art_sys_107: -4.48067756e-17 - art_sys_108: -2.72824589e-23 - art_sys_109: 1.03170505e-24 - art_sys_110: 1.33990020e-15 - art_sys_111: -1.00249110e-13 - art_sys_112: -6.02901660e-16 - art_sys_113: -2.91129629e-09 - art_sys_114: 3.88274168e-25 - art_sys_115: 2.26020785e-16 - art_sys_116: -1.29951320e-20 - art_sys_117: -3.83913524e-25 - art_sys_118: -3.86137731e-16 - art_sys_119: -3.83359444e-21 - art_sys_120: 6.74435398e-18 - art_sys_121: 3.06309849e-24 - art_sys_122: 8.98569239e-16 - art_sys_123: 1.11968903e-23 - art_sys_124: -2.68603753e-17 - art_sys_125: -1.26086146e-26 - art_sys_126: 9.27187139e-22 - art_sys_127: -7.93859018e-24 - art_sys_128: -7.73139733e-19 - art_sys_129: -4.58933727e-26 - art_sys_130: 1.27556788e-23 - art_sys_131: 9.30805949e-26 - art_sys_132: 2.45745350e-19 - art_sys_133: -5.87437871e-24 - art_sys_134: -1.62315598e-22 - art_sys_135: 7.67746513e-20 - art_sys_136: 8.63772944e-28 - art_sys_137: -1.68023513e-23 - art_sys_138: 6.05416071e-20 - art_sys_139: 6.58150496e-24 - art_sys_140: -3.28441821e-27 - art_sys_141: -2.82109628e-24 - art_sys_142: 7.18947835e-21 - art_sys_143: 2.40831699e-25 - art_sys_144: -5.40980137e-25 - art_sys_145: -6.64186436e-21 - art_sys_146: -1.25000859e-23 - art_sys_147: 1.27226185e-26 - art_sys_148: 2.95555550e-27 - art_sys_149: 4.23558426e-21 - art_sys_150: 1.43379332e-22 - art_sys_151: -1.58884486e-21 - art_sys_152: -7.02833989e-25 - art_sys_153: -2.36312959e-21 - art_sys_154: 3.61436740e-12 - art_sys_155: -2.36275009e-23 - art_sys_156: 0.0 - art_sys_157: -4.09039809e-20 - art_sys_158: -0.0 - art_sys_159: 1.01094488e-20 - art_sys_160: 1.24333590e-21 - art_sys_161: 2.62487018e-22 - art_sys_162: 2.62487018e-22 - art_sys_163: -3.46559257e-22 - art_sys_164: -3.46559257e-22 - art_sys_165: 3.00382973e-36 - art_sys_166: -9.24819839e-37 - art_sys_167: -0.0 - art_sys_168: 1.51249848e-33 - art_sys_169: -4.78749233e-33 - art_sys_170: 3.44818630e-32 - art_sys_171: 5.02630585e-32 - art_sys_172: 4.90536209e-33 - art_sys_173: -1.64493232e-32 - art_sys_174: 3.46660834e-33 - art_sys_175: 1.39080836e-34 - art_sys_176: 2.03159075e-35 - art_sys_177: 6.36985854e-37 - art_sys_178: -1.58371781e-37 - art_sys_179: 2.00209777e-35 - art_sys_180: 2.04520185e-34 - art_sys_181: 1.34314954e-35 - art_sys_182: 1.27121620e-36 - art_sys_183: -2.23689022e-37 - art_sys_184: -1.92722636e-40 - art_sys_185: -8.30795574e-41 + art_sys_23: -1.18675401e-14 + art_sys_24: -1.04922938e-16 + art_sys_25: 5.80808182e-16 + art_sys_26: 6.03218945e-17 + art_sys_27: 5.41891231e-17 + art_sys_28: 3.49206570e-02 + art_sys_29: -4.72564946e-14 + art_sys_30: 6.07676995e-14 + art_sys_31: -9.79589156e-15 + art_sys_32: 5.62298437e-15 + art_sys_33: 1.47278282e-15 + art_sys_34: 1.08328559e-16 + art_sys_35: -3.77388504e-17 + art_sys_36: -2.25215204e-15 + art_sys_37: -1.40266288e-12 + art_sys_38: 4.81767009e-16 + art_sys_39: -4.17645421e-02 + art_sys_40: -3.55370853e-13 + art_sys_41: 7.09363641e-15 + art_sys_42: 3.12149621e-17 + art_sys_43: -1.97677093e-12 + art_sys_44: -1.35325813e-17 + art_sys_45: 7.66431301e-03 + art_sys_46: 5.47701243e-13 + art_sys_47: 1.08321902e-18 + art_sys_48: -4.41959089e-13 + art_sys_49: -1.83022094e-12 + art_sys_50: 9.29266910e-19 + art_sys_51: -8.56375602e-19 + art_sys_52: -1.20716656e-13 + art_sys_53: -7.33682924e-04 + art_sys_54: -2.39353344e-15 + art_sys_55: -4.64264639e-15 + art_sys_56: 1.20685550e-04 + art_sys_57: 3.35919104e-17 + art_sys_58: 1.35138546e-16 + art_sys_59: -8.68971468e-17 + art_sys_60: 2.96162047e-18 + art_sys_61: -3.30277316e-17 + art_sys_62: -6.81659883e-18 + art_sys_63: 3.58347555e-18 + art_sys_64: -2.57182944e-18 + art_sys_65: -1.44450356e-18 + art_sys_66: 3.41788940e-14 + art_sys_67: -9.49376669e-19 + art_sys_68: -2.63673033e-19 + art_sys_69: -2.30573964e-14 + art_sys_70: -8.93841844e-15 + art_sys_71: -5.96400857e-13 + art_sys_72: 2.60117424e-05 + art_sys_73: -1.25436219e-16 + art_sys_74: 4.05600758e-14 + art_sys_75: 1.22100133e-20 + art_sys_76: 9.77915362e-18 + art_sys_77: 5.84521910e-17 + art_sys_78: 1.84498763e-17 + art_sys_79: -4.67383479e-22 + art_sys_80: -2.43332591e-13 + art_sys_81: -8.11417654e-19 + art_sys_82: -5.00036394e-19 + art_sys_83: 2.35139796e-18 + art_sys_84: 1.43172294e-14 + art_sys_85: -3.61798083e-19 + art_sys_86: -1.20738462e-18 + art_sys_87: -2.03790142e-20 + art_sys_88: -1.07047896e-20 + art_sys_89: -2.59212538e-21 + art_sys_90: -1.36356609e-12 + art_sys_91: -2.37320613e-12 + art_sys_92: 5.05617710e-15 + art_sys_93: 8.41548792e-07 + art_sys_94: 4.14960799e-14 + art_sys_95: -9.48068026e-15 + art_sys_96: 1.33513235e-22 + art_sys_97: 2.62973078e-16 + art_sys_98: -7.62855851e-15 + art_sys_99: -1.06264085e-07 + art_sys_100: 8.61058325e-19 + art_sys_101: -7.80209766e-16 + art_sys_102: -5.15113524e-24 + art_sys_103: 1.19350017e-22 + art_sys_104: -5.67152354e-15 + art_sys_105: 2.47353265e-24 + art_sys_106: 9.13163785e-16 + art_sys_107: 2.91109046e-09 + art_sys_108: -7.97287535e-24 + art_sys_109: -8.05713144e-20 + art_sys_110: -1.47516932e-24 + art_sys_111: -2.01360663e-17 + art_sys_112: 3.15161554e-24 + art_sys_113: -2.22748655e-26 + art_sys_114: 6.63516491e-18 + art_sys_115: 8.77736406e-24 + art_sys_116: -4.76215282e-22 + art_sys_117: 7.80813836e-26 + art_sys_118: 4.15117473e-18 + art_sys_119: 4.29877979e-24 + art_sys_120: -2.23297917e-18 + art_sys_121: 7.83899143e-23 + art_sys_122: -9.81014384e-19 + art_sys_123: -1.74336302e-24 + art_sys_124: 3.87001917e-19 + art_sys_125: -1.67341100e-19 + art_sys_126: -4.88497881e-23 + art_sys_127: -4.28411695e-20 + art_sys_128: 5.71471292e-24 + art_sys_129: -4.59334856e-24 + art_sys_130: 1.70750189e-23 + art_sys_131: -1.48253268e-23 + art_sys_132: 3.56878135e-20 + art_sys_133: 2.37905911e-23 + art_sys_134: -5.70133397e-23 + art_sys_135: -2.75173224e-20 + art_sys_136: -2.57110937e-22 + art_sys_137: 2.13183320e-20 + art_sys_138: 4.98970969e-22 + art_sys_139: 3.24513154e-21 + art_sys_140: 3.71406791e-12 + art_sys_141: 1.88509064e-20 + art_sys_142: -0.0 + art_sys_143: -2.99572666e-19 + art_sys_144: -1.36103562e-19 + art_sys_145: -5.34060755e-20 + art_sys_146: 3.75657874e-26 + art_sys_147: -2.11847691e-27 + art_sys_148: -2.73334125e-25 + art_sys_149: -5.29767870e-26 + art_sys_150: -9.44051423e-27 + art_sys_151: 1.00961381e-24 + art_sys_152: -8.37607160e-26 + art_sys_153: -2.49656353e-26 + art_sys_154: 1.01115872e-24 + art_sys_155: -5.04677583e-24 + art_sys_156: -1.88585489e-23 + art_sys_157: -7.53380836e-22 + art_sys_158: 0.0 + art_sys_159: -3.75343684e-21 + art_sys_160: -3.75343684e-21 + art_sys_161: -2.32832808e-22 + art_sys_162: 7.68130659e-35 + art_sys_163: 0.0 + art_sys_164: 4.33207321e-35 + art_sys_165: 2.09801015e-32 + art_sys_166: -7.34037676e-33 + art_sys_167: 2.59683022e-33 + art_sys_168: -1.95772248e-33 + art_sys_169: 1.05895521e-32 + art_sys_170: -4.76988222e-32 + art_sys_171: 4.83426287e-33 + art_sys_172: 5.97003039e-31 + art_sys_173: -1.50069731e-31 + art_sys_174: -3.16517030e-35 + art_sys_175: -2.03197950e-33 + art_sys_176: 2.62253099e-33 + art_sys_177: -1.13331276e-34 + art_sys_178: 5.80573958e-36 + art_sys_179: -1.54486521e-36 + art_sys_180: 3.94193626e-36 + art_sys_181: -3.80036519e-36 + art_sys_182: 1.46983650e-36 + art_sys_183: 5.44863104e-38 + art_sys_184: -5.22537886e-40 + art_sys_185: 2.93405764e-36 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -68626,189 +68626,189 @@ bins: uncorrelated_uncertainty: 3.57007000e-02 - art_sys_1: 5.74695836e-06 art_sys_2: -1.06582257e-04 - art_sys_3: 2.18642997e-18 - art_sys_4: -1.04168256e-14 - art_sys_5: -2.02706116e-16 + art_sys_3: 7.72782875e-17 + art_sys_4: 1.26480263e-14 + art_sys_5: -6.71122372e-17 art_sys_6: -1.96463296e-04 - art_sys_7: 2.80971305e-15 - art_sys_8: 5.60049459e-18 - art_sys_9: 8.36739068e-16 + art_sys_7: 5.49072372e-15 + art_sys_8: 1.89282331e-16 + art_sys_9: -7.35843358e-15 art_sys_10: -9.54040622e-05 - art_sys_11: -2.20146423e-15 - art_sys_12: -1.34118627e-15 - art_sys_13: -4.83010173e-04 - art_sys_14: 1.23849023e-15 - art_sys_15: 9.21577424e-16 - art_sys_16: 3.39543226e-16 + art_sys_11: 3.59075452e-14 + art_sys_12: 2.35347483e-15 + art_sys_13: 4.83010173e-04 + art_sys_14: 4.31017414e-16 + art_sys_15: -3.18038406e-15 + art_sys_16: 1.77775961e-16 art_sys_17: -1.67228888e-03 - art_sys_18: -9.71810634e-16 - art_sys_19: 5.82711836e-16 + art_sys_18: -5.77089324e-17 + art_sys_19: 4.02256308e-16 art_sys_20: 8.44256911e-04 - art_sys_21: 4.83521533e-16 + art_sys_21: -1.90826895e-15 art_sys_22: 2.83532321e-03 - art_sys_23: -4.49744046e-16 - art_sys_24: 1.29117340e-15 - art_sys_25: -1.78027949e-16 - art_sys_26: -6.98235105e-17 - art_sys_27: 9.78133400e-18 + art_sys_23: -2.67817457e-16 + art_sys_24: 3.60210630e-16 + art_sys_25: 7.22395082e-17 + art_sys_26: -1.90780158e-17 + art_sys_27: 4.06414091e-17 art_sys_28: -3.42594913e-03 - art_sys_29: 1.86893037e-16 - art_sys_30: -1.01914886e-16 - art_sys_31: 2.21025443e-02 - art_sys_32: 1.03085875e-16 - art_sys_33: -5.87166592e-15 - art_sys_34: 9.22929964e-16 - art_sys_35: -1.75127520e-02 - art_sys_36: -3.78828274e-15 - art_sys_37: -3.07453362e-15 - art_sys_38: 8.91043963e-16 - art_sys_39: 3.51110177e-16 - art_sys_40: -1.52174952e-16 - art_sys_41: 6.40632233e-17 - art_sys_42: 6.26348001e-17 - art_sys_43: -5.32786743e-17 - art_sys_44: -5.18836393e-18 - art_sys_45: 5.21436118e-19 - art_sys_46: -3.70843101e-18 - art_sys_47: 1.60255920e-12 - art_sys_48: 2.38975671e-13 - art_sys_49: 1.72226328e-11 - art_sys_50: -2.92259181e-18 - art_sys_51: -2.48021037e-18 - art_sys_52: -1.14429035e-03 - art_sys_53: 7.52406913e-12 - art_sys_54: -2.13815606e-13 - art_sys_55: 2.52992152e-13 - art_sys_56: 3.70524584e-04 - art_sys_57: -1.98669015e-19 - art_sys_58: 2.49389359e-20 - art_sys_59: -6.09535597e-16 - art_sys_60: -1.65860876e-16 - art_sys_61: -3.01297325e-16 - art_sys_62: -7.78337620e-05 - art_sys_63: 1.98359016e-15 - art_sys_64: 1.22454638e-16 - art_sys_65: 5.03082221e-18 - art_sys_66: 3.89118507e-17 - art_sys_67: 5.43589913e-18 - art_sys_68: 1.97129818e-18 - art_sys_69: -9.09435521e-18 - art_sys_70: -3.43562272e-18 - art_sys_71: -2.98768233e-18 - art_sys_72: 9.29192364e-20 - art_sys_73: -8.02396373e-20 - art_sys_74: -1.22999886e-15 - art_sys_75: 6.19356638e-20 - art_sys_76: -2.10387298e-17 - art_sys_77: 8.63220486e-17 - art_sys_78: -2.16766577e-17 - art_sys_79: -3.60446954e-20 - art_sys_80: 3.36073857e-17 - art_sys_81: -1.54755196e-14 - art_sys_82: 1.49657488e-12 - art_sys_83: 1.03262414e-17 - art_sys_84: 4.86735955e-18 - art_sys_85: -4.10110608e-18 - art_sys_86: -9.04277348e-19 - art_sys_87: 2.00302859e-15 - art_sys_88: 1.31628066e-16 - art_sys_89: 7.70915669e-20 - art_sys_90: 1.59594494e-18 - art_sys_91: 3.58449838e-14 - art_sys_92: -2.58344330e-20 - art_sys_93: 2.45427332e-20 - art_sys_94: 5.43932687e-20 - art_sys_95: 1.40146268e-14 - art_sys_96: 4.27280257e-12 - art_sys_97: 2.87626516e-06 - art_sys_98: 2.70768151e-14 - art_sys_99: 6.46446160e-14 - art_sys_100: -7.06160125e-13 - art_sys_101: -1.61402378e-12 - art_sys_102: 1.91177873e-13 - art_sys_103: -3.41873097e-07 - art_sys_104: 4.23611759e-14 - art_sys_105: -2.43576685e-20 - art_sys_106: -5.35896348e-14 - art_sys_107: 1.44765337e-16 - art_sys_108: 9.37866474e-23 - art_sys_109: -3.15229865e-24 - art_sys_110: -4.78386785e-15 - art_sys_111: 3.23897914e-13 - art_sys_112: 2.15367375e-15 - art_sys_113: 9.40699816e-09 - art_sys_114: -1.39342677e-24 - art_sys_115: -7.50082146e-16 - art_sys_116: 4.64351594e-20 - art_sys_117: 1.20597322e-24 - art_sys_118: 1.39572688e-15 - art_sys_119: 1.37346694e-20 - art_sys_120: -2.40795221e-17 - art_sys_121: -9.93944852e-24 - art_sys_122: -3.21819549e-15 - art_sys_123: -1.66018153e-23 - art_sys_124: 1.00776839e-16 - art_sys_125: 6.11922571e-26 - art_sys_126: -3.46201359e-21 - art_sys_127: 2.61785746e-23 - art_sys_128: 6.20846386e-19 - art_sys_129: 1.70106682e-25 - art_sys_130: -4.26013236e-23 - art_sys_131: -2.95164317e-25 - art_sys_132: -1.71739010e-18 - art_sys_133: 2.13548649e-23 - art_sys_134: 5.77415056e-22 - art_sys_135: 3.82063946e-20 - art_sys_136: 5.77095080e-27 - art_sys_137: 5.53567526e-23 - art_sys_138: -1.25665740e-19 - art_sys_139: -2.01244663e-23 - art_sys_140: 1.13250415e-26 - art_sys_141: 7.74679725e-24 - art_sys_142: 3.18462815e-21 - art_sys_143: -2.73256779e-25 - art_sys_144: 1.82379430e-24 - art_sys_145: 2.84116549e-20 - art_sys_146: 4.29142323e-23 - art_sys_147: -3.93815847e-26 - art_sys_148: -1.01795088e-26 - art_sys_149: -1.56103310e-20 - art_sys_150: -4.87804409e-22 - art_sys_151: 5.64777937e-21 - art_sys_152: 2.47354330e-24 - art_sys_153: 8.41970739e-21 - art_sys_154: -1.29045293e-11 - art_sys_155: 8.42075380e-23 - art_sys_156: -0.0 - art_sys_157: 1.46100518e-19 - art_sys_158: 0.0 - art_sys_159: -3.61184810e-20 - art_sys_160: -4.43998833e-21 - art_sys_161: -9.38039342e-22 - art_sys_162: -9.38039342e-22 - art_sys_163: 1.23849663e-21 - art_sys_164: 1.23849663e-21 - art_sys_165: -1.07345895e-35 - art_sys_166: 3.30499629e-36 - art_sys_167: 0.0 - art_sys_168: 5.75584879e-34 - art_sys_169: -2.00999397e-33 - art_sys_170: -1.06812208e-31 - art_sys_171: -3.32933518e-31 - art_sys_172: 8.70970133e-33 - art_sys_173: 4.84929450e-32 - art_sys_174: -2.68790148e-33 - art_sys_175: -1.94518879e-35 - art_sys_176: -6.80305872e-35 - art_sys_177: -4.02779559e-36 - art_sys_178: -1.05236193e-36 - art_sys_179: -7.14031149e-35 - art_sys_180: -7.30733109e-34 - art_sys_181: -4.13880224e-35 - art_sys_182: 2.44185241e-35 - art_sys_183: -1.67616795e-37 - art_sys_184: -2.14047219e-39 - art_sys_185: 2.65916855e-40 + art_sys_29: -2.55513722e-15 + art_sys_30: 5.95093200e-14 + art_sys_31: 1.47063502e-14 + art_sys_32: 8.58147880e-15 + art_sys_33: -5.58707456e-16 + art_sys_34: -9.26451636e-16 + art_sys_35: -2.96194283e-16 + art_sys_36: 1.09415963e-18 + art_sys_37: -7.44860996e-13 + art_sys_38: 4.45322306e-16 + art_sys_39: -2.21025443e-02 + art_sys_40: -1.88115058e-13 + art_sys_41: 8.47354150e-15 + art_sys_42: -6.76632059e-17 + art_sys_43: 4.51503088e-12 + art_sys_44: 3.36458320e-17 + art_sys_45: -1.75127520e-02 + art_sys_46: -8.94233043e-13 + art_sys_47: -3.05215126e-18 + art_sys_48: 1.42292449e-12 + art_sys_49: 5.49793658e-12 + art_sys_50: -1.85949501e-19 + art_sys_51: -8.77701026e-19 + art_sys_52: 4.91855595e-13 + art_sys_53: 1.14429035e-03 + art_sys_54: 7.97011629e-15 + art_sys_55: 9.16117148e-15 + art_sys_56: -3.70524615e-04 + art_sys_57: -9.63549645e-17 + art_sys_58: -4.01104201e-16 + art_sys_59: 3.40726473e-16 + art_sys_60: -4.72043804e-18 + art_sys_61: 9.67557686e-17 + art_sys_62: 2.04574862e-17 + art_sys_63: -1.10568743e-17 + art_sys_64: 8.08040241e-18 + art_sys_65: 4.17455565e-18 + art_sys_66: -1.02272298e-13 + art_sys_67: 2.82442405e-18 + art_sys_68: 7.59071908e-19 + art_sys_69: 7.85012459e-14 + art_sys_70: 2.66272512e-14 + art_sys_71: 1.78457975e-12 + art_sys_72: -7.78337511e-05 + art_sys_73: 4.54540695e-16 + art_sys_74: -1.38372199e-13 + art_sys_75: -4.18243156e-20 + art_sys_76: -2.11516273e-17 + art_sys_77: -2.00530116e-16 + art_sys_78: -6.28732558e-17 + art_sys_79: 2.57282884e-21 + art_sys_80: 8.34986173e-13 + art_sys_81: 3.01952135e-18 + art_sys_82: 1.68321580e-18 + art_sys_83: -7.96578186e-18 + art_sys_84: -4.87966561e-14 + art_sys_85: 1.19099591e-18 + art_sys_86: 4.12772006e-18 + art_sys_87: 6.89200677e-20 + art_sys_88: 3.92991132e-20 + art_sys_89: 8.16471060e-21 + art_sys_90: 4.66217062e-12 + art_sys_91: 8.12901891e-12 + art_sys_92: -1.62233362e-14 + art_sys_93: -2.87625685e-06 + art_sys_94: -1.34132606e-13 + art_sys_95: 3.45511777e-14 + art_sys_96: -4.29493979e-22 + art_sys_97: -9.36062089e-16 + art_sys_98: 2.89654748e-14 + art_sys_99: 3.41875658e-07 + art_sys_100: -3.07636046e-18 + art_sys_101: 2.45219777e-15 + art_sys_102: 1.64799630e-23 + art_sys_103: -2.07558039e-22 + art_sys_104: 1.87804871e-14 + art_sys_105: -1.75010461e-23 + art_sys_106: -3.35940992e-15 + art_sys_107: -9.40634263e-09 + art_sys_108: -1.20720501e-23 + art_sys_109: 2.97076926e-19 + art_sys_110: 4.75712822e-24 + art_sys_111: 4.62820380e-17 + art_sys_112: -2.04562107e-23 + art_sys_113: 4.31704780e-26 + art_sys_114: -7.52158082e-18 + art_sys_115: -5.48843840e-24 + art_sys_116: 1.48326676e-21 + art_sys_117: 3.21957460e-26 + art_sys_118: -5.02281926e-18 + art_sys_119: 5.03079895e-25 + art_sys_120: 2.97251229e-18 + art_sys_121: -2.95139124e-22 + art_sys_122: 1.36326965e-18 + art_sys_123: 5.23245374e-24 + art_sys_124: -5.39670120e-19 + art_sys_125: 2.87572131e-19 + art_sys_126: 1.75295136e-22 + art_sys_127: 6.36842586e-20 + art_sys_128: -1.96795622e-23 + art_sys_129: 1.60840461e-23 + art_sys_130: -5.87298493e-23 + art_sys_131: 5.34611649e-23 + art_sys_132: -1.59152064e-19 + art_sys_133: -8.36160119e-23 + art_sys_134: 1.88715063e-22 + art_sys_135: 9.21931254e-20 + art_sys_136: 9.06420049e-22 + art_sys_137: -7.54020632e-20 + art_sys_138: -1.77807746e-21 + art_sys_139: -1.15744581e-20 + art_sys_140: -1.32604363e-11 + art_sys_141: -6.73075279e-20 + art_sys_142: 0.0 + art_sys_143: 1.06959308e-18 + art_sys_144: 4.85941304e-19 + art_sys_145: 1.90677632e-19 + art_sys_146: -1.32164659e-25 + art_sys_147: 9.38496874e-27 + art_sys_148: 9.29405163e-25 + art_sys_149: 1.75645384e-25 + art_sys_150: 2.90551425e-26 + art_sys_151: -3.58450374e-24 + art_sys_152: 2.94826734e-25 + art_sys_153: 8.74903443e-26 + art_sys_154: -3.60680234e-24 + art_sys_155: 1.80203464e-23 + art_sys_156: 6.73432593e-23 + art_sys_157: 2.68981577e-21 + art_sys_158: -0.0 + art_sys_159: 1.34017551e-20 + art_sys_160: 1.34017551e-20 + art_sys_161: 8.31279653e-22 + art_sys_162: -2.74242823e-34 + art_sys_163: -0.0 + art_sys_164: -1.54665734e-34 + art_sys_165: -5.96856082e-32 + art_sys_166: 2.62662433e-32 + art_sys_167: -5.32654399e-33 + art_sys_168: -7.04258515e-33 + art_sys_169: 3.69860413e-32 + art_sys_170: 3.25578001e-32 + art_sys_171: -2.49112125e-31 + art_sys_172: 9.67479037e-31 + art_sys_173: -2.18848355e-31 + art_sys_174: 1.13009020e-34 + art_sys_175: -1.59542755e-33 + art_sys_176: 1.37539688e-32 + art_sys_177: 3.78106231e-33 + art_sys_178: 1.82494023e-34 + art_sys_179: -1.76385732e-35 + art_sys_180: -2.78889810e-35 + art_sys_181: 6.74533185e-36 + art_sys_182: 1.63167751e-35 + art_sys_183: 6.85718136e-38 + art_sys_184: 6.88012019e-40 + art_sys_185: -1.04754964e-35 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -68917,189 +68917,189 @@ bins: uncorrelated_uncertainty: 1.26343000e-02 - art_sys_1: -1.38489654e-06 art_sys_2: -1.37599645e-05 - art_sys_3: 3.43624912e-17 - art_sys_4: 8.00728633e-17 - art_sys_5: 3.94856760e-17 + art_sys_3: -5.74077173e-17 + art_sys_4: -4.23210825e-16 + art_sys_5: -1.41180009e-17 art_sys_6: -3.14943578e-05 - art_sys_7: 7.01235213e-16 - art_sys_8: -9.41075750e-17 - art_sys_9: -1.07436560e-16 + art_sys_7: 1.61109561e-15 + art_sys_8: 2.82027077e-19 + art_sys_9: 4.22113485e-16 art_sys_10: -2.42579302e-05 - art_sys_11: 3.93543435e-16 - art_sys_12: 3.07453760e-16 - art_sys_13: 1.22647013e-04 - art_sys_14: 1.17470443e-15 - art_sys_15: -1.94827658e-17 - art_sys_16: -2.71093893e-16 + art_sys_11: 6.61622462e-15 + art_sys_12: 2.91906372e-16 + art_sys_13: -1.22647013e-04 + art_sys_14: -5.42402532e-17 + art_sys_15: 5.03935667e-16 + art_sys_16: -1.05703913e-15 art_sys_17: -3.21312810e-04 - art_sys_18: -7.93768747e-18 - art_sys_19: -8.62585341e-17 + art_sys_18: -8.02080965e-17 + art_sys_19: 7.85561085e-18 art_sys_20: -9.46036989e-04 - art_sys_21: -6.35816320e-16 + art_sys_21: 7.03650041e-16 art_sys_22: -4.77638716e-04 - art_sys_23: 3.59939535e-16 - art_sys_24: 3.69762387e-16 - art_sys_25: -3.61707549e-18 - art_sys_26: -5.74306132e-17 - art_sys_27: 4.93867467e-17 + art_sys_23: 2.12473820e-16 + art_sys_24: 4.12057943e-16 + art_sys_25: -1.03928530e-16 + art_sys_26: 7.13752174e-17 + art_sys_27: 7.51821633e-17 art_sys_28: -1.86033720e-03 - art_sys_29: 9.03068252e-17 - art_sys_30: -2.39965795e-16 - art_sys_31: -8.43404605e-04 - art_sys_32: -1.06129384e-17 - art_sys_33: 1.07964911e-17 - art_sys_34: 7.69978923e-16 - art_sys_35: -4.11087349e-03 - art_sys_36: -8.11647683e-15 - art_sys_37: 2.29835876e-14 - art_sys_38: -3.05205509e-15 - art_sys_39: -8.49004163e-16 - art_sys_40: 2.24668953e-16 - art_sys_41: -2.91737675e-16 - art_sys_42: -6.31536429e-17 - art_sys_43: 1.54964706e-16 - art_sys_44: 1.19172305e-17 - art_sys_45: -1.20231587e-17 - art_sys_46: 1.87226888e-17 - art_sys_47: -9.63373757e-12 - art_sys_48: -5.44220778e-12 - art_sys_49: -4.27521325e-11 - art_sys_50: 1.79876293e-17 - art_sys_51: 1.51124502e-17 - art_sys_52: 6.94111266e-03 - art_sys_53: -3.23418220e-11 - art_sys_54: 8.64751330e-13 - art_sys_55: -1.01122310e-12 - art_sys_56: -1.06043356e-03 - art_sys_57: 2.63805307e-18 - art_sys_58: -1.11235386e-19 - art_sys_59: 2.85621106e-15 - art_sys_60: 6.91626533e-16 - art_sys_61: 1.15694086e-15 - art_sys_62: 3.25000234e-04 - art_sys_63: -8.36953465e-15 - art_sys_64: -4.71080142e-16 - art_sys_65: -1.91549958e-17 - art_sys_66: -1.44160293e-16 - art_sys_67: -2.41121713e-17 - art_sys_68: -8.54992682e-18 - art_sys_69: 3.56565525e-17 - art_sys_70: 1.33912728e-17 - art_sys_71: 1.15021430e-17 - art_sys_72: -3.52617815e-19 - art_sys_73: 2.97968288e-19 - art_sys_74: 4.72722699e-15 - art_sys_75: -2.32890316e-19 - art_sys_76: 6.60553385e-17 - art_sys_77: -3.41482284e-16 - art_sys_78: 7.79673330e-17 - art_sys_79: 1.60628020e-19 - art_sys_80: -1.31605967e-16 - art_sys_81: 5.94268656e-14 - art_sys_82: -5.74694290e-12 - art_sys_83: -3.79321077e-17 - art_sys_84: -1.95935028e-17 - art_sys_85: 1.59275783e-17 - art_sys_86: 3.22824488e-18 - art_sys_87: -8.68836821e-15 - art_sys_88: -5.65488847e-16 - art_sys_89: -3.87702008e-19 - art_sys_90: -6.10368606e-18 - art_sys_91: -1.37856053e-13 - art_sys_92: 9.88592042e-20 - art_sys_93: -9.60931642e-20 - art_sys_94: -2.28638356e-19 - art_sys_95: -5.38140558e-14 - art_sys_96: -1.64276888e-11 - art_sys_97: -1.10450207e-05 - art_sys_98: -1.17465953e-13 - art_sys_99: -2.79105044e-13 - art_sys_100: 3.06367030e-12 - art_sys_101: 7.00196368e-12 - art_sys_102: -8.05772515e-13 - art_sys_103: 1.48321375e-06 - art_sys_104: -1.83730132e-13 - art_sys_105: 1.01252062e-19 - art_sys_106: 2.25891543e-13 - art_sys_107: -6.10163814e-16 - art_sys_108: -3.77652193e-22 - art_sys_109: 1.39254750e-23 - art_sys_110: 1.98852004e-14 - art_sys_111: -1.36522072e-12 - art_sys_112: -8.95159719e-15 - art_sys_113: -3.96484241e-08 - art_sys_114: 5.74563964e-24 - art_sys_115: 3.19796042e-15 - art_sys_116: -1.93074522e-19 - art_sys_117: -5.15213730e-24 - art_sys_118: -5.82823546e-15 - art_sys_119: -5.71306936e-20 - art_sys_120: 1.00092382e-16 - art_sys_121: 4.18316661e-23 - art_sys_122: 1.33935955e-14 - art_sys_123: 6.87917998e-23 - art_sys_124: -4.27473423e-16 - art_sys_125: -8.18477115e-26 - art_sys_126: 1.44621987e-20 - art_sys_127: -1.10612444e-22 - art_sys_128: 1.08007514e-18 - art_sys_129: -7.73308636e-25 - art_sys_130: 1.81868652e-22 - art_sys_131: 1.24884141e-24 - art_sys_132: 8.57777293e-18 - art_sys_133: -9.51240944e-23 - art_sys_134: -2.38003780e-21 - art_sys_135: -6.88198926e-19 - art_sys_136: -7.70547875e-27 - art_sys_137: -2.32467653e-22 - art_sys_138: 3.68296714e-19 - art_sys_139: 8.01906097e-23 - art_sys_140: -5.08849541e-26 - art_sys_141: -3.42522949e-23 - art_sys_142: -6.80300748e-20 - art_sys_143: 9.56673277e-26 - art_sys_144: -7.59960061e-24 - art_sys_145: -1.28680977e-19 - art_sys_146: -1.78568849e-22 - art_sys_147: 1.57910109e-25 - art_sys_148: 4.16897665e-26 - art_sys_149: 6.63067449e-20 - art_sys_150: 1.99277428e-21 - art_sys_151: -2.34930827e-20 - art_sys_152: -1.02566843e-23 - art_sys_153: -3.50156523e-20 - art_sys_154: 5.36404858e-11 - art_sys_155: -3.50078486e-22 - art_sys_156: 0.0 - art_sys_157: -6.07351271e-19 - art_sys_158: -0.0 - art_sys_159: 1.50117438e-19 - art_sys_160: 1.84530283e-20 - art_sys_161: 3.89877449e-21 - art_sys_162: 3.89877449e-21 - art_sys_163: -5.14729000e-21 - art_sys_164: -5.14729000e-21 - art_sys_165: 4.46135767e-35 - art_sys_166: -1.37357174e-35 - art_sys_167: -0.0 - art_sys_168: 1.39281574e-33 - art_sys_169: -1.28569857e-32 - art_sys_170: 3.57397021e-31 - art_sys_171: -3.03282726e-32 - art_sys_172: -1.14515394e-31 - art_sys_173: -2.20470378e-31 - art_sys_174: -1.93214342e-33 - art_sys_175: -2.52638235e-34 - art_sys_176: -1.12111651e-34 - art_sys_177: 1.87660662e-35 - art_sys_178: 3.88125930e-37 - art_sys_179: 2.96833067e-34 - art_sys_180: 3.03708900e-33 - art_sys_181: 2.06168285e-34 - art_sys_182: 4.45439181e-35 - art_sys_183: -2.07197141e-37 - art_sys_184: -4.63298021e-39 - art_sys_185: -1.14300285e-39 + art_sys_29: -8.30797579e-14 + art_sys_30: 8.30851968e-15 + art_sys_31: 7.65649982e-15 + art_sys_32: -8.98351100e-15 + art_sys_33: -7.78291817e-16 + art_sys_34: 1.00236099e-15 + art_sys_35: -2.36605700e-16 + art_sys_36: 1.21727831e-16 + art_sys_37: 2.81974505e-14 + art_sys_38: -2.95552112e-16 + art_sys_39: 8.43404606e-04 + art_sys_40: 7.17499378e-15 + art_sys_41: 5.65527598e-16 + art_sys_42: -1.46512596e-19 + art_sys_43: 1.05999902e-12 + art_sys_44: -4.83180697e-17 + art_sys_45: -4.11087349e-03 + art_sys_46: 4.63007739e-12 + art_sys_47: 7.57146512e-18 + art_sys_48: -3.82975388e-12 + art_sys_49: -2.25191662e-11 + art_sys_50: 2.71913533e-18 + art_sys_51: 9.12891819e-18 + art_sys_52: -1.69571285e-12 + art_sys_53: -6.94111266e-03 + art_sys_54: -3.20297108e-14 + art_sys_55: -4.91357426e-14 + art_sys_56: 1.06043367e-03 + art_sys_57: 4.12897187e-16 + art_sys_58: 1.68348101e-15 + art_sys_59: -1.21941339e-15 + art_sys_60: 1.71494470e-17 + art_sys_61: -4.09224417e-16 + art_sys_62: -8.57654900e-17 + art_sys_63: 4.52889214e-17 + art_sys_64: -3.27709126e-17 + art_sys_65: -1.80761013e-17 + art_sys_66: 4.27044178e-13 + art_sys_67: -1.18549222e-17 + art_sys_68: -3.26252897e-18 + art_sys_69: -3.03915693e-13 + art_sys_70: -1.10955794e-13 + art_sys_71: -7.45159774e-12 + art_sys_72: 3.25000193e-04 + art_sys_73: -1.65192484e-15 + art_sys_74: 5.31955388e-13 + art_sys_75: 1.60351384e-19 + art_sys_76: 1.72343618e-16 + art_sys_77: 7.63888164e-16 + art_sys_78: 2.42910800e-16 + art_sys_79: -2.55276551e-21 + art_sys_80: -3.17986465e-12 + art_sys_81: -9.64458785e-18 + art_sys_82: -6.68705936e-18 + art_sys_83: 3.11518648e-17 + art_sys_84: 1.88477837e-13 + art_sys_85: -4.97105270e-18 + art_sys_86: -1.58633934e-17 + art_sys_87: -2.70603097e-19 + art_sys_88: -1.63718472e-19 + art_sys_89: -3.23592418e-20 + art_sys_90: -1.78893934e-11 + art_sys_91: -3.11031389e-11 + art_sys_92: 7.07543959e-14 + art_sys_93: 1.10449875e-05 + art_sys_94: 5.65216578e-13 + art_sys_95: -1.16919342e-13 + art_sys_96: 1.86361661e-21 + art_sys_97: 3.89252664e-15 + art_sys_98: -1.15963770e-13 + art_sys_99: -1.48322372e-06 + art_sys_100: 1.27870179e-17 + art_sys_101: -1.03268647e-14 + art_sys_102: -6.82558534e-23 + art_sys_103: 7.22769142e-22 + art_sys_104: -7.88371329e-14 + art_sys_105: 8.37965537e-23 + art_sys_106: 1.39547739e-14 + art_sys_107: 3.96456294e-08 + art_sys_108: 4.32175384e-23 + art_sys_109: -1.22916062e-18 + art_sys_110: -2.01105587e-23 + art_sys_111: -1.57952053e-16 + art_sys_112: 7.04637104e-23 + art_sys_113: -3.59093671e-26 + art_sys_114: 4.10118252e-18 + art_sys_115: 1.31176111e-24 + art_sys_116: -5.96743631e-21 + art_sys_117: -3.52498335e-25 + art_sys_118: 4.26231508e-18 + art_sys_119: -8.45085953e-25 + art_sys_120: -3.84939090e-18 + art_sys_121: 1.24906228e-21 + art_sys_122: -2.01377911e-18 + art_sys_123: -1.95309436e-23 + art_sys_124: 8.04100347e-19 + art_sys_125: -6.68529054e-19 + art_sys_126: -7.20197116e-22 + art_sys_127: -1.11626774e-19 + art_sys_128: 7.72404454e-23 + art_sys_129: -6.57516124e-23 + art_sys_130: 2.38417476e-22 + art_sys_131: -2.22398795e-22 + art_sys_132: 7.15694142e-19 + art_sys_133: 3.47126463e-22 + art_sys_134: -7.56164693e-22 + art_sys_135: -3.72093879e-19 + art_sys_136: -3.74340184e-21 + art_sys_137: 3.11988480e-19 + art_sys_138: 7.38315949e-21 + art_sys_139: 4.80855975e-20 + art_sys_140: 5.51201453e-11 + art_sys_141: 2.79778035e-19 + art_sys_142: -0.0 + art_sys_143: -4.44606628e-18 + art_sys_144: -2.01995352e-18 + art_sys_145: -7.92586480e-19 + art_sys_146: 5.42871958e-25 + art_sys_147: -4.61963387e-26 + art_sys_148: -3.91325933e-24 + art_sys_149: -6.44278024e-25 + art_sys_150: -1.16125533e-25 + art_sys_151: 1.47857936e-23 + art_sys_152: -1.20635178e-24 + art_sys_153: -3.65412795e-25 + art_sys_154: 1.49799486e-23 + art_sys_155: -7.48972883e-23 + art_sys_156: -2.79939579e-22 + art_sys_157: -1.11808474e-20 + art_sys_158: 0.0 + art_sys_159: -5.57096672e-20 + art_sys_160: -5.57096672e-20 + art_sys_161: -3.45543639e-21 + art_sys_162: 1.13995975e-33 + art_sys_163: 0.0 + art_sys_164: 6.42905811e-34 + art_sys_165: -4.78678163e-32 + art_sys_166: -5.03630445e-33 + art_sys_167: -1.22033560e-32 + art_sys_168: -1.09122812e-32 + art_sys_169: 4.83684959e-32 + art_sys_170: -3.91710193e-31 + art_sys_171: -4.20704353e-31 + art_sys_172: 9.15346737e-31 + art_sys_173: -2.85184215e-31 + art_sys_174: -4.69742074e-34 + art_sys_175: -1.73791231e-33 + art_sys_176: 5.09206925e-33 + art_sys_177: 4.52256093e-33 + art_sys_178: 2.24908808e-34 + art_sys_179: 4.44507551e-35 + art_sys_180: -1.92284020e-35 + art_sys_181: -6.57052545e-36 + art_sys_182: 3.77785354e-35 + art_sys_183: 2.06719030e-37 + art_sys_184: -3.99725697e-39 + art_sys_185: 4.35440711e-35 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -69208,189 +69208,189 @@ bins: uncorrelated_uncertainty: 4.24595000e-03 - art_sys_1: -1.80558495e-07 art_sys_2: -1.01152237e-06 - art_sys_3: 7.14168732e-18 - art_sys_4: 2.98374521e-16 - art_sys_5: 8.22764770e-18 + art_sys_3: -4.38311417e-18 + art_sys_4: -5.85123366e-16 + art_sys_5: -2.24293139e-19 art_sys_6: -2.38400528e-06 - art_sys_7: -1.03451966e-16 - art_sys_8: -8.51579387e-18 - art_sys_9: 6.80750680e-17 + art_sys_7: -1.84909842e-16 + art_sys_8: -1.43567083e-17 + art_sys_9: 4.39532962e-16 art_sys_10: -1.44876992e-06 - art_sys_11: 9.92764718e-17 - art_sys_12: 3.22182208e-17 - art_sys_13: 2.21927531e-05 - art_sys_14: -1.32718963e-16 - art_sys_15: -3.25938305e-17 - art_sys_16: 9.17854664e-16 + art_sys_11: -1.32733826e-15 + art_sys_12: -1.15196005e-16 + art_sys_13: -2.21927531e-05 + art_sys_14: -9.71033881e-18 + art_sys_15: 1.47239887e-16 + art_sys_16: -2.83694292e-16 art_sys_17: -8.01566573e-07 - art_sys_18: 3.36450767e-17 - art_sys_19: -9.91017431e-16 + art_sys_18: -2.19229480e-18 + art_sys_19: -6.60923570e-16 art_sys_20: -1.12124507e-04 - art_sys_21: -3.91560085e-17 + art_sys_21: 2.26198225e-16 art_sys_22: -1.20305744e-04 - art_sys_23: -2.04366340e-16 - art_sys_24: -3.02483393e-16 - art_sys_25: -1.03098442e-17 - art_sys_26: -1.13217501e-17 - art_sys_27: 5.82053906e-17 - art_sys_28: 6.88557239e-05 - art_sys_29: -2.88488201e-17 - art_sys_30: -4.61087068e-17 - art_sys_31: -1.05655474e-03 - art_sys_32: -1.47156353e-17 - art_sys_33: 2.97479645e-16 - art_sys_34: 2.41199413e-16 - art_sys_35: 8.31833621e-04 - art_sys_36: -1.10871517e-13 - art_sys_37: 2.13109900e-14 - art_sys_38: 5.14120155e-15 - art_sys_39: 2.84477102e-15 - art_sys_40: -1.88944241e-15 - art_sys_41: 2.54407509e-16 - art_sys_42: 6.51760685e-16 - art_sys_43: -5.55113529e-16 - art_sys_44: -3.59845369e-17 - art_sys_45: -3.55098138e-17 - art_sys_46: -5.59890393e-18 - art_sys_47: -3.33851723e-12 - art_sys_48: -1.40348060e-11 - art_sys_49: 1.72612235e-10 - art_sys_50: 1.12045647e-17 - art_sys_51: 1.25541180e-17 - art_sys_52: 2.59687773e-03 - art_sys_53: 7.36453688e-11 - art_sys_54: -2.66973900e-12 - art_sys_55: 3.34097103e-12 - art_sys_56: 3.23335456e-03 - art_sys_57: -5.37058067e-18 - art_sys_58: 2.76804258e-19 - art_sys_59: -4.96891953e-15 - art_sys_60: -2.01850547e-15 - art_sys_61: -4.65436026e-15 - art_sys_62: -7.52522344e-04 - art_sys_63: 1.76674656e-14 - art_sys_64: 1.91406269e-15 - art_sys_65: 5.54847528e-17 - art_sys_66: 6.28162379e-16 - art_sys_67: 6.77376046e-17 - art_sys_68: 2.60519426e-17 - art_sys_69: -1.37029111e-16 - art_sys_70: -5.23375150e-17 - art_sys_71: -4.65048708e-17 - art_sys_72: 1.48493051e-18 - art_sys_73: -1.30166565e-18 - art_sys_74: -1.89801703e-14 - art_sys_75: 9.70158663e-19 - art_sys_76: -3.36525853e-16 - art_sys_77: 1.27607655e-15 - art_sys_78: -3.16650018e-16 - art_sys_79: -5.83717425e-19 - art_sys_80: 5.05399381e-16 - art_sys_81: -2.39056236e-13 - art_sys_82: 2.31179761e-11 - art_sys_83: 1.55889848e-16 - art_sys_84: 6.97801148e-17 - art_sys_85: -6.23527864e-17 - art_sys_86: -1.51288729e-17 - art_sys_87: 2.59583110e-14 - art_sys_88: 3.26281995e-15 - art_sys_89: 6.30504584e-19 - art_sys_90: 2.92452452e-17 - art_sys_91: 5.49751173e-13 - art_sys_92: -3.97112555e-19 - art_sys_93: 3.79575726e-19 - art_sys_94: 1.25944007e-18 - art_sys_95: 2.16680636e-13 - art_sys_96: 6.59003272e-11 - art_sys_97: 4.44307582e-05 - art_sys_98: 3.50495857e-13 - art_sys_99: 8.45662727e-13 - art_sys_100: -9.13799828e-12 - art_sys_101: -2.09431806e-11 - art_sys_102: 4.77913664e-12 - art_sys_103: -4.42397650e-06 - art_sys_104: 5.48207414e-13 - art_sys_105: -3.90413166e-19 - art_sys_106: -1.34767278e-12 - art_sys_107: 3.62015776e-15 - art_sys_108: 1.81423609e-21 - art_sys_109: -8.44093815e-23 - art_sys_110: -7.66227022e-14 - art_sys_111: 8.10130210e-12 - art_sys_112: 3.43991438e-14 - art_sys_113: 2.35157796e-07 - art_sys_114: -2.24834597e-23 - art_sys_115: -1.89196848e-14 - art_sys_116: 7.43934346e-19 - art_sys_117: 3.33360889e-23 - art_sys_118: 2.23987865e-14 - art_sys_119: 2.20191689e-19 - art_sys_120: -3.85702624e-16 - art_sys_121: -2.45320725e-22 - art_sys_122: -5.16075185e-14 - art_sys_123: -4.27662587e-22 - art_sys_124: 1.66835492e-15 - art_sys_125: 1.31309846e-25 - art_sys_126: -4.86682258e-20 - art_sys_127: 6.49756569e-22 - art_sys_128: -9.79813931e-18 - art_sys_129: 3.16466021e-24 - art_sys_130: -1.07718952e-21 - art_sys_131: -8.17669646e-24 - art_sys_132: -3.54252900e-17 - art_sys_133: 5.69910645e-22 - art_sys_134: 9.57225597e-21 - art_sys_135: 3.30601017e-18 - art_sys_136: -3.19162101e-25 - art_sys_137: 1.28735770e-21 - art_sys_138: -1.28271860e-18 - art_sys_139: -4.00396083e-22 - art_sys_140: 1.03100027e-25 - art_sys_141: 3.75612163e-22 - art_sys_142: 5.90023944e-19 - art_sys_143: 3.75364929e-24 - art_sys_144: 3.75997120e-23 - art_sys_145: 5.97229674e-19 - art_sys_146: 8.04946631e-22 - art_sys_147: -7.92736782e-25 - art_sys_148: -1.92786214e-25 - art_sys_149: -2.68262535e-19 - art_sys_150: -8.18100776e-21 - art_sys_151: 9.27585893e-20 - art_sys_152: 4.11283577e-23 - art_sys_153: 1.36648337e-19 - art_sys_154: -2.06684774e-10 - art_sys_155: 1.36104571e-21 - art_sys_156: -0.0 - art_sys_157: 2.33522798e-18 - art_sys_158: 0.0 - art_sys_159: -5.76233485e-19 - art_sys_160: -7.10227133e-20 - art_sys_161: -1.49566059e-20 - art_sys_162: -1.49566059e-20 - art_sys_163: 1.97235016e-20 - art_sys_164: 1.97235016e-20 - art_sys_165: -1.70941637e-34 - art_sys_166: 5.26249016e-35 - art_sys_167: 0.0 - art_sys_168: 7.39776688e-33 - art_sys_169: -9.36122972e-32 - art_sys_170: -2.00203903e-30 - art_sys_171: -1.45761344e-29 - art_sys_172: -4.66325650e-31 - art_sys_173: 3.06464035e-31 - art_sys_174: -1.01213427e-31 - art_sys_175: -6.18450176e-33 - art_sys_176: -3.03522973e-33 - art_sys_177: -9.25523614e-35 - art_sys_178: -4.57144187e-35 - art_sys_179: -1.15023534e-33 - art_sys_180: -1.16545926e-32 - art_sys_181: -9.09744200e-34 - art_sys_182: 1.24164909e-33 - art_sys_183: -6.09380020e-36 - art_sys_184: -1.54552618e-37 - art_sys_185: 5.27719144e-39 + art_sys_23: 5.34675990e-16 + art_sys_24: -1.15503801e-16 + art_sys_25: -4.64875917e-18 + art_sys_26: -3.20270728e-17 + art_sys_27: -1.86229812e-17 + art_sys_28: 6.88557238e-05 + art_sys_29: -5.23854378e-14 + art_sys_30: 4.41867212e-14 + art_sys_31: 2.60886018e-14 + art_sys_32: 3.90072591e-15 + art_sys_33: 2.13823302e-15 + art_sys_34: 1.23615956e-16 + art_sys_35: -1.58198457e-16 + art_sys_36: -1.77874184e-17 + art_sys_37: 3.55871827e-14 + art_sys_38: 3.71373350e-16 + art_sys_39: 1.05655474e-03 + art_sys_40: 8.98204924e-15 + art_sys_41: -3.81367281e-16 + art_sys_42: -1.29687051e-17 + art_sys_43: -2.14452427e-13 + art_sys_44: -5.46490495e-18 + art_sys_45: 8.31833622e-04 + art_sys_46: 1.74929937e-12 + art_sys_47: -3.46616685e-17 + art_sys_48: 1.30989707e-11 + art_sys_49: 5.30381190e-11 + art_sys_50: 1.61857530e-17 + art_sys_51: 9.50591081e-19 + art_sys_52: 1.08624095e-11 + art_sys_53: -2.59687773e-03 + art_sys_54: 1.16343751e-13 + art_sys_55: 1.54724188e-14 + art_sys_56: -3.23335485e-03 + art_sys_57: -7.53013477e-16 + art_sys_58: -3.65233008e-15 + art_sys_59: 3.73580320e-15 + art_sys_60: -4.02939067e-17 + art_sys_61: 8.40727964e-16 + art_sys_62: 2.00484453e-16 + art_sys_63: -1.23701370e-16 + art_sys_64: 7.25588909e-17 + art_sys_65: 4.23162043e-17 + art_sys_66: -9.88817514e-13 + art_sys_67: 2.65101771e-17 + art_sys_68: 5.92020219e-18 + art_sys_69: 1.20038754e-12 + art_sys_70: 2.58625777e-13 + art_sys_71: 1.72543856e-11 + art_sys_72: -7.52522244e-04 + art_sys_73: 1.63422784e-14 + art_sys_74: -2.12714246e-12 + art_sys_75: -6.67860178e-19 + art_sys_76: 8.15056015e-17 + art_sys_77: -3.13840239e-15 + art_sys_78: -9.70606333e-16 + art_sys_79: 6.63020337e-20 + art_sys_80: 1.30318153e-11 + art_sys_81: 5.61497520e-17 + art_sys_82: 2.52605538e-17 + art_sys_83: -1.20459445e-16 + art_sys_84: -7.48147746e-13 + art_sys_85: 1.65893911e-17 + art_sys_86: 6.42106521e-17 + art_sys_87: 1.07549985e-18 + art_sys_88: 5.71667939e-19 + art_sys_89: 1.25096977e-19 + art_sys_90: 7.20941671e-11 + art_sys_91: 1.22412342e-10 + art_sys_92: -2.08075446e-13 + art_sys_93: -4.44306376e-05 + art_sys_94: -3.35782741e-12 + art_sys_95: 4.32296405e-13 + art_sys_96: -5.20469365e-21 + art_sys_97: -1.52355136e-14 + art_sys_98: 6.52532360e-13 + art_sys_99: 4.42401480e-06 + art_sys_100: -4.91481532e-17 + art_sys_101: 6.56485032e-14 + art_sys_102: 4.42415414e-22 + art_sys_103: -2.49324380e-21 + art_sys_104: 4.24734659e-13 + art_sys_105: -4.99515563e-22 + art_sys_106: -4.71716286e-14 + art_sys_107: -2.35139074e-07 + art_sys_108: -2.06978518e-22 + art_sys_109: 3.88830184e-18 + art_sys_110: 1.20631440e-22 + art_sys_111: 9.01362915e-16 + art_sys_112: -2.21747670e-22 + art_sys_113: 1.96476180e-24 + art_sys_114: 4.69872488e-18 + art_sys_115: -4.88369461e-23 + art_sys_116: 2.31030551e-20 + art_sys_117: 9.55024116e-25 + art_sys_118: 4.92157978e-18 + art_sys_119: -6.51034425e-25 + art_sys_120: 3.13380784e-18 + art_sys_121: -5.23677847e-21 + art_sys_122: 2.75766221e-18 + art_sys_123: 7.95993002e-23 + art_sys_124: -1.12085985e-18 + art_sys_125: 1.87192156e-18 + art_sys_126: 2.81131471e-21 + art_sys_127: 2.24600326e-19 + art_sys_128: -3.28626303e-22 + art_sys_129: 2.62759469e-22 + art_sys_130: -9.36027077e-22 + art_sys_131: 8.69724579e-22 + art_sys_132: -2.84959140e-18 + art_sys_133: -1.34829100e-21 + art_sys_134: 2.90299309e-21 + art_sys_135: 1.42496179e-18 + art_sys_136: 1.44485706e-20 + art_sys_137: -1.20209566e-18 + art_sys_138: -2.84630558e-20 + art_sys_139: -1.85330168e-19 + art_sys_140: -2.12393509e-10 + art_sys_141: -1.07817875e-18 + art_sys_142: 0.0 + art_sys_143: 1.71316051e-17 + art_sys_144: 7.78327967e-18 + art_sys_145: 3.05420651e-18 + art_sys_146: -2.78579181e-24 + art_sys_147: 4.48812006e-26 + art_sys_148: 1.40748502e-23 + art_sys_149: 3.23276070e-24 + art_sys_150: 4.80318195e-25 + art_sys_151: -5.79433294e-23 + art_sys_152: 4.74627961e-24 + art_sys_153: 1.37768438e-24 + art_sys_154: -5.78011718e-23 + art_sys_155: 2.88768158e-22 + art_sys_156: 1.07884517e-21 + art_sys_157: 4.30830792e-20 + art_sys_158: -0.0 + art_sys_159: 2.14662699e-19 + art_sys_160: 2.14662699e-19 + art_sys_161: 1.33138932e-20 + art_sys_162: -4.39229195e-33 + art_sys_163: -0.0 + art_sys_164: -2.47712982e-33 + art_sys_165: -2.47467660e-30 + art_sys_166: 1.03974554e-30 + art_sys_167: -3.66453049e-31 + art_sys_168: -4.52871287e-31 + art_sys_169: 2.07887566e-30 + art_sys_170: -1.78216500e-30 + art_sys_171: -1.49263734e-29 + art_sys_172: 5.80299525e-29 + art_sys_173: -1.57389491e-29 + art_sys_174: 1.81019065e-33 + art_sys_175: -2.86091236e-31 + art_sys_176: 1.03476904e-30 + art_sys_177: 1.83337184e-31 + art_sys_178: 9.25293139e-33 + art_sys_179: -1.67845540e-33 + art_sys_180: -1.42189317e-33 + art_sys_181: 2.04610102e-34 + art_sys_182: 9.55828290e-34 + art_sys_183: 3.87033541e-36 + art_sys_184: 3.96591690e-39 + art_sys_185: -1.67779762e-34 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -69499,189 +69499,189 @@ bins: uncorrelated_uncertainty: 1.37002000e-03 - art_sys_1: -1.14437486e-08 art_sys_2: -7.11510434e-08 - art_sys_3: -2.98035957e-19 - art_sys_4: -4.69572143e-18 - art_sys_5: 8.80344213e-20 + art_sys_3: 2.38804405e-19 + art_sys_4: 2.06111989e-17 + art_sys_5: 1.85301087e-19 art_sys_6: -1.31177234e-07 - art_sys_7: -1.23573809e-17 - art_sys_8: -2.77076547e-19 - art_sys_9: 6.64428070e-18 + art_sys_7: -4.24672444e-17 + art_sys_8: -6.62941899e-19 + art_sys_9: -1.64352585e-17 art_sys_10: 1.05104293e-07 - art_sys_11: -3.65385686e-17 - art_sys_12: -2.43344376e-17 - art_sys_13: 9.34615417e-07 - art_sys_14: -7.27540014e-17 - art_sys_15: -3.68441575e-18 - art_sys_16: -2.33886448e-18 + art_sys_11: -1.99502590e-16 + art_sys_12: -1.45600704e-17 + art_sys_13: -9.34615417e-07 + art_sys_14: 8.47969309e-19 + art_sys_15: -9.75446719e-18 + art_sys_16: 5.93298137e-17 art_sys_17: 6.01308051e-06 - art_sys_18: -4.42413977e-19 - art_sys_19: 9.79391421e-17 + art_sys_18: 6.29320231e-18 + art_sys_19: -1.48448405e-18 art_sys_20: 4.71207149e-06 - art_sys_21: 4.86784745e-17 + art_sys_21: -5.44773619e-17 art_sys_22: -2.61029182e-06 - art_sys_23: 8.28008663e-18 - art_sys_24: -2.19045549e-17 - art_sys_25: -2.81815580e-17 - art_sys_26: 5.45256256e-17 - art_sys_27: -2.15490718e-17 + art_sys_23: -2.60457069e-17 + art_sys_24: -3.60375109e-17 + art_sys_25: 1.89737110e-17 + art_sys_26: -3.68901299e-17 + art_sys_27: 1.35212137e-17 art_sys_28: 6.35230146e-05 - art_sys_29: -4.79495534e-17 - art_sys_30: 4.45104171e-17 - art_sys_31: -8.19415913e-06 - art_sys_32: -8.49945221e-18 - art_sys_33: 2.67030348e-17 - art_sys_34: -2.82737035e-17 - art_sys_35: 2.60686214e-04 - art_sys_36: -1.62391301e-14 - art_sys_37: 9.42208947e-15 - art_sys_38: 6.28898102e-15 - art_sys_39: 5.37095741e-15 - art_sys_40: -1.68594678e-15 - art_sys_41: -1.36412306e-17 - art_sys_42: 1.66168558e-15 - art_sys_43: 1.24184804e-16 - art_sys_44: 1.64208908e-16 - art_sys_45: -1.25421674e-18 - art_sys_46: -2.03980088e-17 - art_sys_47: 5.08104716e-13 - art_sys_48: -6.13956589e-12 - art_sys_49: 1.01942750e-10 - art_sys_50: 5.72671525e-18 - art_sys_51: 6.13868926e-18 - art_sys_52: -2.64813314e-04 - art_sys_53: -1.56203316e-10 - art_sys_54: 4.74981519e-12 - art_sys_55: -5.78575931e-12 - art_sys_56: 1.96067454e-03 - art_sys_57: 9.49837107e-18 - art_sys_58: -5.15563114e-19 - art_sys_59: 8.23669469e-15 - art_sys_60: 2.13868895e-15 - art_sys_61: 7.51267130e-15 - art_sys_62: 1.43692669e-03 - art_sys_63: -3.47920823e-14 - art_sys_64: -3.03119414e-15 - art_sys_65: -1.36180056e-16 - art_sys_66: -8.89111038e-16 - art_sys_67: -1.82239183e-16 - art_sys_68: -6.32596865e-17 - art_sys_69: 2.41436507e-16 - art_sys_70: 8.86721503e-17 - art_sys_71: 7.47781124e-17 - art_sys_72: -2.25635366e-18 - art_sys_73: 1.84387338e-18 - art_sys_74: 3.07279746e-14 - art_sys_75: -1.47106445e-18 - art_sys_76: 3.35488223e-16 - art_sys_77: -2.30286115e-15 - art_sys_78: 4.65343705e-16 - art_sys_79: 8.72992199e-19 - art_sys_80: -8.74887634e-16 - art_sys_81: 3.85872089e-13 - art_sys_82: -3.73159497e-11 - art_sys_83: -2.44151671e-16 - art_sys_84: -1.34829624e-16 - art_sys_85: 1.08446928e-16 - art_sys_86: 1.88957859e-17 - art_sys_87: -6.46892760e-14 - art_sys_88: -2.72162613e-15 - art_sys_89: -3.28836864e-18 - art_sys_90: -1.15545073e-16 - art_sys_91: -8.90070551e-13 - art_sys_92: 6.35920817e-19 - art_sys_93: -6.36083556e-19 - art_sys_94: -1.54643718e-18 - art_sys_95: -3.50653688e-13 - art_sys_96: -1.06834932e-10 - art_sys_97: -7.17178252e-05 - art_sys_98: -8.75368003e-13 - art_sys_99: -2.06812077e-12 - art_sys_100: 2.28175836e-11 - art_sys_101: 5.21332010e-11 - art_sys_102: -5.32060861e-12 - art_sys_103: 1.10466661e-05 - art_sys_104: -1.36981592e-12 - art_sys_105: 1.09279047e-18 - art_sys_106: 1.47541212e-12 - art_sys_107: -4.02634924e-15 - art_sys_108: -3.41149709e-21 - art_sys_109: 8.84618823e-23 - art_sys_110: 2.14704512e-13 - art_sys_111: -9.00676484e-12 - art_sys_112: -9.68415789e-14 - art_sys_113: -2.61803601e-07 - art_sys_114: 6.19400664e-23 - art_sys_115: 2.15235035e-14 - art_sys_116: -2.08516600e-18 - art_sys_117: -2.81033131e-23 - art_sys_118: -6.32687749e-14 - art_sys_119: -6.17040741e-19 - art_sys_120: 1.08069049e-15 - art_sys_121: 2.83422098e-22 - art_sys_122: 1.44751054e-13 - art_sys_123: 4.48463109e-22 - art_sys_124: -4.64061760e-15 - art_sys_125: 2.07096905e-24 - art_sys_126: 1.72788407e-19 - art_sys_127: -7.56429879e-22 - art_sys_128: 2.95194834e-17 - art_sys_129: -6.28329873e-24 - art_sys_130: 1.26414109e-21 - art_sys_131: 7.03982245e-24 - art_sys_132: 9.91921307e-17 - art_sys_133: -6.75286319e-22 - art_sys_134: -2.44278886e-20 - art_sys_135: -1.03137889e-17 - art_sys_136: -1.14536890e-24 - art_sys_137: -1.75004560e-21 - art_sys_138: 2.93359004e-18 - art_sys_139: 6.48816014e-22 - art_sys_140: -7.64981273e-25 - art_sys_141: 1.33102018e-22 - art_sys_142: -4.29301264e-19 - art_sys_143: -6.67347918e-25 - art_sys_144: -6.62124130e-23 - art_sys_145: -1.26915193e-18 - art_sys_146: -1.69673514e-21 - art_sys_147: 1.30148850e-24 - art_sys_148: 3.49818725e-25 - art_sys_149: 7.11545618e-19 - art_sys_150: 1.99544885e-20 - art_sys_151: -2.49342097e-19 - art_sys_152: -1.07065211e-22 - art_sys_153: -3.74825830e-19 - art_sys_154: 5.79183545e-10 - art_sys_155: -3.75557891e-21 - art_sys_156: 0.0 - art_sys_157: -6.57191019e-18 - art_sys_158: -0.0 - art_sys_159: 1.62512478e-18 - art_sys_160: 1.99292053e-19 - art_sys_161: 4.22199700e-20 - art_sys_162: 4.22199700e-20 - art_sys_163: -5.57968347e-20 - art_sys_164: -5.57968347e-20 - art_sys_165: 4.83645221e-34 - art_sys_166: -1.48917185e-34 - art_sys_167: -0.0 - art_sys_168: 7.38530693e-32 - art_sys_169: -5.32800126e-32 - art_sys_170: 1.79644602e-30 - art_sys_171: 7.51265946e-30 - art_sys_172: -4.81322408e-31 - art_sys_173: -9.21266276e-31 - art_sys_174: 8.55421520e-32 - art_sys_175: -4.19270339e-33 - art_sys_176: 1.55621597e-33 - art_sys_177: 1.04627343e-34 - art_sys_178: 2.54778767e-35 - art_sys_179: 3.19201120e-33 - art_sys_180: 3.28857611e-32 - art_sys_181: 1.16539783e-33 - art_sys_182: -5.15700899e-34 - art_sys_183: 8.15742180e-36 - art_sys_184: 7.16975925e-38 - art_sys_185: -9.25596693e-39 + art_sys_29: 1.02231722e-13 + art_sys_30: 3.15219575e-14 + art_sys_31: 9.78361634e-15 + art_sys_32: 1.40315402e-15 + art_sys_33: 2.00782987e-15 + art_sys_34: -8.39830397e-16 + art_sys_35: 1.16489407e-16 + art_sys_36: -6.77058441e-18 + art_sys_37: 2.77251155e-16 + art_sys_38: 2.37408258e-16 + art_sys_39: 8.19415911e-06 + art_sys_40: 5.34177840e-17 + art_sys_41: -2.84722242e-17 + art_sys_42: 1.33334117e-16 + art_sys_43: -6.72192607e-14 + art_sys_44: -3.78985294e-17 + art_sys_45: 2.60686214e-04 + art_sys_46: -1.75892639e-13 + art_sys_47: -1.68340914e-17 + art_sys_48: 9.46000579e-12 + art_sys_49: -9.43622775e-11 + art_sys_50: -1.00859989e-17 + art_sys_51: -8.07762888e-18 + art_sys_52: -1.59585487e-11 + art_sys_53: 2.64813313e-04 + art_sys_54: -2.15623609e-13 + art_sys_55: -3.09387150e-13 + art_sys_56: -1.96067445e-03 + art_sys_57: 1.62781674e-15 + art_sys_58: 7.17572621e-15 + art_sys_59: -4.79605324e-15 + art_sys_60: 7.67230543e-17 + art_sys_61: -1.67055646e-15 + art_sys_62: -3.95640571e-16 + art_sys_63: 2.21867139e-16 + art_sys_64: -1.58391104e-16 + art_sys_65: -7.43603494e-17 + art_sys_66: 1.88811603e-12 + art_sys_67: -5.18019204e-17 + art_sys_68: -1.29534199e-17 + art_sys_69: -1.99433301e-12 + art_sys_70: -4.88712903e-13 + art_sys_71: -3.29440790e-11 + art_sys_72: 1.43692658e-03 + art_sys_73: -1.21110655e-14 + art_sys_74: 3.43861954e-12 + art_sys_75: 1.03934810e-18 + art_sys_76: 1.81886243e-15 + art_sys_77: 4.90489292e-15 + art_sys_78: 1.58904492e-15 + art_sys_79: 3.57089445e-20 + art_sys_80: -2.04274358e-11 + art_sys_81: -4.68562880e-17 + art_sys_82: -4.50529118e-17 + art_sys_83: 2.06852190e-16 + art_sys_84: 1.23296469e-12 + art_sys_85: -3.51204994e-17 + art_sys_86: -1.02943797e-16 + art_sys_87: -1.80739309e-18 + art_sys_88: -1.92778570e-18 + art_sys_89: -1.99588535e-19 + art_sys_90: -1.16050928e-10 + art_sys_91: -2.01886201e-10 + art_sys_92: 5.29680631e-13 + art_sys_93: 7.17176005e-05 + art_sys_94: 3.73801942e-12 + art_sys_95: -6.64834308e-13 + art_sys_96: 1.40631788e-20 + art_sys_97: 4.15510959e-14 + art_sys_98: -1.44496607e-12 + art_sys_99: -1.10467321e-05 + art_sys_100: 1.38317941e-16 + art_sys_101: -5.95232849e-14 + art_sys_102: -4.12041423e-22 + art_sys_103: 6.98339845e-21 + art_sys_104: -6.06869041e-13 + art_sys_105: 6.86402420e-22 + art_sys_106: 1.64269138e-13 + art_sys_107: 2.61786174e-07 + art_sys_108: 2.64796068e-22 + art_sys_109: -1.50227962e-17 + art_sys_110: -1.29881106e-22 + art_sys_111: -8.14330014e-16 + art_sys_112: 6.35127336e-22 + art_sys_113: -2.33024579e-24 + art_sys_114: -1.33395778e-16 + art_sys_115: 2.31230171e-23 + art_sys_116: -6.71892807e-20 + art_sys_117: 3.11831624e-24 + art_sys_118: -4.26456727e-17 + art_sys_119: -8.31273784e-24 + art_sys_120: 1.65919794e-18 + art_sys_121: 1.40131234e-20 + art_sys_122: -2.94293234e-18 + art_sys_123: -1.58965339e-22 + art_sys_124: 1.21609695e-18 + art_sys_125: -4.58852882e-18 + art_sys_126: -7.65442882e-21 + art_sys_127: -3.92899378e-19 + art_sys_128: 7.28764254e-22 + art_sys_129: -6.51962846e-22 + art_sys_130: 2.40833058e-21 + art_sys_131: -2.36141634e-21 + art_sys_132: 7.96322175e-18 + art_sys_133: 3.73469825e-21 + art_sys_134: -7.78868817e-21 + art_sys_135: -3.89046544e-18 + art_sys_136: -3.99583309e-20 + art_sys_137: 3.34054423e-18 + art_sys_138: 7.95203507e-20 + art_sys_139: 5.18556766e-19 + art_sys_140: 5.95156195e-10 + art_sys_141: 3.02045005e-18 + art_sys_142: -0.0 + art_sys_143: -4.80081357e-17 + art_sys_144: -2.18113343e-17 + art_sys_145: -8.55719414e-18 + art_sys_146: 5.47606833e-24 + art_sys_147: -5.66141410e-25 + art_sys_148: -3.44252291e-23 + art_sys_149: -5.99180078e-24 + art_sys_150: -1.07916002e-24 + art_sys_151: 1.54438501e-22 + art_sys_152: -1.27655331e-23 + art_sys_153: -3.88594319e-24 + art_sys_154: 1.61216072e-22 + art_sys_155: -8.07959568e-22 + art_sys_156: -3.02227939e-21 + art_sys_157: -1.20723907e-19 + art_sys_158: 0.0 + art_sys_159: -6.01571138e-19 + art_sys_160: -6.01571138e-19 + art_sys_161: -3.73133052e-20 + art_sys_162: 1.23097209e-32 + art_sys_163: 0.0 + art_sys_164: 6.94231892e-33 + art_sys_165: 1.59060166e-30 + art_sys_166: -9.19361645e-31 + art_sys_167: 3.21547922e-31 + art_sys_168: 3.39557131e-31 + art_sys_169: -1.43244849e-30 + art_sys_170: 1.91705858e-31 + art_sys_171: 1.37640294e-30 + art_sys_172: -3.62849018e-29 + art_sys_173: 4.17792229e-30 + art_sys_174: -5.07138694e-33 + art_sys_175: -7.33223442e-32 + art_sys_176: -4.06209890e-31 + art_sys_177: -1.13499611e-31 + art_sys_178: -5.81152934e-33 + art_sys_179: 1.26326900e-33 + art_sys_180: 9.88444394e-34 + art_sys_181: -4.78718422e-34 + art_sys_182: 6.69733017e-35 + art_sys_183: -1.40374469e-37 + art_sys_184: -3.58866580e-38 + art_sys_185: 4.70193834e-34 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -69788,191 +69788,191 @@ bins: RelativeStatFSR-: -4.18023993e-04 luminosity_uncertainty: 9.98088000e-04 uncorrelated_uncertainty: 3.83880000e-04 -- art_sys_1: -1.21197665e-10 +- art_sys_1: -1.21197664e-10 art_sys_2: -3.70634710e-09 - art_sys_3: -1.38368382e-19 - art_sys_4: -1.42445141e-17 - art_sys_5: -1.19991098e-19 + art_sys_3: 7.78457665e-20 + art_sys_4: 8.93237380e-18 + art_sys_5: -3.93633582e-21 art_sys_6: -3.76985478e-09 - art_sys_7: 1.88125345e-18 - art_sys_8: 2.76989995e-20 - art_sys_9: -5.10038183e-19 + art_sys_7: 1.74448335e-18 + art_sys_8: 2.32485884e-19 + art_sys_9: -1.00403223e-17 art_sys_10: 2.19379115e-08 - art_sys_11: -5.20059402e-18 - art_sys_12: -5.57406338e-19 - art_sys_13: -1.45216643e-07 - art_sys_14: 1.57617925e-18 - art_sys_15: 7.68637711e-19 - art_sys_16: -1.86589614e-17 + art_sys_11: 1.65484606e-17 + art_sys_12: 2.81459417e-18 + art_sys_13: 1.45216643e-07 + art_sys_14: 1.61918405e-19 + art_sys_15: -3.95535832e-18 + art_sys_16: -2.91278471e-18 art_sys_17: 7.10687258e-07 - art_sys_18: -5.60042488e-19 - art_sys_19: 5.39597680e-17 + art_sys_18: 4.13041399e-19 + art_sys_19: 1.25295319e-17 art_sys_20: 2.05993403e-06 - art_sys_21: 2.62561051e-18 + art_sys_21: -8.88093076e-18 art_sys_22: 1.65259419e-06 - art_sys_23: 8.65486995e-18 - art_sys_24: 1.02387725e-17 - art_sys_25: 1.12576341e-18 - art_sys_26: -6.16346622e-18 - art_sys_27: -5.34603459e-18 + art_sys_23: -2.06282404e-17 + art_sys_24: 2.59554824e-18 + art_sys_25: -2.03258287e-19 + art_sys_26: 1.42508015e-17 + art_sys_27: 3.95620787e-18 art_sys_28: 3.07516679e-06 - art_sys_29: 3.29555975e-17 - art_sys_30: -1.48058011e-17 - art_sys_31: 2.43932692e-05 - art_sys_32: 2.18935332e-18 - art_sys_33: -1.02980922e-17 - art_sys_34: -1.05214595e-17 - art_sys_35: -1.17912182e-05 - art_sys_36: -1.21237084e-13 - art_sys_37: 2.67849072e-14 - art_sys_38: 3.10062176e-15 - art_sys_39: 4.65568565e-15 - art_sys_40: 2.41110920e-15 - art_sys_41: 1.03723054e-15 - art_sys_42: -5.23987895e-16 - art_sys_43: -5.49503023e-16 - art_sys_44: -1.25734037e-16 - art_sys_45: -3.09778293e-17 - art_sys_46: -4.68714603e-18 - art_sys_47: 1.45934990e-13 - art_sys_48: 2.33728796e-13 - art_sys_49: -1.60605245e-12 - art_sys_50: -8.93920164e-18 - art_sys_51: -1.54260013e-17 - art_sys_52: -1.07527794e-04 - art_sys_53: -2.29460638e-11 - art_sys_54: -1.75699003e-11 - art_sys_55: 2.51635061e-11 - art_sys_56: -2.87636931e-05 - art_sys_57: 2.98856543e-18 - art_sys_58: 3.84092309e-19 - art_sys_59: 2.77699320e-14 - art_sys_60: -2.01578275e-14 - art_sys_61: -5.23254351e-14 - art_sys_62: 2.85323325e-04 - art_sys_63: -5.30495795e-14 - art_sys_64: 2.24583310e-14 - art_sys_65: -2.13910943e-16 - art_sys_66: 7.58468040e-15 - art_sys_67: 4.55607056e-16 - art_sys_68: 2.18654221e-16 - art_sys_69: -1.47304465e-15 - art_sys_70: -5.78967461e-16 - art_sys_71: -5.38240000e-16 - art_sys_72: 1.81225873e-17 - art_sys_73: -1.60092224e-17 - art_sys_74: -2.12976953e-13 - art_sys_75: 1.10105912e-17 - art_sys_76: -2.89901960e-15 - art_sys_77: 1.31298695e-14 - art_sys_78: -3.34288125e-15 - art_sys_79: -6.47439287e-18 - art_sys_80: 5.40538796e-15 - art_sys_81: -2.68724849e-12 - art_sys_82: 2.59867119e-10 - art_sys_83: 1.76634510e-15 - art_sys_84: 6.66459696e-16 - art_sys_85: -6.70357439e-16 - art_sys_86: -1.90942682e-16 - art_sys_87: 1.97590097e-13 - art_sys_88: 8.72935273e-14 - art_sys_89: -4.97160119e-18 - art_sys_90: 4.62246744e-16 - art_sys_91: 6.10040267e-12 - art_sys_92: -4.38995075e-18 - art_sys_93: 4.47643069e-18 - art_sys_94: 3.28175250e-17 - art_sys_95: 2.44191824e-12 - art_sys_96: 7.38853301e-10 - art_sys_97: 4.99449323e-04 - art_sys_98: 2.65287381e-12 - art_sys_99: 6.62619756e-12 - art_sys_100: -6.90698826e-11 - art_sys_101: -1.60522616e-10 - art_sys_102: 1.26678829e-10 - art_sys_103: -3.34387796e-05 - art_sys_104: 4.14865144e-12 - art_sys_105: -5.42516018e-18 - art_sys_106: -3.59082114e-11 - art_sys_107: 9.59868189e-14 - art_sys_108: 3.69214037e-20 - art_sys_109: -2.25728918e-21 - art_sys_110: -1.06285929e-12 - art_sys_111: 2.14831019e-10 - art_sys_112: 4.73785049e-13 - art_sys_113: 6.23320193e-06 - art_sys_114: -3.15529748e-22 - art_sys_115: -4.98824952e-13 - art_sys_116: 1.03160434e-17 - art_sys_117: 9.55341524e-22 - art_sys_118: 3.07458577e-13 - art_sys_119: 3.05421867e-18 - art_sys_120: -5.35099084e-15 - art_sys_121: -6.42509500e-21 - art_sys_122: -7.15133714e-13 - art_sys_123: -1.13077927e-20 - art_sys_124: 2.35604280e-14 - art_sys_125: -6.08091509e-24 - art_sys_126: -4.22569169e-19 - art_sys_127: 1.70745004e-20 - art_sys_128: -1.91975919e-16 - art_sys_129: 5.98357973e-23 - art_sys_130: -2.83755200e-20 - art_sys_131: -2.33953803e-22 - art_sys_132: -5.18533266e-16 - art_sys_133: 1.51568701e-20 - art_sys_134: 1.46832283e-19 - art_sys_135: 4.79370440e-17 - art_sys_136: -2.07409435e-23 - art_sys_137: 3.19668710e-20 - art_sys_138: -1.85348532e-17 - art_sys_139: -8.94208523e-21 - art_sys_140: -2.62664525e-24 - art_sys_141: 1.37984309e-20 - art_sys_142: 1.74611467e-17 - art_sys_143: 1.52652180e-22 - art_sys_144: 8.01600261e-22 - art_sys_145: 1.15869858e-17 - art_sys_146: 1.54035392e-20 - art_sys_147: -1.78295574e-23 - art_sys_148: -3.61850662e-24 - art_sys_149: -4.21046053e-18 - art_sys_150: -1.30786720e-19 - art_sys_151: 1.36724706e-18 - art_sys_152: 6.27691942e-22 - art_sys_153: 1.95789469e-18 - art_sys_154: -2.86679235e-09 - art_sys_155: 1.93132826e-20 - art_sys_156: -0.0 - art_sys_157: 3.22325066e-17 - art_sys_158: 0.0 - art_sys_159: -7.91351415e-18 - art_sys_160: -9.81692566e-19 - art_sys_161: -2.05034680e-19 - art_sys_162: -2.05034680e-19 - art_sys_163: 2.69654521e-19 - art_sys_164: 2.69654521e-19 - art_sys_165: -2.33682236e-33 - art_sys_166: 7.19231480e-34 - art_sys_167: 0.0 - art_sys_168: -2.87685806e-31 - art_sys_169: -7.28436925e-31 - art_sys_170: -3.42096293e-29 - art_sys_171: -3.44708599e-28 - art_sys_172: -1.83867346e-29 - art_sys_173: -5.63219108e-30 - art_sys_174: -2.44867477e-30 - art_sys_175: -2.52929671e-31 - art_sys_176: -7.05763360e-32 - art_sys_177: -2.40676518e-33 - art_sys_178: -1.02843743e-33 - art_sys_179: -1.61866390e-32 - art_sys_180: -1.59933610e-31 - art_sys_181: -2.48518826e-32 - art_sys_182: 2.64884200e-32 - art_sys_183: -6.42549922e-35 - art_sys_184: -4.34882503e-36 - art_sys_185: 1.16408908e-37 + art_sys_29: 3.07443014e-14 + art_sys_30: 1.89049772e-14 + art_sys_31: 1.18492072e-14 + art_sys_32: -5.81637027e-15 + art_sys_33: -6.06397011e-16 + art_sys_34: 5.16632836e-16 + art_sys_35: -1.50293379e-16 + art_sys_36: -8.47864147e-18 + art_sys_37: -8.11652690e-16 + art_sys_38: -3.48945469e-17 + art_sys_39: -2.43932692e-05 + art_sys_40: -2.13795665e-16 + art_sys_41: -1.28422566e-18 + art_sys_42: 4.34504846e-17 + art_sys_43: 3.04573369e-15 + art_sys_44: -1.13934147e-17 + art_sys_45: -1.17912182e-05 + art_sys_46: -7.22758793e-14 + art_sys_47: 7.77664073e-18 + art_sys_48: 1.16194593e-13 + art_sys_49: -1.90729550e-11 + art_sys_50: -3.92804301e-17 + art_sys_51: -1.03602272e-17 + art_sys_52: 1.85775496e-10 + art_sys_53: 1.07527794e-04 + art_sys_54: 1.20394626e-12 + art_sys_55: -8.51881818e-13 + art_sys_56: 2.87637349e-05 + art_sys_57: 5.28808634e-15 + art_sys_58: 8.34139394e-15 + art_sys_59: 3.61345259e-15 + art_sys_60: 4.50351218e-18 + art_sys_61: -3.39068390e-15 + art_sys_62: 6.94889156e-18 + art_sys_63: -4.95456609e-16 + art_sys_64: -7.87511541e-18 + art_sys_65: -3.45649701e-17 + art_sys_66: 3.74440614e-13 + art_sys_67: -3.53547831e-17 + art_sys_68: -4.69903723e-17 + art_sys_69: 1.32607880e-11 + art_sys_70: -2.77875037e-14 + art_sys_71: -6.51916696e-12 + art_sys_72: 2.85323233e-04 + art_sys_73: 5.13968953e-13 + art_sys_74: -2.37100263e-11 + art_sys_75: -8.27111163e-18 + art_sys_76: 9.61988967e-15 + art_sys_77: -3.62324917e-14 + art_sys_78: -1.10172440e-14 + art_sys_79: 1.12109192e-18 + art_sys_80: 1.49027517e-10 + art_sys_81: 8.06397433e-16 + art_sys_82: 2.84100115e-16 + art_sys_83: -1.30906232e-15 + art_sys_84: -8.30080315e-12 + art_sys_85: 1.56382352e-16 + art_sys_86: 7.36456129e-16 + art_sys_87: 1.30041212e-17 + art_sys_88: 5.91451150e-18 + art_sys_89: 1.48162978e-18 + art_sys_90: 8.11951316e-10 + art_sys_91: 1.25070390e-09 + art_sys_92: -1.53047796e-12 + art_sys_93: -4.99448114e-04 + art_sys_94: -8.90911327e-11 + art_sys_95: -2.41153713e-13 + art_sys_96: -2.50777098e-20 + art_sys_97: -2.19873320e-13 + art_sys_98: 1.49751642e-11 + art_sys_99: 3.34391765e-05 + art_sys_100: -6.77302148e-16 + art_sys_101: 1.84381927e-12 + art_sys_102: 1.21711245e-20 + art_sys_103: -3.13173487e-20 + art_sys_104: 1.02551776e-11 + art_sys_105: -1.91879633e-20 + art_sys_106: -4.14923501e-13 + art_sys_107: -6.23265306e-06 + art_sys_108: -4.42910158e-21 + art_sys_109: 2.34523382e-17 + art_sys_110: 3.24054236e-21 + art_sys_111: 2.45977101e-14 + art_sys_112: -1.32816534e-21 + art_sys_113: 5.71775938e-23 + art_sys_114: -3.03294719e-16 + art_sys_115: -1.05862508e-21 + art_sys_116: 3.50324958e-19 + art_sys_117: 1.18949082e-23 + art_sys_118: 1.55585076e-16 + art_sys_119: -2.44465579e-22 + art_sys_120: -2.95236426e-17 + art_sys_121: -9.18299351e-20 + art_sys_122: 5.32509469e-18 + art_sys_123: 1.14557507e-21 + art_sys_124: -1.97410768e-18 + art_sys_125: 2.23832827e-17 + art_sys_126: 4.12351565e-20 + art_sys_127: 1.66118502e-18 + art_sys_128: -4.90580062e-21 + art_sys_129: 3.77744412e-21 + art_sys_130: -1.31228739e-20 + art_sys_131: 1.22485762e-20 + art_sys_132: -4.05363509e-17 + art_sys_133: -1.90137862e-20 + art_sys_134: 3.99001533e-20 + art_sys_135: 1.95842763e-17 + art_sys_136: 2.00545904e-19 + art_sys_137: -1.66387668e-17 + art_sys_138: -3.94863340e-19 + art_sys_139: -2.57099040e-18 + art_sys_140: -2.94628108e-09 + art_sys_141: -1.49577810e-17 + art_sys_142: 0.0 + art_sys_143: 2.37638777e-16 + art_sys_144: 1.07965431e-16 + art_sys_145: 4.23691320e-17 + art_sys_146: -5.58257477e-23 + art_sys_147: -2.45482981e-24 + art_sys_148: 1.83532696e-22 + art_sys_149: 5.23535723e-23 + art_sys_150: 7.02920922e-24 + art_sys_151: -8.15517596e-22 + art_sys_152: 6.69656198e-23 + art_sys_153: 1.87525647e-23 + art_sys_154: -8.02641347e-22 + art_sys_155: 4.00802277e-21 + art_sys_156: 1.49677711e-20 + art_sys_157: 5.97641253e-19 + art_sys_158: -0.0 + art_sys_159: 2.97784577e-18 + art_sys_160: 2.97784577e-18 + art_sys_161: 1.84671771e-19 + art_sys_162: -6.09234531e-32 + art_sys_163: -0.0 + art_sys_164: -3.43590181e-32 + art_sys_165: -5.32727863e-29 + art_sys_166: 2.30449769e-29 + art_sys_167: -1.01389984e-29 + art_sys_168: -1.19293510e-29 + art_sys_169: 5.04967756e-29 + art_sys_170: -5.91388370e-29 + art_sys_171: -4.19347307e-28 + art_sys_172: 1.47817845e-27 + art_sys_173: -4.59309739e-28 + art_sys_174: 2.51123858e-32 + art_sys_175: -1.13232764e-29 + art_sys_176: 3.29995474e-29 + art_sys_177: 4.21205486e-30 + art_sys_178: 2.13225489e-31 + art_sys_179: -6.31732495e-32 + art_sys_180: -3.60087307e-32 + art_sys_181: 4.50627980e-33 + art_sys_182: 2.46455306e-32 + art_sys_183: 7.90335842e-35 + art_sys_184: 1.73508795e-38 + art_sys_185: -2.32724209e-33 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -70081,189 +70081,189 @@ bins: uncorrelated_uncertainty: 9.49764000e-05 - art_sys_1: 3.93966562e-12 art_sys_2: -5.64966324e-11 - art_sys_3: -2.35759930e-21 - art_sys_4: -6.88868660e-20 - art_sys_5: -3.96060819e-21 + art_sys_3: 3.23886809e-21 + art_sys_4: 1.91901753e-19 + art_sys_5: -6.12106592e-22 art_sys_6: -4.30105634e-11 - art_sys_7: 6.07254272e-20 - art_sys_8: 4.48270191e-21 - art_sys_9: -4.15042193e-20 + art_sys_7: 1.43778924e-19 + art_sys_8: 6.07404223e-21 + art_sys_9: -1.19874198e-19 art_sys_10: 4.28375850e-10 - art_sys_11: 3.77937110e-20 - art_sys_12: 3.14718298e-20 - art_sys_13: -5.11683897e-09 - art_sys_14: 3.56956522e-19 - art_sys_15: -3.01178978e-20 - art_sys_16: 2.39807104e-19 + art_sys_11: 8.00938280e-19 + art_sys_12: 1.04561161e-20 + art_sys_13: 5.11683897e-09 + art_sys_14: -1.14558155e-20 + art_sys_15: 2.60809171e-20 + art_sys_16: -2.63689121e-19 art_sys_17: 1.23776635e-08 - art_sys_18: -3.04620093e-20 - art_sys_19: -8.05234799e-19 + art_sys_18: -5.21616708e-20 + art_sys_19: -2.43839919e-19 art_sys_20: 5.19337863e-08 - art_sys_21: -2.32164545e-19 + art_sys_21: 3.03208561e-19 art_sys_22: 4.87884913e-08 - art_sys_23: -1.33234738e-19 - art_sys_24: -4.13637506e-20 - art_sys_25: 1.43772156e-19 - art_sys_26: 4.55626921e-19 - art_sys_27: 5.11585722e-19 + art_sys_23: 3.44313712e-19 + art_sys_24: 6.12253472e-20 + art_sys_25: -9.20823304e-20 + art_sys_26: -1.46863629e-18 + art_sys_27: -5.18157240e-19 art_sys_28: -1.23615030e-07 - art_sys_29: -3.08874254e-18 - art_sys_30: 1.43102094e-18 - art_sys_31: 5.12685923e-07 - art_sys_32: -1.53065680e-19 - art_sys_33: 8.06217705e-20 - art_sys_34: 6.07187788e-18 - art_sys_35: -1.51594855e-06 - art_sys_36: -1.43317227e-14 - art_sys_37: -1.46719783e-14 - art_sys_38: 8.43080556e-15 - art_sys_39: 2.27970626e-15 - art_sys_40: 5.76411478e-16 - art_sys_41: 1.04810384e-16 - art_sys_42: 1.03428003e-16 - art_sys_43: 1.87737427e-16 - art_sys_44: 4.78891993e-17 - art_sys_45: -8.51651282e-18 - art_sys_46: 3.39905473e-17 - art_sys_47: -2.18030069e-15 - art_sys_48: 8.00628784e-14 - art_sys_49: -1.27676390e-12 - art_sys_50: 1.25099494e-17 - art_sys_51: 4.02095469e-18 - art_sys_52: 2.95619159e-07 - art_sys_53: 4.95481058e-12 - art_sys_54: -6.11348721e-14 - art_sys_55: -4.04634809e-13 - art_sys_56: -2.43443183e-05 - art_sys_57: -4.73408266e-18 - art_sys_58: 4.57953536e-19 - art_sys_59: -2.78868450e-13 - art_sys_60: -1.71386618e-13 - art_sys_61: -6.68680606e-15 - art_sys_62: -3.79314981e-05 - art_sys_63: 7.60056250e-15 - art_sys_64: 8.05103903e-15 - art_sys_65: -3.15913209e-15 - art_sys_66: 9.96748510e-15 - art_sys_67: -4.94740361e-15 - art_sys_68: -1.45093244e-15 - art_sys_69: 9.41859039e-16 - art_sys_70: 2.39170301e-16 - art_sys_71: -8.17170727e-17 - art_sys_72: 1.06287005e-17 - art_sys_73: -2.03185834e-17 - art_sys_74: -2.07970069e-14 - art_sys_75: 9.81177758e-18 - art_sys_76: -1.47871097e-14 - art_sys_77: -1.53734323e-14 - art_sys_78: -1.28702004e-15 - art_sys_79: -7.44098986e-18 - art_sys_80: -3.34517394e-15 - art_sys_81: -3.43421963e-13 - art_sys_82: 3.32074646e-11 - art_sys_83: 4.29606444e-16 - art_sys_84: -1.44979810e-15 - art_sys_85: 4.15009388e-16 - art_sys_86: -4.20345806e-16 - art_sys_87: -1.58076063e-12 - art_sys_88: 2.68131494e-13 - art_sys_89: -1.56834770e-16 - art_sys_90: -1.26710641e-14 - art_sys_91: 7.01195712e-13 - art_sys_92: -8.96142824e-19 - art_sys_93: -1.11427615e-18 - art_sys_94: 1.87125755e-17 - art_sys_95: 1.13971564e-13 - art_sys_96: 6.18744077e-11 - art_sys_97: 6.38268961e-05 - art_sys_98: -2.15319624e-11 - art_sys_99: -4.87212687e-11 - art_sys_100: 5.59499001e-10 - art_sys_101: 1.27180924e-09 - art_sys_102: 1.37429679e-10 - art_sys_103: 2.70869482e-04 - art_sys_104: -3.38126909e-11 - art_sys_105: 7.19086075e-17 - art_sys_106: -4.19073333e-11 - art_sys_107: 1.04613517e-13 - art_sys_108: -1.35619611e-19 - art_sys_109: -2.93873494e-21 - art_sys_110: 1.41415710e-11 - art_sys_111: 2.34536670e-10 - art_sys_112: -6.40582122e-12 - art_sys_113: 6.76206678e-06 - art_sys_114: 4.03893915e-21 - art_sys_115: -4.86355119e-13 - art_sys_116: -1.37374301e-16 - art_sys_117: 2.09271841e-21 - art_sys_118: -4.19721669e-12 - art_sys_119: -4.06459407e-17 - art_sys_120: 7.11753096e-14 - art_sys_121: -5.70494828e-21 - art_sys_122: 9.54230351e-12 - art_sys_123: -1.70895068e-20 - art_sys_124: -3.03381887e-13 - art_sys_125: -2.20858073e-22 - art_sys_126: 1.36525004e-17 - art_sys_127: 1.39527367e-20 - art_sys_128: 1.99178650e-15 - art_sys_129: -3.20511894e-22 - art_sys_130: -2.10309388e-20 - art_sys_131: -4.83213648e-22 - art_sys_132: 6.49347015e-15 - art_sys_133: 1.03155803e-20 - art_sys_134: -1.45178844e-18 - art_sys_135: -7.30581768e-16 - art_sys_136: -2.11213055e-22 - art_sys_137: -4.49470766e-21 - art_sys_138: 1.51852883e-16 - art_sys_139: 1.41752996e-20 - art_sys_140: -7.89054693e-23 - art_sys_141: 8.13098810e-20 - art_sys_142: 5.03339178e-17 - art_sys_143: 5.15157388e-22 - art_sys_144: -2.15101741e-21 - art_sys_145: -5.92123207e-17 - art_sys_146: -7.84388882e-20 - art_sys_147: 3.11935815e-23 - art_sys_148: 9.97917255e-24 - art_sys_149: 4.49895861e-17 - art_sys_150: 1.12219768e-18 - art_sys_151: -1.57921620e-17 - art_sys_152: -6.54935931e-21 - art_sys_153: -2.42091304e-17 - art_sys_154: 3.81502514e-08 - art_sys_155: -2.43859667e-19 - art_sys_156: 0.0 - art_sys_157: -4.34753713e-16 - art_sys_158: -0.0 - art_sys_159: 1.07663786e-16 - art_sys_160: 1.31382394e-17 - art_sys_161: 2.79904598e-18 - art_sys_162: 2.79904598e-18 - art_sys_163: -3.70703466e-18 - art_sys_164: -3.70703466e-18 - art_sys_165: 3.21367824e-32 - art_sys_166: -9.89671767e-33 - art_sys_167: -0.0 - art_sys_168: 8.58047334e-30 - art_sys_169: -5.66087585e-30 - art_sys_170: -5.71428947e-29 - art_sys_171: -1.46001731e-28 - art_sys_172: -5.28757283e-29 - art_sys_173: -8.33609668e-30 - art_sys_174: 3.72627998e-30 - art_sys_175: -9.05468896e-31 - art_sys_176: 2.10335153e-32 - art_sys_177: -4.06009538e-33 - art_sys_178: -4.73960276e-34 - art_sys_179: 2.08372759e-31 - art_sys_180: 2.17969284e-30 - art_sys_181: -3.51566295e-32 - art_sys_182: 6.26225338e-33 - art_sys_183: 7.03362401e-34 - art_sys_184: -7.90352315e-37 - art_sys_185: -2.28555826e-37 + art_sys_29: 6.23386936e-15 + art_sys_30: -5.72557933e-15 + art_sys_31: 1.88614043e-14 + art_sys_32: -4.54211725e-15 + art_sys_33: 1.63397665e-15 + art_sys_34: -3.22080814e-16 + art_sys_35: -3.51315786e-16 + art_sys_36: 1.71744059e-18 + art_sys_37: -1.87652474e-17 + art_sys_38: 1.81969289e-17 + art_sys_39: -5.12685923e-07 + art_sys_40: -3.46312994e-18 + art_sys_41: 5.97655937e-19 + art_sys_42: 4.47729715e-17 + art_sys_43: 3.97591753e-16 + art_sys_44: -3.23797108e-18 + art_sys_45: -1.51594855e-06 + art_sys_46: 1.95146363e-16 + art_sys_47: 3.16441235e-17 + art_sys_48: -1.34735403e-13 + art_sys_49: 2.51584064e-12 + art_sys_50: 4.35798136e-18 + art_sys_51: -7.23399345e-18 + art_sys_52: 2.23017416e-11 + art_sys_53: -2.95619137e-07 + art_sys_54: -1.68629813e-12 + art_sys_55: -1.90941390e-11 + art_sys_56: 2.43443143e-05 + art_sys_57: 8.17486659e-16 + art_sys_58: 2.73754871e-15 + art_sys_59: -2.30979028e-15 + art_sys_60: 2.01883430e-18 + art_sys_61: 1.01400089e-15 + art_sys_62: -1.16786648e-15 + art_sys_63: -1.78295146e-16 + art_sys_64: -3.81236742e-17 + art_sys_65: 2.15919730e-16 + art_sys_66: -4.98999689e-14 + art_sys_67: -4.44028509e-17 + art_sys_68: -4.89725689e-17 + art_sys_69: -2.30950337e-12 + art_sys_70: 4.70571356e-13 + art_sys_71: 1.14339184e-12 + art_sys_72: -3.79315028e-05 + art_sys_73: 4.52020314e-13 + art_sys_74: -3.02939871e-12 + art_sys_75: -3.03584186e-18 + art_sys_76: 1.41756418e-13 + art_sys_77: -1.59813067e-14 + art_sys_78: 4.24397374e-16 + art_sys_79: 1.01411358e-17 + art_sys_80: 6.18617418e-11 + art_sys_81: 3.15636321e-15 + art_sys_82: -2.35420436e-16 + art_sys_83: 7.07800114e-16 + art_sys_84: 7.22085030e-13 + art_sys_85: -5.82284675e-16 + art_sys_86: 1.42587796e-16 + art_sys_87: -5.28080198e-18 + art_sys_88: -1.49457747e-16 + art_sys_89: 2.29066474e-18 + art_sys_90: 1.26068552e-10 + art_sys_91: -6.18638625e-11 + art_sys_92: 1.34577989e-11 + art_sys_93: -6.38288089e-05 + art_sys_94: -9.57551140e-11 + art_sys_95: 6.74591492e-12 + art_sys_96: 3.95983152e-19 + art_sys_97: 2.66785278e-12 + art_sys_98: -1.02160122e-10 + art_sys_99: -2.70869710e-04 + art_sys_100: 9.14681170e-15 + art_sys_101: 3.56930802e-12 + art_sys_102: 2.17028684e-20 + art_sys_103: 4.29087897e-19 + art_sys_104: -4.71467619e-12 + art_sys_105: -1.54998577e-20 + art_sys_106: 1.27585231e-11 + art_sys_107: -6.76123929e-06 + art_sys_108: 2.12473931e-22 + art_sys_109: -1.24088893e-15 + art_sys_110: 4.04119251e-21 + art_sys_111: 4.88777715e-14 + art_sys_112: 3.79243054e-20 + art_sys_113: -1.51513150e-22 + art_sys_114: -1.54209574e-14 + art_sys_115: -1.41171735e-21 + art_sys_116: -4.80189541e-18 + art_sys_117: -1.31757482e-24 + art_sys_118: -4.09280813e-15 + art_sys_119: -1.58794436e-21 + art_sys_120: 4.93730828e-16 + art_sys_121: 9.48378935e-19 + art_sys_122: 4.19782670e-18 + art_sys_123: -5.19260625e-21 + art_sys_124: -5.13862234e-18 + art_sys_125: -2.81095545e-16 + art_sys_126: -4.93550202e-19 + art_sys_127: -1.42069826e-17 + art_sys_128: 3.48534222e-20 + art_sys_129: -3.62905611e-20 + art_sys_130: 1.41173211e-19 + art_sys_131: -1.50022300e-19 + art_sys_132: 5.21564013e-16 + art_sys_133: 2.43671249e-19 + art_sys_134: -4.83582245e-19 + art_sys_135: -2.47332438e-16 + art_sys_136: -2.58880821e-18 + art_sys_137: 2.17493573e-16 + art_sys_138: 5.21783400e-18 + art_sys_139: 3.40917284e-17 + art_sys_140: 3.92012623e-08 + art_sys_141: 1.98892010e-16 + art_sys_142: -0.0 + art_sys_143: -3.16238974e-15 + art_sys_144: -1.43676746e-15 + art_sys_145: -5.63552608e-16 + art_sys_146: 2.40488637e-22 + art_sys_147: -5.33758103e-23 + art_sys_148: -1.60326720e-21 + art_sys_149: -2.44316183e-22 + art_sys_150: -5.06085626e-23 + art_sys_151: 9.56298703e-21 + art_sys_152: -8.08823211e-22 + art_sys_153: -2.53346658e-22 + art_sys_154: 1.05591050e-20 + art_sys_155: -5.31265939e-20 + art_sys_156: -1.99013237e-19 + art_sys_157: -7.95167562e-18 + art_sys_158: 0.0 + art_sys_159: -3.96286948e-17 + art_sys_160: -3.96286948e-17 + art_sys_161: -2.45816058e-18 + art_sys_162: 8.10946405e-31 + art_sys_163: 0.0 + art_sys_164: 4.57347867e-31 + art_sys_165: 3.64474481e-29 + art_sys_166: -3.33046764e-29 + art_sys_167: 1.51774090e-29 + art_sys_168: 1.24852430e-29 + art_sys_169: -4.30699885e-29 + art_sys_170: 4.11878816e-29 + art_sys_171: -7.70606335e-28 + art_sys_172: -5.59568881e-28 + art_sys_173: -5.59078838e-28 + art_sys_174: -3.33960610e-31 + art_sys_175: -3.07514966e-29 + art_sys_176: 2.69078267e-29 + art_sys_177: -2.30558923e-30 + art_sys_178: -1.22975921e-31 + art_sys_179: 9.61029115e-35 + art_sys_180: 2.21533177e-32 + art_sys_181: -4.05116069e-32 + art_sys_182: 6.13834657e-32 + art_sys_183: 1.63908628e-34 + art_sys_184: -2.68058225e-36 + art_sys_185: 3.09741131e-32 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -70372,189 +70372,189 @@ bins: uncorrelated_uncertainty: 1.98574000e-05 - art_sys_1: 1.20625880e-12 art_sys_2: -1.33520838e-11 - art_sys_3: -8.04539138e-22 - art_sys_4: 7.00113318e-20 - art_sys_5: -5.75161821e-22 + art_sys_3: 5.32128937e-22 + art_sys_4: -1.17799496e-19 + art_sys_5: 1.87949111e-22 art_sys_6: -1.33511731e-11 - art_sys_7: -1.59009221e-20 - art_sys_8: 4.97696676e-21 - art_sys_9: -6.05054340e-21 + art_sys_7: 9.38054039e-21 + art_sys_8: 1.21776269e-21 + art_sys_9: 8.29488470e-20 art_sys_10: 8.98575471e-11 - art_sys_11: 9.07974793e-20 - art_sys_12: 1.92280883e-20 - art_sys_13: -1.44887019e-09 - art_sys_14: 3.57634128e-20 - art_sys_15: -4.60894695e-21 - art_sys_16: 3.68771761e-19 + art_sys_11: 2.87045562e-20 + art_sys_12: -1.14758567e-20 + art_sys_13: 1.44887019e-09 + art_sys_14: -2.31220512e-21 + art_sys_15: 3.51751611e-20 + art_sys_16: -9.57191106e-21 art_sys_17: 2.71372524e-09 - art_sys_18: 1.05732234e-21 - art_sys_19: -1.10373709e-18 + art_sys_18: -1.29870795e-20 + art_sys_19: -6.30919928e-20 art_sys_20: 1.28015794e-08 - art_sys_21: -7.57412896e-20 - art_sys_22: 8.77239548e-09 - art_sys_23: -1.68270631e-19 - art_sys_24: -1.56333778e-19 - art_sys_25: -3.36443418e-20 - art_sys_26: 2.36345381e-19 - art_sys_27: 1.27852663e-19 + art_sys_21: 1.69912199e-19 + art_sys_22: 8.77239549e-09 + art_sys_23: 3.53862121e-19 + art_sys_24: -3.24746150e-20 + art_sys_25: -2.75052137e-21 + art_sys_26: -4.70233611e-19 + art_sys_27: -1.02819605e-19 art_sys_28: -7.98817387e-08 - art_sys_29: -9.97084627e-19 - art_sys_30: 5.34333063e-19 - art_sys_31: -1.59495109e-07 - art_sys_32: -7.02337213e-20 - art_sys_33: 1.04797325e-19 - art_sys_34: -7.89007685e-19 - art_sys_35: -1.44592663e-07 - art_sys_36: -2.77425484e-14 - art_sys_37: -5.42212030e-14 - art_sys_38: 1.88070844e-14 - art_sys_39: -1.66112536e-15 - art_sys_40: -7.46254088e-16 - art_sys_41: 2.07881933e-16 - art_sys_42: 3.91915486e-16 - art_sys_43: 2.14468065e-16 - art_sys_44: -1.17794206e-17 - art_sys_45: 4.98003316e-18 - art_sys_46: 1.68364146e-17 - art_sys_47: -3.17934797e-15 - art_sys_48: -4.41424146e-15 - art_sys_49: 2.40339639e-14 - art_sys_50: -8.29036368e-18 - art_sys_51: 7.15333384e-18 - art_sys_52: 2.33104345e-06 - art_sys_53: 4.53725004e-13 - art_sys_54: 9.10935916e-13 - art_sys_55: -1.35598046e-11 - art_sys_56: 4.26612599e-07 - art_sys_57: -4.60211003e-19 - art_sys_58: -1.64031622e-19 - art_sys_59: -1.09846696e-12 - art_sys_60: -5.63440313e-13 - art_sys_61: 3.15588147e-15 - art_sys_62: -8.06166649e-06 - art_sys_63: 4.05793627e-14 - art_sys_64: 3.27661910e-14 - art_sys_65: -2.64972021e-14 - art_sys_66: -7.97893276e-17 - art_sys_67: 4.96956118e-16 - art_sys_68: 6.88186219e-16 - art_sys_69: 7.52400620e-17 - art_sys_70: -2.67979514e-16 - art_sys_71: -5.25062478e-16 - art_sys_72: 2.88482590e-17 - art_sys_73: -1.06832072e-17 - art_sys_74: 1.25021607e-14 - art_sys_75: -1.56012910e-17 - art_sys_76: 7.17799207e-14 - art_sys_77: -7.74468965e-15 - art_sys_78: 4.02956177e-15 - art_sys_79: 1.38022404e-17 - art_sys_80: -9.93490615e-16 - art_sys_81: 1.62116889e-13 - art_sys_82: -1.56847487e-11 - art_sys_83: 2.82387646e-16 - art_sys_84: -9.06555233e-16 - art_sys_85: -4.29088820e-16 - art_sys_86: 1.04639793e-16 - art_sys_87: 1.11704581e-13 - art_sys_88: 1.78807617e-12 - art_sys_89: -8.90784712e-17 - art_sys_90: -2.06505849e-15 - art_sys_91: -6.44840896e-13 - art_sys_92: 5.37666633e-18 - art_sys_93: 1.39868355e-17 - art_sys_94: 5.98531619e-16 - art_sys_95: -6.91690259e-14 - art_sys_96: -4.27747843e-11 - art_sys_97: -3.01301317e-05 - art_sys_98: 1.10861842e-12 - art_sys_99: 4.41758977e-12 - art_sys_100: -2.80477161e-11 - art_sys_101: -1.23019958e-10 - art_sys_102: 2.41029126e-09 - art_sys_103: -1.35786811e-05 - art_sys_104: 1.62573736e-12 - art_sys_105: -2.41671868e-17 - art_sys_106: -6.86215123e-10 - art_sys_107: 1.82679992e-12 - art_sys_108: 4.52330540e-19 - art_sys_109: -4.37550230e-20 - art_sys_110: -4.68009239e-12 - art_sys_111: 4.08903483e-09 - art_sys_112: 1.98258619e-12 - art_sys_113: 1.18597465e-04 - art_sys_114: -1.37597302e-21 - art_sys_115: -9.43657645e-12 - art_sys_116: 4.53074694e-17 - art_sys_117: 1.94616418e-20 - art_sys_118: 1.24638809e-12 - art_sys_119: 1.34259032e-17 - art_sys_120: -2.35851397e-14 - art_sys_121: -1.20767754e-19 - art_sys_122: -3.12166177e-12 - art_sys_123: -2.14538823e-19 - art_sys_124: 1.14168903e-13 - art_sys_125: -4.38939563e-22 - art_sys_126: 5.97132125e-18 - art_sys_127: 3.21706186e-19 - art_sys_128: -1.53317859e-15 - art_sys_129: 7.28050047e-22 - art_sys_130: -5.32634540e-19 - art_sys_131: -4.69677892e-21 - art_sys_132: -2.71252292e-15 - art_sys_133: 2.87366903e-19 - art_sys_134: 1.09396756e-18 - art_sys_135: 1.25202655e-16 - art_sys_136: -6.55284430e-22 - art_sys_137: 5.71184353e-19 - art_sys_138: -1.50037252e-16 - art_sys_139: -1.43910883e-19 - art_sys_140: -1.32005420e-22 - art_sys_141: 3.23759634e-19 - art_sys_142: 3.48055768e-16 - art_sys_143: 3.26954134e-21 - art_sys_144: 1.22427519e-20 - art_sys_145: 1.49529237e-16 - art_sys_146: 1.97333649e-19 - art_sys_147: -2.87677627e-22 - art_sys_148: -4.53119957e-23 - art_sys_149: -3.30365042e-17 - art_sys_150: -1.11702437e-18 - art_sys_151: 8.47942797e-18 - art_sys_152: 4.52230281e-21 - art_sys_153: 1.05238691e-17 - art_sys_154: -1.26167907e-08 - art_sys_155: 9.83004219e-20 - art_sys_156: -0.0 - art_sys_157: 1.36944074e-16 - art_sys_158: 0.0 - art_sys_159: -3.24143031e-17 - art_sys_160: -4.21830787e-18 - art_sys_161: -8.28599584e-19 - art_sys_162: -8.28599584e-19 - art_sys_163: 1.06702592e-18 - art_sys_164: 1.06702592e-18 - art_sys_165: -9.23893953e-33 - art_sys_166: 2.83838680e-33 - art_sys_167: 0.0 - art_sys_168: -1.74291120e-29 - art_sys_169: 1.00304462e-28 - art_sys_170: -2.57111457e-28 - art_sys_171: 7.32555291e-28 - art_sys_172: -5.65094920e-29 - art_sys_173: -2.51115333e-29 - art_sys_174: 9.77969271e-30 - art_sys_175: -4.56347398e-30 - art_sys_176: 5.28610065e-31 - art_sys_177: -5.33176183e-32 - art_sys_178: 3.51241068e-33 - art_sys_179: -7.83446923e-32 - art_sys_180: -6.51359738e-31 - art_sys_181: -6.28775101e-31 - art_sys_182: -2.98770170e-31 - art_sys_183: 4.93065248e-33 - art_sys_184: -1.23643171e-35 - art_sys_185: 2.04535255e-36 + art_sys_29: 3.98852872e-14 + art_sys_30: -1.02781645e-14 + art_sys_31: -2.44017949e-14 + art_sys_32: -2.90850298e-15 + art_sys_33: 3.18460938e-16 + art_sys_34: -1.06505231e-15 + art_sys_35: -7.07038016e-16 + art_sys_36: 3.65784613e-19 + art_sys_37: 5.11310543e-18 + art_sys_38: 1.35046078e-16 + art_sys_39: 1.59495109e-07 + art_sys_40: 1.55139984e-18 + art_sys_41: 4.26089957e-19 + art_sys_42: 1.03688725e-16 + art_sys_43: 3.59865802e-17 + art_sys_44: -8.19623127e-18 + art_sys_45: -1.44592663e-07 + art_sys_46: 1.56314933e-15 + art_sys_47: -4.01749233e-17 + art_sys_48: -4.93913919e-15 + art_sys_49: 5.38033759e-13 + art_sys_50: -4.93489579e-18 + art_sys_51: -2.39977499e-18 + art_sys_52: -1.11668611e-11 + art_sys_53: -2.33104345e-06 + art_sys_54: 1.72393619e-12 + art_sys_55: 1.96782304e-11 + art_sys_56: -4.26613759e-07 + art_sys_57: -5.58603354e-15 + art_sys_58: 6.03493154e-15 + art_sys_59: -7.66552649e-16 + art_sys_60: 1.00344517e-18 + art_sys_61: -3.74020930e-15 + art_sys_62: -9.38934965e-17 + art_sys_63: -1.30883645e-15 + art_sys_64: -2.38480636e-16 + art_sys_65: -2.57382301e-17 + art_sys_66: -1.05646027e-14 + art_sys_67: -3.73740730e-17 + art_sys_68: -3.08308231e-17 + art_sys_69: -5.78104598e-13 + art_sys_70: 1.42849228e-12 + art_sys_71: 7.48649007e-13 + art_sys_72: -8.06166183e-06 + art_sys_73: 9.34196596e-12 + art_sys_74: 1.44459893e-12 + art_sys_75: -2.12620383e-17 + art_sys_76: 3.85954872e-14 + art_sys_77: -8.45168849e-15 + art_sys_78: -6.86365932e-15 + art_sys_79: -8.69766298e-18 + art_sys_80: -1.14870025e-11 + art_sys_81: -5.96295432e-16 + art_sys_82: 7.42677817e-16 + art_sys_83: -2.41269469e-16 + art_sys_84: 5.33616215e-13 + art_sys_85: 2.18937438e-16 + art_sys_86: 3.72849493e-16 + art_sys_87: 4.37387325e-17 + art_sys_88: -4.15669315e-17 + art_sys_89: 1.09040844e-17 + art_sys_90: -4.42734653e-11 + art_sys_91: -4.19981410e-09 + art_sys_92: -6.79311733e-13 + art_sys_93: 3.01301800e-05 + art_sys_94: -1.69489748e-09 + art_sys_95: -2.00821690e-10 + art_sys_96: 3.81953640e-19 + art_sys_97: -1.23004164e-12 + art_sys_98: 1.89547841e-10 + art_sys_99: 1.35780638e-05 + art_sys_100: -2.84564751e-15 + art_sys_101: 3.67000551e-11 + art_sys_102: 2.32660603e-19 + art_sys_103: -1.36723329e-19 + art_sys_104: 1.79025892e-10 + art_sys_105: -1.65539635e-19 + art_sys_106: 5.52751077e-12 + art_sys_107: -1.18586392e-04 + art_sys_108: -6.49454170e-20 + art_sys_109: -8.33886397e-16 + art_sys_110: 6.24786910e-20 + art_sys_111: 4.90018984e-13 + art_sys_112: 4.08855782e-20 + art_sys_113: 4.04835913e-22 + art_sys_114: -2.03626026e-14 + art_sys_115: 1.06558146e-21 + art_sys_116: 2.36377118e-18 + art_sys_117: -8.99402545e-23 + art_sys_118: -1.28532509e-15 + art_sys_119: -1.22377240e-20 + art_sys_120: -8.79046652e-18 + art_sys_121: -9.28797665e-19 + art_sys_122: 2.83555138e-17 + art_sys_123: 6.84595926e-21 + art_sys_124: 3.80748920e-18 + art_sys_125: 1.31787485e-16 + art_sys_126: 2.55167670e-19 + art_sys_127: 5.09401815e-18 + art_sys_128: -2.63924991e-20 + art_sys_129: 2.12586123e-20 + art_sys_130: -6.42589972e-20 + art_sys_131: 5.85726806e-20 + art_sys_132: -1.93793029e-16 + art_sys_133: -9.20735906e-20 + art_sys_134: 1.76143368e-19 + art_sys_135: 8.54358455e-17 + art_sys_136: 8.96040272e-19 + art_sys_137: -7.30695495e-17 + art_sys_138: -1.74391411e-18 + art_sys_139: -1.13399580e-17 + art_sys_140: -1.29756250e-08 + art_sys_141: -6.59141806e-17 + art_sys_142: 0.0 + art_sys_143: 1.04632165e-15 + art_sys_144: 4.75397920e-16 + art_sys_145: 1.86647334e-16 + art_sys_146: -6.46664623e-22 + art_sys_147: -7.22313312e-23 + art_sys_148: 1.39875320e-21 + art_sys_149: 2.21963423e-22 + art_sys_150: 4.12919682e-23 + art_sys_151: -3.93617585e-21 + art_sys_152: 3.03336966e-22 + art_sys_153: 8.75306208e-23 + art_sys_154: -3.56378890e-21 + art_sys_155: 1.77162770e-20 + art_sys_156: 6.59699248e-20 + art_sys_157: 2.63208841e-18 + art_sys_158: -0.0 + art_sys_159: 1.31166744e-17 + art_sys_160: 1.31166744e-17 + art_sys_161: 8.12836433e-19 + art_sys_162: -2.68148340e-31 + art_sys_163: -0.0 + art_sys_164: -1.51225111e-31 + art_sys_165: 4.99625042e-28 + art_sys_166: -1.32545650e-28 + art_sys_167: -3.95780884e-30 + art_sys_168: 4.45854467e-30 + art_sys_169: -1.99294297e-28 + art_sys_170: 3.82625665e-28 + art_sys_171: -1.59498234e-27 + art_sys_172: -1.07851908e-27 + art_sys_173: -2.71843784e-27 + art_sys_174: 1.10645584e-31 + art_sys_175: -2.05695198e-28 + art_sys_176: 3.34311111e-28 + art_sys_177: -2.83127496e-29 + art_sys_178: -1.39949295e-30 + art_sys_179: -1.08115111e-30 + art_sys_180: 3.24558764e-32 + art_sys_181: -3.31622993e-32 + art_sys_182: -1.37528352e-32 + art_sys_183: -1.18275815e-33 + art_sys_184: 4.92991004e-36 + art_sys_185: -1.02443015e-32 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -70663,189 +70663,189 @@ bins: uncorrelated_uncertainty: 3.91317000e-06 - art_sys_1: 3.88941340e-17 art_sys_2: -5.76450014e-16 - art_sys_3: 4.15132286e-26 - art_sys_4: 1.21118484e-22 - art_sys_5: -1.86358323e-25 + art_sys_3: 4.16650010e-26 + art_sys_4: -1.42314414e-22 + art_sys_5: -9.22867665e-26 art_sys_6: -7.65961607e-16 - art_sys_7: -5.28156221e-23 - art_sys_8: 3.92161397e-24 - art_sys_9: -5.31718571e-24 + art_sys_7: -8.67038106e-23 + art_sys_8: -2.38488182e-24 + art_sys_9: 9.06381771e-23 art_sys_10: 2.97545712e-15 - art_sys_11: 5.33506145e-23 - art_sys_12: -4.41481040e-22 - art_sys_13: -5.18034174e-14 - art_sys_14: -1.00789689e-21 - art_sys_15: 3.76163873e-23 - art_sys_16: -2.95879044e-21 + art_sys_11: -4.69728679e-22 + art_sys_12: -3.01640918e-22 + art_sys_13: 5.18034174e-14 + art_sys_14: -4.52368967e-24 + art_sys_15: -2.11322491e-23 + art_sys_16: -1.06834676e-21 art_sys_17: 1.06249030e-13 - art_sys_18: 7.95086219e-23 - art_sys_19: 1.48300458e-20 + art_sys_18: 1.86667298e-22 + art_sys_19: -4.73926567e-23 art_sys_20: 2.03040819e-13 - art_sys_21: 1.12496670e-21 + art_sys_21: -2.20346087e-21 art_sys_22: -1.26224697e-12 - art_sys_23: 1.90589079e-21 - art_sys_24: 1.88763780e-21 - art_sys_25: 8.16608419e-22 - art_sys_26: -2.46572407e-20 - art_sys_27: -1.37307476e-20 - art_sys_28: -7.57549729e-11 - art_sys_29: 1.32546394e-19 - art_sys_30: -7.47177758e-20 - art_sys_31: -1.06422491e-09 - art_sys_32: 4.05918871e-21 - art_sys_33: -2.99479053e-20 - art_sys_34: -5.98758698e-20 - art_sys_35: 5.06999402e-09 - art_sys_36: 1.08932717e-14 - art_sys_37: 8.32149581e-16 - art_sys_38: 3.84327795e-14 - art_sys_39: 1.21093535e-16 - art_sys_40: 6.29507761e-16 - art_sys_41: -9.67658207e-16 - art_sys_42: -3.16787676e-16 - art_sys_43: -2.68476816e-16 - art_sys_44: -5.18607600e-17 - art_sys_45: 1.74837417e-18 - art_sys_46: -9.92958670e-18 - art_sys_47: 1.51503911e-17 - art_sys_48: -1.21106800e-15 - art_sys_49: 1.91840914e-14 - art_sys_50: 8.37704184e-18 - art_sys_51: 1.07096041e-18 - art_sys_52: 8.18040467e-09 - art_sys_53: -2.47360570e-13 - art_sys_54: -3.86931442e-11 - art_sys_55: -2.65437309e-11 - art_sys_56: 3.63355699e-07 - art_sys_57: 3.55514227e-18 - art_sys_58: -2.30479611e-18 - art_sys_59: -6.61447164e-12 - art_sys_60: -3.79571500e-12 - art_sys_61: 1.14265574e-16 - art_sys_62: 9.41585975e-07 - art_sys_63: 9.97985147e-14 - art_sys_64: 1.74008099e-14 - art_sys_65: 1.57073010e-15 - art_sys_66: 6.46716107e-15 - art_sys_67: 8.40512638e-15 - art_sys_68: 1.58087638e-15 - art_sys_69: 1.53811016e-16 - art_sys_70: 7.54041884e-16 - art_sys_71: -2.13157401e-16 - art_sys_72: -5.48829572e-17 - art_sys_73: -2.30108050e-17 - art_sys_74: 2.59234992e-16 - art_sys_75: 2.67120419e-17 - art_sys_76: 9.15795430e-14 - art_sys_77: -4.36138942e-15 - art_sys_78: -1.23898977e-14 - art_sys_79: 9.67781520e-18 - art_sys_80: 6.43240455e-15 - art_sys_81: 5.82902951e-15 - art_sys_82: -5.97777415e-13 - art_sys_83: 3.89261981e-16 - art_sys_84: 6.16961109e-16 - art_sys_85: 2.30004929e-17 - art_sys_86: -3.05191472e-16 - art_sys_87: 5.07213808e-14 - art_sys_88: 6.62706593e-12 - art_sys_89: 9.72787240e-17 - art_sys_90: -4.66250468e-13 - art_sys_91: -1.06500310e-12 - art_sys_92: 1.08684672e-17 - art_sys_93: 1.40159527e-17 - art_sys_94: -5.10589710e-16 - art_sys_95: -7.81169899e-12 - art_sys_96: -7.41631211e-13 - art_sys_97: -1.08401609e-06 - art_sys_98: -2.77678550e-12 - art_sys_99: 1.57977943e-12 - art_sys_100: -1.77934176e-11 - art_sys_101: -3.88161954e-11 - art_sys_102: 2.07845131e-11 - art_sys_103: -8.63298242e-06 - art_sys_104: -9.55877969e-12 - art_sys_105: 2.31691404e-15 - art_sys_106: -9.38935763e-11 - art_sys_107: 3.03148584e-14 - art_sys_108: -5.31168481e-18 - art_sys_109: -1.63603713e-20 - art_sys_110: 4.55500529e-10 - art_sys_111: 7.92897554e-11 - art_sys_112: -2.06085600e-10 - art_sys_113: 1.02254212e-06 - art_sys_114: 1.30645108e-19 - art_sys_115: 1.56492228e-12 - art_sys_116: -4.42458149e-15 - art_sys_117: 3.33542343e-20 - art_sys_118: -1.34940272e-10 - art_sys_119: -1.30933223e-15 - art_sys_120: 2.29262036e-12 - art_sys_121: 3.54516687e-20 - art_sys_122: 3.07294927e-10 - art_sys_123: -1.40605362e-19 - art_sys_124: -9.79705509e-12 - art_sys_125: -9.67880872e-21 - art_sys_126: 4.21371775e-16 - art_sys_127: -1.45610650e-19 - art_sys_128: 6.59516266e-14 - art_sys_129: -1.19614153e-20 - art_sys_130: 3.02453038e-19 - art_sys_131: -6.83290068e-21 - art_sys_132: 2.10243946e-13 - art_sys_133: -1.98312821e-19 - art_sys_134: -4.78111764e-17 - art_sys_135: -2.33653292e-14 - art_sys_136: -5.54571811e-21 - art_sys_137: -1.18971227e-18 - art_sys_138: 5.03417094e-15 - art_sys_139: 7.12980428e-19 - art_sys_140: -2.30594191e-21 - art_sys_141: 1.98858684e-18 - art_sys_142: 9.80536735e-16 - art_sys_143: 1.09470084e-20 - art_sys_144: -9.09427483e-20 - art_sys_145: -2.14089472e-15 - art_sys_146: -2.84151920e-18 - art_sys_147: 1.52147780e-21 - art_sys_148: 3.95379653e-22 - art_sys_149: 1.48319082e-15 - art_sys_150: 3.74937222e-17 - art_sys_151: -5.14641343e-16 - art_sys_152: -2.15253864e-19 - art_sys_153: -7.84400007e-16 - art_sys_154: 1.22880887e-06 - art_sys_155: -7.88696919e-18 - art_sys_156: 0.0 - art_sys_157: -1.39914828e-14 - art_sys_158: -0.0 - art_sys_159: 3.46195892e-15 - art_sys_160: 4.22927876e-16 - art_sys_161: 8.99768951e-17 - art_sys_162: 8.99768951e-17 - art_sys_163: -1.19112059e-16 - art_sys_164: -1.19112059e-16 - art_sys_165: 1.03258122e-30 - art_sys_166: -3.17977618e-31 - art_sys_167: -0.0 - art_sys_168: -1.60582595e-29 - art_sys_169: -3.99343481e-30 - art_sys_170: 1.53925155e-30 - art_sys_171: -5.12347977e-28 - art_sys_172: -7.03375250e-29 - art_sys_173: -1.48100677e-29 - art_sys_174: 6.45497387e-30 - art_sys_175: 1.23716976e-30 - art_sys_176: -3.85286622e-32 - art_sys_177: -3.48075509e-33 - art_sys_178: 5.40783760e-33 - art_sys_179: 6.72889014e-30 - art_sys_180: 7.00797749e-29 - art_sys_181: -1.75521195e-32 - art_sys_182: 5.84988308e-33 - art_sys_183: 7.62965088e-34 - art_sys_184: 3.86956984e-37 - art_sys_185: -1.05758438e-35 + art_sys_23: -5.06142687e-21 + art_sys_24: 3.08610428e-22 + art_sys_25: 5.80585208e-22 + art_sys_26: 6.27205809e-20 + art_sys_27: 1.43682736e-20 + art_sys_28: -7.57549730e-11 + art_sys_29: -3.40450202e-15 + art_sys_30: -4.84262862e-14 + art_sys_31: -1.23702705e-14 + art_sys_32: 4.05483927e-16 + art_sys_33: 1.91592977e-16 + art_sys_34: -1.97744830e-15 + art_sys_35: 2.68620009e-16 + art_sys_36: -5.77344246e-20 + art_sys_37: 7.70052876e-20 + art_sys_38: -3.09517032e-16 + art_sys_39: 1.06422491e-09 + art_sys_40: -1.98103891e-20 + art_sys_41: -1.46697593e-20 + art_sys_42: -9.23575268e-17 + art_sys_43: -1.46689202e-18 + art_sys_44: -1.26097973e-17 + art_sys_45: 5.06999402e-09 + art_sys_46: 5.35398062e-18 + art_sys_47: 7.02579634e-18 + art_sys_48: 2.33127046e-15 + art_sys_49: -6.26357128e-14 + art_sys_50: -4.50225667e-18 + art_sys_51: -3.72865718e-18 + art_sys_52: -3.55564697e-13 + art_sys_53: -8.18040502e-09 + art_sys_54: 4.68242814e-12 + art_sys_55: -1.96498084e-12 + art_sys_56: -3.63355586e-07 + art_sys_57: -1.34080127e-13 + art_sys_58: 1.44722085e-14 + art_sys_59: -8.83098165e-15 + art_sys_60: -2.43823352e-18 + art_sys_61: -3.93017668e-15 + art_sys_62: -1.51324967e-16 + art_sys_63: -1.25323339e-15 + art_sys_64: 1.08745221e-17 + art_sys_65: -6.20093204e-17 + art_sys_66: 1.24057964e-15 + art_sys_67: 7.89146185e-17 + art_sys_68: 5.04860879e-17 + art_sys_69: 9.78591488e-14 + art_sys_70: 9.19967435e-12 + art_sys_71: 4.89184314e-12 + art_sys_72: 9.41586024e-07 + art_sys_73: -2.53968609e-11 + art_sys_74: 2.81684188e-13 + art_sys_75: 5.97775705e-18 + art_sys_76: 9.73873911e-15 + art_sys_77: -1.21142353e-14 + art_sys_78: 6.52365997e-15 + art_sys_79: 9.25674728e-18 + art_sys_80: -1.69182615e-12 + art_sys_81: -2.32625135e-15 + art_sys_82: 2.07009528e-15 + art_sys_83: -2.97857253e-16 + art_sys_84: -2.82605274e-14 + art_sys_85: -1.88616589e-16 + art_sys_86: 6.86599302e-17 + art_sys_87: -5.94624113e-17 + art_sys_88: -4.71218312e-15 + art_sys_89: 1.69382647e-16 + art_sys_90: -2.99675876e-12 + art_sys_91: -3.80183691e-11 + art_sys_92: -4.39227908e-13 + art_sys_93: 1.08407902e-06 + art_sys_94: 3.24635744e-11 + art_sys_95: 2.91484939e-11 + art_sys_96: 3.47098550e-19 + art_sys_97: 8.65542267e-11 + art_sys_98: -4.26140245e-09 + art_sys_99: 8.63299427e-06 + art_sys_100: 2.94296726e-13 + art_sys_101: 4.63004700e-11 + art_sys_102: 2.87206935e-19 + art_sys_103: 1.35198719e-17 + art_sys_104: -4.70251779e-10 + art_sys_105: -8.37374833e-21 + art_sys_106: 3.93461152e-10 + art_sys_107: -1.01810861e-06 + art_sys_108: 3.23154046e-19 + art_sys_109: -3.77590686e-14 + art_sys_110: 1.67936746e-20 + art_sys_111: 6.67603741e-13 + art_sys_112: 1.05181573e-18 + art_sys_113: -4.19893109e-21 + art_sys_114: -4.51845114e-13 + art_sys_115: 2.38355888e-20 + art_sys_116: -1.58307788e-16 + art_sys_117: -1.30995817e-21 + art_sys_118: -1.27175827e-13 + art_sys_119: 1.33771403e-20 + art_sys_120: 1.56207015e-14 + art_sys_121: 3.22486181e-17 + art_sys_122: 1.25820184e-16 + art_sys_123: -1.73624846e-19 + art_sys_124: -2.43563637e-16 + art_sys_125: -9.14815927e-15 + art_sys_126: -1.61588546e-17 + art_sys_127: -4.56148113e-16 + art_sys_128: 1.16203983e-18 + art_sys_129: -1.18807556e-18 + art_sys_130: 4.57318733e-18 + art_sys_131: -4.85806352e-18 + art_sys_132: 1.68474424e-14 + art_sys_133: 7.87388574e-18 + art_sys_134: -1.55603418e-17 + art_sys_135: -7.95340446e-15 + art_sys_136: -8.34318396e-17 + art_sys_137: 7.00156751e-15 + art_sys_138: 1.68079713e-16 + art_sys_139: 1.09814006e-15 + art_sys_140: 1.26268201e-06 + art_sys_141: 6.40660476e-15 + art_sys_142: -0.0 + art_sys_143: -1.01860674e-13 + art_sys_144: -4.62782943e-14 + art_sys_145: -1.81524612e-14 + art_sys_146: 8.97485107e-21 + art_sys_147: -1.29294516e-21 + art_sys_148: -5.39956516e-20 + art_sys_149: -1.01534756e-20 + art_sys_150: -1.69639916e-21 + art_sys_151: 3.09850974e-19 + art_sys_152: -2.62288645e-20 + art_sys_153: -8.17394727e-21 + art_sys_154: 3.40246165e-19 + art_sys_155: -1.71157086e-18 + art_sys_156: -6.41063057e-18 + art_sys_157: -2.56125592e-16 + art_sys_158: 0.0 + art_sys_159: -1.27644859e-15 + art_sys_160: -1.27644859e-15 + art_sys_161: -7.91760807e-17 + art_sys_162: 2.61201459e-29 + art_sys_163: 0.0 + art_sys_164: 1.47309217e-29 + art_sys_165: 6.39438477e-29 + art_sys_166: -2.01362212e-29 + art_sys_167: 3.16487927e-29 + art_sys_168: -1.18435945e-29 + art_sys_169: 2.62334133e-29 + art_sys_170: -3.66764806e-29 + art_sys_171: 5.44489027e-28 + art_sys_172: -1.33399946e-27 + art_sys_173: 5.05974543e-28 + art_sys_174: -1.07572445e-29 + art_sys_175: 1.50772873e-29 + art_sys_176: -7.28665023e-29 + art_sys_177: 3.70865385e-30 + art_sys_178: 3.21991863e-31 + art_sys_179: 1.28718420e-31 + art_sys_180: -4.75048711e-32 + art_sys_181: 3.96031965e-32 + art_sys_182: -2.24732813e-32 + art_sys_183: 1.89945157e-34 + art_sys_184: -7.92652781e-35 + art_sys_185: 9.97666874e-31 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 diff --git a/nnpdf_data/nnpdf_data/commondata/CMS_Z0_7TEV_DIMUON/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/CMS_Z0_7TEV_DIMUON/uncertainties.yaml index 38c833da3e..9749766100 100644 --- a/nnpdf_data/nnpdf_data/commondata/CMS_Z0_7TEV_DIMUON/uncertainties.yaml +++ b/nnpdf_data/nnpdf_data/commondata/CMS_Z0_7TEV_DIMUON/uncertainties.yaml @@ -545,9 +545,9 @@ bins: sys_corr_7: -2.71112162e+01 sys_corr_8: -4.11565566e+01 sys_corr_9: 3.28881045e+01 - sys_corr_10: 2.96966591e+01 + sys_corr_10: -2.96966591e+01 sys_corr_11: -1.07316063e+02 - sys_corr_12: 1.31444046e+02 + sys_corr_12: -1.31444046e+02 sys_corr_13: -8.76955418e+01 sys_corr_14: -1.62949139e+01 sys_corr_15: -2.85386023e+01 @@ -573,60 +573,60 @@ bins: sys_corr_35: 1.29521171e+01 sys_corr_36: -7.66651670e+01 sys_corr_37: 1.02134789e+02 - sys_corr_38: 4.31805259e+01 - sys_corr_39: 5.23585358e+01 - sys_corr_40: -5.94193246e+01 - sys_corr_41: 2.78110212e+01 - sys_corr_42: -6.98823856e+01 - sys_corr_43: 1.95896158e+01 + sys_corr_38: -4.31805259e+01 + sys_corr_39: -5.23585358e+01 + sys_corr_40: 5.94193246e+01 + sys_corr_41: -2.78110212e+01 + sys_corr_42: 6.98823856e+01 + sys_corr_43: -1.95896158e+01 sys_corr_44: 9.28239544e+01 - sys_corr_45: 7.89688582e+00 - sys_corr_46: 3.14386712e+00 + sys_corr_45: -7.89688582e+00 + sys_corr_46: -3.14386712e+00 sys_corr_47: 2.79195120e+01 - sys_corr_48: 3.06879458e+01 + sys_corr_48: -3.06879458e+01 sys_corr_49: 2.31756421e+01 sys_corr_50: 6.45323916e+01 sys_corr_51: 1.52451576e+00 - sys_corr_52: -8.04182487e+01 - sys_corr_53: -1.14840299e+01 + sys_corr_52: 8.04182487e+01 + sys_corr_53: 1.14840299e+01 sys_corr_54: 1.91036009e+00 - sys_corr_55: 5.12246530e-01 + sys_corr_55: -5.12246530e-01 sys_corr_56: -2.40369454e+01 - sys_corr_57: -8.76854368e+00 + sys_corr_57: 8.76854368e+00 sys_corr_58: 2.05877931e+01 - sys_corr_59: -2.80573852e+01 + sys_corr_59: 2.80573852e+01 sys_corr_60: 1.43949915e+01 sys_corr_61: 1.47340269e+01 sys_corr_62: -1.45863166e+01 - sys_corr_63: 9.83898368e+00 - sys_corr_64: -2.29179565e+01 + sys_corr_63: -9.83898368e+00 + sys_corr_64: 2.29179565e+01 sys_corr_65: 3.62032901e+00 sys_corr_66: 1.19402727e+01 sys_corr_67: 5.51012278e+00 sys_corr_68: -8.36940907e+00 sys_corr_69: 1.46349929e+01 sys_corr_70: 1.79268370e+01 - sys_corr_71: 2.19301677e+01 - sys_corr_72: 7.85704872e+00 - sys_corr_73: 1.69626396e+01 + sys_corr_71: 1.69626396e+01 + sys_corr_72: -7.85704872e+00 + sys_corr_73: 2.19301677e+01 sys_corr_74: -3.37252614e+00 sys_corr_75: 3.75922245e+01 sys_corr_76: -5.71503227e+00 - sys_corr_77: 4.09557271e+01 - sys_corr_78: 3.93033201e+00 - sys_corr_79: -4.22891838e+00 - sys_corr_80: 2.94647688e+00 + sys_corr_77: -4.09557271e+01 + sys_corr_78: -4.22891838e+00 + sys_corr_79: -2.94647688e+00 + sys_corr_80: -3.93033201e+00 sys_corr_81: -5.01058719e+00 sys_corr_82: -1.15087577e+00 sys_corr_83: -5.84043238e+00 - sys_corr_84: -1.03240536e+01 + sys_corr_84: 1.03240536e+01 sys_corr_85: -3.05590098e+00 sys_corr_86: -8.01235452e+00 sys_corr_87: -3.51975658e-01 sys_corr_88: 1.12591804e+01 sys_corr_89: 1.24346987e+00 sys_corr_90: 1.34059659e-01 - sys_corr_91: 8.41346338e-01 + sys_corr_91: -8.41346338e-01 sys_corr_92: 8.55588500e-01 sys_corr_93: 5.46722002e-03 sys_corr_94: 8.60941960e-01 @@ -634,40 +634,40 @@ bins: sys_corr_96: 3.72643401e-01 sys_corr_97: 2.55234557e+00 sys_corr_98: 1.18986353e+00 - sys_corr_99: -1.67699380e+00 - sys_corr_100: 2.92603044e+00 + sys_corr_99: 1.67699380e+00 + sys_corr_100: -2.92603044e+00 sys_corr_101: 2.82955034e+00 - sys_corr_102: 7.00828134e+00 - sys_corr_103: -2.53443826e+01 - sys_corr_104: -4.25186310e+00 - sys_corr_105: -9.98121441e+00 - sys_corr_106: -2.74081361e+00 - sys_corr_107: -9.70988039e-01 + sys_corr_102: -7.00828134e+00 + sys_corr_103: 2.53443826e+01 + sys_corr_104: 4.25186310e+00 + sys_corr_105: 9.98121441e+00 + sys_corr_106: 2.74081361e+00 + sys_corr_107: 9.70988039e-01 sys_corr_108: 4.31914890e-01 sys_corr_109: 7.35849712e-01 sys_corr_110: -8.20042936e-01 - sys_corr_111: 1.62505355e+00 + sys_corr_111: -1.62505355e+00 sys_corr_112: -1.75707569e-01 sys_corr_113: -1.23573058e-01 sys_corr_114: -2.95836417e-03 - sys_corr_115: 1.26162573e-01 + sys_corr_115: -1.26162573e-01 sys_corr_116: 1.19369680e-01 sys_corr_117: -1.00622372e-01 sys_corr_118: -1.73306589e-01 sys_corr_119: 1.72591925e-03 sys_corr_120: -6.82302421e-02 - sys_corr_121: 6.09802098e-03 - sys_corr_122: -6.21218501e-02 - sys_corr_123: 1.26709726e-01 + sys_corr_121: -6.09802098e-03 + sys_corr_122: 1.26709726e-01 + sys_corr_123: -6.21218501e-02 sys_corr_124: -4.71163556e-02 - sys_corr_125: 8.50605839e-02 - sys_corr_126: -2.19498344e-02 + sys_corr_125: -8.50605839e-02 + sys_corr_126: 2.19498344e-02 sys_corr_127: -6.67023571e-01 sys_corr_128: -1.29567800e-01 - sys_corr_129: -5.28202673e-02 - sys_corr_130: 2.38184435e-02 + sys_corr_129: 5.28202673e-02 + sys_corr_130: -2.38184435e-02 sys_corr_131: -7.58361622e-02 - sys_corr_132: 3.23375291e-02 + sys_corr_132: -3.23375291e-02 stat: 0.0 luminosity: 3.92441566e+02 - sys_corr_1: 2.11159255e+02 @@ -679,9 +679,9 @@ bins: sys_corr_7: -2.31445793e+01 sys_corr_8: -3.80583862e+01 sys_corr_9: 2.92694186e+01 - sys_corr_10: 2.90426238e+01 + sys_corr_10: -2.90426238e+01 sys_corr_11: -1.06752684e+02 - sys_corr_12: 1.27869539e+02 + sys_corr_12: -1.27869539e+02 sys_corr_13: -8.84596960e+01 sys_corr_14: -2.27421092e+01 sys_corr_15: -3.24561008e+01 @@ -707,60 +707,60 @@ bins: sys_corr_35: 1.52518556e-01 sys_corr_36: 2.18140147e+01 sys_corr_37: -1.48019359e+01 - sys_corr_38: 2.41929013e+00 - sys_corr_39: -1.39628267e+01 - sys_corr_40: -3.69175160e+00 - sys_corr_41: 2.40414211e+01 - sys_corr_42: -4.21353633e+01 - sys_corr_43: 1.33940732e+01 + sys_corr_38: -2.41929013e+00 + sys_corr_39: 1.39628267e+01 + sys_corr_40: 3.69175160e+00 + sys_corr_41: -2.40414211e+01 + sys_corr_42: 4.21353633e+01 + sys_corr_43: -1.33940732e+01 sys_corr_44: 2.06099269e+01 - sys_corr_45: 5.05691235e+01 - sys_corr_46: -6.46020089e+00 + sys_corr_45: -5.05691235e+01 + sys_corr_46: 6.46020089e+00 sys_corr_47: 2.67634849e+01 - sys_corr_48: 2.14808494e+01 + sys_corr_48: -2.14808494e+01 sys_corr_49: -1.46355397e+01 sys_corr_50: 3.14327737e+01 sys_corr_51: -4.57738351e+01 - sys_corr_52: -9.41530439e+01 - sys_corr_53: 2.70234473e+01 + sys_corr_52: 9.41530439e+01 + sys_corr_53: -2.70234473e+01 sys_corr_54: 5.27627791e+01 - sys_corr_55: 1.46866162e+00 + sys_corr_55: -1.46866162e+00 sys_corr_56: -2.88825791e+01 - sys_corr_57: -1.42867812e+01 + sys_corr_57: 1.42867812e+01 sys_corr_58: 1.04759386e+01 - sys_corr_59: -2.18961063e+01 + sys_corr_59: 2.18961063e+01 sys_corr_60: 2.45124092e+00 sys_corr_61: 2.31672454e+01 sys_corr_62: -2.37610908e+01 - sys_corr_63: 2.45186306e+01 - sys_corr_64: -4.72021638e+00 + sys_corr_63: -2.45186306e+01 + sys_corr_64: 4.72021638e+00 sys_corr_65: 5.55857419e+00 sys_corr_66: -6.51943496e+00 sys_corr_67: 5.20312012e+00 sys_corr_68: 1.34450218e+01 sys_corr_69: 1.51571537e+01 sys_corr_70: 2.23256779e+00 - sys_corr_71: -1.61982917e+01 - sys_corr_72: 4.06340740e+00 - sys_corr_73: -3.86082471e+01 + sys_corr_71: -3.86082471e+01 + sys_corr_72: -4.06340740e+00 + sys_corr_73: -1.61982917e+01 sys_corr_74: 2.76477747e+00 sys_corr_75: -4.05702929e+01 sys_corr_76: 4.12840503e+00 - sys_corr_77: -6.95614086e+01 - sys_corr_78: 2.03461169e+00 - sys_corr_79: 3.32885303e+00 - sys_corr_80: -1.65349171e+01 + sys_corr_77: 6.95614086e+01 + sys_corr_78: 3.32885303e+00 + sys_corr_79: 1.65349171e+01 + sys_corr_80: -2.03461169e+00 sys_corr_81: -2.54031663e+01 sys_corr_82: 6.99399353e-02 sys_corr_83: -1.39448823e+00 - sys_corr_84: 2.13130423e+01 + sys_corr_84: -2.13130423e+01 sys_corr_85: 1.38093609e+01 sys_corr_86: 1.99427635e+01 sys_corr_87: 1.25799323e+01 sys_corr_88: -1.74400550e+01 sys_corr_89: -2.98003281e+00 sys_corr_90: -4.32204118e+00 - sys_corr_91: -1.43143266e+00 + sys_corr_91: 1.43143266e+00 sys_corr_92: 1.28861494e+01 sys_corr_93: -2.04853452e-01 sys_corr_94: 7.51664429e-02 @@ -768,40 +768,40 @@ bins: sys_corr_96: 5.34936871e-01 sys_corr_97: 7.30075353e+00 sys_corr_98: 2.58308191e+00 - sys_corr_99: -3.56053810e+00 - sys_corr_100: 2.95946004e+00 + sys_corr_99: 3.56053810e+00 + sys_corr_100: -2.95946004e+00 sys_corr_101: 3.70132644e+00 - sys_corr_102: 8.36363313e+00 - sys_corr_103: -3.28622611e+01 - sys_corr_104: -6.20062231e+00 - sys_corr_105: -1.47387020e+01 - sys_corr_106: -3.20125438e+00 - sys_corr_107: -9.40179489e-01 + sys_corr_102: -8.36363313e+00 + sys_corr_103: 3.28622611e+01 + sys_corr_104: 6.20062231e+00 + sys_corr_105: 1.47387020e+01 + sys_corr_106: 3.20125438e+00 + sys_corr_107: 9.40179489e-01 sys_corr_108: 2.46848865e-02 sys_corr_109: 8.84308902e-01 sys_corr_110: -7.03702377e-01 - sys_corr_111: 2.63863417e+00 + sys_corr_111: -2.63863417e+00 sys_corr_112: -2.42808697e-02 sys_corr_113: 2.39261186e-02 sys_corr_114: -3.46419130e-04 - sys_corr_115: 2.86839458e-01 + sys_corr_115: -2.86839458e-01 sys_corr_116: 1.87038698e-01 sys_corr_117: -1.41403410e-01 sys_corr_118: -7.74298948e-02 sys_corr_119: 4.96898255e-03 sys_corr_120: -1.02260291e-01 - sys_corr_121: 1.05026168e-02 - sys_corr_122: -3.88849678e-02 - sys_corr_123: 9.57173966e-02 + sys_corr_121: -1.05026168e-02 + sys_corr_122: 9.57173966e-02 + sys_corr_123: -3.88849678e-02 sys_corr_124: -1.19373134e-01 - sys_corr_125: 7.41110138e-02 - sys_corr_126: -7.15008442e-03 + sys_corr_125: -7.41110138e-02 + sys_corr_126: 7.15008442e-03 sys_corr_127: -1.00034513e+00 sys_corr_128: -2.09338978e-01 - sys_corr_129: -4.82970787e-02 - sys_corr_130: 2.33983914e-03 + sys_corr_129: 4.82970787e-02 + sys_corr_130: -2.33983914e-03 sys_corr_131: -9.61249424e-02 - sys_corr_132: -4.02298107e-02 + sys_corr_132: 4.02298107e-02 stat: 0.0 luminosity: 3.89253172e+02 - sys_corr_1: 2.01131912e+02 @@ -813,9 +813,9 @@ bins: sys_corr_7: -2.31210216e+01 sys_corr_8: -3.97863516e+01 sys_corr_9: 3.17800187e+01 - sys_corr_10: 2.90778889e+01 + sys_corr_10: -2.90778889e+01 sys_corr_11: -1.04045800e+02 - sys_corr_12: 1.29369599e+02 + sys_corr_12: -1.29369599e+02 sys_corr_13: -8.38790594e+01 sys_corr_14: -1.98237326e+01 sys_corr_15: -2.75922703e+01 @@ -841,60 +841,60 @@ bins: sys_corr_35: -6.13063901e+00 sys_corr_36: -1.98530866e+01 sys_corr_37: 1.60914627e+01 - sys_corr_38: 7.15884931e+00 - sys_corr_39: 5.31009427e+00 - sys_corr_40: -2.58938950e+01 - sys_corr_41: 4.80719664e+01 - sys_corr_42: -4.38476031e+01 - sys_corr_43: 2.50322005e+01 + sys_corr_38: -7.15884931e+00 + sys_corr_39: -5.31009427e+00 + sys_corr_40: 2.58938950e+01 + sys_corr_41: -4.80719664e+01 + sys_corr_42: 4.38476031e+01 + sys_corr_43: -2.50322005e+01 sys_corr_44: 4.26166678e+01 - sys_corr_45: -5.20508413e+00 - sys_corr_46: 8.14146870e+00 + sys_corr_45: 5.20508413e+00 + sys_corr_46: -8.14146870e+00 sys_corr_47: 4.67648135e+00 - sys_corr_48: 8.09385332e+00 + sys_corr_48: -8.09385332e+00 sys_corr_49: 2.25059690e+01 sys_corr_50: 2.55283260e+01 sys_corr_51: 1.10263594e+01 - sys_corr_52: 8.41140303e+00 - sys_corr_53: -3.04584598e+01 + sys_corr_52: -8.41140303e+00 + sys_corr_53: 3.04584598e+01 sys_corr_54: -4.95856262e+01 - sys_corr_55: 1.04752520e+01 + sys_corr_55: -1.04752520e+01 sys_corr_56: -3.67974323e+00 - sys_corr_57: 1.83016755e+00 + sys_corr_57: -1.83016755e+00 sys_corr_58: 9.37691376e+00 - sys_corr_59: 5.41276563e+00 + sys_corr_59: -5.41276563e+00 sys_corr_60: 1.64043473e+01 sys_corr_61: -2.62015417e+01 sys_corr_62: 1.08627352e+01 - sys_corr_63: -1.28863520e+01 - sys_corr_64: -1.57204012e+01 + sys_corr_63: 1.28863520e+01 + sys_corr_64: 1.57204012e+01 sys_corr_65: -1.45898828e+01 sys_corr_66: 1.68125915e+01 sys_corr_67: -4.98410097e+00 sys_corr_68: -1.17328153e+01 sys_corr_69: 5.16504265e+00 sys_corr_70: 1.35993665e+01 - sys_corr_71: 2.48526150e+01 - sys_corr_72: 7.97891378e+00 - sys_corr_73: 1.25023858e+01 + sys_corr_71: 1.25023858e+01 + sys_corr_72: -7.97891378e+00 + sys_corr_73: 2.48526150e+01 sys_corr_74: -4.52180945e+00 sys_corr_75: 9.59062206e+00 sys_corr_76: -2.24338088e+00 - sys_corr_77: 1.30914471e+01 - sys_corr_78: -2.93776055e+01 - sys_corr_79: 3.07082675e+01 - sys_corr_80: 1.48000018e+01 + sys_corr_77: -1.30914471e+01 + sys_corr_78: 3.07082675e+01 + sys_corr_79: -1.48000018e+01 + sys_corr_80: 2.93776055e+01 sys_corr_81: 3.09687432e+01 sys_corr_82: -1.92143172e+00 sys_corr_83: 5.33125310e+00 - sys_corr_84: -1.43973007e+01 + sys_corr_84: 1.43973007e+01 sys_corr_85: -1.43123750e+01 sys_corr_86: -7.51669539e+00 sys_corr_87: -1.17090810e+01 sys_corr_88: 4.72707332e+00 sys_corr_89: 2.18948218e+00 sys_corr_90: -7.35208706e-01 - sys_corr_91: -3.19544651e+00 + sys_corr_91: 3.19544651e+00 sys_corr_92: -1.24805892e+01 sys_corr_93: 1.59952207e-01 sys_corr_94: -1.35609150e+00 @@ -902,40 +902,40 @@ bins: sys_corr_96: -1.44325356e+00 sys_corr_97: -1.23266150e+01 sys_corr_98: -4.47170880e+00 - sys_corr_99: 7.29582607e+00 - sys_corr_100: -7.32258925e+00 + sys_corr_99: -7.29582607e+00 + sys_corr_100: 7.32258925e+00 sys_corr_101: -8.00437777e+00 - sys_corr_102: -1.97878964e+01 - sys_corr_103: 7.75532262e+01 - sys_corr_104: 1.44961401e+01 - sys_corr_105: 3.29611174e+01 - sys_corr_106: 7.44159155e+00 - sys_corr_107: 2.89353720e+00 + sys_corr_102: 1.97878964e+01 + sys_corr_103: -7.75532262e+01 + sys_corr_104: -1.44961401e+01 + sys_corr_105: -3.29611174e+01 + sys_corr_106: -7.44159155e+00 + sys_corr_107: -2.89353720e+00 sys_corr_108: -8.92486872e-01 sys_corr_109: -1.34450030e+00 sys_corr_110: 2.19057648e+00 - sys_corr_111: -6.43948189e+00 + sys_corr_111: 6.43948189e+00 sys_corr_112: 1.52694094e-01 sys_corr_113: 2.76161138e-01 sys_corr_114: 9.22941912e-03 - sys_corr_115: -2.67654290e-01 + sys_corr_115: 2.67654290e-01 sys_corr_116: -9.79579069e-02 sys_corr_117: 6.92750368e-02 sys_corr_118: 4.17639570e-02 sys_corr_119: 2.85783922e-03 sys_corr_120: 8.05522788e-02 - sys_corr_121: -2.93740486e-03 - sys_corr_122: 7.97835922e-02 - sys_corr_123: -1.51627395e-01 + sys_corr_121: 2.93740486e-03 + sys_corr_122: -1.51627395e-01 + sys_corr_123: 7.97835922e-02 sys_corr_124: -1.15678324e-01 - sys_corr_125: -5.81068309e-02 - sys_corr_126: 2.79929968e-02 + sys_corr_125: 5.81068309e-02 + sys_corr_126: -2.79929968e-02 sys_corr_127: 2.93743685e+00 sys_corr_128: 2.98837522e-01 - sys_corr_129: 2.40389487e-01 - sys_corr_130: -1.32805990e-02 + sys_corr_129: -2.40389487e-01 + sys_corr_130: 1.32805990e-02 sys_corr_131: 1.08614322e-01 - sys_corr_132: -1.00645708e-02 + sys_corr_132: 1.00645708e-02 stat: 0.0 luminosity: 3.78312154e+02 - sys_corr_1: 2.23770814e+02 @@ -947,9 +947,9 @@ bins: sys_corr_7: -1.25826330e+01 sys_corr_8: -3.01733409e+01 sys_corr_9: 2.39184870e+01 - sys_corr_10: 2.58975972e+01 + sys_corr_10: -2.58975972e+01 sys_corr_11: -8.49736545e+01 - sys_corr_12: 1.03961842e+02 + sys_corr_12: -1.03961842e+02 sys_corr_13: -6.82874238e+01 sys_corr_14: -1.35159871e+01 sys_corr_15: -2.47833383e+01 @@ -975,60 +975,60 @@ bins: sys_corr_35: 4.46590548e+00 sys_corr_36: -1.17252535e+01 sys_corr_37: -1.63171495e+01 - sys_corr_38: -4.60634729e+01 - sys_corr_39: -1.82011930e+01 - sys_corr_40: -5.89133376e+00 - sys_corr_41: 1.88259073e+01 - sys_corr_42: 2.00203739e+01 - sys_corr_43: -2.46509044e+00 + sys_corr_38: 4.60634729e+01 + sys_corr_39: 1.82011930e+01 + sys_corr_40: 5.89133376e+00 + sys_corr_41: -1.88259073e+01 + sys_corr_42: -2.00203739e+01 + sys_corr_43: 2.46509044e+00 sys_corr_44: 6.08783628e+00 - sys_corr_45: -4.49252370e+01 - sys_corr_46: 6.67971433e+00 + sys_corr_45: 4.49252370e+01 + sys_corr_46: -6.67971433e+00 sys_corr_47: -3.28904430e+01 - sys_corr_48: -2.17800755e+01 + sys_corr_48: 2.17800755e+01 sys_corr_49: 2.39732119e+01 sys_corr_50: -3.90674115e+01 sys_corr_51: 5.53110409e+01 - sys_corr_52: 1.29996262e+02 - sys_corr_53: -5.09223568e+01 + sys_corr_52: -1.29996262e+02 + sys_corr_53: 5.09223568e+01 sys_corr_54: -9.19602754e+01 - sys_corr_55: -2.56803406e+00 + sys_corr_55: 2.56803406e+00 sys_corr_56: 5.29921110e+01 - sys_corr_57: 9.47776363e+00 + sys_corr_57: -9.47776363e+00 sys_corr_58: 1.40163032e+01 - sys_corr_59: 2.97199615e+01 + sys_corr_59: -2.97199615e+01 sys_corr_60: 7.19322013e+00 sys_corr_61: -1.68911137e+01 sys_corr_62: 1.01272255e+01 - sys_corr_63: -1.58649637e+01 - sys_corr_64: 2.12823138e+00 + sys_corr_63: 1.58649637e+01 + sys_corr_64: -2.12823138e+00 sys_corr_65: -5.11056709e+00 sys_corr_66: 3.86498780e+00 sys_corr_67: 4.58819834e+00 sys_corr_68: -2.87507683e+01 sys_corr_69: -3.39625330e-01 sys_corr_70: 2.89167711e+00 - sys_corr_71: 9.13241877e+00 - sys_corr_72: 3.33051892e+00 - sys_corr_73: 1.73360156e+01 + sys_corr_71: 1.73360156e+01 + sys_corr_72: -3.33051892e+00 + sys_corr_73: 9.13241877e+00 sys_corr_74: -1.65909686e+00 sys_corr_75: 2.86426199e+01 sys_corr_76: -3.17017990e+00 - sys_corr_77: 6.73644341e+01 - sys_corr_78: 1.44431677e+01 - sys_corr_79: -1.32866753e+01 - sys_corr_80: 8.98050457e+00 + sys_corr_77: -6.73644341e+01 + sys_corr_78: -1.32866753e+01 + sys_corr_79: -8.98050457e+00 + sys_corr_80: -1.44431677e+01 sys_corr_81: 2.28366453e+00 sys_corr_82: 2.96269032e+00 sys_corr_83: -3.02879658e+00 - sys_corr_84: 4.65641843e-01 + sys_corr_84: -4.65641843e-01 sys_corr_85: 5.09602468e+00 sys_corr_86: -6.45906769e+00 sys_corr_87: -4.14505290e+00 sys_corr_88: 9.95182639e+00 sys_corr_89: -5.68665232e-01 sys_corr_90: 3.68702216e+00 - sys_corr_91: 2.68291490e+00 + sys_corr_91: -2.68291490e+00 sys_corr_92: 5.25943458e-01 sys_corr_93: 7.25658024e-02 sys_corr_94: 1.61024030e+00 @@ -1036,40 +1036,40 @@ bins: sys_corr_96: 9.25324354e-01 sys_corr_97: 6.12886298e+00 sys_corr_98: 2.60441008e+00 - sys_corr_99: -3.96462824e+00 - sys_corr_100: 5.39243963e+00 + sys_corr_99: 3.96462824e+00 + sys_corr_100: -5.39243963e+00 sys_corr_101: 5.56803449e+00 - sys_corr_102: 1.38735484e+01 - sys_corr_103: -5.13477779e+01 - sys_corr_104: -9.05521726e+00 - sys_corr_105: -2.06767419e+01 - sys_corr_106: -5.22145074e+00 - sys_corr_107: -2.16471434e+00 + sys_corr_102: -1.38735484e+01 + sys_corr_103: 5.13477779e+01 + sys_corr_104: 9.05521726e+00 + sys_corr_105: 2.06767419e+01 + sys_corr_106: 5.22145074e+00 + sys_corr_107: 2.16471434e+00 sys_corr_108: 7.75833686e-01 sys_corr_109: 9.77816570e-01 sys_corr_110: -1.23015223e+00 - sys_corr_111: 3.97229245e+00 + sys_corr_111: -3.97229245e+00 sys_corr_112: -1.88222941e-01 sys_corr_113: -2.72658653e-01 sys_corr_114: -7.46844299e-03 - sys_corr_115: 1.94100462e-01 + sys_corr_115: -1.94100462e-01 sys_corr_116: 7.64724880e-02 sys_corr_117: -5.32310172e-02 sys_corr_118: -1.29780691e-01 sys_corr_119: -2.14848312e-03 sys_corr_120: -5.78317285e-02 - sys_corr_121: -2.24473835e-03 - sys_corr_122: -6.37079218e-02 - sys_corr_123: 1.35391583e-01 + sys_corr_121: 2.24473835e-03 + sys_corr_122: 1.35391583e-01 + sys_corr_123: -6.37079218e-02 sys_corr_124: 7.85701745e-02 - sys_corr_125: 6.55508672e-02 - sys_corr_126: -1.51302523e-02 + sys_corr_125: -6.55508672e-02 + sys_corr_126: 1.51302523e-02 sys_corr_127: -1.66699635e+00 sys_corr_128: -3.29873154e-01 - sys_corr_129: -1.50349656e-01 - sys_corr_130: -1.62394948e-02 + sys_corr_129: 1.50349656e-01 + sys_corr_130: 1.62394948e-02 sys_corr_131: -8.07727478e-02 - sys_corr_132: 4.26232334e-02 + sys_corr_132: -4.26232334e-02 stat: 0.0 luminosity: 3.87716780e+02 - sys_corr_1: 2.10992669e+02 @@ -1081,9 +1081,9 @@ bins: sys_corr_7: -7.21890197e+00 sys_corr_8: -2.73217529e+01 sys_corr_9: 2.30091940e+01 - sys_corr_10: 2.56280526e+01 + sys_corr_10: -2.56280526e+01 sys_corr_11: -7.85951016e+01 - sys_corr_12: 1.02721295e+02 + sys_corr_12: -1.02721295e+02 sys_corr_13: -6.69319780e+01 sys_corr_14: -1.34839721e+01 sys_corr_15: -2.63964797e+01 @@ -1109,60 +1109,60 @@ bins: sys_corr_35: -1.57178695e+01 sys_corr_36: -3.38413709e+01 sys_corr_37: 1.88601208e+01 - sys_corr_38: -5.49033877e+00 - sys_corr_39: 3.21881110e+01 - sys_corr_40: 7.88407534e+00 - sys_corr_41: 4.65986680e+00 - sys_corr_42: 4.35799440e+01 - sys_corr_43: 6.57366796e+00 + sys_corr_38: 5.49033877e+00 + sys_corr_39: -3.21881110e+01 + sys_corr_40: -7.88407534e+00 + sys_corr_41: -4.65986680e+00 + sys_corr_42: -4.35799440e+01 + sys_corr_43: -6.57366796e+00 sys_corr_44: -6.73722334e+00 - sys_corr_45: -3.46968191e+01 - sys_corr_46: 1.87243870e+01 + sys_corr_45: 3.46968191e+01 + sys_corr_46: -1.87243870e+01 sys_corr_47: -4.17174700e+01 - sys_corr_48: -1.94690032e+01 + sys_corr_48: 1.94690032e+01 sys_corr_49: 2.40153764e+01 sys_corr_50: -2.88468399e+01 sys_corr_51: 3.63205562e+01 - sys_corr_52: 8.78164859e+01 - sys_corr_53: -1.52658449e+01 + sys_corr_52: -8.78164859e+01 + sys_corr_53: 1.52658449e+01 sys_corr_54: -4.78892610e+01 - sys_corr_55: 1.18744493e+01 + sys_corr_55: -1.18744493e+01 sys_corr_56: 2.29716944e+01 - sys_corr_57: 1.94228413e+01 + sys_corr_57: -1.94228413e+01 sys_corr_58: 1.25599012e+01 - sys_corr_59: 4.11148720e+01 + sys_corr_59: -4.11148720e+01 sys_corr_60: 8.72553946e+00 sys_corr_61: -6.43979829e+00 sys_corr_62: 1.48139030e+01 - sys_corr_63: -3.35815254e+00 - sys_corr_64: 1.34891645e+01 + sys_corr_63: 3.35815254e+00 + sys_corr_64: -1.34891645e+01 sys_corr_65: 8.89581289e+00 sys_corr_66: -7.03554835e+00 sys_corr_67: -8.45080476e+00 sys_corr_68: 3.62210330e+01 sys_corr_69: -6.61030509e+00 sys_corr_70: 6.18351565e-01 - sys_corr_71: -2.40190453e+01 - sys_corr_72: -2.09576085e-01 - sys_corr_73: -5.30979745e+01 + sys_corr_71: -5.30979745e+01 + sys_corr_72: 2.09576085e-01 + sys_corr_73: -2.40190453e+01 sys_corr_74: 4.28777250e+00 sys_corr_75: -9.29321953e+01 sys_corr_76: 8.87647961e+00 - sys_corr_77: -1.02737230e+02 - sys_corr_78: 2.65542383e+00 - sys_corr_79: 2.77424739e+01 - sys_corr_80: -1.59377905e+01 + sys_corr_77: 1.02737230e+02 + sys_corr_78: 2.77424739e+01 + sys_corr_79: 1.59377905e+01 + sys_corr_80: -2.65542383e+00 sys_corr_81: 9.81279365e+00 sys_corr_82: 4.97499473e+00 sys_corr_83: 1.24084518e+01 - sys_corr_84: 3.01552833e+01 + sys_corr_84: -3.01552833e+01 sys_corr_85: 1.21057763e+01 sys_corr_86: 3.18681489e+01 sys_corr_87: 5.18804216e+00 sys_corr_88: -3.41552506e+01 sys_corr_89: -4.20846819e+00 sys_corr_90: -2.79849087e+00 - sys_corr_91: -2.94122520e+00 + sys_corr_91: 2.94122520e+00 sys_corr_92: 3.39644203e+00 sys_corr_93: -8.81731160e-02 sys_corr_94: -1.56069055e+00 @@ -1170,40 +1170,40 @@ bins: sys_corr_96: 1.30315101e-01 sys_corr_97: 3.48414609e+00 sys_corr_98: 9.70552687e-01 - sys_corr_99: -7.28088576e-01 - sys_corr_100: -1.13463138e+00 + sys_corr_99: 7.28088576e-01 + sys_corr_100: 1.13463138e+00 sys_corr_101: -4.77692458e-01 - sys_corr_102: -1.71062569e+00 - sys_corr_103: 4.98159911e+00 - sys_corr_104: 5.23031044e-01 - sys_corr_105: 6.96884447e-01 - sys_corr_106: 7.22560401e-01 - sys_corr_107: 7.24026706e-01 + sys_corr_102: 1.71062569e+00 + sys_corr_103: -4.98159911e+00 + sys_corr_104: -5.23031044e-01 + sys_corr_105: -6.96884447e-01 + sys_corr_106: -7.22560401e-01 + sys_corr_107: -7.24026706e-01 sys_corr_108: -4.11012136e-01 sys_corr_109: 1.55278318e-02 sys_corr_110: 6.48634332e-01 - sys_corr_111: -1.13839187e-01 + sys_corr_111: 1.13839187e-01 sys_corr_112: 1.45092106e-01 sys_corr_113: 1.69006209e-01 sys_corr_114: 4.52052477e-03 - sys_corr_115: 1.71512664e-01 + sys_corr_115: -1.71512664e-01 sys_corr_116: 9.48258749e-02 sys_corr_117: -6.49091020e-02 sys_corr_118: -9.52287799e-02 sys_corr_119: 5.47545361e-03 sys_corr_120: -2.97813350e-02 - sys_corr_121: 1.00520969e-02 - sys_corr_122: 3.08282698e-02 - sys_corr_123: -3.06310180e-02 + sys_corr_121: -1.00520969e-02 + sys_corr_122: -3.06310180e-02 + sys_corr_123: 3.08282698e-02 sys_corr_124: -1.14572071e-01 - sys_corr_125: 5.59363294e-03 - sys_corr_126: 1.68050686e-02 + sys_corr_125: -5.59363294e-03 + sys_corr_126: -1.68050686e-02 sys_corr_127: 5.43658182e-01 sys_corr_128: -1.63130754e-01 - sys_corr_129: 9.22143039e-02 - sys_corr_130: -1.94177657e-02 + sys_corr_129: -9.22143039e-02 + sys_corr_130: 1.94177657e-02 sys_corr_131: -1.58501451e-02 - sys_corr_132: -6.32002583e-02 + sys_corr_132: 6.32002583e-02 stat: 0.0 luminosity: 3.92531898e+02 - sys_corr_1: 2.34888060e+02 @@ -1215,9 +1215,9 @@ bins: sys_corr_7: 1.59759787e+01 sys_corr_8: -7.80716145e+00 sys_corr_9: 6.90456689e+00 - sys_corr_10: 1.47708009e+01 + sys_corr_10: -1.47708009e+01 sys_corr_11: -4.68112992e+01 - sys_corr_12: 6.45936782e+01 + sys_corr_12: -6.45936782e+01 sys_corr_13: -4.56365705e+01 sys_corr_14: -8.24676038e+00 sys_corr_15: -1.76594284e+01 @@ -1243,60 +1243,60 @@ bins: sys_corr_35: 4.26010276e+00 sys_corr_36: 6.32974309e-01 sys_corr_37: -6.23410389e+00 - sys_corr_38: 6.61570927e+00 - sys_corr_39: 6.39003708e+00 - sys_corr_40: 3.30915243e+01 - sys_corr_41: -1.27398462e-01 - sys_corr_42: 4.71005181e+01 - sys_corr_43: -2.57698830e+00 + sys_corr_38: -6.61570927e+00 + sys_corr_39: -6.39003708e+00 + sys_corr_40: -3.30915243e+01 + sys_corr_41: 1.27398462e-01 + sys_corr_42: -4.71005181e+01 + sys_corr_43: 2.57698830e+00 sys_corr_44: -3.83866325e+01 - sys_corr_45: -2.45546714e+01 - sys_corr_46: 6.68695746e+00 + sys_corr_45: 2.45546714e+01 + sys_corr_46: -6.68695746e+00 sys_corr_47: 3.77798989e+00 - sys_corr_48: -2.19555286e+01 + sys_corr_48: 2.19555286e+01 sys_corr_49: 1.98707302e+01 sys_corr_50: -4.32153591e+01 sys_corr_51: 2.93862559e+00 - sys_corr_52: 2.15749107e+01 - sys_corr_53: 4.29935738e+01 + sys_corr_52: -2.15749107e+01 + sys_corr_53: -4.29935738e+01 sys_corr_54: 1.09585006e+02 - sys_corr_55: -1.51751613e+01 + sys_corr_55: 1.51751613e+01 sys_corr_56: -4.40654846e+01 - sys_corr_57: 5.41492318e+01 + sys_corr_57: -5.41492318e+01 sys_corr_58: -5.73871996e+01 - sys_corr_59: -2.12506391e+01 + sys_corr_59: 2.12506391e+01 sys_corr_60: -1.68337365e+01 sys_corr_61: -3.98634162e+01 sys_corr_62: 4.90315025e+01 - sys_corr_63: -7.59095842e+00 - sys_corr_64: -1.38840996e+01 + sys_corr_63: 7.59095842e+00 + sys_corr_64: 1.38840996e+01 sys_corr_65: 2.56754430e+01 sys_corr_66: 2.21230168e+01 sys_corr_67: -3.36045283e+01 sys_corr_68: 1.43125548e+02 sys_corr_69: -6.47484765e+01 sys_corr_70: 3.18014988e+01 - sys_corr_71: 2.31131099e+01 - sys_corr_72: -2.99364389e+01 - sys_corr_73: 4.59298863e+01 + sys_corr_71: 4.59298863e+01 + sys_corr_72: 2.99364389e+01 + sys_corr_73: 2.31131099e+01 sys_corr_74: -4.54904483e+00 sys_corr_75: 1.46549714e+01 sys_corr_76: 8.95068996e-01 - sys_corr_77: 1.45766646e+01 - sys_corr_78: 1.21690554e+01 - sys_corr_79: -6.22477197e+01 - sys_corr_80: -5.33329760e+00 + sys_corr_77: -1.45766646e+01 + sys_corr_78: -6.22477197e+01 + sys_corr_79: 5.33329760e+00 + sys_corr_80: -1.21690554e+01 sys_corr_81: -6.12762291e+00 sys_corr_82: 8.61603696e-01 sys_corr_83: -4.51028538e+00 - sys_corr_84: -1.58975652e+01 + sys_corr_84: 1.58975652e+01 sys_corr_85: -8.15063414e+00 sys_corr_86: -5.86652482e+00 sys_corr_87: -1.08968120e+01 sys_corr_88: 9.01609323e+00 sys_corr_89: 1.15402373e+00 sys_corr_90: -3.79916062e+00 - sys_corr_91: -2.28643840e+00 + sys_corr_91: 2.28643840e+00 sys_corr_92: -4.97839176e+00 sys_corr_93: -1.41526875e-01 sys_corr_94: -5.10525864e-01 @@ -1304,40 +1304,40 @@ bins: sys_corr_96: 1.43760740e-01 sys_corr_97: 4.37255508e-01 sys_corr_98: 1.69801035e-01 - sys_corr_99: 7.69643906e-02 - sys_corr_100: -7.35666088e-01 + sys_corr_99: -7.69643906e-02 + sys_corr_100: 7.35666088e-01 sys_corr_101: -3.50668555e-01 - sys_corr_102: -1.21431202e+00 - sys_corr_103: 4.39239376e+00 - sys_corr_104: 6.06507687e-01 - sys_corr_105: 1.62048879e+00 - sys_corr_106: 5.59942372e-01 - sys_corr_107: 9.11339473e-01 + sys_corr_102: 1.21431202e+00 + sys_corr_103: -4.39239376e+00 + sys_corr_104: -6.06507687e-01 + sys_corr_105: -1.62048879e+00 + sys_corr_106: -5.59942372e-01 + sys_corr_107: -9.11339473e-01 sys_corr_108: 1.29633696e-02 sys_corr_109: 2.01509662e-01 sys_corr_110: 4.59637576e-01 - sys_corr_111: -3.86680818e-01 + sys_corr_111: 3.86680818e-01 sys_corr_112: 1.44689867e-01 sys_corr_113: 6.63801230e-02 sys_corr_114: 2.87374397e-03 - sys_corr_115: -3.50486902e-02 + sys_corr_115: 3.50486902e-02 sys_corr_116: 1.18317332e-01 sys_corr_117: -7.96644639e-02 sys_corr_118: 1.01590311e-01 sys_corr_119: 9.86144078e-04 sys_corr_120: -3.90458339e-02 - sys_corr_121: 4.09823000e-03 - sys_corr_122: 3.90706071e-02 - sys_corr_123: -4.16870622e-02 + sys_corr_121: -4.09823000e-03 + sys_corr_122: -4.16870622e-02 + sys_corr_123: 3.90706071e-02 sys_corr_124: -1.60142629e-01 - sys_corr_125: -1.01782004e-02 - sys_corr_126: 1.64289821e-02 + sys_corr_125: 1.01782004e-02 + sys_corr_126: -1.64289821e-02 sys_corr_127: 3.71297536e-01 sys_corr_128: -6.65903994e-02 - sys_corr_129: 6.17536888e-02 - sys_corr_130: 4.92308202e-03 + sys_corr_129: -6.17536888e-02 + sys_corr_130: -4.92308202e-03 sys_corr_131: -1.02089704e-02 - sys_corr_132: 4.49512290e-02 + sys_corr_132: -4.49512290e-02 stat: 0.0 luminosity: 3.97876006e+02 - sys_corr_1: 2.55165828e+02 @@ -1349,9 +1349,9 @@ bins: sys_corr_7: 4.33936019e+01 sys_corr_8: 1.92691747e+01 sys_corr_9: -1.44580507e+01 - sys_corr_10: 8.74862358e+00 + sys_corr_10: -8.74862358e+00 sys_corr_11: -1.97145308e+01 - sys_corr_12: 3.64753830e+01 + sys_corr_12: -3.64753830e+01 sys_corr_13: -1.80674841e+01 sys_corr_14: 4.99488324e-01 sys_corr_15: -1.50365022e+01 @@ -1377,60 +1377,60 @@ bins: sys_corr_35: -2.16281021e+00 sys_corr_36: -1.76717924e+01 sys_corr_37: 2.35876617e+01 - sys_corr_38: 2.69852604e+00 - sys_corr_39: -1.84861629e+01 - sys_corr_40: 3.78499508e+01 - sys_corr_41: -5.68768135e+01 - sys_corr_42: 2.70482519e+01 - sys_corr_43: -2.64276011e+01 + sys_corr_38: -2.69852604e+00 + sys_corr_39: 1.84861629e+01 + sys_corr_40: -3.78499508e+01 + sys_corr_41: 5.68768135e+01 + sys_corr_42: -2.70482519e+01 + sys_corr_43: 2.64276011e+01 sys_corr_44: 1.96049695e+01 - sys_corr_45: -2.07636547e+01 - sys_corr_46: -1.43235636e+01 + sys_corr_45: 2.07636547e+01 + sys_corr_46: 1.43235636e+01 sys_corr_47: -2.47840539e+01 - sys_corr_48: -1.55111695e+01 + sys_corr_48: 1.55111695e+01 sys_corr_49: 2.12944501e+01 sys_corr_50: -2.39078087e+01 sys_corr_51: -2.92280194e+01 - sys_corr_52: -6.88245181e+01 - sys_corr_53: 3.84345334e+01 + sys_corr_52: 6.88245181e+01 + sys_corr_53: -3.84345334e+01 sys_corr_54: 6.61810948e+01 - sys_corr_55: 1.24748398e+01 + sys_corr_55: -1.24748398e+01 sys_corr_56: 1.48318937e+01 - sys_corr_57: 1.88957707e+01 + sys_corr_57: -1.88957707e+01 sys_corr_58: -8.16734203e+01 - sys_corr_59: 8.72391169e+01 + sys_corr_59: -8.72391169e+01 sys_corr_60: -3.82294473e+01 sys_corr_61: -2.83260539e+01 sys_corr_62: 3.85426547e+01 - sys_corr_63: -7.87533486e+01 - sys_corr_64: 6.78402212e+01 + sys_corr_63: 7.87533486e+01 + sys_corr_64: -6.78402212e+01 sys_corr_65: 9.34420196e+00 sys_corr_66: -5.80616427e+01 sys_corr_67: 1.96538764e+01 sys_corr_68: -1.05797361e+02 sys_corr_69: -6.38558181e-01 sys_corr_70: -4.48465505e+01 - sys_corr_71: -6.70540727e+01 - sys_corr_72: 2.87860243e+00 - sys_corr_73: -1.98865085e-01 + sys_corr_71: -1.98865085e-01 + sys_corr_72: -2.87860243e+00 + sys_corr_73: -6.70540727e+01 sys_corr_74: 1.05272714e+01 sys_corr_75: 1.72964858e+00 sys_corr_76: 1.07484066e+00 - sys_corr_77: 1.39458133e+01 - sys_corr_78: 1.10008972e+01 - sys_corr_79: 2.02339009e+01 - sys_corr_80: 1.38811838e+00 + sys_corr_77: -1.39458133e+01 + sys_corr_78: 2.02339009e+01 + sys_corr_79: -1.38811838e+00 + sys_corr_80: -1.10008972e+01 sys_corr_81: -9.40690123e+00 sys_corr_82: -1.44485551e+01 sys_corr_83: -1.57489936e+01 - sys_corr_84: -3.34160354e+00 + sys_corr_84: 3.34160354e+00 sys_corr_85: -4.75949443e-01 sys_corr_86: -1.34842364e+01 sys_corr_87: -2.28185493e+01 sys_corr_88: 7.79805851e+00 sys_corr_89: 7.94616250e-01 sys_corr_90: 9.36309756e-01 - sys_corr_91: 1.62685351e-01 + sys_corr_91: -1.62685351e-01 sys_corr_92: -4.32567196e+00 sys_corr_93: -1.40492892e-01 sys_corr_94: -3.93877627e-01 @@ -1438,40 +1438,40 @@ bins: sys_corr_96: 2.05035981e-02 sys_corr_97: 4.22936483e-01 sys_corr_98: 2.80503281e-01 - sys_corr_99: 5.92754566e-01 - sys_corr_100: -1.08214395e+00 + sys_corr_99: -5.92754566e-01 + sys_corr_100: 1.08214395e+00 sys_corr_101: -1.03358261e+00 - sys_corr_102: -2.62640895e+00 - sys_corr_103: 5.80479553e+00 - sys_corr_104: 8.42341094e-01 - sys_corr_105: 2.08293155e+00 - sys_corr_106: 1.01044755e+00 - sys_corr_107: 8.93081887e-01 + sys_corr_102: 2.62640895e+00 + sys_corr_103: -5.80479553e+00 + sys_corr_104: -8.42341094e-01 + sys_corr_105: -2.08293155e+00 + sys_corr_106: -1.01044755e+00 + sys_corr_107: -8.93081887e-01 sys_corr_108: 7.88724375e-02 sys_corr_109: -1.43833449e-01 sys_corr_110: 3.51371243e-01 - sys_corr_111: -3.40966102e-01 + sys_corr_111: 3.40966102e-01 sys_corr_112: -2.70594548e-03 sys_corr_113: 1.74735238e-02 sys_corr_114: 3.61193040e-04 - sys_corr_115: 1.11989597e-02 + sys_corr_115: -1.11989597e-02 sys_corr_116: -7.71543298e-03 sys_corr_117: 1.05636597e-02 sys_corr_118: 1.69150142e-02 sys_corr_119: -8.02690077e-03 sys_corr_120: 1.99492517e-02 - sys_corr_121: 8.61227752e-03 - sys_corr_122: 2.47000596e-02 - sys_corr_123: -5.39102954e-02 + sys_corr_121: -8.61227752e-03 + sys_corr_122: -5.39102954e-02 + sys_corr_123: 2.47000596e-02 sys_corr_124: -1.62929624e-02 - sys_corr_125: -3.58456096e-02 - sys_corr_126: 1.71427626e-02 + sys_corr_125: 3.58456096e-02 + sys_corr_126: -1.71427626e-02 sys_corr_127: 7.07876545e-01 sys_corr_128: 1.38984901e-01 - sys_corr_129: -1.66225687e-01 - sys_corr_130: -3.33891971e-04 + sys_corr_129: 1.66225687e-01 + sys_corr_130: 3.33891971e-04 sys_corr_131: 2.90225506e-02 - sys_corr_132: 6.73207022e-02 + sys_corr_132: -6.73207022e-02 stat: 0.0 luminosity: 4.05192876e+02 - sys_corr_1: 2.59359890e+02 @@ -1483,9 +1483,9 @@ bins: sys_corr_7: 7.05677990e+01 sys_corr_8: 5.38357938e+01 sys_corr_9: -3.61493016e+01 - sys_corr_10: -2.16222707e+01 + sys_corr_10: 2.16222707e+01 sys_corr_11: 2.68231599e+01 - sys_corr_12: -2.30951151e+01 + sys_corr_12: 2.30951151e+01 sys_corr_13: -2.75608733e+00 sys_corr_14: 1.21056529e+00 sys_corr_15: -5.77467438e+00 @@ -1511,60 +1511,60 @@ bins: sys_corr_35: 5.55418062e+00 sys_corr_36: -4.69042448e-01 sys_corr_37: 3.14559121e+00 - sys_corr_38: -1.82216078e+01 - sys_corr_39: 2.52409281e+01 - sys_corr_40: 5.24215700e-01 - sys_corr_41: -3.98917764e+01 - sys_corr_42: -1.37067037e+01 - sys_corr_43: -1.15122789e+01 + sys_corr_38: 1.82216078e+01 + sys_corr_39: -2.52409281e+01 + sys_corr_40: -5.24215700e-01 + sys_corr_41: 3.98917764e+01 + sys_corr_42: 1.37067037e+01 + sys_corr_43: 1.15122789e+01 sys_corr_44: -2.27770493e+01 - sys_corr_45: 1.80685856e+01 - sys_corr_46: -5.31808391e+00 + sys_corr_45: -1.80685856e+01 + sys_corr_46: 5.31808391e+00 sys_corr_47: 1.24029860e+01 - sys_corr_48: -3.27906348e+01 + sys_corr_48: 3.27906348e+01 sys_corr_49: 1.69941735e+01 sys_corr_50: -3.99549187e+01 sys_corr_51: -3.17104658e+00 - sys_corr_52: 2.21726580e+01 - sys_corr_53: 3.37108710e+01 + sys_corr_52: -2.21726580e+01 + sys_corr_53: -3.37108710e+01 sys_corr_54: -3.26885957e+01 - sys_corr_55: 5.43418810e+00 + sys_corr_55: -5.43418810e+00 sys_corr_56: -8.74458559e+00 - sys_corr_57: -4.68806623e+01 + sys_corr_57: 4.68806623e+01 sys_corr_58: 6.27146474e+01 - sys_corr_59: -4.28605162e+01 + sys_corr_59: 4.28605162e+01 sys_corr_60: -1.95353471e+00 sys_corr_61: 1.41032565e+02 sys_corr_62: -6.76803314e+01 - sys_corr_63: 7.24257743e+01 - sys_corr_64: 6.53664541e+01 + sys_corr_63: -7.24257743e+01 + sys_corr_64: -6.53664541e+01 sys_corr_65: -5.94301305e+00 sys_corr_66: -4.64091910e+01 sys_corr_67: 2.14373576e+01 sys_corr_68: 3.89538147e+01 sys_corr_69: -3.76150212e+01 sys_corr_70: -6.65219125e+01 - sys_corr_71: -5.84349382e+01 - sys_corr_72: -2.51559914e+01 - sys_corr_73: 4.44060743e+01 + sys_corr_71: 4.44060743e+01 + sys_corr_72: 2.51559914e+01 + sys_corr_73: -5.84349382e+01 sys_corr_74: 3.13850967e+01 sys_corr_75: 5.96233714e+00 sys_corr_76: -9.76743244e+00 - sys_corr_77: 1.26574558e+01 - sys_corr_78: -7.17819960e+00 - sys_corr_79: -2.59616184e+00 - sys_corr_80: 5.35799914e+00 + sys_corr_77: -1.26574558e+01 + sys_corr_78: -2.59616184e+00 + sys_corr_79: -5.35799914e+00 + sys_corr_80: 7.17819960e+00 sys_corr_81: 1.65312527e+01 sys_corr_82: 3.79774996e+00 sys_corr_83: 1.02708332e+01 - sys_corr_84: -9.56750556e+00 + sys_corr_84: 9.56750556e+00 sys_corr_85: -2.44590682e+00 sys_corr_86: -1.72069178e+01 sys_corr_87: 4.69220188e+00 sys_corr_88: 1.06468615e+01 sys_corr_89: 6.63595654e-01 sys_corr_90: -2.48668321e+00 - sys_corr_91: 6.09996872e-01 + sys_corr_91: -6.09996872e-01 sys_corr_92: -4.16452767e+00 sys_corr_93: -3.38781769e-01 sys_corr_94: -4.32258326e-01 @@ -1572,40 +1572,40 @@ bins: sys_corr_96: -1.12546220e-01 sys_corr_97: -1.65038129e+00 sys_corr_98: -6.97554381e-01 - sys_corr_99: 8.50105124e-01 - sys_corr_100: -2.06425134e+00 + sys_corr_99: -8.50105124e-01 + sys_corr_100: 2.06425134e+00 sys_corr_101: -2.01328270e+00 - sys_corr_102: -3.89615900e+00 - sys_corr_103: 1.28198442e+01 - sys_corr_104: 1.91778160e+00 - sys_corr_105: 4.56140035e+00 - sys_corr_106: 1.74476620e+00 - sys_corr_107: 8.28188522e-01 + sys_corr_102: 3.89615900e+00 + sys_corr_103: -1.28198442e+01 + sys_corr_104: -1.91778160e+00 + sys_corr_105: -4.56140035e+00 + sys_corr_106: -1.74476620e+00 + sys_corr_107: -8.28188522e-01 sys_corr_108: 4.79027980e-02 sys_corr_109: -6.39530490e-01 sys_corr_110: 2.99578396e-01 - sys_corr_111: -1.45383499e-01 + sys_corr_111: 1.45383499e-01 sys_corr_112: -9.47414261e-03 sys_corr_113: -4.83472297e-02 sys_corr_114: -5.28684288e-04 - sys_corr_115: -1.15235289e-01 + sys_corr_115: 1.15235289e-01 sys_corr_116: -5.97706441e-02 sys_corr_117: 4.86541028e-02 sys_corr_118: 3.15001183e-02 sys_corr_119: -5.54880192e-03 sys_corr_120: 3.42326143e-02 - sys_corr_121: -1.01532086e-03 - sys_corr_122: 2.08057719e-02 - sys_corr_123: -5.05771800e-02 + sys_corr_121: 1.01532086e-03 + sys_corr_122: -5.05771800e-02 + sys_corr_123: 2.08057719e-02 sys_corr_124: 3.82925424e-02 - sys_corr_125: -4.17576178e-02 - sys_corr_126: -2.48876416e-03 + sys_corr_125: 4.17576178e-02 + sys_corr_126: 2.48876416e-03 sys_corr_127: 5.57900396e-01 sys_corr_128: 1.85549881e-01 - sys_corr_129: 4.82801480e-02 - sys_corr_130: 9.96046162e-03 + sys_corr_129: -4.82801480e-02 + sys_corr_130: -9.96046162e-03 sys_corr_131: 4.56089941e-02 - sys_corr_132: 1.78121855e-01 + sys_corr_132: -1.78121855e-01 stat: 0.0 luminosity: 3.99131106e+02 - sys_corr_1: 2.49728304e+02 @@ -1617,9 +1617,9 @@ bins: sys_corr_7: 9.30196333e+01 sys_corr_8: 5.50040829e+01 sys_corr_9: -4.69616207e+01 - sys_corr_10: -7.79432502e+00 + sys_corr_10: 7.79432502e+00 sys_corr_11: 6.72134636e+01 - sys_corr_12: -6.06910880e+01 + sys_corr_12: 6.06910880e+01 sys_corr_13: 3.71999748e+01 sys_corr_14: 1.04130123e+01 sys_corr_15: 7.59042614e+00 @@ -1645,60 +1645,60 @@ bins: sys_corr_35: -1.06893013e+01 sys_corr_36: -1.54408506e+01 sys_corr_37: -1.00784721e+01 - sys_corr_38: -2.27744042e+01 - sys_corr_39: -1.52103851e+01 - sys_corr_40: 5.97142147e+00 - sys_corr_41: -1.50890059e+01 - sys_corr_42: 2.47641728e+01 - sys_corr_43: -1.85130728e+01 + sys_corr_38: 2.27744042e+01 + sys_corr_39: 1.52103851e+01 + sys_corr_40: -5.97142147e+00 + sys_corr_41: 1.50890059e+01 + sys_corr_42: -2.47641728e+01 + sys_corr_43: 1.85130728e+01 sys_corr_44: -2.18565370e+01 - sys_corr_45: 2.69524633e+01 - sys_corr_46: 3.65166881e+01 + sys_corr_45: -2.69524633e+01 + sys_corr_46: -3.65166881e+01 sys_corr_47: -3.72431253e+01 - sys_corr_48: -8.99191930e+00 + sys_corr_48: 8.99191930e+00 sys_corr_49: 7.95031487e+00 sys_corr_50: -2.37642921e+01 sys_corr_51: 6.53266963e+01 - sys_corr_52: 6.77067550e+01 - sys_corr_53: 2.52145462e+01 + sys_corr_52: -6.77067550e+01 + sys_corr_53: -2.52145462e+01 sys_corr_54: 1.23755385e+02 - sys_corr_55: -3.85075453e+01 + sys_corr_55: 3.85075453e+01 sys_corr_56: 2.98131216e+01 - sys_corr_57: 8.43380225e+00 + sys_corr_57: -8.43380225e+00 sys_corr_58: -1.55789483e+01 - sys_corr_59: -9.93364469e+01 + sys_corr_59: 9.93364469e+01 sys_corr_60: -8.05071682e+00 sys_corr_61: -7.82160188e+00 sys_corr_62: -4.75135472e+01 - sys_corr_63: 4.56835389e+01 - sys_corr_64: -7.37514890e+01 + sys_corr_63: -4.56835389e+01 + sys_corr_64: 7.37514890e+01 sys_corr_65: -3.75153586e+01 sys_corr_66: 3.16104004e+01 sys_corr_67: 2.13087536e+01 sys_corr_68: -7.80195242e+01 sys_corr_69: 8.64506805e+01 sys_corr_70: 1.10949344e+01 - sys_corr_71: 3.59025585e+01 - sys_corr_72: 1.79631556e+00 - sys_corr_73: -3.27980742e+01 + sys_corr_71: -3.27980742e+01 + sys_corr_72: -1.79631556e+00 + sys_corr_73: 3.59025585e+01 sys_corr_74: -1.13538667e+01 sys_corr_75: 1.24919562e+01 sys_corr_76: 1.23652244e+01 - sys_corr_77: -6.08823301e+00 - sys_corr_78: -1.10216186e+01 - sys_corr_79: 1.98427332e+01 - sys_corr_80: 4.20020755e+00 + sys_corr_77: 6.08823301e+00 + sys_corr_78: 1.98427332e+01 + sys_corr_79: -4.20020755e+00 + sys_corr_80: 1.10216186e+01 sys_corr_81: -8.36265233e-01 sys_corr_82: -1.14341566e+00 sys_corr_83: 5.45076567e+00 - sys_corr_84: 3.83629191e+00 + sys_corr_84: -3.83629191e+00 sys_corr_85: 3.73805224e+00 sys_corr_86: 1.01665989e+01 sys_corr_87: 5.33432811e+00 sys_corr_88: -9.89013165e+00 sys_corr_89: 6.31341773e-01 sys_corr_90: 1.60976453e+00 - sys_corr_91: -2.44154505e-01 + sys_corr_91: 2.44154505e-01 sys_corr_92: 1.43991371e+00 sys_corr_93: 1.74561248e-01 sys_corr_94: 9.85784485e-01 @@ -1706,40 +1706,40 @@ bins: sys_corr_96: -2.10127872e-01 sys_corr_97: 4.34864889e-01 sys_corr_98: 2.48330357e-01 - sys_corr_99: 3.28063355e-01 - sys_corr_100: -1.37969039e+00 + sys_corr_99: -3.28063355e-01 + sys_corr_100: 1.37969039e+00 sys_corr_101: -1.14621664e+00 - sys_corr_102: -2.87737462e+00 - sys_corr_103: 6.58837753e+00 - sys_corr_104: 1.66025266e+00 - sys_corr_105: 2.01448206e+00 - sys_corr_106: 1.31123311e+00 - sys_corr_107: 8.74637843e-01 + sys_corr_102: 2.87737462e+00 + sys_corr_103: -6.58837753e+00 + sys_corr_104: -1.66025266e+00 + sys_corr_105: -2.01448206e+00 + sys_corr_106: -1.31123311e+00 + sys_corr_107: -8.74637843e-01 sys_corr_108: -1.92998840e-01 sys_corr_109: -1.57138250e-02 sys_corr_110: 3.12239089e-01 - sys_corr_111: -7.05320998e-01 + sys_corr_111: 7.05320998e-01 sys_corr_112: -2.93529365e-02 sys_corr_113: -6.02497058e-02 sys_corr_114: 1.76990475e-03 - sys_corr_115: 3.02467921e-03 + sys_corr_115: -3.02467921e-03 sys_corr_116: -4.91343572e-02 sys_corr_117: 3.25576874e-02 sys_corr_118: 6.57449776e-02 sys_corr_119: -4.04635026e-04 sys_corr_120: 3.46504641e-02 - sys_corr_121: 1.47523920e-02 - sys_corr_122: 3.33182773e-02 - sys_corr_123: -6.38521231e-02 + sys_corr_121: -1.47523920e-02 + sys_corr_122: -6.38521231e-02 + sys_corr_123: 3.33182773e-02 sys_corr_124: 3.37682282e-02 - sys_corr_125: -4.79589505e-02 - sys_corr_126: 1.84694867e-02 + sys_corr_125: 4.79589505e-02 + sys_corr_126: -1.84694867e-02 sys_corr_127: 1.20300938e-01 sys_corr_128: 1.97512594e-01 - sys_corr_129: -7.96321741e-02 - sys_corr_130: -4.37601726e-03 + sys_corr_129: 7.96321741e-02 + sys_corr_130: 4.37601726e-03 sys_corr_131: 3.57320346e-02 - sys_corr_132: -7.87090946e-02 + sys_corr_132: 7.87090946e-02 stat: 0.0 luminosity: 3.97102684e+02 - sys_corr_1: 2.45018931e+02 @@ -1751,9 +1751,9 @@ bins: sys_corr_7: 1.19861321e+02 sys_corr_8: 8.31545598e+01 sys_corr_9: -7.43489728e+01 - sys_corr_10: -1.76039075e+01 + sys_corr_10: 1.76039075e+01 sys_corr_11: 1.14994072e+02 - sys_corr_12: -1.20076154e+02 + sys_corr_12: 1.20076154e+02 sys_corr_13: 7.57923835e+01 sys_corr_14: 1.83754575e+01 sys_corr_15: 2.02308168e+01 @@ -1779,60 +1779,60 @@ bins: sys_corr_35: -1.79725616e+00 sys_corr_36: -2.35959985e+01 sys_corr_37: -4.93211609e+00 - sys_corr_38: -1.27831564e+01 - sys_corr_39: -3.91191454e+01 - sys_corr_40: 3.27866065e+01 - sys_corr_41: -7.89445161e+01 - sys_corr_42: 2.51841522e+00 - sys_corr_43: 1.11688179e+00 + sys_corr_38: 1.27831564e+01 + sys_corr_39: 3.91191454e+01 + sys_corr_40: -3.27866065e+01 + sys_corr_41: 7.89445161e+01 + sys_corr_42: -2.51841522e+00 + sys_corr_43: -1.11688179e+00 sys_corr_44: 9.82791394e-01 - sys_corr_45: -1.41118268e+01 - sys_corr_46: -3.15070995e+01 + sys_corr_45: 1.41118268e+01 + sys_corr_46: 3.15070995e+01 sys_corr_47: -2.31492446e+01 - sys_corr_48: -7.44198902e+01 + sys_corr_48: 7.44198902e+01 sys_corr_49: -2.88162805e+01 sys_corr_50: -4.00931668e+01 sys_corr_51: -1.29642689e+02 - sys_corr_52: -1.75429613e+01 - sys_corr_53: 6.07447033e+00 + sys_corr_52: 1.75429613e+01 + sys_corr_53: -6.07447033e+00 sys_corr_54: -1.14451915e+02 - sys_corr_55: 1.61305000e+01 + sys_corr_55: -1.61305000e+01 sys_corr_56: -1.36346341e+02 - sys_corr_57: -2.70128767e+01 + sys_corr_57: 2.70128767e+01 sys_corr_58: 1.34364223e+01 - sys_corr_59: -9.39479277e+00 + sys_corr_59: 9.39479277e+00 sys_corr_60: 2.32206154e+01 sys_corr_61: -2.15217055e+01 sys_corr_62: 2.71682089e+00 - sys_corr_63: -3.98821861e+01 - sys_corr_64: -2.82666344e+01 + sys_corr_63: 3.98821861e+01 + sys_corr_64: 2.82666344e+01 sys_corr_65: 1.06846207e+01 sys_corr_66: 2.35786679e+01 sys_corr_67: -2.36120005e+01 sys_corr_68: -5.73594088e+00 sys_corr_69: 3.42508595e+01 sys_corr_70: 3.65242352e+01 - sys_corr_71: 5.63828726e+01 - sys_corr_72: 1.44475879e+01 - sys_corr_73: -1.68309035e+01 + sys_corr_71: -1.68309035e+01 + sys_corr_72: -1.44475879e+01 + sys_corr_73: 5.63828726e+01 sys_corr_74: -3.03268048e+01 sys_corr_75: 4.43617072e+00 sys_corr_76: 2.74202965e+00 - sys_corr_77: -8.97122939e+00 - sys_corr_78: -1.58231384e+00 - sys_corr_79: -1.87611254e+00 - sys_corr_80: 5.64894351e-01 + sys_corr_77: 8.97122939e+00 + sys_corr_78: -1.87611254e+00 + sys_corr_79: -5.64894351e-01 + sys_corr_80: 1.58231384e+00 sys_corr_81: -1.97276853e+00 sys_corr_82: 2.97712417e+00 sys_corr_83: 5.61894305e-01 - sys_corr_84: 5.40726355e-01 + sys_corr_84: -5.40726355e-01 sys_corr_85: 2.64357228e+00 sys_corr_86: 1.09715391e+01 sys_corr_87: 7.52644073e+00 sys_corr_88: -1.03065205e+01 sys_corr_89: -1.35059961e-01 sys_corr_90: 2.63731054e+00 - sys_corr_91: 1.26789791e+00 + sys_corr_91: -1.26789791e+00 sys_corr_92: 3.91473902e+00 sys_corr_93: 4.66899413e-01 sys_corr_94: 1.33759948e+00 @@ -1840,40 +1840,40 @@ bins: sys_corr_96: 9.25330747e-02 sys_corr_97: 1.13734465e+00 sys_corr_98: 4.38711159e-01 - sys_corr_99: -6.27816209e-01 - sys_corr_100: -9.26297143e-02 + sys_corr_99: 6.27816209e-01 + sys_corr_100: 9.26297143e-02 sys_corr_101: 1.53375290e-02 - sys_corr_102: 1.88225668e-01 - sys_corr_103: -3.34539733e+00 - sys_corr_104: -2.51441386e-01 - sys_corr_105: -1.51444792e+00 - sys_corr_106: -4.13954293e-02 - sys_corr_107: 5.88808169e-02 + sys_corr_102: -1.88225668e-01 + sys_corr_103: 3.34539733e+00 + sys_corr_104: 2.51441386e-01 + sys_corr_105: 1.51444792e+00 + sys_corr_106: 4.13954293e-02 + sys_corr_107: -5.88808169e-02 sys_corr_108: 1.00266524e-01 sys_corr_109: 8.05788933e-02 sys_corr_110: -1.27665224e-01 - sys_corr_111: 1.67613518e-01 + sys_corr_111: -1.67613518e-01 sys_corr_112: -3.88421321e-02 sys_corr_113: 1.45689614e-02 sys_corr_114: -2.06254703e-04 - sys_corr_115: -3.82465665e-03 + sys_corr_115: 3.82465665e-03 sys_corr_116: -6.77702197e-02 sys_corr_117: 3.20989513e-02 sys_corr_118: 1.44524200e-02 sys_corr_119: 5.53890344e-03 sys_corr_120: 3.86700592e-02 - sys_corr_121: 4.53463149e-03 - sys_corr_122: 1.18663536e-02 - sys_corr_123: -1.84858564e-02 + sys_corr_121: -4.53463149e-03 + sys_corr_122: -1.84858564e-02 + sys_corr_123: 1.18663536e-02 sys_corr_124: 1.07679585e-01 - sys_corr_125: -3.38754379e-02 - sys_corr_126: 3.36679742e-03 + sys_corr_125: 3.38754379e-02 + sys_corr_126: -3.36679742e-03 sys_corr_127: -8.97127578e-02 sys_corr_128: 1.07189439e-02 - sys_corr_129: 4.46416915e-02 - sys_corr_130: 9.24892816e-03 + sys_corr_129: -4.46416915e-02 + sys_corr_130: -9.24892816e-03 sys_corr_131: 3.24452979e-02 - sys_corr_132: 3.95183824e-02 + sys_corr_132: -3.95183824e-02 stat: 0.0 luminosity: 3.92326968e+02 - sys_corr_1: 2.27127469e+02 @@ -1885,9 +1885,9 @@ bins: sys_corr_7: 1.42618891e+02 sys_corr_8: 9.66513783e+01 sys_corr_9: -8.19778576e+01 - sys_corr_10: -2.36136251e+01 + sys_corr_10: 2.36136251e+01 sys_corr_11: 1.41696997e+02 - sys_corr_12: -1.70065373e+02 + sys_corr_12: 1.70065373e+02 sys_corr_13: 1.07740667e+02 sys_corr_14: 2.65116694e+01 sys_corr_15: 2.98494230e+01 @@ -1913,60 +1913,60 @@ bins: sys_corr_35: 7.20503927e+00 sys_corr_36: 1.79797406e+00 sys_corr_37: 1.42586998e+01 - sys_corr_38: 4.70291970e+00 - sys_corr_39: 1.20760400e+01 - sys_corr_40: 5.40825632e+01 - sys_corr_41: 1.84974586e+01 - sys_corr_42: -2.08955090e+00 - sys_corr_43: -2.77467644e+01 + sys_corr_38: -4.70291970e+00 + sys_corr_39: -1.20760400e+01 + sys_corr_40: -5.40825632e+01 + sys_corr_41: -1.84974586e+01 + sys_corr_42: 2.08955090e+00 + sys_corr_43: 2.77467644e+01 sys_corr_44: 3.41531197e+01 - sys_corr_45: 4.23402853e+01 - sys_corr_46: -4.44010324e+01 + sys_corr_45: -4.23402853e+01 + sys_corr_46: 4.44010324e+01 sys_corr_47: -1.24013924e+01 - sys_corr_48: 9.27119831e+00 + sys_corr_48: -9.27119831e+00 sys_corr_49: 2.62079620e+01 sys_corr_50: -1.21681026e+00 sys_corr_51: -4.29022054e+01 - sys_corr_52: -7.03049603e+01 - sys_corr_53: -2.01754545e+01 + sys_corr_52: 7.03049603e+01 + sys_corr_53: 2.01754545e+01 sys_corr_54: -5.91122970e+00 - sys_corr_55: 5.34259859e+01 + sys_corr_55: -5.34259859e+01 sys_corr_56: 1.83725582e+02 - sys_corr_57: -2.93672108e+01 + sys_corr_57: 2.93672108e+01 sys_corr_58: 1.04743243e+00 - sys_corr_59: 1.01037037e+02 + sys_corr_59: -1.01037037e+02 sys_corr_60: -5.88831889e+00 sys_corr_61: 2.88698920e+00 sys_corr_62: -2.70232562e+00 - sys_corr_63: 6.03436097e+01 - sys_corr_64: -2.01757730e+00 + sys_corr_63: -6.03436097e+01 + sys_corr_64: 2.01757730e+00 sys_corr_65: -1.90225896e+00 sys_corr_66: 5.79853872e+01 sys_corr_67: -1.82935800e+01 sys_corr_68: 5.09257305e+01 sys_corr_69: 6.70098937e+00 sys_corr_70: 2.36657923e+01 - sys_corr_71: 6.04568619e+01 - sys_corr_72: -1.30915811e+00 - sys_corr_73: -7.68074674e-01 + sys_corr_71: -7.68074674e-01 + sys_corr_72: 1.30915811e+00 + sys_corr_73: 6.04568619e+01 sys_corr_74: -1.06481125e+00 sys_corr_75: 4.18182513e+00 sys_corr_76: 4.09576980e+00 - sys_corr_77: -1.54703495e+00 - sys_corr_78: -1.94928588e+00 - sys_corr_79: -7.71209709e+00 - sys_corr_80: 2.77678774e+00 + sys_corr_77: 1.54703495e+00 + sys_corr_78: -7.71209709e+00 + sys_corr_79: -2.77678774e+00 + sys_corr_80: 1.94928588e+00 sys_corr_81: -2.75281505e+00 sys_corr_82: -1.01040805e+00 sys_corr_83: 2.38682436e+00 - sys_corr_84: 2.16340226e+00 + sys_corr_84: -2.16340226e+00 sys_corr_85: 1.14818155e+00 sys_corr_86: 9.48850008e+00 sys_corr_87: -1.35524293e+00 sys_corr_88: -4.37336880e+00 sys_corr_89: 8.75781606e-01 sys_corr_90: 1.65579509e+00 - sys_corr_91: 3.80597779e-01 + sys_corr_91: -3.80597779e-01 sys_corr_92: 1.65913846e-02 sys_corr_93: 1.77667231e-01 sys_corr_94: 3.39775820e-01 @@ -1974,40 +1974,40 @@ bins: sys_corr_96: 4.27799546e-02 sys_corr_97: 1.10640100e+00 sys_corr_98: 5.15326800e-02 - sys_corr_99: -2.76046213e-01 - sys_corr_100: -6.79935550e-01 + sys_corr_99: 2.76046213e-01 + sys_corr_100: 6.79935550e-01 sys_corr_101: -3.15270965e-01 - sys_corr_102: -7.58748036e-01 - sys_corr_103: 6.87561510e-01 - sys_corr_104: 6.37325692e-01 - sys_corr_105: 4.11142430e-02 - sys_corr_106: 4.45328957e-01 - sys_corr_107: 6.17801747e-01 + sys_corr_102: 7.58748036e-01 + sys_corr_103: -6.87561510e-01 + sys_corr_104: -6.37325692e-01 + sys_corr_105: -4.11142430e-02 + sys_corr_106: -4.45328957e-01 + sys_corr_107: -6.17801747e-01 sys_corr_108: -1.10994708e-01 sys_corr_109: 1.92861557e-01 sys_corr_110: 1.73486460e-01 - sys_corr_111: 2.44988024e-01 + sys_corr_111: -2.44988024e-01 sys_corr_112: 3.30137892e-02 sys_corr_113: 6.45203775e-02 sys_corr_114: 8.23561246e-04 - sys_corr_115: 9.34327411e-02 + sys_corr_115: -9.34327411e-02 sys_corr_116: -8.83084269e-03 sys_corr_117: 1.62109642e-02 sys_corr_118: -1.04060952e-01 sys_corr_119: -9.12952566e-03 sys_corr_120: 1.96809956e-02 - sys_corr_121: 5.56941565e-03 - sys_corr_122: 7.08996264e-03 - sys_corr_123: -1.59931435e-02 + sys_corr_121: -5.56941565e-03 + sys_corr_122: -1.59931435e-02 + sys_corr_123: 7.08996264e-03 sys_corr_124: 3.01771278e-02 - sys_corr_125: -6.91658967e-03 - sys_corr_126: -7.40314298e-03 + sys_corr_125: 6.91658967e-03 + sys_corr_126: 7.40314298e-03 sys_corr_127: -2.78462293e-02 sys_corr_128: 1.35234769e-01 - sys_corr_129: -1.09256894e-01 - sys_corr_130: -1.96230755e-04 + sys_corr_129: 1.09256894e-01 + sys_corr_130: 1.96230755e-04 sys_corr_131: 4.74961068e-03 - sys_corr_132: -8.65735464e-03 + sys_corr_132: 8.65735464e-03 stat: 0.0 luminosity: 3.85649990e+02 - sys_corr_1: 2.09840538e+02 @@ -2019,9 +2019,9 @@ bins: sys_corr_7: 1.57605101e+02 sys_corr_8: 1.03580033e+02 sys_corr_9: -9.84204714e+01 - sys_corr_10: -2.73495301e+01 + sys_corr_10: 2.73495301e+01 sys_corr_11: 1.65713813e+02 - sys_corr_12: -2.09677450e+02 + sys_corr_12: 2.09677450e+02 sys_corr_13: 1.31385577e+02 sys_corr_14: 3.79139980e+01 sys_corr_15: 3.53585834e+01 @@ -2047,60 +2047,60 @@ bins: sys_corr_35: 1.02280518e+01 sys_corr_36: 1.07212226e+01 sys_corr_37: -4.51487894e+00 - sys_corr_38: 1.04901761e+01 - sys_corr_39: 2.50912718e+01 - sys_corr_40: -2.80201340e+01 - sys_corr_41: 4.86957774e+01 - sys_corr_42: -2.70121351e+01 - sys_corr_43: -6.98413423e+00 + sys_corr_38: -1.04901761e+01 + sys_corr_39: -2.50912718e+01 + sys_corr_40: 2.80201340e+01 + sys_corr_41: -4.86957774e+01 + sys_corr_42: 2.70121351e+01 + sys_corr_43: 6.98413423e+00 sys_corr_44: 6.64472538e+00 - sys_corr_45: -1.23855967e+01 - sys_corr_46: 2.40171053e+01 + sys_corr_45: 1.23855967e+01 + sys_corr_46: -2.40171053e+01 sys_corr_47: 3.13742716e+01 - sys_corr_48: 4.55751839e+01 + sys_corr_48: -4.55751839e+01 sys_corr_49: -1.62284682e+01 sys_corr_50: 2.90597037e+00 sys_corr_51: 6.32298643e+01 - sys_corr_52: -1.20444256e+01 - sys_corr_53: -6.09034645e+01 + sys_corr_52: 1.20444256e+01 + sys_corr_53: 6.09034645e+01 sys_corr_54: -1.77910472e-01 - sys_corr_55: -1.83899149e+01 + sys_corr_55: 1.83899149e+01 sys_corr_56: -6.56540385e+00 - sys_corr_57: -6.28276755e+01 + sys_corr_57: 6.28276755e+01 sys_corr_58: 1.54443416e+01 - sys_corr_59: -8.05439404e+00 + sys_corr_59: 8.05439404e+00 sys_corr_60: 1.29673077e+01 sys_corr_61: -1.11011563e+02 sys_corr_62: -7.15014718e+01 - sys_corr_63: -2.22459377e+01 - sys_corr_64: -4.32985590e+01 + sys_corr_63: 2.22459377e+01 + sys_corr_64: 4.32985590e+01 sys_corr_65: 1.38974932e+02 sys_corr_66: -3.45922044e+01 sys_corr_67: -6.02701300e+01 sys_corr_68: 1.46936638e+01 sys_corr_69: -1.37553122e+01 sys_corr_70: -4.38832681e+01 - sys_corr_71: -6.85746427e+01 - sys_corr_72: 1.80651266e+00 - sys_corr_73: -8.38626219e+00 + sys_corr_71: -8.38626219e+00 + sys_corr_72: -1.80651266e+00 + sys_corr_73: -6.85746427e+01 sys_corr_74: -1.40504366e+00 sys_corr_75: -4.09696570e+00 sys_corr_76: -1.11037862e+01 - sys_corr_77: -1.33238061e+00 - sys_corr_78: -1.02830704e-01 - sys_corr_79: -3.34756861e+00 - sys_corr_80: -4.59865466e+00 + sys_corr_77: 1.33238061e+00 + sys_corr_78: -3.34756861e+00 + sys_corr_79: 4.59865466e+00 + sys_corr_80: 1.02830704e-01 sys_corr_81: 6.05748596e+00 sys_corr_82: 5.04221086e-01 sys_corr_83: 2.48454417e+00 - sys_corr_84: -3.11351087e+00 + sys_corr_84: 3.11351087e+00 sys_corr_85: -1.53695320e-01 sys_corr_86: -1.54623185e+01 sys_corr_87: 4.27969082e+00 sys_corr_88: 1.03257461e+01 sys_corr_89: 5.28522859e-01 sys_corr_90: -4.98342305e-01 - sys_corr_91: -5.69619668e-01 + sys_corr_91: 5.69619668e-01 sys_corr_92: 8.91978424e+00 sys_corr_93: 3.40253288e-01 sys_corr_94: 1.20090570e+00 @@ -2108,40 +2108,40 @@ bins: sys_corr_96: 1.58024314e-01 sys_corr_97: 8.68749207e-01 sys_corr_98: 1.66693426e-01 - sys_corr_99: -4.68345725e-01 - sys_corr_100: -9.01043561e-02 + sys_corr_99: 4.68345725e-01 + sys_corr_100: 9.01043561e-02 sys_corr_101: 7.62038363e-02 - sys_corr_102: 2.15149561e-02 - sys_corr_103: -1.62290956e-01 - sys_corr_104: 5.58081903e-02 - sys_corr_105: -3.49843285e-01 - sys_corr_106: -6.57985640e-02 - sys_corr_107: 1.09838164e-01 + sys_corr_102: -2.15149561e-02 + sys_corr_103: 1.62290956e-01 + sys_corr_104: -5.58081903e-02 + sys_corr_105: 3.49843285e-01 + sys_corr_106: 6.57985640e-02 + sys_corr_107: -1.09838164e-01 sys_corr_108: 5.09063180e-02 sys_corr_109: 3.14052557e-03 sys_corr_110: 1.67385903e-02 - sys_corr_111: 2.00039217e-01 + sys_corr_111: -2.00039217e-01 sys_corr_112: -5.50554799e-02 sys_corr_113: 4.24599405e-02 sys_corr_114: -3.48830038e-07 - sys_corr_115: 4.57195967e-02 + sys_corr_115: -4.57195967e-02 sys_corr_116: 4.46890916e-02 sys_corr_117: -3.70507240e-02 sys_corr_118: -4.41802594e-02 sys_corr_119: 2.01891957e-03 sys_corr_120: -2.37398324e-02 - sys_corr_121: -2.48758014e-03 - sys_corr_122: -7.52598080e-03 - sys_corr_123: 2.12717450e-02 + sys_corr_121: 2.48758014e-03 + sys_corr_122: 2.12717450e-02 + sys_corr_123: -7.52598080e-03 sys_corr_124: -4.16398067e-02 - sys_corr_125: 2.72371903e-02 - sys_corr_126: 6.40327928e-03 + sys_corr_125: -2.72371903e-02 + sys_corr_126: -6.40327928e-03 sys_corr_127: 1.69544487e-01 sys_corr_128: 1.63580347e-02 - sys_corr_129: 6.55694381e-02 - sys_corr_130: -3.82391325e-03 + sys_corr_129: -6.55694381e-02 + sys_corr_130: 3.82391325e-03 sys_corr_131: -1.45059238e-02 - sys_corr_132: -1.53362961e-02 + sys_corr_132: 1.53362961e-02 stat: 0.0 luminosity: 3.84183272e+02 - sys_corr_1: 1.88534554e+02 @@ -2153,9 +2153,9 @@ bins: sys_corr_7: 1.82504019e+02 sys_corr_8: 1.20696074e+02 sys_corr_9: -1.16523849e+02 - sys_corr_10: -2.73080095e+01 + sys_corr_10: 2.73080095e+01 sys_corr_11: 1.86547242e+02 - sys_corr_12: -2.44455940e+02 + sys_corr_12: 2.44455940e+02 sys_corr_13: 1.50435250e+02 sys_corr_14: 4.28654112e+01 sys_corr_15: 4.25403066e+01 @@ -2181,60 +2181,60 @@ bins: sys_corr_35: -1.14544566e+01 sys_corr_36: 2.64199768e+00 sys_corr_37: 1.53913796e+01 - sys_corr_38: -6.07730796e-01 - sys_corr_39: 7.63530355e+00 - sys_corr_40: -2.41927123e+01 - sys_corr_41: 1.10200348e+01 - sys_corr_42: -1.22630771e+01 - sys_corr_43: -2.39009287e+00 + sys_corr_38: 6.07730796e-01 + sys_corr_39: -7.63530355e+00 + sys_corr_40: 2.41927123e+01 + sys_corr_41: -1.10200348e+01 + sys_corr_42: 1.22630771e+01 + sys_corr_43: 2.39009287e+00 sys_corr_44: 1.97621490e+01 - sys_corr_45: -2.10728945e+01 - sys_corr_46: -5.10625604e+00 + sys_corr_45: 2.10728945e+01 + sys_corr_46: 5.10625604e+00 sys_corr_47: 1.67214085e+00 - sys_corr_48: 5.01737883e+01 + sys_corr_48: -5.01737883e+01 sys_corr_49: -2.35210522e+01 sys_corr_50: 1.56589673e+01 sys_corr_51: 4.48532328e+01 - sys_corr_52: -2.91931783e+00 - sys_corr_53: -3.13103254e+01 + sys_corr_52: 2.91931783e+00 + sys_corr_53: 3.13103254e+01 sys_corr_54: 8.69653237e+00 - sys_corr_55: -1.11946375e+01 + sys_corr_55: 1.11946375e+01 sys_corr_56: -6.04168163e+01 - sys_corr_57: -3.60466080e+01 + sys_corr_57: 3.60466080e+01 sys_corr_58: 2.49311267e+01 - sys_corr_59: 1.98899192e+01 + sys_corr_59: -1.98899192e+01 sys_corr_60: 4.14098999e+01 sys_corr_61: -3.40106225e+01 sys_corr_62: 1.56657327e+02 - sys_corr_63: 7.50470209e+01 - sys_corr_64: -1.33209065e+01 + sys_corr_63: -7.50470209e+01 + sys_corr_64: 1.33209065e+01 sys_corr_65: -5.83244706e+01 sys_corr_66: 4.24668774e+00 sys_corr_67: 1.15603715e+02 sys_corr_68: 6.27730946e+00 sys_corr_69: -3.96477258e+01 sys_corr_70: 2.21998046e+01 - sys_corr_71: -4.84584605e+01 - sys_corr_72: 1.40067058e+00 - sys_corr_73: -1.95808069e+01 + sys_corr_71: -1.95808069e+01 + sys_corr_72: -1.40067058e+00 + sys_corr_73: -4.84584605e+01 sys_corr_74: 2.75422123e+01 sys_corr_75: -8.35642842e+00 sys_corr_76: -1.66457756e+01 - sys_corr_77: 5.75525206e+00 - sys_corr_78: -4.82444883e-01 - sys_corr_79: 7.42903017e+00 - sys_corr_80: -5.13044962e+00 + sys_corr_77: -5.75525206e+00 + sys_corr_78: 7.42903017e+00 + sys_corr_79: 5.13044962e+00 + sys_corr_80: 4.82444883e-01 sys_corr_81: -5.21570709e+00 sys_corr_82: 5.34011211e+00 sys_corr_83: 4.92089839e-01 - sys_corr_84: 1.78721243e+00 + sys_corr_84: -1.78721243e+00 sys_corr_85: -6.95919991e+00 sys_corr_86: -3.34092181e+00 sys_corr_87: 1.75178239e+01 sys_corr_88: 6.22363184e+00 sys_corr_89: -2.42544993e-02 sys_corr_90: 2.23226066e+00 - sys_corr_91: -2.50035287e+00 + sys_corr_91: 2.50035287e+00 sys_corr_92: 6.95817612e+00 sys_corr_93: 1.13681664e-01 sys_corr_94: -3.05249622e-02 @@ -2242,40 +2242,40 @@ bins: sys_corr_96: 3.25410190e-01 sys_corr_97: 9.49598215e-01 sys_corr_98: 2.02928290e-01 - sys_corr_99: -4.94596979e-01 - sys_corr_100: 7.74634209e-01 + sys_corr_99: 4.94596979e-01 + sys_corr_100: -7.74634209e-01 sys_corr_101: 6.28051569e-01 - sys_corr_102: 8.92499412e-01 - sys_corr_103: -2.95173374e+00 - sys_corr_104: -7.45645506e-01 - sys_corr_105: -9.03733635e-01 - sys_corr_106: -5.64645068e-01 - sys_corr_107: -4.11114974e-01 + sys_corr_102: -8.92499412e-01 + sys_corr_103: 2.95173374e+00 + sys_corr_104: 7.45645506e-01 + sys_corr_105: 9.03733635e-01 + sys_corr_106: 5.64645068e-01 + sys_corr_107: 4.11114974e-01 sys_corr_108: -1.40478400e-01 sys_corr_109: -4.94581249e-02 sys_corr_110: -4.45612650e-01 - sys_corr_111: 3.82171503e-01 + sys_corr_111: -3.82171503e-01 sys_corr_112: 5.49613118e-02 sys_corr_113: -6.97577286e-02 sys_corr_114: 7.92159579e-04 - sys_corr_115: 1.37247498e-01 + sys_corr_115: -1.37247498e-01 sys_corr_116: 8.58698406e-02 sys_corr_117: -4.62799285e-02 sys_corr_118: -1.32420554e-01 sys_corr_119: -4.56392213e-03 sys_corr_120: -5.02244924e-02 - sys_corr_121: -1.25557440e-02 - sys_corr_122: -4.90228884e-02 - sys_corr_123: 8.98756634e-02 + sys_corr_121: 1.25557440e-02 + sys_corr_122: 8.98756634e-02 + sys_corr_123: -4.90228884e-02 sys_corr_124: -6.44190322e-02 - sys_corr_125: 6.68866435e-02 - sys_corr_126: -1.25530620e-02 + sys_corr_125: -6.68866435e-02 + sys_corr_126: 1.25530620e-02 sys_corr_127: -2.13677547e-01 sys_corr_128: 6.69580232e-02 - sys_corr_129: 4.40963392e-02 - sys_corr_130: -1.22065765e-02 + sys_corr_129: -4.40963392e-02 + sys_corr_130: 1.22065765e-02 sys_corr_131: -5.13448149e-02 - sys_corr_132: -8.32628226e-02 + sys_corr_132: 8.32628226e-02 stat: 0.0 luminosity: 3.71965572e+02 - sys_corr_1: 1.79829501e+02 @@ -2287,9 +2287,9 @@ bins: sys_corr_7: 2.18795107e+02 sys_corr_8: 1.42881033e+02 sys_corr_9: -1.50284555e+02 - sys_corr_10: -3.21063375e+01 + sys_corr_10: 3.21063375e+01 sys_corr_11: 2.30340975e+02 - sys_corr_12: -3.20458427e+02 + sys_corr_12: 3.20458427e+02 sys_corr_13: 1.97320033e+02 sys_corr_14: 5.97479331e+01 sys_corr_15: 5.47085949e+01 @@ -2315,60 +2315,60 @@ bins: sys_corr_35: 1.80044271e+01 sys_corr_36: 8.44811980e-01 sys_corr_37: -6.20003530e+00 - sys_corr_38: 4.79345221e+00 - sys_corr_39: 2.16525459e+01 - sys_corr_40: -1.50151759e+01 - sys_corr_41: 3.01730621e+01 - sys_corr_42: 8.02116779e+00 - sys_corr_43: 3.51162171e+01 + sys_corr_38: -4.79345221e+00 + sys_corr_39: -2.16525459e+01 + sys_corr_40: 1.50151759e+01 + sys_corr_41: -3.01730621e+01 + sys_corr_42: -8.02116779e+00 + sys_corr_43: -3.51162171e+01 sys_corr_44: 3.79103157e+01 - sys_corr_45: 2.99762495e+01 - sys_corr_46: 2.05830039e+01 + sys_corr_45: -2.99762495e+01 + sys_corr_46: -2.05830039e+01 sys_corr_47: 1.33967041e+01 - sys_corr_48: 2.01256897e+01 + sys_corr_48: -2.01256897e+01 sys_corr_49: 6.56756851e+00 sys_corr_50: 4.09886679e+01 sys_corr_51: -1.03754372e+01 - sys_corr_52: 1.91242159e+01 - sys_corr_53: -1.43376812e+02 + sys_corr_52: -1.91242159e+01 + sys_corr_53: 1.43376812e+02 sys_corr_54: 1.21268166e+01 - sys_corr_55: 2.53627480e+01 + sys_corr_55: -2.53627480e+01 sys_corr_56: -4.59166839e+00 - sys_corr_57: 6.72237608e+01 - sys_corr_58: -6.47378230e+01 - sys_corr_59: -6.27502497e+01 + sys_corr_57: -6.72237608e+01 + sys_corr_58: -6.47378231e+01 + sys_corr_59: 6.27502497e+01 sys_corr_60: -5.74239322e+01 sys_corr_61: 5.15170628e+01 sys_corr_62: -3.68232504e+01 - sys_corr_63: -7.80018259e+01 - sys_corr_64: 6.97628217e+01 + sys_corr_63: 7.80018259e+01 + sys_corr_64: -6.97628217e+01 sys_corr_65: -7.11991531e+01 sys_corr_66: -2.39036896e+01 sys_corr_67: 7.08078053e+00 sys_corr_68: 2.96452052e+01 sys_corr_69: -2.76408102e+01 sys_corr_70: 1.78941246e+01 - sys_corr_71: 6.24148830e-01 - sys_corr_72: 3.12701649e+01 - sys_corr_73: -5.14358879e+00 + sys_corr_71: -5.14358879e+00 + sys_corr_72: -3.12701649e+01 + sys_corr_73: 6.24148830e-01 sys_corr_74: -5.85127373e+01 sys_corr_75: -1.52310651e+01 sys_corr_76: -1.72950628e+01 - sys_corr_77: 5.86231036e-01 - sys_corr_78: 4.35835915e+00 - sys_corr_79: 6.72041148e+00 - sys_corr_80: 3.31283913e-01 + sys_corr_77: -5.86231036e-01 + sys_corr_78: 6.72041148e+00 + sys_corr_79: -3.31283913e-01 + sys_corr_80: -4.35835915e+00 sys_corr_81: -3.86239617e+00 sys_corr_82: 3.73188117e+00 sys_corr_83: -1.19062977e+01 - sys_corr_84: -4.39729674e-01 + sys_corr_84: 4.39729674e-01 sys_corr_85: -6.58310776e+00 sys_corr_86: 8.47782241e+00 sys_corr_87: 1.40521542e+01 sys_corr_88: -2.01915751e+01 sys_corr_89: 1.36765472e+00 sys_corr_90: 2.25210038e+00 - sys_corr_91: -1.38449610e+00 + sys_corr_91: 1.38449610e+00 sys_corr_92: 1.07325526e+01 sys_corr_93: 5.26727886e-01 sys_corr_94: 1.91337724e+00 @@ -2376,40 +2376,40 @@ bins: sys_corr_96: -1.96033782e-01 sys_corr_97: 2.44812841e-01 sys_corr_98: -3.08833486e-01 - sys_corr_99: -2.03600278e-01 - sys_corr_100: 1.09695115e+00 + sys_corr_99: 2.03600278e-01 + sys_corr_100: -1.09695115e+00 sys_corr_101: 6.92258714e-01 - sys_corr_102: 1.61549253e+00 - sys_corr_103: -3.19039747e+00 - sys_corr_104: 1.66084356e-01 - sys_corr_105: -8.36850872e-01 - sys_corr_106: -8.87381483e-01 - sys_corr_107: -6.07596220e-01 + sys_corr_102: -1.61549253e+00 + sys_corr_103: 3.19039747e+00 + sys_corr_104: -1.66084356e-01 + sys_corr_105: 8.36850872e-01 + sys_corr_106: 8.87381483e-01 + sys_corr_107: 6.07596220e-01 sys_corr_108: -8.44256717e-03 sys_corr_109: 1.56926455e-02 sys_corr_110: -1.62974658e-01 - sys_corr_111: 5.08988922e-01 + sys_corr_111: -5.08988922e-01 sys_corr_112: -1.25380209e-01 sys_corr_113: -6.22048874e-02 sys_corr_114: 1.46626438e-03 - sys_corr_115: 1.84643740e-01 + sys_corr_115: -1.84643740e-01 sys_corr_116: 8.04288398e-02 sys_corr_117: -6.55403688e-02 sys_corr_118: -1.17061270e-01 sys_corr_119: 1.90474269e-04 sys_corr_120: -4.61940980e-02 - sys_corr_121: -1.13162352e-02 - sys_corr_122: -4.77827542e-02 - sys_corr_123: 8.41463844e-02 + sys_corr_121: 1.13162352e-02 + sys_corr_122: 8.41463844e-02 + sys_corr_123: -4.77827542e-02 sys_corr_124: -1.44079246e-02 - sys_corr_125: 6.44900365e-02 - sys_corr_126: -1.33282438e-02 + sys_corr_125: -6.44900365e-02 + sys_corr_126: 1.33282438e-02 sys_corr_127: -3.36939000e-02 sys_corr_128: 1.29323144e-02 - sys_corr_129: 2.93879422e-02 - sys_corr_130: -2.13688025e-02 + sys_corr_129: -2.93879422e-02 + sys_corr_130: 2.13688025e-02 sys_corr_131: -4.86760990e-02 - sys_corr_132: -7.04201883e-02 + sys_corr_132: 7.04201883e-02 stat: 0.0 luminosity: 3.72664336e+02 - sys_corr_1: 1.56183227e+02 @@ -2421,9 +2421,9 @@ bins: sys_corr_7: 2.15695590e+02 sys_corr_8: 1.48396327e+02 sys_corr_9: -1.77717773e+02 - sys_corr_10: -3.87650671e+01 + sys_corr_10: 3.87650671e+01 sys_corr_11: 2.46107671e+02 - sys_corr_12: -3.50633747e+02 + sys_corr_12: 3.50633747e+02 sys_corr_13: 2.19675597e+02 sys_corr_14: 6.27640125e+01 sys_corr_15: 6.37252879e+01 @@ -2449,60 +2449,60 @@ bins: sys_corr_35: -4.36982013e+00 sys_corr_36: 1.32287559e+01 sys_corr_37: 1.31500953e+01 - sys_corr_38: 1.50554174e+01 - sys_corr_39: 1.98700637e+01 - sys_corr_40: -3.76000127e+01 - sys_corr_41: 6.73917022e+01 - sys_corr_42: 1.80625395e+01 - sys_corr_43: 1.68653918e+01 + sys_corr_38: -1.50554174e+01 + sys_corr_39: -1.98700637e+01 + sys_corr_40: 3.76000127e+01 + sys_corr_41: -6.73917022e+01 + sys_corr_42: -1.80625395e+01 + sys_corr_43: -1.68653918e+01 sys_corr_44: 6.19466233e+00 - sys_corr_45: -1.93526786e+01 - sys_corr_46: 2.13953962e+01 + sys_corr_45: 1.93526786e+01 + sys_corr_46: -2.13953962e+01 sys_corr_47: 3.08405958e+01 - sys_corr_48: 9.75893863e+00 + sys_corr_48: -9.75893863e+00 sys_corr_49: -4.72059233e+00 sys_corr_50: 1.69493211e+01 sys_corr_51: 5.04232489e+01 - sys_corr_52: 6.44431100e+00 - sys_corr_53: 2.03712424e+02 + sys_corr_52: -6.44431100e+00 + sys_corr_53: -2.03712424e+02 sys_corr_54: -2.48243634e+01 - sys_corr_55: -5.01114703e+01 + sys_corr_55: 5.01114703e+01 sys_corr_56: 4.00540694e+01 - sys_corr_57: -3.36818173e+01 + sys_corr_57: 3.36818173e+01 sys_corr_58: 5.01597841e+01 - sys_corr_59: -3.96459634e+00 + sys_corr_59: 3.96459634e+00 sys_corr_60: 3.25334545e+01 sys_corr_61: 1.85595324e+01 sys_corr_62: 2.13128907e+01 - sys_corr_63: -9.28974958e+01 - sys_corr_64: 2.19415494e+01 + sys_corr_63: 9.28974958e+01 + sys_corr_64: -2.19415494e+01 sys_corr_65: -4.69025345e+01 sys_corr_66: -1.80332974e+01 sys_corr_67: -4.43413142e+01 sys_corr_68: 3.66245805e+00 sys_corr_69: -6.51813901e+00 sys_corr_70: 2.22894300e+01 - sys_corr_71: 1.04267433e+01 - sys_corr_72: 3.47460276e+01 - sys_corr_73: 7.10436397e+00 + sys_corr_71: 7.10436397e+00 + sys_corr_72: -3.47460276e+01 + sys_corr_73: 1.04267433e+01 sys_corr_74: -3.02852250e+01 sys_corr_75: -5.65060808e-01 sys_corr_76: 1.27092655e-01 - sys_corr_77: -3.94352930e-01 - sys_corr_78: 2.83811869e+00 - sys_corr_79: 1.12400029e+00 - sys_corr_80: 4.91314409e+00 + sys_corr_77: 3.94352930e-01 + sys_corr_78: 1.12400029e+00 + sys_corr_79: -4.91314409e+00 + sys_corr_80: -2.83811869e+00 sys_corr_81: -6.03956554e+00 sys_corr_82: -1.30018872e+00 sys_corr_83: -7.30541057e+00 - sys_corr_84: 2.11050213e+00 + sys_corr_84: -2.11050213e+00 sys_corr_85: -8.53176805e-01 sys_corr_86: 8.76909893e+00 sys_corr_87: -1.03684598e+00 sys_corr_88: -8.93839546e+00 sys_corr_89: -6.88600213e-01 sys_corr_90: 3.24167493e-01 - sys_corr_91: 1.18170930e+00 + sys_corr_91: -1.18170930e+00 sys_corr_92: -1.63934197e+00 sys_corr_93: 1.74245688e-01 sys_corr_94: 9.16918878e-01 @@ -2510,40 +2510,40 @@ bins: sys_corr_96: -7.88125771e-02 sys_corr_97: -2.31494665e-01 sys_corr_98: -6.27684006e-03 - sys_corr_99: -4.02956269e-02 - sys_corr_100: 1.00740147e+00 + sys_corr_99: 4.02956269e-02 + sys_corr_100: -1.00740147e+00 sys_corr_101: 8.68972509e-01 - sys_corr_102: 1.57395537e+00 - sys_corr_103: -3.05047845e+00 - sys_corr_104: -7.29338377e-01 - sys_corr_105: -8.71204137e-01 - sys_corr_106: -7.57700603e-01 - sys_corr_107: -5.58737507e-01 + sys_corr_102: -1.57395537e+00 + sys_corr_103: 3.05047845e+00 + sys_corr_104: 7.29338377e-01 + sys_corr_105: 8.71204137e-01 + sys_corr_106: 7.57700603e-01 + sys_corr_107: 5.58737507e-01 sys_corr_108: -1.60539765e-02 sys_corr_109: -9.72831361e-02 sys_corr_110: -2.64456055e-01 - sys_corr_111: 3.76209127e-02 + sys_corr_111: -3.76209127e-02 sys_corr_112: 4.35751457e-02 sys_corr_113: 2.55118630e-02 sys_corr_114: 2.42849385e-03 - sys_corr_115: 1.27015990e-01 + sys_corr_115: -1.27015990e-01 sys_corr_116: 2.18696309e-02 sys_corr_117: -1.09758098e-02 sys_corr_118: 8.22097361e-03 sys_corr_119: 9.78778293e-03 sys_corr_120: -1.33581323e-02 - sys_corr_121: -8.00362163e-03 - sys_corr_122: -1.41669230e-02 - sys_corr_123: 3.28098038e-02 + sys_corr_121: 8.00362163e-03 + sys_corr_122: 3.28098038e-02 + sys_corr_123: -1.41669230e-02 sys_corr_124: 8.74942442e-03 - sys_corr_125: 3.95023601e-02 - sys_corr_126: 1.09969139e-02 + sys_corr_125: -3.95023601e-02 + sys_corr_126: -1.09969139e-02 sys_corr_127: -1.75946998e-01 sys_corr_128: -9.02707832e-02 - sys_corr_129: 7.45861163e-02 - sys_corr_130: -2.86622782e-02 + sys_corr_129: -7.45861163e-02 + sys_corr_130: 2.86622782e-02 sys_corr_131: -3.27705322e-02 - sys_corr_132: -1.02868224e-01 + sys_corr_132: 1.02868224e-01 stat: 0.0 luminosity: 3.58529072e+02 - sys_corr_1: 1.49274303e+02 @@ -2555,9 +2555,9 @@ bins: sys_corr_7: 2.17737186e+02 sys_corr_8: 1.57207533e+02 sys_corr_9: -2.04581881e+02 - sys_corr_10: -3.93162420e+01 + sys_corr_10: 3.93162420e+01 sys_corr_11: 2.51406276e+02 - sys_corr_12: -3.78368266e+02 + sys_corr_12: 3.78368266e+02 sys_corr_13: 2.40213039e+02 sys_corr_14: 7.00300055e+01 sys_corr_15: 6.95494740e+01 @@ -2583,60 +2583,60 @@ bins: sys_corr_35: -5.96567926e+00 sys_corr_36: -1.10980419e+01 sys_corr_37: -1.49104605e+00 - sys_corr_38: -5.19274467e+00 - sys_corr_39: 4.59588409e-01 - sys_corr_40: -1.18329311e+01 - sys_corr_41: -1.52778796e+00 - sys_corr_42: -1.56477826e+01 - sys_corr_43: -1.67548623e+01 + sys_corr_38: 5.19274467e+00 + sys_corr_39: -4.59588409e-01 + sys_corr_40: 1.18329311e+01 + sys_corr_41: 1.52778796e+00 + sys_corr_42: 1.56477826e+01 + sys_corr_43: 1.67548623e+01 sys_corr_44: 2.69788835e+00 - sys_corr_45: -1.43289923e+01 - sys_corr_46: -4.84722520e+01 + sys_corr_45: 1.43289923e+01 + sys_corr_46: 4.84722520e+01 sys_corr_47: 2.55997733e+01 - sys_corr_48: 7.37740331e+00 + sys_corr_48: -7.37740331e+00 sys_corr_49: 2.67819661e+01 sys_corr_50: 2.55098884e+01 sys_corr_51: -2.02816651e+01 - sys_corr_52: 8.36874371e+00 - sys_corr_53: 5.54271284e+01 + sys_corr_52: -8.36874371e+00 + sys_corr_53: -5.54271284e+01 sys_corr_54: -7.56560873e+01 - sys_corr_55: -2.57092373e+01 + sys_corr_55: 2.57092373e+01 sys_corr_56: -2.02119196e+01 - sys_corr_57: 1.55181783e+02 + sys_corr_57: -1.55181783e+02 sys_corr_58: -7.39116652e+01 - sys_corr_59: 2.33842987e+00 + sys_corr_59: -2.33842987e+00 sys_corr_60: -3.01733692e+01 sys_corr_61: -1.33342351e+01 sys_corr_62: -7.37745968e+00 - sys_corr_63: 1.37304037e+02 - sys_corr_64: -1.34030975e+01 + sys_corr_63: -1.37304037e+02 + sys_corr_64: 1.34030975e+01 sys_corr_65: 3.80841111e+01 sys_corr_66: -6.19558147e+00 sys_corr_67: -3.52189815e+01 sys_corr_68: -3.02611660e+01 sys_corr_69: 6.31997486e+00 sys_corr_70: -1.60375077e+01 - sys_corr_71: -3.17514608e+01 - sys_corr_72: 1.36828971e+01 - sys_corr_73: 5.74617998e+00 + sys_corr_71: 5.74617998e+00 + sys_corr_72: -1.36828971e+01 + sys_corr_73: -3.17514608e+01 sys_corr_74: 5.76995398e+00 sys_corr_75: 1.42190468e+01 sys_corr_76: 1.59148237e+01 - sys_corr_77: -3.77625318e-02 - sys_corr_78: 1.27373424e+00 - sys_corr_79: 2.80555277e+00 - sys_corr_80: 2.66521097e+00 + sys_corr_77: 3.77625318e-02 + sys_corr_78: 2.80555277e+00 + sys_corr_79: -2.66521097e+00 + sys_corr_80: -1.27373424e+00 sys_corr_81: -2.53286730e+00 sys_corr_82: -3.20128063e+00 sys_corr_83: 1.16937916e+00 - sys_corr_84: -6.44688911e-01 + sys_corr_84: 6.44688911e-01 sys_corr_85: -4.95659004e-02 sys_corr_86: 1.09554272e+01 sys_corr_87: 2.96837409e+00 sys_corr_88: -1.28322753e+01 sys_corr_89: -7.05824471e-01 sys_corr_90: 1.91639583e-01 - sys_corr_91: 8.89253382e-01 + sys_corr_91: -8.89253382e-01 sys_corr_92: -6.67210870e+00 sys_corr_93: -6.47253183e-02 sys_corr_94: -5.09447205e-01 @@ -2644,40 +2644,40 @@ bins: sys_corr_96: 1.41433194e-01 sys_corr_97: 2.31903677e-01 sys_corr_98: 3.76516874e-01 - sys_corr_99: -1.22247573e-01 - sys_corr_100: 3.02235364e-01 + sys_corr_99: 1.22247573e-01 + sys_corr_100: -3.02235364e-01 sys_corr_101: 2.62071888e-01 - sys_corr_102: 2.66219300e-01 - sys_corr_103: -5.16393812e-01 - sys_corr_104: -1.05163659e+00 - sys_corr_105: -1.59781105e-01 - sys_corr_106: -2.79313344e-01 - sys_corr_107: -1.01161949e-02 + sys_corr_102: -2.66219300e-01 + sys_corr_103: 5.16393812e-01 + sys_corr_104: 1.05163659e+00 + sys_corr_105: 1.59781105e-01 + sys_corr_106: 2.79313344e-01 + sys_corr_107: 1.01161949e-02 sys_corr_108: -7.16186444e-02 sys_corr_109: 1.04222300e-01 sys_corr_110: -8.00038054e-02 - sys_corr_111: 2.07848750e-01 + sys_corr_111: -2.07848750e-01 sys_corr_112: -1.91872454e-02 sys_corr_113: 7.05199035e-02 sys_corr_114: 1.16824928e-03 - sys_corr_115: 1.18535525e-01 + sys_corr_115: -1.18535525e-01 sys_corr_116: 2.45092576e-02 sys_corr_117: -2.07821844e-02 sys_corr_118: -5.50567448e-02 sys_corr_119: 1.74262981e-03 sys_corr_120: -9.24520860e-03 - sys_corr_121: 2.67793114e-03 - sys_corr_122: 8.32390293e-03 - sys_corr_123: -1.18043144e-02 + sys_corr_121: -2.67793114e-03 + sys_corr_122: -1.18043144e-02 + sys_corr_123: 8.32390293e-03 sys_corr_124: -5.20061503e-03 - sys_corr_125: -1.08836892e-03 - sys_corr_126: 6.93892880e-03 + sys_corr_125: 1.08836892e-03 + sys_corr_126: -6.93892880e-03 sys_corr_127: 1.61713801e-01 sys_corr_128: -2.06271954e-01 - sys_corr_129: 1.40402596e-02 - sys_corr_130: -1.42489335e-03 + sys_corr_129: -1.40402596e-02 + sys_corr_130: 1.42489335e-03 sys_corr_131: -5.51557397e-03 - sys_corr_132: -8.56477729e-02 + sys_corr_132: 8.56477729e-02 stat: 0.0 luminosity: 3.61877912e+02 - sys_corr_1: 1.32113976e+02 @@ -2689,9 +2689,9 @@ bins: sys_corr_7: 1.93069827e+02 sys_corr_8: 1.54394647e+02 sys_corr_9: -2.19580225e+02 - sys_corr_10: -4.08817985e+01 + sys_corr_10: 4.08817985e+01 sys_corr_11: 2.53702475e+02 - sys_corr_12: -3.77224748e+02 + sys_corr_12: 3.77224748e+02 sys_corr_13: 2.52923575e+02 sys_corr_14: 6.47051994e+01 sys_corr_15: 7.41673430e+01 @@ -2717,60 +2717,60 @@ bins: sys_corr_35: -1.15282638e+00 sys_corr_36: -2.22595927e+01 sys_corr_37: -2.17365211e+01 - sys_corr_38: -8.56996548e+00 - sys_corr_39: -3.04460321e+00 - sys_corr_40: 3.52260909e+01 - sys_corr_41: -1.36456639e+01 - sys_corr_42: -3.12945171e+01 - sys_corr_43: 1.11902559e+01 + sys_corr_38: 8.56996548e+00 + sys_corr_39: 3.04460321e+00 + sys_corr_40: -3.52260909e+01 + sys_corr_41: 1.36456639e+01 + sys_corr_42: 3.12945171e+01 + sys_corr_43: -1.11902559e+01 sys_corr_44: 6.05448422e+00 - sys_corr_45: 4.81125002e+00 - sys_corr_46: 1.14046385e+01 + sys_corr_45: -4.81125002e+00 + sys_corr_46: -1.14046385e+01 sys_corr_47: -2.31037932e+01 - sys_corr_48: 3.22527668e+01 + sys_corr_48: -3.22527668e+01 sys_corr_49: -3.15968571e+01 sys_corr_50: -1.27058723e+01 sys_corr_51: 7.27337724e+01 - sys_corr_52: 1.81719867e+01 - sys_corr_53: -3.59493951e+01 + sys_corr_52: -1.81719867e+01 + sys_corr_53: 3.59493951e+01 sys_corr_54: 4.29603370e+01 - sys_corr_55: -3.14131738e+01 + sys_corr_55: 3.14131738e+01 sys_corr_56: -8.40650671e+01 - sys_corr_57: -7.61611049e+01 + sys_corr_57: 7.61611049e+01 sys_corr_58: -2.28075739e+01 - sys_corr_59: 9.05726673e+01 + sys_corr_59: -9.05726673e+01 sys_corr_60: -9.69458998e+00 sys_corr_61: 1.84625134e+01 sys_corr_62: -4.18453589e+01 - sys_corr_63: 5.80241249e-02 - sys_corr_64: 6.58000090e+01 + sys_corr_63: -5.80241249e-02 + sys_corr_64: -6.58000090e+01 sys_corr_65: 1.97025150e+01 sys_corr_66: -6.89767073e+00 sys_corr_67: 1.82163958e+01 sys_corr_68: 5.93365953e+00 sys_corr_69: 3.83135145e+01 sys_corr_70: -2.27903824e+00 - sys_corr_71: 9.14455886e+01 - sys_corr_72: -6.20428246e+01 - sys_corr_73: 1.63570849e+01 + sys_corr_71: 1.63570849e+01 + sys_corr_72: 6.20428246e+01 + sys_corr_73: 9.14455886e+01 sys_corr_74: 5.06742320e+01 sys_corr_75: 1.38752306e+01 sys_corr_76: 3.78945029e+01 - sys_corr_77: -5.27040771e+00 - sys_corr_78: 5.42291305e+00 - sys_corr_79: 2.12952875e+00 - sys_corr_80: 1.12478096e+01 + sys_corr_77: 5.27040771e+00 + sys_corr_78: 2.12952875e+00 + sys_corr_79: -1.12478096e+01 + sys_corr_80: -5.42291305e+00 sys_corr_81: -7.57206754e+00 sys_corr_82: 4.18455460e+00 sys_corr_83: 2.89828552e+00 - sys_corr_84: -1.61190082e+00 + sys_corr_84: 1.61190082e+00 sys_corr_85: 4.43740945e+00 sys_corr_86: 3.47185831e+01 sys_corr_87: -7.75264087e+00 sys_corr_88: -1.74955337e+01 sys_corr_89: 4.09675282e-02 sys_corr_90: -3.42104405e+00 - sys_corr_91: -5.01956716e-02 + sys_corr_91: 5.01956716e-02 sys_corr_92: -3.56065966e+01 sys_corr_93: -7.05259855e-01 sys_corr_94: -2.65324049e+00 @@ -2778,40 +2778,40 @@ bins: sys_corr_96: 1.05624159e-01 sys_corr_97: 8.28147428e-02 sys_corr_98: 2.82671854e-01 - sys_corr_99: 1.86865924e-01 - sys_corr_100: -1.50984944e-01 + sys_corr_99: -1.86865924e-01 + sys_corr_100: 1.50984944e-01 sys_corr_101: -2.82941128e-01 - sys_corr_102: -1.46922451e-01 - sys_corr_103: -7.57103036e-01 - sys_corr_104: 3.64349521e-02 - sys_corr_105: -7.66216771e-01 - sys_corr_106: 1.87347841e-01 - sys_corr_107: 1.80023656e-04 + sys_corr_102: 1.46922451e-01 + sys_corr_103: 7.57103036e-01 + sys_corr_104: -3.64349521e-02 + sys_corr_105: 7.66216771e-01 + sys_corr_106: -1.87347841e-01 + sys_corr_107: -1.80023656e-04 sys_corr_108: -1.44591400e-01 sys_corr_109: 1.53789673e-01 sys_corr_110: 1.51883926e-01 - sys_corr_111: -2.17512395e-01 + sys_corr_111: 2.17512395e-01 sys_corr_112: 8.87455080e-02 sys_corr_113: 1.81479699e-01 sys_corr_114: 4.72899273e-03 - sys_corr_115: 2.06449910e-01 + sys_corr_115: -2.06449910e-01 sys_corr_116: 1.69308061e-02 sys_corr_117: -4.42464395e-03 sys_corr_118: -1.69147648e-01 sys_corr_119: 2.45451900e-03 sys_corr_120: -6.62397374e-03 - sys_corr_121: -8.41109369e-03 - sys_corr_122: -5.95189385e-03 - sys_corr_123: 1.04814230e-02 + sys_corr_121: 8.41109369e-03 + sys_corr_122: 1.04814230e-02 + sys_corr_123: -5.95189385e-03 sys_corr_124: -7.81524711e-03 - sys_corr_125: 2.09384738e-02 - sys_corr_126: 2.18258419e-04 + sys_corr_125: -2.09384738e-02 + sys_corr_126: -2.18258419e-04 sys_corr_127: 4.02718255e-02 sys_corr_128: -2.76573292e-03 - sys_corr_129: -9.73696353e-02 - sys_corr_130: 3.38568519e-04 + sys_corr_129: 9.73696353e-02 + sys_corr_130: -3.38568519e-04 sys_corr_131: -1.47823289e-02 - sys_corr_132: -8.14917850e-02 + sys_corr_132: 8.14917850e-02 stat: 0.0 luminosity: 3.40095866e+02 - sys_corr_1: 1.34847741e+02 @@ -2823,9 +2823,9 @@ bins: sys_corr_7: 1.72731634e+02 sys_corr_8: 1.49541182e+02 sys_corr_9: -2.37139448e+02 - sys_corr_10: -5.02977721e+01 + sys_corr_10: 5.02977721e+01 sys_corr_11: 2.61151344e+02 - sys_corr_12: -3.95211804e+02 + sys_corr_12: 3.95211804e+02 sys_corr_13: 2.73359370e+02 sys_corr_14: 6.03283060e+01 sys_corr_15: 7.73101491e+01 @@ -2851,60 +2851,60 @@ bins: sys_corr_35: 4.12255646e+00 sys_corr_36: 2.53746750e+00 sys_corr_37: -8.89627937e-02 - sys_corr_38: 2.24017134e+00 - sys_corr_39: -3.83788766e+00 - sys_corr_40: -1.23361407e+01 - sys_corr_41: 1.03488750e+00 - sys_corr_42: 1.19428640e+01 - sys_corr_43: 1.39361521e+01 + sys_corr_38: -2.24017134e+00 + sys_corr_39: 3.83788766e+00 + sys_corr_40: 1.23361407e+01 + sys_corr_41: -1.03488750e+00 + sys_corr_42: -1.19428640e+01 + sys_corr_43: -1.39361521e+01 sys_corr_44: -3.51822951e+01 - sys_corr_45: -3.88167254e+00 - sys_corr_46: 3.41826731e+01 + sys_corr_45: 3.88167254e+00 + sys_corr_46: -3.41826731e+01 sys_corr_47: -2.77174674e+01 - sys_corr_48: -3.53355448e+01 + sys_corr_48: 3.53355448e+01 sys_corr_49: -7.62361642e+00 sys_corr_50: -3.28468639e+01 sys_corr_51: -6.36969028e+01 - sys_corr_52: -4.78393362e+01 - sys_corr_53: -1.63154410e+01 + sys_corr_52: 4.78393362e+01 + sys_corr_53: 1.63154410e+01 sys_corr_54: -2.97197721e+01 - sys_corr_55: 2.08967119e+01 + sys_corr_55: -2.08967119e+01 sys_corr_56: 7.22018143e+01 - sys_corr_57: 3.73312674e+01 + sys_corr_57: -3.73312674e+01 sys_corr_58: 2.75449578e+01 - sys_corr_59: -6.98523004e+01 + sys_corr_59: 6.98523004e+01 sys_corr_60: -7.47933682e+00 sys_corr_61: -5.84052929e+00 sys_corr_62: 8.91846931e-01 - sys_corr_63: -8.13408976e+01 - sys_corr_64: -7.96143089e+01 + sys_corr_63: 8.13408976e+01 + sys_corr_64: 7.96143089e+01 sys_corr_65: -6.46937583e-01 sys_corr_66: -3.92034468e+00 sys_corr_67: 6.99473867e+01 sys_corr_68: 1.60892081e+01 sys_corr_69: 2.98420956e+00 sys_corr_70: -5.79972330e+00 - sys_corr_71: -2.46976602e+01 - sys_corr_72: -8.59531494e+01 - sys_corr_73: -2.43395051e+01 + sys_corr_71: -2.43395051e+01 + sys_corr_72: 8.59531494e+01 + sys_corr_73: -2.46976602e+01 sys_corr_74: 8.43246940e+01 sys_corr_75: 8.02186919e+00 sys_corr_76: 3.46277071e+00 - sys_corr_77: 4.54427398e-01 - sys_corr_78: 1.43817656e+00 - sys_corr_79: -2.78878890e+00 - sys_corr_80: -2.57884696e+01 + sys_corr_77: -4.54427398e-01 + sys_corr_78: -2.78878890e+00 + sys_corr_79: 2.57884696e+01 + sys_corr_80: -1.43817656e+00 sys_corr_81: 1.45772765e+01 sys_corr_82: -1.57566567e+00 sys_corr_83: 1.67480627e+01 - sys_corr_84: -2.10968437e+00 + sys_corr_84: 2.10968437e+00 sys_corr_85: 2.88062079e+00 sys_corr_86: -1.02371072e+01 sys_corr_87: -9.45780215e+00 sys_corr_88: 2.85546680e+01 sys_corr_89: -2.78004573e+00 sys_corr_90: -3.36460788e-01 - sys_corr_91: 1.48757417e+00 + sys_corr_91: -1.48757417e+00 sys_corr_92: -1.03147557e+01 sys_corr_93: -4.65818612e-01 sys_corr_94: -2.51816407e+00 @@ -2912,40 +2912,40 @@ bins: sys_corr_96: 4.41112047e-01 sys_corr_97: 2.06755361e+00 sys_corr_98: 1.09966228e+00 - sys_corr_99: -1.34779249e+00 - sys_corr_100: -8.84294749e-01 + sys_corr_99: 1.34779249e+00 + sys_corr_100: 8.84294749e-01 sys_corr_101: -6.92383455e-01 - sys_corr_102: -1.17158362e+00 - sys_corr_103: 2.80486654e-01 - sys_corr_104: -3.10181230e+00 - sys_corr_105: -7.73142741e-01 - sys_corr_106: 4.89089422e-01 - sys_corr_107: 2.93707636e-01 + sys_corr_102: 1.17158362e+00 + sys_corr_103: -2.80486654e-01 + sys_corr_104: 3.10181230e+00 + sys_corr_105: 7.73142741e-01 + sys_corr_106: -4.89089422e-01 + sys_corr_107: -2.93707636e-01 sys_corr_108: 8.80045610e-02 sys_corr_109: 1.67701873e-01 sys_corr_110: 7.81318839e-02 - sys_corr_111: 1.66539034e-01 + sys_corr_111: -1.66539034e-01 sys_corr_112: 1.22072378e-01 sys_corr_113: 1.03302731e-01 sys_corr_114: 1.27798513e-04 - sys_corr_115: -2.26891018e-02 + sys_corr_115: 2.26891018e-02 sys_corr_116: -1.88233922e-02 sys_corr_117: 2.24777084e-02 sys_corr_118: -3.35078857e-02 sys_corr_119: -1.79903697e-03 sys_corr_120: 1.68017452e-02 - sys_corr_121: 7.46665627e-03 - sys_corr_122: 3.39144775e-02 - sys_corr_123: -6.78662778e-02 + sys_corr_121: -7.46665627e-03 + sys_corr_122: -6.78662778e-02 + sys_corr_123: 3.39144775e-02 sys_corr_124: 2.68370545e-03 - sys_corr_125: -5.12501542e-02 - sys_corr_126: 1.40891736e-02 + sys_corr_125: 5.12501542e-02 + sys_corr_126: -1.40891736e-02 sys_corr_127: 9.54767209e-02 sys_corr_128: -4.25077350e-01 - sys_corr_129: -8.26900911e-02 - sys_corr_130: 6.13181437e-03 + sys_corr_129: 8.26900911e-02 + sys_corr_130: -6.13181437e-03 sys_corr_131: 3.48996931e-02 - sys_corr_132: -5.76078213e-02 + sys_corr_132: 5.76078213e-02 stat: 0.0 luminosity: 3.34508570e+02 - sys_corr_1: 1.19328700e+02 @@ -2957,9 +2957,9 @@ bins: sys_corr_7: 1.10768775e+02 sys_corr_8: 1.22872324e+02 sys_corr_9: -2.16817586e+02 - sys_corr_10: -4.78964135e+01 + sys_corr_10: 4.78964135e+01 sys_corr_11: 2.20591787e+02 - sys_corr_12: -3.29943009e+02 + sys_corr_12: 3.29943009e+02 sys_corr_13: 2.38775014e+02 sys_corr_14: 4.41611061e+01 sys_corr_15: 6.32853172e+01 @@ -2985,60 +2985,60 @@ bins: sys_corr_35: 5.64372597e+00 sys_corr_36: -2.93400510e-01 sys_corr_37: -9.55359578e-02 - sys_corr_38: 4.13742042e+00 - sys_corr_39: -1.25396880e+01 - sys_corr_40: 1.21357476e+01 - sys_corr_41: -3.13180258e+01 - sys_corr_42: 2.48736652e+01 - sys_corr_43: -2.35369065e+01 + sys_corr_38: -4.13742042e+00 + sys_corr_39: 1.25396880e+01 + sys_corr_40: -1.21357476e+01 + sys_corr_41: 3.13180258e+01 + sys_corr_42: -2.48736652e+01 + sys_corr_43: 2.35369065e+01 sys_corr_44: -3.33001417e+01 - sys_corr_45: 1.11672721e+01 - sys_corr_46: -2.09115401e+01 + sys_corr_45: -1.11672721e+01 + sys_corr_46: 2.09115401e+01 sys_corr_47: -9.98324278e+00 - sys_corr_48: -2.05359253e+01 + sys_corr_48: 2.05359253e+01 sys_corr_49: 1.66851322e+01 sys_corr_50: 8.03583757e+00 sys_corr_51: -2.06392669e+01 - sys_corr_52: 3.42336619e+01 - sys_corr_53: -5.20063220e+01 + sys_corr_52: -3.42336619e+01 + sys_corr_53: 5.20063220e+01 sys_corr_54: 7.43253338e+01 - sys_corr_55: 7.86529097e+01 + sys_corr_55: -7.86529097e+01 sys_corr_56: -1.18164831e+01 - sys_corr_57: -5.63090815e+01 + sys_corr_57: 5.63090815e+01 sys_corr_58: 4.77085763e+01 - sys_corr_59: -1.94457782e+01 + sys_corr_59: 1.94457782e+01 sys_corr_60: 3.06867187e+01 sys_corr_61: 1.06484411e+01 sys_corr_62: 3.69448902e+01 - sys_corr_63: 2.62554907e+01 - sys_corr_64: 2.10146707e+01 + sys_corr_63: -2.62554907e+01 + sys_corr_64: -2.10146707e+01 sys_corr_65: -1.31191114e+01 sys_corr_66: 3.19620088e+01 sys_corr_67: -9.91922839e+01 sys_corr_68: -2.96941169e+01 sys_corr_69: -2.25312175e+01 sys_corr_70: 1.28037986e+01 - sys_corr_71: -3.36282245e+01 - sys_corr_72: 1.17790971e+02 - sys_corr_73: -1.42552458e+01 + sys_corr_71: -1.42552458e+01 + sys_corr_72: -1.17790971e+02 + sys_corr_73: -3.36282245e+01 sys_corr_74: 2.09280035e+01 sys_corr_75: 1.16199684e+01 sys_corr_76: 1.18688250e+01 - sys_corr_77: 1.62531706e-01 - sys_corr_78: -3.58924279e+00 - sys_corr_79: -8.90246083e+00 - sys_corr_80: -1.23067050e+01 + sys_corr_77: -1.62531706e-01 + sys_corr_78: -8.90246083e+00 + sys_corr_79: 1.23067050e+01 + sys_corr_80: 3.58924279e+00 sys_corr_81: 4.81637081e+00 sys_corr_82: -1.70597050e+01 sys_corr_83: 4.15318273e+00 - sys_corr_84: -5.82655888e-01 + sys_corr_84: 5.82655888e-01 sys_corr_85: 3.95937309e+00 sys_corr_86: -1.60458331e+01 sys_corr_87: -1.56731807e+01 sys_corr_88: 3.00606341e+01 sys_corr_89: -2.70643757e+00 sys_corr_90: -2.76095644e+00 - sys_corr_91: 4.51591290e+00 + sys_corr_91: -4.51591290e+00 sys_corr_92: 1.42183280e+01 sys_corr_93: -4.91711999e-03 sys_corr_94: 4.38936558e-01 @@ -3046,40 +3046,40 @@ bins: sys_corr_96: -2.99590421e-02 sys_corr_97: 1.05422249e+00 sys_corr_98: 6.13027518e-01 - sys_corr_99: -7.81331780e-01 - sys_corr_100: -8.30012105e-01 + sys_corr_99: 7.81331780e-01 + sys_corr_100: 8.30012105e-01 sys_corr_101: -6.88461183e-01 - sys_corr_102: -1.20160773e+00 - sys_corr_103: 1.11974200e+00 - sys_corr_104: -1.94409966e+00 - sys_corr_105: -3.88022426e-01 - sys_corr_106: 5.70312352e-01 - sys_corr_107: 7.23955525e-01 + sys_corr_102: 1.20160773e+00 + sys_corr_103: -1.11974200e+00 + sys_corr_104: 1.94409966e+00 + sys_corr_105: 3.88022426e-01 + sys_corr_106: -5.70312352e-01 + sys_corr_107: -7.23955525e-01 sys_corr_108: -2.19996539e-01 sys_corr_109: 3.09088041e-01 sys_corr_110: 6.03641972e-02 - sys_corr_111: -1.05346869e-01 + sys_corr_111: 1.05346869e-01 sys_corr_112: 1.33430293e-01 sys_corr_113: 7.91196823e-02 sys_corr_114: -7.94486963e-04 - sys_corr_115: -3.47664275e-02 + sys_corr_115: 3.47664275e-02 sys_corr_116: -2.38240238e-02 sys_corr_117: 3.09185467e-02 sys_corr_118: 1.12423925e-01 sys_corr_119: 2.52959466e-03 sys_corr_120: 3.71651633e-02 - sys_corr_121: 7.48517750e-03 - sys_corr_122: 6.95507416e-02 - sys_corr_123: -1.23508921e-01 + sys_corr_121: -7.48517750e-03 + sys_corr_122: -1.23508921e-01 + sys_corr_123: 6.95507416e-02 sys_corr_124: 2.82723200e-02 - sys_corr_125: -9.56568224e-02 - sys_corr_126: 3.34916330e-02 + sys_corr_125: 9.56568224e-02 + sys_corr_126: -3.34916330e-02 sys_corr_127: 3.18186773e-01 sys_corr_128: -2.18161369e-01 - sys_corr_129: 7.96226759e-02 - sys_corr_130: 5.39022196e-03 + sys_corr_129: -7.96226759e-02 + sys_corr_130: -5.39022196e-03 sys_corr_131: 4.23994545e-02 - sys_corr_132: -7.02665217e-03 + sys_corr_132: 7.02665217e-03 stat: 0.0 luminosity: 3.09411498e+02 - sys_corr_1: 1.15363964e+02 @@ -3091,9 +3091,9 @@ bins: sys_corr_7: 5.03317838e+01 sys_corr_8: 8.63429918e+01 sys_corr_9: -1.62924247e+02 - sys_corr_10: -4.17042935e+01 + sys_corr_10: 4.17042935e+01 sys_corr_11: 1.65293966e+02 - sys_corr_12: -2.51157638e+02 + sys_corr_12: 2.51157638e+02 sys_corr_13: 1.92535732e+02 sys_corr_14: 2.27056389e+01 sys_corr_15: 5.37649550e+01 @@ -3119,60 +3119,60 @@ bins: sys_corr_35: 4.56244197e+00 sys_corr_36: 4.98964190e+00 sys_corr_37: -8.99424640e+00 - sys_corr_38: -7.05808829e+00 - sys_corr_39: 1.63412631e+00 - sys_corr_40: 8.21432482e+00 - sys_corr_41: -1.25904771e+01 - sys_corr_42: -1.09452586e+01 - sys_corr_43: 5.57413880e+00 + sys_corr_38: 7.05808829e+00 + sys_corr_39: -1.63412631e+00 + sys_corr_40: -8.21432482e+00 + sys_corr_41: 1.25904771e+01 + sys_corr_42: 1.09452586e+01 + sys_corr_43: -5.57413880e+00 sys_corr_44: -1.13834269e+01 - sys_corr_45: -1.16189312e+01 - sys_corr_46: 2.67015957e+00 + sys_corr_45: 1.16189312e+01 + sys_corr_46: -2.67015957e+00 sys_corr_47: 2.33676892e+01 - sys_corr_48: 1.57346295e+01 + sys_corr_48: -1.57346295e+01 sys_corr_49: -1.12340278e+01 sys_corr_50: -8.52051835e+00 sys_corr_51: 2.80834088e+01 - sys_corr_52: 1.60548186e+00 - sys_corr_53: 3.84197996e+01 + sys_corr_52: -1.60548186e+00 + sys_corr_53: -3.84197996e+01 sys_corr_54: -6.58057762e+00 - sys_corr_55: 1.46615115e+00 + sys_corr_55: -1.46615115e+00 sys_corr_56: -1.68674229e+01 - sys_corr_57: -1.86956099e+01 + sys_corr_57: 1.86956099e+01 sys_corr_58: -2.80352963e+01 - sys_corr_59: 5.63131650e+01 + sys_corr_59: -5.63131650e+01 sys_corr_60: -2.63223874e+01 sys_corr_61: 1.22802626e+01 sys_corr_62: -4.36716570e+01 - sys_corr_63: 1.54964987e+01 - sys_corr_64: -1.87030548e+01 + sys_corr_63: -1.54964987e+01 + sys_corr_64: 1.87030548e+01 sys_corr_65: 1.14645753e+01 sys_corr_66: 6.10867010e+01 sys_corr_67: 6.28791754e+01 sys_corr_68: -9.39313717e+00 sys_corr_69: -3.57524922e+00 sys_corr_70: 1.27510195e+00 - sys_corr_71: -8.32499617e+00 - sys_corr_72: -2.96986106e+01 - sys_corr_73: 9.82886376e+00 + sys_corr_71: 9.82886376e+00 + sys_corr_72: 2.96986106e+01 + sys_corr_73: -8.32499617e+00 sys_corr_74: -1.29337223e+02 sys_corr_75: -5.10602478e+01 sys_corr_76: -6.60641894e+01 - sys_corr_77: 5.50040269e+00 - sys_corr_78: -9.94832274e+00 - sys_corr_79: -6.10173493e+00 - sys_corr_80: -1.91812312e+01 + sys_corr_77: -5.50040269e+00 + sys_corr_78: -6.10173493e+00 + sys_corr_79: 1.91812312e+01 + sys_corr_80: 9.94832274e+00 sys_corr_81: 1.87472928e+01 sys_corr_82: 1.14324709e+01 sys_corr_83: 1.22032690e+00 - sys_corr_84: -3.76965081e-01 + sys_corr_84: 3.76965081e-01 sys_corr_85: -3.28197731e+00 sys_corr_86: -6.37255144e+01 sys_corr_87: 8.80253846e+00 sys_corr_88: 1.59136322e+01 sys_corr_89: 4.04775978e+00 sys_corr_90: 3.11186436e+00 - sys_corr_91: -2.78626413e+00 + sys_corr_91: 2.78626413e+00 sys_corr_92: 5.55767541e+01 sys_corr_93: 1.66249704e-01 sys_corr_94: 1.64427452e-01 @@ -3180,40 +3180,40 @@ bins: sys_corr_96: -4.63774717e-02 sys_corr_97: 1.30663307e-01 sys_corr_98: 2.30383227e-01 - sys_corr_99: -1.23009184e-01 - sys_corr_100: -1.35286534e-01 + sys_corr_99: 1.23009184e-01 + sys_corr_100: 1.35286534e-01 sys_corr_101: -1.74444111e-01 - sys_corr_102: -5.81053270e-01 - sys_corr_103: 1.10764791e+00 - sys_corr_104: -4.62186412e-01 - sys_corr_105: 3.30493194e-01 - sys_corr_106: 3.60936027e-01 - sys_corr_107: 3.26796151e-03 + sys_corr_102: 5.81053270e-01 + sys_corr_103: -1.10764791e+00 + sys_corr_104: 4.62186412e-01 + sys_corr_105: -3.30493194e-01 + sys_corr_106: -3.60936027e-01 + sys_corr_107: -3.26796151e-03 sys_corr_108: -1.69411300e-01 sys_corr_109: -8.64329788e-02 sys_corr_110: -5.16263126e-03 - sys_corr_111: 8.22035826e-02 + sys_corr_111: -8.22035826e-02 sys_corr_112: -1.95809587e-02 sys_corr_113: -1.26157274e-01 sys_corr_114: 1.28938199e-03 - sys_corr_115: -4.71775590e-02 + sys_corr_115: 4.71775590e-02 sys_corr_116: -3.82372925e-02 sys_corr_117: 2.33973761e-02 sys_corr_118: -7.72620217e-02 sys_corr_119: 1.12238727e-03 sys_corr_120: 1.50217133e-02 - sys_corr_121: -4.37789411e-03 - sys_corr_122: 1.02044512e-02 - sys_corr_123: -1.43232367e-02 + sys_corr_121: 4.37789411e-03 + sys_corr_122: -1.43232367e-02 + sys_corr_123: 1.02044512e-02 sys_corr_124: 3.73631078e-02 - sys_corr_125: -2.68721291e-02 - sys_corr_126: -5.82124099e-03 + sys_corr_125: 2.68721291e-02 + sys_corr_126: 5.82124099e-03 sys_corr_127: 2.81686847e-02 sys_corr_128: -2.16233976e-02 - sys_corr_129: -7.85012156e-02 - sys_corr_130: 1.80394260e-03 + sys_corr_129: 7.85012156e-02 + sys_corr_130: -1.80394260e-03 sys_corr_131: 2.19148862e-02 - sys_corr_132: 5.50520775e-02 + sys_corr_132: -5.50520775e-02 stat: 0.0 luminosity: 2.77542496e+02 - sys_corr_1: 1.01192154e+02 @@ -3225,9 +3225,9 @@ bins: sys_corr_7: 4.20388230e-01 sys_corr_8: 5.35481781e+01 sys_corr_9: -1.02422712e+02 - sys_corr_10: -3.40961493e+01 + sys_corr_10: 3.40961493e+01 sys_corr_11: 1.03927191e+02 - sys_corr_12: -1.49063743e+02 + sys_corr_12: 1.49063743e+02 sys_corr_13: 1.28673996e+02 sys_corr_14: 5.81152054e+00 sys_corr_15: 3.24781384e+01 @@ -3253,60 +3253,60 @@ bins: sys_corr_35: 1.89251928e+00 sys_corr_36: 1.07178864e+01 sys_corr_37: -1.48841048e+00 - sys_corr_38: 1.60349619e+00 - sys_corr_39: 4.32920495e+00 - sys_corr_40: -3.81457485e-01 - sys_corr_41: 8.11589343e+00 - sys_corr_42: -1.36614484e+00 - sys_corr_43: 5.93594827e+00 + sys_corr_38: -1.60349619e+00 + sys_corr_39: -4.32920495e+00 + sys_corr_40: 3.81457485e-01 + sys_corr_41: -8.11589343e+00 + sys_corr_42: 1.36614484e+00 + sys_corr_43: -5.93594827e+00 sys_corr_44: 1.61969560e+01 - sys_corr_45: 1.05948131e+00 - sys_corr_46: 7.52830181e+00 + sys_corr_45: -1.05948131e+00 + sys_corr_46: -7.52830181e+00 sys_corr_47: 1.47796867e+01 - sys_corr_48: 6.99685645e+00 + sys_corr_48: -6.99685645e+00 sys_corr_49: -2.01432871e+01 sys_corr_50: -3.72448226e+00 sys_corr_51: 5.68693254e+00 - sys_corr_52: -1.11994206e+01 - sys_corr_53: -1.24532810e+01 + sys_corr_52: 1.11994206e+01 + sys_corr_53: 1.24532810e+01 sys_corr_54: -8.23892587e-01 - sys_corr_55: 4.10432163e+01 + sys_corr_55: -4.10432163e+01 sys_corr_56: 2.67812379e+01 - sys_corr_57: 2.46140346e+01 + sys_corr_57: -2.46140346e+01 sys_corr_58: 2.54439971e+01 - sys_corr_59: -3.61089966e+01 + sys_corr_59: 3.61089966e+01 sys_corr_60: 3.37444818e+01 sys_corr_61: -1.64905106e+01 sys_corr_62: 7.20451698e+01 - sys_corr_63: 3.88700474e+01 - sys_corr_64: 7.19829506e+00 + sys_corr_63: -3.88700474e+01 + sys_corr_64: -7.19829506e+00 sys_corr_65: 4.48619543e-01 sys_corr_66: -1.50626128e+02 sys_corr_67: -4.87830724e+01 sys_corr_68: -4.42127794e+00 sys_corr_69: 2.66773782e+01 sys_corr_70: -2.07056000e+01 - sys_corr_71: 5.38824571e+01 - sys_corr_72: -5.57021739e+01 - sys_corr_73: 1.20994539e+01 + sys_corr_71: 1.20994539e+01 + sys_corr_72: 5.57021739e+01 + sys_corr_73: 5.38824571e+01 sys_corr_74: -4.77551099e+01 sys_corr_75: 7.27636550e+00 sys_corr_76: 5.81642017e+00 - sys_corr_77: 2.85810419e+00 - sys_corr_78: 1.91218598e+00 - sys_corr_79: 5.53680694e+00 - sys_corr_80: 1.51278060e+01 + sys_corr_77: -2.85810419e+00 + sys_corr_78: 5.53680694e+00 + sys_corr_79: -1.51278060e+01 + sys_corr_80: -1.91218598e+00 sys_corr_81: -1.78853844e+01 sys_corr_82: 1.03574611e+01 sys_corr_83: -1.69877109e+01 - sys_corr_84: -4.34520554e+00 + sys_corr_84: 4.34520554e+00 sys_corr_85: -1.67451678e+00 sys_corr_86: 2.65526769e+01 sys_corr_87: 2.07698526e+01 sys_corr_88: -4.59845334e+01 sys_corr_89: 4.53512630e+00 sys_corr_90: -3.49807810e+00 - sys_corr_91: -6.89122161e+00 + sys_corr_91: 6.89122161e+00 sys_corr_92: -2.04859606e+01 sys_corr_93: 1.48268877e+00 sys_corr_94: 7.19079944e+00 @@ -3314,40 +3314,40 @@ bins: sys_corr_96: -9.57038819e-01 sys_corr_97: -1.46949015e+00 sys_corr_98: -2.56464743e-01 - sys_corr_99: 2.29130447e-01 - sys_corr_100: -6.18733852e-02 + sys_corr_99: -2.29130447e-01 + sys_corr_100: 6.18733852e-02 sys_corr_101: -1.41551499e-02 - sys_corr_102: -6.56861963e-01 - sys_corr_103: 9.02377958e-01 - sys_corr_104: 1.62867791e+00 - sys_corr_105: 2.75867757e-01 - sys_corr_106: -2.03131547e-01 - sys_corr_107: -2.06897267e-01 + sys_corr_102: 6.56861963e-01 + sys_corr_103: -9.02377958e-01 + sys_corr_104: -1.62867791e+00 + sys_corr_105: -2.75867757e-01 + sys_corr_106: 2.03131547e-01 + sys_corr_107: 2.06897267e-01 sys_corr_108: -3.10729255e-02 sys_corr_109: -1.15360365e-01 sys_corr_110: -2.54612021e-01 - sys_corr_111: -4.23107276e-01 + sys_corr_111: 4.23107276e-01 sys_corr_112: -7.15105431e-02 sys_corr_113: -8.16591862e-02 sys_corr_114: -2.40612331e-04 - sys_corr_115: 4.13634705e-02 + sys_corr_115: -4.13634705e-02 sys_corr_116: 2.88062903e-02 sys_corr_117: -1.71476389e-02 sys_corr_118: -1.06796512e-01 sys_corr_119: -1.87471082e-02 sys_corr_120: -2.15526169e-02 - sys_corr_121: -1.84053936e-02 - sys_corr_122: -3.65997077e-02 - sys_corr_123: 5.11468697e-02 + sys_corr_121: 1.84053936e-02 + sys_corr_122: 5.11468697e-02 + sys_corr_123: -3.65997077e-02 sys_corr_124: -2.21018010e-02 - sys_corr_125: 4.03487016e-02 - sys_corr_126: -2.26375248e-02 + sys_corr_125: -4.03487016e-02 + sys_corr_126: 2.26375248e-02 sys_corr_127: 2.65815598e-02 sys_corr_128: 8.40638608e-02 - sys_corr_129: 4.12929522e-02 - sys_corr_130: -2.26223953e-03 + sys_corr_129: -4.12929522e-02 + sys_corr_130: 2.26223953e-03 sys_corr_131: -1.44011475e-02 - sys_corr_132: 7.84596397e-02 + sys_corr_132: -7.84596397e-02 stat: 0.0 luminosity: 2.42393756e+02 - sys_corr_1: 8.03262016e+01 @@ -3359,9 +3359,9 @@ bins: sys_corr_7: -3.15507165e+01 sys_corr_8: 2.58394646e+01 sys_corr_9: -5.63290509e+01 - sys_corr_10: -2.73658672e+01 + sys_corr_10: 2.73658672e+01 sys_corr_11: 6.45622459e+01 - sys_corr_12: -8.56510828e+01 + sys_corr_12: 8.56510828e+01 sys_corr_13: 8.33703905e+01 sys_corr_14: -6.35797719e+00 sys_corr_15: 2.25004054e+01 @@ -3387,60 +3387,60 @@ bins: sys_corr_35: 5.89813986e+00 sys_corr_36: 1.92345277e+01 sys_corr_37: 5.03149299e+00 - sys_corr_38: 5.54524610e+00 - sys_corr_39: 6.06629174e+00 - sys_corr_40: -1.13754840e+01 - sys_corr_41: 1.06622796e+01 - sys_corr_42: -1.75895962e+00 - sys_corr_43: 5.14404073e+00 + sys_corr_38: -5.54524610e+00 + sys_corr_39: -6.06629174e+00 + sys_corr_40: 1.13754840e+01 + sys_corr_41: -1.06622796e+01 + sys_corr_42: 1.75895962e+00 + sys_corr_43: -5.14404073e+00 sys_corr_44: 4.77424685e+00 - sys_corr_45: 7.53413606e+00 - sys_corr_46: 7.20122932e+00 + sys_corr_45: -7.53413606e+00 + sys_corr_46: -7.20122932e+00 sys_corr_47: -1.93399481e+00 - sys_corr_48: 1.43256867e+01 + sys_corr_48: -1.43256867e+01 sys_corr_49: 8.34538386e-02 sys_corr_50: 2.12360100e+01 sys_corr_51: -1.47001602e+01 - sys_corr_52: 5.70895591e+00 - sys_corr_53: 3.77639145e+00 + sys_corr_52: -5.70895591e+00 + sys_corr_53: -3.77639145e+00 sys_corr_54: -1.66316649e+01 - sys_corr_55: -5.24499029e+01 + sys_corr_55: 5.24499029e+01 sys_corr_56: -3.21675067e+00 - sys_corr_57: 2.50820253e+00 + sys_corr_57: -2.50820253e+00 sys_corr_58: -7.40312265e+00 - sys_corr_59: 1.60408473e+01 + sys_corr_59: -1.60408473e+01 sys_corr_60: -1.10602847e+01 sys_corr_61: 1.11425840e+00 sys_corr_62: -3.40721903e+01 - sys_corr_63: -2.83414228e+01 - sys_corr_64: -1.49112419e+01 + sys_corr_63: 2.83414228e+01 + sys_corr_64: 1.49112419e+01 sys_corr_65: -4.41847421e+00 sys_corr_66: 9.70440887e+01 sys_corr_67: 2.85512689e+01 sys_corr_68: -2.34818543e+00 sys_corr_69: -3.87422342e+01 sys_corr_70: 5.07728402e+00 - sys_corr_71: -7.59680467e+01 - sys_corr_72: 2.75918007e+01 - sys_corr_73: 4.11236777e+01 + sys_corr_71: 4.11236777e+01 + sys_corr_72: -2.75918007e+01 + sys_corr_73: -7.59680467e+01 sys_corr_74: 2.15981273e+01 sys_corr_75: 4.23769520e+01 sys_corr_76: 4.73097116e+01 - sys_corr_77: -1.53654963e+01 - sys_corr_78: 1.89555335e+01 - sys_corr_79: 4.14215496e+00 - sys_corr_80: 6.05715867e+01 + sys_corr_77: 1.53654963e+01 + sys_corr_78: 4.14215496e+00 + sys_corr_79: -6.05715867e+01 + sys_corr_80: -1.89555335e+01 sys_corr_81: -1.62650522e+01 sys_corr_82: 1.42180357e-01 sys_corr_83: -1.07983659e+01 - sys_corr_84: -5.57024556e+00 + sys_corr_84: 5.57024556e+00 sys_corr_85: -3.64643849e+00 sys_corr_86: 8.86547515e+01 sys_corr_87: 8.64906338e+00 sys_corr_88: -6.69854635e+01 sys_corr_89: 2.95562873e+00 sys_corr_90: -6.18794532e+00 - sys_corr_91: -3.73328230e+00 + sys_corr_91: 3.73328230e+00 sys_corr_92: -3.97050542e+01 sys_corr_93: 3.30196546e+00 sys_corr_94: 1.58209985e+01 @@ -3448,40 +3448,40 @@ bins: sys_corr_96: -2.33775068e+00 sys_corr_97: -4.13304507e+00 sys_corr_98: -1.08755778e+00 - sys_corr_99: 7.96839861e-01 - sys_corr_100: 2.89042763e-01 + sys_corr_99: -7.96839861e-01 + sys_corr_100: -2.89042763e-01 sys_corr_101: 1.01428613e-01 - sys_corr_102: -3.78271299e-01 - sys_corr_103: 3.77771301e-01 - sys_corr_104: 4.88817360e+00 - sys_corr_105: -6.64507469e-01 - sys_corr_106: -7.16908666e-01 - sys_corr_107: -9.48100341e-01 + sys_corr_102: 3.78271299e-01 + sys_corr_103: -3.77771301e-01 + sys_corr_104: -4.88817360e+00 + sys_corr_105: 6.64507469e-01 + sys_corr_106: 7.16908666e-01 + sys_corr_107: 9.48100341e-01 sys_corr_108: 1.59806319e-01 sys_corr_109: -5.89957739e-02 sys_corr_110: -3.01261716e-01 - sys_corr_111: -1.06573850e+00 + sys_corr_111: 1.06573850e+00 sys_corr_112: -1.78959295e-01 sys_corr_113: -1.72636086e-01 sys_corr_114: 9.17143794e-04 - sys_corr_115: 1.32894896e-01 + sys_corr_115: -1.32894896e-01 sys_corr_116: 2.80592894e-02 sys_corr_117: -1.59276801e-02 sys_corr_118: -6.17785096e-02 sys_corr_119: -2.42082613e-03 sys_corr_120: -2.18686337e-02 - sys_corr_121: -1.28724423e-02 - sys_corr_122: -3.65900389e-02 - sys_corr_123: 5.57204646e-02 + sys_corr_121: 1.28724423e-02 + sys_corr_122: 5.57204646e-02 + sys_corr_123: -3.65900389e-02 sys_corr_124: -2.23360075e-03 - sys_corr_125: 4.08558777e-02 - sys_corr_126: -1.92817075e-02 + sys_corr_125: -4.08558777e-02 + sys_corr_126: 1.92817075e-02 sys_corr_127: -3.67673687e-01 sys_corr_128: 4.23268053e-01 - sys_corr_129: 3.41266012e-02 - sys_corr_130: 6.56057761e-04 + sys_corr_129: -3.41266012e-02 + sys_corr_130: -6.56057761e-04 sys_corr_131: -2.05921816e-02 - sys_corr_132: -1.74896868e-02 + sys_corr_132: 1.74896868e-02 stat: 0.0 luminosity: 1.84882214e+02 - sys_corr_1: 7.29461481e+01 @@ -3493,9 +3493,9 @@ bins: sys_corr_7: -3.97790606e+01 sys_corr_8: 1.35082301e+01 sys_corr_9: -2.83954505e+01 - sys_corr_10: -2.26804787e+01 + sys_corr_10: 2.26804787e+01 sys_corr_11: 3.63608535e+01 - sys_corr_12: -3.11427796e+01 + sys_corr_12: 3.11427796e+01 sys_corr_13: 4.51296756e+01 sys_corr_14: -9.58205441e+00 sys_corr_15: 1.24739809e+01 @@ -3521,60 +3521,60 @@ bins: sys_corr_35: 3.92610311e+00 sys_corr_36: 2.12819793e+01 sys_corr_37: 4.04509716e+00 - sys_corr_38: 3.67282589e+00 - sys_corr_39: 1.04675137e+01 - sys_corr_40: -1.62695179e+01 - sys_corr_41: 2.42979935e+01 - sys_corr_42: 3.57616423e+00 - sys_corr_43: 1.20842011e+01 + sys_corr_38: -3.67282589e+00 + sys_corr_39: -1.04675137e+01 + sys_corr_40: 1.62695179e+01 + sys_corr_41: -2.42979935e+01 + sys_corr_42: -3.57616423e+00 + sys_corr_43: -1.20842011e+01 sys_corr_44: 2.03309104e+01 - sys_corr_45: 2.78911049e+00 - sys_corr_46: 1.24021204e+01 + sys_corr_45: -2.78911049e+00 + sys_corr_46: -1.24021204e+01 sys_corr_47: 1.64924243e+00 - sys_corr_48: 1.08072439e+00 + sys_corr_48: -1.08072439e+00 sys_corr_49: 2.21479261e+00 sys_corr_50: 4.19824254e+01 sys_corr_51: -1.22879141e+01 - sys_corr_52: 1.58081419e+01 - sys_corr_53: 2.73660525e+01 + sys_corr_52: -1.58081419e+01 + sys_corr_53: -2.73660525e+01 sys_corr_54: -2.87071703e+01 - sys_corr_55: -9.27721934e+01 + sys_corr_55: 9.27721934e+01 sys_corr_56: -6.11240197e+00 - sys_corr_57: 2.24605023e+01 + sys_corr_57: -2.24605023e+01 sys_corr_58: -4.60454001e+01 - sys_corr_59: 2.35584322e+00 + sys_corr_59: -2.35584322e+00 sys_corr_60: -1.27641669e+01 sys_corr_61: -2.38441676e+01 sys_corr_62: -3.43909859e+01 - sys_corr_63: 1.41485185e+01 - sys_corr_64: 6.46539477e+01 + sys_corr_63: -1.41485185e+01 + sys_corr_64: -6.46539477e+01 sys_corr_65: -3.27033221e+00 sys_corr_66: -2.84994888e+01 sys_corr_67: 1.54846332e+01 sys_corr_68: 3.03544436e+01 sys_corr_69: 1.02239759e+01 sys_corr_70: 1.79997880e+01 - sys_corr_71: 6.34744307e+01 - sys_corr_72: 6.33780538e+01 - sys_corr_73: -6.21859802e+01 + sys_corr_71: -6.21859802e+01 + sys_corr_72: -6.33780538e+01 + sys_corr_73: 6.34744307e+01 sys_corr_74: 9.92392691e+01 sys_corr_75: -9.48486460e+00 sys_corr_76: -2.15761215e+01 - sys_corr_77: -4.90106864e-01 - sys_corr_78: -6.01587895e+00 - sys_corr_79: -8.37675891e-02 - sys_corr_80: -2.42274122e+01 + sys_corr_77: 4.90106864e-01 + sys_corr_78: -8.37675891e-02 + sys_corr_79: 2.42274122e+01 + sys_corr_80: 6.01587895e+00 sys_corr_81: 1.74451492e+01 sys_corr_82: -1.43687759e+01 sys_corr_83: 1.09399807e+01 - sys_corr_84: 1.05114107e+01 + sys_corr_84: -1.05114107e+01 sys_corr_85: -9.71273069e+00 sys_corr_86: -4.67883334e+01 sys_corr_87: -2.80290554e+01 sys_corr_88: 6.83771902e+01 sys_corr_89: -4.47190317e+00 sys_corr_90: 7.77922323e+00 - sys_corr_91: 1.57421211e+00 + sys_corr_91: -1.57421211e+00 sys_corr_92: 7.87052325e+00 sys_corr_93: 3.55391849e+00 sys_corr_94: 1.57144316e+01 @@ -3582,40 +3582,40 @@ bins: sys_corr_96: -1.48127999e+00 sys_corr_97: -1.90413434e+00 sys_corr_98: -2.36509901e-01 - sys_corr_99: -1.14015299e-02 - sys_corr_100: -5.04351629e-02 + sys_corr_99: 1.14015299e-02 + sys_corr_100: 5.04351629e-02 sys_corr_101: -8.39054491e-02 - sys_corr_102: -1.32826876e-01 - sys_corr_103: -2.42167589e+00 - sys_corr_104: 3.46310746e+00 - sys_corr_105: -2.11201221e+00 - sys_corr_106: 9.83626947e-02 - sys_corr_107: -1.53702132e-01 + sys_corr_102: 1.32826876e-01 + sys_corr_103: 2.42167589e+00 + sys_corr_104: -3.46310746e+00 + sys_corr_105: 2.11201221e+00 + sys_corr_106: -9.83626947e-02 + sys_corr_107: 1.53702132e-01 sys_corr_108: 1.27195690e-01 sys_corr_109: -3.21852530e-01 sys_corr_110: -1.44146642e-01 - sys_corr_111: 1.00147937e-01 + sys_corr_111: -1.00147937e-01 sys_corr_112: -1.32379009e-01 sys_corr_113: -2.42415154e-01 sys_corr_114: -6.35965283e-03 - sys_corr_115: -2.35417420e-01 + sys_corr_115: 2.35417420e-01 sys_corr_116: -5.86274216e-02 sys_corr_117: 3.06194481e-02 sys_corr_118: 1.71120740e-01 sys_corr_119: -2.15882688e-03 sys_corr_120: 3.78311915e-02 - sys_corr_121: 1.14080063e-02 - sys_corr_122: 2.63591007e-02 - sys_corr_123: -5.71152746e-02 + sys_corr_121: -1.14080063e-02 + sys_corr_122: -5.71152746e-02 + sys_corr_123: 2.63591007e-02 sys_corr_124: 1.59152420e-02 - sys_corr_125: -5.96793167e-02 - sys_corr_126: 5.96293918e-03 + sys_corr_125: 5.96793167e-02 + sys_corr_126: -5.96293918e-03 sys_corr_127: -3.59616877e-01 sys_corr_128: 1.27386788e-01 - sys_corr_129: -2.41618192e-01 - sys_corr_130: 1.89768354e-02 + sys_corr_129: 2.41618192e-01 + sys_corr_130: -1.89768354e-02 sys_corr_131: 3.20924179e-02 - sys_corr_132: -3.26562157e-02 + sys_corr_132: 3.26562157e-02 stat: 0.0 luminosity: 1.20137182e+02 - sys_corr_1: 2.50011420e+01 @@ -3627,9 +3627,9 @@ bins: sys_corr_7: -1.23284160e+01 sys_corr_8: 6.84144124e+00 sys_corr_9: -5.25334465e+00 - sys_corr_10: -1.13095409e+01 + sys_corr_10: 1.13095409e+01 sys_corr_11: 1.55670602e+01 - sys_corr_12: -1.36622071e+01 + sys_corr_12: 1.36622071e+01 sys_corr_13: 1.36368323e+01 sys_corr_14: -3.76945997e+00 sys_corr_15: 3.81029886e+00 @@ -3655,60 +3655,60 @@ bins: sys_corr_35: 3.36504180e+00 sys_corr_36: 9.22833765e+00 sys_corr_37: 4.28789678e+00 - sys_corr_38: 3.83645874e+00 - sys_corr_39: 1.16600550e+00 - sys_corr_40: -8.30584954e+00 - sys_corr_41: 8.07595792e+00 - sys_corr_42: -1.25424682e+00 - sys_corr_43: 7.49478605e+00 + sys_corr_38: -3.83645874e+00 + sys_corr_39: -1.16600550e+00 + sys_corr_40: 8.30584954e+00 + sys_corr_41: -8.07595792e+00 + sys_corr_42: 1.25424682e+00 + sys_corr_43: -7.49478605e+00 sys_corr_44: 2.83807238e-01 - sys_corr_45: 1.52519160e+00 - sys_corr_46: 4.30113417e+00 + sys_corr_45: -1.52519160e+00 + sys_corr_46: -4.30113417e+00 sys_corr_47: 1.94758112e+00 - sys_corr_48: 1.16328630e+00 + sys_corr_48: -1.16328630e+00 sys_corr_49: 2.57888767e+00 sys_corr_50: 1.61907916e+01 sys_corr_51: -7.00116702e+00 - sys_corr_52: 7.46834309e+00 - sys_corr_53: 3.22920122e+00 + sys_corr_52: -7.46834309e+00 + sys_corr_53: -3.22920122e+00 sys_corr_54: -6.96639486e+00 - sys_corr_55: -1.97037754e+01 + sys_corr_55: 1.97037754e+01 sys_corr_56: -3.41618033e-01 - sys_corr_57: 1.56969642e+00 + sys_corr_57: -1.56969642e+00 sys_corr_58: -6.52992323e+00 - sys_corr_59: 1.05931938e+00 + sys_corr_59: -1.05931938e+00 sys_corr_60: -3.42376502e+00 sys_corr_61: -5.21650727e+00 sys_corr_62: -7.91582151e+00 - sys_corr_63: -7.94326732e-01 - sys_corr_64: 8.42770221e+00 + sys_corr_63: 7.94326732e-01 + sys_corr_64: -8.42770221e+00 sys_corr_65: -2.34509754e+00 sys_corr_66: 4.29989848e+00 sys_corr_67: 1.28647506e+00 sys_corr_68: 1.58975296e-01 sys_corr_69: -2.52526926e+00 sys_corr_70: 3.61982775e+00 - sys_corr_71: 2.51982479e+00 - sys_corr_72: 1.12554395e+01 - sys_corr_73: -1.19191441e+00 + sys_corr_71: -1.19191441e+00 + sys_corr_72: -1.12554395e+01 + sys_corr_73: 2.51982479e+00 sys_corr_74: 7.84977672e+00 sys_corr_75: 6.26608316e+00 sys_corr_76: 4.35453742e+00 - sys_corr_77: 7.65634365e+00 - sys_corr_78: -3.06216279e-01 - sys_corr_79: 1.88274452e+00 - sys_corr_80: 5.19775248e+00 + sys_corr_77: -7.65634365e+00 + sys_corr_78: 1.88274452e+00 + sys_corr_79: -5.19775248e+00 + sys_corr_80: 3.06216279e-01 sys_corr_81: -5.60240595e+00 sys_corr_82: -2.70465853e-01 sys_corr_83: -2.85190501e+00 - sys_corr_84: -9.84011165e+00 + sys_corr_84: 9.84011165e+00 sys_corr_85: 8.24737941e+00 sys_corr_86: 7.60064866e+00 sys_corr_87: 6.64200060e+00 sys_corr_88: -4.70635588e+00 sys_corr_89: 1.62744038e+00 sys_corr_90: -1.08274577e+01 - sys_corr_91: -4.20481928e+00 + sys_corr_91: 4.20481928e+00 sys_corr_92: -4.12858087e+00 sys_corr_93: -2.05567159e+01 sys_corr_94: -9.58496258e+01 @@ -3716,40 +3716,40 @@ bins: sys_corr_96: 1.33120754e+01 sys_corr_97: 3.32511368e+01 sys_corr_98: 6.08136113e+00 - sys_corr_99: -7.10177623e+00 - sys_corr_100: -5.30775184e+00 + sys_corr_99: 7.10177623e+00 + sys_corr_100: 5.30775184e+00 sys_corr_101: -4.29200052e+00 - sys_corr_102: -6.40424462e+00 - sys_corr_103: 5.09524180e+00 - sys_corr_104: -6.72703259e+00 - sys_corr_105: -3.19328757e+00 - sys_corr_106: 4.45126462e+00 - sys_corr_107: 4.13877087e+00 + sys_corr_102: 6.40424462e+00 + sys_corr_103: -5.09524180e+00 + sys_corr_104: 6.72703259e+00 + sys_corr_105: 3.19328757e+00 + sys_corr_106: -4.45126462e+00 + sys_corr_107: -4.13877087e+00 sys_corr_108: 5.80766601e-02 sys_corr_109: 8.66925392e-02 sys_corr_110: 1.83713286e+00 - sys_corr_111: 5.26151719e+00 + sys_corr_111: -5.26151719e+00 sys_corr_112: -4.25332090e-02 sys_corr_113: 2.85098504e-01 sys_corr_114: -4.14708970e-03 - sys_corr_115: 3.00334148e-01 + sys_corr_115: -3.00334148e-01 sys_corr_116: -1.11159562e-01 sys_corr_117: 7.92641108e-02 sys_corr_118: -1.28180836e-01 sys_corr_119: 1.88348759e-02 sys_corr_120: 7.29909850e-02 - sys_corr_121: 2.33915429e-02 - sys_corr_122: 1.78234012e-02 - sys_corr_123: -2.50037779e-02 + sys_corr_121: -2.33915429e-02 + sys_corr_122: -2.50037779e-02 + sys_corr_123: 1.78234012e-02 sys_corr_124: 1.88913475e-01 - sys_corr_125: -3.34768838e-02 - sys_corr_126: 3.37544249e-03 + sys_corr_125: 3.34768838e-02 + sys_corr_126: -3.37544249e-03 sys_corr_127: -9.62395408e-01 sys_corr_128: 1.42952692e+00 - sys_corr_129: -1.38642726e-01 - sys_corr_130: 1.58893093e-02 + sys_corr_129: 1.38642726e-01 + sys_corr_130: -1.58893093e-02 sys_corr_131: 4.39562357e-02 - sys_corr_132: 1.16719010e-01 + sys_corr_132: -1.16719010e-01 stat: 0.0 luminosity: 4.54939760e+01 - sys_corr_1: 3.50446621e+02 @@ -3761,9 +3761,9 @@ bins: sys_corr_7: 1.63524779e+01 sys_corr_8: 4.38545750e+00 sys_corr_9: -3.20869391e+00 - sys_corr_10: -2.13165978e+00 + sys_corr_10: 2.13165978e+00 sys_corr_11: 5.80561219e+00 - sys_corr_12: 5.12686410e+01 + sys_corr_12: -5.12686410e+01 sys_corr_13: -4.90158629e+01 sys_corr_14: -1.24171706e+01 sys_corr_15: -2.77694180e+00 @@ -3789,60 +3789,60 @@ bins: sys_corr_35: 1.35415878e+02 sys_corr_36: 2.16678546e+02 sys_corr_37: 3.49362415e+00 - sys_corr_38: -5.78348645e+01 - sys_corr_39: 9.76642388e+01 - sys_corr_40: 1.15381986e+00 - sys_corr_41: -6.70650526e-01 - sys_corr_42: 1.65219832e+01 - sys_corr_43: -1.53944086e+01 + sys_corr_38: 5.78348645e+01 + sys_corr_39: -9.76642388e+01 + sys_corr_40: -1.15381986e+00 + sys_corr_41: 6.70650526e-01 + sys_corr_42: -1.65219832e+01 + sys_corr_43: 1.53944086e+01 sys_corr_44: 2.88835863e+00 - sys_corr_45: -1.98677368e+01 - sys_corr_46: 1.07220269e+01 + sys_corr_45: 1.98677368e+01 + sys_corr_46: -1.07220269e+01 sys_corr_47: 1.91368937e+01 - sys_corr_48: 2.83389360e+01 + sys_corr_48: -2.83389360e+01 sys_corr_49: -3.95475375e+01 sys_corr_50: 4.52396098e+01 sys_corr_51: -2.21310540e+01 - sys_corr_52: 1.29587287e-01 - sys_corr_53: -1.13306351e+01 + sys_corr_52: -1.29587287e-01 + sys_corr_53: 1.13306351e+01 sys_corr_54: -6.83046017e+00 - sys_corr_55: -1.03905602e+01 + sys_corr_55: 1.03905602e+01 sys_corr_56: -1.14023053e+00 - sys_corr_57: 1.21278120e+01 + sys_corr_57: -1.21278120e+01 sys_corr_58: 1.11533572e+01 - sys_corr_59: 7.72077696e-01 + sys_corr_59: -7.72077696e-01 sys_corr_60: 1.09096682e+01 sys_corr_61: -9.43783961e-01 sys_corr_62: 9.88599530e+00 - sys_corr_63: -1.87241133e+00 - sys_corr_64: -5.76878754e+00 + sys_corr_63: 1.87241133e+00 + sys_corr_64: 5.76878754e+00 sys_corr_65: -7.31307852e-01 sys_corr_66: 7.19057565e+00 sys_corr_67: 2.20463258e+00 sys_corr_68: -1.34881397e+01 sys_corr_69: -5.23288196e+00 sys_corr_70: 3.43500152e+00 - sys_corr_71: 1.35252625e+01 - sys_corr_72: -6.38352971e-01 - sys_corr_73: -8.84590622e+00 + sys_corr_71: -8.84590622e+00 + sys_corr_72: 6.38352971e-01 + sys_corr_73: 1.35252625e+01 sys_corr_74: -5.21513461e+00 sys_corr_75: -5.38276015e-01 sys_corr_76: 4.68947704e+00 - sys_corr_77: 1.34268232e+00 - sys_corr_78: 3.06348088e+00 - sys_corr_79: 7.26909085e+00 - sys_corr_80: 5.78379544e-01 + sys_corr_77: -1.34268232e+00 + sys_corr_78: 7.26909085e+00 + sys_corr_79: -5.78379544e-01 + sys_corr_80: -3.06348088e+00 sys_corr_81: -5.14078107e+00 sys_corr_82: 4.79542114e+00 sys_corr_83: -5.53612016e+00 - sys_corr_84: 5.41561445e-01 + sys_corr_84: -5.41561445e-01 sys_corr_85: -1.96929456e+00 sys_corr_86: 2.11536824e+00 sys_corr_87: -1.10211036e+01 sys_corr_88: -1.10539964e+00 sys_corr_89: 6.54072151e-01 sys_corr_90: 7.82280256e-01 - sys_corr_91: 4.70248238e-01 + sys_corr_91: -4.70248238e-01 sys_corr_92: 3.51891722e-01 sys_corr_93: -1.55806904e-02 sys_corr_94: -4.94833362e-01 @@ -3850,40 +3850,40 @@ bins: sys_corr_96: -8.72141367e-03 sys_corr_97: -1.27328072e-01 sys_corr_98: 3.22078904e-01 - sys_corr_99: 5.54325209e-01 - sys_corr_100: 1.60947977e-01 + sys_corr_99: -5.54325209e-01 + sys_corr_100: -1.60947977e-01 sys_corr_101: -6.00059538e-01 - sys_corr_102: -1.18599026e+00 - sys_corr_103: 3.24740140e+00 - sys_corr_104: 1.35309315e+00 - sys_corr_105: 1.05333456e+00 - sys_corr_106: 3.31554409e-01 - sys_corr_107: -3.28782362e-01 + sys_corr_102: 1.18599026e+00 + sys_corr_103: -3.24740140e+00 + sys_corr_104: -1.35309315e+00 + sys_corr_105: -1.05333456e+00 + sys_corr_106: -3.31554409e-01 + sys_corr_107: 3.28782362e-01 sys_corr_108: -5.45373723e-01 sys_corr_109: -2.84461221e-02 sys_corr_110: -4.69701544e-02 - sys_corr_111: -3.51176330e-01 + sys_corr_111: 3.51176330e-01 sys_corr_112: 2.24008204e-01 sys_corr_113: 2.00863424e-01 sys_corr_114: -7.41632840e-04 - sys_corr_115: -3.56515899e-02 + sys_corr_115: 3.56515899e-02 sys_corr_116: -9.38293248e-04 sys_corr_117: 2.25481013e-02 sys_corr_118: 6.92282987e-02 sys_corr_119: 4.84265596e-03 sys_corr_120: 1.64726037e-02 - sys_corr_121: 1.21545676e-03 - sys_corr_122: 3.33271222e-02 - sys_corr_123: -7.10771315e-02 + sys_corr_121: -1.21545676e-03 + sys_corr_122: -7.10771315e-02 + sys_corr_123: 3.33271222e-02 sys_corr_124: -5.24823424e-02 - sys_corr_125: -4.54126054e-02 - sys_corr_126: 1.72325220e-02 + sys_corr_125: 4.54126054e-02 + sys_corr_126: -1.72325220e-02 sys_corr_127: -2.24396412e-01 sys_corr_128: 8.14098853e-02 - sys_corr_129: -4.57040248e-03 - sys_corr_130: 3.96328441e-03 + sys_corr_129: 4.57040248e-03 + sys_corr_130: -3.96328441e-03 sys_corr_131: 2.37164627e-02 - sys_corr_132: -3.96024766e-02 + sys_corr_132: 3.96024766e-02 stat: 0.0 luminosity: 5.91248768e+02 - sys_corr_1: 3.35069894e+02 @@ -3895,9 +3895,9 @@ bins: sys_corr_7: 2.11409836e+01 sys_corr_8: 1.52677849e+01 sys_corr_9: -5.05463786e-02 - sys_corr_10: -1.74554150e+01 + sys_corr_10: 1.74554150e+01 sys_corr_11: 6.03660865e+00 - sys_corr_12: 9.31653346e+00 + sys_corr_12: -9.31653346e+00 sys_corr_13: -3.04547328e+01 sys_corr_14: -8.24660716e+00 sys_corr_15: -1.52454758e+00 @@ -3923,60 +3923,60 @@ bins: sys_corr_35: 9.80203953e+01 sys_corr_36: -1.68314644e+02 sys_corr_37: -1.71433613e+02 - sys_corr_38: 9.40662168e+01 - sys_corr_39: -1.25231007e+02 - sys_corr_40: -3.73226343e+01 - sys_corr_41: 7.47093742e+01 - sys_corr_42: -2.19982452e+01 - sys_corr_43: 6.42642026e+01 + sys_corr_38: -9.40662168e+01 + sys_corr_39: 1.25231007e+02 + sys_corr_40: 3.73226343e+01 + sys_corr_41: -7.47093742e+01 + sys_corr_42: 2.19982452e+01 + sys_corr_43: -6.42642026e+01 sys_corr_44: -6.94989097e+01 - sys_corr_45: -3.40780922e+01 - sys_corr_46: 6.55742611e+00 + sys_corr_45: 3.40780922e+01 + sys_corr_46: -6.55742611e+00 sys_corr_47: 4.12851608e+01 - sys_corr_48: 3.61456419e+01 + sys_corr_48: -3.61456419e+01 sys_corr_49: -5.44321293e+00 sys_corr_50: 5.13436125e+01 sys_corr_51: 3.96388422e+00 - sys_corr_52: -1.00328486e+01 - sys_corr_53: -3.69543926e+00 + sys_corr_52: 1.00328486e+01 + sys_corr_53: 3.69543926e+00 sys_corr_54: -1.11897554e+01 - sys_corr_55: 3.48603340e-01 + sys_corr_55: -3.48603340e-01 sys_corr_56: 1.41662328e+01 - sys_corr_57: 8.03927086e+00 + sys_corr_57: -8.03927086e+00 sys_corr_58: 6.82276978e+00 - sys_corr_59: 6.55216048e+00 + sys_corr_59: -6.55216048e+00 sys_corr_60: -3.81749699e+00 sys_corr_61: 1.70776510e+00 sys_corr_62: 1.32853507e+01 - sys_corr_63: 9.24071513e-01 - sys_corr_64: 7.08445506e+00 + sys_corr_63: -9.24071513e-01 + sys_corr_64: -7.08445506e+00 sys_corr_65: -1.22520959e+01 sys_corr_66: 1.95688896e+00 sys_corr_67: -3.09618629e+00 sys_corr_68: -7.55662554e+00 sys_corr_69: -9.23890950e-01 sys_corr_70: -2.58824404e+00 - sys_corr_71: 2.06195474e+00 - sys_corr_72: 1.30811705e-01 - sys_corr_73: 8.03053571e+00 + sys_corr_71: 8.03053571e+00 + sys_corr_72: -1.30811705e-01 + sys_corr_73: 2.06195474e+00 sys_corr_74: 9.61162720e+00 sys_corr_75: -1.39575391e+01 sys_corr_76: 2.42875703e+00 - sys_corr_77: -1.07644961e+01 - sys_corr_78: 2.81043171e+00 - sys_corr_79: -7.14201131e+00 - sys_corr_80: -4.86163345e-01 + sys_corr_77: 1.07644961e+01 + sys_corr_78: -7.14201131e+00 + sys_corr_79: 4.86163345e-01 + sys_corr_80: -2.81043171e+00 sys_corr_81: 1.06897931e+01 sys_corr_82: -1.16342073e+01 sys_corr_83: 8.00902566e+00 - sys_corr_84: -1.12346918e+00 + sys_corr_84: 1.12346918e+00 sys_corr_85: -1.00043850e+00 sys_corr_86: 3.04882414e+00 sys_corr_87: 2.45013608e-01 sys_corr_88: -2.84004114e+00 sys_corr_89: 1.00011245e+00 sys_corr_90: 1.34305437e+00 - sys_corr_91: 6.03321431e-01 + sys_corr_91: -6.03321431e-01 sys_corr_92: 9.35312595e-01 sys_corr_93: -8.73106393e-02 sys_corr_94: -6.12776853e-01 @@ -3984,40 +3984,40 @@ bins: sys_corr_96: -9.47734705e-02 sys_corr_97: -3.16179114e-01 sys_corr_98: -4.26013351e-02 - sys_corr_99: -5.07967102e-01 - sys_corr_100: -2.39837339e-02 + sys_corr_99: 5.07967102e-01 + sys_corr_100: 2.39837339e-02 sys_corr_101: -1.71549696e-01 - sys_corr_102: 2.57746852e-01 - sys_corr_103: -3.77515081e-01 - sys_corr_104: 2.37480854e-01 - sys_corr_105: -9.00481649e-01 - sys_corr_106: -5.64872245e-01 - sys_corr_107: -4.36722494e-01 + sys_corr_102: -2.57746852e-01 + sys_corr_103: 3.77515081e-01 + sys_corr_104: -2.37480854e-01 + sys_corr_105: 9.00481649e-01 + sys_corr_106: 5.64872245e-01 + sys_corr_107: 4.36722494e-01 sys_corr_108: -1.53828679e-01 sys_corr_109: 6.77159865e-02 sys_corr_110: -5.07038714e-01 - sys_corr_111: -1.05319175e-01 + sys_corr_111: 1.05319175e-01 sys_corr_112: -4.42916412e-03 sys_corr_113: 3.92541465e-02 sys_corr_114: -2.91216377e-03 - sys_corr_115: -6.72685025e-02 + sys_corr_115: 6.72685025e-02 sys_corr_116: -3.39571764e-02 sys_corr_117: 2.87689774e-02 sys_corr_118: -3.46384612e-02 sys_corr_119: -2.05549149e-03 sys_corr_120: 6.02169589e-03 - sys_corr_121: -2.79800586e-03 - sys_corr_122: -2.22352094e-03 - sys_corr_123: -5.71645922e-03 + sys_corr_121: 2.79800586e-03 + sys_corr_122: -5.71645922e-03 + sys_corr_123: -2.22352094e-03 sys_corr_124: 2.15572373e-02 - sys_corr_125: -8.73928700e-03 - sys_corr_126: -1.15313038e-02 + sys_corr_125: 8.73928700e-03 + sys_corr_126: 1.15313038e-02 sys_corr_127: -3.49376005e-01 sys_corr_128: 2.99798092e-01 - sys_corr_129: -9.18796009e-02 - sys_corr_130: 1.83397875e-02 + sys_corr_129: 9.18796009e-02 + sys_corr_130: -1.83397875e-02 sys_corr_131: 1.25846557e-02 - sys_corr_132: 4.75730503e-02 + sys_corr_132: -4.75730503e-02 stat: 0.0 luminosity: 5.63851222e+02 - sys_corr_1: 3.30507919e+02 @@ -4029,9 +4029,9 @@ bins: sys_corr_7: 2.97487309e+01 sys_corr_8: 2.14659534e+01 sys_corr_9: -1.56086601e+01 - sys_corr_10: -1.02700970e+01 + sys_corr_10: 1.02700970e+01 sys_corr_11: 2.41407547e+01 - sys_corr_12: 1.38685910e+01 + sys_corr_12: -1.38685910e+01 sys_corr_13: -2.17498064e+01 sys_corr_14: -4.33764077e+00 sys_corr_15: -2.28598638e+00 @@ -4057,60 +4057,60 @@ bins: sys_corr_35: -3.40364662e+02 sys_corr_36: 7.02957814e+01 sys_corr_37: -4.37116578e+00 - sys_corr_38: 4.13264378e+01 - sys_corr_39: 1.89035366e+01 - sys_corr_40: -1.64840840e+01 - sys_corr_41: 1.45192611e+01 - sys_corr_42: 1.03060525e+01 - sys_corr_43: 1.23663851e+01 + sys_corr_38: -4.13264378e+01 + sys_corr_39: -1.89035366e+01 + sys_corr_40: 1.64840840e+01 + sys_corr_41: -1.45192611e+01 + sys_corr_42: -1.03060525e+01 + sys_corr_43: -1.23663851e+01 sys_corr_44: -1.65345973e+00 - sys_corr_45: 4.02168009e+01 - sys_corr_46: 3.24854650e+01 + sys_corr_45: -4.02168009e+01 + sys_corr_46: -3.24854650e+01 sys_corr_47: 2.43289781e+01 - sys_corr_48: 6.95681767e+00 + sys_corr_48: -6.95681767e+00 sys_corr_49: -9.34844687e+00 sys_corr_50: 2.90743201e+01 sys_corr_51: 1.28600517e+01 - sys_corr_52: -5.92393083e-01 - sys_corr_53: -1.33516692e+01 + sys_corr_52: 5.92393083e-01 + sys_corr_53: 1.33516692e+01 sys_corr_54: -1.37191844e+01 - sys_corr_55: 6.09501207e-01 + sys_corr_55: -6.09501207e-01 sys_corr_56: -1.48351055e+00 - sys_corr_57: 1.57026351e+01 + sys_corr_57: -1.57026351e+01 sys_corr_58: 4.29050268e+00 - sys_corr_59: 7.85938305e+00 + sys_corr_59: -7.85938305e+00 sys_corr_60: 2.34533359e+00 sys_corr_61: -5.87867913e+00 sys_corr_62: -2.01627407e+00 - sys_corr_63: -8.52668134e+00 - sys_corr_64: 4.04830913e+00 + sys_corr_63: 8.52668134e+00 + sys_corr_64: -4.04830913e+00 sys_corr_65: 1.12496943e+00 sys_corr_66: 1.84456395e+00 sys_corr_67: -2.20635849e+00 sys_corr_68: 1.21101578e+00 sys_corr_69: -6.70843586e+00 sys_corr_70: 1.94105410e+00 - sys_corr_71: 5.98775379e+00 - sys_corr_72: 1.04135813e+00 - sys_corr_73: -4.27516795e+00 + sys_corr_71: -4.27516795e+00 + sys_corr_72: -1.04135813e+00 + sys_corr_73: 5.98775379e+00 sys_corr_74: -3.35883720e-01 sys_corr_75: 2.49594187e+00 sys_corr_76: -9.85820225e-02 - sys_corr_77: 2.99876484e+00 - sys_corr_78: -2.23901426e+00 - sys_corr_79: -1.07403792e+00 - sys_corr_80: 1.24800385e+00 + sys_corr_77: -2.99876484e+00 + sys_corr_78: -1.07403792e+00 + sys_corr_79: -1.24800385e+00 + sys_corr_80: 2.23901426e+00 sys_corr_81: -7.25508650e+00 sys_corr_82: 4.29194577e+00 sys_corr_83: -2.87688564e-01 - sys_corr_84: 4.71667754e-01 + sys_corr_84: -4.71667754e-01 sys_corr_85: 1.23776367e+00 sys_corr_86: -2.64402214e+00 sys_corr_87: 1.22921943e+01 sys_corr_88: 1.48197990e+00 sys_corr_89: -2.23254379e-01 sys_corr_90: -1.01865048e+00 - sys_corr_91: -4.17975045e-01 + sys_corr_91: 4.17975045e-01 sys_corr_92: -3.73298990e+00 sys_corr_93: 1.62534380e-02 sys_corr_94: 2.32606481e-01 @@ -4118,40 +4118,40 @@ bins: sys_corr_96: -5.36282083e-02 sys_corr_97: -1.20605385e-01 sys_corr_98: -7.04644522e-02 - sys_corr_99: -1.17661778e-01 - sys_corr_100: 3.51842461e-01 + sys_corr_99: 1.17661778e-01 + sys_corr_100: -3.51842461e-01 sys_corr_101: -1.40220244e-01 - sys_corr_102: 2.02044295e-01 - sys_corr_103: -1.61766131e+00 - sys_corr_104: -2.57853752e-01 - sys_corr_105: -1.02898260e+00 - sys_corr_106: 1.69221432e-01 - sys_corr_107: -5.43330220e-01 + sys_corr_102: -2.02044295e-01 + sys_corr_103: 1.61766131e+00 + sys_corr_104: 2.57853752e-01 + sys_corr_105: 1.02898260e+00 + sys_corr_106: -1.69221432e-01 + sys_corr_107: 5.43330220e-01 sys_corr_108: 3.01561502e-02 sys_corr_109: -2.06547888e-03 sys_corr_110: -3.95796425e-01 - sys_corr_111: 7.73310618e-02 + sys_corr_111: -7.73310618e-02 sys_corr_112: 2.54067874e-02 sys_corr_113: -2.84848429e-03 sys_corr_114: -9.96605965e-04 - sys_corr_115: -4.81134708e-02 + sys_corr_115: 4.81134708e-02 sys_corr_116: -3.71226071e-02 sys_corr_117: 2.79384129e-02 sys_corr_118: 1.47863426e-02 sys_corr_119: 3.16201580e-03 sys_corr_120: 1.59382241e-02 - sys_corr_121: 1.23221357e-03 - sys_corr_122: 7.66240054e-03 - sys_corr_123: -1.73905856e-02 + sys_corr_121: -1.23221357e-03 + sys_corr_122: -1.73905856e-02 + sys_corr_123: 7.66240054e-03 sys_corr_124: 3.91730825e-02 - sys_corr_125: -2.21237041e-02 - sys_corr_126: -1.38659560e-02 + sys_corr_125: 2.21237041e-02 + sys_corr_126: 1.38659560e-02 sys_corr_127: -9.93663828e-02 sys_corr_128: 2.45010029e-02 - sys_corr_129: 7.49713273e-02 - sys_corr_130: 2.55816629e-02 + sys_corr_129: -7.49713273e-02 + sys_corr_130: -2.55816629e-02 sys_corr_131: 1.36224955e-02 - sys_corr_132: 5.66403399e-02 + sys_corr_132: -5.66403399e-02 stat: 0.0 luminosity: 5.69413328e+02 - sys_corr_1: 3.08146586e+02 @@ -4163,9 +4163,9 @@ bins: sys_corr_7: 3.12806190e+01 sys_corr_8: 2.32178676e+00 sys_corr_9: 5.60575206e+00 - sys_corr_10: 2.80478588e+00 + sys_corr_10: -2.80478588e+00 sys_corr_11: -3.99293495e+00 - sys_corr_12: -4.12884122e+00 + sys_corr_12: 4.12884122e+00 sys_corr_13: -1.35976414e+01 sys_corr_14: -3.68107798e+01 sys_corr_15: 5.08530526e+00 @@ -4191,60 +4191,60 @@ bins: sys_corr_35: 5.75025266e+01 sys_corr_36: -2.20425809e+01 sys_corr_37: 5.88919956e+01 - sys_corr_38: -1.22376081e+01 - sys_corr_39: -3.62609426e-01 - sys_corr_40: 2.14124392e+01 - sys_corr_41: 5.79206982e+00 - sys_corr_42: 3.40930912e+01 - sys_corr_43: -1.87544625e+00 + sys_corr_38: 1.22376081e+01 + sys_corr_39: 3.62609426e-01 + sys_corr_40: -2.14124392e+01 + sys_corr_41: -5.79206982e+00 + sys_corr_42: -3.40930912e+01 + sys_corr_43: 1.87544625e+00 sys_corr_44: 6.48614917e+00 - sys_corr_45: -4.98387965e+00 - sys_corr_46: 1.89808933e-01 + sys_corr_45: 4.98387965e+00 + sys_corr_46: -1.89808933e-01 sys_corr_47: -4.68699658e+00 - sys_corr_48: 1.54200376e+01 + sys_corr_48: -1.54200376e+01 sys_corr_49: -2.58048936e+01 sys_corr_50: 2.10410318e+01 sys_corr_51: -8.28524764e-01 - sys_corr_52: -9.95103746e+00 - sys_corr_53: 5.94290042e+00 + sys_corr_52: 9.95103746e+00 + sys_corr_53: -5.94290042e+00 sys_corr_54: 1.04246788e+01 - sys_corr_55: -3.09343565e+00 + sys_corr_55: 3.09343565e+00 sys_corr_56: -8.21063147e+00 - sys_corr_57: 8.60621893e-01 + sys_corr_57: -8.60621893e-01 sys_corr_58: -4.50369292e+00 - sys_corr_59: -1.12856522e+01 + sys_corr_59: 1.12856522e+01 sys_corr_60: -6.91446373e-01 sys_corr_61: 5.71667733e+00 sys_corr_62: -1.13337481e+00 - sys_corr_63: 2.96691679e+00 - sys_corr_64: -3.88028979e+00 + sys_corr_63: -2.96691679e+00 + sys_corr_64: 3.88028979e+00 sys_corr_65: -6.71698095e+00 sys_corr_66: -9.01836209e-01 sys_corr_67: -5.08443045e-01 sys_corr_68: 9.04049406e-01 sys_corr_69: -1.89181702e+00 sys_corr_70: -1.44360011e+00 - sys_corr_71: 3.96373895e+00 - sys_corr_72: -2.94598660e+00 - sys_corr_73: 2.65617875e+00 + sys_corr_71: 2.65617875e+00 + sys_corr_72: 2.94598660e+00 + sys_corr_73: 3.96373895e+00 sys_corr_74: -2.87106835e+00 sys_corr_75: 4.65271141e+00 sys_corr_76: 1.09321593e+00 - sys_corr_77: -5.58078292e+00 - sys_corr_78: -1.59118082e+00 - sys_corr_79: -2.56703589e+00 - sys_corr_80: 1.47964328e+00 + sys_corr_77: 5.58078292e+00 + sys_corr_78: -2.56703589e+00 + sys_corr_79: -1.47964328e+00 + sys_corr_80: 1.59118082e+00 sys_corr_81: 4.88136552e+00 sys_corr_82: 3.22225945e-01 sys_corr_83: 2.17166210e+00 - sys_corr_84: -1.51141186e+00 + sys_corr_84: 1.51141186e+00 sys_corr_85: -2.82645563e-01 sys_corr_86: -4.21807337e+00 sys_corr_87: 2.31727269e+00 sys_corr_88: 1.60887298e+00 sys_corr_89: 4.80477709e-01 sys_corr_90: -1.60347119e+00 - sys_corr_91: -3.74214294e-01 + sys_corr_91: 3.74214294e-01 sys_corr_92: -5.72465912e+00 sys_corr_93: 3.21517538e-02 sys_corr_94: 1.71063486e-01 @@ -4252,40 +4252,40 @@ bins: sys_corr_96: -1.37344792e-01 sys_corr_97: -9.54976599e-01 sys_corr_98: -4.33052892e-01 - sys_corr_99: -1.31769478e-01 - sys_corr_100: -1.68450669e-01 + sys_corr_99: 1.31769478e-01 + sys_corr_100: 1.68450669e-01 sys_corr_101: 2.88383284e-01 - sys_corr_102: -3.55011713e-01 - sys_corr_103: 2.43465918e+00 - sys_corr_104: 5.39075111e-01 - sys_corr_105: 8.16940054e-01 - sys_corr_106: 9.70301383e-03 - sys_corr_107: -3.21324044e-01 + sys_corr_102: 3.55011713e-01 + sys_corr_103: -2.43465918e+00 + sys_corr_104: -5.39075111e-01 + sys_corr_105: -8.16940054e-01 + sys_corr_106: -9.70301383e-03 + sys_corr_107: 3.21324044e-01 sys_corr_108: -5.30918430e-03 sys_corr_109: -1.22519875e-01 sys_corr_110: 2.76859148e-03 - sys_corr_111: -2.39177625e-01 + sys_corr_111: 2.39177625e-01 sys_corr_112: -1.98634015e-02 sys_corr_113: 7.98658551e-02 sys_corr_114: -1.69846232e-03 - sys_corr_115: -1.04834317e-01 + sys_corr_115: 1.04834317e-01 sys_corr_116: -6.14230271e-03 sys_corr_117: -1.43403390e-05 sys_corr_118: 3.39608775e-02 sys_corr_119: 1.03221652e-03 sys_corr_120: -1.15022167e-03 - sys_corr_121: -1.33352099e-03 - sys_corr_122: 1.05993299e-03 - sys_corr_123: -8.26542323e-03 + sys_corr_121: 1.33352099e-03 + sys_corr_122: -8.26542323e-03 + sys_corr_123: 1.05993299e-03 sys_corr_124: -3.38811241e-02 - sys_corr_125: -6.88850494e-03 - sys_corr_126: -7.19815026e-04 + sys_corr_125: 6.88850494e-03 + sys_corr_126: 7.19815026e-04 sys_corr_127: -2.56172964e-01 sys_corr_128: 5.33163539e-02 - sys_corr_129: 4.20504448e-02 - sys_corr_130: 7.21981799e-03 + sys_corr_129: -4.20504448e-02 + sys_corr_130: -7.21981799e-03 sys_corr_131: 5.41706075e-03 - sys_corr_132: 2.38606805e-02 + sys_corr_132: -2.38606805e-02 stat: 0.0 luminosity: 5.64811698e+02 - sys_corr_1: 3.03471127e+02 @@ -4297,9 +4297,9 @@ bins: sys_corr_7: 5.45500599e+01 sys_corr_8: 4.55192828e+00 sys_corr_9: 7.38151284e+00 - sys_corr_10: 1.92470742e+01 + sys_corr_10: -1.92470742e+01 sys_corr_11: 3.72636341e+00 - sys_corr_12: -2.10918445e+01 + sys_corr_12: 2.10918445e+01 sys_corr_13: 1.29751904e+01 sys_corr_14: -2.49077331e+01 sys_corr_15: 4.47273830e+00 @@ -4325,60 +4325,60 @@ bins: sys_corr_35: 9.96797532e+01 sys_corr_36: -2.04829352e+01 sys_corr_37: 6.04944170e+01 - sys_corr_38: -4.34988406e+01 - sys_corr_39: 1.06301950e+02 - sys_corr_40: 2.62530700e+01 - sys_corr_41: -5.10176814e+01 - sys_corr_42: 3.28385325e+01 - sys_corr_43: -2.60599600e+01 + sys_corr_38: 4.34988406e+01 + sys_corr_39: -1.06301950e+02 + sys_corr_40: -2.62530700e+01 + sys_corr_41: 5.10176814e+01 + sys_corr_42: -3.28385325e+01 + sys_corr_43: 2.60599600e+01 sys_corr_44: 2.39473982e+00 - sys_corr_45: -1.71089538e+01 - sys_corr_46: 1.68747475e+01 + sys_corr_45: 1.71089538e+01 + sys_corr_46: -1.68747475e+01 sys_corr_47: -1.55354050e+01 - sys_corr_48: 1.18544062e+01 + sys_corr_48: -1.18544062e+01 sys_corr_49: -3.86149660e+01 sys_corr_50: 1.22485551e+01 sys_corr_51: 1.51132788e+01 - sys_corr_52: 2.02788165e+01 - sys_corr_53: 3.18825100e+00 + sys_corr_52: -2.02788165e+01 + sys_corr_53: -3.18825100e+00 sys_corr_54: -4.92639387e+00 - sys_corr_55: -5.68939852e+00 + sys_corr_55: 5.68939852e+00 sys_corr_56: -1.64852188e+00 - sys_corr_57: 4.04524717e+00 + sys_corr_57: -4.04524717e+00 sys_corr_58: 4.30030522e+00 - sys_corr_59: 1.35941876e+00 + sys_corr_59: -1.35941876e+00 sys_corr_60: 1.89437028e+00 sys_corr_61: -3.34413080e+00 sys_corr_62: -1.28248256e+00 - sys_corr_63: -2.02732562e+00 - sys_corr_64: -7.92017265e+00 + sys_corr_63: 2.02732562e+00 + sys_corr_64: 7.92017265e+00 sys_corr_65: 3.13023439e+00 sys_corr_66: -2.13535757e+00 sys_corr_67: -4.78484616e+00 sys_corr_68: -6.85539252e+00 sys_corr_69: 3.86381440e+00 sys_corr_70: -4.49972230e+00 - sys_corr_71: 2.75182394e+00 - sys_corr_72: -4.95793504e+00 - sys_corr_73: 6.15234133e-01 + sys_corr_71: 6.15234133e-01 + sys_corr_72: 4.95793504e+00 + sys_corr_73: 2.75182394e+00 sys_corr_74: -1.85603779e+00 sys_corr_75: 2.10529967e+00 sys_corr_76: 9.19168726e-01 - sys_corr_77: -8.35427843e+00 - sys_corr_78: 1.25032138e-01 - sys_corr_79: 1.36105366e+00 - sys_corr_80: 7.00933030e-01 + sys_corr_77: 8.35427843e+00 + sys_corr_78: 1.36105366e+00 + sys_corr_79: -7.00933030e-01 + sys_corr_80: -1.25032138e-01 sys_corr_81: 5.85823951e+00 sys_corr_82: 1.36677296e-01 sys_corr_83: 3.77273054e+00 - sys_corr_84: 1.81798326e+00 + sys_corr_84: -1.81798326e+00 sys_corr_85: 1.88087937e+00 sys_corr_86: -2.93211695e+00 sys_corr_87: 5.90877709e-01 sys_corr_88: -7.52469344e-02 sys_corr_89: 1.28936283e-01 sys_corr_90: -1.66900560e+00 - sys_corr_91: -8.41345267e-01 + sys_corr_91: 8.41345267e-01 sys_corr_92: -1.96087746e+00 sys_corr_93: 2.21732407e-01 sys_corr_94: 6.19055268e-01 @@ -4386,40 +4386,40 @@ bins: sys_corr_96: -7.15933335e-02 sys_corr_97: -1.54562077e-01 sys_corr_98: -2.40859699e-01 - sys_corr_99: -4.02415516e-01 - sys_corr_100: 8.63681498e-02 + sys_corr_99: 4.02415516e-01 + sys_corr_100: -8.63681498e-02 sys_corr_101: 5.11925612e-01 - sys_corr_102: 4.19016973e-01 - sys_corr_103: -1.05831293e+00 - sys_corr_104: -8.96019032e-02 - sys_corr_105: -5.61730292e-01 - sys_corr_106: -2.29381613e-01 - sys_corr_107: -4.43392317e-01 + sys_corr_102: -4.19016973e-01 + sys_corr_103: 1.05831293e+00 + sys_corr_104: 8.96019032e-02 + sys_corr_105: 5.61730292e-01 + sys_corr_106: 2.29381613e-01 + sys_corr_107: 4.43392317e-01 sys_corr_108: 1.32636395e-01 sys_corr_109: -5.01278045e-02 sys_corr_110: 5.88766724e-02 - sys_corr_111: 1.17663008e-01 + sys_corr_111: -1.17663008e-01 sys_corr_112: -6.85885936e-02 sys_corr_113: -2.44233698e-02 sys_corr_114: -1.19224774e-03 - sys_corr_115: -4.64238155e-02 + sys_corr_115: 4.64238155e-02 sys_corr_116: -1.34840818e-02 sys_corr_117: 4.78789025e-03 sys_corr_118: 6.78855132e-02 sys_corr_119: -1.50721553e-03 sys_corr_120: 1.89700392e-03 - sys_corr_121: 1.35307558e-03 - sys_corr_122: 1.33311199e-03 - sys_corr_123: -4.83673811e-03 + sys_corr_121: -1.35307558e-03 + sys_corr_122: -4.83673811e-03 + sys_corr_123: 1.33311199e-03 sys_corr_124: 5.28050338e-03 - sys_corr_125: -8.43832064e-03 - sys_corr_126: -6.85307473e-04 + sys_corr_125: 8.43832064e-03 + sys_corr_126: 6.85307473e-04 sys_corr_127: -2.36736184e-01 sys_corr_128: -3.38492297e-02 - sys_corr_129: 1.50496592e-03 - sys_corr_130: 3.85931478e-03 + sys_corr_129: -1.50496592e-03 + sys_corr_130: -3.85931478e-03 sys_corr_131: 9.99424871e-03 - sys_corr_132: -9.14007914e-03 + sys_corr_132: 9.14007914e-03 stat: 0.0 luminosity: 5.74477992e+02 - sys_corr_1: 3.00212891e+02 @@ -4431,9 +4431,9 @@ bins: sys_corr_7: 4.85405133e+01 sys_corr_8: 1.08207802e+01 sys_corr_9: 1.03741089e+01 - sys_corr_10: -2.18593314e+00 + sys_corr_10: 2.18593314e+00 sys_corr_11: 6.67525831e+00 - sys_corr_12: -1.32127041e+01 + sys_corr_12: 1.32127041e+01 sys_corr_13: -2.25002300e+01 sys_corr_14: 4.58117854e+00 sys_corr_15: -5.26847169e+00 @@ -4459,60 +4459,60 @@ bins: sys_corr_35: 5.15961218e+00 sys_corr_36: 6.49015144e+01 sys_corr_37: 1.41520476e+02 - sys_corr_38: -8.65546585e+01 - sys_corr_39: -2.64836835e+02 - sys_corr_40: -7.99256531e+01 - sys_corr_41: -7.62020191e+01 - sys_corr_42: -5.27718412e+01 - sys_corr_43: -9.34095781e+00 + sys_corr_38: 8.65546585e+01 + sys_corr_39: 2.64836835e+02 + sys_corr_40: 7.99256531e+01 + sys_corr_41: 7.62020191e+01 + sys_corr_42: 5.27718412e+01 + sys_corr_43: 9.34095781e+00 sys_corr_44: -6.26051780e+01 - sys_corr_45: 5.41705543e+01 - sys_corr_46: 3.08048536e+01 + sys_corr_45: -5.41705543e+01 + sys_corr_46: -3.08048536e+01 sys_corr_47: 4.49446293e+01 - sys_corr_48: 4.91250334e+00 + sys_corr_48: -4.91250334e+00 sys_corr_49: -9.41368492e+00 sys_corr_50: 4.27728652e+00 sys_corr_51: 2.11911347e+01 - sys_corr_52: 1.02104090e+01 - sys_corr_53: -3.67033806e+00 + sys_corr_52: -1.02104090e+01 + sys_corr_53: 3.67033806e+00 sys_corr_54: -5.78102367e+00 - sys_corr_55: 9.39350906e+00 + sys_corr_55: -9.39350906e+00 sys_corr_56: 1.47480163e+01 - sys_corr_57: 1.35464803e+00 + sys_corr_57: -1.35464803e+00 sys_corr_58: -1.81810453e+00 - sys_corr_59: 1.27408809e+01 + sys_corr_59: -1.27408809e+01 sys_corr_60: -5.90173327e+00 sys_corr_61: -5.09409758e+00 sys_corr_62: 4.34366006e-02 - sys_corr_63: -2.54486437e+00 - sys_corr_64: 6.10312683e+00 + sys_corr_63: 2.54486437e+00 + sys_corr_64: -6.10312683e+00 sys_corr_65: -5.93183220e+00 sys_corr_66: 1.27975298e+00 sys_corr_67: -9.23867793e+00 sys_corr_68: 1.04680643e+01 sys_corr_69: -1.08350740e+01 sys_corr_70: -4.72945595e+00 - sys_corr_71: 4.52399271e+00 - sys_corr_72: -8.85061446e+00 - sys_corr_73: 3.60607864e+00 + sys_corr_71: 3.60607864e+00 + sys_corr_72: 8.85061446e+00 + sys_corr_73: 4.52399271e+00 sys_corr_74: -1.78351686e+00 sys_corr_75: 2.26499785e+00 sys_corr_76: 3.19378011e-01 - sys_corr_77: -5.40708665e+00 - sys_corr_78: -6.74301298e-01 - sys_corr_79: -8.38085453e+00 - sys_corr_80: 5.03090059e-01 + sys_corr_77: 5.40708665e+00 + sys_corr_78: -8.38085453e+00 + sys_corr_79: -5.03090059e-01 + sys_corr_80: 6.74301298e-01 sys_corr_81: -3.27404479e+00 sys_corr_82: -7.07435712e+00 sys_corr_83: -3.11511486e+00 - sys_corr_84: 1.30998447e+00 + sys_corr_84: -1.30998447e+00 sys_corr_85: 1.78737482e-01 sys_corr_86: -7.51706569e-01 sys_corr_87: -1.03564380e+01 sys_corr_88: 1.42405139e+00 sys_corr_89: 2.86256505e-01 sys_corr_90: -8.25010799e-01 - sys_corr_91: -5.76421010e-01 + sys_corr_91: 5.76421010e-01 sys_corr_92: 2.85123803e+00 sys_corr_93: 1.09030851e-01 sys_corr_94: 9.57932540e-01 @@ -4520,40 +4520,40 @@ bins: sys_corr_96: -2.72756374e-01 sys_corr_97: -1.16695448e+00 sys_corr_98: -8.45846481e-01 - sys_corr_99: -4.75106057e-02 - sys_corr_100: 5.21225866e-02 + sys_corr_99: 4.75106057e-02 + sys_corr_100: -5.21225866e-02 sys_corr_101: -7.12338457e-01 - sys_corr_102: 3.98802506e-02 - sys_corr_103: 1.86851242e+00 - sys_corr_104: 4.16318122e-01 - sys_corr_105: 3.84630584e-01 - sys_corr_106: 1.13306302e-01 - sys_corr_107: -6.38432078e-01 + sys_corr_102: -3.98802506e-02 + sys_corr_103: -1.86851242e+00 + sys_corr_104: -4.16318122e-01 + sys_corr_105: -3.84630584e-01 + sys_corr_106: -1.13306302e-01 + sys_corr_107: 6.38432078e-01 sys_corr_108: 1.00386177e-01 sys_corr_109: -9.09317905e-02 sys_corr_110: -3.48031807e-02 - sys_corr_111: 4.22178856e-01 + sys_corr_111: -4.22178856e-01 sys_corr_112: -5.58881094e-02 sys_corr_113: -7.53125397e-02 sys_corr_114: -2.32422810e-04 - sys_corr_115: -1.04477687e-02 + sys_corr_115: 1.04477687e-02 sys_corr_116: -4.46382002e-02 sys_corr_117: 2.12385549e-02 sys_corr_118: -2.87295959e-02 sys_corr_119: -2.95113011e-04 sys_corr_120: 1.81063349e-02 - sys_corr_121: -9.27214285e-03 - sys_corr_122: -1.09416058e-02 - sys_corr_123: 1.32304276e-02 + sys_corr_121: 9.27214285e-03 + sys_corr_122: 1.32304276e-02 + sys_corr_123: -1.09416058e-02 sys_corr_124: 4.58605819e-02 - sys_corr_125: 7.43393175e-03 - sys_corr_126: -9.68721030e-03 + sys_corr_125: -7.43393175e-03 + sys_corr_126: 9.68721030e-03 sys_corr_127: -1.22317108e-01 sys_corr_128: 1.51893179e-02 - sys_corr_129: -1.99839897e-02 - sys_corr_130: 5.60705328e-05 + sys_corr_129: 1.99839897e-02 + sys_corr_130: -5.60705328e-05 sys_corr_131: -3.81351495e-05 - sys_corr_132: -7.92449140e-03 + sys_corr_132: 7.92449140e-03 stat: 0.0 luminosity: 5.95996522e+02 - sys_corr_1: 2.80866908e+02 @@ -4565,9 +4565,9 @@ bins: sys_corr_7: 6.14612834e+01 sys_corr_8: -7.76876095e+00 sys_corr_9: 2.22109774e+01 - sys_corr_10: 3.66284999e+01 + sys_corr_10: -3.66284999e+01 sys_corr_11: -1.04776131e+01 - sys_corr_12: -1.59240023e+01 + sys_corr_12: 1.59240023e+01 sys_corr_13: 1.02985427e+01 sys_corr_14: 7.14201151e+00 sys_corr_15: 8.51889166e-01 @@ -4593,60 +4593,60 @@ bins: sys_corr_35: -6.64948982e+00 sys_corr_36: 2.78950558e+01 sys_corr_37: -2.71543162e+01 - sys_corr_38: -1.98150118e+01 - sys_corr_39: 8.32690635e+01 - sys_corr_40: -6.24457499e+01 - sys_corr_41: 1.05843660e+02 - sys_corr_42: -5.01990907e+01 - sys_corr_43: 1.01250423e+02 + sys_corr_38: 1.98150118e+01 + sys_corr_39: -8.32690635e+01 + sys_corr_40: 6.24457499e+01 + sys_corr_41: -1.05843660e+02 + sys_corr_42: 5.01990907e+01 + sys_corr_43: -1.01250423e+02 sys_corr_44: -1.14950467e+02 - sys_corr_45: 1.13232672e+02 - sys_corr_46: -2.00238964e+02 + sys_corr_45: -1.13232672e+02 + sys_corr_46: 2.00238964e+02 sys_corr_47: -2.34281770e+01 - sys_corr_48: -4.09943672e+01 + sys_corr_48: 4.09943672e+01 sys_corr_49: -3.28593139e+01 sys_corr_50: -7.71578499e+01 sys_corr_51: -9.96783965e+00 - sys_corr_52: 1.92054671e+01 - sys_corr_53: 8.07491699e-01 + sys_corr_52: -1.92054671e+01 + sys_corr_53: -8.07491699e-01 sys_corr_54: 1.53867307e+01 - sys_corr_55: 6.50882778e+00 + sys_corr_55: -6.50882778e+00 sys_corr_56: -9.07284082e+00 - sys_corr_57: -9.70389036e+00 + sys_corr_57: 9.70389036e+00 sys_corr_58: -1.42124826e+01 - sys_corr_59: 8.44944224e+00 + sys_corr_59: -8.44944224e+00 sys_corr_60: -1.23531381e+01 sys_corr_61: 1.52546082e+00 sys_corr_62: 1.69372053e+01 - sys_corr_63: -1.26496807e+01 - sys_corr_64: 2.94673210e+00 + sys_corr_63: 1.26496807e+01 + sys_corr_64: -2.94673210e+00 sys_corr_65: 1.29443572e+01 sys_corr_66: -2.65694476e+00 sys_corr_67: 1.09599077e+01 sys_corr_68: -2.85937711e+01 sys_corr_69: 8.65950703e+00 sys_corr_70: -1.61979572e+00 - sys_corr_71: 4.67246269e-01 - sys_corr_72: 3.81935227e-01 - sys_corr_73: -4.86310317e+00 + sys_corr_71: -4.86310317e+00 + sys_corr_72: -3.81935227e-01 + sys_corr_73: 4.67246269e-01 sys_corr_74: -4.33177306e+00 sys_corr_75: 1.49484854e+01 sys_corr_76: -3.63411255e-01 - sys_corr_77: 4.97161624e+00 - sys_corr_78: -3.05126993e+00 - sys_corr_79: -5.58152114e+00 - sys_corr_80: 3.17190483e+00 + sys_corr_77: -4.97161624e+00 + sys_corr_78: -5.58152114e+00 + sys_corr_79: -3.17190483e+00 + sys_corr_80: 3.05126993e+00 sys_corr_81: 2.46430452e-01 sys_corr_82: -3.02028176e+00 sys_corr_83: -2.16796390e+00 - sys_corr_84: 1.87579271e+00 + sys_corr_84: -1.87579271e+00 sys_corr_85: -6.05658729e-01 sys_corr_86: -5.51270867e+00 sys_corr_87: -7.65570862e+00 sys_corr_88: 4.70816051e+00 sys_corr_89: 9.53378646e-02 sys_corr_90: -1.34462886e+00 - sys_corr_91: -2.35089560e+00 + sys_corr_91: 2.35089560e+00 sys_corr_92: -1.49408193e+00 sys_corr_93: 8.87649949e-02 sys_corr_94: 8.78123922e-01 @@ -4654,40 +4654,40 @@ bins: sys_corr_96: 5.37102201e-02 sys_corr_97: -4.93621014e-01 sys_corr_98: -1.15069739e-01 - sys_corr_99: 5.20650234e-01 - sys_corr_100: 6.10394122e-01 + sys_corr_99: -5.20650234e-01 + sys_corr_100: -6.10394122e-01 sys_corr_101: 4.80798034e-01 - sys_corr_102: 1.08292698e-02 - sys_corr_103: -4.51292387e-02 - sys_corr_104: 3.34532565e-01 - sys_corr_105: 7.15660063e-01 - sys_corr_106: -3.23493598e-01 - sys_corr_107: -3.96723263e-01 + sys_corr_102: -1.08292698e-02 + sys_corr_103: 4.51292387e-02 + sys_corr_104: -3.34532565e-01 + sys_corr_105: -7.15660063e-01 + sys_corr_106: 3.23493598e-01 + sys_corr_107: 3.96723263e-01 sys_corr_108: 2.17189140e-01 sys_corr_109: -4.27596545e-01 sys_corr_110: -1.44252929e-01 - sys_corr_111: -3.90925429e-01 + sys_corr_111: 3.90925429e-01 sys_corr_112: -2.02432905e-01 sys_corr_113: -1.51561978e-01 sys_corr_114: -1.10276349e-03 - sys_corr_115: -1.31352068e-01 + sys_corr_115: 1.31352068e-01 sys_corr_116: -3.69362403e-02 sys_corr_117: 1.99065143e-02 sys_corr_118: 1.27475284e-02 sys_corr_119: 1.88216550e-04 sys_corr_120: 6.37160914e-03 - sys_corr_121: -1.06662697e-02 - sys_corr_122: -2.41208045e-02 - sys_corr_123: 4.61503349e-02 + sys_corr_121: 1.06662697e-02 + sys_corr_122: 4.61503349e-02 + sys_corr_123: -2.41208045e-02 sys_corr_124: 2.93528123e-02 - sys_corr_125: 2.73557737e-02 - sys_corr_126: -6.05189630e-03 + sys_corr_125: -2.73557737e-02 + sys_corr_126: 6.05189630e-03 sys_corr_127: -1.25150481e-01 sys_corr_128: 6.99578359e-02 - sys_corr_129: 3.31354170e-02 - sys_corr_130: -1.53645870e-02 + sys_corr_129: -3.31354170e-02 + sys_corr_130: 1.53645870e-02 sys_corr_131: -7.19739455e-03 - sys_corr_132: -5.81427483e-03 + sys_corr_132: 5.81427483e-03 stat: 0.0 luminosity: 5.75719672e+02 - sys_corr_1: 2.67034772e+02 @@ -4699,9 +4699,9 @@ bins: sys_corr_7: 6.89300789e+01 sys_corr_8: 6.19485337e+00 sys_corr_9: 9.35967188e+00 - sys_corr_10: 2.16414659e+01 + sys_corr_10: -2.16414659e+01 sys_corr_11: -1.35148820e+00 - sys_corr_12: -2.45040438e+01 + sys_corr_12: 2.45040438e+01 sys_corr_13: 5.57814475e+00 sys_corr_14: 7.57351851e+00 sys_corr_15: -1.92984647e+00 @@ -4727,60 +4727,60 @@ bins: sys_corr_35: 7.14934163e+00 sys_corr_36: 5.88668309e+01 sys_corr_37: -6.88382297e+01 - sys_corr_38: 2.65809293e+02 - sys_corr_39: 5.71632689e+01 - sys_corr_40: -6.12871644e+00 - sys_corr_41: -1.28005872e+02 - sys_corr_42: -6.13126780e+01 - sys_corr_43: -9.18155559e+01 + sys_corr_38: -2.65809293e+02 + sys_corr_39: -5.71632689e+01 + sys_corr_40: 6.12871644e+00 + sys_corr_41: 1.28005872e+02 + sys_corr_42: 6.13126780e+01 + sys_corr_43: 9.18155559e+01 sys_corr_44: -5.19967759e+01 - sys_corr_45: -2.64535623e+01 - sys_corr_46: 4.29429065e+01 + sys_corr_45: 2.64535623e+01 + sys_corr_46: -4.29429065e+01 sys_corr_47: 5.21120618e+01 - sys_corr_48: -2.52902865e+01 + sys_corr_48: 2.52902865e+01 sys_corr_49: 1.14840431e+01 sys_corr_50: -2.72915235e+01 sys_corr_51: 1.09773331e+00 - sys_corr_52: 1.82565483e+01 - sys_corr_53: -6.27894411e+00 + sys_corr_52: -1.82565483e+01 + sys_corr_53: 6.27894411e+00 sys_corr_54: -3.93508133e+00 - sys_corr_55: 7.71678227e+00 + sys_corr_55: -7.71678227e+00 sys_corr_56: 1.06964425e+01 - sys_corr_57: -4.09836666e-01 + sys_corr_57: 4.09836666e-01 sys_corr_58: 1.49957009e+00 - sys_corr_59: 4.58412253e+00 + sys_corr_59: -4.58412253e+00 sys_corr_60: -7.73732814e+00 sys_corr_61: 9.43427574e+00 sys_corr_62: 8.14263882e+00 - sys_corr_63: -2.06206613e+00 - sys_corr_64: 2.28220225e-01 + sys_corr_63: 2.06206613e+00 + sys_corr_64: -2.28220225e-01 sys_corr_65: -1.85334139e+00 sys_corr_66: 8.84664698e+00 sys_corr_67: 6.96300100e+00 sys_corr_68: -1.56751230e+01 sys_corr_69: 9.97946388e+00 sys_corr_70: 1.89275661e+00 - sys_corr_71: 1.41765743e+01 - sys_corr_72: 1.55477277e+00 - sys_corr_73: -1.37493760e+00 + sys_corr_71: -1.37493760e+00 + sys_corr_72: -1.55477277e+00 + sys_corr_73: 1.41765743e+01 sys_corr_74: -1.66662430e+00 sys_corr_75: 9.02337911e+00 sys_corr_76: 2.16075707e+00 - sys_corr_77: 4.66775672e+00 - sys_corr_78: -1.52715685e+00 - sys_corr_79: -3.63997623e+00 - sys_corr_80: 2.36402303e+00 + sys_corr_77: -4.66775672e+00 + sys_corr_78: -3.63997623e+00 + sys_corr_79: -2.36402303e+00 + sys_corr_80: 1.52715685e+00 sys_corr_81: 1.93465064e+00 sys_corr_82: 8.75349071e-01 sys_corr_83: 2.59825054e+00 - sys_corr_84: 2.98882917e+00 + sys_corr_84: -2.98882917e+00 sys_corr_85: 2.07504530e+00 sys_corr_86: -2.72676363e-01 sys_corr_87: -8.69806727e-01 sys_corr_88: 1.08975337e+00 sys_corr_89: -2.59026169e-01 sys_corr_90: 1.93174918e-01 - sys_corr_91: -1.32248187e-01 + sys_corr_91: 1.32248187e-01 sys_corr_92: -6.15957786e-01 sys_corr_93: 2.02663695e-01 sys_corr_94: 9.19411753e-01 @@ -4788,40 +4788,40 @@ bins: sys_corr_96: 3.28689106e-02 sys_corr_97: -9.42919417e-02 sys_corr_98: -2.16064879e-01 - sys_corr_99: 1.37092282e-02 - sys_corr_100: 5.16928391e-01 + sys_corr_99: -1.37092282e-02 + sys_corr_100: -5.16928391e-01 sys_corr_101: 2.82417651e-01 - sys_corr_102: 8.34090085e-01 - sys_corr_103: -2.23256774e+00 - sys_corr_104: -2.29306653e-01 - sys_corr_105: -5.82308656e-01 - sys_corr_106: -4.17519425e-01 - sys_corr_107: -4.77000824e-01 + sys_corr_102: -8.34090085e-01 + sys_corr_103: 2.23256774e+00 + sys_corr_104: 2.29306653e-01 + sys_corr_105: 5.82308656e-01 + sys_corr_106: 4.17519425e-01 + sys_corr_107: 4.77000824e-01 sys_corr_108: 1.86287305e-01 sys_corr_109: -2.31071491e-01 sys_corr_110: -2.26730564e-01 - sys_corr_111: 2.55378459e-01 + sys_corr_111: -2.55378459e-01 sys_corr_112: -9.35721570e-02 sys_corr_113: -2.04298196e-01 sys_corr_114: -9.53790552e-04 - sys_corr_115: -7.00922355e-02 + sys_corr_115: 7.00922355e-02 sys_corr_116: -2.95366753e-02 sys_corr_117: 1.09301071e-02 sys_corr_118: 5.62183611e-02 sys_corr_119: -2.81472783e-05 sys_corr_120: 6.18049530e-03 - sys_corr_121: -5.96641305e-03 - sys_corr_122: -9.83505854e-03 - sys_corr_123: 1.06999882e-02 + sys_corr_121: 5.96641305e-03 + sys_corr_122: 1.06999882e-02 + sys_corr_123: -9.83505854e-03 sys_corr_124: 3.69218066e-02 - sys_corr_125: 4.57380486e-03 - sys_corr_126: -5.75460367e-03 + sys_corr_125: -4.57380486e-03 + sys_corr_126: 5.75460367e-03 sys_corr_127: -1.57549807e-02 sys_corr_128: 9.73982331e-03 - sys_corr_129: -2.90824469e-02 - sys_corr_130: -5.40071170e-03 + sys_corr_129: 2.90824469e-02 + sys_corr_130: 5.40071170e-03 sys_corr_131: -3.11664646e-03 - sys_corr_132: -7.22152823e-02 + sys_corr_132: 7.22152823e-02 stat: 0.0 luminosity: 5.64255494e+02 - sys_corr_1: 2.67434134e+02 @@ -4833,9 +4833,9 @@ bins: sys_corr_7: 8.52929051e+01 sys_corr_8: 1.39869642e+01 sys_corr_9: 3.92210955e+00 - sys_corr_10: 2.57806171e+01 + sys_corr_10: -2.57806171e+01 sys_corr_11: 9.84611069e+00 - sys_corr_12: -4.89708450e+01 + sys_corr_12: 4.89708450e+01 sys_corr_13: 1.68886369e+01 sys_corr_14: 1.25443254e+01 sys_corr_15: 3.27696840e+00 @@ -4861,60 +4861,60 @@ bins: sys_corr_35: -8.59680823e+01 sys_corr_36: 2.20787609e+01 sys_corr_37: -4.42486765e+01 - sys_corr_38: -3.21618868e+01 - sys_corr_39: -3.74512346e+01 - sys_corr_40: 2.04713713e+01 - sys_corr_41: -4.38149070e+00 - sys_corr_42: 8.50687940e+01 - sys_corr_43: 3.55236781e+01 + sys_corr_38: 3.21618868e+01 + sys_corr_39: 3.74512346e+01 + sys_corr_40: -2.04713713e+01 + sys_corr_41: 4.38149070e+00 + sys_corr_42: -8.50687940e+01 + sys_corr_43: -3.55236781e+01 sys_corr_44: -1.98004362e+01 - sys_corr_45: -2.04164496e+02 - sys_corr_46: -6.03001438e+01 + sys_corr_45: 2.04164496e+02 + sys_corr_46: 6.03001438e+01 sys_corr_47: -1.14004338e+02 - sys_corr_48: 1.08059976e+02 + sys_corr_48: -1.08059976e+02 sys_corr_49: -2.73464348e+01 sys_corr_50: 4.55479977e+01 sys_corr_51: -4.64156997e+01 - sys_corr_52: -3.17299166e+01 - sys_corr_53: 4.00944212e+00 + sys_corr_52: 3.17299166e+01 + sys_corr_53: -4.00944212e+00 sys_corr_54: 4.08387043e+00 - sys_corr_55: 1.75684716e+01 + sys_corr_55: -1.75684716e+01 sys_corr_56: 7.33917638e+00 - sys_corr_57: -3.87464061e+01 + sys_corr_57: 3.87464061e+01 sys_corr_58: 3.95567627e+00 - sys_corr_59: -3.50217348e+01 + sys_corr_59: 3.50217348e+01 sys_corr_60: -1.62422492e+01 sys_corr_61: 2.40173323e+01 sys_corr_62: -3.46800360e+01 - sys_corr_63: 2.31734468e+01 - sys_corr_64: -3.06202159e+00 + sys_corr_63: -2.31734468e+01 + sys_corr_64: 3.06202159e+00 sys_corr_65: -5.92407505e+00 sys_corr_66: 9.80681619e-01 sys_corr_67: -5.00264370e+00 sys_corr_68: -5.33193111e+00 sys_corr_69: 3.17564996e+00 sys_corr_70: -1.17016843e+01 - sys_corr_71: 4.07884290e+00 - sys_corr_72: -3.77417196e+00 - sys_corr_73: 6.08328355e+00 + sys_corr_71: 6.08328355e+00 + sys_corr_72: 3.77417196e+00 + sys_corr_73: 4.07884290e+00 sys_corr_74: -5.39469248e+00 sys_corr_75: 4.81088428e+00 sys_corr_76: 2.76773206e-01 - sys_corr_77: 1.03720622e+01 - sys_corr_78: 3.52295143e+00 - sys_corr_79: -1.24129476e+01 - sys_corr_80: 3.82217838e-01 + sys_corr_77: -1.03720622e+01 + sys_corr_78: -1.24129476e+01 + sys_corr_79: -3.82217838e-01 + sys_corr_80: -3.52295143e+00 sys_corr_81: -1.21935482e+01 sys_corr_82: -9.39430826e+00 sys_corr_83: -1.04627649e+01 - sys_corr_84: -2.50721413e+00 + sys_corr_84: 2.50721413e+00 sys_corr_85: -3.09212994e+00 sys_corr_86: -2.21145318e+00 sys_corr_87: -1.47585524e+01 sys_corr_88: 4.29275472e+00 sys_corr_89: 7.99245078e-01 sys_corr_90: -5.18088203e-01 - sys_corr_91: -2.58267544e-01 + sys_corr_91: 2.58267544e-01 sys_corr_92: 2.71727636e+00 sys_corr_93: 8.87837209e-02 sys_corr_94: 2.97933737e-01 @@ -4922,40 +4922,40 @@ bins: sys_corr_96: -1.72184908e-02 sys_corr_97: -1.27565296e+00 sys_corr_98: -6.65233485e-01 - sys_corr_99: 6.54260887e-01 - sys_corr_100: -9.83940162e-03 + sys_corr_99: -6.54260887e-01 + sys_corr_100: 9.83940162e-03 sys_corr_101: -2.40416217e-01 - sys_corr_102: -6.84784979e-01 - sys_corr_103: 3.93640075e+00 - sys_corr_104: 9.96206126e-01 - sys_corr_105: 2.06732204e+00 - sys_corr_106: 5.82124793e-02 - sys_corr_107: -2.34866336e-01 + sys_corr_102: 6.84784979e-01 + sys_corr_103: -3.93640075e+00 + sys_corr_104: -9.96206126e-01 + sys_corr_105: -2.06732204e+00 + sys_corr_106: -5.82124793e-02 + sys_corr_107: 2.34866336e-01 sys_corr_108: 5.58019478e-02 sys_corr_109: -2.74548280e-01 sys_corr_110: -3.64094937e-02 - sys_corr_111: -1.12971669e-01 + sys_corr_111: 1.12971669e-01 sys_corr_112: -1.47473623e-01 sys_corr_113: -1.30875558e-01 sys_corr_114: 9.04015962e-04 - sys_corr_115: -5.52122655e-02 + sys_corr_115: 5.52122655e-02 sys_corr_116: -3.40493371e-02 sys_corr_117: 3.25168425e-02 sys_corr_118: 5.27161945e-02 sys_corr_119: 4.45128253e-03 sys_corr_120: 1.61774230e-02 - sys_corr_121: -8.84217399e-03 - sys_corr_122: -6.13066976e-03 - sys_corr_123: 6.96906469e-03 + sys_corr_121: 8.84217399e-03 + sys_corr_122: 6.96906469e-03 + sys_corr_123: -6.13066976e-03 sys_corr_124: 3.45044716e-02 - sys_corr_125: 2.13566625e-03 - sys_corr_126: -1.92080971e-03 + sys_corr_125: -2.13566625e-03 + sys_corr_126: 1.92080971e-03 sys_corr_127: -1.11660338e-01 sys_corr_128: 7.20181600e-02 - sys_corr_129: -1.72041854e-02 - sys_corr_130: -7.74296943e-03 + sys_corr_129: 1.72041854e-02 + sys_corr_130: 7.74296943e-03 sys_corr_131: -2.57784142e-03 - sys_corr_132: -9.25710781e-02 + sys_corr_132: 9.25710781e-02 stat: 0.0 luminosity: 5.78458298e+02 - sys_corr_1: 2.57497957e+02 @@ -4967,9 +4967,9 @@ bins: sys_corr_7: 1.01384684e+02 sys_corr_8: 2.46872539e+01 sys_corr_9: -1.87004614e+01 - sys_corr_10: 2.06363544e+01 + sys_corr_10: -2.06363544e+01 sys_corr_11: 3.16320481e+01 - sys_corr_12: -8.30877763e+01 + sys_corr_12: 8.30877763e+01 sys_corr_13: 4.18665562e+01 sys_corr_14: 1.85725280e+01 sys_corr_15: 6.39113695e+00 @@ -4995,60 +4995,60 @@ bins: sys_corr_35: 1.30843715e+01 sys_corr_36: 3.54477494e+01 sys_corr_37: -2.37424071e+01 - sys_corr_38: 1.26558453e+00 - sys_corr_39: -4.23382651e+01 - sys_corr_40: 2.28228633e+02 - sys_corr_41: 1.18527038e+02 - sys_corr_42: 8.61389781e+01 - sys_corr_43: 5.41654509e+01 + sys_corr_38: -1.26558453e+00 + sys_corr_39: 4.23382651e+01 + sys_corr_40: -2.28228633e+02 + sys_corr_41: -1.18527038e+02 + sys_corr_42: -8.61389781e+01 + sys_corr_43: -5.41654509e+01 sys_corr_44: 3.54904940e+00 - sys_corr_45: 9.35507198e+01 - sys_corr_46: 1.27625161e+02 + sys_corr_45: -9.35507198e+01 + sys_corr_46: -1.27625161e+02 sys_corr_47: 5.13281269e+01 - sys_corr_48: -9.17814628e+00 + sys_corr_48: 9.17814628e+00 sys_corr_49: 4.12031340e+01 sys_corr_50: -2.30565961e+01 sys_corr_51: -2.08560758e+01 - sys_corr_52: -1.04531012e+01 - sys_corr_53: 7.49610865e+00 + sys_corr_52: 1.04531012e+01 + sys_corr_53: -7.49610865e+00 sys_corr_54: -3.28936255e+01 - sys_corr_55: 1.09548631e+01 + sys_corr_55: -1.09548631e+01 sys_corr_56: -3.13571350e+01 - sys_corr_57: -1.88318010e+01 + sys_corr_57: 1.88318010e+01 sys_corr_58: 3.33815280e+00 - sys_corr_59: -4.77658915e+00 + sys_corr_59: 4.77658915e+00 sys_corr_60: -6.52258243e+00 sys_corr_61: 4.42201621e+00 sys_corr_62: 1.20641888e+01 - sys_corr_63: 2.35289633e+01 - sys_corr_64: -4.88245381e+00 + sys_corr_63: -2.35289633e+01 + sys_corr_64: 4.88245381e+00 sys_corr_65: 1.45756838e+01 sys_corr_66: 9.57502537e-01 sys_corr_67: 1.03870689e+01 sys_corr_68: -3.07156031e+01 sys_corr_69: 2.70129509e+00 sys_corr_70: -4.75733914e+00 - sys_corr_71: -1.13839181e+01 - sys_corr_72: 8.49777754e+00 - sys_corr_73: 6.11296504e+00 + sys_corr_71: 6.11296504e+00 + sys_corr_72: -8.49777754e+00 + sys_corr_73: -1.13839181e+01 sys_corr_74: 4.61128648e+00 sys_corr_75: 1.73414169e+01 sys_corr_76: -3.44433318e+00 - sys_corr_77: 1.31845379e+01 - sys_corr_78: -5.26505992e+00 - sys_corr_79: 6.11780398e-01 - sys_corr_80: 4.35813152e+00 + sys_corr_77: -1.31845379e+01 + sys_corr_78: 6.11780398e-01 + sys_corr_79: -4.35813152e+00 + sys_corr_80: 5.26505992e+00 sys_corr_81: -1.25598496e+00 sys_corr_82: 6.45412386e-02 sys_corr_83: -8.42961677e-01 - sys_corr_84: 2.54242336e+00 + sys_corr_84: -2.54242336e+00 sys_corr_85: 1.50582871e+00 sys_corr_86: -7.13668768e+00 sys_corr_87: 2.03297961e+00 sys_corr_88: 7.14430794e+00 sys_corr_89: -4.67178053e-01 sys_corr_90: -5.53128787e-01 - sys_corr_91: -3.40407618e-01 + sys_corr_91: 3.40407618e-01 sys_corr_92: 2.93477345e+00 sys_corr_93: -4.33654909e-02 sys_corr_94: 3.51390416e-01 @@ -5056,40 +5056,40 @@ bins: sys_corr_96: -3.44769744e-03 sys_corr_97: -9.28080959e-01 sys_corr_98: -2.88057426e-01 - sys_corr_99: 4.80513810e-01 - sys_corr_100: 3.92243023e-01 + sys_corr_99: -4.80513810e-01 + sys_corr_100: -3.92243023e-01 sys_corr_101: 2.19168794e-01 - sys_corr_102: 3.41888685e-01 - sys_corr_103: -4.01646806e-01 - sys_corr_104: -6.66321402e-01 - sys_corr_105: 4.77216534e-01 - sys_corr_106: -1.03814646e-01 - sys_corr_107: -1.30162433e-01 + sys_corr_102: -3.41888685e-01 + sys_corr_103: 4.01646806e-01 + sys_corr_104: 6.66321402e-01 + sys_corr_105: -4.77216534e-01 + sys_corr_106: 1.03814646e-01 + sys_corr_107: 1.30162433e-01 sys_corr_108: 1.70075212e-01 sys_corr_109: -2.27997009e-01 sys_corr_110: -9.47488334e-02 - sys_corr_111: 1.33057844e-01 + sys_corr_111: -1.33057844e-01 sys_corr_112: -1.38002664e-01 sys_corr_113: -1.63479855e-01 sys_corr_114: -5.88746251e-04 - sys_corr_115: -1.31276460e-01 + sys_corr_115: 1.31276460e-01 sys_corr_116: -4.39018440e-02 sys_corr_117: 2.28592097e-02 sys_corr_118: 5.30167690e-02 sys_corr_119: -3.83603951e-03 sys_corr_120: 8.87328201e-03 - sys_corr_121: -5.97734791e-03 - sys_corr_122: -6.23081757e-03 - sys_corr_123: -1.50298650e-03 + sys_corr_121: 5.97734791e-03 + sys_corr_122: -1.50298650e-03 + sys_corr_123: -6.23081757e-03 sys_corr_124: 3.52361439e-02 - sys_corr_125: -7.29681071e-03 - sys_corr_126: 3.76587162e-04 + sys_corr_125: 7.29681071e-03 + sys_corr_126: -3.76587162e-04 sys_corr_127: 4.78063797e-02 sys_corr_128: -1.30018053e-01 - sys_corr_129: -5.42429304e-02 - sys_corr_130: -1.96796793e-03 + sys_corr_129: 5.42429304e-02 + sys_corr_130: 1.96796793e-03 sys_corr_131: 1.42621995e-02 - sys_corr_132: -5.85496004e-02 + sys_corr_132: 5.85496004e-02 stat: 0.0 luminosity: 5.62970760e+02 - sys_corr_1: 2.64697211e+02 @@ -5101,9 +5101,9 @@ bins: sys_corr_7: 1.49500578e+02 sys_corr_8: 5.66926643e+01 sys_corr_9: -5.12071694e+01 - sys_corr_10: 2.04738929e+01 + sys_corr_10: -2.04738929e+01 sys_corr_11: 7.40878409e+01 - sys_corr_12: -1.29919728e+02 + sys_corr_12: 1.29919728e+02 sys_corr_13: 7.64005104e+01 sys_corr_14: 3.10966700e+01 sys_corr_15: 1.10530351e+01 @@ -5129,60 +5129,60 @@ bins: sys_corr_35: -3.55228998e+01 sys_corr_36: -7.65699930e+01 sys_corr_37: -1.58217600e+02 - sys_corr_38: -2.08635032e+02 - sys_corr_39: 8.50339340e+01 - sys_corr_40: -1.01916756e+02 - sys_corr_41: -5.29793554e+01 - sys_corr_42: -3.83358216e+01 - sys_corr_43: -7.43138657e+01 + sys_corr_38: 2.08635032e+02 + sys_corr_39: -8.50339340e+01 + sys_corr_40: 1.01916756e+02 + sys_corr_41: 5.29793554e+01 + sys_corr_42: 3.83358216e+01 + sys_corr_43: 7.43138657e+01 sys_corr_44: -1.48602412e+01 - sys_corr_45: 1.79606363e+01 - sys_corr_46: 1.10672836e+02 + sys_corr_45: -1.79606363e+01 + sys_corr_46: -1.10672836e+02 sys_corr_47: 5.11399182e+01 - sys_corr_48: -2.33957757e+01 + sys_corr_48: 2.33957757e+01 sys_corr_49: -3.21819701e+00 sys_corr_50: 5.07300971e+00 sys_corr_51: -3.32179510e+01 - sys_corr_52: -2.93214900e+01 - sys_corr_53: 1.12791617e+00 + sys_corr_52: 2.93214900e+01 + sys_corr_53: -1.12791617e+00 sys_corr_54: 1.24666176e+01 - sys_corr_55: 3.91765765e+00 + sys_corr_55: -3.91765765e+00 sys_corr_56: 8.61669600e+00 - sys_corr_57: 1.32809292e+01 + sys_corr_57: -1.32809292e+01 sys_corr_58: 1.08390561e+01 - sys_corr_59: 2.66524389e+01 + sys_corr_59: -2.66524389e+01 sys_corr_60: 4.24933241e+00 sys_corr_61: 3.62977243e+00 sys_corr_62: 1.52903210e+01 - sys_corr_63: -6.34551107e+00 - sys_corr_64: 6.39439698e+00 + sys_corr_63: 6.34551107e+00 + sys_corr_64: -6.39439698e+00 sys_corr_65: 7.98622648e+00 sys_corr_66: 1.52917748e+01 sys_corr_67: -6.91444833e+00 sys_corr_68: -5.04812969e-01 sys_corr_69: 8.16561477e-01 sys_corr_70: 6.18591104e+00 - sys_corr_71: 1.03156986e+01 - sys_corr_72: 1.00906756e+01 - sys_corr_73: 5.75631008e+00 + sys_corr_71: 5.75631008e+00 + sys_corr_72: -1.00906756e+01 + sys_corr_73: 1.03156986e+01 sys_corr_74: 2.11936889e+00 sys_corr_75: 3.93693697e+00 sys_corr_76: 7.15496209e-02 - sys_corr_77: 3.12337388e+00 - sys_corr_78: -4.59363122e+00 - sys_corr_79: 2.95338590e+00 - sys_corr_80: -6.73591242e-01 + sys_corr_77: -3.12337388e+00 + sys_corr_78: 2.95338590e+00 + sys_corr_79: 6.73591242e-01 + sys_corr_80: 4.59363122e+00 sys_corr_81: -1.11172322e+01 sys_corr_82: -4.28352187e+00 sys_corr_83: -7.85618619e+00 - sys_corr_84: 2.84966890e-01 + sys_corr_84: -2.84966890e-01 sys_corr_85: 7.67024289e-01 sys_corr_86: -3.03181688e+00 sys_corr_87: -4.71945730e+00 sys_corr_88: 4.92582871e+00 sys_corr_89: -3.84690942e-01 sys_corr_90: 5.65799014e-01 - sys_corr_91: 1.20142678e+00 + sys_corr_91: -1.20142678e+00 sys_corr_92: -1.96290154e+00 sys_corr_93: -2.67473717e-01 sys_corr_94: -1.05179656e+00 @@ -5190,40 +5190,40 @@ bins: sys_corr_96: -1.59463158e-01 sys_corr_97: -1.70634813e+00 sys_corr_98: -7.67676645e-01 - sys_corr_99: 8.78401683e-01 - sys_corr_100: -7.39925983e-02 + sys_corr_99: -8.78401683e-01 + sys_corr_100: 7.39925983e-02 sys_corr_101: -2.34441401e-01 - sys_corr_102: -4.49410009e-01 - sys_corr_103: 2.66738715e+00 - sys_corr_104: -1.91446754e-03 - sys_corr_105: 1.97762024e+00 - sys_corr_106: 2.52649355e-01 - sys_corr_107: 5.48717551e-02 + sys_corr_102: 4.49410009e-01 + sys_corr_103: -2.66738715e+00 + sys_corr_104: 1.91446754e-03 + sys_corr_105: -1.97762024e+00 + sys_corr_106: -2.52649355e-01 + sys_corr_107: -5.48717551e-02 sys_corr_108: 7.70559222e-02 sys_corr_109: -2.44679029e-01 sys_corr_110: -1.36021568e-01 - sys_corr_111: -2.70375625e-01 + sys_corr_111: 2.70375625e-01 sys_corr_112: -1.83368291e-02 sys_corr_113: -1.61072580e-01 sys_corr_114: 2.88051753e-04 - sys_corr_115: -2.11514862e-02 + sys_corr_115: 2.11514862e-02 sys_corr_116: -5.95551542e-02 sys_corr_117: 4.20094267e-02 sys_corr_118: 3.04554630e-02 sys_corr_119: -4.70436474e-03 sys_corr_120: 2.21680129e-02 - sys_corr_121: -7.99837628e-03 - sys_corr_122: -6.50318234e-03 - sys_corr_123: -1.15265532e-02 + sys_corr_121: 7.99837628e-03 + sys_corr_122: -1.15265532e-02 + sys_corr_123: -6.50318234e-03 sys_corr_124: 6.51967030e-02 - sys_corr_125: -9.77777876e-03 - sys_corr_126: -7.45974897e-03 + sys_corr_125: 9.77777876e-03 + sys_corr_126: 7.45974897e-03 sys_corr_127: 9.95486454e-02 sys_corr_128: 3.47957568e-03 - sys_corr_129: -3.32900135e-03 - sys_corr_130: -1.74326230e-03 + sys_corr_129: 3.32900135e-03 + sys_corr_130: 1.74326230e-03 sys_corr_131: 1.01886964e-02 - sys_corr_132: -2.20636725e-02 + sys_corr_132: 2.20636725e-02 stat: 0.0 luminosity: 5.65947492e+02 - sys_corr_1: 2.65839597e+02 @@ -5235,9 +5235,9 @@ bins: sys_corr_7: 1.35373765e+02 sys_corr_8: 5.20482070e+01 sys_corr_9: -6.76571054e+01 - sys_corr_10: 1.45726147e+01 + sys_corr_10: -1.45726147e+01 sys_corr_11: 1.15052301e+02 - sys_corr_12: -1.60910759e+02 + sys_corr_12: 1.60910759e+02 sys_corr_13: 7.82790655e+01 sys_corr_14: 1.75417825e+01 sys_corr_15: 2.00944684e+01 @@ -5263,60 +5263,60 @@ bins: sys_corr_35: -6.71758261e+00 sys_corr_36: -2.28428950e+01 sys_corr_37: 5.12733650e+00 - sys_corr_38: 3.46137142e+01 - sys_corr_39: -6.01939870e+01 - sys_corr_40: 9.33092788e+01 - sys_corr_41: 3.04418838e+01 - sys_corr_42: -6.65490460e+01 - sys_corr_43: -1.35513620e+02 + sys_corr_38: -3.46137142e+01 + sys_corr_39: 6.01939870e+01 + sys_corr_40: -9.33092788e+01 + sys_corr_41: -3.04418838e+01 + sys_corr_42: 6.65490460e+01 + sys_corr_43: 1.35513620e+02 sys_corr_44: 5.18122795e+01 - sys_corr_45: 3.97035837e+01 - sys_corr_46: -6.65809144e+01 + sys_corr_45: -3.97035837e+01 + sys_corr_46: 6.65809144e+01 sys_corr_47: -7.01054688e+01 - sys_corr_48: -6.65193483e+01 + sys_corr_48: 6.65193483e+01 sys_corr_49: -1.80220435e+02 sys_corr_50: 6.72630105e+01 sys_corr_51: -7.42514460e-01 - sys_corr_52: 2.79285814e+01 - sys_corr_53: -4.68232001e+00 + sys_corr_52: -2.79285814e+01 + sys_corr_53: 4.68232001e+00 sys_corr_54: 8.74764073e+00 - sys_corr_55: -5.76940709e+01 + sys_corr_55: 5.76940709e+01 sys_corr_56: 2.29339867e+01 - sys_corr_57: 2.61910718e+01 + sys_corr_57: -2.61910718e+01 sys_corr_58: 2.18183146e+01 - sys_corr_59: -6.11668134e+00 + sys_corr_59: 6.11668134e+00 sys_corr_60: 1.71047636e+01 sys_corr_61: -1.44472739e+01 sys_corr_62: -1.35953971e+01 - sys_corr_63: -1.40443897e+01 - sys_corr_64: -3.71568854e-01 + sys_corr_63: 1.40443897e+01 + sys_corr_64: 3.71568854e-01 sys_corr_65: -2.02411580e+01 sys_corr_66: -8.69887332e+00 sys_corr_67: -5.37854316e+00 sys_corr_68: 2.14737665e+01 sys_corr_69: -1.93400769e+01 sys_corr_70: -1.30423334e+01 - sys_corr_71: -1.90279893e+01 - sys_corr_72: 1.10604576e+00 - sys_corr_73: 6.50034160e+00 + sys_corr_71: 6.50034160e+00 + sys_corr_72: -1.10604576e+00 + sys_corr_73: -1.90279893e+01 sys_corr_74: -8.64672896e+00 sys_corr_75: -1.15505891e+01 sys_corr_76: -7.28278979e+00 - sys_corr_77: 9.75757241e+00 - sys_corr_78: -5.67806572e+00 - sys_corr_79: 3.96779316e+00 - sys_corr_80: 2.45998613e+00 + sys_corr_77: -9.75757241e+00 + sys_corr_78: 3.96779316e+00 + sys_corr_79: -2.45998613e+00 + sys_corr_80: 5.67806572e+00 sys_corr_81: 6.84865237e+00 sys_corr_82: 5.18652137e+00 sys_corr_83: 7.01963428e-01 - sys_corr_84: 2.90624838e+00 + sys_corr_84: -2.90624838e+00 sys_corr_85: 3.21168916e+00 sys_corr_86: -8.09239338e+00 sys_corr_87: 1.38462818e+00 sys_corr_88: 1.92182334e+00 sys_corr_89: -1.00595954e+00 sys_corr_90: 7.56538713e-01 - sys_corr_91: 6.14124210e-01 + sys_corr_91: -6.14124210e-01 sys_corr_92: 6.40605521e-01 sys_corr_93: -3.21882953e-01 sys_corr_94: -1.76368882e+00 @@ -5324,40 +5324,40 @@ bins: sys_corr_96: -8.28051081e-02 sys_corr_97: -2.04449608e+00 sys_corr_98: -9.47232761e-01 - sys_corr_99: 1.78539110e-02 - sys_corr_100: -4.42460436e-01 + sys_corr_99: -1.78539110e-02 + sys_corr_100: 4.42460436e-01 sys_corr_101: -1.15099079e-01 - sys_corr_102: -3.85829266e-02 - sys_corr_103: 2.73459878e+00 - sys_corr_104: -3.85056772e-01 - sys_corr_105: 1.95513802e+00 - sys_corr_106: 4.40811697e-01 - sys_corr_107: 1.87096485e-01 + sys_corr_102: 3.85829266e-02 + sys_corr_103: -2.73459878e+00 + sys_corr_104: 3.85056772e-01 + sys_corr_105: -1.95513802e+00 + sys_corr_106: -4.40811697e-01 + sys_corr_107: -1.87096485e-01 sys_corr_108: 6.31604460e-02 sys_corr_109: -3.85997090e-01 sys_corr_110: 2.62642749e-02 - sys_corr_111: -4.29852639e-01 + sys_corr_111: 4.29852639e-01 sys_corr_112: 5.63146464e-03 sys_corr_113: -6.10999070e-02 sys_corr_114: 6.76291857e-04 - sys_corr_115: 2.90975619e-02 + sys_corr_115: -2.90975619e-02 sys_corr_116: -8.79699669e-02 sys_corr_117: 8.21285466e-02 sys_corr_118: 1.75613945e-02 sys_corr_119: -2.23024510e-03 sys_corr_120: 3.19925313e-02 - sys_corr_121: -6.78100551e-03 - sys_corr_122: 1.14544731e-04 - sys_corr_123: -1.44673813e-02 + sys_corr_121: 6.78100551e-03 + sys_corr_122: -1.44673813e-02 + sys_corr_123: 1.14544731e-04 sys_corr_124: 9.49437022e-02 - sys_corr_125: -2.81647361e-02 - sys_corr_126: -1.14533650e-03 + sys_corr_125: 2.81647361e-02 + sys_corr_126: 1.14533650e-03 sys_corr_127: -6.43540967e-01 sys_corr_128: -1.51504595e-01 - sys_corr_129: -1.28446347e-01 - sys_corr_130: -5.05029625e-03 + sys_corr_129: 1.28446347e-01 + sys_corr_130: 5.05029625e-03 sys_corr_131: 2.99806560e-02 - sys_corr_132: -3.11426016e-02 + sys_corr_132: 3.11426016e-02 stat: 0.0 luminosity: 5.62015630e+02 - sys_corr_1: 2.59584460e+02 @@ -5369,9 +5369,9 @@ bins: sys_corr_7: 1.46649277e+02 sys_corr_8: 8.12141599e+01 sys_corr_9: -9.37876032e+01 - sys_corr_10: 1.00702605e+01 + sys_corr_10: -1.00702605e+01 sys_corr_11: 1.33575220e+02 - sys_corr_12: -1.63170005e+02 + sys_corr_12: 1.63170005e+02 sys_corr_13: 1.12159319e+02 sys_corr_14: 3.66808291e+01 sys_corr_15: 3.37632928e+01 @@ -5397,60 +5397,60 @@ bins: sys_corr_35: 3.37665412e+01 sys_corr_36: 1.13923201e+01 sys_corr_37: -3.81468671e+01 - sys_corr_38: 5.45655763e+01 - sys_corr_39: -2.72613278e+01 - sys_corr_40: -8.24436924e+01 - sys_corr_41: -1.50278898e+02 - sys_corr_42: 1.87973113e+02 - sys_corr_43: 7.59636975e+01 + sys_corr_38: -5.45655763e+01 + sys_corr_39: 2.72613278e+01 + sys_corr_40: 8.24436924e+01 + sys_corr_41: 1.50278898e+02 + sys_corr_42: -1.87973113e+02 + sys_corr_43: -7.59636975e+01 sys_corr_44: 8.74049153e+01 - sys_corr_45: 1.22123885e+02 - sys_corr_46: -6.95788001e+01 + sys_corr_45: -1.22123885e+02 + sys_corr_46: 6.95788001e+01 sys_corr_47: -8.69985299e+00 - sys_corr_48: 5.01207500e+01 + sys_corr_48: -5.01207500e+01 sys_corr_49: 2.14567565e+01 sys_corr_50: -7.50690449e+00 sys_corr_51: 4.37215144e+01 - sys_corr_52: -2.37470594e+01 - sys_corr_53: -7.66882335e+00 + sys_corr_52: 2.37470594e+01 + sys_corr_53: 7.66882335e+00 sys_corr_54: -2.78288870e+01 - sys_corr_55: -4.53444049e+01 + sys_corr_55: 4.53444049e+01 sys_corr_56: 8.04733626e+00 - sys_corr_57: -6.23620230e+00 + sys_corr_57: 6.23620230e+00 sys_corr_58: 1.05980122e+01 - sys_corr_59: -9.89658801e-01 + sys_corr_59: 9.89658801e-01 sys_corr_60: 8.32743407e+00 sys_corr_61: -8.16831371e+00 sys_corr_62: 9.08921841e-01 - sys_corr_63: -6.17027019e+00 - sys_corr_64: -1.67269610e+01 + sys_corr_63: 6.17027019e+00 + sys_corr_64: 1.67269610e+01 sys_corr_65: 5.09132779e+00 sys_corr_66: 5.82105759e-01 sys_corr_67: -1.21149259e+01 sys_corr_68: 9.64644366e+00 sys_corr_69: -3.01042948e+00 sys_corr_70: -2.60499928e+00 - sys_corr_71: 1.17526691e+00 - sys_corr_72: -3.70673501e+00 - sys_corr_73: 8.87488275e+00 + sys_corr_71: 8.87488275e+00 + sys_corr_72: 3.70673501e+00 + sys_corr_73: 1.17526691e+00 sys_corr_74: 3.74826950e+00 sys_corr_75: 1.83259115e+00 sys_corr_76: -7.32748667e+00 - sys_corr_77: -1.25865967e+00 - sys_corr_78: -6.07684522e+00 - sys_corr_79: -2.21128912e-01 - sys_corr_80: -3.66592636e+00 + sys_corr_77: 1.25865967e+00 + sys_corr_78: -2.21128912e-01 + sys_corr_79: 3.66592636e+00 + sys_corr_80: 6.07684522e+00 sys_corr_81: 6.81807982e+00 sys_corr_82: 9.19680405e+00 sys_corr_83: 3.61090529e+00 - sys_corr_84: 2.62674332e+00 + sys_corr_84: -2.62674332e+00 sys_corr_85: 4.14068049e+00 sys_corr_86: -4.78513926e+00 sys_corr_87: 1.02522227e+01 sys_corr_88: 4.10002562e+00 sys_corr_89: -1.48566230e+00 sys_corr_90: -4.31408979e-03 - sys_corr_91: 2.01221358e-01 + sys_corr_91: -2.01221358e-01 sys_corr_92: -1.68216457e+00 sys_corr_93: -2.03752798e-01 sys_corr_94: -7.57834515e-01 @@ -5458,40 +5458,40 @@ bins: sys_corr_96: -8.65021329e-02 sys_corr_97: -1.29426434e+00 sys_corr_98: -6.78952552e-02 - sys_corr_99: 1.15012618e+00 - sys_corr_100: -7.68261399e-01 + sys_corr_99: -1.15012618e+00 + sys_corr_100: 7.68261399e-01 sys_corr_101: -4.21336193e-01 - sys_corr_102: -7.88028336e-01 - sys_corr_103: 2.98981518e+00 - sys_corr_104: -7.58514953e-01 - sys_corr_105: 1.70483163e+00 - sys_corr_106: 8.28645889e-01 - sys_corr_107: 7.22051797e-01 + sys_corr_102: 7.88028336e-01 + sys_corr_103: -2.98981518e+00 + sys_corr_104: 7.58514953e-01 + sys_corr_105: -1.70483163e+00 + sys_corr_106: -8.28645889e-01 + sys_corr_107: -7.22051797e-01 sys_corr_108: -2.39634246e-02 sys_corr_109: -5.85014780e-02 sys_corr_110: 1.77449328e-01 - sys_corr_111: -9.53053418e-01 + sys_corr_111: 9.53053418e-01 sys_corr_112: 7.81280984e-02 sys_corr_113: 3.61472519e-02 sys_corr_114: 1.41314138e-03 - sys_corr_115: 8.68342780e-02 + sys_corr_115: -8.68342780e-02 sys_corr_116: -4.30556402e-02 sys_corr_117: 5.27020852e-02 sys_corr_118: 3.63767766e-03 sys_corr_119: -1.71962376e-03 sys_corr_120: 2.71546293e-02 - sys_corr_121: -2.64915185e-04 - sys_corr_122: 9.35128379e-03 - sys_corr_123: -2.60200641e-02 + sys_corr_121: 2.64915185e-04 + sys_corr_122: -2.60200641e-02 + sys_corr_123: 9.35128379e-03 sys_corr_124: 7.13190624e-02 - sys_corr_125: -2.17642240e-02 - sys_corr_126: 2.85075071e-04 + sys_corr_125: 2.17642240e-02 + sys_corr_126: -2.85075071e-04 sys_corr_127: -3.58682020e-01 sys_corr_128: -2.02090473e-01 - sys_corr_129: 7.10298176e-02 - sys_corr_130: 1.31627288e-03 + sys_corr_129: -7.10298176e-02 + sys_corr_130: -1.31627288e-03 sys_corr_131: 2.60605703e-02 - sys_corr_132: 2.27790396e-02 + sys_corr_132: -2.27790396e-02 stat: 0.0 luminosity: 5.39288002e+02 - sys_corr_1: 2.76752992e+02 @@ -5503,9 +5503,9 @@ bins: sys_corr_7: 1.74844090e+02 sys_corr_8: 1.11758228e+02 sys_corr_9: -1.33812324e+02 - sys_corr_10: -1.81323938e+01 + sys_corr_10: 1.81323938e+01 sys_corr_11: 1.87370598e+02 - sys_corr_12: -2.39358043e+02 + sys_corr_12: 2.39358043e+02 sys_corr_13: 1.43671215e+02 sys_corr_14: 4.77630526e+01 sys_corr_15: 1.94276819e+01 @@ -5531,60 +5531,60 @@ bins: sys_corr_35: 3.90416500e+00 sys_corr_36: 4.49266841e+01 sys_corr_37: 8.32366628e+01 - sys_corr_38: -2.10446709e+00 - sys_corr_39: -2.29190113e+01 - sys_corr_40: -6.46265917e+00 - sys_corr_41: 7.72518586e+01 - sys_corr_42: 2.05852011e+01 - sys_corr_43: -7.97356253e+01 + sys_corr_38: 2.10446709e+00 + sys_corr_39: 2.29190113e+01 + sys_corr_40: 6.46265917e+00 + sys_corr_41: -7.72518586e+01 + sys_corr_42: -2.05852011e+01 + sys_corr_43: 7.97356253e+01 sys_corr_44: -2.34971036e+01 - sys_corr_45: -1.30410611e+02 - sys_corr_46: -8.50424578e+01 + sys_corr_45: 1.30410611e+02 + sys_corr_46: 8.50424578e+01 sys_corr_47: 1.55396239e+02 - sys_corr_48: -2.57001113e+01 + sys_corr_48: 2.57001113e+01 sys_corr_49: 6.51711415e+01 sys_corr_50: -8.16702592e+01 sys_corr_51: 4.28214296e+01 - sys_corr_52: -5.02685089e+01 - sys_corr_53: -4.20384927e+01 + sys_corr_52: 5.02685089e+01 + sys_corr_53: 4.20384927e+01 sys_corr_54: -7.63240311e-01 - sys_corr_55: -1.12027649e+01 + sys_corr_55: 1.12027649e+01 sys_corr_56: -1.10442213e+01 - sys_corr_57: 6.45226252e+00 + sys_corr_57: -6.45226252e+00 sys_corr_58: 6.76427692e+00 - sys_corr_59: -1.50471835e+01 + sys_corr_59: 1.50471835e+01 sys_corr_60: 2.04846222e-01 sys_corr_61: 1.75434783e+01 sys_corr_62: -1.00173300e+01 - sys_corr_63: -1.72786732e+01 - sys_corr_64: 3.54006204e+00 + sys_corr_63: 1.72786732e+01 + sys_corr_64: -3.54006204e+00 sys_corr_65: -1.25986505e+01 sys_corr_66: 1.76010500e+01 sys_corr_67: 8.23015758e+00 sys_corr_68: -6.88549769e+00 sys_corr_69: 2.30811175e+01 sys_corr_70: 1.18199937e+00 - sys_corr_71: 2.77513647e+01 - sys_corr_72: 8.80037166e+00 - sys_corr_73: -5.38235437e+00 + sys_corr_71: -5.38235437e+00 + sys_corr_72: -8.80037166e+00 + sys_corr_73: 2.77513647e+01 sys_corr_74: 1.33904575e+01 sys_corr_75: -1.75105463e+01 sys_corr_76: 1.04075426e+01 - sys_corr_77: -1.10318179e+01 - sys_corr_78: 5.77821852e+00 - sys_corr_79: 1.15009447e+01 - sys_corr_80: -5.81348176e+00 + sys_corr_77: 1.10318179e+01 + sys_corr_78: 1.15009447e+01 + sys_corr_79: 5.81348176e+00 + sys_corr_80: -5.77821852e+00 sys_corr_81: 2.62591171e-01 sys_corr_82: -7.44953801e-01 sys_corr_83: 3.35132448e+00 - sys_corr_84: 7.98018101e-02 + sys_corr_84: -7.98018101e-02 sys_corr_85: 5.72662325e+00 sys_corr_86: 8.21821489e+00 sys_corr_87: -2.65840061e+00 sys_corr_88: -5.01542736e+00 sys_corr_89: 4.16596312e-01 sys_corr_90: 1.35710262e+00 - sys_corr_91: 5.20251312e+00 + sys_corr_91: -5.20251312e+00 sys_corr_92: -5.62725786e+00 sys_corr_93: -3.60054003e-01 sys_corr_94: -1.41667138e+00 @@ -5592,40 +5592,40 @@ bins: sys_corr_96: -2.17558263e-02 sys_corr_97: -5.36749935e-01 sys_corr_98: -5.63081022e-01 - sys_corr_99: -3.42840189e-01 - sys_corr_100: -4.13349358e-01 + sys_corr_99: 3.42840189e-01 + sys_corr_100: 4.13349358e-01 sys_corr_101: -6.45986959e-01 - sys_corr_102: -1.71273965e-01 - sys_corr_103: 1.12239743e+00 - sys_corr_104: -1.43889454e-01 - sys_corr_105: 5.13761675e-01 - sys_corr_106: 5.84216105e-01 - sys_corr_107: 8.49380711e-01 + sys_corr_102: 1.71273965e-01 + sys_corr_103: -1.12239743e+00 + sys_corr_104: 1.43889454e-01 + sys_corr_105: -5.13761675e-01 + sys_corr_106: -5.84216105e-01 + sys_corr_107: -8.49380711e-01 sys_corr_108: -1.00147808e-01 sys_corr_109: 1.77739015e-01 sys_corr_110: 3.22642051e-01 - sys_corr_111: -3.20256114e-02 + sys_corr_111: 3.20256114e-02 sys_corr_112: 9.56086215e-02 sys_corr_113: 5.16547731e-03 sys_corr_114: 1.42311441e-03 - sys_corr_115: 1.36248689e-01 + sys_corr_115: -1.36248689e-01 sys_corr_116: 1.90753773e-02 sys_corr_117: -1.63723774e-02 sys_corr_118: -1.49664172e-02 sys_corr_119: 2.41186922e-03 sys_corr_120: -4.24858676e-04 - sys_corr_121: 1.07045301e-02 - sys_corr_122: 1.96269598e-02 - sys_corr_123: -2.78433287e-02 + sys_corr_121: -1.07045301e-02 + sys_corr_122: -2.78433287e-02 + sys_corr_123: 1.96269598e-02 sys_corr_124: -2.00368796e-02 - sys_corr_125: -9.97279461e-03 - sys_corr_126: 7.03448944e-03 + sys_corr_125: 9.97279461e-03 + sys_corr_126: -7.03448944e-03 sys_corr_127: 1.85075491e-01 sys_corr_128: -4.85463348e-02 - sys_corr_129: -7.49732412e-02 - sys_corr_130: 1.13247972e-02 + sys_corr_129: 7.49732412e-02 + sys_corr_130: -1.13247972e-02 sys_corr_131: 1.82641396e-03 - sys_corr_132: -4.82168758e-03 + sys_corr_132: 4.82168758e-03 stat: 0.0 luminosity: 5.66723762e+02 - sys_corr_1: 2.50917110e+02 @@ -5637,9 +5637,9 @@ bins: sys_corr_7: 1.62732573e+02 sys_corr_8: 1.27051835e+02 sys_corr_9: -1.35369879e+02 - sys_corr_10: -2.41039249e+01 + sys_corr_10: 2.41039249e+01 sys_corr_11: 1.79093203e+02 - sys_corr_12: -2.08646587e+02 + sys_corr_12: 2.08646587e+02 sys_corr_13: 1.52229383e+02 sys_corr_14: 4.60336144e+01 sys_corr_15: 4.43002979e+01 @@ -5665,60 +5665,60 @@ bins: sys_corr_35: -1.02884994e+00 sys_corr_36: 2.28433848e+01 sys_corr_37: 3.07209129e+01 - sys_corr_38: -2.32548473e+01 - sys_corr_39: 3.18283582e+01 - sys_corr_40: 1.18420298e+02 - sys_corr_41: -1.09859094e+02 - sys_corr_42: -1.94136005e+02 - sys_corr_43: 1.33500571e+02 + sys_corr_38: 2.32548473e+01 + sys_corr_39: -3.18283582e+01 + sys_corr_40: -1.18420298e+02 + sys_corr_41: 1.09859094e+02 + sys_corr_42: 1.94136005e+02 + sys_corr_43: -1.33500571e+02 sys_corr_44: -4.66631725e+01 - sys_corr_45: -4.46890492e+00 - sys_corr_46: -9.49658579e-01 + sys_corr_45: 4.46890492e+00 + sys_corr_46: 9.49658579e-01 sys_corr_47: -4.12345199e+01 - sys_corr_48: 8.47697056e+01 + sys_corr_48: -8.47697056e+01 sys_corr_49: 7.17827353e+01 sys_corr_50: 3.55020852e+01 sys_corr_51: 1.96150155e+01 - sys_corr_52: 2.56307788e+01 - sys_corr_53: 2.21154525e+01 + sys_corr_52: -2.56307788e+01 + sys_corr_53: -2.21154525e+01 sys_corr_54: -4.91699200e+00 - sys_corr_55: 1.61559765e+01 + sys_corr_55: -1.61559765e+01 sys_corr_56: 1.48081465e+01 - sys_corr_57: 2.76438080e+01 + sys_corr_57: -2.76438080e+01 sys_corr_58: 1.01849437e+01 - sys_corr_59: -1.36219974e+01 + sys_corr_59: 1.36219974e+01 sys_corr_60: 9.21020530e+00 sys_corr_61: -9.16639820e+00 sys_corr_62: 1.37498815e+01 - sys_corr_63: -3.16409635e+01 - sys_corr_64: -9.08827295e+00 + sys_corr_63: 3.16409635e+01 + sys_corr_64: 9.08827295e+00 sys_corr_65: -3.18422607e+00 sys_corr_66: 4.57492278e+00 sys_corr_67: -1.71554689e+01 sys_corr_68: 2.93475700e+00 sys_corr_69: -4.27319717e+00 sys_corr_70: 1.31444091e+00 - sys_corr_71: -1.16275738e+00 - sys_corr_72: 3.05338781e+00 - sys_corr_73: 3.36563585e+00 + sys_corr_71: 3.36563585e+00 + sys_corr_72: -3.05338781e+00 + sys_corr_73: -1.16275738e+00 sys_corr_74: 7.28316326e+00 sys_corr_75: -1.16755199e+01 sys_corr_76: 3.15576568e+00 - sys_corr_77: -8.71309346e+00 - sys_corr_78: 2.91986360e+00 - sys_corr_79: -2.26715709e+00 - sys_corr_80: -5.07266630e+00 + sys_corr_77: 8.71309346e+00 + sys_corr_78: -2.26715709e+00 + sys_corr_79: 5.07266630e+00 + sys_corr_80: -2.91986360e+00 sys_corr_81: 8.29945809e+00 sys_corr_82: 1.72903675e+00 sys_corr_83: 7.76559144e+00 - sys_corr_84: -4.11073714e+00 + sys_corr_84: 4.11073714e+00 sys_corr_85: 1.22077444e+00 sys_corr_86: -4.74355633e+00 sys_corr_87: -5.19631203e+00 sys_corr_88: 6.77128271e+00 sys_corr_89: -1.55243186e-01 sys_corr_90: 1.68389791e+00 - sys_corr_91: 3.47401084e+00 + sys_corr_91: -3.47401084e+00 sys_corr_92: -1.44886918e+00 sys_corr_93: -2.29950708e-01 sys_corr_94: -8.30630587e-01 @@ -5726,40 +5726,40 @@ bins: sys_corr_96: 2.73082785e-02 sys_corr_97: 4.76334633e-01 sys_corr_98: 3.21874010e-01 - sys_corr_99: 3.70167255e-01 - sys_corr_100: 2.53254632e-01 + sys_corr_99: -3.70167255e-01 + sys_corr_100: -2.53254632e-01 sys_corr_101: 4.24649910e-01 - sys_corr_102: 1.10940535e+00 - sys_corr_103: -3.74359045e+00 - sys_corr_104: -7.49051530e-01 - sys_corr_105: -1.56256841e+00 - sys_corr_106: -3.14988065e-01 - sys_corr_107: 4.82614836e-02 + sys_corr_102: -1.10940535e+00 + sys_corr_103: 3.74359045e+00 + sys_corr_104: 7.49051530e-01 + sys_corr_105: 1.56256841e+00 + sys_corr_106: 3.14988065e-01 + sys_corr_107: -4.82614836e-02 sys_corr_108: 1.40019377e-01 sys_corr_109: 5.02098187e-02 sys_corr_110: -4.82833069e-02 - sys_corr_111: 3.67526346e-02 + sys_corr_111: -3.67526346e-02 sys_corr_112: 1.83065554e-02 sys_corr_113: -5.61775973e-02 sys_corr_114: 7.64224596e-04 - sys_corr_115: 3.33196633e-02 + sys_corr_115: -3.33196633e-02 sys_corr_116: 5.85818420e-02 sys_corr_117: -5.59442235e-02 sys_corr_118: 6.14181102e-03 sys_corr_119: 3.72031931e-04 sys_corr_120: -3.32036312e-02 - sys_corr_121: 4.09700794e-03 - sys_corr_122: -8.19609260e-03 - sys_corr_123: 2.50363223e-02 + sys_corr_121: -4.09700794e-03 + sys_corr_122: 2.50363223e-02 + sys_corr_123: -8.19609260e-03 sys_corr_124: -6.47858720e-02 - sys_corr_125: 2.78902872e-02 - sys_corr_126: -3.37116232e-03 + sys_corr_125: -2.78902872e-02 + sys_corr_126: 3.37116232e-03 sys_corr_127: -1.03586006e-01 sys_corr_128: 1.11860423e-01 - sys_corr_129: 2.58269714e-02 - sys_corr_130: 3.85374817e-03 + sys_corr_129: -2.58269714e-02 + sys_corr_130: -3.85374817e-03 sys_corr_131: -2.47168873e-02 - sys_corr_132: 1.14767312e-02 + sys_corr_132: -1.14767312e-02 stat: 0.0 luminosity: 5.30043646e+02 - sys_corr_1: 2.33721718e+02 @@ -5771,9 +5771,9 @@ bins: sys_corr_7: 1.42336079e+02 sys_corr_8: 1.30612198e+02 sys_corr_9: -1.46620609e+02 - sys_corr_10: -3.87943066e+01 + sys_corr_10: 3.87943066e+01 sys_corr_11: 1.55330584e+02 - sys_corr_12: -2.00527370e+02 + sys_corr_12: 2.00527370e+02 sys_corr_13: 1.43675094e+02 sys_corr_14: 3.94069358e+01 sys_corr_15: 3.87282014e+01 @@ -5799,60 +5799,60 @@ bins: sys_corr_35: 3.17645465e+01 sys_corr_36: 3.21414522e+01 sys_corr_37: 7.18522873e+01 - sys_corr_38: 7.59168874e+01 - sys_corr_39: 1.67364463e+00 - sys_corr_40: -1.29586367e+02 - sys_corr_41: 1.10589032e+02 - sys_corr_42: 1.74560195e+01 - sys_corr_43: -6.83766366e+01 + sys_corr_38: -7.59168874e+01 + sys_corr_39: -1.67364463e+00 + sys_corr_40: 1.29586367e+02 + sys_corr_41: -1.10589032e+02 + sys_corr_42: -1.74560195e+01 + sys_corr_43: 6.83766366e+01 sys_corr_44: -5.91771036e+01 - sys_corr_45: 4.49102310e+01 - sys_corr_46: 1.17419438e+02 + sys_corr_45: -4.49102310e+01 + sys_corr_46: -1.17419438e+02 sys_corr_47: -1.65807174e+02 - sys_corr_48: 5.30931947e+01 + sys_corr_48: -5.30931947e+01 sys_corr_49: 5.95476558e+00 sys_corr_50: -3.64395275e+01 sys_corr_51: -3.32755098e+01 - sys_corr_52: -8.36479986e+00 - sys_corr_53: 1.70471061e+01 + sys_corr_52: 8.36479986e+00 + sys_corr_53: -1.70471061e+01 sys_corr_54: -1.15929385e+01 - sys_corr_55: 6.22044768e+01 + sys_corr_55: -6.22044768e+01 sys_corr_56: -3.91432004e+01 - sys_corr_57: 1.66283334e+01 + sys_corr_57: -1.66283334e+01 sys_corr_58: -1.00382193e+01 - sys_corr_59: 2.66636980e+01 + sys_corr_59: -2.66636980e+01 sys_corr_60: -5.28429606e+00 sys_corr_61: 1.37919240e+01 sys_corr_62: -4.67638166e+00 - sys_corr_63: 1.54217495e+01 - sys_corr_64: 8.49833355e+00 + sys_corr_63: -1.54217495e+01 + sys_corr_64: -8.49833355e+00 sys_corr_65: 1.19643462e+01 sys_corr_66: 5.74460643e+00 sys_corr_67: -8.37581931e+00 sys_corr_68: -1.29990048e+01 sys_corr_69: 5.18753012e-01 sys_corr_70: 2.18787773e+00 - sys_corr_71: 1.28776694e+01 - sys_corr_72: -1.91902906e-01 - sys_corr_73: 2.07559202e+01 + sys_corr_71: 2.07559202e+01 + sys_corr_72: 1.91902906e-01 + sys_corr_73: 1.28776694e+01 sys_corr_74: -4.34601659e+00 sys_corr_75: -8.45210039e+00 sys_corr_76: 8.09218284e-01 - sys_corr_77: -2.61409148e+00 - sys_corr_78: 2.20106364e+00 - sys_corr_79: -5.20466469e+00 - sys_corr_80: 8.13834197e-01 + sys_corr_77: 2.61409148e+00 + sys_corr_78: -5.20466469e+00 + sys_corr_79: -8.13834197e-01 + sys_corr_80: -2.20106364e+00 sys_corr_81: -1.78061431e+00 sys_corr_82: 2.45851566e+00 sys_corr_83: 3.84544007e+00 - sys_corr_84: -8.24064894e-01 + sys_corr_84: 8.24064894e-01 sys_corr_85: 2.92533949e+00 sys_corr_86: -6.11728042e+00 sys_corr_87: -6.18944748e+00 sys_corr_88: 6.18517649e+00 sys_corr_89: -2.96432670e-01 sys_corr_90: -4.54753832e-01 - sys_corr_91: 2.94713671e+00 + sys_corr_91: -2.94713671e+00 sys_corr_92: 1.41760298e+00 sys_corr_93: -9.64956190e-02 sys_corr_94: -3.09630402e-01 @@ -5860,40 +5860,40 @@ bins: sys_corr_96: -1.78761076e-01 sys_corr_97: -2.63585122e-01 sys_corr_98: 3.86260854e-02 - sys_corr_99: 6.32931623e-01 - sys_corr_100: 5.28737580e-01 + sys_corr_99: -6.32931623e-01 + sys_corr_100: -5.28737580e-01 sys_corr_101: 3.28738889e-01 - sys_corr_102: 7.06325453e-01 - sys_corr_103: -1.56901659e+00 - sys_corr_104: 1.87796828e-01 - sys_corr_105: -6.72014446e-01 - sys_corr_106: -3.95432679e-01 - sys_corr_107: -5.15398045e-01 + sys_corr_102: -7.06325453e-01 + sys_corr_103: 1.56901659e+00 + sys_corr_104: -1.87796828e-01 + sys_corr_105: 6.72014446e-01 + sys_corr_106: 3.95432679e-01 + sys_corr_107: 5.15398045e-01 sys_corr_108: 1.74765840e-01 sys_corr_109: -1.80061154e-03 sys_corr_110: -1.85920686e-01 - sys_corr_111: 2.74562750e-01 + sys_corr_111: -2.74562750e-01 sys_corr_112: -7.10666736e-02 sys_corr_113: 1.43801273e-02 sys_corr_114: -9.01083384e-04 - sys_corr_115: -1.41171231e-01 + sys_corr_115: 1.41171231e-01 sys_corr_116: 5.69046980e-02 sys_corr_117: -4.91904254e-02 sys_corr_118: 4.74449061e-02 sys_corr_119: 2.15302299e-03 sys_corr_120: -3.45396040e-02 - sys_corr_121: 5.49031906e-04 - sys_corr_122: -1.17990814e-02 - sys_corr_123: 3.10996001e-02 + sys_corr_121: -5.49031906e-04 + sys_corr_122: 3.10996001e-02 + sys_corr_123: -1.17990814e-02 sys_corr_124: -8.92052231e-02 - sys_corr_125: 3.02869814e-02 - sys_corr_126: -7.56020148e-03 + sys_corr_125: -3.02869814e-02 + sys_corr_126: 7.56020148e-03 sys_corr_127: 2.71026927e-01 sys_corr_128: 1.40190561e-01 - sys_corr_129: 7.63061064e-02 - sys_corr_130: 4.73574375e-03 + sys_corr_129: -7.63061064e-02 + sys_corr_130: -4.73574375e-03 sys_corr_131: -2.62612942e-02 - sys_corr_132: 3.25741777e-02 + sys_corr_132: -3.25741777e-02 stat: 0.0 luminosity: 5.13668870e+02 - sys_corr_1: 2.05144320e+02 @@ -5905,9 +5905,9 @@ bins: sys_corr_7: 1.11426342e+02 sys_corr_8: 1.05449965e+02 sys_corr_9: -1.28795099e+02 - sys_corr_10: -2.96336807e+01 + sys_corr_10: 2.96336807e+01 sys_corr_11: 1.43385756e+02 - sys_corr_12: -1.70480605e+02 + sys_corr_12: 1.70480605e+02 sys_corr_13: 1.28281107e+02 sys_corr_14: 2.70620406e+01 sys_corr_15: 3.63789691e+01 @@ -5933,60 +5933,60 @@ bins: sys_corr_35: -5.62250973e+00 sys_corr_36: 6.80009415e+00 sys_corr_37: 1.59132681e+01 - sys_corr_38: 1.93064587e+01 - sys_corr_39: 3.74324952e+00 - sys_corr_40: -4.00771613e+01 - sys_corr_41: -8.73479755e+00 - sys_corr_42: 1.20955200e+01 - sys_corr_43: 1.69572548e+02 + sys_corr_38: -1.93064587e+01 + sys_corr_39: -3.74324952e+00 + sys_corr_40: 4.00771613e+01 + sys_corr_41: 8.73479755e+00 + sys_corr_42: -1.20955200e+01 + sys_corr_43: -1.69572548e+02 sys_corr_44: 7.91319077e+01 - sys_corr_45: -7.75903132e+01 - sys_corr_46: 5.82456305e+01 + sys_corr_45: 7.75903132e+01 + sys_corr_46: -5.82456305e+01 sys_corr_47: 5.82129447e+01 - sys_corr_48: -1.29531329e+02 + sys_corr_48: 1.29531329e+02 sys_corr_49: -1.43900223e+02 sys_corr_50: -1.64908128e+01 sys_corr_51: 8.49587501e+00 - sys_corr_52: 1.76249408e+01 - sys_corr_53: 1.01480241e+01 + sys_corr_52: -1.76249408e+01 + sys_corr_53: -1.01480241e+01 sys_corr_54: 3.91107220e+01 - sys_corr_55: 6.99844637e+01 + sys_corr_55: -6.99844637e+01 sys_corr_56: 1.33273436e+01 - sys_corr_57: 1.05329985e+01 + sys_corr_57: -1.05329985e+01 sys_corr_58: -1.66486572e+01 - sys_corr_59: 3.61592433e+01 + sys_corr_59: -3.61592433e+01 sys_corr_60: -9.55582047e+00 sys_corr_61: 1.63303797e+01 sys_corr_62: -1.08334874e+01 - sys_corr_63: 2.98151838e+01 - sys_corr_64: -1.88332905e+01 + sys_corr_63: -2.98151838e+01 + sys_corr_64: 1.88332905e+01 sys_corr_65: 1.86533185e+00 sys_corr_66: 1.70662828e+01 sys_corr_67: -1.36048927e+01 sys_corr_68: -9.29112373e+00 sys_corr_69: 1.20239030e+00 sys_corr_70: -3.37351184e+00 - sys_corr_71: -1.38534428e+01 - sys_corr_72: 1.73869562e+00 - sys_corr_73: 5.55950340e+00 + sys_corr_71: 5.55950340e+00 + sys_corr_72: -1.73869562e+00 + sys_corr_73: -1.38534428e+01 sys_corr_74: 1.72415955e+01 sys_corr_75: 9.83128138e-01 sys_corr_76: 7.58558138e+00 - sys_corr_77: 3.19760126e-01 - sys_corr_78: 2.06818079e-01 - sys_corr_79: -1.41484506e+00 - sys_corr_80: 3.93805722e+00 + sys_corr_77: -3.19760126e-01 + sys_corr_78: -1.41484506e+00 + sys_corr_79: -3.93805722e+00 + sys_corr_80: -2.06818079e-01 sys_corr_81: -1.19860500e-01 sys_corr_82: -2.74082752e+00 sys_corr_83: 4.37827598e+00 - sys_corr_84: 3.74057488e+00 + sys_corr_84: -3.74057488e+00 sys_corr_85: -6.45654162e-01 sys_corr_86: -2.10329207e+00 sys_corr_87: -4.22853299e+00 sys_corr_88: 1.06039087e+01 sys_corr_89: -1.80013925e-01 sys_corr_90: -4.89036425e+00 - sys_corr_91: 3.84373767e+00 + sys_corr_91: -3.84373767e+00 sys_corr_92: 4.94152787e-01 sys_corr_93: 1.42663740e-01 sys_corr_94: 6.81110326e-01 @@ -5994,40 +5994,40 @@ bins: sys_corr_96: -1.22542432e-01 sys_corr_97: 6.24193533e-01 sys_corr_98: 1.52037629e-01 - sys_corr_99: -1.87176126e-01 - sys_corr_100: 1.57814799e-01 + sys_corr_99: 1.87176126e-01 + sys_corr_100: -1.57814799e-01 sys_corr_101: 1.33274739e-01 - sys_corr_102: 8.21655613e-02 - sys_corr_103: -9.82694331e-01 - sys_corr_104: 5.96367721e-01 - sys_corr_105: -8.14212035e-01 - sys_corr_106: -2.49652300e-01 - sys_corr_107: -2.34227381e-01 + sys_corr_102: -8.21655613e-02 + sys_corr_103: 9.82694331e-01 + sys_corr_104: -5.96367721e-01 + sys_corr_105: 8.14212035e-01 + sys_corr_106: 2.49652300e-01 + sys_corr_107: 2.34227381e-01 sys_corr_108: 3.52034172e-02 sys_corr_109: -2.74222856e-02 sys_corr_110: -2.65981880e-02 - sys_corr_111: 2.97605755e-01 + sys_corr_111: -2.97605755e-01 sys_corr_112: -1.15783719e-01 sys_corr_113: -3.44970213e-02 sys_corr_114: -1.13907478e-03 - sys_corr_115: -1.65200148e-01 + sys_corr_115: 1.65200148e-01 sys_corr_116: 7.46492022e-02 sys_corr_117: -6.47347407e-02 sys_corr_118: -6.17618630e-02 sys_corr_119: -5.48811419e-04 sys_corr_120: -4.04314546e-02 - sys_corr_121: 4.00292385e-03 - sys_corr_122: -1.18243173e-02 - sys_corr_123: 3.38013522e-02 + sys_corr_121: -4.00292385e-03 + sys_corr_122: 3.38013522e-02 + sys_corr_123: -1.18243173e-02 sys_corr_124: -1.34898776e-01 - sys_corr_125: 3.76345582e-02 - sys_corr_126: -9.13805052e-03 + sys_corr_125: -3.76345582e-02 + sys_corr_126: 9.13805052e-03 sys_corr_127: -2.29088736e-02 sys_corr_128: 1.56252113e-01 - sys_corr_129: -1.08657027e-02 - sys_corr_130: 1.92139347e-03 + sys_corr_129: 1.08657027e-02 + sys_corr_130: -1.92139347e-03 sys_corr_131: -3.11207585e-02 - sys_corr_132: 6.85147699e-03 + sys_corr_132: -6.85147699e-03 stat: 0.0 luminosity: 4.77209722e+02 - sys_corr_1: 1.75168310e+02 @@ -6039,9 +6039,9 @@ bins: sys_corr_7: 9.23042242e+01 sys_corr_8: 9.45164072e+01 sys_corr_9: -1.23880971e+02 - sys_corr_10: -3.48204749e+01 + sys_corr_10: 3.48204749e+01 sys_corr_11: 1.30366817e+02 - sys_corr_12: -1.53575020e+02 + sys_corr_12: 1.53575020e+02 sys_corr_13: 1.19109603e+02 sys_corr_14: 2.16531851e+01 sys_corr_15: 2.89722420e+01 @@ -6067,60 +6067,60 @@ bins: sys_corr_35: -1.17121249e+01 sys_corr_36: -1.00046087e+01 sys_corr_37: -9.80387692e+00 - sys_corr_38: -7.28120166e+00 - sys_corr_39: -4.72659916e+00 - sys_corr_40: -9.47589977e+00 - sys_corr_41: 2.79027470e+01 - sys_corr_42: 4.57039687e+01 - sys_corr_43: -6.73843688e+01 + sys_corr_38: 7.28120166e+00 + sys_corr_39: 4.72659916e+00 + sys_corr_40: 9.47589977e+00 + sys_corr_41: -2.79027470e+01 + sys_corr_42: -4.57039687e+01 + sys_corr_43: 6.73843688e+01 sys_corr_44: 1.90924508e+01 - sys_corr_45: 2.85645004e+01 - sys_corr_46: -7.36869976e+01 + sys_corr_45: -2.85645004e+01 + sys_corr_46: 7.36869976e+01 sys_corr_47: 6.12660995e+01 - sys_corr_48: -1.79913531e+01 + sys_corr_48: 1.79913531e+01 sys_corr_49: 9.66223843e+01 sys_corr_50: 1.66632656e+02 sys_corr_51: -8.38537684e+01 - sys_corr_52: 1.24716555e+02 - sys_corr_53: 2.24018531e+01 + sys_corr_52: -1.24716555e+02 + sys_corr_53: -2.24018531e+01 sys_corr_54: 3.83871084e+01 - sys_corr_55: 4.43232119e+01 + sys_corr_55: -4.43232119e+01 sys_corr_56: -2.18357727e+01 - sys_corr_57: -3.81469958e+01 + sys_corr_57: 3.81469958e+01 sys_corr_58: -1.03970878e+00 - sys_corr_59: 2.19016263e+01 + sys_corr_59: -2.19016263e+01 sys_corr_60: 5.88920570e+00 sys_corr_61: 4.57015875e+00 sys_corr_62: 2.09044900e+00 - sys_corr_63: -2.54887673e+01 - sys_corr_64: -1.96007679e+01 + sys_corr_63: 2.54887673e+01 + sys_corr_64: 1.96007679e+01 sys_corr_65: 1.82535332e+01 sys_corr_66: -5.97975494e+00 sys_corr_67: 1.04034358e+01 sys_corr_68: -5.68780323e+00 sys_corr_69: 1.89892317e+01 sys_corr_70: -2.02603801e+00 - sys_corr_71: -1.39905035e+01 - sys_corr_72: -7.54716622e+01 - sys_corr_73: -1.56187768e+00 + sys_corr_71: -1.56187768e+00 + sys_corr_72: 7.54716622e+01 + sys_corr_73: -1.39905035e+01 sys_corr_74: 7.63917555e+00 sys_corr_75: -2.07139715e+00 sys_corr_76: 4.25099971e+00 - sys_corr_77: -1.47449386e-01 - sys_corr_78: -8.18234133e-01 - sys_corr_79: -4.12103948e+00 - sys_corr_80: -8.22811845e-01 + sys_corr_77: 1.47449386e-01 + sys_corr_78: -4.12103948e+00 + sys_corr_79: 8.22811845e-01 + sys_corr_80: 8.18234133e-01 sys_corr_81: 3.51286444e-01 sys_corr_82: 1.05039459e+00 sys_corr_83: 6.60637980e+00 - sys_corr_84: -1.20086080e+00 + sys_corr_84: 1.20086080e+00 sys_corr_85: 2.56870902e+00 sys_corr_86: -7.22522815e+00 sys_corr_87: -2.02860358e+00 sys_corr_88: 5.24321202e+00 sys_corr_89: 2.63358042e-01 sys_corr_90: 2.37996674e+00 - sys_corr_91: -3.44418696e+00 + sys_corr_91: 3.44418696e+00 sys_corr_92: 1.27181317e+00 sys_corr_93: 4.35407260e-01 sys_corr_94: 2.47560800e+00 @@ -6128,40 +6128,40 @@ bins: sys_corr_96: -1.60340646e-01 sys_corr_97: 1.41653080e+00 sys_corr_98: 6.70478537e-01 - sys_corr_99: -4.27385541e-01 - sys_corr_100: 2.61622701e-01 + sys_corr_99: 4.27385541e-01 + sys_corr_100: -2.61622701e-01 sys_corr_101: 2.31377842e-01 - sys_corr_102: -9.87422613e-02 - sys_corr_103: -1.46517045e+00 - sys_corr_104: 6.47200716e-01 - sys_corr_105: -1.36612210e+00 - sys_corr_106: -3.95832719e-01 - sys_corr_107: -8.05437939e-01 + sys_corr_102: 9.87422613e-02 + sys_corr_103: 1.46517045e+00 + sys_corr_104: -6.47200716e-01 + sys_corr_105: 1.36612210e+00 + sys_corr_106: 3.95832719e-01 + sys_corr_107: 8.05437939e-01 sys_corr_108: 3.03238239e-01 sys_corr_109: -3.92826649e-01 sys_corr_110: -2.21494155e-01 - sys_corr_111: 3.10178473e-01 + sys_corr_111: -3.10178473e-01 sys_corr_112: -3.06187239e-01 sys_corr_113: -1.10742876e-01 sys_corr_114: -3.25144792e-03 - sys_corr_115: -2.57979031e-01 + sys_corr_115: 2.57979031e-01 sys_corr_116: 6.99810906e-02 sys_corr_117: -6.36397912e-02 sys_corr_118: 6.21033043e-02 sys_corr_119: -8.67509821e-03 sys_corr_120: -4.26720107e-02 - sys_corr_121: -1.18166355e-03 - sys_corr_122: -1.71747973e-02 - sys_corr_123: 4.11881871e-02 + sys_corr_121: 1.18166355e-03 + sys_corr_122: 4.11881871e-02 + sys_corr_123: -1.71747973e-02 sys_corr_124: -1.42287517e-01 - sys_corr_125: 3.90798115e-02 - sys_corr_126: -1.21542745e-02 + sys_corr_125: -3.90798115e-02 + sys_corr_126: 1.21542745e-02 sys_corr_127: 2.02108723e-01 sys_corr_128: 2.57849759e-01 - sys_corr_129: -6.32299291e-03 - sys_corr_130: 2.80574304e-03 + sys_corr_129: 6.32299291e-03 + sys_corr_130: -2.80574304e-03 sys_corr_131: -2.92541943e-02 - sys_corr_132: 2.71542039e-02 + sys_corr_132: -2.71542039e-02 stat: 0.0 luminosity: 4.24158086e+02 - sys_corr_1: 1.46163009e+02 @@ -6173,9 +6173,9 @@ bins: sys_corr_7: 7.06898226e+01 sys_corr_8: 8.92292304e+01 sys_corr_9: -1.36668639e+02 - sys_corr_10: -3.58142826e+01 + sys_corr_10: 3.58142826e+01 sys_corr_11: 1.18514009e+02 - sys_corr_12: -1.37936162e+02 + sys_corr_12: 1.37936162e+02 sys_corr_13: 1.11998662e+02 sys_corr_14: 2.35494459e+01 sys_corr_15: 2.89318253e+01 @@ -6201,60 +6201,60 @@ bins: sys_corr_35: -1.34870755e+01 sys_corr_36: -1.14070425e+01 sys_corr_37: 3.90329165e+00 - sys_corr_38: -2.62937010e+00 - sys_corr_39: -5.93561748e+00 - sys_corr_40: 3.48012366e+00 - sys_corr_41: -1.00988074e+00 - sys_corr_42: 2.03772481e+00 - sys_corr_43: 3.21199530e+01 + sys_corr_38: 2.62937010e+00 + sys_corr_39: 5.93561748e+00 + sys_corr_40: -3.48012366e+00 + sys_corr_41: 1.00988074e+00 + sys_corr_42: -2.03772481e+00 + sys_corr_43: -3.21199530e+01 sys_corr_44: -5.17616629e+01 - sys_corr_45: -2.04374626e+01 - sys_corr_46: 3.04254892e+01 + sys_corr_45: 2.04374626e+01 + sys_corr_46: -3.04254892e+01 sys_corr_47: -4.13628840e+01 - sys_corr_48: -6.57441029e+01 + sys_corr_48: 6.57441029e+01 sys_corr_49: 5.22240313e+01 sys_corr_50: -1.26063238e+01 sys_corr_51: -6.74929743e+01 - sys_corr_52: -4.05096542e+01 - sys_corr_53: -7.84503529e+01 + sys_corr_52: 4.05096542e+01 + sys_corr_53: 7.84503529e+01 sys_corr_54: 2.52321071e+01 - sys_corr_55: -2.07386225e+02 + sys_corr_55: 2.07386225e+02 sys_corr_56: 3.14600184e+01 - sys_corr_57: -1.80142721e+01 + sys_corr_57: 1.80142721e+01 sys_corr_58: 3.89268582e+01 - sys_corr_59: 1.55493733e+01 + sys_corr_59: -1.55493733e+01 sys_corr_60: 1.64124518e+01 sys_corr_61: 1.69816023e+01 sys_corr_62: 3.74632022e+01 - sys_corr_63: 1.97449821e+01 - sys_corr_64: -5.34706084e-01 + sys_corr_63: -1.97449821e+01 + sys_corr_64: 5.34706084e-01 sys_corr_65: 3.36594915e+00 sys_corr_66: -1.40256471e+01 sys_corr_67: -1.87388340e+01 sys_corr_68: -2.78639770e+00 sys_corr_69: 6.43463911e-01 sys_corr_70: -1.97412180e+01 - sys_corr_71: -6.14021516e+00 - sys_corr_72: 1.50347465e+00 - sys_corr_73: 8.22849130e+00 + sys_corr_71: 8.22849130e+00 + sys_corr_72: -1.50347465e+00 + sys_corr_73: -6.14021516e+00 sys_corr_74: -5.32414320e+01 sys_corr_75: -7.68614736e+00 sys_corr_76: 4.55102925e+00 - sys_corr_77: 1.55467823e+00 - sys_corr_78: -7.35301217e+00 - sys_corr_79: -4.03993304e+00 - sys_corr_80: 1.49139078e+01 + sys_corr_77: -1.55467823e+00 + sys_corr_78: -4.03993304e+00 + sys_corr_79: -1.49139078e+01 + sys_corr_80: 7.35301217e+00 sys_corr_81: -2.99071907e+00 sys_corr_82: -6.02104852e+00 sys_corr_83: -1.05973030e+01 - sys_corr_84: 2.46441062e+00 + sys_corr_84: -2.46441062e+00 sys_corr_85: 8.83104218e+00 sys_corr_86: -1.07998783e+01 sys_corr_87: -6.77757359e+00 sys_corr_88: -1.85255013e+00 sys_corr_89: 2.73625696e+00 sys_corr_90: -1.62245617e-01 - sys_corr_91: 4.20489691e+00 + sys_corr_91: -4.20489691e+00 sys_corr_92: 1.62641242e+01 sys_corr_93: 1.56134855e-01 sys_corr_94: 7.86646117e-01 @@ -6262,40 +6262,40 @@ bins: sys_corr_96: -7.54033526e-02 sys_corr_97: 9.48730487e-01 sys_corr_98: 3.28122494e-01 - sys_corr_99: 4.61716046e-02 - sys_corr_100: 4.38220193e-02 + sys_corr_99: -4.61716046e-02 + sys_corr_100: -4.38220193e-02 sys_corr_101: 2.55997999e-02 - sys_corr_102: -2.29607400e-01 - sys_corr_103: 1.27606694e+00 - sys_corr_104: 2.41663385e+00 - sys_corr_105: 1.98410732e-01 - sys_corr_106: 2.78765752e-02 - sys_corr_107: -1.99729957e-01 + sys_corr_102: 2.29607400e-01 + sys_corr_103: -1.27606694e+00 + sys_corr_104: -2.41663385e+00 + sys_corr_105: -1.98410732e-01 + sys_corr_106: -2.78765752e-02 + sys_corr_107: 1.99729957e-01 sys_corr_108: 1.31400106e-01 sys_corr_109: -4.20443538e-01 sys_corr_110: 3.28615044e-02 - sys_corr_111: 2.27481856e-01 + sys_corr_111: -2.27481856e-01 sys_corr_112: -1.58561931e-01 sys_corr_113: -6.41736144e-02 sys_corr_114: -3.20272233e-03 - sys_corr_115: -2.78290943e-01 + sys_corr_115: 2.78290943e-01 sys_corr_116: 3.07158276e-02 sys_corr_117: -3.66431345e-02 sys_corr_118: 2.76027582e-01 sys_corr_119: -7.60888323e-03 sys_corr_120: -1.62943534e-02 - sys_corr_121: 5.52573918e-03 - sys_corr_122: 1.51050393e-02 - sys_corr_123: -1.84923257e-02 + sys_corr_121: -5.52573918e-03 + sys_corr_122: -1.84923257e-02 + sys_corr_123: 1.51050393e-02 sys_corr_124: -9.53267709e-02 - sys_corr_125: -6.95733470e-03 - sys_corr_126: 4.61788030e-03 + sys_corr_125: 6.95733470e-03 + sys_corr_126: -4.61788030e-03 sys_corr_127: 4.58940468e-01 sys_corr_128: 3.87660237e-01 - sys_corr_129: 2.03127787e-02 - sys_corr_130: 2.72483169e-03 + sys_corr_129: -2.03127787e-02 + sys_corr_130: -2.72483169e-03 sys_corr_131: -5.63878535e-03 - sys_corr_132: 4.31047720e-02 + sys_corr_132: -4.31047720e-02 stat: 0.0 luminosity: 3.64184744e+02 - sys_corr_1: 1.20381960e+02 @@ -6307,9 +6307,9 @@ bins: sys_corr_7: 3.33308195e+01 sys_corr_8: 6.51800968e+01 sys_corr_9: -1.03304492e+02 - sys_corr_10: -2.91475737e+01 + sys_corr_10: 2.91475737e+01 sys_corr_11: 8.09741706e+01 - sys_corr_12: -7.88771716e+01 + sys_corr_12: 7.88771716e+01 sys_corr_13: 7.34024501e+01 sys_corr_14: 1.08623015e+01 sys_corr_15: 2.25787404e+01 @@ -6335,60 +6335,60 @@ bins: sys_corr_35: -1.03715418e+01 sys_corr_36: -3.56919293e+01 sys_corr_37: -3.20718322e+01 - sys_corr_38: -2.03904861e+01 - sys_corr_39: -5.63023393e+00 - sys_corr_40: 2.87170638e+01 - sys_corr_41: -2.09200444e+01 - sys_corr_42: 1.87687005e+01 - sys_corr_43: -3.51422432e+01 + sys_corr_38: 2.03904861e+01 + sys_corr_39: 5.63023393e+00 + sys_corr_40: -2.87170638e+01 + sys_corr_41: 2.09200444e+01 + sys_corr_42: -1.87687005e+01 + sys_corr_43: 3.51422432e+01 sys_corr_44: 8.33076463e+00 - sys_corr_45: 2.48151553e+01 - sys_corr_46: -2.78545616e+01 + sys_corr_45: -2.48151553e+01 + sys_corr_46: 2.78545616e+01 sys_corr_47: 1.42294706e+00 - sys_corr_48: 6.87322085e+00 + sys_corr_48: -6.87322085e+00 sys_corr_49: -1.56095676e+01 sys_corr_50: -2.18182815e+01 sys_corr_51: 2.90624759e+01 - sys_corr_52: -2.51581999e+01 - sys_corr_53: 2.42647942e+01 + sys_corr_52: 2.51581999e+01 + sys_corr_53: -2.42647942e+01 sys_corr_54: -2.22681165e+01 - sys_corr_55: 5.49524804e+01 + sys_corr_55: -5.49524804e+01 sys_corr_56: 2.70907105e+01 - sys_corr_57: 1.49688003e+01 + sys_corr_57: -1.49688003e+01 sys_corr_58: 2.79154928e+01 - sys_corr_59: -1.08334837e+02 + sys_corr_59: 1.08334837e+02 sys_corr_60: 2.77361882e+01 sys_corr_61: -8.43674620e+01 sys_corr_62: 1.02344803e+01 - sys_corr_63: -7.48534484e-01 - sys_corr_64: 1.16300337e+02 + sys_corr_63: 7.48534484e-01 + sys_corr_64: -1.16300337e+02 sys_corr_65: 5.97142819e+01 sys_corr_66: 5.13238312e+01 sys_corr_67: 8.69264293e+01 sys_corr_68: 6.89584844e+00 sys_corr_69: 4.86878201e+00 sys_corr_70: -4.50919572e+01 - sys_corr_71: 3.38422622e+01 - sys_corr_72: 3.33116826e+01 - sys_corr_73: 2.16850797e+01 + sys_corr_71: 2.16850797e+01 + sys_corr_72: -3.33116826e+01 + sys_corr_73: 3.38422622e+01 sys_corr_74: -2.60078588e+01 sys_corr_75: -1.06094480e+01 sys_corr_76: 2.37015583e+01 - sys_corr_77: -8.13001412e+00 - sys_corr_78: -3.52786488e+00 - sys_corr_79: -9.37530503e+00 - sys_corr_80: 2.28396456e+01 + sys_corr_77: 8.13001412e+00 + sys_corr_78: -9.37530503e+00 + sys_corr_79: -2.28396456e+01 + sys_corr_80: 3.52786488e+00 sys_corr_81: -1.84844526e+01 sys_corr_82: -9.52094566e+00 sys_corr_83: 3.37474596e+00 - sys_corr_84: 8.33504684e-01 + sys_corr_84: -8.33504684e-01 sys_corr_85: 8.76778558e+00 sys_corr_86: -5.73251466e+00 sys_corr_87: -2.51563851e+01 sys_corr_88: -9.43853909e+00 sys_corr_89: 9.47844224e-01 sys_corr_90: -4.01541582e-01 - sys_corr_91: 5.52878920e+00 + sys_corr_91: -5.52878920e+00 sys_corr_92: 1.67287538e+00 sys_corr_93: -7.49966266e-01 sys_corr_94: -3.85978825e+00 @@ -6396,40 +6396,40 @@ bins: sys_corr_96: 2.78515734e-01 sys_corr_97: 1.87335768e+00 sys_corr_98: 1.73607395e-01 - sys_corr_99: 2.83821396e-01 - sys_corr_100: 4.71714280e-01 + sys_corr_99: -2.83821396e-01 + sys_corr_100: -4.71714280e-01 sys_corr_101: 1.92471975e-01 - sys_corr_102: 6.81490459e-01 - sys_corr_103: -2.89040912e-01 - sys_corr_104: 5.18801705e+00 - sys_corr_105: -4.35982959e-01 - sys_corr_106: -2.22964959e-01 - sys_corr_107: -4.60423311e-01 + sys_corr_102: -6.81490459e-01 + sys_corr_103: 2.89040912e-01 + sys_corr_104: -5.18801705e+00 + sys_corr_105: 4.35982959e-01 + sys_corr_106: 2.22964959e-01 + sys_corr_107: 4.60423311e-01 sys_corr_108: 1.56715897e-01 sys_corr_109: -1.41928134e-01 sys_corr_110: 3.98273361e-02 - sys_corr_111: 6.37388925e-01 + sys_corr_111: -6.37388925e-01 sys_corr_112: -2.14968265e-01 sys_corr_113: 3.69082651e-02 sys_corr_114: -1.85616103e-03 - sys_corr_115: -2.05876326e-01 + sys_corr_115: 2.05876326e-01 sys_corr_116: 5.95826659e-02 sys_corr_117: -6.49761336e-02 sys_corr_118: 1.31807077e-01 sys_corr_119: -8.40517598e-03 sys_corr_120: -3.96320239e-02 - sys_corr_121: -3.94776612e-03 - sys_corr_122: -1.38234754e-02 - sys_corr_123: 3.87269807e-02 + sys_corr_121: 3.94776612e-03 + sys_corr_122: 3.87269807e-02 + sys_corr_123: -1.38234754e-02 sys_corr_124: -1.32952763e-01 - sys_corr_125: 3.04475549e-02 - sys_corr_126: -6.41744968e-03 + sys_corr_125: -3.04475549e-02 + sys_corr_126: 6.41744968e-03 sys_corr_127: 3.60104174e-01 sys_corr_128: 6.16564737e-01 - sys_corr_129: -1.49351954e-01 - sys_corr_130: 1.63241508e-02 + sys_corr_129: 1.49351954e-01 + sys_corr_130: -1.63241508e-02 sys_corr_131: -2.83089058e-02 - sys_corr_132: 1.22349162e-01 + sys_corr_132: -1.22349162e-01 stat: 0.0 luminosity: 3.03011610e+02 - sys_corr_1: 1.00529613e+02 @@ -6441,9 +6441,9 @@ bins: sys_corr_7: -1.20600046e+00 sys_corr_8: 4.53898581e+01 sys_corr_9: -7.95791826e+01 - sys_corr_10: -2.80535546e+01 + sys_corr_10: 2.80535546e+01 sys_corr_11: 5.30362599e+01 - sys_corr_12: -4.17251804e+01 + sys_corr_12: 4.17251804e+01 sys_corr_13: 5.61357679e+01 sys_corr_14: -9.14998994e-02 sys_corr_15: 1.60332020e+01 @@ -6469,60 +6469,60 @@ bins: sys_corr_35: -1.51782421e+01 sys_corr_36: -3.63571585e+01 sys_corr_37: -4.69184989e+01 - sys_corr_38: -3.18100168e+01 - sys_corr_39: -4.31830685e+00 - sys_corr_40: 4.71950748e+01 - sys_corr_41: -1.10910577e+01 - sys_corr_42: 2.77753932e+00 - sys_corr_43: -6.82568582e+01 + sys_corr_38: 3.18100168e+01 + sys_corr_39: 4.31830685e+00 + sys_corr_40: -4.71950748e+01 + sys_corr_41: 1.10910577e+01 + sys_corr_42: -2.77753932e+00 + sys_corr_43: 6.82568582e+01 sys_corr_44: -2.85058388e-01 - sys_corr_45: 2.73396131e+01 - sys_corr_46: -3.56737261e+01 + sys_corr_45: -2.73396131e+01 + sys_corr_46: 3.56737261e+01 sys_corr_47: 1.88927914e+00 - sys_corr_48: 4.57016345e+01 + sys_corr_48: -4.57016345e+01 sys_corr_49: -6.17610757e+00 sys_corr_50: -3.43319850e+01 sys_corr_51: 6.04316268e+01 - sys_corr_52: -2.25322610e+01 - sys_corr_53: 1.08628251e+00 + sys_corr_52: 2.25322610e+01 + sys_corr_53: -1.08628251e+00 sys_corr_54: -2.03491803e+01 - sys_corr_55: 3.11790458e+01 + sys_corr_55: -3.11790458e+01 sys_corr_56: -2.40907555e+01 - sys_corr_57: 4.08164304e+00 + sys_corr_57: -4.08164304e+00 sys_corr_58: -2.72007217e+01 - sys_corr_59: 3.93013967e+01 + sys_corr_59: -3.93013967e+01 sys_corr_60: -3.03136242e+01 sys_corr_61: 5.37347556e+01 sys_corr_62: -9.09964210e+00 - sys_corr_63: -3.16814937e+01 - sys_corr_64: -1.43955849e+02 + sys_corr_63: 3.16814937e+01 + sys_corr_64: 1.43955849e+02 sys_corr_65: -2.68837069e+01 sys_corr_66: -7.28760585e+01 sys_corr_67: 2.63108241e+01 sys_corr_68: 3.57846867e+01 sys_corr_69: -2.05714520e+01 sys_corr_70: -3.96898941e+01 - sys_corr_71: 2.49965083e+01 - sys_corr_72: 8.98841682e+01 - sys_corr_73: 1.17135998e+01 + sys_corr_71: 1.17135998e+01 + sys_corr_72: -8.98841682e+01 + sys_corr_73: 2.49965083e+01 sys_corr_74: 7.92491588e+00 sys_corr_75: -6.88019368e+00 sys_corr_76: 8.07509403e+00 - sys_corr_77: -6.42477047e+00 - sys_corr_78: 1.83212598e+00 - sys_corr_79: 1.71004219e+00 - sys_corr_80: 4.22200530e+01 + sys_corr_77: 6.42477047e+00 + sys_corr_78: 1.71004219e+00 + sys_corr_79: -4.22200530e+01 + sys_corr_80: -1.83212598e+00 sys_corr_81: -2.04981555e+01 sys_corr_82: -1.01716123e+01 sys_corr_83: 2.45748286e+00 - sys_corr_84: 2.54892212e+00 + sys_corr_84: -2.54892212e+00 sys_corr_85: 9.16563226e+00 sys_corr_86: -2.62787064e+00 sys_corr_87: -1.24067928e+01 sys_corr_88: 2.55481158e+01 sys_corr_89: 4.21162553e+00 sys_corr_90: -2.97522044e-01 - sys_corr_91: 5.37433423e+00 + sys_corr_91: -5.37433423e+00 sys_corr_92: 2.92308828e+00 sys_corr_93: -7.53437142e-01 sys_corr_94: -3.49929026e+00 @@ -6530,40 +6530,40 @@ bins: sys_corr_96: 3.47172451e-01 sys_corr_97: 9.92416951e-01 sys_corr_98: -3.11363690e-01 - sys_corr_99: 6.18812650e-01 - sys_corr_100: 6.08103918e-01 + sys_corr_99: -6.18812650e-01 + sys_corr_100: -6.08103918e-01 sys_corr_101: 5.38433482e-01 - sys_corr_102: 9.79162359e-01 - sys_corr_103: 4.31488326e-02 - sys_corr_104: 5.68999509e+00 - sys_corr_105: 1.44284859e-01 - sys_corr_106: -5.18329027e-01 - sys_corr_107: -5.39208348e-01 + sys_corr_102: -9.79162359e-01 + sys_corr_103: -4.31488326e-02 + sys_corr_104: -5.68999509e+00 + sys_corr_105: -1.44284859e-01 + sys_corr_106: 5.18329027e-01 + sys_corr_107: 5.39208348e-01 sys_corr_108: 2.48717978e-02 sys_corr_109: -1.90925523e-01 sys_corr_110: 1.31057042e-01 - sys_corr_111: 4.00863528e-01 + sys_corr_111: -4.00863528e-01 sys_corr_112: -2.94794796e-02 sys_corr_113: 1.33339845e-01 sys_corr_114: 2.22036084e-03 - sys_corr_115: -1.73350541e-01 + sys_corr_115: 1.73350541e-01 sys_corr_116: 4.64972145e-02 sys_corr_117: -5.53651485e-02 sys_corr_118: 5.32628051e-02 sys_corr_119: -5.26942442e-03 sys_corr_120: -3.48461993e-02 - sys_corr_121: -8.79166719e-03 - sys_corr_122: -3.82947871e-02 - sys_corr_123: 6.94129807e-02 + sys_corr_121: 8.79166719e-03 + sys_corr_122: 6.94129807e-02 + sys_corr_123: -3.82947871e-02 sys_corr_124: -7.32056037e-02 - sys_corr_125: 5.69748361e-02 - sys_corr_126: -1.44330090e-02 + sys_corr_125: -5.69748361e-02 + sys_corr_126: 1.44330090e-02 sys_corr_127: 3.63140288e-01 sys_corr_128: 1.02848108e+00 - sys_corr_129: 1.67246966e-01 - sys_corr_130: 3.87147199e-03 + sys_corr_129: -1.67246966e-01 + sys_corr_130: -3.87147199e-03 sys_corr_131: -3.66122749e-02 - sys_corr_132: 6.33208405e-02 + sys_corr_132: -6.33208405e-02 stat: 0.0 luminosity: 2.42285516e+02 - sys_corr_1: 7.81925520e+01 @@ -6575,9 +6575,9 @@ bins: sys_corr_7: -2.97678311e+01 sys_corr_8: 2.06152385e+01 sys_corr_9: -3.99734420e+01 - sys_corr_10: -2.07273058e+01 + sys_corr_10: 2.07273058e+01 sys_corr_11: 2.22128926e+01 - sys_corr_12: -8.79386213e-01 + sys_corr_12: 8.79386213e-01 sys_corr_13: 3.01592607e+01 sys_corr_14: -4.63117872e+00 sys_corr_15: 8.06733049e+00 @@ -6603,60 +6603,60 @@ bins: sys_corr_35: -1.15780526e+01 sys_corr_36: -2.78387127e+01 sys_corr_37: -3.68233225e+01 - sys_corr_38: -2.56576071e+01 - sys_corr_39: 1.22270561e+00 - sys_corr_40: 4.09581224e+01 - sys_corr_41: 2.86622136e+00 - sys_corr_42: -5.15697676e+00 - sys_corr_43: -5.71775619e+01 + sys_corr_38: 2.56576071e+01 + sys_corr_39: -1.22270561e+00 + sys_corr_40: -4.09581224e+01 + sys_corr_41: -2.86622136e+00 + sys_corr_42: 5.15697676e+00 + sys_corr_43: 5.71775619e+01 sys_corr_44: 1.83247225e+01 - sys_corr_45: 1.79123876e+01 - sys_corr_46: -2.49519093e+01 + sys_corr_45: -1.79123876e+01 + sys_corr_46: 2.49519093e+01 sys_corr_47: -4.95874960e+00 - sys_corr_48: 5.14012942e+01 + sys_corr_48: -5.14012942e+01 sys_corr_49: -2.55513997e+01 sys_corr_50: -5.25112198e+01 sys_corr_51: 7.29368479e+01 - sys_corr_52: -4.69347594e+01 - sys_corr_53: -8.01831816e+00 + sys_corr_52: 4.69347594e+01 + sys_corr_53: 8.01831816e+00 sys_corr_54: -2.90288080e+01 - sys_corr_55: -1.07936670e+00 + sys_corr_55: 1.07936670e+00 sys_corr_56: -2.15152114e+01 - sys_corr_57: 2.47572864e+01 + sys_corr_57: -2.47572864e+01 sys_corr_58: 1.30347174e+00 - sys_corr_59: -2.36854682e+01 + sys_corr_59: 2.36854682e+01 sys_corr_60: -1.58272505e+01 sys_corr_61: 3.40432389e+01 sys_corr_62: 2.45017928e+01 - sys_corr_63: -1.17431232e+01 - sys_corr_64: 3.69811299e+01 + sys_corr_63: 1.17431232e+01 + sys_corr_64: -3.69811299e+01 sys_corr_65: -2.79894657e+01 sys_corr_66: 5.80761818e+01 sys_corr_67: -1.07654266e+02 sys_corr_68: -1.95810623e+01 sys_corr_69: 1.97490986e+01 sys_corr_70: 7.38632852e+01 - sys_corr_71: -5.43272607e+01 - sys_corr_72: -9.51814313e+01 - sys_corr_73: -4.18255319e+01 + sys_corr_71: -4.18255319e+01 + sys_corr_72: 9.51814313e+01 + sys_corr_73: -5.43272607e+01 sys_corr_74: 3.80205684e+01 sys_corr_75: 3.57069591e+00 sys_corr_76: -4.17213224e+01 - sys_corr_77: 2.12628865e+00 - sys_corr_78: 3.38669306e+00 - sys_corr_79: 5.76994978e+00 - sys_corr_80: 4.13361554e+01 + sys_corr_77: -2.12628865e+00 + sys_corr_78: 5.76994978e+00 + sys_corr_79: -4.13361554e+01 + sys_corr_80: -3.38669306e+00 sys_corr_81: -7.59606802e+00 sys_corr_82: 2.02575462e+00 sys_corr_83: -5.63447773e+00 - sys_corr_84: 2.29691873e+00 + sys_corr_84: -2.29691873e+00 sys_corr_85: -9.02618030e-01 sys_corr_86: -2.46783269e+01 sys_corr_87: 1.80293071e+01 sys_corr_88: 2.12705525e+01 sys_corr_89: 5.99799387e+00 sys_corr_90: 1.84837701e+00 - sys_corr_91: -3.57291200e+00 + sys_corr_91: 3.57291200e+00 sys_corr_92: 2.49597108e+01 sys_corr_93: -5.35100007e-01 sys_corr_94: -1.06362381e+00 @@ -6664,40 +6664,40 @@ bins: sys_corr_96: 2.51653003e-01 sys_corr_97: -7.42620545e-01 sys_corr_98: -8.04759475e-01 - sys_corr_99: 1.03030653e+00 - sys_corr_100: 8.45346965e-01 + sys_corr_99: -1.03030653e+00 + sys_corr_100: -8.45346965e-01 sys_corr_101: 5.76770965e-01 - sys_corr_102: 9.75081235e-01 - sys_corr_103: -1.97027655e-01 - sys_corr_104: 6.53375966e+00 - sys_corr_105: 2.89571477e-01 - sys_corr_106: -6.30266093e-01 - sys_corr_107: -7.94257087e-01 + sys_corr_102: -9.75081235e-01 + sys_corr_103: 1.97027655e-01 + sys_corr_104: -6.53375966e+00 + sys_corr_105: -2.89571477e-01 + sys_corr_106: 6.30266093e-01 + sys_corr_107: 7.94257087e-01 sys_corr_108: -8.18409566e-02 sys_corr_109: 2.05144145e-01 sys_corr_110: 4.44215299e-01 - sys_corr_111: 7.22922028e-02 + sys_corr_111: -7.22922028e-02 sys_corr_112: 1.77249978e-01 sys_corr_113: 1.60770940e-01 sys_corr_114: 5.43809134e-03 - sys_corr_115: 5.46046529e-02 + sys_corr_115: -5.46046529e-02 sys_corr_116: 1.32301316e-02 sys_corr_117: -1.86136208e-02 sys_corr_118: -9.66241931e-02 sys_corr_119: 1.44286848e-02 sys_corr_120: -1.58960329e-02 - sys_corr_121: -3.52292363e-03 - sys_corr_122: -3.39486033e-02 - sys_corr_123: 5.31717170e-02 + sys_corr_121: 3.52292363e-03 + sys_corr_122: 5.31717170e-02 + sys_corr_123: -3.39486033e-02 sys_corr_124: 3.42271651e-02 - sys_corr_125: 5.67213736e-02 - sys_corr_126: -1.64477075e-02 + sys_corr_125: -5.67213736e-02 + sys_corr_126: 1.64477075e-02 sys_corr_127: 1.05865610e-01 sys_corr_128: 9.37323313e-01 - sys_corr_129: 2.77855964e-01 - sys_corr_130: -1.36799096e-02 + sys_corr_129: -2.77855964e-01 + sys_corr_130: 1.36799096e-02 sys_corr_131: -3.29374884e-02 - sys_corr_132: -1.15397136e-01 + sys_corr_132: 1.15397136e-01 stat: 0.0 luminosity: 1.73603364e+02 - sys_corr_1: 4.60565865e+01 @@ -6709,9 +6709,9 @@ bins: sys_corr_7: -3.13055520e+01 sys_corr_8: 1.16080160e+01 sys_corr_9: -2.52499115e+01 - sys_corr_10: -1.60900653e+01 + sys_corr_10: 1.60900653e+01 sys_corr_11: 1.52930823e+01 - sys_corr_12: 5.30496215e+00 + sys_corr_12: -5.30496215e+00 sys_corr_13: 1.75498039e+01 sys_corr_14: -8.98431722e+00 sys_corr_15: 8.09954611e+00 @@ -6737,60 +6737,60 @@ bins: sys_corr_35: -9.43893364e+00 sys_corr_36: -1.57422625e+01 sys_corr_37: -1.95349345e+01 - sys_corr_38: -1.47291760e+01 - sys_corr_39: -1.07846615e+00 - sys_corr_40: 2.19314478e+01 - sys_corr_41: 5.38467352e+00 - sys_corr_42: -2.92703800e+00 - sys_corr_43: -2.85892268e+01 + sys_corr_38: 1.47291760e+01 + sys_corr_39: 1.07846615e+00 + sys_corr_40: -2.19314478e+01 + sys_corr_41: -5.38467352e+00 + sys_corr_42: 2.92703800e+00 + sys_corr_43: 2.85892268e+01 sys_corr_44: 1.06532250e+01 - sys_corr_45: 1.17194278e+01 - sys_corr_46: -1.05952463e+01 + sys_corr_45: -1.17194278e+01 + sys_corr_46: 1.05952463e+01 sys_corr_47: -2.65112263e+00 - sys_corr_48: 2.65934805e+01 + sys_corr_48: -2.65934805e+01 sys_corr_49: -1.27386691e+01 sys_corr_50: -2.02860212e+01 sys_corr_51: 2.88821397e+01 - sys_corr_52: -1.44344484e+01 - sys_corr_53: -3.30603474e-01 + sys_corr_52: 1.44344484e+01 + sys_corr_53: 3.30603474e-01 sys_corr_54: -1.27300361e+01 - sys_corr_55: -8.57968392e+00 + sys_corr_55: 8.57968392e+00 sys_corr_56: -9.56506034e+00 - sys_corr_57: 3.39022642e+00 + sys_corr_57: -3.39022642e+00 sys_corr_58: -3.11079525e+00 - sys_corr_59: 5.99480562e+00 + sys_corr_59: -5.99480562e+00 sys_corr_60: -8.29037011e+00 sys_corr_61: 1.50657182e+01 sys_corr_62: 2.85252337e+00 - sys_corr_63: -9.12867250e+00 - sys_corr_64: -4.03807513e+00 + sys_corr_63: 9.12867250e+00 + sys_corr_64: 4.03807513e+00 sys_corr_65: -1.07706428e+01 sys_corr_66: 1.43650279e+01 sys_corr_67: -1.47495310e+01 sys_corr_68: -6.28606309e+00 sys_corr_69: -5.92411566e+00 sys_corr_70: -6.31605732e-01 - sys_corr_71: -1.84308094e+01 - sys_corr_72: 5.90565613e+00 - sys_corr_73: 1.87986178e+01 + sys_corr_71: 1.87986178e+01 + sys_corr_72: -5.90565613e+00 + sys_corr_73: -1.84308094e+01 sys_corr_74: -9.30543431e+00 sys_corr_75: 2.64787706e+01 sys_corr_76: 2.20178449e+01 - sys_corr_77: 2.68818271e+01 - sys_corr_78: -4.86897226e+01 - sys_corr_79: -8.15895230e-01 - sys_corr_80: -1.83708459e+02 + sys_corr_77: -2.68818271e+01 + sys_corr_78: -8.15895230e-01 + sys_corr_79: 1.83708459e+02 + sys_corr_80: 4.86897226e+01 sys_corr_81: 1.97004203e+01 sys_corr_82: 3.13850689e+00 sys_corr_83: -7.10005799e+00 - sys_corr_84: 6.45341046e+00 + sys_corr_84: -6.45341046e+00 sys_corr_85: 1.01836298e+01 sys_corr_86: 4.16253678e+01 sys_corr_87: -2.65400607e+00 sys_corr_88: -3.80373061e+01 sys_corr_89: -3.37707187e+00 sys_corr_90: 4.46384925e-01 - sys_corr_91: 7.85599135e-01 + sys_corr_91: -7.85599135e-01 sys_corr_92: -3.79070031e+01 sys_corr_93: -9.43723818e-01 sys_corr_94: -4.91323243e+00 @@ -6798,40 +6798,40 @@ bins: sys_corr_96: 2.71070907e-01 sys_corr_97: -1.92150515e+00 sys_corr_98: -1.86301484e+00 - sys_corr_99: 2.18287771e+00 - sys_corr_100: 1.34864033e+00 + sys_corr_99: -2.18287771e+00 + sys_corr_100: -1.34864033e+00 sys_corr_101: 1.16437785e+00 - sys_corr_102: 1.78519112e+00 - sys_corr_103: -7.20294069e-01 - sys_corr_104: 1.41914046e+01 - sys_corr_105: 3.04100945e-02 - sys_corr_106: -9.85374567e-01 - sys_corr_107: -1.10579873e+00 + sys_corr_102: -1.78519112e+00 + sys_corr_103: 7.20294069e-01 + sys_corr_104: -1.41914046e+01 + sys_corr_105: -3.04100945e-02 + sys_corr_106: 9.85374567e-01 + sys_corr_107: 1.10579873e+00 sys_corr_108: -2.06781624e-01 sys_corr_109: 2.93502275e-01 sys_corr_110: 6.00962890e-01 - sys_corr_111: -3.04994045e-01 + sys_corr_111: 3.04994045e-01 sys_corr_112: 2.29887452e-01 sys_corr_113: 6.53092637e-02 sys_corr_114: 4.61482422e-03 - sys_corr_115: 9.64266670e-02 + sys_corr_115: -9.64266670e-02 sys_corr_116: 2.40117423e-02 sys_corr_117: -3.21918576e-02 sys_corr_118: -2.65040344e-01 sys_corr_119: 1.35706905e-02 sys_corr_120: -3.06743562e-02 - sys_corr_121: -6.51430614e-03 - sys_corr_122: -5.88743165e-02 - sys_corr_123: 1.21071262e-01 + sys_corr_121: 6.51430614e-03 + sys_corr_122: 1.21071262e-01 + sys_corr_123: -5.88743165e-02 sys_corr_124: 3.10219282e-02 - sys_corr_125: 7.94374843e-02 - sys_corr_126: -2.13033067e-02 + sys_corr_125: -7.94374843e-02 + sys_corr_126: 2.13033067e-02 sys_corr_127: -3.01403289e-01 sys_corr_128: 1.69786256e+00 - sys_corr_129: 3.81790670e-01 - sys_corr_130: -1.25022920e-02 + sys_corr_129: -3.81790670e-01 + sys_corr_130: 1.25022920e-02 sys_corr_131: -5.68939074e-02 - sys_corr_132: -1.01719856e-01 + sys_corr_132: 1.01719856e-01 stat: 0.0 luminosity: 1.02834600e+02 - sys_corr_1: 1.67828935e+01 @@ -6843,9 +6843,9 @@ bins: sys_corr_7: -1.22564969e+01 sys_corr_8: 4.27352093e+00 sys_corr_9: -7.87617510e+00 - sys_corr_10: -6.67370516e+00 + sys_corr_10: 6.67370516e+00 sys_corr_11: 4.09411776e+00 - sys_corr_12: 4.82078857e+00 + sys_corr_12: -4.82078857e+00 sys_corr_13: 4.48909706e+00 sys_corr_14: -4.04611254e+00 sys_corr_15: 1.37564278e+00 @@ -6871,60 +6871,60 @@ bins: sys_corr_35: -2.36997294e+00 sys_corr_36: -4.63181697e+00 sys_corr_37: -6.45932653e+00 - sys_corr_38: -4.99789391e+00 - sys_corr_39: 4.53137290e-01 - sys_corr_40: 6.03308716e+00 - sys_corr_41: 1.99801756e+00 - sys_corr_42: -1.47144752e+00 - sys_corr_43: -8.57886948e+00 + sys_corr_38: 4.99789391e+00 + sys_corr_39: -4.53137290e-01 + sys_corr_40: -6.03308716e+00 + sys_corr_41: -1.99801756e+00 + sys_corr_42: 1.47144752e+00 + sys_corr_43: 8.57886948e+00 sys_corr_44: 3.39148192e+00 - sys_corr_45: 3.06841799e+00 - sys_corr_46: -3.92013527e+00 + sys_corr_45: -3.06841799e+00 + sys_corr_46: 3.92013527e+00 sys_corr_47: -4.43471072e-01 - sys_corr_48: 8.63115655e+00 + sys_corr_48: -8.63115655e+00 sys_corr_49: -3.19391079e+00 sys_corr_50: -5.33191499e+00 sys_corr_51: 8.10525357e+00 - sys_corr_52: -4.35105941e+00 - sys_corr_53: -3.95619848e-01 + sys_corr_52: 4.35105941e+00 + sys_corr_53: 3.95619848e-01 sys_corr_54: -3.46410994e+00 - sys_corr_55: -3.82048550e+00 + sys_corr_55: 3.82048550e+00 sys_corr_56: -2.18128900e+00 - sys_corr_57: 1.96523392e+00 + sys_corr_57: -1.96523392e+00 sys_corr_58: -1.21325644e+00 - sys_corr_59: -5.33429393e-01 + sys_corr_59: 5.33429393e-01 sys_corr_60: -1.92353775e+00 sys_corr_61: 1.92923753e+00 sys_corr_62: -1.05630790e+00 - sys_corr_63: -2.01323531e+00 - sys_corr_64: 2.19907615e+00 + sys_corr_63: 2.01323531e+00 + sys_corr_64: -2.19907615e+00 sys_corr_65: -1.38362346e+00 sys_corr_66: 3.47654698e+00 sys_corr_67: -1.46629545e+00 sys_corr_68: -8.62521346e-01 sys_corr_69: -6.06699220e-01 sys_corr_70: 1.26153103e+00 - sys_corr_71: 3.95035285e-01 - sys_corr_72: 3.11372431e+00 - sys_corr_73: 1.66264536e+00 + sys_corr_71: 1.66264536e+00 + sys_corr_72: -3.11372431e+00 + sys_corr_73: 3.95035285e-01 sys_corr_74: 1.17050866e-01 sys_corr_75: 2.36731239e+00 sys_corr_76: 2.54820612e+00 - sys_corr_77: 1.62612612e+00 - sys_corr_78: -8.56035895e-01 - sys_corr_79: -4.26935858e-01 - sys_corr_80: -1.29006035e+01 + sys_corr_77: -1.62612612e+00 + sys_corr_78: -4.26935858e-01 + sys_corr_79: 1.29006035e+01 + sys_corr_80: 8.56035895e-01 sys_corr_81: 1.30419082e+00 sys_corr_82: 6.44052338e-01 sys_corr_83: -6.29670870e-01 - sys_corr_84: -1.66582963e+00 + sys_corr_84: 1.66582963e+00 sys_corr_85: -8.88138087e-01 sys_corr_86: 5.45517942e+00 sys_corr_87: 4.39565848e-01 sys_corr_88: -4.44755711e+00 sys_corr_89: -3.91780523e+00 sys_corr_90: 1.16814857e+00 - sys_corr_91: 5.12351669e-01 + sys_corr_91: -5.12351669e-01 sys_corr_92: -4.52011298e+00 sys_corr_93: 2.13139755e+00 sys_corr_94: 1.12048173e+01 @@ -6932,40 +6932,40 @@ bins: sys_corr_96: -1.61695171e+00 sys_corr_97: 9.42968184e-01 sys_corr_98: 7.00720440e+00 - sys_corr_99: -7.87283851e+00 - sys_corr_100: 2.60233445e+00 + sys_corr_99: 7.87283851e+00 + sys_corr_100: -2.60233445e+00 sys_corr_101: 1.99175397e+00 - sys_corr_102: 4.06212294e+00 - sys_corr_103: 1.54240242e+01 - sys_corr_104: -1.31212934e+02 - sys_corr_105: 2.11600001e+01 - sys_corr_106: -1.69631050e+00 - sys_corr_107: -2.02772096e+00 + sys_corr_102: -4.06212294e+00 + sys_corr_103: -1.54240242e+01 + sys_corr_104: 1.31212934e+02 + sys_corr_105: -2.11600001e+01 + sys_corr_106: 1.69631050e+00 + sys_corr_107: 2.02772096e+00 sys_corr_108: -2.75490866e-01 sys_corr_109: -1.71518253e-01 sys_corr_110: -3.97222960e-01 - sys_corr_111: -3.32790993e+00 + sys_corr_111: 3.32790993e+00 sys_corr_112: 9.31790343e-02 sys_corr_113: 3.06291421e-01 sys_corr_114: 6.88806777e-03 - sys_corr_115: 1.08421496e-01 + sys_corr_115: -1.08421496e-01 sys_corr_116: 9.91835877e-03 sys_corr_117: -2.25477423e-02 sys_corr_118: -2.60901970e-01 sys_corr_119: 1.36778052e-02 sys_corr_120: -3.95249625e-02 - sys_corr_121: -1.79867960e-02 - sys_corr_122: -8.85748013e-02 - sys_corr_123: 1.51979733e-01 + sys_corr_121: 1.79867960e-02 + sys_corr_122: 1.51979733e-01 + sys_corr_123: -8.85748013e-02 sys_corr_124: 4.16179109e-02 - sys_corr_125: 1.11061097e-01 - sys_corr_126: -3.66919849e-02 + sys_corr_125: -1.11061097e-01 + sys_corr_126: 3.66919849e-02 sys_corr_127: 4.11757161e+00 sys_corr_128: -8.87191820e-01 - sys_corr_129: 5.22994031e-02 - sys_corr_130: -1.93714525e-03 + sys_corr_129: -5.22994031e-02 + sys_corr_130: 1.93714525e-03 sys_corr_131: -6.10208563e-02 - sys_corr_132: -5.18811173e-02 + sys_corr_132: 5.18811173e-02 stat: 0.0 luminosity: 3.57974100e+01 - sys_corr_1: 1.32783679e+02 @@ -6977,9 +6977,9 @@ bins: sys_corr_7: 1.27669805e+01 sys_corr_8: 4.61543762e+00 sys_corr_9: 7.81321256e+00 - sys_corr_10: -1.00322123e+01 + sys_corr_10: 1.00322123e+01 sys_corr_11: 2.73875635e+01 - sys_corr_12: -4.53160340e+01 + sys_corr_12: 4.53160340e+01 sys_corr_13: 3.17987741e+01 sys_corr_14: 4.95774252e+00 sys_corr_15: 1.97870171e+01 @@ -7005,60 +7005,60 @@ bins: sys_corr_35: -2.71789056e+00 sys_corr_36: -2.68217376e+01 sys_corr_37: -6.44827701e-01 - sys_corr_38: 2.13363109e+00 - sys_corr_39: -1.85420734e+01 - sys_corr_40: -5.01012734e+00 - sys_corr_41: 9.81530614e+00 - sys_corr_42: -2.53741080e+01 - sys_corr_43: 3.60891448e+00 + sys_corr_38: -2.13363109e+00 + sys_corr_39: 1.85420734e+01 + sys_corr_40: 5.01012734e+00 + sys_corr_41: -9.81530614e+00 + sys_corr_42: 2.53741080e+01 + sys_corr_43: -3.60891448e+00 sys_corr_44: 6.09329893e+01 - sys_corr_45: -7.76931089e+00 - sys_corr_46: -9.74323592e+00 + sys_corr_45: 7.76931089e+00 + sys_corr_46: 9.74323592e+00 sys_corr_47: -3.20100150e+01 - sys_corr_48: -2.84242280e+01 + sys_corr_48: 2.84242280e+01 sys_corr_49: 4.96523224e+01 sys_corr_50: -2.61000923e+01 sys_corr_51: -7.89175613e+00 - sys_corr_52: -2.64226006e-01 - sys_corr_53: 1.84132741e+00 + sys_corr_52: 2.64226006e-01 + sys_corr_53: -1.84132741e+00 sys_corr_54: 2.14984195e+01 - sys_corr_55: 2.60572812e+00 + sys_corr_55: -2.60572812e+00 sys_corr_56: -4.58374037e+00 - sys_corr_57: 8.82522427e+00 + sys_corr_57: -8.82522427e+00 sys_corr_58: -1.88492563e+00 - sys_corr_59: -8.99008301e+00 + sys_corr_59: 8.99008301e+00 sys_corr_60: 2.39765653e+01 sys_corr_61: 3.54662726e+00 sys_corr_62: 1.34777317e+00 - sys_corr_63: -2.40729749e+00 - sys_corr_64: -5.42555526e+00 + sys_corr_63: 2.40729749e+00 + sys_corr_64: 5.42555526e+00 sys_corr_65: 5.62153433e+00 sys_corr_66: 3.97007500e+00 sys_corr_67: -2.83270643e+00 sys_corr_68: 1.40939957e+01 sys_corr_69: 5.51585124e+01 sys_corr_70: 1.53234389e+01 - sys_corr_71: -2.70277867e+01 - sys_corr_72: 2.59587186e+01 - sys_corr_73: 5.88160763e+01 + sys_corr_71: 5.88160763e+01 + sys_corr_72: -2.59587186e+01 + sys_corr_73: -2.70277867e+01 sys_corr_74: 2.62919993e+01 sys_corr_75: -5.72144614e+01 sys_corr_76: -9.93751613e+00 - sys_corr_77: 7.43463955e+00 - sys_corr_78: -7.76762589e-01 - sys_corr_79: 1.67431870e+01 - sys_corr_80: 2.75287764e-01 + sys_corr_77: -7.43463955e+00 + sys_corr_78: 1.67431870e+01 + sys_corr_79: -2.75287764e-01 + sys_corr_80: 7.76762589e-01 sys_corr_81: -1.52515759e+01 sys_corr_82: 1.75276623e+02 sys_corr_83: -3.82986407e+01 - sys_corr_84: -2.78290701e+00 + sys_corr_84: 2.78290701e+00 sys_corr_85: -1.95702585e+00 sys_corr_86: -1.18891174e+01 sys_corr_87: -5.48384147e+01 sys_corr_88: 1.03723469e+01 sys_corr_89: -1.00097087e+00 sys_corr_90: -7.00310245e+00 - sys_corr_91: -5.41129092e+00 + sys_corr_91: 5.41129092e+00 sys_corr_92: -1.61701534e+01 sys_corr_93: 1.59009955e-01 sys_corr_94: 2.56824880e+00 @@ -7066,40 +7066,40 @@ bins: sys_corr_96: 2.28873118e-01 sys_corr_97: 4.34532329e+00 sys_corr_98: 2.34664833e+00 - sys_corr_99: -1.76007095e+00 - sys_corr_100: -1.18821145e+00 + sys_corr_99: 1.76007095e+00 + sys_corr_100: 1.18821145e+00 sys_corr_101: -8.77250902e-01 - sys_corr_102: -2.02503785e+00 - sys_corr_103: -1.45880726e+00 - sys_corr_104: -2.54384094e-01 - sys_corr_105: -3.35538677e+00 - sys_corr_106: 2.59957758e-01 - sys_corr_107: 7.60119581e-01 + sys_corr_102: 2.02503785e+00 + sys_corr_103: 1.45880726e+00 + sys_corr_104: 2.54384094e-01 + sys_corr_105: 3.35538677e+00 + sys_corr_106: -2.59957758e-01 + sys_corr_107: -7.60119581e-01 sys_corr_108: -1.61336150e-01 sys_corr_109: 6.54133655e-01 sys_corr_110: 4.65041074e-01 - sys_corr_111: 1.93849430e-01 + sys_corr_111: -1.93849430e-01 sys_corr_112: 7.03326275e-02 sys_corr_113: 2.07468633e-01 sys_corr_114: -2.17954067e-03 - sys_corr_115: -1.47426885e-01 + sys_corr_115: 1.47426885e-01 sys_corr_116: 1.19938049e-03 sys_corr_117: 1.72840331e-02 sys_corr_118: 7.49837596e-02 sys_corr_119: -6.16287204e-03 sys_corr_120: 2.94271462e-02 - sys_corr_121: 1.15013711e-02 - sys_corr_122: 1.96264508e-02 - sys_corr_123: -2.37224135e-02 + sys_corr_121: -1.15013711e-02 + sys_corr_122: -2.37224135e-02 + sys_corr_123: 1.96264508e-02 sys_corr_124: -3.59739244e-02 - sys_corr_125: -5.65329170e-02 - sys_corr_126: 9.45335091e-03 + sys_corr_125: 5.65329170e-02 + sys_corr_126: -9.45335091e-03 sys_corr_127: -4.18603232e-01 sys_corr_128: -1.84684361e-01 - sys_corr_129: 3.64889273e-02 - sys_corr_130: 1.36532813e-02 + sys_corr_129: -3.64889273e-02 + sys_corr_130: -1.36532813e-02 sys_corr_131: 3.27627931e-02 - sys_corr_132: -1.88237455e-02 + sys_corr_132: 1.88237455e-02 stat: 0.0 luminosity: 2.46767202e+02 - sys_corr_1: 1.28845316e+02 @@ -7111,9 +7111,9 @@ bins: sys_corr_7: 1.26525783e+01 sys_corr_8: -1.15063392e-01 sys_corr_9: 3.89947269e+00 - sys_corr_10: -8.80806556e+00 + sys_corr_10: 8.80806556e+00 sys_corr_11: 2.30551032e+01 - sys_corr_12: -4.43333529e+01 + sys_corr_12: 4.43333529e+01 sys_corr_13: 2.37666920e+01 sys_corr_14: 1.52987668e+00 sys_corr_15: 8.37646836e+00 @@ -7139,60 +7139,60 @@ bins: sys_corr_35: -5.40326544e+00 sys_corr_36: 5.10994236e+00 sys_corr_37: 8.24774392e+00 - sys_corr_38: -8.95860078e+00 - sys_corr_39: -1.10047555e+00 - sys_corr_40: -5.10753961e-03 - sys_corr_41: 5.76854320e+00 - sys_corr_42: -2.35190936e+01 - sys_corr_43: -4.63051627e+00 + sys_corr_38: 8.95860078e+00 + sys_corr_39: 1.10047555e+00 + sys_corr_40: 5.10753961e-03 + sys_corr_41: -5.76854320e+00 + sys_corr_42: 2.35190936e+01 + sys_corr_43: 4.63051627e+00 sys_corr_44: 7.27872996e+01 - sys_corr_45: -5.40993463e+00 - sys_corr_46: -1.07842136e+01 + sys_corr_45: 5.40993463e+00 + sys_corr_46: 1.07842136e+01 sys_corr_47: -3.97853652e+01 - sys_corr_48: -2.70729006e+01 + sys_corr_48: 2.70729006e+01 sys_corr_49: 4.38566377e+01 sys_corr_50: -3.08435408e+01 sys_corr_51: -6.53103113e+00 - sys_corr_52: 2.27154227e+00 - sys_corr_53: -3.61603951e+00 + sys_corr_52: -2.27154227e+00 + sys_corr_53: 3.61603951e+00 sys_corr_54: 2.04968602e+01 - sys_corr_55: -1.58213177e+00 + sys_corr_55: 1.58213177e+00 sys_corr_56: -3.31376540e+00 - sys_corr_57: 1.01401085e+01 + sys_corr_57: -1.01401085e+01 sys_corr_58: -9.84434513e+00 - sys_corr_59: -5.23555809e+00 + sys_corr_59: 5.23555809e+00 sys_corr_60: 4.12707546e+01 sys_corr_61: -2.63300045e-01 sys_corr_62: -1.32132836e-01 - sys_corr_63: -1.02545991e+01 - sys_corr_64: -3.84519488e+00 + sys_corr_63: 1.02545991e+01 + sys_corr_64: 3.84519488e+00 sys_corr_65: 8.43573266e+00 sys_corr_66: -6.33414533e+00 sys_corr_67: 6.93183048e+00 sys_corr_68: 7.52466023e+00 sys_corr_69: 7.39733584e+01 sys_corr_70: 3.90955472e+01 - sys_corr_71: -2.37805844e+01 - sys_corr_72: 2.08464519e+01 - sys_corr_73: 1.14535951e+02 + sys_corr_71: 1.14535951e+02 + sys_corr_72: -2.08464519e+01 + sys_corr_73: -2.37805844e+01 sys_corr_74: 2.66664571e+01 sys_corr_75: -7.38707131e+01 sys_corr_76: -2.92592935e+01 - sys_corr_77: -2.27995443e+00 - sys_corr_78: 1.61180447e+00 - sys_corr_79: -9.03913511e+00 - sys_corr_80: -1.84144370e+00 + sys_corr_77: 2.27995443e+00 + sys_corr_78: -9.03913511e+00 + sys_corr_79: 1.84144370e+00 + sys_corr_80: -1.61180447e+00 sys_corr_81: 2.09455559e+01 sys_corr_82: -1.15039106e+02 sys_corr_83: 1.56893542e+01 - sys_corr_84: 9.23771616e-01 + sys_corr_84: -9.23771616e-01 sys_corr_85: -1.61651581e+00 sys_corr_86: -2.23422704e+01 sys_corr_87: 7.57676746e+01 sys_corr_88: -3.53945875e+00 sys_corr_89: 9.94363369e-02 sys_corr_90: -3.16487097e+00 - sys_corr_91: -3.27511267e+00 + sys_corr_91: 3.27511267e+00 sys_corr_92: -3.95771593e+01 sys_corr_93: 6.37301222e-01 sys_corr_94: 1.36796998e+00 @@ -7200,40 +7200,40 @@ bins: sys_corr_96: 6.79835888e-01 sys_corr_97: 2.94257377e+00 sys_corr_98: 1.14915331e+00 - sys_corr_99: -1.75244981e+00 - sys_corr_100: -7.80958259e-01 + sys_corr_99: 1.75244981e+00 + sys_corr_100: 7.80958259e-01 sys_corr_101: -4.05784271e-01 - sys_corr_102: -7.60558356e-01 - sys_corr_103: -3.29623416e+00 - sys_corr_104: -4.88674531e-01 - sys_corr_105: -3.58028048e+00 - sys_corr_106: -2.23233840e-01 - sys_corr_107: 2.48972193e-01 + sys_corr_102: 7.60558356e-01 + sys_corr_103: 3.29623416e+00 + sys_corr_104: 4.88674531e-01 + sys_corr_105: 3.58028048e+00 + sys_corr_106: 2.23233840e-01 + sys_corr_107: -2.48972193e-01 sys_corr_108: -6.87536983e-02 sys_corr_109: 5.22943109e-01 sys_corr_110: 1.88567170e-01 - sys_corr_111: 3.19379332e-01 + sys_corr_111: -3.19379332e-01 sys_corr_112: 6.64017347e-02 sys_corr_113: 1.34401381e-01 sys_corr_114: -2.04754520e-03 - sys_corr_115: -4.60829979e-02 + sys_corr_115: 4.60829979e-02 sys_corr_116: -5.32766728e-02 sys_corr_117: 1.51980526e-02 sys_corr_118: 4.20104132e-02 sys_corr_119: -9.40320282e-03 sys_corr_120: 3.22321207e-02 - sys_corr_121: 6.13875630e-03 - sys_corr_122: 1.26555542e-02 - sys_corr_123: -1.35871243e-02 + sys_corr_121: -6.13875630e-03 + sys_corr_122: -1.35871243e-02 + sys_corr_123: 1.26555542e-02 sys_corr_124: 7.08840753e-02 - sys_corr_125: -2.48652226e-02 - sys_corr_126: 3.66669325e-03 + sys_corr_125: 2.48652226e-02 + sys_corr_126: -3.66669325e-03 sys_corr_127: -2.53332141e-01 sys_corr_128: -3.49521923e-02 - sys_corr_129: 6.57973042e-02 - sys_corr_130: 1.34130456e-02 + sys_corr_129: -6.57973042e-02 + sys_corr_130: -1.34130456e-02 sys_corr_131: 4.54389558e-03 - sys_corr_132: -2.63492268e-02 + sys_corr_132: 2.63492268e-02 stat: 0.0 luminosity: 2.46387284e+02 - sys_corr_1: 1.22692790e+02 @@ -7245,9 +7245,9 @@ bins: sys_corr_7: 1.53585723e+01 sys_corr_8: 9.38437991e+00 sys_corr_9: 3.42614763e+00 - sys_corr_10: -1.63302416e+00 + sys_corr_10: 1.63302416e+00 sys_corr_11: 3.11038174e+01 - sys_corr_12: -5.23214032e+01 + sys_corr_12: 5.23214032e+01 sys_corr_13: 2.50929088e+01 sys_corr_14: 5.00393253e+00 sys_corr_15: 1.54172162e+01 @@ -7273,60 +7273,60 @@ bins: sys_corr_35: 2.73592710e+00 sys_corr_36: -2.07652496e+01 sys_corr_37: 2.86294634e+00 - sys_corr_38: 1.30892082e+00 - sys_corr_39: -1.05594401e+01 - sys_corr_40: -1.03024477e+01 - sys_corr_41: 1.75811234e+01 - sys_corr_42: -3.44792756e+01 - sys_corr_43: 7.07468077e-02 + sys_corr_38: -1.30892082e+00 + sys_corr_39: 1.05594401e+01 + sys_corr_40: 1.03024477e+01 + sys_corr_41: -1.75811234e+01 + sys_corr_42: 3.44792756e+01 + sys_corr_43: -7.07468077e-02 sys_corr_44: 1.12779758e+02 - sys_corr_45: -1.15076924e+01 - sys_corr_46: -1.71354280e+01 + sys_corr_45: 1.15076924e+01 + sys_corr_46: 1.71354280e+01 sys_corr_47: -4.78389534e+01 - sys_corr_48: -3.84857095e+01 + sys_corr_48: 3.84857095e+01 sys_corr_49: 7.55307089e+01 sys_corr_50: -3.61241764e+01 sys_corr_51: 3.08303072e+00 - sys_corr_52: 5.78863383e+00 - sys_corr_53: 2.03515670e+01 + sys_corr_52: -5.78863383e+00 + sys_corr_53: -2.03515670e+01 sys_corr_54: 4.31901394e+01 - sys_corr_55: 5.02083687e+00 + sys_corr_55: -5.02083687e+00 sys_corr_56: -4.15139945e+01 - sys_corr_57: 4.45032878e+01 + sys_corr_57: -4.45032878e+01 sys_corr_58: 1.50677997e+02 - sys_corr_59: 1.84133811e+01 + sys_corr_59: -1.84133811e+01 sys_corr_60: -1.46886142e+02 sys_corr_61: -4.09519719e+01 sys_corr_62: -6.41911800e+00 - sys_corr_63: 4.06893772e+00 - sys_corr_64: -3.05964024e+00 + sys_corr_63: -4.06893772e+00 + sys_corr_64: 3.05964024e+00 sys_corr_65: -1.04552870e+01 sys_corr_66: 9.49063561e+00 sys_corr_67: -4.83883281e+00 sys_corr_68: -1.93825147e+01 sys_corr_69: -6.38487370e+01 sys_corr_70: -3.39943919e+01 - sys_corr_71: 3.58040850e+01 - sys_corr_72: -1.12439815e+01 - sys_corr_73: -3.05307321e+01 + sys_corr_71: -3.05307321e+01 + sys_corr_72: 1.12439815e+01 + sys_corr_73: 3.58040850e+01 sys_corr_74: -4.52979456e+00 sys_corr_75: 4.75792869e+00 sys_corr_76: 8.43399111e-01 - sys_corr_77: -5.22007390e+00 - sys_corr_78: 1.33132218e+00 - sys_corr_79: 1.33237831e+00 - sys_corr_80: 2.45666914e-01 + sys_corr_77: 5.22007390e+00 + sys_corr_78: 1.33237831e+00 + sys_corr_79: -2.45666914e-01 + sys_corr_80: -1.33132218e+00 sys_corr_81: 4.89066732e+00 sys_corr_82: -1.18756179e+01 sys_corr_83: 4.32667767e+00 - sys_corr_84: 3.55739343e-01 + sys_corr_84: -3.55739343e-01 sys_corr_85: -1.21870963e+00 sys_corr_86: -1.37021860e+00 sys_corr_87: 9.17528721e+00 sys_corr_88: -7.76382044e-01 sys_corr_89: -4.53546013e-02 sys_corr_90: -8.15694952e-01 - sys_corr_91: -1.32323919e+00 + sys_corr_91: 1.32323919e+00 sys_corr_92: 7.55900097e-01 sys_corr_93: -3.27457293e-01 sys_corr_94: 8.42150158e-01 @@ -7334,40 +7334,40 @@ bins: sys_corr_96: 3.53603044e-01 sys_corr_97: 1.22266251e+00 sys_corr_98: 3.09872420e-01 - sys_corr_99: -5.04111590e-01 - sys_corr_100: -1.52751315e-01 + sys_corr_99: 5.04111590e-01 + sys_corr_100: 1.52751315e-01 sys_corr_101: -1.43539970e-01 - sys_corr_102: -3.68004269e-01 - sys_corr_103: -1.18667129e+00 - sys_corr_104: 9.03136688e-02 - sys_corr_105: -1.38561235e+00 - sys_corr_106: -9.02910547e-02 - sys_corr_107: -9.63782114e-02 + sys_corr_102: 3.68004269e-01 + sys_corr_103: 1.18667129e+00 + sys_corr_104: -9.03136688e-02 + sys_corr_105: 1.38561235e+00 + sys_corr_106: 9.02910547e-02 + sys_corr_107: 9.63782114e-02 sys_corr_108: 5.14824641e-02 sys_corr_109: -2.37175677e-02 sys_corr_110: 1.69442626e-01 - sys_corr_111: 5.88397389e-02 + sys_corr_111: -5.88397389e-02 sys_corr_112: 3.60743532e-02 sys_corr_113: 3.32086293e-02 sys_corr_114: -1.78110758e-03 - sys_corr_115: -1.25477035e-01 + sys_corr_115: 1.25477035e-01 sys_corr_116: -6.19074196e-02 sys_corr_117: 2.13063102e-02 sys_corr_118: 4.96532910e-02 sys_corr_119: -3.45155358e-03 sys_corr_120: 8.91307742e-03 - sys_corr_121: -2.42508413e-04 - sys_corr_122: -6.74542631e-03 - sys_corr_123: 1.82499537e-02 + sys_corr_121: 2.42508413e-04 + sys_corr_122: 1.82499537e-02 + sys_corr_123: -6.74542631e-03 sys_corr_124: 3.67220258e-02 - sys_corr_125: 2.89004165e-05 - sys_corr_126: -3.29300888e-03 + sys_corr_125: -2.89004165e-05 + sys_corr_126: 3.29300888e-03 sys_corr_127: -4.07611870e-01 sys_corr_128: -9.86347748e-03 - sys_corr_129: -1.83805964e-03 - sys_corr_130: 2.64410888e-03 + sys_corr_129: 1.83805964e-03 + sys_corr_130: -2.64410888e-03 sys_corr_131: 1.38359226e-02 - sys_corr_132: -1.73881041e-02 + sys_corr_132: 1.73881041e-02 stat: 0.0 luminosity: 2.43127148e+02 - sys_corr_1: 1.23446791e+02 @@ -7379,9 +7379,9 @@ bins: sys_corr_7: 1.94532526e+01 sys_corr_8: 2.43076073e+00 sys_corr_9: -2.98138000e+00 - sys_corr_10: -4.55135719e+00 + sys_corr_10: 4.55135719e+00 sys_corr_11: 3.01399460e+01 - sys_corr_12: -4.77559152e+01 + sys_corr_12: 4.77559152e+01 sys_corr_13: 3.06998544e+01 sys_corr_14: 6.74989888e+00 sys_corr_15: 1.87282938e+01 @@ -7407,60 +7407,60 @@ bins: sys_corr_35: -1.18241200e+00 sys_corr_36: -2.65435068e+01 sys_corr_37: -1.05236970e+01 - sys_corr_38: 3.69753448e+00 - sys_corr_39: -1.96351749e+01 - sys_corr_40: -5.02533769e+00 - sys_corr_41: 1.84590026e+01 - sys_corr_42: -3.08590724e+01 - sys_corr_43: -1.76688101e+00 + sys_corr_38: -3.69753448e+00 + sys_corr_39: 1.96351749e+01 + sys_corr_40: 5.02533769e+00 + sys_corr_41: -1.84590026e+01 + sys_corr_42: 3.08590724e+01 + sys_corr_43: 1.76688101e+00 sys_corr_44: 8.44904439e+01 - sys_corr_45: -1.07435561e+01 - sys_corr_46: -7.57445988e+00 + sys_corr_45: 1.07435561e+01 + sys_corr_46: 7.57445988e+00 sys_corr_47: -4.02697947e+01 - sys_corr_48: -2.51257999e+01 + sys_corr_48: 2.51257999e+01 sys_corr_49: 5.77661959e+01 sys_corr_50: -3.91504987e+01 sys_corr_51: 7.16246767e+00 - sys_corr_52: 3.06216079e-01 - sys_corr_53: 5.32561406e+00 + sys_corr_52: -3.06216079e-01 + sys_corr_53: -5.32561406e+00 sys_corr_54: 2.39897815e+01 - sys_corr_55: 9.13434557e-01 + sys_corr_55: -9.13434557e-01 sys_corr_56: -3.94849772e+00 - sys_corr_57: 1.75033880e+01 + sys_corr_57: -1.75033880e+01 sys_corr_58: -7.22541240e+01 - sys_corr_59: -1.47278724e+01 + sys_corr_59: 1.47278724e+01 sys_corr_60: 1.66053134e+02 sys_corr_61: 5.80127200e+01 sys_corr_62: -1.51543540e+01 - sys_corr_63: -1.21780941e+01 - sys_corr_64: -1.54630158e+01 + sys_corr_63: 1.21780941e+01 + sys_corr_64: 1.54630158e+01 sys_corr_65: 2.76691101e+01 sys_corr_66: 3.01351280e+01 sys_corr_67: -6.56244241e+00 sys_corr_68: -4.17887379e+01 sys_corr_69: -1.19135933e+02 sys_corr_70: -4.77475275e+01 - sys_corr_71: 4.55520960e+01 - sys_corr_72: -2.76701797e+01 - sys_corr_73: -5.49362245e+01 + sys_corr_71: -5.49362245e+01 + sys_corr_72: 2.76701797e+01 + sys_corr_73: 4.55520960e+01 sys_corr_74: -5.57430938e+00 sys_corr_75: 8.65861143e+00 sys_corr_76: 2.22877089e+00 - sys_corr_77: -5.08222891e+00 - sys_corr_78: 3.91832389e+00 - sys_corr_79: 6.42677642e+00 - sys_corr_80: -1.93510901e+00 + sys_corr_77: 5.08222891e+00 + sys_corr_78: 6.42677642e+00 + sys_corr_79: 1.93510901e+00 + sys_corr_80: -3.91832389e+00 sys_corr_81: 2.74920325e+00 sys_corr_82: -6.23434273e+00 sys_corr_83: 2.29771815e+00 - sys_corr_84: 3.76016443e+00 + sys_corr_84: -3.76016443e+00 sys_corr_85: 8.30349940e-01 sys_corr_86: -1.79668110e+00 sys_corr_87: 8.67695690e+00 sys_corr_88: 6.08819015e-01 sys_corr_89: 4.59144990e-01 sys_corr_90: 1.05756558e-03 - sys_corr_91: -1.38897108e+00 + sys_corr_91: 1.38897108e+00 sys_corr_92: 3.17554764e+00 sys_corr_93: 3.69936864e-01 sys_corr_94: 2.33303978e-01 @@ -7468,40 +7468,40 @@ bins: sys_corr_96: 1.67706327e-01 sys_corr_97: 2.00918726e+00 sys_corr_98: 3.44135829e-01 - sys_corr_99: -5.82529878e-01 - sys_corr_100: -4.10843040e-01 + sys_corr_99: 5.82529878e-01 + sys_corr_100: 4.10843040e-01 sys_corr_101: -3.37675987e-01 - sys_corr_102: -6.86071076e-01 - sys_corr_103: -1.24953299e+00 - sys_corr_104: -5.58791844e-02 - sys_corr_105: -1.47374473e+00 - sys_corr_106: -5.01480419e-02 - sys_corr_107: 1.25993565e-01 + sys_corr_102: 6.86071076e-01 + sys_corr_103: 1.24953299e+00 + sys_corr_104: 5.58791844e-02 + sys_corr_105: 1.47374473e+00 + sys_corr_106: 5.01480419e-02 + sys_corr_107: -1.25993565e-01 sys_corr_108: -1.33811447e-01 sys_corr_109: 1.51714069e-01 sys_corr_110: 2.14177322e-01 - sys_corr_111: 2.73666724e-01 + sys_corr_111: -2.73666724e-01 sys_corr_112: 6.50271237e-02 sys_corr_113: 1.39786255e-01 sys_corr_114: -1.59884407e-03 - sys_corr_115: -7.77278136e-02 + sys_corr_115: 7.77278136e-02 sys_corr_116: -2.39131481e-02 sys_corr_117: 2.62374027e-02 sys_corr_118: 1.71431302e-02 sys_corr_119: -3.23604251e-03 sys_corr_120: 2.30437030e-02 - sys_corr_121: 2.31990343e-03 - sys_corr_122: -1.12390715e-03 - sys_corr_123: -8.63348961e-03 + sys_corr_121: -2.31990343e-03 + sys_corr_122: -8.63348961e-03 + sys_corr_123: -1.12390715e-03 sys_corr_124: 5.81836799e-03 - sys_corr_125: -3.93597525e-03 - sys_corr_126: -1.17225744e-02 + sys_corr_125: 3.93597525e-03 + sys_corr_126: 1.17225744e-02 sys_corr_127: -3.10552598e-01 sys_corr_128: 3.99178841e-03 - sys_corr_129: 4.91573916e-03 - sys_corr_130: 1.30177297e-03 + sys_corr_129: -4.91573916e-03 + sys_corr_130: -1.30177297e-03 sys_corr_131: 3.61575232e-03 - sys_corr_132: -2.35320773e-03 + sys_corr_132: 2.35320773e-03 stat: 0.0 luminosity: 2.49604938e+02 - sys_corr_1: 1.09465829e+02 @@ -7513,9 +7513,9 @@ bins: sys_corr_7: 1.81679754e+01 sys_corr_8: 1.01522297e+01 sys_corr_9: -2.96299963e+00 - sys_corr_10: -6.44384255e+00 + sys_corr_10: 6.44384255e+00 sys_corr_11: 2.62415641e+01 - sys_corr_12: -4.01511004e+01 + sys_corr_12: 4.01511004e+01 sys_corr_13: 2.90304610e+01 sys_corr_14: 2.60390168e+00 sys_corr_15: 4.50405592e+00 @@ -7541,60 +7541,60 @@ bins: sys_corr_35: -3.97972149e+01 sys_corr_36: -2.22273341e+02 sys_corr_37: 1.95667923e+02 - sys_corr_38: 1.43611467e+01 - sys_corr_39: 9.73176461e+01 - sys_corr_40: 2.88504809e+01 - sys_corr_41: -3.45793374e+01 - sys_corr_42: 6.31671309e+01 - sys_corr_43: 3.98302118e+00 + sys_corr_38: -1.43611467e+01 + sys_corr_39: -9.73176461e+01 + sys_corr_40: -2.88504809e+01 + sys_corr_41: 3.45793374e+01 + sys_corr_42: -6.31671309e+01 + sys_corr_43: -3.98302118e+00 sys_corr_44: -8.39928676e+01 - sys_corr_45: 1.46885936e+01 - sys_corr_46: 1.20446645e+01 + sys_corr_45: -1.46885936e+01 + sys_corr_46: -1.20446645e+01 sys_corr_47: 3.17848310e+01 - sys_corr_48: 1.08097101e+01 + sys_corr_48: -1.08097101e+01 sys_corr_49: -2.71435900e+01 sys_corr_50: 1.63149063e+01 sys_corr_51: -1.00437731e+01 - sys_corr_52: 1.34879189e+00 - sys_corr_53: -4.87880443e+00 + sys_corr_52: -1.34879189e+00 + sys_corr_53: 4.87880443e+00 sys_corr_54: -3.88822540e+00 - sys_corr_55: -3.71884339e+00 + sys_corr_55: 3.71884339e+00 sys_corr_56: 3.19927304e+00 - sys_corr_57: 2.05473045e+00 + sys_corr_57: -2.05473045e+00 sys_corr_58: 2.32425066e+00 - sys_corr_59: 9.95283287e-01 + sys_corr_59: -9.95283287e-01 sys_corr_60: -2.26560792e+00 sys_corr_61: -2.11668673e-01 sys_corr_62: -3.13708040e+00 - sys_corr_63: -1.09660360e+00 - sys_corr_64: -1.07263979e+00 + sys_corr_63: 1.09660360e+00 + sys_corr_64: 1.07263979e+00 sys_corr_65: 1.01158594e+00 sys_corr_66: 4.56425596e+00 sys_corr_67: -2.48663003e+00 sys_corr_68: -5.53703229e+00 sys_corr_69: -6.88035752e+00 sys_corr_70: -4.12150774e+00 - sys_corr_71: 5.81235162e+00 - sys_corr_72: -1.44441883e+00 - sys_corr_73: -3.26529854e+00 + sys_corr_71: -3.26529854e+00 + sys_corr_72: 1.44441883e+00 + sys_corr_73: 5.81235162e+00 sys_corr_74: 4.41699821e-01 sys_corr_75: 6.05493566e-01 sys_corr_76: -7.37682987e-01 - sys_corr_77: -1.29278295e+00 - sys_corr_78: 6.80326901e-01 - sys_corr_79: -8.87699364e-02 - sys_corr_80: -6.19453025e-03 + sys_corr_77: 1.29278295e+00 + sys_corr_78: -8.87699364e-02 + sys_corr_79: 6.19453025e-03 + sys_corr_80: -6.80326901e-01 sys_corr_81: 5.39643529e-01 sys_corr_82: -2.41308901e+00 sys_corr_83: 1.90127066e-01 - sys_corr_84: 1.20968533e+00 + sys_corr_84: -1.20968533e+00 sys_corr_85: -1.60630710e+00 sys_corr_86: -4.79531311e-01 sys_corr_87: 9.46108403e-01 sys_corr_88: 3.20650823e-01 sys_corr_89: 6.90923099e-02 sys_corr_90: 6.50376184e-01 - sys_corr_91: -7.34386958e-02 + sys_corr_91: 7.34386958e-02 sys_corr_92: 1.74583662e-01 sys_corr_93: -1.23486677e-01 sys_corr_94: -1.17857007e-01 @@ -7602,40 +7602,40 @@ bins: sys_corr_96: 7.32601742e-02 sys_corr_97: 4.33631956e-01 sys_corr_98: 2.12437877e-01 - sys_corr_99: -1.73171262e-01 - sys_corr_100: -4.07683658e-02 + sys_corr_99: 1.73171262e-01 + sys_corr_100: 4.07683658e-02 sys_corr_101: 4.85700482e-02 - sys_corr_102: 4.60841590e-03 - sys_corr_103: -1.03185356e+00 - sys_corr_104: -1.77177248e-01 - sys_corr_105: -5.44648057e-01 - sys_corr_106: -3.22194578e-02 - sys_corr_107: 1.02277381e-01 + sys_corr_102: -4.60841590e-03 + sys_corr_103: 1.03185356e+00 + sys_corr_104: 1.77177248e-01 + sys_corr_105: 5.44648057e-01 + sys_corr_106: 3.22194578e-02 + sys_corr_107: -1.02277381e-01 sys_corr_108: -1.21015343e-01 sys_corr_109: 7.05496925e-02 sys_corr_110: 2.09751851e-02 - sys_corr_111: 2.69931162e-01 + sys_corr_111: -2.69931162e-01 sys_corr_112: 1.57637704e-02 sys_corr_113: 1.51130478e-02 sys_corr_114: -9.59216893e-04 - sys_corr_115: 1.96027420e-03 + sys_corr_115: -1.96027420e-03 sys_corr_116: -1.96048944e-02 sys_corr_117: 7.92889467e-03 sys_corr_118: -1.07385297e-02 sys_corr_119: -1.45633599e-03 sys_corr_120: 8.65021179e-03 - sys_corr_121: -8.61139737e-04 - sys_corr_122: -6.92976116e-03 - sys_corr_123: 1.33852022e-02 + sys_corr_121: 8.61139737e-04 + sys_corr_122: 1.33852022e-02 + sys_corr_123: -6.92976116e-03 sys_corr_124: 4.40512573e-03 - sys_corr_125: 8.90045844e-04 - sys_corr_126: -3.98736958e-03 + sys_corr_125: -8.90045844e-04 + sys_corr_126: 3.98736958e-03 sys_corr_127: -1.35366474e-01 sys_corr_128: 2.24029300e-02 - sys_corr_129: -1.07149970e-02 - sys_corr_130: 1.20054682e-03 + sys_corr_129: 1.07149970e-02 + sys_corr_130: -1.20054682e-03 sys_corr_131: -5.81558272e-03 - sys_corr_132: -2.20912586e-03 + sys_corr_132: 2.20912586e-03 stat: 0.0 luminosity: 2.34780832e+02 - sys_corr_1: 1.26803089e+02 @@ -7647,9 +7647,9 @@ bins: sys_corr_7: 1.97864513e+01 sys_corr_8: 1.10497648e+01 sys_corr_9: -7.08433093e+00 - sys_corr_10: -3.59288012e+00 + sys_corr_10: 3.59288012e+00 sys_corr_11: 2.88084115e+01 - sys_corr_12: -4.96412508e+01 + sys_corr_12: 4.96412508e+01 sys_corr_13: 2.98132715e+01 sys_corr_14: 6.62063560e+00 sys_corr_15: 2.16005850e+01 @@ -7675,60 +7675,60 @@ bins: sys_corr_35: -1.61462963e+01 sys_corr_36: -1.08854014e+01 sys_corr_37: 9.85345159e-01 - sys_corr_38: -3.47067643e-02 - sys_corr_39: 6.57106587e-01 - sys_corr_40: -4.60776035e+00 - sys_corr_41: 3.10673989e+00 - sys_corr_42: -2.04601612e+01 - sys_corr_43: -8.21924846e+00 + sys_corr_38: 3.47067643e-02 + sys_corr_39: -6.57106587e-01 + sys_corr_40: 4.60776035e+00 + sys_corr_41: -3.10673989e+00 + sys_corr_42: 2.04601612e+01 + sys_corr_43: 8.21924846e+00 sys_corr_44: 5.76998356e+01 - sys_corr_45: -4.26437741e+00 - sys_corr_46: -3.13596665e-01 + sys_corr_45: 4.26437741e+00 + sys_corr_46: 3.13596665e-01 sys_corr_47: -2.48448584e+01 - sys_corr_48: -1.83452403e+01 + sys_corr_48: 1.83452403e+01 sys_corr_49: 2.94535209e+01 sys_corr_50: -2.65820619e+01 sys_corr_51: 8.37867268e+00 - sys_corr_52: 1.38801028e+00 - sys_corr_53: 5.67697466e+00 + sys_corr_52: -1.38801028e+00 + sys_corr_53: -5.67697466e+00 sys_corr_54: 3.69463718e+00 - sys_corr_55: 6.07151892e+00 + sys_corr_55: -6.07151892e+00 sys_corr_56: -4.06428881e+00 - sys_corr_57: -1.08008860e+01 + sys_corr_57: 1.08008860e+01 sys_corr_58: -1.55335835e+01 - sys_corr_59: -7.56053751e-01 + sys_corr_59: 7.56053751e-01 sys_corr_60: 1.62818317e+01 sys_corr_61: -3.77758679e-01 sys_corr_62: 2.35660893e+00 - sys_corr_63: 3.07211853e+00 - sys_corr_64: 6.94550386e+00 + sys_corr_63: -3.07211853e+00 + sys_corr_64: -6.94550386e+00 sys_corr_65: 1.06857786e+00 sys_corr_66: -3.78782421e+01 sys_corr_67: 1.75850276e+01 sys_corr_68: 3.91550145e+01 sys_corr_69: 5.03827719e+01 sys_corr_70: 2.72728868e+01 - sys_corr_71: -3.42970265e+01 - sys_corr_72: -1.35376550e+00 - sys_corr_73: 1.20202337e+01 + sys_corr_71: 1.20202337e+01 + sys_corr_72: 1.35376550e+00 + sys_corr_73: -3.42970265e+01 sys_corr_74: -7.32788155e+00 sys_corr_75: 7.56927409e+01 sys_corr_76: -2.15571128e+01 - sys_corr_77: -2.01186777e+01 - sys_corr_78: 7.37896061e+00 - sys_corr_79: 3.34763414e+00 - sys_corr_80: -8.57482828e-01 + sys_corr_77: 2.01186777e+01 + sys_corr_78: 3.34763414e+00 + sys_corr_79: 8.57482828e-01 + sys_corr_80: -7.37896061e+00 sys_corr_81: 5.54155836e+01 sys_corr_82: -3.41105572e+01 sys_corr_83: 3.05183139e+01 - sys_corr_84: 1.50789296e+00 + sys_corr_84: -1.50789296e+00 sys_corr_85: -8.15225177e+00 sys_corr_86: 7.11732796e+01 sys_corr_87: -9.60746007e+01 sys_corr_88: -2.54213079e+01 sys_corr_89: -3.67048427e-01 sys_corr_90: 5.90312770e+00 - sys_corr_91: -5.55796148e-01 + sys_corr_91: 5.55796148e-01 sys_corr_92: 1.40932033e+02 sys_corr_93: -9.10244383e-01 sys_corr_94: -2.55578218e+00 @@ -7736,40 +7736,40 @@ bins: sys_corr_96: 1.68911061e-02 sys_corr_97: 5.24511117e-01 sys_corr_98: 6.41731625e-01 - sys_corr_99: -4.55797895e-01 - sys_corr_100: -3.07527640e-01 + sys_corr_99: 4.55797895e-01 + sys_corr_100: 3.07527640e-01 sys_corr_101: -5.27289123e-02 - sys_corr_102: -5.87926348e-02 - sys_corr_103: -7.57153705e-01 - sys_corr_104: -7.05426374e-01 - sys_corr_105: -5.34085346e-01 - sys_corr_106: -7.23492662e-02 - sys_corr_107: 2.52065315e-01 + sys_corr_102: 5.87926348e-02 + sys_corr_103: 7.57153705e-01 + sys_corr_104: 7.05426374e-01 + sys_corr_105: 5.34085346e-01 + sys_corr_106: 7.23492662e-02 + sys_corr_107: -2.52065315e-01 sys_corr_108: -2.82779827e-01 sys_corr_109: 5.85657608e-01 sys_corr_110: 6.80644042e-02 - sys_corr_111: 1.21285957e-01 + sys_corr_111: -1.21285957e-01 sys_corr_112: 2.85804399e-01 sys_corr_113: 2.42941499e-01 sys_corr_114: -4.29550222e-03 - sys_corr_115: -1.65147989e-02 + sys_corr_115: 1.65147989e-02 sys_corr_116: -3.94695815e-02 sys_corr_117: 5.29517507e-02 sys_corr_118: -3.53993930e-02 sys_corr_119: -6.23277521e-03 sys_corr_120: 2.60763323e-02 - sys_corr_121: -3.87072133e-03 - sys_corr_122: -1.46675922e-02 - sys_corr_123: 1.29548885e-02 + sys_corr_121: 3.87072133e-03 + sys_corr_122: 1.29548885e-02 + sys_corr_123: -1.46675922e-02 sys_corr_124: 7.49116842e-02 - sys_corr_125: -9.15634590e-03 - sys_corr_126: -1.57602600e-02 + sys_corr_125: 9.15634590e-03 + sys_corr_126: 1.57602600e-02 sys_corr_127: 9.00832691e-02 sys_corr_128: -5.71480187e-02 - sys_corr_129: 4.67625099e-02 - sys_corr_130: -2.02100555e-03 + sys_corr_129: -4.67625099e-02 + sys_corr_130: 2.02100555e-03 sys_corr_131: 3.15986116e-03 - sys_corr_132: 5.26284803e-02 + sys_corr_132: -5.26284803e-02 stat: 0.0 luminosity: 2.57288790e+02 - sys_corr_1: 1.27116008e+02 @@ -7781,9 +7781,9 @@ bins: sys_corr_7: 2.58077612e+01 sys_corr_8: 6.82362849e+00 sys_corr_9: -1.09282446e+01 - sys_corr_10: -3.89299051e+00 + sys_corr_10: 3.89299051e+00 sys_corr_11: 2.62801898e+01 - sys_corr_12: -4.30548202e+01 + sys_corr_12: 4.30548202e+01 sys_corr_13: 2.07400333e+01 sys_corr_14: 3.61506505e+00 sys_corr_15: 9.41895847e+00 @@ -7809,60 +7809,60 @@ bins: sys_corr_35: 5.84143500e+00 sys_corr_36: -1.89354249e+01 sys_corr_37: -1.26409960e+00 - sys_corr_38: 4.76048424e+00 - sys_corr_39: -1.48233451e+01 - sys_corr_40: -5.72858019e+00 - sys_corr_41: 2.36355103e+00 - sys_corr_42: -1.82136113e+01 - sys_corr_43: -2.93263223e+00 + sys_corr_38: -4.76048424e+00 + sys_corr_39: 1.48233451e+01 + sys_corr_40: 5.72858019e+00 + sys_corr_41: -2.36355103e+00 + sys_corr_42: 1.82136113e+01 + sys_corr_43: 2.93263223e+00 sys_corr_44: 4.03687978e+01 - sys_corr_45: -1.02239535e+01 - sys_corr_46: 5.59213217e+00 + sys_corr_45: 1.02239535e+01 + sys_corr_46: -5.59213217e+00 sys_corr_47: -2.17819562e+01 - sys_corr_48: -8.19273124e+00 + sys_corr_48: 8.19273124e+00 sys_corr_49: 2.87617791e+01 sys_corr_50: -2.84381374e+01 sys_corr_51: 6.69336084e+00 - sys_corr_52: 3.53055228e+00 - sys_corr_53: 8.00670916e+00 + sys_corr_52: -3.53055228e+00 + sys_corr_53: -8.00670916e+00 sys_corr_54: -2.29549210e+00 - sys_corr_55: 1.26920828e+01 + sys_corr_55: -1.26920828e+01 sys_corr_56: -1.80465588e+00 - sys_corr_57: -1.41389947e+01 + sys_corr_57: 1.41389947e+01 sys_corr_58: -9.68902175e+00 - sys_corr_59: 1.14002982e+01 + sys_corr_59: -1.14002982e+01 sys_corr_60: 1.04399158e+01 sys_corr_61: 1.28777928e+01 sys_corr_62: -8.27034260e+00 - sys_corr_63: 9.82215453e+00 - sys_corr_64: 1.35308511e+01 + sys_corr_63: -9.82215453e+00 + sys_corr_64: -1.35308511e+01 sys_corr_65: 1.35858066e+00 sys_corr_66: -2.01985583e+01 sys_corr_67: 2.70111161e+01 sys_corr_68: 6.85817918e+01 sys_corr_69: 5.96753129e+01 sys_corr_70: 3.70818372e+01 - sys_corr_71: -7.14029164e+01 - sys_corr_72: 6.97993923e+00 - sys_corr_73: -9.85942607e+01 + sys_corr_71: -9.85942607e+01 + sys_corr_72: -6.97993923e+00 + sys_corr_73: -7.14029164e+01 sys_corr_74: -8.12498483e+01 sys_corr_75: 6.67784575e+01 sys_corr_76: 5.29585932e+01 - sys_corr_77: -1.03651810e+01 - sys_corr_78: 5.36688149e+00 - sys_corr_79: -8.21566016e+00 - sys_corr_80: 1.40929387e+01 + sys_corr_77: 1.03651810e+01 + sys_corr_78: -8.21566016e+00 + sys_corr_79: -1.40929387e+01 + sys_corr_80: -5.36688149e+00 sys_corr_81: 1.50678817e+01 sys_corr_82: -1.71016472e+01 sys_corr_83: -4.14152478e+00 - sys_corr_84: 2.57342991e+00 + sys_corr_84: -2.57342991e+00 sys_corr_85: -2.59634786e+00 sys_corr_86: -5.02968721e+01 sys_corr_87: -2.59439181e+01 sys_corr_88: 2.79758577e+01 sys_corr_89: -8.77265547e-01 sys_corr_90: 3.01577723e+00 - sys_corr_91: 1.44831372e+00 + sys_corr_91: -1.44831372e+00 sys_corr_92: -1.21416507e+02 sys_corr_93: -5.37246837e-01 sys_corr_94: -1.68704961e+00 @@ -7870,40 +7870,40 @@ bins: sys_corr_96: 1.59460635e-01 sys_corr_97: -1.28455143e+00 sys_corr_98: -1.95439387e-01 - sys_corr_99: 5.77890329e-01 - sys_corr_100: 2.00137205e-01 + sys_corr_99: -5.77890329e-01 + sys_corr_100: -2.00137205e-01 sys_corr_101: 1.03231320e-01 - sys_corr_102: 5.31388319e-01 - sys_corr_103: -9.98475104e-01 - sys_corr_104: -4.24023421e-01 - sys_corr_105: -4.77055617e-02 - sys_corr_106: -1.96406346e-01 - sys_corr_107: -1.52439560e-01 + sys_corr_102: -5.31388319e-01 + sys_corr_103: 9.98475104e-01 + sys_corr_104: 4.24023421e-01 + sys_corr_105: 4.77055617e-02 + sys_corr_106: 1.96406346e-01 + sys_corr_107: 1.52439560e-01 sys_corr_108: -4.25315718e-01 sys_corr_109: 3.87442220e-01 sys_corr_110: -7.23782625e-02 - sys_corr_111: -2.11591556e-01 + sys_corr_111: 2.11591556e-01 sys_corr_112: 2.17151292e-01 sys_corr_113: 2.22766913e-01 sys_corr_114: -2.09568484e-03 - sys_corr_115: 4.64636075e-02 + sys_corr_115: -4.64636075e-02 sys_corr_116: -4.44755548e-02 sys_corr_117: 6.00284479e-02 sys_corr_118: 2.44535570e-02 sys_corr_119: 6.16594844e-03 sys_corr_120: 1.88759875e-02 - sys_corr_121: 8.69349876e-04 - sys_corr_122: -1.66348366e-02 - sys_corr_123: -8.93747099e-05 + sys_corr_121: -8.69349876e-04 + sys_corr_122: -8.93747099e-05 + sys_corr_123: -1.66348366e-02 sys_corr_124: 6.96037793e-02 - sys_corr_125: -5.45244864e-03 - sys_corr_126: -6.02103897e-03 + sys_corr_125: 5.45244864e-03 + sys_corr_126: 6.02103897e-03 sys_corr_127: -1.06829219e-01 sys_corr_128: -1.33400144e-01 - sys_corr_129: 9.88834917e-02 - sys_corr_130: 8.52363549e-03 + sys_corr_129: -9.88834917e-02 + sys_corr_130: -8.52363549e-03 sys_corr_131: 2.26168305e-02 - sys_corr_132: 3.67675441e-02 + sys_corr_132: -3.67675441e-02 stat: 0.0 luminosity: 2.52723416e+02 - sys_corr_1: 1.22664235e+02 @@ -7915,9 +7915,9 @@ bins: sys_corr_7: 2.88540199e+01 sys_corr_8: 1.05181338e+01 sys_corr_9: -1.46712530e+01 - sys_corr_10: 2.68701158e+00 + sys_corr_10: -2.68701158e+00 sys_corr_11: 2.53387670e+01 - sys_corr_12: -3.24623489e+01 + sys_corr_12: 3.24623489e+01 sys_corr_13: 2.63824612e+01 sys_corr_14: 8.71511374e+00 sys_corr_15: 9.35687576e+00 @@ -7943,60 +7943,60 @@ bins: sys_corr_35: -3.48816194e+00 sys_corr_36: -1.11780348e+01 sys_corr_37: 1.35985124e+01 - sys_corr_38: -5.08090102e+00 - sys_corr_39: 1.03742060e+01 - sys_corr_40: -2.53463206e+01 - sys_corr_41: 3.64412382e+00 - sys_corr_42: -5.19412220e+01 - sys_corr_43: -1.84248204e+01 + sys_corr_38: 5.08090102e+00 + sys_corr_39: -1.03742060e+01 + sys_corr_40: 2.53463206e+01 + sys_corr_41: -3.64412382e+00 + sys_corr_42: 5.19412220e+01 + sys_corr_43: 1.84248204e+01 sys_corr_44: 5.65392181e+01 - sys_corr_45: 1.10138422e+00 - sys_corr_46: 1.31657045e+01 + sys_corr_45: -1.10138422e+00 + sys_corr_46: -1.31657045e+01 sys_corr_47: -1.61335671e+01 - sys_corr_48: -4.11338283e+01 + sys_corr_48: 4.11338283e+01 sys_corr_49: 1.39776566e+01 sys_corr_50: -2.67508292e+00 sys_corr_51: 8.42617400e-01 - sys_corr_52: 1.19112956e+01 - sys_corr_53: 1.68843962e+01 + sys_corr_52: -1.19112956e+01 + sys_corr_53: -1.68843962e+01 sys_corr_54: -6.09958728e+01 - sys_corr_55: -1.74235537e+01 + sys_corr_55: 1.74235537e+01 sys_corr_56: 3.55171296e+01 - sys_corr_57: -1.54656798e+02 + sys_corr_57: 1.54656798e+02 sys_corr_58: -1.27979406e+02 - sys_corr_59: -9.37207483e+01 + sys_corr_59: 9.37207483e+01 sys_corr_60: -1.16801347e+02 sys_corr_61: -1.06982511e+00 sys_corr_62: 7.08124324e+01 - sys_corr_63: 2.08559464e+01 - sys_corr_64: -1.46057602e+01 + sys_corr_63: -2.08559464e+01 + sys_corr_64: 1.46057602e+01 sys_corr_65: 4.31122770e+00 sys_corr_66: 6.61654920e+00 sys_corr_67: -2.60220146e+01 sys_corr_68: -1.44721518e+01 sys_corr_69: -3.30367304e+01 sys_corr_70: -1.38537545e+01 - sys_corr_71: 1.02467389e+01 - sys_corr_72: -8.55850033e+00 - sys_corr_73: 6.50409695e+00 + sys_corr_71: 6.50409695e+00 + sys_corr_72: 8.55850033e+00 + sys_corr_73: 1.02467389e+01 sys_corr_74: 1.40256063e+00 sys_corr_75: -1.82454568e+01 sys_corr_76: 6.62389552e+00 - sys_corr_77: -2.00838986e+01 - sys_corr_78: 3.46567196e+00 - sys_corr_79: -1.25071532e+01 - sys_corr_80: -1.46481001e+00 + sys_corr_77: 2.00838986e+01 + sys_corr_78: -1.25071532e+01 + sys_corr_79: 1.46481001e+00 + sys_corr_80: -3.46567196e+00 sys_corr_81: -1.51612475e+00 sys_corr_82: -9.95002635e-01 sys_corr_83: -7.82021607e-01 - sys_corr_84: 4.46762450e+00 + sys_corr_84: -4.46762450e+00 sys_corr_85: 8.68495273e-01 sys_corr_86: 2.37039122e+00 sys_corr_87: 7.02949257e-01 sys_corr_88: -5.08634690e+00 sys_corr_89: -1.54354757e+00 sys_corr_90: -8.43331579e-01 - sys_corr_91: 3.18459514e-01 + sys_corr_91: -3.18459514e-01 sys_corr_92: -1.31662301e+01 sys_corr_93: -1.80854841e-02 sys_corr_94: 1.50669456e-01 @@ -8004,40 +8004,40 @@ bins: sys_corr_96: 1.28075439e-01 sys_corr_97: -5.42037820e-01 sys_corr_98: -2.05062984e-01 - sys_corr_99: 3.90012636e-02 - sys_corr_100: 2.48386191e-01 + sys_corr_99: -3.90012636e-02 + sys_corr_100: -2.48386191e-01 sys_corr_101: 2.86129888e-01 - sys_corr_102: 6.67658839e-01 - sys_corr_103: -5.07491552e-01 - sys_corr_104: -5.18000938e-01 - sys_corr_105: -5.55419799e-01 - sys_corr_106: -3.15493210e-01 - sys_corr_107: -1.53447595e-01 + sys_corr_102: -6.67658839e-01 + sys_corr_103: 5.07491552e-01 + sys_corr_104: 5.18000938e-01 + sys_corr_105: 5.55419799e-01 + sys_corr_106: 3.15493210e-01 + sys_corr_107: 1.53447595e-01 sys_corr_108: -1.91324489e-01 sys_corr_109: -7.43931290e-02 sys_corr_110: -1.02304360e-01 - sys_corr_111: 8.01932465e-04 + sys_corr_111: -8.01932465e-04 sys_corr_112: 8.41950011e-02 sys_corr_113: 1.01451853e-01 sys_corr_114: -1.14029876e-03 - sys_corr_115: -1.29277615e-02 + sys_corr_115: 1.29277615e-02 sys_corr_116: -2.97255441e-02 sys_corr_117: 3.21294448e-02 sys_corr_118: 6.98683056e-02 sys_corr_119: 7.48851328e-03 sys_corr_120: 1.74425967e-02 - sys_corr_121: 4.36857071e-04 - sys_corr_122: -1.53270925e-03 - sys_corr_123: -5.39945620e-03 + sys_corr_121: -4.36857071e-04 + sys_corr_122: -5.39945620e-03 + sys_corr_123: -1.53270925e-03 sys_corr_124: 3.16287737e-02 - sys_corr_125: -3.88916267e-03 - sys_corr_126: -1.35551723e-03 + sys_corr_125: 3.88916267e-03 + sys_corr_126: 1.35551723e-03 sys_corr_127: -4.14732416e-01 sys_corr_128: -1.27162896e-01 - sys_corr_129: 6.43118557e-02 - sys_corr_130: 4.75118618e-03 + sys_corr_129: -6.43118557e-02 + sys_corr_130: -4.75118618e-03 sys_corr_131: 1.12953341e-02 - sys_corr_132: 1.60325370e-02 + sys_corr_132: -1.60325370e-02 stat: 0.0 luminosity: 2.47644386e+02 - sys_corr_1: 1.24387509e+02 @@ -8049,9 +8049,9 @@ bins: sys_corr_7: 2.91078441e+01 sys_corr_8: 1.35691604e+01 sys_corr_9: -1.34261637e+01 - sys_corr_10: -3.30514850e+00 + sys_corr_10: 3.30514850e+00 sys_corr_11: 1.15502289e+01 - sys_corr_12: -2.93456901e+01 + sys_corr_12: 2.93456901e+01 sys_corr_13: 1.74987424e+01 sys_corr_14: 7.86426047e+00 sys_corr_15: 5.51132073e+00 @@ -8077,60 +8077,60 @@ bins: sys_corr_35: 2.30255579e+01 sys_corr_36: -1.70279769e+01 sys_corr_37: 1.54633910e+01 - sys_corr_38: 4.10855397e+00 - sys_corr_39: 5.36021892e-01 - sys_corr_40: -2.69774700e+00 - sys_corr_41: -1.75479582e+00 - sys_corr_42: -2.10880852e+01 - sys_corr_43: 8.56537440e-01 + sys_corr_38: -4.10855397e+00 + sys_corr_39: -5.36021892e-01 + sys_corr_40: 2.69774700e+00 + sys_corr_41: 1.75479582e+00 + sys_corr_42: 2.10880852e+01 + sys_corr_43: -8.56537440e-01 sys_corr_44: 2.55043346e+01 - sys_corr_45: -9.11348833e+00 - sys_corr_46: 2.04404018e+00 + sys_corr_45: 9.11348833e+00 + sys_corr_46: -2.04404018e+00 sys_corr_47: -1.71450662e+01 - sys_corr_48: -2.12671985e+01 + sys_corr_48: 2.12671985e+01 sys_corr_49: 2.37430930e+01 sys_corr_50: -1.38761671e+01 sys_corr_51: 8.98932699e+00 - sys_corr_52: 2.07634114e+01 - sys_corr_53: 2.36183755e+00 + sys_corr_52: -2.07634114e+01 + sys_corr_53: -2.36183755e+00 sys_corr_54: -1.76606420e+01 - sys_corr_55: 2.54363305e-01 + sys_corr_55: -2.54363305e-01 sys_corr_56: 1.54116306e+01 - sys_corr_57: -6.40318600e+00 + sys_corr_57: 6.40318600e+00 sys_corr_58: 1.36897983e+00 - sys_corr_59: 1.57496200e+01 + sys_corr_59: -1.57496200e+01 sys_corr_60: 9.37917498e+00 sys_corr_61: 4.05072076e+00 sys_corr_62: -2.61864277e+01 - sys_corr_63: -6.63948614e+00 - sys_corr_64: 1.05074745e+01 + sys_corr_63: 6.63948614e+00 + sys_corr_64: -1.05074745e+01 sys_corr_65: 7.36135479e+00 sys_corr_66: -2.59253678e+01 sys_corr_67: 3.02593408e+01 sys_corr_68: -8.40893671e+00 sys_corr_69: 3.27428535e+01 sys_corr_70: 1.89177108e+01 - sys_corr_71: -2.64080111e+01 - sys_corr_72: 1.97313812e+01 - sys_corr_73: -5.87402730e+01 + sys_corr_71: -5.87402730e+01 + sys_corr_72: -1.97313812e+01 + sys_corr_73: -2.64080111e+01 sys_corr_74: 1.65771036e+01 sys_corr_75: -4.02004350e-01 sys_corr_76: -8.38060099e+00 - sys_corr_77: 1.40348820e+01 - sys_corr_78: -3.28755457e+01 - sys_corr_79: -1.31736267e+02 - sys_corr_80: -1.18526072e+01 + sys_corr_77: -1.40348820e+01 + sys_corr_78: -1.31736267e+02 + sys_corr_79: 1.18526072e+01 + sys_corr_80: 3.28755457e+01 sys_corr_81: -1.15998072e+02 sys_corr_82: 1.02038268e+01 sys_corr_83: -2.04518575e+01 - sys_corr_84: -1.99824298e+01 + sys_corr_84: 1.99824298e+01 sys_corr_85: -1.18952689e+01 sys_corr_86: 3.48986723e+01 sys_corr_87: 6.22857618e+01 sys_corr_88: -7.35028892e+00 sys_corr_89: 1.07188362e+00 sys_corr_90: -3.77077414e+00 - sys_corr_91: -2.01776011e+00 + sys_corr_91: 2.01776011e+00 sys_corr_92: 5.19784407e+01 sys_corr_93: -7.74105495e-02 sys_corr_94: 5.66154489e-01 @@ -8138,40 +8138,40 @@ bins: sys_corr_96: -7.81530315e-01 sys_corr_97: -6.54284814e+00 sys_corr_98: -1.90428479e+00 - sys_corr_99: 2.01421046e+00 - sys_corr_100: -1.30474745e+00 + sys_corr_99: -2.01421046e+00 + sys_corr_100: 1.30474745e+00 sys_corr_101: -1.98744194e+00 - sys_corr_102: -4.95997532e+00 - sys_corr_103: 2.11239339e+01 - sys_corr_104: 3.86941587e+00 - sys_corr_105: 1.00455981e+01 - sys_corr_106: 1.75135885e+00 - sys_corr_107: 5.09160496e-01 + sys_corr_102: 4.95997532e+00 + sys_corr_103: -2.11239339e+01 + sys_corr_104: -3.86941587e+00 + sys_corr_105: -1.00455981e+01 + sys_corr_106: -1.75135885e+00 + sys_corr_107: -5.09160496e-01 sys_corr_108: -6.86626176e-02 sys_corr_109: -5.42085243e-02 sys_corr_110: 6.31769750e-02 - sys_corr_111: -3.16182427e+00 + sys_corr_111: 3.16182427e+00 sys_corr_112: 1.64222744e-01 sys_corr_113: 1.86402632e-01 sys_corr_114: 1.34716772e-04 - sys_corr_115: -1.40371255e-01 + sys_corr_115: 1.40371255e-01 sys_corr_116: -8.29813774e-02 sys_corr_117: 8.14869577e-02 sys_corr_118: 1.54399758e-01 sys_corr_119: 6.79083962e-03 sys_corr_120: 2.35176147e-02 - sys_corr_121: -1.89528049e-03 - sys_corr_122: 1.66656507e-02 - sys_corr_123: -3.21001497e-02 + sys_corr_121: 1.89528049e-03 + sys_corr_122: -3.21001497e-02 + sys_corr_123: 1.66656507e-02 sys_corr_124: 7.33622693e-02 - sys_corr_125: -3.10157500e-02 - sys_corr_126: -3.87534413e-03 + sys_corr_125: 3.10157500e-02 + sys_corr_126: 3.87534413e-03 sys_corr_127: -2.58494967e-02 sys_corr_128: 2.16000809e-01 - sys_corr_129: 1.30501358e-01 - sys_corr_130: 5.28255820e-03 + sys_corr_129: -1.30501358e-01 + sys_corr_130: -5.28255820e-03 sys_corr_131: 3.42529851e-02 - sys_corr_132: 3.93517717e-02 + sys_corr_132: -3.93517717e-02 stat: 0.0 luminosity: 2.48515300e+02 - sys_corr_1: 1.27887132e+02 @@ -8183,9 +8183,9 @@ bins: sys_corr_7: 2.82517624e+01 sys_corr_8: 1.75325623e+01 sys_corr_9: -2.12160401e+01 - sys_corr_10: -1.59443838e+00 + sys_corr_10: 1.59443838e+00 sys_corr_11: 3.00053369e+01 - sys_corr_12: -3.26835280e+01 + sys_corr_12: 3.26835280e+01 sys_corr_13: 2.23006643e+01 sys_corr_14: 6.03243622e+00 sys_corr_15: 3.60628383e+00 @@ -8211,60 +8211,60 @@ bins: sys_corr_35: 1.65162818e+01 sys_corr_36: -1.09588174e+01 sys_corr_37: 2.24586370e-01 - sys_corr_38: 1.64671328e+01 - sys_corr_39: -1.15391328e+01 - sys_corr_40: -3.43122096e+00 - sys_corr_41: -1.56284339e+01 - sys_corr_42: -3.47968726e+00 - sys_corr_43: 1.61073283e+01 + sys_corr_38: -1.64671328e+01 + sys_corr_39: 1.15391328e+01 + sys_corr_40: 3.43122096e+00 + sys_corr_41: 1.56284339e+01 + sys_corr_42: 3.47968726e+00 + sys_corr_43: -1.61073283e+01 sys_corr_44: -1.99831118e+01 - sys_corr_45: 4.37211663e+00 - sys_corr_46: 5.98146343e-02 + sys_corr_45: -4.37211663e+00 + sys_corr_46: -5.98146343e-02 sys_corr_47: -1.43303627e+01 - sys_corr_48: -1.65953293e+01 + sys_corr_48: 1.65953293e+01 sys_corr_49: 1.90308133e+01 sys_corr_50: -1.77578753e+01 sys_corr_51: -1.69685746e+01 - sys_corr_52: 9.55414354e+00 - sys_corr_53: 2.91275722e+01 + sys_corr_52: -9.55414354e+00 + sys_corr_53: -2.91275722e+01 sys_corr_54: 1.24196469e+01 - sys_corr_55: 1.28618337e+01 + sys_corr_55: -1.28618337e+01 sys_corr_56: -2.97448857e+00 - sys_corr_57: -2.54335587e+01 + sys_corr_57: 2.54335587e+01 sys_corr_58: -1.20750113e+01 - sys_corr_59: -9.04379152e+00 + sys_corr_59: 9.04379152e+00 sys_corr_60: -8.28710611e+00 sys_corr_61: -1.12295173e+01 sys_corr_62: -1.82281006e+01 - sys_corr_63: 1.51983970e+01 - sys_corr_64: -6.39763985e-01 + sys_corr_63: -1.51983970e+01 + sys_corr_64: 6.39763985e-01 sys_corr_65: 2.18127796e+01 sys_corr_66: -1.54074354e+00 sys_corr_67: 3.11943687e+00 sys_corr_68: 7.13027149e+01 sys_corr_69: -4.46454637e+00 sys_corr_70: 2.11833791e+01 - sys_corr_71: -1.55031617e+01 - sys_corr_72: 1.86556741e+00 - sys_corr_73: -5.72121464e+01 + sys_corr_71: -5.72121464e+01 + sys_corr_72: -1.86556741e+00 + sys_corr_73: -1.55031617e+01 sys_corr_74: 7.21089717e+00 sys_corr_75: -5.34879339e+01 sys_corr_76: -5.07491876e-01 - sys_corr_77: 1.04170740e+02 - sys_corr_78: -8.61915994e+00 - sys_corr_79: 1.28842663e+02 - sys_corr_80: 9.17532193e-01 + sys_corr_77: -1.04170740e+02 + sys_corr_78: 1.28842663e+02 + sys_corr_79: -9.17532193e-01 + sys_corr_80: 8.61915994e+00 sys_corr_81: -6.36552835e+01 sys_corr_82: -3.96082948e+01 sys_corr_83: -3.85479459e+01 - sys_corr_84: -1.12845773e+01 + sys_corr_84: 1.12845773e+01 sys_corr_85: 1.10240044e+01 sys_corr_86: 3.55888748e+01 sys_corr_87: 8.43242023e+00 sys_corr_88: -2.62429570e+01 sys_corr_89: -1.92607703e+00 sys_corr_90: 6.96589403e+00 - sys_corr_91: 8.45893523e+00 + sys_corr_91: -8.45893523e+00 sys_corr_92: 2.59285822e+01 sys_corr_93: 7.77197104e-01 sys_corr_94: 2.25525417e+00 @@ -8272,40 +8272,40 @@ bins: sys_corr_96: -2.98400820e-01 sys_corr_97: -3.97879134e+00 sys_corr_98: -1.43871172e+00 - sys_corr_99: 1.23388894e+00 - sys_corr_100: 3.98175323e-01 + sys_corr_99: -1.23388894e+00 + sys_corr_100: -3.98175323e-01 sys_corr_101: 1.05392948e-02 - sys_corr_102: -2.74674984e-01 - sys_corr_103: 7.14800325e-01 - sys_corr_104: -4.57201166e-01 - sys_corr_105: 1.70185481e+00 - sys_corr_106: -2.47454507e-01 - sys_corr_107: 2.99395123e-01 + sys_corr_102: 2.74674984e-01 + sys_corr_103: -7.14800325e-01 + sys_corr_104: 4.57201166e-01 + sys_corr_105: -1.70185481e+00 + sys_corr_106: 2.47454507e-01 + sys_corr_107: -2.99395123e-01 sys_corr_108: 1.65993835e-01 sys_corr_109: 1.48707299e-01 sys_corr_110: -1.43577629e-01 - sys_corr_111: -3.21715354e-01 + sys_corr_111: 3.21715354e-01 sys_corr_112: 2.73354265e-02 sys_corr_113: 1.42807681e-01 sys_corr_114: -2.19048167e-03 - sys_corr_115: 2.54426358e-03 + sys_corr_115: -2.54426358e-03 sys_corr_116: -1.05353699e-01 sys_corr_117: 5.72292551e-02 sys_corr_118: 1.50381162e-01 sys_corr_119: 9.66541775e-03 sys_corr_120: 4.33977156e-02 - sys_corr_121: 9.59698157e-03 - sys_corr_122: 1.18217731e-02 - sys_corr_123: -3.91354102e-02 + sys_corr_121: -9.59698157e-03 + sys_corr_122: -3.91354102e-02 + sys_corr_123: 1.18217731e-02 sys_corr_124: 1.35455395e-01 - sys_corr_125: -4.24313141e-02 - sys_corr_126: -6.38184307e-04 + sys_corr_125: 4.24313141e-02 + sys_corr_126: 6.38184307e-04 sys_corr_127: 2.28717387e-01 sys_corr_128: -1.15247414e-01 - sys_corr_129: 3.12815889e-02 - sys_corr_130: 1.61614181e-02 + sys_corr_129: -3.12815889e-02 + sys_corr_130: -1.61614181e-02 sys_corr_131: 3.16601122e-02 - sys_corr_132: 8.09434959e-02 + sys_corr_132: -8.09434959e-02 stat: 0.0 luminosity: 2.45734258e+02 - sys_corr_1: 1.15698695e+02 @@ -8317,9 +8317,9 @@ bins: sys_corr_7: 2.14604089e+01 sys_corr_8: 1.20084417e+01 sys_corr_9: -1.80347786e+01 - sys_corr_10: -1.39390619e-02 + sys_corr_10: 1.39390619e-02 sys_corr_11: 1.21781686e+01 - sys_corr_12: -2.28504852e+01 + sys_corr_12: 2.28504852e+01 sys_corr_13: 1.80031555e+01 sys_corr_14: -5.97809933e+00 sys_corr_15: 8.63815393e+00 @@ -8345,60 +8345,60 @@ bins: sys_corr_35: 1.15546945e+01 sys_corr_36: -5.45081676e+00 sys_corr_37: -1.06903957e+00 - sys_corr_38: -7.09613569e+00 - sys_corr_39: -1.75482621e+01 - sys_corr_40: 1.25747814e+00 - sys_corr_41: 3.51981738e-01 - sys_corr_42: -5.55736434e+00 - sys_corr_43: -1.83244055e+00 + sys_corr_38: 7.09613569e+00 + sys_corr_39: 1.75482621e+01 + sys_corr_40: -1.25747814e+00 + sys_corr_41: -3.51981738e-01 + sys_corr_42: 5.55736434e+00 + sys_corr_43: 1.83244055e+00 sys_corr_44: -1.86094840e+01 - sys_corr_45: -4.08600391e+01 - sys_corr_46: -7.67336862e+00 + sys_corr_45: 4.08600391e+01 + sys_corr_46: 7.67336862e+00 sys_corr_47: -2.03754220e+01 - sys_corr_48: -1.45035364e+01 + sys_corr_48: 1.45035364e+01 sys_corr_49: 1.60241813e+01 sys_corr_50: -6.36358006e+00 sys_corr_51: -1.04886305e+01 - sys_corr_52: 1.08510688e+01 - sys_corr_53: 9.83454120e+00 + sys_corr_52: -1.08510688e+01 + sys_corr_53: -9.83454120e+00 sys_corr_54: 1.24573039e+01 - sys_corr_55: 6.03129450e+00 + sys_corr_55: -6.03129450e+00 sys_corr_56: 1.63374660e+01 - sys_corr_57: -8.67846321e+00 + sys_corr_57: 8.67846321e+00 sys_corr_58: -1.97132777e+01 - sys_corr_59: 5.08442567e+00 + sys_corr_59: -5.08442567e+00 sys_corr_60: -6.70523894e+00 sys_corr_61: -2.23666397e+01 sys_corr_62: -3.45030087e+00 - sys_corr_63: -1.14668316e+01 - sys_corr_64: 2.02994563e+01 + sys_corr_63: 1.14668316e+01 + sys_corr_64: -2.02994563e+01 sys_corr_65: 1.45353382e+01 sys_corr_66: -1.39262522e+01 sys_corr_67: 1.59395773e+01 sys_corr_68: 2.74940942e+01 sys_corr_69: -6.07103210e+00 sys_corr_70: 1.37758129e+01 - sys_corr_71: 5.18326506e+00 - sys_corr_72: 2.17726661e+01 - sys_corr_73: 3.50327556e+01 + sys_corr_71: 3.50327556e+01 + sys_corr_72: -2.17726661e+01 + sys_corr_73: 5.18326506e+00 sys_corr_74: 5.38746637e+00 sys_corr_75: 1.28776935e+02 sys_corr_76: -4.32027954e+01 - sys_corr_77: -5.27905313e+01 - sys_corr_78: -3.02167346e+01 - sys_corr_79: 7.71854762e+01 - sys_corr_80: -5.16347114e+00 + sys_corr_77: 5.27905313e+01 + sys_corr_78: 7.71854762e+01 + sys_corr_79: 5.16347114e+00 + sys_corr_80: 3.02167346e+01 sys_corr_81: -2.30520223e+01 sys_corr_82: 5.02982486e+01 sys_corr_83: 1.52770387e+01 - sys_corr_84: 2.54435688e+01 + sys_corr_84: -2.54435688e+01 sys_corr_85: 2.42142415e+01 sys_corr_86: -2.46236393e+01 sys_corr_87: 1.25866499e+02 sys_corr_88: 2.31093595e+01 sys_corr_89: -5.00159938e+00 sys_corr_90: -2.88119827e+00 - sys_corr_91: 1.05717602e+00 + sys_corr_91: -1.05717602e+00 sys_corr_92: 2.41118279e+01 sys_corr_93: 1.77075550e-01 sys_corr_94: 8.43257571e-01 @@ -8406,40 +8406,40 @@ bins: sys_corr_96: -2.97007122e-01 sys_corr_97: -9.42791574e-01 sys_corr_98: -1.22338292e-01 - sys_corr_99: 5.61855505e-01 - sys_corr_100: -5.46329450e-02 + sys_corr_99: -5.61855505e-01 + sys_corr_100: 5.46329450e-02 sys_corr_101: 1.65088950e-01 - sys_corr_102: 7.13899036e-01 - sys_corr_103: -1.56965181e+00 - sys_corr_104: -6.47070467e-01 - sys_corr_105: 2.42105571e-02 - sys_corr_106: -2.44869443e-01 - sys_corr_107: 2.38283693e-01 + sys_corr_102: -7.13899036e-01 + sys_corr_103: 1.56965181e+00 + sys_corr_104: 6.47070467e-01 + sys_corr_105: -2.42105571e-02 + sys_corr_106: 2.44869443e-01 + sys_corr_107: -2.38283693e-01 sys_corr_108: 6.91341342e-02 sys_corr_109: 1.15501192e-03 sys_corr_110: 1.57035606e-01 - sys_corr_111: -5.72112541e-02 + sys_corr_111: 5.72112541e-02 sys_corr_112: -9.20208597e-02 sys_corr_113: 1.00712498e-01 sys_corr_114: -1.78967304e-03 - sys_corr_115: -4.54891346e-02 + sys_corr_115: 4.54891346e-02 sys_corr_116: -6.02504421e-02 sys_corr_117: 3.94601129e-02 sys_corr_118: 1.52470153e-01 sys_corr_119: 2.87703694e-03 sys_corr_120: 2.21386413e-02 - sys_corr_121: 6.79970288e-03 - sys_corr_122: 1.06395298e-02 - sys_corr_123: -1.17556205e-02 + sys_corr_121: -6.79970288e-03 + sys_corr_122: -1.17556205e-02 + sys_corr_123: 1.06395298e-02 sys_corr_124: 8.93520258e-02 - sys_corr_125: -1.93257748e-02 - sys_corr_126: 3.38696097e-03 + sys_corr_125: 1.93257748e-02 + sys_corr_126: -3.38696097e-03 sys_corr_127: -4.80256573e-01 sys_corr_128: -1.21121915e-01 - sys_corr_129: 1.12837113e-01 - sys_corr_130: -1.22527415e-03 + sys_corr_129: -1.12837113e-01 + sys_corr_130: 1.22527415e-03 sys_corr_131: 1.79932493e-02 - sys_corr_132: 2.56196072e-02 + sys_corr_132: -2.56196072e-02 stat: 0.0 luminosity: 2.36999664e+02 - sys_corr_1: 1.07359743e+02 @@ -8451,9 +8451,9 @@ bins: sys_corr_7: 1.33611648e+01 sys_corr_8: 1.06339876e+01 sys_corr_9: -1.56825867e+01 - sys_corr_10: 1.31650241e+00 + sys_corr_10: -1.31650241e+00 sys_corr_11: 1.05762195e+01 - sys_corr_12: -2.09200651e+01 + sys_corr_12: 2.09200651e+01 sys_corr_13: 1.15564566e+01 sys_corr_14: 7.63394399e+00 sys_corr_15: 2.47406445e+00 @@ -8479,60 +8479,60 @@ bins: sys_corr_35: 3.36526486e+00 sys_corr_36: -1.35583574e+00 sys_corr_37: -1.35781447e+01 - sys_corr_38: -5.45105239e+00 - sys_corr_39: 2.93924516e+01 - sys_corr_40: -3.50496742e+00 - sys_corr_41: -1.52654582e+00 - sys_corr_42: -4.59836961e+00 - sys_corr_43: 1.35589741e+00 + sys_corr_38: 5.45105239e+00 + sys_corr_39: -2.93924516e+01 + sys_corr_40: 3.50496742e+00 + sys_corr_41: 1.52654582e+00 + sys_corr_42: 4.59836961e+00 + sys_corr_43: -1.35589741e+00 sys_corr_44: -1.63054749e+01 - sys_corr_45: 7.40855944e+00 - sys_corr_46: 1.88883461e+00 + sys_corr_45: -7.40855944e+00 + sys_corr_46: -1.88883461e+00 sys_corr_47: 6.70017499e+00 - sys_corr_48: -1.89636442e+01 + sys_corr_48: 1.89636442e+01 sys_corr_49: 3.50306578e+01 sys_corr_50: -2.89716460e+01 sys_corr_51: -2.24605792e+01 - sys_corr_52: -2.40995766e+01 - sys_corr_53: 8.46852873e+00 + sys_corr_52: 2.40995766e+01 + sys_corr_53: -8.46852873e+00 sys_corr_54: -1.35217626e+01 - sys_corr_55: 1.79102721e+01 + sys_corr_55: -1.79102721e+01 sys_corr_56: -1.72652154e+01 - sys_corr_57: -3.85885483e+01 + sys_corr_57: 3.85885483e+01 sys_corr_58: -3.16175552e+01 - sys_corr_59: 1.17218446e+01 + sys_corr_59: -1.17218446e+01 sys_corr_60: 4.42383336e+01 sys_corr_61: -1.41962047e+02 sys_corr_62: -9.36480218e+01 - sys_corr_63: 3.60839519e+01 - sys_corr_64: 5.37584733e+00 + sys_corr_63: -3.60839519e+01 + sys_corr_64: -5.37584733e+00 sys_corr_65: -1.83131105e+02 sys_corr_66: -1.76429880e+01 sys_corr_67: -2.65180336e+01 sys_corr_68: 1.45496726e+01 sys_corr_69: -2.11480364e+01 sys_corr_70: -4.33808668e+01 - sys_corr_71: -2.47576280e+01 - sys_corr_72: -3.04856466e+01 - sys_corr_73: 1.32647936e+01 + sys_corr_71: 1.32647936e+01 + sys_corr_72: 3.04856466e+01 + sys_corr_73: -2.47576280e+01 sys_corr_74: 2.46062184e+00 sys_corr_75: -6.58895689e+00 sys_corr_76: 6.26385970e+00 - sys_corr_77: 3.28411864e+00 - sys_corr_78: -2.54093927e+00 - sys_corr_79: -1.34619253e+01 - sys_corr_80: 4.38127083e+00 + sys_corr_77: -3.28411864e+00 + sys_corr_78: -1.34619253e+01 + sys_corr_79: -4.38127083e+00 + sys_corr_80: 2.54093927e+00 sys_corr_81: 2.53198084e+00 sys_corr_82: 3.83459152e+00 sys_corr_83: 4.40014819e+00 - sys_corr_84: 5.84265729e+00 + sys_corr_84: -5.84265729e+00 sys_corr_85: 1.08922832e+01 sys_corr_86: -4.05019389e+00 sys_corr_87: 2.63411604e+00 sys_corr_88: 7.00747126e-01 sys_corr_89: -1.35853263e+00 sys_corr_90: 1.06303306e+00 - sys_corr_91: 3.02407644e+00 + sys_corr_91: -3.02407644e+00 sys_corr_92: -2.36193341e+00 sys_corr_93: 1.69995955e-01 sys_corr_94: 3.11256088e-01 @@ -8540,40 +8540,40 @@ bins: sys_corr_96: 5.52493015e-03 sys_corr_97: 5.29255720e-01 sys_corr_98: 1.37402761e-01 - sys_corr_99: -4.60168623e-01 - sys_corr_100: -1.38471850e-01 + sys_corr_99: 4.60168623e-01 + sys_corr_100: 1.38471850e-01 sys_corr_101: 6.76355418e-01 - sys_corr_102: 1.08469759e+00 - sys_corr_103: -4.66530131e+00 - sys_corr_104: -8.87139867e-01 - sys_corr_105: -1.87784947e+00 - sys_corr_106: -3.37262244e-01 - sys_corr_107: -3.24821367e-01 + sys_corr_102: -1.08469759e+00 + sys_corr_103: 4.66530131e+00 + sys_corr_104: 8.87139867e-01 + sys_corr_105: 1.87784947e+00 + sys_corr_106: 3.37262244e-01 + sys_corr_107: 3.24821367e-01 sys_corr_108: 7.07198657e-02 sys_corr_109: 1.54111260e-02 sys_corr_110: -1.28885001e-03 - sys_corr_111: 8.38708487e-01 + sys_corr_111: -8.38708487e-01 sys_corr_112: -1.13762942e-01 sys_corr_113: 8.82941771e-02 sys_corr_114: -1.06545945e-03 - sys_corr_115: 4.55758034e-03 + sys_corr_115: -4.55758034e-03 sys_corr_116: -2.75224096e-02 sys_corr_117: 1.96565257e-02 sys_corr_118: 1.02607432e-01 sys_corr_119: 2.84572029e-03 sys_corr_120: 1.40770144e-02 - sys_corr_121: 5.18407147e-03 - sys_corr_122: 7.60353328e-03 - sys_corr_123: -1.14410622e-02 + sys_corr_121: -5.18407147e-03 + sys_corr_122: -1.14410622e-02 + sys_corr_123: 7.60353328e-03 sys_corr_124: 4.56553976e-02 - sys_corr_125: -1.73706374e-02 - sys_corr_126: 5.01289757e-04 + sys_corr_125: 1.73706374e-02 + sys_corr_126: -5.01289757e-04 sys_corr_127: -3.46134174e-01 sys_corr_128: -1.09158909e-01 - sys_corr_129: -5.88538542e-02 - sys_corr_130: 4.82419221e-03 + sys_corr_129: 5.88538542e-02 + sys_corr_130: -4.82419221e-03 sys_corr_131: 7.41162276e-03 - sys_corr_132: 4.68906318e-03 + sys_corr_132: -4.68906318e-03 stat: 0.0 luminosity: 2.26695942e+02 - sys_corr_1: 9.84418213e+01 @@ -8585,9 +8585,9 @@ bins: sys_corr_7: 1.28552577e+01 sys_corr_8: 6.80463376e+00 sys_corr_9: -1.24568621e+01 - sys_corr_10: 2.42720601e+00 + sys_corr_10: -2.42720601e+00 sys_corr_11: -1.41777144e+00 - sys_corr_12: -5.87006552e+00 + sys_corr_12: 5.87006552e+00 sys_corr_13: 1.06579423e+01 sys_corr_14: 4.36807400e-01 sys_corr_15: 6.31196496e-02 @@ -8613,60 +8613,60 @@ bins: sys_corr_35: -4.00528769e+00 sys_corr_36: 4.50923066e+00 sys_corr_37: -2.05116900e+00 - sys_corr_38: -2.64704967e+01 - sys_corr_39: -8.09482707e+00 - sys_corr_40: -1.84745254e+00 - sys_corr_41: -8.78347860e+00 - sys_corr_42: 4.11771574e+00 - sys_corr_43: -9.50278186e+00 + sys_corr_38: 2.64704967e+01 + sys_corr_39: 8.09482707e+00 + sys_corr_40: 1.84745254e+00 + sys_corr_41: 8.78347860e+00 + sys_corr_42: -4.11771574e+00 + sys_corr_43: 9.50278186e+00 sys_corr_44: -1.58430479e+01 - sys_corr_45: -8.84613305e+00 - sys_corr_46: 3.16648550e-01 + sys_corr_45: 8.84613305e+00 + sys_corr_46: -3.16648550e-01 sys_corr_47: -4.49137552e+00 - sys_corr_48: 4.86291199e+00 + sys_corr_48: -4.86291199e+00 sys_corr_49: 1.37548974e+00 sys_corr_50: -8.28861107e-01 sys_corr_51: -1.58139619e+01 - sys_corr_52: -3.46118837e+01 - sys_corr_53: 2.20530178e+01 + sys_corr_52: 3.46118837e+01 + sys_corr_53: -2.20530178e+01 sys_corr_54: 2.90623080e+01 - sys_corr_55: 9.09385170e+00 + sys_corr_55: -9.09385170e+00 sys_corr_56: 6.25518201e-01 - sys_corr_57: -8.88397157e+00 + sys_corr_57: 8.88397157e+00 sys_corr_58: -1.63675990e+01 - sys_corr_59: 1.28248916e+00 + sys_corr_59: -1.28248916e+00 sys_corr_60: -1.09893458e+01 sys_corr_61: -1.09694174e+00 sys_corr_62: 2.82125541e+00 - sys_corr_63: -5.18765697e+00 - sys_corr_64: 1.48775874e+01 + sys_corr_63: 5.18765697e+00 + sys_corr_64: -1.48775874e+01 sys_corr_65: 1.97810625e+01 sys_corr_66: -1.98081005e+01 sys_corr_67: 6.90511928e+00 sys_corr_68: 5.40181823e+00 sys_corr_69: 2.24214177e+00 sys_corr_70: 1.04160225e+01 - sys_corr_71: -4.71275018e+00 - sys_corr_72: 3.02517610e+01 - sys_corr_73: -5.83193371e+01 + sys_corr_71: -5.83193371e+01 + sys_corr_72: -3.02517610e+01 + sys_corr_73: -4.71275018e+00 sys_corr_74: 3.31175586e+00 sys_corr_75: -3.61583822e+01 sys_corr_76: 1.16658225e+01 - sys_corr_77: 7.30784401e+01 - sys_corr_78: -7.61022075e+00 - sys_corr_79: -3.61672662e+01 - sys_corr_80: 3.55864112e+01 + sys_corr_77: -7.30784401e+01 + sys_corr_78: -3.61672662e+01 + sys_corr_79: -3.55864112e+01 + sys_corr_80: 7.61022075e+00 sys_corr_81: 1.21866935e+02 sys_corr_82: 6.23504750e+01 sys_corr_83: 8.71830222e+01 - sys_corr_84: 1.36035657e+01 + sys_corr_84: -1.36035657e+01 sys_corr_85: 1.52685012e+01 sys_corr_86: 4.64597678e+01 sys_corr_87: 8.27089973e+01 sys_corr_88: -3.66212898e+01 sys_corr_89: -2.61636032e+00 sys_corr_90: 4.49028333e+00 - sys_corr_91: 2.52468988e+00 + sys_corr_91: -2.52468988e+00 sys_corr_92: 1.10827970e+00 sys_corr_93: 3.37508184e-01 sys_corr_94: 5.34117362e-01 @@ -8674,40 +8674,40 @@ bins: sys_corr_96: 4.11331833e-01 sys_corr_97: -1.40923876e-01 sys_corr_98: -2.42079414e-01 - sys_corr_99: 2.72331749e-02 - sys_corr_100: -2.74930242e-02 + sys_corr_99: -2.72331749e-02 + sys_corr_100: 2.74930242e-02 sys_corr_101: 2.06479070e-01 - sys_corr_102: 5.83883143e-01 - sys_corr_103: -1.22557916e+00 - sys_corr_104: 1.13294755e+00 - sys_corr_105: 1.71500834e-01 - sys_corr_106: 5.12411484e-01 - sys_corr_107: -8.47725676e-02 + sys_corr_102: -5.83883143e-01 + sys_corr_103: 1.22557916e+00 + sys_corr_104: -1.13294755e+00 + sys_corr_105: -1.71500834e-01 + sys_corr_106: -5.12411484e-01 + sys_corr_107: 8.47725676e-02 sys_corr_108: -3.19025444e-03 sys_corr_109: -2.22001083e-01 sys_corr_110: 3.28639625e-02 - sys_corr_111: 6.35326179e-01 + sys_corr_111: -6.35326179e-01 sys_corr_112: -7.78286525e-02 sys_corr_113: -8.07378321e-02 sys_corr_114: 4.17285321e-05 - sys_corr_115: 1.04788066e-02 + sys_corr_115: -1.04788066e-02 sys_corr_116: -3.11285624e-02 sys_corr_117: 1.86383211e-02 sys_corr_118: -2.27427795e-04 sys_corr_119: 5.71879113e-03 sys_corr_120: 1.84975661e-02 - sys_corr_121: 3.57818924e-03 - sys_corr_122: 1.12314271e-02 - sys_corr_123: -1.74805630e-02 + sys_corr_121: -3.57818924e-03 + sys_corr_122: -1.74805630e-02 + sys_corr_123: 1.12314271e-02 sys_corr_124: 4.32155958e-02 - sys_corr_125: -1.44780388e-02 - sys_corr_126: 7.81975516e-03 + sys_corr_125: 1.44780388e-02 + sys_corr_126: -7.81975516e-03 sys_corr_127: 4.59341853e-01 sys_corr_128: 8.03025744e-02 - sys_corr_129: -9.26906378e-02 - sys_corr_130: -4.41261013e-03 + sys_corr_129: 9.26906378e-02 + sys_corr_130: 4.41261013e-03 sys_corr_131: 1.12780947e-02 - sys_corr_132: -6.39369950e-02 + sys_corr_132: 6.39369950e-02 stat: 0.0 luminosity: 2.14200096e+02 - sys_corr_1: 9.81219381e+01 @@ -8719,9 +8719,9 @@ bins: sys_corr_7: 1.31639125e+01 sys_corr_8: 7.60077166e+00 sys_corr_9: -1.45804707e+01 - sys_corr_10: 3.81085248e+00 + sys_corr_10: -3.81085248e+00 sys_corr_11: 7.44365613e+00 - sys_corr_12: -6.08879797e+00 + sys_corr_12: 6.08879797e+00 sys_corr_13: 6.56964678e+00 sys_corr_14: -1.53426376e+00 sys_corr_15: 3.07093467e+00 @@ -8747,60 +8747,60 @@ bins: sys_corr_35: -4.90204992e+00 sys_corr_36: -8.66442626e+00 sys_corr_37: -1.11990181e+01 - sys_corr_38: -5.88859329e+00 - sys_corr_39: -3.75921272e+00 - sys_corr_40: 5.72019962e+00 - sys_corr_41: -3.53330819e+00 - sys_corr_42: -2.98647813e+00 - sys_corr_43: -5.90701438e+00 + sys_corr_38: 5.88859329e+00 + sys_corr_39: 3.75921272e+00 + sys_corr_40: -5.72019962e+00 + sys_corr_41: 3.53330819e+00 + sys_corr_42: 2.98647813e+00 + sys_corr_43: 5.90701438e+00 sys_corr_44: -4.21660626e+00 - sys_corr_45: 1.95470450e+01 - sys_corr_46: -1.06516238e+00 + sys_corr_45: -1.95470450e+01 + sys_corr_46: 1.06516238e+00 sys_corr_47: -5.43829673e+00 - sys_corr_48: -1.18503847e+01 + sys_corr_48: 1.18503847e+01 sys_corr_49: -2.70532518e+00 sys_corr_50: -7.63733190e-01 sys_corr_51: 4.17666127e+00 - sys_corr_52: -1.46719021e+00 - sys_corr_53: 2.22126455e+00 + sys_corr_52: 1.46719021e+00 + sys_corr_53: -2.22126455e+00 sys_corr_54: -6.08305409e+00 - sys_corr_55: -4.01618716e+00 + sys_corr_55: 4.01618716e+00 sys_corr_56: 6.65385459e+00 - sys_corr_57: -1.27309217e+01 + sys_corr_57: 1.27309217e+01 sys_corr_58: 1.04182430e+01 - sys_corr_59: -2.54505742e+00 + sys_corr_59: 2.54505742e+00 sys_corr_60: 4.62174180e+00 sys_corr_61: -4.19728684e+00 sys_corr_62: -1.40192045e+01 - sys_corr_63: 1.39062641e+01 - sys_corr_64: -1.18094757e+00 + sys_corr_63: -1.39062641e+01 + sys_corr_64: 1.18094757e+00 sys_corr_65: -1.57969767e+00 sys_corr_66: -4.74067295e+00 sys_corr_67: 7.57233274e+00 sys_corr_68: -4.41743777e+00 sys_corr_69: 9.51915847e+00 sys_corr_70: 5.50756481e+00 - sys_corr_71: 4.69674100e+00 - sys_corr_72: 1.66709265e+01 - sys_corr_73: -1.09623370e+01 + sys_corr_71: -1.09623370e+01 + sys_corr_72: -1.66709265e+01 + sys_corr_73: 4.69674100e+00 sys_corr_74: -1.61245275e+00 sys_corr_75: 1.30246074e+01 sys_corr_76: -1.66499220e+01 - sys_corr_77: 6.97421700e-02 - sys_corr_78: 1.90266571e+02 - sys_corr_79: 4.08769552e+00 - sys_corr_80: -5.22728066e+01 + sys_corr_77: -6.97421700e-02 + sys_corr_78: 4.08769552e+00 + sys_corr_79: 5.22728066e+01 + sys_corr_80: -1.90266571e+02 sys_corr_81: 1.51665703e-01 sys_corr_82: 1.70979790e+01 sys_corr_83: -7.85285383e+00 - sys_corr_84: -2.86362020e+01 + sys_corr_84: 2.86362020e+01 sys_corr_85: -1.51152966e+01 sys_corr_86: -2.46073719e+00 sys_corr_87: 4.05440917e+01 sys_corr_88: -7.88868459e+00 sys_corr_89: 2.39945242e-01 sys_corr_90: 2.40511125e+01 - sys_corr_91: 1.19183398e+01 + sys_corr_91: -1.19183398e+01 sys_corr_92: 6.73628901e+00 sys_corr_93: 3.50747407e-01 sys_corr_94: -6.64818586e-01 @@ -8808,40 +8808,40 @@ bins: sys_corr_96: -4.02898805e-02 sys_corr_97: -1.09221024e+00 sys_corr_98: -9.92077188e-01 - sys_corr_99: 9.15737525e-01 - sys_corr_100: -2.61030162e+00 + sys_corr_99: -9.15737525e-01 + sys_corr_100: 2.61030162e+00 sys_corr_101: -2.45355377e+00 - sys_corr_102: -4.27672384e+00 - sys_corr_103: 1.67693056e+01 - sys_corr_104: 6.04784867e+00 - sys_corr_105: 6.92672380e+00 - sys_corr_106: 1.84936694e+00 - sys_corr_107: 1.46138413e+00 + sys_corr_102: 4.27672384e+00 + sys_corr_103: -1.67693056e+01 + sys_corr_104: -6.04784867e+00 + sys_corr_105: -6.92672380e+00 + sys_corr_106: -1.84936694e+00 + sys_corr_107: -1.46138413e+00 sys_corr_108: -4.00658240e-02 sys_corr_109: -4.04158563e-01 sys_corr_110: 5.32256853e-02 - sys_corr_111: -1.57356100e-01 + sys_corr_111: 1.57356100e-01 sys_corr_112: 3.91194131e-02 sys_corr_113: -1.03862323e-01 sys_corr_114: 1.61773514e-03 - sys_corr_115: 4.76125006e-02 + sys_corr_115: -4.76125006e-02 sys_corr_116: -1.93785724e-02 sys_corr_117: 2.14555956e-02 sys_corr_118: 1.30850706e-01 sys_corr_119: 8.23955545e-03 sys_corr_120: 2.95906291e-02 - sys_corr_121: 7.55062933e-03 - sys_corr_122: 5.31179366e-02 - sys_corr_123: -9.44887146e-02 + sys_corr_121: -7.55062933e-03 + sys_corr_122: -9.44887146e-02 + sys_corr_123: 5.31179366e-02 sys_corr_124: 9.46416854e-03 - sys_corr_125: -5.21882679e-02 - sys_corr_126: 2.47331927e-02 + sys_corr_125: 5.21882679e-02 + sys_corr_126: -2.47331927e-02 sys_corr_127: 7.58095465e-01 sys_corr_128: 6.50931720e-01 - sys_corr_129: 1.10781487e-01 - sys_corr_130: -1.05129014e-02 + sys_corr_129: -1.10781487e-01 + sys_corr_130: 1.05129014e-02 sys_corr_131: 3.55812931e-02 - sys_corr_132: -5.77074866e-02 + sys_corr_132: 5.77074866e-02 stat: 0.0 luminosity: 2.15637334e+02 - sys_corr_1: 8.57113253e+01 @@ -8853,9 +8853,9 @@ bins: sys_corr_7: 1.55548787e+01 sys_corr_8: 7.28316045e+00 sys_corr_9: -1.37179354e+01 - sys_corr_10: 2.38643577e+00 + sys_corr_10: -2.38643577e+00 sys_corr_11: 3.84712516e+00 - sys_corr_12: -7.23530878e+00 + sys_corr_12: 7.23530878e+00 sys_corr_13: 4.02861681e+00 sys_corr_14: -1.47399255e+00 sys_corr_15: 2.44837563e+00 @@ -8881,60 +8881,60 @@ bins: sys_corr_35: -5.73366588e+00 sys_corr_36: 4.46567606e+00 sys_corr_37: -8.60906785e+00 - sys_corr_38: -4.92313750e+00 - sys_corr_39: -5.52799748e+00 - sys_corr_40: 7.34295391e+00 - sys_corr_41: -3.88872016e+00 - sys_corr_42: 1.46089062e+01 - sys_corr_43: -1.01628624e+01 + sys_corr_38: 4.92313750e+00 + sys_corr_39: 5.52799748e+00 + sys_corr_40: -7.34295391e+00 + sys_corr_41: 3.88872016e+00 + sys_corr_42: -1.46089062e+01 + sys_corr_43: 1.01628624e+01 sys_corr_44: -1.12193133e+01 - sys_corr_45: 1.71809784e+00 - sys_corr_46: -1.72348261e+00 + sys_corr_45: -1.71809784e+00 + sys_corr_46: 1.72348261e+00 sys_corr_47: -6.58401864e+00 - sys_corr_48: -8.80557251e+00 + sys_corr_48: 8.80557251e+00 sys_corr_49: -4.21836062e+00 sys_corr_50: -1.10003231e+01 sys_corr_51: -2.66622523e+00 - sys_corr_52: -1.21842690e+00 - sys_corr_53: 4.23876729e+00 + sys_corr_52: 1.21842690e+00 + sys_corr_53: -4.23876729e+00 sys_corr_54: 3.13043459e+00 - sys_corr_55: 1.24113033e-01 + sys_corr_55: -1.24113033e-01 sys_corr_56: 8.04712206e+00 - sys_corr_57: -7.63517224e+00 + sys_corr_57: 7.63517224e+00 sys_corr_58: -4.70493756e+00 - sys_corr_59: 6.17849793e+00 + sys_corr_59: -6.17849793e+00 sys_corr_60: 1.26937685e+00 sys_corr_61: -8.14262999e+00 sys_corr_62: -1.32400474e+00 - sys_corr_63: 2.75026660e-01 - sys_corr_64: 1.11357178e+00 + sys_corr_63: -2.75026660e-01 + sys_corr_64: -1.11357178e+00 sys_corr_65: -3.84209479e+00 sys_corr_66: -1.19764737e+00 sys_corr_67: -3.70328688e+00 sys_corr_68: 2.78891972e-01 sys_corr_69: -5.27859058e-01 sys_corr_70: -9.97592870e+00 - sys_corr_71: 2.38619391e+00 - sys_corr_72: 8.63111021e+00 - sys_corr_73: -1.34905537e+01 + sys_corr_71: -1.34905537e+01 + sys_corr_72: -8.63111021e+00 + sys_corr_73: 2.38619391e+00 sys_corr_74: 4.57631722e+00 sys_corr_75: -5.12918161e+00 sys_corr_76: -6.48747666e+00 - sys_corr_77: -3.68121549e+01 - sys_corr_78: -4.31821849e+01 - sys_corr_79: 2.62704407e+01 - sys_corr_80: -3.39098779e-02 + sys_corr_77: 3.68121549e+01 + sys_corr_78: 2.62704407e+01 + sys_corr_79: 3.39098779e-02 + sys_corr_80: 4.31821849e+01 sys_corr_81: 2.12756068e+01 sys_corr_82: 1.07966830e+01 sys_corr_83: 9.32054980e+00 - sys_corr_84: -1.34597253e+02 + sys_corr_84: 1.34597253e+02 sys_corr_85: -1.17261173e+02 sys_corr_86: 5.86854313e+00 sys_corr_87: 2.13703189e+01 sys_corr_88: -1.01674033e+01 sys_corr_89: 2.30266399e+01 sys_corr_90: 4.17294295e+01 - sys_corr_91: 1.94811209e+01 + sys_corr_91: -1.94811209e+01 sys_corr_92: -8.62000695e+00 sys_corr_93: -9.13498181e-02 sys_corr_94: -2.33220626e+00 @@ -8942,40 +8942,40 @@ bins: sys_corr_96: 8.40368995e-01 sys_corr_97: 3.57879507e+00 sys_corr_98: 1.25965014e+00 - sys_corr_99: -3.38244382e+00 - sys_corr_100: 5.48143243e-01 + sys_corr_99: 3.38244382e+00 + sys_corr_100: -5.48143243e-01 sys_corr_101: 9.17738770e-01 - sys_corr_102: 4.04392878e+00 - sys_corr_103: -1.90834225e+01 - sys_corr_104: -1.95677343e+00 - sys_corr_105: -8.05766122e+00 - sys_corr_106: -8.98033073e-01 - sys_corr_107: 2.21571934e-01 + sys_corr_102: -4.04392878e+00 + sys_corr_103: 1.90834225e+01 + sys_corr_104: 1.95677343e+00 + sys_corr_105: 8.05766122e+00 + sys_corr_106: 8.98033073e-01 + sys_corr_107: -2.21571934e-01 sys_corr_108: 6.86503269e-01 sys_corr_109: 6.77236646e-02 sys_corr_110: 3.05212356e-01 - sys_corr_111: 3.01508427e+00 + sys_corr_111: -3.01508427e+00 sys_corr_112: -1.89066796e-01 sys_corr_113: -7.41839996e-02 sys_corr_114: 4.39392122e-04 - sys_corr_115: 1.15208112e-01 + sys_corr_115: -1.15208112e-01 sys_corr_116: 2.19288436e-02 sys_corr_117: -9.53898469e-03 sys_corr_118: 1.26772728e-02 sys_corr_119: 9.06620669e-03 sys_corr_120: -1.12735141e-02 - sys_corr_121: 1.10809792e-02 - sys_corr_122: 1.50708070e-02 - sys_corr_123: -1.65350961e-02 + sys_corr_121: -1.10809792e-02 + sys_corr_122: -1.65350961e-02 + sys_corr_123: 1.50708070e-02 sys_corr_124: 4.82898716e-02 - sys_corr_125: -1.62477513e-02 - sys_corr_126: 5.63929205e-03 + sys_corr_125: 1.62477513e-02 + sys_corr_126: -5.63929205e-03 sys_corr_127: -7.43676779e-01 sys_corr_128: 2.56301473e-02 - sys_corr_129: 6.93275166e-02 - sys_corr_130: 1.32627689e-02 + sys_corr_129: -6.93275166e-02 + sys_corr_130: -1.32627689e-02 sys_corr_131: -1.10773007e-02 - sys_corr_132: -4.10241222e-02 + sys_corr_132: 4.10241222e-02 stat: 0.0 luminosity: 1.96521116e+02 - sys_corr_1: 8.33348434e+01 @@ -8987,11 +8987,11 @@ bins: sys_corr_7: 2.06261621e+01 sys_corr_8: 1.65526166e+01 sys_corr_9: -2.10704980e+01 - sys_corr_10: -1.63623838e+00 + sys_corr_10: 1.63623838e+00 sys_corr_11: 1.77092805e+01 - sys_corr_12: -1.76583167e+01 + sys_corr_12: 1.76583167e+01 sys_corr_13: 1.21365122e+01 - sys_corr_14: -2.61045104e-05 + sys_corr_14: -2.61045105e-05 sys_corr_15: 4.41763652e+00 sys_corr_16: 1.47018347e+00 sys_corr_17: -2.80447077e+00 @@ -9015,60 +9015,60 @@ bins: sys_corr_35: -3.25871792e+00 sys_corr_36: -1.01381052e+01 sys_corr_37: -9.46159788e+00 - sys_corr_38: -6.30275915e+00 - sys_corr_39: -5.99584386e+00 - sys_corr_40: 1.23730314e+01 - sys_corr_41: -1.89366150e+01 - sys_corr_42: 4.01392374e+00 - sys_corr_43: -1.18355011e+01 + sys_corr_38: 6.30275915e+00 + sys_corr_39: 5.99584386e+00 + sys_corr_40: -1.23730314e+01 + sys_corr_41: 1.89366150e+01 + sys_corr_42: -4.01392374e+00 + sys_corr_43: 1.18355011e+01 sys_corr_44: -1.43550070e+01 - sys_corr_45: 8.27227598e-01 - sys_corr_46: -1.24643134e+01 + sys_corr_45: -8.27227598e-01 + sys_corr_46: 1.24643134e+01 sys_corr_47: 5.53138956e+00 - sys_corr_48: -1.19139161e+01 + sys_corr_48: 1.19139161e+01 sys_corr_49: 2.80643649e+00 sys_corr_50: -1.27310287e+01 sys_corr_51: -3.35666515e-01 - sys_corr_52: -7.36886891e+00 - sys_corr_53: 1.95281082e+00 + sys_corr_52: 7.36886891e+00 + sys_corr_53: -1.95281082e+00 sys_corr_54: 1.37655753e+00 - sys_corr_55: 4.72387880e-01 + sys_corr_55: -4.72387880e-01 sys_corr_56: 2.20616215e+01 - sys_corr_57: -1.75006408e+01 + sys_corr_57: 1.75006408e+01 sys_corr_58: 1.43659840e+01 - sys_corr_59: -1.14007339e+01 + sys_corr_59: 1.14007339e+01 sys_corr_60: -1.72505867e+00 sys_corr_61: -2.15754248e+01 sys_corr_62: -6.68585292e+01 - sys_corr_63: 2.87065880e+01 - sys_corr_64: 9.15587036e-01 + sys_corr_63: -2.87065880e+01 + sys_corr_64: -9.15587036e-01 sys_corr_65: 2.61283521e+01 sys_corr_66: -7.97302906e+01 sys_corr_67: 3.78467121e+01 sys_corr_68: -6.37187011e+01 sys_corr_69: -1.06894720e+02 sys_corr_70: 1.89541657e+02 - sys_corr_71: -5.81100551e-01 - sys_corr_72: -6.59773085e+00 - sys_corr_73: 3.25621986e+01 + sys_corr_71: 3.25621986e+01 + sys_corr_72: 6.59773085e+00 + sys_corr_73: -5.81100551e-01 sys_corr_74: -1.01198116e+01 sys_corr_75: -1.75018900e+01 sys_corr_76: 3.90862527e+01 - sys_corr_77: -1.26941735e+01 - sys_corr_78: -3.21683848e+00 - sys_corr_79: 4.14077391e+00 - sys_corr_80: 4.54557057e-01 + sys_corr_77: 1.26941735e+01 + sys_corr_78: 4.14077391e+00 + sys_corr_79: -4.54557057e-01 + sys_corr_80: 3.21683848e+00 sys_corr_81: -8.32186404e-01 sys_corr_82: 5.73235906e+00 sys_corr_83: 6.04548405e+00 - sys_corr_84: -7.88720856e-01 + sys_corr_84: 7.88720856e-01 sys_corr_85: -3.84543753e+00 sys_corr_86: 1.58923369e+00 sys_corr_87: -2.13589109e+01 sys_corr_88: 1.20840022e+01 sys_corr_89: 3.26065804e+00 sys_corr_90: -4.67036031e+00 - sys_corr_91: 5.68182827e+00 + sys_corr_91: -5.68182827e+00 sys_corr_92: -7.65732432e+00 sys_corr_93: -1.77483057e-01 sys_corr_94: -1.29530305e+00 @@ -9076,40 +9076,40 @@ bins: sys_corr_96: 5.33675640e-02 sys_corr_97: -6.39688602e-01 sys_corr_98: -2.51638648e-01 - sys_corr_99: 2.78876218e-01 - sys_corr_100: -6.61539851e-01 + sys_corr_99: -2.78876218e-01 + sys_corr_100: 6.61539851e-01 sys_corr_101: -2.24978224e-01 - sys_corr_102: -3.14356930e-01 - sys_corr_103: 3.84236138e-01 - sys_corr_104: 6.77826983e-01 - sys_corr_105: 2.09505290e-01 - sys_corr_106: 5.50856387e-01 - sys_corr_107: 4.44263116e-01 + sys_corr_102: 3.14356930e-01 + sys_corr_103: -3.84236138e-01 + sys_corr_104: -6.77826983e-01 + sys_corr_105: -2.09505290e-01 + sys_corr_106: -5.50856387e-01 + sys_corr_107: -4.44263116e-01 sys_corr_108: 2.65491598e-01 sys_corr_109: 8.90578648e-02 sys_corr_110: 1.11138181e-01 - sys_corr_111: 1.82595942e-01 + sys_corr_111: -1.82595942e-01 sys_corr_112: -1.96971925e-01 sys_corr_113: 4.94805672e-02 sys_corr_114: -9.35249260e-04 - sys_corr_115: -5.66270644e-02 + sys_corr_115: 5.66270644e-02 sys_corr_116: -4.60620481e-02 sys_corr_117: 3.14092703e-02 sys_corr_118: 6.93781112e-02 sys_corr_119: -2.77204352e-03 sys_corr_120: 1.94890223e-02 - sys_corr_121: 3.48321413e-03 - sys_corr_122: 4.72044882e-03 - sys_corr_123: -1.08085029e-02 + sys_corr_121: -3.48321413e-03 + sys_corr_122: -1.08085029e-02 + sys_corr_123: 4.72044882e-03 sys_corr_124: 4.59416922e-02 - sys_corr_125: -1.33712935e-02 - sys_corr_126: -1.69570528e-03 + sys_corr_125: 1.33712935e-02 + sys_corr_126: 1.69570528e-03 sys_corr_127: -1.63711844e-01 sys_corr_128: 3.04109842e-01 - sys_corr_129: 7.24750296e-02 - sys_corr_130: 3.32781411e-03 + sys_corr_129: -7.24750296e-02 + sys_corr_130: -3.32781411e-03 sys_corr_131: 1.33291220e-02 - sys_corr_132: 4.96392251e-02 + sys_corr_132: -4.96392251e-02 stat: 0.0 luminosity: 1.84345018e+02 - sys_corr_1: 6.92507611e+01 @@ -9121,9 +9121,9 @@ bins: sys_corr_7: 2.63222680e+01 sys_corr_8: 2.18021392e+01 sys_corr_9: -2.68836841e+01 - sys_corr_10: -3.02077044e+00 + sys_corr_10: 3.02077044e+00 sys_corr_11: 2.29552058e+01 - sys_corr_12: -2.34916080e+01 + sys_corr_12: 2.34916080e+01 sys_corr_13: 1.65758339e+01 sys_corr_14: 5.70602251e+00 sys_corr_15: 8.21452516e-01 @@ -9149,60 +9149,60 @@ bins: sys_corr_35: 9.44051443e-01 sys_corr_36: -4.46330062e+00 sys_corr_37: -5.13816403e+00 - sys_corr_38: -1.91991680e+00 - sys_corr_39: -5.39126641e+00 - sys_corr_40: 5.98296833e+00 - sys_corr_41: -8.51315225e+00 - sys_corr_42: 5.45765821e-01 - sys_corr_43: -1.13822607e+01 + sys_corr_38: 1.91991680e+00 + sys_corr_39: 5.39126641e+00 + sys_corr_40: -5.98296833e+00 + sys_corr_41: 8.51315225e+00 + sys_corr_42: -5.45765821e-01 + sys_corr_43: 1.13822607e+01 sys_corr_44: -1.38905802e+01 - sys_corr_45: 2.76684090e+00 - sys_corr_46: -3.67904688e+00 + sys_corr_45: -2.76684090e+00 + sys_corr_46: 3.67904688e+00 sys_corr_47: -2.09785103e-01 - sys_corr_48: 4.22295425e-02 + sys_corr_48: -4.22295425e-02 sys_corr_49: 7.00789658e+00 sys_corr_50: -4.84343001e+00 sys_corr_51: -5.62132589e+00 - sys_corr_52: -1.65509815e+00 - sys_corr_53: 2.74632449e+00 + sys_corr_52: 1.65509815e+00 + sys_corr_53: -2.74632449e+00 sys_corr_54: -7.50558288e-01 - sys_corr_55: 1.97388680e+00 + sys_corr_55: -1.97388680e+00 sys_corr_56: 2.61168088e+00 - sys_corr_57: -7.05756158e+00 + sys_corr_57: 7.05756158e+00 sys_corr_58: 2.03548740e+00 - sys_corr_59: -2.04361534e+00 + sys_corr_59: 2.04361534e+00 sys_corr_60: 1.02342561e+00 sys_corr_61: -7.29902363e+00 sys_corr_62: -7.64341575e+00 - sys_corr_63: -1.19245712e-01 - sys_corr_64: -2.82017893e+00 + sys_corr_63: 1.19245712e-01 + sys_corr_64: 2.82017893e+00 sys_corr_65: 6.69039825e-01 sys_corr_66: -6.23238327e-01 sys_corr_67: 2.46129452e+00 sys_corr_68: 3.33643926e+00 sys_corr_69: 2.11036837e+00 sys_corr_70: -7.14641633e+00 - sys_corr_71: 4.76499587e+00 - sys_corr_72: 4.93325212e+00 - sys_corr_73: -1.07827334e+01 + sys_corr_71: -1.07827334e+01 + sys_corr_72: -4.93325212e+00 + sys_corr_73: 4.76499587e+00 sys_corr_74: 1.10338014e+00 sys_corr_75: 5.18598179e+00 sys_corr_76: -1.47022958e+01 - sys_corr_77: 1.41095298e+01 - sys_corr_78: 1.34070815e+01 - sys_corr_79: 8.67243054e+00 - sys_corr_80: -5.16236023e+00 + sys_corr_77: -1.41095298e+01 + sys_corr_78: 8.67243054e+00 + sys_corr_79: 5.16236023e+00 + sys_corr_80: -1.34070815e+01 sys_corr_81: 8.64922388e+00 sys_corr_82: -1.94244402e+00 sys_corr_83: -1.49413493e+01 - sys_corr_84: 7.06692920e+01 + sys_corr_84: -7.06692920e+01 sys_corr_85: -1.26520325e+02 sys_corr_86: 4.73018197e+00 sys_corr_87: 8.89697060e+00 sys_corr_88: -7.54059523e+00 sys_corr_89: 2.53863859e+01 sys_corr_90: -1.31564899e+02 - sys_corr_91: -1.16237261e+01 + sys_corr_91: 1.16237261e+01 sys_corr_92: -2.12329358e+00 sys_corr_93: -1.06884136e+00 sys_corr_94: -4.30685673e+00 @@ -9210,40 +9210,40 @@ bins: sys_corr_96: -2.28017011e-01 sys_corr_97: -6.65767662e-01 sys_corr_98: -3.90571258e-01 - sys_corr_99: -3.72886784e-01 - sys_corr_100: -9.58181165e-01 + sys_corr_99: 3.72886784e-01 + sys_corr_100: 9.58181165e-01 sys_corr_101: -6.47238632e-01 - sys_corr_102: -4.40295030e-01 - sys_corr_103: -3.10032662e+00 - sys_corr_104: -1.36328471e+00 - sys_corr_105: -1.39436426e+00 - sys_corr_106: 1.05454456e+00 - sys_corr_107: 1.07910106e+00 + sys_corr_102: 4.40295030e-01 + sys_corr_103: 3.10032662e+00 + sys_corr_104: 1.36328471e+00 + sys_corr_105: 1.39436426e+00 + sys_corr_106: -1.05454456e+00 + sys_corr_107: -1.07910106e+00 sys_corr_108: -2.39932126e-01 sys_corr_109: 7.32753976e-01 sys_corr_110: 6.33296848e-01 - sys_corr_111: -2.31883470e-01 + sys_corr_111: 2.31883470e-01 sys_corr_112: -5.17996844e-01 sys_corr_113: -1.04445569e-01 sys_corr_114: -2.40551570e-03 - sys_corr_115: -2.41767890e-01 + sys_corr_115: 2.41767890e-01 sys_corr_116: 3.93397445e-03 sys_corr_117: -8.90626605e-03 sys_corr_118: 2.02366792e-01 sys_corr_119: 4.76004567e-03 sys_corr_120: -3.77783006e-03 - sys_corr_121: 1.81789050e-02 - sys_corr_122: 4.17847629e-02 - sys_corr_123: -5.51667803e-02 + sys_corr_121: -1.81789050e-02 + sys_corr_122: -5.51667803e-02 + sys_corr_123: 4.17847629e-02 sys_corr_124: -7.90583969e-02 - sys_corr_125: -3.09749587e-02 - sys_corr_126: 7.33797417e-03 + sys_corr_125: 3.09749587e-02 + sys_corr_126: -7.33797417e-03 sys_corr_127: -3.94212205e-01 sys_corr_128: 3.03323343e-02 - sys_corr_129: -6.76679022e-02 - sys_corr_130: 2.21701548e-02 + sys_corr_129: 6.76679022e-02 + sys_corr_130: -2.21701548e-02 sys_corr_131: 8.89630391e-03 - sys_corr_132: 8.46444623e-02 + sys_corr_132: -8.46444623e-02 stat: 0.0 luminosity: 1.61920308e+02 - sys_corr_1: 5.60175442e+01 @@ -9255,9 +9255,9 @@ bins: sys_corr_7: 2.28599191e+01 sys_corr_8: 2.25186249e+01 sys_corr_9: -2.59498814e+01 - sys_corr_10: -6.11840854e+00 + sys_corr_10: 6.11840854e+00 sys_corr_11: 2.63381192e+01 - sys_corr_12: -2.63565528e+01 + sys_corr_12: 2.63565528e+01 sys_corr_13: 1.89419368e+01 sys_corr_14: 3.28834576e+00 sys_corr_15: 4.04699276e+00 @@ -9283,60 +9283,60 @@ bins: sys_corr_35: 8.78241511e-01 sys_corr_36: -1.35654618e+00 sys_corr_37: -1.04308816e+00 - sys_corr_38: -1.55262874e+00 - sys_corr_39: -3.14591344e+00 - sys_corr_40: 2.96254942e+00 - sys_corr_41: -6.57661265e+00 - sys_corr_42: 9.38453871e-01 - sys_corr_43: -1.65342522e+00 + sys_corr_38: 1.55262874e+00 + sys_corr_39: 3.14591344e+00 + sys_corr_40: -2.96254942e+00 + sys_corr_41: 6.57661265e+00 + sys_corr_42: -9.38453871e-01 + sys_corr_43: 1.65342522e+00 sys_corr_44: -1.06868441e+01 - sys_corr_45: -4.21609376e+00 - sys_corr_46: 2.41439819e+00 + sys_corr_45: 4.21609376e+00 + sys_corr_46: -2.41439819e+00 sys_corr_47: 1.43887584e+00 - sys_corr_48: -4.50360571e+00 + sys_corr_48: 4.50360571e+00 sys_corr_49: -2.23441457e+00 sys_corr_50: -8.92321249e+00 sys_corr_51: -3.11794650e+00 - sys_corr_52: -4.83604788e+00 - sys_corr_53: 1.36069410e+00 + sys_corr_52: 4.83604788e+00 + sys_corr_53: -1.36069410e+00 sys_corr_54: -5.92184991e-02 - sys_corr_55: 9.88936396e-01 + sys_corr_55: -9.88936396e-01 sys_corr_56: 4.65178464e+00 - sys_corr_57: -5.80893777e+00 + sys_corr_57: 5.80893777e+00 sys_corr_58: 2.58238362e+00 - sys_corr_59: -1.85350485e+00 + sys_corr_59: 1.85350485e+00 sys_corr_60: -5.51111589e-01 sys_corr_61: -3.11781150e+00 sys_corr_62: -8.85065777e+00 - sys_corr_63: 2.54129478e+00 - sys_corr_64: -1.09878000e+00 + sys_corr_63: -2.54129478e+00 + sys_corr_64: 1.09878000e+00 sys_corr_65: 4.30529948e-01 sys_corr_66: -2.02437225e+00 sys_corr_67: 1.57937832e+00 sys_corr_68: -6.46011944e-01 sys_corr_69: -6.84168874e+00 sys_corr_70: 1.75928471e+00 - sys_corr_71: 3.40124172e+00 - sys_corr_72: 1.31756136e+01 - sys_corr_73: -4.35094879e+00 + sys_corr_71: -4.35094879e+00 + sys_corr_72: -1.31756136e+01 + sys_corr_73: 3.40124172e+00 sys_corr_74: 2.74800609e+00 sys_corr_75: 1.97273975e+00 sys_corr_76: -6.32461517e+00 - sys_corr_77: 3.58488707e+00 - sys_corr_78: 5.04227717e+00 - sys_corr_79: 6.47643035e+00 - sys_corr_80: -9.57487320e-01 + sys_corr_77: -3.58488707e+00 + sys_corr_78: 6.47643035e+00 + sys_corr_79: 9.57487320e-01 + sys_corr_80: -5.04227717e+00 sys_corr_81: -1.94453073e+00 sys_corr_82: -2.95844727e+00 sys_corr_83: 4.07051592e+00 - sys_corr_84: -4.28847461e+00 + sys_corr_84: 4.28847461e+00 sys_corr_85: -1.77846818e+01 sys_corr_86: -5.40699491e-01 sys_corr_87: -1.87890155e+00 sys_corr_88: -4.30979764e+00 sys_corr_89: -1.95551435e+01 sys_corr_90: 3.50683280e+01 - sys_corr_91: -1.76612474e+02 + sys_corr_91: 1.76612474e+02 sys_corr_92: -5.40305095e+00 sys_corr_93: -1.97027268e+00 sys_corr_94: -6.90399987e+00 @@ -9344,40 +9344,40 @@ bins: sys_corr_96: 1.57453968e-01 sys_corr_97: -1.92287112e+00 sys_corr_98: -3.23188708e-01 - sys_corr_99: 3.01304579e-01 - sys_corr_100: -1.27555363e+00 + sys_corr_99: -3.01304579e-01 + sys_corr_100: 1.27555363e+00 sys_corr_101: -4.85574922e-01 - sys_corr_102: -4.04329336e-01 - sys_corr_103: -3.44285673e+00 - sys_corr_104: -8.83074552e-01 - sys_corr_105: -2.07695048e+00 - sys_corr_106: 2.68303740e-01 - sys_corr_107: 3.91735198e-01 + sys_corr_102: 4.04329336e-01 + sys_corr_103: 3.44285673e+00 + sys_corr_104: 8.83074552e-01 + sys_corr_105: 2.07695048e+00 + sys_corr_106: -2.68303740e-01 + sys_corr_107: -3.91735198e-01 sys_corr_108: 3.45984151e-01 sys_corr_109: 6.20348759e-01 sys_corr_110: -1.50879811e-01 - sys_corr_111: -1.07239833e+00 + sys_corr_111: 1.07239833e+00 sys_corr_112: 6.71133379e-01 sys_corr_113: -2.95309392e-01 sys_corr_114: -3.22001267e-03 - sys_corr_115: -3.93596749e-01 + sys_corr_115: 3.93596749e-01 sys_corr_116: 1.42392140e-02 sys_corr_117: -1.34432551e-02 sys_corr_118: 3.09860192e-01 sys_corr_119: 2.49689249e-04 sys_corr_120: -1.50865943e-02 - sys_corr_121: 1.14350675e-02 - sys_corr_122: 1.74579610e-02 - sys_corr_123: -1.70331804e-02 + sys_corr_121: -1.14350675e-02 + sys_corr_122: -1.70331804e-02 + sys_corr_123: 1.74579610e-02 sys_corr_124: -1.19679728e-01 - sys_corr_125: -1.42341427e-02 - sys_corr_126: -6.21141741e-03 + sys_corr_125: 1.42341427e-02 + sys_corr_126: 6.21141741e-03 sys_corr_127: -1.27124567e+00 sys_corr_128: 4.13762649e-01 - sys_corr_129: 1.44811944e-01 - sys_corr_130: 1.98650250e-02 + sys_corr_129: -1.44811944e-01 + sys_corr_130: -1.98650250e-02 sys_corr_131: -6.41335303e-03 - sys_corr_132: 1.94402698e-01 + sys_corr_132: -1.94402698e-01 stat: 0.0 luminosity: 1.41340760e+02 - sys_corr_1: 4.66954388e+01 @@ -9389,9 +9389,9 @@ bins: sys_corr_7: 2.62578760e+01 sys_corr_8: 1.97873597e+01 sys_corr_9: -2.59682055e+01 - sys_corr_10: -3.45465972e+00 + sys_corr_10: 3.45465972e+00 sys_corr_11: 2.12964198e+01 - sys_corr_12: -2.38987858e+01 + sys_corr_12: 2.38987858e+01 sys_corr_13: 1.78809970e+01 sys_corr_14: 2.01688165e+00 sys_corr_15: 6.78139507e+00 @@ -9417,60 +9417,60 @@ bins: sys_corr_35: -3.49499669e-01 sys_corr_36: -8.95745073e-01 sys_corr_37: -1.03233212e+00 - sys_corr_38: 1.10282442e+00 - sys_corr_39: -8.36479657e-01 - sys_corr_40: 2.95326087e+00 - sys_corr_41: -5.50291275e+00 - sys_corr_42: 9.93792949e-01 - sys_corr_43: -5.09354865e+00 + sys_corr_38: -1.10282442e+00 + sys_corr_39: 8.36479657e-01 + sys_corr_40: -2.95326087e+00 + sys_corr_41: 5.50291275e+00 + sys_corr_42: -9.93792949e-01 + sys_corr_43: 5.09354865e+00 sys_corr_44: -1.20818723e+01 - sys_corr_45: -7.59948513e-01 - sys_corr_46: -1.79414225e-01 + sys_corr_45: 7.59948513e-01 + sys_corr_46: 1.79414225e-01 sys_corr_47: 1.06921147e+00 - sys_corr_48: -4.10060326e+00 + sys_corr_48: 4.10060326e+00 sys_corr_49: 9.79465693e-01 sys_corr_50: -8.15528392e-02 sys_corr_51: -4.61686373e-02 - sys_corr_52: 3.29745865e+00 - sys_corr_53: 9.30993961e+00 + sys_corr_52: -3.29745865e+00 + sys_corr_53: -9.30993961e+00 sys_corr_54: 2.55572799e+00 - sys_corr_55: 1.56210419e+01 + sys_corr_55: -1.56210419e+01 sys_corr_56: 3.64623806e+00 - sys_corr_57: -5.45928859e+00 + sys_corr_57: 5.45928859e+00 sys_corr_58: 2.18819769e+00 - sys_corr_59: -2.45801758e+00 + sys_corr_59: 2.45801758e+00 sys_corr_60: -1.56088378e-01 sys_corr_61: -7.37030545e+00 sys_corr_62: -1.16506721e+01 - sys_corr_63: 7.46271471e+00 - sys_corr_64: -2.55552307e+00 + sys_corr_63: -7.46271471e+00 + sys_corr_64: 2.55552307e+00 sys_corr_65: 8.95761880e+00 sys_corr_66: -6.80304082e+00 sys_corr_67: 1.88827885e+01 sys_corr_68: 1.11936471e-02 sys_corr_69: -5.25162536e+00 sys_corr_70: 5.20602700e+00 - sys_corr_71: 9.84185632e+00 - sys_corr_72: 7.91609959e+00 - sys_corr_73: -1.89480148e+01 + sys_corr_71: -1.89480148e+01 + sys_corr_72: -7.91609959e+00 + sys_corr_73: 9.84185632e+00 sys_corr_74: 2.02781160e+01 sys_corr_75: 8.34463441e+00 sys_corr_76: -3.01281122e+01 - sys_corr_77: -1.48216160e+01 - sys_corr_78: -1.17231918e+01 - sys_corr_79: -2.36321893e+01 - sys_corr_80: 1.51575599e+01 + sys_corr_77: 1.48216160e+01 + sys_corr_78: -2.36321893e+01 + sys_corr_79: -1.51575599e+01 + sys_corr_80: 1.17231918e+01 sys_corr_81: 9.98887418e+01 sys_corr_82: -1.15278112e+01 sys_corr_83: -1.94088440e+02 - sys_corr_84: -6.08776820e+00 + sys_corr_84: 6.08776820e+00 sys_corr_85: 2.44203756e+01 sys_corr_86: 2.41370926e+01 sys_corr_87: 2.91601312e+01 sys_corr_88: 2.50784449e+00 sys_corr_89: 4.14111919e+00 sys_corr_90: 2.35327736e+00 - sys_corr_91: -2.39962425e+00 + sys_corr_91: 2.39962425e+00 sys_corr_92: 4.07734578e+00 sys_corr_93: -7.41944870e-01 sys_corr_94: -2.30276151e+00 @@ -9478,40 +9478,40 @@ bins: sys_corr_96: -4.72735711e-02 sys_corr_97: -6.84253176e-01 sys_corr_98: -1.52969403e-02 - sys_corr_99: 1.11232231e-01 - sys_corr_100: -5.24553921e-01 + sys_corr_99: -1.11232231e-01 + sys_corr_100: 5.24553921e-01 sys_corr_101: -1.14407078e-02 - sys_corr_102: -2.57816710e-02 - sys_corr_103: -1.55298309e+00 - sys_corr_104: -5.68997717e-01 - sys_corr_105: -7.61636187e-01 - sys_corr_106: 1.96182894e-01 - sys_corr_107: 8.09891778e-02 + sys_corr_102: 2.57816710e-02 + sys_corr_103: 1.55298309e+00 + sys_corr_104: 5.68997717e-01 + sys_corr_105: 7.61636187e-01 + sys_corr_106: -1.96182894e-01 + sys_corr_107: -8.09891778e-02 sys_corr_108: 1.79717141e-02 sys_corr_109: 6.14841267e-02 sys_corr_110: -6.82065803e-03 - sys_corr_111: -4.65091699e-01 + sys_corr_111: 4.65091699e-01 sys_corr_112: 1.36240551e-01 sys_corr_113: 1.82704753e-01 sys_corr_114: -3.46325581e-03 - sys_corr_115: -3.77516423e-01 + sys_corr_115: 3.77516423e-01 sys_corr_116: -1.02941855e-02 sys_corr_117: -1.01252738e-02 sys_corr_118: 2.24386766e-01 sys_corr_119: -3.92813117e-03 sys_corr_120: -1.31032600e-02 - sys_corr_121: 4.00184820e-03 - sys_corr_122: 6.29779705e-03 - sys_corr_123: -1.23370788e-03 + sys_corr_121: -4.00184820e-03 + sys_corr_122: -1.23370788e-03 + sys_corr_123: 6.29779705e-03 sys_corr_124: -1.04273560e-01 - sys_corr_125: -1.05860142e-03 - sys_corr_126: -4.70232045e-03 + sys_corr_125: 1.05860142e-03 + sys_corr_126: 4.70232045e-03 sys_corr_127: -2.22411610e-01 sys_corr_128: 2.22302657e-01 - sys_corr_129: -1.56587597e-01 - sys_corr_130: 1.02997124e-02 + sys_corr_129: 1.56587597e-01 + sys_corr_130: -1.02997124e-02 sys_corr_131: -3.09227503e-03 - sys_corr_132: 1.31915466e-01 + sys_corr_132: -1.31915466e-01 stat: 0.0 luminosity: 1.29830074e+02 - sys_corr_1: 3.40799556e+01 @@ -9523,9 +9523,9 @@ bins: sys_corr_7: 2.29844200e+01 sys_corr_8: 1.67888796e+01 sys_corr_9: -2.24770091e+01 - sys_corr_10: -2.77700400e+00 + sys_corr_10: 2.77700400e+00 sys_corr_11: 1.72397353e+01 - sys_corr_12: -2.25354688e+01 + sys_corr_12: 2.25354688e+01 sys_corr_13: 1.69860377e+01 sys_corr_14: 2.89140485e+00 sys_corr_15: 4.33475574e+00 @@ -9551,60 +9551,60 @@ bins: sys_corr_35: -6.14688715e-01 sys_corr_36: -1.56777815e+00 sys_corr_37: -1.09746173e+00 - sys_corr_38: 9.66448296e-02 - sys_corr_39: -2.84223894e+00 - sys_corr_40: 1.08934256e+00 - sys_corr_41: -5.68584341e+00 - sys_corr_42: 1.77371780e+00 - sys_corr_43: 1.09303854e+00 + sys_corr_38: -9.66448296e-02 + sys_corr_39: 2.84223894e+00 + sys_corr_40: -1.08934256e+00 + sys_corr_41: 5.68584341e+00 + sys_corr_42: -1.77371780e+00 + sys_corr_43: -1.09303854e+00 sys_corr_44: -1.02346213e+01 - sys_corr_45: -4.47302276e+00 - sys_corr_46: 2.07082148e+00 + sys_corr_45: 4.47302276e+00 + sys_corr_46: -2.07082148e+00 sys_corr_47: 1.11550410e+00 - sys_corr_48: -4.03443555e+00 + sys_corr_48: 4.03443555e+00 sys_corr_49: 1.63826274e+00 sys_corr_50: -2.40653737e+00 sys_corr_51: -9.34265554e+00 - sys_corr_52: 4.78815508e+00 - sys_corr_53: 1.44493926e+00 + sys_corr_52: -4.78815508e+00 + sys_corr_53: -1.44493926e+00 sys_corr_54: 8.58766824e+00 - sys_corr_55: 3.45701188e+00 + sys_corr_55: -3.45701188e+00 sys_corr_56: 2.56155446e+00 - sys_corr_57: -9.65483549e+00 + sys_corr_57: 9.65483549e+00 sys_corr_58: 1.99930217e+00 - sys_corr_59: 3.82932219e+00 + sys_corr_59: -3.82932219e+00 sys_corr_60: -4.84372715e-01 sys_corr_61: -3.35367784e+00 sys_corr_62: -1.22034939e+01 - sys_corr_63: 2.42839359e+00 - sys_corr_64: -1.25207574e+01 + sys_corr_63: -2.42839359e+00 + sys_corr_64: 1.25207574e+01 sys_corr_65: 4.06346594e+00 sys_corr_66: -9.66853678e+00 sys_corr_67: 5.92031494e+00 sys_corr_68: -2.80708055e+00 sys_corr_69: -1.57795121e+01 sys_corr_70: 1.84153218e+01 - sys_corr_71: 8.06212642e+00 - sys_corr_72: 2.30156873e+01 - sys_corr_73: -2.36516279e+01 + sys_corr_71: -2.36516279e+01 + sys_corr_72: -2.30156873e+01 + sys_corr_73: 8.06212642e+00 sys_corr_74: 4.34643483e+01 sys_corr_75: 2.68124153e+01 sys_corr_76: -1.09681935e+02 - sys_corr_77: -5.91696711e-02 - sys_corr_78: -6.89227945e+00 - sys_corr_79: -1.52036679e+01 - sys_corr_80: 8.85539550e+00 + sys_corr_77: 5.91696711e-02 + sys_corr_78: -1.52036679e+01 + sys_corr_79: -8.85539550e+00 + sys_corr_80: 6.89227945e+00 sys_corr_81: -8.42410535e+00 sys_corr_82: -2.14950077e+00 sys_corr_83: 9.99555447e+00 - sys_corr_84: -1.10939208e+00 + sys_corr_84: 1.10939208e+00 sys_corr_85: 1.54655202e+01 sys_corr_86: -9.09276999e+01 sys_corr_87: -4.51216944e+01 sys_corr_88: -1.74737357e+02 sys_corr_89: 4.32816307e+00 sys_corr_90: -1.12147451e+00 - sys_corr_91: 8.05417604e+00 + sys_corr_91: -8.05417604e+00 sys_corr_92: -3.77725670e+01 sys_corr_93: -3.72772880e-01 sys_corr_94: -2.42404669e+00 @@ -9612,40 +9612,40 @@ bins: sys_corr_96: -2.62322988e-01 sys_corr_97: -5.62332632e-01 sys_corr_98: -2.29147465e-02 - sys_corr_99: -7.57111594e-02 - sys_corr_100: -6.55049952e-01 + sys_corr_99: 7.57111594e-02 + sys_corr_100: 6.55049952e-01 sys_corr_101: -1.07077609e-01 - sys_corr_102: -1.12343157e-01 - sys_corr_103: -8.02166037e-01 - sys_corr_104: -4.32716212e-01 - sys_corr_105: -2.89412574e-01 - sys_corr_106: 2.06357797e-01 - sys_corr_107: 3.41126587e-01 + sys_corr_102: 1.12343157e-01 + sys_corr_103: 8.02166037e-01 + sys_corr_104: 4.32716212e-01 + sys_corr_105: 2.89412574e-01 + sys_corr_106: -2.06357797e-01 + sys_corr_107: -3.41126587e-01 sys_corr_108: -1.11209748e-01 sys_corr_109: 2.70155908e-01 sys_corr_110: 4.62714164e-01 - sys_corr_111: -1.89277452e-01 + sys_corr_111: 1.89277452e-01 sys_corr_112: 3.27864314e-02 sys_corr_113: 2.85075321e-01 sys_corr_114: -2.68813183e-03 - sys_corr_115: -2.06695077e-01 + sys_corr_115: 2.06695077e-01 sys_corr_116: -3.61557226e-03 sys_corr_117: 2.77281856e-03 sys_corr_118: 2.05070096e-01 sys_corr_119: -4.09467265e-03 sys_corr_120: -3.29411596e-03 - sys_corr_121: 5.59702027e-03 - sys_corr_122: 7.98270876e-03 - sys_corr_123: -1.12520052e-02 + sys_corr_121: -5.59702027e-03 + sys_corr_122: -1.12520052e-02 + sys_corr_123: 7.98270876e-03 sys_corr_124: -1.50360221e-02 - sys_corr_125: -1.29553313e-02 - sys_corr_126: -2.83796391e-03 + sys_corr_125: 1.29553313e-02 + sys_corr_126: 2.83796391e-03 sys_corr_127: -1.00874534e-01 sys_corr_128: 1.58763042e-01 - sys_corr_129: 3.37368577e-01 - sys_corr_130: 2.21654648e-02 + sys_corr_129: -3.37368577e-01 + sys_corr_130: -2.21654648e-02 sys_corr_131: 3.59189255e-03 - sys_corr_132: 1.40405263e-01 + sys_corr_132: -1.40405263e-01 stat: 0.0 luminosity: 1.08345072e+02 - sys_corr_1: 2.54662129e+01 @@ -9657,9 +9657,9 @@ bins: sys_corr_7: 1.69523869e+01 sys_corr_8: 1.49506477e+01 sys_corr_9: -2.04858682e+01 - sys_corr_10: -4.66590991e+00 + sys_corr_10: 4.66590991e+00 sys_corr_11: 1.55409065e+01 - sys_corr_12: -1.70502099e+01 + sys_corr_12: 1.70502099e+01 sys_corr_13: 1.02065923e+01 sys_corr_14: 4.36789234e+00 sys_corr_15: 1.79069411e+00 @@ -9685,60 +9685,60 @@ bins: sys_corr_35: 3.64610259e-01 sys_corr_36: -1.20676932e+00 sys_corr_37: -1.48976895e+00 - sys_corr_38: -1.96021161e-01 - sys_corr_39: -2.39910026e+00 - sys_corr_40: 4.36146556e+00 - sys_corr_41: -6.20014423e+00 - sys_corr_42: 3.49846393e+00 - sys_corr_43: -1.01000871e+00 + sys_corr_38: 1.96021161e-01 + sys_corr_39: 2.39910026e+00 + sys_corr_40: -4.36146556e+00 + sys_corr_41: 6.20014423e+00 + sys_corr_42: -3.49846393e+00 + sys_corr_43: 1.01000871e+00 sys_corr_44: -1.36392354e+01 - sys_corr_45: -1.93617271e+00 - sys_corr_46: -7.39737789e-01 + sys_corr_45: 1.93617271e+00 + sys_corr_46: 7.39737789e-01 sys_corr_47: 3.38144116e+00 - sys_corr_48: -9.31403987e+00 + sys_corr_48: 9.31403987e+00 sys_corr_49: 3.65529166e+00 sys_corr_50: 1.60403230e+00 sys_corr_51: -7.94436987e+00 - sys_corr_52: 2.19154563e+00 - sys_corr_53: 5.84620284e-01 + sys_corr_52: -2.19154563e+00 + sys_corr_53: -5.84620284e-01 sys_corr_54: 8.86233510e+00 - sys_corr_55: 1.01222252e+00 + sys_corr_55: -1.01222252e+00 sys_corr_56: 3.77920530e+00 - sys_corr_57: -3.54213231e+00 + sys_corr_57: 3.54213231e+00 sys_corr_58: 5.17117219e+00 - sys_corr_59: -5.77697364e+00 + sys_corr_59: 5.77697364e+00 sys_corr_60: 2.72974772e+00 sys_corr_61: -1.01889529e+01 sys_corr_62: -6.90610113e+00 - sys_corr_63: 1.27435749e+01 - sys_corr_64: 5.95639439e+00 + sys_corr_63: -1.27435749e+01 + sys_corr_64: -5.95639439e+00 sys_corr_65: 7.99824884e+00 sys_corr_66: -2.48955934e+00 sys_corr_67: 2.45243404e+00 sys_corr_68: -1.37378520e+01 sys_corr_69: -1.13572128e+01 sys_corr_70: -5.83316966e-01 - sys_corr_71: 3.53542656e+00 - sys_corr_72: 3.87938303e+00 - sys_corr_73: -9.99488417e+00 + sys_corr_71: -9.99488417e+00 + sys_corr_72: -3.87938303e+00 + sys_corr_73: 3.53542656e+00 sys_corr_74: -2.23422647e+01 sys_corr_75: 3.75328519e-01 sys_corr_76: -1.65372884e+02 - sys_corr_77: -3.65479806e+00 - sys_corr_78: 1.32504017e+00 - sys_corr_79: -3.61169574e+00 - sys_corr_80: 5.65654743e+00 + sys_corr_77: 3.65479806e+00 + sys_corr_78: -3.61169574e+00 + sys_corr_79: -5.65654743e+00 + sys_corr_80: -1.32504017e+00 sys_corr_81: -1.56625693e+01 sys_corr_82: -4.23409442e+00 sys_corr_83: 2.94922956e+01 - sys_corr_84: -3.94139212e+00 + sys_corr_84: 3.94139212e+00 sys_corr_85: 1.38811715e+01 sys_corr_86: 1.24842590e+02 sys_corr_87: -3.46606025e+01 sys_corr_88: 7.19212375e+01 sys_corr_89: 4.03261910e+00 sys_corr_90: -3.15375566e+00 - sys_corr_91: 4.69162738e+00 + sys_corr_91: -4.69162738e+00 sys_corr_92: -9.12507458e+01 sys_corr_93: -4.43509004e-01 sys_corr_94: -1.77180349e+00 @@ -9746,40 +9746,40 @@ bins: sys_corr_96: 5.92925002e-02 sys_corr_97: -1.17953935e+00 sys_corr_98: -4.95965609e-01 - sys_corr_99: 2.36820368e-01 - sys_corr_100: -2.94549639e-01 + sys_corr_99: -2.36820368e-01 + sys_corr_100: 2.94549639e-01 sys_corr_101: -1.27602562e-01 - sys_corr_102: 3.50598741e-01 - sys_corr_103: -3.11152039e-01 - sys_corr_104: -6.18151037e-02 - sys_corr_105: 1.06517993e-01 - sys_corr_106: 1.21617547e-01 - sys_corr_107: 2.29905125e-01 + sys_corr_102: -3.50598741e-01 + sys_corr_103: 3.11152039e-01 + sys_corr_104: 6.18151037e-02 + sys_corr_105: -1.06517993e-01 + sys_corr_106: -1.21617547e-01 + sys_corr_107: -2.29905125e-01 sys_corr_108: 2.77803913e-01 sys_corr_109: 2.74635335e-01 sys_corr_110: 3.44874260e-01 - sys_corr_111: -2.21772587e-01 + sys_corr_111: 2.21772587e-01 sys_corr_112: 2.55452986e-01 sys_corr_113: 1.87979988e-01 sys_corr_114: -2.64800691e-03 - sys_corr_115: 1.45667453e-01 + sys_corr_115: -1.45667453e-01 sys_corr_116: 5.48197473e-02 sys_corr_117: -1.54321306e-02 sys_corr_118: 3.37664560e-01 sys_corr_119: -7.19234023e-03 sys_corr_120: -1.12949799e-02 - sys_corr_121: 2.65605757e-03 - sys_corr_122: 7.88850803e-03 - sys_corr_123: -1.12662851e-02 + sys_corr_121: -2.65605757e-03 + sys_corr_122: -1.12662851e-02 + sys_corr_123: 7.88850803e-03 sys_corr_124: -2.82239982e-02 - sys_corr_125: -3.62084010e-03 - sys_corr_126: -5.70256235e-03 + sys_corr_125: 3.62084010e-03 + sys_corr_126: 5.70256235e-03 sys_corr_127: -9.48736028e-03 sys_corr_128: 1.50381024e-01 - sys_corr_129: 1.77897067e-01 - sys_corr_130: 1.11278246e-02 + sys_corr_129: -1.77897067e-01 + sys_corr_130: -1.11278246e-02 sys_corr_131: 4.73276926e-04 - sys_corr_132: 1.44843930e-01 + sys_corr_132: -1.44843930e-01 stat: 0.0 luminosity: 8.90816080e+01 - sys_corr_1: 1.16975314e+01 @@ -9791,9 +9791,9 @@ bins: sys_corr_7: 7.87288457e+00 sys_corr_8: 8.45378262e+00 sys_corr_9: -1.02050310e+01 - sys_corr_10: -1.98823565e+00 + sys_corr_10: 1.98823565e+00 sys_corr_11: 7.12706490e+00 - sys_corr_12: -2.96570390e+00 + sys_corr_12: 2.96570390e+00 sys_corr_13: 3.76619067e+00 sys_corr_14: -7.54886174e-02 sys_corr_15: 9.83193737e-01 @@ -9819,60 +9819,60 @@ bins: sys_corr_35: -8.77439531e-04 sys_corr_36: -2.95261914e+00 sys_corr_37: -2.09272593e+00 - sys_corr_38: -1.96420868e+00 - sys_corr_39: -1.32875620e+00 - sys_corr_40: 3.86095374e+00 - sys_corr_41: -2.23254390e+00 - sys_corr_42: -4.28995823e-01 - sys_corr_43: -3.00665483e+00 + sys_corr_38: 1.96420868e+00 + sys_corr_39: 1.32875620e+00 + sys_corr_40: -3.86095374e+00 + sys_corr_41: 2.23254390e+00 + sys_corr_42: 4.28995823e-01 + sys_corr_43: 3.00665483e+00 sys_corr_44: -6.97769717e+00 - sys_corr_45: -1.56639375e-01 - sys_corr_46: -1.27707441e+00 + sys_corr_45: 1.56639375e-01 + sys_corr_46: 1.27707441e+00 sys_corr_47: -2.24595436e+00 - sys_corr_48: -1.81180196e+00 + sys_corr_48: 1.81180196e+00 sys_corr_49: 1.72850843e+00 sys_corr_50: -6.66329098e-01 sys_corr_51: 3.79116342e+00 - sys_corr_52: -3.80687195e+00 - sys_corr_53: -2.26996643e-02 + sys_corr_52: 3.80687195e+00 + sys_corr_53: 2.26996643e-02 sys_corr_54: 5.09523701e-01 - sys_corr_55: 3.17866631e+00 + sys_corr_55: -3.17866631e+00 sys_corr_56: 3.78806649e-01 - sys_corr_57: -1.22473239e+00 + sys_corr_57: 1.22473239e+00 sys_corr_58: 1.59061561e+00 - sys_corr_59: -2.09635243e-01 + sys_corr_59: 2.09635243e-01 sys_corr_60: 2.26808799e-01 sys_corr_61: -1.36914876e+00 sys_corr_62: -2.91303454e+00 - sys_corr_63: -8.48576784e-01 - sys_corr_64: -9.55222164e-01 + sys_corr_63: 8.48576784e-01 + sys_corr_64: 9.55222164e-01 sys_corr_65: 1.94842776e+00 sys_corr_66: 1.78695075e+00 sys_corr_67: 4.75968031e+00 sys_corr_68: -1.38268482e+00 sys_corr_69: -2.05056586e+00 sys_corr_70: -1.13447990e+00 - sys_corr_71: 2.51328839e+00 - sys_corr_72: 1.17057523e+00 - sys_corr_73: 1.92617009e+00 + sys_corr_71: 1.92617009e+00 + sys_corr_72: -1.17057523e+00 + sys_corr_73: 2.51328839e+00 sys_corr_74: -1.87631078e+00 sys_corr_75: 1.53461023e+00 sys_corr_76: -3.23456044e+00 - sys_corr_77: 1.02327430e+00 - sys_corr_78: -2.27258442e+00 - sys_corr_79: -1.11234986e+00 - sys_corr_80: -4.49085118e+00 + sys_corr_77: -1.02327430e+00 + sys_corr_78: -1.11234986e+00 + sys_corr_79: 4.49085118e+00 + sys_corr_80: 2.27258442e+00 sys_corr_81: 2.40881863e+00 sys_corr_82: -7.45315184e-01 sys_corr_83: -3.69073550e+00 - sys_corr_84: 3.43284088e-01 + sys_corr_84: -3.43284088e-01 sys_corr_85: -6.86416596e+00 sys_corr_86: 1.67088847e+00 sys_corr_87: 3.69566979e-02 sys_corr_88: -5.45597950e+00 sys_corr_89: -8.26267955e+00 sys_corr_90: -3.89651993e-01 - sys_corr_91: -9.00374334e+00 + sys_corr_91: 9.00374334e+00 sys_corr_92: -3.10642450e+00 sys_corr_93: 1.33918360e+01 sys_corr_94: 1.04940660e+02 @@ -9880,40 +9880,40 @@ bins: sys_corr_96: -6.57559940e-01 sys_corr_97: -2.54312532e+01 sys_corr_98: -8.37454930e+00 - sys_corr_99: 4.52664842e+00 - sys_corr_100: -8.01269442e-02 + sys_corr_99: -4.52664842e+00 + sys_corr_100: 8.01269442e-02 sys_corr_101: 4.07409526e-01 - sys_corr_102: 1.75921232e+00 - sys_corr_103: -1.59903798e+00 - sys_corr_104: 5.92608657e+00 - sys_corr_105: 2.31299218e+00 - sys_corr_106: 1.55699816e-01 - sys_corr_107: -1.25541620e-02 + sys_corr_102: -1.75921232e+00 + sys_corr_103: 1.59903798e+00 + sys_corr_104: -5.92608657e+00 + sys_corr_105: -2.31299218e+00 + sys_corr_106: -1.55699816e-01 + sys_corr_107: 1.25541620e-02 sys_corr_108: -1.02848740e+00 sys_corr_109: 1.06801981e+00 sys_corr_110: 1.26155015e+00 - sys_corr_111: -2.58215041e+00 + sys_corr_111: 2.58215041e+00 sys_corr_112: 6.01718754e-01 sys_corr_113: 7.86477845e-01 sys_corr_114: -2.80775483e-03 - sys_corr_115: 5.17957671e-01 + sys_corr_115: -5.17957671e-01 sys_corr_116: -4.74127894e-03 sys_corr_117: 3.74714876e-02 sys_corr_118: -3.78478817e-02 sys_corr_119: -2.02964689e-02 sys_corr_120: 1.08292301e-02 - sys_corr_121: -1.20012781e-02 - sys_corr_122: -3.66482996e-02 - sys_corr_123: 4.92079163e-02 + sys_corr_121: 1.20012781e-02 + sys_corr_122: 4.92079163e-02 + sys_corr_123: -3.66482996e-02 sys_corr_124: 1.60482729e-01 - sys_corr_125: 2.52048457e-02 - sys_corr_126: -2.19100538e-02 + sys_corr_125: -2.52048457e-02 + sys_corr_126: 2.19100538e-02 sys_corr_127: -1.29919605e+00 sys_corr_128: 1.96199743e+00 - sys_corr_129: 4.16204326e-01 - sys_corr_130: -4.74227836e-04 + sys_corr_129: -4.16204326e-01 + sys_corr_130: 4.74227836e-04 sys_corr_131: -8.68772932e-04 - sys_corr_132: 1.78591562e-01 + sys_corr_132: -1.78591562e-01 stat: 0.0 luminosity: 5.65325200e+01 - sys_corr_1: 5.99477304e+00 @@ -9925,9 +9925,9 @@ bins: sys_corr_7: 1.46139297e+00 sys_corr_8: 3.14901199e+00 sys_corr_9: -4.39053804e+00 - sys_corr_10: -1.41262022e+00 + sys_corr_10: 1.41262022e+00 sys_corr_11: 5.05523988e+00 - sys_corr_12: -2.97828454e+00 + sys_corr_12: 2.97828454e+00 sys_corr_13: 3.86224236e+00 sys_corr_14: -1.90056374e-01 sys_corr_15: 1.47361919e+00 @@ -9953,60 +9953,60 @@ bins: sys_corr_35: 4.53030803e-02 sys_corr_36: -8.82355570e-01 sys_corr_37: -3.14279454e+00 - sys_corr_38: -2.15731980e+00 - sys_corr_39: -5.92218110e-01 - sys_corr_40: 3.92032361e+00 - sys_corr_41: -3.10093250e-01 - sys_corr_42: 1.03016398e+00 - sys_corr_43: -4.33084912e+00 + sys_corr_38: 2.15731980e+00 + sys_corr_39: 5.92218110e-01 + sys_corr_40: -3.92032361e+00 + sys_corr_41: 3.10093250e-01 + sys_corr_42: -1.03016398e+00 + sys_corr_43: 4.33084912e+00 sys_corr_44: -3.93017979e+00 - sys_corr_45: 1.59753710e-01 - sys_corr_46: -2.56884444e+00 + sys_corr_45: -1.59753710e-01 + sys_corr_46: 2.56884444e+00 sys_corr_47: 5.45605508e-01 - sys_corr_48: 2.69244466e-01 + sys_corr_48: -2.69244466e-01 sys_corr_49: 9.08881567e-01 sys_corr_50: 8.43004736e-01 sys_corr_51: 5.90412078e+00 - sys_corr_52: -5.16351348e+00 - sys_corr_53: -2.52825828e+00 + sys_corr_52: 5.16351348e+00 + sys_corr_53: 2.52825828e+00 sys_corr_54: 8.74328031e-02 - sys_corr_55: 1.95172165e-01 + sys_corr_55: -1.95172165e-01 sys_corr_56: -7.82227428e-02 - sys_corr_57: 5.37394017e-01 + sys_corr_57: -5.37394017e-01 sys_corr_58: 2.95047485e-01 - sys_corr_59: 1.54557838e+00 + sys_corr_59: -1.54557838e+00 sys_corr_60: 1.93856105e-01 sys_corr_61: 1.65001911e+00 sys_corr_62: -5.15267843e-01 - sys_corr_63: 5.07846604e-01 - sys_corr_64: -3.11782127e+00 + sys_corr_63: -5.07846604e-01 + sys_corr_64: 3.11782127e+00 sys_corr_65: -4.45807806e-01 sys_corr_66: -1.05037341e+00 sys_corr_67: -6.03072911e-01 sys_corr_68: -3.78992999e+00 sys_corr_69: -1.28589157e+00 sys_corr_70: 1.18296023e+00 - sys_corr_71: 1.57880847e+00 - sys_corr_72: -4.32946976e+00 - sys_corr_73: 1.37460831e-01 + sys_corr_71: 1.37460831e-01 + sys_corr_72: 4.32946976e+00 + sys_corr_73: 1.57880847e+00 sys_corr_74: -5.81170056e+00 sys_corr_75: -2.99735574e-01 sys_corr_76: -8.71421906e+00 - sys_corr_77: -1.51829058e+00 - sys_corr_78: -1.89038852e+00 - sys_corr_79: -4.06461845e-01 - sys_corr_80: 8.14779220e+00 + sys_corr_77: 1.51829058e+00 + sys_corr_78: -4.06461845e-01 + sys_corr_79: -8.14779220e+00 + sys_corr_80: 1.89038852e+00 sys_corr_81: 2.89542976e+00 sys_corr_82: -1.16792637e+00 sys_corr_83: -6.23096481e+00 - sys_corr_84: -1.41199589e+01 + sys_corr_84: 1.41199589e+01 sys_corr_85: -2.56757928e+01 sys_corr_86: 1.15159882e+00 sys_corr_87: 2.58180861e-01 sys_corr_88: -4.72296581e+00 sys_corr_89: -1.92275063e+02 sys_corr_90: -2.18457290e+01 - sys_corr_91: 1.78945492e+01 + sys_corr_91: -1.78945492e+01 sys_corr_92: -1.75848244e+00 sys_corr_93: -8.62645704e-01 sys_corr_94: -6.23681347e+00 @@ -10014,40 +10014,40 @@ bins: sys_corr_96: 1.33087450e-01 sys_corr_97: -8.86009668e-01 sys_corr_98: -4.20743004e-01 - sys_corr_99: 9.87248187e-02 - sys_corr_100: -4.40910350e-01 + sys_corr_99: -9.87248187e-02 + sys_corr_100: 4.40910350e-01 sys_corr_101: -2.78139872e-01 - sys_corr_102: -1.62747667e-01 - sys_corr_103: -1.47872131e+00 - sys_corr_104: 2.34726957e+00 - sys_corr_105: -9.07567324e-01 - sys_corr_106: 2.99740415e-01 - sys_corr_107: 4.40595477e-01 + sys_corr_102: 1.62747667e-01 + sys_corr_103: 1.47872131e+00 + sys_corr_104: -2.34726957e+00 + sys_corr_105: 9.07567324e-01 + sys_corr_106: -2.99740415e-01 + sys_corr_107: -4.40595477e-01 sys_corr_108: -3.36919595e-01 sys_corr_109: 9.52637585e-01 sys_corr_110: 7.72589814e-01 - sys_corr_111: -2.62829571e-01 + sys_corr_111: 2.62829571e-01 sys_corr_112: 3.49539122e-01 sys_corr_113: 3.30923632e-01 sys_corr_114: 2.72267388e-04 - sys_corr_115: 1.26151286e-01 + sys_corr_115: -1.26151286e-01 sys_corr_116: -3.61046479e-02 sys_corr_117: 3.47710195e-02 sys_corr_118: -3.17619177e-02 sys_corr_119: -1.05187820e-02 sys_corr_120: 1.86681073e-02 - sys_corr_121: -6.65958629e-03 - sys_corr_122: -2.11950249e-02 - sys_corr_123: 2.98313127e-02 + sys_corr_121: 6.65958629e-03 + sys_corr_122: 2.98313127e-02 + sys_corr_123: -2.11950249e-02 sys_corr_124: 1.02076312e-01 - sys_corr_125: 1.80005443e-02 - sys_corr_126: -1.09751543e-02 + sys_corr_125: -1.80005443e-02 + sys_corr_126: 1.09751543e-02 sys_corr_127: -4.86673688e-01 sys_corr_128: 1.07179423e+00 - sys_corr_129: 2.28165006e-01 - sys_corr_130: -4.94424236e-03 + sys_corr_129: -2.28165006e-01 + sys_corr_130: 4.94424236e-03 sys_corr_131: -9.80955439e-03 - sys_corr_132: -3.09082224e-01 + sys_corr_132: 3.09082224e-01 stat: 0.0 luminosity: 39.56007 - sys_corr_1: 1.05601995e+00 @@ -10059,9 +10059,9 @@ bins: sys_corr_7: -8.32256623e-02 sys_corr_8: 2.05669746e+00 sys_corr_9: -1.79450152e+00 - sys_corr_10: -9.62800706e-01 + sys_corr_10: 9.62800706e-01 sys_corr_11: 1.24847161e+00 - sys_corr_12: 1.03324296e+00 + sys_corr_12: -1.03324296e+00 sys_corr_13: 4.35101956e-01 sys_corr_14: -3.10836569e-01 sys_corr_15: 1.15831995e-01 @@ -10087,60 +10087,60 @@ bins: sys_corr_35: -3.65381324e-01 sys_corr_36: -1.57731694e+00 sys_corr_37: -1.19350071e+00 - sys_corr_38: -9.85823755e-01 - sys_corr_39: -2.86672077e-01 - sys_corr_40: 1.25505223e+00 - sys_corr_41: 3.26754590e-01 - sys_corr_42: -8.19064578e-01 - sys_corr_43: -1.78831057e+00 + sys_corr_38: 9.85823755e-01 + sys_corr_39: 2.86672077e-01 + sys_corr_40: -1.25505223e+00 + sys_corr_41: -3.26754590e-01 + sys_corr_42: 8.19064578e-01 + sys_corr_43: 1.78831057e+00 sys_corr_44: 6.56513413e-01 - sys_corr_45: 5.53798811e-01 - sys_corr_46: -8.33588196e-01 + sys_corr_45: -5.53798811e-01 + sys_corr_46: 8.33588196e-01 sys_corr_47: 8.53911719e-01 - sys_corr_48: 3.76400824e+00 + sys_corr_48: -3.76400824e+00 sys_corr_49: -1.14830004e+00 sys_corr_50: -2.59175434e+00 sys_corr_51: 1.07549274e-01 - sys_corr_52: 3.14157111e-01 - sys_corr_53: -6.12837282e-02 + sys_corr_52: -3.14157111e-01 + sys_corr_53: 6.12837282e-02 sys_corr_54: 5.59070129e-02 - sys_corr_55: -7.29985301e-01 + sys_corr_55: 7.29985301e-01 sys_corr_56: -8.29695575e-02 - sys_corr_57: 9.28305714e-02 + sys_corr_57: -9.28305714e-02 sys_corr_58: -8.90277475e-02 - sys_corr_59: 3.20386764e-01 + sys_corr_59: -3.20386764e-01 sys_corr_60: -5.20187327e-01 sys_corr_61: 6.84518922e-01 sys_corr_62: -4.22112051e-01 - sys_corr_63: -5.52342836e-01 - sys_corr_64: -6.86049206e-02 + sys_corr_63: 5.52342836e-01 + sys_corr_64: 6.86049206e-02 sys_corr_65: -3.58537312e-01 sys_corr_66: 5.31467907e-01 sys_corr_67: -2.38021302e-01 sys_corr_68: -6.91352478e-01 sys_corr_69: -6.07453750e-01 sys_corr_70: 4.72632406e-01 - sys_corr_71: -1.04840829e-01 - sys_corr_72: 4.49255403e-01 - sys_corr_73: 2.93891684e-01 + sys_corr_71: 2.93891684e-01 + sys_corr_72: -4.49255403e-01 + sys_corr_73: -1.04840829e-01 sys_corr_74: -5.26018047e-02 sys_corr_75: 6.29137060e-01 sys_corr_76: -5.33814442e-01 - sys_corr_77: 2.82475769e-01 - sys_corr_78: -4.42744178e-01 - sys_corr_79: -2.26780765e-01 - sys_corr_80: -1.95961625e+00 + sys_corr_77: -2.82475769e-01 + sys_corr_78: -2.26780765e-01 + sys_corr_79: 1.95961625e+00 + sys_corr_80: 4.42744178e-01 sys_corr_81: 2.52231270e-01 sys_corr_82: -2.11017964e-01 sys_corr_83: -5.86517386e-01 - sys_corr_84: -4.65410522e-01 + sys_corr_84: 4.65410522e-01 sys_corr_85: -5.15051423e-01 sys_corr_86: 1.08873934e+00 sys_corr_87: 2.22600925e-02 sys_corr_88: -1.19319225e+00 sys_corr_89: -2.41524433e+00 sys_corr_90: -3.95340316e-01 - sys_corr_91: -4.47109564e-01 + sys_corr_91: 4.47109564e-01 sys_corr_92: -9.10389912e-01 sys_corr_93: 4.46106256e-02 sys_corr_94: 1.18304101e+00 @@ -10148,40 +10148,40 @@ bins: sys_corr_96: 1.54919522e-01 sys_corr_97: 4.96337152e-01 sys_corr_98: 3.11803161e-01 - sys_corr_99: 6.05070439e-02 - sys_corr_100: -2.25587245e+00 + sys_corr_99: -6.05070439e-02 + sys_corr_100: 2.25587245e+00 sys_corr_101: 1.25009822e-01 - sys_corr_102: -4.31353555e-01 - sys_corr_103: 9.73651139e-01 - sys_corr_104: 1.61735608e+00 - sys_corr_105: -4.55539315e-01 - sys_corr_106: 1.83015873e+00 - sys_corr_107: 1.15104304e+01 + sys_corr_102: 4.31353555e-01 + sys_corr_103: -9.73651139e-01 + sys_corr_104: -1.61735608e+00 + sys_corr_105: 4.55539315e-01 + sys_corr_106: -1.83015873e+00 + sys_corr_107: -1.15104304e+01 sys_corr_108: 1.37950160e+00 sys_corr_109: -4.08027045e+00 sys_corr_110: -3.49483925e+01 - sys_corr_111: 2.60629945e-01 + sys_corr_111: -2.60629945e-01 sys_corr_112: -3.95364003e-01 sys_corr_113: -2.17985375e-01 sys_corr_114: -2.26568349e-04 - sys_corr_115: -5.72521604e-01 + sys_corr_115: 5.72521604e-01 sys_corr_116: -2.08276360e-01 sys_corr_117: 7.91378519e-02 sys_corr_118: 2.69591587e-02 sys_corr_119: -2.25342559e-02 sys_corr_120: 1.17452308e-03 - sys_corr_121: -6.23252509e-02 - sys_corr_122: -8.81989110e-02 - sys_corr_123: 1.84149366e-01 + sys_corr_121: 6.23252509e-02 + sys_corr_122: 1.84149366e-01 + sys_corr_123: -8.81989110e-02 sys_corr_124: 2.57047262e-01 - sys_corr_125: 1.10337565e-01 - sys_corr_126: 6.85246596e-02 + sys_corr_125: -1.10337565e-01 + sys_corr_126: -6.85246596e-02 sys_corr_127: 7.14693797e-02 sys_corr_128: -9.47654839e+01 - sys_corr_129: 3.73233929e-03 - sys_corr_130: -2.85435887e-01 + sys_corr_129: -3.73233929e-03 + sys_corr_130: 2.85435887e-01 sys_corr_131: -4.96938043e-02 - sys_corr_132: -8.08890927e-02 + sys_corr_132: 8.08890927e-02 stat: 0.0 luminosity: 1.34621960e+01 - sys_corr_1: 3.17854823e+03 @@ -10193,9 +10193,9 @@ bins: sys_corr_7: -9.29374337e+02 sys_corr_8: -4.13345457e+02 sys_corr_9: -1.14163706e+03 - sys_corr_10: 2.47589997e+02 + sys_corr_10: -2.47589997e+02 sys_corr_11: -2.17720845e+02 - sys_corr_12: -3.16728881e+02 + sys_corr_12: 3.16728881e+02 sys_corr_13: -2.73961495e+02 sys_corr_14: -1.64177102e+02 sys_corr_15: -3.80745222e+02 @@ -10221,60 +10221,60 @@ bins: sys_corr_35: 2.91131579e-01 sys_corr_36: -7.72108488e-02 sys_corr_37: -1.26097722e+00 - sys_corr_38: -8.13772025e-01 - sys_corr_39: -2.96535971e-01 - sys_corr_40: 1.15865628e+00 - sys_corr_41: -1.23772941e+00 - sys_corr_42: 6.58260749e-02 - sys_corr_43: -9.23998817e-01 + sys_corr_38: 8.13772025e-01 + sys_corr_39: 2.96535971e-01 + sys_corr_40: -1.15865628e+00 + sys_corr_41: 1.23772941e+00 + sys_corr_42: -6.58260749e-02 + sys_corr_43: 9.23998817e-01 sys_corr_44: -1.56403265e+00 - sys_corr_45: -4.97994037e-01 - sys_corr_46: -9.64777182e-01 + sys_corr_45: 4.97994037e-01 + sys_corr_46: 9.64777182e-01 sys_corr_47: 5.04843113e-02 - sys_corr_48: -1.13660351e+00 - sys_corr_49: 2.04733648e-04 + sys_corr_48: 1.13660351e+00 + sys_corr_49: 2.04733649e-04 sys_corr_50: -7.22315969e-01 sys_corr_51: 1.41613190e-01 - sys_corr_52: -4.81785837e-01 - sys_corr_53: 1.43606884e-02 + sys_corr_52: 4.81785837e-01 + sys_corr_53: -1.43606884e-02 sys_corr_54: -4.83834690e-01 - sys_corr_55: 3.24774201e-01 + sys_corr_55: -3.24774201e-01 sys_corr_56: 8.09386661e-01 - sys_corr_57: -4.99718830e-01 + sys_corr_57: 4.99718830e-01 sys_corr_58: -3.13637337e-01 - sys_corr_59: -5.66471281e-02 + sys_corr_59: 5.66471281e-02 sys_corr_60: -3.94779731e-01 sys_corr_61: -5.43456460e-01 sys_corr_62: -3.63129998e-01 - sys_corr_63: 2.16115302e-01 - sys_corr_64: 2.33760259e-01 + sys_corr_63: -2.16115302e-01 + sys_corr_64: -2.33760259e-01 sys_corr_65: -2.91218225e-01 sys_corr_66: -4.69509570e-01 sys_corr_67: 3.97276384e-01 sys_corr_68: 3.94197513e-01 sys_corr_69: -3.80278235e-01 sys_corr_70: 4.87083575e-02 - sys_corr_71: 1.41997289e-01 - sys_corr_72: 9.55714552e-02 - sys_corr_73: -2.24715588e-01 + sys_corr_71: -2.24715588e-01 + sys_corr_72: -9.55714552e-02 + sys_corr_73: 1.41997289e-01 sys_corr_74: 9.88920874e-02 sys_corr_75: -9.30610977e-03 sys_corr_76: -2.31598930e-01 - sys_corr_77: 7.10082780e-01 - sys_corr_78: 1.82939102e-01 - sys_corr_79: 2.55150872e-01 - sys_corr_80: -9.98663184e-02 + sys_corr_77: -7.10082780e-01 + sys_corr_78: 2.55150872e-01 + sys_corr_79: 9.98663184e-02 + sys_corr_80: -1.82939102e-01 sys_corr_81: -2.28049677e-01 sys_corr_82: 1.15446947e+00 sys_corr_83: -1.18437405e-01 - sys_corr_84: -5.38990422e-01 + sys_corr_84: 5.38990422e-01 sys_corr_85: -1.87910088e-01 sys_corr_86: -6.57162524e-02 sys_corr_87: 7.85183196e-01 sys_corr_88: 1.58534313e-02 sys_corr_89: 2.34832500e-02 sys_corr_90: -1.68891286e-01 - sys_corr_91: -8.67891811e-02 + sys_corr_91: 8.67891811e-02 sys_corr_92: 7.29350378e-02 sys_corr_93: 4.22898921e-01 sys_corr_94: 4.52153707e-02 @@ -10282,40 +10282,40 @@ bins: sys_corr_96: 1.21052869e+00 sys_corr_97: 5.55043812e-01 sys_corr_98: -1.72410020e-01 - sys_corr_99: -3.08857895e-01 - sys_corr_100: -7.40186993e-02 + sys_corr_99: 3.08857895e-01 + sys_corr_100: 7.40186993e-02 sys_corr_101: -2.42604905e-01 - sys_corr_102: -2.45725138e-01 - sys_corr_103: 2.26139140e-01 - sys_corr_104: -6.13207900e-02 - sys_corr_105: -5.18717865e-02 - sys_corr_106: -3.00838167e-02 - sys_corr_107: -1.76163596e-02 + sys_corr_102: 2.45725138e-01 + sys_corr_103: -2.26139140e-01 + sys_corr_104: 6.13207900e-02 + sys_corr_105: 5.18717865e-02 + sys_corr_106: 3.00838167e-02 + sys_corr_107: 1.76163596e-02 sys_corr_108: -6.19104781e-03 sys_corr_109: 2.15315818e-02 sys_corr_110: 4.77714221e-04 - sys_corr_111: 1.61749890e-01 + sys_corr_111: -1.61749890e-01 sys_corr_112: -7.85689656e-03 sys_corr_113: 5.81699448e-02 sys_corr_114: -1.92369377e-05 - sys_corr_115: -3.32831558e-02 + sys_corr_115: 3.32831558e-02 sys_corr_116: 7.48336969e-03 sys_corr_117: -5.59861660e-03 sys_corr_118: 2.97175286e-02 sys_corr_119: -1.42653640e-04 sys_corr_120: -1.20148105e-03 - sys_corr_121: 8.86405921e-04 - sys_corr_122: 4.34802605e-03 - sys_corr_123: -8.98506363e-03 + sys_corr_121: -8.86405921e-04 + sys_corr_122: -8.98506363e-03 + sys_corr_123: 4.34802605e-03 sys_corr_124: -2.13633772e-02 - sys_corr_125: -1.05260660e-02 - sys_corr_126: 2.88564986e-04 + sys_corr_125: 1.05260660e-02 + sys_corr_126: -2.88564986e-04 sys_corr_127: -2.23872744e-01 sys_corr_128: -3.57201882e-02 - sys_corr_129: 3.02176977e-02 - sys_corr_130: 2.07835513e-03 + sys_corr_129: -3.02176977e-02 + sys_corr_130: -2.07835513e-03 sys_corr_131: 1.42051164e-03 - sys_corr_132: 1.74385147e-02 + sys_corr_132: -1.74385147e-02 stat: 0.0 luminosity: 6.97900185e+03 - sys_corr_1: 3.22639860e+03 @@ -10327,9 +10327,9 @@ bins: sys_corr_7: -8.10392816e+02 sys_corr_8: 5.08537439e+02 sys_corr_9: 5.94784118e+01 - sys_corr_10: 1.92027369e+02 + sys_corr_10: -1.92027369e+02 sys_corr_11: 8.42558643e+01 - sys_corr_12: 2.22378875e+02 + sys_corr_12: -2.22378875e+02 sys_corr_13: 4.00322630e+02 sys_corr_14: 3.24709473e+02 sys_corr_15: 7.20565387e+02 @@ -10355,60 +10355,60 @@ bins: sys_corr_35: -4.41038844e-01 sys_corr_36: -7.42043417e-01 sys_corr_37: -9.59786095e-01 - sys_corr_38: -1.04000570e+00 - sys_corr_39: -2.26290803e-01 - sys_corr_40: 8.83830464e-01 - sys_corr_41: -1.49195084e+00 - sys_corr_42: 1.37018600e+00 - sys_corr_43: -7.40818173e-01 + sys_corr_38: 1.04000570e+00 + sys_corr_39: 2.26290803e-01 + sys_corr_40: -8.83830464e-01 + sys_corr_41: 1.49195084e+00 + sys_corr_42: -1.37018600e+00 + sys_corr_43: 7.40818173e-01 sys_corr_44: -9.81060097e-01 - sys_corr_45: 1.22919609e+00 - sys_corr_46: -2.69931352e-02 + sys_corr_45: -1.22919609e+00 + sys_corr_46: 2.69931352e-02 sys_corr_47: 5.44536315e-02 - sys_corr_48: -3.67424889e-01 + sys_corr_48: 3.67424889e-01 sys_corr_49: 2.16652338e-01 sys_corr_50: -4.61776160e-01 sys_corr_51: 4.45297195e-01 - sys_corr_52: -5.77128724e-01 - sys_corr_53: 3.34886723e-01 + sys_corr_52: 5.77128724e-01 + sys_corr_53: -3.34886723e-01 sys_corr_54: 2.01942354e-01 - sys_corr_55: 3.83717421e-01 + sys_corr_55: -3.83717421e-01 sys_corr_56: -1.77529085e-01 - sys_corr_57: 4.46247275e-02 + sys_corr_57: -4.46247275e-02 sys_corr_58: 2.46217208e-01 - sys_corr_59: -2.09862960e-02 + sys_corr_59: 2.09862960e-02 sys_corr_60: -2.93089221e-01 sys_corr_61: 1.85986447e-01 sys_corr_62: -4.57988505e-01 - sys_corr_63: 4.12454294e-02 - sys_corr_64: 2.39275601e-01 + sys_corr_63: -4.12454294e-02 + sys_corr_64: -2.39275601e-01 sys_corr_65: -9.26445254e-02 sys_corr_66: -4.79206497e-01 sys_corr_67: 5.76438076e-02 sys_corr_68: 4.05757654e-02 sys_corr_69: 3.51084584e-01 sys_corr_70: 6.44631761e-02 - sys_corr_71: -2.73286345e-02 - sys_corr_72: -8.75838957e-02 - sys_corr_73: 5.43671034e-01 + sys_corr_71: 5.43671034e-01 + sys_corr_72: 8.75838957e-02 + sys_corr_73: -2.73286345e-02 sys_corr_74: -1.78550056e-02 sys_corr_75: 1.32246594e-01 sys_corr_76: -1.62202087e-01 - sys_corr_77: 4.89557437e-01 - sys_corr_78: 3.04768111e-03 - sys_corr_79: 1.79376127e-01 - sys_corr_80: -1.62414275e-01 + sys_corr_77: -4.89557437e-01 + sys_corr_78: 1.79376127e-01 + sys_corr_79: 1.62414275e-01 + sys_corr_80: -3.04768111e-03 sys_corr_81: -2.27281051e-02 sys_corr_82: -8.40793041e-01 sys_corr_83: 1.14526032e-01 - sys_corr_84: 6.29039852e-01 + sys_corr_84: -6.29039852e-01 sys_corr_85: -3.49818678e-01 sys_corr_86: 1.33626200e-01 sys_corr_87: 7.81274712e-01 sys_corr_88: -1.37981664e-01 sys_corr_89: -1.41562223e-01 sys_corr_90: 5.86591317e-01 - sys_corr_91: 1.00201593e-01 + sys_corr_91: -1.00201593e-01 sys_corr_92: 1.62382314e-01 sys_corr_93: -9.14818246e-01 sys_corr_94: 3.57612719e-01 @@ -10416,40 +10416,40 @@ bins: sys_corr_96: -1.02881979e+00 sys_corr_97: 9.47559232e-01 sys_corr_98: -1.32379409e-01 - sys_corr_99: 3.58889627e-01 - sys_corr_100: -7.14394015e-02 + sys_corr_99: -3.58889627e-01 + sys_corr_100: 7.14394015e-02 sys_corr_101: 7.72705386e-02 - sys_corr_102: -1.13981738e-01 - sys_corr_103: 1.94277789e-02 - sys_corr_104: -2.52030100e-02 - sys_corr_105: 9.15763425e-02 - sys_corr_106: 6.99994876e-02 - sys_corr_107: 1.03875589e-03 + sys_corr_102: 1.13981738e-01 + sys_corr_103: -1.94277789e-02 + sys_corr_104: 2.52030100e-02 + sys_corr_105: -9.15763425e-02 + sys_corr_106: -6.99994876e-02 + sys_corr_107: -1.03875589e-03 sys_corr_108: -6.62724264e-03 sys_corr_109: -2.18690075e-03 sys_corr_110: -1.65736687e-02 - sys_corr_111: 8.69073217e-02 + sys_corr_111: -8.69073217e-02 sys_corr_112: 2.20355159e-02 sys_corr_113: 4.17542251e-02 sys_corr_114: -7.15913227e-05 - sys_corr_115: -1.28205093e-02 + sys_corr_115: 1.28205093e-02 sys_corr_116: 2.09044825e-03 sys_corr_117: 9.40609410e-04 sys_corr_118: 1.75992735e-02 sys_corr_119: -7.92683986e-04 sys_corr_120: 4.91567633e-03 - sys_corr_121: 1.73320898e-03 - sys_corr_122: 3.92689897e-03 - sys_corr_123: -4.80282749e-03 + sys_corr_121: -1.73320898e-03 + sys_corr_122: -4.80282749e-03 + sys_corr_123: 3.92689897e-03 sys_corr_124: -1.09145713e-02 - sys_corr_125: -2.09880723e-03 - sys_corr_126: 3.60660297e-04 + sys_corr_125: 2.09880723e-03 + sys_corr_126: -3.60660297e-04 sys_corr_127: 3.17685777e-02 sys_corr_128: -1.85676639e-02 - sys_corr_129: 3.51491765e-02 - sys_corr_130: 1.16018722e-03 + sys_corr_129: -3.51491765e-02 + sys_corr_130: -1.16018722e-03 sys_corr_131: 4.74287429e-03 - sys_corr_132: 1.06676823e-02 + sys_corr_132: -1.06676823e-02 stat: 0.0 luminosity: 6.93522779e+03 - sys_corr_1: 3.39062509e+03 @@ -10461,9 +10461,9 @@ bins: sys_corr_7: 7.03409544e+02 sys_corr_8: -8.65638213e+02 sys_corr_9: 4.68497580e+02 - sys_corr_10: -1.30581352e+03 + sys_corr_10: 1.30581352e+03 sys_corr_11: 2.11249847e+02 - sys_corr_12: 3.95218462e+02 + sys_corr_12: -3.95218462e+02 sys_corr_13: 4.84978103e+02 sys_corr_14: -2.03433833e+01 sys_corr_15: -1.18756899e+02 @@ -10489,60 +10489,60 @@ bins: sys_corr_35: 3.57243617e-01 sys_corr_36: -4.42852117e-01 sys_corr_37: -1.72960901e+00 - sys_corr_38: -7.93426567e-01 - sys_corr_39: -1.90049438e-01 - sys_corr_40: 1.03897039e+00 - sys_corr_41: -5.60138406e-01 - sys_corr_42: 1.04962973e+00 - sys_corr_43: -1.21743053e+00 + sys_corr_38: 7.93426567e-01 + sys_corr_39: 1.90049438e-01 + sys_corr_40: -1.03897039e+00 + sys_corr_41: 5.60138406e-01 + sys_corr_42: -1.04962973e+00 + sys_corr_43: 1.21743053e+00 sys_corr_44: -1.11638477e+00 - sys_corr_45: -6.52486910e-02 - sys_corr_46: -4.20042790e-01 + sys_corr_45: 6.52486910e-02 + sys_corr_46: 4.20042790e-01 sys_corr_47: -5.99520017e-02 - sys_corr_48: -7.43002577e-01 + sys_corr_48: 7.43002577e-01 sys_corr_49: -6.83632816e-01 sys_corr_50: -2.50167952e-01 sys_corr_51: 3.69380886e-01 - sys_corr_52: -8.15904325e-01 - sys_corr_53: -3.80517349e-02 + sys_corr_52: 8.15904325e-01 + sys_corr_53: 3.80517349e-02 sys_corr_54: -2.35875651e-02 - sys_corr_55: 6.42923626e-02 + sys_corr_55: -6.42923626e-02 sys_corr_56: -3.75038459e-01 - sys_corr_57: 3.85571310e-01 + sys_corr_57: -3.85571310e-01 sys_corr_58: 7.38589460e-01 - sys_corr_59: 1.09348256e-01 + sys_corr_59: -1.09348256e-01 sys_corr_60: -4.86124964e-01 sys_corr_61: -2.78000690e-01 sys_corr_62: -3.08458968e-01 - sys_corr_63: 3.50889967e-01 - sys_corr_64: 1.65460432e-01 + sys_corr_63: -3.50889967e-01 + sys_corr_64: -1.65460432e-01 sys_corr_65: -4.11751435e-01 sys_corr_66: -2.87087133e-01 sys_corr_67: 7.22095210e-02 sys_corr_68: -2.56782892e-01 sys_corr_69: -5.18818647e-01 sys_corr_70: -3.25076016e-01 - sys_corr_71: 3.88403343e-01 - sys_corr_72: -1.45974232e-01 - sys_corr_73: -6.01683107e-02 + sys_corr_71: -6.01683107e-02 + sys_corr_72: 1.45974232e-01 + sys_corr_73: 3.88403343e-01 sys_corr_74: -1.99000118e-01 sys_corr_75: 2.66617176e-01 sys_corr_76: 1.48493050e-01 - sys_corr_77: 2.25252519e-01 - sys_corr_78: 1.53766819e-01 - sys_corr_79: 1.03948120e-01 - sys_corr_80: -2.37031322e-01 + sys_corr_77: -2.25252519e-01 + sys_corr_78: 1.03948120e-01 + sys_corr_79: 2.37031322e-01 + sys_corr_80: -1.53766819e-01 sys_corr_81: 5.02916545e-02 sys_corr_82: -8.70215530e-02 sys_corr_83: 9.22282792e-02 - sys_corr_84: 2.18942486e-01 + sys_corr_84: -2.18942486e-01 sys_corr_85: -3.51348850e-01 sys_corr_86: 1.13914746e-01 sys_corr_87: 9.32996969e-02 sys_corr_88: -1.47129576e-02 sys_corr_89: -1.05791015e-02 sys_corr_90: 4.03738913e-01 - sys_corr_91: 1.65448054e-01 + sys_corr_91: -1.65448054e-01 sys_corr_92: 2.59664478e-01 sys_corr_93: 1.09509857e+00 sys_corr_94: 2.18533575e-03 @@ -10550,40 +10550,40 @@ bins: sys_corr_96: -4.46416828e-01 sys_corr_97: 2.48964776e-01 sys_corr_98: 2.92754431e-01 - sys_corr_99: -4.00904072e-01 - sys_corr_100: -2.95624902e-02 + sys_corr_99: 4.00904072e-01 + sys_corr_100: 2.95624902e-02 sys_corr_101: -7.83604025e-02 - sys_corr_102: -5.46875251e-02 - sys_corr_103: -1.18139491e-01 - sys_corr_104: 2.01470336e-02 - sys_corr_105: 6.51749688e-02 - sys_corr_106: -4.36932428e-02 - sys_corr_107: -5.96214188e-02 + sys_corr_102: 5.46875251e-02 + sys_corr_103: 1.18139491e-01 + sys_corr_104: -2.01470336e-02 + sys_corr_105: -6.51749688e-02 + sys_corr_106: 4.36932428e-02 + sys_corr_107: 5.96214188e-02 sys_corr_108: -3.07298678e-02 sys_corr_109: 1.31800487e-04 sys_corr_110: -2.70076448e-02 - sys_corr_111: 4.76590985e-01 + sys_corr_111: -4.76590985e-01 sys_corr_112: 4.66847469e-03 sys_corr_113: 3.65280155e-02 sys_corr_114: 1.09734336e-04 - sys_corr_115: -1.95468190e-03 + sys_corr_115: 1.95468190e-03 sys_corr_116: 4.35632097e-03 sys_corr_117: -9.17161630e-05 sys_corr_118: 1.72287016e-02 sys_corr_119: 1.23730531e-03 sys_corr_120: 1.55860140e-03 - sys_corr_121: 5.46915334e-04 - sys_corr_122: 4.64696597e-04 - sys_corr_123: 2.19218543e-04 + sys_corr_121: -5.46915334e-04 + sys_corr_122: 2.19218543e-04 + sys_corr_123: 4.64696597e-04 sys_corr_124: -8.17498169e-03 - sys_corr_125: -3.31778458e-03 - sys_corr_126: -6.48484227e-04 + sys_corr_125: 3.31778458e-03 + sys_corr_126: 6.48484227e-04 sys_corr_127: 3.77905453e-02 sys_corr_128: -1.73695591e-02 - sys_corr_129: 1.00855812e-02 - sys_corr_130: 5.11531150e-04 + sys_corr_129: -1.00855812e-02 + sys_corr_130: -5.11531150e-04 sys_corr_131: 2.17885715e-03 - sys_corr_132: 1.24491741e-03 + sys_corr_132: -1.24491741e-03 stat: 0.0 luminosity: 6.94862762e+03 - sys_corr_1: 3.67162480e+03 @@ -10595,9 +10595,9 @@ bins: sys_corr_7: 1.25471027e+02 sys_corr_8: 1.07090176e+03 sys_corr_9: 1.23943388e+03 - sys_corr_10: 5.17650243e+02 + sys_corr_10: -5.17650243e+02 sys_corr_11: 2.29938411e+02 - sys_corr_12: -3.09651875e+02 + sys_corr_12: 3.09651875e+02 sys_corr_13: -1.69397696e+02 sys_corr_14: -3.28186824e+02 sys_corr_15: -5.44896412e+02 @@ -10623,60 +10623,60 @@ bins: sys_corr_35: 8.19131488e-02 sys_corr_36: -1.00832555e+00 sys_corr_37: -1.01405379e+00 - sys_corr_38: -2.26704784e-01 - sys_corr_39: -1.45270265e-01 - sys_corr_40: 3.22165400e-01 - sys_corr_41: 7.25560974e-01 - sys_corr_42: 3.19276074e-01 - sys_corr_43: -8.93748481e-01 + sys_corr_38: 2.26704784e-01 + sys_corr_39: 1.45270265e-01 + sys_corr_40: -3.22165400e-01 + sys_corr_41: -7.25560974e-01 + sys_corr_42: -3.19276074e-01 + sys_corr_43: 8.93748481e-01 sys_corr_44: -4.03304909e-01 - sys_corr_45: -2.67599269e-01 - sys_corr_46: 7.95792894e-01 + sys_corr_45: 2.67599269e-01 + sys_corr_46: -7.95792894e-01 sys_corr_47: -1.01696615e-01 - sys_corr_48: -4.66587145e-01 + sys_corr_48: 4.66587145e-01 sys_corr_49: 9.18093104e-01 sys_corr_50: -5.26899191e-02 sys_corr_51: 5.27411226e-01 - sys_corr_52: -2.86600611e-01 - sys_corr_53: -8.33076540e-02 + sys_corr_52: 2.86600611e-01 + sys_corr_53: 8.33076540e-02 sys_corr_54: 1.30876129e-01 - sys_corr_55: -1.33577747e-01 + sys_corr_55: 1.33577747e-01 sys_corr_56: -1.79462863e-01 - sys_corr_57: 4.03872659e-01 + sys_corr_57: -4.03872659e-01 sys_corr_58: -2.02130003e-01 - sys_corr_59: -2.72859969e-01 + sys_corr_59: 2.72859969e-01 sys_corr_60: 8.58474008e-01 sys_corr_61: 4.63723479e-01 sys_corr_62: 4.53910261e-01 - sys_corr_63: -3.30500905e-01 - sys_corr_64: -3.84047584e-01 + sys_corr_63: 3.30500905e-01 + sys_corr_64: 3.84047584e-01 sys_corr_65: 5.49853297e-01 sys_corr_66: 6.55182294e-02 sys_corr_67: -6.79774612e-02 sys_corr_68: -2.14827320e-01 sys_corr_69: -1.36713571e-01 sys_corr_70: -4.17389050e-01 - sys_corr_71: -3.31714339e-02 - sys_corr_72: -2.18081645e-01 - sys_corr_73: -1.72728097e-01 + sys_corr_71: -1.72728097e-01 + sys_corr_72: 2.18081645e-01 + sys_corr_73: -3.31714339e-02 sys_corr_74: 1.41164113e-01 sys_corr_75: 3.01626120e-02 sys_corr_76: 1.37113982e-01 - sys_corr_77: -6.03049092e-02 - sys_corr_78: -1.81122300e-01 - sys_corr_79: -3.59114412e-01 - sys_corr_80: -2.62023735e-01 + sys_corr_77: 6.03049092e-02 + sys_corr_78: -3.59114412e-01 + sys_corr_79: 2.62023735e-01 + sys_corr_80: 1.81122300e-01 sys_corr_81: 4.64949724e-02 sys_corr_82: 2.71772923e-02 sys_corr_83: 5.30347060e-02 - sys_corr_84: 2.52695318e-01 + sys_corr_84: -2.52695318e-01 sys_corr_85: -1.18694519e-01 sys_corr_86: -1.85637997e-01 sys_corr_87: -5.57743233e-01 sys_corr_88: 3.23922544e-01 sys_corr_89: -2.30242386e-02 sys_corr_90: 5.01714130e-01 - sys_corr_91: 3.41360765e-01 + sys_corr_91: -3.41360765e-01 sys_corr_92: -2.17571396e-02 sys_corr_93: -2.33027112e-01 sys_corr_94: 1.54522590e-01 @@ -10684,40 +10684,40 @@ bins: sys_corr_96: 5.46283267e-01 sys_corr_97: -3.75647771e-01 sys_corr_98: 8.94152387e-01 - sys_corr_99: -4.02082639e-01 - sys_corr_100: 3.79589159e-02 + sys_corr_99: 4.02082639e-01 + sys_corr_100: -3.79589159e-02 sys_corr_101: -5.74833223e-02 - sys_corr_102: 4.36358259e-02 - sys_corr_103: -8.08840256e-02 - sys_corr_104: 6.56815887e-02 - sys_corr_105: 2.51808705e-02 - sys_corr_106: -5.84941635e-02 - sys_corr_107: -1.26518552e-01 + sys_corr_102: -4.36358259e-02 + sys_corr_103: 8.08840256e-02 + sys_corr_104: -6.56815887e-02 + sys_corr_105: -2.51808705e-02 + sys_corr_106: 5.84941635e-02 + sys_corr_107: 1.26518552e-01 sys_corr_108: 1.34328848e-02 sys_corr_109: -1.65988187e-02 sys_corr_110: -5.23883693e-02 - sys_corr_111: 1.78222575e-01 + sys_corr_111: -1.78222575e-01 sys_corr_112: -1.21550845e-02 sys_corr_113: 1.82789906e-02 sys_corr_114: 5.13637875e-05 - sys_corr_115: 1.12880634e-02 + sys_corr_115: -1.12880634e-02 sys_corr_116: -1.55632268e-03 sys_corr_117: 5.32334226e-03 sys_corr_118: -2.66079340e-02 sys_corr_119: 1.14430198e-03 sys_corr_120: 1.61304968e-03 - sys_corr_121: -1.35780219e-03 - sys_corr_122: -6.36999437e-03 - sys_corr_123: 7.70890061e-03 + sys_corr_121: 1.35780219e-03 + sys_corr_122: 7.70890061e-03 + sys_corr_123: -6.36999437e-03 sys_corr_124: 4.25245961e-03 - sys_corr_125: 3.32660393e-03 - sys_corr_126: -2.15871179e-03 + sys_corr_125: -3.32660393e-03 + sys_corr_126: 2.15871179e-03 sys_corr_127: 2.70250671e-01 sys_corr_128: 1.73181330e-02 - sys_corr_129: 7.52098559e-03 - sys_corr_130: -3.39745385e-04 + sys_corr_129: -7.52098559e-03 + sys_corr_130: 3.39745385e-04 sys_corr_131: -2.35918516e-04 - sys_corr_132: 5.97381260e-03 + sys_corr_132: -5.97381260e-03 stat: 0.0 luminosity: 6.88065378e+03 - sys_corr_1: 3.99725136e+03 @@ -10729,9 +10729,9 @@ bins: sys_corr_7: 1.12553948e+03 sys_corr_8: -4.82735073e+02 sys_corr_9: -8.28402150e+01 - sys_corr_10: 4.30542885e+02 + sys_corr_10: -4.30542885e+02 sys_corr_11: -3.04298777e+02 - sys_corr_12: -3.55389121e+02 + sys_corr_12: 3.55389121e+02 sys_corr_13: -8.78397204e+02 sys_corr_14: 1.39839238e+02 sys_corr_15: 8.73754827e+02 @@ -10757,60 +10757,60 @@ bins: sys_corr_35: -4.49311876e-01 sys_corr_36: -4.19130212e-01 sys_corr_37: 1.55379503e+00 - sys_corr_38: 2.51735525e-01 - sys_corr_39: 8.36879371e-01 - sys_corr_40: -2.96840550e-01 - sys_corr_41: 7.84557402e-01 - sys_corr_42: 2.71849358e-01 - sys_corr_43: -3.70852685e-01 + sys_corr_38: -2.51735525e-01 + sys_corr_39: -8.36879371e-01 + sys_corr_40: 2.96840550e-01 + sys_corr_41: -7.84557402e-01 + sys_corr_42: -2.71849358e-01 + sys_corr_43: 3.70852685e-01 sys_corr_44: 2.90299956e-01 - sys_corr_45: -2.46845500e-01 - sys_corr_46: 9.26260353e-01 + sys_corr_45: 2.46845500e-01 + sys_corr_46: -9.26260353e-01 sys_corr_47: 1.19885766e+00 - sys_corr_48: 1.10050347e+00 + sys_corr_48: -1.10050347e+00 sys_corr_49: 9.56013880e-01 sys_corr_50: 5.48674440e-01 sys_corr_51: 6.84473242e-01 - sys_corr_52: -9.28614202e-02 - sys_corr_53: -4.19923356e-01 + sys_corr_52: 9.28614202e-02 + sys_corr_53: 4.19923356e-01 sys_corr_54: 2.11877339e-01 - sys_corr_55: -4.57627270e-01 + sys_corr_55: 4.57627270e-01 sys_corr_56: -2.91027113e-01 - sys_corr_57: 3.41912545e-01 + sys_corr_57: -3.41912545e-01 sys_corr_58: -4.80415435e-02 - sys_corr_59: 3.20275669e-01 + sys_corr_59: -3.20275669e-01 sys_corr_60: 2.70570624e-02 sys_corr_61: 8.00475899e-01 sys_corr_62: 5.17767412e-01 - sys_corr_63: -5.48277921e-01 - sys_corr_64: -7.10453694e-02 + sys_corr_63: 5.48277921e-01 + sys_corr_64: 7.10453694e-02 sys_corr_65: 2.07806762e-01 sys_corr_66: 6.13614796e-01 sys_corr_67: -7.34605741e-01 sys_corr_68: -1.37074068e-01 sys_corr_69: 5.75970815e-01 sys_corr_70: -1.89405689e-01 - sys_corr_71: -2.21828042e-01 - sys_corr_72: 1.58501723e-02 - sys_corr_73: 1.60047089e-01 + sys_corr_71: 1.60047089e-01 + sys_corr_72: -1.58501723e-02 + sys_corr_73: -2.21828042e-01 sys_corr_74: 5.89283238e-01 sys_corr_75: -6.53433487e-01 sys_corr_76: 3.30019348e-01 - sys_corr_77: -1.31421404e-01 - sys_corr_78: -4.10440083e-01 - sys_corr_79: -7.61681194e-03 - sys_corr_80: -1.06116754e-01 + sys_corr_77: 1.31421404e-01 + sys_corr_78: -7.61681194e-03 + sys_corr_79: 1.06116754e-01 + sys_corr_80: 4.10440083e-01 sys_corr_81: -3.43428487e-01 sys_corr_82: -4.85755687e-01 sys_corr_83: 7.78293290e-03 - sys_corr_84: 9.57620056e-01 + sys_corr_84: -9.57620056e-01 sys_corr_85: 1.75331685e-02 sys_corr_86: 1.72055235e-01 sys_corr_87: -7.27527778e-01 sys_corr_88: 7.09402554e-02 sys_corr_89: -1.58417129e-01 sys_corr_90: 5.53606760e-01 - sys_corr_91: 1.22831695e-01 + sys_corr_91: -1.22831695e-01 sys_corr_92: -3.22072417e-01 sys_corr_93: -5.36871682e-02 sys_corr_94: -7.41484470e-02 @@ -10818,40 +10818,40 @@ bins: sys_corr_96: -1.75811990e-01 sys_corr_97: -1.24311712e-01 sys_corr_98: -6.83627742e-01 - sys_corr_99: -1.61022553e-02 - sys_corr_100: 1.13545604e-01 + sys_corr_99: 1.61022553e-02 + sys_corr_100: -1.13545604e-01 sys_corr_101: 1.02201456e-01 - sys_corr_102: 1.85577091e-01 - sys_corr_103: 8.96712478e-02 - sys_corr_104: -8.22414824e-02 - sys_corr_105: -2.64762394e-01 - sys_corr_106: -3.90965489e-02 - sys_corr_107: -1.74207914e-02 + sys_corr_102: -1.85577091e-01 + sys_corr_103: -8.96712478e-02 + sys_corr_104: 8.22414824e-02 + sys_corr_105: 2.64762394e-01 + sys_corr_106: 3.90965489e-02 + sys_corr_107: 1.74207914e-02 sys_corr_108: 4.51094038e-03 sys_corr_109: 3.49921131e-02 sys_corr_110: -2.90811692e-02 - sys_corr_111: -7.16810185e-01 + sys_corr_111: 7.16810185e-01 sys_corr_112: 8.77003130e-03 sys_corr_113: -6.40855327e-02 sys_corr_114: -1.08224530e-05 - sys_corr_115: 3.27218239e-02 + sys_corr_115: -3.27218239e-02 sys_corr_116: -1.50218949e-03 sys_corr_117: 4.17672391e-04 sys_corr_118: -3.36627421e-02 sys_corr_119: 4.96213234e-04 sys_corr_120: -4.96167571e-04 - sys_corr_121: -6.84599953e-04 - sys_corr_122: -2.49195050e-03 - sys_corr_123: 2.43306617e-03 + sys_corr_121: 6.84599953e-04 + sys_corr_122: 2.43306617e-03 + sys_corr_123: -2.49195050e-03 sys_corr_124: 2.91800715e-03 - sys_corr_125: 3.64906069e-03 - sys_corr_126: 8.45699311e-04 + sys_corr_125: -3.64906069e-03 + sys_corr_126: -8.45699311e-04 sys_corr_127: 8.47417590e-01 sys_corr_128: -1.54654600e-03 - sys_corr_129: -2.61104930e-02 - sys_corr_130: -1.75446592e-03 + sys_corr_129: 2.61104930e-02 + sys_corr_130: 1.75446592e-03 sys_corr_131: -1.33609732e-03 - sys_corr_132: -2.24677632e-02 + sys_corr_132: 2.24677632e-02 stat: 0.0 luminosity: 6.87730965e+03 - sys_corr_1: 4.23827158e+03 @@ -10863,9 +10863,9 @@ bins: sys_corr_7: 4.91633006e+02 sys_corr_8: -2.18042228e+02 sys_corr_9: -5.86830315e+02 - sys_corr_10: 3.52712682e+02 + sys_corr_10: -3.52712682e+02 sys_corr_11: -3.88860076e+01 - sys_corr_12: 1.54391600e+02 + sys_corr_12: -1.54391600e+02 sys_corr_13: 2.48156532e+02 sys_corr_14: -1.03628862e+02 sys_corr_15: -9.76854674e+02 @@ -10891,60 +10891,60 @@ bins: sys_corr_35: 1.27761443e+00 sys_corr_36: 5.41811087e-01 sys_corr_37: 4.93727704e-01 - sys_corr_38: 1.84939356e+00 - sys_corr_39: 8.70226071e-01 - sys_corr_40: -1.89039967e+00 - sys_corr_41: 5.95243159e-01 - sys_corr_42: -1.70090035e+00 - sys_corr_43: 4.51627761e+00 + sys_corr_38: -1.84939356e+00 + sys_corr_39: -8.70226071e-01 + sys_corr_40: 1.89039967e+00 + sys_corr_41: -5.95243159e-01 + sys_corr_42: 1.70090035e+00 + sys_corr_43: -4.51627761e+00 sys_corr_44: 5.32157980e+00 - sys_corr_45: 1.48999244e+00 - sys_corr_46: 5.75431992e-01 + sys_corr_45: -1.48999244e+00 + sys_corr_46: -5.75431992e-01 sys_corr_47: -2.32140298e+00 - sys_corr_48: 3.68080411e+00 + sys_corr_48: -3.68080411e+00 sys_corr_49: 3.41833834e-01 sys_corr_50: 2.58167613e-01 sys_corr_51: -1.78107229e-01 - sys_corr_52: 1.64047463e+00 - sys_corr_53: 1.24466591e+00 + sys_corr_52: -1.64047463e+00 + sys_corr_53: -1.24466591e+00 sys_corr_54: 2.94709976e-01 - sys_corr_55: -8.89304307e-01 + sys_corr_55: 8.89304307e-01 sys_corr_56: -3.85010367e-01 - sys_corr_57: 7.26604120e-01 + sys_corr_57: -7.26604120e-01 sys_corr_58: -6.33215959e-01 - sys_corr_59: 2.37673035e-02 + sys_corr_59: -2.37673035e-02 sys_corr_60: 2.13793910e-01 sys_corr_61: 4.43510622e-01 sys_corr_62: 4.24939836e-01 - sys_corr_63: -4.58031894e-01 - sys_corr_64: -1.88176113e-01 + sys_corr_63: 4.58031894e-01 + sys_corr_64: 1.88176113e-01 sys_corr_65: -3.19051593e-02 sys_corr_66: 6.00372150e-01 sys_corr_67: -4.69669584e-01 sys_corr_68: 3.29513402e-01 sys_corr_69: 5.63074672e-01 sys_corr_70: 4.19058445e-01 - sys_corr_71: -2.50604884e-01 - sys_corr_72: -3.32145623e-01 - sys_corr_73: 7.49165876e-01 + sys_corr_71: 7.49165876e-01 + sys_corr_72: 3.32145623e-01 + sys_corr_73: -2.50604884e-01 sys_corr_74: 2.62362664e-01 sys_corr_75: 8.88554035e-01 sys_corr_76: 2.77760360e-01 - sys_corr_77: -6.56821607e-01 - sys_corr_78: -6.16780665e-01 - sys_corr_79: -3.34450752e-01 - sys_corr_80: -1.13479467e-01 + sys_corr_77: 6.56821607e-01 + sys_corr_78: -3.34450752e-01 + sys_corr_79: 1.13479467e-01 + sys_corr_80: 6.16780665e-01 sys_corr_81: 3.61047130e-01 sys_corr_82: -1.30135090e-01 sys_corr_83: 9.41133711e-02 - sys_corr_84: 3.41244429e-01 + sys_corr_84: -3.41244429e-01 sys_corr_85: 7.87177689e-01 sys_corr_86: 5.23103011e-01 sys_corr_87: -1.65535017e+00 sys_corr_88: 8.13811309e-02 sys_corr_89: -3.68900633e-01 sys_corr_90: -2.29173633e-02 - sys_corr_91: -6.45194520e-02 + sys_corr_91: 6.45194520e-02 sys_corr_92: 7.62592849e-01 sys_corr_93: -1.87909420e-01 sys_corr_94: -5.42225649e-02 @@ -10952,40 +10952,40 @@ bins: sys_corr_96: -4.01333935e-02 sys_corr_97: -2.30836866e-01 sys_corr_98: 6.18239556e-01 - sys_corr_99: 1.36381087e+00 - sys_corr_100: 7.13181179e-02 + sys_corr_99: -1.36381087e+00 + sys_corr_100: -7.13181179e-02 sys_corr_101: 2.54540214e-01 - sys_corr_102: 2.13627426e-01 - sys_corr_103: 1.96447223e-01 - sys_corr_104: -5.84133318e-02 - sys_corr_105: -2.88385398e-01 - sys_corr_106: -3.21290962e-03 - sys_corr_107: 5.74223006e-02 + sys_corr_102: -2.13627426e-01 + sys_corr_103: -1.96447223e-01 + sys_corr_104: 5.84133318e-02 + sys_corr_105: 2.88385398e-01 + sys_corr_106: 3.21290962e-03 + sys_corr_107: -5.74223006e-02 sys_corr_108: -2.46959778e-02 sys_corr_109: 9.02362524e-03 sys_corr_110: 6.05182549e-02 - sys_corr_111: -3.20420228e-01 + sys_corr_111: 3.20420228e-01 sys_corr_112: 2.87877392e-02 sys_corr_113: -2.19380680e-02 sys_corr_114: -2.72490765e-04 - sys_corr_115: -9.09638371e-03 + sys_corr_115: 9.09638371e-03 sys_corr_116: 9.61128796e-04 sys_corr_117: -3.71735080e-03 sys_corr_118: -1.77851751e-02 sys_corr_119: -3.30592748e-04 sys_corr_120: -4.81498667e-03 - sys_corr_121: -7.72405589e-04 - sys_corr_122: -2.65074861e-03 - sys_corr_123: 5.69558936e-03 + sys_corr_121: 7.72405589e-04 + sys_corr_122: 5.69558936e-03 + sys_corr_123: -2.65074861e-03 sys_corr_124: -8.02139417e-03 - sys_corr_125: 7.16199145e-03 - sys_corr_126: 2.17857885e-03 + sys_corr_125: -7.16199145e-03 + sys_corr_126: -2.17857885e-03 sys_corr_127: -8.58475775e-01 sys_corr_128: -1.87978943e-02 - sys_corr_129: -1.38247514e-02 - sys_corr_130: -5.94605640e-03 + sys_corr_129: 1.38247514e-02 + sys_corr_130: 5.94605640e-03 sys_corr_131: -3.56955121e-03 - sys_corr_132: -1.94628279e-02 + sys_corr_132: 1.94628279e-02 stat: 0.0 luminosity: 6.81114843e+03 - sys_corr_1: 4.37096323e+03 @@ -10997,9 +10997,9 @@ bins: sys_corr_7: -2.90438405e+02 sys_corr_8: 6.39733231e+02 sys_corr_9: -2.92295451e+02 - sys_corr_10: -4.44401779e+01 + sys_corr_10: 4.44401779e+01 sys_corr_11: -2.52847200e+02 - sys_corr_12: 8.75118855e+02 + sys_corr_12: -8.75118855e+02 sys_corr_13: 4.43102775e+02 sys_corr_14: 4.61951072e+02 sys_corr_15: 2.98314008e+02 @@ -11025,60 +11025,60 @@ bins: sys_corr_35: 2.82044693e+00 sys_corr_36: 2.26099989e+00 sys_corr_37: 2.44699676e+00 - sys_corr_38: 9.62180470e-01 - sys_corr_39: -2.47696765e+00 - sys_corr_40: -7.16926045e-01 - sys_corr_41: 3.22665949e+00 - sys_corr_42: -1.09710547e+00 - sys_corr_43: -1.45278290e+00 + sys_corr_38: -9.62180470e-01 + sys_corr_39: 2.47696765e+00 + sys_corr_40: 7.16926045e-01 + sys_corr_41: -3.22665949e+00 + sys_corr_42: 1.09710547e+00 + sys_corr_43: 1.45278290e+00 sys_corr_44: 5.33491801e-01 - sys_corr_45: -3.40019886e+00 - sys_corr_46: -2.38405244e-01 + sys_corr_45: 3.40019886e+00 + sys_corr_46: 2.38405244e-01 sys_corr_47: 3.22109264e+00 - sys_corr_48: -1.15486081e+00 + sys_corr_48: 1.15486081e+00 sys_corr_49: -3.57289733e+00 sys_corr_50: 2.52127990e+00 sys_corr_51: -7.69639955e-01 - sys_corr_52: 1.14308797e+00 - sys_corr_53: -8.91813946e-01 + sys_corr_52: -1.14308797e+00 + sys_corr_53: 8.91813946e-01 sys_corr_54: 8.52091009e-02 - sys_corr_55: -1.28728468e+00 + sys_corr_55: 1.28728468e+00 sys_corr_56: 8.11298244e-01 - sys_corr_57: 3.21731655e-01 + sys_corr_57: -3.21731655e-01 sys_corr_58: 7.38447900e-01 - sys_corr_59: -5.42959691e-01 + sys_corr_59: 5.42959691e-01 sys_corr_60: 3.50845929e-01 sys_corr_61: 6.68518779e-01 sys_corr_62: -4.73356298e-01 - sys_corr_63: -2.11139731e-01 - sys_corr_64: 2.53163333e-01 + sys_corr_63: 2.11139731e-01 + sys_corr_64: -2.53163333e-01 sys_corr_65: -9.23845625e-01 sys_corr_66: 2.44018919e-01 sys_corr_67: 5.33707774e-01 sys_corr_68: 1.08287356e+00 sys_corr_69: -2.80095971e-01 sys_corr_70: 9.09648170e-02 - sys_corr_71: -4.15080840e-01 - sys_corr_72: -1.34619579e-01 - sys_corr_73: -6.91840226e-01 + sys_corr_71: -6.91840226e-01 + sys_corr_72: 1.34619579e-01 + sys_corr_73: -4.15080840e-01 sys_corr_74: -4.96343177e-01 sys_corr_75: -2.68529165e-01 sys_corr_76: 2.01899696e-01 - sys_corr_77: -5.71987987e-01 - sys_corr_78: 1.59429993e-01 - sys_corr_79: -1.10682250e-01 - sys_corr_80: 3.78444109e-01 + sys_corr_77: 5.71987987e-01 + sys_corr_78: -1.10682250e-01 + sys_corr_79: -3.78444109e-01 + sys_corr_80: -1.59429993e-01 sys_corr_81: 1.29844678e-01 sys_corr_82: -3.41904762e-01 sys_corr_83: 7.98182097e-02 - sys_corr_84: -3.46651084e-01 + sys_corr_84: 3.46651084e-01 sys_corr_85: 2.38390024e-01 sys_corr_86: -3.70687160e-01 sys_corr_87: -1.51106090e-01 sys_corr_88: -5.61885601e-02 sys_corr_89: -3.96201494e-02 sys_corr_90: -3.05193488e-01 - sys_corr_91: 5.21761595e-02 + sys_corr_91: -5.21761595e-02 sys_corr_92: -1.27613159e+00 sys_corr_93: 2.25432170e-02 sys_corr_94: -2.77952767e-01 @@ -11086,40 +11086,40 @@ bins: sys_corr_96: -5.21772651e-03 sys_corr_97: -6.49504839e-01 sys_corr_98: -8.15312555e-01 - sys_corr_99: -1.36992990e+00 - sys_corr_100: 1.72815195e-03 + sys_corr_99: 1.36992990e+00 + sys_corr_100: -1.72815195e-03 sys_corr_101: -2.01357385e-02 - sys_corr_102: 1.10660979e-01 - sys_corr_103: 2.18004770e-01 - sys_corr_104: 3.24427704e-02 - sys_corr_105: 1.06545058e-01 - sys_corr_106: -6.49766869e-02 - sys_corr_107: -8.42233012e-02 + sys_corr_102: -1.10660979e-01 + sys_corr_103: -2.18004770e-01 + sys_corr_104: -3.24427704e-02 + sys_corr_105: -1.06545058e-01 + sys_corr_106: 6.49766869e-02 + sys_corr_107: 8.42233012e-02 sys_corr_108: -3.51404320e-02 sys_corr_109: -1.30831199e-02 sys_corr_110: 7.64534287e-02 - sys_corr_111: 3.35806767e-01 + sys_corr_111: -3.35806767e-01 sys_corr_112: 2.20977579e-03 sys_corr_113: -5.79391378e-02 sys_corr_114: 2.26268146e-04 - sys_corr_115: 1.87285913e-02 + sys_corr_115: -1.87285913e-02 sys_corr_116: 6.67415538e-03 sys_corr_117: -4.71862860e-03 sys_corr_118: -4.25646302e-03 sys_corr_119: -1.67860778e-04 sys_corr_120: -6.62474845e-03 - sys_corr_121: -8.71324611e-04 - sys_corr_122: 4.01382838e-04 - sys_corr_123: -2.11938153e-03 + sys_corr_121: 8.71324611e-04 + sys_corr_122: -2.11938153e-03 + sys_corr_123: 4.01382838e-04 sys_corr_124: -1.51630619e-02 - sys_corr_125: 3.83580887e-04 - sys_corr_126: 2.22579690e-03 + sys_corr_125: -3.83580887e-04 + sys_corr_126: -2.22579690e-03 sys_corr_127: -5.21574156e-01 sys_corr_128: -3.81074388e-02 - sys_corr_129: -6.28738604e-02 - sys_corr_130: -2.44480358e-03 + sys_corr_129: 6.28738604e-02 + sys_corr_130: 2.44480358e-03 sys_corr_131: -2.54385835e-03 - sys_corr_132: -1.72540454e-02 + sys_corr_132: 1.72540454e-02 stat: 0.0 luminosity: 6.75054156e+03 - sys_corr_1: 4.34350956e+03 @@ -11131,9 +11131,9 @@ bins: sys_corr_7: -8.97751360e+02 sys_corr_8: 2.91430700e+02 sys_corr_9: 9.88648218e+01 - sys_corr_10: -1.16346609e+03 + sys_corr_10: 1.16346609e+03 sys_corr_11: -4.45620948e+01 - sys_corr_12: -5.68969900e+02 + sys_corr_12: 5.68969900e+02 sys_corr_13: -6.05551273e+02 sys_corr_14: -3.91594015e+02 sys_corr_15: 1.20745250e+02 @@ -11159,60 +11159,60 @@ bins: sys_corr_35: -1.11597973e+00 sys_corr_36: 2.29036998e+00 sys_corr_37: -1.57892900e+00 - sys_corr_38: -7.11871969e-01 - sys_corr_39: 6.01667351e+00 - sys_corr_40: -5.45241639e-01 - sys_corr_41: -1.74808064e+00 - sys_corr_42: 1.28823405e+00 - sys_corr_43: 3.35389930e+00 + sys_corr_38: 7.11871969e-01 + sys_corr_39: -6.01667351e+00 + sys_corr_40: 5.45241639e-01 + sys_corr_41: 1.74808064e+00 + sys_corr_42: -1.28823405e+00 + sys_corr_43: -3.35389930e+00 sys_corr_44: -4.93906771e-01 - sys_corr_45: 1.38396606e+00 - sys_corr_46: -1.21907092e+00 + sys_corr_45: -1.38396606e+00 + sys_corr_46: 1.21907092e+00 sys_corr_47: -1.13358680e+00 - sys_corr_48: -3.54139196e-01 + sys_corr_48: 3.54139196e-01 sys_corr_49: -3.35348416e-02 sys_corr_50: 4.76451480e-01 sys_corr_51: 6.52723234e-01 - sys_corr_52: -7.47564666e-01 - sys_corr_53: -3.87795107e-01 + sys_corr_52: 7.47564666e-01 + sys_corr_53: 3.87795107e-01 sys_corr_54: 5.74734696e-02 - sys_corr_55: 4.17350607e-01 + sys_corr_55: -4.17350607e-01 sys_corr_56: -1.22112325e-01 - sys_corr_57: -4.49095261e-01 + sys_corr_57: 4.49095261e-01 sys_corr_58: -1.64091908e+00 - sys_corr_59: 6.13223078e-01 + sys_corr_59: -6.13223078e-01 sys_corr_60: -6.38853635e-01 sys_corr_61: -1.06848473e+00 sys_corr_62: 1.74895959e+00 - sys_corr_63: -1.08059767e+00 - sys_corr_64: -6.56715525e-01 + sys_corr_63: 1.08059767e+00 + sys_corr_64: 6.56715525e-01 sys_corr_65: 2.90599807e-01 sys_corr_66: 3.60012442e-01 sys_corr_67: -2.50149963e-01 sys_corr_68: -1.48786648e+00 sys_corr_69: 4.07549699e-01 sys_corr_70: 4.12483687e-01 - sys_corr_71: 7.84343538e-01 - sys_corr_72: -2.29527356e-01 - sys_corr_73: -9.52920819e-01 + sys_corr_71: -9.52920819e-01 + sys_corr_72: 2.29527356e-01 + sys_corr_73: 7.84343538e-01 sys_corr_74: -3.43048841e-01 sys_corr_75: 3.00920324e-01 sys_corr_76: 2.99231309e-01 - sys_corr_77: -5.29260950e-03 - sys_corr_78: -2.23778187e-01 - sys_corr_79: 1.64946530e-01 - sys_corr_80: 2.90682333e-01 + sys_corr_77: 5.29260950e-03 + sys_corr_78: 1.64946530e-01 + sys_corr_79: -2.90682333e-01 + sys_corr_80: 2.23778187e-01 sys_corr_81: -3.26749922e-01 sys_corr_82: -7.28669774e-02 sys_corr_83: -4.44961916e-01 - sys_corr_84: 4.24170174e-01 + sys_corr_84: -4.24170174e-01 sys_corr_85: 1.92789174e-01 sys_corr_86: 3.57653879e-02 sys_corr_87: -4.04565644e-01 sys_corr_88: -7.25025499e-02 sys_corr_89: -6.43553748e-02 sys_corr_90: -4.77185687e-02 - sys_corr_91: 2.39588284e-02 + sys_corr_91: -2.39588284e-02 sys_corr_92: 1.33990832e-01 sys_corr_93: 4.78534730e-02 sys_corr_94: 1.50556186e-01 @@ -11220,40 +11220,40 @@ bins: sys_corr_96: -7.52972972e-02 sys_corr_97: 1.76527721e-01 sys_corr_98: 1.98503770e-01 - sys_corr_99: 5.12472662e-01 - sys_corr_100: 1.67029310e-01 + sys_corr_99: -5.12472662e-01 + sys_corr_100: -1.67029310e-01 sys_corr_101: -1.05284861e-02 - sys_corr_102: -4.81677492e-01 - sys_corr_103: -4.91431142e-01 - sys_corr_104: 1.07639325e-01 - sys_corr_105: 4.86006042e-01 - sys_corr_106: -5.49596902e-02 - sys_corr_107: 5.60643513e-02 + sys_corr_102: 4.81677492e-01 + sys_corr_103: 4.91431142e-01 + sys_corr_104: -1.07639325e-01 + sys_corr_105: -4.86006042e-01 + sys_corr_106: 5.49596902e-02 + sys_corr_107: -5.60643513e-02 sys_corr_108: -2.33801816e-03 sys_corr_109: -7.06993673e-02 sys_corr_110: -1.43461986e-01 - sys_corr_111: -7.02897576e-01 + sys_corr_111: 7.02897576e-01 sys_corr_112: 2.95958270e-03 sys_corr_113: -2.63560743e-02 sys_corr_114: 3.96908276e-04 - sys_corr_115: -2.25267845e-02 + sys_corr_115: 2.25267845e-02 sys_corr_116: -1.19666867e-04 sys_corr_117: -2.10599659e-03 sys_corr_118: 5.04680924e-03 - sys_corr_119: -3.50759011e-06 + sys_corr_119: -3.50759012e-06 sys_corr_120: 2.29487087e-03 - sys_corr_121: 1.18959626e-03 - sys_corr_122: 1.08470376e-03 - sys_corr_123: -1.27393598e-03 + sys_corr_121: -1.18959626e-03 + sys_corr_122: -1.27393598e-03 + sys_corr_123: 1.08470376e-03 sys_corr_124: 3.28494989e-03 - sys_corr_125: -1.48749126e-03 - sys_corr_126: -2.47148653e-03 + sys_corr_125: 1.48749126e-03 + sys_corr_126: 2.47148653e-03 sys_corr_127: 1.44426846e-01 sys_corr_128: 4.12491118e-02 - sys_corr_129: 8.81498989e-03 - sys_corr_130: 4.02773077e-03 + sys_corr_129: -8.81498989e-03 + sys_corr_130: -4.02773077e-03 sys_corr_131: 1.79111706e-03 - sys_corr_132: 6.73801965e-04 + sys_corr_132: -6.73801965e-04 stat: 0.0 luminosity: 6.58966504e+03 - sys_corr_1: 4.02226908e+03 @@ -11265,9 +11265,9 @@ bins: sys_corr_7: -5.61104331e+02 sys_corr_8: -1.05353618e+03 sys_corr_9: 4.21241272e+02 - sys_corr_10: 6.98647221e+02 + sys_corr_10: -6.98647221e+02 sys_corr_11: 9.94105381e+02 - sys_corr_12: 1.59761047e+02 + sys_corr_12: -1.59761047e+02 sys_corr_13: 1.06331024e+02 sys_corr_14: -2.54663193e+02 sys_corr_15: 1.44706394e+02 @@ -11293,60 +11293,60 @@ bins: sys_corr_35: -2.62815995e+00 sys_corr_36: 1.71412716e+00 sys_corr_37: 3.75881550e-01 - sys_corr_38: -2.26179543e-01 - sys_corr_39: -1.96184596e+00 - sys_corr_40: -2.46314505e+00 - sys_corr_41: 3.91203201e-02 - sys_corr_42: 5.38156267e-02 - sys_corr_43: 1.23258979e-01 + sys_corr_38: 2.26179543e-01 + sys_corr_39: 1.96184596e+00 + sys_corr_40: 2.46314505e+00 + sys_corr_41: -3.91203201e-02 + sys_corr_42: -5.38156267e-02 + sys_corr_43: -1.23258979e-01 sys_corr_44: -5.32864949e+00 - sys_corr_45: -8.08643562e-01 - sys_corr_46: 4.80304857e+00 + sys_corr_45: 8.08643562e-01 + sys_corr_46: -4.80304857e+00 sys_corr_47: 1.10593563e+00 - sys_corr_48: -1.37128548e-01 + sys_corr_48: 1.37128548e-01 sys_corr_49: 1.53463819e+00 sys_corr_50: 1.66562668e+00 sys_corr_51: 1.93256401e-01 - sys_corr_52: -1.68852240e+00 - sys_corr_53: -4.81840266e-01 + sys_corr_52: 1.68852240e+00 + sys_corr_53: 4.81840266e-01 sys_corr_54: -8.69219550e-01 - sys_corr_55: 2.61357907e+00 + sys_corr_55: -2.61357907e+00 sys_corr_56: -5.46782631e-01 - sys_corr_57: 5.01879145e-01 + sys_corr_57: -5.01879145e-01 sys_corr_58: 5.38459608e-01 - sys_corr_59: 9.92203380e-01 + sys_corr_59: -9.92203380e-01 sys_corr_60: -4.84996399e-01 sys_corr_61: 1.86573015e+00 sys_corr_62: -6.67314310e-02 - sys_corr_63: 8.60339480e-01 - sys_corr_64: 1.56753725e+00 + sys_corr_63: -8.60339480e-01 + sys_corr_64: -1.56753725e+00 sys_corr_65: 1.66583193e-01 sys_corr_66: -5.71318797e-01 sys_corr_67: 6.88699774e-01 sys_corr_68: -5.49791006e-01 sys_corr_69: 1.06989871e-01 sys_corr_70: -1.02315395e+00 - sys_corr_71: -2.51930045e-02 - sys_corr_72: -7.00705191e-01 - sys_corr_73: 4.20288005e-01 + sys_corr_71: 4.20288005e-01 + sys_corr_72: 7.00705191e-01 + sys_corr_73: -2.51930045e-02 sys_corr_74: 3.74686784e-01 sys_corr_75: -1.38494634e-01 sys_corr_76: -5.98594284e-02 - sys_corr_77: 1.86951797e-01 - sys_corr_78: 3.00726072e-01 - sys_corr_79: -1.00754767e+00 - sys_corr_80: 2.85056812e-01 + sys_corr_77: -1.86951797e-01 + sys_corr_78: -1.00754767e+00 + sys_corr_79: -2.85056812e-01 + sys_corr_80: -3.00726072e-01 sys_corr_81: -8.89029381e-01 sys_corr_82: -6.11289008e-01 sys_corr_83: -1.66733382e-01 - sys_corr_84: -1.18702720e-01 + sys_corr_84: 1.18702720e-01 sys_corr_85: -5.32529450e-01 sys_corr_86: -1.48863461e-01 sys_corr_87: -2.01563107e-01 sys_corr_88: 6.26927206e-02 sys_corr_89: 3.20260425e-01 sys_corr_90: 3.09685559e-01 - sys_corr_91: 1.00449313e-01 + sys_corr_91: -1.00449313e-01 sys_corr_92: -1.92663425e-01 sys_corr_93: -3.13662525e-02 sys_corr_94: -1.31380778e-01 @@ -11354,40 +11354,40 @@ bins: sys_corr_96: -1.18712570e-01 sys_corr_97: -3.80817191e-01 sys_corr_98: -2.37267878e-01 - sys_corr_99: 1.45858435e-01 - sys_corr_100: 5.63797911e-02 + sys_corr_99: -1.45858435e-01 + sys_corr_100: -5.63797911e-02 sys_corr_101: -4.64843288e-01 - sys_corr_102: -2.56298872e-01 - sys_corr_103: -6.12161133e-02 - sys_corr_104: -7.66202192e-02 - sys_corr_105: -1.96253033e-01 - sys_corr_106: -3.45140480e-03 - sys_corr_107: -2.11320918e-01 + sys_corr_102: 2.56298872e-01 + sys_corr_103: 6.12161133e-02 + sys_corr_104: 7.66202192e-02 + sys_corr_105: 1.96253033e-01 + sys_corr_106: 3.45140480e-03 + sys_corr_107: 2.11320918e-01 sys_corr_108: 7.83037994e-02 sys_corr_109: 1.07756264e-01 sys_corr_110: -1.18134289e-01 - sys_corr_111: 9.84792127e-01 + sys_corr_111: -9.84792127e-01 sys_corr_112: -4.30689958e-02 sys_corr_113: -3.94032764e-02 sys_corr_114: 5.82427112e-04 - sys_corr_115: 8.03277678e-03 + sys_corr_115: -8.03277678e-03 sys_corr_116: -1.51427525e-02 sys_corr_117: 1.48004110e-02 sys_corr_118: -2.26364750e-02 sys_corr_119: -5.95022474e-04 sys_corr_120: 1.15178116e-02 - sys_corr_121: -3.34399863e-04 - sys_corr_122: 2.98863884e-04 - sys_corr_123: -6.43986702e-03 + sys_corr_121: 3.34399863e-04 + sys_corr_122: -6.43986702e-03 + sys_corr_123: 2.98863884e-04 sys_corr_124: 2.88638198e-02 - sys_corr_125: -1.05139199e-02 - sys_corr_126: -4.52574589e-03 + sys_corr_125: 1.05139199e-02 + sys_corr_126: 4.52574589e-03 sys_corr_127: 5.54962960e-01 sys_corr_128: 2.38398626e-02 - sys_corr_129: -3.08241177e-02 - sys_corr_130: 8.31285920e-03 + sys_corr_129: 3.08241177e-02 + sys_corr_130: -8.31285920e-03 sys_corr_131: 6.88586777e-03 - sys_corr_132: -3.38316212e-04 + sys_corr_132: 3.38316212e-04 stat: 0.0 luminosity: 6.43408823e+03 - sys_corr_1: 3.59758368e+03 @@ -11399,9 +11399,9 @@ bins: sys_corr_7: 3.53596931e+01 sys_corr_8: -3.46481611e+02 sys_corr_9: 4.80663748e+02 - sys_corr_10: 1.69838568e+02 + sys_corr_10: -1.69838568e+02 sys_corr_11: -1.21429553e+03 - sys_corr_12: -6.44200155e+02 + sys_corr_12: 6.44200155e+02 sys_corr_13: 5.39850804e+02 sys_corr_14: 1.06666875e+02 sys_corr_15: -7.15733637e+01 @@ -11427,60 +11427,60 @@ bins: sys_corr_35: -1.54124909e-01 sys_corr_36: 7.98448185e-01 sys_corr_37: -6.98168275e-01 - sys_corr_38: 1.05248331e-01 - sys_corr_39: -3.79935015e+00 - sys_corr_40: 1.10706113e+00 - sys_corr_41: -2.52252480e+00 - sys_corr_42: 5.38938660e-01 - sys_corr_43: -1.74534860e+00 + sys_corr_38: -1.05248331e-01 + sys_corr_39: 3.79935015e+00 + sys_corr_40: -1.10706113e+00 + sys_corr_41: 2.52252480e+00 + sys_corr_42: -5.38938660e-01 + sys_corr_43: 1.74534860e+00 sys_corr_44: -7.68157798e-01 - sys_corr_45: 1.72386438e-01 - sys_corr_46: -7.35668271e-02 + sys_corr_45: -1.72386438e-01 + sys_corr_46: 7.35668271e-02 sys_corr_47: 2.52495515e+00 - sys_corr_48: 1.52310086e+00 + sys_corr_48: -1.52310086e+00 sys_corr_49: -1.90737477e+00 sys_corr_50: 7.59160947e-01 sys_corr_51: 3.74131515e-01 - sys_corr_52: 1.82636805e-01 - sys_corr_53: -1.06823073e+00 + sys_corr_52: -1.82636805e-01 + sys_corr_53: 1.06823073e+00 sys_corr_54: -2.92856165e-01 - sys_corr_55: -8.22306266e-01 + sys_corr_55: 8.22306266e-01 sys_corr_56: 5.35001283e-01 - sys_corr_57: 5.09630860e-01 + sys_corr_57: -5.09630860e-01 sys_corr_58: 1.75036555e+00 - sys_corr_59: -6.20146234e-01 + sys_corr_59: 6.20146234e-01 sys_corr_60: 5.12322430e-01 sys_corr_61: 4.43639195e-01 sys_corr_62: -1.70646133e-01 - sys_corr_63: -3.57619777e-01 - sys_corr_64: -4.77426011e-02 + sys_corr_63: 3.57619777e-01 + sys_corr_64: 4.77426011e-02 sys_corr_65: 3.76589197e-01 sys_corr_66: 4.05855971e-01 sys_corr_67: -5.68653607e-01 sys_corr_68: 7.19531206e-01 sys_corr_69: -7.90991303e-01 sys_corr_70: -6.97058798e-01 - sys_corr_71: 8.35097806e-01 - sys_corr_72: 3.11171530e-02 - sys_corr_73: 3.74907462e-01 + sys_corr_71: 3.74907462e-01 + sys_corr_72: -3.11171530e-02 + sys_corr_73: 8.35097806e-01 sys_corr_74: 2.32181579e-01 sys_corr_75: -1.29498333e+00 sys_corr_76: 1.55863454e-01 - sys_corr_77: 1.37035536e-01 - sys_corr_78: -5.01364708e-03 - sys_corr_79: 8.64831022e-01 - sys_corr_80: -2.29611750e-01 + sys_corr_77: -1.37035536e-01 + sys_corr_78: 8.64831022e-01 + sys_corr_79: 2.29611750e-01 + sys_corr_80: 5.01364708e-03 sys_corr_81: 3.38778536e-01 sys_corr_82: -3.40637800e-01 sys_corr_83: -1.31997897e-01 - sys_corr_84: 6.77813095e-01 + sys_corr_84: -6.77813095e-01 sys_corr_85: -2.78621191e-01 sys_corr_86: 1.84973411e-01 sys_corr_87: -3.47368036e-01 sys_corr_88: -1.37956682e-01 sys_corr_89: 1.07894778e-01 sys_corr_90: 1.17826572e+00 - sys_corr_91: 2.45811400e-01 + sys_corr_91: -2.45811400e-01 sys_corr_92: -4.63862640e-01 sys_corr_93: 2.76984663e-03 sys_corr_94: -2.39306878e-01 @@ -11488,40 +11488,40 @@ bins: sys_corr_96: 7.88000196e-02 sys_corr_97: -2.06355325e-02 sys_corr_98: -1.06201713e-01 - sys_corr_99: -2.35827023e-02 - sys_corr_100: -6.85894907e-01 + sys_corr_99: 2.35827023e-02 + sys_corr_100: 6.85894907e-01 sys_corr_101: -5.33011470e-01 - sys_corr_102: 8.14234958e-01 - sys_corr_103: 1.86101414e-01 - sys_corr_104: -1.83937010e-02 - sys_corr_105: 2.13075164e-01 - sys_corr_106: 7.69253806e-02 - sys_corr_107: -2.32525921e-01 + sys_corr_102: -8.14234958e-01 + sys_corr_103: -1.86101414e-01 + sys_corr_104: 1.83937010e-02 + sys_corr_105: -2.13075164e-01 + sys_corr_106: -7.69253806e-02 + sys_corr_107: 2.32525921e-01 sys_corr_108: -1.68923290e-02 sys_corr_109: -1.50211229e-01 sys_corr_110: 4.42810206e-02 - sys_corr_111: -1.51549363e-01 + sys_corr_111: 1.51549363e-01 sys_corr_112: 4.55909685e-03 sys_corr_113: 2.78609925e-02 sys_corr_114: 2.47863776e-04 - sys_corr_115: 3.48588271e-02 + sys_corr_115: -3.48588271e-02 sys_corr_116: -2.13226767e-02 sys_corr_117: 1.66365026e-02 sys_corr_118: -1.10529123e-02 sys_corr_119: -2.02613573e-03 sys_corr_120: 1.14401415e-02 - sys_corr_121: -1.92412427e-03 - sys_corr_122: 1.21303498e-03 - sys_corr_123: -6.37647877e-03 + sys_corr_121: 1.92412427e-03 + sys_corr_122: -6.37647877e-03 + sys_corr_123: 1.21303498e-03 sys_corr_124: 2.90996314e-02 - sys_corr_125: -8.49018830e-03 - sys_corr_126: -5.17555563e-05 + sys_corr_125: 8.49018830e-03 + sys_corr_126: 5.17555563e-05 sys_corr_127: -1.15436818e-01 sys_corr_128: 1.14105563e-02 - sys_corr_129: 1.81264581e-03 - sys_corr_130: -2.69417359e-03 + sys_corr_129: -1.81264581e-03 + sys_corr_130: 2.69417359e-03 sys_corr_131: 4.73718592e-03 - sys_corr_132: 8.45173830e-03 + sys_corr_132: -8.45173830e-03 stat: 0.0 luminosity: 6.28976471e+03 - sys_corr_1: 3.35150014e+03 @@ -11533,9 +11533,9 @@ bins: sys_corr_7: 1.52599103e+02 sys_corr_8: -2.16564778e+01 sys_corr_9: 1.50104041e+02 - sys_corr_10: 7.84274553e+01 + sys_corr_10: -7.84274553e+01 sys_corr_11: 2.06487125e+02 - sys_corr_12: 5.14856152e+01 + sys_corr_12: -5.14856152e+01 sys_corr_13: -2.83297235e+02 sys_corr_14: 1.16626516e+03 sys_corr_15: -2.90412897e+02 @@ -11561,60 +11561,60 @@ bins: sys_corr_35: 1.72985618e+00 sys_corr_36: -2.37030720e+00 sys_corr_37: -1.70259259e-01 - sys_corr_38: -1.30704099e+00 - sys_corr_39: 5.36747130e+00 - sys_corr_40: 3.85758940e+00 - sys_corr_41: -6.97582059e-01 - sys_corr_42: 2.74104279e+00 - sys_corr_43: -1.57384330e+00 + sys_corr_38: 1.30704099e+00 + sys_corr_39: -5.36747130e+00 + sys_corr_40: -3.85758940e+00 + sys_corr_41: 6.97582059e-01 + sys_corr_42: -2.74104279e+00 + sys_corr_43: 1.57384330e+00 sys_corr_44: 5.03842987e-01 - sys_corr_45: 1.64571703e+00 - sys_corr_46: -1.71746490e+00 + sys_corr_45: -1.64571703e+00 + sys_corr_46: 1.71746490e+00 sys_corr_47: -1.01328768e+00 - sys_corr_48: 1.70669787e+00 + sys_corr_48: -1.70669787e+00 sys_corr_49: -2.50707040e+00 sys_corr_50: -1.85185235e+00 sys_corr_51: -2.56681081e+00 - sys_corr_52: 1.53152983e+00 - sys_corr_53: 1.07556611e+00 + sys_corr_52: -1.53152983e+00 + sys_corr_53: -1.07556611e+00 sys_corr_54: 1.34289357e+00 - sys_corr_55: -9.87181850e-01 + sys_corr_55: 9.87181850e-01 sys_corr_56: -2.06362828e-02 - sys_corr_57: 1.12456303e-01 + sys_corr_57: -1.12456303e-01 sys_corr_58: 4.41139679e-01 - sys_corr_59: 1.52244054e-01 + sys_corr_59: -1.52244054e-01 sys_corr_60: -1.34706974e-01 sys_corr_61: -4.44586580e-01 sys_corr_62: 3.22273665e-01 - sys_corr_63: 3.97098962e-01 - sys_corr_64: -9.09188373e-01 + sys_corr_63: -3.97098962e-01 + sys_corr_64: 9.09188373e-01 sys_corr_65: 3.77956676e-01 sys_corr_66: -3.41843972e-01 sys_corr_67: 1.93471755e-01 sys_corr_68: -6.57761089e-01 sys_corr_69: -4.41406343e-01 sys_corr_70: -7.29093242e-01 - sys_corr_71: 1.46633965e-01 - sys_corr_72: -5.02132628e-02 - sys_corr_73: 8.60994643e-01 + sys_corr_71: 8.60994643e-01 + sys_corr_72: 5.02132628e-02 + sys_corr_73: 1.46633965e-01 sys_corr_74: -1.03736631e-01 sys_corr_75: 9.18998629e-01 sys_corr_76: -7.77855945e-02 - sys_corr_77: -5.37228494e-01 - sys_corr_78: -5.61334377e-01 - sys_corr_79: 5.91556205e-01 - sys_corr_80: -1.80698669e-01 + sys_corr_77: 5.37228494e-01 + sys_corr_78: 5.91556205e-01 + sys_corr_79: 1.80698669e-01 + sys_corr_80: 5.61334377e-01 sys_corr_81: 4.28267928e-01 sys_corr_82: 8.93516509e-01 sys_corr_83: 1.85844322e-01 - sys_corr_84: 8.86418355e-01 + sys_corr_84: -8.86418355e-01 sys_corr_85: 2.95673073e-01 sys_corr_86: -6.29572611e-01 sys_corr_87: 9.75569866e-01 sys_corr_88: 1.19345570e-01 sys_corr_89: 1.62931848e-01 sys_corr_90: 4.03557778e-01 - sys_corr_91: -8.66713525e-02 + sys_corr_91: 8.66713525e-02 sys_corr_92: 3.65732765e-01 sys_corr_93: -2.73136206e-02 sys_corr_94: -1.67287715e-01 @@ -11622,40 +11622,40 @@ bins: sys_corr_96: 8.21965205e-02 sys_corr_97: 1.03515305e-01 sys_corr_98: 9.56813450e-02 - sys_corr_99: 4.16566100e-02 - sys_corr_100: -7.27890986e-02 + sys_corr_99: -4.16566100e-02 + sys_corr_100: 7.27890986e-02 sys_corr_101: 1.36214588e+00 - sys_corr_102: -1.47978097e-01 - sys_corr_103: -1.35530030e-01 - sys_corr_104: -1.29467326e-02 - sys_corr_105: 1.70944195e-01 - sys_corr_106: 4.73728872e-01 - sys_corr_107: 1.60616098e-01 + sys_corr_102: 1.47978097e-01 + sys_corr_103: 1.35530030e-01 + sys_corr_104: 1.29467326e-02 + sys_corr_105: -1.70944195e-01 + sys_corr_106: -4.73728872e-01 + sys_corr_107: -1.60616098e-01 sys_corr_108: 1.00806248e-01 sys_corr_109: -2.51085720e-01 sys_corr_110: -1.78716888e-01 - sys_corr_111: -7.98381951e-02 + sys_corr_111: 7.98381951e-02 sys_corr_112: 3.29259036e-02 sys_corr_113: 1.14396725e-01 sys_corr_114: -4.53642026e-04 - sys_corr_115: 4.43812060e-02 + sys_corr_115: -4.43812060e-02 sys_corr_116: -5.03913730e-03 sys_corr_117: 9.12268809e-03 sys_corr_118: 3.85977072e-02 sys_corr_119: -1.87395139e-03 sys_corr_120: 2.76052140e-03 - sys_corr_121: -2.00693404e-03 - sys_corr_122: 2.67795999e-03 - sys_corr_123: -3.39734162e-03 + sys_corr_121: 2.00693404e-03 + sys_corr_122: -3.39734162e-03 + sys_corr_123: 2.67795999e-03 sys_corr_124: 1.46277350e-02 - sys_corr_125: -1.81577174e-03 - sys_corr_126: 2.00755737e-03 + sys_corr_125: 1.81577174e-03 + sys_corr_126: -2.00755737e-03 sys_corr_127: -1.68149703e-01 sys_corr_128: 1.62777106e-01 - sys_corr_129: 8.15386706e-02 - sys_corr_130: -7.32847860e-03 + sys_corr_129: -8.15386706e-02 + sys_corr_130: 7.32847860e-03 sys_corr_131: 5.28061332e-03 - sys_corr_132: 2.59769317e-03 + sys_corr_132: -2.59769317e-03 stat: 0.0 luminosity: 6.07255748e+03 - sys_corr_1: 3.09783666e+03 @@ -11667,9 +11667,9 @@ bins: sys_corr_7: 6.32912919e+02 sys_corr_8: 4.28769818e+02 sys_corr_9: -3.64709414e+02 - sys_corr_10: 1.82988594e+02 + sys_corr_10: -1.82988594e+02 sys_corr_11: -3.57686623e+02 - sys_corr_12: 4.45653500e+02 + sys_corr_12: -4.45653500e+02 sys_corr_13: 3.91454349e+02 sys_corr_14: -9.37204998e+02 sys_corr_15: 2.91850044e+02 @@ -11695,60 +11695,60 @@ bins: sys_corr_35: -3.73531871e+00 sys_corr_36: 3.08311291e+00 sys_corr_37: -9.16961656e-01 - sys_corr_38: -4.19988316e-01 - sys_corr_39: 3.20957329e-01 - sys_corr_40: -1.03852408e-01 - sys_corr_41: 9.34429141e-01 - sys_corr_42: 4.29293268e-01 - sys_corr_43: -3.88174546e-01 + sys_corr_38: 4.19988316e-01 + sys_corr_39: -3.20957329e-01 + sys_corr_40: 1.03852408e-01 + sys_corr_41: -9.34429141e-01 + sys_corr_42: -4.29293268e-01 + sys_corr_43: 3.88174546e-01 sys_corr_44: -1.19970604e+00 - sys_corr_45: 6.16946727e-01 - sys_corr_46: -7.84688901e-01 + sys_corr_45: -6.16946727e-01 + sys_corr_46: 7.84688901e-01 sys_corr_47: 2.19647690e+00 - sys_corr_48: -5.77114751e-02 + sys_corr_48: 5.77114751e-02 sys_corr_49: 6.73944675e-01 sys_corr_50: -6.84036091e-01 sys_corr_51: 9.56418527e-01 - sys_corr_52: -8.14447906e-01 - sys_corr_53: -4.77287219e-01 + sys_corr_52: 8.14447906e-01 + sys_corr_53: 4.77287219e-01 sys_corr_54: -2.49921000e-01 - sys_corr_55: -6.31245033e-01 + sys_corr_55: 6.31245033e-01 sys_corr_56: -5.75839973e-01 - sys_corr_57: 6.85568032e-01 + sys_corr_57: -6.85568032e-01 sys_corr_58: 3.37930649e-01 - sys_corr_59: 1.38347706e-01 + sys_corr_59: -1.38347706e-01 sys_corr_60: -2.41051854e-01 sys_corr_61: -3.85279914e-01 sys_corr_62: 8.24962459e-02 - sys_corr_63: 2.13697914e-01 - sys_corr_64: 5.12387686e-01 + sys_corr_63: -2.13697914e-01 + sys_corr_64: -5.12387686e-01 sys_corr_65: -1.17661962e+00 sys_corr_66: 2.23966826e-01 sys_corr_67: -2.69259006e-01 sys_corr_68: -7.68046701e-01 sys_corr_69: -1.09213729e-01 sys_corr_70: -6.49025468e-01 - sys_corr_71: 1.90152085e-01 - sys_corr_72: -3.88779135e-01 - sys_corr_73: 3.72119022e-01 + sys_corr_71: 3.72119022e-01 + sys_corr_72: 3.88779135e-01 + sys_corr_73: 1.90152085e-01 sys_corr_74: -3.63769260e-01 sys_corr_75: -2.58013117e-01 sys_corr_76: 1.13212594e+00 - sys_corr_77: 3.87119242e-01 - sys_corr_78: 8.36104730e-03 - sys_corr_79: -1.25670995e-01 - sys_corr_80: -3.25390122e-01 + sys_corr_77: -3.87119242e-01 + sys_corr_78: -1.25670995e-01 + sys_corr_79: 3.25390122e-01 + sys_corr_80: -8.36104730e-03 sys_corr_81: -9.12490839e-01 sys_corr_82: -1.30528211e-01 sys_corr_83: 1.09730741e-01 - sys_corr_84: 5.33862490e-01 + sys_corr_84: -5.33862490e-01 sys_corr_85: 1.25600330e-01 sys_corr_86: -2.12348389e-01 sys_corr_87: -4.65874287e-01 sys_corr_88: 6.02417414e-01 sys_corr_89: 1.01344687e-01 sys_corr_90: 3.81229206e-01 - sys_corr_91: 3.92843689e-01 + sys_corr_91: -3.92843689e-01 sys_corr_92: 2.19327786e-01 sys_corr_93: -2.53306537e-02 sys_corr_94: -2.61013376e-01 @@ -11756,40 +11756,40 @@ bins: sys_corr_96: 3.18675388e-02 sys_corr_97: 2.75126383e-01 sys_corr_98: 2.08465866e-01 - sys_corr_99: 1.13242032e-01 - sys_corr_100: 9.77485495e-01 + sys_corr_99: -1.13242032e-01 + sys_corr_100: -9.77485495e-01 sys_corr_101: -2.88895474e-01 - sys_corr_102: -1.48953531e-01 - sys_corr_103: -1.43063179e-01 - sys_corr_104: -1.00243909e-01 - sys_corr_105: -1.16824742e-01 - sys_corr_106: 2.06366473e-01 - sys_corr_107: 5.28454039e-01 + sys_corr_102: 1.48953531e-01 + sys_corr_103: 1.43063179e-01 + sys_corr_104: 1.00243909e-01 + sys_corr_105: 1.16824742e-01 + sys_corr_106: -2.06366473e-01 + sys_corr_107: -5.28454039e-01 sys_corr_108: -8.58938344e-02 sys_corr_109: -2.27935769e-01 sys_corr_110: -2.11322291e-01 - sys_corr_111: 1.40340243e-02 + sys_corr_111: -1.40340243e-02 sys_corr_112: -2.52602289e-02 sys_corr_113: -1.56985904e-02 sys_corr_114: -3.65565465e-04 - sys_corr_115: 3.73156276e-02 + sys_corr_115: -3.73156276e-02 sys_corr_116: -1.09407112e-03 sys_corr_117: -5.50641216e-04 sys_corr_118: 6.54362933e-03 sys_corr_119: 6.40412722e-04 sys_corr_120: 4.26930733e-03 - sys_corr_121: 2.57526643e-03 - sys_corr_122: 2.65802409e-03 - sys_corr_123: -6.88153629e-03 + sys_corr_121: -2.57526643e-03 + sys_corr_122: -6.88153629e-03 + sys_corr_123: 2.65802409e-03 sys_corr_124: 6.40056116e-03 - sys_corr_125: -2.59425703e-03 - sys_corr_126: 1.08770397e-03 + sys_corr_125: 2.59425703e-03 + sys_corr_126: -1.08770397e-03 sys_corr_127: -2.02463502e-02 sys_corr_128: 1.39714063e-01 - sys_corr_129: -1.75302625e-02 - sys_corr_130: 9.13789843e-04 + sys_corr_129: 1.75302625e-02 + sys_corr_130: -9.13789843e-04 sys_corr_131: 1.93886099e-03 - sys_corr_132: -3.34965348e-03 + sys_corr_132: 3.34965348e-03 stat: 0.0 luminosity: 5.81524616e+03 - sys_corr_1: 2.88191476e+03 @@ -11801,9 +11801,9 @@ bins: sys_corr_7: 2.88363842e+02 sys_corr_8: 2.63835469e+02 sys_corr_9: -2.86576672e+02 - sys_corr_10: -6.20973157e+01 + sys_corr_10: 6.20973157e+01 sys_corr_11: 6.07564439e+02 - sys_corr_12: 3.84817169e+02 + sys_corr_12: -3.84817169e+02 sys_corr_13: -4.46807352e+02 sys_corr_14: -3.77688307e+02 sys_corr_15: 1.00821685e+02 @@ -11829,60 +11829,60 @@ bins: sys_corr_35: 5.44741138e+00 sys_corr_36: -9.54767485e+00 sys_corr_37: -2.72173032e+00 - sys_corr_38: 8.05400298e-01 - sys_corr_39: -2.72366653e-01 - sys_corr_40: 2.84655447e+00 - sys_corr_41: 1.30412473e+00 - sys_corr_42: -5.07170929e-01 - sys_corr_43: -3.32507732e-01 + sys_corr_38: -8.05400298e-01 + sys_corr_39: 2.72366653e-01 + sys_corr_40: -2.84655447e+00 + sys_corr_41: -1.30412473e+00 + sys_corr_42: 5.07170929e-01 + sys_corr_43: 3.32507732e-01 sys_corr_44: 2.78072994e+00 - sys_corr_45: -9.21575531e-01 - sys_corr_46: -2.98312716e+00 + sys_corr_45: 9.21575531e-01 + sys_corr_46: 2.98312716e+00 sys_corr_47: -1.37976211e+00 - sys_corr_48: 5.52702075e-02 + sys_corr_48: -5.52702075e-02 sys_corr_49: 6.61634848e-01 sys_corr_50: -3.69274837e+00 sys_corr_51: -1.49509683e+00 - sys_corr_52: 1.51594761e+00 - sys_corr_53: 5.42205836e-01 + sys_corr_52: -1.51594761e+00 + sys_corr_53: -5.42205836e-01 sys_corr_54: 1.27606945e+00 - sys_corr_55: -6.22857236e-01 + sys_corr_55: 6.22857236e-01 sys_corr_56: 4.34160231e-01 - sys_corr_57: 6.68864902e-01 + sys_corr_57: -6.68864902e-01 sys_corr_58: -2.31994823e-01 - sys_corr_59: -4.52078935e-01 + sys_corr_59: 4.52078935e-01 sys_corr_60: -7.76764029e-02 sys_corr_61: 1.74397995e-01 sys_corr_62: 3.36331811e-02 - sys_corr_63: -5.63190978e-01 - sys_corr_64: -7.48083453e-01 + sys_corr_63: 5.63190978e-01 + sys_corr_64: 7.48083453e-01 sys_corr_65: 7.90750510e-01 sys_corr_66: -4.09582480e-01 sys_corr_67: -1.16621367e+00 sys_corr_68: 2.77409218e-01 sys_corr_69: 1.36381636e-01 sys_corr_70: -7.60126231e-01 - sys_corr_71: -1.07897631e+00 - sys_corr_72: -1.24824676e-01 - sys_corr_73: 1.13135397e+00 + sys_corr_71: 1.13135397e+00 + sys_corr_72: 1.24824676e-01 + sys_corr_73: -1.07897631e+00 sys_corr_74: 5.39310928e-01 sys_corr_75: -6.39419231e-01 sys_corr_76: -1.81715719e-01 - sys_corr_77: 7.74475946e-01 - sys_corr_78: -6.44414989e-01 - sys_corr_79: -9.00381188e-02 - sys_corr_80: 2.71010885e-01 + sys_corr_77: -7.74475946e-01 + sys_corr_78: -9.00381188e-02 + sys_corr_79: -2.71010885e-01 + sys_corr_80: 6.44414989e-01 sys_corr_81: 1.53534236e+00 sys_corr_82: 6.95963719e-01 sys_corr_83: 8.95362788e-01 - sys_corr_84: 2.89223696e-01 + sys_corr_84: -2.89223696e-01 sys_corr_85: 8.70670211e-01 sys_corr_86: 1.92311940e-01 sys_corr_87: 3.10428759e-01 sys_corr_88: -2.83282996e-01 sys_corr_89: -9.17882879e-02 sys_corr_90: 3.81073099e-01 - sys_corr_91: 3.88534241e-01 + sys_corr_91: -3.88534241e-01 sys_corr_92: 1.64386194e-01 sys_corr_93: 2.02810002e-02 sys_corr_94: -3.56473632e-02 @@ -11890,40 +11890,40 @@ bins: sys_corr_96: 6.46665947e-02 sys_corr_97: 2.04920553e-01 sys_corr_98: 1.28059744e-01 - sys_corr_99: -5.33648324e-02 - sys_corr_100: -6.10372535e-01 + sys_corr_99: 5.33648324e-02 + sys_corr_100: 6.10372535e-01 sys_corr_101: 2.59208813e-01 - sys_corr_102: 2.54963245e-01 - sys_corr_103: -1.89226927e-01 - sys_corr_104: -9.11048489e-02 - sys_corr_105: -6.43139034e-02 - sys_corr_106: -1.01512520e+00 - sys_corr_107: 2.77786355e-01 + sys_corr_102: -2.54963245e-01 + sys_corr_103: 1.89226927e-01 + sys_corr_104: 9.11048489e-02 + sys_corr_105: 6.43139034e-02 + sys_corr_106: 1.01512520e+00 + sys_corr_107: -2.77786355e-01 sys_corr_108: 1.25034320e-01 sys_corr_109: -3.53451455e-01 sys_corr_110: 4.85325494e-01 - sys_corr_111: -1.79535668e-02 + sys_corr_111: 1.79535668e-02 sys_corr_112: -5.34106330e-02 sys_corr_113: 5.54626946e-02 sys_corr_114: -4.61996828e-04 - sys_corr_115: 9.14577268e-03 + sys_corr_115: -9.14577268e-03 sys_corr_116: 1.24934360e-02 sys_corr_117: -1.87021668e-03 sys_corr_118: -6.94940993e-03 sys_corr_119: 4.57970313e-04 sys_corr_120: -5.39308714e-03 - sys_corr_121: -1.26566836e-03 - sys_corr_122: 3.56032756e-03 - sys_corr_123: -4.45553213e-03 + sys_corr_121: 1.26566836e-03 + sys_corr_122: -4.45553213e-03 + sys_corr_123: 3.56032756e-03 sys_corr_124: -6.30003148e-03 - sys_corr_125: 2.38660158e-03 - sys_corr_126: 5.77785541e-03 + sys_corr_125: -2.38660158e-03 + sys_corr_126: -5.77785541e-03 sys_corr_127: 1.15520520e-01 sys_corr_128: -1.33341839e-01 - sys_corr_129: 5.42393303e-02 - sys_corr_130: -7.92876684e-03 + sys_corr_129: -5.42393303e-02 + sys_corr_130: 7.92876684e-03 sys_corr_131: 2.15669633e-03 - sys_corr_132: 1.40200820e-02 + sys_corr_132: -1.40200820e-02 stat: 0.0 luminosity: 5.49346389e+03 - sys_corr_1: 2.53642710e+03 @@ -11935,9 +11935,9 @@ bins: sys_corr_7: 1.82191412e+02 sys_corr_8: 3.99662612e+02 sys_corr_9: -2.61048990e+02 - sys_corr_10: -3.72583909e+02 + sys_corr_10: 3.72583909e+02 sys_corr_11: -3.74347455e+01 - sys_corr_12: -3.79458891e-01 + sys_corr_12: 3.79458891e-01 sys_corr_13: -3.56307133e+02 sys_corr_14: 1.37510659e+02 sys_corr_15: -2.29222606e+02 @@ -11963,60 +11963,60 @@ bins: sys_corr_35: -2.42579908e+00 sys_corr_36: 3.07845019e+00 sys_corr_37: 2.51766352e+00 - sys_corr_38: -1.32028982e+00 - sys_corr_39: -7.87657557e-01 - sys_corr_40: -2.26479663e-01 - sys_corr_41: -2.51600799e-01 - sys_corr_42: 3.09040466e-01 - sys_corr_43: -1.23205042e+00 + sys_corr_38: 1.32028982e+00 + sys_corr_39: 7.87657557e-01 + sys_corr_40: 2.26479663e-01 + sys_corr_41: 2.51600799e-01 + sys_corr_42: -3.09040466e-01 + sys_corr_43: 1.23205042e+00 sys_corr_44: 1.36198650e+00 - sys_corr_45: 1.09213827e+00 - sys_corr_46: 9.56167620e-01 + sys_corr_45: -1.09213827e+00 + sys_corr_46: -9.56167620e-01 sys_corr_47: -4.37737319e-01 - sys_corr_48: 4.73467216e-01 + sys_corr_48: -4.73467216e-01 sys_corr_49: -6.83871592e-01 sys_corr_50: -1.14907327e+00 sys_corr_51: -5.09980287e-02 - sys_corr_52: 9.44562350e-01 - sys_corr_53: -7.39489672e-01 + sys_corr_52: -9.44562350e-01 + sys_corr_53: 7.39489672e-01 sys_corr_54: -9.07920145e-01 - sys_corr_55: -3.25911452e-02 + sys_corr_55: 3.25911452e-02 sys_corr_56: -1.77855796e-01 - sys_corr_57: 9.08843289e-01 + sys_corr_57: -9.08843289e-01 sys_corr_58: 2.48473071e-01 - sys_corr_59: 4.67436240e-02 + sys_corr_59: -4.67436240e-02 sys_corr_60: -6.49409533e-02 sys_corr_61: 1.82127508e-01 sys_corr_62: -3.86312232e-01 - sys_corr_63: -1.20064825e+00 - sys_corr_64: 2.32900817e-01 + sys_corr_63: 1.20064825e+00 + sys_corr_64: -2.32900817e-01 sys_corr_65: 1.16437343e-01 sys_corr_66: 9.92737180e-01 sys_corr_67: 8.67862978e-03 sys_corr_68: -1.56678302e-01 sys_corr_69: 5.55913215e-01 sys_corr_70: -5.84239373e-02 - sys_corr_71: 3.31168506e-01 - sys_corr_72: -4.82162596e-01 - sys_corr_73: 3.03760284e-01 + sys_corr_71: 3.03760284e-01 + sys_corr_72: 4.82162596e-01 + sys_corr_73: 3.31168506e-01 sys_corr_74: 2.44099224e-01 sys_corr_75: 6.67971517e-01 sys_corr_76: -3.51956553e-01 - sys_corr_77: 4.21371464e-01 - sys_corr_78: 1.82640392e+00 - sys_corr_79: -3.87976728e-01 - sys_corr_80: -7.90131998e-01 + sys_corr_77: -4.21371464e-01 + sys_corr_78: -3.87976728e-01 + sys_corr_79: 7.90131998e-01 + sys_corr_80: -1.82640392e+00 sys_corr_81: -2.32227527e-01 sys_corr_82: -5.05683382e-02 sys_corr_83: 3.54910989e-01 - sys_corr_84: 2.55526155e-01 + sys_corr_84: -2.55526155e-01 sys_corr_85: -6.40863301e-02 sys_corr_86: -3.46956771e-01 sys_corr_87: -1.20046102e-01 sys_corr_88: 2.00860657e-01 sys_corr_89: -1.95970389e-01 sys_corr_90: 1.83305857e-01 - sys_corr_91: 3.50405278e-01 + sys_corr_91: -3.50405278e-01 sys_corr_92: -7.00279224e-02 sys_corr_93: 5.90110469e-02 sys_corr_94: 1.24198634e-01 @@ -12024,40 +12024,40 @@ bins: sys_corr_96: -4.96561491e-02 sys_corr_97: 8.25549287e-02 sys_corr_98: 4.83619160e-02 - sys_corr_99: -2.83881686e-01 - sys_corr_100: 2.36496247e-01 + sys_corr_99: 2.83881686e-01 + sys_corr_100: -2.36496247e-01 sys_corr_101: -3.83875962e-01 - sys_corr_102: 9.69760937e-02 - sys_corr_103: 3.76553707e-01 - sys_corr_104: -1.81893692e-02 - sys_corr_105: -9.99488685e-02 - sys_corr_106: 4.91900492e-01 - sys_corr_107: -8.03239188e-01 + sys_corr_102: -9.69760937e-02 + sys_corr_103: -3.76553707e-01 + sys_corr_104: 1.81893692e-02 + sys_corr_105: 9.99488685e-02 + sys_corr_106: -4.91900492e-01 + sys_corr_107: 8.03239188e-01 sys_corr_108: 4.07739837e-01 sys_corr_109: 5.01363430e-01 sys_corr_110: 8.34072629e-01 - sys_corr_111: 8.16468101e-02 + sys_corr_111: -8.16468101e-02 sys_corr_112: -9.49297802e-02 sys_corr_113: -7.95940515e-02 sys_corr_114: -2.50820132e-05 - sys_corr_115: -1.37129430e-02 + sys_corr_115: 1.37129430e-02 sys_corr_116: -4.73511800e-03 sys_corr_117: 3.32628809e-03 sys_corr_118: -1.08940790e-02 sys_corr_119: 7.83622234e-04 sys_corr_120: 5.28704549e-03 - sys_corr_121: -5.82902727e-04 - sys_corr_122: 6.02232016e-03 - sys_corr_123: -5.44279160e-03 + sys_corr_121: 5.82902727e-04 + sys_corr_122: -5.44279160e-03 + sys_corr_123: 6.02232016e-03 sys_corr_124: -4.50892749e-03 - sys_corr_125: -4.78049893e-03 - sys_corr_126: 3.17205698e-03 + sys_corr_125: 4.78049893e-03 + sys_corr_126: -3.17205698e-03 sys_corr_127: 2.19075700e-02 sys_corr_128: -4.42564332e-01 - sys_corr_129: -8.90993612e-03 - sys_corr_130: -3.55180651e-03 + sys_corr_129: 8.90993612e-03 + sys_corr_130: 3.55180651e-03 sys_corr_131: 3.96790552e-03 - sys_corr_132: -1.46203599e-02 + sys_corr_132: 1.46203599e-02 stat: 0.0 luminosity: 5.14612974e+03 - sys_corr_1: 2.04946595e+03 @@ -12069,9 +12069,9 @@ bins: sys_corr_7: -2.68398233e+01 sys_corr_8: 1.08505047e+02 sys_corr_9: -8.52520240e+01 - sys_corr_10: -6.32551907e+01 + sys_corr_10: 6.32551907e+01 sys_corr_11: -4.83970948e+01 - sys_corr_12: 7.19522257e+01 + sys_corr_12: -7.19522257e+01 sys_corr_13: -7.52223954e+01 sys_corr_14: 2.89466767e+02 sys_corr_15: -1.53093344e+02 @@ -12097,60 +12097,60 @@ bins: sys_corr_35: -7.41717475e-01 sys_corr_36: -2.93280412e+00 sys_corr_37: -2.20489446e+00 - sys_corr_38: 2.10895981e+00 - sys_corr_39: -2.53578459e+00 - sys_corr_40: -2.58293492e+00 - sys_corr_41: 1.03650497e+00 - sys_corr_42: -2.10164679e+00 - sys_corr_43: 9.71110252e-01 + sys_corr_38: -2.10895981e+00 + sys_corr_39: 2.53578459e+00 + sys_corr_40: 2.58293492e+00 + sys_corr_41: -1.03650497e+00 + sys_corr_42: 2.10164679e+00 + sys_corr_43: -9.71110252e-01 sys_corr_44: -3.11784293e-01 - sys_corr_45: -2.84199142e-01 - sys_corr_46: 1.26864381e+00 + sys_corr_45: 2.84199142e-01 + sys_corr_46: -1.26864381e+00 sys_corr_47: -8.08362360e-01 - sys_corr_48: -1.37634418e+00 + sys_corr_48: 1.37634418e+00 sys_corr_49: 1.75306852e+00 sys_corr_50: 3.42988726e+00 sys_corr_51: 2.76217365e+00 - sys_corr_52: -3.10227104e+00 - sys_corr_53: -1.85868196e-01 + sys_corr_52: 3.10227104e+00 + sys_corr_53: 1.85868196e-01 sys_corr_54: -7.21900206e-01 - sys_corr_55: 1.33496467e+00 + sys_corr_55: -1.33496467e+00 sys_corr_56: -9.82225484e-01 - sys_corr_57: 2.91601245e-01 + sys_corr_57: -2.91601245e-01 sys_corr_58: -5.70514681e-04 - sys_corr_59: -2.82142098e-01 + sys_corr_59: 2.82142098e-01 sys_corr_60: 5.38995065e-01 sys_corr_61: 7.60527206e-01 sys_corr_62: 3.35014860e-01 - sys_corr_63: 1.74568530e-01 - sys_corr_64: -2.19975304e-01 + sys_corr_63: -1.74568530e-01 + sys_corr_64: 2.19975304e-01 sys_corr_65: -4.81229515e-02 sys_corr_66: 9.16716003e-01 sys_corr_67: 4.97864161e-01 sys_corr_68: 4.73159214e-01 sys_corr_69: 1.49982610e+00 sys_corr_70: 4.17324803e-01 - sys_corr_71: 6.70518307e-02 - sys_corr_72: 8.88494719e-01 - sys_corr_73: 3.79398725e-01 + sys_corr_71: 3.79398725e-01 + sys_corr_72: -8.88494719e-01 + sys_corr_73: 6.70518307e-02 sys_corr_74: -1.16101265e-01 sys_corr_75: 4.36632220e-01 sys_corr_76: 3.46637167e-01 - sys_corr_77: 1.59131308e-01 - sys_corr_78: -5.61733333e-01 - sys_corr_79: -2.73423053e-01 - sys_corr_80: -2.17386085e-01 + sys_corr_77: -1.59131308e-01 + sys_corr_78: -2.73423053e-01 + sys_corr_79: 2.17386085e-01 + sys_corr_80: 5.61733333e-01 sys_corr_81: -1.09119865e+00 sys_corr_82: -5.59141451e-01 sys_corr_83: -7.80406892e-01 - sys_corr_84: -1.10693724e+00 + sys_corr_84: 1.10693724e+00 sys_corr_85: -1.44115455e+00 sys_corr_86: 4.26623524e-01 sys_corr_87: -2.93578535e-01 sys_corr_88: -1.79311090e-01 sys_corr_89: -1.35163386e-01 sys_corr_90: 9.97702249e-01 - sys_corr_91: 3.07170897e-01 + sys_corr_91: -3.07170897e-01 sys_corr_92: 2.33433814e-01 sys_corr_93: 1.48097561e-01 sys_corr_94: 3.31728172e-01 @@ -12158,40 +12158,40 @@ bins: sys_corr_96: -6.47630349e-02 sys_corr_97: 3.75108015e-01 sys_corr_98: 1.71269245e-01 - sys_corr_99: -3.87594156e-01 - sys_corr_100: 2.47110106e-01 + sys_corr_99: 3.87594156e-01 + sys_corr_100: -2.47110106e-01 sys_corr_101: -5.78477049e-02 - sys_corr_102: -7.00365808e-02 - sys_corr_103: -6.43738412e-01 - sys_corr_104: -1.23253178e-01 - sys_corr_105: -4.05606315e-01 - sys_corr_106: -4.33281895e-01 - sys_corr_107: 1.29692218e-01 + sys_corr_102: 7.00365808e-02 + sys_corr_103: 6.43738412e-01 + sys_corr_104: 1.23253178e-01 + sys_corr_105: 4.05606315e-01 + sys_corr_106: 4.33281895e-01 + sys_corr_107: -1.29692218e-01 sys_corr_108: 3.43899069e-02 sys_corr_109: 1.08534562e+00 sys_corr_110: -1.29436500e+00 - sys_corr_111: 1.62040832e-01 + sys_corr_111: -1.62040832e-01 sys_corr_112: -1.48140199e-01 sys_corr_113: -2.50871540e-01 sys_corr_114: 5.13646832e-04 - sys_corr_115: -6.91441901e-03 + sys_corr_115: 6.91441901e-03 sys_corr_116: 5.44716709e-03 sys_corr_117: -5.10046518e-03 sys_corr_118: -7.35970173e-02 sys_corr_119: 2.18022064e-03 sys_corr_120: -5.54085580e-03 - sys_corr_121: 8.03522671e-04 - sys_corr_122: 2.44325374e-05 - sys_corr_123: 3.85995439e-03 + sys_corr_121: -8.03522671e-04 + sys_corr_122: 3.85995439e-03 + sys_corr_123: 2.44325374e-05 sys_corr_124: 1.23531491e-02 - sys_corr_125: -1.85202271e-03 - sys_corr_126: -2.23871753e-03 + sys_corr_125: 1.85202271e-03 + sys_corr_126: 2.23871753e-03 sys_corr_127: 3.06340644e-02 sys_corr_128: 3.54176909e-01 - sys_corr_129: -6.01849280e-02 - sys_corr_130: 1.03095032e-02 + sys_corr_129: 6.01849280e-02 + sys_corr_130: -1.03095032e-02 sys_corr_131: -4.37156919e-03 - sys_corr_132: -3.46377162e-03 + sys_corr_132: 3.46377162e-03 stat: 0.0 luminosity: 4.82058892e+03 - sys_corr_1: 1.41299659e+03 @@ -12203,9 +12203,9 @@ bins: sys_corr_7: -2.77141756e+02 sys_corr_8: -1.79925945e+02 sys_corr_9: 1.13115335e+02 - sys_corr_10: 4.34144313e+01 + sys_corr_10: -4.34144313e+01 sys_corr_11: 1.27913027e+02 - sys_corr_12: -1.71076520e+02 + sys_corr_12: 1.71076520e+02 sys_corr_13: 8.74721064e+01 sys_corr_14: 1.54193037e+02 sys_corr_15: 5.73378223e-01 @@ -12231,60 +12231,60 @@ bins: sys_corr_35: 1.15465769e+00 sys_corr_36: 3.67343182e+00 sys_corr_37: 3.42336266e-01 - sys_corr_38: -1.65912132e+00 - sys_corr_39: 2.05914203e+00 - sys_corr_40: -3.02621874e-01 - sys_corr_41: 8.04496479e-01 - sys_corr_42: 1.62324384e-01 - sys_corr_43: 1.30170734e+00 + sys_corr_38: 1.65912132e+00 + sys_corr_39: -2.05914203e+00 + sys_corr_40: 3.02621874e-01 + sys_corr_41: -8.04496479e-01 + sys_corr_42: -1.62324384e-01 + sys_corr_43: -1.30170734e+00 sys_corr_44: 8.43143149e-01 - sys_corr_45: -1.23164906e+00 - sys_corr_46: 2.28987090e-01 + sys_corr_45: 1.23164906e+00 + sys_corr_46: -2.28987090e-01 sys_corr_47: -1.54768393e+00 - sys_corr_48: -3.76362912e+00 + sys_corr_48: 3.76362912e+00 sys_corr_49: 1.32524010e+00 sys_corr_50: 3.54540292e+00 sys_corr_51: 6.48173818e+00 - sys_corr_52: -2.67114045e+00 - sys_corr_53: 2.96273323e-01 + sys_corr_52: 2.67114045e+00 + sys_corr_53: -2.96273323e-01 sys_corr_54: -7.74202249e-01 - sys_corr_55: 3.45564636e-01 + sys_corr_55: -3.45564636e-01 sys_corr_56: -1.42447380e+00 - sys_corr_57: -4.12441186e-01 + sys_corr_57: 4.12441186e-01 sys_corr_58: -6.54837805e-01 - sys_corr_59: 4.06707837e-01 + sys_corr_59: -4.06707837e-01 sys_corr_60: -1.57900894e-01 sys_corr_61: 1.50846964e+00 sys_corr_62: 3.25125165e-01 - sys_corr_63: 2.87022844e-01 - sys_corr_64: 5.33197627e-01 + sys_corr_63: -2.87022844e-01 + sys_corr_64: -5.33197627e-01 sys_corr_65: -1.97439093e-01 sys_corr_66: -2.62921201e-01 sys_corr_67: -3.69675082e-01 sys_corr_68: 3.01133747e-02 sys_corr_69: -7.78789343e-01 sys_corr_70: 1.83993420e+00 - sys_corr_71: -7.31026806e-02 - sys_corr_72: -5.09037471e-01 - sys_corr_73: -2.96600706e-01 + sys_corr_71: -2.96600706e-01 + sys_corr_72: 5.09037471e-01 + sys_corr_73: -7.31026806e-02 sys_corr_74: -7.41455572e-01 sys_corr_75: -7.74496359e-01 sys_corr_76: 1.45383181e+00 - sys_corr_77: -8.88027889e-01 - sys_corr_78: -1.20238582e+00 - sys_corr_79: -5.83965217e-02 - sys_corr_80: -1.62666053e-01 + sys_corr_77: 8.88027889e-01 + sys_corr_78: -5.83965217e-02 + sys_corr_79: 1.62666053e-01 + sys_corr_80: 1.20238582e+00 sys_corr_81: 5.76304421e-01 sys_corr_82: 1.36836693e-01 sys_corr_83: -1.61072320e-01 - sys_corr_84: 1.71777407e+00 + sys_corr_84: -1.71777407e+00 sys_corr_85: 6.09357896e-01 sys_corr_86: -4.55509214e-02 sys_corr_87: -1.36325911e+00 sys_corr_88: 3.51904093e-01 sys_corr_89: -4.03177444e-01 sys_corr_90: 6.69016704e-01 - sys_corr_91: 6.66313887e-01 + sys_corr_91: -6.66313887e-01 sys_corr_92: -5.42193325e-01 sys_corr_93: 1.03305450e-01 sys_corr_94: 1.85093854e-01 @@ -12292,40 +12292,40 @@ bins: sys_corr_96: 7.53535618e-02 sys_corr_97: 6.07426959e-01 sys_corr_98: 1.99862818e-01 - sys_corr_99: 7.53184778e-02 - sys_corr_100: 2.74362963e-02 + sys_corr_99: -7.53184778e-02 + sys_corr_100: -2.74362963e-02 sys_corr_101: -5.11138231e-02 - sys_corr_102: -4.25744083e-01 - sys_corr_103: 9.98410406e-01 - sys_corr_104: -4.07009722e-02 - sys_corr_105: 6.84725273e-02 - sys_corr_106: 1.65598049e-02 - sys_corr_107: -1.33363895e-01 + sys_corr_102: 4.25744083e-01 + sys_corr_103: -9.98410406e-01 + sys_corr_104: 4.07009722e-02 + sys_corr_105: -6.84725273e-02 + sys_corr_106: -1.65598049e-02 + sys_corr_107: 1.33363895e-01 sys_corr_108: -1.51645196e+00 sys_corr_109: -7.85028333e-01 sys_corr_110: 4.20517861e-01 - sys_corr_111: 3.78057344e-01 + sys_corr_111: -3.78057344e-01 sys_corr_112: 1.51934589e-01 sys_corr_113: -2.20267046e-01 sys_corr_114: 1.30605305e-03 - sys_corr_115: -6.62630872e-02 + sys_corr_115: 6.62630872e-02 sys_corr_116: -4.74923855e-02 sys_corr_117: 1.52899107e-02 sys_corr_118: -4.72245193e-02 sys_corr_119: 7.34130229e-04 sys_corr_120: 1.60439997e-02 - sys_corr_121: -1.58398610e-03 - sys_corr_122: -1.61206462e-02 - sys_corr_123: 1.93670583e-02 + sys_corr_121: 1.58398610e-03 + sys_corr_122: 1.93670583e-02 + sys_corr_123: -1.61206462e-02 sys_corr_124: 4.24141292e-03 - sys_corr_125: 4.43049940e-03 - sys_corr_126: -8.57907201e-03 + sys_corr_125: -4.43049940e-03 + sys_corr_126: 8.57907201e-03 sys_corr_127: 1.85335255e-01 sys_corr_128: -2.09030326e-01 - sys_corr_129: -2.80109827e-01 - sys_corr_130: 7.74250544e-03 + sys_corr_129: 2.80109827e-01 + sys_corr_130: -7.74250544e-03 sys_corr_131: 4.20693342e-03 - sys_corr_132: -3.53012559e-04 + sys_corr_132: 3.53012559e-04 stat: 0.0 luminosity: 4.32856189e+03 - sys_corr_1: 7.38571437e+02 @@ -12337,9 +12337,9 @@ bins: sys_corr_7: -3.22216339e+02 sys_corr_8: -2.88845129e+02 sys_corr_9: 1.87129318e+02 - sys_corr_10: 9.17386068e+01 + sys_corr_10: -9.17386068e+01 sys_corr_11: -6.39130444e+01 - sys_corr_12: -2.07388951e+02 + sys_corr_12: 2.07388951e+02 sys_corr_13: 3.47025583e+02 sys_corr_14: -2.52330482e+02 sys_corr_15: 1.94002640e+02 @@ -12365,60 +12365,60 @@ bins: sys_corr_35: 1.05243191e+00 sys_corr_36: 1.66116047e+00 sys_corr_37: 7.57123142e-01 - sys_corr_38: 2.89301235e-01 - sys_corr_39: 4.75846243e-01 - sys_corr_40: -1.38753417e-01 - sys_corr_41: -5.51545858e-01 - sys_corr_42: 2.94030991e-01 - sys_corr_43: -6.18688443e-01 + sys_corr_38: -2.89301235e-01 + sys_corr_39: -4.75846243e-01 + sys_corr_40: 1.38753417e-01 + sys_corr_41: 5.51545858e-01 + sys_corr_42: -2.94030991e-01 + sys_corr_43: 6.18688443e-01 sys_corr_44: -7.47835778e-01 - sys_corr_45: -6.12928834e-01 - sys_corr_46: 4.14824301e-01 + sys_corr_45: 6.12928834e-01 + sys_corr_46: -4.14824301e-01 sys_corr_47: -2.02862858e+00 - sys_corr_48: -2.17559181e+00 + sys_corr_48: 2.17559181e+00 sys_corr_49: 1.31770990e+00 sys_corr_50: 1.67905924e+00 sys_corr_51: 1.79598625e+00 - sys_corr_52: -1.62726177e+00 - sys_corr_53: 5.90953130e-01 + sys_corr_52: 1.62726177e+00 + sys_corr_53: -5.90953130e-01 sys_corr_54: -6.72892505e-01 - sys_corr_55: -1.41387410e-01 + sys_corr_55: 1.41387410e-01 sys_corr_56: -4.98196962e-01 - sys_corr_57: 7.42490608e-01 + sys_corr_57: -7.42490608e-01 sys_corr_58: 2.92288827e-02 - sys_corr_59: -3.21077015e-01 + sys_corr_59: 3.21077015e-01 sys_corr_60: -1.88548179e-01 sys_corr_61: 5.36320783e-01 sys_corr_62: 5.10776662e-01 - sys_corr_63: -7.53072739e-01 - sys_corr_64: 2.03136362e-01 + sys_corr_63: 7.53072739e-01 + sys_corr_64: -2.03136362e-01 sys_corr_65: 3.48559781e-01 sys_corr_66: 4.96254777e-01 sys_corr_67: 8.83204462e-02 sys_corr_68: 1.11588420e+00 sys_corr_69: 6.48016805e-01 sys_corr_70: -9.18327878e-01 - sys_corr_71: 1.26074042e-01 - sys_corr_72: -2.99560777e-01 - sys_corr_73: -2.72931543e-01 + sys_corr_71: -2.72931543e-01 + sys_corr_72: 2.99560777e-01 + sys_corr_73: 1.26074042e-01 sys_corr_74: 4.44085690e-01 sys_corr_75: -5.85139355e-01 sys_corr_76: -5.93718837e-01 - sys_corr_77: 1.81210392e-01 - sys_corr_78: -2.07452394e-01 - sys_corr_79: -2.80729805e-01 - sys_corr_80: -1.38951773e-01 + sys_corr_77: -1.81210392e-01 + sys_corr_78: -2.80729805e-01 + sys_corr_79: 1.38951773e-01 + sys_corr_80: 2.07452394e-01 sys_corr_81: -9.85656773e-01 sys_corr_82: -4.46730074e-01 sys_corr_83: 1.52348970e-01 - sys_corr_84: 1.22877510e+00 + sys_corr_84: -1.22877510e+00 sys_corr_85: -7.82610042e-01 sys_corr_86: -2.09177930e-02 sys_corr_87: -6.30187757e-01 sys_corr_88: 3.02892520e-01 sys_corr_89: -9.68011754e-03 sys_corr_90: -1.00721467e+00 - sys_corr_91: 6.12582249e-02 + sys_corr_91: -6.12582249e-02 sys_corr_92: -1.34120489e-01 sys_corr_93: 1.10645539e-02 sys_corr_94: 2.70852277e-02 @@ -12426,40 +12426,40 @@ bins: sys_corr_96: 5.53805760e-02 sys_corr_97: 3.90971193e-01 sys_corr_98: 1.58677853e-01 - sys_corr_99: -1.78295923e-01 - sys_corr_100: 7.58704910e-02 + sys_corr_99: 1.78295923e-01 + sys_corr_100: -7.58704910e-02 sys_corr_101: 2.92358720e-02 - sys_corr_102: -1.24822154e-01 - sys_corr_103: 7.57736360e-02 - sys_corr_104: 1.84661700e-02 - sys_corr_105: -2.12117355e-02 - sys_corr_106: -9.28017381e-02 - sys_corr_107: -3.25787294e-01 + sys_corr_102: 1.24822154e-01 + sys_corr_103: -7.57736360e-02 + sys_corr_104: -1.84661700e-02 + sys_corr_105: 2.12117355e-02 + sys_corr_106: 9.28017381e-02 + sys_corr_107: 3.25787294e-01 sys_corr_108: 8.50928189e-01 sys_corr_109: -1.87133824e-01 sys_corr_110: -2.04707446e-01 - sys_corr_111: -4.58053312e-02 + sys_corr_111: 4.58053312e-02 sys_corr_112: 8.37667265e-01 sys_corr_113: 3.10783883e-01 sys_corr_114: 7.25852415e-04 - sys_corr_115: -1.68011830e-01 + sys_corr_115: 1.68011830e-01 sys_corr_116: -2.09929413e-02 sys_corr_117: 9.50582221e-03 sys_corr_118: 1.33097799e-02 sys_corr_119: -2.71271582e-04 sys_corr_120: -4.62730165e-03 - sys_corr_121: -1.75067710e-03 - sys_corr_122: -7.67755778e-03 - sys_corr_123: 6.33104814e-03 + sys_corr_121: 1.75067710e-03 + sys_corr_122: 6.33104814e-03 + sys_corr_123: -7.67755778e-03 sys_corr_124: -1.93894503e-02 - sys_corr_125: 9.21280645e-03 - sys_corr_126: -7.14497758e-03 + sys_corr_125: -9.21280645e-03 + sys_corr_126: 7.14497758e-03 sys_corr_127: -1.13058135e-01 sys_corr_128: 8.66727161e-03 - sys_corr_129: -2.41817667e-02 - sys_corr_130: 5.01748976e-03 + sys_corr_129: 2.41817667e-02 + sys_corr_130: -5.01748976e-03 sys_corr_131: -7.71982905e-03 - sys_corr_132: -7.27014982e-03 + sys_corr_132: 7.27014982e-03 stat: 0.0 luminosity: 3.91650464e+03 - sys_corr_1: 9.09609094e+01 @@ -12471,9 +12471,9 @@ bins: sys_corr_7: -5.06552957e+01 sys_corr_8: -1.18381357e+02 sys_corr_9: 1.34947366e+02 - sys_corr_10: 7.80720416e+01 + sys_corr_10: -7.80720416e+01 sys_corr_11: -8.57388485e+01 - sys_corr_12: -4.25447522e+01 + sys_corr_12: 4.25447522e+01 sys_corr_13: 5.40413665e+01 sys_corr_14: -7.80521101e+01 sys_corr_15: 9.29537875e+01 @@ -12499,60 +12499,60 @@ bins: sys_corr_35: 7.96676208e-01 sys_corr_36: -1.94311291e+00 sys_corr_37: 2.26185337e+00 - sys_corr_38: 4.99015030e-01 - sys_corr_39: 1.11846402e+00 - sys_corr_40: -1.38453386e+00 - sys_corr_41: 1.85206592e+00 - sys_corr_42: -4.29733218e-01 - sys_corr_43: 1.00264154e+00 + sys_corr_38: -4.99015030e-01 + sys_corr_39: -1.11846402e+00 + sys_corr_40: 1.38453386e+00 + sys_corr_41: -1.85206592e+00 + sys_corr_42: 4.29733218e-01 + sys_corr_43: -1.00264154e+00 sys_corr_44: 1.84501469e+00 - sys_corr_45: 6.94672711e-02 - sys_corr_46: -7.33942663e-01 + sys_corr_45: -6.94672711e-02 + sys_corr_46: 7.33942663e-01 sys_corr_47: -1.46289284e+00 - sys_corr_48: 1.31733868e-01 + sys_corr_48: -1.31733868e-01 sys_corr_49: 2.43929250e+00 sys_corr_50: -1.21923374e+00 sys_corr_51: -2.17132879e+00 - sys_corr_52: 4.32369673e-01 - sys_corr_53: 6.22758956e-01 + sys_corr_52: -4.32369673e-01 + sys_corr_53: -6.22758956e-01 sys_corr_54: 7.83018837e-01 - sys_corr_55: 2.65291012e-01 + sys_corr_55: -2.65291012e-01 sys_corr_56: -7.61389415e-01 - sys_corr_57: -2.26956229e-01 + sys_corr_57: 2.26956229e-01 sys_corr_58: -2.43956054e-01 - sys_corr_59: -1.14495000e+00 + sys_corr_59: 1.14495000e+00 sys_corr_60: 1.79536919e-01 sys_corr_61: -9.26823408e-01 sys_corr_62: -3.76928226e-01 - sys_corr_63: -1.21485618e-01 - sys_corr_64: -1.64062769e-01 + sys_corr_63: 1.21485618e-01 + sys_corr_64: 1.64062769e-01 sys_corr_65: 2.23441772e-01 sys_corr_66: -4.99839303e-01 sys_corr_67: -6.06389973e-01 sys_corr_68: 9.69481697e-01 sys_corr_69: -1.69114769e-03 sys_corr_70: -2.28016528e-01 - sys_corr_71: -5.10886097e-01 - sys_corr_72: 9.34660348e-01 - sys_corr_73: 2.09035964e-01 + sys_corr_71: 2.09035964e-01 + sys_corr_72: -9.34660348e-01 + sys_corr_73: -5.10886097e-01 sys_corr_74: 5.00133104e-01 sys_corr_75: -3.66137960e-01 sys_corr_76: -1.53704536e-01 - sys_corr_77: -1.20812935e-01 - sys_corr_78: -3.84599770e-01 - sys_corr_79: 4.04555243e-01 - sys_corr_80: 4.15181949e-01 + sys_corr_77: 1.20812935e-01 + sys_corr_78: 4.04555243e-01 + sys_corr_79: -4.15181949e-01 + sys_corr_80: 3.84599770e-01 sys_corr_81: -8.56107566e-01 sys_corr_82: 1.09449136e-01 sys_corr_83: 4.26707681e-01 - sys_corr_84: 4.03930838e-01 + sys_corr_84: -4.03930838e-01 sys_corr_85: 2.47375258e-01 sys_corr_86: -5.17356380e-01 sys_corr_87: -1.26636013e-01 sys_corr_88: 4.72201278e-01 sys_corr_89: -1.71301816e-01 sys_corr_90: 6.14213046e-01 - sys_corr_91: -1.79221339e+00 + sys_corr_91: 1.79221339e+00 sys_corr_92: -9.70366588e-02 sys_corr_93: 3.23935290e-03 sys_corr_94: -2.78045435e-02 @@ -12560,40 +12560,40 @@ bins: sys_corr_96: 6.35821760e-02 sys_corr_97: 3.08392835e-01 sys_corr_98: 2.67435612e-01 - sys_corr_99: -2.13255841e-01 - sys_corr_100: -3.45449609e-01 + sys_corr_99: 2.13255841e-01 + sys_corr_100: 3.45449609e-01 sys_corr_101: -2.59034316e-01 - sys_corr_102: -5.34362329e-01 - sys_corr_103: -8.28378690e-02 - sys_corr_104: -1.25201036e-01 - sys_corr_105: -3.69525941e-01 - sys_corr_106: 8.12715061e-02 - sys_corr_107: -2.37741156e-02 + sys_corr_102: 5.34362329e-01 + sys_corr_103: 8.28378690e-02 + sys_corr_104: 1.25201036e-01 + sys_corr_105: 3.69525941e-01 + sys_corr_106: -8.12715061e-02 + sys_corr_107: 2.37741156e-02 sys_corr_108: -6.67093801e-02 sys_corr_109: -5.65884300e-02 sys_corr_110: -1.20297656e-01 - sys_corr_111: -1.07832088e-01 + sys_corr_111: 1.07832088e-01 sys_corr_112: -1.00932968e+00 sys_corr_113: 1.14319337e+00 sys_corr_114: -8.58386469e-04 - sys_corr_115: -2.80939064e-01 + sys_corr_115: 2.80939064e-01 sys_corr_116: -2.61765863e-02 sys_corr_117: 1.00169019e-02 sys_corr_118: 1.84686806e-01 sys_corr_119: -1.42878698e-03 sys_corr_120: 4.72307021e-03 - sys_corr_121: -9.65901132e-04 - sys_corr_122: -8.05819745e-03 - sys_corr_123: 1.43737922e-02 + sys_corr_121: 9.65901132e-04 + sys_corr_122: 1.43737922e-02 + sys_corr_123: -8.05819745e-03 sys_corr_124: -2.45577894e-02 - sys_corr_125: 3.56030253e-03 - sys_corr_126: -8.31048652e-03 + sys_corr_125: -3.56030253e-03 + sys_corr_126: 8.31048652e-03 sys_corr_127: -1.86806435e-01 sys_corr_128: 6.19204675e-02 - sys_corr_129: 1.65299153e-01 - sys_corr_130: 6.49280966e-03 + sys_corr_129: -1.65299153e-01 + sys_corr_130: -6.49280966e-03 sys_corr_131: 2.95165835e-03 - sys_corr_132: 6.14811713e-02 + sys_corr_132: -6.14811713e-02 stat: 0.0 luminosity: 3.38088513e+03 - sys_corr_1: -2.47097933e+02 @@ -12605,9 +12605,9 @@ bins: sys_corr_7: 4.89221580e+00 sys_corr_8: -3.14944082e+01 sys_corr_9: 6.60641664e+01 - sys_corr_10: 1.41473611e+01 + sys_corr_10: -1.41473611e+01 sys_corr_11: -1.14449647e+01 - sys_corr_12: 3.99165731e+01 + sys_corr_12: -3.99165731e+01 sys_corr_13: -2.51134675e+01 sys_corr_14: -4.22688283e+01 sys_corr_15: -1.17537070e+01 @@ -12633,60 +12633,60 @@ bins: sys_corr_35: -4.06642994e+00 sys_corr_36: -1.10026151e+00 sys_corr_37: 2.32852997e+00 - sys_corr_38: -6.08051389e-03 - sys_corr_39: 1.63899294e+00 - sys_corr_40: -2.51346510e+00 - sys_corr_41: -8.56087806e-01 - sys_corr_42: -1.91748961e+00 - sys_corr_43: 3.77085970e-01 + sys_corr_38: 6.08051389e-03 + sys_corr_39: -1.63899294e+00 + sys_corr_40: 2.51346510e+00 + sys_corr_41: 8.56087806e-01 + sys_corr_42: 1.91748961e+00 + sys_corr_43: -3.77085970e-01 sys_corr_44: 3.52292489e+00 - sys_corr_45: 1.00089710e+00 - sys_corr_46: -1.44204589e-03 + sys_corr_45: -1.00089710e+00 + sys_corr_46: 1.44204589e-03 sys_corr_47: 4.08667592e+00 - sys_corr_48: 8.18185653e+00 + sys_corr_48: -8.18185653e+00 sys_corr_49: -5.68550442e-01 sys_corr_50: -6.30965814e+00 sys_corr_51: -7.63383047e+00 - sys_corr_52: 5.95277639e+00 - sys_corr_53: 2.52380308e-01 + sys_corr_52: -5.95277639e+00 + sys_corr_53: -2.52380308e-01 sys_corr_54: 9.36108911e-01 - sys_corr_55: -1.75864773e+00 + sys_corr_55: 1.75864773e+00 sys_corr_56: 3.49447628e-01 - sys_corr_57: 1.47778096e-03 + sys_corr_57: -1.47778096e-03 sys_corr_58: 4.33061360e-01 - sys_corr_59: -1.07191244e+00 + sys_corr_59: 1.07191244e+00 sys_corr_60: -1.69242918e-01 sys_corr_61: 4.11803230e-01 sys_corr_62: 3.48072160e-01 - sys_corr_63: 8.89834643e-02 - sys_corr_64: -4.25281214e-01 + sys_corr_63: -8.89834643e-02 + sys_corr_64: 4.25281214e-01 sys_corr_65: -2.88863556e-01 sys_corr_66: -4.01574616e-01 sys_corr_67: -8.61875040e-01 sys_corr_68: -9.13982281e-02 sys_corr_69: -2.78424571e-02 sys_corr_70: -7.83471193e-02 - sys_corr_71: -1.10282277e+00 - sys_corr_72: 8.78184256e-01 - sys_corr_73: -1.43678224e-01 + sys_corr_71: -1.43678224e-01 + sys_corr_72: -8.78184256e-01 + sys_corr_73: -1.10282277e+00 sys_corr_74: 2.27528681e-01 sys_corr_75: 2.21569788e-01 sys_corr_76: 1.12838167e-01 - sys_corr_77: -4.61976596e-01 - sys_corr_78: 5.23153159e-01 - sys_corr_79: 2.97722590e-01 - sys_corr_80: -1.38593164e-01 + sys_corr_77: 4.61976596e-01 + sys_corr_78: 2.97722590e-01 + sys_corr_79: 1.38593164e-01 + sys_corr_80: -5.23153159e-01 sys_corr_81: 9.63507460e-01 sys_corr_82: 2.03483549e-01 sys_corr_83: -2.00032130e+00 - sys_corr_84: -8.38801373e-01 + sys_corr_84: 8.38801373e-01 sys_corr_85: 9.05708492e-01 sys_corr_86: 6.84889197e-01 sys_corr_87: 1.49762171e+00 sys_corr_88: 1.00418114e+00 sys_corr_89: 2.58554198e-01 sys_corr_90: 4.48588471e-01 - sys_corr_91: 5.44733610e-01 + sys_corr_91: -5.44733610e-01 sys_corr_92: 8.19365973e-02 sys_corr_93: -8.30756444e-02 sys_corr_94: -1.16873882e-01 @@ -12694,40 +12694,40 @@ bins: sys_corr_96: -4.78605129e-02 sys_corr_97: -1.84811525e-01 sys_corr_98: 2.86574316e-02 - sys_corr_99: 7.71862168e-03 - sys_corr_100: -1.31623210e-01 + sys_corr_99: -7.71862168e-03 + sys_corr_100: 1.31623210e-01 sys_corr_101: -1.25411796e-01 - sys_corr_102: -3.13308744e-01 - sys_corr_103: -2.26388911e-01 - sys_corr_104: 1.01970319e-01 - sys_corr_105: -3.51984080e-01 - sys_corr_106: 5.39405528e-02 - sys_corr_107: -2.39137017e-01 + sys_corr_102: 3.13308744e-01 + sys_corr_103: 2.26388911e-01 + sys_corr_104: -1.01970319e-01 + sys_corr_105: 3.51984080e-01 + sys_corr_106: -5.39405528e-02 + sys_corr_107: 2.39137017e-01 sys_corr_108: 3.55485903e-01 sys_corr_109: -1.44885706e-01 sys_corr_110: -1.02112683e-01 - sys_corr_111: -2.34104156e-01 + sys_corr_111: 2.34104156e-01 sys_corr_112: 3.20549896e-01 sys_corr_113: -1.03869943e+00 sys_corr_114: -2.72363917e-03 - sys_corr_115: 1.61401669e-01 + sys_corr_115: -1.61401669e-01 sys_corr_116: 2.86702063e-02 sys_corr_117: 2.24351436e-02 sys_corr_118: 2.50565722e-01 sys_corr_119: -4.16246259e-03 sys_corr_120: 1.57953349e-02 - sys_corr_121: 3.30170930e-03 - sys_corr_122: 1.65692804e-02 - sys_corr_123: -2.43121474e-02 + sys_corr_121: -3.30170930e-03 + sys_corr_122: -2.43121474e-02 + sys_corr_123: 1.65692804e-02 sys_corr_124: 1.52160043e-01 - sys_corr_125: -2.48606757e-02 - sys_corr_126: 2.18816949e-03 + sys_corr_125: 2.48606757e-02 + sys_corr_126: -2.18816949e-03 sys_corr_127: -1.65983052e-01 sys_corr_128: 1.44154949e-01 - sys_corr_129: 1.34399031e+00 - sys_corr_130: -1.35402021e-02 + sys_corr_129: -1.34399031e+00 + sys_corr_130: 1.35402021e-02 sys_corr_131: 1.95602599e-02 - sys_corr_132: 7.89058062e-02 + sys_corr_132: -7.89058062e-02 stat: 0.0 luminosity: 2.89133819e+03 - sys_corr_1: -4.72825815e+02 @@ -12739,9 +12739,9 @@ bins: sys_corr_7: 5.93241997e+01 sys_corr_8: 5.58371313e+01 sys_corr_9: -1.70203728e+01 - sys_corr_10: -5.43595184e+01 + sys_corr_10: 5.43595184e+01 sys_corr_11: 1.92154191e+01 - sys_corr_12: 8.01437487e+01 + sys_corr_12: -8.01437487e+01 sys_corr_13: -1.21246911e+02 sys_corr_14: -1.37190116e+01 sys_corr_15: -3.80648133e+01 @@ -12767,60 +12767,60 @@ bins: sys_corr_35: 2.90641915e+00 sys_corr_36: 1.90745566e+00 sys_corr_37: 1.56512765e+00 - sys_corr_38: -2.87890237e-01 - sys_corr_39: 2.20044499e-02 - sys_corr_40: -9.55306655e-01 - sys_corr_41: 2.90288429e-02 - sys_corr_42: -9.94166100e-02 - sys_corr_43: 1.53776554e+00 + sys_corr_38: 2.87890237e-01 + sys_corr_39: -2.20044499e-02 + sys_corr_40: 9.55306655e-01 + sys_corr_41: -2.90288429e-02 + sys_corr_42: 9.94166100e-02 + sys_corr_43: -1.53776554e+00 sys_corr_44: -3.19006686e+00 - sys_corr_45: -1.60948581e+00 - sys_corr_46: -9.02424339e-01 + sys_corr_45: 1.60948581e+00 + sys_corr_46: 9.02424339e-01 sys_corr_47: 6.88706542e-01 - sys_corr_48: -4.62874152e+00 + sys_corr_48: 4.62874152e+00 sys_corr_49: -6.27141516e-01 sys_corr_50: 9.00010418e+00 sys_corr_51: 4.80711218e+00 - sys_corr_52: -2.91516240e+00 - sys_corr_53: -8.67117248e-01 + sys_corr_52: 2.91516240e+00 + sys_corr_53: 8.67117248e-01 sys_corr_54: -2.34389843e+00 - sys_corr_55: -1.01505040e+00 + sys_corr_55: 1.01505040e+00 sys_corr_56: 1.11298621e+00 - sys_corr_57: 8.58685115e-01 + sys_corr_57: -8.58685115e-01 sys_corr_58: -1.35180934e+00 - sys_corr_59: 2.22013373e+00 + sys_corr_59: -2.22013373e+00 sys_corr_60: -6.30836801e-01 sys_corr_61: -1.08506955e+00 sys_corr_62: -4.13255840e-01 - sys_corr_63: -1.19643544e-01 - sys_corr_64: 1.71711469e+00 + sys_corr_63: 1.19643544e-01 + sys_corr_64: -1.71711469e+00 sys_corr_65: 1.77498196e-01 sys_corr_66: 2.57104530e-01 sys_corr_67: 2.57356807e+00 sys_corr_68: -9.09557931e-02 sys_corr_69: 7.49344653e-01 sys_corr_70: -1.17971544e+00 - sys_corr_71: 1.64156736e+00 - sys_corr_72: -6.76139409e-01 - sys_corr_73: -1.90332046e-01 + sys_corr_71: -1.90332046e-01 + sys_corr_72: 6.76139409e-01 + sys_corr_73: 1.64156736e+00 sys_corr_74: 8.54241900e-01 sys_corr_75: 9.32282554e-01 sys_corr_76: 1.09968644e+00 - sys_corr_77: 6.41652917e-01 - sys_corr_78: 3.44462096e-01 - sys_corr_79: 5.23295731e-02 - sys_corr_80: 7.73391211e-01 + sys_corr_77: -6.41652917e-01 + sys_corr_78: 5.23295731e-02 + sys_corr_79: -7.73391211e-01 + sys_corr_80: -3.44462096e-01 sys_corr_81: -5.80356062e-01 sys_corr_82: -3.13676495e-01 sys_corr_83: 1.61099216e+00 - sys_corr_84: -3.63129119e-02 + sys_corr_84: 3.63129119e-02 sys_corr_85: 8.84218822e-01 sys_corr_86: -1.52703558e+00 sys_corr_87: -3.81488425e-01 sys_corr_88: -3.56637214e+00 sys_corr_89: 6.79529259e-01 sys_corr_90: 6.55540468e-01 - sys_corr_91: 1.60646445e+00 + sys_corr_91: -1.60646445e+00 sys_corr_92: -3.93666968e-01 sys_corr_93: -7.43639590e-02 sys_corr_94: -4.01422346e-01 @@ -12828,40 +12828,40 @@ bins: sys_corr_96: -8.30977308e-03 sys_corr_97: 1.87953393e-01 sys_corr_98: 1.13527211e-01 - sys_corr_99: -2.27170327e-01 - sys_corr_100: 1.74456352e-02 + sys_corr_99: 2.27170327e-01 + sys_corr_100: -1.74456352e-02 sys_corr_101: -2.02612167e-01 - sys_corr_102: -2.51985449e-01 - sys_corr_103: -3.40338477e-01 - sys_corr_104: -9.52286501e-02 - sys_corr_105: -4.07058970e-01 - sys_corr_106: -2.60427421e-02 - sys_corr_107: -2.67546082e-01 + sys_corr_102: 2.51985449e-01 + sys_corr_103: 3.40338477e-01 + sys_corr_104: 9.52286501e-02 + sys_corr_105: 4.07058970e-01 + sys_corr_106: 2.60427421e-02 + sys_corr_107: 2.67546082e-01 sys_corr_108: -1.84946367e-01 sys_corr_109: -5.51490792e-01 sys_corr_110: -1.53700754e-02 - sys_corr_111: -1.27701344e-01 + sys_corr_111: 1.27701344e-01 sys_corr_112: -5.29447579e-01 sys_corr_113: -4.43809595e-02 sys_corr_114: -2.67972089e-03 - sys_corr_115: 1.29978545e+00 + sys_corr_115: -1.29978545e+00 sys_corr_116: 9.89610256e-02 sys_corr_117: 1.33794000e-03 sys_corr_118: -1.39776595e-01 sys_corr_119: -2.31283581e-03 sys_corr_120: -2.12767589e-04 - sys_corr_121: 4.33291845e-03 - sys_corr_122: -6.72700786e-03 - sys_corr_123: -1.34645943e-02 + sys_corr_121: -4.33291845e-03 + sys_corr_122: -1.34645943e-02 + sys_corr_123: -6.72700786e-03 sys_corr_124: -9.18976405e-02 - sys_corr_125: -8.60599287e-03 - sys_corr_126: 2.15868300e-03 + sys_corr_125: 8.60599287e-03 + sys_corr_126: -2.15868300e-03 sys_corr_127: -6.42189437e-02 sys_corr_128: 4.82187944e-02 - sys_corr_129: -1.72703413e+00 - sys_corr_130: 2.88005623e-02 + sys_corr_129: 1.72703413e+00 + sys_corr_130: -2.88005623e-02 sys_corr_131: -5.22520016e-03 - sys_corr_132: 7.59879034e-02 + sys_corr_132: -7.59879034e-02 stat: 0.0 luminosity: 2.33892545e+03 - sys_corr_1: -6.53711132e+02 @@ -12873,9 +12873,9 @@ bins: sys_corr_7: 1.43918847e+02 sys_corr_8: 1.23657418e+02 sys_corr_9: -3.65047070e+01 - sys_corr_10: -5.62230723e+01 + sys_corr_10: 5.62230723e+01 sys_corr_11: 1.75682723e+01 - sys_corr_12: 1.40093900e+02 + sys_corr_12: -1.40093900e+02 sys_corr_13: -1.53674494e+02 sys_corr_14: 4.71228298e+01 sys_corr_15: -6.64697518e+01 @@ -12901,60 +12901,60 @@ bins: sys_corr_35: 8.68214707e-03 sys_corr_36: 1.54438013e-01 sys_corr_37: -9.41411849e-01 - sys_corr_38: 1.04322896e+00 - sys_corr_39: -1.27147017e+00 - sys_corr_40: -2.59455123e-01 - sys_corr_41: 5.32535786e-01 - sys_corr_42: 1.33886253e+00 - sys_corr_43: 1.90707706e+00 + sys_corr_38: -1.04322896e+00 + sys_corr_39: 1.27147017e+00 + sys_corr_40: 2.59455123e-01 + sys_corr_41: -5.32535786e-01 + sys_corr_42: -1.33886253e+00 + sys_corr_43: -1.90707706e+00 sys_corr_44: 2.44420767e-01 - sys_corr_45: 3.45435101e-02 - sys_corr_46: 1.41849373e+00 + sys_corr_45: -3.45435101e-02 + sys_corr_46: -1.41849373e+00 sys_corr_47: 1.46651387e+00 - sys_corr_48: 4.81487556e-02 + sys_corr_48: -4.81487556e-02 sys_corr_49: -3.45610989e+00 sys_corr_50: 1.33714725e+00 sys_corr_51: 3.43785320e-01 - sys_corr_52: 1.04143672e+00 - sys_corr_53: -2.06664051e+00 + sys_corr_52: -1.04143672e+00 + sys_corr_53: 2.06664051e+00 sys_corr_54: -3.46400396e-01 - sys_corr_55: 2.67367690e+00 + sys_corr_55: -2.67367690e+00 sys_corr_56: 6.90949214e-01 - sys_corr_57: 3.93131512e-01 + sys_corr_57: -3.93131512e-01 sys_corr_58: -5.46737603e-01 - sys_corr_59: 2.17847651e+00 + sys_corr_59: -2.17847651e+00 sys_corr_60: -2.28207636e-01 sys_corr_61: 8.12141892e-01 sys_corr_62: 4.30254347e-01 - sys_corr_63: 6.60155202e-01 - sys_corr_64: -1.05699822e+00 + sys_corr_63: -6.60155202e-01 + sys_corr_64: 1.05699822e+00 sys_corr_65: -3.96065576e-02 sys_corr_66: 5.59580708e-01 sys_corr_67: -4.63838918e-01 sys_corr_68: -1.42836798e+00 sys_corr_69: 1.06303404e+00 sys_corr_70: -4.65164095e-01 - sys_corr_71: 7.27160681e-01 - sys_corr_72: -1.93243419e+00 - sys_corr_73: -2.37347996e-01 + sys_corr_71: -2.37347996e-01 + sys_corr_72: 1.93243419e+00 + sys_corr_73: 7.27160681e-01 sys_corr_74: 3.99060028e-01 sys_corr_75: -8.98686202e-02 sys_corr_76: -3.36883736e-01 - sys_corr_77: 2.32105854e-01 - sys_corr_78: -1.29138688e-01 - sys_corr_79: -3.06597483e-02 - sys_corr_80: 4.14453783e-02 + sys_corr_77: -2.32105854e-01 + sys_corr_78: -3.06597483e-02 + sys_corr_79: -4.14453783e-02 + sys_corr_80: 1.29138688e-01 sys_corr_81: 5.45251921e-01 sys_corr_82: -1.40108658e-01 sys_corr_83: 1.61486325e+00 - sys_corr_84: 4.72653524e-01 + sys_corr_84: -4.72653524e-01 sys_corr_85: -1.57533454e-01 sys_corr_86: 8.93215104e-01 sys_corr_87: -8.36549491e-01 sys_corr_88: 2.72896365e+00 sys_corr_89: 4.47576083e-01 sys_corr_90: 8.66932479e-01 - sys_corr_91: 1.11732378e+00 + sys_corr_91: -1.11732378e+00 sys_corr_92: -3.37104432e-01 sys_corr_93: -4.71397569e-02 sys_corr_94: -4.74760296e-01 @@ -12962,40 +12962,40 @@ bins: sys_corr_96: -5.52417862e-03 sys_corr_97: -1.23989641e-01 sys_corr_98: -1.41351082e-01 - sys_corr_99: 1.44976061e-01 - sys_corr_100: -4.85195743e-01 + sys_corr_99: -1.44976061e-01 + sys_corr_100: 4.85195743e-01 sys_corr_101: -2.16041198e-01 - sys_corr_102: -2.80452426e-01 - sys_corr_103: 3.02889579e-01 - sys_corr_104: 1.14345617e-01 - sys_corr_105: 1.76856121e-02 - sys_corr_106: 3.26906310e-01 - sys_corr_107: 7.45215052e-01 + sys_corr_102: 2.80452426e-01 + sys_corr_103: -3.02889579e-01 + sys_corr_104: -1.14345617e-01 + sys_corr_105: -1.76856121e-02 + sys_corr_106: -3.26906310e-01 + sys_corr_107: -7.45215052e-01 sys_corr_108: 8.51895251e-01 sys_corr_109: 4.55858935e-01 sys_corr_110: -7.63612403e-02 - sys_corr_111: -5.78385742e-02 + sys_corr_111: 5.78385742e-02 sys_corr_112: -1.34580457e-01 sys_corr_113: -4.37770678e-01 sys_corr_114: 6.10294156e-04 - sys_corr_115: -7.61547614e-01 + sys_corr_115: 7.61547614e-01 sys_corr_116: -7.86092442e-02 sys_corr_117: 1.28950217e-03 sys_corr_118: -1.18965900e+00 sys_corr_119: -2.44061408e-04 sys_corr_120: 1.71596754e-02 - sys_corr_121: -6.57175294e-03 - sys_corr_122: 6.33520374e-03 - sys_corr_123: 7.13615519e-03 + sys_corr_121: 6.57175294e-03 + sys_corr_122: 7.13615519e-03 + sys_corr_123: 6.33520374e-03 sys_corr_124: -1.63698694e-02 - sys_corr_125: 4.21317893e-04 - sys_corr_126: -4.51240533e-03 + sys_corr_125: -4.21317893e-04 + sys_corr_126: 4.51240533e-03 sys_corr_127: 9.54131377e-02 sys_corr_128: 1.82530980e-01 - sys_corr_129: 2.90941913e-01 - sys_corr_130: -5.15770070e-03 + sys_corr_129: -2.90941913e-01 + sys_corr_130: 5.15770070e-03 sys_corr_131: 3.37500991e-02 - sys_corr_132: 3.83356807e-02 + sys_corr_132: -3.83356807e-02 stat: 0.0 luminosity: 1.80631713e+03 - sys_corr_1: -7.55213387e+02 @@ -13007,9 +13007,9 @@ bins: sys_corr_7: 1.95053185e+02 sys_corr_8: 1.49053616e+02 sys_corr_9: -3.52380779e+01 - sys_corr_10: -1.79919810e+01 + sys_corr_10: 1.79919810e+01 sys_corr_11: 4.46460251e+00 - sys_corr_12: 1.45888612e+02 + sys_corr_12: -1.45888612e+02 sys_corr_13: -2.32834176e+02 sys_corr_14: 2.50214790e+01 sys_corr_15: -6.25003726e+01 @@ -13035,60 +13035,60 @@ bins: sys_corr_35: 7.54923440e+00 sys_corr_36: 7.35788420e+00 sys_corr_37: -3.33485762e+00 - sys_corr_38: 4.51094970e+00 - sys_corr_39: -1.40044566e-01 - sys_corr_40: 9.59463819e-01 - sys_corr_41: -1.70999353e+00 - sys_corr_42: -2.78055135e+00 - sys_corr_43: -1.98739516e+00 + sys_corr_38: -4.51094970e+00 + sys_corr_39: 1.40044566e-01 + sys_corr_40: -9.59463819e-01 + sys_corr_41: 1.70999353e+00 + sys_corr_42: 2.78055135e+00 + sys_corr_43: 1.98739516e+00 sys_corr_44: 1.01938872e+01 - sys_corr_45: 1.17618160e+00 - sys_corr_46: 6.55070599e+00 + sys_corr_45: -1.17618160e+00 + sys_corr_46: -6.55070599e+00 sys_corr_47: 1.39624041e+01 - sys_corr_48: 2.92648701e+01 + sys_corr_48: -2.92648701e+01 sys_corr_49: -1.17749711e+01 sys_corr_50: -2.08954308e+01 sys_corr_51: -2.86497562e+01 - sys_corr_52: 1.56254623e+01 - sys_corr_53: -8.77116389e-01 + sys_corr_52: -1.56254623e+01 + sys_corr_53: 8.77116389e-01 sys_corr_54: 1.06388776e+01 - sys_corr_55: -9.91744647e+00 + sys_corr_55: 9.91744647e+00 sys_corr_56: 7.11869845e+00 - sys_corr_57: -1.38254345e+00 + sys_corr_57: 1.38254345e+00 sys_corr_58: 1.75599449e+00 - sys_corr_59: -2.41029620e+00 + sys_corr_59: 2.41029620e+00 sys_corr_60: 5.01808478e-01 sys_corr_61: -1.28554173e+00 sys_corr_62: -4.43612126e-01 - sys_corr_63: 1.30974908e+00 - sys_corr_64: 1.00684700e+00 + sys_corr_63: -1.30974908e+00 + sys_corr_64: -1.00684700e+00 sys_corr_65: -1.35807477e+00 sys_corr_66: -4.11320816e-01 sys_corr_67: 3.74788346e-01 sys_corr_68: -2.82207682e+00 sys_corr_69: 7.90846906e-01 sys_corr_70: -4.52814318e-01 - sys_corr_71: 2.84043673e-01 - sys_corr_72: 7.39065592e-01 - sys_corr_73: -1.68301918e-01 + sys_corr_71: -1.68301918e-01 + sys_corr_72: -7.39065592e-01 + sys_corr_73: 2.84043673e-01 sys_corr_74: 2.56770714e-02 sys_corr_75: -1.65595165e+00 sys_corr_76: 1.79150193e+00 - sys_corr_77: -7.66165076e-01 - sys_corr_78: 5.91498735e-01 - sys_corr_79: 2.89725641e-01 - sys_corr_80: 1.79655904e-01 + sys_corr_77: 7.66165076e-01 + sys_corr_78: 2.89725641e-01 + sys_corr_79: -1.79655904e-01 + sys_corr_80: -5.91498735e-01 sys_corr_81: -6.20100209e-02 sys_corr_82: 2.22278802e-01 sys_corr_83: -1.95392784e-01 - sys_corr_84: 1.48054918e+00 + sys_corr_84: -1.48054918e+00 sys_corr_85: -1.19184655e+00 sys_corr_86: -1.44173082e+00 sys_corr_87: 1.53935834e-01 sys_corr_88: 2.60059766e+00 sys_corr_89: -6.52683769e-04 sys_corr_90: 1.53504678e+00 - sys_corr_91: 8.09188987e-01 + sys_corr_91: -8.09188987e-01 sys_corr_92: 2.40085668e+00 sys_corr_93: 3.96548847e-02 sys_corr_94: 4.58555375e-01 @@ -13096,40 +13096,40 @@ bins: sys_corr_96: -2.23563566e-01 sys_corr_97: -1.66271056e+00 sys_corr_98: -7.23477195e-01 - sys_corr_99: 7.14430781e-01 - sys_corr_100: 3.00163160e-01 + sys_corr_99: -7.14430781e-01 + sys_corr_100: -3.00163160e-01 sys_corr_101: 7.63527918e-01 - sys_corr_102: 1.14684352e+00 - sys_corr_103: 9.65469900e-02 - sys_corr_104: 4.80085787e-01 - sys_corr_105: 1.07265801e+00 - sys_corr_106: 8.59724995e-02 - sys_corr_107: 5.77452580e-01 + sys_corr_102: -1.14684352e+00 + sys_corr_103: -9.65469900e-02 + sys_corr_104: -4.80085787e-01 + sys_corr_105: -1.07265801e+00 + sys_corr_106: -8.59724995e-02 + sys_corr_107: -5.77452580e-01 sys_corr_108: -7.92250562e-01 sys_corr_109: 5.98238976e-01 sys_corr_110: 9.07424133e-01 - sys_corr_111: -4.44755013e-02 + sys_corr_111: 4.44755013e-02 sys_corr_112: 4.46867983e-01 sys_corr_113: -2.07329273e-01 sys_corr_114: 2.69016881e-03 - sys_corr_115: -1.69125287e-02 + sys_corr_115: 1.69125287e-02 sys_corr_116: 6.85641361e-04 sys_corr_117: -7.63339011e-03 sys_corr_118: 1.11624594e+00 sys_corr_119: -1.69560765e-03 sys_corr_120: -2.04800020e-02 - sys_corr_121: -2.03985155e-03 - sys_corr_122: 6.83285096e-02 - sys_corr_123: -1.26574793e-01 + sys_corr_121: 2.03985155e-03 + sys_corr_122: -1.26574793e-01 + sys_corr_123: 6.83285096e-02 sys_corr_124: 1.85208009e-02 - sys_corr_125: -5.84804443e-02 - sys_corr_126: 8.38383783e-02 + sys_corr_125: 5.84804443e-02 + sys_corr_126: -8.38383783e-02 sys_corr_127: -8.42345779e-02 sys_corr_128: -1.39305937e-01 - sys_corr_129: -8.11419289e-02 - sys_corr_130: -9.88484553e-02 + sys_corr_129: 8.11419289e-02 + sys_corr_130: 9.88484553e-02 sys_corr_131: -1.99391657e-02 - sys_corr_132: -8.52762902e-01 + sys_corr_132: 8.52762902e-01 stat: 0.0 luminosity: 1.25555397e+03 - sys_corr_1: -6.07403191e+02 @@ -13141,9 +13141,9 @@ bins: sys_corr_7: 2.47271023e+02 sys_corr_8: 1.33966123e+02 sys_corr_9: -3.89133008e+01 - sys_corr_10: -4.76784845e+00 + sys_corr_10: 4.76784845e+00 sys_corr_11: -1.33290363e+01 - sys_corr_12: 1.70189008e+02 + sys_corr_12: -1.70189008e+02 sys_corr_13: -2.27949666e+02 sys_corr_14: 3.76056568e+01 sys_corr_15: -6.82342662e+01 @@ -13169,60 +13169,60 @@ bins: sys_corr_35: -1.18637699e+01 sys_corr_36: -1.51509249e+01 sys_corr_37: 3.22707762e+00 - sys_corr_38: -2.20407807e+00 - sys_corr_39: -4.22236245e+00 - sys_corr_40: -1.20043810e+00 - sys_corr_41: 3.70520430e+00 - sys_corr_42: -7.46477442e+00 - sys_corr_43: -2.24686769e+00 + sys_corr_38: 2.20407807e+00 + sys_corr_39: 4.22236245e+00 + sys_corr_40: 1.20043810e+00 + sys_corr_41: -3.70520430e+00 + sys_corr_42: 7.46477442e+00 + sys_corr_43: 2.24686769e+00 sys_corr_44: 1.44275334e+01 - sys_corr_45: 2.34091408e+00 - sys_corr_46: -5.35665426e+00 + sys_corr_45: -2.34091408e+00 + sys_corr_46: 5.35665426e+00 sys_corr_47: 9.72941462e+00 - sys_corr_48: 2.37594234e+01 + sys_corr_48: -2.37594234e+01 sys_corr_49: -7.41806940e+00 sys_corr_50: -2.90074583e+01 sys_corr_51: -1.36363419e+01 - sys_corr_52: 1.29122484e+01 - sys_corr_53: 5.46126581e+00 + sys_corr_52: -1.29122484e+01 + sys_corr_53: -5.46126581e+00 sys_corr_54: -4.94237285e-01 - sys_corr_55: -1.41146581e+00 + sys_corr_55: 1.41146581e+00 sys_corr_56: -5.31111522e-01 - sys_corr_57: -1.00039840e+00 + sys_corr_57: 1.00039840e+00 sys_corr_58: 3.83942132e-01 - sys_corr_59: 4.05332801e-01 + sys_corr_59: -4.05332801e-01 sys_corr_60: 1.49232487e-01 sys_corr_61: 1.48614915e+00 sys_corr_62: 6.52637029e-01 - sys_corr_63: -4.29503193e+00 - sys_corr_64: 4.07700726e-01 + sys_corr_63: 4.29503193e+00 + sys_corr_64: -4.07700726e-01 sys_corr_65: 1.59768524e-01 sys_corr_66: -3.02009149e-01 sys_corr_67: -2.37212128e+00 sys_corr_68: 1.98152187e+00 sys_corr_69: -2.43067877e+00 sys_corr_70: 4.79152531e-01 - sys_corr_71: -2.51627099e+00 - sys_corr_72: 2.78211158e-01 - sys_corr_73: 1.13158609e+00 + sys_corr_71: 1.13158609e+00 + sys_corr_72: -2.78211158e-01 + sys_corr_73: -2.51627099e+00 sys_corr_74: -1.09409430e+00 sys_corr_75: 1.44700731e-01 sys_corr_76: -3.05684817e-02 - sys_corr_77: 1.31034265e+00 - sys_corr_78: -7.67700297e-01 - sys_corr_79: -1.45265669e-01 - sys_corr_80: -1.44514412e+00 + sys_corr_77: -1.31034265e+00 + sys_corr_78: -1.45265669e-01 + sys_corr_79: 1.44514412e+00 + sys_corr_80: 7.67700297e-01 sys_corr_81: -3.97211901e-01 sys_corr_82: 3.64610924e-01 sys_corr_83: -9.92552425e-01 - sys_corr_84: 8.91048938e-01 + sys_corr_84: -8.91048938e-01 sys_corr_85: -5.96106177e-01 sys_corr_86: 4.58136508e-01 sys_corr_87: 5.02687523e-02 sys_corr_88: -2.48255797e-01 sys_corr_89: -1.06632611e+00 sys_corr_90: 3.06890222e-01 - sys_corr_91: -9.51889344e-01 + sys_corr_91: 9.51889344e-01 sys_corr_92: 2.46834443e-01 sys_corr_93: 3.07532255e-01 sys_corr_94: 2.73786840e-01 @@ -13230,40 +13230,40 @@ bins: sys_corr_96: 1.04824455e-01 sys_corr_97: 1.85610381e+00 sys_corr_98: 1.08528819e+00 - sys_corr_99: -1.03656284e+00 - sys_corr_100: -2.19143165e+00 + sys_corr_99: 1.03656284e+00 + sys_corr_100: 2.19143165e+00 sys_corr_101: -1.49479997e+00 - sys_corr_102: -2.39241243e+00 - sys_corr_103: 3.14662319e-01 - sys_corr_104: -9.24604101e-01 - sys_corr_105: -1.41798980e+00 - sys_corr_106: 1.59387933e+00 - sys_corr_107: 1.57941317e+00 + sys_corr_102: 2.39241243e+00 + sys_corr_103: -3.14662319e-01 + sys_corr_104: 9.24604101e-01 + sys_corr_105: 1.41798980e+00 + sys_corr_106: -1.59387933e+00 + sys_corr_107: -1.57941317e+00 sys_corr_108: 5.14617116e-01 sys_corr_109: -2.37877560e-02 sys_corr_110: 3.69817711e-01 - sys_corr_111: 5.71393726e-01 + sys_corr_111: -5.71393726e-01 sys_corr_112: 3.28654214e-01 sys_corr_113: 2.58084549e-01 sys_corr_114: 5.99420727e-03 - sys_corr_115: -3.13952047e-01 + sys_corr_115: 3.13952047e-01 sys_corr_116: -4.32505594e-03 sys_corr_117: -2.79094549e-02 sys_corr_118: -9.66055653e-02 sys_corr_119: -3.78839807e-03 sys_corr_120: -1.16829818e-02 - sys_corr_121: -2.71303756e-02 - sys_corr_122: -7.65330814e-02 - sys_corr_123: 1.69370391e-01 + sys_corr_121: 2.71303756e-02 + sys_corr_122: 1.69370391e-01 + sys_corr_123: -7.65330814e-02 sys_corr_124: -1.28318713e-02 - sys_corr_125: 5.35913712e-02 - sys_corr_126: 4.19147129e-03 + sys_corr_125: -5.35913712e-02 + sys_corr_126: -4.19147129e-03 sys_corr_127: 7.41506728e-02 sys_corr_128: 6.30099299e-01 - sys_corr_129: 4.38783750e-01 - sys_corr_130: -1.38814764e-01 + sys_corr_129: -4.38783750e-01 + sys_corr_130: 1.38814764e-01 sys_corr_131: 1.99732023e-02 - sys_corr_132: 9.95436310e-01 + sys_corr_132: -9.95436310e-01 stat: 0.0 luminosity: 7.35952668e+02 - sys_corr_1: -2.35305454e+02 @@ -13275,9 +13275,9 @@ bins: sys_corr_7: 1.01217132e+02 sys_corr_8: 5.35665673e+01 sys_corr_9: -1.31472793e+01 - sys_corr_10: 3.59012075e+00 + sys_corr_10: -3.59012075e+00 sys_corr_11: -1.05044419e+01 - sys_corr_12: 5.77124827e+01 + sys_corr_12: -5.77124827e+01 sys_corr_13: -7.72926185e+01 sys_corr_14: 1.94165022e+01 sys_corr_15: -3.20915668e+01 @@ -13303,60 +13303,60 @@ bins: sys_corr_35: 1.32345883e+01 sys_corr_36: 2.88579575e+01 sys_corr_37: -1.22085544e+01 - sys_corr_38: -1.11487700e+01 - sys_corr_39: 1.18252381e+01 - sys_corr_40: 1.02301454e+01 - sys_corr_41: -9.75746076e+00 - sys_corr_42: 3.26360909e+01 - sys_corr_43: 4.93021639e+00 + sys_corr_38: 1.11487700e+01 + sys_corr_39: -1.18252381e+01 + sys_corr_40: -1.02301454e+01 + sys_corr_41: 9.75746076e+00 + sys_corr_42: -3.26360909e+01 + sys_corr_43: -4.93021639e+00 sys_corr_44: -7.88141572e+01 - sys_corr_45: -8.79719901e+00 - sys_corr_46: -5.10674064e+00 + sys_corr_45: 8.79719901e+00 + sys_corr_46: 5.10674064e+00 sys_corr_47: -8.43646828e+01 - sys_corr_48: -1.69678419e+02 + sys_corr_48: 1.69678419e+02 sys_corr_49: 6.55730605e+01 sys_corr_50: 1.40513463e+02 sys_corr_51: 1.51270110e+02 - sys_corr_52: -1.05401961e+02 - sys_corr_53: -8.02633468e+00 + sys_corr_52: 1.05401961e+02 + sys_corr_53: 8.02633468e+00 sys_corr_54: -3.21560715e+01 - sys_corr_55: 3.48307551e+01 + sys_corr_55: -3.48307551e+01 sys_corr_56: -2.70063979e+01 - sys_corr_57: 7.82413926e+00 + sys_corr_57: -7.82413926e+00 sys_corr_58: -4.70330555e+00 - sys_corr_59: 4.22242113e-01 + sys_corr_59: -4.22242113e-01 sys_corr_60: -3.54416557e-01 sys_corr_61: 7.29529319e+00 sys_corr_62: -1.42953412e+00 - sys_corr_63: 1.13348456e+00 - sys_corr_64: -4.01581787e+00 + sys_corr_63: -1.13348456e+00 + sys_corr_64: 4.01581787e+00 sys_corr_65: 1.82821523e+00 sys_corr_66: 5.67467917e+00 sys_corr_67: -1.10704379e+00 sys_corr_68: 7.31725260e+00 sys_corr_69: 1.90697980e+00 sys_corr_70: 5.43513885e+00 - sys_corr_71: 1.67055216e+00 - sys_corr_72: -4.04926470e+00 - sys_corr_73: 2.61636277e-01 + sys_corr_71: 2.61636277e-01 + sys_corr_72: 4.04926470e+00 + sys_corr_73: 1.67055216e+00 sys_corr_74: -1.90137641e+00 sys_corr_75: 2.76576211e+00 sys_corr_76: 1.28829265e+00 - sys_corr_77: 1.95794202e+00 - sys_corr_78: -3.11252566e+00 - sys_corr_79: -1.28880669e+00 - sys_corr_80: -3.32743083e+00 + sys_corr_77: -1.95794202e+00 + sys_corr_78: -1.28880669e+00 + sys_corr_79: 3.32743083e+00 + sys_corr_80: 3.11252566e+00 sys_corr_81: -2.30659935e+00 sys_corr_82: -2.24588784e+00 sys_corr_83: -1.69645294e-01 - sys_corr_84: 1.29115278e+00 + sys_corr_84: -1.29115278e+00 sys_corr_85: -3.03794130e-02 sys_corr_86: 1.49745435e+00 sys_corr_87: -2.43020670e+00 sys_corr_88: -5.68244830e+00 sys_corr_89: 3.43626838e+00 sys_corr_90: -5.23246025e-01 - sys_corr_91: -1.81031992e+00 + sys_corr_91: 1.81031992e+00 sys_corr_92: -3.60430202e+00 sys_corr_93: 4.68571429e-01 sys_corr_94: 9.44878957e-01 @@ -13364,40 +13364,40 @@ bins: sys_corr_96: 4.08730821e-02 sys_corr_97: 3.25088463e+00 sys_corr_98: 1.43244162e+00 - sys_corr_99: -2.02954581e+00 - sys_corr_100: -2.17637576e+00 + sys_corr_99: 2.02954581e+00 + sys_corr_100: 2.17637576e+00 sys_corr_101: -2.29385577e+00 - sys_corr_102: -3.20285125e+00 - sys_corr_103: -2.75622983e+00 - sys_corr_104: -1.93241089e+00 - sys_corr_105: -3.43027932e+00 - sys_corr_106: 1.62620572e+00 - sys_corr_107: 1.55943389e+00 + sys_corr_102: 3.20285125e+00 + sys_corr_103: 2.75622983e+00 + sys_corr_104: 1.93241089e+00 + sys_corr_105: 3.43027932e+00 + sys_corr_106: -1.62620572e+00 + sys_corr_107: -1.55943389e+00 sys_corr_108: 8.44502529e-01 sys_corr_109: -1.01735514e+00 sys_corr_110: -1.01187666e+00 - sys_corr_111: 1.26815804e+00 + sys_corr_111: -1.26815804e+00 sys_corr_112: -3.07804934e-01 sys_corr_113: 1.03348368e-02 sys_corr_114: 5.35841059e-03 - sys_corr_115: -2.32971281e-01 + sys_corr_115: 2.32971281e-01 sys_corr_116: -7.76087624e-03 sys_corr_117: -4.78402868e-02 sys_corr_118: -7.12700899e-01 sys_corr_119: 4.10212020e-03 sys_corr_120: -5.84131642e-02 - sys_corr_121: 2.06746161e-02 - sys_corr_122: -2.77056500e-01 - sys_corr_123: 4.06088822e-01 + sys_corr_121: -2.06746161e-02 + sys_corr_122: 4.06088822e-01 + sys_corr_123: -2.77056500e-01 sys_corr_124: -8.54122438e-02 - sys_corr_125: 2.26992017e-01 - sys_corr_126: -3.68113793e-01 + sys_corr_125: -2.26992017e-01 + sys_corr_126: 3.68113793e-01 sys_corr_127: 2.97186036e-01 sys_corr_128: -5.90162132e-01 - sys_corr_129: -5.31145242e-01 - sys_corr_130: 6.28013448e-01 + sys_corr_129: 5.31145242e-01 + sys_corr_130: -6.28013448e-01 sys_corr_131: -1.05556336e-01 - sys_corr_132: -2.12035474e-01 + sys_corr_132: 2.12035474e-01 stat: 0.0 luminosity: 2.33737042e+02 - sys_corr_1: 3.00027161e+01 @@ -13409,9 +13409,9 @@ bins: sys_corr_7: 9.17500903e+00 sys_corr_8: -1.08165950e+00 sys_corr_9: 1.87902513e+01 - sys_corr_10: 2.21663249e+00 + sys_corr_10: -2.21663249e+00 sys_corr_11: -4.56962076e+00 - sys_corr_12: 8.74631059e+00 + sys_corr_12: -8.74631059e+00 sys_corr_13: -3.89751012e+00 sys_corr_14: 2.38344547e+00 sys_corr_15: 5.08198429e+00 @@ -13437,60 +13437,60 @@ bins: sys_corr_35: -1.79019139e-01 sys_corr_36: -3.33600161e-02 sys_corr_37: -1.75487125e+00 - sys_corr_38: -7.48079180e-01 - sys_corr_39: -3.82270599e-01 - sys_corr_40: -8.08635830e-01 - sys_corr_41: 1.07884313e+00 - sys_corr_42: 3.79452293e-01 - sys_corr_43: -9.84029906e-01 + sys_corr_38: 7.48079180e-01 + sys_corr_39: 3.82270599e-01 + sys_corr_40: 8.08635830e-01 + sys_corr_41: -1.07884313e+00 + sys_corr_42: -3.79452293e-01 + sys_corr_43: 9.84029906e-01 sys_corr_44: 1.32808284e+00 - sys_corr_45: 5.73011825e-01 - sys_corr_46: 1.16854986e+00 + sys_corr_45: -5.73011825e-01 + sys_corr_46: -1.16854986e+00 sys_corr_47: 8.96361526e-01 - sys_corr_48: 2.86556455e+00 + sys_corr_48: -2.86556455e+00 sys_corr_49: -3.88771380e+00 sys_corr_50: 4.94340824e-01 sys_corr_51: 1.17060265e+00 - sys_corr_52: 1.60864323e+00 - sys_corr_53: 6.84811769e-01 + sys_corr_52: -1.60864323e+00 + sys_corr_53: -6.84811769e-01 sys_corr_54: -4.81712997e+00 - sys_corr_55: -2.26926727e+00 + sys_corr_55: 2.26926727e+00 sys_corr_56: 1.53048422e+00 - sys_corr_57: 6.76002212e-02 + sys_corr_57: -6.76002212e-02 sys_corr_58: -2.50113276e+00 - sys_corr_59: 2.05469070e+00 + sys_corr_59: -2.05469070e+00 sys_corr_60: -1.18045081e+00 sys_corr_61: 4.01180225e-01 sys_corr_62: 1.48478029e+00 - sys_corr_63: 1.30300930e-01 - sys_corr_64: 2.35836093e+00 + sys_corr_63: -1.30300930e-01 + sys_corr_64: -2.35836093e+00 sys_corr_65: -3.85711375e+00 sys_corr_66: -4.18632640e-01 sys_corr_67: 1.19440068e+00 sys_corr_68: -1.67252097e-04 sys_corr_69: 2.22724965e+00 sys_corr_70: 2.41273676e+00 - sys_corr_71: 2.01120674e-01 - sys_corr_72: 1.35485395e+00 - sys_corr_73: -7.46926207e+00 + sys_corr_71: -7.46926207e+00 + sys_corr_72: -1.35485395e+00 + sys_corr_73: 2.01120674e-01 sys_corr_74: -1.74634171e+00 sys_corr_75: 1.68837044e+00 sys_corr_76: 2.23890404e+00 - sys_corr_77: -3.33943080e+00 - sys_corr_78: 2.38407524e+00 - sys_corr_79: 3.41590947e+00 - sys_corr_80: -3.65463113e+00 + sys_corr_77: 3.33943080e+00 + sys_corr_78: 3.41590947e+00 + sys_corr_79: 3.65463113e+00 + sys_corr_80: -2.38407524e+00 sys_corr_81: 3.34601562e+00 sys_corr_82: -2.03363737e+00 sys_corr_83: 6.58210808e+00 - sys_corr_84: -4.72574535e+01 + sys_corr_84: 4.72574535e+01 sys_corr_85: 3.45548023e+01 sys_corr_86: -3.13229411e+00 sys_corr_87: -5.00782722e-01 sys_corr_88: 2.15732195e+00 sys_corr_89: 2.20242664e+00 sys_corr_90: -5.72381083e+01 - sys_corr_91: -1.37077594e+01 + sys_corr_91: 1.37077594e+01 sys_corr_92: 5.13973562e+00 sys_corr_93: 2.74759309e+01 sys_corr_94: 2.35005524e+01 @@ -13498,40 +13498,40 @@ bins: sys_corr_96: 1.09148549e+02 sys_corr_97: 5.55350454e+01 sys_corr_98: -3.43566660e+01 - sys_corr_99: 5.19137860e+00 - sys_corr_100: -1.12844121e+00 + sys_corr_99: -5.19137860e+00 + sys_corr_100: 1.12844121e+00 sys_corr_101: -6.24264341e-02 - sys_corr_102: 2.53072084e+00 - sys_corr_103: -3.54409320e-01 - sys_corr_104: 1.23075402e+00 - sys_corr_105: 1.57062551e+01 - sys_corr_106: 8.20278980e-01 - sys_corr_107: 2.66715150e+00 + sys_corr_102: -2.53072084e+00 + sys_corr_103: 3.54409320e-01 + sys_corr_104: -1.23075402e+00 + sys_corr_105: -1.57062551e+01 + sys_corr_106: -8.20278980e-01 + sys_corr_107: -2.66715150e+00 sys_corr_108: -6.77133080e-01 sys_corr_109: 1.31946258e+00 sys_corr_110: 1.55437872e+00 - sys_corr_111: 1.92274533e+01 + sys_corr_111: -1.92274533e+01 sys_corr_112: 7.55709640e-01 sys_corr_113: 7.63740245e-01 sys_corr_114: -1.21559465e-03 - sys_corr_115: 6.91865099e-01 + sys_corr_115: -6.91865099e-01 sys_corr_116: -1.13923620e+00 sys_corr_117: 8.87876109e-01 sys_corr_118: -6.71051193e-02 sys_corr_119: -1.16352694e-02 sys_corr_120: 5.38976440e-01 - sys_corr_121: -6.24401901e-03 - sys_corr_122: -5.82444200e-03 - sys_corr_123: -9.71722033e-02 + sys_corr_121: 6.24401901e-03 + sys_corr_122: -9.71722033e-02 + sys_corr_123: -5.82444200e-03 sys_corr_124: 4.23896960e-01 - sys_corr_125: -2.87410455e-01 - sys_corr_126: -9.78774116e-03 + sys_corr_125: 2.87410455e-01 + sys_corr_126: 9.78774116e-03 sys_corr_127: -5.11908691e+00 sys_corr_128: -2.13765423e-01 - sys_corr_129: 2.20081053e-01 - sys_corr_130: 1.74013596e-02 + sys_corr_129: -2.20081053e-01 + sys_corr_130: -1.74013596e-02 sys_corr_131: 3.11364565e-01 - sys_corr_132: 2.52988308e-01 + sys_corr_132: -2.52988308e-01 stat: 0.0 luminosity: 7.64296940e+01 - sys_corr_1: 3.03395988e+01 @@ -13543,9 +13543,9 @@ bins: sys_corr_7: 8.76466412e+00 sys_corr_8: -8.61910889e+00 sys_corr_9: 9.79205096e+00 - sys_corr_10: 1.82104604e+00 + sys_corr_10: -1.82104604e+00 sys_corr_11: -9.09120795e+00 - sys_corr_12: 3.06332450e+00 + sys_corr_12: -3.06332450e+00 sys_corr_13: -1.06770249e+01 sys_corr_14: -3.29467811e+00 sys_corr_15: -9.75516364e+00 @@ -13571,60 +13571,60 @@ bins: sys_corr_35: -9.22734445e-02 sys_corr_36: 2.01229394e-01 sys_corr_37: -1.78994020e+00 - sys_corr_38: -5.80716334e-01 - sys_corr_39: -2.38184879e-01 - sys_corr_40: -5.84369279e-01 - sys_corr_41: 1.14379910e+00 - sys_corr_42: 2.65622517e-01 - sys_corr_43: -9.60723108e-01 + sys_corr_38: 5.80716334e-01 + sys_corr_39: 2.38184879e-01 + sys_corr_40: 5.84369279e-01 + sys_corr_41: -1.14379910e+00 + sys_corr_42: -2.65622517e-01 + sys_corr_43: 9.60723108e-01 sys_corr_44: 1.36579208e+00 - sys_corr_45: 4.68709207e-03 - sys_corr_46: 5.74918451e-01 + sys_corr_45: -4.68709207e-03 + sys_corr_46: -5.74918451e-01 sys_corr_47: 5.02110433e-01 - sys_corr_48: 2.33965432e+00 + sys_corr_48: -2.33965432e+00 sys_corr_49: -3.59514681e+00 sys_corr_50: 3.86073902e-01 sys_corr_51: 1.01367518e+00 - sys_corr_52: 1.42898126e+00 - sys_corr_53: 5.95838918e-01 + sys_corr_52: -1.42898126e+00 + sys_corr_53: -5.95838918e-01 sys_corr_54: -5.09290465e+00 - sys_corr_55: -2.43038513e+00 + sys_corr_55: 2.43038513e+00 sys_corr_56: 1.35052708e+00 - sys_corr_57: -1.82687417e-01 + sys_corr_57: 1.82687417e-01 sys_corr_58: -2.79650811e+00 - sys_corr_59: 1.72491597e+00 + sys_corr_59: -1.72491597e+00 sys_corr_60: -9.27576915e-01 sys_corr_61: -1.83818581e-01 sys_corr_62: 1.52596379e+00 - sys_corr_63: 1.48082934e-01 - sys_corr_64: 1.94600490e+00 + sys_corr_63: -1.48082934e-01 + sys_corr_64: -1.94600490e+00 sys_corr_65: -3.37344566e+00 sys_corr_66: -3.52223913e-01 sys_corr_67: 1.21609664e+00 sys_corr_68: 9.94343903e-02 sys_corr_69: 1.74442972e+00 sys_corr_70: 2.60227309e+00 - sys_corr_71: 4.57470199e-01 - sys_corr_72: 1.48228463e+00 - sys_corr_73: -7.08653251e+00 + sys_corr_71: -7.08653251e+00 + sys_corr_72: -1.48228463e+00 + sys_corr_73: 4.57470199e-01 sys_corr_74: -1.54752416e+00 sys_corr_75: 5.70117437e-01 sys_corr_76: 1.94492840e+00 - sys_corr_77: -1.85495719e+00 - sys_corr_78: 2.30035475e+00 - sys_corr_79: 3.41458111e+00 - sys_corr_80: -3.91707844e+00 + sys_corr_77: 1.85495719e+00 + sys_corr_78: 3.41458111e+00 + sys_corr_79: 3.91707844e+00 + sys_corr_80: -2.30035475e+00 sys_corr_81: 3.61217319e+00 sys_corr_82: -2.51538431e+00 sys_corr_83: 6.77503693e+00 - sys_corr_84: -4.50542895e+01 + sys_corr_84: 4.50542895e+01 sys_corr_85: 3.20744448e+01 sys_corr_86: -3.28068762e+00 sys_corr_87: 9.08108853e-01 sys_corr_88: 2.49636701e+00 sys_corr_89: 1.76644118e+00 sys_corr_90: -5.27832330e+01 - sys_corr_91: -1.24220001e+01 + sys_corr_91: 1.24220001e+01 sys_corr_92: 4.17979837e+00 sys_corr_93: -8.65019727e+01 sys_corr_94: 3.24010508e+01 @@ -13632,40 +13632,40 @@ bins: sys_corr_96: -7.26164603e+01 sys_corr_97: 6.43213309e+01 sys_corr_98: -1.99299574e+01 - sys_corr_99: 9.98619514e+00 - sys_corr_100: -5.40120635e-01 + sys_corr_99: -9.98619514e+00 + sys_corr_100: 5.40120635e-01 sys_corr_101: 1.04636971e+00 - sys_corr_102: 1.87725063e+00 - sys_corr_103: -1.37796404e+00 - sys_corr_104: 2.69142421e+00 - sys_corr_105: 1.67322821e+01 - sys_corr_106: 8.21343721e-01 - sys_corr_107: 2.79705273e+00 + sys_corr_102: -1.87725063e+00 + sys_corr_103: 1.37796404e+00 + sys_corr_104: -2.69142421e+00 + sys_corr_105: -1.67322821e+01 + sys_corr_106: -8.21343721e-01 + sys_corr_107: -2.79705273e+00 sys_corr_108: -7.00625772e-01 sys_corr_109: 1.54559575e+00 sys_corr_110: 1.55311623e+00 - sys_corr_111: 2.38657264e+01 + sys_corr_111: -2.38657264e+01 sys_corr_112: 7.76583709e-01 sys_corr_113: 6.83818443e-01 sys_corr_114: -1.31270328e-03 - sys_corr_115: 7.10719257e-01 + sys_corr_115: -7.10719257e-01 sys_corr_116: -1.11593379e+00 sys_corr_117: 9.06990625e-01 sys_corr_118: -2.37072153e-02 sys_corr_119: -1.36958034e-02 sys_corr_120: 5.51979920e-01 - sys_corr_121: -1.14189745e-03 - sys_corr_122: 3.03080536e-03 - sys_corr_123: -8.10245654e-02 + sys_corr_121: 1.14189745e-03 + sys_corr_122: -8.10245654e-02 + sys_corr_123: 3.03080536e-03 sys_corr_124: 7.10525252e-01 - sys_corr_125: -2.66745215e-01 - sys_corr_126: -3.51170062e-03 + sys_corr_125: 2.66745215e-01 + sys_corr_126: 3.51170062e-03 sys_corr_127: -2.28210297e+00 sys_corr_128: -1.47242070e-01 - sys_corr_129: 2.00733957e-01 - sys_corr_130: 1.41826537e-02 + sys_corr_129: -2.00733957e-01 + sys_corr_130: -1.41826537e-02 sys_corr_131: 3.14474036e-01 - sys_corr_132: 2.03168291e-01 + sys_corr_132: -2.03168291e-01 stat: 0.0 luminosity: 7.92974160e+01 - sys_corr_1: 2.99939609e+01 @@ -13677,9 +13677,9 @@ bins: sys_corr_7: -3.84514435e+00 sys_corr_8: 2.90437078e+00 sys_corr_9: 6.96598106e+00 - sys_corr_10: 1.48770613e+01 + sys_corr_10: -1.48770613e+01 sys_corr_11: -9.85081387e+00 - sys_corr_12: 1.12068878e+00 + sys_corr_12: -1.12068878e+00 sys_corr_13: -1.05477134e+01 sys_corr_14: 8.47850524e-01 sys_corr_15: 1.62407374e+00 @@ -13705,60 +13705,60 @@ bins: sys_corr_35: -7.70838982e-01 sys_corr_36: -8.23700303e-04 sys_corr_37: -1.64073163e+00 - sys_corr_38: -1.03840379e+00 - sys_corr_39: -1.24155458e-01 - sys_corr_40: -1.76486493e-01 - sys_corr_41: 1.24021955e+00 - sys_corr_42: 3.34198425e-01 - sys_corr_43: -1.17017315e+00 + sys_corr_38: 1.03840379e+00 + sys_corr_39: 1.24155458e-01 + sys_corr_40: 1.76486493e-01 + sys_corr_41: -1.24021955e+00 + sys_corr_42: -3.34198425e-01 + sys_corr_43: 1.17017315e+00 sys_corr_44: 1.83702205e+00 - sys_corr_45: 4.69707105e-01 - sys_corr_46: 2.80143400e-01 + sys_corr_45: -4.69707105e-01 + sys_corr_46: -2.80143400e-01 sys_corr_47: 3.77118724e-01 - sys_corr_48: 2.30640121e+00 + sys_corr_48: -2.30640121e+00 sys_corr_49: -2.58594936e+00 sys_corr_50: 2.16226613e-02 sys_corr_51: 1.25802199e+00 - sys_corr_52: 1.38988793e+00 - sys_corr_53: 6.37663961e-01 + sys_corr_52: -1.38988793e+00 + sys_corr_53: -6.37663961e-01 sys_corr_54: -4.24971975e+00 - sys_corr_55: -2.52888420e+00 + sys_corr_55: 2.52888420e+00 sys_corr_56: 1.37483879e+00 - sys_corr_57: 1.27403734e-01 + sys_corr_57: -1.27403734e-01 sys_corr_58: -2.12759633e+00 - sys_corr_59: 1.72542926e+00 + sys_corr_59: -1.72542926e+00 sys_corr_60: -1.85884057e+00 sys_corr_61: 1.45824939e-01 sys_corr_62: 1.72474842e+00 - sys_corr_63: 1.31661527e-01 - sys_corr_64: 2.41965971e+00 + sys_corr_63: -1.31661527e-01 + sys_corr_64: -2.41965971e+00 sys_corr_65: -3.58808292e+00 sys_corr_66: 6.12556513e-02 sys_corr_67: 1.16325338e+00 sys_corr_68: -1.72104648e-01 sys_corr_69: 1.83098697e+00 sys_corr_70: 1.92816017e+00 - sys_corr_71: 5.86902227e-01 - sys_corr_72: 1.61678346e+00 - sys_corr_73: -7.18789716e+00 + sys_corr_71: -7.18789716e+00 + sys_corr_72: -1.61678346e+00 + sys_corr_73: 5.86902227e-01 sys_corr_74: -1.55544149e+00 sys_corr_75: 4.80119528e-01 sys_corr_76: 2.68211338e+00 - sys_corr_77: -3.08215610e+00 - sys_corr_78: 2.80257917e+00 - sys_corr_79: 3.45209670e+00 - sys_corr_80: -4.15787371e+00 + sys_corr_77: 3.08215610e+00 + sys_corr_78: 3.45209670e+00 + sys_corr_79: 4.15787371e+00 + sys_corr_80: -2.80257917e+00 sys_corr_81: 4.07841422e+00 sys_corr_82: -1.73794215e+00 sys_corr_83: 7.08505659e+00 - sys_corr_84: -4.86639954e+01 + sys_corr_84: 4.86639954e+01 sys_corr_85: 3.59176175e+01 sys_corr_86: -3.48953578e+00 sys_corr_87: 2.69160922e-01 sys_corr_88: 2.98767824e+00 sys_corr_89: 2.70487591e+00 sys_corr_90: -5.83331386e+01 - sys_corr_91: -1.43103053e+01 + sys_corr_91: 1.43103053e+01 sys_corr_92: 4.82539713e+00 sys_corr_93: 1.14458734e+02 sys_corr_94: -1.09905008e+01 @@ -13766,40 +13766,40 @@ bins: sys_corr_96: -6.40549466e+01 sys_corr_97: 1.36602162e+01 sys_corr_98: 3.17438523e+01 - sys_corr_99: -1.05796990e+01 - sys_corr_100: 7.84174705e-02 + sys_corr_99: 1.05796990e+01 + sys_corr_100: -7.84174705e-02 sys_corr_101: 1.18498120e+00 - sys_corr_102: 1.74302514e+00 - sys_corr_103: -1.56881158e+00 - sys_corr_104: 4.65381225e+00 - sys_corr_105: 9.92135498e+00 - sys_corr_106: 1.75425984e-01 - sys_corr_107: 2.01410235e+00 + sys_corr_102: -1.74302514e+00 + sys_corr_103: 1.56881158e+00 + sys_corr_104: -4.65381225e+00 + sys_corr_105: -9.92135498e+00 + sys_corr_106: -1.75425984e-01 + sys_corr_107: -2.01410235e+00 sys_corr_108: -4.19918782e-01 sys_corr_109: 1.36394939e+00 sys_corr_110: 1.13685791e+00 - sys_corr_111: 2.12528862e+01 + sys_corr_111: -2.12528862e+01 sys_corr_112: 5.38360138e-01 sys_corr_113: 5.30072185e-01 sys_corr_114: 3.90418198e-04 - sys_corr_115: 5.26217881e-01 + sys_corr_115: -5.26217881e-01 sys_corr_116: 1.04537742e-01 sys_corr_117: 7.16561132e-01 sys_corr_118: -9.80766321e-02 sys_corr_119: -4.88855216e-03 sys_corr_120: 4.70096454e-01 - sys_corr_121: -5.93476726e-03 - sys_corr_122: -2.49353408e-02 - sys_corr_123: -5.41047155e-02 + sys_corr_121: 5.93476726e-03 + sys_corr_122: -5.41047155e-02 + sys_corr_123: -2.49353408e-02 sys_corr_124: 1.44785624e+00 - sys_corr_125: -2.81550806e-01 - sys_corr_126: -1.53738164e-02 + sys_corr_125: 2.81550806e-01 + sys_corr_126: 1.53738164e-02 sys_corr_127: 4.98912111e+00 sys_corr_128: -1.03209031e-01 - sys_corr_129: 2.18855814e-02 - sys_corr_130: 8.36154269e-03 + sys_corr_129: -2.18855814e-02 + sys_corr_130: -8.36154269e-03 sys_corr_131: 3.22406622e-01 - sys_corr_132: 1.27985238e-01 + sys_corr_132: -1.27985238e-01 stat: 0.0 luminosity: 77.80432 - sys_corr_1: 3.10189341e+01 @@ -13811,9 +13811,9 @@ bins: sys_corr_7: -1.43379441e+00 sys_corr_8: -1.27760172e+01 sys_corr_9: 9.76375005e-01 - sys_corr_10: -1.78696270e+00 + sys_corr_10: 1.78696270e+00 sys_corr_11: -1.02528027e+01 - sys_corr_12: 7.56183871e+00 + sys_corr_12: -7.56183871e+00 sys_corr_13: -4.41443287e+00 sys_corr_14: 4.35783482e+00 sys_corr_15: 7.76997280e+00 @@ -13839,60 +13839,60 @@ bins: sys_corr_35: -8.03214677e-01 sys_corr_36: 8.05443433e-01 sys_corr_37: -1.60715977e+00 - sys_corr_38: -9.66611399e-01 - sys_corr_39: 2.32857434e-01 - sys_corr_40: -2.91824977e-01 - sys_corr_41: 1.07105065e+00 - sys_corr_42: 7.58824418e-01 - sys_corr_43: -9.29889614e-01 + sys_corr_38: 9.66611399e-01 + sys_corr_39: -2.32857434e-01 + sys_corr_40: 2.91824977e-01 + sys_corr_41: -1.07105065e+00 + sys_corr_42: -7.58824418e-01 + sys_corr_43: 9.29889614e-01 sys_corr_44: 1.51066243e+00 - sys_corr_45: 5.75236385e-01 - sys_corr_46: 4.67461224e-01 + sys_corr_45: -5.75236385e-01 + sys_corr_46: -4.67461224e-01 sys_corr_47: 6.28607611e-01 - sys_corr_48: 2.48699851e+00 + sys_corr_48: -2.48699851e+00 sys_corr_49: -3.24020050e+00 sys_corr_50: 7.74167311e-01 sys_corr_51: 7.02255884e-01 - sys_corr_52: 1.14704451e+00 - sys_corr_53: 1.52250642e-01 + sys_corr_52: -1.14704451e+00 + sys_corr_53: -1.52250642e-01 sys_corr_54: -3.98129559e+00 - sys_corr_55: -2.44153062e+00 + sys_corr_55: 2.44153062e+00 sys_corr_56: 1.68338889e+00 - sys_corr_57: 4.96363600e-01 + sys_corr_57: -4.96363600e-01 sys_corr_58: -2.89165127e+00 - sys_corr_59: 1.56292924e+00 + sys_corr_59: -1.56292924e+00 sys_corr_60: -6.87391016e-01 sys_corr_61: -7.12219273e-02 sys_corr_62: 1.50728883e+00 - sys_corr_63: 1.90399981e-02 - sys_corr_64: 2.15272166e+00 + sys_corr_63: -1.90399981e-02 + sys_corr_64: -2.15272166e+00 sys_corr_65: -3.69193841e+00 sys_corr_66: 4.05105046e-01 sys_corr_67: 7.94489581e-01 sys_corr_68: 1.80830645e-02 sys_corr_69: 5.44812310e-01 sys_corr_70: 1.36120797e+00 - sys_corr_71: 1.20439581e+00 - sys_corr_72: 1.77151655e+00 - sys_corr_73: -6.66280379e+00 + sys_corr_71: -6.66280379e+00 + sys_corr_72: -1.77151655e+00 + sys_corr_73: 1.20439581e+00 sys_corr_74: -1.73706184e+00 sys_corr_75: -2.69842669e-01 sys_corr_76: 2.88045028e+00 - sys_corr_77: -3.37733370e+00 - sys_corr_78: 3.31855162e+00 - sys_corr_79: 4.05730723e+00 - sys_corr_80: -3.78883688e+00 + sys_corr_77: 3.37733370e+00 + sys_corr_78: 4.05730723e+00 + sys_corr_79: 3.78883688e+00 + sys_corr_80: -3.31855162e+00 sys_corr_81: 3.28852151e+00 sys_corr_82: -1.79040851e+00 sys_corr_83: 6.97668499e+00 - sys_corr_84: -4.20959518e+01 + sys_corr_84: 4.20959518e+01 sys_corr_85: 3.18514482e+01 sys_corr_86: -3.31409477e+00 sys_corr_87: 8.92661298e-01 sys_corr_88: 2.38411797e+00 sys_corr_89: 2.79324199e+00 sys_corr_90: -5.07108998e+01 - sys_corr_91: -1.05872440e+01 + sys_corr_91: 1.05872440e+01 sys_corr_92: 4.35404954e+00 sys_corr_93: -4.90816170e+01 sys_corr_94: 1.34885012e+01 @@ -13900,40 +13900,40 @@ bins: sys_corr_96: 3.40537775e+01 sys_corr_97: -3.93633223e+01 sys_corr_98: 1.00714586e+02 - sys_corr_99: -3.85012438e+01 - sys_corr_100: 6.79848019e-01 + sys_corr_99: 3.85012438e+01 + sys_corr_100: -6.79848019e-01 sys_corr_101: 1.71043119e+00 - sys_corr_102: 2.65599471e+00 - sys_corr_103: 3.54712898e+00 - sys_corr_104: 7.29332676e+00 - sys_corr_105: -5.16550118e+00 - sys_corr_106: -4.68915673e-01 - sys_corr_107: 1.82453697e+00 + sys_corr_102: -2.65599471e+00 + sys_corr_103: -3.54712898e+00 + sys_corr_104: -7.29332676e+00 + sys_corr_105: 5.16550118e+00 + sys_corr_106: 4.68915673e-01 + sys_corr_107: -1.82453697e+00 sys_corr_108: -2.46746204e-01 sys_corr_109: 1.50242735e+00 sys_corr_110: 1.40339186e+00 - sys_corr_111: 8.37765436e+00 + sys_corr_111: -8.37765436e+00 sys_corr_112: 4.34658305e-01 sys_corr_113: 5.62689747e-01 sys_corr_114: 8.58784185e-04 - sys_corr_115: 6.75251899e-01 + sys_corr_115: -6.75251899e-01 sys_corr_116: -5.09943534e-02 sys_corr_117: 7.99682870e-01 sys_corr_118: -1.74997610e-01 sys_corr_119: -3.83449172e-03 sys_corr_120: 5.46913392e-01 - sys_corr_121: -5.47770947e-03 - sys_corr_122: -2.73583404e-02 - sys_corr_123: -5.51012257e-02 + sys_corr_121: 5.47770947e-03 + sys_corr_122: -5.51012257e-02 + sys_corr_123: -2.73583404e-02 sys_corr_124: 1.56152683e+00 - sys_corr_125: -2.21282677e-01 - sys_corr_126: -1.01569351e-02 + sys_corr_125: 2.21282677e-01 + sys_corr_126: 1.01569351e-02 sys_corr_127: 3.10643118e+01 sys_corr_128: -1.80990550e-01 - sys_corr_129: 2.42220497e-02 - sys_corr_130: -4.85086263e-04 + sys_corr_129: -2.42220497e-02 + sys_corr_130: 4.85086263e-04 sys_corr_131: 2.93318739e-01 - sys_corr_132: 9.87053343e-02 + sys_corr_132: -9.87053343e-02 stat: 0.0 luminosity: 7.74941640e+01 - sys_corr_1: 2.95195265e+01 @@ -13945,9 +13945,9 @@ bins: sys_corr_7: -7.62197194e+00 sys_corr_8: -1.87180489e-01 sys_corr_9: 9.46519825e+00 - sys_corr_10: -1.09774239e+00 + sys_corr_10: 1.09774239e+00 sys_corr_11: -1.71372615e+00 - sys_corr_12: 8.36431080e+00 + sys_corr_12: -8.36431080e+00 sys_corr_13: 5.77320793e+00 sys_corr_14: -3.64223632e-01 sys_corr_15: -1.16520998e+01 @@ -13973,60 +13973,60 @@ bins: sys_corr_35: -3.56841836e-01 sys_corr_36: 6.83907756e-01 sys_corr_37: -1.45111185e+00 - sys_corr_38: -1.26698536e+00 - sys_corr_39: 7.57782885e-01 - sys_corr_40: 3.33725093e-01 - sys_corr_41: 8.34461715e-01 - sys_corr_42: 1.20413588e+00 - sys_corr_43: -8.11470068e-01 + sys_corr_38: 1.26698536e+00 + sys_corr_39: -7.57782885e-01 + sys_corr_40: -3.33725093e-01 + sys_corr_41: -8.34461715e-01 + sys_corr_42: -1.20413588e+00 + sys_corr_43: 8.11470068e-01 sys_corr_44: 8.65145378e-01 - sys_corr_45: 4.53301067e-01 - sys_corr_46: -7.76515681e-02 + sys_corr_45: -4.53301067e-01 + sys_corr_46: 7.76515681e-02 sys_corr_47: -4.50885788e-02 - sys_corr_48: 1.37309819e+00 + sys_corr_48: -1.37309819e+00 sys_corr_49: -2.60904482e+00 sys_corr_50: 5.65784177e-01 sys_corr_51: 2.25553197e-01 - sys_corr_52: 8.30194173e-01 - sys_corr_53: 3.44210346e-01 + sys_corr_52: -8.30194173e-01 + sys_corr_53: -3.44210346e-01 sys_corr_54: -3.47442154e+00 - sys_corr_55: -1.95302934e+00 + sys_corr_55: 1.95302934e+00 sys_corr_56: 1.45328624e+00 - sys_corr_57: 4.52839669e-01 + sys_corr_57: -4.52839669e-01 sys_corr_58: -2.00474032e+00 - sys_corr_59: 1.06280045e+00 + sys_corr_59: -1.06280045e+00 sys_corr_60: -6.46350471e-01 sys_corr_61: -6.14961497e-01 sys_corr_62: 1.22173757e+00 - sys_corr_63: 5.78006925e-01 - sys_corr_64: 1.79263288e+00 + sys_corr_63: -5.78006925e-01 + sys_corr_64: -1.79263288e+00 sys_corr_65: -3.07836407e+00 sys_corr_66: -3.97657292e-01 sys_corr_67: 1.14329262e+00 sys_corr_68: 5.26384132e-03 sys_corr_69: 7.27138993e-01 sys_corr_70: 1.01729794e+00 - sys_corr_71: 7.80707868e-01 - sys_corr_72: 1.21868436e+00 - sys_corr_73: -4.84547913e+00 + sys_corr_71: -4.84547913e+00 + sys_corr_72: -1.21868436e+00 + sys_corr_73: 7.80707868e-01 sys_corr_74: -1.60227485e+00 sys_corr_75: 2.55492267e-01 sys_corr_76: 2.07021694e+00 - sys_corr_77: -2.20141057e+00 - sys_corr_78: 2.70028335e+00 - sys_corr_79: 2.93443505e+00 - sys_corr_80: -2.69227366e+00 + sys_corr_77: 2.20141057e+00 + sys_corr_78: 2.93443505e+00 + sys_corr_79: 2.69227366e+00 + sys_corr_80: -2.70028335e+00 sys_corr_81: 2.90805814e+00 sys_corr_82: -3.22202272e-02 sys_corr_83: 5.80625306e+00 - sys_corr_84: -3.28262850e+01 + sys_corr_84: 3.28262850e+01 sys_corr_85: 2.31199468e+01 sys_corr_86: -3.25026046e+00 sys_corr_87: 8.70363984e-01 sys_corr_88: 2.33139781e+00 sys_corr_89: 2.69491256e+00 sys_corr_90: -3.67825893e+01 - sys_corr_91: -7.00959012e+00 + sys_corr_91: 7.00959012e+00 sys_corr_92: 4.16051138e+00 sys_corr_93: 3.60891706e+00 sys_corr_94: -1.38609394e+00 @@ -14034,40 +14034,40 @@ bins: sys_corr_96: -8.85889167e+00 sys_corr_97: -2.86961229e-01 sys_corr_98: -4.57881964e+01 - sys_corr_99: -1.09410594e+01 - sys_corr_100: 1.40642776e+00 + sys_corr_99: 1.09410594e+01 + sys_corr_100: -1.40642776e+00 sys_corr_101: 3.31700689e+00 - sys_corr_102: 2.67701128e+00 - sys_corr_103: 1.66767699e+01 - sys_corr_104: -5.56119721e+00 - sys_corr_105: -6.10817239e+01 - sys_corr_106: -1.84504609e+00 - sys_corr_107: 1.90815959e+00 + sys_corr_102: -2.67701128e+00 + sys_corr_103: -1.66767699e+01 + sys_corr_104: 5.56119721e+00 + sys_corr_105: 6.10817239e+01 + sys_corr_106: 1.84504609e+00 + sys_corr_107: -1.90815959e+00 sys_corr_108: -7.05838864e-02 sys_corr_109: 1.90086859e+00 sys_corr_110: 1.82138469e+00 - sys_corr_111: -7.03147130e+01 + sys_corr_111: 7.03147130e+01 sys_corr_112: 2.83285467e-01 sys_corr_113: 1.92866087e-01 sys_corr_114: 3.49619199e-03 - sys_corr_115: 8.89917367e-01 + sys_corr_115: -8.89917367e-01 sys_corr_116: -1.05391436e+00 sys_corr_117: -1.23640201e-01 sys_corr_118: -2.96649145e-01 sys_corr_119: 4.52770666e-04 sys_corr_120: 3.93489780e-01 - sys_corr_121: -2.92343481e-03 - sys_corr_122: -1.55609269e-02 - sys_corr_123: -7.33823976e-02 + sys_corr_121: 2.92343481e-03 + sys_corr_122: -7.33823976e-02 + sys_corr_123: -1.55609269e-02 sys_corr_124: 1.43850855e+00 - sys_corr_125: -2.24430198e-01 - sys_corr_126: -3.64980308e-03 + sys_corr_125: 2.24430198e-01 + sys_corr_126: 3.64980308e-03 sys_corr_127: 7.35936811e+01 sys_corr_128: -5.41796314e-01 - sys_corr_129: -5.46248255e-02 - sys_corr_130: -8.87299812e-03 + sys_corr_129: 5.46248255e-02 + sys_corr_130: 8.87299812e-03 sys_corr_131: 2.80722089e-01 - sys_corr_132: -8.95309476e-02 + sys_corr_132: 8.95309476e-02 stat: 0.0 luminosity: 74.42028 - sys_corr_1: 3.15172638e+01 @@ -14079,9 +14079,9 @@ bins: sys_corr_7: -3.98356159e+00 sys_corr_8: -1.50977394e+00 sys_corr_9: 1.54000047e+01 - sys_corr_10: -3.06127605e+00 + sys_corr_10: 3.06127605e+00 sys_corr_11: -2.77195441e+00 - sys_corr_12: 5.64675316e+00 + sys_corr_12: -5.64675316e+00 sys_corr_13: -6.18120135e+00 sys_corr_14: 3.83032203e+00 sys_corr_15: 1.30217188e+01 @@ -14107,60 +14107,60 @@ bins: sys_corr_35: -1.23358193e+00 sys_corr_36: -6.08828186e-02 sys_corr_37: -8.39570520e-01 - sys_corr_38: -1.20912377e+00 - sys_corr_39: 3.99618310e-01 - sys_corr_40: 6.88491596e-01 - sys_corr_41: 2.00748093e+00 - sys_corr_42: 1.22922388e+00 - sys_corr_43: -2.20179923e+00 + sys_corr_38: 1.20912377e+00 + sys_corr_39: -3.99618310e-01 + sys_corr_40: -6.88491596e-01 + sys_corr_41: -2.00748093e+00 + sys_corr_42: -1.22922388e+00 + sys_corr_43: 2.20179923e+00 sys_corr_44: 3.72761152e-02 - sys_corr_45: -7.00248422e-01 - sys_corr_46: 1.09093532e-01 + sys_corr_45: 7.00248422e-01 + sys_corr_46: -1.09093532e-01 sys_corr_47: 8.64415746e-01 - sys_corr_48: -5.49231238e-01 + sys_corr_48: 5.49231238e-01 sys_corr_49: -1.37640210e+00 sys_corr_50: 9.40779792e-01 sys_corr_51: 7.07461346e-01 - sys_corr_52: -1.40919005e-01 - sys_corr_53: -8.99289344e-01 + sys_corr_52: 1.40919005e-01 + sys_corr_53: 8.99289344e-01 sys_corr_54: -2.76613692e+00 - sys_corr_55: -1.25964003e+00 + sys_corr_55: 1.25964003e+00 sys_corr_56: 1.10334117e+00 - sys_corr_57: 1.23895293e+00 + sys_corr_57: -1.23895293e+00 sys_corr_58: -1.80552191e+00 - sys_corr_59: 1.02731751e+00 + sys_corr_59: -1.02731751e+00 sys_corr_60: -3.42750891e-02 sys_corr_61: -3.92398122e-01 sys_corr_62: 1.88067087e+00 - sys_corr_63: -5.02107410e-02 - sys_corr_64: 1.65609229e+00 + sys_corr_63: 5.02107410e-02 + sys_corr_64: -1.65609229e+00 sys_corr_65: -2.40775409e+00 sys_corr_66: -2.60882257e-01 sys_corr_67: 6.30295317e-01 sys_corr_68: 5.57700106e-01 sys_corr_69: 1.38224161e+00 sys_corr_70: 3.85064770e-01 - sys_corr_71: 5.10395184e-01 - sys_corr_72: 1.67065583e+00 - sys_corr_73: -5.03669183e+00 + sys_corr_71: -5.03669183e+00 + sys_corr_72: -1.67065583e+00 + sys_corr_73: 5.10395184e-01 sys_corr_74: -1.25679274e+00 sys_corr_75: -1.94681761e+00 sys_corr_76: 2.42388413e+00 - sys_corr_77: -3.16001939e+00 - sys_corr_78: 3.75199432e+00 - sys_corr_79: 2.83300972e+00 - sys_corr_80: -2.65224216e+00 + sys_corr_77: 3.16001939e+00 + sys_corr_78: 2.83300972e+00 + sys_corr_79: 2.65224216e+00 + sys_corr_80: -3.75199432e+00 sys_corr_81: 3.78231714e+00 sys_corr_82: -6.93670832e-01 sys_corr_83: 6.84876522e+00 - sys_corr_84: -3.41878487e+01 + sys_corr_84: 3.41878487e+01 sys_corr_85: 2.37365597e+01 sys_corr_86: -2.82931309e+00 sys_corr_87: 6.52151363e-01 sys_corr_88: 1.93177375e+00 sys_corr_89: 3.55078015e+00 sys_corr_90: -3.79604446e+01 - sys_corr_91: -5.36917375e+00 + sys_corr_91: 5.36917375e+00 sys_corr_92: 4.51378675e+00 sys_corr_93: -3.98949801e+00 sys_corr_94: -2.36023374e+00 @@ -14168,40 +14168,40 @@ bins: sys_corr_96: 2.23475988e+00 sys_corr_97: -1.73512705e+01 sys_corr_98: 2.61273436e+01 - sys_corr_99: 8.01889228e+01 - sys_corr_100: 2.87794750e+00 + sys_corr_99: -8.01889228e+01 + sys_corr_100: -2.87794750e+00 sys_corr_101: 3.18498191e+00 - sys_corr_102: -3.61039170e+00 - sys_corr_103: 1.68343378e+01 - sys_corr_104: -1.30072452e+01 - sys_corr_105: -5.67449177e+01 - sys_corr_106: -1.49162072e+00 - sys_corr_107: 2.00901717e+00 + sys_corr_102: 3.61039170e+00 + sys_corr_103: -1.68343378e+01 + sys_corr_104: 1.30072452e+01 + sys_corr_105: 5.67449177e+01 + sys_corr_106: 1.49162072e+00 + sys_corr_107: -2.00901717e+00 sys_corr_108: -1.43744106e-02 sys_corr_109: 8.39550605e-01 sys_corr_110: 1.55238749e+00 - sys_corr_111: -2.41714029e+01 + sys_corr_111: 2.41714029e+01 sys_corr_112: 1.84109983e-01 sys_corr_113: 1.41330059e-01 sys_corr_114: 6.33445946e-03 - sys_corr_115: 8.17906365e-01 + sys_corr_115: -8.17906365e-01 sys_corr_116: -8.74264232e-01 sys_corr_117: -1.98229043e-01 sys_corr_118: -2.73590486e-01 sys_corr_119: 4.99821229e-03 sys_corr_120: 3.31329175e-01 - sys_corr_121: -3.53097802e-03 - sys_corr_122: -8.32382895e-03 - sys_corr_123: -7.75919241e-02 + sys_corr_121: 3.53097802e-03 + sys_corr_122: -7.75919241e-02 + sys_corr_123: -8.32382895e-03 sys_corr_124: 1.32137089e+00 - sys_corr_125: -2.08859312e-01 - sys_corr_126: 4.72448044e-03 + sys_corr_125: 2.08859312e-01 + sys_corr_126: -4.72448044e-03 sys_corr_127: -7.22241156e+01 sys_corr_128: -3.67366542e-01 - sys_corr_129: -4.05140055e-02 - sys_corr_130: -1.99472118e-02 + sys_corr_129: 4.05140055e-02 + sys_corr_130: 1.99472118e-02 sys_corr_131: 2.55616407e-01 - sys_corr_132: -2.17454568e-01 + sys_corr_132: 2.17454568e-01 stat: 0.0 luminosity: 7.74753540e+01 - sys_corr_1: 2.97957075e+01 @@ -14213,9 +14213,9 @@ bins: sys_corr_7: 4.89361271e-01 sys_corr_8: -7.29333984e+00 sys_corr_9: 9.08921459e+00 - sys_corr_10: 4.83873860e-01 + sys_corr_10: -4.83873860e-01 sys_corr_11: -7.86266029e-01 - sys_corr_12: -6.55802812e+00 + sys_corr_12: 6.55802812e+00 sys_corr_13: -8.15741081e+00 sys_corr_14: -6.74761633e+00 sys_corr_15: -2.49089691e+00 @@ -14241,60 +14241,60 @@ bins: sys_corr_35: -1.28784360e+00 sys_corr_36: 7.76483340e-01 sys_corr_37: -1.37301554e+00 - sys_corr_38: -6.94938700e-01 - sys_corr_39: 3.01790010e+00 - sys_corr_40: -2.04818342e-02 - sys_corr_41: 1.14412667e+00 - sys_corr_42: 1.69181855e+00 - sys_corr_43: 9.12683301e-01 + sys_corr_38: 6.94938700e-01 + sys_corr_39: -3.01790010e+00 + sys_corr_40: 2.04818342e-02 + sys_corr_41: -1.14412667e+00 + sys_corr_42: -1.69181855e+00 + sys_corr_43: -9.12683301e-01 sys_corr_44: 2.09054938e+00 - sys_corr_45: 1.03149024e+00 - sys_corr_46: 4.20490286e-01 + sys_corr_45: -1.03149024e+00 + sys_corr_46: -4.20490286e-01 sys_corr_47: -1.16854297e+00 - sys_corr_48: 1.65105400e+00 + sys_corr_48: -1.65105400e+00 sys_corr_49: 1.30208954e+00 sys_corr_50: 3.62066297e-01 sys_corr_51: 2.35862537e-01 - sys_corr_52: 7.78612784e-01 - sys_corr_53: 1.93676234e-01 + sys_corr_52: -7.78612784e-01 + sys_corr_53: -1.93676234e-01 sys_corr_54: -1.46938952e+00 - sys_corr_55: -1.50061292e+00 + sys_corr_55: 1.50061292e+00 sys_corr_56: 2.59340615e-01 - sys_corr_57: 1.91119425e+00 + sys_corr_57: -1.91119425e+00 sys_corr_58: -2.44383915e+00 - sys_corr_59: 1.40867416e+00 + sys_corr_59: -1.40867416e+00 sys_corr_60: 8.14667058e-03 sys_corr_61: -2.70814851e-01 sys_corr_62: 2.98643758e+00 - sys_corr_63: -3.43858218e-01 - sys_corr_64: 1.53234415e+00 + sys_corr_63: 3.43858218e-01 + sys_corr_64: -1.53234415e+00 sys_corr_65: -1.22139433e+00 sys_corr_66: 2.82260639e-01 sys_corr_67: 2.56944769e-01 sys_corr_68: -3.04103509e-01 sys_corr_69: 2.21263748e+00 sys_corr_70: 5.31416055e-02 - sys_corr_71: 7.64155208e-01 - sys_corr_72: 1.32680830e+00 - sys_corr_73: -3.51244908e+00 + sys_corr_71: -3.51244908e+00 + sys_corr_72: -1.32680830e+00 + sys_corr_73: 7.64155208e-01 sys_corr_74: -1.15406835e+00 sys_corr_75: -2.25848958e+00 sys_corr_76: 3.72470569e+00 - sys_corr_77: -4.43482704e+00 - sys_corr_78: 3.56794017e+00 - sys_corr_79: 3.31347377e+00 - sys_corr_80: -2.30221790e+00 + sys_corr_77: 4.43482704e+00 + sys_corr_78: 3.31347377e+00 + sys_corr_79: 2.30221790e+00 + sys_corr_80: -3.56794017e+00 sys_corr_81: 3.72023262e+00 sys_corr_82: 4.88965798e-01 sys_corr_83: 6.41896079e+00 - sys_corr_84: -3.09717899e+01 + sys_corr_84: 3.09717899e+01 sys_corr_85: 2.64024374e+01 sys_corr_86: -3.69468702e+00 sys_corr_87: -9.55252502e-01 sys_corr_88: 2.83464586e+00 sys_corr_89: 3.81924195e+00 sys_corr_90: -3.70749132e+01 - sys_corr_91: -5.43620288e+00 + sys_corr_91: 5.43620288e+00 sys_corr_92: 4.03481885e+00 sys_corr_93: -1.06033457e+01 sys_corr_94: -1.07606863e+01 @@ -14302,40 +14302,40 @@ bins: sys_corr_96: -6.81373941e+00 sys_corr_97: -5.64074452e+01 sys_corr_98: -5.54348796e+01 - sys_corr_99: -8.37997373e+01 - sys_corr_100: 1.46785571e+00 + sys_corr_99: 8.37997373e+01 + sys_corr_100: -1.46785571e+00 sys_corr_101: -9.99352713e-01 - sys_corr_102: -1.68286943e+01 - sys_corr_103: -1.91013776e+00 - sys_corr_104: -3.65014682e+00 - sys_corr_105: -9.39295495e+00 - sys_corr_106: -1.01057842e+00 - sys_corr_107: 4.43383917e-01 + sys_corr_102: 1.68286943e+01 + sys_corr_103: 1.91013776e+00 + sys_corr_104: 3.65014682e+00 + sys_corr_105: 9.39295495e+00 + sys_corr_106: 1.01057842e+00 + sys_corr_107: -4.43383917e-01 sys_corr_108: 5.18800922e-01 sys_corr_109: 1.41922717e+00 sys_corr_110: 4.47826447e-01 - sys_corr_111: 5.35637343e+00 + sys_corr_111: -5.35637343e+00 sys_corr_112: -1.56389337e-01 sys_corr_113: -6.11870953e-02 sys_corr_114: 6.89802652e-03 - sys_corr_115: 8.00674173e-01 + sys_corr_115: -8.00674173e-01 sys_corr_116: -3.62187996e-01 sys_corr_117: 2.73076797e-01 sys_corr_118: -3.17298003e-01 sys_corr_119: 5.84402583e-03 sys_corr_120: -6.18879856e-01 - sys_corr_121: 1.70142882e-04 - sys_corr_122: 1.34450165e-02 - sys_corr_123: -1.02794894e-01 + sys_corr_121: -1.70142882e-04 + sys_corr_122: -1.02794894e-01 + sys_corr_123: 1.34450165e-02 sys_corr_124: 7.84432261e-01 - sys_corr_125: -1.78913068e-01 - sys_corr_126: 1.43468932e-02 + sys_corr_125: 1.78913068e-01 + sys_corr_126: -1.43468932e-02 sys_corr_127: -6.36882677e+01 sys_corr_128: -5.66706421e-01 - sys_corr_129: -1.56489367e-01 - sys_corr_130: -1.32477306e-02 + sys_corr_129: 1.56489367e-01 + sys_corr_130: 1.32477306e-02 sys_corr_131: 1.15000076e-01 - sys_corr_132: -2.40923717e-01 + sys_corr_132: 2.40923717e-01 stat: 0.0 luminosity: 7.27379400e+01 - sys_corr_1: 3.02823953e+01 @@ -14347,9 +14347,9 @@ bins: sys_corr_7: 3.25670420e+00 sys_corr_8: -4.95478919e+00 sys_corr_9: 2.96046495e+00 - sys_corr_10: 7.99660929e+00 + sys_corr_10: -7.99660929e+00 sys_corr_11: -3.70308842e-01 - sys_corr_12: 6.89038094e+00 + sys_corr_12: -6.89038094e+00 sys_corr_13: 6.37497495e+00 sys_corr_14: 4.61424706e+00 sys_corr_15: -7.73271127e-01 @@ -14375,60 +14375,60 @@ bins: sys_corr_35: -5.48503346e-01 sys_corr_36: 2.67147957e-01 sys_corr_37: 6.95293911e-01 - sys_corr_38: -4.00258042e-01 - sys_corr_39: -1.30593353e+00 - sys_corr_40: -4.80776773e-01 - sys_corr_41: 2.05390749e+00 - sys_corr_42: 3.30984360e-01 - sys_corr_43: -7.50855834e-01 + sys_corr_38: 4.00258042e-01 + sys_corr_39: 1.30593353e+00 + sys_corr_40: 4.80776773e-01 + sys_corr_41: -2.05390749e+00 + sys_corr_42: -3.30984360e-01 + sys_corr_43: 7.50855834e-01 sys_corr_44: 1.61018978e+00 - sys_corr_45: -9.02644590e-01 - sys_corr_46: 1.09673055e+00 + sys_corr_45: 9.02644590e-01 + sys_corr_46: -1.09673055e+00 sys_corr_47: 2.32751116e-01 - sys_corr_48: -3.50825788e-01 + sys_corr_48: 3.50825788e-01 sys_corr_49: 9.08087192e-02 sys_corr_50: 1.65774663e+00 sys_corr_51: 6.35899869e-03 - sys_corr_52: 1.02568440e+00 - sys_corr_53: -1.69846711e-01 + sys_corr_52: -1.02568440e+00 + sys_corr_53: 1.69846711e-01 sys_corr_54: -1.34739979e+00 - sys_corr_55: -1.68484311e+00 + sys_corr_55: 1.68484311e+00 sys_corr_56: 8.82117935e-01 - sys_corr_57: 8.65057074e-01 + sys_corr_57: -8.65057074e-01 sys_corr_58: -1.36048849e+00 - sys_corr_59: -3.25783579e-01 + sys_corr_59: 3.25783579e-01 sys_corr_60: -2.06077937e-01 sys_corr_61: 2.17029544e-01 sys_corr_62: 1.00307189e+00 - sys_corr_63: 5.25017745e-01 - sys_corr_64: 1.43366940e+00 + sys_corr_63: -5.25017745e-01 + sys_corr_64: -1.43366940e+00 sys_corr_65: -1.61978978e+00 sys_corr_66: 3.83209568e-01 sys_corr_67: 2.32769233e-02 sys_corr_68: 9.28649581e-01 sys_corr_69: 4.67862643e-01 sys_corr_70: -8.95035400e-01 - sys_corr_71: 4.73910381e-02 - sys_corr_72: 1.15475325e+00 - sys_corr_73: -1.19993536e+00 + sys_corr_71: -1.19993536e+00 + sys_corr_72: -1.15475325e+00 + sys_corr_73: 4.73910381e-02 sys_corr_74: 2.49380451e-01 sys_corr_75: -3.45185325e+00 sys_corr_76: 2.44570997e+00 - sys_corr_77: -5.09915108e+00 - sys_corr_78: 3.34614444e+00 - sys_corr_79: 1.69816753e+00 - sys_corr_80: -1.54170005e+00 + sys_corr_77: 5.09915108e+00 + sys_corr_78: 1.69816753e+00 + sys_corr_79: 1.54170005e+00 + sys_corr_80: -3.34614444e+00 sys_corr_81: 3.24336870e+00 sys_corr_82: 2.87196093e-01 sys_corr_83: 5.30449419e+00 - sys_corr_84: -2.17746105e+01 + sys_corr_84: 2.17746105e+01 sys_corr_85: 1.67803098e+01 sys_corr_86: -2.74320419e+00 sys_corr_87: -4.99595771e-01 sys_corr_88: 2.08431897e+00 sys_corr_89: 2.84581184e+00 sys_corr_90: -2.42388642e+01 - sys_corr_91: -2.89956912e+00 + sys_corr_91: 2.89956912e+00 sys_corr_92: 2.51724554e+00 sys_corr_93: -4.07482001e+00 sys_corr_94: -9.10759543e+00 @@ -14436,40 +14436,40 @@ bins: sys_corr_96: 4.32906838e-01 sys_corr_97: -1.82014822e+01 sys_corr_98: 2.84641332e+00 - sys_corr_99: 2.54383758e+01 - sys_corr_100: -1.33318961e-02 + sys_corr_99: -2.54383758e+01 + sys_corr_100: 1.33318961e-02 sys_corr_101: -1.12753666e+01 - sys_corr_102: -5.71437146e+01 - sys_corr_103: -5.30066213e+01 - sys_corr_104: 1.62155844e+00 - sys_corr_105: 6.55484207e+01 - sys_corr_106: -1.92508825e+00 - sys_corr_107: 6.81092907e-01 + sys_corr_102: 5.71437146e+01 + sys_corr_103: 5.30066213e+01 + sys_corr_104: -1.62155844e+00 + sys_corr_105: -6.55484207e+01 + sys_corr_106: 1.92508825e+00 + sys_corr_107: -6.81092907e-01 sys_corr_108: 8.16747993e-01 sys_corr_109: -3.64552126e-02 sys_corr_110: -1.61792918e+00 - sys_corr_111: -6.84275013e+01 + sys_corr_111: 6.84275013e+01 sys_corr_112: -3.48155177e-01 sys_corr_113: -5.39222431e-02 sys_corr_114: 1.09087876e-02 - sys_corr_115: 7.35186401e-01 + sys_corr_115: -7.35186401e-01 sys_corr_116: -7.67275847e-02 sys_corr_117: 2.23918719e-01 sys_corr_118: -3.42013128e-01 sys_corr_119: 1.78971620e-02 sys_corr_120: -6.27457633e-01 - sys_corr_121: -6.57294060e-04 - sys_corr_122: 3.64519675e-02 - sys_corr_123: -1.29294987e-01 + sys_corr_121: 6.57294060e-04 + sys_corr_122: -1.29294987e-01 + sys_corr_123: 3.64519675e-02 sys_corr_124: 5.81281296e-01 - sys_corr_125: -1.45940929e-01 - sys_corr_126: 1.35419688e-02 + sys_corr_125: 1.45940929e-01 + sys_corr_126: -1.35419688e-02 sys_corr_127: 1.76853672e+00 sys_corr_128: 1.37459660e-01 - sys_corr_129: -2.00307473e-01 - sys_corr_130: -1.63386172e-02 + sys_corr_129: 2.00307473e-01 + sys_corr_130: 1.63386172e-02 sys_corr_131: 2.91885977e-02 - sys_corr_132: -3.83924839e-01 + sys_corr_132: 3.83924839e-01 stat: 0.0 luminosity: 7.30614940e+01 - sys_corr_1: 2.74721160e+01 @@ -14481,9 +14481,9 @@ bins: sys_corr_7: -1.10739815e+00 sys_corr_8: 7.66227719e+00 sys_corr_9: -2.12490810e+00 - sys_corr_10: -7.60725380e+00 + sys_corr_10: 7.60725380e+00 sys_corr_11: -9.37597925e+00 - sys_corr_12: -2.19101729e+00 + sys_corr_12: 2.19101729e+00 sys_corr_13: -2.99557240e-01 sys_corr_14: 3.77353936e+00 sys_corr_15: -9.44993624e-01 @@ -14509,60 +14509,60 @@ bins: sys_corr_35: 2.89225077e-01 sys_corr_36: -6.56037599e-02 sys_corr_37: -3.84509684e-02 - sys_corr_38: 5.44980404e-01 - sys_corr_39: 1.87795119e+00 - sys_corr_40: -1.45340262e-01 - sys_corr_41: 2.39074057e+00 - sys_corr_42: 8.18112362e-01 - sys_corr_43: 1.31751859e+00 + sys_corr_38: -5.44980404e-01 + sys_corr_39: -1.87795119e+00 + sys_corr_40: 1.45340262e-01 + sys_corr_41: -2.39074057e+00 + sys_corr_42: -8.18112362e-01 + sys_corr_43: -1.31751859e+00 sys_corr_44: 4.57320665e+00 - sys_corr_45: -3.88712041e-01 - sys_corr_46: -1.42048482e+00 + sys_corr_45: 3.88712041e-01 + sys_corr_46: 1.42048482e+00 sys_corr_47: -1.39541282e+00 - sys_corr_48: -1.03539769e+00 + sys_corr_48: 1.03539769e+00 sys_corr_49: 1.28281229e+00 sys_corr_50: 1.31733596e+00 sys_corr_51: -8.83807124e-01 - sys_corr_52: 1.76605095e+00 - sys_corr_53: -2.48602346e-01 + sys_corr_52: -1.76605095e+00 + sys_corr_53: 2.48602346e-01 sys_corr_54: 7.51785895e-01 - sys_corr_55: -2.47251182e+00 + sys_corr_55: 2.47251182e+00 sys_corr_56: 4.94614410e-01 - sys_corr_57: 2.12042706e+00 + sys_corr_57: -2.12042706e+00 sys_corr_58: -9.92873248e-01 - sys_corr_59: -5.40373738e-02 + sys_corr_59: 5.40373738e-02 sys_corr_60: 1.18799187e+00 sys_corr_61: -1.04459866e+00 sys_corr_62: 2.44546555e+00 - sys_corr_63: -8.69992404e-01 - sys_corr_64: -3.97995270e-01 + sys_corr_63: 8.69992404e-01 + sys_corr_64: 3.97995270e-01 sys_corr_65: -7.08022017e-01 sys_corr_66: 1.10757244e+00 sys_corr_67: 9.10020736e-02 sys_corr_68: 5.49913054e-02 sys_corr_69: 2.34134836e+00 sys_corr_70: -2.87999380e-01 - sys_corr_71: 2.76331087e-01 - sys_corr_72: 1.32239535e+00 - sys_corr_73: -9.78695153e-01 + sys_corr_71: -9.78695153e-01 + sys_corr_72: -1.32239535e+00 + sys_corr_73: 2.76331087e-01 sys_corr_74: 8.64808115e-01 sys_corr_75: -4.10667470e+00 sys_corr_76: 2.64778709e+00 - sys_corr_77: -6.01597237e+00 - sys_corr_78: 2.27446869e+00 - sys_corr_79: 3.02278831e-01 - sys_corr_80: -1.32521901e+00 + sys_corr_77: 6.01597237e+00 + sys_corr_78: 3.02278831e-01 + sys_corr_79: 1.32521901e+00 + sys_corr_80: -2.27446869e+00 sys_corr_81: 1.48738190e+00 sys_corr_82: 1.80634940e+00 sys_corr_83: 3.80071150e+00 - sys_corr_84: -1.79705712e+01 + sys_corr_84: 1.79705712e+01 sys_corr_85: 1.55345881e+01 sys_corr_86: -2.25627807e+00 sys_corr_87: -3.82647717e-01 sys_corr_88: 1.46712320e+00 sys_corr_89: 2.64682939e+00 sys_corr_90: -2.14679972e+01 - sys_corr_91: -2.96454830e+00 + sys_corr_91: 2.96454830e+00 sys_corr_92: 2.80667683e+00 sys_corr_93: -7.42246044e+00 sys_corr_94: -1.91060053e+01 @@ -14570,40 +14570,40 @@ bins: sys_corr_96: 6.61198265e-01 sys_corr_97: -6.88718166e+01 sys_corr_98: -3.83589009e+01 - sys_corr_99: 5.31485356e+01 - sys_corr_100: -1.05755587e+01 + sys_corr_99: -5.31485356e+01 + sys_corr_100: 1.05755587e+01 sys_corr_101: -2.42914849e+01 - sys_corr_102: -1.71133134e+01 - sys_corr_103: -1.53886396e+01 - sys_corr_104: -1.17040278e+01 - sys_corr_105: -6.03228585e+00 - sys_corr_106: 1.56469720e+00 - sys_corr_107: -2.81629163e+00 + sys_corr_102: 1.71133134e+01 + sys_corr_103: 1.53886396e+01 + sys_corr_104: 1.17040278e+01 + sys_corr_105: 6.03228585e+00 + sys_corr_106: -1.56469720e+00 + sys_corr_107: 2.81629163e+00 sys_corr_108: 3.91561975e-01 sys_corr_109: -1.31930250e+00 sys_corr_110: -1.64588459e+00 - sys_corr_111: 7.46837808e+01 + sys_corr_111: -7.46837808e+01 sys_corr_112: -7.05293754e-01 sys_corr_113: -7.25212687e-01 sys_corr_114: 1.07633732e-02 - sys_corr_115: 2.00016952e-01 + sys_corr_115: -2.00016952e-01 sys_corr_116: -1.37061040e-01 sys_corr_117: 9.25716563e-02 sys_corr_118: -3.70914416e-01 sys_corr_119: 1.65781236e-02 sys_corr_120: 1.75468719e-01 - sys_corr_121: -4.45893177e-03 - sys_corr_122: 3.90960366e-02 - sys_corr_123: -1.49231298e-01 + sys_corr_121: 4.45893177e-03 + sys_corr_122: -1.49231298e-01 + sys_corr_123: 3.90960366e-02 sys_corr_124: 2.64652680e-01 - sys_corr_125: -7.14442871e-02 - sys_corr_126: 5.07291381e-03 + sys_corr_125: 7.14442871e-02 + sys_corr_126: -5.07291381e-03 sys_corr_127: 4.59260872e+01 sys_corr_128: 2.60478882e-01 - sys_corr_129: -4.88460275e-01 - sys_corr_130: 7.95750970e-03 + sys_corr_129: 4.88460275e-01 + sys_corr_130: -7.95750970e-03 sys_corr_131: -4.86092161e-01 - sys_corr_132: -3.37679746e-01 + sys_corr_132: 3.37679746e-01 stat: 0.0 luminosity: 7.07780040e+01 - sys_corr_1: 2.34419771e+01 @@ -14615,9 +14615,9 @@ bins: sys_corr_7: -3.87479307e+00 sys_corr_8: 1.18858622e+00 sys_corr_9: -2.24191325e+00 - sys_corr_10: -2.55779919e+00 + sys_corr_10: 2.55779919e+00 sys_corr_11: 1.37145194e+01 - sys_corr_12: 4.54159428e+00 + sys_corr_12: -4.54159428e+00 sys_corr_13: -2.50115760e+00 sys_corr_14: -2.39095369e-01 sys_corr_15: 2.38500091e+00 @@ -14643,60 +14643,60 @@ bins: sys_corr_35: -2.36597621e-01 sys_corr_36: 9.87870920e-01 sys_corr_37: 4.42848842e-01 - sys_corr_38: 8.72702302e-02 - sys_corr_39: 2.23177806e+00 - sys_corr_40: -7.49830810e-01 - sys_corr_41: 2.07401179e+00 - sys_corr_42: 8.36536203e-01 - sys_corr_43: 1.79330264e+00 + sys_corr_38: -8.72702302e-02 + sys_corr_39: -2.23177806e+00 + sys_corr_40: 7.49830810e-01 + sys_corr_41: -2.07401179e+00 + sys_corr_42: -8.36536203e-01 + sys_corr_43: -1.79330264e+00 sys_corr_44: 1.84363693e+00 - sys_corr_45: -5.58530046e-01 - sys_corr_46: 2.33301462e-01 + sys_corr_45: 5.58530046e-01 + sys_corr_46: -2.33301462e-01 sys_corr_47: -1.87933533e+00 - sys_corr_48: -2.65197722e+00 + sys_corr_48: 2.65197722e+00 sys_corr_49: 2.69243416e+00 sys_corr_50: 2.16443450e+00 sys_corr_51: -6.06324582e-01 - sys_corr_52: 2.94718160e-01 - sys_corr_53: 2.72097624e-01 + sys_corr_52: -2.94718160e-01 + sys_corr_53: -2.72097624e-01 sys_corr_54: 9.02354123e-01 - sys_corr_55: -1.98975433e-01 + sys_corr_55: 1.98975433e-01 sys_corr_56: -6.19209779e-01 - sys_corr_57: 1.46472784e+00 + sys_corr_57: -1.46472784e+00 sys_corr_58: -1.30151751e+00 - sys_corr_59: 5.20111672e-01 + sys_corr_59: -5.20111672e-01 sys_corr_60: 7.89465398e-01 sys_corr_61: -3.77082175e-02 sys_corr_62: 1.71231336e+00 - sys_corr_63: 2.47359271e-01 - sys_corr_64: 1.59853032e-01 + sys_corr_63: -2.47359271e-01 + sys_corr_64: -1.59853032e-01 sys_corr_65: -1.68389166e-01 sys_corr_66: 6.04871875e-01 sys_corr_67: 1.93834861e-01 sys_corr_68: -3.68103033e-01 sys_corr_69: 1.64707215e+00 sys_corr_70: -5.24695836e-01 - sys_corr_71: -4.27942897e-01 - sys_corr_72: 9.53373947e-02 - sys_corr_73: -4.64799931e-01 + sys_corr_71: -4.64799931e-01 + sys_corr_72: -9.53373947e-02 + sys_corr_73: -4.27942897e-01 sys_corr_74: 7.79437188e-01 sys_corr_75: -3.25085462e+00 sys_corr_76: 2.33007789e+00 - sys_corr_77: -2.78763324e+00 - sys_corr_78: 1.17055340e+00 - sys_corr_79: 1.72838075e+00 - sys_corr_80: -1.30730075e-02 + sys_corr_77: 2.78763324e+00 + sys_corr_78: 1.72838075e+00 + sys_corr_79: 1.30730075e-02 + sys_corr_80: -1.17055340e+00 sys_corr_81: 8.57991943e-01 sys_corr_82: 5.63816446e-01 sys_corr_83: 2.33921369e+00 - sys_corr_84: -1.22124250e+01 + sys_corr_84: 1.22124250e+01 sys_corr_85: 1.05067067e+01 sys_corr_86: -1.99153603e+00 sys_corr_87: -1.12701923e+00 sys_corr_88: 1.16772062e+00 sys_corr_89: 1.85795544e+00 sys_corr_90: -1.47467380e+01 - sys_corr_91: -1.81580605e+00 + sys_corr_91: 1.81580605e+00 sys_corr_92: 1.95464471e+00 sys_corr_93: -3.52247135e+00 sys_corr_94: -8.22823349e+00 @@ -14704,40 +14704,40 @@ bins: sys_corr_96: -2.15411311e+00 sys_corr_97: -1.88942737e+01 sys_corr_98: -5.79405731e+00 - sys_corr_99: 4.88842715e+00 - sys_corr_100: -5.14711851e+01 + sys_corr_99: -4.88842715e+00 + sys_corr_100: 5.14711851e+01 sys_corr_101: -4.70190483e+01 - sys_corr_102: 8.15506292e+01 - sys_corr_103: -7.79474179e+00 - sys_corr_104: 2.92123856e+00 - sys_corr_105: 2.58814748e+01 - sys_corr_106: 2.22041654e+01 - sys_corr_107: -6.62581906e+00 + sys_corr_102: -8.15506292e+01 + sys_corr_103: 7.79474179e+00 + sys_corr_104: -2.92123856e+00 + sys_corr_105: -2.58814748e+01 + sys_corr_106: -2.22041654e+01 + sys_corr_107: 6.62581906e+00 sys_corr_108: 2.65362662e+00 sys_corr_109: -4.83546484e+00 sys_corr_110: -1.46888589e+00 - sys_corr_111: -2.90058261e+01 + sys_corr_111: 2.90058261e+01 sys_corr_112: -9.10280260e-01 sys_corr_113: -5.87664415e-01 sys_corr_114: 9.62905992e-03 - sys_corr_115: -1.30046587e-02 + sys_corr_115: 1.30046587e-02 sys_corr_116: -2.76990164e-01 sys_corr_117: 1.70866993e-01 sys_corr_118: -2.59856756e-01 sys_corr_119: 7.72025310e-03 sys_corr_120: 2.20143863e-01 - sys_corr_121: -1.44407506e-02 - sys_corr_122: 7.56630226e-02 - sys_corr_123: -2.10518267e-01 + sys_corr_121: 1.44407506e-02 + sys_corr_122: -2.10518267e-01 + sys_corr_123: 7.56630226e-02 sys_corr_124: 3.65238674e-01 - sys_corr_125: -7.01058344e-02 - sys_corr_126: 2.44237152e-02 + sys_corr_125: 7.01058344e-02 + sys_corr_126: -2.44237152e-02 sys_corr_127: -1.07761567e+01 sys_corr_128: 8.90459969e-01 - sys_corr_129: -6.18792364e-01 - sys_corr_130: -2.27948910e-02 + sys_corr_129: 6.18792364e-01 + sys_corr_130: 2.27948910e-02 sys_corr_131: -4.17924985e-01 - sys_corr_132: -4.21839520e-01 + sys_corr_132: 4.21839520e-01 stat: 0.0 luminosity: 6.71529980e+01 - sys_corr_1: 2.39482277e+01 @@ -14749,9 +14749,9 @@ bins: sys_corr_7: -5.00474158e+00 sys_corr_8: -9.85573976e-01 sys_corr_9: -2.09596811e+00 - sys_corr_10: -2.65666697e+00 + sys_corr_10: 2.65666697e+00 sys_corr_11: 7.57114508e-01 - sys_corr_12: -3.87730576e+00 + sys_corr_12: 3.87730576e+00 sys_corr_13: 6.21392237e+00 sys_corr_14: -1.60278066e+01 sys_corr_15: 4.10130802e+00 @@ -14777,60 +14777,60 @@ bins: sys_corr_35: -1.88056521e-01 sys_corr_36: 1.22924348e+00 sys_corr_37: 6.19144226e-01 - sys_corr_38: 3.31929399e-01 - sys_corr_39: -1.41383582e+00 - sys_corr_40: -1.56554415e+00 - sys_corr_41: 8.70641059e-01 - sys_corr_42: -2.21153875e-01 - sys_corr_43: 1.10004772e+00 + sys_corr_38: -3.31929399e-01 + sys_corr_39: 1.41383582e+00 + sys_corr_40: 1.56554415e+00 + sys_corr_41: -8.70641059e-01 + sys_corr_42: 2.21153875e-01 + sys_corr_43: -1.10004772e+00 sys_corr_44: 1.18358252e+00 - sys_corr_45: -1.27315981e+00 - sys_corr_46: 6.02156733e-01 + sys_corr_45: 1.27315981e+00 + sys_corr_46: -6.02156733e-01 sys_corr_47: -1.48349510e+00 - sys_corr_48: -3.75727273e+00 + sys_corr_48: 3.75727273e+00 sys_corr_49: 3.30815643e+00 sys_corr_50: 2.41497192e+00 sys_corr_51: 4.12501759e-01 - sys_corr_52: -1.90650681e-01 - sys_corr_53: -7.49425568e-01 + sys_corr_52: 1.90650681e-01 + sys_corr_53: 7.49425568e-01 sys_corr_54: 3.17797241e-01 - sys_corr_55: 2.81127959e-01 + sys_corr_55: -2.81127959e-01 sys_corr_56: -4.04098394e-01 - sys_corr_57: 1.09893819e+00 + sys_corr_57: -1.09893819e+00 sys_corr_58: -2.58942376e-01 - sys_corr_59: -9.69828930e-02 + sys_corr_59: 9.69828930e-02 sys_corr_60: 1.08233535e+00 sys_corr_61: 5.37818775e-01 sys_corr_62: 4.47313142e-01 - sys_corr_63: -3.28312083e-01 - sys_corr_64: 3.88490107e-01 + sys_corr_63: 3.28312083e-01 + sys_corr_64: -3.88490107e-01 sys_corr_65: 3.20841013e-01 sys_corr_66: 9.69261204e-01 sys_corr_67: 3.37352909e-01 sys_corr_68: -1.98777504e-01 sys_corr_69: 1.56319638e+00 sys_corr_70: -5.79334877e-01 - sys_corr_71: -1.35871047e-02 - sys_corr_72: 2.32206267e-01 - sys_corr_73: 6.17836229e-01 + sys_corr_71: 6.17836229e-01 + sys_corr_72: -2.32206267e-01 + sys_corr_73: -1.35871047e-02 sys_corr_74: 1.57720118e+00 sys_corr_75: -2.22549409e+00 sys_corr_76: 1.06901257e+00 - sys_corr_77: -2.46869860e+00 - sys_corr_78: 1.61450063e+00 - sys_corr_79: 9.30224184e-01 - sys_corr_80: 4.07702766e-01 + sys_corr_77: 2.46869860e+00 + sys_corr_78: 9.30224184e-01 + sys_corr_79: -4.07702766e-01 + sys_corr_80: -1.61450063e+00 sys_corr_81: 2.96377273e-01 sys_corr_82: 6.94401804e-01 sys_corr_83: 1.28987379e+00 - sys_corr_84: -7.13394590e+00 + sys_corr_84: 7.13394590e+00 sys_corr_85: 4.92378057e+00 sys_corr_86: -1.20750837e+00 sys_corr_87: -7.92049957e-01 sys_corr_88: 8.40783913e-01 sys_corr_89: 1.03817301e+00 sys_corr_90: -7.72794450e+00 - sys_corr_91: -1.23270852e+00 + sys_corr_91: 1.23270852e+00 sys_corr_92: 5.62667513e-01 sys_corr_93: -2.86150406e+00 sys_corr_94: -9.02870001e+00 @@ -14838,40 +14838,40 @@ bins: sys_corr_96: 4.35656662e-01 sys_corr_97: -2.16979002e+01 sys_corr_98: -1.04420916e+01 - sys_corr_99: 1.21884119e+01 - sys_corr_100: -2.49962758e+01 + sys_corr_99: -1.21884119e+01 + sys_corr_100: 2.49962758e+01 sys_corr_101: 9.53516372e+01 - sys_corr_102: 1.26727257e+01 - sys_corr_103: -6.01802839e+00 - sys_corr_104: 4.36438988e-01 - sys_corr_105: 1.63826240e+01 - sys_corr_106: 4.78768145e+01 - sys_corr_107: 1.43536160e+01 + sys_corr_102: -1.26727257e+01 + sys_corr_103: 6.01802839e+00 + sys_corr_104: -4.36438988e-01 + sys_corr_105: -1.63826240e+01 + sys_corr_106: -4.78768145e+01 + sys_corr_107: -1.43536160e+01 sys_corr_108: 1.66744519e+00 sys_corr_109: -9.55291125e+00 sys_corr_110: -7.45569722e+00 - sys_corr_111: 2.03022370e-01 + sys_corr_111: -2.03022370e-01 sys_corr_112: -8.01035975e-01 sys_corr_113: -8.11973841e-01 sys_corr_114: 4.74372606e-03 - sys_corr_115: -5.67398165e-01 + sys_corr_115: 5.67398165e-01 sys_corr_116: -2.34294669e-01 sys_corr_117: 1.30145334e-01 sys_corr_118: 1.69115766e-02 sys_corr_119: -2.72546474e-03 sys_corr_120: 3.49021289e-02 - sys_corr_121: -2.08533038e-02 - sys_corr_122: 8.97978510e-02 - sys_corr_123: -1.82242911e-01 + sys_corr_121: 2.08533038e-02 + sys_corr_122: -1.82242911e-01 + sys_corr_123: 8.97978510e-02 sys_corr_124: 1.27582083e-01 - sys_corr_125: 6.56158564e-01 - sys_corr_126: 3.19373259e-02 + sys_corr_125: -6.56158564e-01 + sys_corr_126: -3.19373259e-02 sys_corr_127: 4.72880974e+00 sys_corr_128: 6.08309194e+00 - sys_corr_129: -4.96581286e-01 - sys_corr_130: -3.67836775e-02 + sys_corr_129: 4.96581286e-01 + sys_corr_130: 3.67836775e-02 sys_corr_131: 1.97444236e-01 - sys_corr_132: -3.45345016e-01 + sys_corr_132: 3.45345016e-01 stat: 0.0 luminosity: 6.66649280e+01 - sys_corr_1: 1.70896115e+01 @@ -14883,9 +14883,9 @@ bins: sys_corr_7: -7.46771700e+00 sys_corr_8: -3.76319644e+00 sys_corr_9: 3.19853977e+00 - sys_corr_10: -3.09272094e+00 + sys_corr_10: 3.09272094e+00 sys_corr_11: 6.39911165e+00 - sys_corr_12: -7.84077705e+00 + sys_corr_12: 7.84077705e+00 sys_corr_13: 5.02824578e-01 sys_corr_14: 7.67621980e+00 sys_corr_15: -1.42272867e+00 @@ -14911,60 +14911,60 @@ bins: sys_corr_35: 2.78667278e-01 sys_corr_36: -3.16396459e-01 sys_corr_37: 2.67195302e-01 - sys_corr_38: 3.67956669e-01 - sys_corr_39: -3.09448403e-01 - sys_corr_40: -7.50702055e-01 - sys_corr_41: 1.12151391e-01 - sys_corr_42: 1.51229244e-01 - sys_corr_43: 9.68620978e-01 + sys_corr_38: -3.67956669e-01 + sys_corr_39: 3.09448403e-01 + sys_corr_40: 7.50702055e-01 + sys_corr_41: -1.12151391e-01 + sys_corr_42: -1.51229244e-01 + sys_corr_43: -9.68620978e-01 sys_corr_44: 1.35584673e+00 - sys_corr_45: -4.69740567e-01 - sys_corr_46: 3.23167300e-01 + sys_corr_45: 4.69740567e-01 + sys_corr_46: -3.23167300e-01 sys_corr_47: -2.43577711e+00 - sys_corr_48: -3.42650290e+00 + sys_corr_48: 3.42650290e+00 sys_corr_49: 2.49455295e+00 sys_corr_50: 1.94600606e+00 sys_corr_51: -8.82735229e-01 - sys_corr_52: 3.26332961e-01 - sys_corr_53: 1.11390462e-01 + sys_corr_52: -3.26332961e-01 + sys_corr_53: -1.11390462e-01 sys_corr_54: 9.54229046e-01 - sys_corr_55: 3.95008795e-01 + sys_corr_55: -3.95008795e-01 sys_corr_56: -2.10822564e-01 - sys_corr_57: 2.89808553e-01 + sys_corr_57: -2.89808553e-01 sys_corr_58: 3.84782551e-02 - sys_corr_59: 5.78745120e-02 + sys_corr_59: -5.78745120e-02 sys_corr_60: 1.56152039e+00 sys_corr_61: -5.69476221e-01 sys_corr_62: -6.60869569e-01 - sys_corr_63: 2.49267468e-01 - sys_corr_64: -5.29271408e-01 + sys_corr_63: -2.49267468e-01 + sys_corr_64: 5.29271408e-01 sys_corr_65: -4.14272016e-01 sys_corr_66: 2.49791241e-01 sys_corr_67: 1.57487531e-01 sys_corr_68: -1.13084646e-01 sys_corr_69: 8.90211177e-01 sys_corr_70: -4.84065696e-01 - sys_corr_71: -5.85031772e-01 - sys_corr_72: -5.65108983e-01 - sys_corr_73: 1.17698548e+00 + sys_corr_71: 1.17698548e+00 + sys_corr_72: 5.65108983e-01 + sys_corr_73: -5.85031772e-01 sys_corr_74: 1.88411923e+00 sys_corr_75: -2.12233487e+00 sys_corr_76: 3.37531572e-01 - sys_corr_77: -2.83878437e+00 - sys_corr_78: 9.90070024e-01 - sys_corr_79: 2.98166698e-01 - sys_corr_80: 7.55047693e-01 + sys_corr_77: 2.83878437e+00 + sys_corr_78: 2.98166698e-01 + sys_corr_79: -7.55047693e-01 + sys_corr_80: -9.90070024e-01 sys_corr_81: 1.51552715e+00 sys_corr_82: 7.08677440e-01 sys_corr_83: 5.52832202e-01 - sys_corr_84: -3.25103928e+00 + sys_corr_84: 3.25103928e+00 sys_corr_85: 2.72030206e+00 sys_corr_86: -8.72686155e-01 sys_corr_87: -6.58496949e-01 sys_corr_88: -1.76645911e-01 sys_corr_89: 4.09361371e-01 sys_corr_90: -3.66905174e+00 - sys_corr_91: -1.78535471e+00 + sys_corr_91: 1.78535471e+00 sys_corr_92: -2.83604536e-01 sys_corr_93: -1.93411288e+00 sys_corr_94: -6.45307623e+00 @@ -14972,40 +14972,40 @@ bins: sys_corr_96: -1.92078369e-01 sys_corr_97: -1.43138500e+01 sys_corr_98: -7.02469145e+00 - sys_corr_99: 6.59450339e+00 - sys_corr_100: 7.31377666e+01 + sys_corr_99: -6.59450339e+00 + sys_corr_100: -7.31377666e+01 sys_corr_101: -1.94554854e+01 - sys_corr_102: 2.99945572e+01 - sys_corr_103: -1.25517693e+00 - sys_corr_104: 1.73046740e+00 - sys_corr_105: 1.41034099e+01 - sys_corr_106: 2.87174674e+01 - sys_corr_107: 6.29961996e+01 + sys_corr_102: -2.99945572e+01 + sys_corr_103: 1.25517693e+00 + sys_corr_104: -1.73046740e+00 + sys_corr_105: -1.41034099e+01 + sys_corr_106: -2.87174674e+01 + sys_corr_107: -6.29961996e+01 sys_corr_108: 3.61989334e+00 sys_corr_109: -1.23744333e+01 sys_corr_110: 9.81791646e-01 - sys_corr_111: -3.52192757e+00 + sys_corr_111: 3.52192757e+00 sys_corr_112: -3.12406697e+00 sys_corr_113: -2.03985410e+00 sys_corr_114: -5.48204929e-04 - sys_corr_115: -1.50506638e+00 + sys_corr_115: 1.50506638e+00 sys_corr_116: -3.96458792e-01 sys_corr_117: 1.68546457e-01 sys_corr_118: 1.34622769e-01 sys_corr_119: -1.54991666e-02 sys_corr_120: 6.92307010e-02 - sys_corr_121: -1.23005046e-02 - sys_corr_122: 9.97571484e-02 - sys_corr_123: -7.91412681e-02 + sys_corr_121: 1.23005046e-02 + sys_corr_122: -7.91412681e-02 + sys_corr_123: 9.97571484e-02 sys_corr_124: 1.31477127e-01 - sys_corr_125: 5.57136763e-01 - sys_corr_126: 2.03334102e-02 + sys_corr_125: -5.57136763e-01 + sys_corr_126: -2.03334102e-02 sys_corr_127: 1.49731894e+00 sys_corr_128: 6.29639597e+00 - sys_corr_129: -1.37449039e+00 - sys_corr_130: 1.50139882e-02 + sys_corr_129: 1.37449039e+00 + sys_corr_130: -1.50139882e-02 sys_corr_131: 1.94307414e-01 - sys_corr_132: -1.29709290e-01 + sys_corr_132: 1.29709290e-01 stat: 0.0 luminosity: 6.13636320e+01 - sys_corr_1: 1.10628233e+01 @@ -15017,9 +15017,9 @@ bins: sys_corr_7: -1.79382739e+00 sys_corr_8: -2.15056663e-01 sys_corr_9: 1.22075506e+00 - sys_corr_10: -1.26612738e+00 + sys_corr_10: 1.26612738e+00 sys_corr_11: -1.06512139e+00 - sys_corr_12: -7.61107837e+00 + sys_corr_12: 7.61107837e+00 sys_corr_13: 6.69269513e+00 sys_corr_14: 3.09608547e+00 sys_corr_15: -1.36147736e-01 @@ -15045,60 +15045,60 @@ bins: sys_corr_35: -1.57461483e+00 sys_corr_36: 2.76990437e+00 sys_corr_37: 8.06259044e-01 - sys_corr_38: -6.97704133e-02 - sys_corr_39: -3.92341868e-01 - sys_corr_40: -1.17639315e+00 - sys_corr_41: -7.49333818e-01 - sys_corr_42: 1.09607537e+00 - sys_corr_43: 8.69579884e-01 + sys_corr_38: 6.97704133e-02 + sys_corr_39: 3.92341868e-01 + sys_corr_40: 1.17639315e+00 + sys_corr_41: 7.49333818e-01 + sys_corr_42: -1.09607537e+00 + sys_corr_43: -8.69579884e-01 sys_corr_44: -9.58616346e-01 - sys_corr_45: 1.03754333e-01 - sys_corr_46: 7.13682850e-01 + sys_corr_45: -1.03754333e-01 + sys_corr_46: -7.13682850e-01 sys_corr_47: -1.88149653e+00 - sys_corr_48: -5.23636999e+00 + sys_corr_48: 5.23636999e+00 sys_corr_49: 2.80250784e+00 sys_corr_50: 4.11126455e+00 sys_corr_51: 1.00295310e+00 - sys_corr_52: -1.30864562e+00 - sys_corr_53: -1.18607444e-01 + sys_corr_52: 1.30864562e+00 + sys_corr_53: 1.18607444e-01 sys_corr_54: 6.05713207e-01 - sys_corr_55: 2.01029388e-01 + sys_corr_55: -2.01029388e-01 sys_corr_56: -5.94735426e-01 - sys_corr_57: 1.13921534e-01 + sys_corr_57: -1.13921534e-01 sys_corr_58: 3.74477308e-01 - sys_corr_59: 1.92009622e-01 + sys_corr_59: -1.92009622e-01 sys_corr_60: 1.08110046e+00 sys_corr_61: 5.85964629e-02 sys_corr_62: -5.69251784e-01 - sys_corr_63: 4.71738439e-01 - sys_corr_64: 2.56626130e-01 + sys_corr_63: -4.71738439e-01 + sys_corr_64: -2.56626130e-01 sys_corr_65: 3.63554812e-01 sys_corr_66: 3.58812743e-01 sys_corr_67: 1.17697207e+00 sys_corr_68: -8.85819016e-01 sys_corr_69: 1.14197480e+00 sys_corr_70: -4.07122124e-01 - sys_corr_71: 5.53853133e-01 - sys_corr_72: 2.91803838e-02 - sys_corr_73: -1.16090983e-01 + sys_corr_71: -1.16090983e-01 + sys_corr_72: -2.91803838e-02 + sys_corr_73: 5.53853133e-01 sys_corr_74: 1.58447191e+00 sys_corr_75: -2.20013383e+00 sys_corr_76: 1.01547576e+00 - sys_corr_77: -1.47031400e+00 - sys_corr_78: 9.45997934e-01 - sys_corr_79: -2.29580482e-01 - sys_corr_80: 1.19036977e+00 + sys_corr_77: 1.47031400e+00 + sys_corr_78: -2.29580482e-01 + sys_corr_79: -1.19036977e+00 + sys_corr_80: -9.45997934e-01 sys_corr_81: 1.20828875e+00 sys_corr_82: 8.77544367e-01 sys_corr_83: 6.80700601e-01 - sys_corr_84: -2.28834994e+00 + sys_corr_84: 2.28834994e+00 sys_corr_85: 1.27650320e+00 sys_corr_86: -1.07638431e+00 sys_corr_87: -3.79545229e-01 sys_corr_88: 7.14805876e-01 sys_corr_89: 6.71367870e-01 sys_corr_90: -3.05713719e+00 - sys_corr_91: -8.83168320e-01 + sys_corr_91: 8.83168320e-01 sys_corr_92: 2.85127462e-01 sys_corr_93: -2.30834394e+00 sys_corr_94: -8.55770436e+00 @@ -15106,40 +15106,40 @@ bins: sys_corr_96: -2.98927694e-02 sys_corr_97: -1.50693393e+01 sys_corr_98: -7.35403520e+00 - sys_corr_99: 8.07128120e+00 - sys_corr_100: -1.93396415e+01 + sys_corr_99: -8.07128120e+00 + sys_corr_100: 1.93396415e+01 sys_corr_101: 2.58105149e+01 - sys_corr_102: 2.25221546e+01 - sys_corr_103: 2.77208669e+00 - sys_corr_104: 3.00076353e+00 - sys_corr_105: 1.81444534e+01 - sys_corr_106: -7.86150590e+01 - sys_corr_107: 4.30758347e+01 + sys_corr_102: -2.25221546e+01 + sys_corr_103: -2.77208669e+00 + sys_corr_104: -3.00076353e+00 + sys_corr_105: -1.81444534e+01 + sys_corr_106: 7.86150590e+01 + sys_corr_107: -4.30758347e+01 sys_corr_108: 8.91946611e+00 sys_corr_109: -3.82619702e+00 sys_corr_110: 3.81826333e+01 - sys_corr_111: -1.85091124e+00 + sys_corr_111: 1.85091124e+00 sys_corr_112: -3.24073304e+00 sys_corr_113: -2.94016917e+00 sys_corr_114: -5.96091732e-03 - sys_corr_115: -2.74463734e+00 + sys_corr_115: 2.74463734e+00 sys_corr_116: -4.50913202e-01 sys_corr_117: 1.89168081e-01 sys_corr_118: 6.01610729e-01 sys_corr_119: -2.67895579e-02 sys_corr_120: 5.49578148e-02 - sys_corr_121: 1.38422867e-03 - sys_corr_122: 2.27249514e-01 - sys_corr_123: 4.69453908e-01 + sys_corr_121: -1.38422867e-03 + sys_corr_122: 4.69453908e-01 + sys_corr_123: 2.27249514e-01 sys_corr_124: -1.55284779e-01 - sys_corr_125: -7.57243966e-02 - sys_corr_126: 9.04142772e-02 + sys_corr_125: 7.57243966e-02 + sys_corr_126: -9.04142772e-02 sys_corr_127: 1.19846875e+00 sys_corr_128: -1.01084468e+01 - sys_corr_129: -1.88587535e+00 - sys_corr_130: 4.95609562e-03 + sys_corr_129: 1.88587535e+00 + sys_corr_130: -4.95609562e-03 sys_corr_131: 2.42190349e-02 - sys_corr_132: -5.10619289e-02 + sys_corr_132: 5.10619289e-02 stat: 0.0 luminosity: 5.96221780e+01 - sys_corr_1: 3.35211053e+00 @@ -15151,9 +15151,9 @@ bins: sys_corr_7: 1.77779881e+00 sys_corr_8: -7.65919753e-01 sys_corr_9: 1.24625896e+00 - sys_corr_10: 1.93846131e+00 + sys_corr_10: -1.93846131e+00 sys_corr_11: 3.64711691e+00 - sys_corr_12: -2.36333078e+00 + sys_corr_12: 2.36333078e+00 sys_corr_13: 4.46734720e+00 sys_corr_14: -1.32835153e+00 sys_corr_15: 3.02335953e+00 @@ -15179,60 +15179,60 @@ bins: sys_corr_35: 1.38423293e-01 sys_corr_36: 1.81802095e-01 sys_corr_37: -6.50850980e-01 - sys_corr_38: 5.31119182e-01 - sys_corr_39: 1.12813726e-01 - sys_corr_40: -1.95920515e-01 - sys_corr_41: -6.99398341e-01 - sys_corr_42: 1.06434081e+00 - sys_corr_43: 1.24045404e+00 + sys_corr_38: -5.31119182e-01 + sys_corr_39: -1.12813726e-01 + sys_corr_40: 1.95920515e-01 + sys_corr_41: 6.99398341e-01 + sys_corr_42: -1.06434081e+00 + sys_corr_43: -1.24045404e+00 sys_corr_44: -1.51931620e+00 - sys_corr_45: -3.59527704e-01 - sys_corr_46: -4.18420254e-01 + sys_corr_45: 3.59527704e-01 + sys_corr_46: 4.18420254e-01 sys_corr_47: -2.50976171e+00 - sys_corr_48: -6.57786855e+00 + sys_corr_48: 6.57786855e+00 sys_corr_49: 3.21566623e+00 sys_corr_50: 4.35013898e+00 sys_corr_51: 1.65091265e+00 - sys_corr_52: -2.16651039e+00 - sys_corr_53: 2.65894102e-01 + sys_corr_52: 2.16651039e+00 + sys_corr_53: -2.65894102e-01 sys_corr_54: 7.73834214e-01 - sys_corr_55: 6.17233759e-02 + sys_corr_55: -6.17233759e-02 sys_corr_56: -8.46999439e-02 - sys_corr_57: -3.37962319e-01 + sys_corr_57: 3.37962319e-01 sys_corr_58: 5.48053845e-02 - sys_corr_59: -4.15463811e-02 + sys_corr_59: 4.15463811e-02 sys_corr_60: 1.05082520e+00 sys_corr_61: 4.38978420e-02 sys_corr_62: -3.79134793e-01 - sys_corr_63: 1.14743992e+00 - sys_corr_64: -1.22295682e-01 + sys_corr_63: -1.14743992e+00 + sys_corr_64: 1.22295682e-01 sys_corr_65: 4.22511464e-01 sys_corr_66: -6.15738610e-01 sys_corr_67: 7.61263982e-01 sys_corr_68: -6.81072530e-02 sys_corr_69: 4.75329224e-01 sys_corr_70: -5.87363483e-01 - sys_corr_71: 2.64868920e-01 - sys_corr_72: 8.04306756e-01 - sys_corr_73: 4.40107410e-01 + sys_corr_71: 4.40107410e-01 + sys_corr_72: -8.04306756e-01 + sys_corr_73: 2.64868920e-01 sys_corr_74: 1.55912553e+00 sys_corr_75: -1.84916086e+00 sys_corr_76: 6.47714352e-01 - sys_corr_77: -1.87437591e+00 - sys_corr_78: 2.55101002e+00 - sys_corr_79: 6.80192451e-01 - sys_corr_80: 8.09130922e-01 + sys_corr_77: 1.87437591e+00 + sys_corr_78: 6.80192451e-01 + sys_corr_79: -8.09130922e-01 + sys_corr_80: -2.55101002e+00 sys_corr_81: 7.28404200e-01 sys_corr_82: 5.77889226e-01 sys_corr_83: 3.17223959e-01 - sys_corr_84: -3.18045203e+00 + sys_corr_84: 3.18045203e+00 sys_corr_85: 1.79163350e+00 sys_corr_86: -1.07987080e+00 sys_corr_87: 2.67084072e-01 sys_corr_88: 3.82755769e-01 sys_corr_89: 1.02817092e+00 sys_corr_90: -2.33436636e+00 - sys_corr_91: -1.06219495e+00 + sys_corr_91: 1.06219495e+00 sys_corr_92: 5.33590128e-01 sys_corr_93: -1.84193047e+00 sys_corr_94: -7.38148259e+00 @@ -15240,40 +15240,40 @@ bins: sys_corr_96: 3.62321550e-01 sys_corr_97: -1.00689759e+01 sys_corr_98: -5.03415200e+00 - sys_corr_99: 7.12570155e+00 - sys_corr_100: 2.92990436e+01 + sys_corr_99: -7.12570155e+00 + sys_corr_100: -2.92990436e+01 sys_corr_101: 1.03573752e+01 - sys_corr_102: 1.46377306e+01 - sys_corr_103: 8.89827705e-03 - sys_corr_104: 2.73313207e+00 - sys_corr_105: 1.26425877e+01 - sys_corr_106: 2.34888184e+01 - sys_corr_107: -3.71139044e+01 + sys_corr_102: -1.46377306e+01 + sys_corr_103: -8.89827705e-03 + sys_corr_104: -2.73313207e+00 + sys_corr_105: -1.26425877e+01 + sys_corr_106: -2.34888184e+01 + sys_corr_107: 3.71139044e+01 sys_corr_108: 1.51591019e+01 sys_corr_109: 4.39194499e+01 sys_corr_110: 6.23665180e+01 - sys_corr_111: -1.71309771e+00 + sys_corr_111: 1.71309771e+00 sys_corr_112: -4.11805645e+00 sys_corr_113: -4.85952108e+00 sys_corr_114: -1.14827478e-02 - sys_corr_115: -3.49260710e+00 + sys_corr_115: 3.49260710e+00 sys_corr_116: -6.12918556e-01 sys_corr_117: 2.30597085e-01 sys_corr_118: 8.97099514e-01 sys_corr_119: -4.60062873e-02 sys_corr_120: 1.17127045e-01 - sys_corr_121: 1.53642484e-02 - sys_corr_122: 1.72337446e-01 - sys_corr_123: 5.16453957e-01 + sys_corr_121: -1.53642484e-02 + sys_corr_122: 5.16453957e-01 + sys_corr_123: 1.72337446e-01 sys_corr_124: -7.40860662e-02 - sys_corr_125: -1.54798762e-01 - sys_corr_126: 1.27612120e-01 + sys_corr_125: 1.54798762e-01 + sys_corr_126: -1.27612120e-01 sys_corr_127: 1.67498087e+00 sys_corr_128: -2.97750527e+01 - sys_corr_129: -1.47445305e+00 - sys_corr_130: 9.63408327e-03 + sys_corr_129: 1.47445305e+00 + sys_corr_130: -9.63408327e-03 sys_corr_131: 6.23115055e-02 - sys_corr_132: 8.17892496e-02 + sys_corr_132: -8.17892496e-02 stat: 0.0 luminosity: 55.40271 - sys_corr_1: -4.37583050e-01 @@ -15285,9 +15285,9 @@ bins: sys_corr_7: 3.32944290e+00 sys_corr_8: 1.71283656e+00 sys_corr_9: -6.13084057e-02 - sys_corr_10: -9.09091570e-01 + sys_corr_10: 9.09091570e-01 sys_corr_11: 3.53925422e+00 - sys_corr_12: -2.24202943e+00 + sys_corr_12: 2.24202943e+00 sys_corr_13: 3.40310986e-01 sys_corr_14: -3.36935043e+00 sys_corr_15: 1.61827286e+00 @@ -15313,60 +15313,60 @@ bins: sys_corr_35: -4.24144917e-01 sys_corr_36: 1.95344320e+00 sys_corr_37: 9.05020777e-01 - sys_corr_38: -5.19649177e-01 - sys_corr_39: 3.85511939e-01 - sys_corr_40: 5.69097712e-01 - sys_corr_41: -1.17318095e+00 - sys_corr_42: 2.11591902e+00 - sys_corr_43: 6.53842927e-01 + sys_corr_38: 5.19649177e-01 + sys_corr_39: -3.85511939e-01 + sys_corr_40: -5.69097712e-01 + sys_corr_41: 1.17318095e+00 + sys_corr_42: -2.11591902e+00 + sys_corr_43: -6.53842927e-01 sys_corr_44: -1.23702372e+00 - sys_corr_45: -1.65136024e-01 - sys_corr_46: -6.38367436e-01 + sys_corr_45: 1.65136024e-01 + sys_corr_46: 6.38367436e-01 sys_corr_47: -2.72354562e+00 - sys_corr_48: -6.78735851e+00 + sys_corr_48: 6.78735851e+00 sys_corr_49: 3.17388243e+00 sys_corr_50: 2.94751562e+00 sys_corr_51: 8.58034441e-01 - sys_corr_52: -6.72845396e-01 - sys_corr_53: 2.68225122e-01 + sys_corr_52: 6.72845396e-01 + sys_corr_53: -2.68225122e-01 sys_corr_54: 8.80374162e-01 - sys_corr_55: -6.92656058e-01 + sys_corr_55: 6.92656058e-01 sys_corr_56: -3.24566744e-02 - sys_corr_57: 1.89868349e-01 + sys_corr_57: -1.89868349e-01 sys_corr_58: -7.35660014e-03 - sys_corr_59: 3.48304345e-01 + sys_corr_59: -3.48304345e-01 sys_corr_60: 5.91915682e-01 sys_corr_61: -5.61604498e-01 sys_corr_62: -1.05714707e+00 - sys_corr_63: 1.53792395e-01 - sys_corr_64: 4.61831883e-01 + sys_corr_63: -1.53792395e-01 + sys_corr_64: -4.61831883e-01 sys_corr_65: 3.22175965e-01 sys_corr_66: -2.18873299e-01 sys_corr_67: 3.32875130e-01 sys_corr_68: -4.14399888e-01 sys_corr_69: -1.21581550e-01 sys_corr_70: -1.37231929e+00 - sys_corr_71: 9.16253077e-01 - sys_corr_72: -1.75594418e-01 - sys_corr_73: 3.52089794e-01 + sys_corr_71: 3.52089794e-01 + sys_corr_72: 1.75594418e-01 + sys_corr_73: 9.16253077e-01 sys_corr_74: 2.07654166e+00 sys_corr_75: -2.51417975e+00 sys_corr_76: 6.20167978e-02 - sys_corr_77: -2.38008650e+00 - sys_corr_78: 4.50025896e-01 - sys_corr_79: 1.41372589e+00 - sys_corr_80: 1.32603796e+00 + sys_corr_77: 2.38008650e+00 + sys_corr_78: 1.41372589e+00 + sys_corr_79: -1.32603796e+00 + sys_corr_80: -4.50025896e-01 sys_corr_81: 2.17301552e+00 sys_corr_82: 1.33847111e+00 sys_corr_83: 1.37385707e+00 - sys_corr_84: -4.45599577e+00 + sys_corr_84: 4.45599577e+00 sys_corr_85: 1.60389142e+00 sys_corr_86: -1.81618156e+00 sys_corr_87: 4.15822916e-03 sys_corr_88: 6.78843119e-01 sys_corr_89: 1.68415206e+00 sys_corr_90: -4.08851590e+00 - sys_corr_91: -2.07637381e-01 + sys_corr_91: 2.07637381e-01 sys_corr_92: -1.20117879e-01 sys_corr_93: -2.35206627e+00 sys_corr_94: -8.50122025e+00 @@ -15374,40 +15374,40 @@ bins: sys_corr_96: 5.27363692e-01 sys_corr_97: -1.07943401e+01 sys_corr_98: -5.41439320e+00 - sys_corr_99: 7.18648023e+00 - sys_corr_100: 9.42804247e+00 + sys_corr_99: -7.18648023e+00 + sys_corr_100: -9.42804247e+00 sys_corr_101: 1.08906286e+01 - sys_corr_102: 1.97027387e+01 - sys_corr_103: 5.87696408e+00 - sys_corr_104: 3.18467518e+00 - sys_corr_105: 1.44050615e+01 - sys_corr_106: -2.20085468e+01 - sys_corr_107: 6.52208176e+00 + sys_corr_102: -1.97027387e+01 + sys_corr_103: -5.87696408e+00 + sys_corr_104: -3.18467518e+00 + sys_corr_105: -1.44050615e+01 + sys_corr_106: 2.20085468e+01 + sys_corr_107: -6.52208176e+00 sys_corr_108: -9.20422940e+00 sys_corr_109: 7.32932102e+01 sys_corr_110: -5.05736477e+01 - sys_corr_111: -2.72594466e+00 + sys_corr_111: 2.72594466e+00 sys_corr_112: 1.36232457e-01 sys_corr_113: -8.08265172e+00 sys_corr_114: -9.38842978e-03 - sys_corr_115: -3.45196806e+00 + sys_corr_115: 3.45196806e+00 sys_corr_116: -5.16875171e-01 sys_corr_117: 2.04444955e-01 sys_corr_118: 8.60008636e-01 sys_corr_119: -3.48923192e-02 sys_corr_120: 9.91902201e-02 - sys_corr_121: 7.33562714e-02 - sys_corr_122: -4.81173880e-01 - sys_corr_123: 6.45576697e-02 + sys_corr_121: -7.33562714e-02 + sys_corr_122: 6.45576697e-02 + sys_corr_123: -4.81173880e-01 sys_corr_124: -2.55153064e-02 - sys_corr_125: -8.76398284e-02 - sys_corr_126: 2.45269957e-01 + sys_corr_125: 8.76398284e-02 + sys_corr_126: -2.45269957e-01 sys_corr_127: 7.39042513e-01 sys_corr_128: 1.54630028e+01 - sys_corr_129: -1.83244256e+00 - sys_corr_130: 4.62709032e-02 + sys_corr_129: 1.83244256e+00 + sys_corr_130: -4.62709032e-02 sys_corr_131: 8.63288828e-02 - sys_corr_132: -2.73158120e-02 + sys_corr_132: 2.73158120e-02 stat: 0.0 luminosity: 5.36327220e+01 - sys_corr_1: -7.16818044e+00 @@ -15419,9 +15419,9 @@ bins: sys_corr_7: 6.63210061e+00 sys_corr_8: 4.29064229e+00 sys_corr_9: -1.72844959e+00 - sys_corr_10: -1.39340697e+00 + sys_corr_10: 1.39340697e+00 sys_corr_11: 1.02602789e+00 - sys_corr_12: 2.22673340e+00 + sys_corr_12: -2.22673340e+00 sys_corr_13: -3.50605705e+00 sys_corr_14: -1.03018704e+00 sys_corr_15: -9.52620494e-01 @@ -15447,60 +15447,60 @@ bins: sys_corr_35: -9.00634609e-01 sys_corr_36: -6.98038187e-02 sys_corr_37: 4.65843646e-01 - sys_corr_38: 3.05246754e-01 - sys_corr_39: -5.11940287e-01 - sys_corr_40: -8.95879146e-02 - sys_corr_41: -9.95764578e-01 - sys_corr_42: 1.27111631e+00 - sys_corr_43: 8.98265727e-01 + sys_corr_38: -3.05246754e-01 + sys_corr_39: 5.11940287e-01 + sys_corr_40: 8.95879146e-02 + sys_corr_41: 9.95764578e-01 + sys_corr_42: -1.27111631e+00 + sys_corr_43: -8.98265727e-01 sys_corr_44: -1.76765174e+00 - sys_corr_45: 1.50500553e-01 - sys_corr_46: -3.53749855e-01 + sys_corr_45: -1.50500553e-01 + sys_corr_46: 3.53749855e-01 sys_corr_47: -2.56068251e+00 - sys_corr_48: -6.09295482e+00 + sys_corr_48: 6.09295482e+00 sys_corr_49: 3.37088424e+00 sys_corr_50: 3.02646146e+00 sys_corr_51: 8.55275405e-01 - sys_corr_52: -1.43621899e+00 - sys_corr_53: 1.00697820e-01 + sys_corr_52: 1.43621899e+00 + sys_corr_53: -1.00697820e-01 sys_corr_54: 3.15551425e-01 - sys_corr_55: 4.96054989e-01 + sys_corr_55: -4.96054989e-01 sys_corr_56: -1.47692788e-02 - sys_corr_57: 3.76040817e-01 + sys_corr_57: -3.76040817e-01 sys_corr_58: 3.04482758e-01 - sys_corr_59: -6.12934139e-03 + sys_corr_59: 6.12934140e-03 sys_corr_60: 6.43675486e-01 sys_corr_61: -7.65961782e-01 sys_corr_62: -1.44583625e+00 - sys_corr_63: 1.08942444e-01 - sys_corr_64: 4.81610487e-02 + sys_corr_63: -1.08942444e-01 + sys_corr_64: -4.81610487e-02 sys_corr_65: 9.42044641e-01 sys_corr_66: -4.22882175e-01 sys_corr_67: 6.46601081e-01 sys_corr_68: -5.45714769e-01 sys_corr_69: -1.90488067e-02 sys_corr_70: 8.08089970e-02 - sys_corr_71: 4.14763376e-01 - sys_corr_72: 2.91664667e-01 - sys_corr_73: 1.09580315e+00 + sys_corr_71: 1.09580315e+00 + sys_corr_72: -2.91664667e-01 + sys_corr_73: 4.14763376e-01 sys_corr_74: 1.84867834e+00 sys_corr_75: -1.15805374e+00 sys_corr_76: -2.92064650e-01 - sys_corr_77: -5.40379446e-01 - sys_corr_78: 1.36303211e+00 - sys_corr_79: 6.45711997e-01 - sys_corr_80: 1.03603338e+00 + sys_corr_77: 5.40379446e-01 + sys_corr_78: 6.45711997e-01 + sys_corr_79: -1.03603338e+00 + sys_corr_80: -1.36303211e+00 sys_corr_81: 1.81948018e-01 sys_corr_82: 6.90793185e-01 sys_corr_83: 6.44129045e-01 - sys_corr_84: -4.42457566e+00 + sys_corr_84: 4.42457566e+00 sys_corr_85: 1.01456614e+00 sys_corr_86: -5.45823342e-01 sys_corr_87: 3.10074634e-01 sys_corr_88: 7.97693699e-01 sys_corr_89: 1.25276793e+00 sys_corr_90: -3.29336361e+00 - sys_corr_91: -1.27282215e+00 + sys_corr_91: 1.27282215e+00 sys_corr_92: 2.15104060e-01 sys_corr_93: -1.80609162e+00 sys_corr_94: -7.01742378e+00 @@ -15508,40 +15508,40 @@ bins: sys_corr_96: 1.03868201e-01 sys_corr_97: -8.42470440e+00 sys_corr_98: -4.05363590e+00 - sys_corr_99: 4.00199911e+00 - sys_corr_100: 1.24747299e+01 + sys_corr_99: -4.00199911e+00 + sys_corr_100: -1.24747299e+01 sys_corr_101: 6.90513351e+00 - sys_corr_102: 1.29818416e+01 - sys_corr_103: -1.10068425e+00 - sys_corr_104: 2.12211698e+00 - sys_corr_105: 8.62274545e+00 - sys_corr_106: -5.52547477e+00 - sys_corr_107: -1.11675404e+01 + sys_corr_102: -1.29818416e+01 + sys_corr_103: 1.10068425e+00 + sys_corr_104: -2.12211698e+00 + sys_corr_105: -8.62274545e+00 + sys_corr_106: 5.52547477e+00 + sys_corr_107: 1.11675404e+01 sys_corr_108: -8.17020143e+01 sys_corr_109: -9.31782805e+00 sys_corr_110: 1.45108119e+01 - sys_corr_111: -2.82394151e+00 + sys_corr_111: 2.82394151e+00 sys_corr_112: 1.98583826e+01 sys_corr_113: -3.14636702e+00 sys_corr_114: -5.00727457e-03 - sys_corr_115: -1.28741185e+00 + sys_corr_115: 1.28741185e+00 sys_corr_116: -3.59971275e-01 sys_corr_117: 1.10557767e-01 sys_corr_118: 2.48153589e+00 sys_corr_119: -3.31553241e-02 sys_corr_120: 6.20251180e-02 - sys_corr_121: 1.25624890e-01 - sys_corr_122: -7.33017939e-01 - sys_corr_123: 3.06521611e-01 + sys_corr_121: -1.25624890e-01 + sys_corr_122: 3.06521611e-01 + sys_corr_123: -7.33017939e-01 sys_corr_124: -6.60607592e-01 - sys_corr_125: 6.82645044e-02 - sys_corr_126: 1.63928229e-01 + sys_corr_125: -6.82645044e-02 + sys_corr_126: -1.63928229e-01 sys_corr_127: 2.84280279e-01 sys_corr_128: -8.37656132e+00 - sys_corr_129: -6.69279904e+00 - sys_corr_130: -5.59756686e-02 + sys_corr_129: 6.69279904e+00 + sys_corr_130: 5.59756686e-02 sys_corr_131: -3.51761928e-02 - sys_corr_132: -5.89005437e-01 + sys_corr_132: 5.89005437e-01 stat: 0.0 luminosity: 4.81110740e+01 - sys_corr_1: -8.41099494e+00 @@ -15553,9 +15553,9 @@ bins: sys_corr_7: 7.35446833e+00 sys_corr_8: 5.81971063e+00 sys_corr_9: -3.71296136e+00 - sys_corr_10: -2.31248774e+00 + sys_corr_10: 2.31248774e+00 sys_corr_11: 3.03513951e+00 - sys_corr_12: 2.26779359e+00 + sys_corr_12: -2.26779359e+00 sys_corr_13: -5.76662046e+00 sys_corr_14: 3.26681526e+00 sys_corr_15: -2.79492061e+00 @@ -15581,60 +15581,60 @@ bins: sys_corr_35: -1.38762635e-01 sys_corr_36: 4.90336246e-01 sys_corr_37: 1.03857192e+00 - sys_corr_38: 1.02568436e-01 - sys_corr_39: -2.67714716e-01 - sys_corr_40: 1.91302620e-01 - sys_corr_41: -1.11292084e+00 - sys_corr_42: 1.75874811e+00 - sys_corr_43: 1.37835993e+00 + sys_corr_38: -1.02568436e-01 + sys_corr_39: 2.67714716e-01 + sys_corr_40: -1.91302620e-01 + sys_corr_41: 1.11292084e+00 + sys_corr_42: -1.75874811e+00 + sys_corr_43: -1.37835993e+00 sys_corr_44: -3.87902058e-01 - sys_corr_45: -6.80217636e-01 - sys_corr_46: -3.62282382e-01 + sys_corr_45: 6.80217636e-01 + sys_corr_46: 3.62282382e-01 sys_corr_47: -2.04578612e+00 - sys_corr_48: -6.30714203e+00 + sys_corr_48: 6.30714203e+00 sys_corr_49: 3.92770103e+00 sys_corr_50: 2.65067214e+00 sys_corr_51: 1.27611042e-01 - sys_corr_52: -1.10108674e+00 - sys_corr_53: -2.81511130e-01 + sys_corr_52: 1.10108674e+00 + sys_corr_53: 2.81511130e-01 sys_corr_54: 1.89111797e+00 - sys_corr_55: -3.55012030e-02 + sys_corr_55: 3.55012030e-02 sys_corr_56: 5.21180837e-01 - sys_corr_57: 2.04281100e-01 + sys_corr_57: -2.04281100e-01 sys_corr_58: -3.69711595e-01 - sys_corr_59: 7.28684926e-02 + sys_corr_59: -7.28684926e-02 sys_corr_60: 1.36037327e+00 sys_corr_61: -1.05776655e+00 sys_corr_62: -1.60153283e+00 - sys_corr_63: 1.11714159e+00 - sys_corr_64: 1.96115224e-01 + sys_corr_63: -1.11714159e+00 + sys_corr_64: -1.96115224e-01 sys_corr_65: 5.90347577e-01 sys_corr_66: 2.04551253e-02 sys_corr_67: 7.38633394e-01 sys_corr_68: -4.44350326e-01 sys_corr_69: 1.06469826e+00 sys_corr_70: -6.53615411e-02 - sys_corr_71: 9.42887063e-01 - sys_corr_72: 8.54089303e-01 - sys_corr_73: 4.88112765e-01 + sys_corr_71: 4.88112765e-01 + sys_corr_72: -8.54089303e-01 + sys_corr_73: 9.42887063e-01 sys_corr_74: 1.92718899e+00 sys_corr_75: -2.43426676e+00 sys_corr_76: 4.39744515e-01 - sys_corr_77: -2.22479572e+00 - sys_corr_78: 1.77539942e+00 - sys_corr_79: 1.54356717e+00 - sys_corr_80: 1.06568821e+00 + sys_corr_77: 2.22479572e+00 + sys_corr_78: 1.54356717e+00 + sys_corr_79: -1.06568821e+00 + sys_corr_80: -1.77539942e+00 sys_corr_81: 1.90486125e+00 sys_corr_82: 1.44538214e+00 sys_corr_83: 1.18113972e+00 - sys_corr_84: -4.62079575e+00 + sys_corr_84: 4.62079575e+00 sys_corr_85: 8.86662587e-01 sys_corr_86: -2.00570548e+00 sys_corr_87: 3.65536827e-02 sys_corr_88: 2.50401481e-01 sys_corr_89: 1.21819432e+00 sys_corr_90: -7.38528719e+00 - sys_corr_91: -9.91946964e-01 + sys_corr_91: 9.91946964e-01 sys_corr_92: 4.65571698e-01 sys_corr_93: -2.38918659e+00 sys_corr_94: -8.39329957e+00 @@ -15642,40 +15642,40 @@ bins: sys_corr_96: 2.74085522e-01 sys_corr_97: -9.73995850e+00 sys_corr_98: -5.40196791e+00 - sys_corr_99: 5.85843715e+00 - sys_corr_100: 2.06430392e+01 + sys_corr_99: -5.85843715e+00 + sys_corr_100: -2.06430392e+01 sys_corr_101: 9.61204268e+00 - sys_corr_102: 1.62804996e+01 - sys_corr_103: 3.70306946e+00 - sys_corr_104: 3.57079991e+00 - sys_corr_105: 1.17378775e+01 - sys_corr_106: -1.46769995e+01 - sys_corr_107: -2.05483175e+01 + sys_corr_102: -1.62804996e+01 + sys_corr_103: -3.70306946e+00 + sys_corr_104: -3.57079991e+00 + sys_corr_105: -1.17378775e+01 + sys_corr_106: 1.46769995e+01 + sys_corr_107: 2.05483175e+01 sys_corr_108: 2.48794722e+01 sys_corr_109: -1.00662699e+01 sys_corr_110: -1.11530101e+01 - sys_corr_111: -2.30475885e+00 + sys_corr_111: 2.30475885e+00 sys_corr_112: 6.51192468e+01 sys_corr_113: 2.71878258e+01 sys_corr_114: -3.27788802e-03 - sys_corr_115: -1.06366036e+00 + sys_corr_115: 1.06366036e+00 sys_corr_116: -1.71663368e-01 sys_corr_117: 2.97235668e-01 sys_corr_118: 1.19516853e+00 sys_corr_119: 3.80797830e-02 sys_corr_120: 2.32922273e-01 - sys_corr_121: 3.12459803e-01 - sys_corr_122: 1.14345870e-01 - sys_corr_123: -2.88004126e-01 + sys_corr_121: -3.12459803e-01 + sys_corr_122: -2.88004126e-01 + sys_corr_123: 1.14345870e-01 sys_corr_124: -4.07580751e-01 - sys_corr_125: -4.61891077e-01 - sys_corr_126: -4.20640151e-01 + sys_corr_125: 4.61891077e-01 + sys_corr_126: 4.20640151e-01 sys_corr_127: 1.14348997e+00 sys_corr_128: 1.54863523e+00 - sys_corr_129: 2.73338325e+00 - sys_corr_130: -3.80965760e-01 + sys_corr_129: -2.73338325e+00 + sys_corr_130: 3.80965760e-01 sys_corr_131: 2.16531532e-01 - sys_corr_132: -2.68958646e-01 + sys_corr_132: 2.68958646e-01 stat: 0.0 luminosity: 4.28819160e+01 - sys_corr_1: -1.10961715e+01 @@ -15687,9 +15687,9 @@ bins: sys_corr_7: 5.66853703e+00 sys_corr_8: 4.54390865e+00 sys_corr_9: -2.86519261e+00 - sys_corr_10: -2.14132913e+00 + sys_corr_10: 2.14132913e+00 sys_corr_11: 2.44271242e+00 - sys_corr_12: 2.46501471e+00 + sys_corr_12: -2.46501471e+00 sys_corr_13: -4.44313688e+00 sys_corr_14: 1.69793025e+00 sys_corr_15: -2.32750757e+00 @@ -15715,60 +15715,60 @@ bins: sys_corr_35: -3.88445150e-01 sys_corr_36: 9.15139636e-01 sys_corr_37: 7.27862056e-01 - sys_corr_38: 9.93633810e-02 - sys_corr_39: -2.62230419e-01 - sys_corr_40: 3.38128563e-01 - sys_corr_41: -1.53392036e+00 - sys_corr_42: 1.28464225e+00 - sys_corr_43: 8.05439344e-01 + sys_corr_38: -9.93633810e-02 + sys_corr_39: 2.62230419e-01 + sys_corr_40: -3.38128563e-01 + sys_corr_41: 1.53392036e+00 + sys_corr_42: -1.28464225e+00 + sys_corr_43: -8.05439344e-01 sys_corr_44: -5.99239355e-01 - sys_corr_45: -6.00645938e-01 - sys_corr_46: 1.61774868e-01 + sys_corr_45: 6.00645938e-01 + sys_corr_46: -1.61774868e-01 sys_corr_47: -1.54845047e+00 - sys_corr_48: -5.25558394e+00 + sys_corr_48: 5.25558394e+00 sys_corr_49: 2.84950506e+00 sys_corr_50: 1.69606898e+00 sys_corr_51: 4.62070487e-01 - sys_corr_52: -8.99026850e-01 - sys_corr_53: -2.96397488e-02 + sys_corr_52: 8.99026850e-01 + sys_corr_53: 2.96397488e-02 sys_corr_54: 1.47504135e+00 - sys_corr_55: -3.11866424e-01 + sys_corr_55: 3.11866424e-01 sys_corr_56: 5.69515437e-01 - sys_corr_57: 4.19378105e-01 + sys_corr_57: -4.19378105e-01 sys_corr_58: 1.26426264e-01 - sys_corr_59: 2.31685756e-01 + sys_corr_59: -2.31685756e-01 sys_corr_60: 8.79766669e-01 sys_corr_61: -3.58569011e-01 sys_corr_62: -7.08626382e-01 - sys_corr_63: 6.72831220e-01 - sys_corr_64: 1.79053169e-01 + sys_corr_63: -6.72831220e-01 + sys_corr_64: -1.79053169e-01 sys_corr_65: 4.71755477e-01 sys_corr_66: 2.29394021e-01 sys_corr_67: 5.61652506e-01 sys_corr_68: -2.75418911e-01 sys_corr_69: 8.55854846e-01 sys_corr_70: -2.42603679e-01 - sys_corr_71: 7.07649456e-01 - sys_corr_72: 5.14039254e-01 - sys_corr_73: 1.58718735e-01 + sys_corr_71: 1.58718735e-01 + sys_corr_72: -5.14039254e-01 + sys_corr_73: 7.07649456e-01 sys_corr_74: 1.83243903e+00 sys_corr_75: -1.94011475e+00 sys_corr_76: 4.85010485e-02 - sys_corr_77: -1.45583243e+00 - sys_corr_78: 1.70240873e+00 - sys_corr_79: 8.25309611e-01 - sys_corr_80: 3.87565322e-01 + sys_corr_77: 1.45583243e+00 + sys_corr_78: 8.25309611e-01 + sys_corr_79: -3.87565322e-01 + sys_corr_80: -1.70240873e+00 sys_corr_81: 1.67781940e+00 sys_corr_82: 8.71427481e-01 sys_corr_83: 8.89208521e-01 - sys_corr_84: -4.48091414e+00 + sys_corr_84: 4.48091414e+00 sys_corr_85: 1.39588924e+00 sys_corr_86: -1.15075614e+00 sys_corr_87: -1.93375983e-01 sys_corr_88: 1.08529492e+00 sys_corr_89: 5.36601175e-01 sys_corr_90: -4.53106140e+00 - sys_corr_91: -2.77181419e+00 + sys_corr_91: 2.77181419e+00 sys_corr_92: 5.13806990e-01 sys_corr_93: -1.95934835e+00 sys_corr_94: -7.00196211e+00 @@ -15776,40 +15776,40 @@ bins: sys_corr_96: 1.25064166e-01 sys_corr_97: -7.94507857e+00 sys_corr_98: -4.53583475e+00 - sys_corr_99: 4.94835615e+00 - sys_corr_100: 1.55923791e+01 + sys_corr_99: -4.94835615e+00 + sys_corr_100: -1.55923791e+01 sys_corr_101: 8.73216415e+00 - sys_corr_102: 1.39428059e+01 - sys_corr_103: 2.67142456e+00 - sys_corr_104: 3.09669628e+00 - sys_corr_105: 9.68217883e+00 - sys_corr_106: -1.20106479e+01 - sys_corr_107: -1.62437400e+01 + sys_corr_102: -1.39428059e+01 + sys_corr_103: -2.67142456e+00 + sys_corr_104: -3.09669628e+00 + sys_corr_105: -9.68217883e+00 + sys_corr_106: 1.20106479e+01 + sys_corr_107: 1.62437400e+01 sys_corr_108: -9.89223190e+00 sys_corr_109: -3.18783355e+00 sys_corr_110: -6.72253490e+00 - sys_corr_111: -1.99419765e+00 + sys_corr_111: 1.99419765e+00 sys_corr_112: -3.90815415e+01 sys_corr_113: 6.09715052e+01 sys_corr_114: -1.44673575e-02 - sys_corr_115: 3.76298178e+00 + sys_corr_115: -3.76298178e+00 sys_corr_116: 4.23127234e-01 sys_corr_117: 2.34734450e-01 sys_corr_118: 2.85673267e+00 sys_corr_119: 4.50556893e-02 sys_corr_120: 2.68586814e-01 - sys_corr_121: 2.02878130e-01 - sys_corr_122: 1.50622459e-01 - sys_corr_123: -2.68181332e-01 + sys_corr_121: -2.02878130e-01 + sys_corr_122: -2.68181332e-01 + sys_corr_123: 1.50622459e-01 sys_corr_124: 1.03380806e+00 - sys_corr_125: -2.80397198e-01 - sys_corr_126: -2.90568120e-01 + sys_corr_125: 2.80397198e-01 + sys_corr_126: 2.90568120e-01 sys_corr_127: 8.71524784e-01 sys_corr_128: -1.18841639e-02 - sys_corr_129: 1.21822902e+01 - sys_corr_130: -2.15899909e-01 + sys_corr_129: -1.21822902e+01 + sys_corr_130: 2.15899909e-01 sys_corr_131: 3.44267941e-01 - sys_corr_132: 2.88334398e-01 + sys_corr_132: -2.88334398e-01 stat: 0.0 luminosity: 3.47906680e+01 - sys_corr_1: -1.13891458e+01 @@ -15821,9 +15821,9 @@ bins: sys_corr_7: 4.18065583e+00 sys_corr_8: 2.96668998e+00 sys_corr_9: -2.73055038e+00 - sys_corr_10: -1.54112879e+00 + sys_corr_10: 1.54112879e+00 sys_corr_11: 2.00403402e+00 - sys_corr_12: 8.26489269e-02 + sys_corr_12: -8.26489269e-02 sys_corr_13: -1.90615252e+00 sys_corr_14: 9.17743230e-01 sys_corr_15: -6.19997198e-01 @@ -15849,60 +15849,60 @@ bins: sys_corr_35: 8.03636447e-01 sys_corr_36: 3.41868024e-01 sys_corr_37: 1.23727930e+00 - sys_corr_38: 9.82061903e-02 - sys_corr_39: -6.17200979e-01 - sys_corr_40: 7.94828105e-01 - sys_corr_41: -1.37043657e+00 - sys_corr_42: 1.69778244e+00 - sys_corr_43: 8.96424322e-01 + sys_corr_38: -9.82061903e-02 + sys_corr_39: 6.17200979e-01 + sys_corr_40: -7.94828105e-01 + sys_corr_41: 1.37043657e+00 + sys_corr_42: -1.69778244e+00 + sys_corr_43: -8.96424322e-01 sys_corr_44: -2.99891529e-02 - sys_corr_45: -1.16715113e+00 - sys_corr_46: -2.66311697e-01 + sys_corr_45: 1.16715113e+00 + sys_corr_46: 2.66311697e-01 sys_corr_47: -3.21071488e+00 - sys_corr_48: -7.98761161e+00 + sys_corr_48: 7.98761161e+00 sys_corr_49: 4.68723834e+00 sys_corr_50: 2.46273131e+00 sys_corr_51: 1.39472736e+00 - sys_corr_52: -2.43538301e+00 - sys_corr_53: 1.47202424e-01 + sys_corr_52: 2.43538301e+00 + sys_corr_53: -1.47202424e-01 sys_corr_54: 2.09992195e+00 - sys_corr_55: 6.77910672e-01 + sys_corr_55: -6.77910672e-01 sys_corr_56: 6.53049060e-01 - sys_corr_57: 2.77290457e-01 + sys_corr_57: -2.77290457e-01 sys_corr_58: -5.80195211e-01 - sys_corr_59: 2.83690794e-01 + sys_corr_59: -2.83690794e-01 sys_corr_60: 1.64422029e+00 sys_corr_61: -1.32197382e+00 sys_corr_62: -1.64260715e+00 - sys_corr_63: 9.19595484e-01 - sys_corr_64: 2.58029607e-01 + sys_corr_63: -9.19595484e-01 + sys_corr_64: -2.58029607e-01 sys_corr_65: 1.01897573e+00 sys_corr_66: -8.99071764e-02 sys_corr_67: 1.07665683e+00 sys_corr_68: 3.61855370e-01 sys_corr_69: 1.36860311e+00 sys_corr_70: 7.33992805e-02 - sys_corr_71: 1.18685729e+00 - sys_corr_72: 6.77496957e-01 - sys_corr_73: -1.44146196e-01 + sys_corr_71: -1.44146196e-01 + sys_corr_72: -6.77496957e-01 + sys_corr_73: 1.18685729e+00 sys_corr_74: 2.66398221e+00 sys_corr_75: -2.35727424e+00 sys_corr_76: -3.95642167e-01 - sys_corr_77: -2.18313877e+00 - sys_corr_78: 1.25638571e+00 - sys_corr_79: 1.06105956e+00 - sys_corr_80: 1.14569302e+00 + sys_corr_77: 2.18313877e+00 + sys_corr_78: 1.06105956e+00 + sys_corr_79: -1.14569302e+00 + sys_corr_80: -1.25638571e+00 sys_corr_81: 2.22443626e+00 sys_corr_82: 1.05791954e+00 sys_corr_83: -4.32890573e-02 - sys_corr_84: -5.01850027e+00 + sys_corr_84: 5.01850027e+00 sys_corr_85: 1.79896742e+00 sys_corr_86: -1.60963417e+00 sys_corr_87: -8.53136058e-01 sys_corr_88: 6.65236194e-01 sys_corr_89: 1.93056328e-01 sys_corr_90: -7.07397168e+00 - sys_corr_91: -2.32320071e+00 + sys_corr_91: 2.32320071e+00 sys_corr_92: 5.99395155e-01 sys_corr_93: -2.18150534e+00 sys_corr_94: -7.25058308e+00 @@ -15910,40 +15910,40 @@ bins: sys_corr_96: 5.18422040e-01 sys_corr_97: -7.09945742e+00 sys_corr_98: -4.38242875e+00 - sys_corr_99: 4.87298833e+00 - sys_corr_100: 1.97223925e+01 + sys_corr_99: -4.87298833e+00 + sys_corr_100: -1.97223925e+01 sys_corr_101: 9.73722275e+00 - sys_corr_102: 1.53688814e+01 - sys_corr_103: 4.27016716e+00 - sys_corr_104: 3.43243671e+00 - sys_corr_105: 1.13036762e+01 - sys_corr_106: -1.49749559e+01 - sys_corr_107: -2.34435421e+01 + sys_corr_102: -1.53688814e+01 + sys_corr_103: -4.27016716e+00 + sys_corr_104: -3.43243671e+00 + sys_corr_105: -1.13036762e+01 + sys_corr_106: 1.49749559e+01 + sys_corr_107: 2.34435421e+01 sys_corr_108: 9.16681940e-01 sys_corr_109: -1.61560854e+01 sys_corr_110: -9.03403707e+00 - sys_corr_111: -2.01729698e+00 + sys_corr_111: 2.01729698e+00 sys_corr_112: -5.85134883e+00 sys_corr_113: -2.99964792e+01 sys_corr_114: -7.41056753e-03 - sys_corr_115: 2.16321001e+01 + sys_corr_115: -2.16321001e+01 sys_corr_116: 2.03631007e+00 sys_corr_117: 5.42674580e-01 sys_corr_118: 1.72605151e+00 sys_corr_119: 2.81608314e-01 sys_corr_120: 7.05979926e-01 - sys_corr_121: -4.04015134e-01 - sys_corr_122: 6.36262686e-01 - sys_corr_123: -1.40472367e+00 + sys_corr_121: 4.04015134e-01 + sys_corr_122: -1.40472367e+00 + sys_corr_123: 6.36262686e-01 sys_corr_124: 8.34884436e+00 - sys_corr_125: -1.12415349e+00 - sys_corr_126: 3.32760787e-01 + sys_corr_125: 1.12415349e+00 + sys_corr_126: -3.32760787e-01 sys_corr_127: 1.06328499e+00 sys_corr_128: 6.40054907e-01 - sys_corr_129: 5.06516854e+01 - sys_corr_130: -1.15579222e-01 + sys_corr_129: -5.06516854e+01 + sys_corr_130: 1.15579222e-01 sys_corr_131: 7.47657675e-01 - sys_corr_132: -7.83309113e-01 + sys_corr_132: 7.83309113e-01 stat: 0.0 luminosity: 2.75836440e+01 - sys_corr_1: -1.66534634e+01 @@ -15955,9 +15955,9 @@ bins: sys_corr_7: 4.76134930e+00 sys_corr_8: 2.89291725e+00 sys_corr_9: -1.72077925e+00 - sys_corr_10: -7.05188375e-01 + sys_corr_10: 7.05188375e-01 sys_corr_11: 1.29067425e+00 - sys_corr_12: 9.56277595e-01 + sys_corr_12: -9.56277595e-01 sys_corr_13: -2.50086858e+00 sys_corr_14: 8.45020295e-01 sys_corr_15: -9.99824111e-01 @@ -15983,60 +15983,60 @@ bins: sys_corr_35: -3.99256829e-01 sys_corr_36: -3.45653566e-01 sys_corr_37: 1.10564765e+00 - sys_corr_38: -4.18611252e-02 - sys_corr_39: -2.89645395e-01 - sys_corr_40: 4.15511745e-01 - sys_corr_41: -1.69012992e+00 - sys_corr_42: 1.24761230e+00 - sys_corr_43: 5.46725695e-01 + sys_corr_38: 4.18611252e-02 + sys_corr_39: 2.89645395e-01 + sys_corr_40: -4.15511745e-01 + sys_corr_41: 1.69012992e+00 + sys_corr_42: -1.24761230e+00 + sys_corr_43: -5.46725695e-01 sys_corr_44: 1.26811183e+00 - sys_corr_45: -5.66224180e-01 - sys_corr_46: -2.59446276e-01 + sys_corr_45: 5.66224180e-01 + sys_corr_46: 2.59446276e-01 sys_corr_47: -2.50449019e+00 - sys_corr_48: -5.00039658e+00 + sys_corr_48: 5.00039658e+00 sys_corr_49: 4.34661706e+00 sys_corr_50: -1.40238297e+00 sys_corr_51: -7.70857921e-01 - sys_corr_52: -4.14869697e-01 - sys_corr_53: 3.25906136e-01 + sys_corr_52: 4.14869697e-01 + sys_corr_53: -3.25906136e-01 sys_corr_54: 2.29492115e+00 - sys_corr_55: 4.42016317e-01 + sys_corr_55: -4.42016317e-01 sys_corr_56: 2.86347961e-01 - sys_corr_57: -4.26491998e-01 + sys_corr_57: 4.26491998e-01 sys_corr_58: 2.44925755e-03 - sys_corr_59: -2.28647525e-01 + sys_corr_59: 2.28647525e-01 sys_corr_60: 1.75235070e+00 sys_corr_61: -6.21939619e-01 sys_corr_62: -1.27646882e+00 - sys_corr_63: 9.44654821e-01 - sys_corr_64: -8.50131698e-01 + sys_corr_63: -9.44654821e-01 + sys_corr_64: 8.50131698e-01 sys_corr_65: 1.00972018e+00 sys_corr_66: -4.94847007e-01 sys_corr_67: -3.07059125e-01 sys_corr_68: 6.55696308e-01 sys_corr_69: 8.34512550e-01 sys_corr_70: 1.15830862e+00 - sys_corr_71: 1.59334494e-01 - sys_corr_72: 1.33664987e+00 - sys_corr_73: -1.55255979e-01 + sys_corr_71: -1.55255979e-01 + sys_corr_72: -1.33664987e+00 + sys_corr_73: 1.59334494e-01 sys_corr_74: 2.39184338e+00 sys_corr_75: -1.60380712e+00 sys_corr_76: -2.21326985e+00 - sys_corr_77: -2.37564446e+00 - sys_corr_78: 1.02223187e+00 - sys_corr_79: 1.15346766e+00 - sys_corr_80: 1.57802349e-01 + sys_corr_77: 2.37564446e+00 + sys_corr_78: 1.15346766e+00 + sys_corr_79: -1.57802349e-01 + sys_corr_80: -1.02223187e+00 sys_corr_81: 1.81709256e+00 sys_corr_82: 1.18348911e+00 sys_corr_83: 3.22841638e-02 - sys_corr_84: -5.25593663e+00 + sys_corr_84: 5.25593663e+00 sys_corr_85: 1.12315460e+00 sys_corr_86: -1.75451714e+00 sys_corr_87: -6.79081709e-01 sys_corr_88: -2.85343194e-01 sys_corr_89: -8.15536523e-01 sys_corr_90: -6.88759997e+00 - sys_corr_91: -3.39493688e+00 + sys_corr_91: 3.39493688e+00 sys_corr_92: -6.99275348e-02 sys_corr_93: -1.97606572e+00 sys_corr_94: -5.84551069e+00 @@ -16044,40 +16044,40 @@ bins: sys_corr_96: 5.53728035e-01 sys_corr_97: -5.49466389e+00 sys_corr_98: -3.75924162e+00 - sys_corr_99: 4.56052062e+00 - sys_corr_100: 2.09258297e+01 + sys_corr_99: -4.56052062e+00 + sys_corr_100: -2.09258297e+01 sys_corr_101: 1.03246642e+01 - sys_corr_102: 1.45285741e+01 - sys_corr_103: 6.21790932e+00 - sys_corr_104: 4.19506245e+00 - sys_corr_105: 1.11706371e+01 - sys_corr_106: -1.59653393e+01 - sys_corr_107: -2.75652689e+01 + sys_corr_102: -1.45285741e+01 + sys_corr_103: -6.21790932e+00 + sys_corr_104: -4.19506245e+00 + sys_corr_105: -1.11706371e+01 + sys_corr_106: 1.59653393e+01 + sys_corr_107: 2.75652689e+01 sys_corr_108: 9.63224581e+00 sys_corr_109: -1.70235209e+01 sys_corr_110: -1.32039192e+01 - sys_corr_111: -1.76747476e+00 + sys_corr_111: 1.76747476e+00 sys_corr_112: -1.28640209e+01 sys_corr_113: -1.13389817e+01 sys_corr_114: 2.54614683e-03 - sys_corr_115: 3.46109486e+01 + sys_corr_115: -3.46109486e+01 sys_corr_116: 2.68794382e+00 sys_corr_117: 2.03836151e-01 sys_corr_118: -3.70920536e+00 sys_corr_119: 2.23451545e-01 sys_corr_120: 4.47333514e-01 - sys_corr_121: -5.39284067e-01 - sys_corr_122: 4.54102316e-01 - sys_corr_123: -1.17651806e+00 + sys_corr_121: 5.39284067e-01 + sys_corr_122: -1.17651806e+00 + sys_corr_123: 4.54102316e-01 sys_corr_124: -1.45132250e+00 - sys_corr_125: -6.33334117e-01 - sys_corr_126: 3.60639815e-01 + sys_corr_125: 6.33334117e-01 + sys_corr_126: -3.60639815e-01 sys_corr_127: 1.03993071e+00 sys_corr_128: 1.70396619e+00 - sys_corr_129: -4.46001089e+01 - sys_corr_130: 2.80934772e-03 + sys_corr_129: 4.46001089e+01 + sys_corr_130: -2.80934772e-03 sys_corr_131: 4.22420731e-01 - sys_corr_132: -1.57850594e+00 + sys_corr_132: 1.57850594e+00 stat: 0.0 luminosity: 2.54893760e+01 - sys_corr_1: -1.21283793e+01 @@ -16089,9 +16089,9 @@ bins: sys_corr_7: 4.10485044e+00 sys_corr_8: 1.71386933e+00 sys_corr_9: -1.22200293e+00 - sys_corr_10: -4.20749505e-01 + sys_corr_10: 4.20749505e-01 sys_corr_11: 4.54470167e-01 - sys_corr_12: 8.39168169e-01 + sys_corr_12: -8.39168169e-01 sys_corr_13: -2.52373274e+00 sys_corr_14: 3.53394444e-01 sys_corr_15: -1.71402576e-01 @@ -16117,60 +16117,60 @@ bins: sys_corr_35: 2.82640945e-01 sys_corr_36: 1.60455774e-01 sys_corr_37: 1.19613579e+00 - sys_corr_38: 1.26912069e-02 - sys_corr_39: -2.76262013e-01 - sys_corr_40: 5.17609692e-01 - sys_corr_41: -1.80644111e+00 - sys_corr_42: 8.45513328e-01 - sys_corr_43: -7.12548168e-02 + sys_corr_38: -1.26912069e-02 + sys_corr_39: 2.76262013e-01 + sys_corr_40: -5.17609692e-01 + sys_corr_41: 1.80644111e+00 + sys_corr_42: -8.45513328e-01 + sys_corr_43: 7.12548168e-02 sys_corr_44: 1.16647919e+00 - sys_corr_45: -7.37392710e-01 - sys_corr_46: -1.23427224e-01 + sys_corr_45: 7.37392710e-01 + sys_corr_46: 1.23427224e-01 sys_corr_47: -7.19720592e-01 - sys_corr_48: -1.79675516e+00 + sys_corr_48: 1.79675516e+00 sys_corr_49: 2.60992012e+00 sys_corr_50: -2.11040756e+00 sys_corr_51: -2.17860776e+00 - sys_corr_52: 4.22098340e-01 - sys_corr_53: 4.94410276e-01 + sys_corr_52: -4.22098340e-01 + sys_corr_53: -4.94410276e-01 sys_corr_54: 2.39292339e+00 - sys_corr_55: -1.11371196e+00 + sys_corr_55: 1.11371196e+00 sys_corr_56: 1.09215077e+00 - sys_corr_57: -4.02723163e-01 + sys_corr_57: 4.02723163e-01 sys_corr_58: -3.79950036e-01 - sys_corr_59: -4.30334416e-01 + sys_corr_59: 4.30334416e-01 sys_corr_60: 1.26948377e+00 sys_corr_61: -1.39532527e+00 sys_corr_62: -1.21208204e+00 - sys_corr_63: 7.43326034e-01 - sys_corr_64: 3.36383886e-01 + sys_corr_63: -7.43326034e-01 + sys_corr_64: -3.36383886e-01 sys_corr_65: 3.31396119e-01 sys_corr_66: -4.00627219e-01 sys_corr_67: 7.39219962e-02 sys_corr_68: 6.66723682e-01 sys_corr_69: 6.70296483e-01 sys_corr_70: 7.95584783e-01 - sys_corr_71: 2.71539556e-01 - sys_corr_72: 1.50432345e+00 - sys_corr_73: -8.14643919e-01 + sys_corr_71: -8.14643919e-01 + sys_corr_72: -1.50432345e+00 + sys_corr_73: 2.71539556e-01 sys_corr_74: 1.49307382e+00 sys_corr_75: -1.40665363e+00 sys_corr_76: -2.05813084e+00 - sys_corr_77: -2.04400445e+00 - sys_corr_78: 1.64752069e+00 - sys_corr_79: 1.29190049e+00 - sys_corr_80: 5.75517064e-01 + sys_corr_77: 2.04400445e+00 + sys_corr_78: 1.29190049e+00 + sys_corr_79: -5.75517064e-01 + sys_corr_80: -1.64752069e+00 sys_corr_81: 8.58559102e-01 sys_corr_82: 7.19600870e-01 sys_corr_83: 5.83572245e-01 - sys_corr_84: -5.69374106e+00 + sys_corr_84: 5.69374106e+00 sys_corr_85: 2.12454239e+00 sys_corr_86: -2.46192034e-01 sys_corr_87: -2.24178141e-01 sys_corr_88: 3.25417326e-01 sys_corr_89: -4.08359079e-01 sys_corr_90: -6.96341270e+00 - sys_corr_91: -2.51325895e+00 + sys_corr_91: 2.51325895e+00 sys_corr_92: -3.27974856e-01 sys_corr_93: -1.53639197e+00 sys_corr_94: -3.69900801e+00 @@ -16178,40 +16178,40 @@ bins: sys_corr_96: 3.38277374e-01 sys_corr_97: -3.51056045e+00 sys_corr_98: -2.49739378e+00 - sys_corr_99: 2.65485747e+00 - sys_corr_100: 1.52308586e+01 + sys_corr_99: -2.65485747e+00 + sys_corr_100: -1.52308586e+01 sys_corr_101: 6.89780471e+00 - sys_corr_102: 9.53890506e+00 - sys_corr_103: 3.56456619e+00 - sys_corr_104: 3.05688649e+00 - sys_corr_105: 7.05504585e+00 - sys_corr_106: -1.16541834e+01 - sys_corr_107: -2.23384093e+01 + sys_corr_102: -9.53890506e+00 + sys_corr_103: -3.56456619e+00 + sys_corr_104: -3.05688649e+00 + sys_corr_105: -7.05504585e+00 + sys_corr_106: 1.16541834e+01 + sys_corr_107: 2.23384093e+01 sys_corr_108: 1.29145619e+00 sys_corr_109: -1.63717572e+01 sys_corr_110: -9.97010227e+00 - sys_corr_111: -1.77913934e+00 + sys_corr_111: 1.77913934e+00 sys_corr_112: -1.01632091e+01 sys_corr_113: -8.06913590e+00 sys_corr_114: 9.33989854e-02 - sys_corr_115: -3.07147067e+01 + sys_corr_115: 3.07147067e+01 sys_corr_116: -4.99860763e+00 sys_corr_117: 1.31380551e+00 sys_corr_118: -3.75547084e+01 sys_corr_119: -4.56912935e-01 sys_corr_120: 1.61198749e+00 - sys_corr_121: 1.67196495e-01 - sys_corr_122: 1.14877456e+00 - sys_corr_123: -1.79912458e+00 + sys_corr_121: -1.67196495e-01 + sys_corr_122: -1.79912458e+00 + sys_corr_123: 1.14877456e+00 sys_corr_124: 4.95452754e-01 - sys_corr_125: -1.76697766e+00 - sys_corr_126: 5.20146763e-01 + sys_corr_125: 1.76697766e+00 + sys_corr_126: -5.20146763e-01 sys_corr_127: 4.18269450e-01 sys_corr_128: 2.11204959e+00 - sys_corr_129: -1.00450601e+00 - sys_corr_130: -4.81782027e-02 + sys_corr_129: 1.00450601e+00 + sys_corr_130: 4.81782027e-02 sys_corr_131: 1.39608562e+00 - sys_corr_132: -3.80743612e+00 + sys_corr_132: 3.80743612e+00 stat: 0.0 luminosity: 1.60038560e+01 - sys_corr_1: -1.20781109e+01 @@ -16223,9 +16223,9 @@ bins: sys_corr_7: 5.57022594e+00 sys_corr_8: 2.59508164e+00 sys_corr_9: -1.39481236e-01 - sys_corr_10: -3.74382989e-01 + sys_corr_10: 3.74382989e-01 sys_corr_11: 8.49159441e-02 - sys_corr_12: 3.22122789e+00 + sys_corr_12: -3.22122789e+00 sys_corr_13: -4.11360244e+00 sys_corr_14: 1.76779328e+00 sys_corr_15: -2.03077991e+00 @@ -16251,60 +16251,60 @@ bins: sys_corr_35: -1.24195081e-01 sys_corr_36: -8.77196630e-01 sys_corr_37: 1.46137879e+00 - sys_corr_38: -5.05229054e-01 - sys_corr_39: -1.21025635e-01 - sys_corr_40: -5.32955005e-02 - sys_corr_41: -7.40638973e-01 - sys_corr_42: 3.58346076e-01 - sys_corr_43: 6.24092200e-01 + sys_corr_38: 5.05229054e-01 + sys_corr_39: 1.21025635e-01 + sys_corr_40: 5.32955005e-02 + sys_corr_41: 7.40638973e-01 + sys_corr_42: -3.58346076e-01 + sys_corr_43: -6.24092200e-01 sys_corr_44: 1.29980492e+00 - sys_corr_45: -4.08425958e-01 - sys_corr_46: -8.51486529e-01 + sys_corr_45: 4.08425958e-01 + sys_corr_46: 8.51486529e-01 sys_corr_47: -1.25642704e+00 - sys_corr_48: -2.98779431e+00 + sys_corr_48: 2.98779431e+00 sys_corr_49: 2.06900140e+00 sys_corr_50: 9.95833834e-01 sys_corr_51: 3.93582615e+00 - sys_corr_52: -2.45314746e+00 - sys_corr_53: -7.79438145e-01 + sys_corr_52: 2.45314746e+00 + sys_corr_53: 7.79438145e-01 sys_corr_54: -3.65799092e-01 - sys_corr_55: 1.52490147e+00 + sys_corr_55: -1.52490147e+00 sys_corr_56: -1.41621757e-01 - sys_corr_57: 5.07784464e-01 + sys_corr_57: -5.07784464e-01 sys_corr_58: -7.96832068e-01 - sys_corr_59: 1.04161486e+00 + sys_corr_59: -1.04161486e+00 sys_corr_60: 8.81603639e-01 sys_corr_61: 2.73394206e-01 sys_corr_62: -1.74991735e-01 - sys_corr_63: 2.71684623e-01 - sys_corr_64: 9.08126759e-02 + sys_corr_63: -2.71684623e-01 + sys_corr_64: -9.08126759e-02 sys_corr_65: 4.44623522e-02 sys_corr_66: 1.54202433e-01 sys_corr_67: -1.88208388e-01 sys_corr_68: 9.90647564e-01 sys_corr_69: 9.08294085e-01 sys_corr_70: 9.74205097e-01 - sys_corr_71: -2.51304884e-01 - sys_corr_72: -4.18150364e-01 - sys_corr_73: -2.54931831e-01 + sys_corr_71: -2.54931831e-01 + sys_corr_72: 4.18150364e-01 + sys_corr_73: -2.51304884e-01 sys_corr_74: 3.79670174e-01 sys_corr_75: -8.27394258e-01 sys_corr_76: 2.13710703e-01 - sys_corr_77: -1.72719132e+00 - sys_corr_78: 7.11194669e-01 - sys_corr_79: 1.24513558e+00 - sys_corr_80: -1.00794677e+00 + sys_corr_77: 1.72719132e+00 + sys_corr_78: 1.24513558e+00 + sys_corr_79: 1.00794677e+00 + sys_corr_80: -7.11194669e-01 sys_corr_81: 1.00434259e+00 sys_corr_82: 4.18975022e-01 sys_corr_83: 1.53797594e+00 - sys_corr_84: -6.28807577e+00 + sys_corr_84: 6.28807577e+00 sys_corr_85: 3.54936388e+00 sys_corr_86: 2.92751666e-01 sys_corr_87: -5.07613505e-01 sys_corr_88: -8.43106638e-01 sys_corr_89: -3.50370181e-01 sys_corr_90: -7.51981737e+00 - sys_corr_91: -1.61654641e+00 + sys_corr_91: 1.61654641e+00 sys_corr_92: -7.85583599e-02 sys_corr_93: -1.14227110e+00 sys_corr_94: -1.98193898e+00 @@ -16312,40 +16312,40 @@ bins: sys_corr_96: 4.78134268e-01 sys_corr_97: -1.70034568e+00 sys_corr_98: -1.43276898e+00 - sys_corr_99: 1.28616733e+00 - sys_corr_100: 1.19799961e+01 + sys_corr_99: -1.28616733e+00 + sys_corr_100: -1.19799961e+01 sys_corr_101: 4.20318403e+00 - sys_corr_102: 5.68689509e+00 - sys_corr_103: 2.56965224e+00 - sys_corr_104: 1.21322795e+00 - sys_corr_105: 3.87863069e+00 - sys_corr_106: -9.30141256e+00 - sys_corr_107: -2.08406570e+01 + sys_corr_102: -5.68689509e+00 + sys_corr_103: -2.56965224e+00 + sys_corr_104: -1.21322795e+00 + sys_corr_105: -3.87863069e+00 + sys_corr_106: 9.30141256e+00 + sys_corr_107: 2.08406570e+01 sys_corr_108: 7.56409717e+00 sys_corr_109: -1.82219711e+01 sys_corr_110: -1.15865857e+01 - sys_corr_111: -1.48871935e+00 + sys_corr_111: 1.48871935e+00 sys_corr_112: -1.15795027e+01 sys_corr_113: -1.24411986e+01 sys_corr_114: 7.51323445e-02 - sys_corr_115: -2.90858410e+01 + sys_corr_115: 2.90858410e+01 sys_corr_116: -5.00030645e+00 sys_corr_117: 2.40857810e+00 sys_corr_118: 3.02797727e+01 sys_corr_119: -3.92346361e-01 sys_corr_120: 1.44282849e+00 - sys_corr_121: 4.86837693e-01 - sys_corr_122: 2.52252788e+00 - sys_corr_123: -4.65900514e+00 + sys_corr_121: -4.86837693e-01 + sys_corr_122: -4.65900514e+00 + sys_corr_123: 2.52252788e+00 sys_corr_124: -1.69319496e-01 - sys_corr_125: -3.03227978e+00 - sys_corr_126: 1.57684627e+00 + sys_corr_125: 3.03227978e+00 + sys_corr_126: -1.57684627e+00 sys_corr_127: 4.30517459e-01 sys_corr_128: 3.34010735e+00 - sys_corr_129: -8.39196189e+00 - sys_corr_130: -8.44208722e-01 + sys_corr_129: 8.39196189e+00 + sys_corr_130: 8.44208722e-01 sys_corr_131: 9.01411808e-01 - sys_corr_132: -1.67795794e+01 + sys_corr_132: 1.67795794e+01 stat: 0.0 luminosity: 1.15077820e+01 - sys_corr_1: -4.78342540e+00 @@ -16357,9 +16357,9 @@ bins: sys_corr_7: 4.36816066e+00 sys_corr_8: 2.30086551e+00 sys_corr_9: -1.49980398e+00 - sys_corr_10: -4.31940577e-01 + sys_corr_10: 4.31940577e-01 sys_corr_11: 2.21449378e+00 - sys_corr_12: -2.12900767e+00 + sys_corr_12: 2.12900767e+00 sys_corr_13: 1.39706695e-01 sys_corr_14: 1.55147412e+00 sys_corr_15: -3.30277563e-02 @@ -16385,60 +16385,60 @@ bins: sys_corr_35: 5.99228954e-01 sys_corr_36: 1.07222180e+00 sys_corr_37: 3.48516901e-01 - sys_corr_38: -1.78796570e-01 - sys_corr_39: 4.63354260e-01 - sys_corr_40: 5.45218183e-01 - sys_corr_41: -1.79340875e-02 - sys_corr_42: 7.63648542e-01 - sys_corr_43: 2.03091853e-01 + sys_corr_38: 1.78796570e-01 + sys_corr_39: -4.63354260e-01 + sys_corr_40: -5.45218183e-01 + sys_corr_41: 1.79340875e-02 + sys_corr_42: -7.63648542e-01 + sys_corr_43: -2.03091853e-01 sys_corr_44: 4.44710377e-01 - sys_corr_45: -8.01568739e-01 - sys_corr_46: 4.15823952e-02 + sys_corr_45: 8.01568739e-01 + sys_corr_46: -4.15823952e-02 sys_corr_47: -1.58502266e+00 - sys_corr_48: -2.38766386e+00 + sys_corr_48: 2.38766386e+00 sys_corr_49: 1.46218843e+00 sys_corr_50: 2.13616536e+00 sys_corr_51: 3.14594172e+00 - sys_corr_52: -2.10962033e+00 - sys_corr_53: -7.01154169e-01 + sys_corr_52: 2.10962033e+00 + sys_corr_53: 7.01154169e-01 sys_corr_54: 4.49394085e-01 - sys_corr_55: 7.87217828e-02 + sys_corr_55: -7.87217828e-02 sys_corr_56: -2.08011078e-01 - sys_corr_57: 9.26655745e-01 + sys_corr_57: -9.26655745e-01 sys_corr_58: -6.34198694e-01 - sys_corr_59: 4.65590923e-01 + sys_corr_59: -4.65590923e-01 sys_corr_60: 4.97211681e-01 sys_corr_61: -2.52518746e-02 sys_corr_62: 2.26808803e-01 - sys_corr_63: 1.00394687e-01 - sys_corr_64: -3.80626349e-01 + sys_corr_63: -1.00394687e-01 + sys_corr_64: 3.80626349e-01 sys_corr_65: -6.29160705e-01 sys_corr_66: 9.78513901e-01 sys_corr_67: -7.56118297e-01 sys_corr_68: -1.04696695e-02 sys_corr_69: 1.23182893e+00 sys_corr_70: 9.81126481e-01 - sys_corr_71: -4.55320090e-02 - sys_corr_72: -3.93636147e-01 - sys_corr_73: -4.74065103e-01 + sys_corr_71: -4.74065103e-01 + sys_corr_72: 3.93636147e-01 + sys_corr_73: -4.55320090e-02 sys_corr_74: 9.51875340e-01 sys_corr_75: -1.23527301e+00 sys_corr_76: 1.09449825e+00 - sys_corr_77: -1.70545999e+00 - sys_corr_78: 8.11365748e-01 - sys_corr_79: 8.88695981e-01 - sys_corr_80: -9.68609867e-01 + sys_corr_77: 1.70545999e+00 + sys_corr_78: 8.88695981e-01 + sys_corr_79: 9.68609867e-01 + sys_corr_80: -8.11365748e-01 sys_corr_81: 8.53563413e-01 sys_corr_82: 7.26319814e-01 sys_corr_83: 1.51769723e+00 - sys_corr_84: -3.92046221e+00 + sys_corr_84: 3.92046221e+00 sys_corr_85: 1.84193402e+00 sys_corr_86: 3.17719137e-02 sys_corr_87: 2.10814613e-01 sys_corr_88: -1.37360681e-01 sys_corr_89: -1.66711872e+00 sys_corr_90: -4.46071848e+00 - sys_corr_91: 7.14477304e-02 + sys_corr_91: -7.14477304e-02 sys_corr_92: 1.57093914e-01 sys_corr_93: -1.02509248e+00 sys_corr_94: -2.75452736e+00 @@ -16446,40 +16446,40 @@ bins: sys_corr_96: -4.62170205e-02 sys_corr_97: -4.09733016e+00 sys_corr_98: -2.06239189e+00 - sys_corr_99: 2.09130142e+00 - sys_corr_100: 7.55648201e+00 + sys_corr_99: -2.09130142e+00 + sys_corr_100: -7.55648201e+00 sys_corr_101: 3.22904847e+00 - sys_corr_102: 4.87490143e+00 - sys_corr_103: 1.05089173e+00 - sys_corr_104: 7.25269580e-01 - sys_corr_105: 3.63778523e+00 - sys_corr_106: -5.69345024e+00 - sys_corr_107: -1.27989960e+01 + sys_corr_102: -4.87490143e+00 + sys_corr_103: -1.05089173e+00 + sys_corr_104: -7.25269580e-01 + sys_corr_105: -3.63778523e+00 + sys_corr_106: 5.69345024e+00 + sys_corr_107: 1.27989960e+01 sys_corr_108: 2.82413862e+00 sys_corr_109: -1.11664528e+01 sys_corr_110: -6.95980137e+00 - sys_corr_111: -1.95485867e+00 + sys_corr_111: 1.95485867e+00 sys_corr_112: -5.77981412e+00 sys_corr_113: -7.83272905e+00 sys_corr_114: -6.14918214e-01 - sys_corr_115: -1.42532550e+01 + sys_corr_115: 1.42532550e+01 sys_corr_116: -2.83206333e+00 sys_corr_117: 1.65667425e+00 sys_corr_118: 9.52465247e+00 sys_corr_119: 5.44038023e-01 sys_corr_120: 8.19859445e-01 - sys_corr_121: 5.71969674e-01 - sys_corr_122: 1.82015301e+00 - sys_corr_123: -2.45259342e+00 + sys_corr_121: -5.71969674e-01 + sys_corr_122: -2.45259342e+00 + sys_corr_123: 1.82015301e+00 sys_corr_124: 1.99808679e-01 - sys_corr_125: -2.47578753e+00 - sys_corr_126: 1.14830048e+00 + sys_corr_125: 2.47578753e+00 + sys_corr_126: -1.14830048e+00 sys_corr_127: -1.96705838e-02 sys_corr_128: 1.60603528e+00 - sys_corr_129: -5.00896746e+00 - sys_corr_130: -1.30374668e+00 + sys_corr_129: 5.00896746e+00 + sys_corr_130: 1.30374668e+00 sys_corr_131: 2.27939062e+00 - sys_corr_132: 3.62953704e+01 + sys_corr_132: -3.62953704e+01 stat: 0.0 luminosity: 6.068678 - sys_corr_1: -1.92324660e+00 @@ -16491,9 +16491,9 @@ bins: sys_corr_7: 1.54398462e+00 sys_corr_8: 9.88991008e-01 sys_corr_9: -7.68029129e-01 - sys_corr_10: -2.29928815e-01 + sys_corr_10: 2.29928815e-01 sys_corr_11: 3.58409420e-01 - sys_corr_12: 1.03968057e-01 + sys_corr_12: -1.03968057e-01 sys_corr_13: -5.63352471e-01 sys_corr_14: 5.78683139e-01 sys_corr_15: -1.86542416e-01 @@ -16519,60 +16519,60 @@ bins: sys_corr_35: -1.78415431e-01 sys_corr_36: -7.43479726e-01 sys_corr_37: 5.15270010e-01 - sys_corr_38: 1.51730012e-01 - sys_corr_39: -2.79468275e-01 - sys_corr_40: -1.55174815e-01 - sys_corr_41: 2.78582430e-01 - sys_corr_42: -7.63806674e-01 - sys_corr_43: -1.19579670e-01 + sys_corr_38: -1.51730012e-01 + sys_corr_39: 2.79468275e-01 + sys_corr_40: 1.55174815e-01 + sys_corr_41: -2.78582430e-01 + sys_corr_42: 7.63806674e-01 + sys_corr_43: 1.19579670e-01 sys_corr_44: 2.84015370e+00 - sys_corr_45: 1.03878980e-01 - sys_corr_46: 4.91852873e-02 + sys_corr_45: -1.03878980e-01 + sys_corr_46: -4.91852873e-02 sys_corr_47: 2.53538258e+00 - sys_corr_48: 5.41510490e+00 + sys_corr_48: -5.41510490e+00 sys_corr_49: -1.99474198e+00 sys_corr_50: -4.99500643e+00 sys_corr_51: -4.77953599e+00 - sys_corr_52: 3.74877738e+00 - sys_corr_53: 2.38905396e-01 + sys_corr_52: -3.74877738e+00 + sys_corr_53: -2.38905396e-01 sys_corr_54: 1.35521618e+00 - sys_corr_55: -1.26663981e+00 + sys_corr_55: 1.26663981e+00 sys_corr_56: 1.15180775e+00 - sys_corr_57: -1.10415969e-01 + sys_corr_57: 1.10415969e-01 sys_corr_58: 8.51040430e-02 - sys_corr_59: 1.72990258e-01 + sys_corr_59: -1.72990258e-01 sys_corr_60: 1.99820848e-01 sys_corr_61: -3.08488336e-01 sys_corr_62: 1.93664215e-01 - sys_corr_63: -1.76613846e-01 - sys_corr_64: 1.50540667e-01 + sys_corr_63: 1.76613846e-01 + sys_corr_64: -1.50540667e-01 sys_corr_65: -2.15426812e-01 sys_corr_66: -1.33658237e-01 sys_corr_67: -2.59565914e-01 sys_corr_68: -3.35139585e-01 sys_corr_69: 1.26961025e-01 sys_corr_70: -9.32891909e-03 - sys_corr_71: -1.58549139e-01 - sys_corr_72: 1.49074063e-01 - sys_corr_73: -9.41243727e-02 + sys_corr_71: -9.41243727e-02 + sys_corr_72: -1.49074063e-01 + sys_corr_73: -1.58549139e-01 sys_corr_74: 1.62669046e-01 sys_corr_75: -4.59640150e-01 sys_corr_76: 1.68924053e-01 - sys_corr_77: -5.83860000e-01 - sys_corr_78: 5.04974897e-01 - sys_corr_79: 3.27742500e-01 - sys_corr_80: -8.50637399e-02 + sys_corr_77: 5.83860000e-01 + sys_corr_78: 3.27742500e-01 + sys_corr_79: 8.50637399e-02 + sys_corr_80: -5.04974897e-01 sys_corr_81: 4.46008331e-01 sys_corr_82: 3.21418335e-01 sys_corr_83: 3.90300339e-01 - sys_corr_84: -1.16345399e+00 + sys_corr_84: 1.16345399e+00 sys_corr_85: 6.61084665e-01 sys_corr_86: -8.76814854e-02 sys_corr_87: 1.20890371e-01 sys_corr_88: 2.58910085e-01 sys_corr_89: -3.23462383e-01 sys_corr_90: -1.29768878e+00 - sys_corr_91: -5.11250801e-02 + sys_corr_91: 5.11250801e-02 sys_corr_92: 3.20506988e-01 sys_corr_93: -3.53053773e-01 sys_corr_94: -8.02339146e-01 @@ -16580,40 +16580,40 @@ bins: sys_corr_96: 2.70980803e-02 sys_corr_97: -1.22813704e+00 sys_corr_98: -6.37617234e-01 - sys_corr_99: 6.93909365e-01 - sys_corr_100: 2.43076928e+00 + sys_corr_99: -6.93909365e-01 + sys_corr_100: -2.43076928e+00 sys_corr_101: 1.34070776e+00 - sys_corr_102: 1.80289319e+00 - sys_corr_103: 7.61988877e-01 - sys_corr_104: 5.83894907e-01 - sys_corr_105: 1.43374273e+00 - sys_corr_106: -1.85643903e+00 - sys_corr_107: -3.70540951e+00 + sys_corr_102: -1.80289319e+00 + sys_corr_103: -7.61988877e-01 + sys_corr_104: -5.83894907e-01 + sys_corr_105: -1.43374273e+00 + sys_corr_106: 1.85643903e+00 + sys_corr_107: 3.70540951e+00 sys_corr_108: 9.45229879e-01 sys_corr_109: -3.01237232e+00 sys_corr_110: -2.24627258e+00 - sys_corr_111: -6.46047730e-01 + sys_corr_111: 6.46047730e-01 sys_corr_112: -1.35202521e+00 sys_corr_113: -1.91025001e+00 sys_corr_114: 4.24719219e-02 - sys_corr_115: -3.09327562e+00 + sys_corr_115: 3.09327562e+00 sys_corr_116: -6.24509198e-01 sys_corr_117: 2.80503609e-01 sys_corr_118: 2.36472685e+00 sys_corr_119: 1.17794843e+00 sys_corr_120: 1.34572159e-01 - sys_corr_121: 2.49461789e+00 - sys_corr_122: -1.50949647e+00 - sys_corr_123: 5.64229348e-01 + sys_corr_121: -2.49461789e+00 + sys_corr_122: 5.64229348e-01 + sys_corr_123: -1.50949647e+00 sys_corr_124: 1.58141246e-01 - sys_corr_125: -9.04155101e-02 - sys_corr_126: -8.12615322e+00 + sys_corr_125: 9.04155101e-02 + sys_corr_126: 8.12615322e+00 sys_corr_127: -2.79344276e-02 sys_corr_128: -8.54957677e-01 - sys_corr_129: -6.91902050e-01 - sys_corr_130: 1.96439596e+01 + sys_corr_129: 6.91902050e-01 + sys_corr_130: -1.96439596e+01 sys_corr_131: 2.53011899e-01 - sys_corr_132: 1.48854283e+00 + sys_corr_132: -1.48854283e+00 stat: 0.0 luminosity: 2.356574 - sys_corr_1: 3.62423738e+00 @@ -16625,9 +16625,9 @@ bins: sys_corr_7: 1.13716685e-01 sys_corr_8: -1.04063880e+00 sys_corr_9: 2.17957660e+00 - sys_corr_10: 6.61746028e-01 + sys_corr_10: -6.61746028e-01 sys_corr_11: -4.60089240e-01 - sys_corr_12: -8.21912587e-02 + sys_corr_12: 8.21912587e-02 sys_corr_13: -5.64356678e-01 sys_corr_14: 2.29193198e-01 sys_corr_15: 1.05631196e-01 @@ -16653,60 +16653,60 @@ bins: sys_corr_35: -2.00607325e-01 sys_corr_36: -7.77669847e-02 sys_corr_37: -4.17104256e-01 - sys_corr_38: -1.97252706e-01 - sys_corr_39: -4.42742924e-01 - sys_corr_40: 1.46772301e-01 - sys_corr_41: -3.73552663e-01 - sys_corr_42: 1.63231241e-01 - sys_corr_43: -3.52015787e-01 + sys_corr_38: 1.97252706e-01 + sys_corr_39: 4.42742924e-01 + sys_corr_40: -1.46772301e-01 + sys_corr_41: 3.73552663e-01 + sys_corr_42: -1.63231241e-01 + sys_corr_43: 3.52015787e-01 sys_corr_44: 2.99229332e-01 - sys_corr_45: 1.46634140e-01 - sys_corr_46: -1.87782082e-01 + sys_corr_45: -1.46634140e-01 + sys_corr_46: 1.87782082e-01 sys_corr_47: -4.39305398e-01 - sys_corr_48: -5.53934127e-01 + sys_corr_48: 5.53934127e-01 sys_corr_49: 2.52021813e-02 sys_corr_50: -2.08650218e-01 sys_corr_51: 5.40880387e-02 - sys_corr_52: -9.68632276e-03 - sys_corr_53: 1.03296227e-01 + sys_corr_52: 9.68632276e-03 + sys_corr_53: -1.03296227e-01 sys_corr_54: -6.86264036e-01 - sys_corr_55: -4.32239633e-01 + sys_corr_55: 4.32239633e-01 sys_corr_56: 3.64111887e-01 - sys_corr_57: -1.50822540e-01 + sys_corr_57: 1.50822540e-01 sys_corr_58: -2.89632421e-01 - sys_corr_59: 2.13165263e-01 + sys_corr_59: -2.13165263e-01 sys_corr_60: -6.03202583e-02 sys_corr_61: -4.05818035e-02 sys_corr_62: -3.55001601e-01 - sys_corr_63: 7.03878895e-02 - sys_corr_64: 3.85130859e-01 + sys_corr_63: -7.03878895e-02 + sys_corr_64: -3.85130859e-01 sys_corr_65: -5.37730985e-01 sys_corr_66: -3.05027178e-02 sys_corr_67: 8.59529679e-02 sys_corr_68: -1.56251275e-01 sys_corr_69: 4.82098963e-01 sys_corr_70: 4.36776666e-01 - sys_corr_71: 6.63971847e-02 - sys_corr_72: 3.11167102e-01 - sys_corr_73: -7.62008742e-01 + sys_corr_71: -7.62008742e-01 + sys_corr_72: -3.11167102e-01 + sys_corr_73: 6.63971847e-02 sys_corr_74: 8.38256323e-03 sys_corr_75: 3.68740324e-02 sys_corr_76: 2.84814479e-01 - sys_corr_77: -1.30629155e-01 - sys_corr_78: 3.38213466e-01 - sys_corr_79: 6.53782434e-01 - sys_corr_80: -3.69166163e-01 + sys_corr_77: 1.30629155e-01 + sys_corr_78: 6.53782434e-01 + sys_corr_79: 3.69166163e-01 + sys_corr_80: -3.38213466e-01 sys_corr_81: 4.59174954e-01 sys_corr_82: -1.76340152e-01 sys_corr_83: 9.82045929e-01 - sys_corr_84: -4.89284665e+00 + sys_corr_84: 4.89284665e+00 sys_corr_85: 3.40070100e+00 sys_corr_86: -4.72084997e-01 sys_corr_87: 3.25426618e-01 sys_corr_88: 3.32736089e-01 sys_corr_89: 6.13286695e-02 sys_corr_90: -5.50290713e+00 - sys_corr_91: -8.62275719e-01 + sys_corr_91: 8.62275719e-01 sys_corr_92: 7.03733264e-01 sys_corr_93: 1.52094264e-01 sys_corr_94: -5.56892336e-01 @@ -16714,40 +16714,40 @@ bins: sys_corr_96: -7.86740808e-01 sys_corr_97: -1.84875515e+00 sys_corr_98: 7.40658070e-01 - sys_corr_99: 3.06364617e-01 - sys_corr_100: 1.56525281e+00 + sys_corr_99: -3.06364617e-01 + sys_corr_100: -1.56525281e+00 sys_corr_101: 6.84317514e-01 - sys_corr_102: 1.17459094e+00 - sys_corr_103: 3.21860665e-01 - sys_corr_104: 1.22929191e-02 - sys_corr_105: -4.83277792e-01 - sys_corr_106: -9.75091612e-01 - sys_corr_107: -1.60932237e+00 + sys_corr_102: -1.17459094e+00 + sys_corr_103: -3.21860665e-01 + sys_corr_104: -1.22929191e-02 + sys_corr_105: 4.83277792e-01 + sys_corr_106: 9.75091612e-01 + sys_corr_107: 1.60932237e+00 sys_corr_108: 2.52414973e-01 sys_corr_109: -1.23723137e+00 sys_corr_110: -9.56705372e-01 - sys_corr_111: -1.51574918e+00 + sys_corr_111: 1.51574918e+00 sys_corr_112: -1.40602709e+00 sys_corr_113: -2.35703092e+00 sys_corr_114: 2.51171100e-03 - sys_corr_115: 2.10010569e+00 + sys_corr_115: -2.10010569e+00 sys_corr_116: 7.01175798e-01 sys_corr_117: 3.32782349e+00 sys_corr_118: -1.41169646e-01 sys_corr_119: -1.02971768e-02 sys_corr_120: 1.77256762e+00 - sys_corr_121: -7.47563966e-03 - sys_corr_122: 1.08737654e-01 - sys_corr_123: -4.25149014e-01 + sys_corr_121: 7.47563966e-03 + sys_corr_122: -4.25149014e-01 + sys_corr_123: 1.08737654e-01 sys_corr_124: -7.05461129e+01 - sys_corr_125: -8.16885800e-01 - sys_corr_126: 1.74072333e-03 + sys_corr_125: 8.16885800e-01 + sys_corr_126: -1.74072333e-03 sys_corr_127: 3.40495144e-01 sys_corr_128: -2.27323214e-01 - sys_corr_129: 7.10759199e+00 - sys_corr_130: 3.94623370e-02 + sys_corr_129: -7.10759199e+00 + sys_corr_130: -3.94623370e-02 sys_corr_131: 9.29837758e-01 - sys_corr_132: 3.24447447e-03 + sys_corr_132: -3.24447447e-03 stat: 0.0 luminosity: 1.16578440e+01 - sys_corr_1: 4.21824717e+00 @@ -16759,9 +16759,9 @@ bins: sys_corr_7: 4.20491312e-01 sys_corr_8: -8.95600941e-01 sys_corr_9: 2.17300150e+00 - sys_corr_10: 4.70190982e-01 + sys_corr_10: -4.70190982e-01 sys_corr_11: -4.43399321e-01 - sys_corr_12: -1.14157298e-01 + sys_corr_12: 1.14157298e-01 sys_corr_13: -2.87520634e-01 sys_corr_14: 2.30440512e-01 sys_corr_15: -8.80018823e-02 @@ -16787,60 +16787,60 @@ bins: sys_corr_35: -1.61363796e-01 sys_corr_36: -5.13977313e-02 sys_corr_37: -2.98651756e-01 - sys_corr_38: -2.04651770e-01 - sys_corr_39: -3.68972235e-01 - sys_corr_40: 9.74817926e-02 - sys_corr_41: -3.55898580e-01 - sys_corr_42: 1.15306850e-01 - sys_corr_43: -3.03193976e-01 + sys_corr_38: 2.04651770e-01 + sys_corr_39: 3.68972235e-01 + sys_corr_40: -9.74817926e-02 + sys_corr_41: 3.55898580e-01 + sys_corr_42: -1.15306850e-01 + sys_corr_43: 3.03193976e-01 sys_corr_44: 1.80769815e-01 - sys_corr_45: 1.27246543e-01 - sys_corr_46: -1.56792454e-01 + sys_corr_45: -1.27246543e-01 + sys_corr_46: 1.56792454e-01 sys_corr_47: -3.71050499e-01 - sys_corr_48: -5.22382708e-01 + sys_corr_48: 5.22382708e-01 sys_corr_49: -4.53099172e-02 sys_corr_50: -1.37047058e-01 sys_corr_51: 1.12210805e-01 - sys_corr_52: -8.08288170e-03 - sys_corr_53: 1.70782620e-01 + sys_corr_52: 8.08288170e-03 + sys_corr_53: -1.70782620e-01 sys_corr_54: -5.96122678e-01 - sys_corr_55: -3.63397768e-01 + sys_corr_55: 3.63397768e-01 sys_corr_56: 2.68498704e-01 - sys_corr_57: -1.93994156e-01 + sys_corr_57: 1.93994156e-01 sys_corr_58: -1.60695108e-01 - sys_corr_59: 1.99107157e-01 + sys_corr_59: -1.99107157e-01 sys_corr_60: -4.74235303e-02 sys_corr_61: -5.41931844e-02 sys_corr_62: -3.16272798e-01 - sys_corr_63: 6.88183664e-02 - sys_corr_64: 2.49474152e-01 + sys_corr_63: -6.88183664e-02 + sys_corr_64: -2.49474152e-01 sys_corr_65: -4.04810427e-01 sys_corr_66: -3.22010000e-02 sys_corr_67: 6.41396810e-02 sys_corr_68: -1.85528155e-01 sys_corr_69: 3.75970168e-01 sys_corr_70: 3.85245252e-01 - sys_corr_71: 6.93652438e-02 - sys_corr_72: 1.97599123e-01 - sys_corr_73: -6.49631946e-01 + sys_corr_71: -6.49631946e-01 + sys_corr_72: -1.97599123e-01 + sys_corr_73: 6.93652438e-02 sys_corr_74: 3.46546877e-02 sys_corr_75: 5.59627885e-02 sys_corr_76: 2.27328536e-01 - sys_corr_77: -1.05219163e-01 - sys_corr_78: 2.15623376e-01 - sys_corr_79: 5.97283131e-01 - sys_corr_80: -2.87464932e-01 + sys_corr_77: 1.05219163e-01 + sys_corr_78: 5.97283131e-01 + sys_corr_79: 2.87464932e-01 + sys_corr_80: -2.15623376e-01 sys_corr_81: 3.92121320e-01 sys_corr_82: -1.67577484e-01 sys_corr_83: 7.20415613e-01 - sys_corr_84: -3.77914314e+00 + sys_corr_84: 3.77914314e+00 sys_corr_85: 2.58255006e+00 sys_corr_86: -3.75774193e-01 sys_corr_87: 2.57344157e-01 sys_corr_88: 2.06801304e-01 sys_corr_89: 2.76120979e-03 sys_corr_90: -4.27193113e+00 - sys_corr_91: -7.43983994e-01 + sys_corr_91: 7.43983994e-01 sys_corr_92: 4.55790164e-01 sys_corr_93: -1.65830024e+00 sys_corr_94: 3.13297490e-01 @@ -16848,40 +16848,40 @@ bins: sys_corr_96: 7.44829696e-01 sys_corr_97: 6.02939472e-01 sys_corr_98: -2.30812594e+00 - sys_corr_99: 1.19617020e+00 - sys_corr_100: 1.18403160e+00 + sys_corr_99: -1.19617020e+00 + sys_corr_100: -1.18403160e+00 sys_corr_101: 6.16239830e-01 - sys_corr_102: 1.02940143e+00 - sys_corr_103: 7.82536893e-01 - sys_corr_104: -5.29226116e-02 - sys_corr_105: -2.23369707e-01 - sys_corr_106: -6.50451944e-01 - sys_corr_107: -1.23379176e+00 + sys_corr_102: -1.02940143e+00 + sys_corr_103: -7.82536893e-01 + sys_corr_104: 5.29226116e-02 + sys_corr_105: 2.23369707e-01 + sys_corr_106: 6.50451944e-01 + sys_corr_107: 1.23379176e+00 sys_corr_108: 1.78761514e-01 sys_corr_109: -1.00301272e+00 sys_corr_110: -5.45986686e-01 - sys_corr_111: -1.12846637e+00 + sys_corr_111: 1.12846637e+00 sys_corr_112: -6.86043027e-01 sys_corr_113: -9.33892261e-01 sys_corr_114: 2.45413183e-03 - sys_corr_115: -7.99149335e+00 + sys_corr_115: 7.99149335e+00 sys_corr_116: 5.93119067e+01 sys_corr_117: -7.49511573e-01 sys_corr_118: -3.03155129e-03 sys_corr_119: -2.36823564e-02 sys_corr_120: 3.12219705e+00 - sys_corr_121: -1.12327226e-02 - sys_corr_122: 1.41051877e-01 - sys_corr_123: -6.14511929e-01 + sys_corr_121: 1.12327226e-02 + sys_corr_122: -6.14511929e-01 + sys_corr_123: 1.41051877e-01 sys_corr_124: 8.50745285e-01 - sys_corr_125: -1.31336686e+00 - sys_corr_126: 1.53403554e-02 + sys_corr_125: 1.31336686e+00 + sys_corr_126: -1.53403554e-02 sys_corr_127: -2.36447054e-01 sys_corr_128: -1.83197506e-01 - sys_corr_129: -1.03525268e+00 - sys_corr_130: 4.90401357e-02 + sys_corr_129: 1.03525268e+00 + sys_corr_130: -4.90401357e-02 sys_corr_131: 1.49978178e+00 - sys_corr_132: 6.17076418e-02 + sys_corr_132: -6.17076418e-02 stat: 0.0 luminosity: 1.33837660e+01 - sys_corr_1: 4.19179293e+00 @@ -16893,9 +16893,9 @@ bins: sys_corr_7: 4.38523879e-01 sys_corr_8: -9.42298337e-01 sys_corr_9: 1.80681087e+00 - sys_corr_10: 6.85124188e-01 + sys_corr_10: -6.85124188e-01 sys_corr_11: -3.62134278e-01 - sys_corr_12: -2.31058823e-01 + sys_corr_12: 2.31058823e-01 sys_corr_13: -4.30856996e-01 sys_corr_14: 1.97068661e-01 sys_corr_15: 7.91398271e-02 @@ -16921,60 +16921,60 @@ bins: sys_corr_35: -1.07204963e-01 sys_corr_36: 1.69881557e-02 sys_corr_37: -3.38712162e-01 - sys_corr_38: -1.43453790e-01 - sys_corr_39: -3.68447764e-01 - sys_corr_40: 2.19399090e-02 - sys_corr_41: -3.22367859e-01 - sys_corr_42: 2.06111540e-01 - sys_corr_43: -2.43608042e-01 + sys_corr_38: 1.43453790e-01 + sys_corr_39: 3.68447764e-01 + sys_corr_40: -2.19399090e-02 + sys_corr_41: 3.22367859e-01 + sys_corr_42: -2.06111540e-01 + sys_corr_43: 2.43608042e-01 sys_corr_44: 2.90326143e-01 - sys_corr_45: 8.56098154e-02 - sys_corr_46: -1.65324096e-01 + sys_corr_45: -8.56098154e-02 + sys_corr_46: 1.65324096e-01 sys_corr_47: -4.78185350e-01 - sys_corr_48: -5.76810395e-01 + sys_corr_48: 5.76810395e-01 sys_corr_49: -2.67281608e-02 sys_corr_50: -8.20329447e-02 sys_corr_51: 1.05711986e-01 - sys_corr_52: 4.78321878e-02 - sys_corr_53: 1.63795097e-01 + sys_corr_52: -4.78321878e-02 + sys_corr_53: -1.63795097e-01 sys_corr_54: -4.86285212e-01 - sys_corr_55: -3.38230905e-01 + sys_corr_55: 3.38230905e-01 sys_corr_56: 3.66566252e-01 - sys_corr_57: -2.85645827e-01 + sys_corr_57: 2.85645827e-01 sys_corr_58: -2.04362594e-01 - sys_corr_59: 2.22079243e-01 + sys_corr_59: -2.22079243e-01 sys_corr_60: 7.89266958e-02 sys_corr_61: 7.32342935e-04 sys_corr_62: -2.44258734e-01 - sys_corr_63: 1.18266083e-01 - sys_corr_64: 2.42602905e-01 + sys_corr_63: -1.18266083e-01 + sys_corr_64: -2.42602905e-01 sys_corr_65: -3.78903342e-01 sys_corr_66: -6.36033911e-02 sys_corr_67: 1.24122518e-01 sys_corr_68: -1.47271684e-01 sys_corr_69: 3.56320006e-01 sys_corr_70: 3.72378439e-01 - sys_corr_71: 8.17421980e-04 - sys_corr_72: 1.70958021e-01 - sys_corr_73: -6.58124732e-01 + sys_corr_71: -6.58124732e-01 + sys_corr_72: -1.70958021e-01 + sys_corr_73: 8.17421980e-04 sys_corr_74: 9.09184329e-02 sys_corr_75: 1.34534865e-01 sys_corr_76: 1.56308459e-01 - sys_corr_77: -1.60834193e-01 - sys_corr_78: 2.08479845e-01 - sys_corr_79: 4.47070996e-01 - sys_corr_80: -2.36433146e-01 + sys_corr_77: 1.60834193e-01 + sys_corr_78: 4.47070996e-01 + sys_corr_79: 2.36433146e-01 + sys_corr_80: -2.08479845e-01 sys_corr_81: 3.94839137e-01 sys_corr_82: -5.00451833e-02 sys_corr_83: 6.48478944e-01 - sys_corr_84: -3.73632698e+00 + sys_corr_84: 3.73632698e+00 sys_corr_85: 2.52606390e+00 sys_corr_86: -3.76430794e-01 sys_corr_87: 8.24601383e-02 sys_corr_88: 2.42406278e-01 sys_corr_89: -3.43068706e-02 sys_corr_90: -4.34294185e+00 - sys_corr_91: -9.26609581e-01 + sys_corr_91: 9.26609581e-01 sys_corr_92: 4.21007509e-01 sys_corr_93: -4.72355896e-01 sys_corr_94: 2.30573218e-01 @@ -16982,40 +16982,40 @@ bins: sys_corr_96: 1.98069362e-01 sys_corr_97: 2.81788625e-01 sys_corr_98: 3.65753224e-01 - sys_corr_99: -4.74894956e-01 - sys_corr_100: 1.39227130e+00 + sys_corr_99: 4.74894956e-01 + sys_corr_100: -1.39227130e+00 sys_corr_101: 7.10523327e-01 - sys_corr_102: 1.27096583e+00 - sys_corr_103: 2.03935637e-01 - sys_corr_104: 5.55800234e-01 - sys_corr_105: 2.22908333e+00 - sys_corr_106: -9.23814917e-01 - sys_corr_107: -1.59998616e+00 + sys_corr_102: -1.27096583e+00 + sys_corr_103: -2.03935637e-01 + sys_corr_104: -5.55800234e-01 + sys_corr_105: -2.22908333e+00 + sys_corr_106: 9.23814917e-01 + sys_corr_107: 1.59998616e+00 sys_corr_108: 3.55274690e-01 sys_corr_109: -1.13998216e+00 sys_corr_110: -7.68453064e-01 - sys_corr_111: 9.17783650e-01 + sys_corr_111: -9.17783650e-01 sys_corr_112: -7.17303997e-01 sys_corr_113: -8.85285794e-01 sys_corr_114: 8.24739604e-04 - sys_corr_115: -1.58373448e+00 + sys_corr_115: 1.58373448e+00 sys_corr_116: -1.31884768e+00 sys_corr_117: -5.30797261e+01 sys_corr_118: 6.42840554e-01 sys_corr_119: -2.81994756e-02 sys_corr_120: -7.94145529e-01 - sys_corr_121: 1.26216628e-02 - sys_corr_122: 2.57882821e-01 - sys_corr_123: -9.96402322e-01 + sys_corr_121: -1.26216628e-02 + sys_corr_122: -9.96402322e-01 + sys_corr_123: 2.57882821e-01 sys_corr_124: -4.16796488e+00 - sys_corr_125: -1.95726811e+00 - sys_corr_126: 5.52717753e-02 + sys_corr_125: 1.95726811e+00 + sys_corr_126: -5.52717753e-02 sys_corr_127: 3.82194063e-01 sys_corr_128: -6.37229015e-02 - sys_corr_129: 2.87782261e-01 - sys_corr_130: 5.25119022e-02 + sys_corr_129: -2.87782261e-01 + sys_corr_130: -5.25119022e-02 sys_corr_131: 2.05951723e+00 - sys_corr_132: 1.74395940e-01 + sys_corr_132: -1.74395940e-01 stat: 0.0 luminosity: 1.43488840e+01 - sys_corr_1: 2.96928369e+00 @@ -17027,9 +17027,9 @@ bins: sys_corr_7: 6.13626990e-02 sys_corr_8: -5.17296578e-01 sys_corr_9: 1.42389194e+00 - sys_corr_10: 1.51499291e-01 + sys_corr_10: -1.51499291e-01 sys_corr_11: -3.56737395e-01 - sys_corr_12: 7.32547620e-02 + sys_corr_12: -7.32547620e-02 sys_corr_13: -4.37549288e-01 sys_corr_14: 1.53112049e-01 sys_corr_15: 1.52597394e-01 @@ -17055,60 +17055,60 @@ bins: sys_corr_35: -1.09419010e-01 sys_corr_36: 3.27536974e-03 sys_corr_37: -1.18830128e-01 - sys_corr_38: -1.44613621e-01 - sys_corr_39: -3.02433281e-01 - sys_corr_40: 6.06969054e-02 - sys_corr_41: -3.81256388e-01 - sys_corr_42: 1.67669780e-01 - sys_corr_43: -1.86599872e-01 + sys_corr_38: 1.44613621e-01 + sys_corr_39: 3.02433281e-01 + sys_corr_40: -6.06969054e-02 + sys_corr_41: 3.81256388e-01 + sys_corr_42: -1.67669780e-01 + sys_corr_43: 1.86599872e-01 sys_corr_44: 1.93033609e-01 - sys_corr_45: 2.31319369e-02 - sys_corr_46: -1.59753604e-01 + sys_corr_45: -2.31319369e-02 + sys_corr_46: 1.59753604e-01 sys_corr_47: -3.44973118e-01 - sys_corr_48: -6.08417045e-01 + sys_corr_48: 6.08417045e-01 sys_corr_49: 1.31317924e-01 sys_corr_50: -1.93182641e-01 sys_corr_51: -9.49820708e-02 - sys_corr_52: 5.67362813e-03 - sys_corr_53: 1.40388860e-01 + sys_corr_52: -5.67362813e-03 + sys_corr_53: -1.40388860e-01 sys_corr_54: -3.03727070e-01 - sys_corr_55: -2.59548448e-01 + sys_corr_55: 2.59548448e-01 sys_corr_56: 2.77993711e-01 - sys_corr_57: -2.17784699e-01 + sys_corr_57: 2.17784699e-01 sys_corr_58: -2.04065313e-01 - sys_corr_59: 1.36261362e-01 + sys_corr_59: -1.36261362e-01 sys_corr_60: 1.09831212e-01 sys_corr_61: -8.01814607e-02 sys_corr_62: -3.00660764e-01 - sys_corr_63: 9.15766009e-02 - sys_corr_64: 1.65052605e-01 + sys_corr_63: -9.15766009e-02 + sys_corr_64: -1.65052605e-01 sys_corr_65: -2.53411325e-01 sys_corr_66: -2.22618837e-02 sys_corr_67: 3.08840797e-02 sys_corr_68: -1.28279958e-01 sys_corr_69: 3.14704544e-01 sys_corr_70: 3.29705336e-01 - sys_corr_71: 1.30403381e-01 - sys_corr_72: 2.36546336e-01 - sys_corr_73: -4.61854603e-01 + sys_corr_71: -4.61854603e-01 + sys_corr_72: -2.36546336e-01 + sys_corr_73: 1.30403381e-01 sys_corr_74: 1.54625093e-01 sys_corr_75: 1.36274553e-02 sys_corr_76: 2.60448756e-02 - sys_corr_77: -6.03125606e-02 - sys_corr_78: 2.00865045e-01 - sys_corr_79: 4.80380930e-01 - sys_corr_80: -1.40955746e-01 + sys_corr_77: 6.03125606e-02 + sys_corr_78: 4.80380930e-01 + sys_corr_79: 1.40955746e-01 + sys_corr_80: -2.00865045e-01 sys_corr_81: 3.78096408e-01 sys_corr_82: -4.01129031e-02 sys_corr_83: 4.92767979e-01 - sys_corr_84: -2.86769542e+00 + sys_corr_84: 2.86769542e+00 sys_corr_85: 1.82376433e+00 sys_corr_86: -3.41257710e-01 sys_corr_87: 8.03372525e-02 sys_corr_88: 2.29788987e-01 sys_corr_89: -4.79795474e-02 sys_corr_90: -3.32871720e+00 - sys_corr_91: -7.47629011e-01 + sys_corr_91: 7.47629011e-01 sys_corr_92: 3.09224890e-01 sys_corr_93: -2.46437339e-01 sys_corr_94: 2.59361578e-01 @@ -17116,40 +17116,40 @@ bins: sys_corr_96: 2.32843295e-01 sys_corr_97: 1.07861540e+00 sys_corr_98: 7.71120668e-01 - sys_corr_99: 1.50352411e+00 - sys_corr_100: 1.43708526e+00 + sys_corr_99: -1.50352411e+00 + sys_corr_100: -1.43708526e+00 sys_corr_101: 8.93487390e-01 - sys_corr_102: 2.47332470e+00 - sys_corr_103: 1.61087801e+00 - sys_corr_104: 3.83638002e-01 - sys_corr_105: -3.18614721e-01 - sys_corr_106: -8.79739344e-01 - sys_corr_107: -1.71665127e+00 + sys_corr_102: -2.47332470e+00 + sys_corr_103: -1.61087801e+00 + sys_corr_104: -3.83638002e-01 + sys_corr_105: 3.18614721e-01 + sys_corr_106: 8.79739344e-01 + sys_corr_107: 1.71665127e+00 sys_corr_108: 1.90392559e-01 sys_corr_109: -1.15873432e+00 sys_corr_110: -7.04952609e-01 - sys_corr_111: 6.45902871e-01 + sys_corr_111: -6.45902871e-01 sys_corr_112: -7.24732273e-01 sys_corr_113: -7.19946747e-01 sys_corr_114: -1.09343448e-03 - sys_corr_115: -1.54311112e+00 + sys_corr_115: 1.54311112e+00 sys_corr_116: 3.65634038e+00 sys_corr_117: 1.19071361e+00 sys_corr_118: -4.44907838e-01 sys_corr_119: -3.22605894e-02 sys_corr_120: -4.66498146e+01 - sys_corr_121: 5.34503750e-02 - sys_corr_122: 5.22980260e-01 - sys_corr_123: -1.72350541e+00 + sys_corr_121: -5.34503750e-02 + sys_corr_122: -1.72350541e+00 + sys_corr_123: 5.22980260e-01 sys_corr_124: -2.32361919e+00 - sys_corr_125: -2.62313732e+00 - sys_corr_126: 1.26443770e-01 + sys_corr_125: 2.62313732e+00 + sys_corr_126: -1.26443770e-01 sys_corr_127: 1.40614573e+00 sys_corr_128: 3.98879667e-02 - sys_corr_129: 2.81269659e-01 - sys_corr_130: 1.02600318e-01 + sys_corr_129: -2.81269659e-01 + sys_corr_130: -1.02600318e-01 sys_corr_131: -2.59363781e+00 - sys_corr_132: 2.76724971e-02 + sys_corr_132: -2.76724971e-02 stat: 0.0 luminosity: 1.14751560e+01 - sys_corr_1: 2.03606490e+00 @@ -17161,9 +17161,9 @@ bins: sys_corr_7: 5.10836072e-01 sys_corr_8: -3.95972925e-01 sys_corr_9: 1.04231271e+00 - sys_corr_10: 2.20501342e-01 + sys_corr_10: -2.20501342e-01 sys_corr_11: -5.09493923e-02 - sys_corr_12: 1.92548311e-01 + sys_corr_12: -1.92548311e-01 sys_corr_13: -6.41503179e-01 sys_corr_14: 1.98339388e-01 sys_corr_15: -4.54725187e-02 @@ -17189,60 +17189,60 @@ bins: sys_corr_35: 1.56203000e-02 sys_corr_36: 7.47407703e-02 sys_corr_37: -1.14940097e-01 - sys_corr_38: -5.84203106e-02 - sys_corr_39: -3.06740544e-01 - sys_corr_40: 1.69256813e-01 - sys_corr_41: -4.13679404e-01 - sys_corr_42: 2.44840174e-01 - sys_corr_43: -1.46802851e-01 + sys_corr_38: 5.84203106e-02 + sys_corr_39: 3.06740544e-01 + sys_corr_40: -1.69256813e-01 + sys_corr_41: 4.13679404e-01 + sys_corr_42: -2.44840174e-01 + sys_corr_43: 1.46802851e-01 sys_corr_44: 1.80718243e-01 - sys_corr_45: 1.85949632e-02 - sys_corr_46: -1.09145357e-02 + sys_corr_45: -1.85949632e-02 + sys_corr_46: 1.09145357e-02 sys_corr_47: -2.67971424e-01 - sys_corr_48: -6.00970071e-01 + sys_corr_48: 6.00970071e-01 sys_corr_49: 1.60288491e-01 sys_corr_50: -2.52661408e-01 sys_corr_51: -3.17240947e-01 - sys_corr_52: 1.11288582e-01 - sys_corr_53: 9.79701558e-02 + sys_corr_52: -1.11288582e-01 + sys_corr_53: -9.79701558e-02 sys_corr_54: -1.35142618e-01 - sys_corr_55: -2.51877384e-01 + sys_corr_55: 2.51877384e-01 sys_corr_56: 2.61868687e-01 - sys_corr_57: -1.33001889e-01 + sys_corr_57: 1.33001889e-01 sys_corr_58: -1.18631389e-01 - sys_corr_59: 6.58270156e-02 + sys_corr_59: -6.58270156e-02 sys_corr_60: 3.85848153e-02 sys_corr_61: -1.71047251e-01 sys_corr_62: -3.05542945e-01 - sys_corr_63: 1.46878433e-01 - sys_corr_64: 1.33127350e-01 + sys_corr_63: -1.46878433e-01 + sys_corr_64: -1.33127350e-01 sys_corr_65: -1.52474440e-01 sys_corr_66: -5.57328704e-02 sys_corr_67: 9.34506510e-02 sys_corr_68: -7.88729696e-02 sys_corr_69: 3.00906185e-01 sys_corr_70: 2.11526846e-01 - sys_corr_71: 6.80387629e-02 - sys_corr_72: 2.12642737e-01 - sys_corr_73: -4.82200531e-01 + sys_corr_71: -4.82200531e-01 + sys_corr_72: -2.12642737e-01 + sys_corr_73: 6.80387629e-02 sys_corr_74: 1.91851203e-01 sys_corr_75: -6.92695452e-02 sys_corr_76: -2.70584606e-04 - sys_corr_77: -1.71333707e-01 - sys_corr_78: 2.72431754e-01 - sys_corr_79: 4.44723121e-01 - sys_corr_80: -6.99070033e-02 + sys_corr_77: 1.71333707e-01 + sys_corr_78: 4.44723121e-01 + sys_corr_79: 6.99070033e-02 + sys_corr_80: -2.72431754e-01 sys_corr_81: 4.20017556e-01 sys_corr_82: 1.24398369e-01 sys_corr_83: 4.87746066e-01 - sys_corr_84: -2.72185085e+00 + sys_corr_84: 2.72185085e+00 sys_corr_85: 1.65503431e+00 sys_corr_86: -4.28322538e-01 sys_corr_87: 3.40426661e-02 sys_corr_88: 3.08667907e-01 sys_corr_89: 2.28497724e-02 sys_corr_90: -3.13465146e+00 - sys_corr_91: -6.76834845e-01 + sys_corr_91: 6.76834845e-01 sys_corr_92: 2.41841105e-01 sys_corr_93: -8.89910727e-02 sys_corr_94: -7.96589061e-03 @@ -17250,40 +17250,40 @@ bins: sys_corr_96: -6.78571045e-03 sys_corr_97: 6.53144903e-01 sys_corr_98: 2.46691711e-01 - sys_corr_99: -2.97358433e-01 - sys_corr_100: 2.65665341e+00 + sys_corr_99: 2.97358433e-01 + sys_corr_100: -2.65665341e+00 sys_corr_101: 1.92391328e+00 - sys_corr_102: 5.74879618e-01 - sys_corr_103: 1.17910142e+00 - sys_corr_104: 5.94128868e-01 - sys_corr_105: 6.08790736e-01 - sys_corr_106: -1.50418239e+00 - sys_corr_107: -1.97744674e+00 + sys_corr_102: -5.74879618e-01 + sys_corr_103: -1.17910142e+00 + sys_corr_104: -5.94128868e-01 + sys_corr_105: -6.08790736e-01 + sys_corr_106: 1.50418239e+00 + sys_corr_107: 1.97744674e+00 sys_corr_108: 3.15233007e-01 sys_corr_109: -1.28488990e+00 sys_corr_110: -8.72043489e-01 - sys_corr_111: -1.08777683e+00 + sys_corr_111: 1.08777683e+00 sys_corr_112: -8.57603310e-01 sys_corr_113: -7.57069340e-01 sys_corr_114: -2.03463464e-03 - sys_corr_115: -1.56560467e+00 + sys_corr_115: 1.56560467e+00 sys_corr_116: 1.65825566e+00 sys_corr_117: -2.62045657e+00 sys_corr_118: -2.90502690e-01 sys_corr_119: 1.71736751e-03 sys_corr_120: 3.28821219e+00 - sys_corr_121: 1.71568095e-01 - sys_corr_122: 1.31647927e+00 - sys_corr_123: -3.93756696e+00 + sys_corr_121: -1.71568095e-01 + sys_corr_122: -3.93756696e+00 + sys_corr_123: 1.31647927e+00 sys_corr_124: -1.49992275e+00 - sys_corr_125: 3.54845196e+00 - sys_corr_126: 3.03894268e-01 + sys_corr_125: -3.54845196e+00 + sys_corr_126: -3.03894268e-01 sys_corr_127: -3.46155127e-01 sys_corr_128: 1.55086320e-01 - sys_corr_129: 3.32820187e-01 - sys_corr_130: 2.42382188e-01 + sys_corr_129: -3.32820187e-01 + sys_corr_130: -2.42382188e-01 sys_corr_131: -3.90694480e+01 - sys_corr_132: 1.63076407e+00 + sys_corr_132: -1.63076407e+00 stat: 0.0 luminosity: 1.17390900e+01 - sys_corr_1: 1.79233347e+00 @@ -17295,9 +17295,9 @@ bins: sys_corr_7: 4.27963825e-01 sys_corr_8: -3.37445616e-01 sys_corr_9: 6.14108184e-01 - sys_corr_10: 1.22624140e-01 + sys_corr_10: -1.22624140e-01 sys_corr_11: -1.39358489e-01 - sys_corr_12: 1.03761553e-01 + sys_corr_12: -1.03761553e-01 sys_corr_13: -5.84791804e-01 sys_corr_14: 3.83981022e-01 sys_corr_15: -1.22726698e-01 @@ -17323,60 +17323,60 @@ bins: sys_corr_35: -1.85876961e-02 sys_corr_36: 1.22167001e-01 sys_corr_37: 1.73204348e-02 - sys_corr_38: -8.67123582e-02 - sys_corr_39: -2.36697067e-01 - sys_corr_40: 2.34828337e-01 - sys_corr_41: -5.74400612e-01 - sys_corr_42: 3.95268685e-01 - sys_corr_43: -1.82474413e-01 + sys_corr_38: 8.67123582e-02 + sys_corr_39: 2.36697067e-01 + sys_corr_40: -2.34828337e-01 + sys_corr_41: 5.74400612e-01 + sys_corr_42: -3.95268685e-01 + sys_corr_43: 1.82474413e-01 sys_corr_44: 2.78961279e-01 - sys_corr_45: -9.22764447e-02 - sys_corr_46: -1.10086464e-02 + sys_corr_45: 9.22764447e-02 + sys_corr_46: 1.10086464e-02 sys_corr_47: -2.24565517e-01 - sys_corr_48: -5.72579319e-01 + sys_corr_48: 5.72579319e-01 sys_corr_49: 2.30307054e-01 sys_corr_50: -5.07536580e-01 sys_corr_51: -6.60373455e-01 - sys_corr_52: 2.39193068e-01 - sys_corr_53: 1.11073465e-01 + sys_corr_52: -2.39193068e-01 + sys_corr_53: -1.11073465e-01 sys_corr_54: 1.95551321e-01 - sys_corr_55: -3.53071910e-01 + sys_corr_55: 3.53071910e-01 sys_corr_56: 4.14171225e-01 - sys_corr_57: -1.03544440e-01 + sys_corr_57: 1.03544440e-01 sys_corr_58: -2.00248980e-01 - sys_corr_59: 6.46832711e-02 + sys_corr_59: -6.46832711e-02 sys_corr_60: 2.20414610e-01 sys_corr_61: -2.43761952e-01 sys_corr_62: -3.39212343e-01 - sys_corr_63: 2.62576130e-01 - sys_corr_64: 1.95395406e-01 + sys_corr_63: -2.62576130e-01 + sys_corr_64: -1.95395406e-01 sys_corr_65: -1.36769454e-01 sys_corr_66: -1.97741593e-02 sys_corr_67: 5.65562791e-02 sys_corr_68: -5.43761580e-03 sys_corr_69: 4.04695781e-01 sys_corr_70: 2.79164067e-01 - sys_corr_71: 9.09399990e-02 - sys_corr_72: 4.33256303e-01 - sys_corr_73: -5.08453797e-01 + sys_corr_71: -5.08453797e-01 + sys_corr_72: -4.33256303e-01 + sys_corr_73: 9.09399990e-02 sys_corr_74: 3.61317307e-01 sys_corr_75: -3.06776896e-01 sys_corr_76: -6.75616471e-02 - sys_corr_77: -3.28180775e-01 - sys_corr_78: 4.00087369e-01 - sys_corr_79: 4.98505147e-01 - sys_corr_80: -1.70425546e-01 + sys_corr_77: 3.28180775e-01 + sys_corr_78: 4.98505147e-01 + sys_corr_79: 1.70425546e-01 + sys_corr_80: -4.00087369e-01 sys_corr_81: 4.79132105e-01 sys_corr_82: 1.76479951e-01 sys_corr_83: 5.67922363e-01 - sys_corr_84: -3.06590053e+00 + sys_corr_84: 3.06590053e+00 sys_corr_85: 1.78711169e+00 sys_corr_86: -5.00922292e-01 sys_corr_87: -2.22093009e-02 sys_corr_88: 3.37117965e-01 sys_corr_89: 5.73899375e-02 sys_corr_90: -3.56734489e+00 - sys_corr_91: -7.76646168e-01 + sys_corr_91: 7.76646168e-01 sys_corr_92: 4.01999404e-01 sys_corr_93: -2.07290789e-01 sys_corr_94: -3.87523021e-01 @@ -17384,40 +17384,40 @@ bins: sys_corr_96: 5.74819504e-02 sys_corr_97: -1.16194026e-01 sys_corr_98: -2.74004031e-01 - sys_corr_99: 4.11021330e-01 - sys_corr_100: 1.85661907e+00 + sys_corr_99: -4.11021330e-01 + sys_corr_100: -1.85661907e+00 sys_corr_101: -3.68581280e-01 - sys_corr_102: 1.14120461e+00 - sys_corr_103: 8.92929544e-01 - sys_corr_104: 6.08996252e-01 - sys_corr_105: 7.13798437e-01 - sys_corr_106: -3.38684755e+00 - sys_corr_107: -4.91985653e+00 + sys_corr_102: -1.14120461e+00 + sys_corr_103: -8.92929544e-01 + sys_corr_104: -6.08996252e-01 + sys_corr_105: -7.13798437e-01 + sys_corr_106: 3.38684755e+00 + sys_corr_107: 4.91985653e+00 sys_corr_108: 6.93382055e-01 sys_corr_109: -1.83260929e+00 sys_corr_110: -1.35129794e+00 - sys_corr_111: -3.47639920e-01 + sys_corr_111: 3.47639920e-01 sys_corr_112: -9.24262947e-01 sys_corr_113: -1.47497953e+00 sys_corr_114: 3.22835999e-03 - sys_corr_115: -2.59191534e+00 + sys_corr_115: 2.59191534e+00 sys_corr_116: 1.38834984e+00 sys_corr_117: -1.82761685e+00 sys_corr_118: 7.80230056e-01 sys_corr_119: 1.36251343e-01 sys_corr_120: -2.95648921e+00 - sys_corr_121: 4.18012674e-01 - sys_corr_122: 3.41940864e+00 - sys_corr_123: -3.61487030e+00 + sys_corr_121: -4.18012674e-01 + sys_corr_122: -3.61487030e+00 + sys_corr_123: 3.41940864e+00 sys_corr_124: -1.31532015e+00 - sys_corr_125: 3.59795212e+01 - sys_corr_126: 9.71280311e-01 + sys_corr_125: -3.59795212e+01 + sys_corr_126: -9.71280311e-01 sys_corr_127: 1.15944890e-01 sys_corr_128: 1.50180229e-01 - sys_corr_129: 1.45711456e-01 - sys_corr_130: 3.73250312e-01 + sys_corr_129: -1.45711456e-01 + sys_corr_130: -3.73250312e-01 sys_corr_131: 4.79327825e+00 - sys_corr_132: 5.63805083e-01 + sys_corr_132: -5.63805083e-01 stat: 0.0 luminosity: 1.15949900e+01 - sys_corr_1: 2.66731189e+00 @@ -17429,9 +17429,9 @@ bins: sys_corr_7: 7.93446072e-02 sys_corr_8: -2.08883880e-01 sys_corr_9: -3.82171826e-02 - sys_corr_10: -8.00611019e-02 + sys_corr_10: 8.00611019e-02 sys_corr_11: 3.51313323e-01 - sys_corr_12: -3.43605287e-01 + sys_corr_12: 3.43605287e-01 sys_corr_13: -1.52412220e-01 sys_corr_14: 1.70070099e-02 sys_corr_15: 2.02662060e-01 @@ -17457,60 +17457,60 @@ bins: sys_corr_35: 1.29251787e-01 sys_corr_36: 2.65158821e-01 sys_corr_37: 1.10086845e-01 - sys_corr_38: -5.11939699e-02 - sys_corr_39: -3.06633264e-01 - sys_corr_40: 2.50251950e-01 - sys_corr_41: -7.57006319e-01 - sys_corr_42: 4.88145575e-01 - sys_corr_43: -1.53728275e-01 + sys_corr_38: 5.11939699e-02 + sys_corr_39: 3.06633264e-01 + sys_corr_40: -2.50251950e-01 + sys_corr_41: 7.57006319e-01 + sys_corr_42: -4.88145575e-01 + sys_corr_43: 1.53728275e-01 sys_corr_44: 5.26721175e-01 - sys_corr_45: -2.23933806e-01 - sys_corr_46: 1.69667119e-01 + sys_corr_45: 2.23933806e-01 + sys_corr_46: -1.69667119e-01 sys_corr_47: 5.89456394e-02 - sys_corr_48: -3.21537405e-01 + sys_corr_48: 3.21537405e-01 sys_corr_49: 3.32368756e-01 sys_corr_50: -1.07545214e+00 sys_corr_51: -1.31273677e+00 - sys_corr_52: 5.54402525e-01 - sys_corr_53: 1.32797252e-01 + sys_corr_52: -5.54402525e-01 + sys_corr_53: -1.32797252e-01 sys_corr_54: 6.19853229e-01 - sys_corr_55: -4.09091506e-01 + sys_corr_55: 4.09091506e-01 sys_corr_56: 7.13645672e-01 - sys_corr_57: -1.09199478e-01 + sys_corr_57: 1.09199478e-01 sys_corr_58: -2.70463594e-01 - sys_corr_59: 8.40663277e-02 + sys_corr_59: -8.40663277e-02 sys_corr_60: 4.28650669e-01 sys_corr_61: -3.16774890e-01 sys_corr_62: -4.01508974e-01 - sys_corr_63: 3.36068550e-01 - sys_corr_64: 1.81785538e-01 + sys_corr_63: -3.36068550e-01 + sys_corr_64: -1.81785538e-01 sys_corr_65: 8.52095529e-03 sys_corr_66: 1.04832336e-03 sys_corr_67: -1.75252241e-01 sys_corr_68: 3.32736364e-02 sys_corr_69: 4.28895334e-01 sys_corr_70: 2.48134320e-01 - sys_corr_71: 1.36153411e-01 - sys_corr_72: 3.51658370e-01 - sys_corr_73: -6.08234605e-01 + sys_corr_71: -6.08234605e-01 + sys_corr_72: -3.51658370e-01 + sys_corr_73: 1.36153411e-01 sys_corr_74: 6.17798910e-01 sys_corr_75: -5.09284712e-01 sys_corr_76: -1.60235111e-01 - sys_corr_77: -6.32215434e-01 - sys_corr_78: 6.03856512e-01 - sys_corr_79: 6.46611996e-01 - sys_corr_80: 4.36071496e-02 + sys_corr_77: 6.32215434e-01 + sys_corr_78: 6.46611996e-01 + sys_corr_79: -4.36071496e-02 + sys_corr_80: -6.03856512e-01 sys_corr_81: 6.27596318e-01 sys_corr_82: 1.57897004e-01 sys_corr_83: 6.25804483e-01 - sys_corr_84: -2.96896742e+00 + sys_corr_84: 2.96896742e+00 sys_corr_85: 1.47012713e+00 sys_corr_86: -5.75414835e-01 sys_corr_87: -1.01192883e-01 sys_corr_88: 4.09600785e-01 sys_corr_89: 4.13505777e-02 sys_corr_90: -3.49387672e+00 - sys_corr_91: -7.69899992e-01 + sys_corr_91: 7.69899992e-01 sys_corr_92: 2.91692676e-01 sys_corr_93: -4.64817893e-01 sys_corr_94: -8.80543568e-01 @@ -17518,40 +17518,40 @@ bins: sys_corr_96: 1.56989817e-01 sys_corr_97: -9.75453642e-01 sys_corr_98: -7.32174648e-01 - sys_corr_99: 7.82713972e-01 - sys_corr_100: 3.31557371e+00 + sys_corr_99: -7.82713972e-01 + sys_corr_100: -3.31557371e+00 sys_corr_101: 1.06395074e+00 - sys_corr_102: 1.87497946e+00 - sys_corr_103: 1.36893389e+00 - sys_corr_104: 9.45699051e-01 - sys_corr_105: 1.59845988e+00 - sys_corr_106: -1.70825681e+00 - sys_corr_107: -5.50605736e+00 + sys_corr_102: -1.87497946e+00 + sys_corr_103: -1.36893389e+00 + sys_corr_104: -9.45699051e-01 + sys_corr_105: -1.59845988e+00 + sys_corr_106: 1.70825681e+00 + sys_corr_107: 5.50605736e+00 sys_corr_108: 1.01721105e+00 sys_corr_109: -4.69980468e+00 sys_corr_110: -4.51659310e+00 - sys_corr_111: -6.37931509e-01 + sys_corr_111: 6.37931509e-01 sys_corr_112: -1.89292267e+00 sys_corr_113: -2.30783360e+00 sys_corr_114: 4.65850491e-02 - sys_corr_115: -2.95518435e+00 + sys_corr_115: 2.95518435e+00 sys_corr_116: 7.13251679e-01 sys_corr_117: -1.24387765e+00 sys_corr_118: 1.84257739e+00 sys_corr_119: 5.74234672e-01 sys_corr_120: -1.49524110e+00 - sys_corr_121: 1.61555243e+00 - sys_corr_122: 1.01218422e+01 - sys_corr_123: 2.74672601e+01 + sys_corr_121: -1.61555243e+00 + sys_corr_122: 2.74672601e+01 + sys_corr_123: 1.01218422e+01 sys_corr_124: -9.07858591e-01 - sys_corr_125: 1.40492358e+00 - sys_corr_126: 4.60971691e+00 + sys_corr_125: -1.40492358e+00 + sys_corr_126: -4.60971691e+00 sys_corr_127: 1.61732575e-01 sys_corr_128: 1.68239317e+00 - sys_corr_129: -3.18282105e-01 - sys_corr_130: 1.32375250e+00 + sys_corr_129: 3.18282105e-01 + sys_corr_130: -1.32375250e+00 sys_corr_131: -3.21308774e+00 - sys_corr_132: -1.26784953e-01 + sys_corr_132: 1.26784953e-01 stat: 0.0 luminosity: 1.04685460e+01 - sys_corr_1: 1.97933373e+00 @@ -17563,9 +17563,9 @@ bins: sys_corr_7: -1.77950853e-01 sys_corr_8: -1.37599772e-01 sys_corr_9: -4.52937235e-01 - sys_corr_10: -3.67294252e-01 + sys_corr_10: 3.67294252e-01 sys_corr_11: 4.13711040e-01 - sys_corr_12: -5.19776284e-01 + sys_corr_12: 5.19776284e-01 sys_corr_13: 1.27736033e-01 sys_corr_14: 3.88861375e-01 sys_corr_15: 1.57953543e-01 @@ -17591,60 +17591,60 @@ bins: sys_corr_35: 7.48217123e-02 sys_corr_36: 2.72302463e-01 sys_corr_37: 2.47220508e-01 - sys_corr_38: 3.13545928e-02 - sys_corr_39: -3.08250890e-01 - sys_corr_40: 2.18806245e-01 - sys_corr_41: -7.37788755e-01 - sys_corr_42: 4.68379895e-01 - sys_corr_43: -6.45707101e-02 + sys_corr_38: -3.13545928e-02 + sys_corr_39: 3.08250890e-01 + sys_corr_40: -2.18806245e-01 + sys_corr_41: 7.37788755e-01 + sys_corr_42: -4.68379895e-01 + sys_corr_43: 6.45707101e-02 sys_corr_44: 5.22675197e-01 - sys_corr_45: -3.47994268e-01 - sys_corr_46: 1.41377847e-01 + sys_corr_45: 3.47994268e-01 + sys_corr_46: -1.41377847e-01 sys_corr_47: 1.38349207e-01 - sys_corr_48: -2.32506744e-01 + sys_corr_48: 2.32506744e-01 sys_corr_49: 3.99518201e-01 sys_corr_50: -1.21620397e+00 sys_corr_51: -1.46483440e+00 - sys_corr_52: 6.89897051e-01 - sys_corr_53: 1.34495517e-01 + sys_corr_52: -6.89897051e-01 + sys_corr_53: -1.34495517e-01 sys_corr_54: 8.28600865e-01 - sys_corr_55: -3.61770103e-01 + sys_corr_55: 3.61770103e-01 sys_corr_56: 6.89225092e-01 - sys_corr_57: -8.58387194e-02 + sys_corr_57: 8.58387194e-02 sys_corr_58: -1.78437083e-01 - sys_corr_59: 8.84325273e-02 + sys_corr_59: -8.84325273e-02 sys_corr_60: 4.95391169e-01 sys_corr_61: -4.12229512e-01 sys_corr_62: -3.93695773e-01 - sys_corr_63: 3.92973259e-01 - sys_corr_64: 1.27705144e-01 + sys_corr_63: -3.92973259e-01 + sys_corr_64: -1.27705144e-01 sys_corr_65: 1.09203943e-01 sys_corr_66: 9.27076512e-02 sys_corr_67: -2.03825641e-01 sys_corr_68: 1.07637986e-01 sys_corr_69: 4.21152160e-01 sys_corr_70: 2.28272550e-01 - sys_corr_71: 2.02110229e-01 - sys_corr_72: 3.97355675e-01 - sys_corr_73: -4.27482834e-01 + sys_corr_71: -4.27482834e-01 + sys_corr_72: -3.97355675e-01 + sys_corr_73: 2.02110229e-01 sys_corr_74: 6.55826895e-01 sys_corr_75: -6.47581958e-01 sys_corr_76: -2.77092804e-01 - sys_corr_77: -7.04745877e-01 - sys_corr_78: 6.14176962e-01 - sys_corr_79: 4.84690855e-01 - sys_corr_80: 8.41637353e-03 + sys_corr_77: 7.04745877e-01 + sys_corr_78: 4.84690855e-01 + sys_corr_79: -8.41637353e-03 + sys_corr_80: -6.14176962e-01 sys_corr_81: 6.14260094e-01 sys_corr_82: 2.31703799e-01 sys_corr_83: 4.91869167e-01 - sys_corr_84: -2.29268510e+00 + sys_corr_84: 2.29268510e+00 sys_corr_85: 9.60924675e-01 sys_corr_86: -4.99079692e-01 sys_corr_87: -6.49084142e-02 sys_corr_88: 3.48824996e-01 - sys_corr_89: -3.35114052e-02 + sys_corr_89: -3.35114051e-02 sys_corr_90: -2.83687939e+00 - sys_corr_91: -7.13357502e-01 + sys_corr_91: 7.13357502e-01 sys_corr_92: 2.83471970e-01 sys_corr_93: -4.82393567e-01 sys_corr_94: -9.57534842e-01 @@ -17652,40 +17652,40 @@ bins: sys_corr_96: 1.03068103e-01 sys_corr_97: -9.68586943e-01 sys_corr_98: -7.98351296e-01 - sys_corr_99: 8.23350276e-01 - sys_corr_100: 3.31671913e+00 + sys_corr_99: -8.23350276e-01 + sys_corr_100: -3.31671913e+00 sys_corr_101: 1.31061132e+00 - sys_corr_102: 1.95126049e+00 - sys_corr_103: 1.35270833e+00 - sys_corr_104: 1.03822286e+00 - sys_corr_105: 1.81326416e+00 - sys_corr_106: -2.38675187e+00 - sys_corr_107: -5.48176795e+00 + sys_corr_102: -1.95126049e+00 + sys_corr_103: -1.35270833e+00 + sys_corr_104: -1.03822286e+00 + sys_corr_105: -1.81326416e+00 + sys_corr_106: 2.38675187e+00 + sys_corr_107: 5.48176795e+00 sys_corr_108: 4.13454595e+00 sys_corr_109: -5.75395942e+00 sys_corr_110: -2.06630044e+00 - sys_corr_111: -5.33005122e-01 + sys_corr_111: 5.33005122e-01 sys_corr_112: -2.82984144e+00 sys_corr_113: -2.18622491e+00 sys_corr_114: 1.06492993e-01 - sys_corr_115: -3.71183437e+00 + sys_corr_115: 3.71183437e+00 sys_corr_116: 2.33769055e-01 sys_corr_117: -7.64061727e-01 sys_corr_118: 1.61549906e+00 sys_corr_119: 1.42815515e+00 sys_corr_120: -1.12311736e+00 - sys_corr_121: 4.19791066e+00 - sys_corr_122: -2.19984795e+01 - sys_corr_123: 6.38455787e+00 + sys_corr_121: -4.19791066e+00 + sys_corr_122: 6.38455787e+00 + sys_corr_123: -2.19984795e+01 sys_corr_124: -6.04954745e-01 - sys_corr_125: 3.76542818e+00 - sys_corr_126: 9.17108971e+00 + sys_corr_125: -3.76542818e+00 + sys_corr_126: -9.17108971e+00 sys_corr_127: 1.59361074e-01 sys_corr_128: 9.24788193e-01 - sys_corr_129: -1.27996087e-01 - sys_corr_130: 1.13217613e+00 + sys_corr_129: 1.27996087e-01 + sys_corr_130: -1.13217613e+00 sys_corr_131: -1.75837812e+00 - sys_corr_132: 4.22267465e-01 + sys_corr_132: -4.22267465e-01 stat: 0.0 luminosity: 7.112402 - sys_corr_1: 1.21315062e+00 @@ -17697,9 +17697,9 @@ bins: sys_corr_7: -6.86379140e-02 sys_corr_8: -1.03024340e-01 sys_corr_9: -4.92883910e-01 - sys_corr_10: -1.99376644e-01 + sys_corr_10: 1.99376644e-01 sys_corr_11: 3.92116919e-01 - sys_corr_12: -5.25109722e-01 + sys_corr_12: 5.25109722e-01 sys_corr_13: 2.24533049e-01 sys_corr_14: 9.82675474e-02 sys_corr_15: 2.98553132e-01 @@ -17725,60 +17725,60 @@ bins: sys_corr_35: 2.42304853e-01 sys_corr_36: 2.89957559e-01 sys_corr_37: 3.52058407e-01 - sys_corr_38: 8.68178891e-03 - sys_corr_39: -2.31947924e-01 - sys_corr_40: 2.62598318e-01 - sys_corr_41: -6.70018046e-01 - sys_corr_42: 4.64928277e-01 - sys_corr_43: -7.11833359e-02 + sys_corr_38: -8.68178891e-03 + sys_corr_39: 2.31947924e-01 + sys_corr_40: -2.62598318e-01 + sys_corr_41: 6.70018046e-01 + sys_corr_42: -4.64928277e-01 + sys_corr_43: 7.11833359e-02 sys_corr_44: 5.15400875e-01 - sys_corr_45: -3.36980310e-01 - sys_corr_46: 1.28516262e-01 + sys_corr_45: 3.36980310e-01 + sys_corr_46: -1.28516262e-01 sys_corr_47: 1.51888387e-01 - sys_corr_48: -1.63008966e-01 + sys_corr_48: 1.63008966e-01 sys_corr_49: 4.05193049e-01 sys_corr_50: -1.16923953e+00 sys_corr_51: -1.44891268e+00 - sys_corr_52: 6.00896521e-01 - sys_corr_53: 1.81471382e-01 + sys_corr_52: -6.00896521e-01 + sys_corr_53: -1.81471382e-01 sys_corr_54: 8.90104323e-01 - sys_corr_55: -3.93756478e-01 + sys_corr_55: 3.93756478e-01 sys_corr_56: 5.20804244e-01 - sys_corr_57: -1.19825611e-01 + sys_corr_57: 1.19825611e-01 sys_corr_58: -1.12293079e-01 - sys_corr_59: -2.26766483e-02 + sys_corr_59: 2.26766483e-02 sys_corr_60: 4.20072096e-01 sys_corr_61: -5.38055489e-01 sys_corr_62: -3.22114803e-01 - sys_corr_63: 2.89539434e-01 - sys_corr_64: 1.01340402e-01 + sys_corr_63: -2.89539434e-01 + sys_corr_64: -1.01340402e-01 sys_corr_65: 2.02689104e-01 sys_corr_66: -1.44302844e-02 sys_corr_67: -1.58913786e-01 sys_corr_68: 8.46133922e-02 sys_corr_69: 4.45576437e-01 sys_corr_70: 1.49193334e-01 - sys_corr_71: 1.56222840e-01 - sys_corr_72: 5.41561359e-01 - sys_corr_73: -3.38597532e-01 + sys_corr_71: -3.38597532e-01 + sys_corr_72: -5.41561359e-01 + sys_corr_73: 1.56222840e-01 sys_corr_74: 7.27959985e-01 sys_corr_75: -6.40636052e-01 sys_corr_76: -2.37778824e-01 - sys_corr_77: -6.47460265e-01 - sys_corr_78: 5.76434851e-01 - sys_corr_79: 4.93316616e-01 - sys_corr_80: 6.29856447e-02 + sys_corr_77: 6.47460265e-01 + sys_corr_78: 4.93316616e-01 + sys_corr_79: -6.29856447e-02 + sys_corr_80: -5.76434851e-01 sys_corr_81: 5.48668563e-01 sys_corr_82: 2.29872841e-01 sys_corr_83: 4.67043374e-01 - sys_corr_84: -2.24085652e+00 + sys_corr_84: 2.24085652e+00 sys_corr_85: 9.63514259e-01 sys_corr_86: -5.69535756e-01 sys_corr_87: -1.25436908e-01 sys_corr_88: 3.46746354e-01 sys_corr_89: 1.04783118e-02 sys_corr_90: -2.62942126e+00 - sys_corr_91: -6.06567907e-01 + sys_corr_91: 6.06567907e-01 sys_corr_92: 1.08940842e-01 sys_corr_93: -4.80931985e-01 sys_corr_94: -9.05021701e-01 @@ -17786,40 +17786,40 @@ bins: sys_corr_96: 1.25742975e-01 sys_corr_97: -8.58873381e-01 sys_corr_98: -7.34179806e-01 - sys_corr_99: 7.39758229e-01 - sys_corr_100: 3.11857380e+00 + sys_corr_99: -7.39758229e-01 + sys_corr_100: -3.11857380e+00 sys_corr_101: 1.33665032e+00 - sys_corr_102: 1.99956225e+00 - sys_corr_103: 1.27114686e+00 - sys_corr_104: 9.97007712e-01 - sys_corr_105: 1.75292242e+00 - sys_corr_106: -2.39887325e+00 - sys_corr_107: -4.94751132e+00 + sys_corr_102: -1.99956225e+00 + sys_corr_103: -1.27114686e+00 + sys_corr_104: -9.97007712e-01 + sys_corr_105: -1.75292242e+00 + sys_corr_106: 2.39887325e+00 + sys_corr_107: 4.94751132e+00 sys_corr_108: 1.44265998e+00 sys_corr_109: -3.76527101e+00 sys_corr_110: -2.44356333e+00 - sys_corr_111: -5.01570971e-01 + sys_corr_111: 5.01570971e-01 sys_corr_112: -3.79849794e+00 sys_corr_113: -5.03564969e+00 sys_corr_114: 1.56815009e-01 - sys_corr_115: -3.64907466e+00 + sys_corr_115: 3.64907466e+00 sys_corr_116: 1.07214915e-01 sys_corr_117: -6.46034633e-01 sys_corr_118: 1.60854822e+00 sys_corr_119: 2.85024749e+00 sys_corr_120: -9.80343959e-01 - sys_corr_121: 5.49395774e+00 - sys_corr_122: -5.45157068e+00 - sys_corr_123: 7.24074286e+00 + sys_corr_121: -5.49395774e+00 + sys_corr_122: 7.24074286e+00 + sys_corr_123: -5.45157068e+00 sys_corr_124: -5.06720778e-01 - sys_corr_125: 2.97417878e+00 - sys_corr_126: -1.69707460e+01 + sys_corr_125: -2.97417878e+00 + sys_corr_126: 1.69707460e+01 sys_corr_127: 1.11219458e-01 sys_corr_128: 1.00243508e+00 - sys_corr_129: -1.16780517e+00 - sys_corr_130: -8.69978136e+00 + sys_corr_129: 1.16780517e+00 + sys_corr_130: 8.69978136e+00 sys_corr_131: -1.58457366e+00 - sys_corr_132: -2.87985354e-01 + sys_corr_132: 2.87985354e-01 stat: 0.0 luminosity: 5.42245 - sys_corr_1: 6.76208687e-01 @@ -17831,9 +17831,9 @@ bins: sys_corr_7: -9.77350409e-02 sys_corr_8: -1.25854808e-02 sys_corr_9: -3.85949325e-01 - sys_corr_10: -2.73880686e-01 + sys_corr_10: 2.73880686e-01 sys_corr_11: 5.62028682e-02 - sys_corr_12: 1.06629339e-01 + sys_corr_12: -1.06629339e-01 sys_corr_13: -1.07481686e-01 sys_corr_14: -1.04140420e-02 sys_corr_15: 1.41014463e-01 @@ -17859,60 +17859,60 @@ bins: sys_corr_35: 1.43568263e-01 sys_corr_36: 9.93008139e-02 sys_corr_37: 4.42072674e-01 - sys_corr_38: 5.34726873e-02 - sys_corr_39: -1.18929323e-01 - sys_corr_40: 1.77067043e-01 - sys_corr_41: -5.26519733e-01 - sys_corr_42: 3.09183141e-01 - sys_corr_43: 1.59973330e-02 + sys_corr_38: -5.34726873e-02 + sys_corr_39: 1.18929323e-01 + sys_corr_40: -1.77067043e-01 + sys_corr_41: 5.26519733e-01 + sys_corr_42: -3.09183141e-01 + sys_corr_43: -1.59973330e-02 sys_corr_44: 5.65267078e-01 - sys_corr_45: -2.89811814e-01 - sys_corr_46: 8.87905992e-02 + sys_corr_45: 2.89811814e-01 + sys_corr_46: -8.87905992e-02 sys_corr_47: 1.98529793e-01 - sys_corr_48: -1.24001577e-01 + sys_corr_48: 1.24001577e-01 sys_corr_49: 4.44869348e-01 sys_corr_50: -9.62863400e-01 sys_corr_51: -1.25187156e+00 - sys_corr_52: 4.95762724e-01 - sys_corr_53: 8.88326774e-02 + sys_corr_52: -4.95762724e-01 + sys_corr_53: -8.88326774e-02 sys_corr_54: 7.79572455e-01 - sys_corr_55: -3.78839413e-01 + sys_corr_55: 3.78839413e-01 sys_corr_56: 6.27034467e-01 - sys_corr_57: 4.92130119e-02 + sys_corr_57: -4.92130119e-02 sys_corr_58: -1.67525052e-01 - sys_corr_59: 3.80980421e-02 + sys_corr_59: -3.80980421e-02 sys_corr_60: 3.52497979e-01 sys_corr_61: -4.08673884e-01 sys_corr_62: -3.47946832e-01 - sys_corr_63: 3.00098862e-01 - sys_corr_64: 5.88585078e-02 + sys_corr_63: -3.00098862e-01 + sys_corr_64: -5.88585078e-02 sys_corr_65: 9.17992258e-02 sys_corr_66: 5.18724838e-02 sys_corr_67: -1.06679427e-01 sys_corr_68: -1.98416353e-02 sys_corr_69: 4.15698746e-01 sys_corr_70: 1.78871328e-01 - sys_corr_71: 1.26977616e-01 - sys_corr_72: 3.59683142e-01 - sys_corr_73: -3.33735717e-01 + sys_corr_71: -3.33735717e-01 + sys_corr_72: -3.59683142e-01 + sys_corr_73: 1.26977616e-01 sys_corr_74: 6.02987645e-01 sys_corr_75: -5.68211269e-01 sys_corr_76: -1.68848686e-01 - sys_corr_77: -5.52209984e-01 - sys_corr_78: 4.98234184e-01 - sys_corr_79: 5.19029251e-01 - sys_corr_80: -2.83963763e-02 + sys_corr_77: 5.52209984e-01 + sys_corr_78: 5.19029251e-01 + sys_corr_79: 2.83963763e-02 + sys_corr_80: -4.98234184e-01 sys_corr_81: 4.46441401e-01 sys_corr_82: 2.22623536e-01 sys_corr_83: 4.43086998e-01 - sys_corr_84: -1.66539984e+00 + sys_corr_84: 1.66539984e+00 sys_corr_85: 6.80323056e-01 sys_corr_86: -3.73538902e-01 sys_corr_87: -1.07463192e-02 sys_corr_88: 2.91129862e-01 sys_corr_89: 1.99170052e-02 sys_corr_90: -2.04232692e+00 - sys_corr_91: -4.45999062e-01 + sys_corr_91: 4.45999062e-01 sys_corr_92: 1.23625357e-01 sys_corr_93: -4.02781351e-01 sys_corr_94: -8.06037998e-01 @@ -17920,40 +17920,40 @@ bins: sys_corr_96: 6.67030289e-02 sys_corr_97: -6.51709116e-01 sys_corr_98: -5.47381948e-01 - sys_corr_99: 5.06628392e-01 - sys_corr_100: 2.40059282e+00 + sys_corr_99: -5.06628392e-01 + sys_corr_100: -2.40059282e+00 sys_corr_101: 9.20372249e-01 - sys_corr_102: 1.41823624e+00 - sys_corr_103: 7.43706309e-01 - sys_corr_104: 7.66358383e-01 - sys_corr_105: 1.12463492e+00 - sys_corr_106: -1.82852837e+00 - sys_corr_107: -3.81983161e+00 + sys_corr_102: -1.41823624e+00 + sys_corr_103: -7.43706309e-01 + sys_corr_104: -7.66358383e-01 + sys_corr_105: -1.12463492e+00 + sys_corr_106: 1.82852837e+00 + sys_corr_107: 3.81983161e+00 sys_corr_108: 1.06280167e+00 sys_corr_109: -2.83659506e+00 sys_corr_110: -1.85071423e+00 - sys_corr_111: -4.36918973e-01 + sys_corr_111: 4.36918973e-01 sys_corr_112: -1.14360739e+00 sys_corr_113: -6.34558485e-01 sys_corr_114: 2.36232519e-01 - sys_corr_115: -6.09959815e+00 + sys_corr_115: 6.09959815e+00 sys_corr_116: -3.86999728e-01 sys_corr_117: -3.72960993e-01 sys_corr_118: 1.92348002e+00 sys_corr_119: 5.49735263e+00 sys_corr_120: -7.04218810e-01 - sys_corr_121: -1.57398911e+01 - sys_corr_122: -5.03054415e+00 - sys_corr_123: 5.01070915e+00 + sys_corr_121: 1.57398911e+01 + sys_corr_122: 5.01070915e+00 + sys_corr_123: -5.03054415e+00 sys_corr_124: -5.26338396e-01 - sys_corr_125: 2.20930112e+00 - sys_corr_126: -2.80343303e+00 + sys_corr_125: -2.20930112e+00 + sys_corr_126: 2.80343303e+00 sys_corr_127: 4.59171469e-02 sys_corr_128: 8.40744107e-01 - sys_corr_129: -6.26936672e-01 - sys_corr_130: 3.85493240e-01 + sys_corr_129: 6.26936672e-01 + sys_corr_130: -3.85493240e-01 sys_corr_131: -1.17210023e+00 - sys_corr_132: 5.18714065e-01 + sys_corr_132: -5.18714065e-01 stat: 0.0 luminosity: 3.33341800e+00 - sys_corr_1: 1.04291169e+00 @@ -17965,9 +17965,9 @@ bins: sys_corr_7: 1.18161136e-01 sys_corr_8: 9.43235755e-02 sys_corr_9: -3.80192640e-01 - sys_corr_10: -3.80668498e-01 + sys_corr_10: 3.80668498e-01 sys_corr_11: 2.45399245e-01 - sys_corr_12: 9.02238628e-02 + sys_corr_12: -9.02238628e-02 sys_corr_13: -2.05247967e-01 sys_corr_14: -6.45836803e-02 sys_corr_15: 7.18599709e-02 @@ -17993,60 +17993,60 @@ bins: sys_corr_35: 1.34248817e-01 sys_corr_36: 3.33044321e-01 sys_corr_37: 3.84736365e-01 - sys_corr_38: 1.11187798e-01 - sys_corr_39: -1.05699768e-01 - sys_corr_40: 6.86964972e-02 - sys_corr_41: -3.32244595e-01 - sys_corr_42: 2.43577033e-01 - sys_corr_43: 4.58745823e-02 + sys_corr_38: -1.11187798e-01 + sys_corr_39: 1.05699768e-01 + sys_corr_40: -6.86964972e-02 + sys_corr_41: 3.32244595e-01 + sys_corr_42: -2.43577033e-01 + sys_corr_43: -4.58745823e-02 sys_corr_44: 5.19309935e-01 - sys_corr_45: -4.35517526e-01 - sys_corr_46: 1.43477139e-01 + sys_corr_45: 4.35517526e-01 + sys_corr_46: -1.43477139e-01 sys_corr_47: 1.68411279e-01 - sys_corr_48: 2.20457087e-01 + sys_corr_48: -2.20457087e-01 sys_corr_49: 1.32001163e-01 sys_corr_50: -1.11180596e+00 sys_corr_51: -1.18930379e+00 - sys_corr_52: 6.39571158e-01 - sys_corr_53: 2.75353233e-01 + sys_corr_52: -6.39571158e-01 + sys_corr_53: -2.75353233e-01 sys_corr_54: 5.85505264e-01 - sys_corr_55: -4.76837177e-01 + sys_corr_55: 4.76837177e-01 sys_corr_56: 3.29211744e-01 - sys_corr_57: -1.39167286e-01 + sys_corr_57: 1.39167286e-01 sys_corr_58: -2.58934645e-01 - sys_corr_59: -4.73733549e-02 + sys_corr_59: 4.73733549e-02 sys_corr_60: 2.07154961e-01 sys_corr_61: -3.59659457e-01 sys_corr_62: -4.16462908e-01 - sys_corr_63: 1.28334294e-01 - sys_corr_64: 6.03460299e-02 + sys_corr_63: -1.28334294e-01 + sys_corr_64: -6.03460299e-02 sys_corr_65: -2.13301790e-02 sys_corr_66: 3.64693840e-01 sys_corr_67: -4.09327607e-01 sys_corr_68: 4.45444662e-02 sys_corr_69: 4.30525581e-01 sys_corr_70: 3.45412583e-01 - sys_corr_71: -1.87186671e-03 - sys_corr_72: 3.91590484e-01 - sys_corr_73: -6.34814848e-01 + sys_corr_71: -6.34814848e-01 + sys_corr_72: -3.91590484e-01 + sys_corr_73: -1.87186671e-03 sys_corr_74: 6.32546763e-01 sys_corr_75: -5.54527642e-01 sys_corr_76: 5.86254514e-02 - sys_corr_77: -5.17741844e-01 - sys_corr_78: 5.05592329e-01 - sys_corr_79: 4.92805308e-01 - sys_corr_80: -2.60714011e-01 + sys_corr_77: 5.17741844e-01 + sys_corr_78: 4.92805308e-01 + sys_corr_79: 2.60714011e-01 + sys_corr_80: -5.05592329e-01 sys_corr_81: 4.54075109e-01 sys_corr_82: 3.13890097e-01 sys_corr_83: 4.40993227e-01 - sys_corr_84: -1.65600750e+00 + sys_corr_84: 1.65600750e+00 sys_corr_85: 5.53580503e-01 sys_corr_86: -4.19611866e-01 sys_corr_87: 1.62800189e-01 sys_corr_88: 2.91655072e-01 sys_corr_89: 7.29238435e-02 sys_corr_90: -1.94789658e+00 - sys_corr_91: -3.66116660e-01 + sys_corr_91: 3.66116660e-01 sys_corr_92: 2.19634183e-01 sys_corr_93: -4.44440248e-01 sys_corr_94: -1.32964215e+00 @@ -18054,40 +18054,40 @@ bins: sys_corr_96: 7.81132104e-02 sys_corr_97: -1.08381381e+00 sys_corr_98: -6.86757063e-01 - sys_corr_99: 7.35726887e-01 - sys_corr_100: 2.58802141e+00 + sys_corr_99: -7.35726887e-01 + sys_corr_100: -2.58802141e+00 sys_corr_101: 1.02741060e+00 - sys_corr_102: 1.64034614e+00 - sys_corr_103: 8.36979486e-01 - sys_corr_104: 6.21376501e-01 - sys_corr_105: 1.46107409e+00 - sys_corr_106: -2.00018201e+00 - sys_corr_107: -4.26523610e+00 + sys_corr_102: -1.64034614e+00 + sys_corr_103: -8.36979486e-01 + sys_corr_104: -6.21376501e-01 + sys_corr_105: -1.46107409e+00 + sys_corr_106: 2.00018201e+00 + sys_corr_107: 4.26523610e+00 sys_corr_108: 1.58000500e+00 sys_corr_109: -3.50884714e+00 sys_corr_110: -2.20137163e+00 - sys_corr_111: -5.50277789e-01 + sys_corr_111: 5.50277789e-01 sys_corr_112: -1.72010083e+00 sys_corr_113: -2.10306298e+00 sys_corr_114: 8.23813285e-01 - sys_corr_115: -1.76963781e+00 + sys_corr_115: 1.76963781e+00 sys_corr_116: 4.04024966e-02 sys_corr_117: -3.29783925e-01 sys_corr_118: 2.59807945e+00 sys_corr_119: -1.26685431e+01 sys_corr_120: -6.37022408e-01 - sys_corr_121: -4.64816457e+00 - sys_corr_122: -5.29772697e+00 - sys_corr_123: 5.56076756e+00 + sys_corr_121: 4.64816457e+00 + sys_corr_122: 5.56076756e+00 + sys_corr_123: -5.29772697e+00 sys_corr_124: -1.98226125e-01 - sys_corr_125: 2.39221639e+00 - sys_corr_126: -4.36241565e+00 + sys_corr_125: -2.39221639e+00 + sys_corr_126: 4.36241565e+00 sys_corr_127: 6.97916335e-02 sys_corr_128: 8.71107258e-01 - sys_corr_129: -1.62791340e-01 - sys_corr_130: 1.78229286e-01 + sys_corr_129: 1.62791340e-01 + sys_corr_130: -1.78229286e-01 sys_corr_131: -1.01937079e+00 - sys_corr_132: 3.10557051e+00 + sys_corr_132: -3.10557051e+00 stat: 0.0 luminosity: 2.12645400e+00 - sys_corr_1: -4.14063459e-03 @@ -18099,9 +18099,9 @@ bins: sys_corr_7: -6.43204243e-02 sys_corr_8: 1.05666361e-02 sys_corr_9: -6.25432817e-02 - sys_corr_10: -9.93387162e-02 + sys_corr_10: 9.93387162e-02 sys_corr_11: -1.30632844e-02 - sys_corr_12: 1.93414719e-01 + sys_corr_12: -1.93414719e-01 sys_corr_13: -2.59230769e-01 sys_corr_14: 6.19764288e-02 sys_corr_15: -2.19024985e-02 @@ -18127,60 +18127,60 @@ bins: sys_corr_35: -1.46971246e-01 sys_corr_36: -7.26595224e-03 sys_corr_37: 3.10954072e-02 - sys_corr_38: -9.37854109e-02 - sys_corr_39: -3.04168668e-02 - sys_corr_40: 1.76789494e-01 - sys_corr_41: -1.88110060e-01 - sys_corr_42: 5.23046810e-02 - sys_corr_43: -1.23291194e-01 + sys_corr_38: 9.37854109e-02 + sys_corr_39: 3.04168668e-02 + sys_corr_40: -1.76789494e-01 + sys_corr_41: 1.88110060e-01 + sys_corr_42: -5.23046810e-02 + sys_corr_43: 1.23291194e-01 sys_corr_44: 1.14925212e-01 - sys_corr_45: 9.74856265e-03 - sys_corr_46: -4.85700930e-02 + sys_corr_45: -9.74856265e-03 + sys_corr_46: 4.85700930e-02 sys_corr_47: 2.21358247e-01 - sys_corr_48: 5.44326567e-01 + sys_corr_48: -5.44326567e-01 sys_corr_49: -2.40951378e-01 sys_corr_50: -6.85739088e-01 sys_corr_51: -2.41509503e-01 - sys_corr_52: 1.67046959e-01 - sys_corr_53: 1.51067894e-01 + sys_corr_52: -1.67046959e-01 + sys_corr_53: -1.51067894e-01 sys_corr_54: 1.47052890e-01 - sys_corr_55: -4.37828987e-02 + sys_corr_55: 4.37828987e-02 sys_corr_56: 4.44485738e-03 - sys_corr_57: -2.20957869e-02 + sys_corr_57: 2.20957869e-02 sys_corr_58: -6.33546947e-02 - sys_corr_59: 4.67076248e-02 + sys_corr_59: -4.67076248e-02 sys_corr_60: -3.09072293e-02 sys_corr_61: 1.64198177e-02 sys_corr_62: -4.21227142e-02 - sys_corr_63: -8.24962392e-02 - sys_corr_64: -3.41912760e-02 + sys_corr_63: 8.24962392e-02 + sys_corr_64: 3.41912760e-02 sys_corr_65: -5.39307208e-02 sys_corr_66: 1.40323937e-01 sys_corr_67: -2.13353323e-01 sys_corr_68: 7.93032482e-02 sys_corr_69: -8.49633526e-03 sys_corr_70: 3.69741819e-02 - sys_corr_71: 6.94503608e-03 - sys_corr_72: -1.34336525e-02 - sys_corr_73: -8.46837778e-02 + sys_corr_71: -8.46837778e-02 + sys_corr_72: 1.34336525e-02 + sys_corr_73: 6.94503608e-03 sys_corr_74: -1.35074256e-02 sys_corr_75: -2.05311008e-01 sys_corr_76: 6.09259674e-02 - sys_corr_77: -1.90095335e-01 - sys_corr_78: 6.99930402e-02 - sys_corr_79: 1.19142721e-01 - sys_corr_80: -9.35741787e-02 + sys_corr_77: 1.90095335e-01 + sys_corr_78: 1.19142721e-01 + sys_corr_79: 9.35741787e-02 + sys_corr_80: -6.99930402e-02 sys_corr_81: 2.17912484e-02 sys_corr_82: 7.59116896e-02 sys_corr_83: 1.15852471e-01 - sys_corr_84: -4.55562410e-01 + sys_corr_84: 4.55562410e-01 sys_corr_85: 2.15825069e-01 sys_corr_86: -4.26233014e-02 sys_corr_87: 9.19187228e-02 sys_corr_88: 3.06592849e-04 sys_corr_89: 2.17883328e-01 sys_corr_90: -4.61475456e-01 - sys_corr_91: -1.15733710e-01 + sys_corr_91: 1.15733710e-01 sys_corr_92: -1.69691510e-02 sys_corr_93: -4.73821153e-02 sys_corr_94: -1.01693925e-01 @@ -18188,39 +18188,39 @@ bins: sys_corr_96: 4.56438496e-03 sys_corr_97: -1.75926651e-01 sys_corr_98: -9.40683983e-02 - sys_corr_99: 1.16832875e-01 - sys_corr_100: -1.88671421e-02 + sys_corr_99: -1.16832875e-01 + sys_corr_100: 1.88671421e-02 sys_corr_101: -1.15157451e-01 - sys_corr_102: -1.15542520e-01 - sys_corr_103: 3.49089494e-01 - sys_corr_104: 1.86929420e-03 - sys_corr_105: 2.21244950e-01 - sys_corr_106: 1.18289245e-02 - sys_corr_107: -2.83760901e-01 + sys_corr_102: 1.15542520e-01 + sys_corr_103: -3.49089494e-01 + sys_corr_104: -1.86929420e-03 + sys_corr_105: -2.21244950e-01 + sys_corr_106: -1.18289245e-02 + sys_corr_107: 2.83760901e-01 sys_corr_108: 3.27278263e-01 sys_corr_109: -4.44293905e-01 sys_corr_110: -2.18483487e-01 - sys_corr_111: -9.10485309e-02 + sys_corr_111: 9.10485309e-02 sys_corr_112: -1.36803628e-01 sys_corr_113: -1.19457863e-01 sys_corr_114: -5.01812007e+00 - sys_corr_115: -9.00835756e-02 + sys_corr_115: 9.00835756e-02 sys_corr_116: 2.03391782e-01 sys_corr_117: -2.69697706e-01 sys_corr_118: -7.99051737e-01 sys_corr_119: -1.76728716e+00 sys_corr_120: -2.47872236e-01 - sys_corr_121: -1.26761789e+00 - sys_corr_122: -1.82492290e+00 - sys_corr_123: 1.96592492e+00 + sys_corr_121: 1.26761789e+00 + sys_corr_122: 1.96592492e+00 + sys_corr_123: -1.82492290e+00 sys_corr_124: -1.54998594e-01 - sys_corr_125: 9.30763695e-01 - sys_corr_126: -1.31712180e+00 + sys_corr_125: -9.30763695e-01 + sys_corr_126: 1.31712180e+00 sys_corr_127: 1.23003007e-02 sys_corr_128: 2.02442099e-01 - sys_corr_129: 2.47551691e-01 - sys_corr_130: 1.25586845e-01 + sys_corr_129: -2.47551691e-01 + sys_corr_130: -1.25586845e-01 sys_corr_131: -5.59272244e-01 - sys_corr_132: -4.22855763e+00 + sys_corr_132: 4.22855763e+00 stat: 0.0 luminosity: 0.473748 From 8d951a63b42de6ae5edf6b5328e9668b7ca7dadf Mon Sep 17 00:00:00 2001 From: Radonirinaunimi Date: Fri, 1 Nov 2024 19:50:39 +0100 Subject: [PATCH 17/22] A separate `CI` to re-generate the commondata? --- .github/workflows/regenerate_data.yml | 36 +++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 .github/workflows/regenerate_data.yml diff --git a/.github/workflows/regenerate_data.yml b/.github/workflows/regenerate_data.yml new file mode 100644 index 0000000000..80745ab51f --- /dev/null +++ b/.github/workflows/regenerate_data.yml @@ -0,0 +1,36 @@ +# A CI script with github workflow to regenerate the data +name: Regenerate Commondata + +on: + pull_request: + types: [labeled] + +jobs: + build: + if: contains(github.event.pull_request.labels.*.name, 'regenerate-data') + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + with: + fetch-tags: true + fetch-depth: 0 + - name: Install NNPDF data package 🐍 + run: pip install ./nnpdf_data/'[filter]' + - name: Run the filters 📦 + shell: bash -l {0} + run: | + here=$PWD + readarray -d '' array < <(find ./nnpdf_data/nnpdf_data/commondata -name "filter.py" -print0) + for datname in "${array[@]}"; do dirpath=${datname%/*}; cd $dirpath; python filter.py || exit $?; cd $here; done + - name: Check for modified files 🛎️ + uses: tj-actions/verify-changed-files@v20 + id: verify-changed-files + - name: Commit the changed files 🛎️ + if: steps.verify-changed-files.outputs.files_changed == 'true' + shell: bash -l {0} + run: | + git config user.name "Regenerate Commondata" + git add nnpdf_data/nnpdf_data/commondata/* + git status + git commit -m "Automatically regenerated commondata from PR ${{ github.event.number }}, branch ${{ github.event.pull_request.head.ref }}." + git push origin "${{ github.event.pull_request.head.ref }}" From 3536ea046ade339ed1ab952815dd88f65bcf9424 Mon Sep 17 00:00:00 2001 From: Radonirinaunimi Date: Fri, 1 Nov 2024 21:07:07 +0100 Subject: [PATCH 18/22] Add `user.email` to `regenerate_data` CI --- .github/workflows/regenerate_data.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/regenerate_data.yml b/.github/workflows/regenerate_data.yml index 80745ab51f..d93667e572 100644 --- a/.github/workflows/regenerate_data.yml +++ b/.github/workflows/regenerate_data.yml @@ -30,6 +30,7 @@ jobs: shell: bash -l {0} run: | git config user.name "Regenerate Commondata" + git config user.email "<>" git add nnpdf_data/nnpdf_data/commondata/* git status git commit -m "Automatically regenerated commondata from PR ${{ github.event.number }}, branch ${{ github.event.pull_request.head.ref }}." From b3543c3ca7aca1ee39d2aa55a8d66a866ea8baec Mon Sep 17 00:00:00 2001 From: Radonirinaunimi Date: Fri, 1 Nov 2024 21:27:00 +0100 Subject: [PATCH 19/22] Fix stupid mistake (need to checkout branch first) --- .github/workflows/regenerate_data.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/regenerate_data.yml b/.github/workflows/regenerate_data.yml index d93667e572..d10b7805a1 100644 --- a/.github/workflows/regenerate_data.yml +++ b/.github/workflows/regenerate_data.yml @@ -12,8 +12,8 @@ jobs: steps: - uses: actions/checkout@v4 with: - fetch-tags: true fetch-depth: 0 + ref: ${{ github.event.pull_request.head.ref }} - name: Install NNPDF data package 🐍 run: pip install ./nnpdf_data/'[filter]' - name: Run the filters 📦 From 5f5d1cf12cd762043e6d3f884b605e8cbdd1ba81 Mon Sep 17 00:00:00 2001 From: Regenerate Commondata <> Date: Fri, 1 Nov 2024 20:36:48 +0000 Subject: [PATCH 20/22] Automatically regenerated commondata from PR 2099, branch check_newcd. --- .../CMS_1JET_8TEV/uncertainties.yaml | 57964 ++++++++-------- .../CMS_Z0_7TEV_DIMUON/uncertainties.yaml | 20598 +++--- 2 files changed, 39281 insertions(+), 39281 deletions(-) diff --git a/nnpdf_data/nnpdf_data/commondata/CMS_1JET_8TEV/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/CMS_1JET_8TEV/uncertainties.yaml index 71b01f8423..217bb0aad4 100644 --- a/nnpdf_data/nnpdf_data/commondata/CMS_1JET_8TEV/uncertainties.yaml +++ b/nnpdf_data/nnpdf_data/commondata/CMS_1JET_8TEV/uncertainties.yaml @@ -4022,191 +4022,191 @@ bins: RelativeStatFSR-: -2.65151356e+05 luminosity_uncertainty: 975.9256 uncorrelated_uncertainty: 375.356 -- art_sys_1: 1.16923923e-28 - art_sys_2: -6.70188151e-16 - art_sys_3: 4.80009676e-18 +- art_sys_1: -1.10820807e-28 + art_sys_2: 4.17339306e-17 + art_sys_3: 4.80009693e-18 art_sys_4: -2.13872286e+02 - art_sys_5: 2.04907207e-14 - art_sys_6: -2.57886686e-15 + art_sys_5: -3.24617037e-15 + art_sys_6: -1.36579165e-15 art_sys_7: 4.32504440e+01 - art_sys_8: 3.12872859e-15 + art_sys_8: 1.21825465e-15 art_sys_9: 1.59603845e+01 - art_sys_10: -1.20200171e-15 - art_sys_11: 1.35883766e-15 + art_sys_10: -2.98223071e-16 + art_sys_11: -7.42972837e-16 art_sys_12: 2.59780643e+00 - art_sys_13: 2.86187083e-17 - art_sys_14: 3.88515743e-02 - art_sys_15: 4.77232761e-16 - art_sys_16: 1.41001692e-02 - art_sys_17: 3.08293295e-16 - art_sys_18: 2.11243035e-16 - art_sys_19: 8.26532790e-03 - art_sys_20: 1.74413062e-17 - art_sys_21: 2.44868591e-16 - art_sys_22: -3.02136528e-17 + art_sys_13: -5.51000935e-16 + art_sys_14: -3.88515743e-02 + art_sys_15: -4.87993046e-16 + art_sys_16: -1.41001692e-02 + art_sys_17: 2.93330603e-16 + art_sys_18: 2.15356281e-16 + art_sys_19: -8.26532790e-03 + art_sys_20: 1.28301462e-16 + art_sys_21: 2.36421386e-16 + art_sys_22: -4.44623687e-17 art_sys_23: -1.58893902e-03 - art_sys_24: 3.28224499e-16 - art_sys_25: 4.62562783e-06 + art_sys_24: 3.29064220e-16 + art_sys_25: -4.62562783e-06 art_sys_26: -1.76953379e-06 - art_sys_27: 6.50574836e-18 - art_sys_28: 1.94212793e-18 - art_sys_29: -2.45387368e-16 - art_sys_30: -2.21439657e-17 - art_sys_31: 2.20214039e-18 - art_sys_32: -1.04886145e-19 - art_sys_33: 9.05529531e-20 - art_sys_34: 5.19483210e-19 - art_sys_35: 6.54649572e-19 - art_sys_36: -2.95352069e-18 - art_sys_37: 7.83468545e-07 - art_sys_38: 7.82491937e-19 - art_sys_39: 1.94998731e-17 - art_sys_40: -4.67761896e-18 - art_sys_41: 3.53930210e-08 - art_sys_42: 1.79569761e-18 - art_sys_43: 2.50452301e-08 - art_sys_44: -7.35025503e-19 - art_sys_45: 2.01286868e-17 - art_sys_46: 8.10367646e-20 - art_sys_47: 3.85920248e-20 - art_sys_48: -5.06334249e-09 - art_sys_49: 5.40249565e-18 - art_sys_50: 5.82315359e-20 - art_sys_51: -3.12240825e-19 - art_sys_52: -4.34584118e-10 - art_sys_53: -3.70445211e-18 - art_sys_54: 7.82699572e-20 - art_sys_55: 1.96636910e-10 - art_sys_56: 1.80803755e-18 - art_sys_57: -5.05075244e-20 - art_sys_58: 5.04117555e-22 - art_sys_59: 2.19398491e-21 - art_sys_60: -1.31695133e-19 - art_sys_61: -6.76519331e-22 - art_sys_62: -8.48266232e-25 - art_sys_63: -8.57026413e-24 - art_sys_64: -1.19658097e-25 - art_sys_65: 2.58362223e-24 - art_sys_66: 4.68365513e-22 - art_sys_67: -5.73567075e-25 - art_sys_68: -8.50643810e-25 - art_sys_69: -1.09701328e-19 - art_sys_70: 4.02406080e-11 - art_sys_71: -1.10821638e-18 - art_sys_72: -6.80817434e-20 - art_sys_73: 2.15784627e-21 - art_sys_74: 1.50405982e-18 - art_sys_75: 1.00638482e-23 - art_sys_76: -3.14627726e-23 - art_sys_77: 1.82951486e-23 - art_sys_78: -2.08677366e-24 - art_sys_79: -3.64752346e-22 - art_sys_80: 2.20448413e-18 - art_sys_81: -2.10961707e-24 - art_sys_82: -6.15202465e-25 - art_sys_83: 3.91709415e-25 - art_sys_84: 1.04996686e-21 - art_sys_85: 5.05930086e-25 - art_sys_86: 4.76318591e-26 - art_sys_87: 4.03898806e-24 - art_sys_88: -1.82854770e-25 - art_sys_89: -3.09933161e-26 - art_sys_90: 3.91579103e-13 - art_sys_91: -1.01979953e-13 - art_sys_92: -3.01268706e-21 - art_sys_93: -5.94910718e-20 - art_sys_94: 9.08220909e-21 - art_sys_95: 8.51605047e-14 - art_sys_96: 5.51001324e-26 - art_sys_97: 1.00650947e-20 - art_sys_98: -4.01584208e-14 - art_sys_99: 5.46944132e-20 - art_sys_100: -5.98079881e-22 - art_sys_101: 1.95310796e-14 - art_sys_102: -1.27827943e-26 - art_sys_103: 4.72645904e-22 - art_sys_104: 8.26996746e-15 - art_sys_105: 6.37981107e-27 - art_sys_106: -3.19950954e-15 - art_sys_107: 1.17125311e-19 - art_sys_108: 5.25681329e-23 - art_sys_109: -2.46813240e-21 - art_sys_110: 7.19896998e-27 - art_sys_111: -1.17712501e-15 - art_sys_112: 4.44299552e-23 - art_sys_113: -1.06788477e-26 - art_sys_114: 4.06903658e-16 - art_sys_115: -2.76317805e-24 - art_sys_116: -1.42700518e-21 - art_sys_117: -1.47706328e-27 - art_sys_118: 1.70150926e-16 - art_sys_119: -4.21047191e-25 - art_sys_120: -6.12748937e-17 - art_sys_121: 4.44065310e-23 - art_sys_122: -2.04522619e-17 - art_sys_123: -4.71039512e-24 - art_sys_124: 6.79145401e-18 - art_sys_125: -2.20987403e-18 - art_sys_126: -3.48267990e-23 - art_sys_127: -5.75342989e-19 - art_sys_128: 4.02091640e-24 - art_sys_129: -5.66141981e-25 - art_sys_130: 9.78758262e-24 - art_sys_131: 3.71009695e-24 - art_sys_132: -1.93998080e-19 - art_sys_133: -6.30503710e-25 - art_sys_134: -8.13309160e-23 - art_sys_135: -3.31246466e-20 - art_sys_136: -5.96318290e-23 - art_sys_137: 3.52070054e-21 - art_sys_138: 1.60247249e-23 - art_sys_139: 5.58366921e-23 - art_sys_140: 4.39090203e-22 - art_sys_141: -2.63232508e-23 - art_sys_142: -0.0 - art_sys_143: 8.20955997e-23 - art_sys_144: 2.40810867e-23 - art_sys_145: 1.27405645e-23 - art_sys_146: 1.10966724e-27 - art_sys_147: -1.36923408e-28 - art_sys_148: -5.00063031e-26 - art_sys_149: -5.36882041e-27 - art_sys_150: -4.28483084e-28 - art_sys_151: 4.69305914e-26 - art_sys_152: -3.06207035e-26 - art_sys_153: -1.58536606e-27 - art_sys_154: 1.07341464e-26 - art_sys_155: 2.00743303e-26 - art_sys_156: 7.19093647e-26 - art_sys_157: 7.71404096e-27 - art_sys_158: -0.0 - art_sys_159: 3.61475276e-24 - art_sys_160: 3.61475276e-24 - art_sys_161: -1.08071646e-25 - art_sys_162: 4.48433020e-38 - art_sys_163: 0.0 - art_sys_164: 2.86942120e-38 - art_sys_165: 4.85290770e-33 - art_sys_166: -3.16106463e-35 - art_sys_167: -1.47411359e-34 - art_sys_168: 9.77097586e-34 - art_sys_169: -1.23949937e-33 - art_sys_170: -3.14978762e-33 - art_sys_171: -4.18856246e-32 - art_sys_172: -4.98011385e-32 - art_sys_173: -4.77655893e-33 - art_sys_174: 2.04721538e-38 - art_sys_175: 3.06166551e-33 - art_sys_176: -1.23782861e-33 - art_sys_177: 7.26741624e-35 - art_sys_178: -7.89641026e-36 - art_sys_179: 9.67082606e-36 - art_sys_180: -9.71374807e-38 - art_sys_181: -3.05150144e-36 - art_sys_182: -3.89104882e-36 - art_sys_183: -1.12421113e-38 - art_sys_184: 3.54341707e-41 - art_sys_185: 7.69268759e-40 + art_sys_27: -6.48342833e-18 + art_sys_28: 7.59436757e-18 + art_sys_29: 1.55908559e-18 + art_sys_30: 7.83468545e-07 + art_sys_31: -2.09582786e-17 + art_sys_32: -1.06900367e-18 + art_sys_33: -3.53930210e-08 + art_sys_34: -2.50452301e-08 + art_sys_35: 1.92725043e-17 + art_sys_36: -9.94994330e-17 + art_sys_37: -9.12280624e-18 + art_sys_38: 1.03930482e-19 + art_sys_39: 2.38685200e-20 + art_sys_40: 2.36620320e-20 + art_sys_41: -1.93477737e-20 + art_sys_42: 1.40604011e-19 + art_sys_43: 9.57365848e-19 + art_sys_44: -1.74155188e-18 + art_sys_45: 3.26911964e-19 + art_sys_46: -4.15687445e-20 + art_sys_47: 6.79355279e-18 + art_sys_48: -5.06334251e-09 + art_sys_49: 6.06522116e-17 + art_sys_50: -2.87065758e-20 + art_sys_51: -5.68450767e-21 + art_sys_52: -1.35571739e-17 + art_sys_53: -4.34584123e-10 + art_sys_54: 1.56021155e-18 + art_sys_55: -1.96636910e-10 + art_sys_56: 9.92886078e-21 + art_sys_57: -5.06536593e-20 + art_sys_58: -1.34871735e-21 + art_sys_59: 4.02406089e-11 + art_sys_60: 6.34746134e-18 + art_sys_61: 1.35809659e-21 + art_sys_62: 3.50728982e-19 + art_sys_63: -3.96550241e-19 + art_sys_64: 1.18511135e-19 + art_sys_65: -1.00289264e-20 + art_sys_66: -3.11102007e-21 + art_sys_67: -1.14563723e-21 + art_sys_68: 8.49076281e-24 + art_sys_69: -7.67085912e-24 + art_sys_70: -6.21639127e-24 + art_sys_71: -5.91098981e-25 + art_sys_72: -2.79069305e-26 + art_sys_73: -3.86578555e-26 + art_sys_74: -1.47994129e-21 + art_sys_75: -4.23904305e-25 + art_sys_76: 2.79441382e-23 + art_sys_77: 6.50735998e-24 + art_sys_78: -3.20141270e-24 + art_sys_79: 3.75369290e-24 + art_sys_80: 4.91287717e-25 + art_sys_81: -5.42106397e-22 + art_sys_82: 1.43468543e-18 + art_sys_83: -1.01167603e-24 + art_sys_84: -1.48752228e-25 + art_sys_85: -2.65873480e-25 + art_sys_86: 6.60001714e-26 + art_sys_87: 4.26823052e-23 + art_sys_88: -2.09176252e-23 + art_sys_89: 2.25468669e-26 + art_sys_90: 5.12854672e-23 + art_sys_91: -3.91581148e-13 + art_sys_92: -1.29488862e-27 + art_sys_93: 2.83236546e-27 + art_sys_94: -1.81630867e-24 + art_sys_95: -4.85992545e-20 + art_sys_96: 1.01982036e-13 + art_sys_97: 2.52320462e-20 + art_sys_98: -7.83203560e-21 + art_sys_99: 8.51603903e-14 + art_sys_100: -6.99207635e-20 + art_sys_101: -4.01584007e-14 + art_sys_102: 5.48346319e-22 + art_sys_103: -1.55018466e-20 + art_sys_104: 1.95305849e-14 + art_sys_105: 6.75484090e-27 + art_sys_106: -8.26936866e-15 + art_sys_107: -3.99481436e-22 + art_sys_108: -8.62605586e-26 + art_sys_109: 1.18002409e-26 + art_sys_110: -6.89683647e-21 + art_sys_111: 3.19949323e-15 + art_sys_112: 1.13761609e-21 + art_sys_113: 1.02175790e-19 + art_sys_114: 2.00122436e-27 + art_sys_115: -1.17711157e-15 + art_sys_116: 3.07608785e-22 + art_sys_117: 2.11821543e-26 + art_sys_118: 4.07017777e-16 + art_sys_119: 1.35378645e-22 + art_sys_120: -1.38973080e-21 + art_sys_121: 3.67311664e-27 + art_sys_122: -1.70252279e-16 + art_sys_123: -1.73352946e-23 + art_sys_124: 6.12517955e-17 + art_sys_125: -9.05574590e-28 + art_sys_126: -3.95041578e-22 + art_sys_127: 8.17829748e-25 + art_sys_128: -2.04577465e-17 + art_sys_129: 6.85799309e-29 + art_sys_130: -7.73586722e-24 + art_sys_131: -8.68883668e-27 + art_sys_132: -6.79150503e-18 + art_sys_133: 1.48518306e-23 + art_sys_134: -6.30676983e-23 + art_sys_135: 2.21527595e-18 + art_sys_136: 1.46849045e-27 + art_sys_137: -5.79689316e-25 + art_sys_138: 5.75567525e-19 + art_sys_139: 1.25548846e-23 + art_sys_140: -1.30601690e-27 + art_sys_141: 3.94179447e-24 + art_sys_142: 1.94674614e-19 + art_sys_143: 3.58403711e-24 + art_sys_144: -6.11833026e-26 + art_sys_145: 3.26807348e-20 + art_sys_146: -1.99532658e-24 + art_sys_147: 2.26287331e-26 + art_sys_148: -7.79523296e-28 + art_sys_149: -3.30482891e-21 + art_sys_150: 9.51239039e-23 + art_sys_151: 5.14210119e-24 + art_sys_152: -8.98592393e-26 + art_sys_153: 1.31166550e-23 + art_sys_154: -8.25132242e-23 + art_sys_155: -4.79918006e-26 + art_sys_156: 0.0 + art_sys_157: -3.66439894e-23 + art_sys_158: 0.0 + art_sys_159: 5.83053132e-24 + art_sys_160: -7.58216696e-25 + art_sys_161: -6.52228487e-25 + art_sys_162: -6.52228487e-25 + art_sys_163: -6.73454864e-25 + art_sys_164: -6.73454864e-25 + art_sys_165: 7.59623122e-39 + art_sys_166: -2.52136727e-39 + art_sys_167: -0.0 + art_sys_168: -4.86703937e-34 + art_sys_169: 4.09179693e-33 + art_sys_170: -9.56063964e-33 + art_sys_171: -1.02986709e-31 + art_sys_172: -3.47965879e-33 + art_sys_173: -1.17436663e-33 + art_sys_174: -9.64481319e-35 + art_sys_175: -1.31065306e-34 + art_sys_176: 6.57268368e-36 + art_sys_177: 4.81322502e-38 + art_sys_178: -6.16641975e-38 + art_sys_179: 1.46224642e-38 + art_sys_180: 1.51633875e-37 + art_sys_181: -2.85170305e-37 + art_sys_182: 5.40502791e-36 + art_sys_183: 3.83014952e-38 + art_sys_184: 4.51300790e-40 + art_sys_185: -2.56359021e-41 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -4313,191 +4313,191 @@ bins: RelativeStatFSR-: -7.14236536e+00 luminosity_uncertainty: 975.9256 uncorrelated_uncertainty: 375.356 -- art_sys_1: 6.01421125e-29 - art_sys_2: -3.44744196e-16 - art_sys_3: 3.87656923e-18 +- art_sys_1: -5.70095765e-29 + art_sys_2: 2.14678973e-17 + art_sys_3: 3.87656932e-18 art_sys_4: -1.10015716e+02 - art_sys_5: 1.06351393e-14 - art_sys_6: -1.32347178e-15 + art_sys_5: -1.59360751e-15 + art_sys_6: -6.96706861e-16 art_sys_7: -7.94684215e+01 - art_sys_8: 9.59597361e-16 + art_sys_8: 2.16004538e-15 art_sys_9: -2.76420107e+01 - art_sys_10: -2.04493117e-16 - art_sys_11: -3.06305749e-15 + art_sys_10: 1.45388066e-15 + art_sys_11: -4.92240876e-16 art_sys_12: -7.40958162e+00 - art_sys_13: 4.12518191e-16 - art_sys_14: -1.27844108e-01 - art_sys_15: -5.52862981e-16 - art_sys_16: -4.68621367e-02 - art_sys_17: 2.77097212e-16 - art_sys_18: 1.56181044e-16 - art_sys_19: -3.06526079e-02 - art_sys_20: 2.42762199e-17 - art_sys_21: -4.81796372e-16 - art_sys_22: -8.44562481e-18 + art_sys_13: 8.29794439e-17 + art_sys_14: 1.27844108e-01 + art_sys_15: 5.09237314e-16 + art_sys_16: 4.68621367e-02 + art_sys_17: -9.80273932e-17 + art_sys_18: 1.42203602e-16 + art_sys_19: 3.06526079e-02 + art_sys_20: 1.85767415e-17 + art_sys_21: -4.74999540e-16 + art_sys_22: 2.00855939e-17 art_sys_23: 6.35192413e-03 - art_sys_24: -9.93865972e-16 - art_sys_25: -2.64716142e-05 + art_sys_24: -9.96946570e-16 + art_sys_25: 2.64716142e-05 art_sys_26: 1.10167488e-05 - art_sys_27: -2.25948164e-17 - art_sys_28: 6.04492415e-18 - art_sys_29: 5.09907899e-16 - art_sys_30: 2.44337580e-17 - art_sys_31: -3.63144560e-18 - art_sys_32: 5.41592627e-19 - art_sys_33: -1.72826605e-20 - art_sys_34: -9.37421665e-19 - art_sys_35: -1.26080754e-18 - art_sys_36: -2.98159643e-18 - art_sys_37: -4.46250602e-06 - art_sys_38: 2.59353516e-18 - art_sys_39: -9.99375548e-17 - art_sys_40: 2.36435069e-17 - art_sys_41: -3.35534777e-07 - art_sys_42: 1.37451260e-17 - art_sys_43: -1.58782566e-07 - art_sys_44: -3.28553328e-18 - art_sys_45: -8.05707877e-17 - art_sys_46: -4.62929129e-19 - art_sys_47: 2.08737801e-19 - art_sys_48: 3.81972018e-08 - art_sys_49: -4.06741747e-17 - art_sys_50: -1.00923191e-19 - art_sys_51: 4.41351200e-19 - art_sys_52: 2.92226891e-09 - art_sys_53: 2.48048093e-17 - art_sys_54: -7.76004679e-19 - art_sys_55: -1.33373127e-09 - art_sys_56: -1.04514897e-17 - art_sys_57: 9.82296892e-20 - art_sys_58: 6.94355961e-20 - art_sys_59: 8.74127477e-21 - art_sys_60: -5.48216693e-19 - art_sys_61: 5.80334306e-21 - art_sys_62: -5.38140205e-22 - art_sys_63: 3.96061932e-24 - art_sys_64: 4.27716952e-23 - art_sys_65: -3.61631763e-23 - art_sys_66: 5.57356481e-21 - art_sys_67: 1.33127805e-24 - art_sys_68: 1.94268606e-24 - art_sys_69: 3.57785568e-19 - art_sys_70: -2.77656620e-10 - art_sys_71: 4.94195162e-18 - art_sys_72: 1.15798784e-18 - art_sys_73: -3.56323987e-20 - art_sys_74: -7.55311863e-18 - art_sys_75: -3.57568865e-23 - art_sys_76: 1.09928302e-22 - art_sys_77: -9.01013756e-23 - art_sys_78: 1.04560112e-23 - art_sys_79: 1.46825022e-21 - art_sys_80: -9.38641803e-18 - art_sys_81: 1.21133112e-23 - art_sys_82: 2.43263014e-24 - art_sys_83: -1.58063617e-24 - art_sys_84: -6.18435111e-21 - art_sys_85: -2.50324642e-24 - art_sys_86: -3.10813749e-25 - art_sys_87: -2.14621377e-23 - art_sys_88: 3.95482205e-25 - art_sys_89: 3.00994872e-26 - art_sys_90: -1.61620771e-12 - art_sys_91: 6.44905348e-13 - art_sys_92: 1.52972617e-20 - art_sys_93: 1.81070536e-19 - art_sys_94: -5.02025178e-20 - art_sys_95: -4.41280320e-13 - art_sys_96: -1.76257902e-25 - art_sys_97: -5.63115946e-20 - art_sys_98: 2.18613969e-13 - art_sys_99: -3.73538322e-19 - art_sys_100: 3.08596313e-21 - art_sys_101: -1.09592854e-13 - art_sys_102: -3.86536697e-27 - art_sys_103: -2.99975670e-21 - art_sys_104: -4.63846446e-14 - art_sys_105: -1.22986411e-25 - art_sys_106: 1.83569479e-14 - art_sys_107: -6.09937958e-19 - art_sys_108: -3.02101756e-22 - art_sys_109: 1.47034877e-20 - art_sys_110: -4.78680317e-26 - art_sys_111: 6.77691389e-15 - art_sys_112: -2.79234603e-22 - art_sys_113: 3.94948895e-26 - art_sys_114: -2.36481681e-15 - art_sys_115: -8.91108873e-24 - art_sys_116: 8.36224018e-21 - art_sys_117: 1.45740288e-27 - art_sys_118: -9.93702473e-16 - art_sys_119: -1.65823106e-24 - art_sys_120: 3.59132751e-16 - art_sys_121: -2.52234345e-22 - art_sys_122: 1.20387784e-16 - art_sys_123: 2.76925558e-23 - art_sys_124: -4.00467042e-17 - art_sys_125: 1.30556003e-17 - art_sys_126: 1.93330831e-22 - art_sys_127: 3.40385993e-18 - art_sys_128: -2.36769821e-23 - art_sys_129: 3.36989665e-24 - art_sys_130: -5.80419925e-23 - art_sys_131: -2.19990484e-23 - art_sys_132: 1.14842174e-18 - art_sys_133: 4.56806557e-24 - art_sys_134: 4.81772621e-22 - art_sys_135: 1.96270819e-19 - art_sys_136: 3.53348227e-22 - art_sys_137: -2.08743200e-20 - art_sys_138: -9.50059956e-23 - art_sys_139: -3.30993887e-22 - art_sys_140: -2.07018840e-21 - art_sys_141: 1.56052998e-22 - art_sys_142: 0.0 - art_sys_143: -4.85845276e-22 - art_sys_144: -1.42568493e-22 - art_sys_145: -7.55375607e-23 - art_sys_146: -4.27884404e-27 - art_sys_147: -6.16187997e-28 - art_sys_148: 2.63011235e-25 - art_sys_149: 5.99667419e-26 - art_sys_150: 5.29772484e-27 - art_sys_151: -2.77971617e-25 - art_sys_152: 1.80759626e-25 - art_sys_153: 9.43824154e-27 - art_sys_154: -6.36408131e-26 - art_sys_155: -1.19059721e-25 - art_sys_156: -4.26280474e-25 - art_sys_157: -4.57135912e-26 - art_sys_158: 0.0 - art_sys_159: -2.14459799e-23 - art_sys_160: -2.14459799e-23 - art_sys_161: 6.41705457e-25 - art_sys_162: -2.66215539e-37 - art_sys_163: -0.0 - art_sys_164: -1.70328951e-37 - art_sys_165: -2.35121319e-32 - art_sys_166: 4.39505854e-33 - art_sys_167: -7.46614183e-34 - art_sys_168: -4.57773317e-33 - art_sys_169: 1.80718312e-33 - art_sys_170: 2.54076390e-32 - art_sys_171: 2.33183014e-31 - art_sys_172: -3.16525807e-31 - art_sys_173: 4.91182268e-32 - art_sys_174: -1.21371220e-37 - art_sys_175: -1.12727309e-32 - art_sys_176: 1.11307495e-32 - art_sys_177: -1.86620119e-33 - art_sys_178: -1.60705548e-34 - art_sys_179: -4.60479502e-36 - art_sys_180: 1.28179140e-35 - art_sys_181: 4.43128816e-36 - art_sys_182: 8.90610297e-36 - art_sys_183: 6.16364140e-38 - art_sys_184: -2.73430315e-40 - art_sys_185: -4.57435169e-39 + art_sys_27: 2.24938654e-17 + art_sys_28: -3.00087740e-19 + art_sys_29: -1.22241510e-18 + art_sys_30: -4.46250602e-06 + art_sys_31: 9.95240601e-17 + art_sys_32: 4.52061924e-18 + art_sys_33: 3.35534777e-07 + art_sys_34: 1.58782566e-07 + art_sys_35: -7.78867568e-17 + art_sys_36: -1.21002844e-17 + art_sys_37: 5.38994049e-18 + art_sys_38: -2.62339785e-19 + art_sys_39: -3.58935625e-20 + art_sys_40: -2.87636903e-19 + art_sys_41: -6.19181494e-19 + art_sys_42: -2.58469610e-19 + art_sys_43: 9.73241925e-19 + art_sys_44: -1.25117629e-18 + art_sys_45: 8.65997096e-19 + art_sys_46: 8.22284198e-21 + art_sys_47: -5.03847860e-17 + art_sys_48: 3.81972019e-08 + art_sys_49: -4.57276601e-16 + art_sys_50: -9.24875441e-20 + art_sys_51: -3.32983733e-19 + art_sys_52: 1.05419517e-16 + art_sys_53: 2.92226894e-09 + art_sys_54: -1.11833286e-17 + art_sys_55: 1.33373127e-09 + art_sys_56: -3.19163464e-18 + art_sys_57: -1.56871865e-19 + art_sys_58: -6.18068838e-22 + art_sys_59: -2.77656628e-10 + art_sys_60: -4.42566255e-17 + art_sys_61: 1.02001678e-20 + art_sys_62: -1.68671661e-18 + art_sys_63: 1.77191486e-18 + art_sys_64: -1.50518239e-19 + art_sys_65: 2.40204116e-20 + art_sys_66: 1.53198970e-20 + art_sys_67: 9.57213932e-21 + art_sys_68: -1.98678126e-23 + art_sys_69: -3.64342828e-24 + art_sys_70: -1.25226485e-25 + art_sys_71: 7.59431895e-25 + art_sys_72: 2.17103282e-25 + art_sys_73: 1.34071082e-27 + art_sys_74: -2.51380142e-21 + art_sys_75: 6.00136131e-25 + art_sys_76: -1.28515007e-22 + art_sys_77: -3.94510458e-23 + art_sys_78: 1.69170668e-23 + art_sys_79: -1.54790302e-24 + art_sys_80: -3.30284827e-24 + art_sys_81: 3.43624951e-21 + art_sys_82: -7.73777514e-18 + art_sys_83: 3.91965443e-24 + art_sys_84: 7.00386102e-25 + art_sys_85: 1.17862547e-24 + art_sys_86: -3.04446440e-25 + art_sys_87: -2.35582556e-22 + art_sys_88: 1.20138815e-22 + art_sys_89: -6.94663908e-26 + art_sys_90: -3.02636031e-22 + art_sys_91: 1.61621500e-12 + art_sys_92: 1.00676010e-26 + art_sys_93: -1.58114535e-26 + art_sys_94: 1.08673521e-23 + art_sys_95: 2.45981973e-19 + art_sys_96: -6.44913943e-13 + art_sys_97: -1.73142727e-19 + art_sys_98: 3.88285507e-20 + art_sys_99: -4.41279664e-13 + art_sys_100: 3.81603069e-19 + art_sys_101: 2.18613893e-13 + art_sys_102: -2.89407650e-21 + art_sys_103: 9.38863090e-20 + art_sys_104: -1.09590226e-13 + art_sys_105: -9.99142147e-26 + art_sys_106: 4.63813100e-14 + art_sys_107: 2.81521635e-21 + art_sys_108: 5.41062410e-25 + art_sys_109: -6.51480438e-26 + art_sys_110: 4.03195624e-20 + art_sys_111: -1.83568185e-14 + art_sys_112: -6.93847964e-21 + art_sys_113: -5.81625690e-19 + art_sys_114: -5.52189843e-27 + art_sys_115: 6.77681429e-15 + art_sys_116: -1.81104794e-21 + art_sys_117: -1.18533783e-25 + art_sys_118: -2.36550367e-15 + art_sys_119: -8.03931737e-22 + art_sys_120: 8.14413936e-21 + art_sys_121: -2.16141996e-26 + art_sys_122: 9.94310485e-16 + art_sys_123: 1.08766004e-22 + art_sys_124: -3.59017030e-16 + art_sys_125: 3.20668035e-27 + art_sys_126: 2.33922264e-21 + art_sys_127: -4.66918585e-24 + art_sys_128: 1.20429585e-16 + art_sys_129: -8.68192707e-28 + art_sys_130: 4.58855143e-23 + art_sys_131: 5.06836258e-26 + art_sys_132: 4.00497232e-17 + art_sys_133: -8.80471896e-23 + art_sys_134: 3.67769777e-22 + art_sys_135: -1.30880167e-17 + art_sys_136: -8.73563172e-27 + art_sys_137: 3.43068096e-24 + art_sys_138: -3.40525663e-18 + art_sys_139: -7.44170041e-23 + art_sys_140: 7.63446000e-27 + art_sys_141: -2.31042655e-23 + art_sys_142: -1.15244184e-18 + art_sys_143: -2.12388877e-23 + art_sys_144: 3.62175026e-25 + art_sys_145: -1.93648317e-19 + art_sys_146: 1.18257710e-23 + art_sys_147: -1.34087115e-25 + art_sys_148: 4.57123362e-27 + art_sys_149: 1.95952941e-20 + art_sys_150: -5.64012130e-22 + art_sys_151: -3.04745698e-23 + art_sys_152: 5.32730799e-25 + art_sys_153: -7.77488374e-23 + art_sys_154: 4.79157317e-22 + art_sys_155: 2.84517715e-25 + art_sys_156: -0.0 + art_sys_157: 2.17331870e-22 + art_sys_158: -0.0 + art_sys_159: -3.45556844e-23 + art_sys_160: 4.49802994e-24 + art_sys_161: 3.86674378e-24 + art_sys_162: 3.86674378e-24 + art_sys_163: 3.99204435e-24 + art_sys_164: 3.99204435e-24 + art_sys_165: -4.50290620e-38 + art_sys_166: 1.49462690e-38 + art_sys_167: 0.0 + art_sys_168: 3.77926758e-33 + art_sys_169: -1.00176050e-32 + art_sys_170: 1.11771564e-33 + art_sys_171: 2.85909530e-31 + art_sys_172: -2.91222800e-32 + art_sys_173: -3.05521325e-33 + art_sys_174: 1.79384598e-33 + art_sys_175: 1.31867217e-34 + art_sys_176: -1.88957411e-36 + art_sys_177: -1.69239834e-37 + art_sys_178: -2.50752108e-37 + art_sys_179: -8.66920761e-38 + art_sys_180: -8.98732952e-37 + art_sys_181: 3.65512558e-37 + art_sys_182: -2.36664533e-36 + art_sys_183: -1.49637596e-37 + art_sys_184: 1.04695491e-39 + art_sys_185: 1.70078924e-40 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -4604,191 +4604,191 @@ bins: RelativeStatFSR-: -3.87533944e+00 luminosity_uncertainty: 4.93402000e+02 uncorrelated_uncertainty: 189.77 -- art_sys_1: 5.09129539e-30 - art_sys_2: -2.91896100e-17 - art_sys_3: 6.12449959e-19 +- art_sys_1: -4.82797852e-30 + art_sys_2: 1.81769426e-18 + art_sys_3: 6.12449966e-19 art_sys_4: -9.31506862e+00 - art_sys_5: -2.16537374e-15 - art_sys_6: -1.12764991e-16 + art_sys_5: -3.20052311e-15 + art_sys_6: -5.99034093e-17 art_sys_7: -7.79292603e+01 - art_sys_8: -2.49852553e-15 + art_sys_8: 1.47065956e-16 art_sys_9: 2.67856473e+01 - art_sys_10: 2.75580061e-16 - art_sys_11: -8.81354276e-16 + art_sys_10: 1.14142003e-15 + art_sys_11: -3.64221873e-16 art_sys_12: 1.13989659e+01 - art_sys_13: -4.43894707e-16 - art_sys_14: 4.38121108e-01 - art_sys_15: 8.89201463e-16 - art_sys_16: 1.22818175e-01 - art_sys_17: 4.18964915e-17 - art_sys_18: -2.40854122e-16 - art_sys_19: 9.58547906e-02 - art_sys_20: 1.03076847e-16 - art_sys_21: 8.29092278e-16 - art_sys_22: 4.77259800e-17 + art_sys_13: -2.02004877e-16 + art_sys_14: -4.38121108e-01 + art_sys_15: -8.17515981e-16 + art_sys_16: -1.22818175e-01 + art_sys_17: -1.02112981e-16 + art_sys_18: -2.14759246e-16 + art_sys_19: -9.58547906e-02 + art_sys_20: 8.03026883e-17 + art_sys_21: 7.81512348e-16 + art_sys_22: 1.01515724e-17 art_sys_23: -2.09371166e-02 - art_sys_24: 1.96115101e-15 - art_sys_25: 7.64966903e-05 + art_sys_24: 1.96914065e-15 + art_sys_25: -7.64966903e-05 art_sys_26: -4.05814976e-05 - art_sys_27: 3.98114180e-17 - art_sys_28: -7.14686716e-17 - art_sys_29: 1.37364650e-16 - art_sys_30: -6.00600896e-18 - art_sys_31: 3.64593206e-18 - art_sys_32: -1.84424624e-18 - art_sys_33: 1.71802410e-19 - art_sys_34: -8.19207391e-19 - art_sys_35: -7.10565443e-19 - art_sys_36: -5.23924869e-18 - art_sys_37: 1.55809470e-05 - art_sys_38: 7.86720819e-19 - art_sys_39: 3.39716384e-16 - art_sys_40: -8.08669390e-17 - art_sys_41: 1.27380061e-06 - art_sys_42: 5.50218963e-19 - art_sys_43: 6.04373986e-07 - art_sys_44: 8.12040246e-20 - art_sys_45: 2.58228123e-16 - art_sys_46: 1.61036866e-18 - art_sys_47: -4.50750207e-20 + art_sys_27: -3.94908585e-17 + art_sys_28: -7.38354160e-17 + art_sys_29: 7.99382089e-19 + art_sys_30: 1.55809470e-05 + art_sys_31: -3.43249509e-16 + art_sys_32: -5.82653887e-18 + art_sys_33: -1.27380061e-06 + art_sys_34: -6.04373986e-07 + art_sys_35: 2.47339907e-16 + art_sys_36: 2.15215430e-16 + art_sys_37: 3.53753152e-18 + art_sys_38: -3.91629556e-19 + art_sys_39: 1.02318595e-20 + art_sys_40: -6.92057556e-20 + art_sys_41: -2.62239283e-19 + art_sys_42: 1.57471827e-20 + art_sys_43: -3.75796697e-19 + art_sys_44: 2.12379594e-18 + art_sys_45: -7.46776969e-19 + art_sys_46: 1.06489194e-19 + art_sys_47: 1.91379585e-16 art_sys_48: -1.45843387e-07 - art_sys_49: 1.56642581e-16 - art_sys_50: 3.87144107e-20 - art_sys_51: -1.03283409e-19 - art_sys_52: -1.21792597e-08 - art_sys_53: -9.35954200e-17 - art_sys_54: 3.40202376e-18 - art_sys_55: 5.23360485e-09 - art_sys_56: 3.68601364e-17 - art_sys_57: -1.92139108e-19 - art_sys_58: -2.18545232e-19 - art_sys_59: -5.06972963e-20 - art_sys_60: 3.69394090e-19 - art_sys_61: -2.16297925e-20 - art_sys_62: 1.67559917e-21 - art_sys_63: -2.06396229e-22 - art_sys_64: -1.19335735e-22 - art_sys_65: 1.46116205e-22 - art_sys_66: 5.32843785e-21 - art_sys_67: -6.63631327e-24 - art_sys_68: -1.00017247e-23 - art_sys_69: -1.40318803e-18 - art_sys_70: 1.12523245e-09 - art_sys_71: -1.97928071e-17 - art_sys_72: -5.82227695e-18 - art_sys_73: 1.63946568e-19 - art_sys_74: 3.01818160e-17 - art_sys_75: 1.16372248e-22 - art_sys_76: -4.47666304e-22 - art_sys_77: 3.15510889e-22 - art_sys_78: -4.46965933e-23 - art_sys_79: -5.79634112e-21 - art_sys_80: 3.66124703e-17 - art_sys_81: -4.60481272e-23 - art_sys_82: -9.45322419e-24 - art_sys_83: 6.24229290e-24 - art_sys_84: 2.27639846e-20 - art_sys_85: 9.73804969e-24 - art_sys_86: 1.13847316e-24 - art_sys_87: 7.85227130e-23 - art_sys_88: -1.22747102e-24 - art_sys_89: -6.40459657e-26 - art_sys_90: 6.36667723e-12 - art_sys_91: -2.34297856e-12 - art_sys_92: -5.97671877e-20 - art_sys_93: -7.58230815e-19 - art_sys_94: 1.95581635e-19 - art_sys_95: 1.74611950e-12 - art_sys_96: 9.23093811e-25 - art_sys_97: 2.20111892e-19 - art_sys_98: -8.37715233e-13 - art_sys_99: 1.45815794e-18 - art_sys_100: -1.20834461e-20 - art_sys_101: 4.26908094e-13 - art_sys_102: -4.17022100e-26 - art_sys_103: 1.16982377e-20 - art_sys_104: 1.80305484e-13 - art_sys_105: 4.80598186e-25 - art_sys_106: -7.15433485e-14 - art_sys_107: 2.40899661e-18 - art_sys_108: 1.17700569e-21 - art_sys_109: -5.78469326e-20 - art_sys_110: 1.91048007e-25 - art_sys_111: -2.64879593e-14 - art_sys_112: 1.09327136e-21 - art_sys_113: -1.40537552e-25 - art_sys_114: 9.24225959e-15 - art_sys_115: 2.79593994e-23 - art_sys_116: -3.27887499e-20 - art_sys_117: -6.13162355e-27 - art_sys_118: 3.89134379e-15 - art_sys_119: 1.68163624e-24 - art_sys_120: -1.40685745e-15 - art_sys_121: 9.88004257e-22 - art_sys_122: -4.71964963e-16 - art_sys_123: -1.08794175e-22 - art_sys_124: 1.57081529e-16 - art_sys_125: -5.12177449e-17 - art_sys_126: -7.57467873e-22 - art_sys_127: -1.33587868e-17 - art_sys_128: 9.29673852e-23 - art_sys_129: -1.32417627e-23 - art_sys_130: 2.27885759e-22 - art_sys_131: 8.63514353e-23 - art_sys_132: -4.50731788e-18 - art_sys_133: -1.77255817e-23 - art_sys_134: -1.89112014e-21 - art_sys_135: -7.70454799e-19 - art_sys_136: -1.38708841e-21 - art_sys_137: 8.19503711e-20 - art_sys_138: 3.72985998e-22 - art_sys_139: 1.29943998e-21 - art_sys_140: 7.49024164e-21 - art_sys_141: -6.12584686e-22 - art_sys_142: -0.0 - art_sys_143: 1.90737757e-21 - art_sys_144: 5.59746697e-22 - art_sys_145: 2.96483557e-22 - art_sys_146: 1.61177288e-26 - art_sys_147: 2.11835882e-27 - art_sys_148: -1.02732036e-24 - art_sys_149: -2.42900021e-25 - art_sys_150: -2.11484697e-26 - art_sys_151: 1.09102745e-24 - art_sys_152: -7.08336545e-25 - art_sys_153: -3.69438073e-26 - art_sys_154: 2.49889969e-25 - art_sys_155: 4.67344888e-25 - art_sys_156: 1.67342459e-24 - art_sys_157: 1.79412898e-25 - art_sys_158: -0.0 - art_sys_159: 8.41959148e-23 - art_sys_160: 8.41959148e-23 - art_sys_161: -2.51894599e-24 - art_sys_162: 1.04502487e-36 - art_sys_163: 0.0 - art_sys_164: 6.68630798e-37 - art_sys_165: 7.02661864e-32 - art_sys_166: -1.47430396e-32 - art_sys_167: 3.15951675e-33 - art_sys_168: 1.56842782e-32 - art_sys_169: -6.40277557e-33 - art_sys_170: -9.31704348e-32 - art_sys_171: -5.35385126e-31 - art_sys_172: 5.79034890e-31 - art_sys_173: -1.91271009e-31 - art_sys_174: 4.76419701e-37 - art_sys_175: 3.98131459e-32 - art_sys_176: -4.38842700e-32 - art_sys_177: 7.71983466e-33 - art_sys_178: 5.98963996e-34 - art_sys_179: 9.67437904e-35 - art_sys_180: -4.93487375e-35 - art_sys_181: -1.62480190e-35 - art_sys_182: -3.63849206e-35 - art_sys_183: -2.49697208e-37 - art_sys_184: 1.01485279e-39 - art_sys_185: 1.79561342e-38 + art_sys_49: 1.74603641e-15 + art_sys_50: 9.19879247e-20 + art_sys_51: 6.87772636e-19 + art_sys_52: -4.03609738e-16 + art_sys_53: -1.21792598e-08 + art_sys_54: 4.62666128e-17 + art_sys_55: -5.23360485e-09 + art_sys_56: 1.54571231e-17 + art_sys_57: -7.32529453e-20 + art_sys_58: -6.81766471e-21 + art_sys_59: 1.12523248e-09 + art_sys_60: 1.79277458e-16 + art_sys_61: -4.51954853e-20 + art_sys_62: 6.04680548e-18 + art_sys_63: -7.77303165e-18 + art_sys_64: 3.69342570e-19 + art_sys_65: -9.39763218e-20 + art_sys_66: -2.97937644e-20 + art_sys_67: -3.42086410e-20 + art_sys_68: 7.66897230e-23 + art_sys_69: -2.01825118e-23 + art_sys_70: -1.04389380e-23 + art_sys_71: -4.44218773e-24 + art_sys_72: -4.58785093e-25 + art_sys_73: -4.25694504e-25 + art_sys_74: 1.57410386e-22 + art_sys_75: -1.93247859e-24 + art_sys_76: 5.14213333e-22 + art_sys_77: 1.50297354e-22 + art_sys_78: -6.27224579e-23 + art_sys_79: 7.83115547e-24 + art_sys_80: 1.01721124e-23 + art_sys_81: -1.24778762e-20 + art_sys_82: 2.91118146e-17 + art_sys_83: -1.55855340e-23 + art_sys_84: -2.25547652e-24 + art_sys_85: -4.75316063e-24 + art_sys_86: 1.16300989e-24 + art_sys_87: 9.06961320e-22 + art_sys_88: -4.68066977e-22 + art_sys_89: 2.99607793e-25 + art_sys_90: 1.18853288e-21 + art_sys_91: -6.36670719e-12 + art_sys_92: -1.87952525e-26 + art_sys_93: 5.95827287e-26 + art_sys_94: -4.26012101e-23 + art_sys_95: -9.79584547e-19 + art_sys_96: 2.34301248e-12 + art_sys_97: 8.28218779e-19 + art_sys_98: -1.44169002e-19 + art_sys_99: 1.74611696e-12 + art_sys_100: -1.46381076e-18 + art_sys_101: -8.37714979e-13 + art_sys_102: 1.09140033e-20 + art_sys_103: -3.81961866e-19 + art_sys_104: 4.26897648e-13 + art_sys_105: 3.92193818e-25 + art_sys_106: -1.80292498e-13 + art_sys_107: -1.09944291e-20 + art_sys_108: -2.08136342e-24 + art_sys_109: 2.52996041e-25 + art_sys_110: -1.57929993e-19 + art_sys_111: 7.15428376e-14 + art_sys_112: 2.67523781e-20 + art_sys_113: 2.26421616e-18 + art_sys_114: 1.89442257e-26 + art_sys_115: -2.64875915e-14 + art_sys_116: 7.10122342e-21 + art_sys_117: 4.91370864e-25 + art_sys_118: 9.24495335e-15 + art_sys_119: 3.14552399e-21 + art_sys_120: -3.19088113e-20 + art_sys_121: 7.63105760e-26 + art_sys_122: -3.89372241e-15 + art_sys_123: -4.34194386e-22 + art_sys_124: 1.40640330e-15 + art_sys_125: -1.52431393e-26 + art_sys_126: -9.18508687e-21 + art_sys_127: 1.80676745e-23 + art_sys_128: -4.72128779e-16 + art_sys_129: 1.05280158e-26 + art_sys_130: -1.80103802e-22 + art_sys_131: -1.97302098e-25 + art_sys_132: -1.57093201e-16 + art_sys_133: 3.45658367e-22 + art_sys_134: -1.44219444e-21 + art_sys_135: 5.13448201e-17 + art_sys_136: 3.47650083e-26 + art_sys_137: -1.34725557e-23 + art_sys_138: 1.33642439e-17 + art_sys_139: 2.92144390e-22 + art_sys_140: -2.99828996e-26 + art_sys_141: 9.07886597e-23 + art_sys_142: 4.52308800e-18 + art_sys_143: 8.33662841e-23 + art_sys_144: -1.42136943e-24 + art_sys_145: 7.60159757e-19 + art_sys_146: -4.64190860e-23 + art_sys_147: 5.26376516e-25 + art_sys_148: -1.79173772e-26 + art_sys_149: -7.69284601e-20 + art_sys_150: 2.21422448e-21 + art_sys_151: 1.19649076e-22 + art_sys_152: -2.09137479e-24 + art_sys_153: 3.05232300e-22 + art_sys_154: -1.89205150e-21 + art_sys_155: -1.11687210e-24 + art_sys_156: 0.0 + art_sys_157: -8.53174721e-22 + art_sys_158: 0.0 + art_sys_159: 1.35669632e-22 + art_sys_160: -1.76565035e-23 + art_sys_161: -1.51792421e-23 + art_sys_162: -1.51792421e-23 + art_sys_163: -1.56722570e-23 + art_sys_164: -1.56722570e-23 + art_sys_165: 1.76776590e-37 + art_sys_166: -5.86764420e-38 + art_sys_167: -0.0 + art_sys_168: -1.39197665e-32 + art_sys_169: 3.90908969e-32 + art_sys_170: -1.00106533e-32 + art_sys_171: -9.32917577e-31 + art_sys_172: 8.96196330e-32 + art_sys_173: 6.85698669e-33 + art_sys_174: -6.80007379e-33 + art_sys_175: -7.03991744e-34 + art_sys_176: -9.87583049e-37 + art_sys_177: 7.95372729e-37 + art_sys_178: 8.85313350e-37 + art_sys_179: 3.40293282e-37 + art_sys_180: 3.52846639e-36 + art_sys_181: -7.81302516e-37 + art_sys_182: 6.14291319e-36 + art_sys_183: 4.16384161e-37 + art_sys_184: -3.29169823e-39 + art_sys_185: -6.60087400e-40 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -4895,191 +4895,191 @@ bins: RelativeStatFSR-: -1.92086065e+00 luminosity_uncertainty: 2.24647540e+02 uncorrelated_uncertainty: 86.4029 -- art_sys_1: -7.13382227e-30 - art_sys_2: 4.08911288e-17 - art_sys_3: -4.08972051e-19 +- art_sys_1: 6.76188607e-30 + art_sys_2: -2.54637079e-18 + art_sys_3: -4.08972061e-19 art_sys_4: 1.30492895e+01 - art_sys_5: -2.93050409e-15 - art_sys_6: 1.56905494e-16 + art_sys_5: -1.47489371e-15 + art_sys_6: 8.23637276e-17 art_sys_7: -1.69691686e+01 - art_sys_8: 1.19715023e-14 + art_sys_8: 1.22797639e-14 art_sys_9: 4.73628524e+01 - art_sys_10: 4.13486748e-16 - art_sys_11: 6.70440720e-16 + art_sys_10: 1.30708470e-16 + art_sys_11: -4.76378697e-16 art_sys_12: -1.14751957e+01 - art_sys_13: 1.67400865e-16 - art_sys_14: -4.10769516e-01 - art_sys_15: -9.89716961e-16 - art_sys_16: -2.65060630e-01 - art_sys_17: -2.54295235e-18 - art_sys_18: 2.58582782e-16 - art_sys_19: -1.86916404e-01 - art_sys_20: -6.98205293e-17 - art_sys_21: -7.40798950e-16 - art_sys_22: -1.38828950e-17 + art_sys_13: 1.97183640e-16 + art_sys_14: 4.10769516e-01 + art_sys_15: 1.05824724e-15 + art_sys_16: 2.65060630e-01 + art_sys_17: -4.89144981e-16 + art_sys_18: 1.96555912e-16 + art_sys_19: 1.86916404e-01 + art_sys_20: -2.69303302e-16 + art_sys_21: -6.65801099e-16 + art_sys_22: 3.35492493e-17 art_sys_23: 4.93383896e-02 - art_sys_24: -2.51571339e-15 - art_sys_25: -2.74527893e-04 + art_sys_24: -2.53110246e-15 + art_sys_25: 2.74527893e-04 art_sys_26: 1.18775915e-04 - art_sys_27: -5.64170855e-17 - art_sys_28: 2.50224757e-16 - art_sys_29: 2.86813925e-16 - art_sys_30: -8.50139011e-18 - art_sys_31: -4.50484373e-18 - art_sys_32: 6.12598075e-18 - art_sys_33: -2.47584718e-19 - art_sys_34: -3.21121210e-19 - art_sys_35: 1.41676718e-20 - art_sys_36: 2.53941960e-17 - art_sys_37: -5.14524319e-05 - art_sys_38: 6.23235873e-19 - art_sys_39: -8.97137371e-16 - art_sys_40: 2.58589209e-16 - art_sys_41: -4.30821300e-06 - art_sys_42: 1.18644133e-18 - art_sys_43: -1.98048140e-06 - art_sys_44: -2.12841662e-19 - art_sys_45: -6.40421795e-16 - art_sys_46: -5.50736370e-18 - art_sys_47: -5.18394702e-20 - art_sys_48: 5.04535562e-07 - art_sys_49: -5.38428614e-16 - art_sys_50: 5.25069654e-19 - art_sys_51: -2.07358951e-18 - art_sys_52: 3.86240908e-08 - art_sys_53: 3.07646631e-16 - art_sys_54: -1.16282367e-17 - art_sys_55: -1.79167842e-08 - art_sys_56: -1.19766829e-16 - art_sys_57: 8.87077193e-19 - art_sys_58: 7.21723984e-19 - art_sys_59: 1.73581367e-19 - art_sys_60: 4.21065072e-19 - art_sys_61: 6.61759899e-20 - art_sys_62: -5.08163888e-21 - art_sys_63: 1.10336235e-21 - art_sys_64: 2.98176064e-22 - art_sys_65: -4.81626733e-22 - art_sys_66: -9.54511851e-21 - art_sys_67: 2.23682666e-23 - art_sys_68: 3.37909299e-23 - art_sys_69: 4.68219326e-18 - art_sys_70: -3.78340197e-09 - art_sys_71: 6.72603447e-17 - art_sys_72: 1.98204378e-17 - art_sys_73: -6.55946419e-19 - art_sys_74: -1.02342686e-16 - art_sys_75: -3.51912717e-22 - art_sys_76: 1.46790219e-21 - art_sys_77: -1.16171753e-21 - art_sys_78: 1.50048546e-22 - art_sys_79: 1.98441584e-20 - art_sys_80: -1.26325767e-16 - art_sys_81: 1.69241353e-22 - art_sys_82: 3.24825750e-23 - art_sys_83: -2.13770098e-23 - art_sys_84: -8.56835191e-20 - art_sys_85: -3.45659226e-23 - art_sys_86: -4.33856557e-24 - art_sys_87: -2.71792829e-22 - art_sys_88: 3.26100858e-24 - art_sys_89: -8.36694628e-26 - art_sys_90: -2.18812217e-11 - art_sys_91: 8.96454378e-12 - art_sys_92: 2.15779341e-19 - art_sys_93: 2.62627925e-18 - art_sys_94: -7.09782005e-19 - art_sys_95: -6.14482034e-12 - art_sys_96: -3.44478675e-24 - art_sys_97: -7.98844089e-19 - art_sys_98: 3.05400643e-12 - art_sys_99: -5.07966275e-18 - art_sys_100: 4.34265533e-20 - art_sys_101: -1.54421827e-12 - art_sys_102: 1.71577743e-25 - art_sys_103: -4.25065019e-20 - art_sys_104: -6.54614618e-13 - art_sys_105: -1.70069330e-24 - art_sys_106: 2.60316887e-13 - art_sys_107: -8.56194643e-18 - art_sys_108: -4.28308422e-21 - art_sys_109: 2.10566847e-19 - art_sys_110: -7.06723071e-25 - art_sys_111: 9.62748617e-14 - art_sys_112: -3.97700151e-21 - art_sys_113: 4.44404310e-25 - art_sys_114: -3.36685009e-14 - art_sys_115: -1.13792626e-22 - art_sys_116: 1.19555731e-19 - art_sys_117: 1.83334720e-26 - art_sys_118: -1.41650429e-14 - art_sys_119: -7.32472736e-24 - art_sys_120: 5.12469549e-15 - art_sys_121: -3.61774054e-21 - art_sys_122: 1.71945691e-15 - art_sys_123: 3.96551362e-22 - art_sys_124: -5.72273023e-16 - art_sys_125: 1.86642057e-16 - art_sys_126: 2.74384351e-21 - art_sys_127: 4.86780010e-17 - art_sys_128: -3.38801740e-22 - art_sys_129: 4.82523836e-23 - art_sys_130: -8.30500171e-22 - art_sys_131: -3.14728227e-22 - art_sys_132: 1.64259330e-17 - art_sys_133: 6.48822444e-23 - art_sys_134: 6.89193494e-21 - art_sys_135: 2.80786947e-18 - art_sys_136: 5.05508817e-21 - art_sys_137: -2.98664706e-19 - art_sys_138: -1.35930623e-21 - art_sys_139: -4.73568685e-21 - art_sys_140: -2.85829130e-20 - art_sys_141: 2.23273162e-21 - art_sys_142: 0.0 - art_sys_143: -6.95108559e-21 - art_sys_144: -2.03974849e-21 - art_sys_145: -1.08076910e-21 - art_sys_146: -5.60029155e-26 - art_sys_147: -6.32638778e-27 - art_sys_148: 3.74104500e-24 - art_sys_149: 8.78368899e-25 - art_sys_150: 7.83428289e-26 - art_sys_151: -3.97467250e-24 - art_sys_152: 2.57948068e-24 - art_sys_153: 1.34141520e-25 - art_sys_154: -9.10586285e-25 - art_sys_155: -1.70348958e-24 - art_sys_156: -6.09899231e-24 - art_sys_157: -6.54060504e-25 - art_sys_158: 0.0 - art_sys_159: -3.06836713e-22 - art_sys_160: -3.06836713e-22 - art_sys_161: 9.18127721e-24 - art_sys_162: -3.80890012e-36 - art_sys_163: -0.0 - art_sys_164: -2.43699188e-36 - art_sys_165: -2.41916146e-31 - art_sys_166: 4.56685230e-32 - art_sys_167: -7.85548823e-33 - art_sys_168: -5.42963377e-32 - art_sys_169: 3.81442941e-32 - art_sys_170: 2.74294556e-31 - art_sys_171: 1.72930206e-30 - art_sys_172: -6.87906970e-31 - art_sys_173: 4.04167194e-31 - art_sys_174: -1.73652931e-36 - art_sys_175: -1.26899451e-31 - art_sys_176: 1.50372108e-31 - art_sys_177: -2.60934354e-32 - art_sys_178: -1.93472610e-33 - art_sys_179: -3.18642939e-34 - art_sys_180: 1.73065305e-34 - art_sys_181: 4.54369545e-35 - art_sys_182: 1.10841069e-34 - art_sys_183: 8.50508479e-37 - art_sys_184: -3.54855567e-39 - art_sys_185: -6.54482605e-38 + art_sys_27: 5.63783030e-17 + art_sys_28: 2.45478990e-16 + art_sys_29: 3.47682878e-18 + art_sys_30: -5.14524319e-05 + art_sys_31: 9.00276766e-16 + art_sys_32: 7.20046269e-18 + art_sys_33: 4.30821300e-06 + art_sys_34: 1.98048140e-06 + art_sys_35: -6.09387494e-16 + art_sys_36: 1.79162638e-16 + art_sys_37: 9.07783381e-19 + art_sys_38: 2.74217538e-19 + art_sys_39: 1.34363183e-19 + art_sys_40: 6.18053342e-23 + art_sys_41: 1.82144061e-19 + art_sys_42: 6.44087105e-20 + art_sys_43: -1.65179457e-20 + art_sys_44: -1.75640713e-19 + art_sys_45: 2.61090991e-19 + art_sys_46: 1.89413697e-20 + art_sys_47: -6.61840362e-16 + art_sys_48: 5.04535563e-07 + art_sys_49: -6.04038150e-15 + art_sys_50: 2.65805435e-19 + art_sys_51: 1.14103866e-18 + art_sys_52: 1.41194379e-15 + art_sys_53: 3.86240912e-08 + art_sys_54: -1.47994337e-16 + art_sys_55: 1.79167842e-08 + art_sys_56: -6.03207996e-17 + art_sys_57: -1.06921350e-18 + art_sys_58: 2.35905911e-20 + art_sys_59: -3.78340209e-09 + art_sys_60: -6.02556307e-16 + art_sys_61: 5.42830940e-20 + art_sys_62: -1.77019975e-17 + art_sys_63: 2.58390499e-17 + art_sys_64: -7.71167860e-19 + art_sys_65: 2.21113791e-19 + art_sys_66: 1.25027759e-19 + art_sys_67: 1.10237863e-19 + art_sys_68: -2.45394689e-22 + art_sys_69: 2.43191059e-23 + art_sys_70: 1.04699051e-23 + art_sys_71: 1.03975267e-23 + art_sys_72: 1.59713327e-24 + art_sys_73: 1.17567073e-24 + art_sys_74: -1.75763973e-21 + art_sys_75: 5.26021161e-24 + art_sys_76: -1.76784357e-21 + art_sys_77: -5.54063469e-22 + art_sys_78: 2.29397015e-22 + art_sys_79: -1.81203042e-23 + art_sys_80: -4.40306841e-23 + art_sys_81: 4.77586785e-20 + art_sys_82: -1.07289279e-16 + art_sys_83: 5.28405639e-23 + art_sys_84: 1.14534482e-23 + art_sys_85: 1.62002070e-23 + art_sys_86: -4.15668620e-24 + art_sys_87: -3.30943975e-21 + art_sys_88: 1.70062618e-21 + art_sys_89: -9.22001903e-25 + art_sys_90: -4.32777840e-21 + art_sys_91: 2.18813182e-11 + art_sys_92: 1.00983616e-25 + art_sys_93: -2.18693338e-25 + art_sys_94: 1.55146953e-22 + art_sys_95: 3.41014839e-18 + art_sys_96: -8.96466090e-12 + art_sys_97: -2.17128487e-18 + art_sys_98: 5.27450125e-19 + art_sys_99: -6.14481113e-12 + art_sys_100: 5.33557756e-18 + art_sys_101: 3.05400527e-12 + art_sys_102: -4.01461171e-20 + art_sys_103: 1.35468346e-18 + art_sys_104: -1.54418032e-12 + art_sys_105: -1.46527378e-24 + art_sys_106: 6.54567668e-13 + art_sys_107: 4.00667559e-20 + art_sys_108: 7.58094438e-24 + art_sys_109: -9.08402950e-25 + art_sys_110: 5.74965408e-19 + art_sys_111: -2.60315121e-13 + art_sys_112: -9.69658015e-20 + art_sys_113: -8.29692534e-18 + art_sys_114: -6.43591151e-26 + art_sys_115: 9.62734954e-14 + art_sys_116: -2.58724613e-20 + art_sys_117: -1.79918197e-24 + art_sys_118: -3.36783069e-14 + art_sys_119: -1.14744636e-20 + art_sys_120: 1.16259135e-19 + art_sys_121: -2.49948831e-25 + art_sys_122: 1.41737185e-14 + art_sys_123: 1.60298216e-21 + art_sys_124: -5.12306469e-15 + art_sys_125: 5.25910027e-26 + art_sys_126: 3.34793270e-20 + art_sys_127: -6.55376196e-23 + art_sys_128: 1.72006419e-15 + art_sys_129: -4.14227802e-26 + art_sys_130: 6.56386464e-22 + art_sys_131: 7.18407488e-25 + art_sys_132: 5.72318732e-16 + art_sys_133: -1.25974744e-21 + art_sys_134: 5.25125462e-21 + art_sys_135: -1.87105946e-16 + art_sys_136: -1.26685113e-25 + art_sys_137: 4.91018296e-23 + art_sys_138: -4.86980758e-17 + art_sys_139: -1.06470159e-21 + art_sys_140: 1.09302295e-25 + art_sys_141: -3.30747628e-22 + art_sys_142: -1.64834486e-17 + art_sys_143: -3.03831506e-22 + art_sys_144: 5.18010137e-24 + art_sys_145: -2.77035697e-18 + art_sys_146: 1.69170244e-22 + art_sys_147: -1.91837129e-24 + art_sys_148: 6.52964710e-26 + art_sys_149: 2.80362904e-19 + art_sys_150: -8.06967857e-21 + art_sys_151: -4.36007931e-22 + art_sys_152: 7.62198803e-24 + art_sys_153: -1.11237880e-21 + art_sys_154: 6.89642769e-21 + art_sys_155: 4.07075691e-24 + art_sys_156: -0.0 + art_sys_157: 3.10846769e-21 + art_sys_158: -0.0 + art_sys_159: -4.94395867e-22 + art_sys_160: 6.43304434e-23 + art_sys_161: 5.53202107e-23 + art_sys_162: 5.53202107e-23 + art_sys_163: 5.71130433e-23 + art_sys_164: 5.71130433e-23 + art_sys_165: -6.44217863e-37 + art_sys_166: 2.13831870e-37 + art_sys_167: 0.0 + art_sys_168: 4.41327514e-32 + art_sys_169: -1.36354136e-31 + art_sys_170: 5.37731982e-32 + art_sys_171: 3.14689022e-30 + art_sys_172: -3.20682628e-31 + art_sys_173: -2.75781337e-32 + art_sys_174: 2.06689696e-32 + art_sys_175: 2.52464109e-33 + art_sys_176: -1.56491321e-36 + art_sys_177: -2.63934836e-36 + art_sys_178: -2.47431561e-36 + art_sys_179: -1.24038708e-36 + art_sys_180: -1.28582202e-35 + art_sys_181: 7.64582407e-36 + art_sys_182: -5.12069315e-35 + art_sys_183: -1.78394394e-36 + art_sys_184: 1.02642426e-38 + art_sys_185: 2.38963301e-39 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -5186,191 +5186,191 @@ bins: RelativeStatFSR-: -9.31152783e-01 luminosity_uncertainty: 99.26956 uncorrelated_uncertainty: 38.1806 -- art_sys_1: -6.26894662e-31 - art_sys_2: 3.59411749e-18 - art_sys_3: -7.41855719e-20 +- art_sys_1: 5.94465810e-31 + art_sys_2: -2.23812745e-19 + art_sys_3: -7.41855728e-20 art_sys_4: 1.14696466e+00 - art_sys_5: 6.01557227e-17 - art_sys_6: 1.38713173e-17 + art_sys_5: 1.87579354e-16 + art_sys_6: 7.29860950e-18 art_sys_7: 2.89837769e+00 - art_sys_8: 1.44304104e-15 + art_sys_8: 1.37496359e-15 art_sys_9: 2.25816673e+00 - art_sys_10: 6.15913483e-18 - art_sys_11: -6.56625926e-16 + art_sys_10: -2.63387805e-17 + art_sys_11: -7.85680553e-16 art_sys_12: -2.83752156e+00 - art_sys_13: 7.82789716e-17 - art_sys_14: 4.35183622e+00 - art_sys_15: 1.44449985e-15 - art_sys_16: 8.49440649e-01 - art_sys_17: -7.27813569e-17 - art_sys_18: -1.26160417e-15 - art_sys_19: 1.02874539e+00 - art_sys_20: -2.55976591e-17 - art_sys_21: 1.41155228e-15 - art_sys_22: 3.56779101e-17 + art_sys_13: -1.25134702e-15 + art_sys_14: -4.35183622e+00 + art_sys_15: -3.04546578e-15 + art_sys_16: -8.49440649e-01 + art_sys_17: -1.73328736e-16 + art_sys_18: -1.10347818e-15 + art_sys_19: -1.02874539e+00 + art_sys_20: 1.06870595e-16 + art_sys_21: 8.06904753e-16 + art_sys_22: 5.78532459e-17 art_sys_23: -2.59103126e-01 - art_sys_24: 8.61357730e-15 - art_sys_25: 1.49271725e-03 + art_sys_24: 8.67693253e-15 + art_sys_25: -1.49271725e-03 art_sys_26: -7.50764047e-04 - art_sys_27: 2.20059064e-16 - art_sys_28: -1.34194107e-15 - art_sys_29: 3.81991729e-16 - art_sys_30: 5.85596340e-17 - art_sys_31: 2.19448004e-18 - art_sys_32: -3.56289757e-17 - art_sys_33: 1.31376682e-18 - art_sys_34: 9.52012260e-19 - art_sys_35: -9.63381843e-19 - art_sys_36: -1.04262683e-16 - art_sys_37: 2.98182053e-04 - art_sys_38: -2.59078485e-19 - art_sys_39: 4.47095533e-15 - art_sys_40: -1.62388579e-15 - art_sys_41: 2.75212674e-05 - art_sys_42: 5.97252128e-19 - art_sys_43: 1.21436058e-05 - art_sys_44: 5.21844474e-20 - art_sys_45: 3.14933010e-15 - art_sys_46: 3.44528518e-17 - art_sys_47: 7.95719277e-21 - art_sys_48: -3.08287718e-06 - art_sys_49: 3.30721205e-15 - art_sys_50: -3.58389910e-20 - art_sys_51: 1.18233659e-19 - art_sys_52: -2.52964687e-07 - art_sys_53: -1.82943058e-15 - art_sys_54: 7.03321639e-17 - art_sys_55: 1.08805181e-07 - art_sys_56: 7.18228315e-16 - art_sys_57: -6.00208964e-18 - art_sys_58: -4.20018577e-18 - art_sys_59: -9.52838497e-19 - art_sys_60: 3.31392874e-18 - art_sys_61: -3.74623446e-19 - art_sys_62: 2.78744882e-20 - art_sys_63: -7.86233562e-21 - art_sys_64: -1.37053086e-21 - art_sys_65: 3.02851192e-21 - art_sys_66: 9.68274044e-21 - art_sys_67: -1.42420250e-22 - art_sys_68: -2.18030585e-22 - art_sys_69: -2.33576073e-17 - art_sys_70: 2.36754065e-08 - art_sys_71: -3.55214189e-16 - art_sys_72: -1.34979250e-16 - art_sys_73: 3.54493454e-18 - art_sys_74: 5.49446240e-16 - art_sys_75: 1.96885321e-21 - art_sys_76: -6.77672433e-21 - art_sys_77: 6.26802098e-21 - art_sys_78: -8.49422571e-22 - art_sys_79: -9.82955240e-20 - art_sys_80: 6.28937437e-16 - art_sys_81: -9.28111750e-22 - art_sys_82: -1.55363843e-22 - art_sys_83: 1.04633129e-22 - art_sys_84: 4.63852290e-19 - art_sys_85: 1.83349795e-22 - art_sys_86: 2.42942603e-23 - art_sys_87: 1.49836895e-21 - art_sys_88: -1.89046202e-23 - art_sys_89: 4.71661840e-25 - art_sys_90: 1.08226558e-10 - art_sys_91: -4.91611094e-11 - art_sys_92: -1.19066691e-18 - art_sys_93: -1.20137590e-17 - art_sys_94: 3.90535029e-18 - art_sys_95: 3.35318714e-11 - art_sys_96: 1.98851919e-23 - art_sys_97: 4.42165530e-18 - art_sys_98: -1.65459226e-11 - art_sys_99: 2.99616650e-17 - art_sys_100: -2.42158380e-19 - art_sys_101: 8.52023804e-12 - art_sys_102: -9.09487653e-25 - art_sys_103: 2.38510142e-19 - art_sys_104: 3.60805992e-12 - art_sys_105: 9.57235707e-24 - art_sys_106: -1.44410822e-12 - art_sys_107: 4.66119177e-17 - art_sys_108: 2.39890715e-20 - art_sys_109: -1.17509700e-18 - art_sys_110: 3.86887237e-24 - art_sys_111: -5.35917592e-13 - art_sys_112: 2.23441268e-20 - art_sys_113: -2.74148010e-24 - art_sys_114: 1.87717736e-13 - art_sys_115: 6.92153971e-22 - art_sys_116: -6.69948948e-19 - art_sys_117: -1.00679646e-25 - art_sys_118: 7.92037799e-14 - art_sys_119: 3.34258919e-23 - art_sys_120: -2.86811382e-14 - art_sys_121: 2.02602808e-20 - art_sys_122: -9.63870494e-15 - art_sys_123: -2.22863859e-21 - art_sys_124: 3.21047629e-15 - art_sys_125: -1.04763075e-15 - art_sys_126: -1.54295595e-20 - art_sys_127: -2.73401508e-16 - art_sys_128: 1.90487685e-21 - art_sys_129: -2.71273917e-22 - art_sys_130: 4.66830440e-21 - art_sys_131: 1.76878480e-21 - art_sys_132: -9.22725543e-17 - art_sys_133: -3.61749619e-22 - art_sys_134: -3.87258165e-20 - art_sys_135: -1.57786033e-17 - art_sys_136: -2.84074270e-20 - art_sys_137: 1.67869029e-18 - art_sys_138: 7.64007509e-21 - art_sys_139: 2.66166948e-20 - art_sys_140: 1.39412711e-19 - art_sys_141: -1.25482692e-20 - art_sys_142: -0.0 - art_sys_143: 3.90626838e-20 - art_sys_144: 1.14635169e-20 - art_sys_145: 6.07366232e-21 - art_sys_146: 3.14667668e-25 - art_sys_147: 4.60232034e-26 - art_sys_148: -2.10310518e-23 - art_sys_149: -4.97174067e-24 - art_sys_150: -4.43962279e-25 - art_sys_151: 2.23422126e-23 - art_sys_152: -1.44922383e-23 - art_sys_153: -7.54663347e-25 - art_sys_154: 5.11882720e-24 - art_sys_155: 9.57405276e-24 - art_sys_156: 3.42778260e-23 - art_sys_157: 3.67537673e-24 - art_sys_158: -0.0 - art_sys_159: 1.72468934e-21 - art_sys_160: 1.72468934e-21 - art_sys_161: -5.16061571e-23 - art_sys_162: 2.14090006e-35 - art_sys_163: 0.0 - art_sys_164: 1.36977768e-35 - art_sys_165: 1.49480261e-30 - art_sys_166: -2.99071104e-31 - art_sys_167: 6.43232065e-32 - art_sys_168: 3.09324635e-31 - art_sys_169: -1.73865921e-31 - art_sys_170: -1.69666711e-30 - art_sys_171: -1.01772347e-29 - art_sys_172: 6.83541144e-30 - art_sys_173: -3.13969902e-30 - art_sys_174: 9.75931433e-36 - art_sys_175: 7.16627035e-31 - art_sys_176: -8.62627134e-31 - art_sys_177: 1.51720504e-31 - art_sys_178: 1.13328989e-32 - art_sys_179: 1.76742563e-33 - art_sys_180: -9.78222510e-34 - art_sys_181: -3.06653231e-34 - art_sys_182: -6.63078038e-34 - art_sys_183: -4.80414616e-36 - art_sys_184: 1.96425984e-38 - art_sys_185: 3.67919055e-37 + art_sys_27: -2.16820224e-16 + art_sys_28: -1.34768756e-15 + art_sys_29: 1.32764098e-17 + art_sys_30: 2.98182053e-04 + art_sys_31: -4.47753691e-15 + art_sys_32: -1.58288092e-17 + art_sys_33: -2.75212674e-05 + art_sys_34: -1.21436058e-05 + art_sys_35: 2.96379114e-15 + art_sys_36: -1.55098302e-17 + art_sys_37: 1.36673953e-18 + art_sys_38: 1.28516628e-19 + art_sys_39: -2.51395806e-19 + art_sys_40: 1.42694848e-19 + art_sys_41: -5.82553258e-19 + art_sys_42: -6.01248360e-19 + art_sys_43: -7.55059539e-19 + art_sys_44: -5.41957165e-19 + art_sys_45: 3.90344063e-19 + art_sys_46: 7.94863546e-20 + art_sys_47: 4.04211732e-15 + art_sys_48: -3.08287719e-06 + art_sys_49: 3.69094908e-14 + art_sys_50: -2.56844373e-20 + art_sys_51: -9.59488181e-20 + art_sys_52: -8.67779925e-15 + art_sys_53: -2.52964689e-07 + art_sys_54: 9.61687256e-16 + art_sys_55: -1.08805181e-07 + art_sys_56: 3.86048980e-16 + art_sys_57: 2.63701629e-21 + art_sys_58: 4.24048347e-21 + art_sys_59: 2.36754072e-08 + art_sys_60: 3.77661498e-15 + art_sys_61: 5.33847105e-21 + art_sys_62: 1.11756775e-16 + art_sys_63: -1.55126598e-16 + art_sys_64: 6.33370779e-18 + art_sys_65: -1.87205603e-18 + art_sys_66: -4.30459820e-19 + art_sys_67: -6.84818301e-19 + art_sys_68: 2.22983125e-21 + art_sys_69: -5.20320867e-22 + art_sys_70: -2.05078346e-22 + art_sys_71: -7.88240449e-23 + art_sys_72: -5.35512332e-24 + art_sys_73: -9.01532283e-24 + art_sys_74: 9.79694951e-20 + art_sys_75: -3.09274520e-23 + art_sys_76: 9.30385553e-21 + art_sys_77: 3.09043170e-21 + art_sys_78: -1.20692771e-21 + art_sys_79: 1.32861816e-22 + art_sys_80: 2.33173064e-22 + art_sys_81: -2.61882517e-19 + art_sys_82: 5.69732387e-16 + art_sys_83: -2.54553337e-22 + art_sys_84: -4.04210921e-23 + art_sys_85: -8.50422397e-23 + art_sys_86: 2.10681611e-23 + art_sys_87: 1.80963671e-20 + art_sys_88: -9.43781184e-21 + art_sys_89: 4.11471265e-24 + art_sys_90: 2.43082770e-20 + art_sys_91: -1.08227015e-10 + art_sys_92: -2.94398751e-25 + art_sys_93: 1.19223824e-24 + art_sys_94: -8.70437677e-22 + art_sys_95: -1.84963728e-17 + art_sys_96: 4.91616963e-11 + art_sys_97: 1.66700321e-17 + art_sys_98: -2.72340979e-18 + art_sys_99: 3.35318217e-11 + art_sys_100: -2.89601162e-17 + art_sys_101: -1.65459164e-11 + art_sys_102: 2.12623786e-19 + art_sys_103: -7.45812015e-18 + art_sys_104: 8.52002888e-12 + art_sys_105: 8.16766301e-24 + art_sys_106: -3.60780087e-12 + art_sys_107: -2.24588928e-19 + art_sys_108: -4.26939704e-23 + art_sys_109: 5.10799106e-24 + art_sys_110: -3.21612799e-18 + art_sys_111: 1.44409805e-12 + art_sys_112: 5.40984827e-19 + art_sys_113: 4.55495740e-17 + art_sys_114: 3.70198462e-25 + art_sys_115: -5.35910125e-13 + art_sys_116: 1.45053324e-19 + art_sys_117: 1.00829382e-23 + art_sys_118: 1.87772569e-13 + art_sys_119: 6.45349925e-20 + art_sys_120: -6.52612808e-19 + art_sys_121: 1.43584454e-24 + art_sys_122: -7.92520965e-14 + art_sys_123: -8.97035185e-21 + art_sys_124: 2.86719500e-14 + art_sys_125: -3.01225704e-25 + art_sys_126: -1.87938244e-19 + art_sys_127: 3.69043397e-22 + art_sys_128: -9.64209803e-15 + art_sys_129: 2.26981349e-25 + art_sys_130: -3.68893979e-21 + art_sys_131: -4.03213813e-24 + art_sys_132: -3.21072795e-15 + art_sys_133: 7.08033017e-21 + art_sys_134: -2.95202976e-20 + art_sys_135: 1.05023211e-15 + art_sys_136: 7.12911738e-25 + art_sys_137: -2.76043179e-22 + art_sys_138: 2.73513683e-16 + art_sys_139: 5.98372002e-21 + art_sys_140: -6.14324824e-25 + art_sys_141: 1.85802161e-21 + art_sys_142: 9.25955064e-17 + art_sys_143: 1.70712977e-21 + art_sys_144: -2.90962084e-23 + art_sys_145: 1.55678149e-17 + art_sys_146: -9.50628120e-22 + art_sys_147: 1.07799745e-23 + art_sys_148: -3.65617878e-25 + art_sys_149: -1.57583690e-18 + art_sys_150: 4.53569900e-20 + art_sys_151: 2.45059642e-21 + art_sys_152: -4.28387489e-23 + art_sys_153: 6.25194042e-21 + art_sys_154: -3.80574176e-20 + art_sys_155: -2.28778443e-23 + art_sys_156: 0.0 + art_sys_157: -1.74731579e-20 + art_sys_158: 0.0 + art_sys_159: 2.77874477e-21 + art_sys_160: -3.61611860e-22 + art_sys_161: -3.10912685e-22 + art_sys_162: -3.10912685e-22 + art_sys_163: -3.20999956e-22 + art_sys_164: -3.20999956e-22 + art_sys_165: 3.62076454e-36 + art_sys_166: -1.20182062e-36 + art_sys_167: -0.0 + art_sys_168: -2.52611121e-31 + art_sys_169: 8.02860491e-31 + art_sys_170: -3.33919582e-31 + art_sys_171: -1.82422481e-29 + art_sys_172: 1.86877407e-30 + art_sys_173: 1.49838835e-31 + art_sys_174: -1.22897403e-31 + art_sys_175: -1.39645579e-32 + art_sys_176: -1.68825146e-34 + art_sys_177: 1.37964027e-35 + art_sys_178: 1.16218108e-35 + art_sys_179: 6.97076843e-36 + art_sys_180: 7.22693014e-35 + art_sys_181: -1.02545795e-35 + art_sys_182: 4.50027421e-34 + art_sys_183: 9.78170236e-36 + art_sys_184: -6.86185642e-38 + art_sys_185: -1.34879116e-38 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -5477,191 +5477,191 @@ bins: RelativeStatFSR-: -4.53259919e-01 luminosity_uncertainty: 4.41487800e+01 uncorrelated_uncertainty: 16.9803 -- art_sys_1: 2.84342190e-31 - art_sys_2: -1.62992135e-18 - art_sys_3: 1.98328446e-20 +- art_sys_1: -2.69541071e-31 + art_sys_2: 1.01498400e-19 + art_sys_3: 1.98328450e-20 art_sys_4: -5.20144986e-01 - art_sys_5: 1.12252064e-16 - art_sys_6: -6.27321641e-18 + art_sys_5: 5.42095151e-17 + art_sys_6: -3.27844416e-18 art_sys_7: 1.00579421e+00 - art_sys_8: -8.80430433e-16 + art_sys_8: -9.03434947e-16 art_sys_9: -2.41574390e+00 - art_sys_10: -2.19967570e-17 - art_sys_11: 2.63169741e-15 + art_sys_10: -2.43318980e-18 + art_sys_11: 2.66732011e-15 art_sys_12: 6.61875562e-01 - art_sys_13: -1.07988272e-17 - art_sys_14: 2.60188112e+00 - art_sys_15: -3.45915541e-15 - art_sys_16: -2.10082911e+00 - art_sys_17: 4.49879903e-18 - art_sys_18: 1.14533823e-15 - art_sys_19: -1.21418133e+00 - art_sys_20: 8.77625828e-17 - art_sys_21: -4.89522880e-16 - art_sys_22: -6.11885743e-17 + art_sys_13: -7.66837929e-16 + art_sys_14: -2.60188112e+00 + art_sys_15: 4.63140609e-15 + art_sys_16: 2.10082911e+00 + art_sys_17: 2.62830270e-17 + art_sys_18: 4.81370336e-16 + art_sys_19: 1.21418133e+00 + art_sys_20: -2.48021625e-16 + art_sys_21: -3.34236859e-16 + art_sys_22: -7.20648657e-17 art_sys_23: 5.29279814e-01 - art_sys_24: -9.98426765e-15 - art_sys_25: -3.47482996e-03 + art_sys_24: -1.01243667e-14 + art_sys_25: 3.47482996e-03 art_sys_26: 1.93114766e-03 - art_sys_27: -2.95061385e-16 - art_sys_28: 2.97703271e-15 - art_sys_29: -5.02162934e-16 - art_sys_30: -1.22621395e-16 - art_sys_31: -1.08811614e-17 - art_sys_32: 1.08493107e-16 - art_sys_33: -4.33991945e-18 - art_sys_34: -2.66107587e-18 - art_sys_35: 4.23590392e-18 - art_sys_36: 3.53521908e-16 - art_sys_37: -9.09939592e-04 - art_sys_38: 1.18311576e-18 - art_sys_39: -1.00539443e-14 - art_sys_40: 4.76436180e-15 - art_sys_41: -8.13484627e-05 - art_sys_42: 2.56293439e-18 - art_sys_43: -3.93824473e-05 - art_sys_44: -8.52608523e-19 - art_sys_45: -7.11888441e-15 - art_sys_46: -1.11577284e-16 - art_sys_47: -1.41482371e-19 + art_sys_27: 3.00978523e-16 + art_sys_28: 2.97457910e-15 + art_sys_29: -1.32484576e-18 + art_sys_30: -9.09939592e-04 + art_sys_31: 1.00571266e-14 + art_sys_32: 1.76784713e-17 + art_sys_33: 8.13484627e-05 + art_sys_34: 3.93824473e-05 + art_sys_35: -6.52063784e-15 + art_sys_36: 1.62440305e-16 + art_sys_37: -4.92709068e-18 + art_sys_38: -5.05548013e-20 + art_sys_39: 7.94095093e-19 + art_sys_40: -4.13471491e-19 + art_sys_41: 1.68494142e-18 + art_sys_42: 1.14499476e-18 + art_sys_43: 1.78199339e-18 + art_sys_44: 3.48997598e-19 + art_sys_45: -2.99331944e-19 + art_sys_46: -3.03324279e-19 + art_sys_47: -1.34835454e-14 art_sys_48: 1.02849355e-05 - art_sys_49: -1.10331746e-14 - art_sys_50: -1.27082114e-19 - art_sys_51: 4.43918441e-19 - art_sys_52: 8.43660054e-07 - art_sys_53: 5.84311669e-15 - art_sys_54: -2.49713964e-16 - art_sys_55: -3.84869501e-07 - art_sys_56: -2.34632819e-15 - art_sys_57: 1.82451934e-17 - art_sys_58: 1.27929294e-17 - art_sys_59: 2.94062626e-18 - art_sys_60: -1.23429653e-17 - art_sys_61: 1.12327458e-18 - art_sys_62: -8.03244065e-20 - art_sys_63: 2.93941484e-20 - art_sys_64: 3.53044339e-21 - art_sys_65: -1.08307918e-20 - art_sys_66: -3.10255963e-20 - art_sys_67: 5.18333822e-22 - art_sys_68: 8.18477056e-22 - art_sys_69: 1.16580654e-16 - art_sys_70: -8.33331567e-08 - art_sys_71: 1.61948905e-15 - art_sys_72: 4.57089203e-16 - art_sys_73: -1.51177749e-17 - art_sys_74: -2.44531104e-15 - art_sys_75: -6.00697180e-21 - art_sys_76: 3.83425194e-20 - art_sys_77: -2.71491196e-20 - art_sys_78: 3.79059000e-21 - art_sys_79: 4.87960616e-19 - art_sys_80: -3.10553190e-15 - art_sys_81: 3.84626519e-21 - art_sys_82: 8.06030879e-22 - art_sys_83: -5.31605939e-22 - art_sys_84: -1.89479899e-18 - art_sys_85: -8.16863587e-22 - art_sys_86: -9.45870203e-23 - art_sys_87: -5.78817406e-21 - art_sys_88: 4.43148479e-23 - art_sys_89: -9.59019600e-24 - art_sys_90: -5.39780174e-10 - art_sys_91: 1.94243084e-10 - art_sys_92: 5.02042342e-18 - art_sys_93: 6.65582680e-17 - art_sys_94: -1.65040075e-17 - art_sys_95: -1.45500379e-10 - art_sys_96: -8.68508901e-23 - art_sys_97: -1.86043214e-17 - art_sys_98: 7.05405959e-11 - art_sys_99: -1.11160363e-16 - art_sys_100: 1.01446874e-18 - art_sys_101: -3.59351609e-11 - art_sys_102: 8.43898777e-24 - art_sys_103: -9.91546656e-19 - art_sys_104: -1.52355575e-11 - art_sys_105: -3.42832533e-23 - art_sys_106: 6.05829658e-12 - art_sys_107: -2.02850199e-16 - art_sys_108: -9.96208777e-20 - art_sys_109: 4.91783292e-18 - art_sys_110: -1.70661824e-23 - art_sys_111: 2.24471000e-12 - art_sys_112: -9.27453080e-20 - art_sys_113: 8.37177981e-24 - art_sys_114: -7.84702332e-13 - art_sys_115: -2.87052109e-21 - art_sys_116: 2.78860822e-18 - art_sys_117: -8.42537039e-26 - art_sys_118: -3.30392976e-13 - art_sys_119: -1.40429236e-22 - art_sys_120: 1.19553870e-13 - art_sys_121: -8.44109330e-20 - art_sys_122: 4.01179676e-14 - art_sys_123: 9.25536756e-21 - art_sys_124: -1.33556824e-14 - art_sys_125: 4.35573781e-15 - art_sys_126: 6.40714480e-20 - art_sys_127: 1.13617535e-15 - art_sys_128: -7.90700954e-21 - art_sys_129: 1.12723491e-21 - art_sys_130: -1.93862125e-20 - art_sys_131: -7.34578473e-21 - art_sys_132: 3.83397016e-16 - art_sys_133: 1.50979785e-21 - art_sys_134: 1.60869217e-19 - art_sys_135: 6.55408183e-17 - art_sys_136: 1.17996288e-19 - art_sys_137: -6.97146477e-18 - art_sys_138: -3.17294143e-20 - art_sys_139: -1.10542048e-19 - art_sys_140: -6.59938969e-19 - art_sys_141: 5.21126056e-20 - art_sys_142: 0.0 - art_sys_143: -1.62253344e-19 - art_sys_144: -4.76153934e-20 - art_sys_145: -2.52224286e-20 - art_sys_146: -1.14923622e-24 - art_sys_147: -1.64790294e-25 - art_sys_148: 8.71076831e-23 - art_sys_149: 2.04105303e-23 - art_sys_150: 1.85726339e-24 - art_sys_151: -9.27892922e-23 - art_sys_152: 6.01946358e-23 - art_sys_153: 3.12535257e-24 - art_sys_154: -2.12575126e-23 - art_sys_155: -3.97578030e-23 - art_sys_156: -1.42357284e-22 - art_sys_157: -1.52631218e-23 - art_sys_158: 0.0 - art_sys_159: -7.16250840e-21 - art_sys_160: -7.16250840e-21 - art_sys_161: 2.14292985e-22 - art_sys_162: -8.89022699e-35 - art_sys_163: -0.0 - art_sys_164: -5.68815269e-35 - art_sys_165: -4.73564490e-30 - art_sys_166: 7.54346333e-31 - art_sys_167: -5.11613662e-32 - art_sys_168: -9.81700332e-31 - art_sys_169: 5.28308273e-31 - art_sys_170: 5.17989335e-30 - art_sys_171: 2.96215754e-29 - art_sys_172: -2.04278671e-29 - art_sys_173: 9.20854882e-30 - art_sys_174: -4.05293725e-35 - art_sys_175: -2.15943627e-30 - art_sys_176: 2.59733122e-30 - art_sys_177: -4.54227115e-31 - art_sys_178: -3.34633069e-32 - art_sys_179: -5.29218124e-33 - art_sys_180: 2.92263666e-33 - art_sys_181: 9.33472761e-34 - art_sys_182: 2.00077149e-33 - art_sys_183: 1.45128731e-35 - art_sys_184: -5.23174722e-38 - art_sys_185: -1.52761073e-36 + art_sys_49: -1.23135937e-13 + art_sys_50: 1.04438063e-19 + art_sys_51: 5.23775873e-19 + art_sys_52: 2.92078413e-14 + art_sys_53: 8.43660062e-07 + art_sys_54: -3.22463439e-15 + art_sys_55: 3.84869500e-07 + art_sys_56: -1.33674905e-15 + art_sys_57: -3.03472014e-19 + art_sys_58: 1.03877046e-21 + art_sys_59: -8.33331591e-08 + art_sys_60: -1.32587463e-14 + art_sys_61: -3.48098569e-21 + art_sys_62: -3.61831833e-16 + art_sys_63: 5.88398205e-16 + art_sys_64: -1.90373812e-17 + art_sys_65: 5.38740046e-18 + art_sys_66: 1.37341008e-18 + art_sys_67: 2.05761843e-18 + art_sys_68: -5.77325025e-21 + art_sys_69: 1.43575624e-21 + art_sys_70: 7.38017778e-22 + art_sys_71: 2.09569377e-22 + art_sys_72: 3.47609301e-23 + art_sys_73: 2.67309816e-23 + art_sys_74: -3.84403066e-19 + art_sys_75: 9.86653085e-23 + art_sys_76: -4.30439290e-20 + art_sys_77: -1.25042632e-20 + art_sys_78: 5.24605932e-21 + art_sys_79: -3.80792969e-22 + art_sys_80: -9.41951806e-22 + art_sys_81: 1.03481169e-18 + art_sys_82: -2.42990511e-15 + art_sys_83: 1.33112869e-21 + art_sys_84: 2.80813610e-22 + art_sys_85: 4.02181151e-22 + art_sys_86: -9.82171702e-23 + art_sys_87: -7.65755260e-20 + art_sys_88: 3.95637487e-20 + art_sys_89: -2.58816793e-23 + art_sys_90: -1.01081429e-19 + art_sys_91: 5.39782715e-10 + art_sys_92: 3.43629997e-24 + art_sys_93: -4.96307363e-24 + art_sys_94: 3.61224835e-21 + art_sys_95: 8.11674049e-17 + art_sys_96: -1.94245954e-10 + art_sys_97: -4.65597691e-17 + art_sys_98: 1.20025608e-17 + art_sys_99: -1.45500170e-10 + art_sys_100: 1.23317249e-16 + art_sys_101: 7.05405738e-11 + art_sys_102: -9.12838214e-19 + art_sys_103: 3.13731716e-17 + art_sys_104: -3.59342777e-11 + art_sys_105: -3.35371944e-23 + art_sys_106: 1.52344645e-11 + art_sys_107: 9.34417753e-19 + art_sys_108: 1.73374434e-22 + art_sys_109: -2.09081861e-23 + art_sys_110: 1.34115899e-17 + art_sys_111: -6.05825376e-12 + art_sys_112: -2.25726792e-18 + art_sys_113: -1.94713108e-16 + art_sys_114: -1.43321029e-24 + art_sys_115: 2.24467852e-12 + art_sys_116: -6.03692791e-19 + art_sys_117: -4.21189252e-23 + art_sys_118: -7.84930656e-13 + art_sys_119: -2.68437440e-19 + art_sys_120: 2.71440223e-18 + art_sys_121: -4.41985879e-24 + art_sys_122: 3.30594787e-13 + art_sys_123: 3.72643681e-20 + art_sys_124: -1.19515595e-13 + art_sys_125: 1.09670642e-24 + art_sys_126: 7.81423148e-19 + art_sys_127: -1.53246654e-21 + art_sys_128: 4.01320824e-14 + art_sys_129: -1.00548633e-24 + art_sys_130: 1.53187071e-20 + art_sys_131: 1.67803223e-23 + art_sys_132: 1.33567320e-14 + art_sys_133: -2.94056208e-20 + art_sys_134: 1.22594375e-19 + art_sys_135: -4.36655844e-15 + art_sys_136: -2.98720064e-24 + art_sys_137: 1.14649429e-21 + art_sys_138: -1.13664229e-15 + art_sys_139: -2.48530565e-20 + art_sys_140: 2.55086986e-24 + art_sys_141: -7.72067334e-21 + art_sys_142: -3.84739062e-16 + art_sys_143: -7.09190810e-21 + art_sys_144: 1.20904345e-22 + art_sys_145: -6.46651066e-17 + art_sys_146: 3.94858218e-21 + art_sys_147: -4.47795773e-23 + art_sys_148: 1.52385578e-24 + art_sys_149: 6.54425954e-18 + art_sys_150: -1.88362872e-19 + art_sys_151: -1.01782926e-20 + art_sys_152: 1.77911674e-22 + art_sys_153: -2.59657763e-20 + art_sys_154: 1.64531320e-19 + art_sys_155: 9.50124043e-23 + art_sys_156: -0.0 + art_sys_157: 7.25754309e-20 + art_sys_158: -0.0 + art_sys_159: -1.15411204e-20 + art_sys_160: 1.50195316e-21 + art_sys_161: 1.29128490e-21 + art_sys_162: 1.29128490e-21 + art_sys_163: 1.33320894e-21 + art_sys_164: 1.33320894e-21 + art_sys_165: -1.50380727e-35 + art_sys_166: 4.99150259e-36 + art_sys_167: 0.0 + art_sys_168: 7.45747272e-31 + art_sys_169: -2.45101813e-30 + art_sys_170: 1.02421403e-30 + art_sys_171: 5.52004341e-29 + art_sys_172: -5.67544655e-30 + art_sys_173: -4.57697272e-31 + art_sys_174: 3.75692608e-31 + art_sys_175: 4.13718636e-32 + art_sys_176: 6.59234508e-34 + art_sys_177: -4.74191583e-35 + art_sys_178: -3.10783161e-35 + art_sys_179: -2.89490872e-35 + art_sys_180: -3.00159169e-34 + art_sys_181: 2.56803372e-34 + art_sys_182: -1.27928759e-33 + art_sys_183: -2.91607589e-35 + art_sys_184: 2.14496594e-37 + art_sys_185: 5.57199865e-38 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -5768,191 +5768,191 @@ bins: RelativeStatFSR-: -2.39462637e-01 luminosity_uncertainty: 2.13919680e+01 uncorrelated_uncertainty: 8.22768 -- art_sys_1: 7.41731851e-32 - art_sys_2: -4.25252635e-19 - art_sys_3: 8.84949193e-21 +- art_sys_1: -7.03370488e-32 + art_sys_2: 2.64813156e-20 + art_sys_3: 8.84949203e-21 art_sys_4: -1.35707790e-01 - art_sys_5: -5.24139479e-18 - art_sys_6: -1.63670460e-18 + art_sys_5: -2.03511692e-17 + art_sys_6: -8.64928535e-19 art_sys_7: -1.10760699e-01 - art_sys_8: -1.33925257e-16 + art_sys_8: -1.33008585e-16 art_sys_9: -2.85151985e-01 - art_sys_10: -1.84648007e-18 - art_sys_11: 2.11866652e-16 + art_sys_10: 2.72527941e-18 + art_sys_11: 2.21747752e-16 art_sys_12: 3.48360297e-01 - art_sys_13: -9.37443050e-18 - art_sys_14: -3.98927913e-01 - art_sys_15: -3.99104890e-15 - art_sys_16: -2.96340400e+00 - art_sys_17: 6.26509536e-17 - art_sys_18: 3.06650941e-16 - art_sys_19: 7.60760248e-01 - art_sys_20: 1.33933574e-16 - art_sys_21: 5.44183021e-16 - art_sys_22: 2.22908788e-17 + art_sys_13: 1.13435843e-16 + art_sys_14: 3.98927913e-01 + art_sys_15: 5.95326398e-15 + art_sys_16: 2.96340400e+00 + art_sys_17: 9.66637463e-17 + art_sys_18: -2.17686831e-16 + art_sys_19: -7.60760248e-01 + art_sys_20: -2.53073525e-16 + art_sys_21: -1.40645146e-16 + art_sys_22: 1.62047630e-16 art_sys_23: -6.20121551e-01 - art_sys_24: 9.61852558e-15 - art_sys_25: 1.56178637e-02 + art_sys_24: 9.44807877e-15 + art_sys_25: -1.56178637e-02 art_sys_26: -6.16500852e-03 - art_sys_27: 3.07026453e-16 - art_sys_28: 5.78529224e-16 - art_sys_29: 2.37174385e-15 - art_sys_30: 4.38702916e-16 - art_sys_31: 3.30687604e-17 - art_sys_32: -3.63214563e-16 - art_sys_33: 1.33672330e-17 - art_sys_34: 9.18118216e-18 - art_sys_35: -8.50548521e-18 - art_sys_36: -1.16177494e-15 - art_sys_37: 3.03805484e-03 - art_sys_38: 5.81100567e-19 - art_sys_39: 1.04169943e-14 - art_sys_40: -1.68634544e-14 - art_sys_41: 2.88771409e-04 - art_sys_42: -8.23660188e-19 - art_sys_43: 1.29400990e-04 - art_sys_44: 2.06490940e-19 - art_sys_45: 8.82713877e-15 - art_sys_46: 3.71645594e-16 - art_sys_47: 6.18241925e-19 - art_sys_48: -3.45359099e-05 - art_sys_49: 3.69955688e-14 - art_sys_50: -3.73143968e-20 - art_sys_51: -1.87112697e-19 - art_sys_52: -2.77904205e-06 - art_sys_53: -1.84584275e-14 - art_sys_54: 8.06269360e-16 - art_sys_55: 1.24319188e-06 - art_sys_56: 7.65609307e-15 - art_sys_57: -6.06624049e-17 - art_sys_58: -4.24880309e-17 - art_sys_59: -9.93020044e-18 - art_sys_60: 4.02838948e-17 - art_sys_61: -3.77270907e-18 - art_sys_62: 2.71714763e-19 - art_sys_63: -9.45515178e-20 - art_sys_64: -1.23435597e-20 - art_sys_65: 3.53378472e-20 - art_sys_66: 1.16905692e-19 - art_sys_67: -1.69868459e-21 - art_sys_68: -2.63641082e-21 - art_sys_69: -2.71211551e-16 - art_sys_70: 2.72297047e-07 - art_sys_71: -4.09253698e-15 - art_sys_72: -1.55071926e-15 - art_sys_73: 4.37399787e-17 - art_sys_74: 6.33405976e-15 - art_sys_75: 2.00473024e-20 - art_sys_76: -7.53081404e-20 - art_sys_77: 7.73273350e-20 - art_sys_78: -1.00060940e-20 - art_sys_79: -1.13945439e-18 - art_sys_80: 7.33225752e-15 - art_sys_81: -1.15120987e-20 - art_sys_82: -1.80346077e-21 - art_sys_83: 1.20983288e-21 - art_sys_84: 5.81958335e-18 - art_sys_85: 2.20681738e-21 - art_sys_86: 3.12035295e-22 - art_sys_87: 1.76321345e-20 - art_sys_88: -1.68445604e-22 - art_sys_89: 2.21725409e-23 - art_sys_90: 1.25632618e-09 - art_sys_91: -6.24199715e-10 - art_sys_92: -1.47021237e-17 - art_sys_93: -1.45167299e-16 - art_sys_94: 4.83786760e-17 - art_sys_95: 4.02080798e-10 - art_sys_96: 2.57799839e-22 - art_sys_97: 5.45957030e-17 - art_sys_98: -2.04629366e-10 - art_sys_99: 3.49897491e-16 - art_sys_100: -3.00837094e-18 - art_sys_101: 1.04932900e-10 - art_sys_102: -2.14146558e-23 - art_sys_103: 2.97809443e-18 - art_sys_104: 4.46944999e-11 - art_sys_105: 1.07771087e-22 - art_sys_106: -1.79333000e-11 - art_sys_107: 5.65817356e-16 - art_sys_108: 2.99911893e-19 - art_sys_109: -1.46342828e-17 - art_sys_110: 4.97638211e-23 - art_sys_111: -6.66258300e-12 - art_sys_112: 2.79351733e-19 - art_sys_113: -2.72825402e-23 - art_sys_114: 2.33894466e-12 - art_sys_115: 8.62172104e-21 - art_sys_116: -8.36013110e-18 - art_sys_117: -2.74610883e-25 - art_sys_118: 9.87152845e-13 - art_sys_119: 4.17247140e-22 - art_sys_120: -3.57826909e-13 - art_sys_121: 2.52790822e-19 - art_sys_122: -1.20317582e-13 - art_sys_123: -2.78533151e-20 - art_sys_124: 4.00876407e-14 - art_sys_125: -1.30861158e-14 - art_sys_126: -1.92826399e-19 - art_sys_127: -3.41555088e-15 - art_sys_128: 2.37991243e-20 - art_sys_129: -3.39187838e-21 - art_sys_130: 5.83415090e-20 - art_sys_131: 2.21040119e-20 - art_sys_132: -1.15294201e-15 - art_sys_133: -4.51157776e-21 - art_sys_134: -4.83920979e-19 - art_sys_135: -1.97177987e-16 - art_sys_136: -3.54994452e-19 - art_sys_137: 2.09787971e-17 - art_sys_138: 9.54779573e-20 - art_sys_139: 3.32628270e-19 - art_sys_140: 1.78824930e-18 - art_sys_141: -1.56819586e-19 - art_sys_142: -0.0 - art_sys_143: 4.88145738e-19 - art_sys_144: 1.43251907e-19 - art_sys_145: 7.59074886e-20 - art_sys_146: 3.55842773e-24 - art_sys_147: 5.21935298e-25 - art_sys_148: -2.62871250e-22 - art_sys_149: -6.16031246e-23 - art_sys_150: -5.57677735e-24 - art_sys_151: 2.79169187e-22 - art_sys_152: -1.81052143e-22 - art_sys_153: -9.40994322e-24 - art_sys_154: 6.39689566e-23 - art_sys_155: 1.19653582e-22 - art_sys_156: 4.28375211e-22 - art_sys_157: 4.59347863e-23 - art_sys_158: -0.0 - art_sys_159: 2.15535503e-20 - art_sys_160: 2.15535503e-20 - art_sys_161: -6.44962023e-22 - art_sys_162: 2.67561974e-34 - art_sys_163: 0.0 - art_sys_164: 1.71189024e-34 - art_sys_165: 1.55591007e-29 - art_sys_166: -2.70028429e-30 - art_sys_167: 3.59003202e-31 - art_sys_168: 3.21748184e-30 - art_sys_169: -1.76706215e-30 - art_sys_170: -1.71775636e-29 - art_sys_171: -1.02011512e-28 - art_sys_172: 6.99955318e-29 - art_sys_173: -3.11571340e-29 - art_sys_174: 1.21966928e-34 - art_sys_175: 7.25471171e-30 - art_sys_176: -8.74237940e-30 - art_sys_177: 1.53111449e-30 - art_sys_178: 1.13192514e-31 - art_sys_179: 1.76751045e-32 - art_sys_180: -9.83385785e-33 - art_sys_181: -3.10307385e-33 - art_sys_182: -6.73370147e-33 - art_sys_183: -4.87972047e-35 - art_sys_184: 1.84205280e-37 - art_sys_185: 4.59829698e-36 + art_sys_27: -3.05242866e-16 + art_sys_28: 6.03545637e-16 + art_sys_29: 3.03017598e-17 + art_sys_30: 3.03805484e-03 + art_sys_31: -1.04161666e-14 + art_sys_32: -1.59782345e-17 + art_sys_33: -2.88771409e-04 + art_sys_34: -1.29400990e-04 + art_sys_35: 6.85862089e-15 + art_sys_36: -5.35599810e-17 + art_sys_37: 2.79411055e-17 + art_sys_38: 1.71205652e-18 + art_sys_39: -2.80859245e-18 + art_sys_40: 1.68309230e-18 + art_sys_41: -5.01116226e-18 + art_sys_42: -2.62386182e-18 + art_sys_43: -3.46874840e-18 + art_sys_44: 6.12456279e-20 + art_sys_45: 5.56840720e-19 + art_sys_46: 1.07271634e-18 + art_sys_47: 4.52734094e-14 + art_sys_48: -3.45359100e-05 + art_sys_49: 4.13478381e-13 + art_sys_50: -3.05769137e-20 + art_sys_51: 3.30783930e-20 + art_sys_52: -9.92406287e-14 + art_sys_53: -2.77904208e-06 + art_sys_54: 1.06023979e-14 + art_sys_55: -1.24319187e-06 + art_sys_56: 4.69915998e-15 + art_sys_57: 2.68608908e-19 + art_sys_58: 5.37820087e-21 + art_sys_59: 2.72297055e-07 + art_sys_60: 4.34348067e-14 + art_sys_61: 1.72554660e-20 + art_sys_62: 1.15327448e-15 + art_sys_63: -1.76056887e-15 + art_sys_64: 6.60216373e-17 + art_sys_65: -1.86823034e-17 + art_sys_66: -4.42977897e-18 + art_sys_67: -6.89522653e-18 + art_sys_68: 2.19523542e-20 + art_sys_69: -5.03480358e-21 + art_sys_70: -2.22442365e-21 + art_sys_71: -8.31518290e-22 + art_sys_72: -7.15750826e-23 + art_sys_73: -7.82965402e-23 + art_sys_74: 1.25193228e-18 + art_sys_75: -3.17271173e-22 + art_sys_76: 1.08851272e-19 + art_sys_77: 3.84315875e-20 + art_sys_78: -1.49721741e-20 + art_sys_79: 1.29195494e-21 + art_sys_80: 3.26642009e-21 + art_sys_81: -3.32611479e-18 + art_sys_82: 7.04115185e-15 + art_sys_83: -2.91904989e-21 + art_sys_84: -6.68705556e-22 + art_sys_85: -9.86657155e-22 + art_sys_86: 2.52853585e-22 + art_sys_87: 2.24383184e-19 + art_sys_88: -1.17055172e-19 + art_sys_89: 4.17458643e-23 + art_sys_90: 3.03616147e-19 + art_sys_91: -1.25633112e-09 + art_sys_92: -5.23074351e-24 + art_sys_93: 1.46135540e-23 + art_sys_94: -1.08497621e-20 + art_sys_95: -2.18995066e-16 + art_sys_96: 6.24206577e-10 + art_sys_97: 1.56927803e-16 + art_sys_98: -3.33587049e-17 + art_sys_99: 4.02080178e-10 + art_sys_100: -3.58298622e-16 + art_sys_101: -2.04629275e-10 + art_sys_102: 2.59534418e-18 + art_sys_103: -9.04187205e-17 + art_sys_104: 1.04930313e-10 + art_sys_105: 1.00974110e-22 + art_sys_106: -4.46913081e-11 + art_sys_107: -2.80367248e-18 + art_sys_108: -5.25323613e-22 + art_sys_109: 6.27932599e-23 + art_sys_110: -4.00923284e-17 + art_sys_111: 1.79331759e-11 + art_sys_112: 6.74132911e-18 + art_sys_113: 5.71055211e-16 + art_sys_114: 4.42986329e-24 + art_sys_115: -6.66249002e-12 + art_sys_116: 1.81068238e-18 + art_sys_117: 1.25008757e-22 + art_sys_118: 2.33962856e-12 + art_sys_119: 8.05972589e-19 + art_sys_120: -8.15019387e-18 + art_sys_121: 1.46272923e-23 + art_sys_122: -9.87754791e-13 + art_sys_123: -1.12075920e-19 + art_sys_124: 3.57712294e-13 + art_sys_125: -3.45508629e-24 + art_sys_126: -2.34756085e-18 + art_sys_127: 4.61339615e-21 + art_sys_128: -1.20359958e-13 + art_sys_129: 2.98740260e-24 + art_sys_130: -4.60983834e-20 + art_sys_131: -5.04634283e-23 + art_sys_132: -4.00907749e-14 + art_sys_133: 8.84852423e-20 + art_sys_134: -3.68969405e-19 + art_sys_135: 1.31185986e-14 + art_sys_136: 8.96179094e-24 + art_sys_137: -3.45063991e-21 + art_sys_138: 3.41695081e-15 + art_sys_139: 7.47783181e-20 + art_sys_140: -7.67724591e-24 + art_sys_141: 2.32137115e-20 + art_sys_142: 1.15697671e-15 + art_sys_143: 2.13328417e-20 + art_sys_144: -3.63553199e-22 + art_sys_145: 1.94543958e-16 + art_sys_146: -1.18792612e-20 + art_sys_147: 1.34717427e-22 + art_sys_148: -4.56585780e-24 + art_sys_149: -1.96934748e-17 + art_sys_150: 5.66833208e-19 + art_sys_151: 3.06241706e-20 + art_sys_152: -5.35358474e-22 + art_sys_153: 7.81298387e-20 + art_sys_154: -4.80541969e-19 + art_sys_155: -2.85909833e-22 + art_sys_156: 0.0 + art_sys_157: -2.18350914e-19 + art_sys_158: 0.0 + art_sys_159: 3.47250087e-20 + art_sys_160: -4.51886777e-21 + art_sys_161: -3.88547921e-21 + art_sys_162: -3.88547921e-21 + art_sys_163: -4.01146418e-21 + art_sys_164: -4.01146418e-21 + art_sys_165: 4.52479993e-35 + art_sys_166: -1.50189281e-35 + art_sys_167: -0.0 + art_sys_168: -2.50663008e-30 + art_sys_169: 8.04096231e-30 + art_sys_170: -3.12198443e-30 + art_sys_171: -1.83066755e-28 + art_sys_172: 1.90693507e-29 + art_sys_173: 1.54696448e-30 + art_sys_174: -1.26303885e-30 + art_sys_175: -1.41226416e-31 + art_sys_176: -1.66054121e-33 + art_sys_177: 1.47604132e-34 + art_sys_178: 1.11889021e-34 + art_sys_179: 8.71167640e-35 + art_sys_180: 9.03126712e-34 + art_sys_181: -5.62782143e-34 + art_sys_182: 4.39249751e-33 + art_sys_183: 9.88289782e-35 + art_sys_184: -7.05632297e-37 + art_sys_185: -1.67900937e-37 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -6059,191 +6059,191 @@ bins: RelativeStatFSR-: -1.27827394e-01 luminosity_uncertainty: 1.05101880e+01 uncorrelated_uncertainty: 4.04238 -- art_sys_1: -5.60853194e-33 - art_sys_2: 3.21539596e-20 - art_sys_3: -6.19464510e-22 +- art_sys_1: 5.31809343e-33 + art_sys_2: -2.00229013e-21 + art_sys_3: -6.19464518e-22 art_sys_4: 1.02610600e-02 - art_sys_5: -4.04918648e-18 - art_sys_6: 1.23428610e-19 + art_sys_5: -2.90612480e-18 + art_sys_6: 6.45578923e-20 art_sys_7: -9.31355577e-02 - art_sys_8: 4.95532231e-17 + art_sys_8: 5.24447131e-17 art_sys_9: 1.44278694e-01 - art_sys_10: 8.96375159e-19 - art_sys_11: -3.12307030e-17 + art_sys_10: 9.85378186e-19 + art_sys_11: -2.98066506e-17 art_sys_12: -1.47170196e-02 - art_sys_13: -3.65237721e-20 - art_sys_14: -6.17935173e-01 - art_sys_15: 5.23407878e-17 - art_sys_16: -6.77278892e-01 - art_sys_17: 2.63563213e-17 - art_sys_18: -5.30590864e-16 - art_sys_19: 1.83199525e+00 - art_sys_20: 1.39285725e-16 - art_sys_21: 4.64908246e-16 - art_sys_22: -5.15428012e-17 + art_sys_13: 1.80935918e-16 + art_sys_14: 6.17935173e-01 + art_sys_15: 4.14664631e-16 + art_sys_16: 6.77278892e-01 + art_sys_17: 3.54067252e-17 + art_sys_18: -4.43558207e-16 + art_sys_19: -1.83199525e+00 + art_sys_20: 1.13542360e-16 + art_sys_21: -4.07999730e-16 + art_sys_22: -1.84480282e-17 art_sys_23: 7.48590970e-01 - art_sys_24: -8.96140242e-15 - art_sys_25: -1.18745823e-02 + art_sys_24: -9.09775435e-15 + art_sys_25: 1.18745823e-02 art_sys_26: 1.39495047e-02 - art_sys_27: -2.16203024e-16 - art_sys_28: -6.32822292e-15 - art_sys_29: -5.55875897e-15 - art_sys_30: -1.01945788e-15 - art_sys_31: -5.79646235e-17 - art_sys_32: 8.44198607e-16 - art_sys_33: -2.82308621e-17 - art_sys_34: -2.55025455e-17 - art_sys_35: 2.77778448e-17 - art_sys_36: 2.69580226e-15 - art_sys_37: -7.04200288e-03 - art_sys_38: -1.21528522e-18 - art_sys_39: -1.26081021e-14 - art_sys_40: 4.48493852e-14 - art_sys_41: -7.68546398e-04 - art_sys_42: 2.20021695e-18 - art_sys_43: -3.67068330e-04 - art_sys_44: 4.93662992e-19 - art_sys_45: -1.42364364e-14 - art_sys_46: -1.08786876e-15 - art_sys_47: -1.73909195e-18 - art_sys_48: 1.01416352e-04 - art_sys_49: -1.09314354e-13 - art_sys_50: 1.19700754e-19 - art_sys_51: 3.15842414e-19 - art_sys_52: 8.84117225e-06 - art_sys_53: 5.33537761e-14 - art_sys_54: -2.54839074e-15 - art_sys_55: -3.93103209e-06 - art_sys_56: -2.24473543e-14 - art_sys_57: 1.43463208e-16 - art_sys_58: 9.93564568e-17 - art_sys_59: 2.47624559e-17 - art_sys_60: -1.29654025e-16 - art_sys_61: 8.61324100e-18 - art_sys_62: -5.55532772e-19 - art_sys_63: 3.34722361e-19 - art_sys_64: 1.63965553e-20 - art_sys_65: -1.17293846e-19 - art_sys_66: -3.84396281e-19 - art_sys_67: 5.82723737e-21 - art_sys_68: 9.41810503e-21 - art_sys_69: 1.18940342e-15 - art_sys_70: -8.78959798e-07 - art_sys_71: 1.66693521e-14 - art_sys_72: 4.94704387e-15 - art_sys_73: -1.57454546e-16 - art_sys_74: -2.52114501e-14 - art_sys_75: -4.74382961e-20 - art_sys_76: 3.89430306e-19 - art_sys_77: -2.71814335e-19 - art_sys_78: 4.18557721e-20 - art_sys_79: 4.97031599e-18 - art_sys_80: -3.17425132e-14 - art_sys_81: 3.99496053e-20 - art_sys_82: 8.10438984e-21 - art_sys_83: -5.42303888e-21 - art_sys_84: -1.92791517e-17 - art_sys_85: -8.45111876e-21 - art_sys_86: -9.56394827e-22 - art_sys_87: -5.65672461e-20 - art_sys_88: 2.14369013e-22 - art_sys_89: -1.68657293e-22 - art_sys_90: -5.50652964e-09 - art_sys_91: 1.97271183e-09 - art_sys_92: 5.33459348e-17 - art_sys_93: 6.82497249e-16 - art_sys_94: -1.74233792e-16 - art_sys_95: -1.52859471e-09 - art_sys_96: -9.66617522e-22 - art_sys_97: -1.96912978e-16 - art_sys_98: 7.34579038e-10 - art_sys_99: -1.14281277e-15 - art_sys_100: 1.08025690e-17 - art_sys_101: -3.79312044e-10 - art_sys_102: 1.29382245e-22 - art_sys_103: -1.06280647e-17 - art_sys_104: -1.60982955e-10 - art_sys_105: -3.24622774e-22 - art_sys_106: 6.43249040e-11 - art_sys_107: -2.13901089e-15 - art_sys_108: -1.06871398e-18 - art_sys_109: 5.24229620e-17 - art_sys_110: -1.87971449e-22 - art_sys_111: 2.39034171e-11 - art_sys_112: -9.95974573e-19 - art_sys_113: 6.33686965e-23 - art_sys_114: -8.37021024e-12 - art_sys_115: -3.06596980e-20 - art_sys_116: 2.98542938e-17 - art_sys_117: -4.54905137e-24 - art_sys_118: -3.53102365e-12 - art_sys_119: -1.51675644e-21 - art_sys_120: 1.27899571e-12 - art_sys_121: -9.03458130e-19 - art_sys_122: 4.29658615e-13 - art_sys_123: 9.93357346e-20 - art_sys_124: -1.43132257e-13 - art_sys_125: 4.66993037e-14 - art_sys_126: 6.87664738e-19 - art_sys_127: 1.21867757e-14 - art_sys_128: -8.48401888e-20 - art_sys_129: 1.21074486e-20 - art_sys_130: -2.08063450e-19 - art_sys_131: -7.88279483e-20 - art_sys_132: 4.11301664e-15 - art_sys_133: 1.61388225e-20 - art_sys_134: 1.72610607e-18 - art_sys_135: 7.03285394e-16 - art_sys_136: 1.26618077e-18 - art_sys_137: -7.48177169e-17 - art_sys_138: -3.40517276e-19 - art_sys_139: -1.18631341e-18 - art_sys_140: -6.60787668e-18 - art_sys_141: 5.59231919e-19 - art_sys_142: 0.0 - art_sys_143: -1.74110552e-18 - art_sys_144: -5.10981050e-19 - art_sys_145: -2.70649686e-19 - art_sys_146: -1.08339282e-23 - art_sys_147: -1.55801273e-24 - art_sys_148: 9.35950776e-22 - art_sys_149: 2.16967414e-22 - art_sys_150: 2.00650673e-23 - art_sys_151: -9.95896723e-22 - art_sys_152: 6.45677767e-22 - art_sys_153: 3.34664064e-23 - art_sys_154: -2.28160684e-22 - art_sys_155: -4.26651082e-22 - art_sys_156: -1.52769510e-21 - art_sys_157: -1.63771235e-22 - art_sys_158: 0.0 - art_sys_159: -7.68705401e-20 - art_sys_160: -7.68705401e-20 - art_sys_161: 2.29979680e-21 - art_sys_162: -9.54102279e-34 - art_sys_163: -0.0 - art_sys_164: -6.10454859e-34 - art_sys_165: -3.98484105e-29 - art_sys_166: 4.18727659e-30 - art_sys_167: 1.11240862e-30 - art_sys_168: -8.06834934e-30 - art_sys_169: 4.04690831e-30 - art_sys_170: 3.98876797e-29 - art_sys_171: 2.41876560e-28 - art_sys_172: -1.61336622e-28 - art_sys_173: 6.76129741e-29 - art_sys_174: -4.34919797e-34 - art_sys_175: -1.69303850e-29 - art_sys_176: 2.06099028e-29 - art_sys_177: -3.61240718e-30 - art_sys_178: -2.57832995e-31 - art_sys_179: -4.09656317e-32 - art_sys_180: 2.25835158e-32 - art_sys_181: 7.54443697e-33 - art_sys_182: 1.55598604e-32 - art_sys_183: 1.13243321e-34 - art_sys_184: -3.28736106e-37 - art_sys_185: -1.63957635e-35 + art_sys_27: 2.06472165e-16 + art_sys_28: -6.35358593e-15 + art_sys_29: -7.44608391e-17 + art_sys_30: -7.04200288e-03 + art_sys_31: 1.26290087e-14 + art_sys_32: 1.95783917e-17 + art_sys_33: 7.68546398e-04 + art_sys_34: 3.67068330e-04 + art_sys_35: -8.65085570e-15 + art_sys_36: 2.98545257e-16 + art_sys_37: -7.94832180e-17 + art_sys_38: -5.22644355e-18 + art_sys_39: 8.08512574e-18 + art_sys_40: -5.51992081e-18 + art_sys_41: 1.25507343e-17 + art_sys_42: 4.69849139e-18 + art_sys_43: 7.30654441e-18 + art_sys_44: -1.16336283e-18 + art_sys_45: -5.08916719e-19 + art_sys_46: -2.32486881e-18 + art_sys_47: -1.32947641e-13 + art_sys_48: 1.01416353e-04 + art_sys_49: -1.21421810e-12 + art_sys_50: 5.07575203e-20 + art_sys_51: -1.91387116e-19 + art_sys_52: 2.92276714e-13 + art_sys_53: 8.84117234e-06 + art_sys_54: -3.37112184e-14 + art_sys_55: 3.93103209e-06 + art_sys_56: -1.39894749e-14 + art_sys_57: -2.87656878e-19 + art_sys_58: -1.67354417e-20 + art_sys_59: -8.78959824e-07 + art_sys_60: -1.39886137e-13 + art_sys_61: -2.27276168e-20 + art_sys_62: -3.63629475e-15 + art_sys_63: 6.17880757e-15 + art_sys_64: -1.69717471e-16 + art_sys_65: 4.13918740e-17 + art_sys_66: 1.03821673e-17 + art_sys_67: 1.59291525e-17 + art_sys_68: -4.18271349e-20 + art_sys_69: 1.05115099e-20 + art_sys_70: 6.70735437e-21 + art_sys_71: 8.46852010e-22 + art_sys_72: 4.07878860e-22 + art_sys_73: 1.40987753e-22 + art_sys_74: -3.85643800e-18 + art_sys_75: 7.78806565e-22 + art_sys_76: -4.48404312e-19 + art_sys_77: -1.30659581e-19 + art_sys_78: 5.27757747e-20 + art_sys_79: -2.83342873e-21 + art_sys_80: -9.47592540e-21 + art_sys_81: 1.05114061e-17 + art_sys_82: -2.47200014e-14 + art_sys_83: 1.36044823e-20 + art_sys_84: 1.99729859e-21 + art_sys_85: 4.21658860e-21 + art_sys_86: -9.97822948e-22 + art_sys_87: -8.02314033e-19 + art_sys_88: 4.19815755e-19 + art_sys_89: -2.67813337e-22 + art_sys_90: -1.08442837e-18 + art_sys_91: 5.50655571e-09 + art_sys_92: 4.15514613e-23 + art_sys_93: -5.09383979e-23 + art_sys_94: 3.86437501e-20 + art_sys_95: 8.49162396e-16 + art_sys_96: -1.97274123e-09 + art_sys_97: -4.99559138e-16 + art_sys_98: 1.20105908e-16 + art_sys_99: -1.52859257e-09 + art_sys_100: 1.28610906e-15 + art_sys_101: 7.34578841e-10 + art_sys_102: -9.43096062e-18 + art_sys_103: 3.28362124e-16 + art_sys_104: -3.79302708e-10 + art_sys_105: -3.55655869e-22 + art_sys_106: 1.60971424e-10 + art_sys_107: 1.00110828e-17 + art_sys_108: 1.83003492e-21 + art_sys_109: -2.20279486e-22 + art_sys_110: 1.43380263e-16 + art_sys_111: -6.43244410e-11 + art_sys_112: -2.41175965e-17 + art_sys_113: -2.07493137e-15 + art_sys_114: -1.46972757e-23 + art_sys_115: 2.39030835e-11 + art_sys_116: -6.46572712e-18 + art_sys_117: -4.46577599e-22 + art_sys_118: -8.37265519e-12 + art_sys_119: -2.87736526e-18 + art_sys_120: 2.90975905e-17 + art_sys_121: -3.47811680e-23 + art_sys_122: 3.53317845e-12 + art_sys_123: 3.99786320e-19 + art_sys_124: -1.27858629e-12 + art_sys_125: 1.06453239e-23 + art_sys_126: 8.37726842e-18 + art_sys_127: -1.64528496e-20 + art_sys_128: 4.29809952e-13 + art_sys_129: -1.13388828e-23 + art_sys_130: 1.64387067e-19 + art_sys_131: 1.80365481e-22 + art_sys_132: 1.43143457e-13 + art_sys_133: -3.15578745e-19 + art_sys_134: 1.31582104e-18 + art_sys_135: -4.68152718e-14 + art_sys_136: -3.22466332e-23 + art_sys_137: 1.23061998e-20 + art_sys_138: -1.21917762e-14 + art_sys_139: -2.66711569e-19 + art_sys_140: 2.73766118e-23 + art_sys_141: -8.28207651e-20 + art_sys_142: -4.12741202e-15 + art_sys_143: -7.60959474e-20 + art_sys_144: 1.29696525e-21 + art_sys_145: -6.93889686e-16 + art_sys_146: 4.23684136e-20 + art_sys_147: -4.80526775e-22 + art_sys_148: 1.63157160e-23 + art_sys_149: 7.02333967e-17 + art_sys_150: -2.02151391e-18 + art_sys_151: -1.09234372e-19 + art_sys_152: 1.90929647e-21 + art_sys_153: -2.78657220e-19 + art_sys_154: 1.77660918e-18 + art_sys_155: 1.01959277e-21 + art_sys_156: -0.0 + art_sys_157: 7.78913668e-19 + art_sys_158: -0.0 + art_sys_159: -1.23859339e-19 + art_sys_160: 1.61194339e-20 + art_sys_161: 1.38573621e-20 + art_sys_162: 1.38573621e-20 + art_sys_163: 1.43077329e-20 + art_sys_164: 1.43077329e-20 + art_sys_165: -1.61384867e-34 + art_sys_166: 5.35675250e-35 + art_sys_167: 0.0 + art_sys_168: 5.37753392e-30 + art_sys_169: -1.83260507e-29 + art_sys_170: 6.10068966e-30 + art_sys_171: 4.16201076e-28 + art_sys_172: -4.49089734e-29 + art_sys_173: -3.64202933e-30 + art_sys_174: 2.96567984e-30 + art_sys_175: 3.35504146e-31 + art_sys_176: 2.27283214e-33 + art_sys_177: -3.93100071e-34 + art_sys_178: -2.23440720e-34 + art_sys_179: -3.10647258e-34 + art_sys_180: -3.22129321e-33 + art_sys_181: 4.51436101e-33 + art_sys_182: -9.85957694e-33 + art_sys_183: -2.31712577e-34 + art_sys_184: 1.79584369e-36 + art_sys_185: 5.95788857e-37 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -6350,191 +6350,191 @@ bins: RelativeStatFSR-: -7.11901949e-02 luminosity_uncertainty: 5.39606600e+00 uncorrelated_uncertainty: 2.07541000e+00 -- art_sys_1: -2.96848767e-33 - art_sys_2: 1.70147264e-20 - art_sys_3: -1.37084127e-22 +- art_sys_1: 2.81349202e-33 + art_sys_2: -1.05954039e-21 + art_sys_3: -1.37084131e-22 art_sys_4: 5.42978630e-03 - art_sys_5: -1.53066740e-18 - art_sys_6: 6.56189168e-20 + art_sys_5: -9.27510643e-19 + art_sys_6: 3.46678946e-20 art_sys_7: -7.55363663e-03 - art_sys_8: 1.23223090e-17 + art_sys_8: 1.24047826e-17 art_sys_9: 2.52008319e-02 - art_sys_10: 2.55905756e-19 - art_sys_11: -8.30612375e-18 + art_sys_10: 6.56181301e-20 + art_sys_11: -8.67163520e-18 art_sys_12: -1.69847070e-02 - art_sys_13: 4.14648681e-19 - art_sys_14: -1.52033765e-02 - art_sys_15: -2.09620940e-16 - art_sys_16: 1.30679939e-01 - art_sys_17: -1.47246110e-18 - art_sys_18: -2.78917164e-16 - art_sys_19: 9.96196228e-02 - art_sys_20: 5.94943987e-18 - art_sys_21: 9.94953206e-18 - art_sys_22: -7.17449053e-18 + art_sys_13: 4.61366692e-18 + art_sys_14: 1.52033765e-02 + art_sys_15: 1.25377702e-16 + art_sys_16: -1.30679939e-01 + art_sys_17: -2.83230326e-18 + art_sys_18: -2.39658965e-16 + art_sys_19: -9.96196228e-02 + art_sys_20: 2.82635992e-17 + art_sys_21: -1.78067178e-17 + art_sys_22: -6.92422829e-18 art_sys_23: 1.50400337e-01 - art_sys_24: -1.45515854e-15 - art_sys_25: 1.79909351e-01 + art_sys_24: -1.46423238e-15 + art_sys_25: -1.79909351e-01 art_sys_26: -5.52519844e-02 - art_sys_27: 3.91794994e-16 - art_sys_28: 5.12733729e-14 - art_sys_29: 3.34413222e-14 - art_sys_30: 5.51365921e-15 - art_sys_31: 3.92424371e-16 - art_sys_32: -4.60965104e-15 - art_sys_33: 1.82605010e-16 - art_sys_34: 1.10715800e-16 - art_sys_35: -2.97856301e-17 - art_sys_36: -1.47082424e-14 - art_sys_37: 3.86479995e-02 - art_sys_38: 1.44615643e-17 - art_sys_39: 3.53621189e-14 - art_sys_40: -2.14030281e-13 - art_sys_41: 3.66843287e-03 - art_sys_42: -1.77141219e-17 - art_sys_43: 1.82187495e-03 - art_sys_44: 3.62290638e-18 - art_sys_45: 5.18707561e-14 - art_sys_46: 5.50752092e-15 - art_sys_47: 8.43090869e-18 - art_sys_48: -5.14758897e-04 - art_sys_49: 5.52789173e-13 - art_sys_50: -7.95652229e-19 - art_sys_51: -2.39979125e-19 - art_sys_52: -4.28015394e-05 - art_sys_53: -2.69158915e-13 - art_sys_54: 1.29072315e-14 - art_sys_55: 1.98817095e-05 - art_sys_56: 1.13277529e-13 - art_sys_57: -7.75501880e-16 - art_sys_58: -5.40294909e-16 - art_sys_59: -1.29306741e-16 - art_sys_60: 6.54129141e-16 - art_sys_61: -4.64924650e-17 - art_sys_62: 3.08085591e-18 - art_sys_63: -1.67449061e-18 - art_sys_64: -1.02765417e-19 - art_sys_65: 5.90247328e-19 - art_sys_66: 1.94822569e-18 - art_sys_67: -2.92758355e-20 - art_sys_68: -4.67157748e-20 - art_sys_69: -5.34780349e-15 - art_sys_70: 4.44831995e-06 - art_sys_71: -7.65251682e-14 - art_sys_72: -2.39560675e-14 - art_sys_73: 8.20997603e-16 - art_sys_74: 1.16903222e-13 - art_sys_75: 2.55536352e-19 - art_sys_76: -1.56525691e-18 - art_sys_77: 1.47941005e-18 - art_sys_78: -1.92292769e-19 - art_sys_79: -2.23790470e-17 - art_sys_80: 1.44053272e-13 - art_sys_81: -2.12833638e-19 - art_sys_82: -3.60572630e-20 - art_sys_83: 2.40812767e-20 - art_sys_84: 1.06692697e-16 - art_sys_85: 4.17054177e-20 - art_sys_86: 5.67954288e-21 - art_sys_87: 3.02210776e-19 - art_sys_88: -1.34847968e-21 - art_sys_89: 8.44390954e-22 - art_sys_90: 2.47674471e-08 - art_sys_91: -1.13248657e-08 - art_sys_92: -2.76198245e-16 - art_sys_93: -3.07927241e-15 - art_sys_94: 9.09136557e-16 - art_sys_95: 7.50987167e-09 - art_sys_96: 5.08312534e-21 - art_sys_97: 1.02192420e-15 - art_sys_98: -3.84030009e-09 - art_sys_99: 5.85217548e-15 - art_sys_100: -5.65457875e-17 - art_sys_101: 1.96138184e-09 - art_sys_102: -6.63477950e-22 - art_sys_103: 5.60314410e-17 - art_sys_104: 8.39791164e-10 - art_sys_105: 1.71311083e-21 - art_sys_106: -3.36628064e-10 - art_sys_107: 1.06717271e-14 - art_sys_108: 5.64424175e-18 - art_sys_109: -2.75289803e-16 - art_sys_110: 9.80275619e-22 - art_sys_111: -1.25244352e-10 - art_sys_112: 5.25907469e-18 - art_sys_113: -3.35851449e-22 - art_sys_114: 4.39912164e-11 - art_sys_115: 1.61846803e-19 - art_sys_116: -1.57263326e-16 - art_sys_117: 2.17798417e-23 - art_sys_118: 1.85658098e-11 - art_sys_119: 8.00445626e-21 - art_sys_120: -6.73337181e-12 - art_sys_121: 4.75678666e-18 - art_sys_122: -2.26395754e-12 - art_sys_123: -5.24292810e-19 - art_sys_124: 7.54443291e-13 - art_sys_125: -2.46294797e-13 - art_sys_126: -3.62925321e-18 - art_sys_127: -6.42845946e-14 - art_sys_128: 4.47797179e-19 - art_sys_129: -6.38949436e-20 - art_sys_130: 1.09813966e-18 - art_sys_131: 4.16025132e-19 - art_sys_132: -2.17014731e-14 - art_sys_133: -8.49195069e-20 - art_sys_134: -9.10867737e-18 - art_sys_135: -3.71144284e-15 - art_sys_136: -6.68199687e-18 - art_sys_137: 3.94866890e-16 - art_sys_138: 1.79712094e-18 - art_sys_139: 6.26088117e-18 - art_sys_140: 3.55676945e-17 - art_sys_141: -2.95159052e-18 - art_sys_142: -0.0 - art_sys_143: 9.18821839e-18 - art_sys_144: 2.69647603e-18 - art_sys_145: 1.42860522e-18 - art_sys_146: 5.74277007e-23 - art_sys_147: 8.40531296e-24 - art_sys_148: -4.94563751e-21 - art_sys_149: -1.14632307e-21 - art_sys_150: -1.05804968e-22 - art_sys_151: 5.25499639e-21 - art_sys_152: -3.40695019e-21 - art_sys_153: -1.76620149e-22 - art_sys_154: 1.20409195e-21 - art_sys_155: 2.25198226e-21 - art_sys_156: 8.06284837e-21 - art_sys_157: 8.64483161e-22 - art_sys_158: -0.0 - art_sys_159: 4.05694788e-19 - art_sys_160: 4.05694788e-19 - art_sys_161: -1.21390009e-20 - art_sys_162: 5.03591686e-33 - art_sys_163: 0.0 - art_sys_164: 3.22205215e-33 - art_sys_165: 2.11428848e-28 - art_sys_166: -2.39949213e-29 - art_sys_167: -5.05427107e-30 - art_sys_168: 4.35435921e-29 - art_sys_169: -2.22986736e-29 - art_sys_170: -2.18608828e-28 - art_sys_171: -1.23490448e-27 - art_sys_172: 8.48474859e-28 - art_sys_173: -3.69835431e-28 - art_sys_174: 2.29555589e-33 - art_sys_175: 9.12066083e-29 - art_sys_176: -1.09917090e-28 - art_sys_177: 1.91350023e-29 - art_sys_178: 1.38130024e-30 - art_sys_179: 2.20908321e-31 - art_sys_180: -1.21649496e-31 - art_sys_181: -3.97430860e-32 - art_sys_182: -8.44708712e-32 - art_sys_183: -6.13980126e-34 - art_sys_184: 1.82985149e-36 - art_sys_185: 8.65455741e-35 + art_sys_27: -3.48921650e-16 + art_sys_28: 5.13630167e-14 + art_sys_29: 4.77898523e-16 + art_sys_30: 3.86479995e-02 + art_sys_31: -3.54483933e-14 + art_sys_32: -2.91608625e-17 + art_sys_33: -3.66843287e-03 + art_sys_34: -1.82187495e-03 + art_sys_35: 2.41629895e-14 + art_sys_36: -1.08302475e-15 + art_sys_37: 4.50285919e-16 + art_sys_38: -1.36195352e-17 + art_sys_39: -4.16347302e-17 + art_sys_40: 2.18829597e-17 + art_sys_41: -6.94295240e-17 + art_sys_42: -2.90569409e-17 + art_sys_43: -4.11520400e-17 + art_sys_44: -9.62336930e-18 + art_sys_45: 4.65403672e-18 + art_sys_46: 1.39691143e-17 + art_sys_47: 6.74799510e-13 + art_sys_48: -5.14758899e-04 + art_sys_49: 6.16295017e-12 + art_sys_50: -6.65267828e-19 + art_sys_51: -8.73005778e-19 + art_sys_52: -1.48515495e-12 + art_sys_53: -4.28015398e-05 + art_sys_54: 1.63865083e-13 + art_sys_55: -1.98817095e-05 + art_sys_56: 7.11916379e-14 + art_sys_57: 3.34185075e-18 + art_sys_58: 5.97677984e-20 + art_sys_59: 4.44832009e-06 + art_sys_60: 7.08671958e-13 + art_sys_61: -2.75654484e-20 + art_sys_62: 1.75019799e-14 + art_sys_63: -2.96611955e-14 + art_sys_64: 8.50833372e-16 + art_sys_65: -2.21549718e-16 + art_sys_66: -5.89334537e-17 + art_sys_67: -8.62583944e-17 + art_sys_68: 2.37067440e-19 + art_sys_69: -5.63262536e-20 + art_sys_70: -3.44337464e-20 + art_sys_71: -7.56297968e-21 + art_sys_72: -1.74780066e-21 + art_sys_73: -7.39949949e-22 + art_sys_74: 2.25648747e-17 + art_sys_75: -4.25587363e-21 + art_sys_76: 2.07562419e-18 + art_sys_77: 7.04010719e-19 + art_sys_78: -2.79799173e-19 + art_sys_79: 1.51813419e-20 + art_sys_80: 5.88431471e-20 + art_sys_81: -6.03586273e-17 + art_sys_82: 1.30862531e-13 + art_sys_83: -5.92571978e-20 + art_sys_84: -1.27545068e-20 + art_sys_85: -1.89168954e-20 + art_sys_86: 4.85073168e-21 + art_sys_87: 4.20876748e-18 + art_sys_88: -2.19518554e-18 + art_sys_89: 9.27220513e-22 + art_sys_90: 5.71708756e-18 + art_sys_91: -2.47675489e-08 + art_sys_92: -1.19230617e-22 + art_sys_93: 2.70166049e-22 + art_sys_94: -2.03707689e-19 + art_sys_95: -4.08069207e-15 + art_sys_96: 1.13250000e-08 + art_sys_97: 1.80541471e-15 + art_sys_98: -6.25481819e-16 + art_sys_99: 7.50986013e-09 + art_sys_100: -6.72498044e-15 + art_sys_101: -3.84029842e-09 + art_sys_102: 4.82359907e-17 + art_sys_103: -1.66402664e-15 + art_sys_104: 1.96133327e-09 + art_sys_105: 1.87362835e-21 + art_sys_106: -8.39731488e-10 + art_sys_107: -5.27604854e-17 + art_sys_108: -9.66873420e-21 + art_sys_109: 1.15812189e-21 + art_sys_110: -7.54088429e-16 + art_sys_111: 3.36625737e-10 + art_sys_112: 1.26787837e-16 + art_sys_113: 1.08941607e-14 + art_sys_114: 7.78441440e-23 + art_sys_115: -1.25242603e-10 + art_sys_116: 3.40702423e-17 + art_sys_117: 2.34010757e-21 + art_sys_118: 4.40040812e-11 + art_sys_119: 1.51699161e-17 + art_sys_120: -1.53400629e-16 + art_sys_121: 1.87217020e-22 + art_sys_122: -1.85771314e-11 + art_sys_123: -2.10972256e-18 + art_sys_124: 6.73121586e-12 + art_sys_125: -5.66081656e-23 + art_sys_126: -4.41834118e-17 + art_sys_127: 8.68554586e-20 + art_sys_128: -2.26475514e-12 + art_sys_129: 5.96833275e-23 + art_sys_130: -8.67607789e-19 + art_sys_131: -9.51709427e-22 + art_sys_132: -7.54502129e-13 + art_sys_133: 1.66554696e-18 + art_sys_134: -6.94553917e-18 + art_sys_135: 2.46906093e-13 + art_sys_136: 1.70148295e-22 + art_sys_137: -6.49594030e-20 + art_sys_138: 6.43109333e-14 + art_sys_139: 1.40754416e-18 + art_sys_140: -1.44491945e-22 + art_sys_141: 4.36941170e-19 + art_sys_142: 2.17774116e-14 + art_sys_143: 4.01554651e-19 + art_sys_144: -6.84303420e-21 + art_sys_145: 3.66186209e-15 + art_sys_146: -2.23591619e-19 + art_sys_147: 2.53587944e-21 + art_sys_148: -8.59955473e-23 + art_sys_149: -3.70673674e-16 + art_sys_150: 1.06690243e-17 + art_sys_151: 5.76454008e-19 + art_sys_152: -1.00766505e-20 + art_sys_153: 1.47061507e-18 + art_sys_154: -9.32715044e-18 + art_sys_155: -5.38128804e-21 + art_sys_156: 0.0 + art_sys_157: -4.11031614e-18 + art_sys_158: 0.0 + art_sys_159: 6.53639589e-19 + art_sys_160: -8.50637208e-20 + art_sys_161: -7.31340354e-20 + art_sys_162: -7.31340354e-20 + art_sys_163: -7.55076931e-20 + art_sys_164: -7.55076931e-20 + art_sys_165: 8.51698325e-34 + art_sys_166: -2.82699487e-34 + art_sys_167: -0.0 + art_sys_168: -2.93278793e-29 + art_sys_169: 1.02106726e-28 + art_sys_170: -3.90444272e-29 + art_sys_171: -2.30041683e-27 + art_sys_172: 2.41627678e-28 + art_sys_173: 1.98101869e-29 + art_sys_174: -1.60787063e-29 + art_sys_175: -1.75679881e-30 + art_sys_176: -2.71753777e-32 + art_sys_177: 2.20797049e-33 + art_sys_178: 1.14694649e-33 + art_sys_179: 1.63962539e-33 + art_sys_180: 1.69997564e-32 + art_sys_181: -2.19592700e-32 + art_sys_182: 5.14282405e-32 + art_sys_183: 1.23271031e-33 + art_sys_184: -9.52857246e-36 + art_sys_185: -3.14377970e-36 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -6641,191 +6641,191 @@ bins: RelativeStatFSR-: -4.08621452e-02 luminosity_uncertainty: 2.861872 uncorrelated_uncertainty: 1.10072 -- art_sys_1: -5.17154962e-34 - art_sys_2: 2.96500110e-21 - art_sys_3: -6.28013657e-23 +- art_sys_1: 4.90417872e-34 + art_sys_2: -1.84636434e-22 + art_sys_3: -6.28013665e-23 art_sys_4: 9.46199306e-04 - art_sys_5: 9.90988982e-20 - art_sys_6: 1.14303403e-20 + art_sys_5: 2.04272088e-19 + art_sys_6: 6.02008919e-21 art_sys_7: 1.27277464e-03 - art_sys_8: 3.88677092e-19 + art_sys_8: 3.65599552e-19 art_sys_9: 1.81268226e-05 - art_sys_10: 1.65685600e-21 - art_sys_11: 1.98865637e-18 + art_sys_10: -2.06229478e-20 + art_sys_11: 1.76208894e-18 art_sys_12: -2.00627235e-03 - art_sys_13: 5.75074581e-20 - art_sys_14: 3.26013776e-02 - art_sys_15: 1.61053098e-15 - art_sys_16: 4.82708788e-02 - art_sys_17: -1.73373513e-18 - art_sys_18: -1.27492792e-16 - art_sys_19: -1.12088467e-01 - art_sys_20: -9.28376834e-18 - art_sys_21: -1.08337308e-15 - art_sys_22: 7.65750896e-18 + art_sys_13: -9.52284762e-18 + art_sys_14: -3.26013776e-02 + art_sys_15: -1.63664990e-15 + art_sys_16: -4.82708788e-02 + art_sys_17: -2.41366597e-18 + art_sys_18: -1.31232368e-16 + art_sys_19: 1.12088467e-01 + art_sys_20: -6.34831755e-18 + art_sys_21: -1.02879652e-15 + art_sys_22: 5.34358795e-18 art_sys_23: -5.10416145e-02 - art_sys_24: 3.30327548e-16 - art_sys_25: 1.23529853e-01 + art_sys_24: 3.38918805e-16 + art_sys_25: -1.23529853e-01 art_sys_26: 9.01553811e-02 - art_sys_27: 1.26186639e-15 - art_sys_28: -7.79522311e-14 - art_sys_29: -4.75324081e-14 - art_sys_30: -9.74473081e-15 - art_sys_31: 5.42520321e-16 - art_sys_32: 6.32137197e-15 - art_sys_33: -4.65149227e-17 - art_sys_34: -3.48631985e-16 - art_sys_35: 1.08420049e-16 - art_sys_36: 1.96354366e-14 - art_sys_37: -5.16480003e-02 - art_sys_38: -4.31161005e-17 - art_sys_39: -1.16299324e-14 - art_sys_40: 5.49258116e-13 - art_sys_41: -9.41530793e-03 - art_sys_42: 1.92844871e-17 - art_sys_43: -4.24003911e-03 - art_sys_44: -7.90506327e-19 - art_sys_45: -8.35527843e-14 - art_sys_46: -1.46856857e-14 - art_sys_47: -1.00267879e-17 + art_sys_27: -1.25055735e-15 + art_sys_28: -7.80139315e-14 + art_sys_29: -6.50143025e-16 + art_sys_30: -5.16480003e-02 + art_sys_31: 1.17534428e-14 + art_sys_32: 1.62745161e-17 + art_sys_33: 9.41530793e-03 + art_sys_34: 4.24003911e-03 + art_sys_35: -1.91177997e-14 + art_sys_36: 3.14904431e-15 + art_sys_37: -1.21917177e-15 + art_sys_38: -1.15948541e-16 + art_sys_39: 1.09061778e-16 + art_sys_40: -7.05771800e-17 + art_sys_41: 1.68168045e-16 + art_sys_42: 4.32950219e-17 + art_sys_43: 5.12778760e-17 + art_sys_44: -2.07296927e-18 + art_sys_45: -7.27231216e-18 + art_sys_46: -1.82209421e-17 + art_sys_47: -1.82214477e-12 art_sys_48: 1.38999235e-03 - art_sys_49: -1.50442282e-12 - art_sys_50: 1.73342412e-18 - art_sys_51: 3.01494218e-18 - art_sys_52: 1.27410756e-04 - art_sys_53: 7.24587847e-13 - art_sys_54: -3.72873728e-14 - art_sys_55: -5.75089634e-05 - art_sys_56: -3.07582621e-13 - art_sys_57: 1.15685635e-15 - art_sys_58: 7.45444029e-16 - art_sys_59: 2.34260251e-16 - art_sys_60: -1.99461085e-15 - art_sys_61: 6.05917408e-17 - art_sys_62: -2.14966906e-18 - art_sys_63: 5.67143825e-18 - art_sys_64: -1.96089324e-19 - art_sys_65: -1.86566772e-18 - art_sys_66: -5.91132925e-18 - art_sys_67: 9.77980385e-20 - art_sys_68: 1.62617891e-19 - art_sys_69: 1.69891014e-14 - art_sys_70: -1.35464669e-05 - art_sys_71: 2.41579566e-13 - art_sys_72: 7.12046344e-14 - art_sys_73: -2.53260752e-15 - art_sys_74: -3.67552290e-13 - art_sys_75: -3.77882702e-19 - art_sys_76: 5.19882548e-18 - art_sys_77: -4.08466103e-18 - art_sys_78: 6.86963462e-19 - art_sys_79: 7.08431463e-17 - art_sys_80: -4.57391753e-13 - art_sys_81: 6.46704929e-19 - art_sys_82: 1.12499459e-19 - art_sys_83: -7.70280967e-20 - art_sys_84: -3.08931331e-16 - art_sys_85: -1.30201044e-19 - art_sys_86: -1.59846402e-20 - art_sys_87: -8.25310902e-19 - art_sys_88: -2.66479523e-21 - art_sys_89: -4.48915180e-21 - art_sys_90: -7.86690975e-08 - art_sys_91: 3.22241726e-08 - art_sys_92: 8.81546350e-16 - art_sys_93: 9.90808627e-15 - art_sys_94: -2.86463592e-15 - art_sys_95: -2.40138695e-08 - art_sys_96: -1.71868415e-20 - art_sys_97: -3.23982263e-15 - art_sys_98: 1.18277132e-08 - art_sys_99: -1.72495034e-14 - art_sys_100: 1.80353361e-16 - art_sys_101: -6.20036170e-09 - art_sys_102: 3.15260579e-21 - art_sys_103: -1.80091814e-16 - art_sys_104: -2.65001590e-09 - art_sys_105: -4.39729966e-21 - art_sys_106: 1.06967897e-09 - art_sys_107: -3.41984052e-14 - art_sys_108: -1.81540496e-17 - art_sys_109: 8.78878701e-16 - art_sys_110: -3.29568381e-21 - art_sys_111: 3.99429789e-10 - art_sys_112: -1.69399838e-17 - art_sys_113: 3.99956521e-22 - art_sys_114: -1.40555147e-10 - art_sys_115: -5.19214019e-19 - art_sys_116: 5.04695213e-16 - art_sys_117: -1.67075596e-22 - art_sys_118: -5.94682620e-11 - art_sys_119: -2.61078962e-20 - art_sys_120: 2.15925615e-11 - art_sys_121: -1.52635305e-17 - art_sys_122: 7.26928162e-12 - art_sys_123: 1.68767623e-18 - art_sys_124: -2.42449225e-12 - art_sys_125: 7.91807349e-13 - art_sys_126: 1.16832242e-17 - art_sys_127: 2.06787858e-13 - art_sys_128: -1.44079072e-18 - art_sys_129: 2.05896371e-19 - art_sys_130: -3.53478125e-18 - art_sys_131: -1.33891036e-18 - art_sys_132: 6.98181025e-14 - art_sys_133: 2.72076315e-19 - art_sys_134: 2.93111410e-17 - art_sys_135: 1.19439729e-14 - art_sys_136: 2.15041651e-17 - art_sys_137: -1.27095865e-15 - art_sys_138: -5.78435515e-18 - art_sys_139: -2.01514681e-17 - art_sys_140: -1.03030708e-16 - art_sys_141: 9.49930708e-18 - art_sys_142: 0.0 - art_sys_143: -2.95702651e-17 - art_sys_144: -8.67875170e-18 - art_sys_145: -4.59730034e-18 - art_sys_146: -1.46298321e-22 - art_sys_147: -2.10955305e-23 - art_sys_148: 1.59434056e-20 - art_sys_149: 3.64002252e-21 - art_sys_150: 3.44189541e-22 - art_sys_151: -1.69162857e-20 - art_sys_152: 1.09582250e-20 - art_sys_153: 5.66653792e-22 - art_sys_154: -3.87622570e-21 - art_sys_155: -7.24765293e-21 - art_sys_156: -2.59499753e-20 - art_sys_157: -2.78169975e-21 - art_sys_158: 0.0 - art_sys_159: -1.30586899e-18 - art_sys_160: -1.30586899e-18 - art_sys_161: 3.90710482e-20 - art_sys_162: -1.62088936e-32 - art_sys_163: -0.0 - art_sys_164: -1.03707124e-32 - art_sys_165: -4.00223507e-28 - art_sys_166: -2.46642313e-29 - art_sys_167: 5.91789437e-29 - art_sys_168: -7.52787290e-29 - art_sys_169: 2.65816659e-29 - art_sys_170: 2.93913713e-28 - art_sys_171: 2.16174169e-27 - art_sys_172: -1.30914705e-27 - art_sys_173: 4.11417801e-28 - art_sys_174: -7.38767816e-33 - art_sys_175: -1.30151769e-28 - art_sys_176: 1.66550383e-28 - art_sys_177: -2.94281886e-29 - art_sys_178: -1.84447149e-30 - art_sys_179: -3.04099759e-31 - art_sys_180: 1.65203523e-31 - art_sys_181: 6.52547364e-32 - art_sys_182: 1.15626845e-31 - art_sys_183: 8.53586438e-34 - art_sys_184: 2.19598012e-37 - art_sys_185: -2.78587617e-34 + art_sys_49: -1.66420019e-11 + art_sys_50: 7.27327736e-19 + art_sys_51: -1.26242412e-18 + art_sys_52: 4.01255065e-12 + art_sys_53: 1.27410757e-04 + art_sys_54: -4.86442993e-13 + art_sys_55: 5.75089633e-05 + art_sys_56: -1.93233264e-13 + art_sys_57: -5.45038264e-18 + art_sys_58: -1.02084278e-19 + art_sys_59: -1.35464673e-05 + art_sys_60: -2.15733306e-12 + art_sys_61: 1.68921799e-19 + art_sys_62: -5.21157043e-14 + art_sys_63: 9.24236784e-14 + art_sys_64: -1.82819382e-15 + art_sys_65: 3.03503551e-16 + art_sys_66: 7.02329518e-17 + art_sys_67: 1.18987615e-16 + art_sys_68: -2.11702356e-19 + art_sys_69: 4.89820497e-20 + art_sys_70: 7.70046753e-20 + art_sys_71: -2.40045459e-21 + art_sys_72: 7.20783294e-21 + art_sys_73: -1.44239729e-21 + art_sys_74: -6.36745914e-17 + art_sys_75: 6.16658467e-21 + art_sys_76: -6.73280150e-18 + art_sys_77: -2.14759431e-18 + art_sys_78: 8.17068238e-19 + art_sys_79: -1.75917986e-20 + art_sys_80: -1.71024117e-19 + art_sys_81: 1.71780062e-16 + art_sys_82: -3.85582513e-13 + art_sys_83: 1.89122709e-19 + art_sys_84: 3.46468906e-20 + art_sys_85: 6.24626980e-20 + art_sys_86: -1.47487457e-20 + art_sys_87: -1.30709476e-17 + art_sys_88: 6.96948646e-18 + art_sys_89: -3.44625314e-21 + art_sys_90: -1.83969591e-17 + art_sys_91: 7.86694453e-08 + art_sys_92: 2.14978909e-22 + art_sys_93: -8.06008099e-22 + art_sys_94: 6.52888613e-19 + art_sys_95: 1.30621422e-14 + art_sys_96: -3.22245993e-08 + art_sys_97: -5.69703064e-15 + art_sys_98: 1.79755018e-15 + art_sys_99: -2.40138354e-08 + art_sys_100: 2.07622844e-14 + art_sys_101: 1.18277097e-08 + art_sys_102: -1.47974759e-16 + art_sys_103: 5.19565651e-15 + art_sys_104: -6.20020816e-09 + art_sys_105: -5.92349462e-21 + art_sys_106: 2.64982744e-09 + art_sys_107: 1.69495743e-16 + art_sys_108: 3.03174221e-20 + art_sys_109: -3.62974920e-21 + art_sys_110: 2.41635665e-15 + art_sys_111: -1.06967124e-09 + art_sys_112: -4.06010864e-16 + art_sys_113: -3.48968239e-14 + art_sys_114: -2.32123987e-22 + art_sys_115: 3.99424247e-10 + art_sys_116: -1.09400124e-16 + art_sys_117: -7.41859586e-21 + art_sys_118: -1.40596465e-10 + art_sys_119: -4.87623356e-17 + art_sys_120: 4.93128507e-16 + art_sys_121: -2.74372147e-22 + art_sys_122: 5.95044899e-11 + art_sys_123: 6.78709959e-18 + art_sys_124: -2.15856512e-11 + art_sys_125: 1.53401421e-22 + art_sys_126: 1.42028156e-16 + art_sys_127: -2.79685734e-19 + art_sys_128: 7.27184697e-12 + art_sys_129: -2.04487566e-22 + art_sys_130: 2.79221168e-18 + art_sys_131: 3.07040680e-21 + art_sys_132: 2.42468041e-12 + art_sys_133: -5.36083576e-18 + art_sys_134: 2.23581025e-17 + art_sys_135: -7.93771883e-13 + art_sys_136: -5.52608775e-22 + art_sys_137: 2.09129291e-19 + art_sys_138: -2.06872432e-13 + art_sys_139: -4.53029421e-18 + art_sys_140: 4.65091527e-22 + art_sys_141: -1.40562170e-18 + art_sys_142: -7.00623842e-14 + art_sys_143: -1.29220217e-18 + art_sys_144: 2.20138975e-20 + art_sys_145: -1.17844384e-14 + art_sys_146: 7.19505449e-19 + art_sys_147: -8.16134663e-21 + art_sys_148: 2.75991524e-22 + art_sys_149: 1.19309716e-15 + art_sys_150: -3.43404918e-17 + art_sys_151: -1.85548632e-18 + art_sys_152: 3.24326314e-20 + art_sys_153: -4.73333901e-18 + art_sys_154: 3.04674860e-17 + art_sys_155: 1.73188653e-20 + art_sys_156: -0.0 + art_sys_157: 1.32309414e-17 + art_sys_158: -0.0 + art_sys_159: -2.10390366e-18 + art_sys_160: 2.73810248e-19 + art_sys_161: 2.35381426e-19 + art_sys_162: 2.35381426e-19 + art_sys_163: 2.43033295e-19 + art_sys_164: 2.43033295e-19 + art_sys_165: -2.74130459e-33 + art_sys_166: 9.09904846e-34 + art_sys_167: 0.0 + art_sys_168: 2.63808893e-29 + art_sys_169: -1.20125810e-28 + art_sys_170: -1.02976377e-30 + art_sys_171: 2.82407881e-27 + art_sys_172: -3.57129893e-28 + art_sys_173: -2.99425911e-29 + art_sys_174: 2.36609982e-29 + art_sys_175: 2.90486980e-30 + art_sys_176: -4.90362231e-32 + art_sys_177: -4.07855768e-33 + art_sys_178: -8.82713464e-34 + art_sys_179: -5.27662837e-33 + art_sys_180: -5.47175699e-32 + art_sys_181: 1.16850724e-31 + art_sys_182: -6.96060625e-32 + art_sys_183: -1.85005660e-33 + art_sys_184: 1.79823984e-35 + art_sys_185: 1.00656253e-35 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -6932,191 +6932,191 @@ bins: RelativeStatFSR-: -2.48652081e-02 luminosity_uncertainty: 1.61163860e+00 uncorrelated_uncertainty: 0.619861 -- art_sys_1: -2.30928996e-35 - art_sys_2: 1.32413994e-22 - art_sys_3: -3.45678289e-24 +- art_sys_1: 2.19042990e-35 + art_sys_2: -8.24567910e-24 + art_sys_3: -3.45678292e-24 art_sys_4: 4.22563180e-05 - art_sys_5: 5.33265823e-20 - art_sys_6: 5.09277667e-22 + art_sys_5: 5.80546317e-20 + art_sys_6: 2.64790896e-22 art_sys_7: 8.33547537e-04 - art_sys_8: -6.24482508e-19 + art_sys_8: -6.44496158e-19 art_sys_9: -1.52303670e-03 - art_sys_10: -1.23088660e-20 - art_sys_11: 6.54646125e-19 + art_sys_10: -1.05972271e-20 + art_sys_11: 6.48006791e-19 art_sys_12: 6.64353231e-04 - art_sys_13: -1.42494110e-20 - art_sys_14: 4.76520781e-03 - art_sys_15: 2.38649868e-15 - art_sys_16: -8.12310928e-03 - art_sys_17: 1.94170838e-20 - art_sys_18: -1.83145928e-16 - art_sys_19: -1.46300221e-02 - art_sys_20: -1.13864399e-18 - art_sys_21: -8.11734467e-16 - art_sys_22: 9.12494107e-19 + art_sys_13: -1.40122705e-18 + art_sys_14: -4.76520781e-03 + art_sys_15: -2.38103727e-15 + art_sys_16: 8.12310928e-03 + art_sys_17: 6.52156403e-20 + art_sys_18: -1.86649184e-16 + art_sys_19: 1.46300221e-02 + art_sys_20: -2.79233419e-18 + art_sys_21: -8.06385474e-16 + art_sys_22: 6.33930230e-19 art_sys_23: -1.76095183e-02 - art_sys_24: 3.02187298e-16 - art_sys_25: -5.51699265e-03 + art_sys_24: 3.03361927e-16 + art_sys_25: 5.51699265e-03 art_sys_26: 1.46420507e-01 - art_sys_27: -1.94963305e-15 - art_sys_28: 7.39794209e-14 - art_sys_29: 4.70157484e-14 - art_sys_30: 7.17555720e-15 - art_sys_31: -7.69249644e-16 - art_sys_32: -5.26293474e-15 - art_sys_33: 2.89676885e-16 - art_sys_34: 2.73204450e-16 - art_sys_35: -1.90085544e-17 - art_sys_36: -1.71116291e-14 - art_sys_37: 4.51935724e-02 - art_sys_38: 7.36119635e-17 - art_sys_39: 4.44426827e-15 - art_sys_40: -3.77621265e-13 - art_sys_41: 6.47305487e-03 - art_sys_42: -1.37294235e-17 - art_sys_43: 6.01059947e-03 - art_sys_44: -1.32389330e-17 - art_sys_45: 9.47195228e-14 - art_sys_46: 2.36576668e-14 - art_sys_47: 5.51949380e-18 + art_sys_27: 1.94196161e-15 + art_sys_28: 7.40166964e-14 + art_sys_29: 6.37018817e-16 + art_sys_30: 4.51935724e-02 + art_sys_31: -4.53726632e-15 + art_sys_32: -1.47226220e-17 + art_sys_33: -6.47305487e-03 + art_sys_34: -6.01059947e-03 + art_sys_35: 3.42391774e-15 + art_sys_36: -5.10097661e-15 + art_sys_37: 2.02427041e-15 + art_sys_38: 2.43615721e-16 + art_sys_39: -1.59037173e-16 + art_sys_40: 1.25579276e-16 + art_sys_41: -2.44830573e-16 + art_sys_42: -1.92577684e-17 + art_sys_43: 4.65006861e-18 + art_sys_44: -2.26362987e-18 + art_sys_45: 5.16740139e-19 + art_sys_46: 1.58877181e-17 + art_sys_47: 2.96535619e-12 art_sys_48: -2.26207183e-03 - art_sys_49: 2.48080240e-12 - art_sys_50: -1.41429223e-18 - art_sys_51: -2.94698222e-18 - art_sys_52: -2.40148129e-04 - art_sys_53: -1.17787998e-12 - art_sys_54: 7.47640835e-14 - art_sys_55: 1.15149963e-04 - art_sys_56: 5.06167689e-13 - art_sys_57: -1.21361573e-15 - art_sys_58: -7.05952790e-16 - art_sys_59: -2.29078193e-16 - art_sys_60: 4.23208919e-15 - art_sys_61: -2.94494360e-17 - art_sys_62: -4.13388994e-18 - art_sys_63: -1.29905863e-17 - art_sys_64: 1.04995857e-18 - art_sys_65: 4.03653437e-18 - art_sys_66: 1.25598275e-17 - art_sys_67: -2.16681055e-19 - art_sys_68: -3.67388055e-19 - art_sys_69: -4.64338970e-14 - art_sys_70: 2.87588471e-05 - art_sys_71: -6.21040640e-13 - art_sys_72: -1.32321933e-13 - art_sys_73: 6.75940612e-15 - art_sys_74: 9.30761556e-13 - art_sys_75: 3.49934897e-19 - art_sys_76: -1.46523809e-17 - art_sys_77: 1.06389593e-17 - art_sys_78: -1.79195342e-18 - art_sys_79: -1.93152865e-16 - art_sys_80: 1.24738371e-12 - art_sys_81: -1.69965427e-18 - art_sys_82: -3.13188028e-19 - art_sys_83: 2.12094233e-19 - art_sys_84: 8.15258058e-16 - art_sys_85: 3.45217057e-19 - art_sys_86: 4.30100408e-20 - art_sys_87: 2.05102541e-18 - art_sys_88: 1.55465374e-20 - art_sys_89: 1.38484341e-20 - art_sys_90: 2.15002135e-07 - art_sys_91: -8.45496112e-08 - art_sys_92: -2.33805979e-15 - art_sys_93: -2.93189282e-14 - art_sys_94: 7.63013151e-15 - art_sys_95: 6.23124523e-08 - art_sys_96: 4.68100190e-20 - art_sys_97: 8.55375046e-15 - art_sys_98: -3.15855066e-08 - art_sys_99: 3.81395961e-14 - art_sys_100: -4.79873791e-16 - art_sys_101: 1.63264806e-08 - art_sys_102: -9.64152169e-21 - art_sys_103: 4.79812198e-16 - art_sys_104: 7.05470643e-09 - art_sys_105: 9.91026689e-21 - art_sys_106: -2.83968545e-09 - art_sys_107: 9.02261510e-14 - art_sys_108: 4.83971150e-17 - art_sys_109: -2.34129144e-15 - art_sys_110: 8.98481728e-21 - art_sys_111: -1.06291910e-09 - art_sys_112: 4.51734291e-17 - art_sys_113: -1.30062816e-22 - art_sys_114: 3.74300856e-10 - art_sys_115: 1.38218833e-18 - art_sys_116: -1.34431789e-15 - art_sys_117: 5.83620733e-22 - art_sys_118: 1.58344590e-10 - art_sys_119: 7.02797122e-20 - art_sys_120: -5.75392082e-11 - art_sys_121: 4.06683411e-17 - art_sys_122: -1.93700180e-11 - art_sys_123: -4.49941119e-18 - art_sys_124: 6.46178822e-12 - art_sys_125: -2.11066391e-12 - art_sys_126: -3.11433140e-17 - art_sys_127: -5.51199696e-13 - art_sys_128: 3.84047110e-18 - art_sys_129: -5.49230944e-19 - art_sys_130: 9.42358410e-18 - art_sys_131: 3.56906359e-18 - art_sys_132: -1.86131814e-13 - art_sys_133: -7.25382511e-19 - art_sys_134: -7.81415295e-17 - art_sys_135: -3.18422444e-14 - art_sys_136: -5.73294354e-17 - art_sys_137: 3.38813613e-15 - art_sys_138: 1.54202505e-17 - art_sys_139: 5.37212219e-17 - art_sys_140: 3.02881447e-16 - art_sys_141: -2.53222297e-17 - art_sys_142: -0.0 - art_sys_143: 7.88320985e-17 - art_sys_144: 2.31380079e-17 - art_sys_145: 1.22538227e-17 - art_sys_146: 3.42185992e-22 - art_sys_147: 4.96271356e-23 - art_sys_148: -4.25131769e-20 - art_sys_149: -9.64891849e-21 - art_sys_150: -9.21677909e-22 - art_sys_151: 4.51058720e-20 - art_sys_152: -2.92087278e-20 - art_sys_153: -1.50821549e-21 - art_sys_154: 1.03339704e-20 - art_sys_155: 1.93188848e-20 - art_sys_156: 6.91766035e-20 - art_sys_157: 7.41411150e-21 - art_sys_158: -0.0 - art_sys_159: 3.48133819e-18 - art_sys_160: 3.48133819e-18 - art_sys_161: -1.04149146e-19 - art_sys_162: 4.32077582e-32 - art_sys_163: 0.0 - art_sys_164: 2.76452512e-32 - art_sys_165: 6.03820461e-28 - art_sys_166: 1.98160384e-28 - art_sys_167: -2.14621405e-28 - art_sys_168: 1.15225091e-28 - art_sys_169: -1.73455218e-29 - art_sys_170: -2.91886433e-28 - art_sys_171: -8.28446970e-28 - art_sys_172: 2.77707476e-28 - art_sys_173: 9.47388022e-30 - art_sys_174: 1.96926114e-32 - art_sys_175: 9.93046792e-29 - art_sys_176: -1.30613496e-28 - art_sys_177: 2.17063970e-29 - art_sys_178: 7.41969898e-31 - art_sys_179: 2.38747688e-31 - art_sys_180: -9.45927997e-32 - art_sys_181: -6.96027939e-32 - art_sys_182: -7.96975482e-32 - art_sys_183: -6.16331481e-34 - art_sys_184: -9.20545394e-36 - art_sys_185: 7.42611104e-34 + art_sys_49: 2.70840610e-11 + art_sys_50: -9.97218579e-19 + art_sys_51: 5.64019550e-19 + art_sys_52: -6.53132932e-12 + art_sys_53: -2.40148131e-04 + art_sys_54: 9.22028161e-13 + art_sys_55: -1.15149962e-04 + art_sys_56: 3.16321871e-13 + art_sys_57: 9.19234684e-18 + art_sys_58: 1.33562386e-19 + art_sys_59: 2.87588479e-05 + art_sys_60: 4.57001410e-12 + art_sys_61: -3.71446138e-19 + art_sys_62: 9.78014916e-14 + art_sys_63: -2.04928841e-13 + art_sys_64: 1.54414886e-15 + art_sys_65: -7.76316247e-18 + art_sys_66: -1.08132325e-16 + art_sys_67: -8.83621455e-17 + art_sys_68: -6.20331735e-19 + art_sys_69: 1.11087823e-19 + art_sys_70: -1.72940221e-19 + art_sys_71: 7.96398965e-20 + art_sys_72: -2.05094820e-20 + art_sys_73: 5.84503175e-21 + art_sys_74: 1.66604751e-16 + art_sys_75: -9.09770004e-21 + art_sys_76: 1.76733508e-17 + art_sys_77: 5.57510233e-18 + art_sys_78: -2.20044314e-18 + art_sys_79: -9.15257642e-23 + art_sys_80: 4.38294425e-19 + art_sys_81: -4.50798109e-16 + art_sys_82: 1.02480010e-12 + art_sys_83: -5.26767535e-19 + art_sys_84: -1.01084568e-19 + art_sys_85: -1.64806269e-19 + art_sys_86: 3.99115996e-20 + art_sys_87: 3.48329891e-17 + art_sys_88: -1.84912474e-17 + art_sys_89: 9.68824589e-21 + art_sys_90: 4.90699907e-17 + art_sys_91: -2.15003090e-07 + art_sys_92: -1.15168272e-21 + art_sys_93: 2.11548201e-21 + art_sys_94: -1.73762355e-18 + art_sys_95: -3.35923414e-14 + art_sys_96: 8.45507712e-08 + art_sys_97: 1.49734048e-15 + art_sys_98: -4.86080002e-15 + art_sys_99: 6.23123608e-08 + art_sys_100: -5.54312570e-14 + art_sys_101: -3.15854956e-08 + art_sys_102: 3.86341680e-16 + art_sys_103: -1.33514587e-14 + art_sys_104: 1.63260727e-08 + art_sys_105: 1.56200510e-20 + art_sys_106: -7.05420977e-09 + art_sys_107: -4.51705875e-16 + art_sys_108: -7.96368278e-20 + art_sys_109: 9.53457493e-21 + art_sys_110: -6.43462772e-15 + art_sys_111: 2.83966533e-09 + art_sys_112: 1.08113131e-15 + art_sys_113: 9.45398270e-14 + art_sys_114: 5.84789283e-22 + art_sys_115: -1.06290435e-09 + art_sys_116: 2.91508556e-16 + art_sys_117: 1.96812523e-20 + art_sys_118: 3.74410868e-10 + art_sys_119: 1.29977517e-16 + art_sys_120: -1.31447036e-15 + art_sys_121: 2.62721351e-22 + art_sys_122: -1.58441050e-10 + art_sys_123: -1.80965812e-17 + art_sys_124: 5.75207996e-11 + art_sys_125: -3.61496761e-22 + art_sys_126: -3.78598191e-16 + art_sys_127: 7.45818676e-19 + art_sys_128: -1.93768553e-11 + art_sys_129: 5.60504557e-22 + art_sys_130: -7.44348061e-18 + art_sys_131: -8.19409429e-21 + art_sys_132: -6.46228785e-12 + art_sys_133: 1.42917309e-17 + art_sys_134: -5.96110484e-17 + art_sys_135: 2.11589951e-12 + art_sys_136: 1.48202258e-21 + art_sys_137: -5.57522232e-19 + art_sys_138: 5.51424999e-13 + art_sys_139: 1.20772278e-17 + art_sys_140: -1.23976173e-21 + art_sys_141: 3.74723008e-18 + art_sys_142: 1.86782973e-13 + art_sys_143: 3.44499858e-18 + art_sys_144: -5.86871937e-20 + art_sys_145: 3.14169169e-14 + art_sys_146: -1.91811956e-18 + art_sys_147: 2.17584069e-20 + art_sys_148: -7.36573940e-22 + art_sys_149: -3.18056241e-15 + art_sys_150: 9.15449982e-17 + art_sys_151: 4.94689249e-18 + art_sys_152: -8.64598529e-20 + art_sys_153: 1.26187232e-17 + art_sys_154: -8.42544281e-17 + art_sys_155: -4.61669486e-20 + art_sys_156: 0.0 + art_sys_157: -3.52777561e-17 + art_sys_158: 0.0 + art_sys_159: 5.60911951e-18 + art_sys_160: -7.30051225e-19 + art_sys_161: -6.27495369e-19 + art_sys_162: -6.27495369e-19 + art_sys_163: -6.47924194e-19 + art_sys_164: -6.47924194e-19 + art_sys_165: 7.30824147e-33 + art_sys_166: -2.42577823e-33 + art_sys_167: -0.0 + art_sys_168: 2.20454495e-31 + art_sys_169: 1.29483253e-28 + art_sys_170: -3.46617654e-29 + art_sys_171: -2.45810015e-27 + art_sys_172: 2.95480879e-28 + art_sys_173: 2.70508185e-29 + art_sys_174: -2.05690490e-29 + art_sys_175: -1.82518730e-30 + art_sys_176: -1.16969447e-31 + art_sys_177: 9.94844330e-33 + art_sys_178: -4.29996470e-33 + art_sys_179: 1.40652363e-32 + art_sys_180: 1.45879081e-31 + art_sys_181: -3.54929955e-31 + art_sys_182: -9.60984965e-33 + art_sys_183: 1.15560742e-33 + art_sys_184: -2.68767902e-35 + art_sys_185: -2.67308046e-35 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -7223,191 +7223,191 @@ bins: RelativeStatFSR-: -1.47270705e-02 luminosity_uncertainty: 8.85250600e-01 uncorrelated_uncertainty: 0.340481 -- art_sys_1: 8.90041955e-36 - art_sys_2: -5.10170949e-23 - art_sys_3: 5.25626211e-25 +- art_sys_1: -8.43631565e-36 + art_sys_2: 3.17693456e-24 + art_sys_3: 5.25626224e-25 art_sys_4: -1.62807157e-05 - art_sys_5: 1.11876219e-20 - art_sys_6: -1.96506872e-22 + art_sys_5: 9.37563351e-21 + art_sys_6: -1.02527665e-22 art_sys_7: 1.41548636e-04 - art_sys_8: -1.29416471e-19 + art_sys_8: -1.32901196e-19 art_sys_9: -3.26385127e-04 - art_sys_10: -2.87612738e-21 - art_sys_11: 2.94345904e-21 + art_sys_10: -7.81765115e-22 + art_sys_11: 1.88572331e-20 art_sys_12: 2.02432443e-04 - art_sys_13: -4.65325294e-21 - art_sys_14: -1.44630472e-03 - art_sys_15: -4.64936381e-17 - art_sys_16: -4.59113554e-03 - art_sys_17: 1.24848347e-19 - art_sys_18: 2.41596221e-17 - art_sys_19: 6.42948723e-03 - art_sys_20: 5.79235618e-19 - art_sys_21: -1.04576821e-16 - art_sys_22: -5.91392830e-19 + art_sys_13: 4.21468768e-19 + art_sys_14: 1.44630472e-03 + art_sys_15: 4.95983882e-17 + art_sys_16: 4.59113554e-03 + art_sys_17: 1.77984260e-19 + art_sys_18: 2.39577394e-17 + art_sys_19: -6.42948723e-03 + art_sys_20: 1.75949087e-19 + art_sys_21: -1.07941532e-16 + art_sys_22: -3.22948563e-19 art_sys_23: 2.26209936e-03 - art_sys_24: 3.64124512e-19 - art_sys_25: -1.51148241e-02 + art_sys_24: -2.10925871e-19 + art_sys_25: 1.51148241e-02 art_sys_26: 8.34449412e-03 - art_sys_27: -5.32362232e-16 - art_sys_28: 4.05526894e-14 - art_sys_29: -1.56270818e-14 - art_sys_30: -1.64499759e-14 - art_sys_31: 1.14496340e-14 - art_sys_32: -2.48670863e-15 - art_sys_33: 1.60401969e-15 - art_sys_34: -1.56716247e-15 - art_sys_35: -8.45112530e-16 - art_sys_36: -1.14655554e-14 - art_sys_37: 3.00433775e-02 - art_sys_38: -1.47831303e-16 - art_sys_39: 1.62681473e-13 - art_sys_40: 1.95362039e-12 - art_sys_41: -3.34903185e-02 - art_sys_42: 3.52880080e-17 - art_sys_43: -1.32871390e-02 - art_sys_44: 3.16823584e-17 - art_sys_45: -1.51935664e-13 - art_sys_46: -7.52617372e-14 - art_sys_47: 2.43759150e-17 - art_sys_48: 7.35909621e-03 - art_sys_49: -8.02868511e-12 - art_sys_50: 6.40226997e-18 - art_sys_51: 7.11438100e-18 - art_sys_52: 7.38948594e-04 - art_sys_53: 3.83583472e-12 - art_sys_54: -2.43474546e-13 - art_sys_55: -3.74558018e-04 - art_sys_56: -1.63991281e-12 - art_sys_57: 1.34206235e-15 - art_sys_58: -8.70751604e-17 - art_sys_59: 4.20124159e-16 - art_sys_60: -1.45043445e-14 - art_sys_61: -8.97205054e-17 - art_sys_62: 3.02675543e-17 - art_sys_63: 4.47754516e-17 - art_sys_64: -4.54048624e-18 - art_sys_65: -1.40454985e-17 - art_sys_66: -4.30232169e-17 - art_sys_67: 7.66786271e-19 - art_sys_68: 1.31571193e-18 - art_sys_69: 1.36283110e-13 - art_sys_70: -9.85876367e-05 - art_sys_71: 1.87424656e-12 - art_sys_72: 4.05417684e-13 - art_sys_73: -2.34929302e-14 - art_sys_74: -2.84023479e-12 - art_sys_75: -1.62058504e-19 - art_sys_76: 3.79897496e-17 - art_sys_77: -3.99243903e-17 - art_sys_78: 6.45089345e-18 - art_sys_79: 5.66685649e-16 - art_sys_80: -3.71343531e-12 - art_sys_81: 5.98348239e-18 - art_sys_82: 8.72647774e-19 - art_sys_83: -6.16662718e-19 - art_sys_84: -2.82968413e-15 - art_sys_85: -1.13761019e-18 - art_sys_86: -1.53607065e-19 - art_sys_87: -6.91696950e-18 - art_sys_88: -7.26845400e-20 - art_sys_89: -5.65736797e-20 - art_sys_90: -6.31217219e-07 - art_sys_91: 3.00626214e-07 - art_sys_92: 8.41694778e-15 - art_sys_93: 8.68339555e-14 - art_sys_94: -2.72637357e-14 - art_sys_95: -2.12256960e-07 - art_sys_96: -1.74286339e-19 - art_sys_97: -3.07116641e-14 - art_sys_98: 1.09898160e-07 - art_sys_99: -1.27749201e-13 - art_sys_100: 1.74652104e-15 - art_sys_101: -5.82310237e-08 - art_sys_102: 3.85272552e-20 - art_sys_103: -1.77571011e-15 - art_sys_104: -2.52497910e-08 - art_sys_105: -3.36719705e-20 - art_sys_106: 1.03060180e-08 - art_sys_107: -3.12797598e-13 - art_sys_108: -1.79570881e-16 - art_sys_109: 8.56266203e-15 - art_sys_110: -3.31839588e-20 - art_sys_111: 3.87320686e-09 - art_sys_112: -1.67811795e-16 - art_sys_113: -1.69155745e-21 - art_sys_114: -1.37184754e-09 - art_sys_115: -5.12261771e-18 - art_sys_116: 4.96280261e-15 - art_sys_117: -2.35076287e-21 - art_sys_118: -5.82148272e-10 - art_sys_119: -2.60477956e-19 - art_sys_120: 2.12070147e-10 - art_sys_121: -1.50011169e-16 - art_sys_122: 7.15617443e-11 - art_sys_123: 1.66956505e-17 - art_sys_124: -2.39017472e-11 - art_sys_125: 7.81530255e-12 - art_sys_126: 1.15573714e-16 - art_sys_127: 2.04266047e-12 - art_sys_128: -1.42490783e-17 - art_sys_129: 2.03853718e-18 - art_sys_130: -3.49671095e-17 - art_sys_131: -1.32411791e-17 - art_sys_132: 6.90030945e-13 - art_sys_133: 2.66868004e-18 - art_sys_134: 2.89804024e-16 - art_sys_135: 1.18108568e-13 - art_sys_136: 2.12649583e-16 - art_sys_137: -1.25710092e-14 - art_sys_138: -5.72115612e-17 - art_sys_139: -1.99309221e-16 - art_sys_140: -9.87445188e-16 - art_sys_141: 9.39511119e-17 - art_sys_142: 0.0 - art_sys_143: -2.92413321e-16 - art_sys_144: -8.58272175e-17 - art_sys_145: -4.54676948e-17 - art_sys_146: -1.14338519e-21 - art_sys_147: -1.63028796e-22 - art_sys_148: 1.58343257e-19 - art_sys_149: 3.57330056e-20 - art_sys_150: 3.43090848e-21 - art_sys_151: -1.67319076e-19 - art_sys_152: 1.08284643e-19 - art_sys_153: 5.59064181e-21 - art_sys_154: -3.83435641e-20 - art_sys_155: -7.16849979e-20 - art_sys_156: -2.56654446e-19 - art_sys_157: -2.75095749e-20 - art_sys_158: 0.0 - art_sys_159: -1.29168268e-17 - art_sys_160: -1.29168268e-17 - art_sys_161: 3.86485114e-19 - art_sys_162: -1.60333596e-31 - art_sys_163: -0.0 - art_sys_164: -1.02583293e-31 - art_sys_165: -1.61151796e-27 - art_sys_166: -9.89766237e-28 - art_sys_167: 8.97078358e-28 - art_sys_168: -2.51013743e-28 - art_sys_169: -9.04997411e-29 - art_sys_170: 1.76197798e-29 - art_sys_171: 2.64668233e-27 - art_sys_172: 1.03951146e-28 - art_sys_173: -1.20943909e-27 - art_sys_174: -7.30659284e-32 - art_sys_175: 1.10691249e-29 - art_sys_176: 9.12851440e-29 - art_sys_177: -1.81497837e-29 - art_sys_178: 2.77276904e-30 - art_sys_179: 9.06755648e-32 - art_sys_180: -1.57763826e-31 - art_sys_181: 1.02519584e-31 - art_sys_182: -6.89576825e-32 - art_sys_183: -3.91468401e-34 - art_sys_184: 4.89565951e-35 - art_sys_185: -2.75617426e-33 + art_sys_27: 5.32205979e-16 + art_sys_28: 4.05908908e-14 + art_sys_29: 3.40002789e-16 + art_sys_30: 3.00433775e-02 + art_sys_31: -1.62688334e-13 + art_sys_32: -2.67453018e-17 + art_sys_33: 3.34903185e-02 + art_sys_34: 1.32871390e-02 + art_sys_35: 4.92595937e-14 + art_sys_36: 1.61511539e-14 + art_sys_37: -6.66130022e-15 + art_sys_38: -8.85694190e-16 + art_sys_39: 5.38437907e-16 + art_sys_40: -4.17620902e-16 + art_sys_41: 7.82110741e-16 + art_sys_42: 3.82834068e-17 + art_sys_43: -5.27609175e-17 + art_sys_44: -1.62321352e-17 + art_sys_45: -3.27729043e-17 + art_sys_46: 1.46814564e-18 + art_sys_47: -9.64705851e-12 + art_sys_48: 7.35909623e-03 + art_sys_49: -8.81102110e-11 + art_sys_50: 4.67875229e-18 + art_sys_51: 2.23591820e-18 + art_sys_52: 2.12441982e-11 + art_sys_53: 7.38948602e-04 + art_sys_54: -2.85257102e-12 + art_sys_55: 3.74558018e-04 + art_sys_56: -1.02618036e-12 + art_sys_57: -3.29894512e-17 + art_sys_58: -4.33824187e-19 + art_sys_59: -9.85876395e-05 + art_sys_60: -1.56898943e-11 + art_sys_61: 1.21599403e-18 + art_sys_62: -2.99901881e-13 + art_sys_63: 6.63356938e-13 + art_sys_64: -4.91625695e-15 + art_sys_65: -1.83444274e-16 + art_sys_66: -7.98338845e-17 + art_sys_67: -2.99684802e-17 + art_sys_68: 2.43731303e-18 + art_sys_69: -6.48278868e-19 + art_sys_70: 4.77624468e-19 + art_sys_71: -2.82563522e-19 + art_sys_72: 7.02993767e-20 + art_sys_73: -4.10299164e-20 + art_sys_74: -6.00259963e-16 + art_sys_75: 5.37570717e-21 + art_sys_76: -5.64246673e-17 + art_sys_77: -2.00784998e-17 + art_sys_78: 7.20248153e-18 + art_sys_79: 4.63925830e-20 + art_sys_80: -1.58951761e-18 + art_sys_81: 1.60317899e-15 + art_sys_82: -3.42912130e-12 + art_sys_83: 1.49128890e-18 + art_sys_84: 3.13100966e-19 + art_sys_85: 5.17554561e-19 + art_sys_86: -1.24290208e-19 + art_sys_87: -1.22960782e-16 + art_sys_88: 6.70217827e-17 + art_sys_89: -2.35596852e-20 + art_sys_90: -1.81699234e-16 + art_sys_91: 6.31219706e-07 + art_sys_92: 5.90809327e-22 + art_sys_93: -7.25638524e-21 + art_sys_94: 6.42310349e-18 + art_sys_95: 1.11446094e-13 + art_sys_96: -3.00629709e-07 + art_sys_97: 9.31617757e-15 + art_sys_98: 1.52137953e-14 + art_sys_99: -2.12256646e-07 + art_sys_100: 1.93520003e-13 + art_sys_101: 1.09898120e-07 + art_sys_102: -1.31453198e-15 + art_sys_103: 4.59981188e-14 + art_sys_104: -5.82295642e-08 + art_sys_105: -5.73770886e-20 + art_sys_106: 2.52480209e-08 + art_sys_107: 1.66993806e-15 + art_sys_108: 2.93451389e-19 + art_sys_109: -3.48621645e-20 + art_sys_110: 2.36733954e-14 + art_sys_111: -1.03059440e-08 + art_sys_112: -3.97261242e-15 + art_sys_113: -3.45271234e-13 + art_sys_114: -2.13775095e-21 + art_sys_115: 3.87315334e-09 + art_sys_116: -1.07706932e-15 + art_sys_117: -7.15729285e-20 + art_sys_118: -1.37225358e-09 + art_sys_119: -4.80986397e-16 + art_sys_120: 4.86463797e-15 + art_sys_121: -1.46074265e-22 + art_sys_122: 5.82502261e-10 + art_sys_123: 6.70930560e-17 + art_sys_124: -2.12002317e-10 + art_sys_125: 1.30102650e-21 + art_sys_126: 1.40173035e-15 + art_sys_127: -2.76876795e-18 + art_sys_128: 7.15870556e-11 + art_sys_129: -2.10134797e-21 + art_sys_130: 2.76163878e-17 + art_sys_131: 3.04148592e-20 + art_sys_132: 2.39035812e-11 + art_sys_133: -5.30247543e-17 + art_sys_134: 2.21218163e-16 + art_sys_135: -7.83467108e-12 + art_sys_136: -5.50750987e-21 + art_sys_137: 2.06917760e-18 + art_sys_138: -2.04349262e-12 + art_sys_139: -4.48039136e-17 + art_sys_140: 4.60084468e-21 + art_sys_141: -1.38890620e-17 + art_sys_142: -6.92444199e-13 + art_sys_143: -1.27762029e-17 + art_sys_144: 2.17546424e-19 + art_sys_145: -1.16531347e-13 + art_sys_146: 7.11448108e-18 + art_sys_147: -8.07078445e-20 + art_sys_148: 2.71882340e-21 + art_sys_149: 1.18010179e-14 + art_sys_150: -3.39662636e-16 + art_sys_151: -1.83516663e-17 + art_sys_152: 3.20777223e-19 + art_sys_153: -4.68144463e-17 + art_sys_154: 3.10178213e-16 + art_sys_155: 1.71285871e-19 + art_sys_156: -0.0 + art_sys_157: 1.30864496e-16 + art_sys_158: -0.0 + art_sys_159: -2.08085279e-17 + art_sys_160: 2.70819188e-18 + art_sys_161: 2.32797408e-18 + art_sys_162: 2.32797408e-18 + art_sys_163: 2.40368867e-18 + art_sys_164: 2.40368867e-18 + art_sys_165: -2.71124533e-32 + art_sys_166: 8.99927140e-33 + art_sys_167: 0.0 + art_sys_168: -2.05334245e-28 + art_sys_169: 1.45379484e-28 + art_sys_170: -4.06679462e-28 + art_sys_171: -2.98986622e-27 + art_sys_172: -1.09338454e-28 + art_sys_173: -2.68358194e-29 + art_sys_174: 1.12251892e-29 + art_sys_175: 3.03708800e-30 + art_sys_176: -3.75367905e-31 + art_sys_177: -2.46157652e-32 + art_sys_178: 1.99611900e-32 + art_sys_179: -5.21856777e-32 + art_sys_180: -5.41179791e-31 + art_sys_181: 1.40473249e-30 + art_sys_182: 1.38247442e-31 + art_sys_183: -6.54531153e-35 + art_sys_184: 7.53092355e-35 + art_sys_185: 9.90800424e-35 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -7514,191 +7514,191 @@ bins: RelativeStatFSR-: -8.93267573e-03 luminosity_uncertainty: 4.98937400e-01 uncorrelated_uncertainty: 1.91899000e-01 -- art_sys_1: 2.02041739e-36 - art_sys_2: -1.15810877e-23 - art_sys_3: 1.20996618e-25 +- art_sys_1: -1.91509191e-36 + art_sys_2: 7.21177048e-25 + art_sys_3: 1.20996621e-25 art_sys_4: -3.69578857e-06 - art_sys_5: 1.71687452e-21 - art_sys_6: -4.45964829e-23 + art_sys_5: 1.30332333e-21 + art_sys_6: -2.32476930e-23 art_sys_7: 1.86157521e-05 - art_sys_8: -1.18815719e-20 + art_sys_8: -1.30177475e-20 art_sys_9: -4.51006397e-05 - art_sys_10: -4.19118664e-22 - art_sys_11: -2.14154388e-20 + art_sys_10: -1.80165047e-22 + art_sys_11: -1.72715183e-20 art_sys_12: 2.12328423e-05 - art_sys_13: -4.45516509e-22 - art_sys_14: -4.57284220e-04 - art_sys_15: -2.65860618e-18 - art_sys_16: -4.72403197e-04 - art_sys_17: 2.14921939e-20 - art_sys_18: 1.24808444e-15 - art_sys_19: 1.74535513e-03 - art_sys_20: 1.54703028e-19 - art_sys_21: 6.46701393e-17 - art_sys_22: -1.25530734e-19 + art_sys_13: 1.33709671e-19 + art_sys_14: 4.57284220e-04 + art_sys_15: 3.04152312e-18 + art_sys_16: 4.72403197e-04 + art_sys_17: 2.95373556e-20 + art_sys_18: 1.24819252e-15 + art_sys_19: -1.74535513e-03 + art_sys_20: 1.52156424e-19 + art_sys_21: 6.38605544e-17 + art_sys_22: -4.89686476e-20 art_sys_23: 1.30039188e-03 - art_sys_24: 9.22353650e-16 - art_sys_25: -6.93468702e-04 + art_sys_24: 9.22178703e-16 + art_sys_25: 6.93468702e-04 art_sys_26: -1.35642782e-02 - art_sys_27: 1.67557263e-16 - art_sys_28: -5.08989208e-15 - art_sys_29: 2.01033023e-14 - art_sys_30: -2.12919710e-14 - art_sys_31: -3.18564146e-15 - art_sys_32: 3.22556429e-15 - art_sys_33: 2.92627898e-15 - art_sys_34: -7.45227042e-16 - art_sys_35: 8.37171467e-16 - art_sys_36: 9.42446323e-16 - art_sys_37: -2.52256748e-03 - art_sys_38: 2.03780795e-16 - art_sys_39: 7.82403225e-14 - art_sys_40: 1.68014266e-12 - art_sys_41: -2.88018839e-02 - art_sys_42: -5.05591849e-17 - art_sys_43: 1.72128100e-02 - art_sys_44: -4.88403407e-17 - art_sys_45: 1.71862380e-13 - art_sys_46: 9.70992784e-14 - art_sys_47: -2.10412605e-17 - art_sys_48: -9.49217941e-03 - art_sys_49: 1.12140259e-11 - art_sys_50: 2.12145533e-18 - art_sys_51: -1.11119453e-17 - art_sys_52: -1.81858119e-03 - art_sys_53: -4.95525616e-12 - art_sys_54: 5.43732830e-13 - art_sys_55: 8.39999666e-04 - art_sys_56: 2.26984122e-12 - art_sys_57: -4.81792792e-15 - art_sys_58: -1.21292746e-15 - art_sys_59: -1.37922212e-16 - art_sys_60: 3.80450250e-14 - art_sys_61: 2.95226216e-16 - art_sys_62: -8.29278578e-17 - art_sys_63: -1.20171133e-16 - art_sys_64: 1.25925446e-17 - art_sys_65: 3.69292679e-17 - art_sys_66: 1.12741236e-16 - art_sys_67: -1.99673915e-18 - art_sys_68: -3.45854359e-18 - art_sys_69: -5.06900704e-13 - art_sys_70: 2.58750524e-04 - art_sys_71: -6.52803457e-12 - art_sys_72: -9.83436369e-13 - art_sys_73: 7.67480031e-14 - art_sys_74: 9.67855313e-12 - art_sys_75: 2.91826834e-19 - art_sys_76: -1.61837693e-16 - art_sys_77: 1.23293544e-16 - art_sys_78: -2.32051700e-17 - art_sys_79: -2.10599119e-15 - art_sys_80: 1.36773084e-11 - art_sys_81: -1.88586544e-17 - art_sys_82: -3.33490569e-18 - art_sys_83: 2.33313151e-18 - art_sys_84: 8.54017111e-15 - art_sys_85: 3.82778149e-18 - art_sys_86: 4.50050559e-19 - art_sys_87: 2.19401894e-17 - art_sys_88: 2.17711059e-19 - art_sys_89: 1.80548009e-19 - art_sys_90: 2.34691480e-06 - art_sys_91: -8.73661926e-07 - art_sys_92: -2.78345312e-14 - art_sys_93: -3.42322463e-13 - art_sys_94: 8.96606387e-14 - art_sys_95: 7.07350105e-07 - art_sys_96: 5.73804607e-19 - art_sys_97: 1.00507370e-13 - art_sys_98: -3.58463014e-07 - art_sys_99: 3.37343150e-13 - art_sys_100: -5.75729411e-15 - art_sys_101: 1.90098783e-07 - art_sys_102: -1.24904680e-19 - art_sys_103: 5.85391796e-15 - art_sys_104: 8.30499119e-08 - art_sys_105: 1.08774565e-19 - art_sys_106: -3.37874464e-08 - art_sys_107: 1.04848521e-12 - art_sys_108: 5.91946851e-16 - art_sys_109: -2.81965377e-14 - art_sys_110: 1.08796300e-19 - art_sys_111: -1.27558721e-08 - art_sys_112: 5.53826832e-16 - art_sys_113: 5.31661226e-21 - art_sys_114: 4.51402554e-09 - art_sys_115: 1.69023077e-17 - art_sys_116: -1.63518010e-14 - art_sys_117: 7.69646806e-21 - art_sys_118: 1.91779311e-09 - art_sys_119: 8.59183663e-19 - art_sys_120: -6.98978972e-10 - art_sys_121: 4.94453372e-16 - art_sys_122: -2.35889120e-10 - art_sys_123: -5.50790940e-17 - art_sys_124: 7.88233728e-11 - art_sys_125: -2.57736541e-11 - art_sys_126: -3.81270452e-16 - art_sys_127: -6.73743365e-12 - art_sys_128: 4.70162443e-17 - art_sys_129: -6.72892530e-18 - art_sys_130: 1.15358746e-16 - art_sys_131: 4.36740208e-17 - art_sys_132: -2.27619671e-12 - art_sys_133: -8.80032030e-18 - art_sys_134: -9.55994904e-16 - art_sys_135: -3.89617838e-13 - art_sys_136: -7.01503162e-16 - art_sys_137: 4.14681752e-14 - art_sys_138: 1.88730902e-16 - art_sys_139: 6.57485337e-16 - art_sys_140: 3.36410658e-15 - art_sys_141: -3.09870914e-16 - art_sys_142: -0.0 - art_sys_143: 9.64626043e-16 - art_sys_144: 2.83170329e-16 - art_sys_145: 1.49923471e-16 - art_sys_146: 3.80175517e-21 - art_sys_147: 5.47751181e-22 - art_sys_148: -5.23083489e-19 - art_sys_149: -1.18072968e-19 - art_sys_150: -1.13141132e-20 - art_sys_151: 5.52334744e-19 - art_sys_152: -3.57206672e-19 - art_sys_153: -1.84476991e-20 - art_sys_154: 1.26514347e-19 - art_sys_155: 2.36402029e-19 - art_sys_156: 8.46565848e-19 - art_sys_157: 9.06960159e-20 - art_sys_158: -0.0 - art_sys_159: 4.26129686e-17 - art_sys_160: 4.26129686e-17 - art_sys_161: -1.27468578e-18 - art_sys_162: 5.28826899e-31 - art_sys_163: 0.0 - art_sys_164: 3.38356322e-31 - art_sys_165: 4.87029599e-27 - art_sys_166: 3.12472375e-27 - art_sys_167: -2.92304548e-27 - art_sys_168: 9.14517213e-28 - art_sys_169: 2.10253988e-28 - art_sys_170: -1.04476268e-27 - art_sys_171: 1.07618698e-26 - art_sys_172: -1.21736983e-26 - art_sys_173: 3.29818628e-27 - art_sys_174: 2.40965053e-31 - art_sys_175: -1.09699156e-28 - art_sys_176: 5.77952296e-29 - art_sys_177: -1.67665387e-29 - art_sys_178: -1.17546588e-29 - art_sys_179: 6.23814749e-32 - art_sys_180: 6.69919488e-31 - art_sys_181: -2.52777514e-31 - art_sys_182: 2.61655226e-31 - art_sys_183: 1.73755630e-33 - art_sys_184: -1.59045641e-34 - art_sys_185: 9.09057252e-33 + art_sys_27: -1.66875860e-16 + art_sys_28: -5.09123953e-15 + art_sys_29: -4.83814465e-17 + art_sys_30: -2.52256748e-03 + art_sys_31: -7.81904409e-14 + art_sys_32: -7.15064432e-18 + art_sys_33: 2.88018839e-02 + art_sys_34: -1.72128100e-02 + art_sys_35: -8.90427833e-14 + art_sys_36: -2.28679924e-14 + art_sys_37: 9.74269109e-15 + art_sys_38: 9.28273523e-16 + art_sys_39: -2.86405201e-16 + art_sys_40: 8.45287483e-16 + art_sys_41: -9.60156512e-16 + art_sys_42: -9.03050876e-18 + art_sys_43: 4.86606144e-17 + art_sys_44: 1.35457752e-17 + art_sys_45: 4.90643441e-17 + art_sys_46: 7.59082005e-18 + art_sys_47: 1.24433357e-11 + art_sys_48: -9.49217944e-03 + art_sys_49: 1.13672956e-10 + art_sys_50: -1.00402436e-18 + art_sys_51: -3.22461259e-18 + art_sys_52: -2.73942324e-11 + art_sys_53: -1.81858121e-03 + art_sys_54: 6.95437974e-12 + art_sys_55: -8.39999665e-04 + art_sys_56: 1.36629626e-12 + art_sys_57: 4.25455128e-17 + art_sys_58: 9.81310589e-19 + art_sys_59: 2.58750531e-04 + art_sys_60: 4.10311389e-11 + art_sys_61: -3.87793882e-18 + art_sys_62: 7.43156350e-13 + art_sys_63: -1.93176582e-12 + art_sys_64: -2.62953949e-15 + art_sys_65: 2.38957813e-15 + art_sys_66: -5.09617277e-16 + art_sys_67: 6.88318463e-17 + art_sys_68: -1.23684554e-17 + art_sys_69: 2.43835916e-18 + art_sys_70: -1.70983981e-18 + art_sys_71: 1.02872855e-18 + art_sys_72: -2.41213543e-19 + art_sys_73: 8.97724354e-20 + art_sys_74: 1.71255027e-15 + art_sys_75: -5.11108750e-20 + art_sys_76: 1.98495377e-16 + art_sys_77: 6.21907645e-17 + art_sys_78: -2.32910638e-17 + art_sys_79: -9.12141027e-20 + art_sys_80: 5.00253333e-18 + art_sys_81: -4.65812796e-15 + art_sys_82: 1.07856147e-11 + art_sys_83: -5.78980819e-18 + art_sys_84: -8.28272552e-19 + art_sys_85: -1.88646063e-18 + art_sys_86: 4.26120728e-19 + art_sys_87: 4.00479137e-16 + art_sys_88: -2.19947633e-16 + art_sys_89: 1.14353224e-19 + art_sys_90: 6.00147530e-16 + art_sys_91: -2.34692545e-06 + art_sys_92: -1.71252346e-20 + art_sys_93: 2.26381724e-20 + art_sys_94: -2.11842443e-17 + art_sys_95: -3.73487835e-13 + art_sys_96: 8.73674691e-07 + art_sys_97: -9.84904348e-14 + art_sys_98: -4.89415429e-14 + art_sys_99: 7.07349114e-07 + art_sys_100: -6.31635559e-13 + art_sys_101: -3.58462920e-07 + art_sys_102: 4.20058490e-15 + art_sys_103: -1.48215025e-13 + art_sys_104: 1.90093985e-07 + art_sys_105: 1.88749074e-19 + art_sys_106: -8.30441321e-08 + art_sys_107: -5.50650186e-15 + art_sys_108: -9.67650146e-19 + art_sys_109: 1.14699522e-19 + art_sys_110: -7.79978041e-14 + art_sys_111: 3.37871996e-08 + art_sys_112: 1.30881998e-14 + art_sys_113: 1.15140830e-12 + art_sys_114: 6.98254497e-21 + art_sys_115: -1.27556970e-08 + art_sys_116: 3.55038012e-15 + art_sys_117: 2.35071018e-19 + art_sys_118: 4.51536404e-09 + art_sys_119: 1.58623609e-15 + art_sys_120: -1.60455751e-14 + art_sys_121: 4.21731273e-22 + art_sys_122: -1.91895892e-09 + art_sys_123: -2.21326701e-16 + art_sys_124: 6.98755512e-10 + art_sys_125: -4.24171174e-21 + art_sys_126: -4.62239146e-15 + art_sys_127: 9.13647060e-18 + art_sys_128: -2.35972625e-10 + art_sys_129: 6.91746605e-21 + art_sys_130: -9.11049604e-17 + art_sys_131: -1.00332821e-19 + art_sys_132: -7.88293939e-11 + art_sys_133: 1.74920329e-16 + art_sys_134: -7.29794332e-16 + art_sys_135: 2.58375230e-11 + art_sys_136: 1.81800593e-20 + art_sys_137: -6.82357603e-18 + art_sys_138: 6.74017658e-12 + art_sys_139: 1.47796025e-16 + art_sys_140: -1.51771562e-20 + art_sys_141: 4.58152923e-17 + art_sys_142: 2.28415661e-12 + art_sys_143: 4.21454240e-17 + art_sys_144: -7.17569287e-19 + art_sys_145: 3.84414924e-13 + art_sys_146: -2.34686933e-17 + art_sys_147: 2.66237184e-19 + art_sys_148: -8.97397870e-21 + art_sys_149: -3.89281046e-14 + art_sys_150: 1.12044348e-15 + art_sys_151: 6.05501513e-17 + art_sys_152: -1.05814535e-18 + art_sys_153: 1.54437405e-16 + art_sys_154: -1.06108029e-15 + art_sys_155: -5.64942268e-19 + art_sys_156: 0.0 + art_sys_157: -4.31860528e-16 + art_sys_158: 0.0 + art_sys_159: 6.86543385e-17 + art_sys_160: -8.93679098e-18 + art_sys_161: -7.67930429e-18 + art_sys_162: -7.67930429e-18 + art_sys_163: -7.93005953e-18 + art_sys_164: -7.93005953e-18 + art_sys_165: 8.94456825e-32 + art_sys_166: -2.96890722e-32 + art_sys_167: -0.0 + art_sys_168: 3.67622646e-28 + art_sys_169: 5.72910878e-28 + art_sys_170: -7.22308318e-28 + art_sys_171: -4.12775267e-27 + art_sys_172: -7.11724948e-29 + art_sys_173: 1.29385619e-29 + art_sys_174: -9.49774492e-31 + art_sys_175: 6.74147833e-30 + art_sys_176: -2.21425278e-30 + art_sys_177: 1.02100518e-31 + art_sys_178: -9.08202634e-32 + art_sys_179: 1.72099602e-31 + art_sys_180: 1.78550433e-30 + art_sys_181: -4.40862217e-30 + art_sys_182: -7.00665986e-31 + art_sys_183: -5.63238207e-33 + art_sys_184: -2.34398286e-34 + art_sys_185: -3.26610033e-34 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -7805,191 +7805,191 @@ bins: RelativeStatFSR-: -5.52135761e-03 luminosity_uncertainty: 2.86829400e-01 uncorrelated_uncertainty: 0.110319 -- art_sys_1: 2.37480446e-37 - art_sys_2: -1.36122618e-24 - art_sys_3: 1.33155012e-26 +- art_sys_1: -2.25094264e-37 + art_sys_2: 8.47662243e-26 + art_sys_3: 1.33155015e-26 art_sys_4: -4.34398244e-07 - art_sys_5: 2.01166572e-22 - art_sys_6: -5.23484390e-24 + art_sys_5: 1.52771280e-22 + art_sys_6: -2.75123373e-24 art_sys_7: 2.23039720e-06 - art_sys_8: -1.33680148e-21 + art_sys_8: -1.32174722e-21 art_sys_9: -4.60379320e-06 - art_sys_10: -3.59194609e-23 - art_sys_11: -5.77702402e-21 + art_sys_10: -1.08644899e-23 + art_sys_11: -5.42734080e-21 art_sys_12: -1.71120699e-06 - art_sys_13: 5.87019400e-23 - art_sys_14: -2.89841913e-05 - art_sys_15: 2.04890463e-19 - art_sys_16: 1.42868628e-04 - art_sys_17: -2.12954526e-21 - art_sys_18: 3.40554411e-17 - art_sys_19: -3.02736511e-06 - art_sys_20: -2.11906513e-21 - art_sys_21: -1.09799452e-15 - art_sys_22: 1.50026724e-20 + art_sys_13: 8.52263448e-21 + art_sys_14: 2.89841913e-05 + art_sys_15: -2.92211707e-19 + art_sys_16: -1.42868628e-04 + art_sys_17: -2.99435705e-21 + art_sys_18: 3.40858235e-17 + art_sys_19: 3.02736511e-06 + art_sys_20: 1.73488771e-20 + art_sys_21: -1.09797447e-15 + art_sys_22: 5.20186066e-21 art_sys_23: 8.75701453e-05 - art_sys_24: 3.72404445e-17 - art_sys_25: 1.29084350e-03 + art_sys_24: 3.72416515e-17 + art_sys_25: -1.29084350e-03 art_sys_26: -1.84058779e-03 - art_sys_27: 6.89285327e-17 - art_sys_28: -6.03761083e-15 - art_sys_29: -2.19687624e-14 - art_sys_30: -1.50444700e-14 - art_sys_31: 2.32616655e-14 - art_sys_32: 4.49398957e-17 - art_sys_33: 3.24319977e-16 - art_sys_34: -1.14867582e-16 - art_sys_35: -6.22288026e-16 - art_sys_36: 1.77456149e-15 - art_sys_37: -4.66127896e-03 - art_sys_38: 3.50857039e-16 - art_sys_39: -1.65267534e-14 - art_sys_40: 8.79976798e-14 - art_sys_41: -1.50838299e-03 - art_sys_42: 5.32482889e-17 - art_sys_43: 2.57894941e-02 - art_sys_44: 5.79067795e-17 - art_sys_45: 5.20663216e-13 - art_sys_46: -9.46980474e-14 - art_sys_47: 2.12789482e-17 + art_sys_27: -6.90801085e-17 + art_sys_28: -6.04360887e-15 + art_sys_29: -5.45934067e-17 + art_sys_30: -4.66127896e-03 + art_sys_31: 1.65383799e-14 + art_sys_32: 6.74984794e-18 + art_sys_33: 1.50838299e-03 + art_sys_34: -2.57894941e-02 + art_sys_35: 1.24028517e-13 + art_sys_36: 2.02621885e-14 + art_sys_37: -1.23425616e-14 + art_sys_38: 1.03991632e-15 + art_sys_39: 1.81121556e-16 + art_sys_40: -7.85421921e-16 + art_sys_41: 9.35987162e-16 + art_sys_42: -1.47229402e-16 + art_sys_43: -1.86232737e-16 + art_sys_44: -8.26435877e-18 + art_sys_45: -5.01473204e-17 + art_sys_46: -5.70540872e-18 + art_sys_47: -1.36927443e-11 art_sys_48: 1.04452736e-02 - art_sys_49: -1.18347580e-11 - art_sys_50: -1.75214992e-18 - art_sys_51: -1.36185042e-17 - art_sys_52: 1.49317500e-03 - art_sys_53: 5.46548071e-12 - art_sys_54: -9.12313006e-13 - art_sys_55: -1.39001685e-03 - art_sys_56: -2.40617069e-12 - art_sys_57: 7.71013996e-15 - art_sys_58: -3.85591577e-16 - art_sys_59: 3.98718448e-16 - art_sys_60: -7.30766594e-14 - art_sys_61: -4.73393423e-16 - art_sys_62: 1.50348910e-16 - art_sys_63: 2.21834671e-16 - art_sys_64: -2.02167482e-17 - art_sys_65: -7.10519662e-17 - art_sys_66: -2.14955490e-16 - art_sys_67: 3.82202811e-18 - art_sys_68: 6.83394513e-18 - art_sys_69: 1.24934133e-12 - art_sys_70: -4.97140042e-04 - art_sys_71: 1.52552052e-11 - art_sys_72: 7.21739272e-13 - art_sys_73: -2.17855579e-13 - art_sys_74: -2.24097787e-11 - art_sys_75: 1.81158130e-19 - art_sys_76: 3.67791522e-16 - art_sys_77: -3.35333519e-16 - art_sys_78: 6.42680003e-17 - art_sys_79: 5.19139456e-15 - art_sys_80: -3.41075584e-11 - art_sys_81: 5.38347145e-17 - art_sys_82: 8.01931377e-18 - art_sys_83: -5.74188716e-18 - art_sys_84: -2.45659012e-14 - art_sys_85: -1.02703115e-17 - art_sys_86: -1.29056194e-18 - art_sys_87: -6.23330299e-17 - art_sys_88: -6.20213213e-19 - art_sys_89: -5.40473943e-19 - art_sys_90: -5.78587395e-06 - art_sys_91: 2.57582508e-06 - art_sys_92: 8.03331899e-14 - art_sys_93: 9.04297020e-13 - art_sys_94: -2.58942143e-13 - art_sys_95: -1.90731091e-06 - art_sys_96: -1.70245243e-18 - art_sys_97: -2.89715876e-13 - art_sys_98: 1.01944466e-06 - art_sys_99: -7.56274400e-13 - art_sys_100: 1.68245370e-14 - art_sys_101: -5.44427223e-07 - art_sys_102: 3.74271376e-19 - art_sys_103: -1.73459921e-14 - art_sys_104: -2.40019135e-07 - art_sys_105: -3.15487799e-19 - art_sys_106: 9.86779049e-08 - art_sys_107: -2.91007922e-12 - art_sys_108: -1.75842932e-15 - art_sys_109: 8.28916900e-14 - art_sys_110: -3.18714009e-19 - art_sys_111: 3.73429626e-08 - art_sys_112: -1.64600148e-15 - art_sys_113: -2.02487316e-20 - art_sys_114: -1.32939850e-08 - art_sys_115: -5.01833708e-17 - art_sys_116: 4.83708870e-14 - art_sys_117: -2.26157441e-20 - art_sys_118: -5.65469123e-09 - art_sys_119: -2.54330289e-18 - art_sys_120: 2.06602214e-09 - art_sys_121: -1.46204480e-15 - art_sys_122: 6.98304463e-10 - art_sys_123: 1.63559486e-16 - art_sys_124: -2.33535007e-10 - art_sys_125: 7.64279151e-11 - art_sys_126: 1.13219344e-15 - art_sys_127: 1.99879671e-11 - art_sys_128: -1.39614983e-16 - art_sys_129: 1.99802954e-17 - art_sys_130: -3.42556130e-16 - art_sys_131: -1.29678171e-16 - art_sys_132: 6.75519764e-12 - art_sys_133: 2.59835633e-17 - art_sys_134: 2.83789708e-15 - art_sys_135: 1.15670090e-12 - art_sys_136: 2.08263428e-15 - art_sys_137: -1.23132041e-13 - art_sys_138: -5.60383052e-16 - art_sys_139: -1.95219385e-15 - art_sys_140: -9.90916410e-15 - art_sys_141: 9.20150843e-16 - art_sys_142: 0.0 - art_sys_143: -2.86380583e-15 - art_sys_144: -8.40644856e-16 - art_sys_145: -4.45254615e-16 - art_sys_146: -1.10855508e-20 - art_sys_147: -1.55679014e-21 - art_sys_148: 1.55763885e-18 - art_sys_149: 3.50953349e-19 - art_sys_150: 3.35730278e-20 - art_sys_151: -1.63954466e-18 - art_sys_152: 1.06015456e-18 - art_sys_153: 5.47609046e-20 - art_sys_154: -3.75632623e-19 - art_sys_155: -7.02061864e-19 - art_sys_156: -2.51374034e-18 - art_sys_157: -2.69368107e-19 - art_sys_158: 0.0 - art_sys_159: -1.26527867e-16 - art_sys_160: -1.26527867e-16 - art_sys_161: 3.78556754e-18 - art_sys_162: -1.57045656e-30 - art_sys_163: -0.0 - art_sys_164: -1.00479960e-30 - art_sys_165: -1.41773206e-26 - art_sys_166: -9.40076139e-27 - art_sys_167: 8.60908464e-27 - art_sys_168: -2.51663909e-27 - art_sys_169: -1.00650526e-27 - art_sys_170: 2.53498898e-27 - art_sys_171: -4.05693253e-27 - art_sys_172: 6.92117674e-27 - art_sys_173: -1.00679434e-27 - art_sys_174: -7.15573153e-31 - art_sys_175: 1.27771244e-28 - art_sys_176: -3.68950878e-29 - art_sys_177: 1.88986680e-29 - art_sys_178: 3.33390218e-29 - art_sys_179: 1.01142295e-30 - art_sys_180: -1.88815489e-30 - art_sys_181: 8.71959038e-32 - art_sys_182: -1.98291874e-31 - art_sys_183: -1.91318735e-33 - art_sys_184: 4.60132823e-34 - art_sys_185: -2.69994196e-32 + art_sys_49: -1.25072974e-10 + art_sys_50: 2.52127525e-18 + art_sys_51: -3.07526353e-18 + art_sys_52: 3.01322639e-11 + art_sys_53: 1.49317503e-03 + art_sys_54: -6.24839250e-12 + art_sys_55: 1.39001685e-03 + art_sys_56: -1.47816895e-12 + art_sys_57: -4.63922711e-17 + art_sys_58: -1.04915225e-18 + art_sys_59: -4.97140055e-04 + art_sys_60: -7.85842642e-11 + art_sys_61: 8.54012140e-18 + art_sys_62: -5.68890565e-13 + art_sys_63: 3.74232056e-12 + art_sys_64: 3.23046283e-15 + art_sys_65: 1.23014947e-15 + art_sys_66: 4.27328445e-17 + art_sys_67: -1.55828142e-17 + art_sys_68: 2.11814089e-17 + art_sys_69: -4.78675007e-18 + art_sys_70: 5.11866901e-18 + art_sys_71: -2.72005958e-18 + art_sys_72: 6.44220176e-19 + art_sys_73: -3.20909577e-19 + art_sys_74: -5.11889425e-15 + art_sys_75: 6.66363967e-20 + art_sys_76: -5.06751516e-16 + art_sys_77: -1.79466719e-16 + art_sys_78: 6.41596152e-17 + art_sys_79: 3.95127899e-20 + art_sys_80: -1.42961375e-17 + art_sys_81: 1.37350233e-14 + art_sys_82: -2.99488465e-11 + art_sys_83: 1.40876708e-17 + art_sys_84: 2.41988616e-18 + art_sys_85: 4.76480922e-18 + art_sys_86: -1.11432604e-18 + art_sys_87: -1.14908780e-15 + art_sys_88: 6.41347345e-16 + art_sys_89: -2.39028837e-19 + art_sys_90: -1.77868871e-15 + art_sys_91: 5.78589707e-06 + art_sys_92: 3.33311240e-20 + art_sys_93: -6.32801890e-20 + art_sys_94: 6.27567212e-17 + art_sys_95: 9.71752315e-13 + art_sys_96: -2.57585717e-06 + art_sys_97: 7.68038304e-13 + art_sys_98: 1.28644233e-13 + art_sys_99: -1.90730808e-06 + art_sys_100: 1.80039664e-12 + art_sys_101: 1.01944430e-06 + art_sys_102: -1.15980804e-14 + art_sys_103: 4.03894539e-13 + art_sys_104: -5.44413380e-07 + art_sys_105: -5.57383118e-19 + art_sys_106: 2.40002580e-07 + art_sys_107: 1.63068264e-14 + art_sys_108: 2.87231025e-18 + art_sys_109: -3.38023075e-19 + art_sys_110: 2.30106602e-13 + art_sys_111: -9.86771942e-08 + art_sys_112: -3.85747509e-14 + art_sys_113: -3.41726835e-12 + art_sys_114: -2.08571503e-20 + art_sys_115: 3.73424485e-08 + art_sys_116: -1.05108548e-14 + art_sys_117: -6.88094234e-19 + art_sys_118: -1.32979416e-08 + art_sys_119: -4.70127427e-15 + art_sys_120: 4.75590595e-14 + art_sys_121: -1.30570947e-21 + art_sys_122: 5.65812525e-09 + art_sys_123: 6.56949542e-16 + art_sys_124: -2.06536195e-09 + art_sys_125: 1.28928042e-20 + art_sys_126: 1.37066946e-14 + art_sys_127: -2.71403954e-17 + art_sys_128: 6.98551980e-10 + art_sys_129: -2.06333007e-20 + art_sys_130: 2.70523840e-16 + art_sys_131: 2.97892153e-19 + art_sys_132: 2.33552724e-10 + art_sys_133: -5.19391789e-16 + art_sys_134: 2.16742157e-15 + art_sys_135: -7.66171557e-11 + art_sys_136: -5.39379930e-20 + art_sys_137: 2.02669583e-17 + art_sys_138: -1.99960835e-11 + art_sys_139: -4.38809887e-16 + art_sys_140: 4.50764534e-20 + art_sys_141: -1.35946386e-16 + art_sys_142: -6.77881369e-12 + art_sys_143: -1.25107532e-16 + art_sys_144: 2.12948414e-18 + art_sys_145: -1.14125668e-12 + art_sys_146: 6.96740390e-17 + art_sys_147: -7.90411756e-19 + art_sys_148: 2.65705584e-20 + art_sys_149: 1.15590731e-13 + art_sys_150: -3.32697143e-15 + art_sys_151: -1.79764087e-16 + art_sys_152: 3.14190185e-18 + art_sys_153: -4.58538630e-16 + art_sys_154: 3.14101842e-15 + art_sys_155: 1.67754516e-18 + art_sys_156: -0.0 + art_sys_157: 1.28202389e-15 + art_sys_158: -0.0 + art_sys_159: -2.03827210e-16 + art_sys_160: 2.65305262e-17 + art_sys_161: 2.28012676e-17 + art_sys_162: 2.28012676e-17 + art_sys_163: 2.35443116e-17 + art_sys_164: 2.35443116e-17 + art_sys_165: -2.65566200e-31 + art_sys_166: 8.81476442e-32 + art_sys_167: 0.0 + art_sys_168: -1.43895256e-27 + art_sys_169: -4.59896442e-28 + art_sys_170: -1.85325150e-28 + art_sys_171: 9.25074004e-28 + art_sys_172: -3.38608290e-28 + art_sys_173: -1.76131801e-28 + art_sys_174: 6.09779714e-29 + art_sys_175: 1.17225429e-30 + art_sys_176: 2.25887759e-30 + art_sys_177: -2.32275021e-31 + art_sys_178: 2.59969699e-31 + art_sys_179: -5.11065841e-31 + art_sys_180: -5.30101575e-30 + art_sys_181: 1.28887134e-29 + art_sys_182: 6.64273121e-31 + art_sys_183: 5.54286735e-33 + art_sys_184: 7.13686603e-34 + art_sys_185: 9.70009916e-34 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -8096,191 +8096,191 @@ bins: RelativeStatFSR-: -3.46741023e-03 luminosity_uncertainty: 1.67845080e-01 uncorrelated_uncertainty: 6.45558000e-02 -- art_sys_1: 1.16500397e-38 - art_sys_2: -6.67708121e-26 - art_sys_3: 3.44659322e-28 +- art_sys_1: -1.10401564e-38 + art_sys_2: 4.15794943e-27 + art_sys_3: 3.44659339e-28 art_sys_4: -2.13080852e-08 - art_sys_5: 1.75885129e-23 - art_sys_6: -2.56363706e-25 + art_sys_5: 1.52212317e-23 + art_sys_6: -1.36023090e-25 art_sys_7: 2.32125048e-07 - art_sys_8: -2.49289816e-23 + art_sys_8: -2.96228662e-23 art_sys_9: -3.26803189e-07 - art_sys_10: -2.93718614e-24 - art_sys_11: -9.35890267e-22 + art_sys_10: -1.89458856e-24 + art_sys_11: -9.95161173e-22 art_sys_12: -8.30529809e-07 - art_sys_13: 2.24094268e-23 - art_sys_14: 1.10680276e-05 - art_sys_15: 2.13680604e-20 - art_sys_16: 5.37568605e-05 - art_sys_17: -1.42205689e-21 - art_sys_18: 7.64892809e-17 - art_sys_19: -7.89375462e-05 - art_sys_20: -7.99563228e-21 - art_sys_21: -1.50893097e-15 - art_sys_22: 1.06405507e-21 + art_sys_13: -3.22785850e-21 + art_sys_14: -1.10680276e-05 + art_sys_15: -5.84318885e-20 + art_sys_16: -5.37568605e-05 + art_sys_17: -1.93799109e-21 + art_sys_18: 7.64915557e-17 + art_sys_19: 7.89375462e-05 + art_sys_20: -3.17821956e-21 + art_sys_21: -1.50888970e-15 + art_sys_22: 2.33996076e-21 art_sys_23: -4.80404336e-05 - art_sys_24: 3.29249257e-16 - art_sys_25: 2.10807808e-04 + art_sys_24: 3.29257304e-16 + art_sys_25: -2.10807808e-04 art_sys_26: 7.96774297e-04 - art_sys_27: -8.51016562e-18 - art_sys_28: -1.20556036e-16 - art_sys_29: -7.69011367e-14 - art_sys_30: -4.34640277e-14 - art_sys_31: -1.30660555e-14 - art_sys_32: -1.49668865e-15 - art_sys_33: -9.48870253e-16 - art_sys_34: 3.95407721e-16 - art_sys_35: -1.73969958e-16 - art_sys_36: 8.20459369e-17 - art_sys_37: -2.06063268e-04 - art_sys_38: 1.05240436e-17 - art_sys_39: -9.93750916e-15 - art_sys_40: -1.71419269e-13 - art_sys_41: 2.93855390e-03 - art_sys_42: 7.03836681e-17 - art_sys_43: 1.59211395e-03 - art_sys_44: -3.43508792e-17 - art_sys_45: 7.94851960e-14 - art_sys_46: -6.09750090e-14 - art_sys_47: 3.92566376e-17 - art_sys_48: 6.30697299e-03 - art_sys_49: 6.21119391e-13 - art_sys_50: -8.06617522e-18 - art_sys_51: -3.77526318e-18 - art_sys_52: -6.93214809e-03 - art_sys_53: 3.23222853e-12 - art_sys_54: 1.77251245e-12 - art_sys_55: 2.77231373e-03 - art_sys_56: -6.07591856e-14 - art_sys_57: -1.66308166e-14 - art_sys_58: 2.28337815e-16 - art_sys_59: -2.97537727e-15 - art_sys_60: 2.17885498e-13 - art_sys_61: 1.15586858e-15 - art_sys_62: -4.51061534e-16 - art_sys_63: -6.67061963e-16 - art_sys_64: 6.03422203e-17 - art_sys_65: 2.13307084e-16 - art_sys_66: 6.43174539e-16 - art_sys_67: -1.14099542e-17 - art_sys_68: -2.03561239e-17 - art_sys_69: -3.44602624e-12 - art_sys_70: 1.48290199e-03 - art_sys_71: -4.24963391e-11 - art_sys_72: -3.67715065e-12 - art_sys_73: 6.94479449e-13 - art_sys_74: 6.26705239e-11 - art_sys_75: -1.13612111e-18 - art_sys_76: -9.48638124e-16 - art_sys_77: 8.87830937e-16 - art_sys_78: -2.34044891e-16 - art_sys_79: -1.43204391e-14 - art_sys_80: 9.55078879e-11 - art_sys_81: -1.68774347e-16 - art_sys_82: -2.04293775e-17 - art_sys_83: 1.58857172e-17 - art_sys_84: 7.17816513e-14 - art_sys_85: 3.11071521e-17 - art_sys_86: 3.79614483e-18 - art_sys_87: 1.91857672e-16 - art_sys_88: 1.90195268e-18 - art_sys_89: 1.87255222e-18 - art_sys_90: 1.59605207e-05 - art_sys_91: -7.52254649e-06 - art_sys_92: -2.71728379e-13 - art_sys_93: -2.60124061e-12 - art_sys_94: 8.62103759e-13 - art_sys_95: 6.04693756e-06 - art_sys_96: 5.95444283e-18 - art_sys_97: 9.64703302e-13 - art_sys_98: -3.24962674e-06 - art_sys_99: 2.08510392e-12 - art_sys_100: -5.74150086e-14 - art_sys_101: 1.79239652e-06 - art_sys_102: -1.30270560e-18 - art_sys_103: 6.02498793e-14 - art_sys_104: 8.00852002e-07 - art_sys_105: 1.07625170e-18 - art_sys_106: -3.32992415e-07 - art_sys_107: 9.42014748e-12 - art_sys_108: 6.12331665e-15 - art_sys_109: -2.83658628e-13 - art_sys_110: 1.07982554e-18 - art_sys_111: -1.27393613e-07 - art_sys_112: 5.74683111e-15 - art_sys_113: 8.85829126e-20 - art_sys_114: 4.55515881e-08 - art_sys_115: 1.74883038e-16 - art_sys_116: -1.67446161e-13 - art_sys_117: 7.69710498e-20 - art_sys_118: 1.94829363e-08 - art_sys_119: 8.85994630e-18 - art_sys_120: -7.13936412e-09 - art_sys_121: 5.05735878e-15 - art_sys_122: -2.42010309e-09 - art_sys_123: -5.70107354e-16 - art_sys_124: 8.10845016e-10 - art_sys_125: -2.65661200e-10 - art_sys_126: -3.94692538e-15 - art_sys_127: -6.95566324e-11 - art_sys_128: 4.86772748e-16 - art_sys_129: -6.97152038e-17 - art_sys_130: 1.19405893e-15 - art_sys_131: 4.51815567e-16 - art_sys_132: -2.35192356e-11 - art_sys_133: -8.96493161e-17 - art_sys_134: -9.88530072e-15 - art_sys_135: -4.02977802e-12 - art_sys_136: -7.25596069e-15 - art_sys_137: 4.29110843e-13 - art_sys_138: 1.95291554e-15 - art_sys_139: 6.80310456e-15 - art_sys_140: 2.86950033e-14 - art_sys_141: -3.20593573e-15 - art_sys_142: -0.0 - art_sys_143: 9.97767505e-15 - art_sys_144: 2.92946479e-15 - art_sys_145: 1.55090778e-15 - art_sys_146: 3.69002730e-20 - art_sys_147: 5.48569052e-21 - art_sys_148: -5.45741791e-18 - art_sys_149: -1.22268106e-18 - art_sys_150: -1.17079756e-19 - art_sys_151: 5.71815298e-18 - art_sys_152: -3.69191276e-18 - art_sys_153: -1.90828014e-19 - art_sys_154: 1.30955300e-18 - art_sys_155: 2.44595831e-18 - art_sys_156: 8.75890132e-18 - art_sys_157: 9.38056425e-19 - art_sys_158: -0.0 - art_sys_159: 4.41002511e-16 - art_sys_160: 4.41002511e-16 - art_sys_161: -1.31918535e-17 - art_sys_162: 5.47280121e-30 - art_sys_163: 0.0 - art_sys_164: 3.50160581e-30 - art_sys_165: 4.92524382e-26 - art_sys_166: 3.23501100e-26 - art_sys_167: -2.94927638e-26 - art_sys_168: 8.81404596e-27 - art_sys_169: 3.30738250e-27 - art_sys_170: -9.10490368e-27 - art_sys_171: 1.45217861e-26 - art_sys_172: -3.78508776e-26 - art_sys_173: 4.77012299e-27 - art_sys_174: 2.49292126e-30 - art_sys_175: -9.66155765e-29 - art_sys_176: 1.48390896e-28 - art_sys_177: 1.25219172e-29 - art_sys_178: -1.07127638e-28 - art_sys_179: -2.48158660e-30 - art_sys_180: 6.67679708e-30 - art_sys_181: -5.23269228e-31 - art_sys_182: 6.05892255e-31 - art_sys_183: 5.92818782e-33 - art_sys_184: -1.59279040e-33 - art_sys_185: 9.41086089e-32 + art_sys_27: 8.46118360e-18 + art_sys_28: -1.20954895e-16 + art_sys_29: 2.62155233e-18 + art_sys_30: -2.06063268e-04 + art_sys_31: 9.93331604e-15 + art_sys_32: 1.58148138e-18 + art_sys_33: -2.93855390e-03 + art_sys_34: -1.59211395e-03 + art_sys_35: 5.36605786e-14 + art_sys_36: -9.05572148e-15 + art_sys_37: 8.22177223e-15 + art_sys_38: -1.92887184e-15 + art_sys_39: 4.41487466e-15 + art_sys_40: 1.91503857e-15 + art_sys_41: 1.36535335e-15 + art_sys_42: 5.53973344e-16 + art_sys_43: 3.30571999e-17 + art_sys_44: -3.43955547e-17 + art_sys_45: 5.44335416e-17 + art_sys_46: -4.63716944e-18 + art_sys_47: -8.26772496e-12 + art_sys_48: 6.30697300e-03 + art_sys_49: -7.53085181e-11 + art_sys_50: -9.83456945e-18 + art_sys_51: -5.34850694e-18 + art_sys_52: 1.82635023e-11 + art_sys_53: -6.93214815e-03 + art_sys_54: 2.61376311e-11 + art_sys_55: -2.77231373e-03 + art_sys_56: -4.99724805e-13 + art_sys_57: -2.90356308e-17 + art_sys_58: 3.55472148e-18 + art_sys_59: 1.48290203e-03 + art_sys_60: 2.34684967e-10 + art_sys_61: -2.19330919e-17 + art_sys_62: 2.85884647e-12 + art_sys_63: -1.08263049e-11 + art_sys_64: -5.46509336e-15 + art_sys_65: 1.17826092e-16 + art_sys_66: -4.40542269e-16 + art_sys_67: 1.33972922e-16 + art_sys_68: -6.33706555e-17 + art_sys_69: 1.49026430e-17 + art_sys_70: -1.51804827e-17 + art_sys_71: 8.45760469e-18 + art_sys_72: -1.93301557e-18 + art_sys_73: 1.10045615e-18 + art_sys_74: 1.49933400e-14 + art_sys_75: -2.07280159e-19 + art_sys_76: 1.53264147e-15 + art_sys_77: 5.71859192e-16 + art_sys_78: -1.82565506e-16 + art_sys_79: 3.08353134e-19 + art_sys_80: 4.53520816e-17 + art_sys_81: -4.01137193e-14 + art_sys_82: 8.59594849e-11 + art_sys_83: -3.78142953e-17 + art_sys_84: -8.56068173e-18 + art_sys_85: -1.46539976e-17 + art_sys_86: 3.06873164e-18 + art_sys_87: 3.73055013e-15 + art_sys_88: -2.16538581e-15 + art_sys_89: 6.58838558e-19 + art_sys_90: 6.19555074e-15 + art_sys_91: -1.59605822e-05 + art_sys_92: -7.47986619e-20 + art_sys_93: 1.88735772e-19 + art_sys_94: -2.17905502e-16 + art_sys_95: -2.98141467e-12 + art_sys_96: 7.52263748e-06 + art_sys_97: -2.31388379e-12 + art_sys_98: -3.36492384e-13 + art_sys_99: 6.04692905e-06 + art_sys_100: -5.76963295e-12 + art_sys_101: -3.24962585e-06 + art_sys_102: 3.44976074e-14 + art_sys_103: -1.27822566e-12 + art_sys_104: 1.79235036e-06 + art_sys_105: 1.93018740e-18 + art_sys_106: -8.00797533e-07 + art_sys_107: -5.65835096e-14 + art_sys_108: -1.00091143e-17 + art_sys_109: 1.16117336e-18 + art_sys_110: -7.93538448e-13 + art_sys_111: 3.32989938e-07 + art_sys_112: 1.32848347e-13 + art_sys_113: 1.16259650e-11 + art_sys_114: 7.30892755e-20 + art_sys_115: -1.27391890e-07 + art_sys_116: 3.64319301e-14 + art_sys_117: 2.33110125e-18 + art_sys_118: 4.55652881e-08 + art_sys_119: 1.63306451e-14 + art_sys_120: -1.65247064e-13 + art_sys_121: -5.01343611e-22 + art_sys_122: -1.94947356e-08 + art_sys_123: -2.28747136e-15 + art_sys_124: 7.13708364e-09 + art_sys_125: -4.48643411e-20 + art_sys_126: -4.76351539e-14 + art_sys_127: 9.46741756e-17 + art_sys_128: -2.42096357e-09 + art_sys_129: 7.24238021e-20 + art_sys_130: -9.42818589e-16 + art_sys_131: -1.03838850e-18 + art_sys_132: -8.10905740e-10 + art_sys_133: 1.81005049e-15 + art_sys_134: -7.55543463e-15 + art_sys_135: 2.66318299e-10 + art_sys_136: 1.87919543e-19 + art_sys_137: -7.06185266e-17 + art_sys_138: 6.95847536e-11 + art_sys_139: 1.52898729e-15 + art_sys_140: -1.57120696e-19 + art_sys_141: 4.73214229e-16 + art_sys_142: 2.36014250e-11 + art_sys_143: 4.35770865e-16 + art_sys_144: -7.41264899e-18 + art_sys_145: 3.97598853e-12 + art_sys_146: -2.42721524e-16 + art_sys_147: 2.75367856e-18 + art_sys_148: -9.20988428e-20 + art_sys_149: -4.02835275e-13 + art_sys_150: 1.15944037e-14 + art_sys_151: 6.26545983e-16 + art_sys_152: -1.09487003e-17 + art_sys_153: 1.59793373e-15 + art_sys_154: -1.08985790e-14 + art_sys_155: -5.84472075e-18 + art_sys_156: 0.0 + art_sys_157: -4.46922444e-15 + art_sys_158: 0.0 + art_sys_159: 7.10393017e-16 + art_sys_160: -9.24827894e-17 + art_sys_161: -7.94521002e-17 + art_sys_162: -7.94521002e-17 + art_sys_163: -8.20525141e-17 + art_sys_164: -8.20525141e-17 + art_sys_165: 9.25486999e-31 + art_sys_166: -3.07189830e-31 + art_sys_167: -0.0 + art_sys_168: 4.88075510e-27 + art_sys_169: 1.86425060e-27 + art_sys_170: 4.74477606e-28 + art_sys_171: 8.31365534e-27 + art_sys_172: 1.36341718e-27 + art_sys_173: 1.22577323e-28 + art_sys_174: -1.01148821e-29 + art_sys_175: -5.53740951e-30 + art_sys_176: -4.35341533e-31 + art_sys_177: 6.53324566e-31 + art_sys_178: -9.29840402e-31 + art_sys_179: 1.78036250e-30 + art_sys_180: 1.84751401e-29 + art_sys_181: -4.40810829e-29 + art_sys_182: 2.23249151e-31 + art_sys_183: -9.87489585e-33 + art_sys_184: -2.54180568e-33 + art_sys_185: -3.37867589e-33 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -8387,191 +8387,191 @@ bins: RelativeStatFSR-: -2.16472218e-03 luminosity_uncertainty: 9.78437200e-02 uncorrelated_uncertainty: 3.76322000e-02 -- art_sys_1: -2.18331155e-40 - art_sys_2: 1.25253323e-27 - art_sys_3: -5.91380748e-29 +- art_sys_1: 2.07307289e-40 + art_sys_2: -7.79977005e-29 + art_sys_3: -5.91380751e-29 art_sys_4: 3.99711849e-10 - art_sys_5: 1.77211813e-24 - art_sys_6: 4.81051095e-27 + art_sys_5: 1.81666115e-24 + art_sys_6: 2.54093127e-27 art_sys_7: 3.00131198e-08 - art_sys_8: 3.73146751e-24 + art_sys_8: 3.67788540e-24 art_sys_9: -3.27344527e-08 - art_sys_10: -3.18402759e-25 - art_sys_11: 2.65783347e-23 + art_sys_10: -3.00718187e-25 + art_sys_11: 4.80656869e-24 art_sys_12: -1.45372251e-07 - art_sys_13: 3.73895162e-24 - art_sys_14: 3.46008028e-06 - art_sys_15: 1.79525092e-20 - art_sys_16: 1.04157296e-05 - art_sys_17: -3.13864308e-22 - art_sys_18: -7.47000667e-20 - art_sys_19: -2.01616146e-05 - art_sys_20: -1.96597441e-21 - art_sys_21: 9.58488922e-18 - art_sys_22: 2.39925124e-22 + art_sys_13: -1.01087574e-21 + art_sys_14: -3.46008028e-06 + art_sys_15: -2.51302458e-20 + art_sys_16: -1.04157296e-05 + art_sys_17: -4.24408866e-22 + art_sys_18: -7.49026638e-20 + art_sys_19: 2.01616146e-05 + art_sys_20: -1.24433670e-21 + art_sys_21: 9.59494949e-18 + art_sys_22: 6.55211649e-22 art_sys_23: -1.40530360e-05 - art_sys_24: -1.44403438e-15 - art_sys_25: -3.73143119e-05 + art_sys_24: -1.44403230e-15 + art_sys_25: 3.73143119e-05 art_sys_26: 2.31083490e-04 - art_sys_27: -8.69722217e-18 - art_sys_28: 4.45692339e-16 - art_sys_29: 3.66114184e-14 - art_sys_30: 4.57205042e-14 - art_sys_31: 1.91581515e-15 - art_sys_32: 8.84629788e-15 - art_sys_33: 3.84758003e-16 - art_sys_34: 3.94813676e-17 - art_sys_35: -3.33611503e-16 - art_sys_36: -1.33526441e-16 - art_sys_37: 3.44330162e-04 - art_sys_38: -2.12362738e-16 - art_sys_39: 7.86691638e-16 - art_sys_40: -2.08227192e-14 - art_sys_41: 3.56924375e-04 - art_sys_42: -6.19619388e-17 - art_sys_43: -2.58033497e-03 - art_sys_44: 7.06041565e-17 - art_sys_45: -5.05241328e-14 - art_sys_46: 6.32872604e-15 - art_sys_47: -2.23872960e-17 - art_sys_48: -7.21954688e-04 - art_sys_49: 6.70492601e-12 - art_sys_50: -7.17221255e-18 - art_sys_51: -5.79683301e-19 - art_sys_52: -6.02625024e-03 - art_sys_53: -3.04260245e-13 - art_sys_54: -2.41273310e-12 - art_sys_55: -3.56096826e-03 - art_sys_56: 1.23353674e-12 - art_sys_57: 1.22858126e-14 - art_sys_58: -5.77380230e-15 - art_sys_59: 3.68325588e-15 - art_sys_60: -2.94395591e-13 - art_sys_61: -9.04436078e-17 - art_sys_62: 5.73307625e-16 - art_sys_63: 8.75803850e-16 - art_sys_64: -6.68924878e-17 - art_sys_65: -2.97461100e-16 - art_sys_66: -8.57582793e-16 - art_sys_67: 1.38523138e-17 - art_sys_68: 3.03966004e-17 - art_sys_69: 1.54119403e-11 - art_sys_70: -2.00349947e-03 - art_sys_71: 1.70809295e-10 - art_sys_72: -4.01834588e-12 - art_sys_73: -2.39282895e-12 - art_sys_74: -2.42136037e-10 - art_sys_75: -5.11496094e-19 - art_sys_76: 5.18988653e-15 - art_sys_77: -3.74892766e-15 - art_sys_78: 8.14916188e-16 - art_sys_79: 6.40157725e-14 - art_sys_80: -4.17239168e-10 - art_sys_81: 5.62075809e-16 - art_sys_82: 1.00478120e-16 - art_sys_83: -7.24700006e-17 - art_sys_84: -2.36788963e-13 - art_sys_85: -1.14575132e-16 - art_sys_86: -1.20045440e-17 - art_sys_87: -6.46550832e-16 - art_sys_88: -6.64890681e-18 - art_sys_89: -6.25384311e-18 - art_sys_90: -7.13452658e-05 - art_sys_91: 2.35474718e-05 - art_sys_92: 9.15917441e-13 - art_sys_93: 1.14943313e-11 - art_sys_94: -2.91933638e-12 - art_sys_95: -2.12302325e-05 - art_sys_96: -1.97806717e-17 - art_sys_97: -3.25328942e-12 - art_sys_98: 1.11789437e-05 - art_sys_99: -5.86415629e-12 - art_sys_100: 1.92249862e-13 - art_sys_101: -6.06705213e-06 - art_sys_102: 4.33283704e-18 - art_sys_103: -2.00361320e-13 - art_sys_104: -2.70843111e-06 - art_sys_105: -3.58840779e-18 - art_sys_106: 1.11937201e-06 - art_sys_107: -3.27637826e-11 - art_sys_108: -2.03454098e-14 - art_sys_109: 9.49972892e-13 - art_sys_110: -3.61974798e-18 - art_sys_111: 4.26744742e-07 - art_sys_112: -1.90826611e-14 - art_sys_113: -2.63710544e-19 - art_sys_114: -1.52425724e-07 - art_sys_115: -5.81111237e-16 - art_sys_116: 5.57585911e-13 - art_sys_117: -2.60431543e-19 - art_sys_118: -6.50076206e-08 - art_sys_119: -2.94491486e-17 - art_sys_120: 2.38091310e-08 - art_sys_121: -1.68563240e-14 - art_sys_122: 8.05833369e-09 - art_sys_123: 1.89411414e-15 - art_sys_124: -2.69840087e-09 - art_sys_125: 8.83658042e-10 - art_sys_126: 1.31118074e-14 - art_sys_127: 2.31245470e-10 - art_sys_128: -1.61715409e-15 - art_sys_129: 2.31569322e-16 - art_sys_130: -3.96706649e-15 - art_sys_131: -1.50127291e-15 - art_sys_132: 7.81806233e-11 - art_sys_133: 2.99300846e-16 - art_sys_134: 3.28523401e-14 - art_sys_135: 1.33915630e-11 - art_sys_136: 2.41121084e-14 - art_sys_137: -1.42572000e-12 - art_sys_138: -6.48865331e-15 - art_sys_139: -2.26040655e-14 - art_sys_140: -1.11105076e-13 - art_sys_141: 1.06525098e-14 - art_sys_142: 0.0 - art_sys_143: -3.31563183e-14 - art_sys_144: -9.73417394e-15 - art_sys_145: -5.15352371e-15 - art_sys_146: -1.25047201e-19 - art_sys_147: -1.79489541e-20 - art_sys_148: 1.81033855e-17 - art_sys_149: 4.06300210e-18 - art_sys_150: 3.88728727e-19 - art_sys_151: -1.89969221e-17 - art_sys_152: 1.22712512e-17 - art_sys_153: 6.34101330e-19 - art_sys_154: -4.35048026e-18 - art_sys_155: -8.12708543e-18 - art_sys_156: -2.91032388e-17 - art_sys_157: -3.11727711e-18 - art_sys_158: 0.0 - art_sys_159: -1.46518319e-15 - art_sys_160: -1.46518319e-15 - art_sys_161: 4.38283248e-17 - art_sys_162: -1.81828218e-29 - art_sys_163: -0.0 - art_sys_164: -1.16337601e-29 - art_sys_165: -1.66029909e-25 - art_sys_166: -1.07416317e-25 - art_sys_167: 9.80677348e-26 - art_sys_168: -2.89634327e-26 - art_sys_169: -1.23255958e-26 - art_sys_170: 3.13053759e-26 - art_sys_171: 8.15986160e-27 - art_sys_172: -2.69733345e-26 - art_sys_173: 8.28429217e-27 - art_sys_174: -8.28348031e-30 - art_sys_175: 3.85391537e-29 - art_sys_176: -2.25990394e-28 - art_sys_177: 5.61564504e-29 - art_sys_178: 3.73425113e-28 - art_sys_179: 1.21203309e-29 - art_sys_180: -2.18022251e-29 - art_sys_181: 2.64650678e-31 - art_sys_182: -3.53532017e-31 - art_sys_183: -1.26920306e-32 - art_sys_184: 5.27598951e-33 - art_sys_185: -3.12627691e-31 + art_sys_27: 8.71619014e-18 + art_sys_28: 4.46139509e-16 + art_sys_29: 2.48115845e-18 + art_sys_30: 3.44330162e-04 + art_sys_31: -7.87933343e-16 + art_sys_32: -7.04027432e-19 + art_sys_33: -3.56924375e-04 + art_sys_34: 2.58033497e-03 + art_sys_35: -1.09158279e-14 + art_sys_36: -4.53335276e-14 + art_sys_37: -1.09245225e-14 + art_sys_38: -1.50168613e-14 + art_sys_39: -1.73366954e-15 + art_sys_40: -1.29270645e-16 + art_sys_41: -8.32904512e-16 + art_sys_42: -7.54765193e-16 + art_sys_43: -8.75737198e-17 + art_sys_44: -3.57627256e-17 + art_sys_45: 1.66087845e-17 + art_sys_46: 8.50770756e-18 + art_sys_47: 9.46494340e-13 + art_sys_48: -7.21954690e-04 + art_sys_49: 8.80459478e-12 + art_sys_50: -2.73725130e-17 + art_sys_51: 4.91620275e-18 + art_sys_52: -2.15509966e-12 + art_sys_53: -6.02625020e-03 + art_sys_54: 1.81842940e-11 + art_sys_55: 3.56096823e-03 + art_sys_56: 3.94994025e-13 + art_sys_57: -1.08443886e-19 + art_sys_58: 2.04346558e-18 + art_sys_59: -2.00349948e-03 + art_sys_60: -3.06628015e-10 + art_sys_61: 8.90073317e-17 + art_sys_62: 2.83817564e-12 + art_sys_63: 2.52024606e-11 + art_sys_64: 2.01498373e-14 + art_sys_65: 5.21008528e-15 + art_sys_66: -2.63452496e-16 + art_sys_67: -3.52037433e-16 + art_sys_68: 2.52555347e-16 + art_sys_69: -4.41772550e-17 + art_sys_70: 6.18334437e-17 + art_sys_71: -3.13434268e-17 + art_sys_72: 7.89822256e-18 + art_sys_73: -2.93097391e-18 + art_sys_74: -4.56390734e-14 + art_sys_75: 9.63062326e-19 + art_sys_76: -5.94406596e-15 + art_sys_77: -1.84263584e-15 + art_sys_78: 6.54993781e-16 + art_sys_79: -3.84932246e-19 + art_sys_80: -1.20941344e-16 + art_sys_81: 1.25525665e-13 + art_sys_82: -3.03134710e-10 + art_sys_83: 1.81221668e-16 + art_sys_84: 2.54342487e-17 + art_sys_85: 5.78155944e-17 + art_sys_86: -1.25757811e-17 + art_sys_87: -1.26754964e-14 + art_sys_88: 7.27633895e-15 + art_sys_89: -3.89369324e-18 + art_sys_90: -2.05929133e-14 + art_sys_91: 7.13455971e-05 + art_sys_92: 5.52670274e-19 + art_sys_93: -6.36407079e-19 + art_sys_94: 7.25164540e-16 + art_sys_95: 1.06924809e-11 + art_sys_96: -2.35478615e-05 + art_sys_97: 1.01770766e-11 + art_sys_98: 1.26150841e-12 + art_sys_99: -2.12302033e-05 + art_sys_100: 1.98059728e-11 + art_sys_101: 1.11789411e-05 + art_sys_102: -1.21131006e-13 + art_sys_103: 4.37220206e-12 + art_sys_104: -6.06689602e-06 + art_sys_105: -6.42871860e-18 + art_sys_106: 2.70824668e-06 + art_sys_107: 1.88311969e-13 + art_sys_108: 3.32547213e-17 + art_sys_109: -3.87617458e-18 + art_sys_110: 2.64691608e-12 + art_sys_111: -1.11936369e-06 + art_sys_112: -4.43360354e-13 + art_sys_113: -3.93962240e-11 + art_sys_114: -2.42280360e-19 + art_sys_115: 4.26738906e-07 + art_sys_116: -1.21301627e-13 + art_sys_117: -7.82420370e-18 + art_sys_118: -1.52471352e-07 + art_sys_119: -5.43361838e-14 + art_sys_120: 5.49832737e-13 + art_sys_121: -4.43850514e-21 + art_sys_122: 6.50470551e-08 + art_sys_123: 7.60394376e-15 + art_sys_124: -2.38015314e-08 + art_sys_125: 1.48923600e-19 + art_sys_126: 1.58456777e-13 + art_sys_127: -3.14465715e-16 + art_sys_128: 8.06119660e-09 + art_sys_129: -2.40384033e-19 + art_sys_130: 3.13259567e-15 + art_sys_131: 3.44995644e-18 + art_sys_132: 2.69860336e-09 + art_sys_133: -6.01413256e-15 + art_sys_134: 2.51017962e-14 + art_sys_135: -8.85844547e-10 + art_sys_136: -6.24482343e-19 + art_sys_137: 2.34627948e-16 + art_sys_138: -2.31339106e-10 + art_sys_139: -5.08051141e-15 + art_sys_140: 5.22012305e-19 + art_sys_141: -1.57315288e-15 + art_sys_142: -7.84538580e-11 + art_sys_143: -1.44825149e-15 + art_sys_144: 2.46423485e-17 + art_sys_145: -1.32127848e-11 + art_sys_146: 8.06612597e-16 + art_sys_147: -9.15082829e-18 + art_sys_148: 3.07055717e-19 + art_sys_149: 1.33840699e-12 + art_sys_150: -3.85222284e-14 + art_sys_151: -2.08176336e-15 + art_sys_152: 3.63783360e-17 + art_sys_153: -5.30940376e-15 + art_sys_154: 3.58255228e-14 + art_sys_155: 1.94206802e-17 + art_sys_156: -0.0 + art_sys_157: 1.48490434e-14 + art_sys_158: -0.0 + art_sys_159: -2.36036245e-15 + art_sys_160: 3.07277715e-16 + art_sys_161: 2.63998222e-16 + art_sys_162: 2.63998222e-16 + art_sys_163: 2.72632239e-16 + art_sys_164: 2.72632239e-16 + art_sys_165: -3.07508475e-30 + art_sys_166: 1.02068996e-30 + art_sys_167: 0.0 + art_sys_168: -1.94881993e-26 + art_sys_169: -6.41556443e-27 + art_sys_170: 1.52619806e-27 + art_sys_171: -7.04282616e-27 + art_sys_172: -9.27188500e-28 + art_sys_173: -6.59995800e-29 + art_sys_174: 1.30505001e-28 + art_sys_175: 1.14428943e-29 + art_sys_176: 7.57182982e-30 + art_sys_177: -2.28207390e-30 + art_sys_178: 3.10411581e-30 + art_sys_179: -5.91586840e-30 + art_sys_180: -6.13859721e-29 + art_sys_181: 1.47964213e-28 + art_sys_182: -3.11014595e-32 + art_sys_183: 1.66234327e-32 + art_sys_184: 8.49743592e-33 + art_sys_185: 1.12288203e-32 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -8678,191 +8678,191 @@ bins: RelativeStatFSR-: -1.37911322e-03 luminosity_uncertainty: 5.82197200e-02 uncorrelated_uncertainty: 2.23922000e-02 -- art_sys_1: -1.04528341e-40 - art_sys_2: 5.99391786e-28 - art_sys_3: -1.68694009e-29 +- art_sys_1: 9.91582208e-41 + art_sys_2: -3.73253021e-29 + art_sys_3: -1.68694010e-29 art_sys_4: 1.91279555e-10 - art_sys_5: 2.43020880e-25 - art_sys_6: 2.29820315e-27 + art_sys_5: 2.64307462e-25 + art_sys_6: 1.21162369e-27 art_sys_7: 3.80688606e-09 - art_sys_8: -7.73015203e-26 + art_sys_8: -1.70470578e-25 art_sys_9: -4.55354621e-09 - art_sys_10: -2.94708417e-26 - art_sys_11: 2.83385969e-23 + art_sys_10: -3.57510566e-26 + art_sys_11: 2.47589102e-23 art_sys_12: -1.69737452e-08 - art_sys_13: 4.22413834e-25 - art_sys_14: 5.51941416e-07 - art_sys_15: 1.27437277e-21 - art_sys_16: 1.43419679e-06 - art_sys_17: -4.44995851e-23 - art_sys_18: -2.83476719e-19 - art_sys_19: -2.91782533e-06 - art_sys_20: -2.63601447e-22 - art_sys_21: 1.12560128e-17 - art_sys_22: 8.14529298e-23 + art_sys_13: -1.61337071e-22 + art_sys_14: -5.51941416e-07 + art_sys_15: -2.20663714e-21 + art_sys_16: -1.43419679e-06 + art_sys_17: -6.03534283e-23 + art_sys_18: -2.83523442e-19 + art_sys_19: 2.91782533e-06 + art_sys_20: -1.58777875e-22 + art_sys_21: 1.12574643e-17 + art_sys_22: 5.42765996e-23 art_sys_23: -1.59872925e-06 - art_sys_24: -1.14521578e-15 - art_sys_25: -1.73337631e-05 + art_sys_24: -1.14521553e-15 + art_sys_25: 1.73337631e-05 art_sys_26: -1.12211817e-05 - art_sys_27: 1.02211785e-18 - art_sys_28: 5.92747580e-17 - art_sys_29: -4.80507741e-14 - art_sys_30: -1.68442546e-14 - art_sys_31: -2.14532308e-14 - art_sys_32: -3.52965321e-15 - art_sys_33: 8.83460284e-16 - art_sys_34: -8.41370431e-16 - art_sys_35: 5.72243366e-16 - art_sys_36: -2.03304845e-17 - art_sys_37: 5.32583361e-05 - art_sys_38: -4.31929606e-16 - art_sys_39: 9.61449150e-16 - art_sys_40: 1.42206115e-14 - art_sys_41: -2.43794845e-04 - art_sys_42: 2.65022249e-18 - art_sys_43: -3.45108960e-04 - art_sys_44: -7.00939193e-17 - art_sys_45: -1.37717698e-14 - art_sys_46: 9.94730571e-15 - art_sys_47: 2.80406463e-17 + art_sys_27: -1.02619981e-18 + art_sys_28: 5.93504311e-17 + art_sys_29: -1.11590296e-18 + art_sys_30: 5.32583361e-05 + art_sys_31: -9.61170662e-16 + art_sys_32: -2.66677919e-18 + art_sys_33: 2.43794845e-04 + art_sys_34: 3.45108960e-04 + art_sys_35: -8.25266408e-15 + art_sys_36: -3.34118496e-14 + art_sys_37: 3.50143581e-14 + art_sys_38: -7.91473468e-15 + art_sys_39: -2.58479538e-16 + art_sys_40: -6.67385551e-16 + art_sys_41: 8.62142298e-16 + art_sys_42: -5.26224834e-16 + art_sys_43: 5.03467616e-17 + art_sys_44: 3.75271421e-17 + art_sys_45: 5.31376003e-17 + art_sys_46: -1.25091709e-17 + art_sys_47: 1.35173387e-12 art_sys_48: -1.03114433e-03 - art_sys_49: 1.35711420e-12 - art_sys_50: -1.98905802e-17 - art_sys_51: -7.44579682e-19 - art_sys_52: -3.25260697e-04 - art_sys_53: -4.38914145e-13 - art_sys_54: -3.65500242e-12 - art_sys_55: -5.34803456e-03 - art_sys_56: 2.75802747e-13 - art_sys_57: -2.22555716e-14 - art_sys_58: 3.97365530e-15 - art_sys_59: -1.96268319e-15 - art_sys_60: 3.29868979e-13 - art_sys_61: 7.55418678e-16 - art_sys_62: -6.87226885e-16 - art_sys_63: -9.48912983e-16 - art_sys_64: 2.22683105e-17 - art_sys_65: 3.39097765e-16 - art_sys_66: 9.69379336e-16 - art_sys_67: -1.60982992e-17 - art_sys_68: -3.43633933e-17 - art_sys_69: -9.73319130e-12 - art_sys_70: 2.24493505e-03 - art_sys_71: -9.95189136e-11 - art_sys_72: -8.40046834e-13 - art_sys_73: 4.92804512e-12 - art_sys_74: 1.46817278e-10 - art_sys_75: -1.58624522e-18 - art_sys_76: 2.07020712e-16 - art_sys_77: 5.44158095e-15 - art_sys_78: -1.78500548e-15 - art_sys_79: -4.05516910e-14 - art_sys_80: 3.10656948e-10 - art_sys_81: -1.18822597e-15 - art_sys_82: -2.55549862e-17 - art_sys_83: 4.51854856e-17 - art_sys_84: 4.76489074e-13 - art_sys_85: 1.73537869e-16 - art_sys_86: 3.07644908e-17 - art_sys_87: 1.30517527e-15 - art_sys_88: 1.22535758e-17 - art_sys_89: 1.61969486e-17 - art_sys_90: 4.51950084e-05 - art_sys_91: -5.33480220e-05 - art_sys_92: -2.14322915e-12 - art_sys_93: -1.01036304e-11 - art_sys_94: 6.69027932e-12 - art_sys_95: 3.64969521e-05 - art_sys_96: 5.12502833e-17 - art_sys_97: 7.41539663e-12 - art_sys_98: -2.31730328e-05 - art_sys_99: 9.99476172e-12 - art_sys_100: -4.68559820e-13 - art_sys_101: 1.33638432e-05 - art_sys_102: -1.12155007e-17 - art_sys_103: 5.15034376e-13 - art_sys_104: 6.23110636e-06 - art_sys_105: 8.83114063e-18 - art_sys_106: -2.67276717e-06 - art_sys_107: 6.23776891e-11 - art_sys_108: 5.27617589e-14 - art_sys_109: -2.34916949e-12 - art_sys_110: 8.73778803e-18 - art_sys_111: -1.04245691e-06 - art_sys_112: 4.97118231e-14 - art_sys_113: 1.15760265e-18 - art_sys_114: 3.78818216e-07 - art_sys_115: 1.50708103e-15 - art_sys_116: -1.42135418e-12 - art_sys_117: 6.23736649e-19 - art_sys_118: 1.63453429e-07 - art_sys_119: 7.63678216e-17 - art_sys_120: -6.03941456e-08 - art_sys_121: 4.28578862e-14 - art_sys_122: -2.05994977e-08 - art_sys_123: -4.91498659e-15 - art_sys_124: 6.92813444e-09 - art_sys_125: -2.27670767e-09 - art_sys_126: -3.40305182e-14 - art_sys_127: -5.97394279e-10 - art_sys_128: 4.19802672e-15 - art_sys_129: -6.01781649e-16 - art_sys_130: 1.02943869e-14 - art_sys_131: 3.89220649e-15 - art_sys_132: -2.02266643e-10 - art_sys_133: -7.55279385e-16 - art_sys_134: -8.51028800e-14 - art_sys_135: -3.47051067e-11 - art_sys_136: -6.24938165e-14 - art_sys_137: 3.69799967e-12 - art_sys_138: 1.68291285e-14 - art_sys_139: 5.86218853e-14 - art_sys_140: 1.83394521e-13 - art_sys_141: -2.76215074e-14 - art_sys_142: -0.0 - art_sys_143: 8.59358246e-14 - art_sys_144: 2.52363632e-14 - art_sys_145: 1.33599627e-14 - art_sys_146: 2.87357447e-19 - art_sys_147: 4.91285371e-20 - art_sys_148: -4.75368846e-17 - art_sys_149: -1.05440677e-17 - art_sys_150: -1.01028096e-18 - art_sys_151: 4.93074741e-17 - art_sys_152: -3.17639285e-17 - art_sys_153: -1.64374052e-18 - art_sys_154: 1.12898387e-17 - art_sys_155: 2.10753948e-17 - art_sys_156: 7.54676622e-17 - art_sys_157: 8.07881057e-18 - art_sys_158: -0.0 - art_sys_159: 3.80102722e-15 - art_sys_160: 3.80102722e-15 - art_sys_161: -1.13704346e-16 - art_sys_162: 4.71705373e-29 - art_sys_163: 0.0 - art_sys_164: 3.01802979e-29 - art_sys_165: 4.11782316e-25 - art_sys_166: 2.67449628e-25 - art_sys_167: -2.42682179e-25 - art_sys_168: 7.20731196e-26 - art_sys_169: 3.01589824e-26 - art_sys_170: -7.68406532e-26 - art_sys_171: 1.88322386e-26 - art_sys_172: -1.23819667e-26 - art_sys_173: -6.60786787e-27 - art_sys_174: 2.14771396e-29 - art_sys_175: -1.88403256e-29 - art_sys_176: 1.94431248e-28 - art_sys_177: -2.61896990e-29 - art_sys_178: -8.79795159e-28 - art_sys_179: -2.84549560e-29 - art_sys_180: 5.63950118e-29 - art_sys_181: -8.77868663e-31 - art_sys_182: 1.47228548e-30 - art_sys_183: 3.41722621e-32 - art_sys_184: -1.36788149e-32 - art_sys_185: 8.11496913e-31 + art_sys_49: 1.23514879e-11 + art_sys_50: 1.36640721e-17 + art_sys_51: 1.95792814e-18 + art_sys_52: -3.07521083e-12 + art_sys_53: -3.25260614e-04 + art_sys_54: -3.25436788e-12 + art_sys_55: 5.34803453e-03 + art_sys_56: 1.57295598e-13 + art_sys_57: 1.53107251e-17 + art_sys_58: -2.78080617e-18 + art_sys_59: 2.24493509e-03 + art_sys_60: 3.52076837e-10 + art_sys_61: -4.43979147e-17 + art_sys_62: 4.70122199e-13 + art_sys_63: -5.37777356e-12 + art_sys_64: 1.67404163e-14 + art_sys_65: -1.30569799e-14 + art_sys_66: -1.32205623e-15 + art_sys_67: 5.79566614e-16 + art_sys_68: -2.41651966e-16 + art_sys_69: 1.04282528e-16 + art_sys_70: -9.22220254e-17 + art_sys_71: 3.40613495e-17 + art_sys_72: -9.53297763e-18 + art_sys_73: 9.85644660e-18 + art_sys_74: 1.10414718e-13 + art_sys_75: -4.41019080e-19 + art_sys_76: 6.92930279e-15 + art_sys_77: 4.18876840e-15 + art_sys_78: -1.04692751e-15 + art_sys_79: 9.40340662e-19 + art_sys_80: 3.65288672e-16 + art_sys_81: -2.84604337e-13 + art_sys_82: 4.99595760e-10 + art_sys_83: -8.56157071e-17 + art_sys_84: -4.42562766e-17 + art_sys_85: -6.52661471e-17 + art_sys_86: 1.27415720e-17 + art_sys_87: 2.77187779e-14 + art_sys_88: -1.73413732e-14 + art_sys_89: -9.04188034e-19 + art_sys_90: 5.31409959e-14 + art_sys_91: -4.51949668e-05 + art_sys_92: -1.82079310e-19 + art_sys_93: 1.17390183e-18 + art_sys_94: -1.86190625e-15 + art_sys_95: -1.48564162e-11 + art_sys_96: 5.33483467e-05 + art_sys_97: -2.45790927e-11 + art_sys_98: -1.19425033e-12 + art_sys_99: 3.64968946e-05 + art_sys_100: -4.16429575e-11 + art_sys_101: -2.31730226e-05 + art_sys_102: 1.91175992e-13 + art_sys_103: -8.37216110e-12 + art_sys_104: 1.33634862e-05 + art_sys_105: 1.63984227e-17 + art_sys_106: -6.23070026e-06 + art_sys_107: -4.82657337e-13 + art_sys_108: -8.62558503e-17 + art_sys_109: 9.68798313e-18 + art_sys_110: -6.67171910e-12 + art_sys_111: 2.67274725e-06 + art_sys_112: 1.11331950e-12 + art_sys_113: 9.47631288e-11 + art_sys_114: 6.38597758e-19 + art_sys_115: -1.04244308e-06 + art_sys_116: 3.10182408e-13 + art_sys_117: 1.88751840e-17 + art_sys_118: 3.78934325e-07 + art_sys_119: 1.39704391e-13 + art_sys_120: -1.41429513e-12 + art_sys_121: -8.73498258e-20 + art_sys_122: -1.63551919e-07 + art_sys_123: -1.96816932e-14 + art_sys_124: 6.03748816e-08 + art_sys_125: -3.89929046e-19 + art_sys_126: -4.08125051e-13 + art_sys_127: 8.17438775e-16 + art_sys_128: -2.06068668e-08 + art_sys_129: 6.27723016e-19 + art_sys_130: -8.12599335e-15 + art_sys_131: -8.94895540e-18 + art_sys_132: -6.92863745e-09 + art_sys_133: 1.55988953e-14 + art_sys_134: -6.51599715e-14 + art_sys_135: 2.28232307e-09 + art_sys_136: 1.61900524e-18 + art_sys_137: -6.08737049e-16 + art_sys_138: 5.97633332e-10 + art_sys_139: 1.31716827e-14 + art_sys_140: -1.35459666e-18 + art_sys_141: 4.06731268e-15 + art_sys_142: 2.02972703e-10 + art_sys_143: 3.75125617e-15 + art_sys_144: -6.37279302e-17 + art_sys_145: 3.42421397e-11 + art_sys_146: -2.09020856e-15 + art_sys_147: 2.37152360e-17 + art_sys_148: -7.84927795e-19 + art_sys_149: -3.47166456e-12 + art_sys_150: 9.99196777e-14 + art_sys_151: 5.39918231e-15 + art_sys_152: -9.43431745e-17 + art_sys_153: 1.37686726e-14 + art_sys_154: -8.65491442e-14 + art_sys_155: -5.03541594e-17 + art_sys_156: 0.0 + art_sys_157: -3.85195171e-14 + art_sys_158: 0.0 + art_sys_159: 6.12158940e-15 + art_sys_160: -7.97074334e-16 + art_sys_161: -6.84557210e-16 + art_sys_162: -6.84557210e-16 + art_sys_163: -7.07030517e-16 + art_sys_164: -7.07030517e-16 + art_sys_165: 7.97463240e-30 + art_sys_166: -2.64695302e-30 + art_sys_167: -0.0 + art_sys_168: 4.01032457e-26 + art_sys_169: 1.79045256e-26 + art_sys_170: -5.64763094e-27 + art_sys_171: 9.63744474e-29 + art_sys_172: -1.74406156e-27 + art_sys_173: -2.97854015e-28 + art_sys_174: -3.37694726e-29 + art_sys_175: -5.59204059e-29 + art_sys_176: -9.64748574e-30 + art_sys_177: 5.05510311e-30 + art_sys_178: -8.10663226e-30 + art_sys_179: 1.53369298e-29 + art_sys_180: 1.59201971e-28 + art_sys_181: -3.53434695e-28 + art_sys_182: 4.74555826e-30 + art_sys_183: -3.65148795e-32 + art_sys_184: -2.19106043e-32 + art_sys_185: -2.90834096e-32 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -8969,191 +8969,191 @@ bins: RelativeStatFSR-: -8.72828422e-04 luminosity_uncertainty: 3.44572800e-02 uncorrelated_uncertainty: 1.32528000e-02 -- art_sys_1: -5.76028223e-42 - art_sys_2: 3.30328360e-29 - art_sys_3: -1.00839043e-30 +- art_sys_1: 5.46500473e-42 + art_sys_2: -2.05701948e-30 + art_sys_3: -1.00839044e-30 art_sys_4: 1.05415295e-11 - art_sys_5: 1.79574680e-26 - art_sys_6: 1.26424619e-28 + art_sys_5: 1.91291558e-26 + art_sys_6: 6.60871815e-29 art_sys_7: 2.68461037e-10 - art_sys_8: 4.40083593e-26 + art_sys_8: 4.17879979e-26 art_sys_9: -3.72996198e-10 - art_sys_10: -2.23629385e-27 - art_sys_11: 1.65830247e-24 + art_sys_10: -3.82965631e-27 + art_sys_11: 1.41091318e-24 art_sys_12: -1.04893981e-09 - art_sys_13: 2.51159734e-26 - art_sys_14: 3.82468976e-08 - art_sys_15: -2.83339387e-22 - art_sys_16: 1.08764212e-07 - art_sys_17: -3.08854073e-24 - art_sys_18: -1.68267106e-21 - art_sys_19: -1.79974661e-07 - art_sys_20: -1.07023085e-23 - art_sys_21: -1.77237197e-20 - art_sys_22: 2.29487249e-23 + art_sys_13: -1.11806766e-23 + art_sys_14: -3.82468976e-08 + art_sys_15: 2.08636567e-22 + art_sys_16: -1.08764212e-07 + art_sys_17: -4.25251367e-24 + art_sys_18: -1.68132979e-21 + art_sys_19: 1.79974661e-07 + art_sys_20: -1.88878958e-24 + art_sys_21: -1.76316298e-20 + art_sys_22: 1.42458415e-23 art_sys_23: 1.50784266e-08 - art_sys_24: 1.49470514e-18 - art_sys_25: -1.15433600e-06 + art_sys_24: 1.49471382e-18 + art_sys_25: 1.15433600e-06 art_sys_26: -1.07708406e-05 - art_sys_27: 2.10932744e-18 - art_sys_28: -1.43245198e-17 - art_sys_29: 1.52858673e-14 - art_sys_30: 5.29919847e-14 - art_sys_31: -2.28868012e-14 - art_sys_32: -1.57909892e-15 - art_sys_33: 1.79884764e-15 - art_sys_34: 1.63989267e-16 - art_sys_35: 6.41527956e-16 - art_sys_36: 4.73679436e-18 - art_sys_37: -1.05965779e-05 - art_sys_38: 9.57122985e-17 - art_sys_39: 5.05798893e-17 - art_sys_40: 2.47782152e-15 - art_sys_41: -4.24609803e-05 - art_sys_42: -7.35897317e-17 - art_sys_43: 1.22854998e-04 - art_sys_44: -1.55919453e-16 - art_sys_45: 2.03497377e-15 - art_sys_46: 2.16889922e-16 - art_sys_47: -7.58029679e-17 + art_sys_27: -2.10634384e-18 + art_sys_28: -1.43380309e-17 + art_sys_29: 7.71524087e-19 + art_sys_30: -1.05965779e-05 + art_sys_31: -5.04921124e-17 + art_sys_32: 9.73927761e-19 + art_sys_33: 4.24609803e-05 + art_sys_34: -1.22854998e-04 + art_sys_35: 1.61743923e-16 + art_sys_36: -5.23361101e-14 + art_sys_37: 1.39331547e-14 + art_sys_38: 2.14058444e-15 + art_sys_39: 4.35100933e-15 + art_sys_40: 1.76667726e-15 + art_sys_41: 1.12598528e-15 + art_sys_42: -4.03221109e-16 + art_sys_43: 1.88423380e-17 + art_sys_44: -2.70648264e-17 + art_sys_45: 6.50717345e-17 + art_sys_46: 1.75725926e-17 + art_sys_47: 2.47382857e-14 art_sys_48: -1.88756222e-05 - art_sys_49: -3.98056801e-13 - art_sys_50: 1.53800026e-17 - art_sys_51: 4.11096355e-17 - art_sys_52: 4.20346528e-04 - art_sys_53: -6.93883781e-15 - art_sys_54: -1.38391837e-13 - art_sys_55: -1.93100598e-04 - art_sys_56: -7.09007444e-14 - art_sys_57: -1.58175851e-14 - art_sys_58: 2.92612901e-14 - art_sys_59: -2.15318249e-14 - art_sys_60: 8.29450250e-14 - art_sys_61: 1.88928484e-15 - art_sys_62: -1.57890642e-16 - art_sys_63: -2.70701192e-16 - art_sys_64: 7.72938074e-17 - art_sys_65: 2.06194648e-17 - art_sys_66: 2.05618965e-16 - art_sys_67: -2.45377705e-17 - art_sys_68: 3.11210421e-17 - art_sys_69: 1.37385444e-10 - art_sys_70: 5.63955701e-04 - art_sys_71: 1.45469245e-09 - art_sys_72: 2.42826836e-13 - art_sys_73: -2.20584253e-11 - art_sys_74: -2.01638799e-09 - art_sys_75: 1.57181883e-18 - art_sys_76: 5.05336097e-14 - art_sys_77: -2.52733175e-14 - art_sys_78: 9.75987680e-15 - art_sys_79: 5.70444002e-13 - art_sys_80: -3.73424854e-09 - art_sys_81: 4.80740317e-15 - art_sys_82: 8.53043965e-16 - art_sys_83: -6.69036495e-16 - art_sys_84: -1.62126115e-12 - art_sys_85: -1.00614565e-15 - art_sys_86: -8.15886408e-17 - art_sys_87: -5.39976085e-15 - art_sys_88: -5.61627315e-17 - art_sys_89: -7.26343706e-17 - art_sys_90: -6.35758141e-04 - art_sys_91: 1.45997340e-04 - art_sys_92: 9.69748542e-12 - art_sys_93: 1.00974455e-10 - art_sys_94: -2.97725795e-11 - art_sys_95: -1.95142457e-04 - art_sys_96: -2.26685258e-16 - art_sys_97: -3.30935123e-11 - art_sys_98: 1.02906853e-04 - art_sys_99: -4.74851694e-11 - art_sys_100: 2.07175011e-12 - art_sys_101: -5.98501059e-05 - art_sys_102: 4.96090306e-17 - art_sys_103: -2.27348101e-12 - art_sys_104: -2.76604718e-05 - art_sys_105: -3.91569826e-17 - art_sys_106: 1.17891613e-05 - art_sys_107: -3.10870167e-10 - art_sys_108: -2.32968783e-13 - art_sys_109: 1.03815589e-11 - art_sys_110: -3.87375717e-17 - art_sys_111: 4.60506312e-06 - art_sys_112: -2.19860367e-13 - art_sys_113: -4.90159383e-18 - art_sys_114: -1.67129284e-06 - art_sys_115: -6.66418483e-15 - art_sys_116: 6.27171115e-12 - art_sys_117: -2.75365678e-18 - art_sys_118: -7.21217319e-07 - art_sys_119: -3.37585676e-16 - art_sys_120: 2.66732770e-07 - art_sys_121: -1.89280830e-13 - art_sys_122: 9.09516091e-08 - art_sys_123: 2.17351274e-14 - art_sys_124: -3.06154664e-08 - art_sys_125: 1.00604894e-08 - art_sys_126: 1.50504084e-13 - art_sys_127: 2.64077322e-09 - art_sys_128: -1.85671862e-14 - art_sys_129: 2.66292656e-15 - art_sys_130: -4.55271453e-14 - art_sys_131: -1.72087969e-14 - art_sys_132: 8.94265042e-10 - art_sys_133: 3.33293178e-15 - art_sys_134: 3.76297580e-13 - art_sys_135: 1.53461961e-10 - art_sys_136: 2.76347123e-13 - art_sys_137: -1.63522577e-11 - art_sys_138: -7.44197952e-14 - art_sys_139: -2.59229528e-13 - art_sys_140: -8.22634771e-13 - art_sys_141: 1.22116639e-13 - art_sys_142: 0.0 - art_sys_143: -3.80012170e-13 - art_sys_144: -1.11615671e-13 - art_sys_145: -5.90467948e-14 - art_sys_146: -1.26473662e-18 - art_sys_147: -2.17840885e-19 - art_sys_148: 2.10452189e-16 - art_sys_149: 4.66476311e-17 - art_sys_150: 4.47284968e-18 - art_sys_151: -2.18205906e-16 - art_sys_152: 1.40447923e-16 - art_sys_153: 7.26945294e-18 - art_sys_154: -4.99377013e-17 - art_sys_155: -9.31619954e-17 - art_sys_156: -3.33678655e-16 - art_sys_157: -3.56993821e-17 - art_sys_158: 0.0 - art_sys_159: -1.68097185e-14 - art_sys_160: -1.68097185e-14 - art_sys_161: 5.02687864e-16 - art_sys_162: -2.08551943e-28 - art_sys_163: -0.0 - art_sys_164: -1.33437285e-28 - art_sys_165: -1.82414020e-24 - art_sys_166: -1.18341454e-24 - art_sys_167: 1.07879879e-24 - art_sys_168: -3.18855716e-25 - art_sys_169: -1.34638485e-25 - art_sys_170: 3.38963908e-25 - art_sys_171: -8.83823955e-28 - art_sys_172: -1.46499370e-26 - art_sys_173: 4.26055332e-26 - art_sys_174: -9.49414075e-29 - art_sys_175: -4.36491225e-28 - art_sys_176: -1.40987070e-28 - art_sys_177: -8.65863865e-29 - art_sys_178: 3.86749122e-27 - art_sys_179: 1.24076937e-28 - art_sys_180: -2.48989576e-28 - art_sys_181: 4.38320454e-30 - art_sys_182: -4.81506018e-30 - art_sys_183: -1.41709534e-31 - art_sys_184: 6.04696093e-32 - art_sys_185: -3.58781306e-30 + art_sys_49: 2.14573371e-13 + art_sys_50: 1.16684045e-19 + art_sys_51: -3.09865183e-17 + art_sys_52: -5.74661932e-14 + art_sys_53: 4.20346532e-04 + art_sys_54: -1.64905877e-12 + art_sys_55: 1.93100597e-04 + art_sys_56: -1.84727160e-14 + art_sys_57: -5.68803110e-17 + art_sys_58: 1.84817334e-17 + art_sys_59: 5.63956254e-04 + art_sys_60: 2.24789870e-10 + art_sys_61: 7.53223670e-16 + art_sys_62: -1.57637144e-13 + art_sys_63: 1.43835299e-10 + art_sys_64: 1.68205443e-14 + art_sys_65: 6.83675467e-14 + art_sys_66: 2.89214560e-16 + art_sys_67: -3.32994418e-15 + art_sys_68: 2.32168619e-15 + art_sys_69: -3.16803283e-16 + art_sys_70: 5.50366806e-16 + art_sys_71: -2.99447109e-16 + art_sys_72: 7.55841562e-17 + art_sys_73: -2.26787131e-17 + art_sys_74: -2.70324696e-13 + art_sys_75: 9.03909771e-18 + art_sys_76: -5.46021209e-14 + art_sys_77: -1.58288145e-14 + art_sys_78: 4.74510088e-15 + art_sys_79: -5.67806022e-18 + art_sys_80: -1.08278721e-15 + art_sys_81: 7.77903423e-13 + art_sys_82: -2.18898126e-09 + art_sys_83: 1.69544459e-15 + art_sys_84: 1.71370805e-16 + art_sys_85: 5.59328063e-16 + art_sys_86: -1.02116414e-16 + art_sys_87: -1.20950534e-13 + art_sys_88: 7.65411183e-14 + art_sys_89: -4.39885477e-17 + art_sys_90: -2.34518393e-13 + art_sys_91: 6.35761496e-04 + art_sys_92: 6.44771501e-18 + art_sys_93: -4.82059415e-18 + art_sys_94: 8.22804651e-15 + art_sys_95: 9.08049228e-11 + art_sys_96: -1.46000841e-04 + art_sys_97: 6.50137443e-11 + art_sys_98: 5.66706742e-12 + art_sys_99: -1.95142224e-04 + art_sys_100: 1.84835791e-10 + art_sys_101: 1.02906852e-04 + art_sys_102: -8.29160227e-13 + art_sys_103: 4.04736782e-11 + art_sys_104: -5.98485147e-05 + art_sys_105: -7.23860388e-17 + art_sys_106: 2.76586556e-05 + art_sys_107: 2.13132081e-12 + art_sys_108: 3.81437642e-16 + art_sys_109: -4.28913129e-17 + art_sys_110: 2.94427823e-11 + art_sys_111: -1.17890663e-05 + art_sys_112: -4.91426457e-12 + art_sys_113: -4.16946839e-10 + art_sys_114: -2.81957708e-18 + art_sys_115: 4.60500193e-06 + art_sys_116: -1.36954059e-12 + art_sys_117: -8.32912063e-17 + art_sys_118: -1.67180566e-06 + art_sys_119: -6.17361658e-13 + art_sys_120: 6.25211362e-12 + art_sys_121: 4.05815970e-19 + art_sys_122: 7.21652331e-07 + art_sys_123: 8.70177599e-14 + art_sys_124: -2.66647868e-07 + art_sys_125: 1.72504019e-18 + art_sys_126: 1.80321880e-12 + art_sys_127: -3.61522173e-15 + art_sys_128: 9.09842123e-08 + art_sys_129: -2.77561335e-18 + art_sys_130: 3.59344947e-14 + art_sys_131: 3.95756168e-17 + art_sys_132: 3.06176688e-08 + art_sys_133: -6.89800945e-14 + art_sys_134: 2.88164632e-13 + art_sys_135: -1.00852999e-08 + art_sys_136: -7.15814158e-18 + art_sys_137: 2.69135955e-15 + art_sys_138: -2.64182859e-09 + art_sys_139: -5.82437936e-14 + art_sys_140: 5.99059679e-18 + art_sys_141: -1.79814618e-14 + art_sys_142: -8.97386261e-10 + art_sys_143: -1.65866828e-14 + art_sys_144: 2.81729693e-16 + art_sys_145: -1.51414886e-10 + art_sys_146: 9.24230332e-15 + art_sys_147: -1.04864918e-16 + art_sys_148: 3.47097947e-18 + art_sys_149: 1.53513978e-11 + art_sys_150: -4.41833745e-13 + art_sys_151: -2.38807012e-14 + art_sys_152: 4.17171560e-16 + art_sys_153: -6.08879222e-14 + art_sys_154: 3.71506661e-13 + art_sys_155: 2.22621178e-16 + art_sys_156: -0.0 + art_sys_157: 1.70410845e-13 + art_sys_158: -0.0 + art_sys_159: -2.70749717e-14 + art_sys_160: 3.52607395e-15 + art_sys_161: 3.02700634e-15 + art_sys_162: 3.02700634e-15 + art_sys_163: 3.12685375e-15 + art_sys_164: 3.12685375e-15 + art_sys_165: -3.52671874e-29 + art_sys_166: 1.17059005e-29 + art_sys_167: 0.0 + art_sys_168: -2.01785103e-25 + art_sys_169: -7.62580785e-26 + art_sys_170: 2.14835125e-26 + art_sys_171: -3.93289575e-26 + art_sys_172: 1.15725580e-27 + art_sys_173: 8.53483545e-28 + art_sys_174: 7.42616985e-28 + art_sys_175: 1.97892360e-28 + art_sys_176: 5.18993751e-29 + art_sys_177: -2.23359549e-29 + art_sys_178: 3.56971166e-29 + art_sys_179: -6.77960795e-29 + art_sys_180: -7.04114693e-28 + art_sys_181: 1.55772290e-27 + art_sys_182: -1.54005230e-29 + art_sys_183: 1.64516210e-31 + art_sys_184: 9.69875844e-32 + art_sys_185: 1.28594399e-31 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -9260,191 +9260,191 @@ bins: RelativeStatFSR-: -5.58758717e-04 luminosity_uncertainty: 2.06693240e-02 uncorrelated_uncertainty: 7.94974000e-03 -- art_sys_1: 6.46349190e-44 - art_sys_2: -3.69985317e-31 - art_sys_3: -1.64413258e-32 +- art_sys_1: -6.10942601e-44 + art_sys_2: 2.30397115e-32 + art_sys_3: -1.64413257e-32 art_sys_4: -1.18070732e-13 - art_sys_5: 1.26826071e-27 - art_sys_6: -1.43521883e-30 + art_sys_5: 1.25510570e-27 + art_sys_6: -7.58142486e-31 art_sys_7: 1.91812392e-11 - art_sys_8: -7.09663880e-27 + art_sys_8: -7.65336206e-27 art_sys_9: -2.68130690e-11 - art_sys_10: -2.81679272e-28 - art_sys_11: 5.85178069e-26 + art_sys_10: -2.77096964e-28 + art_sys_11: 4.28849469e-26 art_sys_12: -8.92162203e-11 - art_sys_13: 2.02972371e-27 - art_sys_14: 2.47302405e-09 - art_sys_15: -4.26763888e-23 - art_sys_16: 1.08812644e-08 - art_sys_17: -2.49021564e-25 - art_sys_18: 8.04394659e-20 - art_sys_19: -9.90529183e-09 - art_sys_20: 2.28961420e-25 - art_sys_21: -6.21735589e-19 - art_sys_22: 4.44738984e-24 + art_sys_13: -7.22445751e-25 + art_sys_14: -2.47302405e-09 + art_sys_15: 3.54650690e-23 + art_sys_16: -1.08812644e-08 + art_sys_17: -3.54372085e-25 + art_sys_18: 8.04405419e-20 + art_sys_19: 9.90529183e-09 + art_sys_20: 1.38823679e-24 + art_sys_21: -6.21729979e-19 + art_sys_22: 1.85723967e-24 art_sys_23: 2.08494092e-08 - art_sys_24: 1.27993361e-16 - art_sys_25: 1.30841204e-07 + art_sys_24: 1.27993360e-16 + art_sys_25: -1.30841204e-07 art_sys_26: -2.03456234e-06 - art_sys_27: 5.42723729e-18 - art_sys_28: -4.88346340e-18 - art_sys_29: 4.45676814e-14 - art_sys_30: -2.65185035e-14 - art_sys_31: 4.87511252e-15 - art_sys_32: 1.31572950e-16 - art_sys_33: 1.31361547e-15 - art_sys_34: -1.16230174e-15 - art_sys_35: 2.84533718e-16 - art_sys_36: 3.55849200e-18 - art_sys_37: -3.95714784e-06 - art_sys_38: 2.24557878e-16 - art_sys_39: -3.44544495e-17 - art_sys_40: -2.78124208e-16 - art_sys_41: 4.81681427e-06 - art_sys_42: 6.48265704e-17 - art_sys_43: 3.52910636e-05 - art_sys_44: 1.20331573e-16 - art_sys_45: 1.28165840e-15 - art_sys_46: -6.12949800e-16 - art_sys_47: 2.25950589e-17 - art_sys_48: 6.38783744e-05 - art_sys_49: -1.06225761e-13 - art_sys_50: -1.64828621e-17 - art_sys_51: -7.46103307e-17 - art_sys_52: 4.23106277e-05 - art_sys_53: 5.02995899e-14 - art_sys_54: 2.75554980e-13 - art_sys_55: 4.02278030e-04 - art_sys_56: 7.24581273e-14 - art_sys_57: 3.23536825e-14 - art_sys_58: 1.26681460e-14 - art_sys_59: 5.06325407e-15 - art_sys_60: -2.85571841e-14 - art_sys_61: -6.04675179e-16 - art_sys_62: -4.23877132e-16 - art_sys_63: 6.72183413e-16 - art_sys_64: -7.22940828e-16 - art_sys_65: 4.46604700e-17 - art_sys_66: -4.44761273e-17 - art_sys_67: -2.34314963e-18 - art_sys_68: 3.47481791e-19 - art_sys_69: 1.01292292e-10 - art_sys_70: -1.93643257e-04 - art_sys_71: 1.22637521e-09 - art_sys_72: 2.33183661e-13 - art_sys_73: 3.05098184e-11 - art_sys_74: -1.66353471e-09 - art_sys_75: -1.83058450e-17 - art_sys_76: 7.43163954e-14 - art_sys_77: 5.92728105e-15 - art_sys_78: -1.23145897e-14 - art_sys_79: 4.19157484e-13 - art_sys_80: -2.14853445e-09 - art_sys_81: -7.17287775e-15 - art_sys_82: 1.09293546e-15 - art_sys_83: -4.31519451e-16 - art_sys_84: 2.60945830e-12 - art_sys_85: 4.99409401e-16 - art_sys_86: 2.00803643e-16 - art_sys_87: 7.71389745e-15 - art_sys_88: 4.10813056e-17 - art_sys_89: 1.63931074e-16 - art_sys_90: -4.67157212e-04 - art_sys_91: -3.32467502e-04 - art_sys_92: -1.75001351e-11 - art_sys_93: 4.79695431e-11 - art_sys_94: 5.17797671e-11 - art_sys_95: 1.30018604e-04 - art_sys_96: 5.07497806e-16 - art_sys_97: 5.57064524e-11 - art_sys_98: -1.45094882e-04 - art_sys_99: 7.26814086e-11 - art_sys_100: -4.04501755e-12 - art_sys_101: 9.14774905e-05 - art_sys_102: -1.11092889e-16 - art_sys_103: 4.99264495e-12 - art_sys_104: 4.79360034e-05 - art_sys_105: 7.86901558e-17 - art_sys_106: -2.20109276e-05 - art_sys_107: 3.10328115e-10 - art_sys_108: 5.23032088e-13 - art_sys_109: -2.10611097e-11 - art_sys_110: 7.49208001e-17 - art_sys_111: -9.04525267e-06 - art_sys_112: 4.97737077e-13 - art_sys_113: 1.89934388e-17 - art_sys_114: 3.41738952e-06 - art_sys_115: 1.49563715e-14 - art_sys_116: -1.35373527e-11 - art_sys_117: 5.20965483e-18 - art_sys_118: 1.50872766e-06 - art_sys_119: 7.57485160e-16 - art_sys_120: -5.69958180e-07 - art_sys_121: 4.06199784e-13 - art_sys_122: -1.97527196e-07 - art_sys_123: -4.88469144e-14 - art_sys_124: 6.71626456e-08 - art_sys_125: -2.22485540e-08 - art_sys_126: -3.38361906e-13 - art_sys_127: -5.87420428e-09 - art_sys_128: 4.17621969e-14 - art_sys_129: -6.00320889e-15 - art_sys_130: 1.02335756e-13 - art_sys_131: 3.85989165e-14 - art_sys_132: -1.99658578e-09 - art_sys_133: -7.01323552e-15 - art_sys_134: -8.42557962e-13 - art_sys_135: -3.43954427e-10 - art_sys_136: -6.19500065e-13 - art_sys_137: 3.67162676e-11 - art_sys_138: 1.67079690e-13 - art_sys_139: 5.81900377e-13 - art_sys_140: 4.99727096e-13 - art_sys_141: -2.73987305e-13 - art_sys_142: -0.0 - art_sys_143: 8.51901825e-13 - art_sys_144: 2.50385192e-13 - art_sys_145: 1.32400268e-13 - art_sys_146: 2.11064601e-18 - art_sys_147: 5.39455711e-19 - art_sys_148: -4.84222941e-16 - art_sys_149: -1.04809902e-16 - art_sys_150: -1.00836081e-17 - art_sys_151: 4.90760327e-16 - art_sys_152: -3.13934568e-16 - art_sys_153: -1.63029811e-17 - art_sys_154: 1.12258941e-16 - art_sys_155: 2.09055167e-16 - art_sys_156: 7.48778561e-16 - art_sys_157: 7.99907334e-17 - art_sys_158: -0.0 - art_sys_159: 3.77602613e-14 - art_sys_160: 3.77602613e-14 - art_sys_161: -1.12912513e-15 - art_sys_162: 4.68425039e-28 - art_sys_163: 0.0 - art_sys_164: 2.99705185e-28 - art_sys_165: 3.75033119e-24 - art_sys_166: 2.44013228e-24 - art_sys_167: -2.20480904e-24 - art_sys_168: 6.54838331e-25 - art_sys_169: 2.80310238e-25 - art_sys_170: -6.95709685e-25 - art_sys_171: 1.74926274e-26 - art_sys_172: 1.48352736e-26 - art_sys_173: -8.20756846e-26 - art_sys_174: 2.12971597e-28 - art_sys_175: 6.91542633e-28 - art_sys_176: 3.12039294e-28 - art_sys_177: 3.07555464e-28 - art_sys_178: -7.19567875e-27 - art_sys_179: -2.09102797e-28 - art_sys_180: 5.53301088e-28 - art_sys_181: -8.99534822e-30 - art_sys_182: 9.97156918e-30 - art_sys_183: 3.15607478e-31 - art_sys_184: -1.35574514e-31 - art_sys_185: 8.06852761e-30 + art_sys_27: -5.43229313e-18 + art_sys_28: -4.88873291e-18 + art_sys_29: 3.66297776e-18 + art_sys_30: -3.95714784e-06 + art_sys_31: 3.44546387e-17 + art_sys_32: 2.24251722e-18 + art_sys_33: -4.81681427e-06 + art_sys_34: -3.52910636e-05 + art_sys_35: 7.27103964e-16 + art_sys_36: 8.36231600e-15 + art_sys_37: -4.36461711e-15 + art_sys_38: 3.19919429e-15 + art_sys_39: -3.65861783e-15 + art_sys_40: 1.79114145e-15 + art_sys_41: -1.38161441e-15 + art_sys_42: 5.94622705e-17 + art_sys_43: -1.77364728e-16 + art_sys_44: 7.82123725e-17 + art_sys_45: -1.04733129e-16 + art_sys_46: -6.33391891e-17 + art_sys_47: -8.37395319e-14 + art_sys_48: 6.38783746e-05 + art_sys_49: -7.65755774e-13 + art_sys_50: -2.88676232e-17 + art_sys_51: 4.96005483e-17 + art_sys_52: 1.67392884e-13 + art_sys_53: 4.23106215e-05 + art_sys_54: 1.80722068e-13 + art_sys_55: -4.02278028e-04 + art_sys_56: -1.04470140e-13 + art_sys_57: 9.40581715e-17 + art_sys_58: -3.84390793e-17 + art_sys_59: -1.93642814e-04 + art_sys_60: 8.21267737e-11 + art_sys_61: 5.94693243e-16 + art_sys_62: 1.16716066e-13 + art_sys_63: 2.95951355e-10 + art_sys_64: -1.14887543e-14 + art_sys_65: -1.19603555e-14 + art_sys_66: -1.46806319e-15 + art_sys_67: 4.78487389e-16 + art_sys_68: 4.98235391e-16 + art_sys_69: 8.23274662e-16 + art_sys_70: -3.42626403e-16 + art_sys_71: 1.89465180e-17 + art_sys_72: -1.98513752e-17 + art_sys_73: 8.34740821e-17 + art_sys_74: 7.33728622e-13 + art_sys_75: 4.35180640e-18 + art_sys_76: -7.82756295e-15 + art_sys_77: 2.67126320e-14 + art_sys_78: -3.64090542e-15 + art_sys_79: 1.68583951e-18 + art_sys_80: 2.58949136e-15 + art_sys_81: -1.77510129e-12 + art_sys_82: 1.91418665e-09 + art_sys_83: 1.47636322e-15 + art_sys_84: -2.04130561e-16 + art_sys_85: 1.08896038e-16 + art_sys_86: -9.13605960e-18 + art_sys_87: 1.90060559e-13 + art_sys_88: -1.41930449e-13 + art_sys_89: -6.73963247e-17 + art_sys_90: 5.16087832e-13 + art_sys_91: 4.67162566e-04 + art_sys_92: 1.07369695e-17 + art_sys_93: 5.16310964e-18 + art_sys_94: -1.80529406e-14 + art_sys_95: 5.98343238e-12 + art_sys_96: 3.32465915e-04 + art_sys_97: -1.46129485e-10 + art_sys_98: 1.39236652e-11 + art_sys_99: 1.30018272e-04 + art_sys_100: -2.70223911e-10 + art_sys_101: -1.45094746e-04 + art_sys_102: -4.74881546e-13 + art_sys_103: -4.46590410e-11 + art_sys_104: 9.14747821e-05 + art_sys_105: 1.56209945e-16 + art_sys_106: -4.79332261e-05 + art_sys_107: -4.65300725e-12 + art_sys_108: -8.56522110e-16 + art_sys_109: 8.95028991e-17 + art_sys_110: -6.19421447e-11 + art_sys_111: 2.20107536e-05 + art_sys_112: 1.02634884e-11 + art_sys_113: 7.78442630e-10 + art_sys_114: 6.50944787e-18 + art_sys_115: -9.04513952e-06 + art_sys_116: 2.97636074e-12 + art_sys_117: 1.59650963e-16 + art_sys_118: 3.41848856e-06 + art_sys_119: 1.35875939e-12 + art_sys_120: -1.37749751e-11 + art_sys_121: -2.91081340e-18 + art_sys_122: -1.50962602e-06 + art_sys_123: -1.94542309e-13 + art_sys_124: 5.69777349e-07 + art_sys_125: -3.94952946e-18 + art_sys_126: -3.98517399e-12 + art_sys_127: 8.15266187e-15 + art_sys_128: -1.97599126e-07 + art_sys_129: 6.29970243e-18 + art_sys_130: -8.07039918e-14 + art_sys_131: -8.88504990e-17 + art_sys_132: -6.71670620e-08 + art_sys_133: 1.54886965e-13 + art_sys_134: -6.48310903e-13 + art_sys_135: 2.23030062e-08 + art_sys_136: 1.60578912e-17 + art_sys_137: -6.04891351e-15 + art_sys_138: 5.87648723e-09 + art_sys_139: 1.30644536e-13 + art_sys_140: -1.34658303e-17 + art_sys_141: 4.00811360e-14 + art_sys_142: 2.00353378e-09 + art_sys_143: 3.71303535e-14 + art_sys_144: -6.28427286e-16 + art_sys_145: 3.39373694e-10 + art_sys_146: -2.07105642e-14 + art_sys_147: 2.35036514e-16 + art_sys_148: -7.55555320e-18 + art_sys_149: -3.44717634e-11 + art_sys_150: 9.92093867e-13 + art_sys_151: 5.36170189e-14 + art_sys_152: -9.36391554e-16 + art_sys_153: 1.36661270e-13 + art_sys_154: -6.97593286e-13 + art_sys_155: -4.99428311e-16 + art_sys_156: 0.0 + art_sys_157: -3.82829040e-13 + art_sys_158: 0.0 + art_sys_159: 6.07846527e-14 + art_sys_160: -7.92071397e-15 + art_sys_161: -6.79262803e-15 + art_sys_162: -6.79262803e-15 + art_sys_163: -7.01891875e-15 + art_sys_164: -7.01891875e-15 + art_sys_165: 7.91614917e-29 + art_sys_166: -2.62751277e-29 + art_sys_167: -0.0 + art_sys_168: 4.26259502e-25 + art_sys_169: 1.62513650e-25 + art_sys_170: -4.58898603e-26 + art_sys_171: 8.32205000e-26 + art_sys_172: -1.67030896e-27 + art_sys_173: -1.78936929e-27 + art_sys_174: -1.54597530e-27 + art_sys_175: -3.87968201e-28 + art_sys_176: -1.41100201e-28 + art_sys_177: 3.56301980e-29 + art_sys_178: -7.93935981e-29 + art_sys_179: 1.52045237e-28 + art_sys_180: 1.58071498e-27 + art_sys_181: -2.89004191e-27 + art_sys_182: 3.29337169e-29 + art_sys_183: -3.53452684e-31 + art_sys_184: -2.15985865e-31 + art_sys_185: -2.87852377e-31 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -9551,191 +9551,191 @@ bins: RelativeStatFSR-: -3.66056269e-04 luminosity_uncertainty: 1.26978540e-02 uncorrelated_uncertainty: 4.88379000e-03 -- art_sys_1: 7.58243575e-44 - art_sys_2: -4.34592391e-31 - art_sys_3: 2.87580034e-33 +- art_sys_1: -7.18597319e-44 + art_sys_2: 2.70629206e-32 + art_sys_3: 2.87580045e-33 art_sys_4: -1.38688319e-13 - art_sys_5: 6.30910870e-29 - art_sys_6: -1.67175018e-30 + art_sys_5: 4.76475747e-29 + art_sys_6: -8.81379460e-31 art_sys_7: 7.30758562e-13 - art_sys_8: 9.90651826e-28 + art_sys_8: 9.48905755e-28 art_sys_9: 6.68587790e-15 - art_sys_10: -4.88896370e-30 - art_sys_11: -7.86553257e-27 + art_sys_10: -9.29128639e-30 + art_sys_11: -8.81504916e-27 art_sys_12: -1.07733305e-11 - art_sys_13: 2.42945339e-28 - art_sys_14: 1.54279124e-10 - art_sys_15: -4.50050947e-24 - art_sys_16: 1.18062496e-09 - art_sys_17: -2.43759917e-26 - art_sys_18: 3.61835629e-23 - art_sys_19: -7.61106745e-10 - art_sys_20: 3.52392235e-26 - art_sys_21: -1.10207200e-21 - art_sys_22: 6.01835345e-25 + art_sys_13: -4.49796210e-26 + art_sys_14: -1.54279124e-10 + art_sys_15: 3.72469517e-24 + art_sys_16: -1.18062496e-09 + art_sys_17: -3.49108181e-26 + art_sys_18: 3.63420787e-23 + art_sys_19: 7.61106745e-10 + art_sys_20: 1.83171953e-25 + art_sys_21: -1.10159509e-21 + art_sys_22: 4.46573904e-25 art_sys_23: 2.31910387e-09 - art_sys_24: -3.48208949e-19 - art_sys_25: 2.08411151e-08 + art_sys_24: -3.48209084e-19 + art_sys_25: -2.08411151e-08 art_sys_26: -9.34220179e-08 - art_sys_27: -1.32592109e-18 - art_sys_28: -2.72063636e-19 - art_sys_29: 6.64948805e-14 - art_sys_30: -2.00376546e-14 - art_sys_31: 2.94207099e-15 - art_sys_32: -3.42633949e-15 - art_sys_33: 5.07666414e-16 - art_sys_34: -1.32313725e-15 - art_sys_35: 3.59493008e-16 - art_sys_36: 2.75528396e-19 - art_sys_37: -2.42096798e-07 - art_sys_38: 2.34753058e-16 - art_sys_39: -8.97203625e-18 - art_sys_40: -1.89617094e-16 - art_sys_41: 3.27591653e-06 - art_sys_42: -2.50802657e-17 - art_sys_43: -2.24332607e-06 - art_sys_44: -6.39587051e-17 - art_sys_45: 1.68207104e-17 - art_sys_46: -7.96002156e-17 - art_sys_47: -5.53049953e-17 - art_sys_48: 8.06152087e-06 - art_sys_49: 2.58760741e-14 - art_sys_50: 2.17357632e-17 - art_sys_51: 8.43428223e-17 - art_sys_52: -3.41898050e-05 - art_sys_53: 3.72656220e-15 - art_sys_54: 2.09344273e-14 - art_sys_55: 2.95507076e-05 - art_sys_56: 4.93526598e-15 - art_sys_57: 6.31138150e-14 - art_sys_58: -4.11080922e-15 - art_sys_59: -1.20051296e-14 - art_sys_60: -8.85663235e-15 - art_sys_61: -6.99823701e-15 - art_sys_62: 6.12871558e-16 - art_sys_63: 1.25522641e-15 - art_sys_64: -8.84090386e-16 - art_sys_65: 1.60064151e-16 - art_sys_66: -6.86837049e-17 - art_sys_67: 9.78052260e-18 - art_sys_68: -3.34598730e-18 - art_sys_69: -1.80091113e-11 - art_sys_70: -6.10463059e-05 - art_sys_71: -4.34646040e-12 - art_sys_72: -1.05020953e-14 - art_sys_73: -1.45275669e-11 - art_sys_74: 5.37987386e-11 - art_sys_75: -3.21822218e-17 - art_sys_76: 3.26584945e-14 - art_sys_77: 2.79862631e-14 - art_sys_78: 3.05714882e-14 - art_sys_79: -7.64607956e-14 - art_sys_80: 2.48518618e-10 - art_sys_81: 2.40879510e-16 - art_sys_82: -6.38505897e-16 - art_sys_83: -2.24552428e-16 - art_sys_84: 4.14415877e-12 - art_sys_85: -3.94628154e-18 - art_sys_86: 2.63092323e-16 - art_sys_87: -1.94660458e-16 - art_sys_88: 7.23201868e-17 - art_sys_89: -3.32476318e-16 - art_sys_90: 8.52223677e-05 - art_sys_91: -5.44951841e-04 - art_sys_92: 2.69184946e-11 - art_sys_93: -4.50205578e-11 - art_sys_94: -6.50578186e-11 - art_sys_95: -9.58612947e-05 - art_sys_96: -9.75373804e-16 - art_sys_97: -7.19374828e-11 - art_sys_98: 6.70693333e-05 - art_sys_99: -3.28443113e-11 - art_sys_100: 6.31448985e-12 - art_sys_101: -9.64633837e-05 - art_sys_102: 2.13527245e-16 - art_sys_103: -9.28726068e-12 - art_sys_104: -5.89964113e-05 - art_sys_105: -1.33633338e-16 - art_sys_106: 3.15444579e-05 - art_sys_107: -3.04518696e-10 - art_sys_108: -1.00276102e-12 - art_sys_109: 3.47735003e-11 - art_sys_110: -1.20024934e-16 - art_sys_111: 1.41849891e-05 - art_sys_112: -9.68961123e-13 - art_sys_113: -5.20252703e-17 - art_sys_114: -5.68061589e-06 - art_sys_115: -2.87892846e-14 - art_sys_116: 2.45504720e-11 - art_sys_117: -7.66125267e-18 - art_sys_118: -2.60939303e-06 - art_sys_119: -1.45912664e-15 - art_sys_120: 1.01815502e-06 - art_sys_121: -7.30912199e-13 - art_sys_122: 3.61448215e-07 - art_sys_123: 9.42626913e-14 - art_sys_124: -1.25000957e-07 - art_sys_125: 4.18657050e-08 - art_sys_126: 6.53825523e-13 - art_sys_127: 1.11640460e-08 - art_sys_128: -8.06909778e-14 - art_sys_129: 1.16440799e-14 - art_sys_130: -1.97598518e-13 - art_sys_131: -7.42725338e-14 - art_sys_132: 3.81431204e-09 - art_sys_133: 1.21128692e-14 - art_sys_134: 1.61696363e-12 - art_sys_135: 6.61091567e-10 - art_sys_136: 1.19114463e-12 - art_sys_137: -7.07733499e-11 - art_sys_138: -3.22028236e-13 - art_sys_139: -1.12124371e-12 - art_sys_140: 3.08581223e-12 - art_sys_141: 5.27287915e-13 - art_sys_142: 0.0 - art_sys_143: -1.63820442e-12 - art_sys_144: -4.82164597e-13 - art_sys_145: -2.54392088e-13 - art_sys_146: -2.26150947e-18 - art_sys_147: -1.15830301e-18 - art_sys_148: 9.63300763e-16 - art_sys_149: 2.02151349e-16 - art_sys_150: 1.95753055e-17 - art_sys_151: -9.49503986e-16 - art_sys_152: 6.00907090e-16 - art_sys_153: 3.13744047e-17 - art_sys_154: -2.16927891e-16 - art_sys_155: -4.02300100e-16 - art_sys_156: -1.44166653e-15 - art_sys_157: -1.53462855e-16 - art_sys_158: 0.0 - art_sys_159: -7.28494578e-14 - art_sys_160: -7.28494578e-14 - art_sys_161: 2.17660700e-15 - art_sys_162: -9.03026013e-28 - art_sys_163: -0.0 - art_sys_164: -5.77781902e-28 - art_sys_165: -6.50472599e-24 - art_sys_166: -4.24839626e-24 - art_sys_167: 3.81961440e-24 - art_sys_168: -1.13280841e-24 - art_sys_169: -4.78588533e-25 - art_sys_170: 1.20207279e-24 - art_sys_171: -1.33434055e-26 - art_sys_172: -5.56295299e-26 - art_sys_173: 1.44276300e-25 - art_sys_174: -4.09634007e-28 - art_sys_175: -1.18141757e-27 - art_sys_176: -8.40899603e-28 - art_sys_177: -8.91070272e-28 - art_sys_178: 1.02358701e-26 - art_sys_179: 2.36825698e-28 - art_sys_180: -1.04881631e-27 - art_sys_181: 1.57622072e-29 - art_sys_182: -1.79033637e-29 - art_sys_183: -6.02632470e-31 - art_sys_184: 2.60871989e-31 - art_sys_185: -1.55834870e-29 + art_sys_27: 1.32936235e-18 + art_sys_28: -2.72389770e-19 + art_sys_29: 2.45660867e-19 + art_sys_30: -2.42096798e-07 + art_sys_31: 8.96733551e-18 + art_sys_32: 1.84901472e-18 + art_sys_33: -3.27591653e-06 + art_sys_34: 2.24332607e-06 + art_sys_35: 4.91950585e-17 + art_sys_36: 4.85356745e-14 + art_sys_37: 1.69450395e-14 + art_sys_38: -4.49097827e-15 + art_sys_39: 4.92415178e-15 + art_sys_40: 2.21500475e-16 + art_sys_41: -2.39247452e-16 + art_sys_42: -9.28798477e-16 + art_sys_43: 9.98093460e-18 + art_sys_44: -9.13681973e-17 + art_sys_45: 1.31425009e-16 + art_sys_46: 6.54120752e-17 + art_sys_47: -1.05678485e-14 + art_sys_48: 8.06152089e-06 + art_sys_49: -9.55722468e-14 + art_sys_50: 3.81221237e-17 + art_sys_51: -6.65205069e-17 + art_sys_52: 2.37536626e-14 + art_sys_53: -3.41898055e-05 + art_sys_54: 1.45450195e-13 + art_sys_55: -2.95507075e-05 + art_sys_56: 9.63832894e-17 + art_sys_57: -1.31988892e-16 + art_sys_58: 5.11725817e-17 + art_sys_59: -6.10463093e-05 + art_sys_60: -9.86591085e-12 + art_sys_61: -1.43537021e-16 + art_sys_62: 1.96397748e-14 + art_sys_63: 2.20512937e-10 + art_sys_64: -4.00336795e-14 + art_sys_65: 2.67017485e-14 + art_sys_66: -7.28290573e-15 + art_sys_67: 6.91890170e-16 + art_sys_68: 1.06851671e-15 + art_sys_69: 2.74428086e-16 + art_sys_70: 3.76094184e-16 + art_sys_71: -1.30139422e-16 + art_sys_72: 6.32673716e-17 + art_sys_73: 1.18751443e-17 + art_sys_74: 1.16014189e-12 + art_sys_75: 1.67073982e-17 + art_sys_76: -1.49770324e-14 + art_sys_77: -3.35396678e-15 + art_sys_78: -1.05645413e-14 + art_sys_79: -6.77672501e-18 + art_sys_80: 7.37239242e-16 + art_sys_81: -2.90795956e-12 + art_sys_82: 4.48837445e-09 + art_sys_83: 4.79352414e-16 + art_sys_84: -5.71510526e-16 + art_sys_85: 3.78748318e-16 + art_sys_86: 6.14200339e-17 + art_sys_87: -1.43075519e-13 + art_sys_88: 2.01334444e-13 + art_sys_89: -8.17718979e-17 + art_sys_90: -9.55349701e-13 + art_sys_91: -8.52191193e-05 + art_sys_92: 1.34083745e-17 + art_sys_93: 7.17275398e-18 + art_sys_94: 3.36141284e-14 + art_sys_95: -8.03500835e-11 + art_sys_96: 5.44951856e-04 + art_sys_97: -2.38820765e-10 + art_sys_98: -9.21359212e-11 + art_sys_99: -9.58614947e-05 + art_sys_100: 1.62534926e-10 + art_sys_101: 6.70695115e-05 + art_sys_102: 6.38209944e-12 + art_sys_103: 3.08780980e-11 + art_sys_104: -9.64600393e-05 + art_sys_105: -2.82154485e-16 + art_sys_106: 5.89935451e-05 + art_sys_107: 8.57991720e-12 + art_sys_108: 1.65142323e-15 + art_sys_109: -1.58702895e-16 + art_sys_110: 1.08117532e-10 + art_sys_111: -3.15440877e-05 + art_sys_112: -1.77378004e-11 + art_sys_113: -1.11523579e-09 + art_sys_114: -1.28952507e-17 + art_sys_115: 1.41848334e-05 + art_sys_116: -5.45214383e-12 + art_sys_117: -2.40811892e-16 + art_sys_118: -5.68259553e-06 + art_sys_119: -2.54032015e-12 + art_sys_120: 2.58149824e-11 + art_sys_121: 1.05489787e-17 + art_sys_122: 2.61092049e-06 + art_sys_123: 3.72189793e-13 + art_sys_124: -1.01783541e-06 + art_sys_125: 7.78728086e-18 + art_sys_126: 7.48831271e-12 + art_sys_127: -1.57987956e-14 + art_sys_128: 3.61583727e-07 + art_sys_129: -1.23083751e-17 + art_sys_130: 1.55593083e-13 + art_sys_131: 1.71124419e-16 + art_sys_132: 1.25007912e-07 + art_sys_133: -2.98543413e-13 + art_sys_134: 1.25293392e-12 + art_sys_135: -4.19670880e-08 + art_sys_136: -3.09109520e-17 + art_sys_137: 1.16756312e-14 + art_sys_138: -1.11682011e-08 + art_sys_139: -2.51448793e-13 + art_sys_140: 2.59993140e-17 + art_sys_141: -7.63857832e-14 + art_sys_142: -3.82753124e-09 + art_sys_143: -7.12306954e-14 + art_sys_144: 1.19868710e-15 + art_sys_145: -6.52310366e-10 + art_sys_146: 3.97914034e-14 + art_sys_147: -4.51755513e-16 + art_sys_148: 1.38288115e-17 + art_sys_149: 6.64551089e-11 + art_sys_150: -1.91239967e-12 + art_sys_151: -1.03387098e-13 + art_sys_152: 1.80398568e-15 + art_sys_153: -2.63292241e-13 + art_sys_154: 1.03520999e-12 + art_sys_155: 9.61024637e-16 + art_sys_156: -0.0 + art_sys_157: 7.39135960e-13 + art_sys_158: -0.0 + art_sys_159: -1.17188742e-13 + art_sys_160: 1.52889265e-14 + art_sys_161: 1.30802240e-14 + art_sys_162: 1.30802240e-14 + art_sys_163: 1.35267289e-14 + art_sys_164: 1.35267289e-14 + art_sys_165: -1.52541471e-28 + art_sys_166: 5.06303349e-29 + art_sys_167: 0.0 + art_sys_168: -7.44048089e-25 + art_sys_169: -2.94471310e-25 + art_sys_170: 8.10078437e-26 + art_sys_171: -1.52366561e-25 + art_sys_172: 4.39164699e-27 + art_sys_173: 3.42574595e-27 + art_sys_174: 2.79645934e-27 + art_sys_175: 6.33465613e-28 + art_sys_176: 3.23524163e-28 + art_sys_177: -3.42674400e-29 + art_sys_178: 1.51059513e-28 + art_sys_179: -2.92343312e-28 + art_sys_180: -3.04721080e-27 + art_sys_181: 4.08893706e-27 + art_sys_182: -6.16686764e-29 + art_sys_183: 6.30211715e-31 + art_sys_184: 4.11282829e-31 + art_sys_185: 5.52147168e-31 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -9842,191 +9842,191 @@ bins: RelativeStatFSR-: -2.35768380e-04 luminosity_uncertainty: 7.67176800e-03 uncorrelated_uncertainty: 2.95068000e-03 -- art_sys_1: 9.63262969e-45 - art_sys_2: -5.52270338e-32 - art_sys_3: 1.17797224e-33 +- art_sys_1: -9.13473569e-45 + art_sys_2: 3.43909571e-33 + art_sys_3: 1.17797226e-33 art_sys_4: -1.76242029e-14 - art_sys_5: -6.40006577e-30 - art_sys_6: -2.12181807e-31 + art_sys_5: -8.36736780e-30 + art_sys_6: -1.10536292e-31 art_sys_7: -4.47899417e-14 - art_sys_8: 1.84696800e-28 + art_sys_8: 1.84948720e-28 art_sys_9: 3.03444680e-13 - art_sys_10: 1.92530222e-30 - art_sys_11: -4.95851839e-28 + art_sys_10: -2.27717315e-31 + art_sys_11: -6.32156702e-28 art_sys_12: -1.27367644e-12 - art_sys_13: 3.12250359e-29 - art_sys_14: 2.05283480e-11 - art_sys_15: 6.24081284e-25 - art_sys_16: 8.42897222e-11 - art_sys_17: -2.39591729e-27 - art_sys_18: -8.91367292e-24 - art_sys_19: -1.42907549e-10 - art_sys_20: -1.64570387e-26 - art_sys_21: 4.26439343e-23 - art_sys_22: -6.96964410e-26 + art_sys_13: -5.99200458e-27 + art_sys_14: -2.05283480e-11 + art_sys_15: -6.80189127e-25 + art_sys_16: -8.42897222e-11 + art_sys_17: -3.23889271e-27 + art_sys_18: -8.91246205e-24 + art_sys_19: 1.42907549e-10 + art_sys_20: -9.75617640e-27 + art_sys_21: 4.27173763e-23 + art_sys_22: -7.42694776e-26 art_sys_23: -1.35032400e-10 - art_sys_24: -9.62428968e-22 - art_sys_25: -8.99308637e-09 + art_sys_24: -9.62411440e-22 + art_sys_25: 8.99308637e-09 art_sys_26: 3.20141638e-08 - art_sys_27: 1.13083190e-19 - art_sys_28: 1.49254790e-19 - art_sys_29: -8.07190719e-14 - art_sys_30: 6.65421857e-14 - art_sys_31: -2.82515885e-14 - art_sys_32: 5.45000512e-15 - art_sys_33: -2.70730981e-16 - art_sys_34: 6.39655832e-16 - art_sys_35: 4.95940100e-16 - art_sys_36: 1.75533355e-20 - art_sys_37: 1.23104123e-07 - art_sys_38: -1.33314939e-16 - art_sys_39: 1.99471459e-20 - art_sys_40: -2.40667204e-17 - art_sys_41: 4.13883341e-07 - art_sys_42: 6.77248411e-17 - art_sys_43: -2.54782798e-06 - art_sys_44: 1.00326277e-16 - art_sys_45: -6.68830636e-17 - art_sys_46: 2.93457332e-17 - art_sys_47: 4.58940410e-17 - art_sys_48: -3.08644438e-06 - art_sys_49: 1.17616337e-14 - art_sys_50: -8.73154781e-18 - art_sys_51: -7.54230831e-17 - art_sys_52: -8.70142439e-06 - art_sys_53: -1.13586072e-15 - art_sys_54: -2.00035978e-14 - art_sys_55: -2.92482346e-05 - art_sys_56: 1.63981886e-15 - art_sys_57: 3.50060443e-14 - art_sys_58: 7.95074924e-15 - art_sys_59: -1.83300098e-14 - art_sys_60: 1.58133862e-15 - art_sys_61: 1.33089821e-15 - art_sys_62: -2.47643941e-15 - art_sys_63: 1.07736494e-15 - art_sys_64: 5.31828223e-16 - art_sys_65: -1.77357255e-16 - art_sys_66: 4.53075199e-17 - art_sys_67: 5.14287926e-17 - art_sys_68: -3.55838189e-18 - art_sys_69: -3.07885109e-11 - art_sys_70: 1.12794258e-05 - art_sys_71: -3.04377157e-10 - art_sys_72: -1.33545480e-14 - art_sys_73: 7.27933657e-12 - art_sys_74: 4.28513863e-10 - art_sys_75: -2.24794690e-18 - art_sys_76: -5.62070612e-14 - art_sys_77: -1.48646738e-14 - art_sys_78: -3.24547861e-15 - art_sys_79: -1.27999547e-13 - art_sys_80: 3.95707369e-10 - art_sys_81: -2.77372415e-16 - art_sys_82: -1.24523615e-15 - art_sys_83: 7.30013212e-16 - art_sys_84: 7.99676738e-13 - art_sys_85: -7.21730877e-16 - art_sys_86: -6.09128382e-17 - art_sys_87: 7.72597230e-15 - art_sys_88: -4.02727631e-16 - art_sys_89: 7.74423878e-16 - art_sys_90: 1.42663384e-04 - art_sys_91: -8.52781168e-05 - art_sys_92: -4.22137083e-11 - art_sys_93: -2.58277708e-11 - art_sys_94: 9.31040291e-11 - art_sys_95: -3.92483325e-04 - art_sys_96: 2.17784155e-15 - art_sys_97: 8.86122361e-11 - art_sys_98: -4.08738421e-05 - art_sys_99: 2.15075144e-11 - art_sys_100: -1.05843346e-11 - art_sys_101: 5.40800675e-05 - art_sys_102: -4.77014578e-16 - art_sys_103: 1.97618133e-11 - art_sys_104: 7.45080452e-05 - art_sys_105: 2.55402615e-16 - art_sys_106: -4.60118837e-05 - art_sys_107: -2.19723081e-10 - art_sys_108: 2.24229766e-12 - art_sys_109: -6.41527073e-11 - art_sys_110: 2.15932232e-16 - art_sys_111: -2.39313125e-05 - art_sys_112: 2.19076998e-12 - art_sys_113: 1.37733607e-16 - art_sys_114: 1.04246214e-05 - art_sys_115: 6.43465829e-14 - art_sys_116: -5.07276070e-11 - art_sys_117: 1.18386089e-17 - art_sys_118: 5.02570622e-06 - art_sys_119: 3.27015373e-15 - art_sys_120: -2.05532509e-06 - art_sys_121: 1.48510177e-12 - art_sys_122: -7.53533156e-07 - art_sys_123: -2.11503356e-13 - art_sys_124: 2.66503087e-07 - art_sys_125: -9.07627004e-08 - art_sys_126: -1.46870474e-12 - art_sys_127: -2.45080224e-08 - art_sys_128: 1.81304127e-13 - art_sys_129: -2.62848324e-14 - art_sys_130: 4.43813711e-13 - art_sys_131: 1.66008289e-13 - art_sys_132: -8.44381677e-09 - art_sys_133: -2.28373749e-14 - art_sys_134: -3.60189042e-12 - art_sys_135: -1.47579893e-09 - art_sys_136: -2.66035719e-12 - art_sys_137: 1.58577273e-10 - art_sys_138: 7.21478276e-13 - art_sys_139: 2.51117816e-12 - art_sys_140: -3.84700820e-12 - art_sys_141: -1.17890706e-12 - art_sys_142: -0.0 - art_sys_143: 3.65894341e-12 - art_sys_144: 1.07902704e-12 - art_sys_145: 5.67469815e-13 - art_sys_146: 7.09612483e-19 - art_sys_147: 2.89239916e-18 - art_sys_148: -2.23481937e-15 - art_sys_149: -4.52707381e-16 - art_sys_150: -4.42178403e-17 - art_sys_151: 2.13766895e-15 - art_sys_152: -1.33377736e-15 - art_sys_153: -7.01564232e-17 - art_sys_154: 4.87674127e-16 - art_sys_155: 8.99322155e-16 - art_sys_156: 3.22530165e-15 - art_sys_157: 3.41606117e-16 - art_sys_158: -0.0 - art_sys_159: 1.63439124e-13 - art_sys_160: 1.63439124e-13 - art_sys_161: -4.87753505e-15 - art_sys_162: 2.02374308e-27 - art_sys_163: 0.0 - art_sys_164: 1.29489363e-27 - art_sys_165: 1.28327262e-23 - art_sys_166: 8.42578938e-24 - art_sys_167: -7.48116742e-24 - art_sys_168: 2.23014133e-24 - art_sys_169: 9.40047365e-25 - art_sys_170: -2.41459161e-24 - art_sys_171: 2.49061231e-26 - art_sys_172: 9.32034529e-26 - art_sys_173: -2.85347607e-25 - art_sys_174: 9.15134071e-28 - art_sys_175: 2.53558053e-27 - art_sys_176: 1.16039866e-27 - art_sys_177: 2.58888383e-27 - art_sys_178: -1.46553333e-26 - art_sys_179: -1.31482157e-28 - art_sys_180: 2.29513129e-27 - art_sys_181: -2.96914283e-29 - art_sys_182: 3.45610011e-29 - art_sys_183: 1.32553776e-30 - art_sys_184: -5.83178965e-31 - art_sys_185: 3.50125877e-29 + art_sys_27: -1.12360850e-19 + art_sys_28: 1.49422993e-19 + art_sys_29: -2.65373762e-19 + art_sys_30: 1.23104123e-07 + art_sys_31: -2.08454185e-20 + art_sys_32: -2.14363705e-19 + art_sys_33: -4.13883341e-07 + art_sys_34: 2.54782798e-06 + art_sys_35: -2.72080315e-17 + art_sys_36: -4.24098175e-14 + art_sys_37: 1.23332651e-15 + art_sys_38: -5.59227824e-16 + art_sys_39: 7.43297308e-15 + art_sys_40: -3.03546565e-16 + art_sys_41: 2.10504391e-16 + art_sys_42: -1.12660593e-16 + art_sys_43: 1.42640060e-16 + art_sys_44: 1.96609673e-17 + art_sys_45: -9.69961673e-17 + art_sys_46: -1.05480763e-16 + art_sys_47: 4.04595311e-15 + art_sys_48: -3.08644439e-06 + art_sys_49: 3.71786712e-14 + art_sys_50: -5.00054593e-17 + art_sys_51: 1.29210619e-16 + art_sys_52: -9.38127834e-15 + art_sys_53: -8.70142395e-06 + art_sys_54: 7.09744852e-15 + art_sys_55: 2.92482344e-05 + art_sys_56: 1.44484829e-15 + art_sys_57: 1.77173813e-16 + art_sys_58: -7.56230445e-17 + art_sys_59: 1.12793149e-05 + art_sys_60: -2.61816028e-11 + art_sys_61: -1.11946398e-16 + art_sys_62: 8.97131686e-16 + art_sys_63: 2.03991044e-14 + art_sys_64: 6.05727777e-14 + art_sys_65: 2.21829500e-15 + art_sys_66: 5.51063051e-17 + art_sys_67: 6.50627957e-16 + art_sys_68: 4.66283442e-16 + art_sys_69: 1.29836433e-15 + art_sys_70: -8.49439514e-16 + art_sys_71: -2.77548271e-17 + art_sys_72: -1.20649259e-16 + art_sys_73: -7.33057209e-18 + art_sys_74: 1.82239263e-13 + art_sys_75: -1.64410094e-17 + art_sys_76: -1.17316818e-13 + art_sys_77: -5.70926438e-15 + art_sys_78: -1.58486244e-15 + art_sys_79: 4.65273800e-18 + art_sys_80: 2.85698009e-15 + art_sys_81: -4.54813702e-13 + art_sys_82: 9.50434330e-10 + art_sys_83: -1.23392635e-15 + art_sys_84: -1.06689157e-16 + art_sys_85: 1.29741007e-15 + art_sys_86: 1.99665902e-16 + art_sys_87: 1.33039789e-13 + art_sys_88: -2.85315075e-13 + art_sys_89: 1.95866782e-18 + art_sys_90: 1.98177979e-12 + art_sys_91: -1.42663644e-04 + art_sys_92: 2.13637971e-17 + art_sys_93: -2.06048708e-18 + art_sys_94: -7.17124435e-14 + art_sys_95: 5.09414983e-10 + art_sys_96: 8.52779939e-05 + art_sys_97: -3.60856118e-11 + art_sys_98: 1.66355238e-10 + art_sys_99: -3.92483527e-04 + art_sys_100: -1.58527435e-10 + art_sys_101: -4.08733155e-05 + art_sys_102: -2.58826370e-11 + art_sys_103: 2.32524470e-11 + art_sys_104: 5.40760927e-05 + art_sys_105: 5.73009847e-16 + art_sys_106: -7.45064746e-05 + art_sys_107: -1.80494032e-11 + art_sys_108: -3.70274126e-15 + art_sys_109: 3.25515756e-16 + art_sys_110: -2.11035636e-10 + art_sys_111: 4.60113021e-05 + art_sys_112: 3.43081251e-11 + art_sys_113: 1.62657255e-09 + art_sys_114: 2.93824668e-17 + art_sys_115: -2.39311122e-05 + art_sys_116: 1.13820184e-11 + art_sys_117: 3.89711032e-16 + art_sys_118: 1.04285974e-05 + art_sys_119: 5.45304029e-12 + art_sys_120: -5.55388990e-11 + art_sys_121: -3.55242908e-17 + art_sys_122: -5.02858209e-06 + art_sys_123: -8.26540556e-13 + art_sys_124: 2.05468659e-06 + art_sys_125: -1.78815198e-17 + art_sys_126: -1.62121974e-11 + art_sys_127: 3.56060648e-14 + art_sys_128: -7.53825532e-07 + art_sys_129: 2.79933331e-17 + art_sys_130: -3.48729598e-13 + art_sys_131: -3.82719627e-16 + art_sys_132: -2.66513952e-07 + art_sys_133: 6.68993362e-13 + art_sys_134: -2.81873968e-12 + art_sys_135: 9.09789582e-08 + art_sys_136: 6.91760209e-17 + art_sys_137: -2.62351090e-14 + art_sys_138: 2.45165814e-08 + art_sys_139: 5.62224063e-13 + art_sys_140: -5.83953989e-17 + art_sys_141: 1.68466074e-13 + art_sys_142: 8.47289331e-09 + art_sys_143: 1.58592116e-13 + art_sys_144: -2.64796838e-15 + art_sys_145: 1.45626112e-09 + art_sys_146: -8.87834397e-14 + art_sys_147: 1.00848150e-15 + art_sys_148: -2.88953611e-17 + art_sys_149: -1.48924949e-10 + art_sys_150: 4.28516110e-12 + art_sys_151: 2.31788956e-13 + art_sys_152: -4.03926777e-15 + art_sys_153: 5.89587245e-13 + art_sys_154: -1.69506641e-12 + art_sys_155: -2.14833829e-15 + art_sys_156: 0.0 + art_sys_157: -1.66040696e-12 + art_sys_158: 0.0 + art_sys_159: 2.62672373e-13 + art_sys_160: -3.43353752e-14 + art_sys_161: -2.92716655e-14 + art_sys_162: -2.92716655e-14 + art_sys_163: -3.03039546e-14 + art_sys_164: -3.03039546e-14 + art_sys_165: 3.41686348e-28 + art_sys_166: -1.13406944e-28 + art_sys_167: -0.0 + art_sys_168: 1.65902897e-24 + art_sys_169: 6.12727030e-25 + art_sys_170: -1.73751517e-25 + art_sys_171: 3.05164216e-25 + art_sys_172: -8.91974073e-27 + art_sys_173: -6.68197697e-27 + art_sys_174: -5.60706307e-27 + art_sys_175: -1.20473673e-27 + art_sys_176: -7.92328697e-28 + art_sys_177: -6.90921297e-30 + art_sys_178: -3.32608803e-28 + art_sys_179: 6.52800054e-28 + art_sys_180: 6.82929004e-27 + art_sys_181: -5.79427247e-27 + art_sys_182: 1.25948316e-28 + art_sys_183: -1.35076207e-30 + art_sys_184: -9.05220255e-31 + art_sys_185: -1.22915102e-30 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -10133,191 +10133,191 @@ bins: RelativeStatFSR-: -1.51798396e-04 luminosity_uncertainty: 4.63970000e-03 uncorrelated_uncertainty: 1.78450000e-03 -- art_sys_1: 7.89726678e-46 - art_sys_2: -4.52799633e-33 - art_sys_3: 1.05870095e-34 +- art_sys_1: -7.48986441e-46 + art_sys_2: 2.81967212e-34 + art_sys_3: 1.05870096e-34 art_sys_4: -1.44498664e-15 - art_sys_5: -1.14279245e-30 - art_sys_6: -1.74964627e-32 + art_sys_5: -1.30379249e-30 + art_sys_6: -9.21668126e-33 art_sys_7: -9.84542604e-15 - art_sys_8: 1.84828576e-29 + art_sys_8: 1.85693996e-29 art_sys_9: 4.62614807e-14 - art_sys_10: 3.52296310e-31 - art_sys_11: 1.19922981e-28 + art_sys_10: -7.53417191e-33 + art_sys_11: 9.73077829e-29 art_sys_12: -1.29320945e-13 - art_sys_13: 3.80070303e-30 - art_sys_14: 3.26708601e-12 - art_sys_15: 1.21236134e-25 - art_sys_16: -6.06558782e-13 - art_sys_17: -1.27780709e-28 - art_sys_18: -1.05097374e-24 - art_sys_19: -1.66561900e-11 - art_sys_20: -3.19564887e-27 - art_sys_21: 1.63697259e-23 - art_sys_22: -1.99271712e-26 + art_sys_13: -9.55476631e-28 + art_sys_14: -3.26708601e-12 + art_sys_15: -1.21509408e-25 + art_sys_16: 6.06558782e-13 + art_sys_17: -1.52285087e-28 + art_sys_18: -1.05307248e-24 + art_sys_19: 1.66561900e-11 + art_sys_20: -3.90025470e-27 + art_sys_21: 1.63770205e-23 + art_sys_22: -1.68554271e-26 art_sys_23: -4.95638193e-11 - art_sys_24: -1.11383464e-22 - art_sys_25: -2.87426900e-09 + art_sys_24: -1.11378865e-22 + art_sys_25: 2.87426900e-09 art_sys_26: 5.91681548e-09 - art_sys_27: -3.23359377e-17 - art_sys_28: 3.52056874e-20 - art_sys_29: -4.36028461e-14 - art_sys_30: -3.28238678e-14 - art_sys_31: -1.82594778e-14 - art_sys_32: 2.52943947e-15 - art_sys_33: 4.59768095e-16 - art_sys_34: -5.60602754e-16 - art_sys_35: 6.85526336e-16 - art_sys_36: -1.06807323e-17 - art_sys_37: 2.97631653e-08 - art_sys_38: -1.97924881e-16 - art_sys_39: 2.26115570e-19 - art_sys_40: -4.80810948e-19 - art_sys_41: 2.32279263e-09 - art_sys_42: 3.70141734e-17 - art_sys_43: -4.66778557e-07 - art_sys_44: 9.45883614e-18 - art_sys_45: -1.46563619e-17 - art_sys_46: 5.40631472e-18 - art_sys_47: 3.23454495e-19 - art_sys_48: -9.26748771e-07 - art_sys_49: 6.22784656e-16 - art_sys_50: -6.48131311e-19 - art_sys_51: 5.21515063e-17 - art_sys_52: 3.13521977e-07 - art_sys_53: -3.85245349e-16 - art_sys_54: -4.34820444e-15 - art_sys_55: -6.26591326e-06 - art_sys_56: -1.45234158e-17 - art_sys_57: -6.93696484e-14 - art_sys_58: -2.31560546e-14 - art_sys_59: -1.15015515e-14 - art_sys_60: 9.39527185e-16 - art_sys_61: -2.09143861e-15 - art_sys_62: -2.06769268e-15 - art_sys_63: -6.55791268e-16 - art_sys_64: -3.14118697e-16 - art_sys_65: 7.76532826e-17 - art_sys_66: -2.39924506e-17 - art_sys_67: 2.32273966e-17 - art_sys_68: 1.68625781e-17 - art_sys_69: -1.97674977e-12 - art_sys_70: 6.05122358e-06 - art_sys_71: -5.74451688e-11 - art_sys_72: -1.88274184e-15 - art_sys_73: 5.83882127e-11 - art_sys_74: 7.02228919e-11 - art_sys_75: 9.23868043e-18 - art_sys_76: 2.72217781e-15 - art_sys_77: 3.33568649e-14 - art_sys_78: 6.87168554e-15 - art_sys_79: -7.87526120e-15 - art_sys_80: 3.49164721e-10 - art_sys_81: -1.07049432e-15 - art_sys_82: -1.02138707e-16 - art_sys_83: -3.86296268e-16 - art_sys_84: -2.76132773e-13 - art_sys_85: 8.29961223e-17 - art_sys_86: 3.79703377e-16 - art_sys_87: -2.02461666e-14 - art_sys_88: 7.91333938e-16 - art_sys_89: -1.78845304e-15 - art_sys_90: 8.78224759e-06 - art_sys_91: 9.97601445e-05 - art_sys_92: 6.06003237e-11 - art_sys_93: 4.70908267e-12 - art_sys_94: -8.46917997e-11 - art_sys_95: -1.30210383e-04 - art_sys_96: -4.78627658e-15 - art_sys_97: -1.37881980e-10 - art_sys_98: -2.79211816e-04 - art_sys_99: 1.37880297e-10 - art_sys_100: 1.51244207e-11 - art_sys_101: -2.58158851e-05 - art_sys_102: 1.05028749e-15 - art_sys_103: -4.06461193e-11 - art_sys_104: -4.22126519e-05 - art_sys_105: -5.22661079e-16 - art_sys_106: 5.78794972e-05 - art_sys_107: -2.54838561e-10 - art_sys_108: -4.91633841e-12 - art_sys_109: 1.08352634e-10 - art_sys_110: -4.28684158e-16 - art_sys_111: 3.47122225e-05 - art_sys_112: -4.85105665e-12 - art_sys_113: -3.28343725e-16 - art_sys_114: -1.74167206e-05 - art_sys_115: -1.41022607e-13 - art_sys_116: 1.00891749e-10 - art_sys_117: -1.65477634e-17 - art_sys_118: -9.01724872e-06 - art_sys_119: -7.24190357e-15 - art_sys_120: 3.91693700e-06 - art_sys_121: -2.86036054e-12 - art_sys_122: 1.50524061e-06 - art_sys_123: 4.66676350e-13 - art_sys_124: -5.48607091e-07 - art_sys_125: 1.90957678e-07 - art_sys_126: 3.25109104e-12 - art_sys_127: 5.25369441e-08 - art_sys_128: -4.00207254e-13 - art_sys_129: 5.81580880e-14 - art_sys_130: -9.80955435e-13 - art_sys_131: -3.65085022e-13 - art_sys_132: 1.82817411e-08 - art_sys_133: 3.66297846e-14 - art_sys_134: 7.87077521e-12 - art_sys_135: 3.23435934e-09 - art_sys_136: 5.83435817e-12 - art_sys_137: -3.49675896e-10 - art_sys_138: -1.59028534e-12 - art_sys_139: -5.53206429e-12 - art_sys_140: 1.30731458e-11 - art_sys_141: 2.59333854e-12 - art_sys_142: 0.0 - art_sys_143: -8.02679691e-12 - art_sys_144: -2.37202438e-12 - art_sys_145: -1.24604211e-12 - art_sys_146: 6.86374233e-18 - art_sys_147: -6.79071161e-18 - art_sys_148: 5.05489960e-15 - art_sys_149: 9.90042148e-16 - art_sys_150: 9.75963027e-17 - art_sys_151: -4.72059494e-15 - art_sys_152: 2.89834245e-15 - art_sys_153: 1.54048409e-16 - art_sys_154: -1.07931764e-15 - art_sys_155: -1.97961678e-15 - art_sys_156: -7.09830994e-15 - art_sys_157: -7.48389670e-16 - art_sys_158: 0.0 - art_sys_159: -3.60835138e-13 - art_sys_160: -3.60835138e-13 - art_sys_161: 1.07672423e-14 - art_sys_162: -4.46679833e-27 - art_sys_163: -0.0 - art_sys_164: -2.85788073e-27 - art_sys_165: -2.64307059e-23 - art_sys_166: -1.74074366e-23 - art_sys_167: 1.53883377e-23 - art_sys_168: -4.58625367e-24 - art_sys_169: -1.91871036e-24 - art_sys_170: 4.80659583e-24 - art_sys_171: -4.77160591e-26 - art_sys_172: -1.90038127e-25 - art_sys_173: 5.87544561e-25 - art_sys_174: -2.01185703e-27 - art_sys_175: -5.10039114e-27 - art_sys_176: -2.45509084e-27 - art_sys_177: -6.32061096e-27 - art_sys_178: 1.77555844e-26 - art_sys_179: -4.16612458e-28 - art_sys_180: -4.86829993e-27 - art_sys_181: 6.00848689e-29 - art_sys_182: -7.13178445e-29 - art_sys_183: -2.89090835e-30 - art_sys_184: 1.27960212e-30 - art_sys_185: -7.75775414e-29 + art_sys_27: 3.23317084e-17 + art_sys_28: 3.52464738e-20 + art_sys_29: -7.04928147e-18 + art_sys_30: 2.97631653e-08 + art_sys_31: -2.26178345e-19 + art_sys_32: -1.17873078e-17 + art_sys_33: -2.32279263e-09 + art_sys_34: 4.66778557e-07 + art_sys_35: -7.30174793e-18 + art_sys_36: -4.10205552e-14 + art_sys_37: 1.81002857e-14 + art_sys_38: 7.70103874e-15 + art_sys_39: 3.20095870e-15 + art_sys_40: 1.12537180e-15 + art_sys_41: -2.14623935e-16 + art_sys_42: 5.15215006e-16 + art_sys_43: -1.86727115e-16 + art_sys_44: -3.93280403e-17 + art_sys_45: 1.56532176e-16 + art_sys_46: 1.35271318e-16 + art_sys_47: 1.21342365e-15 + art_sys_48: -9.26748773e-07 + art_sys_49: 1.10856278e-14 + art_sys_50: 4.94142002e-17 + art_sys_51: -1.34465262e-16 + art_sys_52: -2.77319670e-15 + art_sys_53: 3.13522076e-07 + art_sys_54: -6.19253964e-15 + art_sys_55: 6.26591323e-06 + art_sys_56: 2.68599144e-16 + art_sys_57: -2.32652752e-16 + art_sys_58: 9.76288418e-17 + art_sys_59: 6.05120269e-06 + art_sys_60: -4.39149792e-12 + art_sys_61: -9.11463708e-17 + art_sys_62: -1.07695728e-15 + art_sys_63: -5.05647390e-11 + art_sys_64: -3.56753287e-15 + art_sys_65: -7.45430282e-15 + art_sys_66: -1.80017451e-15 + art_sys_67: 5.63467897e-15 + art_sys_68: -1.13845229e-15 + art_sys_69: -6.52411205e-16 + art_sys_70: -5.75966279e-16 + art_sys_71: 2.39883574e-16 + art_sys_72: -1.26126555e-16 + art_sys_73: -1.01156082e-17 + art_sys_74: -2.10480848e-13 + art_sys_75: 7.91419257e-18 + art_sys_76: -6.09306558e-14 + art_sys_77: -1.52121438e-14 + art_sys_78: -1.12886643e-14 + art_sys_79: -1.98253985e-17 + art_sys_80: -3.97840056e-15 + art_sys_81: 5.32384461e-13 + art_sys_82: -7.19208058e-10 + art_sys_83: -1.76548930e-15 + art_sys_84: -1.66121113e-17 + art_sys_85: 2.23302045e-16 + art_sys_86: -3.07269951e-16 + art_sys_87: 1.60586962e-13 + art_sys_88: 3.26959929e-13 + art_sys_89: -2.22729485e-17 + art_sys_90: -3.79390072e-12 + art_sys_91: -8.78305314e-06 + art_sys_92: -1.12006876e-17 + art_sys_93: -1.12829146e-17 + art_sys_94: 1.47869497e-13 + art_sys_95: -1.66606730e-10 + art_sys_96: -9.97597849e-05 + art_sys_97: 4.42273272e-11 + art_sys_98: -3.77339906e-10 + art_sys_99: -1.30210988e-04 + art_sys_100: -3.14822067e-10 + art_sys_101: -2.79211432e-04 + art_sys_102: 7.14575099e-11 + art_sys_103: -2.42054543e-11 + art_sys_104: -2.58133445e-05 + art_sys_105: -1.08219379e-15 + art_sys_106: 4.22123917e-05 + art_sys_107: 3.64002844e-11 + art_sys_108: 8.17085055e-15 + art_sys_109: -6.90321059e-16 + art_sys_110: 3.86222313e-10 + art_sys_111: -5.78781618e-05 + art_sys_112: -6.21577084e-11 + art_sys_113: -2.04434790e-09 + art_sys_114: -6.53762336e-17 + art_sys_115: 3.47120824e-05 + art_sys_116: -2.27823661e-11 + art_sys_117: -5.90493323e-16 + art_sys_118: -1.74242966e-05 + art_sys_119: -1.13249868e-11 + art_sys_120: 1.15612792e-10 + art_sys_121: 1.01271017e-16 + art_sys_122: 9.02226653e-06 + art_sys_123: 1.79500279e-12 + art_sys_124: -3.91573761e-06 + art_sys_125: 3.99992428e-17 + art_sys_126: 3.40391665e-11 + art_sys_127: -7.87676658e-14 + art_sys_128: 1.50585295e-06 + art_sys_129: -6.23888105e-17 + art_sys_130: 7.68460771e-13 + art_sys_131: 8.38769834e-16 + art_sys_132: 5.48619297e-07 + art_sys_133: -1.47438169e-12 + art_sys_134: 6.23923225e-12 + art_sys_135: -1.91403441e-07 + art_sys_136: -1.52500850e-16 + art_sys_137: 5.82202054e-14 + art_sys_138: -5.25537561e-08 + art_sys_139: -1.23594428e-12 + art_sys_140: 1.29076244e-16 + art_sys_141: -3.62860958e-13 + art_sys_142: -1.83442373e-08 + art_sys_143: -3.46294278e-13 + art_sys_144: 5.71763123e-15 + art_sys_145: -3.19176362e-09 + art_sys_146: 1.94472875e-13 + art_sys_147: -2.21044489e-15 + art_sys_148: 5.59554218e-17 + art_sys_149: 3.28479049e-10 + art_sys_150: -9.45014663e-12 + art_sys_151: -5.10719932e-13 + art_sys_152: 8.89734386e-15 + art_sys_153: -1.29816466e-12 + art_sys_154: 2.47247320e-12 + art_sys_155: 4.72486077e-15 + art_sys_156: -0.0 + art_sys_157: 3.66422899e-12 + art_sys_158: -0.0 + art_sys_159: -5.78703593e-13 + art_sys_160: 7.57590608e-14 + art_sys_161: 6.44150522e-14 + art_sys_162: 6.44150522e-14 + art_sys_163: 6.67403740e-14 + art_sys_164: 6.67403740e-14 + art_sys_165: -7.52432702e-28 + art_sys_166: 2.49730661e-28 + art_sys_167: 0.0 + art_sys_168: -2.63743063e-24 + art_sys_169: -1.29609896e-24 + art_sys_170: 3.77523977e-25 + art_sys_171: -6.54116014e-25 + art_sys_172: 1.90699727e-26 + art_sys_173: 1.40973042e-26 + art_sys_174: 1.18154947e-26 + art_sys_175: 2.47898601e-27 + art_sys_176: 1.84016961e-27 + art_sys_177: 1.56224993e-28 + art_sys_178: 7.16682635e-28 + art_sys_179: -1.43455082e-27 + art_sys_180: -1.50445705e-26 + art_sys_181: 6.85270968e-27 + art_sys_182: -2.67099314e-28 + art_sys_183: 2.89814142e-30 + art_sys_184: 1.95007505e-30 + art_sys_185: 2.68372323e-30 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -10424,191 +10424,191 @@ bins: RelativeStatFSR-: -9.85431923e-05 luminosity_uncertainty: 2.83298600e-03 uncorrelated_uncertainty: 1.08961000e-03 -- art_sys_1: 4.85718442e-47 - art_sys_2: -2.78513637e-34 - art_sys_3: 7.33326655e-36 +- art_sys_1: -4.60732387e-47 + art_sys_2: 1.73435904e-35 + art_sys_3: 7.33326662e-36 art_sys_4: -8.88800380e-17 - art_sys_5: -1.20798043e-31 - art_sys_6: -1.07457979e-33 + art_sys_5: -1.30719054e-31 + art_sys_6: -5.66387256e-34 art_sys_7: -9.98804067e-16 - art_sys_8: 1.82009817e-30 + art_sys_8: 1.83192589e-30 art_sys_9: 4.59688577e-15 - art_sys_10: 3.38687872e-32 - art_sys_11: 4.97100253e-29 + art_sys_10: 2.75269224e-33 + art_sys_11: 4.77195638e-29 art_sys_12: -9.68301842e-15 - art_sys_13: 3.99528641e-31 - art_sys_14: 2.81251674e-13 - art_sys_15: -4.69271139e-27 - art_sys_16: -1.45119116e-12 - art_sys_17: 2.17873233e-29 - art_sys_18: -5.99419003e-26 - art_sys_19: 3.92602550e-13 - art_sys_20: -6.02959722e-29 - art_sys_21: 1.34691482e-24 - art_sys_22: -2.11235937e-27 + art_sys_13: -8.23891011e-29 + art_sys_14: -2.81251674e-13 + art_sys_15: 5.61415965e-27 + art_sys_16: 1.45119116e-12 + art_sys_17: 3.03331218e-29 + art_sys_18: -6.02155253e-26 + art_sys_19: -3.92602550e-13 + art_sys_20: -2.60220525e-28 + art_sys_21: 1.34655039e-24 + art_sys_22: -1.85188351e-27 art_sys_23: -2.91829722e-12 - art_sys_24: 1.33888336e-23 - art_sys_25: -3.35382069e-10 + art_sys_24: 1.33889649e-23 + art_sys_25: 3.35382069e-10 art_sys_26: 2.49670406e-10 - art_sys_27: -1.98488642e-17 - art_sys_28: 2.57038334e-21 - art_sys_29: -2.76729016e-14 - art_sys_30: -2.40504263e-14 - art_sys_31: -4.77739587e-15 - art_sys_32: -1.31067681e-15 - art_sys_33: -1.61353641e-16 - art_sys_34: -3.78631839e-16 - art_sys_35: 4.12970241e-16 - art_sys_36: 1.07462743e-18 - art_sys_37: 2.16082230e-09 - art_sys_38: -1.31136807e-18 - art_sys_39: 1.99037122e-20 - art_sys_40: 5.21905910e-18 - art_sys_41: -2.52780519e-09 - art_sys_42: -4.47884468e-18 - art_sys_43: -2.00616710e-08 - art_sys_44: -9.01201020e-17 - art_sys_45: -6.72821763e-19 - art_sys_46: 3.89702920e-19 - art_sys_47: -1.15040693e-16 - art_sys_48: -5.13424810e-08 - art_sys_49: -4.56933517e-16 - art_sys_50: 7.78036960e-17 - art_sys_51: 9.70195437e-17 - art_sys_52: 5.11283600e-07 - art_sys_53: -3.20027264e-17 - art_sys_54: 3.14338743e-16 - art_sys_55: 4.71049754e-07 - art_sys_56: -3.67576287e-17 - art_sys_57: -2.08598139e-14 - art_sys_58: 2.85182086e-14 - art_sys_59: -1.34646878e-14 - art_sys_60: 2.19743595e-16 - art_sys_61: -1.08031975e-15 - art_sys_62: -7.71232004e-16 - art_sys_63: 9.58822929e-16 - art_sys_64: 7.58644261e-16 - art_sys_65: 2.34565697e-16 - art_sys_66: -4.98096122e-17 - art_sys_67: -7.05257364e-17 - art_sys_68: -2.54455071e-17 - art_sys_69: 4.13602998e-12 - art_sys_70: 2.00374246e-07 - art_sys_71: 3.37992673e-11 - art_sys_72: 8.02388709e-16 - art_sys_73: 2.38814392e-11 - art_sys_74: -4.96921658e-11 - art_sys_75: 2.45672156e-17 - art_sys_76: 6.21916106e-14 - art_sys_77: 2.77484867e-15 - art_sys_78: -4.33374866e-15 - art_sys_79: 1.72503943e-14 - art_sys_80: 1.27600455e-10 - art_sys_81: 2.61386523e-16 - art_sys_82: 1.32420547e-16 - art_sys_83: -1.97990296e-16 - art_sys_84: -3.27241739e-14 - art_sys_85: 7.63884233e-16 - art_sys_86: -1.84050129e-16 - art_sys_87: 2.24569141e-14 - art_sys_88: -1.27844860e-15 - art_sys_89: 4.02988804e-15 - art_sys_90: -1.92289677e-05 - art_sys_91: 2.92586262e-05 - art_sys_92: -7.21932715e-11 - art_sys_93: 4.54848536e-12 - art_sys_94: 1.17004336e-10 - art_sys_95: 6.11141349e-05 - art_sys_96: 1.05001167e-14 - art_sys_97: 1.61308013e-10 - art_sys_98: -1.14790367e-04 - art_sys_99: 5.60162915e-11 - art_sys_100: -2.01881601e-11 - art_sys_101: -2.07986067e-04 - art_sys_102: -2.30954792e-15 - art_sys_103: 8.06143932e-11 - art_sys_104: 2.36888421e-05 - art_sys_105: 1.01013956e-15 - art_sys_106: -3.33895880e-05 - art_sys_107: -1.16388012e-10 - art_sys_108: 1.07102578e-11 - art_sys_109: -1.73852570e-10 - art_sys_110: 7.97663413e-16 - art_sys_111: -4.37294897e-05 - art_sys_112: 1.07230141e-11 - art_sys_113: 6.68887388e-16 - art_sys_114: 2.51207674e-05 - art_sys_115: 3.08295814e-13 - art_sys_116: -1.92629446e-10 - art_sys_117: 1.67348520e-17 - art_sys_118: 1.47908103e-05 - art_sys_119: 1.60388348e-14 - art_sys_120: -7.03467345e-06 - art_sys_121: 5.16447266e-12 - art_sys_122: -2.87815549e-06 - art_sys_123: -1.03004424e-12 - art_sys_124: 1.09817503e-06 - art_sys_125: -3.94088162e-07 - art_sys_126: -7.19770721e-12 - art_sys_127: -1.11224830e-07 - art_sys_128: 8.85485857e-13 - art_sys_129: -1.29917390e-13 - art_sys_130: 2.17144600e-12 - art_sys_131: 8.00296137e-13 - art_sys_132: -3.93291944e-08 - art_sys_133: -4.08264864e-14 - art_sys_134: -1.71463846e-11 - art_sys_135: -7.07467479e-09 - art_sys_136: -1.27764751e-11 - art_sys_137: 7.70574596e-10 - art_sys_138: 3.50455137e-12 - art_sys_139: 1.21821202e-11 - art_sys_140: 8.34794278e-12 - art_sys_141: -5.68321328e-12 - art_sys_142: -0.0 - art_sys_143: 1.75789583e-11 - art_sys_144: 5.22085319e-12 - art_sys_145: 2.71265328e-12 - art_sys_146: -3.46211937e-17 - art_sys_147: 1.63689289e-17 - art_sys_148: -1.16137584e-14 - art_sys_149: -2.17892298e-15 - art_sys_150: -2.18836640e-16 - art_sys_151: 1.05313042e-14 - art_sys_152: -6.27098221e-15 - art_sys_153: -3.38382826e-16 - art_sys_154: 2.39837984e-15 - art_sys_155: 4.33313672e-15 - art_sys_156: 1.55843962e-14 - art_sys_157: 1.62033610e-15 - art_sys_158: -0.0 - art_sys_159: 7.97685065e-13 - art_sys_160: 7.97685065e-13 - art_sys_161: -2.37005420e-14 - art_sys_162: 9.83689072e-27 - art_sys_163: 0.0 - art_sys_164: 6.29506039e-27 - art_sys_165: 5.24399991e-23 - art_sys_166: 3.47119878e-23 - art_sys_167: -3.03276208e-23 - art_sys_168: 9.07422244e-24 - art_sys_169: 3.82546471e-24 - art_sys_170: -9.71306009e-24 - art_sys_171: 1.01275315e-25 - art_sys_172: 3.75879800e-25 - art_sys_173: -1.15948152e-24 - art_sys_174: 4.39882517e-27 - art_sys_175: 9.51270432e-27 - art_sys_176: 4.91026290e-27 - art_sys_177: 1.27845467e-26 - art_sys_178: -7.36672683e-27 - art_sys_179: 2.74584540e-27 - art_sys_180: 1.03499154e-26 - art_sys_181: -1.15372964e-28 - art_sys_182: 1.41650782e-28 - art_sys_183: 6.30591347e-30 - art_sys_184: -2.81242222e-30 - art_sys_185: 1.71694226e-28 + art_sys_27: 1.98587719e-17 + art_sys_28: 2.57337640e-21 + art_sys_29: 4.66591671e-18 + art_sys_30: 2.16082231e-09 + art_sys_31: -1.99040219e-20 + art_sys_32: 6.84604284e-18 + art_sys_33: 2.52780520e-09 + art_sys_34: 2.00616710e-08 + art_sys_35: -3.53977848e-19 + art_sys_36: -2.95589058e-14 + art_sys_37: 8.98421085e-15 + art_sys_38: 1.73304945e-15 + art_sys_39: -1.13716870e-15 + art_sys_40: 7.59764028e-16 + art_sys_41: -6.96057518e-16 + art_sys_42: 4.81760458e-16 + art_sys_43: -1.10168592e-16 + art_sys_44: 4.37015344e-17 + art_sys_45: 3.64042130e-17 + art_sys_46: -1.44346124e-16 + art_sys_47: 6.69321783e-17 + art_sys_48: -5.13424811e-08 + art_sys_49: 6.02066033e-16 + art_sys_50: -7.10166639e-17 + art_sys_51: 1.04750008e-16 + art_sys_52: -1.43067340e-16 + art_sys_53: 5.11283594e-07 + art_sys_54: -1.48784986e-15 + art_sys_55: -4.71049750e-07 + art_sys_56: -6.33883510e-17 + art_sys_57: 1.98851820e-16 + art_sys_58: -8.78364328e-17 + art_sys_59: 2.00386604e-07 + art_sys_60: 3.12412948e-12 + art_sys_61: 9.35037036e-17 + art_sys_62: 1.91025295e-16 + art_sys_63: -1.05276336e-11 + art_sys_64: 2.64029932e-14 + art_sys_65: 1.13065766e-14 + art_sys_66: 4.53055777e-15 + art_sys_67: -1.00458603e-15 + art_sys_68: -8.46382622e-16 + art_sys_69: -1.10064618e-16 + art_sys_70: -4.65192582e-16 + art_sys_71: -4.10829533e-17 + art_sys_72: -5.16814201e-17 + art_sys_73: 5.41976060e-17 + art_sys_74: -6.27703792e-14 + art_sys_75: -6.60555922e-20 + art_sys_76: -9.15233248e-15 + art_sys_77: -2.80241649e-14 + art_sys_78: -7.51954895e-15 + art_sys_79: 1.99180731e-17 + art_sys_80: 1.52949496e-15 + art_sys_81: 1.56097945e-13 + art_sys_82: -2.51816454e-10 + art_sys_83: 1.13918587e-15 + art_sys_84: 2.85144799e-17 + art_sys_85: -7.64019575e-16 + art_sys_86: -6.52702184e-16 + art_sys_87: 6.93263184e-14 + art_sys_88: -1.35016431e-13 + art_sys_89: -4.78095613e-17 + art_sys_90: 6.81473618e-12 + art_sys_91: 1.92288389e-05 + art_sys_92: 4.05503975e-17 + art_sys_93: 4.77805173e-17 + art_sys_94: -2.96559009e-13 + art_sys_95: 9.30281382e-11 + art_sys_96: -2.92583551e-05 + art_sys_97: 1.26261816e-11 + art_sys_98: 8.58488295e-11 + art_sys_99: 6.11139770e-05 + art_sys_100: -3.75904810e-10 + art_sys_101: -1.14790204e-04 + art_sys_102: -1.84004001e-10 + art_sys_103: 5.40390752e-12 + art_sys_104: -2.07986693e-04 + art_sys_105: 1.83858223e-15 + art_sys_106: -2.36952325e-05 + art_sys_107: -7.07675732e-11 + art_sys_108: -1.80334264e-14 + art_sys_109: 1.43475516e-15 + art_sys_110: -6.54377099e-10 + art_sys_111: 3.33883170e-05 + art_sys_112: 1.05428483e-10 + art_sys_113: 1.17948862e-09 + art_sys_114: 1.42952935e-16 + art_sys_115: -4.37299962e-05 + art_sys_116: 4.36810945e-11 + art_sys_117: 7.44601746e-16 + art_sys_118: 2.51339446e-05 + art_sys_119: 2.29554139e-11 + art_sys_120: -2.35143667e-10 + art_sys_121: -2.75469881e-16 + art_sys_122: -1.47986646e-05 + art_sys_123: -3.88447393e-12 + art_sys_124: 7.03254792e-06 + art_sys_125: -8.99429749e-17 + art_sys_126: -7.00498791e-11 + art_sys_127: 1.74589239e-13 + art_sys_128: -2.87940407e-06 + art_sys_129: 1.39716433e-16 + art_sys_130: -1.69331800e-12 + art_sys_131: -1.83925568e-15 + art_sys_132: -1.09816459e-06 + art_sys_133: 3.24872226e-12 + art_sys_134: -1.38302833e-11 + art_sys_135: 3.94980924e-07 + art_sys_136: 3.35359891e-16 + art_sys_137: -1.28908986e-13 + art_sys_138: 1.11255851e-07 + art_sys_139: 2.71271126e-12 + art_sys_140: -2.85671187e-16 + art_sys_141: 7.74803882e-13 + art_sys_142: 3.94621152e-08 + art_sys_143: 7.53610712e-13 + art_sys_144: -1.22427670e-14 + art_sys_145: 6.98212082e-09 + art_sys_146: -4.24876408e-13 + art_sys_147: 4.83502095e-15 + art_sys_148: -1.02960813e-16 + art_sys_149: -7.24084925e-10 + art_sys_150: 2.08260384e-11 + art_sys_151: 1.12825772e-12 + art_sys_152: -1.95777622e-14 + art_sys_153: 2.85821743e-12 + art_sys_154: -3.69903647e-12 + art_sys_155: -1.03529676e-14 + art_sys_156: 0.0 + art_sys_157: -8.13678869e-12 + art_sys_158: 0.0 + art_sys_159: 1.27766224e-12 + art_sys_160: -1.68084002e-13 + art_sys_161: -1.41577473e-13 + art_sys_162: -1.41577473e-13 + art_sys_163: -1.47134330e-13 + art_sys_164: -1.47134330e-13 + art_sys_165: 1.65808920e-27 + art_sys_166: -5.50277445e-28 + art_sys_167: -0.0 + art_sys_168: 5.80328534e-24 + art_sys_169: 2.69016545e-24 + art_sys_170: -7.23150422e-25 + art_sys_171: 1.37597881e-24 + art_sys_172: -4.00807486e-26 + art_sys_173: -2.89483514e-26 + art_sys_174: -2.40728077e-26 + art_sys_175: -4.82576522e-27 + art_sys_176: -3.85212893e-27 + art_sys_177: -7.11384024e-28 + art_sys_178: -1.54098934e-27 + art_sys_179: 3.13364388e-27 + art_sys_180: 3.32031958e-26 + art_sys_181: -2.17704053e-27 + art_sys_182: 5.54787988e-28 + art_sys_183: -6.10767439e-30 + art_sys_184: -4.15150501e-30 + art_sys_185: -5.83782340e-30 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -10715,191 +10715,191 @@ bins: RelativeStatFSR-: -6.33945030e-05 luminosity_uncertainty: 1.71522260e-03 uncorrelated_uncertainty: 6.59701000e-04 -- art_sys_1: 2.66611955e-48 - art_sys_2: -1.52897527e-35 - art_sys_3: 4.84070619e-37 +- art_sys_1: -2.52967599e-48 + art_sys_2: 9.52122890e-37 + art_sys_3: 4.84070622e-37 art_sys_4: -4.87930795e-18 - art_sys_5: -1.10021577e-32 - art_sys_6: -5.90324906e-35 + art_sys_5: -1.15502219e-32 + art_sys_6: -3.09370109e-35 art_sys_7: -8.38878518e-17 - art_sys_8: 1.22411584e-31 + art_sys_8: 1.23488852e-31 art_sys_9: 3.88349498e-16 - art_sys_10: 2.93839677e-33 - art_sys_11: 5.24219584e-30 + art_sys_10: 3.09994029e-34 + art_sys_11: 5.23967726e-30 art_sys_12: -5.09390967e-16 - art_sys_13: 3.86961278e-32 - art_sys_14: -2.93744641e-16 - art_sys_15: -2.43128700e-27 - art_sys_16: -2.77124502e-13 - art_sys_17: 7.09184982e-30 - art_sys_18: -6.38542127e-27 - art_sys_19: 4.59708123e-13 - art_sys_20: 6.17161805e-29 - art_sys_21: -1.06760474e-25 - art_sys_22: -5.58615259e-30 + art_sys_13: 6.62951561e-32 + art_sys_14: 2.93744641e-16 + art_sys_15: 2.61159463e-27 + art_sys_16: 2.77124502e-13 + art_sys_17: 9.19938825e-30 + art_sys_18: -6.39204722e-27 + art_sys_19: -4.59708123e-13 + art_sys_20: 4.01710220e-29 + art_sys_21: -1.06999971e-25 + art_sys_22: -9.11397460e-30 art_sys_23: 5.73769709e-13 - art_sys_24: 6.72172946e-24 - art_sys_25: -1.83723678e-12 + art_sys_24: 6.72164084e-24 + art_sys_25: 1.83723678e-12 art_sys_26: -5.50828239e-11 - art_sys_27: -2.31145076e-20 - art_sys_28: -2.91551232e-22 - art_sys_29: -1.41768813e-14 - art_sys_30: -1.38356959e-14 - art_sys_31: -1.92890518e-15 - art_sys_32: -4.47008304e-15 - art_sys_33: -1.09504588e-16 - art_sys_34: 1.50956614e-16 - art_sys_35: -1.69880079e-16 - art_sys_36: 4.87849449e-18 - art_sys_37: -2.69587798e-10 - art_sys_38: -5.35700354e-17 - art_sys_39: -5.20185859e-21 - art_sys_40: -1.29691249e-17 - art_sys_41: 8.87790331e-10 - art_sys_42: 5.07556343e-17 - art_sys_43: 6.90615233e-09 - art_sys_44: -1.05594002e-16 - art_sys_45: 2.73772904e-19 - art_sys_46: 6.00241505e-18 - art_sys_47: 5.01172126e-17 - art_sys_48: 2.07936012e-08 - art_sys_49: -1.32326943e-16 - art_sys_50: -3.49539519e-17 - art_sys_51: 1.74199958e-17 - art_sys_52: 1.09269194e-07 - art_sys_53: 5.05185609e-18 - art_sys_54: 2.74880967e-16 - art_sys_55: 3.99294616e-07 - art_sys_56: -7.67704452e-18 - art_sys_57: 9.48915316e-14 - art_sys_58: 1.15222201e-14 - art_sys_59: -1.19726536e-14 - art_sys_60: -1.87883056e-17 - art_sys_61: -1.47549655e-15 - art_sys_62: 1.11268195e-15 - art_sys_63: -1.92055165e-15 - art_sys_64: -3.58704196e-17 - art_sys_65: 8.24793562e-17 - art_sys_66: -2.08752791e-17 - art_sys_67: -2.82950213e-17 - art_sys_68: 1.56053519e-17 - art_sys_69: 7.52061110e-13 - art_sys_70: -3.22697056e-07 - art_sys_71: 1.18325096e-11 - art_sys_72: 2.89541723e-16 - art_sys_73: -8.74691036e-12 - art_sys_74: -1.54137553e-11 - art_sys_75: 1.85179216e-17 - art_sys_76: -6.67981374e-14 - art_sys_77: -4.05370886e-14 - art_sys_78: 8.98972584e-16 - art_sys_79: 3.07179851e-15 - art_sys_80: -7.43271272e-11 - art_sys_81: -2.18183348e-16 - art_sys_82: 1.07216698e-15 - art_sys_83: -1.38020444e-15 - art_sys_84: 8.48935903e-15 - art_sys_85: -1.87089267e-16 - art_sys_86: 9.44520834e-17 - art_sys_87: -1.70576626e-14 - art_sys_88: -2.18823916e-15 - art_sys_89: -9.10824447e-15 - art_sys_90: -3.44137201e-06 - art_sys_91: -1.00427668e-05 - art_sys_92: -3.09678095e-11 - art_sys_93: -1.03436864e-13 - art_sys_94: 7.32399342e-11 - art_sys_95: 3.11504129e-05 - art_sys_96: -2.30034295e-14 - art_sys_97: -4.27605174e-10 - art_sys_98: 3.88821586e-05 - art_sys_99: -1.93547345e-11 - art_sys_100: 1.00028964e-11 - art_sys_101: -8.52088198e-05 - art_sys_102: 5.08761248e-15 - art_sys_103: -1.53078299e-10 - art_sys_104: 1.58243094e-04 - art_sys_105: -2.30795247e-15 - art_sys_106: 1.92127908e-05 - art_sys_107: 2.29487793e-10 - art_sys_108: -2.33738274e-11 - art_sys_109: 2.59942732e-10 - art_sys_110: -1.88303757e-15 - art_sys_111: 2.60648438e-05 - art_sys_112: -2.34048710e-11 - art_sys_113: -1.47210586e-15 - art_sys_114: -3.22292400e-05 - art_sys_115: -6.68790988e-13 - art_sys_116: 3.55554261e-10 - art_sys_117: -2.48020835e-17 - art_sys_118: -2.10111915e-05 - art_sys_119: -3.58384579e-14 - art_sys_120: 1.16595901e-05 - art_sys_121: -8.55150898e-12 - art_sys_122: 5.22405869e-06 - art_sys_123: 2.26790868e-12 - art_sys_124: -2.11249474e-06 - art_sys_125: 7.92857231e-07 - art_sys_126: 1.59261256e-11 - art_sys_127: 2.31560352e-07 - art_sys_128: -1.94849406e-12 - art_sys_129: 2.85971970e-13 - art_sys_130: -4.79889392e-12 - art_sys_131: -1.75459876e-12 - art_sys_132: 8.35951526e-08 - art_sys_133: -3.34280267e-14 - art_sys_134: 3.71150088e-11 - art_sys_135: 1.53988640e-08 - art_sys_136: 2.78432461e-11 - art_sys_137: -1.69697134e-09 - art_sys_138: -7.71098093e-12 - art_sys_139: -2.67762729e-11 - art_sys_140: -7.72819069e-12 - art_sys_141: 1.24668383e-11 - art_sys_142: 0.0 - art_sys_143: -3.83258718e-11 - art_sys_144: -1.14217665e-11 - art_sys_145: -5.93620076e-12 - art_sys_146: 9.85792506e-17 - art_sys_147: -3.67357394e-17 - art_sys_148: 2.59267082e-14 - art_sys_149: 4.70207345e-15 - art_sys_150: 4.78223830e-16 - art_sys_151: -2.31540156e-14 - art_sys_152: 1.34242447e-14 - art_sys_153: 7.38852465e-16 - art_sys_154: -5.31224058e-15 - art_sys_155: -9.52245532e-15 - art_sys_156: -3.42062485e-14 - art_sys_157: -3.53225902e-15 - art_sys_158: 0.0 - art_sys_159: -1.76009776e-12 - art_sys_160: -1.76009776e-12 - art_sys_161: 5.23434467e-14 - art_sys_162: -2.17151758e-26 - art_sys_163: -0.0 - art_sys_164: -1.38934498e-26 - art_sys_165: -1.18486755e-22 - art_sys_166: -7.83302482e-23 - art_sys_167: 6.85290779e-23 - art_sys_168: -2.05147644e-23 - art_sys_169: -8.69273197e-24 - art_sys_170: 2.17916392e-23 - art_sys_171: -2.28940529e-25 - art_sys_172: -8.56355175e-25 - art_sys_173: 2.62835940e-24 - art_sys_174: -9.64169494e-27 - art_sys_175: -2.21252818e-26 - art_sys_176: -1.11536843e-26 - art_sys_177: -2.86712950e-26 - art_sys_178: -1.90902412e-27 - art_sys_179: -7.61547361e-27 - art_sys_180: -2.13787031e-26 - art_sys_181: 2.62807687e-28 - art_sys_182: -3.19979838e-28 - art_sys_183: -1.37879045e-29 - art_sys_184: 6.13088258e-30 - art_sys_185: -3.81769948e-28 + art_sys_27: 2.00483871e-20 + art_sys_28: -2.91927211e-22 + art_sys_29: 8.03384020e-18 + art_sys_30: -2.69587789e-10 + art_sys_31: 5.20098673e-21 + art_sys_32: -1.12383221e-17 + art_sys_33: -8.87790327e-10 + art_sys_34: -6.90615233e-09 + art_sys_35: 1.63279709e-19 + art_sys_36: -7.64788504e-15 + art_sys_37: 2.86465502e-14 + art_sys_38: 8.00804970e-15 + art_sys_39: -2.41006615e-15 + art_sys_40: 7.17010110e-16 + art_sys_41: -1.59088841e-15 + art_sys_42: 4.96311873e-16 + art_sys_43: -1.02419922e-16 + art_sys_44: 4.22321351e-17 + art_sys_45: 1.14203856e-16 + art_sys_46: -6.05315957e-17 + art_sys_47: -2.07635915e-17 + art_sys_48: 2.07936013e-08 + art_sys_49: -2.54133655e-16 + art_sys_50: -2.26894706e-17 + art_sys_51: 6.15075891e-18 + art_sys_52: 6.57837800e-17 + art_sys_53: 1.09269188e-07 + art_sys_54: -8.92270280e-17 + art_sys_55: -3.99294614e-07 + art_sys_56: -2.57507580e-17 + art_sys_57: -4.88412341e-17 + art_sys_58: 3.22099146e-17 + art_sys_59: -3.22692728e-07 + art_sys_60: 1.04613125e-12 + art_sys_61: -2.83674520e-17 + art_sys_62: 8.95437510e-17 + art_sys_63: 6.02913245e-12 + art_sys_64: 5.36767612e-14 + art_sys_65: 2.72606614e-14 + art_sys_66: -7.82500709e-15 + art_sys_67: -2.63334609e-15 + art_sys_68: 6.52082198e-16 + art_sys_69: 4.29350751e-18 + art_sys_70: 6.72290787e-16 + art_sys_71: 2.74667502e-16 + art_sys_72: -6.80084186e-17 + art_sys_73: 3.75656379e-17 + art_sys_74: 2.10036921e-14 + art_sys_75: -1.67598867e-18 + art_sys_76: -2.72090248e-14 + art_sys_77: -1.20020335e-14 + art_sys_78: -6.72102067e-17 + art_sys_79: -3.73456538e-18 + art_sys_80: -3.21588471e-15 + art_sys_81: -5.36039621e-14 + art_sys_82: 5.88765439e-11 + art_sys_83: 2.58304616e-16 + art_sys_84: -3.13217157e-16 + art_sys_85: 3.85764548e-16 + art_sys_86: -3.21979986e-16 + art_sys_87: 1.36849331e-13 + art_sys_88: -2.21851183e-13 + art_sys_89: 8.03311521e-18 + art_sys_90: -9.96815143e-12 + art_sys_91: 3.44147383e-06 + art_sys_92: -5.88027412e-17 + art_sys_93: -2.51120091e-19 + art_sys_94: 5.73116278e-13 + art_sys_95: -1.17938705e-10 + art_sys_96: 1.00427034e-05 + art_sys_97: -4.51525215e-12 + art_sys_98: -5.84746457e-11 + art_sys_99: 3.11506259e-05 + art_sys_100: 2.41860338e-10 + art_sys_101: 3.88822900e-05 + art_sys_102: 3.38858673e-10 + art_sys_103: 1.38407382e-11 + art_sys_104: -8.52165495e-05 + art_sys_105: -2.44488515e-15 + art_sys_106: -1.58244620e-04 + art_sys_107: 1.29951381e-10 + art_sys_108: 3.97750175e-14 + art_sys_109: -3.22502111e-15 + art_sys_110: 9.86743931e-10 + art_sys_111: -1.92114385e-05 + art_sys_112: -1.59620652e-10 + art_sys_113: -6.73781385e-10 + art_sys_114: -3.15029025e-16 + art_sys_115: 2.60660810e-05 + art_sys_116: -7.95901544e-11 + art_sys_117: -1.29893680e-15 + art_sys_118: -3.22497236e-05 + art_sys_119: -4.49711708e-11 + art_sys_120: 4.61220707e-10 + art_sys_121: 6.66184563e-16 + art_sys_122: 2.10220702e-05 + art_sys_123: 8.32427329e-12 + art_sys_124: -1.16561738e-05 + art_sys_125: 1.98640630e-16 + art_sys_126: 1.40574268e-10 + art_sys_127: -3.84260883e-13 + art_sys_128: 5.22651865e-06 + art_sys_129: -3.09039042e-16 + art_sys_130: 3.72170238e-12 + art_sys_131: 3.99607990e-15 + art_sys_132: 2.11239070e-06 + art_sys_133: -7.14523057e-12 + art_sys_134: 3.06170626e-11 + art_sys_135: -7.94579500e-07 + art_sys_136: -7.39554654e-16 + art_sys_137: 2.87905421e-13 + art_sys_138: -2.31612972e-07 + art_sys_139: -5.93924713e-12 + art_sys_140: 6.31524299e-16 + art_sys_141: -1.62872603e-12 + art_sys_142: -8.38737793e-08 + art_sys_143: -1.62893635e-12 + art_sys_144: 2.58883631e-14 + art_sys_145: -1.51993863e-08 + art_sys_146: 9.23983368e-13 + art_sys_147: -1.05268673e-14 + art_sys_148: 1.55822823e-16 + art_sys_149: 1.59539752e-09 + art_sys_150: -4.58739123e-11 + art_sys_151: -2.47870176e-12 + art_sys_152: 4.30294971e-14 + art_sys_153: -6.27524589e-12 + art_sys_154: 4.40892953e-12 + art_sys_155: 2.27017417e-14 + art_sys_156: -0.0 + art_sys_157: 1.79175192e-11 + art_sys_158: -0.0 + art_sys_159: -2.80677323e-12 + art_sys_160: 3.70097111e-13 + art_sys_161: 3.10609754e-13 + art_sys_162: 3.10609754e-13 + art_sys_163: 3.23112413e-13 + art_sys_164: 3.23112413e-13 + art_sys_165: -3.64072911e-27 + art_sys_166: 1.20824016e-27 + art_sys_167: 0.0 + art_sys_168: -1.55038708e-23 + art_sys_169: -6.00039061e-24 + art_sys_170: 1.52211168e-24 + art_sys_171: -3.02837624e-24 + art_sys_172: 8.93240690e-26 + art_sys_173: 6.46067690e-26 + art_sys_174: 5.41006413e-26 + art_sys_175: 1.12457387e-26 + art_sys_176: 8.53910092e-27 + art_sys_177: 1.83834693e-27 + art_sys_178: 3.28383492e-27 + art_sys_179: -6.86450181e-27 + art_sys_180: -7.29350161e-26 + art_sys_181: -2.54203884e-27 + art_sys_182: -1.23438802e-27 + art_sys_183: 1.35434785e-29 + art_sys_184: 8.74385187e-30 + art_sys_185: 1.26183436e-29 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -11006,191 +11006,191 @@ bins: RelativeStatFSR-: -4.06774286e-05 luminosity_uncertainty: 1.03723360e-03 uncorrelated_uncertainty: 3.98936000e-04 -- art_sys_1: 1.33684082e-49 - art_sys_2: -7.66839773e-37 - art_sys_3: 3.15106718e-38 +- art_sys_1: -1.26905003e-49 + art_sys_2: 4.77526166e-38 + art_sys_3: 3.15106719e-38 art_sys_4: -2.44716017e-19 - art_sys_5: -9.12740284e-34 - art_sys_6: -2.94226440e-36 + art_sys_5: -9.40082076e-34 + art_sys_6: -1.54113893e-36 art_sys_7: -6.54221980e-18 - art_sys_8: 1.21335543e-32 + art_sys_8: 1.21958209e-32 art_sys_9: 2.97484535e-17 - art_sys_10: 2.39785232e-34 - art_sys_11: 5.27382888e-31 + art_sys_10: 2.27995906e-35 + art_sys_11: 5.54005141e-31 art_sys_12: -1.11983491e-17 - art_sys_13: 3.39899615e-33 - art_sys_14: -3.85491213e-15 - art_sys_15: -4.45372505e-28 - art_sys_16: -3.40565093e-14 - art_sys_17: 1.10220385e-30 - art_sys_18: -1.01706253e-28 - art_sys_19: 8.74978744e-14 - art_sys_20: 1.33293527e-29 - art_sys_21: -5.65497697e-26 - art_sys_22: 3.77942141e-29 + art_sys_13: 1.12582295e-30 + art_sys_14: 3.85491213e-15 + art_sys_15: 4.67540382e-28 + art_sys_16: 3.40565093e-14 + art_sys_17: 1.39419212e-30 + art_sys_18: -9.89118152e-29 + art_sys_19: -8.74978744e-14 + art_sys_20: 1.17613761e-29 + art_sys_21: -5.65927785e-26 + art_sys_22: 3.66785823e-29 art_sys_23: 1.60684756e-13 - art_sys_24: 1.22951255e-24 - art_sys_25: 5.94240226e-12 - art_sys_26: -1.10456674e-11 - art_sys_27: -1.57784683e-19 - art_sys_28: -1.01480163e-22 - art_sys_29: 1.88139891e-15 - art_sys_30: -5.36179703e-14 - art_sys_31: -3.77512589e-15 - art_sys_32: -9.46395623e-15 - art_sys_33: 5.20748725e-16 - art_sys_34: -3.64204942e-16 - art_sys_35: 3.06157861e-16 - art_sys_36: -7.65798343e-19 - art_sys_37: -9.20561573e-11 - art_sys_38: -6.77643717e-17 - art_sys_39: -1.76250983e-21 - art_sys_40: 5.34107924e-18 - art_sys_41: 3.69920354e-10 - art_sys_42: 4.54007131e-17 - art_sys_43: 1.63232525e-09 - art_sys_44: 1.04938319e-17 - art_sys_45: 6.81398222e-20 - art_sys_46: -8.54361095e-20 - art_sys_47: -6.93318291e-17 - art_sys_48: 5.56416366e-09 - art_sys_49: -1.68019726e-17 - art_sys_50: 5.35808211e-18 - art_sys_51: 1.45814397e-18 - art_sys_52: 1.12459931e-08 - art_sys_53: 1.59979074e-18 - art_sys_54: 4.97046601e-17 - art_sys_55: 7.08300929e-08 - art_sys_56: -3.33746645e-18 - art_sys_57: -2.35721187e-15 - art_sys_58: -4.63576903e-14 - art_sys_59: -1.51309487e-15 - art_sys_60: -2.57917660e-17 - art_sys_61: 2.70747778e-15 - art_sys_62: -1.77786642e-16 - art_sys_63: -2.94427774e-16 - art_sys_64: 3.21791134e-16 - art_sys_65: 1.26444834e-16 - art_sys_66: 1.40805393e-17 - art_sys_67: -2.72678244e-17 - art_sys_68: -1.64976100e-18 - art_sys_69: -3.30899768e-13 - art_sys_70: -6.63892003e-08 - art_sys_71: -1.77575809e-12 - art_sys_72: -2.48149259e-17 - art_sys_73: -5.64322845e-12 - art_sys_74: 2.94814750e-12 - art_sys_75: -1.04494981e-17 - art_sys_76: -1.49950718e-14 - art_sys_77: -3.18869659e-14 - art_sys_78: 3.14593034e-15 - art_sys_79: -1.37969819e-15 - art_sys_80: -4.01738666e-11 - art_sys_81: -3.28815188e-15 - art_sys_82: -3.88047593e-16 - art_sys_83: -3.90283798e-16 - art_sys_84: -9.01442023e-15 - art_sys_85: -7.06425935e-16 - art_sys_86: -1.99776171e-16 - art_sys_87: -9.82459262e-14 - art_sys_88: 1.07477595e-14 - art_sys_89: 2.00931127e-14 - art_sys_90: 1.54664050e-06 - art_sys_91: -4.63371225e-06 - art_sys_92: 2.30830472e-11 - art_sys_93: -5.02177519e-13 - art_sys_94: -5.89461858e-11 - art_sys_95: -4.75045112e-06 - art_sys_96: 4.96122466e-14 - art_sys_97: 6.88177096e-10 - art_sys_98: 2.60776013e-05 - art_sys_99: -1.27799077e-11 - art_sys_100: -2.18516626e-11 - art_sys_101: 2.93582312e-05 - art_sys_102: -1.10402793e-14 - art_sys_103: 2.74115597e-10 - art_sys_104: 6.36239901e-05 - art_sys_105: 4.83622167e-15 - art_sys_106: 1.20877674e-04 - art_sys_107: 1.38550064e-10 - art_sys_108: 4.92766817e-11 - art_sys_109: -3.51377239e-10 - art_sys_110: 3.87213659e-15 - art_sys_111: -1.62056787e-05 - art_sys_112: 5.03476090e-11 - art_sys_113: 2.81928378e-15 - art_sys_114: 1.84884046e-05 - art_sys_115: 1.42475348e-12 - art_sys_116: -6.24380838e-10 - art_sys_117: 2.34341759e-17 - art_sys_118: 2.55737459e-05 - art_sys_119: 7.95084881e-14 - art_sys_120: -1.65653861e-05 - art_sys_121: 1.18854974e-11 - art_sys_122: -8.66935090e-06 - art_sys_123: -4.93279109e-12 - art_sys_124: 3.82401310e-06 - art_sys_125: -1.51926735e-06 - art_sys_126: -3.48442544e-11 - art_sys_127: -4.66745549e-07 - art_sys_128: 4.25427099e-12 - art_sys_129: -6.34139882e-13 - art_sys_130: 1.04965118e-11 - art_sys_131: 3.77741149e-12 - art_sys_132: -1.73216246e-07 - art_sys_133: 4.16281650e-13 - art_sys_134: -7.88589688e-11 - art_sys_135: -3.29462456e-08 - art_sys_136: -5.97171466e-11 - art_sys_137: 3.68828791e-09 - art_sys_138: 1.67564714e-11 - art_sys_139: 5.80954438e-11 - art_sys_140: -5.31104084e-12 - art_sys_141: -2.68035246e-11 - art_sys_142: -0.0 - art_sys_143: 8.22082678e-11 - art_sys_144: 2.47383796e-11 - art_sys_145: 1.26026775e-11 - art_sys_146: -2.61877235e-16 - art_sys_147: 8.43752678e-17 - art_sys_148: -5.89462526e-14 - art_sys_149: -1.02141293e-14 - art_sys_150: -1.06857467e-15 - art_sys_151: 5.13543346e-14 - art_sys_152: -2.81425205e-14 - art_sys_153: -1.59416111e-15 - art_sys_154: 1.17286867e-14 - art_sys_155: 2.04387751e-14 - art_sys_156: 7.37968491e-14 - art_sys_157: 7.41635970e-15 - art_sys_158: -0.0 - art_sys_159: 3.84748287e-12 - art_sys_160: 3.84748287e-12 - art_sys_161: -1.13567195e-13 - art_sys_162: 4.71509713e-26 - art_sys_163: 0.0 - art_sys_164: 3.01779226e-26 - art_sys_165: 2.51097149e-22 - art_sys_166: 1.66187369e-22 - art_sys_167: -1.45058543e-22 - art_sys_168: 4.34335763e-23 - art_sys_169: 1.82135961e-23 - art_sys_170: -4.59600084e-23 - art_sys_171: 4.68501118e-25 - art_sys_172: 1.80094314e-24 - art_sys_173: -5.56097520e-24 - art_sys_174: 2.06399322e-26 - art_sys_175: 4.59641225e-26 - art_sys_176: 2.36800017e-26 - art_sys_177: 5.41049098e-26 - art_sys_178: 6.02952804e-26 - art_sys_179: 2.16929255e-26 - art_sys_180: 4.50717882e-26 - art_sys_181: -5.50815960e-28 - art_sys_182: 6.79379097e-28 - art_sys_183: 2.99097640e-29 - art_sys_184: -1.32502566e-29 - art_sys_185: 8.37225733e-28 + art_sys_24: 1.22949466e-24 + art_sys_25: -5.94240227e-12 + art_sys_26: -1.10456675e-11 + art_sys_27: 1.90012883e-19 + art_sys_28: -1.01609055e-22 + art_sys_29: -7.63135963e-18 + art_sys_30: -9.20561623e-11 + art_sys_31: 1.76210714e-21 + art_sys_32: -3.10845588e-18 + art_sys_33: -3.69920352e-10 + art_sys_34: -1.63232525e-09 + art_sys_35: 4.18703999e-20 + art_sys_36: -2.01354670e-15 + art_sys_37: 5.01551345e-14 + art_sys_38: -3.86463250e-15 + art_sys_39: 3.73018882e-15 + art_sys_40: 1.25054171e-15 + art_sys_41: -1.28339089e-15 + art_sys_42: 2.03474185e-16 + art_sys_43: -3.41214331e-17 + art_sys_44: -9.58827823e-17 + art_sys_45: -5.99018983e-17 + art_sys_46: 1.67845560e-16 + art_sys_47: -7.15799032e-18 + art_sys_48: 5.56416368e-09 + art_sys_49: -6.70390634e-17 + art_sys_50: 9.07028777e-17 + art_sys_51: -1.12672560e-16 + art_sys_52: 1.73518037e-17 + art_sys_53: 1.12459920e-08 + art_sys_54: 2.25673803e-17 + art_sys_55: -7.08300925e-08 + art_sys_56: -1.94007139e-18 + art_sys_57: -1.30843406e-16 + art_sys_58: 4.01821397e-17 + art_sys_59: -6.63898488e-08 + art_sys_60: -1.70348053e-13 + art_sys_61: -3.24178149e-17 + art_sys_62: -6.49280094e-17 + art_sys_63: 2.26351057e-12 + art_sys_64: 5.33276529e-14 + art_sys_65: -3.65712727e-14 + art_sys_66: 1.58101652e-14 + art_sys_67: 1.87625741e-15 + art_sys_68: -5.62327601e-16 + art_sys_69: -8.99872547e-16 + art_sys_70: 7.12194792e-16 + art_sys_71: -1.36009117e-16 + art_sys_72: 3.94947739e-20 + art_sys_73: 6.78164071e-17 + art_sys_74: 9.92526822e-15 + art_sys_75: 1.25033474e-18 + art_sys_76: 4.70129429e-14 + art_sys_77: -1.76798744e-14 + art_sys_78: -1.05810162e-14 + art_sys_79: 2.76418355e-19 + art_sys_80: -7.81956992e-15 + art_sys_81: -2.47297659e-14 + art_sys_82: 3.46568949e-11 + art_sys_83: 2.16054295e-16 + art_sys_84: -2.78360167e-16 + art_sys_85: 9.93697591e-17 + art_sys_86: -3.46232252e-16 + art_sys_87: 6.14135320e-14 + art_sys_88: 8.52506616e-13 + art_sys_89: 2.61271806e-18 + art_sys_90: 1.35174986e-11 + art_sys_91: -1.54660786e-06 + art_sys_92: 2.22769400e-18 + art_sys_93: -2.19475852e-17 + art_sys_94: -1.04192249e-12 + art_sys_95: -5.51251814e-10 + art_sys_96: 4.63365066e-06 + art_sys_97: -2.01747542e-12 + art_sys_98: -4.90609696e-10 + art_sys_99: -4.75037655e-06 + art_sys_100: -7.18339208e-11 + art_sys_101: 2.60776438e-05 + art_sys_102: -6.12214228e-10 + art_sys_103: 2.83194059e-13 + art_sys_104: 2.93549316e-05 + art_sys_105: 8.78200397e-16 + art_sys_106: -6.36219042e-05 + art_sys_107: -2.24095260e-10 + art_sys_108: -8.65632534e-14 + art_sys_109: 6.84597800e-15 + art_sys_110: -1.32952372e-09 + art_sys_111: -1.20876974e-04 + art_sys_112: 2.27634013e-10 + art_sys_113: -4.26596965e-09 + art_sys_114: 6.75921313e-16 + art_sys_115: -1.62119319e-05 + art_sys_116: 1.32908213e-10 + art_sys_117: 1.94526316e-15 + art_sys_118: 1.85155413e-05 + art_sys_119: 8.33216952e-11 + art_sys_120: -8.53785318e-10 + art_sys_121: -1.56679196e-15 + art_sys_122: -2.55849883e-05 + art_sys_123: -1.74285888e-11 + art_sys_124: 1.65603555e-05 + art_sys_125: -4.35211985e-16 + art_sys_126: -2.68058137e-10 + art_sys_127: 8.38643017e-13 + art_sys_128: -8.67391670e-06 + art_sys_129: 6.81491338e-16 + art_sys_130: -8.07273968e-12 + art_sys_131: -8.61106378e-15 + art_sys_132: -3.82361250e-06 + art_sys_133: 1.55018844e-11 + art_sys_134: -6.68296648e-11 + art_sys_135: 1.52240054e-06 + art_sys_136: 1.60011164e-15 + art_sys_137: -6.29338805e-13 + art_sys_138: 4.66822228e-07 + art_sys_139: 1.28093231e-11 + art_sys_140: -1.38054520e-15 + art_sys_141: 3.32661670e-12 + art_sys_142: 1.73783963e-07 + art_sys_143: 3.45354057e-12 + art_sys_144: -5.31171766e-14 + art_sys_145: 3.25252023e-08 + art_sys_146: -1.97255593e-12 + art_sys_147: 2.25280641e-14 + art_sys_148: -1.32864591e-16 + art_sys_149: -3.46982427e-09 + art_sys_150: 9.97191167e-11 + art_sys_151: 5.40686737e-12 + art_sys_152: -9.32349710e-14 + art_sys_153: 1.36072337e-11 + art_sys_154: -7.26537166e-12 + art_sys_155: -4.87993120e-14 + art_sys_156: 0.0 + art_sys_157: -3.94330320e-11 + art_sys_158: 0.0 + art_sys_159: 6.11610004e-12 + art_sys_160: -8.13199493e-13 + art_sys_161: -6.71289239e-13 + art_sys_162: -6.71289239e-13 + art_sys_163: -7.02195075e-13 + art_sys_164: -7.02195075e-13 + art_sys_165: 7.90598150e-27 + art_sys_166: -2.62340440e-27 + art_sys_167: -0.0 + art_sys_168: 3.30012277e-23 + art_sys_169: 1.27906317e-23 + art_sys_170: -3.19999276e-24 + art_sys_171: 6.45303699e-24 + art_sys_172: -1.89570369e-25 + art_sys_173: -1.37872469e-25 + art_sys_174: -1.14307514e-25 + art_sys_175: -2.33666594e-26 + art_sys_176: -1.70628790e-26 + art_sys_177: -4.94888541e-27 + art_sys_178: -6.97450981e-27 + art_sys_179: 1.46719060e-26 + art_sys_180: 1.58821576e-25 + art_sys_181: 2.82631494e-26 + art_sys_182: 2.62529967e-27 + art_sys_183: -2.90151677e-29 + art_sys_184: -1.78341985e-29 + art_sys_185: -2.67280506e-29 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -11297,191 +11297,191 @@ bins: RelativeStatFSR-: -2.62440138e-05 luminosity_uncertainty: 6.31118800e-04 uncorrelated_uncertainty: 2.42738000e-04 -- art_sys_1: 7.05386125e-51 - art_sys_2: -4.04739919e-38 - art_sys_3: 2.11939109e-39 +- art_sys_1: -6.70009475e-51 + art_sys_2: 2.52039485e-39 + art_sys_3: 2.11939110e-39 art_sys_4: -1.29161716e-20 - art_sys_5: -7.11038213e-35 - art_sys_6: -1.54816209e-37 + art_sys_5: -7.25407026e-35 + art_sys_6: -8.12689483e-38 art_sys_7: -5.03223889e-19 - art_sys_8: 1.07637604e-33 + art_sys_8: 1.09769075e-33 art_sys_9: 2.21616843e-18 - art_sys_10: 1.51784856e-35 - art_sys_11: 3.50068331e-32 + art_sys_10: -2.39575981e-37 + art_sys_11: 3.92738198e-32 art_sys_12: 6.67365220e-19 - art_sys_13: 2.75915042e-34 - art_sys_14: -6.11833352e-16 - art_sys_15: -3.82362252e-29 - art_sys_16: -3.15603809e-15 - art_sys_17: 1.18189363e-31 - art_sys_18: -5.04285594e-28 - art_sys_19: 1.02704062e-14 - art_sys_20: 1.64967401e-30 - art_sys_21: -8.58372418e-27 - art_sys_22: 5.04839989e-30 + art_sys_13: 1.78861277e-31 + art_sys_14: 6.11833352e-16 + art_sys_15: 4.04049373e-29 + art_sys_16: 3.15603809e-15 + art_sys_17: 1.47292329e-31 + art_sys_18: -5.03786430e-28 + art_sys_19: -1.02704062e-14 + art_sys_20: 1.56319756e-30 + art_sys_21: -8.58867079e-27 + art_sys_22: 5.83685496e-30 art_sys_23: 2.08965162e-14 - art_sys_24: 9.57030991e-26 - art_sys_25: 1.07602899e-12 - art_sys_26: -8.45443520e-13 - art_sys_27: -4.34365901e-20 - art_sys_28: -1.32692822e-23 - art_sys_29: -2.47741386e-15 - art_sys_30: -4.71983961e-15 - art_sys_31: -1.92154616e-15 - art_sys_32: -7.92053291e-16 - art_sys_33: -8.34794713e-17 - art_sys_34: -1.85404031e-16 - art_sys_35: 1.57712486e-16 - art_sys_36: -5.62988384e-18 - art_sys_37: -1.20897785e-11 - art_sys_38: -4.79459245e-17 - art_sys_39: -2.49090356e-22 - art_sys_40: -4.04613473e-18 - art_sys_41: 5.82310314e-11 - art_sys_42: 2.42661463e-17 - art_sys_43: 1.78567542e-10 - art_sys_44: 9.99348291e-17 - art_sys_45: 7.48373322e-21 - art_sys_46: 2.67733121e-19 - art_sys_47: 2.76186949e-16 - art_sys_48: 6.06422960e-10 - art_sys_49: -1.59117350e-18 - art_sys_50: -9.18901122e-17 - art_sys_51: -2.76984974e-16 - art_sys_52: 9.83275149e-10 - art_sys_53: 1.75632573e-19 - art_sys_54: 2.83996165e-18 - art_sys_55: 4.44419182e-09 - art_sys_56: -2.67367770e-19 - art_sys_57: -8.10383152e-14 - art_sys_58: 2.20963279e-14 - art_sys_59: -2.15624447e-15 - art_sys_60: -3.25010813e-16 - art_sys_61: 1.04550112e-15 - art_sys_62: -3.82829827e-16 - art_sys_63: -2.07898475e-16 - art_sys_64: 6.25150883e-18 - art_sys_65: -1.43817531e-16 - art_sys_66: 1.44243902e-16 - art_sys_67: 3.85885781e-18 - art_sys_68: -4.09854692e-17 - art_sys_69: -1.05569858e-13 - art_sys_70: 2.06175152e-09 - art_sys_71: -1.30531072e-12 - art_sys_72: -3.88281954e-17 - art_sys_73: 6.15654346e-13 - art_sys_74: 1.76374602e-12 - art_sys_75: -2.18014499e-18 - art_sys_76: -1.04401152e-14 - art_sys_77: -7.32055112e-15 - art_sys_78: -8.10660624e-15 - art_sys_79: -4.37477120e-16 - art_sys_80: 8.61853895e-12 - art_sys_81: 4.78258992e-15 - art_sys_82: 9.11827527e-16 - art_sys_83: -4.09612880e-16 - art_sys_84: 1.10262773e-15 - art_sys_85: 2.04012651e-16 - art_sys_86: 9.54936363e-17 - art_sys_87: 2.30464544e-13 - art_sys_88: -4.40266805e-14 - art_sys_89: -4.41726760e-14 - art_sys_90: 4.87069747e-07 - art_sys_91: 4.27112813e-07 - art_sys_92: -4.05022547e-10 - art_sys_93: -4.43522309e-14 - art_sys_94: 7.54295003e-10 - art_sys_95: -4.18776865e-06 - art_sys_96: -1.07243674e-13 - art_sys_97: -4.63285365e-10 - art_sys_98: -2.43819950e-06 - art_sys_99: 1.23804720e-12 - art_sys_100: -4.85121540e-11 - art_sys_101: 1.88791544e-05 - art_sys_102: 2.40889386e-14 - art_sys_103: -4.18548799e-10 - art_sys_104: -2.26120982e-05 - art_sys_105: -1.13885880e-14 - art_sys_106: 4.59418434e-05 - art_sys_107: -2.64386251e-11 - art_sys_108: -1.02152435e-10 - art_sys_109: 6.59898488e-10 - art_sys_110: -9.17480004e-15 - art_sys_111: -9.21769206e-05 - art_sys_112: -1.07307497e-10 - art_sys_113: -6.94291976e-15 - art_sys_114: -1.37002028e-05 - art_sys_115: -3.02302619e-12 - art_sys_116: 9.78496006e-10 - art_sys_117: -1.19377691e-16 - art_sys_118: -1.26790933e-05 - art_sys_119: -1.78550030e-13 - art_sys_120: 2.05027519e-05 - art_sys_121: -1.18415743e-11 - art_sys_122: 1.25883926e-05 - art_sys_123: 1.07549968e-11 - art_sys_124: -6.43589212e-06 - art_sys_125: 2.78871551e-06 - art_sys_126: 7.63199471e-11 - art_sys_127: 9.14658226e-07 - art_sys_128: -9.29817653e-12 - art_sys_129: 1.39895347e-12 - art_sys_130: -2.30456293e-11 - art_sys_131: -8.15692592e-12 - art_sys_132: 3.54272864e-07 - art_sys_133: -1.87447135e-12 - art_sys_134: 1.66964100e-10 - art_sys_135: 7.04252550e-08 - art_sys_136: 1.27989836e-10 - art_sys_137: -8.04340284e-09 - art_sys_138: -3.65120171e-11 - art_sys_139: -1.26354797e-10 - art_sys_140: 7.37512820e-13 - art_sys_141: 5.78577702e-11 - art_sys_142: 0.0 - art_sys_143: -1.76231957e-10 - art_sys_144: -5.35295133e-11 - art_sys_145: -2.69221916e-11 - art_sys_146: 5.83080236e-16 - art_sys_147: -1.92300389e-16 - art_sys_148: 1.31321722e-13 - art_sys_149: 2.20075517e-14 - art_sys_150: 2.35652575e-15 - art_sys_151: -1.13260054e-13 - art_sys_152: 5.84387264e-14 - art_sys_153: 3.43577776e-15 - art_sys_154: -2.59485797e-14 - art_sys_155: -4.41384386e-14 - art_sys_156: -1.59732550e-13 - art_sys_157: -1.56704871e-14 - art_sys_158: 0.0 - art_sys_159: -8.43528519e-12 - art_sys_160: -8.43528519e-12 - art_sys_161: 2.48016847e-13 - art_sys_162: -1.02982168e-25 - art_sys_163: -0.0 - art_sys_164: -6.59136460e-26 - art_sys_165: -5.86238199e-22 - art_sys_166: -3.86643610e-22 - art_sys_167: 3.37811536e-22 - art_sys_168: -1.01576103e-22 - art_sys_169: -4.28249914e-23 - art_sys_170: 1.07943493e-22 - art_sys_171: -1.19786192e-24 - art_sys_172: -4.20802410e-24 - art_sys_173: 1.30081198e-23 - art_sys_174: -4.43968374e-26 - art_sys_175: -1.08561368e-25 - art_sys_176: -5.49813654e-26 - art_sys_177: -1.33779845e-25 - art_sys_178: -2.84817422e-26 - art_sys_179: -4.68047641e-26 - art_sys_180: -9.39094218e-26 - art_sys_181: 1.31044605e-27 - art_sys_182: -1.58500788e-27 - art_sys_183: -6.51544266e-29 - art_sys_184: 2.85511586e-29 - art_sys_185: -1.85100363e-27 + art_sys_24: 9.57007675e-26 + art_sys_25: -1.07602898e-12 + art_sys_26: -8.45443476e-13 + art_sys_27: 2.86271831e-20 + art_sys_28: -1.32863419e-23 + art_sys_29: -2.50346400e-18 + art_sys_30: -1.20897788e-11 + art_sys_31: 2.49022874e-22 + art_sys_32: -1.80919746e-18 + art_sys_33: -5.82310327e-11 + art_sys_34: -1.78567542e-10 + art_sys_35: 4.60814339e-21 + art_sys_36: 2.75144002e-15 + art_sys_37: 9.33336631e-15 + art_sys_38: -5.73852210e-15 + art_sys_39: 1.72433036e-15 + art_sys_40: 3.24296830e-17 + art_sys_41: -7.41017832e-17 + art_sys_42: -2.51158233e-16 + art_sys_43: -3.01604500e-16 + art_sys_44: 2.59198055e-17 + art_sys_45: -7.24882460e-16 + art_sys_46: -1.10535107e-15 + art_sys_47: -6.94324411e-19 + art_sys_48: 6.06422962e-10 + art_sys_49: -7.34844149e-18 + art_sys_50: -5.45698948e-16 + art_sys_51: 9.55490405e-16 + art_sys_52: 1.90480097e-18 + art_sys_53: 9.83275081e-10 + art_sys_54: 4.68987929e-18 + art_sys_55: -4.44419179e-09 + art_sys_56: 8.89760811e-19 + art_sys_57: 1.27874010e-15 + art_sys_58: -4.75089953e-16 + art_sys_59: 2.06127331e-09 + art_sys_60: -1.20337969e-13 + art_sys_61: 3.65638972e-16 + art_sys_62: -1.64297538e-17 + art_sys_63: -3.74488802e-13 + art_sys_64: -3.66838744e-14 + art_sys_65: -1.93675254e-14 + art_sys_66: -1.23845242e-14 + art_sys_67: 5.43084615e-17 + art_sys_68: 1.63347686e-15 + art_sys_69: 9.55606881e-16 + art_sys_70: 7.79301025e-16 + art_sys_71: -1.14589091e-16 + art_sys_72: -2.13159317e-17 + art_sys_73: -1.13531291e-17 + art_sys_74: -1.20936008e-15 + art_sys_75: 3.06069945e-18 + art_sys_76: -3.10058002e-14 + art_sys_77: 1.90741189e-15 + art_sys_78: 5.35794251e-15 + art_sys_79: -2.08523648e-17 + art_sys_80: -2.75654716e-15 + art_sys_81: 2.28814604e-15 + art_sys_82: -3.87265191e-13 + art_sys_83: 8.77035486e-16 + art_sys_84: 7.19562532e-16 + art_sys_85: -3.57897272e-17 + art_sys_86: 1.43215472e-16 + art_sys_87: -2.04348190e-14 + art_sys_88: -8.21914122e-13 + art_sys_89: -2.15943618e-17 + art_sys_90: -5.83373628e-12 + art_sys_91: -4.87076800e-07 + art_sys_92: -1.75225772e-17 + art_sys_93: -1.49175841e-17 + art_sys_94: 1.77216407e-12 + art_sys_95: -2.18438673e-10 + art_sys_96: -4.27106958e-07 + art_sys_97: 2.01933822e-13 + art_sys_98: -1.94739124e-10 + art_sys_99: -4.18780204e-06 + art_sys_100: -1.49530351e-10 + art_sys_101: -2.43822487e-06 + art_sys_102: 6.51732577e-10 + art_sys_103: -2.44050207e-12 + art_sys_104: 1.88802483e-05 + art_sys_105: 1.03775912e-14 + art_sys_106: 2.26127373e-05 + art_sys_107: 3.33716331e-10 + art_sys_108: 1.89215724e-13 + art_sys_109: -1.52664356e-14 + art_sys_110: 1.12087053e-09 + art_sys_111: -4.59426208e-05 + art_sys_112: -2.19028760e-10 + art_sys_113: -1.62292616e-09 + art_sys_114: -1.49190023e-15 + art_sys_115: -9.21750946e-05 + art_sys_116: -1.94654873e-10 + art_sys_117: -6.12198519e-15 + art_sys_118: -1.37191825e-05 + art_sys_119: -1.45435595e-10 + art_sys_120: 1.49724666e-09 + art_sys_121: 3.42461602e-15 + art_sys_122: 1.26877330e-05 + art_sys_123: 3.63571394e-11 + art_sys_124: -2.04976272e-05 + art_sys_125: 9.55618004e-16 + art_sys_126: 4.89542980e-10 + art_sys_127: -1.82724974e-12 + art_sys_128: 1.25964347e-05 + art_sys_129: -1.49185170e-15 + art_sys_130: 1.75550445e-11 + art_sys_131: 1.85200665e-14 + art_sys_132: 6.43452691e-06 + art_sys_133: -3.37351387e-11 + art_sys_134: 1.46414789e-10 + art_sys_135: -2.79399993e-06 + art_sys_136: -3.48347497e-15 + art_sys_137: 1.39236420e-12 + art_sys_138: -9.14729370e-07 + art_sys_139: -2.76607587e-11 + art_sys_140: 3.03131779e-15 + art_sys_141: -6.65249962e-12 + art_sys_142: -3.55404965e-07 + art_sys_143: -7.29196748e-12 + art_sys_144: 1.07300074e-13 + art_sys_145: -6.95409815e-08 + art_sys_146: 4.20709785e-12 + art_sys_147: -4.81742613e-14 + art_sys_148: -2.69459340e-16 + art_sys_149: 7.57333447e-09 + art_sys_150: -2.17528708e-10 + art_sys_151: -1.17957281e-11 + art_sys_152: 2.02600778e-13 + art_sys_153: -2.95570348e-11 + art_sys_154: 3.83552980e-12 + art_sys_155: 1.05290684e-13 + art_sys_156: -0.0 + art_sys_157: 8.66819602e-11 + art_sys_158: -0.0 + art_sys_159: -1.33334838e-11 + art_sys_160: 1.78568846e-12 + art_sys_161: 1.45415902e-12 + art_sys_162: 1.45415902e-12 + art_sys_163: 1.52778250e-12 + art_sys_164: 1.52778250e-12 + art_sys_165: -1.71907383e-26 + art_sys_166: 5.70375712e-27 + art_sys_167: 0.0 + art_sys_168: -7.71186501e-23 + art_sys_169: -2.86394339e-23 + art_sys_170: 7.97284544e-24 + art_sys_171: -1.44700626e-23 + art_sys_172: 4.22047541e-25 + art_sys_173: 3.09974006e-25 + art_sys_174: 2.57592622e-25 + art_sys_175: 5.29604125e-26 + art_sys_176: 3.95321021e-26 + art_sys_177: 1.04144307e-26 + art_sys_178: 1.48123529e-26 + art_sys_179: -3.15106865e-26 + art_sys_180: -3.46069530e-25 + art_sys_181: -1.93842403e-26 + art_sys_182: -5.89538446e-27 + art_sys_183: 6.45245894e-29 + art_sys_184: 3.57105389e-29 + art_sys_185: 5.63991024e-29 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -11588,191 +11588,191 @@ bins: RelativeStatFSR-: -1.67481095e-05 luminosity_uncertainty: 3.79901600e-04 uncorrelated_uncertainty: 1.46116000e-04 -- art_sys_1: 3.77076960e-52 - art_sys_2: -2.16418087e-39 - art_sys_3: 1.35793515e-40 +- art_sys_1: -3.58359480e-52 + art_sys_2: 1.34767787e-40 + art_sys_3: 1.35793516e-40 art_sys_4: -6.90639352e-22 - art_sys_5: -5.05876725e-36 - art_sys_6: -8.32279685e-39 + art_sys_5: -5.13584596e-36 + art_sys_6: -4.36672625e-39 art_sys_7: -3.66497948e-20 - art_sys_8: 8.42871267e-35 + art_sys_8: 8.40786723e-35 art_sys_9: 1.57529571e-19 - art_sys_10: 9.80577707e-37 - art_sys_11: 3.44007300e-33 + art_sys_10: 1.01484257e-37 + art_sys_11: 3.85984971e-33 art_sys_12: 9.41233636e-20 - art_sys_13: 2.09145621e-35 - art_sys_14: -5.99799190e-17 - art_sys_15: -5.06526085e-31 - art_sys_16: -2.46695300e-16 - art_sys_17: 9.95918920e-33 - art_sys_18: -4.38566385e-29 - art_sys_19: 9.03172557e-16 - art_sys_20: 1.44019542e-31 - art_sys_21: -5.50555773e-28 - art_sys_22: 5.11095721e-31 + art_sys_13: 1.75395956e-32 + art_sys_14: 5.99799190e-17 + art_sys_15: 6.74137529e-31 + art_sys_16: 2.46695300e-16 + art_sys_17: 1.23333941e-32 + art_sys_18: -4.38050389e-29 + art_sys_19: -9.03172557e-16 + art_sys_20: 1.41755853e-31 + art_sys_21: -5.50985951e-28 + art_sys_22: 4.38001589e-31 art_sys_23: 1.87438485e-15 - art_sys_24: 6.14804203e-27 - art_sys_25: 1.10289970e-13 - art_sys_26: -2.00311057e-14 - art_sys_27: 1.28012720e-20 - art_sys_28: -1.09445108e-24 - art_sys_29: 2.94071851e-15 - art_sys_30: 1.61644174e-14 - art_sys_31: 1.15995747e-15 - art_sys_32: 2.23580995e-15 - art_sys_33: -5.33720404e-17 - art_sys_34: 1.42427325e-16 - art_sys_35: -1.27833315e-16 - art_sys_36: 1.64126504e-17 - art_sys_37: -1.00268942e-12 - art_sys_38: 1.71432432e-17 - art_sys_39: -1.94621427e-23 - art_sys_40: -5.05586125e-19 - art_sys_41: 4.15949668e-12 - art_sys_42: 2.16939559e-17 - art_sys_43: 1.61026852e-11 - art_sys_44: -1.35775401e-16 - art_sys_45: 5.62144191e-22 - art_sys_46: 2.27982606e-19 - art_sys_47: -1.18393283e-16 - art_sys_48: 3.35542364e-11 - art_sys_49: -1.94477808e-19 - art_sys_50: 6.44647146e-17 - art_sys_51: 1.52253863e-16 - art_sys_52: 3.01020758e-10 - art_sys_53: 2.40030115e-20 - art_sys_54: 4.25770735e-20 - art_sys_55: 1.38045106e-10 - art_sys_56: 1.02462189e-18 - art_sys_57: 1.31789464e-13 - art_sys_58: 2.14987635e-14 - art_sys_59: -3.26464012e-15 - art_sys_60: 1.79342285e-16 - art_sys_61: -5.80783264e-16 - art_sys_62: 6.21295514e-16 - art_sys_63: -2.51058947e-16 - art_sys_64: -1.36167108e-15 - art_sys_65: -4.48851651e-17 - art_sys_66: -8.17526484e-17 - art_sys_67: -7.06237346e-18 - art_sys_68: -2.92869226e-17 - art_sys_69: 1.17116957e-14 - art_sys_70: 2.00126829e-09 - art_sys_71: -4.99100572e-14 - art_sys_72: -2.74787901e-17 - art_sys_73: 7.45683443e-13 - art_sys_74: 1.98981129e-14 - art_sys_75: -1.89618732e-17 - art_sys_76: -1.16697976e-14 - art_sys_77: -3.49648063e-14 - art_sys_78: 1.48554177e-14 - art_sys_79: 5.82005078e-17 - art_sys_80: 5.79648357e-12 - art_sys_81: 1.98143128e-15 - art_sys_82: 1.95672293e-15 - art_sys_83: 3.86824732e-16 - art_sys_84: 2.40842510e-15 - art_sys_85: 3.43796447e-16 - art_sys_86: -5.30824593e-17 - art_sys_87: -1.16004825e-12 - art_sys_88: 9.97191630e-14 - art_sys_89: 9.81937692e-14 - art_sys_90: -5.59271806e-08 - art_sys_91: 4.38272163e-07 - art_sys_92: -3.61715754e-10 - art_sys_93: 3.50958536e-14 - art_sys_94: 6.42639080e-10 - art_sys_95: -2.00459556e-08 - art_sys_96: 2.29196694e-13 - art_sys_97: 6.33865360e-10 - art_sys_98: -3.34912982e-06 - art_sys_99: 1.64559240e-12 - art_sys_100: -6.92304331e-11 - art_sys_101: -1.92003653e-06 - art_sys_102: -5.20757182e-14 - art_sys_103: 6.56047667e-10 - art_sys_104: -1.40394100e-05 - art_sys_105: 2.52806494e-14 - art_sys_106: -1.77807372e-05 - art_sys_107: -2.69527059e-11 - art_sys_108: 2.12582073e-10 - art_sys_109: -5.10588776e-10 - art_sys_110: 2.03555965e-14 - art_sys_111: -3.32723772e-05 - art_sys_112: 2.26071002e-10 - art_sys_113: 1.53921050e-14 - art_sys_114: -7.04537888e-05 - art_sys_115: 6.29370070e-12 - art_sys_116: -1.72724988e-09 - art_sys_117: 2.49182790e-16 - art_sys_118: 6.17062807e-06 - art_sys_119: 4.10050185e-13 - art_sys_120: -1.13983300e-05 - art_sys_121: -2.55250835e-12 - art_sys_122: -1.61986004e-05 - art_sys_123: -2.32761100e-11 - art_sys_124: 9.56232226e-06 - art_sys_125: -4.76588418e-06 - art_sys_126: -1.65970878e-10 - art_sys_127: -1.71726050e-06 - art_sys_128: 2.01998667e-11 - art_sys_129: -3.08344446e-12 - art_sys_130: 5.02732181e-11 - art_sys_131: 1.74554215e-11 - art_sys_132: -6.99705582e-07 - art_sys_133: 6.77892286e-12 - art_sys_134: -3.46891350e-10 - art_sys_135: -1.47951318e-07 - art_sys_136: -2.70084686e-10 - art_sys_137: 1.74536477e-08 - art_sys_138: 7.90934544e-11 - art_sys_139: 2.72881215e-10 - art_sys_140: 9.53011519e-13 - art_sys_141: -1.23649283e-10 - art_sys_142: -0.0 - art_sys_143: 3.71653197e-10 - art_sys_144: 1.14477975e-10 - art_sys_145: 5.67087388e-11 - art_sys_146: -1.28809266e-15 - art_sys_147: 4.22960749e-16 - art_sys_148: -2.95297663e-13 - art_sys_149: -4.76117779e-14 - art_sys_150: -5.21385339e-15 - art_sys_151: 2.49214774e-13 - art_sys_152: -1.18098901e-13 - art_sys_153: -7.31100502e-15 - art_sys_154: 5.74772938e-14 - art_sys_155: 9.45325876e-14 - art_sys_156: 3.42629707e-13 - art_sys_157: 3.24568895e-14 - art_sys_158: -0.0 - art_sys_159: 1.84372720e-11 - art_sys_160: 1.84372720e-11 - art_sys_161: -5.40085413e-13 - art_sys_162: 2.24201832e-25 - art_sys_163: 0.0 - art_sys_164: 1.43481400e-25 - art_sys_165: 1.29985563e-21 - art_sys_166: 8.56310127e-22 - art_sys_167: -7.57789419e-22 - art_sys_168: 2.25307052e-22 - art_sys_169: 9.54959558e-23 - art_sys_170: -2.40525159e-22 - art_sys_171: 2.56474694e-24 - art_sys_172: 9.33773803e-24 - art_sys_173: -2.88647850e-23 - art_sys_174: 9.44248669e-26 - art_sys_175: 2.41290702e-25 - art_sys_176: 1.21562409e-25 - art_sys_177: 2.96769145e-25 - art_sys_178: 9.23996843e-26 - art_sys_179: 1.07220398e-25 - art_sys_180: 2.04378788e-25 - art_sys_181: -2.91678668e-27 - art_sys_182: 3.51638207e-27 - art_sys_183: 1.40360641e-28 - art_sys_184: -6.08021407e-29 - art_sys_185: 4.10716431e-27 + art_sys_24: 6.14786078e-27 + art_sys_25: -1.10289970e-13 + art_sys_26: -2.00311145e-14 + art_sys_27: -5.74142506e-21 + art_sys_28: -1.09552329e-24 + art_sys_29: 6.61604429e-18 + art_sys_30: -1.00271231e-12 + art_sys_31: 1.94581565e-23 + art_sys_32: -1.60935537e-18 + art_sys_33: -4.15950008e-12 + art_sys_34: -1.61026870e-11 + art_sys_35: 3.06327222e-22 + art_sys_36: 3.10279743e-15 + art_sys_37: -1.20902103e-14 + art_sys_38: 4.02264174e-15 + art_sys_39: -1.42262064e-15 + art_sys_40: -4.27146857e-16 + art_sys_41: 3.86687415e-16 + art_sys_42: 5.01682953e-17 + art_sys_43: 1.33050414e-16 + art_sys_44: 2.46569515e-17 + art_sys_45: 2.72941063e-16 + art_sys_46: 3.82348401e-16 + art_sys_47: 1.86336900e-19 + art_sys_48: 3.35542367e-11 + art_sys_49: -1.27771892e-19 + art_sys_50: 1.80338078e-16 + art_sys_51: -3.21131599e-16 + art_sys_52: 1.00386373e-19 + art_sys_53: 3.01020757e-10 + art_sys_54: -4.28471387e-19 + art_sys_55: -1.38045105e-10 + art_sys_56: -3.39736506e-19 + art_sys_57: -4.84374029e-16 + art_sys_58: 1.87041169e-16 + art_sys_59: 2.00124967e-09 + art_sys_60: -4.68721957e-15 + art_sys_61: -1.50423298e-16 + art_sys_62: -1.03490454e-17 + art_sys_63: -2.58534230e-13 + art_sys_64: -4.37944293e-14 + art_sys_65: 1.06513378e-14 + art_sys_66: 1.31182393e-14 + art_sys_67: 1.83574923e-15 + art_sys_68: -1.01699678e-16 + art_sys_69: -2.07715497e-15 + art_sys_70: -2.68173976e-16 + art_sys_71: -3.25233432e-16 + art_sys_72: 8.79898654e-18 + art_sys_73: -3.22756822e-17 + art_sys_74: -7.71837826e-16 + art_sys_75: -3.68326883e-18 + art_sys_76: 1.81343084e-14 + art_sys_77: -3.60164828e-14 + art_sys_78: -1.90927554e-14 + art_sys_79: -1.00581020e-17 + art_sys_80: -1.54883413e-15 + art_sys_81: 2.35666748e-15 + art_sys_82: -2.81259520e-12 + art_sys_83: -2.41042266e-16 + art_sys_84: -9.87679049e-16 + art_sys_85: 6.47967879e-16 + art_sys_86: -1.11406113e-16 + art_sys_87: -1.43905250e-14 + art_sys_88: -1.51587566e-12 + art_sys_89: 4.41317623e-17 + art_sys_90: 2.84590444e-12 + art_sys_91: 5.59231993e-08 + art_sys_92: 4.44004019e-17 + art_sys_93: 1.01422007e-17 + art_sys_94: -2.65959922e-12 + art_sys_95: 7.23048815e-11 + art_sys_96: -4.38264320e-07 + art_sys_97: 1.92134336e-13 + art_sys_98: 7.16661100e-11 + art_sys_99: -2.00592105e-08 + art_sys_100: 1.22786624e-10 + art_sys_101: -3.34914276e-06 + art_sys_102: -4.09849852e-10 + art_sys_103: -2.21252795e-13 + art_sys_104: -1.91924834e-06 + art_sys_105: -5.36623532e-14 + art_sys_106: 1.40391709e-05 + art_sys_107: -4.76369658e-10 + art_sys_108: -4.09806907e-13 + art_sys_109: 3.30934071e-14 + art_sys_110: -1.19950781e-09 + art_sys_111: 1.77806481e-05 + art_sys_112: 2.92099340e-10 + art_sys_113: 6.27289211e-10 + art_sys_114: 3.23189493e-15 + art_sys_115: -3.32912493e-05 + art_sys_116: 2.55229340e-10 + art_sys_117: 1.28765305e-14 + art_sys_118: -7.04421341e-05 + art_sys_119: 2.28984714e-10 + art_sys_120: -2.26681350e-09 + art_sys_121: -7.42035973e-15 + art_sys_122: -6.16693941e-06 + art_sys_123: -7.35701136e-11 + art_sys_124: 1.13919289e-05 + art_sys_125: -2.06042983e-15 + art_sys_126: -8.34502965e-10 + art_sys_127: 3.96280140e-12 + art_sys_128: -1.62108298e-05 + art_sys_129: 3.26425913e-15 + art_sys_130: -3.78146505e-11 + art_sys_131: -3.96907515e-14 + art_sys_132: -9.55961937e-06 + art_sys_133: 7.27079979e-11 + art_sys_134: -3.16106523e-10 + art_sys_135: 4.77406029e-06 + art_sys_136: 7.49761406e-15 + art_sys_137: -3.04299880e-12 + art_sys_138: 1.71725620e-06 + art_sys_139: 5.91385920e-11 + art_sys_140: -6.60819654e-15 + art_sys_141: 1.27426844e-11 + art_sys_142: 7.01892357e-07 + art_sys_143: 1.50845296e-11 + art_sys_144: -2.07700106e-13 + art_sys_145: 1.46142284e-07 + art_sys_146: -8.81140238e-12 + art_sys_147: 1.01326632e-13 + art_sys_148: 2.54864301e-15 + art_sys_149: -1.64568671e-08 + art_sys_150: 4.72287829e-10 + art_sys_151: 2.55470335e-11 + art_sys_152: -4.37133707e-13 + art_sys_153: 6.36762714e-11 + art_sys_154: -3.49241628e-12 + art_sys_155: -2.24909048e-13 + art_sys_156: 0.0 + art_sys_157: -1.89462886e-10 + art_sys_158: 0.0 + art_sys_159: 2.88534483e-11 + art_sys_160: -3.89742812e-12 + art_sys_161: -3.12055673e-12 + art_sys_162: -3.12055673e-12 + art_sys_163: -3.29743126e-12 + art_sys_164: -3.29743126e-12 + art_sys_165: 3.70734311e-26 + art_sys_166: -1.22990917e-26 + art_sys_167: -0.0 + art_sys_168: 1.50325046e-22 + art_sys_169: 6.19629353e-23 + art_sys_170: -1.46682513e-23 + art_sys_171: 3.13015525e-23 + art_sys_172: -9.13998446e-25 + art_sys_173: -6.79884744e-25 + art_sys_174: -5.59736821e-25 + art_sys_175: -1.15049352e-25 + art_sys_176: -8.59102340e-26 + art_sys_177: -2.32705710e-26 + art_sys_178: -3.18652508e-26 + art_sys_179: 6.69036069e-26 + art_sys_180: 7.48397400e-25 + art_sys_181: 5.37087865e-26 + art_sys_182: 1.28080898e-26 + art_sys_183: -1.40009783e-28 + art_sys_184: -6.90866979e-29 + art_sys_185: -1.16523302e-28 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -11879,191 +11879,191 @@ bins: RelativeStatFSR-: -1.06082556e-05 luminosity_uncertainty: 2.27175780e-04 uncorrelated_uncertainty: 8.73753000e-05 -- art_sys_1: 1.63704660e-53 - art_sys_2: -9.39995422e-41 - art_sys_3: 7.61403513e-42 +- art_sys_1: -1.55726537e-53 + art_sys_2: 5.85353583e-42 + art_sys_3: 7.61403515e-42 art_sys_4: -2.99973924e-23 - art_sys_5: -3.19567156e-37 - art_sys_6: -3.62677146e-40 + art_sys_5: -3.22912752e-37 + art_sys_6: -1.89361623e-40 art_sys_7: -2.40916530e-21 - art_sys_8: 6.01096300e-36 + art_sys_8: 6.03587211e-36 art_sys_9: 1.00047901e-20 - art_sys_10: 6.08841108e-38 - art_sys_11: 2.29732064e-34 + art_sys_10: 3.07348730e-39 + art_sys_11: 2.64162260e-34 art_sys_12: 1.06215860e-20 - art_sys_13: 1.58406954e-36 - art_sys_14: -4.91334680e-18 - art_sys_15: 3.74326134e-31 - art_sys_16: -1.95142099e-17 - art_sys_17: 7.89970875e-34 - art_sys_18: -9.06860552e-31 - art_sys_19: 7.24015382e-17 - art_sys_20: 1.14413664e-32 - art_sys_21: 7.82028142e-30 - art_sys_22: 3.76675367e-32 + art_sys_13: 1.43680728e-33 + art_sys_14: 4.91334680e-18 + art_sys_15: -3.60877531e-31 + art_sys_16: 1.95142099e-17 + art_sys_17: 9.79575970e-34 + art_sys_18: -9.02618220e-31 + art_sys_19: -7.24015382e-17 + art_sys_20: 1.14189455e-32 + art_sys_21: 7.78599563e-30 + art_sys_22: 3.39737546e-32 art_sys_23: 1.47361559e-16 - art_sys_24: 3.70805480e-27 - art_sys_25: 8.58978793e-15 - art_sys_26: -5.93185841e-16 - art_sys_27: 1.97350261e-22 - art_sys_28: -9.16351304e-26 - art_sys_29: 3.46061295e-15 - art_sys_30: 9.15118716e-15 - art_sys_31: 5.51662472e-15 - art_sys_32: 1.78581387e-16 - art_sys_33: -7.38411639e-17 - art_sys_34: 1.70351737e-16 - art_sys_35: -2.01491821e-16 - art_sys_36: 5.43467388e-19 - art_sys_37: -8.50188892e-14 - art_sys_38: -5.34042255e-17 - art_sys_39: -9.14702509e-25 - art_sys_40: -2.56932159e-17 - art_sys_41: -8.99657615e-14 - art_sys_42: -9.67800267e-17 - art_sys_43: 3.06991510e-12 - art_sys_44: -2.43024741e-16 - art_sys_45: 1.02878503e-22 - art_sys_46: -8.54256538e-20 - art_sys_47: -3.32535375e-16 - art_sys_48: 5.92425732e-12 - art_sys_49: 2.47938419e-19 - art_sys_50: 1.16418960e-16 - art_sys_51: 2.73006754e-16 - art_sys_52: 8.32957581e-11 - art_sys_53: 1.62577638e-21 - art_sys_54: 1.23008777e-19 - art_sys_55: 1.99506880e-10 - art_sys_56: -2.97654557e-20 - art_sys_57: 1.25643085e-15 - art_sys_58: 1.32948632e-14 - art_sys_59: -6.94298575e-15 - art_sys_60: 4.24051113e-16 - art_sys_61: -2.15418815e-15 - art_sys_62: -6.70209997e-18 - art_sys_63: -3.05766350e-16 - art_sys_64: 2.03772697e-16 - art_sys_65: -4.79549962e-17 - art_sys_66: -1.61028095e-16 - art_sys_67: 4.79132604e-18 - art_sys_68: -2.77587486e-17 - art_sys_69: 8.84389282e-15 - art_sys_70: -3.84053545e-11 - art_sys_71: 8.74840426e-14 - art_sys_72: 1.92583291e-18 - art_sys_73: 2.00967141e-14 - art_sys_74: -1.23704437e-13 - art_sys_75: 1.98950368e-17 - art_sys_76: -4.59634086e-14 - art_sys_77: 1.16437141e-14 - art_sys_78: -1.77179206e-14 - art_sys_79: 3.32969534e-17 - art_sys_80: -5.19837312e-13 - art_sys_81: 2.39982222e-16 - art_sys_82: 8.27109465e-16 - art_sys_83: 4.73909417e-16 - art_sys_84: 3.98159994e-17 - art_sys_85: 1.88016005e-17 - art_sys_86: -1.14704433e-17 - art_sys_87: 1.23245431e-12 - art_sys_88: -2.05146314e-13 - art_sys_89: -2.02514683e-13 - art_sys_90: -4.16524263e-08 - art_sys_91: 2.60868606e-08 - art_sys_92: -3.08309222e-13 - art_sys_93: 7.57258953e-15 - art_sys_94: -4.82523587e-11 - art_sys_95: 3.80460842e-07 - art_sys_96: -4.43209004e-13 - art_sys_97: 1.73592425e-09 - art_sys_98: -1.48191708e-07 - art_sys_99: 6.83272624e-14 - art_sys_100: -5.34281411e-11 - art_sys_101: -2.63174884e-06 - art_sys_102: 1.02098396e-13 - art_sys_103: -3.73868446e-10 - art_sys_104: 1.73131397e-06 - art_sys_105: -5.26839872e-14 - art_sys_106: -1.13202232e-05 - art_sys_107: 1.01461124e-12 - art_sys_108: -3.29939486e-10 - art_sys_109: 1.78547465e-09 - art_sys_110: -4.23480656e-14 - art_sys_111: 1.61438641e-05 - art_sys_112: -4.30510458e-10 - art_sys_113: -3.19735224e-14 - art_sys_114: -2.99096502e-05 - art_sys_115: -1.18177899e-11 - art_sys_116: 1.46777055e-09 - art_sys_117: -5.09006481e-16 - art_sys_118: 5.69153752e-05 - art_sys_119: -8.51707304e-13 - art_sys_120: 4.54233142e-06 - art_sys_121: 3.98940036e-11 - art_sys_122: 8.74649971e-06 - art_sys_123: 4.57417322e-11 - art_sys_124: -1.14285401e-05 - art_sys_125: 6.56197469e-06 - art_sys_126: 3.27001474e-10 - art_sys_127: 2.77403418e-06 - art_sys_128: -4.02618553e-11 - art_sys_129: 6.41549610e-12 - art_sys_130: -1.00011587e-10 - art_sys_131: -3.35262823e-11 - art_sys_132: 1.22147522e-06 - art_sys_133: -1.94788893e-11 - art_sys_134: 6.48503458e-10 - art_sys_135: 2.80529600e-07 - art_sys_136: 5.15684127e-10 - art_sys_137: -3.43240684e-08 - art_sys_138: -1.55615132e-10 - art_sys_139: -5.34928106e-10 - art_sys_140: -2.42210296e-16 - art_sys_141: 2.35971018e-10 - art_sys_142: 0.0 - art_sys_143: -7.09051654e-10 - art_sys_144: -2.24469068e-10 - art_sys_145: -1.03882803e-10 - art_sys_146: 2.70658347e-15 - art_sys_147: -9.60136321e-16 - art_sys_148: 6.20411217e-13 - art_sys_149: 9.77646260e-14 - art_sys_150: 1.12307564e-14 - art_sys_151: -5.20718937e-13 - art_sys_152: 2.13831767e-13 - art_sys_153: 1.42036719e-14 - art_sys_154: -1.17516629e-13 - art_sys_155: -1.79036547e-13 - art_sys_156: -6.60819284e-13 - art_sys_157: -5.72577088e-14 - art_sys_158: 0.0 - art_sys_159: -3.67945196e-11 - art_sys_160: -3.67945196e-11 - art_sys_161: 1.05257341e-12 - art_sys_162: -4.38233348e-25 - art_sys_163: -0.0 - art_sys_164: -2.80829802e-25 - art_sys_165: -2.70291790e-21 - art_sys_166: -1.77559679e-21 - art_sys_167: 1.57909498e-21 - art_sys_168: -4.69533119e-22 - art_sys_169: -1.96547558e-22 - art_sys_170: 5.01477678e-22 - art_sys_171: -6.36955859e-24 - art_sys_172: -1.94547733e-23 - art_sys_173: 6.01036825e-23 - art_sys_174: -1.77762938e-25 - art_sys_175: -5.03266683e-25 - art_sys_176: -2.51506953e-25 - art_sys_177: -6.16708766e-25 - art_sys_178: -2.08588168e-25 - art_sys_179: -2.19989231e-25 - art_sys_180: -4.21161401e-25 - art_sys_181: 6.08692770e-27 - art_sys_182: -7.32856243e-27 - art_sys_183: -2.82394867e-28 - art_sys_184: 1.19191532e-28 - art_sys_185: -8.19899779e-27 + art_sys_24: 3.70804028e-27 + art_sys_25: -8.58978793e-15 + art_sys_26: -5.93185876e-16 + art_sys_27: -1.41725754e-22 + art_sys_28: -9.17423924e-26 + art_sys_29: 3.42892124e-19 + art_sys_30: -8.50195578e-14 + art_sys_31: 9.15181109e-25 + art_sys_32: -1.38401715e-17 + art_sys_33: 8.99647851e-14 + art_sys_34: -3.06991527e-12 + art_sys_35: 5.46269778e-23 + art_sys_36: 1.71963283e-14 + art_sys_37: -3.23476036e-15 + art_sys_38: 9.45653097e-16 + art_sys_39: -1.71434200e-15 + art_sys_40: 1.89287649e-16 + art_sys_41: 1.01575533e-16 + art_sys_42: -1.29882343e-17 + art_sys_43: -9.62205726e-18 + art_sys_44: 3.32311010e-17 + art_sys_45: -1.81636592e-16 + art_sys_46: -1.16698406e-16 + art_sys_47: -8.22657827e-19 + art_sys_48: 5.92425715e-12 + art_sys_49: -5.34386280e-19 + art_sys_50: -1.04507514e-16 + art_sys_51: 8.33245709e-17 + art_sys_52: 1.81637119e-20 + art_sys_53: 8.32957553e-11 + art_sys_54: -6.70105249e-19 + art_sys_55: -1.99506879e-10 + art_sys_56: -2.05028807e-20 + art_sys_57: 2.28138948e-16 + art_sys_58: -7.75596048e-17 + art_sys_59: -3.83733442e-11 + art_sys_60: 8.03984420e-15 + art_sys_61: 8.19149834e-17 + art_sys_62: 1.13879450e-18 + art_sys_63: -3.98491257e-16 + art_sys_64: 6.02014046e-14 + art_sys_65: 1.83742769e-14 + art_sys_66: 1.97897626e-15 + art_sys_67: -3.60797592e-15 + art_sys_68: -2.25293649e-16 + art_sys_69: -2.53933135e-16 + art_sys_70: -5.30973968e-16 + art_sys_71: -1.53821363e-16 + art_sys_72: -1.01791744e-17 + art_sys_73: -2.66909875e-17 + art_sys_74: -1.60299315e-16 + art_sys_75: -2.30482871e-18 + art_sys_76: -3.25349955e-14 + art_sys_77: 2.02405382e-14 + art_sys_78: -9.55288718e-15 + art_sys_79: -1.59234372e-17 + art_sys_80: 1.90111142e-15 + art_sys_81: 1.36616551e-16 + art_sys_82: -4.84106746e-13 + art_sys_83: 8.80278045e-18 + art_sys_84: -1.42351679e-15 + art_sys_85: -1.77985919e-16 + art_sys_86: 3.68424562e-17 + art_sys_87: 1.55111729e-15 + art_sys_88: -2.94394630e-13 + art_sys_89: 2.76689420e-17 + art_sys_90: 2.68918307e-11 + art_sys_91: 4.16525361e-08 + art_sys_92: 2.08717962e-17 + art_sys_93: -3.00554860e-17 + art_sys_94: 3.25527289e-12 + art_sys_95: 5.16351763e-11 + art_sys_96: -2.60869592e-08 + art_sys_97: 1.01311798e-14 + art_sys_98: 4.73997913e-11 + art_sys_99: 3.80464076e-07 + art_sys_100: 6.52346484e-11 + art_sys_101: -1.48189911e-07 + art_sys_102: 2.41699028e-10 + art_sys_103: 2.89713479e-13 + art_sys_104: -2.63188042e-06 + art_sys_105: 1.77256863e-13 + art_sys_106: -1.73151343e-06 + art_sys_107: 3.25551212e-10 + art_sys_108: 8.05407917e-13 + art_sys_109: -6.53519453e-14 + art_sys_110: -8.94528659e-10 + art_sys_111: 1.13199366e-05 + art_sys_112: 6.11996536e-11 + art_sys_113: 3.99754249e-10 + art_sys_114: -6.35877011e-15 + art_sys_115: 1.61189308e-05 + art_sys_116: -1.47851077e-10 + art_sys_117: -2.52872736e-14 + art_sys_118: -2.98499159e-05 + art_sys_119: -2.90748116e-10 + art_sys_120: 3.04037781e-09 + art_sys_121: 1.47348621e-14 + art_sys_122: -5.69201050e-05 + art_sys_123: 1.33138066e-10 + art_sys_124: -4.54431010e-06 + art_sys_125: 4.16316238e-15 + art_sys_126: 1.11682110e-09 + art_sys_127: -7.82127221e-12 + art_sys_128: 8.76263196e-06 + art_sys_129: -6.50738715e-15 + art_sys_130: 7.39582839e-11 + art_sys_131: 7.81521284e-14 + art_sys_132: 1.14208475e-05 + art_sys_133: -1.42133211e-10 + art_sys_134: 6.16141222e-10 + art_sys_135: -6.57159037e-06 + art_sys_136: -1.44570178e-14 + art_sys_137: 5.91677091e-12 + art_sys_138: -2.77367090e-06 + art_sys_139: -1.14433425e-10 + art_sys_140: 1.31165254e-14 + art_sys_141: -2.12766173e-11 + art_sys_142: -1.22516131e-06 + art_sys_143: -2.80356319e-11 + art_sys_144: 3.49526516e-13 + art_sys_145: -2.77213608e-07 + art_sys_146: 1.66030580e-11 + art_sys_147: -1.92282553e-13 + art_sys_148: -9.19218314e-15 + art_sys_149: 3.24116170e-08 + art_sys_150: -9.28991951e-10 + art_sys_151: -5.09273722e-11 + art_sys_152: 8.53486960e-13 + art_sys_153: -1.24765914e-10 + art_sys_154: -1.68014977e-11 + art_sys_155: 4.29244906e-13 + art_sys_156: -0.0 + art_sys_157: 3.86012858e-10 + art_sys_158: -0.0 + art_sys_159: -5.73437429e-11 + art_sys_160: 7.90315454e-12 + art_sys_161: 6.05466103e-12 + art_sys_162: 6.05466103e-12 + art_sys_163: 6.50214455e-12 + art_sys_164: 6.50214455e-12 + art_sys_165: -7.29425494e-26 + art_sys_166: 2.41896888e-26 + art_sys_167: 0.0 + art_sys_168: -3.11821598e-22 + art_sys_169: -1.23252441e-22 + art_sys_170: 3.52147399e-23 + art_sys_171: -6.18554877e-23 + art_sys_172: 1.79233176e-24 + art_sys_173: 1.33113170e-24 + art_sys_174: 1.11041075e-24 + art_sys_175: 2.28072477e-25 + art_sys_176: 1.70372723e-25 + art_sys_177: 4.56130253e-26 + art_sys_178: 6.28067874e-26 + art_sys_179: -1.25423490e-25 + art_sys_180: -1.48442060e-24 + art_sys_181: -1.13007177e-25 + art_sys_182: -2.54081844e-26 + art_sys_183: 2.78738669e-28 + art_sys_184: 1.15525291e-28 + art_sys_185: 2.15787487e-28 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -12170,191 +12170,191 @@ bins: RelativeStatFSR-: -6.57304439e-06 luminosity_uncertainty: 1.32941640e-04 uncorrelated_uncertainty: 5.11314000e-05 -- art_sys_1: 2.11743875e-55 - art_sys_2: -1.21982124e-42 +- art_sys_1: -2.02778311e-55 + art_sys_2: 7.59606597e-44 art_sys_3: 2.56917810e-43 art_sys_4: -3.89272708e-25 - art_sys_5: -1.21225386e-38 - art_sys_6: -4.63538072e-42 + art_sys_5: -1.21659319e-38 + art_sys_6: -2.41961807e-42 art_sys_7: -9.78770047e-23 - art_sys_8: 1.96672347e-37 + art_sys_8: 1.99427724e-37 art_sys_9: 3.35433203e-22 - art_sys_10: 2.63893991e-39 - art_sys_11: 1.72482943e-35 + art_sys_10: 5.02165989e-40 + art_sys_11: 1.96068559e-35 art_sys_12: 1.41766220e-21 - art_sys_13: 9.99468515e-38 - art_sys_14: -3.36523380e-19 - art_sys_15: 7.06091317e-32 - art_sys_16: -1.44616198e-18 - art_sys_17: 5.65732856e-35 - art_sys_18: 3.87149744e-31 - art_sys_19: 5.16005187e-18 - art_sys_20: 8.20374700e-34 - art_sys_21: -5.23148313e-30 - art_sys_22: 3.00640606e-33 + art_sys_13: 9.83912508e-35 + art_sys_14: 3.36523380e-19 + art_sys_15: -6.96161472e-32 + art_sys_16: 1.44616198e-18 + art_sys_17: 7.03914838e-35 + art_sys_18: 3.87433185e-31 + art_sys_19: -5.16005187e-18 + art_sys_20: 7.97947912e-34 + art_sys_21: -5.23394499e-30 + art_sys_22: 2.56359424e-33 art_sys_23: 1.05828150e-17 - art_sys_24: 8.98801794e-28 - art_sys_25: 6.04304873e-16 + art_sys_24: 8.98800775e-28 + art_sys_25: -6.04304873e-16 art_sys_26: -6.27652825e-16 - art_sys_27: -8.85116132e-25 - art_sys_28: -1.19895331e-26 - art_sys_29: 8.55868032e-16 - art_sys_30: -3.96385129e-15 - art_sys_31: -1.29639593e-15 - art_sys_32: 1.41301940e-16 - art_sys_33: 1.51130247e-16 - art_sys_34: 8.39845497e-17 - art_sys_35: 4.64220546e-17 - art_sys_36: -6.19792295e-21 - art_sys_37: -1.13987923e-14 - art_sys_38: 6.89681742e-17 - art_sys_39: -9.81812494e-26 - art_sys_40: 1.80666861e-18 - art_sys_41: -3.95159161e-14 - art_sys_42: 4.64716475e-17 - art_sys_43: 6.34141709e-13 - art_sys_44: -1.15420520e-16 - art_sys_45: 2.60511581e-23 - art_sys_46: 1.62476309e-19 - art_sys_47: -1.87192014e-16 - art_sys_48: 2.15581869e-12 - art_sys_49: -1.59020890e-19 - art_sys_50: 9.52679959e-17 - art_sys_51: 1.69087841e-16 - art_sys_52: 8.06837664e-12 - art_sys_53: 6.78346106e-22 - art_sys_54: 2.21972499e-19 - art_sys_55: 6.21976052e-11 - art_sys_56: 5.75608633e-21 - art_sys_57: -9.78367656e-15 - art_sys_58: 1.21598392e-14 - art_sys_59: -2.11247245e-15 - art_sys_60: 2.18196246e-16 - art_sys_61: 2.60208699e-15 - art_sys_62: -2.10623188e-15 - art_sys_63: -6.98841420e-16 - art_sys_64: -4.03848762e-16 - art_sys_65: -1.45149262e-16 - art_sys_66: -8.10709647e-17 - art_sys_67: -2.08285193e-17 - art_sys_68: -2.70701247e-17 - art_sys_69: 2.93096374e-16 - art_sys_70: -1.20515877e-10 - art_sys_71: 1.49413967e-14 - art_sys_72: 1.68201282e-19 - art_sys_73: -6.74696279e-14 - art_sys_74: -1.74712121e-14 - art_sys_75: -1.28956989e-17 - art_sys_76: 1.09432210e-14 - art_sys_77: 1.65068667e-14 - art_sys_78: 1.67423911e-14 - art_sys_79: 9.82253943e-18 - art_sys_80: -5.66151262e-13 - art_sys_81: -5.56113136e-15 - art_sys_82: -1.25782783e-15 - art_sys_83: -2.14162011e-16 - art_sys_84: -2.91360990e-16 - art_sys_85: 9.37546227e-16 - art_sys_86: 1.00766970e-17 - art_sys_87: -3.33203805e-12 - art_sys_88: 4.32042818e-13 - art_sys_89: 4.18618317e-13 - art_sys_90: -1.52046241e-09 - art_sys_91: -2.60075961e-08 - art_sys_92: 8.32705375e-11 - art_sys_93: -1.34056972e-15 - art_sys_94: -1.60881020e-10 - art_sys_95: 4.82912651e-08 - art_sys_96: 9.20257278e-13 - art_sys_97: 3.81495392e-10 - art_sys_98: 2.90427852e-07 - art_sys_99: -1.43157899e-13 - art_sys_100: 1.80255937e-10 - art_sys_101: -9.36119633e-08 - art_sys_102: -2.15645446e-13 - art_sys_103: 5.66973671e-10 - art_sys_104: 1.96272728e-06 - art_sys_105: 1.12838299e-13 - art_sys_106: 1.35179831e-06 - art_sys_107: 3.44929498e-12 - art_sys_108: 7.05864940e-10 - art_sys_109: 1.36965446e-09 - art_sys_110: 9.06769268e-14 - art_sys_111: 8.60861156e-06 - art_sys_112: 8.67249737e-10 - art_sys_113: 6.84702323e-14 - art_sys_114: 1.07661953e-05 - art_sys_115: 2.35370452e-11 - art_sys_116: -3.74680929e-09 - art_sys_117: 1.09440127e-15 - art_sys_118: 2.33968160e-05 - art_sys_119: 2.02641381e-12 - art_sys_120: 4.23608203e-05 - art_sys_121: -1.45319246e-10 - art_sys_122: -5.91268109e-06 - art_sys_123: -9.67125708e-11 - art_sys_124: 7.86421799e-06 - art_sys_125: -8.98666063e-06 - art_sys_126: -6.81047599e-10 - art_sys_127: -4.38525437e-06 - art_sys_128: 8.54464664e-11 - art_sys_129: -1.37877893e-11 - art_sys_130: 2.13507163e-10 - art_sys_131: 6.99699866e-11 - art_sys_132: -2.19375359e-06 - art_sys_133: 5.72829754e-11 - art_sys_134: -1.28715745e-09 - art_sys_135: -5.65512107e-07 - art_sys_136: -1.04778457e-09 - art_sys_137: 7.31874710e-08 - art_sys_138: 3.30542470e-10 - art_sys_139: 1.13053981e-09 - art_sys_140: -1.15579613e-13 - art_sys_141: -4.92685026e-10 - art_sys_142: -0.0 - art_sys_143: 1.43210951e-09 - art_sys_144: 4.63520649e-10 - art_sys_145: 2.13115709e-10 - art_sys_146: -5.80534177e-15 - art_sys_147: 2.03146166e-15 - art_sys_148: -1.34586230e-12 - art_sys_149: -2.08705968e-13 - art_sys_150: -2.41648490e-14 - art_sys_151: 1.11493822e-12 - art_sys_152: -4.03056412e-13 - art_sys_153: -2.92118883e-14 - art_sys_154: 2.56807470e-13 - art_sys_155: 3.76980967e-13 - art_sys_156: 1.38516415e-12 - art_sys_157: 1.14102884e-13 - art_sys_158: -0.0 - art_sys_159: 7.92386934e-11 - art_sys_160: 7.92386934e-11 - art_sys_161: -2.27421619e-12 - art_sys_162: 9.44975593e-25 - art_sys_163: 0.0 - art_sys_164: 6.04983894e-25 - art_sys_165: 5.78642229e-21 - art_sys_166: 3.79937525e-21 - art_sys_167: -3.35978532e-21 - art_sys_168: 1.00515811e-21 - art_sys_169: 4.21444510e-22 - art_sys_170: -1.07092363e-21 - art_sys_171: 1.16479693e-23 - art_sys_172: 4.16398084e-23 - art_sys_173: -1.28695500e-22 - art_sys_174: 3.69105257e-25 - art_sys_175: 1.07774960e-24 - art_sys_176: 5.38349689e-25 - art_sys_177: 1.32069982e-24 - art_sys_178: 4.38679316e-25 - art_sys_179: 4.70875367e-25 - art_sys_180: 9.21531300e-25 - art_sys_181: -1.30369507e-26 - art_sys_182: 1.56943320e-26 - art_sys_183: 5.89164613e-28 - art_sys_184: -2.45265057e-28 - art_sys_185: 1.82402561e-26 + art_sys_27: 1.15709346e-24 + art_sys_28: -1.20057721e-26 + art_sys_29: -8.48208821e-21 + art_sys_30: -1.13988025e-14 + art_sys_31: 9.82276685e-26 + art_sys_32: 2.67316825e-18 + art_sys_33: 3.95226164e-14 + art_sys_34: -6.34139803e-13 + art_sys_35: 1.58423684e-23 + art_sys_36: -1.87566913e-15 + art_sys_37: 3.16998802e-16 + art_sys_38: 4.69649665e-16 + art_sys_39: 1.40428079e-16 + art_sys_40: 2.17564722e-16 + art_sys_41: -1.43198831e-16 + art_sys_42: -3.20051618e-17 + art_sys_43: 6.46034856e-17 + art_sys_44: -3.15243014e-17 + art_sys_45: 8.62746055e-17 + art_sys_46: 3.50019488e-17 + art_sys_47: 4.63913372e-20 + art_sys_48: 2.15581881e-12 + art_sys_49: 1.01247336e-19 + art_sys_50: 3.44053148e-17 + art_sys_51: -8.54283896e-17 + art_sys_52: 6.68105181e-21 + art_sys_53: 8.06837590e-12 + art_sys_54: -3.37256414e-19 + art_sys_55: -6.21976048e-11 + art_sys_56: -7.64545691e-21 + art_sys_57: -4.63144956e-17 + art_sys_58: 7.70683007e-18 + art_sys_59: -1.20510383e-10 + art_sys_60: 1.38627246e-15 + art_sys_61: 8.27805126e-18 + art_sys_62: 1.35661740e-19 + art_sys_63: 1.89594391e-14 + art_sys_64: -2.02683566e-14 + art_sys_65: 6.71594674e-15 + art_sys_66: -1.02568440e-14 + art_sys_67: -2.33169214e-15 + art_sys_68: -1.66795043e-16 + art_sys_69: 6.40317362e-16 + art_sys_70: -6.53664435e-16 + art_sys_71: 1.15269909e-16 + art_sys_72: 1.60983162e-17 + art_sys_73: 6.36874733e-17 + art_sys_74: 3.16123832e-17 + art_sys_75: 1.13323490e-18 + art_sys_76: -2.91955459e-15 + art_sys_77: -6.73084897e-15 + art_sys_78: 3.39500708e-14 + art_sys_79: 4.80193694e-18 + art_sys_80: -4.29935031e-15 + art_sys_81: -1.42155213e-16 + art_sys_82: 1.18367126e-13 + art_sys_83: -1.10066505e-15 + art_sys_84: 1.96004532e-16 + art_sys_85: -1.06119688e-16 + art_sys_86: 1.34709885e-16 + art_sys_87: 2.06179496e-15 + art_sys_88: 2.97184923e-13 + art_sys_89: -3.37892149e-17 + art_sys_90: 1.06806914e-11 + art_sys_91: 1.52076902e-09 + art_sys_92: 9.70442958e-17 + art_sys_93: 1.16792257e-17 + art_sys_94: -2.37368306e-12 + art_sys_95: -4.13671755e-12 + art_sys_96: 2.60068945e-08 + art_sys_97: -1.15922626e-14 + art_sys_98: -5.35434150e-12 + art_sys_99: 4.82930700e-08 + art_sys_100: -3.27171347e-11 + art_sys_101: 2.90430772e-07 + art_sys_102: 1.32854847e-09 + art_sys_103: 4.89496247e-14 + art_sys_104: -9.36976017e-08 + art_sys_105: -5.31687459e-13 + art_sys_106: -1.96266917e-06 + art_sys_107: -3.10848880e-10 + art_sys_108: -1.70283373e-12 + art_sys_109: 1.37874063e-13 + art_sys_110: -1.72358918e-09 + art_sys_111: -1.35163004e-06 + art_sys_112: 2.34405979e-10 + art_sys_113: -4.76433739e-11 + art_sys_114: 1.34350477e-14 + art_sys_115: 8.60623054e-06 + art_sys_116: 1.14279534e-10 + art_sys_117: 5.35216994e-14 + art_sys_118: 1.07830507e-05 + art_sys_119: 2.85410582e-10 + art_sys_120: -2.05601721e-09 + art_sys_121: -3.11179595e-14 + art_sys_122: -2.33932254e-05 + art_sys_123: -2.57932073e-10 + art_sys_124: -4.23669434e-05 + art_sys_125: -8.73667810e-15 + art_sys_126: -1.58474085e-09 + art_sys_127: 1.65246079e-11 + art_sys_128: -5.92452674e-06 + art_sys_129: 1.38361893e-14 + art_sys_130: -1.55256137e-10 + art_sys_131: -1.64609151e-13 + art_sys_132: -7.85836606e-06 + art_sys_133: 2.98631173e-10 + art_sys_134: -1.28486725e-09 + art_sys_135: 8.99651278e-06 + art_sys_136: 3.03556385e-14 + art_sys_137: -1.26213482e-11 + art_sys_138: 4.38431738e-06 + art_sys_139: 2.37734088e-10 + art_sys_140: -2.79879896e-14 + art_sys_141: 3.53959600e-11 + art_sys_142: 2.20012835e-06 + art_sys_143: 5.51928083e-11 + art_sys_144: -5.97082448e-13 + art_sys_145: 5.59118685e-07 + art_sys_146: -3.33188655e-11 + art_sys_147: 3.88755851e-13 + art_sys_148: 3.30492707e-14 + art_sys_149: -6.92788915e-08 + art_sys_150: 1.98322161e-09 + art_sys_151: 1.07544471e-10 + art_sys_152: -1.80358507e-12 + art_sys_153: 2.62392828e-10 + art_sys_154: -5.79803153e-12 + art_sys_155: -8.95566388e-13 + art_sys_156: 0.0 + art_sys_157: -8.23571454e-10 + art_sys_158: 0.0 + art_sys_159: 1.21034006e-10 + art_sys_160: -1.68485116e-11 + art_sys_161: -1.26773763e-11 + art_sys_162: -1.26773763e-11 + art_sys_163: -1.36931139e-11 + art_sys_164: -1.36931139e-11 + art_sys_165: 1.53491438e-25 + art_sys_166: -5.08955512e-26 + art_sys_167: -0.0 + art_sys_168: 6.14398676e-22 + art_sys_169: 2.59005666e-22 + art_sys_170: -6.72228940e-23 + art_sys_171: 1.30677460e-22 + art_sys_172: -3.78596359e-24 + art_sys_173: -2.82385321e-24 + art_sys_174: -2.34322492e-24 + art_sys_175: -4.81218159e-25 + art_sys_176: -3.59590060e-25 + art_sys_177: -9.62370608e-26 + art_sys_178: -1.33887256e-25 + art_sys_179: 2.59957828e-25 + art_sys_180: 3.13144379e-24 + art_sys_181: 2.35322314e-25 + art_sys_182: 5.36122226e-26 + art_sys_183: -5.88510504e-28 + art_sys_184: -1.98072572e-28 + art_sys_185: -4.23825696e-28 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -12461,191 +12461,191 @@ bins: RelativeStatFSR-: -4.07512454e-06 luminosity_uncertainty: 7.79201800e-05 uncorrelated_uncertainty: 2.99693000e-05 -- art_sys_1: -1.78266687e-56 - art_sys_2: 1.02092343e-43 - art_sys_3: 2.63923046e-45 +- art_sys_1: 1.68665635e-56 + art_sys_2: -6.35749044e-45 + art_sys_3: 2.63923043e-45 art_sys_4: 3.25799893e-26 - art_sys_5: 3.81376443e-41 - art_sys_6: 3.94337421e-43 + art_sys_5: 4.17628714e-41 + art_sys_6: 2.07026289e-43 art_sys_7: -3.90328855e-25 - art_sys_8: -1.04270252e-38 + art_sys_8: -1.04123750e-38 art_sys_9: -1.34819129e-23 - art_sys_10: -8.51969307e-41 - art_sys_11: 4.48792714e-37 + art_sys_10: 3.49683820e-41 + art_sys_11: 6.41570376e-37 art_sys_12: 1.89777820e-22 - art_sys_13: 5.02999662e-39 - art_sys_14: -2.74707867e-20 - art_sys_15: 8.94474288e-33 - art_sys_16: -1.05843179e-19 - art_sys_17: 4.36352606e-36 - art_sys_18: 2.76559957e-31 - art_sys_19: 4.09513788e-19 - art_sys_20: 6.92542977e-35 - art_sys_21: -3.90338960e-30 - art_sys_22: 2.59361910e-34 + art_sys_13: 8.03207815e-36 + art_sys_14: 2.74707867e-20 + art_sys_15: -8.87206073e-33 + art_sys_16: 1.05843179e-19 + art_sys_17: 5.40114671e-36 + art_sys_18: 2.76584497e-31 + art_sys_19: -4.09513788e-19 + art_sys_20: 6.87118110e-35 + art_sys_21: -3.90358456e-30 + art_sys_22: 2.41199333e-34 art_sys_23: 9.18080202e-19 - art_sys_24: 1.13142704e-28 - art_sys_25: 7.73775006e-17 + art_sys_24: 1.13142624e-28 + art_sys_25: -7.73775006e-17 art_sys_26: -6.85140235e-17 - art_sys_27: 2.21474646e-26 - art_sys_28: -1.68132529e-27 - art_sys_29: 7.84187056e-16 - art_sys_30: 6.42936787e-16 - art_sys_31: 2.05835414e-15 - art_sys_32: -1.61569146e-15 - art_sys_33: 4.45740792e-17 - art_sys_34: -1.31821686e-16 - art_sys_35: 1.30286711e-16 - art_sys_36: -1.31495585e-22 - art_sys_37: -1.63216980e-15 - art_sys_38: 3.17416490e-17 - art_sys_39: -2.62971123e-26 - art_sys_40: 1.13392475e-19 - art_sys_41: -1.24001849e-16 - art_sys_42: -1.61185533e-17 - art_sys_43: 8.28636359e-14 - art_sys_44: -7.94007273e-17 - art_sys_45: 3.81142590e-24 - art_sys_46: -4.08718188e-19 - art_sys_47: 7.56266323e-17 - art_sys_48: 3.77534757e-13 - art_sys_49: 1.79775616e-19 - art_sys_50: -5.23720396e-17 - art_sys_51: -2.64632005e-18 - art_sys_52: -9.00440458e-13 - art_sys_53: 7.86681719e-23 - art_sys_54: 6.20854544e-19 - art_sys_55: 6.09620565e-12 - art_sys_56: -1.77796294e-22 - art_sys_57: 3.07977000e-14 - art_sys_58: -1.45238241e-14 - art_sys_59: -7.47312922e-15 - art_sys_60: -3.78642011e-17 - art_sys_61: -1.62857375e-15 - art_sys_62: -4.13550684e-16 - art_sys_63: -8.48951054e-17 - art_sys_64: -4.10181510e-16 - art_sys_65: -2.96169813e-17 - art_sys_66: 1.08407437e-17 - art_sys_67: -1.30255892e-17 - art_sys_68: -1.09423258e-16 - art_sys_69: -4.01494480e-16 - art_sys_70: -1.88636617e-11 - art_sys_71: -2.72577989e-15 - art_sys_72: -5.58836703e-21 - art_sys_73: -9.29443474e-15 - art_sys_74: 4.26867519e-15 - art_sys_75: 4.56050051e-17 - art_sys_76: -2.69885224e-14 - art_sys_77: -2.54974299e-14 - art_sys_78: 1.72921327e-14 - art_sys_79: 1.09306808e-17 - art_sys_80: -7.83855409e-15 - art_sys_81: 4.32340051e-15 - art_sys_82: -9.14268462e-16 - art_sys_83: -1.16752456e-15 - art_sys_84: -6.87775808e-17 - art_sys_85: 3.66877720e-16 - art_sys_86: -2.50378198e-16 - art_sys_87: 1.03658672e-12 - art_sys_88: -9.74856578e-13 - art_sys_89: -1.08346316e-12 - art_sys_90: 1.94456663e-09 - art_sys_91: -4.48060200e-09 - art_sys_92: 1.14934514e-11 - art_sys_93: -5.53662785e-16 - art_sys_94: -1.16477330e-11 - art_sys_95: -1.73835946e-08 - art_sys_96: -1.85795888e-12 - art_sys_97: -3.11531242e-10 - art_sys_98: 4.59608303e-08 - art_sys_99: -2.23230893e-14 - art_sys_100: 1.34246015e-10 - art_sys_101: 2.08089245e-07 - art_sys_102: 4.44273745e-13 - art_sys_103: 1.40412002e-09 - art_sys_104: 5.25924773e-08 - art_sys_105: -2.59131675e-13 - art_sys_106: 1.45056441e-06 - art_sys_107: 2.61071055e-13 - art_sys_108: -5.90911534e-10 - art_sys_109: -4.52382740e-10 - art_sys_110: -2.07807167e-13 - art_sys_111: -1.23388757e-06 - art_sys_112: -1.71238767e-09 - art_sys_113: -1.56929694e-13 - art_sys_114: 6.64510482e-06 - art_sys_115: -4.48698025e-11 - art_sys_116: -8.88975958e-10 - art_sys_117: -2.51205472e-15 - art_sys_118: -7.57352872e-06 - art_sys_119: -4.72685387e-12 - art_sys_120: 1.62583892e-05 - art_sys_121: 2.45161738e-10 - art_sys_122: -3.14451349e-05 - art_sys_123: 1.99949736e-10 - art_sys_124: -6.50506133e-06 - art_sys_125: 6.63758917e-06 - art_sys_126: 1.41406388e-09 - art_sys_127: 6.45064578e-06 - art_sys_128: -1.81049369e-10 - art_sys_129: 3.13149294e-11 - art_sys_130: -4.49117817e-10 - art_sys_131: -1.40723939e-10 - art_sys_132: 3.54644417e-06 - art_sys_133: -1.56368415e-10 - art_sys_134: 2.44596106e-09 - art_sys_135: 1.09162952e-06 - art_sys_136: 2.05701641e-09 - art_sys_137: -1.53239866e-07 - art_sys_138: -6.91764729e-10 - art_sys_139: -2.34782167e-09 - art_sys_140: -1.23795313e-14 - art_sys_141: 9.72563630e-10 - art_sys_142: 0.0 - art_sys_143: -2.80201739e-09 - art_sys_144: -9.58525373e-10 - art_sys_145: -3.85513407e-10 - art_sys_146: 1.34708442e-14 - art_sys_147: -4.87706859e-15 - art_sys_148: 3.05654356e-12 - art_sys_149: 4.75071786e-13 - art_sys_150: 5.84642629e-14 - art_sys_151: -2.56356537e-12 - art_sys_152: 7.18316266e-13 - art_sys_153: 5.94373462e-14 - art_sys_154: -5.74232064e-13 - art_sys_155: -7.36132374e-13 - art_sys_156: -2.79035916e-12 - art_sys_157: -1.86613726e-13 - art_sys_158: 0.0 - art_sys_159: -1.69892183e-10 - art_sys_160: -1.69892183e-10 - art_sys_161: 4.69233840e-12 - art_sys_162: -1.95871884e-24 - art_sys_163: -0.0 - art_sys_164: -1.25660081e-24 - art_sys_165: -1.32368416e-20 - art_sys_166: -8.65533661e-21 - art_sys_167: 7.75767168e-21 - art_sys_168: -2.30573916e-21 - art_sys_169: -9.77077509e-22 - art_sys_170: 2.44366739e-21 - art_sys_171: -2.46677611e-23 - art_sys_172: -9.55228979e-23 - art_sys_173: 2.95051556e-22 - art_sys_174: -7.08898128e-25 - art_sys_175: -2.47866518e-24 - art_sys_176: -1.22142608e-24 - art_sys_177: -3.02943486e-24 - art_sys_178: -1.00380310e-24 - art_sys_179: -1.07760262e-24 - art_sys_180: -2.09924528e-24 - art_sys_181: 3.00272675e-26 - art_sys_182: -3.60206304e-26 - art_sys_183: -1.29626409e-27 - art_sys_184: 5.10376339e-28 - art_sys_185: -3.93014746e-26 + art_sys_27: -2.70339781e-26 + art_sys_28: -1.68363487e-27 + art_sys_29: -4.43911619e-23 + art_sys_30: -1.63216931e-15 + art_sys_31: 2.63038486e-26 + art_sys_32: -1.80353468e-20 + art_sys_33: 1.21755434e-16 + art_sys_34: -8.28481677e-14 + art_sys_35: 2.45381581e-24 + art_sys_36: 4.49510318e-15 + art_sys_37: 3.57583491e-15 + art_sys_38: -3.68512224e-16 + art_sys_39: 6.91581766e-16 + art_sys_40: 1.28073501e-16 + art_sys_41: -2.38603050e-17 + art_sys_42: 1.70043824e-16 + art_sys_43: -3.78290875e-17 + art_sys_44: 1.51012280e-17 + art_sys_45: 1.17309079e-16 + art_sys_46: 2.26481548e-16 + art_sys_47: 1.90463226e-19 + art_sys_48: 3.77535906e-13 + art_sys_49: -1.02394127e-19 + art_sys_50: 9.80015713e-17 + art_sys_51: -1.84818540e-16 + art_sys_52: 1.21086051e-21 + art_sys_53: -9.00441273e-13 + art_sys_54: -8.73215315e-19 + art_sys_55: -6.09620567e-12 + art_sys_56: 2.51433553e-22 + art_sys_57: -2.26755989e-16 + art_sys_58: 8.16634990e-17 + art_sys_59: -1.88646565e-11 + art_sys_60: -2.50384351e-16 + art_sys_61: -6.10646297e-17 + art_sys_62: -3.19473037e-20 + art_sys_63: 2.02703839e-15 + art_sys_64: 1.90370556e-14 + art_sys_65: 2.27960314e-15 + art_sys_66: 2.66766661e-15 + art_sys_67: -2.33338816e-15 + art_sys_68: 8.50910715e-17 + art_sys_69: 3.00858793e-16 + art_sys_70: 8.43425273e-16 + art_sys_71: 1.76413960e-16 + art_sys_72: -3.86079378e-17 + art_sys_73: 5.11205999e-18 + art_sys_74: 6.01991658e-17 + art_sys_75: 7.70892907e-18 + art_sys_76: 2.98370993e-14 + art_sys_77: 4.26543944e-14 + art_sys_78: 5.31710497e-15 + art_sys_79: 1.74616821e-18 + art_sys_80: -1.84204565e-15 + art_sys_81: -3.20348944e-17 + art_sys_82: 4.77974991e-14 + art_sys_83: 7.02511448e-16 + art_sys_84: 6.18918571e-16 + art_sys_85: 9.10262126e-17 + art_sys_86: 2.39139887e-16 + art_sys_87: 7.17586011e-17 + art_sys_88: 8.86594050e-14 + art_sys_89: 1.19302430e-16 + art_sys_90: -3.75731246e-12 + art_sys_91: -1.94454117e-09 + art_sys_92: 1.03383061e-17 + art_sys_93: 3.73455718e-17 + art_sys_94: 2.08810246e-12 + art_sys_95: -6.33577000e-12 + art_sys_96: 4.48055595e-09 + art_sys_97: -1.91386981e-15 + art_sys_98: -6.04370697e-12 + art_sys_99: -1.73835603e-08 + art_sys_100: -1.30156571e-11 + art_sys_101: 4.59617862e-08 + art_sys_102: 3.85280791e-10 + art_sys_103: -1.92952830e-14 + art_sys_104: 2.08129979e-07 + art_sys_105: 1.43562496e-12 + art_sys_106: -5.25132575e-08 + art_sys_107: -7.10208684e-10 + art_sys_108: 3.49648453e-12 + art_sys_109: -2.88862132e-13 + art_sys_110: 1.39541752e-09 + art_sys_111: -1.45028760e-06 + art_sys_112: 4.60135432e-10 + art_sys_113: -5.12057685e-11 + art_sys_114: -2.77556398e-14 + art_sys_115: -1.22908755e-06 + art_sys_116: 4.38371127e-10 + art_sys_117: -1.13514619e-13 + art_sys_118: 6.63483988e-06 + art_sys_119: -1.85100099e-10 + art_sys_120: 2.79234775e-09 + art_sys_121: 6.59788579e-14 + art_sys_122: 7.57633746e-06 + art_sys_123: 4.36236360e-10 + art_sys_124: -1.62625627e-05 + art_sys_125: 1.84847954e-14 + art_sys_126: 8.31193673e-10 + art_sys_127: -3.43543444e-11 + art_sys_128: -3.14320923e-05 + art_sys_129: -2.91633416e-14 + art_sys_130: 3.17744244e-10 + art_sys_131: 3.47386060e-13 + art_sys_132: 6.48414669e-06 + art_sys_133: -6.10117638e-10 + art_sys_134: 2.52764772e-09 + art_sys_135: -6.64484647e-06 + art_sys_136: -6.02369201e-14 + art_sys_137: 2.47373637e-11 + art_sys_138: -6.44857919e-06 + art_sys_139: -4.83448015e-10 + art_sys_140: 5.84471514e-14 + art_sys_141: -5.14165200e-11 + art_sys_142: -3.55676051e-06 + art_sys_143: -1.03435675e-10 + art_sys_144: 8.46095194e-13 + art_sys_145: -1.08023294e-06 + art_sys_146: 6.35147320e-11 + art_sys_147: -7.53711732e-13 + art_sys_148: -1.07729804e-13 + art_sys_149: 1.45519146e-07 + art_sys_150: -4.15571509e-09 + art_sys_151: -2.29338454e-10 + art_sys_152: 3.72123638e-12 + art_sys_153: -5.43621476e-10 + art_sys_154: 2.52503730e-12 + art_sys_155: 1.76892986e-12 + art_sys_156: -0.0 + art_sys_157: 1.81044241e-09 + art_sys_158: -0.0 + art_sys_159: -2.56847090e-10 + art_sys_160: 3.67224370e-11 + art_sys_161: 2.57674238e-11 + art_sys_162: 2.57674238e-11 + art_sys_163: 2.86527665e-11 + art_sys_164: 2.86527665e-11 + art_sys_165: -3.19935361e-25 + art_sys_166: 1.06016046e-25 + art_sys_167: 0.0 + art_sys_168: -1.42355110e-21 + art_sys_169: -5.48840173e-22 + art_sys_170: 1.46499922e-22 + art_sys_171: -2.74037119e-22 + art_sys_172: 8.02097383e-24 + art_sys_173: 6.00965066e-24 + art_sys_174: 4.96869482e-24 + art_sys_175: 1.01973179e-24 + art_sys_176: 7.63704762e-25 + art_sys_177: 2.04010503e-25 + art_sys_178: 2.82039543e-25 + art_sys_179: -4.95746624e-25 + art_sys_180: -6.62154017e-24 + art_sys_181: -4.99143308e-25 + art_sys_182: -1.13643917e-25 + art_sys_183: 1.25755216e-27 + art_sys_184: 3.12721104e-28 + art_sys_185: 7.86480075e-28 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -12752,191 +12752,191 @@ bins: RelativeStatFSR-: -2.52378817e-06 luminosity_uncertainty: 4.56461200e-05 uncorrelated_uncertainty: 1.75562000e-05 -- art_sys_1: 1.17755465e-58 - art_sys_2: -6.64161309e-46 +- art_sys_1: -1.07941213e-58 + art_sys_2: 4.13586332e-47 art_sys_3: -3.67004134e-46 art_sys_4: -2.11948986e-28 - art_sys_5: 7.18122080e-41 - art_sys_6: -2.74203220e-45 + art_sys_5: 7.17887596e-41 + art_sys_6: -1.51551414e-45 art_sys_7: 4.93733653e-25 - art_sys_8: -2.83431259e-39 + art_sys_8: -2.84776820e-39 art_sys_9: -4.15004698e-24 - art_sys_10: -2.97956134e-41 - art_sys_11: 4.42797513e-39 + art_sys_10: 2.93170556e-42 + art_sys_11: 2.02022206e-38 art_sys_12: 1.91675083e-23 - art_sys_13: -1.84265401e-40 - art_sys_14: -2.24247519e-21 - art_sys_15: 7.96356564e-34 - art_sys_16: -3.34556484e-21 - art_sys_17: 2.21880593e-37 - art_sys_18: 5.30059691e-32 - art_sys_19: 2.39484535e-20 - art_sys_20: 4.21368711e-36 - art_sys_21: -9.83877549e-31 - art_sys_22: 2.01181118e-35 + art_sys_13: 6.56128238e-37 + art_sys_14: 2.24247519e-21 + art_sys_15: -7.93865670e-34 + art_sys_16: 3.34556484e-21 + art_sys_17: 2.66138268e-37 + art_sys_18: 5.30080455e-32 + art_sys_19: -2.39484535e-20 + art_sys_20: 4.62640002e-36 + art_sys_21: -9.83888539e-31 + art_sys_22: 1.99830439e-35 art_sys_23: 6.00461090e-20 - art_sys_24: -9.23071000e-30 - art_sys_25: 1.07388360e-17 + art_sys_24: -9.23071620e-30 + art_sys_25: -1.07388360e-17 art_sys_26: 1.15988749e-17 - art_sys_27: 1.11730006e-27 - art_sys_28: -1.08058910e-28 - art_sys_29: 6.33851565e-16 - art_sys_30: -3.43483022e-16 - art_sys_31: 1.20503573e-15 - art_sys_32: -4.53416734e-16 - art_sys_33: -3.39154835e-17 - art_sys_34: -2.94178419e-17 - art_sys_35: 1.48616157e-17 - art_sys_36: -1.79329476e-24 - art_sys_37: -1.09334295e-16 - art_sys_38: 3.76354375e-17 - art_sys_39: -2.73516522e-27 - art_sys_40: 3.12232591e-21 - art_sys_41: 4.45286502e-16 - art_sys_42: -5.10294282e-18 - art_sys_43: 4.23621083e-15 - art_sys_44: -1.36204966e-16 - art_sys_45: 1.70697268e-25 - art_sys_46: 2.03680399e-19 - art_sys_47: -1.14824934e-16 - art_sys_48: 2.09834953e-14 - art_sys_49: -3.98384281e-20 - art_sys_50: 4.95948659e-17 - art_sys_51: 1.29310482e-16 - art_sys_52: -3.91568168e-13 - art_sys_53: -4.88989919e-24 - art_sys_54: 2.00219708e-19 - art_sys_55: -7.77174004e-13 - art_sys_56: -2.79706609e-22 - art_sys_57: 4.37135599e-14 - art_sys_58: 1.00694383e-14 - art_sys_59: 1.90344696e-14 - art_sys_60: 1.89036686e-16 - art_sys_61: 5.01107193e-15 - art_sys_62: -1.15134095e-15 - art_sys_63: -7.97136816e-16 - art_sys_64: 3.24556146e-16 - art_sys_65: -1.66799241e-16 - art_sys_66: -6.82531038e-17 - art_sys_67: -4.89175125e-17 - art_sys_68: -9.19380867e-17 - art_sys_69: -1.25741375e-16 - art_sys_70: 9.64595228e-13 - art_sys_71: -1.11629161e-15 - art_sys_72: -1.96835406e-20 - art_sys_73: 3.19187472e-15 - art_sys_74: 1.43499131e-15 - art_sys_75: -3.30188247e-17 - art_sys_76: -2.89253439e-14 - art_sys_77: 1.06776124e-15 - art_sys_78: 1.52509817e-14 - art_sys_79: -1.60500251e-17 - art_sys_80: 3.25766944e-14 - art_sys_81: 4.15221422e-15 - art_sys_82: 6.07252916e-16 - art_sys_83: 3.12688359e-16 - art_sys_84: 5.06244007e-17 - art_sys_85: 2.27744453e-16 - art_sys_86: 1.08841689e-16 - art_sys_87: 2.43206006e-12 - art_sys_88: 1.96030296e-12 - art_sys_89: 1.59624911e-12 - art_sys_90: 3.20206271e-10 - art_sys_91: 7.42922000e-10 - art_sys_92: -9.49950245e-12 - art_sys_93: 2.74322320e-18 - art_sys_94: 1.96558537e-11 - art_sys_95: -4.69487842e-09 - art_sys_96: 3.47140228e-12 - art_sys_97: -9.47644470e-11 - art_sys_98: -1.21738129e-08 - art_sys_99: 6.07663982e-15 - art_sys_100: -1.52632476e-11 - art_sys_101: 3.22124531e-08 - art_sys_102: -8.49158317e-13 - art_sys_103: -1.76746502e-10 - art_sys_104: -1.55001126e-07 - art_sys_105: 5.74366839e-13 - art_sys_106: 3.58884961e-08 - art_sys_107: -2.49698571e-13 - art_sys_108: 1.51195669e-09 - art_sys_109: -3.27715264e-10 - art_sys_110: 4.59447797e-13 - art_sys_111: -1.10854282e-06 - art_sys_112: 3.01717010e-09 - art_sys_113: 3.46978377e-13 - art_sys_114: -6.84659301e-07 - art_sys_115: 7.97376036e-11 - art_sys_116: -6.36842892e-09 - art_sys_117: 5.56101862e-15 - art_sys_118: -4.75866258e-06 - art_sys_119: 1.06765446e-11 - art_sys_120: -5.75179199e-06 - art_sys_121: -6.29522343e-10 - art_sys_122: -1.07500635e-05 - art_sys_123: -3.84519799e-10 - art_sys_124: -2.38258492e-05 - art_sys_125: -5.69044733e-06 - art_sys_126: -2.49748706e-09 - art_sys_127: -5.25314743e-06 - art_sys_128: 3.59985925e-10 - art_sys_129: -6.85060009e-11 - art_sys_130: 8.79772351e-10 - art_sys_131: 2.53549083e-10 - art_sys_132: -5.19021732e-06 - art_sys_133: 3.64889536e-10 - art_sys_134: -4.33324923e-09 - art_sys_135: -1.95695830e-06 - art_sys_136: -3.76628439e-09 - art_sys_137: 2.96977511e-07 - art_sys_138: 1.34499310e-09 - art_sys_139: 4.52899139e-09 - art_sys_140: 7.86402365e-15 - art_sys_141: -1.73112592e-09 - art_sys_142: -0.0 - art_sys_143: 4.96580524e-09 - art_sys_144: 1.85209042e-09 - art_sys_145: 5.78280814e-10 - art_sys_146: -3.02377244e-14 - art_sys_147: 1.14033743e-14 - art_sys_148: -6.75558502e-12 - art_sys_149: -1.05200162e-12 - art_sys_150: -1.37567891e-13 - art_sys_151: 5.69357212e-12 - art_sys_152: -1.20542095e-12 - art_sys_153: -1.14237170e-13 - art_sys_154: 1.20472297e-12 - art_sys_155: 1.27348494e-12 - art_sys_156: 5.13927920e-12 - art_sys_157: 2.15275166e-13 - art_sys_158: -0.0 - art_sys_159: 3.42947051e-10 - art_sys_160: 3.42947051e-10 - art_sys_161: -8.92262038e-12 - art_sys_162: 3.75412325e-24 - art_sys_163: 0.0 - art_sys_164: 2.41701503e-24 - art_sys_165: 2.91993597e-20 - art_sys_166: 1.89945769e-20 - art_sys_167: -1.72402569e-20 - art_sys_168: 5.09814351e-21 - art_sys_169: 2.13994551e-21 - art_sys_170: -5.40576013e-21 - art_sys_171: 6.15303277e-23 - art_sys_172: 2.11351433e-22 - art_sys_173: -6.52648832e-22 - art_sys_174: 1.20125853e-24 - art_sys_175: 5.50443168e-24 - art_sys_176: 2.66825661e-24 - art_sys_177: 6.70494773e-24 - art_sys_178: 2.22034843e-24 - art_sys_179: 2.37616378e-24 - art_sys_180: 4.63110385e-24 - art_sys_181: -6.68723750e-26 - art_sys_182: 7.97883903e-26 - art_sys_183: 2.72266388e-27 - art_sys_184: -1.01651190e-27 - art_sys_185: 7.92737531e-26 + art_sys_27: -1.12399481e-27 + art_sys_28: -1.08215288e-28 + art_sys_29: -1.79714562e-24 + art_sys_30: -1.09334295e-16 + art_sys_31: 2.73465345e-27 + art_sys_32: 2.89229645e-21 + art_sys_33: -4.45291210e-16 + art_sys_34: -4.23616621e-15 + art_sys_35: 1.00943812e-25 + art_sys_36: -4.65310524e-16 + art_sys_37: 1.50626841e-15 + art_sys_38: -1.56839438e-16 + art_sys_39: -5.50378877e-18 + art_sys_40: 3.36004375e-17 + art_sys_41: 4.27501901e-17 + art_sys_42: 5.41637591e-17 + art_sys_43: 2.64106308e-18 + art_sys_44: -2.50992274e-17 + art_sys_45: 8.10888032e-17 + art_sys_46: 1.01120516e-16 + art_sys_47: 1.64409243e-19 + art_sys_48: 2.09839018e-14 + art_sys_49: -8.19379183e-20 + art_sys_50: 5.13778382e-17 + art_sys_51: -1.01270770e-16 + art_sys_52: 7.66639080e-23 + art_sys_53: -3.91568575e-13 + art_sys_54: -2.53629345e-19 + art_sys_55: 7.77173890e-13 + art_sys_56: 4.11910692e-22 + art_sys_57: -1.48036971e-16 + art_sys_58: 6.21770718e-17 + art_sys_59: 9.64185387e-13 + art_sys_60: -1.03883625e-16 + art_sys_61: -4.88003195e-17 + art_sys_62: -1.30759653e-20 + art_sys_63: -7.76656074e-16 + art_sys_64: 2.52216285e-14 + art_sys_65: -4.31636763e-15 + art_sys_66: 2.56444465e-14 + art_sys_67: 1.66045110e-15 + art_sys_68: 4.29444519e-16 + art_sys_69: -5.45952395e-16 + art_sys_70: -4.17512576e-16 + art_sys_71: 3.11167785e-16 + art_sys_72: -1.87095946e-17 + art_sys_73: -1.97516975e-17 + art_sys_74: 4.91677160e-17 + art_sys_75: -6.10495999e-18 + art_sys_76: -1.09189598e-14 + art_sys_77: -3.45701306e-14 + art_sys_78: 4.49162955e-15 + art_sys_79: 1.69986070e-18 + art_sys_80: 1.93402982e-15 + art_sys_81: -3.82874999e-18 + art_sys_82: 5.24272669e-16 + art_sys_83: -7.26194773e-16 + art_sys_84: 1.69274009e-16 + art_sys_85: -5.44055136e-16 + art_sys_86: -4.69604944e-16 + art_sys_87: -1.61078586e-16 + art_sys_88: -2.89892590e-14 + art_sys_89: -4.70244682e-17 + art_sys_90: -2.19749350e-12 + art_sys_91: -3.20219673e-10 + art_sys_92: -8.80670559e-17 + art_sys_93: 1.47311504e-17 + art_sys_94: 6.36177836e-12 + art_sys_95: -3.97760970e-13 + art_sys_96: -7.42885166e-10 + art_sys_97: 3.39904653e-16 + art_sys_98: -1.68218675e-13 + art_sys_99: -4.69500914e-09 + art_sys_100: 3.90155297e-12 + art_sys_101: -1.21740154e-08 + art_sys_102: -2.18949843e-10 + art_sys_103: -5.54394558e-15 + art_sys_104: 3.22224905e-08 + art_sys_105: -3.29360732e-12 + art_sys_106: 1.55002978e-07 + art_sys_107: 4.24011702e-13 + art_sys_108: -6.66748503e-12 + art_sys_109: 5.67883354e-13 + art_sys_110: 2.83096847e-09 + art_sys_111: -3.58756900e-08 + art_sys_112: 9.76490022e-11 + art_sys_113: -1.27389758e-12 + art_sys_114: 5.34139382e-14 + art_sys_115: -1.10761228e-06 + art_sys_116: 1.49358437e-10 + art_sys_117: 2.27257862e-13 + art_sys_118: -6.88456912e-07 + art_sys_119: -2.83527265e-10 + art_sys_120: 6.56766095e-09 + art_sys_121: -1.32097185e-13 + art_sys_122: 4.75817337e-06 + art_sys_123: -8.08603319e-10 + art_sys_124: 5.75377762e-06 + art_sys_125: -3.69125539e-14 + art_sys_126: -1.24426656e-09 + art_sys_127: 6.68458888e-11 + art_sys_128: -1.07225494e-05 + art_sys_129: 5.83500245e-14 + art_sys_130: -6.04405867e-10 + art_sys_131: -6.95829712e-13 + art_sys_132: 2.38074503e-05 + art_sys_133: 1.15729062e-09 + art_sys_134: -4.70796944e-09 + art_sys_135: 5.68675372e-06 + art_sys_136: 1.08653834e-13 + art_sys_137: -4.29117608e-11 + art_sys_138: 5.25042603e-06 + art_sys_139: 8.97109735e-10 + art_sys_140: -1.13814228e-13 + art_sys_141: 5.94362485e-11 + art_sys_142: 5.20344762e-06 + art_sys_143: 1.80285595e-10 + art_sys_144: -9.42174385e-13 + art_sys_145: 1.93759042e-06 + art_sys_146: -1.11713742e-10 + art_sys_147: 1.35607720e-12 + art_sys_148: 2.76122377e-13 + art_sys_149: -2.82921967e-07 + art_sys_150: 8.05751859e-09 + art_sys_151: 4.63412075e-10 + art_sys_152: -7.10492882e-12 + art_sys_153: 1.05093370e-09 + art_sys_154: 1.25062013e-12 + art_sys_155: -3.15787838e-12 + art_sys_156: 0.0 + art_sys_157: -3.86186613e-09 + art_sys_158: 0.0 + art_sys_159: 5.15107307e-10 + art_sys_160: -7.77085005e-11 + art_sys_161: -4.85667449e-11 + art_sys_162: -4.85667449e-11 + art_sys_163: -5.64130794e-11 + art_sys_164: -5.64130794e-11 + art_sys_165: 6.26349420e-25 + art_sys_166: -2.07355761e-25 + art_sys_167: -0.0 + art_sys_168: 2.82754202e-21 + art_sys_169: 1.09848368e-21 + art_sys_170: -3.10188466e-22 + art_sys_171: 5.54084668e-22 + art_sys_172: -1.58761332e-23 + art_sys_173: -1.21121630e-23 + art_sys_174: -9.95384220e-24 + art_sys_175: -2.04023522e-24 + art_sys_176: -1.53330803e-24 + art_sys_177: -4.08015071e-25 + art_sys_178: -5.61445665e-25 + art_sys_179: 8.28456963e-25 + art_sys_180: 1.32199100e-23 + art_sys_181: 1.00234763e-24 + art_sys_182: 2.27491233e-25 + art_sys_183: -2.54660281e-27 + art_sys_184: -3.19929369e-28 + art_sys_185: -1.34836228e-27 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -13043,191 +13043,191 @@ bins: RelativeStatFSR-: -1.53302069e-06 luminosity_uncertainty: 2.62301000e-05 uncorrelated_uncertainty: 1.00885000e-05 -- art_sys_1: 3.58224895e-58 - art_sys_2: -2.05208738e-45 - art_sys_3: -1.82659244e-47 +- art_sys_1: -3.39119703e-58 + art_sys_2: 1.27787507e-46 + art_sys_3: -1.82659239e-47 art_sys_4: -6.54867769e-28 - art_sys_5: 9.64278131e-42 - art_sys_6: -7.90311758e-45 + art_sys_5: 9.56973580e-42 + art_sys_6: -4.15183921e-45 art_sys_7: 6.98133765e-26 - art_sys_8: -3.43837296e-40 + art_sys_8: -3.46803402e-40 art_sys_9: -5.26970765e-25 - art_sys_10: -3.53072032e-42 - art_sys_11: -2.57441440e-39 + art_sys_10: 4.31686491e-43 + art_sys_11: -1.68094982e-39 art_sys_12: 1.36237408e-24 - art_sys_13: -1.13062296e-40 - art_sys_14: -1.26202602e-22 - art_sys_15: 8.12756513e-35 - art_sys_16: 8.00814264e-22 - art_sys_17: -1.50758384e-38 - art_sys_18: 4.86414139e-33 - art_sys_19: -7.81666747e-22 - art_sys_20: -1.64902810e-37 - art_sys_21: -1.07124697e-31 - art_sys_22: 1.55938160e-38 + art_sys_13: 3.70183314e-38 + art_sys_14: 1.26202602e-22 + art_sys_15: -8.17880654e-35 + art_sys_16: -8.00814264e-22 + art_sys_17: -2.01256114e-38 + art_sys_18: 4.86422676e-33 + art_sys_19: 7.81666747e-22 + art_sys_20: -7.82462767e-38 + art_sys_21: -1.07124243e-31 + art_sys_22: 9.72091609e-38 art_sys_23: -1.77065450e-21 - art_sys_24: -5.59839906e-30 - art_sys_25: 9.97142670e-19 + art_sys_24: -5.59839887e-30 + art_sys_25: -9.97142670e-19 art_sys_26: 4.47820767e-18 - art_sys_27: -1.76167128e-27 - art_sys_28: 1.04238119e-29 - art_sys_29: 1.19204085e-14 - art_sys_30: 5.38380654e-16 - art_sys_31: -5.11164731e-16 - art_sys_32: 1.79971580e-16 - art_sys_33: 2.16431391e-16 - art_sys_34: 5.35821677e-17 - art_sys_35: 6.51153433e-17 - art_sys_36: 1.62833435e-26 - art_sys_37: 9.43836621e-18 - art_sys_38: -1.43852690e-16 - art_sys_39: 2.40159820e-28 - art_sys_40: 7.03653902e-23 - art_sys_41: -5.51835154e-17 - art_sys_42: -1.07995015e-16 - art_sys_43: -3.74982633e-16 - art_sys_44: 2.88343471e-16 - art_sys_45: -3.60324717e-26 - art_sys_46: 2.60012778e-18 - art_sys_47: 1.44590598e-16 - art_sys_48: -3.84101167e-15 - art_sys_49: 1.23198147e-18 - art_sys_50: -1.06657387e-16 - art_sys_51: -2.45325870e-16 - art_sys_52: -5.47506524e-14 - art_sys_53: -2.37645526e-24 - art_sys_54: 3.34888190e-19 - art_sys_55: -3.14764792e-13 - art_sys_56: -9.40415010e-23 - art_sys_57: 8.36644845e-15 - art_sys_58: -1.12696763e-14 - art_sys_59: 5.91117995e-15 - art_sys_60: -3.00212007e-16 - art_sys_61: 4.49798427e-15 - art_sys_62: 2.25430707e-16 - art_sys_63: -1.27974855e-16 - art_sys_64: -6.07999124e-16 - art_sys_65: 5.17730388e-16 - art_sys_66: 9.98308069e-17 - art_sys_67: -1.01980298e-17 - art_sys_68: 1.42323621e-16 - art_sys_69: 6.24507120e-17 - art_sys_70: 7.32733804e-13 - art_sys_71: -3.13526472e-17 - art_sys_72: 2.16994713e-21 - art_sys_73: 8.22921198e-16 - art_sys_74: 7.11935243e-18 - art_sys_75: 8.52050987e-17 - art_sys_76: -9.08824864e-15 - art_sys_77: 3.48149916e-14 - art_sys_78: -2.93849022e-14 - art_sys_79: 5.11560861e-17 - art_sys_80: 3.12378363e-15 - art_sys_81: -1.83128507e-15 - art_sys_82: -4.49190112e-17 - art_sys_83: -3.94425281e-16 - art_sys_84: -3.34730838e-17 - art_sys_85: -2.69835592e-16 - art_sys_86: 1.52941867e-17 - art_sys_87: -1.28690523e-13 - art_sys_88: -2.26047884e-12 - art_sys_89: -5.21501716e-12 - art_sys_90: -4.20908239e-11 - art_sys_91: 3.05049063e-10 - art_sys_92: -2.26981615e-12 - art_sys_93: 2.33390595e-17 - art_sys_94: 3.10701727e-12 - art_sys_95: 3.25976578e-10 - art_sys_96: -6.08822158e-12 - art_sys_97: 3.25850571e-11 - art_sys_98: -3.97006302e-09 - art_sys_99: 1.93299533e-15 - art_sys_100: -2.66302585e-11 - art_sys_101: -9.29754782e-09 - art_sys_102: 1.52885126e-12 - art_sys_103: -4.79178153e-10 - art_sys_104: -2.20233960e-08 - art_sys_105: -9.74676248e-13 - art_sys_106: -1.17598283e-07 - art_sys_107: -4.61597177e-14 - art_sys_108: 1.15229004e-09 - art_sys_109: 5.93999248e-11 - art_sys_110: -7.80427630e-13 - art_sys_111: 2.16392087e-09 - art_sys_112: -5.07943971e-09 - art_sys_113: -5.89368761e-13 - art_sys_114: -8.41790449e-07 - art_sys_115: -1.21026183e-10 - art_sys_116: -3.66954491e-09 - art_sys_117: -9.43862533e-15 - art_sys_118: 5.15154227e-07 - art_sys_119: -2.40482557e-11 - art_sys_120: -3.36056142e-06 - art_sys_121: 3.43620821e-10 - art_sys_122: 4.65996609e-06 - art_sys_123: 6.90505610e-10 - art_sys_124: -7.39261486e-06 - art_sys_125: -1.82368730e-05 - art_sys_126: 4.59273726e-09 - art_sys_127: 5.42674983e-06 - art_sys_128: -6.38655113e-10 - art_sys_129: 1.16902738e-10 - art_sys_130: -1.58911098e-09 - art_sys_131: -4.80042498e-10 - art_sys_132: 4.26551002e-06 - art_sys_133: -8.45556810e-10 - art_sys_134: 6.69716632e-09 - art_sys_135: 3.05060554e-06 - art_sys_136: 6.06151158e-09 - art_sys_137: -5.64413248e-07 - art_sys_138: -2.50822159e-09 - art_sys_139: -8.32865482e-09 - art_sys_140: 1.77020914e-15 - art_sys_141: 3.24932507e-09 - art_sys_142: 0.0 - art_sys_143: -7.93575356e-09 - art_sys_144: -3.08151331e-09 - art_sys_145: -1.15349277e-09 - art_sys_146: 5.09113527e-14 - art_sys_147: -1.86772269e-14 - art_sys_148: 1.14822324e-11 - art_sys_149: 1.78832048e-12 - art_sys_150: 2.29283627e-13 - art_sys_151: -9.64313670e-12 - art_sys_152: 1.49496817e-12 - art_sys_153: 1.88162035e-13 - art_sys_154: -2.31145798e-12 - art_sys_155: -2.55517596e-12 - art_sys_156: -9.51977017e-12 - art_sys_157: -4.38032407e-13 - art_sys_158: 0.0 - art_sys_159: -6.46728874e-10 - art_sys_160: -6.46728874e-10 - art_sys_161: 1.80271268e-11 - art_sys_162: -7.47408284e-24 - art_sys_163: -0.0 - art_sys_164: -4.77929970e-24 - art_sys_165: -4.96745006e-20 - art_sys_166: -3.24208701e-20 - art_sys_167: 2.91801817e-20 - art_sys_168: -8.64475284e-21 - art_sys_169: -3.67321744e-21 - art_sys_170: 9.23671213e-21 - art_sys_171: -1.16309573e-22 - art_sys_172: -3.59141047e-22 - art_sys_173: 1.10836852e-21 - art_sys_174: -2.29511769e-24 - art_sys_175: -9.32387056e-24 - art_sys_176: -4.56804958e-24 - art_sys_177: -1.13814313e-23 - art_sys_178: -3.77151505e-24 - art_sys_179: -4.04190476e-24 - art_sys_180: -7.87357547e-24 - art_sys_181: 1.13113092e-25 - art_sys_182: -1.35358529e-25 - art_sys_183: -4.64642665e-27 - art_sys_184: 1.66703071e-27 - art_sys_185: -1.66062897e-25 + art_sys_27: 1.77351603e-27 + art_sys_28: 1.04366343e-29 + art_sys_29: -2.08255276e-26 + art_sys_30: 9.43836608e-18 + art_sys_31: -2.40091904e-28 + art_sys_32: 1.01222793e-22 + art_sys_33: 5.51847499e-17 + art_sys_34: 3.74950837e-16 + art_sys_35: -2.93328734e-26 + art_sys_36: 4.60147853e-15 + art_sys_37: -4.64628221e-15 + art_sys_38: 2.99829139e-15 + art_sys_39: -3.79901186e-16 + art_sys_40: -1.48502762e-16 + art_sys_41: -2.82054095e-16 + art_sys_42: -5.17987375e-17 + art_sys_43: -2.54201127e-17 + art_sys_44: 5.17216591e-17 + art_sys_45: -1.82833231e-16 + art_sys_46: -1.90573576e-16 + art_sys_47: 6.69000641e-18 + art_sys_48: -3.84095934e-15 + art_sys_49: -2.05862134e-20 + art_sys_50: -8.60614489e-17 + art_sys_51: 2.11190754e-16 + art_sys_52: -1.04163522e-23 + art_sys_53: -5.47503536e-14 + art_sys_54: -8.89451951e-20 + art_sys_55: 3.14764645e-13 + art_sys_56: 1.75627536e-22 + art_sys_57: 3.08896335e-16 + art_sys_58: -1.09719696e-16 + art_sys_59: 7.32722141e-13 + art_sys_60: -3.06764232e-18 + art_sys_61: 7.98286642e-17 + art_sys_62: 1.04999867e-20 + art_sys_63: -1.85150113e-16 + art_sys_64: 3.99422165e-14 + art_sys_65: 1.02399943e-14 + art_sys_66: 3.45229041e-15 + art_sys_67: 1.49487081e-15 + art_sys_68: -1.09810000e-15 + art_sys_69: -2.66059292e-16 + art_sys_70: -4.30529177e-16 + art_sys_71: 4.01399208e-16 + art_sys_72: 1.20987888e-18 + art_sys_73: -7.71298978e-19 + art_sys_74: -7.31761756e-17 + art_sys_75: 1.42159140e-17 + art_sys_76: -1.82828165e-14 + art_sys_77: -9.21576483e-15 + art_sys_78: 1.22354555e-14 + art_sys_79: -8.47823431e-18 + art_sys_80: 9.41972408e-16 + art_sys_81: -6.02153428e-18 + art_sys_82: -2.52048373e-15 + art_sys_83: 6.77295636e-16 + art_sys_84: 1.15889745e-15 + art_sys_85: -3.88069239e-16 + art_sys_86: -4.40752594e-16 + art_sys_87: -3.62461494e-17 + art_sys_88: -1.29779532e-14 + art_sys_89: 5.73407588e-17 + art_sys_90: 2.79379966e-13 + art_sys_91: 4.20880738e-11 + art_sys_92: -1.50472011e-17 + art_sys_93: -2.54901946e-17 + art_sys_94: 1.32234380e-12 + art_sys_95: 4.82998346e-13 + art_sys_96: -3.05041502e-10 + art_sys_97: 1.36714011e-16 + art_sys_98: 4.92032113e-13 + art_sys_99: 3.26627203e-10 + art_sys_100: 1.65204067e-12 + art_sys_101: -3.96655905e-09 + art_sys_102: -8.53672869e-11 + art_sys_103: 6.40009998e-16 + art_sys_104: -9.14836065e-09 + art_sys_105: 6.82184140e-12 + art_sys_106: 2.22373458e-08 + art_sys_107: 1.75560194e-10 + art_sys_108: 1.17801059e-11 + art_sys_109: -1.00313268e-12 + art_sys_110: 4.63561527e-10 + art_sys_111: 1.18461137e-07 + art_sys_112: -8.51839478e-11 + art_sys_113: 4.18176323e-12 + art_sys_114: -9.44881998e-14 + art_sys_115: 1.56416222e-09 + art_sys_116: -2.93536603e-10 + art_sys_117: -4.00711966e-13 + art_sys_118: -8.41041462e-07 + art_sys_119: 5.24460716e-10 + art_sys_120: 1.27800946e-09 + art_sys_121: 2.32900924e-13 + art_sys_122: -5.15377992e-07 + art_sys_123: 7.47153874e-10 + art_sys_124: 3.36162248e-06 + art_sys_125: 6.50386169e-14 + art_sys_126: -4.75788655e-09 + art_sys_127: -1.18287734e-10 + art_sys_128: 4.66345569e-06 + art_sys_129: -1.02916370e-13 + art_sys_130: 1.06199679e-09 + art_sys_131: 1.22675256e-12 + art_sys_132: 7.39886123e-06 + art_sys_133: -2.03661966e-09 + art_sys_134: 7.34755394e-09 + art_sys_135: 1.82267305e-05 + art_sys_136: -1.96285756e-13 + art_sys_137: 7.74967585e-11 + art_sys_138: -5.42738284e-06 + art_sys_139: -1.61535041e-09 + art_sys_140: 2.03878135e-13 + art_sys_141: -9.41500353e-12 + art_sys_142: -4.28129929e-06 + art_sys_143: -2.69065620e-10 + art_sys_144: -1.05221689e-13 + art_sys_145: -3.02714786e-06 + art_sys_146: 1.72936990e-10 + art_sys_147: -2.16035451e-12 + art_sys_148: -8.12059658e-13 + art_sys_149: 5.41389838e-07 + art_sys_150: -1.53843319e-08 + art_sys_151: -8.11975597e-10 + art_sys_152: 1.31981984e-11 + art_sys_153: -1.88835662e-09 + art_sys_154: -2.11769681e-13 + art_sys_155: 5.90130455e-12 + art_sys_156: -0.0 + art_sys_157: 6.57942924e-09 + art_sys_158: -0.0 + art_sys_159: -9.07392439e-10 + art_sys_160: 1.32481474e-10 + art_sys_161: 8.72777843e-11 + art_sys_162: 8.72777843e-11 + art_sys_163: 9.99201775e-11 + art_sys_164: 9.99201775e-11 + art_sys_165: -1.11147120e-24 + art_sys_166: 3.68070750e-25 + art_sys_167: 0.0 + art_sys_168: -5.06477133e-21 + art_sys_169: -1.93872612e-21 + art_sys_170: 4.88682091e-22 + art_sys_171: -9.74512505e-22 + art_sys_172: 2.82371429e-23 + art_sys_173: 2.13452394e-23 + art_sys_174: 1.75440693e-23 + art_sys_175: 3.59866982e-24 + art_sys_176: 2.69943559e-24 + art_sys_177: 7.20130607e-25 + art_sys_178: 9.89898075e-25 + art_sys_179: -1.59526516e-24 + art_sys_180: -2.33160610e-23 + art_sys_181: -1.76523495e-24 + art_sys_182: -4.01190907e-25 + art_sys_183: 4.48958213e-27 + art_sys_184: 4.92972267e-28 + art_sys_185: 1.99205634e-27 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -13334,191 +13334,191 @@ bins: RelativeStatFSR-: -9.79673311e-07 luminosity_uncertainty: 1.58757820e-05 uncorrelated_uncertainty: 6.10607000e-06 -- art_sys_1: 5.65425585e-59 - art_sys_2: -3.24019883e-46 - art_sys_3: 1.31994660e-48 +- art_sys_1: -5.35665515e-59 + art_sys_2: 2.01773537e-47 + art_sys_3: 1.31994668e-48 art_sys_4: -1.03402116e-28 - art_sys_5: 8.92343641e-43 - art_sys_6: -1.24074600e-45 + art_sys_5: 8.80883348e-43 + art_sys_6: -6.54307162e-46 art_sys_7: 6.60632087e-27 - art_sys_8: -3.01743594e-41 + art_sys_8: -3.01426948e-41 art_sys_9: -4.82859348e-26 - art_sys_10: -3.16669320e-43 - art_sys_11: -3.51932768e-40 + art_sys_10: 4.16016510e-44 + art_sys_11: -3.93241115e-40 art_sys_12: 2.73981593e-26 - art_sys_13: -2.12377362e-41 - art_sys_14: 5.98149020e-24 - art_sys_15: 4.93474540e-36 - art_sys_16: 2.09855615e-22 - art_sys_17: -6.40756948e-39 - art_sys_18: 6.21179408e-34 - art_sys_19: -5.27543607e-22 - art_sys_20: -1.00576321e-37 - art_sys_21: -1.94230774e-32 - art_sys_22: -3.11810080e-37 + art_sys_13: -1.73132140e-39 + art_sys_14: -5.98149020e-24 + art_sys_15: -5.07144116e-36 + art_sys_16: -2.09855615e-22 + art_sys_17: -8.05947313e-39 + art_sys_18: 6.21163567e-34 + art_sys_19: 5.27543607e-22 + art_sys_20: -9.25151695e-38 + art_sys_21: -1.94228159e-32 + art_sys_22: -2.62798970e-37 art_sys_23: -1.34769808e-21 - art_sys_24: -9.62104312e-31 - art_sys_25: 1.15990795e-20 + art_sys_24: -9.62104182e-31 + art_sys_25: -1.15990795e-20 art_sys_26: 6.04713026e-19 - art_sys_27: -1.07754100e-28 - art_sys_28: 3.16733355e-30 - art_sys_29: -4.49033794e-15 - art_sys_30: -3.70438120e-15 - art_sys_31: -1.76367417e-16 - art_sys_32: -2.77048534e-16 - art_sys_33: -7.19213163e-17 - art_sys_34: -7.71907719e-17 - art_sys_35: 9.24202122e-17 - art_sys_36: -7.85525083e-27 - art_sys_37: 3.06958454e-18 - art_sys_38: -1.13322580e-16 - art_sys_39: 1.14970908e-28 - art_sys_40: 5.42794650e-25 - art_sys_41: -3.50528142e-17 - art_sys_42: -1.16903311e-17 - art_sys_43: -5.94765824e-17 - art_sys_44: 3.23089073e-16 - art_sys_45: -6.36995358e-27 - art_sys_46: 2.51011747e-19 - art_sys_47: 4.37695978e-16 - art_sys_48: -8.64662357e-16 - art_sys_49: 3.13843523e-19 - art_sys_50: -2.05145712e-16 - art_sys_51: -3.79148719e-16 - art_sys_52: -3.23491938e-15 - art_sys_53: 3.99728187e-26 - art_sys_54: -4.91682526e-19 - art_sys_55: -3.91212183e-14 - art_sys_56: -1.11087113e-24 - art_sys_57: -2.57095741e-14 - art_sys_58: 3.33176311e-14 - art_sys_59: 1.09721721e-14 - art_sys_60: -5.53667912e-16 - art_sys_61: -3.11651179e-15 - art_sys_62: -1.16758886e-15 - art_sys_63: -1.32199108e-16 - art_sys_64: 1.24402630e-15 - art_sys_65: -1.66349468e-15 - art_sys_66: 1.98258171e-16 - art_sys_67: 2.21643755e-16 - art_sys_68: -2.78104906e-16 - art_sys_69: 1.59681098e-16 - art_sys_70: 9.26320308e-14 - art_sys_71: 4.08637933e-17 - art_sys_72: 1.72879470e-22 - art_sys_73: -2.19671448e-16 - art_sys_74: -5.62618101e-17 - art_sys_75: -2.91095617e-16 - art_sys_76: 2.99047360e-14 - art_sys_77: -2.89217136e-14 - art_sys_78: -8.82618108e-15 - art_sys_79: -1.36471460e-16 - art_sys_80: -1.20459318e-15 - art_sys_81: 3.98742463e-16 - art_sys_82: 1.53231438e-15 - art_sys_83: -6.06515486e-16 - art_sys_84: 1.40957140e-16 - art_sys_85: -4.32821682e-17 - art_sys_86: 6.34162616e-17 - art_sys_87: -4.06442913e-13 - art_sys_88: 5.53109696e-12 - art_sys_89: 3.16876778e-12 - art_sys_90: -1.76401982e-11 - art_sys_91: 8.51346046e-12 - art_sys_92: 6.29177161e-13 - art_sys_93: 3.04087986e-18 - art_sys_94: -1.45596747e-12 - art_sys_95: 2.51590171e-10 - art_sys_96: 8.63531033e-12 - art_sys_97: 1.22240224e-11 - art_sys_98: 1.67832380e-10 - art_sys_99: -8.65584628e-17 - art_sys_100: -7.38143732e-14 - art_sys_101: -2.67941750e-09 - art_sys_102: -2.24490975e-12 - art_sys_103: 2.44247744e-11 - art_sys_104: 6.81317152e-09 - art_sys_105: 3.13944524e-12 - art_sys_106: -1.52176709e-08 - art_sys_107: 9.97119121e-15 - art_sys_108: -3.04311709e-10 - art_sys_109: 4.14166887e-11 - art_sys_110: 2.49076313e-12 - art_sys_111: 8.84185136e-08 - art_sys_112: 6.29630093e-09 - art_sys_113: 1.88137797e-12 - art_sys_114: -1.72114612e-08 - art_sys_115: 1.64880438e-10 - art_sys_116: 1.28207106e-09 - art_sys_117: 3.02843283e-14 - art_sys_118: 5.46220892e-07 - art_sys_119: 4.43972964e-11 - art_sys_120: 4.11143138e-07 - art_sys_121: -1.89279084e-09 - art_sys_122: 2.09779062e-06 - art_sys_123: -1.06510700e-09 - art_sys_124: 3.35529456e-06 - art_sys_125: -4.02476911e-06 - art_sys_126: -5.16664427e-09 - art_sys_127: 1.29050406e-05 - art_sys_128: 1.23522900e-09 - art_sys_129: -3.54646248e-10 - art_sys_130: 2.64541377e-09 - art_sys_131: 4.40094716e-10 - art_sys_132: -4.43791843e-06 - art_sys_133: 1.27877504e-09 - art_sys_134: -9.46412917e-09 - art_sys_135: -4.06671657e-06 - art_sys_136: -9.01503217e-09 - art_sys_137: 8.44670349e-07 - art_sys_138: 3.99090322e-09 - art_sys_139: 1.30150105e-08 - art_sys_140: -2.77440680e-16 - art_sys_141: -2.28627277e-09 - art_sys_142: -0.0 - art_sys_143: 9.82248708e-09 - art_sys_144: 6.20697519e-09 - art_sys_145: -1.42887404e-09 - art_sys_146: -1.71995233e-13 - art_sys_147: 7.27109780e-14 - art_sys_148: -3.65210192e-11 - art_sys_149: -5.64723655e-12 - art_sys_150: -8.99444021e-13 - art_sys_151: 3.13845671e-11 - art_sys_152: -2.72873767e-12 - art_sys_153: -3.66952576e-13 - art_sys_154: 5.02770825e-12 - art_sys_155: 6.35075298e-13 - art_sys_156: 1.03409801e-11 - art_sys_157: -1.98576125e-12 - art_sys_158: -0.0 - art_sys_159: 1.19672676e-09 - art_sys_160: 1.19672676e-09 - art_sys_161: -1.88776738e-11 - art_sys_162: 8.75518083e-24 - art_sys_163: 0.0 - art_sys_164: 5.87322724e-24 - art_sys_165: 1.57130603e-19 - art_sys_166: 1.00456388e-19 - art_sys_167: -9.40802440e-20 - art_sys_168: 2.76622141e-20 - art_sys_169: 1.17292076e-20 - art_sys_170: -2.93762087e-20 - art_sys_171: 2.88326216e-22 - art_sys_172: 1.14891233e-21 - art_sys_173: -3.54362879e-21 - art_sys_174: 3.50202242e-25 - art_sys_175: 3.02689170e-23 - art_sys_176: 1.38710257e-23 - art_sys_177: 3.64758509e-23 - art_sys_178: 1.20347482e-23 - art_sys_179: 1.27703543e-23 - art_sys_180: 2.49697693e-23 - art_sys_181: -3.70738682e-25 - art_sys_182: 4.35177209e-25 - art_sys_183: 1.33426809e-26 - art_sys_184: -4.01301547e-27 - art_sys_185: 2.31201234e-25 + art_sys_27: 1.12192725e-28 + art_sys_28: 3.17165933e-30 + art_sys_29: -9.37627513e-27 + art_sys_30: 3.06958454e-18 + art_sys_31: -1.14920470e-28 + art_sys_32: 1.22918597e-24 + art_sys_33: 3.50528479e-17 + art_sys_34: 5.94750328e-17 + art_sys_35: -5.26617213e-27 + art_sys_36: -7.89707208e-15 + art_sys_37: 2.06627500e-15 + art_sys_38: -8.57979696e-16 + art_sys_39: 4.35289769e-17 + art_sys_40: -3.58652123e-16 + art_sys_41: 9.53863287e-17 + art_sys_42: -2.03073288e-18 + art_sys_43: -1.23361115e-16 + art_sys_44: 2.60916050e-17 + art_sys_45: -8.91329992e-19 + art_sys_46: 5.32477465e-17 + art_sys_47: 1.29029107e-18 + art_sys_48: -8.70894482e-16 + art_sys_49: 4.55159034e-21 + art_sys_50: 3.34793214e-17 + art_sys_51: 2.03422933e-17 + art_sys_52: -3.04809146e-24 + art_sys_53: -3.23423066e-15 + art_sys_54: 1.01421154e-18 + art_sys_55: 3.91214174e-14 + art_sys_56: -6.75087846e-24 + art_sys_57: -7.20457977e-17 + art_sys_58: 2.47820085e-17 + art_sys_59: 9.26470567e-14 + art_sys_60: 3.82153528e-18 + art_sys_61: -4.69390659e-17 + art_sys_62: -8.66232313e-22 + art_sys_63: 1.19305824e-17 + art_sys_64: -1.05807938e-13 + art_sys_65: -1.49091528e-14 + art_sys_66: -8.20730767e-15 + art_sys_67: -3.80620500e-15 + art_sys_68: 3.16316300e-16 + art_sys_69: 3.97445664e-16 + art_sys_70: -4.37953202e-16 + art_sys_71: 2.98839817e-16 + art_sys_72: 5.32806458e-17 + art_sys_73: -1.66404243e-18 + art_sys_74: 7.39364661e-17 + art_sys_75: -1.10952453e-17 + art_sys_76: 1.32908488e-14 + art_sys_77: 2.90691823e-14 + art_sys_78: -9.89424684e-17 + art_sys_79: -1.10241234e-17 + art_sys_80: -6.89275212e-16 + art_sys_81: -2.36944778e-18 + art_sys_82: -3.77734205e-16 + art_sys_83: 2.57859472e-16 + art_sys_84: 4.08926986e-16 + art_sys_85: -2.52117940e-16 + art_sys_86: -8.16472890e-17 + art_sys_87: 1.45083746e-17 + art_sys_88: 1.39901602e-15 + art_sys_89: -5.11109879e-17 + art_sys_90: 2.54671045e-13 + art_sys_91: 1.76404701e-11 + art_sys_92: 1.85893560e-17 + art_sys_93: 1.53788175e-17 + art_sys_94: -1.10487140e-12 + art_sys_95: 8.38837495e-14 + art_sys_96: -8.51518042e-12 + art_sys_97: 2.51912443e-18 + art_sys_98: 6.31928170e-14 + art_sys_99: 2.51426376e-10 + art_sys_100: -2.71091668e-13 + art_sys_101: 1.66919541e-10 + art_sys_102: 2.02952717e-11 + art_sys_103: 3.54954179e-16 + art_sys_104: -2.71852673e-09 + art_sys_105: -1.06164355e-11 + art_sys_106: -6.86919420e-09 + art_sys_107: 8.07466573e-12 + art_sys_108: -1.69297811e-11 + art_sys_109: 1.84835094e-12 + art_sys_110: -4.89407311e-10 + art_sys_111: 1.49928498e-08 + art_sys_112: -2.28954488e-11 + art_sys_113: 5.29768706e-13 + art_sys_114: 1.47509368e-13 + art_sys_115: 8.82942868e-08 + art_sys_116: -2.11268892e-10 + art_sys_117: 8.25764420e-13 + art_sys_118: -1.66798049e-08 + art_sys_119: 7.23923836e-11 + art_sys_120: -1.12569886e-09 + art_sys_121: -4.80222410e-13 + art_sys_122: -5.46246015e-07 + art_sys_123: -1.54917366e-09 + art_sys_124: -4.11376577e-07 + art_sys_125: -1.31833375e-13 + art_sys_126: -1.90864685e-09 + art_sys_127: 2.07280676e-10 + art_sys_128: 2.09308316e-06 + art_sys_129: 2.11823734e-13 + art_sys_130: -1.59225156e-09 + art_sys_131: -2.50658738e-12 + art_sys_132: -3.34962294e-06 + art_sys_133: 2.94850149e-09 + art_sys_134: -1.01315797e-08 + art_sys_135: 4.02159271e-06 + art_sys_136: 1.56101414e-13 + art_sys_137: -9.20800280e-12 + art_sys_138: -1.29053255e-05 + art_sys_139: 2.18199351e-09 + art_sys_140: -3.22721020e-13 + art_sys_141: -5.11192139e-13 + art_sys_142: 4.44298607e-06 + art_sys_143: 3.61667720e-10 + art_sys_144: 2.95543603e-12 + art_sys_145: 4.03474502e-06 + art_sys_146: -1.96546842e-10 + art_sys_147: 2.86414700e-12 + art_sys_148: 1.44887397e-12 + art_sys_149: -8.13535936e-07 + art_sys_150: 2.28415220e-08 + art_sys_151: 1.77320332e-09 + art_sys_152: -1.88488716e-11 + art_sys_153: 3.13593494e-09 + art_sys_154: -1.49088385e-13 + art_sys_155: -4.41853073e-12 + art_sys_156: 0.0 + art_sys_157: -1.80172912e-08 + art_sys_158: 0.0 + art_sys_159: 1.89712251e-09 + art_sys_160: -3.49534338e-10 + art_sys_161: -1.21334049e-10 + art_sys_162: -1.21334049e-10 + art_sys_163: -1.87656086e-10 + art_sys_164: -1.87656086e-10 + art_sys_165: 2.01758218e-24 + art_sys_166: -6.64220620e-25 + art_sys_167: -0.0 + art_sys_168: 1.11453998e-20 + art_sys_169: 3.99944693e-21 + art_sys_170: -1.15426784e-21 + art_sys_171: 2.01034923e-21 + art_sys_172: -5.25783567e-23 + art_sys_173: -4.41531311e-23 + art_sys_174: -3.64328426e-23 + art_sys_175: -7.42267397e-24 + art_sys_176: -5.67887593e-24 + art_sys_177: -1.48078020e-24 + art_sys_178: -1.99059163e-24 + art_sys_179: 1.14139526e-26 + art_sys_180: 4.75296019e-23 + art_sys_181: 3.70843297e-24 + art_sys_182: 8.29859793e-25 + art_sys_183: -9.88070000e-27 + art_sys_184: 1.18961426e-27 + art_sys_185: -2.28767335e-27 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -13625,191 +13625,191 @@ bins: RelativeStatFSR-: -5.34148296e-07 luminosity_uncertainty: 8.20058200e-06 uncorrelated_uncertainty: 3.15407000e-06 -- art_sys_1: 5.12115451e-60 - art_sys_2: -2.93504831e-47 - art_sys_3: 2.46590423e-49 +- art_sys_1: -4.85278763e-60 + art_sys_2: 1.82771215e-48 + art_sys_3: 2.46590431e-49 art_sys_4: -9.36640690e-30 - art_sys_5: 6.36357837e-44 - art_sys_6: -1.12405176e-46 + art_sys_5: 6.25905967e-44 + art_sys_6: -5.87338452e-47 art_sys_7: 4.78144862e-28 - art_sys_8: -1.97107830e-42 + art_sys_8: -1.96833632e-42 art_sys_9: -3.40400120e-27 - art_sys_10: -2.19439785e-44 - art_sys_11: -2.95173774e-41 + art_sys_10: 3.34833263e-45 + art_sys_11: -4.64671463e-41 art_sys_12: -7.02301892e-27 - art_sys_13: -2.62456324e-42 - art_sys_14: 2.41686020e-24 - art_sys_15: 2.00417420e-37 - art_sys_16: 2.83913082e-23 - art_sys_17: -9.77715264e-40 - art_sys_18: 5.78301647e-35 - art_sys_19: -8.62537450e-23 - art_sys_20: -1.63331546e-38 - art_sys_21: -1.44411342e-33 - art_sys_22: -4.32367020e-38 + art_sys_13: -7.04848958e-40 + art_sys_14: -2.41686020e-24 + art_sys_15: -2.18989518e-37 + art_sys_16: -2.83913082e-23 + art_sys_17: -1.21487385e-39 + art_sys_18: 5.78263022e-35 + art_sys_19: 8.62537450e-23 + art_sys_20: -1.56102406e-38 + art_sys_21: -1.44407145e-33 + art_sys_22: -4.89748760e-38 art_sys_23: -2.18675276e-22 - art_sys_24: -7.36418854e-32 - art_sys_25: -1.14050340e-20 + art_sys_24: -7.36418650e-32 + art_sys_25: 1.14050340e-20 art_sys_26: 2.66799906e-20 - art_sys_27: 1.75663827e-29 - art_sys_28: 2.58340309e-31 - art_sys_29: -1.12364696e-14 - art_sys_30: 3.67275282e-15 - art_sys_31: -2.62312516e-15 - art_sys_32: -6.37623305e-16 - art_sys_33: 1.66821909e-17 - art_sys_34: -1.22746078e-16 - art_sys_35: 8.23230386e-17 - art_sys_36: -4.46892292e-27 - art_sys_37: 2.64942410e-19 - art_sys_38: 1.52329019e-16 - art_sys_39: 1.53937095e-29 - art_sys_40: 2.41298888e-26 - art_sys_41: -5.79735245e-18 - art_sys_42: 6.59611059e-17 - art_sys_43: 4.07032781e-18 - art_sys_44: -2.63665041e-17 - art_sys_45: -3.83525297e-29 - art_sys_46: -3.22882708e-20 - art_sys_47: -9.00113995e-17 - art_sys_48: -4.37886734e-17 - art_sys_49: 6.16383760e-18 - art_sys_50: 8.55238940e-17 - art_sys_51: 7.38092791e-17 - art_sys_52: -1.87472009e-16 - art_sys_53: 1.31613151e-25 - art_sys_54: 1.76497564e-19 - art_sys_55: -1.56990618e-15 - art_sys_56: 2.04561801e-24 - art_sys_57: -7.58626360e-14 - art_sys_58: -2.29985053e-16 - art_sys_59: 1.71078762e-14 - art_sys_60: 3.00254164e-17 - art_sys_61: 1.25874154e-15 - art_sys_62: 1.12737531e-16 - art_sys_63: 3.01262163e-17 - art_sys_64: -9.88162531e-16 - art_sys_65: 6.76368613e-16 - art_sys_66: 2.56375863e-17 - art_sys_67: -3.31964509e-17 - art_sys_68: 1.14156874e-16 - art_sys_69: 5.49428037e-17 - art_sys_70: -5.38007745e-16 - art_sys_71: 6.09058273e-18 - art_sys_72: 4.02112387e-23 - art_sys_73: -1.27397615e-16 - art_sys_74: -7.16846134e-18 - art_sys_75: 1.02503346e-16 - art_sys_76: -4.53500097e-14 - art_sys_77: -9.88754119e-16 - art_sys_78: 1.88623011e-14 - art_sys_79: 3.61565386e-17 - art_sys_80: -2.30881177e-16 - art_sys_81: -1.66074349e-16 - art_sys_82: -5.94536583e-16 - art_sys_83: -1.71698114e-16 - art_sys_84: -4.74811123e-17 - art_sys_85: -2.68120018e-16 - art_sys_86: -5.60864258e-16 - art_sys_87: 7.29519606e-17 - art_sys_88: 5.37261512e-12 - art_sys_89: -1.75609554e-11 - art_sys_90: -7.02825220e-13 - art_sys_91: -9.34893271e-12 - art_sys_92: 2.14346229e-13 - art_sys_93: -5.10781139e-19 - art_sys_94: -3.27201899e-13 - art_sys_95: 1.56109913e-11 - art_sys_96: -1.29177526e-11 - art_sys_97: -1.80929594e-12 - art_sys_98: 1.88990438e-10 - art_sys_99: -9.44379432e-17 - art_sys_100: 2.85864266e-12 - art_sys_101: 3.12669268e-10 - art_sys_102: 3.38994603e-12 - art_sys_103: 6.08804686e-11 - art_sys_104: 1.51055349e-09 - art_sys_105: -1.08261117e-12 - art_sys_106: 4.42510478e-09 - art_sys_107: 2.90264776e-15 - art_sys_108: -1.74297951e-10 - art_sys_109: -4.62752578e-12 - art_sys_110: -8.81416140e-13 - art_sys_111: 7.81070352e-09 - art_sys_112: -8.95096783e-09 - art_sys_113: -6.65369876e-13 - art_sys_114: 6.10561375e-08 - art_sys_115: -1.68665776e-10 - art_sys_116: 5.87280602e-10 - art_sys_117: -1.05424867e-14 - art_sys_118: 1.48315203e-09 - art_sys_119: -8.43289634e-11 - art_sys_120: 3.66195224e-07 - art_sys_121: -1.19384642e-09 - art_sys_122: -3.80688677e-07 - art_sys_123: 1.49906611e-09 - art_sys_124: 1.40066902e-06 - art_sys_125: 2.70860798e-06 - art_sys_126: 8.93434947e-09 - art_sys_127: 3.27400854e-06 - art_sys_128: -1.23137748e-09 - art_sys_129: 1.44131204e-10 - art_sys_130: -3.36820765e-09 - art_sys_131: -1.27311173e-09 - art_sys_132: -9.36590195e-06 - art_sys_133: -2.55779952e-09 - art_sys_134: 1.05553778e-08 - art_sys_135: 4.61501372e-06 - art_sys_136: 9.92691429e-09 - art_sys_137: -1.42720525e-06 - art_sys_138: -5.98308138e-09 - art_sys_139: -1.93369289e-08 - art_sys_140: -8.85391506e-17 - art_sys_141: 9.12830803e-09 - art_sys_142: 0.0 - art_sys_143: -1.16855842e-08 - art_sys_144: -4.49015043e-09 - art_sys_145: -4.58636992e-09 - art_sys_146: 5.05117009e-14 - art_sys_147: -1.09648433e-14 - art_sys_148: 1.30434184e-11 - art_sys_149: 2.05932542e-12 - art_sys_150: 1.62806638e-13 - art_sys_151: -1.04730710e-11 - art_sys_152: 4.13690612e-13 - art_sys_153: 2.92559250e-13 - art_sys_154: -5.22516732e-12 - art_sys_155: -8.62940096e-12 - art_sys_156: -2.44522319e-11 - art_sys_157: -2.37981529e-12 - art_sys_158: 0.0 - art_sys_159: -1.53916194e-09 - art_sys_160: -1.53916194e-09 - art_sys_161: 5.64811985e-11 - art_sys_162: -2.23783624e-23 - art_sys_163: -0.0 - art_sys_164: -1.39996623e-23 - art_sys_165: -5.71937632e-20 - art_sys_166: -3.89279361e-20 - art_sys_167: 3.19401342e-20 - art_sys_168: -9.74739378e-21 - art_sys_169: -4.08582026e-21 - art_sys_170: 1.04944601e-20 - art_sys_171: -1.09315951e-22 - art_sys_172: -4.02064318e-22 - art_sys_173: 1.24702567e-21 - art_sys_174: -7.22005185e-24 - art_sys_175: -1.01435939e-23 - art_sys_176: -5.70545261e-24 - art_sys_177: -1.27388107e-23 - art_sys_178: -4.26009840e-24 - art_sys_179: -4.65744582e-24 - art_sys_180: -8.99566033e-24 - art_sys_181: 1.20483024e-25 - art_sys_182: -1.50361590e-25 - art_sys_183: -6.02853935e-27 - art_sys_184: 2.26395647e-27 - art_sys_185: -5.32316827e-25 + art_sys_27: -1.93684343e-29 + art_sys_28: 2.58816671e-31 + art_sys_29: -1.68332584e-27 + art_sys_30: 2.64942418e-19 + art_sys_31: -1.53866461e-29 + art_sys_32: 1.74696104e-26 + art_sys_33: 5.79735241e-18 + art_sys_34: -4.07032540e-18 + art_sys_35: -9.08932101e-29 + art_sys_36: -3.95636267e-15 + art_sys_37: 3.33498537e-15 + art_sys_38: -4.29134224e-15 + art_sys_39: 1.92992687e-16 + art_sys_40: 2.09968257e-16 + art_sys_41: 1.25496231e-17 + art_sys_42: -5.81091413e-17 + art_sys_43: 3.72809810e-17 + art_sys_44: -4.09606690e-17 + art_sys_45: 2.22492508e-16 + art_sys_46: 2.35417961e-16 + art_sys_47: -4.08666435e-20 + art_sys_48: -4.36512138e-17 + art_sys_49: 8.69936333e-18 + art_sys_50: 1.55346887e-16 + art_sys_51: -1.96420114e-16 + art_sys_52: -2.75689434e-25 + art_sys_53: -1.87590810e-16 + art_sys_54: 8.28980609e-19 + art_sys_55: 1.57000576e-15 + art_sys_56: -2.21617262e-24 + art_sys_57: -3.12971828e-16 + art_sys_58: 9.50391974e-17 + art_sys_59: -5.35812847e-16 + art_sys_60: 2.97452838e-19 + art_sys_61: -8.00419653e-17 + art_sys_62: 1.65218280e-23 + art_sys_63: 7.46608552e-18 + art_sys_64: 6.25221357e-14 + art_sys_65: 2.68140780e-14 + art_sys_66: 2.01552144e-15 + art_sys_67: 4.88651571e-15 + art_sys_68: 2.46003769e-16 + art_sys_69: -1.63829174e-17 + art_sys_70: 2.32349631e-16 + art_sys_71: -4.23397313e-16 + art_sys_72: 8.67883632e-18 + art_sys_73: -4.93375362e-17 + art_sys_74: 5.97358717e-17 + art_sys_75: 1.24686717e-17 + art_sys_76: 2.78274171e-14 + art_sys_77: -1.21456848e-15 + art_sys_78: -6.77696428e-16 + art_sys_79: 2.09083972e-17 + art_sys_80: 2.87369984e-15 + art_sys_81: -6.71517102e-18 + art_sys_82: 5.58725475e-17 + art_sys_83: 1.47676393e-15 + art_sys_84: -4.87193519e-16 + art_sys_85: 2.20344711e-16 + art_sys_86: 2.94943122e-16 + art_sys_87: -1.18375470e-17 + art_sys_88: 1.05722219e-15 + art_sys_89: 1.05182656e-16 + art_sys_90: -3.05997283e-15 + art_sys_91: 7.02986118e-13 + art_sys_92: 2.25290140e-17 + art_sys_93: 1.74671846e-17 + art_sys_94: -2.71175657e-13 + art_sys_95: -1.86297369e-14 + art_sys_96: 9.34654135e-12 + art_sys_97: -4.09610539e-18 + art_sys_98: -2.19434764e-14 + art_sys_99: 1.49432713e-11 + art_sys_100: -1.31898877e-13 + art_sys_101: 1.85389781e-10 + art_sys_102: 9.67438959e-12 + art_sys_103: 5.56360079e-18 + art_sys_104: 1.61269759e-10 + art_sys_105: 1.63029904e-11 + art_sys_106: -1.73004341e-09 + art_sys_107: -2.11877181e-11 + art_sys_108: 2.48245316e-11 + art_sys_109: -1.96587149e-12 + art_sys_110: -1.01903544e-10 + art_sys_111: -5.30419251e-09 + art_sys_112: 8.55570502e-12 + art_sys_113: -1.87141830e-13 + art_sys_114: -1.95595022e-13 + art_sys_115: 7.90433244e-09 + art_sys_116: -1.25961873e-09 + art_sys_117: -7.52357941e-13 + art_sys_118: 6.12643664e-08 + art_sys_119: 1.49744808e-10 + art_sys_120: -2.69208040e-10 + art_sys_121: 4.37160417e-13 + art_sys_122: -1.67104899e-09 + art_sys_123: -7.65503563e-10 + art_sys_124: -3.66219320e-07 + art_sys_125: 1.22545530e-13 + art_sys_126: 5.15267874e-10 + art_sys_127: -2.36383832e-10 + art_sys_128: -3.81573101e-07 + art_sys_129: -1.93767784e-13 + art_sys_130: 2.19772189e-09 + art_sys_131: 2.31752246e-12 + art_sys_132: -1.40123961e-06 + art_sys_133: -4.26353311e-09 + art_sys_134: 1.14025468e-08 + art_sys_135: -2.70430524e-06 + art_sys_136: -4.91702121e-13 + art_sys_137: 2.03517903e-10 + art_sys_138: -3.28672245e-06 + art_sys_139: -3.55859557e-09 + art_sys_140: 4.31831697e-13 + art_sys_141: 3.31165024e-10 + art_sys_142: 9.36191781e-06 + art_sys_143: -3.79229831e-10 + art_sys_144: -6.09942195e-12 + art_sys_145: -4.60850912e-06 + art_sys_146: 2.70841482e-10 + art_sys_147: -3.58047842e-12 + art_sys_148: -3.41549779e-12 + art_sys_149: 1.38808696e-06 + art_sys_150: -3.93923581e-08 + art_sys_151: -1.45580003e-09 + art_sys_152: 3.22406545e-11 + art_sys_153: -4.07931728e-09 + art_sys_154: 6.05903876e-15 + art_sys_155: 1.63186914e-11 + art_sys_156: -0.0 + art_sys_157: 9.51248258e-09 + art_sys_158: -0.0 + art_sys_159: -1.69076221e-09 + art_sys_160: 1.99684862e-10 + art_sys_161: 1.99753961e-10 + art_sys_162: 1.99753961e-10 + art_sys_163: 1.99275157e-10 + art_sys_164: 1.99275157e-10 + art_sys_165: -2.25875701e-24 + art_sys_166: 7.50385970e-25 + art_sys_167: 0.0 + art_sys_168: -1.07223418e-20 + art_sys_169: -3.66802679e-21 + art_sys_170: 9.29448869e-22 + art_sys_171: -1.83934082e-21 + art_sys_172: 5.68391030e-23 + art_sys_173: 3.91996431e-23 + art_sys_174: 3.28670125e-23 + art_sys_175: 6.77299804e-24 + art_sys_176: 5.00688507e-24 + art_sys_177: 1.36068744e-24 + art_sys_178: 1.87996600e-24 + art_sys_179: -5.16174388e-24 + art_sys_180: -4.41937442e-23 + art_sys_181: -3.27949594e-24 + art_sys_182: -7.53790876e-25 + art_sys_183: 8.21365690e-27 + art_sys_184: 1.40337508e-27 + art_sys_185: 2.84149643e-27 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -13916,191 +13916,191 @@ bins: RelativeStatFSR-: -3.27886810e-07 luminosity_uncertainty: 4.77097400e-06 uncorrelated_uncertainty: 1.83499000e-06 -- art_sys_1: 7.27656042e-62 - art_sys_2: -4.17052284e-49 - art_sys_3: 4.11902524e-51 +- art_sys_1: -6.89579695e-62 + art_sys_2: 2.59706638e-50 + art_sys_3: 4.11902534e-51 art_sys_4: -1.33090872e-31 - art_sys_5: 8.26362157e-46 - art_sys_6: -1.61094857e-48 + art_sys_5: 8.11540842e-46 + art_sys_6: -8.45945329e-49 art_sys_7: 6.29779359e-30 - art_sys_8: -2.21418437e-44 + art_sys_8: -2.22738440e-44 art_sys_9: -4.29638954e-29 - art_sys_10: -2.99183161e-46 - art_sys_11: -3.58786611e-43 + art_sys_10: 1.88837789e-47 + art_sys_11: -8.84719903e-43 art_sys_12: -2.58088389e-28 - art_sys_13: -5.62420681e-44 - art_sys_14: 7.47915044e-26 - art_sys_15: 2.00177919e-39 - art_sys_16: 6.30548225e-25 - art_sys_17: -2.31643491e-41 - art_sys_18: 1.12570539e-36 - art_sys_19: -2.11661720e-24 - art_sys_20: -3.82914898e-40 - art_sys_21: -2.77822353e-35 - art_sys_22: -8.47172951e-40 + art_sys_13: -2.18357016e-41 + art_sys_14: -7.47915044e-26 + art_sys_15: -2.41528799e-39 + art_sys_16: -6.30548225e-25 + art_sys_17: -2.86059040e-41 + art_sys_18: 1.12559957e-36 + art_sys_19: 2.11661720e-24 + art_sys_20: -3.68921632e-40 + art_sys_21: -2.77812109e-35 + art_sys_22: -6.29321332e-40 art_sys_23: -5.08930210e-24 - art_sys_24: -1.43484216e-34 - art_sys_25: -4.64984245e-22 + art_sys_24: -1.43483701e-34 + art_sys_25: 4.64984245e-22 art_sys_26: -9.72562590e-22 - art_sys_27: 1.78018491e-30 - art_sys_28: -1.10527407e-33 - art_sys_29: -5.32936601e-16 - art_sys_30: -5.26924471e-16 - art_sys_31: -6.06197921e-16 - art_sys_32: -1.25220865e-16 - art_sys_33: -3.20049414e-17 - art_sys_34: 3.47640741e-18 - art_sys_35: 5.26932283e-17 - art_sys_36: -2.10833994e-29 - art_sys_37: -3.94180784e-22 - art_sys_38: -4.21126702e-18 - art_sys_39: 1.76633755e-31 - art_sys_40: 2.32403808e-27 - art_sys_41: -8.48565746e-20 - art_sys_42: -2.39865309e-17 - art_sys_43: 2.51195680e-19 - art_sys_44: 1.84523691e-17 - art_sys_45: 1.83561857e-29 - art_sys_46: 1.18249958e-22 - art_sys_47: 3.76575300e-17 - art_sys_48: 9.42862414e-19 - art_sys_49: -3.80902686e-20 - art_sys_50: -1.89693233e-17 - art_sys_51: -5.02291837e-17 - art_sys_52: -2.68531953e-17 - art_sys_53: 8.26989782e-27 - art_sys_54: 4.63349346e-20 - art_sys_55: -1.78261959e-17 - art_sys_56: 1.11233872e-25 - art_sys_57: 7.43699154e-14 - art_sys_58: -1.87747382e-14 - art_sys_59: -1.51702154e-14 - art_sys_60: -5.57839883e-17 - art_sys_61: 1.35519727e-14 - art_sys_62: -2.69342249e-14 - art_sys_63: -1.23638559e-14 - art_sys_64: 2.89235164e-14 - art_sys_65: -3.76149608e-14 - art_sys_66: 3.00811743e-17 - art_sys_67: 5.47653413e-15 - art_sys_68: -6.71868067e-15 - art_sys_69: 1.95529428e-17 - art_sys_70: -2.11340077e-16 - art_sys_71: -1.43329590e-19 - art_sys_72: -1.25465404e-24 - art_sys_73: -2.52148070e-17 - art_sys_74: 2.26695085e-19 - art_sys_75: -7.44912511e-15 - art_sys_76: -3.34698689e-14 - art_sys_77: -5.46931441e-15 - art_sys_78: 1.05867105e-14 - art_sys_79: -3.43188457e-15 - art_sys_80: 6.37684513e-18 - art_sys_81: 3.66711344e-15 - art_sys_82: -8.72940060e-16 - art_sys_83: -2.36627788e-16 - art_sys_84: 3.21502860e-15 - art_sys_85: -3.85918067e-16 - art_sys_86: -4.40854549e-17 - art_sys_87: 5.12980603e-15 - art_sys_88: -3.81845060e-13 - art_sys_89: -2.05301352e-11 - art_sys_90: 9.45168300e-14 - art_sys_91: -2.41711174e-13 - art_sys_92: -6.38943902e-15 - art_sys_93: -2.21563279e-20 - art_sys_94: 1.61716206e-14 - art_sys_95: -1.61080980e-12 - art_sys_96: 2.03770434e-11 - art_sys_97: -1.79719352e-13 - art_sys_98: 1.65055781e-12 - art_sys_99: -5.95448042e-19 - art_sys_100: 1.79491932e-14 - art_sys_101: 2.88519659e-11 - art_sys_102: -7.00541747e-12 - art_sys_103: -4.42639948e-13 - art_sys_104: -5.24427260e-11 - art_sys_105: 7.21740555e-11 - art_sys_106: 1.99414755e-10 - art_sys_107: -6.39719007e-17 - art_sys_108: 5.98103848e-12 - art_sys_109: -6.65174404e-13 - art_sys_110: 5.68780235e-11 - art_sys_111: -9.66589702e-10 - art_sys_112: -4.99338429e-09 - art_sys_113: 4.29687475e-11 - art_sys_114: 6.90352635e-10 - art_sys_115: -1.30449573e-11 - art_sys_116: -2.48990854e-11 - art_sys_117: 6.94187195e-13 - art_sys_118: -7.76891710e-09 - art_sys_119: 4.54372950e-10 - art_sys_120: -4.14204141e-09 - art_sys_121: -3.09661027e-10 - art_sys_122: -3.89521388e-08 - art_sys_123: -5.19697269e-09 - art_sys_124: -4.00547573e-08 - art_sys_125: 1.63692855e-07 - art_sys_126: 6.31434844e-09 - art_sys_127: -8.38616841e-08 - art_sys_128: 1.46851896e-08 - art_sys_129: -7.78485087e-09 - art_sys_130: 1.92404924e-08 - art_sys_131: -7.27404179e-09 - art_sys_132: -1.10056683e-06 - art_sys_133: 1.85337090e-09 - art_sys_134: -2.72742819e-08 - art_sys_135: 2.86522541e-06 - art_sys_136: -3.30580027e-08 - art_sys_137: 3.84721596e-06 - art_sys_138: 2.61028009e-08 - art_sys_139: 7.64065200e-08 - art_sys_140: -8.81170971e-17 - art_sys_141: 7.96544922e-08 - art_sys_142: -0.0 - art_sys_143: -2.78075539e-08 - art_sys_144: 8.27013934e-08 - art_sys_145: -1.16000844e-07 - art_sys_146: -4.08343128e-12 - art_sys_147: 1.87306138e-12 - art_sys_148: -8.31892220e-10 - art_sys_149: -1.27970645e-10 - art_sys_150: -2.34391683e-11 - art_sys_151: 7.27140297e-10 - art_sys_152: -3.49030300e-11 - art_sys_153: -4.49438030e-12 - art_sys_154: 7.78696266e-11 - art_sys_155: -1.07563242e-10 - art_sys_156: -9.07262069e-11 - art_sys_157: -1.00538252e-10 + art_sys_27: -1.80194101e-30 + art_sys_28: -1.10085672e-33 + art_sys_29: -5.56547205e-30 + art_sys_30: -3.94180755e-22 + art_sys_31: -1.76533960e-31 + art_sys_32: 4.96318972e-28 + art_sys_33: 8.48565706e-20 + art_sys_34: -2.51195588e-19 + art_sys_35: 1.43007367e-29 + art_sys_36: -9.05234154e-15 + art_sys_37: -3.83718649e-16 + art_sys_38: -2.00969579e-15 + art_sys_39: -2.91609224e-17 + art_sys_40: -3.30414615e-17 + art_sys_41: -9.15123304e-19 + art_sys_42: 2.86550769e-17 + art_sys_43: -7.23251452e-17 + art_sys_44: 1.69819164e-17 + art_sys_45: -8.79523249e-17 + art_sys_46: -1.36551416e-16 + art_sys_47: -1.18433350e-22 + art_sys_48: 9.46390322e-19 + art_sys_49: 2.24938670e-20 + art_sys_50: -6.61624902e-17 + art_sys_51: 1.18747254e-16 + art_sys_52: -5.01945495e-27 + art_sys_53: -2.66308207e-17 + art_sys_54: 1.56362720e-19 + art_sys_55: 1.77660458e-17 + art_sys_56: -9.73971607e-26 + art_sys_57: 2.09327634e-16 + art_sys_58: -8.47258823e-17 + art_sys_59: -2.11329374e-16 + art_sys_60: 1.90336143e-20 + art_sys_61: 7.29017451e-17 + art_sys_62: 3.83349201e-24 + art_sys_63: 2.67495522e-20 + art_sys_64: -2.40650205e-14 + art_sys_65: 2.24751269e-14 + art_sys_66: 1.40594882e-14 + art_sys_67: -5.31003974e-15 + art_sys_68: 1.23567417e-15 + art_sys_69: 7.71146403e-16 + art_sys_70: -1.09367454e-15 + art_sys_71: -5.28495715e-16 + art_sys_72: -1.00899097e-16 + art_sys_73: -3.88559338e-17 + art_sys_74: -8.17692743e-17 + art_sys_75: 5.28932210e-17 + art_sys_76: -3.34730666e-14 + art_sys_77: 4.71496068e-14 + art_sys_78: -1.94250158e-14 + art_sys_79: 4.28519805e-17 + art_sys_80: 2.71339523e-15 + art_sys_81: -3.61489565e-17 + art_sys_82: 3.76843608e-18 + art_sys_83: 1.93245578e-16 + art_sys_84: -4.79589905e-16 + art_sys_85: -9.63998494e-16 + art_sys_86: -1.05244173e-16 + art_sys_87: -2.92148482e-17 + art_sys_88: -1.92192734e-17 + art_sys_89: -3.14027221e-17 + art_sys_90: -3.64384171e-15 + art_sys_91: -9.45154019e-14 + art_sys_92: 1.27787227e-17 + art_sys_93: 1.46469385e-18 + art_sys_94: 1.90570428e-14 + art_sys_95: -1.20495871e-15 + art_sys_96: 2.41647372e-13 + art_sys_97: -8.60967139e-20 + art_sys_98: -9.51218926e-16 + art_sys_99: -1.63308104e-12 + art_sys_100: 3.25663789e-15 + art_sys_101: 1.53007458e-12 + art_sys_102: -2.69538881e-13 + art_sys_103: -2.33349732e-18 + art_sys_104: 2.38133605e-11 + art_sys_105: -1.90865481e-11 + art_sys_106: 4.51062673e-11 + art_sys_107: -2.29229764e-13 + art_sys_108: -3.03436368e-11 + art_sys_109: 1.93425081e-11 + art_sys_110: 8.84257820e-12 + art_sys_111: -2.29073455e-10 + art_sys_112: 4.58951527e-13 + art_sys_113: -8.07919505e-15 + art_sys_114: 7.32539614e-13 + art_sys_115: -9.62472312e-10 + art_sys_116: -1.27314214e-09 + art_sys_117: 1.12951301e-11 + art_sys_118: 6.92670756e-10 + art_sys_119: 2.45470138e-10 + art_sys_120: 1.94824644e-11 + art_sys_121: -6.57766014e-12 + art_sys_122: 7.76013190e-09 + art_sys_123: 1.13497496e-09 + art_sys_124: 4.15128543e-09 + art_sys_125: -1.74191208e-12 + art_sys_126: 1.44067031e-10 + art_sys_127: 1.89649271e-09 + art_sys_128: -3.88768301e-08 + art_sys_129: 2.89863684e-12 + art_sys_130: -5.89436727e-09 + art_sys_131: -3.38236573e-11 + art_sys_132: 3.99502401e-08 + art_sys_133: 6.91016086e-09 + art_sys_134: 1.23378120e-08 + art_sys_135: -1.63448469e-07 + art_sys_136: -4.40055827e-12 + art_sys_137: 3.95073134e-09 + art_sys_138: 6.98546821e-08 + art_sys_139: 2.46290593e-09 + art_sys_140: -1.67878288e-12 + art_sys_141: 2.14574115e-09 + art_sys_142: 1.10548008e-06 + art_sys_143: 3.74817879e-10 + art_sys_144: 9.28228769e-11 + art_sys_145: -2.81222114e-06 + art_sys_146: 1.47273301e-09 + art_sys_147: -1.88216246e-12 + art_sys_148: 1.67876681e-11 + art_sys_149: -3.84273065e-06 + art_sys_150: 9.81207059e-08 + art_sys_151: 2.68279222e-08 + art_sys_152: -5.20221039e-11 + art_sys_153: 2.41161096e-08 + art_sys_154: 1.37899216e-15 + art_sys_155: 1.33404933e-10 + art_sys_156: 0.0 + art_sys_157: -3.56393094e-07 art_sys_158: -0.0 - art_sys_159: 1.31316484e-08 - art_sys_160: 1.31316484e-08 - art_sys_161: 2.01711172e-10 - art_sys_162: -4.72094681e-23 - art_sys_163: -0.0 - art_sys_164: -1.94110972e-23 - art_sys_165: 3.56673822e-18 - art_sys_166: 2.24482045e-18 - art_sys_167: -2.17696895e-18 - art_sys_168: 6.32727763e-19 - art_sys_169: 2.62596157e-19 - art_sys_170: -6.77457617e-19 - art_sys_171: 7.93911458e-21 - art_sys_172: 2.63241915e-20 - art_sys_173: -8.10311589e-20 - art_sys_174: -1.05783621e-22 - art_sys_175: 6.99528472e-22 - art_sys_176: 3.05131260e-22 - art_sys_177: 8.35413210e-22 - art_sys_178: 2.74782868e-22 - art_sys_179: 2.89483690e-22 - art_sys_180: 5.67531247e-22 - art_sys_181: -8.62530240e-24 - art_sys_182: 9.98872533e-24 - art_sys_183: 2.87720131e-25 - art_sys_184: -7.07445618e-26 - art_sys_185: 3.80191129e-25 + art_sys_159: 2.67187830e-08 + art_sys_160: -6.64524156e-09 + art_sys_161: -1.82818532e-10 + art_sys_162: -1.82818532e-10 + art_sys_163: -2.10885746e-09 + art_sys_164: -2.10885746e-09 + art_sys_165: 2.07375851e-23 + art_sys_166: -6.71459501e-24 + art_sys_167: -0.0 + art_sys_168: 1.43292092e-19 + art_sys_169: 5.51914619e-20 + art_sys_170: -1.67746356e-20 + art_sys_171: 2.81933773e-20 + art_sys_172: -6.09445687e-22 + art_sys_173: -6.47901881e-22 + art_sys_174: -5.06717398e-22 + art_sys_175: -1.02038008e-22 + art_sys_176: -8.08501983e-23 + art_sys_177: -2.02421830e-23 + art_sys_178: -2.59930132e-23 + art_sys_179: -8.19470651e-23 + art_sys_180: 6.38666473e-22 + art_sys_181: 5.26811517e-23 + art_sys_182: 1.14676672e-23 + art_sys_183: -1.52422068e-25 + art_sys_184: 4.86615285e-26 + art_sys_185: 1.27621022e-26 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -14207,191 +14207,191 @@ bins: RelativeStatFSR-: -1.39470547e-07 luminosity_uncertainty: 1.87299840e-06 uncorrelated_uncertainty: 7.20384000e-07 -- art_sys_1: 3.03047300e-65 - art_sys_2: -1.73683882e-52 - art_sys_3: 1.50778148e-54 +- art_sys_1: -2.87168878e-65 + art_sys_2: 1.08156360e-53 + art_sys_3: 1.50778153e-54 art_sys_4: -5.54264783e-35 - art_sys_5: 3.75639623e-49 - art_sys_6: -6.73483012e-52 + art_sys_5: 3.69467840e-49 + art_sys_6: -3.54584755e-52 art_sys_7: 2.91529823e-33 - art_sys_8: -7.48379214e-48 + art_sys_8: -7.41318783e-48 art_sys_9: -1.82960081e-32 - art_sys_10: -1.36862279e-49 - art_sys_11: -6.88717425e-47 + art_sys_10: -7.35551175e-51 + art_sys_11: -5.67709341e-46 art_sys_12: -2.40410061e-31 - art_sys_13: -4.33627303e-47 - art_sys_14: 7.08121482e-29 - art_sys_15: 7.22715263e-43 - art_sys_16: 4.93175329e-28 - art_sys_17: -1.88018711e-44 - art_sys_18: 1.02741151e-39 - art_sys_19: -1.75920251e-27 - art_sys_20: -2.82002519e-43 - art_sys_21: -1.98788092e-38 - art_sys_22: 2.68191112e-43 + art_sys_13: -2.06840852e-44 + art_sys_14: -7.08121482e-29 + art_sys_15: -1.04697564e-42 + art_sys_16: -4.93175329e-28 + art_sys_17: -2.31642098e-44 + art_sys_18: 1.02731290e-39 + art_sys_19: 1.75920251e-27 + art_sys_20: -2.80003066e-43 + art_sys_21: -1.98779648e-38 + art_sys_22: 2.38780051e-43 art_sys_23: -3.66835267e-27 - art_sys_24: 2.92823472e-36 - art_sys_25: -6.01526410e-25 + art_sys_24: 2.92823507e-36 + art_sys_25: 6.01526410e-25 art_sys_26: -2.44949322e-24 - art_sys_27: 4.35518412e-34 - art_sys_28: 5.03670359e-36 - art_sys_29: 9.72329082e-16 - art_sys_30: 4.62392699e-16 - art_sys_31: -1.40154303e-15 - art_sys_32: 5.31822559e-16 - art_sys_33: -3.13077922e-17 - art_sys_34: -1.32045805e-17 - art_sys_35: -6.14724790e-17 - art_sys_36: 3.86416553e-31 - art_sys_37: -2.73505975e-24 - art_sys_38: -4.13210850e-17 - art_sys_39: -6.45746199e-35 - art_sys_40: -6.99849132e-30 - art_sys_41: 1.36862465e-22 - art_sys_42: -3.27205352e-17 - art_sys_43: -6.87901507e-22 - art_sys_44: 1.14937066e-16 - art_sys_45: -1.01239577e-32 - art_sys_46: -9.57497162e-24 - art_sys_47: 1.10152519e-17 - art_sys_48: -1.68049684e-21 - art_sys_49: 1.99617202e-20 - art_sys_50: -6.20906828e-18 - art_sys_51: -7.09865159e-17 - art_sys_52: 2.33754344e-18 - art_sys_53: -4.33694878e-29 - art_sys_54: -3.94735700e-19 - art_sys_55: -4.93301559e-19 - art_sys_56: -1.61544063e-26 - art_sys_57: -1.40302822e-14 - art_sys_58: 2.05271828e-15 - art_sys_59: 6.87222563e-15 - art_sys_60: -7.39640061e-17 - art_sys_61: 2.36080658e-14 - art_sys_62: -7.26023552e-14 - art_sys_63: -3.08123363e-14 - art_sys_64: 7.88455530e-14 - art_sys_65: -1.05634620e-13 - art_sys_66: 4.79820833e-17 - art_sys_67: 1.53006996e-14 - art_sys_68: -1.90059837e-14 - art_sys_69: 2.61991270e-17 - art_sys_70: 2.39435405e-19 - art_sys_71: -2.27998823e-20 - art_sys_72: 8.18735393e-24 - art_sys_73: -4.17456894e-17 - art_sys_74: -5.17353151e-20 - art_sys_75: -2.11660202e-14 - art_sys_76: -2.86552758e-14 - art_sys_77: 2.17863187e-14 - art_sys_78: 2.12378152e-14 - art_sys_79: -9.69228905e-15 - art_sys_80: 8.91455803e-18 - art_sys_81: -9.11756770e-15 - art_sys_82: 1.05182490e-15 - art_sys_83: -1.06174448e-18 - art_sys_84: 9.11996237e-15 - art_sys_85: 1.02373370e-15 - art_sys_86: 1.51006332e-16 - art_sys_87: -7.60666852e-15 - art_sys_88: 3.61827950e-13 - art_sys_89: 1.46711350e-11 - art_sys_90: 1.26728583e-16 - art_sys_91: 1.18520077e-15 - art_sys_92: -9.88436674e-17 - art_sys_93: -3.18166922e-20 - art_sys_94: 2.32860323e-17 - art_sys_95: -1.15352867e-13 - art_sys_96: -6.08514112e-12 - art_sys_97: 2.78451766e-15 - art_sys_98: -6.32909309e-13 - art_sys_99: -6.36289188e-19 - art_sys_100: -5.47138774e-15 - art_sys_101: -2.50900586e-11 - art_sys_102: -2.58031808e-12 - art_sys_103: -1.04235835e-12 - art_sys_104: 3.55564559e-11 - art_sys_105: 2.03518545e-10 - art_sys_106: 1.43490705e-10 - art_sys_107: 5.53514726e-18 - art_sys_108: 4.84213327e-12 - art_sys_109: -3.55790213e-14 - art_sys_110: 1.60238891e-10 - art_sys_111: -3.94124006e-12 - art_sys_112: -6.55398291e-10 - art_sys_113: 1.21056472e-10 - art_sys_114: -2.71248896e-11 - art_sys_115: -1.16092718e-10 - art_sys_116: -1.69196220e-11 - art_sys_117: 1.95736585e-12 - art_sys_118: -8.41220345e-11 - art_sys_119: -1.09940830e-10 - art_sys_120: -1.20240478e-09 - art_sys_121: 5.29958035e-10 - art_sys_122: 5.76718739e-10 - art_sys_123: -7.19683840e-09 - art_sys_124: -1.49248294e-08 - art_sys_125: -3.57374158e-08 - art_sys_126: -1.39023798e-09 - art_sys_127: -9.29037124e-08 - art_sys_128: 3.61654472e-08 - art_sys_129: -2.18116904e-08 - art_sys_130: 3.88341741e-08 - art_sys_131: -2.69101967e-08 - art_sys_132: 4.28281702e-07 - art_sys_133: -3.28070641e-09 - art_sys_134: -2.55997410e-08 - art_sys_135: -8.84919946e-07 - art_sys_136: -8.53335313e-08 - art_sys_137: -1.34288789e-06 - art_sys_138: 2.63805149e-08 - art_sys_139: 7.20540374e-08 - art_sys_140: -2.83271859e-16 - art_sys_141: 3.02132296e-07 - art_sys_142: 0.0 - art_sys_143: -1.46447398e-07 - art_sys_144: 2.13262969e-07 - art_sys_145: -3.73926652e-07 - art_sys_146: -1.16029664e-11 - art_sys_147: 5.43213760e-12 - art_sys_148: -2.34291928e-09 - art_sys_149: -3.60056063e-10 - art_sys_150: -6.66212257e-11 - art_sys_151: 2.05279837e-09 - art_sys_152: -9.31857090e-11 - art_sys_153: -1.22020628e-11 - art_sys_154: 1.73187615e-10 - art_sys_155: -3.87681787e-10 - art_sys_156: -4.50499283e-10 - art_sys_157: -3.11220774e-10 - art_sys_158: -0.0 - art_sys_159: 2.65221848e-08 - art_sys_160: 2.65221848e-08 - art_sys_161: 1.03542801e-09 - art_sys_162: -3.13687890e-22 - art_sys_163: -0.0 - art_sys_164: -1.66350937e-22 - art_sys_165: 1.00268171e-17 - art_sys_166: 6.28904915e-18 - art_sys_167: -6.11965533e-18 - art_sys_168: 1.78333697e-18 - art_sys_169: 7.49198666e-19 - art_sys_170: -1.88736781e-18 - art_sys_171: 1.70676653e-20 - art_sys_172: 7.41443977e-20 - art_sys_173: -2.28336609e-19 - art_sys_174: -3.64061158e-22 - art_sys_175: 1.97654730e-21 - art_sys_176: 8.51423593e-22 - art_sys_177: 2.35531469e-21 - art_sys_178: 7.74149975e-22 - art_sys_179: 8.14312095e-22 - art_sys_180: 1.59775505e-21 - art_sys_181: -2.44047946e-23 - art_sys_182: 2.81810799e-23 - art_sys_183: 8.03489328e-25 - art_sys_184: -1.93644918e-25 - art_sys_185: -3.21403773e-24 + art_sys_27: -3.12813684e-34 + art_sys_28: -3.94704888e-36 + art_sys_29: 4.52364105e-32 + art_sys_30: -2.73506078e-24 + art_sys_31: 2.02759159e-34 + art_sys_32: -1.62654015e-30 + art_sys_33: -1.36862476e-22 + art_sys_34: 6.87901694e-22 + art_sys_35: -6.47950762e-34 + art_sys_36: -3.79977672e-15 + art_sys_37: -1.79329159e-16 + art_sys_38: 1.32107058e-15 + art_sys_39: -8.34976247e-16 + art_sys_40: -1.63501006e-16 + art_sys_41: -6.06445224e-17 + art_sys_42: -1.72601534e-17 + art_sys_43: -1.06678659e-17 + art_sys_44: -2.50043116e-17 + art_sys_45: -5.40884481e-17 + art_sys_46: -2.64837785e-16 + art_sys_47: -7.53193909e-24 + art_sys_48: -1.76399588e-21 + art_sys_49: 1.54423272e-20 + art_sys_50: -1.12073853e-16 + art_sys_51: 2.00910032e-16 + art_sys_52: 3.51383157e-29 + art_sys_53: 1.79317739e-18 + art_sys_54: 5.60755624e-19 + art_sys_55: 2.72638091e-19 + art_sys_56: 1.17311677e-26 + art_sys_57: 2.58132698e-16 + art_sys_58: -1.00011260e-16 + art_sys_59: 3.12533979e-19 + art_sys_60: 7.00231964e-20 + art_sys_61: 7.38098236e-17 + art_sys_62: 6.17271978e-24 + art_sys_63: 1.97900012e-20 + art_sys_64: -3.63263002e-14 + art_sys_65: -6.88302060e-15 + art_sys_66: -1.22585501e-15 + art_sys_67: 2.36459500e-15 + art_sys_68: -5.18924035e-16 + art_sys_69: -1.55445771e-15 + art_sys_70: -1.12771886e-15 + art_sys_71: -7.14105240e-16 + art_sys_72: -1.95764527e-17 + art_sys_73: -4.03643702e-17 + art_sys_74: -6.94673588e-17 + art_sys_75: 5.34820066e-17 + art_sys_76: -8.78460801e-15 + art_sys_77: 1.18117777e-14 + art_sys_78: 5.76847320e-15 + art_sys_79: 3.70792293e-17 + art_sys_80: 2.81651737e-15 + art_sys_81: -2.67457140e-17 + art_sys_82: 3.60675909e-19 + art_sys_83: 1.12540342e-16 + art_sys_84: -3.65744088e-16 + art_sys_85: 3.95844865e-16 + art_sys_86: 2.59620570e-16 + art_sys_87: -2.18300657e-17 + art_sys_88: -8.10370312e-18 + art_sys_89: -2.48597025e-17 + art_sys_90: -4.83979349e-17 + art_sys_91: -1.32943857e-16 + art_sys_92: -3.76827519e-17 + art_sys_93: 1.29149894e-17 + art_sys_94: 4.90045050e-15 + art_sys_95: -2.03057899e-16 + art_sys_96: -9.36588047e-16 + art_sys_97: 2.45171106e-20 + art_sys_98: -1.68852466e-16 + art_sys_99: -3.77295872e-14 + art_sys_100: 1.44464442e-16 + art_sys_101: -2.16036036e-13 + art_sys_102: -3.07042376e-14 + art_sys_103: 1.67501701e-18 + art_sys_104: -7.58087622e-12 + art_sys_105: -5.56593423e-13 + art_sys_106: -1.00757483e-11 + art_sys_107: 2.04993600e-13 + art_sys_108: -1.19008938e-12 + art_sys_109: 1.05305971e-11 + art_sys_110: 2.27863923e-12 + art_sys_111: -4.19800170e-11 + art_sys_112: -4.65611952e-14 + art_sys_113: -1.46181599e-15 + art_sys_114: 3.14096196e-13 + art_sys_115: -1.09086993e-11 + art_sys_116: 4.72337715e-09 + art_sys_117: 6.42453843e-12 + art_sys_118: -5.64659624e-11 + art_sys_119: -4.83755875e-11 + art_sys_120: 4.91092352e-12 + art_sys_121: -3.74012888e-12 + art_sys_122: 1.10238140e-10 + art_sys_123: -3.62195468e-09 + art_sys_124: 1.18774612e-09 + art_sys_125: -9.95064908e-13 + art_sys_126: -3.16244186e-10 + art_sys_127: 1.00213492e-09 + art_sys_128: 5.90314914e-10 + art_sys_129: 1.63052030e-12 + art_sys_130: -2.06166405e-09 + art_sys_131: -1.89484264e-11 + art_sys_132: 1.49260558e-08 + art_sys_133: 1.25212712e-09 + art_sys_134: 9.39721499e-09 + art_sys_135: 3.75961032e-08 + art_sys_136: -3.75287883e-12 + art_sys_137: 2.56362035e-09 + art_sys_138: 1.27054197e-07 + art_sys_139: -6.80947159e-10 + art_sys_140: -6.47366925e-13 + art_sys_141: 1.09202339e-09 + art_sys_142: -4.71201038e-07 + art_sys_143: -1.98302052e-11 + art_sys_144: 5.51101888e-11 + art_sys_145: 8.61813828e-07 + art_sys_146: 8.21231437e-10 + art_sys_147: -1.45894166e-12 + art_sys_148: -3.97651531e-12 + art_sys_149: 1.41146015e-06 + art_sys_150: -4.76425063e-08 + art_sys_151: 1.62266209e-08 + art_sys_152: 6.10645109e-11 + art_sys_153: 1.10857818e-09 + art_sys_154: -2.04858747e-15 + art_sys_155: 2.29299498e-10 + art_sys_156: 0.0 + art_sys_157: -9.90156732e-07 + art_sys_158: 0.0 + art_sys_159: 1.51193402e-08 + art_sys_160: -2.32313958e-08 + art_sys_161: -1.07467296e-09 + art_sys_162: -1.07467296e-09 + art_sys_163: -2.52401955e-09 + art_sys_164: -2.52401955e-09 + art_sys_165: 2.60703556e-23 + art_sys_166: -8.60043241e-24 + art_sys_167: -0.0 + art_sys_168: 8.84844703e-20 + art_sys_169: 3.10072108e-20 + art_sys_170: -9.00293749e-21 + art_sys_171: 1.57781767e-20 + art_sys_172: -2.82893681e-22 + art_sys_173: -3.76519053e-22 + art_sys_174: -2.87766708e-22 + art_sys_175: -5.79163879e-23 + art_sys_176: -4.62148149e-23 + art_sys_177: -1.13685335e-23 + art_sys_178: -1.46607429e-23 + art_sys_179: -1.30466261e-22 + art_sys_180: 4.66087394e-22 + art_sys_181: 3.01506562e-23 + art_sys_182: 6.46034013e-24 + art_sys_183: -8.73482426e-26 + art_sys_184: 3.05127834e-26 + art_sys_185: 9.55435641e-27 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -14498,191 +14498,191 @@ bins: RelativeStatFSR-: -3.33428908e-08 luminosity_uncertainty: 3.92446600e-07 uncorrelated_uncertainty: 1.50941000e-07 -- art_sys_1: 3.85758938e-69 - art_sys_2: -2.21043191e-56 - art_sys_3: 3.36939874e-59 +- art_sys_1: -3.65394628e-69 + art_sys_2: 1.37647931e-57 + art_sys_3: 3.36939929e-59 art_sys_4: -7.05399113e-39 - art_sys_5: 7.04958816e-53 - art_sys_6: -8.59615998e-56 + art_sys_5: 6.97087046e-53 + art_sys_6: -4.55268177e-56 art_sys_7: 5.59801509e-37 - art_sys_8: -7.31275587e-52 + art_sys_8: -7.42088780e-52 art_sys_9: -3.06976053e-36 - art_sys_10: -2.39843546e-53 - art_sys_11: 2.78016020e-50 + art_sys_10: 9.11223803e-55 + art_sys_11: -1.40403742e-49 art_sys_12: -7.68168717e-35 - art_sys_13: -1.31386299e-50 - art_sys_14: 2.38535367e-32 - art_sys_15: -1.83689100e-47 - art_sys_16: 1.50058273e-31 - art_sys_17: -5.77003708e-48 - art_sys_18: 9.27009102e-44 - art_sys_19: -5.46666879e-31 - art_sys_20: -7.35270737e-47 - art_sys_21: -3.51082330e-42 - art_sys_22: 1.69865279e-46 + art_sys_13: -6.96922764e-48 + art_sys_14: -2.38535367e-32 + art_sys_15: -8.40416094e-47 + art_sys_16: -1.50058273e-31 + art_sys_17: -7.11366936e-48 + art_sys_18: 9.26696722e-44 + art_sys_19: 5.46666879e-31 + art_sys_20: -7.38842962e-47 + art_sys_21: -3.51056234e-42 + art_sys_22: 2.25932946e-46 art_sys_23: -8.81109584e-31 - art_sys_24: 1.80426319e-39 - art_sys_25: -3.96788167e-28 + art_sys_24: 1.80426329e-39 + art_sys_25: 3.96788168e-28 art_sys_26: -1.07506738e-27 - art_sys_27: -8.81211388e-36 - art_sys_28: -9.58657916e-36 - art_sys_29: -1.03880915e-15 - art_sys_30: 8.42190323e-15 - art_sys_31: -6.59673348e-16 - art_sys_32: -5.83076638e-16 - art_sys_33: 1.00991522e-16 - art_sys_34: 9.40611342e-18 - art_sys_35: 2.24730696e-17 - art_sys_36: -3.56631210e-33 - art_sys_37: 8.46876653e-27 - art_sys_38: 1.04922663e-16 - art_sys_39: -8.88800915e-34 - art_sys_40: -1.66016387e-31 - art_sys_41: 2.02362355e-25 - art_sys_42: 1.80532569e-17 - art_sys_43: -2.12789109e-24 - art_sys_44: -2.52295512e-16 - art_sys_45: -1.25563926e-34 - art_sys_46: 5.56040403e-26 - art_sys_47: -3.06413875e-16 - art_sys_48: -1.99422204e-23 - art_sys_49: -3.46408591e-22 - art_sys_50: 1.56239676e-16 - art_sys_51: 2.63006528e-16 - art_sys_52: -1.65967780e-19 - art_sys_53: 3.24880471e-29 - art_sys_54: -2.51565499e-19 - art_sys_55: -2.56824256e-18 - art_sys_56: -1.10873450e-27 - art_sys_57: 4.14419897e-14 - art_sys_58: -1.00515423e-14 - art_sys_59: 3.12842133e-15 - art_sys_60: 3.67096425e-16 - art_sys_61: -7.81736978e-15 - art_sys_62: 1.63506992e-14 - art_sys_63: 6.57292895e-15 - art_sys_64: -1.72124260e-14 - art_sys_65: 2.25567090e-14 - art_sys_66: -1.41829102e-16 - art_sys_67: -3.31227234e-15 - art_sys_68: 4.15747433e-15 - art_sys_69: -1.02235169e-16 - art_sys_70: 1.75602013e-19 - art_sys_71: 3.81801629e-20 - art_sys_72: 4.33413994e-25 - art_sys_73: 9.98435094e-17 - art_sys_74: -2.74387460e-20 - art_sys_75: 4.63709561e-15 - art_sys_76: -2.72692310e-14 - art_sys_77: -8.93683076e-15 - art_sys_78: 6.55492241e-18 - art_sys_79: 2.13035881e-15 - art_sys_80: -6.50183891e-18 - art_sys_81: 2.32239452e-16 - art_sys_82: -5.86444522e-16 - art_sys_83: -6.12010243e-16 - art_sys_84: -2.00090047e-15 - art_sys_85: 1.14209225e-16 - art_sys_86: -6.52969549e-16 - art_sys_87: -4.60455513e-15 - art_sys_88: 1.36382798e-12 - art_sys_89: 3.45924129e-11 - art_sys_90: -5.40217873e-18 - art_sys_91: -6.22602075e-16 - art_sys_92: -2.76543980e-16 - art_sys_93: -1.62581200e-21 - art_sys_94: 5.10445570e-16 - art_sys_95: 1.89076695e-13 - art_sys_96: 6.34807110e-12 - art_sys_97: -1.09710573e-15 - art_sys_98: 1.01767319e-12 - art_sys_99: -5.63913921e-19 - art_sys_100: 2.36175699e-14 - art_sys_101: 4.25248660e-11 - art_sys_102: -9.78480262e-13 - art_sys_103: -2.80484267e-12 - art_sys_104: -6.15805983e-11 - art_sys_105: -4.44926387e-11 - art_sys_106: -2.46017414e-10 - art_sys_107: -5.82733702e-17 - art_sys_108: 1.46679610e-11 - art_sys_109: -1.49940983e-13 - art_sys_110: -3.50179848e-11 - art_sys_111: -1.41130742e-11 - art_sys_112: -1.02723187e-08 - art_sys_113: -2.64551555e-11 - art_sys_114: -5.92181664e-11 - art_sys_115: -5.32452991e-10 - art_sys_116: -5.09451869e-11 - art_sys_117: -4.27628271e-13 - art_sys_118: -3.69598933e-11 - art_sys_119: 2.52941872e-10 - art_sys_120: 2.56233488e-10 - art_sys_121: 1.80004370e-09 - art_sys_122: -6.19496621e-11 - art_sys_123: 9.00146644e-10 - art_sys_124: 2.80187050e-09 - art_sys_125: 5.35232151e-09 - art_sys_126: 3.15967405e-09 - art_sys_127: 3.00042761e-08 - art_sys_128: -7.43713089e-09 - art_sys_129: 4.75764739e-09 - art_sys_130: -7.13712345e-09 - art_sys_131: 6.43287218e-09 - art_sys_132: -9.98740826e-08 - art_sys_133: 1.53280185e-09 - art_sys_134: 1.41758684e-09 - art_sys_135: 1.01606539e-07 - art_sys_136: 1.73023739e-08 - art_sys_137: 1.84112322e-07 - art_sys_138: -7.26284777e-09 - art_sys_139: -3.51873730e-08 - art_sys_140: -1.41947007e-15 - art_sys_141: -2.17742581e-08 - art_sys_142: -0.0 - art_sys_143: -9.65001619e-07 - art_sys_144: -2.35199766e-07 - art_sys_145: 3.60607682e-08 - art_sys_146: 2.52798966e-12 - art_sys_147: -1.16969899e-12 - art_sys_148: 5.11917914e-10 - art_sys_149: 7.86815909e-11 - art_sys_150: 1.48222528e-11 - art_sys_151: -4.48753153e-10 - art_sys_152: 1.99754839e-11 - art_sys_153: 2.62123161e-12 - art_sys_154: -3.67496349e-11 - art_sys_155: 7.99176805e-11 - art_sys_156: 5.11447862e-12 - art_sys_157: 5.12710018e-12 - art_sys_158: -0.0 - art_sys_159: 1.72323959e-08 - art_sys_160: 1.72323959e-08 - art_sys_161: -1.26466547e-09 - art_sys_162: 4.53851821e-22 - art_sys_163: 0.0 - art_sys_164: 2.69028846e-22 - art_sys_165: -2.19342448e-18 - art_sys_166: -1.37811314e-18 - art_sys_167: 1.33769318e-18 - art_sys_168: -3.89572712e-19 - art_sys_169: -1.63143888e-19 - art_sys_170: 4.14614342e-19 - art_sys_171: -4.83942425e-21 - art_sys_172: -1.62097083e-20 - art_sys_173: 4.98902112e-20 - art_sys_174: 3.30210092e-23 - art_sys_175: -4.31245978e-22 - art_sys_176: -1.86888145e-22 - art_sys_177: -5.14434203e-22 - art_sys_178: -1.69132812e-22 - art_sys_179: -1.77963065e-22 - art_sys_180: -3.49038589e-22 - art_sys_181: 5.32393623e-24 - art_sys_182: -6.15266406e-24 - art_sys_183: -1.74891349e-25 - art_sys_184: 4.18515063e-26 - art_sys_185: 1.65361464e-23 + art_sys_27: 1.08849222e-35 + art_sys_28: 7.59643514e-39 + art_sys_29: -1.40936446e-33 + art_sys_30: 8.46877797e-27 + art_sys_31: 6.90269771e-38 + art_sys_32: -1.62671600e-31 + art_sys_33: -2.02356929e-25 + art_sys_34: 2.12782174e-24 + art_sys_35: -8.20720055e-35 + art_sys_36: 7.45462257e-15 + art_sys_37: 4.34194130e-15 + art_sys_38: -1.96741037e-16 + art_sys_39: 7.10870433e-16 + art_sys_40: 6.26893206e-17 + art_sys_41: -5.95374385e-17 + art_sys_42: 4.47981499e-17 + art_sys_43: 4.05593732e-17 + art_sys_44: -3.57716535e-17 + art_sys_45: -1.20919779e-16 + art_sys_46: -1.58663416e-16 + art_sys_47: -2.58292189e-26 + art_sys_48: -1.44982540e-23 + art_sys_49: 1.61448795e-22 + art_sys_50: -6.00000808e-17 + art_sys_51: 8.90072135e-17 + art_sys_52: 1.56558521e-29 + art_sys_53: 7.54980488e-20 + art_sys_54: -8.48743929e-20 + art_sys_55: -1.22456733e-18 + art_sys_56: -5.41178843e-28 + art_sys_57: 2.00575738e-16 + art_sys_58: -7.35734741e-17 + art_sys_59: 1.73357174e-19 + art_sys_60: 2.40397830e-20 + art_sys_61: 7.73521365e-17 + art_sys_62: -2.05121292e-25 + art_sys_63: 8.36255553e-20 + art_sys_64: -2.91449665e-14 + art_sys_65: -5.56225055e-15 + art_sys_66: -7.08763430e-15 + art_sys_67: 4.04075826e-14 + art_sys_68: -1.14146220e-14 + art_sys_69: 1.17470791e-14 + art_sys_70: 1.49058930e-14 + art_sys_71: 1.05583595e-14 + art_sys_72: 9.53817593e-16 + art_sys_73: 6.06190098e-16 + art_sys_74: -1.00500150e-16 + art_sys_75: -1.16575886e-15 + art_sys_76: -3.66481368e-14 + art_sys_77: -7.19185809e-15 + art_sys_78: -1.65585167e-14 + art_sys_79: -5.99546209e-16 + art_sys_80: -1.56301193e-15 + art_sys_81: 5.33869867e-16 + art_sys_82: 2.47965749e-18 + art_sys_83: 1.34372547e-15 + art_sys_84: 5.35967227e-16 + art_sys_85: -5.05448889e-16 + art_sys_86: 4.40657626e-17 + art_sys_87: 4.43294755e-16 + art_sys_88: 1.84191195e-16 + art_sys_89: -5.05745036e-17 + art_sys_90: 1.95972716e-16 + art_sys_91: 1.33461267e-17 + art_sys_92: 3.43591948e-17 + art_sys_93: -1.47432433e-17 + art_sys_94: -1.78958346e-16 + art_sys_95: 3.86178260e-16 + art_sys_96: 2.43390675e-16 + art_sys_97: -1.10463305e-21 + art_sys_98: 3.79733326e-16 + art_sys_99: 6.78646128e-14 + art_sys_100: 3.28570776e-17 + art_sys_101: 3.67462892e-13 + art_sys_102: 6.52643506e-15 + art_sys_103: -1.94528277e-18 + art_sys_104: 1.51612122e-11 + art_sys_105: -1.99846715e-11 + art_sys_106: 2.18311267e-11 + art_sys_107: -1.76263804e-14 + art_sys_108: -3.24964075e-11 + art_sys_109: -1.86858632e-10 + art_sys_110: -8.90456812e-14 + art_sys_111: 8.78705997e-11 + art_sys_112: 2.73657215e-14 + art_sys_113: 3.10032744e-15 + art_sys_114: -5.31219442e-12 + art_sys_115: -3.18779534e-12 + art_sys_116: 1.46555689e-10 + art_sys_117: -1.14879152e-10 + art_sys_118: -1.41592976e-11 + art_sys_119: 1.90419091e-11 + art_sys_120: -3.58403263e-13 + art_sys_121: 6.69024695e-11 + art_sys_122: -3.55189920e-12 + art_sys_123: -6.98518578e-11 + art_sys_124: -2.37291565e-10 + art_sys_125: 1.76443374e-11 + art_sys_126: -8.39109922e-12 + art_sys_127: -1.76170408e-08 + art_sys_128: -7.86002612e-11 + art_sys_129: -2.94028273e-11 + art_sys_130: 3.27724075e-08 + art_sys_131: 3.42148161e-10 + art_sys_132: -2.94594055e-09 + art_sys_133: -1.40246474e-08 + art_sys_134: 1.56484220e-09 + art_sys_135: -6.74886358e-09 + art_sys_136: 5.82098982e-11 + art_sys_137: -4.67603363e-08 + art_sys_138: -1.85993961e-08 + art_sys_139: 1.80530567e-08 + art_sys_140: 1.23446369e-11 + art_sys_141: -1.95483516e-08 + art_sys_142: 8.40853377e-08 + art_sys_143: 8.57668832e-10 + art_sys_144: -9.86482695e-10 + art_sys_145: -1.69919698e-07 + art_sys_146: -1.54072160e-08 + art_sys_147: 3.21219609e-11 + art_sys_148: 7.44491032e-12 + art_sys_149: -2.60061258e-07 + art_sys_150: 1.15767863e-07 + art_sys_151: -2.78828716e-07 + art_sys_152: -2.38637829e-10 + art_sys_153: -2.16655030e-07 + art_sys_154: -5.46602679e-17 + art_sys_155: -1.47762377e-09 + art_sys_156: -0.0 + art_sys_157: 2.05623735e-09 + art_sys_158: 0.0 + art_sys_159: -2.73629387e-07 + art_sys_160: -2.56312756e-08 + art_sys_161: -9.74751169e-09 + art_sys_162: -9.74751169e-09 + art_sys_163: 1.23374025e-08 + art_sys_164: 1.23374025e-08 + art_sys_165: -1.04388306e-22 + art_sys_166: 3.23045053e-23 + art_sys_167: 0.0 + art_sys_168: -1.51620689e-18 + art_sys_169: -5.58662149e-19 + art_sys_170: 1.73550894e-19 + art_sys_171: -2.83002378e-19 + art_sys_172: 5.77043644e-21 + art_sys_173: 6.69532629e-21 + art_sys_174: 5.15501397e-21 + art_sys_175: 1.03271032e-21 + art_sys_176: 8.29414770e-22 + art_sys_177: 2.04588230e-22 + art_sys_178: 2.60651359e-22 + art_sys_179: 7.77776148e-22 + art_sys_180: -5.86150408e-21 + art_sys_181: -5.39341701e-22 + art_sys_182: -1.16531536e-22 + art_sys_183: 1.57574082e-24 + art_sys_184: -5.54023945e-25 + art_sys_185: -1.76226268e-25 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -17432,167 +17432,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: -6.55939534e-33 - art_sys_26: 1.67346324e-26 - art_sys_27: 8.69096569e-19 - art_sys_28: -2.12527877e-18 - art_sys_29: -2.30114783e+02 - art_sys_30: -4.54626915e+01 - art_sys_31: 1.71049626e+01 - art_sys_32: 2.60546159e+00 - art_sys_33: 4.22559009e-02 - art_sys_34: 1.48247833e-02 - art_sys_35: -8.59232927e-03 - art_sys_36: 8.12716696e-18 - art_sys_37: -4.21963157e-18 - art_sys_38: -1.64569667e-03 - art_sys_39: 6.00864937e-19 - art_sys_40: 1.62259459e-17 - art_sys_41: 3.29757358e-18 - art_sys_42: 4.98612036e-06 - art_sys_43: 4.37816296e-18 - art_sys_44: -2.00633842e-06 - art_sys_45: 2.01442235e-18 - art_sys_46: 2.43219571e-18 - art_sys_47: 8.26712093e-07 - art_sys_48: 4.66693972e-18 - art_sys_49: -1.74041445e-19 + art_sys_25: 1.05359498e-72 + art_sys_26: 5.51921205e-67 + art_sys_27: -3.46651558e-60 + art_sys_28: 2.07398145e-59 + art_sys_29: 7.96588525e-49 + art_sys_30: 6.47452834e-46 + art_sys_31: 3.02855763e-43 + art_sys_32: -3.61777529e-35 + art_sys_33: -1.08417389e-29 + art_sys_34: -1.09310478e-22 + art_sys_35: -7.66289654e-24 + art_sys_36: 2.30114783e+02 + art_sys_37: 4.54626915e+01 + art_sys_38: -1.71049626e+01 + art_sys_39: -2.60546159e+00 + art_sys_40: 4.22559009e-02 + art_sys_41: -1.48247833e-02 + art_sys_42: 8.59232927e-03 + art_sys_43: -1.64569667e-03 + art_sys_44: -4.98612036e-06 + art_sys_45: 2.00633842e-06 + art_sys_46: -8.26712093e-07 + art_sys_47: -1.33604046e-18 + art_sys_48: -1.50450689e-19 + art_sys_49: 2.63421930e-19 art_sys_50: -4.03452088e-08 - art_sys_51: -2.77149510e-08 - art_sys_52: -6.16545695e-20 - art_sys_53: 1.18268896e-18 - art_sys_54: -5.88375837e-19 - art_sys_55: -4.51431800e-20 - art_sys_56: 5.29039427e-20 - art_sys_57: -1.14890378e-15 - art_sys_58: -1.17233862e-16 - art_sys_59: 1.33771827e-16 - art_sys_60: -5.44845890e-09 - art_sys_61: -7.23109624e-18 - art_sys_62: -2.62124732e-19 - art_sys_63: -1.85059636e-19 - art_sys_64: 7.53564499e-20 - art_sys_65: -1.73699803e-20 - art_sys_66: 5.09129213e-10 - art_sys_67: 2.62107135e-21 - art_sys_68: 3.83428933e-21 - art_sys_69: 2.21828368e-10 - art_sys_70: 1.82922006e-19 - art_sys_71: -7.40926014e-19 - art_sys_72: 4.41288731e-20 - art_sys_73: -4.00235685e-11 - art_sys_74: 3.12285700e-19 - art_sys_75: -4.15325014e-20 - art_sys_76: -3.56057208e-23 - art_sys_77: -4.22855130e-24 - art_sys_78: -5.62301371e-24 - art_sys_79: 1.01336323e-19 - art_sys_80: 1.75563514e-19 - art_sys_81: -5.59864419e-24 - art_sys_82: -1.29802330e-24 - art_sys_83: -3.88036116e-25 - art_sys_84: 1.17805955e-20 - art_sys_85: -1.83216344e-25 - art_sys_86: -6.93233039e-26 - art_sys_87: -1.07909153e-20 - art_sys_88: 1.60257488e-21 - art_sys_89: -1.22904869e-22 - art_sys_90: -3.88984974e-19 - art_sys_91: 1.02330311e-19 - art_sys_92: -4.24577422e-13 - art_sys_93: 2.71636966e-20 - art_sys_94: -1.18081160e-13 - art_sys_95: 9.73776249e-21 - art_sys_96: -7.84343689e-22 - art_sys_97: 8.91943963e-14 - art_sys_98: -3.85116782e-21 - art_sys_99: 2.49534588e-20 - art_sys_100: 4.06993670e-14 - art_sys_101: -2.54050798e-20 - art_sys_102: 3.84300554e-22 - art_sys_103: -1.96150863e-14 - art_sys_104: 5.27267591e-20 - art_sys_105: 4.26907964e-22 - art_sys_106: 8.27188015e-21 - art_sys_107: 8.96268865e-22 - art_sys_108: -8.63555704e-15 - art_sys_109: -8.13130395e-20 - art_sys_110: -2.05028534e-22 - art_sys_111: -2.77662981e-19 - art_sys_112: 3.26761125e-15 - art_sys_113: -1.33910313e-23 - art_sys_114: 2.97845360e-19 - art_sys_115: 1.19681090e-15 - art_sys_116: 2.68941401e-20 - art_sys_117: -3.72715981e-23 - art_sys_118: 3.05270740e-19 - art_sys_119: 4.28359902e-16 - art_sys_120: -5.71746582e-20 - art_sys_121: 1.03248257e-20 - art_sys_122: 2.67356935e-20 - art_sys_123: 1.41802623e-16 - art_sys_124: 1.78756946e-21 - art_sys_125: -1.00121936e-20 - art_sys_126: 3.14237217e-20 - art_sys_127: 8.38131099e-21 - art_sys_128: 5.02286080e-17 - art_sys_129: -1.63117575e-17 - art_sys_130: -5.30321233e-18 - art_sys_131: -1.62664969e-18 - art_sys_132: -1.02834429e-20 - art_sys_133: -4.04173270e-21 - art_sys_134: 4.76710342e-19 - art_sys_135: 1.20659460e-20 - art_sys_136: 1.58887238e-19 - art_sys_137: 2.51475325e-21 - art_sys_138: -1.90536071e-20 - art_sys_139: 8.55450785e-22 - art_sys_140: -2.00296241e-23 - art_sys_141: -4.03620925e-21 - art_sys_142: -0.0 - art_sys_143: 4.66379870e-22 - art_sys_144: 2.25508211e-21 - art_sys_145: 2.96331763e-21 - art_sys_146: -2.18156468e-23 - art_sys_147: 3.79724092e-23 - art_sys_148: -7.42102880e-23 - art_sys_149: 5.23662902e-23 - art_sys_150: -7.20244098e-25 - art_sys_151: 1.85726387e-24 - art_sys_152: -1.83882909e-24 - art_sys_153: -8.04153070e-25 - art_sys_154: -1.12888243e-24 - art_sys_155: 2.49802493e-24 - art_sys_156: 1.03634040e-23 - art_sys_157: 6.13362846e-24 - art_sys_158: -0.0 - art_sys_159: -1.23368251e-22 - art_sys_160: -1.23368251e-22 - art_sys_161: -1.04317524e-23 - art_sys_162: 3.85854249e-36 - art_sys_163: 0.0 - art_sys_164: 2.35218063e-36 - art_sys_165: -7.14439114e-29 - art_sys_166: 8.88910785e-30 - art_sys_167: 2.72605347e-30 - art_sys_168: 2.69137789e-30 - art_sys_169: -1.71873836e-29 - art_sys_170: 7.23211121e-29 - art_sys_171: -1.02941048e-27 - art_sys_172: 1.01237985e-27 - art_sys_173: 2.28094956e-28 - art_sys_174: 3.55517701e-36 - art_sys_175: -1.71354259e-29 - art_sys_176: 1.97529693e-29 - art_sys_177: -3.82300642e-30 - art_sys_178: -3.81474618e-31 - art_sys_179: 6.12807913e-32 - art_sys_180: 1.94809947e-33 - art_sys_181: -1.84968434e-33 - art_sys_182: -4.49720231e-33 - art_sys_183: -4.29977355e-36 - art_sys_184: -8.84349945e-38 - art_sys_185: 3.25308331e-37 + art_sys_51: 2.77149510e-08 + art_sys_52: -8.81518545e-19 + art_sys_53: 2.53782791e-18 + art_sys_54: 5.12569950e-19 + art_sys_55: -5.49797976e-20 + art_sys_56: 1.86813558e-19 + art_sys_57: 5.44845891e-09 + art_sys_58: -5.09129213e-10 + art_sys_59: 4.95566353e-19 + art_sys_60: -1.81851778e-20 + art_sys_61: 2.21828369e-10 + art_sys_62: -7.54602682e-20 + art_sys_63: 5.02859285e-20 + art_sys_64: -3.88620682e-15 + art_sys_65: -2.02718897e-16 + art_sys_66: -1.71713476e-16 + art_sys_67: 1.17421089e-17 + art_sys_68: -7.55637540e-19 + art_sys_69: 3.41522725e-19 + art_sys_70: 8.50179843e-20 + art_sys_71: 3.04970142e-21 + art_sys_72: -7.90365050e-22 + art_sys_73: 1.75798731e-21 + art_sys_74: -4.00235685e-11 + art_sys_75: -4.29920162e-21 + art_sys_76: 4.54483192e-23 + art_sys_77: -1.30858460e-24 + art_sys_78: -2.50263163e-24 + art_sys_79: 5.45053996e-20 + art_sys_80: 6.21091363e-24 + art_sys_81: 4.61391164e-20 + art_sys_82: -3.22617635e-19 + art_sys_83: -5.33934355e-25 + art_sys_84: -5.04779510e-25 + art_sys_85: 1.02717724e-25 + art_sys_86: -9.06591424e-26 + art_sys_87: 9.39604738e-21 + art_sys_88: 1.49651392e-21 + art_sys_89: 3.70773169e-26 + art_sys_90: 1.76999579e-22 + art_sys_91: 6.21349877e-20 + art_sys_92: -3.13423131e-26 + art_sys_93: 4.09149971e-28 + art_sys_94: 9.26375510e-22 + art_sys_95: -4.24577153e-13 + art_sys_96: -9.13532287e-20 + art_sys_97: 5.71343798e-21 + art_sys_98: 1.18081122e-13 + art_sys_99: 1.54061484e-19 + art_sys_100: -8.91947133e-14 + art_sys_101: -1.41049432e-20 + art_sys_102: 4.06995747e-14 + art_sys_103: -8.21960834e-20 + art_sys_104: -2.09389520e-19 + art_sys_105: 1.34427691e-22 + art_sys_106: 5.55578374e-19 + art_sys_107: -1.96151442e-14 + art_sys_108: 7.51862531e-24 + art_sys_109: 4.52221717e-22 + art_sys_110: 8.63565278e-15 + art_sys_111: 6.36189494e-20 + art_sys_112: -1.78278262e-19 + art_sys_113: 2.48684673e-20 + art_sys_114: 2.25001807e-22 + art_sys_115: 4.05165215e-21 + art_sys_116: 3.26765530e-15 + art_sys_117: 6.91727603e-22 + art_sys_118: -8.66941231e-21 + art_sys_119: -1.19677819e-15 + art_sys_120: -2.47726561e-20 + art_sys_121: -1.33252645e-22 + art_sys_122: -3.65422412e-20 + art_sys_123: -4.28335001e-16 + art_sys_124: 1.34716829e-20 + art_sys_125: 1.11971731e-22 + art_sys_126: 5.54321037e-21 + art_sys_127: 1.41819214e-16 + art_sys_128: -2.38355375e-20 + art_sys_129: 4.11886697e-23 + art_sys_130: -5.01501071e-17 + art_sys_131: -6.68140525e-23 + art_sys_132: 7.79727505e-20 + art_sys_133: -1.62347410e-17 + art_sys_134: -3.46857388e-20 + art_sys_135: -6.64614880e-21 + art_sys_136: -8.79580766e-24 + art_sys_137: -5.33440644e-18 + art_sys_138: -5.03600107e-21 + art_sys_139: -1.61010653e-18 + art_sys_140: -1.68057774e-24 + art_sys_141: -1.08479122e-20 + art_sys_142: 5.17670644e-21 + art_sys_143: -4.93559603e-19 + art_sys_144: 2.32067572e-23 + art_sys_145: 4.25948355e-21 + art_sys_146: -1.65763924e-19 + art_sys_147: 3.89601732e-24 + art_sys_148: 3.48845916e-25 + art_sys_149: -1.35956612e-21 + art_sys_150: -2.09029513e-20 + art_sys_151: 8.47788819e-22 + art_sys_152: -1.02665672e-24 + art_sys_153: 2.37511555e-21 + art_sys_154: -2.77785571e-21 + art_sys_155: 1.01021756e-24 + art_sys_156: 0.0 + art_sys_157: 1.39615792e-21 + art_sys_158: 0.0 + art_sys_159: 2.17950890e-22 + art_sys_160: 4.78493269e-23 + art_sys_161: -1.01221912e-23 + art_sys_162: -1.01221912e-23 + art_sys_163: -1.71805583e-23 + art_sys_164: -1.71805583e-23 + art_sys_165: 1.84366450e-37 + art_sys_166: -6.06657962e-38 + art_sys_167: -0.0 + art_sys_168: -4.17163725e-31 + art_sys_169: -5.29282584e-29 + art_sys_170: 1.63169728e-28 + art_sys_171: 1.08325905e-27 + art_sys_172: 2.88732298e-29 + art_sys_173: 1.00552761e-29 + art_sys_174: 1.22611705e-29 + art_sys_175: -3.34477533e-30 + art_sys_176: 4.07265405e-31 + art_sys_177: -1.70536003e-33 + art_sys_178: -7.96782301e-34 + art_sys_179: -3.14389981e-37 + art_sys_180: 5.01427954e-36 + art_sys_181: -2.84807722e-32 + art_sys_182: 8.01459854e-33 + art_sys_183: 6.20834207e-35 + art_sys_184: 2.08414303e-36 + art_sys_185: -6.88816369e-39 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -17723,167 +17723,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: -3.33095259e-33 - art_sys_26: 8.49808012e-27 - art_sys_27: 4.41339379e-19 - art_sys_28: -1.07924625e-18 - art_sys_29: -1.16855503e+02 - art_sys_30: 8.38645307e+01 - art_sys_31: -3.03338079e+01 - art_sys_32: -7.69466219e+00 - art_sys_33: -1.43335780e-01 - art_sys_34: -5.09411189e-02 - art_sys_35: 3.29568334e-02 - art_sys_36: 1.94693619e-17 - art_sys_37: 6.30880074e-18 - art_sys_38: 6.83247670e-03 - art_sys_39: -3.67397131e-18 - art_sys_40: -8.70996973e-18 - art_sys_41: -1.74401877e-17 - art_sys_42: -2.94756994e-05 - art_sys_43: 1.67375303e-18 - art_sys_44: 1.27260784e-05 - art_sys_45: -1.06095870e-18 - art_sys_46: 9.82945844e-20 - art_sys_47: -4.87358331e-06 - art_sys_48: 1.44453615e-18 - art_sys_49: 2.16703891e-19 + art_sys_25: 5.34939307e-73 + art_sys_26: 2.80225659e-67 + art_sys_27: -1.76004582e-60 + art_sys_28: 1.05301773e-59 + art_sys_29: 4.04450023e-49 + art_sys_30: 3.28729709e-46 + art_sys_31: 1.53768246e-43 + art_sys_32: -1.83684456e-35 + art_sys_33: -5.50465066e-30 + art_sys_34: -5.54999527e-23 + art_sys_35: -3.89066449e-24 + art_sys_36: 1.16855503e+02 + art_sys_37: -8.38645307e+01 + art_sys_38: 3.03338079e+01 + art_sys_39: 7.69466219e+00 + art_sys_40: -1.43335780e-01 + art_sys_41: 5.09411189e-02 + art_sys_42: -3.29568334e-02 + art_sys_43: 6.83247670e-03 + art_sys_44: 2.94756994e-05 + art_sys_45: -1.27260784e-05 + art_sys_46: 4.87358331e-06 + art_sys_47: -3.66065105e-19 + art_sys_48: -4.40917735e-19 + art_sys_49: -1.94505101e-18 art_sys_50: 3.79938190e-07 - art_sys_51: 1.81621939e-07 - art_sys_52: -5.87937954e-20 - art_sys_53: 6.74389382e-19 - art_sys_54: 8.85946704e-20 - art_sys_55: 2.12594908e-19 - art_sys_56: -4.81603796e-20 - art_sys_57: 3.50764827e-16 - art_sys_58: 2.09576258e-16 - art_sys_59: -2.94213351e-17 - art_sys_60: 4.19193226e-08 - art_sys_61: 1.21842950e-17 - art_sys_62: 2.16937657e-19 - art_sys_63: 6.96366871e-19 - art_sys_64: -5.62481908e-20 - art_sys_65: 1.01180551e-20 - art_sys_66: -3.50278979e-09 - art_sys_67: -2.95557771e-21 - art_sys_68: -4.67950176e-21 - art_sys_69: -1.54649960e-09 - art_sys_70: 9.07222035e-20 - art_sys_71: 9.84912245e-20 - art_sys_72: 1.25050587e-19 - art_sys_73: 2.82167443e-10 - art_sys_74: -2.19465300e-18 - art_sys_75: -2.04478577e-20 - art_sys_76: 1.43835864e-22 - art_sys_77: 2.41935629e-23 - art_sys_78: 1.90734907e-23 - art_sys_79: -1.04555061e-19 - art_sys_80: -7.62094195e-19 - art_sys_81: 4.64766632e-24 - art_sys_82: 4.34487653e-24 - art_sys_83: 2.35812723e-24 - art_sys_84: 4.76346444e-20 - art_sys_85: 9.51398860e-25 - art_sys_86: 1.15210225e-25 - art_sys_87: 1.13261410e-20 - art_sys_88: -3.60187700e-21 - art_sys_89: 2.73700823e-21 - art_sys_90: 2.36771693e-18 - art_sys_91: 1.51680754e-19 - art_sys_92: 1.84322054e-12 - art_sys_93: -4.02334349e-19 - art_sys_94: 7.66141734e-13 - art_sys_95: 4.91338896e-20 - art_sys_96: -7.60957076e-22 - art_sys_97: -4.80616226e-13 - art_sys_98: 2.25603475e-20 - art_sys_99: -5.04475964e-20 - art_sys_100: -2.30565071e-13 - art_sys_101: 4.18605422e-20 - art_sys_102: -6.77017756e-22 - art_sys_103: 1.14059194e-13 - art_sys_104: -1.36502088e-19 - art_sys_105: -2.02731931e-21 - art_sys_106: -4.43384219e-20 - art_sys_107: -1.71088203e-20 - art_sys_108: 5.02346787e-14 - art_sys_109: 4.34623587e-19 - art_sys_110: 1.28446636e-21 - art_sys_111: 1.58143852e-18 - art_sys_112: -1.93973189e-14 - art_sys_113: 2.66753378e-22 - art_sys_114: -1.61431322e-18 - art_sys_115: -7.12740389e-15 - art_sys_116: -1.53566909e-19 - art_sys_117: 2.19355733e-22 - art_sys_118: -1.65890630e-18 - art_sys_119: -2.57370059e-15 - art_sys_120: 2.98421191e-19 - art_sys_121: -5.98497042e-20 - art_sys_122: -1.54516105e-19 - art_sys_123: -8.56299390e-16 - art_sys_124: -3.86333006e-21 - art_sys_125: 3.48251396e-20 - art_sys_126: -1.86812378e-19 - art_sys_127: -4.11855530e-20 - art_sys_128: -3.04202873e-16 - art_sys_129: 9.91371468e-17 - art_sys_130: 3.22723792e-17 - art_sys_131: 9.91456402e-18 - art_sys_132: 6.04151213e-20 - art_sys_133: 2.45221823e-20 - art_sys_134: -2.90785105e-18 - art_sys_135: -6.67368421e-20 - art_sys_136: -9.69555010e-19 - art_sys_137: -1.73800711e-20 - art_sys_138: 1.16306632e-19 - art_sys_139: -5.26217610e-21 - art_sys_140: 1.98656591e-22 - art_sys_141: 2.45698230e-20 - art_sys_142: 0.0 - art_sys_143: -3.46968514e-21 - art_sys_144: -1.39075443e-20 - art_sys_145: -1.80071276e-20 - art_sys_146: 1.02828650e-22 - art_sys_147: -2.96347332e-22 - art_sys_148: 3.76099975e-22 - art_sys_149: -1.19081808e-22 - art_sys_150: 9.32481990e-24 - art_sys_151: 7.72726389e-25 - art_sys_152: 7.21819237e-24 - art_sys_153: 6.65637902e-25 - art_sys_154: 6.76543426e-24 - art_sys_155: -1.51299014e-23 - art_sys_156: -6.31690790e-23 - art_sys_157: -3.73641848e-23 - art_sys_158: 0.0 - art_sys_159: 7.56432880e-22 - art_sys_160: 7.56432880e-22 - art_sys_161: 6.23762515e-23 - art_sys_162: -2.30949147e-35 - art_sys_163: -0.0 - art_sys_164: -1.40884182e-35 - art_sys_165: 2.83584029e-29 - art_sys_166: -1.97229306e-29 - art_sys_167: 6.05465622e-30 - art_sys_168: 9.44910678e-30 - art_sys_169: -2.67266495e-29 - art_sys_170: -2.22920562e-29 - art_sys_171: -9.94615059e-29 - art_sys_172: 1.34082566e-27 - art_sys_173: -5.29551244e-28 - art_sys_174: -2.16194421e-35 - art_sys_175: -2.90347397e-30 - art_sys_176: -2.91126907e-29 - art_sys_177: 5.10391348e-30 - art_sys_178: 4.93720919e-31 - art_sys_179: -1.27415069e-31 - art_sys_180: -3.75139005e-32 - art_sys_181: 1.48610097e-32 - art_sys_182: -6.07962813e-32 - art_sys_183: -3.90827333e-34 - art_sys_184: 1.67390775e-36 - art_sys_185: -1.96432877e-36 + art_sys_51: -1.81621939e-07 + art_sys_52: 1.76433521e-19 + art_sys_53: 1.95463449e-18 + art_sys_54: -8.76301533e-21 + art_sys_55: 7.69637038e-19 + art_sys_56: 4.70532785e-19 + art_sys_57: -4.19193226e-08 + art_sys_58: 3.50278979e-09 + art_sys_59: 7.15703480e-20 + art_sys_60: -3.27031886e-19 + art_sys_61: -1.54649961e-09 + art_sys_62: 2.55079523e-20 + art_sys_63: 8.66188335e-20 + art_sys_64: 1.35858656e-16 + art_sys_65: 1.28215908e-15 + art_sys_66: -2.67215289e-16 + art_sys_67: 1.43316043e-18 + art_sys_68: -9.47101917e-19 + art_sys_69: -7.80836614e-20 + art_sys_70: 1.18710318e-20 + art_sys_71: -1.61199359e-21 + art_sys_72: 3.10706976e-21 + art_sys_73: -4.61412359e-21 + art_sys_74: 2.82167443e-10 + art_sys_75: -9.58052256e-21 + art_sys_76: -2.03910665e-22 + art_sys_77: 1.95861463e-23 + art_sys_78: -1.53150204e-23 + art_sys_79: 5.15099386e-20 + art_sys_80: -2.12163488e-23 + art_sys_81: 3.35250469e-20 + art_sys_82: -6.62272801e-20 + art_sys_83: 2.81151864e-24 + art_sys_84: 2.22359890e-24 + art_sys_85: -3.21868294e-25 + art_sys_86: 3.68101709e-25 + art_sys_87: -6.63874206e-20 + art_sys_88: -4.07214199e-21 + art_sys_89: -1.77287872e-25 + art_sys_90: -1.25256430e-22 + art_sys_91: -3.68993711e-20 + art_sys_92: 1.67547413e-25 + art_sys_93: -1.69283420e-26 + art_sys_94: -4.52468305e-21 + art_sys_95: 1.84321892e-12 + art_sys_96: 6.88242222e-20 + art_sys_97: -4.16810092e-20 + art_sys_98: -7.66141587e-13 + art_sys_99: -4.03396612e-20 + art_sys_100: 4.80617963e-13 + art_sys_101: 4.92279664e-19 + art_sys_102: -2.30566229e-13 + art_sys_103: 3.93544929e-19 + art_sys_104: 8.12116726e-19 + art_sys_105: -3.84746316e-22 + art_sys_106: -3.20100368e-18 + art_sys_107: 1.14059531e-13 + art_sys_108: -5.46692510e-22 + art_sys_109: -2.68022263e-21 + art_sys_110: -5.02352321e-14 + art_sys_111: -1.05484603e-19 + art_sys_112: 1.03021015e-18 + art_sys_113: -1.13066928e-19 + art_sys_114: -1.30905062e-21 + art_sys_115: 5.19951103e-21 + art_sys_116: -1.93975819e-14 + art_sys_117: -4.90957651e-21 + art_sys_118: 1.30071059e-19 + art_sys_119: 7.12721028e-15 + art_sys_120: 1.44772854e-19 + art_sys_121: 7.45370603e-22 + art_sys_122: 1.49542905e-19 + art_sys_123: 2.57355460e-15 + art_sys_124: -6.24614523e-20 + art_sys_125: -6.84580756e-22 + art_sys_126: -3.49665649e-20 + art_sys_127: -8.56399980e-16 + art_sys_128: 1.18865403e-19 + art_sys_129: 1.30902609e-23 + art_sys_130: 3.03729046e-16 + art_sys_131: 4.40614440e-22 + art_sys_132: -4.52781163e-19 + art_sys_133: 9.86714933e-17 + art_sys_134: 2.04886375e-19 + art_sys_135: 3.20383471e-20 + art_sys_136: 4.00221703e-23 + art_sys_137: 3.24614267e-17 + art_sys_138: 3.30642926e-20 + art_sys_139: 9.81442466e-18 + art_sys_140: 9.76898301e-24 + art_sys_141: 6.61282853e-20 + art_sys_142: -3.15271785e-20 + art_sys_143: 3.00990541e-18 + art_sys_144: -1.39309594e-22 + art_sys_145: -2.52857090e-20 + art_sys_146: 1.01143776e-18 + art_sys_147: -2.45441095e-23 + art_sys_148: -2.11192871e-24 + art_sys_149: 8.19276411e-21 + art_sys_150: 1.27595964e-19 + art_sys_151: -4.98371993e-21 + art_sys_152: 6.42637968e-24 + art_sys_153: -1.43815481e-20 + art_sys_154: 1.64885806e-20 + art_sys_155: -5.50040472e-24 + art_sys_156: -0.0 + art_sys_157: -7.95526265e-21 + art_sys_158: -0.0 + art_sys_159: -1.18605816e-21 + art_sys_160: -2.65109822e-22 + art_sys_161: 6.65317529e-23 + art_sys_162: 6.65317529e-23 + art_sys_163: 9.85005788e-23 + art_sys_164: 9.85005788e-23 + art_sys_165: -1.07087409e-36 + art_sys_166: 3.53387753e-37 + art_sys_167: 0.0 + art_sys_168: 2.54237418e-29 + art_sys_169: -9.05189421e-30 + art_sys_170: -4.40323915e-29 + art_sys_171: -9.16373504e-29 + art_sys_172: 1.45612248e-28 + art_sys_173: 1.63368967e-29 + art_sys_174: -3.44760018e-29 + art_sys_175: 4.11963158e-30 + art_sys_176: -5.28890847e-31 + art_sys_177: 8.32977700e-33 + art_sys_178: -1.43470140e-33 + art_sys_179: 1.57939373e-36 + art_sys_180: -2.75481108e-35 + art_sys_181: 4.26977152e-32 + art_sys_182: -4.78441495e-32 + art_sys_183: 2.65268401e-33 + art_sys_184: -8.25737273e-36 + art_sys_185: -3.09874006e-38 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -18014,167 +18014,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: -3.16029015e-34 - art_sys_26: 8.06267823e-28 - art_sys_27: 4.18727213e-20 - art_sys_28: -1.02395072e-19 - art_sys_29: -1.10868380e+01 - art_sys_30: 8.34872430e+01 - art_sys_31: 2.81430208e+01 - art_sys_32: 1.18005223e+01 - art_sys_33: 4.78281847e-01 - art_sys_34: 1.31187661e-01 - art_sys_35: -1.01370950e-01 - art_sys_36: 9.92196824e-18 - art_sys_37: -5.81869546e-19 - art_sys_38: -2.22256904e-02 - art_sys_39: 5.47705807e-18 - art_sys_40: -1.13590161e-17 - art_sys_41: 3.03396699e-18 - art_sys_42: 8.54896383e-05 - art_sys_43: 7.38260006e-19 - art_sys_44: -4.60926146e-05 - art_sys_45: 2.94009006e-18 - art_sys_46: -1.57436946e-18 - art_sys_47: 1.68766902e-05 - art_sys_48: -4.74121191e-19 - art_sys_49: -3.37601242e-19 + art_sys_25: 5.06889612e-74 + art_sys_26: 2.65531947e-68 + art_sys_27: -1.66775732e-61 + art_sys_28: 9.97802452e-61 + art_sys_29: 3.83242572e-50 + art_sys_30: 3.11492673e-47 + art_sys_31: 1.45705365e-44 + art_sys_32: -1.74052910e-36 + art_sys_33: -5.21601275e-31 + art_sys_34: -5.25897970e-24 + art_sys_35: -3.68665640e-25 + art_sys_36: 1.10868380e+01 + art_sys_37: -8.34872430e+01 + art_sys_38: -2.81430208e+01 + art_sys_39: -1.18005223e+01 + art_sys_40: 4.78281847e-01 + art_sys_41: -1.31187661e-01 + art_sys_42: 1.01370950e-01 + art_sys_43: -2.22256904e-02 + art_sys_44: -8.54896383e-05 + art_sys_45: 4.60926146e-05 + art_sys_46: -1.68766902e-05 + art_sys_47: -8.74006583e-19 + art_sys_48: -5.27779951e-19 + art_sys_49: 9.35762689e-19 art_sys_50: -1.42846036e-06 - art_sys_51: -6.81980901e-07 - art_sys_52: 5.15950552e-19 - art_sys_53: 7.69163307e-19 - art_sys_54: -3.92546810e-19 - art_sys_55: 1.32639608e-19 - art_sys_56: -1.37180283e-19 - art_sys_57: -7.37977100e-16 - art_sys_58: 2.00382196e-16 - art_sys_59: 2.75982274e-17 - art_sys_60: -1.58174324e-07 - art_sys_61: 1.40760221e-17 - art_sys_62: 2.13279659e-18 - art_sys_63: 2.52591714e-19 - art_sys_64: -8.21933143e-20 - art_sys_65: 2.42020320e-20 - art_sys_66: 1.42506519e-08 - art_sys_67: 5.66032047e-22 - art_sys_68: 4.91451456e-21 - art_sys_69: 5.97313356e-09 - art_sys_70: -9.57152995e-21 - art_sys_71: 7.32306991e-19 - art_sys_72: 3.38231852e-20 - art_sys_73: -1.12200824e-09 - art_sys_74: 8.20024312e-18 - art_sys_75: 1.87064962e-21 - art_sys_76: -5.47370643e-22 - art_sys_77: -8.93264880e-23 - art_sys_78: -6.46434924e-23 - art_sys_79: 6.32741779e-20 - art_sys_80: 3.14746898e-18 - art_sys_81: -2.20968669e-24 - art_sys_82: -1.66017002e-23 - art_sys_83: -8.74814317e-24 - art_sys_84: 4.14822609e-20 - art_sys_85: -3.36098187e-24 - art_sys_86: -5.23700190e-25 - art_sys_87: 8.34248810e-21 - art_sys_88: 1.07996967e-20 - art_sys_89: -1.12124744e-20 - art_sys_90: -9.19386510e-18 - art_sys_91: -5.56260543e-19 - art_sys_92: -6.98563939e-12 - art_sys_93: 1.37473003e-18 - art_sys_94: -2.75772779e-12 - art_sys_95: -6.65775524e-20 - art_sys_96: -3.64905785e-21 - art_sys_97: 1.84614077e-12 - art_sys_98: 1.18486136e-20 - art_sys_99: 3.15355686e-20 - art_sys_100: 8.62033758e-13 - art_sys_101: -1.23191031e-19 - art_sys_102: 1.54448217e-21 - art_sys_103: -4.33100091e-13 - art_sys_104: 2.99015896e-19 - art_sys_105: 7.23676439e-21 - art_sys_106: 1.86620961e-19 - art_sys_107: 1.45599214e-19 - art_sys_108: -1.90418687e-13 - art_sys_109: -1.65098972e-18 - art_sys_110: -4.82625787e-21 - art_sys_111: -6.35910484e-18 - art_sys_112: 7.37528840e-14 - art_sys_113: -1.08177987e-21 - art_sys_114: 6.20698196e-18 - art_sys_115: 2.71721545e-14 - art_sys_116: 5.83854386e-19 - art_sys_117: -7.25473769e-22 - art_sys_118: 6.40700227e-18 - art_sys_119: 9.81626592e-15 - art_sys_120: -1.12396521e-18 - art_sys_121: 2.25852172e-19 - art_sys_122: 5.88480068e-19 - art_sys_123: 3.27259547e-15 - art_sys_124: 1.47007395e-20 - art_sys_125: -8.58000011e-20 - art_sys_126: 7.11435210e-19 - art_sys_127: 1.46209223e-19 - art_sys_128: 1.16297385e-15 - art_sys_129: -3.79290209e-16 - art_sys_130: -1.23526718e-16 - art_sys_131: -3.79562901e-17 - art_sys_132: -2.33309702e-19 - art_sys_133: -9.36907813e-20 - art_sys_134: 1.11354939e-17 - art_sys_135: 2.44349790e-19 - art_sys_136: 3.71297427e-18 - art_sys_137: 7.07973155e-20 - art_sys_138: -4.45392101e-19 - art_sys_139: 2.02409956e-20 - art_sys_140: -8.06740576e-22 - art_sys_141: -9.39651351e-20 - art_sys_142: -0.0 - art_sys_143: 1.43276811e-20 - art_sys_144: 5.35897895e-20 - art_sys_145: 6.87697370e-20 - art_sys_146: -3.88252573e-22 - art_sys_147: 1.14309212e-21 - art_sys_148: -1.42913392e-21 - art_sys_149: 3.73544436e-22 - art_sys_150: -3.32596652e-23 - art_sys_151: -5.50552689e-25 - art_sys_152: -1.65469186e-23 - art_sys_153: -8.10310881e-25 - art_sys_154: -2.57546398e-23 - art_sys_155: 5.76855695e-23 - art_sys_156: 2.41804810e-22 - art_sys_157: 1.42937386e-22 - art_sys_158: -0.0 - art_sys_159: -2.89626488e-21 - art_sys_160: -2.89626488e-21 - art_sys_161: -2.36962181e-22 - art_sys_162: 8.77868788e-35 - art_sys_163: 0.0 - art_sys_164: 5.35727535e-35 - art_sys_165: -2.69905791e-29 - art_sys_166: -2.35949967e-30 - art_sys_167: 1.10901596e-31 - art_sys_168: 1.37987907e-29 - art_sys_169: -9.96642640e-31 - art_sys_170: -1.07815948e-28 - art_sys_171: -2.77882781e-28 - art_sys_172: 1.67501444e-27 - art_sys_173: -4.21605743e-28 - art_sys_174: 8.26181852e-35 - art_sys_175: 5.47091089e-30 - art_sys_176: 5.44608186e-29 - art_sys_177: -7.71339555e-30 - art_sys_178: -8.67479280e-31 - art_sys_179: -3.68214853e-31 - art_sys_180: 2.15443638e-33 - art_sys_181: -3.38875331e-32 - art_sys_182: -1.85781031e-32 - art_sys_183: 3.64428204e-34 - art_sys_184: -5.14535824e-37 - art_sys_185: 7.49670248e-36 + art_sys_51: 6.81980901e-07 + art_sys_52: 4.77510395e-19 + art_sys_53: 8.14347020e-19 + art_sys_54: 8.61923985e-19 + art_sys_55: -7.40464079e-19 + art_sys_56: -7.12739342e-20 + art_sys_57: 1.58174324e-07 + art_sys_58: -1.42506519e-08 + art_sys_59: -2.56585977e-19 + art_sys_60: -1.19790195e-19 + art_sys_61: 5.97313361e-09 + art_sys_62: 2.40685362e-19 + art_sys_63: 2.57724036e-19 + art_sys_64: -5.66928331e-16 + art_sys_65: -4.75197540e-16 + art_sys_66: 3.92094460e-17 + art_sys_67: -4.27039944e-17 + art_sys_68: 3.44653821e-19 + art_sys_69: -2.21850440e-20 + art_sys_70: 7.45566471e-20 + art_sys_71: -2.56608986e-20 + art_sys_72: -7.42162828e-21 + art_sys_73: 9.97271368e-21 + art_sys_74: -1.12200824e-09 + art_sys_75: -1.80799404e-21 + art_sys_76: 7.72268540e-22 + art_sys_77: -5.84386731e-23 + art_sys_78: 4.29600217e-23 + art_sys_79: -1.01384571e-19 + art_sys_80: 8.14081359e-23 + art_sys_81: -2.88120854e-19 + art_sys_82: -1.60950770e-19 + art_sys_83: -1.07631376e-23 + art_sys_84: -8.60376541e-24 + art_sys_85: 1.15063344e-24 + art_sys_86: -1.41909543e-24 + art_sys_87: 2.44352590e-19 + art_sys_88: 9.51202769e-21 + art_sys_89: 6.55077177e-25 + art_sys_90: -1.36743083e-21 + art_sys_91: -4.85171831e-20 + art_sys_92: -6.14591817e-25 + art_sys_93: 5.45378707e-26 + art_sys_94: 1.51149791e-20 + art_sys_95: -6.98563354e-12 + art_sys_96: -8.31227953e-20 + art_sys_97: 4.11414038e-20 + art_sys_98: 2.75772720e-12 + art_sys_99: 1.12638442e-19 + art_sys_100: -1.84614742e-12 + art_sys_101: -1.88434743e-18 + art_sys_102: 8.62038053e-13 + art_sys_103: -1.40989680e-18 + art_sys_104: -2.69462614e-18 + art_sys_105: 1.55481026e-21 + art_sys_106: 1.17167750e-17 + art_sys_107: -4.33101389e-13 + art_sys_108: 2.58094040e-21 + art_sys_109: 1.01399412e-20 + art_sys_110: 1.90420783e-13 + art_sys_111: 3.22473835e-19 + art_sys_112: -3.90995107e-18 + art_sys_113: 3.86105446e-19 + art_sys_114: 5.03296755e-21 + art_sys_115: -5.43501517e-20 + art_sys_116: 7.37538899e-14 + art_sys_117: 1.79777777e-20 + art_sys_118: -6.38489002e-19 + art_sys_119: -2.71714089e-14 + art_sys_120: -5.46643367e-19 + art_sys_121: -2.59597337e-21 + art_sys_122: -4.84421094e-19 + art_sys_123: -9.81570716e-15 + art_sys_124: 2.28987088e-19 + art_sys_125: 2.61853165e-21 + art_sys_126: 1.32257840e-19 + art_sys_127: 3.27297984e-15 + art_sys_128: -4.03656602e-19 + art_sys_129: -7.98826166e-23 + art_sys_130: -1.16116309e-15 + art_sys_131: -1.65830653e-21 + art_sys_132: 1.71020631e-18 + art_sys_133: -3.77510672e-16 + art_sys_134: -7.82057089e-19 + art_sys_135: -1.12487663e-19 + art_sys_136: -1.67813544e-22 + art_sys_137: -1.24249355e-16 + art_sys_138: -1.31418531e-19 + art_sys_139: -3.75733940e-17 + art_sys_140: -3.81425307e-23 + art_sys_141: -2.52934095e-19 + art_sys_142: 1.20766377e-19 + art_sys_143: -1.15255978e-17 + art_sys_144: 5.31669087e-22 + art_sys_145: 9.35151125e-20 + art_sys_146: -3.87331007e-18 + art_sys_147: 9.42075886e-23 + art_sys_148: 8.08602840e-24 + art_sys_149: -3.13035148e-20 + art_sys_150: -4.88641709e-19 + art_sys_151: 1.88022595e-20 + art_sys_152: -2.47894438e-23 + art_sys_153: 5.49252377e-20 + art_sys_154: -6.28008984e-20 + art_sys_155: 2.01534539e-23 + art_sys_156: 0.0 + art_sys_157: 2.96724694e-20 + art_sys_158: 0.0 + art_sys_159: 4.32607622e-21 + art_sys_160: 9.76447395e-22 + art_sys_161: -2.63523526e-22 + art_sys_162: -2.63523526e-22 + art_sys_163: -3.67609951e-22 + art_sys_164: -3.67609951e-22 + art_sys_165: 4.02149964e-36 + art_sys_166: -1.32878119e-36 + art_sys_167: -0.0 + art_sys_168: -5.05782126e-30 + art_sys_169: -4.33597368e-29 + art_sys_170: 5.52101655e-29 + art_sys_171: -8.80123032e-28 + art_sys_172: 4.65119151e-28 + art_sys_173: 5.07168024e-29 + art_sys_174: 1.66466784e-29 + art_sys_175: -2.83129842e-30 + art_sys_176: 9.33598066e-31 + art_sys_177: -2.70612119e-33 + art_sys_178: 1.28423161e-33 + art_sys_179: -5.56929833e-36 + art_sys_180: 1.00914030e-34 + art_sys_181: -3.85183548e-32 + art_sys_182: -4.98670062e-32 + art_sys_183: 4.28490692e-33 + art_sys_184: -7.82233968e-36 + art_sys_185: -1.22387825e-37 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -18305,167 +18305,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: 3.94222645e-34 - art_sys_26: -1.00575902e-27 - art_sys_27: -5.22330993e-20 - art_sys_28: 1.27730221e-19 - art_sys_29: 1.38300030e+01 - art_sys_30: 1.93283491e+01 - art_sys_31: 5.05245959e+01 - art_sys_32: -1.18890768e+01 - art_sys_33: -4.55413650e-01 - art_sys_34: -2.82448384e-01 - art_sys_35: 1.97899849e-01 - art_sys_36: 9.29548485e-18 - art_sys_37: -1.65837079e-17 - art_sys_38: 5.24979136e-02 - art_sys_39: 7.64248123e-18 - art_sys_40: 1.95006068e-18 - art_sys_41: 2.91050027e-18 - art_sys_42: -2.99902824e-04 - art_sys_43: -2.51760956e-18 - art_sys_44: 1.34610509e-04 - art_sys_45: -2.16217004e-18 - art_sys_46: 7.33444037e-19 - art_sys_47: -5.51993532e-05 - art_sys_48: -4.22225865e-18 - art_sys_49: -5.56441821e-19 + art_sys_25: -6.33356162e-74 + art_sys_26: -3.31780906e-68 + art_sys_27: 2.08385485e-61 + art_sys_28: -1.24674942e-60 + art_sys_29: -4.78859772e-50 + art_sys_30: -3.89208615e-47 + art_sys_31: -1.82058161e-44 + art_sys_32: 2.17478283e-36 + art_sys_33: 6.51738313e-31 + art_sys_34: 6.57107013e-24 + art_sys_35: 4.60645964e-25 + art_sys_36: -1.38300030e+01 + art_sys_37: -1.93283491e+01 + art_sys_38: -5.05245959e+01 + art_sys_39: 1.18890768e+01 + art_sys_40: -4.55413650e-01 + art_sys_41: 2.82448384e-01 + art_sys_42: -1.97899849e-01 + art_sys_43: 5.24979136e-02 + art_sys_44: 2.99902824e-04 + art_sys_45: -1.34610509e-04 + art_sys_46: 5.51993532e-05 + art_sys_47: 8.85310978e-20 + art_sys_48: -6.13025746e-19 + art_sys_49: -6.52195303e-19 art_sys_50: 4.77421574e-06 - art_sys_51: 2.22113652e-06 - art_sys_52: -1.22965214e-18 - art_sys_53: 8.09508297e-19 - art_sys_54: -3.34655743e-19 - art_sys_55: 1.15759652e-19 - art_sys_56: -4.52318836e-19 - art_sys_57: 1.29894717e-15 - art_sys_58: 1.81437584e-16 - art_sys_59: -8.60683403e-17 - art_sys_60: 5.41512029e-07 - art_sys_61: 2.57049212e-17 - art_sys_62: -1.31235319e-18 - art_sys_63: -3.31982714e-19 - art_sys_64: -1.07047765e-20 - art_sys_65: -2.64997783e-20 - art_sys_66: -4.51941217e-08 - art_sys_67: 3.23109449e-21 - art_sys_68: 3.83255125e-21 - art_sys_69: -2.02558386e-08 - art_sys_70: 5.13484057e-19 - art_sys_71: -5.43958950e-19 - art_sys_72: -3.62998280e-19 - art_sys_73: 3.74366546e-09 - art_sys_74: -2.73536424e-17 - art_sys_75: 9.93135325e-20 - art_sys_76: 1.84464546e-21 - art_sys_77: 3.32897386e-22 - art_sys_78: 2.31576017e-22 - art_sys_79: -5.58729661e-20 - art_sys_80: -1.05254213e-17 - art_sys_81: 4.21424412e-23 - art_sys_82: 5.89574163e-23 - art_sys_83: 3.17991139e-23 - art_sys_84: 6.43203293e-20 - art_sys_85: 1.16923595e-23 - art_sys_86: 1.41685295e-24 - art_sys_87: -1.32672260e-22 - art_sys_88: -3.79019179e-20 - art_sys_89: 4.16338056e-20 - art_sys_90: 3.05305078e-17 - art_sys_91: 1.84004337e-18 - art_sys_92: 2.41747494e-11 - art_sys_93: -4.64726997e-18 - art_sys_94: 1.03346091e-11 - art_sys_95: 2.64554667e-19 - art_sys_96: 1.07256389e-20 - art_sys_97: -6.48249498e-12 - art_sys_98: 2.04257070e-19 - art_sys_99: -1.39439704e-19 - art_sys_100: -3.12269767e-12 - art_sys_101: 4.95089666e-19 - art_sys_102: -7.49555807e-21 - art_sys_103: 1.55747771e-12 - art_sys_104: -5.24127160e-19 - art_sys_105: -2.39142686e-20 - art_sys_106: -6.33012746e-19 - art_sys_107: -4.98346299e-19 - art_sys_108: 6.87178213e-13 - art_sys_109: 5.84532134e-18 - art_sys_110: 1.72147807e-20 - art_sys_111: 2.25897862e-17 - art_sys_112: -2.66585942e-13 - art_sys_113: 3.65912061e-21 - art_sys_114: -2.19183955e-17 - art_sys_115: -9.81327347e-14 - art_sys_116: -2.10126382e-18 - art_sys_117: 2.50907462e-21 - art_sys_118: -2.25052139e-17 - art_sys_119: -3.55129434e-14 - art_sys_120: 3.89687172e-18 - art_sys_121: -8.19390237e-19 - art_sys_122: -2.13221860e-18 - art_sys_123: -1.18320570e-14 - art_sys_124: -4.70840697e-20 - art_sys_125: 2.49463431e-19 - art_sys_126: -2.56961692e-18 - art_sys_127: -5.05384606e-19 - art_sys_128: -4.20718730e-15 - art_sys_129: 1.37215535e-15 - art_sys_130: 4.46876084e-16 - art_sys_131: 1.37334656e-16 - art_sys_132: 8.43829776e-19 - art_sys_133: 3.38713984e-19 - art_sys_134: -4.02872224e-17 - art_sys_135: -8.68341789e-19 - art_sys_136: -1.34341903e-17 - art_sys_137: -2.62805203e-19 - art_sys_138: 1.61149682e-18 - art_sys_139: -7.35555384e-20 - art_sys_140: 2.34358209e-21 - art_sys_141: 3.39518663e-19 - art_sys_142: 0.0 - art_sys_143: -5.37544577e-20 - art_sys_144: -1.94653368e-19 - art_sys_145: -2.48255462e-19 - art_sys_146: 1.46258173e-21 - art_sys_147: -4.11779853e-21 - art_sys_148: 5.28589709e-21 - art_sys_149: -1.52504332e-21 - art_sys_150: 1.23839696e-22 - art_sys_151: -2.12977523e-26 - art_sys_152: 7.25759224e-23 - art_sys_153: 5.97025227e-24 - art_sys_154: 9.28090151e-23 - art_sys_155: -2.08026506e-22 - art_sys_156: -8.74212118e-22 - art_sys_157: -5.16762376e-22 - art_sys_158: 0.0 - art_sys_159: 1.04872491e-20 - art_sys_160: 1.04872491e-20 - art_sys_161: 8.52810208e-22 - art_sys_162: -3.16057953e-34 - art_sys_163: -0.0 - art_sys_164: -1.92926279e-34 - art_sys_165: 7.18448484e-29 - art_sys_166: 6.55224601e-30 - art_sys_167: 5.87011840e-31 - art_sys_168: -1.03055175e-29 - art_sys_169: 2.84217782e-29 - art_sys_170: -5.18229763e-30 - art_sys_171: -1.97180129e-29 - art_sys_172: -3.28310918e-28 - art_sys_173: -4.77288375e-29 - art_sys_174: -2.98369341e-34 - art_sys_175: -6.99208328e-30 - art_sys_176: 3.77422049e-29 - art_sys_177: -4.97109359e-30 - art_sys_178: 1.10659971e-31 - art_sys_179: 3.39680419e-32 - art_sys_180: 1.06046929e-32 - art_sys_181: 1.91139189e-32 - art_sys_182: -1.25437868e-32 - art_sys_183: -1.20558366e-34 - art_sys_184: -1.23259511e-37 - art_sys_185: -2.70754541e-35 + art_sys_51: -2.22113652e-06 + art_sys_52: 1.01523920e-19 + art_sys_53: -1.55519193e-19 + art_sys_54: 7.68834863e-20 + art_sys_55: -1.01909268e-18 + art_sys_56: 3.57026867e-19 + art_sys_57: -5.41512029e-07 + art_sys_58: 4.51941217e-08 + art_sys_59: 1.03620479e-19 + art_sys_60: 8.30512223e-20 + art_sys_61: -2.02558388e-08 + art_sys_62: 2.04267997e-19 + art_sys_63: 1.17997785e-19 + art_sys_64: 5.57020016e-15 + art_sys_65: 4.46617710e-16 + art_sys_66: 2.84265875e-16 + art_sys_67: 1.53051570e-17 + art_sys_68: 1.16370404e-18 + art_sys_69: -4.63320828e-19 + art_sys_70: -6.64088001e-20 + art_sys_71: -6.64881665e-21 + art_sys_72: 3.12412066e-21 + art_sys_73: -6.46453997e-21 + art_sys_74: 3.74366546e-09 + art_sys_75: -3.58773581e-21 + art_sys_76: -2.67993063e-21 + art_sys_77: 2.56548156e-22 + art_sys_78: -1.77760006e-22 + art_sys_79: -8.11841259e-20 + art_sys_80: -2.91776733e-22 + art_sys_81: -1.06747609e-19 + art_sys_82: 9.06357610e-21 + art_sys_83: 3.75057683e-23 + art_sys_84: 2.95198338e-23 + art_sys_85: -4.04466900e-24 + art_sys_86: 4.77658507e-24 + art_sys_87: -9.42078648e-19 + art_sys_88: -4.51559659e-20 + art_sys_89: -2.33116358e-24 + art_sys_90: 2.11212846e-21 + art_sys_91: 1.74140926e-20 + art_sys_92: 2.22845353e-24 + art_sys_93: -2.40573124e-25 + art_sys_94: -4.60954457e-20 + art_sys_95: 2.41747277e-11 + art_sys_96: -1.33944106e-20 + art_sys_97: -4.73674088e-20 + art_sys_98: -1.03346072e-11 + art_sys_99: -3.25825711e-20 + art_sys_100: 6.48251841e-12 + art_sys_101: 6.47439692e-18 + art_sys_102: -3.12271323e-12 + art_sys_103: 4.89866197e-18 + art_sys_104: 8.94432155e-18 + art_sys_105: -5.79946273e-21 + art_sys_106: -4.17423586e-17 + art_sys_107: 1.55748239e-12 + art_sys_108: -9.41492483e-21 + art_sys_109: -3.68868755e-20 + art_sys_110: -6.87185784e-13 + art_sys_111: -8.58181194e-20 + art_sys_112: 1.41099693e-17 + art_sys_113: -1.36846070e-18 + art_sys_114: -1.81640950e-20 + art_sys_115: 1.82756507e-19 + art_sys_116: -2.66589560e-13 + art_sys_117: -6.48040520e-20 + art_sys_118: 2.53814017e-18 + art_sys_119: 9.81300453e-14 + art_sys_120: 1.96096936e-18 + art_sys_121: 9.48453484e-21 + art_sys_122: 1.63224933e-18 + art_sys_123: 3.55109200e-14 + art_sys_124: -7.91407263e-19 + art_sys_125: -9.50314195e-21 + art_sys_126: -4.80773307e-19 + art_sys_127: -1.18334493e-14 + art_sys_128: 1.34694704e-18 + art_sys_129: -9.40913131e-23 + art_sys_130: 4.20064069e-15 + art_sys_131: 6.00098799e-21 + art_sys_132: -6.16271988e-18 + art_sys_133: 1.36572097e-15 + art_sys_134: 2.82339820e-18 + art_sys_135: 3.74042295e-19 + art_sys_136: 5.92202386e-22 + art_sys_137: 4.49489598e-16 + art_sys_138: 4.76707317e-19 + art_sys_139: 1.35949641e-16 + art_sys_140: 1.37715683e-22 + art_sys_141: 9.14998492e-19 + art_sys_142: -4.36667909e-19 + art_sys_143: 4.16982204e-17 + art_sys_144: -1.91882437e-21 + art_sys_145: -3.31528530e-19 + art_sys_146: 1.40141074e-17 + art_sys_147: -3.42248124e-22 + art_sys_148: -2.92076899e-23 + art_sys_149: 1.12195066e-19 + art_sys_150: 1.76785234e-18 + art_sys_151: -6.75051719e-20 + art_sys_152: 9.00956378e-23 + art_sys_153: -1.98300739e-19 + art_sys_154: 2.27407750e-19 + art_sys_155: -7.08134745e-23 + art_sys_156: -0.0 + art_sys_157: -1.05499148e-19 + art_sys_158: -0.0 + art_sys_159: -1.52209788e-20 + art_sys_160: -3.44664725e-21 + art_sys_161: 9.68917695e-22 + art_sys_162: 9.68917695e-22 + art_sys_163: 1.31322345e-21 + art_sys_164: 1.31322345e-21 + art_sys_165: -1.44107472e-35 + art_sys_166: 4.76503603e-36 + art_sys_167: 0.0 + art_sys_168: 2.79121879e-29 + art_sys_169: -1.18031260e-28 + art_sys_170: 7.17872642e-29 + art_sys_171: -5.41594594e-28 + art_sys_172: -5.26901218e-29 + art_sys_173: 2.75379301e-31 + art_sys_174: 5.29901145e-31 + art_sys_175: 3.76464299e-30 + art_sys_176: -3.84380653e-31 + art_sys_177: 7.50818849e-32 + art_sys_178: -6.18478438e-33 + art_sys_179: 1.90812425e-35 + art_sys_180: -3.56099283e-34 + art_sys_181: 7.65198610e-33 + art_sys_182: 8.78265193e-32 + art_sys_183: -2.73663945e-33 + art_sys_184: 1.89019647e-35 + art_sys_185: 1.80063065e-37 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -18596,167 +18596,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: 3.70426860e-35 - art_sys_26: -9.45050117e-29 - art_sys_27: -4.90802423e-21 - art_sys_28: 1.20020261e-20 - art_sys_29: 1.29952067e+00 - art_sys_30: -3.01317656e+00 - art_sys_31: 2.48796212e+00 - art_sys_32: -3.01983922e+00 - art_sys_33: 4.63153544e+00 - art_sys_34: 8.83091587e-01 - art_sys_35: -1.06656367e+00 - art_sys_36: -4.34286071e-18 - art_sys_37: -8.69257512e-18 - art_sys_38: -2.71044122e-01 - art_sys_39: 3.40322643e-18 - art_sys_40: -1.40764458e-17 - art_sys_41: 9.73119931e-18 - art_sys_42: 1.60629334e-03 - art_sys_43: 1.49484288e-18 - art_sys_44: -8.27297281e-04 - art_sys_45: -1.65848535e-18 - art_sys_46: 1.40881206e-18 - art_sys_47: 3.13362645e-04 - art_sys_48: -1.89956229e-18 - art_sys_49: 1.18445901e-19 + art_sys_25: -5.94715558e-75 + art_sys_26: -3.11539192e-69 + art_sys_27: 1.95672036e-62 + art_sys_28: -1.17068614e-61 + art_sys_29: -4.49644882e-51 + art_sys_30: -3.65463277e-48 + art_sys_31: -1.70950924e-45 + art_sys_32: 2.04210090e-37 + art_sys_33: 6.11976228e-32 + art_sys_34: 6.17017387e-25 + art_sys_35: 4.32542285e-26 + art_sys_36: -1.29952067e+00 + art_sys_37: 3.01317656e+00 + art_sys_38: -2.48796212e+00 + art_sys_39: 3.01983922e+00 + art_sys_40: 4.63153544e+00 + art_sys_41: -8.83091587e-01 + art_sys_42: 1.06656367e+00 + art_sys_43: -2.71044122e-01 + art_sys_44: -1.60629334e-03 + art_sys_45: 8.27297281e-04 + art_sys_46: -3.13362645e-04 + art_sys_47: 1.35572567e-18 + art_sys_48: 4.05944951e-19 + art_sys_49: -2.31449291e-20 art_sys_50: -2.97507106e-05 - art_sys_51: -1.32950180e-05 - art_sys_52: -1.77562931e-19 - art_sys_53: 5.60604295e-19 - art_sys_54: -1.71290168e-19 - art_sys_55: 3.18970075e-19 - art_sys_56: 5.26520603e-20 - art_sys_57: 5.05867471e-16 - art_sys_58: 3.14464719e-17 - art_sys_59: 7.15751670e-17 - art_sys_60: -3.23234398e-06 - art_sys_61: 2.52339101e-17 - art_sys_62: -1.07906502e-18 - art_sys_63: -7.55875325e-19 - art_sys_64: 2.95131828e-19 - art_sys_65: -4.10821253e-20 - art_sys_66: 2.86397865e-07 - art_sys_67: -1.08015249e-21 - art_sys_68: -2.72303571e-21 - art_sys_69: 1.20173976e-07 - art_sys_70: -2.39741875e-21 - art_sys_71: 1.80258687e-18 - art_sys_72: 2.15624838e-18 - art_sys_73: -2.28126126e-08 - art_sys_74: 1.62790832e-16 - art_sys_75: 2.75480935e-19 - art_sys_76: -8.55110249e-21 - art_sys_77: -1.77277415e-21 - art_sys_78: -1.03966085e-21 - art_sys_79: -1.18489889e-19 - art_sys_80: 6.29544054e-17 - art_sys_81: -1.43908004e-22 - art_sys_82: -2.84845126e-22 - art_sys_83: -1.62196962e-22 - art_sys_84: 1.02718007e-19 - art_sys_85: -5.43557497e-23 - art_sys_86: -1.19992392e-24 - art_sys_87: 1.23527545e-19 - art_sys_88: 1.93245847e-19 - art_sys_89: -2.28130152e-19 - art_sys_90: -1.81793173e-16 - art_sys_91: -1.15281165e-17 - art_sys_92: -1.15574348e-10 - art_sys_93: 2.76377728e-17 - art_sys_94: -5.55799927e-11 - art_sys_95: -8.19232610e-19 - art_sys_96: -5.30022432e-20 - art_sys_97: 3.43455579e-11 - art_sys_98: -5.27233782e-19 - art_sys_99: 9.16781891e-19 - art_sys_100: 1.64799005e-11 - art_sys_101: -2.58106630e-18 - art_sys_102: 4.08183185e-20 - art_sys_103: -8.35873658e-12 - art_sys_104: 2.34481910e-18 - art_sys_105: 1.29891034e-19 - art_sys_106: 2.99236509e-18 - art_sys_107: 3.18294955e-18 - art_sys_108: -3.68488023e-12 - art_sys_109: -3.08930059e-17 - art_sys_110: -9.37013758e-20 - art_sys_111: -1.20097399e-16 - art_sys_112: 1.43869514e-12 - art_sys_113: -2.00499108e-20 - art_sys_114: 1.16263263e-16 - art_sys_115: 5.31259258e-13 - art_sys_116: 1.12608411e-17 - art_sys_117: -1.36470303e-20 - art_sys_118: 1.19330189e-16 - art_sys_119: 1.92633533e-13 - art_sys_120: -2.06295525e-17 - art_sys_121: 4.42562984e-18 - art_sys_122: 1.14707935e-17 - art_sys_123: 6.43678961e-14 - art_sys_124: 2.44277076e-19 - art_sys_125: -1.23544902e-18 - art_sys_126: 1.39067572e-17 - art_sys_127: 2.69258144e-18 - art_sys_128: 2.29050834e-14 - art_sys_129: -7.48111026e-15 - art_sys_130: -2.43790450e-15 - art_sys_131: -7.49596604e-16 - art_sys_132: -4.56021369e-18 - art_sys_133: -1.84353177e-18 - art_sys_134: 2.19985060e-16 - art_sys_135: 4.66748405e-18 - art_sys_136: 7.33667844e-17 - art_sys_137: 1.43430700e-18 - art_sys_138: -8.80270354e-18 - art_sys_139: 4.02099944e-19 - art_sys_140: -1.42646144e-20 - art_sys_141: -1.85279419e-18 - art_sys_142: -0.0 - art_sys_143: 2.93452727e-19 - art_sys_144: 1.06253116e-18 - art_sys_145: 1.35461177e-18 - art_sys_146: -7.93750090e-21 - art_sys_147: 2.24919767e-20 - art_sys_148: -2.82940577e-20 - art_sys_149: 8.03847093e-21 - art_sys_150: -6.76925166e-22 - art_sys_151: -1.59485962e-23 - art_sys_152: -3.92202582e-22 - art_sys_153: -2.94666175e-23 - art_sys_154: -5.05312894e-22 - art_sys_155: 1.13348093e-21 - art_sys_156: 4.77173611e-21 - art_sys_157: 2.82137160e-21 - art_sys_158: -0.0 - art_sys_159: -5.72445069e-20 - art_sys_160: -5.72445069e-20 - art_sys_161: -4.64101782e-21 - art_sys_162: 1.72010694e-33 - art_sys_163: 0.0 - art_sys_164: 1.05003108e-33 - art_sys_165: 3.27659591e-29 - art_sys_166: -5.19696011e-29 - art_sys_167: 2.83428508e-29 - art_sys_168: -4.06380452e-30 - art_sys_169: -1.70237801e-29 - art_sys_170: 7.74723700e-29 - art_sys_171: -1.35830001e-27 - art_sys_172: -1.83933190e-27 - art_sys_173: 1.64319956e-28 - art_sys_174: 1.62803523e-33 - art_sys_175: 4.39154350e-32 - art_sys_176: 4.93105115e-29 - art_sys_177: -4.12540998e-30 - art_sys_178: -5.37392526e-31 - art_sys_179: 3.75863301e-31 - art_sys_180: 1.28583378e-32 - art_sys_181: 4.07762985e-32 - art_sys_182: -1.35587298e-32 - art_sys_183: -1.21505312e-34 - art_sys_184: 3.98662219e-36 - art_sys_185: 1.47551588e-34 + art_sys_51: 1.32950180e-05 + art_sys_52: 5.36960224e-19 + art_sys_53: 4.78776112e-19 + art_sys_54: -9.47816504e-19 + art_sys_55: 1.42181649e-18 + art_sys_56: -5.93011160e-20 + art_sys_57: 3.23234398e-06 + art_sys_58: -2.86397865e-07 + art_sys_59: 2.31610889e-19 + art_sys_60: -3.25744582e-19 + art_sys_61: 1.20173977e-07 + art_sys_62: -1.25528888e-19 + art_sys_63: 1.45568969e-19 + art_sys_64: 5.75582858e-15 + art_sys_65: -1.41911385e-15 + art_sys_66: 2.38680544e-16 + art_sys_67: -7.04086830e-17 + art_sys_68: 1.94616956e-18 + art_sys_69: -3.03818014e-19 + art_sys_70: -1.18551900e-19 + art_sys_71: -1.27870174e-20 + art_sys_72: 3.89174334e-22 + art_sys_73: -4.34117869e-21 + art_sys_74: -2.28126126e-08 + art_sys_75: -2.29709298e-21 + art_sys_76: 1.30098952e-20 + art_sys_77: -1.43635390e-21 + art_sys_78: 1.05145428e-21 + art_sys_79: 5.73619501e-20 + art_sys_80: 1.47319739e-21 + art_sys_81: 9.82297603e-20 + art_sys_82: 2.90748870e-19 + art_sys_83: -1.87174212e-22 + art_sys_84: -1.47479788e-22 + art_sys_85: 1.59054099e-23 + art_sys_86: -2.20746791e-23 + art_sys_87: 4.99430769e-18 + art_sys_88: 2.47870617e-19 + art_sys_89: 1.14586441e-23 + art_sys_90: -1.03048265e-20 + art_sys_91: 5.60440717e-21 + art_sys_92: -1.14546108e-23 + art_sys_93: 1.50753006e-24 + art_sys_94: 2.46940075e-19 + art_sys_95: -1.15574233e-10 + art_sys_96: -1.56795312e-19 + art_sys_97: 1.04177354e-19 + art_sys_98: 5.55799836e-11 + art_sys_99: 8.59355588e-19 + art_sys_100: -3.43456822e-11 + art_sys_101: -3.45613766e-17 + art_sys_102: 1.64799826e-11 + art_sys_103: -2.60995481e-17 + art_sys_104: -4.19101946e-17 + art_sys_105: 3.16787011e-20 + art_sys_106: 2.19011567e-16 + art_sys_107: -8.35876172e-12 + art_sys_108: 5.22923834e-20 + art_sys_109: 2.00924937e-19 + art_sys_110: 3.68492082e-12 + art_sys_111: -3.14122132e-18 + art_sys_112: -7.56451897e-17 + art_sys_113: 7.18238422e-18 + art_sys_114: 9.90196695e-20 + art_sys_115: -1.00404503e-18 + art_sys_116: 1.43871481e-12 + art_sys_117: 3.53059235e-19 + art_sys_118: -1.38523650e-17 + art_sys_119: -5.31244707e-13 + art_sys_120: -1.05006172e-17 + art_sys_121: -5.19250314e-20 + art_sys_122: -8.28797573e-18 + art_sys_123: -1.92622556e-13 + art_sys_124: 4.13869832e-18 + art_sys_125: 5.18253609e-20 + art_sys_126: 2.61008498e-18 + art_sys_127: 6.43754762e-14 + art_sys_128: -7.09438677e-18 + art_sys_129: 3.12709918e-22 + art_sys_130: -2.28694842e-14 + art_sys_131: -3.27772307e-20 + art_sys_132: 3.30379883e-17 + art_sys_133: -7.44609046e-15 + art_sys_134: -1.52846488e-17 + art_sys_135: -1.97172901e-18 + art_sys_136: -3.21332552e-21 + art_sys_137: -2.45213712e-15 + art_sys_138: -2.58926309e-18 + art_sys_139: -7.42055413e-16 + art_sys_140: -7.50403557e-22 + art_sys_141: -4.98981640e-18 + art_sys_142: 2.36569261e-18 + art_sys_143: -2.27668030e-16 + art_sys_144: 1.04393878e-20 + art_sys_145: 1.79319805e-18 + art_sys_146: -7.65291700e-17 + art_sys_147: 1.86945346e-21 + art_sys_148: 1.59465053e-22 + art_sys_149: -6.04042796e-19 + art_sys_150: -9.65675865e-18 + art_sys_151: 3.65653197e-19 + art_sys_152: -4.93077142e-22 + art_sys_153: 1.08233159e-18 + art_sys_154: -1.22177737e-18 + art_sys_155: 3.85076622e-22 + art_sys_156: 0.0 + art_sys_157: 5.67931812e-19 + art_sys_158: 0.0 + art_sys_159: 8.19506714e-20 + art_sys_160: 1.85380851e-20 + art_sys_161: -5.33307489e-21 + art_sys_162: -5.33307489e-21 + art_sys_163: -7.10040016e-21 + art_sys_164: -7.10040016e-21 + art_sys_165: 7.80728068e-35 + art_sys_166: -2.58232174e-35 + art_sys_167: -0.0 + art_sys_168: -1.70829827e-29 + art_sys_169: 1.79562443e-28 + art_sys_170: -8.68608054e-29 + art_sys_171: -1.13417578e-28 + art_sys_172: -2.06193839e-28 + art_sys_173: -1.21322425e-29 + art_sys_174: -1.37407882e-29 + art_sys_175: -1.26085953e-30 + art_sys_176: 1.92969179e-32 + art_sys_177: -4.12503390e-31 + art_sys_178: 2.79364541e-32 + art_sys_179: -1.03226803e-34 + art_sys_180: 1.91897977e-33 + art_sys_181: 2.19472584e-32 + art_sys_182: -8.26802388e-32 + art_sys_183: -2.17685221e-33 + art_sys_184: -2.89266105e-35 + art_sys_185: -5.93419864e-37 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -18887,167 +18887,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: -1.56005689e-35 - art_sys_26: 3.98008922e-29 - art_sys_27: 2.06701994e-21 - art_sys_28: -5.05466681e-21 - art_sys_29: -5.47294573e-01 - art_sys_30: -1.13898951e+00 - art_sys_31: -2.58247733e+00 - art_sys_32: 6.79556819e-01 - art_sys_33: 2.73763425e+00 - art_sys_34: -2.21566859e+00 - art_sys_35: 1.26807733e+00 - art_sys_36: -3.39149870e-18 - art_sys_37: -1.54061189e-17 - art_sys_38: 5.56702667e-01 - art_sys_39: -2.55634503e-19 - art_sys_40: -3.87406589e-18 - art_sys_41: -1.06263970e-17 - art_sys_42: -3.73157574e-03 - art_sys_43: -6.38627092e-18 - art_sys_44: 2.12658092e-03 - art_sys_45: 2.05404978e-19 - art_sys_46: -6.52087802e-18 - art_sys_47: -9.54438016e-04 - art_sys_48: -7.07866089e-19 - art_sys_49: -1.60512147e-18 + art_sys_25: 2.50669743e-75 + art_sys_26: 1.31312268e-69 + art_sys_27: -8.24748204e-63 + art_sys_28: 4.93438566e-62 + art_sys_29: 1.89523151e-51 + art_sys_30: 1.54041011e-48 + art_sys_31: 7.20549906e-46 + art_sys_32: -8.60735689e-38 + art_sys_33: -2.57945031e-32 + art_sys_34: -2.60069856e-25 + art_sys_35: -1.82314489e-26 + art_sys_36: 5.47294573e-01 + art_sys_37: 1.13898951e+00 + art_sys_38: 2.58247733e+00 + art_sys_39: -6.79556819e-01 + art_sys_40: 2.73763425e+00 + art_sys_41: 2.21566859e+00 + art_sys_42: -1.26807733e+00 + art_sys_43: 5.56702667e-01 + art_sys_44: 3.73157574e-03 + art_sys_45: -2.12658092e-03 + art_sys_46: 9.54438016e-04 + art_sys_47: -9.73589736e-19 + art_sys_48: -2.45852247e-19 + art_sys_49: -3.61578386e-18 art_sys_50: 8.79516336e-05 - art_sys_51: 4.29643582e-05 - art_sys_52: -5.16141661e-19 - art_sys_53: -1.41826116e-18 - art_sys_54: 1.39406103e-18 - art_sys_55: 9.76987781e-19 - art_sys_56: -5.65048839e-19 - art_sys_57: 2.45922793e-15 - art_sys_58: 1.44972726e-16 - art_sys_59: -9.08226802e-18 - art_sys_60: 1.07414560e-05 - art_sys_61: -7.75544822e-18 - art_sys_62: 9.62240264e-19 - art_sys_63: 3.39715931e-19 - art_sys_64: 9.12118990e-20 - art_sys_65: 9.15698349e-20 - art_sys_66: -9.53829653e-07 - art_sys_67: -3.87476009e-21 - art_sys_68: -1.21547536e-20 - art_sys_69: -4.21457778e-07 - art_sys_70: 3.64129586e-19 - art_sys_71: -7.31633060e-18 - art_sys_72: -6.74640963e-18 - art_sys_73: 7.97728182e-08 - art_sys_74: -5.71843139e-16 - art_sys_75: -1.07975858e-20 - art_sys_76: 4.51385015e-20 - art_sys_77: 7.17605186e-21 - art_sys_78: 5.56259121e-21 - art_sys_79: -1.05652306e-19 - art_sys_80: -2.20629789e-16 - art_sys_81: 9.10982252e-22 - art_sys_82: 1.37043257e-21 - art_sys_83: 6.88612283e-22 - art_sys_84: -9.12254842e-20 - art_sys_85: 2.71514697e-22 - art_sys_86: 4.80911909e-23 - art_sys_87: -6.61007758e-19 - art_sys_88: -7.93612035e-19 - art_sys_89: 9.45895709e-19 - art_sys_90: 6.37686511e-16 - art_sys_91: 4.00303247e-17 - art_sys_92: 5.70422549e-10 - art_sys_93: -9.69408890e-17 - art_sys_94: 2.17215590e-10 - art_sys_95: 3.19122312e-18 - art_sys_96: 2.19065034e-19 - art_sys_97: -1.47390015e-10 - art_sys_98: 2.23972259e-18 - art_sys_99: -3.55191537e-18 - art_sys_100: -6.93955966e-11 - art_sys_101: 1.15675299e-17 - art_sys_102: -1.63895576e-19 - art_sys_103: 3.48769799e-11 - art_sys_104: -7.52970961e-18 - art_sys_105: -5.37379344e-19 - art_sys_106: -9.77801828e-18 - art_sys_107: -1.01209567e-17 - art_sys_108: 1.53939995e-11 - art_sys_109: 1.31594388e-16 - art_sys_110: 3.86601537e-19 - art_sys_111: 5.20120114e-16 - art_sys_112: -5.97446760e-12 - art_sys_113: 8.39770152e-20 - art_sys_114: -4.96375340e-16 - art_sys_115: -2.20332976e-12 - art_sys_116: -4.70539016e-17 - art_sys_117: 5.62545565e-20 - art_sys_118: -5.11739335e-16 - art_sys_119: -7.97287108e-13 - art_sys_120: 8.75842594e-17 - art_sys_121: -1.83799439e-17 - art_sys_122: -4.76656024e-17 - art_sys_123: -2.65862299e-13 - art_sys_124: -1.02763367e-18 - art_sys_125: 5.19763471e-18 - art_sys_126: -5.76819564e-17 - art_sys_127: -1.10951831e-17 - art_sys_128: -9.45530840e-14 - art_sys_129: 3.08429832e-14 - art_sys_130: 1.00473342e-14 - art_sys_131: 3.08777006e-15 - art_sys_132: 1.88781260e-17 - art_sys_133: 7.61116030e-18 - art_sys_134: -9.05909843e-16 - art_sys_135: -1.93551841e-17 - art_sys_136: -3.02087267e-16 - art_sys_137: -5.95588859e-18 - art_sys_138: 3.62371555e-17 - art_sys_139: -1.65619983e-18 - art_sys_140: 5.27395718e-20 - art_sys_141: 7.62951049e-18 - art_sys_142: 0.0 - art_sys_143: -1.21799792e-18 - art_sys_144: -4.38215961e-18 - art_sys_145: -5.57615425e-18 - art_sys_146: 3.26796517e-20 - art_sys_147: -9.27385189e-20 - art_sys_148: 1.17675185e-19 - art_sys_149: -3.32622566e-20 - art_sys_150: 2.82026648e-21 - art_sys_151: 2.81033736e-23 - art_sys_152: 1.59611924e-21 - art_sys_153: 1.16840465e-22 - art_sys_154: 2.08269377e-21 - art_sys_155: -4.67026303e-21 - art_sys_156: -1.96507124e-20 - art_sys_157: -1.16148317e-20 - art_sys_158: 0.0 - art_sys_159: 2.35560034e-19 - art_sys_160: 2.35560034e-19 - art_sys_161: 1.91388634e-20 - art_sys_162: -7.09426987e-33 - art_sys_163: -0.0 - art_sys_164: -4.33092715e-33 - art_sys_165: -1.82513673e-28 - art_sys_166: 1.08688363e-28 - art_sys_167: -5.82015799e-30 - art_sys_168: 1.76301733e-29 - art_sys_169: -4.80623597e-29 - art_sys_170: 2.73134751e-29 - art_sys_171: 8.73324769e-28 - art_sys_172: -3.74329267e-27 - art_sys_173: 4.61554293e-28 - art_sys_174: -6.70314213e-33 - art_sys_175: 2.55833970e-29 - art_sys_176: -3.14632608e-29 - art_sys_177: 8.16981307e-30 - art_sys_178: 6.13719838e-31 - art_sys_179: -7.31276087e-31 - art_sys_180: -1.41413703e-31 - art_sys_181: 3.87163868e-33 - art_sys_182: 5.28994062e-32 - art_sys_183: 1.10525929e-34 - art_sys_184: -1.62009971e-35 - art_sys_185: -6.08378495e-34 + art_sys_51: -4.29643582e-05 + art_sys_52: -2.55002102e-19 + art_sys_53: 2.27465080e-19 + art_sys_54: 2.71556746e-19 + art_sys_55: 1.79024795e-18 + art_sys_56: -7.50775506e-19 + art_sys_57: -1.07414560e-05 + art_sys_58: 9.53829653e-07 + art_sys_59: 2.39403305e-19 + art_sys_60: 7.10430618e-20 + art_sys_61: -4.21457781e-07 + art_sys_62: 2.04098582e-19 + art_sys_63: -1.25519856e-19 + art_sys_64: -1.37052533e-15 + art_sys_65: 3.97256307e-16 + art_sys_66: -1.75275012e-16 + art_sys_67: -2.16686049e-17 + art_sys_68: -4.61182309e-19 + art_sys_69: 1.00274409e-19 + art_sys_70: 7.59843690e-20 + art_sys_71: 1.67121564e-20 + art_sys_72: 7.85320836e-22 + art_sys_73: -3.29981652e-21 + art_sys_74: 7.97728182e-08 + art_sys_75: -3.87745923e-21 + art_sys_76: -6.29512097e-20 + art_sys_77: 4.71152765e-21 + art_sys_78: -3.61485560e-21 + art_sys_79: 3.47900383e-20 + art_sys_80: -6.60475309e-21 + art_sys_81: 7.51685814e-20 + art_sys_82: -1.17643053e-18 + art_sys_83: 8.76312569e-22 + art_sys_84: 6.96140456e-22 + art_sys_85: -9.69113871e-23 + art_sys_86: 1.15239164e-22 + art_sys_87: -2.13206611e-17 + art_sys_88: -1.02013813e-18 + art_sys_89: -5.28960328e-23 + art_sys_90: 4.57859370e-20 + art_sys_91: 2.11553777e-19 + art_sys_92: 4.93632566e-23 + art_sys_93: -4.09915226e-24 + art_sys_94: -1.02015562e-18 + art_sys_95: 5.70422085e-10 + art_sys_96: 1.14816050e-18 + art_sys_97: -5.79195370e-19 + art_sys_98: -2.17215542e-10 + art_sys_99: 5.23492450e-19 + art_sys_100: 1.47390545e-10 + art_sys_101: 1.49408727e-16 + art_sys_102: -6.93959424e-11 + art_sys_103: 1.11469041e-16 + art_sys_104: 2.10170479e-16 + art_sys_105: -1.32335197e-19 + art_sys_106: -9.21122623e-16 + art_sys_107: 3.48770848e-11 + art_sys_108: -2.14458958e-19 + art_sys_109: -8.29032410e-19 + art_sys_110: -1.53941691e-11 + art_sys_111: -6.39418183e-18 + art_sys_112: 3.16015782e-16 + art_sys_113: -3.02204379e-17 + art_sys_114: -4.08348163e-19 + art_sys_115: 4.10106222e-18 + art_sys_116: -5.97454904e-12 + art_sys_117: -1.45572687e-18 + art_sys_118: 5.87132004e-17 + art_sys_119: 2.20326939e-12 + art_sys_120: 4.37800715e-17 + art_sys_121: 2.13105965e-19 + art_sys_122: 3.46562781e-17 + art_sys_123: 7.97241675e-13 + art_sys_124: -1.73159030e-17 + art_sys_125: -2.13447789e-19 + art_sys_126: -1.08454033e-17 + art_sys_127: -2.65893596e-13 + art_sys_128: 2.89775079e-17 + art_sys_129: -1.18158424e-21 + art_sys_130: 9.44059900e-14 + art_sys_131: 1.35181649e-19 + art_sys_132: -1.37983262e-16 + art_sys_133: 3.06983911e-14 + art_sys_134: 6.33828651e-17 + art_sys_135: 8.02069410e-18 + art_sys_136: 1.31784031e-20 + art_sys_137: 1.01060700e-14 + art_sys_138: 1.07191206e-17 + art_sys_139: 3.05664387e-15 + art_sys_140: 3.10174283e-21 + art_sys_141: 2.05691450e-17 + art_sys_142: -9.78963340e-18 + art_sys_143: 9.37620453e-16 + art_sys_144: -4.31023970e-20 + art_sys_145: -7.41616916e-18 + art_sys_146: 3.15125637e-16 + art_sys_147: -7.69949285e-21 + art_sys_148: -6.56840158e-22 + art_sys_149: 2.49883674e-18 + art_sys_150: 3.97535907e-17 + art_sys_151: -1.51247519e-18 + art_sys_152: 2.02869294e-21 + art_sys_153: -4.45578320e-18 + art_sys_154: 5.08376300e-18 + art_sys_155: -1.57576142e-21 + art_sys_156: -0.0 + art_sys_157: -2.34718127e-18 + art_sys_158: -0.0 + art_sys_159: -3.38019941e-19 + art_sys_160: -7.65016504e-20 + art_sys_161: 2.19609971e-20 + art_sys_162: 2.19609971e-20 + art_sys_163: 2.93596044e-20 + art_sys_164: 2.93596044e-20 + art_sys_165: -3.22665504e-34 + art_sys_166: 1.06726675e-34 + art_sys_167: 0.0 + art_sys_168: -1.09811447e-28 + art_sys_169: 3.52332240e-29 + art_sys_170: -1.28165926e-28 + art_sys_171: -5.12684091e-28 + art_sys_172: -1.99030991e-28 + art_sys_173: -4.77642011e-29 + art_sys_174: -4.00758043e-29 + art_sys_175: 2.89237422e-31 + art_sys_176: -3.30423303e-31 + art_sys_177: 1.68992341e-30 + art_sys_178: -9.05830326e-32 + art_sys_179: 4.20442874e-34 + art_sys_180: -7.91870134e-33 + art_sys_181: -1.60679573e-31 + art_sys_182: -3.95813397e-32 + art_sys_183: 1.34006892e-33 + art_sys_184: 7.21134712e-35 + art_sys_185: 2.42334475e-36 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -19178,167 +19178,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: -4.23227276e-36 - art_sys_26: 1.07975698e-29 - art_sys_27: 5.60761098e-22 - art_sys_28: -1.37127875e-21 - art_sys_29: -1.48475353e-01 - art_sys_30: 1.06743364e-01 - art_sys_31: -3.09605307e-01 - art_sys_32: 3.73471351e-01 - art_sys_33: -4.12275208e-01 - art_sys_34: -3.13582620e+00 - art_sys_35: -7.61332956e-01 - art_sys_36: 1.07733738e-17 - art_sys_37: -2.97625106e-18 - art_sys_38: -6.46028916e-01 - art_sys_39: 9.11289190e-18 - art_sys_40: -2.81732314e-18 - art_sys_41: -4.54247312e-18 - art_sys_42: 1.61879527e-02 - art_sys_43: -6.86036104e-18 - art_sys_44: -6.61953534e-03 - art_sys_45: -4.68556659e-18 - art_sys_46: -4.09290336e-18 - art_sys_47: 3.09982033e-03 - art_sys_48: -3.64903659e-19 - art_sys_49: -1.33221766e-18 + art_sys_25: 6.79687852e-76 + art_sys_26: 3.56051563e-70 + art_sys_27: -2.23629438e-63 + art_sys_28: 1.33795246e-62 + art_sys_29: 5.13889639e-52 + art_sys_30: 4.17680261e-49 + art_sys_31: 1.95376200e-46 + art_sys_32: -2.33387399e-38 + art_sys_33: -6.99414706e-33 + art_sys_34: -7.05176141e-26 + art_sys_35: -4.94343443e-27 + art_sys_36: 1.48475353e-01 + art_sys_37: -1.06743364e-01 + art_sys_38: 3.09605307e-01 + art_sys_39: -3.73471351e-01 + art_sys_40: -4.12275208e-01 + art_sys_41: 3.13582620e+00 + art_sys_42: 7.61332956e-01 + art_sys_43: -6.46028916e-01 + art_sys_44: -1.61879527e-02 + art_sys_45: 6.61953534e-03 + art_sys_46: -3.09982033e-03 + art_sys_47: 2.35277747e-18 + art_sys_48: -9.55722967e-19 + art_sys_49: -2.38515526e-18 art_sys_50: -3.03159843e-04 - art_sys_51: -1.37667499e-04 - art_sys_52: 2.07299650e-19 - art_sys_53: -6.88655986e-19 - art_sys_54: 1.62918822e-18 - art_sys_55: 1.88493221e-18 - art_sys_56: 1.22741112e-20 - art_sys_57: -1.47798976e-15 - art_sys_58: -4.03931791e-16 - art_sys_59: 2.05955989e-16 - art_sys_60: -3.51462624e-05 - art_sys_61: -2.63697507e-17 - art_sys_62: 1.82566561e-18 - art_sys_63: -2.06223709e-19 - art_sys_64: -2.98266889e-20 - art_sys_65: -1.87811396e-19 - art_sys_66: 3.05811674e-06 - art_sys_67: -8.93982367e-21 - art_sys_68: 8.35091716e-22 - art_sys_69: 1.32969524e-06 - art_sys_70: -1.46373774e-18 - art_sys_71: 2.47436317e-17 - art_sys_72: 2.13936794e-17 - art_sys_73: -2.54137881e-07 - art_sys_74: 1.80359237e-15 - art_sys_75: -1.25850354e-19 - art_sys_76: -9.17440383e-20 - art_sys_77: -2.14932224e-20 - art_sys_78: -1.12258091e-20 - art_sys_79: 2.24894562e-19 - art_sys_80: 6.95987295e-16 - art_sys_81: -1.54146579e-21 - art_sys_82: -3.24636423e-21 - art_sys_83: -1.93838285e-21 - art_sys_84: 1.26562288e-19 - art_sys_85: -6.13966351e-22 - art_sys_86: 1.30124614e-23 - art_sys_87: 1.81520267e-18 - art_sys_88: 2.29858320e-18 - art_sys_89: -2.74177101e-18 - art_sys_90: -2.01165850e-15 - art_sys_91: -1.28352959e-16 - art_sys_92: -1.30178059e-09 - art_sys_93: 3.06275488e-16 - art_sys_94: -6.77106694e-10 - art_sys_95: -9.50597253e-18 - art_sys_96: -6.38296774e-19 - art_sys_97: 3.98486898e-10 - art_sys_98: -6.62261048e-18 - art_sys_99: 1.04219189e-17 - art_sys_100: 1.96942756e-10 - art_sys_101: -3.14777538e-17 - art_sys_102: 4.77738419e-19 - art_sys_103: -9.95405939e-11 - art_sys_104: 1.78991693e-17 - art_sys_105: 1.57128698e-18 - art_sys_106: 2.59565098e-17 - art_sys_107: 3.26963279e-17 - art_sys_108: -4.41364462e-11 - art_sys_109: -3.62417625e-16 - art_sys_110: -1.13134653e-18 - art_sys_111: -1.38912836e-15 - art_sys_112: 1.72759467e-11 - art_sys_113: -2.45689634e-19 - art_sys_114: 1.35236165e-15 - art_sys_115: 6.38776799e-12 - art_sys_116: 1.34965731e-16 - art_sys_117: -1.64652733e-19 - art_sys_118: 1.38163865e-15 - art_sys_119: 2.32107343e-12 - art_sys_120: -2.39021645e-16 - art_sys_121: 5.31313228e-17 - art_sys_122: 1.37034940e-16 - art_sys_123: 7.75983776e-13 - art_sys_124: 2.79966715e-18 - art_sys_125: -1.50068858e-17 - art_sys_126: 1.67194003e-16 - art_sys_127: 3.20304032e-17 - art_sys_128: 2.76387886e-13 - art_sys_129: -9.03117099e-14 - art_sys_130: -2.94385446e-14 - art_sys_131: -9.05435511e-15 - art_sys_132: -5.44869364e-17 - art_sys_133: -2.22308662e-17 - art_sys_134: 2.65735269e-15 - art_sys_135: 5.59899499e-17 - art_sys_136: 8.86373530e-16 - art_sys_137: 1.73120143e-17 - art_sys_138: -1.06358776e-16 - art_sys_139: 4.86228686e-18 - art_sys_140: -1.61969523e-19 - art_sys_141: -2.23650805e-17 - art_sys_142: -0.0 - art_sys_143: 3.53496887e-18 - art_sys_144: 1.28348066e-17 - art_sys_145: 1.63485607e-17 - art_sys_146: -9.56964123e-20 - art_sys_147: 2.71689678e-19 - art_sys_148: -3.39620697e-19 - art_sys_149: 9.78395295e-20 - art_sys_150: -8.23251703e-21 - art_sys_151: -1.38434082e-22 - art_sys_152: -4.71759495e-21 - art_sys_153: -3.45307320e-22 - art_sys_154: -6.09075804e-21 - art_sys_155: 1.36686036e-20 - art_sys_156: 5.76112696e-20 - art_sys_157: 3.40720017e-20 - art_sys_158: -0.0 - art_sys_159: -6.91609445e-19 - art_sys_160: -6.91609445e-19 - art_sys_161: -5.59222083e-20 - art_sys_162: 2.07279071e-32 - art_sys_163: 0.0 - art_sys_164: 1.26539019e-32 - art_sys_165: 2.17691308e-28 - art_sys_166: -2.76981579e-28 - art_sys_167: -6.72796945e-30 - art_sys_168: -6.23061819e-30 - art_sys_169: -8.60295943e-30 - art_sys_170: -3.06100653e-29 - art_sys_171: 3.11809960e-28 - art_sys_172: 1.10462918e-27 - art_sys_173: 1.14337772e-28 - art_sys_174: 1.96493025e-32 - art_sys_175: -1.66167393e-29 - art_sys_176: 3.06458309e-29 - art_sys_177: -9.85640890e-30 - art_sys_178: -1.15269352e-30 - art_sys_179: 2.17715146e-30 - art_sys_180: 3.41178885e-31 - art_sys_181: -3.61263306e-32 - art_sys_182: 3.68692841e-32 - art_sys_183: 5.95470105e-34 - art_sys_184: 4.42574941e-35 - art_sys_185: 1.78035782e-33 + art_sys_51: 1.37667499e-04 + art_sys_52: 1.67418534e-18 + art_sys_53: 2.48443315e-19 + art_sys_54: 7.69291001e-19 + art_sys_55: -1.83959901e-19 + art_sys_56: 2.73341079e-19 + art_sys_57: 3.51462624e-05 + art_sys_58: -3.05811674e-06 + art_sys_59: 7.48804032e-20 + art_sys_60: 2.50688438e-19 + art_sys_61: 1.32969525e-06 + art_sys_62: -8.33245637e-20 + art_sys_63: -1.11374912e-19 + art_sys_64: -4.04258838e-15 + art_sys_65: -9.29366758e-16 + art_sys_66: -2.38745659e-16 + art_sys_67: 3.68464974e-17 + art_sys_68: -1.34134279e-18 + art_sys_69: 7.12086999e-19 + art_sys_70: 2.28946611e-20 + art_sys_71: -2.61320820e-20 + art_sys_72: -3.13340925e-21 + art_sys_73: 7.19414196e-21 + art_sys_74: -2.54137881e-07 + art_sys_75: 1.84142781e-20 + art_sys_76: 1.46877988e-19 + art_sys_77: -1.89961309e-20 + art_sys_78: 1.31177384e-20 + art_sys_79: -7.86460213e-20 + art_sys_80: 1.72289844e-20 + art_sys_81: -7.98973060e-20 + art_sys_82: 3.35607286e-18 + art_sys_83: -2.11763239e-21 + art_sys_84: -1.66373002e-21 + art_sys_85: 1.74472536e-22 + art_sys_86: -2.50008427e-22 + art_sys_87: 5.75357361e-17 + art_sys_88: 2.90951099e-18 + art_sys_89: 1.32481481e-22 + art_sys_90: -1.31498549e-19 + art_sys_91: -1.66657019e-19 + art_sys_92: -1.35235630e-22 + art_sys_93: 1.97246244e-23 + art_sys_94: 2.95962340e-18 + art_sys_95: -1.30177921e-09 + art_sys_96: -3.08924414e-18 + art_sys_97: 8.26590555e-19 + art_sys_98: 6.77106596e-10 + art_sys_99: 1.21279909e-17 + art_sys_100: -3.98488346e-10 + art_sys_101: -4.02939522e-16 + art_sys_102: 1.96943738e-10 + art_sys_103: -3.03612300e-16 + art_sys_104: -4.77692324e-16 + art_sys_105: 3.86762109e-19 + art_sys_106: 2.59967043e-15 + art_sys_107: -9.95408938e-11 + art_sys_108: 6.26914873e-19 + art_sys_109: 2.42332567e-18 + art_sys_110: 4.41369325e-11 + art_sys_111: -7.92822619e-17 + art_sys_112: -9.06036150e-16 + art_sys_113: 8.56754613e-17 + art_sys_114: 1.19483778e-18 + art_sys_115: -1.08638508e-17 + art_sys_116: 1.72761837e-11 + art_sys_117: 4.26226327e-18 + art_sys_118: -1.67361998e-16 + art_sys_119: -6.38759308e-12 + art_sys_120: -1.25561126e-16 + art_sys_121: -6.23603638e-19 + art_sys_122: -9.68959677e-17 + art_sys_123: -2.32094116e-12 + art_sys_124: 4.90234840e-17 + art_sys_125: 6.25385516e-19 + art_sys_126: 3.14156281e-17 + art_sys_127: 7.76075375e-13 + art_sys_128: -8.25026495e-17 + art_sys_129: 3.74329231e-21 + art_sys_130: -2.75958884e-13 + art_sys_131: -3.96290466e-19 + art_sys_132: 3.95512389e-16 + art_sys_133: -8.98894451e-14 + art_sys_134: -1.83791050e-16 + art_sys_135: -2.27836956e-17 + art_sys_136: -3.86595875e-20 + art_sys_137: -2.96102390e-14 + art_sys_138: -3.11583781e-17 + art_sys_139: -8.96338610e-15 + art_sys_140: -9.06198005e-21 + art_sys_141: -6.02468261e-17 + art_sys_142: 2.83390099e-17 + art_sys_143: -2.75004689e-15 + art_sys_144: 1.25879310e-19 + art_sys_145: 2.15439751e-17 + art_sys_146: -9.24543506e-16 + art_sys_147: 2.25869167e-20 + art_sys_148: 1.92558820e-21 + art_sys_149: -7.19429640e-18 + art_sys_150: -1.16674354e-16 + art_sys_151: 4.39608664e-18 + art_sys_152: -5.96494828e-21 + art_sys_153: 1.30659910e-17 + art_sys_154: -1.46544489e-17 + art_sys_155: 4.62932601e-21 + art_sys_156: 0.0 + art_sys_157: 6.78509498e-18 + art_sys_158: 0.0 + art_sys_159: 9.80174993e-19 + art_sys_160: 2.21327998e-19 + art_sys_161: -6.47270257e-20 + art_sys_162: -6.47270257e-20 + art_sys_163: -8.52579135e-20 + art_sys_164: -8.52579135e-20 + art_sys_165: 9.38588745e-34 + art_sys_166: -3.10512965e-34 + art_sys_167: -0.0 + art_sys_168: 5.02411458e-28 + art_sys_169: 4.71706985e-28 + art_sys_170: -1.53650751e-28 + art_sys_171: -3.37152586e-29 + art_sys_172: -2.65533216e-29 + art_sys_173: -1.26800089e-29 + art_sys_174: 4.88488664e-29 + art_sys_175: -7.45908345e-30 + art_sys_176: 1.33552949e-30 + art_sys_177: -4.96281698e-30 + art_sys_178: 2.67614444e-31 + art_sys_179: -1.23527143e-33 + art_sys_180: 2.29709625e-32 + art_sys_181: 4.64478104e-31 + art_sys_182: 9.90051404e-32 + art_sys_183: -1.01026067e-34 + art_sys_184: -2.61288080e-34 + art_sys_185: -7.29066803e-36 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -19469,167 +19469,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: 2.81280460e-37 - art_sys_26: -7.17615702e-31 - art_sys_27: -3.72686611e-23 - art_sys_28: 9.11363558e-23 - art_sys_29: 9.86779758e-03 - art_sys_30: 1.03627747e-01 - art_sys_31: 1.54657118e-01 - art_sys_32: -1.27783178e-02 - art_sys_33: -6.58143998e-01 - art_sys_34: -7.35546721e-01 - art_sys_35: -1.96312639e+00 - art_sys_36: 9.62449947e-18 - art_sys_37: -4.55246048e-18 - art_sys_38: 7.52009988e-01 - art_sys_39: -8.18845823e-18 - art_sys_40: 2.06524467e-18 - art_sys_41: -7.11649690e-18 - art_sys_42: -1.22387258e-02 - art_sys_43: -2.94304054e-18 - art_sys_44: 1.45993958e-02 - art_sys_45: 1.33256750e-18 - art_sys_46: 2.44731179e-18 - art_sys_47: -7.16458547e-03 - art_sys_48: -1.28065916e-18 - art_sys_49: -1.13442065e-18 + art_sys_25: -4.52666822e-77 + art_sys_26: -2.37127571e-71 + art_sys_27: 1.48935466e-64 + art_sys_28: -8.91065929e-64 + art_sys_29: -3.42246501e-53 + art_sys_30: -2.78171804e-50 + art_sys_31: -1.30119029e-47 + art_sys_32: 1.55434192e-39 + art_sys_33: 4.65804752e-34 + art_sys_34: 4.69641823e-27 + art_sys_35: 3.29228886e-28 + art_sys_36: -9.86779758e-03 + art_sys_37: -1.03627747e-01 + art_sys_38: -1.54657118e-01 + art_sys_39: 1.27783178e-02 + art_sys_40: -6.58143998e-01 + art_sys_41: 7.35546721e-01 + art_sys_42: 1.96312639e+00 + art_sys_43: 7.52009988e-01 + art_sys_44: 1.22387258e-02 + art_sys_45: -1.45993958e-02 + art_sys_46: 7.16458547e-03 + art_sys_47: 1.04586516e-18 + art_sys_48: 1.00918333e-18 + art_sys_49: -2.74170645e-18 art_sys_50: 8.02417357e-04 - art_sys_51: 3.87875802e-04 - art_sys_52: -9.46637343e-19 - art_sys_53: -1.59840021e-19 - art_sys_54: 2.47716503e-19 - art_sys_55: 5.44200293e-19 - art_sys_56: -5.90952057e-20 - art_sys_57: -1.30339185e-15 - art_sys_58: -2.08790723e-16 - art_sys_59: 2.67526102e-16 - art_sys_60: 1.02615750e-04 - art_sys_61: -1.91126462e-17 - art_sys_62: -4.26067818e-18 - art_sys_63: -9.04835843e-19 - art_sys_64: 5.50438968e-19 - art_sys_65: 4.59294518e-19 - art_sys_66: -9.63739191e-06 - art_sys_67: 1.17639386e-20 - art_sys_68: -2.69658299e-20 - art_sys_69: -4.16411987e-06 - art_sys_70: 3.73281543e-18 - art_sys_71: -7.77381362e-17 - art_sys_72: -6.87259750e-17 - art_sys_73: 8.13268167e-07 - art_sys_74: -5.64847270e-15 - art_sys_75: -2.24837267e-19 - art_sys_76: 4.38710063e-19 - art_sys_77: 7.31691730e-20 - art_sys_78: 5.35523630e-20 - art_sys_79: 8.26848049e-20 - art_sys_80: -2.17947618e-15 - art_sys_81: 8.61469779e-21 - art_sys_82: 1.33277583e-20 - art_sys_83: 6.99647779e-21 - art_sys_84: -6.80624633e-19 - art_sys_85: 2.58638030e-21 - art_sys_86: 4.43889807e-22 - art_sys_87: -6.63819844e-18 - art_sys_88: -8.13154353e-18 - art_sys_89: 9.72454456e-18 - art_sys_90: 6.29973471e-15 - art_sys_91: 4.09823944e-16 - art_sys_92: 5.58637308e-09 - art_sys_93: -9.58990268e-16 - art_sys_94: 2.13439194e-09 - art_sys_95: 3.16948290e-17 - art_sys_96: 2.26174999e-18 - art_sys_97: -1.49057690e-09 - art_sys_98: 2.00132780e-17 - art_sys_99: -3.42714637e-17 - art_sys_100: -6.96760440e-10 - art_sys_101: 1.17178518e-16 - art_sys_102: -1.69276790e-18 - art_sys_103: 3.54983136e-10 - art_sys_104: -6.40170419e-17 - art_sys_105: -5.55092072e-18 - art_sys_106: -8.26671966e-17 - art_sys_107: -1.06959971e-16 - art_sys_108: 1.56911910e-10 - art_sys_109: 1.32766098e-15 - art_sys_110: 3.99604332e-18 - art_sys_111: 5.27281120e-15 - art_sys_112: -6.12128380e-11 - art_sys_113: 8.67390100e-19 - art_sys_114: -5.01208983e-15 - art_sys_115: -2.26437478e-11 - art_sys_116: -4.79627489e-16 - art_sys_117: 5.81625495e-19 - art_sys_118: -5.17481011e-15 - art_sys_119: -8.21016942e-12 - art_sys_120: 8.85376522e-16 - art_sys_121: -1.88248902e-16 - art_sys_122: -4.85277827e-16 - art_sys_123: -2.74375089e-12 - art_sys_124: -1.02289661e-17 - art_sys_125: 5.35295842e-17 - art_sys_126: -5.92629825e-16 - art_sys_127: -1.13372472e-16 - art_sys_128: -9.76708806e-13 - art_sys_129: 3.18926608e-13 - art_sys_130: 1.03953473e-13 - art_sys_131: 3.19595812e-14 - art_sys_132: 1.92921980e-16 - art_sys_133: 7.85808455e-17 - art_sys_134: -9.37943834e-15 - art_sys_135: -1.98445266e-16 - art_sys_136: -3.12813683e-15 - art_sys_137: -6.12817608e-17 - art_sys_138: 3.75310300e-16 - art_sys_139: -1.71551084e-17 - art_sys_140: 5.33543060e-19 - art_sys_141: 7.89526561e-17 - art_sys_142: 0.0 - art_sys_143: -1.24954717e-17 - art_sys_144: -4.53227693e-17 - art_sys_145: -5.77065313e-17 - art_sys_146: 3.38069610e-19 - art_sys_147: -9.59351017e-19 - art_sys_148: 1.20611372e-18 - art_sys_149: -3.44814382e-19 - art_sys_150: 2.90762778e-20 - art_sys_151: 3.88135283e-22 - art_sys_152: 1.66098834e-20 - art_sys_153: 1.21691215e-21 - art_sys_154: 2.15190661e-20 - art_sys_155: -4.82779332e-20 - art_sys_156: -2.03374675e-19 - art_sys_157: -1.20246691e-19 - art_sys_158: 0.0 - art_sys_159: 2.43888538e-18 - art_sys_160: 2.43888538e-18 - art_sys_161: 1.97685379e-19 - art_sys_162: -7.32757226e-32 - art_sys_163: -0.0 - art_sys_164: -4.47335854e-32 - art_sys_165: -1.47963538e-27 - art_sys_166: 1.13002595e-27 - art_sys_167: -5.95978707e-29 - art_sys_168: 6.55735645e-29 - art_sys_169: -1.80762327e-29 - art_sys_170: -1.85227849e-29 - art_sys_171: 2.81600402e-28 - art_sys_172: 1.88397588e-27 - art_sys_173: 4.23217186e-28 - art_sys_174: -6.93638021e-32 - art_sys_175: -1.04352172e-29 - art_sys_176: 4.10387085e-29 - art_sys_177: -1.33076668e-29 - art_sys_178: 1.86610169e-32 - art_sys_179: -8.24546291e-30 - art_sys_180: -8.99167384e-31 - art_sys_181: 6.30943231e-32 - art_sys_182: 2.00407606e-32 - art_sys_183: -5.18499312e-34 - art_sys_184: -1.61662674e-34 - art_sys_185: -6.28967917e-33 + art_sys_51: -3.87875802e-04 + art_sys_52: -1.13354036e-18 + art_sys_53: -5.34536425e-19 + art_sys_54: -4.94352026e-20 + art_sys_55: -1.99831585e-19 + art_sys_56: -3.74433207e-19 + art_sys_57: -1.02615750e-04 + art_sys_58: 9.63739191e-06 + art_sys_59: -4.67155718e-20 + art_sys_60: -2.75235645e-19 + art_sys_61: -4.16411990e-06 + art_sys_62: 2.95802232e-19 + art_sys_63: 3.50697465e-19 + art_sys_64: -1.50942281e-15 + art_sys_65: 4.18413402e-16 + art_sys_66: 2.15574546e-16 + art_sys_67: 2.31096904e-17 + art_sys_68: -1.14570608e-18 + art_sys_69: 3.41833770e-19 + art_sys_70: 1.28626094e-19 + art_sys_71: 1.09751249e-19 + art_sys_72: -1.08369883e-20 + art_sys_73: 1.82136948e-20 + art_sys_74: 8.13268167e-07 + art_sys_75: 6.69309175e-21 + art_sys_76: -6.19500715e-19 + art_sys_77: 4.38289169e-20 + art_sys_78: -3.66570937e-20 + art_sys_79: -1.08150148e-20 + art_sys_80: -6.51250591e-20 + art_sys_81: -5.20828866e-20 + art_sys_82: -1.12282975e-17 + art_sys_83: 8.68986618e-21 + art_sys_84: 6.95848113e-21 + art_sys_85: -8.76801598e-22 + art_sys_86: 1.10922308e-21 + art_sys_87: -2.15606670e-16 + art_sys_88: -1.03875421e-17 + art_sys_89: -5.13235535e-22 + art_sys_90: 4.67324876e-19 + art_sys_91: 7.10900769e-19 + art_sys_92: 4.77623066e-22 + art_sys_93: -3.83683781e-23 + art_sys_94: -1.04899701e-17 + art_sys_95: 5.58636852e-09 + art_sys_96: 1.23215413e-17 + art_sys_97: -4.57133537e-18 + art_sys_98: -2.13439146e-09 + art_sys_99: 6.56696446e-18 + art_sys_100: 1.49058224e-09 + art_sys_101: 1.51414038e-15 + art_sys_102: -6.96763913e-10 + art_sys_103: 1.12554661e-15 + art_sys_104: 2.06625441e-15 + art_sys_105: -1.36665548e-18 + art_sys_106: -9.22623917e-15 + art_sys_107: 3.54984204e-10 + art_sys_108: -2.21650333e-18 + art_sys_109: -8.56387697e-18 + art_sys_110: -1.56913638e-10 + art_sys_111: -3.75590474e-17 + art_sys_112: 3.22112426e-15 + art_sys_113: -3.03089652e-16 + art_sys_114: -4.22061274e-18 + art_sys_115: 4.18765356e-17 + art_sys_116: -6.12136784e-11 + art_sys_117: -1.50514553e-17 + art_sys_118: 5.96240880e-16 + art_sys_119: 2.26431278e-11 + art_sys_120: 4.46146510e-16 + art_sys_121: 2.20236635e-18 + art_sys_122: 3.40250051e-16 + art_sys_123: 8.20970157e-12 + art_sys_124: -1.73176896e-16 + art_sys_125: -2.20828544e-18 + art_sys_126: -1.11439529e-16 + art_sys_127: -2.74407443e-12 + art_sys_128: 2.92620463e-16 + art_sys_129: -1.29819944e-20 + art_sys_130: 9.75191427e-13 + art_sys_131: 1.39888754e-18 + art_sys_132: -1.40607085e-15 + art_sys_133: 3.17433842e-13 + art_sys_134: 6.51474795e-16 + art_sys_135: 8.07705245e-17 + art_sys_136: 1.36484873e-19 + art_sys_137: 1.04560201e-13 + art_sys_138: 1.10218664e-16 + art_sys_139: 3.16380958e-14 + art_sys_140: 3.20308075e-20 + art_sys_141: 2.12746336e-16 + art_sys_142: -1.00325252e-16 + art_sys_143: 9.70699971e-15 + art_sys_144: -4.44977854e-19 + art_sys_145: -7.63791367e-17 + art_sys_146: 3.26295325e-15 + art_sys_147: -7.97199917e-20 + art_sys_148: -6.79914816e-21 + art_sys_149: 2.54861764e-17 + art_sys_150: 4.11724692e-16 + art_sys_151: -1.55667354e-17 + art_sys_152: 2.10318072e-20 + art_sys_153: -4.61217430e-17 + art_sys_154: 5.18749365e-17 + art_sys_155: -1.63235993e-20 + art_sys_156: -0.0 + art_sys_157: -2.40373054e-17 + art_sys_158: -0.0 + art_sys_159: -3.47080138e-18 + art_sys_160: -7.83859782e-19 + art_sys_161: 2.28232392e-19 + art_sys_162: 2.28232392e-19 + art_sys_163: 3.01944006e-19 + art_sys_164: 3.01944006e-19 + art_sys_165: -3.32235664e-33 + art_sys_166: 1.09908673e-33 + art_sys_167: 0.0 + art_sys_168: -1.37125454e-27 + art_sys_169: -1.39159593e-27 + art_sys_170: 2.95904435e-29 + art_sys_171: -1.34818327e-27 + art_sys_172: -9.93879016e-29 + art_sys_173: -7.89516224e-30 + art_sys_174: 1.81713466e-29 + art_sys_175: 5.06975398e-31 + art_sys_176: -2.37874257e-31 + art_sys_177: 1.75229313e-29 + art_sys_178: -9.57120412e-31 + art_sys_179: 4.35336832e-33 + art_sys_180: -8.13407277e-32 + art_sys_181: -1.87574609e-30 + art_sys_182: 3.98536820e-32 + art_sys_183: -6.53648020e-34 + art_sys_184: 9.57585295e-34 + art_sys_185: 2.56938249e-35 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -19760,167 +19760,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: 1.61709815e-37 - art_sys_26: -4.12561551e-31 - art_sys_27: -2.14259758e-23 - art_sys_28: 5.23948350e-23 - art_sys_29: 5.67305623e-03 - art_sys_30: 8.85964103e-03 - art_sys_31: 2.68773801e-02 - art_sys_32: -1.78411342e-02 - art_sys_33: -1.75259929e-02 - art_sys_34: 1.34345944e-01 - art_sys_35: -1.11377876e-01 - art_sys_36: 9.59893961e-20 - art_sys_37: -4.69475323e-19 - art_sys_38: 1.54332737e-01 - art_sys_39: -1.72506113e-18 - art_sys_40: 5.19232973e-19 - art_sys_41: -7.17401909e-19 - art_sys_42: 1.86275580e-01 - art_sys_43: 1.74665521e-18 - art_sys_44: -5.97840953e-02 - art_sys_45: -2.54771690e-18 - art_sys_46: 3.55162710e-20 - art_sys_47: 3.97699986e-02 - art_sys_48: -3.36839239e-18 - art_sys_49: -1.16045971e-18 + art_sys_25: -2.59810074e-77 + art_sys_26: -1.36100392e-71 + art_sys_27: 8.54821528e-65 + art_sys_28: -5.11431133e-64 + art_sys_29: -1.96433855e-53 + art_sys_30: -1.59657907e-50 + art_sys_31: -7.46823779e-48 + art_sys_32: 8.92121247e-40 + art_sys_33: 2.67350647e-34 + art_sys_34: 2.69552950e-27 + art_sys_35: 1.88962339e-28 + art_sys_36: -5.67305623e-03 + art_sys_37: -8.85964103e-03 + art_sys_38: -2.68773801e-02 + art_sys_39: 1.78411342e-02 + art_sys_40: -1.75259929e-02 + art_sys_41: -1.34345944e-01 + art_sys_42: 1.11377876e-01 + art_sys_43: 1.54332737e-01 + art_sys_44: -1.86275580e-01 + art_sys_45: 5.97840953e-02 + art_sys_46: -3.97699986e-02 + art_sys_47: 1.94420536e-18 + art_sys_48: -3.66380883e-19 + art_sys_49: -1.45804293e-18 art_sys_50: -3.89194564e-03 - art_sys_51: -1.95752722e-03 - art_sys_52: 1.54541865e-18 - art_sys_53: 1.09701048e-18 - art_sys_54: 1.05798663e-18 - art_sys_55: 3.04800132e-19 - art_sys_56: 8.84083618e-19 - art_sys_57: -2.85321086e-16 - art_sys_58: 3.30932573e-16 - art_sys_59: -3.45807477e-16 - art_sys_60: -5.30203399e-04 - art_sys_61: 2.18305465e-17 - art_sys_62: 7.99552695e-18 - art_sys_63: -1.39750345e-18 - art_sys_64: -2.88207666e-18 - art_sys_65: -2.88601932e-18 - art_sys_66: 4.76445081e-05 - art_sys_67: -6.06499995e-20 - art_sys_68: 1.66321343e-19 - art_sys_69: 2.14607025e-05 - art_sys_70: -1.56920471e-17 - art_sys_71: 3.84895102e-16 - art_sys_72: 3.38880514e-16 - art_sys_73: -4.19695797e-06 - art_sys_74: 2.91130492e-14 - art_sys_75: 8.07431517e-20 - art_sys_76: -1.91110197e-18 - art_sys_77: -4.04753355e-19 - art_sys_78: -2.29771271e-19 - art_sys_79: 2.92887407e-19 - art_sys_80: 1.12329104e-14 - art_sys_81: -3.41316195e-20 - art_sys_82: -6.40930498e-20 - art_sys_83: -3.62759261e-20 - art_sys_84: 3.38736534e-18 - art_sys_85: -1.22099512e-20 - art_sys_86: -5.59696471e-22 - art_sys_87: 3.55205683e-17 - art_sys_88: 4.36313917e-17 - art_sys_89: -5.22711843e-17 - art_sys_90: -3.24665509e-14 - art_sys_91: -2.11551107e-15 - art_sys_92: -2.59890751e-08 - art_sys_93: 4.94256380e-15 - art_sys_94: -1.23789410e-08 - art_sys_95: -1.60449953e-16 - art_sys_96: -1.21905804e-17 - art_sys_97: 7.52765876e-09 - art_sys_98: -1.32119339e-16 - art_sys_99: 1.74858244e-16 - art_sys_100: 3.73649560e-09 - art_sys_101: -5.93645938e-16 - art_sys_102: 9.12296518e-18 - art_sys_103: -1.88350545e-09 - art_sys_104: 3.18442953e-16 - art_sys_105: 2.99770065e-17 - art_sys_106: 4.54905127e-16 - art_sys_107: 4.86135495e-16 - art_sys_108: -8.39783464e-10 - art_sys_109: -6.85723334e-15 - art_sys_110: -2.15873250e-17 - art_sys_111: -2.63163024e-14 - art_sys_112: 3.28583101e-10 - art_sys_113: -4.68608384e-18 - art_sys_114: 2.55066178e-14 - art_sys_115: 1.21710902e-10 - art_sys_116: 2.57057352e-15 - art_sys_117: -3.14228666e-18 - art_sys_118: 2.60878908e-14 - art_sys_119: 4.42545082e-11 - art_sys_120: -4.51337876e-15 - art_sys_121: 1.01032908e-15 - art_sys_122: 2.59342197e-15 - art_sys_123: 1.47984875e-11 - art_sys_124: 5.31511949e-17 - art_sys_125: -2.86305936e-16 - art_sys_126: 3.18511346e-15 - art_sys_127: 6.08635937e-16 - art_sys_128: 5.27395273e-12 - art_sys_129: -1.72328652e-12 - art_sys_130: -5.61861555e-13 - art_sys_131: -1.72820327e-13 - art_sys_132: -1.03520473e-15 - art_sys_133: -4.24010096e-16 - art_sys_134: 5.07216935e-14 - art_sys_135: 1.06554149e-15 - art_sys_136: 1.69197054e-14 - art_sys_137: 3.29729135e-16 - art_sys_138: -2.03029661e-15 - art_sys_139: 9.28161512e-17 - art_sys_140: -2.80380562e-18 - art_sys_141: -4.26777662e-16 - art_sys_142: -0.0 - art_sys_143: 6.71995207e-17 - art_sys_144: 2.44885239e-16 - art_sys_145: 3.11975931e-16 - art_sys_146: -1.82623696e-18 - art_sys_147: 5.18535251e-18 - art_sys_148: -6.46297130e-18 - art_sys_149: 1.86724965e-18 - art_sys_150: -1.56965476e-19 - art_sys_151: -2.80616423e-21 - art_sys_152: -9.01459642e-20 - art_sys_153: -6.60004541e-21 - art_sys_154: -1.16181957e-19 - art_sys_155: 2.60770954e-19 - art_sys_156: 1.09938464e-18 - art_sys_157: 6.50284723e-19 - art_sys_158: -0.0 - art_sys_159: -1.32080698e-17 - art_sys_160: -1.32080698e-17 - art_sys_161: -1.06651564e-18 - art_sys_162: 3.95303419e-31 - art_sys_163: 0.0 - art_sys_164: 2.41322205e-31 - art_sys_165: 6.73297964e-27 - art_sys_166: -5.74511970e-27 - art_sys_167: 1.23590610e-28 - art_sys_168: -2.60216467e-28 - art_sys_169: -3.52460236e-29 - art_sys_170: 1.43772424e-28 - art_sys_171: 4.53065259e-27 - art_sys_172: -1.72919482e-27 - art_sys_173: 7.56589229e-28 - art_sys_174: 3.74952273e-31 - art_sys_175: 1.78119380e-30 - art_sys_176: -1.14441908e-29 - art_sys_177: -2.81498159e-30 - art_sys_178: -2.88805264e-30 - art_sys_179: 4.44569888e-29 - art_sys_180: 4.82220261e-30 - art_sys_181: -6.20109412e-31 - art_sys_182: 4.19340910e-31 - art_sys_183: 5.45864766e-33 - art_sys_184: 8.65432270e-34 - art_sys_185: 3.39683586e-32 + art_sys_51: 1.95752722e-03 + art_sys_52: -2.76369044e-19 + art_sys_53: 1.68839987e-18 + art_sys_54: -4.06775350e-19 + art_sys_55: -1.82821377e-20 + art_sys_56: 4.25295076e-19 + art_sys_57: 5.30203399e-04 + art_sys_58: -4.76445081e-05 + art_sys_59: 4.54167388e-19 + art_sys_60: -3.75237580e-19 + art_sys_61: 2.14607026e-05 + art_sys_62: -1.58102985e-19 + art_sys_63: 3.41340634e-19 + art_sys_64: 8.94483368e-16 + art_sys_65: -6.67429556e-16 + art_sys_66: 9.84103906e-19 + art_sys_67: -3.92152562e-17 + art_sys_68: 1.99572113e-19 + art_sys_69: -1.39041885e-18 + art_sys_70: -1.15262531e-18 + art_sys_71: -5.61413821e-19 + art_sys_72: 3.18243843e-20 + art_sys_73: -4.09888938e-20 + art_sys_74: -4.19695797e-06 + art_sys_75: -2.31517997e-21 + art_sys_76: 2.90436498e-18 + art_sys_77: -3.34072158e-19 + art_sys_78: 2.32644278e-19 + art_sys_79: 1.66474370e-20 + art_sys_80: 3.29359602e-19 + art_sys_81: -4.88051691e-20 + art_sys_82: 5.82630165e-17 + art_sys_83: -4.17008434e-20 + art_sys_84: -3.26091356e-20 + art_sys_85: 3.85491359e-21 + art_sys_86: -5.04965640e-21 + art_sys_87: 1.08775188e-15 + art_sys_88: 5.51129938e-17 + art_sys_89: 2.55984492e-21 + art_sys_90: -2.49937374e-18 + art_sys_91: -3.27650276e-18 + art_sys_92: -2.53692742e-21 + art_sys_93: 3.35977515e-22 + art_sys_94: 5.63770944e-17 + art_sys_95: -2.59890495e-08 + art_sys_96: -5.73497907e-17 + art_sys_97: 2.05725455e-17 + art_sys_98: 1.23789390e-08 + art_sys_99: 1.53101586e-16 + art_sys_100: -7.52768604e-09 + art_sys_101: -7.62325744e-15 + art_sys_102: 3.73651422e-09 + art_sys_103: -5.72478757e-15 + art_sys_104: -9.57366842e-15 + art_sys_105: 7.38080802e-18 + art_sys_106: 4.93350976e-14 + art_sys_107: -1.88351113e-09 + art_sys_108: 1.19658914e-17 + art_sys_109: 4.62419171e-17 + art_sys_110: 8.39792717e-10 + art_sys_111: -1.05400730e-15 + art_sys_112: -1.72387204e-14 + art_sys_113: 1.62538831e-15 + art_sys_114: 2.27990558e-17 + art_sys_115: -1.95984467e-16 + art_sys_116: 3.28587626e-10 + art_sys_117: 8.13284582e-17 + art_sys_118: -3.17761987e-15 + art_sys_119: -1.21707570e-10 + art_sys_120: -2.38866844e-15 + art_sys_121: -1.18969412e-17 + art_sys_122: -1.82973369e-15 + art_sys_123: -4.42519863e-11 + art_sys_124: 9.29261661e-16 + art_sys_125: 1.19355339e-17 + art_sys_126: 5.98849436e-16 + art_sys_127: 1.48002374e-11 + art_sys_128: -1.56304439e-15 + art_sys_129: 7.18406065e-20 + art_sys_130: -5.26577270e-12 + art_sys_131: -7.56378863e-18 + art_sys_132: 7.52484658e-15 + art_sys_133: -1.71523308e-12 + art_sys_134: -3.50212105e-15 + art_sys_135: -4.31893361e-16 + art_sys_136: -7.37918820e-19 + art_sys_137: -5.65136790e-13 + art_sys_138: -5.93489388e-16 + art_sys_139: -1.71084977e-13 + art_sys_140: -1.72906030e-19 + art_sys_141: -1.14978270e-15 + art_sys_142: 5.39254949e-16 + art_sys_143: -5.24901767e-14 + art_sys_144: 2.40114206e-18 + art_sys_145: 4.11024848e-16 + art_sys_146: -1.76479414e-14 + art_sys_147: 4.31135203e-19 + art_sys_148: 3.67486181e-20 + art_sys_149: -1.36593335e-16 + art_sys_150: -2.22717419e-15 + art_sys_151: 8.37880079e-17 + art_sys_152: -1.13896127e-19 + art_sys_153: 2.49338397e-16 + art_sys_154: -2.78543822e-16 + art_sys_155: 8.83154821e-20 + art_sys_156: 0.0 + art_sys_157: 1.29076880e-16 + art_sys_158: 0.0 + art_sys_159: 1.86628617e-17 + art_sys_160: 4.21091776e-18 + art_sys_161: -1.23566862e-18 + art_sys_162: -1.23566862e-18 + art_sys_163: -1.62439390e-18 + art_sys_164: -1.62439390e-18 + art_sys_165: 1.78866714e-32 + art_sys_166: -5.91766348e-33 + art_sys_167: -0.0 + art_sys_168: 5.17257275e-27 + art_sys_169: 6.54532849e-27 + art_sys_170: 4.31968675e-28 + art_sys_171: 2.23567943e-27 + art_sys_172: 3.72867074e-28 + art_sys_173: 6.80577063e-30 + art_sys_174: 2.75499010e-30 + art_sys_175: -1.96398092e-30 + art_sys_176: 3.51508836e-30 + art_sys_177: -9.47394323e-29 + art_sys_178: 5.14293396e-30 + art_sys_179: -2.35553325e-32 + art_sys_180: 4.37437642e-31 + art_sys_181: 1.00563395e-29 + art_sys_182: 4.39422547e-31 + art_sys_183: 1.24454990e-32 + art_sys_184: -5.06846625e-33 + art_sys_185: -1.38704200e-34 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -20051,167 +20051,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: 2.96583378e-38 - art_sys_26: -7.56657214e-32 - art_sys_27: -3.92962434e-24 - art_sys_28: 9.60945822e-24 - art_sys_29: 1.04046512e-03 - art_sys_30: -1.27321525e-03 - art_sys_31: 1.77953259e-04 - art_sys_32: -2.30380582e-03 - art_sys_33: 3.41186608e-02 - art_sys_34: 5.23935428e-02 - art_sys_35: 1.18339460e-01 - art_sys_36: -5.89850742e-19 - art_sys_37: 4.50837784e-19 - art_sys_38: -5.01272356e-02 - art_sys_39: 5.27073401e-19 - art_sys_40: -1.27115374e-19 - art_sys_41: 4.86602308e-19 - art_sys_42: 1.30876649e-01 - art_sys_43: 1.32974032e-18 - art_sys_44: 9.07651704e-02 - art_sys_45: -7.35606166e-19 - art_sys_46: -1.79475767e-18 - art_sys_47: -5.32094854e-02 - art_sys_48: 2.86437896e-19 - art_sys_49: -2.01930695e-18 + art_sys_25: -4.76257754e-78 + art_sys_26: -2.49485579e-72 + art_sys_27: 1.56697304e-65 + art_sys_28: -9.37504226e-65 + art_sys_29: -3.60082830e-54 + art_sys_30: -2.92668852e-51 + art_sys_31: -1.36900240e-48 + art_sys_32: 1.63534714e-40 + art_sys_33: 4.90080375e-35 + art_sys_34: 4.94117416e-28 + art_sys_35: 3.46386797e-29 + art_sys_36: -1.04046512e-03 + art_sys_37: 1.27321525e-03 + art_sys_38: -1.77953259e-04 + art_sys_39: 2.30380582e-03 + art_sys_40: 3.41186608e-02 + art_sys_41: -5.23935428e-02 + art_sys_42: -1.18339460e-01 + art_sys_43: -5.01272356e-02 + art_sys_44: -1.30876649e-01 + art_sys_45: -9.07651704e-02 + art_sys_46: 5.32094854e-02 + art_sys_47: 3.57728032e-18 + art_sys_48: 7.16133485e-19 + art_sys_49: 1.98176311e-18 art_sys_50: 9.87293354e-03 - art_sys_51: 4.54523682e-03 - art_sys_52: -1.37189182e-18 - art_sys_53: 3.35421262e-19 - art_sys_54: -1.99070091e-19 - art_sys_55: -7.96472190e-20 - art_sys_56: 5.66093762e-19 - art_sys_57: 1.24083539e-15 - art_sys_58: -4.86602657e-16 - art_sys_59: 5.89549758e-16 - art_sys_60: 1.42928271e-03 - art_sys_61: 3.29358120e-17 - art_sys_62: -2.83576477e-17 - art_sys_63: 2.97008268e-18 - art_sys_64: 7.33953663e-18 - art_sys_65: 7.72342967e-18 - art_sys_66: -1.40735383e-04 - art_sys_67: 1.86354022e-19 - art_sys_68: -4.35568734e-19 - art_sys_69: -6.18706280e-05 - art_sys_70: 4.00554406e-17 - art_sys_71: -1.13749801e-15 - art_sys_72: -1.00181809e-15 - art_sys_73: 1.27466532e-05 - art_sys_74: -8.39290762e-14 - art_sys_75: -5.04798531e-19 - art_sys_76: 6.16208610e-18 - art_sys_77: 1.20895129e-18 - art_sys_78: 7.15355661e-19 - art_sys_79: 5.87669582e-21 - art_sys_80: -3.23823529e-14 - art_sys_81: 1.07589804e-19 - art_sys_82: 1.96312141e-19 - art_sys_83: 1.06227468e-19 - art_sys_84: -8.82103791e-18 - art_sys_85: 3.58685740e-20 - art_sys_86: 3.08756791e-21 - art_sys_87: -1.11637055e-16 - art_sys_88: -1.38282013e-16 - art_sys_89: 1.66257543e-16 - art_sys_90: 9.36000153e-14 - art_sys_91: 6.41542919e-15 - art_sys_92: 8.10088728e-08 - art_sys_93: -1.42499026e-14 - art_sys_94: 3.53674976e-08 - art_sys_95: 4.87615915e-16 - art_sys_96: 3.88745526e-17 - art_sys_97: -2.38329022e-08 - art_sys_98: 3.51966463e-16 - art_sys_99: -5.03466718e-16 - art_sys_100: -1.14457108e-08 - art_sys_101: 1.88781080e-15 - art_sys_102: -2.91645595e-17 - art_sys_103: 5.92423829e-09 - art_sys_104: -9.92044141e-16 - art_sys_105: -9.59659594e-17 - art_sys_106: -1.33000860e-15 - art_sys_107: -1.58640695e-15 - art_sys_108: 2.63996566e-09 - art_sys_109: 2.14491147e-14 - art_sys_110: 6.91730991e-17 - art_sys_111: 8.40459988e-14 - art_sys_112: -1.04093245e-09 - art_sys_113: 1.50110794e-17 - art_sys_114: -8.03148844e-14 - art_sys_115: -3.87136164e-10 - art_sys_116: -8.08031367e-15 - art_sys_117: 1.00739300e-17 - art_sys_118: -8.26555193e-14 - art_sys_119: -1.41113934e-10 - art_sys_120: 1.42733277e-14 - art_sys_121: -3.19884860e-15 - art_sys_122: -8.14946656e-15 - art_sys_123: -4.73277409e-11 - art_sys_124: -1.66850743e-16 - art_sys_125: 9.03976573e-16 - art_sys_126: -1.01274099e-14 - art_sys_127: -1.92796487e-15 - art_sys_128: -1.68861147e-11 - art_sys_129: 5.52462993e-12 - art_sys_130: 1.80268666e-12 - art_sys_131: 5.54714100e-13 - art_sys_132: 3.27722309e-15 - art_sys_133: 1.35672542e-15 - art_sys_134: -1.62876569e-13 - art_sys_135: -3.37975714e-15 - art_sys_136: -5.43402730e-14 - art_sys_137: -1.04920372e-15 - art_sys_138: 6.52218575e-15 - art_sys_139: -2.98125213e-16 - art_sys_140: 8.48761152e-18 - art_sys_141: 1.36971575e-15 - art_sys_142: 0.0 - art_sys_143: -2.13191209e-16 - art_sys_144: -7.85157522e-16 - art_sys_145: -1.00139728e-15 - art_sys_146: 5.85501081e-18 - art_sys_147: -1.66337604e-17 - art_sys_148: 2.04719101e-17 - art_sys_149: -6.00643699e-18 - art_sys_150: 5.02833520e-19 - art_sys_151: 1.19281598e-20 - art_sys_152: 2.91010686e-19 - art_sys_153: 2.12782048e-20 - art_sys_154: 3.72220055e-19 - art_sys_155: -8.35917480e-19 - art_sys_156: -3.52873631e-18 - art_sys_157: -2.08808125e-18 - art_sys_158: 0.0 - art_sys_159: 4.24203492e-17 - art_sys_160: 4.24203492e-17 - art_sys_161: 3.41533657e-18 - art_sys_162: -1.26583451e-30 - art_sys_163: -0.0 - art_sys_164: -7.72745635e-31 - art_sys_165: -2.18219869e-26 - art_sys_166: 1.84189830e-26 - art_sys_167: -3.87172446e-28 - art_sys_168: 8.21154820e-28 - art_sys_169: 2.60957738e-28 - art_sys_170: -8.25840363e-28 - art_sys_171: -9.95712810e-27 - art_sys_172: 1.06981232e-26 - art_sys_173: -2.75558841e-27 - art_sys_174: -1.20337925e-30 - art_sys_175: 3.00339914e-29 - art_sys_176: -9.06195661e-29 - art_sys_177: 2.90144967e-29 - art_sys_178: 1.07762012e-29 - art_sys_179: -1.42783481e-28 - art_sys_180: -1.56706757e-29 - art_sys_181: 1.92749910e-30 - art_sys_182: -1.37700513e-30 - art_sys_183: -1.74885391e-32 - art_sys_184: -2.77933602e-33 - art_sys_185: -1.08881839e-31 + art_sys_51: -4.54523682e-03 + art_sys_52: -6.72985297e-19 + art_sys_53: -1.21675870e-18 + art_sys_54: -1.29872938e-18 + art_sys_55: -5.51257103e-19 + art_sys_56: -6.24032618e-20 + art_sys_57: -1.42928271e-03 + art_sys_58: 1.40735383e-04 + art_sys_59: -4.93618279e-20 + art_sys_60: 2.64566739e-19 + art_sys_61: -6.18706285e-05 + art_sys_62: 3.28051470e-19 + art_sys_63: 2.48455079e-19 + art_sys_64: -6.90172194e-15 + art_sys_65: 3.56769266e-16 + art_sys_66: -3.77124650e-17 + art_sys_67: 1.65809552e-17 + art_sys_68: 8.41185180e-19 + art_sys_69: 1.99154683e-18 + art_sys_70: 3.32222861e-18 + art_sys_71: 1.69308745e-18 + art_sys_72: -1.03771668e-19 + art_sys_73: 1.28333435e-19 + art_sys_74: 1.27466532e-05 + art_sys_75: -3.62224749e-21 + art_sys_76: -9.11500662e-18 + art_sys_77: 8.13848638e-19 + art_sys_78: -6.68862808e-19 + art_sys_79: 2.31369678e-20 + art_sys_80: -1.00133545e-18 + art_sys_81: 2.87867709e-20 + art_sys_82: -1.76736708e-16 + art_sys_83: 1.30418676e-19 + art_sys_84: 1.04858932e-19 + art_sys_85: -1.03871163e-20 + art_sys_86: 1.55954252e-20 + art_sys_87: -3.44355181e-15 + art_sys_88: -1.73510927e-16 + art_sys_89: -7.60607921e-21 + art_sys_90: 7.85828884e-18 + art_sys_91: 9.93927565e-18 + art_sys_92: 7.60758265e-21 + art_sys_93: -8.14454825e-22 + art_sys_94: -1.79320005e-16 + art_sys_95: 8.10087988e-08 + art_sys_96: 1.78551582e-16 + art_sys_97: -6.49496016e-17 + art_sys_98: -3.53674908e-08 + art_sys_99: -2.34262376e-16 + art_sys_100: 2.38329879e-08 + art_sys_101: 2.41960222e-14 + art_sys_102: -1.14457678e-08 + art_sys_103: 1.80278142e-14 + art_sys_104: 2.99067004e-14 + art_sys_105: -2.36320284e-17 + art_sys_106: -1.51168476e-13 + art_sys_107: 5.92425618e-09 + art_sys_108: -3.83135248e-17 + art_sys_109: -1.48055903e-16 + art_sys_110: -2.63999475e-09 + art_sys_111: 1.67420667e-15 + art_sys_112: 5.41908255e-14 + art_sys_113: -4.97890215e-15 + art_sys_114: -7.30497935e-17 + art_sys_115: 6.56330501e-16 + art_sys_116: -1.04094692e-09 + art_sys_117: -2.60719864e-16 + art_sys_118: 9.89016316e-15 + art_sys_119: 3.87125577e-10 + art_sys_120: 7.51365205e-15 + art_sys_121: 3.81149061e-17 + art_sys_122: 5.44377108e-15 + art_sys_123: 1.41105893e-10 + art_sys_124: -2.83922176e-15 + art_sys_125: -3.82907764e-17 + art_sys_126: -1.90362790e-15 + art_sys_127: -4.73333488e-11 + art_sys_128: 4.91036708e-15 + art_sys_129: -2.38946328e-19 + art_sys_130: 1.68599675e-11 + art_sys_131: 2.42770997e-17 + art_sys_132: -2.36504185e-14 + art_sys_133: 5.49886182e-12 + art_sys_134: 1.11414958e-14 + art_sys_135: 1.35582129e-15 + art_sys_136: 2.37047941e-18 + art_sys_137: 1.81317343e-12 + art_sys_138: 1.88990546e-15 + art_sys_139: 5.49158733e-13 + art_sys_140: 5.53530051e-19 + art_sys_141: 3.68730579e-15 + art_sys_142: -1.71193077e-15 + art_sys_143: 1.68538835e-13 + art_sys_144: -7.68306503e-18 + art_sys_145: -1.31147769e-15 + art_sys_146: 5.66748151e-14 + art_sys_147: -1.38444449e-18 + art_sys_148: -1.17982699e-19 + art_sys_149: 4.31537333e-16 + art_sys_150: 7.15456685e-15 + art_sys_151: -2.67220642e-16 + art_sys_152: 3.66205416e-19 + art_sys_153: -8.00555551e-16 + art_sys_154: 8.75865544e-16 + art_sys_155: -2.84531796e-19 + art_sys_156: -0.0 + art_sys_157: -4.09541063e-16 + art_sys_158: -0.0 + art_sys_159: -5.94579432e-17 + art_sys_160: -1.33782087e-17 + art_sys_161: 3.97983515e-18 + art_sys_162: 3.97983515e-18 + art_sys_163: 5.17770331e-18 + art_sys_164: 5.17770331e-18 + art_sys_165: -5.70821862e-32 + art_sys_166: 1.88874660e-32 + art_sys_167: 0.0 + art_sys_168: -1.90739770e-26 + art_sys_169: -2.10270913e-26 + art_sys_170: -1.45665988e-27 + art_sys_171: -1.15602008e-26 + art_sys_172: -1.36948992e-27 + art_sys_173: -3.83714903e-29 + art_sys_174: -5.43196256e-29 + art_sys_175: 1.21162123e-29 + art_sys_176: -1.23744942e-29 + art_sys_177: 3.03964432e-28 + art_sys_178: -1.64588396e-29 + art_sys_179: 7.60256710e-32 + art_sys_180: -1.39389068e-30 + art_sys_181: -3.21720922e-29 + art_sys_182: -1.60116015e-30 + art_sys_183: -3.93454881e-32 + art_sys_184: 1.62484389e-32 + art_sys_185: 4.45507387e-34 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -20342,167 +20342,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: 1.78229873e-39 - art_sys_26: -4.54708285e-33 - art_sys_27: -2.36148247e-25 - art_sys_28: 5.77474210e-25 - art_sys_29: 6.25260902e-05 - art_sys_30: -9.27358711e-04 - art_sys_31: -1.60894948e-03 - art_sys_32: 6.72756584e-04 - art_sys_33: 5.44724727e-03 - art_sys_34: -7.90026173e-03 - art_sys_35: 1.72286726e-02 - art_sys_36: -4.92521695e-20 - art_sys_37: 7.97123037e-20 - art_sys_38: -1.88381027e-02 - art_sys_39: 2.05052116e-19 - art_sys_40: -6.63488821e-20 - art_sys_41: 1.13868620e-19 - art_sys_42: -1.99107516e-03 - art_sys_43: -1.34827359e-20 - art_sys_44: 1.53721278e-01 - art_sys_45: 8.24745450e-19 - art_sys_46: -4.06994601e-18 - art_sys_47: 4.54216246e-02 - art_sys_48: 2.40028355e-18 - art_sys_49: -2.70963526e-18 + art_sys_25: -2.85481662e-79 + art_sys_26: -1.49548343e-73 + art_sys_27: 9.39285639e-67 + art_sys_28: -5.61965163e-66 + art_sys_29: -2.15843300e-55 + art_sys_30: -1.75433555e-52 + art_sys_31: -8.20616737e-50 + art_sys_32: 9.80270911e-42 + art_sys_33: 2.93767314e-36 + art_sys_34: 2.96187224e-29 + art_sys_35: 2.07633531e-30 + art_sys_36: -6.25260902e-05 + art_sys_37: 9.27358711e-04 + art_sys_38: 1.60894948e-03 + art_sys_39: -6.72756584e-04 + art_sys_40: 5.44724727e-03 + art_sys_41: 7.90026173e-03 + art_sys_42: -1.72286726e-02 + art_sys_43: -1.88381027e-02 + art_sys_44: 1.99107516e-03 + art_sys_45: -1.53721278e-01 + art_sys_46: -4.54216246e-02 + art_sys_47: -9.18272385e-20 + art_sys_48: 4.65724278e-19 + art_sys_49: 2.50429925e-18 art_sys_50: -6.78022102e-03 - art_sys_51: -6.32350215e-03 - art_sys_52: -1.83940143e-18 - art_sys_53: 9.90987103e-19 - art_sys_54: -1.93637180e-18 - art_sys_55: -7.69669106e-19 - art_sys_56: 1.18105195e-18 - art_sys_57: 2.68548600e-15 - art_sys_58: 3.93732985e-16 - art_sys_59: -1.05212913e-15 - art_sys_60: -2.31400006e-03 - art_sys_61: -4.49144998e-17 - art_sys_62: 5.70294402e-17 - art_sys_63: -2.39835979e-18 - art_sys_64: -1.49541650e-17 - art_sys_65: -1.48683471e-17 - art_sys_66: 2.62143341e-04 - art_sys_67: -3.83889272e-19 - art_sys_68: 9.56293957e-19 - art_sys_69: 1.22267369e-04 - art_sys_70: -5.61147643e-17 - art_sys_71: 2.11982262e-15 - art_sys_72: 1.86510296e-15 - art_sys_73: -2.68416326e-05 - art_sys_74: 1.65871638e-13 - art_sys_75: 4.57734969e-19 - art_sys_76: -1.69471125e-17 - art_sys_77: -3.25689428e-18 - art_sys_78: -1.96265815e-18 - art_sys_79: 1.89965352e-20 - art_sys_80: 6.39888540e-14 - art_sys_81: -3.16853602e-19 - art_sys_82: -5.33755456e-19 - art_sys_83: -2.88983123e-19 - art_sys_84: 2.15175029e-17 - art_sys_85: -9.85105052e-20 - art_sys_86: -1.31666685e-20 - art_sys_87: 2.92617368e-16 - art_sys_88: 3.66271283e-16 - art_sys_89: -4.41623176e-16 - art_sys_90: -1.84969889e-13 - art_sys_91: -1.34862573e-14 - art_sys_92: -2.20623920e-07 - art_sys_93: 2.81616460e-14 - art_sys_94: -9.14156824e-08 - art_sys_95: -1.08305879e-15 - art_sys_96: -1.03362258e-16 - art_sys_97: 6.15417374e-08 - art_sys_98: -1.10233603e-15 - art_sys_99: 1.07776861e-15 - art_sys_100: 3.03840089e-08 - art_sys_101: -4.85136838e-15 - art_sys_102: 7.75396940e-17 - art_sys_103: -1.55447598e-08 - art_sys_104: 2.57069461e-15 - art_sys_105: 2.55438585e-16 - art_sys_106: 3.42617348e-15 - art_sys_107: 2.57073826e-15 - art_sys_108: -7.00463600e-09 - art_sys_109: -5.59553629e-14 - art_sys_110: -1.84125283e-16 - art_sys_111: -2.16931201e-13 - art_sys_112: 2.75718532e-09 - art_sys_113: -3.99560866e-17 - art_sys_114: 2.07532302e-13 - art_sys_115: 1.02836095e-09 - art_sys_116: 2.14836360e-14 - art_sys_117: -2.68156853e-17 - art_sys_118: 2.13184049e-13 - art_sys_119: 3.75196912e-10 - art_sys_120: -3.69652679e-14 - art_sys_121: 8.46956048e-15 - art_sys_122: 2.14382018e-14 - art_sys_123: 1.25866587e-10 - art_sys_124: 4.44556199e-16 - art_sys_125: -2.39183863e-15 - art_sys_126: 2.68942208e-14 - art_sys_127: 5.10578299e-15 - art_sys_128: 4.49473642e-11 - art_sys_129: -1.47054548e-11 - art_sys_130: -4.79982695e-12 - art_sys_131: -1.47717194e-12 - art_sys_132: -8.67723797e-15 - art_sys_133: -3.60891434e-15 - art_sys_134: 4.33726434e-13 - art_sys_135: 8.96147778e-15 - art_sys_136: 1.44722823e-13 - art_sys_137: 2.78377183e-15 - art_sys_138: -1.73709397e-14 - art_sys_139: 7.93960870e-16 - art_sys_140: -1.95383662e-17 - art_sys_141: -3.64620665e-15 - art_sys_142: -0.0 - art_sys_143: 5.64133370e-16 - art_sys_144: 2.08946962e-15 - art_sys_145: 2.66592526e-15 - art_sys_146: -1.55844784e-17 - art_sys_147: 4.42885778e-17 - art_sys_148: -5.42632172e-17 - art_sys_149: 1.60020886e-17 - art_sys_150: -1.33727688e-18 - art_sys_151: -3.52477664e-20 - art_sys_152: -7.76374750e-19 - art_sys_153: -5.67493417e-20 - art_sys_154: -9.90353947e-19 - art_sys_155: 2.22459898e-18 - art_sys_156: 9.39372580e-18 - art_sys_157: 5.55993278e-18 - art_sys_158: -0.0 - art_sys_159: -1.13070398e-16 - art_sys_160: -1.13070398e-16 - art_sys_161: -9.08406529e-18 - art_sys_162: 3.36671668e-30 - art_sys_163: 0.0 - art_sys_164: 2.05522619e-30 - art_sys_165: 5.84188766e-26 - art_sys_166: -4.91090614e-26 - art_sys_167: 1.03463608e-27 - art_sys_168: -2.18752957e-27 - art_sys_169: -7.20447993e-28 - art_sys_170: 2.30304693e-27 - art_sys_171: 1.96634243e-26 - art_sys_172: -2.14417998e-26 - art_sys_173: 3.61111054e-27 - art_sys_174: 3.20344764e-30 - art_sys_175: -1.56752535e-28 - art_sys_176: 2.57881992e-28 - art_sys_177: -4.41459891e-29 - art_sys_178: -2.57104884e-29 - art_sys_179: 3.79143713e-28 - art_sys_180: 4.16675067e-29 - art_sys_181: -5.06328044e-30 - art_sys_182: 3.35071629e-30 - art_sys_183: 4.43142472e-32 - art_sys_184: 7.40802255e-33 - art_sys_185: 2.89773507e-31 + art_sys_51: 6.32350215e-03 + art_sys_52: 4.33767323e-19 + art_sys_53: -2.01700203e-18 + art_sys_54: -7.85019316e-20 + art_sys_55: 7.05087276e-19 + art_sys_56: 4.85366437e-21 + art_sys_57: 2.31400006e-03 + art_sys_58: -2.62143341e-04 + art_sys_59: -9.20250851e-19 + art_sys_60: 2.34508367e-19 + art_sys_61: 1.22267370e-04 + art_sys_62: 2.98827425e-20 + art_sys_63: -1.09659743e-19 + art_sys_64: -4.54279755e-16 + art_sys_65: -1.98646126e-16 + art_sys_66: 1.87884818e-16 + art_sys_67: 5.28005530e-17 + art_sys_68: -1.10484550e-18 + art_sys_69: -6.86767008e-18 + art_sys_70: -6.76711514e-18 + art_sys_71: -3.55563836e-18 + art_sys_72: 2.05456970e-19 + art_sys_73: -2.62563645e-19 + art_sys_74: -2.68416326e-05 + art_sys_75: 2.48432291e-20 + art_sys_76: 2.44492506e-17 + art_sys_77: -2.13625768e-18 + art_sys_78: 1.67951263e-18 + art_sys_79: -1.10097969e-19 + art_sys_80: 2.62165202e-18 + art_sys_81: -8.31114037e-20 + art_sys_82: 3.72725596e-16 + art_sys_83: -3.51682730e-19 + art_sys_84: -2.78109829e-19 + art_sys_85: 3.25686326e-20 + art_sys_86: -4.25243667e-20 + art_sys_87: 8.89642062e-15 + art_sys_88: 4.55562089e-16 + art_sys_89: 2.04445127e-20 + art_sys_90: -2.08633847e-17 + art_sys_91: -2.11068084e-17 + art_sys_92: -1.99155664e-20 + art_sys_93: 1.94779895e-21 + art_sys_94: 4.76334949e-16 + art_sys_95: -2.20623728e-07 + art_sys_96: -4.81378745e-16 + art_sys_97: 1.91061202e-16 + art_sys_98: 9.14156638e-08 + art_sys_99: 2.68335140e-16 + art_sys_100: -6.15419587e-08 + art_sys_101: -6.24797013e-14 + art_sys_102: 3.03841603e-08 + art_sys_103: -4.65542650e-14 + art_sys_104: -8.15383790e-14 + art_sys_105: 6.29025419e-17 + art_sys_106: 4.01479238e-13 + art_sys_107: -1.55448069e-08 + art_sys_108: 1.01979079e-16 + art_sys_109: 3.94095801e-16 + art_sys_110: 7.00471318e-09 + art_sys_111: -2.10265002e-15 + art_sys_112: -1.43778575e-13 + art_sys_113: 1.32173277e-14 + art_sys_114: 1.94438277e-16 + art_sys_115: -1.53764061e-15 + art_sys_116: 2.75722391e-09 + art_sys_117: 6.93973424e-16 + art_sys_118: -2.61389096e-14 + art_sys_119: -1.02833285e-09 + art_sys_120: -1.99376300e-14 + art_sys_121: -1.01427022e-16 + art_sys_122: -1.44699123e-14 + art_sys_123: -3.75175531e-10 + art_sys_124: 7.54187674e-15 + art_sys_125: 1.01947762e-16 + art_sys_126: 5.05981657e-15 + art_sys_127: 1.25881540e-10 + art_sys_128: -1.29975328e-14 + art_sys_129: 6.43444996e-19 + art_sys_130: -4.48778443e-11 + art_sys_131: -6.46478294e-17 + art_sys_132: 6.27519623e-14 + art_sys_133: -1.46369180e-11 + art_sys_134: -2.95985653e-14 + art_sys_135: -3.59727073e-15 + art_sys_136: -6.31202003e-18 + art_sys_137: -4.82772783e-12 + art_sys_138: -5.01840857e-15 + art_sys_139: -1.46239097e-12 + art_sys_140: -1.47311336e-18 + art_sys_141: -9.81712283e-15 + art_sys_142: 4.54098802e-15 + art_sys_143: -4.48794748e-13 + art_sys_144: 2.04402293e-17 + art_sys_145: 3.49112195e-15 + art_sys_146: -1.50935453e-13 + art_sys_147: 3.68688883e-18 + art_sys_148: 3.14090039e-19 + art_sys_149: -1.14140121e-15 + art_sys_150: -1.90546409e-14 + art_sys_151: 7.10157408e-16 + art_sys_152: -9.75708602e-19 + art_sys_153: 2.13123190e-15 + art_sys_154: -2.32264100e-15 + art_sys_155: 7.57679622e-19 + art_sys_156: 0.0 + art_sys_157: 1.08605875e-15 + art_sys_158: 0.0 + art_sys_159: 1.57890772e-16 + art_sys_160: 3.54894921e-17 + art_sys_161: -1.05942502e-17 + art_sys_162: -1.05942502e-17 + art_sys_163: -1.37550792e-17 + art_sys_164: -1.37550792e-17 + art_sys_165: 1.51679985e-31 + art_sys_166: -5.01897659e-32 + art_sys_167: -0.0 + art_sys_168: 4.29083188e-26 + art_sys_169: 5.55445259e-26 + art_sys_170: 4.29057460e-27 + art_sys_171: 3.59583377e-26 + art_sys_172: 5.03176850e-27 + art_sys_173: 2.98302467e-28 + art_sys_174: 1.96046461e-28 + art_sys_175: -3.32113711e-29 + art_sys_176: 3.34640978e-29 + art_sys_177: -8.09295429e-28 + art_sys_178: 4.38044825e-29 + art_sys_179: -2.02464305e-31 + art_sys_180: 3.70185884e-30 + art_sys_181: 8.56299451e-29 + art_sys_182: 4.86288348e-30 + art_sys_183: 1.04342835e-31 + art_sys_184: -4.33184439e-32 + art_sys_185: -1.18662432e-33 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -20633,167 +20633,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: -4.44106748e-40 - art_sys_26: 1.13302565e-33 - art_sys_27: 5.88425656e-26 - art_sys_28: -1.43892934e-25 - art_sys_29: -1.55800211e-05 - art_sys_30: -1.62703973e-04 - art_sys_31: -3.55604768e-04 - art_sys_32: 2.23323412e-04 - art_sys_33: -1.46059140e-03 - art_sys_34: -4.95002921e-03 - art_sys_35: -6.61681903e-03 - art_sys_36: 3.71862085e-20 - art_sys_37: -1.32074054e-20 - art_sys_38: 2.03289127e-03 - art_sys_39: -1.94771334e-20 - art_sys_40: 2.68486134e-21 - art_sys_41: -2.70464135e-20 - art_sys_42: -1.56411332e-02 - art_sys_43: -1.54523030e-19 - art_sys_44: 9.96604937e-03 - art_sys_45: 7.83461847e-20 - art_sys_46: -6.80277640e-19 - art_sys_47: 3.14408475e-02 - art_sys_48: 2.09400337e-19 - art_sys_49: -1.21404141e-19 + art_sys_25: 7.14696040e-80 + art_sys_26: 3.74390451e-74 + art_sys_27: -2.35147756e-67 + art_sys_28: 1.40686540e-66 + art_sys_29: 5.40358177e-56 + art_sys_30: 4.39193413e-53 + art_sys_31: 2.05439299e-50 + art_sys_32: -2.45408313e-42 + art_sys_33: -7.35438948e-37 + art_sys_34: -7.41497132e-30 + art_sys_35: -5.19805229e-31 + art_sys_36: 1.55800211e-05 + art_sys_37: 1.62703973e-04 + art_sys_38: 3.55604768e-04 + art_sys_39: -2.23323412e-04 + art_sys_40: -1.46059140e-03 + art_sys_41: 4.95002921e-03 + art_sys_42: 6.61681903e-03 + art_sys_43: 2.03289127e-03 + art_sys_44: 1.56411332e-02 + art_sys_45: -9.96604937e-03 + art_sys_46: -3.14408475e-02 + art_sys_47: -7.93291410e-19 + art_sys_48: 5.89896919e-19 + art_sys_49: -2.11777226e-20 art_sys_50: 3.39522923e-02 - art_sys_51: 1.41063609e-02 - art_sys_52: -1.70542173e-18 - art_sys_53: 5.67536346e-19 - art_sys_54: 4.31327286e-19 - art_sys_55: 5.15364216e-19 - art_sys_56: 1.01243143e-18 - art_sys_57: -1.68822302e-15 - art_sys_58: -3.15242713e-15 - art_sys_59: 4.27336313e-15 - art_sys_60: 7.52329300e-03 - art_sys_61: 4.04864106e-16 - art_sys_62: -1.78050126e-16 - art_sys_63: 8.60601179e-18 - art_sys_64: 5.30001579e-17 - art_sys_65: 4.66436674e-17 - art_sys_66: -8.12547945e-04 - art_sys_67: 1.32858834e-18 - art_sys_68: -2.84858634e-18 - art_sys_69: -4.00400978e-04 - art_sys_70: 1.91261276e-16 - art_sys_71: -6.57019403e-15 - art_sys_72: -5.77964832e-15 - art_sys_73: 9.30516938e-05 - art_sys_74: -5.43235063e-13 - art_sys_75: 2.50438051e-19 - art_sys_76: 4.75696687e-17 - art_sys_77: 1.18123704e-17 - art_sys_78: 5.06465114e-18 - art_sys_79: -3.36932150e-19 - art_sys_80: -2.09536219e-13 - art_sys_81: 7.14866018e-19 - art_sys_82: 1.60231094e-18 - art_sys_83: 9.05578150e-19 - art_sys_84: -7.64402919e-17 - art_sys_85: 2.71295536e-19 - art_sys_86: -7.77689922e-22 - art_sys_87: -1.06494771e-15 - art_sys_88: -1.35864177e-15 - art_sys_89: 1.64458309e-15 - art_sys_90: 6.05737853e-13 - art_sys_91: 4.66841333e-14 - art_sys_92: 6.57749517e-07 - art_sys_93: -9.22284171e-14 - art_sys_94: 3.29069132e-07 - art_sys_95: 3.63845045e-15 - art_sys_96: 3.87270123e-16 - art_sys_97: -2.13193329e-07 - art_sys_98: 4.07738683e-15 - art_sys_99: -3.42248214e-15 - art_sys_100: -1.07808914e-07 - art_sys_101: 1.70025366e-14 - art_sys_102: -2.91356032e-16 - art_sys_103: 5.65483942e-08 - art_sys_104: -8.78297436e-15 - art_sys_105: -9.62499624e-16 - art_sys_106: -1.21866318e-14 - art_sys_107: -8.33028267e-15 - art_sys_108: 2.56069724e-08 - art_sys_109: 1.95729181e-13 - art_sys_110: 6.94906240e-16 - art_sys_111: 7.48913292e-13 - art_sys_112: -1.02207086e-08 - art_sys_113: 1.50706006e-16 - art_sys_114: -7.20639304e-13 - art_sys_115: -3.82964426e-09 - art_sys_116: -7.85932016e-14 - art_sys_117: 1.01276634e-16 - art_sys_118: -7.37803085e-13 - art_sys_119: -1.40566551e-09 - art_sys_120: 1.29361435e-13 - art_sys_121: -3.13762718e-14 - art_sys_122: -7.85067772e-14 - art_sys_123: -4.73309306e-10 - art_sys_124: -1.56680842e-15 - art_sys_125: 8.78298976e-15 - art_sys_126: -1.00118272e-13 - art_sys_127: -1.89353625e-14 - art_sys_128: -1.69408286e-10 - art_sys_129: 5.55433220e-11 - art_sys_130: 1.81484777e-11 - art_sys_131: 5.59049710e-12 - art_sys_132: 3.21439835e-14 - art_sys_133: 1.35841522e-14 - art_sys_134: -1.64234805e-12 - art_sys_135: -3.32586238e-14 - art_sys_136: -5.48192680e-13 - art_sys_137: -1.03912585e-14 - art_sys_138: 6.58258617e-14 - art_sys_139: -3.00881934e-15 - art_sys_140: 6.82912581e-17 - art_sys_141: 1.37936771e-14 - art_sys_142: 0.0 - art_sys_143: -2.10092102e-15 - art_sys_144: -7.89317992e-15 - art_sys_145: -1.00881293e-14 - art_sys_146: 5.88496484e-17 - art_sys_147: -1.67428977e-16 - art_sys_148: 2.00606823e-16 - art_sys_149: -6.07640359e-17 - art_sys_150: 5.04262222e-18 - art_sys_151: 1.87811263e-19 - art_sys_152: 2.96624335e-18 - art_sys_153: 2.16329625e-19 - art_sys_154: 3.73499763e-18 - art_sys_155: -8.39856901e-18 - art_sys_156: -3.55414776e-17 - art_sys_157: -2.10534695e-17 - art_sys_158: 0.0 - art_sys_159: 4.28874313e-16 - art_sys_160: 4.28874313e-16 - art_sys_161: 3.42147518e-17 - art_sys_162: -1.26793469e-29 - art_sys_163: -0.0 - art_sys_164: -7.73991377e-30 - art_sys_165: -2.21620512e-25 - art_sys_166: 1.84935611e-25 - art_sys_167: -3.71151504e-27 - art_sys_168: 8.15844993e-27 - art_sys_169: 2.83095731e-27 - art_sys_170: -9.06800086e-27 - art_sys_171: -6.77362292e-26 - art_sys_172: 7.15942849e-26 - art_sys_173: -1.21872635e-26 - art_sys_174: -1.21189232e-29 - art_sys_175: 5.29831307e-28 - art_sys_176: -1.21313455e-27 - art_sys_177: 2.37895497e-28 - art_sys_178: 1.00312856e-28 - art_sys_179: -1.43357409e-27 - art_sys_180: -1.57406364e-28 - art_sys_181: 1.93300901e-29 - art_sys_182: -1.26912553e-29 - art_sys_183: -1.68566335e-31 - art_sys_184: -2.80242178e-32 - art_sys_185: -1.09367942e-30 + art_sys_51: -1.41063609e-02 + art_sys_52: -6.32055501e-19 + art_sys_53: 5.21762478e-19 + art_sys_54: -1.51850699e-20 + art_sys_55: -9.85146897e-19 + art_sys_56: 1.18422682e-19 + art_sys_57: -7.52329300e-03 + art_sys_58: 8.12547945e-04 + art_sys_59: -1.51610145e-19 + art_sys_60: 6.01250337e-19 + art_sys_61: -4.00400981e-04 + art_sys_62: -1.57761365e-19 + art_sys_63: 1.11151715e-19 + art_sys_64: 2.18586112e-16 + art_sys_65: -4.51400663e-16 + art_sys_66: 4.18176859e-17 + art_sys_67: -4.11131822e-17 + art_sys_68: 4.00340143e-18 + art_sys_69: 1.99931159e-17 + art_sys_70: 2.40423704e-17 + art_sys_71: 1.22799538e-17 + art_sys_72: -7.51132536e-19 + art_sys_73: 9.37890468e-19 + art_sys_74: 9.30516938e-05 + art_sys_75: -4.72664475e-20 + art_sys_76: -7.46133637e-17 + art_sys_77: 8.60188769e-18 + art_sys_78: -6.80590836e-18 + art_sys_79: -1.82351580e-20 + art_sys_80: -8.65344086e-18 + art_sys_81: -7.17959858e-20 + art_sys_82: -1.29162695e-15 + art_sys_83: 1.12053227e-18 + art_sys_84: 8.83855280e-19 + art_sys_85: -6.53454887e-20 + art_sys_86: 1.19515308e-19 + art_sys_87: -3.07757400e-14 + art_sys_88: -1.65886396e-15 + art_sys_89: -6.31120728e-20 + art_sys_90: 7.61968580e-17 + art_sys_91: 7.30071197e-17 + art_sys_92: 6.62829206e-20 + art_sys_93: -9.22031766e-21 + art_sys_94: -1.77387735e-15 + art_sys_95: 6.57748841e-07 + art_sys_96: 1.44356071e-15 + art_sys_97: -5.45781206e-16 + art_sys_98: -3.29069078e-07 + art_sys_99: -5.04655632e-15 + art_sys_100: 2.13194098e-07 + art_sys_101: 2.16255430e-13 + art_sys_102: -1.07809451e-07 + art_sys_103: 1.61588098e-13 + art_sys_104: 2.42206881e-13 + art_sys_105: -2.37079477e-16 + art_sys_106: -1.42032572e-12 + art_sys_107: 5.65485658e-08 + art_sys_108: -3.84352750e-16 + art_sys_109: -1.48533970e-15 + art_sys_110: -2.56072545e-08 + art_sys_111: 3.42940322e-14 + art_sys_112: 5.25588800e-13 + art_sys_113: -4.68963503e-14 + art_sys_114: -7.33736936e-16 + art_sys_115: 5.33971743e-15 + art_sys_116: -1.02208532e-08 + art_sys_117: -2.62107602e-15 + art_sys_118: 9.40246004e-14 + art_sys_119: 3.82953972e-09 + art_sys_120: 7.29806258e-14 + art_sys_121: 3.82773019e-16 + art_sys_122: 4.96073245e-14 + art_sys_123: 1.40558541e-09 + art_sys_124: -2.66950465e-14 + art_sys_125: -3.85446943e-16 + art_sys_126: -1.88155378e-14 + art_sys_127: -4.73365800e-10 + art_sys_128: 4.74671948e-14 + art_sys_129: -2.57669736e-18 + art_sys_130: 1.69147140e-10 + art_sys_131: 2.44629002e-16 + art_sys_132: -2.29339835e-13 + art_sys_133: 5.52853956e-11 + art_sys_134: 1.10259359e-13 + art_sys_135: 1.31308488e-14 + art_sys_136: 2.39064032e-17 + art_sys_137: 1.82536186e-11 + art_sys_138: 1.87640600e-14 + art_sys_139: 5.53481111e-12 + art_sys_140: 5.54964139e-18 + art_sys_141: 3.70986444e-14 + art_sys_142: -1.68914230e-14 + art_sys_143: 1.69913441e-12 + art_sys_144: -7.69400847e-17 + art_sys_145: -1.30499102e-14 + art_sys_146: 5.71649717e-13 + art_sys_147: -1.39612409e-17 + art_sys_148: -1.18845757e-18 + art_sys_149: 4.21417514e-15 + art_sys_150: 7.22016817e-14 + art_sys_151: -2.65686175e-15 + art_sys_152: 3.70485100e-18 + art_sys_153: -8.06668194e-15 + art_sys_154: 8.52637745e-15 + art_sys_155: -2.88067773e-18 + art_sys_156: -0.0 + art_sys_157: -4.03284939e-15 + art_sys_158: -0.0 + art_sys_159: -5.89546401e-16 + art_sys_160: -1.32022731e-16 + art_sys_161: 4.02921949e-17 + art_sys_162: 4.02921949e-17 + art_sys_163: 5.14048931e-17 + art_sys_164: 5.14048931e-17 + art_sys_165: -5.68025161e-31 + art_sys_166: 1.87994565e-31 + art_sys_167: 0.0 + art_sys_168: -1.88365865e-25 + art_sys_169: -2.10686089e-25 + art_sys_170: -2.76450883e-26 + art_sys_171: -1.29316364e-25 + art_sys_172: -1.81307679e-26 + art_sys_173: -9.62116559e-28 + art_sys_174: -5.56992076e-28 + art_sys_175: 1.10039833e-28 + art_sys_176: -1.23219496e-28 + art_sys_177: 3.06044247e-27 + art_sys_178: -1.65141755e-28 + art_sys_179: 7.71334679e-31 + art_sys_180: -1.38265581e-29 + art_sys_181: -3.23818984e-28 + art_sys_182: -1.77985418e-29 + art_sys_183: -3.84803835e-31 + art_sys_184: 1.63934382e-31 + art_sys_185: 4.49311474e-33 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -20924,167 +20924,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: -1.14350156e-40 - art_sys_26: 2.91735402e-34 - art_sys_27: 1.51509893e-26 - art_sys_28: -3.70500552e-26 - art_sys_29: -4.01159843e-06 - art_sys_30: -2.23763094e-05 - art_sys_31: -5.17594766e-05 - art_sys_32: 2.61466724e-05 - art_sys_33: -5.02693029e-04 - art_sys_34: -5.82487091e-04 - art_sys_35: -1.96147319e-03 - art_sys_36: 8.98608716e-21 - art_sys_37: -8.21203116e-21 - art_sys_38: 1.36753960e-03 - art_sys_39: -1.41260724e-20 - art_sys_40: 4.04675078e-21 - art_sys_41: -1.14043056e-20 - art_sys_42: -1.20479416e-03 - art_sys_43: -1.39158659e-20 - art_sys_44: -1.41060448e-02 - art_sys_45: -7.34642117e-20 - art_sys_46: 3.40975102e-19 - art_sys_47: -2.02009903e-03 - art_sys_48: -2.29851259e-19 - art_sys_49: 2.11511227e-19 + art_sys_25: 1.83856745e-80 + art_sys_26: 9.63125665e-75 + art_sys_27: -6.04921515e-68 + art_sys_28: 3.61918466e-67 + art_sys_29: 1.39008040e-56 + art_sys_30: 1.12983237e-53 + art_sys_31: 5.28496016e-51 + art_sys_32: -6.31316970e-43 + art_sys_33: -1.89192893e-37 + art_sys_34: -1.90751371e-30 + art_sys_35: -1.33720760e-31 + art_sys_36: 4.01159843e-06 + art_sys_37: 2.23763094e-05 + art_sys_38: 5.17594766e-05 + art_sys_39: -2.61466724e-05 + art_sys_40: -5.02693029e-04 + art_sys_41: 5.82487091e-04 + art_sys_42: 1.96147319e-03 + art_sys_43: 1.36753960e-03 + art_sys_44: 1.20479416e-03 + art_sys_45: 1.41060448e-02 + art_sys_46: 2.02009903e-03 + art_sys_47: -5.38024262e-20 + art_sys_48: 6.39911674e-19 + art_sys_49: -2.56208605e-19 art_sys_50: 3.05628833e-02 - art_sys_51: -1.68818519e-02 - art_sys_52: -3.24615451e-18 - art_sys_53: -3.65472071e-19 - art_sys_54: -6.73006969e-19 - art_sys_55: -3.94664672e-19 - art_sys_56: 6.02882661e-19 - art_sys_57: 9.72718456e-15 - art_sys_58: 6.54855270e-15 - art_sys_59: -3.51174953e-15 - art_sys_60: -9.55145502e-03 - art_sys_61: -5.63018725e-16 - art_sys_62: 4.00575117e-16 - art_sys_63: -1.33282591e-17 - art_sys_64: -1.25257562e-16 - art_sys_65: -1.03026285e-16 - art_sys_66: 1.92531169e-03 - art_sys_67: -3.19478533e-18 - art_sys_68: 6.56866745e-18 - art_sys_69: 8.80199386e-04 - art_sys_70: -2.37366000e-17 - art_sys_71: 1.55686647e-14 - art_sys_72: 1.37004869e-14 - art_sys_73: -2.42320554e-04 - art_sys_74: 1.19407447e-12 - art_sys_75: 4.27951890e-20 - art_sys_76: -1.88838906e-16 - art_sys_77: -3.75063874e-17 - art_sys_78: -2.00724383e-17 - art_sys_79: 2.78443149e-19 - art_sys_80: 4.60521774e-13 - art_sys_81: -3.30432745e-18 - art_sys_82: -5.73402346e-18 - art_sys_83: -3.08100055e-18 - art_sys_84: 2.28324638e-16 - art_sys_85: -9.74772922e-19 - art_sys_86: -1.36279357e-19 - art_sys_87: 3.48037924e-15 - art_sys_88: 4.47101730e-15 - art_sys_89: -5.43909548e-15 - art_sys_90: -1.33158148e-12 - art_sys_91: -1.21101199e-13 - art_sys_92: -2.41053628e-06 - art_sys_93: 2.02777939e-13 - art_sys_94: -9.60055541e-07 - art_sys_95: -1.02510492e-14 - art_sys_96: -1.28088918e-15 - art_sys_97: 7.06837878e-07 - art_sys_98: -1.28285706e-14 - art_sys_99: 8.56892063e-15 - art_sys_100: 3.51082213e-07 - art_sys_101: -5.61249173e-14 - art_sys_102: 9.64902159e-16 - art_sys_103: -1.84808124e-07 - art_sys_104: 2.93407110e-14 - art_sys_105: 3.19037852e-15 - art_sys_106: 3.69855068e-14 - art_sys_107: 1.72969677e-14 - art_sys_108: -8.43830284e-08 - art_sys_109: -6.44425779e-13 - art_sys_110: -2.30384567e-15 - art_sys_111: -2.50741137e-12 - art_sys_112: 3.36365603e-08 - art_sys_113: -4.99609833e-16 - art_sys_114: 2.37518611e-12 - art_sys_115: 1.26660413e-08 - art_sys_116: 2.59410642e-13 - art_sys_117: -3.35831044e-16 - art_sys_118: 2.44632736e-12 - art_sys_119: 4.64902586e-09 - art_sys_120: -4.27577382e-13 - art_sys_121: 1.03185829e-13 - art_sys_122: 2.56178454e-13 - art_sys_123: 1.56785941e-09 - art_sys_124: 5.28816685e-15 - art_sys_125: -2.88863110e-14 - art_sys_126: 3.30961308e-13 - art_sys_127: 6.22826751e-14 - art_sys_128: 5.61553787e-10 - art_sys_129: -1.84163223e-10 - art_sys_130: -6.02064117e-11 - art_sys_131: -1.85475153e-11 - art_sys_132: -1.05729420e-13 - art_sys_133: -4.50068271e-14 - art_sys_134: 5.44976402e-12 - art_sys_135: 1.09655988e-13 - art_sys_136: 1.81923009e-12 - art_sys_137: 3.42895869e-14 - art_sys_138: -2.18464163e-13 - art_sys_139: 9.98314747e-15 - art_sys_140: -1.94381681e-16 - art_sys_141: -4.57560149e-14 - art_sys_142: -0.0 - art_sys_143: 6.89906830e-15 - art_sys_144: 2.61672554e-14 - art_sys_145: 3.34654525e-14 - art_sys_146: -1.95157098e-16 - art_sys_147: 5.55376608e-16 - art_sys_148: -6.61632934e-16 - art_sys_149: 2.01771474e-16 - art_sys_150: -1.67104215e-17 - art_sys_151: -6.65925440e-19 - art_sys_152: -9.86511432e-18 - art_sys_153: -7.19065774e-19 - art_sys_154: -1.23814494e-17 - art_sys_155: 2.78472296e-17 - art_sys_156: 1.17902473e-16 - art_sys_157: 6.98534453e-17 - art_sys_158: -0.0 - art_sys_159: -1.42294611e-15 - art_sys_160: -1.42294611e-15 - art_sys_161: -1.13422943e-16 - art_sys_162: 4.20312606e-29 - art_sys_163: 0.0 - art_sys_164: 2.56570022e-29 - art_sys_165: 7.37913399e-25 - art_sys_166: -6.12815919e-25 - art_sys_167: 1.16807976e-26 - art_sys_168: -2.69445034e-26 - art_sys_169: -9.61694303e-27 - art_sys_170: 3.05650384e-26 - art_sys_171: 2.14692320e-25 - art_sys_172: -2.28638387e-25 - art_sys_173: 3.64714267e-26 - art_sys_174: 4.02002292e-29 - art_sys_175: -1.92123939e-27 - art_sys_176: 4.36151746e-27 - art_sys_177: -8.39743145e-28 - art_sys_178: -3.34568374e-28 - art_sys_179: 4.75467669e-27 - art_sys_180: 5.22348221e-28 - art_sys_181: -6.41388679e-29 - art_sys_182: 4.17837523e-29 - art_sys_183: 5.57443028e-31 - art_sys_184: 9.29881757e-32 - art_sys_185: 3.62684872e-30 + art_sys_51: 1.68818519e-02 + art_sys_52: -1.33045353e-19 + art_sys_53: -6.41552658e-19 + art_sys_54: -8.46235409e-19 + art_sys_55: -4.62767124e-19 + art_sys_56: 2.93711612e-19 + art_sys_57: 9.55145502e-03 + art_sys_58: -1.92531169e-03 + art_sys_59: 6.64670804e-19 + art_sys_60: -4.43599980e-19 + art_sys_61: 8.80199393e-04 + art_sys_62: -1.05110300e-19 + art_sys_63: -3.27679664e-19 + art_sys_64: -2.39424914e-15 + art_sys_65: 1.54648966e-15 + art_sys_66: -6.18459930e-16 + art_sys_67: 1.07036316e-16 + art_sys_68: -1.41155535e-17 + art_sys_69: -7.77104095e-17 + art_sys_70: -6.20279036e-17 + art_sys_71: -3.20847775e-17 + art_sys_72: 1.99658515e-18 + art_sys_73: -2.41945554e-18 + art_sys_74: -2.42320554e-04 + art_sys_75: 1.67882971e-19 + art_sys_76: 2.68961154e-16 + art_sys_77: -2.00802486e-17 + art_sys_78: 1.86739744e-17 + art_sys_79: 2.09108402e-20 + art_sys_80: 2.89023567e-17 + art_sys_81: -1.54414935e-20 + art_sys_82: 3.36374439e-15 + art_sys_83: -3.93276951e-18 + art_sys_84: -3.16669682e-18 + art_sys_85: 2.89727450e-19 + art_sys_86: -4.53936540e-19 + art_sys_87: 1.02134989e-13 + art_sys_88: 5.42740088e-15 + art_sys_89: 2.13298482e-19 + art_sys_90: -2.51361166e-16 + art_sys_91: -1.90267032e-16 + art_sys_92: -2.04154135e-19 + art_sys_93: 1.78312893e-20 + art_sys_94: 5.86685327e-15 + art_sys_95: -2.41053425e-06 + art_sys_96: -5.22511914e-15 + art_sys_97: 2.17921180e-15 + art_sys_98: 9.60055326e-07 + art_sys_99: 1.83936770e-17 + art_sys_100: -7.06840405e-07 + art_sys_101: -7.18989005e-13 + art_sys_102: 3.51083963e-07 + art_sys_103: -5.32420939e-13 + art_sys_104: -8.91826672e-13 + art_sys_105: 7.85871539e-16 + art_sys_106: 4.63471459e-12 + art_sys_107: -1.84808687e-07 + art_sys_108: 1.27404742e-15 + art_sys_109: 4.92360048e-15 + art_sys_110: 8.43839582e-08 + art_sys_111: -2.54479441e-15 + art_sys_112: -1.73190535e-12 + art_sys_113: 1.52722003e-13 + art_sys_114: 2.43245870e-15 + art_sys_115: -1.70981937e-14 + art_sys_116: 3.36370415e-08 + art_sys_117: 8.69037514e-15 + art_sys_118: -3.08007573e-13 + art_sys_119: -1.26656959e-08 + art_sys_120: -2.40507702e-13 + art_sys_121: -1.26855486e-15 + art_sys_122: -1.59247863e-13 + art_sys_123: -4.64876092e-09 + art_sys_124: 8.68499990e-14 + art_sys_125: 1.27856761e-15 + art_sys_126: 6.22812370e-14 + art_sys_127: 1.56804686e-09 + art_sys_128: -1.56083595e-13 + art_sys_129: 8.66360120e-18 + art_sys_130: -5.60688908e-10 + art_sys_131: -8.11626756e-16 + art_sys_132: 7.55724697e-13 + art_sys_133: -1.83308676e-10 + art_sys_134: -3.64714767e-13 + art_sys_135: -4.32534984e-14 + art_sys_136: -7.93511830e-17 + art_sys_137: -6.05548501e-11 + art_sys_138: -6.19667338e-14 + art_sys_139: -1.83629747e-11 + art_sys_140: -1.83948217e-17 + art_sys_141: -1.23042018e-13 + art_sys_142: 5.56838802e-14 + art_sys_143: -5.63797813e-12 + art_sys_144: 2.54940374e-16 + art_sys_145: 4.33117564e-14 + art_sys_146: -1.89700577e-12 + art_sys_147: 4.63289806e-17 + art_sys_148: 3.94348436e-18 + art_sys_149: -1.38388010e-14 + art_sys_150: -2.39624657e-13 + art_sys_151: 8.79294941e-15 + art_sys_152: -1.22976200e-17 + art_sys_153: 2.67645073e-14 + art_sys_154: -2.80416680e-14 + art_sys_155: 9.57308662e-18 + art_sys_156: 0.0 + art_sys_157: 1.33002673e-14 + art_sys_158: 0.0 + art_sys_159: 1.94980464e-15 + art_sys_160: 4.35764237e-16 + art_sys_161: -1.33789900e-16 + art_sys_162: -1.33789900e-16 + art_sys_163: -1.70076268e-16 + art_sys_164: -1.70076268e-16 + art_sys_165: 1.88014707e-30 + art_sys_166: -6.22285413e-31 + art_sys_167: -0.0 + art_sys_168: 8.86347833e-25 + art_sys_169: 6.99146438e-25 + art_sys_170: 6.12368450e-26 + art_sys_171: 4.30875331e-25 + art_sys_172: 5.93098489e-26 + art_sys_173: 3.06909540e-27 + art_sys_174: 1.84640402e-27 + art_sys_175: -3.36334271e-28 + art_sys_176: 4.07890896e-28 + art_sys_177: -1.01515167e-26 + art_sys_178: 5.47414397e-28 + art_sys_179: -2.56574877e-30 + art_sys_180: 4.57340633e-29 + art_sys_181: 1.07399611e-27 + art_sys_182: 5.84795703e-29 + art_sys_183: 1.30146369e-30 + art_sys_184: -5.44014956e-31 + art_sys_185: -1.49143830e-32 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -21215,167 +21215,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: -1.44619658e-41 - art_sys_26: 3.68960351e-35 - art_sys_27: 1.91615906e-27 - art_sys_28: -4.68575336e-27 - art_sys_29: -5.07350415e-07 - art_sys_30: -2.73762663e-06 - art_sys_31: -5.53841394e-06 - art_sys_32: -1.54160714e-06 - art_sys_33: -3.86106380e-05 - art_sys_34: 1.41268021e-04 - art_sys_35: -3.10602343e-05 - art_sys_36: -1.81054667e-22 - art_sys_37: -1.70183584e-22 - art_sys_38: 1.15803797e-04 - art_sys_39: -1.31806857e-21 - art_sys_40: 5.29017616e-22 - art_sys_41: -4.99854342e-22 - art_sys_42: 1.30149254e-03 - art_sys_43: 1.15415589e-20 - art_sys_44: -2.17037072e-03 - art_sys_45: -1.83801244e-21 - art_sys_46: 1.26056610e-19 - art_sys_47: -4.90390377e-03 - art_sys_48: -3.47674480e-20 - art_sys_49: 2.99516813e-20 + art_sys_25: 2.32517467e-81 + art_sys_26: 1.21803277e-75 + art_sys_27: -7.65023976e-69 + art_sys_28: 4.57706160e-68 + art_sys_29: 1.75798812e-57 + art_sys_30: 1.42886115e-54 + art_sys_31: 6.68371208e-52 + art_sys_32: -7.98405423e-44 + art_sys_33: -2.39265915e-38 + art_sys_34: -2.41236870e-31 + art_sys_35: -1.69112166e-32 + art_sys_36: 5.07350415e-07 + art_sys_37: 2.73762663e-06 + art_sys_38: 5.53841394e-06 + art_sys_39: 1.54160714e-06 + art_sys_40: -3.86106380e-05 + art_sys_41: -1.41268021e-04 + art_sys_42: 3.10602343e-05 + art_sys_43: 1.15803797e-04 + art_sys_44: -1.30149254e-03 + art_sys_45: 2.17037072e-03 + art_sys_46: 4.90390377e-03 + art_sys_47: 1.02249955e-19 + art_sys_48: 8.49873663e-20 + art_sys_49: 5.53376417e-21 art_sys_50: 2.37640067e-03 - art_sys_51: -2.67082659e-02 - art_sys_52: -1.94215564e-18 - art_sys_53: -8.17179930e-19 - art_sys_54: -1.19506725e-18 - art_sys_55: -8.35293634e-19 - art_sys_56: 7.86449197e-20 - art_sys_57: -2.10796667e-14 - art_sys_58: -5.13626647e-15 - art_sys_59: 1.62655761e-15 - art_sys_60: 1.02872212e-02 - art_sys_61: 2.16396862e-16 - art_sys_62: -3.91748430e-16 - art_sys_63: 6.48003082e-17 - art_sys_64: 1.59517152e-16 - art_sys_65: 1.30214786e-16 - art_sys_66: -1.62036944e-03 - art_sys_67: 5.82217254e-18 - art_sys_68: -1.14737144e-17 - art_sys_69: -1.44971632e-03 - art_sys_70: 1.36338390e-16 - art_sys_71: -1.30857887e-14 - art_sys_72: -1.14771403e-14 - art_sys_73: 4.76844946e-04 - art_sys_74: -1.96796849e-12 - art_sys_75: -7.41395499e-19 - art_sys_76: 4.60282847e-16 - art_sys_77: 1.14602597e-16 - art_sys_78: 4.40197966e-17 - art_sys_79: -1.98882619e-19 - art_sys_80: -7.58287287e-13 - art_sys_81: 6.93852900e-18 - art_sys_82: 1.47673884e-17 - art_sys_83: 9.52910887e-18 - art_sys_84: -6.65002517e-16 - art_sys_85: 2.32433314e-18 - art_sys_86: 2.32389072e-20 - art_sys_87: -1.02508143e-14 - art_sys_88: -1.34504608e-14 - art_sys_89: 1.64061446e-14 - art_sys_90: 2.19313944e-12 - art_sys_91: 2.37487508e-13 - art_sys_92: 6.10570789e-06 - art_sys_93: -3.34049547e-13 - art_sys_94: 2.85274895e-06 - art_sys_95: 2.18000174e-14 - art_sys_96: 3.88604656e-15 - art_sys_97: -1.95705509e-06 - art_sys_98: 4.58334352e-14 - art_sys_99: -1.74380973e-14 - art_sys_100: -1.02499052e-06 - art_sys_101: 1.56332222e-13 - art_sys_102: -2.93059238e-15 - art_sys_103: 5.44334614e-07 - art_sys_104: -8.09430180e-14 - art_sys_105: -9.71737898e-15 - art_sys_106: -1.07466242e-13 - art_sys_107: 1.00330171e-14 - art_sys_108: 2.51065783e-07 - art_sys_109: 1.82182487e-12 - art_sys_110: 7.02428905e-15 - art_sys_111: 6.90139501e-12 - art_sys_112: -1.01138107e-07 - art_sys_113: 1.52269763e-15 - art_sys_114: -6.60459592e-12 - art_sys_115: -3.82057302e-08 - art_sys_116: -7.73068120e-13 - art_sys_117: 1.02436050e-15 - art_sys_118: -6.75891847e-12 - art_sys_119: -1.41040761e-08 - art_sys_120: 1.19929839e-12 - art_sys_121: -3.10121258e-13 - art_sys_122: -7.60727437e-13 - art_sys_123: -4.76552530e-09 - art_sys_124: -1.52003803e-14 - art_sys_125: 8.61087439e-14 - art_sys_126: -9.98082618e-13 - art_sys_127: -1.87369595e-13 - art_sys_128: -1.71069632e-09 - art_sys_129: 5.61773890e-10 - art_sys_130: 1.83795454e-10 - art_sys_131: 5.66627992e-11 - art_sys_132: 3.17746079e-13 - art_sys_133: 1.36909783e-13 - art_sys_134: -1.66534317e-11 - art_sys_135: -3.29958349e-13 - art_sys_136: -5.56096011e-12 - art_sys_137: -1.03655579e-13 - art_sys_138: 6.67984622e-13 - art_sys_139: -3.05291472e-14 - art_sys_140: 4.71050747e-16 - art_sys_141: 1.39701937e-13 - art_sys_142: 0.0 - art_sys_143: -2.08289055e-14 - art_sys_144: -7.98181093e-14 - art_sys_145: -1.02202934e-13 - art_sys_146: 5.95147616e-16 - art_sys_147: -1.69529940e-15 - art_sys_148: 1.98375770e-15 - art_sys_149: -6.17823735e-16 - art_sys_150: 5.08775411e-17 - art_sys_151: 2.49530635e-18 - art_sys_152: 3.03569153e-17 - art_sys_153: 2.20918354e-18 - art_sys_154: 3.77138491e-17 - art_sys_155: -8.48962578e-17 - art_sys_156: -3.60010413e-16 - art_sys_157: -2.13453061e-16 - art_sys_158: 0.0 - art_sys_159: 4.35906023e-15 - art_sys_160: 4.35906023e-15 - art_sys_161: 3.45008533e-16 - art_sys_162: -1.27837446e-28 - art_sys_163: -0.0 - art_sys_164: -7.80329135e-29 - art_sys_165: -2.26703998e-24 - art_sys_166: 1.86714676e-24 - art_sys_167: -3.36520178e-26 - art_sys_168: 8.14785943e-26 - art_sys_169: 2.90832982e-26 - art_sys_170: -9.28954080e-26 - art_sys_171: -6.56793871e-25 - art_sys_172: 7.03009118e-25 - art_sys_173: -1.12154471e-25 - art_sys_174: -1.22742746e-28 - art_sys_175: 5.94912576e-27 - art_sys_176: -1.32166506e-26 - art_sys_177: 2.55332858e-27 - art_sys_178: 1.02116244e-27 - art_sys_179: -1.45125567e-26 - art_sys_180: -1.59409703e-27 - art_sys_181: 1.95757038e-28 - art_sys_182: -1.27546199e-28 - art_sys_183: -1.70271495e-30 - art_sys_184: -2.83992073e-31 - art_sys_185: -1.10539149e-29 + art_sys_51: 2.67082659e-02 + art_sys_52: 4.82086768e-19 + art_sys_53: -1.11440202e-18 + art_sys_54: -6.91411832e-19 + art_sys_55: 4.46989945e-19 + art_sys_56: 2.72611534e-19 + art_sys_57: -1.02872212e-02 + art_sys_58: 1.62036944e-03 + art_sys_59: 1.23174486e-19 + art_sys_60: 1.92770607e-19 + art_sys_61: -1.44971633e-03 + art_sys_62: -1.59172566e-19 + art_sys_63: -9.10121654e-20 + art_sys_64: 1.85092301e-15 + art_sys_65: -3.30074054e-15 + art_sys_66: 6.81995696e-16 + art_sys_67: -2.94340792e-16 + art_sys_68: 2.97191481e-17 + art_sys_69: 1.18095495e-16 + art_sys_70: 1.23319926e-16 + art_sys_71: 6.34294603e-17 + art_sys_72: -3.38761840e-18 + art_sys_73: 4.70845818e-18 + art_sys_74: 4.76844945e-04 + art_sys_75: -4.41209615e-19 + art_sys_76: -6.85179323e-16 + art_sys_77: 7.10085156e-17 + art_sys_78: -6.03422707e-17 + art_sys_79: -4.74989159e-20 + art_sys_80: -7.81754055e-17 + art_sys_81: 2.03492688e-19 + art_sys_82: -6.61960168e-15 + art_sys_83: 1.04211034e-17 + art_sys_84: 8.25041698e-18 + art_sys_85: -5.84312026e-19 + art_sys_86: 1.09195371e-18 + art_sys_87: -2.82543307e-13 + art_sys_88: -1.60009093e-14 + art_sys_89: -5.55059072e-19 + art_sys_90: 7.47410149e-16 + art_sys_91: 3.74361003e-16 + art_sys_92: 5.76442929e-19 + art_sys_93: -7.26163890e-20 + art_sys_94: -1.76967094e-14 + art_sys_95: 6.10570197e-06 + art_sys_96: 1.31451352e-14 + art_sys_97: -5.76815293e-15 + art_sys_98: -2.85274843e-06 + art_sys_99: -3.16924498e-14 + art_sys_100: 1.95706212e-06 + art_sys_101: 1.98773385e-12 + art_sys_102: -1.02499563e-06 + art_sys_103: 1.47909116e-12 + art_sys_104: 2.25235027e-12 + art_sys_105: -2.39395930e-15 + art_sys_106: -1.34997752e-11 + art_sys_107: 5.44336276e-07 + art_sys_108: -3.88097544e-15 + art_sys_109: -1.49989785e-14 + art_sys_110: -2.51068549e-07 + art_sys_111: 2.14693449e-13 + art_sys_112: 5.15266691e-12 + art_sys_113: -4.45866884e-13 + art_sys_114: -7.41572801e-15 + art_sys_115: 4.25190514e-14 + art_sys_116: -1.01139565e-07 + art_sys_117: -2.65084941e-14 + art_sys_118: 9.03443538e-13 + art_sys_119: 3.82046891e-08 + art_sys_120: 7.16387688e-13 + art_sys_121: 3.86721903e-15 + art_sys_122: 4.54482181e-13 + art_sys_123: 1.41032723e-08 + art_sys_124: -2.53271989e-13 + art_sys_125: -3.90298084e-15 + art_sys_126: -1.87657316e-13 + art_sys_127: -4.76609816e-09 + art_sys_128: 4.63571605e-13 + art_sys_129: -2.75752004e-17 + art_sys_130: 1.70806996e-09 + art_sys_131: 2.47919328e-15 + art_sys_132: -2.24810080e-12 + art_sys_133: 5.59175008e-10 + art_sys_134: 1.10040953e-12 + art_sys_135: 1.28574991e-13 + art_sys_136: 2.42452493e-16 + art_sys_137: 1.84856374e-10 + art_sys_138: 1.87661044e-13 + art_sys_139: 5.61009901e-11 + art_sys_140: 5.60098017e-17 + art_sys_141: 3.75494328e-13 + art_sys_142: -1.67937331e-13 + art_sys_143: 1.72266301e-11 + art_sys_144: -7.75645037e-16 + art_sys_145: -1.30996753e-13 + art_sys_146: 5.79807859e-12 + art_sys_147: -1.41580489e-16 + art_sys_148: -1.20407922e-17 + art_sys_149: 4.14791249e-14 + art_sys_150: 7.32627917e-13 + art_sys_151: -2.66216898e-14 + art_sys_152: 3.76678419e-17 + art_sys_153: -8.17411157e-14 + art_sys_154: 8.36863923e-14 + art_sys_155: -2.93067371e-17 + art_sys_156: -0.0 + art_sys_157: -4.00376168e-14 + art_sys_158: -0.0 + art_sys_159: -5.89164989e-15 + art_sys_160: -1.31334169e-15 + art_sys_161: 4.09719312e-16 + art_sys_162: 4.09719312e-16 + art_sys_163: 5.14365389e-16 + art_sys_164: 5.14365389e-16 + art_sys_165: -5.69470653e-30 + art_sys_166: 1.88511664e-30 + art_sys_167: 0.0 + art_sys_168: -1.43630592e-24 + art_sys_169: -2.13633099e-24 + art_sys_170: -1.13554593e-25 + art_sys_171: -1.31661187e-24 + art_sys_172: -1.81552301e-25 + art_sys_173: -9.46083780e-27 + art_sys_174: -5.69578097e-27 + art_sys_175: 1.02736092e-27 + art_sys_176: -1.24559319e-27 + art_sys_177: 3.09941278e-26 + art_sys_178: -1.66741202e-27 + art_sys_179: 7.86137460e-30 + art_sys_180: -1.38229412e-28 + art_sys_181: -3.27761614e-27 + art_sys_182: -1.78441176e-28 + art_sys_183: -3.98389761e-30 + art_sys_184: 1.66194560e-30 + art_sys_185: 4.55677027e-32 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -21506,167 +21506,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: -7.96080801e-43 - art_sys_26: 2.03099811e-36 - art_sys_27: 1.05477877e-28 - art_sys_28: -2.57934388e-28 - art_sys_29: -2.79278704e-08 - art_sys_30: -2.88219018e-07 - art_sys_31: -4.10270950e-07 - art_sys_32: -9.68138409e-07 - art_sys_33: 1.11414178e-05 - art_sys_34: 5.95711075e-05 - art_sys_35: 8.36840280e-05 - art_sys_36: -4.53808710e-22 - art_sys_37: 3.54192259e-22 - art_sys_38: -4.75168139e-05 - art_sys_39: 4.50794107e-22 - art_sys_40: -9.87118912e-23 - art_sys_41: 4.98867558e-22 - art_sys_42: 2.59402519e-04 - art_sys_43: 2.48695794e-21 - art_sys_44: 8.01168626e-04 - art_sys_45: 4.45978153e-21 - art_sys_46: -1.27503758e-20 - art_sys_47: -3.08603433e-04 - art_sys_48: 1.31642360e-20 - art_sys_49: -1.71726174e-20 + art_sys_25: 1.28109607e-82 + art_sys_26: 6.71096675e-77 + art_sys_27: -4.21503477e-70 + art_sys_28: 2.52181296e-69 + art_sys_29: 9.68594618e-59 + art_sys_30: 7.87256294e-56 + art_sys_31: 3.68250927e-53 + art_sys_32: -4.39895575e-45 + art_sys_33: -1.31827783e-39 + art_sys_34: -1.32913716e-32 + art_sys_35: -9.31753360e-34 + art_sys_36: 2.79278704e-08 + art_sys_37: 2.88219018e-07 + art_sys_38: 4.10270950e-07 + art_sys_39: 9.68138409e-07 + art_sys_40: 1.11414178e-05 + art_sys_41: -5.95711075e-05 + art_sys_42: -8.36840280e-05 + art_sys_43: -4.75168139e-05 + art_sys_44: -2.59402519e-04 + art_sys_45: -8.01168626e-04 + art_sys_46: 3.08603433e-04 + art_sys_47: 1.41416028e-20 + art_sys_48: -6.16411418e-20 + art_sys_49: 1.68689383e-20 art_sys_50: -3.02458530e-03 - art_sys_51: -1.97513945e-03 - art_sys_52: 8.48236398e-20 - art_sys_53: -7.20184215e-20 - art_sys_54: -8.07490976e-20 - art_sys_55: -7.47464045e-20 - art_sys_56: -7.23102727e-20 - art_sys_57: 7.63762147e-14 - art_sys_58: 2.00852493e-14 - art_sys_59: 1.74337639e-14 - art_sys_60: 6.58299911e-03 - art_sys_61: -3.40565154e-15 - art_sys_62: 1.35017570e-15 - art_sys_63: 4.32724282e-17 - art_sys_64: -4.12781739e-16 - art_sys_65: -3.90883445e-16 - art_sys_66: 6.96171005e-03 - art_sys_67: -1.48841039e-17 - art_sys_68: 2.49236418e-17 - art_sys_69: 2.88352980e-03 - art_sys_70: 2.04316128e-15 - art_sys_71: 5.63032973e-14 - art_sys_72: 4.95612779e-14 - art_sys_73: -1.41768693e-03 - art_sys_74: 3.91123676e-12 - art_sys_75: 1.43682368e-18 - art_sys_76: -1.22732479e-15 - art_sys_77: -3.70389781e-16 - art_sys_78: -9.63757619e-17 - art_sys_79: 4.76885524e-19 - art_sys_80: 1.50700181e-12 - art_sys_81: -1.38858171e-17 - art_sys_82: -4.04772296e-17 - art_sys_83: -2.73344107e-17 - art_sys_84: 1.95304263e-15 - art_sys_85: -5.08397971e-18 - art_sys_86: 8.31236705e-19 - art_sys_87: 3.41376371e-14 - art_sys_88: 4.59916659e-14 - art_sys_89: -5.66537068e-14 - art_sys_90: -4.36211377e-12 - art_sys_91: -7.01911853e-13 - art_sys_92: -1.69164993e-05 - art_sys_93: 6.64846081e-13 - art_sys_94: -8.43766193e-06 - art_sys_95: -6.34541542e-14 - art_sys_96: -1.34889878e-14 - art_sys_97: 6.24966333e-06 - art_sys_98: -1.35311144e-13 - art_sys_99: 3.83957605e-14 - art_sys_100: 3.30494514e-06 - art_sys_101: -5.05559041e-13 - art_sys_102: 1.02214908e-14 - art_sys_103: -1.81281885e-06 - art_sys_104: 2.55175669e-13 - art_sys_105: 3.39973651e-14 - art_sys_106: 3.25959748e-13 - art_sys_107: -2.62196013e-14 - art_sys_108: -8.47776828e-07 - art_sys_109: -5.84336471e-12 - art_sys_110: -2.46211299e-14 - art_sys_111: -2.21544161e-11 - art_sys_112: 3.45624050e-07 - art_sys_113: -5.33355503e-15 - art_sys_114: 2.10315825e-11 - art_sys_115: 1.31939476e-07 - art_sys_116: 2.61662127e-12 - art_sys_117: -3.59385360e-15 - art_sys_118: 2.15613729e-11 - art_sys_119: 4.89513519e-08 - art_sys_120: -3.86588919e-12 - art_sys_121: 1.05820063e-12 - art_sys_122: 2.54755906e-12 - art_sys_123: 1.66356397e-08 - art_sys_124: 5.06464986e-14 - art_sys_125: -2.91342899e-13 - art_sys_126: 3.44345026e-12 - art_sys_127: 6.40112847e-13 - art_sys_128: 5.98694748e-09 - art_sys_129: -1.97089802e-09 - art_sys_130: -6.45806431e-10 - art_sys_131: -1.99288727e-10 - art_sys_132: -1.08443859e-12 - art_sys_133: -4.78449076e-13 - art_sys_134: 5.86148037e-11 - art_sys_135: 1.13143849e-12 - art_sys_136: 1.95805723e-11 - art_sys_137: 3.57750847e-13 - art_sys_138: -2.35310234e-12 - art_sys_139: 1.07515806e-13 - art_sys_140: -1.43276542e-15 - art_sys_141: -4.91163138e-13 - art_sys_142: -0.0 - art_sys_143: 7.13043621e-14 - art_sys_144: 2.80048228e-13 - art_sys_145: 3.59425539e-13 - art_sys_146: -2.08789304e-15 - art_sys_147: 5.95509607e-15 - art_sys_148: -6.77933718e-15 - art_sys_149: 2.18192005e-15 - art_sys_150: -1.78193056e-16 - art_sys_151: -1.09470840e-17 - art_sys_152: -1.07938754e-16 - art_sys_153: -7.83505300e-18 - art_sys_154: -1.32124449e-16 - art_sys_155: 2.97766097e-16 - art_sys_156: 1.26595035e-15 - art_sys_157: 7.51244330e-16 - art_sys_158: -0.0 - art_sys_159: -1.53522116e-14 - art_sys_160: -1.53522116e-14 - art_sys_161: -1.20753328e-15 - art_sys_162: 4.47384784e-28 - art_sys_163: 0.0 - art_sys_164: 2.73076227e-28 - art_sys_165: 7.98848067e-24 - art_sys_166: -6.54017564e-24 - art_sys_167: 1.06450153e-25 - art_sys_168: -2.82963896e-25 - art_sys_169: -1.01255301e-25 - art_sys_170: 3.24713771e-25 - art_sys_171: 2.29558372e-24 - art_sys_172: -2.45810017e-24 - art_sys_173: 3.92954789e-25 - art_sys_174: 4.31537155e-28 - art_sys_175: -2.09638813e-26 - art_sys_176: 4.67810266e-26 - art_sys_177: -9.03066459e-27 - art_sys_178: -3.58835403e-27 - art_sys_179: 5.09723115e-26 - art_sys_180: 5.59813529e-27 - art_sys_181: -6.88247276e-28 - art_sys_182: 4.48568424e-28 - art_sys_183: 5.99083470e-30 - art_sys_184: 9.98708977e-31 - art_sys_185: 3.87678792e-29 + art_sys_51: 1.97513945e-03 + art_sys_52: 8.31913510e-20 + art_sys_53: -8.19612379e-20 + art_sys_54: -5.59166942e-22 + art_sys_55: 1.15160419e-19 + art_sys_56: 1.20668692e-20 + art_sys_57: -6.58299911e-03 + art_sys_58: -6.96171005e-03 + art_sys_59: -2.13931396e-19 + art_sys_60: -8.77593398e-19 + art_sys_61: 2.88352982e-03 + art_sys_62: 1.31764057e-19 + art_sys_63: -2.24953788e-19 + art_sys_64: -2.39381165e-15 + art_sys_65: 1.02564664e-14 + art_sys_66: -2.16576312e-15 + art_sys_67: 7.91674114e-16 + art_sys_68: -1.00435060e-16 + art_sys_69: -3.33473459e-16 + art_sys_70: -3.64956027e-16 + art_sys_71: -1.88687278e-16 + art_sys_72: 1.07091827e-17 + art_sys_73: -1.42809318e-17 + art_sys_74: -1.41768693e-03 + art_sys_75: 1.64871338e-18 + art_sys_76: 1.94416636e-15 + art_sys_77: -2.00084949e-16 + art_sys_78: 1.98251243e-16 + art_sys_79: 5.07282769e-19 + art_sys_80: 2.29499664e-16 + art_sys_81: -6.61733555e-19 + art_sys_82: 1.96803262e-14 + art_sys_83: -3.11062349e-17 + art_sys_84: -2.50338367e-17 + art_sys_85: 5.11329402e-19 + art_sys_86: -2.76798790e-18 + art_sys_87: 9.01276444e-13 + art_sys_88: 5.34031920e-14 + art_sys_89: 1.47415917e-18 + art_sys_90: -2.52399988e-15 + art_sys_91: -1.11351030e-15 + art_sys_92: -1.60237616e-18 + art_sys_93: 2.16558997e-19 + art_sys_94: 6.11133250e-14 + art_sys_95: -1.69164819e-05 + art_sys_96: -3.64835290e-14 + art_sys_97: 1.58063606e-14 + art_sys_98: 8.43766041e-06 + art_sys_99: 1.27916640e-13 + art_sys_100: -6.24968566e-06 + art_sys_101: -6.35787734e-12 + art_sys_102: 3.30496161e-06 + art_sys_103: -4.70627093e-12 + art_sys_104: -6.23496154e-12 + art_sys_105: 8.37824090e-15 + art_sys_106: 4.34386232e-11 + art_sys_107: -1.81282441e-06 + art_sys_108: 1.35822835e-14 + art_sys_109: 5.24912504e-14 + art_sys_110: 8.47786169e-07 + art_sys_111: -8.46534795e-13 + art_sys_112: -1.73974402e-11 + art_sys_113: 1.43760268e-12 + art_sys_114: 2.59887869e-14 + art_sys_115: -1.33934360e-13 + art_sys_116: 3.45629150e-07 + art_sys_117: 9.29951317e-14 + art_sys_118: -2.98123311e-12 + art_sys_119: -1.31935889e-07 + art_sys_120: -2.42223929e-12 + art_sys_121: -1.35505167e-14 + art_sys_122: -1.37702854e-12 + art_sys_123: -4.89485620e-08 + art_sys_124: 8.13294470e-13 + art_sys_125: 1.37119097e-14 + art_sys_126: 6.47835905e-13 + art_sys_127: 1.66376493e-08 + art_sys_128: -1.56020737e-12 + art_sys_129: 1.02885627e-16 + art_sys_130: -5.97778987e-09 + art_sys_131: -8.71867619e-15 + art_sys_132: 7.58880020e-12 + art_sys_133: -1.96181723e-09 + art_sys_134: -3.80175343e-12 + art_sys_135: -4.33267035e-13 + art_sys_136: -8.53951991e-16 + art_sys_137: -6.49518747e-10 + art_sys_138: -6.49080614e-13 + art_sys_139: -1.97323439e-10 + art_sys_140: -1.95930956e-16 + art_sys_141: -1.31832936e-12 + art_sys_142: 5.76864981e-13 + art_sys_143: -6.06206725e-11 + art_sys_144: 2.71061687e-15 + art_sys_145: 4.55859090e-13 + art_sys_146: -2.04123406e-11 + art_sys_147: 4.98352313e-16 + art_sys_148: 4.23547604e-17 + art_sys_149: -1.40819864e-13 + art_sys_150: -2.58072867e-12 + art_sys_151: 9.23821071e-14 + art_sys_152: -1.32945960e-16 + art_sys_153: 2.87606274e-13 + art_sys_154: -2.83486885e-13 + art_sys_155: 1.03763412e-16 + art_sys_156: 0.0 + art_sys_157: 1.37409872e-13 + art_sys_158: 0.0 + art_sys_159: 2.03977539e-14 + art_sys_160: 4.52014179e-15 + art_sys_161: -1.44997470e-15 + art_sys_162: -1.44997470e-15 + art_sys_163: -1.78281661e-15 + art_sys_164: -1.78281661e-15 + art_sys_165: 1.97881722e-29 + art_sys_166: -6.55213046e-30 + art_sys_167: -0.0 + art_sys_168: 6.32112097e-24 + art_sys_169: 7.52010782e-24 + art_sys_170: 1.00515010e-24 + art_sys_171: 4.61955710e-24 + art_sys_172: 6.36877548e-25 + art_sys_173: 3.29112810e-26 + art_sys_174: 1.97939952e-26 + art_sys_175: -3.59478735e-27 + art_sys_176: 4.37989919e-27 + art_sys_177: -1.08906350e-25 + art_sys_178: 5.83804444e-27 + art_sys_179: -2.79219925e-29 + art_sys_180: 4.78766307e-28 + art_sys_181: 1.15094234e-26 + art_sys_182: 6.28562816e-28 + art_sys_183: 1.40267503e-29 + art_sys_184: -5.84621505e-30 + art_sys_185: -1.60449891e-31 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -21797,167 +21797,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: 1.00061354e-44 - art_sys_26: -2.55281149e-38 - art_sys_27: -1.32577738e-30 - art_sys_28: 3.24204078e-30 - art_sys_29: 3.51032666e-10 - art_sys_30: -3.67526173e-08 - art_sys_31: -3.85795824e-08 - art_sys_32: -1.84063241e-07 - art_sys_33: 3.86401432e-06 - art_sys_34: 1.21875230e-05 - art_sys_35: 2.30503909e-05 - art_sys_36: -1.15854855e-22 - art_sys_37: 9.07684027e-23 - art_sys_38: -1.54587071e-05 - art_sys_39: 1.52274074e-22 - art_sys_40: -3.90239418e-23 - art_sys_41: 1.45331323e-22 - art_sys_42: -2.90627656e-05 - art_sys_43: -2.06122506e-22 - art_sys_44: 2.63677623e-04 - art_sys_45: 8.81203737e-23 - art_sys_46: -1.17245605e-20 - art_sys_47: 3.56042049e-04 - art_sys_48: 3.67703569e-21 - art_sys_49: -4.33593461e-21 + art_sys_25: -1.57594330e-84 + art_sys_26: -8.25551140e-79 + art_sys_27: 5.18513494e-72 + art_sys_28: -3.10221417e-71 + art_sys_29: -1.19151896e-60 + art_sys_30: -9.68445192e-58 + art_sys_31: -4.53004750e-55 + art_sys_32: 5.41138584e-47 + art_sys_33: 1.62168260e-41 + art_sys_34: 1.63504123e-34 + art_sys_35: 1.14619861e-35 + art_sys_36: -3.51032666e-10 + art_sys_37: 3.67526173e-08 + art_sys_38: 3.85795824e-08 + art_sys_39: 1.84063241e-07 + art_sys_40: 3.86401432e-06 + art_sys_41: -1.21875230e-05 + art_sys_42: -2.30503909e-05 + art_sys_43: -1.54587071e-05 + art_sys_44: 2.90627656e-05 + art_sys_45: -2.63677623e-04 + art_sys_46: -3.56042049e-04 + art_sys_47: -5.81003086e-21 + art_sys_48: -1.39811620e-20 + art_sys_49: 1.79240234e-21 art_sys_50: -4.96469086e-04 - art_sys_51: 2.64395106e-03 - art_sys_52: 2.11193677e-19 - art_sys_53: 7.85084796e-20 - art_sys_54: 1.16828350e-19 - art_sys_55: 8.17527871e-20 - art_sys_56: -1.54074040e-20 - art_sys_57: -7.18139788e-14 - art_sys_58: 2.23366348e-14 - art_sys_59: -2.05578770e-14 - art_sys_60: -5.13012830e-04 - art_sys_61: 2.18994774e-15 - art_sys_62: 8.63021076e-16 - art_sys_63: 4.15278637e-16 - art_sys_64: 4.04664776e-17 - art_sys_65: 3.58693370e-17 - art_sys_66: 6.25085457e-03 - art_sys_67: 1.90863769e-17 - art_sys_68: -3.48938849e-17 - art_sys_69: -3.42399314e-03 - art_sys_70: 1.48722726e-15 - art_sys_71: 5.06996111e-14 - art_sys_72: 4.49533110e-14 - art_sys_73: 1.94874429e-03 - art_sys_74: -4.65640311e-12 - art_sys_75: -5.78452254e-18 - art_sys_76: 5.85052363e-15 - art_sys_77: 1.22248540e-15 - art_sys_78: 5.52295577e-16 - art_sys_79: -1.43828060e-18 - art_sys_80: -1.78875985e-12 - art_sys_81: 1.02479162e-16 - art_sys_82: 1.71456166e-16 - art_sys_83: 9.64536662e-17 - art_sys_84: -6.33830292e-15 - art_sys_85: 2.59879845e-17 - art_sys_86: 5.02862268e-18 - art_sys_87: -1.14783295e-13 - art_sys_88: -1.54002221e-13 - art_sys_89: 1.89310883e-13 - art_sys_90: 5.17965359e-12 - art_sys_91: 9.63369930e-13 - art_sys_92: 7.33986911e-05 - art_sys_93: -7.89626470e-13 - art_sys_94: 2.63256453e-05 - art_sys_95: 1.44172976e-13 - art_sys_96: 4.50368059e-14 - art_sys_97: -2.16207477e-05 - art_sys_98: 5.01197783e-13 - art_sys_99: -1.29739969e-13 - art_sys_100: -1.12554916e-05 - art_sys_101: 1.72420178e-12 - art_sys_102: -3.40534532e-14 - art_sys_103: 6.09515829e-06 - art_sys_104: -9.00779000e-13 - art_sys_105: -1.13262962e-13 - art_sys_106: -1.05244970e-12 - art_sys_107: 6.94296398e-13 - art_sys_108: 2.85206018e-06 - art_sys_109: 2.00827762e-11 - art_sys_110: 8.19595838e-14 - art_sys_111: 7.71893505e-11 - art_sys_112: -1.15756666e-06 - art_sys_113: 1.77600619e-14 - art_sys_114: -7.24393525e-11 - art_sys_115: -4.40876138e-07 - art_sys_116: -8.80466540e-12 - art_sys_117: 1.19593080e-14 - art_sys_118: -7.46125922e-11 - art_sys_119: -1.63445833e-07 - art_sys_120: 1.32870991e-11 - art_sys_121: -3.54525222e-12 - art_sys_122: -8.53705753e-12 - art_sys_123: -5.54210789e-08 - art_sys_124: -1.74302034e-13 - art_sys_125: 9.78616137e-13 - art_sys_126: -1.15087477e-11 - art_sys_127: -2.14390528e-12 - art_sys_128: -1.99429646e-08 - art_sys_129: 6.55815676e-09 - art_sys_130: 2.14832728e-09 - art_sys_131: 6.62729449e-10 - art_sys_132: 3.63307804e-12 - art_sys_133: 1.59354271e-12 - art_sys_134: -1.94870247e-10 - art_sys_135: -3.78671619e-12 - art_sys_136: -6.50930075e-11 - art_sys_137: -1.19513913e-12 - art_sys_138: 7.82140999e-12 - art_sys_139: -3.57388863e-13 - art_sys_140: 3.66196054e-15 - art_sys_141: 1.63308112e-12 - art_sys_142: 0.0 - art_sys_143: -2.38598153e-13 - art_sys_144: -9.31710012e-13 - art_sys_145: -1.19500891e-12 - art_sys_146: 6.94802393e-15 - art_sys_147: -1.98116603e-14 - art_sys_148: 2.27039264e-14 - art_sys_149: -7.24668950e-15 - art_sys_150: 5.92791894e-16 - art_sys_151: 3.49826667e-17 - art_sys_152: 3.58037450e-16 - art_sys_153: 2.60060496e-17 - art_sys_154: 4.39713136e-16 - art_sys_155: -9.90734400e-16 - art_sys_156: -4.20895489e-15 - art_sys_157: -2.49737027e-15 - art_sys_158: 0.0 - art_sys_159: 5.10852518e-14 - art_sys_160: 5.10852518e-14 - art_sys_161: 4.01850107e-15 - art_sys_162: -1.48883841e-27 - art_sys_163: -0.0 - art_sys_164: -9.08763897e-28 - art_sys_165: -2.67429422e-23 - art_sys_166: 2.17660452e-23 - art_sys_167: -3.66511594e-25 - art_sys_168: 9.43992518e-25 - art_sys_169: 3.38449052e-25 - art_sys_170: -1.08164529e-24 - art_sys_171: -7.64159634e-24 - art_sys_172: 8.18423854e-24 - art_sys_173: -1.31043541e-24 - art_sys_174: -1.43484474e-27 - art_sys_175: 6.96914743e-26 - art_sys_176: -1.55726957e-25 - art_sys_177: 3.00564173e-26 - art_sys_178: 1.19383000e-26 - art_sys_179: -1.69584766e-25 - art_sys_180: -1.86233128e-26 - art_sys_181: 2.28923897e-27 - art_sys_182: -1.49203825e-27 - art_sys_183: -1.99229442e-29 - art_sys_184: -3.32091383e-30 - art_sys_185: -1.28991442e-28 + art_sys_51: -2.64395106e-03 + art_sys_52: -4.43309840e-20 + art_sys_53: 1.10415063e-19 + art_sys_54: 6.73477703e-20 + art_sys_55: -3.81673305e-20 + art_sys_56: -2.78326156e-20 + art_sys_57: 5.13012830e-04 + art_sys_58: -6.25085457e-03 + art_sys_59: -9.35817169e-20 + art_sys_60: -5.30671960e-19 + art_sys_61: -3.42399317e-03 + art_sys_62: 1.07022949e-19 + art_sys_63: -5.66871788e-19 + art_sys_64: -9.82958376e-15 + art_sys_65: -1.16627341e-14 + art_sys_66: 2.09369746e-15 + art_sys_67: -1.58174737e-15 + art_sys_68: 1.55251855e-16 + art_sys_69: 6.35457835e-16 + art_sys_70: 5.14699600e-16 + art_sys_71: 2.66721485e-16 + art_sys_72: -1.32349113e-17 + art_sys_73: 1.79062389e-17 + art_sys_74: 1.94874429e-03 + art_sys_75: -4.74823180e-18 + art_sys_76: -8.15223894e-15 + art_sys_77: 4.81787143e-16 + art_sys_78: -5.40705892e-16 + art_sys_79: -1.28932350e-18 + art_sys_80: -8.49781427e-16 + art_sys_81: 2.26076716e-18 + art_sys_82: -2.70522065e-14 + art_sys_83: 1.22776713e-16 + art_sys_84: 9.82938195e-17 + art_sys_85: -7.84240538e-18 + art_sys_86: 1.29681415e-17 + art_sys_87: -3.12404884e-12 + art_sys_88: -1.79549728e-13 + art_sys_89: -5.98133807e-18 + art_sys_90: 8.49773527e-15 + art_sys_91: 1.53046950e-15 + art_sys_92: 5.88821612e-18 + art_sys_93: -3.56054387e-19 + art_sys_94: -2.04210903e-13 + art_sys_95: 7.33986343e-05 + art_sys_96: 1.55532342e-13 + art_sys_97: -7.61961304e-14 + art_sys_98: -2.63256383e-05 + art_sys_99: 2.17565080e-13 + art_sys_100: 2.16208244e-05 + art_sys_101: 2.20387945e-11 + art_sys_102: -1.12555477e-05 + art_sys_103: 1.62088312e-11 + art_sys_104: 2.72149039e-11 + art_sys_105: -2.79077144e-14 + art_sys_106: -1.48473517e-10 + art_sys_107: 6.09517699e-06 + art_sys_108: -4.52418699e-14 + art_sys_109: -1.74854307e-13 + art_sys_110: -2.85209160e-06 + art_sys_111: -1.42206073e-12 + art_sys_112: 5.85283420e-11 + art_sys_113: -4.89614842e-12 + art_sys_114: -8.65152587e-14 + art_sys_115: 4.28758899e-13 + art_sys_116: -1.15758365e-06 + art_sys_117: -3.09443027e-13 + art_sys_118: 1.00789763e-11 + art_sys_119: 4.40864146e-07 + art_sys_120: 8.14572410e-12 + art_sys_121: 4.50981360e-14 + art_sys_122: 4.77215707e-12 + art_sys_123: 1.63436519e-07 + art_sys_124: -2.77331164e-12 + art_sys_125: -4.56134019e-14 + art_sys_126: -2.16545928e-12 + art_sys_127: -5.54277791e-08 + art_sys_128: 5.24858903e-12 + art_sys_129: -3.37215608e-16 + art_sys_130: 1.99124496e-08 + art_sys_131: 2.89953212e-14 + art_sys_132: -2.55328572e-11 + art_sys_133: 6.52791276e-09 + art_sys_134: 1.27025442e-11 + art_sys_135: 1.45867705e-12 + art_sys_136: 2.83808262e-15 + art_sys_137: 2.16068795e-09 + art_sys_138: 2.16836281e-12 + art_sys_139: 6.56184767e-10 + art_sys_140: 6.52679575e-16 + art_sys_141: 4.38651824e-12 + art_sys_142: -1.93022007e-12 + art_sys_143: 2.01550391e-10 + art_sys_144: -9.02985601e-15 + art_sys_145: -1.52074980e-12 + art_sys_146: 6.78602070e-11 + art_sys_147: -1.65682200e-15 + art_sys_148: -1.40813840e-16 + art_sys_149: 4.72352408e-13 + art_sys_150: 8.57790563e-12 + art_sys_151: -3.08325370e-13 + art_sys_152: 4.41707269e-16 + art_sys_153: -9.56029699e-13 + art_sys_154: 9.49816106e-13 + art_sys_155: -3.44090758e-16 + art_sys_156: -0.0 + art_sys_157: -4.59788441e-13 + art_sys_158: -0.0 + art_sys_159: -6.80815524e-14 + art_sys_160: -1.51114225e-14 + art_sys_161: 4.80674589e-15 + art_sys_162: 4.80674589e-15 + art_sys_163: 5.95002216e-15 + art_sys_164: 5.95002216e-15 + art_sys_165: -6.59871559e-29 + art_sys_166: 2.18476150e-29 + art_sys_167: 0.0 + art_sys_168: -1.01697797e-23 + art_sys_169: -2.49970076e-23 + art_sys_170: -2.58042500e-24 + art_sys_171: -1.53786439e-23 + art_sys_172: -2.11880671e-24 + art_sys_173: -1.09477078e-25 + art_sys_174: -6.59338421e-26 + art_sys_175: 1.19640988e-26 + art_sys_176: -1.45684873e-26 + art_sys_177: 3.62254135e-25 + art_sys_178: -1.94372284e-26 + art_sys_179: 9.24701618e-29 + art_sys_180: -1.59785361e-27 + art_sys_181: -3.82878004e-26 + art_sys_182: -2.08873298e-27 + art_sys_183: -4.66348970e-29 + art_sys_184: 1.94402459e-29 + art_sys_185: 5.33357793e-31 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -22088,167 +22088,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: 7.59834034e-45 - art_sys_26: -1.93852369e-38 - art_sys_27: -1.00675309e-30 - art_sys_28: 2.46190244e-30 - art_sys_29: 2.66562795e-10 - art_sys_30: -4.87868611e-09 - art_sys_31: -5.31346452e-09 - art_sys_32: -2.38294428e-08 - art_sys_33: 6.71789689e-07 - art_sys_34: 1.80287584e-06 - art_sys_35: 3.63678586e-06 - art_sys_36: -1.80755184e-23 - art_sys_37: 1.36004583e-23 - art_sys_38: -1.99825287e-06 - art_sys_39: 2.00587711e-23 - art_sys_40: -4.64161352e-24 - art_sys_41: 1.93533025e-23 - art_sys_42: -1.93477493e-05 - art_sys_43: -1.61412235e-22 - art_sys_44: -4.60600348e-06 - art_sys_45: -2.07423883e-22 - art_sys_46: -1.00138123e-21 - art_sys_47: 6.73436113e-05 - art_sys_48: -2.29058229e-22 - art_sys_49: 2.20132920e-23 + art_sys_25: -1.21628518e-84 + art_sys_26: -6.37145768e-79 + art_sys_27: 4.00179539e-72 + art_sys_28: -2.39423398e-71 + art_sys_29: -9.19593239e-61 + art_sys_30: -7.47428855e-58 + art_sys_31: -3.49621046e-55 + art_sys_32: 4.17641178e-47 + art_sys_33: 1.25158592e-41 + art_sys_34: 1.26189587e-34 + art_sys_35: 8.84615789e-36 + art_sys_36: -2.66562795e-10 + art_sys_37: 4.87868611e-09 + art_sys_38: 5.31346452e-09 + art_sys_39: 2.38294428e-08 + art_sys_40: 6.71789689e-07 + art_sys_41: -1.80287584e-06 + art_sys_42: -3.63678586e-06 + art_sys_43: -1.99825287e-06 + art_sys_44: 1.93477493e-05 + art_sys_45: 4.60600348e-06 + art_sys_46: -6.73436113e-05 + art_sys_47: -1.60744466e-21 + art_sys_48: 4.13228449e-21 + art_sys_49: -6.75352221e-22 art_sys_50: 2.38080265e-04 - art_sys_51: 4.35894620e-04 - art_sys_52: 1.13843396e-20 - art_sys_53: 1.40613384e-20 - art_sys_54: 1.80843278e-20 - art_sys_55: 1.45786143e-20 - art_sys_56: 6.96638127e-21 - art_sys_57: 8.62140347e-14 - art_sys_58: -1.87942279e-15 - art_sys_59: -1.52878113e-14 - art_sys_60: -1.08855472e-03 - art_sys_61: 1.49455056e-15 - art_sys_62: -6.32554974e-16 - art_sys_63: 8.88742389e-16 - art_sys_64: 1.01649897e-15 - art_sys_65: 4.08722585e-16 - art_sys_66: 5.79389745e-04 - art_sys_67: -7.80908167e-18 - art_sys_68: -8.98084517e-18 - art_sys_69: -5.45550145e-03 - art_sys_70: 7.21875419e-17 - art_sys_71: 4.82283727e-15 - art_sys_72: 4.55348174e-15 - art_sys_73: -2.10561723e-03 - art_sys_74: -7.41132909e-12 - art_sys_75: 1.34536233e-17 - art_sys_76: -1.70438748e-15 - art_sys_77: -2.82919405e-15 - art_sys_78: 4.49628044e-16 - art_sys_79: 4.18769915e-18 - art_sys_80: -2.86396365e-12 - art_sys_81: 1.06707683e-16 - art_sys_82: -1.25575604e-16 - art_sys_83: -1.55490576e-16 - art_sys_84: 1.21808199e-14 - art_sys_85: 1.01425759e-17 - art_sys_86: 2.93332398e-17 - art_sys_87: 2.51498323e-13 - art_sys_88: 3.65905235e-13 - art_sys_89: -4.59081171e-13 - art_sys_90: 8.25399861e-12 - art_sys_91: -1.01423037e-12 - art_sys_92: -4.82262722e-05 - art_sys_93: -1.25368743e-12 - art_sys_94: -5.59102576e-05 - art_sys_95: -1.25770212e-13 - art_sys_96: -1.11121208e-13 - art_sys_97: 3.72036290e-05 - art_sys_98: -1.12733913e-12 - art_sys_99: 5.96569235e-14 - art_sys_100: 2.31540231e-05 - art_sys_101: -3.11035272e-12 - art_sys_102: 8.48527764e-14 - art_sys_103: -1.33563515e-05 - art_sys_104: 1.47098862e-12 - art_sys_105: 2.84806988e-13 - art_sys_106: 2.09130688e-12 - art_sys_107: -2.01442069e-12 - art_sys_108: -6.52237082e-06 - art_sys_109: -3.72772560e-11 - art_sys_110: -2.07085153e-13 - art_sys_111: -1.30454847e-10 - art_sys_112: 2.74553214e-06 - art_sys_113: -4.47930919e-14 - art_sys_114: 1.26367203e-10 - art_sys_115: 1.06925596e-06 - art_sys_116: 2.02716592e-11 - art_sys_117: -3.02832338e-14 - art_sys_118: 1.27287879e-10 - art_sys_119: 4.03177181e-07 - art_sys_120: -2.42326247e-11 - art_sys_121: 8.38168504e-12 - art_sys_122: 1.92189479e-11 - art_sys_123: 1.38442766e-07 - art_sys_124: 3.60883398e-13 - art_sys_125: -2.25061770e-12 - art_sys_126: 2.78588049e-11 - art_sys_127: 5.08630671e-12 - art_sys_128: 5.01885967e-08 - art_sys_129: -1.66087740e-08 - art_sys_130: -5.46034413e-09 - art_sys_131: -1.68920499e-09 - art_sys_132: -8.59140488e-12 - art_sys_133: -3.99307042e-12 - art_sys_134: 4.97499539e-10 - art_sys_135: 9.04278156e-12 - art_sys_136: 1.66373408e-10 - art_sys_137: 2.90693617e-12 - art_sys_138: -2.00151661e-11 - art_sys_139: 9.14427966e-13 - art_sys_140: -6.32571502e-15 - art_sys_141: -4.15711018e-12 - art_sys_142: -0.0 - art_sys_143: 5.71941141e-13 - art_sys_144: 2.36046992e-12 - art_sys_145: 3.04454922e-12 - art_sys_146: -1.75855022e-14 - art_sys_147: 5.03261940e-14 - art_sys_148: -5.34470978e-14 - art_sys_149: 1.86623177e-14 - art_sys_150: -1.49337114e-15 - art_sys_151: -1.39514240e-16 - art_sys_152: -9.38523281e-16 - art_sys_153: -6.77468653e-17 - art_sys_154: -1.10866700e-15 - art_sys_155: 2.50616433e-15 - art_sys_156: 1.07187926e-14 - art_sys_157: 6.37586431e-15 - art_sys_158: -0.0 - art_sys_159: -1.31005209e-13 - art_sys_160: -1.31005209e-13 - art_sys_161: -1.00946052e-14 - art_sys_162: 3.73882351e-27 - art_sys_163: 0.0 - art_sys_164: 2.28187432e-27 - art_sys_165: 6.96907481e-23 - art_sys_166: -5.48807236e-23 - art_sys_167: 6.85418810e-25 - art_sys_168: -2.31322925e-24 - art_sys_169: -8.25683758e-25 - art_sys_170: 2.67317554e-24 - art_sys_171: 1.94350385e-23 - art_sys_172: -2.08212721e-23 - art_sys_173: 3.32302272e-24 - art_sys_174: 3.65263010e-27 - art_sys_175: -1.78172116e-25 - art_sys_176: 3.97829885e-25 - art_sys_177: -7.66457364e-26 - art_sys_178: -3.02948082e-26 - art_sys_179: 4.30636841e-25 - art_sys_180: 4.72730485e-26 - art_sys_181: -5.83000020e-27 - art_sys_182: 3.79345754e-27 - art_sys_183: 5.07841441e-29 - art_sys_184: 8.45928272e-30 - art_sys_185: 3.26089818e-28 + art_sys_51: -4.35894620e-04 + art_sys_52: -1.21408671e-20 + art_sys_53: 1.73035458e-20 + art_sys_54: 5.86725747e-21 + art_sys_55: -1.43773245e-20 + art_sys_56: -2.59443339e-21 + art_sys_57: 1.08855472e-03 + art_sys_58: -5.79389745e-04 + art_sys_59: 1.17807075e-20 + art_sys_60: -7.97091180e-20 + art_sys_61: -5.45550149e-03 + art_sys_62: -1.81831953e-20 + art_sys_63: 3.27162094e-19 + art_sys_64: 1.21741923e-15 + art_sys_65: 8.60748876e-15 + art_sys_66: -1.95026997e-15 + art_sys_67: 1.52633299e-15 + art_sys_68: -2.28361926e-16 + art_sys_69: -4.24521224e-16 + art_sys_70: -5.65382015e-16 + art_sys_71: -2.91879413e-16 + art_sys_72: 5.12869644e-18 + art_sys_73: -2.47539294e-17 + art_sys_74: -2.10561723e-03 + art_sys_75: 1.54422500e-17 + art_sys_76: 6.35839126e-15 + art_sys_77: -1.90193805e-15 + art_sys_78: 1.72430912e-15 + art_sys_79: 5.37342822e-18 + art_sys_80: 1.12887839e-15 + art_sys_81: -6.89176177e-18 + art_sys_82: 2.92299025e-14 + art_sys_83: -1.41336958e-16 + art_sys_84: -1.09198339e-16 + art_sys_85: -2.01767101e-17 + art_sys_86: -1.09130615e-18 + art_sys_87: 5.34359885e-12 + art_sys_88: 3.95339005e-13 + art_sys_89: 4.36784714e-18 + art_sys_90: -1.94088949e-14 + art_sys_91: -1.65365987e-15 + art_sys_92: -7.79674227e-18 + art_sys_93: 2.38897635e-18 + art_sys_94: 4.95266583e-13 + art_sys_95: -4.82261657e-05 + art_sys_96: -1.02734941e-13 + art_sys_97: 4.85689760e-14 + art_sys_98: 5.59102538e-05 + art_sys_99: 2.75874186e-12 + art_sys_100: -3.72037631e-05 + art_sys_101: -3.77611569e-11 + art_sys_102: 2.31541386e-05 + art_sys_103: -2.81606094e-11 + art_sys_104: -1.73110222e-11 + art_sys_105: 7.02301752e-14 + art_sys_106: 3.01988887e-10 + art_sys_107: -1.33563931e-05 + art_sys_108: 1.13846389e-13 + art_sys_109: 4.40021375e-13 + art_sys_110: 6.52244269e-06 + art_sys_111: -1.80233747e-11 + art_sys_112: -1.33815331e-10 + art_sys_113: 1.00710201e-11 + art_sys_114: 2.18504340e-13 + art_sys_115: -4.74810949e-13 + art_sys_116: 2.74557449e-06 + art_sys_117: 7.83565418e-13 + art_sys_118: -2.16805607e-11 + art_sys_119: -1.06922702e-06 + art_sys_120: -1.87047233e-11 + art_sys_121: -1.13877760e-13 + art_sys_122: -8.32574711e-12 + art_sys_123: -4.03154200e-07 + art_sys_124: 5.65536924e-12 + art_sys_125: 1.15902948e-13 + art_sys_126: 5.24096301e-12 + art_sys_127: 1.38459761e-07 + art_sys_128: -1.19023395e-11 + art_sys_129: 9.91177066e-16 + art_sys_130: -5.01126251e-08 + art_sys_131: -7.38784942e-14 + art_sys_132: 5.83417558e-11 + art_sys_133: -1.65330372e-08 + art_sys_134: -3.08411374e-11 + art_sys_135: -3.31930081e-12 + art_sys_136: -7.25436052e-15 + art_sys_137: -5.49142443e-09 + art_sys_138: -5.30463012e-12 + art_sys_139: -1.67275975e-09 + art_sys_140: -1.63991200e-15 + art_sys_141: -1.11299082e-11 + art_sys_142: 4.64007262e-12 + art_sys_143: -5.14303648e-10 + art_sys_144: 2.26291168e-14 + art_sys_145: 3.74926839e-12 + art_sys_146: -1.73375345e-10 + art_sys_147: 4.23079723e-15 + art_sys_148: 3.58708948e-16 + art_sys_149: -1.10196332e-12 + art_sys_150: -2.19475394e-11 + art_sys_151: 7.57638400e-13 + art_sys_152: -1.13713924e-15 + art_sys_153: 2.43790377e-12 + art_sys_154: -2.20066058e-12 + art_sys_155: 8.89306612e-16 + art_sys_156: 0.0 + art_sys_157: 1.10035341e-12 + art_sys_158: 0.0 + art_sys_159: 1.66164005e-13 + art_sys_160: 3.64015141e-14 + art_sys_161: -1.24251375e-14 + art_sys_162: -1.24251375e-14 + art_sys_163: -1.45655184e-14 + art_sys_164: -1.45655184e-14 + art_sys_165: 1.62638639e-28 + art_sys_166: -5.38846991e-29 + art_sys_167: -0.0 + art_sys_168: 8.25438168e-23 + art_sys_169: 6.38055714e-23 + art_sys_170: 2.84131790e-24 + art_sys_171: 3.89317060e-23 + art_sys_172: 5.38741598e-24 + art_sys_173: 2.76477469e-25 + art_sys_174: 1.65793161e-25 + art_sys_175: -3.05160281e-26 + art_sys_176: 3.71489597e-26 + art_sys_177: -9.21018501e-25 + art_sys_178: 4.89515117e-26 + art_sys_179: -2.40424932e-28 + art_sys_180: 3.90388849e-27 + art_sys_181: 9.71767288e-26 + art_sys_182: 5.32874919e-27 + art_sys_183: 1.18973050e-28 + art_sys_184: -4.95617246e-29 + art_sys_185: -1.36218524e-30 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -22379,167 +22379,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: 5.24971562e-46 - art_sys_26: -1.33933170e-39 - art_sys_27: -6.95568661e-32 - art_sys_28: 1.70093561e-31 - art_sys_29: 1.84169019e-11 - art_sys_30: -3.60132157e-10 - art_sys_31: -4.52659684e-10 - art_sys_32: -1.56536859e-09 - art_sys_33: 4.97487637e-08 - art_sys_34: 1.40638580e-07 - art_sys_35: 2.40485602e-07 - art_sys_36: -1.25491851e-24 - art_sys_37: -1.56141959e-25 - art_sys_38: -3.29250718e-09 - art_sys_39: 8.85289209e-26 - art_sys_40: 1.78024014e-25 - art_sys_41: 3.33942833e-25 - art_sys_42: -1.78673663e-06 - art_sys_43: -1.57028180e-23 - art_sys_44: -1.15583117e-05 - art_sys_45: -2.07660871e-24 - art_sys_46: 4.25137881e-22 - art_sys_47: -9.76673846e-06 - art_sys_48: -1.64984054e-22 - art_sys_49: 1.71603090e-22 + art_sys_25: -8.40139435e-86 + art_sys_26: -4.40103437e-80 + art_sys_27: 2.76420874e-73 + art_sys_28: -1.65379833e-72 + art_sys_29: -6.35201810e-62 + art_sys_30: -5.16280613e-59 + art_sys_31: -2.41497992e-56 + art_sys_32: 2.88482365e-48 + art_sys_33: 8.64523147e-43 + art_sys_34: 8.71644664e-36 + art_sys_35: 6.11041411e-37 + art_sys_36: -1.84169019e-11 + art_sys_37: 3.60132157e-10 + art_sys_38: 4.52659684e-10 + art_sys_39: 1.56536859e-09 + art_sys_40: 4.97487637e-08 + art_sys_41: -1.40638580e-07 + art_sys_42: -2.40485602e-07 + art_sys_43: -3.29250718e-09 + art_sys_44: 1.78673663e-06 + art_sys_45: 1.15583117e-05 + art_sys_46: 9.76673846e-06 + art_sys_47: 9.39028596e-23 + art_sys_48: 1.17470689e-21 + art_sys_49: -9.09453415e-23 art_sys_50: 5.19172387e-05 - art_sys_51: -1.19587896e-04 - art_sys_52: -1.17640255e-20 - art_sys_53: -3.50539247e-21 - art_sys_54: -5.59294591e-21 - art_sys_55: -3.61000098e-21 - art_sys_56: 1.54705445e-21 - art_sys_57: -1.07155793e-13 - art_sys_58: 2.83418123e-14 - art_sys_59: -1.32514815e-14 - art_sys_60: -4.39685025e-05 - art_sys_61: -1.58112546e-15 - art_sys_62: -2.76006806e-16 - art_sys_63: 6.03192138e-17 - art_sys_64: -3.18460520e-16 - art_sys_65: -3.30891994e-16 - art_sys_66: -4.21270033e-04 - art_sys_67: -8.87080638e-18 - art_sys_68: -4.60229216e-17 - art_sys_69: -2.50775338e-04 - art_sys_70: -1.05379109e-16 - art_sys_71: -3.40530455e-15 - art_sys_72: -2.99333647e-15 - art_sys_73: -5.74256358e-04 - art_sys_74: -3.40308349e-13 - art_sys_75: -6.31052191e-17 - art_sys_76: 5.20005931e-14 - art_sys_77: 1.09990823e-14 - art_sys_78: 3.82839552e-15 - art_sys_79: -1.64107943e-17 - art_sys_80: -1.32923375e-13 - art_sys_81: 8.70281218e-16 - art_sys_82: 1.37859395e-15 - art_sys_83: 8.00944511e-16 - art_sys_84: -4.09173381e-14 - art_sys_85: 1.50013572e-16 - art_sys_86: 6.98547285e-17 - art_sys_87: -1.10732531e-12 - art_sys_88: -1.59910983e-12 - art_sys_89: 2.01295938e-12 - art_sys_90: 3.79521885e-13 - art_sys_91: -2.78993762e-13 - art_sys_92: 6.19815363e-04 - art_sys_93: -5.62122516e-14 - art_sys_94: 1.61636377e-04 - art_sys_95: 6.83250783e-13 - art_sys_96: 4.87477347e-13 - art_sys_97: -1.90775094e-04 - art_sys_98: 3.47892515e-12 - art_sys_99: -9.90148191e-13 - art_sys_100: -1.00986408e-04 - art_sys_101: 1.53854494e-11 - art_sys_102: -3.72509286e-13 - art_sys_103: 5.88036132e-05 - art_sys_104: -7.88452062e-12 - art_sys_105: -1.25288473e-12 - art_sys_106: -7.46128090e-12 - art_sys_107: 7.20058789e-12 - art_sys_108: 2.85945074e-05 - art_sys_109: 1.78594717e-10 - art_sys_110: 9.11202010e-13 - art_sys_111: 6.93607832e-10 - art_sys_112: -1.20004441e-05 - art_sys_113: 1.97082496e-13 - art_sys_114: -6.32526547e-10 - art_sys_115: -4.68850113e-06 - art_sys_116: -8.88520262e-11 - art_sys_117: 1.33289841e-13 - art_sys_118: -6.56613447e-10 - art_sys_119: -1.76864721e-06 - art_sys_120: 1.19660752e-10 - art_sys_121: -3.66164512e-11 - art_sys_122: -8.33326628e-11 - art_sys_123: -6.08102602e-07 - art_sys_124: -1.72299373e-12 - art_sys_125: 9.87882137e-12 - art_sys_126: -1.22118996e-10 - art_sys_127: -2.22137428e-11 - art_sys_128: -2.20792897e-07 - art_sys_129: 7.30893365e-08 - art_sys_130: 2.40554175e-08 - art_sys_131: 7.44343504e-09 - art_sys_132: 3.75410512e-11 - art_sys_133: 1.75481409e-11 - art_sys_134: -2.19311408e-09 - art_sys_135: -3.95701216e-11 - art_sys_136: -7.33584691e-10 - art_sys_137: -1.27349742e-11 - art_sys_138: 8.82698642e-11 - art_sys_139: -4.03197385e-12 - art_sys_140: 2.21464055e-14 - art_sys_141: 1.83165894e-11 - art_sys_142: 0.0 - art_sys_143: -2.50127482e-12 - art_sys_144: -1.03936181e-11 - art_sys_145: -1.34162142e-11 - art_sys_146: 7.74119656e-14 - art_sys_147: -2.21662569e-13 - art_sys_148: 2.32300695e-13 - art_sys_149: -8.23864292e-14 - art_sys_150: 6.56396087e-15 - art_sys_151: 6.52028063e-16 - art_sys_152: 4.15642182e-15 - art_sys_153: 2.99702913e-16 - art_sys_154: 4.87651497e-15 - art_sys_155: -1.10305325e-14 - art_sys_156: -4.72318579e-14 - art_sys_157: -2.81056940e-14 - art_sys_158: 0.0 - art_sys_159: 5.78364578e-13 - art_sys_160: 5.78364578e-13 - art_sys_161: 4.43638173e-14 - art_sys_162: -1.64303888e-26 - art_sys_163: -0.0 - art_sys_164: -1.00275962e-26 - art_sys_165: -3.07203663e-22 - art_sys_166: 2.41291130e-22 - art_sys_167: -2.84034173e-24 - art_sys_168: 1.01394454e-23 - art_sys_169: 3.60223993e-24 - art_sys_170: -1.17151815e-23 - art_sys_171: -8.56101115e-23 - art_sys_172: 9.16944780e-23 - art_sys_173: -1.46269633e-23 - art_sys_174: -1.60937712e-26 - art_sys_175: 7.85802915e-25 - art_sys_176: -1.75440594e-24 - art_sys_177: 3.37872654e-25 - art_sys_178: 1.33416486e-25 - art_sys_179: -1.89660610e-24 - art_sys_180: -2.08183845e-25 - art_sys_181: 2.56906473e-26 - art_sys_182: -1.67109829e-26 - art_sys_183: -2.23803370e-28 - art_sys_184: -3.72760567e-29 - art_sys_185: -1.43498775e-27 + art_sys_51: 1.19587896e-04 + art_sys_52: 1.60612685e-21 + art_sys_53: -5.09855251e-21 + art_sys_54: -3.47158203e-21 + art_sys_55: 1.01286030e-21 + art_sys_56: 2.03682700e-21 + art_sys_57: 4.39685025e-05 + art_sys_58: 4.21270033e-04 + art_sys_59: 7.26434142e-21 + art_sys_60: 3.75177982e-20 + art_sys_61: -2.50775340e-04 + art_sys_62: -9.61284718e-21 + art_sys_63: 1.05374554e-19 + art_sys_64: -6.57596765e-14 + art_sys_65: 1.95497272e-14 + art_sys_66: -5.36968032e-15 + art_sys_67: -5.83077657e-15 + art_sys_68: 1.08069919e-16 + art_sys_69: 5.11489008e-17 + art_sys_70: 1.49218401e-17 + art_sys_71: -3.18351206e-18 + art_sys_72: 3.81419321e-17 + art_sys_73: -1.25215565e-17 + art_sys_74: -5.74256358e-04 + art_sys_75: -6.75342035e-17 + art_sys_76: -6.86699074e-14 + art_sys_77: 4.07084156e-16 + art_sys_78: -3.85506382e-15 + art_sys_79: -1.73134491e-17 + art_sys_80: -6.74084699e-15 + art_sys_81: 2.62971843e-17 + art_sys_82: 7.97181421e-15 + art_sys_83: 1.09249490e-15 + art_sys_84: 8.88591746e-16 + art_sys_85: -3.35990804e-17 + art_sys_86: 1.04385191e-16 + art_sys_87: -2.75578306e-11 + art_sys_88: -1.74179223e-12 + art_sys_89: -4.06273984e-17 + art_sys_90: 8.52915682e-14 + art_sys_91: -4.50946079e-16 + art_sys_92: 4.00657831e-17 + art_sys_93: 1.18347597e-18 + art_sys_94: -2.17164869e-12 + art_sys_95: 6.19814992e-04 + art_sys_96: 1.30218565e-12 + art_sys_97: -6.74297353e-13 + art_sys_98: -1.61636309e-04 + art_sys_99: 6.39540414e-12 + art_sys_100: 1.90775760e-04 + art_sys_101: 1.95540557e-10 + art_sys_102: -1.00986912e-04 + art_sys_103: 1.41229333e-10 + art_sys_104: 2.31009051e-10 + art_sys_105: -3.08951576e-13 + art_sys_106: -1.33112821e-09 + art_sys_107: 5.88037962e-05 + art_sys_108: -5.00817058e-13 + art_sys_109: -1.93577882e-12 + art_sys_110: -2.85948225e-05 + art_sys_111: -4.30046745e-11 + art_sys_112: 5.86662022e-10 + art_sys_113: -4.39279022e-11 + art_sys_114: -9.61343954e-13 + art_sys_115: 3.16317925e-12 + art_sys_116: -1.20006305e-05 + art_sys_117: -3.44798563e-12 + art_sys_118: 9.56043692e-11 + art_sys_119: 4.68837432e-06 + art_sys_120: 8.19735965e-11 + art_sys_121: 5.00647177e-13 + art_sys_122: 3.58905759e-11 + art_sys_123: 1.76854640e-06 + art_sys_124: -2.46376928e-11 + art_sys_125: -5.10514155e-13 + art_sys_126: -2.29996356e-11 + art_sys_127: -6.08177551e-07 + art_sys_128: 5.21984206e-11 + art_sys_129: -4.46126233e-15 + art_sys_130: 2.20459354e-07 + art_sys_131: 3.25597935e-13 + art_sys_132: -2.55769725e-10 + art_sys_133: 7.27565429e-08 + art_sys_134: 1.35245642e-10 + art_sys_135: 1.45530916e-11 + art_sys_136: 3.20069948e-14 + art_sys_137: 2.41920512e-08 + art_sys_138: 2.32424777e-11 + art_sys_139: 7.37113240e-09 + art_sys_140: 7.21122177e-15 + art_sys_141: 4.90172737e-11 + art_sys_142: -2.03096197e-11 + art_sys_143: 2.26701925e-09 + art_sys_144: -9.94667332e-14 + art_sys_145: -1.64752249e-11 + art_sys_146: 7.64400769e-10 + art_sys_147: -1.86519118e-14 + art_sys_148: -1.58091746e-15 + art_sys_149: 4.80668380e-12 + art_sys_150: 9.67928005e-11 + art_sys_151: -3.32140086e-12 + art_sys_152: 5.02077123e-15 + art_sys_153: -1.07464667e-11 + art_sys_154: 9.55230774e-12 + art_sys_155: -3.92358183e-15 + art_sys_156: -0.0 + art_sys_157: -4.81631896e-12 + art_sys_158: -0.0 + art_sys_159: -7.27317789e-13 + art_sys_160: -1.59371297e-13 + art_sys_161: 5.47406959e-14 + art_sys_162: 5.47406959e-14 + art_sys_163: 6.37587606e-14 + art_sys_164: 6.37587606e-14 + art_sys_165: -7.12524288e-28 + art_sys_166: 2.36089474e-28 + art_sys_167: 0.0 + art_sys_168: -2.28223817e-22 + art_sys_169: -2.81186481e-22 + art_sys_170: -1.79926194e-23 + art_sys_171: -1.71371798e-22 + art_sys_172: -2.37213998e-23 + art_sys_173: -1.21040296e-24 + art_sys_174: -7.28694045e-25 + art_sys_175: 1.34496691e-25 + art_sys_176: -1.63739077e-25 + art_sys_177: 4.05659636e-24 + art_sys_178: -2.15294607e-25 + art_sys_179: 1.06064059e-27 + art_sys_180: -1.70882394e-26 + art_sys_181: -4.27839193e-25 + art_sys_182: -2.34868623e-26 + art_sys_183: -5.24213824e-28 + art_sys_184: 2.18416964e-28 + art_sys_185: 6.00663763e-30 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -22670,167 +22670,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: 1.35916828e-47 - art_sys_26: -3.46757290e-41 - art_sys_27: -1.80084966e-33 - art_sys_28: 4.40377707e-33 - art_sys_29: 4.76819712e-13 - art_sys_30: -2.91916793e-11 - art_sys_31: -3.81846546e-11 - art_sys_32: -1.37435402e-10 - art_sys_33: 3.62784507e-09 - art_sys_34: 1.45766719e-08 - art_sys_35: 1.47673737e-08 - art_sys_36: -9.23172076e-26 - art_sys_37: -1.21207875e-25 - art_sys_38: 2.49468354e-08 - art_sys_39: -2.38659351e-25 - art_sys_40: 1.07075980e-25 - art_sys_41: -1.63660619e-25 - art_sys_42: 4.99845581e-08 - art_sys_43: 4.46741498e-25 - art_sys_44: -2.55462954e-06 - art_sys_45: 9.00506130e-24 - art_sys_46: 1.34980217e-22 - art_sys_47: -4.59701409e-06 - art_sys_48: -2.46504239e-23 - art_sys_49: 4.48859228e-23 + art_sys_25: -2.15827372e-87 + art_sys_26: -1.13060243e-81 + art_sys_27: 7.10110597e-75 + art_sys_28: -4.24852039e-74 + art_sys_29: -1.63179984e-63 + art_sys_30: -1.32629758e-60 + art_sys_31: -6.20395565e-58 + art_sys_32: 7.41095932e-50 + art_sys_33: 2.22091423e-44 + art_sys_34: 2.23920903e-37 + art_sys_35: 1.56973306e-38 + art_sys_36: -4.76819712e-13 + art_sys_37: 2.91916793e-11 + art_sys_38: 3.81846546e-11 + art_sys_39: 1.37435402e-10 + art_sys_40: 3.62784507e-09 + art_sys_41: -1.45766719e-08 + art_sys_42: -1.47673737e-08 + art_sys_43: 2.49468354e-08 + art_sys_44: -4.99845581e-08 + art_sys_45: 2.55462954e-06 + art_sys_46: 4.59701409e-06 + art_sys_47: 7.38081358e-23 + art_sys_48: -7.26752290e-23 + art_sys_49: 2.39571463e-26 art_sys_50: -2.57390653e-06 - art_sys_51: -4.20271378e-05 - art_sys_52: -2.58992496e-21 - art_sys_53: -1.28742039e-21 - art_sys_54: -1.85977712e-21 - art_sys_55: -1.33675060e-21 - art_sys_56: -1.78286121e-22 - art_sys_57: -1.61689074e-13 - art_sys_58: -1.51282214e-14 - art_sys_59: -2.20670608e-14 - art_sys_60: 6.62528367e-05 - art_sys_61: 7.00960463e-16 - art_sys_62: 2.02094221e-15 - art_sys_63: -2.31747090e-17 - art_sys_64: -6.97656592e-16 - art_sys_65: 8.09410691e-16 - art_sys_66: -6.85977960e-05 - art_sys_67: -6.79570440e-17 - art_sys_68: 1.45708634e-16 - art_sys_69: 4.11031689e-04 - art_sys_70: -1.23320734e-17 - art_sys_71: -5.65360294e-16 - art_sys_72: -5.21436328e-16 - art_sys_73: 1.75022210e-04 - art_sys_74: 5.58409640e-13 - art_sys_75: 1.17187650e-16 - art_sys_76: 6.70051601e-14 - art_sys_77: -1.98213912e-14 - art_sys_78: 1.58256027e-14 - art_sys_79: 4.88775075e-17 - art_sys_80: 2.15822224e-13 - art_sys_81: 2.77549284e-15 - art_sys_82: 9.97149521e-16 - art_sys_83: -5.28757492e-16 - art_sys_84: 5.65651429e-14 - art_sys_85: 5.58242412e-16 - art_sys_86: 4.28396945e-16 - art_sys_87: 1.65902723e-12 - art_sys_88: 2.94790903e-12 - art_sys_89: -3.89486354e-12 - art_sys_90: -6.21882256e-13 - art_sys_91: 8.53585687e-14 - art_sys_92: 4.90307689e-04 - art_sys_93: 9.52130442e-14 - art_sys_94: -3.00643326e-04 - art_sys_95: 4.97990087e-13 - art_sys_96: -9.83293317e-13 - art_sys_97: 1.22214888e-04 - art_sys_98: -6.41535555e-12 - art_sys_99: -2.32422278e-13 - art_sys_100: 1.36475664e-04 - art_sys_101: -1.13645866e-11 - art_sys_102: 7.66538623e-13 - art_sys_103: -8.81148710e-05 - art_sys_104: 4.19345217e-12 - art_sys_105: 2.64012929e-12 - art_sys_106: 9.95306408e-12 - art_sys_107: -1.39855198e-11 - art_sys_108: -4.85561806e-05 - art_sys_109: -1.65716848e-10 - art_sys_110: -1.94087034e-12 - art_sys_111: -4.00674240e-10 - art_sys_112: 2.20428813e-05 - art_sys_113: -4.18117319e-13 - art_sys_114: 4.37089767e-10 - art_sys_115: 9.07411621e-06 - art_sys_116: 1.53702695e-10 - art_sys_117: -2.85285095e-13 - art_sys_118: 3.99906114e-10 - art_sys_119: 3.56563272e-06 - art_sys_120: -1.00678893e-10 - art_sys_121: 6.67266007e-11 - art_sys_122: 1.33233312e-10 - art_sys_123: 1.25960813e-06 - art_sys_124: 2.44485140e-12 - art_sys_125: -1.69407969e-11 - art_sys_126: 2.35346205e-10 - art_sys_127: 4.07894618e-11 - art_sys_128: 4.66119248e-07 - art_sys_129: -1.56474727e-07 - art_sys_130: -5.19625652e-08 - art_sys_131: -1.61892276e-08 - art_sys_132: -6.84644493e-11 - art_sys_133: -3.66406940e-11 - art_sys_134: 4.78784478e-09 - art_sys_135: 7.38598625e-11 - art_sys_136: 1.60636635e-09 - art_sys_137: 2.48793045e-11 - art_sys_138: -1.93847428e-10 - art_sys_139: 8.85421805e-12 - art_sys_140: -2.39070245e-14 - art_sys_141: -3.97320238e-11 - art_sys_142: -0.0 - art_sys_143: 4.75589482e-12 - art_sys_144: 2.23136960e-11 - art_sys_145: 2.91621894e-11 - art_sys_146: -1.65489418e-13 - art_sys_147: 4.78184734e-13 - art_sys_148: -4.05733153e-13 - art_sys_149: 1.83552835e-13 - art_sys_150: -1.38676920e-14 - art_sys_151: -2.56345353e-15 - art_sys_152: -9.62715537e-15 - art_sys_153: -6.85342315e-16 - art_sys_154: -1.03310253e-14 - art_sys_155: 2.35649604e-14 - art_sys_156: 1.02558454e-13 - art_sys_157: 6.13909554e-14 - art_sys_158: -0.0 - art_sys_159: -1.28027740e-12 - art_sys_160: -1.28027740e-12 - art_sys_161: -9.29920761e-14 - art_sys_162: 3.44122702e-26 - art_sys_163: 0.0 - art_sys_164: 2.09967047e-26 - art_sys_165: 7.02548310e-22 - art_sys_166: -5.10823719e-22 - art_sys_167: 7.14488287e-25 - art_sys_168: -2.00313484e-23 - art_sys_169: -6.95927998e-24 - art_sys_170: 2.36013836e-23 - art_sys_171: 1.85043327e-22 - art_sys_172: -1.98289269e-22 - art_sys_173: 3.14018438e-23 - art_sys_174: 3.49142603e-26 - art_sys_175: -1.72330050e-24 - art_sys_176: 3.84088439e-24 - art_sys_177: -7.36248448e-25 - art_sys_178: -2.87127021e-25 - art_sys_179: 4.08794362e-24 - art_sys_180: 4.48309500e-25 - art_sys_181: -5.57817435e-26 - art_sys_182: 3.61309883e-26 - art_sys_183: 4.86842049e-28 - art_sys_184: 8.09491476e-29 - art_sys_185: 3.05863536e-27 + art_sys_51: 4.20271378e-05 + art_sys_52: 8.68875238e-22 + art_sys_53: -1.71543100e-21 + art_sys_54: -9.55470827e-22 + art_sys_55: 8.77589880e-22 + art_sys_56: 2.79848033e-22 + art_sys_57: -6.62528367e-05 + art_sys_58: 6.85977960e-05 + art_sys_59: -8.23181075e-23 + art_sys_60: 6.39106289e-21 + art_sys_61: 4.11031692e-04 + art_sys_62: 8.63301086e-22 + art_sys_63: -2.55449250e-20 + art_sys_64: -1.22294912e-13 + art_sys_65: -1.55682177e-14 + art_sys_66: 2.06846945e-15 + art_sys_67: -3.56126831e-15 + art_sys_68: 1.76174935e-16 + art_sys_69: 3.00441892e-16 + art_sys_70: -3.21250120e-17 + art_sys_71: 2.85563212e-17 + art_sys_72: -9.32635359e-17 + art_sys_73: -8.61097642e-17 + art_sys_74: 1.75022210e-04 + art_sys_75: 1.60353947e-16 + art_sys_76: -4.39770261e-14 + art_sys_77: -1.83174068e-14 + art_sys_78: 1.38053580e-14 + art_sys_79: 6.81256811e-17 + art_sys_80: 9.35597371e-16 + art_sys_81: -7.22860634e-17 + art_sys_82: -2.42959552e-15 + art_sys_83: 2.36234006e-17 + art_sys_84: 1.84320986e-16 + art_sys_85: -3.47507706e-16 + art_sys_86: 1.90774631e-16 + art_sys_87: 1.72820531e-11 + art_sys_88: 2.64165316e-12 + art_sys_89: -4.16271958e-17 + art_sys_90: -1.44829427e-13 + art_sys_91: 1.37506676e-16 + art_sys_92: -7.96761891e-18 + art_sys_93: 2.35607725e-17 + art_sys_94: 4.20290020e-12 + art_sys_95: 4.90308163e-04 + art_sys_96: 1.03051153e-12 + art_sys_97: -5.32266699e-13 + art_sys_98: 3.00643385e-04 + art_sys_99: 3.72611227e-11 + art_sys_100: -1.22215352e-04 + art_sys_101: -1.22262703e-10 + art_sys_102: 1.36476345e-04 + art_sys_103: -9.54786052e-11 + art_sys_104: 1.88693362e-10 + art_sys_105: 6.52112983e-13 + art_sys_106: 1.75422079e-09 + art_sys_107: -8.81151576e-05 + art_sys_108: 1.05693304e-12 + art_sys_109: 4.08631468e-12 + art_sys_110: 4.85567157e-05 + art_sys_111: -2.42985998e-10 + art_sys_112: -9.95620578e-10 + art_sys_113: 5.93531012e-11 + art_sys_114: 2.04551377e-12 + art_sys_115: 4.63176148e-12 + art_sys_116: 2.20432638e-05 + art_sys_117: 7.37892778e-12 + art_sys_118: -1.42040972e-10 + art_sys_119: -9.07387352e-06 + art_sys_120: -1.40544162e-10 + art_sys_121: -1.06382447e-12 + art_sys_122: -2.61005071e-11 + art_sys_123: -3.56542943e-06 + art_sys_124: 3.26630383e-11 + art_sys_125: 1.10203094e-12 + art_sys_126: 4.43872614e-11 + art_sys_127: 1.25976972e-06 + art_sys_128: -8.67689386e-11 + art_sys_129: 1.26602100e-14 + art_sys_130: -4.65434203e-07 + art_sys_131: -7.07846889e-13 + art_sys_132: 4.33429937e-10 + art_sys_133: -1.55781187e-07 + art_sys_134: -2.62431149e-10 + art_sys_135: -2.44463323e-11 + art_sys_136: -7.01691518e-14 + art_sys_137: -5.22500692e-08 + art_sys_138: -4.59368191e-11 + art_sys_139: -1.60372469e-08 + art_sys_140: -1.51466843e-14 + art_sys_141: -1.05513360e-10 + art_sys_142: 3.86020580e-11 + art_sys_143: -4.94366340e-09 + art_sys_144: 2.07753186e-13 + art_sys_145: 3.30634110e-11 + art_sys_146: -1.67223764e-09 + art_sys_147: 4.07512291e-14 + art_sys_148: 3.43201835e-15 + art_sys_149: -8.44458633e-12 + art_sys_150: -2.12494645e-10 + art_sys_151: 6.59722893e-12 + art_sys_152: -1.12008508e-14 + art_sys_153: 2.34117043e-11 + art_sys_154: -1.65873558e-11 + art_sys_155: 8.76101224e-15 + art_sys_156: 0.0 + art_sys_157: 9.03957816e-12 + art_sys_158: 0.0 + art_sys_159: 1.41777532e-12 + art_sys_160: 3.03371673e-13 + art_sys_161: -1.22213123e-13 + art_sys_162: -1.22213123e-13 + art_sys_163: -1.25056504e-13 + art_sys_164: -1.25056504e-13 + art_sys_165: 1.42247607e-27 + art_sys_166: -4.72144467e-28 + art_sys_167: -0.0 + art_sys_168: 6.12218128e-22 + art_sys_169: 6.13724296e-22 + art_sys_170: 6.11596476e-23 + art_sys_171: 3.66250216e-22 + art_sys_172: 5.12538284e-23 + art_sys_173: 2.54352096e-24 + art_sys_174: 1.53336038e-24 + art_sys_175: -2.93315721e-25 + art_sys_176: 3.56657836e-25 + art_sys_177: -8.76880286e-24 + art_sys_178: 4.54935804e-25 + art_sys_179: -2.38855873e-27 + art_sys_180: 3.33844276e-26 + art_sys_181: 9.20788038e-25 + art_sys_182: 5.12278501e-26 + art_sys_183: 1.14232100e-27 + art_sys_184: -4.75256731e-28 + art_sys_185: -1.31219111e-29 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -22961,167 +22961,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: -4.00906174e-48 - art_sys_26: 1.02281035e-41 - art_sys_27: 5.31186431e-34 - art_sys_28: -1.29895720e-33 - art_sys_29: -1.40644714e-13 - art_sys_30: -1.50443611e-12 - art_sys_31: -8.96264410e-13 - art_sys_32: -1.55579318e-11 - art_sys_33: 2.33346837e-10 - art_sys_34: 1.63280322e-09 - art_sys_35: 1.02209831e-09 - art_sys_36: -7.88161981e-27 - art_sys_37: -1.64489569e-26 - art_sys_38: 3.51619695e-09 - art_sys_39: -3.41732907e-26 - art_sys_40: 1.44360329e-26 - art_sys_41: -2.40344976e-26 - art_sys_42: 2.55552477e-08 - art_sys_43: 2.24823931e-25 - art_sys_44: -1.82136188e-07 - art_sys_45: 1.08310266e-24 - art_sys_46: 1.15650095e-23 - art_sys_47: -4.43470704e-07 - art_sys_48: 4.43769557e-25 - art_sys_49: 4.66058143e-24 + art_sys_25: 6.45205493e-88 + art_sys_26: 3.37988127e-82 + art_sys_27: -2.12284125e-75 + art_sys_28: 1.27007460e-74 + art_sys_29: 4.87818660e-64 + art_sys_30: 3.96490238e-61 + art_sys_31: 1.85464249e-58 + art_sys_32: -2.21547039e-50 + art_sys_33: -6.63931550e-45 + art_sys_34: -6.69400691e-38 + art_sys_35: -4.69264093e-39 + art_sys_36: 1.40644714e-13 + art_sys_37: 1.50443611e-12 + art_sys_38: 8.96264410e-13 + art_sys_39: 1.55579318e-11 + art_sys_40: 2.33346837e-10 + art_sys_41: -1.63280322e-09 + art_sys_42: -1.02209831e-09 + art_sys_43: 3.51619695e-09 + art_sys_44: -2.55552477e-08 + art_sys_45: 1.82136188e-07 + art_sys_46: 4.43470704e-07 + art_sys_47: 7.79224381e-24 + art_sys_48: -7.93109974e-23 + art_sys_49: -1.42188787e-24 art_sys_50: -3.62967094e-06 - art_sys_51: 6.44777277e-07 - art_sys_52: 3.17252742e-22 - art_sys_53: 8.00168699e-24 - art_sys_54: 4.03832895e-23 - art_sys_55: 1.01758455e-23 - art_sys_56: -1.17721978e-22 - art_sys_57: 8.86167236e-15 - art_sys_58: 5.75163086e-15 - art_sys_59: 4.51170019e-15 - art_sys_60: 1.14166053e-05 - art_sys_61: 6.27796362e-16 - art_sys_62: 1.86264661e-15 - art_sys_63: -8.83056957e-16 - art_sys_64: 1.95780855e-15 - art_sys_65: -1.81204460e-15 - art_sys_66: 3.25255386e-05 - art_sys_67: 1.17567586e-16 - art_sys_68: -2.38465299e-16 - art_sys_69: 4.37590538e-05 - art_sys_70: 8.60635503e-18 - art_sys_71: 2.62332743e-16 - art_sys_72: 2.29273885e-16 - art_sys_73: 6.83328644e-05 - art_sys_74: 5.94161311e-14 - art_sys_75: -2.21768924e-16 - art_sys_76: 1.72183058e-14 - art_sys_77: 4.51051636e-15 - art_sys_78: -1.12839379e-14 - art_sys_79: -9.32177937e-17 - art_sys_80: 2.31094104e-14 - art_sys_81: -2.03685040e-16 - art_sys_82: -8.00303323e-16 - art_sys_83: -1.52461743e-16 - art_sys_84: 1.14780350e-13 - art_sys_85: -7.32222303e-16 - art_sys_86: 2.05383485e-16 - art_sys_87: -1.66732870e-12 - art_sys_88: -4.16315068e-12 - art_sys_89: 5.99889681e-12 - art_sys_90: -6.62175876e-14 - art_sys_91: 3.32057629e-14 - art_sys_92: -4.87048526e-05 - art_sys_93: 9.93176462e-15 - art_sys_94: -5.49372160e-04 - art_sys_95: -1.30529892e-13 - art_sys_96: 1.61293365e-12 - art_sys_97: -6.87388544e-05 - art_sys_98: -1.17293334e-11 - art_sys_99: 7.52188176e-13 - art_sys_100: -5.78239978e-05 - art_sys_101: 7.02564716e-12 - art_sys_102: -1.30189906e-12 - art_sys_103: 8.85762549e-05 - art_sys_104: -2.08519207e-12 - art_sys_105: -4.65320334e-12 - art_sys_106: 1.29959467e-11 - art_sys_107: -2.65204877e-11 - art_sys_108: 5.82486638e-05 - art_sys_109: 8.25975496e-11 - art_sys_110: 3.47773333e-12 - art_sys_111: 3.56775094e-10 - art_sys_112: -3.09321503e-05 - art_sys_113: 7.44700535e-13 - art_sys_114: -1.71969811e-10 - art_sys_115: -1.39820579e-05 - art_sys_116: -1.88869286e-10 - art_sys_117: 5.15185317e-13 - art_sys_118: -2.18112330e-10 - art_sys_119: -5.84312383e-06 - art_sys_120: 7.59585038e-11 - art_sys_121: -9.21784952e-11 - art_sys_122: -1.37617084e-10 - art_sys_123: -2.16195299e-06 - art_sys_124: -3.29732143e-12 - art_sys_125: 2.14719100e-11 - art_sys_126: -3.60059527e-10 - art_sys_127: -5.69904022e-11 - art_sys_128: -8.23887433e-07 - art_sys_129: 2.82542895e-07 - art_sys_130: 9.52723243e-08 - art_sys_131: 2.99760205e-08 - art_sys_132: 9.47950135e-11 - art_sys_133: 6.37168016e-11 - art_sys_134: -8.92505128e-09 - art_sys_135: -1.06783008e-10 - art_sys_136: -3.00770438e-09 - art_sys_137: -3.90522559e-11 - art_sys_138: 3.64589888e-10 - art_sys_139: -1.66443552e-11 - art_sys_140: -1.90377174e-14 - art_sys_141: 7.34481584e-11 - art_sys_142: 0.0 - art_sys_143: -7.20849909e-12 - art_sys_144: -4.06267939e-11 - art_sys_145: -5.40642979e-11 - art_sys_146: 2.98587575e-13 - art_sys_147: -8.74454785e-13 - art_sys_148: 4.78287124e-13 - art_sys_149: -3.52631223e-13 - art_sys_150: 2.45927631e-14 - art_sys_151: 7.82242775e-15 - art_sys_152: 1.94686910e-14 - art_sys_153: 1.36237384e-15 - art_sys_154: 1.83938587e-14 - art_sys_155: -4.25236553e-14 - art_sys_156: -1.89897328e-13 - art_sys_157: -1.14600163e-13 - art_sys_158: 0.0 - art_sys_159: 2.43150049e-12 - art_sys_160: 2.43150049e-12 - art_sys_161: 1.62764880e-13 - art_sys_162: -6.01593803e-26 - art_sys_163: -0.0 - art_sys_164: -3.66932941e-26 - art_sys_165: -1.40117760e-21 - art_sys_166: 9.07339608e-22 - art_sys_167: 1.33364011e-23 - art_sys_168: 3.15485729e-23 - art_sys_169: 1.05239451e-23 - art_sys_170: -3.87527228e-23 - art_sys_171: -3.39541362e-22 - art_sys_172: 3.64055423e-22 - art_sys_173: -5.70378297e-23 - art_sys_174: -6.45471220e-26 - art_sys_175: 3.23506989e-24 - art_sys_176: -7.18839170e-24 - art_sys_177: 1.36857164e-24 - art_sys_178: 5.23227663e-25 - art_sys_179: -7.46477593e-24 - art_sys_180: -8.17956904e-25 - art_sys_181: 1.03073875e-25 - art_sys_182: -6.62956797e-26 - art_sys_183: -9.01687159e-28 - art_sys_184: -1.49721778e-28 - art_sys_185: -5.49607126e-27 + art_sys_51: -6.44777277e-07 + art_sys_52: 4.08968425e-23 + art_sys_53: 4.42020241e-23 + art_sys_54: 7.13758167e-23 + art_sys_55: 7.66773416e-23 + art_sys_56: -2.56273105e-23 + art_sys_57: -1.14166053e-05 + art_sys_58: -3.25255386e-05 + art_sys_59: -6.18629143e-22 + art_sys_60: -1.47513618e-21 + art_sys_61: 4.37590541e-05 + art_sys_62: 8.43505346e-22 + art_sys_63: -1.17658073e-20 + art_sys_64: -4.42784386e-14 + art_sys_65: 2.08089596e-16 + art_sys_66: -3.20220330e-15 + art_sys_67: 3.25529348e-16 + art_sys_68: -3.70844556e-16 + art_sys_69: -5.36284105e-16 + art_sys_70: 3.11066547e-17 + art_sys_71: -4.02697015e-16 + art_sys_72: 3.25082333e-17 + art_sys_73: 1.77472297e-16 + art_sys_74: 6.83328644e-05 + art_sys_75: -2.71300923e-16 + art_sys_76: 3.00906168e-15 + art_sys_77: -3.36043255e-14 + art_sys_78: 5.37245825e-15 + art_sys_79: -1.18378587e-16 + art_sys_80: 4.49531056e-15 + art_sys_81: 1.21555842e-16 + art_sys_82: -9.48590880e-16 + art_sys_83: 6.23582411e-16 + art_sys_84: 4.15363467e-16 + art_sys_85: 3.61911074e-16 + art_sys_86: -7.45442685e-17 + art_sys_87: -9.84793056e-12 + art_sys_88: -2.74340111e-12 + art_sys_89: 1.06063787e-16 + art_sys_90: 1.75399413e-13 + art_sys_91: 5.36745259e-17 + art_sys_92: -9.44050420e-17 + art_sys_93: 4.09411886e-17 + art_sys_94: -6.47568631e-12 + art_sys_95: -4.87038618e-05 + art_sys_96: -1.02312842e-13 + art_sys_97: 5.30267704e-14 + art_sys_98: 5.49372242e-04 + art_sys_99: 3.98276360e-11 + art_sys_100: 6.87389891e-05 + art_sys_101: 7.97156509e-11 + art_sys_102: -5.78242914e-05 + art_sys_103: 3.54611043e-11 + art_sys_104: -7.47875622e-12 + art_sys_105: -1.15233393e-12 + art_sys_106: -7.51200430e-10 + art_sys_107: 8.85765659e-05 + art_sys_108: -1.86728161e-12 + art_sys_109: -7.22184070e-12 + art_sys_110: -5.82493058e-05 + art_sys_111: -2.70010166e-10 + art_sys_112: 1.19325372e-09 + art_sys_113: -2.51303540e-11 + art_sys_114: -3.65869321e-12 + art_sys_115: -4.94428212e-12 + art_sys_116: -3.09327954e-05 + art_sys_117: -1.33147374e-11 + art_sys_118: 1.28218765e-10 + art_sys_119: 1.39816910e-05 + art_sys_120: 1.71830615e-10 + art_sys_121: 1.89571472e-12 + art_sys_122: -7.61146081e-11 + art_sys_123: 5.84279056e-06 + art_sys_124: -1.09044664e-11 + art_sys_125: -2.01787452e-12 + art_sys_126: -6.81620258e-11 + art_sys_127: -2.16224711e-06 + art_sys_128: 1.01204330e-10 + art_sys_129: -3.15616290e-14 + art_sys_130: 8.22727466e-07 + art_sys_131: 1.31101686e-12 + art_sys_132: -5.17234616e-10 + art_sys_133: 2.81340357e-07 + art_sys_134: 4.06065284e-10 + art_sys_135: 2.85780477e-11 + art_sys_136: 1.32148310e-13 + art_sys_137: 9.57779102e-08 + art_sys_138: 7.30237366e-11 + art_sys_139: 2.97090433e-08 + art_sys_140: 2.65357505e-14 + art_sys_141: 1.92417448e-10 + art_sys_142: -5.76183555e-11 + art_sys_143: 9.20006037e-09 + art_sys_144: -3.61333545e-13 + art_sys_145: -5.39596073e-11 + art_sys_146: 3.12666994e-09 + art_sys_147: -7.60536101e-14 + art_sys_148: -6.35163985e-15 + art_sys_149: 1.07677704e-11 + art_sys_150: 3.99587021e-10 + art_sys_151: -1.05313223e-11 + art_sys_152: 2.15698186e-14 + art_sys_153: -4.36034651e-11 + art_sys_154: 1.97874643e-11 + art_sys_155: -1.68580898e-14 + art_sys_156: -0.0 + art_sys_157: -1.32090612e-11 + art_sys_158: -0.0 + art_sys_159: -2.18710593e-12 + art_sys_160: -4.54139274e-13 + art_sys_161: 2.34301919e-13 + art_sys_162: 2.34301919e-13 + art_sys_163: 1.94320311e-13 + art_sys_164: 1.94320311e-13 + art_sys_165: -2.28502977e-27 + art_sys_166: 7.60785805e-28 + art_sys_167: 0.0 + art_sys_168: -9.54884850e-22 + art_sys_169: -1.14435245e-21 + art_sys_170: -1.16274905e-22 + art_sys_171: -6.59634815e-22 + art_sys_172: -9.39176407e-23 + art_sys_173: -4.44590316e-24 + art_sys_174: -2.68532688e-24 + art_sys_175: 5.46016905e-25 + art_sys_176: -6.61674573e-25 + art_sys_177: 1.60828799e-23 + art_sys_178: -8.05732044e-25 + art_sys_179: 4.63739539e-27 + art_sys_180: -5.16597660e-26 + art_sys_181: -1.67724396e-24 + art_sys_182: -9.54809422e-26 + art_sys_183: -2.12133352e-27 + art_sys_184: 8.80917765e-28 + art_sys_185: 2.45019174e-29 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -23252,167 +23252,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: -6.98206869e-49 - art_sys_26: 1.78129762e-42 - art_sys_27: 9.25099285e-35 - art_sys_28: -2.26222716e-34 - art_sys_29: -2.44942889e-14 - art_sys_30: 2.99826674e-14 - art_sys_31: 3.38720262e-13 - art_sys_32: -1.84461428e-12 - art_sys_33: 2.69171659e-11 - art_sys_34: 1.36339122e-10 - art_sys_35: 1.89819955e-10 - art_sys_36: -1.03457224e-27 - art_sys_37: 5.44699707e-28 - art_sys_38: -8.71482329e-11 - art_sys_39: 8.27719438e-28 - art_sys_40: -1.48718476e-28 - art_sys_41: 1.12312565e-27 - art_sys_42: -7.52180847e-09 - art_sys_43: -6.60020099e-26 - art_sys_44: 3.47079233e-08 - art_sys_45: -3.99265487e-25 - art_sys_46: -2.84687949e-24 - art_sys_47: 1.21506716e-07 - art_sys_48: 6.07666628e-25 - art_sys_49: -5.46012261e-25 + art_sys_25: 1.12119230e-88 + art_sys_26: 5.87331771e-83 + art_sys_27: -3.68892282e-76 + art_sys_28: 2.20704547e-75 + art_sys_29: 8.47696635e-65 + art_sys_30: 6.88992588e-62 + art_sys_31: 3.22286606e-59 + art_sys_32: -3.84988717e-51 + art_sys_33: -1.15373311e-45 + art_sys_34: -1.16323700e-38 + art_sys_35: -8.15453828e-40 + art_sys_36: 2.44942889e-14 + art_sys_37: -2.99826674e-14 + art_sys_38: -3.38720262e-13 + art_sys_39: 1.84461428e-12 + art_sys_40: 2.69171659e-11 + art_sys_41: -1.36339122e-10 + art_sys_42: -1.89819955e-10 + art_sys_43: -8.71482329e-11 + art_sys_44: 7.52180847e-09 + art_sys_45: -3.47079233e-08 + art_sys_46: -1.21506716e-07 + art_sys_47: -2.22260662e-24 + art_sys_48: -1.27407841e-23 + art_sys_49: -1.60167000e-24 art_sys_50: -6.39759902e-07 - art_sys_51: 2.79280609e-06 - art_sys_52: 2.34355816e-22 - art_sys_53: 8.12503125e-23 - art_sys_54: 1.30017933e-22 - art_sys_55: 8.68038421e-23 - art_sys_56: -1.40072736e-23 - art_sys_57: -4.61825634e-14 - art_sys_58: 2.98977012e-14 - art_sys_59: 5.39384165e-15 - art_sys_60: -2.79855429e-06 - art_sys_61: 7.22927763e-16 - art_sys_62: 3.01203192e-15 - art_sys_63: 5.57514508e-16 - art_sys_64: -2.01194295e-15 - art_sys_65: 3.73362559e-15 - art_sys_66: 1.12840775e-05 - art_sys_67: -3.33788779e-16 - art_sys_68: 4.53752207e-16 - art_sys_69: -2.90563567e-05 - art_sys_70: 2.53583733e-18 - art_sys_71: 9.20733164e-17 - art_sys_72: 8.28719363e-17 - art_sys_73: -8.41069824e-06 - art_sys_74: -3.94800355e-14 - art_sys_75: 4.22995573e-16 - art_sys_76: 9.08871835e-15 - art_sys_77: -7.48276432e-15 - art_sys_78: 1.21853160e-14 - art_sys_79: 2.00558186e-16 - art_sys_80: -1.52461775e-14 - art_sys_81: -2.06290081e-15 - art_sys_82: -5.89043279e-16 - art_sys_83: 4.99938025e-16 - art_sys_84: 2.59760061e-14 - art_sys_85: -1.47057445e-16 - art_sys_86: -3.22821868e-16 - art_sys_87: 8.18184598e-13 - art_sys_88: 5.89986879e-12 - art_sys_89: -9.81761805e-12 - art_sys_90: 4.39609342e-14 - art_sys_91: -4.30315016e-15 - art_sys_92: -1.42817166e-04 - art_sys_93: -6.90581572e-15 - art_sys_94: -1.17718579e-04 - art_sys_95: -1.73416760e-13 - art_sys_96: -2.89677517e-12 - art_sys_97: -3.81915063e-04 - art_sys_98: -2.51374362e-12 - art_sys_99: 3.26764537e-13 - art_sys_100: 1.61831925e-05 - art_sys_101: 3.42915138e-11 - art_sys_102: 2.43915168e-12 - art_sys_103: -4.34176713e-05 - art_sys_104: -1.38921418e-11 - art_sys_105: 9.22364016e-12 - art_sys_106: -3.54883386e-12 - art_sys_107: -6.96797167e-12 - art_sys_108: -6.82741508e-05 - art_sys_109: 2.01107174e-10 - art_sys_110: -7.05516296e-12 - art_sys_111: 1.48949683e-09 - art_sys_112: 4.35514924e-05 - art_sys_113: -1.49818471e-12 - art_sys_114: -1.18671964e-09 - art_sys_115: 2.28962182e-05 - art_sys_116: 2.36896221e-10 - art_sys_117: -1.05561002e-12 - art_sys_118: -1.38052487e-09 - art_sys_119: 1.04799970e-05 - art_sys_120: 1.62236665e-10 - art_sys_121: 1.26053715e-10 - art_sys_122: 9.13997351e-11 - art_sys_123: 4.11806784e-06 - art_sys_124: 4.77162154e-12 - art_sys_125: -2.58187054e-11 - art_sys_126: 5.83705238e-10 - art_sys_127: 7.92113656e-11 - art_sys_128: 1.63983745e-06 - art_sys_129: -5.79143432e-07 - art_sys_130: -1.99443808e-07 - art_sys_131: -6.37095453e-08 - art_sys_132: -1.30270617e-10 - art_sys_133: -1.23965058e-10 - art_sys_134: 1.91357093e-08 - art_sys_135: 1.58120951e-10 - art_sys_136: 6.49427207e-09 - art_sys_137: 6.64150058e-11 - art_sys_138: -7.92205351e-10 - art_sys_139: 3.61699977e-11 - art_sys_140: 2.22817805e-14 - art_sys_141: -1.56123312e-10 - art_sys_142: -0.0 - art_sys_143: 1.21094039e-11 - art_sys_144: 8.47629499e-11 - art_sys_145: 1.15373649e-10 - art_sys_146: -6.10456919e-13 - art_sys_147: 1.82476759e-12 - art_sys_148: -2.43570347e-13 - art_sys_149: 7.87240708e-13 - art_sys_150: -4.92300401e-14 - art_sys_151: -2.53636889e-14 - art_sys_152: -4.60222163e-14 - art_sys_153: -3.16678379e-15 - art_sys_154: -3.70065735e-14 - art_sys_155: 8.73247195e-14 - art_sys_156: 4.04544551e-13 - art_sys_157: 2.46759322e-13 - art_sys_158: -0.0 - art_sys_159: -5.36518273e-12 - art_sys_160: -5.36518273e-12 - art_sys_161: -3.18282737e-13 - art_sys_162: 1.17428200e-25 - art_sys_163: 0.0 - art_sys_164: 7.15895422e-26 - art_sys_165: 3.27067204e-21 - art_sys_166: -1.82247136e-21 - art_sys_167: -7.16431659e-23 - art_sys_168: -5.17816026e-23 - art_sys_169: -1.57324819e-23 - art_sys_170: 6.84113793e-23 - art_sys_171: 7.11944536e-22 - art_sys_172: -7.64061670e-22 - art_sys_173: 1.18029608e-22 - art_sys_174: 1.37219676e-25 - art_sys_175: -7.01457155e-24 - art_sys_176: 1.55163097e-23 - art_sys_177: -2.92764215e-24 - art_sys_178: -1.08666603e-24 - art_sys_179: 1.55425721e-23 - art_sys_180: 1.70207265e-24 - art_sys_181: -2.18567092e-25 - art_sys_182: 1.39065733e-25 - art_sys_183: 1.91611161e-27 - art_sys_184: 3.17692356e-28 - art_sys_185: 1.11960135e-26 + art_sys_51: -2.79280609e-06 + art_sys_52: -4.63212848e-23 + art_sys_53: 1.17671118e-22 + art_sys_54: 7.43234452e-23 + art_sys_55: -3.87844107e-23 + art_sys_56: -3.93841808e-23 + art_sys_57: 2.79855429e-06 + art_sys_58: -1.12840775e-05 + art_sys_59: -1.07221910e-22 + art_sys_60: -1.80086843e-21 + art_sys_61: -2.90563569e-05 + art_sys_62: 5.38913771e-23 + art_sys_63: 8.96918607e-22 + art_sys_64: -7.07844944e-15 + art_sys_65: -1.31014635e-14 + art_sys_66: 1.88250348e-15 + art_sys_67: -2.01938764e-15 + art_sys_68: 1.47631674e-15 + art_sys_69: 2.55852943e-16 + art_sys_70: 4.70551478e-16 + art_sys_71: 5.48926677e-16 + art_sys_72: -1.12386683e-16 + art_sys_73: -2.09418669e-16 + art_sys_74: -8.41069823e-06 + art_sys_75: 5.13019790e-16 + art_sys_76: -9.25690552e-15 + art_sys_77: -3.12522043e-14 + art_sys_78: -7.03627977e-16 + art_sys_79: 2.34237411e-16 + art_sys_80: -2.19110056e-15 + art_sys_81: -2.45631975e-16 + art_sys_82: 1.16744228e-16 + art_sys_83: -3.63550023e-16 + art_sys_84: 1.49966952e-15 + art_sys_85: 5.64489705e-16 + art_sys_86: -2.85583231e-17 + art_sys_87: -5.46695941e-11 + art_sys_88: 1.53011535e-12 + art_sys_89: -2.77248937e-17 + art_sys_90: -2.11410471e-13 + art_sys_91: -6.61565347e-18 + art_sys_92: 5.07320647e-18 + art_sys_93: -9.12347935e-19 + art_sys_94: 1.06033993e-11 + art_sys_95: -1.42816936e-04 + art_sys_96: -3.00141198e-13 + art_sys_97: 1.55115648e-13 + art_sys_98: 1.17718655e-04 + art_sys_99: 4.57367992e-12 + art_sys_100: 3.81916310e-04 + art_sys_101: 3.98178667e-10 + art_sys_102: 1.61832747e-05 + art_sys_103: 2.71525338e-10 + art_sys_104: -5.14245059e-11 + art_sys_105: 2.29226565e-12 + art_sys_106: 2.14322579e-10 + art_sys_107: -4.34179055e-05 + art_sys_108: 3.71311010e-12 + art_sys_109: 1.43715870e-11 + art_sys_110: 6.82749037e-05 + art_sys_111: -3.52592923e-11 + art_sys_112: -1.39619843e-09 + art_sys_113: 7.02464918e-12 + art_sys_114: 7.40281663e-12 + art_sys_115: 3.88150657e-11 + art_sys_116: 4.35526794e-05 + art_sys_117: 2.72647651e-11 + art_sys_118: -1.10760437e-10 + art_sys_119: -2.28956337e-05 + art_sys_120: -2.07573808e-10 + art_sys_121: -3.81301626e-12 + art_sys_122: 1.39581126e-10 + art_sys_123: -1.04793989e-05 + art_sys_124: 7.30770218e-13 + art_sys_125: 4.21838363e-12 + art_sys_126: 1.12340654e-10 + art_sys_127: 4.11867752e-06 + art_sys_128: -1.10547740e-10 + art_sys_129: 9.00932254e-14 + art_sys_130: -1.63767532e-06 + art_sys_131: -2.79022765e-12 + art_sys_132: 6.00791858e-10 + art_sys_133: -5.76816611e-07 + art_sys_134: -6.69154713e-10 + art_sys_135: -3.23975547e-11 + art_sys_136: -2.88551641e-13 + art_sys_137: -2.00441165e-07 + art_sys_138: -1.25037351e-10 + art_sys_139: -6.31827699e-08 + art_sys_140: -5.18762378e-14 + art_sys_141: -4.00825030e-10 + art_sys_142: 9.07555687e-11 + art_sys_143: -1.96823254e-08 + art_sys_144: 7.02344458e-13 + art_sys_145: 9.55227006e-11 + art_sys_146: -6.73893585e-09 + art_sys_147: 1.63469312e-13 + art_sys_148: 1.34616580e-14 + art_sys_149: -1.20715815e-11 + art_sys_150: -8.68236272e-10 + art_sys_151: 1.76444604e-11 + art_sys_152: -4.85807512e-14 + art_sys_153: 9.36884426e-11 + art_sys_154: -2.31346429e-11 + art_sys_155: 3.71897306e-14 + art_sys_156: 0.0 + art_sys_157: 1.99549624e-11 + art_sys_158: 0.0 + art_sys_159: 3.43215802e-12 + art_sys_160: 7.07751128e-13 + art_sys_161: -5.15716069e-13 + art_sys_162: -5.15716069e-13 + art_sys_163: -3.06635004e-13 + art_sys_164: -3.06635004e-13 + art_sys_165: 3.85187089e-27 + art_sys_166: -1.28977046e-27 + art_sys_167: -0.0 + art_sys_168: 2.46446116e-21 + art_sys_169: 2.45764506e-21 + art_sys_170: 1.67950074e-22 + art_sys_171: 1.34704256e-21 + art_sys_172: 1.96745147e-22 + art_sys_173: 8.71255896e-24 + art_sys_174: 5.23733442e-24 + art_sys_175: -1.16983346e-24 + art_sys_176: 1.41014567e-24 + art_sys_177: -3.37137948e-23 + art_sys_178: 1.60737083e-24 + art_sys_179: -1.02280365e-26 + art_sys_180: 8.13686172e-26 + art_sys_181: 3.48091607e-24 + art_sys_182: 2.05345943e-25 + art_sys_183: 4.52736164e-27 + art_sys_184: -1.87397645e-27 + art_sys_185: -5.25900575e-29 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -23543,167 +23543,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: -6.85458368e-50 - art_sys_26: 1.74877305e-43 - art_sys_27: 9.08207975e-36 - art_sys_28: -2.22092135e-35 - art_sys_29: -2.40470508e-15 - art_sys_30: 1.36851745e-14 - art_sys_31: 6.40076687e-14 - art_sys_32: -2.05538946e-13 - art_sys_33: 4.66158910e-12 - art_sys_34: 4.02978104e-12 - art_sys_35: 2.89364483e-11 - art_sys_36: -1.17726101e-28 - art_sys_37: 3.72668956e-28 - art_sys_38: -7.04253291e-11 - art_sys_39: 6.85909416e-28 - art_sys_40: -2.46520001e-28 - art_sys_41: 6.12192889e-28 - art_sys_42: -3.20236087e-09 - art_sys_43: -2.78198774e-26 - art_sys_44: 8.74566646e-09 - art_sys_45: -1.29216583e-25 - art_sys_46: -8.39998892e-25 - art_sys_47: 3.79072572e-08 - art_sys_48: 7.10661562e-26 - art_sys_49: -2.34745835e-25 + art_sys_25: 1.09980917e-89 + art_sys_26: 5.76130310e-84 + art_sys_27: -3.61856851e-77 + art_sys_28: 2.16495319e-76 + art_sys_29: 8.31529554e-66 + art_sys_30: 6.75852275e-63 + art_sys_31: 3.16140028e-60 + art_sys_32: -3.77646298e-52 + art_sys_33: -1.13172937e-46 + art_sys_34: -1.14105200e-39 + art_sys_35: -7.99901675e-41 + art_sys_36: 2.40470508e-15 + art_sys_37: -1.36851745e-14 + art_sys_38: -6.40076687e-14 + art_sys_39: 2.05538946e-13 + art_sys_40: 4.66158910e-12 + art_sys_41: -4.02978104e-12 + art_sys_42: -2.89364483e-11 + art_sys_43: -7.04253291e-11 + art_sys_44: 3.20236087e-09 + art_sys_45: -8.74566646e-09 + art_sys_46: -3.79072572e-08 + art_sys_47: -7.18178978e-25 + art_sys_48: -6.08388147e-25 + art_sys_49: -3.87069519e-25 art_sys_50: -3.70664342e-08 - art_sys_51: 6.16399893e-07 - art_sys_52: 4.39065894e-23 - art_sys_53: 1.83892962e-23 - art_sys_54: 2.79601647e-23 - art_sys_55: 1.94802936e-23 - art_sys_56: 6.40489633e-25 - art_sys_57: 6.36801134e-14 - art_sys_58: -2.90060512e-14 - art_sys_59: -2.54754489e-15 - art_sys_60: -1.10268596e-06 - art_sys_61: 7.82556782e-16 - art_sys_62: -3.63633872e-15 - art_sys_63: -2.20617758e-15 - art_sys_64: 4.56977050e-15 - art_sys_65: -6.32512723e-15 - art_sys_66: 3.14835193e-07 - art_sys_67: 3.64290174e-16 - art_sys_68: -8.29605962e-16 - art_sys_69: -7.66249808e-06 - art_sys_70: 2.36963123e-21 - art_sys_71: 2.73320018e-18 - art_sys_72: 2.82795841e-18 - art_sys_73: -6.62341450e-06 - art_sys_74: -1.04091412e-14 - art_sys_75: -8.47918985e-16 - art_sys_76: -2.70366640e-14 - art_sys_77: -5.70197502e-14 - art_sys_78: -3.06733194e-16 - art_sys_79: -3.52264078e-16 - art_sys_80: -4.03235225e-15 - art_sys_81: -1.30793758e-15 - art_sys_82: -3.82227338e-16 - art_sys_83: 1.76731286e-15 - art_sys_84: -1.83123825e-14 - art_sys_85: 1.75989644e-16 - art_sys_86: 2.85507496e-17 - art_sys_87: -8.84534403e-14 - art_sys_88: -7.12195415e-12 - art_sys_89: 1.38797277e-11 - art_sys_90: 1.15939734e-14 - art_sys_91: -3.25406355e-15 - art_sys_92: -1.90180292e-05 - art_sys_93: -1.78761259e-15 - art_sys_94: 9.10327921e-05 - art_sys_95: -7.84451300e-15 - art_sys_96: 4.76488997e-12 - art_sys_97: -1.53029615e-04 - art_sys_98: 1.94345975e-12 - art_sys_99: -9.05774707e-14 - art_sys_100: 2.63799264e-04 - art_sys_101: 1.34490612e-11 - art_sys_102: -4.28003154e-12 - art_sys_103: 4.76275560e-06 - art_sys_104: -5.70999600e-12 - art_sys_105: -1.74202377e-11 - art_sys_106: -4.91270117e-12 - art_sys_107: 3.81514694e-12 - art_sys_108: 3.36851425e-05 - art_sys_109: -8.94324649e-11 - art_sys_110: 1.37996890e-11 - art_sys_111: 5.99071546e-10 - art_sys_112: -5.16223905e-05 - art_sys_113: 2.89413431e-12 - art_sys_114: -4.47195029e-10 - art_sys_115: -3.23886782e-05 - art_sys_116: -1.21965321e-10 - art_sys_117: 2.09396113e-12 - art_sys_118: -6.27185183e-10 - art_sys_119: -1.72010379e-05 - art_sys_120: 8.20899473e-11 - art_sys_121: -1.43346869e-10 - art_sys_122: -3.67723729e-12 - art_sys_123: -7.39322169e-06 - art_sys_124: -3.46913261e-12 - art_sys_125: 2.34051443e-11 - art_sys_126: -8.18942795e-10 - art_sys_127: -9.21518600e-11 - art_sys_128: -3.11684482e-06 - art_sys_129: 1.14991332e-06 - art_sys_130: 4.07490546e-07 - art_sys_131: 1.32893510e-07 - art_sys_132: 1.49029083e-10 - art_sys_133: 2.29879374e-10 - art_sys_134: -4.04599158e-08 - art_sys_135: -1.96693343e-10 - art_sys_136: -1.38532862e-08 - art_sys_137: -1.06791211e-10 - art_sys_138: 1.70504118e-09 - art_sys_139: -7.78717376e-11 - art_sys_140: 1.21695465e-14 - art_sys_141: 3.28377830e-10 - art_sys_142: 0.0 - art_sys_143: -2.20992568e-11 - art_sys_144: -1.74567192e-10 - art_sys_145: -2.43750859e-10 - art_sys_146: 1.20868040e-12 - art_sys_147: -3.70978264e-12 - art_sys_148: -1.48071164e-12 - art_sys_149: -1.75083962e-12 - art_sys_150: 9.59015230e-14 - art_sys_151: 7.46015796e-14 - art_sys_152: 1.08232342e-13 - art_sys_153: 7.32204452e-15 - art_sys_154: 7.20660927e-14 - art_sys_155: -1.75090594e-13 - art_sys_156: -8.53448506e-13 - art_sys_157: -5.26484073e-13 - art_sys_158: 0.0 - art_sys_159: 1.16897303e-11 - art_sys_160: 1.16897303e-11 - art_sys_161: 5.94108711e-13 - art_sys_162: -2.18710074e-25 - art_sys_163: -0.0 - art_sys_164: -1.33278872e-25 - art_sys_165: -7.58515367e-21 - art_sys_166: 3.54430786e-21 - art_sys_167: 2.60686860e-22 - art_sys_168: 6.94231810e-23 - art_sys_169: 1.57282048e-23 - art_sys_170: -1.08594609e-22 - art_sys_171: -1.45893182e-21 - art_sys_172: 1.56708390e-21 - art_sys_173: -2.38117262e-22 - art_sys_174: -2.88604337e-25 - art_sys_175: 1.50566871e-23 - art_sys_176: -3.30754848e-23 - art_sys_177: 6.17351337e-24 - art_sys_178: 2.19627646e-24 - art_sys_179: -3.14927015e-23 - art_sys_180: -3.45427402e-24 - art_sys_181: 4.54855076e-25 - art_sys_182: -2.84710914e-25 - art_sys_183: -3.99277595e-27 - art_sys_184: -6.63308707e-28 - art_sys_185: -2.21307069e-26 + art_sys_51: -6.16399893e-07 + art_sys_52: -1.17685028e-23 + art_sys_53: 2.55984033e-23 + art_sys_54: 1.47808898e-23 + art_sys_55: -1.11371674e-23 + art_sys_56: -7.92899679e-24 + art_sys_57: 1.10268596e-06 + art_sys_58: -3.14835193e-07 + art_sys_59: 1.09288399e-23 + art_sys_60: -4.25556121e-23 + art_sys_61: -7.66249814e-06 + art_sys_62: -3.42550954e-23 + art_sys_63: 9.90969299e-22 + art_sys_64: 4.72157533e-14 + art_sys_65: -7.75254970e-16 + art_sys_66: -4.14931844e-15 + art_sys_67: -1.37722999e-15 + art_sys_68: -1.62458949e-15 + art_sys_69: -8.77757124e-16 + art_sys_70: 2.55932481e-16 + art_sys_71: -9.99543076e-16 + art_sys_72: 3.11843837e-16 + art_sys_73: 5.19534935e-16 + art_sys_74: -6.62341450e-06 + art_sys_75: -9.54302144e-16 + art_sys_76: -5.91663896e-14 + art_sys_77: -2.87744326e-14 + art_sys_78: 1.56628515e-15 + art_sys_79: -4.20917476e-16 + art_sys_80: -4.87122432e-15 + art_sys_81: 4.74109029e-16 + art_sys_82: 9.19433798e-17 + art_sys_83: 1.48918441e-15 + art_sys_84: -9.09816791e-17 + art_sys_85: 5.74458644e-16 + art_sys_86: 2.85652802e-16 + art_sys_87: -2.19483929e-11 + art_sys_88: -3.75537895e-13 + art_sys_89: 5.28477508e-17 + art_sys_90: 1.09277808e-13 + art_sys_91: -5.20567748e-18 + art_sys_92: 2.61675203e-17 + art_sys_93: 1.85404226e-17 + art_sys_94: -1.49966518e-11 + art_sys_95: -1.90181896e-05 + art_sys_96: -3.99708939e-14 + art_sys_97: 2.06460254e-14 + art_sys_98: -9.10327766e-05 + art_sys_99: -7.41005279e-12 + art_sys_100: 1.53030128e-04 + art_sys_101: 1.57440157e-10 + art_sys_102: 2.63800562e-04 + art_sys_103: 1.12306103e-10 + art_sys_104: -1.11067091e-11 + art_sys_105: -4.35386613e-12 + art_sys_106: 3.42562657e-09 + art_sys_107: 4.76284697e-06 + art_sys_108: -7.04942309e-12 + art_sys_109: -2.73073644e-11 + art_sys_110: -3.36855140e-05 + art_sys_111: 7.19608142e-11 + art_sys_112: 6.87010248e-10 + art_sys_113: 1.14850565e-10 + art_sys_114: -1.44251768e-11 + art_sys_115: 5.54555689e-11 + art_sys_116: -5.16242533e-05 + art_sys_117: -5.40586215e-11 + art_sys_118: -1.44949375e-11 + art_sys_119: 3.23878744e-05 + art_sys_120: 1.21539130e-10 + art_sys_121: 7.37144160e-12 + art_sys_122: -3.48836411e-10 + art_sys_123: 1.72000553e-05 + art_sys_124: 7.10098502e-11 + art_sys_125: -8.60711737e-12 + art_sys_126: -1.57320888e-10 + art_sys_127: -7.39442374e-06 + art_sys_128: 5.80824244e-11 + art_sys_129: -2.47489078e-13 + art_sys_130: 3.11308840e-06 + art_sys_131: 5.84334991e-12 + art_sys_132: -2.76043547e-10 + art_sys_133: 1.14563104e-06 + art_sys_134: 9.55108391e-10 + art_sys_135: 1.25345818e-11 + art_sys_136: 6.29991531e-13 + art_sys_137: 4.09369899e-07 + art_sys_138: 1.96254025e-10 + art_sys_139: 1.31898922e-07 + art_sys_140: 9.54831847e-14 + art_sys_141: 8.15311610e-10 + art_sys_142: -1.28260499e-10 + art_sys_143: 4.15013111e-08 + art_sys_144: -1.29663212e-12 + art_sys_145: -1.46185509e-10 + art_sys_146: 1.43453631e-08 + art_sys_147: -3.46746033e-13 + art_sys_148: -2.80656337e-14 + art_sys_149: 6.85936845e-12 + art_sys_150: 1.87012263e-09 + art_sys_151: -2.47164627e-11 + art_sys_152: 1.09654828e-13 + art_sys_153: -2.00168622e-10 + art_sys_154: 1.14354335e-11 + art_sys_155: -8.10509327e-14 + art_sys_156: -0.0 + art_sys_157: -2.58050513e-11 + art_sys_158: -0.0 + art_sys_159: -4.16868454e-12 + art_sys_160: -9.49819427e-13 + art_sys_161: 1.12223764e-12 + art_sys_162: 1.12223764e-12 + art_sys_163: 3.66354423e-13 + art_sys_164: 3.66354423e-13 + art_sys_165: -5.45677855e-27 + art_sys_166: 1.85007331e-27 + art_sys_167: 0.0 + art_sys_168: -5.66506694e-21 + art_sys_169: -5.20751047e-21 + art_sys_170: -2.16687730e-22 + art_sys_171: -2.66243223e-21 + art_sys_172: -4.02583973e-22 + art_sys_173: -1.59510586e-23 + art_sys_174: -9.52960470e-24 + art_sys_175: 2.47766821e-24 + art_sys_176: -2.94717874e-24 + art_sys_177: 6.90385724e-23 + art_sys_178: -3.07773891e-24 + art_sys_179: 2.20926850e-26 + art_sys_180: -9.90610700e-26 + art_sys_181: -7.03447358e-24 + art_sys_182: -4.38477877e-25 + art_sys_183: -9.51514065e-27 + art_sys_184: 3.91464843e-27 + art_sys_185: 1.11137944e-28 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -23834,167 +23834,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: -4.92238757e-51 - art_sys_26: 1.25582226e-44 - art_sys_27: 6.52198857e-37 - art_sys_28: -1.59487959e-36 - art_sys_29: -1.72685773e-16 - art_sys_30: 1.63984776e-15 - art_sys_31: 7.24560386e-15 - art_sys_32: -1.78684731e-14 - art_sys_33: 5.11476579e-13 - art_sys_34: -1.46347879e-12 - art_sys_35: 1.05153403e-12 - art_sys_36: -8.35234246e-31 - art_sys_37: 3.51530984e-29 - art_sys_38: -7.04828103e-12 - art_sys_39: 6.94340034e-29 - art_sys_40: -2.73819622e-29 - art_sys_41: 5.99687476e-29 - art_sys_42: -4.81022244e-10 - art_sys_43: -4.28930419e-27 - art_sys_44: 6.41675609e-10 - art_sys_45: -1.29170627e-26 - art_sys_46: -7.91811583e-26 - art_sys_47: 3.84238151e-09 - art_sys_48: 1.14300546e-27 - art_sys_49: -1.94300839e-26 + art_sys_25: 7.89233709e-91 + art_sys_26: 4.13436690e-85 + art_sys_27: -2.59671981e-78 + art_sys_28: 1.55359138e-77 + art_sys_29: 5.96713662e-67 + art_sys_30: 4.84998139e-64 + art_sys_31: 2.26865146e-61 + art_sys_32: -2.71002641e-53 + art_sys_33: -8.12139960e-48 + art_sys_34: -8.18829970e-41 + art_sys_35: -5.74017190e-42 + art_sys_36: 1.72685773e-16 + art_sys_37: -1.63984776e-15 + art_sys_38: -7.24560386e-15 + art_sys_39: 1.78684731e-14 + art_sys_40: 5.11476579e-13 + art_sys_41: 1.46347879e-12 + art_sys_42: -1.05153403e-12 + art_sys_43: -7.04828103e-12 + art_sys_44: 4.81022244e-10 + art_sys_45: -6.41675609e-10 + art_sys_46: -3.84238151e-09 + art_sys_47: -7.66463838e-26 + art_sys_48: 3.64473402e-26 + art_sys_49: -3.44542651e-26 art_sys_50: 1.90505265e-09 - art_sys_51: 4.46553944e-08 - art_sys_52: 2.83790119e-24 - art_sys_53: 1.35556516e-24 - art_sys_54: 2.00234001e-24 - art_sys_55: 1.42430842e-24 - art_sys_56: 2.21144598e-25 - art_sys_57: -9.77013382e-14 - art_sys_58: -6.14813157e-15 - art_sys_59: 6.35201184e-15 - art_sys_60: -1.05098200e-07 - art_sys_61: -4.37524241e-15 - art_sys_62: 3.58760558e-15 - art_sys_63: 3.17673913e-15 - art_sys_64: -7.20263131e-15 - art_sys_65: 1.08217698e-14 - art_sys_66: -5.38398827e-07 - art_sys_67: -7.48208227e-16 - art_sys_68: 1.41971815e-15 - art_sys_69: 1.59571096e-07 - art_sys_70: -1.36121026e-19 - art_sys_71: -4.36366252e-18 - art_sys_72: -3.86173832e-18 - art_sys_73: -5.64883630e-07 - art_sys_74: 2.17210327e-16 - art_sys_75: 1.50729429e-15 - art_sys_76: -1.27425522e-15 - art_sys_77: -1.31338730e-14 - art_sys_78: -5.06811343e-15 - art_sys_79: 6.39215949e-16 - art_sys_80: 8.20977711e-17 - art_sys_81: -1.62616559e-15 - art_sys_82: -3.62157608e-16 - art_sys_83: -1.76317491e-16 - art_sys_84: -8.32210813e-15 - art_sys_85: -1.25872129e-16 - art_sys_86: 2.10048063e-17 - art_sys_87: -3.57014224e-12 - art_sys_88: 3.77027423e-12 - art_sys_89: -1.65450156e-11 - art_sys_90: -2.41312611e-16 - art_sys_91: -2.43496072e-16 - art_sys_92: 1.73875427e-05 - art_sys_93: 6.48045824e-17 - art_sys_94: 3.59214432e-05 - art_sys_95: 2.41839700e-14 - art_sys_96: -6.79899260e-12 - art_sys_97: 4.84911238e-05 - art_sys_98: 7.66928469e-13 - art_sys_99: -6.69401271e-14 - art_sys_100: 1.32293013e-04 - art_sys_101: -4.38565950e-12 - art_sys_102: 6.78178052e-12 - art_sys_103: 1.90085757e-04 - art_sys_104: 1.75000735e-12 - art_sys_105: 3.09845548e-11 - art_sys_106: -4.94415566e-14 - art_sys_107: 1.88769796e-12 - art_sys_108: -5.31957563e-06 - art_sys_109: -1.02966971e-10 - art_sys_110: -2.57474988e-11 - art_sys_111: -1.78557506e-10 - art_sys_112: 2.70034387e-05 - art_sys_113: -5.31211157e-12 - art_sys_114: 1.69417943e-10 - art_sys_115: 3.86734369e-05 - art_sys_116: 7.07643201e-11 - art_sys_117: -3.97869422e-12 - art_sys_118: 1.47135286e-10 - art_sys_119: 2.44409769e-05 - art_sys_120: 7.18121948e-11 - art_sys_121: 4.98453703e-11 - art_sys_122: -2.90516844e-10 - art_sys_123: 1.21725191e-05 - art_sys_124: 1.23434663e-11 - art_sys_125: -3.24763510e-12 - art_sys_126: 9.48935015e-10 - art_sys_127: 3.59381389e-11 - art_sys_128: 5.59436174e-06 - art_sys_129: -2.18682826e-06 - art_sys_130: -8.09360624e-07 - art_sys_131: -2.71711175e-07 - art_sys_132: -5.75121190e-11 - art_sys_133: -3.99342144e-10 - art_sys_134: 8.43007855e-08 - art_sys_135: 1.50697054e-10 - art_sys_136: 2.92596796e-08 - art_sys_137: 1.47230589e-10 - art_sys_138: -3.64476693e-09 - art_sys_139: 1.65758035e-10 - art_sys_140: -3.43824217e-15 - art_sys_141: -6.84283114e-10 - art_sys_142: -0.0 - art_sys_143: 3.71931780e-11 - art_sys_144: 3.53604166e-10 - art_sys_145: 5.10347785e-10 - art_sys_146: -2.29210957e-12 - art_sys_147: 7.31455603e-12 - art_sys_148: 8.10121202e-12 - art_sys_149: 3.88912785e-12 - art_sys_150: -1.79585203e-13 - art_sys_151: -2.06661142e-13 - art_sys_152: -2.53082349e-13 - art_sys_153: -1.69075708e-14 - art_sys_154: -1.34740804e-13 - art_sys_155: 3.41757240e-13 - art_sys_156: 1.78587406e-12 - art_sys_157: 1.11504489e-12 - art_sys_158: -0.0 - art_sys_159: -2.50591491e-11 - art_sys_160: -2.50591491e-11 - art_sys_161: -1.04739709e-12 - art_sys_162: 3.84395471e-25 - art_sys_163: 0.0 - art_sys_164: 2.34131178e-25 - art_sys_165: 1.76731260e-20 - art_sys_166: -6.57694045e-21 - art_sys_167: -8.21607889e-22 - art_sys_168: -4.61592309e-23 - art_sys_169: 1.09698582e-23 - art_sys_170: 1.43775909e-22 - art_sys_171: 2.91208760e-21 - art_sys_172: -3.13108854e-21 - art_sys_173: 4.66653129e-22 - art_sys_174: 6.01139710e-25 - art_sys_175: -3.21082272e-23 - art_sys_176: 6.98191760e-23 - art_sys_177: -1.28651676e-23 - art_sys_178: -4.29858517e-24 - art_sys_179: 6.17614486e-23 - art_sys_180: 6.80656855e-24 - art_sys_181: -9.29771715e-25 - art_sys_182: 5.67338397e-25 - art_sys_183: 8.14791633e-27 - art_sys_184: 1.36076553e-27 - art_sys_185: 4.23757408e-26 + art_sys_51: -4.46553944e-08 + art_sys_52: -9.15337865e-25 + art_sys_53: 1.84581022e-24 + art_sys_54: 1.01137632e-24 + art_sys_55: -9.18248847e-25 + art_sys_56: -5.89122134e-25 + art_sys_57: 1.05098200e-07 + art_sys_58: 5.38398827e-07 + art_sys_59: 7.64747559e-24 + art_sys_60: 4.69399048e-23 + art_sys_61: 1.59571097e-07 + art_sys_62: -8.54210285e-24 + art_sys_63: 1.06141145e-22 + art_sys_64: -7.44788485e-14 + art_sys_65: -1.16719708e-14 + art_sys_66: -8.31981777e-15 + art_sys_67: 3.69000784e-15 + art_sys_68: 3.42007265e-15 + art_sys_69: 2.25224629e-16 + art_sys_70: -9.32465251e-16 + art_sys_71: 1.87285589e-15 + art_sys_72: -5.42202429e-16 + art_sys_73: -8.75781201e-16 + art_sys_74: -5.64883630e-07 + art_sys_75: 1.70895366e-15 + art_sys_76: 9.68544300e-16 + art_sys_77: -6.59082277e-14 + art_sys_78: -1.95509154e-14 + art_sys_79: 7.48801954e-16 + art_sys_80: 3.26083930e-15 + art_sys_81: -8.50204157e-16 + art_sys_82: 7.84303896e-18 + art_sys_83: -1.34481337e-15 + art_sys_84: 1.08895482e-16 + art_sys_85: 1.12427550e-15 + art_sys_86: 1.73642391e-16 + art_sys_87: 6.92375860e-12 + art_sys_88: -5.31813061e-12 + art_sys_89: -4.31019401e-17 + art_sys_90: -5.08359921e-14 + art_sys_91: -4.42903701e-19 + art_sys_92: -9.23911550e-18 + art_sys_93: -2.58242032e-18 + art_sys_94: 1.79022216e-11 + art_sys_95: 1.73874760e-05 + art_sys_96: 3.65403208e-14 + art_sys_97: -1.88876709e-14 + art_sys_98: -3.59214557e-05 + art_sys_99: -2.17926341e-12 + art_sys_100: -4.84912837e-05 + art_sys_101: -5.08757283e-11 + art_sys_102: 1.32293647e-04 + art_sys_103: -3.39426328e-11 + art_sys_104: 4.66612031e-12 + art_sys_105: 7.80541416e-12 + art_sys_106: 1.71701370e-09 + art_sys_107: 1.90086170e-04 + art_sys_108: 1.26294409e-11 + art_sys_109: 4.89926477e-11 + art_sys_110: 5.31963548e-06 + art_sys_111: 3.91147305e-11 + art_sys_112: -1.02348510e-10 + art_sys_113: 5.77029967e-11 + art_sys_114: 2.67512532e-11 + art_sys_115: 2.01682983e-11 + art_sys_116: 2.70063001e-05 + art_sys_117: 1.02557415e-10 + art_sys_118: -5.52290733e-11 + art_sys_119: -3.86725571e-05 + art_sys_120: -3.62070040e-11 + art_sys_121: -1.34122858e-11 + art_sys_122: -1.22515267e-10 + art_sys_123: -2.44395783e-05 + art_sys_124: 4.27282950e-11 + art_sys_125: 1.70634925e-11 + art_sys_126: 2.01845552e-10 + art_sys_127: 1.21747763e-05 + art_sys_128: 1.31190321e-11 + art_sys_129: 6.58091864e-13 + art_sys_130: -5.58851144e-06 + art_sys_131: -1.20637554e-11 + art_sys_132: 1.30818474e-11 + art_sys_133: -2.17948041e-06 + art_sys_134: -1.15952067e-09 + art_sys_135: -2.71498030e-13 + art_sys_136: -1.38809822e-12 + art_sys_137: -8.12675003e-07 + art_sys_138: -2.50244222e-10 + art_sys_139: -2.69940236e-07 + art_sys_140: -1.59975903e-13 + art_sys_141: -1.61749251e-09 + art_sys_142: 1.35873333e-10 + art_sys_143: -8.61832818e-08 + art_sys_144: 2.23213253e-12 + art_sys_145: 2.09744315e-10 + art_sys_146: -3.02256807e-08 + art_sys_147: 7.27087567e-13 + art_sys_148: 5.72908472e-14 + art_sys_149: 2.32137593e-11 + art_sys_150: -4.00622395e-09 + art_sys_151: 2.08968151e-11 + art_sys_152: -2.49373269e-13 + art_sys_153: 4.27117215e-10 + art_sys_154: -1.81875326e-12 + art_sys_155: 1.73050853e-13 + art_sys_156: 0.0 + art_sys_157: 2.29283149e-11 + art_sys_158: 0.0 + art_sys_159: 1.39554758e-12 + art_sys_160: 8.84906154e-13 + art_sys_161: -2.37679638e-12 + art_sys_162: -2.37679638e-12 + art_sys_163: -7.71964035e-14 + art_sys_164: -7.71964035e-14 + art_sys_165: 4.76728225e-27 + art_sys_166: -1.69666820e-27 + art_sys_167: -0.0 + art_sys_168: 5.61633857e-21 + art_sys_169: 1.09264676e-20 + art_sys_170: 3.91742637e-22 + art_sys_171: 5.02576354e-21 + art_sys_172: 8.01547387e-22 + art_sys_173: 2.64031018e-23 + art_sys_174: 1.53675018e-23 + art_sys_175: -5.18787643e-24 + art_sys_176: 6.04308707e-24 + art_sys_177: -1.37489135e-22 + art_sys_178: 5.58269931e-24 + art_sys_179: -4.60746087e-26 + art_sys_180: 3.26873333e-26 + art_sys_181: 1.37362230e-23 + art_sys_182: 9.33538768e-25 + art_sys_183: 1.96576854e-26 + art_sys_184: -8.01874028e-27 + art_sys_185: -2.31585245e-28 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -24125,167 +24125,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: -2.95806549e-52 - art_sys_26: 7.54675331e-46 - art_sys_27: 3.91933163e-38 - art_sys_28: -9.58428854e-38 - art_sys_29: -1.03774000e-17 - art_sys_30: 1.50695451e-16 - art_sys_31: 6.67817965e-16 - art_sys_32: -1.12660823e-15 - art_sys_33: 1.88515760e-14 - art_sys_34: -3.75752230e-13 - art_sys_35: -4.84528447e-13 - art_sys_36: 2.58726612e-30 - art_sys_37: -3.38910235e-30 - art_sys_38: 3.82553310e-13 - art_sys_39: -3.53774642e-30 - art_sys_40: 7.58560242e-31 - art_sys_41: -3.39528563e-30 - art_sys_42: -2.20535508e-11 - art_sys_43: -1.90472749e-28 - art_sys_44: -5.57666815e-11 - art_sys_45: 1.06336523e-27 - art_sys_46: 4.71837760e-27 - art_sys_47: -1.93101376e-10 - art_sys_48: 2.52935818e-28 - art_sys_49: 1.53052945e-27 + art_sys_25: 4.73841062e-92 + art_sys_26: 2.48219606e-86 + art_sys_27: -1.55902169e-79 + art_sys_28: 9.32747019e-79 + art_sys_29: 3.58255650e-68 + art_sys_30: 2.91183753e-65 + art_sys_31: 1.36205563e-62 + art_sys_32: -1.62704885e-54 + art_sys_33: -4.87593545e-49 + art_sys_34: -4.91610100e-42 + art_sys_35: -3.44629115e-43 + art_sys_36: 1.03774000e-17 + art_sys_37: -1.50695451e-16 + art_sys_38: -6.67817965e-16 + art_sys_39: 1.12660823e-15 + art_sys_40: 1.88515760e-14 + art_sys_41: 3.75752230e-13 + art_sys_42: 4.84528447e-13 + art_sys_43: 3.82553310e-13 + art_sys_44: 2.20535508e-11 + art_sys_45: 5.57666815e-11 + art_sys_46: 1.93101376e-10 + art_sys_47: 2.96291571e-27 + art_sys_48: -9.89101595e-27 + art_sys_49: 3.77880873e-27 art_sys_50: -4.26537697e-10 - art_sys_51: -6.72284257e-09 - art_sys_52: -4.16473420e-25 - art_sys_53: -2.02687372e-25 - art_sys_54: -2.91614082e-25 - art_sys_55: -2.14974854e-25 - art_sys_56: -3.84276892e-26 - art_sys_57: 6.94097803e-14 - art_sys_58: -1.33193195e-17 - art_sys_59: 5.30422359e-15 - art_sys_60: 1.75762656e-08 - art_sys_61: 7.72602016e-15 - art_sys_62: -7.41676398e-15 - art_sys_63: -3.89211448e-15 - art_sys_64: 9.90924864e-15 - art_sys_65: -1.61453769e-14 - art_sys_66: -1.51304798e-07 - art_sys_67: 1.14862620e-15 - art_sys_68: -2.27877599e-15 - art_sys_69: 4.29765041e-07 - art_sys_70: -3.49606442e-20 - art_sys_71: -1.23552072e-18 - art_sys_72: -1.11422752e-18 - art_sys_73: 3.15990475e-07 - art_sys_74: 5.83926529e-16 - art_sys_75: -2.44132314e-15 - art_sys_76: 4.11398605e-14 - art_sys_77: 6.78735592e-15 - art_sys_78: 1.32017212e-14 - art_sys_79: -1.08046196e-15 - art_sys_80: 2.26013695e-16 - art_sys_81: 2.75216277e-15 - art_sys_82: -2.51255334e-17 - art_sys_83: 1.44946773e-16 - art_sys_84: 2.54705289e-15 - art_sys_85: 1.04518855e-15 - art_sys_86: -4.67571441e-17 - art_sys_87: -1.88572205e-12 - art_sys_88: -1.25783615e-12 - art_sys_89: 8.80406862e-12 - art_sys_90: -6.50262723e-16 - art_sys_91: 1.62782183e-16 - art_sys_92: 4.94319856e-06 - art_sys_93: 1.06458241e-16 - art_sys_94: -7.23814610e-06 - art_sys_95: 4.36881200e-15 - art_sys_96: 8.15482967e-12 - art_sys_97: 3.50738177e-05 - art_sys_98: -1.54527759e-13 - art_sys_99: 2.89030531e-15 - art_sys_100: -2.73189411e-05 - art_sys_101: -3.10476408e-12 - art_sys_102: -8.92494537e-12 - art_sys_103: 1.00561198e-04 - art_sys_104: 1.29815051e-12 - art_sys_105: -4.99179193e-11 - art_sys_106: 7.84418570e-13 - art_sys_107: -2.22760968e-13 - art_sys_108: -1.42773424e-04 - art_sys_109: 5.13315701e-12 - art_sys_110: 4.47307450e-11 - art_sys_111: -1.36151746e-10 - art_sys_112: -6.17267679e-06 - art_sys_113: 9.00053898e-12 - art_sys_114: 1.05889820e-10 - art_sys_115: -2.05905362e-05 - art_sys_116: 5.48732353e-10 - art_sys_117: 7.06857397e-12 - art_sys_118: 1.39536747e-10 - art_sys_119: -2.91560071e-05 - art_sys_120: 2.88398714e-11 - art_sys_121: 1.67170170e-12 - art_sys_122: -1.38203725e-10 - art_sys_123: -1.72644826e-05 - art_sys_124: 3.28208608e-11 - art_sys_125: -1.56305515e-11 - art_sys_126: -5.19476097e-10 - art_sys_127: -3.48681527e-12 - art_sys_128: -9.15029421e-06 - art_sys_129: 3.90321201e-06 - art_sys_130: 1.52911283e-06 - art_sys_131: 5.36293908e-07 - art_sys_132: -5.62000657e-13 - art_sys_133: 6.26250763e-10 - art_sys_134: -1.70792905e-07 - art_sys_135: -1.38119411e-11 - art_sys_136: -6.03958552e-08 - art_sys_137: -2.10006878e-10 - art_sys_138: 7.65554353e-09 - art_sys_139: -3.46415835e-10 - art_sys_140: -2.55772639e-15 - art_sys_141: 1.40372579e-09 - art_sys_142: 0.0 - art_sys_143: -9.95892888e-11 - art_sys_144: -7.06449198e-10 - art_sys_145: -1.05254723e-09 - art_sys_146: 4.05764730e-12 - art_sys_147: -1.36835474e-11 - art_sys_148: -2.81723770e-11 - art_sys_149: -8.50789913e-12 - art_sys_150: 3.20982292e-13 - art_sys_151: 5.38104475e-13 - art_sys_152: 5.78766679e-13 - art_sys_153: 3.83330439e-14 - art_sys_154: 2.36220017e-13 - art_sys_155: -6.40616393e-13 - art_sys_156: -3.68275286e-12 - art_sys_157: -2.32802688e-12 - art_sys_158: 0.0 - art_sys_159: 5.30112386e-11 - art_sys_160: 5.30112386e-11 - art_sys_161: 1.64166410e-12 - art_sys_162: -5.99595825e-25 - art_sys_163: -0.0 - art_sys_164: -3.65135087e-25 - art_sys_165: -4.05641336e-20 - art_sys_166: 1.15090108e-20 - art_sys_167: 2.36213677e-21 - art_sys_168: -1.33420727e-22 - art_sys_169: -1.15960483e-22 - art_sys_170: -8.54658663e-23 - art_sys_171: -5.55534324e-21 - art_sys_172: 5.97889844e-21 - art_sys_173: -8.72633642e-22 - art_sys_174: -1.23233428e-24 - art_sys_175: 6.71723690e-23 - art_sys_176: -1.43996694e-22 - art_sys_177: 2.61417530e-23 - art_sys_178: 7.96546430e-24 - art_sys_179: -1.14561797e-22 - art_sys_180: -1.27728989e-23 - art_sys_181: 1.83867682e-24 - art_sys_182: -1.07837334e-24 - art_sys_183: -1.60117743e-26 - art_sys_184: -2.70603387e-27 - art_sys_185: -7.66361848e-26 + art_sys_51: 6.72284257e-09 + art_sys_52: 1.41863847e-25 + art_sys_53: -2.74657609e-25 + art_sys_54: -1.43457268e-25 + art_sys_55: 1.43303777e-25 + art_sys_56: 5.19188818e-26 + art_sys_57: -1.75762656e-08 + art_sys_58: 1.51304798e-07 + art_sys_59: 1.44037373e-24 + art_sys_60: 1.71601827e-23 + art_sys_61: 4.29765044e-07 + art_sys_62: -3.28152168e-25 + art_sys_63: -4.02272924e-23 + art_sys_64: 1.51187362e-13 + art_sys_65: -2.51792933e-14 + art_sys_66: -1.02408559e-14 + art_sys_67: -6.96024133e-15 + art_sys_68: -7.47819335e-15 + art_sys_69: 2.13161120e-15 + art_sys_70: 3.36605155e-15 + art_sys_71: -1.85290463e-15 + art_sys_72: 6.55061040e-16 + art_sys_73: 1.33606342e-15 + art_sys_74: 3.15990475e-07 + art_sys_75: -2.71022821e-15 + art_sys_76: 2.85016000e-14 + art_sys_77: -1.36661893e-14 + art_sys_78: -6.28400835e-15 + art_sys_79: -1.23857693e-15 + art_sys_80: -1.89022890e-16 + art_sys_81: 1.40114038e-15 + art_sys_82: -4.38607623e-18 + art_sys_83: 1.75084367e-16 + art_sys_84: -2.79427365e-16 + art_sys_85: 7.56799702e-16 + art_sys_86: 7.56829732e-17 + art_sys_87: 5.02762158e-12 + art_sys_88: -2.11203283e-12 + art_sys_89: 2.66466429e-17 + art_sys_90: -4.78296164e-13 + art_sys_91: 2.48790819e-19 + art_sys_92: 1.07128870e-17 + art_sys_93: -2.22662412e-17 + art_sys_94: -9.52373410e-12 + art_sys_95: 4.94321084e-06 + art_sys_96: 1.03884658e-14 + art_sys_97: -5.36885708e-15 + art_sys_98: 7.23814081e-06 + art_sys_99: 6.91840861e-13 + art_sys_100: -3.50739343e-05 + art_sys_101: -3.62923581e-11 + art_sys_102: -2.73190850e-05 + art_sys_103: -2.53942070e-11 + art_sys_104: 2.21666006e-12 + art_sys_105: -1.27328978e-11 + art_sys_106: -3.54841761e-10 + art_sys_107: 1.00561125e-04 + art_sys_108: -2.05758189e-11 + art_sys_109: -8.00729567e-11 + art_sys_110: 1.42775000e-04 + art_sys_111: 4.36522414e-14 + art_sys_112: -2.91246379e-09 + art_sys_113: -1.18356764e-11 + art_sys_114: -4.60494630e-11 + art_sys_115: -3.14082414e-12 + art_sys_116: -6.17435191e-06 + art_sys_117: -1.82432141e-10 + art_sys_118: -2.56801916e-10 + art_sys_119: 2.05900867e-05 + art_sys_120: -3.78837754e-10 + art_sys_121: 2.24698110e-11 + art_sys_122: 3.58244286e-10 + art_sys_123: 2.91543351e-05 + art_sys_124: -2.15970045e-11 + art_sys_125: -3.22426007e-11 + art_sys_126: -9.66571893e-11 + art_sys_127: -1.72683586e-05 + art_sys_128: -1.65109773e-10 + art_sys_129: -1.66504990e-12 + art_sys_130: 9.14293439e-06 + art_sys_131: 2.42487561e-11 + art_sys_132: 1.32725136e-09 + art_sys_133: 3.89194570e-06 + art_sys_134: 6.58414520e-10 + art_sys_135: -6.40202353e-11 + art_sys_136: 3.04823772e-12 + art_sys_137: 1.53437778e-06 + art_sys_138: 2.87720901e-10 + art_sys_139: 5.33409086e-07 + art_sys_140: 2.20621052e-13 + art_sys_141: 3.08547305e-09 + art_sys_142: -1.42564915e-10 + art_sys_143: 1.73933222e-07 + art_sys_144: -3.43586650e-12 + art_sys_145: -1.34976964e-10 + art_sys_146: 6.22285131e-08 + art_sys_147: -1.48648834e-12 + art_sys_148: -1.11941779e-13 + art_sys_149: -5.98862417e-11 + art_sys_150: 8.44708176e-09 + art_sys_151: 2.88832517e-11 + art_sys_152: 5.69809847e-13 + art_sys_153: -9.03693163e-10 + art_sys_154: -4.84634231e-11 + art_sys_155: -3.49233298e-13 + art_sys_156: -0.0 + art_sys_157: -1.00363596e-11 + art_sys_158: -0.0 + art_sys_159: 1.32480666e-11 + art_sys_160: -1.50847924e-13 + art_sys_161: 4.80505655e-12 + art_sys_162: 4.80505655e-12 + art_sys_163: -1.41960204e-12 + art_sys_164: -1.41960204e-12 + art_sys_165: 5.66606805e-27 + art_sys_166: -1.58122750e-27 + art_sys_167: -0.0 + art_sys_168: -1.14552162e-20 + art_sys_169: -2.24301218e-20 + art_sys_170: 3.46488891e-24 + art_sys_171: -8.85368558e-21 + art_sys_172: -1.52798896e-21 + art_sys_173: -3.55123416e-23 + art_sys_174: -1.90484924e-23 + art_sys_175: 1.06092130e-23 + art_sys_176: -1.19805479e-23 + art_sys_177: 2.61751663e-22 + art_sys_178: -9.28845062e-24 + art_sys_179: 8.76245926e-26 + art_sys_180: 3.21379707e-25 + art_sys_181: -2.54320694e-23 + art_sys_182: -1.96924302e-24 + art_sys_183: -3.95408410e-26 + art_sys_184: 1.58386045e-26 + art_sys_185: 4.63138344e-28 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -24416,167 +24416,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: -1.65789020e-53 - art_sys_26: 4.22968607e-47 - art_sys_27: 2.19664559e-39 - art_sys_28: -5.37165189e-39 - art_sys_29: -5.81616300e-19 - art_sys_30: 1.25325767e-17 - art_sys_31: 5.50202164e-17 - art_sys_32: -4.00719425e-17 - art_sys_33: -4.07530615e-15 - art_sys_34: -5.43926034e-14 - art_sys_35: -1.24253770e-13 - art_sys_36: 5.73739065e-31 - art_sys_37: -1.25869657e-30 - art_sys_38: 2.12998392e-13 - art_sys_39: -2.04744480e-30 - art_sys_40: 6.66578446e-31 - art_sys_41: -1.86706007e-30 - art_sys_42: 5.46455676e-12 - art_sys_43: 4.74007976e-29 - art_sys_44: -1.91790643e-11 - art_sys_45: 5.36473746e-28 - art_sys_46: 2.52064263e-27 - art_sys_47: -1.20839044e-10 - art_sys_48: 2.41335663e-28 - art_sys_49: 7.06195124e-28 + art_sys_25: 2.65224624e-93 + art_sys_26: 1.38936781e-87 + art_sys_27: -8.72636369e-81 + art_sys_28: 5.22089575e-80 + art_sys_29: 2.00527620e-69 + art_sys_30: 1.62985245e-66 + art_sys_31: 7.62387905e-64 + art_sys_32: -9.10713433e-56 + art_sys_33: -2.72922348e-50 + art_sys_34: -2.75170548e-43 + art_sys_35: -1.92900395e-44 + art_sys_36: 5.81616300e-19 + art_sys_37: -1.25325767e-17 + art_sys_38: -5.50202164e-17 + art_sys_39: 4.00719425e-17 + art_sys_40: -4.07530615e-15 + art_sys_41: 5.43926034e-14 + art_sys_42: 1.24253770e-13 + art_sys_43: 2.12998392e-13 + art_sys_44: -5.46455676e-12 + art_sys_45: 1.91790643e-11 + art_sys_46: 1.20839044e-10 + art_sys_47: 2.25480066e-27 + art_sys_48: -4.72145334e-27 + art_sys_49: 1.56336499e-27 art_sys_50: -3.38750858e-10 - art_sys_51: -2.24719092e-09 - art_sys_52: -1.24575731e-25 - art_sys_53: -6.92983025e-26 - art_sys_54: -1.05884202e-25 - art_sys_55: -7.24083742e-26 - art_sys_56: -2.12079885e-26 - art_sys_57: 1.06402128e-14 - art_sys_58: 1.41735254e-14 - art_sys_59: -7.79453980e-15 - art_sys_60: 6.78083609e-09 - art_sys_61: -4.61203482e-15 - art_sys_62: 9.49429665e-15 - art_sys_63: 3.75882715e-15 - art_sys_64: -1.07618005e-14 - art_sys_65: 1.94169083e-14 - art_sys_66: -2.01177902e-08 - art_sys_67: -1.23370613e-15 - art_sys_68: 2.77467228e-15 - art_sys_69: 9.39930775e-08 - art_sys_70: -4.33740261e-21 - art_sys_71: -1.65158690e-19 - art_sys_72: -1.50923150e-19 - art_sys_73: 8.99524307e-08 - art_sys_74: 1.27698703e-16 - art_sys_75: 3.02784148e-15 - art_sys_76: -6.40134222e-14 - art_sys_77: 5.30743278e-15 - art_sys_78: -5.42609810e-15 - art_sys_79: 1.39156183e-15 - art_sys_80: 4.94866354e-17 - art_sys_81: 1.32216686e-15 - art_sys_82: -1.07338675e-16 - art_sys_83: 6.61396862e-16 - art_sys_84: -2.96156271e-16 - art_sys_85: 1.20050744e-15 - art_sys_86: 2.42904851e-16 - art_sys_87: 3.44031179e-13 - art_sys_88: -1.51864452e-11 - art_sys_89: -2.34748181e-12 - art_sys_90: -1.42218913e-16 - art_sys_91: 4.16754082e-17 - art_sys_92: -1.07181964e-06 - art_sys_93: 1.98506026e-17 - art_sys_94: -5.24922512e-06 - art_sys_95: -1.92762622e-15 - art_sys_96: -4.80274183e-12 - art_sys_97: -1.61441553e-06 - art_sys_98: -1.12063558e-13 - art_sys_99: 7.93884272e-15 - art_sys_100: -2.81946424e-05 - art_sys_101: 1.53422152e-13 - art_sys_102: 9.85833165e-12 - art_sys_103: -1.81358565e-05 - art_sys_104: -5.48726966e-14 - art_sys_105: 6.99824112e-11 - art_sys_106: 9.90276205e-14 - art_sys_107: -2.56609724e-13 - art_sys_108: -7.25268842e-05 - art_sys_109: 1.85371888e-11 - art_sys_110: -7.14901015e-11 - art_sys_111: 4.16011001e-12 - art_sys_112: -1.07436554e-04 - art_sys_113: -1.38129631e-11 - art_sys_114: -9.08327994e-12 - art_sys_115: 5.70163637e-06 - art_sys_116: 2.60061218e-10 - art_sys_117: -1.16790475e-11 - art_sys_118: 1.07609976e-12 - art_sys_119: 1.64363998e-05 - art_sys_120: -9.98581360e-12 - art_sys_121: -3.82233105e-10 - art_sys_122: 3.65950058e-11 - art_sys_123: 2.11870763e-05 - art_sys_124: 1.95766641e-11 - art_sys_125: 4.05538353e-11 - art_sys_126: 5.33438340e-11 - art_sys_127: -2.43559774e-10 - art_sys_128: 1.32021629e-05 - art_sys_129: -6.49807734e-06 - art_sys_130: -2.77386147e-06 - art_sys_131: -1.03123453e-06 - art_sys_132: 3.77552787e-10 - art_sys_133: -9.06266645e-10 - art_sys_134: 3.42034886e-07 - art_sys_135: -2.90083361e-10 - art_sys_136: 1.24025255e-07 - art_sys_137: 2.09300024e-10 - art_sys_138: -1.60948301e-08 - art_sys_139: 7.09621096e-10 - art_sys_140: 2.07288742e-16 - art_sys_141: -2.92342844e-09 - art_sys_142: -0.0 - art_sys_143: 1.87824448e-10 - art_sys_144: 1.40969630e-09 - art_sys_145: 2.19483249e-09 - art_sys_146: -6.73266934e-12 - art_sys_147: 2.43842598e-11 - art_sys_148: 7.89664264e-11 - art_sys_149: 1.86413217e-11 - art_sys_150: -5.89919776e-13 - art_sys_151: -1.26206056e-12 - art_sys_152: -1.28536350e-12 - art_sys_153: -8.52403055e-14 - art_sys_154: -4.06248376e-13 - art_sys_155: 1.19704085e-12 - art_sys_156: 7.72393270e-12 - art_sys_157: 4.89788366e-12 - art_sys_158: -0.0 - art_sys_159: -1.03722948e-10 - art_sys_160: -1.03722948e-10 - art_sys_161: -2.60915099e-12 - art_sys_162: 9.51565852e-25 - art_sys_163: 0.0 - art_sys_164: 5.80368041e-25 - art_sys_165: 9.38033708e-20 - art_sys_166: -1.95667263e-20 - art_sys_167: -6.12185636e-21 - art_sys_168: 6.59381890e-22 - art_sys_169: 4.07687398e-22 - art_sys_170: -1.08941662e-22 - art_sys_171: 1.02424498e-20 - art_sys_172: -1.10265430e-20 - art_sys_173: 1.59172237e-21 - art_sys_174: 2.56008587e-24 - art_sys_175: -1.40722030e-22 - art_sys_176: 2.95412365e-22 - art_sys_177: -5.29059301e-23 - art_sys_178: -1.40605444e-23 - art_sys_179: 2.01168481e-22 - art_sys_180: 2.31400809e-23 - art_sys_181: -3.57265420e-24 - art_sys_182: 1.96678122e-24 - art_sys_183: 3.05457720e-26 - art_sys_184: 5.32260981e-27 - art_sys_185: 1.38895388e-25 + art_sys_51: 2.24719092e-09 + art_sys_52: 5.01355986e-26 + art_sys_53: -9.16194658e-26 + art_sys_54: -4.72197929e-26 + art_sys_55: 5.26226641e-26 + art_sys_56: 9.96433310e-27 + art_sys_57: -6.78083609e-09 + art_sys_58: 2.01177902e-08 + art_sys_59: 1.18386178e-25 + art_sys_60: 4.77608445e-25 + art_sys_61: 9.39930782e-08 + art_sys_62: 1.58259131e-25 + art_sys_63: -1.23916756e-23 + art_sys_64: 4.28511789e-14 + art_sys_65: 6.17809965e-15 + art_sys_66: -1.49316967e-14 + art_sys_67: 8.45205255e-15 + art_sys_68: 1.25332170e-14 + art_sys_69: -2.75520655e-15 + art_sys_70: -8.56060287e-15 + art_sys_71: -1.62733738e-15 + art_sys_72: -3.76296273e-16 + art_sys_73: -1.27135597e-15 + art_sys_74: 8.99524307e-08 + art_sys_75: 3.30723466e-15 + art_sys_76: 9.17379841e-15 + art_sys_77: 4.74085439e-14 + art_sys_78: 1.88979932e-16 + art_sys_79: 1.55706416e-15 + art_sys_80: 1.62999625e-15 + art_sys_81: -1.81119989e-15 + art_sys_82: -1.24878184e-18 + art_sys_83: -1.26690725e-15 + art_sys_84: 3.63333153e-16 + art_sys_85: -2.07424411e-16 + art_sys_86: -1.65142240e-16 + art_sys_87: -2.28788506e-13 + art_sys_88: 8.61538842e-13 + art_sys_89: -1.07562263e-17 + art_sys_90: -2.30049424e-13 + art_sys_91: 7.06719582e-20 + art_sys_92: -6.37212087e-19 + art_sys_93: -2.73542726e-17 + art_sys_94: 2.62300659e-12 + art_sys_95: -1.07181009e-06 + art_sys_96: -2.25243357e-15 + art_sys_97: 1.16438449e-15 + art_sys_98: 5.24922603e-06 + art_sys_99: 3.62408145e-13 + art_sys_100: 1.61442107e-06 + art_sys_101: 1.75557473e-12 + art_sys_102: -2.81947796e-05 + art_sys_103: 1.02715142e-12 + art_sys_104: -5.40501602e-14 + art_sys_105: 1.83431456e-11 + art_sys_106: -3.66011028e-10 + art_sys_107: -1.81360458e-05 + art_sys_108: 2.96183379e-11 + art_sys_109: 1.15331956e-10 + art_sys_110: 7.25276848e-05 + art_sys_111: -6.06416998e-12 + art_sys_112: -1.48194235e-09 + art_sys_113: -1.22849860e-11 + art_sys_114: 7.24399389e-11 + art_sys_115: -3.46745201e-12 + art_sys_116: -1.07434083e-04 + art_sys_117: 3.01920170e-10 + art_sys_118: -1.24740136e-10 + art_sys_119: -5.70176402e-06 + art_sys_120: -1.26000594e-10 + art_sys_121: -3.34388171e-11 + art_sys_122: 1.95718728e-10 + art_sys_123: -1.64354390e-05 + art_sys_124: -2.73157179e-11 + art_sys_125: 5.85803055e-11 + art_sys_126: 9.45133991e-11 + art_sys_127: 2.11922738e-05 + art_sys_128: -5.41768593e-11 + art_sys_129: 3.95662541e-12 + art_sys_130: -1.31950167e-05 + art_sys_131: -4.83593865e-11 + art_sys_132: 6.56109094e-10 + art_sys_133: -6.48209816e-06 + art_sys_134: -2.30579609e-10 + art_sys_135: -5.94333903e-11 + art_sys_136: -6.93910228e-12 + art_sys_137: -2.78128941e-06 + art_sys_138: -8.03193713e-11 + art_sys_139: -1.02689308e-06 + art_sys_140: -1.78860804e-13 + art_sys_141: -5.73641598e-09 + art_sys_142: -2.10155737e-11 + art_sys_143: -3.46905743e-07 + art_sys_144: 4.72152240e-12 + art_sys_145: 1.54103312e-10 + art_sys_146: -1.27538719e-07 + art_sys_147: 3.02157205e-12 + art_sys_148: 2.14368440e-13 + art_sys_149: 1.73327032e-10 + art_sys_150: -1.79072588e-08 + art_sys_151: -1.87398531e-10 + art_sys_152: -1.30941413e-12 + art_sys_153: 1.96728442e-09 + art_sys_154: -2.46147816e-11 + art_sys_155: 7.09350198e-13 + art_sys_156: 0.0 + art_sys_157: -1.97116528e-11 + art_sys_158: 0.0 + art_sys_159: -5.02613081e-11 + art_sys_160: -1.66727443e-12 + art_sys_161: -9.68763434e-12 + art_sys_162: -9.68763434e-12 + art_sys_163: 5.37644883e-12 + art_sys_164: 5.37644883e-12 + art_sys_165: -3.58411525e-26 + art_sys_166: 1.12044416e-26 + art_sys_167: 0.0 + art_sys_168: 6.63580064e-20 + art_sys_169: 4.59419698e-20 + art_sys_170: 7.49626016e-22 + art_sys_171: 1.44545725e-20 + art_sys_172: 2.81761218e-21 + art_sys_173: 2.47907592e-23 + art_sys_174: 4.56568468e-24 + art_sys_175: -2.17622164e-23 + art_sys_176: 2.30660273e-23 + art_sys_177: -4.79437768e-22 + art_sys_178: 1.42322737e-23 + art_sys_179: -1.67367225e-25 + art_sys_180: -1.22584403e-24 + art_sys_181: 4.48198633e-23 + art_sys_182: 4.25401855e-24 + art_sys_183: 7.86770087e-26 + art_sys_184: -3.05419277e-26 + art_sys_185: -9.15595620e-28 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -24707,167 +24707,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: -9.44894010e-55 - art_sys_26: 2.41065725e-48 - art_sys_27: 1.25195098e-40 - art_sys_28: -3.06150654e-40 - art_sys_29: -3.31485043e-20 - art_sys_30: 1.00060269e-18 - art_sys_31: 4.25850607e-18 - art_sys_32: 8.70347860e-19 - art_sys_33: -9.29308083e-16 - art_sys_34: -5.81596334e-15 - art_sys_35: -1.74778628e-14 - art_sys_36: 7.67336159e-32 - art_sys_37: -2.03098053e-31 - art_sys_38: 3.46667439e-14 - art_sys_39: -3.34840999e-31 - art_sys_40: 1.13088587e-31 - art_sys_41: -3.06463952e-31 - art_sys_42: 1.40762252e-12 - art_sys_43: 1.20745324e-29 - art_sys_44: -2.27740325e-12 - art_sys_45: 8.69525722e-29 - art_sys_46: 3.89787833e-28 - art_sys_47: -1.96665448e-11 - art_sys_48: 5.85743191e-29 - art_sys_49: 1.01818389e-28 + art_sys_25: 1.50918737e-94 + art_sys_26: 7.90581325e-89 + art_sys_27: -4.96549591e-82 + art_sys_28: 2.97080633e-81 + art_sys_29: 1.14104696e-70 + art_sys_30: 9.27422462e-68 + art_sys_31: 4.33815752e-65 + art_sys_32: -5.18216292e-57 + art_sys_33: -1.55298914e-51 + art_sys_34: -1.56578190e-44 + art_sys_35: -1.09764635e-45 + art_sys_36: 3.31485043e-20 + art_sys_37: -1.00060269e-18 + art_sys_38: -4.25850607e-18 + art_sys_39: -8.70347860e-19 + art_sys_40: -9.29308083e-16 + art_sys_41: 5.81596334e-15 + art_sys_42: 1.74778628e-14 + art_sys_43: 3.46667439e-14 + art_sys_44: -1.40762252e-12 + art_sys_45: 2.27740325e-12 + art_sys_46: 1.96665448e-11 + art_sys_47: 3.79895402e-28 + art_sys_48: -1.49475631e-27 + art_sys_49: 2.30545558e-28 art_sys_50: -7.02560566e-11 - art_sys_51: -3.01482438e-10 - art_sys_52: -1.48589856e-26 - art_sys_53: -9.35902206e-27 - art_sys_54: -1.39340352e-26 - art_sys_55: -9.80459829e-27 - art_sys_56: -3.35075717e-27 - art_sys_57: -1.43058537e-13 - art_sys_58: 6.44435647e-15 - art_sys_59: 3.67512343e-14 - art_sys_60: 9.32691868e-10 - art_sys_61: -1.57733224e-14 - art_sys_62: -3.68029724e-15 - art_sys_63: 1.09746109e-15 - art_sys_64: 3.23935766e-15 - art_sys_65: -1.44177497e-14 - art_sys_66: -1.76530870e-09 - art_sys_67: 6.83219394e-16 - art_sys_68: -2.66546790e-15 - art_sys_69: 8.30286151e-09 - art_sys_70: -3.62452066e-22 - art_sys_71: -1.44943587e-20 - art_sys_72: -1.32473032e-20 - art_sys_73: 2.18801967e-09 - art_sys_74: 1.12802170e-17 - art_sys_75: -3.38110517e-15 - art_sys_76: -6.68271255e-16 - art_sys_77: -1.65134532e-14 - art_sys_78: -1.36719782e-15 - art_sys_79: -1.69386145e-15 - art_sys_80: 4.35602141e-18 - art_sys_81: 1.40135338e-15 - art_sys_82: 5.14903509e-16 - art_sys_83: 1.43231854e-16 - art_sys_84: 1.79577214e-15 - art_sys_85: 3.34314609e-16 - art_sys_86: -4.60167313e-16 - art_sys_87: 3.84876759e-13 - art_sys_88: -7.31138078e-12 - art_sys_89: -3.43393464e-11 - art_sys_90: -1.25607707e-17 - art_sys_91: -8.56363767e-20 - art_sys_92: -5.91312633e-07 - art_sys_93: 9.71158665e-19 - art_sys_94: -5.19837046e-08 - art_sys_95: -6.54009506e-16 - art_sys_96: 1.44905204e-12 - art_sys_97: -4.33805759e-06 - art_sys_98: -1.10742966e-15 - art_sys_99: 8.07753180e-16 - art_sys_100: -2.86979478e-07 - art_sys_101: 3.85446725e-13 - art_sys_102: -7.50691045e-13 - art_sys_103: -2.05760696e-05 - art_sys_104: -1.59904917e-13 - art_sys_105: -8.21757648e-11 - art_sys_106: -7.36885889e-14 - art_sys_107: -1.77362824e-14 - art_sys_108: 1.40627741e-05 - art_sys_109: 1.27549591e-12 - art_sys_110: 9.99717915e-11 - art_sys_111: 1.66154003e-11 - art_sys_112: -5.29104332e-05 - art_sys_113: 1.84310421e-11 - art_sys_114: -1.35536993e-11 - art_sys_115: 8.04894393e-05 - art_sys_116: -5.70266593e-11 - art_sys_117: 1.67197654e-11 - art_sys_118: -1.66742151e-11 - art_sys_119: -4.63310106e-06 - art_sys_120: -7.65328793e-12 - art_sys_121: -2.76958188e-10 - art_sys_122: 3.03899454e-11 - art_sys_123: -1.21722119e-05 - art_sys_124: 9.87648604e-13 - art_sys_125: 3.67718126e-11 - art_sys_126: 1.78783280e-09 - art_sys_127: -1.66552727e-10 - art_sys_128: -1.62129434e-05 - art_sys_129: 9.45310385e-06 - art_sys_130: 4.65413042e-06 - art_sys_131: 1.89065944e-06 - art_sys_132: 2.47478339e-10 - art_sys_133: 9.94461833e-10 - art_sys_134: -6.61139341e-07 - art_sys_135: 2.83836359e-10 - art_sys_136: -2.49498453e-07 - art_sys_137: -2.90122396e-10 - art_sys_138: 3.35022388e-08 - art_sys_139: -1.42007864e-09 - art_sys_140: 3.16077010e-16 - art_sys_141: 6.00742192e-09 - art_sys_142: 0.0 - art_sys_143: -5.45741781e-10 - art_sys_144: -2.79929204e-09 - art_sys_145: -4.52418469e-09 - art_sys_146: 9.73172597e-12 - art_sys_147: -3.97998487e-11 - art_sys_148: -2.05548483e-10 - art_sys_149: -4.00432542e-11 - art_sys_150: 9.74221732e-13 - art_sys_151: 2.96697442e-12 - art_sys_152: 2.81710466e-12 - art_sys_153: 1.88726282e-13 - art_sys_154: 6.08655731e-13 - art_sys_155: -2.11323196e-12 - art_sys_156: -1.60034693e-11 - art_sys_157: -1.02320243e-11 - art_sys_158: 0.0 - art_sys_159: 2.13593700e-10 - art_sys_160: 2.13593700e-10 - art_sys_161: 2.79470377e-12 - art_sys_162: -1.00564593e-24 - art_sys_163: -0.0 - art_sys_164: -6.15787289e-25 - art_sys_165: -2.09314426e-19 - art_sys_166: 2.95390016e-20 - art_sys_167: 1.56258461e-20 - art_sys_168: -2.24230137e-21 - art_sys_169: -1.20901518e-21 - art_sys_170: 9.99926679e-22 - art_sys_171: -1.77385891e-20 - art_sys_172: 1.90358425e-20 - art_sys_173: -2.72569430e-21 - art_sys_174: -5.24749821e-24 - art_sys_175: 2.90543323e-22 - art_sys_176: -5.94289926e-22 - art_sys_177: 1.04793793e-22 - art_sys_178: 2.26013608e-23 - art_sys_179: -3.19611755e-22 - art_sys_180: -3.88335393e-23 - art_sys_181: 6.73153732e-24 - art_sys_182: -3.34678492e-24 - art_sys_183: -5.55440952e-26 - art_sys_184: -1.00294011e-26 - art_sys_185: -2.30105998e-25 + art_sys_51: 3.01482438e-10 + art_sys_52: 7.08109272e-27 + art_sys_53: -1.22196249e-26 + art_sys_54: -5.63349220e-27 + art_sys_55: 7.67212613e-27 + art_sys_56: 4.46030338e-27 + art_sys_57: -9.32691868e-10 + art_sys_58: 1.76530870e-09 + art_sys_59: 4.79775969e-27 + art_sys_60: 2.45590531e-25 + art_sys_61: 8.30286157e-09 + art_sys_62: 1.25642753e-26 + art_sys_63: -3.08013940e-25 + art_sys_64: 5.36880665e-14 + art_sys_65: 2.26663082e-14 + art_sys_66: 2.52638268e-14 + art_sys_67: -1.26236676e-14 + art_sys_68: -2.20153017e-14 + art_sys_69: 5.28652407e-15 + art_sys_70: 1.53156184e-14 + art_sys_71: 8.98392726e-15 + art_sys_72: -1.65029604e-16 + art_sys_73: 7.80984748e-16 + art_sys_74: 2.18801966e-09 + art_sys_75: -3.64450959e-15 + art_sys_76: 5.05142907e-14 + art_sys_77: -1.72843010e-15 + art_sys_78: -2.46160376e-15 + art_sys_79: -1.79490411e-15 + art_sys_80: -2.25234698e-15 + art_sys_81: 2.18812793e-15 + art_sys_82: -3.04261040e-20 + art_sys_83: -1.09663706e-16 + art_sys_84: -6.23056068e-17 + art_sys_85: 8.30427994e-16 + art_sys_86: 3.97591736e-17 + art_sys_87: -6.19398328e-13 + art_sys_88: 5.07518584e-13 + art_sys_89: -3.24388049e-17 + art_sys_90: 5.09150025e-14 + art_sys_91: 1.66553291e-21 + art_sys_92: 7.08682669e-18 + art_sys_93: -1.43136867e-17 + art_sys_94: 3.72381111e-11 + art_sys_95: -5.91312458e-07 + art_sys_96: -1.24266205e-15 + art_sys_97: 6.42300727e-16 + art_sys_98: 5.19844852e-08 + art_sys_99: -1.37858165e-14 + art_sys_100: 4.33807199e-06 + art_sys_101: 4.50320643e-12 + art_sys_102: -2.86978975e-07 + art_sys_103: 3.11680069e-12 + art_sys_104: -2.16409675e-13 + art_sys_105: -2.22313540e-11 + art_sys_106: -3.70726060e-12 + art_sys_107: -2.05760861e-05 + art_sys_108: -3.57051466e-11 + art_sys_109: -1.41395638e-10 + art_sys_110: -1.40629292e-05 + art_sys_111: -1.35340562e-12 + art_sys_112: 2.86494752e-10 + art_sys_113: -1.36775752e-13 + art_sys_114: -9.81400336e-11 + art_sys_115: -3.05156810e-13 + art_sys_116: -5.29024748e-05 + art_sys_117: -4.33990390e-10 + art_sys_118: 2.63069558e-11 + art_sys_119: -8.04878605e-05 + art_sys_120: 7.05181652e-11 + art_sys_121: 3.77950927e-11 + art_sys_122: -3.26603995e-11 + art_sys_123: 4.63282827e-06 + art_sys_124: -4.51562603e-12 + art_sys_125: -9.88107181e-11 + art_sys_126: 4.70833501e-10 + art_sys_127: -1.21792578e-05 + art_sys_128: 3.85314193e-11 + art_sys_129: -9.05607518e-12 + art_sys_130: 1.62157581e-05 + art_sys_131: 9.47954026e-11 + art_sys_132: -2.07736890e-10 + art_sys_133: 9.43692186e-06 + art_sys_134: -2.31402833e-09 + art_sys_135: 8.24444436e-11 + art_sys_136: 1.57754087e-11 + art_sys_137: 4.66141485e-06 + art_sys_138: 7.03342629e-11 + art_sys_139: 1.88524161e-06 + art_sys_140: -2.94443632e-13 + art_sys_141: 1.03140637e-08 + art_sys_142: -1.32332667e-10 + art_sys_143: 6.67862796e-07 + art_sys_144: -4.94747868e-12 + art_sys_145: 4.58284229e-10 + art_sys_146: 2.55977244e-07 + art_sys_147: -5.98380017e-12 + art_sys_148: -3.72240619e-13 + art_sys_149: -1.79044165e-10 + art_sys_150: 3.76805264e-08 + art_sys_151: 6.31017009e-10 + art_sys_152: 3.07775266e-12 + art_sys_153: -4.25835911e-09 + art_sys_154: 4.77400485e-12 + art_sys_155: -1.21467346e-12 + art_sys_156: -0.0 + art_sys_157: 1.92753691e-11 + art_sys_158: -0.0 + art_sys_159: 1.46423056e-10 + art_sys_160: 5.42454972e-12 + art_sys_161: 1.64524019e-11 + art_sys_162: 1.64524019e-11 + art_sys_163: -1.54633687e-11 + art_sys_164: -1.54633687e-11 + art_sys_165: 1.22377099e-25 + art_sys_166: -3.91983180e-26 + art_sys_167: -0.0 + art_sys_168: -9.46887535e-20 + art_sys_169: -9.20839043e-20 + art_sys_170: 5.74897061e-21 + art_sys_171: -1.99344881e-20 + art_sys_172: -4.88479723e-21 + art_sys_173: 5.85058395e-23 + art_sys_174: 7.25417679e-23 + art_sys_175: 4.28836052e-23 + art_sys_176: -4.33536347e-23 + art_sys_177: 8.17841331e-22 + art_sys_178: -1.77294123e-23 + art_sys_179: 2.25627364e-25 + art_sys_180: 3.57503523e-24 + art_sys_181: -7.11457593e-23 + art_sys_182: -9.16474586e-24 + art_sys_183: -1.52032790e-25 + art_sys_184: 5.58799340e-26 + art_sys_185: 1.68042879e-27 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -24998,167 +24998,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: -5.91078919e-56 - art_sys_26: 1.50798784e-49 - art_sys_27: 7.83158559e-42 - art_sys_28: -1.91512694e-41 - art_sys_29: -2.07360648e-21 - art_sys_30: 7.78541478e-20 - art_sys_31: 3.20507614e-19 - art_sys_32: 2.55796041e-19 - art_sys_33: -1.11160223e-16 - art_sys_34: -5.12601756e-16 - art_sys_35: -1.78944666e-15 - art_sys_36: 7.67697572e-33 - art_sys_37: -2.13283510e-32 - art_sys_38: 3.70207262e-15 - art_sys_39: -3.58347090e-32 - art_sys_40: 1.22208426e-32 - art_sys_41: -3.29900080e-32 - art_sys_42: 1.78915522e-13 - art_sys_43: 1.59477075e-30 - art_sys_44: -1.46727718e-13 - art_sys_45: 8.63029195e-30 - art_sys_46: 3.65650389e-29 - art_sys_47: -1.93778207e-12 - art_sys_48: 6.53718538e-30 - art_sys_49: 6.61816028e-30 + art_sys_25: 9.42778659e-96 + art_sys_26: 4.93870555e-90 + art_sys_27: -3.10191013e-83 + art_sys_28: 1.85584168e-82 + art_sys_29: 7.12803958e-72 + art_sys_30: 5.79354244e-69 + art_sys_31: 2.71001628e-66 + art_sys_32: -3.23726048e-58 + art_sys_33: -9.70141318e-53 + art_sys_34: -9.78132865e-46 + art_sys_35: -6.85691901e-47 + art_sys_36: 2.07360648e-21 + art_sys_37: -7.78541478e-20 + art_sys_38: -3.20507614e-19 + art_sys_39: -2.55796041e-19 + art_sys_40: -1.11160223e-16 + art_sys_41: 5.12601756e-16 + art_sys_42: 1.78944666e-15 + art_sys_43: 3.70207262e-15 + art_sys_44: -1.78915522e-13 + art_sys_45: 1.46727718e-13 + art_sys_46: 1.93778207e-12 + art_sys_47: 3.84969904e-29 + art_sys_48: -1.75160627e-28 + art_sys_49: 2.29211759e-29 art_sys_50: -6.93124683e-12 - art_sys_51: -2.75761600e-11 - art_sys_52: -1.32220878e-27 - art_sys_53: -8.56587666e-28 - art_sys_54: -1.41503927e-27 - art_sys_55: -8.96998174e-28 - art_sys_56: -2.38616421e-28 - art_sys_57: -3.88961394e-14 - art_sys_58: -1.37570107e-14 - art_sys_59: -2.45752227e-14 - art_sys_60: 6.06860050e-11 - art_sys_61: 2.79080766e-14 - art_sys_62: -7.11726221e-16 - art_sys_63: -7.84365070e-15 - art_sys_64: 9.97854175e-15 - art_sys_65: -1.27768876e-14 - art_sys_66: -3.35235517e-10 - art_sys_67: 3.34682723e-15 - art_sys_68: -3.09782897e-15 - art_sys_69: 1.77757647e-10 - art_sys_70: -7.78146780e-23 - art_sys_71: -2.71924529e-21 - art_sys_72: -2.41042456e-21 - art_sys_73: -2.62219540e-09 - art_sys_74: 2.41740448e-19 - art_sys_75: -4.99846021e-15 - art_sys_76: 7.05461327e-15 - art_sys_77: 4.30027648e-14 - art_sys_78: -1.20409175e-15 - art_sys_79: -2.28400920e-15 - art_sys_80: 8.61346094e-20 - art_sys_81: -9.37691908e-15 - art_sys_82: 2.14048401e-16 - art_sys_83: -2.87295703e-16 - art_sys_84: 2.26914504e-15 - art_sys_85: 7.16142777e-16 - art_sys_86: 1.23879857e-16 - art_sys_87: 7.21103423e-15 - art_sys_88: 1.56019703e-12 - art_sys_89: -1.68053431e-11 - art_sys_90: -2.68321843e-19 - art_sys_91: -1.29587722e-18 - art_sys_92: -6.69239611e-09 - art_sys_93: 3.26498418e-20 - art_sys_94: 4.37695022e-07 - art_sys_95: 5.58444555e-17 - art_sys_96: 1.60169578e-11 - art_sys_97: -4.70412044e-07 - art_sys_98: 9.34414949e-15 - art_sys_99: -5.41232633e-16 - art_sys_100: 3.31715922e-06 - art_sys_101: 4.09727256e-14 - art_sys_102: -1.31523466e-12 - art_sys_103: -5.09603640e-07 - art_sys_104: -1.77090866e-14 - art_sys_105: 3.38221415e-11 - art_sys_106: -1.84112541e-14 - art_sys_107: 1.92679135e-14 - art_sys_108: 1.49394573e-05 - art_sys_109: -1.98550041e-12 - art_sys_110: -1.09785393e-10 - art_sys_111: 2.07581529e-12 - art_sys_112: 1.07714846e-05 - art_sys_113: -1.68295725e-11 - art_sys_114: -9.71794306e-13 - art_sys_115: 3.93291434e-05 - art_sys_116: -5.47770086e-11 - art_sys_117: -1.91551701e-11 - art_sys_118: -2.63478046e-12 - art_sys_119: -5.99070469e-05 - art_sys_120: 3.33055220e-13 - art_sys_121: -7.16762442e-12 - art_sys_122: -8.94182420e-13 - art_sys_123: 4.53084643e-06 - art_sys_124: -2.90616053e-12 - art_sys_125: 2.35487310e-12 - art_sys_126: 8.64401932e-10 - art_sys_127: -6.16319862e-13 - art_sys_128: 9.65273775e-06 - art_sys_129: -1.17711951e-05 - art_sys_130: -6.81215177e-06 - art_sys_131: -3.20402255e-06 - art_sys_132: -6.24453109e-12 - art_sys_133: -1.15112861e-09 - art_sys_134: 1.21698783e-06 - art_sys_135: 1.30180601e-10 - art_sys_136: 4.82999496e-07 - art_sys_137: 1.98802558e-10 - art_sys_138: -6.81336779e-08 - art_sys_139: 2.64976350e-09 - art_sys_140: 1.51011655e-17 - art_sys_141: -1.26442088e-08 - art_sys_142: -0.0 - art_sys_143: 9.30074897e-10 - art_sys_144: 5.57815361e-09 - art_sys_145: 9.45696301e-09 - art_sys_146: -1.17135763e-11 - art_sys_147: 5.53182814e-11 - art_sys_148: 4.33776254e-10 - art_sys_149: 8.31936266e-11 - art_sys_150: -2.14100761e-12 - art_sys_151: -5.56889006e-12 - art_sys_152: -5.54402777e-12 - art_sys_153: -3.83548701e-13 - art_sys_154: -9.65148934e-13 - art_sys_155: 3.86452313e-12 - art_sys_156: 3.39849273e-11 - art_sys_157: 2.13998218e-11 - art_sys_158: -0.0 - art_sys_159: -3.45560532e-10 - art_sys_160: -3.45560532e-10 - art_sys_161: -4.88138330e-12 - art_sys_162: 1.80680245e-24 - art_sys_163: 0.0 - art_sys_164: 1.12248217e-24 - art_sys_165: 4.46784467e-19 - art_sys_166: -4.93149891e-20 - art_sys_167: -3.22137297e-20 - art_sys_168: 4.63194795e-21 - art_sys_169: 2.39479057e-21 - art_sys_170: -1.73200122e-21 - art_sys_171: 2.79803531e-20 - art_sys_172: -2.96500713e-20 - art_sys_173: 4.49359556e-21 - art_sys_174: 1.09844003e-23 - art_sys_175: -5.83417904e-22 - art_sys_176: 1.15100758e-21 - art_sys_177: -2.01299376e-22 - art_sys_178: -3.10449375e-23 - art_sys_179: 4.18585724e-22 - art_sys_180: 5.98558234e-23 - art_sys_181: -1.19917704e-23 - art_sys_182: 4.99857736e-24 - art_sys_183: 9.20201158e-26 - art_sys_184: 1.81855655e-26 - art_sys_185: 4.13524509e-25 + art_sys_51: 2.75761600e-11 + art_sys_52: 6.54399101e-28 + art_sys_53: -1.11524805e-27 + art_sys_54: -5.11548140e-28 + art_sys_55: 7.13870194e-28 + art_sys_56: 2.87431494e-28 + art_sys_57: -6.06860050e-11 + art_sys_58: 3.35235517e-10 + art_sys_59: 2.85414285e-27 + art_sys_60: 3.85998545e-26 + art_sys_61: 1.77757648e-10 + art_sys_62: -5.29524792e-27 + art_sys_63: 3.75376401e-25 + art_sys_64: -4.67633849e-15 + art_sys_65: 1.70618714e-14 + art_sys_66: -1.65902781e-14 + art_sys_67: -1.76724346e-15 + art_sys_68: 3.14392655e-14 + art_sys_69: -1.64273266e-14 + art_sys_70: -3.73890236e-14 + art_sys_71: -4.46142350e-14 + art_sys_72: 5.21208232e-15 + art_sys_73: 5.50301222e-15 + art_sys_74: -2.62219540e-09 + art_sys_75: -4.31731666e-15 + art_sys_76: -5.87552647e-14 + art_sys_77: -1.09652004e-14 + art_sys_78: 5.42030158e-15 + art_sys_79: -1.65914960e-15 + art_sys_80: -2.47125899e-15 + art_sys_81: 1.28304240e-15 + art_sys_82: 3.63985605e-20 + art_sys_83: -7.42253156e-17 + art_sys_84: -7.93045809e-16 + art_sys_85: 3.77074303e-16 + art_sys_86: 1.39254017e-16 + art_sys_87: -6.72441306e-14 + art_sys_88: -5.82486150e-14 + art_sys_89: 5.19567020e-17 + art_sys_90: 4.83281972e-14 + art_sys_91: -2.07036256e-21 + art_sys_92: -5.90583877e-17 + art_sys_93: 2.86445330e-17 + art_sys_94: 1.82007641e-11 + art_sys_95: -6.69317894e-09 + art_sys_96: -1.40636790e-17 + art_sys_97: 7.26574138e-18 + art_sys_98: -4.37694991e-07 + art_sys_99: -3.30928086e-14 + art_sys_100: 4.70413553e-07 + art_sys_101: 4.81564662e-13 + art_sys_102: 3.31717560e-06 + art_sys_103: 3.49235716e-13 + art_sys_104: -3.98366465e-14 + art_sys_105: 1.32569779e-11 + art_sys_106: 4.30655293e-11 + art_sys_107: -5.09574071e-07 + art_sys_108: 2.13313948e-11 + art_sys_109: 8.23615474e-11 + art_sys_110: -1.49396222e-05 + art_sys_111: 4.64947791e-13 + art_sys_112: 3.05115011e-10 + art_sys_113: 1.44383337e-12 + art_sys_114: 1.01140174e-10 + art_sys_115: 3.10740869e-13 + art_sys_116: 1.07746964e-05 + art_sys_117: 5.31518771e-10 + art_sys_118: 2.65436153e-11 + art_sys_119: -3.93282876e-05 + art_sys_120: 3.29838319e-11 + art_sys_121: -3.06657889e-11 + art_sys_122: -3.78601351e-11 + art_sys_123: 5.99036833e-05 + art_sys_124: 3.66698403e-12 + art_sys_125: 1.49330969e-10 + art_sys_126: 2.08478403e-10 + art_sys_127: 4.52556700e-06 + art_sys_128: 1.66307305e-11 + art_sys_129: 1.79873457e-11 + art_sys_130: -9.66316071e-06 + art_sys_131: -1.79411282e-10 + art_sys_132: -1.73470392e-10 + art_sys_133: -1.17513207e-05 + art_sys_134: -9.60877224e-10 + art_sys_135: 1.17747735e-10 + art_sys_136: -3.60504640e-11 + art_sys_137: -6.81616423e-06 + art_sys_138: 5.47997745e-10 + art_sys_139: -3.19760134e-06 + art_sys_140: 2.09067037e-12 + art_sys_141: -1.74295767e-08 + art_sys_142: -2.39359734e-10 + art_sys_143: -1.22547202e-06 + art_sys_144: 4.38458995e-12 + art_sys_145: 2.34926385e-10 + art_sys_146: -4.95901418e-07 + art_sys_147: 1.14145407e-11 + art_sys_148: 5.91585947e-13 + art_sys_149: 4.30847588e-10 + art_sys_150: -7.80546405e-08 + art_sys_151: -1.43262444e-09 + art_sys_152: -7.00727301e-12 + art_sys_153: 9.47381635e-09 + art_sys_154: 5.07052356e-12 + art_sys_155: 2.12541005e-12 + art_sys_156: 0.0 + art_sys_157: 2.48733871e-11 + art_sys_158: 0.0 + art_sys_159: -2.41519011e-10 + art_sys_160: -7.04263659e-12 + art_sys_161: -3.11711147e-11 + art_sys_162: -3.11711147e-11 + art_sys_163: 2.73531419e-11 + art_sys_164: 2.73531419e-11 + art_sys_165: -2.13157450e-25 + art_sys_166: 6.83613694e-26 + art_sys_167: 0.0 + art_sys_168: 2.29093573e-19 + art_sys_169: 1.79685362e-19 + art_sys_170: 3.21721283e-21 + art_sys_171: 2.19772176e-20 + art_sys_172: 7.98059231e-21 + art_sys_173: -3.67980154e-22 + art_sys_174: -3.36127008e-22 + art_sys_175: -8.41592175e-23 + art_sys_176: 7.44128501e-23 + art_sys_177: -1.26254759e-21 + art_sys_178: 1.76700911e-23 + art_sys_179: -3.07237944e-25 + art_sys_180: -5.96428977e-24 + art_sys_181: 1.00212183e-22 + art_sys_182: 2.02573391e-23 + art_sys_183: 2.90878457e-25 + art_sys_184: -9.45143983e-26 + art_sys_185: -2.86314874e-27 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -25289,167 +25289,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: -3.20649462e-57 - art_sys_26: 8.18055719e-51 - art_sys_27: 4.24849140e-43 - art_sys_28: -1.03892121e-42 - art_sys_29: -1.12489355e-22 - art_sys_30: 5.31379748e-21 - art_sys_31: 2.11580575e-20 - art_sys_32: 2.82332336e-20 - art_sys_33: -9.75789715e-18 - art_sys_34: -4.02943960e-17 - art_sys_35: -1.48413920e-16 - art_sys_36: 6.32063962e-34 - art_sys_37: -1.84703250e-33 - art_sys_38: 3.04767719e-16 - art_sys_39: -2.95372900e-33 - art_sys_40: 1.00654622e-33 - art_sys_41: -2.71829428e-33 - art_sys_42: 1.52166445e-14 - art_sys_43: 1.34903104e-31 - art_sys_44: -6.59423827e-15 - art_sys_45: 6.74296553e-31 - art_sys_46: 2.69001590e-30 - art_sys_47: -1.48124723e-13 - art_sys_48: 2.50475448e-31 - art_sys_49: 5.07639259e-31 + art_sys_25: 5.10515379e-97 + art_sys_26: 2.67431291e-91 + art_sys_27: -1.67968676e-84 + art_sys_28: 1.00493972e-83 + art_sys_29: 3.85983900e-73 + art_sys_30: 3.13720776e-70 + art_sys_31: 1.46747593e-67 + art_sys_32: -1.75297908e-59 + art_sys_33: -5.25332282e-54 + art_sys_34: -5.29659711e-47 + art_sys_35: -3.71302700e-48 + art_sys_36: 1.12489355e-22 + art_sys_37: -5.31379748e-21 + art_sys_38: -2.11580575e-20 + art_sys_39: -2.82332336e-20 + art_sys_40: -9.75789715e-18 + art_sys_41: 4.02943960e-17 + art_sys_42: 1.48413920e-16 + art_sys_43: 3.04767719e-16 + art_sys_44: -1.52166445e-14 + art_sys_45: 6.59423827e-15 + art_sys_46: 1.48124723e-13 + art_sys_47: 2.99190925e-30 + art_sys_48: 7.62376371e-31 + art_sys_49: 2.71349123e-30 art_sys_50: -3.98352832e-14 - art_sys_51: -3.62951697e-12 - art_sys_52: -2.39526038e-28 - art_sys_53: -1.09068823e-28 - art_sys_54: -1.61617590e-28 - art_sys_55: -1.15580247e-28 - art_sys_56: -2.23741497e-30 - art_sys_57: -2.86568315e-15 - art_sys_58: 1.09100573e-14 - art_sys_59: -1.59011313e-14 - art_sys_60: 4.60741144e-12 - art_sys_61: -7.04816201e-14 - art_sys_62: 2.72396491e-14 - art_sys_63: 2.35843073e-14 - art_sys_64: -3.87545600e-14 - art_sys_65: 4.70636828e-14 - art_sys_66: -9.99934005e-11 - art_sys_67: -5.99912024e-15 - art_sys_68: 6.13394572e-15 - art_sys_69: 1.41906118e-10 - art_sys_70: -2.37569490e-23 - art_sys_71: -8.13173783e-22 - art_sys_72: -7.25678482e-22 - art_sys_73: -2.39730403e-10 - art_sys_74: 1.92850036e-19 - art_sys_75: 6.69914489e-15 - art_sys_76: -9.39998829e-14 - art_sys_77: 1.07185464e-14 - art_sys_78: 6.46437097e-15 - art_sys_79: 2.48350948e-15 - art_sys_80: 7.37101404e-20 - art_sys_81: 4.87294643e-15 - art_sys_82: 1.95326374e-15 - art_sys_83: 6.32593659e-17 - art_sys_84: -2.44289849e-15 - art_sys_85: 2.45338985e-17 - art_sys_86: 1.84731370e-17 - art_sys_87: -4.23325997e-14 - art_sys_88: 1.48746144e-12 - art_sys_89: 3.40364911e-12 - art_sys_90: -2.14694944e-19 - art_sys_91: -4.46043607e-20 - art_sys_92: 3.81677553e-08 - art_sys_93: 9.33944328e-20 - art_sys_94: 7.00292472e-08 - art_sys_95: 5.18474419e-17 - art_sys_96: 6.59821581e-12 - art_sys_97: 3.00710935e-07 - art_sys_98: 1.49462520e-15 - art_sys_99: -1.35856771e-16 - art_sys_100: 5.01635638e-07 - art_sys_101: -2.68189000e-14 - art_sys_102: 3.83759589e-11 - art_sys_103: 2.33099903e-06 - art_sys_104: 1.10416139e-14 - art_sys_105: 5.83491662e-13 - art_sys_106: 3.54193221e-15 - art_sys_107: 4.40452617e-15 - art_sys_108: 2.27070132e-07 - art_sys_109: -3.50590452e-13 - art_sys_110: 6.96387112e-11 - art_sys_111: -1.11204552e-12 - art_sys_112: 1.06831524e-05 - art_sys_113: 9.79115101e-12 - art_sys_114: 1.00659094e-12 - art_sys_115: -7.98556292e-06 - art_sys_116: -1.93452546e-13 - art_sys_117: 9.87119821e-12 - art_sys_118: 1.07249237e-12 - art_sys_119: -2.75252823e-05 - art_sys_120: 1.00210089e-12 - art_sys_121: 4.65384329e-11 - art_sys_122: -3.67083540e-12 - art_sys_123: 4.46078527e-05 - art_sys_124: -7.54974900e-13 - art_sys_125: -5.88679489e-12 - art_sys_126: -1.62798698e-10 - art_sys_127: 2.89084323e-11 - art_sys_128: -3.34906711e-06 - art_sys_129: 7.36761173e-06 - art_sys_130: 8.76039221e-06 - art_sys_131: 4.88165761e-06 - art_sys_132: -3.38528135e-11 - art_sys_133: 1.07686021e-10 - art_sys_134: -2.11594805e-06 - art_sys_135: -1.12805234e-10 - art_sys_136: -9.10615244e-07 - art_sys_137: 2.32552834e-10 - art_sys_138: 1.37752100e-07 - art_sys_139: -4.61968995e-09 - art_sys_140: -2.38816542e-17 - art_sys_141: 2.57350266e-08 - art_sys_142: 0.0 - art_sys_143: -1.88394716e-09 - art_sys_144: -1.08838238e-08 - art_sys_145: -1.92151092e-08 - art_sys_146: 1.03828325e-11 - art_sys_147: -6.06019687e-11 - art_sys_148: -9.29414577e-10 - art_sys_149: -1.66751729e-10 - art_sys_150: 3.40623223e-12 - art_sys_151: 1.14615045e-11 - art_sys_152: 1.11456822e-11 - art_sys_153: 7.98149891e-13 - art_sys_154: 9.25525949e-13 - art_sys_155: -6.25769110e-12 - art_sys_156: -6.99305157e-11 - art_sys_157: -4.41301341e-11 + art_sys_51: 3.62951697e-12 + art_sys_52: 7.35306626e-29 + art_sys_53: -1.49707576e-28 + art_sys_54: -7.85092445e-29 + art_sys_55: 7.24142968e-29 + art_sys_56: 4.77117384e-29 + art_sys_57: -4.60741144e-12 + art_sys_58: 9.99934005e-11 + art_sys_59: 1.07870040e-27 + art_sys_60: 5.48395496e-27 + art_sys_61: 1.41906119e-10 + art_sys_62: -1.02211699e-27 + art_sys_63: 3.66165552e-26 + art_sys_64: -1.07133488e-13 + art_sys_65: 2.58877816e-14 + art_sys_66: 1.35319824e-14 + art_sys_67: 7.48489305e-15 + art_sys_68: -4.40748658e-14 + art_sys_69: 2.43429211e-14 + art_sys_70: 5.10818347e-14 + art_sys_71: 5.55257776e-14 + art_sys_72: -6.54597560e-15 + art_sys_73: -6.53921602e-15 + art_sys_74: -2.39730403e-10 + art_sys_75: 4.45970556e-15 + art_sys_76: 5.83210927e-14 + art_sys_77: 2.67848976e-15 + art_sys_78: -9.94977129e-17 + art_sys_79: 1.45670992e-15 + art_sys_80: -8.13275714e-16 + art_sys_81: -9.39732447e-16 + art_sys_82: 3.33099475e-21 + art_sys_83: -1.34805319e-16 + art_sys_84: -2.52737875e-16 + art_sys_85: 3.88852688e-16 + art_sys_86: -1.32148885e-16 + art_sys_87: 4.29083362e-14 + art_sys_88: -6.61972905e-14 + art_sys_89: 7.31492484e-17 + art_sys_90: 2.52849015e-16 + art_sys_91: -1.86440093e-22 + art_sys_92: 6.36364934e-18 + art_sys_93: 9.03158860e-18 + art_sys_94: -3.69345710e-12 + art_sys_95: 3.81676245e-08 + art_sys_96: 8.02110281e-17 + art_sys_97: -4.14589260e-17 + art_sys_98: -7.00293103e-08 + art_sys_99: -4.12061370e-15 + art_sys_100: -3.00711940e-07 + art_sys_101: -3.13171199e-13 + art_sys_102: 5.01637890e-07 + art_sys_103: -2.14367965e-13 + art_sys_104: 8.42944765e-15 + art_sys_105: -3.18195848e-12 + art_sys_106: 6.51138090e-12 + art_sys_107: 2.33100463e-06 + art_sys_108: -4.34435007e-12 + art_sys_109: -2.82130821e-11 + art_sys_110: -2.27072663e-07 + art_sys_111: 2.30126556e-13 + art_sys_112: 4.72056787e-12 + art_sys_113: 2.19730743e-13 + art_sys_114: -4.27728719e-11 + art_sys_115: 9.67421239e-14 + art_sys_116: 1.06822612e-05 + art_sys_117: -2.89996392e-10 + art_sys_118: 2.40078695e-13 + art_sys_119: 7.98541873e-06 + art_sys_120: -6.05227702e-12 + art_sys_121: -5.85088338e-11 + art_sys_122: -9.53606132e-13 + art_sys_123: 2.75238254e-05 + art_sys_124: 1.33083401e-12 + art_sys_125: -1.96363032e-10 + art_sys_126: -5.06733545e-11 + art_sys_127: 4.46117703e-05 + art_sys_128: -3.79051704e-12 + art_sys_129: -3.48170019e-11 + art_sys_130: 3.39187076e-06 + art_sys_131: 3.38652494e-10 + art_sys_132: 6.52370993e-12 + art_sys_133: 7.36648746e-06 + art_sys_134: 2.92166495e-10 + art_sys_135: 2.81987863e-11 + art_sys_136: 8.14260626e-11 + art_sys_137: 8.74628162e-06 + art_sys_138: 2.54391092e-10 + art_sys_139: 4.87700339e-06 + art_sys_140: -6.85468006e-12 + art_sys_141: 2.90373809e-08 + art_sys_142: -1.98505257e-10 + art_sys_143: 2.12679787e-06 + art_sys_144: -3.09850788e-12 + art_sys_145: -2.00393644e-10 + art_sys_146: 9.34123359e-07 + art_sys_147: -2.10316139e-11 + art_sys_148: -7.40028385e-13 + art_sys_149: -9.47993604e-10 + art_sys_150: 1.61068709e-07 + art_sys_151: 2.86146201e-09 + art_sys_152: 1.61735285e-11 + art_sys_153: -2.05442385e-08 + art_sys_154: 7.69563446e-14 + art_sys_155: -2.06110650e-12 + art_sys_156: -0.0 + art_sys_157: 2.94740576e-11 art_sys_158: 0.0 - art_sys_159: 7.18851862e-10 - art_sys_160: 7.18851862e-10 - art_sys_161: -1.21278229e-12 - art_sys_162: 4.38354763e-25 - art_sys_163: 0.0 - art_sys_164: 2.11279767e-25 - art_sys_165: -9.58008548e-19 - art_sys_166: 5.57414823e-20 - art_sys_167: 7.39651607e-20 - art_sys_168: -1.09895543e-20 - art_sys_169: -5.55212473e-21 - art_sys_170: 5.02675074e-21 - art_sys_171: -4.05568531e-20 - art_sys_172: 4.13742046e-20 - art_sys_173: -6.87288694e-21 - art_sys_174: -2.22437867e-23 - art_sys_175: 1.14891168e-21 - art_sys_176: -2.17865430e-21 - art_sys_177: 3.77027713e-22 - art_sys_178: 3.27073944e-23 - art_sys_179: -3.83196392e-22 - art_sys_180: -7.97567570e-23 - art_sys_181: 2.08607140e-23 - art_sys_182: -6.44297024e-24 - art_sys_183: -1.41307556e-25 - art_sys_184: -3.04172090e-26 - art_sys_185: -6.18520170e-25 + art_sys_159: 4.02933596e-10 + art_sys_160: 1.92535249e-11 + art_sys_161: 2.87492391e-11 + art_sys_162: 2.87492391e-11 + art_sys_163: -4.44284221e-11 + art_sys_164: -4.44284221e-11 + art_sys_165: 3.83843646e-25 + art_sys_166: -1.24678038e-25 + art_sys_167: -0.0 + art_sys_168: -5.87748949e-20 + art_sys_169: -3.38319175e-19 + art_sys_170: 1.20160627e-20 + art_sys_171: -2.28943362e-21 + art_sys_172: -1.17935750e-20 + art_sys_173: 1.10159904e-21 + art_sys_174: 1.01378884e-21 + art_sys_175: 1.48857037e-22 + art_sys_176: -1.28748586e-22 + art_sys_177: 1.63351635e-21 + art_sys_178: -1.51824191e-25 + art_sys_179: -3.13736908e-25 + art_sys_180: 9.87277777e-24 + art_sys_181: -9.45513510e-23 + art_sys_182: -4.35186833e-23 + art_sys_183: -5.29481277e-25 + art_sys_184: 1.43989551e-25 + art_sys_185: 4.33593385e-27 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -25580,167 +25580,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: -1.29335471e-58 - art_sys_26: 3.29966627e-52 - art_sys_27: 1.71364902e-44 - art_sys_28: -4.19053762e-44 - art_sys_29: -4.53731186e-24 - art_sys_30: 2.89285522e-22 - art_sys_31: 1.05725815e-21 - art_sys_32: 3.04681657e-21 - art_sys_33: -7.24121425e-19 - art_sys_34: -3.14358216e-18 - art_sys_35: -1.12030282e-17 - art_sys_36: 4.79418932e-35 - art_sys_37: -1.32365850e-34 - art_sys_38: 2.25194584e-17 - art_sys_39: -2.18249207e-34 - art_sys_40: 7.40602679e-35 - art_sys_41: -1.99647190e-34 - art_sys_42: 1.04198711e-15 - art_sys_43: 9.02889742e-33 - art_sys_44: -9.90029664e-16 - art_sys_45: 7.75319903e-32 - art_sys_46: 2.97046827e-31 - art_sys_47: -1.58573504e-14 - art_sys_48: -2.12707755e-32 - art_sys_49: 6.11957136e-32 + art_sys_25: 2.05282799e-98 + art_sys_26: 1.07536514e-92 + art_sys_27: -6.75417068e-86 + art_sys_28: 4.04095249e-85 + art_sys_29: 1.55207578e-74 + art_sys_30: 1.26149930e-71 + art_sys_31: 5.90085199e-69 + art_sys_32: -7.04888567e-61 + art_sys_33: -2.11240810e-55 + art_sys_34: -2.12980908e-48 + art_sys_35: -1.49304137e-49 + art_sys_36: 4.53731186e-24 + art_sys_37: -2.89285522e-22 + art_sys_38: -1.05725815e-21 + art_sys_39: -3.04681657e-21 + art_sys_40: -7.24121425e-19 + art_sys_41: 3.14358216e-18 + art_sys_42: 1.12030282e-17 + art_sys_43: 2.25194584e-17 + art_sys_44: -1.04198711e-15 + art_sys_45: 9.90029664e-16 + art_sys_46: 1.58573504e-14 + art_sys_47: 3.09081742e-31 + art_sys_48: 1.89298105e-30 + art_sys_49: 5.21586742e-31 art_sys_50: 8.21882918e-14 - art_sys_51: -8.12229309e-13 - art_sys_52: -6.04175666e-29 - art_sys_53: -2.40198138e-29 - art_sys_54: -3.48081100e-29 - art_sys_55: -2.55786358e-29 - art_sys_56: -1.83342840e-30 - art_sys_57: -5.73461667e-15 - art_sys_58: -3.30040513e-15 - art_sys_59: 1.48489772e-14 - art_sys_60: 2.10866669e-12 - art_sys_61: -6.41618661e-14 - art_sys_62: -2.86257682e-15 - art_sys_63: -1.07669859e-14 - art_sys_64: 4.35322613e-14 - art_sys_65: -1.14295905e-13 - art_sys_66: -1.67922879e-11 - art_sys_67: 2.03407911e-14 - art_sys_68: -3.06338639e-14 - art_sys_69: 7.04432469e-11 - art_sys_70: -3.82613919e-24 - art_sys_71: -1.37662886e-22 - art_sys_72: -1.25374676e-22 - art_sys_73: 1.08278767e-10 - art_sys_74: 9.57055126e-20 - art_sys_75: -4.66789754e-14 - art_sys_76: 6.58500573e-15 - art_sys_77: -8.17246622e-15 - art_sys_78: -1.41290077e-14 - art_sys_79: -2.27245144e-14 - art_sys_80: 3.71969013e-20 - art_sys_81: 9.25229483e-16 - art_sys_82: 4.23762050e-16 - art_sys_83: 4.37018489e-16 - art_sys_84: 2.37388000e-14 - art_sys_85: 6.44737746e-17 - art_sys_86: 1.74469219e-16 - art_sys_87: -2.56961336e-14 - art_sys_88: 1.42608610e-14 - art_sys_89: 3.38907485e-12 - art_sys_90: -1.06606702e-19 - art_sys_91: 6.44528841e-20 - art_sys_92: 6.11108039e-09 - art_sys_93: 2.58041679e-20 - art_sys_94: -1.68015359e-08 - art_sys_95: 4.25820267e-18 - art_sys_96: -2.04555228e-12 - art_sys_97: 8.08791920e-08 - art_sys_98: -3.58768035e-16 - art_sys_99: 1.34264587e-17 - art_sys_100: -2.09715683e-07 - art_sys_101: -7.14718815e-15 - art_sys_102: 3.79970682e-11 - art_sys_103: 3.88617426e-07 - art_sys_104: 2.99834681e-15 - art_sys_105: -2.27561011e-10 - art_sys_106: 1.76693869e-15 - art_sys_107: -5.18717805e-16 - art_sys_108: -1.69312485e-06 - art_sys_109: 1.20438572e-13 - art_sys_110: 7.44881601e-12 - art_sys_111: -3.29169576e-13 - art_sys_112: 1.00565891e-07 - art_sys_113: 1.56160135e-11 - art_sys_114: 2.18726273e-13 - art_sys_115: -7.91563684e-06 - art_sys_116: 6.30227906e-12 - art_sys_117: 1.33488142e-11 - art_sys_118: 3.68840913e-13 - art_sys_119: 6.24878518e-06 - art_sys_120: 1.12799060e-13 - art_sys_121: 9.38890166e-12 - art_sys_122: -4.18482922e-13 - art_sys_123: 2.07786399e-05 - art_sys_124: 2.05965240e-13 - art_sys_125: -1.32232484e-12 - art_sys_126: -1.60707183e-10 - art_sys_127: 3.60460012e-12 - art_sys_128: -3.26947929e-05 - art_sys_129: -3.29521861e-06 - art_sys_130: -5.71383790e-06 - art_sys_131: -6.39583818e-06 - art_sys_132: -8.72091735e-12 - art_sys_133: -1.38201851e-09 - art_sys_134: 3.22537134e-06 - art_sys_135: -2.23924138e-10 - art_sys_136: 1.58044783e-06 - art_sys_137: 7.55086214e-10 - art_sys_138: -2.66037754e-07 - art_sys_139: 7.21537186e-09 - art_sys_140: -5.47585672e-18 - art_sys_141: -5.32826657e-08 - art_sys_142: 0.0 - art_sys_143: 3.68392632e-09 - art_sys_144: 2.15849286e-08 - art_sys_145: 3.95112602e-08 - art_sys_146: -6.26721356e-13 - art_sys_147: 1.97477192e-11 - art_sys_148: 1.55777294e-09 - art_sys_149: 3.12243619e-10 - art_sys_150: -9.69109476e-12 - art_sys_151: -1.74231336e-11 - art_sys_152: -1.82536913e-11 - art_sys_153: -1.44808546e-12 - art_sys_154: -8.75681666e-13 - art_sys_155: 1.08702556e-11 - art_sys_156: 1.45852634e-10 - art_sys_157: 9.06438869e-11 + art_sys_51: 8.12229309e-13 + art_sys_52: 1.51767016e-29 + art_sys_53: -3.37992230e-29 + art_sys_54: -2.01533450e-29 + art_sys_55: 1.39776682e-29 + art_sys_56: 6.74287333e-30 + art_sys_57: -2.10866669e-12 + art_sys_58: 1.67922879e-11 + art_sys_59: 1.58611159e-28 + art_sys_60: 1.83265302e-27 + art_sys_61: 7.04432475e-11 + art_sys_62: 1.00982330e-28 + art_sys_63: -1.47777158e-26 + art_sys_64: -6.81473414e-14 + art_sys_65: -9.72559108e-15 + art_sys_66: -8.39958251e-15 + art_sys_67: -8.10004465e-14 + art_sys_68: 6.61567069e-14 + art_sys_69: -5.12070859e-14 + art_sys_70: -1.00591363e-13 + art_sys_71: -1.49616967e-13 + art_sys_72: 2.22116401e-14 + art_sys_73: 2.72001618e-14 + art_sys_74: 1.08278766e-10 + art_sys_75: -3.37201569e-14 + art_sys_76: 2.11596590e-14 + art_sys_77: -6.16766125e-15 + art_sys_78: -3.70561228e-15 + art_sys_79: -1.46732505e-14 + art_sys_80: -4.65447461e-15 + art_sys_81: 1.45872284e-14 + art_sys_82: -1.50249706e-21 + art_sys_83: 1.23168101e-15 + art_sys_84: -6.40712981e-17 + art_sys_85: -4.52374426e-16 + art_sys_86: -1.91091288e-16 + art_sys_87: 2.17299801e-14 + art_sys_88: 1.53537269e-15 + art_sys_89: -4.05472955e-17 + art_sys_90: -1.38440939e-15 + art_sys_91: 8.59951718e-23 + art_sys_92: 1.91493972e-18 + art_sys_93: -1.38013579e-17 + art_sys_94: -3.66001954e-12 + art_sys_95: 6.11110960e-09 + art_sys_96: 1.28426208e-17 + art_sys_97: -6.63783562e-18 + art_sys_98: 1.68015232e-08 + art_sys_99: 1.44548577e-15 + art_sys_100: -8.08794553e-08 + art_sys_101: -8.36874556e-14 + art_sys_102: -2.09716751e-07 + art_sys_103: -5.85610893e-14 + art_sys_104: 4.42540951e-15 + art_sys_105: -4.41957080e-11 + art_sys_106: -2.72279796e-12 + art_sys_107: 3.88614809e-07 + art_sys_108: -7.03233454e-11 + art_sys_109: -2.94070530e-10 + art_sys_110: 1.69314353e-06 + art_sys_111: -4.75310775e-16 + art_sys_112: -3.45681463e-11 + art_sys_113: -9.10757353e-14 + art_sys_114: -4.03072492e-11 + art_sys_115: -4.77681773e-15 + art_sys_116: 9.98774069e-08 + art_sys_117: 1.06866495e-10 + art_sys_118: -3.06354118e-12 + art_sys_119: 7.91546980e-06 + art_sys_120: -4.55517280e-12 + art_sys_121: 3.83256358e-11 + art_sys_122: 4.13115613e-12 + art_sys_123: -6.24830932e-06 + art_sys_124: -2.24883442e-13 + art_sys_125: 1.84751473e-10 + art_sys_126: -4.34670241e-11 + art_sys_127: 2.07093155e-05 + art_sys_128: -2.49257087e-12 + art_sys_129: 5.49640064e-11 + art_sys_130: 3.26969556e-05 + art_sys_131: -5.94587985e-10 + art_sys_132: 2.30701696e-11 + art_sys_133: -3.26133701e-06 + art_sys_134: 2.14087496e-10 + art_sys_135: -1.57081204e-11 + art_sys_136: -1.70246340e-10 + art_sys_137: -5.69132745e-06 + art_sys_138: -6.05656528e-11 + art_sys_139: -6.38619608e-06 + art_sys_140: 1.89311865e-11 + art_sys_141: -4.30410369e-08 + art_sys_142: 1.55420734e-10 + art_sys_143: -3.24284885e-06 + art_sys_144: 1.21148399e-11 + art_sys_145: 1.44299729e-10 + art_sys_146: -1.62923461e-06 + art_sys_147: 3.56082197e-11 + art_sys_148: 4.77184868e-13 + art_sys_149: 1.88694290e-09 + art_sys_150: -3.18475701e-07 + art_sys_151: -5.01535790e-09 + art_sys_152: -3.53608530e-11 + art_sys_153: 4.39688507e-08 + art_sys_154: -5.74670961e-13 + art_sys_155: 7.34304394e-13 + art_sys_156: 0.0 + art_sys_157: -2.00418274e-10 art_sys_158: -0.0 - art_sys_159: -1.09371733e-09 - art_sys_160: -1.09371733e-09 - art_sys_161: 5.04044129e-12 - art_sys_162: -1.55833497e-24 - art_sys_163: -0.0 - art_sys_164: -7.60363068e-25 - art_sys_165: 1.88114320e-18 - art_sys_166: -1.15002096e-19 - art_sys_167: -1.28470400e-19 - art_sys_168: 1.61053866e-20 - art_sys_169: 8.49016486e-21 - art_sys_170: -2.57903702e-21 - art_sys_171: 4.66283436e-20 - art_sys_172: -4.30374246e-20 - art_sys_173: 1.01008884e-20 - art_sys_174: 4.58307175e-23 - art_sys_175: -2.11429007e-21 - art_sys_176: 3.83813739e-21 - art_sys_177: -6.61043205e-22 - art_sys_178: -7.53666511e-24 - art_sys_179: -1.24533011e-22 - art_sys_180: 8.70656493e-23 - art_sys_181: -3.31148542e-23 - art_sys_182: 5.26070472e-24 - art_sys_183: 1.78539096e-25 - art_sys_184: 4.51987667e-26 - art_sys_185: 1.04039618e-24 + art_sys_159: -1.51285230e-10 + art_sys_160: -2.20548669e-11 + art_sys_161: -5.41567900e-11 + art_sys_162: -5.41567900e-11 + art_sys_163: 2.15840424e-11 + art_sys_164: 2.15840424e-11 + art_sys_165: -1.22381318e-25 + art_sys_166: 3.86290679e-26 + art_sys_167: 0.0 + art_sys_168: 9.01410342e-19 + art_sys_169: 5.97321658e-19 + art_sys_170: -3.12996688e-20 + art_sys_171: -3.09815583e-20 + art_sys_172: 1.80635376e-20 + art_sys_173: -2.80160123e-21 + art_sys_174: -2.44481343e-21 + art_sys_175: -2.60258047e-22 + art_sys_176: 1.92951924e-22 + art_sys_177: -1.67933814e-21 + art_sys_178: -2.59810639e-23 + art_sys_179: 1.91310825e-24 + art_sys_180: -3.57285776e-24 + art_sys_181: 4.75314796e-23 + art_sys_182: 9.30118513e-23 + art_sys_183: 1.01978519e-24 + art_sys_184: -1.81140706e-25 + art_sys_185: -4.96672773e-27 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -25871,167 +25871,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: -2.31062055e-60 - art_sys_26: 5.89496188e-54 - art_sys_27: 3.06149010e-46 - art_sys_28: -7.48653272e-46 - art_sys_29: -8.10606026e-26 - art_sys_30: 9.28682551e-24 - art_sys_31: 1.46799097e-23 - art_sys_32: 3.84986226e-22 - art_sys_33: -5.77868369e-20 - art_sys_34: -2.59627848e-19 - art_sys_35: -9.18605772e-19 - art_sys_36: 3.93330319e-36 - art_sys_37: -1.20732057e-35 - art_sys_38: 1.92392281e-18 - art_sys_39: -1.86216355e-35 - art_sys_40: 6.36636178e-36 - art_sys_41: -1.74030761e-35 - art_sys_42: 1.07511785e-16 - art_sys_43: 9.34266079e-34 - art_sys_44: -1.84313112e-16 - art_sys_45: 1.36308320e-32 - art_sys_46: 5.03038403e-32 - art_sys_47: -2.64520084e-15 - art_sys_48: -7.63030210e-34 - art_sys_49: 1.19607260e-32 + art_sys_25: 3.63240753e-100 + art_sys_26: 1.90282112e-94 + art_sys_27: -1.19512696e-87 + art_sys_28: 7.15032462e-87 + art_sys_29: 2.74634402e-76 + art_sys_30: 2.23217906e-73 + art_sys_31: 1.04413520e-70 + art_sys_32: -1.24727576e-62 + art_sys_33: -3.73783253e-57 + art_sys_34: -3.76862296e-50 + art_sys_35: -2.64188469e-51 + art_sys_36: 8.10606026e-26 + art_sys_37: -9.28682551e-24 + art_sys_38: -1.46799097e-23 + art_sys_39: -3.84986226e-22 + art_sys_40: -5.77868369e-20 + art_sys_41: 2.59627848e-19 + art_sys_42: 9.18605772e-19 + art_sys_43: 1.92392281e-18 + art_sys_44: -1.07511785e-16 + art_sys_45: 1.84313112e-16 + art_sys_46: 2.64520084e-15 + art_sys_47: 5.03582620e-32 + art_sys_48: 1.70233082e-31 + art_sys_49: 9.26011265e-32 art_sys_50: 9.20408277e-15 - art_sys_51: -1.45308429e-13 - art_sys_52: -1.03948106e-29 - art_sys_53: -4.31487877e-30 - art_sys_54: -6.26099668e-30 - art_sys_55: -4.58771684e-30 - art_sys_56: -1.06501982e-30 - art_sys_57: 7.30292156e-15 - art_sys_58: -3.53600918e-15 - art_sys_59: 1.53896807e-14 - art_sys_60: 5.63572239e-13 - art_sys_61: 3.71092150e-14 - art_sys_62: 8.99110253e-15 - art_sys_63: 5.38343540e-16 - art_sys_64: -9.67066733e-15 - art_sys_65: 1.38358302e-14 - art_sys_66: -5.38984462e-13 - art_sys_67: -3.66963206e-15 - art_sys_68: 2.98363341e-15 - art_sys_69: 1.23383223e-11 - art_sys_70: -7.64831532e-26 - art_sys_71: -4.65726646e-24 - art_sys_72: -4.78237434e-24 - art_sys_73: 3.17596416e-11 - art_sys_74: 1.67611148e-20 - art_sys_75: 1.73857570e-15 - art_sys_76: 1.04304084e-14 - art_sys_77: -1.39846551e-15 - art_sys_78: 6.71076532e-15 - art_sys_79: 1.83197691e-16 - art_sys_80: 6.54928865e-21 - art_sys_81: 3.83392150e-15 - art_sys_82: 3.06385624e-16 - art_sys_83: 6.56484592e-16 - art_sys_84: 3.25296489e-16 - art_sys_85: 7.05033223e-16 - art_sys_86: 9.49184915e-17 - art_sys_87: 1.64992226e-15 - art_sys_88: -1.69039882e-13 - art_sys_89: 3.22041854e-14 - art_sys_90: -1.86717412e-20 - art_sys_91: 1.33195253e-20 - art_sys_92: -1.13807109e-09 - art_sys_93: 1.00634288e-21 - art_sys_94: -6.43563342e-09 - art_sys_95: -2.17344465e-18 - art_sys_96: -1.41526292e-12 - art_sys_97: -6.87477455e-09 - art_sys_98: -1.37374301e-16 - art_sys_99: 9.51050816e-18 - art_sys_100: -6.94472506e-08 - art_sys_101: 6.21574997e-16 - art_sys_102: 6.75351640e-12 - art_sys_103: -1.41777980e-07 - art_sys_104: -2.48944090e-16 - art_sys_105: -1.28684706e-10 - art_sys_106: 2.59062107e-17 - art_sys_107: -3.31774492e-16 - art_sys_108: -2.66268069e-07 - art_sys_109: 4.09516716e-14 - art_sys_110: -1.47287161e-10 - art_sys_111: 2.00988389e-14 - art_sys_112: -1.21023856e-06 - art_sys_113: -1.08393878e-11 - art_sys_114: -3.15652332e-14 - art_sys_115: -7.22940534e-08 - art_sys_116: 9.35212580e-13 - art_sys_117: -5.25620588e-11 - art_sys_118: -1.36905816e-14 - art_sys_119: 5.56821599e-06 - art_sys_120: -7.19883430e-14 - art_sys_121: -4.16048772e-12 - art_sys_122: 2.54181403e-13 - art_sys_123: -4.46871729e-06 - art_sys_124: 1.23778688e-13 - art_sys_125: 5.04483838e-13 - art_sys_126: -4.75976553e-12 - art_sys_127: -1.62865751e-12 - art_sys_128: -1.45727701e-05 - art_sys_129: -2.42270846e-05 - art_sys_130: 2.72958229e-06 - art_sys_131: 4.63664895e-06 - art_sys_132: 1.43507457e-11 - art_sys_133: -1.71226857e-09 - art_sys_134: -4.29130398e-06 - art_sys_135: 1.62601904e-10 - art_sys_136: -2.43989823e-06 - art_sys_137: -9.05084896e-10 - art_sys_138: 4.83741749e-07 - art_sys_139: -7.88883340e-09 - art_sys_140: 3.31052186e-18 - art_sys_141: 1.00408648e-07 - art_sys_142: -0.0 - art_sys_143: -6.58071983e-09 - art_sys_144: -3.85612647e-08 - art_sys_145: -7.39392223e-08 - art_sys_146: 1.94792914e-11 - art_sys_147: 7.81296335e-11 - art_sys_148: -2.73631826e-09 - art_sys_149: -5.26366134e-10 - art_sys_150: 1.57951190e-11 - art_sys_151: 2.94701863e-11 - art_sys_152: 3.13338539e-11 - art_sys_153: 2.54951768e-12 - art_sys_154: -2.66197290e-12 - art_sys_155: -1.36440079e-11 - art_sys_156: -2.78558251e-10 - art_sys_157: -1.71590732e-10 + art_sys_51: 1.45308429e-13 + art_sys_52: 2.79885224e-30 + art_sys_53: -6.01223548e-30 + art_sys_54: -3.39706514e-30 + art_sys_55: 2.63941996e-30 + art_sys_56: 7.91257092e-31 + art_sys_57: -5.63572239e-13 + art_sys_58: 5.38984462e-13 + art_sys_59: -3.03471457e-30 + art_sys_60: 7.54641592e-29 + art_sys_61: 1.23383224e-11 + art_sys_62: 6.07737556e-29 + art_sys_63: -4.47510318e-27 + art_sys_64: -4.01728167e-15 + art_sys_65: 1.71923557e-15 + art_sys_66: -3.09914292e-14 + art_sys_67: 3.47779007e-15 + art_sys_68: -8.53444252e-14 + art_sys_69: -2.57469141e-15 + art_sys_70: 1.18100174e-14 + art_sys_71: -5.00088579e-14 + art_sys_72: 7.48177026e-15 + art_sys_73: 1.36146140e-14 + art_sys_74: 3.17596416e-11 + art_sys_75: -2.56033586e-14 + art_sys_76: 3.35391091e-14 + art_sys_77: 5.02640109e-15 + art_sys_78: 1.00066737e-14 + art_sys_79: -1.20192546e-14 + art_sys_80: -4.16533741e-15 + art_sys_81: 1.33567862e-14 + art_sys_82: -4.40953517e-22 + art_sys_83: -6.93223347e-16 + art_sys_84: 6.52521402e-16 + art_sys_85: 3.43248561e-16 + art_sys_86: -5.84000602e-17 + art_sys_87: 9.74615208e-15 + art_sys_88: 9.92530359e-15 + art_sys_89: 8.23748957e-18 + art_sys_90: 4.03745415e-15 + art_sys_91: 2.49904258e-23 + art_sys_92: -3.38352196e-18 + art_sys_93: 9.97730964e-18 + art_sys_94: -3.00889137e-14 + art_sys_95: -1.13805940e-09 + art_sys_96: -2.39170793e-18 + art_sys_97: 1.23623992e-18 + art_sys_98: 6.43563548e-09 + art_sys_99: 4.49580250e-16 + art_sys_100: 6.87479895e-09 + art_sys_101: 7.23330917e-15 + art_sys_102: -6.94475793e-08 + art_sys_103: 4.77808936e-15 + art_sys_104: 3.11601064e-16 + art_sys_105: -1.89088844e-11 + art_sys_106: -9.01562011e-13 + art_sys_107: -1.41778839e-07 + art_sys_108: -3.02718204e-11 + art_sys_109: -1.34539783e-10 + art_sys_110: 2.66271011e-07 + art_sys_111: -1.85452460e-14 + art_sys_112: -5.44355014e-12 + art_sys_113: -3.03156842e-14 + art_sys_114: 2.03925937e-10 + art_sys_115: -8.99715896e-15 + art_sys_116: -1.21022224e-06 + art_sys_117: 1.27101070e-09 + art_sys_118: -4.68861972e-13 + art_sys_119: 7.22897486e-08 + art_sys_120: 4.50441435e-14 + art_sys_121: -3.25702257e-10 + art_sys_122: 6.77343890e-13 + art_sys_123: -5.56791736e-06 + art_sys_124: -1.78027950e-13 + art_sys_125: -1.15360772e-10 + art_sys_126: 4.47080410e-13 + art_sys_127: -4.48393297e-06 + art_sys_128: 9.83398444e-14 + art_sys_129: -7.98248035e-11 + art_sys_130: 1.45614524e-05 + art_sys_131: 9.77601430e-10 + art_sys_132: 2.35591520e-12 + art_sys_133: -2.42292930e-05 + art_sys_134: -1.75140807e-11 + art_sys_135: -7.17459059e-12 + art_sys_136: 3.44450458e-10 + art_sys_137: 2.68648093e-06 + art_sys_138: -5.03730452e-11 + art_sys_139: 4.62622792e-06 + art_sys_140: -3.97725680e-11 + art_sys_141: 5.67715864e-08 + art_sys_142: -1.41204467e-10 + art_sys_143: 4.32265307e-06 + art_sys_144: -4.74997450e-11 + art_sys_145: -1.35403532e-10 + art_sys_146: 2.51919798e-06 + art_sys_147: -5.38310604e-11 + art_sys_148: -2.36120503e-13 + art_sys_149: -3.81989111e-09 + art_sys_150: 5.95873040e-07 + art_sys_151: 6.41227790e-09 + art_sys_152: 6.99501320e-11 + art_sys_153: -8.76063661e-08 + art_sys_154: -9.03649129e-14 + art_sys_155: 5.64151800e-12 + art_sys_156: -0.0 + art_sys_157: 4.47754576e-10 art_sys_158: 0.0 - art_sys_159: 2.43883663e-09 - art_sys_160: 2.43883663e-09 - art_sys_161: -6.29865990e-11 - art_sys_162: 2.27311571e-23 - art_sys_163: 0.0 - art_sys_164: 1.34401929e-23 - art_sys_165: -3.62763690e-18 - art_sys_166: 4.37939588e-20 - art_sys_167: 2.39267711e-19 - art_sys_168: -3.09930107e-20 - art_sys_169: -1.55158385e-20 - art_sys_170: 1.08419456e-20 - art_sys_171: -5.39332510e-20 - art_sys_172: 3.40237682e-20 - art_sys_173: -1.41265277e-20 - art_sys_174: -8.57102618e-23 - art_sys_175: 3.50240201e-21 - art_sys_176: -6.01962490e-21 - art_sys_177: 1.02764691e-21 - art_sys_178: -5.28677810e-23 - art_sys_179: 1.23216876e-21 - art_sys_180: -6.76009331e-23 - art_sys_181: 4.73138920e-23 - art_sys_182: 1.12471210e-24 - art_sys_183: -1.70765609e-25 - art_sys_184: -5.44699105e-26 - art_sys_185: -1.03103628e-24 + art_sys_159: -3.19619990e-10 + art_sys_160: 4.29034472e-11 + art_sys_161: -4.77605059e-11 + art_sys_162: -4.77605059e-11 + art_sys_163: 3.36193036e-11 + art_sys_164: 3.36193036e-11 + art_sys_165: -2.36097435e-25 + art_sys_166: 7.24443015e-26 + art_sys_167: 0.0 + art_sys_168: -4.85004066e-19 + art_sys_169: -9.16488413e-19 + art_sys_170: 7.25297063e-20 + art_sys_171: 1.35631538e-19 + art_sys_172: -2.43297973e-20 + art_sys_173: 5.46198279e-21 + art_sys_174: 4.87493661e-21 + art_sys_175: 3.44412795e-22 + art_sys_176: -2.71463686e-22 + art_sys_177: 1.92745079e-22 + art_sys_178: 9.08154164e-23 + art_sys_179: -6.59093275e-24 + art_sys_180: -8.51780144e-24 + art_sys_181: 2.08069832e-22 + art_sys_182: -1.73798973e-22 + art_sys_183: -1.66439900e-24 + art_sys_184: 1.51005961e-25 + art_sys_185: 5.96869256e-27 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -26162,167 +26162,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: 9.85828374e-62 - art_sys_26: -2.51509089e-55 - art_sys_27: -1.30618756e-47 - art_sys_28: 3.19413604e-47 - art_sys_29: 3.45845938e-27 - art_sys_30: -5.34551977e-25 - art_sys_31: -5.64548878e-24 - art_sys_32: 4.29973547e-23 - art_sys_33: -4.87860419e-21 - art_sys_34: -1.62458361e-20 - art_sys_35: -6.90829894e-20 - art_sys_36: 2.88560166e-37 - art_sys_37: -9.40556979e-37 - art_sys_38: 1.60488798e-19 - art_sys_39: -1.55371324e-36 - art_sys_40: 5.41512553e-37 - art_sys_41: -1.58541343e-36 - art_sys_42: 1.67274544e-17 - art_sys_43: 1.42952125e-34 - art_sys_44: -5.91693550e-18 - art_sys_45: 1.64901792e-33 - art_sys_46: 5.51128863e-33 - art_sys_47: -3.08128012e-16 - art_sys_48: 8.20175317e-34 - art_sys_49: 1.10307191e-33 + art_sys_25: -1.53830016e-101 + art_sys_26: -8.05831951e-96 + art_sys_27: 5.06128236e-89 + art_sys_28: -3.02811443e-88 + art_sys_29: -1.16305824e-77 + art_sys_30: -9.45312833e-75 + art_sys_31: -4.42184243e-72 + art_sys_32: 5.28212905e-64 + art_sys_33: 1.58294696e-58 + art_sys_34: 1.59598650e-51 + art_sys_35: 1.11882042e-52 + art_sys_36: -3.45845938e-27 + art_sys_37: 5.34551977e-25 + art_sys_38: 5.64548878e-24 + art_sys_39: -4.29973547e-23 + art_sys_40: -4.87860419e-21 + art_sys_41: 1.62458361e-20 + art_sys_42: 6.90829894e-20 + art_sys_43: 1.60488798e-19 + art_sys_44: -1.67274544e-17 + art_sys_45: 5.91693550e-18 + art_sys_46: 3.08128012e-16 + art_sys_47: 6.01530741e-33 + art_sys_48: -1.99239410e-33 + art_sys_49: 9.59554499e-33 art_sys_50: -2.65519013e-17 - art_sys_51: -1.43191210e-14 - art_sys_52: -9.54413667e-31 - art_sys_53: -4.28592908e-31 - art_sys_54: -6.33292860e-31 - art_sys_55: -4.55097134e-31 - art_sys_56: -1.63837983e-31 - art_sys_57: 3.40751393e-14 - art_sys_58: -1.94056279e-14 - art_sys_59: -1.04242935e-14 - art_sys_60: 6.72824031e-14 - art_sys_61: 8.35276898e-14 - art_sys_62: -3.51005700e-15 - art_sys_63: -3.45722253e-14 - art_sys_64: 5.12225242e-14 - art_sys_65: -9.04961306e-14 - art_sys_66: 3.99351511e-13 - art_sys_67: 1.15475074e-14 - art_sys_68: -1.52683961e-14 - art_sys_69: 1.70142487e-13 - art_sys_70: 1.00943575e-25 - art_sys_71: 3.23010761e-24 - art_sys_72: 2.84284346e-24 - art_sys_73: 1.75953573e-12 - art_sys_74: 2.30797484e-22 - art_sys_75: -2.19326721e-14 - art_sys_76: 1.62745775e-14 - art_sys_77: -2.16183582e-14 - art_sys_78: -5.12362454e-16 - art_sys_79: -9.80233402e-15 - art_sys_80: 9.38402153e-23 - art_sys_81: 2.34769112e-15 - art_sys_82: 1.51180384e-16 - art_sys_83: 1.54037579e-16 - art_sys_84: 1.04590384e-14 - art_sys_85: -6.75130513e-17 - art_sys_86: -2.67958247e-17 - art_sys_87: -7.15300564e-15 - art_sys_88: -2.03625374e-14 - art_sys_89: -3.70624047e-13 - art_sys_90: -2.57036657e-22 - art_sys_91: -3.41658049e-23 - art_sys_92: -4.67294061e-10 - art_sys_93: -7.03515383e-22 - art_sys_94: -5.83309056e-11 - art_sys_95: -5.19380669e-19 - art_sys_96: 9.24009600e-14 - art_sys_97: -5.49902093e-09 - art_sys_98: -1.23760300e-18 - art_sys_99: 6.59992866e-19 - art_sys_100: 3.12506566e-09 - art_sys_101: 4.87980597e-16 - art_sys_102: -4.25044549e-12 - art_sys_103: -4.90752995e-08 - art_sys_104: -2.02979066e-16 - art_sys_105: -1.84534970e-11 - art_sys_106: -9.26068074e-17 - art_sys_107: -2.21231683e-17 - art_sys_108: 1.03633487e-07 - art_sys_109: -2.24979351e-15 - art_sys_110: -1.31209410e-10 - art_sys_111: 2.14000222e-14 - art_sys_112: -1.75335560e-07 - art_sys_113: -8.39057195e-12 - art_sys_114: -1.64371869e-14 - art_sys_115: 8.76321084e-07 - art_sys_116: -3.93118644e-13 - art_sys_117: 5.47429930e-11 - art_sys_118: -2.32094839e-14 - art_sys_119: -6.46748030e-08 - art_sys_120: -1.90675973e-14 - art_sys_121: -1.61499832e-12 - art_sys_122: 6.60000262e-14 - art_sys_123: -4.03390632e-06 - art_sys_124: 4.09872677e-15 - art_sys_125: 2.30640865e-13 - art_sys_126: 1.70997772e-11 - art_sys_127: -1.22648806e-12 - art_sys_128: 3.43970866e-06 - art_sys_129: -1.01543868e-05 - art_sys_130: 1.77448152e-05 - art_sys_131: -2.64919500e-06 - art_sys_132: -4.87825168e-12 - art_sys_133: -1.53192556e-10 - art_sys_134: 3.20670573e-06 - art_sys_135: -1.86602001e-10 - art_sys_136: 3.37619462e-06 - art_sys_137: 1.36730386e-09 - art_sys_138: -8.47407497e-07 - art_sys_139: 6.03030786e-09 - art_sys_140: -3.78311444e-18 - art_sys_141: -1.87664024e-07 - art_sys_142: 0.0 - art_sys_143: 1.15346977e-08 - art_sys_144: 6.77856940e-08 - art_sys_145: 1.38602474e-07 - art_sys_146: 9.26706971e-12 - art_sys_147: -2.21477082e-10 - art_sys_148: 4.41575579e-09 - art_sys_149: 8.44177599e-10 - art_sys_150: -3.99482498e-11 - art_sys_151: -4.95101129e-11 - art_sys_152: -3.70569781e-11 - art_sys_153: -4.06307052e-12 - art_sys_154: 1.04504765e-11 - art_sys_155: 1.61432910e-11 - art_sys_156: 5.23711392e-10 - art_sys_157: 3.23541562e-10 + art_sys_51: 1.43191210e-14 + art_sys_52: 2.89518782e-31 + art_sys_53: -5.89253170e-31 + art_sys_54: -3.22628193e-31 + art_sys_55: 2.83516508e-31 + art_sys_56: 1.84398326e-31 + art_sys_57: -6.72824031e-14 + art_sys_58: -3.99351511e-13 + art_sys_59: -5.64546316e-30 + art_sys_60: -2.91683455e-29 + art_sys_61: 1.70142488e-13 + art_sys_62: 8.11361090e-30 + art_sys_63: -2.65741683e-28 + art_sys_64: 2.52380987e-14 + art_sys_65: 7.66729522e-15 + art_sys_66: 1.97243911e-14 + art_sys_67: 2.26624260e-14 + art_sys_68: -7.93998098e-15 + art_sys_69: 2.94868681e-14 + art_sys_70: 6.06623357e-14 + art_sys_71: 1.21186925e-13 + art_sys_72: -2.15877560e-14 + art_sys_73: -2.94686481e-14 + art_sys_74: 1.75953573e-12 + art_sys_75: 4.66359705e-14 + art_sys_76: -2.08340518e-14 + art_sys_77: 9.64109417e-16 + art_sys_78: 1.48166294e-14 + art_sys_79: 2.26791226e-14 + art_sys_80: -4.11770321e-15 + art_sys_81: -2.40367673e-14 + art_sys_82: -2.44728043e-23 + art_sys_83: 2.22042571e-15 + art_sys_84: -1.88086591e-16 + art_sys_85: 6.28712580e-16 + art_sys_86: 1.24209886e-16 + art_sys_87: -2.00565324e-14 + art_sys_88: -7.48857501e-15 + art_sys_89: -2.23506484e-17 + art_sys_90: -8.20002666e-15 + art_sys_91: 1.34125829e-24 + art_sys_92: -1.04888453e-17 + art_sys_93: -2.30114859e-19 + art_sys_94: 3.99253418e-13 + art_sys_95: -4.67293889e-10 + art_sys_96: -9.82033205e-19 + art_sys_97: 5.07588211e-19 + art_sys_98: 5.83319187e-11 + art_sys_99: -9.59941511e-18 + art_sys_100: 5.49903906e-09 + art_sys_101: 5.70825303e-15 + art_sys_102: 3.12508562e-09 + art_sys_103: 3.95111951e-15 + art_sys_104: -1.99254938e-16 + art_sys_105: 5.76759751e-12 + art_sys_106: 4.05834601e-14 + art_sys_107: -4.90751953e-08 + art_sys_108: 9.18106651e-12 + art_sys_109: 1.54693787e-11 + art_sys_110: -1.03634630e-07 + art_sys_111: -3.04337666e-15 + art_sys_112: 2.11498562e-12 + art_sys_113: 1.33218189e-15 + art_sys_114: 1.89899207e-10 + art_sys_115: -1.71508527e-15 + art_sys_116: -1.75256283e-07 + art_sys_117: 6.42167001e-10 + art_sys_118: 1.90691382e-13 + art_sys_119: -8.76302968e-07 + art_sys_120: 3.83112945e-13 + art_sys_121: -5.39692073e-10 + art_sys_122: -2.44244016e-13 + art_sys_123: 6.46433797e-08 + art_sys_124: -7.11164742e-15 + art_sys_125: -1.21680370e-10 + art_sys_126: 4.92764227e-12 + art_sys_127: -4.03403825e-06 + art_sys_128: 2.30787656e-13 + art_sys_129: 1.12484451e-10 + art_sys_130: -3.51666811e-06 + art_sys_131: -1.46241595e-09 + art_sys_132: -1.80465845e-12 + art_sys_133: -1.01996604e-05 + art_sys_134: -3.66092611e-11 + art_sys_135: 1.18561524e-12 + art_sys_136: -6.12861548e-10 + art_sys_137: 1.77347322e-05 + art_sys_138: 1.82229338e-12 + art_sys_139: -2.62689637e-06 + art_sys_140: 8.63592771e-11 + art_sys_141: -5.36828492e-08 + art_sys_142: 1.39798996e-10 + art_sys_143: -3.25380434e-06 + art_sys_144: 6.94014973e-11 + art_sys_145: -2.04320885e-10 + art_sys_146: -3.51733730e-06 + art_sys_147: 7.20459631e-11 + art_sys_148: -7.63774377e-13 + art_sys_149: 7.30458410e-09 + art_sys_150: -1.06241796e-06 + art_sys_151: -1.69738360e-08 + art_sys_152: -1.33072298e-10 + art_sys_153: 1.64464071e-07 + art_sys_154: 3.51743204e-14 + art_sys_155: -1.74925249e-11 + art_sys_156: 0.0 + art_sys_157: -6.84145009e-10 art_sys_158: -0.0 - art_sys_159: -4.53684972e-09 - art_sys_160: -4.53684972e-09 - art_sys_161: 1.84980628e-10 - art_sys_162: -6.70631964e-23 - art_sys_163: -0.0 - art_sys_164: -3.99754512e-23 - art_sys_165: 6.56571628e-18 - art_sys_166: -7.76512500e-20 - art_sys_167: -3.53307830e-19 - art_sys_168: 5.02033004e-20 - art_sys_169: 2.72498834e-20 - art_sys_170: -1.39975133e-20 - art_sys_171: 3.54787872e-20 - art_sys_172: 5.78469522e-21 - art_sys_173: 1.66900795e-20 - art_sys_174: 1.59935308e-22 - art_sys_175: -5.37577359e-21 - art_sys_176: 9.11101339e-21 - art_sys_177: -1.51788349e-21 - art_sys_178: 1.53987925e-22 - art_sys_179: -2.80626924e-21 - art_sys_180: 2.12479786e-23 - art_sys_181: -6.77668129e-23 - art_sys_182: -9.95659345e-24 - art_sys_183: 1.40163905e-25 - art_sys_184: 2.72934978e-26 - art_sys_185: 4.38806153e-25 + art_sys_159: 2.54196907e-10 + art_sys_160: -1.37318752e-10 + art_sys_161: -4.42068524e-11 + art_sys_162: -4.42068524e-11 + art_sys_163: -7.05372998e-11 + art_sys_164: -7.05372998e-11 + art_sys_165: 7.34415154e-25 + art_sys_166: -2.41810097e-25 + art_sys_167: -0.0 + art_sys_168: 2.20111375e-18 + art_sys_169: 1.27470892e-18 + art_sys_170: -1.18374038e-19 + art_sys_171: -1.56463527e-19 + art_sys_172: 4.93101171e-20 + art_sys_173: -9.82233633e-21 + art_sys_174: -7.72720910e-21 + art_sys_175: -4.54990079e-22 + art_sys_176: 3.66528147e-22 + art_sys_177: 1.43958928e-21 + art_sys_178: -1.60660168e-22 + art_sys_179: 1.56092644e-23 + art_sys_180: 1.02564943e-23 + art_sys_181: -3.98226653e-22 + art_sys_182: 3.05352236e-22 + art_sys_183: 3.15352743e-24 + art_sys_184: -5.17921637e-26 + art_sys_185: -7.62246927e-27 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -26453,167 +26453,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: -7.80932988e-63 - art_sys_26: 1.99235231e-56 - art_sys_27: 1.03470845e-48 - art_sys_28: -2.53026416e-48 - art_sys_29: -2.73963393e-28 - art_sys_30: -1.26257371e-25 - art_sys_31: -9.40195404e-25 - art_sys_32: 3.82134416e-24 - art_sys_33: -3.87583470e-22 - art_sys_34: 1.34793103e-24 - art_sys_35: -2.97903274e-21 - art_sys_36: 1.09828492e-38 - art_sys_37: -4.01782032e-38 - art_sys_38: 7.73945229e-21 - art_sys_39: -7.56962939e-38 - art_sys_40: 2.70734861e-38 - art_sys_41: -1.00736801e-37 - art_sys_42: 2.22514264e-18 - art_sys_43: 1.97941420e-35 - art_sys_44: 4.16219887e-18 - art_sys_45: 6.88863420e-35 - art_sys_46: 9.19063603e-35 - art_sys_47: -1.07453675e-17 - art_sys_48: 1.00029499e-34 - art_sys_49: -2.78821249e-35 + art_sys_25: 1.36110741e-102 + art_sys_26: 7.13010233e-97 + art_sys_27: -4.47828589e-90 + art_sys_28: 2.67931337e-89 + art_sys_29: 1.02908842e-78 + art_sys_30: 8.36424564e-76 + art_sys_31: 3.91250115e-73 + art_sys_32: -4.67369346e-65 + art_sys_33: -1.40061115e-59 + art_sys_34: -1.41214869e-52 + art_sys_35: -9.89946203e-54 + art_sys_36: 2.73963393e-28 + art_sys_37: 1.26257371e-25 + art_sys_38: 9.40195404e-25 + art_sys_39: -3.82134416e-24 + art_sys_40: -3.87583470e-22 + art_sys_41: -1.34793103e-24 + art_sys_42: 2.97903274e-21 + art_sys_43: 7.73945229e-21 + art_sys_44: -2.22514264e-18 + art_sys_45: -4.16219887e-18 + art_sys_46: 1.07453675e-17 + art_sys_47: 2.59369297e-34 + art_sys_48: -6.16155462e-34 + art_sys_49: 3.31638471e-34 art_sys_50: -3.25602369e-17 - art_sys_51: -3.42054994e-16 - art_sys_52: -2.04597100e-32 - art_sys_53: -1.03403321e-32 - art_sys_54: -1.62217844e-32 - art_sys_55: -1.09898183e-32 - art_sys_56: -1.53975657e-33 - art_sys_57: 8.50334878e-16 - art_sys_58: 1.18055153e-14 - art_sys_59: -2.34530841e-14 - art_sys_60: 7.00077806e-16 - art_sys_61: 6.85341694e-14 - art_sys_62: 3.10808446e-14 - art_sys_63: 2.03999839e-14 - art_sys_64: -7.46670128e-14 - art_sys_65: 1.57952067e-13 - art_sys_66: 9.46961659e-14 - art_sys_67: -2.60497624e-14 - art_sys_68: 3.64826101e-14 - art_sys_69: -3.16461682e-13 - art_sys_70: 2.24242132e-26 - art_sys_71: 7.74355538e-25 - art_sys_72: 7.00935749e-25 - art_sys_73: -6.69926775e-13 - art_sys_74: -4.29967310e-22 - art_sys_75: 4.99217127e-14 - art_sys_76: -3.06352268e-14 - art_sys_77: -7.98566222e-15 - art_sys_78: 3.20507256e-15 - art_sys_79: 2.34984910e-14 - art_sys_80: -1.67590957e-22 - art_sys_81: 6.02276837e-16 - art_sys_82: -4.42339646e-16 - art_sys_83: -4.99864435e-16 - art_sys_84: -2.38794270e-14 - art_sys_85: 6.89444588e-16 - art_sys_86: -4.35502970e-16 - art_sys_87: 1.76329535e-14 - art_sys_88: 2.12488504e-15 - art_sys_89: -6.12784014e-14 - art_sys_90: 4.78952109e-22 - art_sys_91: -3.70742665e-22 - art_sys_92: -2.29696242e-11 - art_sys_93: -1.08455081e-22 - art_sys_94: 2.78347114e-10 - art_sys_95: 1.50827622e-20 - art_sys_96: 1.51368892e-13 - art_sys_97: -4.43486135e-10 - art_sys_98: 5.94243375e-18 - art_sys_99: -3.20687369e-19 - art_sys_100: 4.05732631e-09 - art_sys_101: 3.88580536e-17 - art_sys_102: -1.22267481e-12 - art_sys_103: 1.18067077e-09 - art_sys_104: -1.65688867e-17 - art_sys_105: -3.63788628e-12 - art_sys_106: -1.36047937e-17 - art_sys_107: 1.17442285e-17 - art_sys_108: 3.28395274e-08 - art_sys_109: -2.38975891e-15 - art_sys_110: -3.28386406e-11 - art_sys_111: 2.08063746e-15 - art_sys_112: 6.84112402e-08 - art_sys_113: -9.15640846e-13 - art_sys_114: -7.53979162e-16 - art_sys_115: 1.25814756e-07 - art_sys_116: -1.19887163e-13 - art_sys_117: 6.65817313e-11 - art_sys_118: -2.59961370e-15 - art_sys_119: -5.83123498e-07 - art_sys_120: 1.49738201e-15 - art_sys_121: 9.65782453e-14 - art_sys_122: -5.72822181e-15 - art_sys_123: 2.25821739e-10 - art_sys_124: -8.91227798e-15 - art_sys_125: 2.67422135e-15 - art_sys_126: 4.08959745e-12 - art_sys_127: -1.82957305e-12 - art_sys_128: 2.68149785e-06 - art_sys_129: 2.33878884e-06 - art_sys_130: 6.85861752e-06 - art_sys_131: -1.23897257e-05 - art_sys_132: 1.32865888e-11 - art_sys_133: -8.43324988e-09 - art_sys_134: -2.33542240e-06 - art_sys_135: 1.55198209e-10 - art_sys_136: -2.96158222e-06 - art_sys_137: -1.97499991e-09 - art_sys_138: 1.34313652e-06 - art_sys_139: 1.63561649e-08 - art_sys_140: 7.04481753e-18 - art_sys_141: 3.44061753e-07 - art_sys_142: -0.0 - art_sys_143: -1.89492464e-08 - art_sys_144: -1.11793525e-07 - art_sys_145: -2.46146355e-07 - art_sys_146: 2.36773668e-10 - art_sys_147: 2.81653072e-10 - art_sys_148: -6.01277263e-09 - art_sys_149: -1.13857787e-09 - art_sys_150: 8.63132626e-11 - art_sys_151: 6.59773043e-11 - art_sys_152: 5.01571122e-11 - art_sys_153: 4.51457964e-12 - art_sys_154: -2.51705351e-11 - art_sys_155: -1.30722990e-11 - art_sys_156: -9.74877203e-10 - art_sys_157: -5.58485156e-10 + art_sys_51: 3.42054994e-16 + art_sys_52: 7.38178475e-33 + art_sys_53: -1.40000410e-32 + art_sys_54: -7.09546693e-33 + art_sys_55: 7.56966527e-33 + art_sys_56: 5.57991498e-33 + art_sys_57: -7.00077806e-16 + art_sys_58: -9.46961659e-14 + art_sys_59: -1.08044646e-30 + art_sys_60: -1.29412119e-29 + art_sys_61: -3.16461685e-13 + art_sys_62: -1.21946965e-31 + art_sys_63: 9.03514760e-29 + art_sys_64: 7.29344019e-15 + art_sys_65: 1.04019299e-14 + art_sys_66: -7.77699182e-15 + art_sys_67: 8.90933341e-14 + art_sys_68: -2.91990921e-14 + art_sys_69: 1.87153257e-14 + art_sys_70: 2.19102776e-14 + art_sys_71: 6.59476321e-15 + art_sys_72: -1.63499226e-15 + art_sys_73: 8.57697893e-16 + art_sys_74: -6.69926775e-13 + art_sys_75: -2.57338475e-15 + art_sys_76: -4.02640119e-14 + art_sys_77: 2.66472701e-14 + art_sys_78: 4.70248269e-15 + art_sys_79: -2.00481552e-15 + art_sys_80: 9.45456718e-16 + art_sys_81: 2.21317790e-15 + art_sys_82: 9.29714112e-24 + art_sys_83: 5.28038155e-16 + art_sys_84: -9.43746709e-16 + art_sys_85: -1.17587050e-15 + art_sys_86: -4.20317594e-16 + art_sys_87: 2.06624798e-15 + art_sys_88: 8.04408007e-16 + art_sys_89: 2.88082464e-17 + art_sys_90: 1.13196764e-15 + art_sys_91: -5.34889565e-25 + art_sys_92: 5.07858041e-17 + art_sys_93: -2.69058080e-17 + art_sys_94: 5.90381066e-14 + art_sys_95: -2.29701194e-11 + art_sys_96: -4.82703800e-20 + art_sys_97: 2.49495784e-20 + art_sys_98: -2.78347068e-10 + art_sys_99: -2.16049171e-17 + art_sys_100: 4.43487499e-10 + art_sys_101: 4.56047194e-16 + art_sys_102: 4.05734617e-09 + art_sys_103: 3.25836336e-16 + art_sys_104: -4.95457557e-17 + art_sys_105: 4.44529313e-12 + art_sys_106: 5.26744120e-14 + art_sys_107: 1.18074068e-09 + art_sys_108: 7.12838752e-12 + art_sys_109: 3.03691914e-11 + art_sys_110: -3.28398899e-08 + art_sys_111: 5.63855746e-16 + art_sys_112: 6.70794497e-13 + art_sys_113: 1.76704133e-15 + art_sys_114: -1.34886801e-11 + art_sys_115: 1.76131721e-16 + art_sys_116: 6.84208671e-08 + art_sys_117: -4.45958707e-11 + art_sys_118: 5.93586819e-14 + art_sys_119: -1.25811941e-07 + art_sys_120: 4.46155602e-14 + art_sys_121: 4.30717433e-12 + art_sys_122: -7.95625153e-14 + art_sys_123: 5.83045284e-07 + art_sys_124: 1.19145048e-14 + art_sys_125: -5.86595038e-11 + art_sys_126: 6.37226065e-13 + art_sys_127: 2.04322053e-08 + art_sys_128: 2.14500246e-14 + art_sys_129: -1.01739300e-10 + art_sys_130: -2.71954464e-06 + art_sys_131: 1.68915617e-09 + art_sys_132: -4.08587262e-13 + art_sys_133: 2.30129926e-06 + art_sys_134: -1.50819701e-11 + art_sys_135: 1.00707687e-12 + art_sys_136: 1.18014664e-09 + art_sys_137: 7.00667019e-06 + art_sys_138: -2.06540273e-12 + art_sys_139: -1.24050021e-05 + art_sys_140: -1.48270012e-10 + art_sys_141: -2.01761040e-10 + art_sys_142: -6.34049845e-11 + art_sys_143: 2.34278571e-06 + art_sys_144: -1.91443191e-10 + art_sys_145: 1.28225785e-10 + art_sys_146: 3.17047104e-06 + art_sys_147: -6.64342753e-11 + art_sys_148: -8.57962338e-12 + art_sys_149: -1.21026685e-08 + art_sys_150: 1.76560631e-06 + art_sys_151: 1.74234496e-08 + art_sys_152: 2.03454847e-10 + art_sys_153: -3.16978553e-07 + art_sys_154: 1.11489074e-14 + art_sys_155: -8.16385903e-12 + art_sys_156: -0.0 + art_sys_157: 1.61910439e-09 art_sys_158: 0.0 - art_sys_159: 5.96249619e-09 - art_sys_160: 5.96249619e-09 - art_sys_161: -3.57401450e-10 - art_sys_162: 1.27135971e-22 - art_sys_163: 0.0 - art_sys_164: 7.51209758e-23 - art_sys_165: -1.19096170e-17 - art_sys_166: -3.40276801e-19 - art_sys_167: 3.18152723e-19 - art_sys_168: -5.49650269e-20 - art_sys_169: -3.47147167e-20 - art_sys_170: 3.25309844e-21 - art_sys_171: -9.78431871e-20 - art_sys_172: -6.87181180e-21 - art_sys_173: -2.47169479e-20 - art_sys_174: -2.88860939e-22 - art_sys_175: 5.95521355e-21 - art_sys_176: -8.62369684e-21 - art_sys_177: 1.39012980e-21 - art_sys_178: -2.10460265e-22 - art_sys_179: 3.52350636e-21 - art_sys_180: -1.14807096e-22 - art_sys_181: 4.70298985e-23 - art_sys_182: 3.80508519e-23 - art_sys_183: 8.98614345e-26 - art_sys_184: -2.26752174e-27 - art_sys_185: 8.65388773e-25 + art_sys_159: -2.03631030e-09 + art_sys_160: 6.19986904e-11 + art_sys_161: 1.42153553e-10 + art_sys_162: 1.42153553e-10 + art_sys_163: 1.99963530e-10 + art_sys_164: 1.99963530e-10 + art_sys_165: -2.14821112e-24 + art_sys_166: 7.03699014e-25 + art_sys_167: 0.0 + art_sys_168: -1.52028031e-18 + art_sys_169: -1.17722223e-18 + art_sys_170: 1.58400069e-19 + art_sys_171: 1.97262098e-19 + art_sys_172: -8.77843288e-20 + art_sys_173: 1.77238354e-20 + art_sys_174: 1.03352203e-20 + art_sys_175: 4.01654576e-22 + art_sys_176: -9.54481985e-23 + art_sys_177: -5.89635934e-21 + art_sys_178: 2.12673701e-22 + art_sys_179: -1.34225096e-23 + art_sys_180: -5.19712064e-23 + art_sys_181: 7.10153023e-22 + art_sys_182: -4.24093640e-22 + art_sys_183: -4.14552826e-24 + art_sys_184: -1.80164625e-25 + art_sys_185: 1.61692550e-26 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -26744,167 +26744,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: -3.81737143e-63 - art_sys_26: 9.73905434e-57 - art_sys_27: 5.05788147e-49 - art_sys_28: -1.23684852e-48 - art_sys_29: -1.33919756e-28 - art_sys_30: -1.52808715e-26 - art_sys_31: -1.07716143e-25 - art_sys_32: 2.26955421e-25 - art_sys_33: -1.60884049e-23 - art_sys_34: 2.43359680e-22 - art_sys_35: 4.17446253e-22 - art_sys_36: -2.03331151e-39 - art_sys_37: 6.89010584e-39 - art_sys_38: -1.03573016e-21 - art_sys_39: 9.80155624e-39 - art_sys_40: -3.38486003e-39 - art_sys_41: 5.27338229e-39 - art_sys_42: 1.82116329e-19 - art_sys_43: 1.56959045e-36 - art_sys_44: 1.05863740e-18 - art_sys_45: -1.57094835e-35 - art_sys_46: -8.41177629e-35 - art_sys_47: 3.43012312e-18 - art_sys_48: -1.15464715e-35 - art_sys_49: -2.77887342e-35 + art_sys_25: 6.26066347e-103 + art_sys_26: 3.27962163e-97 + art_sys_27: -2.05986999e-90 + art_sys_28: 1.23239951e-89 + art_sys_29: 4.73348164e-79 + art_sys_30: 3.84728879e-76 + art_sys_31: 1.79962697e-73 + art_sys_32: -2.14975138e-65 + art_sys_33: -6.44236895e-60 + art_sys_34: -6.49543801e-53 + art_sys_35: -4.55343992e-54 + art_sys_36: 1.33919756e-28 + art_sys_37: 1.52808715e-26 + art_sys_38: 1.07716143e-25 + art_sys_39: -2.26955421e-25 + art_sys_40: -1.60884049e-23 + art_sys_41: -2.43359680e-22 + art_sys_42: -4.17446253e-22 + art_sys_43: -1.03573016e-21 + art_sys_44: -1.82116329e-19 + art_sys_45: -1.05863740e-18 + art_sys_46: -3.43012312e-18 + art_sys_47: -5.57717008e-35 + art_sys_48: 5.88765596e-34 + art_sys_49: -5.87596713e-35 art_sys_50: 2.48800195e-17 - art_sys_51: 1.04753648e-16 - art_sys_52: 5.11635870e-33 - art_sys_53: 3.20399617e-33 - art_sys_54: 4.25943435e-33 - art_sys_55: 3.39853597e-33 - art_sys_56: 3.76191595e-33 - art_sys_57: -3.49466032e-15 - art_sys_58: 6.67212624e-15 - art_sys_59: 1.04844677e-14 - art_sys_60: -1.10376361e-15 - art_sys_61: 3.14180832e-14 - art_sys_62: -3.40756682e-14 - art_sys_63: -5.23133285e-15 - art_sys_64: 7.83238737e-15 - art_sys_65: 1.89975375e-14 - art_sys_66: 1.12072270e-14 - art_sys_67: -6.96000051e-15 - art_sys_68: 9.42423399e-15 - art_sys_69: -6.99702114e-14 - art_sys_70: 2.52632971e-27 - art_sys_71: 9.24083177e-26 - art_sys_72: 8.53970783e-26 - art_sys_73: -1.76075952e-13 - art_sys_74: -9.50585005e-23 - art_sys_75: 1.74487685e-14 - art_sys_76: 6.71903354e-16 - art_sys_77: 4.78293091e-14 - art_sys_78: -2.37197200e-14 - art_sys_79: 8.41298089e-15 - art_sys_80: -3.71288388e-23 - art_sys_81: -1.43299440e-15 - art_sys_82: -1.40126834e-16 - art_sys_83: 2.26669228e-16 - art_sys_84: -9.08962577e-15 - art_sys_85: -2.47277364e-17 - art_sys_86: 3.57566848e-16 - art_sys_87: 7.24725711e-15 - art_sys_88: -1.29701457e-16 - art_sys_89: 1.82524056e-14 - art_sys_90: 1.05869724e-22 - art_sys_91: -5.72658423e-23 - art_sys_92: 1.49836018e-11 - art_sys_93: 7.88940624e-24 - art_sys_94: 4.65327208e-11 - art_sys_95: 2.31047536e-20 - art_sys_96: 9.86829509e-15 - art_sys_97: 1.88747645e-10 - art_sys_98: 9.93007539e-19 - art_sys_99: -7.72472041e-20 - art_sys_100: 4.17874140e-10 - art_sys_101: -1.68199583e-17 - art_sys_102: -1.06705895e-13 - art_sys_103: 2.77484889e-09 - art_sys_104: 6.93866619e-18 - art_sys_105: 1.92428431e-11 - art_sys_106: 2.19157142e-18 - art_sys_107: 2.88773272e-18 - art_sys_108: -1.37390216e-09 - art_sys_109: -2.02058277e-16 - art_sys_110: 3.20592846e-11 - art_sys_111: -6.86108205e-16 - art_sys_112: 2.18775361e-08 - art_sys_113: 7.43695137e-12 - art_sys_114: 6.39730840e-16 - art_sys_115: -5.03558395e-08 - art_sys_116: 5.83623624e-15 - art_sys_117: -4.39308726e-12 - art_sys_118: 7.14566605e-16 - art_sys_119: -7.29448478e-08 - art_sys_120: 1.23147874e-15 - art_sys_121: 1.34227845e-13 - art_sys_122: -4.31959137e-15 - art_sys_123: 4.08794352e-07 - art_sys_124: -1.95053814e-15 - art_sys_125: -2.00194416e-14 - art_sys_126: -1.20686684e-12 - art_sys_127: -3.53496790e-13 - art_sys_128: -4.86309381e-08 - art_sys_129: 1.82254138e-06 - art_sys_130: -1.83825231e-06 - art_sys_131: -4.36021208e-06 - art_sys_132: 2.83495130e-11 - art_sys_133: -9.68917373e-09 - art_sys_134: -9.12786006e-06 - art_sys_135: -6.24282631e-11 - art_sys_136: 1.86755672e-06 - art_sys_137: 2.12065236e-09 - art_sys_138: -1.59102226e-06 - art_sys_139: -5.10699084e-08 - art_sys_140: -9.04009788e-18 - art_sys_141: -4.66731822e-07 - art_sys_142: 0.0 - art_sys_143: 2.34065419e-08 - art_sys_144: 1.38675262e-07 - art_sys_145: 3.27622498e-07 - art_sys_146: 2.52657019e-10 - art_sys_147: 3.15500288e-10 - art_sys_148: 6.65868412e-09 - art_sys_149: 1.27355959e-09 - art_sys_150: -1.32841205e-10 - art_sys_151: -1.08714655e-10 - art_sys_152: 1.96133379e-11 - art_sys_153: -3.99126508e-12 - art_sys_154: 3.22721932e-11 - art_sys_155: 1.38977429e-11 - art_sys_156: 1.32948769e-09 - art_sys_157: 7.18700806e-10 + art_sys_51: -1.04753648e-16 + art_sys_52: -2.48265354e-33 + art_sys_53: 4.19702801e-33 + art_sys_54: 1.92834257e-33 + art_sys_55: -2.69017741e-33 + art_sys_56: -8.64146319e-34 + art_sys_57: 1.10376361e-15 + art_sys_58: -1.12072270e-14 + art_sys_59: -1.06769732e-31 + art_sys_60: -1.08556864e-30 + art_sys_61: -6.99702119e-14 + art_sys_62: -2.09725012e-31 + art_sys_63: 2.43575283e-29 + art_sys_64: 2.06118419e-15 + art_sys_65: 4.99748207e-15 + art_sys_66: -7.90945290e-15 + art_sys_67: 6.24394022e-14 + art_sys_68: -6.76459895e-15 + art_sys_69: -2.28395646e-16 + art_sys_70: -1.50524485e-14 + art_sys_71: -5.00706147e-14 + art_sys_72: 9.05132978e-15 + art_sys_73: 1.25912540e-14 + art_sys_74: -1.76075952e-13 + art_sys_75: -1.74615164e-14 + art_sys_76: 3.97078799e-14 + art_sys_77: -1.51152287e-17 + art_sys_78: 8.65418596e-15 + art_sys_79: -8.01170289e-15 + art_sys_80: -5.88085119e-15 + art_sys_81: 8.17741134e-15 + art_sys_82: 2.44739319e-24 + art_sys_83: 1.70237588e-15 + art_sys_84: 7.88744966e-17 + art_sys_85: -4.04801733e-16 + art_sys_86: -3.65968635e-16 + art_sys_87: 5.99364246e-15 + art_sys_88: 2.47817352e-15 + art_sys_89: -5.73224960e-17 + art_sys_90: 2.53706653e-15 + art_sys_91: -1.38298762e-25 + art_sys_92: 1.77543803e-17 + art_sys_93: -6.15983450e-18 + art_sys_94: -2.14983817e-14 + art_sys_95: 1.49835162e-11 + art_sys_96: 3.14886726e-20 + art_sys_97: -1.62757258e-20 + art_sys_98: -4.65327616e-11 + art_sys_99: -3.04851945e-18 + art_sys_100: -1.88748280e-10 + art_sys_101: -1.96607871e-16 + art_sys_102: 4.17875938e-10 + art_sys_103: -1.34487209e-16 + art_sys_104: 9.56600599e-19 + art_sys_105: 3.78354642e-13 + art_sys_106: 5.42464567e-15 + art_sys_107: 2.77485220e-09 + art_sys_108: 6.27645285e-13 + art_sys_109: 1.25734106e-11 + art_sys_110: 1.37391725e-09 + art_sys_111: 2.45532096e-16 + art_sys_112: -2.79638257e-14 + art_sys_113: 1.83523532e-16 + art_sys_114: -7.15074189e-11 + art_sys_115: 1.29617752e-16 + art_sys_116: 2.18727590e-08 + art_sys_117: -6.22576462e-11 + art_sys_118: -2.68354060e-15 + art_sys_119: 5.03548257e-08 + art_sys_120: -1.71311981e-14 + art_sys_121: 2.58882032e-10 + art_sys_122: 2.92063529e-15 + art_sys_123: 7.28979133e-08 + art_sys_124: 2.30858306e-15 + art_sys_125: -8.60651324e-11 + art_sys_126: -2.92231718e-13 + art_sys_127: 4.39990772e-07 + art_sys_128: -1.19402587e-14 + art_sys_129: 1.20608080e-10 + art_sys_130: 5.45669643e-08 + art_sys_131: -1.64680270e-09 + art_sys_132: 6.34879784e-14 + art_sys_133: 1.81995771e-06 + art_sys_134: -6.22833378e-12 + art_sys_135: 5.01290407e-14 + art_sys_136: -1.73035177e-09 + art_sys_137: -1.78301982e-06 + art_sys_138: -5.09022480e-12 + art_sys_139: -4.39401537e-06 + art_sys_140: 2.35362345e-10 + art_sys_141: 8.77790351e-08 + art_sys_142: -3.15895288e-10 + art_sys_143: 9.10760418e-06 + art_sys_144: -6.44523087e-11 + art_sys_145: -1.57265408e-09 + art_sys_146: -2.12839996e-06 + art_sys_147: 5.40495327e-11 + art_sys_148: 2.77402081e-11 + art_sys_149: 1.65040581e-08 + art_sys_150: -2.15563270e-06 + art_sys_151: -2.98991253e-08 + art_sys_152: -2.09572184e-10 + art_sys_153: 4.52680821e-07 + art_sys_154: -4.69867266e-16 + art_sys_155: 9.86592841e-11 + art_sys_156: 0.0 + art_sys_157: -1.70363926e-09 art_sys_158: -0.0 - art_sys_159: -5.94703905e-09 - art_sys_160: -5.94703905e-09 - art_sys_161: 4.41555233e-10 - art_sys_162: -1.54341856e-22 - art_sys_163: -0.0 - art_sys_164: -9.03607630e-23 - art_sys_165: 1.63945525e-17 - art_sys_166: 7.02290611e-19 - art_sys_167: -1.39560786e-19 - art_sys_168: 3.08749553e-20 - art_sys_169: 3.15224724e-20 - art_sys_170: -2.31735032e-21 - art_sys_171: 8.01204287e-20 - art_sys_172: -3.87064829e-20 - art_sys_173: 1.57772104e-20 - art_sys_174: 3.89114373e-22 - art_sys_175: -5.89807081e-21 - art_sys_176: 1.00200389e-20 - art_sys_177: -1.66566697e-21 - art_sys_178: -9.35748478e-23 - art_sys_179: 1.65401054e-21 - art_sys_180: 2.76587004e-22 - art_sys_181: -8.62151400e-23 - art_sys_182: 1.69092696e-24 - art_sys_183: 2.53078955e-25 - art_sys_184: -1.67708022e-25 - art_sys_185: -1.74907613e-24 + art_sys_159: 2.14478939e-09 + art_sys_160: 7.99304617e-11 + art_sys_161: -1.10505117e-09 + art_sys_162: -1.10505117e-09 + art_sys_163: -1.70109034e-10 + art_sys_164: -1.70109034e-10 + art_sys_165: 3.48425036e-24 + art_sys_166: -1.19279818e-24 + art_sys_167: -0.0 + art_sys_168: 3.17340466e-18 + art_sys_169: 9.49830564e-19 + art_sys_170: -1.00620543e-18 + art_sys_171: -2.64994665e-19 + art_sys_172: 1.24824994e-19 + art_sys_173: -1.90242899e-20 + art_sys_174: -7.70096272e-21 + art_sys_175: -2.36139264e-22 + art_sys_176: 1.50368175e-22 + art_sys_177: 3.44278312e-21 + art_sys_178: -8.94287911e-23 + art_sys_179: -1.29016905e-23 + art_sys_180: 5.37511547e-23 + art_sys_181: -5.64235953e-22 + art_sys_182: 3.98916306e-22 + art_sys_183: 4.15684062e-24 + art_sys_184: -1.92499556e-25 + art_sys_185: -9.99674955e-26 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -27035,167 +27035,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: -5.09360592e-64 - art_sys_26: 1.29950427e-57 - art_sys_27: 6.74884681e-50 - art_sys_28: -1.65035525e-49 - art_sys_29: -1.78692266e-29 - art_sys_30: -1.27093896e-27 - art_sys_31: -8.74606783e-27 - art_sys_32: -1.73766005e-27 - art_sys_33: 2.07100625e-24 - art_sys_34: 4.62429891e-23 - art_sys_35: 1.23872245e-22 - art_sys_36: -5.49724414e-40 - art_sys_37: 1.84853039e-39 - art_sys_38: -3.18836892e-22 - art_sys_39: 3.05333213e-39 - art_sys_40: -1.07049542e-39 - art_sys_41: 2.61564369e-39 - art_sys_42: -1.76052766e-21 - art_sys_43: -1.52558754e-38 - art_sys_44: 1.12688396e-19 - art_sys_45: -3.18943180e-36 - art_sys_46: -1.39746210e-35 - art_sys_47: 6.53941319e-19 - art_sys_48: -4.93254003e-36 - art_sys_49: -4.23338491e-36 + art_sys_25: 8.28878117e-104 + art_sys_26: 4.34204239e-98 + art_sys_27: -2.72715694e-91 + art_sys_28: 1.63163059e-90 + art_sys_29: 6.26687479e-80 + art_sys_30: 5.09360318e-77 + art_sys_31: 2.38260919e-74 + art_sys_32: -2.84615507e-66 + art_sys_33: -8.52934958e-61 + art_sys_34: -8.59961016e-54 + art_sys_35: -6.02850926e-55 + art_sys_36: 1.78692266e-29 + art_sys_37: 1.27093896e-27 + art_sys_38: 8.74606783e-27 + art_sys_39: 1.73766005e-27 + art_sys_40: 2.07100625e-24 + art_sys_41: -4.62429891e-23 + art_sys_42: -1.23872245e-22 + art_sys_43: -3.18836892e-22 + art_sys_44: 1.76052766e-21 + art_sys_45: -1.12688396e-19 + art_sys_46: -6.53941319e-19 + art_sys_47: -1.16942471e-35 + art_sys_48: 1.79087450e-34 + art_sys_49: -6.21654971e-36 art_sys_50: 7.71414326e-18 - art_sys_51: 8.77537465e-18 - art_sys_52: 5.96032213e-36 - art_sys_53: 3.06011482e-34 - art_sys_54: 3.51150080e-34 - art_sys_55: 3.01042440e-34 - art_sys_56: 6.26932224e-34 - art_sys_57: -5.88432703e-15 - art_sys_58: -7.66187038e-16 - art_sys_59: -1.00621480e-14 - art_sys_60: -1.52652431e-16 - art_sys_61: 4.41522296e-15 - art_sys_62: -2.04265124e-15 - art_sys_63: 1.31677814e-14 - art_sys_64: -3.25904009e-14 - art_sys_65: 8.11412276e-14 - art_sys_66: 6.58749902e-16 - art_sys_67: -1.30412279e-14 - art_sys_68: 1.86031911e-14 - art_sys_69: -6.29802385e-15 - art_sys_70: 1.38974552e-28 - art_sys_71: 5.48329703e-27 - art_sys_72: 5.18342827e-27 - art_sys_73: -1.32354011e-14 - art_sys_74: -8.55592498e-24 - art_sys_75: 2.66378884e-14 - art_sys_76: -4.67907799e-14 - art_sys_77: -5.58659630e-15 - art_sys_78: 1.67084954e-15 - art_sys_79: 1.22709822e-14 - art_sys_80: -3.33330636e-24 - art_sys_81: -2.26304821e-16 - art_sys_82: 3.43390192e-17 - art_sys_83: -8.36173320e-16 - art_sys_84: -1.27066361e-14 - art_sys_85: -6.12613598e-16 - art_sys_86: 2.56515439e-16 - art_sys_87: 9.41166605e-15 - art_sys_88: -4.21797866e-15 - art_sys_89: 1.92674432e-15 - art_sys_90: 9.52333299e-24 - art_sys_91: -1.01359012e-24 - art_sys_92: 2.86788915e-12 - art_sys_93: 3.21537223e-24 - art_sys_94: -3.50850902e-12 - art_sys_95: 2.62890891e-21 - art_sys_96: -1.28704368e-14 - art_sys_97: 4.29209517e-11 - art_sys_98: -7.49651921e-20 - art_sys_99: 8.04365510e-22 - art_sys_100: -1.25059531e-10 - art_sys_101: -3.80022944e-18 - art_sys_102: 1.47513718e-13 - art_sys_103: 2.69926689e-10 - art_sys_104: 1.58732914e-18 - art_sys_105: 8.27086373e-13 - art_sys_106: 7.94252501e-19 - art_sys_107: -1.67393859e-20 - art_sys_108: -1.79301122e-09 - art_sys_109: 7.76035444e-17 - art_sys_110: 6.76916874e-12 - art_sys_111: -1.77021664e-16 - art_sys_112: -1.18683607e-09 - art_sys_113: -5.48353227e-13 - art_sys_114: 1.12555256e-16 - art_sys_115: -1.39912410e-08 - art_sys_116: 6.64627994e-15 - art_sys_117: -1.16235945e-11 - art_sys_118: 2.00708277e-16 - art_sys_119: 3.41967194e-08 - art_sys_120: 7.25942637e-17 - art_sys_121: 1.17770843e-14 - art_sys_122: -2.27703883e-16 - art_sys_123: 4.53447824e-08 - art_sys_124: 2.20319029e-16 - art_sys_125: -3.55835198e-15 - art_sys_126: -4.54651162e-13 - art_sys_127: 2.32548459e-13 - art_sys_128: -2.84422879e-07 - art_sys_129: -5.63756660e-08 - art_sys_130: -1.20508063e-06 - art_sys_131: 1.33916287e-06 - art_sys_132: 5.12036662e-12 - art_sys_133: -3.58927795e-10 - art_sys_134: -3.18392624e-06 - art_sys_135: -1.87048435e-10 - art_sys_136: 6.00370878e-06 - art_sys_137: -2.12678364e-09 - art_sys_138: 1.73671802e-06 - art_sys_139: 1.06426321e-07 - art_sys_140: 1.16243223e-17 - art_sys_141: 6.46958300e-07 - art_sys_142: -0.0 - art_sys_143: -2.94028349e-08 - art_sys_144: -1.74744672e-07 - art_sys_145: -4.33955864e-07 - art_sys_146: -9.81763185e-11 - art_sys_147: 2.10289406e-10 - art_sys_148: -3.17914446e-09 - art_sys_149: -5.20441955e-10 - art_sys_150: 2.22764666e-10 - art_sys_151: 3.50694834e-10 - art_sys_152: 6.29107743e-11 - art_sys_153: -3.12495259e-12 - art_sys_154: -6.27515871e-11 - art_sys_155: 3.32444677e-11 - art_sys_156: -1.88282006e-09 - art_sys_157: -9.28908007e-10 + art_sys_51: -8.77537465e-18 + art_sys_52: -2.90139123e-34 + art_sys_53: 3.22167297e-34 + art_sys_54: 7.37389013e-35 + art_sys_55: -3.65771827e-34 + art_sys_56: -2.01187291e-35 + art_sys_57: 1.52652431e-16 + art_sys_58: -6.58749902e-16 + art_sys_59: -4.59634586e-33 + art_sys_60: -5.89138639e-32 + art_sys_61: -6.29802390e-15 + art_sys_62: -2.46063286e-32 + art_sys_63: 1.85556721e-30 + art_sys_64: -2.60419371e-15 + art_sys_65: 4.02692788e-15 + art_sys_66: -3.76520187e-14 + art_sys_67: -2.09832797e-14 + art_sys_68: -6.83210362e-14 + art_sys_69: 5.55140711e-15 + art_sys_70: 3.33466903e-14 + art_sys_71: 2.44585818e-14 + art_sys_72: 9.07937921e-16 + art_sys_73: 2.77620757e-17 + art_sys_74: -1.32354011e-14 + art_sys_75: -7.03373051e-15 + art_sys_76: -5.62248493e-14 + art_sys_77: -4.42027555e-14 + art_sys_78: 6.22301183e-15 + art_sys_79: -3.16793032e-15 + art_sys_80: -6.63347498e-15 + art_sys_81: 4.09446981e-15 + art_sys_82: 1.85004247e-25 + art_sys_83: 1.49710797e-16 + art_sys_84: 3.75329014e-16 + art_sys_85: -5.59862081e-17 + art_sys_86: 1.58734181e-16 + art_sys_87: 3.72864126e-15 + art_sys_88: 1.58070615e-15 + art_sys_89: 2.07254139e-17 + art_sys_90: 1.72929666e-15 + art_sys_91: -1.01807547e-26 + art_sys_92: -2.54219232e-19 + art_sys_93: 3.21217230e-17 + art_sys_94: -5.22026094e-15 + art_sys_95: 2.86789501e-12 + art_sys_96: 6.02693713e-21 + art_sys_97: -3.11519718e-21 + art_sys_98: 3.50850156e-12 + art_sys_99: 3.49482671e-19 + art_sys_100: -4.29210899e-11 + art_sys_101: -4.44936579e-17 + art_sys_102: -1.25060172e-10 + art_sys_103: -3.09398961e-17 + art_sys_104: 2.22819423e-18 + art_sys_105: -1.35321630e-13 + art_sys_106: -1.62363266e-15 + art_sys_107: 2.69923612e-10 + art_sys_108: -2.06746429e-13 + art_sys_109: 7.94171596e-12 + art_sys_110: 1.79303101e-09 + art_sys_111: 5.77475169e-18 + art_sys_112: -3.66131011e-14 + art_sys_113: -5.42889777e-17 + art_sys_114: -2.14454495e-11 + art_sys_115: 1.09038344e-17 + art_sys_116: -1.18802654e-09 + art_sys_117: 1.95067305e-11 + art_sys_118: -3.27323856e-15 + art_sys_119: 1.39909428e-08 + art_sys_120: -4.00209459e-15 + art_sys_121: 9.11758724e-11 + art_sys_122: 4.26520259e-15 + art_sys_123: -3.42241492e-08 + art_sys_124: -3.51008238e-16 + art_sys_125: -1.35960682e-10 + art_sys_126: -7.52733232e-14 + art_sys_127: 6.25917969e-08 + art_sys_128: -2.40664349e-15 + art_sys_129: -5.49428054e-12 + art_sys_130: 2.68837965e-07 + art_sys_131: -1.64516902e-10 + art_sys_132: 2.90376933e-14 + art_sys_133: -6.73973956e-08 + art_sys_134: -4.22615816e-12 + art_sys_135: -5.83621093e-14 + art_sys_136: 2.50842551e-09 + art_sys_137: -1.19565834e-06 + art_sys_138: -1.59896752e-12 + art_sys_139: 1.32581535e-06 + art_sys_140: -3.39794246e-10 + art_sys_141: 5.11263056e-08 + art_sys_142: -1.42894648e-10 + art_sys_143: 3.21413627e-06 + art_sys_144: -5.46209351e-10 + art_sys_145: -3.15829881e-10 + art_sys_146: -5.76536606e-06 + art_sys_147: 1.38546563e-10 + art_sys_148: -2.29300909e-11 + art_sys_149: -1.83319842e-08 + art_sys_150: 2.55380585e-06 + art_sys_151: 2.19094413e-08 + art_sys_152: 3.08079840e-10 + art_sys_153: -6.95198822e-07 + art_sys_154: -6.02256234e-16 + art_sys_155: -8.45518251e-11 + art_sys_156: -0.0 + art_sys_157: 3.24624858e-09 art_sys_158: 0.0 - art_sys_159: 4.27901894e-09 - art_sys_160: 4.27901894e-09 - art_sys_161: -7.00288679e-10 - art_sys_162: 2.41038398e-22 - art_sys_163: 0.0 - art_sys_164: 1.40072974e-22 - art_sys_165: -2.23214133e-17 - art_sys_166: -2.02159333e-18 - art_sys_167: -8.97685775e-19 - art_sys_168: -4.46904944e-21 - art_sys_169: -3.61326258e-20 - art_sys_170: -8.78933127e-20 - art_sys_171: 2.37873324e-20 - art_sys_172: -1.84977166e-19 - art_sys_173: 5.10186501e-20 - art_sys_174: -5.27728781e-22 - art_sys_175: -4.28388598e-21 - art_sys_176: 1.45112813e-20 - art_sys_177: -2.80898126e-21 - art_sys_178: -2.67338971e-22 - art_sys_179: 1.12951732e-21 - art_sys_180: -2.70982488e-22 - art_sys_181: -2.00075458e-22 - art_sys_182: 1.40726148e-22 - art_sys_183: 5.13294493e-25 - art_sys_184: -2.62917682e-26 - art_sys_185: 5.80179756e-24 + art_sys_159: -4.69377845e-09 + art_sys_160: 2.31927730e-11 + art_sys_161: 1.24241696e-09 + art_sys_162: 1.24241696e-09 + art_sys_163: 4.79235392e-10 + art_sys_164: 4.79235392e-10 + art_sys_165: -6.67946388e-24 + art_sys_166: 2.24358877e-24 + art_sys_167: 0.0 + art_sys_168: 8.26216271e-20 + art_sys_169: 1.50260682e-18 + art_sys_170: 1.08360164e-18 + art_sys_171: 2.17550026e-19 + art_sys_172: -1.71116283e-19 + art_sys_173: 3.45239799e-20 + art_sys_174: -3.37686492e-21 + art_sys_175: -3.81552211e-22 + art_sys_176: 1.07199278e-21 + art_sys_177: -1.01322618e-21 + art_sys_178: 5.05419952e-23 + art_sys_179: -6.11509563e-24 + art_sys_180: -1.21430961e-22 + art_sys_181: -2.53177317e-22 + art_sys_182: -5.07229058e-23 + art_sys_183: -6.75715532e-25 + art_sys_184: -3.40989837e-25 + art_sys_185: -1.77730040e-25 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -27326,167 +27326,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: -1.17053554e-65 - art_sys_26: 2.98632435e-59 - art_sys_27: 1.55091799e-51 - art_sys_28: -3.79259704e-51 - art_sys_29: -4.10643620e-31 - art_sys_30: -2.33285124e-29 - art_sys_31: -1.55879646e-28 - art_sys_32: -5.53385931e-28 - art_sys_33: 1.42815778e-25 - art_sys_34: 1.55068644e-24 - art_sys_35: 4.85437340e-24 - art_sys_36: -2.09926244e-41 - art_sys_37: 7.22379027e-41 - art_sys_38: -1.22409168e-23 - art_sys_39: 1.17628386e-40 - art_sys_40: -4.11733197e-41 - art_sys_41: 1.11851055e-40 - art_sys_42: -7.23637866e-22 - art_sys_43: -6.28020577e-39 - art_sys_44: 7.37550849e-22 - art_sys_45: -5.74566914e-38 - art_sys_46: -2.18803789e-37 - art_sys_47: 1.16579048e-20 - art_sys_48: -1.87281575e-37 - art_sys_49: -4.30973816e-38 + art_sys_25: 1.89983132e-105 + art_sys_26: 9.95218471e-100 + art_sys_27: -6.25078412e-93 + art_sys_28: 3.73978133e-92 + art_sys_29: 1.43639997e-81 + art_sys_30: 1.16748008e-78 + art_sys_31: 5.46106297e-76 + art_sys_32: -6.52353399e-68 + art_sys_33: -1.95497085e-62 + art_sys_34: -1.97107493e-55 + art_sys_35: -1.38176537e-56 + art_sys_36: 4.10643620e-31 + art_sys_37: 2.33285124e-29 + art_sys_38: 1.55879646e-28 + art_sys_39: 5.53385931e-28 + art_sys_40: 1.42815778e-25 + art_sys_41: -1.55068644e-24 + art_sys_42: -4.85437340e-24 + art_sys_43: -1.22409168e-23 + art_sys_44: 7.23637866e-22 + art_sys_45: -7.37550849e-22 + art_sys_46: -1.16579048e-20 + art_sys_47: -2.26475157e-37 + art_sys_48: 6.27450078e-36 + art_sys_49: 1.27894344e-37 art_sys_50: 2.76788098e-19 - art_sys_51: -3.15701488e-19 - art_sys_52: -4.18625322e-35 - art_sys_53: -8.18515541e-36 - art_sys_54: -1.50037900e-35 - art_sys_55: -9.20239993e-36 - art_sys_56: 9.25534513e-36 - art_sys_57: 2.95140909e-15 - art_sys_58: -5.82754194e-15 - art_sys_59: -2.45744239e-15 - art_sys_60: -6.70905462e-19 - art_sys_61: -1.39893582e-15 - art_sys_62: 7.41140528e-15 - art_sys_63: -1.81764505e-14 - art_sys_64: 3.80777523e-14 - art_sys_65: -9.10962675e-14 - art_sys_66: 2.38658470e-17 - art_sys_67: 1.69607239e-14 - art_sys_68: -2.15966504e-14 - art_sys_69: -5.11782786e-17 - art_sys_70: 5.83942805e-30 - art_sys_71: 1.94496740e-28 - art_sys_72: 1.74515510e-28 - art_sys_73: 2.66938817e-16 - art_sys_74: -6.95404913e-26 - art_sys_75: -3.13543900e-14 - art_sys_76: 8.68569894e-15 - art_sys_77: -2.41624431e-14 - art_sys_78: -5.87301378e-15 - art_sys_79: -1.39183374e-14 - art_sys_80: -2.81570089e-26 - art_sys_81: -1.34804895e-15 - art_sys_82: -2.34221594e-16 - art_sys_83: 9.11078211e-16 - art_sys_84: 1.44251466e-14 - art_sys_85: -2.46889245e-16 - art_sys_86: -4.57918246e-16 - art_sys_87: -1.04955628e-14 - art_sys_88: 4.40226595e-15 - art_sys_89: 4.29396236e-15 - art_sys_90: 8.09523815e-26 - art_sys_91: 1.35702094e-25 - art_sys_92: -2.42821832e-14 - art_sys_93: -1.69975075e-25 - art_sys_94: -5.20485606e-13 - art_sys_95: -1.01768167e-22 - art_sys_96: 2.41488797e-15 - art_sys_97: -4.36567225e-13 - art_sys_98: -1.11094779e-20 - art_sys_99: 6.84068758e-22 - art_sys_100: -8.37612713e-12 - art_sys_101: 3.95799222e-20 - art_sys_102: 1.33308259e-12 - art_sys_103: -2.53712110e-11 - art_sys_104: -1.58011684e-20 - art_sys_105: -6.18207113e-11 - art_sys_106: 3.27878654e-21 - art_sys_107: -2.64101160e-20 - art_sys_108: -2.63921350e-11 - art_sys_109: 4.17341020e-18 - art_sys_110: -5.08927026e-11 - art_sys_111: 8.60785157e-19 - art_sys_112: -3.16561598e-10 - art_sys_113: -3.52477724e-11 - art_sys_114: -2.54441313e-18 - art_sys_115: 4.15834030e-10 - art_sys_116: 8.90536037e-17 - art_sys_117: 1.52714306e-12 - art_sys_118: -6.98862242e-19 - art_sys_119: 1.91263510e-09 - art_sys_120: -1.26979832e-17 - art_sys_121: -1.52951849e-15 - art_sys_122: 4.42521101e-17 - art_sys_123: 1.61199190e-08 - art_sys_124: -3.25305842e-17 - art_sys_125: 6.22445728e-15 - art_sys_126: 1.74543088e-12 - art_sys_127: -4.22430775e-13 - art_sys_128: -2.51911151e-08 - art_sys_129: -6.00930556e-08 - art_sys_130: 2.20298221e-08 - art_sys_131: 1.16565670e-07 - art_sys_132: -1.38390928e-11 - art_sys_133: 7.08396388e-09 - art_sys_134: 1.16637756e-07 - art_sys_135: 2.55578204e-10 - art_sys_136: 5.98706188e-07 - art_sys_137: -4.97697372e-09 - art_sys_138: 2.35973735e-06 - art_sys_139: -4.39733662e-07 - art_sys_140: -8.32046256e-18 - art_sys_141: -9.72541620e-07 - art_sys_142: -0.0 - art_sys_143: 1.50991445e-08 - art_sys_144: 9.41936379e-08 - art_sys_145: 4.11626771e-07 - art_sys_146: -1.24291684e-10 - art_sys_147: 2.05176054e-10 - art_sys_148: -3.06146268e-09 - art_sys_149: -4.97186442e-10 - art_sys_150: -8.44874423e-10 - art_sys_151: -3.70064644e-10 - art_sys_152: 1.92973168e-10 - art_sys_153: 9.99084590e-12 - art_sys_154: -1.31383341e-10 - art_sys_155: 3.32949068e-12 - art_sys_156: 3.01781206e-09 - art_sys_157: 1.46210341e-10 + art_sys_51: 3.15701488e-19 + art_sys_52: 2.34064439e-36 + art_sys_53: -1.40637099e-35 + art_sys_54: -1.16267655e-35 + art_sys_55: -6.65341418e-37 + art_sys_56: 4.28360581e-36 + art_sys_57: 6.70905462e-19 + art_sys_58: -2.38658470e-17 + art_sys_59: -2.51916914e-34 + art_sys_60: -2.08972916e-33 + art_sys_61: -5.11782790e-17 + art_sys_62: 1.36422390e-34 + art_sys_63: -3.71564169e-32 + art_sys_64: -6.64245642e-16 + art_sys_65: 5.69782991e-15 + art_sys_66: 1.88673823e-15 + art_sys_67: -5.31216962e-14 + art_sys_68: 6.26225999e-14 + art_sys_69: -4.31233342e-14 + art_sys_70: -9.18025907e-14 + art_sys_71: -1.42543570e-13 + art_sys_72: 1.81551073e-14 + art_sys_73: 2.58404262e-14 + art_sys_74: 2.66938817e-16 + art_sys_75: -3.33976210e-14 + art_sys_76: -3.87009891e-14 + art_sys_77: 3.03704495e-14 + art_sys_78: 2.84768138e-15 + art_sys_79: -1.56956997e-14 + art_sys_80: 1.75851009e-15 + art_sys_81: 1.58594694e-14 + art_sys_82: 1.75584196e-28 + art_sys_83: 4.61456856e-17 + art_sys_84: -6.80024435e-16 + art_sys_85: 1.12084645e-15 + art_sys_86: 2.58926633e-16 + art_sys_87: 1.16923973e-14 + art_sys_88: 5.00034873e-15 + art_sys_89: 1.95369407e-17 + art_sys_90: 4.96522954e-15 + art_sys_91: -3.40696195e-28 + art_sys_92: -2.03753676e-17 + art_sys_93: -2.47720925e-17 + art_sys_94: 3.68831549e-15 + art_sys_95: -2.42812470e-14 + art_sys_96: -5.10323696e-23 + art_sys_97: 2.63750478e-23 + art_sys_98: 5.20485755e-13 + art_sys_99: 3.83872377e-20 + art_sys_100: 4.36568910e-13 + art_sys_101: 4.61038476e-19 + art_sys_102: -8.37616599e-12 + art_sys_103: 3.00583470e-19 + art_sys_104: 7.50561622e-20 + art_sys_105: 1.22579943e-13 + art_sys_106: -1.08741430e-16 + art_sys_107: -2.53713212e-11 + art_sys_108: 2.00495082e-13 + art_sys_109: 7.39818728e-12 + art_sys_110: 2.63924273e-11 + art_sys_111: -2.69080565e-18 + art_sys_112: -5.39962864e-16 + art_sys_113: -3.66120467e-18 + art_sys_114: 4.48103821e-12 + art_sys_115: -1.39525558e-18 + art_sys_116: -3.16519571e-10 + art_sys_117: -5.66061257e-14 + art_sys_118: -4.59992227e-17 + art_sys_119: -4.15825999e-10 + art_sys_120: 1.25262451e-16 + art_sys_121: -1.96591581e-11 + art_sys_122: 6.71385695e-17 + art_sys_123: -1.92712599e-09 + art_sys_124: -3.88408236e-17 + art_sys_125: 9.68691031e-11 + art_sys_126: 2.63915698e-15 + art_sys_127: 4.93869709e-09 + art_sys_128: 1.02893172e-16 + art_sys_129: 8.54537672e-11 + art_sys_130: -1.76969463e-09 + art_sys_131: -1.41933953e-09 + art_sys_132: -3.34529604e-16 + art_sys_133: -3.62699315e-08 + art_sys_134: -3.23996776e-12 + art_sys_135: 8.14961950e-15 + art_sys_136: -5.24350259e-09 + art_sys_137: 1.00472108e-08 + art_sys_138: -6.55431529e-13 + art_sys_139: 1.78259904e-07 + art_sys_140: 8.65380304e-10 + art_sys_141: 1.15952035e-08 + art_sys_142: -1.76514812e-11 + art_sys_143: -1.15498427e-07 + art_sys_144: -8.32916285e-09 + art_sys_145: 3.20289480e-10 + art_sys_146: -6.46225324e-07 + art_sys_147: 4.41460337e-10 + art_sys_148: 5.21974463e-10 + art_sys_149: -9.66000114e-09 + art_sys_150: 1.76278798e-06 + art_sys_151: 1.79423167e-07 + art_sys_152: 1.74832340e-09 + art_sys_153: 2.03182686e-06 + art_sys_154: -4.36209498e-17 + art_sys_155: 3.54640571e-09 + art_sys_156: 0.0 + art_sys_157: -2.23096627e-08 art_sys_158: -0.0 - art_sys_159: 7.26998554e-08 - art_sys_160: 7.26998554e-08 - art_sys_161: -2.99345442e-09 - art_sys_162: 1.19212294e-21 - art_sys_163: 0.0 - art_sys_164: 7.48797884e-22 - art_sys_165: 5.28597473e-17 - art_sys_166: 1.23830394e-17 - art_sys_167: 7.05232126e-18 - art_sys_168: -7.83230357e-19 - art_sys_169: -2.44570095e-19 - art_sys_170: 2.82785150e-20 - art_sys_171: 2.37219139e-20 - art_sys_172: 9.31913592e-20 - art_sys_173: 1.03801200e-19 - art_sys_174: 6.95230359e-22 - art_sys_175: -7.70961815e-21 - art_sys_176: 5.90253374e-21 - art_sys_177: -3.07024204e-21 - art_sys_178: -8.73372629e-22 - art_sys_179: -2.83100881e-22 - art_sys_180: -1.32495136e-21 - art_sys_181: 3.79277192e-23 - art_sys_182: -1.14728026e-22 - art_sys_183: -8.47678273e-25 - art_sys_184: 1.72673596e-25 - art_sys_185: 3.28966634e-23 + art_sys_159: 7.52000063e-08 + art_sys_160: 1.35703013e-08 + art_sys_161: -2.03077439e-08 + art_sys_162: -2.03077439e-08 + art_sys_163: -5.73624081e-10 + art_sys_164: -5.73624081e-10 + art_sys_165: 4.07117508e-23 + art_sys_166: -1.39789268e-23 + art_sys_167: -0.0 + art_sys_168: 2.91062352e-18 + art_sys_169: 5.01696110e-18 + art_sys_170: 2.96147456e-20 + art_sys_171: -1.94395389e-18 + art_sys_172: 1.41933618e-19 + art_sys_173: 1.31690076e-19 + art_sys_174: 3.60972032e-20 + art_sys_175: 8.89295159e-21 + art_sys_176: 6.55300455e-21 + art_sys_177: 1.23886083e-20 + art_sys_178: 1.76546630e-21 + art_sys_179: -1.29472466e-21 + art_sys_180: 1.46140168e-21 + art_sys_181: -6.31756068e-21 + art_sys_182: 1.30195214e-21 + art_sys_183: 2.69380747e-24 + art_sys_184: -5.13287995e-24 + art_sys_185: -1.83787031e-24 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -27617,167 +27617,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: -2.20375121e-69 - art_sys_26: 5.62231190e-63 - art_sys_27: 2.91989203e-55 - art_sys_28: -7.14027043e-55 - art_sys_29: -7.73113125e-35 - art_sys_30: -4.24705910e-33 - art_sys_31: -2.65041875e-32 - art_sys_32: -2.75521701e-31 - art_sys_33: 6.78034752e-29 - art_sys_34: 5.31792209e-28 - art_sys_35: 1.84214528e-27 - art_sys_36: -7.84750425e-45 - art_sys_37: 2.31675446e-44 - art_sys_38: -4.17701990e-27 - art_sys_39: 4.03064283e-44 - art_sys_40: -1.38650130e-44 - art_sys_41: 4.26593987e-44 - art_sys_42: -4.96479948e-25 - art_sys_43: -4.22462391e-42 - art_sys_44: -1.58806274e-24 - art_sys_45: 1.40307168e-41 - art_sys_46: 9.18365212e-41 - art_sys_47: -3.14623460e-24 - art_sys_48: 1.57609356e-42 - art_sys_49: 3.09256866e-41 + art_sys_25: 3.57557039e-109 + art_sys_26: 1.87304718e-103 + art_sys_27: -1.17642648e-96 + art_sys_28: 7.03844140e-96 + art_sys_29: 2.70337117e-85 + art_sys_30: 2.19725149e-82 + art_sys_31: 1.02779730e-79 + art_sys_32: -1.22775926e-71 + art_sys_33: -3.67934553e-66 + art_sys_34: -3.70965417e-59 + art_sys_35: -2.60054631e-60 + art_sys_36: 7.73113125e-35 + art_sys_37: 4.24705910e-33 + art_sys_38: 2.65041875e-32 + art_sys_39: 2.75521701e-31 + art_sys_40: 6.78034752e-29 + art_sys_41: -5.31792209e-28 + art_sys_42: -1.84214528e-27 + art_sys_43: -4.17701990e-27 + art_sys_44: 4.96479948e-25 + art_sys_45: 1.58806274e-24 + art_sys_46: 3.14623460e-24 + art_sys_47: 4.25297455e-41 + art_sys_48: -3.71220210e-40 + art_sys_49: -1.64628765e-41 art_sys_50: -1.82663241e-23 - art_sys_51: 9.24457090e-24 - art_sys_52: 2.00145592e-39 - art_sys_53: 1.84186331e-40 - art_sys_54: 4.38826022e-40 - art_sys_55: 2.49526744e-40 - art_sys_56: -3.75164405e-39 - art_sys_57: -1.48688363e-14 - art_sys_58: -3.59583375e-15 - art_sys_59: 1.24957329e-14 - art_sys_60: 9.84555952e-22 - art_sys_61: 9.32102488e-14 - art_sys_62: -4.29668069e-14 - art_sys_63: -8.71046021e-15 - art_sys_64: -6.74174657e-16 - art_sys_65: 5.96228291e-14 - art_sys_66: 5.41565679e-20 - art_sys_67: -1.44154008e-14 - art_sys_68: 2.14598686e-14 - art_sys_69: -9.90944203e-20 - art_sys_70: -1.57387430e-31 - art_sys_71: 4.80252426e-31 - art_sys_72: 3.87138038e-31 - art_sys_73: 6.76262950e-20 - art_sys_74: -1.34639870e-28 - art_sys_75: 3.65281453e-14 - art_sys_76: 1.64905248e-14 - art_sys_77: 2.02767466e-14 - art_sys_78: 8.09220337e-15 - art_sys_79: 1.80134143e-14 - art_sys_80: 2.64586549e-27 - art_sys_81: -2.06905178e-15 - art_sys_82: -3.39724688e-16 - art_sys_83: -2.01888595e-16 - art_sys_84: -1.91761878e-14 - art_sys_85: -4.07896391e-16 - art_sys_86: -1.34870734e-16 - art_sys_87: 1.52825852e-14 - art_sys_88: -6.63694789e-15 - art_sys_89: -6.74981935e-15 - art_sys_90: -4.52216733e-27 - art_sys_91: -6.88508925e-26 - art_sys_92: -1.34368782e-16 - art_sys_93: 1.58573165e-25 - art_sys_94: -2.73543957e-17 - art_sys_95: -1.50633011e-25 - art_sys_96: -5.15416359e-15 - art_sys_97: -2.90413752e-15 - art_sys_98: -5.78332583e-25 - art_sys_99: 2.02188563e-25 - art_sys_100: 4.54599293e-15 - art_sys_101: 2.57449395e-22 - art_sys_102: 1.02567047e-12 - art_sys_103: -5.03008858e-14 - art_sys_104: -1.07272137e-22 - art_sys_105: -4.85633207e-11 - art_sys_106: -4.82076148e-23 - art_sys_107: -1.15183570e-23 - art_sys_108: 2.08631592e-13 - art_sys_109: -4.77551018e-21 - art_sys_110: -3.68335219e-11 - art_sys_111: 1.15763816e-20 - art_sys_112: -3.78860841e-13 - art_sys_113: -3.01910539e-11 - art_sys_114: -7.99897192e-21 - art_sys_115: 4.96142626e-12 - art_sys_116: -7.81600907e-19 - art_sys_117: -2.24885267e-12 - art_sys_118: -1.40382471e-20 - art_sys_119: -4.93774881e-13 - art_sys_120: -2.30075209e-20 - art_sys_121: 3.69024891e-17 - art_sys_122: -1.98808241e-19 - art_sys_123: 1.75471837e-08 - art_sys_124: -5.25673188e-17 - art_sys_125: 4.59397546e-15 - art_sys_126: 1.34497522e-12 - art_sys_127: -3.20609322e-13 - art_sys_128: 1.49267604e-08 - art_sys_129: 5.02486891e-09 - art_sys_130: -6.25976109e-09 - art_sys_131: 2.79468175e-08 - art_sys_132: -9.58523485e-12 - art_sys_133: 5.02724224e-09 - art_sys_134: 3.06374995e-08 - art_sys_135: 1.67760697e-10 - art_sys_136: -1.31006903e-07 - art_sys_137: -3.61696022e-10 - art_sys_138: -3.95263776e-07 - art_sys_139: 9.61526031e-08 - art_sys_140: 3.84422797e-17 - art_sys_141: 9.81887432e-07 - art_sys_142: -0.0 - art_sys_143: -1.25934177e-07 - art_sys_144: -7.27619090e-07 - art_sys_145: -9.82201465e-07 - art_sys_146: 1.13932193e-10 - art_sys_147: -2.29566837e-10 - art_sys_148: -4.81909713e-09 - art_sys_149: -7.51678860e-10 - art_sys_150: 8.70106057e-11 - art_sys_151: 4.86183943e-09 - art_sys_152: 2.11561987e-09 - art_sys_153: 1.05429406e-10 - art_sys_154: -1.38478763e-09 - art_sys_155: 2.54446044e-09 - art_sys_156: -3.55121681e-09 - art_sys_157: -4.90625022e-09 + art_sys_51: -9.24457090e-24 + art_sys_52: 7.51635238e-41 + art_sys_53: 4.66298852e-40 + art_sys_54: 4.83631284e-40 + art_sys_55: 2.63318615e-40 + art_sys_56: -1.66343310e-40 + art_sys_57: -9.84555952e-22 + art_sys_58: -5.41565679e-20 + art_sys_59: -6.31467079e-37 + art_sys_60: -2.44873425e-36 + art_sys_61: -9.90944211e-20 + art_sys_62: 4.09852575e-37 + art_sys_63: -1.10248391e-35 + art_sys_64: 1.15236300e-14 + art_sys_65: 1.56006041e-15 + art_sys_66: 1.49877598e-14 + art_sys_67: 4.47860679e-14 + art_sys_68: -4.18053171e-14 + art_sys_69: 4.50313448e-14 + art_sys_70: 9.40154017e-14 + art_sys_71: 1.62063004e-13 + art_sys_72: -2.39676226e-14 + art_sys_73: -3.36639002e-14 + art_sys_74: 6.76262950e-20 + art_sys_75: 4.87183051e-14 + art_sys_76: -3.30374606e-14 + art_sys_77: 3.40674602e-14 + art_sys_78: 1.64015885e-14 + art_sys_79: 2.34676856e-14 + art_sys_80: -5.20333137e-15 + art_sys_81: -2.44054728e-14 + art_sys_82: -5.97315494e-27 + art_sys_83: 3.04100443e-16 + art_sys_84: 8.05041854e-17 + art_sys_85: 7.12252948e-16 + art_sys_86: -1.50740200e-16 + art_sys_87: -1.90364532e-14 + art_sys_88: -8.22568753e-15 + art_sys_89: -3.01652551e-17 + art_sys_90: -8.33491639e-15 + art_sys_91: 8.43559095e-28 + art_sys_92: 1.20431010e-17 + art_sys_93: 2.39862906e-18 + art_sys_94: -6.01962046e-15 + art_sys_95: -1.34368713e-16 + art_sys_96: -2.82491516e-25 + art_sys_97: 1.45973859e-25 + art_sys_98: 2.73549404e-17 + art_sys_99: -1.95946034e-24 + art_sys_100: 2.90414699e-15 + art_sys_101: 3.01466593e-21 + art_sys_102: 4.54601998e-15 + art_sys_103: 2.08724003e-21 + art_sys_104: -8.87179468e-23 + art_sys_105: -1.17776159e-13 + art_sys_106: 5.90196147e-20 + art_sys_107: -5.03005660e-14 + art_sys_108: -1.91737196e-13 + art_sys_109: -5.74840770e-12 + art_sys_110: -2.08633892e-13 + art_sys_111: -3.04815126e-21 + art_sys_112: 4.25959238e-18 + art_sys_113: 1.94995754e-21 + art_sys_114: -2.30542901e-12 + art_sys_115: -3.42860443e-21 + art_sys_116: -3.78423600e-13 + art_sys_117: 1.39797580e-13 + art_sys_118: 3.83994428e-19 + art_sys_119: -4.96148116e-12 + art_sys_120: 7.82704974e-19 + art_sys_121: 1.06920250e-11 + art_sys_122: -4.90004215e-19 + art_sys_123: 2.16534241e-11 + art_sys_124: -7.64507343e-21 + art_sys_125: -6.56607368e-11 + art_sys_126: -5.30788669e-17 + art_sys_127: -9.07626661e-09 + art_sys_128: 1.74357175e-19 + art_sys_129: 5.59951824e-12 + art_sys_130: 1.38638488e-08 + art_sys_131: 4.28674481e-11 + art_sys_132: 8.64733120e-17 + art_sys_133: 6.64715134e-09 + art_sys_134: 2.53048747e-12 + art_sys_135: -8.12996021e-15 + art_sys_136: -4.45261182e-10 + art_sys_137: -1.14713090e-08 + art_sys_138: 5.91308726e-13 + art_sys_139: 7.39739051e-09 + art_sys_140: 5.61578369e-10 + art_sys_141: -9.55396326e-09 + art_sys_142: 1.69698553e-11 + art_sys_143: -2.96463731e-08 + art_sys_144: -3.77404074e-08 + art_sys_145: -2.66943011e-10 + art_sys_146: 1.76444297e-07 + art_sys_147: 2.22338557e-09 + art_sys_148: 2.79930470e-09 + art_sys_149: 1.82042078e-09 + art_sys_150: -3.32609633e-07 + art_sys_151: -7.06073913e-08 + art_sys_152: 7.94921051e-09 + art_sys_153: -4.22144684e-07 + art_sys_154: -2.44599822e-17 + art_sys_155: 1.22527261e-08 + art_sys_156: -0.0 + art_sys_157: -2.54815792e-08 art_sys_158: -0.0 - art_sys_159: 2.25481582e-07 - art_sys_160: 2.25481582e-07 - art_sys_161: -1.96486397e-08 - art_sys_162: 7.37513108e-21 - art_sys_163: 0.0 - art_sys_164: 4.50039970e-21 - art_sys_165: 2.30921517e-17 - art_sys_166: -2.02183660e-17 - art_sys_167: -8.79153793e-18 - art_sys_168: -4.17561770e-18 - art_sys_169: -1.86312155e-18 - art_sys_170: -2.07519628e-18 - art_sys_171: 5.61312650e-19 - art_sys_172: 2.17412160e-19 - art_sys_173: 6.28812589e-19 - art_sys_174: -7.95775662e-22 - art_sys_175: -2.28405194e-20 - art_sys_176: 1.04009259e-21 - art_sys_177: -2.00503045e-20 - art_sys_178: -6.55760381e-21 - art_sys_179: -1.29578410e-20 - art_sys_180: -1.30174415e-20 - art_sys_181: -2.94814042e-22 - art_sys_182: 1.27135363e-22 - art_sys_183: -4.90264269e-24 - art_sys_184: 1.64026252e-24 - art_sys_185: 2.45928461e-22 + art_sys_159: 1.91443779e-07 + art_sys_160: 4.74672118e-08 + art_sys_161: -6.85998015e-08 + art_sys_162: -6.85998015e-08 + art_sys_163: 3.28817238e-09 + art_sys_164: 3.28817238e-09 + art_sys_165: 8.75687564e-23 + art_sys_166: -3.12193508e-23 + art_sys_167: -0.0 + art_sys_168: -5.19548813e-18 + art_sys_169: -2.31935065e-18 + art_sys_170: 7.51309590e-18 + art_sys_171: -7.72605180e-18 + art_sys_172: -3.80790615e-19 + art_sys_173: 5.88026906e-19 + art_sys_174: 1.83918111e-19 + art_sys_175: 2.92867307e-20 + art_sys_176: 4.03631000e-20 + art_sys_177: 1.77643346e-20 + art_sys_178: 4.31386636e-21 + art_sys_179: -4.86076874e-21 + art_sys_180: 3.39055513e-21 + art_sys_181: -2.81855233e-20 + art_sys_182: 1.22971532e-21 + art_sys_183: 1.27196462e-23 + art_sys_184: -2.60369578e-23 + art_sys_185: -9.42814493e-24 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -27908,167 +27908,167 @@ bins: art_sys_22: 0.0 art_sys_23: 0.0 art_sys_24: 0.0 - art_sys_25: -3.73900015e-73 - art_sys_26: 9.53910991e-67 - art_sys_27: 4.95404231e-59 - art_sys_28: -1.21145582e-58 - art_sys_29: -1.31170418e-38 - art_sys_30: -9.08579461e-37 - art_sys_31: -5.09717781e-36 - art_sys_32: -1.05673022e-34 - art_sys_33: 2.72250845e-32 - art_sys_34: 1.85504436e-31 - art_sys_35: 6.69603715e-31 - art_sys_36: -2.83714396e-48 - art_sys_37: 6.63792710e-48 - art_sys_38: -1.26206691e-30 - art_sys_39: 1.22484297e-47 - art_sys_40: -4.06066526e-48 - art_sys_41: 1.58003477e-47 - art_sys_42: -3.07623325e-28 - art_sys_43: -2.66574421e-45 - art_sys_44: -1.10645273e-27 - art_sys_45: -1.23508842e-44 - art_sys_46: 1.57088190e-45 - art_sys_47: 1.30835908e-27 - art_sys_48: 5.85414500e-44 - art_sys_49: 2.36911219e-45 + art_sys_25: 6.08244803e-113 + art_sys_26: 3.18626426e-107 + art_sys_27: -2.00123396e-100 + art_sys_28: 1.19731817e-99 + art_sys_29: 4.59873889e-89 + art_sys_30: 3.73777230e-86 + art_sys_31: 1.74839899e-83 + art_sys_32: -2.08855681e-75 + art_sys_33: -6.25898121e-70 + art_sys_34: -6.31053962e-63 + art_sys_35: -4.42382222e-64 + art_sys_36: 1.31170418e-38 + art_sys_37: 9.08579461e-37 + art_sys_38: 5.09717781e-36 + art_sys_39: 1.05673022e-34 + art_sys_40: 2.72250845e-32 + art_sys_41: -1.85504436e-31 + art_sys_42: -6.69603715e-31 + art_sys_43: -1.26206691e-30 + art_sys_44: 3.07623325e-28 + art_sys_45: 1.10645273e-27 + art_sys_46: -1.30835908e-27 + art_sys_47: -3.52480842e-44 + art_sys_48: -2.82159696e-42 + art_sys_49: -5.56229721e-43 art_sys_50: -1.29147098e-25 - art_sys_51: 9.46165279e-25 - art_sys_52: 7.28765377e-41 - art_sys_53: 2.75900394e-41 - art_sys_54: 4.35043626e-41 - art_sys_55: 2.96371600e-41 - art_sys_56: 1.42903082e-41 - art_sys_57: 1.17254575e-14 - art_sys_58: 8.51696351e-16 - art_sys_59: -4.18856874e-15 - art_sys_60: -6.32141817e-24 - art_sys_61: -1.24752241e-13 - art_sys_62: 8.23275447e-14 - art_sys_63: 6.92657010e-14 - art_sys_64: -1.31144764e-13 - art_sys_65: 1.95347175e-13 - art_sys_66: 8.98078222e-23 - art_sys_67: -2.19335118e-14 - art_sys_68: 3.05989690e-14 - art_sys_69: -7.13801191e-22 - art_sys_70: -3.51213756e-31 - art_sys_71: 4.55073455e-32 - art_sys_72: 1.38713908e-32 - art_sys_73: -5.13094782e-21 - art_sys_74: -9.42455626e-31 - art_sys_75: 3.62708520e-14 - art_sys_76: 4.54567387e-14 - art_sys_77: -2.32498006e-14 - art_sys_78: -1.61626941e-14 - art_sys_79: 1.60589517e-14 - art_sys_80: 2.31910437e-27 - art_sys_81: 1.70815911e-15 - art_sys_82: -1.67372473e-16 - art_sys_83: -6.43610887e-16 - art_sys_84: -1.59291317e-14 - art_sys_85: 1.34356310e-16 - art_sys_86: 3.11976286e-16 - art_sys_87: 1.10150768e-14 - art_sys_88: -4.62577077e-15 - art_sys_89: -4.54436644e-15 - art_sys_90: -3.99862031e-27 - art_sys_91: -5.70037220e-26 - art_sys_92: 4.43285421e-18 - art_sys_93: 1.31925651e-25 - art_sys_94: 1.60083623e-17 - art_sys_95: 7.38134373e-27 - art_sys_96: -2.91239311e-15 - art_sys_97: 1.45153686e-16 - art_sys_98: 3.41093378e-25 - art_sys_99: -2.64164615e-26 - art_sys_100: 3.34087504e-16 - art_sys_101: -1.28903638e-23 - art_sys_102: -7.23249092e-13 - art_sys_103: 6.14219944e-15 - art_sys_104: 5.35466183e-24 - art_sys_105: 3.42519432e-11 - art_sys_106: 2.21060075e-24 - art_sys_107: 1.27542149e-24 - art_sys_108: -1.49970959e-14 - art_sys_109: 1.04479370e-22 - art_sys_110: 2.61546090e-11 - art_sys_111: -5.18066021e-22 - art_sys_112: 9.61169902e-14 - art_sys_113: 2.11638253e-11 - art_sys_114: 4.65902000e-22 - art_sys_115: -7.15553662e-13 - art_sys_116: 5.79249040e-20 - art_sys_117: 1.40878143e-12 - art_sys_118: 7.32602074e-22 - art_sys_119: -3.14484445e-12 - art_sys_120: 5.83944103e-21 - art_sys_121: -2.98058476e-17 - art_sys_122: 1.77536344e-19 - art_sys_123: -1.24239119e-08 - art_sys_124: 3.73670176e-17 - art_sys_125: -3.24407168e-15 - art_sys_126: -9.51807825e-13 - art_sys_127: 2.27425702e-13 - art_sys_128: -1.30126337e-08 - art_sys_129: -6.30719366e-09 - art_sys_130: 1.16171071e-08 - art_sys_131: -2.02156673e-08 - art_sys_132: 6.76723182e-12 - art_sys_133: -3.56687272e-09 - art_sys_134: 1.68907219e-08 - art_sys_135: -1.20834988e-10 - art_sys_136: 2.50529888e-08 - art_sys_137: 6.04038002e-10 - art_sys_138: 3.07425199e-08 - art_sys_139: 5.62409719e-09 - art_sys_140: -2.53444659e-17 - art_sys_141: -6.12590467e-07 - art_sys_142: -0.0 - art_sys_143: 8.23160591e-08 - art_sys_144: 4.76452636e-07 - art_sys_145: 6.45990521e-07 - art_sys_146: -6.58786775e-11 - art_sys_147: 1.33958134e-10 - art_sys_148: 3.66861585e-09 - art_sys_149: 5.77358598e-10 - art_sys_150: -3.04383529e-11 - art_sys_151: 1.06602809e-09 - art_sys_152: 3.40681766e-09 - art_sys_153: 1.90272554e-10 - art_sys_154: -2.52867292e-09 - art_sys_155: 4.60559456e-09 - art_sys_156: -5.81467368e-10 - art_sys_157: -1.64334705e-09 + art_sys_51: -9.46165279e-25 + art_sys_52: -1.72169925e-41 + art_sys_53: 3.93733210e-41 + art_sys_54: 2.35211212e-41 + art_sys_55: -1.55090324e-41 + art_sys_56: -9.55666527e-42 + art_sys_57: 6.32141821e-24 + art_sys_58: -8.98078225e-23 + art_sys_59: -9.06923003e-40 + art_sys_60: -7.54562714e-39 + art_sys_61: -7.13801197e-22 + art_sys_62: -2.47630086e-39 + art_sys_63: 7.05457199e-37 + art_sys_64: -2.82498256e-15 + art_sys_65: -1.47413522e-14 + art_sys_66: 3.45832148e-14 + art_sys_67: 8.99847767e-14 + art_sys_68: -6.27188150e-14 + art_sys_69: 5.47697955e-14 + art_sys_70: 9.48854730e-14 + art_sys_71: 1.25426222e-13 + art_sys_72: -1.49270987e-14 + art_sys_73: -1.65645826e-14 + art_sys_74: -5.13094782e-21 + art_sys_75: 1.57349283e-14 + art_sys_76: -3.39417671e-14 + art_sys_77: 7.57380626e-16 + art_sys_78: -1.44335617e-15 + art_sys_79: 5.30501021e-15 + art_sys_80: 1.11374973e-15 + art_sys_81: -4.70263432e-15 + art_sys_82: -1.15095314e-27 + art_sys_83: 3.53569288e-16 + art_sys_84: 7.26534693e-16 + art_sys_85: 1.62258354e-16 + art_sys_86: -9.80746906e-17 + art_sys_87: -1.93371369e-15 + art_sys_88: -5.89237247e-16 + art_sys_89: -6.69411083e-17 + art_sys_90: -4.77770769e-16 + art_sys_91: 1.93826481e-28 + art_sys_92: 1.46691174e-17 + art_sys_93: 2.17302627e-18 + art_sys_94: -1.12510813e-16 + art_sys_95: 4.43282479e-18 + art_sys_96: 9.29981663e-27 + art_sys_97: -4.81564283e-27 + art_sys_98: -1.60083916e-17 + art_sys_99: -1.06965569e-24 + art_sys_100: -1.45154178e-16 + art_sys_101: -1.50888862e-22 + art_sys_102: 3.34088577e-16 + art_sys_103: -1.03877663e-22 + art_sys_104: -1.67528854e-24 + art_sys_105: -4.56960001e-13 + art_sys_106: 4.33718715e-21 + art_sys_107: 6.14218209e-15 + art_sys_108: -7.49440785e-13 + art_sys_109: -2.59649362e-11 + art_sys_110: 1.49971776e-14 + art_sys_111: 4.54443995e-22 + art_sys_112: -3.06102072e-19 + art_sys_113: 1.48988371e-22 + art_sys_114: -5.18699217e-12 + art_sys_115: 4.10232664e-22 + art_sys_116: 9.60530652e-14 + art_sys_117: -7.82649025e-12 + art_sys_118: -2.78137020e-20 + art_sys_119: 7.15296811e-13 + art_sys_120: -9.42022166e-20 + art_sys_121: 2.79505803e-11 + art_sys_122: 3.50487784e-20 + art_sys_123: 7.47566828e-11 + art_sys_124: 4.64652915e-20 + art_sys_125: -1.30600646e-10 + art_sys_126: -3.74770163e-16 + art_sys_127: -4.16275061e-08 + art_sys_128: -2.23920894e-18 + art_sys_129: 4.79305326e-11 + art_sys_130: -1.39973859e-08 + art_sys_131: -4.67723530e-10 + art_sys_132: 4.39991223e-16 + art_sys_133: -1.08089943e-09 + art_sys_134: 1.19060167e-11 + art_sys_135: -3.79358195e-14 + art_sys_136: -5.29096701e-09 + art_sys_137: -2.23237879e-08 + art_sys_138: 2.81926691e-12 + art_sys_139: 2.12709827e-08 + art_sys_140: 4.24295697e-10 + art_sys_141: -4.57382132e-08 + art_sys_142: 7.94034014e-11 + art_sys_143: 1.60197559e-08 + art_sys_144: 1.37578029e-08 + art_sys_145: -1.74614256e-09 + art_sys_146: -7.54945187e-08 + art_sys_147: -6.17297252e-10 + art_sys_148: -8.00599129e-10 + art_sys_149: 3.18791983e-09 + art_sys_150: 1.84510974e-07 + art_sys_151: -5.60023370e-08 + art_sys_152: -2.31170876e-09 + art_sys_153: -1.15410189e-07 + art_sys_154: -8.11868576e-17 + art_sys_155: -3.52044811e-09 + art_sys_156: -0.0 + art_sys_157: -8.04693408e-08 art_sys_158: -0.0 - art_sys_159: -2.10807194e-07 - art_sys_160: -2.10807194e-07 - art_sys_161: -2.38833838e-08 - art_sys_162: 8.62657116e-21 - art_sys_163: 0.0 - art_sys_164: 5.17408156e-21 - art_sys_165: 2.75975055e-17 - art_sys_166: -5.32773102e-17 - art_sys_167: 1.43974759e-17 - art_sys_168: -1.13075458e-17 - art_sys_169: -4.82045205e-18 - art_sys_170: 1.82139349e-18 - art_sys_171: 8.87086796e-19 - art_sys_172: 2.82104751e-19 - art_sys_173: 1.60328763e-18 - art_sys_174: 9.11006259e-22 - art_sys_175: -3.63908608e-20 - art_sys_176: -7.79604751e-21 - art_sys_177: -3.47799220e-20 - art_sys_178: -1.20124065e-20 - art_sys_179: -1.78761668e-20 - art_sys_180: -2.37999063e-20 - art_sys_181: -2.53421228e-22 - art_sys_182: 3.26089917e-23 - art_sys_183: -1.01166069e-23 - art_sys_184: 2.97878584e-24 - art_sys_185: 5.21977624e-22 + art_sys_159: 5.68960753e-07 + art_sys_160: 9.17536322e-09 + art_sys_161: 7.38663217e-09 + art_sys_162: 7.38663217e-09 + art_sys_163: -6.72456649e-08 + art_sys_164: -6.72456649e-08 + art_sys_165: 6.38298078e-22 + art_sys_166: -2.09134063e-22 + art_sys_167: -0.0 + art_sys_168: 1.08989632e-17 + art_sys_169: 2.16605222e-18 + art_sys_170: -2.55957695e-18 + art_sys_171: 2.48527967e-18 + art_sys_172: 2.35988442e-19 + art_sys_173: -1.51671966e-19 + art_sys_174: -6.57919847e-20 + art_sys_175: -1.64670448e-20 + art_sys_176: -8.27400950e-21 + art_sys_177: -3.04393284e-21 + art_sys_178: -3.81614249e-21 + art_sys_179: 1.29537430e-21 + art_sys_180: 1.44647599e-20 + art_sys_181: 7.50826687e-21 + art_sys_182: 2.97908417e-22 + art_sys_183: -1.70900880e-23 + art_sys_184: 7.33740450e-24 + art_sys_185: 2.65010814e-24 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -30831,154 +30831,154 @@ bins: art_sys_35: 0.0 art_sys_36: 0.0 art_sys_37: 0.0 - art_sys_38: -3.61768887e-277 - art_sys_39: 5.61924312e-256 - art_sys_40: 3.77317071e-251 - art_sys_41: -5.15192978e-240 - art_sys_42: 1.33084959e-140 - art_sys_43: 1.65531929e-140 - art_sys_44: 9.59413360e-134 - art_sys_45: -1.70021178e-124 - art_sys_46: 4.43773745e-117 - art_sys_47: 3.57606052e-111 - art_sys_48: -3.80623040e-105 - art_sys_49: 1.25417564e-97 - art_sys_50: 1.09268285e-89 - art_sys_51: -8.69991158e-77 - art_sys_52: -4.04678139e-85 - art_sys_53: -3.32741928e-87 - art_sys_54: 3.51029310e-78 - art_sys_55: 1.57160984e-75 - art_sys_56: -9.43716520e-73 - art_sys_57: -2.16787412e+02 - art_sys_58: -4.37790419e+01 - art_sys_59: 1.67063222e+01 - art_sys_60: -8.88481246e-19 - art_sys_61: 1.65771551e+00 - art_sys_62: -5.96340175e-02 - art_sys_63: -2.49903218e-02 - art_sys_64: 1.15349606e-02 - art_sys_65: -1.40806357e-03 - art_sys_66: 3.04585484e-20 - art_sys_67: 6.69009329e-06 - art_sys_68: -5.60438486e-06 - art_sys_69: -1.72917619e-19 - art_sys_70: 3.51987571e-19 - art_sys_71: -5.36100020e-20 - art_sys_72: -1.63300862e-20 - art_sys_73: 4.82021047e-20 - art_sys_74: 3.89290130e-20 + art_sys_38: 0.0 + art_sys_39: 0.0 + art_sys_40: 0.0 + art_sys_41: 0.0 + art_sys_42: 0.0 + art_sys_43: 0.0 + art_sys_44: 1.36115420e-203 + art_sys_45: 6.86475408e-197 + art_sys_46: 7.85781685e-147 + art_sys_47: 4.35061903e-152 + art_sys_48: -2.34538973e-144 + art_sys_49: 2.00116980e-135 + art_sys_50: -8.58014680e-128 + art_sys_51: 3.56003142e-117 + art_sys_52: 3.95534849e-134 + art_sys_53: 1.26323980e-130 + art_sys_54: 1.49468448e-125 + art_sys_55: 3.68559318e-122 + art_sys_56: 5.94361651e-119 + art_sys_57: 2.11815837e-40 + art_sys_58: 1.04958410e-26 + art_sys_59: -4.02762764e-38 + art_sys_60: 4.86963774e-35 + art_sys_61: 1.91967639e-20 + art_sys_62: -5.32868957e-35 + art_sys_63: -9.00106835e-25 + art_sys_64: -2.16787412e+02 + art_sys_65: -4.37790419e+01 + art_sys_66: 1.67063222e+01 + art_sys_67: -1.65771551e+00 + art_sys_68: 5.96340175e-02 + art_sys_69: -2.49903218e-02 + art_sys_70: -1.15349606e-02 + art_sys_71: -1.40806357e-03 + art_sys_72: 6.69009329e-06 + art_sys_73: 5.60438486e-06 + art_sys_74: 9.42122663e-20 art_sys_75: -8.94736478e-07 - art_sys_76: 4.94587834e-20 - art_sys_77: -7.04003224e-20 - art_sys_78: 7.77103825e-20 + art_sys_76: 8.96837063e-20 + art_sys_77: -1.04004457e-19 + art_sys_78: -1.23421769e-22 art_sys_79: -1.28202766e-07 - art_sys_80: -9.78610716e-20 - art_sys_81: 5.49367958e-21 - art_sys_82: 2.44961077e-21 - art_sys_83: -1.57389699e-21 - art_sys_84: 7.21304953e-08 - art_sys_85: 2.87390632e-23 - art_sys_86: -6.62685161e-23 - art_sys_87: -7.33233485e-09 - art_sys_88: 1.47671463e-09 - art_sys_89: 6.82245377e-10 - art_sys_90: 2.89880031e-20 - art_sys_91: 2.58076638e-19 - art_sys_92: 9.93713860e-20 - art_sys_93: -6.18125393e-19 - art_sys_94: -1.25298411e-19 - art_sys_95: 1.16583900e-20 - art_sys_96: 5.60659522e-11 - art_sys_97: -1.10756484e-21 - art_sys_98: -9.26652967e-21 - art_sys_99: 5.53591145e-21 - art_sys_100: -1.87384852e-20 - art_sys_101: -1.92194185e-20 - art_sys_102: 9.55318175e-13 - art_sys_103: 1.09515591e-19 - art_sys_104: -1.93499632e-20 - art_sys_105: -3.81953300e-13 - art_sys_106: -8.55871128e-22 - art_sys_107: -4.52874609e-22 - art_sys_108: -8.89193215e-21 - art_sys_109: -1.23624144e-20 - art_sys_110: 1.87843088e-13 - art_sys_111: 3.30348703e-21 - art_sys_112: -1.89215748e-20 - art_sys_113: -7.10474786e-14 - art_sys_114: 4.49224602e-21 - art_sys_115: -1.59129156e-20 - art_sys_116: -8.65566469e-21 - art_sys_117: 3.23568754e-14 - art_sys_118: -1.25593500e-21 - art_sys_119: -4.74508028e-20 - art_sys_120: 1.64698963e-21 - art_sys_121: -5.77261131e-20 - art_sys_122: -7.38900172e-21 - art_sys_123: 8.13601642e-20 - art_sys_124: 1.47088482e-20 - art_sys_125: -5.34840336e-21 - art_sys_126: 4.21276941e-21 - art_sys_127: 1.48190674e-20 - art_sys_128: 1.04171689e-19 - art_sys_129: 3.36349859e-20 - art_sys_130: -2.73608285e-20 - art_sys_131: 8.36421061e-21 - art_sys_132: -2.08160255e-20 - art_sys_133: -9.89186143e-22 - art_sys_134: -1.94659389e-20 - art_sys_135: -1.93893816e-21 - art_sys_136: 1.50127157e-19 - art_sys_137: -1.38390267e-21 - art_sys_138: -1.24017207e-19 - art_sys_139: 3.85073000e-21 - art_sys_140: 6.02937721e-23 - art_sys_141: -4.43889907e-20 - art_sys_142: 0.0 - art_sys_143: 4.61705951e-21 - art_sys_144: 2.80943049e-20 - art_sys_145: 4.68947459e-20 - art_sys_146: -1.38019883e-14 - art_sys_147: -5.37743156e-15 - art_sys_148: -1.98075904e-15 - art_sys_149: -7.30520900e-16 - art_sys_150: 2.37741197e-16 - art_sys_151: 7.85053571e-17 - art_sys_152: -2.54073911e-17 - art_sys_153: 8.30672072e-18 - art_sys_154: -2.56648792e-18 - art_sys_155: 7.74070353e-19 - art_sys_156: -2.32073132e-19 - art_sys_157: 1.19074512e-20 + art_sys_80: -1.37887257e-20 + art_sys_81: 7.21304953e-08 + art_sys_82: 9.36529611e-20 + art_sys_83: -9.03909508e-22 + art_sys_84: 8.32541424e-22 + art_sys_85: -1.83221143e-22 + art_sys_86: -2.43828275e-22 + art_sys_87: 7.33233485e-09 + art_sys_88: 1.47671462e-09 + art_sys_89: -5.16436867e-24 + art_sys_90: 6.82245378e-10 + art_sys_91: -6.12642427e-20 + art_sys_92: -1.91253860e-25 + art_sys_93: -4.74160326e-25 + art_sys_94: 5.60659518e-11 + art_sys_95: -1.50409249e-19 + art_sys_96: -3.46589518e-20 + art_sys_97: 4.32072918e-20 + art_sys_98: 7.04229071e-22 + art_sys_99: -1.04513019e-20 + art_sys_100: -9.95905892e-19 + art_sys_101: -2.48387678e-20 + art_sys_102: 1.04725982e-19 + art_sys_103: -1.93660778e-19 + art_sys_104: 2.51874208e-20 + art_sys_105: 9.55312826e-13 + art_sys_106: 4.59944572e-20 + art_sys_107: -8.32603193e-21 + art_sys_108: 3.81954669e-13 + art_sys_109: 1.87842970e-13 + art_sys_110: -4.56908532e-20 + art_sys_111: -1.76187383e-20 + art_sys_112: -5.00348398e-21 + art_sys_113: 1.93021675e-21 + art_sys_114: -7.10477154e-14 + art_sys_115: -1.11039638e-20 + art_sys_116: -1.27254075e-21 + art_sys_117: -3.23567387e-14 + art_sys_118: 1.27476866e-20 + art_sys_119: 1.56993126e-20 + art_sys_120: 3.25829192e-21 + art_sys_121: -1.38018157e-14 + art_sys_122: 2.31677245e-20 + art_sys_123: 1.10443928e-20 + art_sys_124: -3.43161862e-22 + art_sys_125: -5.37748618e-15 + art_sys_126: -8.01175541e-22 + art_sys_127: 1.20251662e-19 + art_sys_128: 5.51981730e-21 + art_sys_129: 1.98077065e-15 + art_sys_130: -1.35790392e-20 + art_sys_131: -7.30519453e-16 + art_sys_132: -2.52433941e-20 + art_sys_133: 5.53664052e-20 + art_sys_134: 1.07222014e-21 + art_sys_135: 9.43872816e-23 + art_sys_136: -2.37709006e-16 + art_sys_137: 9.87917823e-20 + art_sys_138: 1.58628315e-22 + art_sys_139: -1.00781401e-20 + art_sys_140: 7.85290703e-17 + art_sys_141: -2.27695042e-20 + art_sys_142: 1.31224798e-21 + art_sys_143: 2.26471053e-20 + art_sys_144: -2.53522351e-17 + art_sys_145: 5.85473438e-22 + art_sys_146: -2.10692388e-20 + art_sys_147: 8.31904799e-18 + art_sys_148: 2.45112778e-18 + art_sys_149: -7.63586026e-23 + art_sys_150: -1.00502515e-20 + art_sys_151: -5.08249674e-21 + art_sys_152: -8.63019837e-19 + art_sys_153: 1.38823897e-20 + art_sys_154: -7.56561914e-23 + art_sys_155: 1.77922339e-19 + art_sys_156: 0.0 + art_sys_157: -6.80974677e-22 art_sys_158: 0.0 - art_sys_159: -3.80214466e-21 - art_sys_160: -3.80214466e-21 - art_sys_161: -1.69452667e-21 - art_sys_162: 3.67346223e-34 - art_sys_163: 0.0 - art_sys_164: 1.34315466e-34 - art_sys_165: 5.85143418e-27 - art_sys_166: -1.03497377e-27 - art_sys_167: 1.77962779e-27 - art_sys_168: -6.79413978e-28 - art_sys_169: -7.81225711e-29 - art_sys_170: 1.66877323e-28 - art_sys_171: -2.10229974e-26 - art_sys_172: 9.36543324e-26 - art_sys_173: 1.27582292e-27 - art_sys_174: -1.70714911e-32 - art_sys_175: -2.72483408e-28 - art_sys_176: -1.21661132e-28 - art_sys_177: 7.32187861e-29 - art_sys_178: 4.29608925e-30 - art_sys_179: 5.36568890e-30 - art_sys_180: -2.52398734e-31 - art_sys_181: 1.48806139e-30 - art_sys_182: -9.88654698e-31 - art_sys_183: -1.30934585e-32 - art_sys_184: -2.99789599e-34 - art_sys_185: 2.27391205e-34 + art_sys_159: 3.29041200e-21 + art_sys_160: -3.41667397e-20 + art_sys_161: 2.69500030e-22 + art_sys_162: 2.69500030e-22 + art_sys_163: -6.61138280e-22 + art_sys_164: -6.61138280e-22 + art_sys_165: 1.08804407e-34 + art_sys_166: -5.40388211e-35 + art_sys_167: -0.0 + art_sys_168: 2.21472602e-28 + art_sys_169: -3.18359699e-27 + art_sys_170: 1.28035150e-27 + art_sys_171: -7.63496562e-26 + art_sys_172: -6.63773547e-27 + art_sys_173: 1.91354883e-28 + art_sys_174: 4.54639631e-28 + art_sys_175: -2.46841040e-28 + art_sys_176: 2.17486139e-29 + art_sys_177: -5.83328084e-31 + art_sys_178: -2.51691922e-32 + art_sys_179: -8.94379283e-33 + art_sys_180: 8.86327532e-34 + art_sys_181: -1.40696929e-30 + art_sys_182: 1.45431699e-29 + art_sys_183: -1.66521029e-31 + art_sys_184: 9.89157403e-34 + art_sys_185: 9.90190209e-34 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -31122,154 +31122,154 @@ bins: art_sys_35: 0.0 art_sys_36: 0.0 art_sys_37: 0.0 - art_sys_38: -2.25883952e-290 - art_sys_39: 2.62593868e-256 - art_sys_40: 1.76324722e-251 - art_sys_41: -2.40755766e-240 - art_sys_42: 7.17209184e-141 - art_sys_43: 8.92069405e-141 - art_sys_44: 5.17038199e-134 - art_sys_45: -9.16262452e-125 - art_sys_46: 2.39154454e-117 - art_sys_47: 1.92717755e-111 - art_sys_48: -2.05121858e-105 - art_sys_49: 6.75888769e-98 - art_sys_50: 5.88858566e-90 - art_sys_51: -4.68847611e-77 - art_sys_52: -2.18085411e-85 - art_sys_53: -1.79318211e-87 - art_sys_54: 1.89173478e-78 - art_sys_55: 8.46957480e-76 - art_sys_56: -5.08579003e-73 - art_sys_57: -1.16829074e+02 - art_sys_58: 7.20190727e+01 - art_sys_59: -2.96178110e+01 - art_sys_60: 1.26790148e-18 - art_sys_61: -5.21590718e+00 - art_sys_62: 2.01750628e-01 - art_sys_63: 8.71248165e-02 - art_sys_64: -4.37592898e-02 - art_sys_65: 5.84608620e-03 - art_sys_66: 8.86697426e-19 - art_sys_67: -3.84425099e-05 - art_sys_68: 3.05136106e-05 - art_sys_69: 3.10257213e-19 - art_sys_70: -4.93099133e-19 - art_sys_71: -1.31523730e-20 - art_sys_72: 7.22695306e-20 - art_sys_73: -3.21550904e-20 - art_sys_74: -7.06549963e-20 + art_sys_38: 0.0 + art_sys_39: 0.0 + art_sys_40: 0.0 + art_sys_41: 0.0 + art_sys_42: 0.0 + art_sys_43: 0.0 + art_sys_44: 7.38907743e-204 + art_sys_45: 3.72655789e-197 + art_sys_46: 4.23504235e-147 + art_sys_47: 2.34480597e-152 + art_sys_48: -1.26406927e-144 + art_sys_49: 1.07854879e-135 + art_sys_50: -4.62434869e-128 + art_sys_51: 1.91871154e-117 + art_sys_52: 2.13177129e-134 + art_sys_53: 6.80834660e-131 + art_sys_54: 8.05573888e-126 + art_sys_55: 1.98638419e-122 + art_sys_56: 3.20336655e-119 + art_sys_57: 1.14149839e-40 + art_sys_58: 5.65632189e-27 + art_sys_59: -2.17053198e-38 + art_sys_60: 2.62430030e-35 + art_sys_61: 1.03453431e-20 + art_sys_62: -2.87171478e-35 + art_sys_63: -4.85077281e-25 + art_sys_64: -1.16829074e+02 + art_sys_65: 7.20190727e+01 + art_sys_66: -2.96178110e+01 + art_sys_67: 5.21590718e+00 + art_sys_68: -2.01750628e-01 + art_sys_69: 8.71248165e-02 + art_sys_70: 4.37592898e-02 + art_sys_71: 5.84608620e-03 + art_sys_72: -3.84425099e-05 + art_sys_73: -3.05136106e-05 + art_sys_74: -2.34663213e-19 art_sys_75: 4.97968490e-06 - art_sys_76: -3.29588109e-19 - art_sys_77: 4.85182345e-19 - art_sys_78: -5.44354345e-19 + art_sys_76: -6.47359711e-19 + art_sys_77: 7.22360641e-19 + art_sys_78: 2.22609336e-20 art_sys_79: 8.71994167e-07 - art_sys_80: -2.05832180e-20 - art_sys_81: -3.37845828e-20 - art_sys_82: -1.58688001e-20 - art_sys_83: 9.84029093e-21 - art_sys_84: -4.42884148e-07 - art_sys_85: -2.85591670e-22 - art_sys_86: 4.40634516e-22 - art_sys_87: 5.16165864e-08 - art_sys_88: -9.48635853e-09 - art_sys_89: -4.53990274e-09 - art_sys_90: -1.97091949e-19 - art_sys_91: -1.55434814e-18 - art_sys_92: 7.79050541e-20 - art_sys_93: 3.66292318e-18 - art_sys_94: 8.16483038e-21 - art_sys_95: -1.46201575e-20 - art_sys_96: -3.72932811e-10 - art_sys_97: -2.06058956e-20 - art_sys_98: -2.88973144e-20 - art_sys_99: -2.78191236e-20 - art_sys_100: 4.45897995e-20 - art_sys_101: 7.50014657e-21 - art_sys_102: -5.00374610e-12 - art_sys_103: -6.24731812e-19 - art_sys_104: -3.83298069e-22 - art_sys_105: 2.58441818e-12 - art_sys_106: -2.26148634e-20 - art_sys_107: 5.60902700e-21 - art_sys_108: -2.20122518e-20 - art_sys_109: -1.52918072e-20 - art_sys_110: -1.13057085e-12 - art_sys_111: 3.33238324e-20 - art_sys_112: -6.88014845e-22 - art_sys_113: 4.54210881e-13 - art_sys_114: 9.65532380e-22 - art_sys_115: 1.47279429e-20 - art_sys_116: 4.72175991e-20 - art_sys_117: -2.08213530e-13 - art_sys_118: -3.05743948e-21 - art_sys_119: 3.72497523e-19 - art_sys_120: -3.15830555e-21 - art_sys_121: 3.72579633e-19 - art_sys_122: 6.90099755e-20 - art_sys_123: -2.32094479e-19 - art_sys_124: -8.38527888e-20 - art_sys_125: 3.31201763e-20 - art_sys_126: -1.56910269e-20 - art_sys_127: -1.02464520e-19 - art_sys_128: -3.83248321e-19 - art_sys_129: -1.32363584e-19 - art_sys_130: 7.17253418e-20 - art_sys_131: -2.64591654e-20 - art_sys_132: 1.46370643e-19 - art_sys_133: 1.19798292e-20 - art_sys_134: 1.29756388e-19 - art_sys_135: 1.83181484e-20 - art_sys_136: -9.97145652e-19 - art_sys_137: 9.03421045e-21 - art_sys_138: 8.28182972e-19 - art_sys_139: -1.86945438e-20 - art_sys_140: 3.23549276e-22 - art_sys_141: 3.00566731e-19 - art_sys_142: -0.0 - art_sys_143: -3.01805603e-20 - art_sys_144: -1.83272073e-19 - art_sys_145: -3.16071263e-19 - art_sys_146: 8.95513770e-14 - art_sys_147: 3.53784916e-14 - art_sys_148: 1.30816771e-14 - art_sys_149: 4.86216023e-15 - art_sys_150: -1.58708434e-15 - art_sys_151: -5.25656712e-16 - art_sys_152: 1.70412488e-16 - art_sys_153: -5.57592621e-17 - art_sys_154: 1.72402441e-17 - art_sys_155: -5.20084920e-18 - art_sys_156: 1.55952482e-18 - art_sys_157: -7.99393905e-20 + art_sys_80: 8.65811138e-20 + art_sys_81: -4.42884148e-07 + art_sys_82: -3.06769305e-19 + art_sys_83: 6.18777539e-21 + art_sys_84: -5.93381310e-21 + art_sys_85: 1.40190969e-21 + art_sys_86: 1.70121205e-21 + art_sys_87: -5.16165863e-08 + art_sys_88: -9.48635852e-09 + art_sys_89: 3.43259502e-23 + art_sys_90: -4.53990275e-09 + art_sys_91: -7.27503417e-20 + art_sys_92: 1.29198037e-24 + art_sys_93: 3.15137939e-24 + art_sys_94: -3.72932809e-10 + art_sys_95: -4.78125842e-20 + art_sys_96: -5.57980852e-20 + art_sys_97: -4.76416601e-20 + art_sys_98: 4.31667808e-19 + art_sys_99: 1.85971226e-20 + art_sys_100: 7.04943339e-18 + art_sys_101: 2.13843686e-19 + art_sys_102: -2.45749185e-19 + art_sys_103: 1.34120119e-18 + art_sys_104: -1.06775435e-19 + art_sys_105: -5.00370969e-12 + art_sys_106: -6.30035389e-20 + art_sys_107: 1.96873359e-20 + art_sys_108: -2.58442701e-12 + art_sys_109: -1.13057006e-12 + art_sys_110: 3.06250020e-19 + art_sys_111: 9.52532728e-20 + art_sys_112: 6.79466047e-20 + art_sys_113: -3.39127394e-20 + art_sys_114: 4.54212386e-13 + art_sys_115: -1.42826735e-20 + art_sys_116: -3.48247991e-21 + art_sys_117: 2.08212630e-13 + art_sys_118: 2.36703278e-20 + art_sys_119: -9.94721134e-20 + art_sys_120: -1.12431808e-20 + art_sys_121: 8.95502735e-14 + art_sys_122: -1.67858358e-19 + art_sys_123: 2.71983705e-21 + art_sys_124: 6.34267054e-21 + art_sys_125: 3.53788465e-14 + art_sys_126: 1.59757544e-20 + art_sys_127: -3.64064177e-19 + art_sys_128: 4.37268286e-22 + art_sys_129: -1.30817582e-14 + art_sys_130: 7.00878108e-21 + art_sys_131: 4.86215021e-15 + art_sys_132: 1.45323433e-19 + art_sys_133: -4.03541441e-19 + art_sys_134: -9.88924556e-22 + art_sys_135: -7.06679920e-21 + art_sys_136: 1.58687148e-15 + art_sys_137: -5.48910335e-19 + art_sys_138: -2.75566163e-22 + art_sys_139: 3.13668322e-20 + art_sys_140: -5.25815622e-16 + art_sys_141: 1.82764950e-19 + art_sys_142: -1.99374183e-21 + art_sys_143: -1.23949058e-19 + art_sys_144: 1.70042577e-16 + art_sys_145: 9.17710123e-22 + art_sys_146: 1.19126381e-19 + art_sys_147: -5.58419600e-17 + art_sys_148: -1.64657063e-17 + art_sys_149: -7.72275255e-22 + art_sys_150: 6.65444941e-20 + art_sys_151: 4.37226807e-20 + art_sys_152: 5.79830456e-18 + art_sys_153: -8.91293234e-20 + art_sys_154: -3.18528183e-22 + art_sys_155: -1.19587208e-18 + art_sys_156: -0.0 + art_sys_157: 3.81094792e-21 art_sys_158: -0.0 - art_sys_159: 2.49957835e-20 - art_sys_160: 2.49957835e-20 - art_sys_161: 1.14173359e-20 - art_sys_162: -2.47998982e-33 - art_sys_163: -0.0 - art_sys_164: -9.09663559e-34 - art_sys_165: -2.04356279e-26 - art_sys_166: 5.60445071e-27 - art_sys_167: -1.19531683e-26 - art_sys_168: 2.72490295e-27 - art_sys_169: 1.64602192e-27 - art_sys_170: 3.91075900e-27 - art_sys_171: -4.42795235e-26 - art_sys_172: -7.65598192e-26 - art_sys_173: 5.98280256e-27 - art_sys_174: 1.14709554e-31 - art_sys_175: -6.11535747e-28 - art_sys_176: -2.93144129e-29 - art_sys_177: 1.30526807e-28 - art_sys_178: 8.75063432e-30 - art_sys_179: -8.02443188e-30 - art_sys_180: 8.80310765e-31 - art_sys_181: 1.19998016e-30 - art_sys_182: 1.32902840e-31 - art_sys_183: 4.23649165e-32 - art_sys_184: 2.26968529e-33 - art_sys_185: -1.52816829e-33 + art_sys_159: -1.85024539e-20 + art_sys_160: 2.29653545e-19 + art_sys_161: -1.80943272e-21 + art_sys_162: -1.80943272e-21 + art_sys_163: 4.14495452e-21 + art_sys_164: 4.14495452e-21 + art_sys_165: -7.28285954e-34 + art_sys_166: 3.62203271e-34 + art_sys_167: 0.0 + art_sys_168: -1.08460071e-28 + art_sys_169: 6.68881862e-27 + art_sys_170: -1.24928809e-26 + art_sys_171: -4.99860880e-26 + art_sys_172: -8.27578988e-27 + art_sys_173: -2.50099880e-27 + art_sys_174: -8.97783686e-28 + art_sys_175: 1.11765174e-28 + art_sys_176: -1.17961683e-29 + art_sys_177: -3.37583495e-32 + art_sys_178: -8.47304786e-32 + art_sys_179: 6.01475192e-32 + art_sys_180: -5.87028541e-33 + art_sys_181: 1.64258000e-30 + art_sys_182: -1.67390048e-29 + art_sys_183: -9.08325248e-33 + art_sys_184: -7.08339900e-33 + art_sys_185: -6.65055568e-33 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -31413,154 +31413,154 @@ bins: art_sys_35: 0.0 art_sys_36: 0.0 art_sys_37: 0.0 - art_sys_38: -7.32313064e-278 - art_sys_39: 2.22469666e-257 - art_sys_40: 1.49382409e-252 - art_sys_41: -2.03968405e-241 - art_sys_42: 1.08869633e-141 - art_sys_43: 1.35412751e-141 - art_sys_44: 7.84844371e-135 - art_sys_45: -1.39085164e-125 - art_sys_46: 3.63027388e-118 - art_sys_47: 2.92538241e-112 - art_sys_48: -3.11367199e-106 - art_sys_49: 1.02597351e-98 - art_sys_50: 8.93864964e-91 - art_sys_51: -7.11692887e-78 - art_sys_52: -3.31045380e-86 - art_sys_53: -2.72198242e-88 - art_sys_54: 2.87158164e-79 - art_sys_55: 1.28564932e-76 - art_sys_56: -7.72003633e-74 - art_sys_57: -1.77342112e+01 - art_sys_58: 7.93233911e+01 - art_sys_59: 2.09716342e+01 - art_sys_60: -2.87499626e-18 - art_sys_61: 8.34994666e+00 - art_sys_62: -5.61705271e-01 - art_sys_63: -2.11673834e-01 - art_sys_64: 1.23598004e-01 - art_sys_65: -1.82633582e-02 - art_sys_66: 1.61216020e-19 - art_sys_67: 1.19068463e-04 - art_sys_68: -1.06131427e-04 - art_sys_69: 3.07650150e-20 - art_sys_70: 2.76969060e-20 - art_sys_71: 2.95682174e-19 - art_sys_72: -2.85064909e-19 - art_sys_73: -9.22715832e-20 - art_sys_74: -6.06135445e-21 + art_sys_38: 0.0 + art_sys_39: 0.0 + art_sys_40: 0.0 + art_sys_41: 0.0 + art_sys_42: 0.0 + art_sys_43: 0.0 + art_sys_44: 1.15905966e-204 + art_sys_45: 5.84552381e-198 + art_sys_46: 6.43135188e-148 + art_sys_47: 3.56083151e-153 + art_sys_48: -1.91962054e-145 + art_sys_49: 1.63788841e-136 + art_sys_50: -7.02255401e-129 + art_sys_51: 2.91376284e-118 + art_sys_52: 3.23731622e-135 + art_sys_53: 1.03391818e-131 + art_sys_54: 1.22334766e-126 + art_sys_55: 3.01653081e-123 + art_sys_56: 4.86464497e-120 + art_sys_57: 1.73275137e-41 + art_sys_58: 8.58608263e-28 + art_sys_59: -3.29478542e-39 + art_sys_60: 3.98358859e-36 + art_sys_61: 1.57038394e-21 + art_sys_62: -4.35915848e-36 + art_sys_63: -7.36328961e-26 + art_sys_64: -1.77342112e+01 + art_sys_65: 7.93233911e+01 + art_sys_66: 2.09716342e+01 + art_sys_67: -8.34994666e+00 + art_sys_68: 5.61705271e-01 + art_sys_69: -2.11673834e-01 + art_sys_70: -1.23598004e-01 + art_sys_71: -1.82633582e-02 + art_sys_72: 1.19068463e-04 + art_sys_73: 1.06131427e-04 + art_sys_74: 3.55991238e-19 art_sys_75: -1.76867829e-05 - art_sys_76: 1.29169842e-18 - art_sys_77: -1.90967758e-18 - art_sys_78: 2.09412166e-18 + art_sys_76: 2.51502281e-18 + art_sys_77: -2.77627724e-18 + art_sys_78: -2.56411313e-19 art_sys_79: -3.35520488e-06 - art_sys_80: -4.14301039e-19 - art_sys_81: 1.27860227e-19 - art_sys_82: 6.14584304e-20 - art_sys_83: -3.77956846e-20 - art_sys_84: 1.69406650e-06 - art_sys_85: 1.27744642e-21 - art_sys_86: -1.78974234e-21 - art_sys_87: -2.05501345e-07 - art_sys_88: 3.86714059e-08 - art_sys_89: 1.83591280e-08 - art_sys_90: 6.55724380e-19 - art_sys_91: 6.03194236e-18 - art_sys_92: -8.90544961e-20 - art_sys_93: -1.40195592e-17 - art_sys_94: 9.75993826e-20 - art_sys_95: -4.12359125e-21 - art_sys_96: 1.54258673e-09 - art_sys_97: -2.06737126e-20 - art_sys_98: 3.56744571e-20 - art_sys_99: 9.68153097e-20 - art_sys_100: -3.80972178e-21 - art_sys_101: 4.25249699e-21 - art_sys_102: 1.82962593e-11 - art_sys_103: 2.33899655e-18 - art_sys_104: -9.22800197e-21 - art_sys_105: -1.02027168e-11 - art_sys_106: 3.69183797e-21 - art_sys_107: 9.38893041e-21 - art_sys_108: 7.00566760e-20 - art_sys_109: 4.73686767e-20 - art_sys_110: 4.40282732e-12 - art_sys_111: -2.38653101e-21 - art_sys_112: -3.22906361e-20 - art_sys_113: -1.77790595e-12 - art_sys_114: 2.77045397e-20 - art_sys_115: 3.49625472e-20 - art_sys_116: -2.03652359e-19 - art_sys_117: 8.23899319e-13 - art_sys_118: -1.63467945e-20 - art_sys_119: -1.55360614e-18 - art_sys_120: 4.06251645e-20 - art_sys_121: -1.52448079e-18 - art_sys_122: -2.83461254e-19 - art_sys_123: 3.59375367e-19 - art_sys_124: 3.39897057e-19 - art_sys_125: -1.41041738e-19 - art_sys_126: 6.50198649e-20 - art_sys_127: 4.11009038e-19 - art_sys_128: 9.16486261e-19 - art_sys_129: 3.38252430e-19 - art_sys_130: -9.79957707e-20 - art_sys_131: 5.23843344e-20 - art_sys_132: -6.01941279e-19 - art_sys_133: -7.08914271e-20 - art_sys_134: -5.10605303e-19 - art_sys_135: -7.86373089e-20 - art_sys_136: 4.00468419e-18 - art_sys_137: -3.79256685e-20 - art_sys_138: -3.33574906e-18 - art_sys_139: 6.48818386e-20 - art_sys_140: -4.11050465e-23 - art_sys_141: -1.21819184e-18 - art_sys_142: 0.0 - art_sys_143: 1.19389365e-19 - art_sys_144: 7.30083128e-19 - art_sys_145: 1.27819677e-18 - art_sys_146: -3.55102615e-13 - art_sys_147: -1.41224230e-13 - art_sys_148: -5.23878911e-14 - art_sys_149: -1.95347805e-14 - art_sys_150: 6.39124310e-15 - art_sys_151: 2.11969853e-15 - art_sys_152: -6.87920128e-16 - art_sys_153: 2.25192769e-16 - art_sys_154: -6.96537650e-17 - art_sys_155: 2.10156669e-17 - art_sys_156: -6.30225587e-18 - art_sys_157: 3.22822637e-19 + art_sys_80: -3.31706434e-19 + art_sys_81: 1.69406650e-06 + art_sys_82: 4.82843710e-19 + art_sys_83: -2.48049057e-20 + art_sys_84: 2.35594262e-20 + art_sys_85: -5.22111888e-21 + art_sys_86: -6.77836929e-21 + art_sys_87: 2.05501344e-07 + art_sys_88: 3.86714058e-08 + art_sys_89: -1.39223033e-22 + art_sys_90: 1.83591280e-08 + art_sys_91: -9.00349738e-20 + art_sys_92: -5.38282385e-24 + art_sys_93: -1.30150063e-23 + art_sys_94: 1.54258672e-09 + art_sys_95: 1.38623479e-19 + art_sys_96: 5.19790818e-20 + art_sys_97: -7.22297866e-20 + art_sys_98: -1.54970363e-18 + art_sys_99: -5.49464081e-20 + art_sys_100: -2.82064110e-17 + art_sys_101: -8.88676969e-19 + art_sys_102: 1.39873939e-19 + art_sys_103: -5.31525365e-18 + art_sys_104: 3.30399343e-19 + art_sys_105: 1.82961154e-11 + art_sys_106: 2.40698028e-19 + art_sys_107: -6.85282102e-21 + art_sys_108: 1.02027514e-11 + art_sys_109: 4.40282422e-12 + art_sys_110: -1.27633997e-18 + art_sys_111: -3.58291399e-19 + art_sys_112: -2.59967836e-19 + art_sys_113: 1.22379442e-19 + art_sys_114: -1.77791188e-12 + art_sys_115: 9.65829048e-20 + art_sys_116: 1.19628563e-20 + art_sys_117: -8.23895733e-13 + art_sys_118: -9.78586980e-20 + art_sys_119: 4.00065799e-19 + art_sys_120: 8.29592628e-21 + art_sys_121: -3.55098236e-13 + art_sys_122: 6.85779395e-19 + art_sys_123: 7.92268291e-22 + art_sys_124: -1.20588546e-20 + art_sys_125: -1.41225649e-13 + art_sys_126: -8.10690518e-20 + art_sys_127: 6.41157352e-19 + art_sys_128: 6.31795290e-21 + art_sys_129: 5.23882207e-14 + art_sys_130: 1.63078967e-19 + art_sys_131: -1.95347439e-14 + art_sys_132: -5.85128116e-19 + art_sys_133: 1.64308809e-18 + art_sys_134: 1.84591236e-21 + art_sys_135: 1.76207779e-20 + art_sys_136: -6.39038720e-15 + art_sys_137: 2.02324842e-18 + art_sys_138: 2.94561126e-22 + art_sys_139: -7.68330073e-20 + art_sys_140: 2.12033977e-15 + art_sys_141: -7.88840068e-19 + art_sys_142: -4.78555181e-22 + art_sys_143: 4.36629526e-19 + art_sys_144: -6.86427153e-16 + art_sys_145: -4.73332558e-21 + art_sys_146: -4.35750116e-19 + art_sys_147: 2.25526843e-16 + art_sys_148: 6.65252407e-17 + art_sys_149: 6.10240779e-21 + art_sys_150: -2.64374624e-19 + art_sys_151: -1.96019313e-19 + art_sys_152: -2.34294100e-17 + art_sys_153: 3.50588938e-19 + art_sys_154: 6.58367353e-22 + art_sys_155: 4.83322124e-18 + art_sys_156: 0.0 + art_sys_157: -1.47583671e-20 art_sys_158: 0.0 - art_sys_159: -9.98658145e-20 - art_sys_160: -9.98658145e-20 - art_sys_161: -4.61859639e-20 - art_sys_162: 1.00404110e-32 - art_sys_163: 0.0 - art_sys_164: 3.68768213e-33 - art_sys_165: 5.53739507e-26 - art_sys_166: -1.59651145e-26 - art_sys_167: 4.28554852e-26 - art_sys_168: -1.16412056e-26 - art_sys_169: -6.86670074e-27 - art_sys_170: -2.17887785e-27 - art_sys_171: -6.29289514e-26 - art_sys_172: 6.63259759e-26 - art_sys_173: -1.33399373e-26 - art_sys_174: -4.63528390e-31 - art_sys_175: 3.87592932e-28 - art_sys_176: -1.50002943e-27 - art_sys_177: 2.35538820e-28 - art_sys_178: 2.03780024e-29 - art_sys_179: 4.00742321e-29 - art_sys_180: -2.92878962e-30 - art_sys_181: -1.75538956e-30 - art_sys_182: -1.29049166e-30 - art_sys_183: -1.79656275e-31 - art_sys_184: -9.16717510e-33 - art_sys_185: 6.17577517e-33 + art_sys_159: 6.79702921e-20 + art_sys_160: -9.28198321e-19 + art_sys_161: 7.16482467e-21 + art_sys_162: 7.16482467e-21 + art_sys_163: -1.62303767e-20 + art_sys_164: -1.62303767e-20 + art_sys_165: 2.93832075e-33 + art_sys_166: -1.46216752e-33 + art_sys_167: -0.0 + art_sys_168: -1.64089886e-27 + art_sys_169: -1.10773800e-26 + art_sys_170: 8.40894663e-27 + art_sys_171: 8.14224217e-26 + art_sys_172: 3.18311151e-27 + art_sys_173: 1.28842254e-27 + art_sys_174: -8.22919896e-28 + art_sys_175: -1.86807212e-28 + art_sys_176: -2.45405736e-29 + art_sys_177: -3.28398307e-31 + art_sys_178: 1.43195780e-30 + art_sys_179: -2.43160898e-31 + art_sys_180: 2.35643715e-32 + art_sys_181: -2.48894622e-30 + art_sys_182: 3.88857281e-31 + art_sys_183: -1.90986651e-31 + art_sys_184: 3.11154888e-32 + art_sys_185: 2.69043229e-32 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -31704,154 +31704,154 @@ bins: art_sys_35: 0.0 art_sys_36: 0.0 art_sys_37: 0.0 - art_sys_38: 2.74617399e-278 - art_sys_39: -3.12466057e-257 - art_sys_40: -2.09812559e-252 - art_sys_41: 2.86480429e-241 - art_sys_42: -7.40804868e-142 - art_sys_43: -9.21417868e-142 - art_sys_44: -5.34048397e-135 - art_sys_45: 9.46406850e-126 - art_sys_46: -2.47022469e-118 - art_sys_47: -1.99058036e-112 - art_sys_48: 2.11870225e-106 - art_sys_49: -6.98125040e-99 - art_sys_50: -6.08231604e-91 - art_sys_51: 4.84272372e-78 - art_sys_52: 2.25260269e-86 - art_sys_53: 1.85217656e-88 - art_sys_54: -1.95397154e-79 - art_sys_55: -8.74821793e-77 - art_sys_56: 5.25310899e-74 - art_sys_57: 1.20672664e+01 - art_sys_58: 2.75971364e+01 - art_sys_59: 4.36120968e+01 - art_sys_60: 3.09979401e-18 - art_sys_61: -7.95268450e+00 - art_sys_62: 5.52125017e-01 - art_sys_63: 3.52165304e-01 - art_sys_64: -2.20183996e-01 - art_sys_65: 4.03383715e-02 - art_sys_66: 7.86800813e-19 - art_sys_67: -3.45210108e-04 - art_sys_68: 2.81291270e-04 - art_sys_69: 7.15752915e-19 - art_sys_70: -6.83778183e-19 - art_sys_71: -8.49576439e-19 - art_sys_72: 1.32738206e-19 - art_sys_73: 5.39316129e-19 - art_sys_74: -5.11816220e-20 + art_sys_38: 0.0 + art_sys_39: 0.0 + art_sys_40: 0.0 + art_sys_41: 0.0 + art_sys_42: 0.0 + art_sys_43: 0.0 + art_sys_44: -7.44544274e-205 + art_sys_45: -3.75498486e-198 + art_sys_46: -4.37298032e-148 + art_sys_47: -2.42117776e-153 + art_sys_48: 1.30524080e-145 + art_sys_49: -1.11367780e-136 + art_sys_50: 4.77496661e-129 + art_sys_51: -1.98120517e-118 + art_sys_52: -2.20120442e-135 + art_sys_53: -7.03009870e-132 + art_sys_54: -8.31811932e-127 + art_sys_55: -2.05108197e-123 + art_sys_56: -3.30770219e-120 + art_sys_57: -1.17905284e-41 + art_sys_58: -5.84241064e-28 + art_sys_59: 2.24194085e-39 + art_sys_60: -2.71063782e-36 + art_sys_61: -1.06856971e-21 + art_sys_62: 2.96619713e-36 + art_sys_63: 5.01035961e-26 + art_sys_64: 1.20672664e+01 + art_sys_65: 2.75971364e+01 + art_sys_66: 4.36120968e+01 + art_sys_67: 7.95268450e+00 + art_sys_68: -5.52125017e-01 + art_sys_69: 3.52165304e-01 + art_sys_70: 2.20183996e-01 + art_sys_71: 4.03383715e-02 + art_sys_72: -3.45210108e-04 + art_sys_73: -2.81291270e-04 + art_sys_74: 8.12144267e-20 art_sys_75: 5.14588090e-05 - art_sys_76: -3.95764019e-18 - art_sys_77: 5.84703956e-18 - art_sys_78: -6.15830389e-18 + art_sys_76: -7.46946356e-18 + art_sys_77: 8.21771488e-18 + art_sys_78: 7.01026237e-20 art_sys_79: 9.91087092e-06 - art_sys_80: 1.20163396e-18 - art_sys_81: -3.78193747e-19 - art_sys_82: -1.86509517e-19 - art_sys_83: 1.14744378e-19 - art_sys_84: -5.03384868e-06 - art_sys_85: -2.59667708e-21 - art_sys_86: 5.44701434e-21 - art_sys_87: 6.39629981e-07 + art_sys_80: 9.80185157e-19 + art_sys_81: -5.03384868e-06 + art_sys_82: -1.38653961e-18 + art_sys_83: 7.77685928e-20 + art_sys_84: -7.35596101e-20 + art_sys_85: 1.65670564e-20 + art_sys_86: 2.10886220e-20 + art_sys_87: -6.39629981e-07 art_sys_88: -1.17285080e-07 - art_sys_89: -5.72723904e-08 - art_sys_90: -1.83459727e-18 - art_sys_91: -1.80089175e-17 - art_sys_92: 3.43469468e-19 - art_sys_93: 4.16863806e-17 - art_sys_94: -2.00956276e-19 - art_sys_95: 5.09785877e-20 - art_sys_96: -4.83203470e-09 - art_sys_97: -2.56329129e-20 - art_sys_98: -8.50338140e-20 - art_sys_99: -2.46776857e-19 - art_sys_100: 1.74978762e-20 - art_sys_101: 8.86028826e-21 - art_sys_102: -6.23120103e-11 - art_sys_103: -7.44424854e-18 - art_sys_104: -1.54356434e-20 - art_sys_105: 3.43316955e-11 - art_sys_106: 3.34826419e-20 - art_sys_107: -2.46424098e-20 - art_sys_108: -1.43224126e-19 - art_sys_109: -1.50739063e-19 - art_sys_110: -1.48153169e-11 - art_sys_111: 7.21559130e-21 - art_sys_112: 1.07058580e-19 - art_sys_113: 6.07221560e-12 - art_sys_114: -1.92054723e-20 - art_sys_115: -8.65921959e-20 - art_sys_116: 6.17016840e-19 - art_sys_117: -2.81423260e-12 - art_sys_118: 3.65858529e-20 - art_sys_119: 4.89813208e-18 - art_sys_120: -1.23235188e-19 - art_sys_121: 4.57683899e-18 - art_sys_122: 8.99716633e-19 - art_sys_123: -8.72814032e-20 - art_sys_124: -1.04481329e-18 - art_sys_125: 4.57331614e-19 - art_sys_126: -1.92341357e-19 - art_sys_127: -1.28042977e-18 - art_sys_128: -1.47307809e-18 - art_sys_129: -6.23777907e-19 - art_sys_130: -1.76139318e-19 - art_sys_131: -2.84365888e-20 - art_sys_132: 1.86220012e-18 - art_sys_133: 2.74937021e-19 - art_sys_134: 1.71855416e-18 - art_sys_135: 2.45731741e-19 - art_sys_136: -1.38436272e-17 - art_sys_137: 1.16318303e-19 - art_sys_138: 1.15410198e-17 - art_sys_139: -1.96673073e-19 - art_sys_140: 6.01565849e-23 - art_sys_141: 4.24630528e-18 - art_sys_142: -0.0 - art_sys_143: -4.12582126e-19 - art_sys_144: -2.50974660e-18 - art_sys_145: -4.44554841e-18 - art_sys_146: 1.22025008e-12 - art_sys_147: 4.86572513e-13 - art_sys_148: 1.80857953e-13 - art_sys_149: 6.75615485e-14 - art_sys_150: -2.21188756e-14 - art_sys_151: -7.34179112e-15 - art_sys_152: 2.38324235e-15 - art_sys_153: -7.80345651e-16 - art_sys_154: 2.41392868e-16 - art_sys_155: -7.28355287e-17 - art_sys_156: 2.18428424e-17 - art_sys_157: -1.11864185e-18 + art_sys_89: 4.34037668e-22 + art_sys_90: -5.72723904e-08 + art_sys_91: 2.23643306e-19 + art_sys_92: 1.68198374e-23 + art_sys_93: 4.09061566e-23 + art_sys_94: -4.83203468e-09 + art_sys_95: -4.46731866e-19 + art_sys_96: -6.98547916e-20 + art_sys_97: 1.22841000e-21 + art_sys_98: 4.82546830e-18 + art_sys_99: 2.08632610e-19 + art_sys_100: 8.75218063e-17 + art_sys_101: 2.76018447e-18 + art_sys_102: -1.15475148e-18 + art_sys_103: 1.64795594e-17 + art_sys_104: -1.07726126e-18 + art_sys_105: -6.23115260e-11 + art_sys_106: -6.73989007e-19 + art_sys_107: 1.26322427e-19 + art_sys_108: -3.43318118e-11 + art_sys_109: -1.48153061e-11 + art_sys_110: 3.97386452e-18 + art_sys_111: 1.13064357e-18 + art_sys_112: 8.17233576e-19 + art_sys_113: -3.75118188e-19 + art_sys_114: 6.07223571e-12 + art_sys_115: -2.45101406e-19 + art_sys_116: -9.13428927e-21 + art_sys_117: 2.81422030e-12 + art_sys_118: 2.45185539e-19 + art_sys_119: -1.29116756e-18 + art_sys_120: -2.20316285e-20 + art_sys_121: 1.22023511e-12 + art_sys_122: -2.13472249e-18 + art_sys_123: 1.02804590e-20 + art_sys_124: 4.27761692e-20 + art_sys_125: 4.86577402e-13 + art_sys_126: 2.39379521e-19 + art_sys_127: -8.26279927e-19 + art_sys_128: -3.30911203e-20 + art_sys_129: -1.80859099e-13 + art_sys_130: -1.08111627e-18 + art_sys_131: 6.75614202e-14 + art_sys_132: 1.84021499e-18 + art_sys_133: -5.62054131e-18 + art_sys_134: -3.27151716e-21 + art_sys_135: -4.94502083e-20 + art_sys_136: 2.21159133e-14 + art_sys_137: -6.51138600e-18 + art_sys_138: -2.38611676e-21 + art_sys_139: 1.71189538e-19 + art_sys_140: -7.34401233e-15 + art_sys_141: 2.75009504e-18 + art_sys_142: -4.68285514e-21 + art_sys_143: -1.39051776e-18 + art_sys_144: 2.37807029e-15 + art_sys_145: 2.00898844e-20 + art_sys_146: 1.40312255e-18 + art_sys_147: -7.81503267e-16 + art_sys_148: -2.30551365e-16 + art_sys_149: -2.36381311e-20 + art_sys_150: 9.05818551e-19 + art_sys_151: 7.24137490e-19 + art_sys_152: 8.12005528e-17 + art_sys_153: -1.19082116e-18 + art_sys_154: -2.52092727e-21 + art_sys_155: -1.67519868e-17 + art_sys_156: -0.0 + art_sys_157: 4.62482884e-20 art_sys_158: -0.0 - art_sys_159: 3.42390921e-19 - art_sys_160: 3.42390921e-19 - art_sys_161: 1.60192601e-19 - art_sys_162: -3.48440316e-32 - art_sys_163: -0.0 - art_sys_164: -1.28090187e-32 - art_sys_165: -1.84064622e-25 - art_sys_166: 5.35258041e-26 - art_sys_167: -1.47542594e-25 - art_sys_168: 4.08090985e-26 - art_sys_169: 1.81698530e-26 - art_sys_170: 2.30257543e-26 - art_sys_171: -2.44165309e-26 - art_sys_172: 2.25166049e-26 - art_sys_173: -6.00634230e-27 - art_sys_174: 1.60648835e-30 - art_sys_175: -6.81247704e-28 - art_sys_176: 1.16552396e-27 - art_sys_177: -2.92306925e-28 - art_sys_178: -9.10735095e-29 - art_sys_179: -1.25376897e-28 - art_sys_180: 5.34393238e-30 - art_sys_181: 3.96178954e-30 - art_sys_182: 3.98402792e-30 - art_sys_183: 6.31950933e-31 - art_sys_184: 3.17342785e-32 - art_sys_185: -2.14042220e-32 + art_sys_159: -2.19321848e-19 + art_sys_160: 3.21760324e-18 + art_sys_161: -2.44727855e-20 + art_sys_162: -2.44727855e-20 + art_sys_163: 5.50180653e-20 + art_sys_164: 5.50180653e-20 + art_sys_165: -1.01725662e-32 + art_sys_166: 5.06406256e-33 + art_sys_167: 0.0 + art_sys_168: 1.73682058e-26 + art_sys_169: 1.30592358e-26 + art_sys_170: -6.09144097e-28 + art_sys_171: 1.17332091e-25 + art_sys_172: 1.69481121e-26 + art_sys_173: -1.18042042e-27 + art_sys_174: 1.01818535e-27 + art_sys_175: 1.28731638e-28 + art_sys_176: 9.59419066e-29 + art_sys_177: -5.50418955e-30 + art_sys_178: -5.35631968e-30 + art_sys_179: 8.42872979e-31 + art_sys_180: -8.12929493e-32 + art_sys_181: 4.30267255e-32 + art_sys_182: 1.23559044e-29 + art_sys_183: 4.02526696e-31 + art_sys_184: -1.07899487e-31 + art_sys_185: -9.32554267e-32 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -31995,154 +31995,154 @@ bins: art_sys_35: 0.0 art_sys_36: 0.0 art_sys_37: 0.0 - art_sys_38: 4.57695665e-279 - art_sys_39: -3.67073237e-258 - art_sys_40: -2.46479815e-253 - art_sys_41: 3.36546308e-242 - art_sys_42: -1.18513589e-142 - art_sys_43: -1.47407966e-142 - art_sys_44: -8.54367930e-136 - art_sys_45: 1.51405690e-126 - art_sys_46: -3.95185300e-119 - art_sys_47: -3.18452041e-113 - art_sys_48: 3.38948917e-107 - art_sys_49: -1.11685692e-99 - art_sys_50: -9.73045851e-92 - art_sys_51: 7.74736497e-79 - art_sys_52: 3.60370242e-87 - art_sys_53: 2.96310271e-89 - art_sys_54: -3.12595382e-80 - art_sys_55: -1.39953549e-77 - art_sys_56: 8.40389726e-75 - art_sys_57: 1.93051528e+00 - art_sys_58: -1.91473892e+00 - art_sys_59: 3.26468412e+00 - art_sys_60: 9.74699181e-19 - art_sys_61: -2.99327304e+00 - art_sys_62: -3.66641440e+00 - art_sys_63: -1.10523007e+00 - art_sys_64: 1.02159751e+00 - art_sys_65: -1.99410627e-01 - art_sys_66: 2.29827632e-19 - art_sys_67: 1.93753230e-03 - art_sys_68: -1.66268257e-03 - art_sys_69: -9.71484230e-19 - art_sys_70: 1.06463130e-19 - art_sys_71: 1.73077296e-19 - art_sys_72: 1.00590739e-19 - art_sys_73: -8.91548032e-20 - art_sys_74: 1.07766461e-19 + art_sys_38: 0.0 + art_sys_39: 0.0 + art_sys_40: 0.0 + art_sys_41: 0.0 + art_sys_42: 0.0 + art_sys_43: 0.0 + art_sys_44: -1.22550997e-205 + art_sys_45: -6.18065497e-199 + art_sys_46: -6.99838737e-149 + art_sys_47: -3.87478072e-154 + art_sys_48: 2.08886847e-146 + art_sys_49: -1.78229676e-137 + art_sys_50: 7.64171425e-130 + art_sys_51: -3.17066170e-119 + art_sys_52: -3.52274197e-136 + art_sys_53: -1.12507604e-132 + art_sys_54: -1.33120702e-127 + art_sys_55: -3.28249045e-124 + art_sys_56: -5.29354800e-121 + art_sys_57: -1.88624289e-42 + art_sys_58: -9.34665962e-29 + art_sys_59: 3.58664588e-40 + art_sys_60: -4.33646498e-37 + art_sys_61: -1.70949253e-22 + art_sys_62: 4.74531735e-37 + art_sys_63: 8.01554849e-27 + art_sys_64: 1.93051528e+00 + art_sys_65: -1.91473892e+00 + art_sys_66: 3.26468412e+00 + art_sys_67: 2.99327304e+00 + art_sys_68: 3.66641440e+00 + art_sys_69: -1.10523007e+00 + art_sys_70: -1.02159751e+00 + art_sys_71: -1.99410627e-01 + art_sys_72: 1.93753230e-03 + art_sys_73: 1.66268257e-03 + art_sys_74: -2.41179386e-19 art_sys_75: -3.03675240e-04 - art_sys_76: 2.49346500e-17 - art_sys_77: -3.68335801e-17 - art_sys_78: 3.89262838e-17 + art_sys_76: 4.74303202e-17 + art_sys_77: -5.17454148e-17 + art_sys_78: -1.57855931e-18 art_sys_79: -6.24035646e-05 - art_sys_80: -6.75165560e-18 - art_sys_81: 2.33530249e-18 - art_sys_82: 1.17594545e-18 - art_sys_83: -7.06657609e-19 - art_sys_84: 3.12283671e-05 - art_sys_85: 1.42546028e-20 - art_sys_86: -3.52888652e-20 - art_sys_87: -4.03856582e-06 - art_sys_88: 7.52664847e-07 - art_sys_89: 3.62309415e-07 - art_sys_90: 1.17873469e-17 - art_sys_91: 1.11710768e-16 - art_sys_92: -2.96042840e-18 - art_sys_93: -2.58598237e-16 - art_sys_94: 1.63399384e-18 - art_sys_95: -1.70912012e-19 - art_sys_96: 3.09370348e-08 - art_sys_97: 5.40832967e-20 - art_sys_98: 5.31919125e-19 - art_sys_99: 1.47309695e-18 - art_sys_100: 9.97571201e-20 - art_sys_101: -1.12231306e-20 - art_sys_102: 3.38641035e-10 - art_sys_103: 4.68332109e-17 - art_sys_104: 2.70175190e-20 - art_sys_105: -2.08164847e-10 - art_sys_106: -7.08538002e-21 - art_sys_107: 1.39507991e-19 - art_sys_108: 8.31632185e-19 - art_sys_109: 1.02800795e-18 - art_sys_110: 8.69628181e-11 - art_sys_111: 4.38673852e-20 - art_sys_112: -5.52239830e-19 - art_sys_113: -3.60078627e-11 - art_sys_114: 1.11735592e-19 - art_sys_115: 4.87572435e-19 - art_sys_116: -3.90081539e-18 - art_sys_117: 1.67827555e-11 - art_sys_118: -2.61918095e-19 - art_sys_119: -3.12634531e-17 - art_sys_120: 7.74067228e-19 - art_sys_121: -2.95402337e-17 - art_sys_122: -5.71350841e-18 - art_sys_123: -1.32873380e-18 - art_sys_124: 6.60907353e-18 - art_sys_125: -2.86692435e-18 - art_sys_126: 1.23106863e-18 - art_sys_127: 8.09944397e-18 - art_sys_128: 6.14578795e-18 - art_sys_129: 2.72551225e-18 - art_sys_130: 1.91213116e-18 - art_sys_131: -1.11181788e-19 - art_sys_132: -1.18154896e-17 - art_sys_133: -1.57073378e-18 - art_sys_134: -1.02688492e-17 - art_sys_135: -1.55345880e-18 - art_sys_136: 8.32650066e-17 - art_sys_137: -7.54844958e-19 - art_sys_138: -6.94377636e-17 - art_sys_139: 1.13047490e-18 - art_sys_140: 3.07055054e-22 - art_sys_141: -2.55981055e-17 - art_sys_142: 0.0 - art_sys_143: 2.47086683e-18 - art_sys_144: 1.50608228e-17 - art_sys_145: 2.67853874e-17 - art_sys_146: -7.28174724e-12 - art_sys_147: -2.91627920e-12 - art_sys_148: -1.08575945e-12 - art_sys_149: -4.06447759e-13 - art_sys_150: 1.33257003e-13 - art_sys_151: 4.42678078e-14 - art_sys_152: -1.43802923e-14 - art_sys_153: 4.70980891e-15 - art_sys_154: -1.45731959e-15 - art_sys_155: 4.39758935e-16 - art_sys_156: -1.31887994e-16 - art_sys_157: 6.75147574e-18 + art_sys_80: -6.26986551e-18 + art_sys_81: 3.12283671e-05 + art_sys_82: 7.65249578e-18 + art_sys_83: -4.94175099e-19 + art_sys_84: 4.63630893e-19 + art_sys_85: -1.04755666e-19 + art_sys_86: -1.33231633e-19 + art_sys_87: 4.03856582e-06 + art_sys_88: 7.52664846e-07 + art_sys_89: -2.74500763e-21 + art_sys_90: 3.62309415e-07 + art_sys_91: -1.37667097e-18 + art_sys_92: -1.11125355e-22 + art_sys_93: -2.60575655e-22 + art_sys_94: 3.09370346e-08 + art_sys_95: 3.02826580e-18 + art_sys_96: 1.15796412e-19 + art_sys_97: -5.32691904e-20 + art_sys_98: -3.04719801e-17 + art_sys_99: -1.31026152e-18 + art_sys_100: -5.52460290e-16 + art_sys_101: -1.71658888e-17 + art_sys_102: 6.68004941e-18 + art_sys_103: -1.04171145e-16 + art_sys_104: 6.77345267e-18 + art_sys_105: 3.38638091e-10 + art_sys_106: 4.26679304e-18 + art_sys_107: -6.68024341e-19 + art_sys_108: 2.08165543e-10 + art_sys_109: 8.69627538e-11 + art_sys_110: -2.52700531e-17 + art_sys_111: -7.28752951e-18 + art_sys_112: -5.29446213e-18 + art_sys_113: 2.36992867e-18 + art_sys_114: -3.60079817e-11 + art_sys_115: 1.56469818e-18 + art_sys_116: 7.07361700e-20 + art_sys_117: -1.67826821e-11 + art_sys_118: -1.61120528e-18 + art_sys_119: 8.23466038e-18 + art_sys_120: 9.73223432e-20 + art_sys_121: -7.28165789e-12 + art_sys_122: 1.34826681e-17 + art_sys_123: -1.21530497e-20 + art_sys_124: -2.75237808e-19 + art_sys_125: -2.91630851e-12 + art_sys_126: -1.55373827e-18 + art_sys_127: 2.25436722e-18 + art_sys_128: 2.20033317e-19 + art_sys_129: 1.08576635e-12 + art_sys_130: 7.43599202e-18 + art_sys_131: -4.06446984e-13 + art_sys_132: -1.17755141e-17 + art_sys_133: 3.35754501e-17 + art_sys_134: -8.43297277e-21 + art_sys_135: 3.13366585e-19 + art_sys_136: -1.33239164e-13 + art_sys_137: 3.82385451e-17 + art_sys_138: 1.31731464e-20 + art_sys_139: -8.61736892e-19 + art_sys_140: 4.42812044e-14 + art_sys_141: -1.69365020e-17 + art_sys_142: 2.32421048e-20 + art_sys_143: 8.11312515e-18 + art_sys_144: -1.43490860e-14 + art_sys_145: -1.19518424e-19 + art_sys_146: -8.25269600e-18 + art_sys_147: 4.71679564e-15 + art_sys_148: 1.39187932e-15 + art_sys_149: 1.53870415e-19 + art_sys_150: -5.44974807e-18 + art_sys_151: -4.45478756e-18 + art_sys_152: -4.90258342e-16 + art_sys_153: 7.13231152e-18 + art_sys_154: 1.61529353e-20 + art_sys_155: 1.01156385e-16 + art_sys_156: 0.0 + art_sys_157: -2.69898997e-19 art_sys_158: 0.0 - art_sys_159: -2.05127792e-18 - art_sys_160: -2.05127792e-18 - art_sys_161: -9.67696951e-19 - art_sys_162: 2.10577186e-31 - art_sys_163: 0.0 - art_sys_164: 7.74635562e-32 - art_sys_165: 1.13103095e-24 - art_sys_166: -3.26891160e-25 - art_sys_167: 8.94860928e-25 - art_sys_168: -2.46729652e-25 - art_sys_169: -1.14835505e-25 - art_sys_170: -1.26580156e-25 - art_sys_171: -2.56562116e-26 - art_sys_172: 1.25993624e-26 - art_sys_173: 3.61155244e-26 - art_sys_174: -9.69973995e-30 - art_sys_175: -1.84695904e-27 - art_sys_176: -6.44397916e-28 - art_sys_177: 6.59943503e-28 - art_sys_178: 4.75846951e-28 - art_sys_179: 7.63386254e-28 - art_sys_180: -2.57677574e-29 - art_sys_181: -3.44363685e-29 - art_sys_182: -1.68365509e-29 - art_sys_183: -3.76310573e-30 - art_sys_184: -1.91940134e-31 - art_sys_185: 1.29242364e-31 + art_sys_159: 1.29139585e-18 + art_sys_160: -1.94261002e-17 + art_sys_161: 1.46814938e-19 + art_sys_162: 1.46814938e-19 + art_sys_163: -3.29629532e-19 + art_sys_164: -3.29629532e-19 + art_sys_165: 6.13990569e-32 + art_sys_166: -3.05694136e-32 + art_sys_167: -0.0 + art_sys_168: -1.16137016e-25 + art_sys_169: -6.19928288e-26 + art_sys_170: 8.07470155e-27 + art_sys_171: -8.65322809e-26 + art_sys_172: -1.85975380e-26 + art_sys_173: -5.40640596e-28 + art_sys_174: 3.21304971e-28 + art_sys_175: -1.89882335e-28 + art_sys_176: -5.21486874e-28 + art_sys_177: 5.47210882e-29 + art_sys_178: 2.98542946e-29 + art_sys_179: -5.09065372e-30 + art_sys_180: 4.90074784e-31 + art_sys_181: -1.44922296e-30 + art_sys_182: 2.33806722e-29 + art_sys_183: -2.95865243e-31 + art_sys_184: 6.40885082e-31 + art_sys_185: 5.63167694e-31 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -32286,154 +32286,154 @@ bins: art_sys_35: 0.0 art_sys_36: 0.0 art_sys_37: 0.0 - art_sys_38: -2.86059791e-280 - art_sys_39: 1.01489534e-258 - art_sys_40: 6.81474933e-254 - art_sys_41: -9.30493558e-243 - art_sys_42: 2.10853141e-143 - art_sys_43: 2.62260495e-143 - art_sys_44: 1.52004646e-136 - art_sys_45: -2.69373036e-127 - art_sys_46: 7.03092889e-120 - art_sys_47: 5.66573113e-114 - art_sys_48: -6.03040076e-108 - art_sys_49: 1.98705305e-100 - art_sys_50: 1.73119197e-92 - art_sys_51: -1.37837040e-79 - art_sys_52: -6.41151770e-88 - art_sys_53: -5.27179641e-90 - art_sys_54: 5.56153253e-81 - art_sys_55: 2.48997989e-78 - art_sys_56: -1.49517717e-75 - art_sys_57: -3.43467092e-01 - art_sys_58: -1.66166898e+00 - art_sys_59: -2.11306803e+00 - art_sys_60: -5.37943537e-20 - art_sys_61: 2.11876220e-01 - art_sys_62: -3.04260091e+00 - art_sys_63: 1.37019594e+00 - art_sys_64: -1.02688199e+00 - art_sys_65: 3.79530747e-01 - art_sys_66: 5.06082385e-20 - art_sys_67: -4.02416382e-03 - art_sys_68: 3.88907768e-03 - art_sys_69: -9.40673479e-19 - art_sys_70: 7.74060931e-20 - art_sys_71: 6.94901313e-20 - art_sys_72: -8.85749267e-21 - art_sys_73: -1.38795647e-19 - art_sys_74: -7.61452927e-21 + art_sys_38: 0.0 + art_sys_39: 0.0 + art_sys_40: 0.0 + art_sys_41: 0.0 + art_sys_42: 0.0 + art_sys_43: 0.0 + art_sys_44: 2.07221869e-206 + art_sys_45: 1.04508895e-199 + art_sys_46: 1.24432057e-149 + art_sys_47: 6.88940051e-155 + art_sys_48: -3.71402991e-147 + art_sys_49: 3.16894221e-138 + art_sys_50: -1.35870476e-130 + art_sys_51: 5.63746955e-120 + art_sys_52: 6.26347186e-137 + art_sys_53: 2.00039693e-133 + art_sys_54: 2.36689996e-128 + art_sys_55: 5.83630223e-125 + art_sys_56: 9.41198352e-122 + art_sys_57: 3.35590373e-43 + art_sys_58: 1.66290832e-29 + art_sys_59: -6.38117092e-41 + art_sys_60: 7.71520939e-38 + art_sys_61: 3.04143884e-23 + art_sys_62: -8.44253232e-38 + art_sys_63: -1.42608406e-27 + art_sys_64: -3.43467092e-01 + art_sys_65: -1.66166898e+00 + art_sys_66: -2.11306803e+00 + art_sys_67: -2.11876220e-01 + art_sys_68: 3.04260091e+00 + art_sys_69: 1.37019594e+00 + art_sys_70: 1.02688199e+00 + art_sys_71: 3.79530747e-01 + art_sys_72: -4.02416382e-03 + art_sys_73: -3.88907768e-03 + art_sys_74: 2.23947414e-19 art_sys_75: 8.58045518e-04 - art_sys_76: -7.66870739e-17 - art_sys_77: 1.12537499e-16 - art_sys_78: -1.07930080e-16 + art_sys_76: -1.33450461e-16 + art_sys_77: 1.45519631e-16 + art_sys_78: -1.28369657e-17 art_sys_79: 1.76849771e-04 - art_sys_80: 1.93511939e-17 - art_sys_81: -6.91557589e-18 - art_sys_82: -3.56971847e-18 - art_sys_83: 2.15161850e-18 - art_sys_84: -9.34564265e-05 - art_sys_85: -7.53710961e-20 - art_sys_86: 1.10656673e-19 - art_sys_87: 1.26499244e-05 + art_sys_80: 1.83914037e-17 + art_sys_81: -9.34564265e-05 + art_sys_82: -2.28156292e-17 + art_sys_83: 1.53278472e-18 + art_sys_84: -1.44910717e-18 + art_sys_85: 3.54684137e-19 + art_sys_86: 4.19224368e-19 + art_sys_87: -1.26499243e-05 art_sys_88: -2.40036983e-06 - art_sys_89: -1.18019739e-06 - art_sys_90: -3.38277804e-17 - art_sys_91: -3.34447209e-16 - art_sys_92: 8.57110109e-18 - art_sys_93: 7.73925601e-16 - art_sys_94: -4.97140995e-18 - art_sys_95: 7.69069234e-19 - art_sys_96: -1.02841387e-07 - art_sys_97: -8.72439128e-20 - art_sys_98: -1.75343963e-18 - art_sys_99: -4.38084304e-18 - art_sys_100: -3.42438070e-19 - art_sys_101: -7.29800026e-21 - art_sys_102: -1.34545563e-09 - art_sys_103: -1.46670911e-16 - art_sys_104: -6.80122948e-20 - art_sys_105: 7.35251616e-10 - art_sys_106: 2.82181350e-20 - art_sys_107: -4.02504868e-19 - art_sys_108: -2.65319892e-18 - art_sys_109: -3.18960892e-18 - art_sys_110: -3.23760098e-10 - art_sys_111: -1.72987623e-19 - art_sys_112: 2.22794163e-18 - art_sys_113: 1.32728289e-10 - art_sys_114: -3.79270576e-19 - art_sys_115: -1.51453296e-18 - art_sys_116: 1.22224337e-17 - art_sys_117: -6.21642950e-11 - art_sys_118: 8.13994673e-19 - art_sys_119: 1.03880386e-16 - art_sys_120: -2.42808205e-18 - art_sys_121: 9.35220621e-17 - art_sys_122: 1.78715003e-17 - art_sys_123: 9.87997320e-18 - art_sys_124: -2.06724322e-17 - art_sys_125: 9.18410876e-18 - art_sys_126: -4.08534328e-18 - art_sys_127: -2.64129660e-17 - art_sys_128: -4.86004040e-18 - art_sys_129: -5.34939818e-18 - art_sys_130: -1.13256315e-17 - art_sys_131: 1.86783154e-18 - art_sys_132: 3.82964033e-17 - art_sys_133: 6.15525793e-18 - art_sys_134: 3.76489964e-17 - art_sys_135: 5.06465284e-18 - art_sys_136: -3.11348709e-16 - art_sys_137: 2.42619678e-18 - art_sys_138: 2.59335435e-16 - art_sys_139: -3.92326713e-18 - art_sys_140: -7.43768513e-22 - art_sys_141: 9.60189155e-17 - art_sys_142: -0.0 - art_sys_143: -9.26387601e-18 - art_sys_144: -5.61624143e-17 - art_sys_145: -1.00373319e-16 - art_sys_146: 2.70933746e-11 - art_sys_147: 1.08652364e-11 - art_sys_148: 4.05528341e-12 - art_sys_149: 1.51936613e-12 - art_sys_150: -4.98536608e-13 - art_sys_151: -1.65695113e-13 - art_sys_152: 5.38346551e-14 - art_sys_153: -1.76355387e-14 - art_sys_154: 5.45703113e-15 - art_sys_155: -1.64679865e-15 - art_sys_156: 4.93896813e-16 - art_sys_157: -2.52773416e-17 + art_sys_89: 8.95676295e-21 + art_sys_90: -1.18019739e-06 + art_sys_91: 4.28701125e-18 + art_sys_92: 3.59834847e-22 + art_sys_93: 8.66491553e-22 + art_sys_94: -1.02841387e-07 + art_sys_95: -9.42742840e-18 + art_sys_96: -2.83884238e-19 + art_sys_97: -4.73571697e-20 + art_sys_98: 9.51941714e-17 + art_sys_99: 4.23503396e-18 + art_sys_100: 1.73032152e-15 + art_sys_101: 5.37893602e-17 + art_sys_102: -2.12098096e-17 + art_sys_103: 3.26353830e-16 + art_sys_104: -2.11778231e-17 + art_sys_105: -1.34544526e-09 + art_sys_106: -1.34369885e-17 + art_sys_107: 2.09880070e-18 + art_sys_108: -7.35254114e-10 + art_sys_109: -3.23759862e-10 + art_sys_110: 8.21162832e-17 + art_sys_111: 2.31519682e-17 + art_sys_112: 1.68915254e-17 + art_sys_113: -7.92870245e-18 + art_sys_114: 1.32728731e-10 + art_sys_115: -4.92902668e-18 + art_sys_116: -2.01446006e-19 + art_sys_117: 6.21640224e-11 + art_sys_118: 5.17738863e-18 + art_sys_119: -2.75046902e-17 + art_sys_120: -3.31038367e-19 + art_sys_121: 2.70930433e-11 + art_sys_122: -4.38955999e-17 + art_sys_123: 7.61540488e-20 + art_sys_124: 9.22659746e-19 + art_sys_125: 1.08653456e-11 + art_sys_126: 5.13499389e-18 + art_sys_127: -5.84518087e-18 + art_sys_128: -7.33667554e-19 + art_sys_129: -4.05530924e-12 + art_sys_130: -3.14685422e-17 + art_sys_131: 1.51936325e-12 + art_sys_132: 3.91400848e-17 + art_sys_133: -1.23360307e-16 + art_sys_134: 1.97600592e-20 + art_sys_135: -1.05296087e-18 + art_sys_136: 4.98469880e-13 + art_sys_137: -1.39164821e-16 + art_sys_138: -5.94065525e-20 + art_sys_139: 3.02097202e-18 + art_sys_140: -1.65745260e-13 + art_sys_141: 5.97995712e-17 + art_sys_142: -9.00521604e-20 + art_sys_143: -2.98167533e-17 + art_sys_144: 5.37178323e-14 + art_sys_145: 4.27561033e-19 + art_sys_146: 3.00814713e-17 + art_sys_147: -1.76617002e-14 + art_sys_148: -5.21198765e-15 + art_sys_149: -5.57589460e-19 + art_sys_150: 2.03454052e-17 + art_sys_151: 1.69360915e-17 + art_sys_152: 1.83589902e-15 + art_sys_153: -2.65590885e-17 + art_sys_154: -5.26212067e-20 + art_sys_155: -3.78821093e-16 + art_sys_156: 0.0 + art_sys_157: 9.83650329e-19 art_sys_158: -0.0 - art_sys_159: 7.62733407e-18 - art_sys_160: 7.62733407e-18 - art_sys_161: 3.62473851e-18 - art_sys_162: -7.88944327e-31 - art_sys_163: -0.0 - art_sys_164: -2.90326132e-31 - art_sys_165: -4.22334788e-24 - art_sys_166: 1.22188080e-24 - art_sys_167: -3.33547675e-24 - art_sys_168: 9.23091971e-25 - art_sys_169: 4.26109353e-25 - art_sys_170: 4.77241609e-25 - art_sys_171: 1.93705790e-25 - art_sys_172: -1.43559929e-25 - art_sys_173: -8.04525961e-26 - art_sys_174: 3.63229647e-29 - art_sys_175: 6.89499805e-27 - art_sys_176: 5.89164241e-27 - art_sys_177: -2.81966357e-27 - art_sys_178: -1.81407640e-27 - art_sys_179: -2.61394985e-27 - art_sys_180: 9.05665045e-29 - art_sys_181: 1.24803860e-28 - art_sys_182: 6.01710126e-29 - art_sys_183: 1.40915291e-29 - art_sys_184: 7.19072935e-31 - art_sys_185: -4.83986306e-31 + art_sys_159: -4.72157962e-18 + art_sys_160: 7.27506165e-17 + art_sys_161: -5.45810147e-19 + art_sys_162: -5.45810147e-19 + art_sys_163: 1.22528786e-18 + art_sys_164: 1.22528786e-18 + art_sys_165: -2.29848034e-31 + art_sys_166: 1.14451182e-31 + art_sys_167: 0.0 + art_sys_168: 3.97967519e-25 + art_sys_169: 2.38294232e-25 + art_sys_170: -1.86095378e-26 + art_sys_171: 5.75349859e-26 + art_sys_172: 2.28508390e-26 + art_sys_173: -1.28038815e-28 + art_sys_174: -3.47362165e-27 + art_sys_175: -3.17202844e-28 + art_sys_176: 2.11420263e-27 + art_sys_177: -3.21618691e-28 + art_sys_178: -1.12043498e-28 + art_sys_179: 1.90648568e-29 + art_sys_180: -1.83259629e-30 + art_sys_181: -9.79253100e-29 + art_sys_182: -1.31043430e-28 + art_sys_183: 8.37757528e-31 + art_sys_184: -2.39745174e-30 + art_sys_185: -2.10912562e-30 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -32577,154 +32577,154 @@ bins: art_sys_35: 0.0 art_sys_36: 0.0 art_sys_37: 0.0 - art_sys_38: 2.86059791e-280 - art_sys_39: 4.72851977e-259 - art_sys_40: 3.17507384e-254 - art_sys_41: -4.33528176e-243 - art_sys_42: 1.28424417e-143 - art_sys_43: 1.59735117e-143 - art_sys_44: 9.25815379e-137 - art_sys_45: -1.64067156e-127 - art_sys_46: 4.28233101e-120 - art_sys_47: 3.45082940e-114 - art_sys_48: -3.67293890e-108 - art_sys_49: 1.21025529e-100 - art_sys_50: 1.05441787e-92 - art_sys_51: -8.39524680e-80 - art_sys_52: -3.90506596e-88 - art_sys_53: -3.21089540e-90 - art_sys_54: 3.38736511e-81 - art_sys_55: 1.51657317e-78 - art_sys_56: -9.10668232e-76 - art_sys_57: -2.09195669e-01 - art_sys_58: -9.72117903e-02 - art_sys_59: -5.21203204e-01 - art_sys_60: -1.60938418e-19 - art_sys_61: 4.67999087e-01 - art_sys_62: -2.99150030e-01 - art_sys_63: 2.93428211e+00 - art_sys_64: 2.69479787e-01 - art_sys_65: -4.34233441e-01 - art_sys_66: 2.46529569e-18 - art_sys_67: 1.40853718e-02 - art_sys_68: -1.07149593e-02 - art_sys_69: 9.41696137e-19 - art_sys_70: 1.13241443e-18 - art_sys_71: -5.72712792e-19 - art_sys_72: -3.31422670e-20 - art_sys_73: -8.69711890e-20 - art_sys_74: -4.90970510e-20 + art_sys_38: 0.0 + art_sys_39: 0.0 + art_sys_40: 0.0 + art_sys_41: 0.0 + art_sys_42: 0.0 + art_sys_43: 0.0 + art_sys_44: 1.31141852e-206 + art_sys_45: 6.61392047e-200 + art_sys_46: 7.58242420e-150 + art_sys_47: 4.19814302e-155 + art_sys_48: -2.26319093e-147 + art_sys_49: 1.93103487e-138 + art_sys_50: -8.27943868e-131 + art_sys_51: 3.43526312e-120 + art_sys_52: 3.81672551e-137 + art_sys_53: 1.21896708e-133 + art_sys_54: 1.44230032e-128 + art_sys_55: 3.55642432e-125 + art_sys_56: 5.73531077e-122 + art_sys_57: 2.04398195e-43 + art_sys_58: 1.01282839e-29 + art_sys_59: -3.88658294e-41 + art_sys_60: 4.69910645e-38 + art_sys_61: 1.85245066e-23 + art_sys_62: -5.14213966e-38 + art_sys_63: -8.68585723e-28 + art_sys_64: -2.09195669e-01 + art_sys_65: -9.72117903e-02 + art_sys_66: -5.21203204e-01 + art_sys_67: -4.67999087e-01 + art_sys_68: 2.99150030e-01 + art_sys_69: 2.93428211e+00 + art_sys_70: -2.69479787e-01 + art_sys_71: -4.34233441e-01 + art_sys_72: 1.40853718e-02 + art_sys_73: 1.07149593e-02 + art_sys_74: -1.61730433e-19 art_sys_75: -2.49775653e-03 - art_sys_76: 2.31790281e-16 - art_sys_77: -3.41759304e-16 - art_sys_78: 3.28259830e-16 + art_sys_76: 4.07945364e-16 + art_sys_77: -4.42105543e-16 + art_sys_78: -1.17612945e-18 art_sys_79: -5.35255119e-04 - art_sys_80: -5.88940103e-17 - art_sys_81: 2.05206183e-17 - art_sys_82: 1.07405142e-17 - art_sys_83: -6.35309815e-18 - art_sys_84: 2.77838279e-04 - art_sys_85: 2.05456601e-19 - art_sys_86: -3.34207950e-19 - art_sys_87: -3.85738759e-05 + art_sys_80: -5.51071676e-17 + art_sys_81: 2.77838279e-04 + art_sys_82: 6.82830992e-17 + art_sys_83: -4.35527412e-18 + art_sys_84: 4.42575354e-18 + art_sys_85: -1.03795546e-18 + art_sys_86: -1.27578954e-18 + art_sys_87: 3.85738759e-05 art_sys_88: 7.23534616e-06 - art_sys_89: 3.56211445e-06 - art_sys_90: 1.01892021e-16 - art_sys_91: 9.94687553e-16 - art_sys_92: -2.52684243e-17 - art_sys_93: -2.30098469e-15 - art_sys_94: 1.44787867e-17 - art_sys_95: -2.12233750e-18 - art_sys_96: 3.11993620e-07 - art_sys_97: 2.97662368e-20 - art_sys_98: 5.35071526e-18 - art_sys_99: 1.30404469e-17 - art_sys_100: 1.18157512e-18 - art_sys_101: -1.94772828e-20 - art_sys_102: 3.59663959e-09 - art_sys_103: 4.47298018e-16 - art_sys_104: 1.92905940e-19 - art_sys_105: -2.21653347e-09 - art_sys_106: -8.42264555e-20 - art_sys_107: 1.18216846e-18 - art_sys_108: 7.93282925e-18 - art_sys_109: 9.72916143e-18 - art_sys_110: 9.29494618e-10 - art_sys_111: 4.75647417e-19 - art_sys_112: -6.75152109e-18 - art_sys_113: -3.90860867e-10 - art_sys_114: 1.13845095e-18 - art_sys_115: 4.57399792e-18 - art_sys_116: -3.72966551e-17 - art_sys_117: 1.83073622e-10 - art_sys_118: -2.52027680e-18 - art_sys_119: -3.15142247e-16 - art_sys_120: 7.42829309e-18 - art_sys_121: -2.81758205e-16 - art_sys_122: -5.45158027e-17 - art_sys_123: -2.93233221e-17 - art_sys_124: 6.30031972e-17 - art_sys_125: -2.79074977e-17 - art_sys_126: 1.23901691e-17 - art_sys_127: 7.96753250e-17 - art_sys_128: -1.11458523e-18 - art_sys_129: 9.51031203e-18 - art_sys_130: 3.82931833e-17 - art_sys_131: -7.67831402e-18 - art_sys_132: -1.15567068e-16 - art_sys_133: -1.67755820e-17 - art_sys_134: -1.11138529e-16 - art_sys_135: -1.52723620e-17 - art_sys_136: 9.27379373e-16 - art_sys_137: -7.41756591e-18 - art_sys_138: -7.71827303e-16 - art_sys_139: 1.11523542e-17 - art_sys_140: 2.70705446e-21 - art_sys_141: -2.86365453e-16 - art_sys_142: 0.0 - art_sys_143: 2.75224626e-17 - art_sys_144: 1.66941883e-16 - art_sys_145: 2.99244186e-16 - art_sys_146: -8.00876870e-11 - art_sys_147: -3.22367680e-11 - art_sys_148: -1.20510230e-11 - art_sys_149: -4.52481896e-12 - art_sys_150: 1.48622739e-12 - art_sys_151: 4.94397907e-13 - art_sys_152: -1.60717236e-13 - art_sys_153: 5.26619910e-14 - art_sys_154: -1.62990283e-14 - art_sys_155: 4.91898450e-15 - art_sys_156: -1.47534890e-15 - art_sys_157: 7.54830730e-17 + art_sys_89: -2.70593986e-20 + art_sys_90: 3.56211446e-06 + art_sys_91: -1.27631671e-17 + art_sys_92: -1.10307959e-21 + art_sys_93: -2.63691351e-21 + art_sys_94: 3.11993618e-07 + art_sys_95: 2.87517049e-17 + art_sys_96: 8.04629135e-19 + art_sys_97: 2.56482705e-19 + art_sys_98: -2.90422400e-16 + art_sys_99: -1.29873510e-17 + art_sys_100: -5.27627553e-15 + art_sys_101: -1.63942862e-16 + art_sys_102: 6.43685193e-17 + art_sys_103: -9.95150426e-16 + art_sys_104: 6.46680858e-17 + art_sys_105: 3.59660824e-09 + art_sys_106: 4.09764081e-17 + art_sys_107: -6.17164536e-18 + art_sys_108: 2.21654089e-09 + art_sys_109: 9.29493910e-10 + art_sys_110: -2.47847990e-16 + art_sys_111: -6.96969755e-17 + art_sys_112: -5.08410832e-17 + art_sys_113: 2.39994174e-17 + art_sys_114: -3.90862153e-10 + art_sys_115: 1.48599787e-17 + art_sys_116: 5.78317204e-19 + art_sys_117: -1.83072818e-10 + art_sys_118: -1.55560569e-17 + art_sys_119: 8.33705476e-17 + art_sys_120: 1.01414474e-18 + art_sys_121: -8.00867105e-11 + art_sys_122: 1.32513084e-16 + art_sys_123: -1.81641062e-19 + art_sys_124: -2.75608161e-18 + art_sys_125: -3.22370923e-11 + art_sys_126: -1.55966197e-17 + art_sys_127: 1.56986446e-17 + art_sys_128: 2.19833462e-18 + art_sys_129: 1.20511000e-11 + art_sys_130: 9.68905785e-17 + art_sys_131: -4.52481036e-12 + art_sys_132: -1.18750579e-16 + art_sys_133: 3.62565675e-16 + art_sys_134: -6.56368896e-20 + art_sys_135: 3.17432288e-18 + art_sys_136: -1.48602854e-12 + art_sys_137: 4.09430620e-16 + art_sys_138: 1.38073191e-19 + art_sys_139: -9.04382648e-18 + art_sys_140: 4.94547568e-13 + art_sys_141: -1.81138555e-16 + art_sys_142: 2.63827492e-19 + art_sys_143: 8.81895978e-17 + art_sys_144: -1.60368487e-13 + art_sys_145: -1.29185576e-18 + art_sys_146: -8.87287864e-17 + art_sys_147: 5.27401130e-14 + art_sys_148: 1.55672438e-14 + art_sys_149: 1.70030223e-18 + art_sys_150: -6.06805271e-17 + art_sys_151: -5.08416566e-17 + art_sys_152: -5.48377578e-15 + art_sys_153: 7.90690987e-17 + art_sys_154: 1.58788826e-19 + art_sys_155: 1.13166651e-15 + art_sys_156: -0.0 + art_sys_157: -2.89686392e-18 art_sys_158: 0.0 - art_sys_159: -2.26291354e-17 - art_sys_160: -2.26291354e-17 - art_sys_161: -1.08302799e-17 - art_sys_162: 2.35788483e-30 - art_sys_163: 0.0 - art_sys_164: 8.68052812e-31 - art_sys_165: 1.25879310e-23 - art_sys_166: -3.64285833e-24 - art_sys_167: 9.91643744e-24 - art_sys_168: -2.75751717e-24 - art_sys_169: -1.28125401e-24 - art_sys_170: -1.41203367e-24 - art_sys_171: -5.81959317e-25 - art_sys_172: 2.74587718e-25 - art_sys_173: 2.74705818e-25 - art_sys_174: -1.08500137e-28 - art_sys_175: -1.86588109e-26 - art_sys_176: -1.93006390e-26 - art_sys_177: 9.33675055e-27 - art_sys_178: 5.52874916e-27 - art_sys_179: 7.78093014e-27 - art_sys_180: -2.67967901e-28 - art_sys_181: -3.71347264e-28 - art_sys_182: -1.86311670e-28 - art_sys_183: -4.21018226e-29 - art_sys_184: -2.14914688e-30 - art_sys_185: 1.44573434e-30 + art_sys_159: 1.39548644e-17 + art_sys_160: -2.17287971e-16 + art_sys_161: 1.62351252e-18 + art_sys_162: 1.62351252e-18 + art_sys_163: -3.64642314e-18 + art_sys_164: -3.64642314e-18 + art_sys_165: 6.86473331e-31 + art_sys_166: -3.41844691e-31 + art_sys_167: -0.0 + art_sys_168: -1.27020647e-24 + art_sys_169: -7.01390804e-25 + art_sys_170: 8.17490264e-26 + art_sys_171: -2.40215492e-25 + art_sys_172: -6.05797749e-26 + art_sys_173: 2.11651220e-27 + art_sys_174: 1.39548872e-26 + art_sys_175: 6.80031290e-28 + art_sys_176: -6.20561461e-27 + art_sys_177: 1.30769378e-27 + art_sys_178: 3.31599693e-28 + art_sys_179: -5.69628528e-29 + art_sys_180: 5.47049935e-30 + art_sys_181: 2.90667365e-28 + art_sys_182: 3.91889370e-28 + art_sys_183: -3.00319968e-30 + art_sys_184: 7.16148210e-30 + art_sys_185: 6.30131675e-30 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -32868,154 +32868,154 @@ bins: art_sys_35: 0.0 art_sys_36: 0.0 art_sys_37: 0.0 - art_sys_38: -1.43029895e-280 - art_sys_39: 2.87725614e-260 - art_sys_40: 1.93200033e-255 - art_sys_41: -2.63797463e-244 - art_sys_42: 1.24057299e-144 - art_sys_43: 1.54303267e-144 - art_sys_44: 8.94332694e-138 - art_sys_45: -1.58487993e-128 - art_sys_46: 4.13670881e-121 - art_sys_47: 3.33348270e-115 - art_sys_48: -3.54803929e-109 - art_sys_49: 1.16910013e-101 - art_sys_50: 1.01856201e-93 - art_sys_51: -8.10976342e-81 - art_sys_52: -3.77227279e-89 - art_sys_53: -3.10170775e-91 - art_sys_54: 3.27217654e-82 - art_sys_55: 1.46500155e-79 - art_sys_56: -8.79700631e-77 - art_sys_57: -2.02081914e-02 - art_sys_58: 1.27852765e-01 - art_sys_59: 9.67815616e-02 - art_sys_60: -2.89880748e-20 - art_sys_61: 7.67061301e-02 - art_sys_62: 5.64323162e-01 - art_sys_63: 1.17849762e+00 - art_sys_64: 1.57544816e+00 - art_sys_65: 4.43368543e-01 - art_sys_66: 8.44814671e-20 - art_sys_67: -9.98240157e-03 - art_sys_68: 1.83320775e-02 - art_sys_69: 1.75498117e-18 - art_sys_70: -6.03083658e-20 - art_sys_71: -2.17922006e-19 - art_sys_72: 3.46254178e-19 - art_sys_73: -3.14259426e-19 - art_sys_74: 2.60448856e-19 + art_sys_38: 0.0 + art_sys_39: 0.0 + art_sys_40: 0.0 + art_sys_41: 0.0 + art_sys_42: 0.0 + art_sys_43: 0.0 + art_sys_44: 1.34018205e-207 + art_sys_45: 6.75898427e-201 + art_sys_46: 7.33003406e-151 + art_sys_47: 4.05840277e-156 + art_sys_48: -2.18785789e-148 + art_sys_49: 1.86675805e-139 + art_sys_50: -8.00384757e-132 + art_sys_51: 3.32091624e-121 + art_sys_52: 3.68968122e-138 + art_sys_53: 1.17839229e-134 + art_sys_54: 1.39429162e-129 + art_sys_55: 3.43804444e-126 + art_sys_56: 5.54440404e-123 + art_sys_57: 1.97447585e-44 + art_sys_58: 9.78386920e-31 + art_sys_59: -3.75441875e-42 + art_sys_60: 4.53931221e-39 + art_sys_61: 1.78945763e-24 + art_sys_62: -4.96718871e-39 + art_sys_63: -8.39049255e-29 + art_sys_64: -2.02081914e-02 + art_sys_65: 1.27852765e-01 + art_sys_66: 9.67815616e-02 + art_sys_67: -7.67061301e-02 + art_sys_68: -5.64323162e-01 + art_sys_69: 1.17849762e+00 + art_sys_70: -1.57544816e+00 + art_sys_71: 4.43368543e-01 + art_sys_72: -9.98240157e-03 + art_sys_73: -1.83320775e-02 + art_sys_74: 1.09751024e-19 art_sys_75: 5.56820294e-03 - art_sys_76: -6.23791095e-16 - art_sys_77: 9.12534451e-16 - art_sys_78: -7.84133372e-16 + art_sys_76: -9.98265144e-16 + art_sys_77: 1.07094765e-15 + art_sys_78: 1.15140847e-17 art_sys_79: 1.31042981e-03 - art_sys_80: 1.46559404e-16 - art_sys_81: -5.19253435e-17 - art_sys_82: -2.87469065e-17 - art_sys_83: 1.65337667e-17 - art_sys_84: -7.17362608e-04 - art_sys_85: -5.01292310e-19 - art_sys_86: 9.53721219e-19 - art_sys_87: 1.06025508e-04 + art_sys_80: 1.37965308e-16 + art_sys_81: -7.17362607e-04 + art_sys_82: -1.75744653e-16 + art_sys_83: 1.23212870e-17 + art_sys_84: -1.21009122e-17 + art_sys_85: 2.96239845e-18 + art_sys_86: 3.53112965e-18 + art_sys_87: -1.06025508e-04 art_sys_88: -2.07734355e-05 - art_sys_89: -1.02949171e-05 - art_sys_90: -2.53352255e-16 - art_sys_91: -2.56812280e-15 - art_sys_92: 6.52237132e-17 - art_sys_93: 5.94097922e-15 - art_sys_94: -3.74233138e-17 - art_sys_95: 5.44179587e-18 - art_sys_96: -9.28972881e-07 - art_sys_97: -1.08251819e-19 - art_sys_98: -1.38781850e-17 - art_sys_99: -3.36532725e-17 - art_sys_100: -3.34463604e-18 - art_sys_101: 4.06098909e-20 - art_sys_102: -1.17982871e-08 - art_sys_103: -1.22955647e-15 - art_sys_104: -5.28545662e-19 - art_sys_105: 6.65476272e-09 - art_sys_106: 1.66504542e-19 - art_sys_107: -3.03934879e-18 - art_sys_108: -2.28353116e-17 - art_sys_109: -2.67496375e-17 - art_sys_110: -2.94358859e-09 - art_sys_111: -1.25020376e-18 - art_sys_112: 2.06390579e-17 - art_sys_113: 1.21616633e-09 - art_sys_114: -3.16260496e-18 - art_sys_115: -1.30501119e-17 - art_sys_116: 1.02078816e-16 - art_sys_117: -5.75759168e-10 - art_sys_118: 6.92508313e-18 - art_sys_119: 9.38365508e-16 - art_sys_120: -2.04090282e-17 - art_sys_121: 8.07120754e-16 - art_sys_122: 1.49770974e-16 - art_sys_123: 1.00866866e-16 - art_sys_124: -1.73323456e-16 - art_sys_125: 7.83397708e-17 - art_sys_126: -3.68096455e-17 - art_sys_127: -2.30706625e-16 - art_sys_128: 5.03313637e-17 - art_sys_129: -2.11842203e-17 - art_sys_130: -1.27175130e-16 - art_sys_131: 2.69552530e-17 - art_sys_132: 3.33375482e-16 - art_sys_133: 5.44055255e-17 - art_sys_134: 3.51438347e-16 - art_sys_135: 4.43223673e-17 - art_sys_136: -2.94356126e-15 - art_sys_137: 2.14966017e-17 - art_sys_138: 2.44897769e-15 - art_sys_139: -3.46478857e-17 - art_sys_140: -6.40301451e-21 - art_sys_141: 9.09445213e-16 - art_sys_142: -0.0 - art_sys_143: -8.76135985e-17 - art_sys_144: -5.29474363e-16 - art_sys_145: -9.50216300e-16 - art_sys_146: 2.52402174e-10 - art_sys_147: 1.01905446e-10 - art_sys_148: 3.81986306e-11 - art_sys_149: 1.43612351e-11 - art_sys_150: -4.72352727e-12 - art_sys_151: -1.57227501e-12 - art_sys_152: 5.11343208e-13 - art_sys_153: -1.67595932e-13 - art_sys_154: 5.18778936e-14 - art_sys_155: -1.56579709e-14 - art_sys_156: 4.69641923e-15 - art_sys_157: -2.40187882e-16 + art_sys_89: 7.83563034e-20 + art_sys_90: -1.02949171e-05 + art_sys_91: 3.29477480e-17 + art_sys_92: 3.29123652e-21 + art_sys_93: 7.85882782e-21 + art_sys_94: -9.28972877e-07 + art_sys_95: -7.94966847e-17 + art_sys_96: -1.97852697e-18 + art_sys_97: -6.63051432e-19 + art_sys_98: 7.98379886e-16 + art_sys_99: 3.58269820e-17 + art_sys_100: 1.45022629e-14 + art_sys_101: 4.50652024e-16 + art_sys_102: -1.78026516e-16 + art_sys_103: 2.73540085e-15 + art_sys_104: -1.77858046e-16 + art_sys_105: -1.17981932e-08 + art_sys_106: -1.12615118e-16 + art_sys_107: 1.77518723e-17 + art_sys_108: -6.65478528e-09 + art_sys_109: -2.94358641e-09 + art_sys_110: 7.15978351e-16 + art_sys_111: 2.00063663e-16 + art_sys_112: 1.45741307e-16 + art_sys_113: -6.99493585e-17 + art_sys_114: 1.21617039e-09 + art_sys_115: -4.26884095e-17 + art_sys_116: -1.68883396e-18 + art_sys_117: 5.75756635e-10 + art_sys_118: 4.46789258e-17 + art_sys_119: -2.48231976e-16 + art_sys_120: -2.96019678e-18 + art_sys_121: 2.52399101e-10 + art_sys_122: -3.82997253e-16 + art_sys_123: 6.20028932e-19 + art_sys_124: 7.99714574e-18 + art_sys_125: 1.01906471e-10 + art_sys_126: 4.64402990e-17 + art_sys_127: -4.54528236e-17 + art_sys_128: -6.55402197e-18 + art_sys_129: -3.81988755e-11 + art_sys_130: -3.11000712e-16 + art_sys_131: 1.43612078e-11 + art_sys_132: 3.53586509e-16 + art_sys_133: -1.13977300e-15 + art_sys_134: 2.02470880e-19 + art_sys_135: -9.47534085e-18 + art_sys_136: 4.72289542e-12 + art_sys_137: -1.28923878e-15 + art_sys_138: -5.02792872e-19 + art_sys_139: 2.80144878e-17 + art_sys_140: -1.57275104e-12 + art_sys_141: 5.42565491e-16 + art_sys_142: -8.22715165e-19 + art_sys_143: -2.78730747e-16 + art_sys_144: 5.10233642e-13 + art_sys_145: 3.87808020e-18 + art_sys_146: 2.80471555e-16 + art_sys_147: -1.67844555e-13 + art_sys_148: -4.95488600e-14 + art_sys_149: -5.16825775e-18 + art_sys_150: 1.92773318e-16 + art_sys_151: 1.62167203e-16 + art_sys_152: 1.74556382e-14 + art_sys_153: -2.51172607e-16 + art_sys_154: -4.59623950e-19 + art_sys_155: -3.60254737e-15 + art_sys_156: 0.0 + art_sys_157: 9.17569551e-18 art_sys_158: -0.0 - art_sys_159: 7.16685586e-17 - art_sys_160: 7.16685586e-17 - art_sys_161: 3.44834055e-17 - art_sys_162: -7.50923097e-30 - art_sys_163: -0.0 - art_sys_164: -2.76556928e-30 - art_sys_165: -4.00440822e-23 - art_sys_166: 1.15956352e-23 - art_sys_167: -3.23115282e-23 - art_sys_168: 8.77700504e-24 - art_sys_169: 4.07349168e-24 - art_sys_170: 4.51127000e-24 - art_sys_171: 1.74336433e-24 - art_sys_172: -8.09293342e-25 - art_sys_173: -8.43711973e-25 - art_sys_174: 3.45374549e-28 - art_sys_175: 6.13604081e-26 - art_sys_176: 6.23459398e-26 - art_sys_177: -2.96869651e-26 - art_sys_178: -1.75608412e-26 - art_sys_179: -2.34653413e-26 - art_sys_180: 7.61157345e-28 - art_sys_181: 1.17030909e-27 - art_sys_182: 5.92382605e-28 - art_sys_183: 1.34093495e-28 - art_sys_184: 6.84519873e-30 - art_sys_185: -4.60229645e-30 + art_sys_159: -4.41803245e-17 + art_sys_160: 6.91627510e-16 + art_sys_161: -5.14771050e-18 + art_sys_162: -5.14771050e-18 + art_sys_163: 1.15847955e-17 + art_sys_164: 1.15847955e-17 + art_sys_165: -2.18504312e-30 + art_sys_166: 1.08812123e-30 + art_sys_167: 0.0 + art_sys_168: 3.88034609e-24 + art_sys_169: 2.19783065e-24 + art_sys_170: -2.01088801e-25 + art_sys_171: 6.48669954e-25 + art_sys_172: 2.16560694e-25 + art_sys_173: 5.58920377e-27 + art_sys_174: -3.67125689e-26 + art_sys_175: -2.68025918e-27 + art_sys_176: 1.98553311e-26 + art_sys_177: -4.36251632e-27 + art_sys_178: -1.04318437e-27 + art_sys_179: 1.81355179e-28 + art_sys_180: -1.74084552e-29 + art_sys_181: -1.16654037e-27 + art_sys_182: -1.22910297e-27 + art_sys_183: 9.59004422e-30 + art_sys_184: -2.28028794e-29 + art_sys_185: -2.00621364e-29 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -33159,154 +33159,154 @@ bins: art_sys_35: 0.0 art_sys_36: 0.0 art_sys_37: 0.0 - art_sys_38: 1.11742106e-282 - art_sys_39: -1.23771782e-260 - art_sys_40: -8.31094235e-256 - art_sys_41: 1.13478545e-244 - art_sys_42: -2.70423643e-145 - art_sys_43: -3.36354670e-145 - art_sys_44: -1.94949196e-138 - art_sys_45: 3.45476656e-129 - art_sys_46: -9.01731603e-122 - art_sys_47: -7.26642083e-116 - art_sys_48: 7.73411740e-110 - art_sys_49: -2.54843785e-102 - art_sys_50: -2.22029057e-94 - art_sys_51: 1.76778940e-81 - art_sys_52: 8.22290798e-90 - art_sys_53: 6.76119116e-92 - art_sys_54: -7.13278390e-83 - art_sys_55: -3.19345224e-80 - art_sys_56: 1.91759657e-77 - art_sys_57: 4.40503860e-03 - art_sys_58: 2.10391499e-02 - art_sys_59: 3.26755347e-02 - art_sys_60: 4.97679683e-21 - art_sys_61: -1.63308905e-02 - art_sys_62: 6.86244571e-02 - art_sys_63: -7.21227374e-02 - art_sys_64: 1.57999570e-01 - art_sys_65: 1.30758121e-01 - art_sys_66: -9.19260845e-20 - art_sys_67: 1.28530691e-01 - art_sys_68: -8.43869071e-02 - art_sys_69: 2.97538791e-19 - art_sys_70: 5.79493098e-19 - art_sys_71: -2.75807642e-19 - art_sys_72: 3.05745511e-19 - art_sys_73: 3.08089373e-19 - art_sys_74: 3.69923269e-20 + art_sys_38: 0.0 + art_sys_39: 0.0 + art_sys_40: 0.0 + art_sys_41: 0.0 + art_sys_42: 0.0 + art_sys_43: 0.0 + art_sys_44: -2.66018419e-208 + art_sys_45: -1.34161955e-201 + art_sys_46: -1.59587855e-151 + art_sys_47: -8.83586337e-157 + art_sys_48: 4.76335507e-149 + art_sys_49: -4.06426369e-140 + art_sys_50: 1.74257972e-132 + art_sys_51: -7.23022426e-122 + art_sys_52: -8.03309113e-139 + art_sys_53: -2.56556923e-135 + art_sys_54: -3.03562039e-130 + art_sys_55: -7.48523315e-127 + art_sys_56: -1.20711520e-123 + art_sys_57: -4.30401801e-45 + art_sys_58: -2.13271533e-31 + art_sys_59: 8.18398761e-43 + art_sys_60: -9.89492042e-40 + art_sys_61: -3.90071008e-25 + art_sys_62: 1.08277242e-39 + art_sys_63: 1.82898317e-29 + art_sys_64: 4.40503860e-03 + art_sys_65: 2.10391499e-02 + art_sys_66: 3.26755347e-02 + art_sys_67: 1.63308905e-02 + art_sys_68: -6.86244571e-02 + art_sys_69: -7.21227374e-02 + art_sys_70: -1.57999570e-01 + art_sys_71: 1.30758121e-01 + art_sys_72: 1.28530691e-01 + art_sys_73: 8.43869071e-02 + art_sys_74: -1.86117864e-19 art_sys_75: -2.87023061e-02 - art_sys_76: 3.21631713e-15 - art_sys_77: -4.67461456e-15 - art_sys_78: 3.76440200e-15 + art_sys_76: 4.85916462e-15 + art_sys_77: -5.22401098e-15 + art_sys_78: -4.82395872e-17 art_sys_79: -6.38049702e-03 - art_sys_80: -7.21002032e-16 - art_sys_81: 2.58821895e-16 - art_sys_82: 1.46378966e-16 - art_sys_83: -8.40646317e-17 - art_sys_84: 3.59234340e-03 - art_sys_85: 1.78995509e-18 - art_sys_86: -4.94808115e-18 - art_sys_87: -5.51489660e-04 + art_sys_80: -7.18165656e-16 + art_sys_81: 3.59234340e-03 + art_sys_82: 8.79969268e-16 + art_sys_83: -6.46259686e-17 + art_sys_84: 6.30343925e-17 + art_sys_85: -1.45102894e-17 + art_sys_86: -1.83414597e-17 + art_sys_87: 5.51489660e-04 art_sys_88: 1.06965420e-04 - art_sys_89: 5.41250665e-05 - art_sys_90: 1.24357575e-15 - art_sys_91: 1.28605060e-14 - art_sys_92: -3.26664761e-16 - art_sys_93: -2.97507596e-14 - art_sys_94: 1.87283473e-16 - art_sys_95: -2.74100764e-17 - art_sys_96: 4.95539029e-06 - art_sys_97: 5.12758148e-19 - art_sys_98: 6.94071857e-17 - art_sys_99: 1.68463616e-16 - art_sys_100: 1.74884509e-17 - art_sys_101: -1.33847584e-19 - art_sys_102: 6.32980772e-08 - art_sys_103: 6.39556952e-15 - art_sys_104: 2.79919669e-18 - art_sys_105: -3.74910923e-08 - art_sys_106: -8.05902217e-19 - art_sys_107: 1.52332451e-17 - art_sys_108: 1.17644053e-16 - art_sys_109: 1.39034571e-16 - art_sys_110: 1.61526642e-08 - art_sys_111: 6.54832344e-18 - art_sys_112: -1.26854670e-16 - art_sys_113: -6.84540408e-09 - art_sys_114: 1.63725524e-17 - art_sys_115: 6.67300042e-17 - art_sys_116: -5.31592147e-16 - art_sys_117: 3.23318627e-09 - art_sys_118: -3.60784046e-17 - art_sys_119: -5.00549292e-15 - art_sys_120: 1.06181611e-16 - art_sys_121: -4.12537963e-15 - art_sys_122: -7.79269631e-16 - art_sys_123: -5.47314660e-16 - art_sys_124: 9.00156493e-16 - art_sys_125: -4.12736554e-16 - art_sys_126: 1.95979395e-16 - art_sys_127: 1.21288923e-15 - art_sys_128: -2.90602599e-16 - art_sys_129: 9.53514031e-17 - art_sys_130: 7.33674877e-16 - art_sys_131: -1.63835566e-16 - art_sys_132: -1.74478282e-15 - art_sys_133: -2.91883160e-16 - art_sys_134: -1.99519833e-15 - art_sys_135: -2.32859183e-16 - art_sys_136: 1.67545706e-14 - art_sys_137: -1.12672592e-16 - art_sys_138: -1.39345243e-14 - art_sys_139: 1.93274855e-16 - art_sys_140: 3.27578703e-20 - art_sys_141: -5.17852161e-15 - art_sys_142: 0.0 - art_sys_143: 4.99624086e-16 - art_sys_144: 3.01105389e-15 - art_sys_145: 5.41029120e-15 - art_sys_146: -1.42713694e-09 - art_sys_147: -5.77650876e-10 - art_sys_148: -2.17017943e-10 - art_sys_149: -8.17412407e-11 - art_sys_150: 2.69087475e-11 - art_sys_151: 8.96438132e-12 - art_sys_152: -2.91646761e-12 - art_sys_153: 9.56133836e-13 - art_sys_154: -2.96008275e-13 - art_sys_155: 8.93474637e-14 - art_sys_156: -2.67998635e-14 - art_sys_157: 1.37024287e-15 + art_sys_89: -4.12301065e-19 + art_sys_90: 5.41250665e-05 + art_sys_91: -1.64738080e-16 + art_sys_92: -1.76288652e-20 + art_sys_93: -4.19419948e-20 + art_sys_94: 4.95539026e-06 + art_sys_95: 4.13053125e-16 + art_sys_96: 9.35895358e-18 + art_sys_97: 2.87024154e-18 + art_sys_98: -4.15236719e-15 + art_sys_99: -1.86186836e-16 + art_sys_100: -7.54334131e-14 + art_sys_101: -2.34400240e-15 + art_sys_102: 9.24380130e-16 + art_sys_103: -1.42281034e-14 + art_sys_104: 9.25149326e-16 + art_sys_105: 6.32975474e-08 + art_sys_106: 5.85818281e-16 + art_sys_107: -9.09636864e-17 + art_sys_108: 3.74912185e-08 + art_sys_109: 1.61526517e-08 + art_sys_110: -3.75818123e-15 + art_sys_111: -1.02864434e-15 + art_sys_112: -7.47528086e-16 + art_sys_113: 3.77410015e-16 + art_sys_114: -6.84542663e-09 + art_sys_115: 2.19773689e-16 + art_sys_116: 9.12219077e-18 + art_sys_117: -3.23317199e-09 + art_sys_118: -2.30037737e-16 + art_sys_119: 1.32401400e-15 + art_sys_120: 1.55517618e-17 + art_sys_121: -1.42711966e-09 + art_sys_122: 2.01360098e-15 + art_sys_123: -3.28567014e-18 + art_sys_124: -4.20517665e-17 + art_sys_125: -5.77656691e-10 + art_sys_126: -2.47702723e-16 + art_sys_127: 2.53105761e-16 + art_sys_128: 3.49865426e-17 + art_sys_129: 2.17019340e-10 + art_sys_130: 1.77579932e-15 + art_sys_131: -8.17410856e-11 + art_sys_132: -1.88612741e-15 + art_sys_133: 6.40720118e-15 + art_sys_134: -1.13944284e-18 + art_sys_135: 5.05678702e-17 + art_sys_136: -2.69051493e-11 + art_sys_137: 7.29516953e-15 + art_sys_138: 2.72739197e-18 + art_sys_139: -1.60540591e-16 + art_sys_140: 8.96709580e-12 + art_sys_141: -3.06225873e-15 + art_sys_142: 4.60935343e-18 + art_sys_143: 1.58445635e-15 + art_sys_144: -2.91013927e-12 + art_sys_145: -2.19044245e-17 + art_sys_146: -1.59434366e-15 + art_sys_147: 9.57552235e-13 + art_sys_148: 2.82720429e-13 + art_sys_149: 2.92892824e-17 + art_sys_150: -1.09804907e-15 + art_sys_151: -9.26001393e-16 + art_sys_152: -9.96046156e-14 + art_sys_153: 1.43102300e-15 + art_sys_154: 2.42925208e-18 + art_sys_155: 2.05586661e-14 + art_sys_156: -0.0 + art_sys_157: -5.21723144e-17 art_sys_158: 0.0 - art_sys_159: -4.07068040e-16 - art_sys_160: -4.07068040e-16 - art_sys_161: -1.96813773e-16 - art_sys_162: 4.28672498e-29 - art_sys_163: 0.0 - art_sys_164: 1.57926218e-29 - art_sys_165: 2.28270665e-22 - art_sys_166: -6.61564637e-23 - art_sys_167: 1.77719070e-22 - art_sys_168: -5.00217055e-23 - art_sys_169: -2.32091990e-23 - art_sys_170: -2.58096836e-23 - art_sys_171: -9.44086645e-24 - art_sys_172: 3.75729440e-24 - art_sys_173: 4.69666829e-24 - art_sys_174: -1.97082725e-27 - art_sys_175: -3.51009715e-25 - art_sys_176: -3.55411852e-25 - art_sys_177: 1.69945306e-25 - art_sys_178: 1.00397549e-25 - art_sys_179: 1.28850624e-25 - art_sys_180: -4.21731582e-27 - art_sys_181: -6.69150525e-27 - art_sys_182: -3.36131960e-27 - art_sys_183: -7.65244258e-28 - art_sys_184: -3.90782477e-29 - art_sys_185: 2.62629562e-29 + art_sys_159: 2.51387120e-16 + art_sys_160: -3.94625832e-15 + art_sys_161: 2.92990973e-17 + art_sys_162: 2.92990973e-17 + art_sys_163: -6.60186053e-17 + art_sys_164: -6.60186053e-17 + art_sys_165: 1.24681510e-29 + art_sys_166: -6.20908050e-30 + art_sys_167: -0.0 + art_sys_168: -2.18366922e-23 + art_sys_169: -1.24599220e-23 + art_sys_170: 1.23173787e-24 + art_sys_171: -2.94562360e-24 + art_sys_172: -1.17193110e-24 + art_sys_173: -1.60842742e-26 + art_sys_174: 1.94294790e-25 + art_sys_175: 1.65190114e-26 + art_sys_176: -1.13715867e-25 + art_sys_177: 2.76098105e-26 + art_sys_178: 5.89904531e-27 + art_sys_179: -1.03507243e-27 + art_sys_180: 9.93191578e-29 + art_sys_181: 6.98930527e-27 + art_sys_182: 7.09789245e-27 + art_sys_183: -6.10488798e-29 + art_sys_184: 1.30139146e-28 + art_sys_185: 1.14496770e-28 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -33450,154 +33450,154 @@ bins: art_sys_35: 0.0 art_sys_36: 0.0 art_sys_37: 0.0 - art_sys_38: 2.23484212e-282 - art_sys_39: -4.49604083e-261 - art_sys_40: -3.01897056e-256 - art_sys_41: 4.12213641e-245 - art_sys_42: -1.16594843e-145 - art_sys_43: -1.45021417e-145 - art_sys_44: -8.40535633e-139 - art_sys_45: 1.48954418e-129 - art_sys_46: -3.88787213e-122 - art_sys_47: -3.13296273e-116 - art_sys_48: 3.33461302e-110 - art_sys_49: -1.09877490e-102 - art_sys_50: -9.57292147e-95 - art_sys_51: 7.62193440e-82 - art_sys_52: 3.54535814e-90 - art_sys_53: 2.91512980e-92 - art_sys_54: -3.07534433e-83 - art_sys_55: -1.37687688e-80 - art_sys_56: 8.26783737e-78 - art_sys_57: 1.89926002e-03 - art_sys_58: 1.15514208e-03 - art_sys_59: 4.47839131e-03 - art_sys_60: 2.06048376e-21 - art_sys_61: -7.03394410e-03 - art_sys_62: -2.28529119e-02 - art_sys_63: -8.49182234e-02 - art_sys_64: -9.10314569e-02 - art_sys_65: -2.25408899e-02 - art_sys_66: 1.54007586e-19 - art_sys_67: 1.42578380e-01 - art_sys_68: 3.39918644e-02 - art_sys_69: 5.37437986e-19 - art_sys_70: 1.94815719e-19 - art_sys_71: -4.30667883e-19 - art_sys_72: 2.91694052e-19 - art_sys_73: 3.63300651e-19 - art_sys_74: 2.59328220e-20 + art_sys_38: 0.0 + art_sys_39: 0.0 + art_sys_40: 0.0 + art_sys_41: 0.0 + art_sys_42: 0.0 + art_sys_43: 0.0 + art_sys_44: -1.18906337e-208 + art_sys_45: -5.99684271e-202 + art_sys_46: -6.88387502e-152 + art_sys_47: -3.81137894e-157 + art_sys_48: 2.05468899e-149 + art_sys_49: -1.75313361e-140 + art_sys_50: 7.51667536e-133 + art_sys_51: -3.11878119e-122 + art_sys_52: -3.46510045e-139 + art_sys_53: -1.10666679e-135 + art_sys_54: -1.30942491e-130 + art_sys_55: -3.22878012e-127 + art_sys_56: -5.20693139e-124 + art_sys_57: -1.85570438e-45 + art_sys_58: -9.19533606e-32 + art_sys_59: 3.52857764e-43 + art_sys_60: -4.26625704e-40 + art_sys_61: -1.68181564e-25 + art_sys_62: 4.66846226e-40 + art_sys_63: 7.88577578e-30 + art_sys_64: 1.89926002e-03 + art_sys_65: 1.15514208e-03 + art_sys_66: 4.47839131e-03 + art_sys_67: 7.03394410e-03 + art_sys_68: 2.28529119e-02 + art_sys_69: -8.49182234e-02 + art_sys_70: 9.10314569e-02 + art_sys_71: -2.25408899e-02 + art_sys_72: 1.42578380e-01 + art_sys_73: -3.39918644e-02 + art_sys_74: -2.18209571e-19 art_sys_75: 3.25418310e-02 - art_sys_76: -6.93342838e-15 - art_sys_77: 1.00875717e-14 - art_sys_78: -6.46561309e-15 + art_sys_76: -9.07487666e-15 + art_sys_77: 9.26967382e-15 + art_sys_78: 6.09682485e-16 art_sys_79: 1.14093504e-02 - art_sys_80: 1.31288266e-15 - art_sys_81: -4.58189124e-16 - art_sys_82: -3.00222543e-16 - art_sys_83: 1.63905738e-16 - art_sys_84: -6.73714534e-03 - art_sys_85: -8.34421874e-18 - art_sys_86: 1.18932619e-17 - art_sys_87: 1.25652506e-03 + art_sys_80: 1.34641119e-15 + art_sys_81: -6.73714534e-03 + art_sys_82: -1.65012244e-15 + art_sys_83: 1.41712096e-16 + art_sys_84: -1.42604673e-16 + art_sys_85: 3.36693463e-17 + art_sys_86: 4.22419414e-17 + art_sys_87: -1.25652505e-03 art_sys_88: -2.58648401e-04 - art_sys_89: -1.32979077e-04 - art_sys_90: -2.26031591e-15 - art_sys_91: -2.41182205e-14 - art_sys_92: 6.12207317e-16 - art_sys_93: 5.57954071e-14 - art_sys_94: -3.50954956e-16 - art_sys_95: 5.38529744e-17 - art_sys_96: -1.29318177e-05 - art_sys_97: -1.20674612e-18 - art_sys_98: -1.29887259e-16 - art_sys_99: -3.15961323e-16 - art_sys_100: -4.09791962e-17 - art_sys_101: 3.76806427e-19 - art_sys_102: -1.63253381e-07 - art_sys_103: -1.45723009e-14 - art_sys_104: -6.58831941e-18 - art_sys_105: 9.78176620e-08 - art_sys_106: 1.81555663e-18 - art_sys_107: -2.83015229e-17 - art_sys_108: -2.85159927e-16 - art_sys_109: -3.16784911e-16 - art_sys_110: -4.33800282e-08 - art_sys_111: -1.45912549e-17 - art_sys_112: 3.45474690e-16 - art_sys_113: 1.83925132e-08 - art_sys_114: -3.70770665e-17 - art_sys_115: -1.60530595e-16 - art_sys_116: 1.20373918e-15 - art_sys_117: -8.85599077e-09 - art_sys_118: 8.22946796e-17 - art_sys_119: 1.30625854e-14 - art_sys_120: -2.41920075e-16 - art_sys_121: 9.91789390e-15 - art_sys_122: 1.77419835e-15 - art_sys_123: 1.40903452e-15 - art_sys_124: -2.05234483e-15 - art_sys_125: 9.74999943e-16 - art_sys_126: -5.08757023e-16 - art_sys_127: -2.98705570e-15 - art_sys_128: 1.06477442e-15 - art_sys_129: -1.62596102e-16 - art_sys_130: -2.06626416e-15 - art_sys_131: 4.93884438e-16 - art_sys_132: 4.26951012e-15 - art_sys_133: 7.54330797e-16 - art_sys_134: 5.59845769e-15 - art_sys_135: 5.75623980e-16 - art_sys_136: -4.71249303e-14 - art_sys_137: 2.83052220e-16 - art_sys_138: 3.91752460e-14 - art_sys_139: -5.25508371e-16 - art_sys_140: -7.01369477e-20 - art_sys_141: 1.45723072e-14 - art_sys_142: -0.0 - art_sys_143: -1.40981109e-15 - art_sys_144: -8.45710693e-15 - art_sys_145: -1.52242708e-14 - art_sys_146: 3.93546590e-09 - art_sys_147: 1.60824074e-09 - art_sys_148: 6.07677213e-10 - art_sys_149: 2.29919236e-10 - art_sys_150: -7.59306394e-11 - art_sys_151: -2.53434964e-11 - art_sys_152: 8.25594581e-12 - art_sys_153: -2.70842045e-12 - art_sys_154: 8.38864185e-13 - art_sys_155: -2.53256713e-13 - art_sys_156: 7.59723543e-14 - art_sys_157: -3.88070619e-15 + art_sys_89: 1.01714066e-18 + art_sys_90: -1.32979077e-04 + art_sys_91: 3.04964167e-16 + art_sys_92: 4.62089064e-20 + art_sys_93: 1.09411188e-19 + art_sys_94: -1.29318176e-05 + art_sys_95: -9.49352664e-16 + art_sys_96: -1.83607023e-17 + art_sys_97: -4.79758892e-18 + art_sys_98: 9.45966143e-15 + art_sys_99: 4.23915149e-16 + art_sys_100: 1.71865656e-13 + art_sys_101: 5.34075276e-15 + art_sys_102: -2.12606983e-15 + art_sys_103: 3.24178214e-14 + art_sys_104: -2.10880658e-15 + art_sys_105: -1.63251998e-07 + art_sys_106: -1.33451469e-15 + art_sys_107: 2.18939094e-16 + art_sys_108: -9.78179919e-08 + art_sys_109: -4.33799945e-08 + art_sys_110: 9.22235872e-15 + art_sys_111: 2.48432968e-15 + art_sys_112: 1.80202900e-15 + art_sys_113: -9.44677307e-16 + art_sys_114: 1.83925745e-08 + art_sys_115: -5.31504515e-16 + art_sys_116: -2.38393338e-17 + art_sys_117: 8.85595150e-09 + art_sys_118: 5.56651397e-16 + art_sys_119: -3.45521491e-15 + art_sys_120: -3.82739257e-17 + art_sys_121: 3.93541846e-09 + art_sys_122: -4.94706693e-15 + art_sys_123: 8.46320104e-18 + art_sys_124: 1.03314177e-16 + art_sys_125: 1.60825694e-09 + art_sys_126: 6.46423192e-16 + art_sys_127: -6.54757459e-16 + art_sys_128: -9.12819896e-17 + art_sys_129: -6.07681158e-10 + art_sys_130: -4.85251625e-15 + art_sys_131: 2.29918801e-10 + art_sys_132: 4.92213957e-15 + art_sys_133: -1.76023275e-14 + art_sys_134: 2.95822214e-18 + art_sys_135: -1.31916053e-16 + art_sys_136: 7.59204938e-11 + art_sys_137: -2.02609248e-14 + art_sys_138: -6.95765012e-18 + art_sys_139: 4.46048807e-16 + art_sys_140: -2.53511746e-11 + art_sys_141: 7.99131591e-15 + art_sys_142: -1.19736623e-17 + art_sys_143: -4.44068322e-15 + art_sys_144: 8.23803276e-12 + art_sys_145: 5.72336980e-17 + art_sys_146: 4.48001349e-15 + art_sys_147: -2.71243836e-12 + art_sys_148: -8.01217533e-13 + art_sys_149: -7.78160579e-17 + art_sys_150: 3.09440720e-15 + art_sys_151: 2.62576284e-15 + art_sys_152: 2.82323973e-13 + art_sys_153: -4.03945218e-15 + art_sys_154: -5.99144771e-18 + art_sys_155: -5.82873947e-14 + art_sys_156: 0.0 + art_sys_157: 1.47108590e-16 art_sys_158: -0.0 - art_sys_159: 1.13986266e-15 - art_sys_160: 1.13986266e-15 - art_sys_161: 5.58234382e-16 - art_sys_162: -1.21658575e-28 - art_sys_163: -0.0 - art_sys_164: -4.48630496e-29 - art_sys_165: -6.46147752e-22 - art_sys_166: 1.87315857e-22 - art_sys_167: -5.15070280e-22 - art_sys_168: 1.41971510e-22 - art_sys_169: 6.57025266e-23 - art_sys_170: 7.32911766e-23 - art_sys_171: 2.66836574e-23 - art_sys_172: -1.01120244e-23 - art_sys_173: -1.24419525e-23 - art_sys_174: 5.58656594e-27 - art_sys_175: 9.96758387e-25 - art_sys_176: 1.00827271e-24 - art_sys_177: -4.81599570e-25 - art_sys_178: -2.84113696e-25 - art_sys_179: -3.41155286e-25 - art_sys_180: 1.06078925e-26 - art_sys_181: 1.88848915e-26 - art_sys_182: 9.42623111e-27 - art_sys_183: 2.16910432e-27 - art_sys_184: 1.10946474e-28 - art_sys_185: -7.44551569e-29 + art_sys_159: -7.08424792e-16 + art_sys_160: 1.11831323e-14 + art_sys_161: -8.24627832e-17 + art_sys_162: -8.24627832e-17 + art_sys_163: 1.86527097e-16 + art_sys_164: 1.86527097e-16 + art_sys_165: -3.53399304e-29 + art_sys_166: 1.75998685e-29 + art_sys_167: 0.0 + art_sys_168: 5.88207600e-23 + art_sys_169: 3.47711470e-23 + art_sys_170: -3.64673986e-24 + art_sys_171: 4.00485621e-24 + art_sys_172: 2.85419927e-24 + art_sys_173: 1.83554055e-27 + art_sys_174: -5.10744905e-25 + art_sys_175: -6.19917188e-26 + art_sys_176: 3.24448657e-25 + art_sys_177: -7.25448465e-26 + art_sys_178: -1.64792978e-26 + art_sys_179: 2.93565132e-27 + art_sys_180: -2.81431856e-28 + art_sys_181: -2.25269244e-26 + art_sys_182: -1.97867729e-26 + art_sys_183: 1.87343422e-28 + art_sys_184: -3.69090138e-28 + art_sys_185: -3.24716930e-28 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -33742,153 +33742,153 @@ bins: art_sys_36: 0.0 art_sys_37: 0.0 art_sys_38: 0.0 - art_sys_39: -9.02354232e-262 - art_sys_40: -6.05906604e-257 - art_sys_41: 8.27311718e-246 - art_sys_42: -2.63989531e-146 - art_sys_43: -3.28351880e-146 - art_sys_44: -1.90310825e-139 - art_sys_45: 3.37256829e-130 - art_sys_46: -8.80276962e-123 - art_sys_47: -7.09353296e-117 - art_sys_48: 7.55010177e-111 - art_sys_49: -2.48780360e-103 - art_sys_50: -2.16746383e-95 - art_sys_51: 1.72572889e-82 - art_sys_52: 8.02726270e-91 - art_sys_53: 6.60032408e-93 - art_sys_54: -6.96307563e-84 - art_sys_55: -3.11747135e-81 - art_sys_56: 1.87197174e-78 - art_sys_57: 4.30023124e-04 - art_sys_58: -1.19311629e-03 - art_sys_59: -1.12973738e-03 - art_sys_60: 1.38708878e-22 - art_sys_61: -3.65079577e-04 - art_sys_62: -1.14984477e-02 - art_sys_63: -6.00041474e-03 - art_sys_64: -3.02971354e-02 - art_sys_65: -2.18635288e-02 - art_sys_66: 9.33464338e-20 - art_sys_67: 5.11831117e-02 - art_sys_68: 1.26694346e-01 - art_sys_69: 6.18650552e-19 - art_sys_70: -4.12936485e-19 - art_sys_71: -2.66320487e-19 - art_sys_72: 1.36777983e-19 - art_sys_73: 1.26698837e-19 - art_sys_74: 4.79241545e-20 + art_sys_39: 0.0 + art_sys_40: 0.0 + art_sys_41: 0.0 + art_sys_42: 0.0 + art_sys_43: 0.0 + art_sys_44: -2.76892450e-209 + art_sys_45: -1.39646084e-202 + art_sys_46: -1.55919819e-152 + art_sys_47: -8.63277605e-158 + art_sys_48: 4.65387205e-150 + art_sys_49: -3.97084889e-141 + art_sys_50: 1.70252751e-133 + art_sys_51: -7.06404165e-123 + art_sys_52: -7.84845502e-140 + art_sys_53: -2.50660107e-136 + art_sys_54: -2.96584838e-131 + art_sys_55: -7.31318930e-128 + art_sys_56: -1.17937034e-124 + art_sys_57: -4.20161431e-46 + art_sys_58: -2.08197253e-32 + art_sys_59: 7.98926942e-44 + art_sys_60: -9.65949473e-41 + art_sys_61: -3.80790212e-26 + art_sys_62: 1.05701097e-40 + art_sys_63: 1.78546694e-30 + art_sys_64: 4.30023124e-04 + art_sys_65: -1.19311629e-03 + art_sys_66: -1.12973738e-03 + art_sys_67: 3.65079577e-04 + art_sys_68: 1.14984477e-02 + art_sys_69: -6.00041474e-03 + art_sys_70: 3.02971354e-02 + art_sys_71: -2.18635288e-02 + art_sys_72: 5.11831117e-02 + art_sys_73: -1.26694346e-01 + art_sys_74: -6.18835071e-20 art_sys_75: -2.40447666e-02 - art_sys_76: 9.81840900e-15 - art_sys_77: -1.36178783e-14 - art_sys_78: 2.68210369e-15 + art_sys_76: 6.17745507e-15 + art_sys_77: -5.87216449e-15 + art_sys_78: -1.92223854e-15 art_sys_79: -7.69164209e-03 - art_sys_80: -1.11305311e-15 - art_sys_81: 4.55125758e-16 - art_sys_82: 4.00498388e-16 - art_sys_83: -1.97802491e-16 - art_sys_84: 7.65701046e-03 - art_sys_85: 1.18630062e-17 - art_sys_86: -1.98181741e-17 - art_sys_87: -1.89016022e-03 - art_sys_88: 4.29204136e-04 - art_sys_89: 2.33864373e-04 - art_sys_90: 1.85491188e-15 - art_sys_91: 2.74103034e-14 - art_sys_92: -6.95093466e-16 - art_sys_93: -6.34132288e-14 - art_sys_94: 3.99123317e-16 - art_sys_95: -6.64745952e-17 - art_sys_96: 2.49728440e-05 - art_sys_97: 1.85311711e-18 - art_sys_98: 1.47042441e-16 - art_sys_99: 3.59113136e-16 - art_sys_100: 6.48001223e-17 - art_sys_101: -7.82718484e-19 - art_sys_102: 3.73565131e-07 - art_sys_103: 2.19221605e-14 - art_sys_104: 1.04871624e-17 - art_sys_105: -2.13265830e-07 - art_sys_106: -2.61493415e-18 - art_sys_107: 3.16002260e-17 - art_sys_108: 4.75547393e-16 - art_sys_109: 4.76416152e-16 - art_sys_110: 9.72645126e-08 - art_sys_111: 2.10966180e-17 - art_sys_112: -8.16642135e-16 - art_sys_113: -4.20175833e-08 - art_sys_114: 5.52047844e-17 - art_sys_115: 2.60200859e-16 - art_sys_116: -1.79080349e-15 - art_sys_117: 2.03614710e-08 - art_sys_118: -1.24015318e-16 - art_sys_119: -2.52254222e-14 - art_sys_120: 3.63881719e-16 - art_sys_121: -1.60962108e-14 - art_sys_122: -2.66607968e-15 - art_sys_123: -3.27614782e-15 - art_sys_124: 3.08308436e-15 - art_sys_125: -1.60752060e-15 - art_sys_126: 9.74268842e-16 - art_sys_127: 5.27369818e-15 - art_sys_128: -2.90390204e-15 - art_sys_129: 2.23900336e-16 - art_sys_130: 4.87423088e-15 - art_sys_131: -1.23485112e-15 - art_sys_132: -7.41083084e-15 - art_sys_133: -1.69429147e-15 - art_sys_134: -1.32048874e-14 - art_sys_135: -1.02209039e-15 - art_sys_136: 1.11426998e-13 - art_sys_137: -4.96837639e-16 - art_sys_138: -9.25900497e-14 - art_sys_139: 1.20693348e-15 - art_sys_140: 9.75086039e-20 - art_sys_141: -3.44715442e-14 - art_sys_142: 0.0 - art_sys_143: 3.35467530e-15 - art_sys_144: 1.99735947e-14 - art_sys_145: 3.60127968e-14 - art_sys_146: -9.16702258e-09 - art_sys_147: -3.76724323e-09 - art_sys_148: -1.43200440e-09 - art_sys_149: -5.43655947e-10 - art_sys_150: 1.79972713e-10 - art_sys_151: 6.01670220e-11 - art_sys_152: -1.96162280e-11 - art_sys_153: 6.43894271e-12 - art_sys_154: -1.99487119e-12 - art_sys_155: 6.02354748e-13 - art_sys_156: -1.80709457e-13 - art_sys_157: 9.22418172e-15 + art_sys_80: -1.60758211e-15 + art_sys_81: 7.65701046e-03 + art_sys_82: 1.87385976e-15 + art_sys_83: -2.09710581e-16 + art_sys_84: 2.11756095e-16 + art_sys_85: -5.21953897e-17 + art_sys_86: -6.47736038e-17 + art_sys_87: 1.89016022e-03 + art_sys_88: 4.29204135e-04 + art_sys_89: -1.80138249e-18 + art_sys_90: 2.33864373e-04 + art_sys_91: -3.38447182e-16 + art_sys_92: -8.77878639e-20 + art_sys_93: -2.12620561e-19 + art_sys_94: 2.49728439e-05 + art_sys_95: 1.45198409e-15 + art_sys_96: 2.22018692e-17 + art_sys_97: 4.24121080e-18 + art_sys_98: -1.42262042e-14 + art_sys_99: -6.37911745e-16 + art_sys_100: -2.58521416e-13 + art_sys_101: -8.03413130e-15 + art_sys_102: 3.25187792e-15 + art_sys_103: -4.87662180e-14 + art_sys_104: 3.17617714e-15 + art_sys_105: 3.73562119e-07 + art_sys_106: 2.00655765e-15 + art_sys_107: -3.56769931e-16 + art_sys_108: 2.13266555e-07 + art_sys_109: 9.72644339e-08 + art_sys_110: -1.61508615e-14 + art_sys_111: -4.10415687e-15 + art_sys_112: -2.95542288e-15 + art_sys_113: 1.76974582e-15 + art_sys_114: -4.20177224e-08 + art_sys_115: 8.82458130e-16 + art_sys_116: 4.61660690e-17 + art_sys_117: -2.03613800e-08 + art_sys_118: -9.24288682e-16 + art_sys_119: 6.67244222e-15 + art_sys_120: 6.73832637e-17 + art_sys_121: -9.16691323e-09 + art_sys_122: 8.69954820e-15 + art_sys_123: -1.90540546e-17 + art_sys_124: -1.81672557e-16 + art_sys_125: -3.76728122e-09 + art_sys_126: -1.24835281e-15 + art_sys_127: 1.41907487e-15 + art_sys_128: 1.76221325e-16 + art_sys_129: 1.43201375e-09 + art_sys_130: 1.14195290e-14 + art_sys_131: -5.43654920e-10 + art_sys_132: -9.50517482e-15 + art_sys_133: 4.06080418e-14 + art_sys_134: -6.59989987e-18 + art_sys_135: 2.56069233e-16 + art_sys_136: -1.79948682e-10 + art_sys_137: 4.73691609e-14 + art_sys_138: 1.86314112e-17 + art_sys_139: -1.04046335e-15 + art_sys_140: 6.01852561e-11 + art_sys_141: -1.74046022e-14 + art_sys_142: 2.72336080e-17 + art_sys_143: 1.04702043e-14 + art_sys_144: -1.95736680e-11 + art_sys_145: -1.24799150e-16 + art_sys_146: -1.05877949e-14 + art_sys_147: 6.44849491e-12 + art_sys_148: 1.90536004e-12 + art_sys_149: 1.72978636e-16 + art_sys_150: -7.32740140e-15 + art_sys_151: -6.24769772e-15 + art_sys_152: -6.71478132e-13 + art_sys_153: 9.57868852e-15 + art_sys_154: 1.06784996e-17 + art_sys_155: 1.38656599e-13 + art_sys_156: -0.0 + art_sys_157: -3.48691078e-16 art_sys_158: 0.0 - art_sys_159: -2.68525634e-15 - art_sys_160: -2.68525634e-15 - art_sys_161: -1.32838579e-15 - art_sys_162: 2.89628783e-28 - art_sys_163: 0.0 - art_sys_164: 1.06880918e-28 - art_sys_165: 1.53405646e-21 - art_sys_166: -4.45215022e-22 - art_sys_167: 1.20304398e-21 - art_sys_168: -3.37558044e-22 - art_sys_169: -1.55766791e-22 - art_sys_170: -1.75338221e-22 - art_sys_171: -5.45007268e-23 - art_sys_172: 1.40260220e-23 - art_sys_173: 2.74280268e-23 - art_sys_174: -1.32877066e-26 - art_sys_175: -2.37238099e-24 - art_sys_176: -2.39142334e-24 - art_sys_177: 1.14411649e-24 - art_sys_178: 6.77819512e-25 - art_sys_179: 7.07486902e-25 - art_sys_180: -2.48189878e-26 - art_sys_181: -4.55282483e-26 - art_sys_182: -2.17165711e-26 - art_sys_183: -5.15860124e-27 - art_sys_184: -2.64192397e-28 - art_sys_185: 1.77109660e-28 + art_sys_159: 1.67780665e-15 + art_sys_160: -2.65942692e-14 + art_sys_161: 1.95015343e-16 + art_sys_162: 1.95015343e-16 + art_sys_163: -4.42672414e-16 + art_sys_164: -4.42672414e-16 + art_sys_165: 8.40532384e-29 + art_sys_166: -4.18610564e-29 + art_sys_167: -0.0 + art_sys_168: -1.53057526e-22 + art_sys_169: -8.13158213e-23 + art_sys_170: 8.51845788e-24 + art_sys_171: 2.06237251e-24 + art_sys_172: -5.59332307e-24 + art_sys_173: 1.66827136e-25 + art_sys_174: 1.12274288e-24 + art_sys_175: 1.93109802e-25 + art_sys_176: -7.80916292e-25 + art_sys_177: 1.78805036e-25 + art_sys_178: 3.79071229e-26 + art_sys_179: -6.98519853e-27 + art_sys_180: 6.69216518e-28 + art_sys_181: 5.77708868e-26 + art_sys_182: 4.66405487e-26 + art_sys_183: -4.80193940e-28 + art_sys_184: 8.78201494e-28 + art_sys_185: 7.72604297e-28 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -34033,153 +34033,153 @@ bins: art_sys_36: 0.0 art_sys_37: 0.0 art_sys_38: 0.0 - art_sys_39: -3.76065997e-263 - art_sys_40: -2.52518206e-258 - art_sys_41: 3.44791209e-247 - art_sys_42: -1.67422648e-147 - art_sys_43: -2.08241369e-147 - art_sys_44: -1.20695477e-140 - art_sys_45: 2.13888904e-131 - art_sys_46: -5.58273275e-124 - art_sys_47: -4.49873171e-118 - art_sys_48: 4.78828849e-112 - art_sys_49: -1.57776964e-104 - art_sys_50: -1.37460957e-96 - art_sys_51: 1.09446045e-83 - art_sys_52: 5.09090483e-92 - art_sys_53: 4.18593772e-94 - art_sys_54: -4.41599542e-85 - art_sys_55: -1.97710609e-82 - art_sys_56: 1.18720794e-79 - art_sys_57: 2.72721499e-05 - art_sys_58: -3.60285269e-04 - art_sys_59: -5.23186009e-04 - art_sys_60: -1.21430233e-22 - art_sys_61: 3.81528105e-04 - art_sys_62: -2.32361333e-04 - art_sys_63: 6.27790428e-03 - art_sys_64: 3.40802396e-03 - art_sys_65: -7.72761699e-04 - art_sys_66: -6.99228419e-21 - art_sys_67: -1.01361971e-02 - art_sys_68: 2.00420601e-02 - art_sys_69: 4.14033064e-20 - art_sys_70: -1.10145675e-19 - art_sys_71: 9.71763224e-21 - art_sys_72: -1.48684489e-20 - art_sys_73: -3.15306063e-20 - art_sys_74: 4.81696031e-21 + art_sys_39: 0.0 + art_sys_40: 0.0 + art_sys_41: 0.0 + art_sys_42: 0.0 + art_sys_43: 0.0 + art_sys_44: -1.90553233e-210 + art_sys_45: -9.61023367e-204 + art_sys_46: -9.89976917e-154 + art_sys_47: -5.48118198e-159 + art_sys_48: 2.95486868e-151 + art_sys_49: -2.52119889e-142 + art_sys_50: 1.08098056e-134 + art_sys_51: -4.48515026e-124 + art_sys_52: -4.98319544e-141 + art_sys_53: -1.59150852e-137 + art_sys_54: -1.88309700e-132 + art_sys_55: -4.64334082e-129 + art_sys_56: -7.48813985e-126 + art_sys_57: -2.66467205e-47 + art_sys_58: -1.32039107e-33 + art_sys_59: 5.06681038e-45 + art_sys_60: -6.12607054e-42 + art_sys_61: -2.41497901e-27 + art_sys_62: 6.70368098e-42 + art_sys_63: 1.13234664e-31 + art_sys_64: 2.72721499e-05 + art_sys_65: -3.60285269e-04 + art_sys_66: -5.23186009e-04 + art_sys_67: -3.81528105e-04 + art_sys_68: 2.32361333e-04 + art_sys_69: 6.27790428e-03 + art_sys_70: -3.40802396e-03 + art_sys_71: -7.72761699e-04 + art_sys_72: -1.01361971e-02 + art_sys_73: -2.00420601e-02 + art_sys_74: 1.91496469e-20 art_sys_75: -3.29315067e-02 - art_sys_76: -2.49194270e-14 - art_sys_77: 3.64575925e-14 - art_sys_78: -7.91334216e-15 + art_sys_76: -2.03375973e-14 + art_sys_77: 1.66306104e-14 + art_sys_78: 6.23605561e-15 art_sys_79: 1.87526498e-02 - art_sys_80: 2.33820727e-15 - art_sys_81: -6.05290924e-16 - art_sys_82: -9.54450407e-16 - art_sys_83: 3.99604684e-16 - art_sys_84: -1.35410373e-02 - art_sys_85: -4.58185655e-17 - art_sys_86: 5.60417717e-17 - art_sys_87: 5.21288118e-03 + art_sys_80: 3.23582529e-15 + art_sys_81: -1.35410373e-02 + art_sys_82: -3.31546220e-15 + art_sys_83: 5.68676598e-16 + art_sys_84: -5.84145626e-16 + art_sys_85: 1.47056398e-16 + art_sys_86: 1.79607781e-16 + art_sys_87: -5.21288118e-03 art_sys_88: -1.19457306e-03 - art_sys_89: -6.88435721e-04 - art_sys_90: -4.02088461e-15 - art_sys_91: -4.84705082e-14 - art_sys_92: 1.22593475e-15 - art_sys_93: 1.12142785e-13 - art_sys_94: -7.06072010e-16 - art_sys_95: 1.38674667e-16 - art_sys_96: -8.03338516e-05 - art_sys_97: -5.23574667e-18 - art_sys_98: -2.58033319e-16 - art_sys_99: -6.35023510e-16 - art_sys_100: -1.79377719e-16 - art_sys_101: 2.62464986e-18 - art_sys_102: -1.14243818e-06 - art_sys_103: -6.04596636e-14 - art_sys_104: -2.82551880e-17 - art_sys_105: 7.21294409e-07 - art_sys_106: 7.20247259e-18 - art_sys_107: -5.37668729e-17 - art_sys_108: -1.32735466e-15 - art_sys_109: -1.31390909e-15 - art_sys_110: -3.27764388e-07 - art_sys_111: -5.80048736e-17 - art_sys_112: 2.96516217e-15 - art_sys_113: 1.45453385e-07 - art_sys_114: -1.52087024e-16 - art_sys_115: -7.07019839e-16 - art_sys_116: 4.93424989e-15 - art_sys_117: -7.19040686e-08 - art_sys_118: 3.42071482e-16 - art_sys_119: 8.11464381e-14 - art_sys_120: -1.00347929e-15 - art_sys_121: 4.37695130e-14 - art_sys_122: 7.35509777e-15 - art_sys_123: 9.96237171e-15 - art_sys_124: -8.46685523e-15 - art_sys_125: 4.67977765e-15 - art_sys_126: -3.11252514e-15 - art_sys_127: -1.55359999e-14 - art_sys_128: 1.04425431e-14 - art_sys_129: 1.09057994e-16 - art_sys_130: -1.77203360e-14 - art_sys_131: 4.85663924e-15 - art_sys_132: 2.15635131e-14 - art_sys_133: 5.21864187e-15 - art_sys_134: 4.82058865e-14 - art_sys_135: 3.03161419e-15 - art_sys_136: -4.07865806e-13 - art_sys_137: 1.49197465e-15 - art_sys_138: 3.38722229e-13 - art_sys_139: -4.22629161e-15 - art_sys_140: -2.34696915e-19 - art_sys_141: 1.26248369e-13 - art_sys_142: -0.0 - art_sys_143: -1.23096505e-14 - art_sys_144: -7.29758413e-14 - art_sys_145: -1.31891872e-13 - art_sys_146: 3.27342659e-08 - art_sys_147: 1.36194563e-08 - art_sys_148: 5.21125059e-09 - art_sys_149: 1.99010440e-09 - art_sys_150: -6.61104295e-10 - art_sys_151: -2.21538809e-10 - art_sys_152: 7.23333580e-11 - art_sys_153: -2.37611634e-11 - art_sys_154: 7.36538582e-12 - art_sys_155: -2.22448685e-12 - art_sys_156: 6.67441207e-13 - art_sys_157: -3.40343046e-14 + art_sys_89: 5.34606369e-18 + art_sys_90: -6.88435721e-04 + art_sys_91: 5.64581015e-16 + art_sys_92: 2.93400903e-19 + art_sys_93: 6.85013336e-19 + art_sys_94: -8.03338511e-05 + art_sys_95: -4.00986648e-15 + art_sys_96: -4.51272863e-17 + art_sys_97: -2.52639453e-18 + art_sys_98: 3.92336270e-14 + art_sys_99: 1.75933885e-15 + art_sys_100: 7.12964085e-13 + art_sys_101: 2.21576653e-14 + art_sys_102: -8.98389709e-15 + art_sys_103: 1.34493653e-13 + art_sys_104: -8.76684405e-15 + art_sys_105: -1.14242797e-06 + art_sys_106: -5.53284828e-15 + art_sys_107: 9.74496142e-16 + art_sys_108: -7.21296838e-07 + art_sys_109: -3.27764109e-07 + art_sys_110: 4.73610596e-14 + art_sys_111: 1.13706326e-14 + art_sys_112: 8.12631597e-15 + art_sys_113: -5.50227124e-15 + art_sys_114: 1.45453867e-07 + art_sys_115: -2.45741894e-15 + art_sys_116: -1.48799297e-16 + art_sys_117: 7.19037452e-08 + art_sys_118: 2.57482913e-15 + art_sys_119: -2.14642560e-14 + art_sys_120: -1.98553432e-16 + art_sys_121: 3.27338785e-08 + art_sys_122: -2.56075431e-14 + art_sys_123: 6.03152335e-17 + art_sys_124: 5.34715185e-16 + art_sys_125: 1.36195938e-08 + art_sys_126: 4.01573720e-15 + art_sys_127: -4.80341344e-15 + art_sys_128: -5.66735398e-16 + art_sys_129: -5.21128503e-09 + art_sys_130: -4.02230088e-14 + art_sys_131: 1.99010065e-09 + art_sys_132: 3.05766832e-14 + art_sys_133: -1.44078329e-13 + art_sys_134: 2.25291685e-17 + art_sys_135: -8.22412212e-16 + art_sys_136: 6.61016104e-10 + art_sys_137: -1.70820978e-13 + art_sys_138: -5.52483301e-17 + art_sys_139: 3.81000886e-15 + art_sys_140: -2.21605987e-10 + art_sys_141: 5.90297740e-14 + art_sys_142: -8.99171198e-17 + art_sys_143: -3.82105819e-14 + art_sys_144: 7.21764334e-11 + art_sys_145: 4.23893015e-16 + art_sys_146: 3.87436903e-14 + art_sys_147: -2.37964136e-11 + art_sys_148: -7.03500502e-12 + art_sys_149: -5.99309066e-16 + art_sys_150: 2.68787766e-14 + art_sys_151: 2.30752431e-14 + art_sys_152: 2.47969260e-12 + art_sys_153: -3.52095266e-14 + art_sys_154: -3.18153012e-17 + art_sys_155: -5.12198454e-13 + art_sys_156: 0.0 + art_sys_157: 1.28006673e-15 art_sys_158: -0.0 - art_sys_159: 9.77572961e-15 - art_sys_160: 9.77572961e-15 - art_sys_161: 4.90933807e-15 - art_sys_162: -1.07109289e-27 - art_sys_163: -0.0 - art_sys_164: -3.95688449e-28 - art_sys_165: -5.65150620e-21 - art_sys_166: 1.64256391e-21 - art_sys_167: -4.56648411e-21 - art_sys_168: 1.24541185e-21 - art_sys_169: 5.74065942e-22 - art_sys_170: 6.49126012e-22 - art_sys_171: 1.80613506e-22 - art_sys_172: -2.84358846e-23 - art_sys_173: -9.91935253e-23 - art_sys_174: 4.90742996e-26 - art_sys_175: 8.79863944e-24 - art_sys_176: 8.79166682e-24 - art_sys_177: -4.21054018e-24 - art_sys_178: -2.51119144e-24 - art_sys_179: -2.37195958e-24 - art_sys_180: 9.85365054e-26 - art_sys_181: 1.68969360e-25 - art_sys_182: 7.90651649e-26 - art_sys_183: 1.90460874e-26 - art_sys_184: 9.77392689e-28 - art_sys_185: -6.54184310e-28 + art_sys_159: -6.15895989e-15 + art_sys_160: 9.81847926e-14 + art_sys_161: -7.14662851e-16 + art_sys_162: -7.14662851e-16 + art_sys_163: 1.62890464e-15 + art_sys_164: 1.62890464e-15 + art_sys_165: -3.10399232e-28 + art_sys_166: 1.54595508e-28 + art_sys_167: 0.0 + art_sys_168: 5.28863839e-22 + art_sys_169: 2.95662757e-22 + art_sys_170: -3.26479382e-23 + art_sys_171: -4.60955036e-23 + art_sys_172: 1.63552883e-23 + art_sys_173: -1.28010285e-24 + art_sys_174: -3.75331000e-24 + art_sys_175: -8.11048170e-25 + art_sys_176: 2.89849497e-24 + art_sys_177: -5.48186969e-25 + art_sys_178: -1.41405687e-25 + art_sys_179: 2.58142098e-26 + art_sys_180: -2.47056062e-27 + art_sys_181: -2.47080036e-25 + art_sys_182: -1.69033121e-25 + art_sys_183: 1.90965088e-27 + art_sys_184: -3.24467862e-27 + art_sys_185: -2.85492152e-27 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -34324,153 +34324,153 @@ bins: art_sys_36: 0.0 art_sys_37: 0.0 art_sys_38: 0.0 - art_sys_39: 9.02590533e-264 - art_sys_40: 6.06065274e-259 - art_sys_41: -8.27528367e-248 - art_sys_42: 1.10638707e-148 - art_sys_43: 1.37613136e-148 - art_sys_44: 7.97597673e-142 - art_sys_45: -1.41345224e-132 - art_sys_46: 3.68926389e-125 - art_sys_47: 2.97291832e-119 - art_sys_48: -3.16426750e-113 - art_sys_49: 1.04264503e-105 - art_sys_50: 9.08389791e-98 - art_sys_51: -7.23257516e-85 - art_sys_52: -3.36424690e-93 - art_sys_53: -2.76621317e-95 - art_sys_54: 2.91824330e-86 - art_sys_55: 1.30654044e-83 - art_sys_56: -7.84548279e-81 - art_sys_57: -1.80223711e-06 - art_sys_58: -7.41697073e-05 - art_sys_59: -1.19884608e-04 - art_sys_60: -3.86610728e-23 - art_sys_61: 1.10552010e-04 - art_sys_62: 5.04522270e-04 - art_sys_63: 1.83365138e-03 - art_sys_64: 2.46062640e-03 - art_sys_65: 1.35657430e-03 - art_sys_66: -9.22673792e-21 - art_sys_67: -6.71641193e-03 - art_sys_68: -1.05094191e-02 - art_sys_69: -6.00947155e-20 - art_sys_70: 2.88199824e-20 - art_sys_71: 2.90209680e-20 - art_sys_72: -1.66952584e-20 - art_sys_73: -2.02123013e-20 - art_sys_74: -3.41805220e-21 + art_sys_39: 0.0 + art_sys_40: 0.0 + art_sys_41: 0.0 + art_sys_42: 0.0 + art_sys_43: 0.0 + art_sys_44: 7.44500417e-212 + art_sys_45: 3.75476500e-205 + art_sys_46: 6.50319282e-155 + art_sys_47: 3.60060751e-160 + art_sys_48: -1.94106352e-152 + art_sys_49: 1.65618432e-143 + art_sys_50: -7.10099893e-136 + art_sys_51: 2.94631082e-125 + art_sys_52: 3.27347841e-142 + art_sys_53: 1.04546748e-138 + art_sys_54: 1.23701297e-133 + art_sys_55: 3.05022674e-130 + art_sys_56: 4.91898512e-127 + art_sys_57: 1.76090622e-48 + art_sys_58: 8.72559476e-35 + art_sys_59: -3.34832119e-46 + art_sys_60: 4.04831646e-43 + art_sys_61: 1.59590054e-28 + art_sys_62: -4.42996692e-43 + art_sys_63: -7.48293302e-33 + art_sys_64: -1.80223711e-06 + art_sys_65: -7.41697073e-05 + art_sys_66: -1.19884608e-04 + art_sys_67: -1.10552010e-04 + art_sys_68: -5.04522270e-04 + art_sys_69: 1.83365138e-03 + art_sys_70: -2.46062640e-03 + art_sys_71: 1.35657430e-03 + art_sys_72: -6.71641193e-03 + art_sys_73: 1.05094191e-02 + art_sys_74: 9.02840986e-21 art_sys_75: -6.08926013e-03 - art_sys_76: 2.65759020e-14 - art_sys_77: -3.30366329e-14 - art_sys_78: -3.05542038e-14 + art_sys_76: -1.82046868e-14 + art_sys_77: 2.49737430e-14 + art_sys_78: -1.33486838e-14 art_sys_79: 2.96369593e-02 - art_sys_80: 1.67926474e-15 - art_sys_81: -4.81914950e-16 - art_sys_82: 8.94524328e-16 - art_sys_83: -2.99620475e-16 - art_sys_84: 6.14096465e-03 - art_sys_85: 5.50505375e-17 - art_sys_86: -1.00739281e-16 - art_sys_87: -5.92172252e-03 + art_sys_80: -1.93668212e-15 + art_sys_81: 6.14096465e-03 + art_sys_82: 1.49144958e-15 + art_sys_83: -5.36808723e-16 + art_sys_84: 6.12743963e-16 + art_sys_85: -1.79523325e-16 + art_sys_86: -2.22857370e-16 + art_sys_87: 5.92172252e-03 art_sys_88: 2.10768907e-03 - art_sys_89: 1.28843390e-03 - art_sys_90: -3.33582839e-15 - art_sys_91: 2.19752101e-14 - art_sys_92: -5.49696229e-16 - art_sys_93: -5.08565797e-14 - art_sys_94: 3.21011814e-16 - art_sys_95: -1.03067835e-16 - art_sys_96: 1.87903011e-04 - art_sys_97: 7.83276161e-18 - art_sys_98: 1.12903754e-16 - art_sys_99: 2.87968848e-16 - art_sys_100: 2.61564434e-16 - art_sys_101: -4.47268923e-18 - art_sys_102: 3.29292199e-06 - art_sys_103: 6.87066276e-14 - art_sys_104: 4.81772619e-17 - art_sys_105: -1.90888969e-06 - art_sys_106: -6.58178613e-18 - art_sys_107: 1.93010136e-17 - art_sys_108: 2.36694413e-15 - art_sys_109: 1.49067946e-15 - art_sys_110: 9.31095887e-07 - art_sys_111: 5.01821070e-17 - art_sys_112: -6.59194346e-15 - art_sys_113: -4.16404021e-07 - art_sys_114: 1.62338444e-16 - art_sys_115: 1.22550349e-15 - art_sys_116: -5.22982074e-15 - art_sys_117: 2.09652252e-07 - art_sys_118: -3.92565757e-16 - art_sys_119: -1.89804302e-13 - art_sys_120: 1.13936403e-15 - art_sys_121: -7.52101436e-14 - art_sys_122: -8.29150106e-15 - art_sys_123: -2.92251988e-14 - art_sys_124: 9.66792016e-15 - art_sys_125: -7.18163266e-15 - art_sys_126: 7.17970830e-15 - art_sys_127: 2.93587632e-14 - art_sys_128: -3.80699848e-14 - art_sys_129: -2.21412595e-15 - art_sys_130: 5.30748475e-14 - art_sys_131: -1.54074015e-14 - art_sys_132: -3.97855588e-14 - art_sys_133: -1.47481274e-14 - art_sys_134: -1.45409367e-13 - art_sys_135: -5.91650998e-15 - art_sys_136: 1.23284933e-12 - art_sys_137: -2.84156806e-15 - art_sys_138: -1.02341172e-12 - art_sys_139: 1.23196175e-14 - art_sys_140: 2.95002580e-19 - art_sys_141: -3.81770723e-13 - art_sys_142: 0.0 - art_sys_143: 3.73941355e-14 - art_sys_144: 2.20278408e-13 - art_sys_145: 3.98841746e-13 - art_sys_146: -9.68628928e-08 - art_sys_147: -4.06553204e-08 - art_sys_148: -1.56836177e-08 - art_sys_149: -6.01579924e-09 - art_sys_150: 2.00557278e-09 - art_sys_151: 6.73433305e-10 - art_sys_152: -2.20153859e-10 - art_sys_153: 7.23739317e-11 - art_sys_154: -2.24432766e-11 - art_sys_155: 6.77984035e-12 - art_sys_156: -2.03444899e-12 - art_sys_157: 1.03635101e-13 + art_sys_89: -1.02191580e-17 + art_sys_90: 1.28843390e-03 + art_sys_91: -1.91998195e-16 + art_sys_92: -6.94295703e-19 + art_sys_93: -1.62187165e-18 + art_sys_94: 1.87903010e-04 + art_sys_95: 5.00177448e-15 + art_sys_96: 3.13797274e-17 + art_sys_97: -8.05065678e-18 + art_sys_98: -4.45009258e-14 + art_sys_99: -2.00167260e-15 + art_sys_100: -8.09728769e-13 + art_sys_101: -2.51749439e-14 + art_sys_102: 1.12055310e-14 + art_sys_103: -1.52794882e-13 + art_sys_104: 1.00115641e-14 + art_sys_105: 3.29289503e-06 + art_sys_106: 6.27091761e-15 + art_sys_107: -1.68630168e-15 + art_sys_108: 1.90889621e-06 + art_sys_109: 9.31095080e-07 + art_sys_110: -8.82999680e-14 + art_sys_111: -1.99587447e-14 + art_sys_112: -1.41400971e-14 + art_sys_113: 1.08312896e-14 + art_sys_114: -4.16405408e-07 + art_sys_115: 4.33867628e-15 + art_sys_116: 3.49681117e-16 + art_sys_117: -2.09651301e-07 + art_sys_118: -4.56821683e-15 + art_sys_119: 5.02054980e-14 + art_sys_120: 3.72755849e-16 + art_sys_121: -9.68617593e-08 + art_sys_122: 4.79231834e-14 + art_sys_123: -1.68725550e-16 + art_sys_124: -1.00043877e-15 + art_sys_125: -4.06557314e-08 + art_sys_126: -9.39335511e-15 + art_sys_127: 1.26676430e-14 + art_sys_128: 1.32483402e-15 + art_sys_129: 1.56837222e-08 + art_sys_130: 1.19158683e-13 + art_sys_131: -6.01578792e-09 + art_sys_132: -7.15190920e-14 + art_sys_133: 4.22142950e-13 + art_sys_134: -6.06089976e-17 + art_sys_135: 1.93779110e-15 + art_sys_136: -2.00530545e-09 + art_sys_137: 5.08774604e-13 + art_sys_138: 1.84194871e-16 + art_sys_139: -1.12611109e-14 + art_sys_140: 6.73637612e-10 + art_sys_141: -1.55863966e-13 + art_sys_142: 2.49700388e-16 + art_sys_143: 1.15000820e-13 + art_sys_144: -2.19676273e-10 + art_sys_145: -1.12159288e-15 + art_sys_146: -1.17077666e-13 + art_sys_147: 7.24813014e-11 + art_sys_148: 2.14367992e-11 + art_sys_149: 1.64283572e-15 + art_sys_150: -8.14094579e-14 + art_sys_151: -7.03463220e-14 + art_sys_152: -7.55747780e-12 + art_sys_153: 1.06868471e-13 + art_sys_154: 6.02433177e-17 + art_sys_155: 1.56145230e-12 + art_sys_156: -0.0 + art_sys_157: -3.88533384e-15 art_sys_158: 0.0 - art_sys_159: -2.94084237e-14 - art_sys_160: -2.94084237e-14 - art_sys_161: -1.49729754e-14 - art_sys_162: 3.26871847e-27 - art_sys_163: 0.0 - art_sys_164: 1.20874289e-27 - art_sys_165: 1.71842868e-20 - art_sys_166: -5.00002733e-21 - art_sys_167: 1.37243573e-20 - art_sys_168: -3.78957289e-21 - art_sys_169: -1.74431411e-21 - art_sys_170: -1.98830938e-21 - art_sys_171: -4.58560844e-22 - art_sys_172: -2.02164645e-23 - art_sys_173: 2.86166966e-22 - art_sys_174: -1.49574863e-25 - art_sys_175: -2.69117794e-23 - art_sys_176: -2.66848129e-23 - art_sys_177: 1.28088462e-23 - art_sys_178: 7.66997112e-24 - art_sys_179: 6.07098172e-24 - art_sys_180: -3.36817739e-25 - art_sys_181: -5.24544038e-25 - art_sys_182: -2.32350984e-25 - art_sys_183: -5.80284028e-26 - art_sys_184: -2.98409498e-27 - art_sys_185: 1.99420462e-27 + art_sys_159: 1.86679342e-14 + art_sys_160: -2.99184317e-13 + art_sys_161: 2.16154685e-15 + art_sys_162: 2.16154685e-15 + art_sys_163: -4.94948417e-15 + art_sys_164: -4.94948417e-15 + art_sys_165: 9.46023392e-28 + art_sys_166: -4.71188629e-28 + art_sys_167: -0.0 + art_sys_168: -1.59495035e-21 + art_sys_169: -8.86824609e-22 + art_sys_170: 9.66499856e-23 + art_sys_171: 2.33075939e-22 + art_sys_172: -4.27815843e-23 + art_sys_173: 3.77809399e-24 + art_sys_174: 1.05874131e-23 + art_sys_175: 2.81131411e-24 + art_sys_176: -8.91257803e-24 + art_sys_177: 1.59305658e-24 + art_sys_178: 4.22131752e-25 + art_sys_179: -7.87224699e-26 + art_sys_180: 7.52770752e-27 + art_sys_181: 8.26334515e-25 + art_sys_182: 5.00511063e-25 + art_sys_183: -6.02870839e-27 + art_sys_184: 9.89413431e-27 + art_sys_185: 8.70597439e-27 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -34614,154 +34614,154 @@ bins: art_sys_35: 0.0 art_sys_36: 0.0 art_sys_37: 0.0 - art_sys_38: -4.36492601e-285 - art_sys_39: 2.72692525e-264 - art_sys_40: 1.83105704e-259 - art_sys_41: -2.50014583e-248 - art_sys_42: 5.24845502e-149 - art_sys_43: 6.52806217e-149 - art_sys_44: 3.78362658e-142 - art_sys_45: -6.70510413e-133 - art_sys_46: 1.75010502e-125 - art_sys_47: 1.41028656e-119 - art_sys_48: -1.50105837e-113 - art_sys_49: 4.94607693e-106 - art_sys_50: 4.30919983e-98 - art_sys_51: -3.43097335e-85 - art_sys_52: -1.59592416e-93 - art_sys_53: -1.31223022e-95 - art_sys_54: 1.38434994e-86 - art_sys_55: 6.19793825e-84 - art_sys_56: -3.72172314e-81 - art_sys_57: -8.54941660e-07 - art_sys_58: -1.23406385e-05 - art_sys_59: -1.94181186e-05 - art_sys_60: -4.07397601e-24 - art_sys_61: 1.10803930e-05 - art_sys_62: 1.51113552e-04 - art_sys_63: 8.65548323e-05 - art_sys_64: 3.97357328e-04 - art_sys_65: 3.65017462e-04 - art_sys_66: -6.79200036e-22 - art_sys_67: -1.15567069e-04 - art_sys_68: -4.08567374e-03 - art_sys_69: -1.50313094e-20 - art_sys_70: 1.73076788e-20 - art_sys_71: 4.12293188e-21 - art_sys_72: -1.35117345e-21 - art_sys_73: 3.55360849e-22 - art_sys_74: -1.23746472e-21 + art_sys_38: 0.0 + art_sys_39: 0.0 + art_sys_40: 0.0 + art_sys_41: 0.0 + art_sys_42: 0.0 + art_sys_43: 0.0 + art_sys_44: 4.72926047e-212 + art_sys_45: 2.38512384e-205 + art_sys_46: 3.09404421e-155 + art_sys_47: 1.71307220e-160 + art_sys_48: -9.23505811e-153 + art_sys_49: 7.87967952e-144 + art_sys_50: -3.37846428e-136 + art_sys_51: 1.40177543e-125 + art_sys_52: 1.55743300e-142 + art_sys_53: 4.97405309e-139 + art_sys_54: 5.88537498e-134 + art_sys_55: 1.45121584e-130 + art_sys_56: 2.34032081e-127 + art_sys_57: 8.35335280e-49 + art_sys_58: 4.13923073e-35 + art_sys_59: -1.58837012e-46 + art_sys_60: 1.92043251e-43 + art_sys_61: 7.57060204e-29 + art_sys_62: -2.10149226e-43 + art_sys_63: -3.54973927e-33 + art_sys_64: -8.54941660e-07 + art_sys_65: -1.23406385e-05 + art_sys_66: -1.94181186e-05 + art_sys_67: -1.10803930e-05 + art_sys_68: -1.51113552e-04 + art_sys_69: 8.65548323e-05 + art_sys_70: -3.97357328e-04 + art_sys_71: 3.65017462e-04 + art_sys_72: -1.15567069e-04 + art_sys_73: 4.08567374e-03 + art_sys_74: -5.26675898e-22 art_sys_75: 4.61979406e-03 - art_sys_76: -1.68031866e-14 - art_sys_77: 3.01844511e-14 - art_sys_78: -1.30655950e-14 + art_sys_76: -4.44978082e-14 + art_sys_77: 2.88617812e-14 + art_sys_78: -3.00769838e-15 art_sys_79: 1.12023691e-02 - art_sys_80: -7.32372752e-16 - art_sys_81: 2.50979792e-15 - art_sys_82: -2.11700562e-16 - art_sys_83: -3.07477988e-16 - art_sys_84: 2.09967849e-02 - art_sys_85: -4.11728984e-17 - art_sys_86: 1.06455823e-16 - art_sys_87: 5.14716402e-03 + art_sys_80: -2.80125061e-15 + art_sys_81: 2.09967849e-02 + art_sys_82: 5.12811851e-15 + art_sys_83: 2.98522647e-16 + art_sys_84: -5.56063097e-16 + art_sys_85: 1.51278776e-16 + art_sys_86: 1.96538553e-16 + art_sys_87: -5.14716401e-03 art_sys_88: -1.68271984e-03 - art_sys_89: -1.69869051e-03 - art_sys_90: 4.66655195e-16 - art_sys_91: 7.51828307e-14 - art_sys_92: -1.92425038e-15 - art_sys_93: -1.73892486e-13 - art_sys_94: 1.09189994e-15 - art_sys_95: -6.53978455e-17 - art_sys_96: -3.44065178e-04 - art_sys_97: -6.44118523e-18 - art_sys_98: 4.14714511e-16 - art_sys_99: 9.84804598e-16 - art_sys_100: -2.14866863e-16 - art_sys_101: 5.14470785e-18 - art_sys_102: -7.53178145e-06 - art_sys_103: -5.97150316e-14 - art_sys_104: -3.42990474e-17 - art_sys_105: 4.66368099e-06 - art_sys_106: 5.19517263e-18 - art_sys_107: 9.97063901e-17 - art_sys_108: -1.95223734e-15 - art_sys_109: -1.29567069e-15 - art_sys_110: -2.29967723e-06 - art_sys_111: -4.75668705e-17 - art_sys_112: 1.76187173e-14 - art_sys_113: 1.07850863e-06 - art_sys_114: -1.42832022e-16 - art_sys_115: -6.72193943e-16 - art_sys_116: 4.63536290e-15 - art_sys_117: -5.53645907e-07 - art_sys_118: 3.40583919e-16 - art_sys_119: 3.47548154e-13 - art_sys_120: -9.89470817e-16 - art_sys_121: 4.16588886e-14 - art_sys_122: 7.28043174e-15 - art_sys_123: 6.78035340e-14 - art_sys_124: -7.70283649e-15 - art_sys_125: 9.99652583e-15 - art_sys_126: -1.29089444e-14 - art_sys_127: -3.86487179e-14 - art_sys_128: 1.03669109e-13 - art_sys_129: 1.38127049e-14 - art_sys_130: -1.45282167e-13 - art_sys_131: 4.55761083e-14 - art_sys_132: 4.85017404e-14 - art_sys_133: 3.32376301e-14 - art_sys_134: 4.00059811e-13 - art_sys_135: 8.23940662e-15 - art_sys_136: -3.40278448e-12 - art_sys_137: 3.19899928e-15 - art_sys_138: 2.82291276e-12 - art_sys_139: -3.23038040e-14 - art_sys_140: -1.19338864e-19 - art_sys_141: 1.05437556e-12 - art_sys_142: -0.0 - art_sys_143: -1.03491543e-13 - art_sys_144: -6.06756887e-13 - art_sys_145: -1.10149470e-12 - art_sys_146: 2.60305679e-07 - art_sys_147: 1.10679834e-07 - art_sys_148: 4.30206050e-08 - art_sys_149: 1.66050842e-08 - art_sys_150: -5.55437310e-09 - art_sys_151: -1.86975822e-09 - art_sys_152: 6.12048187e-10 - art_sys_153: -2.01364394e-10 - art_sys_154: 6.24737764e-11 - art_sys_155: -1.88765411e-11 - art_sys_156: 5.66504604e-12 - art_sys_157: -2.88299250e-13 + art_sys_89: 1.40883855e-17 + art_sys_90: -1.69869052e-03 + art_sys_91: -1.11386140e-15 + art_sys_92: 1.32899018e-18 + art_sys_93: 3.01758620e-18 + art_sys_94: -3.44065177e-04 + art_sys_95: -4.25872125e-15 + art_sys_96: 2.92208785e-17 + art_sys_97: 3.85652838e-17 + art_sys_98: 3.86936459e-14 + art_sys_99: 1.73915411e-15 + art_sys_100: 7.03651460e-13 + art_sys_101: 2.18836647e-14 + art_sys_102: -9.55986157e-15 + art_sys_103: 1.32826832e-13 + art_sys_104: -8.81259103e-15 + art_sys_105: -7.53171550e-06 + art_sys_106: -5.43725318e-15 + art_sys_107: 1.01630381e-15 + art_sys_108: -4.66369687e-06 + art_sys_109: -2.29967506e-06 + art_sys_110: 1.13505285e-13 + art_sys_111: 1.50029340e-14 + art_sys_112: 9.51636746e-15 + art_sys_113: -1.89450508e-14 + art_sys_114: 1.07851219e-06 + art_sys_115: -3.48780036e-15 + art_sys_116: -6.43621144e-16 + art_sys_117: 5.53643369e-07 + art_sys_118: 3.68928257e-15 + art_sys_119: -9.19303059e-14 + art_sys_120: -4.94300227e-16 + art_sys_121: 2.60302672e-07 + art_sys_122: -6.31555979e-14 + art_sys_123: 3.94897862e-16 + art_sys_124: 1.31788575e-15 + art_sys_125: 1.10680954e-07 + art_sys_126: 1.72013094e-14 + art_sys_127: -3.09853949e-14 + art_sys_128: -2.42427350e-15 + art_sys_129: -4.30208951e-08 + art_sys_130: -3.19231210e-13 + art_sys_131: 1.66050530e-08 + art_sys_132: 1.30955764e-13 + art_sys_133: -1.12181688e-12 + art_sys_134: 1.53446351e-16 + art_sys_135: -3.58270910e-15 + art_sys_136: 5.55363354e-09 + art_sys_137: -1.38116426e-12 + art_sys_138: -4.76550322e-16 + art_sys_139: 3.09870335e-14 + art_sys_140: -1.87032575e-09 + art_sys_141: 3.81636729e-13 + art_sys_142: -6.21443926e-16 + art_sys_143: -3.16507910e-13 + art_sys_144: 6.10720541e-10 + art_sys_145: 2.75330103e-15 + art_sys_146: 3.23074539e-13 + art_sys_147: -2.01663131e-10 + art_sys_148: -5.96729653e-11 + art_sys_149: -4.17993353e-15 + art_sys_150: 2.25172808e-13 + art_sys_151: 1.95901158e-13 + art_sys_152: 2.10411349e-11 + art_sys_153: -2.96220281e-13 + art_sys_154: -8.54655842e-17 + art_sys_155: -4.34857919e-12 + art_sys_156: 0.0 + art_sys_157: 1.07589198e-14 art_sys_158: -0.0 - art_sys_159: 8.06996999e-14 - art_sys_160: 8.06996999e-14 - art_sys_161: 4.17182367e-14 - art_sys_162: -9.11321129e-27 - art_sys_163: -0.0 - art_sys_164: -3.37347787e-27 - art_sys_165: -4.77017223e-20 - art_sys_166: 1.39115667e-20 - art_sys_167: -3.78391502e-20 - art_sys_168: 1.05514251e-20 - art_sys_169: 4.84729637e-21 - art_sys_170: 5.55155594e-21 - art_sys_171: 1.06406471e-21 - art_sys_172: 3.15682324e-22 - art_sys_173: -7.84973651e-22 - art_sys_174: 4.16474902e-25 - art_sys_175: 7.50779203e-23 - art_sys_176: 7.39554470e-23 - art_sys_177: -3.55394983e-23 - art_sys_178: -2.13913076e-23 - art_sys_179: -1.44612987e-23 - art_sys_180: 1.11528637e-24 - art_sys_181: 1.47511937e-24 - art_sys_182: 6.40002111e-25 - art_sys_183: 1.61532687e-25 - art_sys_184: 8.32230781e-27 - art_sys_185: -5.55328621e-27 + art_sys_159: -5.16737988e-14 + art_sys_160: 8.32777615e-13 + art_sys_161: -5.97131329e-15 + art_sys_162: -5.97131329e-15 + art_sys_163: 1.37343199e-14 + art_sys_164: 1.37343199e-14 + art_sys_165: -2.63390351e-27 + art_sys_166: 1.31193227e-27 + art_sys_167: 0.0 + art_sys_168: 4.62316860e-21 + art_sys_169: 2.42318882e-21 + art_sys_170: -2.81488165e-22 + art_sys_171: -1.00611833e-21 + art_sys_172: 8.02324975e-23 + art_sys_173: -1.79620282e-23 + art_sys_174: -2.57652581e-23 + art_sys_175: -8.84948569e-24 + art_sys_176: 2.49733641e-23 + art_sys_177: -3.73384073e-24 + art_sys_178: -1.19321348e-24 + art_sys_179: 2.19325871e-25 + art_sys_180: -2.09518700e-26 + art_sys_181: -2.54985511e-24 + art_sys_182: -1.36075598e-24 + art_sys_183: 1.84328777e-26 + art_sys_184: -2.75575267e-26 + art_sys_185: -2.42527008e-26 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -34905,154 +34905,154 @@ bins: art_sys_35: 0.0 art_sys_36: 0.0 art_sys_37: 0.0 - art_sys_38: -5.45615751e-286 - art_sys_39: 2.62778127e-265 - art_sys_40: 1.76448454e-260 - art_sys_41: -2.40924695e-249 - art_sys_42: 5.05214799e-150 - art_sys_43: 6.28389422e-150 - art_sys_44: 3.64210826e-143 - art_sys_45: -6.45431431e-134 - art_sys_46: 1.68464615e-126 - art_sys_47: 1.35753786e-120 - art_sys_48: -1.44491455e-114 - art_sys_49: 4.76107969e-107 - art_sys_50: 4.14802360e-99 - art_sys_51: -3.30264526e-86 - art_sys_52: -1.53623210e-94 - art_sys_53: -1.26314910e-96 - art_sys_54: 1.33257135e-87 - art_sys_55: 5.96611787e-85 - art_sys_56: -3.58252020e-82 - art_sys_57: -8.22964411e-08 - art_sys_58: -1.31486126e-06 - art_sys_59: -1.64162720e-06 - art_sys_60: 7.73658834e-25 - art_sys_61: -1.98844325e-06 - art_sys_62: 1.19840938e-05 - art_sys_63: -7.97949859e-05 - art_sys_64: -4.71002667e-05 - art_sys_65: -1.20878237e-05 - art_sys_66: 6.34712413e-22 - art_sys_67: 5.43849868e-04 - art_sys_68: 2.61461457e-04 - art_sys_69: 2.86307403e-21 - art_sys_70: 1.90298435e-22 - art_sys_71: -1.81186498e-21 - art_sys_72: 1.21943648e-21 - art_sys_73: 1.32223704e-21 - art_sys_74: 9.60743677e-23 + art_sys_38: 0.0 + art_sys_39: 0.0 + art_sys_40: 0.0 + art_sys_41: 0.0 + art_sys_42: 0.0 + art_sys_43: 0.0 + art_sys_44: 4.47792614e-213 + art_sys_45: 2.25836759e-206 + art_sys_46: 2.97781309e-156 + art_sys_47: 1.64871879e-161 + art_sys_48: -8.88813314e-154 + art_sys_49: 7.58367082e-145 + art_sys_50: -3.25154861e-137 + art_sys_51: 1.34911622e-126 + art_sys_52: 1.49892633e-143 + art_sys_53: 4.78719739e-140 + art_sys_54: 5.66428449e-135 + art_sys_55: 1.39669934e-131 + art_sys_56: 2.25240412e-128 + art_sys_57: 8.04091361e-50 + art_sys_58: 3.98441171e-36 + art_sys_59: -1.52896055e-47 + art_sys_60: 1.84860287e-44 + art_sys_61: 7.28743996e-30 + art_sys_62: -2.02290073e-44 + art_sys_63: -3.41696891e-34 + art_sys_64: -8.22964411e-08 + art_sys_65: -1.31486126e-06 + art_sys_66: -1.64162720e-06 + art_sys_67: 1.98844325e-06 + art_sys_68: -1.19840938e-05 + art_sys_69: -7.97949859e-05 + art_sys_70: 4.71002667e-05 + art_sys_71: -1.20878237e-05 + art_sys_72: 5.43849868e-04 + art_sys_73: -2.61461457e-04 + art_sys_74: -8.33617174e-22 art_sys_75: 1.36089260e-03 - art_sys_76: -1.95008049e-14 - art_sys_77: 4.69729628e-14 - art_sys_78: 2.73853055e-15 + art_sys_76: 1.53714717e-14 + art_sys_77: 8.75110611e-15 + art_sys_78: 7.79413718e-15 art_sys_79: -1.60862686e-03 - art_sys_80: -3.95765979e-16 - art_sys_81: -1.44273792e-15 - art_sys_82: -8.75140376e-16 - art_sys_83: -5.73273966e-18 - art_sys_84: 3.82796475e-03 - art_sys_85: -7.12617860e-17 - art_sys_86: -2.23420800e-16 - art_sys_87: 6.64913177e-03 + art_sys_80: -3.03796197e-15 + art_sys_81: 3.82796475e-03 + art_sys_82: 9.36074592e-16 + art_sys_83: 1.50419083e-15 + art_sys_84: -1.05535213e-15 + art_sys_85: 9.80758411e-17 + art_sys_86: 1.38825349e-16 + art_sys_87: -6.64913177e-03 art_sys_88: 3.51227705e-03 - art_sys_89: 2.70987296e-03 - art_sys_90: 4.77942488e-16 - art_sys_91: 1.37170933e-14 - art_sys_92: -3.60638942e-16 - art_sys_93: -3.17042410e-14 - art_sys_94: 1.97850147e-16 - art_sys_95: 5.27124152e-17 - art_sys_96: 8.97300870e-04 - art_sys_97: 6.41401245e-18 - art_sys_98: 8.02786023e-17 - art_sys_99: 1.79393979e-16 - art_sys_100: 1.58802484e-16 - art_sys_101: -1.71620090e-18 - art_sys_102: 1.97316149e-05 - art_sys_103: -7.69444562e-14 - art_sys_104: 8.18547958e-17 - art_sys_105: -1.32943007e-05 - art_sys_106: 2.06426340e-17 - art_sys_107: 1.70169381e-17 - art_sys_108: 4.08892767e-15 - art_sys_109: -1.68869157e-15 - art_sys_110: 6.98656801e-06 - art_sys_111: -1.79264084e-16 - art_sys_112: -2.13633888e-14 - art_sys_113: -3.37852247e-06 - art_sys_114: -2.63976095e-16 - art_sys_115: 1.98429041e-15 - art_sys_116: 8.80776327e-15 - art_sys_117: 1.79733559e-06 - art_sys_118: 4.09678245e-16 - art_sys_119: -9.06384982e-13 - art_sys_120: -1.28401985e-15 - art_sys_121: -1.09927140e-13 - art_sys_122: 9.79198172e-15 - art_sys_123: -1.77494569e-13 - art_sys_124: -1.06606438e-14 - art_sys_125: -7.68626264e-15 - art_sys_126: 3.32677447e-14 - art_sys_127: 6.29734795e-14 - art_sys_128: -3.82763163e-13 - art_sys_129: -7.54266444e-14 - art_sys_130: 4.91316653e-13 - art_sys_131: -1.66882087e-13 - art_sys_132: -7.94080714e-14 - art_sys_133: -8.75145205e-14 - art_sys_134: -1.36842444e-12 - art_sys_135: -1.59835462e-14 - art_sys_136: 1.16717487e-11 - art_sys_137: -4.06554267e-15 - art_sys_138: -9.67664526e-12 - art_sys_139: 1.04035729e-13 - art_sys_140: 2.80061392e-19 - art_sys_141: -3.61863608e-12 - art_sys_142: 0.0 - art_sys_143: 3.54832214e-13 - art_sys_144: 2.07633686e-12 - art_sys_145: 3.78049535e-12 - art_sys_146: -8.62362193e-07 - art_sys_147: -3.72674749e-07 - art_sys_148: -1.46513150e-07 - art_sys_149: -5.69618714e-08 - art_sys_150: 1.91562413e-08 - art_sys_151: 6.46805639e-09 - art_sys_152: -2.12156537e-09 - art_sys_153: 6.98743773e-10 - art_sys_154: -2.16934110e-10 - art_sys_155: 6.55688053e-11 - art_sys_156: -1.96810765e-11 - art_sys_157: 1.00007582e-12 + art_sys_89: -2.44743992e-17 + art_sys_90: 2.70987296e-03 + art_sys_91: -3.05547008e-16 + art_sys_92: -3.63889453e-18 + art_sys_93: -7.97073503e-18 + art_sys_94: 8.97300865e-04 + art_sys_95: -2.11915094e-15 + art_sys_96: -1.23121766e-17 + art_sys_97: 2.33216808e-17 + art_sys_98: 5.04970634e-14 + art_sys_99: 2.22311798e-15 + art_sys_100: 9.10685828e-13 + art_sys_101: 2.82334616e-14 + art_sys_102: -4.74538003e-15 + art_sys_103: 1.71457052e-13 + art_sys_104: -1.07956174e-14 + art_sys_105: 1.97314266e-05 + art_sys_106: -7.16212992e-15 + art_sys_107: -2.58589225e-15 + art_sys_108: 1.32943460e-05 + art_sys_109: 6.98656102e-06 + art_sys_110: -1.83300581e-13 + art_sys_111: -3.24673604e-14 + art_sys_112: -2.20271149e-14 + art_sys_113: 2.66484230e-14 + art_sys_114: -3.37853372e-06 + art_sys_115: 7.25183130e-15 + art_sys_116: 1.68704429e-15 + art_sys_117: -1.79732725e-06 + art_sys_118: -7.99583581e-15 + art_sys_119: 2.39748571e-13 + art_sys_120: 7.99505250e-16 + art_sys_121: -8.62352377e-07 + art_sys_122: 1.00784295e-13 + art_sys_123: -1.06717135e-15 + art_sys_124: -2.10069209e-15 + art_sys_125: -3.72678528e-07 + art_sys_126: -4.48610026e-14 + art_sys_127: 8.84708979e-14 + art_sys_128: 6.31818207e-15 + art_sys_129: 1.46514152e-07 + art_sys_130: 1.03740231e-12 + art_sys_131: -5.69617649e-08 + art_sys_132: -3.41523266e-13 + art_sys_133: 3.67081427e-12 + art_sys_134: -4.40885034e-16 + art_sys_135: 9.34593819e-15 + art_sys_136: -1.91536937e-08 + art_sys_137: 4.63485320e-12 + art_sys_138: 1.26160332e-15 + art_sys_139: -1.05084864e-13 + art_sys_140: 6.47002125e-09 + art_sys_141: -1.09010485e-12 + art_sys_142: 1.74203411e-15 + art_sys_143: 1.07924202e-12 + art_sys_144: -2.11696379e-09 + art_sys_145: -7.89959391e-15 + art_sys_146: -1.10782793e-12 + art_sys_147: 6.99780420e-10 + art_sys_148: 2.07212544e-10 + art_sys_149: 1.27254334e-14 + art_sys_150: -7.74764673e-13 + art_sys_151: -6.80524767e-13 + art_sys_152: -7.30849042e-11 + art_sys_153: 1.02236951e-12 + art_sys_154: 1.31703441e-16 + art_sys_155: 1.51106042e-11 + art_sys_156: -0.0 + art_sys_157: -3.70900977e-14 art_sys_158: 0.0 - art_sys_159: -2.74746690e-13 - art_sys_160: -2.74746690e-13 - art_sys_161: -1.45058695e-13 - art_sys_162: 3.17165733e-26 - art_sys_163: 0.0 - art_sys_164: 1.17580245e-26 - art_sys_165: 1.65182525e-19 - art_sys_166: -4.82598715e-20 - art_sys_167: 1.33346710e-19 - art_sys_168: -3.66154742e-20 - art_sys_169: -1.68206833e-20 - art_sys_170: -1.93026281e-20 - art_sys_171: -3.62969649e-21 - art_sys_172: -1.11257654e-21 - art_sys_173: 2.59772817e-21 - art_sys_174: -1.44674363e-24 - art_sys_175: -2.61934379e-22 - art_sys_176: -2.55234036e-22 - art_sys_177: 1.22896969e-22 - art_sys_178: 7.45633607e-23 - art_sys_179: 4.54886289e-23 - art_sys_180: -4.42893548e-24 - art_sys_181: -5.14307361e-24 - art_sys_182: -2.18469146e-24 - art_sys_183: -5.60853356e-25 - art_sys_184: -2.89832462e-26 - art_sys_185: 1.92949872e-26 + art_sys_159: 1.78018329e-13 + art_sys_160: -2.89164947e-12 + art_sys_161: 2.05163410e-14 + art_sys_162: 2.05163410e-14 + art_sys_163: -4.74732540e-14 + art_sys_164: -4.74732540e-14 + art_sys_165: 9.14864582e-27 + art_sys_166: -4.55717632e-27 + art_sys_167: -0.0 + art_sys_168: -1.64914157e-20 + art_sys_169: -8.27267279e-21 + art_sys_170: 9.48602426e-22 + art_sys_171: 3.41237833e-21 + art_sys_172: -3.24553439e-22 + art_sys_173: 4.12802418e-23 + art_sys_174: 9.26843203e-23 + art_sys_175: 3.21374331e-23 + art_sys_176: -8.69379360e-23 + art_sys_177: 1.20336222e-23 + art_sys_178: 4.10089324e-24 + art_sys_179: -7.62542695e-25 + art_sys_180: 7.27460403e-26 + art_sys_181: 9.16249342e-24 + art_sys_182: 4.64626607e-24 + art_sys_183: -6.48548875e-26 + art_sys_184: 9.57785586e-26 + art_sys_185: 8.43137390e-26 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -35197,153 +35197,153 @@ bins: art_sys_36: 0.0 art_sys_37: 0.0 art_sys_38: 0.0 - art_sys_39: 4.56140363e-267 - art_sys_40: 3.06285989e-262 - art_sys_41: -4.18206348e-251 - art_sys_42: -6.70332715e-152 - art_sys_43: -8.33764150e-152 - art_sys_44: -4.83244815e-145 - art_sys_45: 8.56375950e-136 - art_sys_46: -2.23523426e-128 - art_sys_47: -1.80121810e-122 - art_sys_48: 1.91715186e-116 - art_sys_49: -6.31712983e-109 - art_sys_50: -5.50371035e-101 - art_sys_51: 4.38203942e-88 - art_sys_52: 2.03831446e-96 - art_sys_53: 1.67598054e-98 - art_sys_54: -1.76809185e-89 - art_sys_55: -7.91600721e-87 - art_sys_56: 4.75338508e-84 - art_sys_57: 1.09193388e-09 - art_sys_58: -1.50647605e-07 - art_sys_59: -9.03857021e-08 - art_sys_60: 3.60128433e-25 - art_sys_61: -9.50919604e-07 - art_sys_62: -1.79941395e-06 - art_sys_63: -2.97311694e-05 - art_sys_64: -3.22684082e-05 - art_sys_65: -2.14998368e-05 - art_sys_66: 1.82235722e-22 - art_sys_67: 1.35453796e-04 - art_sys_68: 3.49825553e-04 - art_sys_69: 1.73930075e-21 - art_sys_70: -1.18442416e-21 - art_sys_71: -7.14034672e-22 - art_sys_72: 3.83902839e-22 - art_sys_73: 2.11981812e-22 - art_sys_74: 1.38074353e-22 + art_sys_39: 0.0 + art_sys_40: 0.0 + art_sys_41: 0.0 + art_sys_42: 0.0 + art_sys_43: 0.0 + art_sys_44: -1.50492835e-214 + art_sys_45: -7.58985163e-208 + art_sys_46: -4.01784340e-158 + art_sys_47: -2.22454993e-163 + art_sys_48: 1.19924005e-155 + art_sys_49: -1.02323419e-146 + art_sys_50: 4.38718373e-139 + art_sys_51: -1.82030824e-128 + art_sys_52: -2.02244099e-145 + art_sys_53: -6.45917282e-142 + art_sys_54: -7.64259117e-137 + art_sys_55: -1.88451023e-133 + art_sys_56: -3.03907826e-130 + art_sys_57: -1.06689319e-51 + art_sys_58: -5.28664023e-38 + art_sys_59: 2.02867197e-49 + art_sys_60: -2.45278324e-46 + art_sys_61: -9.66919988e-32 + art_sys_62: 2.68404624e-46 + art_sys_63: 4.53373963e-36 + art_sys_64: 1.09193388e-09 + art_sys_65: -1.50647605e-07 + art_sys_66: -9.03857021e-08 + art_sys_67: 9.50919604e-07 + art_sys_68: 1.79941395e-06 + art_sys_69: -2.97311694e-05 + art_sys_70: 3.22684082e-05 + art_sys_71: -2.14998368e-05 + art_sys_72: 1.35453796e-04 + art_sys_73: -3.49825553e-04 + art_sys_74: -1.49082580e-22 art_sys_75: -1.95607850e-04 - art_sys_76: -1.93025112e-14 - art_sys_77: 2.96805601e-15 - art_sys_78: -5.51014030e-15 + art_sys_76: -4.03806191e-14 + art_sys_77: 2.40541315e-14 + art_sys_78: 2.48786478e-15 art_sys_79: -1.42949132e-03 - art_sys_80: 3.04582554e-17 - art_sys_81: -3.06748775e-15 - art_sys_82: -1.09698918e-16 - art_sys_83: -2.06888733e-16 - art_sys_84: -1.81873912e-03 - art_sys_85: 2.79889055e-16 - art_sys_86: 1.26887802e-17 - art_sys_87: 1.28084866e-03 + art_sys_80: 1.66716515e-15 + art_sys_81: -1.81873912e-03 + art_sys_82: -4.44052346e-16 + art_sys_83: -5.88837265e-16 + art_sys_84: -6.62892251e-16 + art_sys_85: -5.05732730e-17 + art_sys_86: -1.31406732e-16 + art_sys_87: -1.28084866e-03 art_sys_88: 5.87034349e-03 - art_sys_89: -1.05892414e-03 - art_sys_90: -9.97200391e-18 - art_sys_91: -6.50928347e-15 - art_sys_92: 1.63722095e-16 - art_sys_93: 1.50620256e-14 - art_sys_94: -9.49819241e-17 - art_sys_95: 2.51558902e-17 - art_sys_96: -1.15825124e-03 - art_sys_97: 1.45477561e-17 - art_sys_98: -3.59265888e-17 - art_sys_99: -8.53871054e-17 - art_sys_100: 4.37849683e-16 - art_sys_101: -7.77143379e-18 - art_sys_102: -6.40572658e-05 - art_sys_103: -1.46459055e-14 - art_sys_104: 1.40889926e-16 - art_sys_105: 3.50910666e-05 - art_sys_106: 8.54297665e-18 - art_sys_107: -1.00687837e-17 - art_sys_108: 6.23984527e-15 - art_sys_109: -3.35193315e-16 - art_sys_110: -2.00884646e-05 - art_sys_111: -1.49669401e-16 - art_sys_112: 6.73418805e-14 - art_sys_113: 9.85894879e-06 - art_sys_114: -1.20261661e-16 - art_sys_115: 5.37832236e-15 - art_sys_116: 4.40573727e-15 - art_sys_117: -5.29587358e-06 - art_sys_118: 5.25040204e-17 - art_sys_119: 1.17000825e-12 - art_sys_120: -2.43858369e-16 - art_sys_121: -3.37045022e-13 - art_sys_122: 2.78192065e-15 - art_sys_123: 5.97434261e-13 - art_sys_124: 3.45968332e-15 - art_sys_125: 1.64501819e-14 - art_sys_126: -4.18925649e-14 - art_sys_127: -2.23480373e-14 - art_sys_128: 1.27687084e-12 - art_sys_129: 2.53465445e-13 - art_sys_130: -1.47568953e-12 - art_sys_131: 5.15077676e-13 - art_sys_132: 4.88753131e-15 - art_sys_133: 2.71859429e-13 - art_sys_134: 4.12853473e-12 - art_sys_135: 1.27141727e-14 - art_sys_136: -3.52609076e-11 - art_sys_137: -2.24330808e-14 - art_sys_138: 2.92265555e-11 - art_sys_139: -3.07216152e-13 - art_sys_140: 5.34192165e-19 - art_sys_141: 1.09347787e-11 - art_sys_142: -0.0 - art_sys_143: -1.07118765e-12 - art_sys_144: -6.26710113e-12 - art_sys_145: -1.14238341e-11 - art_sys_146: 2.57187267e-06 - art_sys_147: 1.11766682e-06 - art_sys_148: 4.41337003e-07 - art_sys_149: 1.72090606e-07 - art_sys_150: -5.79604432e-08 - art_sys_151: -1.95956074e-08 - art_sys_152: 6.43058061e-09 - art_sys_153: -2.11883762e-09 - art_sys_154: 6.57940695e-10 - art_sys_155: -1.98884777e-10 - art_sys_156: 5.97003117e-11 - art_sys_157: -3.03218543e-12 + art_sys_89: 1.38796872e-17 + art_sys_90: -1.05892414e-03 + art_sys_91: 6.53382734e-17 + art_sys_92: 4.92745087e-18 + art_sys_93: 1.12954542e-17 + art_sys_94: -1.15825124e-03 + art_sys_95: 2.68147349e-15 + art_sys_96: -7.95445894e-18 + art_sys_97: 2.49738873e-18 + art_sys_98: 1.01953985e-14 + art_sys_99: 4.06826761e-16 + art_sys_100: 1.75188351e-13 + art_sys_101: 5.42772482e-15 + art_sys_102: 5.86344902e-15 + art_sys_103: 3.30887599e-14 + art_sys_104: -2.62141708e-15 + art_sys_105: -6.40567707e-05 + art_sys_106: -1.34954080e-15 + art_sys_107: -6.94480414e-15 + art_sys_108: -3.50911896e-05 + art_sys_109: -2.00884440e-05 + art_sys_110: 5.24062761e-14 + art_sys_111: -6.20541159e-14 + art_sys_112: -5.17160141e-14 + art_sys_113: -4.13100422e-14 + art_sys_114: 9.85898164e-06 + art_sys_115: 1.19175973e-14 + art_sys_116: -2.19073274e-15 + art_sys_117: 5.29584882e-06 + art_sys_118: -1.21537165e-14 + art_sys_119: -3.09473283e-13 + art_sys_120: -3.40901106e-16 + art_sys_121: 2.57184367e-06 + art_sys_122: -3.92085130e-14 + art_sys_123: 3.22207781e-15 + art_sys_124: 8.13704880e-16 + art_sys_125: 1.11767816e-06 + art_sys_126: 5.79366844e-14 + art_sys_127: -2.32006905e-13 + art_sys_128: -8.15010966e-15 + art_sys_129: -4.41340036e-07 + art_sys_130: -3.13025301e-12 + art_sys_131: 1.72090285e-07 + art_sys_132: 4.40822295e-13 + art_sys_133: -1.08587133e-11 + art_sys_134: 1.21542275e-15 + art_sys_135: -1.29457166e-14 + art_sys_136: 5.79527395e-08 + art_sys_137: -1.38793485e-11 + art_sys_138: -5.08664021e-15 + art_sys_139: 3.12222346e-13 + art_sys_140: -1.96015612e-08 + art_sys_141: 2.86227955e-12 + art_sys_142: -5.14984889e-15 + art_sys_143: -3.25409744e-12 + art_sys_144: 6.41663325e-09 + art_sys_145: 2.08116348e-14 + art_sys_146: 3.34641269e-12 + art_sys_147: -2.12198112e-09 + art_sys_148: -6.28459155e-10 + art_sys_149: -3.52080010e-14 + art_sys_150: 2.34286287e-12 + art_sys_151: 2.06460364e-12 + art_sys_152: 2.21680400e-10 + art_sys_153: -3.09511010e-12 + art_sys_154: -9.11112333e-17 + art_sys_155: -4.58391254e-11 + art_sys_156: 0.0 + art_sys_157: 1.12328627e-13 art_sys_158: -0.0 - art_sys_159: 8.27782647e-13 - art_sys_160: 8.27782647e-13 - art_sys_161: 4.40146524e-13 - art_sys_162: -9.62646994e-26 - art_sys_163: -0.0 - art_sys_164: -3.57044573e-26 - art_sys_165: -5.00704788e-19 - art_sys_166: 1.46338535e-19 - art_sys_167: -3.94263130e-19 - art_sys_168: 1.11092860e-19 - art_sys_169: 5.10535991e-20 - art_sys_170: 5.85683214e-20 - art_sys_171: 1.08509667e-20 - art_sys_172: 4.21781667e-21 - art_sys_173: -7.87140156e-21 - art_sys_174: 4.38839715e-24 - art_sys_175: 7.95642245e-22 - art_sys_176: 7.72547177e-22 - art_sys_177: -3.72528180e-22 - art_sys_178: -2.26744322e-22 - art_sys_179: -1.28671482e-22 - art_sys_180: 1.48324555e-23 - art_sys_181: 1.56706608e-23 - art_sys_182: 6.63519581e-24 - art_sys_183: 1.70094978e-24 - art_sys_184: 8.79847184e-26 - art_sys_185: -5.85314340e-26 + art_sys_159: -5.38560576e-13 + art_sys_160: 8.77014256e-12 + art_sys_161: -6.19788303e-14 + art_sys_162: -6.19788303e-14 + art_sys_163: 1.43802193e-13 + art_sys_164: 1.43802193e-13 + art_sys_165: -2.77500534e-26 + art_sys_166: 1.38232391e-26 + art_sys_167: 0.0 + art_sys_168: 4.57821255e-20 + art_sys_169: 2.48745486e-20 + art_sys_170: -3.06758595e-21 + art_sys_171: -1.04724687e-20 + art_sys_172: 9.49266881e-22 + art_sys_173: -1.88817876e-22 + art_sys_174: -2.71843280e-22 + art_sys_175: -9.98060328e-23 + art_sys_176: 2.64238353e-22 + art_sys_177: -3.91414313e-23 + art_sys_178: -1.24582401e-23 + art_sys_179: 2.31360851e-24 + art_sys_180: -2.20625318e-25 + art_sys_181: -2.80139898e-23 + art_sys_182: -1.37862767e-23 + art_sys_183: 2.05311079e-25 + art_sys_184: -2.90539722e-25 + art_sys_185: -2.55802734e-25 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -35488,153 +35488,153 @@ bins: art_sys_36: 0.0 art_sys_37: 0.0 art_sys_38: 0.0 - art_sys_39: -4.53805194e-267 - art_sys_40: -3.04717986e-262 - art_sys_41: 4.16065378e-251 - art_sys_42: -1.40261433e-151 - art_sys_43: -1.74458074e-151 - art_sys_44: -1.01114877e-144 - art_sys_45: 1.79189401e-135 - art_sys_46: -4.67703804e-128 - art_sys_47: -3.76889604e-122 - art_sys_48: 4.01147760e-116 - art_sys_49: -1.32180582e-108 - art_sys_50: -1.15160469e-100 - art_sys_51: 9.16904568e-88 - art_sys_52: 4.26500007e-96 - art_sys_53: 3.50684707e-98 - art_sys_54: -3.69958218e-89 - art_sys_55: -1.65635734e-86 - art_sys_56: 9.94605497e-84 - art_sys_57: 2.28477486e-09 - art_sys_58: -1.94321300e-08 - art_sys_59: 1.93851388e-09 - art_sys_60: 6.56425019e-26 - art_sys_61: -2.28727294e-07 - art_sys_62: -9.28098509e-07 - art_sys_63: -6.89577051e-06 - art_sys_64: -8.54355185e-06 - art_sys_65: -5.57429402e-06 - art_sys_66: -1.85697527e-24 - art_sys_67: -5.28427859e-06 - art_sys_68: 6.23799733e-05 - art_sys_69: 2.01123170e-22 - art_sys_70: -2.83242403e-22 - art_sys_71: -4.14424383e-23 - art_sys_72: 5.32719858e-24 - art_sys_73: -1.05052173e-23 - art_sys_74: 1.85273712e-23 + art_sys_39: 0.0 + art_sys_40: 0.0 + art_sys_41: 0.0 + art_sys_42: 0.0 + art_sys_43: 0.0 + art_sys_44: -1.54513130e-214 + art_sys_45: -7.79261141e-208 + art_sys_46: -8.28945055e-158 + art_sys_47: -4.58960065e-163 + art_sys_48: 2.47422313e-155 + art_sys_49: -2.11109503e-146 + art_sys_50: 9.05145844e-139 + art_sys_51: -3.75558568e-128 + art_sys_52: -4.17261773e-145 + art_sys_53: -1.33263018e-141 + art_sys_54: -1.57678823e-136 + art_sys_55: -3.88804460e-133 + art_sys_56: -6.27010225e-130 + art_sys_57: -2.23237831e-51 + art_sys_58: -1.10618205e-37 + art_sys_59: 4.24481413e-49 + art_sys_60: -5.13222896e-46 + art_sys_61: -2.02319335e-31 + art_sys_62: 5.61612976e-46 + art_sys_63: 9.48644351e-36 + art_sys_64: 2.28477486e-09 + art_sys_65: -1.94321300e-08 + art_sys_66: 1.93851388e-09 + art_sys_67: 2.28727294e-07 + art_sys_68: 9.28098509e-07 + art_sys_69: -6.89577051e-06 + art_sys_70: 8.54355185e-06 + art_sys_71: -5.57429402e-06 + art_sys_72: -5.28427859e-06 + art_sys_73: -6.23799733e-05 + art_sys_74: 1.95541673e-23 art_sys_75: -1.71697195e-04 - art_sys_76: 4.17027858e-15 - art_sys_77: -3.24358998e-15 - art_sys_78: 1.75699222e-14 + art_sys_76: 5.30733649e-14 + art_sys_77: -2.69904217e-16 + art_sys_78: -6.01188427e-15 art_sys_79: -7.58483236e-05 - art_sys_80: 5.34337313e-17 - art_sys_81: -2.65432049e-15 - art_sys_82: -1.42787200e-16 - art_sys_83: 3.44536077e-17 - art_sys_84: -8.04361074e-04 - art_sys_85: -1.94684751e-16 - art_sys_86: -3.70591605e-16 - art_sys_87: -9.53422964e-04 - art_sys_88: 2.44731944e-03 - art_sys_89: -4.02898284e-03 - art_sys_90: -5.20621799e-17 - art_sys_91: -2.88158601e-15 - art_sys_92: 7.49461669e-17 - art_sys_93: 6.66176635e-15 - art_sys_94: -4.17246135e-17 - art_sys_95: -6.12498312e-18 - art_sys_96: 1.07511272e-03 - art_sys_97: 6.69332645e-18 - art_sys_98: -1.73977363e-17 - art_sys_99: -3.77635946e-17 - art_sys_100: 2.12561105e-16 - art_sys_101: -4.31922051e-18 - art_sys_102: 4.45834942e-05 - art_sys_103: 1.11320967e-14 - art_sys_104: 6.29251408e-17 - art_sys_105: -5.63709848e-05 - art_sys_106: -4.08175834e-18 - art_sys_107: -1.90741896e-18 - art_sys_108: 2.24616266e-15 - art_sys_109: 2.38214134e-16 - art_sys_110: 3.27423858e-05 - art_sys_111: -4.31145996e-17 - art_sys_112: 9.42300719e-14 - art_sys_113: -1.87585459e-05 - art_sys_114: -1.29253921e-19 - art_sys_115: 5.11049707e-15 - art_sys_116: 3.36618792e-16 - art_sys_117: 1.08394166e-05 - art_sys_118: -7.31772699e-17 - art_sys_119: -1.08601523e-12 - art_sys_120: 1.90085750e-16 - art_sys_121: -2.38945299e-13 - art_sys_122: -6.49984237e-16 - art_sys_123: -4.08657726e-13 - art_sys_124: 7.44158615e-15 - art_sys_125: 2.81081316e-14 - art_sys_126: 3.82593083e-14 - art_sys_127: -9.20292990e-14 - art_sys_128: -2.54265974e-12 - art_sys_129: -9.49134792e-13 - art_sys_130: 3.31421895e-12 - art_sys_131: -1.33989127e-12 - art_sys_132: 9.56083658e-14 - art_sys_133: -2.00673819e-13 - art_sys_134: -9.50238479e-12 - art_sys_135: -4.51662373e-16 - art_sys_136: 8.15998914e-11 - art_sys_137: 7.30181408e-14 - art_sys_138: -6.75503700e-11 - art_sys_139: 6.13897627e-13 - art_sys_140: 2.35155080e-19 - art_sys_141: -2.53329135e-11 - art_sys_142: 0.0 - art_sys_143: 2.46548476e-12 - art_sys_144: 1.44323943e-11 - art_sys_145: 2.64685107e-11 - art_sys_146: -5.52331910e-06 - art_sys_147: -2.48900198e-06 - art_sys_148: -1.00524942e-06 - art_sys_149: -3.98330413e-07 - art_sys_150: 1.35576628e-07 - art_sys_151: 4.61383753e-08 - art_sys_152: -1.52039048e-08 - art_sys_153: 5.02074853e-09 - art_sys_154: -1.56133169e-09 - art_sys_155: 4.72282501e-10 - art_sys_156: -1.41818847e-10 - art_sys_157: 7.18086773e-12 + art_sys_80: 2.43761679e-15 + art_sys_81: -8.04361074e-04 + art_sys_82: -1.96563911e-16 + art_sys_83: -1.15835622e-15 + art_sys_84: 4.21569519e-17 + art_sys_85: 1.95412711e-17 + art_sys_86: 2.89683953e-16 + art_sys_87: 9.53422964e-04 + art_sys_88: 2.44731943e-03 + art_sys_89: 2.51470161e-17 + art_sys_90: -4.02898284e-03 + art_sys_91: 5.59413120e-17 + art_sys_92: -8.09407016e-18 + art_sys_93: -1.19188951e-17 + art_sys_94: 1.07511271e-03 + art_sys_95: 2.05909777e-15 + art_sys_96: 1.13630838e-18 + art_sys_97: -3.00245299e-18 + art_sys_98: -6.97533109e-15 + art_sys_99: -3.30993054e-16 + art_sys_100: -1.31534392e-13 + art_sys_101: -4.04476216e-15 + art_sys_102: 4.45413389e-15 + art_sys_103: -2.44703442e-14 + art_sys_104: 7.52483141e-16 + art_sys_105: 4.45826890e-05 + art_sys_106: 1.06955799e-15 + art_sys_107: -4.98387911e-15 + art_sys_108: 5.63711731e-05 + art_sys_109: 3.27423425e-05 + art_sys_110: 2.51939046e-13 + art_sys_111: -3.08136854e-14 + art_sys_112: -3.07610573e-14 + art_sys_113: -7.23192633e-14 + art_sys_114: -1.87586077e-05 + art_sys_115: 4.84694737e-15 + art_sys_116: 2.05795360e-15 + art_sys_117: -1.08393644e-05 + art_sys_118: -6.98545342e-15 + art_sys_119: 2.87258814e-13 + art_sys_120: -1.10962397e-15 + art_sys_121: -5.52325892e-06 + art_sys_122: -1.49556949e-13 + art_sys_123: -3.20622700e-15 + art_sys_124: 3.13312251e-15 + art_sys_125: -2.48902733e-06 + art_sys_126: -5.37883750e-14 + art_sys_127: 3.78828927e-13 + art_sys_128: 7.55287382e-15 + art_sys_129: 1.00525653e-06 + art_sys_130: 6.37539667e-12 + art_sys_131: -3.98329674e-07 + art_sys_132: -4.09184837e-13 + art_sys_133: 2.26492873e-11 + art_sys_134: -2.00190102e-15 + art_sys_135: 1.16885364e-14 + art_sys_136: -1.35558657e-07 + art_sys_137: 3.06888843e-11 + art_sys_138: 3.69260193e-15 + art_sys_139: -7.33669521e-13 + art_sys_140: 4.61524166e-08 + art_sys_141: -4.67748962e-12 + art_sys_142: 6.94006689e-15 + art_sys_143: 7.44352871e-12 + art_sys_144: -1.51709360e-08 + art_sys_145: -3.45175413e-14 + art_sys_146: -7.73982613e-12 + art_sys_147: 5.02819756e-09 + art_sys_148: 1.49143336e-09 + art_sys_149: 6.76248108e-14 + art_sys_150: -5.45720350e-12 + art_sys_151: -4.90145537e-12 + art_sys_152: -5.26373561e-10 + art_sys_153: 7.25352279e-12 + art_sys_154: -2.38804968e-16 + art_sys_155: 1.08938866e-10 + art_sys_156: -0.0 + art_sys_157: -2.62087283e-13 art_sys_158: 0.0 - art_sys_159: -1.88611675e-12 - art_sys_160: -1.88611675e-12 - art_sys_161: -1.04734134e-12 - art_sys_162: 2.29481739e-25 - art_sys_163: 0.0 - art_sys_164: 8.53647319e-26 - art_sys_165: 1.18121372e-18 - art_sys_166: -3.46642943e-19 - art_sys_167: 9.41099043e-19 - art_sys_168: -2.63224240e-19 - art_sys_169: -1.20908098e-19 - art_sys_170: -1.39021734e-19 - art_sys_171: -2.62319442e-20 - art_sys_172: -9.43920973e-21 - art_sys_173: 1.82880122e-20 - art_sys_174: -1.04226085e-23 - art_sys_175: -1.90146994e-21 - art_sys_176: -1.81188326e-21 - art_sys_177: 8.77161514e-22 - art_sys_178: 5.38805396e-22 - art_sys_179: 2.81569996e-22 - art_sys_180: -4.06916864e-23 - art_sys_181: -3.71652333e-23 - art_sys_182: -1.53363669e-23 - art_sys_183: -4.03543853e-24 - art_sys_184: -2.10042820e-25 - art_sys_185: 1.39073487e-25 + art_sys_159: 1.25794532e-12 + art_sys_160: -2.08096023e-11 + art_sys_161: 1.44035132e-13 + art_sys_162: 1.44035132e-13 + art_sys_163: -3.37926901e-13 + art_sys_164: -3.37926901e-13 + art_sys_165: 6.58916515e-26 + art_sys_166: -3.28273149e-26 + art_sys_167: -0.0 + art_sys_168: -1.01898995e-19 + art_sys_169: -5.71014462e-20 + art_sys_170: 6.81015995e-21 + art_sys_171: 1.96355696e-20 + art_sys_172: -2.83239738e-21 + art_sys_173: 9.48044734e-23 + art_sys_174: 7.13046126e-22 + art_sys_175: 2.37000324e-22 + art_sys_176: -6.26754922e-22 + art_sys_177: 8.07944085e-23 + art_sys_178: 2.92369822e-23 + art_sys_179: -5.50492709e-24 + art_sys_180: 5.23447742e-25 + art_sys_181: 7.27408533e-23 + art_sys_182: 3.20214557e-23 + art_sys_183: -4.85455835e-25 + art_sys_184: 6.90628869e-25 + art_sys_185: 6.08495147e-25 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -35778,154 +35778,154 @@ bins: art_sys_35: 0.0 art_sys_36: 0.0 art_sys_37: 0.0 - art_sys_38: 1.06565576e-288 - art_sys_39: -6.28912018e-268 - art_sys_40: -4.22297524e-263 - art_sys_41: 5.76609775e-252 - art_sys_42: -1.80591196e-152 - art_sys_43: -2.24620493e-152 - art_sys_44: -1.30188722e-145 - art_sys_45: 2.30712233e-136 - art_sys_46: -6.02183991e-129 - art_sys_47: -4.85257729e-123 - art_sys_48: 5.16490901e-117 - art_sys_49: -1.70186835e-109 - art_sys_50: -1.48272882e-101 - art_sys_51: 1.18054471e-88 - art_sys_52: 5.49132750e-97 - art_sys_53: 4.51518064e-99 - art_sys_54: -4.76333342e-90 - art_sys_55: -2.13261442e-87 - art_sys_56: 1.28058721e-84 - art_sys_57: 2.94172244e-10 - art_sys_58: -1.48965673e-09 - art_sys_59: 6.46668990e-10 - art_sys_60: 5.54512104e-27 - art_sys_61: -2.19833606e-08 - art_sys_62: -1.08570479e-07 - art_sys_63: -6.57746631e-07 - art_sys_64: -7.99237837e-07 - art_sys_65: -2.93598887e-07 - art_sys_66: -8.41420887e-24 - art_sys_67: -6.89006760e-06 - art_sys_68: -7.04723181e-06 - art_sys_69: -5.16740451e-23 - art_sys_70: 1.37190369e-23 - art_sys_71: 2.66759778e-23 - art_sys_72: -1.69615273e-23 - art_sys_73: -1.52874102e-23 - art_sys_74: -3.42259100e-24 + art_sys_38: 0.0 + art_sys_39: 0.0 + art_sys_40: 0.0 + art_sys_41: 0.0 + art_sys_42: 0.0 + art_sys_43: 0.0 + art_sys_44: -1.93405307e-215 + art_sys_45: -9.75407357e-209 + art_sys_46: -1.06689161e-158 + art_sys_47: -5.90703377e-164 + art_sys_48: 3.18444255e-156 + art_sys_49: -2.71707946e-147 + art_sys_50: 1.16496564e-139 + art_sys_51: -4.83361694e-129 + art_sys_52: -5.37035695e-146 + art_sys_53: -1.71515826e-142 + art_sys_54: -2.02940125e-137 + art_sys_55: -5.00409786e-134 + art_sys_56: -8.06991906e-131 + art_sys_57: -2.87426013e-52 + art_sys_58: -1.42424559e-38 + art_sys_59: 5.46533711e-50 + art_sys_60: -6.60791270e-47 + art_sys_61: -2.60492764e-32 + art_sys_62: 7.23096602e-47 + art_sys_63: 1.22141065e-36 + art_sys_64: 2.94172244e-10 + art_sys_65: -1.48965673e-09 + art_sys_66: 6.46668990e-10 + art_sys_67: 2.19833606e-08 + art_sys_68: 1.08570479e-07 + art_sys_69: -6.57746631e-07 + art_sys_70: 7.99237837e-07 + art_sys_71: -2.93598887e-07 + art_sys_72: -6.89006760e-06 + art_sys_73: 7.04723181e-06 + art_sys_74: 9.82709938e-24 art_sys_75: -1.11328733e-05 - art_sys_76: 4.93626916e-15 - art_sys_77: 6.63481307e-15 - art_sys_78: -2.36741175e-14 + art_sys_76: -1.10399022e-13 + art_sys_77: 2.79167479e-14 + art_sys_78: 1.26676950e-14 art_sys_79: 8.02009625e-05 - art_sys_80: 3.62859799e-18 - art_sys_81: 3.66052685e-15 - art_sys_82: 1.21347012e-15 - art_sys_83: -1.33958787e-16 - art_sys_84: 2.91268252e-05 - art_sys_85: 5.02275299e-16 - art_sys_86: 8.35780536e-17 - art_sys_87: -1.94380679e-04 + art_sys_80: 4.57325043e-15 + art_sys_81: 2.91268252e-05 + art_sys_82: 7.09330152e-18 + art_sys_83: -1.26986963e-15 + art_sys_84: 4.23006796e-16 + art_sys_85: -4.01081321e-17 + art_sys_86: -2.52537616e-17 + art_sys_87: 1.94380679e-04 art_sys_88: -1.86357750e-04 - art_sys_89: -4.45125466e-04 - art_sys_90: -4.42338304e-18 - art_sys_91: 1.03929894e-16 - art_sys_92: -2.33510661e-18 - art_sys_93: -2.41170844e-16 - art_sys_94: 1.55258376e-18 - art_sys_95: -2.37600727e-18 - art_sys_96: 4.38054942e-04 - art_sys_97: -3.89095622e-19 - art_sys_98: 4.27281710e-19 - art_sys_99: 1.36432435e-18 - art_sys_100: -1.06548594e-17 - art_sys_101: 1.17772044e-19 - art_sys_102: -3.99962047e-04 - art_sys_103: 2.24643067e-15 - art_sys_104: -3.87790307e-18 - art_sys_105: 1.80195242e-04 - art_sys_106: -1.23426126e-18 - art_sys_107: 5.33987957e-19 - art_sys_108: -2.45256536e-16 - art_sys_109: 4.97766678e-17 - art_sys_110: -1.41396638e-04 - art_sys_111: 6.61043677e-18 - art_sys_112: 6.69037780e-15 - art_sys_113: 7.56383478e-05 - art_sys_114: 9.02961875e-18 - art_sys_115: 3.03544386e-16 - art_sys_116: -2.92517987e-16 - art_sys_117: -4.49252432e-05 - art_sys_118: -1.14669315e-17 - art_sys_119: -4.42181421e-13 - art_sys_120: 3.80494623e-17 - art_sys_121: -2.43556161e-15 - art_sys_122: -2.65693885e-16 - art_sys_123: 3.81948864e-12 - art_sys_124: 6.19232663e-16 - art_sys_125: 2.34950239e-15 - art_sys_126: 1.68242643e-14 - art_sys_127: -1.05493028e-14 - art_sys_128: 1.35221709e-11 - art_sys_129: 3.96308514e-12 - art_sys_130: -1.40378922e-11 - art_sys_131: 5.77252705e-12 - art_sys_132: 9.74745372e-15 - art_sys_133: 1.66604454e-12 - art_sys_134: 4.13682946e-11 - art_sys_135: 3.59497343e-14 - art_sys_136: -3.54733673e-10 - art_sys_137: -4.16094805e-13 - art_sys_138: 2.93681016e-10 - art_sys_139: -2.58431116e-12 - art_sys_140: -1.18327962e-20 - art_sys_141: 1.10122091e-10 - art_sys_142: -0.0 - art_sys_143: -1.06922097e-11 - art_sys_144: -6.26925735e-11 - art_sys_145: -1.15082809e-10 - art_sys_146: 2.32670934e-05 - art_sys_147: 1.06179961e-05 - art_sys_148: 4.33819234e-06 - art_sys_149: 1.73197855e-06 - art_sys_150: -5.92864704e-07 - art_sys_151: -2.02540920e-07 - art_sys_152: 6.68942388e-08 - art_sys_153: -2.21241349e-08 - art_sys_154: 6.88581883e-09 - art_sys_155: -2.08386437e-09 - art_sys_156: 6.25893372e-10 - art_sys_157: -3.16233064e-11 + art_sys_89: -9.13197647e-18 + art_sys_90: -4.45125466e-04 + art_sys_91: 2.04208367e-18 + art_sys_92: 6.81768636e-18 + art_sys_93: 9.59855347e-18 + art_sys_94: 4.38054940e-04 + art_sys_95: 1.21181295e-17 + art_sys_96: 6.59947661e-19 + art_sys_97: -5.16623938e-19 + art_sys_98: -1.48384204e-15 + art_sys_99: -6.46575731e-17 + art_sys_100: -2.67352725e-14 + art_sys_101: -8.23786253e-16 + art_sys_102: 1.84305597e-17 + art_sys_103: -5.00182477e-15 + art_sys_104: 2.54746906e-16 + art_sys_105: -3.99959516e-04 + art_sys_106: 2.10151172e-16 + art_sys_107: -8.21850860e-17 + art_sys_108: -1.80195916e-04 + art_sys_109: -1.41396469e-04 + art_sys_110: 2.90272464e-14 + art_sys_111: 1.31355901e-15 + art_sys_112: 4.35581716e-16 + art_sys_113: -6.03933140e-15 + art_sys_114: 7.56386079e-05 + art_sys_115: -3.94014309e-16 + art_sys_116: 8.22435413e-16 + art_sys_117: 4.49250247e-05 + art_sys_118: -2.98898063e-17 + art_sys_119: 1.17024731e-13 + art_sys_120: -1.69763072e-16 + art_sys_121: 2.32668427e-05 + art_sys_122: -1.65114509e-14 + art_sys_123: 1.89625697e-14 + art_sys_124: 3.64143210e-16 + art_sys_125: 1.06181044e-05 + art_sys_126: -2.15628591e-14 + art_sys_127: -1.17959383e-12 + art_sys_128: 3.07411546e-15 + art_sys_129: -4.33822348e-06 + art_sys_130: -2.65321461e-11 + art_sys_131: 1.73197535e-06 + art_sys_132: -1.66934203e-13 + art_sys_133: -9.45626376e-11 + art_sys_134: 6.48840611e-15 + art_sys_135: -4.80409759e-15 + art_sys_136: 5.92786249e-07 + art_sys_137: -1.30590888e-10 + art_sys_138: -3.60571577e-14 + art_sys_139: 3.11074152e-12 + art_sys_140: -2.02602615e-07 + art_sys_141: 1.45736480e-11 + art_sys_142: -2.92138442e-14 + art_sys_143: -3.20208401e-11 + art_sys_144: 6.67491981e-08 + art_sys_145: 1.09247088e-13 + art_sys_146: 3.36368403e-11 + art_sys_147: -2.21569602e-08 + art_sys_148: -6.57769803e-09 + art_sys_149: -2.50883829e-13 + art_sys_150: 2.38114731e-11 + art_sys_151: 2.16103424e-11 + art_sys_152: 2.32241598e-09 + art_sys_153: -3.17691598e-11 + art_sys_154: -2.08121533e-17 + art_sys_155: -4.80916211e-10 + art_sys_156: -0.0 + art_sys_157: 1.14708691e-12 art_sys_158: -0.0 - art_sys_159: 8.15058398e-12 - art_sys_160: 8.15058398e-12 - art_sys_161: 4.62652699e-12 - art_sys_162: -1.01474890e-24 - art_sys_163: -0.0 - art_sys_164: -3.78097968e-25 - art_sys_165: -5.18891823e-18 - art_sys_166: 1.52766114e-18 - art_sys_167: -4.26135516e-18 - art_sys_168: 1.15957362e-18 - art_sys_169: 5.33843931e-19 - art_sys_170: 6.12945431e-19 - art_sys_171: 1.15421642e-19 - art_sys_172: 4.45262647e-20 - art_sys_173: -8.06714571e-20 - art_sys_174: 4.59914865e-23 - art_sys_175: 8.42063001e-21 - art_sys_176: 7.94544473e-21 - art_sys_177: -3.85872616e-21 - art_sys_178: -2.37319492e-21 - art_sys_179: -1.20982886e-21 - art_sys_180: 1.84769074e-22 - art_sys_181: 1.64420757e-22 - art_sys_182: 6.62499718e-23 - art_sys_183: 1.77927407e-23 - art_sys_184: 9.30178227e-25 - art_sys_185: -6.13918735e-25 + art_sys_159: -5.50228120e-12 + art_sys_160: 9.17761416e-11 + art_sys_161: -6.27527464e-13 + art_sys_162: -6.27527464e-13 + art_sys_163: 1.48170382e-12 + art_sys_164: 1.48170382e-12 + art_sys_165: -2.90724675e-25 + art_sys_166: 1.44851163e-25 + art_sys_167: 0.0 + art_sys_168: 4.74015470e-19 + art_sys_169: 2.48978562e-19 + art_sys_170: -3.11279406e-20 + art_sys_171: -8.82285156e-20 + art_sys_172: 1.31818408e-20 + art_sys_173: -8.65815300e-22 + art_sys_174: -3.21678593e-21 + art_sys_175: -1.01936053e-21 + art_sys_176: 2.76522610e-21 + art_sys_177: -3.32439314e-22 + art_sys_178: -1.27559386e-22 + art_sys_179: 2.43192194e-23 + art_sys_180: -2.30870038e-24 + art_sys_181: -3.21936791e-22 + art_sys_182: -1.35859044e-22 + art_sys_183: 2.11792189e-24 + art_sys_184: -3.04917466e-24 + art_sys_185: -2.68785464e-24 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -36069,154 +36069,154 @@ bins: art_sys_35: 0.0 art_sys_36: 0.0 art_sys_37: 0.0 - art_sys_38: 1.33206970e-289 - art_sys_39: -8.49242551e-269 - art_sys_40: -5.70243557e-264 - art_sys_41: 7.78616950e-253 - art_sys_42: -2.43889168e-153 - art_sys_43: -3.03350918e-153 - art_sys_44: -1.75820414e-146 - art_sys_45: 3.11577838e-137 - art_sys_46: -8.13252005e-130 - art_sys_47: -6.55342597e-124 - art_sys_48: 6.97523128e-118 - art_sys_49: -2.29838035e-110 - art_sys_50: -2.00243149e-102 - art_sys_51: 1.59433058e-89 - art_sys_52: 7.41606081e-98 - art_sys_53: 6.09777039e-100 - art_sys_54: -6.43290175e-91 - art_sys_55: -2.88010471e-88 - art_sys_56: 1.72943839e-85 - art_sys_57: 3.97280847e-11 - art_sys_58: -1.82872138e-10 - art_sys_59: 7.44974278e-11 - art_sys_60: 7.87367488e-28 - art_sys_61: -2.74757708e-09 - art_sys_62: -1.29677462e-08 - art_sys_63: -8.27378828e-08 - art_sys_64: -8.09328000e-08 - art_sys_65: 4.75944715e-08 - art_sys_66: -2.57490302e-24 - art_sys_67: -1.98541534e-06 - art_sys_68: -4.60540502e-06 - art_sys_69: -2.42090007e-23 - art_sys_70: 1.51219321e-23 - art_sys_71: 1.00577558e-23 - art_sys_72: -5.62812200e-24 - art_sys_73: -4.81005810e-24 - art_sys_74: -1.80872247e-24 + art_sys_38: 0.0 + art_sys_39: 0.0 + art_sys_40: 0.0 + art_sys_41: 0.0 + art_sys_42: 0.0 + art_sys_43: 0.0 + art_sys_44: -2.60157323e-216 + art_sys_45: -1.31206000e-209 + art_sys_46: -1.44076880e-159 + art_sys_47: -7.97707081e-165 + art_sys_48: 4.30038572e-157 + art_sys_49: -3.66924181e-148 + art_sys_50: 1.57321149e-140 + art_sys_51: -6.52749012e-130 + art_sys_52: -7.25232313e-147 + art_sys_53: -2.31621140e-143 + art_sys_54: -2.74057642e-138 + art_sys_55: -6.75771369e-135 + art_sys_56: -1.08979089e-131 + art_sys_57: -3.88170033e-53 + art_sys_58: -1.92344962e-39 + art_sys_59: 7.38096062e-51 + art_sys_60: -8.92401377e-48 + art_sys_61: -3.51796568e-33 + art_sys_62: 9.76529689e-48 + art_sys_63: 1.64952019e-37 + art_sys_64: 3.97280847e-11 + art_sys_65: -1.82872138e-10 + art_sys_66: 7.44974278e-11 + art_sys_67: 2.74757708e-09 + art_sys_68: 1.29677462e-08 + art_sys_69: -8.27378828e-08 + art_sys_70: 8.09328000e-08 + art_sys_71: 4.75944715e-08 + art_sys_72: -1.98541534e-06 + art_sys_73: 4.60540502e-06 + art_sys_74: 2.32733468e-24 art_sys_75: 5.58268033e-06 - art_sys_76: -6.80727778e-14 - art_sys_77: -1.40634920e-16 - art_sys_78: -1.22948127e-14 + art_sys_76: 4.27742433e-14 + art_sys_77: -1.92997795e-14 + art_sys_78: 3.17705730e-15 art_sys_79: 2.37495903e-05 - art_sys_80: -2.29719614e-18 - art_sys_81: -1.48194783e-15 - art_sys_82: -8.76960740e-16 - art_sys_83: 5.37965629e-17 - art_sys_84: 5.46848577e-05 - art_sys_85: -8.67228855e-17 - art_sys_86: -1.98996259e-16 - art_sys_87: 3.65957875e-05 + art_sys_80: 6.30562560e-15 + art_sys_81: 5.46848577e-05 + art_sys_82: 1.33575877e-17 + art_sys_83: 1.24785201e-15 + art_sys_84: 7.88040113e-16 + art_sys_85: 4.83626895e-17 + art_sys_86: -7.48610897e-17 + art_sys_87: -3.65957874e-05 art_sys_88: -2.15961586e-04 - art_sys_89: 2.78780939e-04 - art_sys_90: 1.52252633e-18 - art_sys_91: 1.95855312e-16 - art_sys_92: -5.04719400e-18 - art_sys_93: -4.52895238e-16 - art_sys_94: 2.84299607e-18 - art_sys_95: 9.79120073e-20 - art_sys_96: -5.50229462e-05 - art_sys_97: -5.70598666e-19 - art_sys_98: 1.16958733e-18 - art_sys_99: 2.56814703e-18 - art_sys_100: -1.78678341e-17 - art_sys_101: 3.51388231e-19 - art_sys_102: -4.57131753e-04 - art_sys_103: -4.31353962e-16 - art_sys_104: -5.43604533e-18 - art_sys_105: -1.07420086e-04 - art_sys_106: 1.69257160e-19 - art_sys_107: 1.32229302e-19 - art_sys_108: -2.05909722e-16 - art_sys_109: -8.96300630e-18 - art_sys_110: 6.30986785e-05 - art_sys_111: 4.47223876e-18 - art_sys_112: -6.89989074e-15 - art_sys_113: -7.96889261e-05 - art_sys_114: 1.60771623e-18 - art_sys_115: -3.86533666e-16 - art_sys_116: -7.84945057e-17 - art_sys_117: 5.76909036e-05 - art_sys_118: 3.40560524e-18 - art_sys_119: 5.59271000e-14 - art_sys_120: -7.50224802e-18 - art_sys_121: 1.89796721e-14 - art_sys_122: -3.86700779e-18 - art_sys_123: 4.40510236e-12 - art_sys_124: -5.03454415e-16 - art_sys_125: -2.02909895e-15 - art_sys_126: -8.28314468e-16 - art_sys_127: 6.18544800e-15 - art_sys_128: -1.05794593e-11 - art_sys_129: -1.03880182e-11 - art_sys_130: 2.30400409e-11 - art_sys_131: -1.21552029e-11 - art_sys_132: -9.14802239e-15 - art_sys_133: 1.75891768e-12 - art_sys_134: -7.49230952e-11 - art_sys_135: -1.35011084e-14 - art_sys_136: 6.45682595e-10 - art_sys_137: 6.09244132e-13 - art_sys_138: -5.33620862e-10 - art_sys_139: 3.19277912e-12 - art_sys_140: -2.73594182e-20 - art_sys_141: -2.00733582e-10 - art_sys_142: 0.0 - art_sys_143: 1.92858752e-11 - art_sys_144: 1.13102480e-10 - art_sys_145: 2.09912298e-10 - art_sys_146: -3.47512914e-05 - art_sys_147: -1.74420085e-05 - art_sys_148: -7.57069516e-06 - art_sys_149: -3.15479650e-06 - art_sys_150: 1.10991099e-06 - art_sys_151: 3.86173177e-07 - art_sys_152: -1.28965015e-07 - art_sys_153: 4.29284173e-08 - art_sys_154: -1.34161725e-08 - art_sys_155: 4.06814595e-09 - art_sys_156: -1.22319324e-09 - art_sys_157: 6.12448081e-11 + art_sys_89: 3.50305884e-17 + art_sys_90: 2.78780939e-04 + art_sys_91: -3.29506425e-18 + art_sys_92: -3.93991976e-17 + art_sys_93: -8.92183268e-18 + art_sys_94: -5.50229459e-05 + art_sys_95: -1.51620415e-16 + art_sys_96: 1.05174807e-20 + art_sys_97: 1.16537427e-19 + art_sys_98: 2.56752239e-16 + art_sys_99: 1.32089167e-17 + art_sys_100: 5.08023328e-15 + art_sys_101: 1.55197132e-16 + art_sys_102: -3.27799154e-16 + art_sys_103: 9.35282312e-16 + art_sys_104: -6.97522760e-19 + art_sys_105: -4.57133379e-04 + art_sys_106: -4.28206452e-17 + art_sys_107: 3.94327587e-16 + art_sys_108: 1.07420356e-04 + art_sys_109: 6.30984399e-05 + art_sys_110: -1.73099118e-14 + art_sys_111: 2.61349272e-15 + art_sys_112: 2.51837826e-15 + art_sys_113: 5.20310375e-15 + art_sys_114: -7.96891840e-05 + art_sys_115: -4.30277819e-16 + art_sys_116: -1.16743550e-16 + art_sys_117: -5.76905946e-05 + art_sys_118: 5.69974953e-16 + art_sys_119: -1.47217255e-14 + art_sys_120: 1.46487670e-17 + art_sys_121: -3.47509541e-05 + art_sys_122: 1.03632817e-14 + art_sys_123: 1.22017197e-14 + art_sys_124: -1.98657570e-16 + art_sys_125: -1.74421880e-05 + art_sys_126: 2.86741618e-15 + art_sys_127: 7.75547665e-13 + art_sys_128: -3.93144143e-16 + art_sys_129: 7.57075386e-06 + art_sys_130: 3.27513435e-11 + art_sys_131: -3.15479077e-06 + art_sys_132: 2.07062778e-14 + art_sys_133: 1.29327419e-10 + art_sys_134: -4.14861373e-15 + art_sys_135: -1.08633226e-14 + art_sys_136: -1.10976527e-06 + art_sys_137: 2.10858179e-10 + art_sys_138: -3.77573643e-14 + art_sys_139: -6.13807657e-12 + art_sys_140: 3.86291326e-07 + art_sys_141: -9.55299403e-12 + art_sys_142: -8.82527391e-16 + art_sys_143: 5.59681477e-11 + art_sys_144: -1.28685548e-07 + art_sys_145: -8.13035614e-14 + art_sys_146: -6.11392037e-11 + art_sys_147: 4.29921163e-08 + art_sys_148: 1.28173351e-08 + art_sys_149: 3.46326856e-13 + art_sys_150: -4.41388514e-11 + art_sys_151: -4.20462465e-11 + art_sys_152: -4.53285497e-09 + art_sys_153: 5.98665181e-11 + art_sys_154: 2.00392725e-17 + art_sys_155: 9.41046505e-10 + art_sys_156: 0.0 + art_sys_157: -2.13143308e-12 art_sys_158: 0.0 - art_sys_159: -1.42905086e-11 - art_sys_160: -1.42905086e-11 - art_sys_161: -9.07866470e-12 - art_sys_162: 2.00033436e-24 - art_sys_163: 0.0 - art_sys_164: 7.50780771e-25 - art_sys_165: 9.95840200e-18 - art_sys_166: -2.96346376e-18 - art_sys_167: 8.23345376e-18 - art_sys_168: -2.25151280e-18 - art_sys_169: -1.03831007e-18 - art_sys_170: -1.19555388e-18 - art_sys_171: -2.12980900e-19 - art_sys_172: -9.40320538e-20 - art_sys_173: 1.54920689e-19 - art_sys_174: -8.98268951e-23 - art_sys_175: -1.66810018e-20 - art_sys_176: -1.50939145e-20 - art_sys_177: 7.39700243e-21 - art_sys_178: 4.65945999e-21 - art_sys_179: 2.01305898e-21 - art_sys_180: -4.48693322e-22 - art_sys_181: -3.20263283e-22 - art_sys_182: -1.20494175e-22 - art_sys_183: -3.46530487e-23 - art_sys_184: -1.84373460e-24 - art_sys_185: 1.20074605e-24 + art_sys_159: 1.03001613e-11 + art_sys_160: -1.78764316e-10 + art_sys_161: 1.15840465e-12 + art_sys_162: 1.15840465e-12 + art_sys_163: -2.80680630e-12 + art_sys_164: -2.80680630e-12 + art_sys_165: 5.67443749e-25 + art_sys_166: -2.82834046e-25 + art_sys_167: -0.0 + art_sys_168: -8.84477714e-19 + art_sys_169: -4.41729253e-19 + art_sys_170: 6.28471062e-20 + art_sys_171: 1.22733686e-19 + art_sys_172: -3.02348243e-20 + art_sys_173: -6.73280580e-22 + art_sys_174: 7.29531293e-21 + art_sys_175: 1.92524204e-21 + art_sys_176: -5.38346542e-21 + art_sys_177: 4.78028522e-22 + art_sys_178: 2.39861473e-22 + art_sys_179: -4.77478593e-23 + art_sys_180: 4.49774015e-24 + art_sys_181: 7.01657259e-22 + art_sys_182: 2.38663211e-22 + art_sys_183: -4.02332817e-24 + art_sys_184: 5.96819374e-24 + art_sys_185: 5.27315016e-24 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -36361,153 +36361,153 @@ bins: art_sys_36: 0.0 art_sys_37: 0.0 art_sys_38: 0.0 - art_sys_39: -7.68727753e-270 - art_sys_40: -5.16180016e-265 - art_sys_41: 7.04798022e-254 - art_sys_42: -2.29284510e-154 - art_sys_43: -2.85185550e-154 - art_sys_44: -1.65291874e-147 - art_sys_45: 2.92919822e-138 - art_sys_46: -7.64552559e-131 - art_sys_47: -6.16099138e-125 - art_sys_48: 6.55753799e-119 - art_sys_49: -2.16074791e-111 - art_sys_50: -1.88252117e-103 - art_sys_51: 1.49885831e-90 - art_sys_52: 6.97196962e-99 - art_sys_53: 5.73262153e-101 - art_sys_54: -6.04768444e-92 - art_sys_55: -2.70763725e-89 - art_sys_56: 1.62587554e-86 - art_sys_57: 3.73490735e-12 - art_sys_58: -1.87768726e-11 - art_sys_59: 7.09997194e-12 - art_sys_60: 1.05199056e-28 - art_sys_61: -2.86618160e-10 - art_sys_62: -8.70284781e-10 - art_sys_63: -9.09601305e-09 - art_sys_64: -4.74935554e-09 - art_sys_65: 1.98117235e-08 - art_sys_66: -4.04949910e-25 - art_sys_67: -2.97435975e-07 - art_sys_68: -9.72435787e-07 - art_sys_69: -4.65860394e-24 - art_sys_70: 3.48954955e-24 - art_sys_71: 1.76847143e-24 - art_sys_72: -9.26274809e-25 - art_sys_73: -2.47073487e-25 - art_sys_74: -3.67476779e-25 + art_sys_39: 0.0 + art_sys_40: 0.0 + art_sys_41: 0.0 + art_sys_42: 0.0 + art_sys_43: 0.0 + art_sys_44: -2.45457986e-217 + art_sys_45: -1.23792635e-210 + art_sys_46: -1.35455517e-160 + art_sys_47: -7.49973382e-166 + art_sys_48: 4.04305653e-158 + art_sys_49: -3.44967940e-149 + art_sys_50: 1.47907267e-141 + art_sys_51: -6.13689406e-131 + art_sys_52: -6.81835409e-148 + art_sys_53: -2.17761248e-144 + art_sys_54: -2.57658409e-139 + art_sys_55: -6.35334136e-136 + art_sys_56: -1.02457929e-132 + art_sys_57: -3.64925499e-54 + art_sys_58: -1.80826894e-40 + art_sys_59: 6.93897136e-52 + art_sys_60: -8.38962286e-49 + art_sys_61: -3.30730163e-34 + art_sys_62: 9.18054836e-49 + art_sys_63: 1.55074304e-38 + art_sys_64: 3.73490735e-12 + art_sys_65: -1.87768726e-11 + art_sys_66: 7.09997194e-12 + art_sys_67: 2.86618160e-10 + art_sys_68: 8.70284781e-10 + art_sys_69: -9.09601305e-09 + art_sys_70: 4.74935554e-09 + art_sys_71: 1.98117235e-08 + art_sys_72: -2.97435975e-07 + art_sys_73: 9.72435787e-07 + art_sys_74: 2.91350514e-25 art_sys_75: 2.23147652e-06 - art_sys_76: 3.13584276e-14 - art_sys_77: -2.05802008e-15 - art_sys_78: -1.56484122e-14 + art_sys_76: 6.06537558e-15 + art_sys_77: -1.87319760e-14 + art_sys_78: 8.00328141e-16 art_sys_79: -2.14553170e-07 - art_sys_80: -7.74292328e-19 - art_sys_81: 4.43882944e-15 - art_sys_82: -6.29251044e-16 - art_sys_83: -1.22531640e-15 - art_sys_84: 1.03667596e-05 - art_sys_85: 7.93367351e-17 - art_sys_86: 1.36823392e-16 - art_sys_87: 2.53627059e-05 + art_sys_80: -2.28225853e-15 + art_sys_81: 1.03667596e-05 + art_sys_82: 2.53372326e-18 + art_sys_83: -4.74162780e-16 + art_sys_84: -8.32685976e-16 + art_sys_85: 6.13380551e-16 + art_sys_86: -4.48344528e-16 + art_sys_87: -2.53627059e-05 art_sys_88: -1.26647670e-05 - art_sys_89: 8.41642392e-05 - art_sys_90: 5.88503938e-19 - art_sys_91: 3.71619009e-17 - art_sys_92: -9.87466769e-19 - art_sys_93: -8.58616536e-17 - art_sys_94: 5.35347411e-19 - art_sys_95: 2.27546302e-19 - art_sys_96: -6.97502455e-05 - art_sys_97: -4.47665518e-20 - art_sys_98: 2.31613323e-19 - art_sys_99: 4.87354432e-19 - art_sys_100: -1.53628483e-18 - art_sys_101: 3.95853805e-20 - art_sys_102: -1.04139676e-04 - art_sys_103: -2.94348280e-16 - art_sys_104: -3.93014112e-19 - art_sys_105: -4.13735522e-04 - art_sys_106: 1.74102177e-19 - art_sys_107: 3.33875577e-20 - art_sys_108: -5.42981669e-18 - art_sys_109: -6.42792481e-18 - art_sys_110: 1.54892447e-05 - art_sys_111: -1.87772006e-20 - art_sys_112: -1.65519741e-15 - art_sys_113: 1.61534307e-05 - art_sys_114: -6.78027576e-19 - art_sys_115: -9.44217701e-17 - art_sys_116: 1.85597761e-17 - art_sys_117: -4.62550014e-05 - art_sys_118: 1.67219742e-18 - art_sys_119: 7.05374665e-14 - art_sys_120: -5.00435739e-18 - art_sys_121: 2.97367023e-15 - art_sys_122: 2.69552334e-17 - art_sys_123: 1.01941964e-12 - art_sys_124: -1.35078059e-16 - art_sys_125: -5.24634841e-16 - art_sys_126: -2.24008498e-15 - art_sys_127: 1.91191714e-15 - art_sys_128: 2.25861155e-11 - art_sys_129: 1.43767925e-11 - art_sys_130: -2.76730758e-11 - art_sys_131: 1.82128201e-11 - art_sys_132: -3.10316655e-15 - art_sys_133: 4.93345104e-13 - art_sys_134: 1.14914285e-10 - art_sys_135: 5.29198961e-14 - art_sys_136: -9.79567711e-10 - art_sys_137: -9.85752624e-13 - art_sys_138: 8.09802778e-10 - art_sys_139: -2.69831020e-12 - art_sys_140: 9.06952190e-21 - art_sys_141: 3.04376032e-10 - art_sys_142: -0.0 - art_sys_143: -2.90550807e-11 - art_sys_144: -1.70489136e-10 - art_sys_145: -3.18874831e-10 - art_sys_146: 3.70630882e-05 - art_sys_147: 2.22856491e-05 - art_sys_148: 1.07468145e-05 - art_sys_149: 4.79340493e-06 - art_sys_150: -1.76511864e-06 - art_sys_151: -6.32279015e-07 - art_sys_152: 2.15015670e-07 - art_sys_153: -7.23518922e-08 - art_sys_154: 2.27645672e-08 - art_sys_155: -6.92685847e-09 - art_sys_156: 2.08647926e-09 - art_sys_157: -1.02807880e-10 + art_sys_89: -2.65974346e-17 + art_sys_90: 8.41642393e-05 + art_sys_91: -9.53381945e-19 + art_sys_92: 8.64236868e-19 + art_sys_93: 4.04270374e-18 + art_sys_94: -6.97502452e-05 + art_sys_95: -2.35778266e-17 + art_sys_96: -5.48400795e-20 + art_sys_97: 7.75423740e-20 + art_sys_98: 1.90282281e-16 + art_sys_99: 8.58965223e-18 + art_sys_100: 3.49452167e-15 + art_sys_101: 1.07512007e-16 + art_sys_102: -5.02541338e-17 + art_sys_103: 6.51770076e-16 + art_sys_104: -2.67534161e-17 + art_sys_105: -1.04145656e-04 + art_sys_106: -2.76068958e-17 + art_sys_107: 6.71872340e-17 + art_sys_108: 4.13736649e-04 + art_sys_109: 1.54893253e-05 + art_sys_110: -5.36189235e-15 + art_sys_111: 2.46080441e-16 + art_sys_112: 3.17468677e-16 + art_sys_113: 1.34630733e-15 + art_sys_114: 1.61535957e-05 + art_sys_115: -2.30235606e-17 + art_sys_116: -1.35081522e-16 + art_sys_117: 4.62547007e-05 + art_sys_118: 1.00311882e-16 + art_sys_119: -1.86405175e-14 + art_sys_120: 7.70926455e-18 + art_sys_121: 3.70627848e-05 + art_sys_122: 3.12720752e-15 + art_sys_123: -8.85703039e-15 + art_sys_124: -6.09226699e-17 + art_sys_125: 2.22858819e-05 + art_sys_126: 3.45070132e-15 + art_sys_127: 2.85227638e-12 + art_sys_128: -4.96500806e-16 + art_sys_129: -1.07469082e-05 + art_sys_130: -1.75070922e-11 + art_sys_131: 4.79339648e-06 + art_sys_132: 2.65001969e-14 + art_sys_133: -1.21788888e-10 + art_sys_134: -1.52223146e-14 + art_sys_135: -2.93743851e-15 + art_sys_136: 1.76488988e-06 + art_sys_137: -2.62458945e-10 + art_sys_138: -4.70875924e-15 + art_sys_139: 9.20509869e-12 + art_sys_140: -6.32473878e-07 + art_sys_141: -3.56248216e-11 + art_sys_142: 4.57610140e-14 + art_sys_143: -7.75386455e-11 + art_sys_144: 2.14550141e-07 + art_sys_145: -2.29867055e-13 + art_sys_146: 9.25475735e-11 + art_sys_147: -7.24592690e-08 + art_sys_148: -2.17524627e-08 + art_sys_149: -1.71375815e-13 + art_sys_150: 6.90654929e-11 + art_sys_151: 7.09207766e-11 + art_sys_152: 7.71524407e-09 + art_sys_153: -9.63471192e-11 + art_sys_154: 5.33728234e-18 + art_sys_155: -1.60860112e-09 + art_sys_156: -0.0 + art_sys_157: 3.37965150e-12 art_sys_158: -0.0 - art_sys_159: 2.05381416e-11 - art_sys_160: 2.05381416e-11 - art_sys_161: 1.55753182e-11 - art_sys_162: -3.45483088e-24 - art_sys_163: -0.0 - art_sys_164: -1.31047413e-24 - art_sys_165: -1.64884816e-17 - art_sys_166: 4.99496412e-18 - art_sys_167: -1.41130276e-17 - art_sys_168: 3.79583795e-18 - art_sys_169: 1.76285957e-18 - art_sys_170: 2.02991775e-18 - art_sys_171: 3.54268986e-19 - art_sys_172: 1.71404523e-19 - art_sys_173: -2.65015876e-19 - art_sys_174: 1.53051844e-22 - art_sys_175: 2.89718266e-20 - art_sys_176: 2.47546077e-20 - art_sys_177: -1.22783270e-20 - art_sys_178: -7.91500135e-21 - art_sys_179: -2.85530008e-21 - art_sys_180: 8.99028388e-22 - art_sys_181: 5.46151844e-22 - art_sys_182: 1.80846812e-22 - art_sys_183: 5.87556445e-23 - art_sys_184: 3.22187325e-24 - art_sys_185: -2.05153864e-24 + art_sys_159: -1.64449384e-11 + art_sys_160: 3.03267215e-10 + art_sys_161: -1.80376007e-12 + art_sys_162: -1.80376007e-12 + art_sys_163: 4.54103422e-12 + art_sys_164: 4.54103422e-12 + art_sys_165: -9.65848417e-25 + art_sys_166: 4.81721778e-25 + art_sys_167: 0.0 + art_sys_168: 1.28275622e-18 + art_sys_169: 6.57826746e-19 + art_sys_170: -1.18149697e-19 + art_sys_171: -1.41867346e-19 + art_sys_172: 6.11247305e-20 + art_sys_173: 6.67161076e-21 + art_sys_174: -1.46041562e-20 + art_sys_175: -2.93880114e-21 + art_sys_176: 9.14822850e-21 + art_sys_177: -4.33588681e-22 + art_sys_178: -3.89459735e-22 + art_sys_179: 8.20676720e-23 + art_sys_180: -7.63745125e-24 + art_sys_181: -1.31338894e-21 + art_sys_182: -3.41899205e-22 + art_sys_183: 6.22651767e-24 + art_sys_184: -1.02060354e-23 + art_sys_185: -9.05356046e-24 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -36651,154 +36651,154 @@ bins: art_sys_35: 0.0 art_sys_36: 0.0 art_sys_37: 0.0 - art_sys_38: -1.04067946e-291 - art_sys_39: -2.88797200e-271 - art_sys_40: -1.93919541e-266 - art_sys_41: 2.64779961e-255 - art_sys_42: -1.00472529e-155 - art_sys_43: -1.24968379e-155 - art_sys_44: -7.24309400e-149 - art_sys_45: 1.28357539e-139 - art_sys_46: -3.35027121e-132 - art_sys_47: -2.69974795e-126 - art_sys_48: 2.87351477e-120 - art_sys_49: -9.46840271e-113 - art_sys_50: -8.24921245e-105 - art_sys_51: 6.56800083e-92 - art_sys_52: 3.05511881e-100 - art_sys_53: 2.51203617e-102 - art_sys_54: -2.65009682e-93 - art_sys_55: -1.18648732e-90 - art_sys_56: 7.12459067e-88 - art_sys_57: 1.63663737e-13 - art_sys_58: -1.08903284e-12 - art_sys_59: 1.25469566e-12 - art_sys_60: 8.18563677e-30 - art_sys_61: -2.43125422e-11 - art_sys_62: -1.73873544e-11 - art_sys_63: -8.96794487e-10 - art_sys_64: -3.27223802e-10 - art_sys_65: 2.00122274e-09 - art_sys_66: -1.78754255e-26 - art_sys_67: -1.12711098e-08 - art_sys_68: -3.87396780e-08 - art_sys_69: -1.83227061e-25 - art_sys_70: 1.39363874e-25 - art_sys_71: 6.90383610e-26 - art_sys_72: -3.53234341e-26 - art_sys_73: -4.98985741e-28 - art_sys_74: -1.47525141e-26 + art_sys_38: 0.0 + art_sys_39: 0.0 + art_sys_40: 0.0 + art_sys_41: 0.0 + art_sys_42: 0.0 + art_sys_43: 0.0 + art_sys_44: -1.09205306e-218 + art_sys_45: -5.50758710e-212 + art_sys_46: -5.93672432e-162 + art_sys_47: -3.28697223e-167 + art_sys_48: 1.77198483e-159 + art_sys_49: -1.51192038e-150 + art_sys_50: 6.48245781e-143 + art_sys_51: -2.68966884e-132 + art_sys_52: -2.98833814e-149 + art_sys_53: -9.54400773e-146 + art_sys_54: -1.12926146e-140 + art_sys_55: -2.78453304e-137 + art_sys_56: -4.49051096e-134 + art_sys_57: -1.59910449e-55 + art_sys_58: -7.92383921e-42 + art_sys_59: 3.04065906e-53 + art_sys_60: -3.67633492e-50 + art_sys_61: -1.44926043e-35 + art_sys_62: 4.02289241e-50 + art_sys_63: 6.79536005e-40 + art_sys_64: 1.63663737e-13 + art_sys_65: -1.08903284e-12 + art_sys_66: 1.25469566e-12 + art_sys_67: 2.43125422e-11 + art_sys_68: 1.73873544e-11 + art_sys_69: -8.96794487e-10 + art_sys_70: 3.27223802e-10 + art_sys_71: 2.00122274e-09 + art_sys_72: -1.12711098e-08 + art_sys_73: 3.87396780e-08 + art_sys_74: 1.10532651e-26 art_sys_75: 2.02808024e-07 - art_sys_76: 9.70648258e-15 - art_sys_77: 7.83462098e-15 - art_sys_78: 1.78902221e-14 + art_sys_76: -7.30670505e-14 + art_sys_77: -3.94359757e-14 + art_sys_78: 3.20707473e-14 art_sys_79: -1.74445234e-06 - art_sys_80: 1.03277873e-22 - art_sys_81: -1.56754065e-15 - art_sys_82: 1.00336997e-15 - art_sys_83: 1.06894443e-15 - art_sys_84: -1.71311996e-06 - art_sys_85: 5.68089129e-16 - art_sys_86: -4.89354293e-16 - art_sys_87: 2.23340808e-06 + art_sys_80: 2.84921907e-15 + art_sys_81: -1.71311996e-06 + art_sys_82: -4.18138711e-19 + art_sys_83: 6.33539897e-16 + art_sys_84: 3.69249488e-16 + art_sys_85: -1.60935460e-16 + art_sys_86: -1.55321311e-16 + art_sys_87: -2.23340808e-06 art_sys_88: 1.87565112e-05 - art_sys_89: -1.22526251e-05 - art_sys_90: 2.58435878e-20 - art_sys_91: -6.12963960e-18 - art_sys_92: 1.52279103e-19 - art_sys_93: 1.41868687e-17 - art_sys_94: -8.98672643e-20 - art_sys_95: 3.50343670e-20 - art_sys_96: -6.78926903e-06 - art_sys_97: 4.70384674e-20 - art_sys_98: -3.69158557e-20 - art_sys_99: -8.04664893e-20 - art_sys_100: 1.44575233e-18 - art_sys_101: -2.65885475e-20 - art_sys_102: 8.66233413e-05 - art_sys_103: -2.52596924e-17 - art_sys_104: 4.55254653e-19 - art_sys_105: -1.87157731e-04 - art_sys_106: 1.96925430e-20 - art_sys_107: -1.43399518e-20 - art_sys_108: 1.90217624e-17 - art_sys_109: -5.81769808e-19 - art_sys_110: -2.47212960e-04 - art_sys_111: -4.58159913e-19 - art_sys_112: 3.78682267e-16 - art_sys_113: 3.71715521e-05 - art_sys_114: -3.15589274e-19 - art_sys_115: 2.10151390e-17 - art_sys_116: 1.23059810e-17 - art_sys_117: 4.17778132e-06 - art_sys_118: 4.29800785e-20 - art_sys_119: 6.79291643e-15 - art_sys_120: -3.98227681e-19 - art_sys_121: -1.32027506e-15 - art_sys_122: 7.02171198e-18 - art_sys_123: -8.47901801e-13 - art_sys_124: 2.30252184e-17 - art_sys_125: 1.04970797e-16 - art_sys_126: -4.32327730e-16 - art_sys_127: -2.50602710e-16 - art_sys_128: 4.52714125e-11 - art_sys_129: -6.95564284e-12 - art_sys_130: 2.81593487e-11 - art_sys_131: -2.63432418e-11 - art_sys_132: 9.65758982e-16 - art_sys_133: -3.34675530e-13 - art_sys_134: -1.87826753e-10 - art_sys_135: -7.76368146e-14 - art_sys_136: 1.56649313e-09 - art_sys_137: 1.55344439e-12 - art_sys_138: -1.29739493e-09 - art_sys_139: 1.58487632e-13 - art_sys_140: -1.45293469e-20 - art_sys_141: -4.85233119e-10 - art_sys_142: 0.0 - art_sys_143: 4.62185558e-11 - art_sys_144: 2.71288404e-10 - art_sys_145: 5.10149096e-10 - art_sys_146: -3.20164692e-05 - art_sys_147: -2.66909985e-05 - art_sys_148: -1.54426540e-05 - art_sys_149: -7.68260316e-06 - art_sys_150: 3.03004780e-06 - art_sys_151: 1.13688403e-06 - art_sys_152: -3.97586028e-07 - art_sys_153: 1.36126297e-07 - art_sys_154: -4.33079748e-08 - art_sys_155: 1.32521905e-08 - art_sys_156: -4.00420923e-09 - art_sys_157: 1.92129237e-10 + art_sys_89: -1.75446066e-18 + art_sys_90: -1.22526251e-05 + art_sys_91: 4.21683563e-20 + art_sys_92: 1.25956727e-17 + art_sys_93: 8.88597796e-18 + art_sys_94: -6.78926900e-06 + art_sys_95: 9.74455875e-18 + art_sys_96: -1.09462105e-20 + art_sys_97: 7.60781153e-21 + art_sys_98: 1.85451554e-17 + art_sys_99: 6.74370339e-19 + art_sys_100: 3.02761647e-16 + art_sys_101: 9.47439077e-18 + art_sys_102: 2.11330486e-17 + art_sys_103: 5.80254770e-17 + art_sys_104: -6.84755149e-18 + art_sys_105: 8.66206617e-05 + art_sys_106: -2.11207965e-18 + art_sys_107: -2.65069653e-17 + art_sys_108: 1.87158061e-04 + art_sys_109: -2.47212989e-04 + art_sys_110: 7.36813212e-16 + art_sys_111: -2.10642799e-16 + art_sys_112: -1.88747128e-16 + art_sys_113: -2.68274107e-16 + art_sys_114: 3.71716956e-05 + art_sys_115: 3.77722850e-17 + art_sys_116: -1.06768110e-17 + art_sys_117: -4.17758794e-06 + art_sys_118: -3.78324937e-17 + art_sys_119: -1.80988592e-15 + art_sys_120: 8.32424678e-18 + art_sys_121: -3.20163433e-05 + art_sys_122: -4.57808548e-16 + art_sys_123: -8.40378754e-15 + art_sys_124: 6.56763200e-18 + art_sys_125: -2.66912832e-05 + art_sys_126: 5.04334098e-16 + art_sys_127: 1.27246551e-12 + art_sys_128: -5.28033940e-17 + art_sys_129: 1.54428147e-05 + art_sys_130: -1.31834741e-11 + art_sys_131: -7.68259021e-06 + art_sys_132: 2.64282033e-15 + art_sys_133: 6.26685931e-11 + art_sys_134: -7.94125764e-15 + art_sys_135: 1.91012657e-15 + art_sys_136: -3.02966367e-06 + art_sys_137: 3.02573649e-10 + art_sys_138: 9.16955083e-15 + art_sys_139: -1.72655756e-11 + art_sys_140: 1.13723845e-06 + art_sys_141: -1.42830399e-11 + art_sys_142: 1.88135464e-14 + art_sys_143: 1.04107662e-10 + art_sys_144: -3.96726335e-07 + art_sys_145: -1.43422897e-13 + art_sys_146: -1.47496636e-10 + art_sys_147: 1.36328373e-07 + art_sys_148: 4.13949346e-08 + art_sys_149: 8.99173440e-13 + art_sys_150: -1.16162554e-10 + art_sys_151: -1.32660737e-10 + art_sys_152: -1.47517437e-08 + art_sys_153: 1.69025662e-10 + art_sys_154: -1.51502667e-18 + art_sys_155: 3.09785574e-09 + art_sys_156: 0.0 + art_sys_157: -5.74190124e-12 art_sys_158: 0.0 - art_sys_159: -3.00705528e-11 - art_sys_160: -3.00705528e-11 - art_sys_161: -3.00913947e-11 - art_sys_162: 6.73328439e-24 - art_sys_163: 0.0 - art_sys_164: 2.58886706e-24 - art_sys_165: 3.03122184e-17 - art_sys_166: -9.41422123e-18 - art_sys_167: 2.55483243e-17 - art_sys_168: -7.14844301e-18 - art_sys_169: -3.35154830e-18 - art_sys_170: -3.86636990e-18 - art_sys_171: -6.68223717e-19 - art_sys_172: -3.57125035e-19 - art_sys_173: 5.00157583e-19 - art_sys_174: -2.93165738e-22 - art_sys_175: -5.63871142e-20 - art_sys_176: -4.57502717e-20 - art_sys_177: 2.29064602e-20 - art_sys_178: 1.51640216e-20 - art_sys_179: 4.42353676e-21 - art_sys_180: -1.96583550e-21 - art_sys_181: -1.03145797e-21 - art_sys_182: -3.05053025e-22 - art_sys_183: -1.11795386e-22 - art_sys_184: -6.41909419e-24 - art_sys_185: 3.94817969e-24 + art_sys_159: 2.86594304e-11 + art_sys_160: -5.76745150e-10 + art_sys_161: 3.04277415e-12 + art_sys_162: 3.04277415e-12 + art_sys_163: -7.96116373e-12 + art_sys_164: -7.96116373e-12 + art_sys_165: 1.84689921e-24 + art_sys_166: -9.22121849e-25 + art_sys_167: -0.0 + art_sys_168: -1.79857465e-18 + art_sys_169: -9.91350894e-19 + art_sys_170: 2.83492177e-19 + art_sys_171: 1.49413234e-19 + art_sys_172: -1.26268156e-19 + art_sys_173: -2.65158604e-20 + art_sys_174: 3.20413867e-20 + art_sys_175: 5.42570496e-21 + art_sys_176: -1.75026028e-20 + art_sys_177: 5.14850600e-22 + art_sys_178: 6.98376938e-22 + art_sys_179: -1.59449356e-22 + art_sys_180: 1.45637881e-23 + art_sys_181: 2.58806595e-21 + art_sys_182: 4.55138110e-22 + art_sys_183: -1.05507016e-23 + art_sys_184: 1.96354821e-23 + art_sys_185: 1.75522048e-23 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -36942,154 +36942,154 @@ bins: art_sys_35: 0.0 art_sys_36: 0.0 art_sys_37: 0.0 - art_sys_38: -3.98258068e-293 - art_sys_39: 1.92791269e-272 - art_sys_40: 1.29454159e-267 - art_sys_41: -1.76758158e-256 - art_sys_42: 4.02256738e-157 - art_sys_43: 5.00329522e-157 - art_sys_44: 2.89988059e-150 - art_sys_45: -5.13898529e-141 - art_sys_46: 1.34133099e-133 - art_sys_47: 1.08088431e-127 - art_sys_48: -1.15045445e-121 - art_sys_49: 3.79081609e-114 - art_sys_50: 3.30269510e-106 - art_sys_51: -2.62959698e-93 - art_sys_52: -1.22316233e-101 - art_sys_53: -1.00573111e-103 - art_sys_54: 1.06100574e-94 - art_sys_55: 4.75027873e-92 - art_sys_56: -2.85243601e-89 - art_sys_57: -6.55252105e-15 - art_sys_58: 9.86402064e-15 - art_sys_59: 3.01274945e-13 - art_sys_60: 8.85042475e-31 - art_sys_61: -2.46897008e-12 - art_sys_62: -5.39384338e-12 - art_sys_63: -1.02621537e-10 - art_sys_64: -1.16533470e-10 - art_sys_65: -1.32340574e-10 - art_sys_66: 3.31864678e-27 - art_sys_67: 2.58232574e-09 - art_sys_68: 1.98914848e-08 - art_sys_69: 8.25913758e-26 - art_sys_70: -8.03372199e-26 - art_sys_71: -2.58798079e-26 - art_sys_72: 1.16026175e-26 - art_sys_73: -1.84849006e-27 - art_sys_74: 6.93128193e-27 + art_sys_38: 0.0 + art_sys_39: 0.0 + art_sys_40: 0.0 + art_sys_41: 0.0 + art_sys_42: 0.0 + art_sys_43: 0.0 + art_sys_44: 4.12165827e-220 + art_sys_45: 2.07868967e-213 + art_sys_46: 2.37550788e-163 + art_sys_47: 1.31524188e-168 + art_sys_48: -7.09038131e-161 + art_sys_49: 6.04976512e-152 + art_sys_50: -2.59387648e-144 + art_sys_51: 1.07623820e-133 + art_sys_52: 1.19574707e-150 + art_sys_53: 3.81891836e-147 + art_sys_54: 4.51860208e-142 + art_sys_55: 1.11419696e-138 + art_sys_56: 1.79682323e-135 + art_sys_57: 6.40225247e-57 + art_sys_58: 3.17242678e-43 + art_sys_59: -1.21737304e-54 + art_sys_60: 1.47187532e-51 + art_sys_61: 5.80232952e-37 + art_sys_62: -1.61063890e-51 + art_sys_63: -2.72062338e-41 + art_sys_64: -6.55252105e-15 + art_sys_65: 9.86402064e-15 + art_sys_66: 3.01274945e-13 + art_sys_67: 2.46897008e-12 + art_sys_68: 5.39384338e-12 + art_sys_69: -1.02621537e-10 + art_sys_70: 1.16533470e-10 + art_sys_71: -1.32340574e-10 + art_sys_72: 2.58232574e-09 + art_sys_73: -1.98914848e-08 + art_sys_74: -1.45736287e-28 art_sys_75: -3.80519460e-08 - art_sys_76: -2.89043961e-14 - art_sys_77: -7.22889555e-18 - art_sys_78: -6.83740545e-15 + art_sys_76: 9.36555299e-15 + art_sys_77: -1.19999673e-15 + art_sys_78: 1.46329542e-14 art_sys_79: -4.91989196e-07 - art_sys_80: 3.91058642e-20 - art_sys_81: -3.26216209e-15 - art_sys_82: 5.22547070e-16 - art_sys_83: -1.60339380e-15 - art_sys_84: -1.01696352e-06 - art_sys_85: 4.64808716e-18 - art_sys_86: -3.65941397e-16 - art_sys_87: -9.75064195e-07 - art_sys_88: 5.32752230e-06 - art_sys_89: -8.71977393e-06 - art_sys_90: -1.58809071e-20 - art_sys_91: -3.64284072e-18 - art_sys_92: 9.42927817e-20 - art_sys_93: 8.42244873e-18 - art_sys_94: -5.28597936e-20 - art_sys_95: -5.35015884e-21 - art_sys_96: 5.38539526e-06 - art_sys_97: 1.42352719e-20 - art_sys_98: -2.24542009e-20 - art_sys_99: -4.78680643e-20 - art_sys_100: 4.45770321e-19 - art_sys_101: -8.95007790e-21 - art_sys_102: 4.36629461e-05 - art_sys_103: 1.14752666e-17 - art_sys_104: 1.34176767e-19 - art_sys_105: 2.91406788e-05 - art_sys_106: -1.31058543e-20 - art_sys_107: -8.28868592e-21 - art_sys_108: 4.88204476e-18 - art_sys_109: 2.48612223e-19 - art_sys_110: -1.69614974e-04 - art_sys_111: -1.12270689e-19 - art_sys_112: 2.04172767e-16 - art_sys_113: -1.49782647e-04 - art_sys_114: -1.57513235e-20 - art_sys_115: 1.25253952e-17 - art_sys_116: 1.89537905e-18 - art_sys_117: 3.54577246e-05 - art_sys_118: -8.65747960e-20 - art_sys_119: -5.47333869e-15 - art_sys_120: 2.07766600e-19 - art_sys_121: -5.18746353e-16 - art_sys_122: 1.61162724e-19 - art_sys_123: -4.26701122e-13 - art_sys_124: 1.43987645e-17 - art_sys_125: 6.12012075e-17 - art_sys_126: 8.07806465e-17 - art_sys_127: -1.80752949e-16 - art_sys_128: 2.62339297e-12 - art_sys_129: -1.05777026e-11 - art_sys_130: -1.21143477e-11 - art_sys_131: 2.68637040e-11 - art_sys_132: 5.24724730e-17 - art_sys_133: -9.72293079e-14 - art_sys_134: 2.84433980e-10 - art_sys_135: 1.07740988e-13 - art_sys_136: -2.27010375e-09 - art_sys_137: -2.26412380e-12 - art_sys_138: 1.89033420e-09 - art_sys_139: 6.47718286e-12 - art_sys_140: 2.41238552e-20 - art_sys_141: 6.96770780e-10 - art_sys_142: -0.0 - art_sys_143: -6.70482472e-11 - art_sys_144: -3.93511544e-10 - art_sys_145: -7.37723089e-10 - art_sys_146: 1.56605541e-06 - art_sys_147: 2.34229903e-05 - art_sys_148: 1.86789295e-05 - art_sys_149: 1.11713477e-05 - art_sys_150: -4.90628832e-06 - art_sys_151: -1.97073302e-06 - art_sys_152: 7.19810784e-07 - art_sys_153: -2.52934807e-07 - art_sys_154: 8.18696253e-08 - art_sys_155: -2.52778446e-08 - art_sys_156: 7.67536557e-09 - art_sys_157: -3.52597762e-10 + art_sys_80: -3.48155629e-15 + art_sys_81: -1.01696352e-06 + art_sys_82: -2.48392195e-19 + art_sys_83: 4.72821826e-16 + art_sys_84: -6.76761236e-16 + art_sys_85: 2.84200684e-16 + art_sys_86: -1.10346121e-16 + art_sys_87: 9.75064194e-07 + art_sys_88: 5.32752229e-06 + art_sys_89: -1.62999024e-17 + art_sys_90: -8.71977394e-06 + art_sys_91: 6.62834511e-20 + art_sys_92: -3.78108412e-17 + art_sys_93: 2.00542565e-17 + art_sys_94: 5.38539523e-06 + art_sys_95: 3.78558683e-18 + art_sys_96: 6.49575611e-22 + art_sys_97: -2.52688223e-21 + art_sys_98: -6.87986042e-18 + art_sys_99: -3.50298559e-19 + art_sys_100: -1.35760896e-16 + art_sys_101: -4.12905514e-18 + art_sys_102: 8.13894316e-18 + art_sys_103: -2.48829451e-17 + art_sys_104: -1.87841708e-19 + art_sys_105: 4.36633753e-05 + art_sys_106: 1.11138098e-18 + art_sys_107: -1.12015654e-17 + art_sys_108: -2.91408828e-05 + art_sys_109: -1.69615613e-04 + art_sys_110: 5.44979999e-16 + art_sys_111: -6.69756588e-17 + art_sys_112: -6.64771174e-17 + art_sys_113: -1.56628113e-16 + art_sys_114: -1.49782669e-04 + art_sys_115: 1.05800862e-17 + art_sys_116: 1.13128629e-17 + art_sys_117: -3.54576663e-05 + art_sys_118: -1.77307344e-17 + art_sys_119: 1.44083180e-15 + art_sys_120: 3.69715390e-18 + art_sys_121: 1.56613423e-06 + art_sys_122: -3.25076790e-16 + art_sys_123: -5.19125071e-16 + art_sys_124: 5.12167391e-18 + art_sys_125: 2.34232514e-05 + art_sys_126: -1.24556903e-16 + art_sys_127: -2.39228145e-13 + art_sys_128: 3.60441990e-17 + art_sys_129: -1.86791854e-05 + art_sys_130: 8.08666735e-11 + art_sys_131: 1.11713302e-05 + art_sys_132: -2.01999951e-15 + art_sys_133: 1.53384515e-12 + art_sys_134: -2.39930292e-16 + art_sys_135: 1.00659335e-15 + art_sys_136: 4.90568804e-06 + art_sys_137: -2.49345244e-10 + art_sys_138: 3.86503272e-15 + art_sys_139: 2.06380827e-11 + art_sys_140: -1.97135880e-06 + art_sys_141: -1.14859821e-12 + art_sys_142: 4.87551928e-15 + art_sys_143: -1.03666080e-10 + art_sys_144: 7.18257346e-07 + art_sys_145: 4.02201818e-14 + art_sys_146: 2.12725848e-10 + art_sys_147: -2.53310412e-07 + art_sys_148: -7.82885473e-08 + art_sys_149: -1.21453206e-12 + art_sys_150: 1.82491819e-10 + art_sys_151: 2.41729017e-10 + art_sys_152: 2.81123368e-08 + art_sys_153: -2.83509436e-10 + art_sys_154: -8.09439348e-19 + art_sys_155: -5.97007025e-09 + art_sys_156: -0.0 + art_sys_157: 9.43212052e-12 art_sys_158: -0.0 - art_sys_159: 3.71842411e-11 - art_sys_160: 3.71842411e-11 - art_sys_161: 5.80427187e-11 - art_sys_162: -1.31230161e-23 - art_sys_163: -0.0 - art_sys_164: -5.12515632e-24 - art_sys_165: -5.47157091e-17 - art_sys_166: 1.75694886e-17 - art_sys_167: -4.80415753e-17 - art_sys_168: 1.33317513e-17 - art_sys_169: 6.34932810e-18 - art_sys_170: 7.31587499e-18 - art_sys_171: 1.22318749e-18 - art_sys_172: 7.10878951e-19 - art_sys_173: -9.53170496e-19 - art_sys_174: 5.60162952e-22 - art_sys_175: 1.08898108e-19 - art_sys_176: 8.39454390e-20 - art_sys_177: -4.25162044e-20 - art_sys_178: -2.86807273e-20 - art_sys_179: -7.72628725e-21 - art_sys_180: 4.03996942e-21 - art_sys_181: 1.93651131e-21 - art_sys_182: 5.00780903e-22 - art_sys_183: 2.11515392e-22 - art_sys_184: 1.30096823e-23 - art_sys_185: -7.60369724e-24 + art_sys_159: -4.78433898e-11 + art_sys_160: 1.09026399e-09 + art_sys_161: -4.88151460e-12 + art_sys_162: -4.88151460e-12 + art_sys_163: 1.31117565e-11 + art_sys_164: 1.31117565e-11 + art_sys_165: -3.51987786e-24 + art_sys_166: 1.76024493e-24 + art_sys_167: 0.0 + art_sys_168: 2.68088370e-18 + art_sys_169: 1.30048587e-18 + art_sys_170: -6.75568729e-19 + art_sys_171: -9.55708379e-20 + art_sys_172: 2.55890006e-19 + art_sys_173: 8.32814498e-20 + art_sys_174: -6.51880505e-20 + art_sys_175: -1.02854391e-20 + art_sys_176: 3.36151529e-20 + art_sys_177: -4.56865888e-22 + art_sys_178: -1.20666412e-21 + art_sys_179: 3.11343549e-22 + art_sys_180: -2.76968433e-23 + art_sys_181: -5.21034661e-21 + art_sys_182: -4.42985564e-22 + art_sys_183: 1.68480160e-23 + art_sys_184: -3.77601853e-23 + art_sys_185: -3.41696624e-23 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -37234,153 +37234,153 @@ bins: art_sys_36: 0.0 art_sys_37: 0.0 art_sys_38: 0.0 - art_sys_39: 4.49681605e-273 - art_sys_40: 3.01949107e-268 - art_sys_41: -4.12284719e-257 - art_sys_42: 1.35977422e-157 - art_sys_43: 1.69129594e-157 - art_sys_44: 9.80265213e-151 - art_sys_45: -1.73716412e-141 - art_sys_46: 4.53418707e-134 - art_sys_47: 3.65378248e-128 - art_sys_48: -3.88895487e-122 - art_sys_49: 1.28143385e-114 - art_sys_50: 1.11643118e-106 - art_sys_51: -8.88899513e-94 - art_sys_52: -4.13473399e-102 - art_sys_53: -3.39973729e-104 - art_sys_54: 3.58658568e-95 - art_sys_55: 1.60576715e-92 - art_sys_56: -9.64227219e-90 - art_sys_57: -2.21499081e-15 - art_sys_58: 1.33157173e-14 - art_sys_59: 5.65367001e-14 - art_sys_60: 9.08000203e-32 - art_sys_61: -3.05109246e-13 - art_sys_62: -2.46858353e-12 - art_sys_63: -1.05130764e-11 - art_sys_64: -2.63616333e-11 - art_sys_65: -7.06652002e-11 - art_sys_66: 5.19869922e-28 - art_sys_67: 3.31832410e-10 - art_sys_68: 4.93151385e-09 - art_sys_69: 1.93566767e-26 - art_sys_70: -2.06465916e-26 - art_sys_71: -5.52620547e-27 - art_sys_72: 2.21361464e-27 - art_sys_73: 2.21118174e-29 - art_sys_74: 1.69916095e-27 + art_sys_39: 0.0 + art_sys_40: 0.0 + art_sys_41: 0.0 + art_sys_42: 0.0 + art_sys_43: 0.0 + art_sys_44: 1.45676285e-220 + art_sys_45: 7.34694026e-214 + art_sys_46: 8.03405836e-164 + art_sys_47: 4.44819825e-169 + art_sys_48: -2.39799404e-161 + art_sys_49: 2.04605367e-152 + art_sys_50: -8.77258932e-145 + art_sys_51: 3.63987870e-134 + art_sys_52: 4.04406229e-151 + art_sys_53: 1.29157277e-147 + art_sys_54: 1.52820848e-142 + art_sys_55: 3.76825666e-139 + art_sys_56: 6.07692477e-136 + art_sys_57: 2.16419459e-57 + art_sys_58: 1.07239584e-43 + art_sys_59: -4.11516441e-55 + art_sys_60: 4.97547484e-52 + art_sys_61: 1.96139878e-37 + art_sys_62: -5.44453840e-52 + art_sys_63: -9.19669825e-42 + art_sys_64: -2.21499081e-15 + art_sys_65: 1.33157173e-14 + art_sys_66: 5.65367001e-14 + art_sys_67: 3.05109246e-13 + art_sys_68: 2.46858353e-12 + art_sys_69: -1.05130764e-11 + art_sys_70: 2.63616333e-11 + art_sys_71: -7.06652002e-11 + art_sys_72: 3.31832410e-10 + art_sys_73: -4.93151385e-09 + art_sys_74: 4.37005286e-28 art_sys_75: -1.38698670e-08 - art_sys_76: -3.05871863e-14 - art_sys_77: -2.41847103e-14 - art_sys_78: -1.19815063e-14 + art_sys_76: -1.74477288e-14 + art_sys_77: 3.56243303e-14 + art_sys_78: 6.27737201e-15 art_sys_79: -6.98739637e-08 - art_sys_80: 9.07784583e-21 - art_sys_81: -2.81103430e-16 - art_sys_82: -4.47618654e-16 - art_sys_83: -4.86731216e-16 - art_sys_84: -1.92571106e-07 - art_sys_85: 5.82693095e-16 - art_sys_86: -7.83640639e-16 - art_sys_87: -3.62393194e-07 + art_sys_80: -3.56657596e-15 + art_sys_81: -1.92571106e-07 + art_sys_82: -4.70425954e-20 + art_sys_83: -9.00488026e-16 + art_sys_84: -2.93362470e-16 + art_sys_85: 2.40748417e-17 + art_sys_86: 2.97249716e-16 + art_sys_87: 3.62393193e-07 art_sys_88: 1.63998589e-07 - art_sys_89: -1.27930564e-06 - art_sys_90: -2.85663834e-21 - art_sys_91: -6.90113093e-19 - art_sys_92: 1.81593693e-20 - art_sys_93: 1.59492352e-18 - art_sys_94: -9.96422146e-21 - art_sys_95: -3.03655251e-21 - art_sys_96: 1.83953403e-06 - art_sys_97: 6.26743613e-22 - art_sys_98: -4.16696858e-21 - art_sys_99: -9.06801954e-21 - art_sys_100: 2.06182508e-20 - art_sys_101: -5.56629455e-22 - art_sys_102: -2.16480140e-06 - art_sys_103: 4.20549321e-18 - art_sys_104: 5.56441686e-21 - art_sys_105: 4.03493227e-05 - art_sys_106: -5.26832801e-21 - art_sys_107: -3.34491473e-21 - art_sys_108: 5.46969081e-20 - art_sys_109: 9.17402508e-20 - art_sys_110: -3.20830671e-06 - art_sys_111: 6.76152552e-23 - art_sys_112: 2.49295055e-17 - art_sys_113: -1.35626803e-04 - art_sys_114: 2.61760238e-20 - art_sys_115: 1.76222457e-18 - art_sys_116: -2.78088629e-19 - art_sys_117: -9.46289042e-05 - art_sys_118: -1.44458067e-20 - art_sys_119: -1.85664004e-15 - art_sys_120: 7.13825725e-20 - art_sys_121: -4.36803886e-17 - art_sys_122: -3.73062175e-19 - art_sys_123: 2.79244611e-14 - art_sys_124: 1.99025269e-18 - art_sys_125: 7.95618689e-18 - art_sys_126: 6.55829610e-17 - art_sys_127: -3.07543969e-17 - art_sys_128: -1.98621903e-11 - art_sys_129: 5.11034325e-11 - art_sys_130: -1.88912804e-11 - art_sys_131: -2.76320660e-11 - art_sys_132: 6.85737063e-16 - art_sys_133: -1.47441627e-13 - art_sys_134: -3.53376412e-10 - art_sys_135: -1.35613692e-13 - art_sys_136: 2.76380349e-09 - art_sys_137: 2.79168621e-12 - art_sys_138: -2.31312878e-09 - art_sys_139: -2.83892078e-11 - art_sys_140: -2.86119049e-20 - art_sys_141: -8.32148962e-10 - art_sys_142: 0.0 - art_sys_143: 8.14349302e-11 - art_sys_144: 4.77954364e-10 - art_sys_145: 8.93664086e-10 - art_sys_146: 2.53220577e-05 - art_sys_147: -2.55184714e-06 - art_sys_148: -1.66280224e-05 - art_sys_149: -1.36520075e-05 - art_sys_150: 7.17684246e-06 - art_sys_151: 3.20795620e-06 - art_sys_152: -1.24955293e-06 - art_sys_153: 4.57404502e-07 - art_sys_154: -1.51984739e-07 - art_sys_155: 4.76002075e-08 - art_sys_156: -1.45689585e-08 - art_sys_157: 6.22292675e-10 + art_sys_89: -6.17916542e-17 + art_sys_90: -1.27930564e-06 + art_sys_91: 1.57775208e-20 + art_sys_92: 6.84461619e-17 + art_sys_93: -1.92008768e-18 + art_sys_94: 1.83953402e-06 + art_sys_95: 3.26706230e-19 + art_sys_96: 6.85199088e-22 + art_sys_97: -1.11946625e-21 + art_sys_98: -2.72045815e-18 + art_sys_99: -1.22690013e-19 + art_sys_100: -4.99547754e-17 + art_sys_101: -1.53584491e-18 + art_sys_102: 6.93055728e-19 + art_sys_103: -9.31055173e-18 + art_sys_104: 3.69499086e-19 + art_sys_105: -2.16422029e-06 + art_sys_106: 3.83722375e-19 + art_sys_107: -1.08434857e-18 + art_sys_108: -4.03494329e-05 + art_sys_109: -3.20877606e-06 + art_sys_110: 8.15219676e-17 + art_sys_111: -3.43315676e-18 + art_sys_112: -4.50033577e-18 + art_sys_113: -2.03373805e-17 + art_sys_114: -1.35626434e-04 + art_sys_115: 3.06512694e-19 + art_sys_116: 3.45357622e-18 + art_sys_117: 9.46285824e-05 + art_sys_118: -2.12543416e-18 + art_sys_119: 4.91336383e-16 + art_sys_120: -6.01182838e-19 + art_sys_121: 2.53216265e-05 + art_sys_122: -4.73740480e-17 + art_sys_123: 1.28394513e-15 + art_sys_124: 1.01909804e-18 + art_sys_125: -2.55188941e-06 + art_sys_126: -8.17103194e-17 + art_sys_127: -3.03615779e-13 + art_sys_128: 1.33298797e-17 + art_sys_129: 1.66283716e-05 + art_sys_130: 7.09950930e-11 + art_sys_131: -1.36519882e-05 + art_sys_132: -7.01733499e-16 + art_sys_133: -1.43720814e-10 + art_sys_134: 8.98882142e-16 + art_sys_135: -3.91388125e-17 + art_sys_136: -7.17601923e-06 + art_sys_137: 4.40410978e-12 + art_sys_138: -3.14986362e-16 + art_sys_139: -1.24968601e-11 + art_sys_140: 3.20900403e-06 + art_sys_141: 1.29902532e-12 + art_sys_142: -2.23677999e-15 + art_sys_143: 2.97906531e-11 + art_sys_144: -1.24686302e-06 + art_sys_145: -4.39678987e-14 + art_sys_146: -2.56663789e-10 + art_sys_147: 4.58084080e-07 + art_sys_148: 1.45431169e-07 + art_sys_149: 1.68681439e-12 + art_sys_150: -2.56434092e-10 + art_sys_151: -4.18620016e-10 + art_sys_152: -5.28650185e-08 + art_sys_153: 4.40451106e-10 + art_sys_154: -5.47752241e-20 + art_sys_155: 1.14255402e-08 + art_sys_156: 0.0 + art_sys_157: -1.42898669e-11 art_sys_158: 0.0 - art_sys_159: -2.88218396e-11 - art_sys_160: -2.88218396e-11 - art_sys_161: -1.10580839e-10 - art_sys_162: 2.52858409e-23 - art_sys_163: 0.0 - art_sys_164: 1.00395474e-23 - art_sys_165: 9.56080269e-17 - art_sys_166: -3.20831649e-17 - art_sys_167: 8.88964779e-17 - art_sys_168: -2.42379099e-17 - art_sys_169: -1.17888029e-17 - art_sys_170: -1.35921725e-17 - art_sys_171: -2.34798099e-18 - art_sys_172: -1.27159601e-18 - art_sys_173: 1.72006406e-18 - art_sys_174: -1.05764615e-21 - art_sys_175: -2.04422979e-19 - art_sys_176: -1.54842936e-19 - art_sys_177: 7.83305481e-20 - art_sys_178: 5.35792718e-20 - art_sys_179: 1.41488717e-20 - art_sys_180: -7.67788746e-21 - art_sys_181: -3.57108401e-21 - art_sys_182: -8.44423311e-22 - art_sys_183: -3.93852160e-22 - art_sys_184: -2.67525184e-23 - art_sys_185: 1.45476072e-23 + art_sys_159: 7.40548510e-11 + art_sys_160: -2.02663697e-09 + art_sys_161: 7.31740583e-12 + art_sys_162: 7.31740583e-12 + art_sys_163: -1.89427716e-11 + art_sys_164: -1.89427716e-11 + art_sys_165: 6.62135526e-24 + art_sys_166: -3.31929674e-24 + art_sys_167: -0.0 + art_sys_168: -2.50979641e-18 + art_sys_169: -1.06016689e-18 + art_sys_170: 1.65048030e-18 + art_sys_171: -2.11561233e-19 + art_sys_172: -5.18116948e-19 + art_sys_173: -2.10020102e-19 + art_sys_174: 1.25916687e-19 + art_sys_175: 2.07580988e-20 + art_sys_176: -6.42975415e-20 + art_sys_177: 2.06777071e-21 + art_sys_178: 1.96886974e-21 + art_sys_179: -6.07232811e-22 + art_sys_180: 5.21003953e-23 + art_sys_181: 9.63396155e-21 + art_sys_182: -5.50745326e-23 + art_sys_183: -2.95160972e-23 + art_sys_184: 7.17840333e-23 + art_sys_185: 6.63242578e-23 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -37524,154 +37524,154 @@ bins: art_sys_35: 0.0 art_sys_36: 0.0 art_sys_37: 0.0 - art_sys_38: 1.01628853e-294 - art_sys_39: 4.19807074e-274 - art_sys_40: 2.81889148e-269 - art_sys_41: -3.84894656e-258 - art_sys_42: 1.64854936e-158 - art_sys_43: 2.05047632e-158 - art_sys_44: 1.18844406e-151 - art_sys_45: -2.10608552e-142 - art_sys_46: 5.49711201e-135 - art_sys_47: 4.42973597e-129 - art_sys_48: -4.71485190e-123 - art_sys_49: 1.55357185e-115 - art_sys_50: 1.35352758e-107 - art_sys_51: -1.07767503e-94 - art_sys_52: -5.01282711e-103 - art_sys_53: -4.12173922e-105 - art_sys_54: 4.34826859e-96 - art_sys_55: 1.94678379e-93 - art_sys_56: -1.16900008e-90 - art_sys_57: -2.68538831e-16 - art_sys_58: 2.20737114e-15 - art_sys_59: 8.16888279e-15 - art_sys_60: 1.25141701e-32 - art_sys_61: -3.62963266e-14 - art_sys_62: -4.94003260e-13 - art_sys_63: -4.34811439e-13 - art_sys_64: -2.95152120e-12 - art_sys_65: -9.75849279e-12 - art_sys_66: -4.40644583e-29 - art_sys_67: -4.94496708e-11 - art_sys_68: 4.51854033e-10 - art_sys_69: 1.48476394e-27 - art_sys_70: -2.08657842e-27 - art_sys_71: -2.74345577e-28 - art_sys_72: 3.30133761e-29 - art_sys_73: -2.06849630e-28 - art_sys_74: 1.32539749e-28 + art_sys_38: 0.0 + art_sys_39: 0.0 + art_sys_40: 0.0 + art_sys_41: 0.0 + art_sys_42: 0.0 + art_sys_43: 0.0 + art_sys_44: 1.79659907e-221 + art_sys_45: 9.06084740e-215 + art_sys_46: 9.74260548e-165 + art_sys_47: 5.39416553e-170 + art_sys_48: -2.90795870e-162 + art_sys_49: 2.48117362e-153 + art_sys_50: -1.06381947e-145 + art_sys_51: 4.41394631e-135 + art_sys_52: 4.90408479e-152 + art_sys_53: 1.56624254e-148 + art_sys_54: 1.85320191e-143 + art_sys_55: 4.56962551e-140 + art_sys_56: 7.36926195e-137 + art_sys_57: 2.62380452e-58 + art_sys_58: 1.30014050e-44 + art_sys_59: -4.98910174e-56 + art_sys_60: 6.03211629e-53 + art_sys_61: 2.37794097e-38 + art_sys_62: -6.60074652e-53 + art_sys_63: -1.11498008e-42 + art_sys_64: -2.68538831e-16 + art_sys_65: 2.20737114e-15 + art_sys_66: 8.16888279e-15 + art_sys_67: 3.62963266e-14 + art_sys_68: 4.94003260e-13 + art_sys_69: -4.34811439e-13 + art_sys_70: 2.95152120e-12 + art_sys_71: -9.75849279e-12 + art_sys_72: -4.94496708e-11 + art_sys_73: -4.51854033e-10 + art_sys_74: 1.67155942e-28 art_sys_75: -1.44051399e-09 - art_sys_76: -9.02978307e-14 - art_sys_77: 1.73089893e-14 - art_sys_78: 1.17780739e-14 + art_sys_76: 7.64416489e-14 + art_sys_77: -4.48328270e-14 + art_sys_78: -2.76948180e-14 art_sys_79: -3.47883648e-09 - art_sys_80: 5.91798770e-22 - art_sys_81: -3.52816019e-15 - art_sys_82: 2.24431926e-16 - art_sys_83: -2.86569179e-15 - art_sys_84: -1.14978580e-08 - art_sys_85: -1.65323319e-16 - art_sys_86: 6.78362560e-16 - art_sys_87: -4.94589995e-08 + art_sys_80: 1.55083421e-15 + art_sys_81: -1.14978580e-08 + art_sys_82: -2.80898236e-21 + art_sys_83: -1.78728153e-15 + art_sys_84: 1.21865772e-15 + art_sys_85: 1.04093435e-16 + art_sys_86: -9.00723860e-16 + art_sys_87: 4.94589995e-08 art_sys_88: -2.64989259e-07 - art_sys_89: 2.00388816e-07 - art_sys_90: 2.57391739e-22 - art_sys_91: -4.12505053e-20 - art_sys_92: 1.13733178e-21 - art_sys_93: 9.52396523e-20 - art_sys_94: -5.84529024e-22 - art_sys_95: -4.87049725e-22 - art_sys_96: -9.42880264e-09 - art_sys_97: -6.61065628e-22 - art_sys_98: -1.92579058e-22 - art_sys_99: -5.35148409e-22 - art_sys_100: -2.03322357e-20 - art_sys_101: 3.71049483e-22 - art_sys_102: -6.05349179e-06 - art_sys_103: 5.64828816e-19 - art_sys_104: -6.13519742e-21 - art_sys_105: 5.12471601e-06 - art_sys_106: 2.24130393e-22 - art_sys_107: 6.12622592e-22 - art_sys_108: -2.62602234e-19 - art_sys_109: 1.13961898e-20 - art_sys_110: 2.95201181e-05 - art_sys_111: 6.81009027e-21 - art_sys_112: -5.84978846e-18 - art_sys_113: -1.60968504e-05 - art_sys_114: 6.73398072e-21 - art_sys_115: -3.66287430e-19 - art_sys_116: -1.92790982e-19 - art_sys_117: -9.69279360e-05 - art_sys_118: 3.55502506e-21 - art_sys_119: 1.41266459e-17 - art_sys_120: 7.35014875e-21 - art_sys_121: 1.94130393e-17 - art_sys_122: -1.21211090e-19 - art_sys_123: 6.19720541e-14 - art_sys_124: -3.27987036e-19 - art_sys_125: -1.58015737e-18 - art_sys_126: 2.25011426e-17 - art_sys_127: 6.21889624e-18 - art_sys_128: -8.46620823e-12 - art_sys_129: 5.81616320e-11 - art_sys_130: 2.85401802e-11 - art_sys_131: 3.64673619e-11 - art_sys_132: -5.98248435e-16 - art_sys_133: 1.40567868e-13 - art_sys_134: 3.25490125e-10 - art_sys_135: 1.24936425e-13 - art_sys_136: -2.56009576e-09 - art_sys_137: -2.59158951e-12 - art_sys_138: 2.15315724e-09 - art_sys_139: 7.84468122e-11 - art_sys_140: 2.65589529e-20 - art_sys_141: 7.35332508e-10 - art_sys_142: -0.0 - art_sys_143: -7.44992917e-11 - art_sys_144: -4.37422755e-10 - art_sys_145: -8.18207416e-10 - art_sys_146: -6.53933679e-05 - art_sys_147: -1.75183395e-05 - art_sys_148: 2.57439541e-06 - art_sys_149: 1.27222719e-05 - art_sys_150: -9.05443402e-06 - art_sys_151: -4.82069861e-06 - art_sys_152: 2.07172095e-06 - art_sys_153: -8.04182350e-07 - art_sys_154: 2.78114405e-07 - art_sys_155: -8.89602142e-08 - art_sys_156: 2.75668200e-08 - art_sys_157: -1.04694818e-09 + art_sys_89: -8.02953024e-17 + art_sys_90: 2.00388816e-07 + art_sys_91: 1.46489404e-21 + art_sys_92: -4.68574340e-17 + art_sys_93: 1.33932030e-17 + art_sys_94: -9.42880260e-09 + art_sys_95: -1.26324791e-19 + art_sys_96: 1.33745744e-22 + art_sys_97: -2.03615544e-22 + art_sys_98: -3.97123414e-19 + art_sys_99: -1.55499936e-20 + art_sys_100: -6.71911427e-18 + art_sys_101: -2.10039543e-19 + art_sys_102: -2.72773925e-19 + art_sys_103: -1.28248779e-18 + art_sys_104: 1.31276310e-19 + art_sys_105: -6.05341929e-06 + art_sys_106: 4.98548071e-20 + art_sys_107: 4.02422975e-19 + art_sys_108: -5.12470723e-06 + art_sys_109: 2.95200886e-05 + art_sys_110: -1.21560836e-17 + art_sys_111: 3.01505546e-18 + art_sys_112: 2.72453846e-18 + art_sys_113: 4.20870115e-18 + art_sys_114: -1.60964920e-05 + art_sys_115: -5.31220219e-19 + art_sys_116: -1.53355324e-19 + art_sys_117: 9.69281295e-05 + art_sys_118: 6.23491858e-19 + art_sys_119: -2.81124651e-18 + art_sys_120: -7.72536059e-19 + art_sys_121: -6.53937152e-05 + art_sys_122: 7.66314711e-18 + art_sys_123: 3.43626201e-16 + art_sys_124: 5.46061686e-20 + art_sys_125: -1.75185101e-05 + art_sys_126: -2.37700686e-17 + art_sys_127: -3.70542018e-14 + art_sys_128: 3.90906324e-19 + art_sys_129: -2.57479587e-06 + art_sys_130: 9.94246812e-12 + art_sys_131: 1.27222583e-05 + art_sys_132: -9.53790438e-19 + art_sys_133: -1.43552057e-10 + art_sys_134: 2.10047946e-16 + art_sys_135: -1.30506805e-16 + art_sys_136: 9.05352772e-06 + art_sys_137: 2.02241757e-10 + art_sys_138: -5.81782253e-16 + art_sys_139: -1.19346303e-11 + art_sys_140: -4.82234661e-06 + art_sys_141: 7.61502101e-13 + art_sys_142: -2.63089815e-15 + art_sys_143: 7.71788628e-11 + art_sys_144: 2.06727637e-06 + art_sys_145: 4.28165288e-15 + art_sys_146: 2.36342954e-10 + art_sys_147: -8.05377797e-07 + art_sys_148: -2.66374259e-07 + art_sys_149: -1.86639965e-12 + art_sys_150: 3.12139550e-10 + art_sys_151: 6.73218153e-10 + art_sys_152: 9.86072315e-08 + art_sys_153: -6.21510712e-10 + art_sys_154: 8.31113368e-20 + art_sys_155: -2.18766955e-08 + art_sys_156: -0.0 + art_sys_157: 1.98802696e-11 art_sys_158: -0.0 - art_sys_159: -1.14618537e-11 - art_sys_160: -1.14618537e-11 - art_sys_161: 2.08667499e-10 - art_sys_162: -4.82073363e-23 - art_sys_163: -0.0 - art_sys_164: -1.94178712e-23 - art_sys_165: -1.63125580e-16 - art_sys_166: 5.75889751e-17 - art_sys_167: -1.57866317e-16 - art_sys_168: 4.31641251e-17 - art_sys_169: 2.16029671e-17 - art_sys_170: 2.48855384e-17 - art_sys_171: 4.24865961e-18 - art_sys_172: 2.40619263e-18 - art_sys_173: -3.07190223e-18 - art_sys_174: 1.98492812e-21 - art_sys_175: 3.77568609e-19 - art_sys_176: 2.81495745e-19 - art_sys_177: -1.42730528e-19 - art_sys_178: -9.84309735e-20 - art_sys_179: -2.83884187e-20 - art_sys_180: 1.43311282e-20 - art_sys_181: 6.51000388e-21 - art_sys_182: 1.48873639e-21 - art_sys_183: 7.24715344e-22 - art_sys_184: 5.61235557e-23 - art_sys_185: -2.78653400e-23 + art_sys_159: -1.04628802e-10 + art_sys_160: 3.72019641e-09 + art_sys_161: -1.07799991e-11 + art_sys_162: -1.07799991e-11 + art_sys_163: 2.02453718e-11 + art_sys_164: 2.02453718e-11 + art_sys_165: -1.23560807e-23 + art_sys_166: 6.21579374e-24 + art_sys_167: 0.0 + art_sys_168: 9.84906943e-19 + art_sys_169: -4.39058985e-19 + art_sys_170: -3.93182975e-18 + art_sys_171: 1.06575593e-18 + art_sys_172: 9.92514621e-19 + art_sys_173: 5.89731280e-19 + art_sys_174: -2.42007660e-19 + art_sys_175: -4.51993384e-20 + art_sys_176: 1.23371738e-19 + art_sys_177: -6.58447689e-21 + art_sys_178: -2.91899357e-21 + art_sys_179: 1.19287416e-21 + art_sys_180: -9.77687360e-23 + art_sys_181: -1.85849593e-20 + art_sys_182: 1.57830449e-21 + art_sys_183: 5.29306511e-23 + art_sys_184: -1.35371227e-22 + art_sys_185: -1.29345817e-22 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -37815,154 +37815,154 @@ bins: art_sys_35: 0.0 art_sys_36: 0.0 art_sys_37: 0.0 - art_sys_38: -1.27036066e-295 - art_sys_39: 2.12094851e-275 - art_sys_40: 1.42416007e-270 - art_sys_41: -1.94456385e-259 - art_sys_42: 1.44819798e-159 - art_sys_43: 1.80127798e-159 - art_sys_44: 1.04401016e-152 - art_sys_45: -1.85012889e-143 - art_sys_46: 4.82903739e-136 - art_sys_47: 3.89138162e-130 - art_sys_48: -4.14184686e-124 - art_sys_49: 1.36476326e-116 - art_sys_50: 1.18903076e-108 - art_sys_51: -9.46703106e-96 - art_sys_52: -4.40360856e-104 - art_sys_53: -3.62081630e-106 - art_sys_54: 3.81981512e-97 - art_sys_55: 1.71018740e-94 - art_sys_56: -1.02692924e-91 - art_sys_57: -2.35902797e-17 - art_sys_58: 2.54129500e-16 - art_sys_59: 9.28334207e-16 - art_sys_60: 1.37827610e-33 - art_sys_61: -3.20866718e-15 - art_sys_62: -5.86549202e-14 - art_sys_63: 1.29029798e-13 - art_sys_64: -3.53848435e-15 - art_sys_65: -2.81517318e-13 - art_sys_66: -2.62765201e-29 - art_sys_67: -2.19238637e-11 - art_sys_68: -3.16627441e-11 - art_sys_69: -1.95881162e-28 - art_sys_70: 8.41915154e-29 - art_sys_71: 9.30110575e-29 - art_sys_72: -5.62847447e-29 - art_sys_73: -4.69612772e-29 - art_sys_74: -1.18868431e-29 + art_sys_38: 0.0 + art_sys_39: 0.0 + art_sys_40: 0.0 + art_sys_41: 0.0 + art_sys_42: 0.0 + art_sys_43: 0.0 + art_sys_44: 1.60778711e-222 + art_sys_45: 8.10860573e-216 + art_sys_46: 8.56095755e-166 + art_sys_47: 4.73992529e-171 + art_sys_48: -2.55526214e-163 + art_sys_49: 2.18024040e-154 + art_sys_50: -9.34792372e-147 + art_sys_51: 3.87859356e-136 + art_sys_52: 4.30928479e-153 + art_sys_53: 1.37627824e-149 + art_sys_54: 1.62843327e-144 + art_sys_55: 4.01539096e-141 + art_sys_56: 6.47546889e-138 + art_sys_57: 2.30492860e-59 + art_sys_58: 1.14213197e-45 + art_sys_59: -4.38276678e-57 + art_sys_60: 5.29902178e-54 + art_sys_61: 2.08894531e-39 + art_sys_62: -5.79859038e-54 + art_sys_63: -9.79474441e-44 + art_sys_64: -2.35902797e-17 + art_sys_65: 2.54129500e-16 + art_sys_66: 9.28334207e-16 + art_sys_67: 3.20866718e-15 + art_sys_68: 5.86549202e-14 + art_sys_69: 1.29029798e-13 + art_sys_70: 3.53848435e-15 + art_sys_71: -2.81517318e-13 + art_sys_72: -2.19238637e-11 + art_sys_73: 3.16627441e-11 + art_sys_74: 2.88171221e-29 art_sys_75: 1.48607705e-10 - art_sys_76: 1.10726584e-13 - art_sys_77: -3.31819220e-14 - art_sys_78: 1.76381529e-14 + art_sys_76: -1.39045126e-14 + art_sys_77: -2.68050659e-14 + art_sys_78: -1.22612702e-14 art_sys_79: 7.53248561e-10 - art_sys_80: -1.76419638e-22 - art_sys_81: 9.63882570e-15 - art_sys_82: -3.26023861e-15 - art_sys_83: 7.94692273e-16 - art_sys_84: 3.14910430e-09 - art_sys_85: 1.22279861e-15 - art_sys_86: -1.65471766e-15 - art_sys_87: 6.91832720e-10 - art_sys_88: -8.53019344e-08 - art_sys_89: 1.21813743e-07 - art_sys_90: 1.98438139e-22 - art_sys_91: 1.12772788e-20 - art_sys_92: -2.86062895e-22 - art_sys_93: -2.60789998e-20 - art_sys_94: 1.65647660e-22 - art_sys_95: -6.99661978e-24 - art_sys_96: -1.32152217e-07 - art_sys_97: -2.23785322e-22 - art_sys_98: 8.79760336e-23 - art_sys_99: 1.51600388e-22 - art_sys_100: -6.87719395e-21 - art_sys_101: 1.34419466e-22 - art_sys_102: -1.11818047e-06 - art_sys_103: -1.07761200e-20 - art_sys_104: -2.10153517e-21 - art_sys_105: -3.74089921e-06 - art_sys_106: 5.24284342e-22 - art_sys_107: 4.31797774e-22 - art_sys_108: -7.96737069e-20 - art_sys_109: -4.01289929e-22 - art_sys_110: 7.35825781e-06 - art_sys_111: 2.07111869e-21 - art_sys_112: -2.94061395e-18 - art_sys_113: 2.00775158e-05 - art_sys_114: -1.45477679e-21 - art_sys_115: -2.09501525e-19 - art_sys_116: -4.44713779e-20 - art_sys_117: -1.57470196e-05 - art_sys_118: 5.72763365e-22 - art_sys_119: 1.34463204e-16 - art_sys_120: -8.46100598e-22 - art_sys_121: 7.81313003e-18 - art_sys_122: -2.81340387e-20 - art_sys_123: 1.02771349e-14 - art_sys_124: -1.89952445e-19 - art_sys_125: -8.86862319e-19 - art_sys_126: 2.19319776e-18 - art_sys_127: -3.91453868e-18 - art_sys_128: 9.80267271e-13 - art_sys_129: 1.38464721e-11 - art_sys_130: -1.92077566e-11 - art_sys_131: -3.77775672e-11 - art_sys_132: 6.95778484e-17 - art_sys_133: -2.01901641e-14 - art_sys_134: -5.09228225e-11 - art_sys_135: -2.92343392e-14 - art_sys_136: 5.93870713e-10 - art_sys_137: 6.10162143e-13 - art_sys_138: -5.05264099e-10 - art_sys_139: -1.64357769e-10 - art_sys_140: -5.60008468e-21 - art_sys_141: -6.65444725e-11 - art_sys_142: 0.0 - art_sys_143: 1.45502860e-11 - art_sys_144: 8.58022788e-11 - art_sys_145: 1.57177925e-10 - art_sys_146: -6.80385188e-05 - art_sys_147: 4.70058243e-05 - art_sys_148: 1.12541626e-05 - art_sys_149: -3.03169237e-06 - art_sys_150: 8.79847864e-06 - art_sys_151: 6.23687368e-06 - art_sys_152: -3.14865729e-06 - art_sys_153: 1.33886598e-06 - art_sys_154: -4.91212815e-07 - art_sys_155: 1.62473657e-07 - art_sys_156: -5.13248180e-08 - art_sys_157: 1.57074221e-09 + art_sys_80: -1.66444552e-16 + art_sys_81: 3.14910429e-09 + art_sys_82: 7.69411037e-22 + art_sys_83: -6.59657618e-17 + art_sys_84: 1.41946038e-15 + art_sys_85: -9.93730431e-16 + art_sys_86: 9.51656229e-16 + art_sys_87: -6.91832720e-10 + art_sys_88: -8.53019343e-08 + art_sys_89: 5.12199170e-17 + art_sys_90: 1.21813743e-07 + art_sys_91: -1.55602437e-22 + art_sys_92: 5.38594665e-17 + art_sys_93: 1.64289669e-17 + art_sys_94: -1.32152216e-07 + art_sys_95: -5.11647233e-20 + art_sys_96: 7.40717708e-24 + art_sys_97: -1.82193932e-23 + art_sys_98: -2.44196173e-21 + art_sys_99: 5.89192267e-22 + art_sys_100: 1.27059904e-19 + art_sys_101: 2.77413407e-21 + art_sys_102: -1.09666060e-19 + art_sys_103: 1.40362434e-20 + art_sys_104: 2.47244196e-20 + art_sys_105: -1.11823464e-06 + art_sys_106: -8.80149254e-22 + art_sys_107: 1.75508338e-19 + art_sys_108: 3.74091465e-06 + art_sys_109: 7.35833397e-06 + art_sys_110: -7.58089820e-18 + art_sys_111: 1.04747189e-18 + art_sys_112: 1.01237469e-18 + art_sys_113: 2.23415562e-18 + art_sys_114: 2.00775749e-05 + art_sys_115: -1.71529960e-19 + art_sys_116: -2.77114359e-19 + art_sys_117: 1.57473773e-05 + art_sys_118: 3.21136812e-19 + art_sys_119: -3.53566395e-17 + art_sys_120: -1.22433888e-19 + art_sys_121: -6.80387199e-05 + art_sys_122: 4.56943065e-18 + art_sys_123: -7.74376747e-17 + art_sys_124: -6.32103002e-20 + art_sys_125: 4.70063663e-05 + art_sys_126: -3.55593215e-19 + art_sys_127: 2.99263403e-14 + art_sys_128: -8.64916617e-19 + art_sys_129: -1.12539978e-05 + art_sys_130: -9.46915173e-12 + art_sys_131: -3.03169400e-06 + art_sys_132: 4.94439991e-17 + art_sys_133: -1.70788940e-10 + art_sys_134: 1.04157483e-16 + art_sys_135: -3.13277655e-17 + art_sys_136: -8.79786319e-06 + art_sys_137: -4.81468349e-10 + art_sys_138: 8.30669058e-17 + art_sys_139: 4.02823400e-11 + art_sys_140: 6.23918607e-06 + art_sys_141: -2.59202410e-12 + art_sys_142: 8.04105740e-15 + art_sys_143: -2.20068981e-10 + art_sys_144: -3.14193219e-06 + art_sys_145: 2.60845982e-14 + art_sys_146: -5.14790414e-11 + art_sys_147: 1.34085744e-06 + art_sys_148: 4.71057382e-07 + art_sys_149: 1.55089891e-12 + art_sys_150: -2.76508044e-10 + art_sys_151: -9.47210283e-10 + art_sys_152: -1.79591426e-07 + art_sys_153: 7.26508682e-10 + art_sys_154: -1.25406189e-20 + art_sys_155: 4.14247880e-08 + art_sys_156: 0.0 + art_sys_157: -2.21861849e-11 art_sys_158: 0.0 - art_sys_159: 1.08925247e-10 - art_sys_160: 1.08925247e-10 - art_sys_161: -3.84284023e-10 - art_sys_162: 8.95998538e-23 - art_sys_163: 0.0 - art_sys_164: 3.65208756e-23 - art_sys_165: 2.64867897e-16 - art_sys_166: -9.89467614e-17 - art_sys_167: 2.71834304e-16 - art_sys_168: -7.35433606e-17 - art_sys_169: -3.81161765e-17 - art_sys_170: -4.39875195e-17 - art_sys_171: -7.46243138e-18 - art_sys_172: -4.29562081e-18 - art_sys_173: 5.27431249e-18 - art_sys_174: -3.64662275e-21 - art_sys_175: -6.71909633e-19 - art_sys_176: -5.08168200e-19 - art_sys_177: 2.54301543e-19 - art_sys_178: 1.77036806e-19 - art_sys_179: 5.10886669e-20 - art_sys_180: -2.47170386e-20 - art_sys_181: -1.15819108e-20 - art_sys_182: -2.63802226e-21 - art_sys_183: -1.29312818e-21 - art_sys_184: -1.19561856e-22 - art_sys_185: 5.29801210e-23 + art_sys_159: 1.18615748e-10 + art_sys_160: -6.64435552e-09 + art_sys_161: 1.54216932e-11 + art_sys_162: 1.54216932e-11 + art_sys_163: 2.04165845e-12 + art_sys_164: 2.04165845e-12 + art_sys_165: 2.25158415e-23 + art_sys_166: -1.13828132e-23 + art_sys_167: -0.0 + art_sys_168: 4.81627854e-18 + art_sys_169: 5.10565549e-18 + art_sys_170: 8.97765607e-18 + art_sys_171: -3.24895192e-18 + art_sys_172: -1.93092027e-18 + art_sys_173: -1.40972015e-18 + art_sys_174: 4.37170333e-19 + art_sys_175: 1.03071743e-19 + art_sys_176: -2.34937811e-19 + art_sys_177: 2.09244505e-20 + art_sys_178: 3.59099537e-21 + art_sys_179: -2.33354189e-21 + art_sys_180: 1.81622899e-22 + art_sys_181: 3.65019713e-20 + art_sys_182: -4.00799825e-21 + art_sys_183: -1.14269821e-22 + art_sys_184: 2.49021175e-22 + art_sys_185: 2.50779169e-22 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -38106,154 +38106,154 @@ bins: art_sys_35: 0.0 art_sys_36: 0.0 art_sys_37: 0.0 - art_sys_38: 7.93975415e-297 - art_sys_39: 1.13742447e-278 - art_sys_40: 7.63738996e-274 - art_sys_41: -1.04284185e-262 - art_sys_42: 1.08848322e-160 - art_sys_43: 1.35386244e-160 - art_sys_44: 7.84690735e-154 - art_sys_45: -1.39057938e-144 - art_sys_46: 3.62956324e-137 - art_sys_47: 2.92480976e-131 - art_sys_48: -3.11306248e-125 - art_sys_49: 1.02577267e-117 - art_sys_50: 8.93689986e-110 - art_sys_51: -7.11553570e-97 - art_sys_52: -3.30980576e-105 - art_sys_53: -2.72144958e-107 - art_sys_54: 2.87101951e-98 - art_sys_55: 1.28539765e-95 - art_sys_56: -7.71852510e-93 - art_sys_57: -1.77307418e-18 - art_sys_58: 2.39221073e-17 - art_sys_59: 8.71534268e-17 - art_sys_60: 6.93919639e-35 - art_sys_61: -1.64769873e-16 - art_sys_62: -4.06652585e-15 - art_sys_63: 3.74959397e-14 - art_sys_64: 6.03079124e-14 - art_sys_65: 1.42407827e-13 - art_sys_66: -4.71784297e-30 - art_sys_67: -3.67348290e-12 - art_sys_68: -1.66336433e-11 - art_sys_69: -7.45357381e-29 - art_sys_70: 6.33966178e-29 - art_sys_71: 2.60647287e-29 - art_sys_72: -1.28968316e-29 - art_sys_73: -1.14029000e-29 - art_sys_74: -5.69993539e-30 + art_sys_38: 0.0 + art_sys_39: 0.0 + art_sys_40: 0.0 + art_sys_41: 0.0 + art_sys_42: 0.0 + art_sys_43: 0.0 + art_sys_44: 1.23197978e-223 + art_sys_45: 6.21328421e-217 + art_sys_46: 6.43643304e-167 + art_sys_47: 3.56364478e-172 + art_sys_48: -1.92113716e-164 + art_sys_49: 1.63918244e-155 + art_sys_50: -7.02810226e-148 + art_sys_51: 2.91606489e-137 + art_sys_52: 3.23987391e-154 + art_sys_53: 1.03473504e-150 + art_sys_54: 1.22431418e-145 + art_sys_55: 3.01891405e-142 + art_sys_56: 4.86848833e-139 + art_sys_57: 1.73241246e-60 + art_sys_58: 8.58440325e-47 + art_sys_59: -3.29414099e-58 + art_sys_60: 3.98280943e-55 + art_sys_61: 1.57007678e-40 + art_sys_62: -4.35828507e-55 + art_sys_63: -7.36184940e-45 + art_sys_64: -1.77307418e-18 + art_sys_65: 2.39221073e-17 + art_sys_66: 8.71534268e-17 + art_sys_67: 1.64769873e-16 + art_sys_68: 4.06652585e-15 + art_sys_69: 3.74959397e-14 + art_sys_70: -6.03079124e-14 + art_sys_71: 1.42407827e-13 + art_sys_72: -3.67348290e-12 + art_sys_73: 1.66336433e-11 + art_sys_74: 2.52167582e-30 art_sys_75: 7.58073353e-11 - art_sys_76: -7.80480878e-14 - art_sys_77: 2.55466757e-14 - art_sys_78: 5.59187235e-15 + art_sys_76: 3.02595765e-14 + art_sys_77: -2.70637172e-14 + art_sys_78: -7.59479017e-15 art_sys_79: 1.96359933e-10 - art_sys_80: -5.77631421e-23 - art_sys_81: -1.31801765e-14 - art_sys_82: 3.04155073e-15 - art_sys_83: -1.27843754e-15 - art_sys_84: 9.81752275e-10 - art_sys_85: -2.23839613e-15 - art_sys_86: 3.16007829e-15 - art_sys_87: 1.35164566e-09 + art_sys_80: -9.05950401e-15 + art_sys_81: 9.81752275e-10 + art_sys_82: 2.39880181e-22 + art_sys_83: -1.48112107e-15 + art_sys_84: -2.72797003e-15 + art_sys_85: 2.14617334e-15 + art_sys_86: -1.87642159e-15 + art_sys_87: -1.35164566e-09 art_sys_88: -1.39177891e-08 - art_sys_89: 2.31601951e-08 - art_sys_90: 4.57831974e-23 - art_sys_91: 3.51761043e-21 - art_sys_92: -9.14407213e-23 - art_sys_93: -8.13078212e-21 - art_sys_94: 5.11632024e-23 - art_sys_95: 1.05369085e-23 - art_sys_96: -2.85828868e-08 - art_sys_97: -3.72521788e-23 - art_sys_98: 2.47323826e-23 - art_sys_99: 4.68318833e-23 - art_sys_100: -1.13050108e-21 - art_sys_101: 2.29006863e-23 - art_sys_102: 3.11279646e-07 - art_sys_103: -1.61577112e-20 - art_sys_104: -3.81395656e-22 - art_sys_105: -1.30860914e-06 - art_sys_106: 5.93604021e-23 - art_sys_107: -4.49943002e-23 - art_sys_108: -1.31429247e-20 - art_sys_109: -2.14213604e-22 - art_sys_110: -1.94751484e-06 - art_sys_111: 3.27169073e-22 - art_sys_112: -5.40815115e-19 - art_sys_113: 6.85500795e-06 - art_sys_114: -6.74436710e-22 - art_sys_115: -3.87926611e-20 - art_sys_116: -6.19478797e-21 - art_sys_117: 1.26605919e-05 - art_sys_118: -6.64049556e-22 - art_sys_119: 2.87418003e-17 - art_sys_120: -1.46994660e-22 - art_sys_121: 1.35986329e-18 - art_sys_122: -9.02120037e-21 - art_sys_123: -3.24892850e-15 - art_sys_124: -3.60514814e-20 - art_sys_125: -2.09477986e-19 - art_sys_126: -3.17093338e-18 - art_sys_127: -6.15472181e-18 - art_sys_128: 1.40297380e-12 - art_sys_129: -7.36190139e-12 - art_sys_130: -3.70203210e-11 - art_sys_131: -4.99947134e-11 - art_sys_132: 3.67487262e-16 - art_sys_133: -8.94972361e-14 - art_sys_134: -2.05254899e-10 - art_sys_135: -7.93234100e-14 - art_sys_136: 1.62751312e-09 - art_sys_137: 1.63331829e-12 - art_sys_138: -1.35728299e-09 - art_sys_139: 2.19218186e-10 - art_sys_140: -1.81336332e-20 - art_sys_141: -6.53373681e-10 - art_sys_142: 0.0 - art_sys_143: 5.19877113e-11 - art_sys_144: 3.04577240e-10 - art_sys_145: 5.75869894e-10 - art_sys_146: -1.11224997e-05 - art_sys_147: 4.64125159e-05 - art_sys_148: -3.38436858e-05 - art_sys_149: -7.91930985e-06 - art_sys_150: -2.71539507e-06 - art_sys_151: -6.40668620e-06 - art_sys_152: 4.19831767e-06 - art_sys_153: -2.07546310e-06 - art_sys_154: 8.35472214e-07 - art_sys_155: -2.90725411e-07 - art_sys_156: 9.47792958e-08 - art_sys_157: -1.86391478e-09 + art_sys_89: -1.06837090e-16 + art_sys_90: 2.31601951e-08 + art_sys_91: -7.01581236e-23 + art_sys_92: -3.17946138e-17 + art_sys_93: -5.74181513e-17 + art_sys_94: -2.85828867e-08 + art_sys_95: -9.13122419e-21 + art_sys_96: -1.55694863e-24 + art_sys_97: 3.33051388e-25 + art_sys_98: 8.95154252e-21 + art_sys_99: 5.13237476e-22 + art_sys_100: 1.91192989e-19 + art_sys_101: 5.70467618e-21 + art_sys_102: -1.95149333e-20 + art_sys_103: 3.41493672e-20 + art_sys_104: 2.56875442e-21 + art_sys_105: 3.11260862e-07 + art_sys_106: -1.42206536e-21 + art_sys_107: 3.11781756e-20 + art_sys_108: 1.30861107e-06 + art_sys_109: -1.94749315e-06 + art_sys_110: -1.44679275e-18 + art_sys_111: 1.74959078e-19 + art_sys_112: 1.73182389e-19 + art_sys_113: 4.14924959e-19 + art_sys_114: 6.85496085e-06 + art_sys_115: -2.82954224e-20 + art_sys_116: -4.84066625e-20 + art_sys_117: -1.26605068e-05 + art_sys_118: 5.93648281e-20 + art_sys_119: -7.61938745e-18 + art_sys_120: 4.74925845e-20 + art_sys_121: -1.11225969e-05 + art_sys_122: 8.49273028e-19 + art_sys_123: -4.81666950e-17 + art_sys_124: -3.62479097e-20 + art_sys_125: 4.64130227e-05 + art_sys_126: 2.94503808e-18 + art_sys_127: 9.89956814e-15 + art_sys_128: -2.39665801e-19 + art_sys_129: 3.38437503e-05 + art_sys_130: -3.54455518e-12 + art_sys_131: -7.91928980e-06 + art_sys_132: 1.11559994e-17 + art_sys_133: -9.98048637e-11 + art_sys_134: 9.29679170e-17 + art_sys_135: 5.30779595e-21 + art_sys_136: 2.71598838e-06 + art_sys_137: -4.91635272e-10 + art_sys_138: 1.88131826e-16 + art_sys_139: 2.39652688e-11 + art_sys_140: -6.40943158e-06 + art_sys_141: -2.42054811e-12 + art_sys_142: 7.58784864e-15 + art_sys_143: -2.09819467e-10 + art_sys_144: 4.18938535e-06 + art_sys_145: 1.75518912e-14 + art_sys_146: -1.37208428e-10 + art_sys_147: -2.07855148e-06 + art_sys_148: -8.02547579e-07 + art_sys_149: -7.99041978e-13 + art_sys_150: 1.56815766e-10 + art_sys_151: 1.02724436e-09 + art_sys_152: 3.20157470e-07 + art_sys_153: -6.58994266e-10 + art_sys_154: 2.15432574e-20 + art_sys_155: -7.83210739e-08 + art_sys_156: -0.0 + art_sys_157: 1.95741591e-11 art_sys_158: -0.0 - art_sys_159: -1.88145877e-10 - art_sys_160: -1.88145877e-10 - art_sys_161: 6.93193100e-10 - art_sys_162: -1.62371786e-22 - art_sys_163: -0.0 - art_sys_164: -6.64973579e-23 - art_sys_165: -4.16086233e-16 - art_sys_166: 1.63820329e-16 - art_sys_167: -4.39950807e-16 - art_sys_168: 1.19679662e-16 - art_sys_169: 6.47405513e-17 - art_sys_170: 7.47836979e-17 - art_sys_171: 1.29615466e-17 - art_sys_172: 7.76199253e-18 - art_sys_173: -8.73451461e-18 - art_sys_174: 6.59569136e-21 - art_sys_175: 1.15791106e-18 - art_sys_176: 8.81237658e-19 - art_sys_177: -4.36652149e-19 - art_sys_178: -3.06198671e-19 - art_sys_179: -9.04175190e-20 - art_sys_180: 4.25348179e-20 - art_sys_181: 1.99541585e-20 - art_sys_182: 4.68779800e-21 - art_sys_183: 2.23782534e-21 - art_sys_184: 2.58317444e-22 - art_sys_185: -1.01228200e-22 + art_sys_159: -9.94016633e-11 + art_sys_160: 1.15878007e-08 + art_sys_161: -2.42584524e-11 + art_sys_162: -2.42584524e-11 + art_sys_163: -9.99762420e-11 + art_sys_164: -9.99762420e-11 + art_sys_165: -4.01993432e-23 + art_sys_166: 2.04592115e-23 + art_sys_167: 0.0 + art_sys_168: -1.48411022e-17 + art_sys_169: -1.40469261e-17 + art_sys_170: -2.00773949e-17 + art_sys_171: 7.48184263e-18 + art_sys_172: 3.70245667e-18 + art_sys_173: 3.38088301e-18 + art_sys_174: -8.22440924e-19 + art_sys_175: -2.30172209e-19 + art_sys_176: 4.48248147e-19 + art_sys_177: -5.11324295e-20 + art_sys_178: -1.87988588e-21 + art_sys_179: 4.59139886e-21 + art_sys_180: -3.39978651e-22 + art_sys_181: -7.15745761e-20 + art_sys_182: 8.95346119e-21 + art_sys_183: 2.33300100e-22 + art_sys_184: -4.39656571e-22 + art_sys_185: -4.86143600e-22 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -38397,154 +38397,154 @@ bins: art_sys_35: 0.0 art_sys_36: 0.0 art_sys_37: 0.0 - art_sys_38: -4.96234635e-298 - art_sys_39: -1.25963618e-277 - art_sys_40: -8.45811756e-273 - art_sys_41: 1.15488107e-261 - art_sys_42: 7.87353098e-162 - art_sys_43: 9.79314856e-162 - art_sys_44: 5.67605152e-155 - art_sys_45: -1.00587401e-145 - art_sys_46: 2.62544045e-138 - art_sys_47: 2.11565782e-132 - art_sys_48: -2.25183021e-126 - art_sys_49: 7.41991496e-119 - art_sys_50: 6.46449636e-111 - art_sys_51: -5.14701467e-98 - art_sys_52: -2.39414424e-106 - art_sys_53: -1.96855746e-108 - art_sys_54: 2.07674870e-99 - art_sys_55: 9.29790932e-97 - art_sys_56: -5.58318636e-94 - art_sys_57: -1.28255124e-19 - art_sys_58: 2.01674009e-18 - art_sys_59: 7.14610663e-18 - art_sys_60: -1.51818258e-36 - art_sys_61: 4.49356031e-18 - art_sys_62: -4.09662878e-17 - art_sys_63: 6.18275584e-15 - art_sys_64: 1.31230127e-14 - art_sys_65: 3.48551495e-14 - art_sys_66: -5.18978696e-31 - art_sys_67: -3.78360604e-13 - art_sys_68: -2.94029784e-12 - art_sys_69: -1.21953144e-29 - art_sys_70: 1.18691552e-29 - art_sys_71: 3.81964932e-30 - art_sys_72: -1.70383253e-30 - art_sys_73: -4.67161684e-32 - art_sys_74: -1.05854587e-30 + art_sys_38: 0.0 + art_sys_39: 0.0 + art_sys_40: 0.0 + art_sys_41: 0.0 + art_sys_42: 0.0 + art_sys_43: 0.0 + art_sys_44: 9.05473198e-225 + art_sys_45: 4.56660278e-218 + art_sys_46: 4.65692313e-168 + art_sys_47: 2.57838771e-173 + art_sys_48: -1.38999163e-165 + art_sys_49: 1.18599022e-156 + art_sys_50: -5.08501087e-149 + art_sys_51: 2.10984717e-138 + art_sys_52: 2.34413124e-155 + art_sys_53: 7.48657136e-152 + art_sys_54: 8.85822469e-147 + art_sys_55: 2.18426116e-143 + art_sys_56: 3.52247523e-140 + art_sys_57: 1.25313864e-61 + art_sys_58: 6.20951859e-48 + art_sys_59: -2.38281324e-59 + art_sys_60: 2.88096079e-56 + art_sys_61: 1.13571330e-41 + art_sys_62: -3.15258766e-56 + art_sys_63: -5.32518562e-46 + art_sys_64: -1.28255124e-19 + art_sys_65: 2.01674009e-18 + art_sys_66: 7.14610663e-18 + art_sys_67: -4.49356031e-18 + art_sys_68: 4.09662878e-17 + art_sys_69: 6.18275584e-15 + art_sys_70: -1.31230127e-14 + art_sys_71: 3.48551495e-14 + art_sys_72: -3.78360604e-13 + art_sys_73: 2.94029784e-12 + art_sys_74: 2.94385765e-32 art_sys_75: 1.40456897e-11 - art_sys_76: 3.64351441e-14 - art_sys_77: -1.94859860e-14 - art_sys_78: 1.91532326e-15 + art_sys_76: 1.59741284e-14 + art_sys_77: 3.51801613e-14 + art_sys_78: 1.12163414e-14 art_sys_79: 2.45084184e-11 - art_sys_80: -9.00081334e-24 - art_sys_81: 2.17642682e-14 - art_sys_82: -4.02237437e-15 - art_sys_83: 2.09553036e-15 - art_sys_84: 1.47004730e-10 - art_sys_85: 4.33335751e-15 - art_sys_86: -4.27675083e-15 - art_sys_87: 1.95622703e-10 - art_sys_88: -1.44654576e-09 - art_sys_89: 1.84421450e-09 - art_sys_90: 7.65277013e-24 - art_sys_91: 5.26694857e-22 - art_sys_92: -1.37127020e-23 - art_sys_93: -1.21749323e-21 - art_sys_94: 7.63789821e-24 - art_sys_95: 1.39130251e-24 - art_sys_96: 6.42921534e-10 - art_sys_97: -3.76292840e-24 - art_sys_98: 3.51313947e-24 - art_sys_99: 6.88920094e-24 - art_sys_100: -1.13265605e-22 - art_sys_101: 2.31986521e-24 - art_sys_102: 1.57724941e-07 - art_sys_103: -2.32950265e-21 - art_sys_104: -4.77013430e-23 - art_sys_105: 4.51913174e-08 - art_sys_106: -3.42321297e-23 - art_sys_107: -5.16384241e-23 - art_sys_108: -1.53023880e-21 - art_sys_109: 1.18389346e-23 - art_sys_110: -1.18391887e-06 - art_sys_111: 2.72193304e-23 - art_sys_112: -4.59178475e-20 - art_sys_113: -9.43610361e-07 - art_sys_114: 1.44919259e-22 - art_sys_115: -2.13114968e-21 - art_sys_116: -6.89770280e-22 - art_sys_117: 5.20207872e-06 - art_sys_118: -2.07383593e-22 - art_sys_119: -7.51377979e-19 - art_sys_120: 5.92930603e-23 - art_sys_121: 1.25540501e-19 - art_sys_122: -1.56022551e-21 - art_sys_123: -1.27381618e-15 - art_sys_124: -3.18705362e-21 - art_sys_125: -2.17964487e-20 - art_sys_126: -1.36229896e-18 - art_sys_127: 6.97131439e-18 - art_sys_128: 2.08152428e-13 - art_sys_129: -4.10639605e-12 - art_sys_130: -1.73588054e-12 - art_sys_131: 6.31660941e-11 - art_sys_132: -9.68991892e-16 - art_sys_133: 1.97997839e-13 - art_sys_134: 5.84630345e-10 - art_sys_135: 2.38517022e-13 - art_sys_136: -4.88741036e-09 - art_sys_137: -4.95156996e-12 - art_sys_138: 4.11635413e-09 - art_sys_139: -1.80888375e-10 - art_sys_140: 5.26375587e-20 - art_sys_141: 1.64788103e-09 - art_sys_142: -0.0 - art_sys_143: -1.49263010e-10 - art_sys_144: -8.75557738e-10 - art_sys_145: -1.64474605e-09 - art_sys_146: 8.88831198e-06 - art_sys_147: 7.35536288e-06 - art_sys_148: -3.33094864e-05 - art_sys_149: 2.43086691e-05 - art_sys_150: -4.37037901e-06 - art_sys_151: 2.45623362e-06 - art_sys_152: -4.30888355e-06 - art_sys_153: 2.71661741e-06 - art_sys_154: -1.27893394e-06 - art_sys_155: 4.83189213e-07 - art_sys_156: -1.65652167e-07 - art_sys_157: 4.65893471e-10 + art_sys_80: 1.20734786e-14 + art_sys_81: 1.47004730e-10 + art_sys_82: 3.59205401e-23 + art_sys_83: 7.19256764e-16 + art_sys_84: 1.17978027e-15 + art_sys_85: -2.11800939e-15 + art_sys_86: 3.33108537e-15 + art_sys_87: -1.95622702e-10 + art_sys_88: -1.44654575e-09 + art_sys_89: 2.97583360e-16 + art_sys_90: 1.84421450e-09 + art_sys_91: -1.05180319e-23 + art_sys_92: 1.19830893e-16 + art_sys_93: 1.22513172e-16 + art_sys_94: 6.42921531e-10 + art_sys_95: -9.84359784e-22 + art_sys_96: -2.51125738e-25 + art_sys_97: 4.32839379e-25 + art_sys_98: 1.34608453e-21 + art_sys_99: 7.17829355e-23 + art_sys_100: 2.72485380e-20 + art_sys_101: 8.29266089e-22 + art_sys_102: -2.11280290e-21 + art_sys_103: 4.98819619e-21 + art_sys_104: 8.06132956e-23 + art_sys_105: 1.57725632e-07 + art_sys_106: -2.47437539e-22 + art_sys_107: 2.49589288e-21 + art_sys_108: -4.51923320e-08 + art_sys_109: -1.18392333e-06 + art_sys_110: -1.14382371e-19 + art_sys_111: 1.73501318e-20 + art_sys_112: 1.70044829e-20 + art_sys_113: 3.44769269e-20 + art_sys_114: -9.43630111e-07 + art_sys_115: -2.83580317e-21 + art_sys_116: 4.44602198e-21 + art_sys_117: -5.20212024e-06 + art_sys_118: 2.86957506e-21 + art_sys_119: 1.79564128e-19 + art_sys_120: 2.18939119e-20 + art_sys_121: 8.88830615e-06 + art_sys_122: 6.10497527e-20 + art_sys_123: -3.24803490e-18 + art_sys_124: -7.46597519e-21 + art_sys_125: 7.35543375e-06 + art_sys_126: 1.02093086e-18 + art_sys_127: -8.51617161e-16 + art_sys_128: -1.13527319e-20 + art_sys_129: 3.33085008e-05 + art_sys_130: 3.46876189e-13 + art_sys_131: 2.43086528e-05 + art_sys_132: -1.04797347e-19 + art_sys_133: -6.14196965e-12 + art_sys_134: 1.09755265e-17 + art_sys_135: 2.31976884e-18 + art_sys_136: 4.36911441e-06 + art_sys_137: -7.94760739e-11 + art_sys_138: 3.19335907e-17 + art_sys_139: -9.05623409e-12 + art_sys_140: 2.45835262e-06 + art_sys_141: -3.86818983e-13 + art_sys_142: 1.10362928e-15 + art_sys_143: -2.65299498e-11 + art_sys_144: -4.29979925e-06 + art_sys_145: 5.76896735e-14 + art_sys_146: 4.52721243e-10 + art_sys_147: 2.72065414e-06 + art_sys_148: 1.23128371e-06 + art_sys_149: -1.21211921e-12 + art_sys_150: 1.50701899e-10 + art_sys_151: -4.73067165e-10 + art_sys_152: -5.29387978e-07 + art_sys_153: 7.88807668e-11 + art_sys_154: 2.48921081e-21 + art_sys_155: 1.41319089e-07 + art_sys_156: 0.0 + art_sys_157: 3.98123955e-12 art_sys_158: 0.0 - art_sys_159: 2.24943099e-10 - art_sys_160: 2.24943099e-10 - art_sys_161: -1.18013144e-09 - art_sys_162: 2.77810969e-22 - art_sys_163: 0.0 - art_sys_164: 1.14085874e-22 - art_sys_165: 5.68579024e-16 - art_sys_166: -2.35263717e-16 - art_sys_167: 6.33630611e-16 - art_sys_168: -1.72968295e-16 - art_sys_169: -9.85205294e-17 - art_sys_170: -1.14383655e-16 - art_sys_171: -1.94894225e-17 - art_sys_172: -1.26155367e-17 - art_sys_173: 1.30177593e-17 - art_sys_174: -1.11507656e-20 - art_sys_175: -1.82719989e-18 - art_sys_176: -1.40349551e-18 - art_sys_177: 6.77243769e-19 - art_sys_178: 4.86073282e-19 - art_sys_179: 1.31224901e-19 - art_sys_180: -6.69444364e-20 - art_sys_181: -3.16809657e-20 - art_sys_182: -6.82882518e-21 - art_sys_183: -3.53635951e-21 - art_sys_184: -5.39399707e-22 - art_sys_185: 1.87284291e-22 + art_sys_159: -5.26077933e-11 + art_sys_160: -1.88708540e-08 + art_sys_161: 3.64233976e-11 + art_sys_162: 3.64233976e-11 + art_sys_163: 3.98311924e-10 + art_sys_164: 3.98311924e-10 + art_sys_165: 6.63473508e-23 + art_sys_166: -3.40855347e-23 + art_sys_167: -0.0 + art_sys_168: 3.53739891e-17 + art_sys_169: 2.97635531e-17 + art_sys_170: 4.07629759e-17 + art_sys_171: -1.47292882e-17 + art_sys_172: -6.49573518e-18 + art_sys_173: -7.26435487e-18 + art_sys_174: 1.41295766e-18 + art_sys_175: 4.99786270e-19 + art_sys_176: -8.20475464e-19 + art_sys_177: 1.06751137e-19 + art_sys_178: -5.86491775e-21 + art_sys_179: -8.65250544e-21 + art_sys_180: 6.24064834e-22 + art_sys_181: 1.38867256e-19 + art_sys_182: -1.27659774e-20 + art_sys_183: -4.77536046e-22 + art_sys_184: 6.99326095e-22 + art_sys_185: 9.01687794e-22 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -38689,153 +38689,153 @@ bins: art_sys_36: 0.0 art_sys_37: 0.0 art_sys_38: 0.0 - art_sys_39: -1.44464772e-278 - art_sys_40: -9.70042100e-274 - art_sys_41: 1.32450644e-262 - art_sys_42: 5.39212295e-163 - art_sys_43: 6.70675727e-163 - art_sys_44: 3.88719721e-156 - art_sys_45: -6.88864546e-147 - art_sys_46: 1.79801130e-139 - art_sys_47: 1.44889086e-133 - art_sys_48: -1.54214740e-127 - art_sys_49: 5.08146775e-120 - art_sys_50: 4.42715718e-112 - art_sys_51: -3.52489067e-99 - art_sys_52: -1.63960999e-107 - art_sys_53: -1.34815039e-109 - art_sys_54: 1.42224427e-100 - art_sys_55: 6.36759674e-98 - art_sys_56: -3.82359927e-95 - art_sys_57: -8.78344678e-21 - art_sys_58: 1.44901701e-19 - art_sys_59: 4.82086974e-19 - art_sys_60: -7.23977940e-37 - art_sys_61: 2.09907885e-18 - art_sys_62: 3.06089000e-17 - art_sys_63: 7.13436485e-16 - art_sys_64: 1.69047730e-15 - art_sys_65: 4.56264222e-15 - art_sys_66: -3.16280364e-32 - art_sys_67: -1.98145605e-14 - art_sys_68: -3.10646793e-13 - art_sys_69: -1.21535987e-30 - art_sys_70: 1.30319884e-30 - art_sys_71: 3.44951303e-31 - art_sys_72: -1.37101380e-31 - art_sys_73: -1.38854975e-31 - art_sys_74: -1.10433641e-31 + art_sys_39: 0.0 + art_sys_40: 0.0 + art_sys_41: 0.0 + art_sys_42: 0.0 + art_sys_43: 0.0 + art_sys_44: 6.23986386e-226 + art_sys_45: 3.14697106e-219 + art_sys_46: 3.18952546e-169 + art_sys_47: 1.76593708e-174 + art_sys_48: -9.52004914e-167 + art_sys_49: 8.12284398e-158 + art_sys_50: -3.48272264e-150 + art_sys_51: 1.44503379e-139 + art_sys_52: 1.60549488e-156 + art_sys_53: 5.12755081e-153 + art_sys_54: 6.06699582e-148 + art_sys_55: 1.49599991e-144 + art_sys_56: 2.41254238e-141 + art_sys_57: 8.58201702e-63 + art_sys_58: 4.25253781e-49 + art_sys_59: -1.63185007e-60 + art_sys_60: 1.97300232e-57 + art_sys_61: 7.77783928e-43 + art_sys_62: -2.15898969e-57 + art_sys_63: -3.64690963e-47 + art_sys_64: -8.78344678e-21 + art_sys_65: 1.44901701e-19 + art_sys_66: 4.82086974e-19 + art_sys_67: -2.09907885e-18 + art_sys_68: -3.06089000e-17 + art_sys_69: 7.13436485e-16 + art_sys_70: -1.69047730e-15 + art_sys_71: 4.56264222e-15 + art_sys_72: -1.98145605e-14 + art_sys_73: 3.10646793e-13 + art_sys_74: -2.90913592e-32 art_sys_75: 1.48145740e-12 - art_sys_76: 4.78971115e-14 - art_sys_77: -2.22879214e-14 - art_sys_78: -9.96721191e-15 + art_sys_76: -4.77958445e-14 + art_sys_77: 2.85188180e-14 + art_sys_78: 9.18444343e-15 art_sys_79: 2.25168496e-12 - art_sys_80: -7.98790352e-25 - art_sys_81: -3.04151758e-14 - art_sys_82: 6.25197622e-15 - art_sys_83: -4.78408842e-15 - art_sys_84: 1.31213614e-11 - art_sys_85: -5.14883255e-15 - art_sys_86: 5.30147230e-15 - art_sys_87: -3.83982386e-12 + art_sys_80: -1.99224990e-14 + art_sys_81: 1.31213614e-11 + art_sys_82: 3.20618901e-24 + art_sys_83: 6.10962088e-16 + art_sys_84: -2.36634943e-15 + art_sys_85: 4.15197729e-15 + art_sys_86: -6.07647426e-15 + art_sys_87: 3.83982386e-12 art_sys_88: -1.42885919e-10 - art_sys_89: -5.89754170e-11 - art_sys_90: 1.07457112e-24 - art_sys_91: 4.69735780e-23 - art_sys_92: -1.19448762e-24 - art_sys_93: -1.08666671e-22 - art_sys_94: 6.83091275e-25 - art_sys_95: -1.28879951e-25 - art_sys_96: 1.34104085e-09 - art_sys_97: -3.16793272e-25 - art_sys_98: 3.00220958e-25 - art_sys_99: 5.85211405e-25 - art_sys_100: -1.05947696e-23 - art_sys_101: 1.84904457e-25 - art_sys_102: 1.12970966e-08 - art_sys_103: 3.86315909e-23 - art_sys_104: -4.10676550e-24 - art_sys_105: 1.06567216e-07 - art_sys_106: -1.00222144e-23 - art_sys_107: -8.94425955e-24 - art_sys_108: -1.59354522e-22 - art_sys_109: 3.94950203e-24 - art_sys_110: -7.54781760e-08 - art_sys_111: 1.06581613e-24 - art_sys_112: -7.00991220e-23 - art_sys_113: -8.77190214e-07 - art_sys_114: 1.12251473e-22 - art_sys_115: 4.46850171e-22 - art_sys_116: -9.61960875e-23 - art_sys_117: -3.93251869e-07 - art_sys_118: 4.40648802e-23 - art_sys_119: -1.37600428e-18 - art_sys_120: 5.47560522e-24 - art_sys_121: 6.64731317e-21 - art_sys_122: 6.28802654e-22 - art_sys_123: -2.50953480e-17 - art_sys_124: -6.89617684e-23 - art_sys_125: 9.55921297e-21 - art_sys_126: 1.18910473e-19 - art_sys_127: 7.25917073e-18 - art_sys_128: -9.56373130e-14 - art_sys_129: 1.01598616e-13 - art_sys_130: 1.04919441e-11 - art_sys_131: 6.42067412e-11 - art_sys_132: -8.83635029e-16 - art_sys_133: 1.85509862e-13 - art_sys_134: 5.25290673e-10 - art_sys_135: 2.10567842e-13 - art_sys_136: -4.31762747e-09 - art_sys_137: -4.36210110e-12 - art_sys_138: 3.62603252e-09 - art_sys_139: -1.95157507e-10 - art_sys_140: 4.65407678e-20 - art_sys_141: 1.47736604e-09 - art_sys_142: -0.0 - art_sys_143: -1.32194864e-10 - art_sys_144: -7.75287644e-10 - art_sys_145: -1.45674773e-09 - art_sys_146: 3.44331791e-06 - art_sys_147: -5.73657613e-06 - art_sys_148: -4.80890556e-06 - art_sys_149: 2.12610185e-05 - art_sys_150: 1.77277936e-05 - art_sys_151: 2.75866460e-06 - art_sys_152: 1.96943038e-06 - art_sys_153: -3.01561630e-06 - art_sys_154: 1.82590254e-06 - art_sys_155: -7.92347807e-07 - art_sys_156: 2.94877709e-07 - art_sys_157: 6.60930578e-09 + art_sys_89: -4.49076490e-16 + art_sys_90: -5.89754170e-11 + art_sys_91: -5.74723420e-25 + art_sys_92: -1.89712677e-16 + art_sys_93: -8.66190061e-17 + art_sys_94: 1.34104084e-09 + art_sys_95: -8.27162675e-23 + art_sys_96: 3.76140307e-26 + art_sys_97: 1.40299084e-26 + art_sys_98: -4.19966322e-23 + art_sys_99: -7.45784747e-25 + art_sys_100: -5.49206544e-22 + art_sys_101: -1.56411737e-23 + art_sys_102: -1.83351780e-22 + art_sys_103: -9.77079735e-23 + art_sys_104: 3.83135795e-24 + art_sys_105: 1.12986350e-08 + art_sys_106: -1.36993770e-23 + art_sys_107: -3.42843089e-23 + art_sys_108: -1.06567546e-07 + art_sys_109: -7.54812558e-08 + art_sys_110: 4.07846257e-21 + art_sys_111: 1.40661956e-21 + art_sys_112: 1.19286030e-21 + art_sys_113: -2.94117436e-22 + art_sys_114: -8.77188817e-07 + art_sys_115: -2.06999419e-22 + art_sys_116: 2.89473290e-21 + art_sys_117: 3.93231702e-07 + art_sys_118: -9.28890294e-22 + art_sys_119: 3.58613369e-19 + art_sys_120: 1.63786161e-21 + art_sys_121: 3.44333428e-06 + art_sys_122: -3.12487228e-21 + art_sys_123: 2.78128558e-18 + art_sys_124: 8.18229398e-22 + art_sys_125: -5.73664135e-06 + art_sys_126: 1.15413516e-20 + art_sys_127: -9.45536620e-16 + art_sys_128: 9.14278180e-21 + art_sys_129: 4.80818242e-06 + art_sys_130: 4.21236026e-13 + art_sys_131: 2.12609933e-05 + art_sys_132: -5.02597470e-19 + art_sys_133: 1.52059489e-11 + art_sys_134: -1.52990868e-17 + art_sys_135: 1.07483561e-18 + art_sys_136: -1.77247943e-05 + art_sys_137: 6.10736748e-11 + art_sys_138: -2.22089477e-17 + art_sys_139: -8.91128933e-12 + art_sys_140: 2.75837818e-06 + art_sys_141: 2.94586510e-13 + art_sys_142: -9.91901086e-16 + art_sys_143: 3.03454422e-11 + art_sys_144: 1.96510520e-06 + art_sys_145: 4.11561495e-14 + art_sys_146: 3.91322339e-10 + art_sys_147: -3.02008041e-06 + art_sys_148: -1.76101687e-06 + art_sys_149: -4.27053794e-13 + art_sys_150: 2.29180491e-11 + art_sys_151: -6.86586020e-10 + art_sys_152: 8.62882265e-07 + art_sys_153: 2.51806133e-10 + art_sys_154: -1.19679346e-20 + art_sys_155: -2.61658913e-07 + art_sys_156: 0.0 + art_sys_157: -1.28886567e-11 art_sys_158: -0.0 - art_sys_159: 2.05366994e-10 - art_sys_160: 2.05366994e-10 - art_sys_161: 2.06875995e-09 - art_sys_162: -4.87398315e-22 - art_sys_163: -0.0 - art_sys_164: -1.99410586e-22 - art_sys_165: -7.30044533e-16 - art_sys_166: 3.15327441e-16 - art_sys_167: -8.29772581e-16 - art_sys_168: 2.32382235e-16 - art_sys_169: 1.38125884e-16 - art_sys_170: 1.62337258e-16 - art_sys_171: 2.80050177e-17 - art_sys_172: 1.89380612e-17 - art_sys_173: -1.83111850e-17 - art_sys_174: 1.88274697e-20 - art_sys_175: 2.75494288e-18 - art_sys_176: 2.17179900e-18 - art_sys_177: -9.89390737e-19 - art_sys_178: -7.40962962e-19 - art_sys_179: -1.93255131e-19 - art_sys_180: 9.91343560e-20 - art_sys_181: 4.75774325e-20 - art_sys_182: 8.83663141e-21 - art_sys_183: 5.38752585e-21 - art_sys_184: 1.15145810e-21 - art_sys_185: -3.65835825e-22 + art_sys_159: 1.29560893e-10 + art_sys_160: 3.14990862e-08 + art_sys_161: -3.98526035e-11 + art_sys_162: -3.98526035e-11 + art_sys_163: -1.14472428e-09 + art_sys_164: -1.14472428e-09 + art_sys_165: -1.07591011e-22 + art_sys_166: 5.58758239e-23 + art_sys_167: 0.0 + art_sys_168: -6.34208486e-17 + art_sys_169: -5.12375353e-17 + art_sys_170: -8.50544025e-17 + art_sys_171: 2.64966784e-17 + art_sys_172: 1.25273984e-17 + art_sys_173: 1.51315844e-17 + art_sys_174: -2.51896702e-18 + art_sys_175: -1.13025769e-18 + art_sys_176: 1.55906047e-18 + art_sys_177: -2.33454921e-19 + art_sys_178: 2.69084004e-20 + art_sys_179: 1.66103059e-20 + art_sys_180: -1.25366399e-21 + art_sys_181: -2.83029588e-19 + art_sys_182: 2.79535427e-20 + art_sys_183: 7.23483534e-22 + art_sys_184: -9.76662327e-22 + art_sys_185: -1.69773957e-21 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -38980,153 +38980,153 @@ bins: art_sys_36: 0.0 art_sys_37: 0.0 art_sys_38: 0.0 - art_sys_39: -1.05701222e-279 - art_sys_40: -7.09755282e-275 - art_sys_41: 9.69107875e-264 - art_sys_42: 3.63466997e-164 - art_sys_43: 4.52082593e-164 - art_sys_44: 2.62024422e-157 - art_sys_45: -4.64343136e-148 - art_sys_46: 1.21198603e-140 - art_sys_47: 9.76654306e-135 - art_sys_48: -1.03951577e-128 - art_sys_49: 3.42526653e-121 - art_sys_50: 2.98421520e-113 - art_sys_51: -2.37602414e-100 - art_sys_52: -1.10521241e-108 - art_sys_53: -9.08748147e-111 - art_sys_54: 9.58692633e-102 - art_sys_55: 4.29220789e-99 - art_sys_56: -2.57737473e-96 - art_sys_57: -5.92066063e-22 - art_sys_58: 9.51577016e-21 - art_sys_59: 2.87793198e-20 - art_sys_60: -9.72072494e-38 - art_sys_61: 2.70545254e-19 - art_sys_62: 4.43295628e-18 - art_sys_63: 6.67668516e-17 - art_sys_64: 1.64150633e-16 - art_sys_65: 4.28305986e-16 - art_sys_66: -7.36587806e-34 - art_sys_67: -3.66411013e-17 - art_sys_68: -2.25923695e-14 - art_sys_69: -8.32659400e-32 - art_sys_70: 9.81823266e-32 - art_sys_71: 2.10073550e-32 - art_sys_72: -6.96776598e-33 - art_sys_73: 1.10626993e-33 - art_sys_74: -7.10680856e-33 + art_sys_39: 0.0 + art_sys_40: 0.0 + art_sys_41: 0.0 + art_sys_42: 0.0 + art_sys_43: 0.0 + art_sys_44: 4.19883277e-227 + art_sys_45: 2.11761113e-220 + art_sys_46: 2.14986512e-170 + art_sys_47: 1.19031078e-175 + art_sys_48: -6.41688609e-168 + art_sys_49: 5.47511508e-159 + art_sys_50: -2.34749151e-151 + art_sys_51: 9.74009387e-141 + art_sys_52: 1.08216645e-157 + art_sys_53: 3.45617013e-154 + art_sys_54: 4.08939288e-149 + art_sys_55: 1.00836255e-145 + art_sys_56: 1.62614808e-142 + art_sys_57: 5.78488280e-64 + art_sys_58: 2.86650944e-50 + art_sys_59: -1.09998167e-61 + art_sys_60: 1.32994228e-58 + art_sys_61: 5.24281048e-44 + art_sys_62: -1.45531261e-58 + art_sys_63: -2.45827348e-48 + art_sys_64: -5.92066063e-22 + art_sys_65: 9.51577016e-21 + art_sys_66: 2.87793198e-20 + art_sys_67: -2.70545254e-19 + art_sys_68: -4.43295628e-18 + art_sys_69: 6.67668516e-17 + art_sys_70: -1.64150633e-16 + art_sys_71: 4.28305986e-16 + art_sys_72: -3.66411013e-17 + art_sys_73: 2.25923695e-14 + art_sys_74: -4.35188619e-33 art_sys_75: 9.05762821e-14 - art_sys_76: -2.48256672e-14 - art_sys_77: -4.64543814e-14 - art_sys_78: 3.45546398e-15 + art_sys_76: 2.15412961e-15 + art_sys_77: -2.50141717e-14 + art_sys_78: -1.17542237e-14 art_sys_79: 3.97791468e-13 - art_sys_80: -5.52323181e-26 - art_sys_81: 3.27401885e-14 - art_sys_82: -4.71092016e-15 - art_sys_83: 3.83533654e-15 - art_sys_84: 1.14483058e-12 - art_sys_85: 4.00810442e-15 - art_sys_86: -4.05923939e-15 - art_sys_87: -4.40485786e-12 + art_sys_80: 1.91276989e-14 + art_sys_81: 1.14483058e-12 + art_sys_82: 2.79676122e-25 + art_sys_83: -4.59681060e-15 + art_sys_84: 6.16401208e-15 + art_sys_85: -8.66672118e-15 + art_sys_86: 1.14937073e-14 + art_sys_87: 4.40485786e-12 art_sys_88: -3.78421880e-11 - art_sys_89: 9.29289624e-12 - art_sys_90: 1.42668199e-25 - art_sys_91: 4.09145793e-24 - art_sys_92: -9.70396539e-26 - art_sys_93: -9.47970424e-24 - art_sys_94: 6.07240262e-26 - art_sys_95: -5.26367722e-26 - art_sys_96: 1.93531806e-10 - art_sys_97: -8.83460930e-26 - art_sys_98: 3.01492063e-26 - art_sys_99: 4.95351868e-26 - art_sys_100: -3.12412062e-24 - art_sys_101: 5.12663853e-26 - art_sys_102: -6.80711443e-09 - art_sys_103: 5.03728692e-23 - art_sys_104: -4.32703342e-25 - art_sys_105: 1.96233445e-08 - art_sys_106: 4.66433359e-25 - art_sys_107: 1.40132888e-24 - art_sys_108: -2.89547929e-23 - art_sys_109: -2.58861022e-24 - art_sys_110: 7.00396540e-08 - art_sys_111: 7.03849521e-25 - art_sys_112: -4.69297717e-22 - art_sys_113: -1.05873890e-07 - art_sys_114: 1.25891957e-23 - art_sys_115: 3.56911351e-23 - art_sys_116: -1.72318934e-23 - art_sys_117: -5.78823285e-07 - art_sys_118: 3.10506789e-23 - art_sys_119: -1.95650400e-19 - art_sys_120: -6.90241841e-24 - art_sys_121: 2.53060791e-21 - art_sys_122: 3.06228044e-22 - art_sys_123: 4.19268774e-17 - art_sys_124: -4.68584878e-23 - art_sys_125: 3.37810686e-21 - art_sys_126: 1.63897868e-19 - art_sys_127: 1.17319788e-18 - art_sys_128: -3.88686084e-14 - art_sys_129: 4.55155370e-13 - art_sys_130: 3.05710739e-12 - art_sys_131: 1.01476051e-11 - art_sys_132: -1.27043811e-16 - art_sys_133: 2.73853862e-14 - art_sys_134: 7.42846353e-11 - art_sys_135: 2.90422983e-14 - art_sys_136: -5.96228731e-10 - art_sys_137: -5.98014777e-13 - art_sys_138: 4.94960252e-10 - art_sys_139: 3.07296678e-10 - art_sys_140: 4.24139886e-21 - art_sys_141: -3.45772449e-11 - art_sys_142: 0.0 - art_sys_143: -1.16235811e-11 - art_sys_144: -6.90384089e-11 - art_sys_145: -1.23184904e-10 - art_sys_146: -2.48209104e-07 - art_sys_147: -2.22998984e-06 - art_sys_148: 3.89968412e-06 - art_sys_149: 2.84691156e-06 - art_sys_150: 1.46299832e-05 - art_sys_151: -1.20313506e-05 - art_sys_152: 1.48142339e-06 - art_sys_153: 1.45101195e-06 - art_sys_154: -2.07694422e-06 - art_sys_155: 1.13033586e-06 - art_sys_156: -4.85165481e-07 - art_sys_157: -2.79689759e-08 - art_sys_158: 0.0 - art_sys_159: -1.99642748e-10 - art_sys_160: -1.99642748e-10 - art_sys_161: -3.55834276e-09 - art_sys_162: 8.46177932e-22 - art_sys_163: 0.0 - art_sys_164: 3.47983491e-22 - art_sys_165: 5.91837211e-16 - art_sys_166: -2.68802859e-16 - art_sys_167: 8.43005617e-16 - art_sys_168: -2.42405608e-16 - art_sys_169: -1.50220930e-16 - art_sys_170: -1.81903051e-16 - art_sys_171: -3.02231834e-17 - art_sys_172: -2.28447118e-17 - art_sys_173: 2.07660401e-17 - art_sys_174: -2.86305556e-20 - art_sys_175: -3.46224857e-18 - art_sys_176: -2.86367631e-18 - art_sys_177: 1.15581810e-18 - art_sys_178: 9.56380766e-19 - art_sys_179: 2.19320107e-19 - art_sys_180: -1.24435605e-19 - art_sys_181: -6.12847433e-20 - art_sys_182: -7.52100532e-21 - art_sys_183: -7.12362453e-21 - art_sys_184: -2.15326741e-21 - art_sys_185: 6.88573568e-22 + art_sys_89: 5.53848982e-16 + art_sys_90: 9.29289625e-12 + art_sys_91: 2.41944749e-26 + art_sys_92: 2.36183465e-16 + art_sys_93: 1.12298119e-16 + art_sys_94: 1.93531805e-10 + art_sys_95: -1.97442576e-23 + art_sys_96: 1.61086542e-26 + art_sys_97: -1.08065578e-26 + art_sys_98: -3.66721896e-23 + art_sys_99: -1.33244728e-24 + art_sys_100: -6.01583201e-22 + art_sys_101: -1.86290656e-23 + art_sys_102: -4.38311766e-23 + art_sys_103: -1.13998768e-22 + art_sys_104: 1.06726533e-23 + art_sys_105: -6.80683356e-09 + art_sys_106: 1.75732559e-24 + art_sys_107: 2.43827014e-23 + art_sys_108: -1.96233415e-08 + art_sys_109: 7.00393742e-08 + art_sys_110: -5.18543799e-22 + art_sys_111: 4.14913490e-22 + art_sys_112: 3.56169273e-22 + art_sys_113: 3.05755123e-22 + art_sys_114: -1.05871687e-07 + art_sys_115: -6.09617572e-23 + art_sys_116: 2.77558659e-22 + art_sys_117: 5.78823735e-07 + art_sys_118: -9.20846753e-23 + art_sys_119: 5.12916157e-20 + art_sys_120: -8.82289973e-22 + art_sys_121: -2.48203945e-07 + art_sys_122: 6.71466217e-22 + art_sys_123: 7.49295686e-19 + art_sys_124: 5.58842782e-22 + art_sys_125: -2.23001346e-06 + art_sys_126: -7.08549898e-20 + art_sys_127: -1.14808647e-16 + art_sys_128: 2.43055651e-21 + art_sys_129: -3.89975548e-06 + art_sys_130: 6.20325304e-14 + art_sys_131: 2.84690523e-06 + art_sys_132: -8.12458300e-20 + art_sys_133: 4.53383094e-12 + art_sys_134: -5.21757867e-18 + art_sys_135: 1.78810366e-19 + art_sys_136: -1.46249928e-05 + art_sys_137: 2.38412153e-11 + art_sys_138: -8.14090376e-18 + art_sys_139: -8.36661861e-13 + art_sys_140: -1.20338974e-05 + art_sys_141: 1.16694746e-13 + art_sys_142: -3.69501894e-16 + art_sys_143: 1.05158467e-11 + art_sys_144: 1.47823369e-06 + art_sys_145: 4.96971561e-15 + art_sys_146: 5.49583416e-11 + art_sys_147: 1.45302355e-06 + art_sys_148: 2.01033382e-06 + art_sys_149: -2.26978519e-12 + art_sys_150: 4.04840106e-10 + art_sys_151: 1.88526610e-09 + art_sys_152: -1.22292557e-06 + art_sys_153: -1.54796167e-09 + art_sys_154: 7.27227076e-20 + art_sys_155: 4.51691626e-07 + art_sys_156: -0.0 + art_sys_157: 6.59186796e-11 + art_sys_158: -0.0 + art_sys_159: -4.52036878e-10 + art_sys_160: -4.97135795e-08 + art_sys_161: 3.54092005e-11 + art_sys_162: 3.54092005e-11 + art_sys_163: 2.81351842e-09 + art_sys_164: 2.81351842e-09 + art_sys_165: 1.45415313e-22 + art_sys_166: -7.68962190e-23 + art_sys_167: -0.0 + art_sys_168: 1.71673858e-16 + art_sys_169: 1.01636370e-16 + art_sys_170: 1.60860056e-16 + art_sys_171: -4.12980502e-17 + art_sys_172: -2.23431188e-17 + art_sys_173: -2.81792485e-17 + art_sys_174: 4.12905387e-18 + art_sys_175: 2.31849576e-18 + art_sys_176: -2.79491023e-18 + art_sys_177: 4.79739620e-19 + art_sys_178: -7.15231260e-20 + art_sys_179: -2.93708793e-20 + art_sys_180: 2.55158740e-21 + art_sys_181: 5.62339049e-19 + art_sys_182: -4.85020438e-20 + art_sys_183: -3.03456968e-22 + art_sys_184: 7.66684898e-22 + art_sys_185: 2.93291260e-21 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -39271,153 +39271,153 @@ bins: art_sys_36: 0.0 art_sys_37: 0.0 art_sys_38: 0.0 - art_sys_39: -5.82821371e-281 - art_sys_40: -3.91348880e-276 - art_sys_41: 5.34352179e-265 - art_sys_42: 2.31151971e-165 - art_sys_43: 2.87508310e-165 - art_sys_44: 1.66638132e-158 - art_sys_45: -2.95305576e-149 - art_sys_46: 7.70779635e-142 - art_sys_47: 6.21117101e-136 - art_sys_48: -6.61094738e-130 - art_sys_49: 2.17834663e-122 - art_sys_50: 1.89785381e-114 - art_sys_51: -1.51106611e-101 - art_sys_52: -7.02875444e-110 - art_sys_53: -5.77931220e-112 - art_sys_54: 6.09694121e-103 - art_sys_55: 2.72969023e-100 - art_sys_56: -1.63911787e-97 - art_sys_57: -3.76532772e-23 - art_sys_58: 5.78354577e-22 - art_sys_59: 1.52023090e-21 - art_sys_60: -8.97512016e-39 - art_sys_61: 2.58532840e-20 - art_sys_62: 3.93258845e-19 - art_sys_63: 5.65994534e-18 - art_sys_64: 1.36499601e-17 - art_sys_65: 3.28877015e-17 - art_sys_66: -2.29580134e-35 - art_sys_67: 2.41137039e-17 - art_sys_68: -1.39559268e-15 - art_sys_69: -5.04317008e-33 - art_sys_70: 6.12588210e-33 - art_sys_71: 1.22139285e-33 - art_sys_72: -3.72184990e-34 - art_sys_73: -5.78748416e-35 - art_sys_74: -4.73624140e-34 + art_sys_39: 0.0 + art_sys_40: 0.0 + art_sys_41: 0.0 + art_sys_42: 0.0 + art_sys_43: 0.0 + art_sys_44: 2.66102653e-228 + art_sys_45: 1.34204425e-221 + art_sys_46: 1.36713111e-171 + art_sys_47: 7.56936275e-177 + art_sys_48: -4.08059302e-169 + art_sys_49: 3.48170687e-160 + art_sys_50: -1.49280466e-152 + art_sys_51: 6.19387013e-142 + art_sys_52: 6.88165691e-159 + art_sys_53: 2.19782984e-155 + art_sys_54: 2.60050557e-150 + art_sys_55: 6.41232697e-147 + art_sys_56: 1.03409168e-143 + art_sys_57: 3.67897788e-65 + art_sys_58: 1.82299715e-51 + art_sys_59: -6.99548872e-63 + art_sys_60: 8.45795568e-60 + art_sys_61: 3.33423933e-45 + art_sys_62: -9.25527955e-60 + art_sys_63: -1.56337372e-49 + art_sys_64: -3.76532772e-23 + art_sys_65: 5.78354577e-22 + art_sys_66: 1.52023090e-21 + art_sys_67: -2.58532840e-20 + art_sys_68: -3.93258845e-19 + art_sys_69: 5.65994534e-18 + art_sys_70: -1.36499601e-17 + art_sys_71: 3.28877015e-17 + art_sys_72: 2.41137039e-17 + art_sys_73: 1.39559268e-15 + art_sys_74: -3.08530242e-34 art_sys_75: 2.94588761e-15 - art_sys_76: 4.44825805e-15 - art_sys_77: 3.06807217e-14 - art_sys_78: 2.35475558e-14 + art_sys_76: -2.73419951e-14 + art_sys_77: 9.02109284e-15 + art_sys_78: 1.85862719e-14 art_sys_79: 1.08022736e-13 - art_sys_80: -1.07043071e-26 - art_sys_81: -1.74737905e-14 - art_sys_82: -1.37935682e-15 - art_sys_83: -2.95390008e-18 - art_sys_84: 2.52222204e-13 - art_sys_85: 1.02199384e-15 - art_sys_86: -1.68617898e-15 - art_sys_87: -2.52909341e-13 + art_sys_80: -4.32106095e-16 + art_sys_81: 2.52222204e-13 + art_sys_82: 6.16097138e-26 + art_sys_83: 1.25179577e-14 + art_sys_84: -1.15892998e-14 + art_sys_85: 1.39222710e-14 + art_sys_86: -1.80528728e-14 + art_sys_87: 2.52909341e-13 art_sys_88: -1.04500086e-11 - art_sys_89: 1.62539918e-11 - art_sys_90: 1.51571671e-26 - art_sys_91: 9.02730436e-25 - art_sys_92: -2.22087914e-26 - art_sys_93: -2.08860075e-24 - art_sys_94: 1.34342316e-26 - art_sys_95: -3.63668315e-27 - art_sys_96: -2.39033556e-11 - art_sys_97: -2.75529763e-26 - art_sys_98: 7.83072151e-27 - art_sys_99: 1.24962214e-26 - art_sys_100: -9.02547476e-25 - art_sys_101: 1.65312407e-26 - art_sys_102: -1.98429701e-09 - art_sys_103: 2.75615591e-24 - art_sys_104: -1.29543170e-25 - art_sys_105: -1.74686096e-09 - art_sys_106: 6.81667713e-25 - art_sys_107: 7.99190735e-25 - art_sys_108: -7.28632655e-24 - art_sys_109: -9.13270287e-25 - art_sys_110: 1.98282368e-08 - art_sys_111: 3.32810819e-25 - art_sys_112: -3.83015811e-22 - art_sys_113: 4.07443134e-08 - art_sys_114: -5.30310450e-24 - art_sys_115: -2.63219181e-23 - art_sys_116: -3.29002617e-24 - art_sys_117: -9.09395604e-08 - art_sys_118: 3.51553071e-24 - art_sys_119: 2.58749833e-20 - art_sys_120: -1.93227810e-24 - art_sys_121: 9.72053375e-22 - art_sys_122: -8.96799833e-26 - art_sys_123: 5.49514392e-18 - art_sys_124: -2.18419015e-23 - art_sys_125: -6.31728737e-22 - art_sys_126: 1.51247615e-20 - art_sys_127: -7.76167846e-19 - art_sys_128: -1.59061059e-15 - art_sys_129: 8.28638310e-14 - art_sys_130: -7.48027790e-13 - art_sys_131: -6.97922696e-12 - art_sys_132: 1.00434871e-16 - art_sys_133: -2.08946025e-14 - art_sys_134: -5.99753186e-11 - art_sys_135: -2.41782633e-14 - art_sys_136: 4.95625476e-10 - art_sys_137: 5.02475488e-13 - art_sys_138: -4.19283667e-10 - art_sys_139: 2.77496968e-10 - art_sys_140: -6.83418720e-21 - art_sys_141: -3.51371317e-10 - art_sys_142: 0.0 - art_sys_143: 2.01462990e-11 - art_sys_144: 1.17510034e-10 - art_sys_145: 2.26145024e-10 - art_sys_146: -3.74972846e-07 - art_sys_147: 1.40629486e-07 - art_sys_148: 1.48037262e-06 - art_sys_149: -2.46694996e-06 - art_sys_150: 1.76769899e-06 - art_sys_151: -9.57093698e-06 - art_sys_152: -8.36261203e-06 - art_sys_153: 9.83250555e-07 - art_sys_154: 1.14634963e-06 - art_sys_155: -1.29336598e-06 - art_sys_156: 7.05502846e-07 - art_sys_157: 8.33052994e-08 - art_sys_158: -0.0 - art_sys_159: -1.94648643e-10 - art_sys_160: -1.94648643e-10 - art_sys_161: 6.06303982e-09 - art_sys_162: -1.45164436e-21 - art_sys_163: -0.0 - art_sys_164: -6.00064240e-22 - art_sys_165: 7.85183167e-17 - art_sys_166: 9.64255644e-18 - art_sys_167: -1.88992553e-16 - art_sys_168: 1.16991926e-16 - art_sys_169: 6.44660859e-17 - art_sys_170: 9.46433638e-17 - art_sys_171: 1.44897532e-17 - art_sys_172: 1.38669615e-17 - art_sys_173: -1.46941619e-17 - art_sys_174: 3.56843988e-20 - art_sys_175: 2.89177794e-18 - art_sys_176: 2.77981443e-18 - art_sys_177: -7.31829750e-19 - art_sys_178: -8.70082750e-19 - art_sys_179: -1.22813008e-19 - art_sys_180: 1.09925617e-19 - art_sys_181: 5.51960682e-20 - art_sys_182: -2.20225240e-21 - art_sys_183: 7.12432626e-21 - art_sys_184: 3.52768205e-21 - art_sys_185: -1.25335248e-21 + art_sys_89: -7.46835193e-16 + art_sys_90: 1.62539918e-11 + art_sys_91: -6.38362092e-27 + art_sys_92: -2.51528937e-16 + art_sys_93: 8.13227927e-18 + art_sys_94: -2.39033555e-11 + art_sys_95: -6.05340639e-24 + art_sys_96: 1.69589597e-27 + art_sys_97: -4.09306064e-27 + art_sys_98: -2.84660772e-24 + art_sys_99: -4.12090183e-26 + art_sys_100: -3.02377361e-23 + art_sys_101: -1.09980858e-24 + art_sys_102: -1.30723834e-23 + art_sys_103: -7.02850447e-24 + art_sys_104: 3.75304991e-24 + art_sys_105: -1.98432273e-09 + art_sys_106: 3.32132264e-25 + art_sys_107: 2.32031016e-23 + art_sys_108: 1.74688019e-09 + art_sys_109: 1.98283986e-08 + art_sys_110: -1.01605110e-21 + art_sys_111: 1.32264800e-22 + art_sys_112: 1.25117724e-22 + art_sys_113: 2.94705323e-22 + art_sys_114: 4.07446709e-08 + art_sys_115: -2.35846607e-23 + art_sys_116: -8.48165779e-23 + art_sys_117: 9.09415304e-08 + art_sys_118: 5.09830521e-23 + art_sys_119: -6.48572597e-21 + art_sys_120: -2.65919035e-22 + art_sys_121: -3.74973572e-07 + art_sys_122: 7.47777344e-22 + art_sys_123: 5.26390047e-21 + art_sys_124: -4.90096861e-24 + art_sys_125: 1.40631466e-07 + art_sys_126: -1.67068842e-20 + art_sys_127: 3.41494683e-17 + art_sys_128: 1.14811206e-22 + art_sys_129: -1.48028364e-06 + art_sys_130: -1.63531194e-14 + art_sys_131: -2.46694765e-06 + art_sys_132: 7.08921904e-21 + art_sys_133: -6.67829587e-13 + art_sys_134: 5.91617802e-19 + art_sys_135: -6.31402419e-20 + art_sys_136: -1.76566247e-06 + art_sys_137: -1.52093349e-12 + art_sys_138: 8.10129328e-19 + art_sys_139: 9.39494497e-13 + art_sys_140: -9.56916355e-06 + art_sys_141: -6.63469103e-15 + art_sys_142: 2.95784208e-17 + art_sys_143: -1.16234330e-12 + art_sys_144: -8.34657188e-06 + art_sys_145: -4.65941347e-15 + art_sys_146: -4.27050650e-11 + art_sys_147: 9.84958274e-07 + art_sys_148: -1.08613996e-06 + art_sys_149: -1.82913557e-12 + art_sys_150: 3.37820011e-10 + art_sys_151: 1.76099027e-09 + art_sys_152: 1.39162898e-06 + art_sys_153: -1.43073954e-09 + art_sys_154: 8.23059248e-20 + art_sys_155: -6.90135379e-07 + art_sys_156: 0.0 + art_sys_157: 7.95843952e-11 + art_sys_158: 0.0 + art_sys_159: -6.60810166e-10 + art_sys_160: 8.37072430e-08 + art_sys_161: 1.42973386e-10 + art_sys_162: 1.42973386e-10 + art_sys_163: -5.11830962e-09 + art_sys_164: -5.11830962e-09 + art_sys_165: -1.30936612e-22 + art_sys_166: 7.11135507e-23 + art_sys_167: 0.0 + art_sys_168: -3.65401839e-16 + art_sys_169: -1.77781996e-16 + art_sys_170: -2.85885722e-16 + art_sys_171: 6.94761768e-17 + art_sys_172: 3.96232540e-17 + art_sys_173: 4.41649054e-17 + art_sys_174: -5.98992366e-18 + art_sys_175: -4.10322227e-18 + art_sys_176: 4.53147528e-18 + art_sys_177: -8.88798642e-19 + art_sys_178: 1.34414165e-19 + art_sys_179: 4.29578346e-20 + art_sys_180: -5.46372645e-21 + art_sys_181: -9.97154549e-19 + art_sys_182: 8.54574758e-20 + art_sys_183: -6.18358321e-22 + art_sys_184: 6.10153764e-22 + art_sys_185: -4.46032407e-21 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -39561,154 +39561,154 @@ bins: art_sys_35: 0.0 art_sys_36: 0.0 art_sys_37: 0.0 - art_sys_38: -3.78596981e-303 - art_sys_39: -2.03126763e-282 - art_sys_40: -1.36394155e-277 - art_sys_41: 1.86234130e-266 - art_sys_42: 1.18386606e-166 - art_sys_43: 1.47250024e-166 - art_sys_44: 8.53452510e-160 - art_sys_45: -1.51243465e-150 - art_sys_46: 3.94761875e-143 - art_sys_47: 3.18110832e-137 - art_sys_48: -3.38585747e-131 - art_sys_49: 1.11566025e-123 - art_sys_50: 9.72003271e-116 - art_sys_51: -7.73906398e-103 - art_sys_52: -3.59984120e-111 - art_sys_53: -2.95992786e-113 - art_sys_54: 3.12260448e-104 - art_sys_55: 1.39803594e-101 - art_sys_56: -8.39489282e-99 - art_sys_57: -1.92844718e-24 - art_sys_58: 2.80855432e-23 - art_sys_59: 4.98485813e-23 - art_sys_60: -7.78746992e-40 - art_sys_61: 2.17899558e-21 - art_sys_62: 2.65850980e-20 - art_sys_63: 4.65479165e-19 - art_sys_64: 1.06517513e-18 - art_sys_65: 2.38288278e-18 - art_sys_66: -1.73744494e-35 - art_sys_67: -1.11157644e-17 - art_sys_68: -1.47545602e-16 - art_sys_69: -5.83079417e-34 - art_sys_70: 6.14641277e-34 - art_sys_71: 1.68801189e-34 - art_sys_72: -6.86157964e-35 - art_sys_73: -1.03531522e-35 - art_sys_74: -4.67489912e-35 + art_sys_38: 0.0 + art_sys_39: 0.0 + art_sys_40: 0.0 + art_sys_41: 0.0 + art_sys_42: 0.0 + art_sys_43: 0.0 + art_sys_44: 1.35939464e-229 + art_sys_45: 6.85587961e-223 + art_sys_46: 7.00128284e-173 + art_sys_47: 3.87638385e-178 + art_sys_48: -2.08973271e-170 + art_sys_49: 1.78303415e-161 + art_sys_50: -7.64487589e-154 + art_sys_51: 3.17197351e-143 + art_sys_52: 3.52419943e-160 + art_sys_53: 1.12554153e-156 + art_sys_54: 1.33175779e-151 + art_sys_55: 3.28384853e-148 + art_sys_56: 5.29573812e-145 + art_sys_57: 1.88422231e-66 + art_sys_58: 9.33664732e-53 + art_sys_59: -3.58280380e-64 + art_sys_60: 4.33181967e-61 + art_sys_61: 1.70766130e-46 + art_sys_62: -4.74023825e-61 + art_sys_63: -8.00696209e-51 + art_sys_64: -1.92844718e-24 + art_sys_65: 2.80855432e-23 + art_sys_66: 4.98485813e-23 + art_sys_67: -2.17899558e-21 + art_sys_68: -2.65850980e-20 + art_sys_69: 4.65479165e-19 + art_sys_70: -1.06517513e-18 + art_sys_71: 2.38288278e-18 + art_sys_72: -1.11157644e-17 + art_sys_73: 1.47545602e-16 + art_sys_74: -1.12620869e-35 art_sys_75: 5.81048954e-16 - art_sys_76: 3.04371391e-14 - art_sys_77: 2.00241126e-14 - art_sys_78: -1.09027726e-14 + art_sys_76: -5.91457109e-14 + art_sys_77: 3.96734356e-14 + art_sys_78: -1.81048541e-15 art_sys_79: 2.27462793e-14 - art_sys_80: -3.20105304e-27 - art_sys_81: -9.71760772e-15 - art_sys_82: 1.01336794e-14 - art_sys_83: -3.11663258e-15 - art_sys_84: 6.60475718e-14 - art_sys_85: -6.19015819e-15 - art_sys_86: 6.94870396e-15 - art_sys_87: 1.63993395e-13 - art_sys_88: -1.71191401e-12 - art_sys_89: 4.51453373e-12 - art_sys_90: 4.01316706e-28 - art_sys_91: 2.36790999e-25 - art_sys_92: -6.19623622e-27 - art_sys_93: -5.46994010e-25 - art_sys_94: 3.47060684e-27 - art_sys_95: 1.40625761e-27 - art_sys_96: -1.40753346e-11 - art_sys_97: -4.96034247e-27 - art_sys_98: 1.93895688e-27 - art_sys_99: 3.44210570e-27 - art_sys_100: -1.45111412e-25 - art_sys_101: 3.05900939e-27 - art_sys_102: -6.71898715e-11 - art_sys_103: -1.95136970e-24 - art_sys_104: -4.16595584e-26 - art_sys_105: -1.36709893e-09 - art_sys_106: 1.07295860e-25 - art_sys_107: 9.82296624e-26 - art_sys_108: -1.52272807e-24 - art_sys_109: -3.42006125e-26 - art_sys_110: 1.72852076e-10 - art_sys_111: 6.87822060e-26 - art_sys_112: -9.74186655e-23 - art_sys_113: 1.56790384e-08 - art_sys_114: -1.95845946e-24 - art_sys_115: -9.15568833e-24 - art_sys_116: -5.37121974e-25 - art_sys_117: 2.32540850e-08 - art_sys_118: -1.56114425e-24 - art_sys_119: 1.48275732e-20 - art_sys_120: 8.31541943e-26 - art_sys_121: 1.81485313e-22 - art_sys_122: -2.83824756e-23 - art_sys_123: 9.46022286e-19 - art_sys_124: -4.08111679e-24 - art_sys_125: -5.00701648e-22 - art_sys_126: -1.12256972e-20 - art_sys_127: -3.09888350e-19 - art_sys_128: 2.31268525e-15 - art_sys_129: -1.94989999e-14 - art_sys_130: -4.87508552e-13 - art_sys_131: -2.74877641e-12 - art_sys_132: 3.76234636e-17 - art_sys_133: -7.92829959e-15 - art_sys_134: -2.22915270e-11 - art_sys_135: -8.87918917e-15 - art_sys_136: 1.82124490e-10 - art_sys_137: 1.83889420e-13 - art_sys_138: -1.53008691e-10 - art_sys_139: 3.29688975e-11 - art_sys_140: -2.33130387e-21 - art_sys_141: -7.91479609e-11 - art_sys_142: -0.0 - art_sys_143: 5.87705609e-12 - art_sys_144: 3.45409509e-11 - art_sys_145: 6.66865033e-11 - art_sys_146: -5.84382621e-08 - art_sys_147: 2.39451849e-07 - art_sys_148: -1.11555061e-07 - art_sys_149: -8.89788209e-07 - art_sys_150: -1.75958034e-06 - art_sys_151: -9.42171836e-07 - art_sys_152: -6.35388118e-06 - art_sys_153: -5.85515314e-06 - art_sys_154: 4.67370005e-07 - art_sys_155: 8.05980342e-07 - art_sys_156: -8.59605078e-07 - art_sys_157: -1.64954664e-07 + art_sys_80: -1.32062232e-14 + art_sys_81: 6.60475718e-14 + art_sys_82: 1.61349206e-26 + art_sys_83: -1.93466224e-14 + art_sys_84: 1.44997284e-14 + art_sys_85: -1.70735030e-14 + art_sys_86: 2.11518852e-14 + art_sys_87: -1.63993394e-13 + art_sys_88: -1.71191400e-12 + art_sys_89: 5.53240786e-16 + art_sys_90: 4.51453373e-12 + art_sys_91: -5.78577193e-27 + art_sys_92: -8.51502905e-17 + art_sys_93: -5.87130608e-16 + art_sys_94: -1.40753345e-11 + art_sys_95: -1.12053762e-24 + art_sys_96: -2.55219426e-28 + art_sys_97: -4.23295418e-28 + art_sys_98: 1.08518045e-24 + art_sys_99: 6.27099248e-26 + art_sys_100: 2.37024881e-23 + art_sys_101: 6.86048916e-25 + art_sys_102: -2.35615251e-24 + art_sys_103: 4.09315109e-24 + art_sys_104: 6.09584963e-25 + art_sys_105: -6.72095858e-11 + art_sys_106: -5.13832271e-26 + art_sys_107: 5.97489129e-24 + art_sys_108: 1.36710245e-09 + art_sys_109: 1.72905095e-10 + art_sys_110: -2.84146945e-22 + art_sys_111: 2.36962256e-23 + art_sys_112: 2.43768641e-23 + art_sys_113: 7.66747338e-23 + art_sys_114: 1.56789514e-08 + art_sys_115: -5.08774104e-24 + art_sys_116: -3.17150051e-23 + art_sys_117: -2.32537189e-08 + art_sys_118: 1.84746923e-23 + art_sys_119: -3.75841491e-21 + art_sys_120: -1.16481967e-23 + art_sys_121: -5.84389534e-08 + art_sys_122: 1.78658858e-22 + art_sys_123: -3.54164558e-20 + art_sys_124: -4.65861159e-23 + art_sys_125: 2.39454478e-07 + art_sys_126: 5.27957597e-22 + art_sys_127: 1.11391925e-17 + art_sys_128: -9.42597010e-23 + art_sys_129: 1.11583579e-07 + art_sys_130: -7.58740723e-15 + art_sys_131: -8.89786879e-07 + art_sys_132: 5.37233526e-21 + art_sys_133: -5.88144893e-13 + art_sys_134: 6.47460647e-19 + art_sys_135: -3.63163304e-20 + art_sys_136: 1.75940290e-06 + art_sys_137: -2.56233382e-12 + art_sys_138: 9.12486764e-19 + art_sys_139: 2.77284694e-13 + art_sys_140: -9.39779023e-07 + art_sys_141: -1.24422110e-14 + art_sys_142: 4.14773678e-17 + art_sys_143: -1.25734927e-12 + art_sys_144: -6.34276210e-06 + art_sys_145: -1.64352167e-15 + art_sys_146: -1.59084387e-11 + art_sys_147: -5.86453975e-06 + art_sys_148: -4.64713186e-07 + art_sys_149: -2.52626102e-13 + art_sys_150: 4.80981105e-11 + art_sys_151: 3.01836779e-10 + art_sys_152: -8.83149401e-07 + art_sys_153: -2.75800255e-10 + art_sys_154: 2.37368547e-20 + art_sys_155: 8.90632549e-07 + art_sys_156: 0.0 + art_sys_157: 2.53441098e-11 art_sys_158: 0.0 - art_sys_159: -4.64908793e-11 - art_sys_160: -4.64908793e-11 - art_sys_161: -1.03255621e-08 - art_sys_162: 2.46984036e-21 - art_sys_163: 0.0 - art_sys_164: 1.02004657e-21 - art_sys_165: -6.64842458e-16 - art_sys_166: 3.81680394e-16 - art_sys_167: -6.47604918e-16 - art_sys_168: 9.53240657e-17 - art_sys_169: 7.58311947e-17 - art_sys_170: 6.23632184e-17 - art_sys_171: 1.67464436e-17 - art_sys_172: 3.56508633e-18 - art_sys_173: -3.43468787e-18 - art_sys_174: -3.45457842e-20 - art_sys_175: -7.07901767e-19 - art_sys_176: -1.34658925e-18 - art_sys_177: -3.57633350e-19 - art_sys_178: 4.00630612e-19 - art_sys_179: -9.23350402e-20 - art_sys_180: -5.90282092e-20 - art_sys_181: -3.60387121e-20 - art_sys_182: 1.26196493e-20 - art_sys_183: -7.13963202e-21 - art_sys_184: -3.03006590e-21 - art_sys_185: 2.01464813e-21 + art_sys_159: -2.47575322e-10 + art_sys_160: -1.31622640e-07 + art_sys_161: 5.49977145e-11 + art_sys_162: 5.49977145e-11 + art_sys_163: 8.56833668e-09 + art_sys_164: 8.56833668e-09 + art_sys_165: -6.61635396e-23 + art_sys_166: 2.75371766e-23 + art_sys_167: 0.0 + art_sys_168: 6.48571342e-16 + art_sys_169: 3.15354474e-16 + art_sys_170: 4.58154115e-16 + art_sys_171: -1.05311119e-16 + art_sys_172: -5.93677469e-17 + art_sys_173: -6.41890975e-17 + art_sys_174: 7.66318435e-18 + art_sys_175: 6.21748000e-18 + art_sys_176: -6.42726174e-18 + art_sys_177: 1.38731795e-18 + art_sys_178: -2.23473837e-19 + art_sys_179: -4.98592255e-20 + art_sys_180: 1.08575103e-20 + art_sys_181: 1.66145018e-18 + art_sys_182: -1.39166705e-19 + art_sys_183: 9.01618979e-21 + art_sys_184: -5.37085508e-21 + art_sys_185: 5.38810151e-21 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -39852,154 +39852,154 @@ bins: art_sys_35: 0.0 art_sys_36: 0.0 art_sys_37: 0.0 - art_sys_38: 2.36623113e-304 - art_sys_39: 1.76816223e-284 - art_sys_40: 1.18727307e-279 - art_sys_41: -1.62111677e-268 - art_sys_42: 2.99912227e-168 - art_sys_43: 3.73032760e-168 - art_sys_44: 2.16207602e-161 - art_sys_45: -3.83149461e-152 - art_sys_46: 1.00006172e-144 - art_sys_47: 8.05879406e-139 - art_sys_48: -8.57749101e-133 - art_sys_49: 2.82633449e-125 - art_sys_50: 2.46240410e-117 - art_sys_51: -1.96055954e-104 - art_sys_52: -9.11958220e-113 - art_sys_53: -7.49847118e-115 - art_sys_54: 7.91058458e-106 - art_sys_55: 3.54168504e-103 - art_sys_56: -2.12670257e-100 - art_sys_57: -4.88539080e-26 - art_sys_58: 4.10946629e-25 - art_sys_59: -3.18773093e-24 - art_sys_60: -6.25702713e-41 - art_sys_61: 1.76557990e-22 - art_sys_62: 1.92859028e-21 - art_sys_63: 3.74634878e-20 - art_sys_64: 8.57572565e-20 - art_sys_65: 2.10149065e-19 - art_sys_66: -1.29028494e-36 - art_sys_67: -7.84425669e-19 - art_sys_68: -2.35246880e-17 - art_sys_69: -8.95546286e-35 - art_sys_70: 1.00557445e-34 - art_sys_71: 2.40224636e-35 - art_sys_72: -8.91790389e-36 - art_sys_73: -2.80538297e-36 - art_sys_74: -7.46370384e-36 + art_sys_38: 0.0 + art_sys_39: 0.0 + art_sys_40: 0.0 + art_sys_41: 0.0 + art_sys_42: 0.0 + art_sys_43: 0.0 + art_sys_44: 3.35733306e-231 + art_sys_45: 1.69321473e-224 + art_sys_46: 1.77246937e-174 + art_sys_47: 9.81358960e-180 + art_sys_48: -5.29044077e-172 + art_sys_49: 4.51399193e-163 + art_sys_50: -1.93540365e-155 + art_sys_51: 8.03027963e-145 + art_sys_52: 8.92198713e-162 + art_sys_53: 2.84946048e-158 + art_sys_54: 3.37152483e-153 + art_sys_55: 8.31350635e-150 + art_sys_56: 1.34068768e-146 + art_sys_57: 4.77335455e-68 + art_sys_58: 2.36527971e-54 + art_sys_59: -9.07641986e-66 + art_sys_60: 1.09739232e-62 + art_sys_61: 4.32606746e-48 + art_sys_62: -1.20085224e-62 + art_sys_63: -2.02842673e-52 + art_sys_64: -4.88539080e-26 + art_sys_65: 4.10946629e-25 + art_sys_66: -3.18773093e-24 + art_sys_67: -1.76557990e-22 + art_sys_68: -1.92859028e-21 + art_sys_69: 3.74634878e-20 + art_sys_70: -8.57572565e-20 + art_sys_71: 2.10149065e-19 + art_sys_72: -7.84425669e-19 + art_sys_73: 2.35246880e-17 + art_sys_74: -3.40843800e-36 art_sys_75: 2.01482105e-16 - art_sys_76: 3.79961004e-14 - art_sys_77: -3.25034351e-14 - art_sys_78: -2.72217741e-14 + art_sys_76: -4.55511796e-14 + art_sys_77: 2.97718662e-14 + art_sys_78: -6.44525320e-15 art_sys_79: 3.08402114e-15 - art_sys_80: -5.88147506e-28 - art_sys_81: 5.57980473e-14 - art_sys_82: -1.72740351e-14 - art_sys_83: 1.04214746e-14 - art_sys_84: 1.10605697e-14 - art_sys_85: 1.50988563e-14 - art_sys_86: -1.70429442e-14 - art_sys_87: 4.92392206e-14 - art_sys_88: -7.89733278e-14 - art_sys_89: 5.01172575e-13 - art_sys_90: -2.42810508e-28 - art_sys_91: 3.96900341e-26 - art_sys_92: -1.08029317e-27 - art_sys_93: -9.16110679e-26 - art_sys_94: 5.72496369e-28 - art_sys_95: 5.55649114e-28 - art_sys_96: -2.05039361e-12 - art_sys_97: -2.95440803e-28 - art_sys_98: 2.83430783e-28 - art_sys_99: 5.66601270e-28 - art_sys_100: -5.12468210e-27 - art_sys_101: 2.00292353e-28 - art_sys_102: 7.50090614e-11 - art_sys_103: -5.79859081e-25 - art_sys_104: -7.77106011e-27 - art_sys_105: -1.76273071e-10 - art_sys_106: -1.26945164e-26 - art_sys_107: -2.69972486e-26 - art_sys_108: -1.75552139e-25 - art_sys_109: 3.71188173e-26 - art_sys_110: -9.36569237e-10 - art_sys_111: 2.95640904e-27 - art_sys_112: -1.00128270e-23 - art_sys_113: 8.30604141e-10 - art_sys_114: -8.87450678e-26 - art_sys_115: -1.18608316e-24 - art_sys_116: -1.33242108e-25 - art_sys_117: 1.01639621e-08 - art_sys_118: -5.17138961e-25 - art_sys_119: 2.10425811e-21 - art_sys_120: 1.24633940e-25 - art_sys_121: 1.38229681e-23 - art_sys_122: -5.89044853e-24 - art_sys_123: 5.20208874e-19 - art_sys_124: -6.83491729e-25 - art_sys_125: -3.57769977e-23 - art_sys_126: -2.58643559e-21 - art_sys_127: 1.96125736e-20 - art_sys_128: 5.69778740e-16 - art_sys_129: -8.88178723e-15 - art_sys_130: -1.52781537e-14 - art_sys_131: 1.85432163e-13 - art_sys_132: -3.06822906e-18 - art_sys_133: 6.20047802e-16 - art_sys_134: 1.86126680e-12 - art_sys_135: 7.67038162e-16 - art_sys_136: -1.57053195e-11 - art_sys_137: -1.60993566e-14 - art_sys_138: 1.35771786e-11 - art_sys_139: -3.17862923e-11 - art_sys_140: 6.72487569e-22 - art_sys_141: 2.75825582e-11 - art_sys_142: -0.0 - art_sys_143: -1.18719071e-12 - art_sys_144: -6.81537005e-12 - art_sys_145: -1.26048449e-11 - art_sys_146: 1.45444285e-08 - art_sys_147: 3.50298759e-08 - art_sys_148: -1.51972855e-07 - art_sys_149: 8.15466674e-08 - art_sys_150: -5.55760531e-07 - art_sys_151: 1.14914641e-06 - art_sys_152: -5.07129003e-07 - art_sys_153: -4.02617864e-06 - art_sys_154: -3.82125681e-06 - art_sys_155: 7.58387139e-08 - art_sys_156: 7.62819284e-07 - art_sys_157: 3.43824065e-07 - art_sys_158: -0.0 - art_sys_159: 1.14800363e-11 - art_sys_160: 1.14800363e-11 - art_sys_161: 1.79401266e-08 - art_sys_162: -4.28357982e-21 - art_sys_163: -0.0 - art_sys_164: -1.76619848e-21 - art_sys_165: 1.70354891e-15 - art_sys_166: -8.39219855e-16 - art_sys_167: 1.91495041e-15 - art_sys_168: -4.07344529e-16 - art_sys_169: -2.80493304e-16 - art_sys_170: -2.95788281e-16 - art_sys_171: -6.31111888e-17 - art_sys_172: -3.83303748e-17 - art_sys_173: 2.83022133e-17 - art_sys_174: 2.50956015e-21 - art_sys_175: -2.88976438e-18 - art_sys_176: -9.12066324e-19 - art_sys_177: 1.92251249e-18 - art_sys_178: 3.93946305e-19 - art_sys_179: 3.92910429e-19 - art_sys_180: -2.33909864e-20 - art_sys_181: -6.12817438e-21 - art_sys_182: -2.47748263e-20 - art_sys_183: 5.73111953e-21 - art_sys_184: 1.12718621e-21 - art_sys_185: -3.28707313e-21 + art_sys_80: 5.84255844e-14 + art_sys_81: 1.10605697e-14 + art_sys_82: 2.70223162e-27 + art_sys_83: 2.94654073e-14 + art_sys_84: -1.78601117e-14 + art_sys_85: 2.35910237e-14 + art_sys_86: -2.44346682e-14 + art_sys_87: -4.92392206e-14 + art_sys_88: -7.89733277e-14 + art_sys_89: -6.43631238e-16 + art_sys_90: 5.01172576e-13 + art_sys_91: -1.38133220e-27 + art_sys_92: 2.23302727e-16 + art_sys_93: 5.99488877e-16 + art_sys_94: -2.05039360e-12 + art_sys_95: -7.79101873e-26 + art_sys_96: -1.16246335e-28 + art_sys_97: 4.87930057e-29 + art_sys_98: 3.64738539e-25 + art_sys_99: 1.69626784e-26 + art_sys_100: 6.88220615e-24 + art_sys_101: 2.07675077e-25 + art_sys_102: -1.52559879e-25 + art_sys_103: 1.25518293e-24 + art_sys_104: 1.35205796e-26 + art_sys_105: 7.50065442e-11 + art_sys_106: -3.15220352e-26 + art_sys_107: 5.94071280e-25 + art_sys_108: 1.76272807e-10 + art_sys_109: -9.36567709e-10 + art_sys_110: -3.16786192e-23 + art_sys_111: 1.36366348e-24 + art_sys_112: 1.80131539e-24 + art_sys_113: 8.00802156e-24 + art_sys_114: 8.30564720e-10 + art_sys_115: -3.48143133e-25 + art_sys_116: -3.38004568e-24 + art_sys_117: -1.01640281e-08 + art_sys_118: 2.10449093e-24 + art_sys_119: -5.42786460e-22 + art_sys_120: 9.37633239e-24 + art_sys_121: 1.45443477e-08 + art_sys_122: 1.25486955e-23 + art_sys_123: -6.74907598e-21 + art_sys_124: -7.33294926e-24 + art_sys_125: 3.50302244e-08 + art_sys_126: 9.46092432e-22 + art_sys_127: -1.02911772e-19 + art_sys_128: -2.72195234e-23 + art_sys_129: 1.51969349e-07 + art_sys_130: -6.45985739e-16 + art_sys_131: 8.15466767e-08 + art_sys_132: 8.84794400e-22 + art_sys_133: -6.42828583e-14 + art_sys_134: 8.30873388e-20 + art_sys_135: -3.43586625e-21 + art_sys_136: 5.55448855e-07 + art_sys_137: -3.70196171e-13 + art_sys_138: 9.71010048e-20 + art_sys_139: -3.37806474e-14 + art_sys_140: 1.14954267e-06 + art_sys_141: -1.88052548e-15 + art_sys_142: 5.52850567e-18 + art_sys_143: -1.39672528e-13 + art_sys_144: -5.06941478e-07 + art_sys_145: 1.43545975e-16 + art_sys_146: 1.20405645e-12 + art_sys_147: -4.03236847e-06 + art_sys_148: 3.90645573e-06 + art_sys_149: 2.05624945e-13 + art_sys_150: -3.74234039e-11 + art_sys_151: -1.76196623e-10 + art_sys_152: -4.82704182e-08 + art_sys_153: 1.34402946e-10 + art_sys_154: -5.53587303e-21 + art_sys_155: -8.26292461e-07 + art_sys_156: 0.0 + art_sys_157: -5.28287045e-12 + art_sys_158: 0.0 + art_sys_159: 2.92811904e-11 + art_sys_160: 2.87092749e-07 + art_sys_161: -2.32836013e-12 + art_sys_162: -2.32836013e-12 + art_sys_163: -8.44131408e-09 + art_sys_164: -8.44131408e-09 + art_sys_165: 6.80979935e-22 + art_sys_166: -3.48418209e-22 + art_sys_167: -0.0 + art_sys_168: -7.68756742e-16 + art_sys_169: -3.27383306e-16 + art_sys_170: -5.05570139e-16 + art_sys_171: 1.12049777e-16 + art_sys_172: 6.22339913e-17 + art_sys_173: 6.55987840e-17 + art_sys_174: -6.68643840e-18 + art_sys_175: -6.01203739e-18 + art_sys_176: 6.76692436e-18 + art_sys_177: -1.43291189e-18 + art_sys_178: 1.76362405e-19 + art_sys_179: 1.31140942e-20 + art_sys_180: -2.39060178e-20 + art_sys_181: -1.58095653e-18 + art_sys_182: 1.32365854e-19 + art_sys_183: 5.52457091e-21 + art_sys_184: 3.00625307e-21 + art_sys_185: -7.45257879e-21 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -40143,154 +40143,154 @@ bins: art_sys_35: 0.0 art_sys_36: 0.0 art_sys_37: 0.0 - art_sys_38: -3.69723614e-306 - art_sys_39: 9.60547675e-285 - art_sys_40: 6.44981941e-280 - art_sys_41: -8.80665613e-269 - art_sys_42: -1.65133671e-169 - art_sys_43: -2.05394324e-169 - art_sys_44: -1.19045347e-162 - art_sys_45: 2.10964647e-153 - art_sys_46: -5.50640648e-146 - art_sys_47: -4.43722573e-140 - art_sys_48: 4.72282373e-134 - art_sys_49: -1.55619861e-126 - art_sys_50: -1.35581611e-118 - art_sys_51: 1.07949715e-105 - art_sys_52: 5.02130275e-114 - art_sys_53: 4.12870822e-116 - art_sys_54: -4.35562060e-107 - art_sys_55: -1.95007539e-104 - art_sys_56: 1.17097661e-101 - art_sys_57: 2.68992989e-27 - art_sys_58: -1.05202758e-25 - art_sys_59: -7.81142500e-25 - art_sys_60: -3.69569691e-42 - art_sys_61: 1.27999187e-23 - art_sys_62: 2.02928855e-22 - art_sys_63: 2.42751732e-21 - art_sys_64: 6.28895478e-21 - art_sys_65: 1.88434804e-20 - art_sys_66: 4.93665295e-37 - art_sys_67: 4.28236886e-19 - art_sys_68: -1.97412070e-18 - art_sys_69: -5.73901589e-36 - art_sys_70: 9.65899210e-36 - art_sys_71: 5.77576755e-37 - art_sys_72: 2.95740044e-37 - art_sys_73: 1.19682810e-36 - art_sys_74: -5.51073200e-37 + art_sys_38: 0.0 + art_sys_39: 0.0 + art_sys_40: 0.0 + art_sys_41: 0.0 + art_sys_42: 0.0 + art_sys_43: 0.0 + art_sys_44: -2.13373496e-232 + art_sys_45: -1.07611364e-225 + art_sys_46: -9.79197057e-176 + art_sys_47: -5.42149738e-181 + art_sys_48: 2.92269311e-173 + art_sys_49: -2.49374555e-164 + art_sys_50: 1.06920976e-156 + art_sys_51: -4.43631146e-146 + art_sys_52: -4.92893342e-163 + art_sys_53: -1.57417858e-159 + art_sys_54: -1.86259195e-154 + art_sys_55: -4.59277947e-151 + art_sys_56: -7.40660148e-148 + art_sys_57: -2.62824228e-69 + art_sys_58: -1.30233949e-55 + art_sys_59: 4.99754003e-67 + art_sys_60: -6.04231864e-64 + art_sys_61: -2.38196289e-49 + art_sys_62: 6.61199559e-64 + art_sys_63: 1.11686589e-53 + art_sys_64: 2.68992989e-27 + art_sys_65: -1.05202758e-25 + art_sys_66: -7.81142500e-25 + art_sys_67: -1.27999187e-23 + art_sys_68: -2.02928855e-22 + art_sys_69: 2.42751732e-21 + art_sys_70: -6.28895478e-21 + art_sys_71: 1.88434804e-20 + art_sys_72: 4.28236886e-19 + art_sys_73: 1.97412070e-18 + art_sys_74: -1.08749023e-36 art_sys_75: 2.58065164e-17 - art_sys_76: 1.91020429e-14 - art_sys_77: -1.66481220e-14 - art_sys_78: -1.68019572e-14 + art_sys_76: 3.95787230e-15 + art_sys_77: 8.01645522e-16 + art_sys_78: 1.98871606e-14 art_sys_79: 2.29073936e-16 - art_sys_80: -5.31338590e-29 - art_sys_81: 7.80592690e-14 - art_sys_82: -4.64376681e-14 - art_sys_83: 2.49709182e-14 - art_sys_84: 9.50612920e-16 - art_sys_85: 3.86467849e-14 - art_sys_86: -4.30836102e-14 - art_sys_87: 5.73965252e-15 + art_sys_80: -4.00723630e-14 + art_sys_81: 9.50612920e-16 + art_sys_82: 2.32256587e-28 + art_sys_83: -7.47502385e-15 + art_sys_84: 3.42415275e-17 + art_sys_85: 5.23103260e-16 + art_sys_86: -4.01505720e-15 + art_sys_87: -5.73965252e-15 art_sys_88: 2.31819662e-14 - art_sys_89: -1.39614179e-14 - art_sys_90: -4.42922176e-29 - art_sys_91: 3.41347455e-27 - art_sys_92: -9.67745487e-29 - art_sys_93: -7.87460813e-27 - art_sys_94: 4.80032208e-29 - art_sys_95: 5.90419755e-29 - art_sys_96: 1.16753987e-14 - art_sys_97: 5.76940516e-29 - art_sys_98: 1.72632504e-29 - art_sys_99: 4.39342282e-29 - art_sys_100: 2.21338357e-27 - art_sys_101: -3.13935627e-29 - art_sys_102: 1.39575524e-11 - art_sys_103: -6.69542759e-26 - art_sys_104: -4.10155279e-28 - art_sys_105: 1.67269555e-11 - art_sys_106: -5.24951210e-27 - art_sys_107: -6.62144651e-27 - art_sys_108: 6.19243279e-27 - art_sys_109: 5.79445803e-27 - art_sys_110: -1.46699690e-10 - art_sys_111: -1.36570373e-27 - art_sys_112: 4.35197586e-25 - art_sys_113: -4.41897289e-10 - art_sys_114: 5.77027345e-26 - art_sys_115: -2.40758145e-26 - art_sys_116: -1.62521867e-26 - art_sys_117: 6.55199355e-10 - art_sys_118: -1.98693685e-26 - art_sys_119: -3.68886807e-23 - art_sys_120: 1.45475248e-26 - art_sys_121: -5.33867299e-25 - art_sys_122: 3.99692901e-25 - art_sys_123: 2.14390361e-20 - art_sys_124: -1.31747542e-25 - art_sys_125: 2.26435512e-23 - art_sys_126: 2.34167508e-22 - art_sys_127: 2.26446447e-20 - art_sys_128: 3.29664397e-18 - art_sys_129: -4.41266641e-16 - art_sys_130: 2.66502765e-14 - art_sys_131: 2.03359428e-13 - art_sys_132: -2.88684473e-18 - art_sys_133: 6.03561353e-16 - art_sys_134: 1.71760733e-12 - art_sys_135: 6.88015480e-16 - art_sys_136: -1.41081649e-11 - art_sys_137: -1.42854792e-14 - art_sys_138: 1.19201036e-11 - art_sys_139: -7.90429376e-12 - art_sys_140: 3.12554263e-22 - art_sys_141: 1.01255494e-11 - art_sys_142: -0.0 - art_sys_143: -5.78575863e-13 - art_sys_144: -3.35674795e-12 - art_sys_145: -6.50055226e-12 - art_sys_146: 4.92403519e-09 - art_sys_147: -6.61739474e-09 - art_sys_148: -1.71492592e-08 - art_sys_149: 6.95769447e-08 - art_sys_150: 4.38659376e-08 - art_sys_151: 2.67859591e-07 - art_sys_152: 5.62253560e-07 - art_sys_153: -2.86655305e-07 - art_sys_154: -2.27747907e-06 - art_sys_155: -2.53175383e-06 - art_sys_156: -3.15588270e-07 - art_sys_157: -4.41089970e-07 - art_sys_158: 0.0 - art_sys_159: 2.38298542e-14 - art_sys_160: 2.38298542e-14 - art_sys_161: -3.51059329e-08 - art_sys_162: 8.27590792e-21 - art_sys_163: 0.0 - art_sys_164: 3.38880163e-21 - art_sys_165: 5.04777377e-15 - art_sys_166: -2.26557144e-15 - art_sys_167: 3.92680900e-15 - art_sys_168: -5.85641282e-16 - art_sys_169: -3.02217432e-16 - art_sys_170: -2.48763858e-16 - art_sys_171: -3.28002704e-17 - art_sys_172: -1.25687018e-17 - art_sys_173: 7.93274322e-18 - art_sys_174: 4.25028035e-20 - art_sys_175: 8.91933245e-19 - art_sys_176: 1.84141223e-18 - art_sys_177: -6.29300270e-19 - art_sys_178: 3.30637546e-19 - art_sys_179: 1.31165278e-19 - art_sys_180: -2.15666290e-19 - art_sys_181: -1.29568545e-19 - art_sys_182: -5.87728518e-20 - art_sys_183: -3.20514898e-20 - art_sys_184: 1.64858673e-20 - art_sys_185: 4.62535489e-21 + art_sys_89: -3.00623707e-16 + art_sys_90: -1.39614179e-14 + art_sys_91: -1.50583878e-28 + art_sys_92: -1.20029411e-15 + art_sys_93: -1.99171767e-15 + art_sys_94: 1.16753986e-14 + art_sys_95: 1.01558383e-26 + art_sys_96: -1.61815479e-29 + art_sys_97: 2.19990982e-29 + art_sys_98: 4.54031381e-26 + art_sys_99: 1.83544362e-27 + art_sys_100: 7.82169023e-25 + art_sys_101: 2.43657051e-26 + art_sys_102: 2.30910148e-26 + art_sys_103: 1.48524187e-25 + art_sys_104: -1.26618142e-26 + art_sys_105: 1.39577975e-11 + art_sys_106: -6.00503843e-27 + art_sys_107: -3.46093656e-26 + art_sys_108: -1.67271050e-11 + art_sys_109: -1.46701373e-10 + art_sys_110: 8.52622816e-25 + art_sys_111: -2.75603018e-25 + art_sys_112: -2.15548411e-25 + art_sys_113: -3.18667826e-25 + art_sys_114: -4.41899982e-10 + art_sys_115: 7.97384225e-26 + art_sys_116: 2.87593985e-25 + art_sys_117: -6.55225992e-10 + art_sys_118: -1.23425962e-25 + art_sys_119: 3.81967900e-24 + art_sys_120: 1.88819711e-24 + art_sys_121: 4.92405870e-09 + art_sys_122: -1.95180893e-24 + art_sys_123: 2.17801302e-23 + art_sys_124: 1.16026158e-24 + art_sys_125: -6.61747272e-09 + art_sys_126: 1.28872510e-22 + art_sys_127: -3.53906830e-19 + art_sys_128: -2.51917025e-24 + art_sys_129: 1.71468858e-08 + art_sys_130: 1.66528677e-16 + art_sys_131: 6.95768577e-08 + art_sys_132: 9.80497851e-24 + art_sys_133: 1.99537821e-14 + art_sys_134: -1.97368412e-20 + art_sys_135: 1.27588724e-21 + art_sys_136: -4.39047291e-08 + art_sys_137: 7.18568030e-14 + art_sys_138: -3.22452780e-20 + art_sys_139: -2.09192970e-14 + art_sys_140: 2.67679002e-07 + art_sys_141: 3.37620601e-16 + art_sys_142: -1.27259330e-18 + art_sys_143: 4.41142446e-14 + art_sys_144: 5.61100952e-07 + art_sys_145: 1.27197546e-16 + art_sys_146: 1.19052816e-12 + art_sys_147: -2.86567094e-07 + art_sys_148: 2.43550595e-06 + art_sys_149: 5.73918961e-14 + art_sys_150: -1.05791479e-11 + art_sys_151: -5.65520695e-11 + art_sys_152: 2.52556246e-06 + art_sys_153: 4.82778681e-11 + art_sys_154: -2.94660114e-21 + art_sys_155: 4.05843539e-07 + art_sys_156: -0.0 + art_sys_157: -2.53840207e-12 + art_sys_158: -0.0 + art_sys_159: 3.08167739e-11 + art_sys_160: -4.73429351e-07 + art_sys_161: -1.07215122e-11 + art_sys_162: -1.07215122e-11 + art_sys_163: 1.10563367e-08 + art_sys_164: 1.10563367e-08 + art_sys_165: -2.23407637e-21 + art_sys_166: 1.14913152e-21 + art_sys_167: 0.0 + art_sys_168: 9.20023420e-16 + art_sys_169: 4.47851544e-16 + art_sys_170: 5.60263967e-16 + art_sys_171: -1.20343064e-16 + art_sys_172: -6.47836798e-17 + art_sys_173: -5.98064911e-17 + art_sys_174: 5.98161898e-18 + art_sys_175: 4.92010611e-18 + art_sys_176: -5.88317832e-18 + art_sys_177: 1.36439716e-18 + art_sys_178: -2.29516624e-19 + art_sys_179: 6.23559546e-20 + art_sys_180: 4.73369183e-20 + art_sys_181: 1.57248106e-18 + art_sys_182: -1.31779865e-19 + art_sys_183: 8.76180581e-21 + art_sys_184: -3.33984147e-21 + art_sys_185: 8.39862425e-21 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -40434,154 +40434,154 @@ bins: art_sys_35: 0.0 art_sys_36: 0.0 art_sys_37: 0.0 - art_sys_38: -1.15538629e-307 - art_sys_39: 1.23838073e-285 - art_sys_40: 8.31539366e-281 - art_sys_41: -1.13539323e-269 - art_sys_42: -2.99898924e-170 - art_sys_43: -3.73016215e-170 - art_sys_44: -2.16198012e-163 - art_sys_45: 3.83132466e-154 - art_sys_46: -1.00001736e-146 - art_sys_47: -8.05843662e-141 - art_sys_48: 8.57711057e-135 - art_sys_49: -2.82620913e-127 - art_sys_50: -2.46229488e-119 - art_sys_51: 1.96047258e-106 - art_sys_52: 9.11917771e-115 - art_sys_53: 7.49813859e-117 - art_sys_54: -7.91023371e-108 - art_sys_55: -3.54152795e-105 - art_sys_56: 2.12660824e-102 - art_sys_57: 4.88517613e-28 - art_sys_58: -1.85361059e-26 - art_sys_59: -1.10305955e-25 - art_sys_60: -3.66442099e-43 - art_sys_61: 1.08795800e-24 - art_sys_62: 2.99808523e-23 - art_sys_63: 1.37111886e-22 - art_sys_64: 4.77718831e-22 - art_sys_65: 1.63180738e-21 - art_sys_66: 1.71392262e-37 - art_sys_67: 1.42181339e-19 - art_sys_68: 1.87062431e-20 - art_sys_69: 5.81375629e-37 - art_sys_70: 2.68765371e-37 - art_sys_71: -4.31091528e-37 - art_sys_72: 3.06812453e-37 - art_sys_73: 3.52034180e-37 - art_sys_74: 3.76139822e-38 + art_sys_38: 0.0 + art_sys_39: 0.0 + art_sys_40: 0.0 + art_sys_41: 0.0 + art_sys_42: 0.0 + art_sys_43: 0.0 + art_sys_44: -3.90000745e-233 + art_sys_45: -1.96690364e-226 + art_sys_46: -1.77809757e-176 + art_sys_47: -9.84475112e-182 + art_sys_48: 5.30723974e-174 + art_sys_49: -4.52832540e-165 + art_sys_50: 1.94154922e-157 + art_sys_51: -8.05577853e-147 + art_sys_52: -8.95031749e-164 + art_sys_53: -2.85850850e-160 + art_sys_54: -3.38223058e-155 + art_sys_55: -8.33990459e-152 + art_sys_56: -1.34494482e-148 + art_sys_57: -4.77314536e-70 + art_sys_58: -2.36517605e-56 + art_sys_59: 9.07602208e-68 + art_sys_60: -1.09734423e-64 + art_sys_61: -4.32587786e-50 + art_sys_62: 1.20079214e-64 + art_sys_63: 2.02833783e-54 + art_sys_64: 4.88517613e-28 + art_sys_65: -1.85361059e-26 + art_sys_66: -1.10305955e-25 + art_sys_67: -1.08795800e-24 + art_sys_68: -2.99808523e-23 + art_sys_69: 1.37111886e-22 + art_sys_70: -4.77718831e-22 + art_sys_71: 1.63180738e-21 + art_sys_72: 1.42181339e-19 + art_sys_73: -1.87062431e-20 + art_sys_74: -2.21893775e-37 art_sys_75: 1.36728215e-18 - art_sys_76: -6.87310915e-15 - art_sys_77: -5.49470958e-15 - art_sys_78: 1.57244141e-14 + art_sys_76: -1.86062489e-15 + art_sys_77: 3.80379500e-15 + art_sys_78: 4.48062736e-15 art_sys_79: 1.06453686e-17 - art_sys_80: -1.94893958e-30 - art_sys_81: -1.65105081e-14 - art_sys_82: 3.17212098e-14 - art_sys_83: -6.29691305e-15 - art_sys_84: 3.70690699e-17 - art_sys_85: -1.69954167e-14 - art_sys_86: 1.59751732e-14 - art_sys_87: 3.63332719e-16 - art_sys_88: 6.94831522e-15 - art_sys_89: -1.39992318e-14 - art_sys_90: -4.59136425e-30 - art_sys_91: 1.33268095e-28 - art_sys_92: -4.35550275e-30 - art_sys_93: -3.07238912e-28 - art_sys_94: 1.63581246e-30 - art_sys_95: 2.34767015e-30 - art_sys_96: 5.17222108e-14 - art_sys_97: 1.95548664e-29 - art_sys_98: -8.93784244e-31 - art_sys_99: 4.28631208e-31 - art_sys_100: 5.78214464e-28 - art_sys_101: -1.13782994e-29 - art_sys_102: 6.40183575e-13 - art_sys_103: -4.03659730e-27 - art_sys_104: 1.38098162e-28 - art_sys_105: 9.04521441e-12 - art_sys_106: -5.82454681e-28 - art_sys_107: -5.35297162e-28 - art_sys_108: 7.35199914e-27 - art_sys_109: -3.27461569e-28 - art_sys_110: 2.44276978e-12 - art_sys_111: -3.72628823e-28 - art_sys_112: 3.16815228e-25 - art_sys_113: -1.17143402e-10 - art_sys_114: 1.46467116e-26 - art_sys_115: 2.61075641e-26 - art_sys_116: 3.84134338e-27 - art_sys_117: -2.57599350e-10 - art_sys_118: 1.57123900e-26 - art_sys_119: -6.00817116e-23 - art_sys_120: -1.98290150e-27 - art_sys_121: -3.34686230e-25 - art_sys_122: 3.58388701e-25 - art_sys_123: -4.06581869e-20 - art_sys_124: -9.12187289e-27 - art_sys_125: 6.29161840e-24 - art_sys_126: 1.57699605e-22 - art_sys_127: 3.71233321e-21 - art_sys_128: -2.06781490e-17 - art_sys_129: 2.75457678e-16 - art_sys_130: 6.23574106e-15 - art_sys_131: 3.28655951e-14 - art_sys_132: -4.43935037e-19 - art_sys_133: 9.39246671e-17 - art_sys_134: 2.62262414e-13 - art_sys_135: 1.03903110e-16 - art_sys_136: -2.13189850e-12 - art_sys_137: -2.14509640e-15 - art_sys_138: 1.77833047e-12 - art_sys_139: 6.91524598e-13 - art_sys_140: -7.46219475e-23 - art_sys_141: 3.60964510e-13 - art_sys_142: 0.0 - art_sys_143: -5.91675178e-14 - art_sys_144: -3.63262730e-13 - art_sys_145: -4.99399175e-13 - art_sys_146: 4.10134567e-10 - art_sys_147: -3.05224185e-09 - art_sys_148: 4.29430401e-09 - art_sys_149: 1.02486627e-08 - art_sys_150: 4.67351891e-08 - art_sys_151: -2.82936127e-08 - art_sys_152: 1.77659291e-07 - art_sys_153: 3.48760722e-07 - art_sys_154: -1.94157450e-07 - art_sys_155: -1.48171933e-06 - art_sys_156: -1.21762558e-06 - art_sys_157: 6.65147351e-07 + art_sys_80: 5.16177870e-14 + art_sys_81: 3.70690699e-17 + art_sys_82: 9.05620070e-30 + art_sys_83: 3.15060807e-14 + art_sys_84: -2.01405210e-14 + art_sys_85: 3.03749513e-14 + art_sys_86: -3.36984508e-14 + art_sys_87: -3.63332719e-16 + art_sys_88: 6.94831521e-15 + art_sys_89: -6.44477871e-15 + art_sys_90: -1.39992318e-14 + art_sys_91: -9.49819276e-30 + art_sys_92: -3.52011216e-15 + art_sys_93: -7.29725227e-15 + art_sys_94: 5.17222105e-14 + art_sys_95: 3.89743774e-27 + art_sys_96: -1.42387912e-30 + art_sys_97: 4.12102246e-30 + art_sys_98: 3.36175522e-27 + art_sys_99: 9.19017619e-29 + art_sys_100: 4.58596235e-26 + art_sys_101: 1.57224431e-27 + art_sys_102: 8.25727312e-27 + art_sys_103: 9.80282545e-27 + art_sys_104: -3.40878588e-27 + art_sys_105: 6.40314006e-13 + art_sys_106: -8.92526429e-28 + art_sys_107: -2.11614783e-26 + art_sys_108: -9.04523453e-12 + art_sys_109: 2.44238253e-12 + art_sys_110: 8.75772576e-25 + art_sys_111: -8.99231573e-26 + art_sys_112: -8.84060418e-26 + art_sys_113: -2.44954002e-25 + art_sys_114: -1.17142429e-10 + art_sys_115: 2.79824592e-26 + art_sys_116: 1.49908233e-25 + art_sys_117: 2.57596673e-10 + art_sys_118: -7.77354577e-26 + art_sys_119: 1.37980106e-23 + art_sys_120: 1.14396533e-25 + art_sys_121: 4.10143698e-10 + art_sys_122: -5.96673305e-25 + art_sys_123: 2.02199580e-22 + art_sys_124: 5.43512334e-25 + art_sys_125: -3.05227465e-09 + art_sys_126: -5.94362359e-24 + art_sys_127: -4.07829650e-20 + art_sys_128: 2.66507087e-25 + art_sys_129: -4.29461669e-09 + art_sys_130: 5.57625249e-17 + art_sys_131: 1.02486435e-08 + art_sys_132: -2.00643119e-23 + art_sys_133: 7.40442650e-15 + art_sys_134: -8.18994052e-21 + art_sys_135: 4.56643983e-22 + art_sys_136: -4.67210648e-08 + art_sys_137: 3.25897229e-14 + art_sys_138: -1.11372033e-20 + art_sys_139: -2.51863427e-15 + art_sys_140: -2.83697488e-08 + art_sys_141: 1.61097880e-16 + art_sys_142: -5.31044277e-19 + art_sys_143: 1.58441099e-14 + art_sys_144: 1.77383444e-07 + art_sys_145: 2.03611091e-17 + art_sys_146: 1.92065873e-13 + art_sys_147: 3.49334844e-07 + art_sys_148: 2.09912373e-07 + art_sys_149: -2.93371819e-15 + art_sys_150: 4.99528610e-13 + art_sys_151: 5.46888889e-13 + art_sys_152: 1.15099841e-06 + art_sys_153: 1.00564977e-12 + art_sys_154: -3.75700486e-22 + art_sys_155: 1.24082648e-06 + art_sys_156: -0.0 + art_sys_157: -1.46467519e-12 art_sys_158: -0.0 - art_sys_159: 5.11034051e-12 - art_sys_160: 5.11034051e-12 - art_sys_161: 2.86085874e-08 - art_sys_162: -6.79700918e-21 - art_sys_163: -0.0 - art_sys_164: -2.79392936e-21 - art_sys_165: -2.59391391e-15 - art_sys_166: 2.20236558e-15 - art_sys_167: -3.98372405e-15 - art_sys_168: 1.35870008e-15 - art_sys_169: 6.78022999e-16 - art_sys_170: 8.13955774e-16 - art_sys_171: 1.66248752e-16 - art_sys_172: 8.88208810e-17 - art_sys_173: -8.81895331e-17 - art_sys_174: -1.78276309e-19 - art_sys_175: 8.20624522e-18 - art_sys_176: 6.70536477e-18 - art_sys_177: -4.95737223e-18 - art_sys_178: -2.25292528e-18 - art_sys_179: -1.02293033e-18 - art_sys_180: 3.51791309e-19 - art_sys_181: 1.33137118e-19 - art_sys_182: 7.46358787e-20 - art_sys_183: 2.34530729e-20 - art_sys_184: -8.29978042e-21 - art_sys_185: -4.24681580e-21 + art_sys_159: 1.93621348e-12 + art_sys_160: 7.04701443e-07 + art_sys_161: -1.80866891e-11 + art_sys_162: -1.80866891e-11 + art_sys_163: 2.41716246e-09 + art_sys_164: 2.41716246e-09 + art_sys_165: 3.66050113e-21 + art_sys_166: -1.89931101e-21 + art_sys_167: -0.0 + art_sys_168: 2.08991448e-15 + art_sys_169: 1.10221452e-15 + art_sys_170: 1.26090625e-15 + art_sys_171: -2.52556195e-16 + art_sys_172: -1.36887249e-16 + art_sys_173: -1.37053723e-16 + art_sys_174: 1.14605466e-17 + art_sys_175: 1.93258013e-17 + art_sys_176: -1.16723955e-17 + art_sys_177: 3.40189676e-18 + art_sys_178: -1.35223243e-18 + art_sys_179: -2.41300955e-19 + art_sys_180: -6.49992269e-20 + art_sys_181: 7.05245691e-18 + art_sys_182: -6.31575400e-19 + art_sys_183: 2.56455758e-19 + art_sys_184: -1.05750302e-19 + art_sys_185: -3.08116041e-20 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -40726,153 +40726,153 @@ bins: art_sys_36: 0.0 art_sys_37: 0.0 art_sys_38: 0.0 - art_sys_39: 1.11952209e-288 - art_sys_40: 7.51728983e-284 - art_sys_41: -1.02641924e-272 - art_sys_42: -2.33838786e-173 - art_sys_43: -2.90850189e-173 - art_sys_44: -1.68575065e-166 - art_sys_45: 2.98738087e-157 - art_sys_46: -7.79738861e-150 - art_sys_47: -6.28336711e-144 - art_sys_48: 6.68779032e-138 - art_sys_49: -2.20366683e-130 - art_sys_50: -1.91991368e-122 - art_sys_51: 1.52863012e-109 - art_sys_52: 7.11045380e-118 - art_sys_53: 5.84648855e-120 - art_sys_54: -6.16780955e-111 - art_sys_55: -2.76141903e-108 - art_sys_56: 1.65817030e-105 - art_sys_57: 3.80909612e-31 - art_sys_58: -1.86010871e-29 - art_sys_59: -1.04737674e-28 - art_sys_60: -1.66775983e-46 - art_sys_61: 6.11669721e-28 - art_sys_62: 3.15066711e-26 - art_sys_63: -2.94781022e-26 - art_sys_64: 1.03498373e-25 - art_sys_65: 3.25068340e-25 - art_sys_66: 2.60696625e-40 - art_sys_67: 2.13326673e-22 - art_sys_68: 3.83623345e-22 - art_sys_69: 2.18420689e-39 - art_sys_70: -1.14659196e-39 - art_sys_71: -9.75293204e-40 - art_sys_72: 5.70499644e-40 - art_sys_73: 2.87270247e-40 - art_sys_74: 1.44316320e-40 + art_sys_39: 0.0 + art_sys_40: 0.0 + art_sys_41: 0.0 + art_sys_42: 0.0 + art_sys_43: 0.0 + art_sys_44: -3.23653832e-236 + art_sys_45: -1.63229404e-229 + art_sys_46: -1.38807295e-179 + art_sys_47: -7.68531092e-185 + art_sys_48: 4.14309991e-177 + art_sys_49: -3.53503997e-168 + art_sys_50: 1.51567158e-160 + art_sys_51: -6.28874838e-150 + art_sys_52: -6.98707074e-167 + art_sys_53: -2.23149639e-163 + art_sys_54: -2.64034035e-158 + art_sys_55: -6.51055156e-155 + art_sys_56: -1.04993199e-151 + art_sys_57: -3.72174304e-73 + art_sys_58: -1.84418802e-59 + art_sys_59: 7.07680564e-71 + art_sys_60: -8.55627255e-68 + art_sys_61: -3.37299718e-53 + art_sys_62: 9.36286484e-68 + art_sys_63: 1.58154668e-57 + art_sys_64: 3.80909612e-31 + art_sys_65: -1.86010871e-29 + art_sys_66: -1.04737674e-28 + art_sys_67: -6.11669721e-28 + art_sys_68: -3.15066711e-26 + art_sys_69: -2.94781022e-26 + art_sys_70: -1.03498373e-25 + art_sys_71: 3.25068340e-25 + art_sys_72: 2.13326673e-22 + art_sys_73: -3.83623345e-22 + art_sys_74: -2.62728448e-40 art_sys_75: -2.28059340e-21 - art_sys_76: 8.99889159e-15 - art_sys_77: 1.77776288e-14 - art_sys_78: 2.86203018e-15 + art_sys_76: -4.10201080e-15 + art_sys_77: -2.82901401e-15 + art_sys_78: 2.56053730e-15 art_sys_79: -8.74768233e-22 - art_sys_80: 3.71919737e-33 - art_sys_81: 1.74847737e-14 - art_sys_82: -1.62933505e-14 - art_sys_83: 8.73032223e-15 - art_sys_84: -5.21314259e-20 - art_sys_85: 1.29107986e-14 - art_sys_86: -1.41723217e-14 - art_sys_87: -1.85205421e-19 - art_sys_88: 9.30766122e-18 - art_sys_89: -2.37463829e-17 - art_sys_90: -2.69256679e-34 - art_sys_91: -1.86643161e-31 - art_sys_92: 4.16496032e-33 - art_sys_93: 4.31789659e-31 - art_sys_94: -2.47233284e-33 - art_sys_95: 5.45824741e-34 - art_sys_96: 9.09109528e-17 - art_sys_97: 2.76450320e-32 - art_sys_98: -5.21534698e-33 - art_sys_99: -4.73238903e-33 - art_sys_100: 6.72096405e-31 - art_sys_101: -1.67995440e-32 - art_sys_102: -2.65111845e-15 - art_sys_103: 2.68744249e-30 - art_sys_104: 4.37327601e-31 - art_sys_105: 1.30246354e-14 - art_sys_106: 5.75251118e-31 - art_sys_107: 1.72263478e-30 - art_sys_108: 1.60660269e-29 - art_sys_109: -2.87651678e-30 - art_sys_110: 5.40969578e-14 - art_sys_111: -4.04320177e-31 - art_sys_112: 5.22053160e-28 - art_sys_113: -1.13391054e-13 - art_sys_114: 1.32159935e-29 - art_sys_115: 5.19861215e-29 - art_sys_116: 1.80885551e-29 - art_sys_117: -1.00129879e-12 - art_sys_118: 5.10915398e-29 - art_sys_119: -1.15027142e-25 - art_sys_120: -1.17949777e-29 - art_sys_121: 3.36694369e-28 - art_sys_122: 1.16703650e-27 - art_sys_123: -3.58020644e-22 - art_sys_124: -5.99972550e-29 - art_sys_125: 1.65340119e-26 - art_sys_126: 5.12908008e-25 - art_sys_127: 3.57555482e-24 - art_sys_128: -5.86860648e-20 - art_sys_129: 1.21231383e-18 - art_sys_130: 1.35398852e-17 - art_sys_131: 3.01016746e-17 - art_sys_132: -2.79815311e-22 - art_sys_133: 6.64102923e-20 - art_sys_134: 1.52647096e-16 - art_sys_135: 5.07409704e-20 - art_sys_136: -1.05522711e-15 - art_sys_137: -6.76880851e-19 - art_sys_138: 9.73596415e-17 - art_sys_139: 7.54558116e-14 - art_sys_140: 5.02298121e-25 - art_sys_141: -2.73847122e-14 - art_sys_142: -0.0 - art_sys_143: -3.51175917e-14 - art_sys_144: -1.93044877e-13 - art_sys_145: 4.14618413e-14 - art_sys_146: -1.17902122e-12 - art_sys_147: -9.30590363e-12 - art_sys_148: 4.31866809e-11 - art_sys_149: 9.09689063e-13 - art_sys_150: 6.74623244e-10 - art_sys_151: -2.67301573e-09 - art_sys_152: -1.04842257e-09 - art_sys_153: 2.57449669e-08 - art_sys_154: 1.05685469e-07 - art_sys_155: 1.95406141e-07 - art_sys_156: -1.96783288e-07 - art_sys_157: 6.19332540e-07 + art_sys_80: 2.44296120e-15 + art_sys_81: -5.21314259e-20 + art_sys_82: -1.27500950e-32 + art_sys_83: -8.44346836e-15 + art_sys_84: 5.57418721e-15 + art_sys_85: -5.73837798e-15 + art_sys_86: 4.48201302e-15 + art_sys_87: 1.85205421e-19 + art_sys_88: 9.30766121e-18 + art_sys_89: -3.16853804e-15 + art_sys_90: -2.37463829e-17 + art_sys_91: 3.72933508e-33 + art_sys_92: -2.05100715e-15 + art_sys_93: -4.84251662e-15 + art_sys_94: 9.09109523e-17 + art_sys_95: 5.64390101e-30 + art_sys_96: 1.70127951e-34 + art_sys_97: 9.52879313e-33 + art_sys_98: -5.75812102e-31 + art_sys_99: -1.04899543e-31 + art_sys_100: -3.19836568e-29 + art_sys_101: -7.32162328e-31 + art_sys_102: 1.15713488e-29 + art_sys_103: -4.05104584e-30 + art_sys_104: -4.46950087e-30 + art_sys_105: -2.65093179e-15 + art_sys_106: -7.18021778e-31 + art_sys_107: -3.34009909e-29 + art_sys_108: -1.30246263e-14 + art_sys_109: 5.40966723e-14 + art_sys_110: 1.48528354e-27 + art_sys_111: -1.21044511e-28 + art_sys_112: -1.32653140e-28 + art_sys_113: -4.03839237e-28 + art_sys_114: -1.13387154e-13 + art_sys_115: 4.26951734e-29 + art_sys_116: 2.43023984e-28 + art_sys_117: 1.00130414e-12 + art_sys_118: -1.18347209e-28 + art_sys_119: 2.40061692e-26 + art_sys_120: -2.66841081e-28 + art_sys_121: -1.17899335e-12 + art_sys_122: -4.99279200e-28 + art_sys_123: 2.93684814e-25 + art_sys_124: 1.57852587e-27 + art_sys_125: -9.30599659e-12 + art_sys_126: -5.89902574e-26 + art_sys_127: 3.05166093e-22 + art_sys_128: 7.29958861e-28 + art_sys_129: -4.31865025e-11 + art_sys_130: 6.48208578e-20 + art_sys_131: 9.09643005e-13 + art_sys_132: -4.42148936e-26 + art_sys_133: 2.09261786e-17 + art_sys_134: -2.46101944e-23 + art_sys_135: 1.26725876e-24 + art_sys_136: -6.74018658e-10 + art_sys_137: 9.77399803e-17 + art_sys_138: -2.63548533e-23 + art_sys_139: 6.22672418e-18 + art_sys_140: -2.67306662e-09 + art_sys_141: 5.14738747e-19 + art_sys_142: -1.57509334e-21 + art_sys_143: 4.50926573e-17 + art_sys_144: -1.04070311e-09 + art_sys_145: 1.46044332e-19 + art_sys_146: 8.41411621e-16 + art_sys_147: 2.58209046e-08 + art_sys_148: -1.02896036e-07 + art_sys_149: -5.29992602e-16 + art_sys_150: 9.58619367e-14 + art_sys_151: 4.62250762e-13 + art_sys_152: -2.23973260e-07 + art_sys_153: -3.74560757e-13 + art_sys_154: -2.69154060e-23 + art_sys_155: 2.76426827e-08 + art_sys_156: 0.0 + art_sys_157: -4.94103607e-13 art_sys_158: 0.0 - art_sys_159: -3.27831935e-12 - art_sys_160: -3.27831935e-12 - art_sys_161: -2.12358031e-07 - art_sys_162: 4.89351955e-20 - art_sys_163: 0.0 - art_sys_164: 1.97840076e-20 - art_sys_165: 4.70637266e-16 - art_sys_166: -2.56741226e-16 - art_sys_167: -1.91294127e-17 - art_sys_168: 2.62494865e-16 - art_sys_169: 1.49004385e-16 - art_sys_170: 2.02389375e-16 - art_sys_171: 4.72738360e-17 - art_sys_172: 1.60992372e-17 - art_sys_173: -2.34081347e-17 - art_sys_174: -5.35503863e-20 - art_sys_175: -1.86053138e-18 - art_sys_176: 1.44612518e-18 - art_sys_177: 7.76442379e-19 - art_sys_178: -1.52245832e-18 - art_sys_179: -3.25490334e-19 - art_sys_180: 5.31773564e-19 - art_sys_181: 1.34307725e-19 - art_sys_182: -6.01013899e-21 - art_sys_183: -3.91749088e-21 - art_sys_184: 2.98566739e-21 - art_sys_185: 1.15764784e-20 + art_sys_159: -5.82304753e-12 + art_sys_160: 3.82650404e-07 + art_sys_161: -1.92814650e-11 + art_sys_162: -1.92814650e-11 + art_sys_163: 6.43393901e-08 + art_sys_164: 6.43393901e-08 + art_sys_165: -5.10680084e-21 + art_sys_166: 2.52786574e-21 + art_sys_167: 0.0 + art_sys_168: 1.71614580e-15 + art_sys_169: 9.21798158e-16 + art_sys_170: 1.10509202e-15 + art_sys_171: -2.29972913e-16 + art_sys_172: -1.31603501e-16 + art_sys_173: -1.12571582e-16 + art_sys_174: 1.25019933e-17 + art_sys_175: 5.81593324e-18 + art_sys_176: -2.05832196e-18 + art_sys_177: 8.96977771e-19 + art_sys_178: -1.06734650e-18 + art_sys_179: -7.05169431e-20 + art_sys_180: 4.77371209e-20 + art_sys_181: 4.24666312e-18 + art_sys_182: -3.39243113e-19 + art_sys_183: 1.82768550e-19 + art_sys_184: -3.46735093e-20 + art_sys_185: 6.45838941e-21 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -41016,154 +41016,154 @@ bins: art_sys_35: 0.0 art_sys_36: 0.0 art_sys_37: 0.0 - art_sys_38: -3.44331948e-315 - art_sys_39: 2.78212562e-291 - art_sys_40: 1.86812255e-286 - art_sys_41: -2.55075562e-275 - art_sys_42: -3.34847685e-176 - art_sys_43: -4.16485708e-176 - art_sys_44: -2.41392675e-169 - art_sys_45: 4.27780858e-160 - art_sys_46: -1.11655451e-152 - art_sys_47: -8.99752758e-147 - art_sys_48: 9.57664527e-141 - art_sys_49: -3.15556178e-133 - art_sys_50: -2.74923874e-125 - art_sys_51: 2.18893651e-112 - art_sys_52: 1.01818823e-120 - art_sys_53: 8.37193515e-123 - art_sys_54: -8.83205383e-114 - art_sys_55: -3.95424037e-111 - art_sys_56: 2.37443281e-108 - art_sys_57: 5.45447424e-34 - art_sys_58: -4.56269778e-32 - art_sys_59: -2.46717240e-31 - art_sys_60: 1.36451238e-49 - art_sys_61: -4.91848043e-31 - art_sys_62: 6.49182809e-29 - art_sys_63: -8.65467716e-28 - art_sys_64: -1.86437845e-27 - art_sys_65: -7.43743559e-27 - art_sys_66: 6.49735011e-43 - art_sys_67: 5.20483772e-25 - art_sys_68: 2.15165829e-24 - art_sys_69: 9.81424280e-42 - art_sys_70: -8.09578583e-42 - art_sys_71: -3.50283886e-42 - art_sys_72: 1.76827709e-42 - art_sys_73: 8.09182188e-43 - art_sys_74: 8.42384887e-43 + art_sys_38: 0.0 + art_sys_39: 0.0 + art_sys_40: 0.0 + art_sys_41: 0.0 + art_sys_42: 0.0 + art_sys_43: 0.0 + art_sys_44: -5.50997800e-239 + art_sys_45: -2.77886533e-232 + art_sys_46: -1.99519457e-182 + art_sys_47: -1.10467470e-187 + art_sys_48: 5.95522770e-180 + art_sys_49: -5.08121175e-171 + art_sys_50: 2.17860287e-163 + art_sys_51: -9.03934962e-153 + art_sys_52: -1.00431074e-169 + art_sys_53: -3.20751838e-166 + art_sys_54: -3.79518436e-161 + art_sys_55: -9.35816607e-158 + art_sys_56: -1.50915599e-154 + art_sys_57: -5.32938883e-76 + art_sys_58: -2.64080431e-62 + art_sys_59: 1.01337058e-73 + art_sys_60: -1.22522439e-70 + art_sys_61: -4.82999856e-56 + art_sys_62: 1.34075170e-70 + art_sys_63: 2.26471229e-60 + art_sys_64: 5.45447424e-34 + art_sys_65: -4.56269778e-32 + art_sys_66: -2.46717240e-31 + art_sys_67: 4.91848043e-31 + art_sys_68: -6.49182809e-29 + art_sys_69: -8.65467716e-28 + art_sys_70: 1.86437845e-27 + art_sys_71: -7.43743559e-27 + art_sys_72: 5.20483772e-25 + art_sys_73: -2.15165829e-24 + art_sys_74: -4.21880553e-43 art_sys_75: -2.30580093e-23 - art_sys_76: 3.70010919e-17 - art_sys_77: -8.34787200e-15 - art_sys_78: -1.43651687e-14 + art_sys_76: 1.10544832e-14 + art_sys_77: 1.49964250e-15 + art_sys_78: 5.74057670e-16 art_sys_79: 3.33328364e-23 - art_sys_80: 2.73116324e-35 - art_sys_81: 2.93438292e-14 - art_sys_82: -7.79529495e-15 - art_sys_83: -9.30189555e-16 - art_sys_84: -2.95882213e-22 - art_sys_85: -4.97105229e-16 - art_sys_86: 1.52215321e-15 - art_sys_87: -1.14805924e-21 + art_sys_80: -2.87116441e-14 + art_sys_81: -2.95882213e-22 + art_sys_82: -7.55565512e-35 + art_sys_83: 3.78232254e-15 + art_sys_84: 2.83250497e-15 + art_sys_85: 1.79339083e-15 + art_sys_86: -3.00024410e-15 + art_sys_87: 1.14805924e-21 art_sys_88: 4.03433081e-20 - art_sys_89: -9.24222293e-20 - art_sys_90: 3.28586899e-34 - art_sys_91: -1.01696976e-33 - art_sys_92: 1.60209680e-34 - art_sys_93: 2.71114776e-33 - art_sys_94: -2.63437104e-35 - art_sys_95: 2.78986113e-34 - art_sys_96: -6.76270762e-20 - art_sys_97: 6.25243940e-35 - art_sys_98: -1.16320067e-34 - art_sys_99: 8.64059478e-35 - art_sys_100: 2.23011994e-33 - art_sys_101: -3.13653455e-35 - art_sys_102: -3.00036195e-17 - art_sys_103: 1.72781641e-32 - art_sys_104: 3.11076572e-33 - art_sys_105: -3.54745852e-16 - art_sys_106: 1.80016682e-32 - art_sys_107: 3.35943032e-33 - art_sys_108: -3.08384087e-32 - art_sys_109: 1.68587759e-32 - art_sys_110: -2.41238242e-16 - art_sys_111: 1.22936305e-32 - art_sys_112: 1.84694067e-30 - art_sys_113: 1.16795080e-14 - art_sys_114: -1.49302040e-30 - art_sys_115: 8.39079349e-31 - art_sys_116: -4.50728919e-31 - art_sys_117: 5.37037295e-14 - art_sys_118: -2.87202010e-30 - art_sys_119: 3.10197104e-27 - art_sys_120: 5.06954754e-31 - art_sys_121: -2.70722910e-28 - art_sys_122: -1.90368055e-29 - art_sys_123: 3.85985637e-23 - art_sys_124: 4.00641081e-29 - art_sys_125: -2.78309676e-27 - art_sys_126: -5.78487966e-26 - art_sys_127: -1.35805954e-24 - art_sys_128: 3.48119398e-21 - art_sys_129: -9.71982997e-20 - art_sys_130: -2.51157237e-18 - art_sys_131: -1.20441156e-17 - art_sys_132: 1.55020721e-22 - art_sys_133: -3.33149994e-20 - art_sys_134: -9.06064061e-17 - art_sys_135: -3.49959005e-20 - art_sys_136: 7.19515104e-16 - art_sys_137: 6.80380353e-19 - art_sys_138: -5.12968492e-16 - art_sys_139: -5.48566618e-15 - art_sys_140: 1.40023242e-23 - art_sys_141: -1.18163408e-13 - art_sys_142: 0.0 - art_sys_143: 8.32129855e-14 - art_sys_144: 4.32043823e-13 - art_sys_145: 2.09591873e-14 - art_sys_146: -8.21811626e-15 - art_sys_147: 1.06603700e-12 - art_sys_148: -4.21892822e-12 - art_sys_149: -2.97060831e-12 - art_sys_150: -9.29046633e-11 - art_sys_151: 3.64701629e-10 - art_sys_152: 1.36147241e-10 - art_sys_153: -3.87262459e-09 - art_sys_154: 1.51661399e-08 - art_sys_155: -7.40198274e-08 - art_sys_156: 4.02039528e-07 - art_sys_157: -6.86338056e-07 - art_sys_158: -0.0 - art_sys_159: 1.56748602e-11 - art_sys_160: 1.56748602e-11 - art_sys_161: -8.70301405e-08 - art_sys_162: 2.03761497e-20 - art_sys_163: 0.0 - art_sys_164: 8.31234386e-21 - art_sys_165: 4.03527152e-18 - art_sys_166: -1.03362690e-15 - art_sys_167: 7.06023582e-16 - art_sys_168: -3.79054521e-16 - art_sys_169: -3.80781766e-17 - art_sys_170: -5.63020457e-17 - art_sys_171: -8.20271075e-19 - art_sys_172: 9.42536067e-18 - art_sys_173: -7.45559121e-18 - art_sys_174: 1.37811420e-19 - art_sys_175: 5.51939033e-18 - art_sys_176: 3.16277324e-18 - art_sys_177: -7.74900681e-19 - art_sys_178: -4.47999131e-19 - art_sys_179: 1.50416461e-19 - art_sys_180: -1.64768379e-19 - art_sys_181: -1.03114697e-19 - art_sys_182: -7.79544651e-20 - art_sys_183: -3.25457424e-20 - art_sys_184: 1.35105110e-20 - art_sys_185: 8.17951377e-21 + art_sys_89: -2.80851979e-15 + art_sys_90: -9.24222294e-20 + art_sys_91: -3.92496271e-34 + art_sys_92: -1.59978202e-15 + art_sys_93: -3.97251435e-15 + art_sys_94: -6.76270759e-20 + art_sys_95: 2.47031741e-32 + art_sys_96: 1.21672870e-33 + art_sys_97: 3.67442482e-33 + art_sys_98: -9.15577351e-33 + art_sys_99: -1.76830087e-33 + art_sys_100: -1.84802273e-31 + art_sys_101: -6.00303816e-33 + art_sys_102: 5.05659667e-32 + art_sys_103: -2.69094404e-32 + art_sys_104: -1.70195276e-32 + art_sys_105: -3.00087347e-17 + art_sys_106: 4.05746740e-33 + art_sys_107: -1.01025809e-31 + art_sys_108: 3.54746384e-16 + art_sys_109: -2.41201731e-16 + art_sys_110: 5.86038216e-30 + art_sys_111: -5.72873551e-31 + art_sys_112: -6.20901449e-31 + art_sys_113: -1.52476949e-30 + art_sys_114: 1.16793005e-14 + art_sys_115: -1.84872790e-30 + art_sys_116: -8.29778397e-30 + art_sys_117: -5.37036360e-14 + art_sys_118: 1.70888740e-30 + art_sys_119: -1.09464344e-29 + art_sys_120: -8.74188470e-30 + art_sys_121: -8.22152093e-15 + art_sys_122: -4.33214878e-30 + art_sys_123: 8.30781053e-27 + art_sys_124: -1.84987201e-28 + art_sys_125: 1.06604785e-12 + art_sys_126: 9.77503568e-28 + art_sys_127: -3.62967739e-23 + art_sys_128: 9.63023625e-29 + art_sys_129: 4.21900653e-12 + art_sys_130: -4.57304694e-21 + art_sys_131: -2.97060070e-12 + art_sys_132: 5.29240958e-28 + art_sys_133: -2.56481746e-18 + art_sys_134: 2.92320259e-24 + art_sys_135: -1.53064095e-25 + art_sys_136: 9.28219759e-11 + art_sys_137: -1.12507080e-17 + art_sys_138: 3.40239240e-24 + art_sys_139: -4.04839322e-20 + art_sys_140: 3.64711587e-10 + art_sys_141: -5.89981616e-20 + art_sys_142: 1.89319652e-22 + art_sys_143: -5.84952852e-18 + art_sys_144: 1.34919042e-10 + art_sys_145: -2.62933660e-20 + art_sys_146: -1.68349835e-16 + art_sys_147: -3.19634830e-09 + art_sys_148: 1.09113478e-07 + art_sys_149: 6.65095680e-17 + art_sys_150: -1.20047636e-14 + art_sys_151: -3.83848739e-14 + art_sys_152: -7.75280482e-08 + art_sys_153: 4.81174824e-15 + art_sys_154: 3.71381801e-23 + art_sys_155: 2.32077282e-07 + art_sys_156: 0.0 + art_sys_157: -2.21295051e-13 + art_sys_158: 0.0 + art_sys_159: -5.85638878e-12 + art_sys_160: 2.37744496e-07 + art_sys_161: -1.88166711e-10 + art_sys_162: -1.88166711e-10 + art_sys_163: 1.32787558e-07 + art_sys_164: 1.32787558e-07 + art_sys_165: 8.96151617e-21 + art_sys_166: -4.86657483e-21 + art_sys_167: -0.0 + art_sys_168: 1.25818505e-15 + art_sys_169: 7.39434092e-16 + art_sys_170: 8.92799174e-16 + art_sys_171: -1.87981813e-16 + art_sys_172: -1.11259554e-16 + art_sys_173: -1.15457375e-16 + art_sys_174: 1.67409326e-17 + art_sys_175: 1.28999241e-17 + art_sys_176: -9.37481612e-18 + art_sys_177: 2.16962897e-18 + art_sys_178: -7.50830759e-19 + art_sys_179: -9.24582163e-20 + art_sys_180: -5.79435659e-20 + art_sys_181: 4.55601634e-18 + art_sys_182: -3.83755290e-19 + art_sys_183: 1.56673745e-19 + art_sys_184: -6.60161450e-20 + art_sys_185: -2.18638424e-20 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -43953,127 +43953,127 @@ bins: art_sys_62: 0.0 art_sys_63: 0.0 art_sys_64: 0.0 - art_sys_65: -7.86983674e-250 - art_sys_66: -2.42345969e-174 - art_sys_67: -6.52276146e-132 - art_sys_68: -1.82324534e-121 - art_sys_69: 3.44933470e-129 - art_sys_70: -1.71947994e-127 - art_sys_71: -1.76125016e-121 - art_sys_72: 6.67226755e-109 - art_sys_73: -4.34496723e-97 - art_sys_74: -2.56938469e-99 - art_sys_75: -1.20951425e-27 - art_sys_76: 1.79211144e+02 + art_sys_65: 0.0 + art_sys_66: 0.0 + art_sys_67: 0.0 + art_sys_68: 0.0 + art_sys_69: 0.0 + art_sys_70: 0.0 + art_sys_71: 0.0 + art_sys_72: 1.55472742e-188 + art_sys_73: -9.63676516e-180 + art_sys_74: -3.00403639e-181 + art_sys_75: -1.47554440e-65 + art_sys_76: -1.79211144e+02 art_sys_77: 3.83863567e+01 art_sys_78: 1.36807570e+01 - art_sys_79: 9.08663177e-19 - art_sys_80: -1.06708704e-19 - art_sys_81: -2.26473660e+00 - art_sys_82: 3.64301698e-02 - art_sys_83: -1.13971321e-02 - art_sys_84: 2.03210210e-18 + art_sys_79: -1.28670842e-17 + art_sys_80: -2.26473660e+00 + art_sys_81: 4.00973278e-18 + art_sys_82: -1.39205744e-19 + art_sys_83: -3.64301698e-02 + art_sys_84: 1.13971321e-02 art_sys_85: -6.14263486e-03 art_sys_86: 1.49833498e-03 - art_sys_87: -4.93078217e-19 - art_sys_88: 5.14266017e-19 - art_sys_89: -1.58461629e-19 - art_sys_90: -5.09376508e-20 - art_sys_91: -5.09984153e-20 - art_sys_92: -6.55047316e-20 - art_sys_93: -1.26223327e-20 - art_sys_94: 6.19444351e-20 - art_sys_95: -2.39348795e-21 - art_sys_96: 3.68218429e-20 - art_sys_97: -3.59391381e-20 - art_sys_98: 1.01620645e-20 - art_sys_99: -3.03094027e-21 - art_sys_100: 4.45344551e-22 - art_sys_101: -2.85560234e-21 - art_sys_102: 1.23194768e-19 - art_sys_103: 2.64587480e-20 - art_sys_104: 2.32603644e-20 - art_sys_105: 6.33665268e-20 - art_sys_106: 9.64601424e-21 - art_sys_107: -2.85005259e-20 - art_sys_108: -1.75716701e-20 - art_sys_109: -7.08426991e-21 - art_sys_110: 4.00581182e-21 - art_sys_111: -6.69186097e-21 - art_sys_112: 2.44926490e-20 - art_sys_113: 1.06096645e-20 - art_sys_114: 8.53931465e-21 - art_sys_115: 4.71373027e-21 - art_sys_116: -5.85685774e-21 - art_sys_117: 9.03610230e-21 - art_sys_118: -2.04433214e-21 - art_sys_119: 4.21883296e-21 - art_sys_120: -5.98386314e-21 - art_sys_121: 2.84033721e-21 - art_sys_122: 3.04628458e-21 - art_sys_123: 1.36200837e-20 - art_sys_124: 8.57866390e-21 - art_sys_125: -9.76965900e-22 - art_sys_126: -2.00628061e-21 - art_sys_127: -5.24093201e-22 - art_sys_128: 5.09052840e-21 - art_sys_129: -2.51241246e-22 - art_sys_130: 9.67242980e-22 - art_sys_131: 3.98683530e-22 - art_sys_132: -3.44440083e-23 - art_sys_133: 8.98696825e-22 - art_sys_134: 6.71341130e-22 - art_sys_135: -1.09367501e-21 - art_sys_136: -4.56132741e-22 - art_sys_137: -2.64623227e-22 - art_sys_138: -1.59372942e-22 - art_sys_139: 3.15906609e-22 - art_sys_140: 1.17399526e-22 - art_sys_141: 2.13915030e-22 - art_sys_142: -0.0 - art_sys_143: -8.04018856e-23 - art_sys_144: -1.34276114e-22 - art_sys_145: -1.41751172e-22 - art_sys_146: 9.23484385e-21 - art_sys_147: -5.57663258e-21 - art_sys_148: 2.35144319e-21 - art_sys_149: 4.52650926e-21 - art_sys_150: 6.18219025e-22 - art_sys_151: 9.19331087e-22 - art_sys_152: -1.31760019e-21 - art_sys_153: -1.22045618e-21 - art_sys_154: -8.80236267e-22 - art_sys_155: -5.12220668e-22 - art_sys_156: -6.70666371e-22 - art_sys_157: 6.16188104e-22 - art_sys_158: -0.0 - art_sys_159: 2.44487559e-24 - art_sys_160: 2.44487559e-24 - art_sys_161: -3.61445140e-23 - art_sys_162: -3.30910606e-26 - art_sys_163: 0.0 - art_sys_164: 2.70628237e-27 - art_sys_165: -3.23104452e-06 - art_sys_166: 5.81535322e-07 - art_sys_167: -5.44945876e-07 - art_sys_168: 7.53591434e-09 - art_sys_169: 5.64255371e-09 - art_sys_170: 1.61016227e-09 - art_sys_171: 5.33931569e-11 + art_sys_87: -1.67591942e-19 + art_sys_88: -4.32451501e-20 + art_sys_89: 3.23104452e-06 + art_sys_90: -2.75639663e-19 + art_sys_91: 1.82663129e-20 + art_sys_92: 5.81535322e-07 + art_sys_93: 5.44945876e-07 + art_sys_94: 3.53252269e-20 + art_sys_95: 2.74646926e-20 + art_sys_96: -9.96519529e-20 + art_sys_97: -6.77831678e-20 + art_sys_98: 7.40029331e-21 + art_sys_99: -1.24709142e-19 + art_sys_100: 8.04397652e-20 + art_sys_101: -1.68411460e-20 + art_sys_102: 3.32202332e-20 + art_sys_103: 1.65802585e-20 + art_sys_104: 3.65197410e-20 + art_sys_105: 1.08356579e-19 + art_sys_106: 9.28937680e-21 + art_sys_107: 1.47503349e-20 + art_sys_108: -3.15424594e-20 + art_sys_109: 4.17451967e-20 + art_sys_110: -2.72326738e-21 + art_sys_111: 7.33444208e-21 + art_sys_112: 1.30811447e-20 + art_sys_113: 7.93440801e-22 + art_sys_114: -5.14153583e-21 + art_sys_115: -2.00083417e-23 + art_sys_116: 9.81960388e-21 + art_sys_117: 9.84654194e-21 + art_sys_118: 1.54509821e-21 + art_sys_119: 8.97057970e-21 + art_sys_120: 1.41886219e-21 + art_sys_121: -1.28682867e-21 + art_sys_122: -5.06138974e-21 + art_sys_123: -5.72424204e-22 + art_sys_124: -8.52003374e-21 + art_sys_125: -3.18386295e-21 + art_sys_126: -5.25657619e-21 + art_sys_127: -4.99429475e-21 + art_sys_128: 3.27113567e-21 + art_sys_129: 7.09941697e-22 + art_sys_130: -3.85260288e-21 + art_sys_131: -1.50648377e-21 + art_sys_132: 3.66228828e-23 + art_sys_133: -3.80816400e-22 + art_sys_134: 9.14282173e-23 + art_sys_135: -5.77012924e-21 + art_sys_136: 2.82768313e-21 + art_sys_137: -4.89602468e-22 + art_sys_138: 4.20303073e-22 + art_sys_139: -2.84979287e-22 + art_sys_140: -2.63152436e-21 + art_sys_141: -1.92631722e-23 + art_sys_142: -1.32304895e-22 + art_sys_143: 2.85060348e-22 + art_sys_144: 3.24909423e-21 + art_sys_145: 7.27402119e-22 + art_sys_146: 1.02335016e-21 + art_sys_147: -8.96294935e-22 + art_sys_148: 4.73683160e-21 + art_sys_149: -8.91585750e-23 + art_sys_150: -1.21739239e-22 + art_sys_151: 2.54838681e-22 + art_sys_152: -2.17515259e-21 + art_sys_153: -4.79495833e-24 + art_sys_154: 1.33851569e-23 + art_sys_155: -3.93282631e-22 + art_sys_156: 0.0 + art_sys_157: 1.58889476e-23 + art_sys_158: 0.0 + art_sys_159: -4.36991253e-23 + art_sys_160: -4.61196370e-22 + art_sys_161: 6.13483853e-24 + art_sys_162: 6.13483853e-24 + art_sys_163: -4.39911602e-23 + art_sys_164: -4.39911602e-23 + art_sys_165: -3.30885453e-26 + art_sys_166: -2.70659867e-27 + art_sys_167: -0.0 + art_sys_168: -7.53591434e-09 + art_sys_169: -5.64255371e-09 + art_sys_170: -1.61016227e-09 + art_sys_171: 5.33931568e-11 art_sys_172: 1.80782662e-11 - art_sys_173: -5.37550729e-12 - art_sys_174: -3.37793392e-22 - art_sys_175: 3.13593883e-14 - art_sys_176: 6.46715709e-15 - art_sys_177: -2.50869062e-15 - art_sys_178: -7.90074090e-16 - art_sys_179: -1.19106491e-16 - art_sys_180: 2.90755296e-17 - art_sys_181: 4.54871371e-18 - art_sys_182: 6.91794462e-19 - art_sys_183: 1.24257390e-19 - art_sys_184: -1.08623457e-20 - art_sys_185: 2.84771342e-24 + art_sys_173: 5.37550729e-12 + art_sys_174: -3.13593714e-14 + art_sys_175: -6.46715461e-15 + art_sys_176: 2.50869041e-15 + art_sys_177: -1.19105751e-16 + art_sys_178: 2.90756311e-17 + art_sys_179: 3.37793392e-22 + art_sys_180: 2.84771342e-24 + art_sys_181: -7.90074157e-16 + art_sys_182: 4.54755228e-18 + art_sys_183: -6.91830178e-19 + art_sys_184: 1.24257570e-19 + art_sys_185: 1.08623450e-20 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -44244,127 +44244,127 @@ bins: art_sys_62: 0.0 art_sys_63: 0.0 art_sys_64: 0.0 - art_sys_65: -4.27346828e-250 - art_sys_66: -1.31598728e-174 - art_sys_67: -3.54199047e-132 - art_sys_68: -9.90058838e-122 - art_sys_69: 1.87305801e-129 - art_sys_70: -9.33712140e-128 - art_sys_71: -9.56394211e-122 - art_sys_72: 3.62317528e-109 - art_sys_73: -2.35940447e-97 - art_sys_74: -1.39522749e-99 - art_sys_75: -6.56790527e-28 - art_sys_76: 9.73152501e+01 + art_sys_65: 0.0 + art_sys_66: 0.0 + art_sys_67: 0.0 + art_sys_68: 0.0 + art_sys_69: 0.0 + art_sys_70: 0.0 + art_sys_71: 0.0 + art_sys_72: 8.44247689e-189 + art_sys_73: -5.23295376e-180 + art_sys_74: -1.63125108e-181 + art_sys_75: -8.01250243e-66 + art_sys_76: -9.73152501e+01 art_sys_77: -6.56877066e+01 art_sys_78: -2.29836532e+01 - art_sys_79: -1.58584563e-18 - art_sys_80: 3.45122425e-20 - art_sys_81: 6.21644206e+00 - art_sys_82: -1.14070556e-01 - art_sys_83: 3.64296223e-02 - art_sys_84: -4.52376791e-18 + art_sys_79: -1.75001018e-20 + art_sys_80: 6.21644206e+00 + art_sys_81: -2.93594113e-19 + art_sys_82: 1.31743477e-19 + art_sys_83: 1.14070556e-01 + art_sys_84: -3.64296223e-02 art_sys_85: 2.17062190e-02 art_sys_86: -5.60326851e-03 - art_sys_87: -2.64139901e-18 - art_sys_88: -8.00085835e-19 - art_sys_89: 1.30543906e-19 - art_sys_90: -4.48101643e-20 - art_sys_91: 3.48568629e-20 - art_sys_92: -7.17157735e-20 - art_sys_93: 1.63987249e-21 - art_sys_94: 4.03367375e-20 - art_sys_95: 7.79045318e-20 - art_sys_96: 1.19810944e-20 - art_sys_97: 6.36035105e-20 - art_sys_98: -2.50694722e-20 - art_sys_99: 2.29729535e-20 - art_sys_100: -2.89357488e-20 - art_sys_101: 6.44316377e-21 - art_sys_102: -5.89838399e-20 - art_sys_103: 1.84587146e-20 - art_sys_104: -3.77896577e-20 - art_sys_105: 2.97887649e-20 - art_sys_106: -2.60244401e-20 - art_sys_107: 2.19827923e-20 - art_sys_108: -1.28167813e-20 - art_sys_109: -1.04070413e-20 - art_sys_110: -5.90367471e-20 - art_sys_111: -5.48499437e-21 - art_sys_112: -2.09139516e-20 - art_sys_113: -1.88426089e-20 - art_sys_114: 2.06008700e-21 - art_sys_115: 1.71171621e-20 - art_sys_116: 1.43004280e-20 - art_sys_117: 2.49051428e-21 - art_sys_118: -2.23168296e-22 - art_sys_119: -5.79186892e-21 - art_sys_120: -3.27963199e-21 - art_sys_121: -6.85369077e-22 - art_sys_122: -9.62201044e-22 - art_sys_123: 1.64869465e-20 - art_sys_124: 4.19487779e-22 - art_sys_125: -1.57635811e-21 - art_sys_126: -1.82439961e-21 - art_sys_127: -1.23279965e-21 - art_sys_128: -4.68519062e-21 - art_sys_129: 4.13655586e-21 - art_sys_130: 4.45119811e-22 - art_sys_131: -1.94454627e-22 - art_sys_132: 2.68682784e-21 - art_sys_133: -1.70044953e-21 - art_sys_134: 5.32080867e-22 - art_sys_135: -2.49254057e-22 - art_sys_136: -1.26463622e-21 - art_sys_137: 4.19467717e-22 - art_sys_138: 3.60900197e-22 - art_sys_139: -3.13192240e-22 - art_sys_140: -1.32968536e-22 - art_sys_141: 2.22690995e-23 - art_sys_142: 0.0 - art_sys_143: 1.02217456e-22 - art_sys_144: -6.63513898e-23 - art_sys_145: -6.20738290e-23 - art_sys_146: 7.93851541e-21 - art_sys_147: -9.31507932e-21 - art_sys_148: 2.89112862e-21 - art_sys_149: 1.20506915e-21 - art_sys_150: -2.61820836e-22 - art_sys_151: -1.28517853e-21 - art_sys_152: -2.12153029e-21 - art_sys_153: -5.22963257e-22 - art_sys_154: -3.37281311e-22 - art_sys_155: 1.57320967e-21 - art_sys_156: 1.89855733e-21 - art_sys_157: -1.69607318e-21 - art_sys_158: 0.0 - art_sys_159: 9.34565280e-23 - art_sys_160: 9.34565280e-23 - art_sys_161: 8.73121599e-23 - art_sys_162: 1.67631832e-25 - art_sys_163: -0.0 - art_sys_164: -1.40901060e-26 - art_sys_165: 1.73133584e-05 - art_sys_166: -3.84173046e-06 - art_sys_167: 2.96674061e-06 - art_sys_168: -1.00536705e-07 - art_sys_169: -3.26340826e-08 - art_sys_170: -1.26781678e-08 + art_sys_87: 2.69211777e-19 + art_sys_88: 8.84252054e-20 + art_sys_89: -1.73133584e-05 + art_sys_90: 7.55159889e-19 + art_sys_91: -1.17950000e-19 + art_sys_92: -3.84173046e-06 + art_sys_93: -2.96674061e-06 + art_sys_94: 1.88990619e-19 + art_sys_95: 1.20977909e-19 + art_sys_96: 9.51387139e-20 + art_sys_97: -1.67647467e-20 + art_sys_98: -2.50331841e-20 + art_sys_99: 3.46417173e-20 + art_sys_100: 8.13356875e-20 + art_sys_101: 2.43894197e-20 + art_sys_102: 3.94904740e-20 + art_sys_103: -6.53094959e-21 + art_sys_104: 2.67657604e-20 + art_sys_105: 7.22054399e-20 + art_sys_106: 2.38782388e-20 + art_sys_107: -3.15898887e-20 + art_sys_108: 2.89817581e-20 + art_sys_109: -3.05872977e-20 + art_sys_110: 4.05565479e-20 + art_sys_111: -3.50266941e-20 + art_sys_112: 1.56120980e-20 + art_sys_113: -1.14299902e-20 + art_sys_114: 1.21917543e-20 + art_sys_115: 7.85319696e-21 + art_sys_116: -1.85938017e-20 + art_sys_117: 1.95153978e-20 + art_sys_118: 5.60044390e-21 + art_sys_119: -4.41920684e-21 + art_sys_120: -1.43138408e-21 + art_sys_121: 1.83269982e-21 + art_sys_122: 6.05491500e-21 + art_sys_123: -1.01417884e-20 + art_sys_124: 7.49887725e-21 + art_sys_125: 1.79318081e-21 + art_sys_126: -5.48754588e-21 + art_sys_127: 2.49332893e-22 + art_sys_128: -5.95320437e-21 + art_sys_129: -1.42598422e-21 + art_sys_130: 8.83869911e-21 + art_sys_131: 2.66993875e-21 + art_sys_132: 1.28704029e-21 + art_sys_133: -7.10084263e-21 + art_sys_134: 2.69130064e-22 + art_sys_135: -4.14262494e-21 + art_sys_136: -8.50712164e-22 + art_sys_137: 1.31664249e-21 + art_sys_138: 4.97295384e-22 + art_sys_139: 1.31347374e-21 + art_sys_140: -1.14947459e-21 + art_sys_141: -8.37701242e-22 + art_sys_142: 7.80223584e-22 + art_sys_143: -2.02511400e-21 + art_sys_144: -2.13689359e-21 + art_sys_145: -4.92487727e-22 + art_sys_146: 1.29700888e-21 + art_sys_147: -2.00818884e-21 + art_sys_148: -1.11218536e-20 + art_sys_149: -1.85520275e-22 + art_sys_150: -8.22870278e-23 + art_sys_151: 1.27921800e-22 + art_sys_152: 5.19850758e-21 + art_sys_153: -1.51066026e-22 + art_sys_154: 1.18190031e-22 + art_sys_155: 3.25482161e-22 + art_sys_156: -0.0 + art_sys_157: -1.54540775e-22 + art_sys_158: -0.0 + art_sys_159: -1.30045445e-23 + art_sys_160: 1.00932237e-21 + art_sys_161: 8.29443085e-25 + art_sys_162: 8.29443085e-25 + art_sys_163: 8.01405861e-23 + art_sys_164: 8.01405861e-23 + art_sys_165: 1.67624247e-25 + art_sys_166: 1.40917485e-26 + art_sys_167: 0.0 + art_sys_168: 1.00536705e-07 + art_sys_169: 3.26340826e-08 + art_sys_170: 1.26781678e-08 art_sys_171: -3.89420894e-10 art_sys_172: -1.14734360e-10 - art_sys_173: 3.95916883e-11 - art_sys_174: 1.83312542e-21 - art_sys_175: -1.13766676e-13 - art_sys_176: -3.30507876e-14 - art_sys_177: 1.28728255e-14 - art_sys_178: 3.64597521e-15 - art_sys_179: 6.80932007e-16 - art_sys_180: -1.41410738e-16 - art_sys_181: -2.43951277e-17 - art_sys_182: -3.69697512e-18 - art_sys_183: -6.38879480e-19 - art_sys_184: 5.84571910e-20 - art_sys_185: -1.91403183e-23 + art_sys_173: -3.95916883e-11 + art_sys_174: 1.13766669e-13 + art_sys_175: 3.30507866e-14 + art_sys_176: -1.28728253e-14 + art_sys_177: 6.80927833e-16 + art_sys_178: -1.41410806e-16 + art_sys_179: -1.83312542e-21 + art_sys_180: -1.91403183e-23 + art_sys_181: 3.64597505e-15 + art_sys_182: -2.43941557e-17 + art_sys_183: 3.69687174e-18 + art_sys_184: -6.38879149e-19 + art_sys_185: -5.84571906e-20 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -44535,127 +44535,127 @@ bins: art_sys_62: 0.0 art_sys_63: 0.0 art_sys_64: 0.0 - art_sys_65: -4.30197040e-251 - art_sys_66: -1.32478762e-175 - art_sys_67: -3.56567667e-133 - art_sys_68: -9.96679615e-123 - art_sys_69: 1.88558363e-130 - art_sys_70: -9.39956112e-129 - art_sys_71: -9.62789864e-123 - art_sys_72: 3.64740438e-110 - art_sys_73: -2.37518241e-98 - art_sys_74: -1.40455773e-100 - art_sys_75: -6.61182653e-29 - art_sys_76: 9.79660221e+00 + art_sys_65: 0.0 + art_sys_66: 0.0 + art_sys_67: 0.0 + art_sys_68: 0.0 + art_sys_69: 0.0 + art_sys_70: 0.0 + art_sys_71: 0.0 + art_sys_72: 8.49889814e-190 + art_sys_73: -5.26792570e-181 + art_sys_74: -1.64215276e-182 + art_sys_75: -8.06608408e-67 + art_sys_76: -9.79660221e+00 art_sys_77: -6.54564256e+01 art_sys_78: 2.22022920e+01 - art_sys_79: -3.92561298e-19 - art_sys_80: -6.69598354e-21 - art_sys_81: -9.61246934e+00 - art_sys_82: 3.85474990e-01 - art_sys_83: -9.48794213e-02 - art_sys_84: 5.93018216e-18 + art_sys_79: 2.31926784e-18 + art_sys_80: -9.61246934e+00 + art_sys_81: -4.81967074e-18 + art_sys_82: -4.13748773e-20 + art_sys_83: -3.85474990e-01 + art_sys_84: 9.48794213e-02 art_sys_85: -6.75969295e-02 art_sys_86: 1.81977130e-02 - art_sys_87: -2.09255196e-18 - art_sys_88: 2.43714325e-19 - art_sys_89: 6.25845360e-19 - art_sys_90: 3.07670072e-21 - art_sys_91: 7.50922115e-21 - art_sys_92: 1.73952663e-20 - art_sys_93: -1.12976435e-19 - art_sys_94: -4.51348310e-21 - art_sys_95: -5.74115037e-20 - art_sys_96: 1.41946733e-20 - art_sys_97: 3.34104277e-20 - art_sys_98: 4.43536263e-20 - art_sys_99: -1.91584364e-20 - art_sys_100: 3.81672369e-20 - art_sys_101: 2.57663127e-21 - art_sys_102: 1.58885200e-21 - art_sys_103: 8.86109846e-21 - art_sys_104: -3.42378649e-20 - art_sys_105: -4.65876792e-20 - art_sys_106: 1.73715276e-21 - art_sys_107: 3.03422601e-20 - art_sys_108: 1.81714358e-21 - art_sys_109: -6.19240905e-21 - art_sys_110: 5.16623332e-20 - art_sys_111: -2.62309540e-21 - art_sys_112: 2.72405034e-20 - art_sys_113: 1.00983178e-20 - art_sys_114: -2.68987171e-21 - art_sys_115: -1.56128333e-20 - art_sys_116: -4.54502510e-21 - art_sys_117: 1.77938260e-20 - art_sys_118: 3.99161745e-21 - art_sys_119: 1.03345112e-20 - art_sys_120: -9.91780215e-23 - art_sys_121: -7.86531551e-21 - art_sys_122: 5.12424039e-21 - art_sys_123: -7.89229859e-21 - art_sys_124: 2.56092259e-21 - art_sys_125: 8.12654802e-22 - art_sys_126: 3.60981444e-21 - art_sys_127: -1.66121479e-21 - art_sys_128: 3.95831416e-21 - art_sys_129: -3.16558040e-21 - art_sys_130: -1.34077278e-21 - art_sys_131: -1.23331049e-21 - art_sys_132: 1.52738698e-22 - art_sys_133: 2.45686813e-21 - art_sys_134: 1.05253717e-21 - art_sys_135: -2.47684505e-22 - art_sys_136: -6.80531222e-23 - art_sys_137: -4.29164837e-22 - art_sys_138: 1.70364582e-22 - art_sys_139: -4.17758794e-22 - art_sys_140: -1.65119598e-22 - art_sys_141: 1.35827413e-22 - art_sys_142: 0.0 - art_sys_143: 1.57478533e-22 - art_sys_144: -9.78218562e-24 - art_sys_145: -1.08817122e-22 - art_sys_146: 2.54262994e-20 - art_sys_147: -5.30408701e-21 - art_sys_148: 1.32624567e-20 - art_sys_149: -7.74552156e-21 - art_sys_150: 4.65890196e-22 - art_sys_151: -1.08580957e-22 - art_sys_152: -9.26477833e-22 - art_sys_153: -1.05883910e-21 - art_sys_154: -2.86916021e-21 - art_sys_155: -3.47395017e-21 - art_sys_156: -3.12036256e-21 - art_sys_157: 2.73608498e-21 + art_sys_87: -3.06023000e-19 + art_sys_88: -1.00151609e-19 + art_sys_89: 4.96831583e-05 + art_sys_90: -5.41178846e-19 + art_sys_91: 1.98314435e-21 + art_sys_92: 1.53406808e-05 + art_sys_93: 1.03079106e-05 + art_sys_94: 1.16562224e-19 + art_sys_95: -9.65021789e-20 + art_sys_96: -7.63186588e-20 + art_sys_97: 2.17978761e-20 + art_sys_98: 1.33804536e-19 + art_sys_99: 2.79295543e-20 + art_sys_100: 3.73737034e-21 + art_sys_101: -4.64949074e-20 + art_sys_102: 2.33912673e-20 + art_sys_103: -2.17742536e-20 + art_sys_104: 9.60955797e-21 + art_sys_105: -1.93905981e-20 + art_sys_106: -1.51029507e-20 + art_sys_107: 3.52975173e-20 + art_sys_108: 3.98150262e-20 + art_sys_109: -1.24001362e-20 + art_sys_110: 8.93625333e-21 + art_sys_111: 4.27041621e-20 + art_sys_112: 6.63567060e-21 + art_sys_113: 3.03717121e-21 + art_sys_114: 1.07403563e-20 + art_sys_115: 9.22097428e-21 + art_sys_116: 5.74025901e-21 + art_sys_117: -2.51412642e-20 + art_sys_118: 7.14136161e-21 + art_sys_119: 5.19994718e-21 + art_sys_120: 2.75602259e-21 + art_sys_121: -4.61593853e-21 + art_sys_122: 4.59803747e-21 + art_sys_123: 6.51284434e-21 + art_sys_124: -7.99875900e-21 + art_sys_125: 1.28880615e-20 + art_sys_126: -4.57499220e-21 + art_sys_127: -2.63047405e-21 + art_sys_128: -6.38725236e-21 + art_sys_129: -5.56865294e-22 + art_sys_130: -1.59899349e-21 + art_sys_131: 6.24201839e-21 + art_sys_132: -3.42689866e-22 + art_sys_133: -1.82632764e-21 + art_sys_134: 1.59261552e-21 + art_sys_135: -1.64425126e-21 + art_sys_136: 1.07872114e-22 + art_sys_137: 1.97568441e-21 + art_sys_138: -6.59294060e-22 + art_sys_139: -1.37839062e-22 + art_sys_140: -3.34953706e-21 + art_sys_141: 8.30166726e-22 + art_sys_142: -7.87262515e-22 + art_sys_143: 2.53460923e-21 + art_sys_144: -3.19473481e-21 + art_sys_145: -5.10680319e-22 + art_sys_146: -8.75318264e-24 + art_sys_147: -1.99629749e-21 + art_sys_148: 1.66640207e-20 + art_sys_149: -3.82565166e-23 + art_sys_150: 6.97012658e-23 + art_sys_151: 1.86026209e-23 + art_sys_152: -9.17813827e-21 + art_sys_153: -6.62429676e-24 + art_sys_154: -2.07155075e-22 + art_sys_155: 2.24145506e-22 + art_sys_156: -0.0 + art_sys_157: -1.08794865e-22 art_sys_158: -0.0 - art_sys_159: 1.21556149e-22 - art_sys_160: 1.21556149e-22 - art_sys_161: -1.30530094e-22 - art_sys_162: -6.93403754e-25 - art_sys_163: 0.0 - art_sys_164: 5.80988200e-26 - art_sys_165: -4.96831583e-05 - art_sys_166: 1.53406808e-05 - art_sys_167: -1.03079106e-05 - art_sys_168: 3.85313393e-07 - art_sys_169: 1.28012802e-07 - art_sys_170: 4.82793484e-08 + art_sys_159: -5.51424009e-24 + art_sys_160: -1.55426149e-21 + art_sys_161: 2.02396791e-23 + art_sys_162: 2.02396791e-23 + art_sys_163: -1.18635282e-22 + art_sys_164: -1.18635282e-22 + art_sys_165: -6.93381563e-25 + art_sys_166: -5.81034158e-26 + art_sys_167: -0.0 + art_sys_168: -3.85313393e-07 + art_sys_169: -1.28012802e-07 + art_sys_170: -4.82793484e-08 art_sys_171: 1.75598667e-09 art_sys_172: 4.47802284e-10 - art_sys_173: -1.65565254e-10 - art_sys_174: -7.61066617e-21 - art_sys_175: 5.72967471e-13 - art_sys_176: 1.15487232e-13 - art_sys_177: -5.93919170e-14 - art_sys_178: -1.45570732e-14 - art_sys_179: -2.88961814e-15 - art_sys_180: 5.99282568e-16 - art_sys_181: 9.95631900e-17 - art_sys_182: 1.57405824e-17 - art_sys_183: 2.64478070e-18 - art_sys_184: -2.51045319e-19 - art_sys_185: 7.14652547e-23 + art_sys_173: 1.65565254e-10 + art_sys_174: -5.72967453e-13 + art_sys_175: -1.15487229e-13 + art_sys_176: 5.93919167e-14 + art_sys_177: -2.88961712e-15 + art_sys_178: 5.99282368e-16 + art_sys_179: 7.61066617e-21 + art_sys_180: 7.14652547e-23 + art_sys_181: -1.45570738e-14 + art_sys_182: 9.95641545e-17 + art_sys_183: -1.57405855e-17 + art_sys_184: 2.64478104e-18 + art_sys_185: 2.51045321e-19 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -44826,127 +44826,127 @@ bins: art_sys_62: 0.0 art_sys_63: 0.0 art_sys_64: 0.0 - art_sys_65: 4.71501700e-251 - art_sys_66: 1.45195075e-175 - art_sys_67: 3.90793726e-133 - art_sys_68: 1.09234846e-122 - art_sys_69: -2.06657620e-130 - art_sys_70: 1.03018020e-128 - art_sys_71: 1.05520571e-122 - art_sys_72: -3.99750982e-110 - art_sys_73: 2.60317036e-98 - art_sys_74: 1.53937780e-100 - art_sys_75: 7.24647961e-29 - art_sys_76: -1.07369541e+01 + art_sys_65: 0.0 + art_sys_66: 0.0 + art_sys_67: 0.0 + art_sys_68: 0.0 + art_sys_69: 0.0 + art_sys_70: 0.0 + art_sys_71: 0.0 + art_sys_72: -9.31473905e-190 + art_sys_73: 5.77361353e-181 + art_sys_74: 1.79978913e-182 + art_sys_75: 8.84032779e-67 + art_sys_76: 1.07369541e+01 art_sys_77: -1.45718422e+01 art_sys_78: 4.00754141e+01 - art_sys_79: 8.31993657e-19 - art_sys_80: -7.66118846e-20 - art_sys_81: 9.54766392e+00 - art_sys_82: -3.48278746e-01 - art_sys_83: 2.07018675e-01 - art_sys_84: -9.17281771e-21 + art_sys_79: -1.12089726e-18 + art_sys_80: 9.54766392e+00 + art_sys_81: 2.00501301e-18 + art_sys_82: -1.56024322e-19 + art_sys_83: 3.48278746e-01 + art_sys_84: -2.07018675e-01 art_sys_85: 1.29071419e-01 art_sys_86: -4.14218804e-02 - art_sys_87: -1.38217557e-19 - art_sys_88: -4.27790128e-19 - art_sys_89: -8.85760382e-19 - art_sys_90: -6.46682761e-20 - art_sys_91: -2.50063660e-20 - art_sys_92: 3.99352079e-20 - art_sys_93: -4.57086893e-20 - art_sys_94: 9.80804896e-21 - art_sys_95: 2.52564962e-20 - art_sys_96: -5.56188359e-20 - art_sys_97: 2.12758913e-20 - art_sys_98: -4.97642430e-20 - art_sys_99: 2.31219148e-20 - art_sys_100: -2.71774142e-20 - art_sys_101: -2.75883447e-20 - art_sys_102: -6.28325586e-21 - art_sys_103: -4.28437624e-21 - art_sys_104: -3.20728438e-20 - art_sys_105: -3.99390717e-20 - art_sys_106: 3.11848124e-21 - art_sys_107: 9.91388059e-21 - art_sys_108: 1.61333785e-20 - art_sys_109: -2.18535387e-20 - art_sys_110: -3.59622231e-20 - art_sys_111: -1.14209411e-21 - art_sys_112: 3.77455662e-21 - art_sys_113: 2.63064251e-20 - art_sys_114: 4.22215591e-21 - art_sys_115: 1.91918914e-20 - art_sys_116: -1.34165863e-21 - art_sys_117: 1.12242131e-20 - art_sys_118: -4.96812048e-21 - art_sys_119: 4.14193726e-21 - art_sys_120: 1.00517826e-21 - art_sys_121: -5.51954413e-22 - art_sys_122: 3.09459301e-21 - art_sys_123: -1.96565300e-21 - art_sys_124: 2.96763332e-21 - art_sys_125: 1.40075621e-21 - art_sys_126: 1.86703194e-22 - art_sys_127: -1.81708495e-21 - art_sys_128: 1.13818540e-21 - art_sys_129: -8.96418792e-22 - art_sys_130: 6.60380638e-22 - art_sys_131: 3.25628201e-22 - art_sys_132: -1.15457104e-21 - art_sys_133: 1.94899475e-21 - art_sys_134: 1.93789625e-21 - art_sys_135: 4.58697152e-22 - art_sys_136: -9.39000138e-22 - art_sys_137: 6.63951354e-22 - art_sys_138: 2.06879217e-22 - art_sys_139: -3.28294182e-22 - art_sys_140: -1.41814596e-22 - art_sys_141: 5.47287673e-24 - art_sys_142: 0.0 - art_sys_143: -1.34311967e-22 - art_sys_144: 5.22868735e-23 - art_sys_145: 6.25012765e-23 - art_sys_146: -6.94962697e-21 - art_sys_147: -1.64311792e-21 - art_sys_148: -1.18231991e-20 - art_sys_149: -1.66543454e-22 - art_sys_150: -5.22081121e-22 - art_sys_151: 1.09059994e-21 - art_sys_152: 1.62001719e-22 - art_sys_153: -1.15338467e-21 - art_sys_154: 5.95528640e-21 - art_sys_155: 4.40106881e-21 - art_sys_156: 3.36559476e-21 - art_sys_157: -2.90445768e-21 + art_sys_87: -4.88001364e-19 + art_sys_88: -4.73163566e-20 + art_sys_89: -1.83916672e-04 + art_sys_90: 4.16692254e-19 + art_sys_91: 5.53279059e-20 + art_sys_92: -4.31992767e-05 + art_sys_93: -3.44811731e-05 + art_sys_94: 1.94084453e-20 + art_sys_95: 1.08276399e-19 + art_sys_96: -7.18369087e-21 + art_sys_97: 9.85686357e-21 + art_sys_98: -1.33375915e-20 + art_sys_99: 4.43843080e-20 + art_sys_100: 2.28677346e-20 + art_sys_101: -2.36252701e-20 + art_sys_102: -4.39592715e-21 + art_sys_103: -1.58902993e-20 + art_sys_104: 7.46440241e-21 + art_sys_105: -1.18065285e-21 + art_sys_106: -1.57190452e-20 + art_sys_107: -3.35214379e-20 + art_sys_108: 9.99332395e-21 + art_sys_109: 5.09523221e-20 + art_sys_110: 1.54042169e-20 + art_sys_111: 8.79377473e-21 + art_sys_112: 1.40426505e-20 + art_sys_113: 1.33982575e-20 + art_sys_114: 2.77602091e-21 + art_sys_115: -8.17228846e-22 + art_sys_116: -1.85563735e-21 + art_sys_117: 3.48618376e-20 + art_sys_118: -9.62853675e-21 + art_sys_119: -1.46894072e-21 + art_sys_120: 5.40025226e-21 + art_sys_121: 3.88369837e-21 + art_sys_122: 1.86599750e-21 + art_sys_123: 6.81572808e-21 + art_sys_124: -1.14364383e-20 + art_sys_125: -1.25152296e-20 + art_sys_126: -3.85515868e-21 + art_sys_127: 1.49999999e-21 + art_sys_128: -2.50659304e-21 + art_sys_129: 1.24659525e-21 + art_sys_130: -1.26474434e-21 + art_sys_131: -2.69109471e-21 + art_sys_132: -2.89773724e-22 + art_sys_133: 1.11376865e-21 + art_sys_134: 1.05860745e-21 + art_sys_135: -6.68052335e-22 + art_sys_136: 1.60823246e-21 + art_sys_137: 6.87580934e-22 + art_sys_138: -3.04064729e-21 + art_sys_139: 1.66196495e-21 + art_sys_140: 5.99060713e-22 + art_sys_141: -1.36003475e-21 + art_sys_142: -1.70078125e-21 + art_sys_143: 5.64686443e-22 + art_sys_144: 6.21904166e-22 + art_sys_145: -2.71181149e-22 + art_sys_146: -6.90274154e-23 + art_sys_147: -3.12175205e-21 + art_sys_148: -1.52191955e-20 + art_sys_149: 4.14120800e-22 + art_sys_150: 1.24420706e-22 + art_sys_151: 7.27928019e-23 + art_sys_152: 1.18684089e-20 + art_sys_153: 1.14140274e-22 + art_sys_154: 7.26684296e-23 + art_sys_155: -1.20389046e-21 + art_sys_156: -0.0 + art_sys_157: 8.86539475e-23 art_sys_158: 0.0 - art_sys_159: 3.58539971e-23 - art_sys_160: 3.58539971e-23 - art_sys_161: 1.31433060e-22 - art_sys_162: 2.40374413e-24 - art_sys_163: -0.0 - art_sys_164: -2.02403650e-25 - art_sys_165: 1.83916672e-04 - art_sys_166: -4.31992767e-05 - art_sys_167: 3.44811731e-05 - art_sys_168: -1.37271019e-06 - art_sys_169: -4.14285433e-07 - art_sys_170: -1.72150319e-07 + art_sys_159: -1.56620431e-23 + art_sys_160: 1.28427854e-21 + art_sys_161: 2.36135147e-23 + art_sys_162: 2.36135147e-23 + art_sys_163: 1.29101036e-22 + art_sys_164: 1.29101036e-22 + art_sys_165: 2.40371957e-24 + art_sys_166: 2.02420426e-25 + art_sys_167: 0.0 + art_sys_168: 1.37271019e-06 + art_sys_169: 4.14285433e-07 + art_sys_170: 1.72150319e-07 art_sys_171: -5.27663509e-09 art_sys_172: -1.58040056e-09 - art_sys_173: 5.51536963e-10 - art_sys_174: 2.64730741e-20 - art_sys_175: -1.57421384e-12 - art_sys_176: -4.59481367e-13 - art_sys_177: 1.85722355e-13 - art_sys_178: 5.09824625e-14 - art_sys_179: 9.91269490e-15 - art_sys_180: -2.00790632e-15 - art_sys_181: -3.51855992e-16 - art_sys_182: -5.32727661e-17 - art_sys_183: -9.16883727e-18 - art_sys_184: 8.43183789e-19 - art_sys_185: -2.81216987e-22 + art_sys_173: -5.51536963e-10 + art_sys_174: 1.57421385e-12 + art_sys_175: 4.59481376e-13 + art_sys_176: -1.85722356e-13 + art_sys_177: 9.91269433e-15 + art_sys_178: -2.00790581e-15 + art_sys_179: -2.64730741e-20 + art_sys_180: -2.81216987e-22 + art_sys_181: 5.09824629e-14 + art_sys_182: -3.51856575e-16 + art_sys_183: 5.32727692e-17 + art_sys_184: -9.16883733e-18 + art_sys_185: -8.43183790e-19 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -45117,127 +45117,127 @@ bins: art_sys_62: 0.0 art_sys_63: 0.0 art_sys_64: 0.0 - art_sys_65: 4.17801147e-252 - art_sys_66: 1.28659927e-176 - art_sys_67: 3.46289239e-134 - art_sys_68: 9.67949304e-124 - art_sys_69: -1.83122975e-131 - art_sys_70: 9.12860914e-130 - art_sys_71: 9.35036460e-124 - art_sys_72: -3.54226421e-111 - art_sys_73: 2.30671534e-99 - art_sys_74: 1.36406992e-101 - art_sys_75: 6.42123386e-30 - art_sys_76: -9.51420511e-01 + art_sys_65: 0.0 + art_sys_66: 0.0 + art_sys_67: 0.0 + art_sys_68: 0.0 + art_sys_69: 0.0 + art_sys_70: 0.0 + art_sys_71: 0.0 + art_sys_72: -8.25393221e-191 + art_sys_73: 5.11608692e-182 + art_sys_74: 1.59482057e-183 + art_sys_75: 7.83357095e-68 + art_sys_76: 9.51420511e-01 art_sys_77: 2.48584661e+00 art_sys_78: 1.55320620e+00 - art_sys_79: 7.75876728e-20 - art_sys_80: -6.04838672e-21 - art_sys_81: 2.26076306e+00 - art_sys_82: 3.89979444e+00 - art_sys_83: -6.58564307e-01 - art_sys_84: 7.44713428e-19 + art_sys_79: -1.87968737e-19 + art_sys_80: 2.26076306e+00 + art_sys_81: 6.62380318e-19 + art_sys_82: -8.43247044e-21 + art_sys_83: -3.89979444e+00 + art_sys_84: 6.58564307e-01 art_sys_85: -7.33558540e-01 art_sys_86: 2.17859452e-01 - art_sys_87: -6.35471199e-19 - art_sys_88: -1.80018797e-19 - art_sys_89: -1.51664449e-19 - art_sys_90: -3.22308353e-19 - art_sys_91: -2.16448858e-20 - art_sys_92: -5.08567276e-20 - art_sys_93: -9.08640234e-20 - art_sys_94: -2.90409764e-20 - art_sys_95: -1.32214275e-19 - art_sys_96: 2.01504214e-19 - art_sys_97: 5.65095946e-22 - art_sys_98: 5.96549290e-20 - art_sys_99: 2.84913641e-21 - art_sys_100: -4.70706643e-20 - art_sys_101: 4.89217361e-22 - art_sys_102: -1.23998041e-20 - art_sys_103: 1.65651781e-20 - art_sys_104: 3.72461880e-20 - art_sys_105: 3.37399807e-21 - art_sys_106: 6.23968784e-21 - art_sys_107: -5.90428376e-21 - art_sys_108: -7.67907526e-21 - art_sys_109: 4.33063850e-21 - art_sys_110: 3.62267254e-20 - art_sys_111: -7.67073275e-21 - art_sys_112: -7.89467701e-23 - art_sys_113: -3.54236972e-20 - art_sys_114: -3.18035382e-21 - art_sys_115: -3.14790503e-21 - art_sys_116: 1.09191338e-20 - art_sys_117: -2.59732275e-21 - art_sys_118: -2.55325880e-21 - art_sys_119: -9.69465451e-21 - art_sys_120: -9.36786714e-23 - art_sys_121: 5.98489309e-21 - art_sys_122: 2.45862606e-22 - art_sys_123: 6.90834366e-21 - art_sys_124: -1.12327248e-21 - art_sys_125: 5.87595283e-22 - art_sys_126: 1.89820818e-21 - art_sys_127: 2.90742356e-22 - art_sys_128: -5.02213027e-21 - art_sys_129: -2.46659981e-22 - art_sys_130: 2.13430697e-21 - art_sys_131: 1.97131222e-21 - art_sys_132: 2.58048433e-22 - art_sys_133: 7.00842985e-22 - art_sys_134: -1.65600389e-21 - art_sys_135: -3.81978937e-22 - art_sys_136: -2.89758927e-22 - art_sys_137: 1.72233971e-22 - art_sys_138: -3.83011869e-22 - art_sys_139: 2.98684409e-22 - art_sys_140: 4.59894122e-23 - art_sys_141: -4.02264745e-22 - art_sys_142: -0.0 - art_sys_143: 4.19140501e-23 - art_sys_144: 9.30856450e-23 - art_sys_145: 3.43970736e-22 - art_sys_146: -1.29657856e-20 - art_sys_147: 1.43285088e-21 - art_sys_148: 2.67927602e-21 - art_sys_149: 4.99999581e-21 - art_sys_150: 1.24351664e-21 - art_sys_151: 4.21132423e-21 - art_sys_152: -1.71688011e-21 - art_sys_153: -1.04978562e-21 - art_sys_154: -3.79902195e-20 - art_sys_155: -1.41895752e-20 - art_sys_156: -4.32101982e-21 - art_sys_157: 3.87621570e-21 + art_sys_87: 7.52851680e-19 + art_sys_88: -4.32803524e-19 + art_sys_89: 9.55886479e-04 + art_sys_90: 4.60632201e-19 + art_sys_91: 1.19859990e-19 + art_sys_92: 2.85774007e-04 + art_sys_93: 1.93413205e-04 + art_sys_94: -6.81170913e-20 + art_sys_95: 7.08808261e-20 + art_sys_96: -7.78135342e-20 + art_sys_97: 4.70338200e-21 + art_sys_98: -4.66076449e-20 + art_sys_99: 6.96931000e-20 + art_sys_100: 7.84034895e-21 + art_sys_101: 5.37481748e-20 + art_sys_102: -4.81106113e-21 + art_sys_103: 6.05288822e-20 + art_sys_104: 2.12549180e-20 + art_sys_105: -2.13661668e-20 + art_sys_106: 6.18078777e-21 + art_sys_107: 1.83464965e-20 + art_sys_108: 2.44019250e-20 + art_sys_109: -4.06417306e-21 + art_sys_110: -5.33505543e-21 + art_sys_111: 1.45361709e-20 + art_sys_112: -1.81720103e-21 + art_sys_113: -2.18501449e-20 + art_sys_114: 4.77540532e-20 + art_sys_115: 2.07317401e-20 + art_sys_116: 1.89782226e-21 + art_sys_117: 1.51704351e-20 + art_sys_118: -3.51530227e-21 + art_sys_119: -1.64640884e-20 + art_sys_120: 9.39949329e-22 + art_sys_121: -1.17625846e-23 + art_sys_122: -9.27280018e-21 + art_sys_123: 8.37646849e-22 + art_sys_124: -1.43920068e-21 + art_sys_125: 3.56148866e-21 + art_sys_126: -3.34405568e-22 + art_sys_127: -6.14368581e-21 + art_sys_128: -2.05027884e-21 + art_sys_129: -9.38377319e-23 + art_sys_130: 3.71056655e-21 + art_sys_131: -2.42765301e-21 + art_sys_132: 2.55931387e-21 + art_sys_133: 2.44409545e-22 + art_sys_134: -1.42636692e-21 + art_sys_135: 6.46601080e-21 + art_sys_136: -2.15466944e-21 + art_sys_137: -2.22639166e-21 + art_sys_138: -2.89631701e-21 + art_sys_139: 6.37384039e-22 + art_sys_140: 2.41453618e-22 + art_sys_141: 1.19566423e-21 + art_sys_142: 2.15869354e-22 + art_sys_143: -1.87365486e-21 + art_sys_144: 3.11388135e-22 + art_sys_145: -3.66163519e-22 + art_sys_146: -4.90316069e-23 + art_sys_147: -7.31579787e-23 + art_sys_148: 1.93343589e-20 + art_sys_149: -1.91444143e-22 + art_sys_150: 9.70794350e-22 + art_sys_151: -7.27944482e-22 + art_sys_152: -4.54614304e-20 + art_sys_153: -3.50266816e-22 + art_sys_154: -8.86453527e-23 + art_sys_155: 1.26188142e-20 + art_sys_156: -0.0 + art_sys_157: -7.71877473e-23 art_sys_158: -0.0 - art_sys_159: -4.68060483e-23 - art_sys_160: -4.68060483e-23 - art_sys_161: -2.69545651e-22 - art_sys_162: -1.29275828e-23 - art_sys_163: 0.0 - art_sys_164: 1.09719718e-24 - art_sys_165: -9.55886479e-04 - art_sys_166: 2.85774007e-04 - art_sys_167: -1.93413205e-04 - art_sys_168: 8.67287171e-06 - art_sys_169: 2.49206367e-06 - art_sys_170: 1.01580368e-06 + art_sys_159: 2.58421149e-23 + art_sys_160: -5.49564801e-23 + art_sys_161: 6.19383058e-23 + art_sys_162: 6.19383058e-23 + art_sys_163: -2.75280503e-22 + art_sys_164: -2.75280503e-22 + art_sys_165: -1.29274425e-23 + art_sys_166: -1.09728353e-24 + art_sys_167: -0.0 + art_sys_168: -8.67287171e-06 + art_sys_169: -2.49206367e-06 + art_sys_170: -1.01580368e-06 art_sys_171: 3.67763054e-08 art_sys_172: 8.94994579e-09 - art_sys_173: -3.47726667e-09 - art_sys_174: -1.45916896e-19 - art_sys_175: 8.98965314e-12 - art_sys_176: 2.19571390e-12 - art_sys_177: -1.09752767e-12 - art_sys_178: -2.61832908e-13 - art_sys_179: -5.59470948e-14 - art_sys_180: 1.10310189e-14 - art_sys_181: 1.89542425e-15 - art_sys_182: 3.00135252e-16 - art_sys_183: 4.96406124e-17 - art_sys_184: -4.80290338e-18 - art_sys_185: 1.48215825e-21 + art_sys_173: 3.47726667e-09 + art_sys_174: -8.98965312e-12 + art_sys_175: -2.19571391e-12 + art_sys_176: 1.09752767e-12 + art_sys_177: -5.59470915e-14 + art_sys_178: 1.10310188e-14 + art_sys_179: 1.45916896e-19 + art_sys_180: 1.48215825e-21 + art_sys_181: -2.61832908e-13 + art_sys_182: 1.89542430e-15 + art_sys_183: -3.00135081e-16 + art_sys_184: 4.96406112e-17 + art_sys_185: 4.80290338e-18 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -45408,127 +45408,127 @@ bins: art_sys_62: 0.0 art_sys_63: 0.0 art_sys_64: 0.0 - art_sys_65: -1.82238996e-252 - art_sys_66: -5.61189196e-177 - art_sys_67: -1.51044528e-134 - art_sys_68: -4.22200374e-124 - art_sys_69: 7.98746260e-132 - art_sys_70: -3.98171906e-130 - art_sys_71: -4.07844442e-124 - art_sys_72: 1.54506571e-111 - art_sys_73: -1.00614369e-99 - art_sys_74: -5.94980364e-102 - art_sys_75: -2.80081542e-30 - art_sys_76: 4.14990841e-01 + art_sys_65: 0.0 + art_sys_66: 0.0 + art_sys_67: 0.0 + art_sys_68: 0.0 + art_sys_69: 0.0 + art_sys_70: 0.0 + art_sys_71: 0.0 + art_sys_72: 3.60021353e-191 + art_sys_73: -2.23154309e-182 + art_sys_74: -6.95631422e-184 + art_sys_75: -3.41684897e-68 + art_sys_76: -4.14990841e-01 art_sys_77: 7.71322404e-01 art_sys_78: -1.95915411e+00 - art_sys_79: -3.97868035e-20 - art_sys_80: 3.85313480e-21 - art_sys_81: -5.65278531e-01 - art_sys_82: 1.93699114e+00 - art_sys_83: 1.99323586e+00 - art_sys_84: -1.80835392e-19 + art_sys_79: -1.60943542e-20 + art_sys_80: -5.65278531e-01 + art_sys_81: -1.20769764e-19 + art_sys_82: 7.59635334e-21 + art_sys_83: -1.93699114e+00 + art_sys_84: -1.99323586e+00 art_sys_85: 9.71138353e-01 art_sys_86: -4.72301328e-01 - art_sys_87: 1.46548117e-18 - art_sys_88: 2.54946384e-19 - art_sys_89: -3.23558554e-20 - art_sys_90: -2.69858032e-20 - art_sys_91: -5.75826908e-20 - art_sys_92: -3.21753988e-20 - art_sys_93: 1.32266946e-20 - art_sys_94: 3.90183457e-20 - art_sys_95: 8.37492604e-20 - art_sys_96: -2.20987317e-19 - art_sys_97: 6.35424130e-20 - art_sys_98: -1.63294759e-20 - art_sys_99: -1.89974962e-20 - art_sys_100: -2.45047910e-20 - art_sys_101: 2.30106372e-21 - art_sys_102: -1.00293885e-20 - art_sys_103: 5.96811637e-21 - art_sys_104: -7.62703161e-21 - art_sys_105: -4.29805473e-20 - art_sys_106: -9.20691940e-21 - art_sys_107: -2.55097294e-21 - art_sys_108: 2.03647010e-20 - art_sys_109: 5.95441706e-21 - art_sys_110: -2.29133676e-20 - art_sys_111: -3.75834023e-21 - art_sys_112: -1.27577078e-20 - art_sys_113: -2.72937715e-21 - art_sys_114: 6.83235540e-21 - art_sys_115: 1.73254664e-20 - art_sys_116: -1.54400818e-21 - art_sys_117: -2.36768779e-20 - art_sys_118: -5.21675278e-22 - art_sys_119: -1.06668778e-20 - art_sys_120: 1.64260743e-21 - art_sys_121: 3.52926038e-21 - art_sys_122: -8.55627007e-22 - art_sys_123: 4.45928386e-21 - art_sys_124: 2.48368677e-21 - art_sys_125: 2.25880794e-21 - art_sys_126: -1.83502803e-21 - art_sys_127: -2.43501123e-21 - art_sys_128: 2.59552654e-21 - art_sys_129: -3.57074894e-22 - art_sys_130: 2.27694198e-21 - art_sys_131: -1.75622876e-21 - art_sys_132: -8.04377516e-23 - art_sys_133: -6.77285477e-23 - art_sys_134: 1.38703062e-21 - art_sys_135: -8.79268809e-22 - art_sys_136: 1.26057617e-22 - art_sys_137: -2.41487810e-22 - art_sys_138: 3.90238161e-22 - art_sys_139: -1.88206273e-22 - art_sys_140: -1.21314225e-22 - art_sys_141: -2.41333213e-22 - art_sys_142: 0.0 - art_sys_143: 1.18689321e-22 - art_sys_144: 2.57198668e-22 - art_sys_145: 2.53165584e-22 - art_sys_146: -6.19817478e-21 - art_sys_147: -9.42485448e-21 - art_sys_148: -7.55603069e-21 - art_sys_149: -4.12571741e-21 - art_sys_150: -2.49624936e-21 - art_sys_151: 9.21486369e-22 - art_sys_152: -1.01642676e-21 - art_sys_153: -5.06907362e-22 - art_sys_154: 4.30688706e-20 - art_sys_155: 1.96235861e-20 - art_sys_156: 4.47126622e-21 - art_sys_157: -3.65180288e-21 - art_sys_158: -0.0 - art_sys_159: -4.67498905e-23 - art_sys_160: -4.67498905e-23 - art_sys_161: 2.03645010e-22 - art_sys_162: 5.83233375e-23 - art_sys_163: -0.0 - art_sys_164: -4.86945914e-24 - art_sys_165: 2.37697775e-03 - art_sys_166: -7.79906198e-04 - art_sys_167: 6.06904599e-04 - art_sys_168: -2.55091632e-05 - art_sys_169: -8.50277782e-06 - art_sys_170: -3.44112666e-06 + art_sys_87: 4.49220631e-19 + art_sys_88: 2.96400142e-20 + art_sys_89: -2.37697775e-03 + art_sys_90: 4.59749044e-20 + art_sys_91: -5.49903454e-20 + art_sys_92: -7.79906198e-04 + art_sys_93: -6.06904599e-04 + art_sys_94: 1.18958531e-19 + art_sys_95: 7.11188987e-20 + art_sys_96: 4.63464240e-20 + art_sys_97: 4.82698622e-20 + art_sys_98: -8.34924029e-20 + art_sys_99: 4.08683850e-21 + art_sys_100: 7.34911192e-20 + art_sys_101: 4.95326017e-20 + art_sys_102: -1.04942920e-20 + art_sys_103: -2.07910123e-20 + art_sys_104: -9.55116685e-21 + art_sys_105: 4.07252704e-20 + art_sys_106: -2.76999024e-20 + art_sys_107: 1.33541422e-20 + art_sys_108: 3.09508046e-21 + art_sys_109: 3.26198048e-20 + art_sys_110: -6.19122441e-21 + art_sys_111: -3.24347671e-20 + art_sys_112: 1.91085583e-20 + art_sys_113: 3.10997972e-20 + art_sys_114: 5.39208914e-20 + art_sys_115: -4.71297358e-21 + art_sys_116: -1.53738518e-20 + art_sys_117: -3.20463045e-20 + art_sys_118: 5.29080387e-21 + art_sys_119: 1.14106298e-21 + art_sys_120: -3.73829441e-21 + art_sys_121: 4.73015364e-21 + art_sys_122: 1.05427240e-22 + art_sys_123: 5.13512872e-22 + art_sys_124: 1.24651067e-21 + art_sys_125: 4.92664472e-21 + art_sys_126: -2.13458449e-21 + art_sys_127: 1.26563091e-20 + art_sys_128: 9.53024274e-22 + art_sys_129: -1.99266127e-21 + art_sys_130: 3.86408126e-21 + art_sys_131: 2.54527023e-21 + art_sys_132: 3.97393071e-21 + art_sys_133: 1.53883987e-21 + art_sys_134: 7.21035614e-21 + art_sys_135: -1.76852492e-21 + art_sys_136: 5.03625162e-21 + art_sys_137: 1.46735933e-21 + art_sys_138: 1.75322496e-21 + art_sys_139: -8.25727152e-22 + art_sys_140: -1.16674478e-21 + art_sys_141: -2.80388572e-21 + art_sys_142: -4.36520033e-22 + art_sys_143: -5.27267588e-22 + art_sys_144: 5.56555149e-22 + art_sys_145: -5.12735695e-22 + art_sys_146: -6.70720975e-22 + art_sys_147: 8.02951187e-22 + art_sys_148: -1.73375859e-20 + art_sys_149: 3.35329573e-23 + art_sys_150: -7.49770565e-22 + art_sys_151: -2.23145011e-22 + art_sys_152: 5.87766333e-20 + art_sys_153: -2.93172925e-23 + art_sys_154: -1.22219238e-22 + art_sys_155: -1.34706272e-20 + art_sys_156: -0.0 + art_sys_157: -1.04823922e-24 + art_sys_158: 0.0 + art_sys_159: 9.40736199e-23 + art_sys_160: -1.14687406e-21 + art_sys_161: 5.25088547e-25 + art_sys_162: 5.25088547e-25 + art_sys_163: 7.23204413e-22 + art_sys_164: 7.23204413e-22 + art_sys_165: 5.83235801e-23 + art_sys_166: 4.86966035e-24 + art_sys_167: 0.0 + art_sys_168: 2.55091632e-05 + art_sys_169: 8.50277782e-06 + art_sys_170: 3.44112666e-06 art_sys_171: -1.17126754e-07 art_sys_172: -3.40780338e-08 - art_sys_173: 1.19915646e-08 - art_sys_174: 6.34565991e-19 - art_sys_175: -4.63254393e-11 - art_sys_176: -9.93457524e-12 - art_sys_177: 4.79041716e-12 - art_sys_178: 1.22531339e-12 - art_sys_179: 2.39099471e-13 - art_sys_180: -4.95016133e-14 - art_sys_181: -8.38840451e-15 - art_sys_182: -1.29642981e-15 - art_sys_183: -2.21721160e-16 - art_sys_184: 2.05790113e-17 - art_sys_185: -6.15188607e-21 + art_sys_173: -1.19915646e-08 + art_sys_174: 4.63254393e-11 + art_sys_175: 9.93457524e-12 + art_sys_176: -4.79041716e-12 + art_sys_177: 2.39099469e-13 + art_sys_178: -4.95016138e-14 + art_sys_179: -6.34565991e-19 + art_sys_180: -6.15188607e-21 + art_sys_181: 1.22531339e-12 + art_sys_182: -8.38840495e-15 + art_sys_183: 1.29643002e-15 + art_sys_184: -2.21721161e-16 + art_sys_185: -2.05790113e-17 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -45699,127 +45699,127 @@ bins: art_sys_62: 0.0 art_sys_63: 0.0 art_sys_64: 0.0 - art_sys_65: -3.83292074e-253 - art_sys_66: -1.18032549e-177 - art_sys_67: -3.17685564e-135 - art_sys_68: -8.87996180e-125 - art_sys_69: 1.67996921e-132 - art_sys_70: -8.37458120e-131 - art_sys_71: -8.57801954e-125 - art_sys_72: 3.24967132e-112 - art_sys_73: -2.11617944e-100 - art_sys_74: -1.25139702e-102 - art_sys_75: -5.89083655e-31 - art_sys_76: 8.72832674e-02 + art_sys_65: 0.0 + art_sys_66: 0.0 + art_sys_67: 0.0 + art_sys_68: 0.0 + art_sys_69: 0.0 + art_sys_70: 0.0 + art_sys_71: 0.0 + art_sys_72: 7.57216025e-192 + art_sys_73: -4.69349990e-183 + art_sys_74: -1.46308894e-184 + art_sys_75: -7.18651385e-69 + art_sys_76: -8.72832674e-02 art_sys_77: -1.09606082e-01 art_sys_78: -1.29949206e-01 - art_sys_79: -5.03184479e-21 - art_sys_80: 5.00628272e-22 - art_sys_81: -2.33708687e-01 - art_sys_82: -4.73613539e-01 - art_sys_83: 2.26881092e+00 - art_sys_84: -9.79043861e-19 + art_sys_79: 1.00099761e-20 + art_sys_80: -2.33708687e-01 + art_sys_81: -6.16440791e-20 + art_sys_82: 6.13598939e-22 + art_sys_83: 4.73613539e-01 + art_sys_84: -2.26881092e+00 art_sys_85: -9.14928319e-01 art_sys_86: 5.61238569e-01 - art_sys_87: -2.68578158e-19 - art_sys_88: -6.28509802e-19 - art_sys_89: -1.37596047e-19 - art_sys_90: -6.10927572e-21 - art_sys_91: -1.13722421e-19 - art_sys_92: -3.48609206e-20 - art_sys_93: -9.03428707e-21 - art_sys_94: 4.06971705e-20 - art_sys_95: 1.10589358e-19 - art_sys_96: 1.01385313e-19 - art_sys_97: 1.63220011e-20 - art_sys_98: 4.32191747e-20 - art_sys_99: -1.81387677e-20 - art_sys_100: -8.86681253e-21 - art_sys_101: 3.12188728e-20 - art_sys_102: -1.19576777e-19 - art_sys_103: 4.10455800e-20 - art_sys_104: -1.99205630e-20 - art_sys_105: 7.60692385e-21 - art_sys_106: -5.48283102e-21 - art_sys_107: 9.99508944e-21 - art_sys_108: -2.09412917e-20 - art_sys_109: -6.57861922e-21 - art_sys_110: 7.37353459e-20 - art_sys_111: -1.56921380e-20 - art_sys_112: 1.11333490e-20 - art_sys_113: -4.16755347e-21 - art_sys_114: 5.68195423e-21 - art_sys_115: 1.34061036e-20 - art_sys_116: 1.53490434e-21 - art_sys_117: -5.77453934e-20 - art_sys_118: 1.87512891e-21 - art_sys_119: 1.40305240e-20 - art_sys_120: -3.56533117e-21 - art_sys_121: 7.03936847e-22 - art_sys_122: 4.43565088e-21 - art_sys_123: -7.21644818e-21 - art_sys_124: 3.24496295e-21 - art_sys_125: 7.89042665e-22 - art_sys_126: 5.17851547e-22 - art_sys_127: -2.67659236e-22 - art_sys_128: 4.97345634e-21 - art_sys_129: -2.34758061e-21 - art_sys_130: 8.36504995e-21 - art_sys_131: -3.73873832e-21 - art_sys_132: 3.13743225e-23 - art_sys_133: -1.93888461e-21 - art_sys_134: 6.20506421e-22 - art_sys_135: 8.53851153e-22 - art_sys_136: 1.27693973e-22 - art_sys_137: 2.72515208e-22 - art_sys_138: -1.82109433e-22 - art_sys_139: 1.86697883e-22 - art_sys_140: 1.21882882e-22 - art_sys_141: -5.37612238e-23 - art_sys_142: -0.0 - art_sys_143: 1.21713574e-22 - art_sys_144: 8.16437356e-23 - art_sys_145: -2.90271309e-24 - art_sys_146: -1.72766272e-20 - art_sys_147: -1.05164288e-20 - art_sys_148: -5.05878648e-21 - art_sys_149: -2.60985534e-21 - art_sys_150: -3.55598491e-21 - art_sys_151: -1.45881504e-21 - art_sys_152: 2.87105019e-21 - art_sys_153: 5.92276119e-22 - art_sys_154: -4.99882980e-20 - art_sys_155: -1.86693516e-20 - art_sys_156: -1.32433723e-22 - art_sys_157: 2.21142204e-21 + art_sys_87: -2.63998302e-18 + art_sys_88: 1.14536445e-18 + art_sys_89: 1.18104713e-02 + art_sys_90: -3.58174096e-19 + art_sys_91: -8.15495385e-20 + art_sys_92: 2.46589436e-03 + art_sys_93: 2.16759950e-03 + art_sys_94: -1.08619540e-19 + art_sys_95: -2.44305337e-20 + art_sys_96: -1.16457449e-19 + art_sys_97: 7.38083636e-22 + art_sys_98: -3.54120306e-20 + art_sys_99: -3.11193681e-20 + art_sys_100: 1.16610055e-19 + art_sys_101: 4.40849186e-20 + art_sys_102: 9.64248888e-21 + art_sys_103: 1.20493230e-20 + art_sys_104: -3.37759173e-20 + art_sys_105: 3.22820228e-20 + art_sys_106: 2.17923905e-20 + art_sys_107: 5.22669684e-21 + art_sys_108: 6.99070616e-20 + art_sys_109: -4.26608934e-20 + art_sys_110: 8.26095535e-21 + art_sys_111: 1.39204821e-20 + art_sys_112: -9.90340981e-21 + art_sys_113: -2.41865746e-20 + art_sys_114: 8.54900624e-21 + art_sys_115: -5.23746457e-21 + art_sys_116: -1.66969593e-20 + art_sys_117: 1.80220785e-20 + art_sys_118: 1.10006836e-20 + art_sys_119: -2.62238267e-21 + art_sys_120: 2.60989010e-21 + art_sys_121: 2.20613215e-21 + art_sys_122: -9.10240951e-21 + art_sys_123: -5.72237222e-21 + art_sys_124: -7.53828155e-22 + art_sys_125: 4.07417029e-21 + art_sys_126: -6.94078476e-21 + art_sys_127: 3.43410604e-21 + art_sys_128: 1.98514263e-21 + art_sys_129: 1.08252792e-20 + art_sys_130: -1.51009923e-21 + art_sys_131: 1.66740465e-21 + art_sys_132: -4.53127894e-21 + art_sys_133: 5.24577203e-21 + art_sys_134: -5.33075208e-21 + art_sys_135: 3.85618241e-23 + art_sys_136: 1.18023593e-21 + art_sys_137: -5.31994366e-21 + art_sys_138: 2.05057413e-21 + art_sys_139: 3.20986205e-22 + art_sys_140: 7.37666887e-23 + art_sys_141: -7.70715762e-22 + art_sys_142: -9.79823146e-22 + art_sys_143: 1.14376540e-22 + art_sys_144: 2.04288432e-21 + art_sys_145: 8.05820184e-22 + art_sys_146: -4.53118663e-22 + art_sys_147: -2.25476672e-22 + art_sys_148: 1.35964125e-20 + art_sys_149: 2.24492300e-22 + art_sys_150: 3.25960315e-22 + art_sys_151: -5.83414709e-23 + art_sys_152: -7.62938640e-20 + art_sys_153: -1.79661070e-22 + art_sys_154: 1.13585419e-23 + art_sys_155: 2.02300312e-20 + art_sys_156: -0.0 + art_sys_157: -1.15765703e-22 art_sys_158: 0.0 - art_sys_159: -7.23906108e-24 - art_sys_160: -7.23906108e-24 - art_sys_161: -2.52355579e-22 - art_sys_162: -1.60195678e-22 - art_sys_163: 0.0 - art_sys_164: 1.36833082e-23 - art_sys_165: -1.18104713e-02 - art_sys_166: 2.46589436e-03 - art_sys_167: -2.16759950e-03 - art_sys_168: 1.00527489e-04 - art_sys_169: 2.84992003e-05 - art_sys_170: 1.22701055e-05 + art_sys_159: -1.21612874e-23 + art_sys_160: 4.22290824e-21 + art_sys_161: 2.12802173e-23 + art_sys_162: 2.12802173e-23 + art_sys_163: -1.19470822e-21 + art_sys_164: -1.19470822e-21 + art_sys_165: -1.60197838e-22 + art_sys_166: -1.36843572e-23 + art_sys_167: -0.0 + art_sys_168: -1.00527489e-04 + art_sys_169: -2.84992003e-05 + art_sys_170: -1.22701055e-05 art_sys_171: 4.17007605e-07 art_sys_172: 1.09447160e-07 - art_sys_173: -4.18102947e-08 - art_sys_174: -1.81744562e-18 - art_sys_175: 8.57413597e-11 - art_sys_176: 3.05808041e-11 - art_sys_177: -1.23524354e-11 - art_sys_178: -3.28626743e-12 - art_sys_179: -6.83156033e-13 - art_sys_180: 1.33772923e-13 - art_sys_181: 2.37826574e-14 - art_sys_182: 3.66744885e-15 - art_sys_183: 6.15817138e-16 - art_sys_184: -5.84536714e-17 - art_sys_185: 2.01167908e-20 + art_sys_173: 4.18102947e-08 + art_sys_174: -8.57413597e-11 + art_sys_175: -3.05808041e-11 + art_sys_176: 1.23524354e-11 + art_sys_177: -6.83156030e-13 + art_sys_178: 1.33772923e-13 + art_sys_179: 1.81744562e-18 + art_sys_180: 2.01167908e-20 + art_sys_181: -3.28626743e-12 + art_sys_182: 2.37826579e-14 + art_sys_183: -3.66744883e-15 + art_sys_184: 6.15817138e-16 + art_sys_185: 5.84536714e-17 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -45990,127 +45990,127 @@ bins: art_sys_62: 0.0 art_sys_63: 0.0 art_sys_64: 0.0 - art_sys_65: 4.49352530e-254 - art_sys_66: 1.38372556e-178 - art_sys_67: 3.72430860e-136 - art_sys_68: 1.04102049e-125 - art_sys_69: -1.96947059e-133 - art_sys_70: 9.81773435e-132 - art_sys_71: 1.00562303e-125 - art_sys_72: -3.80967226e-113 - art_sys_73: 2.48085093e-101 - art_sys_74: 1.46704453e-103 - art_sys_75: 6.90597738e-32 - art_sys_76: -1.02324392e-02 + art_sys_65: 0.0 + art_sys_66: 0.0 + art_sys_67: 0.0 + art_sys_68: 0.0 + art_sys_69: 0.0 + art_sys_70: 0.0 + art_sys_71: 0.0 + art_sys_72: -8.87708073e-193 + art_sys_73: 5.50233701e-184 + art_sys_74: 1.71522501e-185 + art_sys_75: 8.42493280e-70 + art_sys_76: 1.02324392e-02 art_sys_77: -6.09757045e-02 art_sys_78: 1.09840418e-01 - art_sys_79: 1.96607689e-21 - art_sys_80: -2.05567898e-22 - art_sys_81: 2.46817492e-02 - art_sys_82: -4.11002677e-01 - art_sys_83: 2.51577085e-01 - art_sys_84: -2.25269947e-19 + art_sys_79: 1.37929604e-21 + art_sys_80: 2.46817492e-02 + art_sys_81: 4.47952243e-21 + art_sys_82: -4.14280006e-22 + art_sys_83: 4.11002677e-01 + art_sys_84: -2.51577085e-01 art_sys_85: -1.50524545e+00 art_sys_86: -7.51931830e-01 - art_sys_87: 1.33845679e-18 - art_sys_88: 2.40145419e-19 - art_sys_89: 2.06636050e-20 - art_sys_90: -1.78526414e-19 - art_sys_91: 5.11014246e-21 - art_sys_92: -1.27682458e-19 - art_sys_93: -1.45085870e-19 - art_sys_94: 4.02212940e-20 - art_sys_95: -8.22446353e-20 - art_sys_96: 4.07794861e-19 - art_sys_97: -1.00113789e-20 - art_sys_98: -5.01113658e-20 - art_sys_99: -6.81249257e-21 - art_sys_100: -4.63708329e-21 - art_sys_101: -5.46365848e-20 - art_sys_102: 8.59909990e-20 - art_sys_103: -1.30797554e-20 - art_sys_104: 7.21184285e-21 - art_sys_105: -4.84546565e-20 - art_sys_106: 2.49861272e-20 - art_sys_107: -1.58111542e-20 - art_sys_108: 2.13944545e-20 - art_sys_109: 1.32797207e-20 - art_sys_110: -1.18745222e-20 - art_sys_111: -8.84216252e-21 - art_sys_112: 1.19578788e-20 - art_sys_113: -2.21429186e-20 - art_sys_114: 1.27155587e-20 - art_sys_115: 4.17009528e-21 - art_sys_116: 1.54974292e-20 - art_sys_117: 2.80058694e-21 - art_sys_118: 2.05101327e-21 - art_sys_119: -1.55428133e-20 - art_sys_120: -2.77727944e-21 - art_sys_121: -3.43056053e-21 - art_sys_122: 1.70600681e-21 - art_sys_123: 3.05730646e-21 - art_sys_124: 6.40814961e-22 - art_sys_125: -1.00060461e-21 - art_sys_126: 4.17850913e-22 - art_sys_127: -2.99342325e-21 - art_sys_128: 1.12791044e-20 - art_sys_129: -3.06095914e-21 - art_sys_130: -1.66999832e-21 - art_sys_131: -2.83047867e-21 - art_sys_132: -1.04273641e-21 - art_sys_133: -5.55869185e-22 - art_sys_134: 1.50919674e-21 - art_sys_135: -2.83178247e-22 - art_sys_136: 5.11179255e-22 - art_sys_137: 6.41569002e-24 - art_sys_138: -1.67578366e-22 - art_sys_139: -4.22020479e-22 - art_sys_140: -1.43565692e-22 - art_sys_141: -1.08359454e-22 - art_sys_142: 0.0 - art_sys_143: -6.48705193e-23 - art_sys_144: -5.03113883e-23 - art_sys_145: 8.23286181e-23 - art_sys_146: 2.86140142e-20 - art_sys_147: 3.54919622e-21 - art_sys_148: -1.77800183e-21 - art_sys_149: 1.08243348e-21 - art_sys_150: -9.11103159e-22 - art_sys_151: 4.73526669e-21 - art_sys_152: 1.52282046e-21 - art_sys_153: -2.57631284e-22 - art_sys_154: 4.75865276e-20 - art_sys_155: 1.83786042e-20 - art_sys_156: -1.45915739e-21 - art_sys_157: -2.29731952e-21 - art_sys_158: -0.0 - art_sys_159: -7.17311150e-23 - art_sys_160: -7.17311150e-23 - art_sys_161: 2.71016467e-22 - art_sys_162: 6.79899824e-22 - art_sys_163: -0.0 - art_sys_164: -5.67872107e-23 - art_sys_165: 8.05710365e-03 - art_sys_166: -7.64305344e-03 - art_sys_167: 5.01562437e-03 - art_sys_168: -2.79340298e-04 - art_sys_169: -8.90654986e-05 - art_sys_170: -3.71210514e-05 + art_sys_87: 4.64985515e-19 + art_sys_88: 6.70796216e-19 + art_sys_89: -8.05710365e-03 + art_sys_90: 1.08587574e-19 + art_sys_91: 1.91856975e-20 + art_sys_92: -7.64305344e-03 + art_sys_93: -5.01562437e-03 + art_sys_94: 1.04735156e-19 + art_sys_95: 7.04200057e-21 + art_sys_96: 5.60779509e-20 + art_sys_97: -9.25933174e-20 + art_sys_98: 2.02909803e-20 + art_sys_99: 2.14644955e-21 + art_sys_100: 7.55212049e-21 + art_sys_101: -4.30632434e-20 + art_sys_102: -1.46923813e-20 + art_sys_103: 1.64373849e-20 + art_sys_104: 1.03848826e-20 + art_sys_105: -7.12857659e-20 + art_sys_106: -1.10318781e-23 + art_sys_107: -3.34343620e-21 + art_sys_108: 1.71165445e-20 + art_sys_109: 3.15648769e-20 + art_sys_110: 8.41578561e-21 + art_sys_111: 2.30959852e-20 + art_sys_112: -2.04730237e-21 + art_sys_113: -3.58181956e-21 + art_sys_114: -2.17169568e-20 + art_sys_115: 3.55355104e-21 + art_sys_116: 2.00091383e-22 + art_sys_117: -2.89385565e-20 + art_sys_118: -8.75849444e-22 + art_sys_119: -1.01019631e-20 + art_sys_120: -5.62539680e-21 + art_sys_121: -1.04750307e-20 + art_sys_122: -2.02453481e-21 + art_sys_123: 6.77416816e-21 + art_sys_124: 1.49597684e-21 + art_sys_125: -1.67764376e-20 + art_sys_126: -2.14328313e-21 + art_sys_127: 2.22390917e-21 + art_sys_128: 6.64338391e-22 + art_sys_129: -1.04058144e-21 + art_sys_130: 2.16576814e-21 + art_sys_131: 1.18239607e-21 + art_sys_132: -6.06418733e-21 + art_sys_133: -7.60152816e-21 + art_sys_134: 1.50182934e-21 + art_sys_135: 7.51018738e-22 + art_sys_136: -4.71758399e-21 + art_sys_137: -1.35558055e-21 + art_sys_138: -7.09460428e-23 + art_sys_139: -7.17027865e-22 + art_sys_140: -4.27967443e-21 + art_sys_141: 9.21588219e-22 + art_sys_142: 1.59727069e-21 + art_sys_143: 3.78629606e-22 + art_sys_144: 6.29790171e-22 + art_sys_145: -5.68827032e-22 + art_sys_146: 1.39847969e-21 + art_sys_147: 1.30869527e-21 + art_sys_148: -1.18570981e-20 + art_sys_149: -6.04252863e-24 + art_sys_150: 6.28527670e-22 + art_sys_151: 5.05593284e-22 + art_sys_152: 7.86490570e-20 + art_sys_153: 2.33123491e-22 + art_sys_154: -3.67307258e-23 + art_sys_155: -1.90975892e-20 + art_sys_156: 0.0 + art_sys_157: 2.33643464e-22 + art_sys_158: 0.0 + art_sys_159: -1.24950036e-22 + art_sys_160: -4.94165883e-21 + art_sys_161: -2.56328338e-23 + art_sys_162: -2.56328338e-23 + art_sys_163: 1.51760919e-21 + art_sys_164: 1.51760919e-21 + art_sys_165: 6.79906882e-22 + art_sys_166: 5.67876401e-23 + art_sys_167: 0.0 + art_sys_168: 2.79340298e-04 + art_sys_169: 8.90654986e-05 + art_sys_170: 3.71210514e-05 art_sys_171: -1.43173981e-06 art_sys_172: -3.76865019e-07 - art_sys_173: 1.40892706e-07 - art_sys_174: 7.45908402e-18 - art_sys_175: -5.80685303e-10 - art_sys_176: -1.02322748e-10 - art_sys_177: 5.93611779e-11 - art_sys_178: 1.37764597e-11 - art_sys_179: 2.85740629e-12 - art_sys_180: -5.82002329e-13 - art_sys_181: -9.74862861e-14 - art_sys_182: -1.54371816e-14 - art_sys_183: -2.58869574e-15 - art_sys_184: 2.46442789e-16 - art_sys_185: -6.90291338e-20 + art_sys_173: -1.40892706e-07 + art_sys_174: 5.80685303e-10 + art_sys_175: 1.02322748e-10 + art_sys_176: -5.93611779e-11 + art_sys_177: 2.85740628e-12 + art_sys_178: -5.82002329e-13 + art_sys_179: -7.45908402e-18 + art_sys_180: -6.90291338e-20 + art_sys_181: 1.37764597e-11 + art_sys_182: -9.74862860e-14 + art_sys_183: 1.54371815e-14 + art_sys_184: -2.58869574e-15 + art_sys_185: -2.46442789e-16 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -46281,127 +46281,127 @@ bins: art_sys_62: 0.0 art_sys_63: 0.0 art_sys_64: 0.0 - art_sys_65: 1.47636130e-254 - art_sys_66: 4.54633938e-179 - art_sys_67: 1.22365094e-136 - art_sys_68: 3.42035485e-126 - art_sys_69: -6.47085083e-134 - art_sys_70: 3.22569399e-132 - art_sys_71: 3.30405371e-126 - art_sys_72: -1.25169784e-113 - art_sys_73: 8.15103123e-102 - art_sys_74: 4.82009040e-104 - art_sys_75: 2.26901329e-32 - art_sys_76: -3.36194855e-03 + art_sys_65: 0.0 + art_sys_66: 0.0 + art_sys_67: 0.0 + art_sys_68: 0.0 + art_sys_69: 0.0 + art_sys_70: 0.0 + art_sys_71: 0.0 + art_sys_72: -2.91662451e-193 + art_sys_73: 1.80782979e-184 + art_sys_74: 5.63548699e-186 + art_sys_75: 2.76807807e-70 + art_sys_76: 3.36194855e-03 art_sys_77: -3.04001063e-03 art_sys_78: 1.33022593e-02 - art_sys_79: 3.02817256e-22 - art_sys_80: -3.38754240e-23 - art_sys_81: 1.08982924e-02 - art_sys_82: 1.03393318e-02 - art_sys_83: -1.11457007e-01 - art_sys_84: 4.50307650e-20 + art_sys_79: 2.74486511e-22 + art_sys_80: 1.08982924e-02 + art_sys_81: 2.61297825e-21 + art_sys_82: -5.27950132e-23 + art_sys_83: -1.03393318e-02 + art_sys_84: 1.11457007e-01 art_sys_85: -2.57757398e-02 art_sys_86: -1.06619479e-01 - art_sys_87: 1.49188195e-19 - art_sys_88: 6.86342763e-20 - art_sys_89: 1.08082059e-20 - art_sys_90: -1.14983409e-20 - art_sys_91: 7.91554684e-21 - art_sys_92: -7.20312598e-21 - art_sys_93: -9.48575025e-21 - art_sys_94: 8.51585439e-22 - art_sys_95: -1.20890362e-20 - art_sys_96: 2.18868594e-20 - art_sys_97: -9.17445501e-22 - art_sys_98: -7.63580690e-21 - art_sys_99: 5.38799530e-22 - art_sys_100: 1.53228369e-22 - art_sys_101: -6.38932169e-21 - art_sys_102: 1.52730310e-20 - art_sys_103: -4.26896066e-21 - art_sys_104: 1.62776026e-21 - art_sys_105: -4.93750086e-21 - art_sys_106: 2.09453813e-21 - art_sys_107: -1.92176351e-21 - art_sys_108: 3.53718397e-21 - art_sys_109: 1.60918740e-21 - art_sys_110: -6.93666100e-21 - art_sys_111: 4.05407910e-22 - art_sys_112: -1.28925402e-22 - art_sys_113: -1.17614213e-21 - art_sys_114: 6.69481300e-22 - art_sys_115: -2.03283185e-22 - art_sys_116: 9.59635120e-22 - art_sys_117: 4.08981767e-21 - art_sys_118: 1.83896596e-23 - art_sys_119: -2.16910042e-21 - art_sys_120: 8.85418620e-23 - art_sys_121: -2.88279416e-22 - art_sys_122: -2.03757219e-22 - art_sys_123: 7.89868185e-22 - art_sys_124: -1.41086830e-22 - art_sys_125: -9.93160236e-23 - art_sys_126: -5.34690158e-23 - art_sys_127: -2.49398798e-22 - art_sys_128: 5.55199251e-22 - art_sys_129: -6.93301715e-23 - art_sys_130: -6.99662421e-22 - art_sys_131: 2.30857006e-23 - art_sys_132: -8.00737460e-23 - art_sys_133: 9.65567623e-23 - art_sys_134: 9.83851510e-23 - art_sys_135: -1.09437561e-22 - art_sys_136: 3.01781123e-23 - art_sys_137: -2.49103867e-23 - art_sys_138: 1.51665023e-23 - art_sys_139: -2.91345129e-22 - art_sys_140: -2.13403433e-23 - art_sys_141: 2.65985809e-23 - art_sys_142: -0.0 - art_sys_143: -1.20412556e-23 - art_sys_144: -4.47461244e-24 - art_sys_145: 4.61890075e-24 - art_sys_146: 3.29013148e-21 - art_sys_147: 8.77115032e-22 - art_sys_148: 8.33592669e-23 - art_sys_149: -2.28911659e-22 - art_sys_150: -3.22330956e-21 - art_sys_151: 3.90218944e-21 - art_sys_152: 4.41343835e-22 - art_sys_153: 2.62696706e-22 - art_sys_154: -1.48680596e-19 - art_sys_155: -3.13059936e-20 - art_sys_156: 1.93485039e-20 - art_sys_157: 6.15671432e-21 - art_sys_158: 0.0 - art_sys_159: -5.36340466e-23 - art_sys_160: -5.36340466e-23 - art_sys_161: -1.35112345e-21 - art_sys_162: -3.23469886e-21 - art_sys_163: 0.0 - art_sys_164: 2.74277057e-22 - art_sys_165: -1.62601696e-01 - art_sys_166: 2.24298315e-02 - art_sys_167: -3.06550642e-02 - art_sys_168: 1.33238599e-03 - art_sys_169: 4.47610907e-04 - art_sys_170: 1.92101654e-04 + art_sys_87: 2.33010324e-19 + art_sys_88: -1.83087414e-20 + art_sys_89: 1.62601696e-01 + art_sys_90: 3.53124118e-19 + art_sys_91: 2.76606055e-20 + art_sys_92: 2.24298315e-02 + art_sys_93: 3.06550642e-02 + art_sys_94: 1.60380711e-19 + art_sys_95: 5.82711261e-20 + art_sys_96: 4.19077812e-20 + art_sys_97: -1.13262644e-19 + art_sys_98: 2.73561763e-20 + art_sys_99: -2.22803401e-20 + art_sys_100: -1.52412467e-21 + art_sys_101: -4.60001375e-21 + art_sys_102: -3.69282923e-20 + art_sys_103: 2.15564253e-20 + art_sys_104: 2.42056146e-20 + art_sys_105: 2.18716976e-20 + art_sys_106: -4.62826845e-20 + art_sys_107: 5.76112823e-20 + art_sys_108: -2.07439682e-20 + art_sys_109: -3.27151848e-21 + art_sys_110: -3.22976001e-20 + art_sys_111: 7.70151250e-21 + art_sys_112: 1.35069961e-20 + art_sys_113: -4.21663038e-21 + art_sys_114: -3.36750572e-20 + art_sys_115: -3.67088085e-21 + art_sys_116: -1.46489682e-21 + art_sys_117: 2.78353439e-20 + art_sys_118: -7.49207136e-21 + art_sys_119: -8.45904808e-21 + art_sys_120: -2.03067767e-21 + art_sys_121: 1.00159796e-21 + art_sys_122: -6.22719424e-21 + art_sys_123: 6.24580197e-21 + art_sys_124: -5.74180157e-21 + art_sys_125: -6.34395541e-21 + art_sys_126: 3.29728497e-21 + art_sys_127: -5.00439310e-21 + art_sys_128: -3.54788902e-21 + art_sys_129: 1.09424619e-20 + art_sys_130: -4.01208728e-21 + art_sys_131: -1.98638558e-21 + art_sys_132: 3.81289354e-22 + art_sys_133: -1.61493728e-21 + art_sys_134: -1.19647981e-21 + art_sys_135: -5.10732310e-22 + art_sys_136: -1.63561006e-21 + art_sys_137: 1.81626821e-21 + art_sys_138: 4.59942753e-22 + art_sys_139: -3.23182425e-21 + art_sys_140: 1.27161929e-21 + art_sys_141: -1.26024805e-21 + art_sys_142: 7.94165325e-23 + art_sys_143: 4.29647526e-23 + art_sys_144: 6.75395505e-22 + art_sys_145: -2.08957356e-21 + art_sys_146: -1.61700403e-21 + art_sys_147: 1.03981704e-21 + art_sys_148: 2.80333182e-20 + art_sys_149: -2.51788482e-22 + art_sys_150: -1.21566578e-23 + art_sys_151: 5.81669698e-23 + art_sys_152: -2.89426748e-19 + art_sys_153: 6.07669831e-22 + art_sys_154: 1.16634868e-22 + art_sys_155: 7.50783411e-20 + art_sys_156: 0.0 + art_sys_157: 1.23888657e-22 + art_sys_158: -0.0 + art_sys_159: 2.11636617e-23 + art_sys_160: 2.81661837e-20 + art_sys_161: -1.26889550e-23 + art_sys_162: -1.26889550e-23 + art_sys_163: -7.29507805e-21 + art_sys_164: -7.29507805e-21 + art_sys_165: -3.23473577e-21 + art_sys_166: -2.74291376e-22 + art_sys_167: -0.0 + art_sys_168: -1.33238599e-03 + art_sys_169: -4.47610907e-04 + art_sys_170: -1.92101654e-04 art_sys_171: 6.54228052e-06 art_sys_172: 1.90472317e-06 - art_sys_173: -6.98917776e-07 - art_sys_174: -3.59466062e-17 - art_sys_175: 1.78312175e-09 - art_sys_176: 6.32858458e-10 - art_sys_177: -2.35885682e-10 - art_sys_178: -6.83156840e-11 - art_sys_179: -1.31830497e-11 - art_sys_180: 2.69596123e-12 - art_sys_181: 4.73983978e-13 - art_sys_182: 7.20985957e-14 - art_sys_183: 1.23670669e-14 - art_sys_184: -1.14422274e-15 - art_sys_185: 3.91796815e-19 + art_sys_173: 6.98917776e-07 + art_sys_174: -1.78312175e-09 + art_sys_175: -6.32858458e-10 + art_sys_176: 2.35885682e-10 + art_sys_177: -1.31830497e-11 + art_sys_178: 2.69596123e-12 + art_sys_179: 3.59466062e-17 + art_sys_180: 3.91796815e-19 + art_sys_181: -6.83156840e-11 + art_sys_182: 4.73983979e-13 + art_sys_183: -7.20985957e-14 + art_sys_184: 1.23670669e-14 + art_sys_185: 1.14422274e-15 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -46572,127 +46572,127 @@ bins: art_sys_62: 0.0 art_sys_63: 0.0 art_sys_64: 0.0 - art_sys_65: 1.61651038e-255 - art_sys_66: 4.97797357e-180 - art_sys_67: 1.33982564e-137 - art_sys_68: 3.74508690e-127 - art_sys_69: -7.08520015e-135 - art_sys_70: 3.53194474e-133 - art_sys_71: 3.61774401e-127 - art_sys_72: -1.37053534e-114 - art_sys_73: 8.92489862e-103 - art_sys_74: 5.27771481e-105 - art_sys_75: 2.48443578e-33 - art_sys_76: -3.68113545e-04 + art_sys_65: 0.0 + art_sys_66: 0.0 + art_sys_67: 0.0 + art_sys_68: 0.0 + art_sys_69: 0.0 + art_sys_70: 0.0 + art_sys_71: 0.0 + art_sys_72: -3.19352327e-194 + art_sys_73: 1.97946170e-185 + art_sys_74: 6.17050938e-187 + art_sys_75: 3.03088228e-71 + art_sys_76: 3.68113545e-04 art_sys_77: 1.08250018e-03 art_sys_78: -1.16858131e-03 - art_sys_79: -1.44276616e-23 - art_sys_80: 1.65200714e-24 - art_sys_81: 2.53615436e-04 - art_sys_82: 1.96357255e-02 - art_sys_83: -1.42344586e-02 - art_sys_84: 1.14961935e-20 + art_sys_79: 2.73276525e-23 + art_sys_80: 2.53615436e-04 + art_sys_81: 8.91802923e-23 + art_sys_82: 4.19224109e-24 + art_sys_83: -1.96357255e-02 + art_sys_84: 1.42344586e-02 art_sys_85: 8.30493993e-02 art_sys_86: 4.91203192e-02 - art_sys_87: -8.72044217e-20 - art_sys_88: -1.76395519e-20 - art_sys_89: -1.67470561e-21 - art_sys_90: 1.05286032e-20 - art_sys_91: -5.45468712e-22 - art_sys_92: 7.61115181e-21 - art_sys_93: 8.56094346e-21 - art_sys_94: -2.42957529e-21 - art_sys_95: 4.94383173e-21 - art_sys_96: -2.39041768e-20 - art_sys_97: 4.41085520e-22 - art_sys_98: 3.27597455e-21 - art_sys_99: 4.41775136e-22 - art_sys_100: 2.94606646e-22 - art_sys_101: 3.39437336e-21 - art_sys_102: -5.59160740e-21 - art_sys_103: 8.40442786e-22 - art_sys_104: -4.47667476e-22 - art_sys_105: 3.09518752e-21 - art_sys_106: -1.48467840e-21 - art_sys_107: 9.91819578e-22 - art_sys_108: -1.44356710e-21 - art_sys_109: -7.93757680e-22 - art_sys_110: 1.09769986e-21 - art_sys_111: 2.80417408e-22 - art_sys_112: -6.31949672e-22 - art_sys_113: 1.26471155e-21 - art_sys_114: -7.57433225e-22 - art_sys_115: -2.88915619e-22 - art_sys_116: -9.11210182e-22 - art_sys_117: -3.03989648e-22 - art_sys_118: -1.16646465e-22 - art_sys_119: 1.08914972e-21 - art_sys_120: 1.44989656e-22 - art_sys_121: 2.01354328e-22 - art_sys_122: -7.80855898e-23 - art_sys_123: -2.20406287e-22 - art_sys_124: -3.73533925e-23 - art_sys_125: 5.59485727e-23 - art_sys_126: 2.55721624e-23 - art_sys_127: 1.87379132e-22 - art_sys_128: -6.72285654e-22 - art_sys_129: 1.66529269e-22 - art_sys_130: 1.47701923e-22 - art_sys_131: 1.67687602e-22 - art_sys_132: 6.39195654e-23 - art_sys_133: 2.69356094e-23 - art_sys_134: -1.02202692e-22 - art_sys_135: 2.84803225e-23 - art_sys_136: -3.23043977e-23 - art_sys_137: 1.07555016e-24 - art_sys_138: 5.81588592e-24 - art_sys_139: 9.14635378e-23 - art_sys_140: 9.45901775e-24 - art_sys_141: -2.53974752e-23 - art_sys_142: 0.0 - art_sys_143: 3.47964420e-24 - art_sys_144: 4.72634336e-24 - art_sys_145: 3.29319585e-24 - art_sys_146: -2.01243803e-21 - art_sys_147: -2.19395195e-22 - art_sys_148: 1.18339314e-22 - art_sys_149: -9.42344744e-23 - art_sys_150: 6.34501050e-22 - art_sys_151: -7.01802258e-21 - art_sys_152: 8.73865985e-22 - art_sys_153: -2.44602034e-21 - art_sys_154: 1.32745408e-19 - art_sys_155: 3.56984327e-20 - art_sys_156: -1.59719811e-20 - art_sys_157: -1.82747007e-20 + art_sys_87: -3.97267831e-20 + art_sys_88: -3.13819337e-20 + art_sys_89: 7.08353083e-02 + art_sys_90: 1.28734929e-19 + art_sys_91: -4.48448319e-21 + art_sys_92: -9.20702885e-02 + art_sys_93: -4.80288106e-02 + art_sys_94: 2.90452809e-20 + art_sys_95: 7.53456243e-22 + art_sys_96: 3.29458207e-20 + art_sys_97: 7.00219013e-21 + art_sys_98: -9.04122276e-20 + art_sys_99: -2.21251730e-20 + art_sys_100: -6.60467275e-20 + art_sys_101: -2.24923611e-20 + art_sys_102: 6.67216096e-21 + art_sys_103: 6.31000810e-21 + art_sys_104: 3.38565204e-20 + art_sys_105: -1.59027945e-20 + art_sys_106: -3.26762899e-20 + art_sys_107: 5.51503775e-20 + art_sys_108: -1.51413273e-20 + art_sys_109: 2.28267354e-20 + art_sys_110: -2.00642692e-21 + art_sys_111: 4.28113511e-21 + art_sys_112: -1.22505757e-20 + art_sys_113: 5.12180224e-21 + art_sys_114: -3.17415847e-21 + art_sys_115: 8.91729883e-21 + art_sys_116: 2.76291301e-20 + art_sys_117: -4.88199806e-21 + art_sys_118: 7.65707264e-21 + art_sys_119: -2.30360362e-21 + art_sys_120: -1.51590409e-20 + art_sys_121: -7.58492433e-21 + art_sys_122: -8.56110864e-21 + art_sys_123: -1.22882027e-20 + art_sys_124: 1.53286727e-21 + art_sys_125: -2.64500942e-21 + art_sys_126: 6.54727360e-21 + art_sys_127: 4.00696165e-21 + art_sys_128: -2.56119936e-21 + art_sys_129: 1.08746006e-20 + art_sys_130: 6.38204296e-21 + art_sys_131: 1.08163417e-21 + art_sys_132: -4.45749445e-21 + art_sys_133: 1.66726566e-21 + art_sys_134: -3.68097187e-21 + art_sys_135: 2.97199989e-22 + art_sys_136: 3.05867928e-21 + art_sys_137: -4.39828731e-22 + art_sys_138: -2.32708542e-23 + art_sys_139: -3.79839258e-22 + art_sys_140: -6.15181586e-23 + art_sys_141: 1.08671308e-21 + art_sys_142: 1.52092738e-21 + art_sys_143: 3.71810206e-23 + art_sys_144: 1.25187721e-21 + art_sys_145: 1.77023266e-21 + art_sys_146: 1.83694437e-22 + art_sys_147: 2.14454734e-22 + art_sys_148: -2.35524343e-20 + art_sys_149: 6.47545557e-23 + art_sys_150: -1.50617021e-22 + art_sys_151: -2.13725354e-22 + art_sys_152: 2.50183666e-19 + art_sys_153: 2.61355133e-22 + art_sys_154: -1.43269629e-22 + art_sys_155: -6.28961739e-20 + art_sys_156: 0.0 + art_sys_157: 1.61885895e-22 art_sys_158: -0.0 - art_sys_159: -5.50520245e-24 - art_sys_160: -5.50520245e-24 - art_sys_161: 1.11498713e-21 - art_sys_162: 1.21235630e-20 - art_sys_163: -0.0 - art_sys_164: -1.02327323e-21 - art_sys_165: -7.08353083e-02 - art_sys_166: -9.20702885e-02 - art_sys_167: 4.80288106e-02 - art_sys_168: -4.88467869e-03 - art_sys_169: -1.27830347e-03 - art_sys_170: -6.26384981e-04 + art_sys_159: 1.32187943e-23 + art_sys_160: -2.28932928e-20 + art_sys_161: 8.95249273e-24 + art_sys_162: 8.95249273e-24 + art_sys_163: 6.54495424e-21 + art_sys_164: 6.54495424e-21 + art_sys_165: 1.21236277e-20 + art_sys_166: 1.02326212e-21 + art_sys_167: 0.0 + art_sys_168: 4.88467869e-03 + art_sys_169: 1.27830347e-03 + art_sys_170: 6.26384981e-04 art_sys_171: -2.51499998e-05 art_sys_172: -6.42645336e-06 - art_sys_173: 2.55845223e-06 - art_sys_174: 1.36136190e-16 - art_sys_175: -8.79520325e-09 - art_sys_176: -1.80977099e-09 - art_sys_177: 1.03667391e-09 - art_sys_178: 2.35069720e-10 - art_sys_179: 5.23544195e-11 - art_sys_180: -1.01990399e-11 - art_sys_181: -1.76764351e-12 - art_sys_182: -2.79760534e-13 - art_sys_183: -4.63822680e-14 - art_sys_184: 4.47947512e-15 - art_sys_185: -1.35490357e-18 + art_sys_173: -2.55845223e-06 + art_sys_174: 8.79520325e-09 + art_sys_175: 1.80977099e-09 + art_sys_176: -1.03667391e-09 + art_sys_177: 5.23544195e-11 + art_sys_178: -1.01990399e-11 + art_sys_179: -1.36136190e-16 + art_sys_180: -1.35490357e-18 + art_sys_181: 2.35069720e-10 + art_sys_182: -1.76764351e-12 + art_sys_183: 2.79760534e-13 + art_sys_184: -4.63822680e-14 + art_sys_185: -4.47947512e-15 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -46863,127 +46863,127 @@ bins: art_sys_62: 0.0 art_sys_63: 0.0 art_sys_64: 0.0 - art_sys_65: -3.94093215e-257 - art_sys_66: -1.21343270e-181 - art_sys_67: -3.26596397e-139 - art_sys_68: -9.12903779e-129 - art_sys_69: 1.72709103e-136 - art_sys_70: -8.60948167e-135 - art_sys_71: -8.81862629e-129 - art_sys_72: 3.34082207e-116 - art_sys_73: -2.17553662e-104 - art_sys_74: -1.28649773e-106 - art_sys_75: -6.05606991e-35 - art_sys_76: 8.97314949e-06 + art_sys_65: 0.0 + art_sys_66: 0.0 + art_sys_67: 0.0 + art_sys_68: 0.0 + art_sys_69: 0.0 + art_sys_70: 0.0 + art_sys_71: 0.0 + art_sys_72: 7.78479020e-196 + art_sys_73: -4.82529567e-187 + art_sys_74: -1.50417319e-188 + art_sys_75: -7.38808995e-73 + art_sys_76: -8.97314949e-06 art_sys_77: 3.78401236e-04 art_sys_78: -7.88297274e-04 - art_sys_79: -1.49822484e-23 - art_sys_80: 1.77503949e-24 - art_sys_81: -4.32530253e-04 - art_sys_82: 1.99822595e-04 - art_sys_83: 7.51026517e-03 - art_sys_84: -2.86461671e-21 + art_sys_79: 2.29617555e-23 + art_sys_80: -4.32530253e-04 + art_sys_81: -9.73490720e-23 + art_sys_82: 3.02126528e-24 + art_sys_83: -1.99822595e-04 + art_sys_84: -7.51026517e-03 art_sys_85: 3.62769579e-04 art_sys_86: 6.55998977e-03 - art_sys_87: -8.98193638e-21 - art_sys_88: -4.41172686e-21 - art_sys_89: -7.24463733e-22 - art_sys_90: 5.34083853e-22 - art_sys_91: -5.31471710e-22 - art_sys_92: 3.63739753e-22 - art_sys_93: 4.91954775e-22 - art_sys_94: -3.25199208e-23 - art_sys_95: 7.04983921e-22 - art_sys_96: -1.15214276e-21 - art_sys_97: 5.59164999e-23 - art_sys_98: 4.87148844e-22 - art_sys_99: -3.62488530e-23 - art_sys_100: -2.71454118e-23 - art_sys_101: 3.83602780e-22 - art_sys_102: -9.49839130e-22 - art_sys_103: 2.73547599e-22 - art_sys_104: -9.23174453e-23 - art_sys_105: 2.90222902e-22 - art_sys_106: -1.18521405e-22 - art_sys_107: 1.14085971e-22 - art_sys_108: -2.20502946e-22 - art_sys_109: -9.68519071e-23 - art_sys_110: 4.64867835e-22 - art_sys_111: -3.04575653e-23 - art_sys_112: 1.78400454e-23 - art_sys_113: 5.03201438e-23 - art_sys_114: -3.73798707e-23 - art_sys_115: 2.13412197e-23 - art_sys_116: -4.88262553e-23 - art_sys_117: -2.71629796e-22 - art_sys_118: -2.54785964e-25 - art_sys_119: 1.39142064e-22 - art_sys_120: -7.94304458e-24 - art_sys_121: 1.82642661e-23 - art_sys_122: 1.59085991e-23 - art_sys_123: -4.82131005e-23 - art_sys_124: 9.43438241e-24 - art_sys_125: 6.13925388e-24 - art_sys_126: 4.93073063e-24 - art_sys_127: 1.42209450e-23 - art_sys_128: -2.94213035e-23 - art_sys_129: 1.68919769e-24 - art_sys_130: 4.14228817e-23 - art_sys_131: -4.13940263e-24 - art_sys_132: 4.75730681e-24 - art_sys_133: -6.65883741e-24 - art_sys_134: -4.41777769e-24 - art_sys_135: 6.51137925e-24 - art_sys_136: 3.96698629e-25 - art_sys_137: 1.64905966e-24 - art_sys_138: -1.21565459e-23 - art_sys_139: 2.00004793e-22 - art_sys_140: 1.31519393e-24 - art_sys_141: 5.47274005e-23 - art_sys_142: 0.0 - art_sys_143: -7.08198392e-25 - art_sys_144: -8.17273980e-24 - art_sys_145: -1.97780151e-23 - art_sys_146: -1.40550183e-22 - art_sys_147: -5.55016701e-23 - art_sys_148: -6.03930616e-24 - art_sys_149: 2.17562796e-21 - art_sys_150: 3.78781338e-21 - art_sys_151: 1.21354052e-21 - art_sys_152: 7.09675477e-22 - art_sys_153: 1.60619824e-21 - art_sys_154: -1.01580025e-19 - art_sys_155: -2.19027567e-20 - art_sys_156: 1.28696049e-20 - art_sys_157: 1.20738882e-20 + art_sys_87: -1.48679751e-20 + art_sys_88: 3.23448253e-22 + art_sys_89: -2.85816045e-02 + art_sys_90: -5.84826612e-20 + art_sys_91: -1.46109775e-20 + art_sys_92: -9.75427685e-02 + art_sys_93: 5.29020574e-02 + art_sys_94: -1.85776796e-20 + art_sys_95: -9.16697338e-20 + art_sys_96: -2.71564084e-20 + art_sys_97: 2.37930535e-21 + art_sys_98: 2.53611636e-20 + art_sys_99: 5.22492512e-20 + art_sys_100: -2.43624813e-20 + art_sys_101: 8.10176216e-21 + art_sys_102: 1.09403110e-20 + art_sys_103: -2.07908317e-20 + art_sys_104: -1.38505717e-20 + art_sys_105: 2.14923378e-21 + art_sys_106: 1.76041665e-20 + art_sys_107: 3.11837705e-20 + art_sys_108: -7.50461223e-21 + art_sys_109: -3.01423837e-20 + art_sys_110: 2.73855129e-20 + art_sys_111: 5.60966627e-21 + art_sys_112: 1.36766091e-20 + art_sys_113: 5.94022429e-21 + art_sys_114: 5.06792929e-20 + art_sys_115: 1.16784650e-20 + art_sys_116: 3.99890795e-22 + art_sys_117: -1.29052411e-20 + art_sys_118: 1.96564379e-21 + art_sys_119: 2.70286691e-21 + art_sys_120: -4.85511255e-21 + art_sys_121: -9.51022540e-21 + art_sys_122: -1.20242149e-20 + art_sys_123: -3.49993037e-21 + art_sys_124: -9.05460260e-21 + art_sys_125: -1.17437386e-21 + art_sys_126: 4.56395492e-21 + art_sys_127: 5.82609529e-21 + art_sys_128: 2.93661284e-21 + art_sys_129: 7.49312512e-21 + art_sys_130: 2.50839006e-21 + art_sys_131: 6.93367195e-22 + art_sys_132: -1.38902405e-22 + art_sys_133: -2.36733873e-21 + art_sys_134: 2.29955146e-21 + art_sys_135: -1.81063211e-21 + art_sys_136: 4.32238258e-21 + art_sys_137: 4.43509954e-22 + art_sys_138: 1.14118377e-21 + art_sys_139: -2.21433008e-23 + art_sys_140: 4.48032218e-21 + art_sys_141: 1.73587520e-21 + art_sys_142: -5.55201710e-22 + art_sys_143: -1.21204134e-22 + art_sys_144: -9.61169407e-22 + art_sys_145: 2.79368994e-22 + art_sys_146: 1.97739536e-21 + art_sys_147: 2.03052752e-21 + art_sys_148: 2.29151099e-20 + art_sys_149: 9.38942662e-22 + art_sys_150: 3.91415346e-22 + art_sys_151: 6.44825528e-22 + art_sys_152: -1.97289574e-19 + art_sys_153: -2.84746321e-23 + art_sys_154: 1.07670755e-22 + art_sys_155: 4.96675389e-20 + art_sys_156: 0.0 + art_sys_157: 1.82611657e-22 art_sys_158: 0.0 - art_sys_159: 3.40395174e-23 - art_sys_160: 3.40395174e-23 - art_sys_161: -9.95925913e-22 - art_sys_162: -3.83437412e-20 - art_sys_163: 0.0 - art_sys_164: 3.21555976e-21 - art_sys_165: 2.85816045e-02 - art_sys_166: -9.75427685e-02 - art_sys_167: -5.29020574e-02 - art_sys_168: 3.09653715e-03 - art_sys_169: 2.55839587e-03 - art_sys_170: 1.08840712e-03 + art_sys_159: -3.73628977e-23 + art_sys_160: 1.92000049e-20 + art_sys_161: -1.54404759e-23 + art_sys_162: -1.54404759e-23 + art_sys_163: -5.31279227e-21 + art_sys_164: -5.31279227e-21 + art_sys_165: -3.83438112e-20 + art_sys_166: -3.21555240e-21 + art_sys_167: -0.0 + art_sys_168: -3.09653715e-03 + art_sys_169: -2.55839587e-03 + art_sys_170: -1.08840712e-03 art_sys_171: 5.33271702e-05 art_sys_172: 1.55741371e-05 - art_sys_173: -5.94374438e-06 - art_sys_174: -4.18113663e-16 - art_sys_175: 2.65569941e-08 - art_sys_176: 6.47343671e-09 - art_sys_177: -2.91304839e-09 - art_sys_178: -7.99516742e-10 - art_sys_179: -1.51911971e-10 - art_sys_180: 3.24734326e-11 - art_sys_181: 5.46749187e-12 - art_sys_182: 8.51766525e-13 - art_sys_183: 1.45768359e-13 - art_sys_184: -1.35663946e-14 - art_sys_185: 4.07980774e-18 + art_sys_173: 5.94374438e-06 + art_sys_174: -2.65569941e-08 + art_sys_175: -6.47343671e-09 + art_sys_176: 2.91304839e-09 + art_sys_177: -1.51911971e-10 + art_sys_178: 3.24734326e-11 + art_sys_179: 4.18113663e-16 + art_sys_180: 4.07980774e-18 + art_sys_181: -7.99516742e-10 + art_sys_182: 5.46749187e-12 + art_sys_183: -8.51766525e-13 + art_sys_184: 1.45768359e-13 + art_sys_185: 1.35663946e-14 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -47154,127 +47154,127 @@ bins: art_sys_62: 0.0 art_sys_63: 0.0 art_sys_64: 0.0 - art_sys_65: -3.03634243e-257 - art_sys_66: -9.35002869e-182 - art_sys_67: -2.51656782e-139 - art_sys_68: -7.03432218e-129 - art_sys_69: 1.33079904e-136 - art_sys_70: -6.63398151e-135 - art_sys_71: -6.79513657e-129 - art_sys_72: 2.57424926e-116 - art_sys_73: -1.67634594e-104 - art_sys_74: -9.91302668e-107 - art_sys_75: -4.66646627e-35 - art_sys_76: 6.91420344e-06 + art_sys_65: 0.0 + art_sys_66: 0.0 + art_sys_67: 0.0 + art_sys_68: 0.0 + art_sys_69: 0.0 + art_sys_70: 0.0 + art_sys_71: 0.0 + art_sys_72: 5.99837050e-196 + art_sys_73: -3.71800787e-187 + art_sys_74: -1.15900209e-188 + art_sys_75: -5.69284586e-73 + art_sys_76: -6.91420344e-06 art_sys_77: 4.43448108e-05 art_sys_78: -1.05908136e-04 - art_sys_79: -2.10986450e-24 - art_sys_80: 2.42242038e-25 - art_sys_81: -6.09551521e-05 - art_sys_82: -9.06624040e-04 - art_sys_83: 1.49866755e-03 - art_sys_84: -8.65045347e-22 + art_sys_79: 3.13080204e-24 + art_sys_80: -6.09551521e-05 + art_sys_81: -1.39709990e-23 + art_sys_82: 4.09895785e-25 + art_sys_83: 9.06624040e-04 + art_sys_84: -1.49866755e-03 art_sys_85: -4.42117708e-03 art_sys_86: -2.44412873e-03 - art_sys_87: 4.73406042e-21 - art_sys_88: 7.79550352e-22 - art_sys_89: 4.49355089e-23 - art_sys_90: -5.50523858e-22 - art_sys_91: -6.09690607e-24 - art_sys_92: -4.05289398e-22 - art_sys_93: -4.43540364e-22 - art_sys_94: 1.39436636e-22 - art_sys_95: -2.19718984e-22 - art_sys_96: 1.24618202e-21 - art_sys_97: -1.21611577e-23 - art_sys_98: -1.60085410e-22 - art_sys_99: -3.17092068e-23 - art_sys_100: -2.04416407e-23 - art_sys_101: -1.67346623e-22 - art_sys_102: 2.58843005e-22 - art_sys_103: -2.97539077e-23 - art_sys_104: 1.76178611e-23 - art_sys_105: -1.62259644e-22 - art_sys_106: 7.43943783e-23 - art_sys_107: -4.90463431e-23 - art_sys_108: 7.13792759e-23 - art_sys_109: 4.51194603e-23 - art_sys_110: -4.08351887e-23 - art_sys_111: -2.51875006e-23 - art_sys_112: 3.40266846e-23 - art_sys_113: -6.70367013e-23 - art_sys_114: 4.15326295e-23 - art_sys_115: 1.85673051e-23 - art_sys_116: 4.73675007e-23 - art_sys_117: -1.21537373e-24 - art_sys_118: 6.39290078e-24 - art_sys_119: -5.76913966e-23 - art_sys_120: -8.31177409e-24 - art_sys_121: -9.80524957e-24 - art_sys_122: 5.55254063e-24 - art_sys_123: 1.01108170e-23 - art_sys_124: 2.85072596e-24 - art_sys_125: -2.42341147e-24 - art_sys_126: 2.07923343e-24 - art_sys_127: -9.99970264e-24 - art_sys_128: 3.61718176e-23 - art_sys_129: -9.31944875e-24 - art_sys_130: -5.94956867e-24 - art_sys_131: -9.89087110e-24 - art_sys_132: -3.30166849e-24 - art_sys_133: -1.88125209e-24 - art_sys_134: 5.77988941e-24 - art_sys_135: -9.98065420e-25 - art_sys_136: 1.98090632e-24 - art_sys_137: -2.59776020e-26 - art_sys_138: -1.46681261e-24 - art_sys_139: -7.09909588e-25 - art_sys_140: -4.42847901e-25 - art_sys_141: 2.19638366e-23 - art_sys_142: 0.0 - art_sys_143: -1.19347334e-24 - art_sys_144: -5.78295931e-24 - art_sys_145: -7.66970868e-24 - art_sys_146: 1.07303952e-22 - art_sys_147: 7.74733272e-24 - art_sys_148: -8.14036856e-24 - art_sys_149: 2.85002041e-22 - art_sys_150: 2.67527320e-22 - art_sys_151: 1.47125764e-21 - art_sys_152: 3.41556169e-22 - art_sys_153: -3.99344897e-22 - art_sys_154: 1.19708349e-19 - art_sys_155: 3.22494408e-20 - art_sys_156: -1.28876533e-20 - art_sys_157: -2.94535851e-20 + art_sys_87: 1.43213684e-21 + art_sys_88: 1.60492907e-21 + art_sys_89: -7.78731473e-03 + art_sys_90: -1.47776390e-20 + art_sys_91: -6.08047885e-22 + art_sys_92: 2.61815222e-03 + art_sys_93: 1.63842154e-02 + art_sys_94: 1.84553559e-21 + art_sys_95: -1.01428912e-20 + art_sys_96: -8.07501871e-21 + art_sys_97: -5.10293571e-21 + art_sys_98: 1.90016431e-20 + art_sys_99: 9.55860707e-21 + art_sys_100: 7.49226035e-21 + art_sys_101: 5.01076833e-21 + art_sys_102: -7.64708996e-22 + art_sys_103: -2.94648637e-21 + art_sys_104: -6.43052869e-21 + art_sys_105: 4.58532746e-21 + art_sys_106: 5.36662208e-21 + art_sys_107: -1.32732143e-21 + art_sys_108: 1.20189798e-21 + art_sys_109: -8.39936303e-21 + art_sys_110: 2.54520922e-21 + art_sys_111: -3.41084768e-22 + art_sys_112: 4.41712181e-21 + art_sys_113: -2.29476957e-22 + art_sys_114: 6.09414961e-21 + art_sys_115: -5.04270350e-23 + art_sys_116: -4.50871076e-21 + art_sys_117: 7.05679642e-22 + art_sys_118: -1.26460476e-21 + art_sys_119: 4.33722202e-22 + art_sys_120: 1.76059656e-21 + art_sys_121: 7.29015429e-23 + art_sys_122: -5.73311180e-22 + art_sys_123: 1.70057763e-21 + art_sys_124: -1.75882741e-21 + art_sys_125: 1.10543725e-22 + art_sys_126: -2.81678491e-22 + art_sys_127: -9.76909247e-23 + art_sys_128: 6.50100302e-22 + art_sys_129: -1.37821274e-22 + art_sys_130: -9.01190067e-22 + art_sys_131: 4.64777238e-22 + art_sys_132: 7.54458456e-22 + art_sys_133: -5.80393505e-22 + art_sys_134: 8.12533447e-22 + art_sys_135: -3.21250691e-22 + art_sys_136: -6.53692972e-21 + art_sys_137: 2.15122054e-22 + art_sys_138: 1.85359493e-22 + art_sys_139: -3.00908187e-23 + art_sys_140: -6.05067894e-21 + art_sys_141: -3.69509671e-24 + art_sys_142: -3.34368112e-22 + art_sys_143: 6.00049809e-25 + art_sys_144: 3.20621588e-21 + art_sys_145: -3.32480362e-22 + art_sys_146: 4.93107975e-23 + art_sys_147: -9.38235096e-22 + art_sys_148: -2.14594748e-20 + art_sys_149: 1.20008860e-22 + art_sys_150: -2.29528597e-21 + art_sys_151: -1.49222650e-21 + art_sys_152: 2.40783798e-19 + art_sys_153: 1.68962661e-22 + art_sys_154: 4.32369714e-23 + art_sys_155: -6.41498751e-20 + art_sys_156: 0.0 + art_sys_157: -2.55217080e-25 art_sys_158: -0.0 - art_sys_159: 3.59126834e-23 - art_sys_160: 3.59126834e-23 - art_sys_161: 9.72068909e-22 - art_sys_162: 1.41154910e-19 - art_sys_163: -0.0 - art_sys_164: -1.19993417e-20 - art_sys_165: 7.78731473e-03 - art_sys_166: 2.61815222e-03 - art_sys_167: -1.63842154e-02 - art_sys_168: -3.06116706e-02 - art_sys_169: -5.91395387e-03 - art_sys_170: -4.61418038e-03 + art_sys_159: 4.30521295e-23 + art_sys_160: -2.37075766e-20 + art_sys_161: -1.87404274e-23 + art_sys_162: -1.87404274e-23 + art_sys_163: 6.54815008e-21 + art_sys_164: 6.54815008e-21 + art_sys_165: 1.41154962e-19 + art_sys_166: 1.19993422e-20 + art_sys_167: 0.0 + art_sys_168: 3.06116706e-02 + art_sys_169: 5.91395387e-03 + art_sys_170: 4.61418038e-03 art_sys_171: -1.83762673e-04 art_sys_172: -5.75051615e-05 - art_sys_173: 2.31981897e-05 - art_sys_174: 1.59599162e-15 - art_sys_175: -7.16976572e-08 - art_sys_176: -2.32751474e-08 - art_sys_177: 1.05598498e-08 - art_sys_178: 2.70366399e-09 - art_sys_179: 5.96286168e-10 - art_sys_180: -1.14402128e-10 - art_sys_181: -2.08563655e-11 - art_sys_182: -3.19627515e-12 - art_sys_183: -5.40075035e-13 - art_sys_184: 5.09840259e-14 - art_sys_185: -1.76870870e-17 + art_sys_173: -2.31981897e-05 + art_sys_174: 7.16976572e-08 + art_sys_175: 2.32751474e-08 + art_sys_176: -1.05598498e-08 + art_sys_177: 5.96286168e-10 + art_sys_178: -1.14402128e-10 + art_sys_179: -1.59599162e-15 + art_sys_180: -1.76870870e-17 + art_sys_181: 2.70366399e-09 + art_sys_182: -2.08563655e-11 + art_sys_183: 3.19627515e-12 + art_sys_184: -5.40075035e-13 + art_sys_185: -5.09840259e-14 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -47445,127 +47445,127 @@ bins: art_sys_62: 0.0 art_sys_63: 0.0 art_sys_64: 0.0 - art_sys_65: -3.41088391e-258 - art_sys_66: -1.05034274e-182 - art_sys_67: -2.82700602e-140 - art_sys_68: -7.90206047e-130 - art_sys_69: 1.49496344e-137 - art_sys_70: -7.45233466e-136 - art_sys_71: -7.63336946e-130 - art_sys_72: 2.89180290e-117 - art_sys_73: -1.88313624e-105 - art_sys_74: -1.11358755e-107 - art_sys_75: -5.24211114e-36 - art_sys_76: 7.76712415e-07 + art_sys_65: 0.0 + art_sys_66: 0.0 + art_sys_67: 0.0 + art_sys_68: 0.0 + art_sys_69: 0.0 + art_sys_70: 0.0 + art_sys_71: 0.0 + art_sys_72: 6.73830904e-197 + art_sys_73: -4.17664864e-188 + art_sys_74: -1.30197263e-189 + art_sys_75: -6.39510263e-74 + art_sys_76: -7.76712415e-07 art_sys_77: 3.81866279e-06 art_sys_78: -8.41035134e-06 - art_sys_79: -1.63160279e-25 - art_sys_80: 1.43607515e-26 - art_sys_81: -6.31672737e-08 - art_sys_82: -1.10360371e-04 - art_sys_83: -7.19439318e-05 - art_sys_84: -5.55702155e-24 + art_sys_79: 8.68462633e-26 + art_sys_80: -6.31672737e-08 + art_sys_81: 5.93502560e-26 + art_sys_82: 3.26159914e-26 + art_sys_83: 1.10360371e-04 + art_sys_84: 7.19439318e-05 art_sys_85: -4.47231162e-04 art_sys_86: -4.65266960e-04 - art_sys_87: 7.69730838e-22 - art_sys_88: 2.24632520e-22 - art_sys_89: 2.77254808e-23 - art_sys_90: -7.11477210e-23 - art_sys_91: 1.63084577e-23 - art_sys_92: -5.27417006e-23 - art_sys_93: -6.01142483e-23 - art_sys_94: 1.56626223e-23 - art_sys_95: -4.35455749e-23 - art_sys_96: 1.55409743e-22 - art_sys_97: -2.56766664e-24 - art_sys_98: -3.26903649e-23 - art_sys_99: -1.54817530e-24 - art_sys_100: -1.09937421e-24 - art_sys_101: -2.93819796e-23 - art_sys_102: 5.70758726e-23 - art_sys_103: -1.20623938e-23 - art_sys_104: 4.46909454e-24 - art_sys_105: -2.61854732e-23 - art_sys_106: 1.12622598e-23 - art_sys_107: -8.65532740e-24 - art_sys_108: 1.45971898e-23 - art_sys_109: 7.15081373e-24 - art_sys_110: -1.96580431e-23 - art_sys_111: -4.86054303e-25 - art_sys_112: 2.75352431e-24 - art_sys_113: -8.41607834e-24 - art_sys_114: 5.48023984e-24 - art_sys_115: 1.43076931e-24 - art_sys_116: 6.29953413e-24 - art_sys_117: 8.53307865e-24 - art_sys_118: 6.54341565e-25 - art_sys_119: -9.29317620e-24 - art_sys_120: -6.10551739e-25 - art_sys_121: -1.59443682e-24 - art_sys_122: 4.64438544e-26 - art_sys_123: 2.57914195e-24 - art_sys_124: 6.51826992e-27 - art_sys_125: -4.31347127e-25 - art_sys_126: -3.03967740e-25 - art_sys_127: -1.49297231e-24 - art_sys_128: 4.67419556e-24 - art_sys_129: -1.07861152e-24 - art_sys_130: -1.79100945e-24 - art_sys_131: -8.69112953e-25 - art_sys_132: -4.90431866e-25 - art_sys_133: 2.01217570e-26 - art_sys_134: 7.09035745e-25 - art_sys_135: -3.66230509e-25 - art_sys_136: 6.72264026e-26 - art_sys_137: -5.62307928e-26 - art_sys_138: 9.17274966e-25 - art_sys_139: -1.48064564e-23 - art_sys_140: -9.01297264e-26 - art_sys_141: -5.91713990e-24 - art_sys_142: -0.0 - art_sys_143: 1.77071408e-25 - art_sys_144: 1.18163051e-24 - art_sys_145: 2.19389720e-24 - art_sys_146: 1.39243469e-23 - art_sys_147: 2.50263996e-24 - art_sys_148: -7.18857009e-25 - art_sys_149: -1.81292360e-22 - art_sys_150: -2.96137687e-22 - art_sys_151: -6.92702716e-22 - art_sys_152: -1.39766938e-22 - art_sys_153: -1.41468337e-21 - art_sys_154: -9.48790239e-20 - art_sys_155: -2.34968219e-20 - art_sys_156: 1.01272070e-20 - art_sys_157: 2.03728288e-20 - art_sys_158: 0.0 - art_sys_159: -1.32815052e-23 - art_sys_160: -1.32815052e-23 - art_sys_161: -8.40850756e-22 - art_sys_162: -6.04474946e-19 - art_sys_163: 0.0 - art_sys_164: 5.07699677e-20 - art_sys_165: -1.95598560e-03 - art_sys_166: 7.37817817e-03 - art_sys_167: 4.98788088e-03 - art_sys_168: -1.33094888e-02 - art_sys_169: 1.89645824e-02 - art_sys_170: 6.98784270e-03 + art_sys_87: 6.30546897e-22 + art_sys_88: 2.87755930e-22 + art_sys_89: 1.95598560e-03 + art_sys_90: 3.95753674e-21 + art_sys_91: 1.07548749e-21 + art_sys_92: 7.37817817e-03 + art_sys_93: -4.98788088e-03 + art_sys_94: -1.84008076e-21 + art_sys_95: 7.38738389e-21 + art_sys_96: 2.36378979e-21 + art_sys_97: 4.26272236e-22 + art_sys_98: -2.94107440e-21 + art_sys_99: -4.41628661e-21 + art_sys_100: 1.55550859e-21 + art_sys_101: -8.55698076e-22 + art_sys_102: -9.32358219e-22 + art_sys_103: 1.67755354e-21 + art_sys_104: 1.28837472e-21 + art_sys_105: -4.99018671e-22 + art_sys_106: -1.67892588e-21 + art_sys_107: -2.44598748e-21 + art_sys_108: 4.93134638e-22 + art_sys_109: 2.76485628e-21 + art_sys_110: -2.12464058e-21 + art_sys_111: -3.49713549e-22 + art_sys_112: -1.31776177e-21 + art_sys_113: -3.74810397e-22 + art_sys_114: -4.05054344e-21 + art_sys_115: -8.90384805e-22 + art_sys_116: 1.73532080e-22 + art_sys_117: 8.34928477e-22 + art_sys_118: -6.69628318e-23 + art_sys_119: -2.03113728e-22 + art_sys_120: 3.03813061e-22 + art_sys_121: 7.01516501e-22 + art_sys_122: 9.83712808e-22 + art_sys_123: 1.74398956e-22 + art_sys_124: 8.07902017e-22 + art_sys_125: 1.01566819e-22 + art_sys_126: -3.55554784e-22 + art_sys_127: -4.26376293e-22 + art_sys_128: -2.44449340e-22 + art_sys_129: -6.33704343e-22 + art_sys_130: -2.83761959e-22 + art_sys_131: 7.75898097e-22 + art_sys_132: -2.83905937e-23 + art_sys_133: 2.12635626e-22 + art_sys_134: -2.10133004e-22 + art_sys_135: 1.57833550e-22 + art_sys_136: 1.57496888e-21 + art_sys_137: -4.78836170e-23 + art_sys_138: -9.91342366e-23 + art_sys_139: -2.12306520e-23 + art_sys_140: -1.73831784e-21 + art_sys_141: -1.40152416e-22 + art_sys_142: 5.93055129e-23 + art_sys_143: -3.51192963e-24 + art_sys_144: -4.23878581e-22 + art_sys_145: 6.89379281e-25 + art_sys_146: -5.48027721e-22 + art_sys_147: 1.23467234e-21 + art_sys_148: 2.13159072e-20 + art_sys_149: -6.89862807e-23 + art_sys_150: -1.22291201e-21 + art_sys_151: -2.22088161e-22 + art_sys_152: -1.84102971e-19 + art_sys_153: -2.03439881e-22 + art_sys_154: -1.07753986e-23 + art_sys_155: 4.85247968e-20 + art_sys_156: -0.0 + art_sys_157: -8.98991647e-24 + art_sys_158: -0.0 + art_sys_159: -1.80306932e-23 + art_sys_160: 1.89539543e-20 + art_sys_161: -5.43286246e-24 + art_sys_162: -5.43286246e-24 + art_sys_163: -4.96717027e-21 + art_sys_164: -4.96717027e-21 + art_sys_165: -6.04475067e-19 + art_sys_166: -5.07699641e-20 + art_sys_167: -0.0 + art_sys_168: 1.33094888e-02 + art_sys_169: -1.89645824e-02 + art_sys_170: -6.98784270e-03 art_sys_171: 7.31921280e-04 art_sys_172: 1.68671491e-04 - art_sys_173: -7.83554807e-05 - art_sys_174: -6.66388699e-15 - art_sys_175: 4.43163895e-07 - art_sys_176: 8.44264841e-08 - art_sys_177: -4.85015249e-08 - art_sys_178: -1.19148186e-08 - art_sys_179: -2.43968037e-09 - art_sys_180: 5.16511018e-10 - art_sys_181: 8.54434190e-11 - art_sys_182: 1.37911344e-11 - art_sys_183: 2.30152619e-12 - art_sys_184: -2.21591861e-13 - art_sys_185: 6.11277083e-17 + art_sys_173: 7.83554807e-05 + art_sys_174: -4.43163895e-07 + art_sys_175: -8.44264841e-08 + art_sys_176: 4.85015249e-08 + art_sys_177: -2.43968037e-09 + art_sys_178: 5.16511018e-10 + art_sys_179: 6.66388699e-15 + art_sys_180: 6.11277083e-17 + art_sys_181: -1.19148186e-08 + art_sys_182: 8.54434190e-11 + art_sys_183: -1.37911344e-11 + art_sys_184: 2.30152619e-12 + art_sys_185: 2.21591861e-13 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -47736,127 +47736,127 @@ bins: art_sys_62: 0.0 art_sys_63: 0.0 art_sys_64: 0.0 - art_sys_65: -1.73054236e-259 - art_sys_66: -5.32894574e-184 - art_sys_67: -1.43429008e-141 - art_sys_68: -4.00913435e-131 - art_sys_69: 7.58474237e-139 - art_sys_70: -3.78096459e-137 - art_sys_71: -3.87281314e-131 - art_sys_72: 1.46716497e-118 - art_sys_73: -9.55414883e-107 - art_sys_74: -5.64982022e-109 - art_sys_75: -2.65960098e-37 - art_sys_76: 3.94067400e-08 + art_sys_65: 0.0 + art_sys_66: 0.0 + art_sys_67: 0.0 + art_sys_68: 0.0 + art_sys_69: 0.0 + art_sys_70: 0.0 + art_sys_71: 0.0 + art_sys_72: 3.41871101e-198 + art_sys_73: -2.11904123e-189 + art_sys_74: -6.60561598e-191 + art_sys_75: -3.24457471e-75 + art_sys_76: -3.94067400e-08 art_sys_77: 3.49835555e-07 art_sys_78: -5.48509185e-07 - art_sys_79: -9.14364465e-27 - art_sys_80: -8.01878449e-29 - art_sys_81: 9.95029366e-07 - art_sys_82: 1.05272557e-05 - art_sys_83: -6.42413964e-05 - art_sys_84: 2.85677988e-23 + art_sys_79: -4.01596505e-27 + art_sys_80: 9.95029366e-07 + art_sys_81: 2.49174468e-25 + art_sys_82: 2.12221564e-27 + art_sys_83: -1.05272557e-05 + art_sys_84: 6.42413964e-05 art_sys_85: 9.58745176e-05 art_sys_86: 4.28592571e-05 - art_sys_87: -9.33330317e-23 - art_sys_88: -8.15341902e-24 - art_sys_89: 1.29198666e-24 - art_sys_90: 1.15437766e-23 - art_sys_91: 1.77829176e-24 - art_sys_92: 8.62197956e-24 - art_sys_93: 8.96733598e-24 - art_sys_94: -3.36255374e-24 - art_sys_95: 2.84794618e-24 - art_sys_96: -2.41783488e-23 - art_sys_97: -2.13145142e-25 - art_sys_98: 2.62425836e-24 - art_sys_99: 8.60170144e-25 - art_sys_100: 6.82332913e-25 - art_sys_101: 2.91653668e-24 - art_sys_102: -3.53902834e-24 - art_sys_103: 9.42745140e-26 - art_sys_104: -1.20320363e-25 - art_sys_105: 3.28449027e-24 - art_sys_106: -1.37590807e-24 - art_sys_107: 8.60421596e-25 - art_sys_108: -1.22043087e-24 - art_sys_109: -8.06849125e-25 - art_sys_110: -6.86145429e-26 - art_sys_111: 6.55472015e-25 - art_sys_112: -7.61020916e-25 - art_sys_113: 1.45064421e-24 - art_sys_114: -9.14350479e-25 - art_sys_115: -5.85317944e-25 - art_sys_116: -9.64443325e-25 - art_sys_117: 8.19588360e-25 - art_sys_118: -1.42516568e-25 - art_sys_119: 1.14379906e-24 - art_sys_120: 2.02756418e-25 - art_sys_121: 1.62828088e-25 - art_sys_122: -1.59340757e-25 - art_sys_123: -1.37789771e-25 - art_sys_124: -1.05345559e-25 - art_sys_125: 2.84154034e-26 - art_sys_126: 2.44079695e-26 - art_sys_127: 2.09836478e-25 - art_sys_128: -7.78846468e-25 - art_sys_129: 2.25038091e-25 - art_sys_130: 2.90271552e-26 - art_sys_131: 2.50481510e-25 - art_sys_132: 6.50635836e-26 - art_sys_133: 5.95886220e-26 - art_sys_134: -1.33158141e-25 - art_sys_135: 2.20327199e-26 - art_sys_136: -5.60215182e-26 - art_sys_137: -2.75402542e-27 - art_sys_138: 5.95485679e-26 - art_sys_139: 4.26638134e-24 - art_sys_140: 8.17220242e-27 - art_sys_141: -5.46356612e-24 - art_sys_142: -0.0 - art_sys_143: 1.75842958e-25 - art_sys_144: 1.02494420e-24 - art_sys_145: 1.91588050e-24 - art_sys_146: -2.17573387e-24 - art_sys_147: 9.99187842e-27 - art_sys_148: 2.51819518e-25 - art_sys_149: -2.32899185e-23 - art_sys_150: -1.27491615e-23 - art_sys_151: 2.47738716e-21 - art_sys_152: 5.22863771e-23 - art_sys_153: 4.34688705e-22 - art_sys_154: 7.27234549e-20 - art_sys_155: 1.89131419e-20 - art_sys_156: -7.08051850e-21 - art_sys_157: -1.88485660e-20 - art_sys_158: -0.0 - art_sys_159: -3.10416384e-23 - art_sys_160: -3.10416384e-23 - art_sys_161: 5.77376988e-22 - art_sys_162: 2.11556926e-18 - art_sys_163: -0.0 - art_sys_164: -1.77817951e-19 - art_sys_165: -4.86403726e-04 - art_sys_166: -2.81838063e-04 - art_sys_167: 1.41387088e-03 - art_sys_168: 4.24917491e-03 - art_sys_169: 1.35293148e-02 - art_sys_170: -1.21974535e-02 + art_sys_87: 1.64224914e-24 + art_sys_88: -2.05442439e-23 + art_sys_89: 4.86403726e-04 + art_sys_90: 9.42004853e-22 + art_sys_91: 2.83717441e-23 + art_sys_92: -2.81838063e-04 + art_sys_93: -1.41387088e-03 + art_sys_94: -3.38503195e-22 + art_sys_95: 7.82694677e-22 + art_sys_96: 6.65649079e-22 + art_sys_97: 5.26400962e-22 + art_sys_98: -1.63512130e-21 + art_sys_99: -7.73102248e-22 + art_sys_100: -6.51911886e-22 + art_sys_101: -4.36022308e-22 + art_sys_102: 9.64713615e-23 + art_sys_103: 2.25046314e-22 + art_sys_104: 5.25314371e-22 + art_sys_105: -4.34331203e-22 + art_sys_106: -4.22839093e-22 + art_sys_107: 6.72679178e-23 + art_sys_108: -1.42599196e-23 + art_sys_109: 7.23959948e-22 + art_sys_110: -1.74354552e-22 + art_sys_111: 2.70204750e-23 + art_sys_112: -3.85372891e-22 + art_sys_113: 2.46386172e-23 + art_sys_114: -4.59595623e-22 + art_sys_115: 1.30765004e-23 + art_sys_116: 3.85559218e-22 + art_sys_117: -9.16146432e-23 + art_sys_118: 1.15274247e-22 + art_sys_119: -2.99408361e-23 + art_sys_120: -1.51647798e-22 + art_sys_121: -1.33894506e-23 + art_sys_122: 5.07264708e-23 + art_sys_123: -1.50344328e-22 + art_sys_124: 1.53485170e-22 + art_sys_125: -1.21331951e-23 + art_sys_126: 2.22719730e-23 + art_sys_127: 1.72480570e-23 + art_sys_128: -5.08326280e-23 + art_sys_129: 2.66664342e-24 + art_sys_130: 8.21633905e-23 + art_sys_131: 3.64452798e-22 + art_sys_132: -6.62034478e-23 + art_sys_133: 4.79209366e-23 + art_sys_134: -6.62932553e-23 + art_sys_135: 2.74228523e-23 + art_sys_136: 3.23876005e-22 + art_sys_137: -1.84111250e-23 + art_sys_138: -1.59888491e-23 + art_sys_139: -2.17303857e-24 + art_sys_140: -2.66726158e-21 + art_sys_141: 2.33707090e-24 + art_sys_142: 2.87459235e-23 + art_sys_143: -4.30832855e-24 + art_sys_144: 1.02200102e-21 + art_sys_145: 3.03631051e-23 + art_sys_146: -2.44074405e-22 + art_sys_147: 7.62853923e-23 + art_sys_148: -1.56638096e-20 + art_sys_149: -7.25289716e-24 + art_sys_150: -2.00835422e-22 + art_sys_151: 1.33375088e-22 + art_sys_152: 1.45279973e-19 + art_sys_153: -1.99893640e-24 + art_sys_154: -3.80933367e-24 + art_sys_155: -3.95400655e-20 + art_sys_156: 0.0 + art_sys_157: -6.16332393e-24 + art_sys_158: 0.0 + art_sys_159: 4.77171758e-23 + art_sys_160: -1.50291675e-20 + art_sys_161: -2.18743749e-23 + art_sys_162: -2.18743749e-23 + art_sys_163: 4.01524833e-21 + art_sys_164: 4.01524833e-21 + art_sys_165: 2.11556945e-18 + art_sys_166: 1.77817946e-19 + art_sys_167: 0.0 + art_sys_168: -4.24917491e-03 + art_sys_169: -1.35293148e-02 + art_sys_170: 1.21974535e-02 art_sys_171: -5.08853070e-04 art_sys_172: -4.43501778e-04 - art_sys_173: 1.63507840e-04 - art_sys_174: 2.32481175e-14 - art_sys_175: -1.11754290e-06 - art_sys_176: -3.42007728e-07 - art_sys_177: 1.45805218e-07 - art_sys_178: 4.12987994e-08 - art_sys_179: 8.37977080e-09 - art_sys_180: -1.69855475e-09 - art_sys_181: -3.06271488e-10 - art_sys_182: -4.61445893e-11 - art_sys_183: -8.02500424e-12 - art_sys_184: 7.32535387e-13 - art_sys_185: -2.50661486e-16 + art_sys_173: -1.63507840e-04 + art_sys_174: 1.11754290e-06 + art_sys_175: 3.42007728e-07 + art_sys_176: -1.45805218e-07 + art_sys_177: 8.37977080e-09 + art_sys_178: -1.69855475e-09 + art_sys_179: -2.32481175e-14 + art_sys_180: -2.50661486e-16 + art_sys_181: 4.12987994e-08 + art_sys_182: -3.06271488e-10 + art_sys_183: 4.61445893e-11 + art_sys_184: -8.02500424e-12 + art_sys_185: -7.32535387e-13 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -48027,127 +48027,127 @@ bins: art_sys_62: 0.0 art_sys_63: 0.0 art_sys_64: 0.0 - art_sys_65: 6.58564612e-262 - art_sys_66: 2.02941146e-186 - art_sys_67: 5.46217764e-144 - art_sys_68: 1.52679046e-133 - art_sys_69: -2.88848197e-141 - art_sys_70: 1.43989703e-139 - art_sys_71: 1.47487553e-133 - art_sys_72: -5.58737443e-121 - art_sys_73: 3.63848701e-109 - art_sys_74: 2.15160951e-111 - art_sys_75: 1.01285042e-39 - art_sys_76: -1.50071884e-10 + art_sys_65: 0.0 + art_sys_66: 0.0 + art_sys_67: 0.0 + art_sys_68: 0.0 + art_sys_69: 0.0 + art_sys_70: 0.0 + art_sys_71: 0.0 + art_sys_72: -1.30171658e-200 + art_sys_73: 8.06851209e-192 + art_sys_74: 2.51517014e-193 + art_sys_75: 1.23562477e-77 + art_sys_76: 1.50071884e-10 art_sys_77: 3.55595890e-08 art_sys_78: -5.05408703e-08 - art_sys_79: -7.92762585e-28 - art_sys_80: -3.91865178e-29 - art_sys_81: 1.24110762e-07 - art_sys_82: 4.11028600e-06 - art_sys_83: -1.01035468e-05 - art_sys_84: 5.25729676e-24 + art_sys_79: 1.27764566e-27 + art_sys_80: 1.24110762e-07 + art_sys_81: 3.08723160e-26 + art_sys_82: 1.96224232e-28 + art_sys_83: -4.11028600e-06 + art_sys_84: 1.01035468e-05 art_sys_85: 2.79553589e-05 art_sys_86: 2.01579474e-05 - art_sys_87: -3.74333754e-23 - art_sys_88: -7.58254191e-24 - art_sys_89: -4.81984831e-25 - art_sys_90: 3.89185003e-24 - art_sys_91: -1.07355397e-25 - art_sys_92: 2.91213985e-24 - art_sys_93: 3.14696501e-24 - art_sys_94: -1.02106211e-24 - art_sys_95: 1.61108482e-24 - art_sys_96: -8.25586714e-24 - art_sys_97: 4.43809542e-28 - art_sys_98: 1.34291415e-24 - art_sys_99: 2.09776630e-25 - art_sys_100: 1.56914896e-25 - art_sys_101: 1.29288230e-24 - art_sys_102: -2.15094983e-24 - art_sys_103: 3.92258179e-25 - art_sys_104: -1.33891839e-25 - art_sys_105: 1.29264908e-24 - art_sys_106: -5.34728116e-25 - art_sys_107: 3.81746578e-25 - art_sys_108: -6.14558285e-25 - art_sys_109: -3.88629858e-25 - art_sys_110: 5.34030680e-25 - art_sys_111: 2.39318906e-25 - art_sys_112: -1.98129472e-25 - art_sys_113: 4.71969879e-25 - art_sys_114: -3.07056309e-25 - art_sys_115: -1.53661620e-25 - art_sys_116: -3.33868797e-25 - art_sys_117: -7.68481521e-26 - art_sys_118: -4.15934419e-26 - art_sys_119: 3.45381881e-25 - art_sys_120: 4.97100426e-26 - art_sys_121: 6.95853375e-26 - art_sys_122: -2.58011774e-26 - art_sys_123: -9.50254183e-26 - art_sys_124: -2.02105524e-26 - art_sys_125: 1.54997092e-26 - art_sys_126: 1.12354413e-26 - art_sys_127: 7.76620528e-26 - art_sys_128: -2.61217043e-25 - art_sys_129: 6.63688865e-26 - art_sys_130: 4.17692173e-26 - art_sys_131: 6.53196062e-26 - art_sys_132: 2.43525573e-26 - art_sys_133: 9.69683041e-27 - art_sys_134: -3.96840536e-26 - art_sys_135: 1.28642156e-26 - art_sys_136: -4.13699847e-27 - art_sys_137: 1.22689201e-27 - art_sys_138: -1.85627161e-26 - art_sys_139: -1.68148942e-24 - art_sys_140: 3.84716105e-27 - art_sys_141: 1.09023789e-24 - art_sys_142: 0.0 - art_sys_143: 1.07683297e-25 - art_sys_144: 5.34659875e-25 - art_sys_145: -1.45030998e-25 - art_sys_146: -6.20479842e-25 - art_sys_147: -6.08158475e-26 - art_sys_148: 6.68271128e-26 - art_sys_149: 9.45382839e-24 - art_sys_150: 9.07128062e-24 - art_sys_151: -2.66046724e-21 - art_sys_152: 6.15820393e-22 - art_sys_153: -5.39921477e-21 - art_sys_154: -7.03140455e-20 - art_sys_155: -1.92428712e-20 - art_sys_156: 7.10095114e-21 - art_sys_157: 1.90576093e-20 - art_sys_158: 0.0 - art_sys_159: 5.03239787e-24 - art_sys_160: 5.03239787e-24 - art_sys_161: -4.90098775e-22 - art_sys_162: -7.82471154e-18 - art_sys_163: 0.0 - art_sys_164: 6.68932805e-19 - art_sys_165: 5.94528754e-05 - art_sys_166: -3.93034303e-04 - art_sys_167: -2.63341017e-04 - art_sys_168: 1.11801976e-03 - art_sys_169: -1.06805899e-03 - art_sys_170: -2.46177898e-03 + art_sys_87: -1.70917247e-23 + art_sys_88: -1.80784724e-23 + art_sys_89: -5.94528754e-05 + art_sys_90: -1.20671703e-22 + art_sys_91: -2.54616242e-23 + art_sys_92: -3.93034303e-04 + art_sys_93: 2.63341017e-04 + art_sys_94: 1.07749560e-22 + art_sys_95: -3.75175633e-22 + art_sys_96: -1.13158510e-22 + art_sys_97: -4.50714690e-23 + art_sys_98: 1.49991255e-22 + art_sys_99: 2.24390364e-22 + art_sys_100: -8.88462412e-23 + art_sys_101: 4.17010119e-23 + art_sys_102: 3.98527972e-23 + art_sys_103: -8.27041638e-23 + art_sys_104: -5.89967092e-23 + art_sys_105: 3.00402932e-23 + art_sys_106: 6.22488079e-23 + art_sys_107: 1.52242838e-22 + art_sys_108: -4.66432986e-23 + art_sys_109: -1.44182292e-22 + art_sys_110: 1.04447423e-22 + art_sys_111: 2.78404326e-23 + art_sys_112: 7.06311093e-23 + art_sys_113: 2.16334839e-23 + art_sys_114: 2.06093335e-22 + art_sys_115: 4.69310277e-23 + art_sys_116: -6.33449602e-24 + art_sys_117: -3.90312169e-23 + art_sys_118: 2.85107828e-24 + art_sys_119: 8.64187846e-24 + art_sys_120: -1.75635894e-23 + art_sys_121: -3.77684194e-23 + art_sys_122: -5.40525106e-23 + art_sys_123: -9.30613982e-24 + art_sys_124: -4.35382794e-23 + art_sys_125: -7.14670628e-24 + art_sys_126: 2.00923073e-23 + art_sys_127: 2.17899116e-23 + art_sys_128: 1.17967774e-23 + art_sys_129: 3.61150652e-23 + art_sys_130: 1.14810615e-23 + art_sys_131: -6.72366709e-23 + art_sys_132: 1.06739294e-24 + art_sys_133: -1.12369460e-23 + art_sys_134: 1.02817944e-23 + art_sys_135: -8.36696341e-24 + art_sys_136: 3.24824620e-22 + art_sys_137: 3.00754980e-24 + art_sys_138: 5.31128236e-24 + art_sys_139: -1.37903831e-24 + art_sys_140: 3.63110494e-22 + art_sys_141: 6.98030082e-24 + art_sys_142: -2.93437298e-24 + art_sys_143: -1.27513366e-25 + art_sys_144: 4.49861139e-22 + art_sys_145: -2.97376340e-25 + art_sys_146: 3.50010444e-23 + art_sys_147: -1.10629554e-21 + art_sys_148: 1.49275003e-20 + art_sys_149: 3.59111143e-24 + art_sys_150: 6.50171659e-23 + art_sys_151: -1.36038152e-22 + art_sys_152: -1.36343930e-19 + art_sys_153: 1.27805449e-22 + art_sys_154: 5.80677134e-25 + art_sys_155: 3.97079536e-20 + art_sys_156: -0.0 + art_sys_157: -4.22654836e-24 + art_sys_158: -0.0 + art_sys_159: 3.69144046e-23 + art_sys_160: 1.50831220e-20 + art_sys_161: 5.06000140e-24 + art_sys_162: 5.06000140e-24 + art_sys_163: -3.57188733e-21 + art_sys_164: -3.57188733e-21 + art_sys_165: -7.82471173e-18 + art_sys_166: -6.68932788e-19 + art_sys_167: -0.0 + art_sys_168: -1.11801976e-03 + art_sys_169: 1.06805899e-03 + art_sys_170: 2.46177898e-03 art_sys_171: 5.84891691e-03 art_sys_172: 9.21494727e-04 - art_sys_173: -7.14400336e-04 - art_sys_174: -8.92605979e-14 - art_sys_175: 3.64992991e-06 - art_sys_176: 1.04922352e-06 - art_sys_177: -5.67304433e-07 - art_sys_178: -1.42350486e-07 - art_sys_179: -3.19784040e-08 - art_sys_180: 6.48768231e-09 - art_sys_181: 1.12475054e-09 - art_sys_182: 1.82338313e-10 - art_sys_183: 2.99810524e-11 - art_sys_184: -2.94929350e-12 - art_sys_185: 9.11092514e-16 + art_sys_173: 7.14400336e-04 + art_sys_174: -3.64992991e-06 + art_sys_175: -1.04922352e-06 + art_sys_176: 5.67304433e-07 + art_sys_177: -3.19784040e-08 + art_sys_178: 6.48768231e-09 + art_sys_179: 8.92605978e-14 + art_sys_180: 9.11092514e-16 + art_sys_181: -1.42350486e-07 + art_sys_182: 1.12475054e-09 + art_sys_183: -1.82338313e-10 + art_sys_184: 2.99810524e-11 + art_sys_185: 2.94929350e-12 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -48318,127 +48318,127 @@ bins: art_sys_62: 0.0 art_sys_63: 0.0 art_sys_64: 0.0 - art_sys_65: 4.70374654e-262 - art_sys_66: 1.44861795e-186 - art_sys_67: 3.89896700e-144 - art_sys_68: 1.08984108e-133 - art_sys_69: -2.06183259e-141 - art_sys_70: 1.02781553e-139 - art_sys_71: 1.05278360e-133 - art_sys_72: -3.98833395e-121 - art_sys_73: 2.59719506e-109 - art_sys_74: 1.53584432e-111 - art_sys_75: 7.22984607e-40 - art_sys_76: -1.07123086e-10 + art_sys_65: 0.0 + art_sys_66: 0.0 + art_sys_67: 0.0 + art_sys_68: 0.0 + art_sys_69: 0.0 + art_sys_70: 0.0 + art_sys_71: 0.0 + art_sys_72: -9.29314649e-201 + art_sys_73: 5.76022967e-192 + art_sys_74: 1.79561702e-193 + art_sys_75: 8.82003575e-78 + art_sys_76: 1.07123086e-10 art_sys_77: 3.33635311e-09 art_sys_78: -5.83709522e-09 - art_sys_79: -1.02987264e-28 - art_sys_80: 2.48045214e-30 - art_sys_81: 7.54725820e-09 - art_sys_82: 5.02770125e-07 - art_sys_83: -9.45176410e-07 - art_sys_84: 5.29314135e-25 + art_sys_79: 1.56711368e-28 + art_sys_80: 7.54725820e-09 + art_sys_81: 1.89300754e-27 + art_sys_82: 2.28145454e-29 + art_sys_83: -5.02770125e-07 + art_sys_84: 9.45176410e-07 art_sys_85: 3.14491946e-06 art_sys_86: 2.12075160e-06 - art_sys_87: -3.94760240e-24 - art_sys_88: -7.87621535e-25 - art_sys_89: -5.88255974e-26 - art_sys_90: 4.27266026e-25 - art_sys_91: -1.38700247e-26 - art_sys_92: 3.14359396e-25 - art_sys_93: 3.44056260e-25 - art_sys_94: -1.06889762e-25 - art_sys_95: 1.83402732e-25 - art_sys_96: -8.73657682e-25 - art_sys_97: 5.27907113e-27 - art_sys_98: 1.40458663e-25 - art_sys_99: 2.20623166e-26 - art_sys_100: 1.60748661e-26 - art_sys_101: 1.39134456e-25 - art_sys_102: -2.29297976e-25 - art_sys_103: 4.55254525e-26 - art_sys_104: -1.59686677e-26 - art_sys_105: 1.35567256e-25 - art_sys_106: -5.86737213e-26 - art_sys_107: 4.10318929e-26 - art_sys_108: -6.39494597e-26 - art_sys_109: -3.15754544e-26 - art_sys_110: 5.32129658e-26 - art_sys_111: 1.37514848e-26 - art_sys_112: -2.27950654e-26 - art_sys_113: 5.17014654e-26 - art_sys_114: -3.30407650e-26 - art_sys_115: -1.60226575e-26 - art_sys_116: -3.65274670e-26 - art_sys_117: -9.24653055e-27 - art_sys_118: -4.57790142e-27 - art_sys_119: 4.36870867e-26 - art_sys_120: 5.60767438e-27 - art_sys_121: 7.65447201e-27 - art_sys_122: -3.44401642e-27 - art_sys_123: -9.92983305e-27 - art_sys_124: -1.87766245e-27 - art_sys_125: 1.81898498e-27 - art_sys_126: 7.18285000e-28 - art_sys_127: 8.18327451e-27 - art_sys_128: -2.79579568e-26 - art_sys_129: 7.22432066e-27 - art_sys_130: 6.79027585e-27 - art_sys_131: 7.36054373e-27 - art_sys_132: 2.57954673e-27 - art_sys_133: 1.06711608e-27 - art_sys_134: -4.91258356e-27 - art_sys_135: 1.32152216e-27 - art_sys_136: 4.72046639e-29 - art_sys_137: 1.41372614e-28 - art_sys_138: -3.26171050e-26 - art_sys_139: 2.74411848e-24 - art_sys_140: 4.05683476e-28 - art_sys_141: -1.99263470e-24 - art_sys_142: -0.0 - art_sys_143: 6.22137862e-26 - art_sys_144: 3.56622697e-25 - art_sys_145: 6.70581846e-25 - art_sys_146: -9.43296608e-26 - art_sys_147: -7.28647113e-27 - art_sys_148: 6.52025957e-27 - art_sys_149: 1.61652265e-24 - art_sys_150: 6.29625649e-24 - art_sys_151: 2.13696205e-21 - art_sys_152: -1.69209908e-21 - art_sys_153: -1.39281140e-21 - art_sys_154: 5.10583489e-20 - art_sys_155: 1.37217832e-20 - art_sys_156: -5.02397469e-21 - art_sys_157: -1.33530769e-20 - art_sys_158: -0.0 - art_sys_159: -5.06653991e-24 - art_sys_160: -5.06653991e-24 - art_sys_161: 3.45514241e-22 - art_sys_162: 3.85140173e-17 - art_sys_163: -0.0 - art_sys_164: -3.19028226e-18 - art_sys_165: 2.11907003e-05 - art_sys_166: -1.30603949e-05 - art_sys_167: -7.89370340e-05 - art_sys_168: -3.04898453e-04 - art_sys_169: -9.63034362e-04 - art_sys_170: 1.14728062e-03 + art_sys_87: -1.77408183e-24 + art_sys_88: -3.04581857e-24 + art_sys_89: -2.11907003e-05 + art_sys_90: -4.16888621e-23 + art_sys_91: -3.68825835e-24 + art_sys_92: -1.30603949e-05 + art_sys_93: 7.89370340e-05 + art_sys_94: 1.79257100e-23 + art_sys_95: -5.68313300e-23 + art_sys_96: -3.56600664e-23 + art_sys_97: -2.76900411e-23 + art_sys_98: 8.08882947e-23 + art_sys_99: 4.75017458e-23 + art_sys_100: 2.22773073e-23 + art_sys_101: 2.17012872e-23 + art_sys_102: -2.85178144e-24 + art_sys_103: -1.46933279e-23 + art_sys_104: -2.60533575e-23 + art_sys_105: 2.15695832e-23 + art_sys_106: 2.09691658e-23 + art_sys_107: 7.11276298e-24 + art_sys_108: 1.71940278e-24 + art_sys_109: -4.09834812e-23 + art_sys_110: 1.35480649e-23 + art_sys_111: 9.41318163e-25 + art_sys_112: 2.15299262e-23 + art_sys_113: -3.96234216e-25 + art_sys_114: 3.29797389e-23 + art_sys_115: 2.41170294e-24 + art_sys_116: -1.70502471e-23 + art_sys_117: 2.25489924e-24 + art_sys_118: -4.93825747e-24 + art_sys_119: 1.71370418e-24 + art_sys_120: 5.39216246e-24 + art_sys_121: -1.81614481e-24 + art_sys_122: -5.83202375e-24 + art_sys_123: 5.96954235e-24 + art_sys_124: -9.60793502e-24 + art_sys_125: 8.17274714e-26 + art_sys_126: 4.34994069e-25 + art_sys_127: 5.38154367e-25 + art_sys_128: 2.88377191e-24 + art_sys_129: 2.57995543e-24 + art_sys_130: -2.86687106e-24 + art_sys_131: -2.17695016e-23 + art_sys_132: 2.95807301e-24 + art_sys_133: -2.79509838e-24 + art_sys_134: 3.48291546e-24 + art_sys_135: -1.74381748e-24 + art_sys_136: 1.28327651e-21 + art_sys_137: 9.91688019e-25 + art_sys_138: 1.04979338e-24 + art_sys_139: 2.40708516e-25 + art_sys_140: 1.31013475e-23 + art_sys_141: 3.28152275e-25 + art_sys_142: -1.44045853e-24 + art_sys_143: 2.82922569e-25 + art_sys_144: -4.54485220e-22 + art_sys_145: -1.37040134e-24 + art_sys_146: 1.13433922e-23 + art_sys_147: 2.51115642e-21 + art_sys_148: -1.32195440e-20 + art_sys_149: 1.48277920e-24 + art_sys_150: -1.51580635e-22 + art_sys_151: -2.47474431e-22 + art_sys_152: 9.65964144e-20 + art_sys_153: 4.62585152e-23 + art_sys_154: 2.03643022e-25 + art_sys_155: -2.80672408e-20 + art_sys_156: -0.0 + art_sys_157: 5.97545037e-24 + art_sys_158: 0.0 + art_sys_159: -5.28493239e-23 + art_sys_160: -1.08851142e-20 + art_sys_161: 1.21972280e-23 + art_sys_162: 1.21972280e-23 + art_sys_163: 2.72134563e-21 + art_sys_164: 2.72134563e-21 + art_sys_165: 3.85140171e-17 + art_sys_166: 3.19028226e-18 + art_sys_167: 0.0 + art_sys_168: 3.04898453e-04 + art_sys_169: 9.63034362e-04 + art_sys_170: -1.14728062e-03 art_sys_171: 1.98949264e-03 art_sys_172: -3.73372631e-03 - art_sys_173: 1.11359116e-03 - art_sys_174: 4.14014743e-13 - art_sys_175: -2.82284227e-05 - art_sys_176: -4.85873134e-06 - art_sys_177: 2.88741766e-06 - art_sys_178: 7.34077655e-07 - art_sys_179: 1.49311697e-07 - art_sys_180: -3.15689476e-08 - art_sys_181: -5.40164635e-09 - art_sys_182: -8.39737807e-10 - art_sys_183: -1.45109523e-10 - art_sys_184: 1.33933069e-11 - art_sys_185: -3.84860871e-15 + art_sys_173: -1.11359116e-03 + art_sys_174: 2.82284227e-05 + art_sys_175: 4.85873134e-06 + art_sys_176: -2.88741766e-06 + art_sys_177: 1.49311697e-07 + art_sys_178: -3.15689476e-08 + art_sys_179: -4.14014743e-13 + art_sys_180: -3.84860871e-15 + art_sys_181: 7.34077655e-07 + art_sys_182: -5.40164635e-09 + art_sys_183: 8.39737807e-10 + art_sys_184: -1.45109523e-10 + art_sys_185: -1.33933069e-11 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -48609,127 +48609,127 @@ bins: art_sys_62: 0.0 art_sys_63: 0.0 art_sys_64: 0.0 - art_sys_65: 6.37302435e-264 - art_sys_66: 1.96340922e-188 - art_sys_67: 5.28453202e-146 - art_sys_68: 1.47713487e-135 - art_sys_69: -2.79454028e-143 - art_sys_70: 1.39306747e-141 - art_sys_71: 1.42690837e-135 - art_sys_72: -5.40565707e-123 - art_sys_73: 3.52015302e-111 - art_sys_74: 2.08163302e-113 - art_sys_75: 9.79909629e-42 - art_sys_76: -1.45191118e-12 + art_sys_65: 0.0 + art_sys_66: 0.0 + art_sys_67: 0.0 + art_sys_68: 0.0 + art_sys_69: 0.0 + art_sys_70: 0.0 + art_sys_71: 0.0 + art_sys_72: -1.25945487e-202 + art_sys_73: 7.80655866e-194 + art_sys_74: 2.43351228e-195 + art_sys_75: 1.19543872e-79 + art_sys_76: 1.45191118e-12 art_sys_77: 2.22519756e-10 art_sys_78: -4.58784486e-10 - art_sys_79: -8.68484495e-30 - art_sys_80: 4.86231797e-31 - art_sys_81: 3.10805926e-10 - art_sys_82: 3.40600854e-08 - art_sys_83: -7.43309308e-08 - art_sys_84: 4.00620254e-26 + art_sys_79: 3.09518854e-29 + art_sys_80: 3.10805926e-10 + art_sys_81: 7.90088712e-29 + art_sys_82: 1.80344359e-30 + art_sys_83: -3.40600854e-08 + art_sys_84: 7.43309308e-08 art_sys_85: 1.93872712e-07 art_sys_86: 2.90637597e-08 - art_sys_87: -7.33496793e-26 - art_sys_88: 1.12019715e-26 - art_sys_89: 3.04568823e-27 - art_sys_90: 1.92131416e-26 - art_sys_91: 3.65163586e-27 - art_sys_92: 1.25458990e-26 - art_sys_93: 1.42078708e-26 - art_sys_94: -4.06119430e-27 - art_sys_95: 5.65850149e-27 - art_sys_96: -4.46032939e-26 - art_sys_97: 1.26987912e-27 - art_sys_98: 1.17710302e-27 - art_sys_99: 1.03949469e-27 - art_sys_100: 8.84875883e-28 - art_sys_101: 3.30506453e-27 - art_sys_102: -2.31563786e-27 - art_sys_103: -6.15073470e-28 - art_sys_104: -4.44475026e-28 - art_sys_105: 2.98222487e-27 - art_sys_106: -2.13942189e-27 - art_sys_107: 9.57257068e-28 - art_sys_108: -4.47149844e-28 - art_sys_109: -9.47010135e-28 - art_sys_110: -3.15361282e-27 - art_sys_111: 1.42629092e-27 - art_sys_112: -1.73465901e-27 - art_sys_113: 2.53478457e-27 - art_sys_114: -1.15223849e-27 - art_sys_115: -5.62874290e-28 - art_sys_116: -1.55335835e-27 - art_sys_117: 1.84831918e-27 - art_sys_118: -2.46180832e-28 - art_sys_119: 8.14151950e-28 - art_sys_120: 4.14761535e-28 - art_sys_121: 2.47415883e-28 - art_sys_122: -3.76270698e-28 - art_sys_123: 3.62084384e-29 - art_sys_124: -1.24219432e-28 - art_sys_125: 8.26159795e-29 - art_sys_126: -1.06453330e-28 - art_sys_127: 2.17271241e-28 - art_sys_128: -1.06217228e-27 - art_sys_129: 3.59286988e-28 - art_sys_130: -1.78643203e-28 - art_sys_131: 3.50215699e-28 - art_sys_132: 8.15579698e-29 - art_sys_133: 1.20219864e-28 - art_sys_134: -1.03125520e-28 - art_sys_135: -1.61306666e-29 - art_sys_136: -1.57915025e-28 - art_sys_137: -9.62607178e-30 - art_sys_138: -1.83230104e-26 - art_sys_139: 2.29794935e-24 - art_sys_140: 3.71340434e-30 - art_sys_141: -2.41524083e-24 - art_sys_142: 0.0 - art_sys_143: 1.58417651e-25 - art_sys_144: 8.62172243e-25 - art_sys_145: 9.47385220e-25 - art_sys_146: -1.95061739e-27 - art_sys_147: -3.72600032e-29 - art_sys_148: 1.60774022e-28 - art_sys_149: -2.82455052e-25 - art_sys_150: 2.50133154e-24 - art_sys_151: 1.35712501e-21 - art_sys_152: 1.90376394e-21 - art_sys_153: -2.48929310e-21 - art_sys_154: -3.82747542e-20 - art_sys_155: -1.12690347e-20 - art_sys_156: 3.74488481e-21 - art_sys_157: 1.07788320e-20 + art_sys_87: 6.47459649e-26 + art_sys_88: -9.20411674e-26 + art_sys_89: 9.85211972e-08 + art_sys_90: 2.55449927e-25 + art_sys_91: 1.52241895e-24 + art_sys_92: 1.21400774e-05 + art_sys_93: -7.97817680e-06 + art_sys_94: -3.94597614e-24 + art_sys_95: 1.08674084e-23 + art_sys_96: 2.95754871e-24 + art_sys_97: 2.33112464e-24 + art_sys_98: -4.31142431e-24 + art_sys_99: -6.47358937e-24 + art_sys_100: 2.94789865e-24 + art_sys_101: -1.15294808e-24 + art_sys_102: -8.39605495e-25 + art_sys_103: 2.27368937e-24 + art_sys_104: 1.43102168e-24 + art_sys_105: -9.97585569e-25 + art_sys_106: -8.89198886e-25 + art_sys_107: -5.62382923e-24 + art_sys_108: 1.25438801e-24 + art_sys_109: 4.28503900e-24 + art_sys_110: -2.88009601e-24 + art_sys_111: -6.03743866e-25 + art_sys_112: -2.18005739e-24 + art_sys_113: -6.04687430e-25 + art_sys_114: -5.90796542e-24 + art_sys_115: -1.43037001e-24 + art_sys_116: 8.21049417e-26 + art_sys_117: 9.87649892e-25 + art_sys_118: -6.69817320e-26 + art_sys_119: -1.73036771e-25 + art_sys_120: 6.28352012e-25 + art_sys_121: 1.17823815e-24 + art_sys_122: 1.73503206e-24 + art_sys_123: 2.89404166e-25 + art_sys_124: 1.35564519e-24 + art_sys_125: 2.75625944e-25 + art_sys_126: -6.61671380e-25 + art_sys_127: -6.28664186e-25 + art_sys_128: -3.15943671e-25 + art_sys_129: -1.25666912e-24 + art_sys_130: -3.28607629e-25 + art_sys_131: 3.70910144e-24 + art_sys_132: -8.19947970e-27 + art_sys_133: 3.46382246e-25 + art_sys_134: -2.80646127e-25 + art_sys_135: 2.55036943e-25 + art_sys_136: -2.24468824e-22 + art_sys_137: -9.44241199e-26 + art_sys_138: -1.65362596e-25 + art_sys_139: 1.48810090e-26 + art_sys_140: 4.12437004e-22 + art_sys_141: -2.05252229e-25 + art_sys_142: 8.06954593e-26 + art_sys_143: -1.67586539e-26 + art_sys_144: 3.70641630e-22 + art_sys_145: 1.81464314e-26 + art_sys_146: 3.09406434e-25 + art_sys_147: -1.51934518e-21 + art_sys_148: 8.86478593e-21 + art_sys_149: -6.34336273e-25 + art_sys_150: 9.07034056e-23 + art_sys_151: 2.17265189e-22 + art_sys_152: -7.28815382e-20 + art_sys_153: -1.11208918e-22 + art_sys_154: -1.76965026e-26 + art_sys_155: 2.24194666e-20 + art_sys_156: 0.0 + art_sys_157: 2.02247183e-24 art_sys_158: 0.0 - art_sys_159: -4.06339842e-24 - art_sys_160: -4.06339842e-24 - art_sys_161: -3.52284146e-22 - art_sys_162: -1.09747459e-16 - art_sys_163: 0.0 - art_sys_164: 9.50590635e-18 - art_sys_165: -9.85211972e-08 - art_sys_166: 1.21400774e-05 - art_sys_167: 7.97817680e-06 - art_sys_168: -5.82848541e-05 - art_sys_169: 1.03424095e-04 - art_sys_170: 1.56515089e-04 + art_sys_159: -1.41777060e-23 + art_sys_160: 8.44922472e-21 + art_sys_161: 1.17945440e-23 + art_sys_162: 1.17945440e-23 + art_sys_163: -2.03045056e-21 + art_sys_164: -2.03045056e-21 + art_sys_165: -1.09747458e-16 + art_sys_166: -9.50590635e-18 + art_sys_167: -0.0 + art_sys_168: 5.82848541e-05 + art_sys_169: -1.03424095e-04 + art_sys_170: -1.56515089e-04 art_sys_171: -8.47539000e-04 art_sys_172: -1.99700024e-03 - art_sys_173: -2.46280968e-03 - art_sys_174: -1.26342142e-12 - art_sys_175: 6.61175517e-06 - art_sys_176: 1.73139323e-05 - art_sys_177: -5.56719051e-06 - art_sys_178: -1.94790970e-06 - art_sys_179: -4.16174628e-07 - art_sys_180: 8.57442529e-08 - art_sys_181: 1.59098293e-08 - art_sys_182: 2.47804941e-09 - art_sys_183: 4.20068470e-10 - art_sys_184: -4.00005870e-11 - art_sys_185: 1.49301349e-14 + art_sys_173: 2.46280968e-03 + art_sys_174: -6.61175517e-06 + art_sys_175: -1.73139323e-05 + art_sys_176: 5.56719051e-06 + art_sys_177: -4.16174628e-07 + art_sys_178: 8.57442529e-08 + art_sys_179: 1.26342142e-12 + art_sys_180: 1.49301349e-14 + art_sys_181: -1.94790970e-06 + art_sys_182: 1.59098293e-08 + art_sys_183: -2.47804941e-09 + art_sys_184: 4.20068470e-10 + art_sys_185: 4.00005870e-11 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -48900,127 +48900,127 @@ bins: art_sys_62: 0.0 art_sys_63: 0.0 art_sys_64: 0.0 - art_sys_65: -2.22026945e-264 - art_sys_66: -6.83687419e-189 - art_sys_67: -1.84015024e-146 - art_sys_68: -5.14359659e-136 - art_sys_69: 9.73099218e-144 - art_sys_70: -4.85086178e-142 - art_sys_71: -4.96870066e-136 - art_sys_72: 1.88232772e-123 - art_sys_73: -1.22576804e-111 - art_sys_74: -7.24854633e-114 - art_sys_75: -3.41218661e-42 - art_sys_76: 5.05576406e-13 + art_sys_65: 0.0 + art_sys_66: 0.0 + art_sys_67: 0.0 + art_sys_68: 0.0 + art_sys_69: 0.0 + art_sys_70: 0.0 + art_sys_71: 0.0 + art_sys_72: 4.38611883e-203 + art_sys_73: -2.71867573e-194 + art_sys_74: -8.47483642e-196 + art_sys_75: -4.16268999e-80 + art_sys_76: -5.05576406e-13 art_sys_77: 7.33461006e-12 art_sys_78: -1.44916423e-11 - art_sys_79: -2.69845002e-31 - art_sys_80: 1.78311751e-34 - art_sys_81: 2.50459715e-11 - art_sys_82: 1.26525157e-09 - art_sys_83: -5.54804294e-09 - art_sys_84: 2.60187530e-27 + art_sys_79: 1.92934069e-31 + art_sys_80: 2.50459715e-11 + art_sys_81: 6.19007608e-30 + art_sys_82: 5.77820380e-32 + art_sys_83: -1.26525157e-09 + art_sys_84: 5.54804294e-09 art_sys_85: 7.10252642e-09 art_sys_86: -9.26594511e-09 - art_sys_87: 1.44789258e-26 - art_sys_88: 6.62827862e-27 - art_sys_89: 8.21823595e-28 - art_sys_90: -1.29553107e-29 - art_sys_91: 6.38730904e-28 - art_sys_92: -2.15000382e-28 - art_sys_93: -1.90404840e-28 - art_sys_94: 8.42343077e-29 - art_sys_95: -4.21526577e-28 - art_sys_96: -4.39317425e-28 - art_sys_97: 1.20443593e-28 - art_sys_98: -7.23077927e-28 - art_sys_99: 2.36963944e-29 - art_sys_100: 3.06009927e-29 - art_sys_101: -4.21980941e-28 - art_sys_102: 1.14490045e-27 - art_sys_103: -3.58623623e-28 - art_sys_104: 4.72776485e-29 - art_sys_105: -4.24912731e-28 - art_sys_106: 7.53277964e-29 - art_sys_107: -1.26567882e-28 - art_sys_108: 3.37922024e-28 - art_sys_109: 1.09992255e-28 - art_sys_110: -7.81180545e-28 - art_sys_111: 7.88163157e-29 - art_sys_112: -9.67357598e-29 - art_sys_113: 2.27284705e-29 - art_sys_114: 4.22184488e-29 - art_sys_115: 7.64318894e-30 - art_sys_116: 1.40130729e-29 - art_sys_117: 3.37046214e-28 - art_sys_118: -5.69164566e-30 - art_sys_119: -1.96797906e-28 - art_sys_120: 2.33615973e-29 - art_sys_121: -1.46905053e-29 - art_sys_122: -3.13992124e-29 - art_sys_123: 6.80151690e-29 - art_sys_124: -7.13325333e-30 - art_sys_125: -7.83602549e-31 - art_sys_126: -1.79948349e-29 - art_sys_127: -2.02540868e-29 - art_sys_128: 2.59475908e-29 - art_sys_129: 3.53524921e-30 - art_sys_130: -6.50486447e-29 - art_sys_131: 4.84737877e-30 - art_sys_132: -5.10710590e-30 - art_sys_133: 1.04832910e-29 - art_sys_134: 1.55269581e-29 - art_sys_135: -9.97194791e-30 - art_sys_136: -6.17722634e-29 - art_sys_137: -3.94566386e-30 - art_sys_138: 1.67744358e-27 - art_sys_139: -1.27009648e-25 - art_sys_140: -2.04316604e-30 - art_sys_141: 2.34738336e-26 - art_sys_142: 0.0 - art_sys_143: 2.04809786e-26 - art_sys_144: 1.02832421e-25 - art_sys_145: 1.36617227e-26 - art_sys_146: 2.69441241e-28 - art_sys_147: 4.58117574e-29 - art_sys_148: -1.45323437e-29 - art_sys_149: -6.71667267e-26 - art_sys_150: -3.57680833e-25 - art_sys_151: -1.28451011e-22 - art_sys_152: 1.70826765e-22 - art_sys_153: 6.41785687e-22 - art_sys_154: 5.35640435e-20 - art_sys_155: 3.92964912e-20 - art_sys_156: -8.04855327e-21 - art_sys_157: -1.11559657e-20 + art_sys_87: 2.09743876e-26 + art_sys_88: 2.40178336e-26 + art_sys_89: 3.89753008e-07 + art_sys_90: 7.68373155e-25 + art_sys_91: 2.38859951e-25 + art_sys_92: 1.50389482e-06 + art_sys_93: -2.74459749e-06 + art_sys_94: -8.27703384e-25 + art_sys_95: 2.42418598e-24 + art_sys_96: 1.13742873e-24 + art_sys_97: 9.99674353e-25 + art_sys_98: -2.42370864e-24 + art_sys_99: -1.78151189e-24 + art_sys_100: -2.56288235e-25 + art_sys_101: -6.43454464e-25 + art_sys_102: 2.48721347e-26 + art_sys_103: 5.65333534e-25 + art_sys_104: 7.59965710e-25 + art_sys_105: -6.46121599e-25 + art_sys_106: -6.73337298e-25 + art_sys_107: -8.64147286e-25 + art_sys_108: -5.47271250e-26 + art_sys_109: 1.43177573e-24 + art_sys_110: -5.87557555e-25 + art_sys_111: -7.13080161e-26 + art_sys_112: -7.52517879e-25 + art_sys_113: -5.04115101e-26 + art_sys_114: -1.37284556e-24 + art_sys_115: -1.97434886e-25 + art_sys_116: 4.26785629e-25 + art_sys_117: 1.79753874e-26 + art_sys_118: 1.19590856e-25 + art_sys_119: -5.17562606e-26 + art_sys_120: -6.81611772e-26 + art_sys_121: 1.65137581e-25 + art_sys_122: 3.21297627e-25 + art_sys_123: -1.21838767e-25 + art_sys_124: 3.73890764e-25 + art_sys_125: 3.14111762e-26 + art_sys_126: -7.86511464e-26 + art_sys_127: -7.01779180e-26 + art_sys_128: -9.88632593e-26 + art_sys_129: -1.99445726e-25 + art_sys_130: 6.05569586e-26 + art_sys_131: 8.41074588e-25 + art_sys_132: -7.31534351e-26 + art_sys_133: 1.03563270e-25 + art_sys_134: -1.11609787e-25 + art_sys_135: 6.82674220e-26 + art_sys_136: -8.30164800e-23 + art_sys_137: -3.50963754e-26 + art_sys_138: -4.25850520e-26 + art_sys_139: -4.94695893e-27 + art_sys_140: 1.65280361e-22 + art_sys_141: -2.59709258e-26 + art_sys_142: 4.33141702e-26 + art_sys_143: -1.16146901e-26 + art_sys_144: 1.54794105e-21 + art_sys_145: 3.69630129e-26 + art_sys_146: -2.83820229e-25 + art_sys_147: 3.17227653e-21 + art_sys_148: -1.74087834e-20 + art_sys_149: -9.57249560e-26 + art_sys_150: 1.20258804e-23 + art_sys_151: 1.90828681e-23 + art_sys_152: 9.08941184e-20 + art_sys_153: -3.44574630e-24 + art_sys_154: -6.77929690e-27 + art_sys_155: -3.49095578e-20 + art_sys_156: -0.0 + art_sys_157: -5.11926120e-25 art_sys_158: -0.0 - art_sys_159: 3.04052896e-24 - art_sys_160: 3.04052896e-24 - art_sys_161: 1.93797609e-22 - art_sys_162: 6.37042911e-16 - art_sys_163: -0.0 - art_sys_164: -5.28314565e-17 - art_sys_165: -3.89753008e-07 - art_sys_166: 1.50389482e-06 - art_sys_167: 2.74459749e-06 - art_sys_168: 8.39945972e-06 - art_sys_169: 3.97889774e-05 - art_sys_170: -5.00739265e-05 + art_sys_159: 3.51222619e-24 + art_sys_160: -1.05604738e-20 + art_sys_161: 1.38233357e-23 + art_sys_162: 1.38233357e-23 + art_sys_163: 2.84034672e-21 + art_sys_164: 2.84034672e-21 + art_sys_165: 6.37042910e-16 + art_sys_166: 5.28314565e-17 + art_sys_167: 0.0 + art_sys_168: -8.39945972e-06 + art_sys_169: -3.97889774e-05 + art_sys_170: 5.00739265e-05 art_sys_171: -9.78639287e-05 art_sys_172: 1.91623621e-04 - art_sys_173: -1.46487778e-04 - art_sys_174: 6.95582013e-12 - art_sys_175: -4.48202730e-04 - art_sys_176: -4.74911587e-05 - art_sys_177: 4.83296360e-05 - art_sys_178: 1.04052907e-05 - art_sys_179: 2.48232039e-06 - art_sys_180: -5.11073173e-07 - art_sys_181: -8.78024195e-08 - art_sys_182: -1.42458404e-08 - art_sys_183: -2.39505725e-09 - art_sys_184: 2.30448492e-10 - art_sys_185: -6.06712393e-14 + art_sys_173: 1.46487778e-04 + art_sys_174: 4.48202730e-04 + art_sys_175: 4.74911587e-05 + art_sys_176: -4.83296360e-05 + art_sys_177: 2.48232039e-06 + art_sys_178: -5.11073173e-07 + art_sys_179: -6.95582013e-12 + art_sys_180: -6.06712393e-14 + art_sys_181: 1.04052907e-05 + art_sys_182: -8.78024195e-08 + art_sys_183: 1.42458404e-08 + art_sys_184: -2.39505725e-09 + art_sys_185: -2.30448492e-10 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -49191,127 +49191,127 @@ bins: art_sys_62: 0.0 art_sys_63: 0.0 art_sys_64: 0.0 - art_sys_65: -2.22728626e-265 - art_sys_66: -6.85877125e-190 - art_sys_67: -1.84604386e-147 - art_sys_68: -5.16007046e-137 - art_sys_69: 9.76215852e-145 - art_sys_70: -4.86639808e-143 - art_sys_71: -4.98461437e-137 - art_sys_72: 1.88835643e-124 - art_sys_73: -1.22969391e-112 - art_sys_74: -7.27176191e-115 - art_sys_75: -3.42311514e-43 - art_sys_76: 5.07195661e-14 + art_sys_65: 0.0 + art_sys_66: 0.0 + art_sys_67: 0.0 + art_sys_68: 0.0 + art_sys_69: 0.0 + art_sys_70: 0.0 + art_sys_71: 0.0 + art_sys_72: 4.40012211e-204 + art_sys_73: -2.72735547e-195 + art_sys_74: -8.50189349e-197 + art_sys_75: -4.17602222e-81 + art_sys_76: -5.07195661e-14 art_sys_77: 2.73720301e-15 art_sys_78: 3.97525068e-13 - art_sys_79: 1.04229750e-32 - art_sys_80: -3.84360589e-33 - art_sys_81: 3.13058554e-12 - art_sys_82: 5.43018193e-11 - art_sys_83: -3.77012908e-10 - art_sys_84: 1.66737514e-28 + art_sys_79: -2.83039047e-32 + art_sys_80: 3.13058554e-12 + art_sys_81: 7.60956312e-31 + art_sys_82: -1.47287838e-33 + art_sys_83: -5.43018193e-11 + art_sys_84: 3.77012908e-10 art_sys_85: 4.16767233e-10 art_sys_86: -4.47136836e-10 - art_sys_87: 6.60181577e-28 - art_sys_88: 3.36891629e-28 - art_sys_89: 4.58400957e-29 - art_sys_90: 6.45023900e-30 - art_sys_91: 3.58153564e-29 - art_sys_92: -5.01809741e-30 - art_sys_93: -4.48452697e-30 - art_sys_94: 1.21177104e-30 - art_sys_95: -2.24463152e-29 - art_sys_96: -3.82275218e-29 - art_sys_97: 4.93385869e-30 - art_sys_98: -3.56142537e-29 - art_sys_99: 2.45465744e-30 - art_sys_100: 2.40251251e-30 - art_sys_101: -2.01669232e-29 - art_sys_102: 5.84919128e-29 - art_sys_103: -2.11377739e-29 - art_sys_104: 2.74382770e-30 - art_sys_105: -1.91897794e-29 - art_sys_106: 3.21750374e-30 - art_sys_107: -6.03830030e-30 - art_sys_108: 1.64605216e-29 - art_sys_109: 5.75133613e-30 - art_sys_110: -4.03808021e-29 - art_sys_111: 4.04078731e-30 - art_sys_112: -5.34612027e-30 - art_sys_113: 2.05657325e-30 - art_sys_114: 1.47406891e-30 - art_sys_115: -5.04747961e-31 - art_sys_116: 1.49615952e-31 - art_sys_117: 1.86738087e-29 - art_sys_118: -3.86180758e-31 - art_sys_119: -8.30289079e-30 - art_sys_120: 1.31544117e-30 - art_sys_121: -7.03724884e-31 - art_sys_122: -1.68484214e-30 - art_sys_123: 3.41905381e-30 - art_sys_124: -5.18492399e-31 - art_sys_125: -6.01716866e-32 - art_sys_126: -6.17816787e-31 - art_sys_127: -8.69503028e-31 - art_sys_128: 7.57961317e-31 - art_sys_129: 3.51515707e-31 - art_sys_130: -3.33435857e-30 - art_sys_131: 4.83969340e-31 - art_sys_132: -2.18456100e-31 - art_sys_133: 5.94618943e-31 - art_sys_134: 6.37375505e-31 - art_sys_135: -5.03450633e-31 - art_sys_136: -5.89259874e-30 - art_sys_137: -4.97185656e-31 - art_sys_138: 7.26616037e-28 - art_sys_139: -5.41259877e-26 - art_sys_140: -9.71909507e-32 - art_sys_141: -1.08129609e-25 - art_sys_142: 0.0 - art_sys_143: 6.60481150e-26 - art_sys_144: 3.31493741e-25 - art_sys_145: 9.47058930e-26 - art_sys_146: 1.11964857e-29 - art_sys_147: 2.59746133e-30 - art_sys_148: -4.07268458e-31 - art_sys_149: -1.36247540e-27 - art_sys_150: -1.24325150e-25 - art_sys_151: -5.71294737e-23 - art_sys_152: -6.82406783e-23 - art_sys_153: 5.93336304e-23 - art_sys_154: -3.98718252e-20 - art_sys_155: -2.99462217e-20 - art_sys_156: 2.03718631e-21 - art_sys_157: 1.67251841e-20 - art_sys_158: 0.0 - art_sys_159: 1.06961481e-23 - art_sys_160: 1.06961481e-23 - art_sys_161: -1.85637241e-21 - art_sys_162: -1.96019289e-15 - art_sys_163: 0.0 - art_sys_164: 1.67602280e-16 - art_sys_165: -2.01760551e-08 - art_sys_166: 8.22208769e-09 - art_sys_167: 6.77868744e-08 - art_sys_168: 2.05374805e-06 - art_sys_169: -1.59076530e-06 - art_sys_170: -6.79374442e-06 + art_sys_87: 1.09946316e-27 + art_sys_88: 1.19550631e-27 + art_sys_89: 2.01760551e-08 + art_sys_90: 3.94455672e-26 + art_sys_91: 3.08244700e-27 + art_sys_92: 8.22208769e-09 + art_sys_93: -6.77868744e-08 + art_sys_94: -1.66819154e-26 + art_sys_95: 4.82058740e-26 + art_sys_96: 3.10626661e-26 + art_sys_97: 2.33743353e-26 + art_sys_98: -7.07055421e-26 + art_sys_99: -4.06387768e-26 + art_sys_100: -2.07697157e-26 + art_sys_101: -1.89395454e-26 + art_sys_102: 2.30790605e-27 + art_sys_103: 1.25635710e-26 + art_sys_104: 2.29719341e-26 + art_sys_105: -1.85791892e-26 + art_sys_106: -1.93465721e-26 + art_sys_107: -3.80507906e-27 + art_sys_108: 1.70684223e-27 + art_sys_109: 3.51525620e-26 + art_sys_110: -1.14859536e-26 + art_sys_111: -9.55954893e-28 + art_sys_112: -1.84533682e-26 + art_sys_113: 7.95065282e-28 + art_sys_114: -2.78943012e-26 + art_sys_115: -1.76345414e-27 + art_sys_116: 1.52297177e-26 + art_sys_117: -2.18186161e-27 + art_sys_118: 4.37187397e-27 + art_sys_119: -1.51937405e-27 + art_sys_120: -4.97959157e-27 + art_sys_121: 1.31947787e-27 + art_sys_122: 4.66894933e-27 + art_sys_123: -5.38332286e-27 + art_sys_124: 8.11903649e-27 + art_sys_125: -2.43813367e-28 + art_sys_126: -1.63493126e-28 + art_sys_127: -3.10658354e-28 + art_sys_128: -2.50748415e-27 + art_sys_129: -1.87466660e-27 + art_sys_130: 2.68166988e-27 + art_sys_131: -4.15030417e-26 + art_sys_132: -2.61532217e-27 + art_sys_133: 2.40684826e-27 + art_sys_134: -3.03907060e-27 + art_sys_135: 1.47390725e-27 + art_sys_136: 1.83943676e-23 + art_sys_137: -8.40415460e-28 + art_sys_138: -8.82165319e-28 + art_sys_139: 1.34134170e-28 + art_sys_140: 2.87588270e-22 + art_sys_141: -2.37683744e-28 + art_sys_142: 1.25563321e-27 + art_sys_143: -2.41547930e-28 + art_sys_144: 1.72816826e-21 + art_sys_145: 1.17946166e-27 + art_sys_146: -1.43900228e-25 + art_sys_147: 2.21105950e-21 + art_sys_148: 1.23762289e-20 + art_sys_149: 3.64886664e-26 + art_sys_150: -6.52786913e-24 + art_sys_151: -1.76770211e-23 + art_sys_152: -6.52428039e-20 + art_sys_153: 1.18670127e-23 + art_sys_154: -1.76793467e-28 + art_sys_155: 3.81427802e-20 + art_sys_156: -0.0 + art_sys_157: -8.35577552e-25 + art_sys_158: -0.0 + art_sys_159: 8.34712985e-24 + art_sys_160: 9.57564825e-21 + art_sys_161: -7.08212577e-25 + art_sys_162: -7.08212577e-25 + art_sys_163: -2.56700343e-21 + art_sys_164: -2.56700343e-21 + art_sys_165: -1.96019289e-15 + art_sys_166: -1.67602280e-16 + art_sys_167: -0.0 + art_sys_168: -2.05374805e-06 + art_sys_169: 1.59076530e-06 + art_sys_170: 6.79374442e-06 art_sys_171: 4.48070347e-05 art_sys_172: 8.98313735e-05 - art_sys_173: 1.45697426e-04 - art_sys_174: -2.16340418e-11 - art_sys_175: -1.01253517e-04 - art_sys_176: 2.89231121e-04 - art_sys_177: -6.17271763e-05 - art_sys_178: -3.36881733e-05 - art_sys_179: -6.04438398e-06 - art_sys_180: 1.46801565e-06 - art_sys_181: 2.66333728e-07 - art_sys_182: 4.14569408e-08 - art_sys_183: 7.35981513e-09 - art_sys_184: -6.72871765e-10 - art_sys_185: 2.41775266e-13 + art_sys_173: -1.45697426e-04 + art_sys_174: 1.01253517e-04 + art_sys_175: -2.89231121e-04 + art_sys_176: 6.17271763e-05 + art_sys_177: -6.04438398e-06 + art_sys_178: 1.46801565e-06 + art_sys_179: 2.16340418e-11 + art_sys_180: 2.41775266e-13 + art_sys_181: -3.36881733e-05 + art_sys_182: 2.66333728e-07 + art_sys_183: -4.14569408e-08 + art_sys_184: 7.35981513e-09 + art_sys_185: 6.72871765e-10 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -49482,127 +49482,127 @@ bins: art_sys_62: 0.0 art_sys_63: 0.0 art_sys_64: 0.0 - art_sys_65: -1.30075338e-266 - art_sys_66: -4.00564934e-191 - art_sys_67: -1.07812378e-148 - art_sys_68: -3.01357664e-138 - art_sys_69: 5.70128124e-146 - art_sys_70: -2.84206654e-144 - art_sys_71: -2.91110704e-138 - art_sys_72: 1.10283510e-125 - art_sys_73: -7.18164003e-114 - art_sys_74: -4.24684353e-116 - art_sys_75: -1.99916259e-44 - art_sys_76: 2.96211653e-15 + art_sys_65: 0.0 + art_sys_66: 0.0 + art_sys_67: 0.0 + art_sys_68: 0.0 + art_sys_69: 0.0 + art_sys_70: 0.0 + art_sys_71: 0.0 + art_sys_72: 2.56974186e-205 + art_sys_73: -1.59281933e-196 + art_sys_74: -4.96524212e-198 + art_sys_75: -2.43887426e-82 + art_sys_76: -2.96211653e-15 art_sys_77: -1.77413255e-14 art_sys_78: 8.50287906e-14 - art_sys_79: 1.95817868e-33 - art_sys_80: -4.12549911e-34 - art_sys_81: 2.61004393e-13 - art_sys_82: 4.24870017e-12 - art_sys_83: -6.61939702e-12 - art_sys_84: 3.86226847e-30 + art_sys_79: -3.06718671e-33 + art_sys_80: 2.61004393e-13 + art_sys_81: 6.32853105e-32 + art_sys_82: -3.29866247e-34 + art_sys_83: -4.24870017e-12 + art_sys_84: 6.61939702e-12 art_sys_85: 2.21789879e-11 art_sys_86: 2.50936504e-11 - art_sys_87: -4.49464309e-29 - art_sys_88: -1.13468764e-29 - art_sys_89: -9.97816892e-31 - art_sys_90: 3.64660318e-30 - art_sys_91: -4.96343234e-31 - art_sys_92: 2.91023791e-30 - art_sys_93: 3.10457186e-30 - art_sys_94: -1.04195926e-30 - art_sys_95: 1.75607948e-30 - art_sys_96: -7.78276126e-30 - art_sys_97: -7.70573022e-32 - art_sys_98: 1.75933782e-30 - art_sys_99: 1.74174527e-31 - art_sys_100: 1.20958836e-31 - art_sys_101: 1.49860101e-30 - art_sys_102: -2.72792517e-30 - art_sys_103: 7.03375157e-31 - art_sys_104: -1.45421842e-31 - art_sys_105: 1.50333700e-30 - art_sys_106: -5.56365639e-31 - art_sys_107: 4.42174923e-31 - art_sys_108: -8.00277737e-31 - art_sys_109: -3.82702226e-31 - art_sys_110: 1.00723934e-30 - art_sys_111: 1.65406977e-31 - art_sys_112: -1.29363717e-31 - art_sys_113: 4.25780058e-31 - art_sys_114: -3.23484672e-31 - art_sys_115: -1.54290225e-31 - art_sys_116: -3.25440421e-31 - art_sys_117: -2.77398583e-31 - art_sys_118: -3.70150857e-32 - art_sys_119: 5.97056308e-31 - art_sys_120: 3.40443788e-32 - art_sys_121: 7.71313125e-32 - art_sys_122: -7.64646864e-33 - art_sys_123: -1.31143077e-31 - art_sys_124: -1.49851598e-32 - art_sys_125: 1.52486322e-32 - art_sys_126: 5.04445741e-33 - art_sys_127: 8.71250832e-32 - art_sys_128: -2.67787636e-31 - art_sys_129: 5.94199048e-32 - art_sys_130: 6.91005015e-32 - art_sys_131: 5.61205728e-32 - art_sys_132: 2.66890127e-32 - art_sys_133: 3.17140879e-33 - art_sys_134: -9.07654394e-32 - art_sys_135: 1.58550401e-32 - art_sys_136: 1.30117624e-30 - art_sys_137: 3.37352501e-32 - art_sys_138: -3.20158307e-29 - art_sys_139: -2.00400976e-26 - art_sys_140: 5.04167572e-33 - art_sys_141: 1.36656284e-25 - art_sys_142: -0.0 - art_sys_143: -4.81291047e-26 - art_sys_144: -2.43520002e-25 - art_sys_145: -8.67876476e-26 - art_sys_146: -6.48321499e-31 - art_sys_147: -8.49250526e-32 - art_sys_148: 7.70676948e-32 - art_sys_149: 7.79645632e-28 - art_sys_150: 2.17886306e-26 - art_sys_151: 9.77036034e-24 - art_sys_152: -2.43151337e-23 - art_sys_153: -1.54742063e-21 - art_sys_154: 3.04720011e-20 - art_sys_155: 1.67783191e-19 - art_sys_156: -2.24259673e-20 - art_sys_157: -2.70200743e-21 - art_sys_158: 0.0 - art_sys_159: -7.06540484e-24 - art_sys_160: -7.06540484e-24 - art_sys_161: 5.12796447e-22 - art_sys_162: 5.17590804e-15 - art_sys_163: -0.0 - art_sys_164: -4.38664943e-16 - art_sys_165: 5.12840017e-09 - art_sys_166: -7.31576203e-09 - art_sys_167: -3.85384728e-08 - art_sys_168: -6.64108385e-08 - art_sys_169: -1.19583320e-06 - art_sys_170: 1.51479471e-06 + art_sys_87: -2.87140454e-29 + art_sys_88: -3.89041151e-28 + art_sys_89: -5.12840017e-09 + art_sys_90: -1.00474202e-26 + art_sys_91: -1.52598091e-27 + art_sys_92: -7.31576203e-09 + art_sys_93: 3.85384728e-08 + art_sys_94: 1.52994770e-26 + art_sys_95: -2.65172738e-26 + art_sys_96: -1.60350192e-26 + art_sys_97: -1.63083891e-26 + art_sys_98: 3.86712972e-26 + art_sys_99: 2.22398328e-26 + art_sys_100: 9.95957890e-27 + art_sys_101: 1.01580551e-26 + art_sys_102: -1.98949453e-27 + art_sys_103: -6.50382609e-27 + art_sys_104: -1.16219971e-26 + art_sys_105: 1.08433444e-26 + art_sys_106: 9.07027517e-27 + art_sys_107: 7.54042334e-27 + art_sys_108: -3.13972654e-27 + art_sys_109: -1.97976144e-26 + art_sys_110: 5.81269094e-27 + art_sys_111: 3.78209256e-28 + art_sys_112: 1.06314798e-26 + art_sys_113: 5.73623707e-28 + art_sys_114: 1.49322137e-26 + art_sys_115: 1.22687987e-27 + art_sys_116: -7.96073161e-27 + art_sys_117: 1.77467045e-27 + art_sys_118: -2.45678507e-27 + art_sys_119: 5.80625013e-28 + art_sys_120: 2.33737679e-27 + art_sys_121: -9.84085705e-28 + art_sys_122: -3.18759580e-27 + art_sys_123: 2.86340405e-27 + art_sys_124: -4.81340131e-27 + art_sys_125: -1.78182067e-28 + art_sys_126: 3.90395322e-28 + art_sys_127: 2.06650173e-28 + art_sys_128: 1.28156084e-27 + art_sys_129: 1.69301203e-27 + art_sys_130: -1.38353509e-27 + art_sys_131: -3.25774312e-26 + art_sys_132: 1.37022386e-27 + art_sys_133: -1.37464472e-27 + art_sys_134: 1.60593913e-27 + art_sys_135: -8.58263582e-28 + art_sys_136: 2.60765437e-24 + art_sys_137: 5.20214316e-28 + art_sys_138: 5.28094526e-28 + art_sys_139: 1.41555796e-28 + art_sys_140: 2.86279316e-22 + art_sys_141: 1.49940261e-28 + art_sys_142: -6.81048272e-28 + art_sys_143: 3.85544989e-28 + art_sys_144: 4.64024792e-22 + art_sys_145: -6.94519652e-28 + art_sys_146: 1.42840775e-26 + art_sys_147: -1.63099932e-22 + art_sys_148: -7.46017190e-21 + art_sys_149: 3.22778286e-27 + art_sys_150: -5.36583146e-25 + art_sys_151: -4.04257872e-24 + art_sys_152: 6.63003736e-20 + art_sys_153: 4.77044420e-24 + art_sys_154: 1.01302764e-28 + art_sys_155: -2.19659087e-20 + art_sys_156: -0.0 + art_sys_157: -5.96747285e-25 + art_sys_158: -0.0 + art_sys_159: 6.12792158e-24 + art_sys_160: -7.60166528e-21 + art_sys_161: 1.06013509e-24 + art_sys_162: 1.06013509e-24 + art_sys_163: 9.22999626e-22 + art_sys_164: 9.22999626e-22 + art_sys_165: 5.17590804e-15 + art_sys_166: 4.38664943e-16 + art_sys_167: 0.0 + art_sys_168: 6.64108385e-08 + art_sys_169: 1.19583320e-06 + art_sys_170: -1.51479471e-06 art_sys_171: 2.68165371e-06 art_sys_172: -1.54963555e-05 - art_sys_173: -4.26228856e-06 - art_sys_174: 5.96528758e-11 - art_sys_175: 7.18790785e-05 - art_sys_176: 1.12327586e-04 - art_sys_177: 2.05026722e-04 - art_sys_178: 3.32214375e-05 - art_sys_179: 1.73424816e-05 - art_sys_180: -3.13465395e-06 - art_sys_181: -6.81315422e-07 - art_sys_182: -1.12897897e-07 - art_sys_183: -1.90495875e-08 - art_sys_184: 1.89694123e-09 - art_sys_185: -6.30936003e-13 + art_sys_173: 4.26228856e-06 + art_sys_174: -7.18790785e-05 + art_sys_175: -1.12327586e-04 + art_sys_176: -2.05026722e-04 + art_sys_177: 1.73424816e-05 + art_sys_178: -3.13465395e-06 + art_sys_179: -5.96528758e-11 + art_sys_180: -6.30936003e-13 + art_sys_181: 3.32214375e-05 + art_sys_182: -6.81315422e-07 + art_sys_183: 1.12897897e-07 + art_sys_184: -1.90495875e-08 + art_sys_185: -1.89694123e-09 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -49773,127 +49773,127 @@ bins: art_sys_62: 0.0 art_sys_63: 0.0 art_sys_64: 0.0 - art_sys_65: -4.75864603e-268 - art_sys_66: -1.46543735e-192 - art_sys_67: -3.94423656e-150 - art_sys_68: -1.10249485e-139 - art_sys_69: 2.08577181e-147 - art_sys_70: -1.03974914e-145 - art_sys_71: -1.06500710e-139 - art_sys_72: 4.03464112e-127 - art_sys_73: -2.62735019e-115 - art_sys_74: -1.55367647e-117 - art_sys_75: -7.31378931e-46 - art_sys_76: 1.08366855e-16 + art_sys_65: 0.0 + art_sys_66: 0.0 + art_sys_67: 0.0 + art_sys_68: 0.0 + art_sys_69: 0.0 + art_sys_70: 0.0 + art_sys_71: 0.0 + art_sys_72: 9.40118112e-207 + art_sys_73: -5.82719346e-198 + art_sys_74: -1.81649142e-199 + art_sys_75: -8.92244213e-84 + art_sys_76: -1.08366855e-16 art_sys_77: -1.15121762e-15 art_sys_78: 5.23194668e-15 - art_sys_79: 1.19612917e-34 - art_sys_80: -1.98358655e-35 - art_sys_81: 1.04212893e-14 - art_sys_82: 1.42472166e-13 - art_sys_83: 2.09987779e-12 - art_sys_84: -8.02785964e-31 + art_sys_79: -3.58695401e-34 + art_sys_80: 1.04212893e-14 + art_sys_81: 2.53043829e-33 + art_sys_82: -2.06804325e-35 + art_sys_83: -1.42472166e-13 + art_sys_84: -2.09987779e-12 art_sys_85: -2.79564671e-12 art_sys_86: -9.26258479e-13 - art_sys_87: 2.26418807e-30 - art_sys_88: 4.04059665e-32 - art_sys_89: -7.45559165e-32 - art_sys_90: -3.40817120e-31 - art_sys_91: -7.60116906e-32 - art_sys_92: -2.36696410e-31 - art_sys_93: -2.45379065e-31 - art_sys_94: 9.17809676e-32 - art_sys_95: -6.55158264e-32 - art_sys_96: 6.19793162e-31 - art_sys_97: 9.01787768e-33 - art_sys_98: -4.70611948e-32 - art_sys_99: -2.53699783e-32 - art_sys_100: -2.52197873e-32 - art_sys_101: -6.67652272e-32 - art_sys_102: 5.96277128e-32 - art_sys_103: 6.33105948e-33 - art_sys_104: 3.42413232e-33 - art_sys_105: -8.16013959e-32 - art_sys_106: 3.48983826e-32 - art_sys_107: -2.02661376e-32 - art_sys_108: 2.47762353e-32 - art_sys_109: 1.99909122e-32 - art_sys_110: 2.60646133e-32 - art_sys_111: -2.51151362e-32 - art_sys_112: 2.26345089e-32 - art_sys_113: -4.32059761e-32 - art_sys_114: 2.44869233e-32 - art_sys_115: 1.74120567e-32 - art_sys_116: 2.65915353e-32 - art_sys_117: -3.56703316e-32 - art_sys_118: 3.85632570e-33 - art_sys_119: -2.66431913e-32 - art_sys_120: -6.07907222e-33 - art_sys_121: -3.27380121e-33 - art_sys_122: 5.09996088e-33 - art_sys_123: 2.58428481e-33 - art_sys_124: 3.35051262e-33 - art_sys_125: -4.81152586e-34 - art_sys_126: -9.96429005e-34 - art_sys_127: -5.38470655e-33 - art_sys_128: 2.05288679e-32 - art_sys_129: -6.32219194e-33 - art_sys_130: 2.46981419e-33 - art_sys_131: -7.26458674e-33 - art_sys_132: -1.60143535e-33 - art_sys_133: -1.90599708e-33 - art_sys_134: -5.19010851e-33 - art_sys_135: -5.55977237e-34 - art_sys_136: 4.20703791e-31 - art_sys_137: 7.23726362e-32 - art_sys_138: -2.30430739e-28 - art_sys_139: 6.59585642e-26 - art_sys_140: -1.74600441e-34 - art_sys_141: -2.64075782e-25 - art_sys_142: 0.0 - art_sys_143: 8.60287121e-26 - art_sys_144: 4.36159951e-25 - art_sys_145: 1.63955943e-25 - art_sys_146: 4.02824496e-32 - art_sys_147: -2.62952501e-33 - art_sys_148: -6.85699713e-33 - art_sys_149: 6.77343187e-29 - art_sys_150: 4.93326391e-27 - art_sys_151: 2.24981634e-24 - art_sys_152: 5.22143625e-23 - art_sys_153: 1.71241984e-21 - art_sys_154: -1.98185870e-20 - art_sys_155: -3.27170003e-20 - art_sys_156: 3.34207203e-21 - art_sys_157: 7.35805177e-21 - art_sys_158: 0.0 - art_sys_159: 1.20549063e-23 - art_sys_160: 1.20549063e-23 - art_sys_161: -9.84727820e-22 - art_sys_162: -1.65560573e-14 - art_sys_163: 0.0 - art_sys_164: 1.39629676e-15 - art_sys_165: 7.44400608e-10 - art_sys_166: 4.49214237e-10 - art_sys_167: -4.00652732e-09 - art_sys_168: -3.99361402e-08 - art_sys_169: -9.70988872e-08 - art_sys_170: 3.11700333e-07 + art_sys_87: -5.92304096e-31 + art_sys_88: -5.33101643e-29 + art_sys_89: -7.44400608e-10 + art_sys_90: -1.44698664e-27 + art_sys_91: -5.55703292e-29 + art_sys_92: 4.49214237e-10 + art_sys_93: 4.00652732e-09 + art_sys_94: 1.29190091e-27 + art_sys_95: -2.19288087e-27 + art_sys_96: -1.73303553e-27 + art_sys_97: -1.76702361e-27 + art_sys_98: 4.45111433e-27 + art_sys_99: 2.12135817e-27 + art_sys_100: 1.61579062e-27 + art_sys_101: 1.17465438e-27 + art_sys_102: -3.44671564e-28 + art_sys_103: -5.84775549e-28 + art_sys_104: -1.33909953e-27 + art_sys_105: 1.25830120e-27 + art_sys_106: 1.01889900e-27 + art_sys_107: 3.51020766e-29 + art_sys_108: 1.45751128e-28 + art_sys_109: -2.04041427e-27 + art_sys_110: 4.31368965e-28 + art_sys_111: 3.28249698e-29 + art_sys_112: 1.10522187e-27 + art_sys_113: -1.19738563e-28 + art_sys_114: 1.27554563e-27 + art_sys_115: -5.21745534e-30 + art_sys_116: -1.01048828e-27 + art_sys_117: 3.30732890e-28 + art_sys_118: -3.19054214e-28 + art_sys_119: 5.89814430e-29 + art_sys_120: 3.72673509e-28 + art_sys_121: 7.13163020e-30 + art_sys_122: -2.03963981e-28 + art_sys_123: 3.97871772e-28 + art_sys_124: -4.57542807e-28 + art_sys_125: 9.11484647e-30 + art_sys_126: -2.82105378e-29 + art_sys_127: -4.23640114e-29 + art_sys_128: 1.30087777e-28 + art_sys_129: 6.47236183e-29 + art_sys_130: -2.19387371e-28 + art_sys_131: -3.28073997e-27 + art_sys_132: 1.74649229e-28 + art_sys_133: -1.35710788e-28 + art_sys_134: 1.74349879e-28 + art_sys_135: -8.03891791e-29 + art_sys_136: -6.02387692e-25 + art_sys_137: 5.60234167e-29 + art_sys_138: 4.82990305e-29 + art_sys_139: 1.31984430e-29 + art_sys_140: 1.76800169e-23 + art_sys_141: -4.16622440e-30 + art_sys_142: -7.78801041e-29 + art_sys_143: 6.53796699e-29 + art_sys_144: -1.71660333e-21 + art_sys_145: -8.45964938e-29 + art_sys_146: 8.26432547e-27 + art_sys_147: -1.13599624e-21 + art_sys_148: 6.87567825e-21 + art_sys_149: -1.32265957e-27 + art_sys_150: 2.36390317e-25 + art_sys_151: 5.35175337e-25 + art_sys_152: -3.55284695e-20 + art_sys_153: -3.14645352e-25 + art_sys_154: 1.07463699e-29 + art_sys_155: 1.92038178e-20 + art_sys_156: -0.0 + art_sys_157: 4.59713825e-26 + art_sys_158: -0.0 + art_sys_159: -1.10747447e-24 + art_sys_160: 4.66446649e-21 + art_sys_161: 7.14358829e-24 + art_sys_162: 7.14358829e-24 + art_sys_163: -1.02385030e-21 + art_sys_164: -1.02385030e-21 + art_sys_165: -1.65560573e-14 + art_sys_166: -1.39629676e-15 + art_sys_167: -0.0 + art_sys_168: 3.99361402e-08 + art_sys_169: 9.70988872e-08 + art_sys_170: -3.11700333e-07 art_sys_171: -1.27211114e-06 art_sys_172: -3.83375623e-06 - art_sys_173: -5.81141436e-06 - art_sys_174: -1.73630929e-10 - art_sys_175: 9.08062170e-06 - art_sys_176: -4.20758608e-05 - art_sys_177: 7.13109191e-05 - art_sys_178: -1.45159785e-04 - art_sys_179: -1.88350371e-05 - art_sys_180: 1.04905946e-05 - art_sys_181: 1.62703354e-06 - art_sys_182: 3.24435622e-07 - art_sys_183: 5.84119625e-08 - art_sys_184: -5.73421303e-09 - art_sys_185: 1.17385812e-12 + art_sys_173: 5.81141436e-06 + art_sys_174: -9.08062170e-06 + art_sys_175: 4.20758608e-05 + art_sys_176: -7.13109191e-05 + art_sys_177: -1.88350371e-05 + art_sys_178: 1.04905946e-05 + art_sys_179: 1.73630929e-10 + art_sys_180: 1.17385812e-12 + art_sys_181: -1.45159785e-04 + art_sys_182: 1.62703354e-06 + art_sys_183: -3.24435622e-07 + art_sys_184: 5.84119625e-08 + art_sys_185: 5.73421303e-09 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -50064,127 +50064,127 @@ bins: art_sys_62: 0.0 art_sys_63: 0.0 art_sys_64: 0.0 - art_sys_65: -1.35617506e-269 - art_sys_66: -4.17644271e-194 - art_sys_67: -1.12409296e-151 - art_sys_68: -3.14206990e-141 - art_sys_69: 5.94437318e-149 - art_sys_70: -2.96324693e-147 - art_sys_71: -3.03523119e-141 - art_sys_72: 1.14985793e-128 - art_sys_73: -7.48785170e-117 - art_sys_74: -4.42792098e-119 - art_sys_75: -2.08440313e-47 - art_sys_76: 3.08841562e-18 + art_sys_65: 0.0 + art_sys_66: 0.0 + art_sys_67: 0.0 + art_sys_68: 0.0 + art_sys_69: 0.0 + art_sys_70: 0.0 + art_sys_71: 0.0 + art_sys_72: 2.67929193e-208 + art_sys_73: -1.66072244e-199 + art_sys_74: -5.17691421e-201 + art_sys_75: -2.54286329e-85 + art_sys_76: -3.08841562e-18 art_sys_77: -4.96150528e-17 art_sys_78: 2.23280032e-16 - art_sys_79: 5.09758341e-36 - art_sys_80: -5.64357739e-37 - art_sys_81: 1.55973711e-16 - art_sys_82: -1.35917614e-14 - art_sys_83: 2.44068329e-13 - art_sys_84: -1.02142681e-31 + art_sys_79: -4.69966214e-36 + art_sys_80: 1.55973711e-16 + art_sys_81: 3.83054655e-35 + art_sys_82: -9.05026456e-37 + art_sys_83: 1.35917614e-14 + art_sys_84: -2.44068329e-13 art_sys_85: -5.70157823e-13 art_sys_86: -6.85424392e-13 - art_sys_87: 1.22861418e-30 - art_sys_88: 3.09996796e-31 - art_sys_89: 2.33664730e-32 - art_sys_90: -1.01702480e-31 - art_sys_91: 1.08839485e-32 - art_sys_92: -7.95866101e-32 - art_sys_93: -8.37246608e-32 - art_sys_94: 2.90873413e-32 - art_sys_95: -4.52193439e-32 - art_sys_96: 1.88082238e-31 - art_sys_97: 4.30161887e-33 - art_sys_98: -4.68676506e-32 - art_sys_99: -5.69994457e-33 - art_sys_100: -4.53621401e-33 - art_sys_101: -4.00473383e-32 - art_sys_102: 7.32060008e-32 - art_sys_103: -1.61779073e-32 - art_sys_104: 3.88678921e-33 - art_sys_105: -4.17385723e-32 - art_sys_106: 1.46489592e-32 - art_sys_107: -1.19444257e-32 - art_sys_108: 2.20339768e-32 - art_sys_109: 1.24142614e-32 - art_sys_110: -2.73359900e-32 - art_sys_111: -5.60882956e-33 - art_sys_112: 3.07533582e-33 - art_sys_113: -1.18148236e-32 - art_sys_114: 8.90117769e-33 - art_sys_115: 4.65514875e-33 - art_sys_116: 8.77071620e-33 - art_sys_117: 6.58467008e-33 - art_sys_118: 9.48639990e-34 - art_sys_119: -1.33360832e-32 - art_sys_120: -8.80238001e-34 - art_sys_121: -1.89566198e-33 - art_sys_122: 2.30873282e-34 - art_sys_123: 3.70788423e-33 - art_sys_124: 4.77294112e-34 - art_sys_125: -3.20950083e-34 - art_sys_126: -1.85329188e-34 - art_sys_127: -2.41820580e-33 - art_sys_128: 7.23396378e-33 - art_sys_129: -1.68294847e-33 - art_sys_130: -2.54555919e-33 - art_sys_131: -1.74732289e-33 - art_sys_132: -7.16790557e-34 - art_sys_133: -8.08677317e-35 - art_sys_134: 2.49003385e-34 - art_sys_135: -4.57551604e-34 - art_sys_136: -7.96297075e-32 - art_sys_137: 3.08068570e-32 - art_sys_138: -1.08196729e-28 - art_sys_139: 3.34219724e-26 - art_sys_140: -1.54772994e-34 - art_sys_141: -1.39300316e-25 - art_sys_142: 0.0 - art_sys_143: 4.74692605e-26 - art_sys_144: 2.40777734e-25 - art_sys_145: 8.86460562e-26 - art_sys_146: 2.55348332e-32 - art_sys_147: 1.96776074e-33 - art_sys_148: -2.26340022e-33 - art_sys_149: 2.65924259e-32 - art_sys_150: -2.90519049e-28 - art_sys_151: -1.49455876e-25 - art_sys_152: 4.01854411e-23 - art_sys_153: -3.78604378e-21 - art_sys_154: 1.43599626e-20 - art_sys_155: 9.10600566e-20 - art_sys_156: -1.39999885e-20 - art_sys_157: -1.46464347e-21 + art_sys_87: 7.72169181e-31 + art_sys_88: -1.57593356e-30 + art_sys_89: -2.50460910e-11 + art_sys_90: -4.81914994e-29 + art_sys_91: 4.40088619e-30 + art_sys_92: 8.64467966e-11 + art_sys_93: 5.77653768e-11 + art_sys_94: 2.44459030e-29 + art_sys_95: 6.44886468e-30 + art_sys_96: -2.93849918e-29 + art_sys_97: -2.97171566e-29 + art_sys_98: 9.26747585e-29 + art_sys_99: 1.80573740e-29 + art_sys_100: 6.17197685e-29 + art_sys_101: 2.47618441e-29 + art_sys_102: -1.17681366e-29 + art_sys_103: -2.44285442e-30 + art_sys_104: -2.80178572e-29 + art_sys_105: 2.67366900e-29 + art_sys_106: 2.12194561e-29 + art_sys_107: -3.10757459e-29 + art_sys_108: 8.36888385e-30 + art_sys_109: -2.82327235e-29 + art_sys_110: -5.09888530e-30 + art_sys_111: -6.96252909e-30 + art_sys_112: 1.59285293e-29 + art_sys_113: -6.91834448e-30 + art_sys_114: -2.08783566e-30 + art_sys_115: -8.84771784e-30 + art_sys_116: -2.65932147e-29 + art_sys_117: 1.33065798e-29 + art_sys_118: -8.80241653e-30 + art_sys_119: 7.83456456e-31 + art_sys_120: 1.39699333e-29 + art_sys_121: 7.65268192e-30 + art_sys_122: 5.51377432e-30 + art_sys_123: 1.23617981e-29 + art_sys_124: -3.76638923e-30 + art_sys_125: 2.12714749e-30 + art_sys_126: -4.96058492e-30 + art_sys_127: -5.08115616e-30 + art_sys_128: 1.67643123e-30 + art_sys_129: -6.42854711e-30 + art_sys_130: -6.98751571e-30 + art_sys_131: -3.55264298e-29 + art_sys_132: 4.64425852e-30 + art_sys_133: -1.51195009e-30 + art_sys_134: 3.03734521e-30 + art_sys_135: -5.75332192e-31 + art_sys_136: -8.64024671e-26 + art_sys_137: 8.85116767e-31 + art_sys_138: 2.57312375e-31 + art_sys_139: 5.05962749e-32 + art_sys_140: -1.18973575e-22 + art_sys_141: -1.28190340e-30 + art_sys_142: -1.59012656e-30 + art_sys_143: 1.13317941e-30 + art_sys_144: 4.53994397e-21 + art_sys_145: -2.02359427e-30 + art_sys_146: 6.10813057e-28 + art_sys_147: -7.82202271e-22 + art_sys_148: -5.94480996e-21 + art_sys_149: -6.58068625e-28 + art_sys_150: 1.21728470e-25 + art_sys_151: 1.05962790e-24 + art_sys_152: 3.23069835e-20 + art_sys_153: -1.25850648e-24 + art_sys_154: 1.77990126e-31 + art_sys_155: -1.41031761e-20 + art_sys_156: 0.0 + art_sys_157: 1.28095750e-25 art_sys_158: 0.0 - art_sys_159: 6.59107817e-24 - art_sys_160: 6.59107817e-24 - art_sys_161: 4.85987102e-22 - art_sys_162: 5.31586306e-14 - art_sys_163: -0.0 - art_sys_164: -4.48228136e-15 - art_sys_165: 2.50460910e-11 - art_sys_166: 8.64467966e-11 - art_sys_167: -5.77653768e-11 - art_sys_168: -1.07194052e-09 - art_sys_169: 8.16774315e-10 - art_sys_170: 2.41879631e-09 + art_sys_159: -6.43815837e-25 + art_sys_160: -4.54089721e-21 + art_sys_161: -6.51494413e-24 + art_sys_162: -6.51494413e-24 + art_sys_163: 4.07189168e-22 + art_sys_164: 4.07189168e-22 + art_sys_165: 5.31586306e-14 + art_sys_166: 4.48228136e-15 + art_sys_167: 0.0 + art_sys_168: 1.07194052e-09 + art_sys_169: -8.16774315e-10 + art_sys_170: -2.41879631e-09 art_sys_171: -1.35541824e-07 art_sys_172: 2.16672056e-07 - art_sys_173: -1.00066865e-07 - art_sys_174: 5.90891307e-10 - art_sys_175: -5.60925330e-06 - art_sys_176: -9.49007874e-06 - art_sys_177: -2.58820103e-05 - art_sys_178: -3.96582467e-05 - art_sys_179: 9.93104835e-05 - art_sys_180: -1.20583780e-05 - art_sys_181: -6.08325269e-06 - art_sys_182: -8.30447847e-07 - art_sys_183: -1.78645898e-07 - art_sys_184: 1.46879142e-08 - art_sys_185: -8.71848270e-12 + art_sys_173: 1.00066865e-07 + art_sys_174: 5.60925330e-06 + art_sys_175: 9.49007874e-06 + art_sys_176: 2.58820103e-05 + art_sys_177: 9.93104835e-05 + art_sys_178: -1.20583780e-05 + art_sys_179: -5.90891307e-10 + art_sys_180: -8.71848270e-12 + art_sys_181: -3.96582467e-05 + art_sys_182: -6.08325269e-06 + art_sys_183: 8.30447847e-07 + art_sys_184: -1.78645898e-07 + art_sys_185: -1.46879142e-08 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -50355,127 +50355,127 @@ bins: art_sys_62: 0.0 art_sys_63: 0.0 art_sys_64: 0.0 - art_sys_65: -3.09779143e-271 - art_sys_66: -9.54023743e-196 - art_sys_67: -2.56776268e-153 - art_sys_68: -7.17742227e-143 - art_sys_69: 1.35787165e-150 - art_sys_70: -6.76893742e-149 - art_sys_71: -6.93337088e-143 - art_sys_72: 2.62661753e-130 - art_sys_73: -1.71044806e-118 - art_sys_74: -1.01146886e-120 - art_sys_75: -4.76139677e-49 - art_sys_76: 7.05485994e-20 + art_sys_65: 0.0 + art_sys_66: 0.0 + art_sys_67: 0.0 + art_sys_68: 0.0 + art_sys_69: 0.0 + art_sys_70: 0.0 + art_sys_71: 0.0 + art_sys_72: 6.12024501e-210 + art_sys_73: -3.79355011e-201 + art_sys_74: -1.18255062e-202 + art_sys_75: -5.80865613e-87 + art_sys_76: -7.05485994e-20 art_sys_77: -2.03420626e-18 art_sys_78: 9.28789434e-18 - art_sys_79: 2.12492936e-37 - art_sys_80: -1.64305418e-38 - art_sys_81: -7.35012951e-19 - art_sys_82: -1.87522118e-15 - art_sys_83: 1.41718951e-14 - art_sys_84: -6.25885452e-33 + art_sys_79: -2.70909303e-37 + art_sys_80: -7.35012951e-19 + art_sys_81: -1.48058548e-37 + art_sys_82: -3.82403363e-38 + art_sys_83: 1.87522118e-15 + art_sys_84: -1.41718951e-14 art_sys_85: -4.53663004e-14 art_sys_86: -6.69936006e-14 - art_sys_87: 1.19612516e-31 - art_sys_88: 3.22781751e-32 - art_sys_89: 2.70340484e-33 - art_sys_90: -8.92268473e-33 - art_sys_91: 1.54952218e-33 - art_sys_92: -7.11195606e-33 - art_sys_93: -7.51284351e-33 - art_sys_94: 2.55921395e-33 - art_sys_95: -4.43214547e-33 - art_sys_96: 1.79615733e-32 - art_sys_97: 3.95077921e-34 - art_sys_98: -4.66875373e-33 - art_sys_99: -3.89173291e-34 - art_sys_100: -3.45326133e-34 - art_sys_101: -3.85297046e-33 - art_sys_102: 7.48958574e-33 - art_sys_103: -1.78815564e-33 - art_sys_104: 3.96852645e-34 - art_sys_105: -3.94737607e-33 - art_sys_106: 1.35631520e-33 - art_sys_107: -1.14780673e-33 - art_sys_108: 2.17840595e-33 - art_sys_109: 9.83421092e-34 - art_sys_110: -2.99387456e-33 - art_sys_111: -2.40887846e-34 - art_sys_112: 2.05663594e-34 - art_sys_113: -1.01788686e-33 - art_sys_114: 8.00214072e-34 - art_sys_115: 3.73101611e-34 - art_sys_116: 7.82540387e-34 - art_sys_117: 8.84069032e-34 - art_sys_118: 8.02099044e-35 - art_sys_119: -1.46117447e-33 - art_sys_120: -5.76117108e-35 - art_sys_121: -1.81486254e-34 - art_sys_122: -7.44736774e-36 - art_sys_123: 3.76057357e-34 - art_sys_124: 3.32262825e-35 - art_sys_125: -3.17207254e-35 - art_sys_126: -3.06087602e-35 - art_sys_127: -2.25198699e-34 - art_sys_128: 6.50434975e-34 - art_sys_129: -1.44940638e-34 - art_sys_130: -2.99004157e-34 - art_sys_131: -1.51153923e-34 - art_sys_132: -6.58825248e-35 - art_sys_133: 1.63231823e-36 - art_sys_134: -2.02627311e-33 - art_sys_135: -6.66637630e-35 - art_sys_136: 5.93181053e-32 - art_sys_137: 5.15757063e-32 - art_sys_138: -1.77504394e-28 - art_sys_139: 5.68300674e-26 - art_sys_140: -2.02452277e-35 - art_sys_141: -2.41297430e-25 - art_sys_142: 0.0 - art_sys_143: 8.03549494e-26 - art_sys_144: 4.07343750e-25 - art_sys_145: 1.50651426e-25 - art_sys_146: 2.68453764e-33 - art_sys_147: 2.22680242e-34 - art_sys_148: -1.99121774e-34 - art_sys_149: 5.42698226e-32 - art_sys_150: -1.24075013e-28 - art_sys_151: -7.87596768e-26 - art_sys_152: 5.37266122e-23 - art_sys_153: -1.59162522e-21 - art_sys_154: -1.01932633e-20 - art_sys_155: -3.67872779e-20 - art_sys_156: 5.21376957e-21 - art_sys_157: 1.51470960e-21 - art_sys_158: -0.0 - art_sys_159: 1.13490393e-23 - art_sys_160: 1.13490393e-23 - art_sys_161: -3.68563361e-22 - art_sys_162: -1.38154194e-13 - art_sys_163: 0.0 - art_sys_164: 1.32439370e-14 - art_sys_165: -2.05112942e-12 - art_sys_166: -4.40390859e-12 - art_sys_167: 9.52340230e-12 - art_sys_168: 4.44785513e-10 - art_sys_169: 3.09873485e-10 - art_sys_170: -3.51394825e-09 + art_sys_87: 8.59211259e-32 + art_sys_88: 1.71444199e-31 + art_sys_89: 2.05112942e-12 + art_sys_90: 3.98550034e-30 + art_sys_91: -1.43897341e-31 + art_sys_92: -4.40390859e-12 + art_sys_93: -9.52340230e-12 + art_sys_94: -2.84873393e-30 + art_sys_95: 3.49623331e-30 + art_sys_96: 4.23576613e-30 + art_sys_97: 4.52958299e-30 + art_sys_98: -1.17390311e-29 + art_sys_99: -4.45007808e-30 + art_sys_100: -5.41407575e-30 + art_sys_101: -3.08289929e-30 + art_sys_102: 1.22264214e-30 + art_sys_103: 1.09504262e-30 + art_sys_104: 3.48524313e-30 + art_sys_105: -3.38354425e-30 + art_sys_106: -2.37243948e-30 + art_sys_107: 1.19053860e-30 + art_sys_108: -1.14389433e-30 + art_sys_109: 4.79401582e-30 + art_sys_110: -4.96908095e-31 + art_sys_111: 1.76887160e-31 + art_sys_112: -2.63322955e-30 + art_sys_113: 5.27651822e-31 + art_sys_114: -2.19315366e-30 + art_sys_115: 3.81880063e-31 + art_sys_116: 2.90285401e-30 + art_sys_117: -1.21586617e-30 + art_sys_118: 9.39195208e-31 + art_sys_119: -1.22553370e-31 + art_sys_120: -1.22697845e-30 + art_sys_121: -3.16737664e-31 + art_sys_122: 1.47764583e-31 + art_sys_123: -1.22229482e-30 + art_sys_124: 9.74845249e-31 + art_sys_125: -1.14004993e-31 + art_sys_126: 2.49063340e-31 + art_sys_127: 3.03141061e-31 + art_sys_128: -2.92803347e-31 + art_sys_129: 1.29979319e-31 + art_sys_130: 7.34614347e-31 + art_sys_131: 2.15621164e-29 + art_sys_132: -5.01521920e-31 + art_sys_133: 3.04233392e-31 + art_sys_134: -4.30657469e-31 + art_sys_135: 1.66711645e-31 + art_sys_136: 1.91026302e-27 + art_sys_137: -1.31797573e-31 + art_sys_138: -9.70222928e-32 + art_sys_139: -3.56954754e-33 + art_sys_140: -1.53374192e-22 + art_sys_141: 6.62083686e-32 + art_sys_142: 2.03761138e-31 + art_sys_143: 8.68825429e-31 + art_sys_144: -2.12843382e-21 + art_sys_145: 3.66395606e-31 + art_sys_146: 5.77925250e-28 + art_sys_147: -1.59042031e-21 + art_sys_148: 3.02566852e-21 + art_sys_149: -1.34422948e-27 + art_sys_150: 2.50341301e-25 + art_sys_151: 2.41978103e-24 + art_sys_152: -2.34961770e-20 + art_sys_153: -3.01172467e-24 + art_sys_154: -2.59723835e-32 + art_sys_155: 9.46911558e-21 + art_sys_156: 0.0 + art_sys_157: 4.13791309e-25 + art_sys_158: 0.0 + art_sys_159: -4.71374810e-24 + art_sys_160: 2.90894723e-21 + art_sys_161: 5.02438823e-24 + art_sys_162: 5.02438823e-24 + art_sys_163: -4.64872922e-22 + art_sys_164: -4.64872922e-22 + art_sys_165: -1.38154194e-13 + art_sys_166: -1.32439370e-14 + art_sys_167: -0.0 + art_sys_168: -4.44785513e-10 + art_sys_169: -3.09873485e-10 + art_sys_170: 3.51394825e-09 art_sys_171: 8.49803566e-09 art_sys_172: 1.01265580e-07 - art_sys_173: 1.31578849e-07 - art_sys_174: -1.78384146e-09 - art_sys_175: -3.38681443e-07 - art_sys_176: 3.33993778e-06 - art_sys_177: -4.87642831e-06 - art_sys_178: 1.75284873e-05 - art_sys_179: 2.40093284e-05 - art_sys_180: 6.66461828e-05 - art_sys_181: 6.44617854e-06 - art_sys_182: 3.20841382e-06 - art_sys_183: 4.54733327e-07 - art_sys_184: -6.69527873e-08 - art_sys_185: 8.99477014e-12 + art_sys_173: -1.31578849e-07 + art_sys_174: 3.38681443e-07 + art_sys_175: -3.33993778e-06 + art_sys_176: 4.87642831e-06 + art_sys_177: 2.40093284e-05 + art_sys_178: 6.66461828e-05 + art_sys_179: 1.78384146e-09 + art_sys_180: 8.99477014e-12 + art_sys_181: 1.75284873e-05 + art_sys_182: 6.44617854e-06 + art_sys_183: -3.20841382e-06 + art_sys_184: 4.54733327e-07 + art_sys_185: 6.69527873e-08 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -50646,127 +50646,127 @@ bins: art_sys_62: 0.0 art_sys_63: 0.0 art_sys_64: 0.0 - art_sys_65: -2.77729662e-273 - art_sys_66: -8.55592133e-198 - art_sys_67: -2.30283323e-155 - art_sys_68: -6.43689026e-145 - art_sys_69: 1.21777297e-152 - art_sys_70: -6.07055091e-151 - art_sys_71: -6.21801891e-145 - art_sys_72: 2.35561572e-132 - art_sys_73: -1.53397223e-120 - art_sys_74: -9.07110354e-123 - art_sys_75: -4.27013868e-51 - art_sys_76: 6.32697332e-22 + art_sys_65: 0.0 + art_sys_66: 0.0 + art_sys_67: 0.0 + art_sys_68: 0.0 + art_sys_69: 0.0 + art_sys_70: 0.0 + art_sys_71: 0.0 + art_sys_72: 5.48837178e-212 + art_sys_73: -3.40189214e-203 + art_sys_74: -1.06046040e-204 + art_sys_75: -5.20934684e-89 + art_sys_76: -6.32697332e-22 art_sys_77: -8.66572271e-20 art_sys_78: 4.24065718e-19 - art_sys_79: 9.79459698e-39 - art_sys_80: -1.03026521e-39 - art_sys_81: 2.51834783e-19 - art_sys_82: -1.05031275e-16 - art_sys_83: 5.30665500e-16 - art_sys_84: -2.45079511e-34 + art_sys_79: -2.05735165e-38 + art_sys_80: 2.51834783e-19 + art_sys_81: 6.23061112e-38 + art_sys_82: -1.72774494e-39 + art_sys_83: 1.05031275e-16 + art_sys_84: -5.30665500e-16 art_sys_85: -2.10518437e-15 art_sys_86: -3.15751051e-15 - art_sys_87: 5.64174612e-33 - art_sys_88: 1.53776627e-33 - art_sys_89: 1.36623473e-34 - art_sys_90: -4.17331571e-34 - art_sys_91: 7.86682228e-35 - art_sys_92: -3.31427791e-34 - art_sys_93: -3.52080867e-34 - art_sys_94: 1.17530231e-34 - art_sys_95: -2.14055864e-34 - art_sys_96: 8.26804097e-34 - art_sys_97: 1.66381673e-35 - art_sys_98: -2.20542648e-34 - art_sys_99: -1.73727098e-35 - art_sys_100: -1.52756521e-35 - art_sys_101: -1.82045097e-34 - art_sys_102: 3.49603766e-34 - art_sys_103: -9.79888993e-35 - art_sys_104: 1.96163600e-35 - art_sys_105: -1.84707764e-34 - art_sys_106: 6.40117031e-35 - art_sys_107: -5.42160886e-35 - art_sys_108: 1.02725277e-34 - art_sys_109: 4.57881569e-35 - art_sys_110: -1.43092942e-34 - art_sys_111: -4.59148523e-36 - art_sys_112: 9.40638729e-36 - art_sys_113: -4.76312711e-35 - art_sys_114: 3.73235992e-35 - art_sys_115: 1.70502647e-35 - art_sys_116: 3.66479518e-35 - art_sys_117: 4.43916305e-35 - art_sys_118: 3.67332289e-36 - art_sys_119: -7.80164339e-35 - art_sys_120: -2.59378089e-36 - art_sys_121: -8.61255902e-36 - art_sys_122: -5.35167575e-37 - art_sys_123: 1.78470001e-35 - art_sys_124: 1.37015156e-36 - art_sys_125: -1.56408462e-36 - art_sys_126: -1.77334027e-36 - art_sys_127: -1.05005418e-35 - art_sys_128: 3.02508425e-35 - art_sys_129: -6.65343421e-36 - art_sys_130: -1.22904063e-35 - art_sys_131: 1.92594434e-35 - art_sys_132: -3.11037832e-36 - art_sys_133: 4.18691824e-37 - art_sys_134: 7.22881041e-34 - art_sys_135: -1.24663393e-36 - art_sys_136: -2.09490858e-32 - art_sys_137: 7.28652711e-33 - art_sys_138: -2.58575422e-29 - art_sys_139: 8.00285575e-27 - art_sys_140: -6.15264993e-36 - art_sys_141: -2.94181768e-26 - art_sys_142: 0.0 - art_sys_143: 1.06098174e-26 - art_sys_144: 5.37797189e-26 - art_sys_145: 2.01683230e-26 - art_sys_146: 1.11965610e-34 - art_sys_147: 1.10188215e-35 - art_sys_148: -8.16324699e-36 - art_sys_149: -5.24229892e-31 - art_sys_150: -6.24770290e-30 - art_sys_151: -7.06873390e-27 - art_sys_152: 5.87610172e-24 - art_sys_153: 1.51508802e-22 - art_sys_154: 7.25472448e-21 - art_sys_155: 2.41471700e-20 - art_sys_156: -1.71494873e-20 - art_sys_157: 2.28381082e-21 + art_sys_87: 4.14175189e-33 + art_sys_88: 1.84321014e-32 + art_sys_89: 2.37541087e-13 + art_sys_90: 4.59545081e-31 + art_sys_91: -6.77819704e-32 + art_sys_92: -1.37609316e-12 + art_sys_93: -1.00532884e-13 + art_sys_94: 1.56177635e-31 + art_sys_95: -6.02864500e-31 + art_sys_96: 1.13856326e-31 + art_sys_97: 1.30238180e-31 + art_sys_98: -5.95439441e-31 + art_sys_99: 1.66351537e-31 + art_sys_100: -6.94214858e-31 + art_sys_101: -1.61136725e-31 + art_sys_102: 1.56606439e-31 + art_sys_103: -9.11509905e-32 + art_sys_104: 1.77477126e-31 + art_sys_105: -1.82328356e-31 + art_sys_106: 1.50301884e-32 + art_sys_107: 5.60004280e-31 + art_sys_108: -1.50457498e-31 + art_sys_109: 3.07730528e-32 + art_sys_110: 1.87106715e-31 + art_sys_111: 1.03191139e-31 + art_sys_112: -2.80812808e-32 + art_sys_113: 8.98040531e-32 + art_sys_114: 3.10897791e-31 + art_sys_115: 1.50133353e-31 + art_sys_116: 2.31536957e-31 + art_sys_117: -1.69943475e-31 + art_sys_118: 8.01477552e-32 + art_sys_119: 8.15389738e-34 + art_sys_120: -1.55357855e-31 + art_sys_121: -1.29322199e-31 + art_sys_122: -1.36802953e-31 + art_sys_123: -1.23007861e-31 + art_sys_124: -3.63710518e-32 + art_sys_125: -3.50502042e-32 + art_sys_126: 7.77460810e-32 + art_sys_127: 7.56232595e-32 + art_sys_128: 7.89777283e-34 + art_sys_129: 1.32319414e-31 + art_sys_130: 7.13120858e-32 + art_sys_131: 8.19574273e-31 + art_sys_132: -4.04534826e-32 + art_sys_133: -4.34762851e-33 + art_sys_134: -1.28002279e-32 + art_sys_135: -7.95115232e-33 + art_sys_136: 6.30248527e-28 + art_sys_137: -1.03879199e-33 + art_sys_138: 6.18567673e-33 + art_sys_139: -7.82280129e-32 + art_sys_140: -1.06641221e-23 + art_sys_141: 2.02382518e-32 + art_sys_142: 9.98375589e-33 + art_sys_143: 1.51025538e-31 + art_sys_144: -1.06059704e-21 + art_sys_145: 3.32842237e-32 + art_sys_146: 7.38738656e-29 + art_sys_147: -4.77199689e-22 + art_sys_148: -2.35373931e-21 + art_sys_149: -1.62496887e-28 + art_sys_150: 3.02530373e-26 + art_sys_151: 2.92884626e-25 + art_sys_152: 1.53476862e-20 + art_sys_153: -3.71681301e-25 + art_sys_154: -5.98103166e-34 + art_sys_155: -5.19735426e-21 + art_sys_156: 0.0 + art_sys_157: 6.29221238e-26 art_sys_158: 0.0 - art_sys_159: 1.44845346e-24 - art_sys_160: 1.44845346e-24 - art_sys_161: 7.07002994e-23 - art_sys_162: 7.40067797e-13 - art_sys_163: -0.0 - art_sys_164: -5.17306702e-14 - art_sys_165: -2.37541087e-13 - art_sys_166: -1.37609316e-12 - art_sys_167: 1.00532884e-13 - art_sys_168: 5.40817654e-11 - art_sys_169: -1.71803021e-11 - art_sys_170: -3.41049313e-10 + art_sys_159: -7.94410163e-25 + art_sys_160: -2.00661284e-21 + art_sys_161: 1.79888455e-24 + art_sys_162: 1.79888455e-24 + art_sys_163: 2.82876966e-22 + art_sys_164: 2.82876966e-22 + art_sys_165: 7.40067797e-13 + art_sys_166: 5.17306702e-14 + art_sys_167: 0.0 + art_sys_168: -5.40817654e-11 + art_sys_169: 1.71803021e-11 + art_sys_170: 3.41049313e-10 art_sys_171: 1.82750865e-09 art_sys_172: 7.82362843e-09 - art_sys_173: 1.19128919e-08 - art_sys_174: 5.46893852e-09 - art_sys_175: 2.38318048e-07 - art_sys_176: 3.86162265e-07 - art_sys_177: 1.85374723e-06 - art_sys_178: 2.15308341e-06 - art_sys_179: -1.11809832e-05 - art_sys_180: 1.31646391e-05 - art_sys_181: -4.32352603e-05 - art_sys_182: -3.53972035e-06 - art_sys_183: -1.92044125e-06 - art_sys_184: 8.08989780e-08 - art_sys_185: -2.70906361e-11 + art_sys_173: -1.19128919e-08 + art_sys_174: -2.38318048e-07 + art_sys_175: -3.86162265e-07 + art_sys_176: -1.85374723e-06 + art_sys_177: -1.11809832e-05 + art_sys_178: 1.31646391e-05 + art_sys_179: -5.46893852e-09 + art_sys_180: -2.70906361e-11 + art_sys_181: 2.15308341e-06 + art_sys_182: -4.32352603e-05 + art_sys_183: 3.53972035e-06 + art_sys_184: -1.92044125e-06 + art_sys_185: -8.08989780e-08 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -50937,127 +50937,127 @@ bins: art_sys_62: 0.0 art_sys_63: 0.0 art_sys_64: 0.0 - art_sys_65: 2.14784895e-274 - art_sys_66: 6.61295204e-199 - art_sys_67: 1.77988140e-156 - art_sys_68: 4.97513284e-146 - art_sys_69: -9.41228146e-154 - art_sys_70: 4.69198572e-152 - art_sys_71: 4.80596513e-146 - art_sys_72: -1.82067749e-133 - art_sys_73: 1.18562152e-121 - art_sys_74: 7.01114099e-124 - art_sys_75: 3.30043023e-52 - art_sys_76: -4.89017701e-23 + art_sys_65: 0.0 + art_sys_66: 0.0 + art_sys_67: 0.0 + art_sys_68: 0.0 + art_sys_69: 0.0 + art_sys_70: 0.0 + art_sys_71: 0.0 + art_sys_72: -4.24260496e-213 + art_sys_73: 2.62972062e-204 + art_sys_74: 8.19753966e-206 + art_sys_75: 4.02635303e-90 + art_sys_76: 4.89017701e-23 art_sys_77: -3.02785462e-21 art_sys_78: 1.60304190e-20 - art_sys_79: 3.73941284e-40 - art_sys_80: -5.39748284e-41 - art_sys_81: 2.48508140e-20 - art_sys_82: -3.43402357e-18 - art_sys_83: 1.47218484e-17 - art_sys_84: -6.96406973e-36 + art_sys_79: -1.15661600e-39 + art_sys_80: 2.48508140e-20 + art_sys_81: 6.06255217e-39 + art_sys_82: -6.42740825e-41 + art_sys_83: 3.43402357e-18 + art_sys_84: -1.47218484e-17 art_sys_85: -6.30703000e-17 art_sys_86: -7.99229009e-17 - art_sys_87: 1.42328844e-34 - art_sys_88: 3.77756264e-35 - art_sys_89: 3.26297989e-36 - art_sys_90: -1.15150761e-35 - art_sys_91: 1.83551780e-36 - art_sys_92: -8.89547200e-36 - art_sys_93: -9.55129126e-36 - art_sys_94: 3.08437471e-36 - art_sys_95: -5.78238612e-36 - art_sys_96: 2.21897746e-35 - art_sys_97: 3.03579692e-37 - art_sys_98: -5.50776187e-36 - art_sys_99: -5.11515251e-37 - art_sys_100: -4.26051996e-37 - art_sys_101: -4.71348065e-36 - art_sys_102: 8.94025819e-36 - art_sys_103: -2.03143973e-36 - art_sys_104: 5.42508169e-37 - art_sys_105: -4.72830157e-36 - art_sys_106: 1.71512896e-36 - art_sys_107: -1.40399914e-36 - art_sys_108: 2.57089432e-36 - art_sys_109: 9.56490134e-37 - art_sys_110: -3.38640912e-36 - art_sys_111: 6.42350192e-38 - art_sys_112: 3.29154609e-37 - art_sys_113: -1.32865957e-36 - art_sys_114: 9.83540540e-37 - art_sys_115: 4.42901009e-37 - art_sys_116: 9.98230194e-37 - art_sys_117: 1.03532174e-36 - art_sys_118: 1.02382472e-37 - art_sys_119: -1.66828397e-36 - art_sys_120: -8.51808759e-38 - art_sys_121: -2.27060635e-37 - art_sys_122: 7.45331776e-40 - art_sys_123: 4.55241874e-37 - art_sys_124: 3.82157980e-38 - art_sys_125: -4.48285719e-38 - art_sys_126: -3.48816709e-38 - art_sys_127: -2.70670640e-37 - art_sys_128: 8.02226213e-37 - art_sys_129: -1.69777149e-37 - art_sys_130: -4.18797668e-36 - art_sys_131: -1.59802870e-34 - art_sys_132: -7.49631156e-38 - art_sys_133: -1.01526716e-36 - art_sys_134: -5.56563514e-33 - art_sys_135: -1.44381803e-35 - art_sys_136: 2.28719598e-31 - art_sys_137: -1.12765400e-34 - art_sys_138: 8.82871148e-30 - art_sys_139: -4.87721315e-27 - art_sys_140: 3.06242442e-36 - art_sys_141: 2.20858279e-26 - art_sys_142: -0.0 - art_sys_143: -7.91109121e-27 - art_sys_144: -4.01304381e-26 - art_sys_145: -1.44696371e-26 - art_sys_146: 1.84816243e-36 - art_sys_147: 2.83573377e-37 - art_sys_148: -6.94149627e-36 - art_sys_149: 2.71356776e-30 - art_sys_150: -1.72479761e-29 - art_sys_151: 1.91895251e-27 - art_sys_152: -5.18811522e-24 - art_sys_153: 1.89413345e-22 - art_sys_154: -6.39996245e-21 - art_sys_155: -2.06421929e-20 - art_sys_156: 5.05101055e-21 - art_sys_157: 8.59451913e-22 + art_sys_87: 9.97070509e-35 + art_sys_88: 7.39017280e-34 + art_sys_89: 9.64950578e-15 + art_sys_90: 1.83337371e-32 + art_sys_91: -4.86193952e-33 + art_sys_92: -1.00314439e-13 + art_sys_93: 4.64327510e-14 + art_sys_94: 3.87423953e-32 + art_sys_95: -7.55088403e-32 + art_sys_96: -1.43302182e-32 + art_sys_97: -1.45180981e-32 + art_sys_98: 1.39979427e-32 + art_sys_99: 4.12564759e-32 + art_sys_100: -3.18813550e-32 + art_sys_101: 3.25060289e-33 + art_sys_102: 7.84691244e-33 + art_sys_103: -1.47645484e-32 + art_sys_104: -4.13958409e-33 + art_sys_105: 3.09180646e-33 + art_sys_106: 6.73764243e-33 + art_sys_107: 4.64415697e-32 + art_sys_108: -1.30271149e-32 + art_sys_109: -2.51861611e-32 + art_sys_110: 2.00416570e-32 + art_sys_111: 5.87077753e-33 + art_sys_112: 1.28114549e-32 + art_sys_113: 4.85749838e-33 + art_sys_114: 4.06093872e-32 + art_sys_115: 1.15218782e-32 + art_sys_116: 4.25417685e-33 + art_sys_117: -8.45014842e-33 + art_sys_118: 1.85560468e-33 + art_sys_119: 7.97495969e-34 + art_sys_120: -6.95694381e-33 + art_sys_121: -1.01236335e-32 + art_sys_122: -1.34144899e-32 + art_sys_123: -4.12442510e-33 + art_sys_124: -9.02778186e-33 + art_sys_125: -2.50107650e-33 + art_sys_126: 5.66204806e-33 + art_sys_127: 5.19358956e-33 + art_sys_128: 1.78622812e-33 + art_sys_129: -3.16472946e-32 + art_sys_130: 1.34839771e-33 + art_sys_131: -1.11908838e-31 + art_sys_132: -7.73484682e-34 + art_sys_133: -2.24364443e-33 + art_sys_134: 1.34654506e-33 + art_sys_135: -1.70244149e-33 + art_sys_136: 4.34402355e-28 + art_sys_137: -3.84887136e-33 + art_sys_138: 1.13161805e-33 + art_sys_139: 2.34665760e-31 + art_sys_140: 1.37491171e-23 + art_sys_141: 3.52810167e-33 + art_sys_142: -2.85859558e-34 + art_sys_143: 2.38754373e-31 + art_sys_144: 2.67672252e-22 + art_sys_145: -1.11620320e-32 + art_sys_146: -4.75816258e-29 + art_sys_147: 1.68348365e-22 + art_sys_148: 1.39027017e-21 + art_sys_149: 1.28523247e-28 + art_sys_150: -2.39159833e-26 + art_sys_151: -2.28059721e-25 + art_sys_152: -1.03204164e-20 + art_sys_153: 2.84367719e-25 + art_sys_154: 5.99119316e-35 + art_sys_155: 6.05637211e-21 + art_sys_156: -0.0 + art_sys_157: -4.48474262e-26 art_sys_158: -0.0 - art_sys_159: -1.09484507e-24 - art_sys_160: -1.09484507e-24 - art_sys_161: -1.62709827e-22 - art_sys_162: -6.73456121e-13 - art_sys_163: 0.0 - art_sys_164: 1.55456698e-13 - art_sys_165: -9.64950578e-15 - art_sys_166: -1.00314439e-13 - art_sys_167: -4.64327510e-14 - art_sys_168: 2.57706171e-12 - art_sys_169: -2.08729600e-12 - art_sys_170: -1.37012707e-11 + art_sys_159: 4.52893922e-25 + art_sys_160: 3.25952535e-21 + art_sys_161: -5.84784675e-25 + art_sys_162: -5.84784675e-25 + art_sys_163: -1.40711044e-22 + art_sys_164: -1.40711044e-22 + art_sys_165: -6.73456121e-13 + art_sys_166: -1.55456698e-13 + art_sys_167: -0.0 + art_sys_168: -2.57706171e-12 + art_sys_169: 2.08729600e-12 + art_sys_170: 1.37012707e-11 art_sys_171: 2.29484171e-11 art_sys_172: 1.80653894e-10 - art_sys_173: -3.26091276e-10 - art_sys_174: -2.35600052e-08 - art_sys_175: 8.68384866e-09 - art_sys_176: -1.32393082e-07 - art_sys_177: 1.57306862e-07 - art_sys_178: -1.07286325e-06 - art_sys_179: -1.04739491e-06 - art_sys_180: -6.64654779e-06 - art_sys_181: -7.23908953e-06 - art_sys_182: 2.69989030e-05 - art_sys_183: 2.13951448e-06 - art_sys_184: -7.13668928e-07 - art_sys_185: 5.79181783e-10 + art_sys_173: 3.26091276e-10 + art_sys_174: -8.68384866e-09 + art_sys_175: 1.32393082e-07 + art_sys_176: -1.57306862e-07 + art_sys_177: -1.04739491e-06 + art_sys_178: -6.64654779e-06 + art_sys_179: 2.35600052e-08 + art_sys_180: 5.79181783e-10 + art_sys_181: -1.07286325e-06 + art_sys_182: -7.23908953e-06 + art_sys_183: -2.69989030e-05 + art_sys_184: 2.13951448e-06 + art_sys_185: 7.13668928e-07 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -51228,127 +51228,127 @@ bins: art_sys_62: 0.0 art_sys_63: 0.0 art_sys_64: 0.0 - art_sys_65: 1.28402125e-275 - art_sys_66: 3.95375502e-200 - art_sys_67: 1.06415638e-157 - art_sys_68: 2.97453489e-147 - art_sys_69: -5.62741951e-155 - art_sys_70: 2.80524675e-153 - art_sys_71: 2.87339282e-147 - art_sys_72: -1.08854756e-134 - art_sys_73: 7.08859983e-123 - art_sys_74: 4.19182445e-125 - art_sys_75: 1.97326286e-53 - art_sys_76: -2.92374146e-24 + art_sys_65: 0.0 + art_sys_66: 0.0 + art_sys_67: 0.0 + art_sys_68: 0.0 + art_sys_69: 0.0 + art_sys_70: 0.0 + art_sys_71: 0.0 + art_sys_72: -2.53650660e-214 + art_sys_73: 1.57221890e-205 + art_sys_74: 4.90102511e-207 + art_sys_75: 2.40727795e-91 + art_sys_76: 2.92374146e-24 art_sys_77: -7.54411463e-23 art_sys_78: 4.16499482e-22 - art_sys_79: 9.76377097e-42 - art_sys_80: -1.54730260e-42 - art_sys_81: 7.93468082e-22 - art_sys_82: -9.89137205e-20 - art_sys_83: 4.58101166e-19 - art_sys_84: -2.14294248e-37 + art_sys_79: -1.66898187e-41 + art_sys_80: 7.93468082e-22 + art_sys_81: 1.93279507e-40 + art_sys_82: -1.66044240e-42 + art_sys_83: 9.89137205e-20 + art_sys_84: -4.58101166e-19 art_sys_85: -1.85322941e-18 art_sys_86: -2.02118847e-18 - art_sys_87: 3.57965656e-36 - art_sys_88: 9.20217068e-37 - art_sys_89: 8.01993256e-38 - art_sys_90: -3.16376052e-37 - art_sys_91: 4.03167728e-38 - art_sys_92: -2.39136030e-37 - art_sys_93: -2.58378128e-37 - art_sys_94: 8.19124841e-38 - art_sys_95: -1.53387254e-37 - art_sys_96: 6.01515864e-37 - art_sys_97: 5.50580411e-39 - art_sys_98: -1.37687847e-37 - art_sys_99: -1.49436552e-38 - art_sys_100: -1.21651540e-38 - art_sys_101: -1.21671721e-37 - art_sys_102: 2.26781986e-37 - art_sys_103: -4.93350991e-38 - art_sys_104: 1.45240734e-38 - art_sys_105: -1.21376238e-37 - art_sys_106: 4.57234929e-38 - art_sys_107: -3.62556096e-38 - art_sys_108: 6.42742653e-38 - art_sys_109: 3.38083361e-38 - art_sys_110: -7.90276023e-38 - art_sys_111: -1.13858913e-38 - art_sys_112: 1.07185899e-38 - art_sys_113: -3.69259711e-38 - art_sys_114: 2.59866384e-38 - art_sys_115: 1.21004305e-38 - art_sys_116: 2.70996358e-38 - art_sys_117: 2.30500725e-38 - art_sys_118: 2.89231262e-39 - art_sys_119: -4.29804183e-38 - art_sys_120: -2.71554596e-39 - art_sys_121: -5.94278580e-39 - art_sys_122: 6.78834322e-40 - art_sys_123: 6.96655788e-39 - art_sys_124: 1.07995995e-39 - art_sys_125: -1.21223615e-39 - art_sys_126: -2.34836590e-39 - art_sys_127: -7.16322714e-39 - art_sys_128: 2.16156451e-38 - art_sys_129: -8.59895262e-39 - art_sys_130: 3.68314476e-37 - art_sys_131: 1.11875190e-35 - art_sys_132: -2.04494752e-39 - art_sys_133: 1.05916329e-37 - art_sys_134: 5.70557987e-34 - art_sys_135: 3.60823637e-36 - art_sys_136: -4.98073642e-32 - art_sys_137: -4.73782258e-33 - art_sys_138: 1.15413503e-29 - art_sys_139: -1.67324583e-27 - art_sys_140: -1.20699994e-36 - art_sys_141: 3.59965528e-27 - art_sys_142: -0.0 - art_sys_143: -5.22092385e-28 - art_sys_144: -2.68975779e-27 - art_sys_145: -1.39016351e-27 - art_sys_146: 5.25928654e-38 - art_sys_147: 7.25348808e-39 - art_sys_148: -4.51699843e-36 - art_sys_149: -2.07351360e-30 - art_sys_150: 2.09234348e-29 - art_sys_151: 1.81718991e-28 - art_sys_152: -5.58997372e-26 - art_sys_153: -5.93333907e-23 - art_sys_154: 3.46842370e-21 - art_sys_155: 8.62541649e-21 - art_sys_156: -4.55565271e-21 - art_sys_157: 5.07022796e-22 + art_sys_87: 2.41231407e-36 + art_sys_88: 2.03594186e-35 + art_sys_89: 2.64778072e-16 + art_sys_90: 5.01017569e-34 + art_sys_91: -3.61992638e-34 + art_sys_92: -3.63316941e-15 + art_sys_93: 1.57564314e-15 + art_sys_94: 1.47881795e-33 + art_sys_95: -2.70404079e-33 + art_sys_96: -4.98963619e-34 + art_sys_97: -4.19739075e-34 + art_sys_98: 4.05439824e-34 + art_sys_99: 1.45825054e-33 + art_sys_100: -1.18377373e-33 + art_sys_101: 1.06535023e-34 + art_sys_102: 3.30306215e-34 + art_sys_103: -5.33063348e-34 + art_sys_104: -1.35736485e-34 + art_sys_105: 7.00065660e-35 + art_sys_106: 2.60147777e-34 + art_sys_107: 1.60774507e-33 + art_sys_108: -4.56037077e-34 + art_sys_109: -8.61721929e-34 + art_sys_110: 7.31852608e-34 + art_sys_111: 2.89927782e-34 + art_sys_112: 4.32379870e-34 + art_sys_113: 1.86369202e-34 + art_sys_114: 1.43640626e-33 + art_sys_115: 4.17260350e-34 + art_sys_116: 1.74289663e-34 + art_sys_117: -3.26603674e-34 + art_sys_118: 7.69129139e-35 + art_sys_119: 3.23100480e-35 + art_sys_120: -2.57165181e-34 + art_sys_121: -3.44554123e-34 + art_sys_122: -4.75112768e-34 + art_sys_123: -1.59276245e-34 + art_sys_124: -3.12615059e-34 + art_sys_125: -8.04438388e-35 + art_sys_126: 2.02626910e-34 + art_sys_127: 1.89818177e-34 + art_sys_128: 6.38407980e-35 + art_sys_129: 8.22136680e-32 + art_sys_130: 1.33360577e-34 + art_sys_131: -6.04918841e-31 + art_sys_132: -3.15503648e-35 + art_sys_133: 5.53216486e-35 + art_sys_134: 4.61968747e-35 + art_sys_135: -5.94333382e-35 + art_sys_136: -7.56031941e-30 + art_sys_137: 9.73523877e-33 + art_sys_138: 3.92741021e-35 + art_sys_139: -6.16086803e-31 + art_sys_140: -5.58860746e-26 + art_sys_141: -5.72667804e-33 + art_sys_142: 1.61857832e-35 + art_sys_143: -1.19007093e-30 + art_sys_144: 4.28903206e-23 + art_sys_145: -9.37453302e-33 + art_sys_146: -7.65272066e-29 + art_sys_147: 2.79575964e-24 + art_sys_148: -1.07705503e-21 + art_sys_149: 3.65349770e-30 + art_sys_150: -6.52098548e-28 + art_sys_151: -5.31781477e-27 + art_sys_152: 7.89440342e-21 + art_sys_153: 6.53367522e-27 + art_sys_154: 2.59292849e-36 + art_sys_155: -7.90342014e-21 + art_sys_156: 0.0 + art_sys_157: 1.65062146e-27 art_sys_158: 0.0 - art_sys_159: -7.24614004e-26 - art_sys_160: -7.24614004e-26 - art_sys_161: -2.53553703e-23 - art_sys_162: 1.09961207e-11 - art_sys_163: -0.0 - art_sys_164: -4.79627367e-13 - art_sys_165: -2.64778072e-16 - art_sys_166: -3.63316941e-15 - art_sys_167: -1.57564314e-15 - art_sys_168: 7.30460612e-14 - art_sys_169: 1.79970662e-13 - art_sys_170: -9.23405513e-13 + art_sys_159: 2.27015092e-26 + art_sys_160: -2.14422252e-21 + art_sys_161: -9.72340631e-26 + art_sys_162: -9.72340631e-26 + art_sys_163: 2.34790388e-22 + art_sys_164: 2.34790388e-22 + art_sys_165: 1.09961207e-11 + art_sys_166: 4.79627367e-13 + art_sys_167: 0.0 + art_sys_168: -7.30460612e-14 + art_sys_169: -1.79970662e-13 + art_sys_170: 9.23405513e-13 art_sys_171: -5.70625184e-12 art_sys_172: 4.01215947e-11 - art_sys_173: -2.52354381e-12 - art_sys_174: 3.86288487e-08 - art_sys_175: -5.52382147e-09 - art_sys_176: -9.24961649e-09 - art_sys_177: -6.59557343e-08 - art_sys_178: -4.48322037e-08 - art_sys_179: 6.37622798e-07 - art_sys_180: -3.75827757e-07 - art_sys_181: 4.17407605e-06 - art_sys_182: 3.93774882e-06 - art_sys_183: -1.71243259e-05 - art_sys_184: 3.99126220e-07 - art_sys_185: 2.68038031e-09 + art_sys_173: 2.52354381e-12 + art_sys_174: 5.52382147e-09 + art_sys_175: 9.24961649e-09 + art_sys_176: 6.59557343e-08 + art_sys_177: 6.37622798e-07 + art_sys_178: -3.75827757e-07 + art_sys_179: -3.86288487e-08 + art_sys_180: 2.68038031e-09 + art_sys_181: -4.48322037e-08 + art_sys_182: 4.17407605e-06 + art_sys_183: -3.93774882e-06 + art_sys_184: -1.71243259e-05 + art_sys_185: -3.99126220e-07 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -51519,127 +51519,127 @@ bins: art_sys_62: 0.0 art_sys_63: 0.0 art_sys_64: 0.0 - art_sys_65: 8.69180048e-278 - art_sys_66: 2.67649975e-202 - art_sys_67: 7.20382084e-160 - art_sys_68: 2.01361538e-149 - art_sys_69: -3.80948917e-157 - art_sys_70: 1.89901555e-155 - art_sys_71: 1.94514712e-149 - art_sys_72: -7.36893730e-137 - art_sys_73: 4.79863715e-125 - art_sys_74: 2.83766118e-127 - art_sys_75: 1.33580294e-55 - art_sys_76: -1.97923070e-26 + art_sys_65: 0.0 + art_sys_66: 0.0 + art_sys_67: 0.0 + art_sys_68: 0.0 + art_sys_69: 0.0 + art_sys_70: 0.0 + art_sys_71: 0.0 + art_sys_72: -1.71707271e-216 + art_sys_73: 1.06430402e-207 + art_sys_74: 3.31771912e-209 + art_sys_75: 1.62961003e-93 + art_sys_76: 1.97923070e-26 art_sys_77: -2.00675446e-25 art_sys_78: 9.44407162e-25 - art_sys_79: 2.17009442e-44 - art_sys_80: -1.74199812e-45 - art_sys_81: 5.41726791e-27 - art_sys_82: -9.68698546e-22 - art_sys_83: 3.64914130e-21 - art_sys_84: -1.76000578e-39 + art_sys_79: -4.07137837e-44 + art_sys_80: 5.41726791e-27 + art_sys_81: 4.15117077e-45 + art_sys_82: -3.88028493e-45 + art_sys_83: 9.68698546e-22 + art_sys_84: -3.64914000e-21 art_sys_85: -1.78298191e-20 art_sys_86: -2.79539165e-20 - art_sys_87: 4.94180491e-38 - art_sys_88: 1.37969962e-38 - art_sys_89: 1.26385887e-39 - art_sys_90: -3.61819984e-39 - art_sys_91: 7.45228075e-40 - art_sys_92: -2.87809307e-39 - art_sys_93: -3.06577632e-39 - art_sys_94: 1.01342114e-39 - art_sys_95: -1.91178785e-39 - art_sys_96: 6.94307932e-39 - art_sys_97: 1.40338007e-40 - art_sys_98: -1.95612820e-39 - art_sys_99: -1.87096402e-40 - art_sys_100: -1.26142391e-40 - art_sys_101: -1.60862409e-39 - art_sys_102: 3.13276919e-39 - art_sys_103: -7.28717825e-40 - art_sys_104: 1.77678414e-40 - art_sys_105: -1.62215445e-39 - art_sys_106: 5.61738592e-40 - art_sys_107: -4.78999365e-40 - art_sys_108: 9.11276816e-40 - art_sys_109: 4.24846139e-40 - art_sys_110: -1.29456876e-39 - art_sys_111: -9.13605205e-41 - art_sys_112: 7.58692603e-41 - art_sys_113: -4.18583573e-40 - art_sys_114: 3.21131781e-40 - art_sys_115: 1.50872511e-40 - art_sys_116: 3.18735512e-40 - art_sys_117: 4.17955185e-40 - art_sys_118: 3.10049124e-41 - art_sys_119: -5.53911314e-40 - art_sys_120: -2.09937509e-41 - art_sys_121: 5.08658669e-42 - art_sys_122: -6.81265428e-41 - art_sys_123: -2.03103438e-39 - art_sys_124: -9.82478675e-42 - art_sys_125: 1.45847929e-41 - art_sys_126: -2.67006035e-40 - art_sys_127: -1.45208295e-39 - art_sys_128: 6.48648989e-40 - art_sys_129: -7.29257860e-37 - art_sys_130: -3.44496075e-34 - art_sys_131: -1.38529684e-32 - art_sys_132: 5.70725557e-37 - art_sys_133: -7.98672744e-35 - art_sys_134: -4.98948366e-31 - art_sys_135: -1.27179419e-33 - art_sys_136: 1.98425096e-29 - art_sys_137: 4.53278316e-31 - art_sys_138: -8.25159087e-28 - art_sys_139: 6.04626596e-26 - art_sys_140: -2.15604062e-35 - art_sys_141: -2.86025518e-26 - art_sys_142: -0.0 - art_sys_143: 3.22188318e-27 - art_sys_144: 1.62528031e-26 - art_sys_145: 2.37820723e-26 - art_sys_146: 8.72442005e-40 - art_sys_147: 2.81725783e-38 - art_sys_148: -6.11989135e-34 - art_sys_149: 2.26260203e-28 - art_sys_150: -7.62411471e-28 - art_sys_151: -5.32033694e-27 - art_sys_152: 6.91922896e-26 - art_sys_153: 1.55128908e-24 - art_sys_154: 3.06959941e-22 - art_sys_155: 3.62090958e-21 - art_sys_156: -1.37338248e-19 - art_sys_157: 5.20473531e-20 + art_sys_87: 3.74010243e-38 + art_sys_88: 2.72949522e-37 + art_sys_89: 3.59894668e-18 + art_sys_90: 6.83104828e-36 + art_sys_91: -1.71870754e-36 + art_sys_92: -1.98110517e-17 + art_sys_93: -2.66556023e-17 + art_sys_94: -1.01515929e-35 + art_sys_95: 4.96442725e-36 + art_sys_96: 1.14035759e-35 + art_sys_97: 1.49438335e-35 + art_sys_98: -3.51805644e-35 + art_sys_99: -1.05235450e-35 + art_sys_100: -1.84175972e-35 + art_sys_101: -9.15124066e-36 + art_sys_102: 4.75992949e-36 + art_sys_103: 2.00432016e-36 + art_sys_104: 9.89177168e-36 + art_sys_105: -1.06187799e-35 + art_sys_106: -6.50213891e-36 + art_sys_107: 5.18291683e-36 + art_sys_108: -1.24829740e-36 + art_sys_109: 1.31774909e-35 + art_sys_110: 3.63052766e-37 + art_sys_111: -1.33163821e-37 + art_sys_112: -7.45088902e-36 + art_sys_113: 1.49658154e-36 + art_sys_114: -3.62537915e-36 + art_sys_115: 1.92834763e-36 + art_sys_116: 9.05017805e-36 + art_sys_117: -4.72351303e-36 + art_sys_118: 3.08652426e-36 + art_sys_119: -1.66897537e-37 + art_sys_120: -4.13943315e-36 + art_sys_121: -1.52940533e-36 + art_sys_122: -2.27924984e-37 + art_sys_123: -4.05374710e-36 + art_sys_124: 2.52599633e-36 + art_sys_125: -2.92018286e-34 + art_sys_126: 1.03645043e-36 + art_sys_127: 1.31731855e-36 + art_sys_128: -7.11723964e-37 + art_sys_129: -3.26722675e-30 + art_sys_130: 3.18943888e-36 + art_sys_131: 6.30941668e-30 + art_sys_132: -1.57390581e-36 + art_sys_133: -4.88575514e-33 + art_sys_134: -1.16779402e-36 + art_sys_135: 4.08697640e-37 + art_sys_136: -1.44194771e-29 + art_sys_137: -3.37421733e-31 + art_sys_138: 7.90221365e-36 + art_sys_139: 1.85760074e-29 + art_sys_140: -3.06984251e-25 + art_sys_141: 1.59993144e-31 + art_sys_142: -6.53916203e-34 + art_sys_143: 2.85263821e-29 + art_sys_144: -4.08326222e-24 + art_sys_145: 1.42660426e-31 + art_sys_146: 1.28506690e-27 + art_sys_147: -1.24366909e-24 + art_sys_148: -1.23269066e-23 + art_sys_149: -9.38189278e-30 + art_sys_150: 1.52604797e-27 + art_sys_151: 4.61776740e-27 + art_sys_152: 6.56700395e-21 + art_sys_153: 5.68932306e-27 + art_sys_154: -8.13161489e-36 + art_sys_155: 1.48477980e-19 + art_sys_156: -0.0 + art_sys_157: -1.19506306e-25 art_sys_158: -0.0 - art_sys_159: -3.45740532e-26 - art_sys_160: -3.45740532e-26 - art_sys_161: -3.03608807e-21 - art_sys_162: -5.04784076e-14 - art_sys_163: 0.0 - art_sys_164: 1.10931055e-11 - art_sys_165: -3.59894668e-18 - art_sys_166: -1.98110517e-17 - art_sys_167: 2.66556023e-17 - art_sys_168: 1.08676209e-15 - art_sys_169: 7.27394198e-15 - art_sys_170: -2.86222450e-14 + art_sys_159: -4.72515687e-25 + art_sys_160: 8.36181175e-20 + art_sys_161: -1.89562266e-24 + art_sys_162: -1.89562266e-24 + art_sys_163: 7.92707307e-22 + art_sys_164: 7.92707307e-22 + art_sys_165: -5.04784083e-14 + art_sys_166: -1.10931055e-11 + art_sys_167: -0.0 + art_sys_168: -1.08676209e-15 + art_sys_169: -7.27394197e-15 + art_sys_170: 2.86222451e-14 art_sys_171: 1.47317004e-13 art_sys_172: 1.64744576e-12 - art_sys_173: 3.58264593e-12 - art_sys_174: -1.01850606e-06 - art_sys_175: -4.52216187e-11 - art_sys_176: 7.24569229e-10 - art_sys_177: -1.03191117e-09 - art_sys_178: 8.86499327e-09 - art_sys_179: 9.18635548e-09 - art_sys_180: 9.45891935e-08 - art_sys_181: 2.18032884e-07 - art_sys_182: -1.42432270e-06 - art_sys_183: -8.21763050e-07 - art_sys_184: -9.52758645e-06 - art_sys_185: 5.22228290e-08 + art_sys_173: -3.58264593e-12 + art_sys_174: 4.52216187e-11 + art_sys_175: -7.24569229e-10 + art_sys_176: 1.03191117e-09 + art_sys_177: 9.18635548e-09 + art_sys_178: 9.45891935e-08 + art_sys_179: 1.01850606e-06 + art_sys_180: 5.22228290e-08 + art_sys_181: 8.86499327e-09 + art_sys_182: 2.18032884e-07 + art_sys_183: 1.42432270e-06 + art_sys_184: -8.21763050e-07 + art_sys_185: 9.52758645e-06 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -51810,127 +51810,127 @@ bins: art_sys_62: 0.0 art_sys_63: 0.0 art_sys_64: 0.0 - art_sys_65: 7.30421534e-280 - art_sys_66: 2.24946004e-204 - art_sys_67: 6.05444003e-162 - art_sys_68: 1.69233992e-151 - art_sys_69: -3.20167925e-159 - art_sys_70: 1.59602466e-157 - art_sys_71: 1.63479587e-151 - art_sys_72: -6.19321188e-139 - art_sys_73: 4.03300713e-127 - art_sys_74: 2.38490793e-129 - art_sys_75: 1.12267350e-57 - art_sys_76: -1.66344136e-28 + art_sys_65: 0.0 + art_sys_66: 0.0 + art_sys_67: 0.0 + art_sys_68: 0.0 + art_sys_69: 0.0 + art_sys_70: 0.0 + art_sys_71: 0.0 + art_sys_72: -1.44307352e-218 + art_sys_73: 8.94469371e-210 + art_sys_74: 2.78829929e-211 + art_sys_75: 1.36960322e-95 + art_sys_76: 1.66344136e-28 art_sys_77: 4.49631437e-27 art_sys_78: -3.73005099e-26 - art_sys_79: -9.07921617e-46 - art_sys_80: 2.00221149e-46 - art_sys_81: -1.33083549e-25 - art_sys_82: -2.47820776e-23 - art_sys_83: -3.32878885e-25 - art_sys_84: -7.37883384e-42 - art_sys_85: -2.75708844e-22 + art_sys_79: 2.43543940e-45 + art_sys_80: -1.33083549e-25 + art_sys_81: -3.23746492e-44 + art_sys_82: 1.45796968e-46 + art_sys_83: 2.47820777e-23 + art_sys_84: 3.36093567e-25 + art_sys_85: -2.75708846e-22 art_sys_86: -5.62284973e-22 - art_sys_87: 9.69423542e-40 - art_sys_88: 2.93358250e-40 - art_sys_89: 2.93710101e-41 - art_sys_90: -6.45426631e-41 - art_sys_91: 1.87452796e-41 - art_sys_92: -5.25984491e-41 - art_sys_93: -5.62749300e-41 - art_sys_94: 1.81919848e-41 - art_sys_95: -3.83565175e-41 - art_sys_96: 1.26166485e-40 - art_sys_97: 2.67854012e-42 - art_sys_98: -4.01242162e-41 - art_sys_99: -2.53404811e-42 - art_sys_100: -1.76315764e-42 - art_sys_101: -3.18453724e-41 - art_sys_102: 6.40589853e-41 - art_sys_103: -1.42588147e-41 - art_sys_104: 3.66899267e-42 - art_sys_105: -3.15877930e-41 - art_sys_106: 1.06842726e-41 - art_sys_107: -9.46971441e-42 - art_sys_108: 1.85286239e-41 - art_sys_109: 7.73109544e-42 - art_sys_110: -2.88766197e-41 - art_sys_111: -1.33433532e-42 - art_sys_112: 7.67475365e-43 - art_sys_113: 1.78994339e-41 - art_sys_114: 6.02155462e-42 - art_sys_115: 1.97563571e-42 - art_sys_116: 5.81090756e-42 - art_sys_117: 4.64815313e-42 - art_sys_118: 5.23684649e-43 - art_sys_119: 4.91916672e-41 - art_sys_120: -2.07177508e-43 - art_sys_121: -1.06381578e-40 - art_sys_122: 8.06787302e-41 - art_sys_123: 6.95930814e-39 - art_sys_124: 2.60181325e-41 - art_sys_125: -5.34199319e-41 - art_sys_126: 8.01992027e-40 - art_sys_127: -2.67212907e-39 - art_sys_128: -1.11715597e-39 - art_sys_129: -1.57673309e-36 - art_sys_130: -7.75521148e-34 - art_sys_131: -3.13752803e-32 - art_sys_132: 1.28396272e-36 - art_sys_133: -1.80543023e-34 - art_sys_134: -1.11922901e-30 - art_sys_135: -2.71782718e-33 - art_sys_136: 4.28926144e-29 - art_sys_137: 6.72172700e-31 - art_sys_138: -9.53096012e-28 - art_sys_139: -6.99833493e-27 - art_sys_140: 2.88950098e-35 - art_sys_141: 4.82359437e-26 - art_sys_142: 0.0 - art_sys_143: -3.70161280e-27 - art_sys_144: -1.93305737e-26 - art_sys_145: -3.53228400e-26 - art_sys_146: 3.31172710e-41 - art_sys_147: 7.09951169e-38 - art_sys_148: -1.65809610e-33 - art_sys_149: 4.10771041e-28 - art_sys_150: 5.64359441e-28 - art_sys_151: 5.42146255e-27 - art_sys_152: 1.49706201e-27 - art_sys_153: 1.34966330e-23 - art_sys_154: -1.63374748e-21 - art_sys_155: -1.28650512e-20 - art_sys_156: 1.77476016e-19 - art_sys_157: -5.97088312e-20 + art_sys_87: 8.24977226e-40 + art_sys_88: 1.03354295e-38 + art_sys_89: 1.38697727e-19 + art_sys_90: 2.63878651e-37 + art_sys_91: -9.60975918e-38 + art_sys_92: -8.39974492e-19 + art_sys_93: -5.51475169e-19 + art_sys_94: -1.63544961e-37 + art_sys_95: -1.07806740e-37 + art_sys_96: 2.56837685e-37 + art_sys_97: 3.38897758e-37 + art_sys_98: -8.79746782e-37 + art_sys_99: -1.47648584e-37 + art_sys_100: -5.86386871e-37 + art_sys_101: -2.27875415e-37 + art_sys_102: 1.46029132e-37 + art_sys_103: 7.43582569e-39 + art_sys_104: 2.49046847e-37 + art_sys_105: -2.67413927e-37 + art_sys_106: -9.46694822e-38 + art_sys_107: 2.68455563e-37 + art_sys_108: -7.17090324e-38 + art_sys_109: 2.65971067e-37 + art_sys_110: 7.03191537e-38 + art_sys_111: 5.40520658e-38 + art_sys_112: -1.54378622e-37 + art_sys_113: 5.91665819e-38 + art_sys_114: 3.25641007e-38 + art_sys_115: 8.72184853e-38 + art_sys_116: 2.52182327e-37 + art_sys_117: -1.48956818e-37 + art_sys_118: 8.66818143e-38 + art_sys_119: -2.49118423e-39 + art_sys_120: -1.30787752e-37 + art_sys_121: -5.25579707e-38 + art_sys_122: -4.93155811e-38 + art_sys_123: -1.19510945e-37 + art_sys_124: 3.72609423e-38 + art_sys_125: -2.60431465e-34 + art_sys_126: 4.56004317e-38 + art_sys_127: 5.00140154e-38 + art_sys_128: -1.33264201e-38 + art_sys_129: -2.85523205e-30 + art_sys_130: 5.69706647e-37 + art_sys_131: -1.69019937e-29 + art_sys_132: -4.38832871e-38 + art_sys_133: -3.84940567e-33 + art_sys_134: -1.33575460e-38 + art_sys_135: 2.89479130e-39 + art_sys_136: -5.21014151e-29 + art_sys_137: -2.29334793e-31 + art_sys_138: 3.96914788e-36 + art_sys_139: 8.41347168e-30 + art_sys_140: -3.44319473e-25 + art_sys_141: 4.71601539e-32 + art_sys_142: -1.12013580e-34 + art_sys_143: 8.26561715e-31 + art_sys_144: -4.58975571e-25 + art_sys_145: -1.58835753e-31 + art_sys_146: -1.08197560e-27 + art_sys_147: 1.60203683e-24 + art_sys_148: 4.95681861e-22 + art_sys_149: 2.60948286e-29 + art_sys_150: -3.99413512e-27 + art_sys_151: 3.31368044e-27 + art_sys_152: -8.98813757e-21 + art_sys_153: -4.61537229e-27 + art_sys_154: -7.04929020e-36 + art_sys_155: -2.05887943e-19 + art_sys_156: 0.0 + art_sys_157: 1.19962271e-26 art_sys_158: 0.0 - art_sys_159: 1.12485350e-25 - art_sys_160: 1.12485350e-25 - art_sys_161: 3.91409473e-21 - art_sys_162: 5.81208819e-10 - art_sys_163: 0.0 - art_sys_164: -2.21680934e-13 - art_sys_165: -1.38697727e-19 - art_sys_166: -8.39974491e-19 - art_sys_167: 5.51475169e-19 - art_sys_168: 5.28782274e-17 - art_sys_169: 1.47385390e-16 - art_sys_170: -1.00315949e-15 + art_sys_159: -2.53179827e-25 + art_sys_160: -1.39078685e-20 + art_sys_161: 5.31026088e-24 + art_sys_162: 5.31026088e-24 + art_sys_163: 6.71490157e-21 + art_sys_164: 6.71490157e-21 + art_sys_165: 5.81208819e-10 + art_sys_166: 2.21680934e-13 + art_sys_167: -0.0 + art_sys_168: -5.28782274e-17 + art_sys_169: -1.47385389e-16 + art_sys_170: 1.00315949e-15 art_sys_171: 2.10502919e-14 - art_sys_172: 1.69054092e-14 - art_sys_173: 1.55574630e-13 - art_sys_174: 1.30228260e-06 - art_sys_175: 1.24646235e-11 - art_sys_176: 2.73659610e-11 - art_sys_177: 1.28921057e-10 - art_sys_178: 2.84172183e-10 - art_sys_179: -2.40009642e-10 - art_sys_180: 6.12852630e-09 - art_sys_181: 7.54328157e-08 - art_sys_182: -5.53727712e-07 - art_sys_183: -1.28011170e-08 - art_sys_184: -5.72936307e-06 - art_sys_185: 2.86763638e-07 + art_sys_172: 1.69054091e-14 + art_sys_173: -1.55574630e-13 + art_sys_174: -1.24646235e-11 + art_sys_175: -2.73659610e-11 + art_sys_176: -1.28921057e-10 + art_sys_177: -2.40009642e-10 + art_sys_178: 6.12852630e-09 + art_sys_179: -1.30228260e-06 + art_sys_180: 2.86763638e-07 + art_sys_181: 2.84172183e-10 + art_sys_182: 7.54328157e-08 + art_sys_183: 5.53727712e-07 + art_sys_184: -1.28011170e-08 + art_sys_185: 5.72936307e-06 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -52101,127 +52101,127 @@ bins: art_sys_62: 0.0 art_sys_63: 0.0 art_sys_64: 0.0 - art_sys_65: -6.45330426e-283 - art_sys_66: -1.98655114e-207 - art_sys_67: -5.34681843e-165 - art_sys_68: -1.49454520e-154 - art_sys_69: 2.82747828e-162 - art_sys_70: -1.40948693e-160 - art_sys_71: -1.44372670e-154 - art_sys_72: 5.46937112e-142 - art_sys_73: -3.56164349e-130 - art_sys_74: -2.10616830e-132 - art_sys_75: -9.91459385e-61 - art_sys_76: 1.46902420e-31 + art_sys_65: 0.0 + art_sys_66: 0.0 + art_sys_67: 0.0 + art_sys_68: 0.0 + art_sys_69: 0.0 + art_sys_70: 0.0 + art_sys_71: 0.0 + art_sys_72: 1.27454356e-221 + art_sys_73: -7.90008383e-213 + art_sys_74: -2.46266656e-214 + art_sys_75: -1.20952882e-98 + art_sys_76: -1.46902420e-31 art_sys_77: 1.76525214e-29 art_sys_78: -1.31452798e-28 - art_sys_79: -3.17290509e-48 - art_sys_80: 4.11628033e-49 - art_sys_81: -1.68449024e-28 - art_sys_82: -2.95866511e-28 - art_sys_83: 1.16617913e-25 - art_sys_84: -4.68447329e-44 - art_sys_85: 1.21028714e-24 - art_sys_86: 2.60379257e-24 - art_sys_87: -4.46168375e-42 - art_sys_88: -1.37778360e-42 - art_sys_89: -1.47280256e-43 - art_sys_90: 3.00110446e-43 - art_sys_91: -9.10622510e-44 - art_sys_92: 2.39712220e-43 - art_sys_93: 2.58235549e-43 - art_sys_94: -8.08184625e-44 - art_sys_95: 1.82930245e-43 - art_sys_96: -5.66026298e-43 - art_sys_97: -1.20556285e-44 - art_sys_98: 1.84472887e-43 - art_sys_99: 9.81392002e-45 - art_sys_100: 8.46213980e-45 - art_sys_101: 1.47258608e-43 - art_sys_102: -3.05016498e-43 - art_sys_103: 7.57398064e-44 - art_sys_104: -1.84138688e-44 - art_sys_105: 1.45314857e-43 - art_sys_106: -4.91643817e-44 - art_sys_107: 4.39516588e-44 - art_sys_108: -8.59757476e-44 - art_sys_109: -3.55211942e-44 - art_sys_110: 1.47397534e-43 - art_sys_111: -4.98092597e-45 - art_sys_112: -2.80593375e-45 - art_sys_113: -1.03453695e-41 - art_sys_114: -2.68466267e-44 - art_sys_115: 1.48383128e-44 - art_sys_116: -2.66187104e-44 - art_sys_117: 1.39716422e-42 - art_sys_118: -2.25558665e-45 - art_sys_119: -3.71150431e-41 - art_sys_120: 5.71009064e-46 - art_sys_121: 2.42625588e-42 - art_sys_122: -8.73428327e-42 - art_sys_123: -4.68522219e-39 - art_sys_124: -1.11425614e-42 - art_sys_125: -1.12331649e-40 - art_sys_126: -1.49026611e-39 - art_sys_127: -5.68394875e-37 - art_sys_128: -6.09958176e-38 - art_sys_129: -3.22117391e-34 - art_sys_130: -1.52651872e-31 - art_sys_131: -6.13932845e-30 - art_sys_132: 2.52494531e-34 - art_sys_133: -3.53803078e-32 - art_sys_134: -2.20634764e-28 - art_sys_135: -5.55124669e-31 - art_sys_136: 8.69061606e-27 - art_sys_137: 1.72496490e-28 - art_sys_138: -2.85844227e-25 - art_sys_139: 1.16596253e-23 - art_sys_140: 4.65702720e-35 - art_sys_141: 1.83150991e-24 - art_sys_142: -0.0 - art_sys_143: -2.71441181e-25 - art_sys_144: -1.48315677e-24 - art_sys_145: -1.32661664e-24 - art_sys_146: -1.95384577e-40 - art_sys_147: 1.25401171e-35 - art_sys_148: -2.74753873e-31 - art_sys_149: 9.91153999e-26 - art_sys_150: -7.20406176e-27 - art_sys_151: -6.66607599e-27 - art_sys_152: -1.44438560e-25 - art_sys_153: -3.13040988e-24 - art_sys_154: 7.72504629e-22 - art_sys_155: 6.15158918e-21 - art_sys_156: -7.22085335e-20 - art_sys_157: 2.76611159e-20 + art_sys_79: 3.33211553e-48 + art_sys_80: -1.68449024e-28 + art_sys_81: -4.15185235e-47 + art_sys_82: 5.36273321e-49 + art_sys_83: 3.20898403e-28 + art_sys_84: 4.65376448e-25 + art_sys_85: 1.20999157e-24 + art_sys_86: 2.60379251e-24 + art_sys_87: -3.60692021e-42 + art_sys_88: -1.87573701e-42 + art_sys_89: -1.81681944e-23 + art_sys_90: -3.85660546e-41 + art_sys_91: -3.93496723e-41 + art_sys_92: -4.09421335e-21 + art_sys_93: 6.89356040e-21 + art_sys_94: 2.83468521e-39 + art_sys_95: -5.88718573e-39 + art_sys_96: -2.61427833e-39 + art_sys_97: -2.97541328e-39 + art_sys_98: 5.88318084e-39 + art_sys_99: 4.32718695e-39 + art_sys_100: 4.03102442e-40 + art_sys_101: 1.53971708e-39 + art_sys_102: -1.97798215e-40 + art_sys_103: -1.31432710e-39 + art_sys_104: -1.69702783e-39 + art_sys_105: 1.67577654e-39 + art_sys_106: 9.89427824e-40 + art_sys_107: 2.57228273e-39 + art_sys_108: -6.89509153e-40 + art_sys_109: -3.56699097e-39 + art_sys_110: 1.35919694e-39 + art_sys_111: 3.24538108e-40 + art_sys_112: 1.91136891e-39 + art_sys_113: 1.90972339e-40 + art_sys_114: 3.29955072e-39 + art_sys_115: 5.20619048e-40 + art_sys_116: -9.81873043e-40 + art_sys_117: 3.87945872e-40 + art_sys_118: -3.00525040e-40 + art_sys_119: 8.63989205e-41 + art_sys_120: 1.00814383e-40 + art_sys_121: 7.82527330e-36 + art_sys_122: -8.78379883e-40 + art_sys_123: 2.82982029e-40 + art_sys_124: -9.66596905e-40 + art_sys_125: -1.26724493e-31 + art_sys_126: 2.38208550e-40 + art_sys_127: 9.56006492e-39 + art_sys_128: 2.25923154e-40 + art_sys_129: -1.41854894e-27 + art_sys_130: 2.47949058e-34 + art_sys_131: 2.32465996e-27 + art_sys_132: 2.97468365e-40 + art_sys_133: -2.11487825e-30 + art_sys_134: 7.99140344e-36 + art_sys_135: -1.55912661e-36 + art_sys_136: 1.43219618e-27 + art_sys_137: -1.45449574e-28 + art_sys_138: 3.48323441e-33 + art_sys_139: 7.93975411e-27 + art_sys_140: -4.87281956e-25 + art_sys_141: 6.79782640e-29 + art_sys_142: -2.76815812e-31 + art_sys_143: 1.19978166e-26 + art_sys_144: -5.37498436e-25 + art_sys_145: 5.72654016e-29 + art_sys_146: 5.21974188e-25 + art_sys_147: -1.42321192e-23 + art_sys_148: -2.35881780e-22 + art_sys_149: -2.18083503e-27 + art_sys_150: 3.27019582e-25 + art_sys_151: 1.74977352e-25 + art_sys_152: 3.17112963e-21 + art_sys_153: -6.40625862e-25 + art_sys_154: 1.22760143e-34 + art_sys_155: 5.08623936e-20 + art_sys_156: 0.0 + art_sys_157: -5.62278813e-26 art_sys_158: -0.0 - art_sys_159: 1.61339883e-24 - art_sys_160: 1.61339883e-24 - art_sys_161: 3.88743564e-20 - art_sys_162: 8.18908497e-09 - art_sys_163: 0.0 - art_sys_164: 4.60719507e-09 - art_sys_165: 1.81681937e-23 - art_sys_166: -4.09423114e-21 - art_sys_167: -6.89356040e-21 - art_sys_168: 1.11337770e-19 - art_sys_169: -4.65806178e-19 - art_sys_170: -3.43902791e-18 - art_sys_171: 8.37513009e-17 - art_sys_172: 1.37327810e-15 - art_sys_173: 4.04900189e-15 - art_sys_174: -5.23875188e-07 - art_sys_175: 1.52923756e-12 - art_sys_176: 9.70567108e-13 - art_sys_177: 5.67979320e-11 - art_sys_178: -7.94397922e-11 - art_sys_179: -1.85401883e-09 - art_sys_180: -3.62439598e-09 - art_sys_181: -6.76492695e-08 - art_sys_182: 3.39038038e-07 - art_sys_183: 1.49270221e-07 - art_sys_184: 3.50622813e-06 - art_sys_185: 4.92758034e-07 + art_sys_159: -4.94400236e-24 + art_sys_160: 1.66585668e-19 + art_sys_161: 1.08792336e-23 + art_sys_162: 1.08792336e-23 + art_sys_163: -6.56858447e-21 + art_sys_164: -6.56858447e-21 + art_sys_165: 8.18908497e-09 + art_sys_166: -4.60719507e-09 + art_sys_167: -0.0 + art_sys_168: -1.11337770e-19 + art_sys_169: 4.65805930e-19 + art_sys_170: 3.43902673e-18 + art_sys_171: 8.37512960e-17 + art_sys_172: 1.37327822e-15 + art_sys_173: -4.04900181e-15 + art_sys_174: -1.52923756e-12 + art_sys_175: -9.70567108e-13 + art_sys_176: -5.67979320e-11 + art_sys_177: -1.85401883e-09 + art_sys_178: -3.62439598e-09 + art_sys_179: 5.23875188e-07 + art_sys_180: 4.92758034e-07 + art_sys_181: -7.94397922e-11 + art_sys_182: -6.76492695e-08 + art_sys_183: -3.39038038e-07 + art_sys_184: 1.49270221e-07 + art_sys_185: -3.50622813e-06 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -52392,127 +52392,127 @@ bins: art_sys_62: 0.0 art_sys_63: 0.0 art_sys_64: 0.0 - art_sys_65: -9.82911910e-285 - art_sys_66: -3.02629693e-209 - art_sys_67: -8.14530272e-167 - art_sys_68: -2.27677884e-156 - art_sys_69: 4.30735900e-164 - art_sys_70: -2.14720172e-162 - art_sys_71: -2.19936232e-156 - art_sys_72: 8.33199856e-144 - art_sys_73: -5.42578072e-132 - art_sys_74: -3.20852084e-134 - art_sys_75: -1.51038172e-62 - art_sys_76: 2.23790035e-33 + art_sys_65: 0.0 + art_sys_66: 0.0 + art_sys_67: 0.0 + art_sys_68: 0.0 + art_sys_69: 0.0 + art_sys_70: 0.0 + art_sys_71: 0.0 + art_sys_72: 1.94154514e-223 + art_sys_73: -1.20344018e-214 + art_sys_74: -3.75144361e-216 + art_sys_75: -1.84258705e-100 + art_sys_76: -2.23790035e-33 art_sys_77: 1.29232269e-31 art_sys_78: -9.37243277e-31 - art_sys_79: -2.25724638e-50 - art_sys_80: 4.44214887e-52 - art_sys_81: 1.35291914e-30 - art_sys_82: 8.68477356e-28 - art_sys_83: 1.25778828e-24 - art_sys_84: -5.04560430e-43 - art_sys_85: 3.45730689e-26 - art_sys_86: 8.23680470e-26 - art_sys_87: 2.57504051e-43 - art_sys_88: -1.63018111e-43 - art_sys_89: -7.05070881e-44 - art_sys_90: 2.02071013e-44 - art_sys_91: -4.98600715e-44 - art_sys_92: -1.02798650e-44 - art_sys_93: 1.20001166e-44 - art_sys_94: 2.36808681e-44 - art_sys_95: 7.02231488e-44 - art_sys_96: -7.66079970e-44 - art_sys_97: 2.09247971e-44 - art_sys_98: 5.74309355e-45 - art_sys_99: -9.24419949e-45 - art_sys_100: -6.16006359e-45 - art_sys_101: 1.20084100e-44 - art_sys_102: -4.46214732e-44 - art_sys_103: 1.48123450e-44 - art_sys_104: -1.19045542e-44 - art_sys_105: -6.53639828e-45 - art_sys_106: -5.32554488e-45 - art_sys_107: 3.69531693e-45 - art_sys_108: -1.93470854e-45 - art_sys_109: -1.57274458e-45 - art_sys_110: -2.65851928e-43 - art_sys_111: -5.90806627e-45 - art_sys_112: -4.64571515e-47 - art_sys_113: 8.58897181e-42 - art_sys_114: 3.42721647e-45 - art_sys_115: -5.73072829e-43 - art_sys_116: -1.09614137e-45 - art_sys_117: -3.88425415e-42 - art_sys_118: 4.21432155e-46 - art_sys_119: -4.45009243e-42 - art_sys_120: 5.25564695e-45 - art_sys_121: -1.27126890e-40 - art_sys_122: 8.28355242e-41 - art_sys_123: -1.79085562e-39 - art_sys_124: 3.01518413e-41 - art_sys_125: -3.10002517e-40 - art_sys_126: -2.19936379e-39 - art_sys_127: -1.22187215e-36 - art_sys_128: -1.23041601e-37 - art_sys_129: -6.90060240e-34 - art_sys_130: -3.28227091e-31 - art_sys_131: -1.31992174e-29 - art_sys_132: 5.41975830e-34 - art_sys_133: -7.60023800e-32 - art_sys_134: -4.73133931e-28 - art_sys_135: -1.17970388e-30 - art_sys_136: 1.85044448e-26 - art_sys_137: 3.50731935e-28 - art_sys_138: -5.68037389e-25 - art_sys_139: 1.98866101e-23 - art_sys_140: 1.70239469e-34 - art_sys_141: 8.17278040e-24 - art_sys_142: -0.0 - art_sys_143: -7.70503325e-25 - art_sys_144: -4.21615078e-24 - art_sys_145: -4.34850713e-24 - art_sys_146: -4.00478185e-40 - art_sys_147: 2.73714258e-35 - art_sys_148: -6.05107324e-31 - art_sys_149: 2.08311712e-25 - art_sys_150: 8.25912625e-27 - art_sys_151: 2.97521079e-25 - art_sys_152: -1.67734900e-25 - art_sys_153: 1.75625705e-24 - art_sys_154: -3.66601349e-22 - art_sys_155: -3.35540507e-21 - art_sys_156: 2.36948416e-20 - art_sys_157: -5.07849036e-20 - art_sys_158: 0.0 - art_sys_159: 2.84902351e-24 - art_sys_160: 2.84902351e-24 - art_sys_161: 8.07758130e-20 - art_sys_162: 1.73774652e-08 - art_sys_163: 0.0 - art_sys_164: 8.78394684e-09 - art_sys_165: 2.47398760e-24 - art_sys_166: 3.90986298e-23 - art_sys_167: 1.64158312e-22 - art_sys_168: -6.49350058e-20 - art_sys_169: 6.74702248e-20 - art_sys_170: 2.26342671e-18 - art_sys_171: -2.47341717e-17 - art_sys_172: -8.76205147e-16 - art_sys_173: -2.30676874e-15 - art_sys_174: 2.50710231e-07 - art_sys_175: -7.12640292e-13 - art_sys_176: -6.52093865e-13 - art_sys_177: -2.67653511e-11 - art_sys_178: 3.49856372e-11 - art_sys_179: 8.79241103e-10 - art_sys_180: 1.68042578e-09 - art_sys_181: 3.20978225e-08 - art_sys_182: -1.60354345e-07 - art_sys_183: -7.10819078e-08 - art_sys_184: -1.66127103e-06 - art_sys_185: -2.35756144e-07 + art_sys_79: 2.30374717e-50 + art_sys_80: 1.35291914e-30 + art_sys_81: 3.20058002e-49 + art_sys_82: 4.02625556e-51 + art_sys_83: -8.14019943e-28 + art_sys_84: 8.35278301e-27 + art_sys_85: 3.39301063e-26 + art_sys_86: 8.23679038e-26 + art_sys_87: -1.19098454e-43 + art_sys_88: -1.96083659e-43 + art_sys_89: -2.47398751e-24 + art_sys_90: -4.75498200e-42 + art_sys_91: 1.89413047e-42 + art_sys_92: 3.90935891e-23 + art_sys_93: -1.64158313e-22 + art_sys_94: -7.58229219e-41 + art_sys_95: 1.08924256e-40 + art_sys_96: 6.22277016e-41 + art_sys_97: 8.12586251e-41 + art_sys_98: -1.59596217e-40 + art_sys_99: -9.09779845e-41 + art_sys_100: -3.64021450e-41 + art_sys_101: -4.13200096e-41 + art_sys_102: 1.23984760e-41 + art_sys_103: 2.50072727e-41 + art_sys_104: 4.41715579e-41 + art_sys_105: -4.75468287e-41 + art_sys_106: -2.89171042e-41 + art_sys_107: -3.60434063e-41 + art_sys_108: 5.27013430e-42 + art_sys_109: 8.36131322e-41 + art_sys_110: -2.13990436e-41 + art_sys_111: -4.39647999e-42 + art_sys_112: -4.58165952e-41 + art_sys_113: 2.69157813e-42 + art_sys_114: -6.18196993e-41 + art_sys_115: -5.84326589e-42 + art_sys_116: 3.16204092e-41 + art_sys_117: 5.02640324e-40 + art_sys_118: 1.04705166e-41 + art_sys_119: -1.35669628e-42 + art_sys_120: -8.24615273e-42 + art_sys_121: 1.21191842e-35 + art_sys_122: 1.53555750e-41 + art_sys_123: -1.16244704e-41 + art_sys_124: 2.11819015e-41 + art_sys_125: -1.96360497e-31 + art_sys_126: -2.68437708e-42 + art_sys_127: 1.45483802e-38 + art_sys_128: -4.89249690e-42 + art_sys_129: -2.20051130e-27 + art_sys_130: 3.85329761e-34 + art_sys_131: 5.86002776e-27 + art_sys_132: 1.96539215e-40 + art_sys_133: -3.29711829e-30 + art_sys_134: 1.24911099e-35 + art_sys_135: -2.44440322e-36 + art_sys_136: 1.99742846e-27 + art_sys_137: -2.28201284e-28 + art_sys_138: 5.52667397e-33 + art_sys_139: 1.26235105e-26 + art_sys_140: 6.85198206e-25 + art_sys_141: 1.09084677e-28 + art_sys_142: -4.47431470e-31 + art_sys_143: 1.95547551e-26 + art_sys_144: -7.72334362e-25 + art_sys_145: 9.98305463e-29 + art_sys_146: 8.95403160e-25 + art_sys_147: -8.88262682e-24 + art_sys_148: 1.08394222e-22 + art_sys_149: -4.83973866e-27 + art_sys_150: 7.38066117e-25 + art_sys_151: 5.09382855e-25 + art_sys_152: -1.45635145e-21 + art_sys_153: -1.62104001e-24 + art_sys_154: 3.22085437e-34 + art_sys_155: -2.23032637e-20 + art_sys_156: 0.0 + art_sys_157: 4.98131172e-25 + art_sys_158: -0.0 + art_sys_159: -5.81863490e-24 + art_sys_160: -7.95344166e-20 + art_sys_161: 1.54675049e-23 + art_sys_162: 1.54675049e-23 + art_sys_163: -4.47720042e-20 + art_sys_164: -4.47720042e-20 + art_sys_165: 1.73774652e-08 + art_sys_166: -8.78394684e-09 + art_sys_167: -0.0 + art_sys_168: 6.49350057e-20 + art_sys_169: -6.74699869e-20 + art_sys_170: -2.26342617e-18 + art_sys_171: -2.47341694e-17 + art_sys_172: -8.76205203e-16 + art_sys_173: 2.30676870e-15 + art_sys_174: 7.12640292e-13 + art_sys_175: 6.52093865e-13 + art_sys_176: 2.67653511e-11 + art_sys_177: 8.79241103e-10 + art_sys_178: 1.68042578e-09 + art_sys_179: -2.50710231e-07 + art_sys_180: -2.35756144e-07 + art_sys_181: 3.49856372e-11 + art_sys_182: 3.20978225e-08 + art_sys_183: 1.60354345e-07 + art_sys_184: -7.10819078e-08 + art_sys_185: 1.66127103e-06 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -52683,127 +52683,127 @@ bins: art_sys_62: 0.0 art_sys_63: 0.0 art_sys_64: 0.0 - art_sys_65: -2.74852752e-287 - art_sys_66: -8.46235548e-212 - art_sys_67: -2.27764983e-169 - art_sys_68: -6.36649750e-159 - art_sys_69: 1.20445560e-166 - art_sys_70: -6.00416438e-165 - art_sys_71: -6.15001970e-159 - art_sys_72: 2.32985511e-146 - art_sys_73: -1.51719696e-134 - art_sys_74: -8.97190346e-137 - art_sys_75: -4.22344116e-65 - art_sys_76: 6.25778260e-36 + art_sys_65: 0.0 + art_sys_66: 0.0 + art_sys_67: 0.0 + art_sys_68: 0.0 + art_sys_69: 0.0 + art_sys_70: 0.0 + art_sys_71: 0.0 + art_sys_72: 5.42910946e-226 + art_sys_73: -3.36515920e-217 + art_sys_74: -1.04900976e-218 + art_sys_75: -5.15237830e-103 + art_sys_76: -6.25778260e-36 art_sys_77: 3.89756025e-34 art_sys_78: -3.04139459e-33 - art_sys_79: -7.36880893e-53 - art_sys_80: 3.74488140e-54 - art_sys_81: 2.04105604e-33 - art_sys_82: -3.15134173e-30 - art_sys_83: -2.60227294e-25 - art_sys_84: 1.04443606e-43 - art_sys_85: 5.84037665e-28 - art_sys_86: 3.20864881e-27 - art_sys_87: -8.80834487e-44 - art_sys_88: 2.29194561e-44 - art_sys_89: 1.35209764e-44 - art_sys_90: -2.03883046e-45 - art_sys_91: 9.62082865e-45 - art_sys_92: 3.91720524e-45 - art_sys_93: -5.92235534e-46 - art_sys_94: -5.53473671e-45 - art_sys_95: -1.32324656e-44 - art_sys_96: 1.95605833e-45 - art_sys_97: -4.46040513e-45 - art_sys_98: 2.56189708e-46 - art_sys_99: 2.02012885e-45 - art_sys_100: 1.33614586e-45 - art_sys_101: -1.36358981e-45 - art_sys_102: 6.90229794e-45 - art_sys_103: -2.44309245e-45 - art_sys_104: 2.34004150e-45 - art_sys_105: 2.48236941e-45 - art_sys_106: 7.39174007e-46 - art_sys_107: -4.30564512e-46 - art_sys_108: -2.65832189e-46 - art_sys_109: 6.18640740e-47 - art_sys_110: 3.27479914e-43 - art_sys_111: 1.18190067e-45 - art_sys_112: 2.98492329e-48 - art_sys_113: 4.29393851e-42 - art_sys_114: -9.13722059e-46 - art_sys_115: 6.80934169e-43 - art_sys_116: 2.16096204e-47 - art_sys_117: 2.81449675e-43 - art_sys_118: -1.20242075e-46 - art_sys_119: 1.77356032e-41 - art_sys_120: -6.92186353e-45 - art_sys_121: 1.46118684e-40 - art_sys_122: -1.02263216e-40 - art_sys_123: 3.50291543e-39 - art_sys_124: -3.54074894e-41 - art_sys_125: 8.24124234e-41 - art_sys_126: 5.81355381e-40 - art_sys_127: 1.86879329e-37 - art_sys_128: -2.34166903e-38 - art_sys_129: 9.35424442e-35 - art_sys_130: 5.00660352e-32 - art_sys_131: 2.01161001e-30 - art_sys_132: -7.88650395e-35 - art_sys_133: 1.13127858e-32 - art_sys_134: 6.68735395e-29 - art_sys_135: 1.20277781e-31 - art_sys_136: -2.04352423e-27 - art_sys_137: 3.29989288e-29 - art_sys_138: -1.12656842e-25 - art_sys_139: 1.89081647e-23 - art_sys_140: -2.02868982e-34 - art_sys_141: -1.86888556e-23 - art_sys_142: 0.0 - art_sys_143: 8.26656648e-25 - art_sys_144: 4.56675384e-24 - art_sys_145: 6.63799323e-24 - art_sys_146: 9.52328303e-41 - art_sys_147: -6.03038940e-36 - art_sys_148: 1.57628993e-31 - art_sys_149: -9.78307295e-27 - art_sys_150: -8.83913012e-26 - art_sys_151: -1.28897170e-24 - art_sys_152: -5.41608284e-25 - art_sys_153: 5.93285940e-25 - art_sys_154: -8.43939385e-23 - art_sys_155: -7.74263139e-22 - art_sys_156: 5.46141182e-21 - art_sys_157: -1.17466992e-20 + art_sys_79: 1.12473857e-52 + art_sys_80: 2.04105604e-33 + art_sys_81: 4.70718902e-52 + art_sys_82: 1.29021650e-53 + art_sys_83: -8.03534243e-30 + art_sys_84: 1.35609385e-28 + art_sys_85: 7.15854783e-28 + art_sys_86: 3.20875585e-27 + art_sys_87: -4.94100758e-45 + art_sys_88: 4.85079733e-44 + art_sys_89: 6.59802435e-25 + art_sys_90: 1.32714870e-42 + art_sys_91: 8.04319321e-43 + art_sys_92: 1.45596142e-23 + art_sys_93: -5.64166673e-23 + art_sys_94: -2.58695220e-41 + art_sys_95: 3.83758307e-41 + art_sys_96: 2.17454021e-41 + art_sys_97: 2.68369801e-41 + art_sys_98: -5.46252998e-41 + art_sys_99: -3.18154543e-41 + art_sys_100: -1.21302856e-41 + art_sys_101: -1.41683120e-41 + art_sys_102: 3.77491854e-42 + art_sys_103: 8.92424314e-42 + art_sys_104: 1.53923841e-41 + art_sys_105: -1.60489307e-41 + art_sys_106: -1.13960981e-41 + art_sys_107: -1.29736697e-41 + art_sys_108: 2.50320444e-42 + art_sys_109: 2.88144234e-41 + art_sys_110: -7.89297800e-42 + art_sys_111: -1.48496144e-42 + art_sys_112: -1.57063494e-41 + art_sys_113: 6.88192427e-43 + art_sys_114: -2.18359193e-41 + art_sys_115: -2.15040020e-42 + art_sys_116: 1.07667434e-41 + art_sys_117: 7.72164810e-40 + art_sys_118: 3.50777795e-42 + art_sys_119: -5.50959088e-43 + art_sys_120: -2.77578113e-42 + art_sys_121: 1.83104912e-35 + art_sys_122: 5.32163750e-42 + art_sys_123: -3.90274400e-42 + art_sys_124: 7.29015230e-42 + art_sys_125: -2.96086222e-31 + art_sys_126: -9.45565367e-43 + art_sys_127: 2.18563343e-38 + art_sys_128: -1.72823434e-42 + art_sys_129: -3.30495644e-27 + art_sys_130: 5.74979754e-34 + art_sys_131: -3.90240145e-27 + art_sys_132: 2.95830053e-40 + art_sys_133: -4.86449608e-30 + art_sys_134: 1.82549920e-35 + art_sys_135: -3.53229484e-36 + art_sys_136: 5.67323077e-27 + art_sys_137: -3.29029076e-28 + art_sys_138: 7.64370764e-33 + art_sys_139: 1.73242277e-26 + art_sys_140: 3.79443672e-25 + art_sys_141: 1.44484545e-28 + art_sys_142: -5.76037670e-31 + art_sys_143: 2.43477984e-26 + art_sys_144: 6.55308355e-25 + art_sys_145: 9.14284784e-29 + art_sys_146: 8.88870410e-25 + art_sys_147: 2.29853876e-23 + art_sys_148: 2.50046087e-23 + art_sys_149: 6.31573297e-28 + art_sys_150: -1.47729452e-25 + art_sys_151: -7.31560815e-25 + art_sys_152: -3.36917178e-22 + art_sys_153: 9.89436302e-25 + art_sys_154: 5.09598145e-35 + art_sys_155: -4.49743956e-21 + art_sys_156: 0.0 + art_sys_157: 1.67633785e-25 art_sys_158: 0.0 - art_sys_159: 2.54700891e-24 - art_sys_160: 2.54700891e-24 - art_sys_161: 1.53086496e-20 - art_sys_162: -1.28189605e-08 - art_sys_163: -0.0 - art_sys_164: 3.83822001e-09 - art_sys_165: -6.59808081e-25 - art_sys_166: 1.44021830e-23 - art_sys_167: 5.64166665e-23 - art_sys_168: -1.42274661e-20 - art_sys_169: 1.50359299e-20 - art_sys_170: 5.10853381e-19 - art_sys_171: -5.51197691e-18 - art_sys_172: -1.99582153e-16 - art_sys_173: -5.24979393e-16 - art_sys_174: 5.79472438e-08 - art_sys_175: -1.63265041e-13 - art_sys_176: -1.48255681e-13 - art_sys_177: -6.13991396e-12 - art_sys_178: 8.05435237e-12 - art_sys_179: 2.01857017e-10 - art_sys_180: 3.86467183e-10 - art_sys_181: 7.37472745e-09 - art_sys_182: -3.68562564e-08 - art_sys_183: -1.63789208e-08 - art_sys_184: -3.82076920e-07 - art_sys_185: -5.35096112e-08 + art_sys_159: -4.39368373e-24 + art_sys_160: -2.56004692e-20 + art_sys_161: 2.13510641e-24 + art_sys_162: 2.13510641e-24 + art_sys_163: 1.16807250e-20 + art_sys_164: 1.16807250e-20 + art_sys_165: -1.28189605e-08 + art_sys_166: -3.83822001e-09 + art_sys_167: 0.0 + art_sys_168: 1.42274661e-20 + art_sys_169: -1.50359014e-20 + art_sys_170: -5.10853255e-19 + art_sys_171: -5.51197639e-18 + art_sys_172: -1.99582166e-16 + art_sys_173: 5.24979385e-16 + art_sys_174: 1.63265041e-13 + art_sys_175: 1.48255681e-13 + art_sys_176: 6.13991396e-12 + art_sys_177: 2.01857017e-10 + art_sys_178: 3.86467183e-10 + art_sys_179: -5.79472438e-08 + art_sys_180: -5.35096112e-08 + art_sys_181: 8.05435237e-12 + art_sys_182: 7.37472745e-09 + art_sys_183: 3.68562564e-08 + art_sys_184: -1.63789208e-08 + art_sys_185: 3.82076920e-07 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -52974,127 +52974,127 @@ bins: art_sys_62: 0.0 art_sys_63: 0.0 art_sys_64: 0.0 - art_sys_65: -7.14469040e-288 - art_sys_66: -2.19978220e-212 - art_sys_67: -5.92073163e-170 - art_sys_68: -1.65496568e-159 - art_sys_69: 3.13097224e-167 - art_sys_70: -1.56077749e-165 - art_sys_71: -1.59869246e-159 - art_sys_72: 6.05643879e-147 - art_sys_73: -3.94394078e-135 - art_sys_74: -2.33223878e-137 - art_sys_75: -1.09787999e-65 - art_sys_76: 1.62670533e-36 + art_sys_65: 0.0 + art_sys_66: 0.0 + art_sys_67: 0.0 + art_sys_68: 0.0 + art_sys_69: 0.0 + art_sys_70: 0.0 + art_sys_71: 0.0 + art_sys_72: 1.41128849e-226 + art_sys_73: -8.74767854e-218 + art_sys_74: -2.72688441e-219 + art_sys_75: -1.33935641e-103 + art_sys_76: -1.62670533e-36 art_sys_77: 9.47948125e-35 art_sys_78: -6.58560642e-34 - art_sys_79: -1.58014148e-53 - art_sys_80: -3.40583425e-54 - art_sys_81: 4.76422594e-33 - art_sys_82: 2.71334412e-29 - art_sys_83: 5.74262838e-25 - art_sys_84: -2.30477273e-43 - art_sys_85: 3.77767374e-28 - art_sys_86: 2.25752726e-28 - art_sys_87: 1.81745557e-43 - art_sys_88: -5.45976987e-44 - art_sys_89: -3.01769776e-44 - art_sys_90: 5.15853408e-45 - art_sys_91: -2.14943838e-44 - art_sys_92: -8.05497555e-45 - art_sys_93: 1.91437310e-45 - art_sys_94: 1.19939283e-44 - art_sys_95: 2.96182837e-44 - art_sys_96: -2.35301674e-44 - art_sys_97: 9.77999079e-45 - art_sys_98: -3.40414377e-47 - art_sys_99: -4.42908825e-45 - art_sys_100: -2.93055599e-45 - art_sys_101: 3.40059993e-45 - art_sys_102: -1.60704193e-44 - art_sys_103: 6.04751214e-45 - art_sys_104: -5.20134342e-45 - art_sys_105: -5.07511676e-45 - art_sys_106: -1.75067768e-45 - art_sys_107: 1.06669358e-45 - art_sys_108: 3.44652352e-46 - art_sys_109: -2.31980749e-46 - art_sys_110: 6.20294244e-43 - art_sys_111: -2.61127195e-45 - art_sys_112: 1.41937208e-48 - art_sys_113: 7.37883542e-43 - art_sys_114: 1.94779981e-45 - art_sys_115: 1.27725188e-42 - art_sys_116: -1.42677150e-46 - art_sys_117: -1.89460430e-43 - art_sys_118: 2.42718506e-46 - art_sys_119: -4.71865577e-42 - art_sys_120: -1.31267080e-44 - art_sys_121: 2.63341051e-40 - art_sys_122: -2.08900730e-40 - art_sys_123: -3.24641962e-40 - art_sys_124: -6.71807355e-41 - art_sys_125: -3.74411726e-41 - art_sys_126: -1.06665824e-39 - art_sys_127: -5.12797003e-37 - art_sys_128: -1.85106927e-38 - art_sys_129: -2.76473496e-34 - art_sys_130: -1.36539258e-31 - art_sys_131: -5.54023646e-30 - art_sys_132: 2.27346785e-34 - art_sys_133: -3.19059725e-32 - art_sys_134: -1.98198923e-28 - art_sys_135: -4.86445336e-31 - art_sys_136: 7.65611079e-27 - art_sys_137: 1.37290194e-28 - art_sys_138: -2.19998143e-25 - art_sys_139: 8.33954873e-24 - art_sys_140: -7.75296643e-35 - art_sys_141: -1.91577406e-24 - art_sys_142: -0.0 - art_sys_143: 5.70891940e-25 - art_sys_144: 2.96052330e-24 - art_sys_145: 1.15192039e-24 - art_sys_146: -1.83089997e-40 - art_sys_147: 1.27431488e-35 - art_sys_148: -3.00985132e-31 - art_sys_149: 6.88267966e-26 - art_sys_150: -1.16168109e-25 - art_sys_151: -5.71934050e-25 - art_sys_152: -7.18318755e-26 - art_sys_153: -4.12837473e-25 - art_sys_154: -2.55964054e-24 - art_sys_155: -1.42121367e-23 - art_sys_156: 1.88740504e-22 - art_sys_157: 2.17470846e-21 + art_sys_79: 3.88403736e-53 + art_sys_80: 4.76422594e-33 + art_sys_81: 1.14475995e-51 + art_sys_82: 3.13310017e-54 + art_sys_83: -2.43334102e-30 + art_sys_84: 1.73115754e-29 + art_sys_85: 8.65137561e-29 + art_sys_86: 2.25493709e-28 + art_sys_87: -3.31776083e-46 + art_sys_88: 9.80900789e-46 + art_sys_89: 1.37196393e-26 + art_sys_90: 3.09505130e-44 + art_sys_91: 7.14783467e-44 + art_sys_92: 5.91862959e-25 + art_sys_93: -2.04009508e-24 + art_sys_94: -9.53463333e-43 + art_sys_95: 1.41805764e-42 + art_sys_96: 7.83053283e-43 + art_sys_97: 9.70219142e-43 + art_sys_98: -1.95224146e-42 + art_sys_99: -1.16113278e-42 + art_sys_100: -4.07450780e-43 + art_sys_101: -5.06767545e-43 + art_sys_102: 1.27154240e-43 + art_sys_103: 3.27829577e-43 + art_sys_104: 5.49794080e-43 + art_sys_105: -5.73061079e-43 + art_sys_106: -4.17628274e-43 + art_sys_107: -5.09584809e-43 + art_sys_108: 5.07227654e-44 + art_sys_109: 1.04295710e-42 + art_sys_110: -2.93790497e-43 + art_sys_111: -8.36173227e-44 + art_sys_112: -5.67935686e-43 + art_sys_113: -5.66048441e-45 + art_sys_114: -8.03934487e-43 + art_sys_115: -8.49493400e-44 + art_sys_116: 3.79836200e-43 + art_sys_117: 1.89956237e-40 + art_sys_118: 1.23383729e-43 + art_sys_119: -2.00447691e-44 + art_sys_120: -9.33831824e-44 + art_sys_121: 4.46925807e-36 + art_sys_122: 1.99221739e-43 + art_sys_123: -1.37499437e-43 + art_sys_124: 2.65877508e-43 + art_sys_125: -7.16210806e-32 + art_sys_126: -3.82258103e-44 + art_sys_127: 5.19753606e-39 + art_sys_128: -6.27662177e-44 + art_sys_129: -7.85010487e-28 + art_sys_130: 1.32591061e-34 + art_sys_131: -5.71583941e-27 + art_sys_132: 6.43504263e-41 + art_sys_133: -1.05676661e-30 + art_sys_134: 3.76868614e-36 + art_sys_135: -6.83287690e-37 + art_sys_136: -9.79213230e-27 + art_sys_137: -6.27952567e-29 + art_sys_138: 1.07959694e-33 + art_sys_139: 2.28241160e-27 + art_sys_140: -3.74435175e-25 + art_sys_141: 1.26043068e-29 + art_sys_142: -2.90170651e-32 + art_sys_143: 1.34284694e-28 + art_sys_144: -9.53788522e-25 + art_sys_145: -4.47435392e-29 + art_sys_146: -3.05791145e-25 + art_sys_147: 1.20241261e-23 + art_sys_148: 4.69385762e-24 + art_sys_149: 7.47326040e-27 + art_sys_150: -1.14640423e-24 + art_sys_151: 1.60714362e-24 + art_sys_152: -1.79846206e-23 + art_sys_153: 2.49655786e-25 + art_sys_154: -5.02621602e-35 + art_sys_155: 6.62071875e-23 + art_sys_156: 0.0 + art_sys_157: 1.00934300e-26 art_sys_158: 0.0 - art_sys_159: 6.21208972e-25 - art_sys_160: 6.21208972e-25 - art_sys_161: 1.54856880e-19 - art_sys_162: 1.42436114e-07 - art_sys_163: -0.0 - art_sys_164: -9.91106212e-10 - art_sys_165: -1.37283990e-26 - art_sys_166: 3.54173714e-25 - art_sys_167: 2.04009526e-24 - art_sys_168: -4.33122166e-22 - art_sys_169: 5.00707891e-22 - art_sys_170: 1.54457227e-20 - art_sys_171: -1.66510597e-19 - art_sys_172: -6.05964915e-18 - art_sys_173: -1.58555972e-17 - art_sys_174: -5.70227358e-10 - art_sys_175: -4.77329394e-15 - art_sys_176: -2.98728692e-15 - art_sys_177: -1.77844764e-13 - art_sys_178: 2.79539098e-13 - art_sys_179: 5.70029817e-12 - art_sys_180: 1.28564049e-11 - art_sys_181: 2.06268680e-10 - art_sys_182: -1.14130405e-09 - art_sys_183: 1.06113472e-11 - art_sys_184: -9.95122282e-09 - art_sys_185: -5.55355500e-09 + art_sys_159: -3.00125716e-24 + art_sys_160: -4.56744226e-22 + art_sys_161: 2.61941482e-24 + art_sys_162: 2.61941482e-24 + art_sys_163: 2.18990543e-21 + art_sys_164: 2.18990543e-21 + art_sys_165: 1.42436114e-07 + art_sys_166: 9.91106211e-10 + art_sys_167: 0.0 + art_sys_168: 4.33122222e-22 + art_sys_169: -5.00713506e-22 + art_sys_170: -1.54457188e-20 + art_sys_171: -1.66510581e-19 + art_sys_172: -6.05964955e-18 + art_sys_173: 1.58555969e-17 + art_sys_174: 4.77329394e-15 + art_sys_175: 2.98728692e-15 + art_sys_176: 1.77844764e-13 + art_sys_177: 5.70029817e-12 + art_sys_178: 1.28564049e-11 + art_sys_179: 5.70227358e-10 + art_sys_180: -5.55355500e-09 + art_sys_181: 2.79539098e-13 + art_sys_182: 2.06268680e-10 + art_sys_183: 1.14130405e-09 + art_sys_184: 1.06113472e-11 + art_sys_185: 9.95122282e-09 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -55821,190 +55821,190 @@ bins: luminosity_uncertainty: 4.83381600e+02 uncorrelated_uncertainty: 185.916 - art_sys_1: 5.66210590e-14 - art_sys_2: -3.77775940e-14 + art_sys_2: -3.22733560e-14 art_sys_3: -1.61153998e+02 - art_sys_4: -3.80686109e-14 + art_sys_4: 4.54515521e-15 art_sys_5: -3.30097149e+01 - art_sys_6: 2.77191027e-14 - art_sys_7: 1.73279604e-14 + art_sys_6: 1.79137873e-14 + art_sys_7: 1.27129730e-14 art_sys_8: 1.13391038e+01 - art_sys_9: -7.06154604e-15 - art_sys_10: -1.94090088e-15 + art_sys_9: -4.44289958e-15 + art_sys_10: -1.42177574e-15 art_sys_11: -1.78364090e+00 - art_sys_12: -1.99804023e-15 - art_sys_13: -5.23811573e-15 - art_sys_14: 1.09842491e-15 - art_sys_15: 2.92725113e-02 - art_sys_16: 6.64439190e-16 - art_sys_17: -6.89481947e-17 + art_sys_12: -2.01723758e-15 + art_sys_13: 4.84842050e-15 + art_sys_14: -1.07984120e-15 + art_sys_15: -2.92725113e-02 + art_sys_16: -6.66504064e-16 + art_sys_17: 1.43554668e-16 art_sys_18: -8.67938826e-03 - art_sys_19: -2.22575304e-16 - art_sys_20: -1.30912919e-15 + art_sys_19: 2.26281367e-16 + art_sys_20: 2.63973819e-16 art_sys_21: 4.32484912e-03 - art_sys_22: 1.03215121e-15 - art_sys_23: -8.19484456e-16 + art_sys_22: 3.29985512e-16 + art_sys_23: -8.20220586e-16 art_sys_24: 1.00707911e-03 - art_sys_25: -8.71717237e-18 - art_sys_26: 6.05298415e-17 - art_sys_27: -1.97892746e-06 - art_sys_28: 9.54330708e-17 - art_sys_29: 9.88769773e-17 - art_sys_30: 1.07310709e-17 - art_sys_31: -9.80612658e-19 - art_sys_32: 2.38820306e-20 - art_sys_33: -4.21308729e-20 - art_sys_34: -1.50590843e-19 - art_sys_35: -1.71640809e-19 - art_sys_36: 3.38370985e-07 - art_sys_37: 7.78589314e-17 - art_sys_38: -7.59162815e-19 - art_sys_39: -3.75690298e-17 - art_sys_40: -2.69849557e-07 - art_sys_41: 2.93268989e-17 - art_sys_42: -3.36831439e-18 - art_sys_43: -1.58041607e-17 - art_sys_44: 1.15128762e-18 - art_sys_45: -5.87074330e-18 - art_sys_46: 2.52284988e-09 - art_sys_47: -1.70658201e-19 - art_sys_48: -2.32338639e-18 + art_sys_25: 8.59317264e-18 + art_sys_26: 6.04246870e-17 + art_sys_27: 1.97892746e-06 + art_sys_28: -1.35936226e-16 + art_sys_29: 3.38370985e-07 + art_sys_30: 7.51813856e-17 + art_sys_31: 3.26312265e-17 + art_sys_32: -2.69849557e-07 + art_sys_33: -3.11281386e-17 + art_sys_34: 1.30107678e-17 + art_sys_35: -1.28460532e-17 + art_sys_36: 4.68573647e-17 + art_sys_37: 5.43606009e-19 + art_sys_38: 3.93353151e-20 + art_sys_39: -2.40582835e-20 + art_sys_40: 9.47886128e-20 + art_sys_41: 1.73757907e-19 + art_sys_42: -2.75385697e-19 + art_sys_43: -7.00544997e-19 + art_sys_44: -1.23197292e-19 + art_sys_45: 1.63913265e-19 + art_sys_46: 9.71474929e-20 + art_sys_47: 2.52284988e-09 + art_sys_48: 3.33555880e-17 art_sys_49: -1.80492884e-09 - art_sys_50: -3.53548599e-20 - art_sys_51: 1.38813191e-19 - art_sys_52: 5.90740955e-18 - art_sys_53: 8.39130722e-19 + art_sys_50: 6.63165100e-21 + art_sys_51: 5.38894646e-20 + art_sys_52: -1.87290658e-18 + art_sys_53: 5.26283831e-18 art_sys_54: -4.15197235e-10 - art_sys_55: 3.97457610e-18 - art_sys_56: -5.44294003e-19 - art_sys_57: 1.79787636e-20 - art_sys_58: 9.71294105e-22 - art_sys_59: -1.06966977e-22 - art_sys_60: -1.29510208e-19 - art_sys_61: -2.88800604e-22 - art_sys_62: 1.28216920e-23 - art_sys_63: 3.52383882e-24 - art_sys_64: 7.70180758e-25 - art_sys_65: -1.85369873e-25 - art_sys_66: -3.40771446e-21 - art_sys_67: -1.02049137e-25 - art_sys_68: -1.02605793e-25 - art_sys_69: -1.85773925e-20 - art_sys_70: -8.88538270e-18 - art_sys_71: -1.05808188e-11 - art_sys_72: -6.94634939e-20 - art_sys_73: 7.59288955e-22 - art_sys_74: -2.90248098e-12 - art_sys_75: 9.49362930e-25 - art_sys_76: -3.10786964e-23 - art_sys_77: 1.46789362e-23 - art_sys_78: -8.64387029e-25 - art_sys_79: -1.39251170e-22 - art_sys_80: -5.74325088e-13 - art_sys_81: 5.13112390e-27 - art_sys_82: -4.20539678e-26 - art_sys_83: 4.78418995e-27 - art_sys_84: 2.00624948e-24 - art_sys_85: 1.91094988e-27 - art_sys_86: -2.07823249e-28 - art_sys_87: 5.97780551e-24 - art_sys_88: 1.23826705e-23 - art_sys_89: -5.59661750e-25 - art_sys_90: 2.00339232e-18 - art_sys_91: 5.12698935e-19 - art_sys_92: -1.02962382e-22 - art_sys_93: 2.56618508e-19 - art_sys_94: 1.40892883e-22 - art_sys_95: -3.73633789e-20 - art_sys_96: 9.38759672e-25 - art_sys_97: -1.39979565e-20 - art_sys_98: 1.43747699e-20 - art_sys_99: 4.12611652e-21 - art_sys_100: -6.43544102e-22 - art_sys_101: -8.71450655e-20 - art_sys_102: -1.10490406e-23 - art_sys_103: -1.82778692e-20 - art_sys_104: -2.79351096e-20 - art_sys_105: 1.78057132e-25 - art_sys_106: -6.40277603e-21 - art_sys_107: -9.45835082e-22 - art_sys_108: -1.28480808e-21 - art_sys_109: 2.79628161e-15 - art_sys_110: 2.45918451e-25 - art_sys_111: 5.20571842e-20 - art_sys_112: -7.79914241e-21 - art_sys_113: 1.69763693e-25 - art_sys_114: -2.60932408e-20 - art_sys_115: -6.04933368e-22 - art_sys_116: 3.84983505e-16 - art_sys_117: -8.62007430e-27 - art_sys_118: -4.31966118e-20 - art_sys_119: -7.58470294e-23 - art_sys_120: 2.50452291e-20 - art_sys_121: -7.47378846e-17 - art_sys_122: -2.30121059e-23 - art_sys_123: -4.71227223e-21 - art_sys_124: -1.83989964e-20 - art_sys_125: 7.85144835e-21 - art_sys_126: 1.38033181e-17 - art_sys_127: -1.46059636e-21 - art_sys_128: 3.74911354e-21 - art_sys_129: -2.12873037e-22 - art_sys_130: 1.54299246e-20 - art_sys_131: 1.49671479e-20 - art_sys_132: 4.36365865e-21 - art_sys_133: -1.79095597e-18 - art_sys_134: 6.53599191e-20 - art_sys_135: -4.81394058e-21 - art_sys_136: 5.37626446e-21 - art_sys_137: -3.82006713e-22 - art_sys_138: -9.54123895e-21 - art_sys_139: 2.80982399e-20 - art_sys_140: -1.74147857e-23 - art_sys_141: 2.42227777e-22 - art_sys_142: -0.0 - art_sys_143: -1.04681739e-21 - art_sys_144: -1.58943243e-21 - art_sys_145: -1.64281426e-21 - art_sys_146: 6.63379249e-25 - art_sys_147: -1.26268336e-24 - art_sys_148: -3.80627438e-24 - art_sys_149: -2.41930134e-24 - art_sys_150: -7.17852971e-24 - art_sys_151: -1.73840695e-23 - art_sys_152: 1.20505388e-23 - art_sys_153: 2.35297837e-25 - art_sys_154: -2.07660137e-24 - art_sys_155: -5.89465296e-25 - art_sys_156: -3.10648970e-24 - art_sys_157: -1.30493150e-23 - art_sys_158: -0.0 - art_sys_159: 1.37192404e-21 - art_sys_160: 1.37192404e-21 - art_sys_161: -8.92352646e-23 - art_sys_162: 3.32836104e-35 - art_sys_163: 0.0 - art_sys_164: 2.02222998e-35 - art_sys_165: 1.34065328e-31 - art_sys_166: 2.93730597e-31 - art_sys_167: 9.64388672e-32 - art_sys_168: -1.06212894e-32 - art_sys_169: -4.41181944e-33 - art_sys_170: 1.12627797e-32 - art_sys_171: -7.53226830e-33 - art_sys_172: 2.82822785e-32 - art_sys_173: 2.25017555e-33 - art_sys_174: -3.43545155e-37 - art_sys_175: 3.77483791e-34 - art_sys_176: -2.22949495e-34 - art_sys_177: 2.55935098e-36 - art_sys_178: -5.09338418e-36 - art_sys_179: -2.65749075e-36 - art_sys_180: -7.04228585e-36 - art_sys_181: 8.73506640e-37 - art_sys_182: -8.49566114e-37 - art_sys_183: 6.05034778e-39 - art_sys_184: 7.47296018e-39 - art_sys_185: 1.06905093e-36 + art_sys_55: -3.57930295e-18 + art_sys_56: 7.61740615e-19 + art_sys_57: -5.77796309e-20 + art_sys_58: 3.66162400e-22 + art_sys_59: -1.63347469e-18 + art_sys_60: -1.05808172e-11 + art_sys_61: -5.85449725e-21 + art_sys_62: -6.09455184e-20 + art_sys_63: 2.90248291e-12 + art_sys_64: 3.20312862e-20 + art_sys_65: -2.56819725e-21 + art_sys_66: 2.07455486e-21 + art_sys_67: -8.76348809e-23 + art_sys_68: 9.24798712e-24 + art_sys_69: -5.07698460e-24 + art_sys_70: -2.21819550e-24 + art_sys_71: -1.67857503e-25 + art_sys_72: 4.32184035e-26 + art_sys_73: -2.38852782e-26 + art_sys_74: -4.51979076e-22 + art_sys_75: -5.01034015e-26 + art_sys_76: 6.83020144e-24 + art_sys_77: 1.92825647e-23 + art_sys_78: 4.83999557e-25 + art_sys_79: 8.94454311e-25 + art_sys_80: -2.61011464e-26 + art_sys_81: -7.91488219e-22 + art_sys_82: 5.74327083e-13 + art_sys_83: 2.86139094e-26 + art_sys_84: 1.08390175e-26 + art_sys_85: -1.31935449e-26 + art_sys_86: -2.15249824e-27 + art_sys_87: 9.78884403e-26 + art_sys_88: 6.97780948e-23 + art_sys_89: 1.97313744e-29 + art_sys_90: -2.17764313e-26 + art_sys_91: 1.18911565e-18 + art_sys_92: 4.40653580e-28 + art_sys_93: -2.33264266e-28 + art_sys_94: -1.57401036e-23 + art_sys_95: 1.14205214e-22 + art_sys_96: -8.27844489e-19 + art_sys_97: -2.92522976e-20 + art_sys_98: 3.80101513e-23 + art_sys_99: -1.07952306e-19 + art_sys_100: 2.15025917e-23 + art_sys_101: 8.59956909e-20 + art_sys_102: 3.55830308e-22 + art_sys_103: 2.25148347e-21 + art_sys_104: -6.75501161e-20 + art_sys_105: -7.74440317e-23 + art_sys_106: 8.98959607e-21 + art_sys_107: -7.10020830e-22 + art_sys_108: -1.25868989e-22 + art_sys_109: 4.95383126e-24 + art_sys_110: 3.28228252e-21 + art_sys_111: -1.29571148e-20 + art_sys_112: 2.79625971e-15 + art_sys_113: -1.25690845e-20 + art_sys_114: 9.39069650e-25 + art_sys_115: -6.41778771e-23 + art_sys_116: 4.00111626e-22 + art_sys_117: 5.38631238e-25 + art_sys_118: 1.91502976e-21 + art_sys_119: 5.16747501e-22 + art_sys_120: 3.84969316e-16 + art_sys_121: -3.93039983e-25 + art_sys_122: -1.79518532e-21 + art_sys_123: -2.48561995e-22 + art_sys_124: 1.88024236e-23 + art_sys_125: 4.15059048e-25 + art_sys_126: 7.47377722e-17 + art_sys_127: 3.64283034e-22 + art_sys_128: 7.45864628e-22 + art_sys_129: 1.24103389e-24 + art_sys_130: -8.57360416e-21 + art_sys_131: -1.72647016e-23 + art_sys_132: -7.28115039e-21 + art_sys_133: 1.91247136e-20 + art_sys_134: 1.38085308e-17 + art_sys_135: 3.08344262e-21 + art_sys_136: 5.03328617e-23 + art_sys_137: -2.89939173e-21 + art_sys_138: 1.82871290e-22 + art_sys_139: 4.46860529e-20 + art_sys_140: -1.18554604e-23 + art_sys_141: 1.79264375e-18 + art_sys_142: -9.09309582e-23 + art_sys_143: -3.16574714e-21 + art_sys_144: 8.92452243e-23 + art_sys_145: 2.38985742e-21 + art_sys_146: 2.33501216e-22 + art_sys_147: -1.91092261e-24 + art_sys_148: -1.24324537e-24 + art_sys_149: -1.53163879e-23 + art_sys_150: 9.84303353e-22 + art_sys_151: 2.41490301e-20 + art_sys_152: 2.43439340e-24 + art_sys_153: 2.59921291e-21 + art_sys_154: 1.52444394e-22 + art_sys_155: -1.04131957e-23 + art_sys_156: 0.0 + art_sys_157: 7.77413969e-23 + art_sys_158: 0.0 + art_sys_159: 5.45523977e-22 + art_sys_160: 5.46174421e-24 + art_sys_161: -7.46868372e-23 + art_sys_162: -7.46868372e-23 + art_sys_163: -6.32094514e-23 + art_sys_164: -6.32094514e-23 + art_sys_165: 7.35873080e-37 + art_sys_166: -2.44888924e-37 + art_sys_167: -0.0 + art_sys_168: 3.11985394e-32 + art_sys_169: 3.07639973e-32 + art_sys_170: 1.08352941e-32 + art_sys_171: 1.59232756e-32 + art_sys_172: -2.29279341e-33 + art_sys_173: -5.44659005e-34 + art_sys_174: -1.79476070e-34 + art_sys_175: -1.83179064e-34 + art_sys_176: 8.16590175e-35 + art_sys_177: -3.31866635e-35 + art_sys_178: -5.11620525e-35 + art_sys_179: 3.41126812e-36 + art_sys_180: 1.41574162e-35 + art_sys_181: -1.60795343e-35 + art_sys_182: 4.51292949e-36 + art_sys_183: -3.01545098e-38 + art_sys_184: -6.07209379e-38 + art_sys_185: 2.00494712e-38 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -56112,190 +56112,190 @@ bins: luminosity_uncertainty: 4.83381600e+02 uncorrelated_uncertainty: 185.916 - art_sys_1: 7.33133957e-14 - art_sys_2: 3.31687128e-14 + art_sys_2: 3.47508813e-14 art_sys_3: -8.52558389e+01 - art_sys_4: 7.77398616e-14 + art_sys_4: 1.03995593e-14 art_sys_5: 5.81247708e+01 - art_sys_6: -3.32340387e-14 - art_sys_7: -1.70616265e-14 + art_sys_6: -2.06251145e-14 + art_sys_7: -7.08944093e-15 art_sys_8: -1.98691711e+01 - art_sys_9: 1.59269476e-14 - art_sys_10: 5.92253827e-15 + art_sys_9: 8.78290703e-15 + art_sys_10: 5.53553390e-15 art_sys_11: 5.01987495e+00 - art_sys_12: 8.30612695e-15 - art_sys_13: 1.39851578e-14 - art_sys_14: -3.83038206e-15 - art_sys_15: -9.36409003e-02 - art_sys_16: -1.16395874e-15 - art_sys_17: -4.20915600e-17 + art_sys_12: 8.60287903e-15 + art_sys_13: -1.33596212e-14 + art_sys_14: 3.73794688e-15 + art_sys_15: 9.36409003e-02 + art_sys_16: 1.16973067e-15 + art_sys_17: 6.14542600e-16 art_sys_18: 2.85277054e-02 - art_sys_19: 3.75084360e-16 - art_sys_20: 3.39898517e-15 + art_sys_19: -3.88402061e-16 + art_sys_20: -7.82515615e-16 art_sys_21: -1.56399807e-02 - art_sys_22: -2.92896720e-15 - art_sys_23: 2.33825839e-15 + art_sys_22: -1.06385630e-15 + art_sys_23: 2.34116465e-15 art_sys_24: -3.82749610e-03 - art_sys_25: 5.23850648e-17 - art_sys_26: -1.27666224e-16 - art_sys_27: 1.07622457e-05 - art_sys_28: -2.55852521e-16 - art_sys_29: -3.09911372e-16 - art_sys_30: -5.39449792e-18 - art_sys_31: 9.32536019e-19 - art_sys_32: -8.39130744e-20 - art_sys_33: 3.60464761e-20 - art_sys_34: 6.03669662e-19 - art_sys_35: 4.93050872e-19 - art_sys_36: -2.18339375e-06 - art_sys_37: -2.13372471e-16 - art_sys_38: -3.20353602e-19 - art_sys_39: 1.24847827e-16 - art_sys_40: 1.47227065e-06 - art_sys_41: -6.42731492e-17 - art_sys_42: 3.20615411e-18 - art_sys_43: 2.80150720e-17 - art_sys_44: -9.64914100e-19 - art_sys_45: 2.98708673e-17 - art_sys_46: -3.72127349e-08 - art_sys_47: 3.33593944e-20 - art_sys_48: -2.42942456e-18 + art_sys_25: -5.20484850e-17 + art_sys_26: -1.28138481e-16 + art_sys_27: -1.07622457e-05 + art_sys_28: 3.61084817e-16 + art_sys_29: -2.18339375e-06 + art_sys_30: -2.11374188e-16 + art_sys_31: -1.16200726e-16 + art_sys_32: 1.47227065e-06 + art_sys_33: 6.53813877e-17 + art_sys_34: -2.68572822e-17 + art_sys_35: 4.86023220e-17 + art_sys_36: 1.60090176e-16 + art_sys_37: 2.48875696e-18 + art_sys_38: -3.82440651e-19 + art_sys_39: 5.66496113e-20 + art_sys_40: -6.44880401e-20 + art_sys_41: 7.64851170e-21 + art_sys_42: 4.95781091e-19 + art_sys_43: 4.78395704e-19 + art_sys_44: 5.42229949e-18 + art_sys_45: -1.32982388e-18 + art_sys_46: 9.76037358e-22 + art_sys_47: -3.72127349e-08 + art_sys_48: -1.86807738e-16 art_sys_49: 1.05364930e-08 - art_sys_50: -4.99675733e-20 - art_sys_51: 1.23745933e-19 - art_sys_52: -8.75171295e-18 - art_sys_53: -7.00293803e-18 + art_sys_50: -7.16077540e-21 + art_sys_51: -1.62887986e-20 + art_sys_52: 5.72125593e-18 + art_sys_53: -7.99763769e-18 art_sys_54: 3.35859084e-09 - art_sys_55: -1.52397054e-17 - art_sys_56: 2.99228044e-18 - art_sys_57: -3.85470198e-20 - art_sys_58: -3.98891758e-21 - art_sys_59: 1.19964516e-21 - art_sys_60: -5.44986945e-20 - art_sys_61: 8.31241279e-22 - art_sys_62: 3.23418550e-25 - art_sys_63: -2.93237564e-23 - art_sys_64: -6.22621761e-25 - art_sys_65: 7.47740030e-25 - art_sys_66: 3.90786745e-20 - art_sys_67: 8.24638566e-25 - art_sys_68: 5.72046230e-25 - art_sys_69: 1.28253258e-19 - art_sys_70: 6.59414162e-17 - art_sys_71: 7.93975133e-11 - art_sys_72: 4.57889274e-19 - art_sys_73: -3.31870777e-21 - art_sys_74: 1.87485014e-11 - art_sys_75: 3.99836777e-24 - art_sys_76: 2.41144013e-22 - art_sys_77: -1.15044769e-22 - art_sys_78: 6.62603235e-24 - art_sys_79: 1.05903232e-21 - art_sys_80: 4.41112335e-12 - art_sys_81: -1.37766143e-26 - art_sys_82: 1.44178805e-25 - art_sys_83: -1.50527138e-26 - art_sys_84: -6.70359340e-25 - art_sys_85: -8.41146036e-27 - art_sys_86: -6.93291870e-27 - art_sys_87: -1.71206522e-23 - art_sys_88: -6.40295513e-23 - art_sys_89: 2.13641280e-24 - art_sys_90: -1.11202562e-17 - art_sys_91: -4.89603835e-18 - art_sys_92: 1.66298547e-22 - art_sys_93: -1.92387311e-18 - art_sys_94: -7.01893137e-22 - art_sys_95: 6.54607542e-20 - art_sys_96: -4.19208233e-24 - art_sys_97: 4.96738516e-20 - art_sys_98: -2.98384629e-20 - art_sys_99: 1.04085918e-21 - art_sys_100: 2.20508368e-21 - art_sys_101: 1.68246510e-19 - art_sys_102: 5.23678380e-23 - art_sys_103: 9.49289923e-20 - art_sys_104: 5.23270085e-20 - art_sys_105: -1.27391254e-24 - art_sys_106: 1.58250971e-20 - art_sys_107: 8.76083378e-21 - art_sys_108: 6.61931336e-21 - art_sys_109: -9.90574721e-15 - art_sys_110: -1.51552999e-24 - art_sys_111: -1.82401030e-19 - art_sys_112: 3.52374981e-20 - art_sys_113: -1.04622142e-24 - art_sys_114: 7.70852366e-20 - art_sys_115: 2.76330199e-21 - art_sys_116: -1.98415564e-15 - art_sys_117: 5.59454084e-26 - art_sys_118: 1.43840367e-19 - art_sys_119: 3.48018236e-22 - art_sys_120: -8.39709970e-20 - art_sys_121: 3.84114102e-16 - art_sys_122: 7.25156623e-21 - art_sys_123: 2.22844311e-20 - art_sys_124: 9.34938965e-20 - art_sys_125: -3.97518459e-20 - art_sys_126: -6.30799697e-17 - art_sys_127: 6.22384413e-21 - art_sys_128: -1.78508211e-20 - art_sys_129: 1.16614669e-21 - art_sys_130: -7.33240225e-20 - art_sys_131: -7.07805165e-20 - art_sys_132: -1.99503092e-20 - art_sys_133: 8.48352173e-18 - art_sys_134: -3.08996192e-19 - art_sys_135: 2.18851593e-20 - art_sys_136: -2.73677382e-20 - art_sys_137: 1.51005292e-21 - art_sys_138: 6.38226988e-20 - art_sys_139: -1.76503639e-19 - art_sys_140: 1.51195769e-22 - art_sys_141: -7.30228109e-21 - art_sys_142: 0.0 - art_sys_143: 5.35986869e-21 - art_sys_144: 1.07824132e-20 - art_sys_145: 1.41467969e-20 - art_sys_146: -4.32928375e-24 - art_sys_147: 8.26257022e-24 - art_sys_148: 2.08072980e-23 - art_sys_149: 1.50212278e-23 - art_sys_150: 4.96891250e-23 - art_sys_151: 9.38110644e-23 - art_sys_152: -5.64139134e-23 - art_sys_153: -1.08171632e-24 - art_sys_154: 8.76842504e-24 - art_sys_155: 1.01205690e-23 - art_sys_156: 3.30456037e-23 - art_sys_157: 8.40598133e-23 - art_sys_158: 0.0 - art_sys_159: -7.39968087e-21 - art_sys_160: -7.39968087e-21 - art_sys_161: 4.84475527e-22 - art_sys_162: -1.80600182e-34 - art_sys_163: -0.0 - art_sys_164: -1.09685824e-34 - art_sys_165: -8.94698476e-31 - art_sys_166: -1.90711212e-30 - art_sys_167: -6.35947485e-31 - art_sys_168: 5.47542061e-32 - art_sys_169: 1.97801078e-32 - art_sys_170: -5.26975031e-32 - art_sys_171: -1.86293272e-32 - art_sys_172: -4.33393771e-32 - art_sys_173: 4.55785065e-34 - art_sys_174: 7.32987120e-36 - art_sys_175: -1.42320345e-33 - art_sys_176: -7.97600844e-34 - art_sys_177: 1.39313036e-34 - art_sys_178: 2.46385684e-35 - art_sys_179: 4.10889893e-36 - art_sys_180: 3.08720712e-35 - art_sys_181: -6.08638219e-36 - art_sys_182: 3.46026837e-36 - art_sys_183: -2.51096726e-38 - art_sys_184: -3.51247273e-38 - art_sys_185: -5.78639831e-36 + art_sys_55: 1.25070561e-17 + art_sys_56: -4.06150117e-18 + art_sys_57: 3.75153258e-20 + art_sys_58: -6.36580533e-22 + art_sys_59: 1.18586069e-17 + art_sys_60: 7.93975047e-11 + art_sys_61: 1.20509204e-22 + art_sys_62: 2.51404569e-19 + art_sys_63: -1.87485134e-11 + art_sys_64: -7.82356346e-20 + art_sys_65: 6.67914428e-21 + art_sys_66: -1.60658466e-21 + art_sys_67: 1.79996078e-22 + art_sys_68: -1.19907406e-23 + art_sys_69: 6.77453183e-24 + art_sys_70: 2.29848027e-24 + art_sys_71: -1.43425399e-25 + art_sys_72: -3.05340674e-25 + art_sys_73: 1.72901675e-25 + art_sys_74: -1.98784214e-21 + art_sys_75: -4.96199868e-26 + art_sys_76: -4.92830472e-23 + art_sys_77: -1.47055128e-22 + art_sys_78: -4.39146040e-24 + art_sys_79: -7.46411205e-25 + art_sys_80: 2.65453802e-27 + art_sys_81: 6.08459766e-21 + art_sys_82: -4.41113855e-12 + art_sys_83: -9.56828379e-26 + art_sys_84: -4.46921968e-26 + art_sys_85: 4.50993780e-26 + art_sys_86: 8.52885426e-27 + art_sys_87: 2.13470551e-25 + art_sys_88: -2.47166289e-22 + art_sys_89: -4.55804651e-29 + art_sys_90: 2.31684724e-24 + art_sys_91: -8.35097717e-18 + art_sys_92: -1.53582630e-27 + art_sys_93: 8.50318639e-28 + art_sys_94: 8.09325402e-23 + art_sys_95: 4.56735813e-22 + art_sys_96: 7.72086542e-18 + art_sys_97: 2.58704140e-19 + art_sys_98: 4.63332915e-23 + art_sys_99: 6.90654619e-19 + art_sys_100: 3.83663140e-23 + art_sys_101: -6.67652498e-19 + art_sys_102: -1.26969277e-21 + art_sys_103: -1.02442665e-20 + art_sys_104: 1.93168227e-19 + art_sys_105: 3.66821456e-22 + art_sys_106: 3.64622632e-21 + art_sys_107: 3.61173582e-21 + art_sys_108: 5.96210510e-22 + art_sys_109: -2.32676270e-23 + art_sys_110: -2.78411370e-21 + art_sys_111: 1.16518160e-20 + art_sys_112: -9.90567004e-15 + art_sys_113: 1.00824380e-19 + art_sys_114: -4.48032256e-24 + art_sys_115: 1.06578175e-20 + art_sys_116: -1.98349998e-21 + art_sys_117: -2.36822275e-24 + art_sys_118: -7.32152372e-21 + art_sys_119: -2.90468294e-21 + art_sys_120: -1.98408281e-15 + art_sys_121: 1.94258491e-24 + art_sys_122: 7.98064828e-21 + art_sys_123: 1.13397623e-21 + art_sys_124: -1.32692389e-21 + art_sys_125: -3.05326491e-24 + art_sys_126: -3.84113040e-16 + art_sys_127: -1.37793766e-21 + art_sys_128: -3.87972398e-21 + art_sys_129: -7.93320077e-24 + art_sys_130: 4.06527179e-20 + art_sys_131: 1.10425203e-22 + art_sys_132: 3.74005490e-20 + art_sys_133: -9.04042740e-20 + art_sys_134: -6.31037514e-17 + art_sys_135: -1.57402230e-20 + art_sys_136: -3.25212502e-22 + art_sys_137: 1.39416406e-20 + art_sys_138: -7.96405569e-22 + art_sys_139: -2.11770135e-19 + art_sys_140: 6.99292686e-23 + art_sys_141: -8.49111568e-18 + art_sys_142: 3.60518513e-22 + art_sys_143: 1.49908322e-20 + art_sys_144: -4.51790246e-22 + art_sys_145: -1.08738603e-20 + art_sys_146: -1.10687295e-21 + art_sys_147: 8.01752704e-24 + art_sys_148: 4.32799543e-24 + art_sys_149: -1.11396592e-23 + art_sys_150: -5.11051129e-21 + art_sys_151: -1.57844160e-19 + art_sys_152: -2.45644553e-23 + art_sys_153: -1.37541296e-20 + art_sys_154: -7.74861985e-22 + art_sys_155: 6.03013532e-23 + art_sys_156: -0.0 + art_sys_157: -3.45611204e-22 + art_sys_158: -0.0 + art_sys_159: -2.48909870e-21 + art_sys_160: -2.05745814e-24 + art_sys_161: 3.44408800e-22 + art_sys_162: 3.44408800e-22 + art_sys_163: 3.00152933e-22 + art_sys_164: 3.00152933e-22 + art_sys_165: -3.47620798e-36 + art_sys_166: 1.15667682e-36 + art_sys_167: 0.0 + art_sys_168: -2.18933682e-31 + art_sys_169: -1.95998336e-31 + art_sys_170: -1.26677599e-31 + art_sys_171: -7.94389297e-32 + art_sys_172: 1.54854841e-32 + art_sys_173: 8.12156790e-34 + art_sys_174: 2.18927651e-33 + art_sys_175: 1.00789953e-33 + art_sys_176: -4.25400327e-34 + art_sys_177: 1.88544799e-34 + art_sys_178: 2.75281976e-34 + art_sys_179: -1.95972251e-35 + art_sys_180: -6.53941714e-35 + art_sys_181: 8.91791602e-35 + art_sys_182: -3.15320487e-35 + art_sys_183: 1.81655819e-37 + art_sys_184: 2.96192405e-37 + art_sys_185: -9.15562522e-38 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -56403,190 +56403,190 @@ bins: luminosity_uncertainty: 241.8286 uncorrelated_uncertainty: 9.30110000e+01 - art_sys_1: 1.03315152e-14 - art_sys_2: 7.83146434e-14 + art_sys_2: 7.83974319e-14 art_sys_3: -8.35379826e+00 - art_sys_4: 9.06012275e-14 + art_sys_4: -7.87418175e-14 art_sys_5: 5.65117323e+01 - art_sys_6: 4.59852596e-15 - art_sys_7: 2.43151883e-14 + art_sys_6: 1.69109276e-14 + art_sys_7: 1.21553236e-14 art_sys_8: 1.98072711e+01 - art_sys_9: -1.75104661e-14 - art_sys_10: -8.05103252e-15 + art_sys_9: -5.52348722e-15 + art_sys_10: -8.04786590e-15 art_sys_11: -7.92238438e+00 - art_sys_12: -1.28944893e-14 - art_sys_13: -3.28567190e-14 - art_sys_14: 5.07280640e-15 - art_sys_15: 3.13455227e-01 - art_sys_16: 1.50311220e-15 - art_sys_17: 9.37644590e-16 + art_sys_12: -1.32358262e-14 + art_sys_13: 3.13044044e-14 + art_sys_14: -4.77492602e-15 + art_sys_15: -3.13455227e-01 + art_sys_16: -1.51018316e-15 + art_sys_17: -5.00540631e-16 art_sys_18: -7.50215504e-02 - art_sys_19: -7.42511148e-16 - art_sys_20: -5.50626272e-15 + art_sys_19: 7.86183286e-16 + art_sys_20: 9.38600314e-16 art_sys_21: 4.86733428e-02 - art_sys_22: 4.76708378e-15 - art_sys_23: -3.68776372e-15 + art_sys_22: 1.73764774e-15 + art_sys_23: -3.69592620e-15 art_sys_24: 1.23672193e-02 - art_sys_25: -7.94154226e-17 - art_sys_26: 2.44548236e-16 - art_sys_27: -3.08573026e-05 - art_sys_28: 4.03778142e-16 - art_sys_29: -1.11347166e-16 - art_sys_30: 1.49951986e-17 - art_sys_31: -3.78085327e-18 - art_sys_32: 3.19700137e-19 - art_sys_33: -3.52047621e-19 - art_sys_34: -2.47143299e-19 - art_sys_35: -6.06715597e-21 - art_sys_36: 8.55392108e-06 - art_sys_37: 3.59175888e-16 - art_sys_38: 4.66769943e-19 - art_sys_39: -2.94833977e-16 - art_sys_40: -5.06643749e-06 - art_sys_41: 8.47631908e-17 - art_sys_42: 1.78111872e-18 - art_sys_43: -3.49543296e-17 - art_sys_44: -4.88176553e-19 - art_sys_45: -1.36737612e-16 - art_sys_46: 1.42109417e-07 - art_sys_47: 1.09582481e-19 - art_sys_48: 2.96079912e-17 + art_sys_25: 7.81956497e-17 + art_sys_26: 2.44595777e-16 + art_sys_27: 3.08573026e-05 + art_sys_28: -4.34726499e-16 + art_sys_29: 8.55392108e-06 + art_sys_30: 3.60705844e-16 + art_sys_31: 3.08032452e-16 + art_sys_32: -5.06643749e-06 + art_sys_33: -8.48846356e-17 + art_sys_34: 3.46342986e-17 + art_sys_35: -1.63445899e-16 + art_sys_36: -3.46483647e-17 + art_sys_37: 2.24154932e-18 + art_sys_38: 7.31403978e-20 + art_sys_39: -3.19305134e-21 + art_sys_40: -5.86537883e-20 + art_sys_41: -2.86569634e-19 + art_sys_42: -3.84589051e-19 + art_sys_43: 8.24058181e-19 + art_sys_44: -6.53437843e-18 + art_sys_45: 2.21877841e-18 + art_sys_46: -1.59741168e-19 + art_sys_47: 1.42109417e-07 + art_sys_48: 7.50918291e-16 art_sys_49: -4.10425760e-08 - art_sys_50: -4.07334941e-20 - art_sys_51: 9.66421826e-20 - art_sys_52: 1.42872877e-18 - art_sys_53: 2.74187767e-17 + art_sys_50: -7.34558301e-20 + art_sys_51: -2.77403337e-19 + art_sys_52: -2.00979540e-17 + art_sys_53: -5.14481146e-18 art_sys_54: -1.26238490e-08 - art_sys_55: 3.33561273e-17 - art_sys_56: -1.16693608e-17 - art_sys_57: 2.05743598e-19 - art_sys_58: 1.54264450e-20 - art_sys_59: -3.32997677e-21 - art_sys_60: -1.53206645e-19 - art_sys_61: -2.66935032e-21 - art_sys_62: -4.79222898e-23 - art_sys_63: 8.20710057e-23 - art_sys_64: 1.78224240e-23 - art_sys_65: -5.07523244e-24 - art_sys_66: -1.66184513e-19 - art_sys_67: -3.95032552e-24 - art_sys_68: -2.27580773e-24 - art_sys_69: -5.49978878e-19 - art_sys_70: -2.99776031e-16 - art_sys_71: -3.57463728e-10 - art_sys_72: -2.07095945e-18 - art_sys_73: -8.60590515e-22 - art_sys_74: -7.25954594e-11 - art_sys_75: -9.53496555e-24 - art_sys_76: -9.97969768e-22 - art_sys_77: 4.75036942e-22 - art_sys_78: -2.73110076e-23 - art_sys_79: -4.39148697e-21 - art_sys_80: -1.82999116e-11 - art_sys_81: 9.75537725e-26 - art_sys_82: -7.31557470e-25 - art_sys_83: 8.10670842e-26 - art_sys_84: 1.33984113e-23 - art_sys_85: 3.82918389e-26 - art_sys_86: 2.40824585e-27 - art_sys_87: 9.76087254e-23 - art_sys_88: 2.94542077e-22 - art_sys_89: -6.20278824e-24 - art_sys_90: 3.92362754e-17 - art_sys_91: 2.13097506e-17 - art_sys_92: -4.04890712e-22 - art_sys_93: 8.00809450e-18 - art_sys_94: 3.17582740e-21 - art_sys_95: -2.16428155e-19 - art_sys_96: 1.66005841e-23 - art_sys_97: -2.46997827e-19 - art_sys_98: 2.18826102e-19 - art_sys_99: 1.57523771e-21 - art_sys_100: -1.10595860e-20 - art_sys_101: -2.89724386e-19 - art_sys_102: -2.14629551e-22 - art_sys_103: -3.33467628e-19 - art_sys_104: -3.76387599e-20 - art_sys_105: 5.53121950e-24 - art_sys_106: -1.29871467e-19 - art_sys_107: -3.83565662e-20 - art_sys_108: -2.31930434e-20 - art_sys_109: 4.92755117e-14 - art_sys_110: 6.48136322e-24 - art_sys_111: 9.39650601e-19 - art_sys_112: -1.38474300e-19 - art_sys_113: 4.47069346e-24 - art_sys_114: -4.18493685e-19 - art_sys_115: -1.10250190e-20 - art_sys_116: 7.01571566e-15 - art_sys_117: -2.41491720e-25 - art_sys_118: -7.35617011e-19 - art_sys_119: -1.38623805e-21 - art_sys_120: 4.31676005e-19 - art_sys_121: -1.77805940e-15 - art_sys_122: -3.73168296e-21 - art_sys_123: -9.13069050e-20 - art_sys_124: -3.33868142e-19 - art_sys_125: 1.46012655e-19 - art_sys_126: 2.52028864e-16 - art_sys_127: -2.93699579e-20 - art_sys_128: 7.32358069e-20 - art_sys_129: -4.90349481e-21 - art_sys_130: 3.00662434e-19 - art_sys_131: 2.89976107e-19 - art_sys_132: 7.79316619e-20 - art_sys_133: -3.47669827e-17 - art_sys_134: 1.26587598e-18 - art_sys_135: -8.66146518e-20 - art_sys_136: 1.13551864e-19 - art_sys_137: -5.21011930e-21 - art_sys_138: -2.75228819e-19 - art_sys_139: 7.55275715e-19 - art_sys_140: -5.35453935e-22 - art_sys_141: 3.45880495e-20 - art_sys_142: -0.0 - art_sys_143: -2.18480512e-20 - art_sys_144: -4.65515630e-20 - art_sys_145: -6.27811757e-20 - art_sys_146: 1.86215545e-23 - art_sys_147: -3.55546248e-23 - art_sys_148: -8.80524703e-23 - art_sys_149: -6.43033740e-23 - art_sys_150: -2.15145425e-22 - art_sys_151: -3.97407702e-22 - art_sys_152: 2.31249789e-22 - art_sys_153: 4.45684169e-24 - art_sys_154: -3.57931624e-23 - art_sys_155: -4.56773808e-23 - art_sys_156: -1.49786757e-22 - art_sys_157: -3.62164384e-22 - art_sys_158: -0.0 - art_sys_159: 3.11032363e-20 - art_sys_160: 3.11032363e-20 - art_sys_161: -2.04662333e-21 - art_sys_162: 7.62660071e-34 - art_sys_163: 0.0 - art_sys_164: 4.63113999e-34 - art_sys_165: 3.78313641e-30 - art_sys_166: 8.19522899e-30 - art_sys_167: 2.73524255e-30 - art_sys_168: -2.33321655e-31 - art_sys_169: -8.38893611e-32 - art_sys_170: 2.26058294e-31 - art_sys_171: 6.45627911e-32 - art_sys_172: 2.30303857e-31 - art_sys_173: -7.52181216e-33 - art_sys_174: -3.42828496e-35 - art_sys_175: 4.38122121e-33 - art_sys_176: 5.10571544e-33 - art_sys_177: -8.44334978e-34 - art_sys_178: -1.12323963e-34 - art_sys_179: -2.01883239e-36 - art_sys_180: -1.28573406e-34 - art_sys_181: 2.75552387e-35 - art_sys_182: -1.61460016e-35 - art_sys_183: 9.09584603e-38 - art_sys_184: 1.44558536e-37 - art_sys_185: 2.44769501e-35 + art_sys_55: -2.22887451e-17 + art_sys_56: 1.52763876e-17 + art_sys_57: 1.26062185e-19 + art_sys_58: -4.00870285e-22 + art_sys_59: -5.25646955e-17 + art_sys_60: -3.57463697e-10 + art_sys_61: 5.41690343e-21 + art_sys_62: -9.26845395e-19 + art_sys_63: 7.25955062e-11 + art_sys_64: 9.91878964e-20 + art_sys_65: -6.08339922e-21 + art_sys_66: -6.83713890e-21 + art_sys_67: 3.75938455e-22 + art_sys_68: 3.61070363e-23 + art_sys_69: -2.30340533e-23 + art_sys_70: -6.25389256e-24 + art_sys_71: 1.07216907e-24 + art_sys_72: 1.27781104e-24 + art_sys_73: -7.31200442e-25 + art_sys_74: 2.13584801e-21 + art_sys_75: 1.93877525e-25 + art_sys_76: 2.07533956e-22 + art_sys_77: 6.10965150e-22 + art_sys_78: 1.78337074e-23 + art_sys_79: 1.68441577e-24 + art_sys_80: -1.78508569e-25 + art_sys_81: -2.52454128e-20 + art_sys_82: 1.82999743e-11 + art_sys_83: 4.76272305e-25 + art_sys_84: 1.98290098e-25 + art_sys_85: -2.33983097e-25 + art_sys_86: -4.01291203e-26 + art_sys_87: 3.48195666e-26 + art_sys_88: 1.22951806e-21 + art_sys_89: 3.21238302e-28 + art_sys_90: -1.24719844e-24 + art_sys_91: 3.35411500e-17 + art_sys_92: 7.56836820e-27 + art_sys_93: -4.10157454e-27 + art_sys_94: -3.74628678e-22 + art_sys_95: -1.33191856e-22 + art_sys_96: -3.36312470e-17 + art_sys_97: -9.54887035e-19 + art_sys_98: 2.87191227e-24 + art_sys_99: -2.76548733e-18 + art_sys_100: 1.65526653e-23 + art_sys_101: 2.80793604e-18 + art_sys_102: 6.15405875e-21 + art_sys_103: 2.21885739e-20 + art_sys_104: -3.45609285e-19 + art_sys_105: -1.50324185e-21 + art_sys_106: -8.87715104e-20 + art_sys_107: -1.27828920e-20 + art_sys_108: -2.44335161e-21 + art_sys_109: 9.52053871e-23 + art_sys_110: 5.46550966e-20 + art_sys_111: -1.77769274e-20 + art_sys_112: 4.92751261e-14 + art_sys_113: -3.74345266e-19 + art_sys_114: 1.83837047e-23 + art_sys_115: -1.79199573e-20 + art_sys_116: 8.63386228e-21 + art_sys_117: 9.56892543e-24 + art_sys_118: 1.46136049e-20 + art_sys_119: 1.47056914e-20 + art_sys_120: 7.01545873e-15 + art_sys_121: -8.01834971e-24 + art_sys_122: -2.45499144e-20 + art_sys_123: -4.52190054e-21 + art_sys_124: -2.82115371e-21 + art_sys_125: 1.32966087e-23 + art_sys_126: 1.77805284e-15 + art_sys_127: 5.39023229e-21 + art_sys_128: 1.58073746e-20 + art_sys_129: 3.40403189e-23 + art_sys_130: -1.66638444e-19 + art_sys_131: -4.73838075e-22 + art_sys_132: -1.30761720e-19 + art_sys_133: 3.70385624e-19 + art_sys_134: 2.52123594e-16 + art_sys_135: 6.95695130e-20 + art_sys_136: 1.39699117e-21 + art_sys_137: -5.73001286e-20 + art_sys_138: 3.12426129e-21 + art_sys_139: 8.67943961e-19 + art_sys_140: -2.97915006e-22 + art_sys_141: 3.47978098e-17 + art_sys_142: -1.03062483e-21 + art_sys_143: -6.14207316e-20 + art_sys_144: 1.89111991e-21 + art_sys_145: 4.32426096e-20 + art_sys_146: 4.54717875e-21 + art_sys_147: -3.16049118e-23 + art_sys_148: -1.60700657e-23 + art_sys_149: -6.03429804e-24 + art_sys_150: 2.13290204e-20 + art_sys_151: 6.78750052e-19 + art_sys_152: 1.11751103e-22 + art_sys_153: 5.74270276e-20 + art_sys_154: 3.35774562e-21 + art_sys_155: -2.52700471e-22 + art_sys_156: 0.0 + art_sys_157: 1.36901867e-21 + art_sys_158: 0.0 + art_sys_159: 1.00469708e-20 + art_sys_160: -2.49671573e-24 + art_sys_161: -1.38359844e-21 + art_sys_162: -1.38359844e-21 + art_sys_163: -1.21354096e-21 + art_sys_164: -1.21354096e-21 + art_sys_165: 1.40396253e-35 + art_sys_166: -4.67085620e-36 + art_sys_167: -0.0 + art_sys_168: 9.81913540e-31 + art_sys_169: 8.45992497e-31 + art_sys_170: 4.82870504e-31 + art_sys_171: 2.82834747e-31 + art_sys_172: -7.53768397e-32 + art_sys_173: -3.77637181e-33 + art_sys_174: -9.13412092e-33 + art_sys_175: -4.24504383e-33 + art_sys_176: 1.80704014e-33 + art_sys_177: -8.05791003e-34 + art_sys_178: -1.17248802e-33 + art_sys_179: 8.18414705e-35 + art_sys_180: 2.64158143e-34 + art_sys_181: -3.81568095e-34 + art_sys_182: 1.34224102e-34 + art_sys_183: -9.06403907e-37 + art_sys_184: -1.22415660e-36 + art_sys_185: 3.70950166e-37 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -56694,190 +56694,190 @@ bins: luminosity_uncertainty: 1.04034060e+02 uncorrelated_uncertainty: 40.0131 - art_sys_1: -4.72513881e-15 - art_sys_2: 2.43515277e-14 + art_sys_2: 2.42070446e-14 art_sys_3: 8.88853667e+00 - art_sys_4: 7.52946524e-14 + art_sys_4: 3.87091027e-14 art_sys_5: 1.22951844e+01 - art_sys_6: 5.74852088e-14 - art_sys_7: -2.21156937e-14 + art_sys_6: 6.01618023e-14 + art_sys_7: -1.26001573e-14 art_sys_8: 3.34585640e+01 - art_sys_9: -3.88752661e-15 - art_sys_10: 8.74803412e-15 + art_sys_9: -1.57269478e-14 + art_sys_10: 9.07723978e-15 art_sys_11: 8.18473636e+00 - art_sys_12: 2.78202959e-14 - art_sys_13: 3.09350892e-14 - art_sys_14: -4.73634256e-15 - art_sys_15: -2.97891803e-01 - art_sys_16: -1.81756895e-15 - art_sys_17: -1.48517331e-15 + art_sys_12: 2.81168604e-14 + art_sys_13: -2.93764303e-14 + art_sys_14: 4.37614421e-15 + art_sys_15: 2.97891803e-01 + art_sys_16: 1.82098426e-15 + art_sys_17: 2.70967818e-17 art_sys_18: 1.66819769e-01 - art_sys_19: -1.89601587e-15 - art_sys_20: 5.80082370e-15 + art_sys_19: 1.81376593e-15 + art_sys_20: -9.22182643e-16 art_sys_21: -9.56776610e-02 - art_sys_22: -4.99631376e-15 - art_sys_23: 3.90486888e-15 + art_sys_22: -1.86152181e-15 + art_sys_23: 3.91858420e-15 art_sys_24: -2.86389368e-02 - art_sys_25: 6.46425746e-17 - art_sys_26: -2.71584814e-16 - art_sys_27: 1.15703962e-04 - art_sys_28: -3.59808793e-16 - art_sys_29: 2.23120463e-16 - art_sys_30: -1.38633821e-17 - art_sys_31: 1.19582194e-17 - art_sys_32: -1.05018276e-18 - art_sys_33: 1.22671843e-18 - art_sys_34: 6.40296063e-20 - art_sys_35: -4.40526910e-19 - art_sys_36: -2.46174492e-05 - art_sys_37: -3.76934414e-16 - art_sys_38: 4.70675061e-19 - art_sys_39: 4.44537721e-16 - art_sys_40: 1.71523137e-05 - art_sys_41: -6.20468928e-17 - art_sys_42: 1.61033852e-18 - art_sys_43: 2.92665213e-17 - art_sys_44: -3.29054804e-19 - art_sys_45: 3.43272063e-16 - art_sys_46: -5.14892200e-07 - art_sys_47: 5.01757985e-20 - art_sys_48: -1.50427559e-16 + art_sys_25: -6.22532840e-17 + art_sys_26: -2.71866336e-16 + art_sys_27: -1.15703962e-04 + art_sys_28: 8.48345287e-17 + art_sys_29: -2.46174492e-05 + art_sys_30: -3.75068702e-16 + art_sys_31: -5.81363457e-16 + art_sys_32: 1.71523137e-05 + art_sys_33: 6.81554874e-17 + art_sys_34: -2.12691108e-17 + art_sys_35: 3.59871206e-16 + art_sys_36: 2.18549773e-17 + art_sys_37: -8.02289708e-19 + art_sys_38: -2.22591886e-19 + art_sys_39: -2.66342559e-20 + art_sys_40: -4.99977065e-20 + art_sys_41: -1.16047663e-19 + art_sys_42: -1.45558627e-19 + art_sys_43: 3.60872745e-19 + art_sys_44: -4.07509995e-18 + art_sys_45: 1.45669512e-18 + art_sys_46: -4.87338289e-20 + art_sys_47: -5.14892200e-07 + art_sys_48: -2.44138308e-15 art_sys_49: 1.34128403e-07 - art_sys_50: -4.76843672e-20 - art_sys_51: 2.00814169e-19 - art_sys_52: 6.59409576e-17 - art_sys_53: -8.52246073e-17 + art_sys_50: -1.77912878e-20 + art_sys_51: 3.34151787e-20 + art_sys_52: 4.36051226e-17 + art_sys_53: 8.61553657e-17 art_sys_54: 4.59054546e-08 - art_sys_55: -7.11991812e-17 - art_sys_56: 3.59152939e-17 - art_sys_57: -7.07165013e-19 - art_sys_58: -6.86342397e-20 - art_sys_59: 2.89153991e-21 - art_sys_60: -1.59107025e-20 - art_sys_61: 9.03912253e-21 - art_sys_62: 3.26450513e-23 - art_sys_63: -3.04453895e-22 - art_sys_64: -3.80729438e-23 - art_sys_65: 1.64383463e-23 - art_sys_66: 5.01358128e-19 - art_sys_67: 1.01186222e-23 - art_sys_68: 7.03498024e-24 - art_sys_69: 1.81819721e-18 - art_sys_70: 8.87822775e-16 - art_sys_71: 1.07284733e-09 - art_sys_72: 5.92569200e-18 - art_sys_73: 5.07182450e-22 - art_sys_74: 2.58468700e-10 - art_sys_75: 2.91561299e-23 - art_sys_76: 3.36275873e-21 - art_sys_77: -1.60452499e-21 - art_sys_78: 9.24179743e-23 - art_sys_79: 1.47746476e-20 - art_sys_80: 6.14858385e-11 - art_sys_81: -1.79544900e-25 - art_sys_82: 1.93387145e-24 - art_sys_83: -1.95783259e-25 - art_sys_84: -3.40612522e-23 - art_sys_85: -1.24186391e-25 - art_sys_86: -7.88049681e-26 - art_sys_87: -2.28763511e-22 - art_sys_88: -9.14716879e-22 - art_sys_89: 2.84646845e-23 - art_sys_90: -1.52008248e-16 - art_sys_91: -7.61649445e-17 - art_sys_92: 1.30363468e-21 - art_sys_93: -2.69148839e-17 - art_sys_94: -8.57494604e-21 - art_sys_95: 6.38849747e-19 - art_sys_96: -5.80821212e-23 - art_sys_97: 6.68886729e-19 - art_sys_98: -9.65479297e-19 - art_sys_99: 8.74412291e-21 - art_sys_100: 2.95296054e-20 - art_sys_101: 4.04695725e-19 - art_sys_102: 7.35771770e-22 - art_sys_103: 1.32483428e-18 - art_sys_104: 7.00504417e-20 - art_sys_105: -1.89618150e-23 - art_sys_106: 3.87308165e-19 - art_sys_107: 1.29425305e-19 - art_sys_108: 9.22738286e-20 - art_sys_109: -1.33486726e-13 - art_sys_110: -2.22012726e-23 - art_sys_111: -2.56680182e-18 - art_sys_112: 4.88948249e-19 - art_sys_113: -1.53165678e-23 - art_sys_114: 1.15110391e-18 - art_sys_115: 3.84471162e-20 - art_sys_116: -2.76767120e-14 - art_sys_117: 8.29543046e-25 - art_sys_118: 2.00138953e-18 - art_sys_119: 4.83565944e-21 - art_sys_120: -1.15738167e-18 - art_sys_121: 5.48940298e-15 - art_sys_122: 9.47832465e-20 - art_sys_123: 3.12988594e-19 - art_sys_124: 1.30748484e-18 - art_sys_125: -5.56792601e-19 - art_sys_126: -8.77735412e-16 - art_sys_127: 8.68523239e-20 - art_sys_128: -2.51033533e-19 - art_sys_129: 1.67938299e-20 - art_sys_130: -1.03075820e-18 - art_sys_131: -9.94117529e-19 - art_sys_132: -2.77268589e-19 - art_sys_133: 1.19188197e-16 - art_sys_134: -4.33963681e-18 - art_sys_135: 3.04155796e-19 - art_sys_136: -3.89429556e-19 - art_sys_137: 2.01588597e-20 - art_sys_138: 9.44963354e-19 - art_sys_139: -2.59231889e-18 - art_sys_140: 2.11116869e-21 - art_sys_141: -1.18559271e-19 - art_sys_142: 0.0 - art_sys_143: 7.61872703e-20 - art_sys_144: 1.59897439e-19 - art_sys_145: 2.15264266e-19 - art_sys_146: -6.39009928e-23 - art_sys_147: 1.21999150e-22 - art_sys_148: 2.99604208e-22 - art_sys_149: 2.20283108e-22 - art_sys_150: 7.38765390e-22 - art_sys_151: 1.34818826e-21 - art_sys_152: -7.90908112e-22 - art_sys_153: -1.51171736e-23 - art_sys_154: 1.20488882e-22 - art_sys_155: 1.61061708e-22 - art_sys_156: 5.11878142e-22 - art_sys_157: 1.23880135e-21 - art_sys_158: 0.0 - art_sys_159: -1.06307677e-19 - art_sys_160: -1.06307677e-19 - art_sys_161: 6.96833429e-21 - art_sys_162: -2.59736435e-33 - art_sys_163: -0.0 - art_sys_164: -1.57738353e-33 - art_sys_165: -1.31660872e-29 - art_sys_166: -2.81208338e-29 - art_sys_167: -9.40733811e-30 - art_sys_168: 7.82606396e-31 - art_sys_169: 2.80334835e-31 - art_sys_170: -7.55604420e-31 - art_sys_171: -1.24727629e-31 - art_sys_172: -7.10264031e-31 - art_sys_173: 5.81578573e-32 - art_sys_174: 1.17764862e-34 - art_sys_175: -1.44052975e-32 - art_sys_176: -1.45545491e-32 - art_sys_177: 2.59688434e-33 - art_sys_178: 3.57825356e-34 - art_sys_179: -2.77476156e-35 - art_sys_180: 4.18712100e-34 - art_sys_181: -9.01704867e-35 - art_sys_182: 5.19734194e-35 - art_sys_183: -3.55809073e-37 - art_sys_184: -4.92916942e-37 - art_sys_185: -8.31913339e-35 + art_sys_55: 3.17969322e-17 + art_sys_56: -4.70384478e-17 + art_sys_57: 2.37835154e-20 + art_sys_58: 1.01109884e-21 + art_sys_59: 1.55783194e-16 + art_sys_60: 1.07284721e-09 + art_sys_61: -3.23236922e-20 + art_sys_62: 2.33526377e-18 + art_sys_63: -2.58468864e-10 + art_sys_64: -4.30084535e-19 + art_sys_65: 2.25792949e-20 + art_sys_66: 2.00857817e-20 + art_sys_67: -2.16284090e-21 + art_sys_68: -1.00851606e-22 + art_sys_69: 8.08536566e-23 + art_sys_70: 2.16891290e-23 + art_sys_71: -3.51749679e-24 + art_sys_72: -4.19140873e-24 + art_sys_73: 2.35095473e-24 + art_sys_74: -7.92599626e-21 + art_sys_75: -7.97774102e-25 + art_sys_76: -6.85938561e-22 + art_sys_77: -2.04936301e-21 + art_sys_78: -6.14922482e-23 + art_sys_79: -8.05608324e-24 + art_sys_80: -6.17054870e-26 + art_sys_81: 8.48178343e-20 + art_sys_82: -6.14860499e-11 + art_sys_83: -1.32734808e-24 + art_sys_84: -6.13270142e-25 + art_sys_85: 6.06009822e-25 + art_sys_86: 1.16785020e-25 + art_sys_87: -3.64042177e-26 + art_sys_88: -3.33092491e-21 + art_sys_89: -6.07809598e-28 + art_sys_90: 3.45847781e-23 + art_sys_91: -1.14486160e-16 + art_sys_92: -2.05188468e-26 + art_sys_93: 1.14878568e-26 + art_sys_94: 1.15675417e-21 + art_sys_95: 3.40622472e-22 + art_sys_96: 1.15122903e-16 + art_sys_97: 3.57478103e-18 + art_sys_98: 1.67155295e-22 + art_sys_99: 9.25054702e-18 + art_sys_100: -6.88554766e-23 + art_sys_101: -9.70247284e-18 + art_sys_102: -1.69701950e-20 + art_sys_103: -7.88243426e-20 + art_sys_104: 4.50988867e-19 + art_sys_105: 5.15354804e-21 + art_sys_106: 3.75934273e-19 + art_sys_107: 5.04440148e-20 + art_sys_108: 8.37635588e-21 + art_sys_109: -3.26377698e-22 + art_sys_110: -2.41750828e-20 + art_sys_111: 2.08628229e-20 + art_sys_112: -1.33485686e-13 + art_sys_113: 1.35079384e-18 + art_sys_114: -6.30271516e-23 + art_sys_115: 3.15519764e-20 + art_sys_116: -2.80697100e-20 + art_sys_117: -3.28053463e-23 + art_sys_118: -3.59218812e-20 + art_sys_119: -4.22534838e-20 + art_sys_120: -2.76756968e-14 + art_sys_121: 2.75081409e-23 + art_sys_122: 6.34997063e-20 + art_sys_123: 1.57690652e-20 + art_sys_124: 7.44242554e-21 + art_sys_125: -4.57156926e-23 + art_sys_126: -5.48938662e-15 + art_sys_127: -1.84575434e-20 + art_sys_128: -6.54967616e-20 + art_sys_129: -1.16784098e-22 + art_sys_130: 5.71254478e-19 + art_sys_131: 1.62569702e-21 + art_sys_132: 5.17068932e-19 + art_sys_133: -1.26965563e-18 + art_sys_134: -8.78066181e-16 + art_sys_135: -2.22251692e-19 + art_sys_136: -4.79412686e-21 + art_sys_137: 1.96409642e-19 + art_sys_138: -1.05392270e-20 + art_sys_139: -2.97549161e-18 + art_sys_140: 1.01829913e-21 + art_sys_141: -1.19293851e-16 + art_sys_142: 4.97789415e-21 + art_sys_143: 2.10598177e-19 + art_sys_144: -6.42464085e-21 + art_sys_145: -1.51128385e-19 + art_sys_146: -1.55541906e-20 + art_sys_147: 1.09907124e-22 + art_sys_148: 5.67020306e-23 + art_sys_149: -3.56974942e-22 + art_sys_150: -7.29669815e-20 + art_sys_151: -2.33027410e-18 + art_sys_152: -3.79069895e-22 + art_sys_153: -1.96975774e-19 + art_sys_154: -1.04257394e-20 + art_sys_155: 8.75383062e-22 + art_sys_156: -0.0 + art_sys_157: -4.76256801e-21 + art_sys_158: -0.0 + art_sys_159: -3.47151866e-20 + art_sys_160: 3.29171733e-23 + art_sys_161: 4.81239656e-21 + art_sys_162: 4.81239656e-21 + art_sys_163: 4.21713982e-21 + art_sys_164: 4.21713982e-21 + art_sys_165: -4.87937517e-35 + art_sys_166: 1.62352118e-35 + art_sys_167: 0.0 + art_sys_168: -3.29351863e-30 + art_sys_169: -2.90613745e-30 + art_sys_170: -1.54029550e-30 + art_sys_171: -9.81279069e-31 + art_sys_172: 2.69325231e-31 + art_sys_173: 1.30340831e-32 + art_sys_174: 3.08057425e-32 + art_sys_175: 1.43175671e-32 + art_sys_176: -6.09436896e-33 + art_sys_177: 2.73223245e-33 + art_sys_178: 3.95538174e-33 + art_sys_179: -2.84134901e-34 + art_sys_180: -9.14153295e-34 + art_sys_181: 1.29018134e-33 + art_sys_182: -4.61810374e-34 + art_sys_183: 3.17389262e-36 + art_sys_184: 4.18178873e-36 + art_sys_185: -1.27726760e-36 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -56985,190 +56985,190 @@ bins: luminosity_uncertainty: 4.15841400e+01 uncorrelated_uncertainty: 1.59939000e+01 - art_sys_1: -7.51836422e-16 - art_sys_2: -2.34122295e-15 + art_sys_2: -2.36054835e-15 art_sys_3: 7.63076315e-01 - art_sys_4: 6.96034821e-15 + art_sys_4: 1.68234238e-14 art_sys_5: -2.05309978e+00 - art_sys_6: 3.98323905e-15 - art_sys_7: -7.55300999e-15 + art_sys_6: 3.50898031e-15 + art_sys_7: -5.29359626e-15 art_sys_8: 1.21291106e+00 - art_sys_9: 4.70376131e-15 - art_sys_10: 6.03251455e-16 + art_sys_9: 1.86053891e-15 + art_sys_10: 6.24475140e-16 art_sys_11: 1.87882270e+00 - art_sys_12: 2.04102738e-16 - art_sys_13: -2.17389777e-13 - art_sys_14: -1.25280090e-14 - art_sys_15: 3.24579345e+00 - art_sys_16: -3.79578136e-15 - art_sys_17: 6.29691458e-15 + art_sys_12: 2.43820942e-15 + art_sys_13: 2.17742841e-13 + art_sys_14: 1.55372540e-14 + art_sys_15: -3.24579345e+00 + art_sys_16: 3.86289103e-15 + art_sys_17: 6.07551789e-15 art_sys_18: -5.45311693e-01 - art_sys_19: 6.05934175e-15 - art_sys_20: -6.93468872e-15 + art_sys_19: -5.55384590e-15 + art_sys_20: -8.51401636e-15 art_sys_21: 5.43312893e-01 - art_sys_22: 1.88041313e-15 - art_sys_23: -7.20051938e-15 + art_sys_22: 2.31700927e-15 + art_sys_23: -7.29765553e-15 art_sys_24: 1.50225105e-01 - art_sys_25: -2.05164715e-16 - art_sys_26: 8.88458644e-16 - art_sys_27: -6.02977710e-04 - art_sys_28: -6.90132159e-16 - art_sys_29: -1.29674600e-16 - art_sys_30: 1.04308957e-16 - art_sys_31: -7.21051046e-17 - art_sys_32: 6.23476214e-18 - art_sys_33: -7.37042614e-18 - art_sys_34: -7.30479205e-19 - art_sys_35: 2.44534365e-18 - art_sys_36: 1.62072006e-04 - art_sys_37: 7.10740439e-16 - art_sys_38: -1.55842550e-18 - art_sys_39: -1.88506209e-15 - art_sys_40: -9.61306403e-05 - art_sys_41: -6.78050849e-17 - art_sys_42: 3.76168121e-18 - art_sys_43: -3.52603981e-17 - art_sys_44: -5.38445694e-19 - art_sys_45: -2.20120789e-15 - art_sys_46: 3.31179481e-06 - art_sys_47: 7.07969920e-20 - art_sys_48: 9.76265614e-16 - art_sys_49: -8.12363155e-07 - art_sys_50: 1.63457592e-20 - art_sys_51: -1.10151118e-19 - art_sys_52: -4.80631496e-16 - art_sys_53: 5.43906828e-16 + art_sys_25: 1.91758035e-16 + art_sys_26: 8.89139151e-16 + art_sys_27: 6.02977710e-04 + art_sys_28: 3.89833081e-15 + art_sys_29: 1.62072006e-04 + art_sys_30: 7.05977347e-16 + art_sys_31: 2.80724536e-15 + art_sys_32: -9.61306403e-05 + art_sys_33: 4.56701106e-17 + art_sys_34: -2.75119983e-17 + art_sys_35: -2.08704780e-15 + art_sys_36: 2.80482918e-17 + art_sys_37: 1.29339216e-17 + art_sys_38: 1.56024577e-18 + art_sys_39: 1.95916840e-20 + art_sys_40: 3.48905063e-19 + art_sys_41: -2.06399586e-20 + art_sys_42: 9.99471481e-20 + art_sys_43: -1.53244946e-19 + art_sys_44: -2.54398254e-18 + art_sys_45: 3.60304009e-19 + art_sys_46: -1.57356708e-19 + art_sys_47: 3.31179481e-06 + art_sys_48: 1.45966565e-14 + art_sys_49: -8.12363154e-07 + art_sys_50: -1.68806930e-20 + art_sys_51: 2.57622933e-20 + art_sys_52: -2.27233112e-16 + art_sys_53: -6.04926047e-16 art_sys_54: -2.71999838e-07 - art_sys_55: 3.36203125e-16 - art_sys_56: -2.16813606e-16 - art_sys_57: 3.81421636e-18 - art_sys_58: 3.65979474e-19 - art_sys_59: -6.59548642e-20 - art_sys_60: 8.43825199e-20 - art_sys_61: -4.93720861e-20 - art_sys_62: -4.64420562e-22 - art_sys_63: 1.84781691e-21 - art_sys_64: 2.75323565e-22 - art_sys_65: -9.13185187e-23 - art_sys_66: -3.58174210e-18 - art_sys_67: -8.80846531e-23 - art_sys_68: -5.77497007e-23 - art_sys_69: -1.17769371e-17 - art_sys_70: -6.45979512e-15 - art_sys_71: -7.68092807e-09 - art_sys_72: -4.16848728e-17 - art_sys_73: 1.62282778e-21 - art_sys_74: -1.47845060e-09 - art_sys_75: -2.00326601e-22 - art_sys_76: -2.16113666e-20 - art_sys_77: 1.03180353e-20 - art_sys_78: -5.89819683e-22 - art_sys_79: -9.49433496e-20 - art_sys_80: -3.95065269e-10 - art_sys_81: 1.34992122e-24 - art_sys_82: -1.11275025e-23 - art_sys_83: 1.19038588e-24 - art_sys_84: 1.76522793e-22 - art_sys_85: 6.09976921e-25 - art_sys_86: 1.92770633e-25 - art_sys_87: 1.41288096e-21 - art_sys_88: 5.50684509e-21 - art_sys_89: -9.75842305e-23 - art_sys_90: 7.42754366e-16 - art_sys_91: 4.71726610e-16 - art_sys_92: -7.62071348e-21 - art_sys_93: 1.72997865e-16 - art_sys_94: 4.89649727e-20 - art_sys_95: -3.75319925e-18 - art_sys_96: 2.94842005e-22 - art_sys_97: -3.81198500e-18 - art_sys_98: 6.30058871e-18 - art_sys_99: 1.08274379e-19 - art_sys_100: -1.69488602e-19 - art_sys_101: -8.93052210e-19 - art_sys_102: -3.90090866e-21 - art_sys_103: -6.37571238e-18 - art_sys_104: 1.63645039e-19 - art_sys_105: 1.14707356e-22 - art_sys_106: -2.35599942e-18 - art_sys_107: -7.90482410e-19 - art_sys_108: -4.41786298e-19 - art_sys_109: 7.60618522e-13 - art_sys_110: 1.29376372e-22 - art_sys_111: 1.46703171e-17 - art_sys_112: -2.46319034e-18 - art_sys_113: 8.91569606e-23 - art_sys_114: -6.59392898e-18 - art_sys_115: -1.97053698e-19 - art_sys_116: 1.33556161e-13 - art_sys_117: -4.92749728e-24 - art_sys_118: -1.14387768e-17 - art_sys_119: -2.47702909e-20 - art_sys_120: 6.65692149e-18 - art_sys_121: -3.31752759e-14 - art_sys_122: -2.86516187e-19 - art_sys_123: -1.65822487e-18 - art_sys_124: -6.32300920e-18 - art_sys_125: 2.75355943e-18 - art_sys_126: 4.50690178e-15 - art_sys_127: -5.06876591e-19 - art_sys_128: 1.33406716e-18 - art_sys_129: -9.43609244e-20 - art_sys_130: 5.47213203e-18 - art_sys_131: 5.26623146e-18 - art_sys_132: 1.39496668e-18 - art_sys_133: -6.31866187e-16 - art_sys_134: 2.29863695e-17 - art_sys_135: -1.54521965e-18 - art_sys_136: 2.12671244e-18 - art_sys_137: -8.52470562e-20 - art_sys_138: -5.61934141e-18 - art_sys_139: 1.51650337e-17 - art_sys_140: -1.15414498e-20 - art_sys_141: 8.32874841e-19 - art_sys_142: -0.0 - art_sys_143: -4.10658598e-19 - art_sys_144: -9.54001015e-19 - art_sys_145: -1.35220543e-18 - art_sys_146: 3.77768510e-22 - art_sys_147: -7.21802435e-22 - art_sys_148: -1.69356047e-21 - art_sys_149: -1.28689026e-21 - art_sys_150: -4.42991125e-21 - art_sys_151: -7.61051424e-21 - art_sys_152: 4.18163897e-21 - art_sys_153: 7.99963744e-23 - art_sys_154: -6.16259448e-22 - art_sys_155: -1.07093291e-21 - art_sys_156: -3.33139953e-21 - art_sys_157: -7.32170618e-21 - art_sys_158: -0.0 - art_sys_159: 5.95367096e-19 - art_sys_160: 5.95367096e-19 - art_sys_161: -3.92720275e-20 - art_sys_162: 1.46313860e-32 - art_sys_163: 0.0 - art_sys_164: 8.88345164e-33 - art_sys_165: 7.89908511e-29 - art_sys_166: 1.66203938e-28 - art_sys_167: 5.59659348e-29 - art_sys_168: -4.40105858e-30 - art_sys_169: -1.53926337e-30 - art_sys_170: 4.25538317e-30 - art_sys_171: 9.57928396e-31 - art_sys_172: 4.64656770e-30 - art_sys_173: -3.71035757e-31 - art_sys_174: -8.12187667e-34 - art_sys_175: 8.34107310e-32 - art_sys_176: 1.08021129e-31 - art_sys_177: -1.84843050e-32 - art_sys_178: -2.13429035e-33 - art_sys_179: 3.58192212e-34 - art_sys_180: -2.25220579e-33 - art_sys_181: 5.50586949e-34 - art_sys_182: -3.20579304e-34 - art_sys_183: 1.50092302e-36 - art_sys_184: 2.62030507e-36 - art_sys_185: 4.69217071e-34 + art_sys_55: -9.99140181e-17 + art_sys_56: 2.82177600e-16 + art_sys_57: -3.23109520e-20 + art_sys_58: -7.44028213e-22 + art_sys_59: -1.12421618e-15 + art_sys_60: -7.68092746e-09 + art_sys_61: 2.10781514e-19 + art_sys_62: -1.37306417e-17 + art_sys_63: 1.47845156e-09 + art_sys_64: 2.46141729e-18 + art_sys_65: -1.05817322e-19 + art_sys_66: -1.34408601e-19 + art_sys_67: 1.04782600e-20 + art_sys_68: 8.34869981e-22 + art_sys_69: -5.73866284e-22 + art_sys_70: -1.33144965e-22 + art_sys_71: 2.43275560e-23 + art_sys_72: 2.72535820e-23 + art_sys_73: -1.56535359e-23 + art_sys_74: 4.61673266e-20 + art_sys_75: 4.37817544e-24 + art_sys_76: 4.39377232e-21 + art_sys_77: 1.31616515e-20 + art_sys_78: 4.02243592e-22 + art_sys_79: 4.48945987e-23 + art_sys_80: 1.42360479e-24 + art_sys_81: -5.45004145e-19 + art_sys_82: 3.95066616e-10 + art_sys_83: 7.25287466e-24 + art_sys_84: 3.32709995e-24 + art_sys_85: -3.54996588e-24 + art_sys_86: -6.59385931e-25 + art_sys_87: 1.82858514e-26 + art_sys_88: 1.89804306e-20 + art_sys_89: 4.06120557e-27 + art_sys_90: -1.10234268e-22 + art_sys_91: 7.02367944e-16 + art_sys_92: 1.16226702e-25 + art_sys_93: -6.42479019e-26 + art_sys_94: -6.99107659e-21 + art_sys_95: 3.64581017e-22 + art_sys_96: -7.48660484e-16 + art_sys_97: -2.05986420e-17 + art_sys_98: 4.02441493e-23 + art_sys_99: -5.85506211e-17 + art_sys_100: -2.42795751e-23 + art_sys_101: 6.21748750e-17 + art_sys_102: 9.56317677e-20 + art_sys_103: 5.18656648e-19 + art_sys_104: -1.27237995e-18 + art_sys_105: -2.73197430e-20 + art_sys_106: -2.89276682e-18 + art_sys_107: -2.43355133e-19 + art_sys_108: -4.44060406e-20 + art_sys_109: 1.72371125e-21 + art_sys_110: 4.83739227e-19 + art_sys_111: 7.25316756e-20 + art_sys_112: 7.60612584e-13 + art_sys_113: -7.99285228e-18 + art_sys_114: 3.35173468e-22 + art_sys_115: -1.47550507e-19 + art_sys_116: 1.59470612e-19 + art_sys_117: 1.67897730e-22 + art_sys_118: 1.43213130e-19 + art_sys_119: 2.80542634e-19 + art_sys_120: 1.33551280e-13 + art_sys_121: -1.48480489e-22 + art_sys_122: -3.16421991e-19 + art_sys_123: -8.08172424e-20 + art_sys_124: -7.00019020e-20 + art_sys_125: 2.77653697e-22 + art_sys_126: 3.31751406e-14 + art_sys_127: 8.64418164e-20 + art_sys_128: 3.18444371e-19 + art_sys_129: 6.86760598e-22 + art_sys_130: -3.02988262e-18 + art_sys_131: -9.56133333e-21 + art_sys_132: -2.48327045e-18 + art_sys_133: 6.72528843e-18 + art_sys_134: 4.50859452e-15 + art_sys_135: 1.29680993e-18 + art_sys_136: 2.82661779e-20 + art_sys_137: -1.04829905e-18 + art_sys_138: 5.37913580e-20 + art_sys_139: 1.57775527e-17 + art_sys_140: -5.87290434e-21 + art_sys_141: 6.32413161e-16 + art_sys_142: -1.69634151e-20 + art_sys_143: -1.11609815e-18 + art_sys_144: 3.53646183e-20 + art_sys_145: 7.71673953e-19 + art_sys_146: 8.26871259e-20 + art_sys_147: -5.39252773e-22 + art_sys_148: -2.39414094e-22 + art_sys_149: 2.75270504e-21 + art_sys_150: 4.02576447e-19 + art_sys_151: 1.37756828e-17 + art_sys_152: 2.46555347e-21 + art_sys_153: 1.09148313e-18 + art_sys_154: 6.08090905e-20 + art_sys_155: -4.95196883e-21 + art_sys_156: 0.0 + art_sys_157: 2.41566986e-20 + art_sys_158: 0.0 + art_sys_159: 1.79301251e-19 + art_sys_160: -8.20930524e-22 + art_sys_161: -2.47985839e-20 + art_sys_162: -2.47985839e-20 + art_sys_163: -2.20494651e-20 + art_sys_164: -2.20494651e-20 + art_sys_165: 2.54492036e-34 + art_sys_166: -8.46608375e-35 + art_sys_167: -0.0 + art_sys_168: 1.83387850e-29 + art_sys_169: 1.71112406e-29 + art_sys_170: 8.05657796e-30 + art_sys_171: 5.57830388e-30 + art_sys_172: -1.56037509e-30 + art_sys_173: -5.28025499e-32 + art_sys_174: -1.76501151e-31 + art_sys_175: -8.11721080e-32 + art_sys_176: 3.46348382e-32 + art_sys_177: -1.57056752e-32 + art_sys_178: -2.24380212e-32 + art_sys_179: 1.59959961e-33 + art_sys_180: 4.74100979e-33 + art_sys_181: -7.42936284e-33 + art_sys_182: 2.72302931e-33 + art_sys_183: -1.89341676e-35 + art_sys_184: -2.25404671e-35 + art_sys_185: 6.62545957e-36 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -57276,190 +57276,190 @@ bins: luminosity_uncertainty: 18.19883 uncorrelated_uncertainty: 6.99955 - art_sys_1: 1.63209936e-16 - art_sys_2: -1.15955722e-15 + art_sys_2: -1.15220613e-15 art_sys_3: -3.28918405e-01 - art_sys_4: 5.73700133e-15 + art_sys_4: 7.17033717e-15 art_sys_5: -6.13796271e-01 - art_sys_6: -2.79295938e-15 - art_sys_7: -6.55594503e-15 + art_sys_6: -2.94920743e-15 + art_sys_7: -6.81430586e-15 art_sys_8: -1.56902250e+00 - art_sys_9: -8.58623765e-16 - art_sys_10: -1.59505027e-15 + art_sys_9: -2.02683051e-16 + art_sys_10: -1.61031920e-15 art_sys_11: -4.73037341e-01 - art_sys_12: -3.34506639e-15 - art_sys_13: -1.14542259e-13 - art_sys_14: -7.01131522e-16 - art_sys_15: 1.51683953e+00 - art_sys_16: -1.11833545e-15 - art_sys_17: -1.20238432e-14 + art_sys_12: -2.43041768e-15 + art_sys_13: 1.14453742e-13 + art_sys_14: -1.12378907e-15 + art_sys_15: -1.51683953e+00 + art_sys_16: 9.89644452e-16 + art_sys_17: -1.23916338e-14 art_sys_18: 1.68284698e+00 - art_sys_19: -5.64665035e-14 - art_sys_20: 4.15486480e-16 + art_sys_19: 5.56882181e-14 + art_sys_20: 7.67607065e-16 art_sys_21: -7.63362276e-01 - art_sys_22: -2.02703018e-15 - art_sys_23: 4.89627712e-16 + art_sys_22: -2.39978832e-15 + art_sys_23: 5.59992247e-16 art_sys_24: -3.37594815e-01 - art_sys_25: -1.47915526e-16 - art_sys_26: -8.52695077e-16 - art_sys_27: 1.49594306e-03 - art_sys_28: 3.93678287e-15 - art_sys_29: 3.22619738e-16 - art_sys_30: -2.75179144e-16 - art_sys_31: 2.18653461e-16 - art_sys_32: -1.94664598e-17 - art_sys_33: 2.20414584e-17 - art_sys_34: 1.27979064e-18 - art_sys_35: -5.59381758e-18 - art_sys_36: -4.50349103e-04 - art_sys_37: -6.45037931e-16 - art_sys_38: 1.80333848e-18 - art_sys_39: 2.23567938e-15 - art_sys_40: 3.04817001e-04 - art_sys_41: 1.40980308e-16 - art_sys_42: -5.83946854e-18 - art_sys_43: 2.42121969e-17 - art_sys_44: 1.51434200e-18 - art_sys_45: 4.13807076e-15 - art_sys_46: -9.59862598e-06 - art_sys_47: -4.05499574e-20 - art_sys_48: -3.76222127e-15 - art_sys_49: 2.80212828e-06 - art_sys_50: 2.89962313e-21 - art_sys_51: -1.04289132e-19 - art_sys_52: 1.74243730e-15 - art_sys_53: -1.38944665e-15 - art_sys_54: 9.23394923e-07 - art_sys_55: -9.97819146e-16 - art_sys_56: 7.00856141e-16 - art_sys_57: -1.16024152e-17 - art_sys_58: -1.11492810e-18 - art_sys_59: 9.70239379e-20 - art_sys_60: 1.36278208e-19 - art_sys_61: 1.44966342e-19 - art_sys_62: 1.37369794e-21 - art_sys_63: -6.60031502e-21 - art_sys_64: -8.64430071e-22 - art_sys_65: 3.18343261e-22 - art_sys_66: 1.12698946e-17 - art_sys_67: 2.53673545e-22 - art_sys_68: 1.62067349e-22 - art_sys_69: 3.98133079e-17 - art_sys_70: 2.00369751e-14 - art_sys_71: 2.41552936e-08 - art_sys_72: 1.23218657e-16 - art_sys_73: -9.97567862e-22 - art_sys_74: 5.64750709e-09 - art_sys_75: 6.13195138e-22 - art_sys_76: 7.33280907e-20 - art_sys_77: -3.48527424e-20 - art_sys_78: 2.01525665e-21 - art_sys_79: 3.23519443e-19 - art_sys_80: 1.34581516e-09 - art_sys_81: -7.69171706e-24 - art_sys_82: 6.09756227e-23 - art_sys_83: -6.68751841e-24 - art_sys_84: -5.83341545e-22 - art_sys_85: -3.20399165e-24 - art_sys_86: -5.53594551e-25 - art_sys_87: -7.89561100e-21 - art_sys_88: -2.43174757e-20 - art_sys_89: 6.11727820e-22 - art_sys_90: -3.30475484e-15 - art_sys_91: -1.68813867e-15 - art_sys_92: 4.04893184e-20 - art_sys_93: -5.89453817e-16 - art_sys_94: -2.65292813e-19 - art_sys_95: 1.25850074e-17 - art_sys_96: -1.43984516e-21 - art_sys_97: 2.06150931e-17 - art_sys_98: -2.23300398e-17 - art_sys_99: -3.65146295e-19 - art_sys_100: 9.19932953e-19 - art_sys_101: 1.33514699e-18 - art_sys_102: 1.85077988e-20 - art_sys_103: 2.93997263e-17 - art_sys_104: 2.50603543e-20 - art_sys_105: -4.62527991e-22 - art_sys_106: 1.21280593e-17 - art_sys_107: 2.64916739e-18 - art_sys_108: 2.04763182e-18 - art_sys_109: -4.11317561e-12 - art_sys_110: -5.47580558e-22 - art_sys_111: -7.99202050e-17 - art_sys_112: 1.20888071e-17 - art_sys_113: -3.77995081e-22 - art_sys_114: 3.58875509e-17 - art_sys_115: 9.57212784e-19 - art_sys_116: -6.17802858e-13 - art_sys_117: 2.02588620e-23 - art_sys_118: 6.20306102e-17 - art_sys_119: 1.20399722e-19 - art_sys_120: -3.62528535e-17 - art_sys_121: 1.46602059e-13 - art_sys_122: 5.22918112e-19 - art_sys_123: 7.87467212e-18 - art_sys_124: 2.94205395e-17 - art_sys_125: -1.27800812e-17 - art_sys_126: -2.18691498e-14 - art_sys_127: 2.46332942e-18 - art_sys_128: -6.31217228e-18 - art_sys_129: 4.17626314e-19 - art_sys_130: -2.59198301e-17 - art_sys_131: -2.50097331e-17 - art_sys_132: -6.80639905e-18 - art_sys_133: 2.99809471e-15 - art_sys_134: -1.09180536e-16 - art_sys_135: 7.54417280e-18 - art_sys_136: -9.73275165e-18 - art_sys_137: 4.73639613e-19 - art_sys_138: 2.31522153e-17 - art_sys_139: -6.37723808e-17 - art_sys_140: 4.07526487e-20 - art_sys_141: -2.78500121e-18 - art_sys_142: 0.0 - art_sys_143: 1.87949905e-18 - art_sys_144: 3.91233774e-18 - art_sys_145: 5.21004754e-18 - art_sys_146: -1.56843959e-21 - art_sys_147: 2.99409252e-21 - art_sys_148: 7.48060744e-21 - art_sys_149: 5.42939520e-21 - art_sys_150: 1.80627287e-20 - art_sys_151: 3.37528953e-20 - art_sys_152: -1.99433852e-20 - art_sys_153: -3.83675272e-22 - art_sys_154: 3.09742136e-21 - art_sys_155: 3.75115439e-21 - art_sys_156: 1.23116657e-20 - art_sys_157: 3.04884886e-20 - art_sys_158: 0.0 - art_sys_159: -2.64981359e-18 - art_sys_160: -2.64981359e-18 - art_sys_161: 1.73999572e-19 - art_sys_162: -6.48493626e-32 - art_sys_163: -0.0 - art_sys_164: -3.93817493e-32 - art_sys_165: -3.21846240e-28 - art_sys_166: -6.91120528e-28 - art_sys_167: -2.31082321e-28 - art_sys_168: 1.97614270e-29 - art_sys_169: 7.23803637e-30 - art_sys_170: -1.89850008e-29 - art_sys_171: -1.69217214e-30 - art_sys_172: -1.37944037e-29 - art_sys_173: 3.62480967e-31 - art_sys_174: 2.77582483e-33 - art_sys_175: -2.07675070e-31 - art_sys_176: -3.49501399e-31 - art_sys_177: 6.94879467e-32 - art_sys_178: 9.58261406e-33 - art_sys_179: -4.15562871e-34 - art_sys_180: 1.09215758e-32 - art_sys_181: -2.11905195e-33 - art_sys_182: 1.22215053e-33 - art_sys_183: -9.74438479e-36 - art_sys_184: -1.24419597e-35 - art_sys_185: -2.07992541e-33 + art_sys_25: 1.67201333e-16 + art_sys_26: -8.54091570e-16 + art_sys_27: -1.49594306e-03 + art_sys_28: -8.16760180e-15 + art_sys_29: -4.50349103e-04 + art_sys_30: -6.36181730e-16 + art_sys_31: -5.46194619e-15 + art_sys_32: 3.04817001e-04 + art_sys_33: -5.05127956e-17 + art_sys_34: 1.47102539e-16 + art_sys_35: 3.84922281e-15 + art_sys_36: 1.91457537e-16 + art_sys_37: -2.65474625e-17 + art_sys_38: -6.78869913e-18 + art_sys_39: -5.45905181e-20 + art_sys_40: -7.52463339e-19 + art_sys_41: -1.04930082e-18 + art_sys_42: -8.23411567e-19 + art_sys_43: -1.72889039e-18 + art_sys_44: -5.93652777e-19 + art_sys_45: -7.42691134e-20 + art_sys_46: -1.19756244e-19 + art_sys_47: -9.59862599e-06 + art_sys_48: -5.31201429e-14 + art_sys_49: 2.80212827e-06 + art_sys_50: -1.21564155e-20 + art_sys_51: 3.05552101e-20 + art_sys_52: 7.83395933e-16 + art_sys_53: 2.16072152e-15 + art_sys_54: 9.23394922e-07 + art_sys_55: 1.95990087e-16 + art_sys_56: -9.23187048e-16 + art_sys_57: 9.77488427e-20 + art_sys_58: 1.04618065e-21 + art_sys_59: 3.51953614e-15 + art_sys_60: 2.41552909e-08 + art_sys_61: -7.31275217e-19 + art_sys_62: 3.93635978e-17 + art_sys_63: -5.64751070e-09 + art_sys_64: -7.90291432e-18 + art_sys_65: 3.93748113e-19 + art_sys_66: 3.27445270e-19 + art_sys_67: -2.64143419e-20 + art_sys_68: -2.29741930e-21 + art_sys_69: 1.86581411e-21 + art_sys_70: 4.16641196e-22 + art_sys_71: -8.36861579e-23 + art_sys_72: -9.11674203e-23 + art_sys_73: 5.01786814e-23 + art_sys_74: -1.62742202e-19 + art_sys_75: -1.77679327e-23 + art_sys_76: -1.53883591e-20 + art_sys_77: -4.49720923e-20 + art_sys_78: -1.28167179e-21 + art_sys_79: -1.58841533e-22 + art_sys_80: 2.01751724e-23 + art_sys_81: 1.85658834e-18 + art_sys_82: -1.34581978e-09 + art_sys_83: -4.18421291e-23 + art_sys_84: -1.67807837e-23 + art_sys_85: 1.94084923e-23 + art_sys_86: 3.35750720e-24 + art_sys_87: 6.16496026e-25 + art_sys_88: -1.02630279e-19 + art_sys_89: -2.47586839e-26 + art_sys_90: 2.19230005e-22 + art_sys_91: -2.50897618e-15 + art_sys_92: -6.36530158e-25 + art_sys_93: 3.43940731e-25 + art_sys_94: 3.08913365e-20 + art_sys_95: -3.97936502e-22 + art_sys_96: 2.54336987e-15 + art_sys_97: 6.99317305e-17 + art_sys_98: -5.42288511e-23 + art_sys_99: 2.00566815e-16 + art_sys_100: -6.73022555e-23 + art_sys_101: -2.13224241e-16 + art_sys_102: -5.13154225e-19 + art_sys_103: -1.76052444e-18 + art_sys_104: 2.81501709e-18 + art_sys_105: 1.29631654e-19 + art_sys_106: 9.59696394e-18 + art_sys_107: 1.12593858e-18 + art_sys_108: 2.10699789e-19 + art_sys_109: -8.21620514e-21 + art_sys_110: -4.10128827e-18 + art_sys_111: 1.09482127e-18 + art_sys_112: -4.11314344e-12 + art_sys_113: 2.71411859e-17 + art_sys_114: -1.58428356e-21 + art_sys_115: 1.75093685e-19 + art_sys_116: -7.25201118e-19 + art_sys_117: -8.31421470e-22 + art_sys_118: -4.78707211e-19 + art_sys_119: -1.17811501e-18 + art_sys_120: -6.17780211e-13 + art_sys_121: 6.89125969e-22 + art_sys_122: 1.51186113e-18 + art_sys_123: 3.92650422e-19 + art_sys_124: 4.89883747e-19 + art_sys_125: -1.11317475e-21 + art_sys_126: -1.46601571e-13 + art_sys_127: -4.75736544e-19 + art_sys_128: -1.51257509e-18 + art_sys_129: -2.87047292e-21 + art_sys_130: 1.43685482e-17 + art_sys_131: 3.99566330e-20 + art_sys_132: 1.14833382e-17 + art_sys_133: -3.19453030e-17 + art_sys_134: -2.18773787e-14 + art_sys_135: -5.77376373e-18 + art_sys_136: -1.17739983e-19 + art_sys_137: 4.93423071e-18 + art_sys_138: -2.66479797e-19 + art_sys_139: -7.48430949e-17 + art_sys_140: 2.52174289e-20 + art_sys_141: -3.00076570e-15 + art_sys_142: 1.04806726e-19 + art_sys_143: 5.29709033e-18 + art_sys_144: -1.61532380e-19 + art_sys_145: -3.75851096e-18 + art_sys_146: -3.91735917e-19 + art_sys_147: 2.77497372e-21 + art_sys_148: 1.45274287e-21 + art_sys_149: -8.45675762e-23 + art_sys_150: -1.82333344e-18 + art_sys_151: -5.71747217e-17 + art_sys_152: -9.17671756e-21 + art_sys_153: -4.90705557e-18 + art_sys_154: -2.64073955e-19 + art_sys_155: 2.15351055e-20 + art_sys_156: -0.0 + art_sys_157: -1.18395515e-19 + art_sys_158: -0.0 + art_sys_159: -8.72302468e-19 + art_sys_160: -2.63305591e-22 + art_sys_161: 1.20347651e-19 + art_sys_162: 1.20347651e-19 + art_sys_163: 1.05226618e-19 + art_sys_164: 1.05226618e-19 + art_sys_165: -1.21801812e-33 + art_sys_166: 4.05249775e-34 + art_sys_167: 0.0 + art_sys_168: -7.59658461e-29 + art_sys_169: -7.12386379e-29 + art_sys_170: -3.11642572e-29 + art_sys_171: -2.37779336e-29 + art_sys_172: 6.90363414e-30 + art_sys_173: 3.94481053e-31 + art_sys_174: 7.14042397e-31 + art_sys_175: 3.59701070e-31 + art_sys_176: -1.53319353e-31 + art_sys_177: 6.81536467e-32 + art_sys_178: 9.93664404e-32 + art_sys_179: -6.98479657e-33 + art_sys_180: -2.29233175e-32 + art_sys_181: 3.22496742e-32 + art_sys_182: -1.09987308e-32 + art_sys_183: 7.95897344e-35 + art_sys_184: 1.05142646e-34 + art_sys_185: -3.21565346e-35 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -57567,190 +57567,190 @@ bins: luminosity_uncertainty: 8.093644 uncorrelated_uncertainty: 3.11294 - art_sys_1: 4.88427097e-17 - art_sys_2: 9.66407094e-17 + art_sys_2: 9.90750657e-17 art_sys_3: -6.27501474e-02 - art_sys_4: 1.60637396e-14 + art_sys_4: 1.53008772e-14 art_sys_5: 8.87627216e-02 - art_sys_6: -2.36352092e-16 - art_sys_7: 1.68793072e-14 + art_sys_6: -2.19626305e-16 + art_sys_7: 1.66410674e-14 art_sys_8: -8.08739447e-02 - art_sys_9: 4.74811945e-15 - art_sys_10: -2.30370511e-16 + art_sys_9: 5.01421725e-15 + art_sys_10: -2.31506674e-16 art_sys_11: -1.75463021e-01 - art_sys_12: 3.96571533e-16 - art_sys_13: 2.45838572e-14 - art_sys_14: 2.15357475e-15 - art_sys_15: -3.91384660e-01 - art_sys_16: 1.06427762e-15 - art_sys_17: 9.69862796e-15 + art_sys_12: 1.52921372e-16 + art_sys_13: -2.46167374e-14 + art_sys_14: -1.97958596e-15 + art_sys_15: 3.91384660e-01 + art_sys_16: 1.00557448e-15 + art_sys_17: 9.70727651e-15 art_sys_18: 1.70871368e+00 - art_sys_19: -3.57755467e-14 - art_sys_20: 1.28308363e-14 + art_sys_19: 3.68457538e-14 + art_sys_20: 1.29432833e-14 art_sys_21: 8.52318268e-01 - art_sys_22: -2.77553426e-16 - art_sys_23: 8.68557319e-15 + art_sys_22: -2.88081727e-16 + art_sys_23: 8.57577486e-15 art_sys_24: 4.28389318e-01 - art_sys_25: 6.68573722e-17 - art_sys_26: 6.93139098e-16 - art_sys_27: -8.22657569e-03 - art_sys_28: -2.09868922e-14 - art_sys_29: -7.43450614e-16 - art_sys_30: 1.02082610e-15 - art_sys_31: -8.33849584e-16 - art_sys_32: 7.50210189e-17 - art_sys_33: -7.91837154e-17 - art_sys_34: -7.08241020e-18 - art_sys_35: 1.85286811e-17 - art_sys_36: 1.55541242e-03 - art_sys_37: 5.35674424e-16 - art_sys_38: -2.96831492e-18 - art_sys_39: 9.12802679e-16 - art_sys_40: -1.18151027e-03 - art_sys_41: -5.02206376e-16 - art_sys_42: 1.72579438e-18 - art_sys_43: -3.30970168e-17 - art_sys_44: -3.27700753e-19 - art_sys_45: -8.44896822e-15 - art_sys_46: 4.20896436e-05 - art_sys_47: 8.21176777e-20 - art_sys_48: 1.38931363e-14 + art_sys_25: -8.67725684e-17 + art_sys_26: 6.98996688e-16 + art_sys_27: 8.22657569e-03 + art_sys_28: 2.05729626e-14 + art_sys_29: 1.55541242e-03 + art_sys_30: 5.11536881e-16 + art_sys_31: 1.14246856e-14 + art_sys_32: -1.18151027e-03 + art_sys_33: 1.53242554e-16 + art_sys_34: -7.75588878e-16 + art_sys_35: -7.16424992e-15 + art_sys_36: -1.05279240e-16 + art_sys_37: 1.43021715e-16 + art_sys_38: 2.74465182e-17 + art_sys_39: 4.32574672e-19 + art_sys_40: 3.49675760e-18 + art_sys_41: 3.41648641e-18 + art_sys_42: 1.68726347e-18 + art_sys_43: 4.49581046e-18 + art_sys_44: 6.10967596e-20 + art_sys_45: -1.57558761e-20 + art_sys_46: 2.70095413e-19 + art_sys_47: 4.20896437e-05 + art_sys_48: 1.83306125e-13 art_sys_49: -1.01574106e-05 - art_sys_50: 1.59780443e-20 - art_sys_51: -3.99037217e-21 - art_sys_52: -6.83607688e-15 - art_sys_53: 5.36180652e-15 + art_sys_50: 5.03503006e-20 + art_sys_51: 2.25425043e-19 + art_sys_52: -1.25803547e-15 + art_sys_53: -8.51076082e-15 art_sys_54: -3.61149274e-06 - art_sys_55: 3.60649504e-15 - art_sys_56: -2.44545020e-15 - art_sys_57: 4.33847745e-17 - art_sys_58: 4.14601367e-18 - art_sys_59: 2.63480639e-20 - art_sys_60: -6.79861177e-20 - art_sys_61: -5.62669190e-19 - art_sys_62: -6.45670906e-21 - art_sys_63: 2.43834192e-20 - art_sys_64: 3.40252721e-21 - art_sys_65: -1.11959024e-21 - art_sys_66: -4.40024802e-17 - art_sys_67: -9.69642579e-22 - art_sys_68: -6.77476063e-22 - art_sys_69: -1.54162723e-16 - art_sys_70: -7.89477703e-14 - art_sys_71: -9.43584521e-08 - art_sys_72: -4.64707927e-16 - art_sys_73: 3.43264499e-21 - art_sys_74: -1.97343603e-08 - art_sys_75: -2.30453599e-21 - art_sys_76: -2.83939816e-19 - art_sys_77: 1.35843671e-19 - art_sys_78: -7.77590847e-21 - art_sys_79: -1.24480117e-18 - art_sys_80: -5.17771888e-09 - art_sys_81: 7.25645984e-24 - art_sys_82: -1.05924655e-22 - art_sys_83: 9.75847560e-24 - art_sys_84: 2.31428673e-21 - art_sys_85: 7.91318462e-24 - art_sys_86: 1.44826550e-24 - art_sys_87: 1.12493899e-20 - art_sys_88: 6.64391491e-20 - art_sys_89: -1.78439497e-21 - art_sys_90: 1.02806737e-14 - art_sys_91: 6.26023539e-15 - art_sys_92: -7.40367175e-20 - art_sys_93: 2.26844211e-15 - art_sys_94: 4.86593866e-19 - art_sys_95: -5.00021217e-17 - art_sys_96: 3.98603301e-21 - art_sys_97: -3.78821727e-17 - art_sys_98: 8.60257315e-17 - art_sys_99: 8.82566182e-19 - art_sys_100: -1.65955689e-18 - art_sys_101: -1.16911333e-18 - art_sys_102: -5.16473429e-20 - art_sys_103: -9.59091047e-17 - art_sys_104: 2.56536933e-18 - art_sys_105: 1.50068418e-21 - art_sys_106: -2.30752121e-17 - art_sys_107: -1.03771345e-17 - art_sys_108: -6.65532691e-18 - art_sys_109: 7.55983013e-12 - art_sys_110: 1.69893486e-21 - art_sys_111: 1.47050802e-16 - art_sys_112: -3.36072853e-17 - art_sys_113: 1.17084442e-21 - art_sys_114: -6.68952122e-17 - art_sys_115: -2.65517020e-18 - art_sys_116: 1.99686928e-12 - art_sys_117: -6.46334049e-23 - art_sys_118: -1.14273528e-16 - art_sys_119: -3.33728921e-19 - art_sys_120: 6.52640995e-17 - art_sys_121: -3.97958559e-13 - art_sys_122: -9.34643658e-18 - art_sys_123: -2.19542261e-17 - art_sys_124: -9.39255348e-17 - art_sys_125: 3.99713707e-17 - art_sys_126: 6.06475547e-14 - art_sys_127: -5.84025871e-18 - art_sys_128: 1.76574032e-17 - art_sys_129: -1.24251821e-18 - art_sys_130: 7.24427732e-17 - art_sys_131: 6.97291244e-17 - art_sys_132: 1.91538186e-17 - art_sys_133: -8.36574905e-15 - art_sys_134: 3.04354285e-16 - art_sys_135: -2.09652798e-17 - art_sys_136: 2.80932660e-17 - art_sys_137: -1.29011865e-18 - art_sys_138: -7.37714588e-17 - art_sys_139: 1.99306499e-16 - art_sys_140: -1.58807337e-19 - art_sys_141: 1.07954994e-17 - art_sys_142: -0.0 - art_sys_143: -5.50594040e-18 - art_sys_144: -1.25275728e-17 - art_sys_145: -1.76660995e-17 - art_sys_146: 4.96011394e-21 - art_sys_147: -9.47640028e-21 - art_sys_148: -2.22010835e-20 - art_sys_149: -1.68959109e-20 - art_sys_150: -5.81234144e-20 - art_sys_151: -9.95930042e-20 - art_sys_152: 5.52924484e-20 - art_sys_153: 1.05197104e-21 - art_sys_154: -8.08448175e-21 - art_sys_155: -1.41350745e-20 - art_sys_156: -4.33349067e-20 - art_sys_157: -9.59575212e-20 - art_sys_158: -0.0 - art_sys_159: 7.83239314e-18 - art_sys_160: 7.83239314e-18 - art_sys_161: -5.15160455e-19 - art_sys_162: 1.91967827e-31 - art_sys_163: 0.0 - art_sys_164: 1.16563421e-31 - art_sys_165: 1.02754428e-27 - art_sys_166: 2.18123075e-27 - art_sys_167: 7.33295940e-28 - art_sys_168: -5.71510158e-29 - art_sys_169: -2.00742016e-29 - art_sys_170: 5.54834395e-29 - art_sys_171: 4.41462026e-30 - art_sys_172: 5.13526752e-29 - art_sys_173: -4.34750712e-30 - art_sys_174: -1.05516982e-32 - art_sys_175: 8.85346510e-31 - art_sys_176: 1.12910813e-30 - art_sys_177: -1.94732025e-31 - art_sys_178: -2.61145177e-32 - art_sys_179: 6.49924746e-33 - art_sys_180: -2.87992348e-32 - art_sys_181: 6.77299117e-33 - art_sys_182: -3.83945907e-33 - art_sys_183: 2.37023244e-35 - art_sys_184: 3.45574815e-35 - art_sys_185: 6.14802608e-33 + art_sys_55: -4.72330298e-16 + art_sys_56: 3.27139744e-15 + art_sys_57: -1.80068804e-19 + art_sys_58: -6.28715660e-22 + art_sys_59: -1.38119460e-14 + art_sys_60: -9.43584435e-08 + art_sys_61: 2.82043267e-18 + art_sys_62: -1.17162783e-16 + art_sys_63: 1.97343730e-08 + art_sys_64: 3.07995664e-17 + art_sys_65: -1.62260634e-18 + art_sys_66: -1.00736738e-18 + art_sys_67: 5.78075528e-20 + art_sys_68: 7.80573906e-21 + art_sys_69: -6.71238502e-21 + art_sys_70: -1.49140947e-21 + art_sys_71: 3.21069584e-22 + art_sys_72: 3.42853602e-22 + art_sys_73: -1.82741868e-22 + art_sys_74: 6.28706188e-19 + art_sys_75: 7.49166589e-23 + art_sys_76: 5.67562265e-20 + art_sys_77: 1.72244941e-19 + art_sys_78: 5.39225105e-21 + art_sys_79: 6.58585634e-22 + art_sys_80: 6.71422188e-23 + art_sys_81: -7.14270314e-18 + art_sys_82: 5.17773656e-09 + art_sys_83: 6.95297872e-23 + art_sys_84: 3.91306131e-23 + art_sys_85: -3.32256129e-23 + art_sys_86: -7.23539198e-24 + art_sys_87: -1.12741495e-23 + art_sys_88: 1.88660416e-19 + art_sys_89: 1.97731058e-26 + art_sys_90: -3.50455041e-21 + art_sys_91: 9.22586497e-15 + art_sys_92: 1.16108633e-24 + art_sys_93: -6.66941136e-25 + art_sys_94: -8.38791128e-20 + art_sys_95: 9.58973213e-22 + art_sys_96: -9.83334734e-15 + art_sys_97: -2.75959483e-16 + art_sys_98: 4.32697517e-22 + art_sys_99: -7.69414912e-16 + art_sys_100: 1.67170107e-22 + art_sys_101: 8.18916988e-16 + art_sys_102: 9.80849013e-19 + art_sys_103: 7.05213563e-18 + art_sys_104: -6.04566573e-18 + art_sys_105: -3.61716350e-19 + art_sys_106: -3.79992475e-17 + art_sys_107: -3.63946013e-18 + art_sys_108: -5.87928864e-19 + art_sys_109: 2.28287549e-20 + art_sys_110: -4.75214479e-18 + art_sys_111: 1.86959963e-18 + art_sys_112: 7.55977149e-12 + art_sys_113: -1.06166441e-16 + art_sys_114: 4.43664697e-21 + art_sys_115: -2.89533080e-19 + art_sys_116: 2.00611417e-18 + art_sys_117: 2.22946383e-21 + art_sys_118: 6.45327116e-19 + art_sys_119: 3.15754012e-18 + art_sys_120: 1.99679619e-12 + art_sys_121: -1.96390497e-21 + art_sys_122: -2.81149462e-18 + art_sys_123: -1.08889863e-18 + art_sys_124: -7.62262063e-19 + art_sys_125: 3.64203375e-21 + art_sys_126: 3.97957192e-13 + art_sys_127: 1.15644851e-18 + art_sys_128: 4.94183813e-18 + art_sys_129: 9.01960957e-21 + art_sys_130: -4.01122816e-17 + art_sys_131: -1.25577823e-19 + art_sys_132: -3.72189833e-17 + art_sys_133: 8.90417510e-17 + art_sys_134: 6.06703914e-14 + art_sys_135: 1.60461863e-17 + art_sys_136: 3.71226086e-19 + art_sys_137: -1.38701271e-17 + art_sys_138: 7.05154255e-19 + art_sys_139: 2.08887546e-16 + art_sys_140: -7.70812847e-20 + art_sys_141: 8.37300441e-15 + art_sys_142: -3.21848340e-19 + art_sys_143: -1.47788772e-17 + art_sys_144: 4.64094057e-19 + art_sys_145: 1.04214615e-17 + art_sys_146: 1.09294373e-18 + art_sys_147: -7.25923978e-21 + art_sys_148: -3.31200414e-21 + art_sys_149: 5.80758764e-20 + art_sys_150: 5.30505228e-18 + art_sys_151: 1.80926319e-16 + art_sys_152: 3.19438168e-20 + art_sys_153: 1.44020956e-17 + art_sys_154: 7.10777084e-19 + art_sys_155: -6.56199458e-20 + art_sys_156: 0.0 + art_sys_157: 3.25245384e-19 + art_sys_158: 0.0 + art_sys_159: 2.39158416e-18 + art_sys_160: -1.12105743e-20 + art_sys_161: -3.32270663e-19 + art_sys_162: -3.32270663e-19 + art_sys_163: -2.94848236e-19 + art_sys_164: -2.94848236e-19 + art_sys_165: 3.40413684e-33 + art_sys_166: -1.13254997e-33 + art_sys_167: -0.0 + art_sys_168: 2.75590612e-28 + art_sys_169: 2.24816632e-28 + art_sys_170: 1.01641278e-28 + art_sys_171: 7.14666970e-29 + art_sys_172: -2.14814191e-29 + art_sys_173: -8.02618140e-31 + art_sys_174: -2.20717627e-30 + art_sys_175: -1.05995583e-30 + art_sys_176: 4.51060400e-31 + art_sys_177: -2.05173581e-31 + art_sys_178: -2.92500115e-31 + art_sys_179: 2.12336796e-32 + art_sys_180: 6.32764318e-32 + art_sys_181: -9.68591078e-32 + art_sys_182: 3.54505815e-32 + art_sys_183: -2.52293283e-34 + art_sys_184: -2.97335864e-34 + art_sys_185: 8.81367777e-35 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -57858,190 +57858,190 @@ bins: luminosity_uncertainty: 3.76038 uncorrelated_uncertainty: 1.4463 - art_sys_1: -1.84595261e-18 - art_sys_2: 7.50658649e-17 + art_sys_2: 7.48977240e-17 art_sys_3: 7.55482128e-03 - art_sys_4: 1.68309498e-16 + art_sys_4: 5.49625448e-17 art_sys_5: 4.37778576e-02 - art_sys_6: 1.35968243e-16 - art_sys_7: -3.14545793e-17 + art_sys_6: 1.45705575e-16 + art_sys_7: -1.52299224e-17 art_sys_8: 8.02527676e-02 - art_sys_9: 4.62447160e-18 - art_sys_10: 4.49167118e-17 + art_sys_9: -1.90648701e-17 + art_sys_10: 4.56529296e-17 art_sys_11: 2.02451264e-02 - art_sys_12: 2.97284822e-16 - art_sys_13: 2.16105174e-14 - art_sys_14: 1.06951115e-15 - art_sys_15: -2.83998131e-01 - art_sys_16: -2.81099491e-16 - art_sys_17: 7.62234234e-15 + art_sys_12: 1.29697199e-16 + art_sys_13: -2.16068019e-14 + art_sys_14: 2.60752807e-16 + art_sys_15: 2.83998131e-01 + art_sys_16: -1.54775106e-15 + art_sys_17: 7.67195090e-15 art_sys_18: 1.29552355e-01 - art_sys_19: 9.27948223e-16 - art_sys_20: -3.46941966e-14 + art_sys_19: -2.91131476e-15 + art_sys_20: -3.47301046e-14 art_sys_21: 1.11517690e+00 - art_sys_22: -5.42128835e-17 - art_sys_23: -2.64592681e-14 + art_sys_22: -9.04695053e-17 + art_sys_23: -2.63506790e-14 art_sys_24: -6.32757998e-01 - art_sys_25: -2.31807068e-16 - art_sys_26: -5.03601941e-16 - art_sys_27: 5.58164153e-03 - art_sys_28: 9.46944842e-14 - art_sys_29: 2.81735582e-15 - art_sys_30: -2.92180769e-15 - art_sys_31: 2.12160728e-15 - art_sys_32: -1.92450348e-16 - art_sys_33: 2.32198750e-16 - art_sys_34: 1.94388879e-17 - art_sys_35: -4.66880412e-17 - art_sys_36: -4.99269104e-03 - art_sys_37: -4.01780586e-16 - art_sys_38: 5.28957332e-18 - art_sys_39: -1.22927391e-14 - art_sys_40: 2.82885046e-03 - art_sys_41: 1.01490622e-15 - art_sys_42: -3.51007341e-18 - art_sys_43: 1.02920566e-16 - art_sys_44: 8.50587558e-19 - art_sys_45: 1.12570574e-14 - art_sys_46: -1.21661833e-04 - art_sys_47: -2.80692566e-19 - art_sys_48: -4.60251060e-14 + art_sys_25: 2.04111769e-16 + art_sys_26: -5.04809784e-16 + art_sys_27: -5.58164153e-03 + art_sys_28: -3.87102006e-14 + art_sys_29: -4.99269104e-03 + art_sys_30: -3.46126997e-16 + art_sys_31: -1.72601075e-14 + art_sys_32: 2.82885046e-03 + art_sys_33: -1.96828951e-16 + art_sys_34: 2.24303720e-15 + art_sys_35: 7.52861134e-15 + art_sys_36: 4.07782775e-16 + art_sys_37: -4.31169485e-16 + art_sys_38: -7.78436823e-17 + art_sys_39: -5.63116690e-19 + art_sys_40: -9.35326504e-18 + art_sys_41: -9.34989914e-18 + art_sys_42: -4.57528972e-18 + art_sys_43: -1.27291393e-17 + art_sys_44: -3.00257448e-18 + art_sys_45: 1.03630803e-18 + art_sys_46: -7.16725300e-19 + art_sys_47: -1.21661833e-04 + art_sys_48: -6.25734047e-13 art_sys_49: 3.34380460e-05 - art_sys_50: 1.84337650e-20 - art_sys_51: -8.66519211e-20 - art_sys_52: 2.14151811e-14 - art_sys_53: -1.44261896e-14 + art_sys_50: 1.34475090e-21 + art_sys_51: 6.61221503e-20 + art_sys_52: 5.36256072e-15 + art_sys_53: 2.65883482e-14 art_sys_54: 1.13011766e-05 - art_sys_55: -1.10960323e-14 - art_sys_56: 7.82996491e-15 - art_sys_57: -1.13584302e-16 - art_sys_58: -1.14854779e-17 - art_sys_59: 2.24952251e-18 - art_sys_60: 2.54922305e-20 - art_sys_61: 1.33213704e-18 - art_sys_62: 1.43930708e-20 - art_sys_63: -8.51075238e-20 - art_sys_64: -1.10723466e-20 - art_sys_65: 3.25657000e-21 - art_sys_66: 1.58571373e-16 - art_sys_67: 3.48210957e-21 - art_sys_68: 2.41659803e-21 - art_sys_69: 5.36057000e-16 - art_sys_70: 2.84616704e-13 - art_sys_71: 3.40041953e-07 - art_sys_72: 1.63248415e-15 - art_sys_73: -7.32351004e-21 - art_sys_74: 7.07446005e-08 - art_sys_75: 7.19368055e-21 - art_sys_76: 9.81812663e-19 - art_sys_77: -4.66166864e-19 - art_sys_78: 2.68825992e-20 - art_sys_79: 4.33791874e-18 - art_sys_80: 1.80380794e-08 - art_sys_81: -1.25039311e-22 - art_sys_82: 8.64606234e-22 - art_sys_83: -9.74889429e-23 - art_sys_84: -5.21962449e-21 - art_sys_85: -3.76403999e-23 - art_sys_86: -6.75040044e-24 - art_sys_87: -1.16428895e-19 - art_sys_88: -3.42387307e-19 - art_sys_89: 5.70567917e-21 - art_sys_90: -3.80061567e-14 - art_sys_91: -2.20318866e-14 - art_sys_92: 5.70911852e-19 - art_sys_93: -7.90641954e-15 - art_sys_94: -3.73573553e-18 - art_sys_95: 1.70691157e-16 - art_sys_96: -1.80902654e-20 - art_sys_97: 2.90063898e-16 - art_sys_98: -2.98532219e-16 - art_sys_99: -1.31216542e-17 - art_sys_100: 1.29947224e-17 - art_sys_101: -1.77052231e-18 - art_sys_102: 2.40313389e-19 - art_sys_103: 3.42662695e-16 - art_sys_104: -4.82399659e-18 - art_sys_105: -6.48766736e-21 - art_sys_106: 1.70684948e-16 - art_sys_107: 3.30286411e-17 - art_sys_108: 2.37853197e-17 - art_sys_109: -5.78715745e-11 - art_sys_110: -7.51668658e-21 - art_sys_111: -1.12605793e-15 - art_sys_112: 1.51418427e-16 - art_sys_113: -5.18656899e-21 - art_sys_114: 5.04955903e-16 - art_sys_115: 1.21320977e-17 - art_sys_116: -7.23166852e-12 - art_sys_117: 2.80669835e-22 - art_sys_118: 8.73360703e-16 - art_sys_119: 1.52533584e-18 - art_sys_120: -5.13012998e-16 - art_sys_121: 2.07005791e-12 - art_sys_122: -7.46880329e-18 - art_sys_123: 1.02205026e-16 - art_sys_124: 3.45894714e-16 - art_sys_125: -1.53675689e-16 - art_sys_126: -2.77525846e-13 - art_sys_127: 3.46485389e-17 - art_sys_128: -8.20676869e-17 - art_sys_129: 5.60792890e-18 - art_sys_130: -3.36791446e-16 - art_sys_131: -3.24573164e-16 - art_sys_132: -8.49678424e-17 - art_sys_133: 3.89256510e-14 - art_sys_134: -1.41685341e-15 - art_sys_135: 9.50628300e-17 - art_sys_136: -1.28522748e-16 - art_sys_137: 5.22422229e-18 - art_sys_138: 3.21749185e-16 - art_sys_139: -8.77334432e-16 - art_sys_140: 4.66744952e-19 - art_sys_141: -4.32569801e-17 - art_sys_142: 0.0 - art_sys_143: 2.45406573e-17 - art_sys_144: 5.44704768e-17 - art_sys_145: 7.49727017e-17 - art_sys_146: -2.17175573e-20 - art_sys_147: 4.14786634e-20 - art_sys_148: 1.00837879e-19 - art_sys_149: 7.46341368e-20 - art_sys_150: 2.52326919e-19 - art_sys_151: 4.54669114e-19 - art_sys_152: -2.58587029e-19 - art_sys_153: -4.98022900e-21 - art_sys_154: 3.94865495e-20 - art_sys_155: 5.61376233e-20 - art_sys_156: 1.81346269e-19 - art_sys_157: 4.22122031e-19 - art_sys_158: 0.0 - art_sys_159: -3.55149068e-17 - art_sys_160: -3.55149068e-17 - art_sys_161: 2.34118792e-18 - art_sys_162: -8.72308118e-31 - art_sys_163: -0.0 - art_sys_164: -5.29655333e-31 - art_sys_165: -4.51140851e-27 - art_sys_166: -9.55203246e-27 - art_sys_167: -3.20237055e-27 - art_sys_168: 2.66019133e-28 - art_sys_169: 9.52425955e-29 - art_sys_170: -2.56871604e-28 - art_sys_171: -2.15730477e-29 - art_sys_172: -1.34854953e-28 - art_sys_173: -7.16571504e-30 - art_sys_174: 4.25591298e-32 - art_sys_175: -1.53697798e-30 - art_sys_176: -4.42524859e-30 - art_sys_177: 9.79143885e-31 - art_sys_178: 1.31066374e-31 - art_sys_179: -1.60939842e-32 - art_sys_180: 1.43172684e-31 - art_sys_181: -2.84992631e-32 - art_sys_182: 1.63937236e-32 - art_sys_183: -1.23295558e-34 - art_sys_184: -1.61818492e-34 - art_sys_185: -2.80005675e-32 + art_sys_55: 1.28681057e-15 + art_sys_56: -1.05089287e-14 + art_sys_57: 9.88253059e-20 + art_sys_58: -1.44790589e-21 + art_sys_59: 4.97808416e-14 + art_sys_60: 3.40041922e-07 + art_sys_61: -9.86279786e-18 + art_sys_62: 3.61893936e-16 + art_sys_63: -7.07446460e-08 + art_sys_64: -7.40532232e-17 + art_sys_65: 3.59882779e-18 + art_sys_66: 4.00863769e-18 + art_sys_67: -4.38597990e-19 + art_sys_68: -2.02789950e-20 + art_sys_69: 2.02091128e-20 + art_sys_70: 4.40061275e-21 + art_sys_71: -1.28881922e-21 + art_sys_72: -1.21958629e-21 + art_sys_73: 6.78762090e-22 + art_sys_74: -2.19615169e-18 + art_sys_75: -2.18746619e-22 + art_sys_76: -2.07616055e-19 + art_sys_77: -6.03123787e-19 + art_sys_78: -1.70841070e-20 + art_sys_79: -1.84839399e-21 + art_sys_80: 3.32583492e-22 + art_sys_81: 2.48851460e-17 + art_sys_82: -1.80381411e-08 + art_sys_83: -5.35180551e-22 + art_sys_84: -2.24680748e-22 + art_sys_85: 2.78399649e-22 + art_sys_86: 4.63842350e-23 + art_sys_87: -1.10768652e-23 + art_sys_88: -1.44398170e-18 + art_sys_89: -4.13623018e-25 + art_sys_90: -2.17657143e-21 + art_sys_91: -3.27009584e-14 + art_sys_92: -8.88240570e-24 + art_sys_93: 4.77070011e-24 + art_sys_94: 4.36208570e-19 + art_sys_95: -4.01105213e-21 + art_sys_96: 3.42086874e-14 + art_sys_97: 8.27499721e-16 + art_sys_98: -1.64840411e-21 + art_sys_99: 2.68063754e-15 + art_sys_100: -1.81763113e-21 + art_sys_101: -2.85320619e-15 + art_sys_102: -7.15347372e-18 + art_sys_103: -2.22179712e-17 + art_sys_104: 1.80035006e-17 + art_sys_105: 1.68300760e-18 + art_sys_106: 1.34270980e-16 + art_sys_107: 1.31757689e-17 + art_sys_108: 2.73558285e-18 + art_sys_109: -1.06446935e-19 + art_sys_110: -7.86051883e-17 + art_sys_111: 1.62854411e-17 + art_sys_112: -5.78711211e-11 + art_sys_113: 3.32089819e-16 + art_sys_114: -2.06052448e-20 + art_sys_115: 7.32178715e-19 + art_sys_116: -9.82758159e-18 + art_sys_117: -1.05898854e-20 + art_sys_118: -5.36275381e-18 + art_sys_119: -1.76218877e-17 + art_sys_120: -7.23140409e-12 + art_sys_121: 9.03973537e-21 + art_sys_122: 2.01066640e-17 + art_sys_123: 4.97647800e-18 + art_sys_124: 7.62900081e-18 + art_sys_125: -1.56762940e-20 + art_sys_126: -2.07004965e-12 + art_sys_127: -5.78075877e-18 + art_sys_128: -1.76476226e-17 + art_sys_129: -3.96170016e-20 + art_sys_130: 1.86604877e-16 + art_sys_131: 5.51509205e-19 + art_sys_132: 1.33851359e-16 + art_sys_133: -4.14572192e-16 + art_sys_134: -2.77630031e-13 + art_sys_135: -7.95416400e-17 + art_sys_136: -1.62761961e-18 + art_sys_137: 6.43084054e-17 + art_sys_138: -3.40252748e-18 + art_sys_139: -9.71834045e-16 + art_sys_140: 3.43971751e-19 + art_sys_141: -3.89598748e-14 + art_sys_142: 9.55498747e-19 + art_sys_143: 6.87609097e-17 + art_sys_144: -2.14402019e-18 + art_sys_145: -4.75216809e-17 + art_sys_146: -5.09488000e-18 + art_sys_147: 3.44823831e-20 + art_sys_148: 1.66959802e-20 + art_sys_149: -1.17536884e-20 + art_sys_150: -2.42244078e-17 + art_sys_151: -7.91659287e-16 + art_sys_152: -1.35088956e-19 + art_sys_153: -6.53494492e-17 + art_sys_154: -3.52262382e-18 + art_sys_155: 2.90193127e-19 + art_sys_156: -0.0 + art_sys_157: -1.48474179e-18 + art_sys_158: -0.0 + art_sys_159: -1.11542766e-17 + art_sys_160: 1.87759421e-20 + art_sys_161: 1.53610659e-18 + art_sys_162: 1.53610659e-18 + art_sys_163: 1.35417821e-18 + art_sys_164: 1.35417821e-18 + art_sys_165: -1.56530328e-32 + art_sys_166: 5.20733271e-33 + art_sys_167: 0.0 + art_sys_168: -1.10251502e-27 + art_sys_169: -9.87554934e-28 + art_sys_170: -6.19829987e-28 + art_sys_171: -3.14661077e-28 + art_sys_172: 9.89507493e-29 + art_sys_173: 4.98814790e-30 + art_sys_174: 9.32091387e-30 + art_sys_175: 4.87970722e-30 + art_sys_176: -2.07790830e-30 + art_sys_177: 9.27934097e-31 + art_sys_178: 1.34264749e-30 + art_sys_179: -9.38410267e-32 + art_sys_180: -2.93760163e-31 + art_sys_181: 4.39830760e-31 + art_sys_182: -1.48539315e-31 + art_sys_183: 1.14156222e-33 + art_sys_184: 1.37835395e-33 + art_sys_185: -4.12297956e-34 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -58149,190 +58149,190 @@ bins: luminosity_uncertainty: 1.75861400e+00 uncorrelated_uncertainty: 6.76390000e-01 - art_sys_1: -1.31006895e-18 - art_sys_2: 4.33103364e-18 + art_sys_2: 4.26837597e-18 art_sys_3: 2.27953120e-03 - art_sys_4: 2.08314218e-17 + art_sys_4: 3.59762007e-17 art_sys_5: 1.87462833e-03 - art_sys_6: 1.71398498e-17 - art_sys_7: -2.03852986e-17 + art_sys_6: 1.76095855e-17 + art_sys_7: -1.26153067e-17 art_sys_8: 8.76248995e-03 - art_sys_9: 8.22746254e-18 - art_sys_10: 9.03319284e-18 + art_sys_9: -3.22388511e-18 + art_sys_10: 9.12058975e-18 art_sys_11: 7.69517351e-03 - art_sys_12: 6.81787042e-18 - art_sys_13: -5.59299312e-16 - art_sys_14: -8.19822093e-17 - art_sys_15: 1.07140019e-02 - art_sys_16: 3.92798017e-17 - art_sys_17: 8.29943224e-17 + art_sys_12: 1.35195169e-17 + art_sys_13: 5.60731841e-16 + art_sys_14: 1.38583692e-16 + art_sys_15: -1.07140019e-02 + art_sys_16: -3.12250088e-16 + art_sys_17: 8.38315783e-17 art_sys_18: -8.10092244e-02 - art_sys_19: 1.75445635e-15 - art_sys_20: -3.09745621e-15 + art_sys_19: -1.96720304e-15 + art_sys_20: -3.10305926e-15 art_sys_21: 2.59958545e-03 - art_sys_22: 2.75381503e-15 - art_sys_23: -2.13375684e-15 + art_sys_22: 2.74905959e-15 + art_sys_23: -2.11708901e-15 art_sys_24: -7.48757864e-02 - art_sys_25: -5.62574313e-16 - art_sys_26: -1.04438709e-15 - art_sys_27: -1.24313414e-01 - art_sys_28: -2.76545167e-13 - art_sys_29: -7.66826408e-15 - art_sys_30: 1.24691049e-14 - art_sys_31: -1.21542673e-14 - art_sys_32: 1.13141681e-15 - art_sys_33: -9.71007190e-16 - art_sys_34: -1.06181544e-16 - art_sys_35: 2.68622840e-16 - art_sys_36: 1.62801408e-02 - art_sys_37: 5.25671019e-16 - art_sys_38: -5.77554493e-17 - art_sys_39: 9.28942104e-14 - art_sys_40: -1.84131364e-02 - art_sys_41: -6.20995673e-15 - art_sys_42: 8.90017355e-18 - art_sys_43: -5.27265251e-16 - art_sys_44: -1.56157679e-18 - art_sys_45: -5.74817068e-14 - art_sys_46: 6.00859553e-04 - art_sys_47: 6.51206672e-19 - art_sys_48: 2.41583753e-13 + art_sys_25: 5.44919108e-16 + art_sys_26: -9.54488126e-16 + art_sys_27: 1.24313414e-01 + art_sys_28: 1.58442215e-13 + art_sys_29: 1.62801408e-02 + art_sys_30: 3.29702358e-16 + art_sys_31: 9.94376493e-14 + art_sys_32: -1.84131364e-02 + art_sys_33: 8.69466291e-16 + art_sys_34: -1.10340737e-14 + art_sys_35: -3.90165433e-14 + art_sys_36: -1.56083350e-15 + art_sys_37: 2.18439646e-15 + art_sys_38: 3.94370751e-16 + art_sys_39: 6.93602518e-19 + art_sys_40: 5.25244180e-17 + art_sys_41: 4.54924310e-17 + art_sys_42: 2.19989415e-17 + art_sys_43: 6.42452114e-17 + art_sys_44: -2.09206752e-18 + art_sys_45: -6.40648908e-19 + art_sys_46: 2.73597081e-18 + art_sys_47: 6.00859553e-04 + art_sys_48: 3.32939226e-12 art_sys_49: -1.75325806e-04 - art_sys_50: 5.51061619e-20 - art_sys_51: -4.57115741e-19 - art_sys_52: -1.16674037e-13 - art_sys_53: 7.11529544e-14 - art_sys_54: -6.15393775e-05 - art_sys_55: 6.01243522e-14 - art_sys_56: -4.10316985e-14 - art_sys_57: 6.16050382e-16 - art_sys_58: 5.94013855e-17 - art_sys_59: 1.63057832e-17 - art_sys_60: 3.64313983e-19 - art_sys_61: -7.96916530e-18 - art_sys_62: -1.18714731e-19 - art_sys_63: 4.47923997e-19 - art_sys_64: 5.53504507e-20 - art_sys_65: -1.82766610e-20 - art_sys_66: -7.42808409e-16 - art_sys_67: -1.53905804e-20 - art_sys_68: -1.06332344e-20 - art_sys_69: -2.75922099e-15 - art_sys_70: -1.32064227e-12 - art_sys_71: -1.59203824e-06 - art_sys_72: -7.60776203e-15 - art_sys_73: 4.96704868e-20 - art_sys_74: -3.72721054e-07 - art_sys_75: -3.21595471e-20 - art_sys_76: -5.09352116e-18 - art_sys_77: 2.43296742e-18 - art_sys_78: -1.40216026e-19 - art_sys_79: -2.23675783e-17 - art_sys_80: -9.29817222e-08 - art_sys_81: 1.61724920e-22 - art_sys_82: -2.49315377e-21 - art_sys_83: 2.43098356e-22 - art_sys_84: 3.76544843e-20 - art_sys_85: 1.87811587e-22 - art_sys_86: 6.20360409e-23 - art_sys_87: 2.60770390e-19 - art_sys_88: 1.37373589e-18 - art_sys_89: -4.89878653e-20 - art_sys_90: 2.08551559e-13 - art_sys_91: 1.14835571e-13 - art_sys_92: -1.72398153e-18 - art_sys_93: 4.07502794e-14 - art_sys_94: 1.13340776e-17 - art_sys_95: -8.62202911e-16 - art_sys_96: 9.14092359e-20 - art_sys_97: -8.82374910e-16 - art_sys_98: 1.53083771e-15 - art_sys_99: 4.13721872e-17 - art_sys_100: -3.87166627e-17 - art_sys_101: 3.95344909e-18 - art_sys_102: -1.15523062e-18 - art_sys_103: -2.15065824e-15 - art_sys_104: 4.37602529e-17 - art_sys_105: 2.96343375e-20 - art_sys_106: -5.31063910e-16 - art_sys_107: -1.76394581e-16 - art_sys_108: -1.49696376e-16 - art_sys_109: 1.76084886e-10 - art_sys_110: 3.48150830e-20 - art_sys_111: 3.42805018e-15 - art_sys_112: -7.74768048e-16 - art_sys_113: 2.40255663e-20 - art_sys_114: -1.55829606e-15 - art_sys_115: -6.06285413e-17 - art_sys_116: 4.48000682e-11 - art_sys_117: -1.29460838e-21 - art_sys_118: -2.66243641e-15 - art_sys_119: -7.62382589e-18 - art_sys_120: 1.52327431e-15 - art_sys_121: -8.21764972e-12 - art_sys_122: -2.02043917e-16 - art_sys_123: -4.91411149e-16 - art_sys_124: -2.11079696e-15 - art_sys_125: 8.93605465e-16 - art_sys_126: 1.38340138e-12 - art_sys_127: -1.30063631e-16 - art_sys_128: 3.94120923e-16 - art_sys_129: -2.63466004e-17 - art_sys_130: 1.61832829e-15 - art_sys_131: 1.56083173e-15 - art_sys_132: 4.40023849e-16 - art_sys_133: -1.87131598e-13 - art_sys_134: 6.81353048e-15 - art_sys_135: -4.81065853e-16 - art_sys_136: 6.11160730e-16 - art_sys_137: -3.27815380e-17 - art_sys_138: -1.48111461e-15 - art_sys_139: 4.06416031e-15 - art_sys_140: -2.72734094e-18 - art_sys_141: 1.85361103e-16 - art_sys_142: -0.0 - art_sys_143: -1.20170464e-16 - art_sys_144: -2.50726375e-16 - art_sys_145: -3.37160377e-16 - art_sys_146: 1.00166445e-19 - art_sys_147: -1.91238016e-19 - art_sys_148: -4.70124869e-19 - art_sys_149: -3.45396859e-19 - art_sys_150: -1.15778472e-18 - art_sys_151: -2.11573007e-18 - art_sys_152: 1.24192993e-18 - art_sys_153: 2.37448477e-20 - art_sys_154: -1.89405760e-19 - art_sys_155: -2.51738252e-19 - art_sys_156: -8.01376955e-19 - art_sys_157: -1.94216715e-18 - art_sys_158: -0.0 - art_sys_159: 1.66818191e-16 - art_sys_160: 1.66818191e-16 - art_sys_161: -1.09349771e-17 - art_sys_162: 4.07586915e-30 - art_sys_163: 0.0 - art_sys_164: 2.47527929e-30 - art_sys_165: 2.09564012e-26 - art_sys_166: 4.40721622e-26 - art_sys_167: 1.47489543e-26 - art_sys_168: -1.22679719e-27 - art_sys_169: -4.42528820e-28 - art_sys_170: 1.18631917e-27 - art_sys_171: -7.16893088e-29 - art_sys_172: 6.77430581e-28 - art_sys_173: -2.15367232e-29 - art_sys_174: -1.84164392e-31 - art_sys_175: 9.41743255e-30 - art_sys_176: 1.58959548e-29 - art_sys_177: -3.26056065e-30 - art_sys_178: -5.52782782e-31 - art_sys_179: 8.93867543e-32 - art_sys_180: -6.57335099e-31 - art_sys_181: 1.24771736e-31 - art_sys_182: -6.93851674e-32 - art_sys_183: 6.74093553e-34 - art_sys_184: 7.73626678e-34 - art_sys_185: 1.30556393e-31 + art_sys_50: 2.43808006e-19 + art_sys_51: 1.38107609e-18 + art_sys_52: -3.33716762e-14 + art_sys_53: -1.45104765e-13 + art_sys_54: -6.15393774e-05 + art_sys_55: -6.74293133e-15 + art_sys_56: 5.49870275e-14 + art_sys_57: -1.87565105e-18 + art_sys_58: 1.50682240e-20 + art_sys_59: -2.32044815e-13 + art_sys_60: -1.59203807e-06 + art_sys_61: 5.08280255e-17 + art_sys_62: -1.82523419e-15 + art_sys_63: 3.72721291e-07 + art_sys_64: 4.86272071e-16 + art_sys_65: -2.91750078e-17 + art_sys_66: -5.76534192e-18 + art_sys_67: -1.25721949e-19 + art_sys_68: 6.19659909e-20 + art_sys_69: -9.78983009e-20 + art_sys_70: -2.03707476e-20 + art_sys_71: 6.02931091e-21 + art_sys_72: 5.90381723e-21 + art_sys_73: -2.86450458e-21 + art_sys_74: 1.13246563e-17 + art_sys_75: 1.65227117e-21 + art_sys_76: 1.02896717e-18 + art_sys_77: 3.09648945e-18 + art_sys_78: 9.42933217e-20 + art_sys_79: 1.27745004e-20 + art_sys_80: 6.21495230e-22 + art_sys_81: -1.28268361e-16 + art_sys_82: 9.29820407e-08 + art_sys_83: 1.73282836e-21 + art_sys_84: 8.85299922e-22 + art_sys_85: -7.75014890e-22 + art_sys_86: -1.62472238e-22 + art_sys_87: -4.14287121e-22 + art_sys_88: 4.39387697e-18 + art_sys_89: 6.39762645e-25 + art_sys_90: -7.54146195e-20 + art_sys_91: 1.68839117e-13 + art_sys_92: 2.73790873e-23 + art_sys_93: -1.55008030e-23 + art_sys_94: -1.73211427e-18 + art_sys_95: 1.57676695e-20 + art_sys_96: -1.76314608e-13 + art_sys_97: -4.61288413e-15 + art_sys_98: 8.31416423e-21 + art_sys_99: -1.38177222e-14 + art_sys_100: -1.40823799e-21 + art_sys_101: 1.47070211e-14 + art_sys_102: 2.27883194e-17 + art_sys_103: 1.21100008e-16 + art_sys_104: -8.74531359e-17 + art_sys_105: -8.09139430e-18 + art_sys_106: -6.88530329e-16 + art_sys_107: -8.16645906e-17 + art_sys_108: -1.31513045e-17 + art_sys_109: 5.12458492e-19 + art_sys_110: -8.64816243e-17 + art_sys_111: 4.01421576e-18 + art_sys_112: 1.76083520e-10 + art_sys_113: -1.80922425e-15 + art_sys_114: 9.89504758e-20 + art_sys_115: -3.03560204e-18 + art_sys_116: 4.29360054e-17 + art_sys_117: 5.15489383e-20 + art_sys_118: 1.44255232e-17 + art_sys_119: 6.10678601e-17 + art_sys_120: 4.47984253e-11 + art_sys_121: -4.31894563e-20 + art_sys_122: -6.45714038e-17 + art_sys_123: -2.48670880e-17 + art_sys_124: -1.87996704e-17 + art_sys_125: 7.16269503e-20 + art_sys_126: 8.21762818e-12 + art_sys_127: 2.90262374e-17 + art_sys_128: 1.11807732e-16 + art_sys_129: 1.83073790e-19 + art_sys_130: -8.96885974e-16 + art_sys_131: -2.54855684e-18 + art_sys_132: -8.35803426e-16 + art_sys_133: 1.99341648e-15 + art_sys_134: 1.38392322e-12 + art_sys_135: 3.36423347e-16 + art_sys_136: 7.51525468e-18 + art_sys_137: -3.08350018e-16 + art_sys_138: 1.63455287e-17 + art_sys_139: 4.67166594e-15 + art_sys_140: -1.59707465e-18 + art_sys_141: 1.87297534e-13 + art_sys_142: -8.72794941e-18 + art_sys_143: -3.30648995e-16 + art_sys_144: 1.00855258e-17 + art_sys_145: 2.38527884e-16 + art_sys_146: 2.44224437e-17 + art_sys_147: -1.72631917e-19 + art_sys_148: -8.91669587e-20 + art_sys_149: 7.71761473e-19 + art_sys_150: 1.14501049e-16 + art_sys_151: 3.65274485e-15 + art_sys_152: 5.93601217e-19 + art_sys_153: 3.09066273e-16 + art_sys_154: 1.39060790e-17 + art_sys_155: -1.37256463e-18 + art_sys_156: 0.0 + art_sys_157: 7.47858307e-18 + art_sys_158: 0.0 + art_sys_159: 5.45066183e-17 + art_sys_160: -4.75249604e-20 + art_sys_161: -7.55485021e-18 + art_sys_162: -7.55485021e-18 + art_sys_163: -6.61883268e-18 + art_sys_164: -6.61883268e-18 + art_sys_165: 7.65853184e-32 + art_sys_166: -2.54823127e-32 + art_sys_167: -0.0 + art_sys_168: 5.12013619e-27 + art_sys_169: 4.56380569e-27 + art_sys_170: 4.80914897e-27 + art_sys_171: 1.37319579e-27 + art_sys_172: -4.63713863e-28 + art_sys_173: -2.59659347e-29 + art_sys_174: -4.27485327e-29 + art_sys_175: -2.24868751e-29 + art_sys_176: 9.56766651e-30 + art_sys_177: -4.28599274e-30 + art_sys_178: -6.20766947e-30 + art_sys_179: 4.45503203e-31 + art_sys_180: 1.43515699e-30 + art_sys_181: -2.02377591e-30 + art_sys_182: 6.98302633e-31 + art_sys_183: -5.18455209e-33 + art_sys_184: -6.56570357e-33 + art_sys_185: 2.00559002e-33 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -58440,190 +58440,190 @@ bins: luminosity_uncertainty: 8.45262600e-01 uncorrelated_uncertainty: 3.25101000e-01 - art_sys_1: -1.82517388e-19 - art_sys_2: -1.12231102e-18 + art_sys_2: -1.12318621e-18 art_sys_3: 2.20792751e-04 - art_sys_4: -1.87707020e-18 + art_sys_4: 9.47321818e-19 art_sys_5: -7.24334081e-04 - art_sys_6: -1.16911694e-18 - art_sys_7: -5.49812881e-19 + art_sys_6: -1.33213554e-18 + art_sys_7: -5.42121072e-19 art_sys_8: -8.55469714e-04 - art_sys_9: 3.70560651e-19 - art_sys_10: -5.67429440e-20 + art_sys_9: 5.49756353e-20 + art_sys_10: -6.38335246e-20 art_sys_11: 6.48004454e-05 - art_sys_12: -9.22643918e-18 - art_sys_13: -9.18290545e-16 - art_sys_14: -4.87762378e-17 - art_sys_15: 1.21292081e-02 - art_sys_16: -4.62691837e-17 - art_sys_17: -3.57076586e-16 + art_sys_12: -2.39094665e-18 + art_sys_13: 9.18306683e-16 + art_sys_14: -4.12118766e-17 + art_sys_15: -1.21292081e-02 + art_sys_16: 1.45260551e-16 + art_sys_17: -3.59023105e-16 art_sys_18: -6.45429229e-03 - art_sys_19: -1.01522143e-17 - art_sys_20: 1.89237390e-15 + art_sys_19: 1.24105994e-16 + art_sys_20: 1.89339776e-15 art_sys_21: -5.49947587e-02 - art_sys_22: -3.10501592e-17 - art_sys_23: 1.41284811e-15 + art_sys_22: -2.81594211e-17 + art_sys_23: 1.40618163e-15 art_sys_24: 3.68182305e-02 - art_sys_25: 1.15591346e-16 - art_sys_26: -8.63915939e-17 - art_sys_27: -4.65798719e-02 - art_sys_28: 1.45886108e-12 - art_sys_29: 4.49683229e-14 - art_sys_30: -3.59484544e-14 - art_sys_31: 2.53001537e-14 - art_sys_32: -2.43473611e-15 - art_sys_33: 3.13536027e-15 - art_sys_34: 2.60299735e-16 - art_sys_35: -5.14069952e-16 - art_sys_36: -6.95329785e-02 - art_sys_37: -4.58959811e-16 - art_sys_38: 6.87656767e-17 - art_sys_39: -2.01902634e-13 - art_sys_40: 3.17415305e-02 - art_sys_41: 1.04223804e-14 - art_sys_42: -3.34917721e-17 - art_sys_43: 2.48130215e-15 - art_sys_44: 6.28644950e-18 - art_sys_45: 9.70354212e-14 - art_sys_46: -2.51965635e-03 - art_sys_47: -2.19626697e-18 - art_sys_48: -7.65258327e-13 - art_sys_49: 5.54699363e-04 - art_sys_50: 1.36172049e-19 - art_sys_51: -7.99809319e-19 - art_sys_52: 4.18686775e-13 - art_sys_53: -2.90516860e-13 + art_sys_25: -1.20596907e-16 + art_sys_26: -6.97763607e-17 + art_sys_27: 4.65798719e-02 + art_sys_28: -3.99237263e-13 + art_sys_29: -6.95329785e-02 + art_sys_30: 3.67027147e-16 + art_sys_31: -1.29625699e-13 + art_sys_32: 3.17415305e-02 + art_sys_33: -1.21660923e-15 + art_sys_34: 4.59940141e-14 + art_sys_35: 1.96132415e-14 + art_sys_36: 7.82342358e-15 + art_sys_37: -8.25182640e-15 + art_sys_38: -1.66164611e-15 + art_sys_39: -2.50478790e-17 + art_sys_40: -1.99977754e-16 + art_sys_41: -1.66248209e-16 + art_sys_42: -3.79301192e-17 + art_sys_43: -1.60165688e-16 + art_sys_44: 7.07660042e-18 + art_sys_45: -2.91018180e-19 + art_sys_46: -8.44865484e-18 + art_sys_47: -2.51965635e-03 + art_sys_48: -9.72926332e-12 + art_sys_49: 5.54699362e-04 + art_sys_50: 3.96434388e-20 + art_sys_51: 1.45247331e-18 + art_sys_52: 8.60087564e-15 + art_sys_53: 5.23415158e-13 art_sys_54: 2.20632738e-04 - art_sys_55: -2.15048993e-13 - art_sys_56: 1.28507734e-13 - art_sys_57: -1.35531168e-15 - art_sys_58: -1.51560246e-16 - art_sys_59: 4.61641297e-17 - art_sys_60: -1.22055647e-18 - art_sys_61: 1.45777793e-17 - art_sys_62: 1.07825534e-19 - art_sys_63: -1.65958968e-18 - art_sys_64: -1.91761024e-19 - art_sys_65: 4.97389085e-20 - art_sys_66: 3.17210709e-15 - art_sys_67: 7.00686185e-20 - art_sys_68: 4.87628290e-20 - art_sys_69: 1.11282666e-14 - art_sys_70: 5.70807181e-12 - art_sys_71: 6.80317571e-06 - art_sys_72: 3.28747206e-14 - art_sys_73: -1.17960889e-19 - art_sys_74: 1.36883869e-06 - art_sys_75: 1.21149927e-19 - art_sys_76: 2.03584597e-17 - art_sys_77: -9.69109044e-18 - art_sys_78: 5.56787092e-19 - art_sys_79: 8.97236536e-17 - art_sys_80: 3.72899110e-07 - art_sys_81: -1.90461744e-21 - art_sys_82: 1.38019315e-20 - art_sys_83: -1.51237560e-21 - art_sys_84: -5.81791843e-20 - art_sys_85: -7.71835323e-22 - art_sys_86: -1.21399847e-22 - art_sys_87: -1.78352324e-18 - art_sys_88: -6.61540881e-18 - art_sys_89: 9.31556729e-20 - art_sys_90: -6.77021278e-13 - art_sys_91: -4.44786129e-13 - art_sys_92: 9.27170083e-18 - art_sys_93: -1.63482958e-13 - art_sys_94: -6.07385300e-17 - art_sys_95: 3.66427237e-15 - art_sys_96: -3.34340490e-19 - art_sys_97: 4.71895617e-15 - art_sys_98: -6.22307846e-15 - art_sys_99: -3.73904453e-16 - art_sys_100: 2.10568895e-16 - art_sys_101: -4.27203723e-17 - art_sys_102: 4.55940030e-18 - art_sys_103: 6.71577648e-15 - art_sys_104: -1.48527993e-16 - art_sys_105: -1.38264083e-19 - art_sys_106: 2.79892583e-15 - art_sys_107: 6.47227467e-16 - art_sys_108: 4.64276484e-16 - art_sys_109: -9.41534870e-10 - art_sys_110: -1.55314730e-19 - art_sys_111: -1.83233672e-14 - art_sys_112: 2.80956018e-15 - art_sys_113: -1.07072467e-19 - art_sys_114: 8.23986853e-15 - art_sys_115: 2.26026715e-16 - art_sys_116: -1.41117614e-10 - art_sys_117: 5.89734281e-21 - art_sys_118: 1.42156936e-14 - art_sys_119: 2.83922152e-17 - art_sys_120: -8.30982369e-15 - art_sys_121: 3.99184875e-11 - art_sys_122: 1.02489301e-16 - art_sys_123: 1.93758795e-15 - art_sys_124: 6.70642055e-15 - art_sys_125: -2.97338445e-15 - art_sys_126: -5.17262511e-12 - art_sys_127: 6.34013855e-16 - art_sys_128: -1.56024723e-15 - art_sys_129: 1.12132581e-16 - art_sys_130: -6.39771732e-15 - art_sys_131: -6.15315773e-15 - art_sys_132: -1.58376299e-15 - art_sys_133: 7.38451554e-13 - art_sys_134: -2.68569017e-14 - art_sys_135: 1.76921002e-15 - art_sys_136: -2.50719067e-15 - art_sys_137: 8.79626351e-17 - art_sys_138: 6.78008291e-15 - art_sys_139: -1.82196710e-14 - art_sys_140: 8.98571890e-18 - art_sys_141: -1.04437806e-15 - art_sys_142: 0.0 - art_sys_143: 4.80004962e-16 - art_sys_144: 1.15154168e-15 - art_sys_145: 1.65365431e-15 - art_sys_146: -4.55090236e-19 - art_sys_147: 8.69737696e-19 - art_sys_148: 2.01520674e-18 - art_sys_149: 1.54538645e-18 - art_sys_150: 5.35628836e-18 - art_sys_151: 9.05040664e-18 - art_sys_152: -4.88242590e-18 - art_sys_153: -9.33787992e-20 - art_sys_154: 7.11564709e-19 - art_sys_155: 1.32875042e-18 - art_sys_156: 4.10758307e-18 - art_sys_157: 8.81827286e-18 - art_sys_158: 0.0 - art_sys_159: -7.06707940e-16 - art_sys_160: -7.06707940e-16 - art_sys_161: 4.66885652e-17 - art_sys_162: -1.73925521e-29 - art_sys_163: -0.0 - art_sys_164: -1.05592371e-29 - art_sys_165: -9.55124321e-26 - art_sys_166: -1.99913094e-25 - art_sys_167: -6.75592188e-26 - art_sys_168: 5.21796434e-27 - art_sys_169: 1.88981426e-27 - art_sys_170: -5.03647196e-27 - art_sys_171: -2.48973412e-28 - art_sys_172: -1.55176669e-27 - art_sys_173: -3.49812215e-28 - art_sys_174: 1.01455038e-30 - art_sys_175: -4.46134467e-30 - art_sys_176: -7.74920300e-29 - art_sys_177: 1.92009363e-29 - art_sys_178: 2.54573279e-30 - art_sys_179: -7.64937096e-31 - art_sys_180: 2.62669328e-30 - art_sys_181: -5.71234333e-31 - art_sys_182: 3.24227212e-31 - art_sys_183: -2.29132540e-33 - art_sys_184: -3.06182615e-33 - art_sys_185: -5.57882945e-31 + art_sys_55: 2.35589330e-14 + art_sys_56: -1.74218060e-13 + art_sys_57: -1.44124782e-19 + art_sys_58: -4.05023136e-22 + art_sys_59: 9.97167524e-13 + art_sys_60: 6.80317513e-06 + art_sys_61: -2.03900941e-16 + art_sys_62: 4.74572581e-15 + art_sys_63: -1.36883957e-06 + art_sys_64: -8.75469921e-16 + art_sys_65: 4.81252456e-17 + art_sys_66: 5.85469620e-17 + art_sys_67: -8.21533722e-18 + art_sys_68: -1.30297732e-19 + art_sys_69: 2.80501628e-19 + art_sys_70: 6.00764836e-20 + art_sys_71: -3.01239009e-20 + art_sys_72: -2.46892198e-20 + art_sys_73: 1.35225567e-20 + art_sys_74: -4.54294967e-17 + art_sys_75: -4.56646256e-21 + art_sys_76: -4.21965547e-18 + art_sys_77: -1.24445087e-17 + art_sys_78: -3.67606113e-19 + art_sys_79: -3.51681809e-20 + art_sys_80: 2.27379480e-21 + art_sys_81: 5.14465770e-16 + art_sys_82: -3.72900380e-07 + art_sys_83: -9.17698174e-21 + art_sys_84: -3.91257652e-21 + art_sys_85: 4.47776354e-21 + art_sys_86: 7.94260924e-22 + art_sys_87: -1.03725383e-23 + art_sys_88: -2.34935407e-17 + art_sys_89: -6.14764966e-24 + art_sys_90: 4.89105819e-20 + art_sys_91: -6.52861482e-13 + art_sys_92: -1.42980130e-22 + art_sys_93: 7.84438613e-23 + art_sys_94: 8.41338005e-18 + art_sys_95: -8.77562276e-20 + art_sys_96: 7.09528347e-13 + art_sys_97: 1.57451348e-14 + art_sys_98: -3.82819962e-20 + art_sys_99: 5.53784776e-14 + art_sys_100: -3.56079348e-20 + art_sys_101: -5.89650887e-14 + art_sys_102: -1.17405080e-16 + art_sys_103: -4.34776115e-16 + art_sys_104: 3.43186853e-16 + art_sys_105: 3.19272452e-17 + art_sys_106: 2.77436196e-15 + art_sys_107: 2.57089700e-16 + art_sys_108: 5.18958979e-17 + art_sys_109: -2.01217246e-18 + art_sys_110: -9.44812676e-16 + art_sys_111: 1.51751596e-16 + art_sys_112: -9.41527507e-10 + art_sys_113: 6.48281478e-15 + art_sys_114: -3.92062067e-19 + art_sys_115: 1.24832433e-17 + art_sys_116: -1.87956988e-16 + art_sys_117: -1.94322781e-19 + art_sys_118: -8.17692344e-17 + art_sys_119: -3.45464962e-16 + art_sys_120: -1.41112465e-10 + art_sys_121: 1.74513988e-19 + art_sys_122: 3.28715772e-16 + art_sys_123: 9.26997753e-17 + art_sys_124: 1.19265622e-16 + art_sys_125: -3.36833940e-19 + art_sys_126: -3.99183164e-11 + art_sys_127: -9.70433603e-17 + art_sys_128: -3.43347215e-16 + art_sys_129: -8.26176566e-19 + art_sys_130: 3.54153599e-15 + art_sys_131: 1.15029724e-17 + art_sys_132: 2.61291262e-15 + art_sys_133: -7.85804116e-15 + art_sys_134: -5.17456572e-12 + art_sys_135: -1.53434518e-15 + art_sys_136: -3.40291157e-17 + art_sys_137: 1.22754421e-15 + art_sys_138: -6.23196092e-17 + art_sys_139: -1.84400562e-14 + art_sys_140: 7.02777387e-18 + art_sys_141: -7.39086272e-13 + art_sys_142: 1.61158592e-17 + art_sys_143: 1.30425263e-15 + art_sys_144: -4.17640934e-17 + art_sys_145: -8.84211099e-16 + art_sys_146: -9.67047952e-17 + art_sys_147: 6.15644154e-19 + art_sys_148: 2.59042335e-19 + art_sys_149: -3.44174609e-18 + art_sys_150: -4.75917163e-16 + art_sys_151: -1.65959175e-14 + art_sys_152: -3.03888135e-18 + art_sys_153: -1.29208552e-15 + art_sys_154: -6.17010204e-17 + art_sys_155: 5.89876724e-18 + art_sys_156: -0.0 + art_sys_157: -2.71410204e-17 + art_sys_158: -0.0 + art_sys_159: -2.07994858e-16 + art_sys_160: 1.21156599e-18 + art_sys_161: 2.87622236e-17 + art_sys_162: 2.87622236e-17 + art_sys_163: 2.56839088e-17 + art_sys_164: 2.56839088e-17 + art_sys_165: -2.96224970e-31 + art_sys_166: 9.85389823e-32 + art_sys_167: 0.0 + art_sys_168: -2.39930340e-26 + art_sys_169: -2.06888044e-26 + art_sys_170: -9.04410344e-27 + art_sys_171: -6.37709982e-27 + art_sys_172: 2.16005230e-27 + art_sys_173: 8.77005819e-29 + art_sys_174: 1.78938100e-28 + art_sys_175: 9.75448904e-29 + art_sys_176: -4.14305115e-29 + art_sys_177: 1.87637926e-29 + art_sys_178: 2.67068555e-29 + art_sys_179: -1.90310994e-30 + art_sys_180: -5.50729047e-30 + art_sys_181: 8.88891467e-30 + art_sys_182: -3.04043736e-30 + art_sys_183: 2.48848338e-32 + art_sys_184: 2.64658718e-32 + art_sys_185: -7.69416708e-33 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -58731,190 +58731,190 @@ bins: luminosity_uncertainty: 4.02651600e-01 uncorrelated_uncertainty: 0.154866 - art_sys_1: -7.50232345e-21 - art_sys_2: -3.80649316e-19 + art_sys_2: -3.80563227e-19 art_sys_3: -6.93996490e-06 - art_sys_4: -1.14568039e-18 + art_sys_4: -1.16878756e-18 art_sys_5: -2.18002536e-04 - art_sys_6: -8.14504627e-19 - art_sys_7: 6.12844891e-19 + art_sys_6: -8.60755234e-19 + art_sys_7: 3.64098471e-19 art_sys_8: -4.61591702e-04 - art_sys_9: -2.07546546e-19 - art_sys_10: -4.89958364e-19 + art_sys_9: 1.88871885e-19 + art_sys_10: -4.94300293e-19 art_sys_11: -2.70348230e-04 - art_sys_12: -8.77983125e-19 - art_sys_13: -4.26529381e-21 - art_sys_14: 3.78008000e-18 - art_sys_15: -1.33024039e-04 - art_sys_16: 1.11552468e-18 - art_sys_17: 2.81664407e-18 + art_sys_12: -9.54057407e-19 + art_sys_13: -4.57638620e-20 + art_sys_14: -5.38572590e-18 + art_sys_15: 1.33024039e-04 + art_sys_16: 1.25263518e-17 + art_sys_17: 2.71385681e-18 art_sys_18: 4.75208849e-03 - art_sys_19: -1.03442894e-16 - art_sys_20: 1.27178870e-16 + art_sys_19: 1.13337025e-16 + art_sys_20: 1.27384130e-16 art_sys_21: 1.08706313e-03 - art_sys_22: -1.69232586e-16 - art_sys_23: 8.76540902e-17 + art_sys_22: -1.68948126e-16 + art_sys_23: 8.68575725e-17 art_sys_24: 3.55705295e-03 - art_sys_25: 5.33707034e-17 - art_sys_26: 1.19469766e-16 - art_sys_27: 1.92454761e-02 - art_sys_28: 1.19655611e-12 - art_sys_29: 4.47398244e-14 - art_sys_30: -1.77338792e-14 - art_sys_31: -1.64599592e-14 - art_sys_32: 1.35511998e-15 - art_sys_33: 9.85316607e-16 - art_sys_34: -3.51685827e-16 - art_sys_35: 2.60241560e-16 - art_sys_36: -6.13630594e-02 - art_sys_37: -4.00053761e-16 - art_sys_38: -2.46476335e-16 - art_sys_39: 2.84186478e-13 - art_sys_40: -4.13385964e-02 - art_sys_41: -1.30582015e-14 - art_sys_42: -2.00310285e-17 - art_sys_43: -1.68423158e-15 - art_sys_44: -6.53525322e-18 - art_sys_45: -6.81951094e-14 - art_sys_46: 1.66823806e-03 - art_sys_47: -4.38215103e-18 - art_sys_48: 1.71030402e-12 + art_sys_25: -5.14161635e-17 + art_sys_26: 9.41356524e-17 + art_sys_27: -1.92454761e-02 + art_sys_28: -4.43193329e-13 + art_sys_29: -6.13630594e-02 + art_sys_30: 3.10406588e-16 + art_sys_31: 1.47602714e-13 + art_sys_32: -4.13385964e-02 + art_sys_33: 1.06549285e-15 + art_sys_34: -3.04144595e-14 + art_sys_35: -1.69242270e-14 + art_sys_36: -3.63727720e-15 + art_sys_37: 9.82615685e-15 + art_sys_38: 1.22587818e-15 + art_sys_39: -1.45530185e-16 + art_sys_40: 2.10004992e-16 + art_sys_41: 2.51345824e-17 + art_sys_42: -5.70794814e-17 + art_sys_43: 9.95269362e-18 + art_sys_44: -1.38803019e-18 + art_sys_45: 1.30606168e-18 + art_sys_46: -4.29002882e-18 + art_sys_47: 1.66823806e-03 + art_sys_48: 2.69632717e-11 art_sys_49: -1.24245651e-03 - art_sys_50: -2.40830223e-19 - art_sys_51: 6.68054164e-19 - art_sys_52: -7.82036486e-13 - art_sys_53: 1.79711666e-13 + art_sys_50: -9.35807737e-20 + art_sys_51: 1.00266187e-18 + art_sys_52: -5.91787426e-13 + art_sys_53: -9.70200255e-13 art_sys_54: -4.12761309e-04 - art_sys_55: 4.02315266e-13 - art_sys_56: -2.87194604e-13 - art_sys_57: 5.54651645e-16 - art_sys_58: 8.64352557e-17 - art_sys_59: 2.49197504e-16 - art_sys_60: 2.16020530e-18 - art_sys_61: -8.29104099e-19 - art_sys_62: -7.29884172e-19 - art_sys_63: 4.25612678e-18 - art_sys_64: 4.03893489e-19 - art_sys_65: -8.24681979e-20 - art_sys_66: -7.19611869e-15 - art_sys_67: -1.35288165e-19 - art_sys_68: -1.00645007e-19 - art_sys_69: -2.72097448e-14 - art_sys_70: -1.28055677e-11 - art_sys_71: -1.54238518e-05 - art_sys_72: -7.39481522e-14 - art_sys_73: 2.92084514e-19 - art_sys_74: -3.57714937e-06 - art_sys_75: -8.01412650e-20 - art_sys_76: -4.98545404e-17 - art_sys_77: 2.36480971e-17 - art_sys_78: -1.37955704e-18 - art_sys_79: -2.20530540e-16 - art_sys_80: -9.15368089e-07 - art_sys_81: 5.36844002e-21 - art_sys_82: -4.65625681e-20 - art_sys_83: 5.10075426e-21 - art_sys_84: 1.12906537e-19 - art_sys_85: 2.64543325e-21 - art_sys_86: -4.53279344e-22 - art_sys_87: 5.67163213e-18 - art_sys_88: 2.00113740e-17 - art_sys_89: -6.12746509e-19 - art_sys_90: 1.94667141e-12 - art_sys_91: 1.12011191e-12 - art_sys_92: -3.12654773e-17 - art_sys_93: 4.01532995e-13 - art_sys_94: 2.05004872e-16 - art_sys_95: -8.61404921e-15 - art_sys_96: 1.25832413e-18 - art_sys_97: -1.59342559e-14 - art_sys_98: 1.51205513e-14 - art_sys_99: 1.94782070e-15 - art_sys_100: -7.08909596e-16 - art_sys_101: 1.74033354e-16 - art_sys_102: -1.61423052e-17 - art_sys_103: -2.55676866e-14 - art_sys_104: 2.23310226e-16 - art_sys_105: 3.85407301e-19 - art_sys_106: -9.38536642e-15 - art_sys_107: -1.24355790e-15 - art_sys_108: -1.77994683e-15 - art_sys_109: 3.17933026e-09 - art_sys_110: 4.64420385e-19 - art_sys_111: 6.18802254e-14 - art_sys_112: -1.06714992e-14 - art_sys_113: 3.20924879e-19 - art_sys_114: -2.78750098e-14 - art_sys_115: -8.39469972e-16 - art_sys_116: 5.36020360e-10 - art_sys_117: -1.69096844e-20 - art_sys_118: -4.80121769e-14 - art_sys_119: -1.05560908e-16 - art_sys_120: 2.79535800e-14 - art_sys_121: -1.20361244e-10 - art_sys_122: -9.65284495e-16 - art_sys_123: -6.86939763e-15 - art_sys_124: -2.54600500e-14 - art_sys_125: 1.10379757e-14 - art_sys_126: 1.91654005e-11 - art_sys_127: -2.12573727e-15 - art_sys_128: 5.50175046e-15 - art_sys_129: -3.58269760e-16 - art_sys_130: 2.25971152e-14 - art_sys_131: 2.18166491e-14 - art_sys_132: 5.99773039e-15 - art_sys_133: -2.61479042e-12 - art_sys_134: 9.52451129e-14 - art_sys_135: -6.64421471e-15 - art_sys_136: 8.41511532e-15 - art_sys_137: -4.34088559e-16 - art_sys_138: -1.94749867e-14 - art_sys_139: 5.39481885e-14 - art_sys_140: -1.51132295e-17 - art_sys_141: 2.19439430e-15 - art_sys_142: -0.0 - art_sys_143: -1.62916367e-15 - art_sys_144: -3.28857269e-15 - art_sys_145: -4.30111359e-15 - art_sys_146: 1.32230711e-18 - art_sys_147: -2.52371441e-18 - art_sys_148: -6.42735688e-18 - art_sys_149: -4.59991092e-18 - art_sys_150: -1.51495723e-17 - art_sys_151: -2.90556658e-17 - art_sys_152: 1.74266467e-17 - art_sys_153: 3.36510848e-19 - art_sys_154: -2.75113714e-18 - art_sys_155: -2.97393650e-18 - art_sys_156: -1.00449634e-17 - art_sys_157: -2.57521599e-17 - art_sys_158: -0.0 - art_sys_159: 2.27819253e-15 - art_sys_160: 2.27819253e-15 - art_sys_161: -1.49596190e-16 - art_sys_162: 5.57548727e-29 - art_sys_163: 0.0 - art_sys_164: 3.38595072e-29 - art_sys_165: 2.76172419e-25 - art_sys_166: 5.82575020e-25 - art_sys_167: 1.94856799e-25 - art_sys_168: -1.71230068e-26 - art_sys_169: -6.38880864e-27 - art_sys_170: 1.67376223e-26 - art_sys_171: -2.64912560e-27 - art_sys_172: -4.46237685e-28 - art_sys_173: 1.87460331e-27 - art_sys_174: -2.20266849e-30 - art_sys_175: -1.04499172e-28 - art_sys_176: 9.44663750e-29 - art_sys_177: -4.01800386e-29 - art_sys_178: -7.99942454e-30 - art_sys_179: 8.24163349e-31 - art_sys_180: -9.68285584e-30 - art_sys_181: 1.43897432e-30 - art_sys_182: -7.92781226e-31 - art_sys_183: 1.10321862e-32 - art_sys_184: 1.08630944e-32 - art_sys_185: 1.78943699e-30 + art_sys_55: -4.37978634e-14 + art_sys_56: 3.79569328e-13 + art_sys_57: 8.40890830e-19 + art_sys_58: -1.51356899e-20 + art_sys_59: -2.24806485e-12 + art_sys_60: -1.54238501e-05 + art_sys_61: 5.00323307e-16 + art_sys_62: -1.29569963e-14 + art_sys_63: 3.57715164e-06 + art_sys_64: 1.25230962e-15 + art_sys_65: -1.50298481e-16 + art_sys_66: 1.08658093e-16 + art_sys_67: -1.03008658e-17 + art_sys_68: -1.21222791e-18 + art_sys_69: -3.22430449e-19 + art_sys_70: -2.80129448e-20 + art_sys_71: 7.61768615e-20 + art_sys_72: 5.51146439e-20 + art_sys_73: -2.40164288e-20 + art_sys_74: 1.11484641e-16 + art_sys_75: 1.79999266e-20 + art_sys_76: 1.05679251e-17 + art_sys_77: 3.06190259e-17 + art_sys_78: 8.47551936e-19 + art_sys_79: 1.11859202e-19 + art_sys_80: -1.81676522e-20 + art_sys_81: -1.26284254e-15 + art_sys_82: 9.15371220e-07 + art_sys_83: 2.93745311e-20 + art_sys_84: 1.35024851e-20 + art_sys_85: -1.48410690e-20 + art_sys_86: -2.64094585e-21 + art_sys_87: -4.64007369e-21 + art_sys_88: 7.93234612e-17 + art_sys_89: 2.21518801e-23 + art_sys_90: -3.78609834e-19 + art_sys_91: 1.63915369e-12 + art_sys_92: 4.88649744e-22 + art_sys_93: -2.68290493e-22 + art_sys_94: -2.53688728e-17 + art_sys_95: 1.91231048e-19 + art_sys_96: -1.73812226e-12 + art_sys_97: -2.50380956e-14 + art_sys_98: 9.93771786e-20 + art_sys_99: -1.35985500e-13 + art_sys_100: 1.39754455e-20 + art_sys_101: 1.44762064e-13 + art_sys_102: 3.99493276e-16 + art_sys_103: 8.12036764e-16 + art_sys_104: -8.55302245e-16 + art_sys_105: -1.13059207e-16 + art_sys_106: -6.84533292e-15 + art_sys_107: -9.76949628e-16 + art_sys_108: -1.83761309e-16 + art_sys_109: 7.17341960e-18 + art_sys_110: 2.33524314e-15 + art_sys_111: -1.00536838e-15 + art_sys_112: 3.17930543e-09 + art_sys_113: -1.21202765e-14 + art_sys_114: 1.38045229e-18 + art_sys_115: -3.13905034e-17 + art_sys_116: 6.08931936e-16 + art_sys_117: 7.32760781e-19 + art_sys_118: 2.96060639e-16 + art_sys_119: 9.29060130e-16 + art_sys_120: 5.36000712e-10 + art_sys_121: -5.97993420e-19 + art_sys_122: -1.13087398e-15 + art_sys_123: -3.44361675e-16 + art_sys_124: -3.92561617e-16 + art_sys_125: 9.28809984e-19 + art_sys_126: 1.20360905e-10 + art_sys_127: 4.28279457e-16 + art_sys_128: 1.32775252e-15 + art_sys_129: 2.42455614e-18 + art_sys_130: -1.25299620e-14 + art_sys_131: -3.37484245e-17 + art_sys_132: -9.96680400e-15 + art_sys_133: 2.78682712e-14 + art_sys_134: 1.91726211e-11 + art_sys_135: 4.78098278e-15 + art_sys_136: 9.93508473e-17 + art_sys_137: -4.29560090e-15 + art_sys_138: 2.35199854e-16 + art_sys_139: 6.52707323e-14 + art_sys_140: -2.14794509e-17 + art_sys_141: 2.61713542e-12 + art_sys_142: -1.05768714e-16 + art_sys_143: -4.61990496e-15 + art_sys_144: 1.40006878e-16 + art_sys_145: 3.30105664e-15 + art_sys_146: 3.41769298e-16 + art_sys_147: -2.45337489e-18 + art_sys_148: -1.32013427e-18 + art_sys_149: 1.99955232e-21 + art_sys_150: 1.57357093e-15 + art_sys_151: 4.81914542e-14 + art_sys_152: 7.52210922e-18 + art_sys_153: 4.22418160e-15 + art_sys_154: 1.69703805e-16 + art_sys_155: -1.83257327e-17 + art_sys_156: 0.0 + art_sys_157: 1.03015862e-16 + art_sys_158: 0.0 + art_sys_159: 7.63321989e-16 + art_sys_160: 1.21649244e-18 + art_sys_161: -1.05060557e-16 + art_sys_162: -1.05060557e-16 + art_sys_163: -9.15205960e-17 + art_sys_164: -9.15205960e-17 + art_sys_165: 1.06006399e-30 + art_sys_166: -3.52695617e-31 + art_sys_167: -0.0 + art_sys_168: 5.86824352e-26 + art_sys_169: 6.04938126e-26 + art_sys_170: 4.66567553e-26 + art_sys_171: 1.76522181e-26 + art_sys_172: -6.75195003e-27 + art_sys_173: -4.83352349e-28 + art_sys_174: -5.07601797e-28 + art_sys_175: -3.11543518e-28 + art_sys_176: 1.32491566e-28 + art_sys_177: -5.83404638e-29 + art_sys_178: -8.56449824e-29 + art_sys_179: 5.94594691e-30 + art_sys_180: 2.00223059e-29 + art_sys_181: -2.76466096e-29 + art_sys_182: 8.62558748e-30 + art_sys_183: -7.25862360e-32 + art_sys_184: -9.14419989e-32 + art_sys_185: 2.81530461e-32 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -59022,190 +59022,190 @@ bins: luminosity_uncertainty: 1.93150100e-01 uncorrelated_uncertainty: 7.42885000e-02 - art_sys_1: 1.01403276e-21 - art_sys_2: -4.07657067e-20 + art_sys_2: -4.07370573e-20 art_sys_3: -3.50750636e-06 - art_sys_4: -1.29950300e-19 + art_sys_4: -1.36050540e-19 art_sys_5: -2.23938153e-05 - art_sys_6: -9.33964554e-20 - art_sys_7: 6.37383445e-20 + art_sys_6: -9.80490487e-20 + art_sys_7: 3.40526055e-20 art_sys_8: -5.33662002e-05 - art_sys_9: -2.19636348e-20 - art_sys_10: -3.51022178e-20 + art_sys_9: 3.51165651e-20 + art_sys_10: -3.56267100e-20 art_sys_11: -3.06981755e-05 - art_sys_12: 2.90348914e-19 - art_sys_13: 3.57092382e-17 - art_sys_14: 2.88389602e-18 - art_sys_15: -4.80277987e-04 - art_sys_16: -1.19935193e-18 - art_sys_17: 1.56869826e-17 + art_sys_12: 1.44725097e-20 + art_sys_13: -3.57151124e-17 + art_sys_14: 4.33126942e-19 + art_sys_15: 4.80277987e-04 + art_sys_16: -3.24665272e-18 + art_sys_17: 1.57513123e-17 art_sys_18: 7.01432405e-04 - art_sys_19: -9.71071643e-18 - art_sys_20: -7.86796921e-17 + art_sys_19: 4.79457656e-18 + art_sys_20: -7.87272352e-17 art_sys_21: 2.51157723e-03 - art_sys_22: -1.11692837e-17 - art_sys_23: -5.88350587e-17 + art_sys_22: -1.13058424e-17 + art_sys_23: -5.85723101e-17 art_sys_24: -1.57892712e-03 - art_sys_25: -2.90332108e-18 - art_sys_26: 5.33051607e-18 - art_sys_27: 4.07492170e-03 - art_sys_28: -6.38296681e-14 - art_sys_29: 3.69433399e-14 - art_sys_30: 5.13459827e-14 - art_sys_31: -4.14896455e-15 - art_sys_32: -1.17597904e-15 - art_sys_33: 1.28832394e-15 - art_sys_34: 7.15518509e-16 - art_sys_35: 1.05089563e-15 - art_sys_36: 2.82350558e-03 - art_sys_37: 3.90851498e-18 - art_sys_38: 2.00743731e-16 - art_sys_39: 5.25737958e-14 - art_sys_40: -9.14951823e-03 - art_sys_41: -3.10390088e-15 - art_sys_42: 5.12315104e-17 - art_sys_43: 2.12562148e-14 - art_sys_44: 1.55253787e-17 - art_sys_45: 4.96808104e-13 - art_sys_46: -1.98632301e-02 - art_sys_47: 9.35996196e-18 - art_sys_48: -4.52123346e-12 - art_sys_49: 3.27323415e-03 - art_sys_50: 6.57690054e-19 - art_sys_51: -3.71391521e-18 - art_sys_52: 3.84239007e-12 - art_sys_53: -2.28932730e-12 + art_sys_25: 3.25165706e-18 + art_sys_26: 3.24357128e-18 + art_sys_27: -4.07492170e-03 + art_sys_28: 1.16225057e-14 + art_sys_29: 2.82350558e-03 + art_sys_30: -3.12870475e-17 + art_sys_31: 4.29922408e-14 + art_sys_32: -9.14951823e-03 + art_sys_33: 4.48188335e-16 + art_sys_34: 3.60843435e-13 + art_sys_35: -1.13543924e-13 + art_sys_36: 5.83460273e-14 + art_sys_37: -6.07707108e-14 + art_sys_38: -1.43315804e-14 + art_sys_39: -1.75018405e-16 + art_sys_40: -1.64606362e-15 + art_sys_41: -8.80753820e-16 + art_sys_42: 4.68974784e-16 + art_sys_43: 2.09534621e-16 + art_sys_44: 3.46221365e-17 + art_sys_45: -2.69625360e-17 + art_sys_46: 9.89578553e-18 + art_sys_47: -1.98632301e-02 + art_sys_48: -5.09153346e-11 + art_sys_49: 3.27323414e-03 + art_sys_50: -1.29995665e-19 + art_sys_51: -8.43076012e-19 + art_sys_52: -6.85389217e-13 + art_sys_53: 4.86912706e-12 art_sys_54: 2.01917381e-03 - art_sys_55: -1.96627418e-12 - art_sys_56: 7.55885436e-13 - art_sys_57: 1.03548598e-15 - art_sys_58: -1.05476786e-16 - art_sys_59: -3.45966408e-17 - art_sys_60: -1.08757733e-17 - art_sys_61: -2.44401419e-17 - art_sys_62: -2.29678698e-18 - art_sys_63: -1.64706584e-17 - art_sys_64: -1.07845527e-18 - art_sys_65: 4.00517884e-19 - art_sys_66: 2.74963066e-14 - art_sys_67: 4.79627387e-19 - art_sys_68: 3.62734469e-19 - art_sys_69: 1.19758065e-13 - art_sys_70: 4.86215111e-11 - art_sys_71: 5.89134075e-05 - art_sys_72: 2.92439981e-13 - art_sys_73: -1.16833135e-18 - art_sys_74: 1.46953834e-05 - art_sys_75: 5.86049453e-19 - art_sys_76: 2.19820471e-16 - art_sys_77: -1.04800028e-16 - art_sys_78: 6.06312839e-18 - art_sys_79: 9.66433257e-16 - art_sys_80: 4.01238218e-06 - art_sys_81: -9.88080767e-21 - art_sys_82: 1.18860264e-19 - art_sys_83: -1.12927901e-20 - art_sys_84: -6.03480844e-20 - art_sys_85: -9.63977007e-21 - art_sys_86: -4.48278098e-21 - art_sys_87: -1.21583447e-17 - art_sys_88: -7.75387903e-17 - art_sys_89: 1.85889817e-18 - art_sys_90: -7.50675212e-12 - art_sys_91: -4.80926926e-12 - art_sys_92: 8.25417004e-17 - art_sys_93: -1.75972450e-12 - art_sys_94: -5.43416454e-16 - art_sys_95: 3.90980675e-14 - art_sys_96: -4.43992853e-18 - art_sys_97: 4.23139749e-14 - art_sys_98: -6.68142257e-14 - art_sys_99: -6.85761882e-15 - art_sys_100: 1.85872531e-15 - art_sys_101: -3.70899975e-16 - art_sys_102: 5.97959842e-17 - art_sys_103: 1.00340373e-13 - art_sys_104: -1.84682926e-15 - art_sys_105: -1.82901829e-18 - art_sys_106: 2.53885412e-14 - art_sys_107: 5.86976271e-15 - art_sys_108: 6.94259971e-15 - art_sys_109: -8.44398398e-09 - art_sys_110: -2.05313042e-18 - art_sys_111: -1.64392282e-13 - art_sys_112: 3.78547054e-14 - art_sys_113: -1.41546411e-18 - art_sys_114: 7.46819278e-14 - art_sys_115: 3.00085677e-15 - art_sys_116: -2.09073837e-09 - art_sys_117: 7.79607664e-20 - art_sys_118: 1.27672644e-13 - art_sys_119: 3.76685452e-16 - art_sys_120: -7.31748193e-14 - art_sys_121: 4.64878965e-10 - art_sys_122: 8.99263832e-15 - art_sys_123: 2.54067616e-14 - art_sys_124: 9.83718099e-14 - art_sys_125: -4.24924161e-14 - art_sys_126: -6.85667867e-11 - art_sys_127: 7.26340814e-15 - art_sys_128: -2.04642030e-14 - art_sys_129: 1.47727425e-15 - art_sys_130: -8.39158260e-14 - art_sys_131: -8.06910127e-14 - art_sys_132: -2.14696568e-14 - art_sys_133: 9.68440295e-12 - art_sys_134: -3.52181929e-13 - art_sys_135: 2.37027852e-14 - art_sys_136: -3.29831239e-14 - art_sys_137: 1.31278717e-15 - art_sys_138: 8.99205998e-14 - art_sys_139: -2.41263909e-13 - art_sys_140: 8.52176577e-17 - art_sys_141: -1.39979450e-14 - art_sys_142: 0.0 - art_sys_143: 6.41217899e-15 - art_sys_144: 1.52838851e-14 - art_sys_145: 2.20018636e-14 - art_sys_146: -6.03033430e-18 - art_sys_147: 1.15250200e-17 - art_sys_148: 2.64215133e-17 - art_sys_149: 2.04312744e-17 - art_sys_150: 7.10900305e-17 - art_sys_151: 1.18351550e-16 - art_sys_152: -6.38798508e-17 - art_sys_153: -1.21273722e-18 - art_sys_154: 9.13908858e-18 - art_sys_155: 1.80685433e-17 - art_sys_156: 5.46663180e-17 - art_sys_157: 1.16562386e-16 - art_sys_158: 0.0 - art_sys_159: -9.29255574e-15 - art_sys_160: -9.29255574e-15 - art_sys_161: 6.12309777e-16 - art_sys_162: -2.28137370e-28 - art_sys_163: -0.0 - art_sys_164: -1.38514319e-28 - art_sys_165: -1.27328094e-24 - art_sys_166: -2.65211845e-24 - art_sys_167: -8.92213659e-25 - art_sys_168: 6.74025075e-26 - art_sys_169: 2.40561736e-26 - art_sys_170: -6.62428640e-26 - art_sys_171: 5.66707911e-27 - art_sys_172: 4.70534435e-27 - art_sys_173: -8.49659686e-27 - art_sys_174: 1.36005466e-29 - art_sys_175: 4.86420304e-28 - art_sys_176: -5.56905917e-28 - art_sys_177: 2.02056017e-28 - art_sys_178: 3.14987381e-29 - art_sys_179: -1.38622246e-29 - art_sys_180: 3.30105048e-29 - art_sys_181: -6.81216783e-30 - art_sys_182: 3.76593839e-30 - art_sys_183: -3.51935327e-32 - art_sys_184: -3.99649768e-32 - art_sys_185: -7.30634034e-30 + art_sys_55: 2.14214376e-13 + art_sys_56: -1.03807929e-12 + art_sys_57: 4.08457731e-20 + art_sys_58: -5.66561207e-20 + art_sys_59: 8.56266864e-12 + art_sys_60: 5.89134004e-05 + art_sys_61: -2.19394532e-15 + art_sys_62: 5.96139805e-15 + art_sys_63: -1.46953926e-05 + art_sys_64: -9.75286864e-16 + art_sys_65: 3.15839510e-16 + art_sys_66: -6.84651209e-17 + art_sys_67: -8.67932561e-18 + art_sys_68: 4.41840047e-18 + art_sys_69: 1.27082205e-18 + art_sys_70: 9.81456530e-20 + art_sys_71: -3.65299097e-19 + art_sys_72: -2.50213324e-19 + art_sys_73: 1.24425051e-19 + art_sys_74: -4.88876684e-16 + art_sys_75: -6.13302531e-20 + art_sys_76: -4.47891475e-17 + art_sys_77: -1.33706012e-16 + art_sys_78: -4.03080431e-18 + art_sys_79: -3.96671725e-19 + art_sys_80: -1.82745047e-20 + art_sys_81: 5.53575587e-15 + art_sys_82: -4.01239584e-06 + art_sys_83: -7.96803161e-20 + art_sys_84: -4.27950893e-20 + art_sys_85: 3.77736299e-20 + art_sys_86: 8.01386457e-21 + art_sys_87: 1.33644498e-20 + art_sys_88: -2.10691814e-16 + art_sys_89: -3.75498833e-23 + art_sys_90: 3.40489818e-18 + art_sys_91: -6.88064176e-12 + art_sys_92: -1.28209360e-21 + art_sys_93: 7.37543873e-22 + art_sys_94: 9.80102710e-17 + art_sys_95: -9.72402472e-19 + art_sys_96: 7.64905259e-12 + art_sys_97: 1.31947098e-13 + art_sys_98: -4.60355464e-19 + art_sys_99: 5.95672013e-13 + art_sys_100: 3.55188129e-20 + art_sys_101: -6.34374123e-13 + art_sys_102: -1.09035348e-15 + art_sys_103: -3.98343340e-15 + art_sys_104: 3.65001093e-15 + art_sys_105: 4.18716380e-16 + art_sys_106: 2.98097816e-14 + art_sys_107: 3.81003759e-15 + art_sys_108: 6.80589589e-16 + art_sys_109: -2.63785204e-17 + art_sys_110: 3.30430341e-15 + art_sys_111: 4.30763933e-16 + art_sys_112: -8.44391841e-09 + art_sys_113: 5.93433117e-14 + art_sys_114: -5.14352687e-18 + art_sys_115: 1.26702744e-16 + art_sys_116: -2.30232299e-15 + art_sys_117: -2.53975544e-18 + art_sys_118: -7.08302567e-16 + art_sys_119: -3.76046440e-15 + art_sys_120: -2.09066199e-09 + art_sys_121: 2.29414891e-18 + art_sys_122: 3.09270131e-15 + art_sys_123: 1.23062523e-15 + art_sys_124: 8.94029366e-16 + art_sys_125: -4.47916157e-18 + art_sys_126: -4.64877314e-10 + art_sys_127: -1.25429833e-15 + art_sys_128: -5.14733310e-15 + art_sys_129: -1.09409373e-17 + art_sys_130: 4.64464293e-14 + art_sys_131: 1.52340029e-16 + art_sys_132: 3.88921299e-14 + art_sys_133: -1.03038708e-13 + art_sys_134: -6.85925884e-11 + art_sys_135: -1.84469387e-14 + art_sys_136: -4.50842160e-16 + art_sys_137: 1.61070507e-14 + art_sys_138: -8.12289399e-16 + art_sys_139: -2.41836766e-13 + art_sys_140: 9.26502158e-17 + art_sys_141: -9.69270596e-12 + art_sys_142: 3.35365961e-16 + art_sys_143: 1.71066092e-14 + art_sys_144: -5.45440661e-16 + art_sys_145: -1.17708679e-14 + art_sys_146: -1.26612374e-15 + art_sys_147: 8.12160063e-18 + art_sys_148: 3.42240326e-18 + art_sys_149: -8.37613844e-17 + art_sys_150: -6.25330984e-15 + art_sys_151: -2.19991296e-13 + art_sys_152: -4.02379053e-17 + art_sys_153: -1.70223049e-14 + art_sys_154: -5.58747192e-16 + art_sys_155: 7.84700177e-17 + art_sys_156: -0.0 + art_sys_157: -3.54594051e-16 + art_sys_158: -0.0 + art_sys_159: -2.74033177e-15 + art_sys_160: 1.87130131e-17 + art_sys_161: 3.81179179e-16 + art_sys_162: 3.81179179e-16 + art_sys_163: 3.40481628e-16 + art_sys_164: 3.40481628e-16 + art_sys_165: -3.92657889e-30 + art_sys_166: 1.30629465e-30 + art_sys_167: 0.0 + art_sys_168: -3.30249526e-25 + art_sys_169: -2.74406045e-25 + art_sys_170: -7.24594717e-26 + art_sys_171: -7.71728928e-26 + art_sys_172: 3.05537113e-26 + art_sys_173: 1.27629333e-27 + art_sys_174: 2.13085375e-27 + art_sys_175: 1.27465643e-27 + art_sys_176: -5.39736255e-28 + art_sys_177: 2.45677207e-28 + art_sys_178: 3.47782896e-28 + art_sys_179: -2.53517900e-29 + art_sys_180: -7.26870890e-29 + art_sys_181: 1.16156230e-28 + art_sys_182: -3.90397444e-29 + art_sys_183: 3.42619058e-31 + art_sys_184: 3.46540968e-31 + art_sys_185: -1.01089502e-31 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -59313,190 +59313,190 @@ bins: luminosity_uncertainty: 9.01469400e-02 uncorrelated_uncertainty: 3.46719000e-02 - art_sys_1: 1.10010385e-22 - art_sys_2: -3.02872000e-21 + art_sys_2: -3.02637413e-21 art_sys_3: -3.25962952e-07 - art_sys_4: -5.93960209e-21 + art_sys_4: 4.11985855e-21 art_sys_5: -1.68210303e-06 - art_sys_6: -6.08350696e-21 - art_sys_7: -2.47385141e-21 + art_sys_6: -6.43399722e-21 + art_sys_7: -8.79637469e-22 art_sys_8: -3.57245924e-06 - art_sys_9: 1.54969508e-21 - art_sys_10: 4.35907568e-21 + art_sys_9: 2.03177343e-21 + art_sys_10: 4.32215255e-21 art_sys_11: 4.87461190e-07 - art_sys_12: 2.72943666e-20 - art_sys_13: 3.62590126e-18 - art_sys_14: 1.83352966e-19 - art_sys_15: -4.61273005e-05 - art_sys_16: 1.21583111e-19 - art_sys_17: 1.27459815e-18 + art_sys_12: 6.25004274e-22 + art_sys_13: -3.62583342e-18 + art_sys_14: 9.71722845e-20 + art_sys_15: 4.61273005e-05 + art_sys_16: -8.07740293e-19 + art_sys_17: 1.28341579e-18 art_sys_18: -5.45545230e-05 - art_sys_19: 1.67264674e-18 - art_sys_20: -9.99371735e-18 + art_sys_19: -2.36217985e-18 + art_sys_20: -9.99910393e-18 art_sys_21: 1.88384316e-04 - art_sys_22: 4.68317947e-18 - art_sys_23: -7.20156299e-18 + art_sys_22: 4.66113434e-18 + art_sys_23: -7.15349175e-18 art_sys_24: -2.32715617e-04 - art_sys_25: -3.37729813e-18 - art_sys_26: -7.13976935e-18 - art_sys_27: -1.09299439e-03 - art_sys_28: -7.36791703e-14 - art_sys_29: -2.28578748e-14 - art_sys_30: -2.55123219e-14 - art_sys_31: 1.82887958e-14 - art_sys_32: -4.71920004e-15 - art_sys_33: 9.15646919e-16 - art_sys_34: -1.75510721e-15 - art_sys_35: -4.33282510e-16 - art_sys_36: 3.79353656e-03 - art_sys_37: 2.61015824e-17 - art_sys_38: 1.15293469e-16 - art_sys_39: -2.16570721e-14 - art_sys_40: 3.22960200e-03 - art_sys_41: 1.01794928e-15 - art_sys_42: -1.75376949e-17 - art_sys_43: 7.46384882e-15 - art_sys_44: -6.48700683e-17 - art_sys_45: 2.09734147e-13 - art_sys_46: -7.00611503e-03 - art_sys_47: -9.37554815e-18 - art_sys_48: 1.64220360e-11 + art_sys_25: 3.21988683e-18 + art_sys_26: -5.70917255e-18 + art_sys_27: 1.09299439e-03 + art_sys_28: 2.76922158e-14 + art_sys_29: 3.79353656e-03 + art_sys_30: -1.79973323e-17 + art_sys_31: -1.20769501e-14 + art_sys_32: 3.22960200e-03 + art_sys_33: -8.11604283e-17 + art_sys_34: 1.27309705e-13 + art_sys_35: -5.54957967e-15 + art_sys_36: 4.32814216e-14 + art_sys_37: 4.45903466e-14 + art_sys_38: -3.95968981e-15 + art_sys_39: -2.85224458e-15 + art_sys_40: 7.57986718e-16 + art_sys_41: -1.22714630e-15 + art_sys_42: -2.66922375e-16 + art_sys_43: -4.97060745e-17 + art_sys_44: 3.26883517e-17 + art_sys_45: 1.02601984e-17 + art_sys_46: 2.87448522e-17 + art_sys_47: -7.00611504e-03 + art_sys_48: 2.89228731e-10 art_sys_49: -1.19462642e-02 - art_sys_50: -1.90067125e-19 - art_sys_51: 6.94053035e-18 - art_sys_52: -6.33952442e-12 - art_sys_53: -1.00178711e-12 + art_sys_50: -1.36565784e-18 + art_sys_51: 1.58360839e-18 + art_sys_52: -9.00981549e-12 + art_sys_53: -7.79705401e-12 art_sys_54: -3.35190987e-03 - art_sys_55: 3.27615411e-12 - art_sys_56: -2.75785979e-12 - art_sys_57: -3.02125810e-15 - art_sys_58: -1.90166751e-16 - art_sys_59: 4.77601700e-16 - art_sys_60: 4.83005427e-17 - art_sys_61: 1.69251142e-16 - art_sys_62: -9.35174112e-18 - art_sys_63: 5.92911423e-17 - art_sys_64: 6.14423960e-18 - art_sys_65: -8.72983433e-19 - art_sys_66: -1.25269201e-13 - art_sys_67: -2.68328019e-18 - art_sys_68: -2.02444471e-18 - art_sys_69: -4.48794454e-13 - art_sys_70: -2.27314823e-10 - art_sys_71: -2.68786667e-04 - art_sys_72: -1.31349473e-12 - art_sys_73: 4.24277950e-18 - art_sys_74: -4.80107369e-05 - art_sys_75: -4.42028579e-19 - art_sys_76: -8.10492967e-16 - art_sys_77: 3.82810652e-16 - art_sys_78: -2.23702496e-17 - art_sys_79: -3.59634596e-15 - art_sys_80: -1.49259619e-05 - art_sys_81: 1.33895770e-19 - art_sys_82: -9.34500038e-19 - art_sys_83: 1.01719676e-19 - art_sys_84: 2.16104893e-19 - art_sys_85: 4.68165136e-20 - art_sys_86: 1.55186833e-20 - art_sys_87: 1.22317706e-16 - art_sys_88: 4.03521041e-16 - art_sys_89: -8.11015626e-18 - art_sys_90: 1.89993800e-11 - art_sys_91: 1.70033330e-11 - art_sys_92: -6.22571834e-16 - art_sys_93: 6.55321270e-12 - art_sys_94: 4.07697031e-15 - art_sys_95: -1.57327816e-13 - art_sys_96: 2.21780561e-17 - art_sys_97: -3.16648905e-13 - art_sys_98: 2.53438560e-13 - art_sys_99: 5.87836071e-14 - art_sys_100: -1.41680047e-14 - art_sys_101: 3.63606730e-15 - art_sys_102: -2.96914922e-16 - art_sys_103: -3.98390789e-13 - art_sys_104: 2.12469506e-15 - art_sys_105: 7.78186353e-18 - art_sys_106: -1.85480004e-13 - art_sys_107: -1.19849660e-14 - art_sys_108: -2.75884941e-14 - art_sys_109: 6.31764701e-08 - art_sys_110: 9.11986615e-18 - art_sys_111: 1.22946429e-12 - art_sys_112: -1.87673197e-13 - art_sys_113: 6.29803822e-18 - art_sys_114: -5.51775495e-13 - art_sys_115: -1.49585088e-14 - art_sys_116: 8.39458304e-09 - art_sys_117: -3.36400179e-19 - art_sys_118: -9.53578179e-13 - art_sys_119: -1.87939603e-15 - art_sys_120: 5.59290544e-13 - art_sys_121: -2.43704659e-09 - art_sys_122: 3.46588286e-15 - art_sys_123: -1.26297122e-13 - art_sys_124: -4.00619935e-13 - art_sys_125: 1.79584284e-13 - art_sys_126: 3.41985687e-10 - art_sys_127: -4.37413954e-14 - art_sys_128: 1.01354856e-13 - art_sys_129: -6.85432394e-15 - art_sys_130: 4.15982850e-13 - art_sys_131: 4.01058962e-13 - art_sys_132: 1.04825063e-13 - art_sys_133: -4.80921232e-11 - art_sys_134: 1.75080998e-12 - art_sys_135: -1.17697807e-13 - art_sys_136: 1.57815676e-13 - art_sys_137: -6.54294432e-15 - art_sys_138: -3.88020518e-13 - art_sys_139: 1.06184532e-12 - art_sys_140: -2.27647543e-17 - art_sys_141: 5.04236399e-14 - art_sys_142: -0.0 - art_sys_143: -3.00872555e-14 - art_sys_144: -6.56714834e-14 - art_sys_145: -8.94915196e-14 - art_sys_146: 2.62324045e-17 - art_sys_147: -5.00968777e-17 - art_sys_148: -1.23705186e-16 - art_sys_149: -9.04883952e-17 - art_sys_150: -3.03750962e-16 - art_sys_151: -5.59170470e-16 - art_sys_152: 3.20218921e-16 - art_sys_153: 6.20438118e-18 - art_sys_154: -4.97982358e-17 - art_sys_155: -6.47696981e-17 - art_sys_156: -2.15391940e-16 - art_sys_157: -5.11169702e-16 - art_sys_158: -0.0 - art_sys_159: 4.35114460e-14 - art_sys_160: 4.35114460e-14 - art_sys_161: -2.87278933e-15 - art_sys_162: 1.07027359e-27 - art_sys_163: 0.0 - art_sys_164: 6.49836574e-28 - art_sys_165: 5.49993270e-24 - art_sys_166: 1.15510650e-23 - art_sys_167: 3.86817999e-24 - art_sys_168: -3.29563097e-25 - art_sys_169: -1.24337157e-25 - art_sys_170: 3.22227779e-25 - art_sys_171: -2.50575405e-26 - art_sys_172: -1.61287283e-26 - art_sys_173: 4.46347484e-26 - art_sys_174: -4.97294779e-29 - art_sys_175: -2.31640782e-27 - art_sys_176: 2.44126873e-27 - art_sys_177: -9.60378618e-28 - art_sys_178: -1.59745371e-28 - art_sys_179: 2.43281188e-29 - art_sys_180: -1.82585707e-28 - art_sys_181: 2.95067125e-29 - art_sys_182: -1.66351814e-29 - art_sys_183: 1.85360146e-31 - art_sys_184: 2.00503016e-31 - art_sys_185: 3.43991870e-29 + art_sys_55: -3.50464886e-13 + art_sys_56: 3.58804730e-12 + art_sys_57: -3.68432386e-21 + art_sys_58: 9.41253890e-20 + art_sys_59: -3.95318530e-11 + art_sys_60: -2.68786649e-04 + art_sys_61: 8.16142947e-15 + art_sys_62: -1.42473276e-13 + art_sys_63: 4.80107678e-05 + art_sys_64: 1.31397063e-15 + art_sys_65: -8.90781939e-16 + art_sys_66: -1.64195240e-16 + art_sys_67: -1.64163391e-17 + art_sys_68: -1.78791225e-17 + art_sys_69: -4.90995042e-18 + art_sys_70: -4.09494109e-19 + art_sys_71: 1.34907211e-18 + art_sys_72: 9.38068776e-19 + art_sys_73: -4.66043417e-19 + art_sys_74: 1.81859624e-15 + art_sys_75: 2.22746422e-19 + art_sys_76: 1.76505130e-16 + art_sys_77: 5.00443945e-16 + art_sys_78: 1.32572721e-17 + art_sys_79: 1.37646264e-18 + art_sys_80: -4.96240854e-19 + art_sys_81: -2.05930821e-14 + art_sys_82: 1.49260123e-05 + art_sys_83: 5.84161756e-19 + art_sys_84: 2.50984550e-19 + art_sys_85: -3.03420160e-19 + art_sys_86: -5.11471594e-20 + art_sys_87: -1.42780084e-20 + art_sys_88: 1.57614547e-15 + art_sys_89: 4.70680334e-22 + art_sys_90: 5.95289920e-19 + art_sys_91: 2.45763284e-11 + art_sys_92: 9.66481579e-21 + art_sys_93: -5.22360719e-21 + art_sys_94: -5.13657417e-16 + art_sys_95: 3.56780792e-18 + art_sys_96: -2.85541886e-11 + art_sys_97: -5.12192435e-14 + art_sys_98: 1.67301850e-18 + art_sys_99: -2.21455845e-12 + art_sys_100: 9.83179791e-19 + art_sys_101: 2.35924606e-12 + art_sys_102: 7.83682337e-15 + art_sys_103: 6.51473373e-15 + art_sys_104: -1.41067034e-14 + art_sys_105: -2.07932029e-15 + art_sys_106: -1.12002987e-13 + art_sys_107: -1.52937072e-14 + art_sys_108: -3.37975637e-15 + art_sys_109: 1.31613783e-16 + art_sys_110: 7.87026585e-14 + art_sys_111: -2.45836393e-14 + art_sys_112: 6.31759754e-08 + art_sys_113: -9.79601293e-14 + art_sys_114: 2.54400449e-17 + art_sys_115: -5.35194241e-16 + art_sys_116: 1.17002155e-14 + art_sys_117: 1.31859271e-17 + art_sys_118: 6.02766251e-15 + art_sys_119: 2.02648588e-14 + art_sys_120: 8.39427649e-09 + art_sys_121: -1.11265706e-17 + art_sys_122: -2.21158225e-14 + art_sys_123: -6.13612690e-15 + art_sys_124: -8.18581160e-15 + art_sys_125: 1.88032309e-17 + art_sys_126: 2.43703781e-09 + art_sys_127: 7.31817402e-15 + art_sys_128: 2.04211874e-14 + art_sys_129: 4.79122938e-17 + art_sys_130: -2.30529794e-13 + art_sys_131: -6.66965554e-16 + art_sys_132: -1.55296715e-13 + art_sys_133: 5.12306198e-13 + art_sys_134: 3.42114194e-10 + art_sys_135: 9.36236394e-14 + art_sys_136: 1.96699997e-15 + art_sys_137: -7.93561140e-14 + art_sys_138: 4.27400597e-15 + art_sys_139: 1.20063921e-12 + art_sys_140: -4.18843829e-16 + art_sys_141: 4.81346127e-11 + art_sys_142: -1.35610705e-15 + art_sys_143: -8.49478381e-14 + art_sys_144: 2.64744950e-15 + art_sys_145: 5.86690836e-14 + art_sys_146: 6.30209444e-15 + art_sys_147: -4.27685767e-17 + art_sys_148: -2.10427192e-17 + art_sys_149: 1.34363090e-17 + art_sys_150: 2.97375362e-14 + art_sys_151: 9.55916048e-13 + art_sys_152: 1.61367848e-16 + art_sys_153: 8.00042386e-14 + art_sys_154: 2.81561357e-15 + art_sys_155: -3.51113924e-16 + art_sys_156: 0.0 + art_sys_157: 1.79840205e-15 + art_sys_158: 0.0 + art_sys_159: 1.37683210e-14 + art_sys_160: -6.90767328e-18 + art_sys_161: -1.88786341e-15 + art_sys_162: -1.88786341e-15 + art_sys_163: -1.66035315e-15 + art_sys_164: -1.66035315e-15 + art_sys_165: 1.92005082e-29 + art_sys_166: -6.38715049e-30 + art_sys_167: -0.0 + art_sys_168: 1.20374464e-24 + art_sys_169: 1.19952380e-24 + art_sys_170: 6.51737404e-25 + art_sys_171: 3.32913235e-25 + art_sys_172: -1.32369054e-25 + art_sys_173: -8.41813911e-27 + art_sys_174: -9.94084413e-27 + art_sys_175: -6.04409976e-27 + art_sys_176: 2.57057833e-27 + art_sys_177: -1.13728184e-27 + art_sys_178: -1.65640681e-27 + art_sys_179: 1.13455817e-28 + art_sys_180: 3.61893423e-28 + art_sys_181: -5.40261693e-28 + art_sys_182: 1.68942296e-28 + art_sys_183: -1.46729460e-30 + art_sys_184: -1.70214536e-30 + art_sys_185: 5.09840349e-31 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -59604,190 +59604,190 @@ bins: luminosity_uncertainty: 4.16457600e-02 uncorrelated_uncertainty: 1.60176000e-02 - art_sys_1: -1.80580200e-25 - art_sys_2: -2.35557930e-22 + art_sys_2: -2.35343693e-22 art_sys_3: -1.23051052e-08 - art_sys_4: 3.97624152e-23 + art_sys_4: 2.34131616e-21 art_sys_5: -1.36089256e-07 - art_sys_6: -2.45898947e-22 - art_sys_7: -1.51716161e-21 + art_sys_6: -2.78206015e-22 + art_sys_7: -8.77562840e-22 art_sys_8: -2.00926068e-07 - art_sys_9: 7.14966498e-22 - art_sys_10: 7.47701040e-22 + art_sys_9: -4.35621963e-23 + art_sys_10: 7.45623049e-22 art_sys_11: 4.44618585e-07 - art_sys_12: -3.61210368e-21 - art_sys_13: -3.63388801e-19 - art_sys_14: -4.04714678e-20 - art_sys_15: 5.20505729e-06 - art_sys_16: -2.50253305e-20 - art_sys_17: -2.80519614e-19 + art_sys_12: -7.07183988e-22 + art_sys_13: 3.63471657e-19 + art_sys_14: -1.93762952e-20 + art_sys_15: -5.20505729e-06 + art_sys_16: 9.15895553e-20 + art_sys_17: -2.80877840e-19 art_sys_18: -2.71256521e-05 - art_sys_19: 5.42110964e-19 - art_sys_20: 1.22471556e-18 + art_sys_19: -4.62208249e-19 + art_sys_20: 1.22547486e-18 art_sys_21: -4.81442150e-05 - art_sys_22: 6.53628856e-19 - art_sys_23: 9.55460766e-19 + art_sys_22: 6.56814908e-19 + art_sys_23: 9.50759468e-19 art_sys_24: 2.57337836e-05 - art_sys_25: 8.50631872e-20 - art_sys_26: -3.77462555e-19 - art_sys_27: -1.95077404e-04 - art_sys_28: 5.13578119e-15 - art_sys_29: -9.21737428e-14 - art_sys_30: -3.22184654e-14 - art_sys_31: -1.29874453e-14 - art_sys_32: -5.23577608e-16 - art_sys_33: -4.50715001e-16 - art_sys_34: -1.75521920e-15 - art_sys_35: -2.60439843e-16 - art_sys_36: -2.38592254e-04 - art_sys_37: -6.93877425e-19 - art_sys_38: -1.57438936e-16 - art_sys_39: -2.99846266e-15 - art_sys_40: 5.67455656e-04 - art_sys_41: 1.98689989e-16 - art_sys_42: -4.39084142e-17 - art_sys_43: -2.53336687e-15 - art_sys_44: -7.91043890e-17 - art_sys_45: -5.68798504e-14 - art_sys_46: 2.36610260e-03 - art_sys_47: -6.36009605e-18 - art_sys_48: 8.91477250e-12 + art_sys_25: -1.07744116e-19 + art_sys_26: -2.99035048e-19 + art_sys_27: 1.95077404e-04 + art_sys_28: -1.24002030e-15 + art_sys_29: -2.38592254e-04 + art_sys_30: 2.16793046e-18 + art_sys_31: -2.92854305e-15 + art_sys_32: 5.67455656e-04 + art_sys_33: -3.40429086e-17 + art_sys_34: -4.29849495e-14 + art_sys_35: 1.58250891e-14 + art_sys_36: -7.94350739e-14 + art_sys_37: 1.91492455e-14 + art_sys_38: -1.84906392e-14 + art_sys_39: 2.46366707e-15 + art_sys_40: 2.21745034e-17 + art_sys_41: 2.63387626e-16 + art_sys_42: -9.44558249e-16 + art_sys_43: -3.87728365e-16 + art_sys_44: 2.16732740e-17 + art_sys_45: -4.74570231e-17 + art_sys_46: -5.79838943e-17 + art_sys_47: 2.36610260e-03 + art_sys_48: 1.48879789e-10 art_sys_49: -6.48060855e-03 - art_sys_50: 2.24723330e-18 - art_sys_51: -1.33977611e-17 - art_sys_52: 1.41379149e-11 - art_sys_53: 1.63718196e-13 - art_sys_54: 7.37143140e-03 - art_sys_55: -7.17602584e-12 - art_sys_56: -1.49722277e-12 - art_sys_57: 4.48548397e-15 - art_sys_58: 7.84235367e-16 - art_sys_59: 4.96444361e-16 - art_sys_60: -3.40684188e-17 - art_sys_61: 3.51632013e-18 - art_sys_62: -3.96505819e-17 - art_sys_63: -1.08127755e-16 - art_sys_64: 3.01809587e-18 - art_sys_65: 7.35577146e-18 - art_sys_66: 9.13040513e-14 - art_sys_67: -2.31030120e-18 - art_sys_68: -4.61898789e-19 - art_sys_69: 1.00798306e-12 - art_sys_70: 1.33051853e-10 - art_sys_71: 1.93722808e-04 - art_sys_72: 1.05344953e-12 - art_sys_73: -1.03337174e-17 - art_sys_74: 1.42305926e-04 - art_sys_75: 8.19512630e-19 - art_sys_76: 1.85382608e-15 - art_sys_77: -8.72125326e-16 - art_sys_78: 5.27599752e-17 - art_sys_79: 8.20735616e-15 - art_sys_80: 3.40626426e-05 - art_sys_81: -2.21265733e-19 - art_sys_82: 2.45780543e-18 - art_sys_83: -2.43930010e-19 - art_sys_84: 8.56569618e-20 - art_sys_85: -1.72228998e-19 - art_sys_86: -7.18755766e-20 - art_sys_87: -2.68433424e-16 - art_sys_88: -1.32415668e-15 - art_sys_89: 4.55462290e-17 - art_sys_90: -9.04865313e-11 - art_sys_91: -4.35023500e-11 - art_sys_92: 1.68636946e-15 - art_sys_93: -1.49560248e-11 - art_sys_94: -1.10895509e-14 - art_sys_95: 2.95927429e-13 - art_sys_96: -8.60931346e-17 - art_sys_97: 8.62862776e-13 - art_sys_98: -5.52710319e-13 - art_sys_99: -1.36358373e-13 - art_sys_100: 3.80745744e-14 - art_sys_101: -1.08298615e-14 - art_sys_102: 1.12745658e-15 - art_sys_103: 1.81277912e-12 - art_sys_104: 8.23202285e-16 - art_sys_105: -2.97455327e-17 - art_sys_106: 5.06514623e-13 - art_sys_107: 2.07995931e-14 - art_sys_108: 1.25901907e-13 - art_sys_109: -1.72180482e-07 - art_sys_110: -3.47971510e-17 - art_sys_111: -3.35197832e-12 - art_sys_112: 7.37537957e-13 - art_sys_113: -2.40236387e-17 - art_sys_114: 1.51772900e-12 - art_sys_115: 5.77860220e-14 - art_sys_116: -3.78355749e-08 - art_sys_117: 1.29005235e-18 - art_sys_118: 2.60198142e-12 - art_sys_119: 7.25519626e-15 - art_sys_120: -1.49951177e-12 - art_sys_121: 7.93949912e-09 - art_sys_122: 1.37980910e-13 - art_sys_123: 4.79501328e-13 - art_sys_124: 1.78631895e-12 - art_sys_125: -7.71110150e-13 - art_sys_126: -1.31868383e-09 - art_sys_127: 1.41059911e-13 - art_sys_128: -3.84856149e-13 - art_sys_129: 2.60833267e-14 - art_sys_130: -1.57977498e-12 - art_sys_131: -1.52291403e-12 - art_sys_132: -4.15363227e-13 - art_sys_133: 1.82619640e-10 - art_sys_134: -6.64788898e-12 - art_sys_135: 4.59384395e-13 - art_sys_136: -6.00746812e-13 - art_sys_137: 2.88070772e-14 - art_sys_138: 1.48769017e-12 - art_sys_139: -4.06486439e-12 - art_sys_140: 3.50040089e-16 - art_sys_141: -1.95016482e-13 - art_sys_142: 0.0 - art_sys_143: 1.16814777e-13 - art_sys_144: 2.51878407e-13 - art_sys_145: 3.43617904e-13 - art_sys_146: -1.00455033e-16 - art_sys_147: 1.91831982e-16 - art_sys_148: 4.66103314e-16 - art_sys_149: 3.45323231e-16 - art_sys_150: 1.16542684e-15 - art_sys_151: 2.09691377e-15 - art_sys_152: -1.21122594e-15 - art_sys_153: -2.31634128e-17 - art_sys_154: 1.83294391e-16 - art_sys_155: 2.60674117e-16 - art_sys_156: 8.24815025e-16 - art_sys_157: 1.94762070e-15 - art_sys_158: 0.0 - art_sys_159: -1.64995286e-13 - art_sys_160: -1.64995286e-13 - art_sys_161: 1.08327685e-14 - art_sys_162: -4.03730190e-27 - art_sys_163: -0.0 - art_sys_164: -2.45170504e-27 - art_sys_165: -2.10503222e-23 - art_sys_166: -4.41788694e-23 - art_sys_167: -1.48427761e-23 - art_sys_168: 1.21346572e-24 - art_sys_169: 4.41045526e-25 - art_sys_170: -1.18675778e-24 - art_sys_171: 8.22348128e-26 - art_sys_172: 8.31739172e-26 - art_sys_173: -1.63835344e-25 - art_sys_174: 1.92701686e-28 - art_sys_175: 8.68416589e-27 - art_sys_176: -9.11570823e-27 - art_sys_177: 3.61906364e-27 - art_sys_178: 5.84795413e-28 - art_sys_179: -1.42602734e-28 - art_sys_180: 6.44671366e-28 - art_sys_181: -1.13075506e-28 - art_sys_182: 6.31032287e-29 - art_sys_183: -7.20578817e-31 - art_sys_184: -7.55294401e-31 - art_sys_185: -1.29357086e-28 + art_sys_50: 6.95635726e-19 + art_sys_51: -2.36118227e-18 + art_sys_52: -3.97605986e-12 + art_sys_53: 1.85841114e-11 + art_sys_54: 7.37143139e-03 + art_sys_55: 7.82653353e-13 + art_sys_56: 1.96478763e-12 + art_sys_57: 3.61238969e-19 + art_sys_58: -3.75234856e-19 + art_sys_59: 2.57430485e-11 + art_sys_60: 1.93722717e-04 + art_sys_61: -1.86252324e-14 + art_sys_62: -3.54029802e-13 + art_sys_63: -1.42306012e-04 + art_sys_64: -7.88521685e-15 + art_sys_65: 1.56267216e-15 + art_sys_66: 6.47553047e-17 + art_sys_67: 6.68127822e-17 + art_sys_68: 4.30642581e-17 + art_sys_69: 1.13070888e-17 + art_sys_70: 8.71997354e-19 + art_sys_71: -3.17629143e-18 + art_sys_72: -2.14205877e-18 + art_sys_73: 1.08631326e-18 + art_sys_74: -4.15021252e-15 + art_sys_75: -5.33254793e-19 + art_sys_76: -4.07923843e-16 + art_sys_77: -1.14366495e-15 + art_sys_78: -2.81975889e-17 + art_sys_79: -3.18276786e-18 + art_sys_80: 1.27254419e-18 + art_sys_81: 4.69955120e-14 + art_sys_82: -3.40627597e-05 + art_sys_83: -1.58207095e-18 + art_sys_84: -8.16161578e-19 + art_sys_85: 7.80321287e-19 + art_sys_86: 1.52921560e-19 + art_sys_87: 7.01850877e-20 + art_sys_88: -4.29539521e-15 + art_sys_89: -1.10662635e-21 + art_sys_90: 5.21725993e-17 + art_sys_91: -5.94231909e-11 + art_sys_92: -2.67599150e-20 + art_sys_93: 1.48826095e-20 + art_sys_94: 1.67369207e-15 + art_sys_95: -8.42953138e-18 + art_sys_96: 6.48411856e-11 + art_sys_97: 8.75685095e-14 + art_sys_98: -3.74037944e-18 + art_sys_99: 5.05816756e-12 + art_sys_100: 1.06468063e-17 + art_sys_101: -5.38610590e-12 + art_sys_102: -2.20418998e-14 + art_sys_103: -1.45325335e-14 + art_sys_104: 3.27519690e-14 + art_sys_105: 7.89597065e-15 + art_sys_106: 2.56799730e-13 + art_sys_107: 6.89596921e-14 + art_sys_108: 1.28340135e-14 + art_sys_109: -4.99640938e-16 + art_sys_110: -8.38256380e-16 + art_sys_111: 7.69101854e-14 + art_sys_112: -1.72179142e-07 + art_sys_113: 2.16837269e-13 + art_sys_114: -9.66338026e-17 + art_sys_115: 1.20466973e-15 + art_sys_116: -4.08679150e-14 + art_sys_117: -4.99289272e-17 + art_sys_118: -1.70683852e-14 + art_sys_119: -5.95666485e-14 + art_sys_120: -3.78341896e-08 + art_sys_121: 4.23368908e-17 + art_sys_122: 6.34327846e-14 + art_sys_123: 2.37020914e-14 + art_sys_124: 1.91196956e-14 + art_sys_125: -7.23507588e-17 + art_sys_126: -7.93947912e-09 + art_sys_127: -2.75358100e-14 + art_sys_128: -9.36774336e-14 + art_sys_129: -1.83350295e-16 + art_sys_130: 8.75391307e-13 + art_sys_131: 2.55248888e-15 + art_sys_132: 7.04326372e-13 + art_sys_133: -1.94510032e-12 + art_sys_134: -1.31918111e-09 + art_sys_135: -3.18644646e-13 + art_sys_136: -7.53191010e-15 + art_sys_137: 3.01390921e-13 + art_sys_138: -1.61142653e-14 + art_sys_139: -4.55923513e-12 + art_sys_140: 1.59153934e-15 + art_sys_141: -1.82780698e-10 + art_sys_142: 8.00187543e-15 + art_sys_143: 3.22652241e-13 + art_sys_144: -9.93381865e-15 + art_sys_145: -2.27354023e-13 + art_sys_146: -2.38514255e-14 + art_sys_147: 1.65432776e-16 + art_sys_148: 8.27411388e-17 + art_sys_149: -8.87653503e-16 + art_sys_150: -1.12830071e-13 + art_sys_151: -3.66332419e-12 + art_sys_152: -6.11016499e-16 + art_sys_153: -3.04889931e-13 + art_sys_154: -7.40865815e-15 + art_sys_155: 1.36087435e-15 + art_sys_156: -0.0 + art_sys_157: -6.83486003e-15 + art_sys_158: -0.0 + art_sys_159: -5.28615803e-14 + art_sys_160: 1.00596294e-16 + art_sys_161: 7.32526994e-15 + art_sys_162: 7.32526994e-15 + art_sys_163: 6.43828375e-15 + art_sys_164: 6.43828375e-15 + art_sys_165: -7.44554679e-29 + art_sys_166: 2.47725984e-29 + art_sys_167: 0.0 + art_sys_168: -5.04680487e-24 + art_sys_169: -4.59644385e-24 + art_sys_170: -1.93840734e-24 + art_sys_171: -1.28967355e-24 + art_sys_172: 5.06511282e-25 + art_sys_173: 2.89281872e-26 + art_sys_174: 3.72361109e-26 + art_sys_175: 2.24968296e-26 + art_sys_176: -9.54414593e-27 + art_sys_177: 4.26689734e-27 + art_sys_178: 6.15985614e-27 + art_sys_179: -4.41148968e-28 + art_sys_180: -1.39324582e-27 + art_sys_181: 2.01832340e-27 + art_sys_182: -6.48386470e-28 + art_sys_183: 5.63636232e-30 + art_sys_184: 6.43259042e-30 + art_sys_185: -1.94701191e-30 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -59895,190 +59895,190 @@ bins: luminosity_uncertainty: 1.90702200e-02 uncorrelated_uncertainty: 7.33470000e-03 - art_sys_1: -8.54484822e-25 - art_sys_2: -2.00110540e-23 + art_sys_2: -2.00140007e-23 art_sys_3: 1.95956050e-10 - art_sys_4: 6.80163178e-24 + art_sys_4: 2.13881241e-22 art_sys_5: -1.17943326e-08 - art_sys_6: -2.11651145e-23 - art_sys_7: -1.37148810e-22 + art_sys_6: -2.38013979e-23 + art_sys_7: -8.06616328e-23 art_sys_8: -1.71615388e-08 - art_sys_9: 1.63698778e-23 - art_sys_10: 1.63393564e-23 + art_sys_9: -7.46084021e-23 + art_sys_10: 1.61810310e-23 art_sys_11: 4.06227489e-08 - art_sys_12: -1.13221719e-21 - art_sys_13: -1.05699594e-19 - art_sys_14: -8.62971641e-21 - art_sys_15: 1.42315624e-06 - art_sys_16: -6.87183017e-21 - art_sys_17: -6.32231969e-20 + art_sys_12: -2.87162507e-22 + art_sys_13: 1.05707512e-19 + art_sys_14: -2.77222942e-21 + art_sys_15: -1.42315624e-06 + art_sys_16: 2.81471327e-20 + art_sys_17: -6.34035642e-20 art_sys_18: -3.24319649e-06 - art_sys_19: 5.75194580e-20 - art_sys_20: 3.60751683e-19 + art_sys_19: -3.27562649e-20 + art_sys_20: 3.60921157e-19 art_sys_21: -1.03905634e-05 - art_sys_22: -2.90478662e-20 - art_sys_23: 2.71223887e-19 + art_sys_22: -2.82288305e-20 + art_sys_23: 2.69618992e-19 art_sys_24: 8.19645084e-06 - art_sys_25: 1.18930454e-19 - art_sys_26: 2.09687776e-19 - art_sys_27: 2.67748399e-05 - art_sys_28: 3.02468565e-15 - art_sys_29: -4.85112687e-14 - art_sys_30: 6.45148038e-15 - art_sys_31: -1.12445873e-14 - art_sys_32: -6.50757797e-15 - art_sys_33: 1.74517843e-15 - art_sys_34: -3.73733177e-16 - art_sys_35: 7.14475372e-16 - art_sys_36: -1.54926274e-04 - art_sys_37: -1.02387762e-18 - art_sys_38: 5.75329736e-17 - art_sys_39: 8.87231065e-16 - art_sys_40: -1.35185554e-04 - art_sys_41: -4.25763771e-17 - art_sys_42: -1.15000935e-17 - art_sys_43: -4.44246845e-16 - art_sys_44: -1.01037185e-16 - art_sys_45: -1.25851600e-14 - art_sys_46: 4.16630638e-04 - art_sys_47: -4.61824307e-18 - art_sys_48: -9.01445399e-13 + art_sys_25: -1.15022250e-19 + art_sys_26: 1.62027403e-19 + art_sys_27: -2.67748399e-05 + art_sys_28: -1.11527705e-15 + art_sys_29: -1.54926274e-04 + art_sys_30: 8.02595123e-19 + art_sys_31: 5.24818683e-16 + art_sys_32: -1.35185554e-04 + art_sys_33: 3.38393341e-18 + art_sys_34: -7.57047251e-15 + art_sys_35: 2.17064286e-16 + art_sys_36: -2.01612299e-14 + art_sys_37: 1.15639728e-14 + art_sys_38: -2.45002799e-14 + art_sys_39: -6.62108395e-15 + art_sys_40: 1.26010431e-15 + art_sys_41: -1.25255155e-15 + art_sys_42: 7.40012368e-16 + art_sys_43: -3.28678087e-16 + art_sys_44: 6.45412153e-17 + art_sys_45: 4.13447347e-17 + art_sys_46: -3.87989971e-18 + art_sys_47: 4.16630638e-04 + art_sys_48: -1.59187581e-11 art_sys_49: 6.55785237e-04 - art_sys_50: 1.67894394e-17 - art_sys_51: 1.36302295e-17 - art_sys_52: 1.84599592e-12 - art_sys_53: 5.68189038e-14 - art_sys_54: 9.68410296e-04 - art_sys_55: -7.34386859e-13 - art_sys_56: 1.51800398e-13 - art_sys_57: -1.24630834e-14 - art_sys_58: 3.15224688e-16 - art_sys_59: 9.56693279e-15 - art_sys_60: 5.19167538e-16 - art_sys_61: 1.45514607e-15 - art_sys_62: -2.57006134e-16 - art_sys_63: 4.75026159e-16 - art_sys_64: 6.45270095e-17 - art_sys_65: -9.12251738e-18 - art_sys_66: -1.35773696e-12 - art_sys_67: -3.37358257e-17 - art_sys_68: -2.57619415e-17 - art_sys_69: -5.69345324e-12 - art_sys_70: -2.51167876e-09 - art_sys_71: -2.91637374e-03 - art_sys_72: -1.46876067e-11 - art_sys_73: 4.92732970e-17 - art_sys_74: -3.67292175e-04 - art_sys_75: -6.08199569e-19 - art_sys_76: -1.01483966e-14 - art_sys_77: 4.80348359e-15 - art_sys_78: -2.82329272e-16 - art_sys_79: -4.47156846e-14 - art_sys_80: -1.85566384e-04 - art_sys_81: 9.81314535e-19 - art_sys_82: -8.52223379e-18 - art_sys_83: 8.04099774e-19 - art_sys_84: 1.82743008e-19 - art_sys_85: 6.51057256e-19 - art_sys_86: 3.66992327e-19 - art_sys_87: 9.50022551e-16 - art_sys_88: 6.09199109e-15 - art_sys_89: -1.26439164e-16 - art_sys_90: -3.24906766e-11 - art_sys_91: 1.84873993e-10 - art_sys_92: -5.96337402e-15 - art_sys_93: 8.15467286e-11 - art_sys_94: 3.92157457e-14 - art_sys_95: -2.31067755e-12 - art_sys_96: 3.32556413e-16 - art_sys_97: -3.05135050e-12 - art_sys_98: 3.29528342e-12 - art_sys_99: 1.07190051e-12 - art_sys_100: -1.34642148e-13 - art_sys_101: 3.29274194e-14 - art_sys_102: -4.61941346e-15 - art_sys_103: -6.40786214e-12 - art_sys_104: 5.61773180e-14 - art_sys_105: 1.41299062e-16 - art_sys_106: -1.80723037e-12 - art_sys_107: -3.60427790e-14 - art_sys_108: -4.40388556e-13 - art_sys_109: 6.08885219e-07 - art_sys_110: 1.58601575e-16 - art_sys_111: 1.18533662e-11 - art_sys_112: -2.84973334e-12 - art_sys_113: 1.09381564e-16 - art_sys_114: -5.36849245e-12 - art_sys_115: -2.26905109e-13 - art_sys_116: 1.33725347e-07 - art_sys_117: -5.99808255e-18 - art_sys_118: -9.20253663e-12 - art_sys_119: -2.84498138e-14 - art_sys_120: 5.30634037e-12 - art_sys_121: -3.66328121e-08 - art_sys_122: -4.72830850e-13 - art_sys_123: -1.96299738e-12 - art_sys_124: -6.29435449e-12 - art_sys_125: 2.81348172e-12 - art_sys_126: 5.18690463e-09 - art_sys_127: -6.41749389e-13 - art_sys_128: 1.58115202e-12 - art_sys_129: -1.14210150e-13 - art_sys_130: 6.48228152e-12 - art_sys_131: 6.23330837e-12 - art_sys_132: 1.59843697e-12 - art_sys_133: -7.48129701e-10 - art_sys_134: 2.72070702e-11 - art_sys_135: -1.79149181e-12 - art_sys_136: 2.54552630e-12 - art_sys_137: -8.89615982e-14 - art_sys_138: -6.92344588e-12 - art_sys_139: 1.85863188e-11 - art_sys_140: 2.10038920e-15 - art_sys_141: 1.07888164e-12 - art_sys_142: -0.0 - art_sys_143: -4.88065654e-13 - art_sys_144: -1.17714245e-12 - art_sys_145: -1.69653336e-12 - art_sys_146: 4.64658707e-16 - art_sys_147: -8.88119595e-16 - art_sys_148: -2.06204630e-15 - art_sys_149: -1.57823426e-15 - art_sys_150: -5.47240814e-15 - art_sys_151: -9.27877325e-15 - art_sys_152: 4.95372299e-15 - art_sys_153: 9.53148821e-17 - art_sys_154: -7.28686072e-16 - art_sys_155: -1.34779429e-15 - art_sys_156: -4.23115731e-15 - art_sys_157: -9.02191522e-15 - art_sys_158: -0.0 - art_sys_159: 7.20805258e-13 - art_sys_160: 7.20805258e-13 - art_sys_161: -4.77570044e-14 - art_sys_162: 1.77869982e-26 - art_sys_163: 0.0 - art_sys_164: 1.07977361e-26 - art_sys_165: 9.76083728e-23 - art_sys_166: 2.04332707e-22 - art_sys_167: 6.87720406e-23 - art_sys_168: -5.37847867e-24 - art_sys_169: -1.95137683e-24 - art_sys_170: 5.32041119e-24 - art_sys_171: -3.88964203e-25 - art_sys_172: -3.69753155e-25 - art_sys_173: 7.26317706e-25 - art_sys_174: -1.04588195e-27 - art_sys_175: -3.94021825e-26 - art_sys_176: 4.31444981e-26 - art_sys_177: -1.63542843e-26 - art_sys_178: -2.57580079e-27 - art_sys_179: 8.89036148e-28 - art_sys_180: -2.75322644e-27 - art_sys_181: 5.21925874e-28 - art_sys_182: -2.88236503e-28 - art_sys_183: 2.65903695e-30 - art_sys_184: 3.11278411e-30 - art_sys_185: 5.71359184e-28 + art_sys_50: -1.97462307e-17 + art_sys_51: 7.87504068e-18 + art_sys_52: 5.01173554e-13 + art_sys_53: 2.37572588e-12 + art_sys_54: 9.68410294e-04 + art_sys_55: 1.85325316e-13 + art_sys_56: -1.97151351e-13 + art_sys_57: 8.44107477e-19 + art_sys_58: 1.19999504e-18 + art_sys_59: -4.32824644e-10 + art_sys_60: -2.91637366e-03 + art_sys_61: 1.01467054e-13 + art_sys_62: -1.59022759e-14 + art_sys_63: 3.67292411e-04 + art_sys_64: 4.90069607e-16 + art_sys_65: -6.94620108e-15 + art_sys_66: -3.80436487e-15 + art_sys_67: -1.98219528e-16 + art_sys_68: -2.42319656e-16 + art_sys_69: -5.81032934e-17 + art_sys_70: -2.22845304e-18 + art_sys_71: 1.74941335e-17 + art_sys_72: 1.15444670e-17 + art_sys_73: -5.81895273e-18 + art_sys_74: 2.26096964e-14 + art_sys_75: 2.82335628e-18 + art_sys_76: 2.14734139e-15 + art_sys_77: 6.20388598e-15 + art_sys_78: 1.74318314e-16 + art_sys_79: 1.67561013e-17 + art_sys_80: -2.04183974e-18 + art_sys_81: -2.56023406e-13 + art_sys_82: 1.85566997e-04 + art_sys_83: 5.02364789e-18 + art_sys_84: 2.98184952e-18 + art_sys_85: -2.80998061e-18 + art_sys_86: -5.69113975e-19 + art_sys_87: -5.15757826e-20 + art_sys_88: 1.51892131e-14 + art_sys_89: 4.23905958e-21 + art_sys_90: -1.84220128e-16 + art_sys_91: 2.49908775e-10 + art_sys_92: 9.17303701e-20 + art_sys_93: -5.22495005e-20 + art_sys_94: -7.72369464e-15 + art_sys_95: 4.50986857e-17 + art_sys_96: -3.60503962e-10 + art_sys_97: 3.86999997e-12 + art_sys_98: 2.08947838e-17 + art_sys_99: -2.74599286e-11 + art_sys_100: -1.95399673e-17 + art_sys_101: 2.93002347e-11 + art_sys_102: 7.79032613e-14 + art_sys_103: -3.58730605e-15 + art_sys_104: -1.72421942e-13 + art_sys_105: -3.23449956e-14 + art_sys_106: -1.38550713e-12 + art_sys_107: -2.43597315e-13 + art_sys_108: -5.25756774e-14 + art_sys_109: 2.03793379e-15 + art_sys_110: 6.26461256e-15 + art_sys_111: -1.79192686e-13 + art_sys_112: 6.08880482e-07 + art_sys_113: 3.80398669e-14 + art_sys_114: 3.97276018e-16 + art_sys_115: -6.14760066e-15 + art_sys_116: 1.76854683e-13 + art_sys_117: 1.96432101e-16 + art_sys_118: 5.67151283e-14 + art_sys_119: 3.03153274e-13 + art_sys_120: 1.33720482e-07 + art_sys_121: -1.77030335e-16 + art_sys_122: -2.22577004e-13 + art_sys_123: -9.30611012e-14 + art_sys_124: -6.60049495e-14 + art_sys_125: 3.44194034e-16 + art_sys_126: 3.66326796e-08 + art_sys_127: 9.72733071e-14 + art_sys_128: 3.23480305e-13 + art_sys_129: 8.43327784e-16 + art_sys_130: -3.58813135e-12 + art_sys_131: -1.17418375e-14 + art_sys_132: -2.47728379e-12 + art_sys_133: 7.96076282e-12 + art_sys_134: 5.18885450e-09 + art_sys_135: 1.41635187e-12 + art_sys_136: 3.47369995e-14 + art_sys_137: -1.24446753e-12 + art_sys_138: 6.39964418e-14 + art_sys_139: 1.86820499e-11 + art_sys_140: -7.18097790e-15 + art_sys_141: 7.48771639e-10 + art_sys_142: -2.19726991e-14 + art_sys_143: -1.32114960e-12 + art_sys_144: 4.27078603e-14 + art_sys_145: 8.89650355e-13 + art_sys_146: 9.81595164e-14 + art_sys_147: -6.12254376e-16 + art_sys_148: -2.48982878e-16 + art_sys_149: 5.42562664e-15 + art_sys_150: 4.84303104e-13 + art_sys_151: 1.69402047e-11 + art_sys_152: 3.14281143e-15 + art_sys_153: 1.31326098e-12 + art_sys_154: 2.35228417e-14 + art_sys_155: -5.96566077e-15 + art_sys_156: 0.0 + art_sys_157: 2.60625452e-14 + art_sys_158: 0.0 + art_sys_159: 2.09021213e-13 + art_sys_160: -1.20689295e-15 + art_sys_161: -2.87717228e-14 + art_sys_162: -2.87717228e-14 + art_sys_163: -2.57359663e-14 + art_sys_164: -2.57359663e-14 + art_sys_165: 2.96750722e-28 + art_sys_166: -9.87039131e-29 + art_sys_167: -0.0 + art_sys_168: 2.46147300e-23 + art_sys_169: 2.11154630e-23 + art_sys_170: 8.52578217e-24 + art_sys_171: 5.97968526e-24 + art_sys_172: -2.34471739e-24 + art_sys_173: -1.12542450e-25 + art_sys_174: -1.67274635e-25 + art_sys_175: -1.00621503e-25 + art_sys_176: 4.27357601e-26 + art_sys_177: -1.92655831e-26 + art_sys_178: -2.74926276e-26 + art_sys_179: 1.92104130e-27 + art_sys_180: 5.53054869e-27 + art_sys_181: -9.14614820e-27 + art_sys_182: 2.99323851e-27 + art_sys_183: -2.65181805e-29 + art_sys_184: -2.69204629e-29 + art_sys_185: 7.75493260e-30 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -60186,190 +60186,190 @@ bins: luminosity_uncertainty: 8.19847600e-03 uncorrelated_uncertainty: 3.15326000e-03 - art_sys_1: -7.35209471e-26 - art_sys_2: -1.57900256e-24 + art_sys_2: -1.58064999e-24 art_sys_3: 2.97277657e-11 - art_sys_4: -1.32497480e-24 + art_sys_4: 9.49806363e-24 art_sys_5: -9.14922371e-10 - art_sys_6: -2.60909625e-24 - art_sys_7: -6.98433470e-24 + art_sys_6: -2.80467261e-24 + art_sys_7: -4.36227282e-24 art_sys_8: -1.70779515e-09 - art_sys_9: -2.82745291e-25 - art_sys_10: -2.28837388e-24 + art_sys_9: -5.67583965e-24 + art_sys_10: -2.30303832e-24 art_sys_11: 1.71341485e-09 - art_sys_12: -1.16028272e-22 - art_sys_13: -1.03467143e-20 - art_sys_14: -3.92696970e-23 - art_sys_15: 1.37714924e-07 - art_sys_16: 2.42753655e-22 - art_sys_17: -5.78720127e-21 + art_sys_12: -3.34631258e-23 + art_sys_13: 1.03470737e-20 + art_sys_14: -1.30700542e-21 + art_sys_15: -1.37714924e-07 + art_sys_16: 1.71029941e-21 + art_sys_17: -5.80628629e-21 art_sys_18: -2.39668605e-07 - art_sys_19: 3.60614756e-21 - art_sys_20: 3.15586135e-20 + art_sys_19: -1.55964679e-21 + art_sys_20: 3.15824173e-20 art_sys_21: -9.27110419e-07 - art_sys_22: -6.40940251e-21 - art_sys_23: 2.36825164e-20 + art_sys_22: -6.34457986e-21 + art_sys_23: 2.35654558e-20 art_sys_24: 6.68238371e-07 - art_sys_25: 1.10674899e-20 - art_sys_26: 2.00683972e-20 - art_sys_27: 6.39640696e-06 - art_sys_28: 1.41709907e-17 - art_sys_29: 8.84185703e-14 - art_sys_30: -1.71686838e-14 - art_sys_31: 1.61805593e-14 - art_sys_32: -1.13204864e-15 - art_sys_33: -1.17756009e-15 - art_sys_34: -1.15078682e-15 - art_sys_35: -2.56114608e-16 - art_sys_36: -1.38040269e-06 - art_sys_37: -4.29412916e-20 - art_sys_38: -2.37424064e-16 - art_sys_39: 1.30841566e-16 - art_sys_40: -2.39277473e-05 - art_sys_41: -8.22394731e-18 - art_sys_42: -7.01650320e-18 - art_sys_43: 1.29975636e-16 - art_sys_44: 4.32283504e-18 - art_sys_45: 3.01232818e-15 - art_sys_46: -1.21506173e-04 - art_sys_47: 4.76606319e-18 - art_sys_48: -4.49092639e-13 + art_sys_25: -1.02973431e-20 + art_sys_26: 1.58228710e-20 + art_sys_27: -6.39640696e-06 + art_sys_28: -2.27138483e-17 + art_sys_29: -1.38040269e-06 + art_sys_30: -2.95951480e-20 + art_sys_31: 1.19084077e-16 + art_sys_32: -2.39277473e-05 + art_sys_33: 1.28011042e-18 + art_sys_34: 2.20755022e-15 + art_sys_35: -7.21284866e-16 + art_sys_36: 5.71261276e-14 + art_sys_37: -1.51327551e-14 + art_sys_38: 9.92798175e-15 + art_sys_39: -2.99956882e-15 + art_sys_40: 9.18488771e-16 + art_sys_41: 4.59037465e-17 + art_sys_42: 5.31751089e-16 + art_sys_43: -1.28508970e-16 + art_sys_44: -4.70676377e-17 + art_sys_45: -9.62198036e-17 + art_sys_46: -1.82489281e-17 + art_sys_47: -1.21506173e-04 + art_sys_48: -7.49695672e-12 art_sys_49: 3.26466957e-04 - art_sys_50: 7.65464037e-19 - art_sys_51: -1.71292317e-17 - art_sys_52: -9.60457339e-13 - art_sys_53: -8.23471564e-15 - art_sys_54: -5.00831185e-04 - art_sys_55: 5.40485858e-13 - art_sys_56: 7.54668631e-14 - art_sys_57: -2.43096462e-14 - art_sys_58: 1.55583368e-14 - art_sys_59: 7.51739348e-15 - art_sys_60: 1.35090176e-16 - art_sys_61: 1.14874067e-15 - art_sys_62: -8.52800683e-16 - art_sys_63: -9.31904819e-16 - art_sys_64: 1.34805343e-16 - art_sys_65: 1.08213729e-16 - art_sys_66: -3.35060412e-13 - art_sys_67: -8.33592569e-17 - art_sys_68: -3.80000673e-17 - art_sys_69: 9.69583022e-12 - art_sys_70: -1.16992112e-09 - art_sys_71: -7.56562098e-04 - art_sys_72: -3.81880656e-12 - art_sys_73: -1.06446879e-16 - art_sys_74: 1.71924527e-03 - art_sys_75: 1.04536786e-18 - art_sys_76: 1.72558728e-14 - art_sys_77: -7.54758244e-15 - art_sys_78: 5.22538116e-16 - art_sys_79: 8.02762452e-14 - art_sys_80: 3.33132679e-04 - art_sys_81: -1.41455760e-17 - art_sys_82: 9.59813608e-17 - art_sys_83: -1.06581738e-17 - art_sys_84: -3.76246037e-19 - art_sys_85: -4.22711266e-18 - art_sys_86: -1.71888471e-18 - art_sys_87: -1.28256670e-14 - art_sys_88: -3.80863006e-14 - art_sys_89: 9.30999370e-16 - art_sys_90: -1.32799905e-09 - art_sys_91: -4.69502014e-10 - art_sys_92: 6.36056917e-14 - art_sys_93: -1.46396348e-10 - art_sys_94: -4.16306697e-13 - art_sys_95: 2.30204229e-12 - art_sys_96: -2.20738603e-15 - art_sys_97: 3.23232351e-11 - art_sys_98: -5.17198225e-12 - art_sys_99: -1.91416364e-12 - art_sys_100: 1.44905649e-12 - art_sys_101: -4.55237705e-13 - art_sys_102: 2.96448450e-14 - art_sys_103: 3.68527514e-11 - art_sys_104: 7.59246567e-13 - art_sys_105: -7.48166788e-16 - art_sys_106: 1.86606189e-11 - art_sys_107: -1.82598826e-14 - art_sys_108: 2.55641459e-12 - art_sys_109: -6.44886007e-06 - art_sys_110: -8.86788018e-16 - art_sys_111: -1.25500111e-10 - art_sys_112: 1.88172012e-11 - art_sys_113: -6.12593370e-16 - art_sys_114: 5.62358196e-11 - art_sys_115: 1.49122406e-12 - art_sys_116: -7.78455315e-07 - art_sys_117: 3.25362245e-17 - art_sys_118: 9.73138293e-11 - art_sys_119: 1.87211575e-13 - art_sys_120: -5.72136794e-11 - art_sys_121: 2.30245893e-07 - art_sys_122: -1.10700024e-12 - art_sys_123: 1.26122357e-11 - art_sys_124: 3.72886212e-11 - art_sys_125: -1.68436189e-11 - art_sys_126: -3.40714125e-08 - art_sys_127: 4.46930741e-12 - art_sys_128: -1.01132094e-11 - art_sys_129: 6.73486450e-13 - art_sys_130: -4.15168502e-11 - art_sys_131: -4.00516526e-11 - art_sys_132: -1.04573417e-11 - art_sys_133: 4.80173376e-09 - art_sys_134: -1.74848968e-10 - art_sys_135: 1.17862829e-11 - art_sys_136: -1.56327045e-11 - art_sys_137: 6.65515009e-13 - art_sys_138: 3.75197378e-11 - art_sys_139: -1.03169012e-10 - art_sys_140: 9.93489808e-16 - art_sys_141: -4.61932219e-12 - art_sys_142: 0.0 - art_sys_143: 2.97309770e-12 - art_sys_144: 6.33902196e-12 - art_sys_145: 8.50706579e-12 - art_sys_146: -2.54075803e-15 - art_sys_147: 4.85097944e-15 - art_sys_148: 1.21188452e-14 - art_sys_149: 8.79238171e-15 - art_sys_150: 2.92977474e-14 - art_sys_151: 5.47729588e-14 - art_sys_152: -3.19794494e-14 - art_sys_153: -6.18425178e-16 - art_sys_154: 4.99893803e-15 - art_sys_155: 6.06455742e-15 - art_sys_156: 2.02387666e-14 - art_sys_157: 4.94858546e-14 - art_sys_158: 0.0 - art_sys_159: -4.27692822e-12 - art_sys_160: -4.27692822e-12 - art_sys_161: 2.81693155e-13 - art_sys_162: -1.04964886e-25 - art_sys_163: -0.0 - art_sys_164: -6.37371281e-26 - art_sys_165: -5.30343377e-22 - art_sys_166: -1.11862833e-21 - art_sys_167: -3.74991581e-22 - art_sys_168: 3.22580627e-23 - art_sys_169: 1.18343001e-23 - art_sys_170: -3.15916854e-23 - art_sys_171: 2.07322932e-24 - art_sys_172: 2.13279323e-24 - art_sys_173: -4.33512276e-24 - art_sys_174: 4.58542786e-27 - art_sys_175: 2.20915936e-25 - art_sys_176: -2.33680897e-25 - art_sys_177: 9.44113224e-26 - art_sys_178: 1.57274441e-26 - art_sys_179: -2.02663134e-27 - art_sys_180: 1.80081367e-26 - art_sys_181: -2.85712862e-27 - art_sys_182: 1.61031965e-27 - art_sys_183: -1.89790120e-29 - art_sys_184: -1.99849221e-29 - art_sys_185: -3.37109176e-27 + art_sys_50: 2.35325191e-18 + art_sys_51: 1.09911473e-17 + art_sys_52: 1.99678205e-13 + art_sys_53: -1.25755579e-12 + art_sys_54: -5.00831184e-04 + art_sys_55: -3.30406856e-14 + art_sys_56: -9.90501354e-14 + art_sys_57: -2.14242285e-19 + art_sys_58: -4.54040815e-18 + art_sys_59: -1.58978645e-10 + art_sys_60: -7.56563398e-04 + art_sys_61: -1.82154249e-13 + art_sys_62: 2.19604322e-14 + art_sys_63: -1.71924628e-03 + art_sys_64: -4.78807422e-15 + art_sys_65: 1.33059385e-14 + art_sys_66: 7.03804200e-15 + art_sys_67: 1.55793204e-16 + art_sys_68: 5.41373166e-16 + art_sys_69: 1.23136864e-16 + art_sys_70: 1.18066971e-17 + art_sys_71: -3.02867778e-17 + art_sys_72: -2.24443771e-17 + art_sys_73: 1.20319907e-17 + art_sys_74: -4.05889946e-14 + art_sys_75: -5.79252602e-18 + art_sys_76: -5.44039536e-15 + art_sys_77: -1.16269247e-14 + art_sys_78: -8.99442221e-18 + art_sys_79: -3.03437082e-17 + art_sys_80: 8.99924217e-17 + art_sys_81: 4.59618870e-13 + art_sys_82: -3.33133845e-04 + art_sys_83: -6.44793946e-17 + art_sys_84: -2.47646542e-17 + art_sys_85: 3.11763411e-17 + art_sys_86: 5.07181495e-18 + art_sys_87: 4.56506282e-19 + art_sys_88: -1.60880456e-13 + art_sys_89: -5.58630568e-20 + art_sys_90: -3.42951764e-16 + art_sys_91: -6.29352302e-10 + art_sys_92: -9.91299053e-19 + art_sys_93: 5.30363306e-19 + art_sys_94: 4.85255851e-14 + art_sys_95: -8.49078426e-17 + art_sys_96: 6.29430304e-10 + art_sys_97: -6.81623607e-12 + art_sys_98: -3.03255970e-17 + art_sys_99: 4.95315025e-11 + art_sys_100: 1.75675052e-16 + art_sys_101: -5.27029200e-11 + art_sys_102: -7.96660154e-13 + art_sys_103: 1.04755798e-15 + art_sys_104: 4.02210947e-13 + art_sys_105: 2.07606967e-13 + art_sys_106: 2.68357950e-12 + art_sys_107: 1.41826731e-12 + art_sys_108: 3.37449418e-13 + art_sys_109: -1.31539307e-14 + art_sys_110: -9.15103781e-12 + art_sys_111: 4.20943393e-12 + art_sys_112: -6.44880952e-06 + art_sys_113: -9.78668715e-15 + art_sys_114: -2.53796714e-15 + art_sys_115: 2.01004697e-14 + art_sys_116: -1.12058740e-12 + art_sys_117: -1.32848355e-15 + art_sys_118: -6.81628717e-13 + art_sys_119: -1.85902803e-12 + art_sys_120: -7.78426863e-07 + art_sys_121: 1.10567610e-15 + art_sys_122: 2.27513691e-12 + art_sys_123: 6.11758366e-13 + art_sys_124: 8.44985493e-13 + art_sys_125: -1.80714063e-15 + art_sys_126: -2.30245175e-07 + art_sys_127: -7.53606184e-13 + art_sys_128: -1.89321143e-12 + art_sys_129: -4.64763830e-15 + art_sys_130: 2.30148347e-11 + art_sys_131: 6.46955062e-14 + art_sys_132: 1.43920974e-11 + art_sys_133: -5.11648517e-11 + art_sys_134: -3.40842291e-08 + art_sys_135: -8.84234273e-12 + art_sys_136: -1.90670443e-13 + art_sys_137: 7.90846900e-12 + art_sys_138: -4.34982177e-13 + art_sys_139: -1.19870346e-10 + art_sys_140: 4.08342713e-14 + art_sys_141: -4.80600311e-09 + art_sys_142: 1.54658065e-13 + art_sys_143: 8.48265482e-12 + art_sys_144: -2.61209230e-13 + art_sys_145: -5.85730468e-12 + art_sys_146: -6.28506933e-13 + art_sys_147: 4.37096945e-15 + art_sys_148: 2.23803563e-15 + art_sys_149: -2.57958727e-16 + art_sys_150: -2.93602208e-12 + art_sys_151: -9.25943285e-11 + art_sys_152: -1.51560762e-14 + art_sys_153: -7.89326980e-12 + art_sys_154: -2.44120290e-13 + art_sys_155: 3.45013302e-14 + art_sys_156: -0.0 + art_sys_157: -1.75147138e-13 + art_sys_158: -0.0 + art_sys_159: -1.38656462e-12 + art_sys_160: -2.35812266e-16 + art_sys_161: 1.90557841e-13 + art_sys_162: 1.90557841e-13 + art_sys_163: 1.66890972e-13 + art_sys_164: 1.66890972e-13 + art_sys_165: -1.93130327e-27 + art_sys_166: 6.42511168e-28 + art_sys_167: 0.0 + art_sys_168: -1.30987548e-22 + art_sys_169: -1.15891971e-22 + art_sys_170: -4.15892890e-23 + art_sys_171: -3.41735747e-23 + art_sys_172: 1.27894427e-23 + art_sys_173: 8.39981826e-25 + art_sys_174: 9.70352735e-25 + art_sys_175: 5.90462649e-25 + art_sys_176: -2.51013210e-25 + art_sys_177: 1.10835496e-25 + art_sys_178: 1.61882362e-25 + art_sys_179: -1.11681492e-26 + art_sys_180: -3.64191960e-26 + art_sys_181: 5.25991537e-26 + art_sys_182: -1.63667157e-26 + art_sys_183: 1.41575699e-28 + art_sys_184: 1.69071353e-28 + art_sys_185: -5.12460498e-29 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -60477,190 +60477,190 @@ bins: luminosity_uncertainty: 3.47755200e-03 uncorrelated_uncertainty: 1.33752000e-03 - art_sys_1: -2.31088309e-27 - art_sys_2: -8.51763943e-26 + art_sys_2: -8.51783533e-26 art_sys_3: -2.24916061e-14 - art_sys_4: -1.35655029e-25 + art_sys_4: 2.75105166e-25 art_sys_5: -4.78547476e-11 - art_sys_6: -1.76257723e-25 - art_sys_7: -1.85239937e-25 + art_sys_6: -1.88298858e-25 + art_sys_7: -1.18680516e-25 art_sys_8: -1.05479539e-10 - art_sys_9: -3.19179922e-26 - art_sys_10: -1.89595625e-25 + art_sys_9: -2.35153064e-25 + art_sys_10: -1.90519029e-25 art_sys_11: 4.49109309e-11 - art_sys_12: -6.77597853e-24 - art_sys_13: -5.41656781e-22 - art_sys_14: -4.41612937e-23 - art_sys_15: 7.27081679e-09 - art_sys_16: -9.59782922e-24 - art_sys_17: -3.01698544e-22 + art_sys_12: -2.37843640e-24 + art_sys_13: 5.41667408e-22 + art_sys_14: -9.17941189e-24 + art_sys_15: -7.27081679e-09 + art_sys_16: 1.61647355e-23 + art_sys_17: -3.02666674e-22 art_sys_18: -1.58005309e-08 - art_sys_19: 2.03068387e-22 - art_sys_20: 8.62372508e-22 + art_sys_19: -1.83667561e-22 + art_sys_20: 8.63030097e-22 art_sys_21: -4.50488778e-08 - art_sys_22: 6.33988767e-22 - art_sys_23: 6.82865366e-22 + art_sys_22: 6.34241698e-22 + art_sys_23: 6.82861783e-22 art_sys_24: 4.46749311e-09 - art_sys_25: -7.17862549e-22 - art_sys_26: -2.20640224e-21 - art_sys_27: -9.74578690e-08 - art_sys_28: -6.80187529e-17 - art_sys_29: 2.97621679e-14 - art_sys_30: 1.32801314e-14 - art_sys_31: 1.95992567e-14 - art_sys_32: -6.83232719e-16 - art_sys_33: -6.02494979e-16 - art_sys_34: -2.84811144e-16 - art_sys_35: -2.01267307e-16 - art_sys_36: 3.45326603e-06 - art_sys_37: 1.88762289e-20 - art_sys_38: -1.01723318e-16 - art_sys_39: -1.86397282e-17 - art_sys_40: 2.92836242e-06 - art_sys_41: 9.25666441e-19 - art_sys_42: 2.95569280e-17 - art_sys_43: 1.57078947e-17 - art_sys_44: 9.28502642e-17 - art_sys_45: 4.58765568e-16 - art_sys_46: -1.47277129e-05 - art_sys_47: -6.37031759e-18 - art_sys_48: 5.52881655e-14 - art_sys_49: -4.02132421e-05 - art_sys_50: -8.31103399e-18 - art_sys_51: -6.64494175e-18 - art_sys_52: -6.98553217e-14 - art_sys_53: -2.25107885e-15 - art_sys_54: -3.67713885e-05 - art_sys_55: 1.48833278e-14 - art_sys_56: -9.32728769e-15 - art_sys_57: 6.74760265e-14 - art_sys_58: 3.75385931e-14 - art_sys_59: 3.98381169e-15 - art_sys_60: -4.50290522e-17 - art_sys_61: -2.99724937e-15 - art_sys_62: -1.67994333e-15 - art_sys_63: -1.78320534e-15 - art_sys_64: -2.83895629e-16 - art_sys_65: -1.55769463e-16 - art_sys_66: 1.43457091e-13 - art_sys_67: 4.81129778e-17 - art_sys_68: -3.31184751e-17 - art_sys_69: -3.23210949e-11 - art_sys_70: 5.80655295e-11 - art_sys_71: 2.95933667e-04 - art_sys_72: 1.48963469e-12 - art_sys_73: 2.31302006e-16 - art_sys_74: 6.40591444e-04 - art_sys_75: -5.41227889e-18 - art_sys_76: -5.76571958e-14 - art_sys_77: 2.74091498e-14 - art_sys_78: -1.80034931e-15 - art_sys_79: -2.43559245e-13 - art_sys_80: -1.01074512e-03 - art_sys_81: -2.36383267e-17 - art_sys_82: 1.93381829e-17 - art_sys_83: -9.19211816e-18 - art_sys_84: 1.35724911e-18 - art_sys_85: 8.54534509e-18 - art_sys_86: 8.78479312e-18 - art_sys_87: -1.28478248e-14 - art_sys_88: 8.55855422e-14 - art_sys_89: -4.49514966e-15 - art_sys_90: -3.06088052e-09 - art_sys_91: 7.23465797e-10 - art_sys_92: -1.78511872e-16 - art_sys_93: 4.44189224e-10 - art_sys_94: 1.06218712e-14 - art_sys_95: -1.63720855e-11 - art_sys_96: 6.55764931e-15 - art_sys_97: -1.15062391e-12 - art_sys_98: 1.94905429e-11 - art_sys_99: 5.79487029e-12 - art_sys_100: 5.78780241e-14 - art_sys_101: 1.30773677e-14 - art_sys_102: -8.75790381e-14 - art_sys_103: -1.50527070e-10 - art_sys_104: 7.29707339e-13 - art_sys_105: 2.57188039e-15 - art_sys_106: -1.45500771e-12 - art_sys_107: -1.61760122e-15 - art_sys_108: -1.03734535e-11 - art_sys_109: 2.34881057e-07 - art_sys_110: 2.91873157e-15 - art_sys_111: 4.80778598e-12 - art_sys_112: -5.74856966e-11 - art_sys_113: 2.01336038e-15 - art_sys_114: -4.94989124e-12 - art_sys_115: -4.43520271e-12 - art_sys_116: 3.09711648e-06 - art_sys_117: -1.09907593e-16 - art_sys_118: -4.21621692e-12 - art_sys_119: -5.55342935e-13 - art_sys_120: -2.90434577e-12 - art_sys_121: -5.06216057e-07 - art_sys_122: -2.98170914e-11 - art_sys_123: -3.72237150e-11 - art_sys_124: -1.43357916e-10 - art_sys_125: 6.11438572e-11 - art_sys_126: 1.01038712e-07 - art_sys_127: -9.54774444e-12 - art_sys_128: 2.99515696e-11 - art_sys_129: -2.12450510e-12 - art_sys_130: 1.22850538e-10 - art_sys_131: 1.18214701e-10 - art_sys_132: 3.24865250e-11 - art_sys_133: -1.41845041e-08 - art_sys_134: 5.15989406e-10 - art_sys_135: -3.56986123e-11 - art_sys_136: 4.78093496e-11 - art_sys_137: -2.24127121e-12 - art_sys_138: -1.26825946e-10 - art_sys_139: 3.42010803e-10 - art_sys_140: 8.04166503e-17 - art_sys_141: 1.89368660e-11 - art_sys_142: -0.0 - art_sys_143: -9.42315249e-12 - art_sys_144: -2.15717934e-11 - art_sys_145: -3.06011451e-11 - art_sys_146: 8.52350698e-15 - art_sys_147: -1.62870250e-14 - art_sys_148: -3.81414149e-14 - art_sys_149: -2.90225886e-14 - art_sys_150: -1.00017497e-13 - art_sys_151: -1.71427063e-13 - art_sys_152: 9.38713811e-14 - art_sys_153: 1.79647339e-15 - art_sys_154: -1.38229921e-14 - art_sys_155: -2.42628864e-14 - art_sys_156: -7.55117738e-14 - art_sys_157: -1.65233169e-13 - art_sys_158: -0.0 - art_sys_159: 1.34098967e-11 - art_sys_160: 1.34098967e-11 - art_sys_161: -8.84748627e-13 - art_sys_162: 3.29616338e-25 - art_sys_163: 0.0 - art_sys_164: 2.00123424e-25 - art_sys_165: 1.80408629e-21 - art_sys_166: 3.74871875e-21 - art_sys_167: 1.25879540e-21 - art_sys_168: -9.88687561e-23 - art_sys_169: -3.61567607e-23 - art_sys_170: 9.58861730e-23 - art_sys_171: -7.07778958e-24 - art_sys_172: -6.78748380e-24 - art_sys_173: 1.33408563e-23 - art_sys_174: -1.84524038e-26 - art_sys_175: -7.23236583e-25 - art_sys_176: 7.90443946e-25 - art_sys_177: -3.00120283e-25 - art_sys_178: -4.73287615e-26 - art_sys_179: 1.61498523e-26 - art_sys_180: -5.05350478e-26 - art_sys_181: 9.57454199e-27 - art_sys_182: -5.28635863e-27 - art_sys_183: 5.24924782e-29 - art_sys_184: 5.87851267e-29 - art_sys_185: 1.05721323e-26 + art_sys_25: 6.97196616e-22 + art_sys_26: -1.46297169e-21 + art_sys_27: 9.74578690e-08 + art_sys_28: 2.42601420e-17 + art_sys_29: 3.45326603e-06 + art_sys_30: -2.17115128e-20 + art_sys_31: -1.19475151e-17 + art_sys_32: 2.92836242e-06 + art_sys_33: -7.68571855e-20 + art_sys_34: 2.67606681e-16 + art_sys_35: 6.21155462e-18 + art_sys_36: -7.81136527e-14 + art_sys_37: -1.29988835e-14 + art_sys_38: 4.36990373e-15 + art_sys_39: 1.43672468e-15 + art_sys_40: -1.23464834e-15 + art_sys_41: 2.74438203e-16 + art_sys_42: -1.13561976e-15 + art_sys_43: -2.64974353e-16 + art_sys_44: -4.64679591e-17 + art_sys_45: 3.49624316e-17 + art_sys_46: -1.80430521e-18 + art_sys_47: -1.47277129e-05 + art_sys_48: 9.62076359e-13 + art_sys_49: -4.02132420e-05 + art_sys_50: 8.61010879e-18 + art_sys_51: 5.88551368e-18 + art_sys_52: -2.91251163e-14 + art_sys_53: -8.95626074e-14 + art_sys_54: -3.67713884e-05 + art_sys_55: -1.25479132e-14 + art_sys_56: 1.21396025e-14 + art_sys_57: 1.35075780e-18 + art_sys_58: -5.02161495e-18 + art_sys_59: 2.61861110e-11 + art_sys_60: 2.95933162e-04 + art_sys_61: 5.52676639e-13 + art_sys_62: 4.39362446e-16 + art_sys_63: -6.40592028e-04 + art_sys_64: 1.19446748e-14 + art_sys_65: -3.60611131e-14 + art_sys_66: -2.07187749e-14 + art_sys_67: -9.08460344e-16 + art_sys_68: -1.27414425e-15 + art_sys_69: -2.85461163e-16 + art_sys_70: 8.09149864e-18 + art_sys_71: 1.14934940e-16 + art_sys_72: 6.05165789e-17 + art_sys_73: -3.48979558e-17 + art_sys_74: 1.23150542e-13 + art_sys_75: 1.77793510e-17 + art_sys_76: 1.05555524e-14 + art_sys_77: 3.33712720e-14 + art_sys_78: 1.05532991e-15 + art_sys_79: 9.19036541e-17 + art_sys_80: 9.94183060e-17 + art_sys_81: -1.39451218e-12 + art_sys_82: 1.01074831e-03 + art_sys_83: 2.70649604e-18 + art_sys_84: 3.05555757e-17 + art_sys_85: 6.97112863e-18 + art_sys_86: -3.59034995e-18 + art_sys_87: -7.91997207e-19 + art_sys_88: 5.82495459e-15 + art_sys_89: -2.63222050e-20 + art_sys_90: -1.10244583e-14 + art_sys_91: 6.13124371e-10 + art_sys_92: 3.16414050e-20 + art_sys_93: -1.41695462e-19 + art_sys_94: -1.06795839e-13 + art_sys_95: 2.84355649e-16 + art_sys_96: -2.03780190e-09 + art_sys_97: 2.05165769e-11 + art_sys_98: 1.10844833e-16 + art_sys_99: -1.48593867e-10 + art_sys_100: -2.08357129e-15 + art_sys_101: 1.59181229e-10 + art_sys_102: 1.67500813e-13 + art_sys_103: 4.57533934e-16 + art_sys_104: -8.96128948e-13 + art_sys_105: -6.13282880e-13 + art_sys_106: -7.44161174e-12 + art_sys_107: -5.64482856e-12 + art_sys_108: -9.96844708e-13 + art_sys_109: 3.86879000e-14 + art_sys_110: -4.34422256e-11 + art_sys_111: 1.17313264e-12 + art_sys_112: 2.34880960e-07 + art_sys_113: -7.59900715e-16 + art_sys_114: 7.52504204e-15 + art_sys_115: -1.71217045e-14 + art_sys_116: 2.81694469e-12 + art_sys_117: 3.76780455e-15 + art_sys_118: 2.39096657e-14 + art_sys_119: 3.26292037e-12 + art_sys_120: 3.09700349e-06 + art_sys_121: -3.33784297e-15 + art_sys_122: -6.67556160e-13 + art_sys_123: -1.81892060e-12 + art_sys_124: 6.62625132e-13 + art_sys_125: 6.27270935e-15 + art_sys_126: 5.06215544e-07 + art_sys_127: 1.92785998e-12 + art_sys_128: 7.66502285e-12 + art_sys_129: 1.54912083e-14 + art_sys_130: -6.80181768e-11 + art_sys_131: -2.15683188e-13 + art_sys_132: -5.78577576e-11 + art_sys_133: 1.50966739e-10 + art_sys_134: 1.01076940e-07 + art_sys_135: 2.12351827e-11 + art_sys_136: 6.37708203e-13 + art_sys_137: -2.35408471e-11 + art_sys_138: 1.22855099e-12 + art_sys_139: 3.54187568e-10 + art_sys_140: -1.32395441e-13 + art_sys_141: 1.41967724e-08 + art_sys_142: -8.08542561e-13 + art_sys_143: -2.50542879e-11 + art_sys_144: 7.95786388e-13 + art_sys_145: 1.74986102e-11 + art_sys_146: 1.85704207e-12 + art_sys_147: -1.20439934e-14 + art_sys_148: -5.29292577e-15 + art_sys_149: 1.83286912e-13 + art_sys_150: 9.05186107e-12 + art_sys_151: 3.10828768e-10 + art_sys_152: 5.58997947e-14 + art_sys_153: 2.45546907e-11 + art_sys_154: 1.39810432e-14 + art_sys_155: -1.11439770e-13 + art_sys_156: 0.0 + art_sys_157: 4.94153059e-13 + art_sys_158: 0.0 + art_sys_159: 4.01819499e-12 + art_sys_160: -2.01558025e-14 + art_sys_161: -5.56123030e-13 + art_sys_162: -5.56123030e-13 + art_sys_163: -4.94422591e-13 + art_sys_164: -4.94422591e-13 + art_sys_165: 5.70663965e-27 + art_sys_166: -1.89840464e-27 + art_sys_167: -0.0 + art_sys_168: 4.36935126e-22 + art_sys_169: 3.86080993e-22 + art_sys_170: 1.31134264e-22 + art_sys_171: 1.14401105e-22 + art_sys_172: -4.29865013e-23 + art_sys_173: -2.09260557e-24 + art_sys_174: -3.07654154e-24 + art_sys_175: -1.85012181e-24 + art_sys_176: 7.85065172e-25 + art_sys_177: -3.54013789e-25 + art_sys_178: -5.05689360e-25 + art_sys_179: 3.59830797e-26 + art_sys_180: 1.06271014e-25 + art_sys_181: -1.67715427e-25 + art_sys_182: 5.49666833e-26 + art_sys_183: -4.84384373e-28 + art_sys_184: -5.06532914e-28 + art_sys_185: 1.48521697e-28 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -60768,190 +60768,190 @@ bins: luminosity_uncertainty: 1.35273840e-03 uncorrelated_uncertainty: 5.20284000e-04 - art_sys_1: 6.51294285e-30 - art_sys_2: -2.00593155e-27 + art_sys_2: -2.00547156e-27 art_sys_3: -1.07503634e-13 - art_sys_4: -1.12701051e-28 + art_sys_4: 2.16699490e-26 art_sys_5: -1.12627300e-12 - art_sys_6: -3.68284970e-27 - art_sys_7: -1.63709996e-26 + art_sys_6: -3.95754344e-27 + art_sys_7: -1.03477776e-26 art_sys_8: -2.32600927e-12 - art_sys_9: 6.46316190e-27 - art_sys_10: 4.01708089e-28 + art_sys_9: -4.32194948e-27 + art_sys_10: 3.80179636e-28 art_sys_11: 4.16398993e-12 - art_sys_12: -1.58201769e-25 - art_sys_13: -1.48118015e-23 - art_sys_14: -8.99942130e-25 - art_sys_15: 2.08243027e-10 - art_sys_16: 5.07910405e-25 - art_sys_17: -9.76277574e-24 + art_sys_12: -3.64183506e-26 + art_sys_13: 1.48126298e-23 + art_sys_14: -8.34631036e-25 + art_sys_15: -2.08243027e-10 + art_sys_16: -6.76564405e-24 + art_sys_17: -9.78061519e-24 art_sys_18: -1.01477764e-09 - art_sys_19: 1.42379742e-23 - art_sys_20: -2.72029519e-23 + art_sys_19: -1.95914993e-23 + art_sys_20: -2.72523124e-23 art_sys_21: -1.36873792e-09 - art_sys_22: 1.37015591e-22 - art_sys_23: -1.59931451e-23 + art_sys_22: 1.36824578e-22 + art_sys_23: -1.56085825e-23 art_sys_24: -1.95408072e-09 - art_sys_25: -1.59219954e-22 - art_sys_26: -3.79277792e-22 - art_sys_27: -7.99780777e-08 - art_sys_28: -5.85129109e-18 - art_sys_29: -2.91311866e-15 - art_sys_30: 6.48565758e-16 - art_sys_31: -4.80226469e-16 - art_sys_32: 1.70801603e-17 - art_sys_33: 6.69747303e-17 - art_sys_34: 5.35416644e-17 - art_sys_35: 1.24782291e-17 - art_sys_36: 3.05300034e-07 - art_sys_37: 1.97908428e-21 - art_sys_38: 5.16729955e-18 - art_sys_39: -3.44229839e-18 - art_sys_40: 6.08448760e-07 - art_sys_41: 2.04687904e-19 - art_sys_42: -3.59993852e-19 - art_sys_43: -2.49766663e-18 - art_sys_44: 6.82185801e-18 - art_sys_45: -5.56014424e-17 - art_sys_46: 2.33415702e-06 - art_sys_47: 1.57978669e-17 - art_sys_48: 1.27934038e-14 - art_sys_49: -9.30094381e-06 - art_sys_50: -9.39669220e-18 - art_sys_51: -1.27193723e-17 - art_sys_52: 2.91229763e-14 - art_sys_53: 9.89220806e-17 - art_sys_54: 1.51883011e-05 - art_sys_55: -1.63571808e-14 - art_sys_56: -2.14916970e-15 - art_sys_57: 9.84757761e-14 - art_sys_58: 7.05203765e-17 - art_sys_59: 1.62801807e-14 - art_sys_60: -1.90370381e-17 - art_sys_61: 6.62990721e-15 - art_sys_62: 8.23303551e-16 - art_sys_63: 2.18180946e-15 - art_sys_64: -1.10352320e-16 - art_sys_65: -4.90349744e-17 - art_sys_66: 9.74688744e-15 - art_sys_67: 8.99479921e-18 - art_sys_68: 5.25305060e-17 - art_sys_69: -6.98200625e-13 - art_sys_70: 4.02932999e-11 - art_sys_71: 2.24316500e-05 - art_sys_72: 1.13261414e-13 - art_sys_73: 8.40823352e-18 - art_sys_74: -7.12663969e-05 - art_sys_75: 2.90735502e-18 - art_sys_76: -2.72051544e-14 - art_sys_77: 3.22500514e-14 - art_sys_78: 9.59560028e-17 - art_sys_79: -5.57505035e-15 - art_sys_80: -2.31665962e-05 - art_sys_81: -4.09770673e-16 - art_sys_82: 2.24596045e-15 - art_sys_83: -2.54396981e-16 - art_sys_84: -1.40596982e-17 - art_sys_85: -9.06337607e-17 - art_sys_86: 9.10174300e-19 - art_sys_87: -3.24207134e-13 - art_sys_88: -9.65756756e-13 - art_sys_89: 1.12122808e-14 - art_sys_90: 3.36386294e-11 - art_sys_91: 2.68444412e-11 - art_sys_92: 1.48400390e-12 - art_sys_93: 1.01807273e-11 - art_sys_94: -9.69480007e-12 - art_sys_95: -2.77387651e-13 - art_sys_96: -4.62661781e-14 - art_sys_97: 7.52108705e-10 - art_sys_98: 1.59206789e-13 - art_sys_99: 1.32954917e-13 - art_sys_100: 3.39276101e-11 - art_sys_101: -1.09751154e-11 - art_sys_102: 6.77529878e-13 - art_sys_103: 5.69830543e-10 - art_sys_104: 2.34695390e-11 - art_sys_105: -2.02662651e-14 - art_sys_106: 4.31656674e-10 - art_sys_107: 1.83787236e-17 - art_sys_108: 3.88604367e-11 - art_sys_109: -1.50044441e-04 - art_sys_110: -2.28819563e-14 - art_sys_111: -2.91957402e-09 - art_sys_112: 3.96729133e-10 - art_sys_113: -1.57860514e-14 - art_sys_114: 1.30287381e-09 - art_sys_115: 3.20561491e-11 - art_sys_116: -1.21928219e-05 - art_sys_117: 8.60664753e-16 - art_sys_118: 2.26297662e-09 - art_sys_119: 4.01404754e-12 - art_sys_120: -1.34136274e-09 - art_sys_121: 5.86573549e-06 - art_sys_122: -8.58156861e-11 - art_sys_123: 2.87979817e-10 - art_sys_124: 5.90617134e-10 - art_sys_125: -2.92732376e-10 - art_sys_126: -7.33900780e-07 - art_sys_127: 1.17584957e-10 - art_sys_128: -2.31835708e-10 - art_sys_129: 1.65873831e-11 - art_sys_130: -9.50390481e-10 - art_sys_131: -9.14326470e-10 - art_sys_132: -2.17802534e-10 - art_sys_133: 1.09725472e-07 - art_sys_134: -3.99108688e-09 - art_sys_135: 2.51697657e-10 - art_sys_136: -3.71109549e-10 - art_sys_137: 9.56942215e-12 - art_sys_138: 9.93485866e-10 - art_sys_139: -2.67508341e-09 - art_sys_140: 5.62022398e-16 - art_sys_141: -1.51274007e-10 - art_sys_142: 0.0 - art_sys_143: 6.90096808e-11 - art_sys_144: 1.68544077e-10 - art_sys_145: 2.41590155e-10 - art_sys_146: -6.67724363e-14 - art_sys_147: 1.27615639e-13 - art_sys_148: 3.00944003e-13 - art_sys_149: 2.27595104e-13 - art_sys_150: 7.84085109e-13 - art_sys_151: 1.35837715e-12 - art_sys_152: -7.28662196e-13 - art_sys_153: -1.41350884e-14 - art_sys_154: 1.09690731e-13 - art_sys_155: 1.86159008e-13 - art_sys_156: 6.01043176e-13 - art_sys_157: 1.30018781e-12 - art_sys_158: 0.0 - art_sys_159: -1.04922871e-10 - art_sys_160: -1.04922871e-10 - art_sys_161: 6.96911529e-12 - art_sys_162: -2.59523818e-24 - art_sys_163: -0.0 - art_sys_164: -1.57537221e-24 - art_sys_165: -1.40114690e-20 - art_sys_166: -2.93617187e-20 - art_sys_167: -9.85849501e-21 - art_sys_168: 7.98234442e-22 - art_sys_169: 2.91879189e-22 - art_sys_170: -7.75070406e-22 - art_sys_171: 5.61026859e-23 - art_sys_172: 5.40796825e-23 - art_sys_173: -1.07435234e-22 - art_sys_174: 1.46755794e-25 - art_sys_175: 5.70946582e-24 - art_sys_176: -6.17834001e-24 - art_sys_177: 2.39130338e-24 - art_sys_178: 3.83947152e-25 - art_sys_179: -1.03878945e-25 - art_sys_180: 4.21754002e-25 - art_sys_181: -7.50477789e-26 - art_sys_182: 4.17384098e-26 - art_sys_183: -3.88396813e-28 - art_sys_184: -4.58689382e-28 - art_sys_185: -8.34986364e-26 + art_sys_25: 1.46156415e-22 + art_sys_26: -2.69067010e-22 + art_sys_27: 7.99780777e-08 + art_sys_28: 2.30696970e-18 + art_sys_29: 3.05300034e-07 + art_sys_30: -1.51989134e-21 + art_sys_31: -2.91300594e-18 + art_sys_32: 6.08448760e-07 + art_sys_33: -2.81562300e-20 + art_sys_34: -4.24083111e-17 + art_sys_35: 1.61219530e-17 + art_sys_36: -2.74498286e-15 + art_sys_37: 1.73557455e-16 + art_sys_38: -2.69301076e-16 + art_sys_39: 7.73101985e-17 + art_sys_40: -4.33438132e-17 + art_sys_41: -1.67352750e-17 + art_sys_42: -2.74423485e-17 + art_sys_43: 6.16862247e-18 + art_sys_44: 6.46023259e-18 + art_sys_45: 1.60442193e-17 + art_sys_46: 2.03897506e-17 + art_sys_47: 2.33415702e-06 + art_sys_48: 2.15052537e-13 + art_sys_49: -9.30094380e-06 + art_sys_50: 8.01279528e-18 + art_sys_51: -1.72386327e-17 + art_sys_52: -5.84905281e-15 + art_sys_53: 3.81106813e-14 + art_sys_54: 1.51883010e-05 + art_sys_55: 1.02328144e-15 + art_sys_56: 2.81837329e-15 + art_sys_57: -1.64298018e-17 + art_sys_58: 6.34149320e-18 + art_sys_59: 5.21854642e-12 + art_sys_60: 2.24317029e-05 + art_sys_61: 1.26635746e-14 + art_sys_62: -6.56344998e-16 + art_sys_63: 7.12664369e-05 + art_sys_64: -3.64419422e-14 + art_sys_65: 4.12182248e-14 + art_sys_66: 3.50316050e-15 + art_sys_67: -4.80000515e-15 + art_sys_68: 2.96455741e-15 + art_sys_69: 5.19879804e-16 + art_sys_70: 1.97327842e-16 + art_sys_71: -6.96395744e-18 + art_sys_72: -4.19596111e-17 + art_sys_73: 4.92378463e-17 + art_sys_74: 2.82492052e-15 + art_sys_75: -2.76655570e-17 + art_sys_76: -4.78497398e-14 + art_sys_77: -1.33935163e-14 + art_sys_78: 8.27537714e-15 + art_sys_79: -9.39475912e-18 + art_sys_80: 2.40413934e-15 + art_sys_81: -3.19448051e-14 + art_sys_82: 2.31666744e-05 + art_sys_83: -1.45710777e-15 + art_sys_84: -5.34844911e-16 + art_sys_85: 7.50299518e-16 + art_sys_86: 1.15429637e-16 + art_sys_87: 1.16791036e-17 + art_sys_88: -3.74324190e-12 + art_sys_89: -1.55834627e-18 + art_sys_90: -2.92692131e-14 + art_sys_91: 3.32080127e-11 + art_sys_92: -2.26109206e-17 + art_sys_93: 1.20411316e-17 + art_sys_94: 1.23632592e-12 + art_sys_95: -5.20980622e-17 + art_sys_96: -4.48140623e-11 + art_sys_97: 4.71939234e-13 + art_sys_98: 2.00134185e-16 + art_sys_99: -3.42689033e-12 + art_sys_100: 1.75952205e-15 + art_sys_101: 3.70493469e-12 + art_sys_102: -1.82588182e-11 + art_sys_103: -3.71391209e-17 + art_sys_104: 2.55571140e-12 + art_sys_105: 4.74362196e-12 + art_sys_106: 5.21734154e-12 + art_sys_107: 2.21872421e-11 + art_sys_108: 7.71094533e-12 + art_sys_109: -2.99116179e-13 + art_sys_110: -2.97739865e-10 + art_sys_111: 1.08910568e-10 + art_sys_112: -1.50043262e-04 + art_sys_113: 3.39943357e-15 + art_sys_114: -5.82259723e-14 + art_sys_115: 2.61814216e-13 + art_sys_116: -2.66742584e-11 + art_sys_117: -2.90248321e-14 + art_sys_118: -1.62050037e-11 + art_sys_119: -5.15914093e-11 + art_sys_120: -1.21923814e-05 + art_sys_121: 2.58593911e-14 + art_sys_122: 5.19873356e-11 + art_sys_123: 1.31501763e-11 + art_sys_124: 2.05760773e-11 + art_sys_125: -4.91667863e-14 + art_sys_126: -5.86571175e-06 + art_sys_127: -1.46730321e-11 + art_sys_128: -2.80562314e-11 + art_sys_129: -1.21316961e-13 + art_sys_130: 5.26252646e-10 + art_sys_131: 1.68903833e-12 + art_sys_132: 2.22135902e-10 + art_sys_133: -1.16798909e-09 + art_sys_134: -7.34175806e-07 + art_sys_135: -2.15456394e-10 + art_sys_136: -4.99384088e-12 + art_sys_137: 1.82295585e-10 + art_sys_138: -9.70807390e-12 + art_sys_139: -2.73989953e-09 + art_sys_140: 1.03997654e-12 + art_sys_141: -1.09820117e-07 + art_sys_142: 1.67033340e-12 + art_sys_143: 1.93749025e-10 + art_sys_144: -6.27430984e-12 + art_sys_145: -1.25433726e-10 + art_sys_146: -1.44221902e-11 + art_sys_147: 8.98101733e-14 + art_sys_148: 3.70785446e-14 + art_sys_149: -2.88948599e-13 + art_sys_150: -7.06430282e-11 + art_sys_151: -2.43333742e-09 + art_sys_152: -4.49307506e-13 + art_sys_153: -1.90916569e-10 + art_sys_154: -5.67769775e-12 + art_sys_155: 8.55932383e-13 + art_sys_156: -0.0 + art_sys_157: -3.52375524e-12 + art_sys_158: -0.0 + art_sys_159: -3.05640081e-11 + art_sys_160: 1.39232717e-13 + art_sys_161: 4.18151555e-12 + art_sys_162: 4.18151555e-12 + art_sys_163: 3.73274501e-12 + art_sys_164: 3.73274501e-12 + art_sys_165: -4.30574316e-26 + art_sys_166: 1.43203548e-26 + art_sys_167: 0.0 + art_sys_168: -3.44412579e-21 + art_sys_169: -3.03478385e-21 + art_sys_170: -6.31460988e-22 + art_sys_171: -9.10987784e-22 + art_sys_172: 3.36420228e-22 + art_sys_173: 1.76124865e-23 + art_sys_174: 2.44655597e-23 + art_sys_175: 1.47833689e-23 + art_sys_176: -6.28732796e-24 + art_sys_177: 2.81251806e-24 + art_sys_178: 4.04244442e-24 + art_sys_179: -2.75247877e-25 + art_sys_180: -8.06798310e-25 + art_sys_181: 1.33822486e-24 + art_sys_182: -4.29569646e-25 + art_sys_183: 3.80034297e-27 + art_sys_184: 3.95015837e-27 + art_sys_185: -1.13710977e-27 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -61059,190 +61059,190 @@ bins: luminosity_uncertainty: 5.28587800e-04 uncorrelated_uncertainty: 2.03303000e-04 - art_sys_1: 4.39655329e-30 - art_sys_2: 1.67893807e-29 + art_sys_2: 1.69172620e-29 art_sys_3: -7.43038884e-15 - art_sys_4: 5.82150297e-28 + art_sys_4: 2.31347648e-27 art_sys_5: 7.53523553e-15 - art_sys_6: 1.92400040e-28 - art_sys_7: -1.45187717e-27 + art_sys_6: 1.93993736e-28 + art_sys_7: -8.43275847e-28 art_sys_8: 7.60416551e-14 - art_sys_9: 4.35884066e-28 - art_sys_10: 7.83035113e-28 + art_sys_9: -4.09018654e-28 + art_sys_10: 7.83665989e-28 art_sys_11: 4.66417533e-13 - art_sys_12: -5.70333100e-27 - art_sys_13: -5.10752341e-25 - art_sys_14: -2.32169107e-26 - art_sys_15: 7.46096033e-12 - art_sys_16: -6.48855641e-26 - art_sys_17: -4.49000174e-25 + art_sys_12: -1.35292033e-27 + art_sys_13: 5.10840289e-25 + art_sys_14: -4.07938828e-26 + art_sys_15: -7.46096033e-12 + art_sys_16: -1.25430670e-25 + art_sys_17: -4.49297101e-25 art_sys_18: -5.35552667e-11 - art_sys_19: 9.00158985e-25 - art_sys_20: -5.54103752e-25 + art_sys_19: -1.05831706e-24 + art_sys_20: -5.53179317e-25 art_sys_21: -6.88444324e-11 - art_sys_22: 5.89085454e-24 - art_sys_23: -2.27300815e-25 + art_sys_22: 5.88618637e-24 + art_sys_23: -2.15968996e-25 art_sys_24: -5.88969421e-11 - art_sys_25: -4.67949106e-24 - art_sys_26: -1.10829796e-23 - art_sys_27: -2.81668088e-09 - art_sys_28: -2.32640019e-21 - art_sys_29: -9.14734295e-16 - art_sys_30: -3.36547830e-16 - art_sys_31: -5.81599104e-16 - art_sys_32: 9.40626931e-17 - art_sys_33: 1.75545021e-17 - art_sys_34: 2.19418151e-17 - art_sys_35: -8.73354270e-18 - art_sys_36: 3.21862835e-10 - art_sys_37: 2.02421633e-23 - art_sys_38: -6.45421728e-18 - art_sys_39: -3.27630224e-20 - art_sys_40: 7.32906809e-09 - art_sys_41: 2.78842218e-21 - art_sys_42: -6.28552591e-18 - art_sys_43: -3.79120461e-19 - art_sys_44: 2.77933929e-17 - art_sys_45: -1.03326445e-17 - art_sys_46: 3.55230992e-07 - art_sys_47: 3.01789591e-17 - art_sys_48: -6.11835260e-16 + art_sys_25: 4.27820490e-24 + art_sys_26: -9.19039658e-24 + art_sys_27: 2.81668088e-09 + art_sys_28: 6.27326447e-21 + art_sys_29: 3.21862835e-10 + art_sys_30: 1.78817872e-23 + art_sys_31: -4.37891781e-20 + art_sys_32: 7.32906809e-09 + art_sys_33: -6.59095680e-22 + art_sys_34: -6.45451937e-18 + art_sys_35: 5.82879776e-19 + art_sys_36: 2.98419967e-15 + art_sys_37: 8.01585139e-16 + art_sys_38: -1.94657180e-16 + art_sys_39: -5.91560731e-17 + art_sys_40: 3.97053561e-17 + art_sys_41: -5.45838262e-18 + art_sys_42: 2.94657238e-17 + art_sys_43: 3.80807890e-18 + art_sys_44: 3.09298997e-19 + art_sys_45: -3.43018346e-17 + art_sys_46: -4.44292516e-17 + art_sys_47: 3.55230992e-07 + art_sys_48: -1.08999713e-14 art_sys_49: 4.45152052e-07 - art_sys_50: -1.49733761e-17 - art_sys_51: -3.24440585e-17 - art_sys_52: 2.20259807e-15 - art_sys_53: 4.56209099e-17 + art_sys_50: -2.30485322e-17 + art_sys_51: 3.66597587e-17 + art_sys_52: 3.52158770e-16 + art_sys_53: 2.85434040e-15 art_sys_54: 1.15708906e-06 - art_sys_55: -4.25579256e-16 - art_sys_56: 1.04026721e-16 - art_sys_57: 1.08888533e-14 - art_sys_58: 9.10927933e-15 - art_sys_59: 1.52989686e-15 - art_sys_60: -3.69016656e-17 - art_sys_61: 1.31041915e-15 - art_sys_62: 5.61997158e-16 - art_sys_63: 8.23803725e-17 - art_sys_64: 4.02193464e-16 - art_sys_65: -4.37488704e-16 - art_sys_66: -4.76230500e-15 - art_sys_67: 3.18074074e-17 - art_sys_68: -8.45261360e-17 - art_sys_69: 1.21147690e-12 - art_sys_70: -2.79350626e-12 - art_sys_71: -9.91340087e-06 - art_sys_72: -4.99024734e-14 - art_sys_73: -1.46151782e-17 - art_sys_74: -1.82345364e-05 - art_sys_75: -4.52920903e-17 - art_sys_76: -5.80096367e-14 - art_sys_77: 2.49869765e-14 - art_sys_78: -8.36886933e-15 - art_sys_79: 9.14443288e-15 - art_sys_80: 3.79755176e-05 - art_sys_81: -8.04612230e-16 - art_sys_82: 9.83168477e-16 - art_sys_83: -2.94974098e-16 - art_sys_84: 2.27588600e-17 - art_sys_85: 2.20547702e-16 - art_sys_86: 2.46837574e-16 - art_sys_87: -4.23936853e-13 - art_sys_88: 1.72021180e-12 - art_sys_89: -1.75917062e-13 - art_sys_90: 1.07999436e-10 - art_sys_91: -2.78737821e-11 - art_sys_92: 3.07145139e-13 - art_sys_93: -1.66889705e-11 - art_sys_94: -1.74484773e-12 - art_sys_95: 6.06976063e-13 - art_sys_96: 1.93368365e-13 - art_sys_97: 1.26355227e-10 - art_sys_98: -7.22702084e-13 - art_sys_99: -2.17726085e-13 - art_sys_100: 8.73658562e-12 - art_sys_101: 2.42471955e-13 - art_sys_102: -2.45610561e-12 - art_sys_103: -4.04506721e-09 - art_sys_104: 6.83239599e-13 - art_sys_105: 5.41287175e-14 - art_sys_106: 5.71284384e-11 - art_sys_107: -5.20103687e-17 - art_sys_108: -2.80301385e-10 - art_sys_109: -2.50606173e-05 - art_sys_110: 6.69750737e-14 - art_sys_111: -4.80929747e-10 - art_sys_112: -1.71384019e-09 - art_sys_113: 4.63316909e-14 - art_sys_114: 1.37588186e-10 - art_sys_115: -1.29167808e-10 - art_sys_116: 8.31348762e-05 - art_sys_117: -2.39405803e-15 - art_sys_118: 3.59707650e-10 - art_sys_119: -1.61729648e-11 - art_sys_120: -3.63637602e-10 - art_sys_121: -1.00692057e-05 - art_sys_122: -8.47595737e-10 - art_sys_123: -1.04572689e-09 - art_sys_124: -3.85114811e-09 - art_sys_125: 1.62894580e-09 - art_sys_126: 2.93485455e-06 - art_sys_127: -2.70093704e-10 - art_sys_128: 8.36246138e-10 - art_sys_129: -5.28761048e-11 - art_sys_130: 3.43594164e-09 - art_sys_131: 3.32086043e-09 - art_sys_132: 9.58661886e-10 - art_sys_133: -3.97872112e-07 - art_sys_134: 1.44992827e-08 - art_sys_135: -1.05387819e-09 - art_sys_136: 1.25955529e-09 - art_sys_137: -7.99908075e-11 - art_sys_138: -2.75947141e-09 - art_sys_139: 7.73400182e-09 - art_sys_140: 9.66002116e-17 - art_sys_141: 2.68439708e-10 - art_sys_142: -0.0 - art_sys_143: -2.49563844e-10 - art_sys_144: -4.66415776e-10 - art_sys_145: -5.86537808e-10 - art_sys_146: 1.88287902e-13 - art_sys_147: -3.59204672e-13 - art_sys_148: -9.54377725e-13 - art_sys_149: -6.62148672e-13 - art_sys_150: -2.13356614e-12 - art_sys_151: -4.33959649e-12 - art_sys_152: 2.66443399e-12 - art_sys_153: 5.20373072e-14 - art_sys_154: -4.36736876e-13 - art_sys_155: -3.60800257e-13 - art_sys_156: -1.33781346e-12 - art_sys_157: -3.68854876e-12 - art_sys_158: -0.0 - art_sys_159: 3.38275430e-10 - art_sys_160: 3.38275430e-10 - art_sys_161: -2.22547047e-11 - art_sys_162: 8.29335289e-24 - art_sys_163: 0.0 - art_sys_164: 5.03635854e-24 - art_sys_165: 3.88093092e-20 - art_sys_166: 8.31046224e-20 - art_sys_167: 2.76102562e-20 - art_sys_168: -2.60889272e-21 - art_sys_169: -9.87109506e-22 - art_sys_170: 2.54532885e-21 - art_sys_171: -1.58989282e-22 - art_sys_172: -1.66645251e-22 - art_sys_173: 3.49519395e-22 - art_sys_174: -2.73796380e-25 - art_sys_175: -1.67929729e-23 - art_sys_176: 1.71592317e-23 - art_sys_177: -7.38465313e-24 - art_sys_178: -1.29284649e-24 - art_sys_179: -6.86916281e-26 - art_sys_180: -1.56687063e-24 - art_sys_181: 2.11994032e-25 - art_sys_182: -1.22022885e-25 - art_sys_183: 1.64316935e-27 - art_sys_184: 1.66353692e-27 - art_sys_185: 2.66827196e-25 + art_sys_55: 4.11327060e-16 + art_sys_56: -1.34539181e-16 + art_sys_57: 5.61896608e-17 + art_sys_58: -2.00473654e-17 + art_sys_59: -9.53604635e-13 + art_sys_60: -9.91338615e-06 + art_sys_61: -2.07487048e-14 + art_sys_62: -3.04719751e-17 + art_sys_63: 1.82345547e-05 + art_sys_64: 6.92085807e-14 + art_sys_65: 4.38478046e-15 + art_sys_66: -2.25276699e-15 + art_sys_67: 4.66142674e-15 + art_sys_68: 1.30601670e-16 + art_sys_69: 5.07678139e-16 + art_sys_70: 5.20523411e-16 + art_sys_71: 5.76799618e-16 + art_sys_72: -4.92939176e-17 + art_sys_73: -1.12347767e-16 + art_sys_74: -4.64491913e-15 + art_sys_75: 7.29705332e-17 + art_sys_76: -1.83126434e-14 + art_sys_77: -8.17478306e-15 + art_sys_78: -1.48888885e-15 + art_sys_79: 1.46163580e-17 + art_sys_80: 2.29477612e-15 + art_sys_81: 5.23732374e-14 + art_sys_82: -3.79756377e-05 + art_sys_83: -5.47342961e-16 + art_sys_84: 6.97035104e-16 + art_sys_85: 3.59320711e-16 + art_sys_86: -5.63703401e-17 + art_sys_87: -1.42711545e-17 + art_sys_88: -6.26160519e-13 + art_sys_89: -2.57449253e-19 + art_sys_90: -3.11211994e-13 + art_sys_91: -2.43580302e-11 + art_sys_92: -2.23581755e-18 + art_sys_93: -1.51550256e-18 + art_sys_94: -2.12459917e-12 + art_sys_95: 1.30409319e-15 + art_sys_96: 7.64333632e-11 + art_sys_97: -7.70868622e-13 + art_sys_98: -1.88349385e-16 + art_sys_99: 5.58267533e-12 + art_sys_100: -6.51118319e-14 + art_sys_101: -5.98398298e-12 + art_sys_102: 8.12327606e-13 + art_sys_103: -1.45258676e-17 + art_sys_104: 9.31457536e-14 + art_sys_105: -1.72032047e-11 + art_sys_106: 5.89122643e-13 + art_sys_107: -1.51572518e-10 + art_sys_108: -2.79615577e-11 + art_sys_109: 1.09369321e-12 + art_sys_110: -1.26542741e-09 + art_sys_111: 1.54327830e-11 + art_sys_112: -2.50603720e-05 + art_sys_113: 4.52047564e-16 + art_sys_114: 2.09695938e-13 + art_sys_115: 3.95375932e-13 + art_sys_116: 6.63610722e-11 + art_sys_117: 1.13504259e-13 + art_sys_118: -1.17145592e-12 + art_sys_119: 3.57251520e-11 + art_sys_120: 8.31318322e-05 + art_sys_121: -9.00514286e-14 + art_sys_122: -8.29194935e-12 + art_sys_123: -5.29900869e-11 + art_sys_124: 2.22130048e-11 + art_sys_125: 1.29314869e-13 + art_sys_126: 1.00692436e-05 + art_sys_127: 6.89611313e-11 + art_sys_128: 2.08559227e-10 + art_sys_129: 3.46611994e-13 + art_sys_130: -1.90614726e-09 + art_sys_131: -4.82390499e-12 + art_sys_132: -1.55731973e-09 + art_sys_133: 4.24256989e-09 + art_sys_134: 2.93596996e-06 + art_sys_135: 4.54316281e-10 + art_sys_136: 1.41715539e-11 + art_sys_137: -6.51497044e-10 + art_sys_138: 3.74471255e-11 + art_sys_139: 9.93069486e-09 + art_sys_140: -3.12991329e-12 + art_sys_141: 3.98233435e-07 + art_sys_142: -3.09528780e-11 + art_sys_143: -7.02922843e-10 + art_sys_144: 2.11705008e-11 + art_sys_145: 5.12674202e-10 + art_sys_146: 5.21141728e-11 + art_sys_147: -3.79598264e-13 + art_sys_148: -2.12670018e-13 + art_sys_149: 2.96617363e-12 + art_sys_150: 2.34926418e-10 + art_sys_151: 6.85706258e-09 + art_sys_152: 1.01748775e-12 + art_sys_153: 6.26987632e-10 + art_sys_154: -8.08264428e-13 + art_sys_155: -2.64287929e-12 + art_sys_156: 0.0 + art_sys_157: 1.43335215e-11 + art_sys_158: 0.0 + art_sys_159: 1.16357952e-10 + art_sys_160: 4.79434260e-13 + art_sys_161: -1.59070677e-11 + art_sys_162: -1.59070677e-11 + art_sys_163: -1.37525348e-11 + art_sys_164: -1.37525348e-11 + art_sys_165: 1.59510206e-25 + art_sys_166: -5.30680570e-26 + art_sys_167: -0.0 + art_sys_168: 1.02076356e-20 + art_sys_169: 8.63846492e-21 + art_sys_170: 4.93422749e-21 + art_sys_171: 2.30818597e-21 + art_sys_172: -9.45980095e-22 + art_sys_173: -7.93090644e-23 + art_sys_174: -7.60894538e-23 + art_sys_175: -4.68275834e-23 + art_sys_176: 1.99478790e-23 + art_sys_177: -8.63231025e-24 + art_sys_178: -1.28735677e-23 + art_sys_179: 8.56878803e-25 + art_sys_180: 3.03934036e-24 + art_sys_181: -4.10632301e-24 + art_sys_182: 1.21090573e-24 + art_sys_183: -1.02717581e-26 + art_sys_184: -1.38694893e-26 + art_sys_185: 4.30327166e-27 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -61350,190 +61350,190 @@ bins: luminosity_uncertainty: 1.85734640e-04 uncorrelated_uncertainty: 7.14364000e-05 - art_sys_1: 2.41178215e-31 - art_sys_2: 3.71561684e-30 + art_sys_2: 3.72194126e-30 art_sys_3: -2.88475320e-16 - art_sys_4: 4.34761740e-29 + art_sys_4: 1.36967103e-28 art_sys_5: 1.90888401e-15 - art_sys_6: 2.01038809e-29 - art_sys_7: -8.49287376e-29 + art_sys_6: 2.05142113e-29 + art_sys_7: -4.83067439e-29 art_sys_8: 9.02636735e-15 - art_sys_9: 4.15403627e-29 - art_sys_10: 1.69467454e-29 + art_sys_9: -1.04371304e-29 + art_sys_10: 1.70347829e-29 art_sys_11: 2.75748850e-14 - art_sys_12: -2.64704455e-28 - art_sys_13: -3.27304240e-26 - art_sys_14: 4.42391600e-28 - art_sys_15: 4.37573447e-13 - art_sys_16: 1.33725901e-28 - art_sys_17: -1.51371184e-26 + art_sys_12: -1.71424086e-29 + art_sys_13: 3.27356426e-26 + art_sys_14: -3.07619688e-27 + art_sys_15: -4.37573447e-13 + art_sys_16: 1.01312442e-26 + art_sys_17: -1.52008562e-26 art_sys_18: -3.55516846e-13 - art_sys_19: 7.20113829e-27 - art_sys_20: 1.22580586e-25 + art_sys_19: 3.25375588e-27 + art_sys_20: 1.22662967e-25 art_sys_21: -2.27126531e-12 - art_sys_22: -4.31391275e-25 - art_sys_23: 8.82392146e-26 + art_sys_22: -4.31022198e-25 + art_sys_23: 8.76768944e-26 art_sys_24: 3.54881332e-12 - art_sys_25: 4.72580514e-25 - art_sys_26: 1.50134490e-24 - art_sys_27: 5.93497863e-10 - art_sys_28: 1.28711201e-20 - art_sys_29: 1.24372327e-16 - art_sys_30: -4.47389277e-18 - art_sys_31: 4.63888251e-17 - art_sys_32: -1.92733370e-18 - art_sys_33: -2.07532223e-18 - art_sys_34: -2.31976568e-18 - art_sys_35: -2.04285381e-19 - art_sys_36: -7.39742506e-10 - art_sys_37: -5.92120841e-24 - art_sys_38: -1.53366370e-20 - art_sys_39: 2.57354696e-20 - art_sys_40: -4.80459635e-09 - art_sys_41: -1.64706742e-21 - art_sys_42: 4.30921310e-19 - art_sys_43: 1.35710245e-20 - art_sys_44: -1.15069397e-18 - art_sys_45: 2.14290167e-19 - art_sys_46: -1.26122137e-08 - art_sys_47: -1.41147539e-18 - art_sys_48: -2.28490317e-16 - art_sys_49: 1.66135831e-07 - art_sys_50: 8.30380680e-19 - art_sys_51: 1.37629887e-18 - art_sys_52: -4.97240378e-16 - art_sys_53: 1.64366624e-18 + art_sys_25: -3.99355060e-25 + art_sys_26: 1.01320949e-24 + art_sys_27: -5.93497863e-10 + art_sys_28: -6.89617715e-21 + art_sys_29: -7.39742506e-10 + art_sys_30: 2.36726112e-24 + art_sys_31: 2.44487820e-20 + art_sys_32: -4.80459635e-09 + art_sys_33: 2.52905986e-22 + art_sys_34: 2.29127177e-19 + art_sys_35: -1.73254376e-19 + art_sys_36: -8.98820830e-17 + art_sys_37: -2.77734633e-17 + art_sys_38: 1.64995300e-17 + art_sys_39: -1.04052416e-18 + art_sys_40: -1.18886462e-18 + art_sys_41: 1.58862972e-18 + art_sys_42: -1.48042036e-18 + art_sys_43: -2.67360364e-19 + art_sys_44: -2.81017597e-19 + art_sys_45: 1.76309191e-18 + art_sys_46: 2.43979234e-18 + art_sys_47: -1.26122136e-08 + art_sys_48: -3.87914842e-15 + art_sys_49: 1.66135830e-07 + art_sys_50: 1.28807109e-18 + art_sys_51: -2.12210396e-18 + art_sys_52: 1.08700251e-16 + art_sys_53: -6.50988051e-16 art_sys_54: -2.59308351e-07 - art_sys_55: 2.78393032e-16 - art_sys_56: 3.83647376e-17 - art_sys_57: 1.86900418e-14 - art_sys_58: -2.96258438e-15 - art_sys_59: -1.27855652e-14 - art_sys_60: 1.77126046e-18 - art_sys_61: -2.19312162e-15 - art_sys_62: 8.15423596e-16 - art_sys_63: 1.09981981e-15 - art_sys_64: -1.00458542e-15 - art_sys_65: 1.16966987e-15 - art_sys_66: -1.42770420e-16 - art_sys_67: -1.14515283e-16 - art_sys_68: 2.64780602e-16 - art_sys_69: -4.64187926e-14 - art_sys_70: -1.21469945e-12 - art_sys_71: -3.66353821e-07 - art_sys_72: -1.85295730e-15 - art_sys_73: 3.04452250e-19 - art_sys_74: 2.95153344e-06 - art_sys_75: 2.94668349e-16 - art_sys_76: 8.41995965e-14 - art_sys_77: 2.71752317e-14 - art_sys_78: -2.96689846e-15 - art_sys_79: -2.09365625e-16 - art_sys_80: -1.41979359e-06 - art_sys_81: -1.32223222e-15 - art_sys_82: -1.31489782e-15 - art_sys_83: 4.40563280e-16 - art_sys_84: -1.15505009e-16 - art_sys_85: -1.67404575e-16 - art_sys_86: -3.72631669e-17 - art_sys_87: -5.83650114e-14 - art_sys_88: -8.01846677e-12 - art_sys_89: -4.00289624e-14 - art_sys_90: -6.78480203e-12 - art_sys_91: 7.70442675e-13 - art_sys_92: -1.13562156e-13 - art_sys_93: 6.23957835e-13 - art_sys_94: 7.98230495e-13 - art_sys_95: -2.48208905e-14 - art_sys_96: -2.45372392e-13 - art_sys_97: -6.36568403e-11 - art_sys_98: 3.81336080e-14 - art_sys_99: 8.13825533e-15 - art_sys_100: -2.22308724e-12 - art_sys_101: 5.02065906e-13 - art_sys_102: 5.77318538e-12 - art_sys_103: -9.61136687e-10 - art_sys_104: -1.38744879e-12 - art_sys_105: -3.14943094e-13 - art_sys_106: -3.44118861e-11 - art_sys_107: 2.62954141e-17 - art_sys_108: -9.46903337e-11 - art_sys_109: 1.27216453e-05 - art_sys_110: -3.12460276e-13 - art_sys_111: 2.48566592e-10 - art_sys_112: 2.41020841e-09 - art_sys_113: -2.14675705e-13 - art_sys_114: -1.24490600e-10 - art_sys_115: 2.02697999e-10 - art_sys_116: 1.99190158e-05 - art_sys_117: 1.26399677e-14 - art_sys_118: -1.91587438e-10 - art_sys_119: 2.47815604e-11 - art_sys_120: 6.27221055e-11 - art_sys_121: 4.87432836e-05 - art_sys_122: -2.64490898e-10 - art_sys_123: 2.44107589e-09 - art_sys_124: -1.02999323e-09 - art_sys_125: -2.62157979e-10 - art_sys_126: -4.65843917e-06 - art_sys_127: 1.15541395e-09 - art_sys_128: -2.00629557e-09 - art_sys_129: 1.94857004e-10 - art_sys_130: -8.16861767e-09 - art_sys_131: -7.74464640e-09 - art_sys_132: -1.27163153e-09 - art_sys_133: 9.34236296e-07 - art_sys_134: -3.37808845e-08 - art_sys_135: 1.61397758e-09 - art_sys_136: -3.78872814e-09 - art_sys_137: -8.79413200e-11 - art_sys_138: 1.46260050e-08 - art_sys_139: -3.71579567e-08 - art_sys_140: -4.90750629e-17 - art_sys_141: -3.34942600e-09 - art_sys_142: 0.0 - art_sys_143: 6.83235510e-10 - art_sys_144: 2.51325990e-09 - art_sys_145: 4.18600930e-09 - art_sys_146: -9.62637936e-13 - art_sys_147: 1.84468214e-12 - art_sys_148: 3.59395340e-12 - art_sys_149: 3.13669007e-12 - art_sys_150: 1.18685664e-11 - art_sys_151: 1.60640918e-11 - art_sys_152: -6.06835816e-12 - art_sys_153: -1.16955399e-13 - art_sys_154: 6.80772659e-13 - art_sys_155: 3.82797960e-12 - art_sys_156: 1.13301933e-11 - art_sys_157: 1.86451551e-11 - art_sys_158: 0.0 - art_sys_159: -1.21113135e-09 - art_sys_160: -1.21113135e-09 - art_sys_161: 8.22967865e-11 - art_sys_162: -3.05942273e-23 - art_sys_163: -0.0 - art_sys_164: -1.85536109e-23 - art_sys_165: -2.04051996e-19 - art_sys_166: -4.21814498e-19 - art_sys_167: -1.43816864e-19 - art_sys_168: 9.11378368e-21 - art_sys_169: 3.14892040e-21 - art_sys_170: -8.99288583e-21 - art_sys_171: 7.97031877e-22 - art_sys_172: 6.86185544e-22 - art_sys_173: -1.24150365e-21 - art_sys_174: 3.14770562e-24 - art_sys_175: 7.77419790e-23 - art_sys_176: -9.08063561e-23 - art_sys_177: 3.02441359e-23 - art_sys_178: 4.14968038e-24 - art_sys_179: -3.88492913e-24 - art_sys_180: 3.60907147e-24 - art_sys_181: -1.07981632e-24 - art_sys_182: 5.73262769e-25 - art_sys_183: -1.45648038e-27 - art_sys_184: -3.94031651e-27 - art_sys_185: -9.86856350e-25 + art_sys_55: -1.87672086e-17 + art_sys_56: -5.02427535e-17 + art_sys_57: -3.16320008e-18 + art_sys_58: 1.12652984e-18 + art_sys_59: -1.35382274e-13 + art_sys_60: -3.66356093e-07 + art_sys_61: 7.75452249e-16 + art_sys_62: 1.17098419e-17 + art_sys_63: -2.95153553e-06 + art_sys_64: 3.32788689e-14 + art_sys_65: -3.12881629e-15 + art_sys_66: 1.58418130e-14 + art_sys_67: -1.64970944e-15 + art_sys_68: 1.35888728e-15 + art_sys_69: -1.04560325e-15 + art_sys_70: -1.50342407e-15 + art_sys_71: -2.22789734e-15 + art_sys_72: 2.44032706e-16 + art_sys_73: 3.54775609e-16 + art_sys_74: 1.73945668e-16 + art_sys_75: -3.91503010e-16 + art_sys_76: -1.05756823e-13 + art_sys_77: -9.05117850e-15 + art_sys_78: -5.79292989e-15 + art_sys_79: -1.58141079e-16 + art_sys_80: -2.44579687e-15 + art_sys_81: -1.78788510e-15 + art_sys_82: 1.41979795e-06 + art_sys_83: 6.38251514e-16 + art_sys_84: -3.24857883e-16 + art_sys_85: 3.26680614e-16 + art_sys_86: 1.01441602e-16 + art_sys_87: 1.12980041e-16 + art_sys_88: 3.17213152e-13 + art_sys_89: -9.46224332e-18 + art_sys_90: -6.54506037e-14 + art_sys_91: 4.07918750e-13 + art_sys_92: 1.69267707e-17 + art_sys_93: -3.95684666e-18 + art_sys_94: 1.02829133e-11 + art_sys_95: 2.96870637e-16 + art_sys_96: -2.90731685e-12 + art_sys_97: 2.87977518e-14 + art_sys_98: -5.70279821e-17 + art_sys_99: -2.08001337e-13 + art_sys_100: -1.38156113e-14 + art_sys_101: 2.21858087e-13 + art_sys_102: 2.74896017e-12 + art_sys_103: 1.21279472e-18 + art_sys_104: -1.23308214e-13 + art_sys_105: 4.03723536e-11 + art_sys_106: -3.30514240e-13 + art_sys_107: -3.71059912e-11 + art_sys_108: 6.56471248e-11 + art_sys_109: -2.48056700e-12 + art_sys_110: -2.57863791e-10 + art_sys_111: -8.71850468e-12 + art_sys_112: 1.27215547e-05 + art_sys_113: -2.47644035e-16 + art_sys_114: -5.06263769e-13 + art_sys_115: -4.05400443e-14 + art_sys_116: -1.98068866e-10 + art_sys_117: -1.86736306e-13 + art_sys_118: 1.35040218e-12 + art_sys_119: -4.74168891e-10 + art_sys_120: 1.99180926e-05 + art_sys_121: 2.47290983e-13 + art_sys_122: -7.60758833e-12 + art_sys_123: 8.30867937e-11 + art_sys_124: -1.06833534e-11 + art_sys_125: -7.76454148e-13 + art_sys_126: -4.87430395e-05 + art_sys_127: -9.62278974e-12 + art_sys_128: 9.64705343e-11 + art_sys_129: -1.71605439e-12 + art_sys_130: 4.49528801e-09 + art_sys_131: 2.39047625e-11 + art_sys_132: -4.48571340e-10 + art_sys_133: -9.88794434e-09 + art_sys_134: -4.66017339e-06 + art_sys_135: -1.64012828e-09 + art_sys_136: -7.13317523e-11 + art_sys_137: 1.62270496e-09 + art_sys_138: -6.95612330e-11 + art_sys_139: -2.33608348e-08 + art_sys_140: 1.36065018e-11 + art_sys_141: -9.34910256e-07 + art_sys_142: -8.21490812e-12 + art_sys_143: 1.64636360e-09 + art_sys_144: -6.59146890e-11 + art_sys_145: -7.86076141e-10 + art_sys_146: -1.24785817e-10 + art_sys_147: 3.44414991e-13 + art_sys_148: -2.83340503e-13 + art_sys_149: -3.15906874e-11 + art_sys_150: -7.57926223e-10 + art_sys_151: -3.51025196e-08 + art_sys_152: -8.38041411e-12 + art_sys_153: -2.10321818e-09 + art_sys_154: 5.12501726e-13 + art_sys_155: 1.05290103e-11 + art_sys_156: -0.0 + art_sys_157: -8.83378535e-12 + art_sys_158: -0.0 + art_sys_159: -2.15678766e-10 + art_sys_160: 8.26436646e-12 + art_sys_161: 2.93819969e-11 + art_sys_162: 2.93819969e-11 + art_sys_163: 2.93856243e-11 + art_sys_164: 2.93856243e-11 + art_sys_165: -3.32818440e-25 + art_sys_166: 1.10549155e-25 + art_sys_167: 0.0 + art_sys_168: -5.22760812e-20 + art_sys_169: -4.35552938e-20 + art_sys_170: -2.86873578e-22 + art_sys_171: -1.25365761e-20 + art_sys_172: 4.87517530e-21 + art_sys_173: 6.59799940e-23 + art_sys_174: 3.05391340e-22 + art_sys_175: 1.79105810e-22 + art_sys_176: -7.60855451e-23 + art_sys_177: 3.59061245e-23 + art_sys_178: 4.84990832e-23 + art_sys_179: -3.32440165e-24 + art_sys_180: -5.91139853e-24 + art_sys_181: 1.71478053e-23 + art_sys_182: -6.18555568e-24 + art_sys_183: 5.79666962e-26 + art_sys_184: 3.72059863e-26 + art_sys_185: -8.27324524e-27 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -61641,190 +61641,190 @@ bins: luminosity_uncertainty: 6.05758400e-05 uncorrelated_uncertainty: 2.32984000e-05 - art_sys_1: 6.32793146e-33 - art_sys_2: 1.50586617e-31 + art_sys_2: 1.50683304e-31 art_sys_3: -6.78656170e-18 - art_sys_4: 1.44090567e-30 + art_sys_4: 3.75966114e-30 art_sys_5: 7.62202025e-17 - art_sys_6: 7.77622421e-31 - art_sys_7: -1.94905091e-30 + art_sys_6: 7.94234348e-31 + art_sys_7: -1.06995054e-30 art_sys_8: 3.55099461e-16 - art_sys_9: 1.06317275e-30 - art_sys_10: -1.19034912e-30 + art_sys_9: -3.19515145e-31 + art_sys_10: -1.18676235e-30 art_sys_11: 7.42269415e-16 - art_sys_12: -4.69062118e-30 - art_sys_13: -8.59996687e-28 - art_sys_14: 1.10638541e-28 - art_sys_15: 1.01999331e-14 - art_sys_16: 1.52981907e-29 - art_sys_17: 1.14548046e-27 + art_sys_12: 2.61815180e-30 + art_sys_13: 8.60137436e-28 + art_sys_14: 1.72247175e-28 + art_sys_15: -1.01999331e-14 + art_sys_16: -2.11035058e-28 + art_sys_17: 1.14114762e-27 art_sys_18: 1.64293548e-13 - art_sys_19: -3.59602868e-27 - art_sys_20: -4.82582852e-27 + art_sys_19: 3.30942504e-27 + art_sys_20: -4.83104666e-27 art_sys_21: 2.40254580e-13 - art_sys_22: -4.44924577e-26 - art_sys_23: -4.07275348e-27 + art_sys_22: -4.45069951e-26 + art_sys_23: -4.04810952e-27 art_sys_24: -8.79634453e-14 - art_sys_25: 4.16630956e-26 - art_sys_26: 1.08945754e-25 - art_sys_27: 5.53979338e-11 - art_sys_28: -1.12123742e-21 - art_sys_29: 1.96781606e-17 - art_sys_30: 1.19232499e-17 - art_sys_31: 1.49615669e-17 - art_sys_32: -1.06183362e-18 - art_sys_33: -1.98650953e-19 - art_sys_34: -9.13249771e-20 - art_sys_35: -4.96047344e-20 - art_sys_36: 4.94697152e-11 - art_sys_37: 5.00373775e-26 - art_sys_38: 1.53037747e-19 - art_sys_39: 1.51098223e-21 - art_sys_40: -3.05747034e-10 - art_sys_41: -1.08816949e-22 - art_sys_42: 2.23478370e-19 - art_sys_43: 3.77568098e-21 - art_sys_44: -5.69671832e-19 - art_sys_45: 9.27566859e-20 - art_sys_46: -3.52969142e-09 - art_sys_47: -1.12165344e-18 - art_sys_48: -1.13978051e-17 - art_sys_49: 8.28522729e-09 - art_sys_50: 5.74396589e-19 - art_sys_51: 9.40835515e-19 - art_sys_52: -5.92761885e-17 - art_sys_53: -2.13164378e-19 + art_sys_25: -3.65490643e-26 + art_sys_26: 8.49270706e-26 + art_sys_27: -5.53979338e-11 + art_sys_28: 2.00725159e-22 + art_sys_29: 4.94697152e-11 + art_sys_30: -5.66056999e-25 + art_sys_31: 1.68254197e-21 + art_sys_32: -3.05747034e-10 + art_sys_33: 2.00645462e-23 + art_sys_34: 6.41318627e-20 + art_sys_35: -1.57034849e-20 + art_sys_36: -6.12084469e-17 + art_sys_37: -1.17283649e-17 + art_sys_38: 4.26396410e-18 + art_sys_39: 8.83534352e-19 + art_sys_40: -6.36337826e-19 + art_sys_41: 2.05541140e-19 + art_sys_42: -7.92065354e-19 + art_sys_43: -9.13475982e-20 + art_sys_44: -1.07866797e-19 + art_sys_45: 6.24078610e-19 + art_sys_46: 1.07268555e-18 + art_sys_47: -3.52969141e-09 + art_sys_48: -1.89680965e-16 + art_sys_49: 8.28522728e-09 + art_sys_50: 5.60376306e-19 + art_sys_51: -8.67506550e-19 + art_sys_52: 4.95459271e-18 + art_sys_53: -7.73984744e-17 art_sys_54: -3.10230112e-08 - art_sys_55: 2.04469942e-17 - art_sys_56: 1.89481890e-18 - art_sys_57: 5.57739048e-14 - art_sys_58: 4.56839154e-14 - art_sys_59: 1.62681970e-14 - art_sys_60: 1.30258246e-18 - art_sys_61: -1.60117308e-15 - art_sys_62: 3.72149188e-16 - art_sys_63: 5.15207113e-16 - art_sys_64: 7.80392776e-16 - art_sys_65: -1.23745792e-15 - art_sys_66: 6.75707030e-17 - art_sys_67: 1.00362035e-16 - art_sys_68: -2.74236401e-16 - art_sys_69: -2.50143115e-14 - art_sys_70: -1.42217094e-14 - art_sys_71: 1.38015710e-07 - art_sys_72: 6.94306773e-16 - art_sys_73: 5.05731862e-19 - art_sys_74: 4.18374214e-07 - art_sys_75: -1.96444562e-16 - art_sys_76: -2.60253619e-14 - art_sys_77: 8.56864333e-16 - art_sys_78: 1.39297047e-14 - art_sys_79: -2.50377250e-16 - art_sys_80: -7.83448550e-07 - art_sys_81: -2.63045614e-16 - art_sys_82: 1.72637269e-15 - art_sys_83: -7.67392279e-16 - art_sys_84: 6.94472665e-17 - art_sys_85: -5.92012408e-16 - art_sys_86: 3.36395166e-16 - art_sys_87: 2.59122409e-14 - art_sys_88: -1.64864225e-12 - art_sys_89: -2.55601334e-12 - art_sys_90: -2.28009340e-12 - art_sys_91: 5.69884675e-13 - art_sys_92: -1.32361882e-14 - art_sys_93: 3.44299488e-13 - art_sys_94: 6.75617489e-14 - art_sys_95: -1.24900094e-14 - art_sys_96: 1.68861622e-12 - art_sys_97: -4.55833022e-12 - art_sys_98: 1.53157602e-14 - art_sys_99: 4.49171038e-15 - art_sys_100: -4.14660847e-13 - art_sys_101: -4.86802016e-16 - art_sys_102: -2.31840132e-11 - art_sys_103: 2.91716089e-10 - art_sys_104: -2.71569486e-14 - art_sys_105: 1.47867913e-13 - art_sys_106: -1.94587088e-12 - art_sys_107: 1.66321757e-18 - art_sys_108: 1.60492986e-11 - art_sys_109: 8.97181181e-07 - art_sys_110: 3.31236264e-13 - art_sys_111: 1.68171676e-11 - art_sys_112: -1.62773021e-08 - art_sys_113: 2.33491932e-13 - art_sys_114: -1.87965656e-12 - art_sys_115: -1.16224996e-09 - art_sys_116: -5.98036465e-06 - art_sys_117: -7.82412973e-15 - art_sys_118: -1.20349675e-11 - art_sys_119: -1.44017178e-10 - art_sys_120: 1.27378328e-11 - art_sys_121: 1.01982558e-05 - art_sys_122: 4.76469537e-11 - art_sys_123: -9.91737975e-09 - art_sys_124: 1.09796597e-10 - art_sys_125: 1.33919991e-09 - art_sys_126: 2.62369845e-05 - art_sys_127: -4.27966678e-09 - art_sys_128: 7.82709850e-09 - art_sys_129: -3.67071312e-10 - art_sys_130: 3.22301615e-08 - art_sys_131: 3.14491451e-08 - art_sys_132: 8.45337825e-09 - art_sys_133: -3.75660526e-06 - art_sys_134: 1.37447802e-07 - art_sys_135: -9.94289270e-09 - art_sys_136: 1.01476002e-08 - art_sys_137: -7.67311370e-10 - art_sys_138: -9.01594677e-09 - art_sys_139: 3.33997640e-08 - art_sys_140: -5.84928246e-18 - art_sys_141: -2.87050480e-09 - art_sys_142: -0.0 - art_sys_143: -1.85816832e-09 - art_sys_144: -1.47623815e-09 - art_sys_145: 7.74863010e-11 - art_sys_146: 7.03808160e-13 - art_sys_147: -1.33050549e-12 - art_sys_148: -7.49213245e-12 - art_sys_149: -3.17508466e-12 - art_sys_150: -5.80098362e-12 - art_sys_151: -3.68402387e-11 - art_sys_152: 2.65389111e-11 - art_sys_153: 5.88891753e-13 - art_sys_154: -6.00945424e-12 - art_sys_155: 4.95009008e-12 - art_sys_156: 2.81309558e-12 - art_sys_157: -1.63823420e-11 - art_sys_158: -0.0 - art_sys_159: 2.54869338e-09 - art_sys_160: 2.54869338e-09 - art_sys_161: -1.76414083e-10 - art_sys_162: 6.55349302e-23 - art_sys_163: 0.0 - art_sys_164: 3.97557517e-23 - art_sys_165: 1.23231896e-19 - art_sys_166: 3.24806055e-19 - art_sys_167: 9.36975707e-20 - art_sys_168: -2.81424499e-20 - art_sys_169: -1.18764236e-20 - art_sys_170: 2.65448138e-20 - art_sys_171: -6.39339643e-22 - art_sys_172: -1.35015900e-21 - art_sys_173: 3.68597622e-21 - art_sys_174: 2.52778796e-24 - art_sys_175: -9.83043395e-23 - art_sys_176: 5.16898979e-23 - art_sys_177: -6.03773811e-23 - art_sys_178: -1.55655225e-23 - art_sys_179: -1.86922703e-23 - art_sys_180: -2.58318223e-23 - art_sys_181: 8.17828407e-25 - art_sys_182: -6.92616669e-25 - art_sys_183: 1.56104095e-26 - art_sys_184: 1.70084081e-26 - art_sys_185: 2.19335826e-24 + art_sys_55: -7.40566500e-18 + art_sys_56: -2.49774041e-18 + art_sys_57: -1.11719325e-18 + art_sys_58: 3.79570926e-19 + art_sys_59: 8.49012032e-15 + art_sys_60: 1.38015371e-07 + art_sys_61: 4.28113004e-16 + art_sys_62: 1.20291314e-18 + art_sys_63: -4.18374617e-07 + art_sys_64: -1.64477120e-14 + art_sys_65: -1.60489077e-14 + art_sys_66: -2.07809637e-14 + art_sys_67: 1.09066805e-14 + art_sys_68: -1.34219451e-15 + art_sys_69: 3.20596153e-15 + art_sys_70: 2.38772724e-15 + art_sys_71: 3.36622927e-15 + art_sys_72: -1.99243228e-16 + art_sys_73: -2.83615525e-16 + art_sys_74: 9.57140995e-17 + art_sys_75: 2.11945907e-16 + art_sys_76: 3.71272970e-14 + art_sys_77: 6.47651570e-15 + art_sys_78: -2.89709935e-14 + art_sys_79: 3.61701309e-17 + art_sys_80: 1.00363636e-15 + art_sys_81: -1.12217811e-15 + art_sys_82: 7.83451026e-07 + art_sys_83: 1.57860609e-15 + art_sys_84: -5.09306145e-16 + art_sys_85: -3.94282676e-16 + art_sys_86: 5.98464454e-16 + art_sys_87: -1.02642263e-17 + art_sys_88: 2.24400403e-14 + art_sys_89: 7.14375385e-17 + art_sys_90: 2.19312046e-14 + art_sys_91: 4.93676244e-13 + art_sys_92: 3.91053158e-17 + art_sys_93: -9.83349695e-19 + art_sys_94: 2.14950055e-12 + art_sys_95: -9.51800411e-17 + art_sys_96: -1.57772467e-12 + art_sys_97: 1.59025465e-14 + art_sys_98: 1.48612903e-17 + art_sys_99: -1.15063901e-13 + art_sys_100: 4.78780083e-15 + art_sys_101: 1.23617869e-13 + art_sys_102: -1.03486088e-13 + art_sys_103: 2.91530558e-19 + art_sys_104: -2.59876948e-16 + art_sys_105: -1.62402460e-10 + art_sys_106: -1.02294502e-14 + art_sys_107: 1.07004983e-11 + art_sys_108: -2.63994029e-10 + art_sys_109: 1.05053707e-11 + art_sys_110: 8.50135606e-11 + art_sys_111: -5.10129268e-13 + art_sys_112: 8.97170564e-07 + art_sys_113: -1.41966879e-17 + art_sys_114: 1.94947249e-12 + art_sys_115: -2.68105405e-14 + art_sys_116: 2.09453381e-10 + art_sys_117: 1.23890002e-12 + art_sys_118: 8.26453620e-16 + art_sys_119: -9.57319535e-10 + art_sys_120: -5.98018028e-06 + art_sys_121: -7.70367097e-13 + art_sys_122: 9.23590199e-13 + art_sys_123: -4.77460614e-10 + art_sys_124: -3.84394059e-12 + art_sys_125: 2.06955356e-13 + art_sys_126: -1.01965664e-05 + art_sys_127: 9.66980026e-10 + art_sys_128: -7.87096494e-12 + art_sys_129: 1.42101413e-12 + art_sys_130: -1.79647344e-08 + art_sys_131: -1.97068807e-11 + art_sys_132: 1.42006269e-10 + art_sys_133: 4.02495122e-08 + art_sys_134: 2.62470610e-05 + art_sys_135: -1.42507047e-10 + art_sys_136: 5.50823661e-11 + art_sys_137: -5.98056937e-09 + art_sys_138: 4.41377283e-10 + art_sys_139: 9.36759233e-08 + art_sys_140: -1.86887857e-11 + art_sys_141: 3.76038514e-06 + art_sys_142: -4.21742278e-10 + art_sys_143: -6.62606578e-09 + art_sys_144: 1.99255599e-10 + art_sys_145: 4.69197937e-09 + art_sys_146: 5.06669876e-10 + art_sys_147: -3.82789122e-12 + art_sys_148: -2.69534911e-12 + art_sys_149: -2.83475093e-11 + art_sys_150: 1.88174361e-09 + art_sys_151: 2.49681937e-08 + art_sys_152: -1.54655337e-13 + art_sys_153: 4.60336653e-09 + art_sys_154: 2.40095502e-14 + art_sys_155: -1.13814254e-11 + art_sys_156: 0.0 + art_sys_157: 9.51138169e-11 + art_sys_158: 0.0 + art_sys_159: 1.06700918e-09 + art_sys_160: 3.51440702e-11 + art_sys_161: -1.30264600e-10 + art_sys_162: -1.30264600e-10 + art_sys_163: -1.05178348e-10 + art_sys_164: -1.05178348e-10 + art_sys_165: 1.23613232e-24 + art_sys_166: -4.10615022e-25 + art_sys_167: -0.0 + art_sys_168: 1.02620680e-20 + art_sys_169: 3.28755058e-20 + art_sys_170: 5.56195010e-21 + art_sys_171: 7.17093616e-21 + art_sys_172: -3.38304128e-21 + art_sys_173: -1.70593393e-21 + art_sys_174: -6.21384297e-22 + art_sys_175: -4.27551738e-22 + art_sys_176: 1.87531354e-22 + art_sys_177: -6.66339173e-23 + art_sys_178: -1.19841282e-22 + art_sys_179: 3.52853737e-24 + art_sys_180: 2.65439174e-23 + art_sys_181: -3.35274782e-23 + art_sys_182: 4.17592700e-24 + art_sys_183: -2.58530044e-26 + art_sys_184: -1.30075837e-25 + art_sys_185: 4.12512387e-26 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -61932,190 +61932,190 @@ bins: luminosity_uncertainty: 1.80390340e-05 uncorrelated_uncertainty: 6.93809000e-06 - art_sys_1: 5.79376746e-35 - art_sys_2: 1.84327797e-33 + art_sys_2: 1.84419429e-33 art_sys_3: -5.43834264e-20 - art_sys_4: 1.42580907e-32 + art_sys_4: 2.14415227e-32 art_sys_5: 9.15068458e-19 - art_sys_6: 9.16462264e-33 - art_sys_7: -5.37432084e-33 + art_sys_6: 9.39406496e-33 + art_sys_7: -1.08960284e-33 art_sys_8: 4.29876705e-18 - art_sys_9: -5.42776660e-33 - art_sys_10: -4.45082755e-32 + art_sys_9: -6.70914445e-33 + art_sys_10: -4.44687717e-32 art_sys_11: 3.70890994e-18 - art_sys_12: 1.44576323e-31 - art_sys_13: 1.73819772e-29 - art_sys_14: 5.47470898e-30 - art_sys_15: -2.46072258e-16 - art_sys_16: -1.13712569e-29 - art_sys_17: 6.68337913e-29 + art_sys_12: 4.26533547e-32 + art_sys_13: -1.73813635e-29 + art_sys_14: 1.20073841e-29 + art_sys_15: 2.46072258e-16 + art_sys_16: -3.87950937e-29 + art_sys_17: 6.67919119e-29 art_sys_18: 5.07698520e-15 - art_sys_19: -1.23913218e-28 - art_sys_20: -5.87421051e-28 + art_sys_19: 7.42562952e-29 + art_sys_20: -5.88017967e-28 art_sys_21: 1.29888809e-14 - art_sys_22: -3.21969719e-28 - art_sys_23: -4.40819219e-28 + art_sys_22: -3.23893531e-28 + art_sys_23: -4.37681447e-28 art_sys_24: -1.68924371e-14 - art_sys_25: -1.58932112e-28 - art_sys_26: 1.25138745e-28 - art_sys_27: 5.30330745e-13 - art_sys_28: -4.75986008e-23 - art_sys_29: -2.63486652e-19 - art_sys_30: 6.69259590e-20 - art_sys_31: -4.16320716e-20 - art_sys_32: 2.96667701e-21 - art_sys_33: 6.93163772e-21 - art_sys_34: 5.17637827e-21 - art_sys_35: 1.11294475e-21 - art_sys_36: 2.34593246e-12 - art_sys_37: 1.07465078e-26 - art_sys_38: 1.72430755e-21 - art_sys_39: 2.45553148e-24 - art_sys_40: -8.60191006e-13 - art_sys_41: -3.60425185e-25 - art_sys_42: -1.24709127e-22 - art_sys_43: 2.96026487e-23 - art_sys_44: -9.20952399e-22 - art_sys_45: 7.71761932e-22 - art_sys_46: -2.77172445e-11 - art_sys_47: -8.13076515e-22 - art_sys_48: 2.78723702e-20 + art_sys_25: 2.12153458e-28 + art_sys_26: 2.04603746e-28 + art_sys_27: -5.30330745e-13 + art_sys_28: 1.50901353e-23 + art_sys_29: 2.34593246e-12 + art_sys_30: -1.71631908e-26 + art_sys_31: 6.52871941e-24 + art_sys_32: -8.60191006e-13 + art_sys_33: 1.10504829e-25 + art_sys_34: 5.03593877e-22 + art_sys_35: -7.99307816e-23 + art_sys_36: -3.42138267e-19 + art_sys_37: 1.55684493e-20 + art_sys_38: 1.45449132e-20 + art_sys_39: 1.46442677e-20 + art_sys_40: -6.26812951e-21 + art_sys_41: -1.21070194e-21 + art_sys_42: -4.05846345e-21 + art_sys_43: -3.04145547e-22 + art_sys_44: 3.74539623e-22 + art_sys_45: -2.66847984e-21 + art_sys_46: -2.78062277e-21 + art_sys_47: -2.77172445e-11 + art_sys_48: 5.11750869e-19 art_sys_49: -2.02874244e-11 - art_sys_50: -2.54849443e-22 - art_sys_51: 1.28628455e-21 - art_sys_52: -1.10295688e-19 - art_sys_53: -3.38072276e-21 - art_sys_54: -5.95081007e-11 - art_sys_55: -2.52067420e-19 - art_sys_56: -5.01635792e-21 - art_sys_57: -1.21393862e-13 - art_sys_58: 4.08161437e-14 - art_sys_59: -1.52448466e-14 - art_sys_60: 8.23592759e-22 - art_sys_61: -1.00558306e-16 - art_sys_62: 2.07707292e-14 - art_sys_63: 1.02966899e-14 - art_sys_64: -2.76101416e-14 - art_sys_65: 4.28180980e-14 - art_sys_66: 1.94942325e-18 - art_sys_67: -6.38923307e-15 - art_sys_68: 8.41290850e-15 - art_sys_69: -1.00197949e-16 - art_sys_70: 6.08807307e-15 - art_sys_71: 4.35821152e-09 - art_sys_72: 2.19672309e-17 - art_sys_73: 5.14889663e-21 - art_sys_74: -7.75831141e-09 - art_sys_75: 1.03484104e-14 - art_sys_76: -1.68281048e-14 - art_sys_77: -1.38526702e-14 - art_sys_78: 4.00508331e-16 - art_sys_79: 4.82511841e-15 - art_sys_80: -3.28592259e-09 - art_sys_81: -4.99277594e-16 - art_sys_82: -2.69881181e-15 - art_sys_83: -6.13488117e-17 - art_sys_84: -4.73743268e-15 - art_sys_85: -6.00908120e-17 - art_sys_86: 3.52751350e-16 - art_sys_87: 4.91822323e-15 - art_sys_88: 1.65903843e-13 - art_sys_89: -5.90653581e-13 - art_sys_90: 1.96250109e-15 - art_sys_91: 3.53139638e-15 - art_sys_92: 1.31827058e-15 - art_sys_93: 1.44402751e-15 - art_sys_94: -9.96405631e-15 - art_sys_95: -5.24513946e-17 - art_sys_96: 3.18481018e-12 - art_sys_97: 8.14130191e-13 - art_sys_98: -3.13815856e-17 - art_sys_99: 1.88402920e-17 - art_sys_100: 2.30522514e-14 - art_sys_101: -4.45627499e-15 - art_sys_102: 7.76512682e-11 - art_sys_103: 2.25327876e-11 - art_sys_104: 1.49452826e-14 - art_sys_105: -1.20480596e-11 - art_sys_106: 4.28702823e-13 - art_sys_107: -5.35195909e-19 - art_sys_108: 1.97073437e-12 - art_sys_109: -1.62952405e-07 - art_sys_110: -1.06563519e-11 - art_sys_111: -3.19408740e-12 - art_sys_112: -4.12313462e-09 - art_sys_113: -7.28819881e-12 - art_sys_114: 1.75226491e-12 - art_sys_115: -3.00089530e-10 - art_sys_116: -4.65072230e-07 - art_sys_117: 4.63724398e-13 - art_sys_118: 2.42377231e-12 - art_sys_119: -7.73030014e-11 - art_sys_120: -6.06699955e-13 - art_sys_121: -9.98743013e-07 - art_sys_122: 6.51675790e-12 - art_sys_123: 3.21035435e-08 - art_sys_124: -1.26827730e-11 - art_sys_125: 3.95457482e-10 - art_sys_126: 6.86399801e-06 - art_sys_127: -1.26596056e-09 - art_sys_128: -2.86510206e-08 - art_sys_129: 5.55345334e-09 - art_sys_130: -1.13815951e-07 - art_sys_131: -1.01666150e-07 - art_sys_132: 6.55807997e-10 - art_sys_133: 1.25288008e-05 - art_sys_134: -4.41934788e-07 - art_sys_135: 1.07808889e-09 - art_sys_136: -8.56348707e-08 - art_sys_137: -7.78296709e-09 - art_sys_138: 5.37573783e-07 - art_sys_139: -1.29427052e-06 - art_sys_140: -4.87894023e-18 - art_sys_141: -1.58522314e-07 - art_sys_142: 0.0 - art_sys_143: 1.59654518e-08 - art_sys_144: 9.34830692e-08 - art_sys_145: 1.73515342e-07 - art_sys_146: -3.46963985e-11 - art_sys_147: 6.66374722e-11 - art_sys_148: 1.02518897e-10 - art_sys_149: 1.07953705e-10 - art_sys_150: 4.46668627e-10 - art_sys_151: 4.48147601e-10 - art_sys_152: -7.19525152e-11 - art_sys_153: -1.21111197e-12 - art_sys_154: -7.15815969e-12 - art_sys_155: 1.79680315e-10 - art_sys_156: 4.92673155e-10 - art_sys_157: 6.64570247e-10 - art_sys_158: 0.0 - art_sys_159: -3.34575640e-08 - art_sys_160: -3.34575640e-08 - art_sys_161: 2.31946898e-09 - art_sys_162: -8.60862492e-22 - art_sys_163: -0.0 - art_sys_164: -5.21525271e-22 - art_sys_165: -7.46139990e-18 - art_sys_166: -1.51406289e-17 - art_sys_167: -5.24156440e-18 - art_sys_168: 2.31982305e-19 - art_sys_169: 7.00883644e-20 - art_sys_170: -2.35056122e-19 - art_sys_171: 2.89134512e-20 - art_sys_172: 2.09326467e-20 - art_sys_173: -3.22505254e-20 - art_sys_174: 1.47081493e-22 - art_sys_175: 2.61602914e-21 - art_sys_176: -3.34048176e-21 - art_sys_177: 9.18168079e-22 - art_sys_178: 9.32815490e-23 - art_sys_179: -2.37009119e-22 - art_sys_180: 2.80479688e-23 - art_sys_181: -3.88228568e-23 - art_sys_182: 1.94593398e-23 - art_sys_183: 7.32692617e-26 - art_sys_184: -5.20904302e-26 - art_sys_185: -2.76850173e-23 + art_sys_50: -1.44977337e-21 + art_sys_51: 2.34014589e-21 + art_sys_52: -1.77737711e-20 + art_sys_53: -1.47405483e-19 + art_sys_54: -5.95081008e-11 + art_sys_55: -1.25461964e-19 + art_sys_56: 6.37707714e-21 + art_sys_57: 5.10534431e-21 + art_sys_58: -1.92804514e-21 + art_sys_59: 8.57109770e-16 + art_sys_60: 4.35821735e-09 + art_sys_61: 1.79860840e-18 + art_sys_62: 3.61456107e-22 + art_sys_63: 7.75831560e-09 + art_sys_64: -9.36050075e-14 + art_sys_65: -4.56922675e-14 + art_sys_66: 2.47965728e-14 + art_sys_67: -5.11285306e-14 + art_sys_68: 3.10035382e-14 + art_sys_69: -2.53885195e-14 + art_sys_70: -4.88791814e-14 + art_sys_71: -6.89383464e-14 + art_sys_72: 9.32154289e-15 + art_sys_73: 1.16775765e-14 + art_sys_74: 3.98174364e-19 + art_sys_75: -1.47572360e-14 + art_sys_76: -1.07270304e-14 + art_sys_77: -2.25038131e-14 + art_sys_78: 1.26244623e-14 + art_sys_79: -6.56375057e-15 + art_sys_80: -4.09484183e-15 + art_sys_81: 6.65426679e-15 + art_sys_82: 3.28593354e-09 + art_sys_83: 9.51679441e-16 + art_sys_84: 9.24196737e-16 + art_sys_85: -5.23618530e-17 + art_sys_86: 5.55219291e-16 + art_sys_87: 4.86878880e-15 + art_sys_88: -1.99758673e-15 + art_sys_89: -4.45629244e-17 + art_sys_90: 3.66706609e-15 + art_sys_91: 4.17098550e-15 + art_sys_92: 5.73869190e-18 + art_sys_93: 4.89862854e-18 + art_sys_94: -2.09754749e-13 + art_sys_95: -7.04710961e-18 + art_sys_96: -6.40915793e-15 + art_sys_97: 6.67052781e-17 + art_sys_98: 1.20258039e-18 + art_sys_99: -4.94109389e-16 + art_sys_100: 3.31339777e-16 + art_sys_101: 5.19588948e-16 + art_sys_102: -4.77177204e-14 + art_sys_103: 5.16673852e-22 + art_sys_104: 1.05233435e-15 + art_sys_105: 5.40728604e-10 + art_sys_106: 3.28129058e-15 + art_sys_107: 8.47794767e-13 + art_sys_108: 8.80125002e-10 + art_sys_109: -2.96135764e-11 + art_sys_110: 6.20019577e-12 + art_sys_111: 1.08693827e-13 + art_sys_112: -1.62951336e-07 + art_sys_113: 3.01550794e-18 + art_sys_114: -7.37488960e-12 + art_sys_115: 5.37978781e-16 + art_sys_116: 6.86045234e-11 + art_sys_117: 8.39637395e-13 + art_sys_118: -1.71004415e-14 + art_sys_119: -2.04462445e-10 + art_sys_120: -4.65052454e-07 + art_sys_121: 4.82974916e-12 + art_sys_122: 1.32453910e-13 + art_sys_123: -1.29121926e-10 + art_sys_124: 1.83988468e-13 + art_sys_125: -3.02867948e-11 + art_sys_126: 9.99138903e-07 + art_sys_127: 6.24767965e-09 + art_sys_128: -2.51389926e-12 + art_sys_129: -6.07513756e-11 + art_sys_130: 6.10687951e-08 + art_sys_131: 8.46768791e-10 + art_sys_132: 2.14893779e-11 + art_sys_133: -1.29349093e-07 + art_sys_134: 6.86640570e-06 + art_sys_135: 8.06708074e-11 + art_sys_136: -2.54985042e-09 + art_sys_137: 2.56246237e-08 + art_sys_138: 2.04283521e-10 + art_sys_139: -3.15085173e-07 + art_sys_140: 4.41283183e-10 + art_sys_141: -1.25305401e-05 + art_sys_142: 2.61438221e-10 + art_sys_143: 2.19367013e-08 + art_sys_144: -1.51211237e-09 + art_sys_145: 1.32980942e-09 + art_sys_146: -1.75165238e-09 + art_sys_147: -1.69466684e-11 + art_sys_148: -3.51693188e-11 + art_sys_149: -2.41955423e-09 + art_sys_150: -1.86206962e-08 + art_sys_151: -1.26720198e-06 + art_sys_152: -3.59340056e-10 + art_sys_153: -5.46520045e-08 + art_sys_154: -6.90831723e-15 + art_sys_155: 3.29241717e-10 + art_sys_156: -0.0 + art_sys_157: 9.05751709e-10 + art_sys_158: -0.0 + art_sys_159: -7.23965641e-10 + art_sys_160: 5.24745907e-10 + art_sys_161: 1.30807126e-10 + art_sys_162: 1.30807126e-10 + art_sys_163: 3.22209208e-10 + art_sys_164: 3.22209208e-10 + art_sys_165: -3.31382618e-24 + art_sys_166: 1.09489236e-24 + art_sys_167: 0.0 + art_sys_168: -1.98282267e-18 + art_sys_169: -1.56389039e-18 + art_sys_170: -6.92047590e-19 + art_sys_171: -4.77937255e-19 + art_sys_172: 1.76744532e-19 + art_sys_173: -5.14273911e-21 + art_sys_174: 9.14962797e-21 + art_sys_175: 5.10147997e-21 + art_sys_176: -2.15428364e-21 + art_sys_177: 1.10976866e-21 + art_sys_178: 1.36040097e-21 + art_sys_179: -1.02337820e-22 + art_sys_180: -3.55339598e-23 + art_sys_181: 5.28662160e-22 + art_sys_182: -2.23377093e-22 + art_sys_183: 2.19594895e-24 + art_sys_184: 6.80105016e-25 + art_sys_185: -3.90341897e-26 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -62223,190 +62223,190 @@ bins: luminosity_uncertainty: 4.72687800e-06 uncorrelated_uncertainty: 1.81803000e-06 - art_sys_1: 3.40550343e-37 - art_sys_2: 1.50390795e-35 + art_sys_2: 1.50392872e-35 art_sys_3: -2.42608020e-22 - art_sys_4: 1.06094414e-34 + art_sys_4: 5.93673068e-35 art_sys_5: 7.34591117e-21 - art_sys_6: 7.51190950e-35 - art_sys_7: 5.66950510e-35 + art_sys_6: 7.68136991e-35 + art_sys_7: 6.04300534e-35 art_sys_8: 3.53824006e-20 - art_sys_9: 1.70576995e-34 - art_sys_10: -4.53702474e-34 + art_sys_9: 3.27139503e-34 + art_sys_10: -4.53485984e-34 art_sys_11: 3.14896385e-21 - art_sys_12: 6.84092896e-33 - art_sys_13: 5.68445328e-31 - art_sys_14: 1.18788174e-31 - art_sys_15: -7.38817870e-18 - art_sys_16: -8.34643077e-32 - art_sys_17: 1.14255947e-30 + art_sys_12: 3.03577328e-33 + art_sys_13: -5.68447125e-31 + art_sys_14: 2.04786542e-31 + art_sys_15: 7.38817870e-18 + art_sys_16: -8.46113703e-31 + art_sys_17: 1.14285294e-30 art_sys_18: 5.81884913e-17 - art_sys_19: -1.57601979e-30 - art_sys_20: -1.18287274e-29 + art_sys_19: 5.47896537e-31 + art_sys_20: -1.18339404e-29 art_sys_21: 2.12399490e-16 - art_sys_22: 1.06008393e-29 - art_sys_23: -8.72927909e-30 + art_sys_22: 1.05612672e-29 + art_sys_23: -8.65712287e-30 art_sys_24: -3.53426680e-16 - art_sys_25: -1.06483289e-29 - art_sys_26: -2.35058160e-29 - art_sys_27: -9.70077695e-15 - art_sys_28: 3.16929865e-25 - art_sys_29: -2.97722495e-20 - art_sys_30: -1.34169876e-20 - art_sys_31: -1.99779257e-20 - art_sys_32: 2.49114397e-21 - art_sys_33: 6.54614075e-22 - art_sys_34: 6.36945618e-22 - art_sys_35: -2.26230376e-22 - art_sys_36: -1.49974835e-14 - art_sys_37: -2.80174358e-29 - art_sys_38: -2.08048170e-22 - art_sys_39: -1.83761357e-25 - art_sys_40: 4.60748693e-14 - art_sys_41: 1.78918228e-26 - art_sys_42: -2.69716173e-22 - art_sys_43: -2.40467509e-24 - art_sys_44: 4.48703183e-23 - art_sys_45: -6.41550495e-23 - art_sys_46: 2.24998432e-12 - art_sys_47: -6.30318406e-23 - art_sys_48: 1.40982179e-21 + art_sys_25: 9.66393481e-30 + art_sys_26: -2.03195877e-29 + art_sys_27: 9.70077695e-15 + art_sys_28: -8.38399332e-26 + art_sys_29: -1.49974835e-14 + art_sys_30: 1.54499876e-28 + art_sys_31: -2.97488316e-25 + art_sys_32: 4.60748693e-14 + art_sys_33: -4.49463056e-27 + art_sys_34: -4.08822420e-23 + art_sys_35: 4.98261784e-24 + art_sys_36: 8.84080375e-20 + art_sys_37: 1.00861051e-20 + art_sys_38: 2.07115102e-22 + art_sys_39: -9.72070971e-22 + art_sys_40: 1.30305988e-21 + art_sys_41: -7.05372109e-22 + art_sys_42: 9.25029886e-22 + art_sys_43: 1.83104411e-22 + art_sys_44: -2.93652781e-23 + art_sys_45: -2.03905662e-22 + art_sys_46: -3.78327236e-22 + art_sys_47: 2.24998432e-12 + art_sys_48: 2.10716066e-20 art_sys_49: -1.02346331e-12 - art_sys_50: 3.33163279e-24 - art_sys_51: -7.56065219e-23 - art_sys_52: 3.94092369e-20 - art_sys_53: 1.97458749e-22 - art_sys_54: 2.06222110e-11 - art_sys_55: -1.67499901e-20 - art_sys_56: -2.23940630e-22 - art_sys_57: 4.51893421e-14 - art_sys_58: -1.56164887e-14 - art_sys_59: 1.02667914e-14 - art_sys_60: -9.32712650e-23 - art_sys_61: -1.22727172e-14 - art_sys_62: 4.58276353e-14 - art_sys_63: 2.14618883e-14 - art_sys_64: -5.14369652e-14 - art_sys_65: 6.64479070e-14 - art_sys_66: -2.90986772e-20 - art_sys_67: -8.42925000e-15 - art_sys_68: 1.06380111e-14 - art_sys_69: 3.63572422e-17 - art_sys_70: 1.87167530e-16 - art_sys_71: -4.83175198e-11 - art_sys_72: -2.42065277e-19 - art_sys_73: -6.48498173e-23 - art_sys_74: -7.11571173e-10 - art_sys_75: 1.09720545e-14 - art_sys_76: 8.83607454e-14 - art_sys_77: 1.97902029e-14 - art_sys_78: -4.57972540e-15 - art_sys_79: 4.95528517e-15 - art_sys_80: 1.13710531e-09 - art_sys_81: -5.81388346e-16 - art_sys_82: -1.19708007e-17 - art_sys_83: 8.10957147e-16 - art_sys_84: -4.55338702e-15 - art_sys_85: 2.64824590e-16 - art_sys_86: 6.66001113e-16 - art_sys_87: 2.48801401e-15 - art_sys_88: 1.40079593e-14 - art_sys_89: 2.35134863e-13 - art_sys_90: 3.43778504e-15 - art_sys_91: -8.14371466e-16 - art_sys_92: 1.72585005e-16 - art_sys_93: -4.99720018e-16 - art_sys_94: -7.41825751e-16 - art_sys_95: 1.84356907e-17 - art_sys_96: -1.40498352e-12 - art_sys_97: 4.43946556e-14 - art_sys_98: -2.26965448e-17 - art_sys_99: -6.51951047e-18 - art_sys_100: 5.70895711e-15 - art_sys_101: -4.10991149e-17 - art_sys_102: -3.46730631e-11 - art_sys_103: -6.06780947e-12 - art_sys_104: 2.82766876e-16 - art_sys_105: -1.69299184e-11 - art_sys_106: 1.85071299e-14 - art_sys_107: -3.37878685e-20 - art_sys_108: -2.94911536e-13 - art_sys_109: -8.63708715e-09 - art_sys_110: -1.39812953e-11 - art_sys_111: -1.57161587e-13 - art_sys_112: 1.69483937e-09 - art_sys_113: -9.11019429e-12 - art_sys_114: -3.76096227e-14 - art_sys_115: 1.23178897e-10 - art_sys_116: 1.24097330e-07 - art_sys_117: 9.68877506e-13 - art_sys_118: 1.19069265e-13 - art_sys_119: 3.19072673e-11 - art_sys_120: -1.28189266e-13 - art_sys_121: -1.00685327e-07 - art_sys_122: -1.23709139e-12 - art_sys_123: -2.00188501e-08 - art_sys_124: 9.67457364e-12 - art_sys_125: -1.59737500e-10 - art_sys_126: -2.81758093e-06 - art_sys_127: 5.18757718e-10 - art_sys_128: 1.09660323e-08 - art_sys_129: 4.74104491e-09 - art_sys_130: 3.90609703e-08 - art_sys_131: 5.04269896e-08 - art_sys_132: -2.07709701e-10 - art_sys_133: -5.66717866e-06 - art_sys_134: 2.40991640e-07 - art_sys_135: -5.95708493e-10 - art_sys_136: -9.98901737e-08 - art_sys_137: 2.76199873e-09 - art_sys_138: 1.09161867e-06 - art_sys_139: -2.49988866e-06 - art_sys_140: -9.84572348e-18 - art_sys_141: -2.90606574e-07 - art_sys_142: -0.0 - art_sys_143: 2.85775919e-08 - art_sys_144: 1.67154452e-07 - art_sys_145: 3.05149381e-07 - art_sys_146: -6.54543271e-11 - art_sys_147: 1.24592165e-10 - art_sys_148: -1.96254066e-10 - art_sys_149: 1.44834877e-10 - art_sys_150: 9.17912422e-10 - art_sys_151: -1.54803383e-09 - art_sys_152: 3.42952982e-10 - art_sys_153: 2.58954210e-11 - art_sys_154: -3.83117015e-10 - art_sys_155: 1.00661378e-09 - art_sys_156: 6.35509356e-10 - art_sys_157: 6.41578209e-10 - art_sys_158: -0.0 - art_sys_159: 1.20425948e-08 - art_sys_160: 1.20425948e-08 - art_sys_161: -4.41955370e-09 - art_sys_162: 1.55486925e-21 - art_sys_163: 0.0 - art_sys_164: 9.20709302e-22 - art_sys_165: -1.72195710e-17 - art_sys_166: -2.62596569e-17 - art_sys_167: -1.09617349e-17 - art_sys_168: -2.38189374e-18 - art_sys_169: -1.11920288e-18 - art_sys_170: 2.18054688e-18 - art_sys_171: 5.74387116e-20 - art_sys_172: -7.22411682e-20 - art_sys_173: 3.03742139e-19 - art_sys_174: 3.04753125e-22 - art_sys_175: -5.27509530e-22 - art_sys_176: -8.08755060e-21 - art_sys_177: -3.29105661e-21 - art_sys_178: -1.46871793e-21 - art_sys_179: -3.26653017e-21 - art_sys_180: -3.10533757e-21 - art_sys_181: -6.83653786e-23 - art_sys_182: -1.42974162e-24 - art_sys_183: -1.03274733e-24 - art_sys_184: 4.06272904e-25 - art_sys_185: 7.53964686e-23 + art_sys_50: -1.65593992e-22 + art_sys_51: 3.43871241e-22 + art_sys_52: -3.06983424e-22 + art_sys_53: 5.12482774e-20 + art_sys_54: 2.06222109e-11 + art_sys_55: 3.92542656e-21 + art_sys_56: 3.06021349e-22 + art_sys_57: 2.23908647e-22 + art_sys_58: -5.34871763e-23 + art_sys_59: 1.34446691e-17 + art_sys_60: -4.83169417e-11 + art_sys_61: -6.21796212e-19 + art_sys_62: -7.96436245e-22 + art_sys_63: 7.11571821e-10 + art_sys_64: 2.62157914e-14 + art_sys_65: 1.82868608e-14 + art_sys_66: -5.15838084e-14 + art_sys_67: 1.02487170e-14 + art_sys_68: 2.03008415e-14 + art_sys_69: -2.26033125e-14 + art_sys_70: -4.83641099e-14 + art_sys_71: -7.59434427e-14 + art_sys_72: 1.24881219e-14 + art_sys_73: 1.49062477e-14 + art_sys_74: -1.38492445e-19 + art_sys_75: -2.01056461e-14 + art_sys_76: -3.34706883e-14 + art_sys_77: -3.26332482e-14 + art_sys_78: -1.33745058e-14 + art_sys_79: -9.19453013e-15 + art_sys_80: -8.69475866e-16 + art_sys_81: 9.35818271e-15 + art_sys_82: -1.13710890e-09 + art_sys_83: -2.70388857e-16 + art_sys_84: -1.74087087e-17 + art_sys_85: -8.93693537e-17 + art_sys_86: 4.93814622e-16 + art_sys_87: 7.06489973e-15 + art_sys_88: 2.75953750e-15 + art_sys_89: -1.64430742e-17 + art_sys_90: 2.57842334e-15 + art_sys_91: -6.94550700e-16 + art_sys_92: 6.05997698e-17 + art_sys_93: -8.30714994e-18 + art_sys_94: -1.88495631e-14 + art_sys_95: 1.96083422e-18 + art_sys_96: 2.29211942e-15 + art_sys_97: -2.30837141e-17 + art_sys_98: -3.03445154e-19 + art_sys_99: 1.66844482e-16 + art_sys_100: -9.69337189e-17 + art_sys_101: -1.79301834e-16 + art_sys_102: 4.17259400e-15 + art_sys_103: -3.87089230e-22 + art_sys_104: 2.04541846e-17 + art_sys_105: -2.44353820e-10 + art_sys_106: 9.05823344e-17 + art_sys_107: -2.18031492e-13 + art_sys_108: -3.97719801e-10 + art_sys_109: 2.70999501e-11 + art_sys_110: -1.68990179e-12 + art_sys_111: 4.94835255e-15 + art_sys_112: -8.63695390e-09 + art_sys_113: 1.33267933e-19 + art_sys_114: 7.47072475e-13 + art_sys_115: 3.58674538e-16 + art_sys_116: -2.71567319e-11 + art_sys_117: 1.28369219e-11 + art_sys_118: 2.47550464e-16 + art_sys_119: 9.04761602e-11 + art_sys_120: 1.24093659e-07 + art_sys_121: 5.07248420e-12 + art_sys_122: -2.07714864e-14 + art_sys_123: 1.02197563e-11 + art_sys_124: 5.31790453e-14 + art_sys_125: -7.09813257e-11 + art_sys_126: 1.00517175e-07 + art_sys_127: 2.13383685e-08 + art_sys_128: 3.98039573e-13 + art_sys_129: -1.10374017e-10 + art_sys_130: -2.47063656e-08 + art_sys_131: 1.54604640e-09 + art_sys_132: -6.90692678e-12 + art_sys_133: 7.20939524e-08 + art_sys_134: -2.81856874e-06 + art_sys_135: -1.62220645e-11 + art_sys_136: -4.84562040e-09 + art_sys_137: -3.93439921e-09 + art_sys_138: -9.28560266e-11 + art_sys_139: 1.37198466e-07 + art_sys_140: 1.97269778e-10 + art_sys_141: 5.69539858e-06 + art_sys_142: -1.66641221e-10 + art_sys_143: -5.01228866e-09 + art_sys_144: 7.42850601e-09 + art_sys_145: 8.23970957e-10 + art_sys_146: 5.91468676e-09 + art_sys_147: 1.72567723e-10 + art_sys_148: 1.55909444e-10 + art_sys_149: -6.97959671e-09 + art_sys_150: 1.65340142e-09 + art_sys_151: -2.55107046e-06 + art_sys_152: -3.74869065e-11 + art_sys_153: -7.76661921e-08 + art_sys_154: -1.20348642e-16 + art_sys_155: 1.83693140e-09 + art_sys_156: -0.0 + art_sys_157: 1.84070203e-09 + art_sys_158: 0.0 + art_sys_159: -3.32557259e-08 + art_sys_160: 5.01071756e-09 + art_sys_161: 9.07455962e-09 + art_sys_162: 9.07455962e-09 + art_sys_163: 8.12783186e-09 + art_sys_164: 8.12783186e-09 + art_sys_165: -9.33482219e-23 + art_sys_166: 3.13201147e-23 + art_sys_167: 0.0 + art_sys_168: -7.94232669e-18 + art_sys_169: -3.06427518e-18 + art_sys_170: -1.58931340e-18 + art_sys_171: -1.40354330e-18 + art_sys_172: 3.53157649e-19 + art_sys_173: -2.15725489e-19 + art_sys_174: -3.08530803e-20 + art_sys_175: -2.77289341e-20 + art_sys_176: 1.32385073e-20 + art_sys_177: -2.97884521e-21 + art_sys_178: -7.93811570e-21 + art_sys_179: -6.80484047e-22 + art_sys_180: -1.12146321e-21 + art_sys_181: -1.96347385e-21 + art_sys_182: -5.22010596e-22 + art_sys_183: 4.81255784e-24 + art_sys_184: -2.04295435e-24 + art_sys_185: -5.89498138e-25 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -62514,190 +62514,190 @@ bins: luminosity_uncertainty: 1.11805720e-06 uncorrelated_uncertainty: 4.30022000e-07 - art_sys_1: 2.80016365e-40 - art_sys_2: 2.01909076e-38 + art_sys_2: 2.01942071e-38 art_sys_3: -7.36016630e-26 - art_sys_4: 1.89782684e-37 + art_sys_4: 2.59226928e-37 art_sys_5: 9.63938744e-24 - art_sys_6: 1.08268917e-37 - art_sys_7: 1.01417059e-38 + art_sys_6: 1.10364529e-37 + art_sys_7: 5.39032611e-38 art_sys_8: 4.98073687e-23 - art_sys_9: -2.16993282e-37 - art_sys_10: -3.58180463e-37 + art_sys_9: 2.13573526e-38 + art_sys_10: -3.57962678e-37 art_sys_11: 3.78273898e-23 - art_sys_12: 9.99912836e-36 - art_sys_13: 1.07525217e-33 - art_sys_14: 1.04192798e-34 - art_sys_15: -1.36043129e-20 - art_sys_16: -4.37206420e-36 - art_sys_17: 1.83984288e-33 + art_sys_12: 3.14845440e-36 + art_sys_13: -1.07524971e-33 + art_sys_14: 2.95032362e-34 + art_sys_15: 1.36043129e-20 + art_sys_16: -1.74081685e-33 + art_sys_17: 1.84105286e-33 art_sys_18: 6.72360147e-20 - art_sys_19: -2.01377711e-33 - art_sys_20: -1.96986548e-32 + art_sys_19: 3.09737012e-34 + art_sys_20: -1.97085406e-32 art_sys_21: 3.22912371e-19 - art_sys_22: 3.54209105e-32 - art_sys_23: -1.44620852e-32 + art_sys_22: 3.53514295e-32 + art_sys_23: -1.43320031e-32 art_sys_24: -5.82107845e-19 - art_sys_25: -8.02580917e-33 - art_sys_26: -3.74961499e-32 - art_sys_27: -3.66490772e-17 - art_sys_28: 3.46505358e-27 - art_sys_29: -3.10297254e-22 - art_sys_30: 1.55217369e-22 - art_sys_31: -2.52447344e-22 - art_sys_32: 7.71984658e-23 - art_sys_33: -8.31106761e-24 - art_sys_34: 2.53936447e-25 - art_sys_35: 5.47351261e-24 - art_sys_36: -1.71862683e-16 - art_sys_37: -7.65536091e-31 - art_sys_38: -3.49764586e-24 - art_sys_39: -2.18570467e-31 - art_sys_40: 6.45815013e-17 - art_sys_41: 3.26119701e-29 - art_sys_42: -6.25767058e-24 - art_sys_43: -1.01391087e-26 - art_sys_44: 2.05363832e-23 - art_sys_45: -2.71564355e-25 - art_sys_46: 9.48425737e-15 - art_sys_47: 1.68042043e-23 - art_sys_48: 7.31007265e-24 + art_sys_25: 4.68724126e-33 + art_sys_26: -4.70756119e-32 + art_sys_27: 3.66490772e-17 + art_sys_28: -1.12751409e-27 + art_sys_29: -1.71862683e-16 + art_sys_30: 1.27847656e-30 + art_sys_31: -6.74306906e-28 + art_sys_32: 6.45815013e-17 + art_sys_33: -1.37769644e-29 + art_sys_34: -1.72330621e-25 + art_sys_35: 1.98691378e-26 + art_sys_36: 1.61188947e-21 + art_sys_37: -4.63077051e-23 + art_sys_38: 8.39121825e-24 + art_sys_39: -4.25591347e-23 + art_sys_40: 5.31021070e-25 + art_sys_41: 1.05582877e-23 + art_sys_42: 1.74546206e-23 + art_sys_43: 1.52452759e-24 + art_sys_44: -3.88079241e-25 + art_sys_45: -2.52194262e-23 + art_sys_46: -4.15836164e-23 + art_sys_47: 9.48425737e-15 + art_sys_48: 1.12133431e-22 art_sys_49: -5.30832819e-15 - art_sys_50: -7.79233340e-24 - art_sys_51: -2.17813620e-23 - art_sys_52: 2.01500319e-22 - art_sys_53: 7.61091477e-25 + art_sys_50: -2.01153745e-23 + art_sys_51: 3.36005868e-23 + art_sys_52: -1.90286904e-24 + art_sys_53: 2.62518293e-22 art_sys_54: 1.05610528e-13 - art_sys_55: -5.81840608e-23 - art_sys_56: -1.11961935e-24 - art_sys_57: 1.95218609e-15 - art_sys_58: -3.36221784e-15 - art_sys_59: 3.36405439e-15 - art_sys_60: -2.73300470e-23 - art_sys_61: 1.09033403e-13 - art_sys_62: -3.74412678e-14 - art_sys_63: -1.24955122e-14 - art_sys_64: -1.49364982e-15 - art_sys_65: 6.19026153e-14 - art_sys_66: -3.50215149e-22 - art_sys_67: -1.64323530e-14 - art_sys_68: 2.34268696e-14 - art_sys_69: 6.49216106e-19 - art_sys_70: 1.71301078e-18 - art_sys_71: -6.48091008e-13 - art_sys_72: -3.25339826e-21 - art_sys_73: 4.22157016e-23 - art_sys_74: -6.41993557e-12 - art_sys_75: 3.85184487e-14 - art_sys_76: -4.88505721e-14 - art_sys_77: 2.05797329e-14 - art_sys_78: -3.92565202e-15 - art_sys_79: 1.88835095e-14 - art_sys_80: 2.04030492e-11 - art_sys_81: -1.52630750e-15 - art_sys_82: -7.62776324e-16 - art_sys_83: 3.28940865e-16 - art_sys_84: -1.99126172e-14 - art_sys_85: -6.71192176e-16 - art_sys_86: 4.00801084e-16 - art_sys_87: 1.55924501e-14 - art_sys_88: -3.17385895e-15 - art_sys_89: 7.15781820e-14 - art_sys_90: 5.40418334e-17 - art_sys_91: -1.53577095e-17 - art_sys_92: 4.81570863e-17 - art_sys_93: -8.96644183e-18 - art_sys_94: -2.05184717e-16 - art_sys_95: 4.20719521e-19 - art_sys_96: -5.13233710e-13 - art_sys_97: 1.22207878e-14 - art_sys_98: -3.56149230e-19 - art_sys_99: -1.16982096e-19 - art_sys_100: 1.57466003e-15 - art_sys_101: -1.58330830e-17 - art_sys_102: -1.24196160e-11 - art_sys_103: -1.72651929e-12 - art_sys_104: 8.91513871e-17 - art_sys_105: -2.11308642e-11 - art_sys_106: 5.20295496e-15 - art_sys_107: -1.07857174e-20 - art_sys_108: -7.65310455e-14 - art_sys_109: -2.37701632e-09 - art_sys_110: -1.65557983e-11 - art_sys_111: -4.32650496e-14 - art_sys_112: 5.66861013e-10 - art_sys_113: -1.23716798e-11 - art_sys_114: -1.09837236e-14 - art_sys_115: 4.12513016e-11 - art_sys_116: 3.52709901e-08 - art_sys_117: -7.34770635e-14 - art_sys_118: 3.35570304e-14 - art_sys_119: 1.29249711e-11 - art_sys_120: -3.26926583e-14 - art_sys_121: -2.45560149e-08 - art_sys_122: -3.58930729e-13 - art_sys_123: -1.11668201e-09 - art_sys_124: 3.51249233e-12 - art_sys_125: -5.37488124e-11 - art_sys_126: -9.44703854e-07 - art_sys_127: 1.75535693e-10 - art_sys_128: 4.77370436e-10 - art_sys_129: 1.96921524e-08 - art_sys_130: 4.14615327e-10 - art_sys_131: 3.89562960e-08 - art_sys_132: -5.21829259e-11 - art_sys_133: -2.08056980e-06 - art_sys_134: 8.02487579e-08 - art_sys_135: -1.87303926e-10 - art_sys_136: -6.23687451e-09 - art_sys_137: 7.11393367e-10 - art_sys_138: 2.28367039e-07 - art_sys_139: -6.93696606e-07 - art_sys_140: -3.40095654e-18 - art_sys_141: -1.95912932e-07 - art_sys_142: 0.0 - art_sys_143: 7.64652151e-09 - art_sys_144: 4.61155976e-08 - art_sys_145: 1.45469853e-07 - art_sys_146: -1.21928722e-11 - art_sys_147: 2.40396553e-11 - art_sys_148: 5.49627631e-11 - art_sys_149: 8.37050027e-11 - art_sys_150: 2.59289196e-10 - art_sys_151: 3.75235301e-09 - art_sys_152: -6.30967592e-10 - art_sys_153: -5.19534108e-11 - art_sys_154: 6.88716908e-10 - art_sys_155: -1.16420252e-09 - art_sys_156: 1.14199768e-09 - art_sys_157: 1.31774163e-09 - art_sys_158: 0.0 - art_sys_159: -3.04489080e-07 - art_sys_160: -3.04489080e-07 - art_sys_161: 2.10700883e-08 - art_sys_162: -7.71300113e-21 - art_sys_163: -0.0 - art_sys_164: -4.64735367e-21 - art_sys_165: 9.80333822e-18 - art_sys_166: -3.58317630e-17 - art_sys_167: 8.93536224e-18 - art_sys_168: 5.40309324e-18 - art_sys_169: 2.47664410e-18 - art_sys_170: -4.96314479e-18 - art_sys_171: -5.46470643e-20 - art_sys_172: 2.34209670e-19 - art_sys_173: -7.22932416e-19 - art_sys_174: 8.35641360e-23 - art_sys_175: 1.17786626e-20 - art_sys_176: 5.81020445e-21 - art_sys_177: 1.05614581e-20 - art_sys_178: 3.44906257e-21 - art_sys_179: 5.40974065e-21 - art_sys_180: 6.32495540e-21 - art_sys_181: -4.37285159e-23 - art_sys_182: 3.63191463e-23 - art_sys_183: 3.02292019e-24 - art_sys_184: -8.22722858e-25 - art_sys_185: -2.59434511e-22 + art_sys_55: 3.34343560e-23 + art_sys_56: 1.53958423e-24 + art_sys_57: 4.64489822e-23 + art_sys_58: -1.68038859e-23 + art_sys_59: 1.08521636e-19 + art_sys_60: -6.48085312e-13 + art_sys_61: -1.11415669e-20 + art_sys_62: -4.88543419e-24 + art_sys_63: 6.41994323e-12 + art_sys_64: 9.66856294e-15 + art_sys_65: 2.65800152e-15 + art_sys_66: -8.55784673e-15 + art_sys_67: 1.53707915e-14 + art_sys_68: 5.80787643e-14 + art_sys_69: -2.35949321e-14 + art_sys_70: -6.45758023e-14 + art_sys_71: -9.10480815e-14 + art_sys_72: 1.29312935e-14 + art_sys_73: 1.73681292e-14 + art_sys_74: -2.50276461e-21 + art_sys_75: -2.14935113e-14 + art_sys_76: -1.11865351e-13 + art_sys_77: 5.42473443e-15 + art_sys_78: -4.13629841e-15 + art_sys_79: -1.04065114e-14 + art_sys_80: 4.87531935e-17 + art_sys_81: 1.03308650e-14 + art_sys_82: -2.04031140e-11 + art_sys_83: 8.09991821e-16 + art_sys_84: -6.76595811e-16 + art_sys_85: -3.58864610e-17 + art_sys_86: 1.06178527e-16 + art_sys_87: 7.77527066e-15 + art_sys_88: 3.28389856e-15 + art_sys_89: -3.35103141e-17 + art_sys_90: 3.19834005e-15 + art_sys_91: -1.38910132e-17 + art_sys_92: -1.03005162e-19 + art_sys_93: 4.05482812e-18 + art_sys_94: -2.70602206e-15 + art_sys_95: 5.56798719e-19 + art_sys_96: 4.09911300e-17 + art_sys_97: -4.14218633e-19 + art_sys_98: -8.58775919e-20 + art_sys_99: 3.00070336e-18 + art_sys_100: -2.74736180e-17 + art_sys_101: -3.14397098e-18 + art_sys_102: 1.22912041e-15 + art_sys_103: -2.36024092e-23 + art_sys_104: 5.51647562e-18 + art_sys_105: -8.98687111e-11 + art_sys_106: 2.52808321e-17 + art_sys_107: -6.16499439e-14 + art_sys_108: -1.46273707e-10 + art_sys_109: 5.28428466e-12 + art_sys_110: -4.76273929e-13 + art_sys_111: 1.37739626e-15 + art_sys_112: -2.37697944e-09 + art_sys_113: 3.74217059e-20 + art_sys_114: -5.22808797e-13 + art_sys_115: 9.70236630e-17 + art_sys_116: -9.11690748e-12 + art_sys_117: 3.23630226e-12 + art_sys_118: 5.38269290e-17 + art_sys_119: 3.02281696e-11 + art_sys_120: 3.52699798e-08 + art_sys_121: 6.23176960e-12 + art_sys_122: -5.86016779e-15 + art_sys_123: 1.56952365e-11 + art_sys_124: 1.42906528e-14 + art_sys_125: -4.85066115e-11 + art_sys_126: 2.44998081e-08 + art_sys_127: 2.82219140e-10 + art_sys_128: 1.25621737e-13 + art_sys_129: -6.57369639e-12 + art_sys_130: -8.49586560e-09 + art_sys_131: 1.39855269e-10 + art_sys_132: -2.21243508e-12 + art_sys_133: 2.74840661e-08 + art_sys_134: -9.45030417e-07 + art_sys_135: -5.65896579e-12 + art_sys_136: -1.15249973e-09 + art_sys_137: 6.97967953e-09 + art_sys_138: -3.15946121e-11 + art_sys_139: 4.87834983e-08 + art_sys_140: 1.81405366e-09 + art_sys_141: 2.08432179e-06 + art_sys_142: -4.79773644e-11 + art_sys_143: -1.08999712e-08 + art_sys_144: -2.55678424e-08 + art_sys_145: -5.55036511e-12 + art_sys_146: -3.37679390e-08 + art_sys_147: -7.56489242e-10 + art_sys_148: -8.13170676e-10 + art_sys_149: -1.37647043e-09 + art_sys_150: -3.39053339e-08 + art_sys_151: -6.90559354e-07 + art_sys_152: -2.49649936e-09 + art_sys_153: -4.46781556e-08 + art_sys_154: -4.66601771e-17 + art_sys_155: -3.44975669e-09 + art_sys_156: -0.0 + art_sys_157: -1.41059786e-08 + art_sys_158: -0.0 + art_sys_159: 9.00556307e-08 + art_sys_160: -8.88521852e-09 + art_sys_161: 1.00787421e-08 + art_sys_162: 1.00787421e-08 + art_sys_163: -1.66554978e-08 + art_sys_164: -1.66554978e-08 + art_sys_165: 1.43080825e-22 + art_sys_166: -4.66205039e-23 + art_sys_167: -0.0 + art_sys_168: 8.21768615e-18 + art_sys_169: 2.75111703e-19 + art_sys_170: -1.28190335e-19 + art_sys_171: 1.17543899e-18 + art_sys_172: 9.53110135e-20 + art_sys_173: 5.13023598e-19 + art_sys_174: 1.31372767e-19 + art_sys_175: 1.02330965e-19 + art_sys_176: -4.83810427e-20 + art_sys_177: 1.45882385e-20 + art_sys_178: 2.87043677e-20 + art_sys_179: 1.37088443e-21 + art_sys_180: 2.65987808e-21 + art_sys_181: 8.53397981e-21 + art_sys_182: 2.54166264e-22 + art_sys_183: 3.42132427e-24 + art_sys_184: 7.34589566e-24 + art_sys_185: 2.73240826e-24 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -62805,190 +62805,190 @@ bins: luminosity_uncertainty: 1.51584160e-07 uncorrelated_uncertainty: 5.83016000e-08 - art_sys_1: 2.28201732e-43 - art_sys_2: 4.85478916e-41 + art_sys_2: 4.85418966e-41 art_sys_3: 3.43944709e-28 - art_sys_4: 5.80037468e-40 + art_sys_4: 1.17557394e-39 art_sys_5: 2.27055212e-26 - art_sys_6: 2.87735437e-40 - art_sys_7: -3.34248315e-40 + art_sys_6: 2.93157855e-40 + art_sys_7: -4.98530278e-41 art_sys_8: 1.28291381e-25 - art_sys_9: 7.94647970e-40 - art_sys_10: -3.63708185e-40 + art_sys_9: 1.63213768e-39 + art_sys_10: -3.63540875e-40 art_sys_11: 1.98909839e-25 - art_sys_12: 4.66502578e-38 - art_sys_13: 4.35487321e-36 - art_sys_14: 5.84981105e-37 - art_sys_15: -5.45226491e-23 - art_sys_16: -7.77419293e-37 - art_sys_17: 7.45854745e-36 + art_sys_12: 1.54554596e-38 + art_sys_13: -4.35485502e-36 + art_sys_14: 1.20884975e-36 + art_sys_15: 5.45226491e-23 + art_sys_16: -5.74983412e-36 + art_sys_17: 7.46391458e-36 art_sys_18: 2.40515012e-22 - art_sys_19: -7.41185178e-36 - art_sys_20: -8.69047740e-35 + art_sys_19: 3.16268128e-37 + art_sys_20: -8.69720216e-35 art_sys_21: 1.42905635e-21 - art_sys_22: 1.17638935e-35 - art_sys_23: -6.41371032e-35 + art_sys_22: 1.15433488e-35 + art_sys_23: -6.36451996e-35 art_sys_24: -2.43294543e-21 - art_sys_25: 2.86740069e-34 - art_sys_26: 1.41635388e-33 - art_sys_27: 4.35941181e-20 - art_sys_28: 1.47276334e-28 - art_sys_29: 9.05437941e-23 - art_sys_30: -7.88925471e-23 - art_sys_31: 6.16486975e-23 - art_sys_32: -2.11443292e-23 - art_sys_33: -1.64995198e-24 - art_sys_34: -3.66970832e-25 - art_sys_35: 2.52137102e-24 - art_sys_36: -7.57745340e-18 - art_sys_37: -3.31598401e-32 - art_sys_38: -5.62359613e-25 - art_sys_39: 1.00270105e-28 - art_sys_40: -2.06788408e-17 - art_sys_41: -7.12163651e-30 - art_sys_42: 1.65078846e-24 - art_sys_43: 2.36244934e-28 - art_sys_44: 2.00195479e-24 - art_sys_45: 4.53119067e-27 - art_sys_46: -2.18389628e-16 - art_sys_47: 3.19905824e-24 - art_sys_48: -5.08875794e-24 + art_sys_25: -2.61272997e-34 + art_sys_26: 1.41159633e-34 + art_sys_27: -4.35941181e-20 + art_sys_28: -5.52100273e-29 + art_sys_29: -7.57745340e-18 + art_sys_30: 5.43659551e-32 + art_sys_31: 1.15722188e-28 + art_sys_32: -2.06788408e-17 + art_sys_33: 1.12223665e-30 + art_sys_34: 3.96861922e-27 + art_sys_35: -2.17971485e-27 + art_sys_36: -4.63672333e-22 + art_sys_37: -4.32157298e-23 + art_sys_38: 5.06183342e-23 + art_sys_39: 4.89320645e-24 + art_sys_40: -3.49025800e-24 + art_sys_41: -5.21443003e-25 + art_sys_42: -6.66262145e-24 + art_sys_43: 6.20577817e-25 + art_sys_44: -6.82635715e-25 + art_sys_45: 8.68520295e-24 + art_sys_46: 1.34950038e-23 + art_sys_47: -2.18389627e-16 + art_sys_48: -8.64750028e-23 art_sys_49: 3.70006330e-15 - art_sys_50: -1.58363588e-24 - art_sys_51: -1.94381119e-24 - art_sys_52: -2.72801414e-23 - art_sys_53: 6.82599545e-26 + art_sys_50: 6.84903792e-24 + art_sys_51: -1.20267966e-23 + art_sys_52: 2.40564126e-24 + art_sys_53: -3.56594063e-23 art_sys_54: -1.42919045e-14 - art_sys_55: 7.70309873e-24 - art_sys_56: 8.37846643e-25 - art_sys_57: -1.04573480e-14 - art_sys_58: 1.17482013e-14 - art_sys_59: 2.23204610e-14 - art_sys_60: -4.40347918e-24 - art_sys_61: 4.46246688e-14 - art_sys_62: -6.95820365e-14 - art_sys_63: -1.96594373e-14 - art_sys_64: 4.38422109e-14 - art_sys_65: -3.03750401e-14 - art_sys_66: 5.91586881e-23 - art_sys_67: -7.51034282e-17 - art_sys_68: 3.86387115e-16 - art_sys_69: -1.87378403e-19 - art_sys_70: -5.00619324e-19 - art_sys_71: 9.27653915e-14 - art_sys_72: 4.64586291e-22 - art_sys_73: -1.99180384e-23 - art_sys_74: 1.58266196e-12 - art_sys_75: 6.96198580e-15 - art_sys_76: -1.71751827e-14 - art_sys_77: 4.01721703e-15 - art_sys_78: -2.73986738e-14 - art_sys_79: 3.68305348e-15 - art_sys_80: -5.89313033e-12 - art_sys_81: 1.20150885e-15 - art_sys_82: 1.23034378e-15 - art_sys_83: 3.48653536e-16 - art_sys_84: -4.52027084e-15 - art_sys_85: 9.73803859e-16 - art_sys_86: 8.06141974e-17 - art_sys_87: 4.28435381e-15 - art_sys_88: -3.17314922e-15 - art_sys_89: -2.92132424e-14 - art_sys_90: -1.52836703e-17 - art_sys_91: 4.46721115e-18 - art_sys_92: -1.68148074e-17 - art_sys_93: 2.58982819e-18 - art_sys_94: 7.20068458e-17 - art_sys_95: -1.25938431e-19 - art_sys_96: 1.74506508e-13 - art_sys_97: -4.30690806e-15 - art_sys_98: 1.05969166e-19 - art_sys_99: 3.37887660e-20 - art_sys_100: -5.48094012e-16 - art_sys_101: 5.72890996e-18 - art_sys_102: 3.81589356e-12 - art_sys_103: 5.96976230e-13 - art_sys_104: -3.19501652e-17 - art_sys_105: 2.91069044e-11 - art_sys_106: -1.83929677e-15 - art_sys_107: 3.79710448e-21 - art_sys_108: 2.63568784e-14 - art_sys_109: 8.38090319e-10 - art_sys_110: 2.36904399e-11 - art_sys_111: 1.52724954e-14 - art_sys_112: -1.96308025e-10 - art_sys_113: 1.64912757e-11 - art_sys_114: 3.66650715e-15 - art_sys_115: -1.42854069e-11 - art_sys_116: -1.21951111e-08 - art_sys_117: -7.66348052e-13 - art_sys_118: -1.18385346e-14 - art_sys_119: -6.72339279e-12 - art_sys_120: 1.13571420e-14 - art_sys_121: 8.67026826e-09 - art_sys_122: 1.23858765e-13 - art_sys_123: -7.69719300e-09 - art_sys_124: -1.21769459e-12 - art_sys_125: 1.86101933e-11 - art_sys_126: 3.27150624e-07 - art_sys_127: -6.06259143e-11 - art_sys_128: 3.10788300e-08 - art_sys_129: 1.40646073e-08 - art_sys_130: -1.30264018e-09 - art_sys_131: 1.61446104e-08 - art_sys_132: 2.28618318e-11 - art_sys_133: 7.17806009e-07 - art_sys_134: -6.59779663e-08 - art_sys_135: -3.48273164e-11 - art_sys_136: 3.72626367e-08 - art_sys_137: 8.99278993e-10 - art_sys_138: -2.60723159e-07 - art_sys_139: 3.33199405e-07 - art_sys_140: 1.65771311e-17 - art_sys_141: 4.44823127e-07 - art_sys_142: -0.0 - art_sys_143: -4.30434054e-08 - art_sys_144: -2.56001684e-07 - art_sys_145: -5.40399788e-07 - art_sys_146: 5.70407781e-11 - art_sys_147: -1.19178835e-10 - art_sys_148: -3.02090777e-09 - art_sys_149: -4.70022873e-10 - art_sys_150: -6.90821503e-11 - art_sys_151: -8.67469699e-09 - art_sys_152: 4.00761334e-10 - art_sys_153: 4.89910786e-11 - art_sys_154: -6.65549429e-10 - art_sys_155: 1.19655846e-09 - art_sys_156: -1.63351236e-09 - art_sys_157: -3.00646561e-09 + art_sys_55: -5.16806436e-24 + art_sys_56: -1.10377028e-24 + art_sys_57: -1.58132989e-23 + art_sys_58: 5.84892617e-24 + art_sys_59: -3.85592525e-20 + art_sys_60: 9.27639415e-14 + art_sys_61: 3.21756796e-21 + art_sys_62: 9.10540218e-25 + art_sys_63: -1.58266401e-12 + art_sys_64: 9.25355488e-16 + art_sys_65: -6.36159145e-15 + art_sys_66: 3.96028516e-14 + art_sys_67: 7.50557629e-14 + art_sys_68: -7.47815717e-14 + art_sys_69: 7.42758190e-14 + art_sys_70: 1.46639056e-13 + art_sys_71: 2.32491137e-13 + art_sys_72: -3.13540816e-14 + art_sys_73: -4.08332081e-14 + art_sys_74: 7.23022291e-22 + art_sys_75: 5.14285707e-14 + art_sys_76: -1.60583590e-15 + art_sys_77: -1.39332078e-14 + art_sys_78: 9.79064625e-15 + art_sys_79: 2.27919082e-14 + art_sys_80: 2.90073680e-15 + art_sys_81: -2.28445825e-14 + art_sys_82: 5.89314904e-12 + art_sys_83: -2.14082327e-17 + art_sys_84: 1.60753433e-16 + art_sys_85: 1.31708704e-16 + art_sys_86: 1.31606741e-17 + art_sys_87: -1.61332974e-14 + art_sys_88: -6.71123276e-15 + art_sys_89: -4.56968043e-17 + art_sys_90: -6.64770468e-15 + art_sys_91: 4.07420715e-18 + art_sys_92: -6.02454173e-17 + art_sys_93: 2.97751614e-17 + art_sys_94: -2.80108355e-15 + art_sys_95: -1.92550146e-19 + art_sys_96: -1.18339565e-17 + art_sys_97: 1.19642890e-19 + art_sys_98: 2.96919499e-20 + art_sys_99: -8.65762172e-19 + art_sys_100: 9.50283108e-18 + art_sys_101: 9.04618061e-19 + art_sys_102: -4.21881363e-16 + art_sys_103: 8.17907173e-24 + art_sys_104: -1.98685844e-18 + art_sys_105: 3.08302880e-11 + art_sys_106: -9.00768246e-18 + art_sys_107: 2.13117251e-14 + art_sys_108: 5.01780432e-11 + art_sys_109: -1.74654448e-11 + art_sys_110: 1.64662004e-13 + art_sys_111: -4.86679781e-16 + art_sys_112: 8.38077439e-10 + art_sys_113: -1.32284267e-20 + art_sys_114: -5.77086454e-12 + art_sys_115: -3.37361106e-17 + art_sys_116: 3.15685341e-12 + art_sys_117: -7.54116590e-13 + art_sys_118: -1.73199677e-17 + art_sys_119: -1.04703174e-11 + art_sys_120: -1.21947626e-08 + art_sys_121: 2.64882015e-11 + art_sys_122: 2.02196099e-15 + art_sys_123: 3.93118530e-11 + art_sys_124: -4.98955513e-15 + art_sys_125: -1.44882045e-10 + art_sys_126: -8.65080208e-09 + art_sys_127: -2.48988521e-08 + art_sys_128: -4.33029735e-14 + art_sys_129: 1.63258841e-10 + art_sys_130: 7.97901843e-09 + art_sys_131: -2.07877369e-09 + art_sys_132: 7.65838424e-13 + art_sys_133: -1.12155709e-08 + art_sys_134: 3.27271355e-07 + art_sys_135: 1.93168972e-12 + art_sys_136: 2.85222957e-09 + art_sys_137: -4.38535368e-08 + art_sys_138: 1.25663744e-11 + art_sys_139: -5.68615937e-09 + art_sys_140: -5.98490326e-10 + art_sys_141: -7.47491873e-07 + art_sys_142: 6.10204259e-11 + art_sys_143: 2.68501200e-08 + art_sys_144: 4.74799297e-09 + art_sys_145: -8.81311314e-10 + art_sys_146: -5.27636718e-08 + art_sys_147: -2.67838562e-11 + art_sys_148: -5.34987443e-11 + art_sys_149: 5.01999760e-10 + art_sys_150: 1.42745792e-07 + art_sys_151: 5.27814579e-08 + art_sys_152: -1.09813875e-10 + art_sys_153: -5.62510871e-08 + art_sys_154: -1.68342575e-17 + art_sys_155: 3.51772380e-11 + art_sys_156: -0.0 + art_sys_157: -1.64292080e-08 art_sys_158: -0.0 - art_sys_159: -2.95570609e-07 - art_sys_160: -2.95570609e-07 - art_sys_161: -1.04812313e-08 - art_sys_162: 3.45754272e-21 - art_sys_163: 0.0 - art_sys_164: 1.97982968e-21 - art_sys_165: 2.13604086e-17 - art_sys_166: -4.47438093e-17 - art_sys_167: 3.18564792e-17 - art_sys_168: -7.34218194e-18 - art_sys_169: -2.98329421e-18 - art_sys_170: 7.34297466e-18 - art_sys_171: -2.38927749e-19 - art_sys_172: -2.66043597e-19 - art_sys_173: 8.88530572e-19 - art_sys_174: -3.82791397e-22 - art_sys_175: -1.62629320e-20 - art_sys_176: 1.16045926e-20 - art_sys_177: -1.17658519e-20 - art_sys_178: -3.32683611e-21 - art_sys_179: -6.09457557e-21 - art_sys_180: -6.93089870e-21 - art_sys_181: 1.64388641e-23 - art_sys_182: -2.50629697e-22 - art_sys_183: -2.99009780e-24 - art_sys_184: 7.79818270e-25 - art_sys_185: 2.90581830e-22 + art_sys_159: -1.00981492e-07 + art_sys_160: 4.66467670e-09 + art_sys_161: 1.15601770e-07 + art_sys_162: 1.15601770e-07 + art_sys_163: 2.42045021e-08 + art_sys_164: 2.42045021e-08 + art_sys_165: -4.27492267e-22 + art_sys_166: 1.47438173e-22 + art_sys_167: 0.0 + art_sys_168: -4.25485089e-18 + art_sys_169: 3.75553033e-18 + art_sys_170: 3.38070959e-19 + art_sys_171: 1.94524620e-19 + art_sys_172: -4.18498283e-20 + art_sys_173: -1.31464204e-19 + art_sys_174: -2.33803256e-20 + art_sys_175: -1.30580718e-20 + art_sys_176: 3.19084889e-21 + art_sys_177: -8.74282931e-22 + art_sys_178: -3.59414933e-21 + art_sys_179: -9.07910951e-23 + art_sys_180: -3.48079085e-21 + art_sys_181: -3.86147180e-22 + art_sys_182: 4.89991839e-22 + art_sys_183: 8.52552604e-24 + art_sys_184: 4.40729725e-25 + art_sys_185: 1.63900309e-25 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -65716,189 +65716,189 @@ bins: uncorrelated_uncertainty: 124.926 - art_sys_1: -1.44127189e+02 art_sys_2: -2.83295881e+01 - art_sys_3: -6.00388467e-14 - art_sys_4: -1.92562729e-14 - art_sys_5: 2.88479314e-14 + art_sys_3: -1.48945737e-13 + art_sys_4: 1.18398710e-14 + art_sys_5: 3.24611039e-14 art_sys_6: 9.53096229e+00 - art_sys_7: -9.35593242e-15 - art_sys_8: -1.67171710e-15 - art_sys_9: 7.72738737e-15 + art_sys_7: -1.90736856e-14 + art_sys_8: 2.46091523e-14 + art_sys_9: 7.73814972e-15 art_sys_10: -1.33686269e+00 - art_sys_11: -7.47379213e-15 - art_sys_12: -1.11679116e-15 - art_sys_13: 3.61923112e-02 - art_sys_14: 1.29495956e-15 - art_sys_15: -5.03761476e-18 - art_sys_16: 1.24632756e-15 + art_sys_11: -8.10528210e-15 + art_sys_12: -8.17913917e-16 + art_sys_13: -3.61923112e-02 + art_sys_14: -1.28261715e-15 + art_sys_15: -9.86301261e-17 + art_sys_16: -1.24868601e-15 art_sys_17: 9.21916398e-03 - art_sys_18: -1.10368827e-15 - art_sys_19: -3.60643414e-15 + art_sys_18: -1.11842454e-15 + art_sys_19: 3.60867421e-15 art_sys_20: -2.13597106e-03 - art_sys_21: -8.52539255e-17 + art_sys_21: -8.77944580e-17 art_sys_22: 3.00219217e-04 - art_sys_23: 5.33975418e-16 - art_sys_24: -5.89485257e-16 - art_sys_25: 6.41969522e-17 - art_sys_26: -3.02116948e-17 - art_sys_27: 1.26343846e-17 + art_sys_23: 5.33813666e-16 + art_sys_24: -5.89478965e-16 + art_sys_25: -6.41817499e-17 + art_sys_26: -3.01064126e-17 + art_sys_27: -1.26452517e-17 art_sys_28: 1.56165884e-06 - art_sys_29: 6.84542499e-16 - art_sys_30: 1.77168740e-17 - art_sys_31: -2.86238007e-18 - art_sys_32: -3.51519408e-20 - art_sys_33: 6.42096361e-20 - art_sys_34: -4.78547252e-19 - art_sys_35: -7.16472967e-19 - art_sys_36: -2.46399416e-18 - art_sys_37: 2.07232780e-17 - art_sys_38: 1.85081559e-18 - art_sys_39: 3.03114012e-07 - art_sys_40: 5.12636724e-18 - art_sys_41: -5.85713926e-17 - art_sys_42: 7.18036075e-18 - art_sys_43: 1.24616256e-17 - art_sys_44: -1.73331362e-18 - art_sys_45: -4.81302776e-08 - art_sys_46: -1.18398200e-18 - art_sys_47: 1.59738209e-20 - art_sys_48: -3.30004112e-17 - art_sys_49: 3.32300464e-18 - art_sys_50: 1.20521657e-19 - art_sys_51: -2.96957907e-19 - art_sys_52: 2.30713158e-18 - art_sys_53: 1.32601602e-09 - art_sys_54: 4.04572559e-20 - art_sys_55: 9.88139668e-18 - art_sys_56: -3.26305153e-10 - art_sys_57: 4.98833099e-20 - art_sys_58: -9.54683798e-21 - art_sys_59: 4.85412686e-22 - art_sys_60: 3.30183526e-19 - art_sys_61: 1.35923694e-22 - art_sys_62: -8.61956059e-24 - art_sys_63: -4.92856370e-24 - art_sys_64: 3.08552182e-24 - art_sys_65: 2.60372660e-24 - art_sys_66: -6.53268529e-20 - art_sys_67: 1.71249918e-24 - art_sys_68: 1.77388374e-25 - art_sys_69: 3.45948535e-20 - art_sys_70: 1.27049546e-18 - art_sys_71: 1.15740218e-18 - art_sys_72: -4.88095407e-11 - art_sys_73: 6.52850920e-22 - art_sys_74: 3.75885179e-20 - art_sys_75: -1.34131548e-24 - art_sys_76: -1.00333354e-23 - art_sys_77: -1.09841234e-22 - art_sys_78: -3.42474607e-23 - art_sys_79: -7.78384119e-24 - art_sys_80: 3.83247378e-19 - art_sys_81: 1.73921740e-24 - art_sys_82: 8.97927985e-25 - art_sys_83: -4.33055050e-24 - art_sys_84: -2.66537666e-20 - art_sys_85: 6.32420362e-25 - art_sys_86: 2.25948128e-24 - art_sys_87: 6.21152539e-25 - art_sys_88: 3.06805860e-26 - art_sys_89: 2.27812898e-27 - art_sys_90: 3.02873787e-18 - art_sys_91: 3.29414600e-18 - art_sys_92: -8.19287862e-21 - art_sys_93: -1.57345935e-12 - art_sys_94: -5.25288457e-20 - art_sys_95: 1.54502300e-20 - art_sys_96: 9.75070481e-28 - art_sys_97: -6.15223904e-22 - art_sys_98: 9.76457177e-20 - art_sys_99: 1.79673757e-13 - art_sys_100: -8.26968697e-23 - art_sys_101: -1.24225562e-19 - art_sys_102: -7.96643738e-27 - art_sys_103: 2.29427677e-23 - art_sys_104: -1.98516374e-20 - art_sys_105: -1.69715040e-26 - art_sys_106: 4.99074997e-20 - art_sys_107: -3.68764273e-15 - art_sys_108: -1.79788182e-24 - art_sys_109: -6.23432851e-23 - art_sys_110: 1.34388033e-28 - art_sys_111: 3.48543129e-20 - art_sys_112: 9.97860622e-26 - art_sys_113: 1.68738172e-27 - art_sys_114: -2.34994133e-20 - art_sys_115: -3.33707013e-24 - art_sys_116: -6.28105746e-24 - art_sys_117: 1.54865728e-27 - art_sys_118: -1.17941893e-20 - art_sys_119: -2.12701310e-26 - art_sys_120: 7.17968741e-21 - art_sys_121: -1.15537719e-24 - art_sys_122: 3.47492918e-21 - art_sys_123: -1.61237675e-26 - art_sys_124: -1.35538903e-21 - art_sys_125: 4.67144218e-22 - art_sys_126: -1.99525182e-24 - art_sys_127: 1.27627493e-22 - art_sys_128: 7.61520661e-28 - art_sys_129: 1.46957619e-27 - art_sys_130: -1.90086260e-27 - art_sys_131: -1.70566867e-27 - art_sys_132: 4.50519464e-23 - art_sys_133: 4.58058222e-26 - art_sys_134: 1.71487915e-26 - art_sys_135: 7.92119201e-24 - art_sys_136: 1.43706800e-26 - art_sys_137: -7.52721734e-25 - art_sys_138: -4.34685325e-27 - art_sys_139: -1.75016092e-26 - art_sys_140: -6.47292972e-18 - art_sys_141: -2.82914073e-26 - art_sys_142: 0.0 - art_sys_143: 5.20268082e-25 - art_sys_144: 2.34852414e-25 - art_sys_145: 9.14473312e-26 - art_sys_146: -3.80710829e-29 - art_sys_147: 2.19854190e-28 - art_sys_148: -2.75044800e-27 - art_sys_149: -2.61993982e-27 - art_sys_150: 2.29782269e-28 - art_sys_151: -7.86513388e-29 - art_sys_152: -1.39372165e-29 - art_sys_153: -1.09883462e-29 - art_sys_154: -3.90107521e-30 - art_sys_155: 4.89169215e-30 - art_sys_156: 1.97812605e-29 - art_sys_157: 1.31284883e-27 + art_sys_29: -7.62463709e-19 + art_sys_30: 1.25252372e-17 + art_sys_31: -3.03114012e-07 + art_sys_32: 3.31227702e-18 + art_sys_33: 6.27044119e-17 + art_sys_34: -6.09968371e-18 + art_sys_35: -4.81302776e-08 + art_sys_36: -2.61979891e-16 + art_sys_37: -1.02798016e-17 + art_sys_38: 1.20369770e-18 + art_sys_39: 3.43577196e-20 + art_sys_40: 2.94016732e-20 + art_sys_41: 2.44342840e-19 + art_sys_42: -1.53448530e-19 + art_sys_43: 1.12961913e-20 + art_sys_44: -2.79921419e-18 + art_sys_45: 1.30919357e-18 + art_sys_46: -3.82998872e-21 + art_sys_47: 2.59710142e-18 + art_sys_48: -3.44993416e-17 + art_sys_49: 1.45602698e-17 + art_sys_50: -2.77502604e-20 + art_sys_51: 1.02174766e-19 + art_sys_52: -1.32601602e-09 + art_sys_53: 7.55134263e-18 + art_sys_54: -2.80051903e-19 + art_sys_55: -8.88284362e-18 + art_sys_56: 3.26305128e-10 + art_sys_57: -2.60747931e-19 + art_sys_58: 2.74068552e-21 + art_sys_59: 1.92271001e-18 + art_sys_60: 9.12340112e-20 + art_sys_61: 6.77256268e-21 + art_sys_62: -4.88095487e-11 + art_sys_63: -3.65115003e-20 + art_sys_64: 8.22555097e-20 + art_sys_65: -5.25023315e-21 + art_sys_66: 6.94756657e-21 + art_sys_67: -6.37680068e-22 + art_sys_68: -3.15525627e-24 + art_sys_69: -1.08576401e-23 + art_sys_70: -4.53321197e-24 + art_sys_71: -2.24074402e-24 + art_sys_72: 6.12819416e-26 + art_sys_73: 5.91604894e-28 + art_sys_74: -1.75601884e-21 + art_sys_75: 1.37894844e-25 + art_sys_76: -1.28773448e-23 + art_sys_77: 4.68759668e-23 + art_sys_78: -1.06193518e-23 + art_sys_79: 2.41739157e-25 + art_sys_80: 1.82869197e-23 + art_sys_81: -8.46539977e-21 + art_sys_82: 8.61396313e-19 + art_sys_83: 5.24787651e-24 + art_sys_84: 2.63442120e-24 + art_sys_85: -2.24831668e-24 + art_sys_86: -5.06117427e-25 + art_sys_87: 1.05210454e-21 + art_sys_88: 5.21173719e-23 + art_sys_89: 3.91976821e-26 + art_sys_90: 7.16869662e-25 + art_sys_91: -3.75434368e-19 + art_sys_92: -1.42463795e-26 + art_sys_93: 1.31374524e-26 + art_sys_94: 2.46570414e-26 + art_sys_95: 7.78588818e-21 + art_sys_96: 3.49614381e-18 + art_sys_97: 1.57346387e-12 + art_sys_98: 1.43643106e-20 + art_sys_99: -5.58021470e-22 + art_sys_100: -3.71144498e-19 + art_sys_101: -7.43967371e-19 + art_sys_102: 7.48748728e-20 + art_sys_103: -1.79672341e-13 + art_sys_104: -1.30291797e-19 + art_sys_105: -7.91385469e-27 + art_sys_106: -1.79932140e-21 + art_sys_107: 5.06237032e-23 + art_sys_108: -3.47538982e-27 + art_sys_109: -2.49295239e-28 + art_sys_110: -2.33479327e-21 + art_sys_111: 7.53457487e-20 + art_sys_112: 1.02581559e-21 + art_sys_113: 3.68787181e-15 + art_sys_114: 6.49396635e-29 + art_sys_115: 3.50187904e-20 + art_sys_116: 2.32839570e-27 + art_sys_117: -1.64124363e-28 + art_sys_118: -2.58855190e-20 + art_sys_119: -1.59427547e-24 + art_sys_120: -7.57112858e-24 + art_sys_121: -1.16224806e-27 + art_sys_122: 1.38699474e-20 + art_sys_123: 7.54201132e-26 + art_sys_124: -7.37657071e-21 + art_sys_125: -3.17941591e-28 + art_sys_126: 2.76288018e-25 + art_sys_127: -2.17189363e-26 + art_sys_128: 3.02798776e-21 + art_sys_129: -5.45961808e-28 + art_sys_130: 7.37547367e-27 + art_sys_131: -4.88078228e-29 + art_sys_132: 1.15891563e-21 + art_sys_133: -3.11023369e-27 + art_sys_134: -9.54932222e-28 + art_sys_135: -4.18111475e-22 + art_sys_136: 4.16618913e-29 + art_sys_137: -1.13477991e-27 + art_sys_138: -1.17544921e-22 + art_sys_139: -2.86372310e-27 + art_sys_140: 2.29124720e-30 + art_sys_141: -1.49031532e-26 + art_sys_142: -4.25325495e-23 + art_sys_143: -1.68631423e-27 + art_sys_144: 1.88778246e-29 + art_sys_145: -7.78646055e-24 + art_sys_146: 4.51040790e-28 + art_sys_147: -1.45191614e-30 + art_sys_148: 1.18492925e-31 + art_sys_149: 7.89313397e-25 + art_sys_150: -2.31642095e-26 + art_sys_151: 1.42114248e-27 + art_sys_152: 2.26665704e-29 + art_sys_153: 6.68140839e-28 + art_sys_154: -6.29932848e-18 + art_sys_155: 5.17485051e-29 + art_sys_156: -0.0 + art_sys_157: 7.64767540e-26 art_sys_158: 0.0 - art_sys_159: 5.37837301e-27 - art_sys_160: 5.37837301e-27 - art_sys_161: 4.44979377e-28 - art_sys_162: -1.49506205e-40 - art_sys_163: -0.0 - art_sys_164: -8.53122838e-41 - art_sys_165: -1.48737016e-33 - art_sys_166: -4.55764630e-34 - art_sys_167: 4.43239407e-34 - art_sys_168: -8.13022250e-35 - art_sys_169: -3.51829099e-34 - art_sys_170: 5.09599531e-34 - art_sys_171: 4.45455171e-33 - art_sys_172: 1.11001622e-31 - art_sys_173: -5.21583910e-33 - art_sys_174: 5.18985429e-41 - art_sys_175: 3.67774329e-34 - art_sys_176: 1.30947021e-34 - art_sys_177: 1.14830676e-36 - art_sys_178: -4.40041311e-36 - art_sys_179: 8.57424248e-36 - art_sys_180: -3.23158826e-37 - art_sys_181: -1.65060300e-36 - art_sys_182: -1.10999078e-36 - art_sys_183: -4.01823068e-39 - art_sys_184: 1.51930172e-41 - art_sys_185: -5.53222248e-42 + art_sys_159: -1.92034621e-26 + art_sys_160: -2.09504852e-27 + art_sys_161: -3.07688032e-28 + art_sys_162: -3.07688032e-28 + art_sys_163: 7.64460225e-28 + art_sys_164: 7.64460225e-28 + art_sys_165: -7.03759385e-42 + art_sys_166: 2.20836655e-42 + art_sys_167: 0.0 + art_sys_168: 3.76925737e-34 + art_sys_169: -1.37130868e-33 + art_sys_170: 2.04680277e-33 + art_sys_171: 1.72063641e-32 + art_sys_172: 1.79694944e-33 + art_sys_173: -1.25115636e-34 + art_sys_174: 2.76019067e-34 + art_sys_175: -2.59909225e-35 + art_sys_176: 9.00243607e-36 + art_sys_177: -1.21846093e-37 + art_sys_178: -4.74376879e-39 + art_sys_179: -3.79862258e-41 + art_sys_180: -3.96148030e-40 + art_sys_181: -5.72939179e-37 + art_sys_182: -2.97683666e-36 + art_sys_183: -4.72310581e-38 + art_sys_184: 8.14611003e-41 + art_sys_185: 9.88011619e-43 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -66007,189 +66007,189 @@ bins: uncorrelated_uncertainty: 124.926 - art_sys_1: -7.40546891e+01 art_sys_2: 5.17553441e+01 - art_sys_3: -1.01509962e-13 - art_sys_4: 1.38353758e-14 - art_sys_5: -4.91907951e-14 + art_sys_3: 9.87591796e-14 + art_sys_4: -4.89906578e-14 + art_sys_5: -6.64684166e-14 art_sys_6: -1.73435696e+01 - art_sys_7: 3.99441354e-14 - art_sys_8: -8.08431515e-15 - art_sys_9: -1.50681716e-14 + art_sys_7: 4.12988140e-14 + art_sys_8: -8.70008729e-14 + art_sys_9: -2.27816179e-14 art_sys_10: 3.89869916e+00 - art_sys_11: 2.29641590e-14 - art_sys_12: 2.28651267e-15 - art_sys_13: -1.16031603e-01 - art_sys_14: -3.54968101e-15 - art_sys_15: -5.60199220e-16 - art_sys_16: -2.79751202e-15 + art_sys_11: 2.29194196e-14 + art_sys_12: 3.11003619e-15 + art_sys_13: 1.16031603e-01 + art_sys_14: 3.52981104e-15 + art_sys_15: 5.66658952e-16 + art_sys_16: 2.80586253e-15 art_sys_17: -3.15344596e-02 - art_sys_18: 3.47679314e-15 - art_sys_19: 9.68040904e-15 + art_sys_18: 3.47541655e-15 + art_sys_19: -9.68917813e-15 art_sys_20: 8.02872055e-03 - art_sys_21: 3.67062635e-16 + art_sys_21: 3.66289298e-16 art_sys_22: -1.17210415e-03 - art_sys_23: -2.32946898e-15 - art_sys_24: 1.33154587e-15 - art_sys_25: -1.80349608e-16 - art_sys_26: 9.05832695e-17 - art_sys_27: -3.41281724e-17 + art_sys_23: -2.32673410e-15 + art_sys_24: 1.33158310e-15 + art_sys_25: 1.80382101e-16 + art_sys_26: 9.10001214e-17 + art_sys_27: 3.40756743e-17 art_sys_28: -8.31030126e-06 - art_sys_29: 2.81308015e-16 - art_sys_30: 1.34546453e-17 - art_sys_31: -1.40610482e-18 - art_sys_32: 2.32660656e-19 - art_sys_33: 1.29073917e-19 - art_sys_34: -1.04343187e-18 - art_sys_35: -1.26041322e-18 - art_sys_36: -5.22675205e-18 - art_sys_37: -8.24171746e-17 - art_sys_38: 2.10767313e-18 - art_sys_39: -1.60940847e-06 - art_sys_40: -2.24766602e-17 - art_sys_41: 1.58516030e-16 - art_sys_42: 3.77373459e-18 - art_sys_43: -6.98471516e-17 - art_sys_44: -1.25394762e-18 - art_sys_45: 2.55144816e-07 - art_sys_46: 8.75314223e-18 - art_sys_47: 1.09900794e-19 - art_sys_48: 8.07636765e-17 - art_sys_49: -2.32933099e-17 - art_sys_50: -1.18449433e-19 - art_sys_51: 4.77843620e-19 - art_sys_52: -1.22967607e-17 - art_sys_53: -1.02589085e-08 - art_sys_54: -1.05135150e-19 - art_sys_55: -2.58023266e-17 - art_sys_56: 1.85589081e-09 - art_sys_57: -4.04423065e-20 - art_sys_58: 4.86540718e-21 - art_sys_59: -2.04431885e-21 - art_sys_60: -5.59954771e-19 - art_sys_61: -7.56411187e-22 - art_sys_62: -6.46889176e-23 - art_sys_63: 4.78843468e-23 - art_sys_64: -3.07127821e-23 - art_sys_65: -1.65404510e-23 - art_sys_66: 4.32132742e-19 - art_sys_67: -1.18405531e-23 - art_sys_68: -3.05763796e-24 - art_sys_69: -2.60221125e-19 - art_sys_70: -6.03430778e-18 - art_sys_71: -7.37377711e-18 - art_sys_72: 3.24684102e-10 - art_sys_73: 7.46786617e-22 - art_sys_74: 3.72427375e-19 - art_sys_75: 3.71143805e-24 - art_sys_76: 1.18588530e-22 - art_sys_77: 6.59968886e-22 - art_sys_78: 2.08061184e-22 - art_sys_79: -1.71290115e-24 - art_sys_80: -2.76159404e-18 - art_sys_81: -9.16218274e-24 - art_sys_82: -5.60771279e-24 - art_sys_83: 2.65784418e-23 - art_sys_84: 1.61919749e-19 - art_sys_85: -4.05550426e-24 - art_sys_86: -1.36500479e-23 - art_sys_87: 6.10815849e-25 - art_sys_88: -1.75429714e-25 - art_sys_89: -4.67946865e-26 - art_sys_90: -1.64593546e-17 - art_sys_91: -2.35745930e-17 - art_sys_92: 5.71227872e-20 - art_sys_93: 9.51556370e-12 - art_sys_94: 3.36338528e-19 - art_sys_95: -7.72011297e-20 - art_sys_96: -2.63840480e-27 - art_sys_97: 2.73174292e-21 - art_sys_98: -3.09680454e-19 - art_sys_99: -1.20513765e-12 - art_sys_100: 7.09075213e-23 - art_sys_101: 4.23887672e-19 - art_sys_102: 1.03725043e-26 - art_sys_103: -2.18144013e-23 - art_sys_104: -1.08496828e-20 - art_sys_105: 1.16479407e-26 - art_sys_106: -1.38544973e-19 - art_sys_107: 2.36121183e-14 - art_sys_108: 1.31240444e-24 - art_sys_109: 1.50193030e-23 - art_sys_110: -1.18058353e-28 - art_sys_111: -1.01490423e-19 - art_sys_112: 1.33140656e-24 - art_sys_113: 1.37976945e-27 - art_sys_114: 7.06018173e-20 - art_sys_115: 3.09696885e-24 - art_sys_116: -4.99980656e-25 - art_sys_117: 1.31137191e-27 - art_sys_118: 3.95545922e-20 - art_sys_119: -3.19030298e-25 - art_sys_120: -2.07217024e-20 - art_sys_121: -1.18193697e-24 - art_sys_122: -9.10171914e-21 - art_sys_123: 5.20815618e-27 - art_sys_124: 3.57306139e-21 - art_sys_125: -1.28989695e-21 - art_sys_126: -3.61638043e-26 - art_sys_127: -3.69918147e-22 - art_sys_128: 1.25906632e-26 - art_sys_129: 5.57052025e-28 - art_sys_130: 7.63759030e-27 - art_sys_131: 2.39043035e-27 - art_sys_132: -1.32091333e-22 - art_sys_133: -6.45974631e-27 - art_sys_134: -5.90280989e-26 - art_sys_135: -2.42430750e-23 - art_sys_136: -4.63336537e-26 - art_sys_137: 3.00589769e-24 - art_sys_138: 1.83034951e-26 - art_sys_139: 7.82903008e-26 - art_sys_140: 4.07197241e-17 - art_sys_141: 1.87334351e-25 - art_sys_142: -0.0 - art_sys_143: -3.24482578e-24 - art_sys_144: -1.47825983e-24 - art_sys_145: -5.76745931e-25 - art_sys_146: 9.34926694e-29 - art_sys_147: -1.69394982e-28 - art_sys_148: 1.67959662e-27 - art_sys_149: -1.47073708e-28 - art_sys_150: 2.62041830e-30 - art_sys_151: 1.62235379e-29 - art_sys_152: -9.40024394e-29 - art_sys_153: -1.90746201e-29 - art_sys_154: 1.98479481e-29 - art_sys_155: -3.97230995e-29 - art_sys_156: -1.53263816e-28 - art_sys_157: -8.25551331e-27 + art_sys_29: -2.69687385e-18 + art_sys_30: -2.90971265e-17 + art_sys_31: 1.60940847e-06 + art_sys_32: -9.95217430e-18 + art_sys_33: -1.63817749e-16 + art_sys_34: 4.80596079e-18 + art_sys_35: 2.55144816e-07 + art_sys_36: -1.13183137e-16 + art_sys_37: -6.07045579e-19 + art_sys_38: 1.30650143e-18 + art_sys_39: 2.34585529e-20 + art_sys_40: 6.43974933e-21 + art_sys_41: 2.52703490e-19 + art_sys_42: -4.16992064e-19 + art_sys_43: -4.74307799e-19 + art_sys_44: -2.93338326e-18 + art_sys_45: 1.01092195e-18 + art_sys_46: 8.74855794e-20 + art_sys_47: -1.45837645e-17 + art_sys_48: 8.01378310e-17 + art_sys_49: -7.83088999e-17 + art_sys_50: 5.97283422e-20 + art_sys_51: 2.67332674e-19 + art_sys_52: 1.02589085e-08 + art_sys_53: -4.39277839e-17 + art_sys_54: 9.29146989e-19 + art_sys_55: 2.43278890e-17 + art_sys_56: -1.85589066e-09 + art_sys_57: 2.72550470e-20 + art_sys_58: -7.21592835e-22 + art_sys_59: -6.04093073e-18 + art_sys_60: 1.26531857e-19 + art_sys_61: -1.11805805e-20 + art_sys_62: 3.24684152e-10 + art_sys_63: -7.70519631e-20 + art_sys_64: -2.91794410e-20 + art_sys_65: -7.53320334e-21 + art_sys_66: 4.14142943e-22 + art_sys_67: -4.63179195e-22 + art_sys_68: 1.15506890e-24 + art_sys_69: 2.93733745e-23 + art_sys_70: 9.80705321e-24 + art_sys_71: 9.58879616e-24 + art_sys_72: -2.70749676e-25 + art_sys_73: 1.79913901e-25 + art_sys_74: 5.34579072e-21 + art_sys_75: -1.47119944e-25 + art_sys_76: 6.82558589e-23 + art_sys_77: -2.90514176e-22 + art_sys_78: 6.95278802e-23 + art_sys_79: -3.53969650e-25 + art_sys_80: -1.12379122e-22 + art_sys_81: 5.11981156e-20 + art_sys_82: -4.89957990e-18 + art_sys_83: -3.01411772e-23 + art_sys_84: -1.65694098e-23 + art_sys_85: 1.36877747e-23 + art_sys_86: 2.89184448e-24 + art_sys_87: -7.05765716e-21 + art_sys_88: -3.46305097e-22 + art_sys_89: -3.03244246e-25 + art_sys_90: -3.92649172e-24 + art_sys_91: 9.82318020e-19 + art_sys_92: 8.55973411e-26 + art_sys_93: -8.04997344e-26 + art_sys_94: -1.39420964e-25 + art_sys_95: -4.66715318e-20 + art_sys_96: -1.78774618e-17 + art_sys_97: -9.51559195e-12 + art_sys_98: -9.54076000e-20 + art_sys_99: -1.88924231e-19 + art_sys_100: 2.48936638e-18 + art_sys_101: 5.47195639e-18 + art_sys_102: -4.79879577e-19 + art_sys_103: 1.20512907e-12 + art_sys_104: 2.41482788e-19 + art_sys_105: 7.22010783e-26 + art_sys_106: 8.74829547e-20 + art_sys_107: -3.75281083e-22 + art_sys_108: 9.11428630e-27 + art_sys_109: 8.69999768e-28 + art_sys_110: 1.46872151e-20 + art_sys_111: -6.51251709e-19 + art_sys_112: -6.60237253e-21 + art_sys_113: -2.36135820e-14 + art_sys_114: 3.93125623e-28 + art_sys_115: -1.00251892e-19 + art_sys_116: -1.74951430e-25 + art_sys_117: -1.24626439e-27 + art_sys_118: 6.30764713e-20 + art_sys_119: -9.13970007e-25 + art_sys_120: 7.68937761e-23 + art_sys_121: -7.56273046e-28 + art_sys_122: -2.93510241e-20 + art_sys_123: -4.24579163e-25 + art_sys_124: 1.95814299e-20 + art_sys_125: -1.35551175e-28 + art_sys_126: -1.01406545e-24 + art_sys_127: -4.01953108e-27 + art_sys_128: -8.47430142e-21 + art_sys_129: 9.71344870e-28 + art_sys_130: -4.05944976e-27 + art_sys_131: -1.58548922e-28 + art_sys_132: -3.35434818e-21 + art_sys_133: 1.08900251e-26 + art_sys_134: -6.75190251e-25 + art_sys_135: 1.25191272e-21 + art_sys_136: -5.63525149e-29 + art_sys_137: -1.23969631e-28 + art_sys_138: 3.63550268e-22 + art_sys_139: 9.85190627e-27 + art_sys_140: -1.87849012e-30 + art_sys_141: 1.07071912e-27 + art_sys_142: 1.31383658e-22 + art_sys_143: 2.70232504e-27 + art_sys_144: -5.26540345e-29 + art_sys_145: 2.38099645e-23 + art_sys_146: -1.08028634e-27 + art_sys_147: 2.66722564e-29 + art_sys_148: -9.23419698e-31 + art_sys_149: -2.35012489e-24 + art_sys_150: 7.04967881e-26 + art_sys_151: -1.34082404e-26 + art_sys_152: -7.34587506e-29 + art_sys_153: -1.59289109e-26 + art_sys_154: 3.96274784e-17 + art_sys_155: -2.95373062e-28 + art_sys_156: 0.0 + art_sys_157: -4.54685544e-25 art_sys_158: -0.0 - art_sys_159: -3.77722612e-26 - art_sys_160: -3.77722612e-26 - art_sys_161: -2.66097098e-27 - art_sys_162: 8.86022160e-40 - art_sys_163: 0.0 - art_sys_164: 5.02700450e-40 - art_sys_165: -8.12924936e-34 - art_sys_166: -4.10628832e-34 - art_sys_167: 7.06501927e-35 - art_sys_168: -2.67682970e-34 - art_sys_169: 4.90811075e-34 - art_sys_170: 1.54385910e-33 - art_sys_171: -2.67770393e-32 - art_sys_172: -5.41968520e-32 - art_sys_173: 8.66466095e-33 - art_sys_174: -3.32265961e-40 - art_sys_175: -4.36480083e-34 - art_sys_176: 6.97498138e-34 - art_sys_177: -6.68303059e-35 - art_sys_178: -6.93320216e-36 - art_sys_179: 5.44448367e-37 - art_sys_180: -4.37201911e-37 - art_sys_181: 1.38078726e-36 - art_sys_182: -5.16665550e-37 - art_sys_183: -8.74711083e-39 - art_sys_184: 2.20176795e-41 - art_sys_185: 3.31168810e-41 + art_sys_159: 1.15383736e-25 + art_sys_160: 1.36179300e-26 + art_sys_161: 2.45022673e-27 + art_sys_162: 2.45022673e-27 + art_sys_163: -4.26448341e-27 + art_sys_164: -4.26448341e-27 + art_sys_165: 3.81448105e-41 + art_sys_166: -1.18649829e-41 + art_sys_167: -0.0 + art_sys_168: -6.94046299e-34 + art_sys_169: 1.47765709e-33 + art_sys_170: -1.39171013e-33 + art_sys_171: 1.57005684e-32 + art_sys_172: -1.54603749e-33 + art_sys_173: -3.57023359e-34 + art_sys_174: -1.35059822e-34 + art_sys_175: -4.45308856e-35 + art_sys_176: -2.32116950e-37 + art_sys_177: 7.20680821e-38 + art_sys_178: 4.96782519e-38 + art_sys_179: 2.31085439e-40 + art_sys_180: 2.35616602e-39 + art_sys_181: 1.72129534e-37 + art_sys_182: -2.94604863e-36 + art_sys_183: -9.47166080e-39 + art_sys_184: -6.40914042e-41 + art_sys_185: -7.91936094e-43 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -66298,189 +66298,189 @@ bins: uncorrelated_uncertainty: 5.88576000e+01 - art_sys_1: -6.75394975e+00 art_sys_2: 4.84578686e+01 - art_sys_3: 1.02035355e-14 - art_sys_4: -2.44790078e-14 - art_sys_5: -2.94560381e-14 + art_sys_3: 9.16025315e-15 + art_sys_4: 6.42700306e-14 + art_sys_5: 7.86600653e-16 art_sys_6: 1.80896961e+01 - art_sys_7: 9.73947614e-15 - art_sys_8: 2.79903107e-15 - art_sys_9: -2.55092734e-15 + art_sys_7: 2.76554744e-15 + art_sys_8: 1.27548356e-13 + art_sys_9: 1.24746393e-14 art_sys_10: -6.35102935e+00 - art_sys_11: -3.92419907e-14 - art_sys_12: -4.77514265e-15 - art_sys_13: 3.74666874e-01 - art_sys_14: 4.88780125e-15 - art_sys_15: 6.50215758e-15 - art_sys_16: 5.05858745e-15 + art_sys_11: -3.92487520e-14 + art_sys_12: -4.77232957e-15 + art_sys_13: -3.74666874e-01 + art_sys_14: -4.77327864e-15 + art_sys_15: -6.49393982e-15 + art_sys_16: -5.08642817e-15 art_sys_17: 8.87390780e-02 - art_sys_18: -6.44716120e-15 - art_sys_19: -1.56284434e-14 + art_sys_18: -6.44465762e-15 + art_sys_19: 1.56579935e-14 art_sys_20: -2.62719128e-02 - art_sys_21: -2.05204966e-16 + art_sys_21: -2.09367278e-16 art_sys_22: 3.96660433e-03 - art_sys_23: 7.37599303e-15 - art_sys_24: -1.90181630e-15 - art_sys_25: 3.96794596e-16 - art_sys_26: -2.03553765e-16 - art_sys_27: 6.95948495e-17 + art_sys_23: 7.37292809e-15 + art_sys_24: -1.90146513e-15 + art_sys_25: -3.96754139e-16 + art_sys_26: -2.03619509e-16 + art_sys_27: -6.95604219e-17 art_sys_28: 2.63303923e-05 - art_sys_29: 6.84681388e-16 - art_sys_30: 6.96167289e-19 - art_sys_31: 7.40424507e-19 - art_sys_32: -9.38116587e-19 - art_sys_33: -1.21398381e-19 - art_sys_34: 7.29717432e-20 - art_sys_35: 6.75412644e-19 - art_sys_36: 3.02262657e-18 - art_sys_37: 2.68199936e-16 - art_sys_38: -3.17798027e-18 - art_sys_39: 6.09179365e-06 - art_sys_40: 6.92559654e-17 - art_sys_41: -2.87144435e-16 - art_sys_42: 3.22371199e-18 - art_sys_43: 2.36186066e-16 - art_sys_44: -8.68449818e-20 - art_sys_45: -9.16431595e-07 - art_sys_46: -3.49024907e-17 - art_sys_47: -1.81645258e-19 - art_sys_48: -1.28974124e-16 - art_sys_49: 9.15494025e-17 - art_sys_50: -3.30894161e-19 - art_sys_51: 1.09483473e-18 - art_sys_52: 2.90232566e-17 - art_sys_53: 4.12369641e-08 - art_sys_54: 2.70385302e-20 - art_sys_55: 4.98046023e-17 - art_sys_56: -7.28113335e-09 - art_sys_57: 4.98239706e-21 - art_sys_58: 8.60041815e-21 - art_sys_59: -2.17083934e-21 - art_sys_60: -1.46553681e-18 - art_sys_61: 4.21172144e-22 - art_sys_62: 4.81567092e-22 - art_sys_63: -1.23011838e-22 - art_sys_64: 1.26285327e-22 - art_sys_65: 7.60872823e-23 - art_sys_66: -1.67244155e-18 - art_sys_67: 4.64943885e-23 - art_sys_68: 1.27482306e-23 - art_sys_69: 1.07695930e-18 - art_sys_70: 1.20624594e-17 - art_sys_71: 2.93970015e-17 - art_sys_72: -1.28398270e-09 - art_sys_73: 7.17937436e-21 - art_sys_74: -1.74708158e-18 - art_sys_75: 5.23319546e-24 - art_sys_76: -3.93619233e-22 - art_sys_77: -2.74061113e-21 - art_sys_78: -8.61854830e-22 - art_sys_79: -6.55961434e-24 - art_sys_80: 1.13833183e-17 - art_sys_81: 3.95777662e-23 - art_sys_82: 2.31637605e-23 - art_sys_83: -1.09633533e-22 - art_sys_84: -6.69607235e-19 - art_sys_85: 1.65669551e-23 - art_sys_86: 5.66418150e-23 - art_sys_87: 1.45990838e-25 - art_sys_88: 4.68232323e-25 - art_sys_89: 1.22048919e-25 - art_sys_90: 6.53624749e-17 - art_sys_91: 1.06012483e-16 - art_sys_92: -2.31010795e-19 - art_sys_93: -3.94079510e-11 - art_sys_94: -1.69098336e-18 - art_sys_95: 5.11511408e-19 - art_sys_96: -2.60088290e-26 - art_sys_97: -1.16682556e-20 - art_sys_98: 7.07227549e-19 - art_sys_99: 4.84142443e-12 - art_sys_100: 8.76551215e-23 - art_sys_101: -4.50298685e-19 - art_sys_102: 3.87504105e-26 - art_sys_103: -5.43614689e-23 - art_sys_104: 3.26754731e-19 - art_sys_105: 4.19366683e-26 - art_sys_106: 2.02551713e-19 - art_sys_107: -1.18683111e-13 - art_sys_108: -3.17827298e-24 - art_sys_109: 4.88963649e-23 - art_sys_110: 1.08126192e-27 - art_sys_111: 1.83872573e-19 - art_sys_112: 2.54824358e-24 - art_sys_113: 2.85654942e-27 - art_sys_114: -1.46394132e-19 - art_sys_115: 3.27893636e-24 - art_sys_116: -2.28590511e-23 - art_sys_117: -1.68002808e-27 - art_sys_118: -9.18735702e-20 - art_sys_119: -1.85287730e-25 - art_sys_120: 4.50908224e-20 - art_sys_121: 1.61864957e-24 - art_sys_122: 1.84926822e-20 - art_sys_123: 7.05500179e-27 - art_sys_124: -7.26688247e-21 - art_sys_125: 2.74089987e-21 - art_sys_126: 4.08710386e-24 - art_sys_127: 8.03113542e-22 - art_sys_128: -2.54395209e-26 - art_sys_129: 1.83778534e-27 - art_sys_130: -1.92328875e-26 - art_sys_131: -4.78364493e-27 - art_sys_132: 2.85448462e-22 - art_sys_133: -5.46454402e-26 - art_sys_134: 1.32359463e-25 - art_sys_135: 5.40549599e-23 - art_sys_136: 1.08433802e-25 - art_sys_137: -6.86996572e-24 - art_sys_138: -4.88657495e-26 - art_sys_139: -2.37145800e-25 - art_sys_140: -1.64638389e-16 - art_sys_141: -7.91034141e-25 - art_sys_142: 0.0 - art_sys_143: 1.31204050e-23 - art_sys_144: 5.98866238e-24 - art_sys_145: 2.34539948e-24 - art_sys_146: 3.90438592e-28 - art_sys_147: -8.93971417e-28 - art_sys_148: 2.48651002e-27 - art_sys_149: 2.32159150e-27 - art_sys_150: 1.92365418e-28 - art_sys_151: -2.48164670e-28 - art_sys_152: 8.09312672e-30 - art_sys_153: 3.83700610e-29 - art_sys_154: -6.33183708e-29 - art_sys_155: 1.90674611e-28 - art_sys_156: 7.14334808e-28 - art_sys_157: 3.33815922e-26 + art_sys_29: 3.51765007e-18 + art_sys_30: 6.76257905e-17 + art_sys_31: -6.09179365e-06 + art_sys_32: 1.83172019e-17 + art_sys_33: 2.89855042e-16 + art_sys_34: -1.12528038e-19 + art_sys_35: -9.16431595e-07 + art_sys_36: 1.50565901e-16 + art_sys_37: -5.02389347e-18 + art_sys_38: 9.27140423e-20 + art_sys_39: -3.84774986e-20 + art_sys_40: 4.01223788e-20 + art_sys_41: 4.03755105e-19 + art_sys_42: 1.80822318e-19 + art_sys_43: -1.56605709e-18 + art_sys_44: 6.83989633e-19 + art_sys_45: -2.06068249e-19 + art_sys_46: -3.92760253e-20 + art_sys_47: 5.69720118e-17 + art_sys_48: -1.27269621e-16 + art_sys_49: 3.05364709e-16 + art_sys_50: 1.67071496e-19 + art_sys_51: 5.96302925e-19 + art_sys_52: -4.12369641e-08 + art_sys_53: 1.43432878e-16 + art_sys_54: -2.97024848e-18 + art_sys_55: -4.72195623e-17 + art_sys_56: 7.28113278e-09 + art_sys_57: 1.40449379e-19 + art_sys_58: 5.43130121e-21 + art_sys_59: 1.12764313e-17 + art_sys_60: -2.58449781e-20 + art_sys_61: -9.58998491e-22 + art_sys_62: -1.28398289e-09 + art_sys_63: 1.43760370e-19 + art_sys_64: -1.04292634e-19 + art_sys_65: 6.75297923e-22 + art_sys_66: -8.24009465e-21 + art_sys_67: 1.40852574e-21 + art_sys_68: 6.21277344e-23 + art_sys_69: -1.31945029e-22 + art_sys_70: -4.50329498e-23 + art_sys_71: -4.08008917e-23 + art_sys_72: 1.19217526e-24 + art_sys_73: -1.07738770e-24 + art_sys_74: -1.27745418e-20 + art_sys_75: 5.59706200e-25 + art_sys_76: -2.80946618e-22 + art_sys_77: 1.19276538e-21 + art_sys_78: -2.90462074e-22 + art_sys_79: -4.45023545e-25 + art_sys_80: 4.63015001e-22 + art_sys_81: -2.12035317e-19 + art_sys_82: 2.05606112e-17 + art_sys_83: 1.37278009e-22 + art_sys_84: 6.76381964e-23 + art_sys_85: -5.63690197e-23 + art_sys_86: -1.21771398e-23 + art_sys_87: 2.83604042e-20 + art_sys_88: 1.75824132e-21 + art_sys_89: 1.15311900e-24 + art_sys_90: 1.48723074e-23 + art_sys_91: -9.25902818e-19 + art_sys_92: -3.54910296e-25 + art_sys_93: 3.36816880e-25 + art_sys_94: 6.11409413e-25 + art_sys_95: 1.92357162e-19 + art_sys_96: 6.42471526e-17 + art_sys_97: 3.94080667e-11 + art_sys_98: 3.83466552e-19 + art_sys_99: 1.00665335e-18 + art_sys_100: -1.00003168e-17 + art_sys_101: -2.24945251e-17 + art_sys_102: 2.41219174e-18 + art_sys_103: -4.84138912e-12 + art_sys_104: 1.68834368e-19 + art_sys_105: -3.14313486e-25 + art_sys_106: -8.08135691e-19 + art_sys_107: 1.78878495e-21 + art_sys_108: 3.00459819e-26 + art_sys_109: 1.51484284e-27 + art_sys_110: -5.93976524e-20 + art_sys_111: 3.83805586e-18 + art_sys_112: 2.66366851e-20 + art_sys_113: 1.18691150e-13 + art_sys_114: 3.47032416e-28 + art_sys_115: 1.74789974e-19 + art_sys_116: 5.23482267e-25 + art_sys_117: 4.67712582e-27 + art_sys_118: -1.23761541e-19 + art_sys_119: 4.25731921e-24 + art_sys_120: -2.83566226e-22 + art_sys_121: -1.81041800e-27 + art_sys_122: 4.40178840e-20 + art_sys_123: -7.59223897e-25 + art_sys_124: -4.30719054e-20 + art_sys_125: -3.01177656e-28 + art_sys_126: -3.03707998e-24 + art_sys_127: 1.50152637e-25 + art_sys_128: 1.94929318e-20 + art_sys_129: 2.29501107e-27 + art_sys_130: 2.27587028e-26 + art_sys_131: 1.58505028e-28 + art_sys_132: 7.63175092e-21 + art_sys_133: -2.58699023e-26 + art_sys_134: -8.04670279e-25 + art_sys_135: -2.81385411e-21 + art_sys_136: -1.24814109e-28 + art_sys_137: 4.41475620e-27 + art_sys_138: -8.17781080e-22 + art_sys_139: -2.04633361e-26 + art_sys_140: 2.49958481e-30 + art_sys_141: -3.69798811e-27 + art_sys_142: -2.94030125e-22 + art_sys_143: -4.54883652e-27 + art_sys_144: 8.45451824e-29 + art_sys_145: -5.24635963e-23 + art_sys_146: 5.45964448e-27 + art_sys_147: -1.29937225e-29 + art_sys_148: -1.53246565e-32 + art_sys_149: 5.29743165e-24 + art_sys_150: -1.64212481e-25 + art_sys_151: 6.16164724e-26 + art_sys_152: 1.78812429e-28 + art_sys_153: 8.31679646e-26 + art_sys_154: -1.60220253e-16 + art_sys_155: 1.12552791e-27 + art_sys_156: -0.0 + art_sys_157: 1.87247518e-24 art_sys_158: 0.0 - art_sys_159: 1.60974051e-25 - art_sys_160: 1.60974051e-25 - art_sys_161: 1.04746949e-26 - art_sys_162: -3.46978569e-39 - art_sys_163: -0.0 - art_sys_164: -1.96211986e-39 - art_sys_165: -5.71895048e-33 - art_sys_166: 1.86005037e-33 - art_sys_167: -1.51897513e-33 - art_sys_168: -2.98229932e-34 - art_sys_169: 1.46283954e-33 - art_sys_170: -5.87765250e-34 - art_sys_171: -2.95184580e-32 - art_sys_172: -1.19426215e-31 - art_sys_173: -1.59862232e-32 - art_sys_174: 1.36821704e-39 - art_sys_175: -2.49047009e-33 - art_sys_176: 4.90779999e-33 - art_sys_177: -9.43165813e-34 - art_sys_178: -7.27186008e-35 - art_sys_179: 1.65499410e-36 - art_sys_180: -4.48190140e-37 - art_sys_181: 2.22195382e-36 - art_sys_182: 2.42564998e-36 - art_sys_183: 8.80800130e-40 - art_sys_184: 6.79064032e-42 - art_sys_185: -1.30984845e-40 + art_sys_159: -4.57891158e-25 + art_sys_160: -5.39062575e-26 + art_sys_161: -1.05695140e-26 + art_sys_162: -1.05695140e-26 + art_sys_163: 1.64796346e-26 + art_sys_164: 1.64796346e-26 + art_sys_165: -1.45731218e-40 + art_sys_166: 4.51688936e-41 + art_sys_167: 0.0 + art_sys_168: -1.02221341e-33 + art_sys_169: 3.83667684e-33 + art_sys_170: -5.80784347e-33 + art_sys_171: -2.87042382e-32 + art_sys_172: -1.40023748e-32 + art_sys_173: -1.68003255e-33 + art_sys_174: 2.14476149e-34 + art_sys_175: -4.62986733e-35 + art_sys_176: -1.06470581e-35 + art_sys_177: 1.04438509e-37 + art_sys_178: -1.69601809e-37 + art_sys_179: -9.11203570e-40 + art_sys_180: -9.31904738e-39 + art_sys_181: 3.47763216e-37 + art_sys_182: 7.90090754e-36 + art_sys_183: -1.18815117e-37 + art_sys_184: 6.14320376e-41 + art_sys_185: -1.91041038e-42 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -66589,189 +66589,189 @@ bins: uncorrelated_uncertainty: 24.8103 - art_sys_1: 7.49785198e+00 art_sys_2: 1.04501495e+01 - art_sys_3: 5.31085250e-14 - art_sys_4: 1.99570585e-14 - art_sys_5: 1.61893422e-14 + art_sys_3: -3.14088319e-14 + art_sys_4: -7.41158173e-15 + art_sys_5: -1.94035868e-14 art_sys_6: 2.80107291e+01 - art_sys_7: -1.14427302e-14 - art_sys_8: -1.32583573e-14 - art_sys_9: -5.47434993e-15 + art_sys_7: 8.39997057e-15 + art_sys_8: -1.43715123e-13 + art_sys_9: -1.63836314e-14 art_sys_10: 6.86122477e+00 - art_sys_11: 4.39341799e-14 - art_sys_12: 7.42132594e-15 - art_sys_13: -3.94537257e-01 - art_sys_14: -4.01744794e-15 - art_sys_15: -6.89579561e-15 - art_sys_16: -4.23373097e-15 + art_sys_11: 4.66137182e-14 + art_sys_12: 6.61301549e-15 + art_sys_13: 3.94537257e-01 + art_sys_14: 3.78004377e-15 + art_sys_15: 6.91479056e-15 + art_sys_16: 4.29381149e-15 art_sys_17: -1.91704565e-01 - art_sys_18: 5.12058147e-15 - art_sys_19: 1.27254842e-14 + art_sys_18: 5.09749415e-15 + art_sys_19: -1.27982851e-14 art_sys_20: 5.59750562e-02 - art_sys_21: -3.62663170e-16 + art_sys_21: -3.53922463e-16 art_sys_22: -9.80024123e-03 - art_sys_23: -1.69581587e-14 - art_sys_24: 1.50586803e-15 - art_sys_25: -6.49907902e-16 - art_sys_26: 3.06029451e-16 - art_sys_27: -1.01650364e-16 + art_sys_23: -1.69485934e-14 + art_sys_24: 1.50505371e-15 + art_sys_25: 6.49734221e-16 + art_sys_26: 3.06034894e-16 + art_sys_27: 1.01581544e-16 art_sys_28: -8.87628100e-05 - art_sys_29: 9.27299776e-17 - art_sys_30: 4.51781159e-17 - art_sys_31: -7.50616215e-18 - art_sys_32: 2.75604229e-18 - art_sys_33: 4.90290731e-19 - art_sys_34: 1.41581563e-19 - art_sys_35: -6.07997701e-19 - art_sys_36: -2.82360642e-18 - art_sys_37: -7.66249287e-16 - art_sys_38: -4.52444520e-19 - art_sys_39: -1.82933433e-05 - art_sys_40: -1.77646991e-16 - art_sys_41: 3.55628965e-16 - art_sys_42: -5.63850329e-18 - art_sys_43: -8.09413974e-16 - art_sys_44: 1.62298172e-18 - art_sys_45: 3.09343450e-06 - art_sys_46: 1.16580856e-16 - art_sys_47: -1.13332796e-19 - art_sys_48: 1.04834239e-16 - art_sys_49: -3.16676024e-16 - art_sys_50: -4.02811223e-19 - art_sys_51: 1.54313189e-18 - art_sys_52: -5.19973470e-17 - art_sys_53: -1.38464857e-07 - art_sys_54: -4.49597759e-19 - art_sys_55: -7.09988537e-17 - art_sys_56: 2.43425317e-08 - art_sys_57: 8.76791704e-20 - art_sys_58: 4.45861943e-20 - art_sys_59: -1.32656321e-20 - art_sys_60: -1.92569964e-18 - art_sys_61: -5.27598534e-21 - art_sys_62: -1.08103690e-21 - art_sys_63: 5.78647651e-22 - art_sys_64: -4.41244276e-22 - art_sys_65: -2.50748986e-22 - art_sys_66: 5.86655946e-18 - art_sys_67: -1.63875342e-22 - art_sys_68: -4.68264397e-23 - art_sys_69: -3.54849682e-18 - art_sys_70: -1.82929127e-17 - art_sys_71: -1.02242528e-16 - art_sys_72: 4.45650480e-09 - art_sys_73: -6.67708594e-21 - art_sys_74: 6.19174305e-18 - art_sys_75: -1.74560595e-24 - art_sys_76: 1.70344082e-21 - art_sys_77: 9.03041959e-21 - art_sys_78: 2.85234193e-21 - art_sys_79: 1.35474099e-23 - art_sys_80: -3.76357010e-17 - art_sys_81: -1.22416839e-22 - art_sys_82: -7.69758020e-23 - art_sys_83: 3.64975912e-22 - art_sys_84: 2.21985080e-18 - art_sys_85: -5.67984292e-23 - art_sys_86: -1.86653950e-22 - art_sys_87: -3.24358474e-24 - art_sys_88: -1.74856754e-24 - art_sys_89: -3.90874258e-25 - art_sys_90: -2.12799713e-16 - art_sys_91: -3.65123220e-16 - art_sys_92: 7.98953997e-19 - art_sys_93: 1.30349434e-10 - art_sys_94: 4.64897717e-18 - art_sys_95: -1.87714223e-18 - art_sys_96: 4.14928657e-26 - art_sys_97: 4.00144557e-20 - art_sys_98: -1.31929973e-18 - art_sys_99: -1.67800575e-11 - art_sys_100: 4.19326795e-22 - art_sys_101: 3.84896236e-19 - art_sys_102: 4.44745520e-26 - art_sys_103: -5.10664430e-23 - art_sys_104: -9.76299084e-19 - art_sys_105: 2.73910574e-26 - art_sys_106: -1.43412042e-19 - art_sys_107: 3.26520057e-13 - art_sys_108: 3.22092708e-24 - art_sys_109: 6.81040327e-23 - art_sys_110: 2.94859196e-27 - art_sys_111: -2.42694443e-19 - art_sys_112: 2.13498427e-24 - art_sys_113: 9.64173173e-28 - art_sys_114: 1.85975726e-19 - art_sys_115: 8.73998709e-24 - art_sys_116: -1.75318197e-23 - art_sys_117: -1.64291701e-27 - art_sys_118: 1.08804874e-19 - art_sys_119: 1.22188448e-24 - art_sys_120: -5.84667468e-20 - art_sys_121: 8.17585908e-25 - art_sys_122: -2.60980330e-20 - art_sys_123: -3.65120676e-26 - art_sys_124: 1.05032814e-20 - art_sys_125: -3.86784566e-21 - art_sys_126: 2.38457276e-24 - art_sys_127: -1.11076169e-21 - art_sys_128: 2.55854800e-26 - art_sys_129: -4.00845390e-27 - art_sys_130: 2.37879399e-26 - art_sys_131: 6.46777074e-27 - art_sys_132: -3.92564903e-22 - art_sys_133: 7.50363150e-26 - art_sys_134: -1.87994744e-25 - art_sys_135: -7.69279440e-23 - art_sys_136: -1.70613806e-25 - art_sys_137: 1.13432756e-23 - art_sys_138: 1.12896579e-25 - art_sys_139: 6.21691587e-25 - art_sys_140: 5.67215843e-16 - art_sys_141: 2.82279217e-24 - art_sys_142: -0.0 - art_sys_143: -4.56367189e-23 - art_sys_144: -2.07446412e-23 - art_sys_145: -8.13109905e-24 - art_sys_146: 3.46223017e-28 - art_sys_147: -8.26635505e-28 - art_sys_148: 2.26217054e-27 - art_sys_149: 4.91348739e-27 - art_sys_150: -1.79391772e-28 - art_sys_151: 3.82021285e-28 - art_sys_152: -7.11838697e-29 - art_sys_153: -1.85038776e-29 - art_sys_154: 1.79840787e-28 - art_sys_155: -7.25254094e-28 - art_sys_156: -2.72450966e-27 - art_sys_157: -1.15044917e-25 - art_sys_158: 0.0 - art_sys_159: -5.63313123e-25 - art_sys_160: -5.63313123e-25 - art_sys_161: -3.58788774e-26 - art_sys_162: 1.18607395e-38 - art_sys_163: 0.0 - art_sys_164: 6.69805278e-39 - art_sys_165: -1.21647943e-33 - art_sys_166: 6.71046988e-34 - art_sys_167: -4.95409862e-34 - art_sys_168: -3.93115786e-34 - art_sys_169: 2.09426853e-33 - art_sys_170: -6.99711957e-34 - art_sys_171: -4.35933799e-32 - art_sys_172: -1.77504637e-31 - art_sys_173: 2.06017363e-32 - art_sys_174: -4.79122787e-39 - art_sys_175: -2.03373898e-33 - art_sys_176: 2.17870034e-33 - art_sys_177: -7.06383656e-34 - art_sys_178: -7.83545812e-35 - art_sys_179: -6.09284959e-36 - art_sys_180: 6.24809198e-37 - art_sys_181: 4.45692368e-36 - art_sys_182: 3.57968051e-37 - art_sys_183: -1.52230028e-38 - art_sys_184: 9.34694034e-41 - art_sys_185: 4.50992112e-40 + art_sys_29: -5.42623000e-18 + art_sys_30: -1.58797375e-16 + art_sys_31: 1.82933433e-05 + art_sys_32: -2.20200212e-17 + art_sys_33: -3.53340729e-16 + art_sys_34: 6.22842994e-18 + art_sys_35: 3.09343450e-06 + art_sys_36: 7.57162379e-17 + art_sys_37: 6.91876784e-18 + art_sys_38: -6.00011165e-19 + art_sys_39: -3.73333124e-20 + art_sys_40: 3.29483577e-20 + art_sys_41: 4.52845229e-19 + art_sys_42: 5.96739250e-20 + art_sys_43: -7.49491402e-19 + art_sys_44: 6.38099732e-18 + art_sys_45: -2.47647607e-18 + art_sys_46: 2.27231725e-19 + art_sys_47: -1.90033513e-16 + art_sys_48: 9.75489670e-17 + art_sys_49: -1.01923623e-15 + art_sys_50: 6.14587893e-20 + art_sys_51: 9.67259517e-20 + art_sys_52: 1.38464857e-07 + art_sys_53: -4.61060181e-16 + art_sys_54: 1.10985080e-17 + art_sys_55: 5.69393602e-17 + art_sys_56: -2.43425298e-08 + art_sys_57: 3.50836521e-19 + art_sys_58: 2.96901993e-22 + art_sys_59: -1.62120360e-17 + art_sys_60: -1.11922262e-20 + art_sys_61: 8.54996034e-21 + art_sys_62: 4.45650547e-09 + art_sys_63: -8.02105036e-20 + art_sys_64: -1.81198873e-19 + art_sys_65: 7.67581437e-21 + art_sys_66: -7.87428080e-21 + art_sys_67: 1.47660059e-21 + art_sys_68: -1.02564559e-22 + art_sys_69: 4.18691318e-22 + art_sys_70: 1.59058275e-22 + art_sys_71: 1.35141765e-22 + art_sys_72: -4.12794752e-24 + art_sys_73: 3.44253800e-24 + art_sys_74: 6.57494564e-20 + art_sys_75: -2.58913285e-24 + art_sys_76: 9.12621918e-22 + art_sys_77: -3.99573357e-21 + art_sys_78: 1.01791072e-21 + art_sys_79: 4.92465556e-25 + art_sys_80: -1.54350879e-21 + art_sys_81: 7.01338370e-19 + art_sys_82: -6.78017482e-17 + art_sys_83: -4.56412456e-22 + art_sys_84: -2.28433576e-22 + art_sys_85: 1.88289406e-22 + art_sys_86: 3.92253705e-23 + art_sys_87: -9.82662464e-20 + art_sys_88: -4.78539686e-21 + art_sys_89: -4.28633076e-24 + art_sys_90: -5.51202283e-23 + art_sys_91: -8.63916942e-20 + art_sys_92: 1.17029004e-24 + art_sys_93: -1.11871348e-24 + art_sys_94: -1.93726302e-24 + art_sys_95: -6.35185702e-19 + art_sys_96: -2.00578611e-16 + art_sys_97: -1.30349823e-10 + art_sys_98: -1.32890786e-18 + art_sys_99: -3.36239816e-18 + art_sys_100: 3.46597212e-17 + art_sys_101: 7.88157583e-17 + art_sys_102: -6.63629265e-18 + art_sys_103: 1.67799397e-11 + art_sys_104: -1.57701510e-18 + art_sys_105: 1.03511275e-24 + art_sys_106: 2.13067858e-18 + art_sys_107: -5.03820378e-21 + art_sys_108: 1.19250552e-26 + art_sys_109: 6.13311837e-28 + art_sys_110: 2.04613972e-19 + art_sys_111: -1.09564163e-17 + art_sys_112: -9.20332512e-20 + art_sys_113: -3.26540230e-13 + art_sys_114: 2.93809981e-28 + art_sys_115: -2.10438658e-19 + art_sys_116: -1.10049130e-24 + art_sys_117: 1.06319254e-26 + art_sys_118: 1.30757166e-19 + art_sys_119: 2.60315022e-24 + art_sys_120: 1.03283791e-21 + art_sys_121: -9.92760938e-28 + art_sys_122: 2.01289244e-20 + art_sys_123: 6.54380006e-25 + art_sys_124: 5.63374820e-20 + art_sys_125: 2.41901595e-28 + art_sys_126: -3.86745162e-24 + art_sys_127: 1.19835661e-25 + art_sys_128: -2.60413180e-20 + art_sys_129: -9.89584859e-28 + art_sys_130: -2.34017579e-26 + art_sys_131: 1.01499174e-27 + art_sys_132: -1.02435797e-20 + art_sys_133: 3.17622304e-26 + art_sys_134: 3.36899541e-24 + art_sys_135: 3.81984710e-21 + art_sys_136: 2.16020039e-28 + art_sys_137: 4.73170995e-28 + art_sys_138: 1.10943153e-21 + art_sys_139: 2.74485463e-26 + art_sys_140: -2.98185587e-29 + art_sys_141: -9.91283264e-27 + art_sys_142: 3.98039377e-22 + art_sys_143: 9.68478555e-27 + art_sys_144: -2.04258395e-28 + art_sys_145: 7.18072380e-23 + art_sys_146: -5.35112272e-27 + art_sys_147: 6.50739841e-29 + art_sys_148: -1.55138052e-31 + art_sys_149: -7.15465227e-24 + art_sys_150: 2.44792188e-25 + art_sys_151: -2.27528206e-25 + art_sys_152: -3.15010140e-28 + art_sys_153: -3.27492934e-25 + art_sys_154: 5.52000676e-16 + art_sys_155: -3.70634210e-27 + art_sys_156: 0.0 + art_sys_157: -6.29999633e-24 + art_sys_158: -0.0 + art_sys_159: 1.56062007e-24 + art_sys_160: 1.89229781e-25 + art_sys_161: 3.87494068e-26 + art_sys_162: 3.87494068e-26 + art_sys_163: -5.45625203e-26 + art_sys_164: -5.45625203e-26 + art_sys_165: 4.76809653e-40 + art_sys_166: -1.47204112e-40 + art_sys_167: -0.0 + art_sys_168: -9.32890286e-34 + art_sys_169: 2.08990230e-33 + art_sys_170: -1.86664630e-33 + art_sys_171: -6.74810749e-33 + art_sys_172: -7.26698068e-33 + art_sys_173: -1.01558713e-33 + art_sys_174: -7.60637282e-34 + art_sys_175: 3.83739282e-36 + art_sys_176: -1.03347391e-35 + art_sys_177: 6.91911748e-38 + art_sys_178: 2.44763441e-38 + art_sys_179: 3.08491647e-39 + art_sys_180: 3.16489971e-38 + art_sys_181: 9.16976879e-37 + art_sys_182: -3.90056616e-36 + art_sys_183: -1.72167408e-37 + art_sys_184: 4.11295013e-40 + art_sys_185: 6.45504388e-43 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -66880,189 +66880,189 @@ bins: uncorrelated_uncertainty: 9.57669 - art_sys_1: 8.13604987e-01 art_sys_2: -1.94031515e+00 - art_sys_3: -3.82178589e-15 - art_sys_4: -2.02021984e-13 - art_sys_5: -1.21165718e-14 + art_sys_3: 1.06991173e-14 + art_sys_4: -6.56314005e-14 + art_sys_5: 1.81496837e-14 art_sys_6: 1.30413505e+00 - art_sys_7: 1.03754610e-14 - art_sys_8: -8.60968150e-15 - art_sys_9: 4.39153972e-16 + art_sys_7: -2.11918380e-14 + art_sys_8: -3.13182422e-14 + art_sys_9: 4.38626638e-15 art_sys_10: 1.96022707e+00 - art_sys_11: 2.80327363e-14 - art_sys_12: 1.66287387e-14 - art_sys_13: 3.11409182e+00 - art_sys_14: -3.19422706e-16 - art_sys_15: 8.70999381e-14 - art_sys_16: 2.72782452e-14 + art_sys_11: 1.96422511e-14 + art_sys_12: 7.90657399e-15 + art_sys_13: -3.11409182e+00 + art_sys_14: 1.27869597e-15 + art_sys_15: -8.75224085e-14 + art_sys_16: -2.76240309e-14 art_sys_17: 6.70494399e-01 - art_sys_18: -6.42552338e-15 - art_sys_19: -1.44221274e-14 + art_sys_18: -6.27921581e-15 + art_sys_19: 1.47612414e-14 art_sys_20: -2.77156420e-01 - art_sys_21: 2.55212893e-15 + art_sys_21: 2.49693606e-15 art_sys_22: 4.53336711e-02 - art_sys_23: 8.69162020e-14 - art_sys_24: -6.48139251e-16 - art_sys_25: 2.02149598e-15 - art_sys_26: -9.00316254e-16 - art_sys_27: 2.95458976e-16 - art_sys_28: 4.44004160e-04 - art_sys_29: 1.07093457e-16 - art_sys_30: -1.39842975e-16 - art_sys_31: 1.92876162e-17 - art_sys_32: -1.51726629e-17 - art_sys_33: -3.54466429e-18 - art_sys_34: -9.41426198e-20 - art_sys_35: -1.07468020e-18 - art_sys_36: 1.32499081e-17 - art_sys_37: 3.82566010e-15 - art_sys_38: 2.81903641e-18 - art_sys_39: 1.00159558e-04 - art_sys_40: 8.92262893e-16 - art_sys_41: -7.53027946e-16 - art_sys_42: 7.76611583e-18 - art_sys_43: 4.14001138e-15 - art_sys_44: -2.73821453e-18 - art_sys_45: -1.58459678e-05 - art_sys_46: -6.54204118e-16 - art_sys_47: 2.92167308e-19 - art_sys_48: 5.17091322e-17 - art_sys_49: 1.73879517e-15 - art_sys_50: 3.91218350e-20 - art_sys_51: -1.70553624e-19 - art_sys_52: 1.81361230e-16 - art_sys_53: 8.02521795e-07 - art_sys_54: 2.28728883e-18 - art_sys_55: 1.94291203e-16 - art_sys_56: -1.31948497e-07 - art_sys_57: -1.13324716e-19 - art_sys_58: -1.27835977e-19 - art_sys_59: 1.05290237e-19 - art_sys_60: 4.09519540e-19 - art_sys_61: 3.08460172e-20 - art_sys_62: 6.36016907e-21 - art_sys_63: -3.32742198e-21 - art_sys_64: 2.46909725e-21 - art_sys_65: 1.34259373e-21 - art_sys_66: -3.22034088e-17 - art_sys_67: 8.96768583e-22 - art_sys_68: 2.53028927e-22 - art_sys_69: 2.01734892e-17 - art_sys_70: 4.90036005e-17 - art_sys_71: 5.61998966e-16 - art_sys_72: -2.45072278e-08 - art_sys_73: 8.97858887e-20 - art_sys_74: -3.53474196e-17 - art_sys_75: -7.52562922e-24 - art_sys_76: -8.83688973e-21 - art_sys_77: -5.11517224e-20 - art_sys_78: -1.61352735e-20 - art_sys_79: -6.01934470e-24 - art_sys_80: 2.13039360e-16 - art_sys_81: 7.11456011e-22 - art_sys_82: 4.35594943e-22 - art_sys_83: -2.05787219e-21 - art_sys_84: -1.25342718e-17 - art_sys_85: 3.15339010e-22 - art_sys_86: 1.05750888e-21 - art_sys_87: 1.80750456e-23 - art_sys_88: 9.09811339e-24 - art_sys_89: 2.16928994e-24 - art_sys_90: 1.19396271e-15 - art_sys_91: 2.07516382e-15 - art_sys_92: -4.42425009e-18 - art_sys_93: -7.36746880e-10 - art_sys_94: -3.26311865e-17 - art_sys_95: 1.00422521e-17 - art_sys_96: -1.75665486e-25 - art_sys_97: -2.20557063e-19 - art_sys_98: 6.40608172e-18 - art_sys_99: 9.29895390e-11 - art_sys_100: -7.05932086e-22 - art_sys_101: 9.95686339e-19 - art_sys_102: 2.07042851e-26 - art_sys_103: -1.92585006e-23 - art_sys_104: 6.31113478e-18 - art_sys_105: 8.48402247e-28 - art_sys_106: -3.12344338e-19 - art_sys_107: -2.29015444e-12 - art_sys_108: 2.88817275e-24 - art_sys_109: 5.89934920e-24 - art_sys_110: -9.30029660e-28 - art_sys_111: 6.29148391e-19 - art_sys_112: -3.53373082e-25 - art_sys_113: -1.68109522e-27 - art_sys_114: -5.59137662e-19 - art_sys_115: 1.77975458e-24 - art_sys_116: 4.09584276e-23 - art_sys_117: -1.31848608e-28 - art_sys_118: -3.51078620e-19 - art_sys_119: -2.72792915e-24 - art_sys_120: 1.87680480e-19 - art_sys_121: -2.30126334e-24 - art_sys_122: 8.27689102e-20 - art_sys_123: 6.93998001e-26 - art_sys_124: -3.31381424e-20 - art_sys_125: 1.23486265e-20 - art_sys_126: -1.39658870e-24 - art_sys_127: 3.56694302e-21 - art_sys_128: -4.43814418e-26 - art_sys_129: 9.56862737e-27 - art_sys_130: -8.63165253e-26 - art_sys_131: -1.24149425e-26 - art_sys_132: 1.23935085e-21 - art_sys_133: -1.53128000e-25 - art_sys_134: 6.15968485e-25 - art_sys_135: 2.56661263e-22 - art_sys_136: 6.38307597e-25 - art_sys_137: -4.37047140e-23 - art_sys_138: -5.36346337e-25 - art_sys_139: -3.13205426e-24 - art_sys_140: -3.11904018e-15 - art_sys_141: -1.56413650e-23 - art_sys_142: 0.0 - art_sys_143: 2.50988349e-22 - art_sys_144: 1.14123705e-22 - art_sys_145: 4.47595165e-23 - art_sys_146: -3.93050022e-28 - art_sys_147: 6.51491073e-28 - art_sys_148: -3.27534703e-28 - art_sys_149: -2.62542640e-27 - art_sys_150: 1.71882313e-29 - art_sys_151: -1.09723376e-27 - art_sys_152: 1.67422155e-28 - art_sys_153: 5.97926978e-29 - art_sys_154: -9.30062749e-28 - art_sys_155: 4.09376186e-27 - art_sys_156: 1.53176115e-26 - art_sys_157: 6.32628151e-25 - art_sys_158: -0.0 - art_sys_159: 3.12558196e-24 - art_sys_160: 3.12558196e-24 - art_sys_161: 1.96313759e-25 - art_sys_162: -6.48322391e-38 - art_sys_163: -0.0 - art_sys_164: -3.65886585e-38 - art_sys_165: -1.70350504e-33 - art_sys_166: -2.88840783e-34 - art_sys_167: 2.92141451e-34 - art_sys_168: -6.86645976e-34 - art_sys_169: 2.62474713e-33 - art_sys_170: -2.34377595e-33 - art_sys_171: 1.33368786e-32 - art_sys_172: -3.28242179e-32 - art_sys_173: -5.11631983e-33 - art_sys_174: 2.64341937e-38 - art_sys_175: 7.05222416e-34 - art_sys_176: -3.50525362e-34 - art_sys_177: 2.50340831e-34 - art_sys_178: 2.76020201e-35 - art_sys_179: 3.16835009e-36 - art_sys_180: -7.15751932e-37 - art_sys_181: 2.25208893e-36 - art_sys_182: -3.23687148e-36 - art_sys_183: -2.04287802e-38 - art_sys_184: 5.97399941e-41 - art_sys_185: -2.46959987e-39 + art_sys_23: 8.68683345e-14 + art_sys_24: -6.45817280e-16 + art_sys_25: -2.02049799e-15 + art_sys_26: -8.99138497e-16 + art_sys_27: -2.95237211e-16 + art_sys_28: 4.44004161e-04 + art_sys_29: 1.39757633e-17 + art_sys_30: 4.44876127e-16 + art_sys_31: -1.00159558e-04 + art_sys_32: 3.90118804e-17 + art_sys_33: 7.54077293e-16 + art_sys_34: -4.89578124e-17 + art_sys_35: -1.58459678e-05 + art_sys_36: 1.87074468e-17 + art_sys_37: 1.16420947e-18 + art_sys_38: 1.94642811e-18 + art_sys_39: 1.74932097e-19 + art_sys_40: -1.04551393e-19 + art_sys_41: 4.63621334e-19 + art_sys_42: 1.78378270e-19 + art_sys_43: -1.63852277e-18 + art_sys_44: 8.83566492e-18 + art_sys_45: -2.56803160e-18 + art_sys_46: 3.62846036e-19 + art_sys_47: 1.11242964e-15 + art_sys_48: 1.56450482e-16 + art_sys_49: 5.43307358e-15 + art_sys_50: 3.84065483e-20 + art_sys_51: 8.34071231e-20 + art_sys_52: -8.02521795e-07 + art_sys_53: 2.42509755e-15 + art_sys_54: -6.09827732e-17 + art_sys_55: -1.19663759e-16 + art_sys_56: 1.31948486e-07 + art_sys_57: 2.46695215e-19 + art_sys_58: 3.69691692e-21 + art_sys_59: 4.01025654e-17 + art_sys_60: -5.53328708e-20 + art_sys_61: -6.37903429e-20 + art_sys_62: -2.45072315e-08 + art_sys_63: 6.43751473e-19 + art_sys_64: 1.06889359e-19 + art_sys_65: -4.63052817e-21 + art_sys_66: 1.53342288e-20 + art_sys_67: -7.48131196e-22 + art_sys_68: 5.88920502e-22 + art_sys_69: -2.38425733e-21 + art_sys_70: -8.91085125e-22 + art_sys_71: -7.65304797e-22 + art_sys_72: 2.36365413e-23 + art_sys_73: -2.03117806e-23 + art_sys_74: -3.19311588e-19 + art_sys_75: 1.57811338e-23 + art_sys_76: -5.02393507e-21 + art_sys_77: 2.24430906e-20 + art_sys_78: -4.92761876e-21 + art_sys_79: -1.14233993e-23 + art_sys_80: 8.69307345e-21 + art_sys_81: -3.96402115e-18 + art_sys_82: 3.83380772e-16 + art_sys_83: 2.49748538e-21 + art_sys_84: 1.27749302e-21 + art_sys_85: -1.07002760e-21 + art_sys_86: -2.24101098e-22 + art_sys_87: 5.44702506e-19 + art_sys_88: 3.41607548e-20 + art_sys_89: 2.28047773e-23 + art_sys_90: 2.69237421e-22 + art_sys_91: 9.10526097e-18 + art_sys_92: -6.61947187e-24 + art_sys_93: 6.30645731e-24 + art_sys_94: 1.29117669e-23 + art_sys_95: 3.58708728e-18 + art_sys_96: 1.10660333e-15 + art_sys_97: 7.36749063e-10 + art_sys_98: 7.36364702e-18 + art_sys_99: 1.88175778e-17 + art_sys_100: -1.92074242e-16 + art_sys_101: -4.38349345e-16 + art_sys_102: 4.65458947e-17 + art_sys_103: -9.29888770e-11 + art_sys_104: 1.19003805e-17 + art_sys_105: -5.72824294e-24 + art_sys_106: -1.48122318e-17 + art_sys_107: 3.52424253e-20 + art_sys_108: 1.75318375e-26 + art_sys_109: -8.55269402e-28 + art_sys_110: -1.12522230e-18 + art_sys_111: 7.83871051e-17 + art_sys_112: 5.06428077e-19 + art_sys_113: 2.29031087e-12 + art_sys_114: -4.66544476e-28 + art_sys_115: 4.28486742e-19 + art_sys_116: 9.45860193e-24 + art_sys_117: -5.94762742e-27 + art_sys_118: -2.28753092e-19 + art_sys_119: 3.14584704e-24 + art_sys_120: -5.66202924e-21 + art_sys_121: -3.29094536e-27 + art_sys_122: -4.04658437e-19 + art_sys_123: -1.23286345e-24 + art_sys_124: -1.64656543e-19 + art_sys_125: 2.19863580e-28 + art_sys_126: 1.92181141e-24 + art_sys_127: -6.47398746e-26 + art_sys_128: 8.29073526e-20 + art_sys_129: -1.27554332e-27 + art_sys_130: 5.51472749e-26 + art_sys_131: -4.30594689e-28 + art_sys_132: 3.26497139e-20 + art_sys_133: -1.02334297e-25 + art_sys_134: 9.30084594e-25 + art_sys_135: -1.23080779e-20 + art_sys_136: -1.35440364e-28 + art_sys_137: 1.54740160e-26 + art_sys_138: -3.59440289e-21 + art_sys_139: -9.32854559e-26 + art_sys_140: 1.41649324e-29 + art_sys_141: 2.52614771e-26 + art_sys_142: -1.28331703e-21 + art_sys_143: -2.61966041e-26 + art_sys_144: 8.33481102e-28 + art_sys_145: -2.24913716e-22 + art_sys_146: 2.40431417e-26 + art_sys_147: -1.80360322e-28 + art_sys_148: -8.72965869e-31 + art_sys_149: 2.08470412e-23 + art_sys_150: -8.20395596e-25 + art_sys_151: 1.29241578e-24 + art_sys_152: 1.24299470e-27 + art_sys_153: 1.88583972e-24 + art_sys_154: -3.03533384e-15 + art_sys_155: 2.01631060e-26 + art_sys_156: -0.0 + art_sys_157: 3.46472028e-23 + art_sys_158: 0.0 + art_sys_159: -8.53668562e-24 + art_sys_160: -1.03831327e-24 + art_sys_161: -2.15799928e-25 + art_sys_162: -2.15799928e-25 + art_sys_163: 2.96186626e-25 + art_sys_164: 2.96186626e-25 + art_sys_165: -2.58009999e-39 + art_sys_166: 7.95708632e-40 + art_sys_167: 0.0 + art_sys_168: -1.06534526e-33 + art_sys_169: 1.52071161e-33 + art_sys_170: 2.45934348e-33 + art_sys_171: 2.18426735e-32 + art_sys_172: 1.87172263e-33 + art_sys_173: 1.07948012e-34 + art_sys_174: -2.93016074e-34 + art_sys_175: -5.72713320e-35 + art_sys_176: 4.87366600e-36 + art_sys_177: 2.32377178e-38 + art_sys_178: 4.43945599e-38 + art_sys_179: -1.69046421e-38 + art_sys_180: -1.72956464e-37 + art_sys_181: 2.12573446e-37 + art_sys_182: 4.38229550e-38 + art_sys_183: 8.14341134e-38 + art_sys_184: -4.70338098e-40 + art_sys_185: -9.62880688e-43 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -67171,189 +67171,189 @@ bins: uncorrelated_uncertainty: 3.70346 - art_sys_1: -2.77738221e-01 art_sys_2: -6.15880279e-01 - art_sys_3: 9.75229312e-15 - art_sys_4: 8.09311746e-14 - art_sys_5: 1.75532377e-14 + art_sys_3: 2.63382655e-15 + art_sys_4: 9.85669451e-14 + art_sys_5: 1.59223480e-14 art_sys_6: -1.39595437e+00 - art_sys_7: -1.71466442e-14 - art_sys_8: -7.69071750e-15 - art_sys_9: 1.13507415e-14 + art_sys_7: 5.18371340e-14 + art_sys_8: 2.65307090e-14 + art_sys_9: 7.67992206e-15 art_sys_10: -3.48361807e-01 - art_sys_11: -6.38019716e-14 - art_sys_12: -2.66913610e-15 - art_sys_13: 1.54251751e+00 - art_sys_14: -3.47010662e-15 - art_sys_15: 3.71348237e-14 - art_sys_16: 1.23818277e-14 + art_sys_11: -1.28184052e-14 + art_sys_12: -4.81451799e-15 + art_sys_13: -1.54251751e+00 + art_sys_14: 1.37446289e-15 + art_sys_15: -3.61917211e-14 + art_sys_16: -1.18356863e-14 art_sys_17: -1.53012526e+00 - art_sys_18: -2.64651310e-14 - art_sys_19: -6.50799286e-14 + art_sys_18: -2.67261103e-14 + art_sys_19: 6.42533240e-14 art_sys_20: 4.51532656e-01 - art_sys_21: -6.35561545e-15 + art_sys_21: -6.24395468e-15 art_sys_22: -1.13162122e-01 - art_sys_23: -1.53244651e-13 - art_sys_24: -1.41079026e-15 - art_sys_25: -3.56012125e-15 - art_sys_26: 1.57056332e-15 - art_sys_27: -4.08889490e-16 + art_sys_23: -1.53085186e-13 + art_sys_24: -1.41575710e-15 + art_sys_25: 3.55699519e-15 + art_sys_26: 1.56990087e-15 + art_sys_27: 4.07929939e-16 art_sys_28: -1.14309874e-03 - art_sys_29: 1.12940110e-16 - art_sys_30: 4.58520296e-16 - art_sys_31: -7.40580131e-17 - art_sys_32: 4.58225540e-17 - art_sys_33: 1.11184904e-17 - art_sys_34: -2.05232074e-19 - art_sys_35: -8.07567296e-19 - art_sys_36: -2.28537275e-17 - art_sys_37: -1.13739499e-14 - art_sys_38: 5.65074011e-18 - art_sys_39: -3.09971643e-04 - art_sys_40: -2.69362439e-15 - art_sys_41: 1.15437898e-15 - art_sys_42: 2.27929089e-18 - art_sys_43: -1.42388589e-14 - art_sys_44: -6.22577140e-19 - art_sys_45: 5.46495932e-05 - art_sys_46: 2.16910703e-15 - art_sys_47: 6.28760705e-20 - art_sys_48: -1.14221464e-15 - art_sys_49: -6.32881448e-15 - art_sys_50: 1.01727769e-19 - art_sys_51: -1.64812794e-19 - art_sys_52: -5.15411575e-16 - art_sys_53: -2.64207392e-06 - art_sys_54: -7.92314469e-18 - art_sys_55: -2.86418876e-16 - art_sys_56: 4.84518852e-07 - art_sys_57: 1.48127694e-19 - art_sys_58: 4.52958238e-19 - art_sys_59: -2.54618686e-19 - art_sys_60: 7.11273404e-20 - art_sys_61: -1.13571068e-19 - art_sys_62: -2.33405987e-20 - art_sys_63: 1.20937364e-20 - art_sys_64: -9.10316457e-21 - art_sys_65: -4.97652557e-21 - art_sys_66: 1.17091037e-16 - art_sys_67: -3.25830102e-21 - art_sys_68: -9.14698320e-22 - art_sys_69: -7.49705232e-17 - art_sys_70: -9.14070073e-17 - art_sys_71: -2.04320002e-15 - art_sys_72: 8.91135423e-08 - art_sys_73: -2.66700050e-19 - art_sys_74: 1.32105305e-16 - art_sys_75: 3.39920006e-23 - art_sys_76: 3.23818625e-20 - art_sys_77: 1.90100336e-19 - art_sys_78: 5.98809468e-20 - art_sys_79: -8.34896903e-24 - art_sys_80: -7.92141702e-16 - art_sys_81: -2.68160705e-21 - art_sys_82: -1.61286860e-21 - art_sys_83: 7.63524619e-21 - art_sys_84: 4.65602664e-17 - art_sys_85: -1.17365778e-21 - art_sys_86: -3.93449142e-21 - art_sys_87: -6.42909339e-23 - art_sys_88: -3.54590041e-23 - art_sys_89: -8.02056416e-24 - art_sys_90: -4.43964966e-15 - art_sys_91: -7.76910734e-15 - art_sys_92: 1.62933479e-17 - art_sys_93: 2.73782258e-09 - art_sys_94: 1.07660850e-16 - art_sys_95: -3.50358424e-17 - art_sys_96: 4.69270448e-25 - art_sys_97: 8.32156325e-19 - art_sys_98: -2.30225336e-17 - art_sys_99: -3.42562624e-10 - art_sys_100: 2.81139343e-21 - art_sys_101: -7.47840514e-19 - art_sys_102: -2.87482251e-26 - art_sys_103: 7.32631131e-24 - art_sys_104: -1.76764160e-17 - art_sys_105: -2.47468117e-27 - art_sys_106: 2.09132061e-18 - art_sys_107: 7.55755213e-12 - art_sys_108: 9.15491902e-25 - art_sys_109: -2.97686243e-22 - art_sys_110: -3.26742893e-27 - art_sys_111: -1.00104620e-18 - art_sys_112: 5.89337442e-25 - art_sys_113: 2.02021086e-28 - art_sys_114: 8.55924850e-19 - art_sys_115: -1.36178888e-24 - art_sys_116: -2.26935499e-23 - art_sys_117: 2.41888026e-27 - art_sys_118: 5.34041009e-19 - art_sys_119: 1.01201349e-24 - art_sys_120: -2.83210665e-19 - art_sys_121: 6.99739337e-25 - art_sys_122: -1.23769454e-19 - art_sys_123: -1.09527015e-25 - art_sys_124: 4.93249244e-20 - art_sys_125: -1.83920560e-20 - art_sys_126: -3.67592606e-24 - art_sys_127: -5.30845552e-21 - art_sys_128: 7.26644224e-26 - art_sys_129: -1.98874439e-26 - art_sys_130: 1.60389911e-25 - art_sys_131: -9.37586459e-27 - art_sys_132: -1.74578635e-21 - art_sys_133: 1.79741951e-25 - art_sys_134: -1.00927261e-24 - art_sys_135: -4.28962123e-22 - art_sys_136: -1.43581354e-24 - art_sys_137: 1.05549070e-22 - art_sys_138: 1.75934406e-24 - art_sys_139: 1.09239055e-23 - art_sys_140: 1.18226478e-14 - art_sys_141: 5.97282889e-23 - art_sys_142: -0.0 - art_sys_143: -9.52744213e-22 - art_sys_144: -4.32992101e-22 - art_sys_145: -1.69869097e-22 - art_sys_146: 3.12054109e-28 - art_sys_147: -1.30534308e-28 - art_sys_148: -2.96185566e-27 - art_sys_149: -8.31931079e-28 - art_sys_150: 2.37372376e-28 - art_sys_151: 3.66392929e-27 - art_sys_152: -5.85559619e-28 - art_sys_153: -1.15926774e-28 - art_sys_154: 3.33596414e-27 - art_sys_155: -1.58520425e-26 - art_sys_156: -5.92694846e-26 - art_sys_157: -2.39808729e-24 - art_sys_158: 0.0 - art_sys_159: -1.19092151e-23 - art_sys_160: -1.19092151e-23 - art_sys_161: -7.42313010e-25 - art_sys_162: 2.44992087e-37 - art_sys_163: 0.0 - art_sys_164: 1.38206034e-37 - art_sys_165: -1.60023654e-33 - art_sys_166: -2.34634997e-35 - art_sys_167: 3.52838985e-34 - art_sys_168: 2.61169667e-34 - art_sys_169: -9.39115868e-34 - art_sys_170: -1.02608547e-33 - art_sys_171: 2.49817959e-32 - art_sys_172: 3.83305918e-32 - art_sys_173: 4.17461024e-33 - art_sys_174: -1.00538271e-37 - art_sys_175: -7.01662245e-34 - art_sys_176: 1.27277414e-34 - art_sys_177: -2.08385955e-34 - art_sys_178: -2.68223522e-35 - art_sys_179: 7.23434835e-36 - art_sys_180: 1.63279342e-37 - art_sys_181: -1.09935939e-36 - art_sys_182: 5.36696091e-37 - art_sys_183: 7.63468462e-39 - art_sys_184: -1.72926657e-42 - art_sys_185: 9.34808626e-39 + art_sys_29: -1.52098905e-17 + art_sys_30: -9.23372582e-16 + art_sys_31: 3.09971643e-04 + art_sys_32: -5.46249653e-17 + art_sys_33: -1.16433174e-15 + art_sys_34: 1.33794578e-16 + art_sys_35: 5.46495932e-05 + art_sys_36: -5.52852870e-17 + art_sys_37: 8.19576690e-18 + art_sys_38: -1.64888587e-18 + art_sys_39: -5.22006981e-19 + art_sys_40: 6.40699853e-20 + art_sys_41: -3.84590292e-19 + art_sys_42: -2.10582631e-19 + art_sys_43: 7.32333911e-19 + art_sys_44: -3.85940396e-18 + art_sys_45: 1.10104956e-18 + art_sys_46: -1.02089214e-19 + art_sys_47: -3.67141767e-15 + art_sys_48: -1.11799735e-15 + art_sys_49: -2.04912833e-14 + art_sys_50: -1.88721915e-20 + art_sys_51: 1.07871932e-19 + art_sys_52: 2.64207392e-06 + art_sys_53: -8.64800402e-15 + art_sys_54: 2.23843497e-16 + art_sys_55: 1.49144932e-17 + art_sys_56: -4.84518813e-07 + art_sys_57: -2.05607790e-19 + art_sys_58: 6.50586165e-22 + art_sys_59: -5.95607184e-17 + art_sys_60: 4.26081990e-19 + art_sys_61: 2.89189484e-19 + art_sys_62: 8.91135556e-08 + art_sys_63: -2.32415594e-18 + art_sys_64: -7.62080018e-20 + art_sys_65: 1.54314828e-21 + art_sys_66: -3.33266220e-20 + art_sys_67: -5.01353634e-21 + art_sys_68: -2.00192450e-21 + art_sys_69: 8.90345430e-21 + art_sys_70: 3.28748866e-21 + art_sys_71: 2.83852469e-21 + art_sys_72: -8.74906751e-23 + art_sys_73: 7.51769588e-23 + art_sys_74: 1.17605480e-18 + art_sys_75: -5.81246454e-23 + art_sys_76: 1.94773831e-20 + art_sys_77: -8.32856632e-20 + art_sys_78: 2.00440819e-20 + art_sys_79: 3.87063406e-23 + art_sys_80: -3.22647597e-20 + art_sys_81: 1.47306832e-17 + art_sys_82: -1.42457751e-15 + art_sys_83: -9.06037742e-21 + art_sys_84: -4.73836329e-21 + art_sys_85: 3.97636291e-21 + art_sys_86: 8.37495914e-22 + art_sys_87: -2.00640134e-18 + art_sys_88: -1.10360834e-19 + art_sys_89: -8.41467261e-23 + art_sys_90: -1.16487576e-21 + art_sys_91: -3.07823515e-17 + art_sys_92: 2.46770291e-23 + art_sys_93: -2.30482994e-23 + art_sys_94: -4.35475987e-23 + art_sys_95: -1.33325016e-17 + art_sys_96: -4.08716872e-15 + art_sys_97: -2.73783067e-09 + art_sys_98: -2.71271814e-17 + art_sys_99: -6.53892470e-17 + art_sys_100: 7.07579058e-16 + art_sys_101: 1.61509993e-15 + art_sys_102: -1.53601230e-16 + art_sys_103: 3.42560162e-10 + art_sys_104: -4.12836214e-17 + art_sys_105: 2.17198669e-23 + art_sys_106: 4.51210705e-17 + art_sys_107: -1.16278378e-19 + art_sys_108: -7.98573731e-26 + art_sys_109: 2.58929467e-27 + art_sys_110: 4.26516809e-18 + art_sys_111: -2.59220366e-16 + art_sys_112: -1.92109588e-18 + art_sys_113: -7.55804396e-12 + art_sys_114: 1.09533733e-27 + art_sys_115: -3.59915003e-19 + art_sys_116: -3.89664442e-23 + art_sys_117: 4.12300354e-27 + art_sys_118: -4.01382333e-19 + art_sys_119: -8.67207519e-24 + art_sys_120: 2.14646040e-20 + art_sys_121: 7.78003223e-27 + art_sys_122: 2.34305465e-18 + art_sys_123: 2.61437927e-25 + art_sys_124: 1.89680252e-19 + art_sys_125: -3.91871152e-28 + art_sys_126: -3.97954925e-25 + art_sys_127: -5.44859854e-26 + art_sys_128: -1.22964881e-19 + art_sys_129: -1.30153058e-27 + art_sys_130: -5.28423069e-26 + art_sys_131: 3.98573009e-28 + art_sys_132: -4.72514270e-20 + art_sys_133: 1.42895447e-25 + art_sys_134: 1.57651317e-24 + art_sys_135: 1.81251006e-20 + art_sys_136: 2.30403168e-28 + art_sys_137: -5.05922617e-26 + art_sys_138: 5.36947375e-21 + art_sys_139: 1.48333324e-25 + art_sys_140: -3.31162748e-29 + art_sys_141: -3.62240605e-26 + art_sys_142: 1.89437353e-21 + art_sys_143: 3.77365097e-26 + art_sys_144: -2.11892824e-27 + art_sys_145: 3.17409639e-22 + art_sys_146: -5.78295089e-26 + art_sys_147: 2.72428719e-28 + art_sys_148: 6.46014964e-30 + art_sys_149: -2.23739756e-23 + art_sys_150: 1.46936090e-24 + art_sys_151: -4.95655506e-24 + art_sys_152: -3.16206302e-27 + art_sys_153: -7.34759193e-24 + art_sys_154: 1.15054493e-14 + art_sys_155: -7.54659685e-26 + art_sys_156: 0.0 + art_sys_157: -1.30725520e-22 + art_sys_158: -0.0 + art_sys_159: 3.22882996e-23 + art_sys_160: 3.95083039e-24 + art_sys_161: 8.29981411e-25 + art_sys_162: 8.29981411e-25 + art_sys_163: -1.11265471e-24 + art_sys_164: -1.11265471e-24 + art_sys_165: 9.66297614e-39 + art_sys_166: -2.97709286e-39 + art_sys_167: -0.0 + art_sys_168: 6.88008786e-34 + art_sys_169: -2.17138735e-33 + art_sys_170: 2.01291663e-33 + art_sys_171: 2.49623880e-32 + art_sys_172: 2.35270259e-33 + art_sys_173: -1.37025304e-34 + art_sys_174: 1.27940130e-34 + art_sys_175: -2.12258544e-35 + art_sys_176: 3.55509648e-36 + art_sys_177: -1.77482836e-37 + art_sys_178: 2.67522532e-38 + art_sys_179: 6.37499358e-38 + art_sys_180: 6.53643601e-37 + art_sys_181: -3.64842549e-37 + art_sys_182: -1.98452948e-36 + art_sys_183: -7.42527859e-38 + art_sys_184: 3.69263757e-40 + art_sys_185: 1.65900015e-42 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -67462,189 +67462,189 @@ bins: uncorrelated_uncertainty: 1.50926000e+00 - art_sys_1: -5.38471507e-02 art_sys_2: 3.94903621e-02 - art_sys_3: -5.70247987e-14 - art_sys_4: 4.61019292e-14 - art_sys_5: -1.30425725e-14 + art_sys_3: 3.44153402e-14 + art_sys_4: 1.60796081e-14 + art_sys_5: 2.78943526e-15 art_sys_6: -1.09030774e-01 - art_sys_7: 2.25122794e-14 - art_sys_8: -1.55073677e-14 - art_sys_9: -2.86070699e-16 + art_sys_7: -1.20838118e-15 + art_sys_8: -3.12305606e-15 + art_sys_9: -7.09067458e-15 art_sys_10: -1.50259086e-01 - art_sys_11: 7.21599614e-14 - art_sys_12: -3.79806169e-15 - art_sys_13: -1.37386664e-01 - art_sys_14: -1.12507597e-15 - art_sys_15: -4.31779367e-15 - art_sys_16: -1.23323234e-15 + art_sys_11: -1.86987649e-14 + art_sys_12: -5.16972734e-16 + art_sys_13: 1.37386664e-01 + art_sys_14: 1.37053806e-15 + art_sys_15: 4.95659457e-15 + art_sys_16: 1.06766592e-16 art_sys_17: -1.10829645e+00 - art_sys_18: -8.49208698e-15 - art_sys_19: -1.68959371e-14 + art_sys_18: -8.21200996e-15 + art_sys_19: 1.84571288e-14 art_sys_20: -7.77156044e-01 - art_sys_21: -1.03134334e-14 + art_sys_21: -1.05556364e-14 art_sys_22: 1.97939796e-01 - art_sys_23: 2.86654387e-13 - art_sys_24: 9.36758606e-16 - art_sys_25: 4.51892724e-15 - art_sys_26: -1.79673022e-15 - art_sys_27: 4.77792670e-16 - art_sys_28: 6.83773606e-03 - art_sys_29: 1.27349324e-15 - art_sys_30: -1.98407776e-15 - art_sys_31: 3.39405835e-16 - art_sys_32: -1.96584327e-16 - art_sys_33: -4.98214148e-17 - art_sys_34: -2.01435258e-18 - art_sys_35: 6.79013371e-19 - art_sys_36: -2.51194051e-16 - art_sys_37: 4.75332516e-14 - art_sys_38: -1.61209833e-17 - art_sys_39: 1.36506946e-03 - art_sys_40: 1.16842517e-14 - art_sys_41: -1.58552588e-15 - art_sys_42: -8.52241560e-18 - art_sys_43: 6.77585553e-14 - art_sys_44: 2.18399445e-18 - art_sys_45: -2.61951660e-04 - art_sys_46: -1.09360110e-14 - art_sys_47: -1.60912999e-19 - art_sys_48: 7.50431988e-15 - art_sys_49: 3.07560704e-14 - art_sys_50: 5.07706497e-20 - art_sys_51: -5.99661124e-19 - art_sys_52: 1.79844153e-15 - art_sys_53: 1.34784054e-05 - art_sys_54: 3.70839201e-17 - art_sys_55: 4.40784682e-16 - art_sys_56: -2.26801105e-06 - art_sys_57: -7.50917342e-19 - art_sys_58: -2.27599349e-18 - art_sys_59: 2.12953314e-18 - art_sys_60: 6.62202153e-19 - art_sys_61: 5.57935846e-19 - art_sys_62: 1.13409663e-19 - art_sys_63: -5.86381126e-20 - art_sys_64: 4.43392437e-20 - art_sys_65: 2.38514723e-20 - art_sys_66: -5.70662568e-16 - art_sys_67: 1.59020555e-20 - art_sys_68: 4.48559248e-21 - art_sys_69: 3.53869590e-16 - art_sys_70: 2.19757665e-16 - art_sys_71: 9.95760987e-15 - art_sys_72: -4.34302666e-07 - art_sys_73: 1.28034921e-18 - art_sys_74: -6.22385768e-16 - art_sys_75: -1.68533147e-22 - art_sys_76: -1.66819891e-19 - art_sys_77: -8.93954017e-19 - art_sys_78: -2.82599760e-19 - art_sys_79: -6.32567225e-24 - art_sys_80: 3.72449755e-15 - art_sys_81: 1.20775490e-20 - art_sys_82: 7.66853078e-21 - art_sys_83: -3.61342663e-20 - art_sys_84: -2.19671558e-16 - art_sys_85: 5.62356679e-21 - art_sys_86: 1.84982916e-20 - art_sys_87: 3.10398617e-22 - art_sys_88: 1.66232662e-22 - art_sys_89: 3.92427252e-23 - art_sys_90: 2.08987172e-14 - art_sys_91: 3.65961948e-14 - art_sys_92: -7.91544988e-17 - art_sys_93: -1.28989060e-08 - art_sys_94: -5.36628134e-16 - art_sys_95: 1.56022933e-16 - art_sys_96: -2.13794027e-24 - art_sys_97: -3.95165187e-18 - art_sys_98: 1.04951646e-16 - art_sys_99: 1.66212295e-09 - art_sys_100: -1.30420412e-20 - art_sys_101: 9.52783175e-18 - art_sys_102: 6.55723021e-26 - art_sys_103: -1.20900731e-23 - art_sys_104: 7.95381868e-17 - art_sys_105: -7.61976809e-26 - art_sys_106: -1.29867488e-17 - art_sys_107: -3.76704591e-11 - art_sys_108: 3.37025212e-25 - art_sys_109: 1.20613035e-21 - art_sys_110: 1.56347958e-26 - art_sys_111: 1.70421177e-18 - art_sys_112: -1.47883066e-24 - art_sys_113: -1.88736704e-27 - art_sys_114: -1.33685527e-18 - art_sys_115: 2.07718277e-24 - art_sys_116: 3.73126452e-23 - art_sys_117: 5.60489361e-28 - art_sys_118: -8.33645654e-19 - art_sys_119: -9.17172310e-25 - art_sys_120: 4.41772423e-19 - art_sys_121: -8.39991816e-25 - art_sys_122: 1.93093033e-19 - art_sys_123: 1.56919543e-25 - art_sys_124: -7.68890465e-20 - art_sys_125: 2.88899927e-20 - art_sys_126: 1.79684220e-24 - art_sys_127: 8.27566463e-21 - art_sys_128: -1.67424661e-25 - art_sys_129: 7.87469684e-26 - art_sys_130: -4.12686013e-25 - art_sys_131: 1.66702832e-25 - art_sys_132: 2.20315020e-21 - art_sys_133: -5.04315337e-25 - art_sys_134: 2.07897786e-24 - art_sys_135: 9.17985416e-22 - art_sys_136: 4.78855686e-24 - art_sys_137: -3.77134464e-22 - art_sys_138: -7.78253026e-24 - art_sys_139: -4.98564691e-23 - art_sys_140: -5.60646902e-14 - art_sys_141: -2.84148652e-22 - art_sys_142: 0.0 - art_sys_143: 4.52089920e-21 - art_sys_144: 2.05415179e-21 - art_sys_145: 8.05978268e-22 - art_sys_146: -6.34923221e-28 - art_sys_147: 2.64030789e-28 - art_sys_148: 6.54923136e-27 - art_sys_149: 1.81805079e-28 - art_sys_150: 1.18440338e-28 - art_sys_151: -1.60182003e-26 - art_sys_152: 1.65345301e-27 - art_sys_153: 4.17848913e-28 - art_sys_154: -1.54336500e-26 - art_sys_155: 7.58650541e-26 - art_sys_156: 2.83554799e-25 - art_sys_157: 1.13723347e-23 - art_sys_158: -0.0 - art_sys_159: 5.66013670e-23 - art_sys_160: 5.66013670e-23 - art_sys_161: 3.51642381e-24 - art_sys_162: -1.16023702e-36 - art_sys_163: -0.0 - art_sys_164: -6.54399910e-37 - art_sys_165: -8.38483231e-34 - art_sys_166: 1.43327204e-34 - art_sys_167: -3.10027962e-34 - art_sys_168: -1.91556153e-34 - art_sys_169: 1.86887940e-33 - art_sys_170: -2.43328768e-33 - art_sys_171: 3.38037445e-33 - art_sys_172: 4.33243792e-32 - art_sys_173: -2.80650700e-32 - art_sys_174: 4.77470586e-37 - art_sys_175: 1.73863214e-34 - art_sys_176: 6.38619565e-34 - art_sys_177: 1.86635316e-34 - art_sys_178: 5.48732958e-35 - art_sys_179: 1.65557289e-36 - art_sys_180: -8.18681946e-37 - art_sys_181: -1.16830264e-36 - art_sys_182: 1.22739305e-36 - art_sys_183: 1.11594490e-38 - art_sys_184: -8.50918190e-41 - art_sys_185: -4.43033399e-38 + art_sys_23: 2.86320091e-13 + art_sys_24: 9.56162155e-16 + art_sys_25: -4.50561877e-15 + art_sys_26: -1.79162726e-15 + art_sys_27: -4.72506090e-16 + art_sys_28: 6.83773607e-03 + art_sys_29: -2.71207428e-16 + art_sys_30: 1.53364894e-15 + art_sys_31: -1.36506946e-03 + art_sys_32: 5.93346854e-17 + art_sys_33: 1.62673448e-15 + art_sys_34: -2.14938092e-16 + art_sys_35: -2.61951660e-04 + art_sys_36: 3.18957520e-16 + art_sys_37: -3.80290209e-17 + art_sys_38: 6.85811227e-18 + art_sys_39: 2.26661401e-18 + art_sys_40: -7.02065005e-19 + art_sys_41: 2.69190356e-19 + art_sys_42: 3.17456707e-19 + art_sys_43: 2.35602382e-20 + art_sys_44: -2.56692236e-18 + art_sys_45: 9.08022609e-19 + art_sys_46: -7.47644943e-20 + art_sys_47: 1.87206499e-14 + art_sys_48: 8.89783856e-15 + art_sys_49: 9.39385249e-14 + art_sys_50: -8.25462216e-20 + art_sys_51: -3.41800447e-19 + art_sys_52: -1.34784054e-05 + art_sys_53: 4.17635926e-14 + art_sys_54: -1.07679479e-15 + art_sys_55: 8.62961776e-16 + art_sys_56: 2.26801086e-06 + art_sys_57: 1.34265646e-19 + art_sys_58: -2.03285772e-21 + art_sys_59: 6.77479403e-17 + art_sys_60: -9.78907695e-19 + art_sys_61: -1.34964800e-18 + art_sys_62: -4.34302730e-07 + art_sys_63: 1.14553191e-17 + art_sys_64: 5.50793005e-19 + art_sys_65: 1.54276464e-20 + art_sys_66: 1.70634860e-19 + art_sys_67: 2.41563609e-20 + art_sys_68: 9.61728074e-21 + art_sys_69: -4.11311913e-20 + art_sys_70: -1.55411865e-20 + art_sys_71: -1.33878188e-20 + art_sys_72: 4.11423416e-22 + art_sys_73: -3.51653292e-22 + art_sys_74: -5.52786910e-18 + art_sys_75: 2.73504665e-22 + art_sys_76: -8.69396973e-20 + art_sys_77: 3.95143922e-19 + art_sys_78: -9.07200452e-20 + art_sys_79: -1.56559464e-22 + art_sys_80: 1.52728044e-19 + art_sys_81: -6.94017623e-17 + art_sys_82: 6.71160532e-15 + art_sys_83: 4.24915652e-20 + art_sys_84: 2.25713018e-20 + art_sys_85: -1.84172868e-20 + art_sys_86: -3.87629343e-21 + art_sys_87: 9.73498095e-18 + art_sys_88: 5.57921788e-19 + art_sys_89: 4.22551451e-22 + art_sys_90: 5.11716384e-21 + art_sys_91: 1.59689445e-16 + art_sys_92: -1.15550300e-22 + art_sys_93: 1.10403064e-22 + art_sys_94: 2.13187568e-22 + art_sys_95: 6.28079430e-17 + art_sys_96: 1.91999560e-14 + art_sys_97: 1.28989445e-08 + art_sys_98: 1.31618588e-16 + art_sys_99: 3.13936548e-16 + art_sys_100: -3.43319380e-15 + art_sys_101: -7.84052700e-15 + art_sys_102: 7.65623018e-16 + art_sys_103: -1.66211132e-09 + art_sys_104: 2.05743352e-16 + art_sys_105: -1.02972434e-22 + art_sys_106: -2.17637165e-16 + art_sys_107: 5.79719865e-19 + art_sys_108: 3.82861831e-25 + art_sys_109: -1.32150494e-26 + art_sys_110: -2.02261204e-17 + art_sys_111: 1.29564716e-15 + art_sys_112: 9.10789456e-18 + art_sys_113: 3.76729575e-11 + art_sys_114: -6.22453552e-27 + art_sys_115: -1.48917632e-18 + art_sys_116: 1.93017746e-22 + art_sys_117: -3.59628056e-27 + art_sys_118: 4.60291386e-18 + art_sys_119: 5.92371092e-23 + art_sys_120: -1.01799618e-19 + art_sys_121: -4.05713338e-26 + art_sys_122: -1.27951523e-17 + art_sys_123: -3.62930466e-25 + art_sys_124: -3.34783953e-21 + art_sys_125: 3.89616190e-28 + art_sys_126: -8.27110463e-24 + art_sys_127: 1.01582811e-26 + art_sys_128: 1.90146122e-19 + art_sys_129: 3.09791855e-27 + art_sys_130: -2.50761389e-26 + art_sys_131: -2.06472154e-27 + art_sys_132: 6.73548606e-20 + art_sys_133: -1.58280873e-25 + art_sys_134: 1.96766581e-25 + art_sys_135: -2.75608595e-20 + art_sys_136: -3.34124251e-28 + art_sys_137: 2.31214605e-25 + art_sys_138: -8.54771466e-21 + art_sys_139: -2.83028095e-25 + art_sys_140: 9.77110791e-29 + art_sys_141: -9.58801188e-27 + art_sys_142: -2.87888977e-21 + art_sys_143: -5.76954110e-26 + art_sys_144: 8.34631499e-27 + art_sys_145: -4.03092311e-22 + art_sys_146: 2.10069580e-25 + art_sys_147: -5.29112343e-28 + art_sys_148: -3.75524345e-29 + art_sys_149: -1.07959639e-23 + art_sys_150: -3.62620280e-24 + art_sys_151: 2.37332967e-23 + art_sys_152: 1.18945791e-26 + art_sys_153: 3.53354421e-23 + art_sys_154: -5.45603088e-14 + art_sys_155: 3.56493661e-25 + art_sys_156: -0.0 + art_sys_157: 6.18360550e-22 + art_sys_158: 0.0 + art_sys_159: -1.52864291e-22 + art_sys_160: -1.87642389e-23 + art_sys_161: -3.95733404e-24 + art_sys_162: -3.95733404e-24 + art_sys_163: 5.25021315e-24 + art_sys_164: 5.25021315e-24 + art_sys_165: -4.55344893e-38 + art_sys_166: 1.40223579e-38 + art_sys_167: 0.0 + art_sys_168: -1.25683833e-33 + art_sys_169: 5.97041932e-33 + art_sys_170: -9.77919987e-33 + art_sys_171: -3.01777244e-32 + art_sys_172: -4.94181710e-33 + art_sys_173: -4.59429548e-34 + art_sys_174: 7.46249289e-34 + art_sys_175: -1.42790315e-34 + art_sys_176: 1.29740148e-35 + art_sys_177: 2.31042290e-37 + art_sys_178: -1.88447431e-38 + art_sys_179: -3.01960576e-37 + art_sys_180: -3.09331424e-36 + art_sys_181: -1.18836421e-36 + art_sys_182: 6.94644465e-36 + art_sys_183: 2.38499361e-37 + art_sys_184: -8.20274710e-40 + art_sys_185: -1.62343711e-42 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -67753,189 +67753,189 @@ bins: uncorrelated_uncertainty: 6.15716000e-01 - art_sys_1: 2.26037332e-03 art_sys_2: 2.78712618e-02 - art_sys_3: 1.77374847e-14 - art_sys_4: -3.87221242e-14 - art_sys_5: 4.00786588e-14 + art_sys_3: 5.27532591e-16 + art_sys_4: -2.25913694e-15 + art_sys_5: 1.66180690e-14 art_sys_6: 4.29249682e-02 - art_sys_7: 3.60665751e-14 - art_sys_8: -2.40084126e-15 - art_sys_9: -3.72816680e-15 + art_sys_7: -4.21138440e-15 + art_sys_8: -5.60698441e-15 + art_sys_9: 1.48615068e-14 art_sys_10: 2.10163913e-03 - art_sys_11: -1.42150163e-13 - art_sys_12: 8.44079760e-15 - art_sys_13: -1.52718817e-01 - art_sys_14: -1.36714507e-15 - art_sys_15: -2.24155423e-15 - art_sys_16: -2.12604148e-15 + art_sys_11: 1.45083197e-14 + art_sys_12: 6.58921445e-18 + art_sys_13: 1.52718817e-01 + art_sys_14: 1.21343929e-15 + art_sys_15: 3.94197847e-15 + art_sys_16: 1.56700990e-15 art_sys_17: -4.72527386e-02 - art_sys_18: 2.13027854e-15 - art_sys_19: 1.82360002e-15 + art_sys_18: 3.04598032e-15 + art_sys_19: -4.37681431e-15 art_sys_20: -6.05817022e-01 - art_sys_21: -1.26611697e-15 + art_sys_21: -8.58883150e-16 art_sys_22: -3.58815494e-01 - art_sys_23: 2.04860662e-13 - art_sys_24: 2.95576440e-15 - art_sys_25: -6.10837739e-15 - art_sys_26: 2.08679022e-15 - art_sys_27: -5.97689434e-16 - art_sys_28: -7.95517143e-03 - art_sys_29: -4.69147604e-15 - art_sys_30: 6.44829481e-15 - art_sys_31: -1.04972211e-15 - art_sys_32: 6.39525186e-16 - art_sys_33: 1.57587948e-16 - art_sys_34: 6.28799543e-18 - art_sys_35: -3.34007064e-18 - art_sys_36: 2.73585003e-16 - art_sys_37: -1.51397736e-13 - art_sys_38: 5.23447741e-17 - art_sys_39: -4.43963901e-03 - art_sys_40: -3.78557351e-14 - art_sys_41: 2.34455570e-15 - art_sys_42: 2.93223543e-18 - art_sys_43: -2.07492926e-13 - art_sys_44: -1.73104101e-18 - art_sys_45: 8.03503824e-04 - art_sys_46: 3.82764405e-14 - art_sys_47: 3.08278264e-20 - art_sys_48: -3.07744436e-14 - art_sys_49: -1.16760632e-13 - art_sys_50: 2.32260548e-20 - art_sys_51: 6.52588851e-20 - art_sys_52: -7.62703591e-15 - art_sys_53: -4.83973827e-05 - art_sys_54: -1.48473254e-16 - art_sys_55: -7.18265919e-16 - art_sys_56: 8.60434215e-06 - art_sys_57: 2.11871140e-18 - art_sys_58: 8.61041565e-18 - art_sys_59: -3.67929498e-18 - art_sys_60: 8.72100111e-20 - art_sys_61: -2.09831532e-18 - art_sys_62: -4.31024559e-19 - art_sys_63: 2.26173267e-19 - art_sys_64: -1.67701633e-19 - art_sys_65: -8.76477762e-20 - art_sys_66: 2.16586931e-15 - art_sys_67: -6.01714082e-20 - art_sys_68: -1.67334190e-20 - art_sys_69: -1.43772728e-15 - art_sys_70: -6.48334498e-16 - art_sys_71: -3.77931076e-14 - art_sys_72: 1.64832833e-06 - art_sys_73: -6.91567530e-18 - art_sys_74: 2.53344114e-15 - art_sys_75: 7.61202330e-22 - art_sys_76: 5.28490927e-19 - art_sys_77: 3.65449742e-18 - art_sys_78: 1.15010731e-18 - art_sys_79: -3.78697603e-23 - art_sys_80: -1.52185769e-14 - art_sys_81: -5.23961982e-20 - art_sys_82: -3.09954684e-20 - art_sys_83: 1.46325262e-19 - art_sys_84: 8.93145733e-16 - art_sys_85: -2.23834159e-20 - art_sys_86: -7.54068932e-20 - art_sys_87: -1.26276735e-21 - art_sys_88: -6.58907605e-22 - art_sys_89: -1.55821779e-22 - art_sys_90: -8.51662127e-14 - art_sys_91: -1.48697692e-13 - art_sys_92: 3.08425388e-16 - art_sys_93: 5.25529605e-08 - art_sys_94: 2.37244103e-15 - art_sys_95: -6.26470814e-16 - art_sys_96: 8.17524301e-24 - art_sys_97: 1.59441710e-17 - art_sys_98: -4.51718995e-16 - art_sys_99: -6.48840811e-09 - art_sys_100: 5.23295603e-20 - art_sys_101: -4.36628317e-17 - art_sys_102: -2.90004347e-25 - art_sys_103: 1.12436488e-23 - art_sys_104: -3.32840357e-16 - art_sys_105: 2.56025051e-25 - art_sys_106: 5.44089820e-17 - art_sys_107: 1.66464971e-10 - art_sys_108: 1.38309298e-24 - art_sys_109: -4.99732659e-21 - art_sys_110: -8.42819868e-26 - art_sys_111: -3.16242833e-18 - art_sys_112: 1.50931519e-24 - art_sys_113: -5.43340666e-30 - art_sys_114: 2.05417827e-18 - art_sys_115: 4.86201812e-26 - art_sys_116: -4.29557035e-23 - art_sys_117: 1.02737338e-27 - art_sys_118: 1.27704306e-18 - art_sys_119: 4.55225823e-27 - art_sys_120: -6.73415076e-19 - art_sys_121: 5.39367945e-24 - art_sys_122: -2.93479857e-19 - art_sys_123: -2.02047560e-25 - art_sys_124: 1.16416359e-19 - art_sys_125: -4.45753064e-20 - art_sys_126: -3.75411356e-24 - art_sys_127: -1.25595338e-20 - art_sys_128: 4.31882984e-25 - art_sys_129: -2.90958050e-25 - art_sys_130: 1.24209355e-24 - art_sys_131: -8.25937511e-25 - art_sys_132: -1.40796970e-21 - art_sys_133: 1.42091558e-24 - art_sys_134: -5.04614512e-24 - art_sys_135: -2.32739799e-21 - art_sys_136: -1.68060730e-23 - art_sys_137: 1.36722439e-21 - art_sys_138: 3.06384866e-23 - art_sys_139: 1.98263454e-22 - art_sys_140: 2.25605379e-13 - art_sys_141: 1.14454621e-21 - art_sys_142: -0.0 - art_sys_143: -1.81954518e-20 - art_sys_144: -8.26691007e-21 - art_sys_145: -3.24382726e-21 - art_sys_146: 2.24749959e-27 - art_sys_147: -1.76973095e-28 - art_sys_148: -1.80412629e-26 - art_sys_149: -3.12380042e-27 - art_sys_150: -5.23448391e-28 - art_sys_151: 6.23884866e-26 - art_sys_152: -5.67320595e-27 - art_sys_153: -1.53589211e-27 - art_sys_154: 6.16523047e-26 - art_sys_155: -3.06163101e-25 - art_sys_156: -1.14408807e-24 - art_sys_157: -4.57628251e-23 - art_sys_158: 0.0 - art_sys_159: -2.27921167e-22 - art_sys_160: -2.27921167e-22 - art_sys_161: -1.41452730e-23 - art_sys_162: 4.66680811e-36 - art_sys_163: 0.0 - art_sys_164: 2.63203855e-36 - art_sys_165: 1.08151834e-34 - art_sys_166: -9.96802283e-35 - art_sys_167: -5.87016375e-35 - art_sys_168: -2.81408668e-35 - art_sys_169: 4.91068899e-35 - art_sys_170: -1.69112085e-33 - art_sys_171: -1.72724779e-34 - art_sys_172: 1.22912571e-35 - art_sys_173: -2.55425038e-35 - art_sys_174: -1.92223302e-36 - art_sys_175: -2.79870600e-36 - art_sys_176: -2.01979572e-37 - art_sys_177: 8.85952038e-38 - art_sys_178: 2.88208589e-38 - art_sys_179: 2.05916252e-38 - art_sys_180: 8.39739960e-39 - art_sys_181: -1.33433740e-40 - art_sys_182: -1.64949878e-42 - art_sys_183: 2.55177501e-41 - art_sys_184: -1.45131073e-41 - art_sys_185: 1.78240983e-37 + art_sys_23: 2.05290586e-13 + art_sys_24: 2.86386773e-15 + art_sys_25: 6.08944084e-15 + art_sys_26: 2.07929022e-15 + art_sys_27: 5.90321525e-16 + art_sys_28: -7.95517144e-03 + art_sys_29: 3.25662617e-16 + art_sys_30: -1.80311493e-15 + art_sys_31: 4.43963901e-03 + art_sys_32: -4.79610545e-17 + art_sys_33: -2.46254813e-15 + art_sys_34: 2.95841080e-16 + art_sys_35: 8.03503824e-04 + art_sys_36: -2.59938133e-17 + art_sys_37: 1.53918862e-16 + art_sys_38: -2.27670702e-17 + art_sys_39: -8.76608187e-18 + art_sys_40: 2.49412207e-18 + art_sys_41: -2.06409647e-18 + art_sys_42: -1.27583524e-18 + art_sys_43: 1.07704523e-18 + art_sys_44: 1.44661766e-20 + art_sys_45: -5.56010094e-20 + art_sys_46: 1.32330510e-19 + art_sys_47: -6.72593794e-14 + art_sys_48: -3.23973407e-14 + art_sys_49: -3.61239602e-13 + art_sys_50: 1.26621345e-19 + art_sys_51: 1.06126159e-19 + art_sys_52: 4.83973826e-05 + art_sys_53: -1.58049201e-13 + art_sys_54: 4.21666033e-15 + art_sys_55: -4.40304368e-15 + art_sys_56: -8.60434145e-06 + art_sys_57: 1.18473208e-20 + art_sys_58: -5.64794321e-22 + art_sys_59: -7.04970116e-17 + art_sys_60: 3.55804559e-18 + art_sys_61: 5.50473410e-18 + art_sys_62: 1.64832857e-06 + art_sys_63: -4.27843674e-17 + art_sys_64: -2.23986552e-18 + art_sys_65: -9.28616546e-20 + art_sys_66: -7.03855706e-19 + art_sys_67: -1.04006052e-19 + art_sys_68: -3.73849234e-20 + art_sys_69: 1.70952943e-19 + art_sys_70: 6.30161462e-20 + art_sys_71: 5.45854013e-20 + art_sys_72: -1.68825554e-21 + art_sys_73: 1.45099650e-21 + art_sys_74: 2.24792471e-17 + art_sys_75: -1.12159661e-21 + art_sys_76: 3.67859646e-19 + art_sys_77: -1.59202247e-18 + art_sys_78: 3.57735045e-19 + art_sys_79: 8.40507241e-22 + art_sys_80: -6.17852717e-19 + art_sys_81: 2.82757916e-16 + art_sys_82: -2.73444647e-14 + art_sys_83: -1.78521494e-19 + art_sys_84: -9.03073366e-20 + art_sys_85: 7.50794167e-20 + art_sys_86: 1.61872180e-20 + art_sys_87: -3.80098771e-17 + art_sys_88: -2.44609605e-18 + art_sys_89: -1.55284039e-21 + art_sys_90: -2.13579682e-20 + art_sys_91: -6.53498940e-16 + art_sys_92: 4.74407776e-22 + art_sys_93: -4.52184355e-22 + art_sys_94: -9.61590296e-22 + art_sys_95: -2.55921469e-16 + art_sys_96: -7.81287593e-14 + art_sys_97: -5.25531147e-08 + art_sys_98: -5.13815712e-16 + art_sys_99: -1.22430752e-15 + art_sys_100: 1.34021124e-14 + art_sys_101: 3.06213757e-14 + art_sys_102: -3.38328725e-15 + art_sys_103: 6.48836104e-09 + art_sys_104: -8.03717031e-16 + art_sys_105: 4.14439596e-22 + art_sys_106: 9.52881420e-16 + art_sys_107: -2.56204500e-18 + art_sys_108: -1.66302241e-24 + art_sys_109: 5.94073358e-26 + art_sys_110: 8.13903569e-17 + art_sys_111: -5.73014692e-15 + art_sys_112: -3.66342053e-17 + art_sys_113: -1.66476442e-10 + art_sys_114: 2.36388106e-26 + art_sys_115: 1.09233310e-17 + art_sys_116: -7.85910956e-22 + art_sys_117: -2.15620851e-26 + art_sys_118: -2.18123627e-17 + art_sys_119: -2.31454434e-22 + art_sys_120: 4.09654626e-19 + art_sys_121: 1.75443912e-25 + art_sys_122: 5.35584333e-17 + art_sys_123: -1.31179329e-25 + art_sys_124: -1.09252896e-18 + art_sys_125: -4.92639979e-28 + art_sys_126: 5.11874431e-23 + art_sys_127: -4.43120484e-25 + art_sys_128: -2.80954305e-19 + art_sys_129: -2.77668444e-27 + art_sys_130: 5.68680880e-25 + art_sys_131: 5.05114375e-27 + art_sys_132: -7.79749811e-20 + art_sys_133: -2.84538726e-26 + art_sys_134: -1.13777944e-23 + art_sys_135: 3.91360983e-20 + art_sys_136: 1.54653696e-29 + art_sys_137: -9.83336167e-25 + art_sys_138: 1.36296050e-20 + art_sys_139: 6.40034376e-25 + art_sys_140: -2.39194464e-28 + art_sys_141: -7.11183417e-26 + art_sys_142: 4.05182906e-21 + art_sys_143: 8.45368909e-26 + art_sys_144: -3.28521480e-26 + art_sys_145: 2.53877190e-22 + art_sys_146: -7.83660119e-25 + art_sys_147: 1.19825954e-27 + art_sys_148: 1.69656955e-28 + art_sys_149: 1.87726991e-22 + art_sys_150: 1.05999828e-23 + art_sys_151: -9.61255888e-23 + art_sys_152: -4.43243653e-26 + art_sys_153: -1.43059458e-22 + art_sys_154: 2.19550492e-13 + art_sys_155: -1.43468411e-24 + art_sys_156: 0.0 + art_sys_157: -2.48586881e-21 + art_sys_158: -0.0 + art_sys_159: 6.14481933e-22 + art_sys_160: 7.55238934e-23 + art_sys_161: 1.59399056e-23 + art_sys_162: 1.59399056e-23 + art_sys_163: -2.10785376e-23 + art_sys_164: -2.10785376e-23 + art_sys_165: 1.82735935e-37 + art_sys_166: -5.62650087e-38 + art_sys_167: -0.0 + art_sys_168: -9.29166735e-36 + art_sys_169: -1.47692887e-35 + art_sys_170: 1.86804354e-33 + art_sys_171: 1.59033685e-33 + art_sys_172: -4.28180844e-34 + art_sys_173: -1.09416337e-33 + art_sys_174: -1.78996989e-36 + art_sys_175: -4.69942279e-37 + art_sys_176: -1.53856872e-37 + art_sys_177: 8.01668304e-38 + art_sys_178: 7.09600948e-39 + art_sys_179: 1.21563934e-36 + art_sys_180: 1.24324276e-35 + art_sys_181: 8.40297829e-37 + art_sys_182: -8.13094789e-41 + art_sys_183: 1.34692857e-41 + art_sys_184: -1.05717479e-41 + art_sys_185: -5.36330589e-42 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -68044,189 +68044,189 @@ bins: uncorrelated_uncertainty: 0.245217 - art_sys_1: 1.79374360e-03 art_sys_2: 2.88932275e-03 - art_sys_3: -8.51942451e-15 - art_sys_4: 4.18106467e-14 - art_sys_5: -2.47243138e-15 + art_sys_3: -8.78678526e-15 + art_sys_4: 4.42563966e-14 + art_sys_5: -8.87792168e-17 art_sys_6: 8.97653902e-03 - art_sys_7: -3.51616880e-14 - art_sys_8: 1.17405343e-15 - art_sys_9: -7.87610768e-15 + art_sys_7: -2.50730988e-16 + art_sys_8: -4.53264123e-15 + art_sys_9: 6.91597897e-15 art_sys_10: 6.63353320e-03 - art_sys_11: -2.20721907e-13 - art_sys_12: -4.40408854e-16 - art_sys_13: -2.13242765e-03 - art_sys_14: -1.70649856e-16 - art_sys_15: 1.91992236e-15 - art_sys_16: 2.44940886e-16 + art_sys_11: -7.49945605e-14 + art_sys_12: 2.45916850e-15 + art_sys_13: 2.13242765e-03 + art_sys_14: 2.02913388e-16 + art_sys_15: -5.38738002e-15 + art_sys_16: -2.19368970e-15 art_sys_17: 5.83266822e-02 - art_sys_18: 1.40750939e-15 - art_sys_19: 1.77807730e-15 + art_sys_18: 1.05925103e-16 + art_sys_19: -9.31103174e-17 art_sys_20: -6.46581583e-04 - art_sys_21: 1.02982525e-16 + art_sys_21: 4.39944567e-16 art_sys_22: -5.99093398e-02 - art_sys_23: -1.59623138e-15 - art_sys_24: 6.39712070e-17 - art_sys_25: -2.50738817e-15 - art_sys_26: 1.01196224e-15 - art_sys_27: -7.73816321e-16 - art_sys_28: 8.51262056e-02 - art_sys_29: 1.70945395e-14 - art_sys_30: -2.16512307e-14 - art_sys_31: 4.62119411e-15 - art_sys_32: -2.08856552e-15 - art_sys_33: -6.27932452e-16 - art_sys_34: -5.83570388e-17 - art_sys_35: -1.77323178e-18 - art_sys_36: -4.65393494e-15 - art_sys_37: 5.37304043e-13 - art_sys_38: -1.79572176e-16 - art_sys_39: 1.57315388e-02 - art_sys_40: 1.33938401e-13 - art_sys_41: -4.19836951e-15 - art_sys_42: -1.38196915e-17 - art_sys_43: 9.91468440e-13 - art_sys_44: 8.11961506e-18 - art_sys_45: -3.84263668e-03 - art_sys_46: -1.56278150e-13 - art_sys_47: -3.50866400e-19 - art_sys_48: 1.32776412e-13 - art_sys_49: 4.94665473e-13 - art_sys_50: -1.53015328e-19 - art_sys_51: -2.59308839e-19 - art_sys_52: 2.81577907e-14 - art_sys_53: 1.91589136e-04 - art_sys_54: 6.08249802e-16 - art_sys_55: 1.80638821e-15 - art_sys_56: -3.61743321e-05 - art_sys_57: -9.22886023e-18 - art_sys_58: -3.64226442e-17 - art_sys_59: 1.99326024e-17 - art_sys_60: -1.69468485e-18 - art_sys_61: 8.94435013e-18 - art_sys_62: 1.82664524e-18 - art_sys_63: -9.48306847e-19 - art_sys_64: 6.97718509e-19 - art_sys_65: 3.82515274e-19 - art_sys_66: -9.17711563e-15 - art_sys_67: 2.55477730e-19 - art_sys_68: 7.17811338e-20 - art_sys_69: 5.84667268e-15 - art_sys_70: 2.44391429e-15 - art_sys_71: 1.60134765e-13 - art_sys_72: -6.98423341e-06 - art_sys_73: 1.95397545e-17 - art_sys_74: -1.02855135e-14 - art_sys_75: -3.06056773e-21 - art_sys_76: -2.76532918e-18 - art_sys_77: -1.47818815e-17 - art_sys_78: -4.66781166e-18 - art_sys_79: 1.05998189e-22 - art_sys_80: 6.15972114e-14 - art_sys_81: 2.02144073e-19 - art_sys_82: 1.26055714e-19 - art_sys_83: -5.96535736e-19 - art_sys_84: -3.62981691e-15 - art_sys_85: 9.20253552e-20 - art_sys_86: 3.05690326e-19 - art_sys_87: 5.11726341e-21 - art_sys_88: 2.84386867e-21 - art_sys_89: 6.03951220e-22 - art_sys_90: 3.45435582e-13 - art_sys_91: 6.06416964e-13 - art_sys_92: -1.29815254e-15 - art_sys_93: -2.13215426e-07 - art_sys_94: -8.38670211e-15 - art_sys_95: 2.62832047e-15 - art_sys_96: -3.45671147e-23 - art_sys_97: -6.66060800e-17 - art_sys_98: 1.75040340e-15 - art_sys_99: 2.72680027e-08 - art_sys_100: -2.19752068e-19 - art_sys_101: 1.52303319e-16 - art_sys_102: 9.98940859e-25 - art_sys_103: -9.19868128e-23 - art_sys_104: 1.22474415e-15 - art_sys_105: -1.70812692e-24 - art_sys_106: -2.41899852e-16 - art_sys_107: -5.88751252e-10 - art_sys_108: -3.01299757e-24 - art_sys_109: 2.19914373e-20 - art_sys_110: 2.97562236e-25 - art_sys_111: 7.98295862e-18 - art_sys_112: -5.08114243e-24 - art_sys_113: -1.43483916e-26 - art_sys_114: -4.36532275e-18 - art_sys_115: 1.65520092e-23 - art_sys_116: 1.14025831e-22 - art_sys_117: -1.48506924e-26 - art_sys_118: -2.71747385e-18 - art_sys_119: 8.17304651e-25 - art_sys_120: 1.42788629e-18 - art_sys_121: -2.28770195e-23 - art_sys_122: 6.20559644e-19 - art_sys_123: 5.90772730e-25 - art_sys_124: -2.45190576e-19 - art_sys_125: 9.67376873e-20 - art_sys_126: 1.77359259e-23 - art_sys_127: 2.65372687e-20 - art_sys_128: -1.54334060e-24 - art_sys_129: 1.16297213e-24 - art_sys_130: -4.63809175e-24 - art_sys_131: 3.64346346e-24 - art_sys_132: -3.47217061e-21 - art_sys_133: -5.83424550e-24 - art_sys_134: 1.69644333e-23 - art_sys_135: 8.03158922e-21 - art_sys_136: 6.73348743e-23 - art_sys_137: -5.54458489e-21 - art_sys_138: -1.27695405e-22 - art_sys_139: -8.29042567e-22 - art_sys_140: -9.46928997e-13 - art_sys_141: -4.80522050e-21 - art_sys_142: 0.0 - art_sys_143: 7.63762154e-20 - art_sys_144: 3.47000912e-20 - art_sys_145: 1.36156955e-20 - art_sys_146: -8.45124786e-27 - art_sys_147: -7.12587655e-29 - art_sys_148: 7.52546897e-26 - art_sys_149: 1.57913835e-26 - art_sys_150: 1.75647873e-27 - art_sys_151: -2.57954684e-25 - art_sys_152: 2.21927225e-26 - art_sys_153: 6.31064926e-27 - art_sys_154: -2.58037507e-25 - art_sys_155: 1.28587809e-24 - art_sys_156: 4.80570653e-24 - art_sys_157: 1.92079622e-22 - art_sys_158: -0.0 - art_sys_159: 9.56856481e-22 - art_sys_160: 9.56856481e-22 - art_sys_161: 5.93669601e-23 - art_sys_162: -1.95858410e-35 - art_sys_163: -0.0 - art_sys_164: -1.10460539e-35 - art_sys_165: 1.17891809e-32 - art_sys_166: -1.83804559e-33 - art_sys_167: 6.62167333e-34 - art_sys_168: -1.09704355e-33 - art_sys_169: 6.40857222e-33 - art_sys_170: -2.98807331e-33 - art_sys_171: 2.60616360e-32 - art_sys_172: -2.08250707e-32 - art_sys_173: -5.09424329e-32 - art_sys_174: 8.06902513e-36 - art_sys_175: -3.32425126e-33 - art_sys_176: 6.15495172e-33 - art_sys_177: -1.34694893e-33 - art_sys_178: -7.95691364e-35 - art_sys_179: -7.88539504e-36 - art_sys_180: 2.81923661e-36 - art_sys_181: -7.39097545e-37 - art_sys_182: 1.35528352e-36 - art_sys_183: 2.17225763e-38 - art_sys_184: -6.75356090e-41 - art_sys_185: -7.48094353e-37 + art_sys_23: -1.91633853e-15 + art_sys_24: 4.80934349e-16 + art_sys_25: 2.71345100e-15 + art_sys_26: 1.08107132e-15 + art_sys_27: 8.38944543e-16 + art_sys_28: 8.51262057e-02 + art_sys_29: -4.84269572e-15 + art_sys_30: 7.22818493e-15 + art_sys_31: -1.57315388e-02 + art_sys_32: -2.99622310e-17 + art_sys_33: 4.76525650e-15 + art_sys_34: -5.74703359e-16 + art_sys_35: -3.84263668e-03 + art_sys_36: 2.02391376e-16 + art_sys_37: -6.05535686e-16 + art_sys_38: 1.04543874e-16 + art_sys_39: 3.63463228e-17 + art_sys_40: -1.13152564e-17 + art_sys_41: 8.49229611e-18 + art_sys_42: 5.66289217e-18 + art_sys_43: -4.65809118e-18 + art_sys_44: 1.36109608e-20 + art_sys_45: -1.38816919e-19 + art_sys_46: -4.56091742e-19 + art_sys_47: 2.66422652e-13 + art_sys_48: 1.23719491e-13 + art_sys_49: 1.53980308e-12 + art_sys_50: -3.72085784e-19 + art_sys_51: -3.03230481e-20 + art_sys_52: -1.91589136e-04 + art_sys_53: 6.69409993e-13 + art_sys_54: -1.75335831e-14 + art_sys_55: 1.94594822e-14 + art_sys_56: 3.61743292e-05 + art_sys_57: -3.42078561e-19 + art_sys_58: -5.51713264e-21 + art_sys_59: -3.00680058e-18 + art_sys_60: -1.45348210e-17 + art_sys_61: -2.23445072e-17 + art_sys_62: -6.98423443e-06 + art_sys_63: 1.82256712e-16 + art_sys_64: 8.93135170e-18 + art_sys_65: 3.82931257e-19 + art_sys_66: 2.82454809e-18 + art_sys_67: 4.38109316e-19 + art_sys_68: 1.56590388e-19 + art_sys_69: -6.88571779e-19 + art_sys_70: -2.56553978e-19 + art_sys_71: -2.21124853e-19 + art_sys_72: 6.79903865e-21 + art_sys_73: -5.81917698e-21 + art_sys_74: -9.12116032e-17 + art_sys_75: 4.58459928e-21 + art_sys_76: -1.47606723e-18 + art_sys_77: 6.52155442e-18 + art_sys_78: -1.40937299e-18 + art_sys_79: -2.80924567e-21 + art_sys_80: 2.52153994e-18 + art_sys_81: -1.14719228e-15 + art_sys_82: 1.10940789e-13 + art_sys_83: 7.29772641e-19 + art_sys_84: 3.72228250e-19 + art_sys_85: -3.06686549e-19 + art_sys_86: -6.43791586e-20 + art_sys_87: 1.59701193e-16 + art_sys_88: 8.55352874e-18 + art_sys_89: 6.88633504e-21 + art_sys_90: 9.56403424e-20 + art_sys_91: 2.66914253e-15 + art_sys_92: -1.91937602e-21 + art_sys_93: 1.81287936e-21 + art_sys_94: 3.32502025e-21 + art_sys_95: 1.03834927e-15 + art_sys_96: 3.17019232e-13 + art_sys_97: 2.13216060e-07 + art_sys_98: 2.15934551e-15 + art_sys_99: 5.13236364e-15 + art_sys_100: -5.63233562e-14 + art_sys_101: -1.28640021e-13 + art_sys_102: 1.19658780e-14 + art_sys_103: -2.72678104e-08 + art_sys_104: 3.38133695e-15 + art_sys_105: -1.73917199e-21 + art_sys_106: -3.35164423e-15 + art_sys_107: 9.05971596e-18 + art_sys_108: 5.98121488e-24 + art_sys_109: -1.96768629e-25 + art_sys_110: -3.41618233e-16 + art_sys_111: 2.02640732e-14 + art_sys_112: 1.53889013e-16 + art_sys_113: 5.88789348e-10 + art_sys_114: -9.79296974e-26 + art_sys_115: -4.19480940e-17 + art_sys_116: 3.30893246e-21 + art_sys_117: 7.88087281e-26 + art_sys_118: 9.59151790e-17 + art_sys_119: 9.90450896e-22 + art_sys_120: -1.71947361e-18 + art_sys_121: -6.26430909e-25 + art_sys_122: -2.27473676e-16 + art_sys_123: 3.92394856e-24 + art_sys_124: 5.97034596e-18 + art_sys_125: -2.12479548e-27 + art_sys_126: -2.42584337e-22 + art_sys_127: 1.70830705e-24 + art_sys_128: 5.69041624e-19 + art_sys_129: 1.59864567e-26 + art_sys_130: -2.29379925e-24 + art_sys_131: -1.74557737e-26 + art_sys_132: 8.45470062e-20 + art_sys_133: 6.55358759e-25 + art_sys_134: 4.37358525e-23 + art_sys_135: -7.36401733e-20 + art_sys_136: 5.01260000e-28 + art_sys_137: 3.58072402e-24 + art_sys_138: -3.09332551e-20 + art_sys_139: -1.89347434e-24 + art_sys_140: 1.07774054e-27 + art_sys_141: 2.07017939e-25 + art_sys_142: -7.92287481e-21 + art_sys_143: -1.75381596e-25 + art_sys_144: 1.25142141e-25 + art_sys_145: 5.17275422e-22 + art_sys_146: 3.03179015e-24 + art_sys_147: -3.60170395e-27 + art_sys_148: -6.84330243e-28 + art_sys_149: -9.52245869e-22 + art_sys_150: -3.86183282e-23 + art_sys_151: 4.00796274e-22 + art_sys_152: 1.79031370e-25 + art_sys_153: 5.98898667e-22 + art_sys_154: -9.21523261e-13 + art_sys_155: 6.00315956e-24 + art_sys_156: -0.0 + art_sys_157: 1.04389684e-20 + art_sys_158: 0.0 + art_sys_159: -2.58175285e-21 + art_sys_160: -3.17134109e-22 + art_sys_161: -6.70263893e-23 + art_sys_162: -6.70263893e-23 + art_sys_163: 8.85825601e-23 + art_sys_164: 8.85825601e-23 + art_sys_165: -7.67867234e-37 + art_sys_166: 2.36425793e-37 + art_sys_167: 0.0 + art_sys_168: -3.27717445e-34 + art_sys_169: 6.96263080e-33 + art_sys_170: -2.56087631e-32 + art_sys_171: -6.33760174e-32 + art_sys_172: -1.38435988e-32 + art_sys_173: 1.77563790e-33 + art_sys_174: 2.06322685e-34 + art_sys_175: 1.60798756e-34 + art_sys_176: -2.05379683e-35 + art_sys_177: -3.17869298e-37 + art_sys_178: -3.77733972e-37 + art_sys_179: -5.09303526e-36 + art_sys_180: -5.22377482e-35 + art_sys_181: -1.64182696e-36 + art_sys_182: 9.68530384e-36 + art_sys_183: -8.78492058e-38 + art_sys_184: 4.81903818e-40 + art_sys_185: 1.83697248e-41 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -68335,189 +68335,189 @@ bins: uncorrelated_uncertainty: 9.31754000e-02 - art_sys_1: 2.23245273e-04 art_sys_2: -3.19069810e-04 - art_sys_3: 2.60597351e-15 - art_sys_4: 3.22698612e-15 - art_sys_5: 9.52863128e-17 + art_sys_3: -8.24547153e-16 + art_sys_4: -4.36421473e-15 + art_sys_5: -1.83059833e-15 art_sys_6: -4.69150442e-05 - art_sys_7: -4.01929236e-14 - art_sys_8: 1.44502559e-15 - art_sys_9: -5.02968011e-15 + art_sys_7: -2.25872340e-14 + art_sys_8: 5.18692186e-15 + art_sys_9: 3.14822992e-15 art_sys_10: 6.08932743e-04 - art_sys_11: -1.36946495e-13 - art_sys_12: -3.72002299e-15 - art_sys_13: 6.93391875e-03 - art_sys_14: -1.88559812e-16 - art_sys_15: -8.23482325e-15 - art_sys_16: 1.55656357e-15 + art_sys_11: 6.38617327e-15 + art_sys_12: -1.25419064e-15 + art_sys_13: -6.93391875e-03 + art_sys_14: -8.84840267e-16 + art_sys_15: -3.15617447e-15 + art_sys_16: -9.19051258e-16 art_sys_17: 4.70961375e-03 - art_sys_18: -2.32852431e-16 - art_sys_19: 6.13926733e-16 + art_sys_18: 1.02820831e-15 + art_sys_19: 2.16386791e-16 art_sys_20: 3.42412187e-02 - art_sys_21: -2.52606336e-16 + art_sys_21: -5.55226443e-16 art_sys_22: 2.14864545e-02 - art_sys_23: -1.18675401e-14 - art_sys_24: -1.04922938e-16 - art_sys_25: 5.80808182e-16 - art_sys_26: 6.03218945e-17 - art_sys_27: 5.41891231e-17 - art_sys_28: 3.49206570e-02 - art_sys_29: -4.72564946e-14 - art_sys_30: 6.07676995e-14 - art_sys_31: -9.79589156e-15 - art_sys_32: 5.62298437e-15 - art_sys_33: 1.47278282e-15 - art_sys_34: 1.08328559e-16 - art_sys_35: -3.77388504e-17 - art_sys_36: -2.25215204e-15 - art_sys_37: -1.40266288e-12 - art_sys_38: 4.81767009e-16 - art_sys_39: -4.17645421e-02 - art_sys_40: -3.55370853e-13 - art_sys_41: 7.09363641e-15 - art_sys_42: 3.12149621e-17 - art_sys_43: -1.97677093e-12 - art_sys_44: -1.35325813e-17 - art_sys_45: 7.66431301e-03 - art_sys_46: 5.47701243e-13 - art_sys_47: 1.08321902e-18 - art_sys_48: -4.41959089e-13 - art_sys_49: -1.83022094e-12 - art_sys_50: 9.29266910e-19 - art_sys_51: -8.56375602e-19 - art_sys_52: -1.20716656e-13 - art_sys_53: -7.33682924e-04 - art_sys_54: -2.39353344e-15 - art_sys_55: -4.64264639e-15 - art_sys_56: 1.20685550e-04 - art_sys_57: 3.35919104e-17 - art_sys_58: 1.35138546e-16 - art_sys_59: -8.68971468e-17 - art_sys_60: 2.96162047e-18 - art_sys_61: -3.30277316e-17 - art_sys_62: -6.81659883e-18 - art_sys_63: 3.58347555e-18 - art_sys_64: -2.57182944e-18 - art_sys_65: -1.44450356e-18 - art_sys_66: 3.41788940e-14 - art_sys_67: -9.49376669e-19 - art_sys_68: -2.63673033e-19 - art_sys_69: -2.30573964e-14 - art_sys_70: -8.93841844e-15 - art_sys_71: -5.96400857e-13 - art_sys_72: 2.60117424e-05 - art_sys_73: -1.25436219e-16 - art_sys_74: 4.05600758e-14 - art_sys_75: 1.22100133e-20 - art_sys_76: 9.77915362e-18 - art_sys_77: 5.84521910e-17 - art_sys_78: 1.84498763e-17 - art_sys_79: -4.67383479e-22 - art_sys_80: -2.43332591e-13 - art_sys_81: -8.11417654e-19 - art_sys_82: -5.00036394e-19 - art_sys_83: 2.35139796e-18 - art_sys_84: 1.43172294e-14 - art_sys_85: -3.61798083e-19 - art_sys_86: -1.20738462e-18 - art_sys_87: -2.03790142e-20 - art_sys_88: -1.07047896e-20 - art_sys_89: -2.59212538e-21 - art_sys_90: -1.36356609e-12 - art_sys_91: -2.37320613e-12 - art_sys_92: 5.05617710e-15 - art_sys_93: 8.41548792e-07 - art_sys_94: 4.14960799e-14 - art_sys_95: -9.48068026e-15 - art_sys_96: 1.33513235e-22 - art_sys_97: 2.62973078e-16 - art_sys_98: -7.62855851e-15 - art_sys_99: -1.06264085e-07 - art_sys_100: 8.61058325e-19 - art_sys_101: -7.80209766e-16 - art_sys_102: -5.15113524e-24 - art_sys_103: 1.19350017e-22 - art_sys_104: -5.67152354e-15 - art_sys_105: 2.47353265e-24 - art_sys_106: 9.13163785e-16 - art_sys_107: 2.91109046e-09 - art_sys_108: -7.97287535e-24 - art_sys_109: -8.05713144e-20 - art_sys_110: -1.47516932e-24 - art_sys_111: -2.01360663e-17 - art_sys_112: 3.15161554e-24 - art_sys_113: -2.22748655e-26 - art_sys_114: 6.63516491e-18 - art_sys_115: 8.77736406e-24 - art_sys_116: -4.76215282e-22 - art_sys_117: 7.80813836e-26 - art_sys_118: 4.15117473e-18 - art_sys_119: 4.29877979e-24 - art_sys_120: -2.23297917e-18 - art_sys_121: 7.83899143e-23 - art_sys_122: -9.81014384e-19 - art_sys_123: -1.74336302e-24 - art_sys_124: 3.87001917e-19 - art_sys_125: -1.67341100e-19 - art_sys_126: -4.88497881e-23 - art_sys_127: -4.28411695e-20 - art_sys_128: 5.71471292e-24 - art_sys_129: -4.59334856e-24 - art_sys_130: 1.70750189e-23 - art_sys_131: -1.48253268e-23 - art_sys_132: 3.56878135e-20 - art_sys_133: 2.37905911e-23 - art_sys_134: -5.70133397e-23 - art_sys_135: -2.75173224e-20 - art_sys_136: -2.57110937e-22 - art_sys_137: 2.13183320e-20 - art_sys_138: 4.98970969e-22 - art_sys_139: 3.24513154e-21 - art_sys_140: 3.71406791e-12 - art_sys_141: 1.88509064e-20 - art_sys_142: -0.0 - art_sys_143: -2.99572666e-19 - art_sys_144: -1.36103562e-19 - art_sys_145: -5.34060755e-20 - art_sys_146: 3.75657874e-26 - art_sys_147: -2.11847691e-27 - art_sys_148: -2.73334125e-25 - art_sys_149: -5.29767870e-26 - art_sys_150: -9.44051423e-27 - art_sys_151: 1.00961381e-24 - art_sys_152: -8.37607160e-26 - art_sys_153: -2.49656353e-26 - art_sys_154: 1.01115872e-24 - art_sys_155: -5.04677583e-24 - art_sys_156: -1.88585489e-23 - art_sys_157: -7.53380836e-22 - art_sys_158: 0.0 - art_sys_159: -3.75343684e-21 - art_sys_160: -3.75343684e-21 - art_sys_161: -2.32832808e-22 - art_sys_162: 7.68130659e-35 - art_sys_163: 0.0 - art_sys_164: 4.33207321e-35 - art_sys_165: 2.09801015e-32 - art_sys_166: -7.34037676e-33 - art_sys_167: 2.59683022e-33 - art_sys_168: -1.95772248e-33 - art_sys_169: 1.05895521e-32 - art_sys_170: -4.76988222e-32 - art_sys_171: 4.83426287e-33 - art_sys_172: 5.97003039e-31 - art_sys_173: -1.50069731e-31 - art_sys_174: -3.16517030e-35 - art_sys_175: -2.03197950e-33 - art_sys_176: 2.62253099e-33 - art_sys_177: -1.13331276e-34 - art_sys_178: 5.80573958e-36 - art_sys_179: -1.54486521e-36 - art_sys_180: 3.94193626e-36 - art_sys_181: -3.80036519e-36 - art_sys_182: 1.46983650e-36 - art_sys_183: 5.44863104e-38 - art_sys_184: -5.22537886e-40 - art_sys_185: 2.93405764e-36 + art_sys_23: -1.15752021e-14 + art_sys_24: -5.71697364e-16 + art_sys_25: -5.70763616e-16 + art_sys_26: 7.46007253e-17 + art_sys_27: -4.73031747e-17 + art_sys_28: 3.49206569e-02 + art_sys_29: -1.76888458e-15 + art_sys_30: 4.59141505e-15 + art_sys_31: 4.17645421e-02 + art_sys_32: 2.91521560e-16 + art_sys_33: -8.22367153e-15 + art_sys_34: 4.22531567e-16 + art_sys_35: 7.66431301e-03 + art_sys_36: -5.27470153e-16 + art_sys_37: 2.36980893e-15 + art_sys_38: -3.26273744e-16 + art_sys_39: -1.17818156e-16 + art_sys_40: 3.15481605e-17 + art_sys_41: -3.00563452e-17 + art_sys_42: -1.47289621e-17 + art_sys_43: 1.59060020e-17 + art_sys_44: 2.09882268e-18 + art_sys_45: -1.13948779e-18 + art_sys_46: 1.88664775e-18 + art_sys_47: -1.01894198e-12 + art_sys_48: -5.40707187e-13 + art_sys_49: -4.96855808e-12 + art_sys_50: 2.36867447e-18 + art_sys_51: 3.56736780e-18 + art_sys_52: 7.33682923e-04 + art_sys_53: -2.51933650e-12 + art_sys_54: 6.71864354e-14 + art_sys_55: -7.71281672e-14 + art_sys_56: -1.20685540e-04 + art_sys_57: -1.67071079e-18 + art_sys_58: -7.27309693e-21 + art_sys_59: 1.82183154e-16 + art_sys_60: 5.69676818e-17 + art_sys_61: 8.81509360e-17 + art_sys_62: 2.60117461e-05 + art_sys_63: -6.74082595e-16 + art_sys_64: -3.57986854e-17 + art_sys_65: -1.48956865e-18 + art_sys_66: -1.11681849e-17 + art_sys_67: -1.71445899e-18 + art_sys_68: -6.13213582e-19 + art_sys_69: 2.69752188e-18 + art_sys_70: 1.01231347e-18 + art_sys_71: 8.75412206e-19 + art_sys_72: -2.70238677e-20 + art_sys_73: 2.31148008e-20 + art_sys_74: 3.60032633e-16 + art_sys_75: -1.80116635e-20 + art_sys_76: 5.57303614e-18 + art_sys_77: -2.56193547e-17 + art_sys_78: 6.14100941e-18 + art_sys_79: 1.20737312e-20 + art_sys_80: -9.92751465e-18 + art_sys_81: 4.52790065e-15 + art_sys_82: -4.37876259e-13 + art_sys_83: -2.74843087e-18 + art_sys_84: -1.45705637e-18 + art_sys_85: 1.21061212e-18 + art_sys_86: 2.55708472e-19 + art_sys_87: -6.22538374e-16 + art_sys_88: -4.28494928e-17 + art_sys_89: -2.58900688e-20 + art_sys_90: -3.46419970e-19 + art_sys_91: -1.05168741e-14 + art_sys_92: 7.52714728e-21 + art_sys_93: -7.22865285e-21 + art_sys_94: -1.62267234e-20 + art_sys_95: -4.09838561e-15 + art_sys_96: -1.25094088e-12 + art_sys_97: -8.41551279e-07 + art_sys_98: -8.41508354e-15 + art_sys_99: -2.00348350e-14 + art_sys_100: 2.19493507e-13 + art_sys_101: 5.01657701e-13 + art_sys_102: -5.91661129e-14 + art_sys_103: 1.06263330e-07 + art_sys_104: -1.31707059e-14 + art_sys_105: 6.82294991e-21 + art_sys_106: 1.66171783e-14 + art_sys_107: -4.48068026e-17 + art_sys_108: -2.72070837e-23 + art_sys_109: 1.00985819e-24 + art_sys_110: 1.33990021e-15 + art_sys_111: -1.00249110e-13 + art_sys_112: -6.02901686e-16 + art_sys_113: -2.91129629e-09 + art_sys_114: 3.89166396e-25 + art_sys_115: 2.26022053e-16 + art_sys_116: -1.29951381e-20 + art_sys_117: -3.81445477e-25 + art_sys_118: -3.86138717e-16 + art_sys_119: -3.83358302e-21 + art_sys_120: 6.74434936e-18 + art_sys_121: 3.06309997e-24 + art_sys_122: 8.98568004e-16 + art_sys_123: 1.11969609e-23 + art_sys_124: -2.68608103e-17 + art_sys_125: -8.14404533e-27 + art_sys_126: 9.29084053e-22 + art_sys_127: -7.93859658e-24 + art_sys_128: -7.72595241e-19 + art_sys_129: -4.86550069e-26 + art_sys_130: 1.27589714e-23 + art_sys_131: 9.31298447e-26 + art_sys_132: 2.45940821e-19 + art_sys_133: -5.87424120e-24 + art_sys_134: -1.62358265e-22 + art_sys_135: 7.67037621e-20 + art_sys_136: 1.06247413e-27 + art_sys_137: -1.68021626e-23 + art_sys_138: 6.05252382e-20 + art_sys_139: 6.58142319e-24 + art_sys_140: -3.44754667e-27 + art_sys_141: -2.82625929e-24 + art_sys_142: 7.18660369e-21 + art_sys_143: 2.41061284e-25 + art_sys_144: -5.38262480e-25 + art_sys_145: -6.64188114e-21 + art_sys_146: -1.25000826e-23 + art_sys_147: 1.27226457e-26 + art_sys_148: 2.95554463e-27 + art_sys_149: 4.23559011e-21 + art_sys_150: 1.43379297e-22 + art_sys_151: -1.58884467e-21 + art_sys_152: -7.02833738e-25 + art_sys_153: -2.36312966e-21 + art_sys_154: 3.61436740e-12 + art_sys_155: -2.36275004e-23 + art_sys_156: 0.0 + art_sys_157: -4.09039847e-20 + art_sys_158: -0.0 + art_sys_159: 1.01094488e-20 + art_sys_160: 1.24333581e-21 + art_sys_161: 2.62487006e-22 + art_sys_162: 2.62487006e-22 + art_sys_163: -3.46559269e-22 + art_sys_164: -3.46559269e-22 + art_sys_165: 3.00382986e-36 + art_sys_166: -9.24819885e-37 + art_sys_167: -0.0 + art_sys_168: 1.51837989e-33 + art_sys_169: -4.78140503e-33 + art_sys_170: 3.31462400e-32 + art_sys_171: 5.02339858e-32 + art_sys_172: 5.07816609e-33 + art_sys_173: -1.64862530e-32 + art_sys_174: -1.83771582e-34 + art_sys_175: 5.12231041e-34 + art_sys_176: -5.42411090e-35 + art_sys_177: 8.84191779e-37 + art_sys_178: -1.67707222e-37 + art_sys_179: 2.00209774e-35 + art_sys_180: 2.04520187e-34 + art_sys_181: 1.90230219e-35 + art_sys_182: 1.27105282e-36 + art_sys_183: -2.23655660e-37 + art_sys_184: -1.92894768e-40 + art_sys_185: -8.30823992e-41 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -68626,189 +68626,189 @@ bins: uncorrelated_uncertainty: 3.57007000e-02 - art_sys_1: 5.74695836e-06 art_sys_2: -1.06582257e-04 - art_sys_3: 7.72782875e-17 - art_sys_4: 1.26480263e-14 - art_sys_5: -6.71122372e-17 + art_sys_3: 2.18642997e-18 + art_sys_4: -1.04168256e-14 + art_sys_5: -2.02706116e-16 art_sys_6: -1.96463296e-04 - art_sys_7: 5.49072372e-15 - art_sys_8: 1.89282331e-16 - art_sys_9: -7.35843358e-15 + art_sys_7: 2.80971305e-15 + art_sys_8: 5.60049459e-18 + art_sys_9: 8.36739068e-16 art_sys_10: -9.54040622e-05 - art_sys_11: 3.59075452e-14 - art_sys_12: 2.35347483e-15 - art_sys_13: 4.83010173e-04 - art_sys_14: 4.31017414e-16 - art_sys_15: -3.18038406e-15 - art_sys_16: 1.77775961e-16 + art_sys_11: -2.20146423e-15 + art_sys_12: -1.34118627e-15 + art_sys_13: -4.83010173e-04 + art_sys_14: 1.23849023e-15 + art_sys_15: 9.21577424e-16 + art_sys_16: 3.39543226e-16 art_sys_17: -1.67228888e-03 - art_sys_18: -5.77089324e-17 - art_sys_19: 4.02256308e-16 + art_sys_18: -9.71810634e-16 + art_sys_19: 5.82711836e-16 art_sys_20: 8.44256911e-04 - art_sys_21: -1.90826895e-15 + art_sys_21: 4.83521533e-16 art_sys_22: 2.83532321e-03 - art_sys_23: -2.67817457e-16 - art_sys_24: 3.60210630e-16 - art_sys_25: 7.22395082e-17 - art_sys_26: -1.90780158e-17 - art_sys_27: 4.06414091e-17 + art_sys_23: -4.49744046e-16 + art_sys_24: 1.29117340e-15 + art_sys_25: -1.78027949e-16 + art_sys_26: -6.98235105e-17 + art_sys_27: 9.78133400e-18 art_sys_28: -3.42594913e-03 - art_sys_29: -2.55513722e-15 - art_sys_30: 5.95093200e-14 - art_sys_31: 1.47063502e-14 - art_sys_32: 8.58147880e-15 - art_sys_33: -5.58707456e-16 - art_sys_34: -9.26451636e-16 - art_sys_35: -2.96194283e-16 - art_sys_36: 1.09415963e-18 - art_sys_37: -7.44860996e-13 - art_sys_38: 4.45322306e-16 - art_sys_39: -2.21025443e-02 - art_sys_40: -1.88115058e-13 - art_sys_41: 8.47354150e-15 - art_sys_42: -6.76632059e-17 - art_sys_43: 4.51503088e-12 - art_sys_44: 3.36458320e-17 - art_sys_45: -1.75127520e-02 - art_sys_46: -8.94233043e-13 - art_sys_47: -3.05215126e-18 - art_sys_48: 1.42292449e-12 - art_sys_49: 5.49793658e-12 - art_sys_50: -1.85949501e-19 - art_sys_51: -8.77701026e-19 - art_sys_52: 4.91855595e-13 - art_sys_53: 1.14429035e-03 - art_sys_54: 7.97011629e-15 - art_sys_55: 9.16117148e-15 - art_sys_56: -3.70524615e-04 - art_sys_57: -9.63549645e-17 - art_sys_58: -4.01104201e-16 - art_sys_59: 3.40726473e-16 - art_sys_60: -4.72043804e-18 - art_sys_61: 9.67557686e-17 - art_sys_62: 2.04574862e-17 - art_sys_63: -1.10568743e-17 - art_sys_64: 8.08040241e-18 - art_sys_65: 4.17455565e-18 - art_sys_66: -1.02272298e-13 - art_sys_67: 2.82442405e-18 - art_sys_68: 7.59071908e-19 - art_sys_69: 7.85012459e-14 - art_sys_70: 2.66272512e-14 - art_sys_71: 1.78457975e-12 - art_sys_72: -7.78337511e-05 - art_sys_73: 4.54540695e-16 - art_sys_74: -1.38372199e-13 - art_sys_75: -4.18243156e-20 - art_sys_76: -2.11516273e-17 - art_sys_77: -2.00530116e-16 - art_sys_78: -6.28732558e-17 - art_sys_79: 2.57282884e-21 - art_sys_80: 8.34986173e-13 - art_sys_81: 3.01952135e-18 - art_sys_82: 1.68321580e-18 - art_sys_83: -7.96578186e-18 - art_sys_84: -4.87966561e-14 - art_sys_85: 1.19099591e-18 - art_sys_86: 4.12772006e-18 - art_sys_87: 6.89200677e-20 - art_sys_88: 3.92991132e-20 - art_sys_89: 8.16471060e-21 - art_sys_90: 4.66217062e-12 - art_sys_91: 8.12901891e-12 - art_sys_92: -1.62233362e-14 - art_sys_93: -2.87625685e-06 - art_sys_94: -1.34132606e-13 - art_sys_95: 3.45511777e-14 - art_sys_96: -4.29493979e-22 - art_sys_97: -9.36062089e-16 - art_sys_98: 2.89654748e-14 - art_sys_99: 3.41875658e-07 - art_sys_100: -3.07636046e-18 - art_sys_101: 2.45219777e-15 - art_sys_102: 1.64799630e-23 - art_sys_103: -2.07558039e-22 - art_sys_104: 1.87804871e-14 - art_sys_105: -1.75010461e-23 - art_sys_106: -3.35940992e-15 - art_sys_107: -9.40634263e-09 - art_sys_108: -1.20720501e-23 - art_sys_109: 2.97076926e-19 - art_sys_110: 4.75712822e-24 - art_sys_111: 4.62820380e-17 - art_sys_112: -2.04562107e-23 - art_sys_113: 4.31704780e-26 - art_sys_114: -7.52158082e-18 - art_sys_115: -5.48843840e-24 - art_sys_116: 1.48326676e-21 - art_sys_117: 3.21957460e-26 - art_sys_118: -5.02281926e-18 - art_sys_119: 5.03079895e-25 - art_sys_120: 2.97251229e-18 - art_sys_121: -2.95139124e-22 - art_sys_122: 1.36326965e-18 - art_sys_123: 5.23245374e-24 - art_sys_124: -5.39670120e-19 - art_sys_125: 2.87572131e-19 - art_sys_126: 1.75295136e-22 - art_sys_127: 6.36842586e-20 - art_sys_128: -1.96795622e-23 - art_sys_129: 1.60840461e-23 - art_sys_130: -5.87298493e-23 - art_sys_131: 5.34611649e-23 - art_sys_132: -1.59152064e-19 - art_sys_133: -8.36160119e-23 - art_sys_134: 1.88715063e-22 - art_sys_135: 9.21931254e-20 - art_sys_136: 9.06420049e-22 - art_sys_137: -7.54020632e-20 - art_sys_138: -1.77807746e-21 - art_sys_139: -1.15744581e-20 - art_sys_140: -1.32604363e-11 - art_sys_141: -6.73075279e-20 - art_sys_142: 0.0 - art_sys_143: 1.06959308e-18 - art_sys_144: 4.85941304e-19 - art_sys_145: 1.90677632e-19 - art_sys_146: -1.32164659e-25 - art_sys_147: 9.38496874e-27 - art_sys_148: 9.29405163e-25 - art_sys_149: 1.75645384e-25 - art_sys_150: 2.90551425e-26 - art_sys_151: -3.58450374e-24 - art_sys_152: 2.94826734e-25 - art_sys_153: 8.74903443e-26 - art_sys_154: -3.60680234e-24 - art_sys_155: 1.80203464e-23 - art_sys_156: 6.73432593e-23 - art_sys_157: 2.68981577e-21 - art_sys_158: -0.0 - art_sys_159: 1.34017551e-20 - art_sys_160: 1.34017551e-20 - art_sys_161: 8.31279653e-22 - art_sys_162: -2.74242823e-34 - art_sys_163: -0.0 - art_sys_164: -1.54665734e-34 - art_sys_165: -5.96856082e-32 - art_sys_166: 2.62662433e-32 - art_sys_167: -5.32654399e-33 - art_sys_168: -7.04258515e-33 - art_sys_169: 3.69860413e-32 - art_sys_170: 3.25578001e-32 - art_sys_171: -2.49112125e-31 - art_sys_172: 9.67479037e-31 - art_sys_173: -2.18848355e-31 - art_sys_174: 1.13009020e-34 - art_sys_175: -1.59542755e-33 - art_sys_176: 1.37539688e-32 - art_sys_177: 3.78106231e-33 - art_sys_178: 1.82494023e-34 - art_sys_179: -1.76385732e-35 - art_sys_180: -2.78889810e-35 - art_sys_181: 6.74533185e-36 - art_sys_182: 1.63167751e-35 - art_sys_183: 6.85718136e-38 - art_sys_184: 6.88012019e-40 - art_sys_185: -1.04754964e-35 + art_sys_29: 1.86893037e-16 + art_sys_30: -1.01914886e-16 + art_sys_31: 2.21025443e-02 + art_sys_32: 1.03085875e-16 + art_sys_33: -5.87166592e-15 + art_sys_34: 9.22929964e-16 + art_sys_35: -1.75127520e-02 + art_sys_36: -3.78828274e-15 + art_sys_37: -3.07453362e-15 + art_sys_38: 8.91043963e-16 + art_sys_39: 3.51110177e-16 + art_sys_40: -1.52174952e-16 + art_sys_41: 6.40632242e-17 + art_sys_42: 6.26353706e-17 + art_sys_43: -5.32788411e-17 + art_sys_44: -5.16351995e-18 + art_sys_45: 5.21436116e-19 + art_sys_46: -3.70843101e-18 + art_sys_47: 1.60255920e-12 + art_sys_48: 2.38975671e-13 + art_sys_49: 1.72226328e-11 + art_sys_50: -2.92259181e-18 + art_sys_51: -2.48021037e-18 + art_sys_52: -1.14429035e-03 + art_sys_53: 7.52406913e-12 + art_sys_54: -2.13815606e-13 + art_sys_55: 2.52992152e-13 + art_sys_56: 3.70524584e-04 + art_sys_57: -1.94711402e-19 + art_sys_58: 2.49526198e-20 + art_sys_59: -6.09550682e-16 + art_sys_60: -1.65820022e-16 + art_sys_61: -3.01297275e-16 + art_sys_62: -7.78337620e-05 + art_sys_63: 1.98361914e-15 + art_sys_64: 1.22454640e-16 + art_sys_65: 5.02925983e-18 + art_sys_66: 3.89118485e-17 + art_sys_67: 5.44280103e-18 + art_sys_68: 1.97119023e-18 + art_sys_69: -9.03801706e-18 + art_sys_70: -3.43564375e-18 + art_sys_71: -2.98768104e-18 + art_sys_72: 9.29133838e-20 + art_sys_73: -8.02401361e-20 + art_sys_74: -1.22999839e-15 + art_sys_75: 6.15409344e-20 + art_sys_76: -2.10333182e-17 + art_sys_77: 8.63219632e-17 + art_sys_78: -2.20308105e-17 + art_sys_79: -3.57923064e-20 + art_sys_80: 3.36069009e-17 + art_sys_81: -1.54755196e-14 + art_sys_82: 1.49657488e-12 + art_sys_83: 1.00805288e-17 + art_sys_84: 4.86735955e-18 + art_sys_85: -4.11708342e-18 + art_sys_86: -9.04292168e-19 + art_sys_87: 2.00302839e-15 + art_sys_88: 1.31628166e-16 + art_sys_89: 7.71645261e-20 + art_sys_90: 1.59594460e-18 + art_sys_91: 3.58449653e-14 + art_sys_92: -2.58667778e-20 + art_sys_93: 2.46442982e-20 + art_sys_94: 5.40442635e-20 + art_sys_95: 1.40146269e-14 + art_sys_96: 4.27280257e-12 + art_sys_97: 2.87626516e-06 + art_sys_98: 2.70768151e-14 + art_sys_99: 6.46446160e-14 + art_sys_100: -7.06160125e-13 + art_sys_101: -1.61402378e-12 + art_sys_102: 1.91177873e-13 + art_sys_103: -3.41873097e-07 + art_sys_104: 4.23611759e-14 + art_sys_105: -2.43576877e-20 + art_sys_106: -5.35896348e-14 + art_sys_107: 1.44765343e-16 + art_sys_108: 9.66317523e-23 + art_sys_109: -3.15961344e-24 + art_sys_110: -4.78386785e-15 + art_sys_111: 3.23897914e-13 + art_sys_112: 2.15367375e-15 + art_sys_113: 9.40699816e-09 + art_sys_114: -1.38955194e-24 + art_sys_115: -7.50082461e-16 + art_sys_116: 4.64351582e-20 + art_sys_117: 1.20475663e-24 + art_sys_118: 1.39572713e-15 + art_sys_119: 1.37346827e-20 + art_sys_120: -2.40795177e-17 + art_sys_121: -9.93944858e-24 + art_sys_122: -3.21819518e-15 + art_sys_123: -1.66018562e-23 + art_sys_124: 1.00776947e-16 + art_sys_125: 4.72389074e-26 + art_sys_126: -3.46192732e-21 + art_sys_127: 2.61785573e-23 + art_sys_128: 6.20711860e-19 + art_sys_129: 1.74185941e-25 + art_sys_130: -4.26054210e-23 + art_sys_131: -2.92734211e-25 + art_sys_132: -1.71744238e-18 + art_sys_133: 2.13563031e-23 + art_sys_134: 5.77294154e-22 + art_sys_135: 3.82210523e-20 + art_sys_136: 4.32628243e-27 + art_sys_137: 5.53526519e-23 + art_sys_138: -1.25663665e-19 + art_sys_139: -2.01235498e-23 + art_sys_140: 1.21826666e-26 + art_sys_141: 7.74741256e-24 + art_sys_142: 3.18499737e-21 + art_sys_143: -2.75330448e-25 + art_sys_144: 1.81948605e-24 + art_sys_145: 2.84116616e-20 + art_sys_146: 4.29141480e-23 + art_sys_147: -3.93665420e-26 + art_sys_148: -1.01796163e-26 + art_sys_149: -1.56103292e-20 + art_sys_150: -4.87805925e-22 + art_sys_151: 5.64777797e-21 + art_sys_152: 2.47354280e-24 + art_sys_153: 8.41970747e-21 + art_sys_154: -1.29045293e-11 + art_sys_155: 8.42075385e-23 + art_sys_156: -0.0 + art_sys_157: 1.46100518e-19 + art_sys_158: 0.0 + art_sys_159: -3.61184814e-20 + art_sys_160: -4.43998835e-21 + art_sys_161: -9.38039306e-22 + art_sys_162: -9.38039306e-22 + art_sys_163: 1.23849667e-21 + art_sys_164: 1.23849667e-21 + art_sys_165: -1.07345899e-35 + art_sys_166: 3.30499643e-36 + art_sys_167: 0.0 + art_sys_168: 5.66293312e-34 + art_sys_169: -2.01643779e-33 + art_sys_170: -1.03684780e-31 + art_sys_171: -3.40275894e-31 + art_sys_172: 8.01147376e-33 + art_sys_173: 4.86730973e-32 + art_sys_174: -1.35006946e-33 + art_sys_175: -1.74413077e-34 + art_sys_176: -3.50685555e-35 + art_sys_177: -4.17768114e-36 + art_sys_178: -1.04872598e-36 + art_sys_179: -7.14031150e-35 + art_sys_180: -7.30733117e-34 + art_sys_181: -4.39483458e-35 + art_sys_182: 2.44183053e-35 + art_sys_183: -1.67700957e-37 + art_sys_184: -2.14035092e-39 + art_sys_185: 2.65917076e-40 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -68917,189 +68917,189 @@ bins: uncorrelated_uncertainty: 1.26343000e-02 - art_sys_1: -1.38489654e-06 art_sys_2: -1.37599645e-05 - art_sys_3: -5.74077173e-17 - art_sys_4: -4.23210825e-16 - art_sys_5: -1.41180009e-17 + art_sys_3: 3.43624912e-17 + art_sys_4: 8.00728633e-17 + art_sys_5: 3.94856760e-17 art_sys_6: -3.14943578e-05 - art_sys_7: 1.61109561e-15 - art_sys_8: 2.82027077e-19 - art_sys_9: 4.22113485e-16 + art_sys_7: 7.01235213e-16 + art_sys_8: -9.41075750e-17 + art_sys_9: -1.07436560e-16 art_sys_10: -2.42579302e-05 - art_sys_11: 6.61622462e-15 - art_sys_12: 2.91906372e-16 - art_sys_13: -1.22647013e-04 - art_sys_14: -5.42402532e-17 - art_sys_15: 5.03935667e-16 - art_sys_16: -1.05703913e-15 + art_sys_11: 3.93543435e-16 + art_sys_12: 3.07453760e-16 + art_sys_13: 1.22647013e-04 + art_sys_14: 1.17470443e-15 + art_sys_15: -1.94827658e-17 + art_sys_16: -2.71093893e-16 art_sys_17: -3.21312810e-04 - art_sys_18: -8.02080965e-17 - art_sys_19: 7.85561085e-18 + art_sys_18: -7.93768747e-18 + art_sys_19: -8.62585341e-17 art_sys_20: -9.46036989e-04 - art_sys_21: 7.03650041e-16 + art_sys_21: -6.35816320e-16 art_sys_22: -4.77638716e-04 - art_sys_23: 2.12473820e-16 - art_sys_24: 4.12057943e-16 - art_sys_25: -1.03928530e-16 - art_sys_26: 7.13752174e-17 - art_sys_27: 7.51821633e-17 + art_sys_23: 3.59939535e-16 + art_sys_24: 3.69762387e-16 + art_sys_25: -3.61707549e-18 + art_sys_26: -5.74306132e-17 + art_sys_27: 4.93867467e-17 art_sys_28: -1.86033720e-03 - art_sys_29: -8.30797579e-14 - art_sys_30: 8.30851968e-15 - art_sys_31: 7.65649982e-15 - art_sys_32: -8.98351100e-15 - art_sys_33: -7.78291817e-16 - art_sys_34: 1.00236099e-15 - art_sys_35: -2.36605700e-16 - art_sys_36: 1.21727831e-16 - art_sys_37: 2.81974505e-14 - art_sys_38: -2.95552112e-16 - art_sys_39: 8.43404606e-04 - art_sys_40: 7.17499378e-15 - art_sys_41: 5.65527598e-16 - art_sys_42: -1.46512596e-19 - art_sys_43: 1.05999902e-12 - art_sys_44: -4.83180697e-17 - art_sys_45: -4.11087349e-03 - art_sys_46: 4.63007739e-12 - art_sys_47: 7.57146512e-18 - art_sys_48: -3.82975388e-12 - art_sys_49: -2.25191662e-11 - art_sys_50: 2.71913533e-18 - art_sys_51: 9.12891819e-18 - art_sys_52: -1.69571285e-12 - art_sys_53: -6.94111266e-03 - art_sys_54: -3.20297108e-14 - art_sys_55: -4.91357426e-14 - art_sys_56: 1.06043367e-03 - art_sys_57: 4.12897187e-16 - art_sys_58: 1.68348101e-15 - art_sys_59: -1.21941339e-15 - art_sys_60: 1.71494470e-17 - art_sys_61: -4.09224417e-16 - art_sys_62: -8.57654900e-17 - art_sys_63: 4.52889214e-17 - art_sys_64: -3.27709126e-17 - art_sys_65: -1.80761013e-17 - art_sys_66: 4.27044178e-13 - art_sys_67: -1.18549222e-17 - art_sys_68: -3.26252897e-18 - art_sys_69: -3.03915693e-13 - art_sys_70: -1.10955794e-13 - art_sys_71: -7.45159774e-12 - art_sys_72: 3.25000193e-04 - art_sys_73: -1.65192484e-15 - art_sys_74: 5.31955388e-13 - art_sys_75: 1.60351384e-19 - art_sys_76: 1.72343618e-16 - art_sys_77: 7.63888164e-16 - art_sys_78: 2.42910800e-16 - art_sys_79: -2.55276551e-21 - art_sys_80: -3.17986465e-12 - art_sys_81: -9.64458785e-18 - art_sys_82: -6.68705936e-18 - art_sys_83: 3.11518648e-17 - art_sys_84: 1.88477837e-13 - art_sys_85: -4.97105270e-18 - art_sys_86: -1.58633934e-17 - art_sys_87: -2.70603097e-19 - art_sys_88: -1.63718472e-19 - art_sys_89: -3.23592418e-20 - art_sys_90: -1.78893934e-11 - art_sys_91: -3.11031389e-11 - art_sys_92: 7.07543959e-14 - art_sys_93: 1.10449875e-05 - art_sys_94: 5.65216578e-13 - art_sys_95: -1.16919342e-13 - art_sys_96: 1.86361661e-21 - art_sys_97: 3.89252664e-15 - art_sys_98: -1.15963770e-13 - art_sys_99: -1.48322372e-06 - art_sys_100: 1.27870179e-17 - art_sys_101: -1.03268647e-14 - art_sys_102: -6.82558534e-23 - art_sys_103: 7.22769142e-22 - art_sys_104: -7.88371329e-14 - art_sys_105: 8.37965537e-23 - art_sys_106: 1.39547739e-14 - art_sys_107: 3.96456294e-08 - art_sys_108: 4.32175384e-23 - art_sys_109: -1.22916062e-18 - art_sys_110: -2.01105587e-23 - art_sys_111: -1.57952053e-16 - art_sys_112: 7.04637104e-23 - art_sys_113: -3.59093671e-26 - art_sys_114: 4.10118252e-18 - art_sys_115: 1.31176111e-24 - art_sys_116: -5.96743631e-21 - art_sys_117: -3.52498335e-25 - art_sys_118: 4.26231508e-18 - art_sys_119: -8.45085953e-25 - art_sys_120: -3.84939090e-18 - art_sys_121: 1.24906228e-21 - art_sys_122: -2.01377911e-18 - art_sys_123: -1.95309436e-23 - art_sys_124: 8.04100347e-19 - art_sys_125: -6.68529054e-19 - art_sys_126: -7.20197116e-22 - art_sys_127: -1.11626774e-19 - art_sys_128: 7.72404454e-23 - art_sys_129: -6.57516124e-23 - art_sys_130: 2.38417476e-22 - art_sys_131: -2.22398795e-22 - art_sys_132: 7.15694142e-19 - art_sys_133: 3.47126463e-22 - art_sys_134: -7.56164693e-22 - art_sys_135: -3.72093879e-19 - art_sys_136: -3.74340184e-21 - art_sys_137: 3.11988480e-19 - art_sys_138: 7.38315949e-21 - art_sys_139: 4.80855975e-20 - art_sys_140: 5.51201453e-11 - art_sys_141: 2.79778035e-19 - art_sys_142: -0.0 - art_sys_143: -4.44606628e-18 - art_sys_144: -2.01995352e-18 - art_sys_145: -7.92586480e-19 - art_sys_146: 5.42871958e-25 - art_sys_147: -4.61963387e-26 - art_sys_148: -3.91325933e-24 - art_sys_149: -6.44278024e-25 - art_sys_150: -1.16125533e-25 - art_sys_151: 1.47857936e-23 - art_sys_152: -1.20635178e-24 - art_sys_153: -3.65412795e-25 - art_sys_154: 1.49799486e-23 - art_sys_155: -7.48972883e-23 - art_sys_156: -2.79939579e-22 - art_sys_157: -1.11808474e-20 - art_sys_158: 0.0 - art_sys_159: -5.57096672e-20 - art_sys_160: -5.57096672e-20 - art_sys_161: -3.45543639e-21 - art_sys_162: 1.13995975e-33 - art_sys_163: 0.0 - art_sys_164: 6.42905811e-34 - art_sys_165: -4.78678163e-32 - art_sys_166: -5.03630445e-33 - art_sys_167: -1.22033560e-32 - art_sys_168: -1.09122812e-32 - art_sys_169: 4.83684959e-32 - art_sys_170: -3.91710193e-31 - art_sys_171: -4.20704353e-31 - art_sys_172: 9.15346737e-31 - art_sys_173: -2.85184215e-31 - art_sys_174: -4.69742074e-34 - art_sys_175: -1.73791231e-33 - art_sys_176: 5.09206925e-33 - art_sys_177: 4.52256093e-33 - art_sys_178: 2.24908808e-34 - art_sys_179: 4.44507551e-35 - art_sys_180: -1.92284020e-35 - art_sys_181: -6.57052545e-36 - art_sys_182: 3.77785354e-35 - art_sys_183: 2.06719030e-37 - art_sys_184: -3.99725697e-39 - art_sys_185: 4.35440711e-35 + art_sys_29: 9.03068252e-17 + art_sys_30: -2.39965795e-16 + art_sys_31: -8.43404605e-04 + art_sys_32: -1.06129384e-17 + art_sys_33: 1.07964911e-17 + art_sys_34: 7.69978923e-16 + art_sys_35: -4.11087349e-03 + art_sys_36: -8.11647683e-15 + art_sys_37: 2.29835876e-14 + art_sys_38: -3.05205509e-15 + art_sys_39: -8.49004163e-16 + art_sys_40: 2.24668953e-16 + art_sys_41: -2.91737675e-16 + art_sys_42: -6.31536429e-17 + art_sys_43: 1.54964706e-16 + art_sys_44: 1.19172305e-17 + art_sys_45: -1.20231587e-17 + art_sys_46: 1.87226888e-17 + art_sys_47: -9.63373757e-12 + art_sys_48: -5.44220778e-12 + art_sys_49: -4.27521325e-11 + art_sys_50: 1.79876293e-17 + art_sys_51: 1.51124502e-17 + art_sys_52: 6.94111266e-03 + art_sys_53: -3.23418220e-11 + art_sys_54: 8.64751330e-13 + art_sys_55: -1.01122310e-12 + art_sys_56: -1.06043356e-03 + art_sys_57: 2.63805307e-18 + art_sys_58: -1.11235386e-19 + art_sys_59: 2.85621106e-15 + art_sys_60: 6.91626533e-16 + art_sys_61: 1.15694086e-15 + art_sys_62: 3.25000234e-04 + art_sys_63: -8.36953465e-15 + art_sys_64: -4.71080139e-16 + art_sys_65: -1.91675937e-17 + art_sys_66: -1.44157155e-16 + art_sys_67: -2.41064136e-17 + art_sys_68: -8.55000699e-18 + art_sys_69: 3.56565525e-17 + art_sys_70: 1.33914026e-17 + art_sys_71: 1.15021392e-17 + art_sys_72: -3.52618291e-19 + art_sys_73: 2.97968873e-19 + art_sys_74: 4.72722699e-15 + art_sys_75: -2.32890316e-19 + art_sys_76: 6.60553385e-17 + art_sys_77: -3.41482284e-16 + art_sys_78: 7.94509993e-17 + art_sys_79: 1.60645730e-19 + art_sys_80: -1.31605574e-16 + art_sys_81: 5.94268656e-14 + art_sys_82: -5.74694290e-12 + art_sys_83: -3.79321077e-17 + art_sys_84: -1.95935028e-17 + art_sys_85: 1.59275783e-17 + art_sys_86: 3.22823050e-18 + art_sys_87: -8.68836821e-15 + art_sys_88: -5.65488847e-16 + art_sys_89: -3.87702008e-19 + art_sys_90: -6.10368582e-18 + art_sys_91: -1.37856053e-13 + art_sys_92: 9.89837015e-20 + art_sys_93: -9.60931642e-20 + art_sys_94: -2.28638356e-19 + art_sys_95: -5.38140558e-14 + art_sys_96: -1.64276888e-11 + art_sys_97: -1.10450207e-05 + art_sys_98: -1.17465953e-13 + art_sys_99: -2.79105044e-13 + art_sys_100: 3.06367030e-12 + art_sys_101: 7.00196368e-12 + art_sys_102: -8.05772515e-13 + art_sys_103: 1.48321375e-06 + art_sys_104: -1.83730132e-13 + art_sys_105: 1.01251245e-19 + art_sys_106: 2.25891543e-13 + art_sys_107: -6.10163801e-16 + art_sys_108: -3.89115856e-22 + art_sys_109: 1.39300025e-23 + art_sys_110: 1.98852004e-14 + art_sys_111: -1.36522072e-12 + art_sys_112: -8.95159718e-15 + art_sys_113: -3.96484241e-08 + art_sys_114: 5.75133729e-24 + art_sys_115: 3.19795995e-15 + art_sys_116: -1.93074514e-19 + art_sys_117: -5.16316029e-24 + art_sys_118: -5.82823534e-15 + art_sys_119: -5.71307702e-20 + art_sys_120: 1.00092381e-16 + art_sys_121: 4.18316660e-23 + art_sys_122: 1.33935955e-14 + art_sys_123: 6.87918822e-23 + art_sys_124: -4.27473506e-16 + art_sys_125: -1.58651119e-25 + art_sys_126: 1.44615761e-20 + art_sys_127: -1.10612458e-22 + art_sys_128: 1.08011451e-18 + art_sys_129: -7.73522158e-25 + art_sys_130: 1.81884031e-22 + art_sys_131: 1.25034368e-24 + art_sys_132: 8.57778450e-18 + art_sys_133: -9.51213837e-23 + art_sys_134: -2.38010336e-21 + art_sys_135: -6.88201760e-19 + art_sys_136: -9.21238948e-27 + art_sys_137: -2.32475351e-22 + art_sys_138: 3.68296553e-19 + art_sys_139: 8.01922980e-23 + art_sys_140: -5.17223120e-26 + art_sys_141: -3.42526777e-23 + art_sys_142: -6.80304267e-20 + art_sys_143: 9.58047332e-26 + art_sys_144: -7.60162655e-24 + art_sys_145: -1.28681005e-19 + art_sys_146: -1.78568938e-22 + art_sys_147: 1.57924743e-25 + art_sys_148: 4.16897185e-26 + art_sys_149: 6.63067316e-20 + art_sys_150: 1.99277329e-21 + art_sys_151: -2.34930842e-20 + art_sys_152: -1.02566852e-23 + art_sys_153: -3.50156521e-20 + art_sys_154: 5.36404858e-11 + art_sys_155: -3.50078487e-22 + art_sys_156: 0.0 + art_sys_157: -6.07351267e-19 + art_sys_158: -0.0 + art_sys_159: 1.50117438e-19 + art_sys_160: 1.84530284e-20 + art_sys_161: 3.89877454e-21 + art_sys_162: 3.89877454e-21 + art_sys_163: -5.14728995e-21 + art_sys_164: -5.14728995e-21 + art_sys_165: 4.46135761e-35 + art_sys_166: -1.37357173e-35 + art_sys_167: -0.0 + art_sys_168: 1.45539154e-33 + art_sys_169: -1.28640668e-32 + art_sys_170: 3.45485862e-31 + art_sys_171: -3.08111994e-32 + art_sys_172: -1.13002917e-31 + art_sys_173: -2.20757611e-31 + art_sys_174: -1.55451739e-33 + art_sys_175: -1.17722286e-34 + art_sys_176: -1.23127614e-34 + art_sys_177: 1.89393568e-35 + art_sys_178: 3.91948809e-37 + art_sys_179: 2.96833068e-34 + art_sys_180: 3.03708899e-33 + art_sys_181: 2.06443076e-34 + art_sys_182: 4.45453883e-35 + art_sys_183: -2.06858098e-37 + art_sys_184: -4.63318546e-39 + art_sys_185: -1.14300156e-39 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -69208,189 +69208,189 @@ bins: uncorrelated_uncertainty: 4.24595000e-03 - art_sys_1: -1.80558495e-07 art_sys_2: -1.01152237e-06 - art_sys_3: -4.38311417e-18 - art_sys_4: -5.85123366e-16 - art_sys_5: -2.24293139e-19 + art_sys_3: 7.14168732e-18 + art_sys_4: 2.98374521e-16 + art_sys_5: 8.22764770e-18 art_sys_6: -2.38400528e-06 - art_sys_7: -1.84909842e-16 - art_sys_8: -1.43567083e-17 - art_sys_9: 4.39532962e-16 + art_sys_7: -1.03451966e-16 + art_sys_8: -8.51579387e-18 + art_sys_9: 6.80750680e-17 art_sys_10: -1.44876992e-06 - art_sys_11: -1.32733826e-15 - art_sys_12: -1.15196005e-16 - art_sys_13: -2.21927531e-05 - art_sys_14: -9.71033881e-18 - art_sys_15: 1.47239887e-16 - art_sys_16: -2.83694292e-16 + art_sys_11: 9.92764718e-17 + art_sys_12: 3.22182208e-17 + art_sys_13: 2.21927531e-05 + art_sys_14: -1.32718963e-16 + art_sys_15: -3.25938305e-17 + art_sys_16: 9.17854664e-16 art_sys_17: -8.01566573e-07 - art_sys_18: -2.19229480e-18 - art_sys_19: -6.60923570e-16 + art_sys_18: 3.36450767e-17 + art_sys_19: -9.91017431e-16 art_sys_20: -1.12124507e-04 - art_sys_21: 2.26198225e-16 + art_sys_21: -3.91560085e-17 art_sys_22: -1.20305744e-04 - art_sys_23: 5.34675990e-16 - art_sys_24: -1.15503801e-16 - art_sys_25: -4.64875917e-18 - art_sys_26: -3.20270728e-17 - art_sys_27: -1.86229812e-17 - art_sys_28: 6.88557238e-05 - art_sys_29: -5.23854378e-14 - art_sys_30: 4.41867212e-14 - art_sys_31: 2.60886018e-14 - art_sys_32: 3.90072591e-15 - art_sys_33: 2.13823302e-15 - art_sys_34: 1.23615956e-16 - art_sys_35: -1.58198457e-16 - art_sys_36: -1.77874184e-17 - art_sys_37: 3.55871827e-14 - art_sys_38: 3.71373350e-16 - art_sys_39: 1.05655474e-03 - art_sys_40: 8.98204924e-15 - art_sys_41: -3.81367281e-16 - art_sys_42: -1.29687051e-17 - art_sys_43: -2.14452427e-13 - art_sys_44: -5.46490495e-18 - art_sys_45: 8.31833622e-04 - art_sys_46: 1.74929937e-12 - art_sys_47: -3.46616685e-17 - art_sys_48: 1.30989707e-11 - art_sys_49: 5.30381190e-11 - art_sys_50: 1.61857530e-17 - art_sys_51: 9.50591081e-19 - art_sys_52: 1.08624095e-11 - art_sys_53: -2.59687773e-03 - art_sys_54: 1.16343751e-13 - art_sys_55: 1.54724188e-14 - art_sys_56: -3.23335485e-03 - art_sys_57: -7.53013477e-16 - art_sys_58: -3.65233008e-15 - art_sys_59: 3.73580320e-15 - art_sys_60: -4.02939067e-17 - art_sys_61: 8.40727964e-16 - art_sys_62: 2.00484453e-16 - art_sys_63: -1.23701370e-16 - art_sys_64: 7.25588909e-17 - art_sys_65: 4.23162043e-17 - art_sys_66: -9.88817514e-13 - art_sys_67: 2.65101771e-17 - art_sys_68: 5.92020219e-18 - art_sys_69: 1.20038754e-12 - art_sys_70: 2.58625777e-13 - art_sys_71: 1.72543856e-11 - art_sys_72: -7.52522244e-04 - art_sys_73: 1.63422784e-14 - art_sys_74: -2.12714246e-12 - art_sys_75: -6.67860178e-19 - art_sys_76: 8.15056015e-17 - art_sys_77: -3.13840239e-15 - art_sys_78: -9.70606333e-16 - art_sys_79: 6.63020337e-20 - art_sys_80: 1.30318153e-11 - art_sys_81: 5.61497520e-17 - art_sys_82: 2.52605538e-17 - art_sys_83: -1.20459445e-16 - art_sys_84: -7.48147746e-13 - art_sys_85: 1.65893911e-17 - art_sys_86: 6.42106521e-17 - art_sys_87: 1.07549985e-18 - art_sys_88: 5.71667939e-19 - art_sys_89: 1.25096977e-19 - art_sys_90: 7.20941671e-11 - art_sys_91: 1.22412342e-10 - art_sys_92: -2.08075446e-13 - art_sys_93: -4.44306376e-05 - art_sys_94: -3.35782741e-12 - art_sys_95: 4.32296405e-13 - art_sys_96: -5.20469365e-21 - art_sys_97: -1.52355136e-14 - art_sys_98: 6.52532360e-13 - art_sys_99: 4.42401480e-06 - art_sys_100: -4.91481532e-17 - art_sys_101: 6.56485032e-14 - art_sys_102: 4.42415414e-22 - art_sys_103: -2.49324380e-21 - art_sys_104: 4.24734659e-13 - art_sys_105: -4.99515563e-22 - art_sys_106: -4.71716286e-14 - art_sys_107: -2.35139074e-07 - art_sys_108: -2.06978518e-22 - art_sys_109: 3.88830184e-18 - art_sys_110: 1.20631440e-22 - art_sys_111: 9.01362915e-16 - art_sys_112: -2.21747670e-22 - art_sys_113: 1.96476180e-24 - art_sys_114: 4.69872488e-18 - art_sys_115: -4.88369461e-23 - art_sys_116: 2.31030551e-20 - art_sys_117: 9.55024116e-25 - art_sys_118: 4.92157978e-18 - art_sys_119: -6.51034425e-25 - art_sys_120: 3.13380784e-18 - art_sys_121: -5.23677847e-21 - art_sys_122: 2.75766221e-18 - art_sys_123: 7.95993002e-23 - art_sys_124: -1.12085985e-18 - art_sys_125: 1.87192156e-18 - art_sys_126: 2.81131471e-21 - art_sys_127: 2.24600326e-19 - art_sys_128: -3.28626303e-22 - art_sys_129: 2.62759469e-22 - art_sys_130: -9.36027077e-22 - art_sys_131: 8.69724579e-22 - art_sys_132: -2.84959140e-18 - art_sys_133: -1.34829100e-21 - art_sys_134: 2.90299309e-21 - art_sys_135: 1.42496179e-18 - art_sys_136: 1.44485706e-20 - art_sys_137: -1.20209566e-18 - art_sys_138: -2.84630558e-20 - art_sys_139: -1.85330168e-19 - art_sys_140: -2.12393509e-10 - art_sys_141: -1.07817875e-18 - art_sys_142: 0.0 - art_sys_143: 1.71316051e-17 - art_sys_144: 7.78327967e-18 - art_sys_145: 3.05420651e-18 - art_sys_146: -2.78579181e-24 - art_sys_147: 4.48812006e-26 - art_sys_148: 1.40748502e-23 - art_sys_149: 3.23276070e-24 - art_sys_150: 4.80318195e-25 - art_sys_151: -5.79433294e-23 - art_sys_152: 4.74627961e-24 - art_sys_153: 1.37768438e-24 - art_sys_154: -5.78011718e-23 - art_sys_155: 2.88768158e-22 - art_sys_156: 1.07884517e-21 - art_sys_157: 4.30830792e-20 - art_sys_158: -0.0 - art_sys_159: 2.14662699e-19 - art_sys_160: 2.14662699e-19 - art_sys_161: 1.33138932e-20 - art_sys_162: -4.39229195e-33 - art_sys_163: -0.0 - art_sys_164: -2.47712982e-33 - art_sys_165: -2.47467660e-30 - art_sys_166: 1.03974554e-30 - art_sys_167: -3.66453049e-31 - art_sys_168: -4.52871287e-31 - art_sys_169: 2.07887566e-30 - art_sys_170: -1.78216500e-30 - art_sys_171: -1.49263734e-29 - art_sys_172: 5.80299525e-29 - art_sys_173: -1.57389491e-29 - art_sys_174: 1.81019065e-33 - art_sys_175: -2.86091236e-31 - art_sys_176: 1.03476904e-30 - art_sys_177: 1.83337184e-31 - art_sys_178: 9.25293139e-33 - art_sys_179: -1.67845540e-33 - art_sys_180: -1.42189317e-33 - art_sys_181: 2.04610102e-34 - art_sys_182: 9.55828290e-34 - art_sys_183: 3.87033541e-36 - art_sys_184: 3.96591690e-39 - art_sys_185: -1.67779762e-34 + art_sys_23: -2.04366340e-16 + art_sys_24: -3.02483393e-16 + art_sys_25: -1.03098442e-17 + art_sys_26: -1.13217501e-17 + art_sys_27: 5.82053906e-17 + art_sys_28: 6.88557239e-05 + art_sys_29: -2.88488201e-17 + art_sys_30: -4.61087068e-17 + art_sys_31: -1.05655474e-03 + art_sys_32: -1.47156353e-17 + art_sys_33: 2.97479645e-16 + art_sys_34: 2.41199413e-16 + art_sys_35: 8.31833621e-04 + art_sys_36: -1.10871517e-13 + art_sys_37: 2.13109900e-14 + art_sys_38: 5.14120155e-15 + art_sys_39: 2.84477102e-15 + art_sys_40: -1.88944241e-15 + art_sys_41: 2.54407509e-16 + art_sys_42: 6.51760685e-16 + art_sys_43: -5.55113529e-16 + art_sys_44: -3.59845369e-17 + art_sys_45: -3.55098138e-17 + art_sys_46: -5.59890393e-18 + art_sys_47: -3.33851723e-12 + art_sys_48: -1.40348060e-11 + art_sys_49: 1.72612235e-10 + art_sys_50: 1.12045647e-17 + art_sys_51: 1.25541180e-17 + art_sys_52: 2.59687773e-03 + art_sys_53: 7.36453688e-11 + art_sys_54: -2.66973900e-12 + art_sys_55: 3.34097103e-12 + art_sys_56: 3.23335456e-03 + art_sys_57: -5.37058067e-18 + art_sys_58: 2.76804258e-19 + art_sys_59: -4.96891953e-15 + art_sys_60: -2.01850547e-15 + art_sys_61: -4.65436026e-15 + art_sys_62: -7.52522344e-04 + art_sys_63: 1.76674656e-14 + art_sys_64: 1.91406279e-15 + art_sys_65: 5.54847641e-17 + art_sys_66: 6.28260999e-16 + art_sys_67: 6.81520110e-17 + art_sys_68: 2.60469612e-17 + art_sys_69: -1.37029111e-16 + art_sys_70: -5.23367648e-17 + art_sys_71: -4.65048937e-17 + art_sys_72: 1.48492716e-18 + art_sys_73: -1.30166659e-18 + art_sys_74: -1.89801703e-14 + art_sys_75: 9.68973195e-19 + art_sys_76: -3.36439267e-16 + art_sys_77: 1.27607655e-15 + art_sys_78: -3.16650018e-16 + art_sys_79: -5.83717425e-19 + art_sys_80: 5.05409099e-16 + art_sys_81: -2.39056236e-13 + art_sys_82: 2.31179761e-11 + art_sys_83: 1.55889848e-16 + art_sys_84: 6.97801148e-17 + art_sys_85: -6.23527864e-17 + art_sys_86: -1.51288730e-17 + art_sys_87: 2.59583110e-14 + art_sys_88: 3.26281995e-15 + art_sys_89: 6.30504599e-19 + art_sys_90: 2.92452523e-17 + art_sys_91: 5.49751173e-13 + art_sys_92: -3.96616652e-19 + art_sys_93: 3.77412276e-19 + art_sys_94: 1.25944007e-18 + art_sys_95: 2.16680636e-13 + art_sys_96: 6.59003272e-11 + art_sys_97: 4.44307582e-05 + art_sys_98: 3.50495857e-13 + art_sys_99: 8.45662727e-13 + art_sys_100: -9.13799828e-12 + art_sys_101: -2.09431806e-11 + art_sys_102: 4.77913664e-12 + art_sys_103: -4.42397650e-06 + art_sys_104: 5.48207414e-13 + art_sys_105: -3.90385592e-19 + art_sys_106: -1.34767278e-12 + art_sys_107: 3.62015776e-15 + art_sys_108: 1.81425784e-21 + art_sys_109: -8.32345893e-23 + art_sys_110: -7.66227022e-14 + art_sys_111: 8.10130210e-12 + art_sys_112: 3.43991438e-14 + art_sys_113: 2.35157796e-07 + art_sys_114: -2.24391554e-23 + art_sys_115: -1.89196850e-14 + art_sys_116: 7.43934546e-19 + art_sys_117: 3.31315377e-23 + art_sys_118: 2.23987863e-14 + art_sys_119: 2.20193086e-19 + art_sys_120: -3.85702624e-16 + art_sys_121: -2.45320722e-22 + art_sys_122: -5.16075191e-14 + art_sys_123: -4.27662414e-22 + art_sys_124: 1.66835460e-15 + art_sys_125: -1.53526542e-25 + art_sys_126: -4.86680873e-20 + art_sys_127: 6.49755553e-22 + art_sys_128: -9.79784695e-18 + art_sys_129: 3.04808995e-24 + art_sys_130: -1.07752205e-21 + art_sys_131: -8.06431407e-24 + art_sys_132: -3.54251823e-17 + art_sys_133: 5.69986413e-22 + art_sys_134: 9.57209685e-21 + art_sys_135: 3.30598122e-18 + art_sys_136: -3.96883778e-25 + art_sys_137: 1.28714289e-21 + art_sys_138: -1.28272356e-18 + art_sys_139: -4.00348446e-22 + art_sys_140: 9.33833457e-26 + art_sys_141: 3.75609480e-22 + art_sys_142: 5.90022994e-19 + art_sys_143: 3.69195047e-24 + art_sys_144: 3.75998362e-23 + art_sys_145: 5.97229657e-19 + art_sys_146: 8.04942427e-22 + art_sys_147: -7.92791803e-25 + art_sys_148: -1.92785820e-25 + art_sys_149: -2.68262551e-19 + art_sys_150: -8.18108119e-21 + art_sys_151: 9.27585140e-20 + art_sys_152: 4.11283329e-23 + art_sys_153: 1.36648342e-19 + art_sys_154: -2.06684774e-10 + art_sys_155: 1.36104573e-21 + art_sys_156: -0.0 + art_sys_157: 2.33522799e-18 + art_sys_158: 0.0 + art_sys_159: -5.76233503e-19 + art_sys_160: -7.10227138e-20 + art_sys_161: -1.49566038e-20 + art_sys_162: -1.49566038e-20 + art_sys_163: 1.97235036e-20 + art_sys_164: 1.97235036e-20 + art_sys_165: -1.70941661e-34 + art_sys_166: 5.26249094e-35 + art_sys_167: 0.0 + art_sys_168: 7.44694366e-33 + art_sys_169: -9.36983147e-32 + art_sys_170: -1.98396510e-30 + art_sys_171: -1.45692759e-29 + art_sys_172: -4.70689463e-31 + art_sys_173: 3.07509529e-31 + art_sys_174: -8.47537047e-32 + art_sys_175: -7.77082501e-33 + art_sys_176: -2.45870939e-33 + art_sys_177: -9.53870193e-35 + art_sys_178: -4.56187889e-35 + art_sys_179: -1.15023535e-33 + art_sys_180: -1.16545930e-32 + art_sys_181: -9.63272794e-34 + art_sys_182: 1.24164877e-33 + art_sys_183: -6.09465441e-36 + art_sys_184: -1.54550394e-37 + art_sys_185: 5.27722209e-39 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -69499,189 +69499,189 @@ bins: uncorrelated_uncertainty: 1.37002000e-03 - art_sys_1: -1.14437486e-08 art_sys_2: -7.11510434e-08 - art_sys_3: 2.38804405e-19 - art_sys_4: 2.06111989e-17 - art_sys_5: 1.85301087e-19 + art_sys_3: -2.98035957e-19 + art_sys_4: -4.69572143e-18 + art_sys_5: 8.80344213e-20 art_sys_6: -1.31177234e-07 - art_sys_7: -4.24672444e-17 - art_sys_8: -6.62941899e-19 - art_sys_9: -1.64352585e-17 + art_sys_7: -1.23573809e-17 + art_sys_8: -2.77076547e-19 + art_sys_9: 6.64428070e-18 art_sys_10: 1.05104293e-07 - art_sys_11: -1.99502590e-16 - art_sys_12: -1.45600704e-17 - art_sys_13: -9.34615417e-07 - art_sys_14: 8.47969309e-19 - art_sys_15: -9.75446719e-18 - art_sys_16: 5.93298137e-17 + art_sys_11: -3.65385686e-17 + art_sys_12: -2.43344376e-17 + art_sys_13: 9.34615417e-07 + art_sys_14: -7.27540014e-17 + art_sys_15: -3.68441575e-18 + art_sys_16: -2.33886448e-18 art_sys_17: 6.01308051e-06 - art_sys_18: 6.29320231e-18 - art_sys_19: -1.48448405e-18 + art_sys_18: -4.42413977e-19 + art_sys_19: 9.79391421e-17 art_sys_20: 4.71207149e-06 - art_sys_21: -5.44773619e-17 + art_sys_21: 4.86784745e-17 art_sys_22: -2.61029182e-06 - art_sys_23: -2.60457069e-17 - art_sys_24: -3.60375109e-17 - art_sys_25: 1.89737110e-17 - art_sys_26: -3.68901299e-17 - art_sys_27: 1.35212137e-17 + art_sys_23: 8.28008663e-18 + art_sys_24: -2.19045549e-17 + art_sys_25: -2.81815580e-17 + art_sys_26: 5.45256256e-17 + art_sys_27: -2.15490718e-17 art_sys_28: 6.35230146e-05 - art_sys_29: 1.02231722e-13 - art_sys_30: 3.15219575e-14 - art_sys_31: 9.78361634e-15 - art_sys_32: 1.40315402e-15 - art_sys_33: 2.00782987e-15 - art_sys_34: -8.39830397e-16 - art_sys_35: 1.16489407e-16 - art_sys_36: -6.77058441e-18 - art_sys_37: 2.77251155e-16 - art_sys_38: 2.37408258e-16 - art_sys_39: 8.19415911e-06 - art_sys_40: 5.34177840e-17 - art_sys_41: -2.84722242e-17 - art_sys_42: 1.33334117e-16 - art_sys_43: -6.72192607e-14 - art_sys_44: -3.78985294e-17 - art_sys_45: 2.60686214e-04 - art_sys_46: -1.75892639e-13 - art_sys_47: -1.68340914e-17 - art_sys_48: 9.46000579e-12 - art_sys_49: -9.43622775e-11 - art_sys_50: -1.00859989e-17 - art_sys_51: -8.07762888e-18 - art_sys_52: -1.59585487e-11 - art_sys_53: 2.64813313e-04 - art_sys_54: -2.15623609e-13 - art_sys_55: -3.09387150e-13 - art_sys_56: -1.96067445e-03 - art_sys_57: 1.62781674e-15 - art_sys_58: 7.17572621e-15 - art_sys_59: -4.79605324e-15 - art_sys_60: 7.67230543e-17 - art_sys_61: -1.67055646e-15 - art_sys_62: -3.95640571e-16 - art_sys_63: 2.21867139e-16 - art_sys_64: -1.58391104e-16 - art_sys_65: -7.43603494e-17 - art_sys_66: 1.88811603e-12 - art_sys_67: -5.18019204e-17 - art_sys_68: -1.29534199e-17 - art_sys_69: -1.99433301e-12 - art_sys_70: -4.88712903e-13 - art_sys_71: -3.29440790e-11 - art_sys_72: 1.43692658e-03 - art_sys_73: -1.21110655e-14 - art_sys_74: 3.43861954e-12 - art_sys_75: 1.03934810e-18 - art_sys_76: 1.81886243e-15 - art_sys_77: 4.90489292e-15 - art_sys_78: 1.58904492e-15 - art_sys_79: 3.57089445e-20 - art_sys_80: -2.04274358e-11 - art_sys_81: -4.68562880e-17 - art_sys_82: -4.50529118e-17 - art_sys_83: 2.06852190e-16 - art_sys_84: 1.23296469e-12 - art_sys_85: -3.51204994e-17 - art_sys_86: -1.02943797e-16 - art_sys_87: -1.80739309e-18 - art_sys_88: -1.92778570e-18 - art_sys_89: -1.99588535e-19 - art_sys_90: -1.16050928e-10 - art_sys_91: -2.01886201e-10 - art_sys_92: 5.29680631e-13 - art_sys_93: 7.17176005e-05 - art_sys_94: 3.73801942e-12 - art_sys_95: -6.64834308e-13 - art_sys_96: 1.40631788e-20 - art_sys_97: 4.15510959e-14 - art_sys_98: -1.44496607e-12 - art_sys_99: -1.10467321e-05 - art_sys_100: 1.38317941e-16 - art_sys_101: -5.95232849e-14 - art_sys_102: -4.12041423e-22 - art_sys_103: 6.98339845e-21 - art_sys_104: -6.06869041e-13 - art_sys_105: 6.86402420e-22 - art_sys_106: 1.64269138e-13 - art_sys_107: 2.61786174e-07 - art_sys_108: 2.64796068e-22 - art_sys_109: -1.50227962e-17 - art_sys_110: -1.29881106e-22 - art_sys_111: -8.14330014e-16 - art_sys_112: 6.35127336e-22 - art_sys_113: -2.33024579e-24 - art_sys_114: -1.33395778e-16 - art_sys_115: 2.31230171e-23 - art_sys_116: -6.71892807e-20 - art_sys_117: 3.11831624e-24 - art_sys_118: -4.26456727e-17 - art_sys_119: -8.31273784e-24 - art_sys_120: 1.65919794e-18 - art_sys_121: 1.40131234e-20 - art_sys_122: -2.94293234e-18 - art_sys_123: -1.58965339e-22 - art_sys_124: 1.21609695e-18 - art_sys_125: -4.58852882e-18 - art_sys_126: -7.65442882e-21 - art_sys_127: -3.92899378e-19 - art_sys_128: 7.28764254e-22 - art_sys_129: -6.51962846e-22 - art_sys_130: 2.40833058e-21 - art_sys_131: -2.36141634e-21 - art_sys_132: 7.96322175e-18 - art_sys_133: 3.73469825e-21 - art_sys_134: -7.78868817e-21 - art_sys_135: -3.89046544e-18 - art_sys_136: -3.99583309e-20 - art_sys_137: 3.34054423e-18 - art_sys_138: 7.95203507e-20 - art_sys_139: 5.18556766e-19 - art_sys_140: 5.95156195e-10 - art_sys_141: 3.02045005e-18 - art_sys_142: -0.0 - art_sys_143: -4.80081357e-17 - art_sys_144: -2.18113343e-17 - art_sys_145: -8.55719414e-18 - art_sys_146: 5.47606833e-24 - art_sys_147: -5.66141410e-25 - art_sys_148: -3.44252291e-23 - art_sys_149: -5.99180078e-24 - art_sys_150: -1.07916002e-24 - art_sys_151: 1.54438501e-22 - art_sys_152: -1.27655331e-23 - art_sys_153: -3.88594319e-24 - art_sys_154: 1.61216072e-22 - art_sys_155: -8.07959568e-22 - art_sys_156: -3.02227939e-21 - art_sys_157: -1.20723907e-19 - art_sys_158: 0.0 - art_sys_159: -6.01571138e-19 - art_sys_160: -6.01571138e-19 - art_sys_161: -3.73133052e-20 - art_sys_162: 1.23097209e-32 - art_sys_163: 0.0 - art_sys_164: 6.94231892e-33 - art_sys_165: 1.59060166e-30 - art_sys_166: -9.19361645e-31 - art_sys_167: 3.21547922e-31 - art_sys_168: 3.39557131e-31 - art_sys_169: -1.43244849e-30 - art_sys_170: 1.91705858e-31 - art_sys_171: 1.37640294e-30 - art_sys_172: -3.62849018e-29 - art_sys_173: 4.17792229e-30 - art_sys_174: -5.07138694e-33 - art_sys_175: -7.33223442e-32 - art_sys_176: -4.06209890e-31 - art_sys_177: -1.13499611e-31 - art_sys_178: -5.81152934e-33 - art_sys_179: 1.26326900e-33 - art_sys_180: 9.88444394e-34 - art_sys_181: -4.78718422e-34 - art_sys_182: 6.69733017e-35 - art_sys_183: -1.40374469e-37 - art_sys_184: -3.58866580e-38 - art_sys_185: 4.70193834e-34 + art_sys_29: -4.79495534e-17 + art_sys_30: 4.45104171e-17 + art_sys_31: -8.19415913e-06 + art_sys_32: -8.49945221e-18 + art_sys_33: 2.67030348e-17 + art_sys_34: -2.82737035e-17 + art_sys_35: 2.60686214e-04 + art_sys_36: -1.62391301e-14 + art_sys_37: 9.42208947e-15 + art_sys_38: 6.28898102e-15 + art_sys_39: 5.37095741e-15 + art_sys_40: -1.68594678e-15 + art_sys_41: -1.36412306e-17 + art_sys_42: 1.66168558e-15 + art_sys_43: 1.24184804e-16 + art_sys_44: 1.64208908e-16 + art_sys_45: -1.25421674e-18 + art_sys_46: -2.03980088e-17 + art_sys_47: 5.08104716e-13 + art_sys_48: -6.13956589e-12 + art_sys_49: 1.01942750e-10 + art_sys_50: 5.72671525e-18 + art_sys_51: 6.13868926e-18 + art_sys_52: -2.64813314e-04 + art_sys_53: -1.56203316e-10 + art_sys_54: 4.74981519e-12 + art_sys_55: -5.78575931e-12 + art_sys_56: 1.96067454e-03 + art_sys_57: 9.49837107e-18 + art_sys_58: -5.15563114e-19 + art_sys_59: 8.23669469e-15 + art_sys_60: 2.13868895e-15 + art_sys_61: 7.51267130e-15 + art_sys_62: 1.43692669e-03 + art_sys_63: -3.47920823e-14 + art_sys_64: -3.03119420e-15 + art_sys_65: -1.36280817e-16 + art_sys_66: -8.89182759e-16 + art_sys_67: -1.82493903e-16 + art_sys_68: -6.32568912e-17 + art_sys_69: 2.41436507e-16 + art_sys_70: 8.86760743e-17 + art_sys_71: 7.47781225e-17 + art_sys_72: -2.25634000e-18 + art_sys_73: 1.84385377e-18 + art_sys_74: 3.07279746e-14 + art_sys_75: -1.46271691e-18 + art_sys_76: 3.35661395e-16 + art_sys_77: -2.30285847e-15 + art_sys_78: 4.65343705e-16 + art_sys_79: 8.72992199e-19 + art_sys_80: -8.74877591e-16 + art_sys_81: 3.85872089e-13 + art_sys_82: -3.73159497e-11 + art_sys_83: -2.44151671e-16 + art_sys_84: -1.34829624e-16 + art_sys_85: 1.08446928e-16 + art_sys_86: 1.88957859e-17 + art_sys_87: -6.46892760e-14 + art_sys_88: -2.72162613e-15 + art_sys_89: -3.28836864e-18 + art_sys_90: -1.15545065e-16 + art_sys_91: -8.90070551e-13 + art_sys_92: 6.35920738e-19 + art_sys_93: -6.36083556e-19 + art_sys_94: -1.54643718e-18 + art_sys_95: -3.50653688e-13 + art_sys_96: -1.06834932e-10 + art_sys_97: -7.17178252e-05 + art_sys_98: -8.75368003e-13 + art_sys_99: -2.06812077e-12 + art_sys_100: 2.28175836e-11 + art_sys_101: 5.21332010e-11 + art_sys_102: -5.32060861e-12 + art_sys_103: 1.10466661e-05 + art_sys_104: -1.36981592e-12 + art_sys_105: 1.09277344e-18 + art_sys_106: 1.47541212e-12 + art_sys_107: -4.02634924e-15 + art_sys_108: -3.41148824e-21 + art_sys_109: 8.84618824e-23 + art_sys_110: 2.14704512e-13 + art_sys_111: -9.00676484e-12 + art_sys_112: -9.68415789e-14 + art_sys_113: -2.61803601e-07 + art_sys_114: 6.21087527e-23 + art_sys_115: 2.15235041e-14 + art_sys_116: -2.08516586e-18 + art_sys_117: -2.81060922e-23 + art_sys_118: -6.32687753e-14 + art_sys_119: -6.17040164e-19 + art_sys_120: 1.08069049e-15 + art_sys_121: 2.83422105e-22 + art_sys_122: 1.44751053e-13 + art_sys_123: 4.48463290e-22 + art_sys_124: -4.64061781e-15 + art_sys_125: 2.31433602e-26 + art_sys_126: 1.72787739e-19 + art_sys_127: -7.56429241e-22 + art_sys_128: 2.95197528e-17 + art_sys_129: -6.87840121e-24 + art_sys_130: 1.26594834e-21 + art_sys_131: 6.96318736e-24 + art_sys_132: 9.91922354e-17 + art_sys_133: -6.75308337e-22 + art_sys_134: -2.44297399e-20 + art_sys_135: -1.03138176e-17 + art_sys_136: -1.10160567e-24 + art_sys_137: -1.74998208e-21 + art_sys_138: 2.93358534e-18 + art_sys_139: 6.48801665e-22 + art_sys_140: -7.69011243e-25 + art_sys_141: 1.33099998e-22 + art_sys_142: -4.29302622e-19 + art_sys_143: -6.77207170e-25 + art_sys_144: -6.61475724e-23 + art_sys_145: -1.26915199e-18 + art_sys_146: -1.69673465e-21 + art_sys_147: 1.30157213e-24 + art_sys_148: 3.49818328e-25 + art_sys_149: 7.11545604e-19 + art_sys_150: 1.99545317e-20 + art_sys_151: -2.49342054e-19 + art_sys_152: -1.07065198e-22 + art_sys_153: -3.74825832e-19 + art_sys_154: 5.79183545e-10 + art_sys_155: -3.75557892e-21 + art_sys_156: 0.0 + art_sys_157: -6.57191019e-18 + art_sys_158: -0.0 + art_sys_159: 1.62512479e-18 + art_sys_160: 1.99292053e-19 + art_sys_161: 4.22199689e-20 + art_sys_162: 4.22199689e-20 + art_sys_163: -5.57968358e-20 + art_sys_164: -5.57968358e-20 + art_sys_165: 4.83645234e-34 + art_sys_166: -1.48917189e-34 + art_sys_167: -0.0 + art_sys_168: 7.38273783e-32 + art_sys_169: -5.33516117e-32 + art_sys_170: 1.80887822e-30 + art_sys_171: 7.51632497e-30 + art_sys_172: -4.84046116e-31 + art_sys_173: -9.20637214e-31 + art_sys_174: 7.81402788e-32 + art_sys_175: 1.57590802e-33 + art_sys_176: 6.12244406e-34 + art_sys_177: 1.08001998e-34 + art_sys_178: 2.53879718e-35 + art_sys_179: 3.19201120e-33 + art_sys_180: 3.28857614e-32 + art_sys_181: 1.23035965e-33 + art_sys_182: -5.15697469e-34 + art_sys_183: 8.15898937e-36 + art_sys_184: 7.16949700e-38 + art_sys_185: -9.25600081e-39 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -69788,191 +69788,191 @@ bins: RelativeStatFSR-: -4.18023993e-04 luminosity_uncertainty: 9.98088000e-04 uncorrelated_uncertainty: 3.83880000e-04 -- art_sys_1: -1.21197664e-10 +- art_sys_1: -1.21197665e-10 art_sys_2: -3.70634710e-09 - art_sys_3: 7.78457665e-20 - art_sys_4: 8.93237380e-18 - art_sys_5: -3.93633582e-21 + art_sys_3: -1.38368382e-19 + art_sys_4: -1.42445141e-17 + art_sys_5: -1.19991098e-19 art_sys_6: -3.76985478e-09 - art_sys_7: 1.74448335e-18 - art_sys_8: 2.32485884e-19 - art_sys_9: -1.00403223e-17 + art_sys_7: 1.88125345e-18 + art_sys_8: 2.76989995e-20 + art_sys_9: -5.10038183e-19 art_sys_10: 2.19379115e-08 - art_sys_11: 1.65484606e-17 - art_sys_12: 2.81459417e-18 - art_sys_13: 1.45216643e-07 - art_sys_14: 1.61918405e-19 - art_sys_15: -3.95535832e-18 - art_sys_16: -2.91278471e-18 + art_sys_11: -5.20059402e-18 + art_sys_12: -5.57406338e-19 + art_sys_13: -1.45216643e-07 + art_sys_14: 1.57617925e-18 + art_sys_15: 7.68637711e-19 + art_sys_16: -1.86589614e-17 art_sys_17: 7.10687258e-07 - art_sys_18: 4.13041399e-19 - art_sys_19: 1.25295319e-17 + art_sys_18: -5.60042488e-19 + art_sys_19: 5.39597680e-17 art_sys_20: 2.05993403e-06 - art_sys_21: -8.88093076e-18 + art_sys_21: 2.62561051e-18 art_sys_22: 1.65259419e-06 - art_sys_23: -2.06282404e-17 - art_sys_24: 2.59554824e-18 - art_sys_25: -2.03258287e-19 - art_sys_26: 1.42508015e-17 - art_sys_27: 3.95620787e-18 + art_sys_23: 8.65486995e-18 + art_sys_24: 1.02387725e-17 + art_sys_25: 1.12576341e-18 + art_sys_26: -6.16346622e-18 + art_sys_27: -5.34603459e-18 art_sys_28: 3.07516679e-06 - art_sys_29: 3.07443014e-14 - art_sys_30: 1.89049772e-14 - art_sys_31: 1.18492072e-14 - art_sys_32: -5.81637027e-15 - art_sys_33: -6.06397011e-16 - art_sys_34: 5.16632836e-16 - art_sys_35: -1.50293379e-16 - art_sys_36: -8.47864147e-18 - art_sys_37: -8.11652690e-16 - art_sys_38: -3.48945469e-17 - art_sys_39: -2.43932692e-05 - art_sys_40: -2.13795665e-16 - art_sys_41: -1.28422566e-18 - art_sys_42: 4.34504846e-17 - art_sys_43: 3.04573369e-15 - art_sys_44: -1.13934147e-17 - art_sys_45: -1.17912182e-05 - art_sys_46: -7.22758793e-14 - art_sys_47: 7.77664073e-18 - art_sys_48: 1.16194593e-13 - art_sys_49: -1.90729550e-11 - art_sys_50: -3.92804301e-17 - art_sys_51: -1.03602272e-17 - art_sys_52: 1.85775496e-10 - art_sys_53: 1.07527794e-04 - art_sys_54: 1.20394626e-12 - art_sys_55: -8.51881818e-13 - art_sys_56: 2.87637349e-05 - art_sys_57: 5.28808634e-15 - art_sys_58: 8.34139394e-15 - art_sys_59: 3.61345259e-15 - art_sys_60: 4.50351218e-18 - art_sys_61: -3.39068390e-15 - art_sys_62: 6.94889156e-18 - art_sys_63: -4.95456609e-16 - art_sys_64: -7.87511541e-18 - art_sys_65: -3.45649701e-17 - art_sys_66: 3.74440614e-13 - art_sys_67: -3.53547831e-17 - art_sys_68: -4.69903723e-17 - art_sys_69: 1.32607880e-11 - art_sys_70: -2.77875037e-14 - art_sys_71: -6.51916696e-12 - art_sys_72: 2.85323233e-04 - art_sys_73: 5.13968953e-13 - art_sys_74: -2.37100263e-11 - art_sys_75: -8.27111163e-18 - art_sys_76: 9.61988967e-15 - art_sys_77: -3.62324917e-14 - art_sys_78: -1.10172440e-14 - art_sys_79: 1.12109192e-18 - art_sys_80: 1.49027517e-10 - art_sys_81: 8.06397433e-16 - art_sys_82: 2.84100115e-16 - art_sys_83: -1.30906232e-15 - art_sys_84: -8.30080315e-12 - art_sys_85: 1.56382352e-16 - art_sys_86: 7.36456129e-16 - art_sys_87: 1.30041212e-17 - art_sys_88: 5.91451150e-18 - art_sys_89: 1.48162978e-18 - art_sys_90: 8.11951316e-10 - art_sys_91: 1.25070390e-09 - art_sys_92: -1.53047796e-12 - art_sys_93: -4.99448114e-04 - art_sys_94: -8.90911327e-11 - art_sys_95: -2.41153713e-13 - art_sys_96: -2.50777098e-20 - art_sys_97: -2.19873320e-13 - art_sys_98: 1.49751642e-11 - art_sys_99: 3.34391765e-05 - art_sys_100: -6.77302148e-16 - art_sys_101: 1.84381927e-12 - art_sys_102: 1.21711245e-20 - art_sys_103: -3.13173487e-20 - art_sys_104: 1.02551776e-11 - art_sys_105: -1.91879633e-20 - art_sys_106: -4.14923501e-13 - art_sys_107: -6.23265306e-06 - art_sys_108: -4.42910158e-21 - art_sys_109: 2.34523382e-17 - art_sys_110: 3.24054236e-21 - art_sys_111: 2.45977101e-14 - art_sys_112: -1.32816534e-21 - art_sys_113: 5.71775938e-23 - art_sys_114: -3.03294719e-16 - art_sys_115: -1.05862508e-21 - art_sys_116: 3.50324958e-19 - art_sys_117: 1.18949082e-23 - art_sys_118: 1.55585076e-16 - art_sys_119: -2.44465579e-22 - art_sys_120: -2.95236426e-17 - art_sys_121: -9.18299351e-20 - art_sys_122: 5.32509469e-18 - art_sys_123: 1.14557507e-21 - art_sys_124: -1.97410768e-18 - art_sys_125: 2.23832827e-17 - art_sys_126: 4.12351565e-20 - art_sys_127: 1.66118502e-18 - art_sys_128: -4.90580062e-21 - art_sys_129: 3.77744412e-21 - art_sys_130: -1.31228739e-20 - art_sys_131: 1.22485762e-20 - art_sys_132: -4.05363509e-17 - art_sys_133: -1.90137862e-20 - art_sys_134: 3.99001533e-20 - art_sys_135: 1.95842763e-17 - art_sys_136: 2.00545904e-19 - art_sys_137: -1.66387668e-17 - art_sys_138: -3.94863340e-19 - art_sys_139: -2.57099040e-18 - art_sys_140: -2.94628108e-09 - art_sys_141: -1.49577810e-17 - art_sys_142: 0.0 - art_sys_143: 2.37638777e-16 - art_sys_144: 1.07965431e-16 - art_sys_145: 4.23691320e-17 - art_sys_146: -5.58257477e-23 - art_sys_147: -2.45482981e-24 - art_sys_148: 1.83532696e-22 - art_sys_149: 5.23535723e-23 - art_sys_150: 7.02920922e-24 - art_sys_151: -8.15517596e-22 - art_sys_152: 6.69656198e-23 - art_sys_153: 1.87525647e-23 - art_sys_154: -8.02641347e-22 - art_sys_155: 4.00802277e-21 - art_sys_156: 1.49677711e-20 - art_sys_157: 5.97641253e-19 - art_sys_158: -0.0 - art_sys_159: 2.97784577e-18 - art_sys_160: 2.97784577e-18 - art_sys_161: 1.84671771e-19 - art_sys_162: -6.09234531e-32 - art_sys_163: -0.0 - art_sys_164: -3.43590181e-32 - art_sys_165: -5.32727863e-29 - art_sys_166: 2.30449769e-29 - art_sys_167: -1.01389984e-29 - art_sys_168: -1.19293510e-29 - art_sys_169: 5.04967756e-29 - art_sys_170: -5.91388370e-29 - art_sys_171: -4.19347307e-28 - art_sys_172: 1.47817845e-27 - art_sys_173: -4.59309739e-28 - art_sys_174: 2.51123858e-32 - art_sys_175: -1.13232764e-29 - art_sys_176: 3.29995474e-29 - art_sys_177: 4.21205486e-30 - art_sys_178: 2.13225489e-31 - art_sys_179: -6.31732495e-32 - art_sys_180: -3.60087307e-32 - art_sys_181: 4.50627980e-33 - art_sys_182: 2.46455306e-32 - art_sys_183: 7.90335842e-35 - art_sys_184: 1.73508795e-38 - art_sys_185: -2.32724209e-33 + art_sys_29: 3.29555975e-17 + art_sys_30: -1.48058011e-17 + art_sys_31: 2.43932692e-05 + art_sys_32: 2.18935332e-18 + art_sys_33: -1.02980922e-17 + art_sys_34: -1.05214595e-17 + art_sys_35: -1.17912182e-05 + art_sys_36: -1.21237084e-13 + art_sys_37: 2.67849072e-14 + art_sys_38: 3.10062176e-15 + art_sys_39: 4.65568565e-15 + art_sys_40: 2.41110920e-15 + art_sys_41: 1.03723054e-15 + art_sys_42: -5.23987895e-16 + art_sys_43: -5.49503023e-16 + art_sys_44: -1.25734037e-16 + art_sys_45: -3.09778293e-17 + art_sys_46: -4.68714603e-18 + art_sys_47: 1.45934990e-13 + art_sys_48: 2.33728796e-13 + art_sys_49: -1.60605245e-12 + art_sys_50: -8.93920164e-18 + art_sys_51: -1.54260013e-17 + art_sys_52: -1.07527794e-04 + art_sys_53: -2.29460638e-11 + art_sys_54: -1.75699003e-11 + art_sys_55: 2.51635061e-11 + art_sys_56: -2.87636931e-05 + art_sys_57: 2.98856543e-18 + art_sys_58: 3.84092309e-19 + art_sys_59: 2.77699320e-14 + art_sys_60: -2.01578275e-14 + art_sys_61: -5.23254351e-14 + art_sys_62: 2.85323325e-04 + art_sys_63: -5.30495795e-14 + art_sys_64: 2.24583336e-14 + art_sys_65: -2.13104674e-16 + art_sys_66: 7.58709039e-15 + art_sys_67: 4.66310405e-16 + art_sys_68: 2.18525277e-16 + art_sys_69: -1.47304465e-15 + art_sys_70: -5.79006239e-16 + art_sys_71: -5.38240406e-16 + art_sys_72: 1.81225928e-17 + art_sys_73: -1.60094554e-17 + art_sys_74: -2.12976953e-13 + art_sys_75: 1.10105912e-17 + art_sys_76: -2.89901960e-15 + art_sys_77: 1.31298802e-14 + art_sys_78: -3.39035858e-15 + art_sys_79: -6.47495957e-18 + art_sys_80: 5.40505227e-15 + art_sys_81: -2.68724849e-12 + art_sys_82: 2.59867119e-10 + art_sys_83: 1.76634510e-15 + art_sys_84: 6.66459696e-16 + art_sys_85: -6.76459257e-16 + art_sys_86: -1.90950003e-16 + art_sys_87: 1.97590097e-13 + art_sys_88: 8.72935273e-14 + art_sys_89: -4.97160119e-18 + art_sys_90: 4.62246486e-16 + art_sys_91: 6.10040267e-12 + art_sys_92: -4.36931586e-18 + art_sys_93: 4.47643069e-18 + art_sys_94: 3.28175250e-17 + art_sys_95: 2.44191824e-12 + art_sys_96: 7.38853301e-10 + art_sys_97: 4.99449323e-04 + art_sys_98: 2.65287381e-12 + art_sys_99: 6.62619756e-12 + art_sys_100: -6.90698826e-11 + art_sys_101: -1.60522616e-10 + art_sys_102: 1.26678829e-10 + art_sys_103: -3.34387796e-05 + art_sys_104: 4.14865144e-12 + art_sys_105: -5.42469234e-18 + art_sys_106: -3.59082114e-11 + art_sys_107: 9.59868171e-14 + art_sys_108: 3.69215264e-20 + art_sys_109: -2.25728918e-21 + art_sys_110: -1.06285929e-12 + art_sys_111: 2.14831019e-10 + art_sys_112: 4.73785049e-13 + art_sys_113: 6.23320193e-06 + art_sys_114: -3.16544646e-22 + art_sys_115: -4.98824963e-13 + art_sys_116: 1.03160431e-17 + art_sys_117: 9.54985743e-22 + art_sys_118: 3.07458578e-13 + art_sys_119: 3.05422928e-18 + art_sys_120: -5.35099084e-15 + art_sys_121: -6.42509492e-21 + art_sys_122: -7.15133717e-13 + art_sys_123: -1.13077923e-20 + art_sys_124: 2.35604251e-14 + art_sys_125: -1.18105042e-23 + art_sys_126: -4.22562756e-19 + art_sys_127: 1.70744743e-20 + art_sys_128: -1.91974006e-16 + art_sys_129: 5.84858478e-23 + art_sys_130: -2.83719873e-20 + art_sys_131: -2.31042064e-22 + art_sys_132: -5.18532623e-16 + art_sys_133: 1.51586162e-20 + art_sys_134: 1.46836186e-19 + art_sys_135: 4.79368779e-17 + art_sys_136: -2.27199411e-23 + art_sys_137: 3.19619057e-20 + art_sys_138: -1.85348834e-17 + art_sys_139: -8.94098215e-21 + art_sys_140: -2.72895115e-24 + art_sys_141: 1.37983919e-20 + art_sys_142: 1.74611443e-17 + art_sys_143: 1.51233841e-22 + art_sys_144: 8.01603403e-22 + art_sys_145: 1.15869860e-17 + art_sys_146: 1.54034663e-20 + art_sys_147: -1.78278572e-23 + art_sys_148: -3.61851998e-24 + art_sys_149: -4.21046041e-18 + art_sys_150: -1.30788612e-19 + art_sys_151: 1.36724514e-18 + art_sys_152: 6.27691303e-22 + art_sys_153: 1.95789482e-18 + art_sys_154: -2.86679235e-09 + art_sys_155: 1.93132831e-20 + art_sys_156: -0.0 + art_sys_157: 3.22325067e-17 + art_sys_158: 0.0 + art_sys_159: -7.91351460e-18 + art_sys_160: -9.81692580e-19 + art_sys_161: -2.05034628e-19 + art_sys_162: -2.05034628e-19 + art_sys_163: 2.69654573e-19 + art_sys_164: 2.69654573e-19 + art_sys_165: -2.33682295e-33 + art_sys_166: 7.19231677e-34 + art_sys_167: 0.0 + art_sys_168: -2.87027306e-31 + art_sys_169: -7.28105815e-31 + art_sys_170: -3.42095916e-29 + art_sys_171: -3.44708686e-28 + art_sys_172: -1.83866892e-29 + art_sys_173: -5.63226928e-30 + art_sys_174: -2.02355079e-30 + art_sys_175: -2.92879975e-31 + art_sys_176: -5.58377415e-32 + art_sys_177: -2.46916501e-33 + art_sys_178: -1.02575827e-33 + art_sys_179: -1.61866391e-32 + art_sys_180: -1.59933621e-31 + art_sys_181: -2.62247538e-32 + art_sys_182: 2.64884999e-32 + art_sys_183: -6.42564616e-35 + art_sys_184: -4.34878079e-36 + art_sys_185: 1.16409599e-37 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -70081,189 +70081,189 @@ bins: uncorrelated_uncertainty: 9.49764000e-05 - art_sys_1: 3.93966562e-12 art_sys_2: -5.64966324e-11 - art_sys_3: 3.23886809e-21 - art_sys_4: 1.91901753e-19 - art_sys_5: -6.12106592e-22 + art_sys_3: -2.35759930e-21 + art_sys_4: -6.88868660e-20 + art_sys_5: -3.96060819e-21 art_sys_6: -4.30105634e-11 - art_sys_7: 1.43778924e-19 - art_sys_8: 6.07404223e-21 - art_sys_9: -1.19874198e-19 + art_sys_7: 6.07254272e-20 + art_sys_8: 4.48270191e-21 + art_sys_9: -4.15042193e-20 art_sys_10: 4.28375850e-10 - art_sys_11: 8.00938280e-19 - art_sys_12: 1.04561161e-20 - art_sys_13: 5.11683897e-09 - art_sys_14: -1.14558155e-20 - art_sys_15: 2.60809171e-20 - art_sys_16: -2.63689121e-19 + art_sys_11: 3.77937110e-20 + art_sys_12: 3.14718298e-20 + art_sys_13: -5.11683897e-09 + art_sys_14: 3.56956522e-19 + art_sys_15: -3.01178978e-20 + art_sys_16: 2.39807104e-19 art_sys_17: 1.23776635e-08 - art_sys_18: -5.21616708e-20 - art_sys_19: -2.43839919e-19 + art_sys_18: -3.04620093e-20 + art_sys_19: -8.05234799e-19 art_sys_20: 5.19337863e-08 - art_sys_21: 3.03208561e-19 + art_sys_21: -2.32164545e-19 art_sys_22: 4.87884913e-08 - art_sys_23: 3.44313712e-19 - art_sys_24: 6.12253472e-20 - art_sys_25: -9.20823304e-20 - art_sys_26: -1.46863629e-18 - art_sys_27: -5.18157240e-19 + art_sys_23: -1.33234738e-19 + art_sys_24: -4.13637506e-20 + art_sys_25: 1.43772156e-19 + art_sys_26: 4.55626921e-19 + art_sys_27: 5.11585722e-19 art_sys_28: -1.23615030e-07 - art_sys_29: 6.23386936e-15 - art_sys_30: -5.72557933e-15 - art_sys_31: 1.88614043e-14 - art_sys_32: -4.54211725e-15 - art_sys_33: 1.63397665e-15 - art_sys_34: -3.22080814e-16 - art_sys_35: -3.51315786e-16 - art_sys_36: 1.71744059e-18 - art_sys_37: -1.87652474e-17 - art_sys_38: 1.81969289e-17 - art_sys_39: -5.12685923e-07 - art_sys_40: -3.46312994e-18 - art_sys_41: 5.97655937e-19 - art_sys_42: 4.47729715e-17 - art_sys_43: 3.97591753e-16 - art_sys_44: -3.23797108e-18 - art_sys_45: -1.51594855e-06 - art_sys_46: 1.95146363e-16 - art_sys_47: 3.16441235e-17 - art_sys_48: -1.34735403e-13 - art_sys_49: 2.51584064e-12 - art_sys_50: 4.35798136e-18 - art_sys_51: -7.23399345e-18 - art_sys_52: 2.23017416e-11 - art_sys_53: -2.95619137e-07 - art_sys_54: -1.68629813e-12 - art_sys_55: -1.90941390e-11 - art_sys_56: 2.43443143e-05 - art_sys_57: 8.17486659e-16 - art_sys_58: 2.73754871e-15 - art_sys_59: -2.30979028e-15 - art_sys_60: 2.01883430e-18 - art_sys_61: 1.01400089e-15 - art_sys_62: -1.16786648e-15 - art_sys_63: -1.78295146e-16 - art_sys_64: -3.81236742e-17 - art_sys_65: 2.15919730e-16 - art_sys_66: -4.98999689e-14 - art_sys_67: -4.44028509e-17 - art_sys_68: -4.89725689e-17 - art_sys_69: -2.30950337e-12 - art_sys_70: 4.70571356e-13 - art_sys_71: 1.14339184e-12 - art_sys_72: -3.79315028e-05 - art_sys_73: 4.52020314e-13 - art_sys_74: -3.02939871e-12 - art_sys_75: -3.03584186e-18 - art_sys_76: 1.41756418e-13 - art_sys_77: -1.59813067e-14 - art_sys_78: 4.24397374e-16 - art_sys_79: 1.01411358e-17 - art_sys_80: 6.18617418e-11 - art_sys_81: 3.15636321e-15 - art_sys_82: -2.35420436e-16 - art_sys_83: 7.07800114e-16 - art_sys_84: 7.22085030e-13 - art_sys_85: -5.82284675e-16 - art_sys_86: 1.42587796e-16 - art_sys_87: -5.28080198e-18 - art_sys_88: -1.49457747e-16 - art_sys_89: 2.29066474e-18 - art_sys_90: 1.26068552e-10 - art_sys_91: -6.18638625e-11 - art_sys_92: 1.34577989e-11 - art_sys_93: -6.38288089e-05 - art_sys_94: -9.57551140e-11 - art_sys_95: 6.74591492e-12 - art_sys_96: 3.95983152e-19 - art_sys_97: 2.66785278e-12 - art_sys_98: -1.02160122e-10 - art_sys_99: -2.70869710e-04 - art_sys_100: 9.14681170e-15 - art_sys_101: 3.56930802e-12 - art_sys_102: 2.17028684e-20 - art_sys_103: 4.29087897e-19 - art_sys_104: -4.71467619e-12 - art_sys_105: -1.54998577e-20 - art_sys_106: 1.27585231e-11 - art_sys_107: -6.76123929e-06 - art_sys_108: 2.12473931e-22 - art_sys_109: -1.24088893e-15 - art_sys_110: 4.04119251e-21 - art_sys_111: 4.88777715e-14 - art_sys_112: 3.79243054e-20 - art_sys_113: -1.51513150e-22 - art_sys_114: -1.54209574e-14 - art_sys_115: -1.41171735e-21 - art_sys_116: -4.80189541e-18 - art_sys_117: -1.31757482e-24 - art_sys_118: -4.09280813e-15 - art_sys_119: -1.58794436e-21 - art_sys_120: 4.93730828e-16 - art_sys_121: 9.48378935e-19 - art_sys_122: 4.19782670e-18 - art_sys_123: -5.19260625e-21 - art_sys_124: -5.13862234e-18 - art_sys_125: -2.81095545e-16 - art_sys_126: -4.93550202e-19 - art_sys_127: -1.42069826e-17 - art_sys_128: 3.48534222e-20 - art_sys_129: -3.62905611e-20 - art_sys_130: 1.41173211e-19 - art_sys_131: -1.50022300e-19 - art_sys_132: 5.21564013e-16 - art_sys_133: 2.43671249e-19 - art_sys_134: -4.83582245e-19 - art_sys_135: -2.47332438e-16 - art_sys_136: -2.58880821e-18 - art_sys_137: 2.17493573e-16 - art_sys_138: 5.21783400e-18 - art_sys_139: 3.40917284e-17 - art_sys_140: 3.92012623e-08 - art_sys_141: 1.98892010e-16 - art_sys_142: -0.0 - art_sys_143: -3.16238974e-15 - art_sys_144: -1.43676746e-15 - art_sys_145: -5.63552608e-16 - art_sys_146: 2.40488637e-22 - art_sys_147: -5.33758103e-23 - art_sys_148: -1.60326720e-21 - art_sys_149: -2.44316183e-22 - art_sys_150: -5.06085626e-23 - art_sys_151: 9.56298703e-21 - art_sys_152: -8.08823211e-22 - art_sys_153: -2.53346658e-22 - art_sys_154: 1.05591050e-20 - art_sys_155: -5.31265939e-20 - art_sys_156: -1.99013237e-19 - art_sys_157: -7.95167562e-18 - art_sys_158: 0.0 - art_sys_159: -3.96286948e-17 - art_sys_160: -3.96286948e-17 - art_sys_161: -2.45816058e-18 - art_sys_162: 8.10946405e-31 - art_sys_163: 0.0 - art_sys_164: 4.57347867e-31 - art_sys_165: 3.64474481e-29 - art_sys_166: -3.33046764e-29 - art_sys_167: 1.51774090e-29 - art_sys_168: 1.24852430e-29 - art_sys_169: -4.30699885e-29 - art_sys_170: 4.11878816e-29 - art_sys_171: -7.70606335e-28 - art_sys_172: -5.59568881e-28 - art_sys_173: -5.59078838e-28 - art_sys_174: -3.33960610e-31 - art_sys_175: -3.07514966e-29 - art_sys_176: 2.69078267e-29 - art_sys_177: -2.30558923e-30 - art_sys_178: -1.22975921e-31 - art_sys_179: 9.61029115e-35 - art_sys_180: 2.21533177e-32 - art_sys_181: -4.05116069e-32 - art_sys_182: 6.13834657e-32 - art_sys_183: 1.63908628e-34 - art_sys_184: -2.68058225e-36 - art_sys_185: 3.09741131e-32 + art_sys_29: -3.08874254e-18 + art_sys_30: 1.43102094e-18 + art_sys_31: 5.12685923e-07 + art_sys_32: -1.53065680e-19 + art_sys_33: 8.06217705e-20 + art_sys_34: 6.07187788e-18 + art_sys_35: -1.51594855e-06 + art_sys_36: -1.43317227e-14 + art_sys_37: -1.46719783e-14 + art_sys_38: 8.43080556e-15 + art_sys_39: 2.27970626e-15 + art_sys_40: 5.76411478e-16 + art_sys_41: 1.04810384e-16 + art_sys_42: 1.03428003e-16 + art_sys_43: 1.87737427e-16 + art_sys_44: 4.78891993e-17 + art_sys_45: -8.51651282e-18 + art_sys_46: 3.39905473e-17 + art_sys_47: -2.18030069e-15 + art_sys_48: 8.00628784e-14 + art_sys_49: -1.27676390e-12 + art_sys_50: 1.25099494e-17 + art_sys_51: 4.02095469e-18 + art_sys_52: 2.95619159e-07 + art_sys_53: 4.95481058e-12 + art_sys_54: -6.11348721e-14 + art_sys_55: -4.04634809e-13 + art_sys_56: -2.43443183e-05 + art_sys_57: -4.73408266e-18 + art_sys_58: 4.57953536e-19 + art_sys_59: -2.78868450e-13 + art_sys_60: -1.71386618e-13 + art_sys_61: -6.68680606e-15 + art_sys_62: -3.79314981e-05 + art_sys_63: 7.60056250e-15 + art_sys_64: 8.05103818e-15 + art_sys_65: -3.15913209e-15 + art_sys_66: 9.96748510e-15 + art_sys_67: -4.95050489e-15 + art_sys_68: -1.45092160e-15 + art_sys_69: 9.41859039e-16 + art_sys_70: 2.39113171e-16 + art_sys_71: -8.17170321e-17 + art_sys_72: 1.06286143e-17 + art_sys_73: -2.03185758e-17 + art_sys_74: -2.07970069e-14 + art_sys_75: 9.81177758e-18 + art_sys_76: -1.47871097e-14 + art_sys_77: -1.53734323e-14 + art_sys_78: -1.28702004e-15 + art_sys_79: -7.44098986e-18 + art_sys_80: -3.34496833e-15 + art_sys_81: -3.43421963e-13 + art_sys_82: 3.32074646e-11 + art_sys_83: 4.29606444e-16 + art_sys_84: -1.44979810e-15 + art_sys_85: 4.15009388e-16 + art_sys_86: -4.20353125e-16 + art_sys_87: -1.58076063e-12 + art_sys_88: 2.68131494e-13 + art_sys_89: -1.56832325e-16 + art_sys_90: -1.26710640e-14 + art_sys_91: 7.01195712e-13 + art_sys_92: -8.81331196e-19 + art_sys_93: -1.11427615e-18 + art_sys_94: 1.87125755e-17 + art_sys_95: 1.13971564e-13 + art_sys_96: 6.18744077e-11 + art_sys_97: 6.38268961e-05 + art_sys_98: -2.15319624e-11 + art_sys_99: -4.87212687e-11 + art_sys_100: 5.59499001e-10 + art_sys_101: 1.27180924e-09 + art_sys_102: 1.37429679e-10 + art_sys_103: 2.70869482e-04 + art_sys_104: -3.38126909e-11 + art_sys_105: 7.19080624e-17 + art_sys_106: -4.19073333e-11 + art_sys_107: 1.04613517e-13 + art_sys_108: -1.35621353e-19 + art_sys_109: -2.93988729e-21 + art_sys_110: 1.41415710e-11 + art_sys_111: 2.34536670e-10 + art_sys_112: -6.40582122e-12 + art_sys_113: 6.76206678e-06 + art_sys_114: 4.06645354e-21 + art_sys_115: -4.86355117e-13 + art_sys_116: -1.37374302e-16 + art_sys_117: 2.07728749e-21 + art_sys_118: -4.19721669e-12 + art_sys_119: -4.06460505e-17 + art_sys_120: 7.11753096e-14 + art_sys_121: -5.70494811e-21 + art_sys_122: 9.54230351e-12 + art_sys_123: -1.70895576e-20 + art_sys_124: -3.03381887e-13 + art_sys_125: -2.59457553e-22 + art_sys_126: 1.36524989e-17 + art_sys_127: 1.39527449e-20 + art_sys_128: 1.99178672e-15 + art_sys_129: -3.28183511e-22 + art_sys_130: -2.10520117e-20 + art_sys_131: -4.84780353e-22 + art_sys_132: 6.49347025e-15 + art_sys_133: 1.03171262e-20 + art_sys_134: -1.45180825e-18 + art_sys_135: -7.30581807e-16 + art_sys_136: -2.11006588e-22 + art_sys_137: -4.49918544e-21 + art_sys_138: 1.51852878e-16 + art_sys_139: 1.41762770e-20 + art_sys_140: -7.84059124e-23 + art_sys_141: 8.13098927e-20 + art_sys_142: 5.03339163e-17 + art_sys_143: 5.12523426e-22 + art_sys_144: -2.15101792e-21 + art_sys_145: -5.92123209e-17 + art_sys_146: -7.84388292e-20 + art_sys_147: 3.11999864e-23 + art_sys_148: 9.97913124e-24 + art_sys_149: 4.49895861e-17 + art_sys_150: 1.12219798e-18 + art_sys_151: -1.57921618e-17 + art_sys_152: -6.54935924e-21 + art_sys_153: -2.42091304e-17 + art_sys_154: 3.81502514e-08 + art_sys_155: -2.43859667e-19 + art_sys_156: 0.0 + art_sys_157: -4.34753713e-16 + art_sys_158: -0.0 + art_sys_159: 1.07663786e-16 + art_sys_160: 1.31382394e-17 + art_sys_161: 2.79904597e-18 + art_sys_162: 2.79904597e-18 + art_sys_163: -3.70703467e-18 + art_sys_164: -3.70703467e-18 + art_sys_165: 3.21367824e-32 + art_sys_166: -9.89671769e-33 + art_sys_167: -0.0 + art_sys_168: 8.58068124e-30 + art_sys_169: -5.66087136e-30 + art_sys_170: -5.71430503e-29 + art_sys_171: -1.46001784e-28 + art_sys_172: -5.28757268e-29 + art_sys_173: -8.33579779e-30 + art_sys_174: 3.92282996e-30 + art_sys_175: -4.03348448e-31 + art_sys_176: -4.34358137e-32 + art_sys_177: -3.92846771e-33 + art_sys_178: -4.79008452e-34 + art_sys_179: 2.08372759e-31 + art_sys_180: 2.17969284e-30 + art_sys_181: -3.14910281e-32 + art_sys_182: 6.26211111e-33 + art_sys_183: 7.03365461e-34 + art_sys_184: -7.90430589e-37 + art_sys_185: -2.28557652e-37 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -70372,189 +70372,189 @@ bins: uncorrelated_uncertainty: 1.98574000e-05 - art_sys_1: 1.20625880e-12 art_sys_2: -1.33520838e-11 - art_sys_3: 5.32128937e-22 - art_sys_4: -1.17799496e-19 - art_sys_5: 1.87949111e-22 + art_sys_3: -8.04539138e-22 + art_sys_4: 7.00113318e-20 + art_sys_5: -5.75161821e-22 art_sys_6: -1.33511731e-11 - art_sys_7: 9.38054039e-21 - art_sys_8: 1.21776269e-21 - art_sys_9: 8.29488470e-20 + art_sys_7: -1.59009221e-20 + art_sys_8: 4.97696676e-21 + art_sys_9: -6.05054340e-21 art_sys_10: 8.98575471e-11 - art_sys_11: 2.87045562e-20 - art_sys_12: -1.14758567e-20 - art_sys_13: 1.44887019e-09 - art_sys_14: -2.31220512e-21 - art_sys_15: 3.51751611e-20 - art_sys_16: -9.57191106e-21 + art_sys_11: 9.07974793e-20 + art_sys_12: 1.92280883e-20 + art_sys_13: -1.44887019e-09 + art_sys_14: 3.57634128e-20 + art_sys_15: -4.60894695e-21 + art_sys_16: 3.68771761e-19 art_sys_17: 2.71372524e-09 - art_sys_18: -1.29870795e-20 - art_sys_19: -6.30919928e-20 + art_sys_18: 1.05732234e-21 + art_sys_19: -1.10373709e-18 art_sys_20: 1.28015794e-08 - art_sys_21: 1.69912199e-19 - art_sys_22: 8.77239549e-09 - art_sys_23: 3.53862121e-19 - art_sys_24: -3.24746150e-20 - art_sys_25: -2.75052137e-21 - art_sys_26: -4.70233611e-19 - art_sys_27: -1.02819605e-19 + art_sys_21: -7.57412896e-20 + art_sys_22: 8.77239548e-09 + art_sys_23: -1.68270631e-19 + art_sys_24: -1.56333778e-19 + art_sys_25: -3.36443418e-20 + art_sys_26: 2.36345381e-19 + art_sys_27: 1.27852663e-19 art_sys_28: -7.98817387e-08 - art_sys_29: 3.98852872e-14 - art_sys_30: -1.02781645e-14 - art_sys_31: -2.44017949e-14 - art_sys_32: -2.90850298e-15 - art_sys_33: 3.18460938e-16 - art_sys_34: -1.06505231e-15 - art_sys_35: -7.07038016e-16 - art_sys_36: 3.65784613e-19 - art_sys_37: 5.11310543e-18 - art_sys_38: 1.35046078e-16 - art_sys_39: 1.59495109e-07 - art_sys_40: 1.55139984e-18 - art_sys_41: 4.26089957e-19 - art_sys_42: 1.03688725e-16 - art_sys_43: 3.59865802e-17 - art_sys_44: -8.19623127e-18 - art_sys_45: -1.44592663e-07 - art_sys_46: 1.56314933e-15 - art_sys_47: -4.01749233e-17 - art_sys_48: -4.93913919e-15 - art_sys_49: 5.38033759e-13 - art_sys_50: -4.93489579e-18 - art_sys_51: -2.39977499e-18 - art_sys_52: -1.11668611e-11 - art_sys_53: -2.33104345e-06 - art_sys_54: 1.72393619e-12 - art_sys_55: 1.96782304e-11 - art_sys_56: -4.26613759e-07 - art_sys_57: -5.58603354e-15 - art_sys_58: 6.03493154e-15 - art_sys_59: -7.66552649e-16 - art_sys_60: 1.00344517e-18 - art_sys_61: -3.74020930e-15 - art_sys_62: -9.38934965e-17 - art_sys_63: -1.30883645e-15 - art_sys_64: -2.38480636e-16 - art_sys_65: -2.57382301e-17 - art_sys_66: -1.05646027e-14 - art_sys_67: -3.73740730e-17 - art_sys_68: -3.08308231e-17 - art_sys_69: -5.78104598e-13 - art_sys_70: 1.42849228e-12 - art_sys_71: 7.48649007e-13 - art_sys_72: -8.06166183e-06 - art_sys_73: 9.34196596e-12 - art_sys_74: 1.44459893e-12 - art_sys_75: -2.12620383e-17 - art_sys_76: 3.85954872e-14 - art_sys_77: -8.45168849e-15 - art_sys_78: -6.86365932e-15 - art_sys_79: -8.69766298e-18 - art_sys_80: -1.14870025e-11 - art_sys_81: -5.96295432e-16 - art_sys_82: 7.42677817e-16 - art_sys_83: -2.41269469e-16 - art_sys_84: 5.33616215e-13 - art_sys_85: 2.18937438e-16 - art_sys_86: 3.72849493e-16 - art_sys_87: 4.37387325e-17 - art_sys_88: -4.15669315e-17 - art_sys_89: 1.09040844e-17 - art_sys_90: -4.42734653e-11 - art_sys_91: -4.19981410e-09 - art_sys_92: -6.79311733e-13 - art_sys_93: 3.01301800e-05 - art_sys_94: -1.69489748e-09 - art_sys_95: -2.00821690e-10 - art_sys_96: 3.81953640e-19 - art_sys_97: -1.23004164e-12 - art_sys_98: 1.89547841e-10 - art_sys_99: 1.35780638e-05 - art_sys_100: -2.84564751e-15 - art_sys_101: 3.67000551e-11 - art_sys_102: 2.32660603e-19 - art_sys_103: -1.36723329e-19 - art_sys_104: 1.79025892e-10 - art_sys_105: -1.65539635e-19 - art_sys_106: 5.52751077e-12 - art_sys_107: -1.18586392e-04 - art_sys_108: -6.49454170e-20 - art_sys_109: -8.33886397e-16 - art_sys_110: 6.24786910e-20 - art_sys_111: 4.90018984e-13 - art_sys_112: 4.08855782e-20 - art_sys_113: 4.04835913e-22 - art_sys_114: -2.03626026e-14 - art_sys_115: 1.06558146e-21 - art_sys_116: 2.36377118e-18 - art_sys_117: -8.99402545e-23 - art_sys_118: -1.28532509e-15 - art_sys_119: -1.22377240e-20 - art_sys_120: -8.79046652e-18 - art_sys_121: -9.28797665e-19 - art_sys_122: 2.83555138e-17 - art_sys_123: 6.84595926e-21 - art_sys_124: 3.80748920e-18 - art_sys_125: 1.31787485e-16 - art_sys_126: 2.55167670e-19 - art_sys_127: 5.09401815e-18 - art_sys_128: -2.63924991e-20 - art_sys_129: 2.12586123e-20 - art_sys_130: -6.42589972e-20 - art_sys_131: 5.85726806e-20 - art_sys_132: -1.93793029e-16 - art_sys_133: -9.20735906e-20 - art_sys_134: 1.76143368e-19 - art_sys_135: 8.54358455e-17 - art_sys_136: 8.96040272e-19 - art_sys_137: -7.30695495e-17 - art_sys_138: -1.74391411e-18 - art_sys_139: -1.13399580e-17 - art_sys_140: -1.29756250e-08 - art_sys_141: -6.59141806e-17 - art_sys_142: 0.0 - art_sys_143: 1.04632165e-15 - art_sys_144: 4.75397920e-16 - art_sys_145: 1.86647334e-16 - art_sys_146: -6.46664623e-22 - art_sys_147: -7.22313312e-23 - art_sys_148: 1.39875320e-21 - art_sys_149: 2.21963423e-22 - art_sys_150: 4.12919682e-23 - art_sys_151: -3.93617585e-21 - art_sys_152: 3.03336966e-22 - art_sys_153: 8.75306208e-23 - art_sys_154: -3.56378890e-21 - art_sys_155: 1.77162770e-20 - art_sys_156: 6.59699248e-20 - art_sys_157: 2.63208841e-18 - art_sys_158: -0.0 - art_sys_159: 1.31166744e-17 - art_sys_160: 1.31166744e-17 - art_sys_161: 8.12836433e-19 - art_sys_162: -2.68148340e-31 - art_sys_163: -0.0 - art_sys_164: -1.51225111e-31 - art_sys_165: 4.99625042e-28 - art_sys_166: -1.32545650e-28 - art_sys_167: -3.95780884e-30 - art_sys_168: 4.45854467e-30 - art_sys_169: -1.99294297e-28 - art_sys_170: 3.82625665e-28 - art_sys_171: -1.59498234e-27 - art_sys_172: -1.07851908e-27 - art_sys_173: -2.71843784e-27 - art_sys_174: 1.10645584e-31 - art_sys_175: -2.05695198e-28 - art_sys_176: 3.34311111e-28 - art_sys_177: -2.83127496e-29 - art_sys_178: -1.39949295e-30 - art_sys_179: -1.08115111e-30 - art_sys_180: 3.24558764e-32 - art_sys_181: -3.31622993e-32 - art_sys_182: -1.37528352e-32 - art_sys_183: -1.18275815e-33 - art_sys_184: 4.92991004e-36 - art_sys_185: -1.02443015e-32 + art_sys_29: -9.97084627e-19 + art_sys_30: 5.34333063e-19 + art_sys_31: -1.59495109e-07 + art_sys_32: -7.02337213e-20 + art_sys_33: 1.04797325e-19 + art_sys_34: -7.89007685e-19 + art_sys_35: -1.44592663e-07 + art_sys_36: -2.77425484e-14 + art_sys_37: -5.42212030e-14 + art_sys_38: 1.88070844e-14 + art_sys_39: -1.66112536e-15 + art_sys_40: -7.46254088e-16 + art_sys_41: 2.07881933e-16 + art_sys_42: 3.91915486e-16 + art_sys_43: 2.14468065e-16 + art_sys_44: -1.17794206e-17 + art_sys_45: 4.98003316e-18 + art_sys_46: 1.68364146e-17 + art_sys_47: -3.17934797e-15 + art_sys_48: -4.41424146e-15 + art_sys_49: 2.40339639e-14 + art_sys_50: -8.29036368e-18 + art_sys_51: 7.15333384e-18 + art_sys_52: 2.33104345e-06 + art_sys_53: 4.53725004e-13 + art_sys_54: 9.10935916e-13 + art_sys_55: -1.35598046e-11 + art_sys_56: 4.26612599e-07 + art_sys_57: -4.60211003e-19 + art_sys_58: -1.64031622e-19 + art_sys_59: -1.09846696e-12 + art_sys_60: -5.63440313e-13 + art_sys_61: 3.15588147e-15 + art_sys_62: -8.06166649e-06 + art_sys_63: 4.05793627e-14 + art_sys_64: 3.27661902e-14 + art_sys_65: -2.64988143e-14 + art_sys_66: -7.81826709e-17 + art_sys_67: 4.96887193e-16 + art_sys_68: 6.88185703e-16 + art_sys_69: 7.52400620e-17 + art_sys_70: -2.67979803e-16 + art_sys_71: -5.25062460e-16 + art_sys_72: 2.88482590e-17 + art_sys_73: -1.06832072e-17 + art_sys_74: 1.25021607e-14 + art_sys_75: -1.56012910e-17 + art_sys_76: 7.17799207e-14 + art_sys_77: -7.74468965e-15 + art_sys_78: 4.02956177e-15 + art_sys_79: 1.38022404e-17 + art_sys_80: -9.93494288e-16 + art_sys_81: 1.62116889e-13 + art_sys_82: -1.56847487e-11 + art_sys_83: 2.82387646e-16 + art_sys_84: -9.06555233e-16 + art_sys_85: -4.29088820e-16 + art_sys_86: 1.04639793e-16 + art_sys_87: 1.11704581e-13 + art_sys_88: 1.78807617e-12 + art_sys_89: -8.90796937e-17 + art_sys_90: -2.06505849e-15 + art_sys_91: -6.44840896e-13 + art_sys_92: 5.37666635e-18 + art_sys_93: 1.39868355e-17 + art_sys_94: 5.98531619e-16 + art_sys_95: -6.91690259e-14 + art_sys_96: -4.27747843e-11 + art_sys_97: -3.01301317e-05 + art_sys_98: 1.10861842e-12 + art_sys_99: 4.41758977e-12 + art_sys_100: -2.80477161e-11 + art_sys_101: -1.23019958e-10 + art_sys_102: 2.41029126e-09 + art_sys_103: -1.35786811e-05 + art_sys_104: 1.62573736e-12 + art_sys_105: -2.41671868e-17 + art_sys_106: -6.86215123e-10 + art_sys_107: 1.82679992e-12 + art_sys_108: 4.52330493e-19 + art_sys_109: -4.37550230e-20 + art_sys_110: -4.68009239e-12 + art_sys_111: 4.08903483e-09 + art_sys_112: 1.98258619e-12 + art_sys_113: 1.18597465e-04 + art_sys_114: -1.37585078e-21 + art_sys_115: -9.43657645e-12 + art_sys_116: 4.53074695e-17 + art_sys_117: 1.94616417e-20 + art_sys_118: 1.24638809e-12 + art_sys_119: 1.34258786e-17 + art_sys_120: -2.35851397e-14 + art_sys_121: -1.20767755e-19 + art_sys_122: -3.12166177e-12 + art_sys_123: -2.14538808e-19 + art_sys_124: 1.14168903e-13 + art_sys_125: -4.36905006e-22 + art_sys_126: 5.97117839e-18 + art_sys_127: 3.21706179e-19 + art_sys_128: -1.53317859e-15 + art_sys_129: 7.18107247e-22 + art_sys_130: -5.32654028e-19 + art_sys_131: -4.69636342e-21 + art_sys_132: -2.71252292e-15 + art_sys_133: 2.87355363e-19 + art_sys_134: 1.09396734e-18 + art_sys_135: 1.25202640e-16 + art_sys_136: -6.53655028e-22 + art_sys_137: 5.71217104e-19 + art_sys_138: -1.50037197e-16 + art_sys_139: -1.43918062e-19 + art_sys_140: -1.32129651e-22 + art_sys_141: 3.23759606e-19 + art_sys_142: 3.48055700e-16 + art_sys_143: 3.27962748e-21 + art_sys_144: 1.22427499e-20 + art_sys_145: 1.49529230e-16 + art_sys_146: 1.97333446e-19 + art_sys_147: -2.87682560e-22 + art_sys_148: -4.53119681e-23 + art_sys_149: -3.30365070e-17 + art_sys_150: -1.11702307e-18 + art_sys_151: 8.47942939e-18 + art_sys_152: 4.52230311e-21 + art_sys_153: 1.05238687e-17 + art_sys_154: -1.26167907e-08 + art_sys_155: 9.83004208e-20 + art_sys_156: -0.0 + art_sys_157: 1.36944075e-16 + art_sys_158: 0.0 + art_sys_159: -3.24143027e-17 + art_sys_160: -4.21830784e-18 + art_sys_161: -8.28599624e-19 + art_sys_162: -8.28599624e-19 + art_sys_163: 1.06702588e-18 + art_sys_164: 1.06702588e-18 + art_sys_165: -9.23893904e-33 + art_sys_166: 2.83838663e-33 + art_sys_167: 0.0 + art_sys_168: -1.74283247e-29 + art_sys_169: 1.00304418e-28 + art_sys_170: -2.57111403e-28 + art_sys_171: 7.32555394e-28 + art_sys_172: -5.65094930e-29 + art_sys_173: -2.51115340e-29 + art_sys_174: 9.79304868e-30 + art_sys_175: -4.56416950e-30 + art_sys_176: 5.28876013e-31 + art_sys_177: -5.33187433e-32 + art_sys_178: 3.51245847e-33 + art_sys_179: -7.83446919e-32 + art_sys_180: -6.51359729e-31 + art_sys_181: -6.28799774e-31 + art_sys_182: -2.98770169e-31 + art_sys_183: 4.93065243e-33 + art_sys_184: -1.23643157e-35 + art_sys_185: 2.04535290e-36 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 @@ -70663,189 +70663,189 @@ bins: uncorrelated_uncertainty: 3.91317000e-06 - art_sys_1: 3.88941340e-17 art_sys_2: -5.76450014e-16 - art_sys_3: 4.16650010e-26 - art_sys_4: -1.42314414e-22 - art_sys_5: -9.22867665e-26 + art_sys_3: 4.15132286e-26 + art_sys_4: 1.21118484e-22 + art_sys_5: -1.86358323e-25 art_sys_6: -7.65961607e-16 - art_sys_7: -8.67038106e-23 - art_sys_8: -2.38488182e-24 - art_sys_9: 9.06381771e-23 + art_sys_7: -5.28156221e-23 + art_sys_8: 3.92161397e-24 + art_sys_9: -5.31718571e-24 art_sys_10: 2.97545712e-15 - art_sys_11: -4.69728679e-22 - art_sys_12: -3.01640918e-22 - art_sys_13: 5.18034174e-14 - art_sys_14: -4.52368967e-24 - art_sys_15: -2.11322491e-23 - art_sys_16: -1.06834676e-21 + art_sys_11: 5.33506145e-23 + art_sys_12: -4.41481040e-22 + art_sys_13: -5.18034174e-14 + art_sys_14: -1.00789689e-21 + art_sys_15: 3.76163873e-23 + art_sys_16: -2.95879044e-21 art_sys_17: 1.06249030e-13 - art_sys_18: 1.86667298e-22 - art_sys_19: -4.73926567e-23 + art_sys_18: 7.95086219e-23 + art_sys_19: 1.48300458e-20 art_sys_20: 2.03040819e-13 - art_sys_21: -2.20346087e-21 + art_sys_21: 1.12496670e-21 art_sys_22: -1.26224697e-12 - art_sys_23: -5.06142687e-21 - art_sys_24: 3.08610428e-22 - art_sys_25: 5.80585208e-22 - art_sys_26: 6.27205809e-20 - art_sys_27: 1.43682736e-20 - art_sys_28: -7.57549730e-11 - art_sys_29: -3.40450202e-15 - art_sys_30: -4.84262862e-14 - art_sys_31: -1.23702705e-14 - art_sys_32: 4.05483927e-16 - art_sys_33: 1.91592977e-16 - art_sys_34: -1.97744830e-15 - art_sys_35: 2.68620009e-16 - art_sys_36: -5.77344246e-20 - art_sys_37: 7.70052876e-20 - art_sys_38: -3.09517032e-16 - art_sys_39: 1.06422491e-09 - art_sys_40: -1.98103891e-20 - art_sys_41: -1.46697593e-20 - art_sys_42: -9.23575268e-17 - art_sys_43: -1.46689202e-18 - art_sys_44: -1.26097973e-17 - art_sys_45: 5.06999402e-09 - art_sys_46: 5.35398062e-18 - art_sys_47: 7.02579634e-18 - art_sys_48: 2.33127046e-15 - art_sys_49: -6.26357128e-14 - art_sys_50: -4.50225667e-18 - art_sys_51: -3.72865718e-18 - art_sys_52: -3.55564697e-13 - art_sys_53: -8.18040502e-09 - art_sys_54: 4.68242814e-12 - art_sys_55: -1.96498084e-12 - art_sys_56: -3.63355586e-07 - art_sys_57: -1.34080127e-13 - art_sys_58: 1.44722085e-14 - art_sys_59: -8.83098165e-15 - art_sys_60: -2.43823352e-18 - art_sys_61: -3.93017668e-15 - art_sys_62: -1.51324967e-16 - art_sys_63: -1.25323339e-15 - art_sys_64: 1.08745221e-17 - art_sys_65: -6.20093204e-17 - art_sys_66: 1.24057964e-15 - art_sys_67: 7.89146185e-17 - art_sys_68: 5.04860879e-17 - art_sys_69: 9.78591488e-14 - art_sys_70: 9.19967435e-12 - art_sys_71: 4.89184314e-12 - art_sys_72: 9.41586024e-07 - art_sys_73: -2.53968609e-11 - art_sys_74: 2.81684188e-13 - art_sys_75: 5.97775705e-18 - art_sys_76: 9.73873911e-15 - art_sys_77: -1.21142353e-14 - art_sys_78: 6.52365997e-15 - art_sys_79: 9.25674728e-18 - art_sys_80: -1.69182615e-12 - art_sys_81: -2.32625135e-15 - art_sys_82: 2.07009528e-15 - art_sys_83: -2.97857253e-16 - art_sys_84: -2.82605274e-14 - art_sys_85: -1.88616589e-16 - art_sys_86: 6.86599302e-17 - art_sys_87: -5.94624113e-17 - art_sys_88: -4.71218312e-15 - art_sys_89: 1.69382647e-16 - art_sys_90: -2.99675876e-12 - art_sys_91: -3.80183691e-11 - art_sys_92: -4.39227908e-13 - art_sys_93: 1.08407902e-06 - art_sys_94: 3.24635744e-11 - art_sys_95: 2.91484939e-11 - art_sys_96: 3.47098550e-19 - art_sys_97: 8.65542267e-11 - art_sys_98: -4.26140245e-09 - art_sys_99: 8.63299427e-06 - art_sys_100: 2.94296726e-13 - art_sys_101: 4.63004700e-11 - art_sys_102: 2.87206935e-19 - art_sys_103: 1.35198719e-17 - art_sys_104: -4.70251779e-10 - art_sys_105: -8.37374833e-21 - art_sys_106: 3.93461152e-10 - art_sys_107: -1.01810861e-06 - art_sys_108: 3.23154046e-19 - art_sys_109: -3.77590686e-14 - art_sys_110: 1.67936746e-20 - art_sys_111: 6.67603741e-13 - art_sys_112: 1.05181573e-18 - art_sys_113: -4.19893109e-21 - art_sys_114: -4.51845114e-13 - art_sys_115: 2.38355888e-20 - art_sys_116: -1.58307788e-16 - art_sys_117: -1.30995817e-21 - art_sys_118: -1.27175827e-13 - art_sys_119: 1.33771403e-20 - art_sys_120: 1.56207015e-14 - art_sys_121: 3.22486181e-17 - art_sys_122: 1.25820184e-16 - art_sys_123: -1.73624846e-19 - art_sys_124: -2.43563637e-16 - art_sys_125: -9.14815927e-15 - art_sys_126: -1.61588546e-17 - art_sys_127: -4.56148113e-16 - art_sys_128: 1.16203983e-18 - art_sys_129: -1.18807556e-18 - art_sys_130: 4.57318733e-18 - art_sys_131: -4.85806352e-18 - art_sys_132: 1.68474424e-14 - art_sys_133: 7.87388574e-18 - art_sys_134: -1.55603418e-17 - art_sys_135: -7.95340446e-15 - art_sys_136: -8.34318396e-17 - art_sys_137: 7.00156751e-15 - art_sys_138: 1.68079713e-16 - art_sys_139: 1.09814006e-15 - art_sys_140: 1.26268201e-06 - art_sys_141: 6.40660476e-15 - art_sys_142: -0.0 - art_sys_143: -1.01860674e-13 - art_sys_144: -4.62782943e-14 - art_sys_145: -1.81524612e-14 - art_sys_146: 8.97485107e-21 - art_sys_147: -1.29294516e-21 - art_sys_148: -5.39956516e-20 - art_sys_149: -1.01534756e-20 - art_sys_150: -1.69639916e-21 - art_sys_151: 3.09850974e-19 - art_sys_152: -2.62288645e-20 - art_sys_153: -8.17394727e-21 - art_sys_154: 3.40246165e-19 - art_sys_155: -1.71157086e-18 - art_sys_156: -6.41063057e-18 - art_sys_157: -2.56125592e-16 - art_sys_158: 0.0 - art_sys_159: -1.27644859e-15 - art_sys_160: -1.27644859e-15 - art_sys_161: -7.91760807e-17 - art_sys_162: 2.61201459e-29 - art_sys_163: 0.0 - art_sys_164: 1.47309217e-29 - art_sys_165: 6.39438477e-29 - art_sys_166: -2.01362212e-29 - art_sys_167: 3.16487927e-29 - art_sys_168: -1.18435945e-29 - art_sys_169: 2.62334133e-29 - art_sys_170: -3.66764806e-29 - art_sys_171: 5.44489027e-28 - art_sys_172: -1.33399946e-27 - art_sys_173: 5.05974543e-28 - art_sys_174: -1.07572445e-29 - art_sys_175: 1.50772873e-29 - art_sys_176: -7.28665023e-29 - art_sys_177: 3.70865385e-30 - art_sys_178: 3.21991863e-31 - art_sys_179: 1.28718420e-31 - art_sys_180: -4.75048711e-32 - art_sys_181: 3.96031965e-32 - art_sys_182: -2.24732813e-32 - art_sys_183: 1.89945157e-34 - art_sys_184: -7.92652781e-35 - art_sys_185: 9.97666874e-31 + art_sys_23: 1.90589079e-21 + art_sys_24: 1.88763780e-21 + art_sys_25: 8.16608419e-22 + art_sys_26: -2.46572407e-20 + art_sys_27: -1.37307476e-20 + art_sys_28: -7.57549729e-11 + art_sys_29: 1.32546394e-19 + art_sys_30: -7.47177758e-20 + art_sys_31: -1.06422491e-09 + art_sys_32: 4.05918871e-21 + art_sys_33: -2.99479053e-20 + art_sys_34: -5.98758698e-20 + art_sys_35: 5.06999402e-09 + art_sys_36: 1.08932717e-14 + art_sys_37: 8.32149581e-16 + art_sys_38: 3.84327795e-14 + art_sys_39: 1.21093535e-16 + art_sys_40: 6.29507761e-16 + art_sys_41: -9.67658207e-16 + art_sys_42: -3.16787676e-16 + art_sys_43: -2.68476816e-16 + art_sys_44: -5.18607600e-17 + art_sys_45: 1.74837417e-18 + art_sys_46: -9.92958670e-18 + art_sys_47: 1.51503911e-17 + art_sys_48: -1.21106800e-15 + art_sys_49: 1.91840914e-14 + art_sys_50: 8.37704184e-18 + art_sys_51: 1.07096041e-18 + art_sys_52: 8.18040467e-09 + art_sys_53: -2.47360570e-13 + art_sys_54: -3.86931442e-11 + art_sys_55: -2.65437309e-11 + art_sys_56: 3.63355699e-07 + art_sys_57: 3.55514227e-18 + art_sys_58: -2.30479611e-18 + art_sys_59: -6.61447164e-12 + art_sys_60: -3.79571500e-12 + art_sys_61: 1.14265574e-16 + art_sys_62: 9.41585975e-07 + art_sys_63: 9.97985147e-14 + art_sys_64: 1.74007580e-14 + art_sys_65: 1.57073011e-15 + art_sys_66: 6.56998710e-15 + art_sys_67: 8.40513471e-15 + art_sys_68: 1.58087638e-15 + art_sys_69: 1.53801592e-16 + art_sys_70: 7.54041884e-16 + art_sys_71: -2.13158085e-16 + art_sys_72: -5.48829546e-17 + art_sys_73: -2.30108050e-17 + art_sys_74: 2.59234992e-16 + art_sys_75: 2.67120419e-17 + art_sys_76: 9.15795430e-14 + art_sys_77: -4.36138673e-15 + art_sys_78: -1.24017670e-14 + art_sys_79: 9.67767353e-18 + art_sys_80: 6.43241441e-15 + art_sys_81: 5.82902932e-15 + art_sys_82: -5.97777415e-13 + art_sys_83: 3.89261981e-16 + art_sys_84: 6.16961109e-16 + art_sys_85: 2.30004929e-17 + art_sys_86: -3.05190934e-16 + art_sys_87: 5.07213808e-14 + art_sys_88: 6.62706594e-12 + art_sys_89: 9.72788004e-17 + art_sys_90: -4.66250468e-13 + art_sys_91: -1.06500310e-12 + art_sys_92: 1.08608422e-17 + art_sys_93: 1.40159527e-17 + art_sys_94: -5.10589710e-16 + art_sys_95: -7.81169899e-12 + art_sys_96: -7.41631211e-13 + art_sys_97: -1.08401609e-06 + art_sys_98: -2.77678550e-12 + art_sys_99: 1.57977943e-12 + art_sys_100: -1.77934176e-11 + art_sys_101: -3.88161954e-11 + art_sys_102: 2.07845131e-11 + art_sys_103: -8.63298242e-06 + art_sys_104: -9.55877969e-12 + art_sys_105: 2.31691404e-15 + art_sys_106: -9.38935763e-11 + art_sys_107: 3.03148584e-14 + art_sys_108: -5.31168478e-18 + art_sys_109: -1.63649984e-20 + art_sys_110: 4.55500529e-10 + art_sys_111: 7.92897554e-11 + art_sys_112: -2.06085600e-10 + art_sys_113: 1.02254212e-06 + art_sys_114: 1.30645320e-19 + art_sys_115: 1.56492228e-12 + art_sys_116: -4.42458149e-15 + art_sys_117: 3.33542348e-20 + art_sys_118: -1.34940272e-10 + art_sys_119: -1.30933223e-15 + art_sys_120: 2.29262036e-12 + art_sys_121: 3.54516688e-20 + art_sys_122: 3.07294927e-10 + art_sys_123: -1.40605425e-19 + art_sys_124: -9.79705509e-12 + art_sys_125: -6.83121468e-21 + art_sys_126: 4.21372346e-16 + art_sys_127: -1.45610648e-19 + art_sys_128: 6.59516266e-14 + art_sys_129: -1.17352008e-20 + art_sys_130: 3.03181956e-19 + art_sys_131: -6.83434906e-21 + art_sys_132: 2.10243945e-13 + art_sys_133: -1.98312218e-19 + art_sys_134: -4.78097647e-17 + art_sys_135: -2.33653293e-14 + art_sys_136: -5.54571882e-21 + art_sys_137: -1.18971663e-18 + art_sys_138: 5.03417076e-15 + art_sys_139: 7.12981370e-19 + art_sys_140: -2.26615649e-21 + art_sys_141: 1.98858676e-18 + art_sys_142: 9.80537005e-16 + art_sys_143: 1.09012270e-20 + art_sys_144: -9.09759852e-20 + art_sys_145: -2.14089467e-15 + art_sys_146: -2.84152118e-18 + art_sys_147: 1.52195108e-21 + art_sys_148: 3.95376325e-22 + art_sys_149: 1.48319082e-15 + art_sys_150: 3.74937212e-17 + art_sys_151: -5.14641343e-16 + art_sys_152: -2.15253867e-19 + art_sys_153: -7.84400007e-16 + art_sys_154: 1.22880887e-06 + art_sys_155: -7.88696919e-18 + art_sys_156: 0.0 + art_sys_157: -1.39914829e-14 + art_sys_158: -0.0 + art_sys_159: 3.46195892e-15 + art_sys_160: 4.22927876e-16 + art_sys_161: 8.99768950e-17 + art_sys_162: 8.99768950e-17 + art_sys_163: -1.19112059e-16 + art_sys_164: -1.19112059e-16 + art_sys_165: 1.03258122e-30 + art_sys_166: -3.17977618e-31 + art_sys_167: -0.0 + art_sys_168: -1.60574811e-29 + art_sys_169: -3.99329613e-30 + art_sys_170: 1.53566109e-30 + art_sys_171: -5.12348089e-28 + art_sys_172: -7.03375261e-29 + art_sys_173: -1.48100725e-29 + art_sys_174: 5.23301651e-30 + art_sys_175: 1.40681425e-30 + art_sys_176: -7.11358984e-32 + art_sys_177: -3.38039046e-33 + art_sys_178: 5.40373773e-33 + art_sys_179: 6.72889014e-30 + art_sys_180: 7.00797749e-29 + art_sys_181: -1.51357373e-32 + art_sys_182: 5.84976271e-33 + art_sys_183: 7.62967815e-34 + art_sys_184: 3.86831786e-37 + art_sys_185: -1.05758748e-35 art_sys_186: 0.0 art_sys_187: 0.0 art_sys_188: 0.0 diff --git a/nnpdf_data/nnpdf_data/commondata/CMS_Z0_7TEV_DIMUON/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/CMS_Z0_7TEV_DIMUON/uncertainties.yaml index 9749766100..e4898d85ad 100644 --- a/nnpdf_data/nnpdf_data/commondata/CMS_Z0_7TEV_DIMUON/uncertainties.yaml +++ b/nnpdf_data/nnpdf_data/commondata/CMS_Z0_7TEV_DIMUON/uncertainties.yaml @@ -542,26 +542,26 @@ bins: sys_corr_4: 6.39404427e+01 sys_corr_5: 4.24457496e+02 sys_corr_6: -9.70144274e+02 - sys_corr_7: -2.71112162e+01 - sys_corr_8: -4.11565566e+01 + sys_corr_7: 2.71112162e+01 + sys_corr_8: 4.11565566e+01 sys_corr_9: 3.28881045e+01 - sys_corr_10: -2.96966591e+01 - sys_corr_11: -1.07316063e+02 - sys_corr_12: -1.31444046e+02 + sys_corr_10: 2.96966591e+01 + sys_corr_11: 1.07316063e+02 + sys_corr_12: 1.31444046e+02 sys_corr_13: -8.76955418e+01 - sys_corr_14: -1.62949139e+01 - sys_corr_15: -2.85386023e+01 - sys_corr_16: 5.14575197e-01 - sys_corr_17: 3.32765915e-01 - sys_corr_18: 2.19396190e+01 - sys_corr_19: 1.00359222e+01 - sys_corr_20: -1.33211279e+01 - sys_corr_21: -2.03092201e+01 - sys_corr_22: -1.86879934e+02 - sys_corr_23: -1.77906193e+01 - sys_corr_24: -6.43868224e+01 - sys_corr_25: -8.02814932e+00 - sys_corr_26: -1.19938058e+01 + sys_corr_14: 1.62949139e+01 + sys_corr_15: 2.85386023e+01 + sys_corr_16: -5.14575197e-01 + sys_corr_17: -3.32765915e-01 + sys_corr_18: -2.19396190e+01 + sys_corr_19: -1.00359222e+01 + sys_corr_20: 1.33211279e+01 + sys_corr_21: 2.03092201e+01 + sys_corr_22: 1.86879934e+02 + sys_corr_23: 1.77906193e+01 + sys_corr_24: 6.43868224e+01 + sys_corr_25: 8.02814932e+00 + sys_corr_26: 1.19938058e+01 sys_corr_27: -2.69013191e+00 sys_corr_28: 5.95285375e+01 sys_corr_29: -5.75834102e+01 @@ -574,100 +574,100 @@ bins: sys_corr_36: -7.66651670e+01 sys_corr_37: 1.02134789e+02 sys_corr_38: -4.31805259e+01 - sys_corr_39: -5.23585358e+01 + sys_corr_39: 5.23585358e+01 sys_corr_40: 5.94193246e+01 sys_corr_41: -2.78110212e+01 - sys_corr_42: 6.98823856e+01 + sys_corr_42: -6.98823856e+01 sys_corr_43: -1.95896158e+01 - sys_corr_44: 9.28239544e+01 - sys_corr_45: -7.89688582e+00 - sys_corr_46: -3.14386712e+00 - sys_corr_47: 2.79195120e+01 - sys_corr_48: -3.06879458e+01 + sys_corr_44: -9.28239544e+01 + sys_corr_45: 7.89688582e+00 + sys_corr_46: 3.14386712e+00 + sys_corr_47: -2.79195120e+01 + sys_corr_48: 3.06879458e+01 sys_corr_49: 2.31756421e+01 - sys_corr_50: 6.45323916e+01 - sys_corr_51: 1.52451576e+00 - sys_corr_52: 8.04182487e+01 - sys_corr_53: 1.14840299e+01 - sys_corr_54: 1.91036009e+00 + sys_corr_50: -6.45323916e+01 + sys_corr_51: -1.52451576e+00 + sys_corr_52: -8.04182487e+01 + sys_corr_53: -1.14840299e+01 + sys_corr_54: -1.91036009e+00 sys_corr_55: -5.12246530e-01 sys_corr_56: -2.40369454e+01 - sys_corr_57: 8.76854368e+00 + sys_corr_57: -8.76854368e+00 sys_corr_58: 2.05877931e+01 - sys_corr_59: 2.80573852e+01 + sys_corr_59: -2.80573852e+01 sys_corr_60: 1.43949915e+01 sys_corr_61: 1.47340269e+01 sys_corr_62: -1.45863166e+01 - sys_corr_63: -9.83898368e+00 + sys_corr_63: 9.83898368e+00 sys_corr_64: 2.29179565e+01 sys_corr_65: 3.62032901e+00 - sys_corr_66: 1.19402727e+01 - sys_corr_67: 5.51012278e+00 - sys_corr_68: -8.36940907e+00 - sys_corr_69: 1.46349929e+01 - sys_corr_70: 1.79268370e+01 - sys_corr_71: 1.69626396e+01 - sys_corr_72: -7.85704872e+00 - sys_corr_73: 2.19301677e+01 - sys_corr_74: -3.37252614e+00 - sys_corr_75: 3.75922245e+01 + sys_corr_66: -1.19402727e+01 + sys_corr_67: -5.51012278e+00 + sys_corr_68: 8.36940907e+00 + sys_corr_69: -1.46349929e+01 + sys_corr_70: -1.79268370e+01 + sys_corr_71: 2.19301677e+01 + sys_corr_72: 7.85704872e+00 + sys_corr_73: -1.69626396e+01 + sys_corr_74: 3.37252614e+00 + sys_corr_75: -3.75922245e+01 sys_corr_76: -5.71503227e+00 sys_corr_77: -4.09557271e+01 - sys_corr_78: -4.22891838e+00 + sys_corr_78: 3.93033201e+00 sys_corr_79: -2.94647688e+00 - sys_corr_80: -3.93033201e+00 + sys_corr_80: 4.22891838e+00 sys_corr_81: -5.01058719e+00 - sys_corr_82: -1.15087577e+00 - sys_corr_83: -5.84043238e+00 + sys_corr_82: -5.84043238e+00 + sys_corr_83: 1.15087577e+00 sys_corr_84: 1.03240536e+01 - sys_corr_85: -3.05590098e+00 - sys_corr_86: -8.01235452e+00 + sys_corr_85: 3.05590098e+00 + sys_corr_86: 8.01235452e+00 sys_corr_87: -3.51975658e-01 sys_corr_88: 1.12591804e+01 - sys_corr_89: 1.24346987e+00 - sys_corr_90: 1.34059659e-01 + sys_corr_89: -1.24346987e+00 + sys_corr_90: -1.34059659e-01 sys_corr_91: -8.41346338e-01 - sys_corr_92: 8.55588500e-01 - sys_corr_93: 5.46722002e-03 + sys_corr_92: -8.55588500e-01 + sys_corr_93: -3.34886990e-01 sys_corr_94: 8.60941960e-01 - sys_corr_95: 3.34886990e-01 + sys_corr_95: -5.46722002e-03 sys_corr_96: 3.72643401e-01 sys_corr_97: 2.55234557e+00 sys_corr_98: 1.18986353e+00 sys_corr_99: 1.67699380e+00 - sys_corr_100: -2.92603044e+00 - sys_corr_101: 2.82955034e+00 - sys_corr_102: -7.00828134e+00 - sys_corr_103: 2.53443826e+01 - sys_corr_104: 4.25186310e+00 - sys_corr_105: 9.98121441e+00 - sys_corr_106: 2.74081361e+00 - sys_corr_107: 9.70988039e-01 - sys_corr_108: 4.31914890e-01 - sys_corr_109: 7.35849712e-01 - sys_corr_110: -8.20042936e-01 - sys_corr_111: -1.62505355e+00 - sys_corr_112: -1.75707569e-01 + sys_corr_100: 4.25186310e+00 + sys_corr_101: 2.53443826e+01 + sys_corr_102: -9.98121441e+00 + sys_corr_103: 7.00828134e+00 + sys_corr_104: 2.82955034e+00 + sys_corr_105: -2.92603044e+00 + sys_corr_106: -2.74081361e+00 + sys_corr_107: -9.70988039e-01 + sys_corr_108: 1.62505355e+00 + sys_corr_109: -4.31914890e-01 + sys_corr_110: -7.35849712e-01 + sys_corr_111: -8.20042936e-01 + sys_corr_112: 1.75707569e-01 sys_corr_113: -1.23573058e-01 sys_corr_114: -2.95836417e-03 - sys_corr_115: -1.26162573e-01 - sys_corr_116: 1.19369680e-01 + sys_corr_115: 1.26162573e-01 + sys_corr_116: -1.19369680e-01 sys_corr_117: -1.00622372e-01 - sys_corr_118: -1.73306589e-01 - sys_corr_119: 1.72591925e-03 + sys_corr_118: 1.73306589e-01 + sys_corr_119: -1.72591925e-03 sys_corr_120: -6.82302421e-02 sys_corr_121: -6.09802098e-03 sys_corr_122: 1.26709726e-01 - sys_corr_123: -6.21218501e-02 + sys_corr_123: 6.21218501e-02 sys_corr_124: -4.71163556e-02 - sys_corr_125: -8.50605839e-02 + sys_corr_125: 8.50605839e-02 sys_corr_126: 2.19498344e-02 - sys_corr_127: -6.67023571e-01 - sys_corr_128: -1.29567800e-01 - sys_corr_129: 5.28202673e-02 + sys_corr_127: 6.67023571e-01 + sys_corr_128: 1.29567800e-01 + sys_corr_129: -5.28202673e-02 sys_corr_130: -2.38184435e-02 - sys_corr_131: -7.58361622e-02 - sys_corr_132: -3.23375291e-02 + sys_corr_131: -3.23375291e-02 + sys_corr_132: 7.58361622e-02 stat: 0.0 luminosity: 3.92441566e+02 - sys_corr_1: 2.11159255e+02 @@ -676,26 +676,26 @@ bins: sys_corr_4: 6.53363078e+01 sys_corr_5: 4.05029572e+02 sys_corr_6: -9.32812702e+02 - sys_corr_7: -2.31445793e+01 - sys_corr_8: -3.80583862e+01 + sys_corr_7: 2.31445793e+01 + sys_corr_8: 3.80583862e+01 sys_corr_9: 2.92694186e+01 - sys_corr_10: -2.90426238e+01 - sys_corr_11: -1.06752684e+02 - sys_corr_12: -1.27869539e+02 + sys_corr_10: 2.90426238e+01 + sys_corr_11: 1.06752684e+02 + sys_corr_12: 1.27869539e+02 sys_corr_13: -8.84596960e+01 - sys_corr_14: -2.27421092e+01 - sys_corr_15: -3.24561008e+01 - sys_corr_16: 3.61105419e+00 - sys_corr_17: -2.68489186e+00 - sys_corr_18: 2.08180501e+01 - sys_corr_19: 2.01183676e+01 - sys_corr_20: -1.51054674e+01 - sys_corr_21: -1.19945184e+01 - sys_corr_22: -1.99259781e+02 - sys_corr_23: -1.83622711e+01 - sys_corr_24: -8.25834997e+01 - sys_corr_25: 1.58705237e+00 - sys_corr_26: -4.27948281e+00 + sys_corr_14: 2.27421092e+01 + sys_corr_15: 3.24561008e+01 + sys_corr_16: -3.61105419e+00 + sys_corr_17: 2.68489186e+00 + sys_corr_18: -2.08180501e+01 + sys_corr_19: -2.01183676e+01 + sys_corr_20: 1.51054674e+01 + sys_corr_21: 1.19945184e+01 + sys_corr_22: 1.99259781e+02 + sys_corr_23: 1.83622711e+01 + sys_corr_24: 8.25834997e+01 + sys_corr_25: -1.58705237e+00 + sys_corr_26: 4.27948281e+00 sys_corr_27: -1.85517640e+01 sys_corr_28: 6.72401839e+01 sys_corr_29: -8.80451346e+01 @@ -708,100 +708,100 @@ bins: sys_corr_36: 2.18140147e+01 sys_corr_37: -1.48019359e+01 sys_corr_38: -2.41929013e+00 - sys_corr_39: 1.39628267e+01 + sys_corr_39: -1.39628267e+01 sys_corr_40: 3.69175160e+00 sys_corr_41: -2.40414211e+01 - sys_corr_42: 4.21353633e+01 + sys_corr_42: -4.21353633e+01 sys_corr_43: -1.33940732e+01 - sys_corr_44: 2.06099269e+01 - sys_corr_45: -5.05691235e+01 - sys_corr_46: 6.46020089e+00 - sys_corr_47: 2.67634849e+01 - sys_corr_48: -2.14808494e+01 + sys_corr_44: -2.06099269e+01 + sys_corr_45: 5.05691235e+01 + sys_corr_46: -6.46020089e+00 + sys_corr_47: -2.67634849e+01 + sys_corr_48: 2.14808494e+01 sys_corr_49: -1.46355397e+01 - sys_corr_50: 3.14327737e+01 - sys_corr_51: -4.57738351e+01 - sys_corr_52: 9.41530439e+01 - sys_corr_53: -2.70234473e+01 - sys_corr_54: 5.27627791e+01 + sys_corr_50: -3.14327737e+01 + sys_corr_51: 4.57738351e+01 + sys_corr_52: -9.41530439e+01 + sys_corr_53: 2.70234473e+01 + sys_corr_54: -5.27627791e+01 sys_corr_55: -1.46866162e+00 sys_corr_56: -2.88825791e+01 - sys_corr_57: 1.42867812e+01 + sys_corr_57: -1.42867812e+01 sys_corr_58: 1.04759386e+01 - sys_corr_59: 2.18961063e+01 + sys_corr_59: -2.18961063e+01 sys_corr_60: 2.45124092e+00 sys_corr_61: 2.31672454e+01 sys_corr_62: -2.37610908e+01 - sys_corr_63: -2.45186306e+01 + sys_corr_63: 2.45186306e+01 sys_corr_64: 4.72021638e+00 sys_corr_65: 5.55857419e+00 - sys_corr_66: -6.51943496e+00 - sys_corr_67: 5.20312012e+00 - sys_corr_68: 1.34450218e+01 - sys_corr_69: 1.51571537e+01 - sys_corr_70: 2.23256779e+00 - sys_corr_71: -3.86082471e+01 - sys_corr_72: -4.06340740e+00 - sys_corr_73: -1.61982917e+01 - sys_corr_74: 2.76477747e+00 - sys_corr_75: -4.05702929e+01 + sys_corr_66: 6.51943496e+00 + sys_corr_67: -5.20312012e+00 + sys_corr_68: -1.34450218e+01 + sys_corr_69: -1.51571537e+01 + sys_corr_70: -2.23256779e+00 + sys_corr_71: -1.61982917e+01 + sys_corr_72: 4.06340740e+00 + sys_corr_73: 3.86082471e+01 + sys_corr_74: -2.76477747e+00 + sys_corr_75: 4.05702929e+01 sys_corr_76: 4.12840503e+00 sys_corr_77: 6.95614086e+01 - sys_corr_78: 3.32885303e+00 + sys_corr_78: 2.03461169e+00 sys_corr_79: 1.65349171e+01 - sys_corr_80: -2.03461169e+00 + sys_corr_80: -3.32885303e+00 sys_corr_81: -2.54031663e+01 - sys_corr_82: 6.99399353e-02 - sys_corr_83: -1.39448823e+00 + sys_corr_82: -1.39448823e+00 + sys_corr_83: -6.99399353e-02 sys_corr_84: -2.13130423e+01 - sys_corr_85: 1.38093609e+01 - sys_corr_86: 1.99427635e+01 + sys_corr_85: -1.38093609e+01 + sys_corr_86: -1.99427635e+01 sys_corr_87: 1.25799323e+01 sys_corr_88: -1.74400550e+01 - sys_corr_89: -2.98003281e+00 - sys_corr_90: -4.32204118e+00 + sys_corr_89: 2.98003281e+00 + sys_corr_90: 4.32204118e+00 sys_corr_91: 1.43143266e+00 - sys_corr_92: 1.28861494e+01 - sys_corr_93: -2.04853452e-01 + sys_corr_92: -1.28861494e+01 + sys_corr_93: 3.01369829e+00 sys_corr_94: 7.51664429e-02 - sys_corr_95: -3.01369829e+00 + sys_corr_95: 2.04853452e-01 sys_corr_96: 5.34936871e-01 sys_corr_97: 7.30075353e+00 sys_corr_98: 2.58308191e+00 sys_corr_99: 3.56053810e+00 - sys_corr_100: -2.95946004e+00 - sys_corr_101: 3.70132644e+00 - sys_corr_102: -8.36363313e+00 - sys_corr_103: 3.28622611e+01 - sys_corr_104: 6.20062231e+00 - sys_corr_105: 1.47387020e+01 - sys_corr_106: 3.20125438e+00 - sys_corr_107: 9.40179489e-01 - sys_corr_108: 2.46848865e-02 - sys_corr_109: 8.84308902e-01 - sys_corr_110: -7.03702377e-01 - sys_corr_111: -2.63863417e+00 - sys_corr_112: -2.42808697e-02 + sys_corr_100: 6.20062231e+00 + sys_corr_101: 3.28622611e+01 + sys_corr_102: -1.47387020e+01 + sys_corr_103: 8.36363313e+00 + sys_corr_104: 3.70132644e+00 + sys_corr_105: -2.95946004e+00 + sys_corr_106: -3.20125438e+00 + sys_corr_107: -9.40179489e-01 + sys_corr_108: 2.63863417e+00 + sys_corr_109: -2.46848865e-02 + sys_corr_110: -8.84308902e-01 + sys_corr_111: -7.03702377e-01 + sys_corr_112: 2.42808697e-02 sys_corr_113: 2.39261186e-02 sys_corr_114: -3.46419130e-04 - sys_corr_115: -2.86839458e-01 - sys_corr_116: 1.87038698e-01 + sys_corr_115: 2.86839458e-01 + sys_corr_116: -1.87038698e-01 sys_corr_117: -1.41403410e-01 - sys_corr_118: -7.74298948e-02 - sys_corr_119: 4.96898255e-03 + sys_corr_118: 7.74298948e-02 + sys_corr_119: -4.96898255e-03 sys_corr_120: -1.02260291e-01 sys_corr_121: -1.05026168e-02 sys_corr_122: 9.57173966e-02 - sys_corr_123: -3.88849678e-02 + sys_corr_123: 3.88849678e-02 sys_corr_124: -1.19373134e-01 - sys_corr_125: -7.41110138e-02 + sys_corr_125: 7.41110138e-02 sys_corr_126: 7.15008442e-03 - sys_corr_127: -1.00034513e+00 - sys_corr_128: -2.09338978e-01 - sys_corr_129: 4.82970787e-02 + sys_corr_127: 1.00034513e+00 + sys_corr_128: 2.09338978e-01 + sys_corr_129: -4.82970787e-02 sys_corr_130: -2.33983914e-03 - sys_corr_131: -9.61249424e-02 - sys_corr_132: 4.02298107e-02 + sys_corr_131: 4.02298107e-02 + sys_corr_132: 9.61249424e-02 stat: 0.0 luminosity: 3.89253172e+02 - sys_corr_1: 2.01131912e+02 @@ -810,26 +810,26 @@ bins: sys_corr_4: 6.28925548e+01 sys_corr_5: 3.97169607e+02 sys_corr_6: -9.07777983e+02 - sys_corr_7: -2.31210216e+01 - sys_corr_8: -3.97863516e+01 + sys_corr_7: 2.31210216e+01 + sys_corr_8: 3.97863516e+01 sys_corr_9: 3.17800187e+01 - sys_corr_10: -2.90778889e+01 - sys_corr_11: -1.04045800e+02 - sys_corr_12: -1.29369599e+02 + sys_corr_10: 2.90778889e+01 + sys_corr_11: 1.04045800e+02 + sys_corr_12: 1.29369599e+02 sys_corr_13: -8.38790594e+01 - sys_corr_14: -1.98237326e+01 - sys_corr_15: -2.75922703e+01 - sys_corr_16: 2.03240415e+00 - sys_corr_17: -9.99551650e+00 - sys_corr_18: 2.60970770e+01 - sys_corr_19: 2.60476266e+01 - sys_corr_20: -1.52301011e+01 - sys_corr_21: -3.43812209e+00 - sys_corr_22: -1.99262978e+02 - sys_corr_23: -2.11748355e+01 - sys_corr_24: -9.45672871e+01 - sys_corr_25: -6.14620560e+00 - sys_corr_26: -6.24139715e+00 + sys_corr_14: 1.98237326e+01 + sys_corr_15: 2.75922703e+01 + sys_corr_16: -2.03240415e+00 + sys_corr_17: 9.99551650e+00 + sys_corr_18: -2.60970770e+01 + sys_corr_19: -2.60476266e+01 + sys_corr_20: 1.52301011e+01 + sys_corr_21: 3.43812209e+00 + sys_corr_22: 1.99262978e+02 + sys_corr_23: 2.11748355e+01 + sys_corr_24: 9.45672871e+01 + sys_corr_25: 6.14620560e+00 + sys_corr_26: 6.24139715e+00 sys_corr_27: -1.61178555e+01 sys_corr_28: 8.48072062e+01 sys_corr_29: -8.22796853e+01 @@ -842,100 +842,100 @@ bins: sys_corr_36: -1.98530866e+01 sys_corr_37: 1.60914627e+01 sys_corr_38: -7.15884931e+00 - sys_corr_39: -5.31009427e+00 + sys_corr_39: 5.31009427e+00 sys_corr_40: 2.58938950e+01 sys_corr_41: -4.80719664e+01 - sys_corr_42: 4.38476031e+01 + sys_corr_42: -4.38476031e+01 sys_corr_43: -2.50322005e+01 - sys_corr_44: 4.26166678e+01 - sys_corr_45: 5.20508413e+00 - sys_corr_46: -8.14146870e+00 - sys_corr_47: 4.67648135e+00 - sys_corr_48: -8.09385332e+00 + sys_corr_44: -4.26166678e+01 + sys_corr_45: -5.20508413e+00 + sys_corr_46: 8.14146870e+00 + sys_corr_47: -4.67648135e+00 + sys_corr_48: 8.09385332e+00 sys_corr_49: 2.25059690e+01 - sys_corr_50: 2.55283260e+01 - sys_corr_51: 1.10263594e+01 - sys_corr_52: -8.41140303e+00 - sys_corr_53: 3.04584598e+01 - sys_corr_54: -4.95856262e+01 + sys_corr_50: -2.55283260e+01 + sys_corr_51: -1.10263594e+01 + sys_corr_52: 8.41140303e+00 + sys_corr_53: -3.04584598e+01 + sys_corr_54: 4.95856262e+01 sys_corr_55: -1.04752520e+01 sys_corr_56: -3.67974323e+00 - sys_corr_57: -1.83016755e+00 + sys_corr_57: 1.83016755e+00 sys_corr_58: 9.37691376e+00 - sys_corr_59: -5.41276563e+00 + sys_corr_59: 5.41276563e+00 sys_corr_60: 1.64043473e+01 sys_corr_61: -2.62015417e+01 sys_corr_62: 1.08627352e+01 - sys_corr_63: 1.28863520e+01 + sys_corr_63: -1.28863520e+01 sys_corr_64: 1.57204012e+01 sys_corr_65: -1.45898828e+01 - sys_corr_66: 1.68125915e+01 - sys_corr_67: -4.98410097e+00 - sys_corr_68: -1.17328153e+01 - sys_corr_69: 5.16504265e+00 - sys_corr_70: 1.35993665e+01 - sys_corr_71: 1.25023858e+01 - sys_corr_72: -7.97891378e+00 - sys_corr_73: 2.48526150e+01 - sys_corr_74: -4.52180945e+00 - sys_corr_75: 9.59062206e+00 + sys_corr_66: -1.68125915e+01 + sys_corr_67: 4.98410097e+00 + sys_corr_68: 1.17328153e+01 + sys_corr_69: -5.16504265e+00 + sys_corr_70: -1.35993665e+01 + sys_corr_71: 2.48526150e+01 + sys_corr_72: 7.97891378e+00 + sys_corr_73: -1.25023858e+01 + sys_corr_74: 4.52180945e+00 + sys_corr_75: -9.59062206e+00 sys_corr_76: -2.24338088e+00 sys_corr_77: -1.30914471e+01 - sys_corr_78: 3.07082675e+01 + sys_corr_78: -2.93776055e+01 sys_corr_79: -1.48000018e+01 - sys_corr_80: 2.93776055e+01 + sys_corr_80: -3.07082675e+01 sys_corr_81: 3.09687432e+01 - sys_corr_82: -1.92143172e+00 - sys_corr_83: 5.33125310e+00 + sys_corr_82: 5.33125310e+00 + sys_corr_83: 1.92143172e+00 sys_corr_84: 1.43973007e+01 - sys_corr_85: -1.43123750e+01 - sys_corr_86: -7.51669539e+00 + sys_corr_85: 1.43123750e+01 + sys_corr_86: 7.51669539e+00 sys_corr_87: -1.17090810e+01 sys_corr_88: 4.72707332e+00 - sys_corr_89: 2.18948218e+00 - sys_corr_90: -7.35208706e-01 + sys_corr_89: -2.18948218e+00 + sys_corr_90: 7.35208706e-01 sys_corr_91: 3.19544651e+00 - sys_corr_92: -1.24805892e+01 - sys_corr_93: 1.59952207e-01 + sys_corr_92: 1.24805892e+01 + sys_corr_93: -3.47678035e+00 sys_corr_94: -1.35609150e+00 - sys_corr_95: 3.47678035e+00 + sys_corr_95: -1.59952207e-01 sys_corr_96: -1.44325356e+00 sys_corr_97: -1.23266150e+01 sys_corr_98: -4.47170880e+00 sys_corr_99: -7.29582607e+00 - sys_corr_100: 7.32258925e+00 - sys_corr_101: -8.00437777e+00 - sys_corr_102: 1.97878964e+01 - sys_corr_103: -7.75532262e+01 - sys_corr_104: -1.44961401e+01 - sys_corr_105: -3.29611174e+01 - sys_corr_106: -7.44159155e+00 - sys_corr_107: -2.89353720e+00 - sys_corr_108: -8.92486872e-01 - sys_corr_109: -1.34450030e+00 - sys_corr_110: 2.19057648e+00 - sys_corr_111: 6.43948189e+00 - sys_corr_112: 1.52694094e-01 + sys_corr_100: -1.44961401e+01 + sys_corr_101: -7.75532262e+01 + sys_corr_102: 3.29611174e+01 + sys_corr_103: -1.97878964e+01 + sys_corr_104: -8.00437777e+00 + sys_corr_105: 7.32258925e+00 + sys_corr_106: 7.44159155e+00 + sys_corr_107: 2.89353720e+00 + sys_corr_108: -6.43948189e+00 + sys_corr_109: 8.92486872e-01 + sys_corr_110: 1.34450030e+00 + sys_corr_111: 2.19057648e+00 + sys_corr_112: -1.52694094e-01 sys_corr_113: 2.76161138e-01 sys_corr_114: 9.22941912e-03 - sys_corr_115: 2.67654290e-01 - sys_corr_116: -9.79579069e-02 + sys_corr_115: -2.67654290e-01 + sys_corr_116: 9.79579069e-02 sys_corr_117: 6.92750368e-02 - sys_corr_118: 4.17639570e-02 - sys_corr_119: 2.85783922e-03 + sys_corr_118: -4.17639570e-02 + sys_corr_119: -2.85783922e-03 sys_corr_120: 8.05522788e-02 sys_corr_121: 2.93740486e-03 sys_corr_122: -1.51627395e-01 - sys_corr_123: 7.97835922e-02 + sys_corr_123: -7.97835922e-02 sys_corr_124: -1.15678324e-01 - sys_corr_125: 5.81068309e-02 + sys_corr_125: -5.81068309e-02 sys_corr_126: -2.79929968e-02 - sys_corr_127: 2.93743685e+00 - sys_corr_128: 2.98837522e-01 - sys_corr_129: -2.40389487e-01 + sys_corr_127: -2.93743685e+00 + sys_corr_128: -2.98837522e-01 + sys_corr_129: 2.40389487e-01 sys_corr_130: 1.32805990e-02 - sys_corr_131: 1.08614322e-01 - sys_corr_132: 1.00645708e-02 + sys_corr_131: 1.00645708e-02 + sys_corr_132: -1.08614322e-01 stat: 0.0 luminosity: 3.78312154e+02 - sys_corr_1: 2.23770814e+02 @@ -944,26 +944,26 @@ bins: sys_corr_4: 5.53483923e+01 sys_corr_5: 3.78015085e+02 sys_corr_6: -8.74017682e+02 - sys_corr_7: -1.25826330e+01 - sys_corr_8: -3.01733409e+01 + sys_corr_7: 1.25826330e+01 + sys_corr_8: 3.01733409e+01 sys_corr_9: 2.39184870e+01 - sys_corr_10: -2.58975972e+01 - sys_corr_11: -8.49736545e+01 - sys_corr_12: -1.03961842e+02 + sys_corr_10: 2.58975972e+01 + sys_corr_11: 8.49736545e+01 + sys_corr_12: 1.03961842e+02 sys_corr_13: -6.82874238e+01 - sys_corr_14: -1.35159871e+01 - sys_corr_15: -2.47833383e+01 - sys_corr_16: 3.57698316e+00 - sys_corr_17: 4.88600037e+00 - sys_corr_18: 1.69739693e+01 - sys_corr_19: 1.00489907e+01 - sys_corr_20: -3.29770940e+00 - sys_corr_21: -1.07320705e+01 - sys_corr_22: -1.09625492e+02 - sys_corr_23: -1.30162313e+01 - sys_corr_24: -2.53111553e+01 - sys_corr_25: -8.67695068e+00 - sys_corr_26: -2.96399856e+01 + sys_corr_14: 1.35159871e+01 + sys_corr_15: 2.47833383e+01 + sys_corr_16: -3.57698316e+00 + sys_corr_17: -4.88600037e+00 + sys_corr_18: -1.69739693e+01 + sys_corr_19: -1.00489907e+01 + sys_corr_20: 3.29770940e+00 + sys_corr_21: 1.07320705e+01 + sys_corr_22: 1.09625492e+02 + sys_corr_23: 1.30162313e+01 + sys_corr_24: 2.53111553e+01 + sys_corr_25: 8.67695068e+00 + sys_corr_26: 2.96399856e+01 sys_corr_27: 9.94299047e+00 sys_corr_28: 7.00017026e+01 sys_corr_29: -7.10466608e+01 @@ -976,100 +976,100 @@ bins: sys_corr_36: -1.17252535e+01 sys_corr_37: -1.63171495e+01 sys_corr_38: 4.60634729e+01 - sys_corr_39: 1.82011930e+01 + sys_corr_39: -1.82011930e+01 sys_corr_40: 5.89133376e+00 sys_corr_41: -1.88259073e+01 - sys_corr_42: -2.00203739e+01 + sys_corr_42: 2.00203739e+01 sys_corr_43: 2.46509044e+00 - sys_corr_44: 6.08783628e+00 - sys_corr_45: 4.49252370e+01 - sys_corr_46: -6.67971433e+00 - sys_corr_47: -3.28904430e+01 - sys_corr_48: 2.17800755e+01 + sys_corr_44: -6.08783628e+00 + sys_corr_45: -4.49252370e+01 + sys_corr_46: 6.67971433e+00 + sys_corr_47: 3.28904430e+01 + sys_corr_48: -2.17800755e+01 sys_corr_49: 2.39732119e+01 - sys_corr_50: -3.90674115e+01 - sys_corr_51: 5.53110409e+01 - sys_corr_52: -1.29996262e+02 - sys_corr_53: 5.09223568e+01 - sys_corr_54: -9.19602754e+01 + sys_corr_50: 3.90674115e+01 + sys_corr_51: -5.53110409e+01 + sys_corr_52: 1.29996262e+02 + sys_corr_53: -5.09223568e+01 + sys_corr_54: 9.19602754e+01 sys_corr_55: 2.56803406e+00 sys_corr_56: 5.29921110e+01 - sys_corr_57: -9.47776363e+00 + sys_corr_57: 9.47776363e+00 sys_corr_58: 1.40163032e+01 - sys_corr_59: -2.97199615e+01 + sys_corr_59: 2.97199615e+01 sys_corr_60: 7.19322013e+00 sys_corr_61: -1.68911137e+01 sys_corr_62: 1.01272255e+01 - sys_corr_63: 1.58649637e+01 + sys_corr_63: -1.58649637e+01 sys_corr_64: -2.12823138e+00 sys_corr_65: -5.11056709e+00 - sys_corr_66: 3.86498780e+00 - sys_corr_67: 4.58819834e+00 - sys_corr_68: -2.87507683e+01 - sys_corr_69: -3.39625330e-01 - sys_corr_70: 2.89167711e+00 - sys_corr_71: 1.73360156e+01 - sys_corr_72: -3.33051892e+00 - sys_corr_73: 9.13241877e+00 - sys_corr_74: -1.65909686e+00 - sys_corr_75: 2.86426199e+01 + sys_corr_66: -3.86498780e+00 + sys_corr_67: -4.58819834e+00 + sys_corr_68: 2.87507683e+01 + sys_corr_69: 3.39625330e-01 + sys_corr_70: -2.89167711e+00 + sys_corr_71: 9.13241877e+00 + sys_corr_72: 3.33051892e+00 + sys_corr_73: -1.73360156e+01 + sys_corr_74: 1.65909686e+00 + sys_corr_75: -2.86426199e+01 sys_corr_76: -3.17017990e+00 sys_corr_77: -6.73644341e+01 - sys_corr_78: -1.32866753e+01 + sys_corr_78: 1.44431677e+01 sys_corr_79: -8.98050457e+00 - sys_corr_80: -1.44431677e+01 + sys_corr_80: 1.32866753e+01 sys_corr_81: 2.28366453e+00 - sys_corr_82: 2.96269032e+00 - sys_corr_83: -3.02879658e+00 + sys_corr_82: -3.02879658e+00 + sys_corr_83: -2.96269032e+00 sys_corr_84: -4.65641843e-01 - sys_corr_85: 5.09602468e+00 - sys_corr_86: -6.45906769e+00 + sys_corr_85: -5.09602468e+00 + sys_corr_86: 6.45906769e+00 sys_corr_87: -4.14505290e+00 sys_corr_88: 9.95182639e+00 - sys_corr_89: -5.68665232e-01 - sys_corr_90: 3.68702216e+00 + sys_corr_89: 5.68665232e-01 + sys_corr_90: -3.68702216e+00 sys_corr_91: -2.68291490e+00 - sys_corr_92: 5.25943458e-01 - sys_corr_93: 7.25658024e-02 + sys_corr_92: -5.25943458e-01 + sys_corr_93: 4.84424402e-01 sys_corr_94: 1.61024030e+00 - sys_corr_95: -4.84424402e-01 + sys_corr_95: -7.25658024e-02 sys_corr_96: 9.25324354e-01 sys_corr_97: 6.12886298e+00 sys_corr_98: 2.60441008e+00 sys_corr_99: 3.96462824e+00 - sys_corr_100: -5.39243963e+00 - sys_corr_101: 5.56803449e+00 - sys_corr_102: -1.38735484e+01 - sys_corr_103: 5.13477779e+01 - sys_corr_104: 9.05521726e+00 - sys_corr_105: 2.06767419e+01 - sys_corr_106: 5.22145074e+00 - sys_corr_107: 2.16471434e+00 - sys_corr_108: 7.75833686e-01 - sys_corr_109: 9.77816570e-01 - sys_corr_110: -1.23015223e+00 - sys_corr_111: -3.97229245e+00 - sys_corr_112: -1.88222941e-01 + sys_corr_100: 9.05521726e+00 + sys_corr_101: 5.13477779e+01 + sys_corr_102: -2.06767419e+01 + sys_corr_103: 1.38735484e+01 + sys_corr_104: 5.56803449e+00 + sys_corr_105: -5.39243963e+00 + sys_corr_106: -5.22145074e+00 + sys_corr_107: -2.16471434e+00 + sys_corr_108: 3.97229245e+00 + sys_corr_109: -7.75833686e-01 + sys_corr_110: -9.77816570e-01 + sys_corr_111: -1.23015223e+00 + sys_corr_112: 1.88222941e-01 sys_corr_113: -2.72658653e-01 sys_corr_114: -7.46844299e-03 - sys_corr_115: -1.94100462e-01 - sys_corr_116: 7.64724880e-02 + sys_corr_115: 1.94100462e-01 + sys_corr_116: -7.64724880e-02 sys_corr_117: -5.32310172e-02 - sys_corr_118: -1.29780691e-01 - sys_corr_119: -2.14848312e-03 + sys_corr_118: 1.29780691e-01 + sys_corr_119: 2.14848312e-03 sys_corr_120: -5.78317285e-02 sys_corr_121: 2.24473835e-03 sys_corr_122: 1.35391583e-01 - sys_corr_123: -6.37079218e-02 + sys_corr_123: 6.37079218e-02 sys_corr_124: 7.85701745e-02 - sys_corr_125: -6.55508672e-02 + sys_corr_125: 6.55508672e-02 sys_corr_126: 1.51302523e-02 - sys_corr_127: -1.66699635e+00 - sys_corr_128: -3.29873154e-01 - sys_corr_129: 1.50349656e-01 + sys_corr_127: 1.66699635e+00 + sys_corr_128: 3.29873154e-01 + sys_corr_129: -1.50349656e-01 sys_corr_130: 1.62394948e-02 - sys_corr_131: -8.07727478e-02 - sys_corr_132: -4.26232334e-02 + sys_corr_131: -4.26232334e-02 + sys_corr_132: 8.07727478e-02 stat: 0.0 luminosity: 3.87716780e+02 - sys_corr_1: 2.10992669e+02 @@ -1078,26 +1078,26 @@ bins: sys_corr_4: 5.38977199e+01 sys_corr_5: 3.56753794e+02 sys_corr_6: -8.23061859e+02 - sys_corr_7: -7.21890197e+00 - sys_corr_8: -2.73217529e+01 + sys_corr_7: 7.21890197e+00 + sys_corr_8: 2.73217529e+01 sys_corr_9: 2.30091940e+01 - sys_corr_10: -2.56280526e+01 - sys_corr_11: -7.85951016e+01 - sys_corr_12: -1.02721295e+02 + sys_corr_10: 2.56280526e+01 + sys_corr_11: 7.85951016e+01 + sys_corr_12: 1.02721295e+02 sys_corr_13: -6.69319780e+01 - sys_corr_14: -1.34839721e+01 - sys_corr_15: -2.63964797e+01 - sys_corr_16: 8.02337941e+00 - sys_corr_17: -3.87779946e+00 - sys_corr_18: 1.41376478e+01 - sys_corr_19: 1.83341047e+01 - sys_corr_20: -7.12152687e+00 - sys_corr_21: -9.74210021e-01 - sys_corr_22: -1.25804887e+02 - sys_corr_23: -1.49993225e+01 - sys_corr_24: -5.11698906e+01 - sys_corr_25: -9.52399165e+00 - sys_corr_26: -7.80480074e+00 + sys_corr_14: 1.34839721e+01 + sys_corr_15: 2.63964797e+01 + sys_corr_16: -8.02337941e+00 + sys_corr_17: 3.87779946e+00 + sys_corr_18: -1.41376478e+01 + sys_corr_19: -1.83341047e+01 + sys_corr_20: 7.12152687e+00 + sys_corr_21: 9.74210021e-01 + sys_corr_22: 1.25804887e+02 + sys_corr_23: 1.49993225e+01 + sys_corr_24: 5.11698906e+01 + sys_corr_25: 9.52399165e+00 + sys_corr_26: 7.80480074e+00 sys_corr_27: -4.50173554e+00 sys_corr_28: 3.49928099e+01 sys_corr_29: -3.29791171e+01 @@ -1110,100 +1110,100 @@ bins: sys_corr_36: -3.38413709e+01 sys_corr_37: 1.88601208e+01 sys_corr_38: 5.49033877e+00 - sys_corr_39: -3.21881110e+01 + sys_corr_39: 3.21881110e+01 sys_corr_40: -7.88407534e+00 sys_corr_41: -4.65986680e+00 - sys_corr_42: -4.35799440e+01 + sys_corr_42: 4.35799440e+01 sys_corr_43: -6.57366796e+00 - sys_corr_44: -6.73722334e+00 - sys_corr_45: 3.46968191e+01 - sys_corr_46: -1.87243870e+01 - sys_corr_47: -4.17174700e+01 - sys_corr_48: 1.94690032e+01 + sys_corr_44: 6.73722334e+00 + sys_corr_45: -3.46968191e+01 + sys_corr_46: 1.87243870e+01 + sys_corr_47: 4.17174700e+01 + sys_corr_48: -1.94690032e+01 sys_corr_49: 2.40153764e+01 - sys_corr_50: -2.88468399e+01 - sys_corr_51: 3.63205562e+01 - sys_corr_52: -8.78164859e+01 - sys_corr_53: 1.52658449e+01 - sys_corr_54: -4.78892610e+01 + sys_corr_50: 2.88468399e+01 + sys_corr_51: -3.63205562e+01 + sys_corr_52: 8.78164859e+01 + sys_corr_53: -1.52658449e+01 + sys_corr_54: 4.78892610e+01 sys_corr_55: -1.18744493e+01 sys_corr_56: 2.29716944e+01 - sys_corr_57: -1.94228413e+01 + sys_corr_57: 1.94228413e+01 sys_corr_58: 1.25599012e+01 - sys_corr_59: -4.11148720e+01 + sys_corr_59: 4.11148720e+01 sys_corr_60: 8.72553946e+00 sys_corr_61: -6.43979829e+00 sys_corr_62: 1.48139030e+01 - sys_corr_63: 3.35815254e+00 + sys_corr_63: -3.35815254e+00 sys_corr_64: -1.34891645e+01 sys_corr_65: 8.89581289e+00 - sys_corr_66: -7.03554835e+00 - sys_corr_67: -8.45080476e+00 - sys_corr_68: 3.62210330e+01 - sys_corr_69: -6.61030509e+00 - sys_corr_70: 6.18351565e-01 - sys_corr_71: -5.30979745e+01 - sys_corr_72: 2.09576085e-01 - sys_corr_73: -2.40190453e+01 - sys_corr_74: 4.28777250e+00 - sys_corr_75: -9.29321953e+01 + sys_corr_66: 7.03554835e+00 + sys_corr_67: 8.45080476e+00 + sys_corr_68: -3.62210330e+01 + sys_corr_69: 6.61030509e+00 + sys_corr_70: -6.18351565e-01 + sys_corr_71: -2.40190453e+01 + sys_corr_72: -2.09576085e-01 + sys_corr_73: 5.30979745e+01 + sys_corr_74: -4.28777250e+00 + sys_corr_75: 9.29321953e+01 sys_corr_76: 8.87647961e+00 sys_corr_77: 1.02737230e+02 - sys_corr_78: 2.77424739e+01 + sys_corr_78: 2.65542383e+00 sys_corr_79: 1.59377905e+01 - sys_corr_80: -2.65542383e+00 + sys_corr_80: -2.77424739e+01 sys_corr_81: 9.81279365e+00 - sys_corr_82: 4.97499473e+00 - sys_corr_83: 1.24084518e+01 + sys_corr_82: 1.24084518e+01 + sys_corr_83: -4.97499473e+00 sys_corr_84: -3.01552833e+01 - sys_corr_85: 1.21057763e+01 - sys_corr_86: 3.18681489e+01 + sys_corr_85: -1.21057763e+01 + sys_corr_86: -3.18681489e+01 sys_corr_87: 5.18804216e+00 sys_corr_88: -3.41552506e+01 - sys_corr_89: -4.20846819e+00 - sys_corr_90: -2.79849087e+00 + sys_corr_89: 4.20846819e+00 + sys_corr_90: 2.79849087e+00 sys_corr_91: 2.94122520e+00 - sys_corr_92: 3.39644203e+00 - sys_corr_93: -8.81731160e-02 + sys_corr_92: -3.39644203e+00 + sys_corr_93: 3.28627536e+00 sys_corr_94: -1.56069055e+00 - sys_corr_95: -3.28627536e+00 + sys_corr_95: 8.81731160e-02 sys_corr_96: 1.30315101e-01 sys_corr_97: 3.48414609e+00 sys_corr_98: 9.70552687e-01 sys_corr_99: 7.28088576e-01 - sys_corr_100: 1.13463138e+00 - sys_corr_101: -4.77692458e-01 - sys_corr_102: 1.71062569e+00 - sys_corr_103: -4.98159911e+00 - sys_corr_104: -5.23031044e-01 - sys_corr_105: -6.96884447e-01 - sys_corr_106: -7.22560401e-01 - sys_corr_107: -7.24026706e-01 - sys_corr_108: -4.11012136e-01 - sys_corr_109: 1.55278318e-02 - sys_corr_110: 6.48634332e-01 - sys_corr_111: 1.13839187e-01 - sys_corr_112: 1.45092106e-01 + sys_corr_100: -5.23031044e-01 + sys_corr_101: -4.98159911e+00 + sys_corr_102: 6.96884447e-01 + sys_corr_103: -1.71062569e+00 + sys_corr_104: -4.77692458e-01 + sys_corr_105: 1.13463138e+00 + sys_corr_106: 7.22560401e-01 + sys_corr_107: 7.24026706e-01 + sys_corr_108: -1.13839187e-01 + sys_corr_109: 4.11012136e-01 + sys_corr_110: -1.55278318e-02 + sys_corr_111: 6.48634332e-01 + sys_corr_112: -1.45092106e-01 sys_corr_113: 1.69006209e-01 sys_corr_114: 4.52052477e-03 - sys_corr_115: -1.71512664e-01 - sys_corr_116: 9.48258749e-02 + sys_corr_115: 1.71512664e-01 + sys_corr_116: -9.48258749e-02 sys_corr_117: -6.49091020e-02 - sys_corr_118: -9.52287799e-02 - sys_corr_119: 5.47545361e-03 + sys_corr_118: 9.52287799e-02 + sys_corr_119: -5.47545361e-03 sys_corr_120: -2.97813350e-02 sys_corr_121: -1.00520969e-02 sys_corr_122: -3.06310180e-02 - sys_corr_123: 3.08282698e-02 + sys_corr_123: -3.08282698e-02 sys_corr_124: -1.14572071e-01 - sys_corr_125: -5.59363294e-03 + sys_corr_125: 5.59363294e-03 sys_corr_126: -1.68050686e-02 - sys_corr_127: 5.43658182e-01 - sys_corr_128: -1.63130754e-01 - sys_corr_129: -9.22143039e-02 + sys_corr_127: -5.43658182e-01 + sys_corr_128: 1.63130754e-01 + sys_corr_129: 9.22143039e-02 sys_corr_130: 1.94177657e-02 - sys_corr_131: -1.58501451e-02 - sys_corr_132: 6.32002583e-02 + sys_corr_131: 6.32002583e-02 + sys_corr_132: 1.58501451e-02 stat: 0.0 luminosity: 3.92531898e+02 - sys_corr_1: 2.34888060e+02 @@ -1212,26 +1212,26 @@ bins: sys_corr_4: 6.94059502e+01 sys_corr_5: 3.19774277e+02 sys_corr_6: -8.01351172e+02 - sys_corr_7: 1.59759787e+01 - sys_corr_8: -7.80716145e+00 + sys_corr_7: -1.59759787e+01 + sys_corr_8: 7.80716145e+00 sys_corr_9: 6.90456689e+00 - sys_corr_10: -1.47708009e+01 - sys_corr_11: -4.68112992e+01 - sys_corr_12: -6.45936782e+01 + sys_corr_10: 1.47708009e+01 + sys_corr_11: 4.68112992e+01 + sys_corr_12: 6.45936782e+01 sys_corr_13: -4.56365705e+01 - sys_corr_14: -8.24676038e+00 - sys_corr_15: -1.76594284e+01 - sys_corr_16: 8.46791118e+00 - sys_corr_17: 9.76702146e+00 - sys_corr_18: 1.03254342e+00 - sys_corr_19: 8.75606673e-01 - sys_corr_20: 2.63124872e+00 - sys_corr_21: -3.91105119e+00 - sys_corr_22: -1.84435593e+01 - sys_corr_23: -8.44264664e+00 - sys_corr_24: 1.22629882e+00 - sys_corr_25: -1.53707431e+01 - sys_corr_26: -4.70749804e+01 + sys_corr_14: 8.24676038e+00 + sys_corr_15: 1.76594284e+01 + sys_corr_16: -8.46791118e+00 + sys_corr_17: -9.76702146e+00 + sys_corr_18: -1.03254342e+00 + sys_corr_19: -8.75606673e-01 + sys_corr_20: -2.63124872e+00 + sys_corr_21: 3.91105119e+00 + sys_corr_22: 1.84435593e+01 + sys_corr_23: 8.44264664e+00 + sys_corr_24: -1.22629882e+00 + sys_corr_25: 1.53707431e+01 + sys_corr_26: 4.70749804e+01 sys_corr_27: 1.23496122e+01 sys_corr_28: 5.58788812e+01 sys_corr_29: -6.45291657e+01 @@ -1244,100 +1244,100 @@ bins: sys_corr_36: 6.32974309e-01 sys_corr_37: -6.23410389e+00 sys_corr_38: -6.61570927e+00 - sys_corr_39: -6.39003708e+00 + sys_corr_39: 6.39003708e+00 sys_corr_40: -3.30915243e+01 sys_corr_41: 1.27398462e-01 - sys_corr_42: -4.71005181e+01 + sys_corr_42: 4.71005181e+01 sys_corr_43: 2.57698830e+00 - sys_corr_44: -3.83866325e+01 - sys_corr_45: 2.45546714e+01 - sys_corr_46: -6.68695746e+00 - sys_corr_47: 3.77798989e+00 - sys_corr_48: 2.19555286e+01 + sys_corr_44: 3.83866325e+01 + sys_corr_45: -2.45546714e+01 + sys_corr_46: 6.68695746e+00 + sys_corr_47: -3.77798989e+00 + sys_corr_48: -2.19555286e+01 sys_corr_49: 1.98707302e+01 - sys_corr_50: -4.32153591e+01 - sys_corr_51: 2.93862559e+00 - sys_corr_52: -2.15749107e+01 - sys_corr_53: -4.29935738e+01 - sys_corr_54: 1.09585006e+02 + sys_corr_50: 4.32153591e+01 + sys_corr_51: -2.93862559e+00 + sys_corr_52: 2.15749107e+01 + sys_corr_53: 4.29935738e+01 + sys_corr_54: -1.09585006e+02 sys_corr_55: 1.51751613e+01 sys_corr_56: -4.40654846e+01 - sys_corr_57: -5.41492318e+01 + sys_corr_57: 5.41492318e+01 sys_corr_58: -5.73871996e+01 - sys_corr_59: 2.12506391e+01 + sys_corr_59: -2.12506391e+01 sys_corr_60: -1.68337365e+01 sys_corr_61: -3.98634162e+01 sys_corr_62: 4.90315025e+01 - sys_corr_63: 7.59095842e+00 + sys_corr_63: -7.59095842e+00 sys_corr_64: 1.38840996e+01 sys_corr_65: 2.56754430e+01 - sys_corr_66: 2.21230168e+01 - sys_corr_67: -3.36045283e+01 - sys_corr_68: 1.43125548e+02 - sys_corr_69: -6.47484765e+01 - sys_corr_70: 3.18014988e+01 - sys_corr_71: 4.59298863e+01 - sys_corr_72: 2.99364389e+01 - sys_corr_73: 2.31131099e+01 - sys_corr_74: -4.54904483e+00 - sys_corr_75: 1.46549714e+01 + sys_corr_66: -2.21230168e+01 + sys_corr_67: 3.36045283e+01 + sys_corr_68: -1.43125548e+02 + sys_corr_69: 6.47484765e+01 + sys_corr_70: -3.18014988e+01 + sys_corr_71: 2.31131099e+01 + sys_corr_72: -2.99364389e+01 + sys_corr_73: -4.59298863e+01 + sys_corr_74: 4.54904483e+00 + sys_corr_75: -1.46549714e+01 sys_corr_76: 8.95068996e-01 sys_corr_77: -1.45766646e+01 - sys_corr_78: -6.22477197e+01 + sys_corr_78: 1.21690554e+01 sys_corr_79: 5.33329760e+00 - sys_corr_80: -1.21690554e+01 + sys_corr_80: 6.22477197e+01 sys_corr_81: -6.12762291e+00 - sys_corr_82: 8.61603696e-01 - sys_corr_83: -4.51028538e+00 + sys_corr_82: -4.51028538e+00 + sys_corr_83: -8.61603696e-01 sys_corr_84: 1.58975652e+01 - sys_corr_85: -8.15063414e+00 - sys_corr_86: -5.86652482e+00 + sys_corr_85: 8.15063414e+00 + sys_corr_86: 5.86652482e+00 sys_corr_87: -1.08968120e+01 sys_corr_88: 9.01609323e+00 - sys_corr_89: 1.15402373e+00 - sys_corr_90: -3.79916062e+00 + sys_corr_89: -1.15402373e+00 + sys_corr_90: 3.79916062e+00 sys_corr_91: 2.28643840e+00 - sys_corr_92: -4.97839176e+00 - sys_corr_93: -1.41526875e-01 + sys_corr_92: 4.97839176e+00 + sys_corr_93: 1.52638778e-01 sys_corr_94: -5.10525864e-01 - sys_corr_95: -1.52638778e-01 + sys_corr_95: 1.41526875e-01 sys_corr_96: 1.43760740e-01 sys_corr_97: 4.37255508e-01 sys_corr_98: 1.69801035e-01 sys_corr_99: -7.69643906e-02 - sys_corr_100: 7.35666088e-01 - sys_corr_101: -3.50668555e-01 - sys_corr_102: 1.21431202e+00 - sys_corr_103: -4.39239376e+00 - sys_corr_104: -6.06507687e-01 - sys_corr_105: -1.62048879e+00 - sys_corr_106: -5.59942372e-01 - sys_corr_107: -9.11339473e-01 - sys_corr_108: 1.29633696e-02 - sys_corr_109: 2.01509662e-01 - sys_corr_110: 4.59637576e-01 - sys_corr_111: 3.86680818e-01 - sys_corr_112: 1.44689867e-01 + sys_corr_100: -6.06507687e-01 + sys_corr_101: -4.39239376e+00 + sys_corr_102: 1.62048879e+00 + sys_corr_103: -1.21431202e+00 + sys_corr_104: -3.50668555e-01 + sys_corr_105: 7.35666088e-01 + sys_corr_106: 5.59942372e-01 + sys_corr_107: 9.11339473e-01 + sys_corr_108: -3.86680818e-01 + sys_corr_109: -1.29633696e-02 + sys_corr_110: -2.01509662e-01 + sys_corr_111: 4.59637576e-01 + sys_corr_112: -1.44689867e-01 sys_corr_113: 6.63801230e-02 sys_corr_114: 2.87374397e-03 - sys_corr_115: 3.50486902e-02 - sys_corr_116: 1.18317332e-01 + sys_corr_115: -3.50486902e-02 + sys_corr_116: -1.18317332e-01 sys_corr_117: -7.96644639e-02 - sys_corr_118: 1.01590311e-01 - sys_corr_119: 9.86144078e-04 + sys_corr_118: -1.01590311e-01 + sys_corr_119: -9.86144078e-04 sys_corr_120: -3.90458339e-02 sys_corr_121: -4.09823000e-03 sys_corr_122: -4.16870622e-02 - sys_corr_123: 3.90706071e-02 + sys_corr_123: -3.90706071e-02 sys_corr_124: -1.60142629e-01 - sys_corr_125: 1.01782004e-02 + sys_corr_125: -1.01782004e-02 sys_corr_126: -1.64289821e-02 - sys_corr_127: 3.71297536e-01 - sys_corr_128: -6.65903994e-02 - sys_corr_129: -6.17536888e-02 + sys_corr_127: -3.71297536e-01 + sys_corr_128: 6.65903994e-02 + sys_corr_129: 6.17536888e-02 sys_corr_130: -4.92308202e-03 - sys_corr_131: -1.02089704e-02 - sys_corr_132: -4.49512290e-02 + sys_corr_131: -4.49512290e-02 + sys_corr_132: 1.02089704e-02 stat: 0.0 luminosity: 3.97876006e+02 - sys_corr_1: 2.55165828e+02 @@ -1346,26 +1346,26 @@ bins: sys_corr_4: 8.07445984e+01 sys_corr_5: 2.84102054e+02 sys_corr_6: -7.47755979e+02 - sys_corr_7: 4.33936019e+01 - sys_corr_8: 1.92691747e+01 + sys_corr_7: -4.33936019e+01 + sys_corr_8: -1.92691747e+01 sys_corr_9: -1.44580507e+01 - sys_corr_10: -8.74862358e+00 - sys_corr_11: -1.97145308e+01 - sys_corr_12: -3.64753830e+01 + sys_corr_10: 8.74862358e+00 + sys_corr_11: 1.97145308e+01 + sys_corr_12: 3.64753830e+01 sys_corr_13: -1.80674841e+01 - sys_corr_14: 4.99488324e-01 - sys_corr_15: -1.50365022e+01 - sys_corr_16: 9.19204732e+00 - sys_corr_17: 1.39524544e+01 - sys_corr_18: -1.49077875e+01 - sys_corr_19: -1.86790024e+01 - sys_corr_20: 1.23382690e+01 - sys_corr_21: -1.99485418e-01 - sys_corr_22: 8.28313738e+01 - sys_corr_23: -1.96645428e+00 - sys_corr_24: 5.11119778e+01 - sys_corr_25: -2.21198688e+01 - sys_corr_26: -7.57396755e+01 + sys_corr_14: -4.99488324e-01 + sys_corr_15: 1.50365022e+01 + sys_corr_16: -9.19204732e+00 + sys_corr_17: -1.39524544e+01 + sys_corr_18: 1.49077875e+01 + sys_corr_19: 1.86790024e+01 + sys_corr_20: -1.23382690e+01 + sys_corr_21: 1.99485418e-01 + sys_corr_22: -8.28313738e+01 + sys_corr_23: 1.96645428e+00 + sys_corr_24: -5.11119778e+01 + sys_corr_25: 2.21198688e+01 + sys_corr_26: 7.57396755e+01 sys_corr_27: 4.30657646e+01 sys_corr_28: 6.65549716e+01 sys_corr_29: -7.72186890e+01 @@ -1378,100 +1378,100 @@ bins: sys_corr_36: -1.76717924e+01 sys_corr_37: 2.35876617e+01 sys_corr_38: -2.69852604e+00 - sys_corr_39: 1.84861629e+01 + sys_corr_39: -1.84861629e+01 sys_corr_40: -3.78499508e+01 sys_corr_41: 5.68768135e+01 - sys_corr_42: -2.70482519e+01 + sys_corr_42: 2.70482519e+01 sys_corr_43: 2.64276011e+01 - sys_corr_44: 1.96049695e+01 - sys_corr_45: 2.07636547e+01 - sys_corr_46: 1.43235636e+01 - sys_corr_47: -2.47840539e+01 - sys_corr_48: 1.55111695e+01 + sys_corr_44: -1.96049695e+01 + sys_corr_45: -2.07636547e+01 + sys_corr_46: -1.43235636e+01 + sys_corr_47: 2.47840539e+01 + sys_corr_48: -1.55111695e+01 sys_corr_49: 2.12944501e+01 - sys_corr_50: -2.39078087e+01 - sys_corr_51: -2.92280194e+01 - sys_corr_52: 6.88245181e+01 - sys_corr_53: -3.84345334e+01 - sys_corr_54: 6.61810948e+01 + sys_corr_50: 2.39078087e+01 + sys_corr_51: 2.92280194e+01 + sys_corr_52: -6.88245181e+01 + sys_corr_53: 3.84345334e+01 + sys_corr_54: -6.61810948e+01 sys_corr_55: -1.24748398e+01 sys_corr_56: 1.48318937e+01 - sys_corr_57: -1.88957707e+01 + sys_corr_57: 1.88957707e+01 sys_corr_58: -8.16734203e+01 - sys_corr_59: -8.72391169e+01 + sys_corr_59: 8.72391169e+01 sys_corr_60: -3.82294473e+01 sys_corr_61: -2.83260539e+01 sys_corr_62: 3.85426547e+01 - sys_corr_63: 7.87533486e+01 + sys_corr_63: -7.87533486e+01 sys_corr_64: -6.78402212e+01 sys_corr_65: 9.34420196e+00 - sys_corr_66: -5.80616427e+01 - sys_corr_67: 1.96538764e+01 - sys_corr_68: -1.05797361e+02 - sys_corr_69: -6.38558181e-01 - sys_corr_70: -4.48465505e+01 - sys_corr_71: -1.98865085e-01 - sys_corr_72: -2.87860243e+00 - sys_corr_73: -6.70540727e+01 - sys_corr_74: 1.05272714e+01 - sys_corr_75: 1.72964858e+00 + sys_corr_66: 5.80616427e+01 + sys_corr_67: -1.96538764e+01 + sys_corr_68: 1.05797361e+02 + sys_corr_69: 6.38558181e-01 + sys_corr_70: 4.48465505e+01 + sys_corr_71: -6.70540727e+01 + sys_corr_72: 2.87860243e+00 + sys_corr_73: 1.98865085e-01 + sys_corr_74: -1.05272714e+01 + sys_corr_75: -1.72964858e+00 sys_corr_76: 1.07484066e+00 sys_corr_77: -1.39458133e+01 - sys_corr_78: 2.02339009e+01 + sys_corr_78: 1.10008972e+01 sys_corr_79: -1.38811838e+00 - sys_corr_80: -1.10008972e+01 + sys_corr_80: -2.02339009e+01 sys_corr_81: -9.40690123e+00 - sys_corr_82: -1.44485551e+01 - sys_corr_83: -1.57489936e+01 + sys_corr_82: -1.57489936e+01 + sys_corr_83: 1.44485551e+01 sys_corr_84: 3.34160354e+00 - sys_corr_85: -4.75949443e-01 - sys_corr_86: -1.34842364e+01 + sys_corr_85: 4.75949443e-01 + sys_corr_86: 1.34842364e+01 sys_corr_87: -2.28185493e+01 sys_corr_88: 7.79805851e+00 - sys_corr_89: 7.94616250e-01 - sys_corr_90: 9.36309756e-01 + sys_corr_89: -7.94616250e-01 + sys_corr_90: -9.36309756e-01 sys_corr_91: -1.62685351e-01 - sys_corr_92: -4.32567196e+00 - sys_corr_93: -1.40492892e-01 + sys_corr_92: 4.32567196e+00 + sys_corr_93: 2.81372753e-01 sys_corr_94: -3.93877627e-01 - sys_corr_95: -2.81372753e-01 + sys_corr_95: 1.40492892e-01 sys_corr_96: 2.05035981e-02 sys_corr_97: 4.22936483e-01 sys_corr_98: 2.80503281e-01 sys_corr_99: -5.92754566e-01 - sys_corr_100: 1.08214395e+00 - sys_corr_101: -1.03358261e+00 - sys_corr_102: 2.62640895e+00 - sys_corr_103: -5.80479553e+00 - sys_corr_104: -8.42341094e-01 - sys_corr_105: -2.08293155e+00 - sys_corr_106: -1.01044755e+00 - sys_corr_107: -8.93081887e-01 - sys_corr_108: 7.88724375e-02 - sys_corr_109: -1.43833449e-01 - sys_corr_110: 3.51371243e-01 - sys_corr_111: 3.40966102e-01 - sys_corr_112: -2.70594548e-03 + sys_corr_100: -8.42341094e-01 + sys_corr_101: -5.80479553e+00 + sys_corr_102: 2.08293155e+00 + sys_corr_103: -2.62640895e+00 + sys_corr_104: -1.03358261e+00 + sys_corr_105: 1.08214395e+00 + sys_corr_106: 1.01044755e+00 + sys_corr_107: 8.93081887e-01 + sys_corr_108: -3.40966102e-01 + sys_corr_109: -7.88724375e-02 + sys_corr_110: 1.43833449e-01 + sys_corr_111: 3.51371243e-01 + sys_corr_112: 2.70594548e-03 sys_corr_113: 1.74735238e-02 sys_corr_114: 3.61193040e-04 - sys_corr_115: -1.11989597e-02 - sys_corr_116: -7.71543298e-03 + sys_corr_115: 1.11989597e-02 + sys_corr_116: 7.71543298e-03 sys_corr_117: 1.05636597e-02 - sys_corr_118: 1.69150142e-02 - sys_corr_119: -8.02690077e-03 + sys_corr_118: -1.69150142e-02 + sys_corr_119: 8.02690077e-03 sys_corr_120: 1.99492517e-02 sys_corr_121: -8.61227752e-03 sys_corr_122: -5.39102954e-02 - sys_corr_123: 2.47000596e-02 + sys_corr_123: -2.47000596e-02 sys_corr_124: -1.62929624e-02 - sys_corr_125: 3.58456096e-02 + sys_corr_125: -3.58456096e-02 sys_corr_126: -1.71427626e-02 - sys_corr_127: 7.07876545e-01 - sys_corr_128: 1.38984901e-01 - sys_corr_129: 1.66225687e-01 + sys_corr_127: -7.07876545e-01 + sys_corr_128: -1.38984901e-01 + sys_corr_129: -1.66225687e-01 sys_corr_130: 3.33891971e-04 - sys_corr_131: 2.90225506e-02 - sys_corr_132: -6.73207022e-02 + sys_corr_131: -6.73207022e-02 + sys_corr_132: -2.90225506e-02 stat: 0.0 luminosity: 4.05192876e+02 - sys_corr_1: 2.59359890e+02 @@ -1480,26 +1480,26 @@ bins: sys_corr_4: 7.29843444e+01 sys_corr_5: 1.94900996e+02 sys_corr_6: -6.06445068e+02 - sys_corr_7: 7.05677990e+01 - sys_corr_8: 5.38357938e+01 + sys_corr_7: -7.05677990e+01 + sys_corr_8: -5.38357938e+01 sys_corr_9: -3.61493016e+01 - sys_corr_10: 2.16222707e+01 - sys_corr_11: 2.68231599e+01 - sys_corr_12: 2.30951151e+01 + sys_corr_10: -2.16222707e+01 + sys_corr_11: -2.68231599e+01 + sys_corr_12: -2.30951151e+01 sys_corr_13: -2.75608733e+00 - sys_corr_14: 1.21056529e+00 - sys_corr_15: -5.77467438e+00 - sys_corr_16: 1.24059739e+01 - sys_corr_17: 2.23088312e+01 - sys_corr_18: -1.66771733e+01 - sys_corr_19: -2.81947818e+01 - sys_corr_20: 1.71107502e+01 - sys_corr_21: 6.18641999e+00 - sys_corr_22: 1.83898609e+02 - sys_corr_23: 1.53247205e+01 - sys_corr_24: 8.99867623e+01 - sys_corr_25: -2.33552268e+01 - sys_corr_26: -8.22634616e+01 + sys_corr_14: -1.21056529e+00 + sys_corr_15: 5.77467438e+00 + sys_corr_16: -1.24059739e+01 + sys_corr_17: -2.23088312e+01 + sys_corr_18: 1.66771733e+01 + sys_corr_19: 2.81947818e+01 + sys_corr_20: -1.71107502e+01 + sys_corr_21: -6.18641999e+00 + sys_corr_22: -1.83898609e+02 + sys_corr_23: -1.53247205e+01 + sys_corr_24: -8.99867623e+01 + sys_corr_25: 2.33552268e+01 + sys_corr_26: 8.22634616e+01 sys_corr_27: 4.90869578e+01 sys_corr_28: 6.78278067e+01 sys_corr_29: -7.78289235e+01 @@ -1512,100 +1512,100 @@ bins: sys_corr_36: -4.69042448e-01 sys_corr_37: 3.14559121e+00 sys_corr_38: 1.82216078e+01 - sys_corr_39: -2.52409281e+01 + sys_corr_39: 2.52409281e+01 sys_corr_40: -5.24215700e-01 sys_corr_41: 3.98917764e+01 - sys_corr_42: 1.37067037e+01 + sys_corr_42: -1.37067037e+01 sys_corr_43: 1.15122789e+01 - sys_corr_44: -2.27770493e+01 - sys_corr_45: -1.80685856e+01 - sys_corr_46: 5.31808391e+00 - sys_corr_47: 1.24029860e+01 - sys_corr_48: 3.27906348e+01 + sys_corr_44: 2.27770493e+01 + sys_corr_45: 1.80685856e+01 + sys_corr_46: -5.31808391e+00 + sys_corr_47: -1.24029860e+01 + sys_corr_48: -3.27906348e+01 sys_corr_49: 1.69941735e+01 - sys_corr_50: -3.99549187e+01 - sys_corr_51: -3.17104658e+00 - sys_corr_52: -2.21726580e+01 - sys_corr_53: -3.37108710e+01 - sys_corr_54: -3.26885957e+01 + sys_corr_50: 3.99549187e+01 + sys_corr_51: 3.17104658e+00 + sys_corr_52: 2.21726580e+01 + sys_corr_53: 3.37108710e+01 + sys_corr_54: 3.26885957e+01 sys_corr_55: -5.43418810e+00 sys_corr_56: -8.74458559e+00 - sys_corr_57: 4.68806623e+01 + sys_corr_57: -4.68806623e+01 sys_corr_58: 6.27146474e+01 - sys_corr_59: 4.28605162e+01 + sys_corr_59: -4.28605162e+01 sys_corr_60: -1.95353471e+00 sys_corr_61: 1.41032565e+02 sys_corr_62: -6.76803314e+01 - sys_corr_63: -7.24257743e+01 + sys_corr_63: 7.24257743e+01 sys_corr_64: -6.53664541e+01 sys_corr_65: -5.94301305e+00 - sys_corr_66: -4.64091910e+01 - sys_corr_67: 2.14373576e+01 - sys_corr_68: 3.89538147e+01 - sys_corr_69: -3.76150212e+01 - sys_corr_70: -6.65219125e+01 - sys_corr_71: 4.44060743e+01 - sys_corr_72: 2.51559914e+01 - sys_corr_73: -5.84349382e+01 - sys_corr_74: 3.13850967e+01 - sys_corr_75: 5.96233714e+00 + sys_corr_66: 4.64091910e+01 + sys_corr_67: -2.14373576e+01 + sys_corr_68: -3.89538147e+01 + sys_corr_69: 3.76150212e+01 + sys_corr_70: 6.65219125e+01 + sys_corr_71: -5.84349382e+01 + sys_corr_72: -2.51559914e+01 + sys_corr_73: -4.44060743e+01 + sys_corr_74: -3.13850967e+01 + sys_corr_75: -5.96233714e+00 sys_corr_76: -9.76743244e+00 sys_corr_77: -1.26574558e+01 - sys_corr_78: -2.59616184e+00 + sys_corr_78: -7.17819960e+00 sys_corr_79: -5.35799914e+00 - sys_corr_80: 7.17819960e+00 + sys_corr_80: 2.59616184e+00 sys_corr_81: 1.65312527e+01 - sys_corr_82: 3.79774996e+00 - sys_corr_83: 1.02708332e+01 + sys_corr_82: 1.02708332e+01 + sys_corr_83: -3.79774996e+00 sys_corr_84: 9.56750556e+00 - sys_corr_85: -2.44590682e+00 - sys_corr_86: -1.72069178e+01 + sys_corr_85: 2.44590682e+00 + sys_corr_86: 1.72069178e+01 sys_corr_87: 4.69220188e+00 sys_corr_88: 1.06468615e+01 - sys_corr_89: 6.63595654e-01 - sys_corr_90: -2.48668321e+00 + sys_corr_89: -6.63595654e-01 + sys_corr_90: 2.48668321e+00 sys_corr_91: -6.09996872e-01 - sys_corr_92: -4.16452767e+00 - sys_corr_93: -3.38781769e-01 + sys_corr_92: 4.16452767e+00 + sys_corr_93: -1.32405512e-01 sys_corr_94: -4.32258326e-01 - sys_corr_95: 1.32405512e-01 + sys_corr_95: 3.38781769e-01 sys_corr_96: -1.12546220e-01 sys_corr_97: -1.65038129e+00 sys_corr_98: -6.97554381e-01 sys_corr_99: -8.50105124e-01 - sys_corr_100: 2.06425134e+00 - sys_corr_101: -2.01328270e+00 - sys_corr_102: 3.89615900e+00 - sys_corr_103: -1.28198442e+01 - sys_corr_104: -1.91778160e+00 - sys_corr_105: -4.56140035e+00 - sys_corr_106: -1.74476620e+00 - sys_corr_107: -8.28188522e-01 - sys_corr_108: 4.79027980e-02 - sys_corr_109: -6.39530490e-01 - sys_corr_110: 2.99578396e-01 - sys_corr_111: 1.45383499e-01 - sys_corr_112: -9.47414261e-03 + sys_corr_100: -1.91778160e+00 + sys_corr_101: -1.28198442e+01 + sys_corr_102: 4.56140035e+00 + sys_corr_103: -3.89615900e+00 + sys_corr_104: -2.01328270e+00 + sys_corr_105: 2.06425134e+00 + sys_corr_106: 1.74476620e+00 + sys_corr_107: 8.28188522e-01 + sys_corr_108: -1.45383499e-01 + sys_corr_109: -4.79027980e-02 + sys_corr_110: 6.39530490e-01 + sys_corr_111: 2.99578396e-01 + sys_corr_112: 9.47414261e-03 sys_corr_113: -4.83472297e-02 sys_corr_114: -5.28684288e-04 - sys_corr_115: 1.15235289e-01 - sys_corr_116: -5.97706441e-02 + sys_corr_115: -1.15235289e-01 + sys_corr_116: 5.97706441e-02 sys_corr_117: 4.86541028e-02 - sys_corr_118: 3.15001183e-02 - sys_corr_119: -5.54880192e-03 + sys_corr_118: -3.15001183e-02 + sys_corr_119: 5.54880192e-03 sys_corr_120: 3.42326143e-02 sys_corr_121: 1.01532086e-03 sys_corr_122: -5.05771800e-02 - sys_corr_123: 2.08057719e-02 + sys_corr_123: -2.08057719e-02 sys_corr_124: 3.82925424e-02 - sys_corr_125: 4.17576178e-02 + sys_corr_125: -4.17576178e-02 sys_corr_126: 2.48876416e-03 - sys_corr_127: 5.57900396e-01 - sys_corr_128: 1.85549881e-01 - sys_corr_129: -4.82801480e-02 + sys_corr_127: -5.57900396e-01 + sys_corr_128: -1.85549881e-01 + sys_corr_129: 4.82801480e-02 sys_corr_130: -9.96046162e-03 - sys_corr_131: 4.56089941e-02 - sys_corr_132: -1.78121855e-01 + sys_corr_131: -1.78121855e-01 + sys_corr_132: -4.56089941e-02 stat: 0.0 luminosity: 3.99131106e+02 - sys_corr_1: 2.49728304e+02 @@ -1614,26 +1614,26 @@ bins: sys_corr_4: 7.57198572e+01 sys_corr_5: 1.26678659e+02 sys_corr_6: -4.98702275e+02 - sys_corr_7: 9.30196333e+01 - sys_corr_8: 5.50040829e+01 + sys_corr_7: -9.30196333e+01 + sys_corr_8: -5.50040829e+01 sys_corr_9: -4.69616207e+01 - sys_corr_10: 7.79432502e+00 - sys_corr_11: 6.72134636e+01 - sys_corr_12: 6.06910880e+01 + sys_corr_10: -7.79432502e+00 + sys_corr_11: -6.72134636e+01 + sys_corr_12: -6.06910880e+01 sys_corr_13: 3.71999748e+01 - sys_corr_14: 1.04130123e+01 - sys_corr_15: 7.59042614e+00 - sys_corr_16: 8.26268283e+00 - sys_corr_17: 2.17944820e+01 - sys_corr_18: -3.66601218e+01 - sys_corr_19: -3.46074921e+01 - sys_corr_20: 2.21456996e+01 - sys_corr_21: 1.15629850e+01 - sys_corr_22: 2.33449519e+02 - sys_corr_23: 2.13574656e+01 - sys_corr_24: 6.94009203e+01 - sys_corr_25: -2.20024120e+01 - sys_corr_26: -7.00344917e+01 + sys_corr_14: -1.04130123e+01 + sys_corr_15: -7.59042614e+00 + sys_corr_16: -8.26268283e+00 + sys_corr_17: -2.17944820e+01 + sys_corr_18: 3.66601218e+01 + sys_corr_19: 3.46074921e+01 + sys_corr_20: -2.21456996e+01 + sys_corr_21: -1.15629850e+01 + sys_corr_22: -2.33449519e+02 + sys_corr_23: -2.13574656e+01 + sys_corr_24: -6.94009203e+01 + sys_corr_25: 2.20024120e+01 + sys_corr_26: 7.00344917e+01 sys_corr_27: 4.81521888e+01 sys_corr_28: 5.01501618e+01 sys_corr_29: -8.71740520e+01 @@ -1646,100 +1646,100 @@ bins: sys_corr_36: -1.54408506e+01 sys_corr_37: -1.00784721e+01 sys_corr_38: 2.27744042e+01 - sys_corr_39: 1.52103851e+01 + sys_corr_39: -1.52103851e+01 sys_corr_40: -5.97142147e+00 sys_corr_41: 1.50890059e+01 - sys_corr_42: -2.47641728e+01 + sys_corr_42: 2.47641728e+01 sys_corr_43: 1.85130728e+01 - sys_corr_44: -2.18565370e+01 - sys_corr_45: -2.69524633e+01 - sys_corr_46: -3.65166881e+01 - sys_corr_47: -3.72431253e+01 - sys_corr_48: 8.99191930e+00 + sys_corr_44: 2.18565370e+01 + sys_corr_45: 2.69524633e+01 + sys_corr_46: 3.65166881e+01 + sys_corr_47: 3.72431253e+01 + sys_corr_48: -8.99191930e+00 sys_corr_49: 7.95031487e+00 - sys_corr_50: -2.37642921e+01 - sys_corr_51: 6.53266963e+01 - sys_corr_52: -6.77067550e+01 - sys_corr_53: -2.52145462e+01 - sys_corr_54: 1.23755385e+02 + sys_corr_50: 2.37642921e+01 + sys_corr_51: -6.53266963e+01 + sys_corr_52: 6.77067550e+01 + sys_corr_53: 2.52145462e+01 + sys_corr_54: -1.23755385e+02 sys_corr_55: 3.85075453e+01 sys_corr_56: 2.98131216e+01 - sys_corr_57: -8.43380225e+00 + sys_corr_57: 8.43380225e+00 sys_corr_58: -1.55789483e+01 - sys_corr_59: 9.93364469e+01 + sys_corr_59: -9.93364469e+01 sys_corr_60: -8.05071682e+00 sys_corr_61: -7.82160188e+00 sys_corr_62: -4.75135472e+01 - sys_corr_63: -4.56835389e+01 + sys_corr_63: 4.56835389e+01 sys_corr_64: 7.37514890e+01 sys_corr_65: -3.75153586e+01 - sys_corr_66: 3.16104004e+01 - sys_corr_67: 2.13087536e+01 - sys_corr_68: -7.80195242e+01 - sys_corr_69: 8.64506805e+01 - sys_corr_70: 1.10949344e+01 - sys_corr_71: -3.27980742e+01 - sys_corr_72: -1.79631556e+00 - sys_corr_73: 3.59025585e+01 - sys_corr_74: -1.13538667e+01 - sys_corr_75: 1.24919562e+01 + sys_corr_66: -3.16104004e+01 + sys_corr_67: -2.13087536e+01 + sys_corr_68: 7.80195242e+01 + sys_corr_69: -8.64506805e+01 + sys_corr_70: -1.10949344e+01 + sys_corr_71: 3.59025585e+01 + sys_corr_72: 1.79631556e+00 + sys_corr_73: 3.27980742e+01 + sys_corr_74: 1.13538667e+01 + sys_corr_75: -1.24919562e+01 sys_corr_76: 1.23652244e+01 sys_corr_77: 6.08823301e+00 - sys_corr_78: 1.98427332e+01 + sys_corr_78: -1.10216186e+01 sys_corr_79: -4.20020755e+00 - sys_corr_80: 1.10216186e+01 + sys_corr_80: -1.98427332e+01 sys_corr_81: -8.36265233e-01 - sys_corr_82: -1.14341566e+00 - sys_corr_83: 5.45076567e+00 + sys_corr_82: 5.45076567e+00 + sys_corr_83: 1.14341566e+00 sys_corr_84: -3.83629191e+00 - sys_corr_85: 3.73805224e+00 - sys_corr_86: 1.01665989e+01 + sys_corr_85: -3.73805224e+00 + sys_corr_86: -1.01665989e+01 sys_corr_87: 5.33432811e+00 sys_corr_88: -9.89013165e+00 - sys_corr_89: 6.31341773e-01 - sys_corr_90: 1.60976453e+00 + sys_corr_89: -6.31341773e-01 + sys_corr_90: -1.60976453e+00 sys_corr_91: 2.44154505e-01 - sys_corr_92: 1.43991371e+00 - sys_corr_93: 1.74561248e-01 + sys_corr_92: -1.43991371e+00 + sys_corr_93: -1.54561344e+00 sys_corr_94: 9.85784485e-01 - sys_corr_95: 1.54561344e+00 + sys_corr_95: -1.74561248e-01 sys_corr_96: -2.10127872e-01 sys_corr_97: 4.34864889e-01 sys_corr_98: 2.48330357e-01 sys_corr_99: -3.28063355e-01 - sys_corr_100: 1.37969039e+00 - sys_corr_101: -1.14621664e+00 - sys_corr_102: 2.87737462e+00 - sys_corr_103: -6.58837753e+00 - sys_corr_104: -1.66025266e+00 - sys_corr_105: -2.01448206e+00 - sys_corr_106: -1.31123311e+00 - sys_corr_107: -8.74637843e-01 - sys_corr_108: -1.92998840e-01 - sys_corr_109: -1.57138250e-02 - sys_corr_110: 3.12239089e-01 - sys_corr_111: 7.05320998e-01 - sys_corr_112: -2.93529365e-02 + sys_corr_100: -1.66025266e+00 + sys_corr_101: -6.58837753e+00 + sys_corr_102: 2.01448206e+00 + sys_corr_103: -2.87737462e+00 + sys_corr_104: -1.14621664e+00 + sys_corr_105: 1.37969039e+00 + sys_corr_106: 1.31123311e+00 + sys_corr_107: 8.74637843e-01 + sys_corr_108: -7.05320998e-01 + sys_corr_109: 1.92998840e-01 + sys_corr_110: 1.57138250e-02 + sys_corr_111: 3.12239089e-01 + sys_corr_112: 2.93529365e-02 sys_corr_113: -6.02497058e-02 sys_corr_114: 1.76990475e-03 - sys_corr_115: -3.02467921e-03 - sys_corr_116: -4.91343572e-02 + sys_corr_115: 3.02467921e-03 + sys_corr_116: 4.91343572e-02 sys_corr_117: 3.25576874e-02 - sys_corr_118: 6.57449776e-02 - sys_corr_119: -4.04635026e-04 + sys_corr_118: -6.57449776e-02 + sys_corr_119: 4.04635026e-04 sys_corr_120: 3.46504641e-02 sys_corr_121: -1.47523920e-02 sys_corr_122: -6.38521231e-02 - sys_corr_123: 3.33182773e-02 + sys_corr_123: -3.33182773e-02 sys_corr_124: 3.37682282e-02 - sys_corr_125: 4.79589505e-02 + sys_corr_125: -4.79589505e-02 sys_corr_126: -1.84694867e-02 - sys_corr_127: 1.20300938e-01 - sys_corr_128: 1.97512594e-01 - sys_corr_129: 7.96321741e-02 + sys_corr_127: -1.20300938e-01 + sys_corr_128: -1.97512594e-01 + sys_corr_129: -7.96321741e-02 sys_corr_130: 4.37601726e-03 - sys_corr_131: 3.57320346e-02 - sys_corr_132: 7.87090946e-02 + sys_corr_131: 7.87090946e-02 + sys_corr_132: -3.57320346e-02 stat: 0.0 luminosity: 3.97102684e+02 - sys_corr_1: 2.45018931e+02 @@ -1748,26 +1748,26 @@ bins: sys_corr_4: 6.17794929e+01 sys_corr_5: 3.08896854e+01 sys_corr_6: -3.24895870e+02 - sys_corr_7: 1.19861321e+02 - sys_corr_8: 8.31545598e+01 + sys_corr_7: -1.19861321e+02 + sys_corr_8: -8.31545598e+01 sys_corr_9: -7.43489728e+01 - sys_corr_10: 1.76039075e+01 - sys_corr_11: 1.14994072e+02 - sys_corr_12: 1.20076154e+02 + sys_corr_10: -1.76039075e+01 + sys_corr_11: -1.14994072e+02 + sys_corr_12: -1.20076154e+02 sys_corr_13: 7.57923835e+01 - sys_corr_14: 1.83754575e+01 - sys_corr_15: 2.02308168e+01 - sys_corr_16: 6.99811007e+00 - sys_corr_17: 2.43533910e+01 - sys_corr_18: -4.14516440e+01 - sys_corr_19: -3.88754545e+01 - sys_corr_20: 2.67148721e+01 - sys_corr_21: 8.86476025e+00 - sys_corr_22: 3.03731957e+02 - sys_corr_23: 2.93613867e+01 - sys_corr_24: 8.76810749e+01 - sys_corr_25: -3.44921003e+01 - sys_corr_26: -1.05337803e+02 + sys_corr_14: -1.83754575e+01 + sys_corr_15: -2.02308168e+01 + sys_corr_16: -6.99811007e+00 + sys_corr_17: -2.43533910e+01 + sys_corr_18: 4.14516440e+01 + sys_corr_19: 3.88754545e+01 + sys_corr_20: -2.67148721e+01 + sys_corr_21: -8.86476025e+00 + sys_corr_22: -3.03731957e+02 + sys_corr_23: -2.93613867e+01 + sys_corr_24: -8.76810749e+01 + sys_corr_25: 3.44921003e+01 + sys_corr_26: 1.05337803e+02 sys_corr_27: 6.05179374e+01 sys_corr_28: 6.58422013e+01 sys_corr_29: -6.94579589e+01 @@ -1780,100 +1780,100 @@ bins: sys_corr_36: -2.35959985e+01 sys_corr_37: -4.93211609e+00 sys_corr_38: 1.27831564e+01 - sys_corr_39: 3.91191454e+01 + sys_corr_39: -3.91191454e+01 sys_corr_40: -3.27866065e+01 sys_corr_41: 7.89445161e+01 - sys_corr_42: -2.51841522e+00 + sys_corr_42: 2.51841522e+00 sys_corr_43: -1.11688179e+00 - sys_corr_44: 9.82791394e-01 - sys_corr_45: 1.41118268e+01 - sys_corr_46: 3.15070995e+01 - sys_corr_47: -2.31492446e+01 - sys_corr_48: 7.44198902e+01 + sys_corr_44: -9.82791394e-01 + sys_corr_45: -1.41118268e+01 + sys_corr_46: -3.15070995e+01 + sys_corr_47: 2.31492446e+01 + sys_corr_48: -7.44198902e+01 sys_corr_49: -2.88162805e+01 - sys_corr_50: -4.00931668e+01 - sys_corr_51: -1.29642689e+02 - sys_corr_52: 1.75429613e+01 - sys_corr_53: -6.07447033e+00 - sys_corr_54: -1.14451915e+02 + sys_corr_50: 4.00931668e+01 + sys_corr_51: 1.29642689e+02 + sys_corr_52: -1.75429613e+01 + sys_corr_53: 6.07447033e+00 + sys_corr_54: 1.14451915e+02 sys_corr_55: -1.61305000e+01 sys_corr_56: -1.36346341e+02 - sys_corr_57: 2.70128767e+01 + sys_corr_57: -2.70128767e+01 sys_corr_58: 1.34364223e+01 - sys_corr_59: 9.39479277e+00 + sys_corr_59: -9.39479277e+00 sys_corr_60: 2.32206154e+01 sys_corr_61: -2.15217055e+01 sys_corr_62: 2.71682089e+00 - sys_corr_63: 3.98821861e+01 + sys_corr_63: -3.98821861e+01 sys_corr_64: 2.82666344e+01 sys_corr_65: 1.06846207e+01 - sys_corr_66: 2.35786679e+01 - sys_corr_67: -2.36120005e+01 - sys_corr_68: -5.73594088e+00 - sys_corr_69: 3.42508595e+01 - sys_corr_70: 3.65242352e+01 - sys_corr_71: -1.68309035e+01 - sys_corr_72: -1.44475879e+01 - sys_corr_73: 5.63828726e+01 - sys_corr_74: -3.03268048e+01 - sys_corr_75: 4.43617072e+00 + sys_corr_66: -2.35786679e+01 + sys_corr_67: 2.36120005e+01 + sys_corr_68: 5.73594088e+00 + sys_corr_69: -3.42508595e+01 + sys_corr_70: -3.65242352e+01 + sys_corr_71: 5.63828726e+01 + sys_corr_72: 1.44475879e+01 + sys_corr_73: 1.68309035e+01 + sys_corr_74: 3.03268048e+01 + sys_corr_75: -4.43617072e+00 sys_corr_76: 2.74202965e+00 sys_corr_77: 8.97122939e+00 - sys_corr_78: -1.87611254e+00 + sys_corr_78: -1.58231384e+00 sys_corr_79: -5.64894351e-01 - sys_corr_80: 1.58231384e+00 + sys_corr_80: 1.87611254e+00 sys_corr_81: -1.97276853e+00 - sys_corr_82: 2.97712417e+00 - sys_corr_83: 5.61894305e-01 + sys_corr_82: 5.61894305e-01 + sys_corr_83: -2.97712417e+00 sys_corr_84: -5.40726355e-01 - sys_corr_85: 2.64357228e+00 - sys_corr_86: 1.09715391e+01 + sys_corr_85: -2.64357228e+00 + sys_corr_86: -1.09715391e+01 sys_corr_87: 7.52644073e+00 sys_corr_88: -1.03065205e+01 - sys_corr_89: -1.35059961e-01 - sys_corr_90: 2.63731054e+00 + sys_corr_89: 1.35059961e-01 + sys_corr_90: -2.63731054e+00 sys_corr_91: -1.26789791e+00 - sys_corr_92: 3.91473902e+00 - sys_corr_93: 4.66899413e-01 + sys_corr_92: -3.91473902e+00 + sys_corr_93: -1.00382199e+00 sys_corr_94: 1.33759948e+00 - sys_corr_95: 1.00382199e+00 + sys_corr_95: -4.66899413e-01 sys_corr_96: 9.25330747e-02 sys_corr_97: 1.13734465e+00 sys_corr_98: 4.38711159e-01 sys_corr_99: 6.27816209e-01 - sys_corr_100: 9.26297143e-02 - sys_corr_101: 1.53375290e-02 - sys_corr_102: -1.88225668e-01 - sys_corr_103: 3.34539733e+00 - sys_corr_104: 2.51441386e-01 - sys_corr_105: 1.51444792e+00 - sys_corr_106: 4.13954293e-02 - sys_corr_107: -5.88808169e-02 - sys_corr_108: 1.00266524e-01 - sys_corr_109: 8.05788933e-02 - sys_corr_110: -1.27665224e-01 - sys_corr_111: -1.67613518e-01 - sys_corr_112: -3.88421321e-02 + sys_corr_100: 2.51441386e-01 + sys_corr_101: 3.34539733e+00 + sys_corr_102: -1.51444792e+00 + sys_corr_103: 1.88225668e-01 + sys_corr_104: 1.53375290e-02 + sys_corr_105: 9.26297143e-02 + sys_corr_106: -4.13954293e-02 + sys_corr_107: 5.88808169e-02 + sys_corr_108: 1.67613518e-01 + sys_corr_109: -1.00266524e-01 + sys_corr_110: -8.05788933e-02 + sys_corr_111: -1.27665224e-01 + sys_corr_112: 3.88421321e-02 sys_corr_113: 1.45689614e-02 sys_corr_114: -2.06254703e-04 - sys_corr_115: 3.82465665e-03 - sys_corr_116: -6.77702197e-02 + sys_corr_115: -3.82465665e-03 + sys_corr_116: 6.77702197e-02 sys_corr_117: 3.20989513e-02 - sys_corr_118: 1.44524200e-02 - sys_corr_119: 5.53890344e-03 + sys_corr_118: -1.44524200e-02 + sys_corr_119: -5.53890344e-03 sys_corr_120: 3.86700592e-02 sys_corr_121: -4.53463149e-03 sys_corr_122: -1.84858564e-02 - sys_corr_123: 1.18663536e-02 + sys_corr_123: -1.18663536e-02 sys_corr_124: 1.07679585e-01 - sys_corr_125: 3.38754379e-02 + sys_corr_125: -3.38754379e-02 sys_corr_126: -3.36679742e-03 - sys_corr_127: -8.97127578e-02 - sys_corr_128: 1.07189439e-02 - sys_corr_129: -4.46416915e-02 + sys_corr_127: 8.97127578e-02 + sys_corr_128: -1.07189439e-02 + sys_corr_129: 4.46416915e-02 sys_corr_130: -9.24892816e-03 - sys_corr_131: 3.24452979e-02 - sys_corr_132: -3.95183824e-02 + sys_corr_131: -3.95183824e-02 + sys_corr_132: -3.24452979e-02 stat: 0.0 luminosity: 3.92326968e+02 - sys_corr_1: 2.27127469e+02 @@ -1882,26 +1882,26 @@ bins: sys_corr_4: 4.82096869e+01 sys_corr_5: -2.87507981e+01 sys_corr_6: -2.10235739e+02 - sys_corr_7: 1.42618891e+02 - sys_corr_8: 9.66513783e+01 + sys_corr_7: -1.42618891e+02 + sys_corr_8: -9.66513783e+01 sys_corr_9: -8.19778576e+01 - sys_corr_10: 2.36136251e+01 - sys_corr_11: 1.41696997e+02 - sys_corr_12: 1.70065373e+02 + sys_corr_10: -2.36136251e+01 + sys_corr_11: -1.41696997e+02 + sys_corr_12: -1.70065373e+02 sys_corr_13: 1.07740667e+02 - sys_corr_14: 2.65116694e+01 - sys_corr_15: 2.98494230e+01 - sys_corr_16: 4.42241350e+00 - sys_corr_17: 1.81532785e+01 - sys_corr_18: -4.27286929e+01 - sys_corr_19: -3.27095364e+01 - sys_corr_20: 3.04564929e+01 - sys_corr_21: 1.76009409e+01 - sys_corr_22: 2.98246881e+02 - sys_corr_23: 2.73395710e+01 - sys_corr_24: 3.54332126e+01 - sys_corr_25: -2.30167334e+01 - sys_corr_26: -7.08925569e+01 + sys_corr_14: -2.65116694e+01 + sys_corr_15: -2.98494230e+01 + sys_corr_16: -4.42241350e+00 + sys_corr_17: -1.81532785e+01 + sys_corr_18: 4.27286929e+01 + sys_corr_19: 3.27095364e+01 + sys_corr_20: -3.04564929e+01 + sys_corr_21: -1.76009409e+01 + sys_corr_22: -2.98246881e+02 + sys_corr_23: -2.73395710e+01 + sys_corr_24: -3.54332126e+01 + sys_corr_25: 2.30167334e+01 + sys_corr_26: 7.08925569e+01 sys_corr_27: 4.39195475e+01 sys_corr_28: 3.47296558e+01 sys_corr_29: -4.64543704e+01 @@ -1914,100 +1914,100 @@ bins: sys_corr_36: 1.79797406e+00 sys_corr_37: 1.42586998e+01 sys_corr_38: -4.70291970e+00 - sys_corr_39: -1.20760400e+01 + sys_corr_39: 1.20760400e+01 sys_corr_40: -5.40825632e+01 sys_corr_41: -1.84974586e+01 - sys_corr_42: 2.08955090e+00 + sys_corr_42: -2.08955090e+00 sys_corr_43: 2.77467644e+01 - sys_corr_44: 3.41531197e+01 - sys_corr_45: -4.23402853e+01 - sys_corr_46: 4.44010324e+01 - sys_corr_47: -1.24013924e+01 - sys_corr_48: -9.27119831e+00 + sys_corr_44: -3.41531197e+01 + sys_corr_45: 4.23402853e+01 + sys_corr_46: -4.44010324e+01 + sys_corr_47: 1.24013924e+01 + sys_corr_48: 9.27119831e+00 sys_corr_49: 2.62079620e+01 - sys_corr_50: -1.21681026e+00 - sys_corr_51: -4.29022054e+01 - sys_corr_52: 7.03049603e+01 - sys_corr_53: 2.01754545e+01 - sys_corr_54: -5.91122970e+00 + sys_corr_50: 1.21681026e+00 + sys_corr_51: 4.29022054e+01 + sys_corr_52: -7.03049603e+01 + sys_corr_53: -2.01754545e+01 + sys_corr_54: 5.91122970e+00 sys_corr_55: -5.34259859e+01 sys_corr_56: 1.83725582e+02 - sys_corr_57: 2.93672108e+01 + sys_corr_57: -2.93672108e+01 sys_corr_58: 1.04743243e+00 - sys_corr_59: -1.01037037e+02 + sys_corr_59: 1.01037037e+02 sys_corr_60: -5.88831889e+00 sys_corr_61: 2.88698920e+00 sys_corr_62: -2.70232562e+00 - sys_corr_63: -6.03436097e+01 + sys_corr_63: 6.03436097e+01 sys_corr_64: 2.01757730e+00 sys_corr_65: -1.90225896e+00 - sys_corr_66: 5.79853872e+01 - sys_corr_67: -1.82935800e+01 - sys_corr_68: 5.09257305e+01 - sys_corr_69: 6.70098937e+00 - sys_corr_70: 2.36657923e+01 - sys_corr_71: -7.68074674e-01 - sys_corr_72: 1.30915811e+00 - sys_corr_73: 6.04568619e+01 - sys_corr_74: -1.06481125e+00 - sys_corr_75: 4.18182513e+00 + sys_corr_66: -5.79853872e+01 + sys_corr_67: 1.82935800e+01 + sys_corr_68: -5.09257305e+01 + sys_corr_69: -6.70098937e+00 + sys_corr_70: -2.36657923e+01 + sys_corr_71: 6.04568619e+01 + sys_corr_72: -1.30915811e+00 + sys_corr_73: 7.68074674e-01 + sys_corr_74: 1.06481125e+00 + sys_corr_75: -4.18182513e+00 sys_corr_76: 4.09576980e+00 sys_corr_77: 1.54703495e+00 - sys_corr_78: -7.71209709e+00 + sys_corr_78: -1.94928588e+00 sys_corr_79: -2.77678774e+00 - sys_corr_80: 1.94928588e+00 + sys_corr_80: 7.71209709e+00 sys_corr_81: -2.75281505e+00 - sys_corr_82: -1.01040805e+00 - sys_corr_83: 2.38682436e+00 + sys_corr_82: 2.38682436e+00 + sys_corr_83: 1.01040805e+00 sys_corr_84: -2.16340226e+00 - sys_corr_85: 1.14818155e+00 - sys_corr_86: 9.48850008e+00 + sys_corr_85: -1.14818155e+00 + sys_corr_86: -9.48850008e+00 sys_corr_87: -1.35524293e+00 sys_corr_88: -4.37336880e+00 - sys_corr_89: 8.75781606e-01 - sys_corr_90: 1.65579509e+00 + sys_corr_89: -8.75781606e-01 + sys_corr_90: -1.65579509e+00 sys_corr_91: -3.80597779e-01 - sys_corr_92: 1.65913846e-02 - sys_corr_93: 1.77667231e-01 + sys_corr_92: -1.65913846e-02 + sys_corr_93: -4.45793553e-01 sys_corr_94: 3.39775820e-01 - sys_corr_95: 4.45793553e-01 + sys_corr_95: -1.77667231e-01 sys_corr_96: 4.27799546e-02 sys_corr_97: 1.10640100e+00 sys_corr_98: 5.15326800e-02 sys_corr_99: 2.76046213e-01 - sys_corr_100: 6.79935550e-01 - sys_corr_101: -3.15270965e-01 - sys_corr_102: 7.58748036e-01 - sys_corr_103: -6.87561510e-01 - sys_corr_104: -6.37325692e-01 - sys_corr_105: -4.11142430e-02 - sys_corr_106: -4.45328957e-01 - sys_corr_107: -6.17801747e-01 - sys_corr_108: -1.10994708e-01 - sys_corr_109: 1.92861557e-01 - sys_corr_110: 1.73486460e-01 - sys_corr_111: -2.44988024e-01 - sys_corr_112: 3.30137892e-02 + sys_corr_100: -6.37325692e-01 + sys_corr_101: -6.87561510e-01 + sys_corr_102: 4.11142430e-02 + sys_corr_103: -7.58748036e-01 + sys_corr_104: -3.15270965e-01 + sys_corr_105: 6.79935550e-01 + sys_corr_106: 4.45328957e-01 + sys_corr_107: 6.17801747e-01 + sys_corr_108: 2.44988024e-01 + sys_corr_109: 1.10994708e-01 + sys_corr_110: -1.92861557e-01 + sys_corr_111: 1.73486460e-01 + sys_corr_112: -3.30137892e-02 sys_corr_113: 6.45203775e-02 sys_corr_114: 8.23561246e-04 - sys_corr_115: -9.34327411e-02 - sys_corr_116: -8.83084269e-03 + sys_corr_115: 9.34327411e-02 + sys_corr_116: 8.83084269e-03 sys_corr_117: 1.62109642e-02 - sys_corr_118: -1.04060952e-01 - sys_corr_119: -9.12952566e-03 + sys_corr_118: 1.04060952e-01 + sys_corr_119: 9.12952566e-03 sys_corr_120: 1.96809956e-02 sys_corr_121: -5.56941565e-03 sys_corr_122: -1.59931435e-02 - sys_corr_123: 7.08996264e-03 + sys_corr_123: -7.08996264e-03 sys_corr_124: 3.01771278e-02 - sys_corr_125: 6.91658967e-03 + sys_corr_125: -6.91658967e-03 sys_corr_126: 7.40314298e-03 - sys_corr_127: -2.78462293e-02 - sys_corr_128: 1.35234769e-01 - sys_corr_129: 1.09256894e-01 + sys_corr_127: 2.78462293e-02 + sys_corr_128: -1.35234769e-01 + sys_corr_129: -1.09256894e-01 sys_corr_130: 1.96230755e-04 - sys_corr_131: 4.74961068e-03 - sys_corr_132: 8.65735464e-03 + sys_corr_131: 8.65735464e-03 + sys_corr_132: -4.74961068e-03 stat: 0.0 luminosity: 3.85649990e+02 - sys_corr_1: 2.09840538e+02 @@ -2016,26 +2016,26 @@ bins: sys_corr_4: 3.88556382e+01 sys_corr_5: -6.92177156e+01 sys_corr_6: -1.52800909e+02 - sys_corr_7: 1.57605101e+02 - sys_corr_8: 1.03580033e+02 + sys_corr_7: -1.57605101e+02 + sys_corr_8: -1.03580033e+02 sys_corr_9: -9.84204714e+01 - sys_corr_10: 2.73495301e+01 - sys_corr_11: 1.65713813e+02 - sys_corr_12: 2.09677450e+02 + sys_corr_10: -2.73495301e+01 + sys_corr_11: -1.65713813e+02 + sys_corr_12: -2.09677450e+02 sys_corr_13: 1.31385577e+02 - sys_corr_14: 3.79139980e+01 - sys_corr_15: 3.53585834e+01 - sys_corr_16: 7.21637264e-01 - sys_corr_17: 1.17427520e+01 - sys_corr_18: -4.20641574e+01 - sys_corr_19: -2.24472241e+01 - sys_corr_20: 2.44303209e+01 - sys_corr_21: 2.05861017e+01 - sys_corr_22: 2.75964386e+02 - sys_corr_23: 3.34935191e+01 - sys_corr_24: -5.56932931e+00 - sys_corr_25: -1.27542668e+01 - sys_corr_26: -4.08177180e+01 + sys_corr_14: -3.79139980e+01 + sys_corr_15: -3.53585834e+01 + sys_corr_16: -7.21637264e-01 + sys_corr_17: -1.17427520e+01 + sys_corr_18: 4.20641574e+01 + sys_corr_19: 2.24472241e+01 + sys_corr_20: -2.44303209e+01 + sys_corr_21: -2.05861017e+01 + sys_corr_22: -2.75964386e+02 + sys_corr_23: -3.34935191e+01 + sys_corr_24: 5.56932931e+00 + sys_corr_25: 1.27542668e+01 + sys_corr_26: 4.08177180e+01 sys_corr_27: 2.14616520e+01 sys_corr_28: 2.36096089e+01 sys_corr_29: -3.67435786e+01 @@ -2048,100 +2048,100 @@ bins: sys_corr_36: 1.07212226e+01 sys_corr_37: -4.51487894e+00 sys_corr_38: -1.04901761e+01 - sys_corr_39: -2.50912718e+01 + sys_corr_39: 2.50912718e+01 sys_corr_40: 2.80201340e+01 sys_corr_41: -4.86957774e+01 - sys_corr_42: 2.70121351e+01 + sys_corr_42: -2.70121351e+01 sys_corr_43: 6.98413423e+00 - sys_corr_44: 6.64472538e+00 - sys_corr_45: 1.23855967e+01 - sys_corr_46: -2.40171053e+01 - sys_corr_47: 3.13742716e+01 - sys_corr_48: -4.55751839e+01 + sys_corr_44: -6.64472538e+00 + sys_corr_45: -1.23855967e+01 + sys_corr_46: 2.40171053e+01 + sys_corr_47: -3.13742716e+01 + sys_corr_48: 4.55751839e+01 sys_corr_49: -1.62284682e+01 - sys_corr_50: 2.90597037e+00 - sys_corr_51: 6.32298643e+01 - sys_corr_52: 1.20444256e+01 - sys_corr_53: 6.09034645e+01 - sys_corr_54: -1.77910472e-01 + sys_corr_50: -2.90597037e+00 + sys_corr_51: -6.32298643e+01 + sys_corr_52: -1.20444256e+01 + sys_corr_53: -6.09034645e+01 + sys_corr_54: 1.77910472e-01 sys_corr_55: 1.83899149e+01 sys_corr_56: -6.56540385e+00 - sys_corr_57: 6.28276755e+01 + sys_corr_57: -6.28276755e+01 sys_corr_58: 1.54443416e+01 - sys_corr_59: 8.05439404e+00 + sys_corr_59: -8.05439404e+00 sys_corr_60: 1.29673077e+01 sys_corr_61: -1.11011563e+02 sys_corr_62: -7.15014718e+01 - sys_corr_63: 2.22459377e+01 + sys_corr_63: -2.22459377e+01 sys_corr_64: 4.32985590e+01 sys_corr_65: 1.38974932e+02 - sys_corr_66: -3.45922044e+01 - sys_corr_67: -6.02701300e+01 - sys_corr_68: 1.46936638e+01 - sys_corr_69: -1.37553122e+01 - sys_corr_70: -4.38832681e+01 - sys_corr_71: -8.38626219e+00 - sys_corr_72: -1.80651266e+00 - sys_corr_73: -6.85746427e+01 - sys_corr_74: -1.40504366e+00 - sys_corr_75: -4.09696570e+00 + sys_corr_66: 3.45922044e+01 + sys_corr_67: 6.02701300e+01 + sys_corr_68: -1.46936638e+01 + sys_corr_69: 1.37553122e+01 + sys_corr_70: 4.38832681e+01 + sys_corr_71: -6.85746427e+01 + sys_corr_72: 1.80651266e+00 + sys_corr_73: 8.38626219e+00 + sys_corr_74: 1.40504366e+00 + sys_corr_75: 4.09696570e+00 sys_corr_76: -1.11037862e+01 sys_corr_77: 1.33238061e+00 - sys_corr_78: -3.34756861e+00 + sys_corr_78: -1.02830704e-01 sys_corr_79: 4.59865466e+00 - sys_corr_80: 1.02830704e-01 + sys_corr_80: 3.34756861e+00 sys_corr_81: 6.05748596e+00 - sys_corr_82: 5.04221086e-01 - sys_corr_83: 2.48454417e+00 + sys_corr_82: 2.48454417e+00 + sys_corr_83: -5.04221086e-01 sys_corr_84: 3.11351087e+00 - sys_corr_85: -1.53695320e-01 - sys_corr_86: -1.54623185e+01 + sys_corr_85: 1.53695320e-01 + sys_corr_86: 1.54623185e+01 sys_corr_87: 4.27969082e+00 sys_corr_88: 1.03257461e+01 - sys_corr_89: 5.28522859e-01 - sys_corr_90: -4.98342305e-01 + sys_corr_89: -5.28522859e-01 + sys_corr_90: 4.98342305e-01 sys_corr_91: 5.69619668e-01 - sys_corr_92: 8.91978424e+00 - sys_corr_93: 3.40253288e-01 + sys_corr_92: -8.91978424e+00 + sys_corr_93: -2.72270373e-01 sys_corr_94: 1.20090570e+00 - sys_corr_95: 2.72270373e-01 + sys_corr_95: -3.40253288e-01 sys_corr_96: 1.58024314e-01 sys_corr_97: 8.68749207e-01 sys_corr_98: 1.66693426e-01 sys_corr_99: 4.68345725e-01 - sys_corr_100: 9.01043561e-02 - sys_corr_101: 7.62038363e-02 - sys_corr_102: -2.15149561e-02 - sys_corr_103: 1.62290956e-01 - sys_corr_104: -5.58081903e-02 - sys_corr_105: 3.49843285e-01 - sys_corr_106: 6.57985640e-02 - sys_corr_107: -1.09838164e-01 - sys_corr_108: 5.09063180e-02 - sys_corr_109: 3.14052557e-03 - sys_corr_110: 1.67385903e-02 - sys_corr_111: -2.00039217e-01 - sys_corr_112: -5.50554799e-02 + sys_corr_100: -5.58081903e-02 + sys_corr_101: 1.62290956e-01 + sys_corr_102: -3.49843285e-01 + sys_corr_103: 2.15149561e-02 + sys_corr_104: 7.62038363e-02 + sys_corr_105: 9.01043561e-02 + sys_corr_106: -6.57985640e-02 + sys_corr_107: 1.09838164e-01 + sys_corr_108: 2.00039217e-01 + sys_corr_109: -5.09063180e-02 + sys_corr_110: -3.14052557e-03 + sys_corr_111: 1.67385903e-02 + sys_corr_112: 5.50554799e-02 sys_corr_113: 4.24599405e-02 sys_corr_114: -3.48830038e-07 - sys_corr_115: -4.57195967e-02 - sys_corr_116: 4.46890916e-02 + sys_corr_115: 4.57195967e-02 + sys_corr_116: -4.46890916e-02 sys_corr_117: -3.70507240e-02 - sys_corr_118: -4.41802594e-02 - sys_corr_119: 2.01891957e-03 + sys_corr_118: 4.41802594e-02 + sys_corr_119: -2.01891957e-03 sys_corr_120: -2.37398324e-02 sys_corr_121: 2.48758014e-03 sys_corr_122: 2.12717450e-02 - sys_corr_123: -7.52598080e-03 + sys_corr_123: 7.52598080e-03 sys_corr_124: -4.16398067e-02 - sys_corr_125: -2.72371903e-02 + sys_corr_125: 2.72371903e-02 sys_corr_126: -6.40327928e-03 - sys_corr_127: 1.69544487e-01 - sys_corr_128: 1.63580347e-02 - sys_corr_129: -6.55694381e-02 + sys_corr_127: -1.69544487e-01 + sys_corr_128: -1.63580347e-02 + sys_corr_129: 6.55694381e-02 sys_corr_130: 3.82391325e-03 - sys_corr_131: -1.45059238e-02 - sys_corr_132: 1.53362961e-02 + sys_corr_131: 1.53362961e-02 + sys_corr_132: 1.45059238e-02 stat: 0.0 luminosity: 3.84183272e+02 - sys_corr_1: 1.88534554e+02 @@ -2150,26 +2150,26 @@ bins: sys_corr_4: 1.88181692e+01 sys_corr_5: -9.85697496e+01 sys_corr_6: -9.60965742e+01 - sys_corr_7: 1.82504019e+02 - sys_corr_8: 1.20696074e+02 + sys_corr_7: -1.82504019e+02 + sys_corr_8: -1.20696074e+02 sys_corr_9: -1.16523849e+02 - sys_corr_10: 2.73080095e+01 - sys_corr_11: 1.86547242e+02 - sys_corr_12: 2.44455940e+02 + sys_corr_10: -2.73080095e+01 + sys_corr_11: -1.86547242e+02 + sys_corr_12: -2.44455940e+02 sys_corr_13: 1.50435250e+02 - sys_corr_14: 4.28654112e+01 - sys_corr_15: 4.25403066e+01 - sys_corr_16: 1.47012182e+00 - sys_corr_17: 2.01327335e+00 - sys_corr_18: -4.69246637e+01 - sys_corr_19: -2.47020054e+01 - sys_corr_20: 2.70963597e+01 - sys_corr_21: 2.11034390e+01 - sys_corr_22: 2.53280162e+02 - sys_corr_23: 3.65030452e+01 - sys_corr_24: -2.54646417e+01 - sys_corr_25: -1.18836944e+00 - sys_corr_26: -1.41785029e+01 + sys_corr_14: -4.28654112e+01 + sys_corr_15: -4.25403066e+01 + sys_corr_16: -1.47012182e+00 + sys_corr_17: -2.01327335e+00 + sys_corr_18: 4.69246637e+01 + sys_corr_19: 2.47020054e+01 + sys_corr_20: -2.70963597e+01 + sys_corr_21: -2.11034390e+01 + sys_corr_22: -2.53280162e+02 + sys_corr_23: -3.65030452e+01 + sys_corr_24: 2.54646417e+01 + sys_corr_25: 1.18836944e+00 + sys_corr_26: 1.41785029e+01 sys_corr_27: 8.62244147e+00 sys_corr_28: 2.42308078e+01 sys_corr_29: -3.97915759e+01 @@ -2182,100 +2182,100 @@ bins: sys_corr_36: 2.64199768e+00 sys_corr_37: 1.53913796e+01 sys_corr_38: 6.07730796e-01 - sys_corr_39: -7.63530355e+00 + sys_corr_39: 7.63530355e+00 sys_corr_40: 2.41927123e+01 sys_corr_41: -1.10200348e+01 - sys_corr_42: 1.22630771e+01 + sys_corr_42: -1.22630771e+01 sys_corr_43: 2.39009287e+00 - sys_corr_44: 1.97621490e+01 - sys_corr_45: 2.10728945e+01 - sys_corr_46: 5.10625604e+00 - sys_corr_47: 1.67214085e+00 - sys_corr_48: -5.01737883e+01 + sys_corr_44: -1.97621490e+01 + sys_corr_45: -2.10728945e+01 + sys_corr_46: -5.10625604e+00 + sys_corr_47: -1.67214085e+00 + sys_corr_48: 5.01737883e+01 sys_corr_49: -2.35210522e+01 - sys_corr_50: 1.56589673e+01 - sys_corr_51: 4.48532328e+01 - sys_corr_52: 2.91931783e+00 - sys_corr_53: 3.13103254e+01 - sys_corr_54: 8.69653237e+00 + sys_corr_50: -1.56589673e+01 + sys_corr_51: -4.48532328e+01 + sys_corr_52: -2.91931783e+00 + sys_corr_53: -3.13103254e+01 + sys_corr_54: -8.69653237e+00 sys_corr_55: 1.11946375e+01 sys_corr_56: -6.04168163e+01 - sys_corr_57: 3.60466080e+01 + sys_corr_57: -3.60466080e+01 sys_corr_58: 2.49311267e+01 - sys_corr_59: -1.98899192e+01 + sys_corr_59: 1.98899192e+01 sys_corr_60: 4.14098999e+01 sys_corr_61: -3.40106225e+01 sys_corr_62: 1.56657327e+02 - sys_corr_63: -7.50470209e+01 + sys_corr_63: 7.50470209e+01 sys_corr_64: 1.33209065e+01 sys_corr_65: -5.83244706e+01 - sys_corr_66: 4.24668774e+00 - sys_corr_67: 1.15603715e+02 - sys_corr_68: 6.27730946e+00 - sys_corr_69: -3.96477258e+01 - sys_corr_70: 2.21998046e+01 - sys_corr_71: -1.95808069e+01 - sys_corr_72: -1.40067058e+00 - sys_corr_73: -4.84584605e+01 - sys_corr_74: 2.75422123e+01 - sys_corr_75: -8.35642842e+00 + sys_corr_66: -4.24668774e+00 + sys_corr_67: -1.15603715e+02 + sys_corr_68: -6.27730946e+00 + sys_corr_69: 3.96477258e+01 + sys_corr_70: -2.21998046e+01 + sys_corr_71: -4.84584605e+01 + sys_corr_72: 1.40067058e+00 + sys_corr_73: 1.95808069e+01 + sys_corr_74: -2.75422123e+01 + sys_corr_75: 8.35642842e+00 sys_corr_76: -1.66457756e+01 sys_corr_77: -5.75525206e+00 - sys_corr_78: 7.42903017e+00 + sys_corr_78: -4.82444883e-01 sys_corr_79: 5.13044962e+00 - sys_corr_80: 4.82444883e-01 + sys_corr_80: -7.42903017e+00 sys_corr_81: -5.21570709e+00 - sys_corr_82: 5.34011211e+00 - sys_corr_83: 4.92089839e-01 + sys_corr_82: 4.92089839e-01 + sys_corr_83: -5.34011211e+00 sys_corr_84: -1.78721243e+00 - sys_corr_85: -6.95919991e+00 - sys_corr_86: -3.34092181e+00 + sys_corr_85: 6.95919991e+00 + sys_corr_86: 3.34092181e+00 sys_corr_87: 1.75178239e+01 sys_corr_88: 6.22363184e+00 - sys_corr_89: -2.42544993e-02 - sys_corr_90: 2.23226066e+00 + sys_corr_89: 2.42544993e-02 + sys_corr_90: -2.23226066e+00 sys_corr_91: 2.50035287e+00 - sys_corr_92: 6.95817612e+00 - sys_corr_93: 1.13681664e-01 + sys_corr_92: -6.95817612e+00 + sys_corr_93: 1.29730899e+00 sys_corr_94: -3.05249622e-02 - sys_corr_95: -1.29730899e+00 + sys_corr_95: -1.13681664e-01 sys_corr_96: 3.25410190e-01 sys_corr_97: 9.49598215e-01 sys_corr_98: 2.02928290e-01 sys_corr_99: 4.94596979e-01 - sys_corr_100: -7.74634209e-01 - sys_corr_101: 6.28051569e-01 - sys_corr_102: -8.92499412e-01 - sys_corr_103: 2.95173374e+00 - sys_corr_104: 7.45645506e-01 - sys_corr_105: 9.03733635e-01 - sys_corr_106: 5.64645068e-01 - sys_corr_107: 4.11114974e-01 - sys_corr_108: -1.40478400e-01 - sys_corr_109: -4.94581249e-02 - sys_corr_110: -4.45612650e-01 - sys_corr_111: -3.82171503e-01 - sys_corr_112: 5.49613118e-02 + sys_corr_100: 7.45645506e-01 + sys_corr_101: 2.95173374e+00 + sys_corr_102: -9.03733635e-01 + sys_corr_103: 8.92499412e-01 + sys_corr_104: 6.28051569e-01 + sys_corr_105: -7.74634209e-01 + sys_corr_106: -5.64645068e-01 + sys_corr_107: -4.11114974e-01 + sys_corr_108: 3.82171503e-01 + sys_corr_109: 1.40478400e-01 + sys_corr_110: 4.94581249e-02 + sys_corr_111: -4.45612650e-01 + sys_corr_112: -5.49613118e-02 sys_corr_113: -6.97577286e-02 sys_corr_114: 7.92159579e-04 - sys_corr_115: -1.37247498e-01 - sys_corr_116: 8.58698406e-02 + sys_corr_115: 1.37247498e-01 + sys_corr_116: -8.58698406e-02 sys_corr_117: -4.62799285e-02 - sys_corr_118: -1.32420554e-01 - sys_corr_119: -4.56392213e-03 + sys_corr_118: 1.32420554e-01 + sys_corr_119: 4.56392213e-03 sys_corr_120: -5.02244924e-02 sys_corr_121: 1.25557440e-02 sys_corr_122: 8.98756634e-02 - sys_corr_123: -4.90228884e-02 + sys_corr_123: 4.90228884e-02 sys_corr_124: -6.44190322e-02 - sys_corr_125: -6.68866435e-02 + sys_corr_125: 6.68866435e-02 sys_corr_126: 1.25530620e-02 - sys_corr_127: -2.13677547e-01 - sys_corr_128: 6.69580232e-02 - sys_corr_129: -4.40963392e-02 + sys_corr_127: 2.13677547e-01 + sys_corr_128: -6.69580232e-02 + sys_corr_129: 4.40963392e-02 sys_corr_130: 1.22065765e-02 - sys_corr_131: -5.13448149e-02 - sys_corr_132: 8.32628226e-02 + sys_corr_131: 8.32628226e-02 + sys_corr_132: 5.13448149e-02 stat: 0.0 luminosity: 3.71965572e+02 - sys_corr_1: 1.79829501e+02 @@ -2284,26 +2284,26 @@ bins: sys_corr_4: 2.32990499e-01 sys_corr_5: -1.21690882e+02 sys_corr_6: -8.65273787e+01 - sys_corr_7: 2.18795107e+02 - sys_corr_8: 1.42881033e+02 + sys_corr_7: -2.18795107e+02 + sys_corr_8: -1.42881033e+02 sys_corr_9: -1.50284555e+02 - sys_corr_10: 3.21063375e+01 - sys_corr_11: 2.30340975e+02 - sys_corr_12: 3.20458427e+02 + sys_corr_10: -3.21063375e+01 + sys_corr_11: -2.30340975e+02 + sys_corr_12: -3.20458427e+02 sys_corr_13: 1.97320033e+02 - sys_corr_14: 5.97479331e+01 - sys_corr_15: 5.47085949e+01 - sys_corr_16: -1.11957783e+01 - sys_corr_17: -8.99168519e+00 - sys_corr_18: -4.27947833e+01 - sys_corr_19: -1.10787993e+01 - sys_corr_20: 2.89125517e+01 - sys_corr_21: 2.49701230e+01 - sys_corr_22: 2.30446160e+02 - sys_corr_23: 3.47121066e+01 - sys_corr_24: -9.70839915e+01 - sys_corr_25: -6.49832820e+00 - sys_corr_26: -1.61034560e+01 + sys_corr_14: -5.97479331e+01 + sys_corr_15: -5.47085949e+01 + sys_corr_16: 1.11957783e+01 + sys_corr_17: 8.99168519e+00 + sys_corr_18: 4.27947833e+01 + sys_corr_19: 1.10787993e+01 + sys_corr_20: -2.89125517e+01 + sys_corr_21: -2.49701230e+01 + sys_corr_22: -2.30446160e+02 + sys_corr_23: -3.47121066e+01 + sys_corr_24: 9.70839915e+01 + sys_corr_25: 6.49832820e+00 + sys_corr_26: 1.61034560e+01 sys_corr_27: -1.55474108e+01 sys_corr_28: 2.54762520e+01 sys_corr_29: -2.52161163e+01 @@ -2316,100 +2316,100 @@ bins: sys_corr_36: 8.44811980e-01 sys_corr_37: -6.20003530e+00 sys_corr_38: -4.79345221e+00 - sys_corr_39: -2.16525459e+01 + sys_corr_39: 2.16525459e+01 sys_corr_40: 1.50151759e+01 sys_corr_41: -3.01730621e+01 - sys_corr_42: -8.02116779e+00 + sys_corr_42: 8.02116779e+00 sys_corr_43: -3.51162171e+01 - sys_corr_44: 3.79103157e+01 - sys_corr_45: -2.99762495e+01 - sys_corr_46: -2.05830039e+01 - sys_corr_47: 1.33967041e+01 - sys_corr_48: -2.01256897e+01 + sys_corr_44: -3.79103157e+01 + sys_corr_45: 2.99762495e+01 + sys_corr_46: 2.05830039e+01 + sys_corr_47: -1.33967041e+01 + sys_corr_48: 2.01256897e+01 sys_corr_49: 6.56756851e+00 - sys_corr_50: 4.09886679e+01 - sys_corr_51: -1.03754372e+01 - sys_corr_52: -1.91242159e+01 - sys_corr_53: 1.43376812e+02 - sys_corr_54: 1.21268166e+01 + sys_corr_50: -4.09886679e+01 + sys_corr_51: 1.03754372e+01 + sys_corr_52: 1.91242159e+01 + sys_corr_53: -1.43376812e+02 + sys_corr_54: -1.21268166e+01 sys_corr_55: -2.53627480e+01 sys_corr_56: -4.59166839e+00 - sys_corr_57: -6.72237608e+01 - sys_corr_58: -6.47378231e+01 - sys_corr_59: 6.27502497e+01 + sys_corr_57: 6.72237608e+01 + sys_corr_58: -6.47378230e+01 + sys_corr_59: -6.27502497e+01 sys_corr_60: -5.74239322e+01 sys_corr_61: 5.15170628e+01 sys_corr_62: -3.68232504e+01 - sys_corr_63: 7.80018259e+01 + sys_corr_63: -7.80018259e+01 sys_corr_64: -6.97628217e+01 sys_corr_65: -7.11991531e+01 - sys_corr_66: -2.39036896e+01 - sys_corr_67: 7.08078053e+00 - sys_corr_68: 2.96452052e+01 - sys_corr_69: -2.76408102e+01 - sys_corr_70: 1.78941246e+01 - sys_corr_71: -5.14358879e+00 - sys_corr_72: -3.12701649e+01 - sys_corr_73: 6.24148830e-01 - sys_corr_74: -5.85127373e+01 - sys_corr_75: -1.52310651e+01 + sys_corr_66: 2.39036896e+01 + sys_corr_67: -7.08078053e+00 + sys_corr_68: -2.96452052e+01 + sys_corr_69: 2.76408102e+01 + sys_corr_70: -1.78941246e+01 + sys_corr_71: 6.24148830e-01 + sys_corr_72: 3.12701649e+01 + sys_corr_73: 5.14358879e+00 + sys_corr_74: 5.85127373e+01 + sys_corr_75: 1.52310651e+01 sys_corr_76: -1.72950628e+01 sys_corr_77: -5.86231036e-01 - sys_corr_78: 6.72041148e+00 + sys_corr_78: 4.35835915e+00 sys_corr_79: -3.31283913e-01 - sys_corr_80: -4.35835915e+00 + sys_corr_80: -6.72041148e+00 sys_corr_81: -3.86239617e+00 - sys_corr_82: 3.73188117e+00 - sys_corr_83: -1.19062977e+01 + sys_corr_82: -1.19062977e+01 + sys_corr_83: -3.73188117e+00 sys_corr_84: 4.39729674e-01 - sys_corr_85: -6.58310776e+00 - sys_corr_86: 8.47782241e+00 + sys_corr_85: 6.58310776e+00 + sys_corr_86: -8.47782241e+00 sys_corr_87: 1.40521542e+01 sys_corr_88: -2.01915751e+01 - sys_corr_89: 1.36765472e+00 - sys_corr_90: 2.25210038e+00 + sys_corr_89: -1.36765472e+00 + sys_corr_90: -2.25210038e+00 sys_corr_91: 1.38449610e+00 - sys_corr_92: 1.07325526e+01 - sys_corr_93: 5.26727886e-01 + sys_corr_92: -1.07325526e+01 + sys_corr_93: -9.08636729e-01 sys_corr_94: 1.91337724e+00 - sys_corr_95: 9.08636729e-01 + sys_corr_95: -5.26727886e-01 sys_corr_96: -1.96033782e-01 sys_corr_97: 2.44812841e-01 sys_corr_98: -3.08833486e-01 sys_corr_99: 2.03600278e-01 - sys_corr_100: -1.09695115e+00 - sys_corr_101: 6.92258714e-01 - sys_corr_102: -1.61549253e+00 - sys_corr_103: 3.19039747e+00 - sys_corr_104: -1.66084356e-01 - sys_corr_105: 8.36850872e-01 - sys_corr_106: 8.87381483e-01 - sys_corr_107: 6.07596220e-01 - sys_corr_108: -8.44256717e-03 - sys_corr_109: 1.56926455e-02 - sys_corr_110: -1.62974658e-01 - sys_corr_111: -5.08988922e-01 - sys_corr_112: -1.25380209e-01 + sys_corr_100: -1.66084356e-01 + sys_corr_101: 3.19039747e+00 + sys_corr_102: -8.36850872e-01 + sys_corr_103: 1.61549253e+00 + sys_corr_104: 6.92258714e-01 + sys_corr_105: -1.09695115e+00 + sys_corr_106: -8.87381483e-01 + sys_corr_107: -6.07596220e-01 + sys_corr_108: 5.08988922e-01 + sys_corr_109: 8.44256717e-03 + sys_corr_110: -1.56926455e-02 + sys_corr_111: -1.62974658e-01 + sys_corr_112: 1.25380209e-01 sys_corr_113: -6.22048874e-02 sys_corr_114: 1.46626438e-03 - sys_corr_115: -1.84643740e-01 - sys_corr_116: 8.04288398e-02 + sys_corr_115: 1.84643740e-01 + sys_corr_116: -8.04288398e-02 sys_corr_117: -6.55403688e-02 - sys_corr_118: -1.17061270e-01 - sys_corr_119: 1.90474269e-04 + sys_corr_118: 1.17061270e-01 + sys_corr_119: -1.90474269e-04 sys_corr_120: -4.61940980e-02 sys_corr_121: 1.13162352e-02 sys_corr_122: 8.41463844e-02 - sys_corr_123: -4.77827542e-02 + sys_corr_123: 4.77827542e-02 sys_corr_124: -1.44079246e-02 - sys_corr_125: -6.44900365e-02 + sys_corr_125: 6.44900365e-02 sys_corr_126: 1.33282438e-02 - sys_corr_127: -3.36939000e-02 - sys_corr_128: 1.29323144e-02 - sys_corr_129: -2.93879422e-02 + sys_corr_127: 3.36939000e-02 + sys_corr_128: -1.29323144e-02 + sys_corr_129: 2.93879422e-02 sys_corr_130: 2.13688025e-02 - sys_corr_131: -4.86760990e-02 - sys_corr_132: 7.04201883e-02 + sys_corr_131: 7.04201883e-02 + sys_corr_132: 4.86760990e-02 stat: 0.0 luminosity: 3.72664336e+02 - sys_corr_1: 1.56183227e+02 @@ -2418,26 +2418,26 @@ bins: sys_corr_4: -3.63808667e+01 sys_corr_5: -1.30596143e+02 sys_corr_6: -6.20415857e+01 - sys_corr_7: 2.15695590e+02 - sys_corr_8: 1.48396327e+02 + sys_corr_7: -2.15695590e+02 + sys_corr_8: -1.48396327e+02 sys_corr_9: -1.77717773e+02 - sys_corr_10: 3.87650671e+01 - sys_corr_11: 2.46107671e+02 - sys_corr_12: 3.50633747e+02 + sys_corr_10: -3.87650671e+01 + sys_corr_11: -2.46107671e+02 + sys_corr_12: -3.50633747e+02 sys_corr_13: 2.19675597e+02 - sys_corr_14: 6.27640125e+01 - sys_corr_15: 6.37252879e+01 - sys_corr_16: -1.53304041e+01 - sys_corr_17: -2.21380401e+01 - sys_corr_18: -4.64882847e+01 - sys_corr_19: 4.54201425e+00 - sys_corr_20: 2.73143491e+01 - sys_corr_21: 2.61888854e+01 - sys_corr_22: 1.49275627e+02 - sys_corr_23: 2.24300106e+01 - sys_corr_24: -1.51427833e+02 - sys_corr_25: -1.19538883e+01 - sys_corr_26: -3.06145142e+01 + sys_corr_14: -6.27640125e+01 + sys_corr_15: -6.37252879e+01 + sys_corr_16: 1.53304041e+01 + sys_corr_17: 2.21380401e+01 + sys_corr_18: 4.64882847e+01 + sys_corr_19: -4.54201425e+00 + sys_corr_20: -2.73143491e+01 + sys_corr_21: -2.61888854e+01 + sys_corr_22: -1.49275627e+02 + sys_corr_23: -2.24300106e+01 + sys_corr_24: 1.51427833e+02 + sys_corr_25: 1.19538883e+01 + sys_corr_26: 3.06145142e+01 sys_corr_27: -3.79454402e+01 sys_corr_28: 4.88771786e+01 sys_corr_29: -1.22593891e+01 @@ -2450,100 +2450,100 @@ bins: sys_corr_36: 1.32287559e+01 sys_corr_37: 1.31500953e+01 sys_corr_38: -1.50554174e+01 - sys_corr_39: -1.98700637e+01 + sys_corr_39: 1.98700637e+01 sys_corr_40: 3.76000127e+01 sys_corr_41: -6.73917022e+01 - sys_corr_42: -1.80625395e+01 + sys_corr_42: 1.80625395e+01 sys_corr_43: -1.68653918e+01 - sys_corr_44: 6.19466233e+00 - sys_corr_45: 1.93526786e+01 - sys_corr_46: -2.13953962e+01 - sys_corr_47: 3.08405958e+01 - sys_corr_48: -9.75893863e+00 + sys_corr_44: -6.19466233e+00 + sys_corr_45: -1.93526786e+01 + sys_corr_46: 2.13953962e+01 + sys_corr_47: -3.08405958e+01 + sys_corr_48: 9.75893863e+00 sys_corr_49: -4.72059233e+00 - sys_corr_50: 1.69493211e+01 - sys_corr_51: 5.04232489e+01 - sys_corr_52: -6.44431100e+00 - sys_corr_53: -2.03712424e+02 - sys_corr_54: -2.48243634e+01 + sys_corr_50: -1.69493211e+01 + sys_corr_51: -5.04232489e+01 + sys_corr_52: 6.44431100e+00 + sys_corr_53: 2.03712424e+02 + sys_corr_54: 2.48243634e+01 sys_corr_55: 5.01114703e+01 sys_corr_56: 4.00540694e+01 - sys_corr_57: 3.36818173e+01 + sys_corr_57: -3.36818173e+01 sys_corr_58: 5.01597841e+01 - sys_corr_59: 3.96459634e+00 + sys_corr_59: -3.96459634e+00 sys_corr_60: 3.25334545e+01 sys_corr_61: 1.85595324e+01 sys_corr_62: 2.13128907e+01 - sys_corr_63: 9.28974958e+01 + sys_corr_63: -9.28974958e+01 sys_corr_64: -2.19415494e+01 sys_corr_65: -4.69025345e+01 - sys_corr_66: -1.80332974e+01 - sys_corr_67: -4.43413142e+01 - sys_corr_68: 3.66245805e+00 - sys_corr_69: -6.51813901e+00 - sys_corr_70: 2.22894300e+01 - sys_corr_71: 7.10436397e+00 - sys_corr_72: -3.47460276e+01 - sys_corr_73: 1.04267433e+01 - sys_corr_74: -3.02852250e+01 - sys_corr_75: -5.65060808e-01 + sys_corr_66: 1.80332974e+01 + sys_corr_67: 4.43413142e+01 + sys_corr_68: -3.66245805e+00 + sys_corr_69: 6.51813901e+00 + sys_corr_70: -2.22894300e+01 + sys_corr_71: 1.04267433e+01 + sys_corr_72: 3.47460276e+01 + sys_corr_73: -7.10436397e+00 + sys_corr_74: 3.02852250e+01 + sys_corr_75: 5.65060808e-01 sys_corr_76: 1.27092655e-01 sys_corr_77: 3.94352930e-01 - sys_corr_78: 1.12400029e+00 + sys_corr_78: 2.83811869e+00 sys_corr_79: -4.91314409e+00 - sys_corr_80: -2.83811869e+00 + sys_corr_80: -1.12400029e+00 sys_corr_81: -6.03956554e+00 - sys_corr_82: -1.30018872e+00 - sys_corr_83: -7.30541057e+00 + sys_corr_82: -7.30541057e+00 + sys_corr_83: 1.30018872e+00 sys_corr_84: -2.11050213e+00 - sys_corr_85: -8.53176805e-01 - sys_corr_86: 8.76909893e+00 + sys_corr_85: 8.53176805e-01 + sys_corr_86: -8.76909893e+00 sys_corr_87: -1.03684598e+00 sys_corr_88: -8.93839546e+00 - sys_corr_89: -6.88600213e-01 - sys_corr_90: 3.24167493e-01 + sys_corr_89: 6.88600213e-01 + sys_corr_90: -3.24167493e-01 sys_corr_91: -1.18170930e+00 - sys_corr_92: -1.63934197e+00 - sys_corr_93: 1.74245688e-01 + sys_corr_92: 1.63934197e+00 + sys_corr_93: 1.49978727e-01 sys_corr_94: 9.16918878e-01 - sys_corr_95: -1.49978727e-01 + sys_corr_95: -1.74245688e-01 sys_corr_96: -7.88125771e-02 sys_corr_97: -2.31494665e-01 sys_corr_98: -6.27684006e-03 sys_corr_99: 4.02956269e-02 - sys_corr_100: -1.00740147e+00 - sys_corr_101: 8.68972509e-01 - sys_corr_102: -1.57395537e+00 - sys_corr_103: 3.05047845e+00 - sys_corr_104: 7.29338377e-01 - sys_corr_105: 8.71204137e-01 - sys_corr_106: 7.57700603e-01 - sys_corr_107: 5.58737507e-01 - sys_corr_108: -1.60539765e-02 - sys_corr_109: -9.72831361e-02 - sys_corr_110: -2.64456055e-01 - sys_corr_111: -3.76209127e-02 - sys_corr_112: 4.35751457e-02 + sys_corr_100: 7.29338377e-01 + sys_corr_101: 3.05047845e+00 + sys_corr_102: -8.71204137e-01 + sys_corr_103: 1.57395537e+00 + sys_corr_104: 8.68972509e-01 + sys_corr_105: -1.00740147e+00 + sys_corr_106: -7.57700603e-01 + sys_corr_107: -5.58737507e-01 + sys_corr_108: 3.76209127e-02 + sys_corr_109: 1.60539765e-02 + sys_corr_110: 9.72831361e-02 + sys_corr_111: -2.64456055e-01 + sys_corr_112: -4.35751457e-02 sys_corr_113: 2.55118630e-02 sys_corr_114: 2.42849385e-03 - sys_corr_115: -1.27015990e-01 - sys_corr_116: 2.18696309e-02 + sys_corr_115: 1.27015990e-01 + sys_corr_116: -2.18696309e-02 sys_corr_117: -1.09758098e-02 - sys_corr_118: 8.22097361e-03 - sys_corr_119: 9.78778293e-03 + sys_corr_118: -8.22097361e-03 + sys_corr_119: -9.78778293e-03 sys_corr_120: -1.33581323e-02 sys_corr_121: 8.00362163e-03 sys_corr_122: 3.28098038e-02 - sys_corr_123: -1.41669230e-02 + sys_corr_123: 1.41669230e-02 sys_corr_124: 8.74942442e-03 - sys_corr_125: -3.95023601e-02 + sys_corr_125: 3.95023601e-02 sys_corr_126: -1.09969139e-02 - sys_corr_127: -1.75946998e-01 - sys_corr_128: -9.02707832e-02 - sys_corr_129: -7.45861163e-02 + sys_corr_127: 1.75946998e-01 + sys_corr_128: 9.02707832e-02 + sys_corr_129: 7.45861163e-02 sys_corr_130: 2.86622782e-02 - sys_corr_131: -3.27705322e-02 - sys_corr_132: 1.02868224e-01 + sys_corr_131: 1.02868224e-01 + sys_corr_132: 3.27705322e-02 stat: 0.0 luminosity: 3.58529072e+02 - sys_corr_1: 1.49274303e+02 @@ -2552,26 +2552,26 @@ bins: sys_corr_4: -9.52954576e+01 sys_corr_5: -1.16312358e+02 sys_corr_6: -4.64845611e+01 - sys_corr_7: 2.17737186e+02 - sys_corr_8: 1.57207533e+02 + sys_corr_7: -2.17737186e+02 + sys_corr_8: -1.57207533e+02 sys_corr_9: -2.04581881e+02 - sys_corr_10: 3.93162420e+01 - sys_corr_11: 2.51406276e+02 - sys_corr_12: 3.78368266e+02 + sys_corr_10: -3.93162420e+01 + sys_corr_11: -2.51406276e+02 + sys_corr_12: -3.78368266e+02 sys_corr_13: 2.40213039e+02 - sys_corr_14: 7.00300055e+01 - sys_corr_15: 6.95494740e+01 - sys_corr_16: -2.15426169e+01 - sys_corr_17: -3.18663987e+01 - sys_corr_18: -4.11159233e+01 - sys_corr_19: 1.92023153e+01 - sys_corr_20: 2.20243101e+01 - sys_corr_21: 2.02459226e+01 - sys_corr_22: 5.65322294e+01 - sys_corr_23: 9.91977521e+00 - sys_corr_24: -1.93474700e+02 - sys_corr_25: -1.97700926e+01 - sys_corr_26: -2.68792140e+01 + sys_corr_14: -7.00300055e+01 + sys_corr_15: -6.95494740e+01 + sys_corr_16: 2.15426169e+01 + sys_corr_17: 3.18663987e+01 + sys_corr_18: 4.11159233e+01 + sys_corr_19: -1.92023153e+01 + sys_corr_20: -2.20243101e+01 + sys_corr_21: -2.02459226e+01 + sys_corr_22: -5.65322294e+01 + sys_corr_23: -9.91977521e+00 + sys_corr_24: 1.93474700e+02 + sys_corr_25: 1.97700926e+01 + sys_corr_26: 2.68792140e+01 sys_corr_27: -5.02972967e+01 sys_corr_28: 4.66064080e+01 sys_corr_29: 1.10801951e+01 @@ -2584,100 +2584,100 @@ bins: sys_corr_36: -1.10980419e+01 sys_corr_37: -1.49104605e+00 sys_corr_38: 5.19274467e+00 - sys_corr_39: -4.59588409e-01 + sys_corr_39: 4.59588409e-01 sys_corr_40: 1.18329311e+01 sys_corr_41: 1.52778796e+00 - sys_corr_42: 1.56477826e+01 + sys_corr_42: -1.56477826e+01 sys_corr_43: 1.67548623e+01 - sys_corr_44: 2.69788835e+00 - sys_corr_45: 1.43289923e+01 - sys_corr_46: 4.84722520e+01 - sys_corr_47: 2.55997733e+01 - sys_corr_48: -7.37740331e+00 + sys_corr_44: -2.69788835e+00 + sys_corr_45: -1.43289923e+01 + sys_corr_46: -4.84722520e+01 + sys_corr_47: -2.55997733e+01 + sys_corr_48: 7.37740331e+00 sys_corr_49: 2.67819661e+01 - sys_corr_50: 2.55098884e+01 - sys_corr_51: -2.02816651e+01 - sys_corr_52: -8.36874371e+00 - sys_corr_53: -5.54271284e+01 - sys_corr_54: -7.56560873e+01 + sys_corr_50: -2.55098884e+01 + sys_corr_51: 2.02816651e+01 + sys_corr_52: 8.36874371e+00 + sys_corr_53: 5.54271284e+01 + sys_corr_54: 7.56560873e+01 sys_corr_55: 2.57092373e+01 sys_corr_56: -2.02119196e+01 - sys_corr_57: -1.55181783e+02 + sys_corr_57: 1.55181783e+02 sys_corr_58: -7.39116652e+01 - sys_corr_59: -2.33842987e+00 + sys_corr_59: 2.33842987e+00 sys_corr_60: -3.01733692e+01 sys_corr_61: -1.33342351e+01 sys_corr_62: -7.37745968e+00 - sys_corr_63: -1.37304037e+02 + sys_corr_63: 1.37304037e+02 sys_corr_64: 1.34030975e+01 sys_corr_65: 3.80841111e+01 - sys_corr_66: -6.19558147e+00 - sys_corr_67: -3.52189815e+01 - sys_corr_68: -3.02611660e+01 - sys_corr_69: 6.31997486e+00 - sys_corr_70: -1.60375077e+01 - sys_corr_71: 5.74617998e+00 - sys_corr_72: -1.36828971e+01 - sys_corr_73: -3.17514608e+01 - sys_corr_74: 5.76995398e+00 - sys_corr_75: 1.42190468e+01 + sys_corr_66: 6.19558147e+00 + sys_corr_67: 3.52189815e+01 + sys_corr_68: 3.02611660e+01 + sys_corr_69: -6.31997486e+00 + sys_corr_70: 1.60375077e+01 + sys_corr_71: -3.17514608e+01 + sys_corr_72: 1.36828971e+01 + sys_corr_73: -5.74617998e+00 + sys_corr_74: -5.76995398e+00 + sys_corr_75: -1.42190468e+01 sys_corr_76: 1.59148237e+01 sys_corr_77: 3.77625318e-02 - sys_corr_78: 2.80555277e+00 + sys_corr_78: 1.27373424e+00 sys_corr_79: -2.66521097e+00 - sys_corr_80: -1.27373424e+00 + sys_corr_80: -2.80555277e+00 sys_corr_81: -2.53286730e+00 - sys_corr_82: -3.20128063e+00 - sys_corr_83: 1.16937916e+00 + sys_corr_82: 1.16937916e+00 + sys_corr_83: 3.20128063e+00 sys_corr_84: 6.44688911e-01 - sys_corr_85: -4.95659004e-02 - sys_corr_86: 1.09554272e+01 + sys_corr_85: 4.95659004e-02 + sys_corr_86: -1.09554272e+01 sys_corr_87: 2.96837409e+00 sys_corr_88: -1.28322753e+01 - sys_corr_89: -7.05824471e-01 - sys_corr_90: 1.91639583e-01 + sys_corr_89: 7.05824471e-01 + sys_corr_90: -1.91639583e-01 sys_corr_91: -8.89253382e-01 - sys_corr_92: -6.67210870e+00 - sys_corr_93: -6.47253183e-02 + sys_corr_92: 6.67210870e+00 + sys_corr_93: 1.60571665e+00 sys_corr_94: -5.09447205e-01 - sys_corr_95: -1.60571665e+00 + sys_corr_95: 6.47253183e-02 sys_corr_96: 1.41433194e-01 sys_corr_97: 2.31903677e-01 sys_corr_98: 3.76516874e-01 sys_corr_99: 1.22247573e-01 - sys_corr_100: -3.02235364e-01 - sys_corr_101: 2.62071888e-01 - sys_corr_102: -2.66219300e-01 - sys_corr_103: 5.16393812e-01 - sys_corr_104: 1.05163659e+00 - sys_corr_105: 1.59781105e-01 - sys_corr_106: 2.79313344e-01 - sys_corr_107: 1.01161949e-02 - sys_corr_108: -7.16186444e-02 - sys_corr_109: 1.04222300e-01 - sys_corr_110: -8.00038054e-02 - sys_corr_111: -2.07848750e-01 - sys_corr_112: -1.91872454e-02 + sys_corr_100: 1.05163659e+00 + sys_corr_101: 5.16393812e-01 + sys_corr_102: -1.59781105e-01 + sys_corr_103: 2.66219300e-01 + sys_corr_104: 2.62071888e-01 + sys_corr_105: -3.02235364e-01 + sys_corr_106: -2.79313344e-01 + sys_corr_107: -1.01161949e-02 + sys_corr_108: 2.07848750e-01 + sys_corr_109: 7.16186444e-02 + sys_corr_110: -1.04222300e-01 + sys_corr_111: -8.00038054e-02 + sys_corr_112: 1.91872454e-02 sys_corr_113: 7.05199035e-02 sys_corr_114: 1.16824928e-03 - sys_corr_115: -1.18535525e-01 - sys_corr_116: 2.45092576e-02 + sys_corr_115: 1.18535525e-01 + sys_corr_116: -2.45092576e-02 sys_corr_117: -2.07821844e-02 - sys_corr_118: -5.50567448e-02 - sys_corr_119: 1.74262981e-03 + sys_corr_118: 5.50567448e-02 + sys_corr_119: -1.74262981e-03 sys_corr_120: -9.24520860e-03 sys_corr_121: -2.67793114e-03 sys_corr_122: -1.18043144e-02 - sys_corr_123: 8.32390293e-03 + sys_corr_123: -8.32390293e-03 sys_corr_124: -5.20061503e-03 - sys_corr_125: 1.08836892e-03 + sys_corr_125: -1.08836892e-03 sys_corr_126: -6.93892880e-03 - sys_corr_127: 1.61713801e-01 - sys_corr_128: -2.06271954e-01 - sys_corr_129: -1.40402596e-02 + sys_corr_127: -1.61713801e-01 + sys_corr_128: 2.06271954e-01 + sys_corr_129: 1.40402596e-02 sys_corr_130: 1.42489335e-03 - sys_corr_131: -5.51557397e-03 - sys_corr_132: 8.56477729e-02 + sys_corr_131: 8.56477729e-02 + sys_corr_132: 5.51557397e-03 stat: 0.0 luminosity: 3.61877912e+02 - sys_corr_1: 1.32113976e+02 @@ -2686,26 +2686,26 @@ bins: sys_corr_4: -1.29800906e+02 sys_corr_5: -9.61151924e+01 sys_corr_6: -3.06486291e+01 - sys_corr_7: 1.93069827e+02 - sys_corr_8: 1.54394647e+02 + sys_corr_7: -1.93069827e+02 + sys_corr_8: -1.54394647e+02 sys_corr_9: -2.19580225e+02 - sys_corr_10: 4.08817985e+01 - sys_corr_11: 2.53702475e+02 - sys_corr_12: 3.77224748e+02 + sys_corr_10: -4.08817985e+01 + sys_corr_11: -2.53702475e+02 + sys_corr_12: -3.77224748e+02 sys_corr_13: 2.52923575e+02 - sys_corr_14: 6.47051994e+01 - sys_corr_15: 7.41673430e+01 - sys_corr_16: -3.71874006e+01 - sys_corr_17: -4.45999132e+01 - sys_corr_18: -3.47849645e+01 - sys_corr_19: 2.75431892e+01 - sys_corr_20: 2.07832906e+01 - sys_corr_21: 2.48658147e+01 - sys_corr_22: -7.27929058e+01 - sys_corr_23: -2.20616855e+01 - sys_corr_24: -1.81379767e+02 - sys_corr_25: -3.68050220e+01 - sys_corr_26: -6.08494934e+01 + sys_corr_14: -6.47051994e+01 + sys_corr_15: -7.41673430e+01 + sys_corr_16: 3.71874006e+01 + sys_corr_17: 4.45999132e+01 + sys_corr_18: 3.47849645e+01 + sys_corr_19: -2.75431892e+01 + sys_corr_20: -2.07832906e+01 + sys_corr_21: -2.48658147e+01 + sys_corr_22: 7.27929058e+01 + sys_corr_23: 2.20616855e+01 + sys_corr_24: 1.81379767e+02 + sys_corr_25: 3.68050220e+01 + sys_corr_26: 6.08494934e+01 sys_corr_27: -2.96616779e+01 sys_corr_28: 3.73469763e+01 sys_corr_29: 2.64713973e+01 @@ -2718,100 +2718,100 @@ bins: sys_corr_36: -2.22595927e+01 sys_corr_37: -2.17365211e+01 sys_corr_38: 8.56996548e+00 - sys_corr_39: 3.04460321e+00 + sys_corr_39: -3.04460321e+00 sys_corr_40: -3.52260909e+01 sys_corr_41: 1.36456639e+01 - sys_corr_42: 3.12945171e+01 + sys_corr_42: -3.12945171e+01 sys_corr_43: -1.11902559e+01 - sys_corr_44: 6.05448422e+00 - sys_corr_45: -4.81125002e+00 - sys_corr_46: -1.14046385e+01 - sys_corr_47: -2.31037932e+01 - sys_corr_48: -3.22527668e+01 + sys_corr_44: -6.05448422e+00 + sys_corr_45: 4.81125002e+00 + sys_corr_46: 1.14046385e+01 + sys_corr_47: 2.31037932e+01 + sys_corr_48: 3.22527668e+01 sys_corr_49: -3.15968571e+01 - sys_corr_50: -1.27058723e+01 - sys_corr_51: 7.27337724e+01 - sys_corr_52: -1.81719867e+01 - sys_corr_53: 3.59493951e+01 - sys_corr_54: 4.29603370e+01 + sys_corr_50: 1.27058723e+01 + sys_corr_51: -7.27337724e+01 + sys_corr_52: 1.81719867e+01 + sys_corr_53: -3.59493951e+01 + sys_corr_54: -4.29603370e+01 sys_corr_55: 3.14131738e+01 sys_corr_56: -8.40650671e+01 - sys_corr_57: 7.61611049e+01 + sys_corr_57: -7.61611049e+01 sys_corr_58: -2.28075739e+01 - sys_corr_59: -9.05726673e+01 + sys_corr_59: 9.05726673e+01 sys_corr_60: -9.69458998e+00 sys_corr_61: 1.84625134e+01 sys_corr_62: -4.18453589e+01 - sys_corr_63: -5.80241249e-02 + sys_corr_63: 5.80241249e-02 sys_corr_64: -6.58000090e+01 sys_corr_65: 1.97025150e+01 - sys_corr_66: -6.89767073e+00 - sys_corr_67: 1.82163958e+01 - sys_corr_68: 5.93365953e+00 - sys_corr_69: 3.83135145e+01 - sys_corr_70: -2.27903824e+00 - sys_corr_71: 1.63570849e+01 - sys_corr_72: 6.20428246e+01 - sys_corr_73: 9.14455886e+01 - sys_corr_74: 5.06742320e+01 - sys_corr_75: 1.38752306e+01 + sys_corr_66: 6.89767073e+00 + sys_corr_67: -1.82163958e+01 + sys_corr_68: -5.93365953e+00 + sys_corr_69: -3.83135145e+01 + sys_corr_70: 2.27903824e+00 + sys_corr_71: 9.14455886e+01 + sys_corr_72: -6.20428246e+01 + sys_corr_73: -1.63570849e+01 + sys_corr_74: -5.06742320e+01 + sys_corr_75: -1.38752306e+01 sys_corr_76: 3.78945029e+01 sys_corr_77: 5.27040771e+00 - sys_corr_78: 2.12952875e+00 + sys_corr_78: 5.42291305e+00 sys_corr_79: -1.12478096e+01 - sys_corr_80: -5.42291305e+00 + sys_corr_80: -2.12952875e+00 sys_corr_81: -7.57206754e+00 - sys_corr_82: 4.18455460e+00 - sys_corr_83: 2.89828552e+00 + sys_corr_82: 2.89828552e+00 + sys_corr_83: -4.18455460e+00 sys_corr_84: 1.61190082e+00 - sys_corr_85: 4.43740945e+00 - sys_corr_86: 3.47185831e+01 + sys_corr_85: -4.43740945e+00 + sys_corr_86: -3.47185831e+01 sys_corr_87: -7.75264087e+00 sys_corr_88: -1.74955337e+01 - sys_corr_89: 4.09675282e-02 - sys_corr_90: -3.42104405e+00 + sys_corr_89: -4.09675282e-02 + sys_corr_90: 3.42104405e+00 sys_corr_91: 5.01956716e-02 - sys_corr_92: -3.56065966e+01 - sys_corr_93: -7.05259855e-01 + sys_corr_92: 3.56065966e+01 + sys_corr_93: 9.76880353e-01 sys_corr_94: -2.65324049e+00 - sys_corr_95: -9.76880353e-01 + sys_corr_95: 7.05259855e-01 sys_corr_96: 1.05624159e-01 sys_corr_97: 8.28147428e-02 sys_corr_98: 2.82671854e-01 sys_corr_99: -1.86865924e-01 - sys_corr_100: 1.50984944e-01 - sys_corr_101: -2.82941128e-01 - sys_corr_102: 1.46922451e-01 - sys_corr_103: 7.57103036e-01 - sys_corr_104: -3.64349521e-02 - sys_corr_105: 7.66216771e-01 - sys_corr_106: -1.87347841e-01 - sys_corr_107: -1.80023656e-04 - sys_corr_108: -1.44591400e-01 - sys_corr_109: 1.53789673e-01 - sys_corr_110: 1.51883926e-01 - sys_corr_111: 2.17512395e-01 - sys_corr_112: 8.87455080e-02 + sys_corr_100: -3.64349521e-02 + sys_corr_101: 7.57103036e-01 + sys_corr_102: -7.66216771e-01 + sys_corr_103: -1.46922451e-01 + sys_corr_104: -2.82941128e-01 + sys_corr_105: 1.50984944e-01 + sys_corr_106: 1.87347841e-01 + sys_corr_107: 1.80023656e-04 + sys_corr_108: -2.17512395e-01 + sys_corr_109: 1.44591400e-01 + sys_corr_110: -1.53789673e-01 + sys_corr_111: 1.51883926e-01 + sys_corr_112: -8.87455080e-02 sys_corr_113: 1.81479699e-01 sys_corr_114: 4.72899273e-03 - sys_corr_115: -2.06449910e-01 - sys_corr_116: 1.69308061e-02 + sys_corr_115: 2.06449910e-01 + sys_corr_116: -1.69308061e-02 sys_corr_117: -4.42464395e-03 - sys_corr_118: -1.69147648e-01 - sys_corr_119: 2.45451900e-03 + sys_corr_118: 1.69147648e-01 + sys_corr_119: -2.45451900e-03 sys_corr_120: -6.62397374e-03 sys_corr_121: 8.41109369e-03 sys_corr_122: 1.04814230e-02 - sys_corr_123: -5.95189385e-03 + sys_corr_123: 5.95189385e-03 sys_corr_124: -7.81524711e-03 - sys_corr_125: -2.09384738e-02 + sys_corr_125: 2.09384738e-02 sys_corr_126: -2.18258419e-04 - sys_corr_127: 4.02718255e-02 - sys_corr_128: -2.76573292e-03 - sys_corr_129: 9.73696353e-02 + sys_corr_127: -4.02718255e-02 + sys_corr_128: 2.76573292e-03 + sys_corr_129: -9.73696353e-02 sys_corr_130: -3.38568519e-04 - sys_corr_131: -1.47823289e-02 - sys_corr_132: 8.14917850e-02 + sys_corr_131: 8.14917850e-02 + sys_corr_132: 1.47823289e-02 stat: 0.0 luminosity: 3.40095866e+02 - sys_corr_1: 1.34847741e+02 @@ -2820,26 +2820,26 @@ bins: sys_corr_4: -1.50444776e+02 sys_corr_5: -8.06800068e+01 sys_corr_6: 2.49201113e+00 - sys_corr_7: 1.72731634e+02 - sys_corr_8: 1.49541182e+02 + sys_corr_7: -1.72731634e+02 + sys_corr_8: -1.49541182e+02 sys_corr_9: -2.37139448e+02 - sys_corr_10: 5.02977721e+01 - sys_corr_11: 2.61151344e+02 - sys_corr_12: 3.95211804e+02 + sys_corr_10: -5.02977721e+01 + sys_corr_11: -2.61151344e+02 + sys_corr_12: -3.95211804e+02 sys_corr_13: 2.73359370e+02 - sys_corr_14: 6.03283060e+01 - sys_corr_15: 7.73101491e+01 - sys_corr_16: -4.15645636e+01 - sys_corr_17: -5.00382917e+01 - sys_corr_18: -2.75740230e+01 - sys_corr_19: 4.50367565e+01 - sys_corr_20: 1.15819852e+01 - sys_corr_21: 1.53011992e+01 - sys_corr_22: -1.78488484e+02 - sys_corr_23: -4.10991949e+01 - sys_corr_24: -1.60516495e+02 - sys_corr_25: -7.88469341e+01 - sys_corr_26: -1.38098483e+02 + sys_corr_14: -6.03283060e+01 + sys_corr_15: -7.73101491e+01 + sys_corr_16: 4.15645636e+01 + sys_corr_17: 5.00382917e+01 + sys_corr_18: 2.75740230e+01 + sys_corr_19: -4.50367565e+01 + sys_corr_20: -1.15819852e+01 + sys_corr_21: -1.53011992e+01 + sys_corr_22: 1.78488484e+02 + sys_corr_23: 4.10991949e+01 + sys_corr_24: 1.60516495e+02 + sys_corr_25: 7.88469341e+01 + sys_corr_26: 1.38098483e+02 sys_corr_27: 1.88557071e+01 sys_corr_28: 2.34110163e+01 sys_corr_29: 1.51645161e+01 @@ -2852,100 +2852,100 @@ bins: sys_corr_36: 2.53746750e+00 sys_corr_37: -8.89627937e-02 sys_corr_38: -2.24017134e+00 - sys_corr_39: 3.83788766e+00 + sys_corr_39: -3.83788766e+00 sys_corr_40: 1.23361407e+01 sys_corr_41: -1.03488750e+00 - sys_corr_42: -1.19428640e+01 + sys_corr_42: 1.19428640e+01 sys_corr_43: -1.39361521e+01 - sys_corr_44: -3.51822951e+01 - sys_corr_45: 3.88167254e+00 - sys_corr_46: -3.41826731e+01 - sys_corr_47: -2.77174674e+01 - sys_corr_48: 3.53355448e+01 + sys_corr_44: 3.51822951e+01 + sys_corr_45: -3.88167254e+00 + sys_corr_46: 3.41826731e+01 + sys_corr_47: 2.77174674e+01 + sys_corr_48: -3.53355448e+01 sys_corr_49: -7.62361642e+00 - sys_corr_50: -3.28468639e+01 - sys_corr_51: -6.36969028e+01 - sys_corr_52: 4.78393362e+01 - sys_corr_53: 1.63154410e+01 - sys_corr_54: -2.97197721e+01 + sys_corr_50: 3.28468639e+01 + sys_corr_51: 6.36969028e+01 + sys_corr_52: -4.78393362e+01 + sys_corr_53: -1.63154410e+01 + sys_corr_54: 2.97197721e+01 sys_corr_55: -2.08967119e+01 sys_corr_56: 7.22018143e+01 - sys_corr_57: -3.73312674e+01 + sys_corr_57: 3.73312674e+01 sys_corr_58: 2.75449578e+01 - sys_corr_59: 6.98523004e+01 + sys_corr_59: -6.98523004e+01 sys_corr_60: -7.47933682e+00 sys_corr_61: -5.84052929e+00 sys_corr_62: 8.91846931e-01 - sys_corr_63: 8.13408976e+01 + sys_corr_63: -8.13408976e+01 sys_corr_64: 7.96143089e+01 sys_corr_65: -6.46937583e-01 - sys_corr_66: -3.92034468e+00 - sys_corr_67: 6.99473867e+01 - sys_corr_68: 1.60892081e+01 - sys_corr_69: 2.98420956e+00 - sys_corr_70: -5.79972330e+00 - sys_corr_71: -2.43395051e+01 - sys_corr_72: 8.59531494e+01 - sys_corr_73: -2.46976602e+01 - sys_corr_74: 8.43246940e+01 - sys_corr_75: 8.02186919e+00 + sys_corr_66: 3.92034468e+00 + sys_corr_67: -6.99473867e+01 + sys_corr_68: -1.60892081e+01 + sys_corr_69: -2.98420956e+00 + sys_corr_70: 5.79972330e+00 + sys_corr_71: -2.46976602e+01 + sys_corr_72: -8.59531494e+01 + sys_corr_73: 2.43395051e+01 + sys_corr_74: -8.43246940e+01 + sys_corr_75: -8.02186919e+00 sys_corr_76: 3.46277071e+00 sys_corr_77: -4.54427398e-01 - sys_corr_78: -2.78878890e+00 + sys_corr_78: 1.43817656e+00 sys_corr_79: 2.57884696e+01 - sys_corr_80: -1.43817656e+00 + sys_corr_80: 2.78878890e+00 sys_corr_81: 1.45772765e+01 - sys_corr_82: -1.57566567e+00 - sys_corr_83: 1.67480627e+01 + sys_corr_82: 1.67480627e+01 + sys_corr_83: 1.57566567e+00 sys_corr_84: 2.10968437e+00 - sys_corr_85: 2.88062079e+00 - sys_corr_86: -1.02371072e+01 + sys_corr_85: -2.88062079e+00 + sys_corr_86: 1.02371072e+01 sys_corr_87: -9.45780215e+00 sys_corr_88: 2.85546680e+01 - sys_corr_89: -2.78004573e+00 - sys_corr_90: -3.36460788e-01 + sys_corr_89: 2.78004573e+00 + sys_corr_90: 3.36460788e-01 sys_corr_91: -1.48757417e+00 - sys_corr_92: -1.03147557e+01 - sys_corr_93: -4.65818612e-01 + sys_corr_92: 1.03147557e+01 + sys_corr_93: 2.60680521e+00 sys_corr_94: -2.51816407e+00 - sys_corr_95: -2.60680521e+00 + sys_corr_95: 4.65818612e-01 sys_corr_96: 4.41112047e-01 sys_corr_97: 2.06755361e+00 sys_corr_98: 1.09966228e+00 sys_corr_99: 1.34779249e+00 - sys_corr_100: 8.84294749e-01 - sys_corr_101: -6.92383455e-01 - sys_corr_102: 1.17158362e+00 - sys_corr_103: -2.80486654e-01 - sys_corr_104: 3.10181230e+00 - sys_corr_105: 7.73142741e-01 - sys_corr_106: -4.89089422e-01 - sys_corr_107: -2.93707636e-01 - sys_corr_108: 8.80045610e-02 - sys_corr_109: 1.67701873e-01 - sys_corr_110: 7.81318839e-02 - sys_corr_111: -1.66539034e-01 - sys_corr_112: 1.22072378e-01 + sys_corr_100: 3.10181230e+00 + sys_corr_101: -2.80486654e-01 + sys_corr_102: -7.73142741e-01 + sys_corr_103: -1.17158362e+00 + sys_corr_104: -6.92383455e-01 + sys_corr_105: 8.84294749e-01 + sys_corr_106: 4.89089422e-01 + sys_corr_107: 2.93707636e-01 + sys_corr_108: 1.66539034e-01 + sys_corr_109: -8.80045610e-02 + sys_corr_110: -1.67701873e-01 + sys_corr_111: 7.81318839e-02 + sys_corr_112: -1.22072378e-01 sys_corr_113: 1.03302731e-01 sys_corr_114: 1.27798513e-04 - sys_corr_115: 2.26891018e-02 - sys_corr_116: -1.88233922e-02 + sys_corr_115: -2.26891018e-02 + sys_corr_116: 1.88233922e-02 sys_corr_117: 2.24777084e-02 - sys_corr_118: -3.35078857e-02 - sys_corr_119: -1.79903697e-03 + sys_corr_118: 3.35078857e-02 + sys_corr_119: 1.79903697e-03 sys_corr_120: 1.68017452e-02 sys_corr_121: -7.46665627e-03 sys_corr_122: -6.78662778e-02 - sys_corr_123: 3.39144775e-02 + sys_corr_123: -3.39144775e-02 sys_corr_124: 2.68370545e-03 - sys_corr_125: 5.12501542e-02 + sys_corr_125: -5.12501542e-02 sys_corr_126: -1.40891736e-02 - sys_corr_127: 9.54767209e-02 - sys_corr_128: -4.25077350e-01 - sys_corr_129: 8.26900911e-02 + sys_corr_127: -9.54767209e-02 + sys_corr_128: 4.25077350e-01 + sys_corr_129: -8.26900911e-02 sys_corr_130: -6.13181437e-03 - sys_corr_131: 3.48996931e-02 - sys_corr_132: 5.76078213e-02 + sys_corr_131: 5.76078213e-02 + sys_corr_132: -3.48996931e-02 stat: 0.0 luminosity: 3.34508570e+02 - sys_corr_1: 1.19328700e+02 @@ -2954,26 +2954,26 @@ bins: sys_corr_4: -1.69849996e+02 sys_corr_5: -5.20657740e+01 sys_corr_6: 2.28843839e+01 - sys_corr_7: 1.10768775e+02 - sys_corr_8: 1.22872324e+02 + sys_corr_7: -1.10768775e+02 + sys_corr_8: -1.22872324e+02 sys_corr_9: -2.16817586e+02 - sys_corr_10: 4.78964135e+01 - sys_corr_11: 2.20591787e+02 - sys_corr_12: 3.29943009e+02 + sys_corr_10: -4.78964135e+01 + sys_corr_11: -2.20591787e+02 + sys_corr_12: -3.29943009e+02 sys_corr_13: 2.38775014e+02 - sys_corr_14: 4.41611061e+01 - sys_corr_15: 6.32853172e+01 - sys_corr_16: -4.53454061e+01 - sys_corr_17: -4.82900727e+01 - sys_corr_18: -2.29469294e+01 - sys_corr_19: 4.56311648e+01 - sys_corr_20: -5.86025765e+00 - sys_corr_21: 1.39161769e+01 - sys_corr_22: -2.86382594e+02 - sys_corr_23: -5.62636650e+01 - sys_corr_24: -1.13592430e+02 - sys_corr_25: -9.29399467e+01 - sys_corr_26: -1.62148513e+02 + sys_corr_14: -4.41611061e+01 + sys_corr_15: -6.32853172e+01 + sys_corr_16: 4.53454061e+01 + sys_corr_17: 4.82900727e+01 + sys_corr_18: 2.29469294e+01 + sys_corr_19: -4.56311648e+01 + sys_corr_20: 5.86025765e+00 + sys_corr_21: -1.39161769e+01 + sys_corr_22: 2.86382594e+02 + sys_corr_23: 5.62636650e+01 + sys_corr_24: 1.13592430e+02 + sys_corr_25: 9.29399467e+01 + sys_corr_26: 1.62148513e+02 sys_corr_27: 3.79807387e+01 sys_corr_28: 1.21258432e+01 sys_corr_29: 1.65856610e+01 @@ -2986,100 +2986,100 @@ bins: sys_corr_36: -2.93400510e-01 sys_corr_37: -9.55359578e-02 sys_corr_38: -4.13742042e+00 - sys_corr_39: 1.25396880e+01 + sys_corr_39: -1.25396880e+01 sys_corr_40: -1.21357476e+01 sys_corr_41: 3.13180258e+01 - sys_corr_42: -2.48736652e+01 + sys_corr_42: 2.48736652e+01 sys_corr_43: 2.35369065e+01 - sys_corr_44: -3.33001417e+01 - sys_corr_45: -1.11672721e+01 - sys_corr_46: 2.09115401e+01 - sys_corr_47: -9.98324278e+00 - sys_corr_48: 2.05359253e+01 + sys_corr_44: 3.33001417e+01 + sys_corr_45: 1.11672721e+01 + sys_corr_46: -2.09115401e+01 + sys_corr_47: 9.98324278e+00 + sys_corr_48: -2.05359253e+01 sys_corr_49: 1.66851322e+01 - sys_corr_50: 8.03583757e+00 - sys_corr_51: -2.06392669e+01 - sys_corr_52: -3.42336619e+01 - sys_corr_53: 5.20063220e+01 - sys_corr_54: 7.43253338e+01 + sys_corr_50: -8.03583757e+00 + sys_corr_51: 2.06392669e+01 + sys_corr_52: 3.42336619e+01 + sys_corr_53: -5.20063220e+01 + sys_corr_54: -7.43253338e+01 sys_corr_55: -7.86529097e+01 sys_corr_56: -1.18164831e+01 - sys_corr_57: 5.63090815e+01 + sys_corr_57: -5.63090815e+01 sys_corr_58: 4.77085763e+01 - sys_corr_59: 1.94457782e+01 + sys_corr_59: -1.94457782e+01 sys_corr_60: 3.06867187e+01 sys_corr_61: 1.06484411e+01 sys_corr_62: 3.69448902e+01 - sys_corr_63: -2.62554907e+01 + sys_corr_63: 2.62554907e+01 sys_corr_64: -2.10146707e+01 sys_corr_65: -1.31191114e+01 - sys_corr_66: 3.19620088e+01 - sys_corr_67: -9.91922839e+01 - sys_corr_68: -2.96941169e+01 - sys_corr_69: -2.25312175e+01 - sys_corr_70: 1.28037986e+01 - sys_corr_71: -1.42552458e+01 - sys_corr_72: -1.17790971e+02 - sys_corr_73: -3.36282245e+01 - sys_corr_74: 2.09280035e+01 - sys_corr_75: 1.16199684e+01 + sys_corr_66: -3.19620088e+01 + sys_corr_67: 9.91922839e+01 + sys_corr_68: 2.96941169e+01 + sys_corr_69: 2.25312175e+01 + sys_corr_70: -1.28037986e+01 + sys_corr_71: -3.36282245e+01 + sys_corr_72: 1.17790971e+02 + sys_corr_73: 1.42552458e+01 + sys_corr_74: -2.09280035e+01 + sys_corr_75: -1.16199684e+01 sys_corr_76: 1.18688250e+01 sys_corr_77: -1.62531706e-01 - sys_corr_78: -8.90246083e+00 + sys_corr_78: -3.58924279e+00 sys_corr_79: 1.23067050e+01 - sys_corr_80: 3.58924279e+00 + sys_corr_80: 8.90246083e+00 sys_corr_81: 4.81637081e+00 - sys_corr_82: -1.70597050e+01 - sys_corr_83: 4.15318273e+00 + sys_corr_82: 4.15318273e+00 + sys_corr_83: 1.70597050e+01 sys_corr_84: 5.82655888e-01 - sys_corr_85: 3.95937309e+00 - sys_corr_86: -1.60458331e+01 + sys_corr_85: -3.95937309e+00 + sys_corr_86: 1.60458331e+01 sys_corr_87: -1.56731807e+01 sys_corr_88: 3.00606341e+01 - sys_corr_89: -2.70643757e+00 - sys_corr_90: -2.76095644e+00 + sys_corr_89: 2.70643757e+00 + sys_corr_90: 2.76095644e+00 sys_corr_91: -4.51591290e+00 - sys_corr_92: 1.42183280e+01 - sys_corr_93: -4.91711999e-03 + sys_corr_92: -1.42183280e+01 + sys_corr_93: 8.11524923e-01 sys_corr_94: 4.38936558e-01 - sys_corr_95: -8.11524923e-01 + sys_corr_95: 4.91711999e-03 sys_corr_96: -2.99590421e-02 sys_corr_97: 1.05422249e+00 sys_corr_98: 6.13027518e-01 sys_corr_99: 7.81331780e-01 - sys_corr_100: 8.30012105e-01 - sys_corr_101: -6.88461183e-01 - sys_corr_102: 1.20160773e+00 - sys_corr_103: -1.11974200e+00 - sys_corr_104: 1.94409966e+00 - sys_corr_105: 3.88022426e-01 - sys_corr_106: -5.70312352e-01 - sys_corr_107: -7.23955525e-01 - sys_corr_108: -2.19996539e-01 - sys_corr_109: 3.09088041e-01 - sys_corr_110: 6.03641972e-02 - sys_corr_111: 1.05346869e-01 - sys_corr_112: 1.33430293e-01 + sys_corr_100: 1.94409966e+00 + sys_corr_101: -1.11974200e+00 + sys_corr_102: -3.88022426e-01 + sys_corr_103: -1.20160773e+00 + sys_corr_104: -6.88461183e-01 + sys_corr_105: 8.30012105e-01 + sys_corr_106: 5.70312352e-01 + sys_corr_107: 7.23955525e-01 + sys_corr_108: -1.05346869e-01 + sys_corr_109: 2.19996539e-01 + sys_corr_110: -3.09088041e-01 + sys_corr_111: 6.03641972e-02 + sys_corr_112: -1.33430293e-01 sys_corr_113: 7.91196823e-02 sys_corr_114: -7.94486963e-04 - sys_corr_115: 3.47664275e-02 - sys_corr_116: -2.38240238e-02 + sys_corr_115: -3.47664275e-02 + sys_corr_116: 2.38240238e-02 sys_corr_117: 3.09185467e-02 - sys_corr_118: 1.12423925e-01 - sys_corr_119: 2.52959466e-03 + sys_corr_118: -1.12423925e-01 + sys_corr_119: -2.52959466e-03 sys_corr_120: 3.71651633e-02 sys_corr_121: -7.48517750e-03 sys_corr_122: -1.23508921e-01 - sys_corr_123: 6.95507416e-02 + sys_corr_123: -6.95507416e-02 sys_corr_124: 2.82723200e-02 - sys_corr_125: 9.56568224e-02 + sys_corr_125: -9.56568224e-02 sys_corr_126: -3.34916330e-02 - sys_corr_127: 3.18186773e-01 - sys_corr_128: -2.18161369e-01 - sys_corr_129: -7.96226759e-02 + sys_corr_127: -3.18186773e-01 + sys_corr_128: 2.18161369e-01 + sys_corr_129: 7.96226759e-02 sys_corr_130: -5.39022196e-03 - sys_corr_131: 4.23994545e-02 - sys_corr_132: 7.02665217e-03 + sys_corr_131: 7.02665217e-03 + sys_corr_132: -4.23994545e-02 stat: 0.0 luminosity: 3.09411498e+02 - sys_corr_1: 1.15363964e+02 @@ -3088,26 +3088,26 @@ bins: sys_corr_4: -1.65632079e+02 sys_corr_5: -2.29220165e+01 sys_corr_6: 5.17259785e+01 - sys_corr_7: 5.03317838e+01 - sys_corr_8: 8.63429918e+01 + sys_corr_7: -5.03317838e+01 + sys_corr_8: -8.63429918e+01 sys_corr_9: -1.62924247e+02 - sys_corr_10: 4.17042935e+01 - sys_corr_11: 1.65293966e+02 - sys_corr_12: 2.51157638e+02 + sys_corr_10: -4.17042935e+01 + sys_corr_11: -1.65293966e+02 + sys_corr_12: -2.51157638e+02 sys_corr_13: 1.92535732e+02 - sys_corr_14: 2.27056389e+01 - sys_corr_15: 5.37649550e+01 - sys_corr_16: -4.66722919e+01 - sys_corr_17: -4.56758215e+01 - sys_corr_18: -1.70808508e+01 - sys_corr_19: 4.36566928e+01 - sys_corr_20: -1.31421415e+01 - sys_corr_21: 1.11514537e+01 - sys_corr_22: -3.55411034e+02 - sys_corr_23: -6.96307199e+01 - sys_corr_24: -5.28798168e+00 - sys_corr_25: -8.50352221e+01 - sys_corr_26: -1.66066349e+02 + sys_corr_14: -2.27056389e+01 + sys_corr_15: -5.37649550e+01 + sys_corr_16: 4.66722919e+01 + sys_corr_17: 4.56758215e+01 + sys_corr_18: 1.70808508e+01 + sys_corr_19: -4.36566928e+01 + sys_corr_20: 1.31421415e+01 + sys_corr_21: -1.11514537e+01 + sys_corr_22: 3.55411034e+02 + sys_corr_23: 6.96307199e+01 + sys_corr_24: 5.28798168e+00 + sys_corr_25: 8.50352221e+01 + sys_corr_26: 1.66066349e+02 sys_corr_27: 9.42256027e+01 sys_corr_28: -2.67537993e+01 sys_corr_29: 1.98378565e+01 @@ -3120,100 +3120,100 @@ bins: sys_corr_36: 4.98964190e+00 sys_corr_37: -8.99424640e+00 sys_corr_38: 7.05808829e+00 - sys_corr_39: -1.63412631e+00 + sys_corr_39: 1.63412631e+00 sys_corr_40: -8.21432482e+00 sys_corr_41: 1.25904771e+01 - sys_corr_42: 1.09452586e+01 + sys_corr_42: -1.09452586e+01 sys_corr_43: -5.57413880e+00 - sys_corr_44: -1.13834269e+01 - sys_corr_45: 1.16189312e+01 - sys_corr_46: -2.67015957e+00 - sys_corr_47: 2.33676892e+01 - sys_corr_48: -1.57346295e+01 + sys_corr_44: 1.13834269e+01 + sys_corr_45: -1.16189312e+01 + sys_corr_46: 2.67015957e+00 + sys_corr_47: -2.33676892e+01 + sys_corr_48: 1.57346295e+01 sys_corr_49: -1.12340278e+01 - sys_corr_50: -8.52051835e+00 - sys_corr_51: 2.80834088e+01 - sys_corr_52: -1.60548186e+00 - sys_corr_53: -3.84197996e+01 - sys_corr_54: -6.58057762e+00 + sys_corr_50: 8.52051835e+00 + sys_corr_51: -2.80834088e+01 + sys_corr_52: 1.60548186e+00 + sys_corr_53: 3.84197996e+01 + sys_corr_54: 6.58057762e+00 sys_corr_55: -1.46615115e+00 sys_corr_56: -1.68674229e+01 - sys_corr_57: 1.86956099e+01 + sys_corr_57: -1.86956099e+01 sys_corr_58: -2.80352963e+01 - sys_corr_59: -5.63131650e+01 + sys_corr_59: 5.63131650e+01 sys_corr_60: -2.63223874e+01 sys_corr_61: 1.22802626e+01 sys_corr_62: -4.36716570e+01 - sys_corr_63: -1.54964987e+01 + sys_corr_63: 1.54964987e+01 sys_corr_64: 1.87030548e+01 sys_corr_65: 1.14645753e+01 - sys_corr_66: 6.10867010e+01 - sys_corr_67: 6.28791754e+01 - sys_corr_68: -9.39313717e+00 - sys_corr_69: -3.57524922e+00 - sys_corr_70: 1.27510195e+00 - sys_corr_71: 9.82886376e+00 - sys_corr_72: 2.96986106e+01 - sys_corr_73: -8.32499617e+00 - sys_corr_74: -1.29337223e+02 - sys_corr_75: -5.10602478e+01 + sys_corr_66: -6.10867010e+01 + sys_corr_67: -6.28791754e+01 + sys_corr_68: 9.39313717e+00 + sys_corr_69: 3.57524922e+00 + sys_corr_70: -1.27510195e+00 + sys_corr_71: -8.32499617e+00 + sys_corr_72: -2.96986106e+01 + sys_corr_73: -9.82886376e+00 + sys_corr_74: 1.29337223e+02 + sys_corr_75: 5.10602478e+01 sys_corr_76: -6.60641894e+01 sys_corr_77: -5.50040269e+00 - sys_corr_78: -6.10173493e+00 + sys_corr_78: -9.94832274e+00 sys_corr_79: 1.91812312e+01 - sys_corr_80: 9.94832274e+00 + sys_corr_80: 6.10173493e+00 sys_corr_81: 1.87472928e+01 - sys_corr_82: 1.14324709e+01 - sys_corr_83: 1.22032690e+00 + sys_corr_82: 1.22032690e+00 + sys_corr_83: -1.14324709e+01 sys_corr_84: 3.76965081e-01 - sys_corr_85: -3.28197731e+00 - sys_corr_86: -6.37255144e+01 + sys_corr_85: 3.28197731e+00 + sys_corr_86: 6.37255144e+01 sys_corr_87: 8.80253846e+00 sys_corr_88: 1.59136322e+01 - sys_corr_89: 4.04775978e+00 - sys_corr_90: 3.11186436e+00 + sys_corr_89: -4.04775978e+00 + sys_corr_90: -3.11186436e+00 sys_corr_91: 2.78626413e+00 - sys_corr_92: 5.55767541e+01 - sys_corr_93: 1.66249704e-01 + sys_corr_92: -5.55767541e+01 + sys_corr_93: -1.98135597e+00 sys_corr_94: 1.64427452e-01 - sys_corr_95: 1.98135597e+00 + sys_corr_95: -1.66249704e-01 sys_corr_96: -4.63774717e-02 sys_corr_97: 1.30663307e-01 sys_corr_98: 2.30383227e-01 sys_corr_99: 1.23009184e-01 - sys_corr_100: 1.35286534e-01 - sys_corr_101: -1.74444111e-01 - sys_corr_102: 5.81053270e-01 - sys_corr_103: -1.10764791e+00 - sys_corr_104: 4.62186412e-01 - sys_corr_105: -3.30493194e-01 - sys_corr_106: -3.60936027e-01 - sys_corr_107: -3.26796151e-03 - sys_corr_108: -1.69411300e-01 - sys_corr_109: -8.64329788e-02 - sys_corr_110: -5.16263126e-03 - sys_corr_111: -8.22035826e-02 - sys_corr_112: -1.95809587e-02 + sys_corr_100: 4.62186412e-01 + sys_corr_101: -1.10764791e+00 + sys_corr_102: 3.30493194e-01 + sys_corr_103: -5.81053270e-01 + sys_corr_104: -1.74444111e-01 + sys_corr_105: 1.35286534e-01 + sys_corr_106: 3.60936027e-01 + sys_corr_107: 3.26796151e-03 + sys_corr_108: 8.22035826e-02 + sys_corr_109: 1.69411300e-01 + sys_corr_110: 8.64329788e-02 + sys_corr_111: -5.16263126e-03 + sys_corr_112: 1.95809587e-02 sys_corr_113: -1.26157274e-01 sys_corr_114: 1.28938199e-03 - sys_corr_115: 4.71775590e-02 - sys_corr_116: -3.82372925e-02 + sys_corr_115: -4.71775590e-02 + sys_corr_116: 3.82372925e-02 sys_corr_117: 2.33973761e-02 - sys_corr_118: -7.72620217e-02 - sys_corr_119: 1.12238727e-03 + sys_corr_118: 7.72620217e-02 + sys_corr_119: -1.12238727e-03 sys_corr_120: 1.50217133e-02 sys_corr_121: 4.37789411e-03 sys_corr_122: -1.43232367e-02 - sys_corr_123: 1.02044512e-02 + sys_corr_123: -1.02044512e-02 sys_corr_124: 3.73631078e-02 - sys_corr_125: 2.68721291e-02 + sys_corr_125: -2.68721291e-02 sys_corr_126: 5.82124099e-03 - sys_corr_127: 2.81686847e-02 - sys_corr_128: -2.16233976e-02 - sys_corr_129: 7.85012156e-02 + sys_corr_127: -2.81686847e-02 + sys_corr_128: 2.16233976e-02 + sys_corr_129: -7.85012156e-02 sys_corr_130: -1.80394260e-03 - sys_corr_131: 2.19148862e-02 - sys_corr_132: -5.50520775e-02 + sys_corr_131: -5.50520775e-02 + sys_corr_132: -2.19148862e-02 stat: 0.0 luminosity: 2.77542496e+02 - sys_corr_1: 1.01192154e+02 @@ -3222,26 +3222,26 @@ bins: sys_corr_4: -1.42252890e+02 sys_corr_5: -5.77560714e+00 sys_corr_6: 6.85990626e+01 - sys_corr_7: 4.20388230e-01 - sys_corr_8: 5.35481781e+01 + sys_corr_7: -4.20388230e-01 + sys_corr_8: -5.35481781e+01 sys_corr_9: -1.02422712e+02 - sys_corr_10: 3.40961493e+01 - sys_corr_11: 1.03927191e+02 - sys_corr_12: 1.49063743e+02 + sys_corr_10: -3.40961493e+01 + sys_corr_11: -1.03927191e+02 + sys_corr_12: -1.49063743e+02 sys_corr_13: 1.28673996e+02 - sys_corr_14: 5.81152054e+00 - sys_corr_15: 3.24781384e+01 - sys_corr_16: -4.06862890e+01 - sys_corr_17: -2.91901987e+01 - sys_corr_18: -1.31691320e+01 - sys_corr_19: 3.59078922e+01 - sys_corr_20: -3.18348505e+01 - sys_corr_21: 3.02311073e-01 - sys_corr_22: -3.36967621e+02 - sys_corr_23: -5.73531188e+01 - sys_corr_24: 1.13042452e+02 - sys_corr_25: -6.60055549e+01 - sys_corr_26: -1.33108724e+02 + sys_corr_14: -5.81152054e+00 + sys_corr_15: -3.24781384e+01 + sys_corr_16: 4.06862890e+01 + sys_corr_17: 2.91901987e+01 + sys_corr_18: 1.31691320e+01 + sys_corr_19: -3.59078922e+01 + sys_corr_20: 3.18348505e+01 + sys_corr_21: -3.02311073e-01 + sys_corr_22: 3.36967621e+02 + sys_corr_23: 5.73531188e+01 + sys_corr_24: -1.13042452e+02 + sys_corr_25: 6.60055549e+01 + sys_corr_26: 1.33108724e+02 sys_corr_27: 1.33941629e+02 sys_corr_28: -6.34724101e+01 sys_corr_29: 4.53610762e+00 @@ -3254,100 +3254,100 @@ bins: sys_corr_36: 1.07178864e+01 sys_corr_37: -1.48841048e+00 sys_corr_38: -1.60349619e+00 - sys_corr_39: -4.32920495e+00 + sys_corr_39: 4.32920495e+00 sys_corr_40: 3.81457485e-01 sys_corr_41: -8.11589343e+00 - sys_corr_42: 1.36614484e+00 + sys_corr_42: -1.36614484e+00 sys_corr_43: -5.93594827e+00 - sys_corr_44: 1.61969560e+01 - sys_corr_45: -1.05948131e+00 - sys_corr_46: -7.52830181e+00 - sys_corr_47: 1.47796867e+01 - sys_corr_48: -6.99685645e+00 + sys_corr_44: -1.61969560e+01 + sys_corr_45: 1.05948131e+00 + sys_corr_46: 7.52830181e+00 + sys_corr_47: -1.47796867e+01 + sys_corr_48: 6.99685645e+00 sys_corr_49: -2.01432871e+01 - sys_corr_50: -3.72448226e+00 - sys_corr_51: 5.68693254e+00 - sys_corr_52: 1.11994206e+01 - sys_corr_53: 1.24532810e+01 - sys_corr_54: -8.23892587e-01 + sys_corr_50: 3.72448226e+00 + sys_corr_51: -5.68693254e+00 + sys_corr_52: -1.11994206e+01 + sys_corr_53: -1.24532810e+01 + sys_corr_54: 8.23892587e-01 sys_corr_55: -4.10432163e+01 sys_corr_56: 2.67812379e+01 - sys_corr_57: -2.46140346e+01 + sys_corr_57: 2.46140346e+01 sys_corr_58: 2.54439971e+01 - sys_corr_59: 3.61089966e+01 + sys_corr_59: -3.61089966e+01 sys_corr_60: 3.37444818e+01 sys_corr_61: -1.64905106e+01 sys_corr_62: 7.20451698e+01 - sys_corr_63: -3.88700474e+01 + sys_corr_63: 3.88700474e+01 sys_corr_64: -7.19829506e+00 sys_corr_65: 4.48619543e-01 - sys_corr_66: -1.50626128e+02 - sys_corr_67: -4.87830724e+01 - sys_corr_68: -4.42127794e+00 - sys_corr_69: 2.66773782e+01 - sys_corr_70: -2.07056000e+01 - sys_corr_71: 1.20994539e+01 - sys_corr_72: 5.57021739e+01 - sys_corr_73: 5.38824571e+01 - sys_corr_74: -4.77551099e+01 - sys_corr_75: 7.27636550e+00 + sys_corr_66: 1.50626128e+02 + sys_corr_67: 4.87830724e+01 + sys_corr_68: 4.42127794e+00 + sys_corr_69: -2.66773782e+01 + sys_corr_70: 2.07056000e+01 + sys_corr_71: 5.38824571e+01 + sys_corr_72: -5.57021739e+01 + sys_corr_73: -1.20994539e+01 + sys_corr_74: 4.77551099e+01 + sys_corr_75: -7.27636550e+00 sys_corr_76: 5.81642017e+00 sys_corr_77: -2.85810419e+00 - sys_corr_78: 5.53680694e+00 + sys_corr_78: 1.91218598e+00 sys_corr_79: -1.51278060e+01 - sys_corr_80: -1.91218598e+00 + sys_corr_80: -5.53680694e+00 sys_corr_81: -1.78853844e+01 - sys_corr_82: 1.03574611e+01 - sys_corr_83: -1.69877109e+01 + sys_corr_82: -1.69877109e+01 + sys_corr_83: -1.03574611e+01 sys_corr_84: 4.34520554e+00 - sys_corr_85: -1.67451678e+00 - sys_corr_86: 2.65526769e+01 + sys_corr_85: 1.67451678e+00 + sys_corr_86: -2.65526769e+01 sys_corr_87: 2.07698526e+01 sys_corr_88: -4.59845334e+01 - sys_corr_89: 4.53512630e+00 - sys_corr_90: -3.49807810e+00 + sys_corr_89: -4.53512630e+00 + sys_corr_90: 3.49807810e+00 sys_corr_91: 6.89122161e+00 - sys_corr_92: -2.04859606e+01 - sys_corr_93: 1.48268877e+00 + sys_corr_92: 2.04859606e+01 + sys_corr_93: -6.20893434e+00 sys_corr_94: 7.19079944e+00 - sys_corr_95: 6.20893434e+00 + sys_corr_95: -1.48268877e+00 sys_corr_96: -9.57038819e-01 sys_corr_97: -1.46949015e+00 sys_corr_98: -2.56464743e-01 sys_corr_99: -2.29130447e-01 - sys_corr_100: 6.18733852e-02 - sys_corr_101: -1.41551499e-02 - sys_corr_102: 6.56861963e-01 - sys_corr_103: -9.02377958e-01 - sys_corr_104: -1.62867791e+00 - sys_corr_105: -2.75867757e-01 - sys_corr_106: 2.03131547e-01 - sys_corr_107: 2.06897267e-01 - sys_corr_108: -3.10729255e-02 - sys_corr_109: -1.15360365e-01 - sys_corr_110: -2.54612021e-01 - sys_corr_111: 4.23107276e-01 - sys_corr_112: -7.15105431e-02 + sys_corr_100: -1.62867791e+00 + sys_corr_101: -9.02377958e-01 + sys_corr_102: 2.75867757e-01 + sys_corr_103: -6.56861963e-01 + sys_corr_104: -1.41551499e-02 + sys_corr_105: 6.18733852e-02 + sys_corr_106: -2.03131547e-01 + sys_corr_107: -2.06897267e-01 + sys_corr_108: -4.23107276e-01 + sys_corr_109: 3.10729255e-02 + sys_corr_110: 1.15360365e-01 + sys_corr_111: -2.54612021e-01 + sys_corr_112: 7.15105431e-02 sys_corr_113: -8.16591862e-02 sys_corr_114: -2.40612331e-04 - sys_corr_115: -4.13634705e-02 - sys_corr_116: 2.88062903e-02 + sys_corr_115: 4.13634705e-02 + sys_corr_116: -2.88062903e-02 sys_corr_117: -1.71476389e-02 - sys_corr_118: -1.06796512e-01 - sys_corr_119: -1.87471082e-02 + sys_corr_118: 1.06796512e-01 + sys_corr_119: 1.87471082e-02 sys_corr_120: -2.15526169e-02 sys_corr_121: 1.84053936e-02 sys_corr_122: 5.11468697e-02 - sys_corr_123: -3.65997077e-02 + sys_corr_123: 3.65997077e-02 sys_corr_124: -2.21018010e-02 - sys_corr_125: -4.03487016e-02 + sys_corr_125: 4.03487016e-02 sys_corr_126: 2.26375248e-02 - sys_corr_127: 2.65815598e-02 - sys_corr_128: 8.40638608e-02 - sys_corr_129: -4.12929522e-02 + sys_corr_127: -2.65815598e-02 + sys_corr_128: -8.40638608e-02 + sys_corr_129: 4.12929522e-02 sys_corr_130: 2.26223953e-03 - sys_corr_131: -1.44011475e-02 - sys_corr_132: -7.84596397e-02 + sys_corr_131: -7.84596397e-02 + sys_corr_132: 1.44011475e-02 stat: 0.0 luminosity: 2.42393756e+02 - sys_corr_1: 8.03262016e+01 @@ -3356,26 +3356,26 @@ bins: sys_corr_4: -8.71861555e+01 sys_corr_5: -1.41534914e+01 sys_corr_6: 6.09857582e+01 - sys_corr_7: -3.15507165e+01 - sys_corr_8: 2.58394646e+01 + sys_corr_7: 3.15507165e+01 + sys_corr_8: -2.58394646e+01 sys_corr_9: -5.63290509e+01 - sys_corr_10: 2.73658672e+01 - sys_corr_11: 6.45622459e+01 - sys_corr_12: 8.56510828e+01 + sys_corr_10: -2.73658672e+01 + sys_corr_11: -6.45622459e+01 + sys_corr_12: -8.56510828e+01 sys_corr_13: 8.33703905e+01 - sys_corr_14: -6.35797719e+00 - sys_corr_15: 2.25004054e+01 - sys_corr_16: -3.48959397e+01 - sys_corr_17: -1.96949057e+01 - sys_corr_18: -6.57011862e+00 - sys_corr_19: 2.63141225e+01 - sys_corr_20: -2.98826210e+01 - sys_corr_21: -4.83236669e+00 - sys_corr_22: -2.71133823e+02 - sys_corr_23: -4.16180221e+01 - sys_corr_24: 1.30773888e+02 - sys_corr_25: -4.96661713e+01 - sys_corr_26: -1.16427814e+02 + sys_corr_14: 6.35797719e+00 + sys_corr_15: -2.25004054e+01 + sys_corr_16: 3.48959397e+01 + sys_corr_17: 1.96949057e+01 + sys_corr_18: 6.57011862e+00 + sys_corr_19: -2.63141225e+01 + sys_corr_20: 2.98826210e+01 + sys_corr_21: 4.83236669e+00 + sys_corr_22: 2.71133823e+02 + sys_corr_23: 4.16180221e+01 + sys_corr_24: -1.30773888e+02 + sys_corr_25: 4.96661713e+01 + sys_corr_26: 1.16427814e+02 sys_corr_27: 1.27662883e+02 sys_corr_28: -5.68517209e+01 sys_corr_29: -1.31971166e+00 @@ -3388,100 +3388,100 @@ bins: sys_corr_36: 1.92345277e+01 sys_corr_37: 5.03149299e+00 sys_corr_38: -5.54524610e+00 - sys_corr_39: -6.06629174e+00 + sys_corr_39: 6.06629174e+00 sys_corr_40: 1.13754840e+01 sys_corr_41: -1.06622796e+01 - sys_corr_42: 1.75895962e+00 + sys_corr_42: -1.75895962e+00 sys_corr_43: -5.14404073e+00 - sys_corr_44: 4.77424685e+00 - sys_corr_45: -7.53413606e+00 - sys_corr_46: -7.20122932e+00 - sys_corr_47: -1.93399481e+00 - sys_corr_48: -1.43256867e+01 + sys_corr_44: -4.77424685e+00 + sys_corr_45: 7.53413606e+00 + sys_corr_46: 7.20122932e+00 + sys_corr_47: 1.93399481e+00 + sys_corr_48: 1.43256867e+01 sys_corr_49: 8.34538386e-02 - sys_corr_50: 2.12360100e+01 - sys_corr_51: -1.47001602e+01 - sys_corr_52: -5.70895591e+00 - sys_corr_53: -3.77639145e+00 - sys_corr_54: -1.66316649e+01 + sys_corr_50: -2.12360100e+01 + sys_corr_51: 1.47001602e+01 + sys_corr_52: 5.70895591e+00 + sys_corr_53: 3.77639145e+00 + sys_corr_54: 1.66316649e+01 sys_corr_55: 5.24499029e+01 sys_corr_56: -3.21675067e+00 - sys_corr_57: -2.50820253e+00 + sys_corr_57: 2.50820253e+00 sys_corr_58: -7.40312265e+00 - sys_corr_59: -1.60408473e+01 + sys_corr_59: 1.60408473e+01 sys_corr_60: -1.10602847e+01 sys_corr_61: 1.11425840e+00 sys_corr_62: -3.40721903e+01 - sys_corr_63: 2.83414228e+01 + sys_corr_63: -2.83414228e+01 sys_corr_64: 1.49112419e+01 sys_corr_65: -4.41847421e+00 - sys_corr_66: 9.70440887e+01 - sys_corr_67: 2.85512689e+01 - sys_corr_68: -2.34818543e+00 - sys_corr_69: -3.87422342e+01 - sys_corr_70: 5.07728402e+00 - sys_corr_71: 4.11236777e+01 - sys_corr_72: -2.75918007e+01 - sys_corr_73: -7.59680467e+01 - sys_corr_74: 2.15981273e+01 - sys_corr_75: 4.23769520e+01 + sys_corr_66: -9.70440887e+01 + sys_corr_67: -2.85512689e+01 + sys_corr_68: 2.34818543e+00 + sys_corr_69: 3.87422342e+01 + sys_corr_70: -5.07728402e+00 + sys_corr_71: -7.59680467e+01 + sys_corr_72: 2.75918007e+01 + sys_corr_73: -4.11236777e+01 + sys_corr_74: -2.15981273e+01 + sys_corr_75: -4.23769520e+01 sys_corr_76: 4.73097116e+01 sys_corr_77: 1.53654963e+01 - sys_corr_78: 4.14215496e+00 + sys_corr_78: 1.89555335e+01 sys_corr_79: -6.05715867e+01 - sys_corr_80: -1.89555335e+01 + sys_corr_80: -4.14215496e+00 sys_corr_81: -1.62650522e+01 - sys_corr_82: 1.42180357e-01 - sys_corr_83: -1.07983659e+01 + sys_corr_82: -1.07983659e+01 + sys_corr_83: -1.42180357e-01 sys_corr_84: 5.57024556e+00 - sys_corr_85: -3.64643849e+00 - sys_corr_86: 8.86547515e+01 + sys_corr_85: 3.64643849e+00 + sys_corr_86: -8.86547515e+01 sys_corr_87: 8.64906338e+00 sys_corr_88: -6.69854635e+01 - sys_corr_89: 2.95562873e+00 - sys_corr_90: -6.18794532e+00 + sys_corr_89: -2.95562873e+00 + sys_corr_90: 6.18794532e+00 sys_corr_91: 3.73328230e+00 - sys_corr_92: -3.97050542e+01 - sys_corr_93: 3.30196546e+00 + sys_corr_92: 3.97050542e+01 + sys_corr_93: -1.68943980e+01 sys_corr_94: 1.58209985e+01 - sys_corr_95: 1.68943980e+01 + sys_corr_95: -3.30196546e+00 sys_corr_96: -2.33775068e+00 sys_corr_97: -4.13304507e+00 sys_corr_98: -1.08755778e+00 sys_corr_99: -7.96839861e-01 - sys_corr_100: -2.89042763e-01 - sys_corr_101: 1.01428613e-01 - sys_corr_102: 3.78271299e-01 - sys_corr_103: -3.77771301e-01 - sys_corr_104: -4.88817360e+00 - sys_corr_105: 6.64507469e-01 - sys_corr_106: 7.16908666e-01 - sys_corr_107: 9.48100341e-01 - sys_corr_108: 1.59806319e-01 - sys_corr_109: -5.89957739e-02 - sys_corr_110: -3.01261716e-01 - sys_corr_111: 1.06573850e+00 - sys_corr_112: -1.78959295e-01 + sys_corr_100: -4.88817360e+00 + sys_corr_101: -3.77771301e-01 + sys_corr_102: -6.64507469e-01 + sys_corr_103: -3.78271299e-01 + sys_corr_104: 1.01428613e-01 + sys_corr_105: -2.89042763e-01 + sys_corr_106: -7.16908666e-01 + sys_corr_107: -9.48100341e-01 + sys_corr_108: -1.06573850e+00 + sys_corr_109: -1.59806319e-01 + sys_corr_110: 5.89957739e-02 + sys_corr_111: -3.01261716e-01 + sys_corr_112: 1.78959295e-01 sys_corr_113: -1.72636086e-01 sys_corr_114: 9.17143794e-04 - sys_corr_115: -1.32894896e-01 - sys_corr_116: 2.80592894e-02 + sys_corr_115: 1.32894896e-01 + sys_corr_116: -2.80592894e-02 sys_corr_117: -1.59276801e-02 - sys_corr_118: -6.17785096e-02 - sys_corr_119: -2.42082613e-03 + sys_corr_118: 6.17785096e-02 + sys_corr_119: 2.42082613e-03 sys_corr_120: -2.18686337e-02 sys_corr_121: 1.28724423e-02 sys_corr_122: 5.57204646e-02 - sys_corr_123: -3.65900389e-02 + sys_corr_123: 3.65900389e-02 sys_corr_124: -2.23360075e-03 - sys_corr_125: -4.08558777e-02 + sys_corr_125: 4.08558777e-02 sys_corr_126: 1.92817075e-02 - sys_corr_127: -3.67673687e-01 - sys_corr_128: 4.23268053e-01 - sys_corr_129: -3.41266012e-02 + sys_corr_127: 3.67673687e-01 + sys_corr_128: -4.23268053e-01 + sys_corr_129: 3.41266012e-02 sys_corr_130: -6.56057761e-04 - sys_corr_131: -2.05921816e-02 - sys_corr_132: 1.74896868e-02 + sys_corr_131: 1.74896868e-02 + sys_corr_132: 2.05921816e-02 stat: 0.0 luminosity: 1.84882214e+02 - sys_corr_1: 7.29461481e+01 @@ -3490,26 +3490,26 @@ bins: sys_corr_4: -6.17746581e+01 sys_corr_5: -1.66288671e+01 sys_corr_6: 5.33997231e+01 - sys_corr_7: -3.97790606e+01 - sys_corr_8: 1.35082301e+01 + sys_corr_7: 3.97790606e+01 + sys_corr_8: -1.35082301e+01 sys_corr_9: -2.83954505e+01 - sys_corr_10: 2.26804787e+01 - sys_corr_11: 3.63608535e+01 - sys_corr_12: 3.11427796e+01 + sys_corr_10: -2.26804787e+01 + sys_corr_11: -3.63608535e+01 + sys_corr_12: -3.11427796e+01 sys_corr_13: 4.51296756e+01 - sys_corr_14: -9.58205441e+00 - sys_corr_15: 1.24739809e+01 - sys_corr_16: -2.23607003e+01 - sys_corr_17: -1.39764806e+01 - sys_corr_18: -6.49124622e+00 - sys_corr_19: 1.73863374e+01 - sys_corr_20: -3.08388540e+01 - sys_corr_21: -6.06502745e+00 - sys_corr_22: -1.92094483e+02 - sys_corr_23: -3.24768027e+01 - sys_corr_24: 1.63854273e+02 - sys_corr_25: -3.43356282e+01 - sys_corr_26: -8.31768039e+01 + sys_corr_14: 9.58205441e+00 + sys_corr_15: -1.24739809e+01 + sys_corr_16: 2.23607003e+01 + sys_corr_17: 1.39764806e+01 + sys_corr_18: 6.49124622e+00 + sys_corr_19: -1.73863374e+01 + sys_corr_20: 3.08388540e+01 + sys_corr_21: 6.06502745e+00 + sys_corr_22: 1.92094483e+02 + sys_corr_23: 3.24768027e+01 + sys_corr_24: -1.63854273e+02 + sys_corr_25: 3.43356282e+01 + sys_corr_26: 8.31768039e+01 sys_corr_27: 1.24310052e+02 sys_corr_28: -6.01238440e+01 sys_corr_29: -1.55661995e+01 @@ -3522,100 +3522,100 @@ bins: sys_corr_36: 2.12819793e+01 sys_corr_37: 4.04509716e+00 sys_corr_38: -3.67282589e+00 - sys_corr_39: -1.04675137e+01 + sys_corr_39: 1.04675137e+01 sys_corr_40: 1.62695179e+01 sys_corr_41: -2.42979935e+01 - sys_corr_42: -3.57616423e+00 + sys_corr_42: 3.57616423e+00 sys_corr_43: -1.20842011e+01 - sys_corr_44: 2.03309104e+01 - sys_corr_45: -2.78911049e+00 - sys_corr_46: -1.24021204e+01 - sys_corr_47: 1.64924243e+00 - sys_corr_48: -1.08072439e+00 + sys_corr_44: -2.03309104e+01 + sys_corr_45: 2.78911049e+00 + sys_corr_46: 1.24021204e+01 + sys_corr_47: -1.64924243e+00 + sys_corr_48: 1.08072439e+00 sys_corr_49: 2.21479261e+00 - sys_corr_50: 4.19824254e+01 - sys_corr_51: -1.22879141e+01 - sys_corr_52: -1.58081419e+01 - sys_corr_53: -2.73660525e+01 - sys_corr_54: -2.87071703e+01 + sys_corr_50: -4.19824254e+01 + sys_corr_51: 1.22879141e+01 + sys_corr_52: 1.58081419e+01 + sys_corr_53: 2.73660525e+01 + sys_corr_54: 2.87071703e+01 sys_corr_55: 9.27721934e+01 sys_corr_56: -6.11240197e+00 - sys_corr_57: -2.24605023e+01 + sys_corr_57: 2.24605023e+01 sys_corr_58: -4.60454001e+01 - sys_corr_59: -2.35584322e+00 + sys_corr_59: 2.35584322e+00 sys_corr_60: -1.27641669e+01 sys_corr_61: -2.38441676e+01 sys_corr_62: -3.43909859e+01 - sys_corr_63: -1.41485185e+01 + sys_corr_63: 1.41485185e+01 sys_corr_64: -6.46539477e+01 sys_corr_65: -3.27033221e+00 - sys_corr_66: -2.84994888e+01 - sys_corr_67: 1.54846332e+01 - sys_corr_68: 3.03544436e+01 - sys_corr_69: 1.02239759e+01 - sys_corr_70: 1.79997880e+01 - sys_corr_71: -6.21859802e+01 - sys_corr_72: -6.33780538e+01 - sys_corr_73: 6.34744307e+01 - sys_corr_74: 9.92392691e+01 - sys_corr_75: -9.48486460e+00 + sys_corr_66: 2.84994888e+01 + sys_corr_67: -1.54846332e+01 + sys_corr_68: -3.03544436e+01 + sys_corr_69: -1.02239759e+01 + sys_corr_70: -1.79997880e+01 + sys_corr_71: 6.34744307e+01 + sys_corr_72: 6.33780538e+01 + sys_corr_73: 6.21859802e+01 + sys_corr_74: -9.92392691e+01 + sys_corr_75: 9.48486460e+00 sys_corr_76: -2.15761215e+01 sys_corr_77: 4.90106864e-01 - sys_corr_78: -8.37675891e-02 + sys_corr_78: -6.01587895e+00 sys_corr_79: 2.42274122e+01 - sys_corr_80: 6.01587895e+00 + sys_corr_80: 8.37675891e-02 sys_corr_81: 1.74451492e+01 - sys_corr_82: -1.43687759e+01 - sys_corr_83: 1.09399807e+01 + sys_corr_82: 1.09399807e+01 + sys_corr_83: 1.43687759e+01 sys_corr_84: -1.05114107e+01 - sys_corr_85: -9.71273069e+00 - sys_corr_86: -4.67883334e+01 + sys_corr_85: 9.71273069e+00 + sys_corr_86: 4.67883334e+01 sys_corr_87: -2.80290554e+01 sys_corr_88: 6.83771902e+01 - sys_corr_89: -4.47190317e+00 - sys_corr_90: 7.77922323e+00 + sys_corr_89: 4.47190317e+00 + sys_corr_90: -7.77922323e+00 sys_corr_91: -1.57421211e+00 - sys_corr_92: 7.87052325e+00 - sys_corr_93: 3.55391849e+00 + sys_corr_92: -7.87052325e+00 + sys_corr_93: -1.26684942e+01 sys_corr_94: 1.57144316e+01 - sys_corr_95: 1.26684942e+01 + sys_corr_95: -3.55391849e+00 sys_corr_96: -1.48127999e+00 sys_corr_97: -1.90413434e+00 sys_corr_98: -2.36509901e-01 sys_corr_99: 1.14015299e-02 - sys_corr_100: 5.04351629e-02 - sys_corr_101: -8.39054491e-02 - sys_corr_102: 1.32826876e-01 - sys_corr_103: 2.42167589e+00 - sys_corr_104: -3.46310746e+00 - sys_corr_105: 2.11201221e+00 - sys_corr_106: -9.83626947e-02 - sys_corr_107: 1.53702132e-01 - sys_corr_108: 1.27195690e-01 - sys_corr_109: -3.21852530e-01 - sys_corr_110: -1.44146642e-01 - sys_corr_111: -1.00147937e-01 - sys_corr_112: -1.32379009e-01 + sys_corr_100: -3.46310746e+00 + sys_corr_101: 2.42167589e+00 + sys_corr_102: -2.11201221e+00 + sys_corr_103: -1.32826876e-01 + sys_corr_104: -8.39054491e-02 + sys_corr_105: 5.04351629e-02 + sys_corr_106: 9.83626947e-02 + sys_corr_107: -1.53702132e-01 + sys_corr_108: 1.00147937e-01 + sys_corr_109: -1.27195690e-01 + sys_corr_110: 3.21852530e-01 + sys_corr_111: -1.44146642e-01 + sys_corr_112: 1.32379009e-01 sys_corr_113: -2.42415154e-01 sys_corr_114: -6.35965283e-03 - sys_corr_115: 2.35417420e-01 - sys_corr_116: -5.86274216e-02 + sys_corr_115: -2.35417420e-01 + sys_corr_116: 5.86274216e-02 sys_corr_117: 3.06194481e-02 - sys_corr_118: 1.71120740e-01 - sys_corr_119: -2.15882688e-03 + sys_corr_118: -1.71120740e-01 + sys_corr_119: 2.15882688e-03 sys_corr_120: 3.78311915e-02 sys_corr_121: -1.14080063e-02 sys_corr_122: -5.71152746e-02 - sys_corr_123: 2.63591007e-02 + sys_corr_123: -2.63591007e-02 sys_corr_124: 1.59152420e-02 - sys_corr_125: 5.96793167e-02 + sys_corr_125: -5.96793167e-02 sys_corr_126: -5.96293918e-03 - sys_corr_127: -3.59616877e-01 - sys_corr_128: 1.27386788e-01 - sys_corr_129: 2.41618192e-01 + sys_corr_127: 3.59616877e-01 + sys_corr_128: -1.27386788e-01 + sys_corr_129: -2.41618192e-01 sys_corr_130: -1.89768354e-02 - sys_corr_131: 3.20924179e-02 - sys_corr_132: 3.26562157e-02 + sys_corr_131: 3.26562157e-02 + sys_corr_132: -3.20924179e-02 stat: 0.0 luminosity: 1.20137182e+02 - sys_corr_1: 2.50011420e+01 @@ -3624,26 +3624,26 @@ bins: sys_corr_4: -2.45991198e+01 sys_corr_5: -6.37282165e+00 sys_corr_6: 2.83300218e+01 - sys_corr_7: -1.23284160e+01 - sys_corr_8: 6.84144124e+00 + sys_corr_7: 1.23284160e+01 + sys_corr_8: -6.84144124e+00 sys_corr_9: -5.25334465e+00 - sys_corr_10: 1.13095409e+01 - sys_corr_11: 1.55670602e+01 - sys_corr_12: 1.36622071e+01 + sys_corr_10: -1.13095409e+01 + sys_corr_11: -1.55670602e+01 + sys_corr_12: -1.36622071e+01 sys_corr_13: 1.36368323e+01 - sys_corr_14: -3.76945997e+00 - sys_corr_15: 3.81029886e+00 - sys_corr_16: -5.41793800e+00 - sys_corr_17: -6.07127651e+00 - sys_corr_18: -1.99297216e+00 - sys_corr_19: 8.99009869e+00 - sys_corr_20: -1.46449629e+01 - sys_corr_21: -2.95663622e+00 - sys_corr_22: -7.64893827e+01 - sys_corr_23: -1.16606731e+01 - sys_corr_24: 6.18222279e+01 - sys_corr_25: -1.37766668e+01 - sys_corr_26: -3.57298693e+01 + sys_corr_14: 3.76945997e+00 + sys_corr_15: -3.81029886e+00 + sys_corr_16: 5.41793800e+00 + sys_corr_17: 6.07127651e+00 + sys_corr_18: 1.99297216e+00 + sys_corr_19: -8.99009869e+00 + sys_corr_20: 1.46449629e+01 + sys_corr_21: 2.95663622e+00 + sys_corr_22: 7.64893827e+01 + sys_corr_23: 1.16606731e+01 + sys_corr_24: -6.18222279e+01 + sys_corr_25: 1.37766668e+01 + sys_corr_26: 3.57298693e+01 sys_corr_27: 4.85350184e+01 sys_corr_28: -2.38917237e+01 sys_corr_29: -3.40189897e+00 @@ -3656,100 +3656,100 @@ bins: sys_corr_36: 9.22833765e+00 sys_corr_37: 4.28789678e+00 sys_corr_38: -3.83645874e+00 - sys_corr_39: -1.16600550e+00 + sys_corr_39: 1.16600550e+00 sys_corr_40: 8.30584954e+00 sys_corr_41: -8.07595792e+00 - sys_corr_42: 1.25424682e+00 + sys_corr_42: -1.25424682e+00 sys_corr_43: -7.49478605e+00 - sys_corr_44: 2.83807238e-01 - sys_corr_45: -1.52519160e+00 - sys_corr_46: -4.30113417e+00 - sys_corr_47: 1.94758112e+00 - sys_corr_48: -1.16328630e+00 + sys_corr_44: -2.83807238e-01 + sys_corr_45: 1.52519160e+00 + sys_corr_46: 4.30113417e+00 + sys_corr_47: -1.94758112e+00 + sys_corr_48: 1.16328630e+00 sys_corr_49: 2.57888767e+00 - sys_corr_50: 1.61907916e+01 - sys_corr_51: -7.00116702e+00 - sys_corr_52: -7.46834309e+00 - sys_corr_53: -3.22920122e+00 - sys_corr_54: -6.96639486e+00 + sys_corr_50: -1.61907916e+01 + sys_corr_51: 7.00116702e+00 + sys_corr_52: 7.46834309e+00 + sys_corr_53: 3.22920122e+00 + sys_corr_54: 6.96639486e+00 sys_corr_55: 1.97037754e+01 sys_corr_56: -3.41618033e-01 - sys_corr_57: -1.56969642e+00 + sys_corr_57: 1.56969642e+00 sys_corr_58: -6.52992323e+00 - sys_corr_59: -1.05931938e+00 + sys_corr_59: 1.05931938e+00 sys_corr_60: -3.42376502e+00 sys_corr_61: -5.21650727e+00 sys_corr_62: -7.91582151e+00 - sys_corr_63: 7.94326732e-01 + sys_corr_63: -7.94326732e-01 sys_corr_64: -8.42770221e+00 sys_corr_65: -2.34509754e+00 - sys_corr_66: 4.29989848e+00 - sys_corr_67: 1.28647506e+00 - sys_corr_68: 1.58975296e-01 - sys_corr_69: -2.52526926e+00 - sys_corr_70: 3.61982775e+00 - sys_corr_71: -1.19191441e+00 - sys_corr_72: -1.12554395e+01 - sys_corr_73: 2.51982479e+00 - sys_corr_74: 7.84977672e+00 - sys_corr_75: 6.26608316e+00 + sys_corr_66: -4.29989848e+00 + sys_corr_67: -1.28647506e+00 + sys_corr_68: -1.58975296e-01 + sys_corr_69: 2.52526926e+00 + sys_corr_70: -3.61982775e+00 + sys_corr_71: 2.51982479e+00 + sys_corr_72: 1.12554395e+01 + sys_corr_73: 1.19191441e+00 + sys_corr_74: -7.84977672e+00 + sys_corr_75: -6.26608316e+00 sys_corr_76: 4.35453742e+00 sys_corr_77: -7.65634365e+00 - sys_corr_78: 1.88274452e+00 + sys_corr_78: -3.06216279e-01 sys_corr_79: -5.19775248e+00 - sys_corr_80: 3.06216279e-01 + sys_corr_80: -1.88274452e+00 sys_corr_81: -5.60240595e+00 - sys_corr_82: -2.70465853e-01 - sys_corr_83: -2.85190501e+00 + sys_corr_82: -2.85190501e+00 + sys_corr_83: 2.70465853e-01 sys_corr_84: 9.84011165e+00 - sys_corr_85: 8.24737941e+00 - sys_corr_86: 7.60064866e+00 + sys_corr_85: -8.24737941e+00 + sys_corr_86: -7.60064866e+00 sys_corr_87: 6.64200060e+00 sys_corr_88: -4.70635588e+00 - sys_corr_89: 1.62744038e+00 - sys_corr_90: -1.08274577e+01 + sys_corr_89: -1.62744038e+00 + sys_corr_90: 1.08274577e+01 sys_corr_91: 4.20481928e+00 - sys_corr_92: -4.12858087e+00 - sys_corr_93: -2.05567159e+01 + sys_corr_92: 4.12858087e+00 + sys_corr_93: 1.04866159e+02 sys_corr_94: -9.58496258e+01 - sys_corr_95: -1.04866159e+02 + sys_corr_95: 2.05567159e+01 sys_corr_96: 1.33120754e+01 sys_corr_97: 3.32511368e+01 sys_corr_98: 6.08136113e+00 sys_corr_99: 7.10177623e+00 - sys_corr_100: 5.30775184e+00 - sys_corr_101: -4.29200052e+00 - sys_corr_102: 6.40424462e+00 - sys_corr_103: -5.09524180e+00 - sys_corr_104: 6.72703259e+00 - sys_corr_105: 3.19328757e+00 - sys_corr_106: -4.45126462e+00 - sys_corr_107: -4.13877087e+00 - sys_corr_108: 5.80766601e-02 - sys_corr_109: 8.66925392e-02 - sys_corr_110: 1.83713286e+00 - sys_corr_111: -5.26151719e+00 - sys_corr_112: -4.25332090e-02 + sys_corr_100: 6.72703259e+00 + sys_corr_101: -5.09524180e+00 + sys_corr_102: -3.19328757e+00 + sys_corr_103: -6.40424462e+00 + sys_corr_104: -4.29200052e+00 + sys_corr_105: 5.30775184e+00 + sys_corr_106: 4.45126462e+00 + sys_corr_107: 4.13877087e+00 + sys_corr_108: 5.26151719e+00 + sys_corr_109: -5.80766601e-02 + sys_corr_110: -8.66925392e-02 + sys_corr_111: 1.83713286e+00 + sys_corr_112: 4.25332090e-02 sys_corr_113: 2.85098504e-01 sys_corr_114: -4.14708970e-03 - sys_corr_115: -3.00334148e-01 - sys_corr_116: -1.11159562e-01 + sys_corr_115: 3.00334148e-01 + sys_corr_116: 1.11159562e-01 sys_corr_117: 7.92641108e-02 - sys_corr_118: -1.28180836e-01 - sys_corr_119: 1.88348759e-02 + sys_corr_118: 1.28180836e-01 + sys_corr_119: -1.88348759e-02 sys_corr_120: 7.29909850e-02 sys_corr_121: -2.33915429e-02 sys_corr_122: -2.50037779e-02 - sys_corr_123: 1.78234012e-02 + sys_corr_123: -1.78234012e-02 sys_corr_124: 1.88913475e-01 - sys_corr_125: 3.34768838e-02 + sys_corr_125: -3.34768838e-02 sys_corr_126: -3.37544249e-03 - sys_corr_127: -9.62395408e-01 - sys_corr_128: 1.42952692e+00 - sys_corr_129: 1.38642726e-01 + sys_corr_127: 9.62395408e-01 + sys_corr_128: -1.42952692e+00 + sys_corr_129: -1.38642726e-01 sys_corr_130: -1.58893093e-02 - sys_corr_131: 4.39562357e-02 - sys_corr_132: -1.16719010e-01 + sys_corr_131: -1.16719010e-01 + sys_corr_132: -4.39562357e-02 stat: 0.0 luminosity: 4.54939760e+01 - sys_corr_1: 3.50446621e+02 @@ -3758,26 +3758,26 @@ bins: sys_corr_4: 1.40172621e+02 sys_corr_5: 1.43414891e+02 sys_corr_6: -7.24503034e+02 - sys_corr_7: 1.63524779e+01 - sys_corr_8: 4.38545750e+00 + sys_corr_7: -1.63524779e+01 + sys_corr_8: -4.38545750e+00 sys_corr_9: -3.20869391e+00 - sys_corr_10: 2.13165978e+00 - sys_corr_11: 5.80561219e+00 - sys_corr_12: -5.12686410e+01 + sys_corr_10: -2.13165978e+00 + sys_corr_11: -5.80561219e+00 + sys_corr_12: 5.12686410e+01 sys_corr_13: -4.90158629e+01 - sys_corr_14: -1.24171706e+01 - sys_corr_15: -2.77694180e+00 - sys_corr_16: 1.14554951e+01 - sys_corr_17: 7.42539095e+00 - sys_corr_18: -3.10390039e+00 - sys_corr_19: -5.29890614e+01 - sys_corr_20: 2.54988997e+01 - sys_corr_21: 1.95998742e+01 - sys_corr_22: 1.23181803e+02 - sys_corr_23: -2.78457672e+01 - sys_corr_24: 1.73898057e+02 - sys_corr_25: -3.52171438e+01 - sys_corr_26: -9.35552218e+01 + sys_corr_14: 1.24171706e+01 + sys_corr_15: 2.77694180e+00 + sys_corr_16: -1.14554951e+01 + sys_corr_17: -7.42539095e+00 + sys_corr_18: 3.10390039e+00 + sys_corr_19: 5.29890614e+01 + sys_corr_20: -2.54988997e+01 + sys_corr_21: -1.95998742e+01 + sys_corr_22: -1.23181803e+02 + sys_corr_23: 2.78457672e+01 + sys_corr_24: -1.73898057e+02 + sys_corr_25: 3.52171438e+01 + sys_corr_26: 9.35552218e+01 sys_corr_27: 3.71481782e+01 sys_corr_28: -5.72129421e+01 sys_corr_29: 1.15135221e+02 @@ -3790,100 +3790,100 @@ bins: sys_corr_36: 2.16678546e+02 sys_corr_37: 3.49362415e+00 sys_corr_38: 5.78348645e+01 - sys_corr_39: -9.76642388e+01 + sys_corr_39: 9.76642388e+01 sys_corr_40: -1.15381986e+00 sys_corr_41: 6.70650526e-01 - sys_corr_42: -1.65219832e+01 + sys_corr_42: 1.65219832e+01 sys_corr_43: 1.53944086e+01 - sys_corr_44: 2.88835863e+00 - sys_corr_45: 1.98677368e+01 - sys_corr_46: -1.07220269e+01 - sys_corr_47: 1.91368937e+01 - sys_corr_48: -2.83389360e+01 + sys_corr_44: -2.88835863e+00 + sys_corr_45: -1.98677368e+01 + sys_corr_46: 1.07220269e+01 + sys_corr_47: -1.91368937e+01 + sys_corr_48: 2.83389360e+01 sys_corr_49: -3.95475375e+01 - sys_corr_50: 4.52396098e+01 - sys_corr_51: -2.21310540e+01 - sys_corr_52: -1.29587287e-01 - sys_corr_53: 1.13306351e+01 - sys_corr_54: -6.83046017e+00 + sys_corr_50: -4.52396098e+01 + sys_corr_51: 2.21310540e+01 + sys_corr_52: 1.29587287e-01 + sys_corr_53: -1.13306351e+01 + sys_corr_54: 6.83046017e+00 sys_corr_55: 1.03905602e+01 sys_corr_56: -1.14023053e+00 - sys_corr_57: -1.21278120e+01 + sys_corr_57: 1.21278120e+01 sys_corr_58: 1.11533572e+01 - sys_corr_59: -7.72077696e-01 + sys_corr_59: 7.72077696e-01 sys_corr_60: 1.09096682e+01 sys_corr_61: -9.43783961e-01 sys_corr_62: 9.88599530e+00 - sys_corr_63: 1.87241133e+00 + sys_corr_63: -1.87241133e+00 sys_corr_64: 5.76878754e+00 sys_corr_65: -7.31307852e-01 - sys_corr_66: 7.19057565e+00 - sys_corr_67: 2.20463258e+00 - sys_corr_68: -1.34881397e+01 - sys_corr_69: -5.23288196e+00 - sys_corr_70: 3.43500152e+00 - sys_corr_71: -8.84590622e+00 - sys_corr_72: 6.38352971e-01 - sys_corr_73: 1.35252625e+01 - sys_corr_74: -5.21513461e+00 - sys_corr_75: -5.38276015e-01 + sys_corr_66: -7.19057565e+00 + sys_corr_67: -2.20463258e+00 + sys_corr_68: 1.34881397e+01 + sys_corr_69: 5.23288196e+00 + sys_corr_70: -3.43500152e+00 + sys_corr_71: 1.35252625e+01 + sys_corr_72: -6.38352971e-01 + sys_corr_73: 8.84590622e+00 + sys_corr_74: 5.21513461e+00 + sys_corr_75: 5.38276015e-01 sys_corr_76: 4.68947704e+00 sys_corr_77: -1.34268232e+00 - sys_corr_78: 7.26909085e+00 + sys_corr_78: 3.06348088e+00 sys_corr_79: -5.78379544e-01 - sys_corr_80: -3.06348088e+00 + sys_corr_80: -7.26909085e+00 sys_corr_81: -5.14078107e+00 - sys_corr_82: 4.79542114e+00 - sys_corr_83: -5.53612016e+00 + sys_corr_82: -5.53612016e+00 + sys_corr_83: -4.79542114e+00 sys_corr_84: -5.41561445e-01 - sys_corr_85: -1.96929456e+00 - sys_corr_86: 2.11536824e+00 + sys_corr_85: 1.96929456e+00 + sys_corr_86: -2.11536824e+00 sys_corr_87: -1.10211036e+01 sys_corr_88: -1.10539964e+00 - sys_corr_89: 6.54072151e-01 - sys_corr_90: 7.82280256e-01 + sys_corr_89: -6.54072151e-01 + sys_corr_90: -7.82280256e-01 sys_corr_91: -4.70248238e-01 - sys_corr_92: 3.51891722e-01 - sys_corr_93: -1.55806904e-02 + sys_corr_92: -3.51891722e-01 + sys_corr_93: 5.71936358e-01 sys_corr_94: -4.94833362e-01 - sys_corr_95: -5.71936358e-01 + sys_corr_95: 1.55806904e-02 sys_corr_96: -8.72141367e-03 sys_corr_97: -1.27328072e-01 sys_corr_98: 3.22078904e-01 sys_corr_99: -5.54325209e-01 - sys_corr_100: -1.60947977e-01 - sys_corr_101: -6.00059538e-01 - sys_corr_102: 1.18599026e+00 - sys_corr_103: -3.24740140e+00 - sys_corr_104: -1.35309315e+00 - sys_corr_105: -1.05333456e+00 - sys_corr_106: -3.31554409e-01 - sys_corr_107: 3.28782362e-01 - sys_corr_108: -5.45373723e-01 - sys_corr_109: -2.84461221e-02 - sys_corr_110: -4.69701544e-02 - sys_corr_111: 3.51176330e-01 - sys_corr_112: 2.24008204e-01 + sys_corr_100: -1.35309315e+00 + sys_corr_101: -3.24740140e+00 + sys_corr_102: 1.05333456e+00 + sys_corr_103: -1.18599026e+00 + sys_corr_104: -6.00059538e-01 + sys_corr_105: -1.60947977e-01 + sys_corr_106: 3.31554409e-01 + sys_corr_107: -3.28782362e-01 + sys_corr_108: -3.51176330e-01 + sys_corr_109: 5.45373723e-01 + sys_corr_110: 2.84461221e-02 + sys_corr_111: -4.69701544e-02 + sys_corr_112: -2.24008204e-01 sys_corr_113: 2.00863424e-01 sys_corr_114: -7.41632840e-04 - sys_corr_115: 3.56515899e-02 - sys_corr_116: -9.38293248e-04 + sys_corr_115: -3.56515899e-02 + sys_corr_116: 9.38293248e-04 sys_corr_117: 2.25481013e-02 - sys_corr_118: 6.92282987e-02 - sys_corr_119: 4.84265596e-03 + sys_corr_118: -6.92282987e-02 + sys_corr_119: -4.84265596e-03 sys_corr_120: 1.64726037e-02 sys_corr_121: -1.21545676e-03 sys_corr_122: -7.10771315e-02 - sys_corr_123: 3.33271222e-02 + sys_corr_123: -3.33271222e-02 sys_corr_124: -5.24823424e-02 - sys_corr_125: 4.54126054e-02 + sys_corr_125: -4.54126054e-02 sys_corr_126: -1.72325220e-02 - sys_corr_127: -2.24396412e-01 - sys_corr_128: 8.14098853e-02 - sys_corr_129: 4.57040248e-03 + sys_corr_127: 2.24396412e-01 + sys_corr_128: -8.14098853e-02 + sys_corr_129: -4.57040248e-03 sys_corr_130: -3.96328441e-03 - sys_corr_131: 2.37164627e-02 - sys_corr_132: 3.96024766e-02 + sys_corr_131: 3.96024766e-02 + sys_corr_132: -2.37164627e-02 stat: 0.0 luminosity: 5.91248768e+02 - sys_corr_1: 3.35069894e+02 @@ -3892,26 +3892,26 @@ bins: sys_corr_4: 1.11804424e+02 sys_corr_5: 9.90571578e+01 sys_corr_6: -5.93707408e+02 - sys_corr_7: 2.11409836e+01 - sys_corr_8: 1.52677849e+01 + sys_corr_7: -2.11409836e+01 + sys_corr_8: -1.52677849e+01 sys_corr_9: -5.05463786e-02 - sys_corr_10: 1.74554150e+01 - sys_corr_11: 6.03660865e+00 - sys_corr_12: -9.31653346e+00 + sys_corr_10: -1.74554150e+01 + sys_corr_11: -6.03660865e+00 + sys_corr_12: 9.31653346e+00 sys_corr_13: -3.04547328e+01 - sys_corr_14: -8.24660716e+00 - sys_corr_15: -1.52454758e+00 - sys_corr_16: 1.29568833e-01 - sys_corr_17: 6.60924968e+01 - sys_corr_18: 1.52494083e-01 - sys_corr_19: -5.81168204e+01 - sys_corr_20: 2.38553174e+01 - sys_corr_21: 2.21009902e+00 - sys_corr_22: 1.83953732e+02 - sys_corr_23: -1.62220004e+01 - sys_corr_24: 1.98495457e+02 - sys_corr_25: -3.22774911e+01 - sys_corr_26: -9.21008865e+01 + sys_corr_14: 8.24660716e+00 + sys_corr_15: 1.52454758e+00 + sys_corr_16: -1.29568833e-01 + sys_corr_17: -6.60924968e+01 + sys_corr_18: -1.52494083e-01 + sys_corr_19: 5.81168204e+01 + sys_corr_20: -2.38553174e+01 + sys_corr_21: -2.21009902e+00 + sys_corr_22: -1.83953732e+02 + sys_corr_23: 1.62220004e+01 + sys_corr_24: -1.98495457e+02 + sys_corr_25: 3.22774911e+01 + sys_corr_26: 9.21008865e+01 sys_corr_27: 6.14206265e+01 sys_corr_28: -5.03538833e+01 sys_corr_29: 9.76097493e+01 @@ -3924,100 +3924,100 @@ bins: sys_corr_36: -1.68314644e+02 sys_corr_37: -1.71433613e+02 sys_corr_38: -9.40662168e+01 - sys_corr_39: 1.25231007e+02 + sys_corr_39: -1.25231007e+02 sys_corr_40: 3.73226343e+01 sys_corr_41: -7.47093742e+01 - sys_corr_42: 2.19982452e+01 + sys_corr_42: -2.19982452e+01 sys_corr_43: -6.42642026e+01 - sys_corr_44: -6.94989097e+01 - sys_corr_45: 3.40780922e+01 - sys_corr_46: -6.55742611e+00 - sys_corr_47: 4.12851608e+01 - sys_corr_48: -3.61456419e+01 + sys_corr_44: 6.94989097e+01 + sys_corr_45: -3.40780922e+01 + sys_corr_46: 6.55742611e+00 + sys_corr_47: -4.12851608e+01 + sys_corr_48: 3.61456419e+01 sys_corr_49: -5.44321293e+00 - sys_corr_50: 5.13436125e+01 - sys_corr_51: 3.96388422e+00 - sys_corr_52: 1.00328486e+01 - sys_corr_53: 3.69543926e+00 - sys_corr_54: -1.11897554e+01 + sys_corr_50: -5.13436125e+01 + sys_corr_51: -3.96388422e+00 + sys_corr_52: -1.00328486e+01 + sys_corr_53: -3.69543926e+00 + sys_corr_54: 1.11897554e+01 sys_corr_55: -3.48603340e-01 sys_corr_56: 1.41662328e+01 - sys_corr_57: -8.03927086e+00 + sys_corr_57: 8.03927086e+00 sys_corr_58: 6.82276978e+00 - sys_corr_59: -6.55216048e+00 + sys_corr_59: 6.55216048e+00 sys_corr_60: -3.81749699e+00 sys_corr_61: 1.70776510e+00 sys_corr_62: 1.32853507e+01 - sys_corr_63: -9.24071513e-01 + sys_corr_63: 9.24071513e-01 sys_corr_64: -7.08445506e+00 sys_corr_65: -1.22520959e+01 - sys_corr_66: 1.95688896e+00 - sys_corr_67: -3.09618629e+00 - sys_corr_68: -7.55662554e+00 - sys_corr_69: -9.23890950e-01 - sys_corr_70: -2.58824404e+00 - sys_corr_71: 8.03053571e+00 - sys_corr_72: -1.30811705e-01 - sys_corr_73: 2.06195474e+00 - sys_corr_74: 9.61162720e+00 - sys_corr_75: -1.39575391e+01 + sys_corr_66: -1.95688896e+00 + sys_corr_67: 3.09618629e+00 + sys_corr_68: 7.55662554e+00 + sys_corr_69: 9.23890950e-01 + sys_corr_70: 2.58824404e+00 + sys_corr_71: 2.06195474e+00 + sys_corr_72: 1.30811705e-01 + sys_corr_73: -8.03053571e+00 + sys_corr_74: -9.61162720e+00 + sys_corr_75: 1.39575391e+01 sys_corr_76: 2.42875703e+00 sys_corr_77: 1.07644961e+01 - sys_corr_78: -7.14201131e+00 + sys_corr_78: 2.81043171e+00 sys_corr_79: 4.86163345e-01 - sys_corr_80: -2.81043171e+00 + sys_corr_80: 7.14201131e+00 sys_corr_81: 1.06897931e+01 - sys_corr_82: -1.16342073e+01 - sys_corr_83: 8.00902566e+00 + sys_corr_82: 8.00902566e+00 + sys_corr_83: 1.16342073e+01 sys_corr_84: 1.12346918e+00 - sys_corr_85: -1.00043850e+00 - sys_corr_86: 3.04882414e+00 + sys_corr_85: 1.00043850e+00 + sys_corr_86: -3.04882414e+00 sys_corr_87: 2.45013608e-01 sys_corr_88: -2.84004114e+00 - sys_corr_89: 1.00011245e+00 - sys_corr_90: 1.34305437e+00 + sys_corr_89: -1.00011245e+00 + sys_corr_90: -1.34305437e+00 sys_corr_91: -6.03321431e-01 - sys_corr_92: 9.35312595e-01 - sys_corr_93: -8.73106393e-02 + sys_corr_92: -9.35312595e-01 + sys_corr_93: -3.29453085e-01 sys_corr_94: -6.12776853e-01 - sys_corr_95: 3.29453085e-01 + sys_corr_95: 8.73106393e-02 sys_corr_96: -9.47734705e-02 sys_corr_97: -3.16179114e-01 sys_corr_98: -4.26013351e-02 sys_corr_99: 5.07967102e-01 - sys_corr_100: 2.39837339e-02 - sys_corr_101: -1.71549696e-01 - sys_corr_102: -2.57746852e-01 - sys_corr_103: 3.77515081e-01 - sys_corr_104: -2.37480854e-01 - sys_corr_105: 9.00481649e-01 - sys_corr_106: 5.64872245e-01 - sys_corr_107: 4.36722494e-01 - sys_corr_108: -1.53828679e-01 - sys_corr_109: 6.77159865e-02 - sys_corr_110: -5.07038714e-01 - sys_corr_111: 1.05319175e-01 - sys_corr_112: -4.42916412e-03 + sys_corr_100: -2.37480854e-01 + sys_corr_101: 3.77515081e-01 + sys_corr_102: -9.00481649e-01 + sys_corr_103: 2.57746852e-01 + sys_corr_104: -1.71549696e-01 + sys_corr_105: 2.39837339e-02 + sys_corr_106: -5.64872245e-01 + sys_corr_107: -4.36722494e-01 + sys_corr_108: -1.05319175e-01 + sys_corr_109: 1.53828679e-01 + sys_corr_110: -6.77159865e-02 + sys_corr_111: -5.07038714e-01 + sys_corr_112: 4.42916412e-03 sys_corr_113: 3.92541465e-02 sys_corr_114: -2.91216377e-03 - sys_corr_115: 6.72685025e-02 - sys_corr_116: -3.39571764e-02 + sys_corr_115: -6.72685025e-02 + sys_corr_116: 3.39571764e-02 sys_corr_117: 2.87689774e-02 - sys_corr_118: -3.46384612e-02 - sys_corr_119: -2.05549149e-03 + sys_corr_118: 3.46384612e-02 + sys_corr_119: 2.05549149e-03 sys_corr_120: 6.02169589e-03 sys_corr_121: 2.79800586e-03 sys_corr_122: -5.71645922e-03 - sys_corr_123: -2.22352094e-03 + sys_corr_123: 2.22352094e-03 sys_corr_124: 2.15572373e-02 - sys_corr_125: 8.73928700e-03 + sys_corr_125: -8.73928700e-03 sys_corr_126: 1.15313038e-02 - sys_corr_127: -3.49376005e-01 - sys_corr_128: 2.99798092e-01 - sys_corr_129: 9.18796009e-02 + sys_corr_127: 3.49376005e-01 + sys_corr_128: -2.99798092e-01 + sys_corr_129: -9.18796009e-02 sys_corr_130: -1.83397875e-02 - sys_corr_131: 1.25846557e-02 - sys_corr_132: -4.75730503e-02 + sys_corr_131: -4.75730503e-02 + sys_corr_132: -1.25846557e-02 stat: 0.0 luminosity: 5.63851222e+02 - sys_corr_1: 3.30507919e+02 @@ -4026,26 +4026,26 @@ bins: sys_corr_4: 1.15146401e+02 sys_corr_5: 1.03544144e+02 sys_corr_6: -5.70782635e+02 - sys_corr_7: 2.97487309e+01 - sys_corr_8: 2.14659534e+01 + sys_corr_7: -2.97487309e+01 + sys_corr_8: -2.14659534e+01 sys_corr_9: -1.56086601e+01 - sys_corr_10: 1.02700970e+01 - sys_corr_11: 2.41407547e+01 - sys_corr_12: -1.38685910e+01 + sys_corr_10: -1.02700970e+01 + sys_corr_11: -2.41407547e+01 + sys_corr_12: 1.38685910e+01 sys_corr_13: -2.17498064e+01 - sys_corr_14: -4.33764077e+00 - sys_corr_15: -2.28598638e+00 - sys_corr_16: 4.46350400e+00 - sys_corr_17: 3.77181034e+00 - sys_corr_18: 2.58985353e+00 - sys_corr_19: -6.38094314e+01 - sys_corr_20: 2.71870562e+01 - sys_corr_21: 3.75148896e-02 - sys_corr_22: 1.48892497e+02 - sys_corr_23: -6.42919744e+00 - sys_corr_24: 1.66118159e+02 - sys_corr_25: -4.52252732e+01 - sys_corr_26: -1.10907562e+02 + sys_corr_14: 4.33764077e+00 + sys_corr_15: 2.28598638e+00 + sys_corr_16: -4.46350400e+00 + sys_corr_17: -3.77181034e+00 + sys_corr_18: -2.58985353e+00 + sys_corr_19: 6.38094314e+01 + sys_corr_20: -2.71870562e+01 + sys_corr_21: -3.75148896e-02 + sys_corr_22: -1.48892497e+02 + sys_corr_23: 6.42919744e+00 + sys_corr_24: -1.66118159e+02 + sys_corr_25: 4.52252732e+01 + sys_corr_26: 1.10907562e+02 sys_corr_27: 4.90491919e+01 sys_corr_28: -2.75190220e+01 sys_corr_29: 1.03950266e+02 @@ -4058,100 +4058,100 @@ bins: sys_corr_36: 7.02957814e+01 sys_corr_37: -4.37116578e+00 sys_corr_38: -4.13264378e+01 - sys_corr_39: -1.89035366e+01 + sys_corr_39: 1.89035366e+01 sys_corr_40: 1.64840840e+01 sys_corr_41: -1.45192611e+01 - sys_corr_42: -1.03060525e+01 + sys_corr_42: 1.03060525e+01 sys_corr_43: -1.23663851e+01 - sys_corr_44: -1.65345973e+00 - sys_corr_45: -4.02168009e+01 - sys_corr_46: -3.24854650e+01 - sys_corr_47: 2.43289781e+01 - sys_corr_48: -6.95681767e+00 + sys_corr_44: 1.65345973e+00 + sys_corr_45: 4.02168009e+01 + sys_corr_46: 3.24854650e+01 + sys_corr_47: -2.43289781e+01 + sys_corr_48: 6.95681767e+00 sys_corr_49: -9.34844687e+00 - sys_corr_50: 2.90743201e+01 - sys_corr_51: 1.28600517e+01 - sys_corr_52: 5.92393083e-01 - sys_corr_53: 1.33516692e+01 - sys_corr_54: -1.37191844e+01 + sys_corr_50: -2.90743201e+01 + sys_corr_51: -1.28600517e+01 + sys_corr_52: -5.92393083e-01 + sys_corr_53: -1.33516692e+01 + sys_corr_54: 1.37191844e+01 sys_corr_55: -6.09501207e-01 sys_corr_56: -1.48351055e+00 - sys_corr_57: -1.57026351e+01 + sys_corr_57: 1.57026351e+01 sys_corr_58: 4.29050268e+00 - sys_corr_59: -7.85938305e+00 + sys_corr_59: 7.85938305e+00 sys_corr_60: 2.34533359e+00 sys_corr_61: -5.87867913e+00 sys_corr_62: -2.01627407e+00 - sys_corr_63: 8.52668134e+00 + sys_corr_63: -8.52668134e+00 sys_corr_64: -4.04830913e+00 sys_corr_65: 1.12496943e+00 - sys_corr_66: 1.84456395e+00 - sys_corr_67: -2.20635849e+00 - sys_corr_68: 1.21101578e+00 - sys_corr_69: -6.70843586e+00 - sys_corr_70: 1.94105410e+00 - sys_corr_71: -4.27516795e+00 - sys_corr_72: -1.04135813e+00 - sys_corr_73: 5.98775379e+00 - sys_corr_74: -3.35883720e-01 - sys_corr_75: 2.49594187e+00 + sys_corr_66: -1.84456395e+00 + sys_corr_67: 2.20635849e+00 + sys_corr_68: -1.21101578e+00 + sys_corr_69: 6.70843586e+00 + sys_corr_70: -1.94105410e+00 + sys_corr_71: 5.98775379e+00 + sys_corr_72: 1.04135813e+00 + sys_corr_73: 4.27516795e+00 + sys_corr_74: 3.35883720e-01 + sys_corr_75: -2.49594187e+00 sys_corr_76: -9.85820225e-02 sys_corr_77: -2.99876484e+00 - sys_corr_78: -1.07403792e+00 + sys_corr_78: -2.23901426e+00 sys_corr_79: -1.24800385e+00 - sys_corr_80: 2.23901426e+00 + sys_corr_80: 1.07403792e+00 sys_corr_81: -7.25508650e+00 - sys_corr_82: 4.29194577e+00 - sys_corr_83: -2.87688564e-01 + sys_corr_82: -2.87688564e-01 + sys_corr_83: -4.29194577e+00 sys_corr_84: -4.71667754e-01 - sys_corr_85: 1.23776367e+00 - sys_corr_86: -2.64402214e+00 + sys_corr_85: -1.23776367e+00 + sys_corr_86: 2.64402214e+00 sys_corr_87: 1.22921943e+01 sys_corr_88: 1.48197990e+00 - sys_corr_89: -2.23254379e-01 - sys_corr_90: -1.01865048e+00 + sys_corr_89: 2.23254379e-01 + sys_corr_90: 1.01865048e+00 sys_corr_91: 4.17975045e-01 - sys_corr_92: -3.73298990e+00 - sys_corr_93: 1.62534380e-02 + sys_corr_92: 3.73298990e+00 + sys_corr_93: -5.54163053e-02 sys_corr_94: 2.32606481e-01 - sys_corr_95: 5.54163053e-02 + sys_corr_95: -1.62534380e-02 sys_corr_96: -5.36282083e-02 sys_corr_97: -1.20605385e-01 sys_corr_98: -7.04644522e-02 sys_corr_99: 1.17661778e-01 - sys_corr_100: -3.51842461e-01 - sys_corr_101: -1.40220244e-01 - sys_corr_102: -2.02044295e-01 - sys_corr_103: 1.61766131e+00 - sys_corr_104: 2.57853752e-01 - sys_corr_105: 1.02898260e+00 - sys_corr_106: -1.69221432e-01 - sys_corr_107: 5.43330220e-01 - sys_corr_108: 3.01561502e-02 - sys_corr_109: -2.06547888e-03 - sys_corr_110: -3.95796425e-01 - sys_corr_111: -7.73310618e-02 - sys_corr_112: 2.54067874e-02 + sys_corr_100: 2.57853752e-01 + sys_corr_101: 1.61766131e+00 + sys_corr_102: -1.02898260e+00 + sys_corr_103: 2.02044295e-01 + sys_corr_104: -1.40220244e-01 + sys_corr_105: -3.51842461e-01 + sys_corr_106: 1.69221432e-01 + sys_corr_107: -5.43330220e-01 + sys_corr_108: 7.73310618e-02 + sys_corr_109: -3.01561502e-02 + sys_corr_110: 2.06547888e-03 + sys_corr_111: -3.95796425e-01 + sys_corr_112: -2.54067874e-02 sys_corr_113: -2.84848429e-03 sys_corr_114: -9.96605965e-04 - sys_corr_115: 4.81134708e-02 - sys_corr_116: -3.71226071e-02 + sys_corr_115: -4.81134708e-02 + sys_corr_116: 3.71226071e-02 sys_corr_117: 2.79384129e-02 - sys_corr_118: 1.47863426e-02 - sys_corr_119: 3.16201580e-03 + sys_corr_118: -1.47863426e-02 + sys_corr_119: -3.16201580e-03 sys_corr_120: 1.59382241e-02 sys_corr_121: -1.23221357e-03 sys_corr_122: -1.73905856e-02 - sys_corr_123: 7.66240054e-03 + sys_corr_123: -7.66240054e-03 sys_corr_124: 3.91730825e-02 - sys_corr_125: 2.21237041e-02 + sys_corr_125: -2.21237041e-02 sys_corr_126: 1.38659560e-02 - sys_corr_127: -9.93663828e-02 - sys_corr_128: 2.45010029e-02 - sys_corr_129: -7.49713273e-02 + sys_corr_127: 9.93663828e-02 + sys_corr_128: -2.45010029e-02 + sys_corr_129: 7.49713273e-02 sys_corr_130: -2.55816629e-02 - sys_corr_131: 1.36224955e-02 - sys_corr_132: -5.66403399e-02 + sys_corr_131: -5.66403399e-02 + sys_corr_132: -1.36224955e-02 stat: 0.0 luminosity: 5.69413328e+02 - sys_corr_1: 3.08146586e+02 @@ -4160,26 +4160,26 @@ bins: sys_corr_4: 8.68357043e+01 sys_corr_5: 1.06910362e+02 sys_corr_6: -5.58861996e+02 - sys_corr_7: 3.12806190e+01 - sys_corr_8: 2.32178676e+00 + sys_corr_7: -3.12806190e+01 + sys_corr_8: -2.32178676e+00 sys_corr_9: 5.60575206e+00 - sys_corr_10: -2.80478588e+00 - sys_corr_11: -3.99293495e+00 - sys_corr_12: 4.12884122e+00 + sys_corr_10: 2.80478588e+00 + sys_corr_11: 3.99293495e+00 + sys_corr_12: -4.12884122e+00 sys_corr_13: -1.35976414e+01 - sys_corr_14: -3.68107798e+01 - sys_corr_15: 5.08530526e+00 - sys_corr_16: 1.12146988e+01 - sys_corr_17: 2.44392408e+01 - sys_corr_18: -3.69251525e+00 - sys_corr_19: -9.51247460e+00 - sys_corr_20: 8.82479354e+00 - sys_corr_21: 1.77765371e-01 - sys_corr_22: 1.03686013e+02 - sys_corr_23: -8.92925759e+00 - sys_corr_24: 8.62798459e+01 - sys_corr_25: -2.95879869e+01 - sys_corr_26: -5.44117692e+01 + sys_corr_14: 3.68107798e+01 + sys_corr_15: -5.08530526e+00 + sys_corr_16: -1.12146988e+01 + sys_corr_17: -2.44392408e+01 + sys_corr_18: 3.69251525e+00 + sys_corr_19: 9.51247460e+00 + sys_corr_20: -8.82479354e+00 + sys_corr_21: -1.77765371e-01 + sys_corr_22: -1.03686013e+02 + sys_corr_23: 8.92925759e+00 + sys_corr_24: -8.62798459e+01 + sys_corr_25: 2.95879869e+01 + sys_corr_26: 5.44117692e+01 sys_corr_27: 3.42922855e+01 sys_corr_28: -5.47505439e+01 sys_corr_29: 8.99137051e+01 @@ -4192,100 +4192,100 @@ bins: sys_corr_36: -2.20425809e+01 sys_corr_37: 5.88919956e+01 sys_corr_38: 1.22376081e+01 - sys_corr_39: 3.62609426e-01 + sys_corr_39: -3.62609426e-01 sys_corr_40: -2.14124392e+01 sys_corr_41: -5.79206982e+00 - sys_corr_42: -3.40930912e+01 + sys_corr_42: 3.40930912e+01 sys_corr_43: 1.87544625e+00 - sys_corr_44: 6.48614917e+00 - sys_corr_45: 4.98387965e+00 - sys_corr_46: -1.89808933e-01 - sys_corr_47: -4.68699658e+00 - sys_corr_48: -1.54200376e+01 + sys_corr_44: -6.48614917e+00 + sys_corr_45: -4.98387965e+00 + sys_corr_46: 1.89808933e-01 + sys_corr_47: 4.68699658e+00 + sys_corr_48: 1.54200376e+01 sys_corr_49: -2.58048936e+01 - sys_corr_50: 2.10410318e+01 - sys_corr_51: -8.28524764e-01 - sys_corr_52: 9.95103746e+00 - sys_corr_53: -5.94290042e+00 - sys_corr_54: 1.04246788e+01 + sys_corr_50: -2.10410318e+01 + sys_corr_51: 8.28524764e-01 + sys_corr_52: -9.95103746e+00 + sys_corr_53: 5.94290042e+00 + sys_corr_54: -1.04246788e+01 sys_corr_55: 3.09343565e+00 sys_corr_56: -8.21063147e+00 - sys_corr_57: -8.60621893e-01 + sys_corr_57: 8.60621893e-01 sys_corr_58: -4.50369292e+00 - sys_corr_59: 1.12856522e+01 + sys_corr_59: -1.12856522e+01 sys_corr_60: -6.91446373e-01 sys_corr_61: 5.71667733e+00 sys_corr_62: -1.13337481e+00 - sys_corr_63: -2.96691679e+00 + sys_corr_63: 2.96691679e+00 sys_corr_64: 3.88028979e+00 sys_corr_65: -6.71698095e+00 - sys_corr_66: -9.01836209e-01 - sys_corr_67: -5.08443045e-01 - sys_corr_68: 9.04049406e-01 - sys_corr_69: -1.89181702e+00 - sys_corr_70: -1.44360011e+00 - sys_corr_71: 2.65617875e+00 - sys_corr_72: 2.94598660e+00 - sys_corr_73: 3.96373895e+00 - sys_corr_74: -2.87106835e+00 - sys_corr_75: 4.65271141e+00 + sys_corr_66: 9.01836209e-01 + sys_corr_67: 5.08443045e-01 + sys_corr_68: -9.04049406e-01 + sys_corr_69: 1.89181702e+00 + sys_corr_70: 1.44360011e+00 + sys_corr_71: 3.96373895e+00 + sys_corr_72: -2.94598660e+00 + sys_corr_73: -2.65617875e+00 + sys_corr_74: 2.87106835e+00 + sys_corr_75: -4.65271141e+00 sys_corr_76: 1.09321593e+00 sys_corr_77: 5.58078292e+00 - sys_corr_78: -2.56703589e+00 + sys_corr_78: -1.59118082e+00 sys_corr_79: -1.47964328e+00 - sys_corr_80: 1.59118082e+00 + sys_corr_80: 2.56703589e+00 sys_corr_81: 4.88136552e+00 - sys_corr_82: 3.22225945e-01 - sys_corr_83: 2.17166210e+00 + sys_corr_82: 2.17166210e+00 + sys_corr_83: -3.22225945e-01 sys_corr_84: 1.51141186e+00 - sys_corr_85: -2.82645563e-01 - sys_corr_86: -4.21807337e+00 + sys_corr_85: 2.82645563e-01 + sys_corr_86: 4.21807337e+00 sys_corr_87: 2.31727269e+00 sys_corr_88: 1.60887298e+00 - sys_corr_89: 4.80477709e-01 - sys_corr_90: -1.60347119e+00 + sys_corr_89: -4.80477709e-01 + sys_corr_90: 1.60347119e+00 sys_corr_91: 3.74214294e-01 - sys_corr_92: -5.72465912e+00 - sys_corr_93: 3.21517538e-02 + sys_corr_92: 5.72465912e+00 + sys_corr_93: -7.14676387e-01 sys_corr_94: 1.71063486e-01 - sys_corr_95: 7.14676387e-01 + sys_corr_95: -3.21517538e-02 sys_corr_96: -1.37344792e-01 sys_corr_97: -9.54976599e-01 sys_corr_98: -4.33052892e-01 sys_corr_99: 1.31769478e-01 - sys_corr_100: 1.68450669e-01 - sys_corr_101: 2.88383284e-01 - sys_corr_102: 3.55011713e-01 - sys_corr_103: -2.43465918e+00 - sys_corr_104: -5.39075111e-01 - sys_corr_105: -8.16940054e-01 - sys_corr_106: -9.70301383e-03 - sys_corr_107: 3.21324044e-01 - sys_corr_108: -5.30918430e-03 - sys_corr_109: -1.22519875e-01 - sys_corr_110: 2.76859148e-03 - sys_corr_111: 2.39177625e-01 - sys_corr_112: -1.98634015e-02 + sys_corr_100: -5.39075111e-01 + sys_corr_101: -2.43465918e+00 + sys_corr_102: 8.16940054e-01 + sys_corr_103: -3.55011713e-01 + sys_corr_104: 2.88383284e-01 + sys_corr_105: 1.68450669e-01 + sys_corr_106: 9.70301383e-03 + sys_corr_107: -3.21324044e-01 + sys_corr_108: -2.39177625e-01 + sys_corr_109: 5.30918430e-03 + sys_corr_110: 1.22519875e-01 + sys_corr_111: 2.76859148e-03 + sys_corr_112: 1.98634015e-02 sys_corr_113: 7.98658551e-02 sys_corr_114: -1.69846232e-03 - sys_corr_115: 1.04834317e-01 - sys_corr_116: -6.14230271e-03 + sys_corr_115: -1.04834317e-01 + sys_corr_116: 6.14230271e-03 sys_corr_117: -1.43403390e-05 - sys_corr_118: 3.39608775e-02 - sys_corr_119: 1.03221652e-03 + sys_corr_118: -3.39608775e-02 + sys_corr_119: -1.03221652e-03 sys_corr_120: -1.15022167e-03 sys_corr_121: 1.33352099e-03 sys_corr_122: -8.26542323e-03 - sys_corr_123: 1.05993299e-03 + sys_corr_123: -1.05993299e-03 sys_corr_124: -3.38811241e-02 - sys_corr_125: 6.88850494e-03 + sys_corr_125: -6.88850494e-03 sys_corr_126: 7.19815026e-04 - sys_corr_127: -2.56172964e-01 - sys_corr_128: 5.33163539e-02 - sys_corr_129: -4.20504448e-02 + sys_corr_127: 2.56172964e-01 + sys_corr_128: -5.33163539e-02 + sys_corr_129: 4.20504448e-02 sys_corr_130: -7.21981799e-03 - sys_corr_131: 5.41706075e-03 - sys_corr_132: -2.38606805e-02 + sys_corr_131: -2.38606805e-02 + sys_corr_132: -5.41706075e-03 stat: 0.0 luminosity: 5.64811698e+02 - sys_corr_1: 3.03471127e+02 @@ -4294,26 +4294,26 @@ bins: sys_corr_4: 7.82118398e+01 sys_corr_5: 1.23169358e+02 sys_corr_6: -5.53845331e+02 - sys_corr_7: 5.45500599e+01 - sys_corr_8: 4.55192828e+00 + sys_corr_7: -5.45500599e+01 + sys_corr_8: -4.55192828e+00 sys_corr_9: 7.38151284e+00 - sys_corr_10: -1.92470742e+01 - sys_corr_11: 3.72636341e+00 - sys_corr_12: 2.10918445e+01 + sys_corr_10: 1.92470742e+01 + sys_corr_11: -3.72636341e+00 + sys_corr_12: -2.10918445e+01 sys_corr_13: 1.29751904e+01 - sys_corr_14: -2.49077331e+01 - sys_corr_15: 4.47273830e+00 - sys_corr_16: 7.49560573e+00 - sys_corr_17: 1.18084576e+01 - sys_corr_18: 1.01507604e+01 - sys_corr_19: -1.41905874e+00 - sys_corr_20: 1.00508145e+01 - sys_corr_21: -1.50440789e+00 - sys_corr_22: 8.05776893e+01 - sys_corr_23: -5.65671951e-01 - sys_corr_24: 3.23161937e+01 - sys_corr_25: -1.82896079e+01 - sys_corr_26: -4.25872408e+01 + sys_corr_14: 2.49077331e+01 + sys_corr_15: -4.47273830e+00 + sys_corr_16: -7.49560573e+00 + sys_corr_17: -1.18084576e+01 + sys_corr_18: -1.01507604e+01 + sys_corr_19: 1.41905874e+00 + sys_corr_20: -1.00508145e+01 + sys_corr_21: 1.50440789e+00 + sys_corr_22: -8.05776893e+01 + sys_corr_23: 5.65671951e-01 + sys_corr_24: -3.23161937e+01 + sys_corr_25: 1.82896079e+01 + sys_corr_26: 4.25872408e+01 sys_corr_27: 1.37075424e+01 sys_corr_28: -7.25951751e+01 sys_corr_29: 9.55240207e+01 @@ -4326,100 +4326,100 @@ bins: sys_corr_36: -2.04829352e+01 sys_corr_37: 6.04944170e+01 sys_corr_38: 4.34988406e+01 - sys_corr_39: -1.06301950e+02 + sys_corr_39: 1.06301950e+02 sys_corr_40: -2.62530700e+01 sys_corr_41: 5.10176814e+01 - sys_corr_42: -3.28385325e+01 + sys_corr_42: 3.28385325e+01 sys_corr_43: 2.60599600e+01 - sys_corr_44: 2.39473982e+00 - sys_corr_45: 1.71089538e+01 - sys_corr_46: -1.68747475e+01 - sys_corr_47: -1.55354050e+01 - sys_corr_48: -1.18544062e+01 + sys_corr_44: -2.39473982e+00 + sys_corr_45: -1.71089538e+01 + sys_corr_46: 1.68747475e+01 + sys_corr_47: 1.55354050e+01 + sys_corr_48: 1.18544062e+01 sys_corr_49: -3.86149660e+01 - sys_corr_50: 1.22485551e+01 - sys_corr_51: 1.51132788e+01 - sys_corr_52: -2.02788165e+01 - sys_corr_53: -3.18825100e+00 - sys_corr_54: -4.92639387e+00 + sys_corr_50: -1.22485551e+01 + sys_corr_51: -1.51132788e+01 + sys_corr_52: 2.02788165e+01 + sys_corr_53: 3.18825100e+00 + sys_corr_54: 4.92639387e+00 sys_corr_55: 5.68939852e+00 sys_corr_56: -1.64852188e+00 - sys_corr_57: -4.04524717e+00 + sys_corr_57: 4.04524717e+00 sys_corr_58: 4.30030522e+00 - sys_corr_59: -1.35941876e+00 + sys_corr_59: 1.35941876e+00 sys_corr_60: 1.89437028e+00 sys_corr_61: -3.34413080e+00 sys_corr_62: -1.28248256e+00 - sys_corr_63: 2.02732562e+00 + sys_corr_63: -2.02732562e+00 sys_corr_64: 7.92017265e+00 sys_corr_65: 3.13023439e+00 - sys_corr_66: -2.13535757e+00 - sys_corr_67: -4.78484616e+00 - sys_corr_68: -6.85539252e+00 - sys_corr_69: 3.86381440e+00 - sys_corr_70: -4.49972230e+00 - sys_corr_71: 6.15234133e-01 - sys_corr_72: 4.95793504e+00 - sys_corr_73: 2.75182394e+00 - sys_corr_74: -1.85603779e+00 - sys_corr_75: 2.10529967e+00 + sys_corr_66: 2.13535757e+00 + sys_corr_67: 4.78484616e+00 + sys_corr_68: 6.85539252e+00 + sys_corr_69: -3.86381440e+00 + sys_corr_70: 4.49972230e+00 + sys_corr_71: 2.75182394e+00 + sys_corr_72: -4.95793504e+00 + sys_corr_73: -6.15234133e-01 + sys_corr_74: 1.85603779e+00 + sys_corr_75: -2.10529967e+00 sys_corr_76: 9.19168726e-01 sys_corr_77: 8.35427843e+00 - sys_corr_78: 1.36105366e+00 + sys_corr_78: 1.25032138e-01 sys_corr_79: -7.00933030e-01 - sys_corr_80: -1.25032138e-01 + sys_corr_80: -1.36105366e+00 sys_corr_81: 5.85823951e+00 - sys_corr_82: 1.36677296e-01 - sys_corr_83: 3.77273054e+00 + sys_corr_82: 3.77273054e+00 + sys_corr_83: -1.36677296e-01 sys_corr_84: -1.81798326e+00 - sys_corr_85: 1.88087937e+00 - sys_corr_86: -2.93211695e+00 + sys_corr_85: -1.88087937e+00 + sys_corr_86: 2.93211695e+00 sys_corr_87: 5.90877709e-01 sys_corr_88: -7.52469344e-02 - sys_corr_89: 1.28936283e-01 - sys_corr_90: -1.66900560e+00 + sys_corr_89: -1.28936283e-01 + sys_corr_90: 1.66900560e+00 sys_corr_91: 8.41345267e-01 - sys_corr_92: -1.96087746e+00 - sys_corr_93: 2.21732407e-01 + sys_corr_92: 1.96087746e+00 + sys_corr_93: -9.26541478e-01 sys_corr_94: 6.19055268e-01 - sys_corr_95: 9.26541478e-01 + sys_corr_95: -2.21732407e-01 sys_corr_96: -7.15933335e-02 sys_corr_97: -1.54562077e-01 sys_corr_98: -2.40859699e-01 sys_corr_99: 4.02415516e-01 - sys_corr_100: -8.63681498e-02 - sys_corr_101: 5.11925612e-01 - sys_corr_102: -4.19016973e-01 - sys_corr_103: 1.05831293e+00 - sys_corr_104: 8.96019032e-02 - sys_corr_105: 5.61730292e-01 - sys_corr_106: 2.29381613e-01 - sys_corr_107: 4.43392317e-01 - sys_corr_108: 1.32636395e-01 - sys_corr_109: -5.01278045e-02 - sys_corr_110: 5.88766724e-02 - sys_corr_111: -1.17663008e-01 - sys_corr_112: -6.85885936e-02 + sys_corr_100: 8.96019032e-02 + sys_corr_101: 1.05831293e+00 + sys_corr_102: -5.61730292e-01 + sys_corr_103: 4.19016973e-01 + sys_corr_104: 5.11925612e-01 + sys_corr_105: -8.63681498e-02 + sys_corr_106: -2.29381613e-01 + sys_corr_107: -4.43392317e-01 + sys_corr_108: 1.17663008e-01 + sys_corr_109: -1.32636395e-01 + sys_corr_110: 5.01278045e-02 + sys_corr_111: 5.88766724e-02 + sys_corr_112: 6.85885936e-02 sys_corr_113: -2.44233698e-02 sys_corr_114: -1.19224774e-03 - sys_corr_115: 4.64238155e-02 - sys_corr_116: -1.34840818e-02 + sys_corr_115: -4.64238155e-02 + sys_corr_116: 1.34840818e-02 sys_corr_117: 4.78789025e-03 - sys_corr_118: 6.78855132e-02 - sys_corr_119: -1.50721553e-03 + sys_corr_118: -6.78855132e-02 + sys_corr_119: 1.50721553e-03 sys_corr_120: 1.89700392e-03 sys_corr_121: -1.35307558e-03 sys_corr_122: -4.83673811e-03 - sys_corr_123: 1.33311199e-03 + sys_corr_123: -1.33311199e-03 sys_corr_124: 5.28050338e-03 - sys_corr_125: 8.43832064e-03 + sys_corr_125: -8.43832064e-03 sys_corr_126: 6.85307473e-04 - sys_corr_127: -2.36736184e-01 - sys_corr_128: -3.38492297e-02 - sys_corr_129: -1.50496592e-03 + sys_corr_127: 2.36736184e-01 + sys_corr_128: 3.38492297e-02 + sys_corr_129: 1.50496592e-03 sys_corr_130: -3.85931478e-03 - sys_corr_131: 9.99424871e-03 - sys_corr_132: 9.14007914e-03 + sys_corr_131: 9.14007914e-03 + sys_corr_132: -9.99424871e-03 stat: 0.0 luminosity: 5.74477992e+02 - sys_corr_1: 3.00212891e+02 @@ -4428,26 +4428,26 @@ bins: sys_corr_4: 6.29210181e+01 sys_corr_5: 1.58623140e+02 sys_corr_6: -5.82676695e+02 - sys_corr_7: 4.85405133e+01 - sys_corr_8: 1.08207802e+01 + sys_corr_7: -4.85405133e+01 + sys_corr_8: -1.08207802e+01 sys_corr_9: 1.03741089e+01 - sys_corr_10: 2.18593314e+00 - sys_corr_11: 6.67525831e+00 - sys_corr_12: 1.32127041e+01 + sys_corr_10: -2.18593314e+00 + sys_corr_11: -6.67525831e+00 + sys_corr_12: -1.32127041e+01 sys_corr_13: -2.25002300e+01 - sys_corr_14: 4.58117854e+00 - sys_corr_15: -5.26847169e+00 - sys_corr_16: -4.67485257e+00 - sys_corr_17: -5.64085174e+00 - sys_corr_18: 3.44356245e+01 - sys_corr_19: -1.18007038e+01 - sys_corr_20: 1.59188515e+01 - sys_corr_21: 7.06137235e+00 - sys_corr_22: 7.62823222e+00 - sys_corr_23: -1.30808125e+00 - sys_corr_24: -4.54824091e+01 - sys_corr_25: -8.65270822e+00 - sys_corr_26: -4.11390444e+00 + sys_corr_14: -4.58117854e+00 + sys_corr_15: 5.26847169e+00 + sys_corr_16: 4.67485257e+00 + sys_corr_17: 5.64085174e+00 + sys_corr_18: -3.44356245e+01 + sys_corr_19: 1.18007038e+01 + sys_corr_20: -1.59188515e+01 + sys_corr_21: -7.06137235e+00 + sys_corr_22: -7.62823222e+00 + sys_corr_23: 1.30808125e+00 + sys_corr_24: 4.54824091e+01 + sys_corr_25: 8.65270822e+00 + sys_corr_26: 4.11390444e+00 sys_corr_27: -4.55612962e+00 sys_corr_28: -6.34339612e+01 sys_corr_29: 8.45746217e+01 @@ -4460,100 +4460,100 @@ bins: sys_corr_36: 6.49015144e+01 sys_corr_37: 1.41520476e+02 sys_corr_38: 8.65546585e+01 - sys_corr_39: 2.64836835e+02 + sys_corr_39: -2.64836835e+02 sys_corr_40: 7.99256531e+01 sys_corr_41: 7.62020191e+01 - sys_corr_42: 5.27718412e+01 + sys_corr_42: -5.27718412e+01 sys_corr_43: 9.34095781e+00 - sys_corr_44: -6.26051780e+01 - sys_corr_45: -5.41705543e+01 - sys_corr_46: -3.08048536e+01 - sys_corr_47: 4.49446293e+01 - sys_corr_48: -4.91250334e+00 + sys_corr_44: 6.26051780e+01 + sys_corr_45: 5.41705543e+01 + sys_corr_46: 3.08048536e+01 + sys_corr_47: -4.49446293e+01 + sys_corr_48: 4.91250334e+00 sys_corr_49: -9.41368492e+00 - sys_corr_50: 4.27728652e+00 - sys_corr_51: 2.11911347e+01 - sys_corr_52: -1.02104090e+01 - sys_corr_53: 3.67033806e+00 - sys_corr_54: -5.78102367e+00 + sys_corr_50: -4.27728652e+00 + sys_corr_51: -2.11911347e+01 + sys_corr_52: 1.02104090e+01 + sys_corr_53: -3.67033806e+00 + sys_corr_54: 5.78102367e+00 sys_corr_55: -9.39350906e+00 sys_corr_56: 1.47480163e+01 - sys_corr_57: -1.35464803e+00 + sys_corr_57: 1.35464803e+00 sys_corr_58: -1.81810453e+00 - sys_corr_59: -1.27408809e+01 + sys_corr_59: 1.27408809e+01 sys_corr_60: -5.90173327e+00 sys_corr_61: -5.09409758e+00 sys_corr_62: 4.34366006e-02 - sys_corr_63: 2.54486437e+00 + sys_corr_63: -2.54486437e+00 sys_corr_64: -6.10312683e+00 sys_corr_65: -5.93183220e+00 - sys_corr_66: 1.27975298e+00 - sys_corr_67: -9.23867793e+00 - sys_corr_68: 1.04680643e+01 - sys_corr_69: -1.08350740e+01 - sys_corr_70: -4.72945595e+00 - sys_corr_71: 3.60607864e+00 - sys_corr_72: 8.85061446e+00 - sys_corr_73: 4.52399271e+00 - sys_corr_74: -1.78351686e+00 - sys_corr_75: 2.26499785e+00 + sys_corr_66: -1.27975298e+00 + sys_corr_67: 9.23867793e+00 + sys_corr_68: -1.04680643e+01 + sys_corr_69: 1.08350740e+01 + sys_corr_70: 4.72945595e+00 + sys_corr_71: 4.52399271e+00 + sys_corr_72: -8.85061446e+00 + sys_corr_73: -3.60607864e+00 + sys_corr_74: 1.78351686e+00 + sys_corr_75: -2.26499785e+00 sys_corr_76: 3.19378011e-01 sys_corr_77: 5.40708665e+00 - sys_corr_78: -8.38085453e+00 + sys_corr_78: -6.74301298e-01 sys_corr_79: -5.03090059e-01 - sys_corr_80: 6.74301298e-01 + sys_corr_80: 8.38085453e+00 sys_corr_81: -3.27404479e+00 - sys_corr_82: -7.07435712e+00 - sys_corr_83: -3.11511486e+00 + sys_corr_82: -3.11511486e+00 + sys_corr_83: 7.07435712e+00 sys_corr_84: -1.30998447e+00 - sys_corr_85: 1.78737482e-01 - sys_corr_86: -7.51706569e-01 + sys_corr_85: -1.78737482e-01 + sys_corr_86: 7.51706569e-01 sys_corr_87: -1.03564380e+01 sys_corr_88: 1.42405139e+00 - sys_corr_89: 2.86256505e-01 - sys_corr_90: -8.25010799e-01 + sys_corr_89: -2.86256505e-01 + sys_corr_90: 8.25010799e-01 sys_corr_91: 5.76421010e-01 - sys_corr_92: 2.85123803e+00 - sys_corr_93: 1.09030851e-01 + sys_corr_92: -2.85123803e+00 + sys_corr_93: -1.42203821e+00 sys_corr_94: 9.57932540e-01 - sys_corr_95: 1.42203821e+00 + sys_corr_95: -1.09030851e-01 sys_corr_96: -2.72756374e-01 sys_corr_97: -1.16695448e+00 sys_corr_98: -8.45846481e-01 sys_corr_99: 4.75106057e-02 - sys_corr_100: -5.21225866e-02 - sys_corr_101: -7.12338457e-01 - sys_corr_102: -3.98802506e-02 - sys_corr_103: -1.86851242e+00 - sys_corr_104: -4.16318122e-01 - sys_corr_105: -3.84630584e-01 - sys_corr_106: -1.13306302e-01 - sys_corr_107: 6.38432078e-01 - sys_corr_108: 1.00386177e-01 - sys_corr_109: -9.09317905e-02 - sys_corr_110: -3.48031807e-02 - sys_corr_111: -4.22178856e-01 - sys_corr_112: -5.58881094e-02 + sys_corr_100: -4.16318122e-01 + sys_corr_101: -1.86851242e+00 + sys_corr_102: 3.84630584e-01 + sys_corr_103: 3.98802506e-02 + sys_corr_104: -7.12338457e-01 + sys_corr_105: -5.21225866e-02 + sys_corr_106: 1.13306302e-01 + sys_corr_107: -6.38432078e-01 + sys_corr_108: 4.22178856e-01 + sys_corr_109: -1.00386177e-01 + sys_corr_110: 9.09317905e-02 + sys_corr_111: -3.48031807e-02 + sys_corr_112: 5.58881094e-02 sys_corr_113: -7.53125397e-02 sys_corr_114: -2.32422810e-04 - sys_corr_115: 1.04477687e-02 - sys_corr_116: -4.46382002e-02 + sys_corr_115: -1.04477687e-02 + sys_corr_116: 4.46382002e-02 sys_corr_117: 2.12385549e-02 - sys_corr_118: -2.87295959e-02 - sys_corr_119: -2.95113011e-04 + sys_corr_118: 2.87295959e-02 + sys_corr_119: 2.95113011e-04 sys_corr_120: 1.81063349e-02 sys_corr_121: 9.27214285e-03 sys_corr_122: 1.32304276e-02 - sys_corr_123: -1.09416058e-02 + sys_corr_123: 1.09416058e-02 sys_corr_124: 4.58605819e-02 - sys_corr_125: -7.43393175e-03 + sys_corr_125: 7.43393175e-03 sys_corr_126: 9.68721030e-03 - sys_corr_127: -1.22317108e-01 - sys_corr_128: 1.51893179e-02 - sys_corr_129: 1.99839897e-02 + sys_corr_127: 1.22317108e-01 + sys_corr_128: -1.51893179e-02 + sys_corr_129: -1.99839897e-02 sys_corr_130: -5.60705328e-05 - sys_corr_131: -3.81351495e-05 - sys_corr_132: 7.92449140e-03 + sys_corr_131: 7.92449140e-03 + sys_corr_132: 3.81351495e-05 stat: 0.0 luminosity: 5.95996522e+02 - sys_corr_1: 2.80866908e+02 @@ -4562,26 +4562,26 @@ bins: sys_corr_4: 5.03282290e+01 sys_corr_5: 1.89029213e+02 sys_corr_6: -5.98083362e+02 - sys_corr_7: 6.14612834e+01 - sys_corr_8: -7.76876095e+00 + sys_corr_7: -6.14612834e+01 + sys_corr_8: 7.76876095e+00 sys_corr_9: 2.22109774e+01 - sys_corr_10: -3.66284999e+01 - sys_corr_11: -1.04776131e+01 - sys_corr_12: 1.59240023e+01 + sys_corr_10: 3.66284999e+01 + sys_corr_11: 1.04776131e+01 + sys_corr_12: -1.59240023e+01 sys_corr_13: 1.02985427e+01 - sys_corr_14: 7.14201151e+00 - sys_corr_15: 8.51889166e-01 - sys_corr_16: 2.66992154e+00 - sys_corr_17: -6.35723024e+00 - sys_corr_18: -6.07906382e+00 - sys_corr_19: 6.13642190e+00 - sys_corr_20: -7.43568916e-01 - sys_corr_21: 4.60916311e+00 - sys_corr_22: -2.71264610e+01 - sys_corr_23: 7.96491037e-01 - sys_corr_24: -5.49534678e+01 - sys_corr_25: 1.01255031e+01 - sys_corr_26: 4.29767756e+01 + sys_corr_14: -7.14201151e+00 + sys_corr_15: -8.51889166e-01 + sys_corr_16: -2.66992154e+00 + sys_corr_17: 6.35723024e+00 + sys_corr_18: 6.07906382e+00 + sys_corr_19: -6.13642190e+00 + sys_corr_20: 7.43568916e-01 + sys_corr_21: -4.60916311e+00 + sys_corr_22: 2.71264610e+01 + sys_corr_23: -7.96491037e-01 + sys_corr_24: 5.49534678e+01 + sys_corr_25: -1.01255031e+01 + sys_corr_26: -4.29767756e+01 sys_corr_27: -2.02417574e+01 sys_corr_28: -6.94487532e+01 sys_corr_29: 7.05444091e+01 @@ -4594,100 +4594,100 @@ bins: sys_corr_36: 2.78950558e+01 sys_corr_37: -2.71543162e+01 sys_corr_38: 1.98150118e+01 - sys_corr_39: -8.32690635e+01 + sys_corr_39: 8.32690635e+01 sys_corr_40: 6.24457499e+01 sys_corr_41: -1.05843660e+02 - sys_corr_42: 5.01990907e+01 + sys_corr_42: -5.01990907e+01 sys_corr_43: -1.01250423e+02 - sys_corr_44: -1.14950467e+02 - sys_corr_45: -1.13232672e+02 - sys_corr_46: 2.00238964e+02 - sys_corr_47: -2.34281770e+01 - sys_corr_48: 4.09943672e+01 + sys_corr_44: 1.14950467e+02 + sys_corr_45: 1.13232672e+02 + sys_corr_46: -2.00238964e+02 + sys_corr_47: 2.34281770e+01 + sys_corr_48: -4.09943672e+01 sys_corr_49: -3.28593139e+01 - sys_corr_50: -7.71578499e+01 - sys_corr_51: -9.96783965e+00 - sys_corr_52: -1.92054671e+01 - sys_corr_53: -8.07491699e-01 - sys_corr_54: 1.53867307e+01 + sys_corr_50: 7.71578499e+01 + sys_corr_51: 9.96783965e+00 + sys_corr_52: 1.92054671e+01 + sys_corr_53: 8.07491699e-01 + sys_corr_54: -1.53867307e+01 sys_corr_55: -6.50882778e+00 sys_corr_56: -9.07284082e+00 - sys_corr_57: 9.70389036e+00 + sys_corr_57: -9.70389036e+00 sys_corr_58: -1.42124826e+01 - sys_corr_59: -8.44944224e+00 + sys_corr_59: 8.44944224e+00 sys_corr_60: -1.23531381e+01 sys_corr_61: 1.52546082e+00 sys_corr_62: 1.69372053e+01 - sys_corr_63: 1.26496807e+01 + sys_corr_63: -1.26496807e+01 sys_corr_64: -2.94673210e+00 sys_corr_65: 1.29443572e+01 - sys_corr_66: -2.65694476e+00 - sys_corr_67: 1.09599077e+01 - sys_corr_68: -2.85937711e+01 - sys_corr_69: 8.65950703e+00 - sys_corr_70: -1.61979572e+00 - sys_corr_71: -4.86310317e+00 - sys_corr_72: -3.81935227e-01 - sys_corr_73: 4.67246269e-01 - sys_corr_74: -4.33177306e+00 - sys_corr_75: 1.49484854e+01 + sys_corr_66: 2.65694476e+00 + sys_corr_67: -1.09599077e+01 + sys_corr_68: 2.85937711e+01 + sys_corr_69: -8.65950703e+00 + sys_corr_70: 1.61979572e+00 + sys_corr_71: 4.67246269e-01 + sys_corr_72: 3.81935227e-01 + sys_corr_73: 4.86310317e+00 + sys_corr_74: 4.33177306e+00 + sys_corr_75: -1.49484854e+01 sys_corr_76: -3.63411255e-01 sys_corr_77: -4.97161624e+00 - sys_corr_78: -5.58152114e+00 + sys_corr_78: -3.05126993e+00 sys_corr_79: -3.17190483e+00 - sys_corr_80: 3.05126993e+00 + sys_corr_80: 5.58152114e+00 sys_corr_81: 2.46430452e-01 - sys_corr_82: -3.02028176e+00 - sys_corr_83: -2.16796390e+00 + sys_corr_82: -2.16796390e+00 + sys_corr_83: 3.02028176e+00 sys_corr_84: -1.87579271e+00 - sys_corr_85: -6.05658729e-01 - sys_corr_86: -5.51270867e+00 + sys_corr_85: 6.05658729e-01 + sys_corr_86: 5.51270867e+00 sys_corr_87: -7.65570862e+00 sys_corr_88: 4.70816051e+00 - sys_corr_89: 9.53378646e-02 - sys_corr_90: -1.34462886e+00 + sys_corr_89: -9.53378646e-02 + sys_corr_90: 1.34462886e+00 sys_corr_91: 2.35089560e+00 - sys_corr_92: -1.49408193e+00 - sys_corr_93: 8.87649949e-02 + sys_corr_92: 1.49408193e+00 + sys_corr_93: -9.93194786e-01 sys_corr_94: 8.78123922e-01 - sys_corr_95: 9.93194786e-01 + sys_corr_95: -8.87649949e-02 sys_corr_96: 5.37102201e-02 sys_corr_97: -4.93621014e-01 sys_corr_98: -1.15069739e-01 sys_corr_99: -5.20650234e-01 - sys_corr_100: -6.10394122e-01 - sys_corr_101: 4.80798034e-01 - sys_corr_102: -1.08292698e-02 - sys_corr_103: 4.51292387e-02 - sys_corr_104: -3.34532565e-01 - sys_corr_105: -7.15660063e-01 - sys_corr_106: 3.23493598e-01 - sys_corr_107: 3.96723263e-01 - sys_corr_108: 2.17189140e-01 - sys_corr_109: -4.27596545e-01 - sys_corr_110: -1.44252929e-01 - sys_corr_111: 3.90925429e-01 - sys_corr_112: -2.02432905e-01 + sys_corr_100: -3.34532565e-01 + sys_corr_101: 4.51292387e-02 + sys_corr_102: 7.15660063e-01 + sys_corr_103: 1.08292698e-02 + sys_corr_104: 4.80798034e-01 + sys_corr_105: -6.10394122e-01 + sys_corr_106: -3.23493598e-01 + sys_corr_107: -3.96723263e-01 + sys_corr_108: -3.90925429e-01 + sys_corr_109: -2.17189140e-01 + sys_corr_110: 4.27596545e-01 + sys_corr_111: -1.44252929e-01 + sys_corr_112: 2.02432905e-01 sys_corr_113: -1.51561978e-01 sys_corr_114: -1.10276349e-03 - sys_corr_115: 1.31352068e-01 - sys_corr_116: -3.69362403e-02 + sys_corr_115: -1.31352068e-01 + sys_corr_116: 3.69362403e-02 sys_corr_117: 1.99065143e-02 - sys_corr_118: 1.27475284e-02 - sys_corr_119: 1.88216550e-04 + sys_corr_118: -1.27475284e-02 + sys_corr_119: -1.88216550e-04 sys_corr_120: 6.37160914e-03 sys_corr_121: 1.06662697e-02 sys_corr_122: 4.61503349e-02 - sys_corr_123: -2.41208045e-02 + sys_corr_123: 2.41208045e-02 sys_corr_124: 2.93528123e-02 - sys_corr_125: -2.73557737e-02 + sys_corr_125: 2.73557737e-02 sys_corr_126: 6.05189630e-03 - sys_corr_127: -1.25150481e-01 - sys_corr_128: 6.99578359e-02 - sys_corr_129: -3.31354170e-02 + sys_corr_127: 1.25150481e-01 + sys_corr_128: -6.99578359e-02 + sys_corr_129: 3.31354170e-02 sys_corr_130: 1.53645870e-02 - sys_corr_131: -7.19739455e-03 - sys_corr_132: 5.81427483e-03 + sys_corr_131: 5.81427483e-03 + sys_corr_132: 7.19739455e-03 stat: 0.0 luminosity: 5.75719672e+02 - sys_corr_1: 2.67034772e+02 @@ -4696,26 +4696,26 @@ bins: sys_corr_4: 2.90223725e+01 sys_corr_5: 1.98834973e+02 sys_corr_6: -5.99892832e+02 - sys_corr_7: 6.89300789e+01 - sys_corr_8: 6.19485337e+00 + sys_corr_7: -6.89300789e+01 + sys_corr_8: -6.19485337e+00 sys_corr_9: 9.35967188e+00 - sys_corr_10: -2.16414659e+01 - sys_corr_11: -1.35148820e+00 - sys_corr_12: 2.45040438e+01 + sys_corr_10: 2.16414659e+01 + sys_corr_11: 1.35148820e+00 + sys_corr_12: -2.45040438e+01 sys_corr_13: 5.57814475e+00 - sys_corr_14: 7.57351851e+00 - sys_corr_15: -1.92984647e+00 - sys_corr_16: 2.67277034e-01 - sys_corr_17: -3.86077078e+00 - sys_corr_18: 1.14351871e+01 - sys_corr_19: 1.03492128e+01 - sys_corr_20: 7.36577302e+00 - sys_corr_21: 4.93127090e+00 - sys_corr_22: -5.04637350e+01 - sys_corr_23: 2.93068599e+00 - sys_corr_24: -9.88611887e+01 - sys_corr_25: 1.41281574e+01 - sys_corr_26: 6.14830614e+01 + sys_corr_14: -7.57351851e+00 + sys_corr_15: 1.92984647e+00 + sys_corr_16: -2.67277034e-01 + sys_corr_17: 3.86077078e+00 + sys_corr_18: -1.14351871e+01 + sys_corr_19: -1.03492128e+01 + sys_corr_20: -7.36577302e+00 + sys_corr_21: -4.93127090e+00 + sys_corr_22: 5.04637350e+01 + sys_corr_23: -2.93068599e+00 + sys_corr_24: 9.88611887e+01 + sys_corr_25: -1.41281574e+01 + sys_corr_26: -6.14830614e+01 sys_corr_27: -3.17776910e+01 sys_corr_28: -7.90411174e+01 sys_corr_29: 4.92159358e+01 @@ -4728,100 +4728,100 @@ bins: sys_corr_36: 5.88668309e+01 sys_corr_37: -6.88382297e+01 sys_corr_38: -2.65809293e+02 - sys_corr_39: -5.71632689e+01 + sys_corr_39: 5.71632689e+01 sys_corr_40: 6.12871644e+00 sys_corr_41: 1.28005872e+02 - sys_corr_42: 6.13126780e+01 + sys_corr_42: -6.13126780e+01 sys_corr_43: 9.18155559e+01 - sys_corr_44: -5.19967759e+01 - sys_corr_45: 2.64535623e+01 - sys_corr_46: -4.29429065e+01 - sys_corr_47: 5.21120618e+01 - sys_corr_48: 2.52902865e+01 + sys_corr_44: 5.19967759e+01 + sys_corr_45: -2.64535623e+01 + sys_corr_46: 4.29429065e+01 + sys_corr_47: -5.21120618e+01 + sys_corr_48: -2.52902865e+01 sys_corr_49: 1.14840431e+01 - sys_corr_50: -2.72915235e+01 - sys_corr_51: 1.09773331e+00 - sys_corr_52: -1.82565483e+01 - sys_corr_53: 6.27894411e+00 - sys_corr_54: -3.93508133e+00 + sys_corr_50: 2.72915235e+01 + sys_corr_51: -1.09773331e+00 + sys_corr_52: 1.82565483e+01 + sys_corr_53: -6.27894411e+00 + sys_corr_54: 3.93508133e+00 sys_corr_55: -7.71678227e+00 sys_corr_56: 1.06964425e+01 - sys_corr_57: 4.09836666e-01 + sys_corr_57: -4.09836666e-01 sys_corr_58: 1.49957009e+00 - sys_corr_59: -4.58412253e+00 + sys_corr_59: 4.58412253e+00 sys_corr_60: -7.73732814e+00 sys_corr_61: 9.43427574e+00 sys_corr_62: 8.14263882e+00 - sys_corr_63: 2.06206613e+00 + sys_corr_63: -2.06206613e+00 sys_corr_64: -2.28220225e-01 sys_corr_65: -1.85334139e+00 - sys_corr_66: 8.84664698e+00 - sys_corr_67: 6.96300100e+00 - sys_corr_68: -1.56751230e+01 - sys_corr_69: 9.97946388e+00 - sys_corr_70: 1.89275661e+00 - sys_corr_71: -1.37493760e+00 - sys_corr_72: -1.55477277e+00 - sys_corr_73: 1.41765743e+01 - sys_corr_74: -1.66662430e+00 - sys_corr_75: 9.02337911e+00 + sys_corr_66: -8.84664698e+00 + sys_corr_67: -6.96300100e+00 + sys_corr_68: 1.56751230e+01 + sys_corr_69: -9.97946388e+00 + sys_corr_70: -1.89275661e+00 + sys_corr_71: 1.41765743e+01 + sys_corr_72: 1.55477277e+00 + sys_corr_73: 1.37493760e+00 + sys_corr_74: 1.66662430e+00 + sys_corr_75: -9.02337911e+00 sys_corr_76: 2.16075707e+00 sys_corr_77: -4.66775672e+00 - sys_corr_78: -3.63997623e+00 + sys_corr_78: -1.52715685e+00 sys_corr_79: -2.36402303e+00 - sys_corr_80: 1.52715685e+00 + sys_corr_80: 3.63997623e+00 sys_corr_81: 1.93465064e+00 - sys_corr_82: 8.75349071e-01 - sys_corr_83: 2.59825054e+00 + sys_corr_82: 2.59825054e+00 + sys_corr_83: -8.75349071e-01 sys_corr_84: -2.98882917e+00 - sys_corr_85: 2.07504530e+00 - sys_corr_86: -2.72676363e-01 + sys_corr_85: -2.07504530e+00 + sys_corr_86: 2.72676363e-01 sys_corr_87: -8.69806727e-01 sys_corr_88: 1.08975337e+00 - sys_corr_89: -2.59026169e-01 - sys_corr_90: 1.93174918e-01 + sys_corr_89: 2.59026169e-01 + sys_corr_90: -1.93174918e-01 sys_corr_91: 1.32248187e-01 - sys_corr_92: -6.15957786e-01 - sys_corr_93: 2.02663695e-01 + sys_corr_92: 6.15957786e-01 + sys_corr_93: -8.13965618e-01 sys_corr_94: 9.19411753e-01 - sys_corr_95: 8.13965618e-01 + sys_corr_95: -2.02663695e-01 sys_corr_96: 3.28689106e-02 sys_corr_97: -9.42919417e-02 sys_corr_98: -2.16064879e-01 sys_corr_99: -1.37092282e-02 - sys_corr_100: -5.16928391e-01 - sys_corr_101: 2.82417651e-01 - sys_corr_102: -8.34090085e-01 - sys_corr_103: 2.23256774e+00 - sys_corr_104: 2.29306653e-01 - sys_corr_105: 5.82308656e-01 - sys_corr_106: 4.17519425e-01 - sys_corr_107: 4.77000824e-01 - sys_corr_108: 1.86287305e-01 - sys_corr_109: -2.31071491e-01 - sys_corr_110: -2.26730564e-01 - sys_corr_111: -2.55378459e-01 - sys_corr_112: -9.35721570e-02 + sys_corr_100: 2.29306653e-01 + sys_corr_101: 2.23256774e+00 + sys_corr_102: -5.82308656e-01 + sys_corr_103: 8.34090085e-01 + sys_corr_104: 2.82417651e-01 + sys_corr_105: -5.16928391e-01 + sys_corr_106: -4.17519425e-01 + sys_corr_107: -4.77000824e-01 + sys_corr_108: 2.55378459e-01 + sys_corr_109: -1.86287305e-01 + sys_corr_110: 2.31071491e-01 + sys_corr_111: -2.26730564e-01 + sys_corr_112: 9.35721570e-02 sys_corr_113: -2.04298196e-01 sys_corr_114: -9.53790552e-04 - sys_corr_115: 7.00922355e-02 - sys_corr_116: -2.95366753e-02 + sys_corr_115: -7.00922355e-02 + sys_corr_116: 2.95366753e-02 sys_corr_117: 1.09301071e-02 - sys_corr_118: 5.62183611e-02 - sys_corr_119: -2.81472783e-05 + sys_corr_118: -5.62183611e-02 + sys_corr_119: 2.81472783e-05 sys_corr_120: 6.18049530e-03 sys_corr_121: 5.96641305e-03 sys_corr_122: 1.06999882e-02 - sys_corr_123: -9.83505854e-03 + sys_corr_123: 9.83505854e-03 sys_corr_124: 3.69218066e-02 - sys_corr_125: -4.57380486e-03 + sys_corr_125: 4.57380486e-03 sys_corr_126: 5.75460367e-03 - sys_corr_127: -1.57549807e-02 - sys_corr_128: 9.73982331e-03 - sys_corr_129: 2.90824469e-02 + sys_corr_127: 1.57549807e-02 + sys_corr_128: -9.73982331e-03 + sys_corr_129: -2.90824469e-02 sys_corr_130: 5.40071170e-03 - sys_corr_131: -3.11664646e-03 - sys_corr_132: 7.22152823e-02 + sys_corr_131: 7.22152823e-02 + sys_corr_132: 3.11664646e-03 stat: 0.0 luminosity: 5.64255494e+02 - sys_corr_1: 2.67434134e+02 @@ -4830,26 +4830,26 @@ bins: sys_corr_4: 2.66069369e+01 sys_corr_5: 1.96910800e+02 sys_corr_6: -6.04078038e+02 - sys_corr_7: 8.52929051e+01 - sys_corr_8: 1.39869642e+01 + sys_corr_7: -8.52929051e+01 + sys_corr_8: -1.39869642e+01 sys_corr_9: 3.92210955e+00 - sys_corr_10: -2.57806171e+01 - sys_corr_11: 9.84611069e+00 - sys_corr_12: 4.89708450e+01 + sys_corr_10: 2.57806171e+01 + sys_corr_11: -9.84611069e+00 + sys_corr_12: -4.89708450e+01 sys_corr_13: 1.68886369e+01 - sys_corr_14: 1.25443254e+01 - sys_corr_15: 3.27696840e+00 - sys_corr_16: -3.34613710e+00 - sys_corr_17: -9.89747115e+00 - sys_corr_18: 9.79170325e+00 - sys_corr_19: 1.48065180e+01 - sys_corr_20: 4.04270719e+00 - sys_corr_21: 6.91038661e+00 - sys_corr_22: -7.47240364e+01 - sys_corr_23: 1.19457159e+00 - sys_corr_24: -1.14320096e+02 - sys_corr_25: 3.00486801e+01 - sys_corr_26: 9.65897545e+01 + sys_corr_14: -1.25443254e+01 + sys_corr_15: -3.27696840e+00 + sys_corr_16: 3.34613710e+00 + sys_corr_17: 9.89747115e+00 + sys_corr_18: -9.79170325e+00 + sys_corr_19: -1.48065180e+01 + sys_corr_20: -4.04270719e+00 + sys_corr_21: -6.91038661e+00 + sys_corr_22: 7.47240364e+01 + sys_corr_23: -1.19457159e+00 + sys_corr_24: 1.14320096e+02 + sys_corr_25: -3.00486801e+01 + sys_corr_26: -9.65897545e+01 sys_corr_27: -4.80196857e+01 sys_corr_28: -8.14753815e+01 sys_corr_29: 5.13406936e+01 @@ -4862,100 +4862,100 @@ bins: sys_corr_36: 2.20787609e+01 sys_corr_37: -4.42486765e+01 sys_corr_38: 3.21618868e+01 - sys_corr_39: 3.74512346e+01 + sys_corr_39: -3.74512346e+01 sys_corr_40: -2.04713713e+01 sys_corr_41: 4.38149070e+00 - sys_corr_42: -8.50687940e+01 + sys_corr_42: 8.50687940e+01 sys_corr_43: -3.55236781e+01 - sys_corr_44: -1.98004362e+01 - sys_corr_45: 2.04164496e+02 - sys_corr_46: 6.03001438e+01 - sys_corr_47: -1.14004338e+02 - sys_corr_48: -1.08059976e+02 + sys_corr_44: 1.98004362e+01 + sys_corr_45: -2.04164496e+02 + sys_corr_46: -6.03001438e+01 + sys_corr_47: 1.14004338e+02 + sys_corr_48: 1.08059976e+02 sys_corr_49: -2.73464348e+01 - sys_corr_50: 4.55479977e+01 - sys_corr_51: -4.64156997e+01 - sys_corr_52: 3.17299166e+01 - sys_corr_53: -4.00944212e+00 - sys_corr_54: 4.08387043e+00 + sys_corr_50: -4.55479977e+01 + sys_corr_51: 4.64156997e+01 + sys_corr_52: -3.17299166e+01 + sys_corr_53: 4.00944212e+00 + sys_corr_54: -4.08387043e+00 sys_corr_55: -1.75684716e+01 sys_corr_56: 7.33917638e+00 - sys_corr_57: 3.87464061e+01 + sys_corr_57: -3.87464061e+01 sys_corr_58: 3.95567627e+00 - sys_corr_59: 3.50217348e+01 + sys_corr_59: -3.50217348e+01 sys_corr_60: -1.62422492e+01 sys_corr_61: 2.40173323e+01 sys_corr_62: -3.46800360e+01 - sys_corr_63: -2.31734468e+01 + sys_corr_63: 2.31734468e+01 sys_corr_64: 3.06202159e+00 sys_corr_65: -5.92407505e+00 - sys_corr_66: 9.80681619e-01 - sys_corr_67: -5.00264370e+00 - sys_corr_68: -5.33193111e+00 - sys_corr_69: 3.17564996e+00 - sys_corr_70: -1.17016843e+01 - sys_corr_71: 6.08328355e+00 - sys_corr_72: 3.77417196e+00 - sys_corr_73: 4.07884290e+00 - sys_corr_74: -5.39469248e+00 - sys_corr_75: 4.81088428e+00 + sys_corr_66: -9.80681619e-01 + sys_corr_67: 5.00264370e+00 + sys_corr_68: 5.33193111e+00 + sys_corr_69: -3.17564996e+00 + sys_corr_70: 1.17016843e+01 + sys_corr_71: 4.07884290e+00 + sys_corr_72: -3.77417196e+00 + sys_corr_73: -6.08328355e+00 + sys_corr_74: 5.39469248e+00 + sys_corr_75: -4.81088428e+00 sys_corr_76: 2.76773206e-01 sys_corr_77: -1.03720622e+01 - sys_corr_78: -1.24129476e+01 + sys_corr_78: 3.52295143e+00 sys_corr_79: -3.82217838e-01 - sys_corr_80: -3.52295143e+00 + sys_corr_80: 1.24129476e+01 sys_corr_81: -1.21935482e+01 - sys_corr_82: -9.39430826e+00 - sys_corr_83: -1.04627649e+01 + sys_corr_82: -1.04627649e+01 + sys_corr_83: 9.39430826e+00 sys_corr_84: 2.50721413e+00 - sys_corr_85: -3.09212994e+00 - sys_corr_86: -2.21145318e+00 + sys_corr_85: 3.09212994e+00 + sys_corr_86: 2.21145318e+00 sys_corr_87: -1.47585524e+01 sys_corr_88: 4.29275472e+00 - sys_corr_89: 7.99245078e-01 - sys_corr_90: -5.18088203e-01 + sys_corr_89: -7.99245078e-01 + sys_corr_90: 5.18088203e-01 sys_corr_91: 2.58267544e-01 - sys_corr_92: 2.71727636e+00 - sys_corr_93: 8.87837209e-02 + sys_corr_92: -2.71727636e+00 + sys_corr_93: -4.91346063e-01 sys_corr_94: 2.97933737e-01 - sys_corr_95: 4.91346063e-01 + sys_corr_95: -8.87837209e-02 sys_corr_96: -1.72184908e-02 sys_corr_97: -1.27565296e+00 sys_corr_98: -6.65233485e-01 sys_corr_99: -6.54260887e-01 - sys_corr_100: 9.83940162e-03 - sys_corr_101: -2.40416217e-01 - sys_corr_102: 6.84784979e-01 - sys_corr_103: -3.93640075e+00 - sys_corr_104: -9.96206126e-01 - sys_corr_105: -2.06732204e+00 - sys_corr_106: -5.82124793e-02 - sys_corr_107: 2.34866336e-01 - sys_corr_108: 5.58019478e-02 - sys_corr_109: -2.74548280e-01 - sys_corr_110: -3.64094937e-02 - sys_corr_111: 1.12971669e-01 - sys_corr_112: -1.47473623e-01 + sys_corr_100: -9.96206126e-01 + sys_corr_101: -3.93640075e+00 + sys_corr_102: 2.06732204e+00 + sys_corr_103: -6.84784979e-01 + sys_corr_104: -2.40416217e-01 + sys_corr_105: 9.83940162e-03 + sys_corr_106: 5.82124793e-02 + sys_corr_107: -2.34866336e-01 + sys_corr_108: -1.12971669e-01 + sys_corr_109: -5.58019478e-02 + sys_corr_110: 2.74548280e-01 + sys_corr_111: -3.64094937e-02 + sys_corr_112: 1.47473623e-01 sys_corr_113: -1.30875558e-01 sys_corr_114: 9.04015962e-04 - sys_corr_115: 5.52122655e-02 - sys_corr_116: -3.40493371e-02 + sys_corr_115: -5.52122655e-02 + sys_corr_116: 3.40493371e-02 sys_corr_117: 3.25168425e-02 - sys_corr_118: 5.27161945e-02 - sys_corr_119: 4.45128253e-03 + sys_corr_118: -5.27161945e-02 + sys_corr_119: -4.45128253e-03 sys_corr_120: 1.61774230e-02 sys_corr_121: 8.84217399e-03 sys_corr_122: 6.96906469e-03 - sys_corr_123: -6.13066976e-03 + sys_corr_123: 6.13066976e-03 sys_corr_124: 3.45044716e-02 - sys_corr_125: -2.13566625e-03 + sys_corr_125: 2.13566625e-03 sys_corr_126: 1.92080971e-03 - sys_corr_127: -1.11660338e-01 - sys_corr_128: 7.20181600e-02 - sys_corr_129: 1.72041854e-02 + sys_corr_127: 1.11660338e-01 + sys_corr_128: -7.20181600e-02 + sys_corr_129: -1.72041854e-02 sys_corr_130: 7.74296943e-03 - sys_corr_131: -2.57784142e-03 - sys_corr_132: 9.25710781e-02 + sys_corr_131: 9.25710781e-02 + sys_corr_132: 2.57784142e-03 stat: 0.0 luminosity: 5.78458298e+02 - sys_corr_1: 2.57497957e+02 @@ -4964,26 +4964,26 @@ bins: sys_corr_4: -6.81142637e+00 sys_corr_5: 1.81831363e+02 sys_corr_6: -5.55727510e+02 - sys_corr_7: 1.01384684e+02 - sys_corr_8: 2.46872539e+01 + sys_corr_7: -1.01384684e+02 + sys_corr_8: -2.46872539e+01 sys_corr_9: -1.87004614e+01 - sys_corr_10: -2.06363544e+01 - sys_corr_11: 3.16320481e+01 - sys_corr_12: 8.30877763e+01 + sys_corr_10: 2.06363544e+01 + sys_corr_11: -3.16320481e+01 + sys_corr_12: -8.30877763e+01 sys_corr_13: 4.18665562e+01 - sys_corr_14: 1.85725280e+01 - sys_corr_15: 6.39113695e+00 - sys_corr_16: -5.41628784e+00 - sys_corr_17: -1.38697672e+01 - sys_corr_18: 3.52838669e+00 - sys_corr_19: 1.31885955e+01 - sys_corr_20: 7.90827321e+00 - sys_corr_21: 7.66051205e+00 - sys_corr_22: -5.98836293e+01 - sys_corr_23: -1.59616224e+00 - sys_corr_24: -1.04394689e+02 - sys_corr_25: 4.05127498e+01 - sys_corr_26: 1.23827614e+02 + sys_corr_14: -1.85725280e+01 + sys_corr_15: -6.39113695e+00 + sys_corr_16: 5.41628784e+00 + sys_corr_17: 1.38697672e+01 + sys_corr_18: -3.52838669e+00 + sys_corr_19: -1.31885955e+01 + sys_corr_20: -7.90827321e+00 + sys_corr_21: -7.66051205e+00 + sys_corr_22: 5.98836293e+01 + sys_corr_23: 1.59616224e+00 + sys_corr_24: 1.04394689e+02 + sys_corr_25: -4.05127498e+01 + sys_corr_26: -1.23827614e+02 sys_corr_27: -6.18357401e+01 sys_corr_28: -8.84131501e+01 sys_corr_29: 5.40451014e+01 @@ -4996,100 +4996,100 @@ bins: sys_corr_36: 3.54477494e+01 sys_corr_37: -2.37424071e+01 sys_corr_38: -1.26558453e+00 - sys_corr_39: 4.23382651e+01 + sys_corr_39: -4.23382651e+01 sys_corr_40: -2.28228633e+02 sys_corr_41: -1.18527038e+02 - sys_corr_42: -8.61389781e+01 + sys_corr_42: 8.61389781e+01 sys_corr_43: -5.41654509e+01 - sys_corr_44: 3.54904940e+00 - sys_corr_45: -9.35507198e+01 - sys_corr_46: -1.27625161e+02 - sys_corr_47: 5.13281269e+01 - sys_corr_48: 9.17814628e+00 + sys_corr_44: -3.54904940e+00 + sys_corr_45: 9.35507198e+01 + sys_corr_46: 1.27625161e+02 + sys_corr_47: -5.13281269e+01 + sys_corr_48: -9.17814628e+00 sys_corr_49: 4.12031340e+01 - sys_corr_50: -2.30565961e+01 - sys_corr_51: -2.08560758e+01 - sys_corr_52: 1.04531012e+01 - sys_corr_53: -7.49610865e+00 - sys_corr_54: -3.28936255e+01 + sys_corr_50: 2.30565961e+01 + sys_corr_51: 2.08560758e+01 + sys_corr_52: -1.04531012e+01 + sys_corr_53: 7.49610865e+00 + sys_corr_54: 3.28936255e+01 sys_corr_55: -1.09548631e+01 sys_corr_56: -3.13571350e+01 - sys_corr_57: 1.88318010e+01 + sys_corr_57: -1.88318010e+01 sys_corr_58: 3.33815280e+00 - sys_corr_59: 4.77658915e+00 + sys_corr_59: -4.77658915e+00 sys_corr_60: -6.52258243e+00 sys_corr_61: 4.42201621e+00 sys_corr_62: 1.20641888e+01 - sys_corr_63: -2.35289633e+01 + sys_corr_63: 2.35289633e+01 sys_corr_64: 4.88245381e+00 sys_corr_65: 1.45756838e+01 - sys_corr_66: 9.57502537e-01 - sys_corr_67: 1.03870689e+01 - sys_corr_68: -3.07156031e+01 - sys_corr_69: 2.70129509e+00 - sys_corr_70: -4.75733914e+00 - sys_corr_71: 6.11296504e+00 - sys_corr_72: -8.49777754e+00 - sys_corr_73: -1.13839181e+01 - sys_corr_74: 4.61128648e+00 - sys_corr_75: 1.73414169e+01 + sys_corr_66: -9.57502537e-01 + sys_corr_67: -1.03870689e+01 + sys_corr_68: 3.07156031e+01 + sys_corr_69: -2.70129509e+00 + sys_corr_70: 4.75733914e+00 + sys_corr_71: -1.13839181e+01 + sys_corr_72: 8.49777754e+00 + sys_corr_73: -6.11296504e+00 + sys_corr_74: -4.61128648e+00 + sys_corr_75: -1.73414169e+01 sys_corr_76: -3.44433318e+00 sys_corr_77: -1.31845379e+01 - sys_corr_78: 6.11780398e-01 + sys_corr_78: -5.26505992e+00 sys_corr_79: -4.35813152e+00 - sys_corr_80: 5.26505992e+00 + sys_corr_80: -6.11780398e-01 sys_corr_81: -1.25598496e+00 - sys_corr_82: 6.45412386e-02 - sys_corr_83: -8.42961677e-01 + sys_corr_82: -8.42961677e-01 + sys_corr_83: -6.45412386e-02 sys_corr_84: -2.54242336e+00 - sys_corr_85: 1.50582871e+00 - sys_corr_86: -7.13668768e+00 + sys_corr_85: -1.50582871e+00 + sys_corr_86: 7.13668768e+00 sys_corr_87: 2.03297961e+00 sys_corr_88: 7.14430794e+00 - sys_corr_89: -4.67178053e-01 - sys_corr_90: -5.53128787e-01 + sys_corr_89: 4.67178053e-01 + sys_corr_90: 5.53128787e-01 sys_corr_91: 3.40407618e-01 - sys_corr_92: 2.93477345e+00 - sys_corr_93: -4.33654909e-02 + sys_corr_92: -2.93477345e+00 + sys_corr_93: 1.32617690e-01 sys_corr_94: 3.51390416e-01 - sys_corr_95: -1.32617690e-01 + sys_corr_95: 4.33654909e-02 sys_corr_96: -3.44769744e-03 sys_corr_97: -9.28080959e-01 sys_corr_98: -2.88057426e-01 sys_corr_99: -4.80513810e-01 - sys_corr_100: -3.92243023e-01 - sys_corr_101: 2.19168794e-01 - sys_corr_102: -3.41888685e-01 - sys_corr_103: 4.01646806e-01 - sys_corr_104: 6.66321402e-01 - sys_corr_105: -4.77216534e-01 - sys_corr_106: 1.03814646e-01 - sys_corr_107: 1.30162433e-01 - sys_corr_108: 1.70075212e-01 - sys_corr_109: -2.27997009e-01 - sys_corr_110: -9.47488334e-02 - sys_corr_111: -1.33057844e-01 - sys_corr_112: -1.38002664e-01 + sys_corr_100: 6.66321402e-01 + sys_corr_101: 4.01646806e-01 + sys_corr_102: 4.77216534e-01 + sys_corr_103: 3.41888685e-01 + sys_corr_104: 2.19168794e-01 + sys_corr_105: -3.92243023e-01 + sys_corr_106: -1.03814646e-01 + sys_corr_107: -1.30162433e-01 + sys_corr_108: 1.33057844e-01 + sys_corr_109: -1.70075212e-01 + sys_corr_110: 2.27997009e-01 + sys_corr_111: -9.47488334e-02 + sys_corr_112: 1.38002664e-01 sys_corr_113: -1.63479855e-01 sys_corr_114: -5.88746251e-04 - sys_corr_115: 1.31276460e-01 - sys_corr_116: -4.39018440e-02 + sys_corr_115: -1.31276460e-01 + sys_corr_116: 4.39018440e-02 sys_corr_117: 2.28592097e-02 - sys_corr_118: 5.30167690e-02 - sys_corr_119: -3.83603951e-03 + sys_corr_118: -5.30167690e-02 + sys_corr_119: 3.83603951e-03 sys_corr_120: 8.87328201e-03 sys_corr_121: 5.97734791e-03 sys_corr_122: -1.50298650e-03 - sys_corr_123: -6.23081757e-03 + sys_corr_123: 6.23081757e-03 sys_corr_124: 3.52361439e-02 - sys_corr_125: 7.29681071e-03 + sys_corr_125: -7.29681071e-03 sys_corr_126: -3.76587162e-04 - sys_corr_127: 4.78063797e-02 - sys_corr_128: -1.30018053e-01 - sys_corr_129: 5.42429304e-02 + sys_corr_127: -4.78063797e-02 + sys_corr_128: 1.30018053e-01 + sys_corr_129: -5.42429304e-02 sys_corr_130: 1.96796793e-03 - sys_corr_131: 1.42621995e-02 - sys_corr_132: 5.85496004e-02 + sys_corr_131: 5.85496004e-02 + sys_corr_132: -1.42621995e-02 stat: 0.0 luminosity: 5.62970760e+02 - sys_corr_1: 2.64697211e+02 @@ -5098,26 +5098,26 @@ bins: sys_corr_4: -1.90278250e+01 sys_corr_5: 1.50000918e+02 sys_corr_6: -5.11061298e+02 - sys_corr_7: 1.49500578e+02 - sys_corr_8: 5.66926643e+01 + sys_corr_7: -1.49500578e+02 + sys_corr_8: -5.66926643e+01 sys_corr_9: -5.12071694e+01 - sys_corr_10: -2.04738929e+01 - sys_corr_11: 7.40878409e+01 - sys_corr_12: 1.29919728e+02 + sys_corr_10: 2.04738929e+01 + sys_corr_11: -7.40878409e+01 + sys_corr_12: -1.29919728e+02 sys_corr_13: 7.64005104e+01 - sys_corr_14: 3.10966700e+01 - sys_corr_15: 1.10530351e+01 - sys_corr_16: -7.70330106e+00 - sys_corr_17: -8.91083846e+00 - sys_corr_18: -7.29813362e+00 - sys_corr_19: 3.63397238e+00 - sys_corr_20: 1.14281973e+01 - sys_corr_21: 6.79297524e+00 - sys_corr_22: -3.74856932e+01 - sys_corr_23: 9.78184632e+00 - sys_corr_24: -7.14410790e+01 - sys_corr_25: 6.12958558e+01 - sys_corr_26: 1.56693558e+02 + sys_corr_14: -3.10966700e+01 + sys_corr_15: -1.10530351e+01 + sys_corr_16: 7.70330106e+00 + sys_corr_17: 8.91083846e+00 + sys_corr_18: 7.29813362e+00 + sys_corr_19: -3.63397238e+00 + sys_corr_20: -1.14281973e+01 + sys_corr_21: -6.79297524e+00 + sys_corr_22: 3.74856932e+01 + sys_corr_23: -9.78184632e+00 + sys_corr_24: 7.14410790e+01 + sys_corr_25: -6.12958558e+01 + sys_corr_26: -1.56693558e+02 sys_corr_27: -6.17045074e+01 sys_corr_28: -8.80844659e+01 sys_corr_29: 3.83538957e+01 @@ -5130,100 +5130,100 @@ bins: sys_corr_36: -7.65699930e+01 sys_corr_37: -1.58217600e+02 sys_corr_38: 2.08635032e+02 - sys_corr_39: -8.50339340e+01 + sys_corr_39: 8.50339340e+01 sys_corr_40: 1.01916756e+02 sys_corr_41: 5.29793554e+01 - sys_corr_42: 3.83358216e+01 + sys_corr_42: -3.83358216e+01 sys_corr_43: 7.43138657e+01 - sys_corr_44: -1.48602412e+01 - sys_corr_45: -1.79606363e+01 - sys_corr_46: -1.10672836e+02 - sys_corr_47: 5.11399182e+01 - sys_corr_48: 2.33957757e+01 + sys_corr_44: 1.48602412e+01 + sys_corr_45: 1.79606363e+01 + sys_corr_46: 1.10672836e+02 + sys_corr_47: -5.11399182e+01 + sys_corr_48: -2.33957757e+01 sys_corr_49: -3.21819701e+00 - sys_corr_50: 5.07300971e+00 - sys_corr_51: -3.32179510e+01 - sys_corr_52: 2.93214900e+01 - sys_corr_53: -1.12791617e+00 - sys_corr_54: 1.24666176e+01 + sys_corr_50: -5.07300971e+00 + sys_corr_51: 3.32179510e+01 + sys_corr_52: -2.93214900e+01 + sys_corr_53: 1.12791617e+00 + sys_corr_54: -1.24666176e+01 sys_corr_55: -3.91765765e+00 sys_corr_56: 8.61669600e+00 - sys_corr_57: -1.32809292e+01 + sys_corr_57: 1.32809292e+01 sys_corr_58: 1.08390561e+01 - sys_corr_59: -2.66524389e+01 + sys_corr_59: 2.66524389e+01 sys_corr_60: 4.24933241e+00 sys_corr_61: 3.62977243e+00 sys_corr_62: 1.52903210e+01 - sys_corr_63: 6.34551107e+00 + sys_corr_63: -6.34551107e+00 sys_corr_64: -6.39439698e+00 sys_corr_65: 7.98622648e+00 - sys_corr_66: 1.52917748e+01 - sys_corr_67: -6.91444833e+00 - sys_corr_68: -5.04812969e-01 - sys_corr_69: 8.16561477e-01 - sys_corr_70: 6.18591104e+00 - sys_corr_71: 5.75631008e+00 - sys_corr_72: -1.00906756e+01 - sys_corr_73: 1.03156986e+01 - sys_corr_74: 2.11936889e+00 - sys_corr_75: 3.93693697e+00 + sys_corr_66: -1.52917748e+01 + sys_corr_67: 6.91444833e+00 + sys_corr_68: 5.04812969e-01 + sys_corr_69: -8.16561477e-01 + sys_corr_70: -6.18591104e+00 + sys_corr_71: 1.03156986e+01 + sys_corr_72: 1.00906756e+01 + sys_corr_73: -5.75631008e+00 + sys_corr_74: -2.11936889e+00 + sys_corr_75: -3.93693697e+00 sys_corr_76: 7.15496209e-02 sys_corr_77: -3.12337388e+00 - sys_corr_78: 2.95338590e+00 + sys_corr_78: -4.59363122e+00 sys_corr_79: 6.73591242e-01 - sys_corr_80: 4.59363122e+00 + sys_corr_80: -2.95338590e+00 sys_corr_81: -1.11172322e+01 - sys_corr_82: -4.28352187e+00 - sys_corr_83: -7.85618619e+00 + sys_corr_82: -7.85618619e+00 + sys_corr_83: 4.28352187e+00 sys_corr_84: -2.84966890e-01 - sys_corr_85: 7.67024289e-01 - sys_corr_86: -3.03181688e+00 + sys_corr_85: -7.67024289e-01 + sys_corr_86: 3.03181688e+00 sys_corr_87: -4.71945730e+00 sys_corr_88: 4.92582871e+00 - sys_corr_89: -3.84690942e-01 - sys_corr_90: 5.65799014e-01 + sys_corr_89: 3.84690942e-01 + sys_corr_90: -5.65799014e-01 sys_corr_91: -1.20142678e+00 - sys_corr_92: -1.96290154e+00 - sys_corr_93: -2.67473717e-01 + sys_corr_92: 1.96290154e+00 + sys_corr_93: 1.11525305e+00 sys_corr_94: -1.05179656e+00 - sys_corr_95: -1.11525305e+00 + sys_corr_95: 2.67473717e-01 sys_corr_96: -1.59463158e-01 sys_corr_97: -1.70634813e+00 sys_corr_98: -7.67676645e-01 sys_corr_99: -8.78401683e-01 - sys_corr_100: 7.39925983e-02 - sys_corr_101: -2.34441401e-01 - sys_corr_102: 4.49410009e-01 - sys_corr_103: -2.66738715e+00 - sys_corr_104: 1.91446754e-03 - sys_corr_105: -1.97762024e+00 - sys_corr_106: -2.52649355e-01 - sys_corr_107: -5.48717551e-02 - sys_corr_108: 7.70559222e-02 - sys_corr_109: -2.44679029e-01 - sys_corr_110: -1.36021568e-01 - sys_corr_111: 2.70375625e-01 - sys_corr_112: -1.83368291e-02 + sys_corr_100: 1.91446754e-03 + sys_corr_101: -2.66738715e+00 + sys_corr_102: 1.97762024e+00 + sys_corr_103: -4.49410009e-01 + sys_corr_104: -2.34441401e-01 + sys_corr_105: 7.39925983e-02 + sys_corr_106: 2.52649355e-01 + sys_corr_107: 5.48717551e-02 + sys_corr_108: -2.70375625e-01 + sys_corr_109: -7.70559222e-02 + sys_corr_110: 2.44679029e-01 + sys_corr_111: -1.36021568e-01 + sys_corr_112: 1.83368291e-02 sys_corr_113: -1.61072580e-01 sys_corr_114: 2.88051753e-04 - sys_corr_115: 2.11514862e-02 - sys_corr_116: -5.95551542e-02 + sys_corr_115: -2.11514862e-02 + sys_corr_116: 5.95551542e-02 sys_corr_117: 4.20094267e-02 - sys_corr_118: 3.04554630e-02 - sys_corr_119: -4.70436474e-03 + sys_corr_118: -3.04554630e-02 + sys_corr_119: 4.70436474e-03 sys_corr_120: 2.21680129e-02 sys_corr_121: 7.99837628e-03 sys_corr_122: -1.15265532e-02 - sys_corr_123: -6.50318234e-03 + sys_corr_123: 6.50318234e-03 sys_corr_124: 6.51967030e-02 - sys_corr_125: 9.77777876e-03 + sys_corr_125: -9.77777876e-03 sys_corr_126: 7.45974897e-03 - sys_corr_127: 9.95486454e-02 - sys_corr_128: 3.47957568e-03 - sys_corr_129: 3.32900135e-03 + sys_corr_127: -9.95486454e-02 + sys_corr_128: -3.47957568e-03 + sys_corr_129: -3.32900135e-03 sys_corr_130: 1.74326230e-03 - sys_corr_131: 1.01886964e-02 - sys_corr_132: 2.20636725e-02 + sys_corr_131: 2.20636725e-02 + sys_corr_132: -1.01886964e-02 stat: 0.0 luminosity: 5.65947492e+02 - sys_corr_1: 2.65839597e+02 @@ -5232,26 +5232,26 @@ bins: sys_corr_4: -4.57315076e+01 sys_corr_5: 1.31292304e+02 sys_corr_6: -4.56887973e+02 - sys_corr_7: 1.35373765e+02 - sys_corr_8: 5.20482070e+01 + sys_corr_7: -1.35373765e+02 + sys_corr_8: -5.20482070e+01 sys_corr_9: -6.76571054e+01 - sys_corr_10: -1.45726147e+01 - sys_corr_11: 1.15052301e+02 - sys_corr_12: 1.60910759e+02 + sys_corr_10: 1.45726147e+01 + sys_corr_11: -1.15052301e+02 + sys_corr_12: -1.60910759e+02 sys_corr_13: 7.82790655e+01 - sys_corr_14: 1.75417825e+01 - sys_corr_15: 2.00944684e+01 - sys_corr_16: -4.06972122e+00 - sys_corr_17: -1.07948582e+00 - sys_corr_18: -2.82861127e+00 - sys_corr_19: 2.31902965e+01 - sys_corr_20: 9.12239079e+00 - sys_corr_21: 4.78101301e+00 - sys_corr_22: -5.77235514e+01 - sys_corr_23: -4.89320201e+00 - sys_corr_24: -4.02286537e+01 - sys_corr_25: 6.65378888e+01 - sys_corr_26: 1.48354958e+02 + sys_corr_14: -1.75417825e+01 + sys_corr_15: -2.00944684e+01 + sys_corr_16: 4.06972122e+00 + sys_corr_17: 1.07948582e+00 + sys_corr_18: 2.82861127e+00 + sys_corr_19: -2.31902965e+01 + sys_corr_20: -9.12239079e+00 + sys_corr_21: -4.78101301e+00 + sys_corr_22: 5.77235514e+01 + sys_corr_23: 4.89320201e+00 + sys_corr_24: 4.02286537e+01 + sys_corr_25: -6.65378888e+01 + sys_corr_26: -1.48354958e+02 sys_corr_27: -5.87840285e+01 sys_corr_28: -4.69305963e+01 sys_corr_29: 9.25201434e+00 @@ -5264,100 +5264,100 @@ bins: sys_corr_36: -2.28428950e+01 sys_corr_37: 5.12733650e+00 sys_corr_38: -3.46137142e+01 - sys_corr_39: 6.01939870e+01 + sys_corr_39: -6.01939870e+01 sys_corr_40: -9.33092788e+01 sys_corr_41: -3.04418838e+01 - sys_corr_42: 6.65490460e+01 + sys_corr_42: -6.65490460e+01 sys_corr_43: 1.35513620e+02 - sys_corr_44: 5.18122795e+01 - sys_corr_45: -3.97035837e+01 - sys_corr_46: 6.65809144e+01 - sys_corr_47: -7.01054688e+01 - sys_corr_48: 6.65193483e+01 + sys_corr_44: -5.18122795e+01 + sys_corr_45: 3.97035837e+01 + sys_corr_46: -6.65809144e+01 + sys_corr_47: 7.01054688e+01 + sys_corr_48: -6.65193483e+01 sys_corr_49: -1.80220435e+02 - sys_corr_50: 6.72630105e+01 - sys_corr_51: -7.42514460e-01 - sys_corr_52: -2.79285814e+01 - sys_corr_53: 4.68232001e+00 - sys_corr_54: 8.74764073e+00 + sys_corr_50: -6.72630105e+01 + sys_corr_51: 7.42514460e-01 + sys_corr_52: 2.79285814e+01 + sys_corr_53: -4.68232001e+00 + sys_corr_54: -8.74764073e+00 sys_corr_55: 5.76940709e+01 sys_corr_56: 2.29339867e+01 - sys_corr_57: -2.61910718e+01 + sys_corr_57: 2.61910718e+01 sys_corr_58: 2.18183146e+01 - sys_corr_59: 6.11668134e+00 + sys_corr_59: -6.11668134e+00 sys_corr_60: 1.71047636e+01 sys_corr_61: -1.44472739e+01 sys_corr_62: -1.35953971e+01 - sys_corr_63: 1.40443897e+01 + sys_corr_63: -1.40443897e+01 sys_corr_64: 3.71568854e-01 sys_corr_65: -2.02411580e+01 - sys_corr_66: -8.69887332e+00 - sys_corr_67: -5.37854316e+00 - sys_corr_68: 2.14737665e+01 - sys_corr_69: -1.93400769e+01 - sys_corr_70: -1.30423334e+01 - sys_corr_71: 6.50034160e+00 - sys_corr_72: -1.10604576e+00 - sys_corr_73: -1.90279893e+01 - sys_corr_74: -8.64672896e+00 - sys_corr_75: -1.15505891e+01 + sys_corr_66: 8.69887332e+00 + sys_corr_67: 5.37854316e+00 + sys_corr_68: -2.14737665e+01 + sys_corr_69: 1.93400769e+01 + sys_corr_70: 1.30423334e+01 + sys_corr_71: -1.90279893e+01 + sys_corr_72: 1.10604576e+00 + sys_corr_73: -6.50034160e+00 + sys_corr_74: 8.64672896e+00 + sys_corr_75: 1.15505891e+01 sys_corr_76: -7.28278979e+00 sys_corr_77: -9.75757241e+00 - sys_corr_78: 3.96779316e+00 + sys_corr_78: -5.67806572e+00 sys_corr_79: -2.45998613e+00 - sys_corr_80: 5.67806572e+00 + sys_corr_80: -3.96779316e+00 sys_corr_81: 6.84865237e+00 - sys_corr_82: 5.18652137e+00 - sys_corr_83: 7.01963428e-01 + sys_corr_82: 7.01963428e-01 + sys_corr_83: -5.18652137e+00 sys_corr_84: -2.90624838e+00 - sys_corr_85: 3.21168916e+00 - sys_corr_86: -8.09239338e+00 + sys_corr_85: -3.21168916e+00 + sys_corr_86: 8.09239338e+00 sys_corr_87: 1.38462818e+00 sys_corr_88: 1.92182334e+00 - sys_corr_89: -1.00595954e+00 - sys_corr_90: 7.56538713e-01 + sys_corr_89: 1.00595954e+00 + sys_corr_90: -7.56538713e-01 sys_corr_91: -6.14124210e-01 - sys_corr_92: 6.40605521e-01 - sys_corr_93: -3.21882953e-01 + sys_corr_92: -6.40605521e-01 + sys_corr_93: 2.06828710e+00 sys_corr_94: -1.76368882e+00 - sys_corr_95: -2.06828710e+00 + sys_corr_95: 3.21882953e-01 sys_corr_96: -8.28051081e-02 sys_corr_97: -2.04449608e+00 sys_corr_98: -9.47232761e-01 sys_corr_99: -1.78539110e-02 - sys_corr_100: 4.42460436e-01 - sys_corr_101: -1.15099079e-01 - sys_corr_102: 3.85829266e-02 - sys_corr_103: -2.73459878e+00 - sys_corr_104: 3.85056772e-01 - sys_corr_105: -1.95513802e+00 - sys_corr_106: -4.40811697e-01 - sys_corr_107: -1.87096485e-01 - sys_corr_108: 6.31604460e-02 - sys_corr_109: -3.85997090e-01 - sys_corr_110: 2.62642749e-02 - sys_corr_111: 4.29852639e-01 - sys_corr_112: 5.63146464e-03 + sys_corr_100: 3.85056772e-01 + sys_corr_101: -2.73459878e+00 + sys_corr_102: 1.95513802e+00 + sys_corr_103: -3.85829266e-02 + sys_corr_104: -1.15099079e-01 + sys_corr_105: 4.42460436e-01 + sys_corr_106: 4.40811697e-01 + sys_corr_107: 1.87096485e-01 + sys_corr_108: -4.29852639e-01 + sys_corr_109: -6.31604460e-02 + sys_corr_110: 3.85997090e-01 + sys_corr_111: 2.62642749e-02 + sys_corr_112: -5.63146464e-03 sys_corr_113: -6.10999070e-02 sys_corr_114: 6.76291857e-04 - sys_corr_115: -2.90975619e-02 - sys_corr_116: -8.79699669e-02 + sys_corr_115: 2.90975619e-02 + sys_corr_116: 8.79699669e-02 sys_corr_117: 8.21285466e-02 - sys_corr_118: 1.75613945e-02 - sys_corr_119: -2.23024510e-03 + sys_corr_118: -1.75613945e-02 + sys_corr_119: 2.23024510e-03 sys_corr_120: 3.19925313e-02 sys_corr_121: 6.78100551e-03 sys_corr_122: -1.44673813e-02 - sys_corr_123: 1.14544731e-04 + sys_corr_123: -1.14544731e-04 sys_corr_124: 9.49437022e-02 - sys_corr_125: 2.81647361e-02 + sys_corr_125: -2.81647361e-02 sys_corr_126: 1.14533650e-03 - sys_corr_127: -6.43540967e-01 - sys_corr_128: -1.51504595e-01 - sys_corr_129: 1.28446347e-01 + sys_corr_127: 6.43540967e-01 + sys_corr_128: 1.51504595e-01 + sys_corr_129: -1.28446347e-01 sys_corr_130: 5.05029625e-03 - sys_corr_131: 2.99806560e-02 - sys_corr_132: 3.11426016e-02 + sys_corr_131: 3.11426016e-02 + sys_corr_132: -2.99806560e-02 stat: 0.0 luminosity: 5.62015630e+02 - sys_corr_1: 2.59584460e+02 @@ -5366,26 +5366,26 @@ bins: sys_corr_4: -6.99481210e+01 sys_corr_5: 9.60622997e+01 sys_corr_6: -3.78398973e+02 - sys_corr_7: 1.46649277e+02 - sys_corr_8: 8.12141599e+01 + sys_corr_7: -1.46649277e+02 + sys_corr_8: -8.12141599e+01 sys_corr_9: -9.37876032e+01 - sys_corr_10: -1.00702605e+01 - sys_corr_11: 1.33575220e+02 - sys_corr_12: 1.63170005e+02 + sys_corr_10: 1.00702605e+01 + sys_corr_11: -1.33575220e+02 + sys_corr_12: -1.63170005e+02 sys_corr_13: 1.12159319e+02 - sys_corr_14: 3.66808291e+01 - sys_corr_15: 3.37632928e+01 - sys_corr_16: -2.85155723e+01 - sys_corr_17: -1.72967211e+01 - sys_corr_18: -2.71154857e+01 - sys_corr_19: 1.70551244e+01 - sys_corr_20: -2.74705897e+00 - sys_corr_21: -1.64631688e+00 - sys_corr_22: -7.02704311e+01 - sys_corr_23: 1.89274351e+00 - sys_corr_24: 1.04112200e+01 - sys_corr_25: 6.94125559e+01 - sys_corr_26: 1.59603406e+02 + sys_corr_14: -3.66808291e+01 + sys_corr_15: -3.37632928e+01 + sys_corr_16: 2.85155723e+01 + sys_corr_17: 1.72967211e+01 + sys_corr_18: 2.71154857e+01 + sys_corr_19: -1.70551244e+01 + sys_corr_20: 2.74705897e+00 + sys_corr_21: 1.64631688e+00 + sys_corr_22: 7.02704311e+01 + sys_corr_23: -1.89274351e+00 + sys_corr_24: -1.04112200e+01 + sys_corr_25: -6.94125559e+01 + sys_corr_26: -1.59603406e+02 sys_corr_27: -5.56725845e+01 sys_corr_28: -4.04173345e+01 sys_corr_29: -2.19811393e+00 @@ -5398,100 +5398,100 @@ bins: sys_corr_36: 1.13923201e+01 sys_corr_37: -3.81468671e+01 sys_corr_38: -5.45655763e+01 - sys_corr_39: 2.72613278e+01 + sys_corr_39: -2.72613278e+01 sys_corr_40: 8.24436924e+01 sys_corr_41: 1.50278898e+02 - sys_corr_42: -1.87973113e+02 + sys_corr_42: 1.87973113e+02 sys_corr_43: -7.59636975e+01 - sys_corr_44: 8.74049153e+01 - sys_corr_45: -1.22123885e+02 - sys_corr_46: 6.95788001e+01 - sys_corr_47: -8.69985299e+00 - sys_corr_48: -5.01207500e+01 + sys_corr_44: -8.74049153e+01 + sys_corr_45: 1.22123885e+02 + sys_corr_46: -6.95788001e+01 + sys_corr_47: 8.69985299e+00 + sys_corr_48: 5.01207500e+01 sys_corr_49: 2.14567565e+01 - sys_corr_50: -7.50690449e+00 - sys_corr_51: 4.37215144e+01 - sys_corr_52: 2.37470594e+01 - sys_corr_53: 7.66882335e+00 - sys_corr_54: -2.78288870e+01 + sys_corr_50: 7.50690449e+00 + sys_corr_51: -4.37215144e+01 + sys_corr_52: -2.37470594e+01 + sys_corr_53: -7.66882335e+00 + sys_corr_54: 2.78288870e+01 sys_corr_55: 4.53444049e+01 sys_corr_56: 8.04733626e+00 - sys_corr_57: 6.23620230e+00 + sys_corr_57: -6.23620230e+00 sys_corr_58: 1.05980122e+01 - sys_corr_59: 9.89658801e-01 + sys_corr_59: -9.89658801e-01 sys_corr_60: 8.32743407e+00 sys_corr_61: -8.16831371e+00 sys_corr_62: 9.08921841e-01 - sys_corr_63: 6.17027019e+00 + sys_corr_63: -6.17027019e+00 sys_corr_64: 1.67269610e+01 sys_corr_65: 5.09132779e+00 - sys_corr_66: 5.82105759e-01 - sys_corr_67: -1.21149259e+01 - sys_corr_68: 9.64644366e+00 - sys_corr_69: -3.01042948e+00 - sys_corr_70: -2.60499928e+00 - sys_corr_71: 8.87488275e+00 - sys_corr_72: 3.70673501e+00 - sys_corr_73: 1.17526691e+00 - sys_corr_74: 3.74826950e+00 - sys_corr_75: 1.83259115e+00 + sys_corr_66: -5.82105759e-01 + sys_corr_67: 1.21149259e+01 + sys_corr_68: -9.64644366e+00 + sys_corr_69: 3.01042948e+00 + sys_corr_70: 2.60499928e+00 + sys_corr_71: 1.17526691e+00 + sys_corr_72: -3.70673501e+00 + sys_corr_73: -8.87488275e+00 + sys_corr_74: -3.74826950e+00 + sys_corr_75: -1.83259115e+00 sys_corr_76: -7.32748667e+00 sys_corr_77: 1.25865967e+00 - sys_corr_78: -2.21128912e-01 + sys_corr_78: -6.07684522e+00 sys_corr_79: 3.66592636e+00 - sys_corr_80: 6.07684522e+00 + sys_corr_80: 2.21128912e-01 sys_corr_81: 6.81807982e+00 - sys_corr_82: 9.19680405e+00 - sys_corr_83: 3.61090529e+00 + sys_corr_82: 3.61090529e+00 + sys_corr_83: -9.19680405e+00 sys_corr_84: -2.62674332e+00 - sys_corr_85: 4.14068049e+00 - sys_corr_86: -4.78513926e+00 + sys_corr_85: -4.14068049e+00 + sys_corr_86: 4.78513926e+00 sys_corr_87: 1.02522227e+01 sys_corr_88: 4.10002562e+00 - sys_corr_89: -1.48566230e+00 - sys_corr_90: -4.31408979e-03 + sys_corr_89: 1.48566230e+00 + sys_corr_90: 4.31408979e-03 sys_corr_91: -2.01221358e-01 - sys_corr_92: -1.68216457e+00 - sys_corr_93: -2.03752798e-01 + sys_corr_92: 1.68216457e+00 + sys_corr_93: 1.83274914e+00 sys_corr_94: -7.57834515e-01 - sys_corr_95: -1.83274914e+00 + sys_corr_95: 2.03752798e-01 sys_corr_96: -8.65021329e-02 sys_corr_97: -1.29426434e+00 sys_corr_98: -6.78952552e-02 sys_corr_99: -1.15012618e+00 - sys_corr_100: 7.68261399e-01 - sys_corr_101: -4.21336193e-01 - sys_corr_102: 7.88028336e-01 - sys_corr_103: -2.98981518e+00 - sys_corr_104: 7.58514953e-01 - sys_corr_105: -1.70483163e+00 - sys_corr_106: -8.28645889e-01 - sys_corr_107: -7.22051797e-01 - sys_corr_108: -2.39634246e-02 - sys_corr_109: -5.85014780e-02 - sys_corr_110: 1.77449328e-01 - sys_corr_111: 9.53053418e-01 - sys_corr_112: 7.81280984e-02 + sys_corr_100: 7.58514953e-01 + sys_corr_101: -2.98981518e+00 + sys_corr_102: 1.70483163e+00 + sys_corr_103: -7.88028336e-01 + sys_corr_104: -4.21336193e-01 + sys_corr_105: 7.68261399e-01 + sys_corr_106: 8.28645889e-01 + sys_corr_107: 7.22051797e-01 + sys_corr_108: -9.53053418e-01 + sys_corr_109: 2.39634246e-02 + sys_corr_110: 5.85014780e-02 + sys_corr_111: 1.77449328e-01 + sys_corr_112: -7.81280984e-02 sys_corr_113: 3.61472519e-02 sys_corr_114: 1.41314138e-03 - sys_corr_115: -8.68342780e-02 - sys_corr_116: -4.30556402e-02 + sys_corr_115: 8.68342780e-02 + sys_corr_116: 4.30556402e-02 sys_corr_117: 5.27020852e-02 - sys_corr_118: 3.63767766e-03 - sys_corr_119: -1.71962376e-03 + sys_corr_118: -3.63767766e-03 + sys_corr_119: 1.71962376e-03 sys_corr_120: 2.71546293e-02 sys_corr_121: 2.64915185e-04 sys_corr_122: -2.60200641e-02 - sys_corr_123: 9.35128379e-03 + sys_corr_123: -9.35128379e-03 sys_corr_124: 7.13190624e-02 - sys_corr_125: 2.17642240e-02 + sys_corr_125: -2.17642240e-02 sys_corr_126: -2.85075071e-04 - sys_corr_127: -3.58682020e-01 - sys_corr_128: -2.02090473e-01 - sys_corr_129: -7.10298176e-02 + sys_corr_127: 3.58682020e-01 + sys_corr_128: 2.02090473e-01 + sys_corr_129: 7.10298176e-02 sys_corr_130: -1.31627288e-03 - sys_corr_131: 2.60605703e-02 - sys_corr_132: -2.27790396e-02 + sys_corr_131: -2.27790396e-02 + sys_corr_132: -2.60605703e-02 stat: 0.0 luminosity: 5.39288002e+02 - sys_corr_1: 2.76752992e+02 @@ -5500,26 +5500,26 @@ bins: sys_corr_4: -1.10691656e+02 sys_corr_5: 1.48302757e+01 sys_corr_6: -2.28922602e+02 - sys_corr_7: 1.74844090e+02 - sys_corr_8: 1.11758228e+02 + sys_corr_7: -1.74844090e+02 + sys_corr_8: -1.11758228e+02 sys_corr_9: -1.33812324e+02 - sys_corr_10: 1.81323938e+01 - sys_corr_11: 1.87370598e+02 - sys_corr_12: 2.39358043e+02 + sys_corr_10: -1.81323938e+01 + sys_corr_11: -1.87370598e+02 + sys_corr_12: -2.39358043e+02 sys_corr_13: 1.43671215e+02 - sys_corr_14: 4.77630526e+01 - sys_corr_15: 1.94276819e+01 - sys_corr_16: -7.48336911e+00 - sys_corr_17: -1.15271999e+01 - sys_corr_18: -9.82954619e+00 - sys_corr_19: 7.01919658e+00 - sys_corr_20: -5.96908577e+00 - sys_corr_21: -5.99451326e+00 - sys_corr_22: -3.85969460e+01 - sys_corr_23: 6.82104838e+00 - sys_corr_24: 1.04584688e+02 - sys_corr_25: 9.01119244e+01 - sys_corr_26: 1.77950705e+02 + sys_corr_14: -4.77630526e+01 + sys_corr_15: -1.94276819e+01 + sys_corr_16: 7.48336911e+00 + sys_corr_17: 1.15271999e+01 + sys_corr_18: 9.82954619e+00 + sys_corr_19: -7.01919658e+00 + sys_corr_20: 5.96908577e+00 + sys_corr_21: 5.99451326e+00 + sys_corr_22: 3.85969460e+01 + sys_corr_23: -6.82104838e+00 + sys_corr_24: -1.04584688e+02 + sys_corr_25: -9.01119244e+01 + sys_corr_26: -1.77950705e+02 sys_corr_27: -3.45864162e+01 sys_corr_28: -4.03807383e+01 sys_corr_29: -1.52061927e+01 @@ -5532,100 +5532,100 @@ bins: sys_corr_36: 4.49266841e+01 sys_corr_37: 8.32366628e+01 sys_corr_38: 2.10446709e+00 - sys_corr_39: 2.29190113e+01 + sys_corr_39: -2.29190113e+01 sys_corr_40: 6.46265917e+00 sys_corr_41: -7.72518586e+01 - sys_corr_42: -2.05852011e+01 + sys_corr_42: 2.05852011e+01 sys_corr_43: 7.97356253e+01 - sys_corr_44: -2.34971036e+01 - sys_corr_45: 1.30410611e+02 - sys_corr_46: 8.50424578e+01 - sys_corr_47: 1.55396239e+02 - sys_corr_48: 2.57001113e+01 + sys_corr_44: 2.34971036e+01 + sys_corr_45: -1.30410611e+02 + sys_corr_46: -8.50424578e+01 + sys_corr_47: -1.55396239e+02 + sys_corr_48: -2.57001113e+01 sys_corr_49: 6.51711415e+01 - sys_corr_50: -8.16702592e+01 - sys_corr_51: 4.28214296e+01 - sys_corr_52: 5.02685089e+01 - sys_corr_53: 4.20384927e+01 - sys_corr_54: -7.63240311e-01 + sys_corr_50: 8.16702592e+01 + sys_corr_51: -4.28214296e+01 + sys_corr_52: -5.02685089e+01 + sys_corr_53: -4.20384927e+01 + sys_corr_54: 7.63240311e-01 sys_corr_55: 1.12027649e+01 sys_corr_56: -1.10442213e+01 - sys_corr_57: -6.45226252e+00 + sys_corr_57: 6.45226252e+00 sys_corr_58: 6.76427692e+00 - sys_corr_59: 1.50471835e+01 + sys_corr_59: -1.50471835e+01 sys_corr_60: 2.04846222e-01 sys_corr_61: 1.75434783e+01 sys_corr_62: -1.00173300e+01 - sys_corr_63: 1.72786732e+01 + sys_corr_63: -1.72786732e+01 sys_corr_64: -3.54006204e+00 sys_corr_65: -1.25986505e+01 - sys_corr_66: 1.76010500e+01 - sys_corr_67: 8.23015758e+00 - sys_corr_68: -6.88549769e+00 - sys_corr_69: 2.30811175e+01 - sys_corr_70: 1.18199937e+00 - sys_corr_71: -5.38235437e+00 - sys_corr_72: -8.80037166e+00 - sys_corr_73: 2.77513647e+01 - sys_corr_74: 1.33904575e+01 - sys_corr_75: -1.75105463e+01 + sys_corr_66: -1.76010500e+01 + sys_corr_67: -8.23015758e+00 + sys_corr_68: 6.88549769e+00 + sys_corr_69: -2.30811175e+01 + sys_corr_70: -1.18199937e+00 + sys_corr_71: 2.77513647e+01 + sys_corr_72: 8.80037166e+00 + sys_corr_73: 5.38235437e+00 + sys_corr_74: -1.33904575e+01 + sys_corr_75: 1.75105463e+01 sys_corr_76: 1.04075426e+01 sys_corr_77: 1.10318179e+01 - sys_corr_78: 1.15009447e+01 + sys_corr_78: 5.77821852e+00 sys_corr_79: 5.81348176e+00 - sys_corr_80: -5.77821852e+00 + sys_corr_80: -1.15009447e+01 sys_corr_81: 2.62591171e-01 - sys_corr_82: -7.44953801e-01 - sys_corr_83: 3.35132448e+00 + sys_corr_82: 3.35132448e+00 + sys_corr_83: 7.44953801e-01 sys_corr_84: -7.98018101e-02 - sys_corr_85: 5.72662325e+00 - sys_corr_86: 8.21821489e+00 + sys_corr_85: -5.72662325e+00 + sys_corr_86: -8.21821489e+00 sys_corr_87: -2.65840061e+00 sys_corr_88: -5.01542736e+00 - sys_corr_89: 4.16596312e-01 - sys_corr_90: 1.35710262e+00 + sys_corr_89: -4.16596312e-01 + sys_corr_90: -1.35710262e+00 sys_corr_91: -5.20251312e+00 - sys_corr_92: -5.62725786e+00 - sys_corr_93: -3.60054003e-01 + sys_corr_92: 5.62725786e+00 + sys_corr_93: 1.03741676e+00 sys_corr_94: -1.41667138e+00 - sys_corr_95: -1.03741676e+00 + sys_corr_95: 3.60054003e-01 sys_corr_96: -2.17558263e-02 sys_corr_97: -5.36749935e-01 sys_corr_98: -5.63081022e-01 sys_corr_99: 3.42840189e-01 - sys_corr_100: 4.13349358e-01 - sys_corr_101: -6.45986959e-01 - sys_corr_102: 1.71273965e-01 - sys_corr_103: -1.12239743e+00 - sys_corr_104: 1.43889454e-01 - sys_corr_105: -5.13761675e-01 - sys_corr_106: -5.84216105e-01 - sys_corr_107: -8.49380711e-01 - sys_corr_108: -1.00147808e-01 - sys_corr_109: 1.77739015e-01 - sys_corr_110: 3.22642051e-01 - sys_corr_111: 3.20256114e-02 - sys_corr_112: 9.56086215e-02 + sys_corr_100: 1.43889454e-01 + sys_corr_101: -1.12239743e+00 + sys_corr_102: 5.13761675e-01 + sys_corr_103: -1.71273965e-01 + sys_corr_104: -6.45986959e-01 + sys_corr_105: 4.13349358e-01 + sys_corr_106: 5.84216105e-01 + sys_corr_107: 8.49380711e-01 + sys_corr_108: -3.20256114e-02 + sys_corr_109: 1.00147808e-01 + sys_corr_110: -1.77739015e-01 + sys_corr_111: 3.22642051e-01 + sys_corr_112: -9.56086215e-02 sys_corr_113: 5.16547731e-03 sys_corr_114: 1.42311441e-03 - sys_corr_115: -1.36248689e-01 - sys_corr_116: 1.90753773e-02 + sys_corr_115: 1.36248689e-01 + sys_corr_116: -1.90753773e-02 sys_corr_117: -1.63723774e-02 - sys_corr_118: -1.49664172e-02 - sys_corr_119: 2.41186922e-03 + sys_corr_118: 1.49664172e-02 + sys_corr_119: -2.41186922e-03 sys_corr_120: -4.24858676e-04 sys_corr_121: -1.07045301e-02 sys_corr_122: -2.78433287e-02 - sys_corr_123: 1.96269598e-02 + sys_corr_123: -1.96269598e-02 sys_corr_124: -2.00368796e-02 - sys_corr_125: 9.97279461e-03 + sys_corr_125: -9.97279461e-03 sys_corr_126: -7.03448944e-03 - sys_corr_127: 1.85075491e-01 - sys_corr_128: -4.85463348e-02 - sys_corr_129: 7.49732412e-02 + sys_corr_127: -1.85075491e-01 + sys_corr_128: 4.85463348e-02 + sys_corr_129: -7.49732412e-02 sys_corr_130: -1.13247972e-02 - sys_corr_131: 1.82641396e-03 - sys_corr_132: 4.82168758e-03 + sys_corr_131: 4.82168758e-03 + sys_corr_132: -1.82641396e-03 stat: 0.0 luminosity: 5.66723762e+02 - sys_corr_1: 2.50917110e+02 @@ -5634,26 +5634,26 @@ bins: sys_corr_4: -1.26062439e+02 sys_corr_5: -3.89035308e+01 sys_corr_6: -1.02741867e+02 - sys_corr_7: 1.62732573e+02 - sys_corr_8: 1.27051835e+02 + sys_corr_7: -1.62732573e+02 + sys_corr_8: -1.27051835e+02 sys_corr_9: -1.35369879e+02 - sys_corr_10: 2.41039249e+01 - sys_corr_11: 1.79093203e+02 - sys_corr_12: 2.08646587e+02 + sys_corr_10: -2.41039249e+01 + sys_corr_11: -1.79093203e+02 + sys_corr_12: -2.08646587e+02 sys_corr_13: 1.52229383e+02 - sys_corr_14: 4.60336144e+01 - sys_corr_15: 4.43002979e+01 - sys_corr_16: -2.73773486e+01 - sys_corr_17: -1.17116304e+01 - sys_corr_18: -3.79252252e+01 - sys_corr_19: 7.25322884e+00 - sys_corr_20: -1.87566396e+01 - sys_corr_21: -1.71023696e+01 - sys_corr_22: -4.75185012e+00 - sys_corr_23: 1.85843165e+01 - sys_corr_24: 1.67813094e+02 - sys_corr_25: 8.91589166e+01 - sys_corr_26: 1.73472638e+02 + sys_corr_14: -4.60336144e+01 + sys_corr_15: -4.43002979e+01 + sys_corr_16: 2.73773486e+01 + sys_corr_17: 1.17116304e+01 + sys_corr_18: 3.79252252e+01 + sys_corr_19: -7.25322884e+00 + sys_corr_20: 1.87566396e+01 + sys_corr_21: 1.71023696e+01 + sys_corr_22: 4.75185012e+00 + sys_corr_23: -1.85843165e+01 + sys_corr_24: -1.67813094e+02 + sys_corr_25: -8.91589166e+01 + sys_corr_26: -1.73472638e+02 sys_corr_27: -1.95231104e+01 sys_corr_28: -1.40116314e+01 sys_corr_29: -4.49769445e+01 @@ -5666,100 +5666,100 @@ bins: sys_corr_36: 2.28433848e+01 sys_corr_37: 3.07209129e+01 sys_corr_38: 2.32548473e+01 - sys_corr_39: -3.18283582e+01 + sys_corr_39: 3.18283582e+01 sys_corr_40: -1.18420298e+02 sys_corr_41: 1.09859094e+02 - sys_corr_42: 1.94136005e+02 + sys_corr_42: -1.94136005e+02 sys_corr_43: -1.33500571e+02 - sys_corr_44: -4.66631725e+01 - sys_corr_45: 4.46890492e+00 - sys_corr_46: 9.49658579e-01 - sys_corr_47: -4.12345199e+01 - sys_corr_48: -8.47697056e+01 + sys_corr_44: 4.66631725e+01 + sys_corr_45: -4.46890492e+00 + sys_corr_46: -9.49658579e-01 + sys_corr_47: 4.12345199e+01 + sys_corr_48: 8.47697056e+01 sys_corr_49: 7.17827353e+01 - sys_corr_50: 3.55020852e+01 - sys_corr_51: 1.96150155e+01 - sys_corr_52: -2.56307788e+01 - sys_corr_53: -2.21154525e+01 - sys_corr_54: -4.91699200e+00 + sys_corr_50: -3.55020852e+01 + sys_corr_51: -1.96150155e+01 + sys_corr_52: 2.56307788e+01 + sys_corr_53: 2.21154525e+01 + sys_corr_54: 4.91699200e+00 sys_corr_55: -1.61559765e+01 sys_corr_56: 1.48081465e+01 - sys_corr_57: -2.76438080e+01 + sys_corr_57: 2.76438080e+01 sys_corr_58: 1.01849437e+01 - sys_corr_59: 1.36219974e+01 + sys_corr_59: -1.36219974e+01 sys_corr_60: 9.21020530e+00 sys_corr_61: -9.16639820e+00 sys_corr_62: 1.37498815e+01 - sys_corr_63: 3.16409635e+01 + sys_corr_63: -3.16409635e+01 sys_corr_64: 9.08827295e+00 sys_corr_65: -3.18422607e+00 - sys_corr_66: 4.57492278e+00 - sys_corr_67: -1.71554689e+01 - sys_corr_68: 2.93475700e+00 - sys_corr_69: -4.27319717e+00 - sys_corr_70: 1.31444091e+00 - sys_corr_71: 3.36563585e+00 - sys_corr_72: -3.05338781e+00 - sys_corr_73: -1.16275738e+00 - sys_corr_74: 7.28316326e+00 - sys_corr_75: -1.16755199e+01 + sys_corr_66: -4.57492278e+00 + sys_corr_67: 1.71554689e+01 + sys_corr_68: -2.93475700e+00 + sys_corr_69: 4.27319717e+00 + sys_corr_70: -1.31444091e+00 + sys_corr_71: -1.16275738e+00 + sys_corr_72: 3.05338781e+00 + sys_corr_73: -3.36563585e+00 + sys_corr_74: -7.28316326e+00 + sys_corr_75: 1.16755199e+01 sys_corr_76: 3.15576568e+00 sys_corr_77: 8.71309346e+00 - sys_corr_78: -2.26715709e+00 + sys_corr_78: 2.91986360e+00 sys_corr_79: 5.07266630e+00 - sys_corr_80: -2.91986360e+00 + sys_corr_80: 2.26715709e+00 sys_corr_81: 8.29945809e+00 - sys_corr_82: 1.72903675e+00 - sys_corr_83: 7.76559144e+00 + sys_corr_82: 7.76559144e+00 + sys_corr_83: -1.72903675e+00 sys_corr_84: 4.11073714e+00 - sys_corr_85: 1.22077444e+00 - sys_corr_86: -4.74355633e+00 + sys_corr_85: -1.22077444e+00 + sys_corr_86: 4.74355633e+00 sys_corr_87: -5.19631203e+00 sys_corr_88: 6.77128271e+00 - sys_corr_89: -1.55243186e-01 - sys_corr_90: 1.68389791e+00 + sys_corr_89: 1.55243186e-01 + sys_corr_90: -1.68389791e+00 sys_corr_91: -3.47401084e+00 - sys_corr_92: -1.44886918e+00 - sys_corr_93: -2.29950708e-01 + sys_corr_92: 1.44886918e+00 + sys_corr_93: -3.31353046e-01 sys_corr_94: -8.30630587e-01 - sys_corr_95: 3.31353046e-01 + sys_corr_95: 2.29950708e-01 sys_corr_96: 2.73082785e-02 sys_corr_97: 4.76334633e-01 sys_corr_98: 3.21874010e-01 sys_corr_99: -3.70167255e-01 - sys_corr_100: -2.53254632e-01 - sys_corr_101: 4.24649910e-01 - sys_corr_102: -1.10940535e+00 - sys_corr_103: 3.74359045e+00 - sys_corr_104: 7.49051530e-01 - sys_corr_105: 1.56256841e+00 - sys_corr_106: 3.14988065e-01 - sys_corr_107: -4.82614836e-02 - sys_corr_108: 1.40019377e-01 - sys_corr_109: 5.02098187e-02 - sys_corr_110: -4.82833069e-02 - sys_corr_111: -3.67526346e-02 - sys_corr_112: 1.83065554e-02 + sys_corr_100: 7.49051530e-01 + sys_corr_101: 3.74359045e+00 + sys_corr_102: -1.56256841e+00 + sys_corr_103: 1.10940535e+00 + sys_corr_104: 4.24649910e-01 + sys_corr_105: -2.53254632e-01 + sys_corr_106: -3.14988065e-01 + sys_corr_107: 4.82614836e-02 + sys_corr_108: 3.67526346e-02 + sys_corr_109: -1.40019377e-01 + sys_corr_110: -5.02098187e-02 + sys_corr_111: -4.82833069e-02 + sys_corr_112: -1.83065554e-02 sys_corr_113: -5.61775973e-02 sys_corr_114: 7.64224596e-04 - sys_corr_115: -3.33196633e-02 - sys_corr_116: 5.85818420e-02 + sys_corr_115: 3.33196633e-02 + sys_corr_116: -5.85818420e-02 sys_corr_117: -5.59442235e-02 - sys_corr_118: 6.14181102e-03 - sys_corr_119: 3.72031931e-04 + sys_corr_118: -6.14181102e-03 + sys_corr_119: -3.72031931e-04 sys_corr_120: -3.32036312e-02 sys_corr_121: -4.09700794e-03 sys_corr_122: 2.50363223e-02 - sys_corr_123: -8.19609260e-03 + sys_corr_123: 8.19609260e-03 sys_corr_124: -6.47858720e-02 - sys_corr_125: -2.78902872e-02 + sys_corr_125: 2.78902872e-02 sys_corr_126: 3.37116232e-03 - sys_corr_127: -1.03586006e-01 - sys_corr_128: 1.11860423e-01 - sys_corr_129: -2.58269714e-02 + sys_corr_127: 1.03586006e-01 + sys_corr_128: -1.11860423e-01 + sys_corr_129: 2.58269714e-02 sys_corr_130: -3.85374817e-03 - sys_corr_131: -2.47168873e-02 - sys_corr_132: -1.14767312e-02 + sys_corr_131: -1.14767312e-02 + sys_corr_132: 2.47168873e-02 stat: 0.0 luminosity: 5.30043646e+02 - sys_corr_1: 2.33721718e+02 @@ -5768,26 +5768,26 @@ bins: sys_corr_4: -1.57680360e+02 sys_corr_5: -5.96704123e+01 sys_corr_6: -5.07246662e+01 - sys_corr_7: 1.42336079e+02 - sys_corr_8: 1.30612198e+02 + sys_corr_7: -1.42336079e+02 + sys_corr_8: -1.30612198e+02 sys_corr_9: -1.46620609e+02 - sys_corr_10: 3.87943066e+01 - sys_corr_11: 1.55330584e+02 - sys_corr_12: 2.00527370e+02 + sys_corr_10: -3.87943066e+01 + sys_corr_11: -1.55330584e+02 + sys_corr_12: -2.00527370e+02 sys_corr_13: 1.43675094e+02 - sys_corr_14: 3.94069358e+01 - sys_corr_15: 3.87282014e+01 - sys_corr_16: -2.45683162e+01 - sys_corr_17: -2.31028184e+01 - sys_corr_18: -2.56437815e+01 - sys_corr_19: 5.83461636e+00 - sys_corr_20: -2.83129852e+01 - sys_corr_21: -3.14799711e+01 - sys_corr_22: -2.52175598e+01 - sys_corr_23: 1.36969343e+01 - sys_corr_24: 1.94916700e+02 - sys_corr_25: 8.29304827e+01 - sys_corr_26: 1.68791551e+02 + sys_corr_14: -3.94069358e+01 + sys_corr_15: -3.87282014e+01 + sys_corr_16: 2.45683162e+01 + sys_corr_17: 2.31028184e+01 + sys_corr_18: 2.56437815e+01 + sys_corr_19: -5.83461636e+00 + sys_corr_20: 2.83129852e+01 + sys_corr_21: 3.14799711e+01 + sys_corr_22: 2.52175598e+01 + sys_corr_23: -1.36969343e+01 + sys_corr_24: -1.94916700e+02 + sys_corr_25: -8.29304827e+01 + sys_corr_26: -1.68791551e+02 sys_corr_27: -1.48873026e+01 sys_corr_28: 4.95737465e+00 sys_corr_29: -5.79988431e+01 @@ -5800,100 +5800,100 @@ bins: sys_corr_36: 3.21414522e+01 sys_corr_37: 7.18522873e+01 sys_corr_38: -7.59168874e+01 - sys_corr_39: -1.67364463e+00 + sys_corr_39: 1.67364463e+00 sys_corr_40: 1.29586367e+02 sys_corr_41: -1.10589032e+02 - sys_corr_42: -1.74560195e+01 + sys_corr_42: 1.74560195e+01 sys_corr_43: 6.83766366e+01 - sys_corr_44: -5.91771036e+01 - sys_corr_45: -4.49102310e+01 - sys_corr_46: -1.17419438e+02 - sys_corr_47: -1.65807174e+02 - sys_corr_48: -5.30931947e+01 + sys_corr_44: 5.91771036e+01 + sys_corr_45: 4.49102310e+01 + sys_corr_46: 1.17419438e+02 + sys_corr_47: 1.65807174e+02 + sys_corr_48: 5.30931947e+01 sys_corr_49: 5.95476558e+00 - sys_corr_50: -3.64395275e+01 - sys_corr_51: -3.32755098e+01 - sys_corr_52: 8.36479986e+00 - sys_corr_53: -1.70471061e+01 - sys_corr_54: -1.15929385e+01 + sys_corr_50: 3.64395275e+01 + sys_corr_51: 3.32755098e+01 + sys_corr_52: -8.36479986e+00 + sys_corr_53: 1.70471061e+01 + sys_corr_54: 1.15929385e+01 sys_corr_55: -6.22044768e+01 sys_corr_56: -3.91432004e+01 - sys_corr_57: -1.66283334e+01 + sys_corr_57: 1.66283334e+01 sys_corr_58: -1.00382193e+01 - sys_corr_59: -2.66636980e+01 + sys_corr_59: 2.66636980e+01 sys_corr_60: -5.28429606e+00 sys_corr_61: 1.37919240e+01 sys_corr_62: -4.67638166e+00 - sys_corr_63: -1.54217495e+01 + sys_corr_63: 1.54217495e+01 sys_corr_64: -8.49833355e+00 sys_corr_65: 1.19643462e+01 - sys_corr_66: 5.74460643e+00 - sys_corr_67: -8.37581931e+00 - sys_corr_68: -1.29990048e+01 - sys_corr_69: 5.18753012e-01 - sys_corr_70: 2.18787773e+00 - sys_corr_71: 2.07559202e+01 - sys_corr_72: 1.91902906e-01 - sys_corr_73: 1.28776694e+01 - sys_corr_74: -4.34601659e+00 - sys_corr_75: -8.45210039e+00 + sys_corr_66: -5.74460643e+00 + sys_corr_67: 8.37581931e+00 + sys_corr_68: 1.29990048e+01 + sys_corr_69: -5.18753012e-01 + sys_corr_70: -2.18787773e+00 + sys_corr_71: 1.28776694e+01 + sys_corr_72: -1.91902906e-01 + sys_corr_73: -2.07559202e+01 + sys_corr_74: 4.34601659e+00 + sys_corr_75: 8.45210039e+00 sys_corr_76: 8.09218284e-01 sys_corr_77: 2.61409148e+00 - sys_corr_78: -5.20466469e+00 + sys_corr_78: 2.20106364e+00 sys_corr_79: -8.13834197e-01 - sys_corr_80: -2.20106364e+00 + sys_corr_80: 5.20466469e+00 sys_corr_81: -1.78061431e+00 - sys_corr_82: 2.45851566e+00 - sys_corr_83: 3.84544007e+00 + sys_corr_82: 3.84544007e+00 + sys_corr_83: -2.45851566e+00 sys_corr_84: 8.24064894e-01 - sys_corr_85: 2.92533949e+00 - sys_corr_86: -6.11728042e+00 + sys_corr_85: -2.92533949e+00 + sys_corr_86: 6.11728042e+00 sys_corr_87: -6.18944748e+00 sys_corr_88: 6.18517649e+00 - sys_corr_89: -2.96432670e-01 - sys_corr_90: -4.54753832e-01 + sys_corr_89: 2.96432670e-01 + sys_corr_90: 4.54753832e-01 sys_corr_91: -2.94713671e+00 - sys_corr_92: 1.41760298e+00 - sys_corr_93: -9.64956190e-02 + sys_corr_92: -1.41760298e+00 + sys_corr_93: -9.49518631e-01 sys_corr_94: -3.09630402e-01 - sys_corr_95: 9.49518631e-01 + sys_corr_95: 9.64956190e-02 sys_corr_96: -1.78761076e-01 sys_corr_97: -2.63585122e-01 sys_corr_98: 3.86260854e-02 sys_corr_99: -6.32931623e-01 - sys_corr_100: -5.28737580e-01 - sys_corr_101: 3.28738889e-01 - sys_corr_102: -7.06325453e-01 - sys_corr_103: 1.56901659e+00 - sys_corr_104: -1.87796828e-01 - sys_corr_105: 6.72014446e-01 - sys_corr_106: 3.95432679e-01 - sys_corr_107: 5.15398045e-01 - sys_corr_108: 1.74765840e-01 - sys_corr_109: -1.80061154e-03 - sys_corr_110: -1.85920686e-01 - sys_corr_111: -2.74562750e-01 - sys_corr_112: -7.10666736e-02 + sys_corr_100: -1.87796828e-01 + sys_corr_101: 1.56901659e+00 + sys_corr_102: -6.72014446e-01 + sys_corr_103: 7.06325453e-01 + sys_corr_104: 3.28738889e-01 + sys_corr_105: -5.28737580e-01 + sys_corr_106: -3.95432679e-01 + sys_corr_107: -5.15398045e-01 + sys_corr_108: 2.74562750e-01 + sys_corr_109: -1.74765840e-01 + sys_corr_110: 1.80061154e-03 + sys_corr_111: -1.85920686e-01 + sys_corr_112: 7.10666736e-02 sys_corr_113: 1.43801273e-02 sys_corr_114: -9.01083384e-04 - sys_corr_115: 1.41171231e-01 - sys_corr_116: 5.69046980e-02 + sys_corr_115: -1.41171231e-01 + sys_corr_116: -5.69046980e-02 sys_corr_117: -4.91904254e-02 - sys_corr_118: 4.74449061e-02 - sys_corr_119: 2.15302299e-03 + sys_corr_118: -4.74449061e-02 + sys_corr_119: -2.15302299e-03 sys_corr_120: -3.45396040e-02 sys_corr_121: -5.49031906e-04 sys_corr_122: 3.10996001e-02 - sys_corr_123: -1.17990814e-02 + sys_corr_123: 1.17990814e-02 sys_corr_124: -8.92052231e-02 - sys_corr_125: -3.02869814e-02 + sys_corr_125: 3.02869814e-02 sys_corr_126: 7.56020148e-03 - sys_corr_127: 2.71026927e-01 - sys_corr_128: 1.40190561e-01 - sys_corr_129: -7.63061064e-02 + sys_corr_127: -2.71026927e-01 + sys_corr_128: -1.40190561e-01 + sys_corr_129: 7.63061064e-02 sys_corr_130: -4.73574375e-03 - sys_corr_131: -2.62612942e-02 - sys_corr_132: -3.25741777e-02 + sys_corr_131: -3.25741777e-02 + sys_corr_132: 2.62612942e-02 stat: 0.0 luminosity: 5.13668870e+02 - sys_corr_1: 2.05144320e+02 @@ -5902,26 +5902,26 @@ bins: sys_corr_4: -1.80663113e+02 sys_corr_5: -5.05479562e+01 sys_corr_6: -1.71536870e+01 - sys_corr_7: 1.11426342e+02 - sys_corr_8: 1.05449965e+02 + sys_corr_7: -1.11426342e+02 + sys_corr_8: -1.05449965e+02 sys_corr_9: -1.28795099e+02 - sys_corr_10: 2.96336807e+01 - sys_corr_11: 1.43385756e+02 - sys_corr_12: 1.70480605e+02 + sys_corr_10: -2.96336807e+01 + sys_corr_11: -1.43385756e+02 + sys_corr_12: -1.70480605e+02 sys_corr_13: 1.28281107e+02 - sys_corr_14: 2.70620406e+01 - sys_corr_15: 3.63789691e+01 - sys_corr_16: -2.05143249e+01 - sys_corr_17: -1.85406819e+01 - sys_corr_18: -2.20623471e+01 - sys_corr_19: 1.77527803e+01 - sys_corr_20: -4.05670596e+01 - sys_corr_21: -2.48891681e+01 - sys_corr_22: -5.64592199e+01 - sys_corr_23: 9.92433830e+00 - sys_corr_24: 2.12582544e+02 - sys_corr_25: 6.78094493e+01 - sys_corr_26: 1.44418099e+02 + sys_corr_14: -2.70620406e+01 + sys_corr_15: -3.63789691e+01 + sys_corr_16: 2.05143249e+01 + sys_corr_17: 1.85406819e+01 + sys_corr_18: 2.20623471e+01 + sys_corr_19: -1.77527803e+01 + sys_corr_20: 4.05670596e+01 + sys_corr_21: 2.48891681e+01 + sys_corr_22: 5.64592199e+01 + sys_corr_23: -9.92433830e+00 + sys_corr_24: -2.12582544e+02 + sys_corr_25: -6.78094493e+01 + sys_corr_26: -1.44418099e+02 sys_corr_27: 9.64807201e+00 sys_corr_28: 2.08037639e+01 sys_corr_29: -5.23058671e+01 @@ -5934,100 +5934,100 @@ bins: sys_corr_36: 6.80009415e+00 sys_corr_37: 1.59132681e+01 sys_corr_38: -1.93064587e+01 - sys_corr_39: -3.74324952e+00 + sys_corr_39: 3.74324952e+00 sys_corr_40: 4.00771613e+01 sys_corr_41: 8.73479755e+00 - sys_corr_42: -1.20955200e+01 + sys_corr_42: 1.20955200e+01 sys_corr_43: -1.69572548e+02 - sys_corr_44: 7.91319077e+01 - sys_corr_45: 7.75903132e+01 - sys_corr_46: -5.82456305e+01 - sys_corr_47: 5.82129447e+01 - sys_corr_48: 1.29531329e+02 + sys_corr_44: -7.91319077e+01 + sys_corr_45: -7.75903132e+01 + sys_corr_46: 5.82456305e+01 + sys_corr_47: -5.82129447e+01 + sys_corr_48: -1.29531329e+02 sys_corr_49: -1.43900223e+02 - sys_corr_50: -1.64908128e+01 - sys_corr_51: 8.49587501e+00 - sys_corr_52: -1.76249408e+01 - sys_corr_53: -1.01480241e+01 - sys_corr_54: 3.91107220e+01 + sys_corr_50: 1.64908128e+01 + sys_corr_51: -8.49587501e+00 + sys_corr_52: 1.76249408e+01 + sys_corr_53: 1.01480241e+01 + sys_corr_54: -3.91107220e+01 sys_corr_55: -6.99844637e+01 sys_corr_56: 1.33273436e+01 - sys_corr_57: -1.05329985e+01 + sys_corr_57: 1.05329985e+01 sys_corr_58: -1.66486572e+01 - sys_corr_59: -3.61592433e+01 + sys_corr_59: 3.61592433e+01 sys_corr_60: -9.55582047e+00 sys_corr_61: 1.63303797e+01 sys_corr_62: -1.08334874e+01 - sys_corr_63: -2.98151838e+01 + sys_corr_63: 2.98151838e+01 sys_corr_64: 1.88332905e+01 sys_corr_65: 1.86533185e+00 - sys_corr_66: 1.70662828e+01 - sys_corr_67: -1.36048927e+01 - sys_corr_68: -9.29112373e+00 - sys_corr_69: 1.20239030e+00 - sys_corr_70: -3.37351184e+00 - sys_corr_71: 5.55950340e+00 - sys_corr_72: -1.73869562e+00 - sys_corr_73: -1.38534428e+01 - sys_corr_74: 1.72415955e+01 - sys_corr_75: 9.83128138e-01 + sys_corr_66: -1.70662828e+01 + sys_corr_67: 1.36048927e+01 + sys_corr_68: 9.29112373e+00 + sys_corr_69: -1.20239030e+00 + sys_corr_70: 3.37351184e+00 + sys_corr_71: -1.38534428e+01 + sys_corr_72: 1.73869562e+00 + sys_corr_73: -5.55950340e+00 + sys_corr_74: -1.72415955e+01 + sys_corr_75: -9.83128138e-01 sys_corr_76: 7.58558138e+00 sys_corr_77: -3.19760126e-01 - sys_corr_78: -1.41484506e+00 + sys_corr_78: 2.06818079e-01 sys_corr_79: -3.93805722e+00 - sys_corr_80: -2.06818079e-01 + sys_corr_80: 1.41484506e+00 sys_corr_81: -1.19860500e-01 - sys_corr_82: -2.74082752e+00 - sys_corr_83: 4.37827598e+00 + sys_corr_82: 4.37827598e+00 + sys_corr_83: 2.74082752e+00 sys_corr_84: -3.74057488e+00 - sys_corr_85: -6.45654162e-01 - sys_corr_86: -2.10329207e+00 + sys_corr_85: 6.45654162e-01 + sys_corr_86: 2.10329207e+00 sys_corr_87: -4.22853299e+00 sys_corr_88: 1.06039087e+01 - sys_corr_89: -1.80013925e-01 - sys_corr_90: -4.89036425e+00 + sys_corr_89: 1.80013925e-01 + sys_corr_90: 4.89036425e+00 sys_corr_91: -3.84373767e+00 - sys_corr_92: 4.94152787e-01 - sys_corr_93: 1.42663740e-01 + sys_corr_92: -4.94152787e-01 + sys_corr_93: -3.96523366e-01 sys_corr_94: 6.81110326e-01 - sys_corr_95: 3.96523366e-01 + sys_corr_95: -1.42663740e-01 sys_corr_96: -1.22542432e-01 sys_corr_97: 6.24193533e-01 sys_corr_98: 1.52037629e-01 sys_corr_99: 1.87176126e-01 - sys_corr_100: -1.57814799e-01 - sys_corr_101: 1.33274739e-01 - sys_corr_102: -8.21655613e-02 - sys_corr_103: 9.82694331e-01 - sys_corr_104: -5.96367721e-01 - sys_corr_105: 8.14212035e-01 - sys_corr_106: 2.49652300e-01 - sys_corr_107: 2.34227381e-01 - sys_corr_108: 3.52034172e-02 - sys_corr_109: -2.74222856e-02 - sys_corr_110: -2.65981880e-02 - sys_corr_111: -2.97605755e-01 - sys_corr_112: -1.15783719e-01 + sys_corr_100: -5.96367721e-01 + sys_corr_101: 9.82694331e-01 + sys_corr_102: -8.14212035e-01 + sys_corr_103: 8.21655613e-02 + sys_corr_104: 1.33274739e-01 + sys_corr_105: -1.57814799e-01 + sys_corr_106: -2.49652300e-01 + sys_corr_107: -2.34227381e-01 + sys_corr_108: 2.97605755e-01 + sys_corr_109: -3.52034172e-02 + sys_corr_110: 2.74222856e-02 + sys_corr_111: -2.65981880e-02 + sys_corr_112: 1.15783719e-01 sys_corr_113: -3.44970213e-02 sys_corr_114: -1.13907478e-03 - sys_corr_115: 1.65200148e-01 - sys_corr_116: 7.46492022e-02 + sys_corr_115: -1.65200148e-01 + sys_corr_116: -7.46492022e-02 sys_corr_117: -6.47347407e-02 - sys_corr_118: -6.17618630e-02 - sys_corr_119: -5.48811419e-04 + sys_corr_118: 6.17618630e-02 + sys_corr_119: 5.48811419e-04 sys_corr_120: -4.04314546e-02 sys_corr_121: -4.00292385e-03 sys_corr_122: 3.38013522e-02 - sys_corr_123: -1.18243173e-02 + sys_corr_123: 1.18243173e-02 sys_corr_124: -1.34898776e-01 - sys_corr_125: -3.76345582e-02 + sys_corr_125: 3.76345582e-02 sys_corr_126: 9.13805052e-03 - sys_corr_127: -2.29088736e-02 - sys_corr_128: 1.56252113e-01 - sys_corr_129: 1.08657027e-02 + sys_corr_127: 2.29088736e-02 + sys_corr_128: -1.56252113e-01 + sys_corr_129: -1.08657027e-02 sys_corr_130: -1.92139347e-03 - sys_corr_131: -3.11207585e-02 - sys_corr_132: -6.85147699e-03 + sys_corr_131: -6.85147699e-03 + sys_corr_132: 3.11207585e-02 stat: 0.0 luminosity: 4.77209722e+02 - sys_corr_1: 1.75168310e+02 @@ -6036,26 +6036,26 @@ bins: sys_corr_4: -1.86865036e+02 sys_corr_5: -4.61494546e+01 sys_corr_6: -7.18828243e+00 - sys_corr_7: 9.23042242e+01 - sys_corr_8: 9.45164072e+01 + sys_corr_7: -9.23042242e+01 + sys_corr_8: -9.45164072e+01 sys_corr_9: -1.23880971e+02 - sys_corr_10: 3.48204749e+01 - sys_corr_11: 1.30366817e+02 - sys_corr_12: 1.53575020e+02 + sys_corr_10: -3.48204749e+01 + sys_corr_11: -1.30366817e+02 + sys_corr_12: -1.53575020e+02 sys_corr_13: 1.19109603e+02 - sys_corr_14: 2.16531851e+01 - sys_corr_15: 2.89722420e+01 - sys_corr_16: -1.53841474e+01 - sys_corr_17: -1.95610998e+01 - sys_corr_18: -2.08605414e+01 - sys_corr_19: 2.47667723e+01 - sys_corr_20: -4.36252047e+01 - sys_corr_21: -2.98924172e+01 - sys_corr_22: -5.59264429e+01 - sys_corr_23: 1.48982292e+01 - sys_corr_24: 1.78402194e+02 - sys_corr_25: 5.15685851e+01 - sys_corr_26: 1.05589833e+02 + sys_corr_14: -2.16531851e+01 + sys_corr_15: -2.89722420e+01 + sys_corr_16: 1.53841474e+01 + sys_corr_17: 1.95610998e+01 + sys_corr_18: 2.08605414e+01 + sys_corr_19: -2.47667723e+01 + sys_corr_20: 4.36252047e+01 + sys_corr_21: 2.98924172e+01 + sys_corr_22: 5.59264429e+01 + sys_corr_23: -1.48982292e+01 + sys_corr_24: -1.78402194e+02 + sys_corr_25: -5.15685851e+01 + sys_corr_26: -1.05589833e+02 sys_corr_27: 1.74742161e+01 sys_corr_28: 1.69068124e+01 sys_corr_29: -4.58566828e+01 @@ -6068,100 +6068,100 @@ bins: sys_corr_36: -1.00046087e+01 sys_corr_37: -9.80387692e+00 sys_corr_38: 7.28120166e+00 - sys_corr_39: 4.72659916e+00 + sys_corr_39: -4.72659916e+00 sys_corr_40: 9.47589977e+00 sys_corr_41: -2.79027470e+01 - sys_corr_42: -4.57039687e+01 + sys_corr_42: 4.57039687e+01 sys_corr_43: 6.73843688e+01 - sys_corr_44: 1.90924508e+01 - sys_corr_45: -2.85645004e+01 - sys_corr_46: 7.36869976e+01 - sys_corr_47: 6.12660995e+01 - sys_corr_48: 1.79913531e+01 + sys_corr_44: -1.90924508e+01 + sys_corr_45: 2.85645004e+01 + sys_corr_46: -7.36869976e+01 + sys_corr_47: -6.12660995e+01 + sys_corr_48: -1.79913531e+01 sys_corr_49: 9.66223843e+01 - sys_corr_50: 1.66632656e+02 - sys_corr_51: -8.38537684e+01 - sys_corr_52: -1.24716555e+02 - sys_corr_53: -2.24018531e+01 - sys_corr_54: 3.83871084e+01 + sys_corr_50: -1.66632656e+02 + sys_corr_51: 8.38537684e+01 + sys_corr_52: 1.24716555e+02 + sys_corr_53: 2.24018531e+01 + sys_corr_54: -3.83871084e+01 sys_corr_55: -4.43232119e+01 sys_corr_56: -2.18357727e+01 - sys_corr_57: 3.81469958e+01 + sys_corr_57: -3.81469958e+01 sys_corr_58: -1.03970878e+00 - sys_corr_59: -2.19016263e+01 + sys_corr_59: 2.19016263e+01 sys_corr_60: 5.88920570e+00 sys_corr_61: 4.57015875e+00 sys_corr_62: 2.09044900e+00 - sys_corr_63: 2.54887673e+01 + sys_corr_63: -2.54887673e+01 sys_corr_64: 1.96007679e+01 sys_corr_65: 1.82535332e+01 - sys_corr_66: -5.97975494e+00 - sys_corr_67: 1.04034358e+01 - sys_corr_68: -5.68780323e+00 - sys_corr_69: 1.89892317e+01 - sys_corr_70: -2.02603801e+00 - sys_corr_71: -1.56187768e+00 - sys_corr_72: 7.54716622e+01 - sys_corr_73: -1.39905035e+01 - sys_corr_74: 7.63917555e+00 - sys_corr_75: -2.07139715e+00 + sys_corr_66: 5.97975494e+00 + sys_corr_67: -1.04034358e+01 + sys_corr_68: 5.68780323e+00 + sys_corr_69: -1.89892317e+01 + sys_corr_70: 2.02603801e+00 + sys_corr_71: -1.39905035e+01 + sys_corr_72: -7.54716622e+01 + sys_corr_73: 1.56187768e+00 + sys_corr_74: -7.63917555e+00 + sys_corr_75: 2.07139715e+00 sys_corr_76: 4.25099971e+00 sys_corr_77: 1.47449386e-01 - sys_corr_78: -4.12103948e+00 + sys_corr_78: -8.18234133e-01 sys_corr_79: 8.22811845e-01 - sys_corr_80: 8.18234133e-01 + sys_corr_80: 4.12103948e+00 sys_corr_81: 3.51286444e-01 - sys_corr_82: 1.05039459e+00 - sys_corr_83: 6.60637980e+00 + sys_corr_82: 6.60637980e+00 + sys_corr_83: -1.05039459e+00 sys_corr_84: 1.20086080e+00 - sys_corr_85: 2.56870902e+00 - sys_corr_86: -7.22522815e+00 + sys_corr_85: -2.56870902e+00 + sys_corr_86: 7.22522815e+00 sys_corr_87: -2.02860358e+00 sys_corr_88: 5.24321202e+00 - sys_corr_89: 2.63358042e-01 - sys_corr_90: 2.37996674e+00 + sys_corr_89: -2.63358042e-01 + sys_corr_90: -2.37996674e+00 sys_corr_91: 3.44418696e+00 - sys_corr_92: 1.27181317e+00 - sys_corr_93: 4.35407260e-01 + sys_corr_92: -1.27181317e+00 + sys_corr_93: -2.97909197e+00 sys_corr_94: 2.47560800e+00 - sys_corr_95: 2.97909197e+00 + sys_corr_95: -4.35407260e-01 sys_corr_96: -1.60340646e-01 sys_corr_97: 1.41653080e+00 sys_corr_98: 6.70478537e-01 sys_corr_99: 4.27385541e-01 - sys_corr_100: -2.61622701e-01 - sys_corr_101: 2.31377842e-01 - sys_corr_102: 9.87422613e-02 - sys_corr_103: 1.46517045e+00 - sys_corr_104: -6.47200716e-01 - sys_corr_105: 1.36612210e+00 - sys_corr_106: 3.95832719e-01 - sys_corr_107: 8.05437939e-01 - sys_corr_108: 3.03238239e-01 - sys_corr_109: -3.92826649e-01 - sys_corr_110: -2.21494155e-01 - sys_corr_111: -3.10178473e-01 - sys_corr_112: -3.06187239e-01 + sys_corr_100: -6.47200716e-01 + sys_corr_101: 1.46517045e+00 + sys_corr_102: -1.36612210e+00 + sys_corr_103: -9.87422613e-02 + sys_corr_104: 2.31377842e-01 + sys_corr_105: -2.61622701e-01 + sys_corr_106: -3.95832719e-01 + sys_corr_107: -8.05437939e-01 + sys_corr_108: 3.10178473e-01 + sys_corr_109: -3.03238239e-01 + sys_corr_110: 3.92826649e-01 + sys_corr_111: -2.21494155e-01 + sys_corr_112: 3.06187239e-01 sys_corr_113: -1.10742876e-01 sys_corr_114: -3.25144792e-03 - sys_corr_115: 2.57979031e-01 - sys_corr_116: 6.99810906e-02 + sys_corr_115: -2.57979031e-01 + sys_corr_116: -6.99810906e-02 sys_corr_117: -6.36397912e-02 - sys_corr_118: 6.21033043e-02 - sys_corr_119: -8.67509821e-03 + sys_corr_118: -6.21033043e-02 + sys_corr_119: 8.67509821e-03 sys_corr_120: -4.26720107e-02 sys_corr_121: 1.18166355e-03 sys_corr_122: 4.11881871e-02 - sys_corr_123: -1.71747973e-02 + sys_corr_123: 1.71747973e-02 sys_corr_124: -1.42287517e-01 - sys_corr_125: -3.90798115e-02 + sys_corr_125: 3.90798115e-02 sys_corr_126: 1.21542745e-02 - sys_corr_127: 2.02108723e-01 - sys_corr_128: 2.57849759e-01 - sys_corr_129: 6.32299291e-03 + sys_corr_127: -2.02108723e-01 + sys_corr_128: -2.57849759e-01 + sys_corr_129: -6.32299291e-03 sys_corr_130: -2.80574304e-03 - sys_corr_131: -2.92541943e-02 - sys_corr_132: -2.71542039e-02 + sys_corr_131: -2.71542039e-02 + sys_corr_132: 2.92541943e-02 stat: 0.0 luminosity: 4.24158086e+02 - sys_corr_1: 1.46163009e+02 @@ -6170,26 +6170,26 @@ bins: sys_corr_4: -2.15184712e+02 sys_corr_5: -2.57154225e+01 sys_corr_6: -1.15206197e+01 - sys_corr_7: 7.06898226e+01 - sys_corr_8: 8.92292304e+01 + sys_corr_7: -7.06898226e+01 + sys_corr_8: -8.92292304e+01 sys_corr_9: -1.36668639e+02 - sys_corr_10: 3.58142826e+01 - sys_corr_11: 1.18514009e+02 - sys_corr_12: 1.37936162e+02 + sys_corr_10: -3.58142826e+01 + sys_corr_11: -1.18514009e+02 + sys_corr_12: -1.37936162e+02 sys_corr_13: 1.11998662e+02 - sys_corr_14: 2.35494459e+01 - sys_corr_15: 2.89318253e+01 - sys_corr_16: -1.33715094e+01 - sys_corr_17: -2.29628473e+01 - sys_corr_18: -1.66044135e+01 - sys_corr_19: 3.02504553e+01 - sys_corr_20: -4.20998852e+01 - sys_corr_21: -3.06971327e+01 - sys_corr_22: -9.41410034e+01 - sys_corr_23: 2.83257060e+00 - sys_corr_24: 1.47770155e+02 - sys_corr_25: 3.37437585e+01 - sys_corr_26: 5.63501078e+01 + sys_corr_14: -2.35494459e+01 + sys_corr_15: -2.89318253e+01 + sys_corr_16: 1.33715094e+01 + sys_corr_17: 2.29628473e+01 + sys_corr_18: 1.66044135e+01 + sys_corr_19: -3.02504553e+01 + sys_corr_20: 4.20998852e+01 + sys_corr_21: 3.06971327e+01 + sys_corr_22: 9.41410034e+01 + sys_corr_23: -2.83257060e+00 + sys_corr_24: -1.47770155e+02 + sys_corr_25: -3.37437585e+01 + sys_corr_26: -5.63501078e+01 sys_corr_27: 4.87142449e-01 sys_corr_28: 4.60380743e+01 sys_corr_29: -4.45978820e+01 @@ -6202,100 +6202,100 @@ bins: sys_corr_36: -1.14070425e+01 sys_corr_37: 3.90329165e+00 sys_corr_38: 2.62937010e+00 - sys_corr_39: 5.93561748e+00 + sys_corr_39: -5.93561748e+00 sys_corr_40: -3.48012366e+00 sys_corr_41: 1.00988074e+00 - sys_corr_42: -2.03772481e+00 + sys_corr_42: 2.03772481e+00 sys_corr_43: -3.21199530e+01 - sys_corr_44: -5.17616629e+01 - sys_corr_45: 2.04374626e+01 - sys_corr_46: -3.04254892e+01 - sys_corr_47: -4.13628840e+01 - sys_corr_48: 6.57441029e+01 + sys_corr_44: 5.17616629e+01 + sys_corr_45: -2.04374626e+01 + sys_corr_46: 3.04254892e+01 + sys_corr_47: 4.13628840e+01 + sys_corr_48: -6.57441029e+01 sys_corr_49: 5.22240313e+01 - sys_corr_50: -1.26063238e+01 - sys_corr_51: -6.74929743e+01 - sys_corr_52: 4.05096542e+01 - sys_corr_53: 7.84503529e+01 - sys_corr_54: 2.52321071e+01 + sys_corr_50: 1.26063238e+01 + sys_corr_51: 6.74929743e+01 + sys_corr_52: -4.05096542e+01 + sys_corr_53: -7.84503529e+01 + sys_corr_54: -2.52321071e+01 sys_corr_55: 2.07386225e+02 sys_corr_56: 3.14600184e+01 - sys_corr_57: 1.80142721e+01 + sys_corr_57: -1.80142721e+01 sys_corr_58: 3.89268582e+01 - sys_corr_59: -1.55493733e+01 + sys_corr_59: 1.55493733e+01 sys_corr_60: 1.64124518e+01 sys_corr_61: 1.69816023e+01 sys_corr_62: 3.74632022e+01 - sys_corr_63: -1.97449821e+01 + sys_corr_63: 1.97449821e+01 sys_corr_64: 5.34706084e-01 sys_corr_65: 3.36594915e+00 - sys_corr_66: -1.40256471e+01 - sys_corr_67: -1.87388340e+01 - sys_corr_68: -2.78639770e+00 - sys_corr_69: 6.43463911e-01 - sys_corr_70: -1.97412180e+01 - sys_corr_71: 8.22849130e+00 - sys_corr_72: -1.50347465e+00 - sys_corr_73: -6.14021516e+00 - sys_corr_74: -5.32414320e+01 - sys_corr_75: -7.68614736e+00 + sys_corr_66: 1.40256471e+01 + sys_corr_67: 1.87388340e+01 + sys_corr_68: 2.78639770e+00 + sys_corr_69: -6.43463911e-01 + sys_corr_70: 1.97412180e+01 + sys_corr_71: -6.14021516e+00 + sys_corr_72: 1.50347465e+00 + sys_corr_73: -8.22849130e+00 + sys_corr_74: 5.32414320e+01 + sys_corr_75: 7.68614736e+00 sys_corr_76: 4.55102925e+00 sys_corr_77: -1.55467823e+00 - sys_corr_78: -4.03993304e+00 + sys_corr_78: -7.35301217e+00 sys_corr_79: -1.49139078e+01 - sys_corr_80: 7.35301217e+00 + sys_corr_80: 4.03993304e+00 sys_corr_81: -2.99071907e+00 - sys_corr_82: -6.02104852e+00 - sys_corr_83: -1.05973030e+01 + sys_corr_82: -1.05973030e+01 + sys_corr_83: 6.02104852e+00 sys_corr_84: -2.46441062e+00 - sys_corr_85: 8.83104218e+00 - sys_corr_86: -1.07998783e+01 + sys_corr_85: -8.83104218e+00 + sys_corr_86: 1.07998783e+01 sys_corr_87: -6.77757359e+00 sys_corr_88: -1.85255013e+00 - sys_corr_89: 2.73625696e+00 - sys_corr_90: -1.62245617e-01 + sys_corr_89: -2.73625696e+00 + sys_corr_90: 1.62245617e-01 sys_corr_91: -4.20489691e+00 - sys_corr_92: 1.62641242e+01 - sys_corr_93: 1.56134855e-01 + sys_corr_92: -1.62641242e+01 + sys_corr_93: -2.74245567e+00 sys_corr_94: 7.86646117e-01 - sys_corr_95: 2.74245567e+00 + sys_corr_95: -1.56134855e-01 sys_corr_96: -7.54033526e-02 sys_corr_97: 9.48730487e-01 sys_corr_98: 3.28122494e-01 sys_corr_99: -4.61716046e-02 - sys_corr_100: -4.38220193e-02 - sys_corr_101: 2.55997999e-02 - sys_corr_102: 2.29607400e-01 - sys_corr_103: -1.27606694e+00 - sys_corr_104: -2.41663385e+00 - sys_corr_105: -1.98410732e-01 - sys_corr_106: -2.78765752e-02 - sys_corr_107: 1.99729957e-01 - sys_corr_108: 1.31400106e-01 - sys_corr_109: -4.20443538e-01 - sys_corr_110: 3.28615044e-02 - sys_corr_111: -2.27481856e-01 - sys_corr_112: -1.58561931e-01 + sys_corr_100: -2.41663385e+00 + sys_corr_101: -1.27606694e+00 + sys_corr_102: 1.98410732e-01 + sys_corr_103: -2.29607400e-01 + sys_corr_104: 2.55997999e-02 + sys_corr_105: -4.38220193e-02 + sys_corr_106: 2.78765752e-02 + sys_corr_107: -1.99729957e-01 + sys_corr_108: 2.27481856e-01 + sys_corr_109: -1.31400106e-01 + sys_corr_110: 4.20443538e-01 + sys_corr_111: 3.28615044e-02 + sys_corr_112: 1.58561931e-01 sys_corr_113: -6.41736144e-02 sys_corr_114: -3.20272233e-03 - sys_corr_115: 2.78290943e-01 - sys_corr_116: 3.07158276e-02 + sys_corr_115: -2.78290943e-01 + sys_corr_116: -3.07158276e-02 sys_corr_117: -3.66431345e-02 - sys_corr_118: 2.76027582e-01 - sys_corr_119: -7.60888323e-03 + sys_corr_118: -2.76027582e-01 + sys_corr_119: 7.60888323e-03 sys_corr_120: -1.62943534e-02 sys_corr_121: -5.52573918e-03 sys_corr_122: -1.84923257e-02 - sys_corr_123: 1.51050393e-02 + sys_corr_123: -1.51050393e-02 sys_corr_124: -9.53267709e-02 - sys_corr_125: 6.95733470e-03 + sys_corr_125: -6.95733470e-03 sys_corr_126: -4.61788030e-03 - sys_corr_127: 4.58940468e-01 - sys_corr_128: 3.87660237e-01 - sys_corr_129: -2.03127787e-02 + sys_corr_127: -4.58940468e-01 + sys_corr_128: -3.87660237e-01 + sys_corr_129: 2.03127787e-02 sys_corr_130: -2.72483169e-03 - sys_corr_131: -5.63878535e-03 - sys_corr_132: -4.31047720e-02 + sys_corr_131: -4.31047720e-02 + sys_corr_132: 5.63878535e-03 stat: 0.0 luminosity: 3.64184744e+02 - sys_corr_1: 1.20381960e+02 @@ -6304,26 +6304,26 @@ bins: sys_corr_4: -2.16628277e+02 sys_corr_5: -1.93232753e+00 sys_corr_6: -1.70147739e+01 - sys_corr_7: 3.33308195e+01 - sys_corr_8: 6.51800968e+01 + sys_corr_7: -3.33308195e+01 + sys_corr_8: -6.51800968e+01 sys_corr_9: -1.03304492e+02 - sys_corr_10: 2.91475737e+01 - sys_corr_11: 8.09741706e+01 - sys_corr_12: 7.88771716e+01 + sys_corr_10: -2.91475737e+01 + sys_corr_11: -8.09741706e+01 + sys_corr_12: -7.88771716e+01 sys_corr_13: 7.34024501e+01 - sys_corr_14: 1.08623015e+01 - sys_corr_15: 2.25787404e+01 - sys_corr_16: -1.60688685e+01 - sys_corr_17: -1.89672198e+01 - sys_corr_18: -9.41736724e+00 - sys_corr_19: 2.37476051e+01 - sys_corr_20: -4.13427586e+01 - sys_corr_21: -3.52831784e+01 - sys_corr_22: -1.07755704e+02 - sys_corr_23: -5.80980949e+00 - sys_corr_24: 1.67567748e+02 - sys_corr_25: 2.95046231e+01 - sys_corr_26: 3.83989475e+01 + sys_corr_14: -1.08623015e+01 + sys_corr_15: -2.25787404e+01 + sys_corr_16: 1.60688685e+01 + sys_corr_17: 1.89672198e+01 + sys_corr_18: 9.41736724e+00 + sys_corr_19: -2.37476051e+01 + sys_corr_20: 4.13427586e+01 + sys_corr_21: 3.52831784e+01 + sys_corr_22: 1.07755704e+02 + sys_corr_23: 5.80980949e+00 + sys_corr_24: -1.67567748e+02 + sys_corr_25: -2.95046231e+01 + sys_corr_26: -3.83989475e+01 sys_corr_27: 1.47410651e+01 sys_corr_28: 4.65921798e+01 sys_corr_29: -2.52931812e+01 @@ -6336,100 +6336,100 @@ bins: sys_corr_36: -3.56919293e+01 sys_corr_37: -3.20718322e+01 sys_corr_38: 2.03904861e+01 - sys_corr_39: 5.63023393e+00 + sys_corr_39: -5.63023393e+00 sys_corr_40: -2.87170638e+01 sys_corr_41: 2.09200444e+01 - sys_corr_42: -1.87687005e+01 + sys_corr_42: 1.87687005e+01 sys_corr_43: 3.51422432e+01 - sys_corr_44: 8.33076463e+00 - sys_corr_45: -2.48151553e+01 - sys_corr_46: 2.78545616e+01 - sys_corr_47: 1.42294706e+00 - sys_corr_48: -6.87322085e+00 + sys_corr_44: -8.33076463e+00 + sys_corr_45: 2.48151553e+01 + sys_corr_46: -2.78545616e+01 + sys_corr_47: -1.42294706e+00 + sys_corr_48: 6.87322085e+00 sys_corr_49: -1.56095676e+01 - sys_corr_50: -2.18182815e+01 - sys_corr_51: 2.90624759e+01 - sys_corr_52: 2.51581999e+01 - sys_corr_53: -2.42647942e+01 - sys_corr_54: -2.22681165e+01 + sys_corr_50: 2.18182815e+01 + sys_corr_51: -2.90624759e+01 + sys_corr_52: -2.51581999e+01 + sys_corr_53: 2.42647942e+01 + sys_corr_54: 2.22681165e+01 sys_corr_55: -5.49524804e+01 sys_corr_56: 2.70907105e+01 - sys_corr_57: -1.49688003e+01 + sys_corr_57: 1.49688003e+01 sys_corr_58: 2.79154928e+01 - sys_corr_59: 1.08334837e+02 + sys_corr_59: -1.08334837e+02 sys_corr_60: 2.77361882e+01 sys_corr_61: -8.43674620e+01 sys_corr_62: 1.02344803e+01 - sys_corr_63: 7.48534484e-01 + sys_corr_63: -7.48534484e-01 sys_corr_64: -1.16300337e+02 sys_corr_65: 5.97142819e+01 - sys_corr_66: 5.13238312e+01 - sys_corr_67: 8.69264293e+01 - sys_corr_68: 6.89584844e+00 - sys_corr_69: 4.86878201e+00 - sys_corr_70: -4.50919572e+01 - sys_corr_71: 2.16850797e+01 - sys_corr_72: -3.33116826e+01 - sys_corr_73: 3.38422622e+01 - sys_corr_74: -2.60078588e+01 - sys_corr_75: -1.06094480e+01 + sys_corr_66: -5.13238312e+01 + sys_corr_67: -8.69264293e+01 + sys_corr_68: -6.89584844e+00 + sys_corr_69: -4.86878201e+00 + sys_corr_70: 4.50919572e+01 + sys_corr_71: 3.38422622e+01 + sys_corr_72: 3.33116826e+01 + sys_corr_73: -2.16850797e+01 + sys_corr_74: 2.60078588e+01 + sys_corr_75: 1.06094480e+01 sys_corr_76: 2.37015583e+01 sys_corr_77: 8.13001412e+00 - sys_corr_78: -9.37530503e+00 + sys_corr_78: -3.52786488e+00 sys_corr_79: -2.28396456e+01 - sys_corr_80: 3.52786488e+00 + sys_corr_80: 9.37530503e+00 sys_corr_81: -1.84844526e+01 - sys_corr_82: -9.52094566e+00 - sys_corr_83: 3.37474596e+00 + sys_corr_82: 3.37474596e+00 + sys_corr_83: 9.52094566e+00 sys_corr_84: -8.33504684e-01 - sys_corr_85: 8.76778558e+00 - sys_corr_86: -5.73251466e+00 + sys_corr_85: -8.76778558e+00 + sys_corr_86: 5.73251466e+00 sys_corr_87: -2.51563851e+01 sys_corr_88: -9.43853909e+00 - sys_corr_89: 9.47844224e-01 - sys_corr_90: -4.01541582e-01 + sys_corr_89: -9.47844224e-01 + sys_corr_90: 4.01541582e-01 sys_corr_91: -5.52878920e+00 - sys_corr_92: 1.67287538e+00 - sys_corr_93: -7.49966266e-01 + sys_corr_92: -1.67287538e+00 + sys_corr_93: -2.12288895e+00 sys_corr_94: -3.85978825e+00 - sys_corr_95: 2.12288895e+00 + sys_corr_95: 7.49966266e-01 sys_corr_96: 2.78515734e-01 sys_corr_97: 1.87335768e+00 sys_corr_98: 1.73607395e-01 sys_corr_99: -2.83821396e-01 - sys_corr_100: -4.71714280e-01 - sys_corr_101: 1.92471975e-01 - sys_corr_102: -6.81490459e-01 - sys_corr_103: 2.89040912e-01 - sys_corr_104: -5.18801705e+00 - sys_corr_105: 4.35982959e-01 - sys_corr_106: 2.22964959e-01 - sys_corr_107: 4.60423311e-01 - sys_corr_108: 1.56715897e-01 - sys_corr_109: -1.41928134e-01 - sys_corr_110: 3.98273361e-02 - sys_corr_111: -6.37388925e-01 - sys_corr_112: -2.14968265e-01 + sys_corr_100: -5.18801705e+00 + sys_corr_101: 2.89040912e-01 + sys_corr_102: -4.35982959e-01 + sys_corr_103: 6.81490459e-01 + sys_corr_104: 1.92471975e-01 + sys_corr_105: -4.71714280e-01 + sys_corr_106: -2.22964959e-01 + sys_corr_107: -4.60423311e-01 + sys_corr_108: 6.37388925e-01 + sys_corr_109: -1.56715897e-01 + sys_corr_110: 1.41928134e-01 + sys_corr_111: 3.98273361e-02 + sys_corr_112: 2.14968265e-01 sys_corr_113: 3.69082651e-02 sys_corr_114: -1.85616103e-03 - sys_corr_115: 2.05876326e-01 - sys_corr_116: 5.95826659e-02 + sys_corr_115: -2.05876326e-01 + sys_corr_116: -5.95826659e-02 sys_corr_117: -6.49761336e-02 - sys_corr_118: 1.31807077e-01 - sys_corr_119: -8.40517598e-03 + sys_corr_118: -1.31807077e-01 + sys_corr_119: 8.40517598e-03 sys_corr_120: -3.96320239e-02 sys_corr_121: 3.94776612e-03 sys_corr_122: 3.87269807e-02 - sys_corr_123: -1.38234754e-02 + sys_corr_123: 1.38234754e-02 sys_corr_124: -1.32952763e-01 - sys_corr_125: -3.04475549e-02 + sys_corr_125: 3.04475549e-02 sys_corr_126: 6.41744968e-03 - sys_corr_127: 3.60104174e-01 - sys_corr_128: 6.16564737e-01 - sys_corr_129: 1.49351954e-01 + sys_corr_127: -3.60104174e-01 + sys_corr_128: -6.16564737e-01 + sys_corr_129: -1.49351954e-01 sys_corr_130: -1.63241508e-02 - sys_corr_131: -2.83089058e-02 - sys_corr_132: -1.22349162e-01 + sys_corr_131: -1.22349162e-01 + sys_corr_132: 2.83089058e-02 stat: 0.0 luminosity: 3.03011610e+02 - sys_corr_1: 1.00529613e+02 @@ -6438,26 +6438,26 @@ bins: sys_corr_4: -1.92843174e+02 sys_corr_5: 1.01016517e+01 sys_corr_6: -2.25265868e+01 - sys_corr_7: -1.20600046e+00 - sys_corr_8: 4.53898581e+01 + sys_corr_7: 1.20600046e+00 + sys_corr_8: -4.53898581e+01 sys_corr_9: -7.95791826e+01 - sys_corr_10: 2.80535546e+01 - sys_corr_11: 5.30362599e+01 - sys_corr_12: 4.17251804e+01 + sys_corr_10: -2.80535546e+01 + sys_corr_11: -5.30362599e+01 + sys_corr_12: -4.17251804e+01 sys_corr_13: 5.61357679e+01 - sys_corr_14: -9.14998994e-02 - sys_corr_15: 1.60332020e+01 - sys_corr_16: -1.49039753e+01 - sys_corr_17: -1.13767856e+01 - sys_corr_18: -1.14704024e+01 - sys_corr_19: 2.07364474e+01 - sys_corr_20: -4.07052233e+01 - sys_corr_21: -2.83021244e+01 - sys_corr_22: -1.05717454e+02 - sys_corr_23: -7.90976986e+00 - sys_corr_24: 1.83958849e+02 - sys_corr_25: 5.13289601e+00 - sys_corr_26: 2.92241848e+00 + sys_corr_14: 9.14998994e-02 + sys_corr_15: -1.60332020e+01 + sys_corr_16: 1.49039753e+01 + sys_corr_17: 1.13767856e+01 + sys_corr_18: 1.14704024e+01 + sys_corr_19: -2.07364474e+01 + sys_corr_20: 4.07052233e+01 + sys_corr_21: 2.83021244e+01 + sys_corr_22: 1.05717454e+02 + sys_corr_23: 7.90976986e+00 + sys_corr_24: -1.83958849e+02 + sys_corr_25: -5.13289601e+00 + sys_corr_26: -2.92241848e+00 sys_corr_27: 3.19511430e+01 sys_corr_28: 4.22980168e+01 sys_corr_29: -1.17108034e+01 @@ -6470,100 +6470,100 @@ bins: sys_corr_36: -3.63571585e+01 sys_corr_37: -4.69184989e+01 sys_corr_38: 3.18100168e+01 - sys_corr_39: 4.31830685e+00 + sys_corr_39: -4.31830685e+00 sys_corr_40: -4.71950748e+01 sys_corr_41: 1.10910577e+01 - sys_corr_42: -2.77753932e+00 + sys_corr_42: 2.77753932e+00 sys_corr_43: 6.82568582e+01 - sys_corr_44: -2.85058388e-01 - sys_corr_45: -2.73396131e+01 - sys_corr_46: 3.56737261e+01 - sys_corr_47: 1.88927914e+00 - sys_corr_48: -4.57016345e+01 + sys_corr_44: 2.85058388e-01 + sys_corr_45: 2.73396131e+01 + sys_corr_46: -3.56737261e+01 + sys_corr_47: -1.88927914e+00 + sys_corr_48: 4.57016345e+01 sys_corr_49: -6.17610757e+00 - sys_corr_50: -3.43319850e+01 - sys_corr_51: 6.04316268e+01 - sys_corr_52: 2.25322610e+01 - sys_corr_53: -1.08628251e+00 - sys_corr_54: -2.03491803e+01 + sys_corr_50: 3.43319850e+01 + sys_corr_51: -6.04316268e+01 + sys_corr_52: -2.25322610e+01 + sys_corr_53: 1.08628251e+00 + sys_corr_54: 2.03491803e+01 sys_corr_55: -3.11790458e+01 sys_corr_56: -2.40907555e+01 - sys_corr_57: -4.08164304e+00 + sys_corr_57: 4.08164304e+00 sys_corr_58: -2.72007217e+01 - sys_corr_59: -3.93013967e+01 + sys_corr_59: 3.93013967e+01 sys_corr_60: -3.03136242e+01 sys_corr_61: 5.37347556e+01 sys_corr_62: -9.09964210e+00 - sys_corr_63: 3.16814937e+01 + sys_corr_63: -3.16814937e+01 sys_corr_64: 1.43955849e+02 sys_corr_65: -2.68837069e+01 - sys_corr_66: -7.28760585e+01 - sys_corr_67: 2.63108241e+01 - sys_corr_68: 3.57846867e+01 - sys_corr_69: -2.05714520e+01 - sys_corr_70: -3.96898941e+01 - sys_corr_71: 1.17135998e+01 - sys_corr_72: -8.98841682e+01 - sys_corr_73: 2.49965083e+01 - sys_corr_74: 7.92491588e+00 - sys_corr_75: -6.88019368e+00 + sys_corr_66: 7.28760585e+01 + sys_corr_67: -2.63108241e+01 + sys_corr_68: -3.57846867e+01 + sys_corr_69: 2.05714520e+01 + sys_corr_70: 3.96898941e+01 + sys_corr_71: 2.49965083e+01 + sys_corr_72: 8.98841682e+01 + sys_corr_73: -1.17135998e+01 + sys_corr_74: -7.92491588e+00 + sys_corr_75: 6.88019368e+00 sys_corr_76: 8.07509403e+00 sys_corr_77: 6.42477047e+00 - sys_corr_78: 1.71004219e+00 + sys_corr_78: 1.83212598e+00 sys_corr_79: -4.22200530e+01 - sys_corr_80: -1.83212598e+00 + sys_corr_80: -1.71004219e+00 sys_corr_81: -2.04981555e+01 - sys_corr_82: -1.01716123e+01 - sys_corr_83: 2.45748286e+00 + sys_corr_82: 2.45748286e+00 + sys_corr_83: 1.01716123e+01 sys_corr_84: -2.54892212e+00 - sys_corr_85: 9.16563226e+00 - sys_corr_86: -2.62787064e+00 + sys_corr_85: -9.16563226e+00 + sys_corr_86: 2.62787064e+00 sys_corr_87: -1.24067928e+01 sys_corr_88: 2.55481158e+01 - sys_corr_89: 4.21162553e+00 - sys_corr_90: -2.97522044e-01 + sys_corr_89: -4.21162553e+00 + sys_corr_90: 2.97522044e-01 sys_corr_91: -5.37433423e+00 - sys_corr_92: 2.92308828e+00 - sys_corr_93: -7.53437142e-01 + sys_corr_92: -2.92308828e+00 + sys_corr_93: 4.22277556e-01 sys_corr_94: -3.49929026e+00 - sys_corr_95: -4.22277556e-01 + sys_corr_95: 7.53437142e-01 sys_corr_96: 3.47172451e-01 sys_corr_97: 9.92416951e-01 sys_corr_98: -3.11363690e-01 sys_corr_99: -6.18812650e-01 - sys_corr_100: -6.08103918e-01 - sys_corr_101: 5.38433482e-01 - sys_corr_102: -9.79162359e-01 - sys_corr_103: -4.31488326e-02 - sys_corr_104: -5.68999509e+00 - sys_corr_105: -1.44284859e-01 - sys_corr_106: 5.18329027e-01 - sys_corr_107: 5.39208348e-01 - sys_corr_108: 2.48717978e-02 - sys_corr_109: -1.90925523e-01 - sys_corr_110: 1.31057042e-01 - sys_corr_111: -4.00863528e-01 - sys_corr_112: -2.94794796e-02 + sys_corr_100: -5.68999509e+00 + sys_corr_101: -4.31488326e-02 + sys_corr_102: 1.44284859e-01 + sys_corr_103: 9.79162359e-01 + sys_corr_104: 5.38433482e-01 + sys_corr_105: -6.08103918e-01 + sys_corr_106: -5.18329027e-01 + sys_corr_107: -5.39208348e-01 + sys_corr_108: 4.00863528e-01 + sys_corr_109: -2.48717978e-02 + sys_corr_110: 1.90925523e-01 + sys_corr_111: 1.31057042e-01 + sys_corr_112: 2.94794796e-02 sys_corr_113: 1.33339845e-01 sys_corr_114: 2.22036084e-03 - sys_corr_115: 1.73350541e-01 - sys_corr_116: 4.64972145e-02 + sys_corr_115: -1.73350541e-01 + sys_corr_116: -4.64972145e-02 sys_corr_117: -5.53651485e-02 - sys_corr_118: 5.32628051e-02 - sys_corr_119: -5.26942442e-03 + sys_corr_118: -5.32628051e-02 + sys_corr_119: 5.26942442e-03 sys_corr_120: -3.48461993e-02 sys_corr_121: 8.79166719e-03 sys_corr_122: 6.94129807e-02 - sys_corr_123: -3.82947871e-02 + sys_corr_123: 3.82947871e-02 sys_corr_124: -7.32056037e-02 - sys_corr_125: -5.69748361e-02 + sys_corr_125: 5.69748361e-02 sys_corr_126: 1.44330090e-02 - sys_corr_127: 3.63140288e-01 - sys_corr_128: 1.02848108e+00 - sys_corr_129: -1.67246966e-01 + sys_corr_127: -3.63140288e-01 + sys_corr_128: -1.02848108e+00 + sys_corr_129: 1.67246966e-01 sys_corr_130: -3.87147199e-03 - sys_corr_131: -3.66122749e-02 - sys_corr_132: -6.33208405e-02 + sys_corr_131: -6.33208405e-02 + sys_corr_132: 3.66122749e-02 stat: 0.0 luminosity: 2.42285516e+02 - sys_corr_1: 7.81925520e+01 @@ -6572,26 +6572,26 @@ bins: sys_corr_4: -1.41620171e+02 sys_corr_5: 1.56969204e+01 sys_corr_6: -1.93974238e+01 - sys_corr_7: -2.97678311e+01 - sys_corr_8: 2.06152385e+01 + sys_corr_7: 2.97678311e+01 + sys_corr_8: -2.06152385e+01 sys_corr_9: -3.99734420e+01 - sys_corr_10: 2.07273058e+01 - sys_corr_11: 2.22128926e+01 - sys_corr_12: 8.79386213e-01 + sys_corr_10: -2.07273058e+01 + sys_corr_11: -2.22128926e+01 + sys_corr_12: -8.79386213e-01 sys_corr_13: 3.01592607e+01 - sys_corr_14: -4.63117872e+00 - sys_corr_15: 8.06733049e+00 - sys_corr_16: -1.58724685e+01 - sys_corr_17: -8.63564148e+00 - sys_corr_18: -5.85387622e+00 - sys_corr_19: 1.39466023e+01 - sys_corr_20: -3.35569694e+01 - sys_corr_21: -2.08889944e+01 - sys_corr_22: -8.69478965e+01 - sys_corr_23: -7.47611229e+00 - sys_corr_24: 1.97346444e+02 - sys_corr_25: 9.93975439e-01 - sys_corr_26: -3.53683530e+00 + sys_corr_14: 4.63117872e+00 + sys_corr_15: -8.06733049e+00 + sys_corr_16: 1.58724685e+01 + sys_corr_17: 8.63564148e+00 + sys_corr_18: 5.85387622e+00 + sys_corr_19: -1.39466023e+01 + sys_corr_20: 3.35569694e+01 + sys_corr_21: 2.08889944e+01 + sys_corr_22: 8.69478965e+01 + sys_corr_23: 7.47611229e+00 + sys_corr_24: -1.97346444e+02 + sys_corr_25: -9.93975439e-01 + sys_corr_26: 3.53683530e+00 sys_corr_27: 4.23344845e+01 sys_corr_28: 2.34609535e+01 sys_corr_29: -1.20507302e+01 @@ -6604,100 +6604,100 @@ bins: sys_corr_36: -2.78387127e+01 sys_corr_37: -3.68233225e+01 sys_corr_38: 2.56576071e+01 - sys_corr_39: -1.22270561e+00 + sys_corr_39: 1.22270561e+00 sys_corr_40: -4.09581224e+01 sys_corr_41: -2.86622136e+00 - sys_corr_42: 5.15697676e+00 + sys_corr_42: -5.15697676e+00 sys_corr_43: 5.71775619e+01 - sys_corr_44: 1.83247225e+01 - sys_corr_45: -1.79123876e+01 - sys_corr_46: 2.49519093e+01 - sys_corr_47: -4.95874960e+00 - sys_corr_48: -5.14012942e+01 + sys_corr_44: -1.83247225e+01 + sys_corr_45: 1.79123876e+01 + sys_corr_46: -2.49519093e+01 + sys_corr_47: 4.95874960e+00 + sys_corr_48: 5.14012942e+01 sys_corr_49: -2.55513997e+01 - sys_corr_50: -5.25112198e+01 - sys_corr_51: 7.29368479e+01 - sys_corr_52: 4.69347594e+01 - sys_corr_53: 8.01831816e+00 - sys_corr_54: -2.90288080e+01 + sys_corr_50: 5.25112198e+01 + sys_corr_51: -7.29368479e+01 + sys_corr_52: -4.69347594e+01 + sys_corr_53: -8.01831816e+00 + sys_corr_54: 2.90288080e+01 sys_corr_55: 1.07936670e+00 sys_corr_56: -2.15152114e+01 - sys_corr_57: -2.47572864e+01 + sys_corr_57: 2.47572864e+01 sys_corr_58: 1.30347174e+00 - sys_corr_59: 2.36854682e+01 + sys_corr_59: -2.36854682e+01 sys_corr_60: -1.58272505e+01 sys_corr_61: 3.40432389e+01 sys_corr_62: 2.45017928e+01 - sys_corr_63: 1.17431232e+01 + sys_corr_63: -1.17431232e+01 sys_corr_64: -3.69811299e+01 sys_corr_65: -2.79894657e+01 - sys_corr_66: 5.80761818e+01 - sys_corr_67: -1.07654266e+02 - sys_corr_68: -1.95810623e+01 - sys_corr_69: 1.97490986e+01 - sys_corr_70: 7.38632852e+01 - sys_corr_71: -4.18255319e+01 - sys_corr_72: 9.51814313e+01 - sys_corr_73: -5.43272607e+01 - sys_corr_74: 3.80205684e+01 - sys_corr_75: 3.57069591e+00 + sys_corr_66: -5.80761818e+01 + sys_corr_67: 1.07654266e+02 + sys_corr_68: 1.95810623e+01 + sys_corr_69: -1.97490986e+01 + sys_corr_70: -7.38632852e+01 + sys_corr_71: -5.43272607e+01 + sys_corr_72: -9.51814313e+01 + sys_corr_73: 4.18255319e+01 + sys_corr_74: -3.80205684e+01 + sys_corr_75: -3.57069591e+00 sys_corr_76: -4.17213224e+01 sys_corr_77: -2.12628865e+00 - sys_corr_78: 5.76994978e+00 + sys_corr_78: 3.38669306e+00 sys_corr_79: -4.13361554e+01 - sys_corr_80: -3.38669306e+00 + sys_corr_80: -5.76994978e+00 sys_corr_81: -7.59606802e+00 - sys_corr_82: 2.02575462e+00 - sys_corr_83: -5.63447773e+00 + sys_corr_82: -5.63447773e+00 + sys_corr_83: -2.02575462e+00 sys_corr_84: -2.29691873e+00 - sys_corr_85: -9.02618030e-01 - sys_corr_86: -2.46783269e+01 + sys_corr_85: 9.02618030e-01 + sys_corr_86: 2.46783269e+01 sys_corr_87: 1.80293071e+01 sys_corr_88: 2.12705525e+01 - sys_corr_89: 5.99799387e+00 - sys_corr_90: 1.84837701e+00 + sys_corr_89: -5.99799387e+00 + sys_corr_90: -1.84837701e+00 sys_corr_91: 3.57291200e+00 - sys_corr_92: 2.49597108e+01 - sys_corr_93: -5.35100007e-01 + sys_corr_92: -2.49597108e+01 + sys_corr_93: 1.39901246e+00 sys_corr_94: -1.06362381e+00 - sys_corr_95: -1.39901246e+00 + sys_corr_95: 5.35100007e-01 sys_corr_96: 2.51653003e-01 sys_corr_97: -7.42620545e-01 sys_corr_98: -8.04759475e-01 sys_corr_99: -1.03030653e+00 - sys_corr_100: -8.45346965e-01 - sys_corr_101: 5.76770965e-01 - sys_corr_102: -9.75081235e-01 - sys_corr_103: 1.97027655e-01 - sys_corr_104: -6.53375966e+00 - sys_corr_105: -2.89571477e-01 - sys_corr_106: 6.30266093e-01 - sys_corr_107: 7.94257087e-01 - sys_corr_108: -8.18409566e-02 - sys_corr_109: 2.05144145e-01 - sys_corr_110: 4.44215299e-01 - sys_corr_111: -7.22922028e-02 - sys_corr_112: 1.77249978e-01 + sys_corr_100: -6.53375966e+00 + sys_corr_101: 1.97027655e-01 + sys_corr_102: 2.89571477e-01 + sys_corr_103: 9.75081235e-01 + sys_corr_104: 5.76770965e-01 + sys_corr_105: -8.45346965e-01 + sys_corr_106: -6.30266093e-01 + sys_corr_107: -7.94257087e-01 + sys_corr_108: 7.22922028e-02 + sys_corr_109: 8.18409566e-02 + sys_corr_110: -2.05144145e-01 + sys_corr_111: 4.44215299e-01 + sys_corr_112: -1.77249978e-01 sys_corr_113: 1.60770940e-01 sys_corr_114: 5.43809134e-03 - sys_corr_115: -5.46046529e-02 - sys_corr_116: 1.32301316e-02 + sys_corr_115: 5.46046529e-02 + sys_corr_116: -1.32301316e-02 sys_corr_117: -1.86136208e-02 - sys_corr_118: -9.66241931e-02 - sys_corr_119: 1.44286848e-02 + sys_corr_118: 9.66241931e-02 + sys_corr_119: -1.44286848e-02 sys_corr_120: -1.58960329e-02 sys_corr_121: 3.52292363e-03 sys_corr_122: 5.31717170e-02 - sys_corr_123: -3.39486033e-02 + sys_corr_123: 3.39486033e-02 sys_corr_124: 3.42271651e-02 - sys_corr_125: -5.67213736e-02 + sys_corr_125: 5.67213736e-02 sys_corr_126: 1.64477075e-02 - sys_corr_127: 1.05865610e-01 - sys_corr_128: 9.37323313e-01 - sys_corr_129: -2.77855964e-01 + sys_corr_127: -1.05865610e-01 + sys_corr_128: -9.37323313e-01 + sys_corr_129: 2.77855964e-01 sys_corr_130: 1.36799096e-02 - sys_corr_131: -3.29374884e-02 - sys_corr_132: 1.15397136e-01 + sys_corr_131: 1.15397136e-01 + sys_corr_132: 3.29374884e-02 stat: 0.0 luminosity: 1.73603364e+02 - sys_corr_1: 4.60565865e+01 @@ -6706,26 +6706,26 @@ bins: sys_corr_4: -1.12467493e+02 sys_corr_5: 1.52020493e+01 sys_corr_6: -1.39418926e+01 - sys_corr_7: -3.13055520e+01 - sys_corr_8: 1.16080160e+01 + sys_corr_7: 3.13055520e+01 + sys_corr_8: -1.16080160e+01 sys_corr_9: -2.52499115e+01 - sys_corr_10: 1.60900653e+01 - sys_corr_11: 1.52930823e+01 - sys_corr_12: -5.30496215e+00 + sys_corr_10: -1.60900653e+01 + sys_corr_11: -1.52930823e+01 + sys_corr_12: 5.30496215e+00 sys_corr_13: 1.75498039e+01 - sys_corr_14: -8.98431722e+00 - sys_corr_15: 8.09954611e+00 - sys_corr_16: -1.27855603e+01 - sys_corr_17: -3.73738980e+00 - sys_corr_18: -5.66303686e+00 - sys_corr_19: 8.93250396e+00 - sys_corr_20: -2.58342390e+01 - sys_corr_21: -1.59231661e+01 - sys_corr_22: -6.63495373e+01 - sys_corr_23: -3.00042274e+00 - sys_corr_24: 1.62496979e+02 - sys_corr_25: 6.71267712e+00 - sys_corr_26: 1.26444532e+00 + sys_corr_14: 8.98431722e+00 + sys_corr_15: -8.09954611e+00 + sys_corr_16: 1.27855603e+01 + sys_corr_17: 3.73738980e+00 + sys_corr_18: 5.66303686e+00 + sys_corr_19: -8.93250396e+00 + sys_corr_20: 2.58342390e+01 + sys_corr_21: 1.59231661e+01 + sys_corr_22: 6.63495373e+01 + sys_corr_23: 3.00042274e+00 + sys_corr_24: -1.62496979e+02 + sys_corr_25: -6.71267712e+00 + sys_corr_26: -1.26444532e+00 sys_corr_27: 3.48349957e+01 sys_corr_28: 1.30915223e+01 sys_corr_29: -6.35441652e+00 @@ -6738,100 +6738,100 @@ bins: sys_corr_36: -1.57422625e+01 sys_corr_37: -1.95349345e+01 sys_corr_38: 1.47291760e+01 - sys_corr_39: 1.07846615e+00 + sys_corr_39: -1.07846615e+00 sys_corr_40: -2.19314478e+01 sys_corr_41: -5.38467352e+00 - sys_corr_42: 2.92703800e+00 + sys_corr_42: -2.92703800e+00 sys_corr_43: 2.85892268e+01 - sys_corr_44: 1.06532250e+01 - sys_corr_45: -1.17194278e+01 - sys_corr_46: 1.05952463e+01 - sys_corr_47: -2.65112263e+00 - sys_corr_48: -2.65934805e+01 + sys_corr_44: -1.06532250e+01 + sys_corr_45: 1.17194278e+01 + sys_corr_46: -1.05952463e+01 + sys_corr_47: 2.65112263e+00 + sys_corr_48: 2.65934805e+01 sys_corr_49: -1.27386691e+01 - sys_corr_50: -2.02860212e+01 - sys_corr_51: 2.88821397e+01 - sys_corr_52: 1.44344484e+01 - sys_corr_53: 3.30603474e-01 - sys_corr_54: -1.27300361e+01 + sys_corr_50: 2.02860212e+01 + sys_corr_51: -2.88821397e+01 + sys_corr_52: -1.44344484e+01 + sys_corr_53: -3.30603474e-01 + sys_corr_54: 1.27300361e+01 sys_corr_55: 8.57968392e+00 sys_corr_56: -9.56506034e+00 - sys_corr_57: -3.39022642e+00 + sys_corr_57: 3.39022642e+00 sys_corr_58: -3.11079525e+00 - sys_corr_59: -5.99480562e+00 + sys_corr_59: 5.99480562e+00 sys_corr_60: -8.29037011e+00 sys_corr_61: 1.50657182e+01 sys_corr_62: 2.85252337e+00 - sys_corr_63: 9.12867250e+00 + sys_corr_63: -9.12867250e+00 sys_corr_64: 4.03807513e+00 sys_corr_65: -1.07706428e+01 - sys_corr_66: 1.43650279e+01 - sys_corr_67: -1.47495310e+01 - sys_corr_68: -6.28606309e+00 - sys_corr_69: -5.92411566e+00 - sys_corr_70: -6.31605732e-01 - sys_corr_71: 1.87986178e+01 - sys_corr_72: -5.90565613e+00 - sys_corr_73: -1.84308094e+01 - sys_corr_74: -9.30543431e+00 - sys_corr_75: 2.64787706e+01 + sys_corr_66: -1.43650279e+01 + sys_corr_67: 1.47495310e+01 + sys_corr_68: 6.28606309e+00 + sys_corr_69: 5.92411566e+00 + sys_corr_70: 6.31605732e-01 + sys_corr_71: -1.84308094e+01 + sys_corr_72: 5.90565613e+00 + sys_corr_73: -1.87986178e+01 + sys_corr_74: 9.30543431e+00 + sys_corr_75: -2.64787706e+01 sys_corr_76: 2.20178449e+01 sys_corr_77: -2.68818271e+01 - sys_corr_78: -8.15895230e-01 + sys_corr_78: -4.86897226e+01 sys_corr_79: 1.83708459e+02 - sys_corr_80: 4.86897226e+01 + sys_corr_80: 8.15895230e-01 sys_corr_81: 1.97004203e+01 - sys_corr_82: 3.13850689e+00 - sys_corr_83: -7.10005799e+00 + sys_corr_82: -7.10005799e+00 + sys_corr_83: -3.13850689e+00 sys_corr_84: -6.45341046e+00 - sys_corr_85: 1.01836298e+01 - sys_corr_86: 4.16253678e+01 + sys_corr_85: -1.01836298e+01 + sys_corr_86: -4.16253678e+01 sys_corr_87: -2.65400607e+00 sys_corr_88: -3.80373061e+01 - sys_corr_89: -3.37707187e+00 - sys_corr_90: 4.46384925e-01 + sys_corr_89: 3.37707187e+00 + sys_corr_90: -4.46384925e-01 sys_corr_91: -7.85599135e-01 - sys_corr_92: -3.79070031e+01 - sys_corr_93: -9.43723818e-01 + sys_corr_92: 3.79070031e+01 + sys_corr_93: -4.70345191e+00 sys_corr_94: -4.91323243e+00 - sys_corr_95: 4.70345191e+00 + sys_corr_95: 9.43723818e-01 sys_corr_96: 2.71070907e-01 sys_corr_97: -1.92150515e+00 sys_corr_98: -1.86301484e+00 sys_corr_99: -2.18287771e+00 - sys_corr_100: -1.34864033e+00 - sys_corr_101: 1.16437785e+00 - sys_corr_102: -1.78519112e+00 - sys_corr_103: 7.20294069e-01 - sys_corr_104: -1.41914046e+01 - sys_corr_105: -3.04100945e-02 - sys_corr_106: 9.85374567e-01 - sys_corr_107: 1.10579873e+00 - sys_corr_108: -2.06781624e-01 - sys_corr_109: 2.93502275e-01 - sys_corr_110: 6.00962890e-01 - sys_corr_111: 3.04994045e-01 - sys_corr_112: 2.29887452e-01 + sys_corr_100: -1.41914046e+01 + sys_corr_101: 7.20294069e-01 + sys_corr_102: 3.04100945e-02 + sys_corr_103: 1.78519112e+00 + sys_corr_104: 1.16437785e+00 + sys_corr_105: -1.34864033e+00 + sys_corr_106: -9.85374567e-01 + sys_corr_107: -1.10579873e+00 + sys_corr_108: -3.04994045e-01 + sys_corr_109: 2.06781624e-01 + sys_corr_110: -2.93502275e-01 + sys_corr_111: 6.00962890e-01 + sys_corr_112: -2.29887452e-01 sys_corr_113: 6.53092637e-02 sys_corr_114: 4.61482422e-03 - sys_corr_115: -9.64266670e-02 - sys_corr_116: 2.40117423e-02 + sys_corr_115: 9.64266670e-02 + sys_corr_116: -2.40117423e-02 sys_corr_117: -3.21918576e-02 - sys_corr_118: -2.65040344e-01 - sys_corr_119: 1.35706905e-02 + sys_corr_118: 2.65040344e-01 + sys_corr_119: -1.35706905e-02 sys_corr_120: -3.06743562e-02 sys_corr_121: 6.51430614e-03 sys_corr_122: 1.21071262e-01 - sys_corr_123: -5.88743165e-02 + sys_corr_123: 5.88743165e-02 sys_corr_124: 3.10219282e-02 - sys_corr_125: -7.94374843e-02 + sys_corr_125: 7.94374843e-02 sys_corr_126: 2.13033067e-02 - sys_corr_127: -3.01403289e-01 - sys_corr_128: 1.69786256e+00 - sys_corr_129: -3.81790670e-01 + sys_corr_127: 3.01403289e-01 + sys_corr_128: -1.69786256e+00 + sys_corr_129: 3.81790670e-01 sys_corr_130: 1.25022920e-02 - sys_corr_131: -5.68939074e-02 - sys_corr_132: 1.01719856e-01 + sys_corr_131: 1.01719856e-01 + sys_corr_132: 5.68939074e-02 stat: 0.0 luminosity: 1.02834600e+02 - sys_corr_1: 1.67828935e+01 @@ -6840,26 +6840,26 @@ bins: sys_corr_4: -4.31142430e+01 sys_corr_5: 6.00349538e+00 sys_corr_6: -7.28315671e+00 - sys_corr_7: -1.22564969e+01 - sys_corr_8: 4.27352093e+00 + sys_corr_7: 1.22564969e+01 + sys_corr_8: -4.27352093e+00 sys_corr_9: -7.87617510e+00 - sys_corr_10: 6.67370516e+00 - sys_corr_11: 4.09411776e+00 - sys_corr_12: -4.82078857e+00 + sys_corr_10: -6.67370516e+00 + sys_corr_11: -4.09411776e+00 + sys_corr_12: 4.82078857e+00 sys_corr_13: 4.48909706e+00 - sys_corr_14: -4.04611254e+00 - sys_corr_15: 1.37564278e+00 - sys_corr_16: -3.88904283e+00 - sys_corr_17: -1.20139744e+00 - sys_corr_18: -3.13824566e-01 - sys_corr_19: 2.92363650e+00 - sys_corr_20: -1.09782287e+01 - sys_corr_21: -6.58683429e+00 - sys_corr_22: -2.45016899e+01 - sys_corr_23: -2.87639244e+00 - sys_corr_24: 6.51766734e+01 - sys_corr_25: 3.94629071e+00 - sys_corr_26: -5.04860483e-01 + sys_corr_14: 4.04611254e+00 + sys_corr_15: -1.37564278e+00 + sys_corr_16: 3.88904283e+00 + sys_corr_17: 1.20139744e+00 + sys_corr_18: 3.13824566e-01 + sys_corr_19: -2.92363650e+00 + sys_corr_20: 1.09782287e+01 + sys_corr_21: 6.58683429e+00 + sys_corr_22: 2.45016899e+01 + sys_corr_23: 2.87639244e+00 + sys_corr_24: -6.51766734e+01 + sys_corr_25: -3.94629071e+00 + sys_corr_26: 5.04860483e-01 sys_corr_27: 1.39294925e+01 sys_corr_28: 6.17953332e+00 sys_corr_29: -3.27378032e+00 @@ -6872,100 +6872,100 @@ bins: sys_corr_36: -4.63181697e+00 sys_corr_37: -6.45932653e+00 sys_corr_38: 4.99789391e+00 - sys_corr_39: -4.53137290e-01 + sys_corr_39: 4.53137290e-01 sys_corr_40: -6.03308716e+00 sys_corr_41: -1.99801756e+00 - sys_corr_42: 1.47144752e+00 + sys_corr_42: -1.47144752e+00 sys_corr_43: 8.57886948e+00 - sys_corr_44: 3.39148192e+00 - sys_corr_45: -3.06841799e+00 - sys_corr_46: 3.92013527e+00 - sys_corr_47: -4.43471072e-01 - sys_corr_48: -8.63115655e+00 + sys_corr_44: -3.39148192e+00 + sys_corr_45: 3.06841799e+00 + sys_corr_46: -3.92013527e+00 + sys_corr_47: 4.43471072e-01 + sys_corr_48: 8.63115655e+00 sys_corr_49: -3.19391079e+00 - sys_corr_50: -5.33191499e+00 - sys_corr_51: 8.10525357e+00 - sys_corr_52: 4.35105941e+00 - sys_corr_53: 3.95619848e-01 - sys_corr_54: -3.46410994e+00 + sys_corr_50: 5.33191499e+00 + sys_corr_51: -8.10525357e+00 + sys_corr_52: -4.35105941e+00 + sys_corr_53: -3.95619848e-01 + sys_corr_54: 3.46410994e+00 sys_corr_55: 3.82048550e+00 sys_corr_56: -2.18128900e+00 - sys_corr_57: -1.96523392e+00 + sys_corr_57: 1.96523392e+00 sys_corr_58: -1.21325644e+00 - sys_corr_59: 5.33429393e-01 + sys_corr_59: -5.33429393e-01 sys_corr_60: -1.92353775e+00 sys_corr_61: 1.92923753e+00 sys_corr_62: -1.05630790e+00 - sys_corr_63: 2.01323531e+00 + sys_corr_63: -2.01323531e+00 sys_corr_64: -2.19907615e+00 sys_corr_65: -1.38362346e+00 - sys_corr_66: 3.47654698e+00 - sys_corr_67: -1.46629545e+00 - sys_corr_68: -8.62521346e-01 - sys_corr_69: -6.06699220e-01 - sys_corr_70: 1.26153103e+00 - sys_corr_71: 1.66264536e+00 - sys_corr_72: -3.11372431e+00 - sys_corr_73: 3.95035285e-01 - sys_corr_74: 1.17050866e-01 - sys_corr_75: 2.36731239e+00 + sys_corr_66: -3.47654698e+00 + sys_corr_67: 1.46629545e+00 + sys_corr_68: 8.62521346e-01 + sys_corr_69: 6.06699220e-01 + sys_corr_70: -1.26153103e+00 + sys_corr_71: 3.95035285e-01 + sys_corr_72: 3.11372431e+00 + sys_corr_73: -1.66264536e+00 + sys_corr_74: -1.17050866e-01 + sys_corr_75: -2.36731239e+00 sys_corr_76: 2.54820612e+00 sys_corr_77: -1.62612612e+00 - sys_corr_78: -4.26935858e-01 + sys_corr_78: -8.56035895e-01 sys_corr_79: 1.29006035e+01 - sys_corr_80: 8.56035895e-01 + sys_corr_80: 4.26935858e-01 sys_corr_81: 1.30419082e+00 - sys_corr_82: 6.44052338e-01 - sys_corr_83: -6.29670870e-01 + sys_corr_82: -6.29670870e-01 + sys_corr_83: -6.44052338e-01 sys_corr_84: 1.66582963e+00 - sys_corr_85: -8.88138087e-01 - sys_corr_86: 5.45517942e+00 + sys_corr_85: 8.88138087e-01 + sys_corr_86: -5.45517942e+00 sys_corr_87: 4.39565848e-01 sys_corr_88: -4.44755711e+00 - sys_corr_89: -3.91780523e+00 - sys_corr_90: 1.16814857e+00 + sys_corr_89: 3.91780523e+00 + sys_corr_90: -1.16814857e+00 sys_corr_91: -5.12351669e-01 - sys_corr_92: -4.52011298e+00 - sys_corr_93: 2.13139755e+00 + sys_corr_92: 4.52011298e+00 + sys_corr_93: -2.24558552e+00 sys_corr_94: 1.12048173e+01 - sys_corr_95: 2.24558552e+00 + sys_corr_95: -2.13139755e+00 sys_corr_96: -1.61695171e+00 sys_corr_97: 9.42968184e-01 sys_corr_98: 7.00720440e+00 sys_corr_99: 7.87283851e+00 - sys_corr_100: -2.60233445e+00 - sys_corr_101: 1.99175397e+00 - sys_corr_102: -4.06212294e+00 - sys_corr_103: -1.54240242e+01 - sys_corr_104: 1.31212934e+02 - sys_corr_105: -2.11600001e+01 - sys_corr_106: 1.69631050e+00 - sys_corr_107: 2.02772096e+00 - sys_corr_108: -2.75490866e-01 - sys_corr_109: -1.71518253e-01 - sys_corr_110: -3.97222960e-01 - sys_corr_111: 3.32790993e+00 - sys_corr_112: 9.31790343e-02 + sys_corr_100: 1.31212934e+02 + sys_corr_101: -1.54240242e+01 + sys_corr_102: 2.11600001e+01 + sys_corr_103: 4.06212294e+00 + sys_corr_104: 1.99175397e+00 + sys_corr_105: -2.60233445e+00 + sys_corr_106: -1.69631050e+00 + sys_corr_107: -2.02772096e+00 + sys_corr_108: -3.32790993e+00 + sys_corr_109: 2.75490866e-01 + sys_corr_110: 1.71518253e-01 + sys_corr_111: -3.97222960e-01 + sys_corr_112: -9.31790343e-02 sys_corr_113: 3.06291421e-01 sys_corr_114: 6.88806777e-03 - sys_corr_115: -1.08421496e-01 - sys_corr_116: 9.91835877e-03 + sys_corr_115: 1.08421496e-01 + sys_corr_116: -9.91835877e-03 sys_corr_117: -2.25477423e-02 - sys_corr_118: -2.60901970e-01 - sys_corr_119: 1.36778052e-02 + sys_corr_118: 2.60901970e-01 + sys_corr_119: -1.36778052e-02 sys_corr_120: -3.95249625e-02 sys_corr_121: 1.79867960e-02 sys_corr_122: 1.51979733e-01 - sys_corr_123: -8.85748013e-02 + sys_corr_123: 8.85748013e-02 sys_corr_124: 4.16179109e-02 - sys_corr_125: -1.11061097e-01 + sys_corr_125: 1.11061097e-01 sys_corr_126: 3.66919849e-02 - sys_corr_127: 4.11757161e+00 - sys_corr_128: -8.87191820e-01 - sys_corr_129: -5.22994031e-02 + sys_corr_127: -4.11757161e+00 + sys_corr_128: 8.87191820e-01 + sys_corr_129: 5.22994031e-02 sys_corr_130: 1.93714525e-03 - sys_corr_131: -6.10208563e-02 - sys_corr_132: 5.18811173e-02 + sys_corr_131: 5.18811173e-02 + sys_corr_132: 6.10208563e-02 stat: 0.0 luminosity: 3.57974100e+01 - sys_corr_1: 1.32783679e+02 @@ -6974,26 +6974,26 @@ bins: sys_corr_4: 2.77922959e+01 sys_corr_5: -7.04769270e+01 sys_corr_6: -8.57896948e+01 - sys_corr_7: 1.27669805e+01 - sys_corr_8: 4.61543762e+00 + sys_corr_7: -1.27669805e+01 + sys_corr_8: -4.61543762e+00 sys_corr_9: 7.81321256e+00 - sys_corr_10: 1.00322123e+01 - sys_corr_11: 2.73875635e+01 - sys_corr_12: 4.53160340e+01 + sys_corr_10: -1.00322123e+01 + sys_corr_11: -2.73875635e+01 + sys_corr_12: -4.53160340e+01 sys_corr_13: 3.17987741e+01 - sys_corr_14: 4.95774252e+00 - sys_corr_15: 1.97870171e+01 - sys_corr_16: -6.35260051e+00 - sys_corr_17: 1.20571986e+01 - sys_corr_18: -4.16273542e+00 - sys_corr_19: -6.40327353e+00 - sys_corr_20: 4.24024349e+00 - sys_corr_21: 1.03260462e+01 - sys_corr_22: 5.32344335e+01 - sys_corr_23: -6.26465503e+00 - sys_corr_24: 1.07957032e+01 - sys_corr_25: -2.55556385e+01 - sys_corr_26: -4.27503142e+01 + sys_corr_14: -4.95774252e+00 + sys_corr_15: -1.97870171e+01 + sys_corr_16: 6.35260051e+00 + sys_corr_17: -1.20571986e+01 + sys_corr_18: 4.16273542e+00 + sys_corr_19: 6.40327353e+00 + sys_corr_20: -4.24024349e+00 + sys_corr_21: -1.03260462e+01 + sys_corr_22: -5.32344335e+01 + sys_corr_23: 6.26465503e+00 + sys_corr_24: -1.07957032e+01 + sys_corr_25: 2.55556385e+01 + sys_corr_26: 4.27503142e+01 sys_corr_27: 4.62146901e+00 sys_corr_28: -6.74557088e+01 sys_corr_29: 1.03510293e+02 @@ -7006,100 +7006,100 @@ bins: sys_corr_36: -2.68217376e+01 sys_corr_37: -6.44827701e-01 sys_corr_38: -2.13363109e+00 - sys_corr_39: 1.85420734e+01 + sys_corr_39: -1.85420734e+01 sys_corr_40: 5.01012734e+00 sys_corr_41: -9.81530614e+00 - sys_corr_42: 2.53741080e+01 + sys_corr_42: -2.53741080e+01 sys_corr_43: -3.60891448e+00 - sys_corr_44: 6.09329893e+01 - sys_corr_45: 7.76931089e+00 - sys_corr_46: 9.74323592e+00 - sys_corr_47: -3.20100150e+01 - sys_corr_48: 2.84242280e+01 + sys_corr_44: -6.09329893e+01 + sys_corr_45: -7.76931089e+00 + sys_corr_46: -9.74323592e+00 + sys_corr_47: 3.20100150e+01 + sys_corr_48: -2.84242280e+01 sys_corr_49: 4.96523224e+01 - sys_corr_50: -2.61000923e+01 - sys_corr_51: -7.89175613e+00 - sys_corr_52: 2.64226006e-01 - sys_corr_53: -1.84132741e+00 - sys_corr_54: 2.14984195e+01 + sys_corr_50: 2.61000923e+01 + sys_corr_51: 7.89175613e+00 + sys_corr_52: -2.64226006e-01 + sys_corr_53: 1.84132741e+00 + sys_corr_54: -2.14984195e+01 sys_corr_55: -2.60572812e+00 sys_corr_56: -4.58374037e+00 - sys_corr_57: -8.82522427e+00 + sys_corr_57: 8.82522427e+00 sys_corr_58: -1.88492563e+00 - sys_corr_59: 8.99008301e+00 + sys_corr_59: -8.99008301e+00 sys_corr_60: 2.39765653e+01 sys_corr_61: 3.54662726e+00 sys_corr_62: 1.34777317e+00 - sys_corr_63: 2.40729749e+00 + sys_corr_63: -2.40729749e+00 sys_corr_64: 5.42555526e+00 sys_corr_65: 5.62153433e+00 - sys_corr_66: 3.97007500e+00 - sys_corr_67: -2.83270643e+00 - sys_corr_68: 1.40939957e+01 - sys_corr_69: 5.51585124e+01 - sys_corr_70: 1.53234389e+01 - sys_corr_71: 5.88160763e+01 - sys_corr_72: -2.59587186e+01 - sys_corr_73: -2.70277867e+01 - sys_corr_74: 2.62919993e+01 - sys_corr_75: -5.72144614e+01 + sys_corr_66: -3.97007500e+00 + sys_corr_67: 2.83270643e+00 + sys_corr_68: -1.40939957e+01 + sys_corr_69: -5.51585124e+01 + sys_corr_70: -1.53234389e+01 + sys_corr_71: -2.70277867e+01 + sys_corr_72: 2.59587186e+01 + sys_corr_73: -5.88160763e+01 + sys_corr_74: -2.62919993e+01 + sys_corr_75: 5.72144614e+01 sys_corr_76: -9.93751613e+00 sys_corr_77: -7.43463955e+00 - sys_corr_78: 1.67431870e+01 + sys_corr_78: -7.76762589e-01 sys_corr_79: -2.75287764e-01 - sys_corr_80: 7.76762589e-01 + sys_corr_80: -1.67431870e+01 sys_corr_81: -1.52515759e+01 - sys_corr_82: 1.75276623e+02 - sys_corr_83: -3.82986407e+01 + sys_corr_82: -3.82986407e+01 + sys_corr_83: -1.75276623e+02 sys_corr_84: 2.78290701e+00 - sys_corr_85: -1.95702585e+00 - sys_corr_86: -1.18891174e+01 + sys_corr_85: 1.95702585e+00 + sys_corr_86: 1.18891174e+01 sys_corr_87: -5.48384147e+01 sys_corr_88: 1.03723469e+01 - sys_corr_89: -1.00097087e+00 - sys_corr_90: -7.00310245e+00 + sys_corr_89: 1.00097087e+00 + sys_corr_90: 7.00310245e+00 sys_corr_91: 5.41129092e+00 - sys_corr_92: -1.61701534e+01 - sys_corr_93: 1.59009955e-01 + sys_corr_92: 1.61701534e+01 + sys_corr_93: 3.59325857e-01 sys_corr_94: 2.56824880e+00 - sys_corr_95: -3.59325857e-01 + sys_corr_95: -1.59009955e-01 sys_corr_96: 2.28873118e-01 sys_corr_97: 4.34532329e+00 sys_corr_98: 2.34664833e+00 sys_corr_99: 1.76007095e+00 - sys_corr_100: 1.18821145e+00 - sys_corr_101: -8.77250902e-01 - sys_corr_102: 2.02503785e+00 - sys_corr_103: 1.45880726e+00 - sys_corr_104: 2.54384094e-01 - sys_corr_105: 3.35538677e+00 - sys_corr_106: -2.59957758e-01 - sys_corr_107: -7.60119581e-01 - sys_corr_108: -1.61336150e-01 - sys_corr_109: 6.54133655e-01 - sys_corr_110: 4.65041074e-01 - sys_corr_111: -1.93849430e-01 - sys_corr_112: 7.03326275e-02 + sys_corr_100: 2.54384094e-01 + sys_corr_101: 1.45880726e+00 + sys_corr_102: -3.35538677e+00 + sys_corr_103: -2.02503785e+00 + sys_corr_104: -8.77250902e-01 + sys_corr_105: 1.18821145e+00 + sys_corr_106: 2.59957758e-01 + sys_corr_107: 7.60119581e-01 + sys_corr_108: 1.93849430e-01 + sys_corr_109: 1.61336150e-01 + sys_corr_110: -6.54133655e-01 + sys_corr_111: 4.65041074e-01 + sys_corr_112: -7.03326275e-02 sys_corr_113: 2.07468633e-01 sys_corr_114: -2.17954067e-03 - sys_corr_115: 1.47426885e-01 - sys_corr_116: 1.19938049e-03 + sys_corr_115: -1.47426885e-01 + sys_corr_116: -1.19938049e-03 sys_corr_117: 1.72840331e-02 - sys_corr_118: 7.49837596e-02 - sys_corr_119: -6.16287204e-03 + sys_corr_118: -7.49837596e-02 + sys_corr_119: 6.16287204e-03 sys_corr_120: 2.94271462e-02 sys_corr_121: -1.15013711e-02 sys_corr_122: -2.37224135e-02 - sys_corr_123: 1.96264508e-02 + sys_corr_123: -1.96264508e-02 sys_corr_124: -3.59739244e-02 - sys_corr_125: 5.65329170e-02 + sys_corr_125: -5.65329170e-02 sys_corr_126: -9.45335091e-03 - sys_corr_127: -4.18603232e-01 - sys_corr_128: -1.84684361e-01 - sys_corr_129: -3.64889273e-02 + sys_corr_127: 4.18603232e-01 + sys_corr_128: 1.84684361e-01 + sys_corr_129: 3.64889273e-02 sys_corr_130: -1.36532813e-02 - sys_corr_131: 3.27627931e-02 - sys_corr_132: 1.88237455e-02 + sys_corr_131: 1.88237455e-02 + sys_corr_132: -3.27627931e-02 stat: 0.0 luminosity: 2.46767202e+02 - sys_corr_1: 1.28845316e+02 @@ -7108,26 +7108,26 @@ bins: sys_corr_4: 2.59415178e+01 sys_corr_5: -6.11308329e+01 sys_corr_6: -9.17778348e+01 - sys_corr_7: 1.26525783e+01 - sys_corr_8: -1.15063392e-01 + sys_corr_7: -1.26525783e+01 + sys_corr_8: 1.15063392e-01 sys_corr_9: 3.89947269e+00 - sys_corr_10: 8.80806556e+00 - sys_corr_11: 2.30551032e+01 - sys_corr_12: 4.43333529e+01 + sys_corr_10: -8.80806556e+00 + sys_corr_11: -2.30551032e+01 + sys_corr_12: -4.43333529e+01 sys_corr_13: 2.37666920e+01 - sys_corr_14: 1.52987668e+00 - sys_corr_15: 8.37646836e+00 - sys_corr_16: -1.46552422e+01 - sys_corr_17: 6.70170744e+00 - sys_corr_18: -1.13626826e+00 - sys_corr_19: -4.65242491e+00 - sys_corr_20: 5.81215300e+00 - sys_corr_21: 8.22519725e+00 - sys_corr_22: 4.04077837e+01 - sys_corr_23: -5.25637380e+00 - sys_corr_24: 1.84061978e+00 - sys_corr_25: -2.14062162e+01 - sys_corr_26: -3.33790203e+01 + sys_corr_14: -1.52987668e+00 + sys_corr_15: -8.37646836e+00 + sys_corr_16: 1.46552422e+01 + sys_corr_17: -6.70170744e+00 + sys_corr_18: 1.13626826e+00 + sys_corr_19: 4.65242491e+00 + sys_corr_20: -5.81215300e+00 + sys_corr_21: -8.22519725e+00 + sys_corr_22: -4.04077837e+01 + sys_corr_23: 5.25637380e+00 + sys_corr_24: -1.84061978e+00 + sys_corr_25: 2.14062162e+01 + sys_corr_26: 3.33790203e+01 sys_corr_27: 1.74718069e+00 sys_corr_28: -6.96409964e+01 sys_corr_29: 1.02368418e+02 @@ -7140,100 +7140,100 @@ bins: sys_corr_36: 5.10994236e+00 sys_corr_37: 8.24774392e+00 sys_corr_38: 8.95860078e+00 - sys_corr_39: 1.10047555e+00 + sys_corr_39: -1.10047555e+00 sys_corr_40: 5.10753961e-03 sys_corr_41: -5.76854320e+00 - sys_corr_42: 2.35190936e+01 + sys_corr_42: -2.35190936e+01 sys_corr_43: 4.63051627e+00 - sys_corr_44: 7.27872996e+01 - sys_corr_45: 5.40993463e+00 - sys_corr_46: 1.07842136e+01 - sys_corr_47: -3.97853652e+01 - sys_corr_48: 2.70729006e+01 + sys_corr_44: -7.27872996e+01 + sys_corr_45: -5.40993463e+00 + sys_corr_46: -1.07842136e+01 + sys_corr_47: 3.97853652e+01 + sys_corr_48: -2.70729006e+01 sys_corr_49: 4.38566377e+01 - sys_corr_50: -3.08435408e+01 - sys_corr_51: -6.53103113e+00 - sys_corr_52: -2.27154227e+00 - sys_corr_53: 3.61603951e+00 - sys_corr_54: 2.04968602e+01 + sys_corr_50: 3.08435408e+01 + sys_corr_51: 6.53103113e+00 + sys_corr_52: 2.27154227e+00 + sys_corr_53: -3.61603951e+00 + sys_corr_54: -2.04968602e+01 sys_corr_55: 1.58213177e+00 sys_corr_56: -3.31376540e+00 - sys_corr_57: -1.01401085e+01 + sys_corr_57: 1.01401085e+01 sys_corr_58: -9.84434513e+00 - sys_corr_59: 5.23555809e+00 + sys_corr_59: -5.23555809e+00 sys_corr_60: 4.12707546e+01 sys_corr_61: -2.63300045e-01 sys_corr_62: -1.32132836e-01 - sys_corr_63: 1.02545991e+01 + sys_corr_63: -1.02545991e+01 sys_corr_64: 3.84519488e+00 sys_corr_65: 8.43573266e+00 - sys_corr_66: -6.33414533e+00 - sys_corr_67: 6.93183048e+00 - sys_corr_68: 7.52466023e+00 - sys_corr_69: 7.39733584e+01 - sys_corr_70: 3.90955472e+01 - sys_corr_71: 1.14535951e+02 - sys_corr_72: -2.08464519e+01 - sys_corr_73: -2.37805844e+01 - sys_corr_74: 2.66664571e+01 - sys_corr_75: -7.38707131e+01 + sys_corr_66: 6.33414533e+00 + sys_corr_67: -6.93183048e+00 + sys_corr_68: -7.52466023e+00 + sys_corr_69: -7.39733584e+01 + sys_corr_70: -3.90955472e+01 + sys_corr_71: -2.37805844e+01 + sys_corr_72: 2.08464519e+01 + sys_corr_73: -1.14535951e+02 + sys_corr_74: -2.66664571e+01 + sys_corr_75: 7.38707131e+01 sys_corr_76: -2.92592935e+01 sys_corr_77: 2.27995443e+00 - sys_corr_78: -9.03913511e+00 + sys_corr_78: 1.61180447e+00 sys_corr_79: 1.84144370e+00 - sys_corr_80: -1.61180447e+00 + sys_corr_80: 9.03913511e+00 sys_corr_81: 2.09455559e+01 - sys_corr_82: -1.15039106e+02 - sys_corr_83: 1.56893542e+01 + sys_corr_82: 1.56893542e+01 + sys_corr_83: 1.15039106e+02 sys_corr_84: -9.23771616e-01 - sys_corr_85: -1.61651581e+00 - sys_corr_86: -2.23422704e+01 + sys_corr_85: 1.61651581e+00 + sys_corr_86: 2.23422704e+01 sys_corr_87: 7.57676746e+01 sys_corr_88: -3.53945875e+00 - sys_corr_89: 9.94363369e-02 - sys_corr_90: -3.16487097e+00 + sys_corr_89: -9.94363369e-02 + sys_corr_90: 3.16487097e+00 sys_corr_91: 3.27511267e+00 - sys_corr_92: -3.95771593e+01 - sys_corr_93: 6.37301222e-01 + sys_corr_92: 3.95771593e+01 + sys_corr_93: -6.38634808e-02 sys_corr_94: 1.36796998e+00 - sys_corr_95: 6.38634808e-02 + sys_corr_95: -6.37301222e-01 sys_corr_96: 6.79835888e-01 sys_corr_97: 2.94257377e+00 sys_corr_98: 1.14915331e+00 sys_corr_99: 1.75244981e+00 - sys_corr_100: 7.80958259e-01 - sys_corr_101: -4.05784271e-01 - sys_corr_102: 7.60558356e-01 - sys_corr_103: 3.29623416e+00 - sys_corr_104: 4.88674531e-01 - sys_corr_105: 3.58028048e+00 - sys_corr_106: 2.23233840e-01 - sys_corr_107: -2.48972193e-01 - sys_corr_108: -6.87536983e-02 - sys_corr_109: 5.22943109e-01 - sys_corr_110: 1.88567170e-01 - sys_corr_111: -3.19379332e-01 - sys_corr_112: 6.64017347e-02 + sys_corr_100: 4.88674531e-01 + sys_corr_101: 3.29623416e+00 + sys_corr_102: -3.58028048e+00 + sys_corr_103: -7.60558356e-01 + sys_corr_104: -4.05784271e-01 + sys_corr_105: 7.80958259e-01 + sys_corr_106: -2.23233840e-01 + sys_corr_107: 2.48972193e-01 + sys_corr_108: 3.19379332e-01 + sys_corr_109: 6.87536983e-02 + sys_corr_110: -5.22943109e-01 + sys_corr_111: 1.88567170e-01 + sys_corr_112: -6.64017347e-02 sys_corr_113: 1.34401381e-01 sys_corr_114: -2.04754520e-03 - sys_corr_115: 4.60829979e-02 - sys_corr_116: -5.32766728e-02 + sys_corr_115: -4.60829979e-02 + sys_corr_116: 5.32766728e-02 sys_corr_117: 1.51980526e-02 - sys_corr_118: 4.20104132e-02 - sys_corr_119: -9.40320282e-03 + sys_corr_118: -4.20104132e-02 + sys_corr_119: 9.40320282e-03 sys_corr_120: 3.22321207e-02 sys_corr_121: -6.13875630e-03 sys_corr_122: -1.35871243e-02 - sys_corr_123: 1.26555542e-02 + sys_corr_123: -1.26555542e-02 sys_corr_124: 7.08840753e-02 - sys_corr_125: 2.48652226e-02 + sys_corr_125: -2.48652226e-02 sys_corr_126: -3.66669325e-03 - sys_corr_127: -2.53332141e-01 - sys_corr_128: -3.49521923e-02 - sys_corr_129: -6.57973042e-02 + sys_corr_127: 2.53332141e-01 + sys_corr_128: 3.49521923e-02 + sys_corr_129: 6.57973042e-02 sys_corr_130: -1.34130456e-02 - sys_corr_131: 4.54389558e-03 - sys_corr_132: 2.63492268e-02 + sys_corr_131: 2.63492268e-02 + sys_corr_132: -4.54389558e-03 stat: 0.0 luminosity: 2.46387284e+02 - sys_corr_1: 1.22692790e+02 @@ -7242,26 +7242,26 @@ bins: sys_corr_4: 1.95020683e+01 sys_corr_5: -7.23979556e+01 sys_corr_6: -6.11122031e+01 - sys_corr_7: 1.53585723e+01 - sys_corr_8: 9.38437991e+00 + sys_corr_7: -1.53585723e+01 + sys_corr_8: -9.38437991e+00 sys_corr_9: 3.42614763e+00 - sys_corr_10: 1.63302416e+00 - sys_corr_11: 3.11038174e+01 - sys_corr_12: 5.23214032e+01 + sys_corr_10: -1.63302416e+00 + sys_corr_11: -3.11038174e+01 + sys_corr_12: -5.23214032e+01 sys_corr_13: 2.50929088e+01 - sys_corr_14: 5.00393253e+00 - sys_corr_15: 1.54172162e+01 - sys_corr_16: -7.71572378e+00 - sys_corr_17: 5.41593506e+00 - sys_corr_18: -6.98197868e+00 - sys_corr_19: -5.62093495e+00 - sys_corr_20: 4.50370169e+00 - sys_corr_21: 1.05733781e+01 - sys_corr_22: 5.81564843e+01 - sys_corr_23: -2.91064171e+00 - sys_corr_24: 2.28044165e+01 - sys_corr_25: -1.48395265e+01 - sys_corr_26: -2.30290120e+01 + sys_corr_14: -5.00393253e+00 + sys_corr_15: -1.54172162e+01 + sys_corr_16: 7.71572378e+00 + sys_corr_17: -5.41593506e+00 + sys_corr_18: 6.98197868e+00 + sys_corr_19: 5.62093495e+00 + sys_corr_20: -4.50370169e+00 + sys_corr_21: -1.05733781e+01 + sys_corr_22: -5.81564843e+01 + sys_corr_23: 2.91064171e+00 + sys_corr_24: -2.28044165e+01 + sys_corr_25: 1.48395265e+01 + sys_corr_26: 2.30290120e+01 sys_corr_27: 5.05630002e+00 sys_corr_28: -7.35922621e+01 sys_corr_29: 1.01581114e+02 @@ -7274,100 +7274,100 @@ bins: sys_corr_36: -2.07652496e+01 sys_corr_37: 2.86294634e+00 sys_corr_38: -1.30892082e+00 - sys_corr_39: 1.05594401e+01 + sys_corr_39: -1.05594401e+01 sys_corr_40: 1.03024477e+01 sys_corr_41: -1.75811234e+01 - sys_corr_42: 3.44792756e+01 + sys_corr_42: -3.44792756e+01 sys_corr_43: -7.07468077e-02 - sys_corr_44: 1.12779758e+02 - sys_corr_45: 1.15076924e+01 - sys_corr_46: 1.71354280e+01 - sys_corr_47: -4.78389534e+01 - sys_corr_48: 3.84857095e+01 + sys_corr_44: -1.12779758e+02 + sys_corr_45: -1.15076924e+01 + sys_corr_46: -1.71354280e+01 + sys_corr_47: 4.78389534e+01 + sys_corr_48: -3.84857095e+01 sys_corr_49: 7.55307089e+01 - sys_corr_50: -3.61241764e+01 - sys_corr_51: 3.08303072e+00 - sys_corr_52: -5.78863383e+00 - sys_corr_53: -2.03515670e+01 - sys_corr_54: 4.31901394e+01 + sys_corr_50: 3.61241764e+01 + sys_corr_51: -3.08303072e+00 + sys_corr_52: 5.78863383e+00 + sys_corr_53: 2.03515670e+01 + sys_corr_54: -4.31901394e+01 sys_corr_55: -5.02083687e+00 sys_corr_56: -4.15139945e+01 - sys_corr_57: -4.45032878e+01 + sys_corr_57: 4.45032878e+01 sys_corr_58: 1.50677997e+02 - sys_corr_59: -1.84133811e+01 + sys_corr_59: 1.84133811e+01 sys_corr_60: -1.46886142e+02 sys_corr_61: -4.09519719e+01 sys_corr_62: -6.41911800e+00 - sys_corr_63: -4.06893772e+00 + sys_corr_63: 4.06893772e+00 sys_corr_64: 3.05964024e+00 sys_corr_65: -1.04552870e+01 - sys_corr_66: 9.49063561e+00 - sys_corr_67: -4.83883281e+00 - sys_corr_68: -1.93825147e+01 - sys_corr_69: -6.38487370e+01 - sys_corr_70: -3.39943919e+01 - sys_corr_71: -3.05307321e+01 - sys_corr_72: 1.12439815e+01 - sys_corr_73: 3.58040850e+01 - sys_corr_74: -4.52979456e+00 - sys_corr_75: 4.75792869e+00 + sys_corr_66: -9.49063561e+00 + sys_corr_67: 4.83883281e+00 + sys_corr_68: 1.93825147e+01 + sys_corr_69: 6.38487370e+01 + sys_corr_70: 3.39943919e+01 + sys_corr_71: 3.58040850e+01 + sys_corr_72: -1.12439815e+01 + sys_corr_73: 3.05307321e+01 + sys_corr_74: 4.52979456e+00 + sys_corr_75: -4.75792869e+00 sys_corr_76: 8.43399111e-01 sys_corr_77: 5.22007390e+00 - sys_corr_78: 1.33237831e+00 + sys_corr_78: 1.33132218e+00 sys_corr_79: -2.45666914e-01 - sys_corr_80: -1.33132218e+00 + sys_corr_80: -1.33237831e+00 sys_corr_81: 4.89066732e+00 - sys_corr_82: -1.18756179e+01 - sys_corr_83: 4.32667767e+00 + sys_corr_82: 4.32667767e+00 + sys_corr_83: 1.18756179e+01 sys_corr_84: -3.55739343e-01 - sys_corr_85: -1.21870963e+00 - sys_corr_86: -1.37021860e+00 + sys_corr_85: 1.21870963e+00 + sys_corr_86: 1.37021860e+00 sys_corr_87: 9.17528721e+00 sys_corr_88: -7.76382044e-01 - sys_corr_89: -4.53546013e-02 - sys_corr_90: -8.15694952e-01 + sys_corr_89: 4.53546013e-02 + sys_corr_90: 8.15694952e-01 sys_corr_91: 1.32323919e+00 - sys_corr_92: 7.55900097e-01 - sys_corr_93: -3.27457293e-01 + sys_corr_92: -7.55900097e-01 + sys_corr_93: -1.37592167e-01 sys_corr_94: 8.42150158e-01 - sys_corr_95: 1.37592167e-01 + sys_corr_95: 3.27457293e-01 sys_corr_96: 3.53603044e-01 sys_corr_97: 1.22266251e+00 sys_corr_98: 3.09872420e-01 sys_corr_99: 5.04111590e-01 - sys_corr_100: 1.52751315e-01 - sys_corr_101: -1.43539970e-01 - sys_corr_102: 3.68004269e-01 - sys_corr_103: 1.18667129e+00 - sys_corr_104: -9.03136688e-02 - sys_corr_105: 1.38561235e+00 - sys_corr_106: 9.02910547e-02 - sys_corr_107: 9.63782114e-02 - sys_corr_108: 5.14824641e-02 - sys_corr_109: -2.37175677e-02 - sys_corr_110: 1.69442626e-01 - sys_corr_111: -5.88397389e-02 - sys_corr_112: 3.60743532e-02 + sys_corr_100: -9.03136688e-02 + sys_corr_101: 1.18667129e+00 + sys_corr_102: -1.38561235e+00 + sys_corr_103: -3.68004269e-01 + sys_corr_104: -1.43539970e-01 + sys_corr_105: 1.52751315e-01 + sys_corr_106: -9.02910547e-02 + sys_corr_107: -9.63782114e-02 + sys_corr_108: 5.88397389e-02 + sys_corr_109: -5.14824641e-02 + sys_corr_110: 2.37175677e-02 + sys_corr_111: 1.69442626e-01 + sys_corr_112: -3.60743532e-02 sys_corr_113: 3.32086293e-02 sys_corr_114: -1.78110758e-03 - sys_corr_115: 1.25477035e-01 - sys_corr_116: -6.19074196e-02 + sys_corr_115: -1.25477035e-01 + sys_corr_116: 6.19074196e-02 sys_corr_117: 2.13063102e-02 - sys_corr_118: 4.96532910e-02 - sys_corr_119: -3.45155358e-03 + sys_corr_118: -4.96532910e-02 + sys_corr_119: 3.45155358e-03 sys_corr_120: 8.91307742e-03 sys_corr_121: 2.42508413e-04 sys_corr_122: 1.82499537e-02 - sys_corr_123: -6.74542631e-03 + sys_corr_123: 6.74542631e-03 sys_corr_124: 3.67220258e-02 - sys_corr_125: -2.89004165e-05 + sys_corr_125: 2.89004165e-05 sys_corr_126: 3.29300888e-03 - sys_corr_127: -4.07611870e-01 - sys_corr_128: -9.86347748e-03 - sys_corr_129: 1.83805964e-03 + sys_corr_127: 4.07611870e-01 + sys_corr_128: 9.86347748e-03 + sys_corr_129: -1.83805964e-03 sys_corr_130: -2.64410888e-03 - sys_corr_131: 1.38359226e-02 - sys_corr_132: 1.73881041e-02 + sys_corr_131: 1.73881041e-02 + sys_corr_132: -1.38359226e-02 stat: 0.0 luminosity: 2.43127148e+02 - sys_corr_1: 1.23446791e+02 @@ -7376,26 +7376,26 @@ bins: sys_corr_4: 2.55327980e+01 sys_corr_5: -5.77338949e+01 sys_corr_6: -7.92149874e+01 - sys_corr_7: 1.94532526e+01 - sys_corr_8: 2.43076073e+00 + sys_corr_7: -1.94532526e+01 + sys_corr_8: -2.43076073e+00 sys_corr_9: -2.98138000e+00 - sys_corr_10: 4.55135719e+00 - sys_corr_11: 3.01399460e+01 - sys_corr_12: 4.77559152e+01 + sys_corr_10: -4.55135719e+00 + sys_corr_11: -3.01399460e+01 + sys_corr_12: -4.77559152e+01 sys_corr_13: 3.06998544e+01 - sys_corr_14: 6.74989888e+00 - sys_corr_15: 1.87282938e+01 - sys_corr_16: -7.29840250e+00 - sys_corr_17: 7.80998305e+00 - sys_corr_18: -3.93917440e+00 - sys_corr_19: -4.83467874e+00 - sys_corr_20: 5.61652732e+00 - sys_corr_21: 1.17638499e+01 - sys_corr_22: 4.87189060e+01 - sys_corr_23: -3.30846787e+00 - sys_corr_24: 1.20492438e+01 - sys_corr_25: -1.07160936e+01 - sys_corr_26: -1.28910332e+01 + sys_corr_14: -6.74989888e+00 + sys_corr_15: -1.87282938e+01 + sys_corr_16: 7.29840250e+00 + sys_corr_17: -7.80998305e+00 + sys_corr_18: 3.93917440e+00 + sys_corr_19: 4.83467874e+00 + sys_corr_20: -5.61652732e+00 + sys_corr_21: -1.17638499e+01 + sys_corr_22: -4.87189060e+01 + sys_corr_23: 3.30846787e+00 + sys_corr_24: -1.20492438e+01 + sys_corr_25: 1.07160936e+01 + sys_corr_26: 1.28910332e+01 sys_corr_27: -9.93744342e-01 sys_corr_28: -6.39598021e+01 sys_corr_29: 8.97138447e+01 @@ -7408,100 +7408,100 @@ bins: sys_corr_36: -2.65435068e+01 sys_corr_37: -1.05236970e+01 sys_corr_38: -3.69753448e+00 - sys_corr_39: 1.96351749e+01 + sys_corr_39: -1.96351749e+01 sys_corr_40: 5.02533769e+00 sys_corr_41: -1.84590026e+01 - sys_corr_42: 3.08590724e+01 + sys_corr_42: -3.08590724e+01 sys_corr_43: 1.76688101e+00 - sys_corr_44: 8.44904439e+01 - sys_corr_45: 1.07435561e+01 - sys_corr_46: 7.57445988e+00 - sys_corr_47: -4.02697947e+01 - sys_corr_48: 2.51257999e+01 + sys_corr_44: -8.44904439e+01 + sys_corr_45: -1.07435561e+01 + sys_corr_46: -7.57445988e+00 + sys_corr_47: 4.02697947e+01 + sys_corr_48: -2.51257999e+01 sys_corr_49: 5.77661959e+01 - sys_corr_50: -3.91504987e+01 - sys_corr_51: 7.16246767e+00 - sys_corr_52: -3.06216079e-01 - sys_corr_53: -5.32561406e+00 - sys_corr_54: 2.39897815e+01 + sys_corr_50: 3.91504987e+01 + sys_corr_51: -7.16246767e+00 + sys_corr_52: 3.06216079e-01 + sys_corr_53: 5.32561406e+00 + sys_corr_54: -2.39897815e+01 sys_corr_55: -9.13434557e-01 sys_corr_56: -3.94849772e+00 - sys_corr_57: -1.75033880e+01 + sys_corr_57: 1.75033880e+01 sys_corr_58: -7.22541240e+01 - sys_corr_59: 1.47278724e+01 + sys_corr_59: -1.47278724e+01 sys_corr_60: 1.66053134e+02 sys_corr_61: 5.80127200e+01 sys_corr_62: -1.51543540e+01 - sys_corr_63: 1.21780941e+01 + sys_corr_63: -1.21780941e+01 sys_corr_64: 1.54630158e+01 sys_corr_65: 2.76691101e+01 - sys_corr_66: 3.01351280e+01 - sys_corr_67: -6.56244241e+00 - sys_corr_68: -4.17887379e+01 - sys_corr_69: -1.19135933e+02 - sys_corr_70: -4.77475275e+01 - sys_corr_71: -5.49362245e+01 - sys_corr_72: 2.76701797e+01 - sys_corr_73: 4.55520960e+01 - sys_corr_74: -5.57430938e+00 - sys_corr_75: 8.65861143e+00 + sys_corr_66: -3.01351280e+01 + sys_corr_67: 6.56244241e+00 + sys_corr_68: 4.17887379e+01 + sys_corr_69: 1.19135933e+02 + sys_corr_70: 4.77475275e+01 + sys_corr_71: 4.55520960e+01 + sys_corr_72: -2.76701797e+01 + sys_corr_73: 5.49362245e+01 + sys_corr_74: 5.57430938e+00 + sys_corr_75: -8.65861143e+00 sys_corr_76: 2.22877089e+00 sys_corr_77: 5.08222891e+00 - sys_corr_78: 6.42677642e+00 + sys_corr_78: 3.91832389e+00 sys_corr_79: 1.93510901e+00 - sys_corr_80: -3.91832389e+00 + sys_corr_80: -6.42677642e+00 sys_corr_81: 2.74920325e+00 - sys_corr_82: -6.23434273e+00 - sys_corr_83: 2.29771815e+00 + sys_corr_82: 2.29771815e+00 + sys_corr_83: 6.23434273e+00 sys_corr_84: -3.76016443e+00 - sys_corr_85: 8.30349940e-01 - sys_corr_86: -1.79668110e+00 + sys_corr_85: -8.30349940e-01 + sys_corr_86: 1.79668110e+00 sys_corr_87: 8.67695690e+00 sys_corr_88: 6.08819015e-01 - sys_corr_89: 4.59144990e-01 - sys_corr_90: 1.05756558e-03 + sys_corr_89: -4.59144990e-01 + sys_corr_90: -1.05756558e-03 sys_corr_91: 1.38897108e+00 - sys_corr_92: 3.17554764e+00 - sys_corr_93: 3.69936864e-01 + sys_corr_92: -3.17554764e+00 + sys_corr_93: 4.83177577e-01 sys_corr_94: 2.33303978e-01 - sys_corr_95: -4.83177577e-01 + sys_corr_95: -3.69936864e-01 sys_corr_96: 1.67706327e-01 sys_corr_97: 2.00918726e+00 sys_corr_98: 3.44135829e-01 sys_corr_99: 5.82529878e-01 - sys_corr_100: 4.10843040e-01 - sys_corr_101: -3.37675987e-01 - sys_corr_102: 6.86071076e-01 - sys_corr_103: 1.24953299e+00 - sys_corr_104: 5.58791844e-02 - sys_corr_105: 1.47374473e+00 - sys_corr_106: 5.01480419e-02 - sys_corr_107: -1.25993565e-01 - sys_corr_108: -1.33811447e-01 - sys_corr_109: 1.51714069e-01 - sys_corr_110: 2.14177322e-01 - sys_corr_111: -2.73666724e-01 - sys_corr_112: 6.50271237e-02 + sys_corr_100: 5.58791844e-02 + sys_corr_101: 1.24953299e+00 + sys_corr_102: -1.47374473e+00 + sys_corr_103: -6.86071076e-01 + sys_corr_104: -3.37675987e-01 + sys_corr_105: 4.10843040e-01 + sys_corr_106: -5.01480419e-02 + sys_corr_107: 1.25993565e-01 + sys_corr_108: 2.73666724e-01 + sys_corr_109: 1.33811447e-01 + sys_corr_110: -1.51714069e-01 + sys_corr_111: 2.14177322e-01 + sys_corr_112: -6.50271237e-02 sys_corr_113: 1.39786255e-01 sys_corr_114: -1.59884407e-03 - sys_corr_115: 7.77278136e-02 - sys_corr_116: -2.39131481e-02 + sys_corr_115: -7.77278136e-02 + sys_corr_116: 2.39131481e-02 sys_corr_117: 2.62374027e-02 - sys_corr_118: 1.71431302e-02 - sys_corr_119: -3.23604251e-03 + sys_corr_118: -1.71431302e-02 + sys_corr_119: 3.23604251e-03 sys_corr_120: 2.30437030e-02 sys_corr_121: -2.31990343e-03 sys_corr_122: -8.63348961e-03 - sys_corr_123: -1.12390715e-03 + sys_corr_123: 1.12390715e-03 sys_corr_124: 5.81836799e-03 - sys_corr_125: 3.93597525e-03 + sys_corr_125: -3.93597525e-03 sys_corr_126: 1.17225744e-02 - sys_corr_127: -3.10552598e-01 - sys_corr_128: 3.99178841e-03 - sys_corr_129: -4.91573916e-03 + sys_corr_127: 3.10552598e-01 + sys_corr_128: -3.99178841e-03 + sys_corr_129: 4.91573916e-03 sys_corr_130: -1.30177297e-03 - sys_corr_131: 3.61575232e-03 - sys_corr_132: 2.35320773e-03 + sys_corr_131: 2.35320773e-03 + sys_corr_132: -3.61575232e-03 stat: 0.0 luminosity: 2.49604938e+02 - sys_corr_1: 1.09465829e+02 @@ -7510,26 +7510,26 @@ bins: sys_corr_4: 1.13022343e+01 sys_corr_5: -5.55788451e+01 sys_corr_6: -5.21462326e+01 - sys_corr_7: 1.81679754e+01 - sys_corr_8: 1.01522297e+01 + sys_corr_7: -1.81679754e+01 + sys_corr_8: -1.01522297e+01 sys_corr_9: -2.96299963e+00 - sys_corr_10: 6.44384255e+00 - sys_corr_11: 2.62415641e+01 - sys_corr_12: 4.01511004e+01 + sys_corr_10: -6.44384255e+00 + sys_corr_11: -2.62415641e+01 + sys_corr_12: -4.01511004e+01 sys_corr_13: 2.90304610e+01 - sys_corr_14: 2.60390168e+00 - sys_corr_15: 4.50405592e+00 - sys_corr_16: -6.52645622e+00 - sys_corr_17: 2.02296551e+00 - sys_corr_18: -8.25809749e+00 - sys_corr_19: -7.57243819e+00 - sys_corr_20: 2.87247375e+00 - sys_corr_21: 1.06438004e+01 - sys_corr_22: 2.53291112e+01 - sys_corr_23: -2.53961333e+00 - sys_corr_24: 2.64953424e+01 - sys_corr_25: 2.37194784e+00 - sys_corr_26: 1.47764236e+01 + sys_corr_14: -2.60390168e+00 + sys_corr_15: -4.50405592e+00 + sys_corr_16: 6.52645622e+00 + sys_corr_17: -2.02296551e+00 + sys_corr_18: 8.25809749e+00 + sys_corr_19: 7.57243819e+00 + sys_corr_20: -2.87247375e+00 + sys_corr_21: -1.06438004e+01 + sys_corr_22: -2.53291112e+01 + sys_corr_23: 2.53961333e+00 + sys_corr_24: -2.64953424e+01 + sys_corr_25: -2.37194784e+00 + sys_corr_26: -1.47764236e+01 sys_corr_27: -2.54089203e+00 sys_corr_28: -8.25101247e+01 sys_corr_29: 1.13568441e+02 @@ -7542,100 +7542,100 @@ bins: sys_corr_36: -2.22273341e+02 sys_corr_37: 1.95667923e+02 sys_corr_38: -1.43611467e+01 - sys_corr_39: -9.73176461e+01 + sys_corr_39: 9.73176461e+01 sys_corr_40: -2.88504809e+01 sys_corr_41: 3.45793374e+01 - sys_corr_42: -6.31671309e+01 + sys_corr_42: 6.31671309e+01 sys_corr_43: -3.98302118e+00 - sys_corr_44: -8.39928676e+01 - sys_corr_45: -1.46885936e+01 - sys_corr_46: -1.20446645e+01 - sys_corr_47: 3.17848310e+01 - sys_corr_48: -1.08097101e+01 + sys_corr_44: 8.39928676e+01 + sys_corr_45: 1.46885936e+01 + sys_corr_46: 1.20446645e+01 + sys_corr_47: -3.17848310e+01 + sys_corr_48: 1.08097101e+01 sys_corr_49: -2.71435900e+01 - sys_corr_50: 1.63149063e+01 - sys_corr_51: -1.00437731e+01 - sys_corr_52: -1.34879189e+00 - sys_corr_53: 4.87880443e+00 - sys_corr_54: -3.88822540e+00 + sys_corr_50: -1.63149063e+01 + sys_corr_51: 1.00437731e+01 + sys_corr_52: 1.34879189e+00 + sys_corr_53: -4.87880443e+00 + sys_corr_54: 3.88822540e+00 sys_corr_55: 3.71884339e+00 sys_corr_56: 3.19927304e+00 - sys_corr_57: -2.05473045e+00 + sys_corr_57: 2.05473045e+00 sys_corr_58: 2.32425066e+00 - sys_corr_59: -9.95283287e-01 + sys_corr_59: 9.95283287e-01 sys_corr_60: -2.26560792e+00 sys_corr_61: -2.11668673e-01 sys_corr_62: -3.13708040e+00 - sys_corr_63: 1.09660360e+00 + sys_corr_63: -1.09660360e+00 sys_corr_64: 1.07263979e+00 sys_corr_65: 1.01158594e+00 - sys_corr_66: 4.56425596e+00 - sys_corr_67: -2.48663003e+00 - sys_corr_68: -5.53703229e+00 - sys_corr_69: -6.88035752e+00 - sys_corr_70: -4.12150774e+00 - sys_corr_71: -3.26529854e+00 - sys_corr_72: 1.44441883e+00 - sys_corr_73: 5.81235162e+00 - sys_corr_74: 4.41699821e-01 - sys_corr_75: 6.05493566e-01 + sys_corr_66: -4.56425596e+00 + sys_corr_67: 2.48663003e+00 + sys_corr_68: 5.53703229e+00 + sys_corr_69: 6.88035752e+00 + sys_corr_70: 4.12150774e+00 + sys_corr_71: 5.81235162e+00 + sys_corr_72: -1.44441883e+00 + sys_corr_73: 3.26529854e+00 + sys_corr_74: -4.41699821e-01 + sys_corr_75: -6.05493566e-01 sys_corr_76: -7.37682987e-01 sys_corr_77: 1.29278295e+00 - sys_corr_78: -8.87699364e-02 + sys_corr_78: 6.80326901e-01 sys_corr_79: 6.19453025e-03 - sys_corr_80: -6.80326901e-01 + sys_corr_80: 8.87699364e-02 sys_corr_81: 5.39643529e-01 - sys_corr_82: -2.41308901e+00 - sys_corr_83: 1.90127066e-01 + sys_corr_82: 1.90127066e-01 + sys_corr_83: 2.41308901e+00 sys_corr_84: -1.20968533e+00 - sys_corr_85: -1.60630710e+00 - sys_corr_86: -4.79531311e-01 + sys_corr_85: 1.60630710e+00 + sys_corr_86: 4.79531311e-01 sys_corr_87: 9.46108403e-01 sys_corr_88: 3.20650823e-01 - sys_corr_89: 6.90923099e-02 - sys_corr_90: 6.50376184e-01 + sys_corr_89: -6.90923099e-02 + sys_corr_90: -6.50376184e-01 sys_corr_91: 7.34386958e-02 - sys_corr_92: 1.74583662e-01 - sys_corr_93: -1.23486677e-01 + sys_corr_92: -1.74583662e-01 + sys_corr_93: 4.42489164e-01 sys_corr_94: -1.17857007e-01 - sys_corr_95: -4.42489164e-01 + sys_corr_95: 1.23486677e-01 sys_corr_96: 7.32601742e-02 sys_corr_97: 4.33631956e-01 sys_corr_98: 2.12437877e-01 sys_corr_99: 1.73171262e-01 - sys_corr_100: 4.07683658e-02 - sys_corr_101: 4.85700482e-02 - sys_corr_102: -4.60841590e-03 - sys_corr_103: 1.03185356e+00 - sys_corr_104: 1.77177248e-01 - sys_corr_105: 5.44648057e-01 - sys_corr_106: 3.22194578e-02 - sys_corr_107: -1.02277381e-01 - sys_corr_108: -1.21015343e-01 - sys_corr_109: 7.05496925e-02 - sys_corr_110: 2.09751851e-02 - sys_corr_111: -2.69931162e-01 - sys_corr_112: 1.57637704e-02 + sys_corr_100: 1.77177248e-01 + sys_corr_101: 1.03185356e+00 + sys_corr_102: -5.44648057e-01 + sys_corr_103: 4.60841590e-03 + sys_corr_104: 4.85700482e-02 + sys_corr_105: 4.07683658e-02 + sys_corr_106: -3.22194578e-02 + sys_corr_107: 1.02277381e-01 + sys_corr_108: 2.69931162e-01 + sys_corr_109: 1.21015343e-01 + sys_corr_110: -7.05496925e-02 + sys_corr_111: 2.09751851e-02 + sys_corr_112: -1.57637704e-02 sys_corr_113: 1.51130478e-02 sys_corr_114: -9.59216893e-04 - sys_corr_115: -1.96027420e-03 - sys_corr_116: -1.96048944e-02 + sys_corr_115: 1.96027420e-03 + sys_corr_116: 1.96048944e-02 sys_corr_117: 7.92889467e-03 - sys_corr_118: -1.07385297e-02 - sys_corr_119: -1.45633599e-03 + sys_corr_118: 1.07385297e-02 + sys_corr_119: 1.45633599e-03 sys_corr_120: 8.65021179e-03 sys_corr_121: 8.61139737e-04 sys_corr_122: 1.33852022e-02 - sys_corr_123: -6.92976116e-03 + sys_corr_123: 6.92976116e-03 sys_corr_124: 4.40512573e-03 - sys_corr_125: -8.90045844e-04 + sys_corr_125: 8.90045844e-04 sys_corr_126: 3.98736958e-03 - sys_corr_127: -1.35366474e-01 - sys_corr_128: 2.24029300e-02 - sys_corr_129: 1.07149970e-02 + sys_corr_127: 1.35366474e-01 + sys_corr_128: -2.24029300e-02 + sys_corr_129: -1.07149970e-02 sys_corr_130: -1.20054682e-03 - sys_corr_131: -5.81558272e-03 - sys_corr_132: 2.20912586e-03 + sys_corr_131: 2.20912586e-03 + sys_corr_132: 5.81558272e-03 stat: 0.0 luminosity: 2.34780832e+02 - sys_corr_1: 1.26803089e+02 @@ -7644,26 +7644,26 @@ bins: sys_corr_4: 9.61561475e+00 sys_corr_5: -5.63275033e+01 sys_corr_6: -8.33578499e+01 - sys_corr_7: 1.97864513e+01 - sys_corr_8: 1.10497648e+01 + sys_corr_7: -1.97864513e+01 + sys_corr_8: -1.10497648e+01 sys_corr_9: -7.08433093e+00 - sys_corr_10: 3.59288012e+00 - sys_corr_11: 2.88084115e+01 - sys_corr_12: 4.96412508e+01 + sys_corr_10: -3.59288012e+00 + sys_corr_11: -2.88084115e+01 + sys_corr_12: -4.96412508e+01 sys_corr_13: 2.98132715e+01 - sys_corr_14: 6.62063560e+00 - sys_corr_15: 2.16005850e+01 - sys_corr_16: -1.78793447e+01 - sys_corr_17: 3.44526506e+00 - sys_corr_18: -8.00472653e+00 - sys_corr_19: -6.95353276e+00 - sys_corr_20: 4.29297502e+00 - sys_corr_21: 4.80804108e+00 - sys_corr_22: 1.89784634e+01 - sys_corr_23: -6.43715242e+00 - sys_corr_24: 3.28052113e+01 - sys_corr_25: 1.89807490e+00 - sys_corr_26: 1.15849977e+01 + sys_corr_14: -6.62063560e+00 + sys_corr_15: -2.16005850e+01 + sys_corr_16: 1.78793447e+01 + sys_corr_17: -3.44526506e+00 + sys_corr_18: 8.00472653e+00 + sys_corr_19: 6.95353276e+00 + sys_corr_20: -4.29297502e+00 + sys_corr_21: -4.80804108e+00 + sys_corr_22: -1.89784634e+01 + sys_corr_23: 6.43715242e+00 + sys_corr_24: -3.28052113e+01 + sys_corr_25: -1.89807490e+00 + sys_corr_26: -1.15849977e+01 sys_corr_27: -8.08762814e+00 sys_corr_28: -5.62345731e+01 sys_corr_29: 8.03666333e+01 @@ -7676,100 +7676,100 @@ bins: sys_corr_36: -1.08854014e+01 sys_corr_37: 9.85345159e-01 sys_corr_38: 3.47067643e-02 - sys_corr_39: -6.57106587e-01 + sys_corr_39: 6.57106587e-01 sys_corr_40: 4.60776035e+00 sys_corr_41: -3.10673989e+00 - sys_corr_42: 2.04601612e+01 + sys_corr_42: -2.04601612e+01 sys_corr_43: 8.21924846e+00 - sys_corr_44: 5.76998356e+01 - sys_corr_45: 4.26437741e+00 - sys_corr_46: 3.13596665e-01 - sys_corr_47: -2.48448584e+01 - sys_corr_48: 1.83452403e+01 + sys_corr_44: -5.76998356e+01 + sys_corr_45: -4.26437741e+00 + sys_corr_46: -3.13596665e-01 + sys_corr_47: 2.48448584e+01 + sys_corr_48: -1.83452403e+01 sys_corr_49: 2.94535209e+01 - sys_corr_50: -2.65820619e+01 - sys_corr_51: 8.37867268e+00 - sys_corr_52: -1.38801028e+00 - sys_corr_53: -5.67697466e+00 - sys_corr_54: 3.69463718e+00 + sys_corr_50: 2.65820619e+01 + sys_corr_51: -8.37867268e+00 + sys_corr_52: 1.38801028e+00 + sys_corr_53: 5.67697466e+00 + sys_corr_54: -3.69463718e+00 sys_corr_55: -6.07151892e+00 sys_corr_56: -4.06428881e+00 - sys_corr_57: 1.08008860e+01 + sys_corr_57: -1.08008860e+01 sys_corr_58: -1.55335835e+01 - sys_corr_59: 7.56053751e-01 + sys_corr_59: -7.56053751e-01 sys_corr_60: 1.62818317e+01 sys_corr_61: -3.77758679e-01 sys_corr_62: 2.35660893e+00 - sys_corr_63: -3.07211853e+00 + sys_corr_63: 3.07211853e+00 sys_corr_64: -6.94550386e+00 sys_corr_65: 1.06857786e+00 - sys_corr_66: -3.78782421e+01 - sys_corr_67: 1.75850276e+01 - sys_corr_68: 3.91550145e+01 - sys_corr_69: 5.03827719e+01 - sys_corr_70: 2.72728868e+01 - sys_corr_71: 1.20202337e+01 - sys_corr_72: 1.35376550e+00 - sys_corr_73: -3.42970265e+01 - sys_corr_74: -7.32788155e+00 - sys_corr_75: 7.56927409e+01 + sys_corr_66: 3.78782421e+01 + sys_corr_67: -1.75850276e+01 + sys_corr_68: -3.91550145e+01 + sys_corr_69: -5.03827719e+01 + sys_corr_70: -2.72728868e+01 + sys_corr_71: -3.42970265e+01 + sys_corr_72: -1.35376550e+00 + sys_corr_73: -1.20202337e+01 + sys_corr_74: 7.32788155e+00 + sys_corr_75: -7.56927409e+01 sys_corr_76: -2.15571128e+01 sys_corr_77: 2.01186777e+01 - sys_corr_78: 3.34763414e+00 + sys_corr_78: 7.37896061e+00 sys_corr_79: 8.57482828e-01 - sys_corr_80: -7.37896061e+00 + sys_corr_80: -3.34763414e+00 sys_corr_81: 5.54155836e+01 - sys_corr_82: -3.41105572e+01 - sys_corr_83: 3.05183139e+01 + sys_corr_82: 3.05183139e+01 + sys_corr_83: 3.41105572e+01 sys_corr_84: -1.50789296e+00 - sys_corr_85: -8.15225177e+00 - sys_corr_86: 7.11732796e+01 + sys_corr_85: 8.15225177e+00 + sys_corr_86: -7.11732796e+01 sys_corr_87: -9.60746007e+01 sys_corr_88: -2.54213079e+01 - sys_corr_89: -3.67048427e-01 - sys_corr_90: 5.90312770e+00 + sys_corr_89: 3.67048427e-01 + sys_corr_90: -5.90312770e+00 sys_corr_91: 5.55796148e-01 - sys_corr_92: 1.40932033e+02 - sys_corr_93: -9.10244383e-01 + sys_corr_92: -1.40932033e+02 + sys_corr_93: 3.71944818e+00 sys_corr_94: -2.55578218e+00 - sys_corr_95: -3.71944818e+00 + sys_corr_95: 9.10244383e-01 sys_corr_96: 1.68911061e-02 sys_corr_97: 5.24511117e-01 sys_corr_98: 6.41731625e-01 sys_corr_99: 4.55797895e-01 - sys_corr_100: 3.07527640e-01 - sys_corr_101: -5.27289123e-02 - sys_corr_102: 5.87926348e-02 - sys_corr_103: 7.57153705e-01 - sys_corr_104: 7.05426374e-01 - sys_corr_105: 5.34085346e-01 - sys_corr_106: 7.23492662e-02 - sys_corr_107: -2.52065315e-01 - sys_corr_108: -2.82779827e-01 - sys_corr_109: 5.85657608e-01 - sys_corr_110: 6.80644042e-02 - sys_corr_111: -1.21285957e-01 - sys_corr_112: 2.85804399e-01 + sys_corr_100: 7.05426374e-01 + sys_corr_101: 7.57153705e-01 + sys_corr_102: -5.34085346e-01 + sys_corr_103: -5.87926348e-02 + sys_corr_104: -5.27289123e-02 + sys_corr_105: 3.07527640e-01 + sys_corr_106: -7.23492662e-02 + sys_corr_107: 2.52065315e-01 + sys_corr_108: 1.21285957e-01 + sys_corr_109: 2.82779827e-01 + sys_corr_110: -5.85657608e-01 + sys_corr_111: 6.80644042e-02 + sys_corr_112: -2.85804399e-01 sys_corr_113: 2.42941499e-01 sys_corr_114: -4.29550222e-03 - sys_corr_115: 1.65147989e-02 - sys_corr_116: -3.94695815e-02 + sys_corr_115: -1.65147989e-02 + sys_corr_116: 3.94695815e-02 sys_corr_117: 5.29517507e-02 - sys_corr_118: -3.53993930e-02 - sys_corr_119: -6.23277521e-03 + sys_corr_118: 3.53993930e-02 + sys_corr_119: 6.23277521e-03 sys_corr_120: 2.60763323e-02 sys_corr_121: 3.87072133e-03 sys_corr_122: 1.29548885e-02 - sys_corr_123: -1.46675922e-02 + sys_corr_123: 1.46675922e-02 sys_corr_124: 7.49116842e-02 - sys_corr_125: 9.15634590e-03 + sys_corr_125: -9.15634590e-03 sys_corr_126: 1.57602600e-02 - sys_corr_127: 9.00832691e-02 - sys_corr_128: -5.71480187e-02 - sys_corr_129: -4.67625099e-02 + sys_corr_127: -9.00832691e-02 + sys_corr_128: 5.71480187e-02 + sys_corr_129: 4.67625099e-02 sys_corr_130: 2.02100555e-03 - sys_corr_131: 3.15986116e-03 - sys_corr_132: -5.26284803e-02 + sys_corr_131: -5.26284803e-02 + sys_corr_132: -3.15986116e-03 stat: 0.0 luminosity: 2.57288790e+02 - sys_corr_1: 1.27116008e+02 @@ -7778,26 +7778,26 @@ bins: sys_corr_4: 1.34886289e+01 sys_corr_5: -3.96975050e+01 sys_corr_6: -9.78745793e+01 - sys_corr_7: 2.58077612e+01 - sys_corr_8: 6.82362849e+00 + sys_corr_7: -2.58077612e+01 + sys_corr_8: -6.82362849e+00 sys_corr_9: -1.09282446e+01 - sys_corr_10: 3.89299051e+00 - sys_corr_11: 2.62801898e+01 - sys_corr_12: 4.30548202e+01 + sys_corr_10: -3.89299051e+00 + sys_corr_11: -2.62801898e+01 + sys_corr_12: -4.30548202e+01 sys_corr_13: 2.07400333e+01 - sys_corr_14: 3.61506505e+00 - sys_corr_15: 9.41895847e+00 - sys_corr_16: -5.37723824e+00 - sys_corr_17: 1.48762845e+00 - sys_corr_18: 2.92817891e+00 - sys_corr_19: -6.10917338e+00 - sys_corr_20: -5.82901180e-01 - sys_corr_21: 4.96000843e+00 - sys_corr_22: -9.96666010e+00 - sys_corr_23: -6.74646106e+00 - sys_corr_24: 3.56058169e+01 - sys_corr_25: 7.32513106e+00 - sys_corr_26: 1.89537143e+01 + sys_corr_14: -3.61506505e+00 + sys_corr_15: -9.41895847e+00 + sys_corr_16: 5.37723824e+00 + sys_corr_17: -1.48762845e+00 + sys_corr_18: -2.92817891e+00 + sys_corr_19: 6.10917338e+00 + sys_corr_20: 5.82901180e-01 + sys_corr_21: -4.96000843e+00 + sys_corr_22: 9.96666010e+00 + sys_corr_23: 6.74646106e+00 + sys_corr_24: -3.56058169e+01 + sys_corr_25: -7.32513106e+00 + sys_corr_26: -1.89537143e+01 sys_corr_27: -9.74055292e+00 sys_corr_28: -4.44065012e+01 sys_corr_29: 6.51812319e+01 @@ -7810,100 +7810,100 @@ bins: sys_corr_36: -1.89354249e+01 sys_corr_37: -1.26409960e+00 sys_corr_38: -4.76048424e+00 - sys_corr_39: 1.48233451e+01 + sys_corr_39: -1.48233451e+01 sys_corr_40: 5.72858019e+00 sys_corr_41: -2.36355103e+00 - sys_corr_42: 1.82136113e+01 + sys_corr_42: -1.82136113e+01 sys_corr_43: 2.93263223e+00 - sys_corr_44: 4.03687978e+01 - sys_corr_45: 1.02239535e+01 - sys_corr_46: -5.59213217e+00 - sys_corr_47: -2.17819562e+01 - sys_corr_48: 8.19273124e+00 + sys_corr_44: -4.03687978e+01 + sys_corr_45: -1.02239535e+01 + sys_corr_46: 5.59213217e+00 + sys_corr_47: 2.17819562e+01 + sys_corr_48: -8.19273124e+00 sys_corr_49: 2.87617791e+01 - sys_corr_50: -2.84381374e+01 - sys_corr_51: 6.69336084e+00 - sys_corr_52: -3.53055228e+00 - sys_corr_53: -8.00670916e+00 - sys_corr_54: -2.29549210e+00 + sys_corr_50: 2.84381374e+01 + sys_corr_51: -6.69336084e+00 + sys_corr_52: 3.53055228e+00 + sys_corr_53: 8.00670916e+00 + sys_corr_54: 2.29549210e+00 sys_corr_55: -1.26920828e+01 sys_corr_56: -1.80465588e+00 - sys_corr_57: 1.41389947e+01 + sys_corr_57: -1.41389947e+01 sys_corr_58: -9.68902175e+00 - sys_corr_59: -1.14002982e+01 + sys_corr_59: 1.14002982e+01 sys_corr_60: 1.04399158e+01 sys_corr_61: 1.28777928e+01 sys_corr_62: -8.27034260e+00 - sys_corr_63: -9.82215453e+00 + sys_corr_63: 9.82215453e+00 sys_corr_64: -1.35308511e+01 sys_corr_65: 1.35858066e+00 - sys_corr_66: -2.01985583e+01 - sys_corr_67: 2.70111161e+01 - sys_corr_68: 6.85817918e+01 - sys_corr_69: 5.96753129e+01 - sys_corr_70: 3.70818372e+01 - sys_corr_71: -9.85942607e+01 - sys_corr_72: -6.97993923e+00 - sys_corr_73: -7.14029164e+01 - sys_corr_74: -8.12498483e+01 - sys_corr_75: 6.67784575e+01 + sys_corr_66: 2.01985583e+01 + sys_corr_67: -2.70111161e+01 + sys_corr_68: -6.85817918e+01 + sys_corr_69: -5.96753129e+01 + sys_corr_70: -3.70818372e+01 + sys_corr_71: -7.14029164e+01 + sys_corr_72: 6.97993923e+00 + sys_corr_73: 9.85942607e+01 + sys_corr_74: 8.12498483e+01 + sys_corr_75: -6.67784575e+01 sys_corr_76: 5.29585932e+01 sys_corr_77: 1.03651810e+01 - sys_corr_78: -8.21566016e+00 + sys_corr_78: 5.36688149e+00 sys_corr_79: -1.40929387e+01 - sys_corr_80: -5.36688149e+00 + sys_corr_80: 8.21566016e+00 sys_corr_81: 1.50678817e+01 - sys_corr_82: -1.71016472e+01 - sys_corr_83: -4.14152478e+00 + sys_corr_82: -4.14152478e+00 + sys_corr_83: 1.71016472e+01 sys_corr_84: -2.57342991e+00 - sys_corr_85: -2.59634786e+00 - sys_corr_86: -5.02968721e+01 + sys_corr_85: 2.59634786e+00 + sys_corr_86: 5.02968721e+01 sys_corr_87: -2.59439181e+01 sys_corr_88: 2.79758577e+01 - sys_corr_89: -8.77265547e-01 - sys_corr_90: 3.01577723e+00 + sys_corr_89: 8.77265547e-01 + sys_corr_90: -3.01577723e+00 sys_corr_91: -1.44831372e+00 - sys_corr_92: -1.21416507e+02 - sys_corr_93: -5.37246837e-01 + sys_corr_92: 1.21416507e+02 + sys_corr_93: 2.39070077e+00 sys_corr_94: -1.68704961e+00 - sys_corr_95: -2.39070077e+00 + sys_corr_95: 5.37246837e-01 sys_corr_96: 1.59460635e-01 sys_corr_97: -1.28455143e+00 sys_corr_98: -1.95439387e-01 sys_corr_99: -5.77890329e-01 - sys_corr_100: -2.00137205e-01 - sys_corr_101: 1.03231320e-01 - sys_corr_102: -5.31388319e-01 - sys_corr_103: 9.98475104e-01 - sys_corr_104: 4.24023421e-01 - sys_corr_105: 4.77055617e-02 - sys_corr_106: 1.96406346e-01 - sys_corr_107: 1.52439560e-01 - sys_corr_108: -4.25315718e-01 - sys_corr_109: 3.87442220e-01 - sys_corr_110: -7.23782625e-02 - sys_corr_111: 2.11591556e-01 - sys_corr_112: 2.17151292e-01 + sys_corr_100: 4.24023421e-01 + sys_corr_101: 9.98475104e-01 + sys_corr_102: -4.77055617e-02 + sys_corr_103: 5.31388319e-01 + sys_corr_104: 1.03231320e-01 + sys_corr_105: -2.00137205e-01 + sys_corr_106: -1.96406346e-01 + sys_corr_107: -1.52439560e-01 + sys_corr_108: -2.11591556e-01 + sys_corr_109: 4.25315718e-01 + sys_corr_110: -3.87442220e-01 + sys_corr_111: -7.23782625e-02 + sys_corr_112: -2.17151292e-01 sys_corr_113: 2.22766913e-01 sys_corr_114: -2.09568484e-03 - sys_corr_115: -4.64636075e-02 - sys_corr_116: -4.44755548e-02 + sys_corr_115: 4.64636075e-02 + sys_corr_116: 4.44755548e-02 sys_corr_117: 6.00284479e-02 - sys_corr_118: 2.44535570e-02 - sys_corr_119: 6.16594844e-03 + sys_corr_118: -2.44535570e-02 + sys_corr_119: -6.16594844e-03 sys_corr_120: 1.88759875e-02 sys_corr_121: -8.69349876e-04 sys_corr_122: -8.93747099e-05 - sys_corr_123: -1.66348366e-02 + sys_corr_123: 1.66348366e-02 sys_corr_124: 6.96037793e-02 - sys_corr_125: 5.45244864e-03 + sys_corr_125: -5.45244864e-03 sys_corr_126: 6.02103897e-03 - sys_corr_127: -1.06829219e-01 - sys_corr_128: -1.33400144e-01 - sys_corr_129: -9.88834917e-02 + sys_corr_127: 1.06829219e-01 + sys_corr_128: 1.33400144e-01 + sys_corr_129: 9.88834917e-02 sys_corr_130: -8.52363549e-03 - sys_corr_131: 2.26168305e-02 - sys_corr_132: -3.67675441e-02 + sys_corr_131: -3.67675441e-02 + sys_corr_132: -2.26168305e-02 stat: 0.0 luminosity: 2.52723416e+02 - sys_corr_1: 1.22664235e+02 @@ -7912,26 +7912,26 @@ bins: sys_corr_4: 9.48390025e-01 sys_corr_5: -1.74981207e+01 sys_corr_6: -1.04373389e+02 - sys_corr_7: 2.88540199e+01 - sys_corr_8: 1.05181338e+01 + sys_corr_7: -2.88540199e+01 + sys_corr_8: -1.05181338e+01 sys_corr_9: -1.46712530e+01 - sys_corr_10: -2.68701158e+00 - sys_corr_11: 2.53387670e+01 - sys_corr_12: 3.24623489e+01 + sys_corr_10: 2.68701158e+00 + sys_corr_11: -2.53387670e+01 + sys_corr_12: -3.24623489e+01 sys_corr_13: 2.63824612e+01 - sys_corr_14: 8.71511374e+00 - sys_corr_15: 9.35687576e+00 - sys_corr_16: -5.25047538e+00 - sys_corr_17: -2.53193016e+00 - sys_corr_18: -3.33943901e+00 - sys_corr_19: 1.12669307e+00 - sys_corr_20: -3.29213654e+00 - sys_corr_21: 3.16496259e+00 - sys_corr_22: -3.23926905e+01 - sys_corr_23: -8.26479556e+00 - sys_corr_24: 2.29124281e+01 - sys_corr_25: 8.97929253e+00 - sys_corr_26: 2.20653893e+01 + sys_corr_14: -8.71511374e+00 + sys_corr_15: -9.35687576e+00 + sys_corr_16: 5.25047538e+00 + sys_corr_17: 2.53193016e+00 + sys_corr_18: 3.33943901e+00 + sys_corr_19: -1.12669307e+00 + sys_corr_20: 3.29213654e+00 + sys_corr_21: -3.16496259e+00 + sys_corr_22: 3.23926905e+01 + sys_corr_23: 8.26479556e+00 + sys_corr_24: -2.29124281e+01 + sys_corr_25: -8.97929253e+00 + sys_corr_26: -2.20653893e+01 sys_corr_27: -1.39084652e+01 sys_corr_28: -3.08926813e+01 sys_corr_29: 4.99893053e+01 @@ -7944,100 +7944,100 @@ bins: sys_corr_36: -1.11780348e+01 sys_corr_37: 1.35985124e+01 sys_corr_38: 5.08090102e+00 - sys_corr_39: -1.03742060e+01 + sys_corr_39: 1.03742060e+01 sys_corr_40: 2.53463206e+01 sys_corr_41: -3.64412382e+00 - sys_corr_42: 5.19412220e+01 + sys_corr_42: -5.19412220e+01 sys_corr_43: 1.84248204e+01 - sys_corr_44: 5.65392181e+01 - sys_corr_45: -1.10138422e+00 - sys_corr_46: -1.31657045e+01 - sys_corr_47: -1.61335671e+01 - sys_corr_48: 4.11338283e+01 + sys_corr_44: -5.65392181e+01 + sys_corr_45: 1.10138422e+00 + sys_corr_46: 1.31657045e+01 + sys_corr_47: 1.61335671e+01 + sys_corr_48: -4.11338283e+01 sys_corr_49: 1.39776566e+01 - sys_corr_50: -2.67508292e+00 - sys_corr_51: 8.42617400e-01 - sys_corr_52: -1.19112956e+01 - sys_corr_53: -1.68843962e+01 - sys_corr_54: -6.09958728e+01 + sys_corr_50: 2.67508292e+00 + sys_corr_51: -8.42617400e-01 + sys_corr_52: 1.19112956e+01 + sys_corr_53: 1.68843962e+01 + sys_corr_54: 6.09958728e+01 sys_corr_55: 1.74235537e+01 sys_corr_56: 3.55171296e+01 - sys_corr_57: 1.54656798e+02 + sys_corr_57: -1.54656798e+02 sys_corr_58: -1.27979406e+02 - sys_corr_59: 9.37207483e+01 + sys_corr_59: -9.37207483e+01 sys_corr_60: -1.16801347e+02 sys_corr_61: -1.06982511e+00 sys_corr_62: 7.08124324e+01 - sys_corr_63: -2.08559464e+01 + sys_corr_63: 2.08559464e+01 sys_corr_64: 1.46057602e+01 sys_corr_65: 4.31122770e+00 - sys_corr_66: 6.61654920e+00 - sys_corr_67: -2.60220146e+01 - sys_corr_68: -1.44721518e+01 - sys_corr_69: -3.30367304e+01 - sys_corr_70: -1.38537545e+01 - sys_corr_71: 6.50409695e+00 - sys_corr_72: 8.55850033e+00 - sys_corr_73: 1.02467389e+01 - sys_corr_74: 1.40256063e+00 - sys_corr_75: -1.82454568e+01 + sys_corr_66: -6.61654920e+00 + sys_corr_67: 2.60220146e+01 + sys_corr_68: 1.44721518e+01 + sys_corr_69: 3.30367304e+01 + sys_corr_70: 1.38537545e+01 + sys_corr_71: 1.02467389e+01 + sys_corr_72: -8.55850033e+00 + sys_corr_73: -6.50409695e+00 + sys_corr_74: -1.40256063e+00 + sys_corr_75: 1.82454568e+01 sys_corr_76: 6.62389552e+00 sys_corr_77: 2.00838986e+01 - sys_corr_78: -1.25071532e+01 + sys_corr_78: 3.46567196e+00 sys_corr_79: 1.46481001e+00 - sys_corr_80: -3.46567196e+00 + sys_corr_80: 1.25071532e+01 sys_corr_81: -1.51612475e+00 - sys_corr_82: -9.95002635e-01 - sys_corr_83: -7.82021607e-01 + sys_corr_82: -7.82021607e-01 + sys_corr_83: 9.95002635e-01 sys_corr_84: -4.46762450e+00 - sys_corr_85: 8.68495273e-01 - sys_corr_86: 2.37039122e+00 + sys_corr_85: -8.68495273e-01 + sys_corr_86: -2.37039122e+00 sys_corr_87: 7.02949257e-01 sys_corr_88: -5.08634690e+00 - sys_corr_89: -1.54354757e+00 - sys_corr_90: -8.43331579e-01 + sys_corr_89: 1.54354757e+00 + sys_corr_90: 8.43331579e-01 sys_corr_91: -3.18459514e-01 - sys_corr_92: -1.31662301e+01 - sys_corr_93: -1.80854841e-02 + sys_corr_92: 1.31662301e+01 + sys_corr_93: 8.90727179e-01 sys_corr_94: 1.50669456e-01 - sys_corr_95: -8.90727179e-01 + sys_corr_95: 1.80854841e-02 sys_corr_96: 1.28075439e-01 sys_corr_97: -5.42037820e-01 sys_corr_98: -2.05062984e-01 sys_corr_99: -3.90012636e-02 - sys_corr_100: -2.48386191e-01 - sys_corr_101: 2.86129888e-01 - sys_corr_102: -6.67658839e-01 - sys_corr_103: 5.07491552e-01 - sys_corr_104: 5.18000938e-01 - sys_corr_105: 5.55419799e-01 - sys_corr_106: 3.15493210e-01 - sys_corr_107: 1.53447595e-01 - sys_corr_108: -1.91324489e-01 - sys_corr_109: -7.43931290e-02 - sys_corr_110: -1.02304360e-01 - sys_corr_111: -8.01932465e-04 - sys_corr_112: 8.41950011e-02 + sys_corr_100: 5.18000938e-01 + sys_corr_101: 5.07491552e-01 + sys_corr_102: -5.55419799e-01 + sys_corr_103: 6.67658839e-01 + sys_corr_104: 2.86129888e-01 + sys_corr_105: -2.48386191e-01 + sys_corr_106: -3.15493210e-01 + sys_corr_107: -1.53447595e-01 + sys_corr_108: 8.01932465e-04 + sys_corr_109: 1.91324489e-01 + sys_corr_110: 7.43931290e-02 + sys_corr_111: -1.02304360e-01 + sys_corr_112: -8.41950011e-02 sys_corr_113: 1.01451853e-01 sys_corr_114: -1.14029876e-03 - sys_corr_115: 1.29277615e-02 - sys_corr_116: -2.97255441e-02 + sys_corr_115: -1.29277615e-02 + sys_corr_116: 2.97255441e-02 sys_corr_117: 3.21294448e-02 - sys_corr_118: 6.98683056e-02 - sys_corr_119: 7.48851328e-03 + sys_corr_118: -6.98683056e-02 + sys_corr_119: -7.48851328e-03 sys_corr_120: 1.74425967e-02 sys_corr_121: -4.36857071e-04 sys_corr_122: -5.39945620e-03 - sys_corr_123: -1.53270925e-03 + sys_corr_123: 1.53270925e-03 sys_corr_124: 3.16287737e-02 - sys_corr_125: 3.88916267e-03 + sys_corr_125: -3.88916267e-03 sys_corr_126: 1.35551723e-03 - sys_corr_127: -4.14732416e-01 - sys_corr_128: -1.27162896e-01 - sys_corr_129: -6.43118557e-02 + sys_corr_127: 4.14732416e-01 + sys_corr_128: 1.27162896e-01 + sys_corr_129: 6.43118557e-02 sys_corr_130: -4.75118618e-03 - sys_corr_131: 1.12953341e-02 - sys_corr_132: -1.60325370e-02 + sys_corr_131: -1.60325370e-02 + sys_corr_132: -1.12953341e-02 stat: 0.0 luminosity: 2.47644386e+02 - sys_corr_1: 1.24387509e+02 @@ -8046,26 +8046,26 @@ bins: sys_corr_4: -1.03599219e+01 sys_corr_5: 6.18857440e+00 sys_corr_6: -1.31181984e+02 - sys_corr_7: 2.91078441e+01 - sys_corr_8: 1.35691604e+01 + sys_corr_7: -2.91078441e+01 + sys_corr_8: -1.35691604e+01 sys_corr_9: -1.34261637e+01 - sys_corr_10: 3.30514850e+00 - sys_corr_11: 1.15502289e+01 - sys_corr_12: 2.93456901e+01 + sys_corr_10: -3.30514850e+00 + sys_corr_11: -1.15502289e+01 + sys_corr_12: -2.93456901e+01 sys_corr_13: 1.74987424e+01 - sys_corr_14: 7.86426047e+00 - sys_corr_15: 5.51132073e+00 - sys_corr_16: -3.86036699e+00 - sys_corr_17: -2.29820679e+00 - sys_corr_18: 2.69865789e+00 - sys_corr_19: -3.63650621e+00 - sys_corr_20: 8.99348532e-01 - sys_corr_21: -7.11997433e+00 - sys_corr_22: -2.68629519e+01 - sys_corr_23: -6.47037190e+00 - sys_corr_24: 1.46235026e+01 - sys_corr_25: 8.20200199e+00 - sys_corr_26: 1.75764368e+01 + sys_corr_14: -7.86426047e+00 + sys_corr_15: -5.51132073e+00 + sys_corr_16: 3.86036699e+00 + sys_corr_17: 2.29820679e+00 + sys_corr_18: -2.69865789e+00 + sys_corr_19: 3.63650621e+00 + sys_corr_20: -8.99348532e-01 + sys_corr_21: 7.11997433e+00 + sys_corr_22: 2.68629519e+01 + sys_corr_23: 6.47037190e+00 + sys_corr_24: -1.46235026e+01 + sys_corr_25: -8.20200199e+00 + sys_corr_26: -1.75764368e+01 sys_corr_27: -1.36067718e+01 sys_corr_28: -1.84209775e+01 sys_corr_29: 3.37482526e+01 @@ -8078,100 +8078,100 @@ bins: sys_corr_36: -1.70279769e+01 sys_corr_37: 1.54633910e+01 sys_corr_38: -4.10855397e+00 - sys_corr_39: -5.36021892e-01 + sys_corr_39: 5.36021892e-01 sys_corr_40: 2.69774700e+00 sys_corr_41: 1.75479582e+00 - sys_corr_42: 2.10880852e+01 + sys_corr_42: -2.10880852e+01 sys_corr_43: -8.56537440e-01 - sys_corr_44: 2.55043346e+01 - sys_corr_45: 9.11348833e+00 - sys_corr_46: -2.04404018e+00 - sys_corr_47: -1.71450662e+01 - sys_corr_48: 2.12671985e+01 + sys_corr_44: -2.55043346e+01 + sys_corr_45: -9.11348833e+00 + sys_corr_46: 2.04404018e+00 + sys_corr_47: 1.71450662e+01 + sys_corr_48: -2.12671985e+01 sys_corr_49: 2.37430930e+01 - sys_corr_50: -1.38761671e+01 - sys_corr_51: 8.98932699e+00 - sys_corr_52: -2.07634114e+01 - sys_corr_53: -2.36183755e+00 - sys_corr_54: -1.76606420e+01 + sys_corr_50: 1.38761671e+01 + sys_corr_51: -8.98932699e+00 + sys_corr_52: 2.07634114e+01 + sys_corr_53: 2.36183755e+00 + sys_corr_54: 1.76606420e+01 sys_corr_55: -2.54363305e-01 sys_corr_56: 1.54116306e+01 - sys_corr_57: 6.40318600e+00 + sys_corr_57: -6.40318600e+00 sys_corr_58: 1.36897983e+00 - sys_corr_59: -1.57496200e+01 + sys_corr_59: 1.57496200e+01 sys_corr_60: 9.37917498e+00 sys_corr_61: 4.05072076e+00 sys_corr_62: -2.61864277e+01 - sys_corr_63: 6.63948614e+00 + sys_corr_63: -6.63948614e+00 sys_corr_64: -1.05074745e+01 sys_corr_65: 7.36135479e+00 - sys_corr_66: -2.59253678e+01 - sys_corr_67: 3.02593408e+01 - sys_corr_68: -8.40893671e+00 - sys_corr_69: 3.27428535e+01 - sys_corr_70: 1.89177108e+01 - sys_corr_71: -5.87402730e+01 - sys_corr_72: -1.97313812e+01 - sys_corr_73: -2.64080111e+01 - sys_corr_74: 1.65771036e+01 - sys_corr_75: -4.02004350e-01 + sys_corr_66: 2.59253678e+01 + sys_corr_67: -3.02593408e+01 + sys_corr_68: 8.40893671e+00 + sys_corr_69: -3.27428535e+01 + sys_corr_70: -1.89177108e+01 + sys_corr_71: -2.64080111e+01 + sys_corr_72: 1.97313812e+01 + sys_corr_73: 5.87402730e+01 + sys_corr_74: -1.65771036e+01 + sys_corr_75: 4.02004350e-01 sys_corr_76: -8.38060099e+00 sys_corr_77: -1.40348820e+01 - sys_corr_78: -1.31736267e+02 + sys_corr_78: -3.28755457e+01 sys_corr_79: 1.18526072e+01 - sys_corr_80: 3.28755457e+01 + sys_corr_80: 1.31736267e+02 sys_corr_81: -1.15998072e+02 - sys_corr_82: 1.02038268e+01 - sys_corr_83: -2.04518575e+01 + sys_corr_82: -2.04518575e+01 + sys_corr_83: -1.02038268e+01 sys_corr_84: 1.99824298e+01 - sys_corr_85: -1.18952689e+01 - sys_corr_86: 3.48986723e+01 + sys_corr_85: 1.18952689e+01 + sys_corr_86: -3.48986723e+01 sys_corr_87: 6.22857618e+01 sys_corr_88: -7.35028892e+00 - sys_corr_89: 1.07188362e+00 - sys_corr_90: -3.77077414e+00 + sys_corr_89: -1.07188362e+00 + sys_corr_90: 3.77077414e+00 sys_corr_91: 2.01776011e+00 - sys_corr_92: 5.19784407e+01 - sys_corr_93: -7.74105495e-02 + sys_corr_92: -5.19784407e+01 + sys_corr_93: -3.09049021e+00 sys_corr_94: 5.66154489e-01 - sys_corr_95: 3.09049021e+00 + sys_corr_95: 7.74105495e-02 sys_corr_96: -7.81530315e-01 sys_corr_97: -6.54284814e+00 sys_corr_98: -1.90428479e+00 sys_corr_99: -2.01421046e+00 - sys_corr_100: 1.30474745e+00 - sys_corr_101: -1.98744194e+00 - sys_corr_102: 4.95997532e+00 - sys_corr_103: -2.11239339e+01 - sys_corr_104: -3.86941587e+00 - sys_corr_105: -1.00455981e+01 - sys_corr_106: -1.75135885e+00 - sys_corr_107: -5.09160496e-01 - sys_corr_108: -6.86626176e-02 - sys_corr_109: -5.42085243e-02 - sys_corr_110: 6.31769750e-02 - sys_corr_111: 3.16182427e+00 - sys_corr_112: 1.64222744e-01 + sys_corr_100: -3.86941587e+00 + sys_corr_101: -2.11239339e+01 + sys_corr_102: 1.00455981e+01 + sys_corr_103: -4.95997532e+00 + sys_corr_104: -1.98744194e+00 + sys_corr_105: 1.30474745e+00 + sys_corr_106: 1.75135885e+00 + sys_corr_107: 5.09160496e-01 + sys_corr_108: -3.16182427e+00 + sys_corr_109: 6.86626176e-02 + sys_corr_110: 5.42085243e-02 + sys_corr_111: 6.31769750e-02 + sys_corr_112: -1.64222744e-01 sys_corr_113: 1.86402632e-01 sys_corr_114: 1.34716772e-04 - sys_corr_115: 1.40371255e-01 - sys_corr_116: -8.29813774e-02 + sys_corr_115: -1.40371255e-01 + sys_corr_116: 8.29813774e-02 sys_corr_117: 8.14869577e-02 - sys_corr_118: 1.54399758e-01 - sys_corr_119: 6.79083962e-03 + sys_corr_118: -1.54399758e-01 + sys_corr_119: -6.79083962e-03 sys_corr_120: 2.35176147e-02 sys_corr_121: 1.89528049e-03 sys_corr_122: -3.21001497e-02 - sys_corr_123: 1.66656507e-02 + sys_corr_123: -1.66656507e-02 sys_corr_124: 7.33622693e-02 - sys_corr_125: 3.10157500e-02 + sys_corr_125: -3.10157500e-02 sys_corr_126: 3.87534413e-03 - sys_corr_127: -2.58494967e-02 - sys_corr_128: 2.16000809e-01 - sys_corr_129: -1.30501358e-01 + sys_corr_127: 2.58494967e-02 + sys_corr_128: -2.16000809e-01 + sys_corr_129: 1.30501358e-01 sys_corr_130: -5.28255820e-03 - sys_corr_131: 3.42529851e-02 - sys_corr_132: -3.93517717e-02 + sys_corr_131: -3.93517717e-02 + sys_corr_132: -3.42529851e-02 stat: 0.0 luminosity: 2.48515300e+02 - sys_corr_1: 1.27887132e+02 @@ -8180,26 +8180,26 @@ bins: sys_corr_4: -3.19619535e+01 sys_corr_5: 1.48021272e+01 sys_corr_6: -1.07790424e+02 - sys_corr_7: 2.82517624e+01 - sys_corr_8: 1.75325623e+01 + sys_corr_7: -2.82517624e+01 + sys_corr_8: -1.75325623e+01 sys_corr_9: -2.12160401e+01 - sys_corr_10: 1.59443838e+00 - sys_corr_11: 3.00053369e+01 - sys_corr_12: 3.26835280e+01 + sys_corr_10: -1.59443838e+00 + sys_corr_11: -3.00053369e+01 + sys_corr_12: -3.26835280e+01 sys_corr_13: 2.23006643e+01 - sys_corr_14: 6.03243622e+00 - sys_corr_15: 3.60628383e+00 - sys_corr_16: -7.73827809e+00 - sys_corr_17: 3.13594630e+00 - sys_corr_18: 1.97909853e+00 - sys_corr_19: 3.86015359e+00 - sys_corr_20: -5.80656153e+00 - sys_corr_21: -8.29837844e+00 - sys_corr_22: -3.78228956e+01 - sys_corr_23: -7.62292887e+00 - sys_corr_24: 2.41737520e+01 - sys_corr_25: 5.29328578e+00 - sys_corr_26: 1.02168350e+01 + sys_corr_14: -6.03243622e+00 + sys_corr_15: -3.60628383e+00 + sys_corr_16: 7.73827809e+00 + sys_corr_17: -3.13594630e+00 + sys_corr_18: -1.97909853e+00 + sys_corr_19: -3.86015359e+00 + sys_corr_20: 5.80656153e+00 + sys_corr_21: 8.29837844e+00 + sys_corr_22: 3.78228956e+01 + sys_corr_23: 7.62292887e+00 + sys_corr_24: -2.41737520e+01 + sys_corr_25: -5.29328578e+00 + sys_corr_26: -1.02168350e+01 sys_corr_27: -9.99709386e+00 sys_corr_28: -2.37589828e+01 sys_corr_29: 4.24228119e+01 @@ -8212,100 +8212,100 @@ bins: sys_corr_36: -1.09588174e+01 sys_corr_37: 2.24586370e-01 sys_corr_38: -1.64671328e+01 - sys_corr_39: 1.15391328e+01 + sys_corr_39: -1.15391328e+01 sys_corr_40: 3.43122096e+00 sys_corr_41: 1.56284339e+01 - sys_corr_42: 3.47968726e+00 + sys_corr_42: -3.47968726e+00 sys_corr_43: -1.61073283e+01 - sys_corr_44: -1.99831118e+01 - sys_corr_45: -4.37211663e+00 - sys_corr_46: -5.98146343e-02 - sys_corr_47: -1.43303627e+01 - sys_corr_48: 1.65953293e+01 + sys_corr_44: 1.99831118e+01 + sys_corr_45: 4.37211663e+00 + sys_corr_46: 5.98146343e-02 + sys_corr_47: 1.43303627e+01 + sys_corr_48: -1.65953293e+01 sys_corr_49: 1.90308133e+01 - sys_corr_50: -1.77578753e+01 - sys_corr_51: -1.69685746e+01 - sys_corr_52: -9.55414354e+00 - sys_corr_53: -2.91275722e+01 - sys_corr_54: 1.24196469e+01 + sys_corr_50: 1.77578753e+01 + sys_corr_51: 1.69685746e+01 + sys_corr_52: 9.55414354e+00 + sys_corr_53: 2.91275722e+01 + sys_corr_54: -1.24196469e+01 sys_corr_55: -1.28618337e+01 sys_corr_56: -2.97448857e+00 - sys_corr_57: 2.54335587e+01 + sys_corr_57: -2.54335587e+01 sys_corr_58: -1.20750113e+01 - sys_corr_59: 9.04379152e+00 + sys_corr_59: -9.04379152e+00 sys_corr_60: -8.28710611e+00 sys_corr_61: -1.12295173e+01 sys_corr_62: -1.82281006e+01 - sys_corr_63: -1.51983970e+01 + sys_corr_63: 1.51983970e+01 sys_corr_64: 6.39763985e-01 sys_corr_65: 2.18127796e+01 - sys_corr_66: -1.54074354e+00 - sys_corr_67: 3.11943687e+00 - sys_corr_68: 7.13027149e+01 - sys_corr_69: -4.46454637e+00 - sys_corr_70: 2.11833791e+01 - sys_corr_71: -5.72121464e+01 - sys_corr_72: -1.86556741e+00 - sys_corr_73: -1.55031617e+01 - sys_corr_74: 7.21089717e+00 - sys_corr_75: -5.34879339e+01 + sys_corr_66: 1.54074354e+00 + sys_corr_67: -3.11943687e+00 + sys_corr_68: -7.13027149e+01 + sys_corr_69: 4.46454637e+00 + sys_corr_70: -2.11833791e+01 + sys_corr_71: -1.55031617e+01 + sys_corr_72: 1.86556741e+00 + sys_corr_73: 5.72121464e+01 + sys_corr_74: -7.21089717e+00 + sys_corr_75: 5.34879339e+01 sys_corr_76: -5.07491876e-01 sys_corr_77: -1.04170740e+02 - sys_corr_78: 1.28842663e+02 + sys_corr_78: -8.61915994e+00 sys_corr_79: -9.17532193e-01 - sys_corr_80: 8.61915994e+00 + sys_corr_80: -1.28842663e+02 sys_corr_81: -6.36552835e+01 - sys_corr_82: -3.96082948e+01 - sys_corr_83: -3.85479459e+01 + sys_corr_82: -3.85479459e+01 + sys_corr_83: 3.96082948e+01 sys_corr_84: 1.12845773e+01 - sys_corr_85: 1.10240044e+01 - sys_corr_86: 3.55888748e+01 + sys_corr_85: -1.10240044e+01 + sys_corr_86: -3.55888748e+01 sys_corr_87: 8.43242023e+00 sys_corr_88: -2.62429570e+01 - sys_corr_89: -1.92607703e+00 - sys_corr_90: 6.96589403e+00 + sys_corr_89: 1.92607703e+00 + sys_corr_90: -6.96589403e+00 sys_corr_91: -8.45893523e+00 - sys_corr_92: 2.59285822e+01 - sys_corr_93: 7.77197104e-01 + sys_corr_92: -2.59285822e+01 + sys_corr_93: -2.98098058e+00 sys_corr_94: 2.25525417e+00 - sys_corr_95: 2.98098058e+00 + sys_corr_95: -7.77197104e-01 sys_corr_96: -2.98400820e-01 sys_corr_97: -3.97879134e+00 sys_corr_98: -1.43871172e+00 sys_corr_99: -1.23388894e+00 - sys_corr_100: -3.98175323e-01 - sys_corr_101: 1.05392948e-02 - sys_corr_102: 2.74674984e-01 - sys_corr_103: -7.14800325e-01 - sys_corr_104: 4.57201166e-01 - sys_corr_105: -1.70185481e+00 - sys_corr_106: 2.47454507e-01 - sys_corr_107: -2.99395123e-01 - sys_corr_108: 1.65993835e-01 - sys_corr_109: 1.48707299e-01 - sys_corr_110: -1.43577629e-01 - sys_corr_111: 3.21715354e-01 - sys_corr_112: 2.73354265e-02 + sys_corr_100: 4.57201166e-01 + sys_corr_101: -7.14800325e-01 + sys_corr_102: 1.70185481e+00 + sys_corr_103: -2.74674984e-01 + sys_corr_104: 1.05392948e-02 + sys_corr_105: -3.98175323e-01 + sys_corr_106: -2.47454507e-01 + sys_corr_107: 2.99395123e-01 + sys_corr_108: -3.21715354e-01 + sys_corr_109: -1.65993835e-01 + sys_corr_110: -1.48707299e-01 + sys_corr_111: -1.43577629e-01 + sys_corr_112: -2.73354265e-02 sys_corr_113: 1.42807681e-01 sys_corr_114: -2.19048167e-03 - sys_corr_115: -2.54426358e-03 - sys_corr_116: -1.05353699e-01 + sys_corr_115: 2.54426358e-03 + sys_corr_116: 1.05353699e-01 sys_corr_117: 5.72292551e-02 - sys_corr_118: 1.50381162e-01 - sys_corr_119: 9.66541775e-03 + sys_corr_118: -1.50381162e-01 + sys_corr_119: -9.66541775e-03 sys_corr_120: 4.33977156e-02 sys_corr_121: -9.59698157e-03 sys_corr_122: -3.91354102e-02 - sys_corr_123: 1.18217731e-02 + sys_corr_123: -1.18217731e-02 sys_corr_124: 1.35455395e-01 - sys_corr_125: 4.24313141e-02 + sys_corr_125: -4.24313141e-02 sys_corr_126: 6.38184307e-04 - sys_corr_127: 2.28717387e-01 - sys_corr_128: -1.15247414e-01 - sys_corr_129: -3.12815889e-02 + sys_corr_127: -2.28717387e-01 + sys_corr_128: 1.15247414e-01 + sys_corr_129: 3.12815889e-02 sys_corr_130: -1.61614181e-02 - sys_corr_131: 3.16601122e-02 - sys_corr_132: -8.09434959e-02 + sys_corr_131: -8.09434959e-02 + sys_corr_132: -3.16601122e-02 stat: 0.0 luminosity: 2.45734258e+02 - sys_corr_1: 1.15698695e+02 @@ -8314,26 +8314,26 @@ bins: sys_corr_4: -5.07595218e+01 sys_corr_5: 3.52559322e+01 sys_corr_6: -1.12372336e+02 - sys_corr_7: 2.14604089e+01 - sys_corr_8: 1.20084417e+01 + sys_corr_7: -2.14604089e+01 + sys_corr_8: -1.20084417e+01 sys_corr_9: -1.80347786e+01 - sys_corr_10: 1.39390619e-02 - sys_corr_11: 1.21781686e+01 - sys_corr_12: 2.28504852e+01 + sys_corr_10: -1.39390619e-02 + sys_corr_11: -1.21781686e+01 + sys_corr_12: -2.28504852e+01 sys_corr_13: 1.80031555e+01 - sys_corr_14: -5.97809933e+00 - sys_corr_15: 8.63815393e+00 - sys_corr_16: -7.75678207e-01 - sys_corr_17: -6.17424644e+00 - sys_corr_18: -4.20283927e+00 - sys_corr_19: 1.08702277e+01 - sys_corr_20: -1.34288415e+01 - sys_corr_21: -9.26265865e+00 - sys_corr_22: -4.48130781e+01 - sys_corr_23: -3.21874057e+00 - sys_corr_24: 2.45393073e+01 - sys_corr_25: 8.23709643e+00 - sys_corr_26: 1.66060368e+01 + sys_corr_14: 5.97809933e+00 + sys_corr_15: -8.63815393e+00 + sys_corr_16: 7.75678207e-01 + sys_corr_17: 6.17424644e+00 + sys_corr_18: 4.20283927e+00 + sys_corr_19: -1.08702277e+01 + sys_corr_20: 1.34288415e+01 + sys_corr_21: 9.26265865e+00 + sys_corr_22: 4.48130781e+01 + sys_corr_23: 3.21874057e+00 + sys_corr_24: -2.45393073e+01 + sys_corr_25: -8.23709643e+00 + sys_corr_26: -1.66060368e+01 sys_corr_27: -7.20948677e+00 sys_corr_28: -6.09773817e+00 sys_corr_29: 1.79884965e+01 @@ -8346,100 +8346,100 @@ bins: sys_corr_36: -5.45081676e+00 sys_corr_37: -1.06903957e+00 sys_corr_38: 7.09613569e+00 - sys_corr_39: 1.75482621e+01 + sys_corr_39: -1.75482621e+01 sys_corr_40: -1.25747814e+00 sys_corr_41: -3.51981738e-01 - sys_corr_42: 5.55736434e+00 + sys_corr_42: -5.55736434e+00 sys_corr_43: 1.83244055e+00 - sys_corr_44: -1.86094840e+01 - sys_corr_45: 4.08600391e+01 - sys_corr_46: 7.67336862e+00 - sys_corr_47: -2.03754220e+01 - sys_corr_48: 1.45035364e+01 + sys_corr_44: 1.86094840e+01 + sys_corr_45: -4.08600391e+01 + sys_corr_46: -7.67336862e+00 + sys_corr_47: 2.03754220e+01 + sys_corr_48: -1.45035364e+01 sys_corr_49: 1.60241813e+01 - sys_corr_50: -6.36358006e+00 - sys_corr_51: -1.04886305e+01 - sys_corr_52: -1.08510688e+01 - sys_corr_53: -9.83454120e+00 - sys_corr_54: 1.24573039e+01 + sys_corr_50: 6.36358006e+00 + sys_corr_51: 1.04886305e+01 + sys_corr_52: 1.08510688e+01 + sys_corr_53: 9.83454120e+00 + sys_corr_54: -1.24573039e+01 sys_corr_55: -6.03129450e+00 sys_corr_56: 1.63374660e+01 - sys_corr_57: 8.67846321e+00 + sys_corr_57: -8.67846321e+00 sys_corr_58: -1.97132777e+01 - sys_corr_59: -5.08442567e+00 + sys_corr_59: 5.08442567e+00 sys_corr_60: -6.70523894e+00 sys_corr_61: -2.23666397e+01 sys_corr_62: -3.45030087e+00 - sys_corr_63: 1.14668316e+01 + sys_corr_63: -1.14668316e+01 sys_corr_64: -2.02994563e+01 sys_corr_65: 1.45353382e+01 - sys_corr_66: -1.39262522e+01 - sys_corr_67: 1.59395773e+01 - sys_corr_68: 2.74940942e+01 - sys_corr_69: -6.07103210e+00 - sys_corr_70: 1.37758129e+01 - sys_corr_71: 3.50327556e+01 - sys_corr_72: -2.17726661e+01 - sys_corr_73: 5.18326506e+00 - sys_corr_74: 5.38746637e+00 - sys_corr_75: 1.28776935e+02 + sys_corr_66: 1.39262522e+01 + sys_corr_67: -1.59395773e+01 + sys_corr_68: -2.74940942e+01 + sys_corr_69: 6.07103210e+00 + sys_corr_70: -1.37758129e+01 + sys_corr_71: 5.18326506e+00 + sys_corr_72: 2.17726661e+01 + sys_corr_73: -3.50327556e+01 + sys_corr_74: -5.38746637e+00 + sys_corr_75: -1.28776935e+02 sys_corr_76: -4.32027954e+01 sys_corr_77: 5.27905313e+01 - sys_corr_78: 7.71854762e+01 + sys_corr_78: -3.02167346e+01 sys_corr_79: 5.16347114e+00 - sys_corr_80: 3.02167346e+01 + sys_corr_80: -7.71854762e+01 sys_corr_81: -2.30520223e+01 - sys_corr_82: 5.02982486e+01 - sys_corr_83: 1.52770387e+01 + sys_corr_82: 1.52770387e+01 + sys_corr_83: -5.02982486e+01 sys_corr_84: -2.54435688e+01 - sys_corr_85: 2.42142415e+01 - sys_corr_86: -2.46236393e+01 + sys_corr_85: -2.42142415e+01 + sys_corr_86: 2.46236393e+01 sys_corr_87: 1.25866499e+02 sys_corr_88: 2.31093595e+01 - sys_corr_89: -5.00159938e+00 - sys_corr_90: -2.88119827e+00 + sys_corr_89: 5.00159938e+00 + sys_corr_90: 2.88119827e+00 sys_corr_91: -1.05717602e+00 - sys_corr_92: 2.41118279e+01 - sys_corr_93: 1.77075550e-01 + sys_corr_92: -2.41118279e+01 + sys_corr_93: -1.52689567e+00 sys_corr_94: 8.43257571e-01 - sys_corr_95: 1.52689567e+00 + sys_corr_95: -1.77075550e-01 sys_corr_96: -2.97007122e-01 sys_corr_97: -9.42791574e-01 sys_corr_98: -1.22338292e-01 sys_corr_99: -5.61855505e-01 - sys_corr_100: 5.46329450e-02 - sys_corr_101: 1.65088950e-01 - sys_corr_102: -7.13899036e-01 - sys_corr_103: 1.56965181e+00 - sys_corr_104: 6.47070467e-01 - sys_corr_105: -2.42105571e-02 - sys_corr_106: 2.44869443e-01 - sys_corr_107: -2.38283693e-01 - sys_corr_108: 6.91341342e-02 - sys_corr_109: 1.15501192e-03 - sys_corr_110: 1.57035606e-01 - sys_corr_111: 5.72112541e-02 - sys_corr_112: -9.20208597e-02 + sys_corr_100: 6.47070467e-01 + sys_corr_101: 1.56965181e+00 + sys_corr_102: 2.42105571e-02 + sys_corr_103: 7.13899036e-01 + sys_corr_104: 1.65088950e-01 + sys_corr_105: 5.46329450e-02 + sys_corr_106: -2.44869443e-01 + sys_corr_107: 2.38283693e-01 + sys_corr_108: -5.72112541e-02 + sys_corr_109: -6.91341342e-02 + sys_corr_110: -1.15501192e-03 + sys_corr_111: 1.57035606e-01 + sys_corr_112: 9.20208597e-02 sys_corr_113: 1.00712498e-01 sys_corr_114: -1.78967304e-03 - sys_corr_115: 4.54891346e-02 - sys_corr_116: -6.02504421e-02 + sys_corr_115: -4.54891346e-02 + sys_corr_116: 6.02504421e-02 sys_corr_117: 3.94601129e-02 - sys_corr_118: 1.52470153e-01 - sys_corr_119: 2.87703694e-03 + sys_corr_118: -1.52470153e-01 + sys_corr_119: -2.87703694e-03 sys_corr_120: 2.21386413e-02 sys_corr_121: -6.79970288e-03 sys_corr_122: -1.17556205e-02 - sys_corr_123: 1.06395298e-02 + sys_corr_123: -1.06395298e-02 sys_corr_124: 8.93520258e-02 - sys_corr_125: 1.93257748e-02 + sys_corr_125: -1.93257748e-02 sys_corr_126: -3.38696097e-03 - sys_corr_127: -4.80256573e-01 - sys_corr_128: -1.21121915e-01 - sys_corr_129: -1.12837113e-01 + sys_corr_127: 4.80256573e-01 + sys_corr_128: 1.21121915e-01 + sys_corr_129: 1.12837113e-01 sys_corr_130: 1.22527415e-03 - sys_corr_131: 1.79932493e-02 - sys_corr_132: -2.56196072e-02 + sys_corr_131: -2.56196072e-02 + sys_corr_132: -1.79932493e-02 stat: 0.0 luminosity: 2.36999664e+02 - sys_corr_1: 1.07359743e+02 @@ -8448,26 +8448,26 @@ bins: sys_corr_4: -5.89067693e+01 sys_corr_5: 4.20597944e+01 sys_corr_6: -1.05567557e+02 - sys_corr_7: 1.33611648e+01 - sys_corr_8: 1.06339876e+01 + sys_corr_7: -1.33611648e+01 + sys_corr_8: -1.06339876e+01 sys_corr_9: -1.56825867e+01 - sys_corr_10: -1.31650241e+00 - sys_corr_11: 1.05762195e+01 - sys_corr_12: 2.09200651e+01 + sys_corr_10: 1.31650241e+00 + sys_corr_11: -1.05762195e+01 + sys_corr_12: -2.09200651e+01 sys_corr_13: 1.15564566e+01 - sys_corr_14: 7.63394399e+00 - sys_corr_15: 2.47406445e+00 - sys_corr_16: 3.21356328e-01 - sys_corr_17: -1.00029900e+01 - sys_corr_18: -8.71109592e-01 - sys_corr_19: 8.06767338e+00 - sys_corr_20: -1.59882180e+01 - sys_corr_21: -8.98940970e+00 - sys_corr_22: -5.55725720e+01 - sys_corr_23: -6.01530275e+00 - sys_corr_24: 2.53326747e+01 - sys_corr_25: 9.97833765e+00 - sys_corr_26: 2.28564533e+01 + sys_corr_14: -7.63394399e+00 + sys_corr_15: -2.47406445e+00 + sys_corr_16: -3.21356328e-01 + sys_corr_17: 1.00029900e+01 + sys_corr_18: 8.71109592e-01 + sys_corr_19: -8.06767338e+00 + sys_corr_20: 1.59882180e+01 + sys_corr_21: 8.98940970e+00 + sys_corr_22: 5.55725720e+01 + sys_corr_23: 6.01530275e+00 + sys_corr_24: -2.53326747e+01 + sys_corr_25: -9.97833765e+00 + sys_corr_26: -2.28564533e+01 sys_corr_27: -9.17670147e+00 sys_corr_28: -8.16082535e+00 sys_corr_29: 1.74712853e+01 @@ -8480,100 +8480,100 @@ bins: sys_corr_36: -1.35583574e+00 sys_corr_37: -1.35781447e+01 sys_corr_38: 5.45105239e+00 - sys_corr_39: -2.93924516e+01 + sys_corr_39: 2.93924516e+01 sys_corr_40: 3.50496742e+00 sys_corr_41: 1.52654582e+00 - sys_corr_42: 4.59836961e+00 + sys_corr_42: -4.59836961e+00 sys_corr_43: -1.35589741e+00 - sys_corr_44: -1.63054749e+01 - sys_corr_45: -7.40855944e+00 - sys_corr_46: -1.88883461e+00 - sys_corr_47: 6.70017499e+00 - sys_corr_48: 1.89636442e+01 + sys_corr_44: 1.63054749e+01 + sys_corr_45: 7.40855944e+00 + sys_corr_46: 1.88883461e+00 + sys_corr_47: -6.70017499e+00 + sys_corr_48: -1.89636442e+01 sys_corr_49: 3.50306578e+01 - sys_corr_50: -2.89716460e+01 - sys_corr_51: -2.24605792e+01 - sys_corr_52: 2.40995766e+01 - sys_corr_53: -8.46852873e+00 - sys_corr_54: -1.35217626e+01 + sys_corr_50: 2.89716460e+01 + sys_corr_51: 2.24605792e+01 + sys_corr_52: -2.40995766e+01 + sys_corr_53: 8.46852873e+00 + sys_corr_54: 1.35217626e+01 sys_corr_55: -1.79102721e+01 sys_corr_56: -1.72652154e+01 - sys_corr_57: 3.85885483e+01 + sys_corr_57: -3.85885483e+01 sys_corr_58: -3.16175552e+01 - sys_corr_59: -1.17218446e+01 + sys_corr_59: 1.17218446e+01 sys_corr_60: 4.42383336e+01 sys_corr_61: -1.41962047e+02 sys_corr_62: -9.36480218e+01 - sys_corr_63: -3.60839519e+01 + sys_corr_63: 3.60839519e+01 sys_corr_64: -5.37584733e+00 sys_corr_65: -1.83131105e+02 - sys_corr_66: -1.76429880e+01 - sys_corr_67: -2.65180336e+01 - sys_corr_68: 1.45496726e+01 - sys_corr_69: -2.11480364e+01 - sys_corr_70: -4.33808668e+01 - sys_corr_71: 1.32647936e+01 - sys_corr_72: 3.04856466e+01 - sys_corr_73: -2.47576280e+01 - sys_corr_74: 2.46062184e+00 - sys_corr_75: -6.58895689e+00 + sys_corr_66: 1.76429880e+01 + sys_corr_67: 2.65180336e+01 + sys_corr_68: -1.45496726e+01 + sys_corr_69: 2.11480364e+01 + sys_corr_70: 4.33808668e+01 + sys_corr_71: -2.47576280e+01 + sys_corr_72: -3.04856466e+01 + sys_corr_73: -1.32647936e+01 + sys_corr_74: -2.46062184e+00 + sys_corr_75: 6.58895689e+00 sys_corr_76: 6.26385970e+00 sys_corr_77: -3.28411864e+00 - sys_corr_78: -1.34619253e+01 + sys_corr_78: -2.54093927e+00 sys_corr_79: -4.38127083e+00 - sys_corr_80: 2.54093927e+00 + sys_corr_80: 1.34619253e+01 sys_corr_81: 2.53198084e+00 - sys_corr_82: 3.83459152e+00 - sys_corr_83: 4.40014819e+00 + sys_corr_82: 4.40014819e+00 + sys_corr_83: -3.83459152e+00 sys_corr_84: -5.84265729e+00 - sys_corr_85: 1.08922832e+01 - sys_corr_86: -4.05019389e+00 + sys_corr_85: -1.08922832e+01 + sys_corr_86: 4.05019389e+00 sys_corr_87: 2.63411604e+00 sys_corr_88: 7.00747126e-01 - sys_corr_89: -1.35853263e+00 - sys_corr_90: 1.06303306e+00 + sys_corr_89: 1.35853263e+00 + sys_corr_90: -1.06303306e+00 sys_corr_91: -3.02407644e+00 - sys_corr_92: -2.36193341e+00 - sys_corr_93: 1.69995955e-01 + sys_corr_92: 2.36193341e+00 + sys_corr_93: -4.84178239e-01 sys_corr_94: 3.11256088e-01 - sys_corr_95: 4.84178239e-01 + sys_corr_95: -1.69995955e-01 sys_corr_96: 5.52493015e-03 sys_corr_97: 5.29255720e-01 sys_corr_98: 1.37402761e-01 sys_corr_99: 4.60168623e-01 - sys_corr_100: 1.38471850e-01 - sys_corr_101: 6.76355418e-01 - sys_corr_102: -1.08469759e+00 - sys_corr_103: 4.66530131e+00 - sys_corr_104: 8.87139867e-01 - sys_corr_105: 1.87784947e+00 - sys_corr_106: 3.37262244e-01 - sys_corr_107: 3.24821367e-01 - sys_corr_108: 7.07198657e-02 - sys_corr_109: 1.54111260e-02 - sys_corr_110: -1.28885001e-03 - sys_corr_111: -8.38708487e-01 - sys_corr_112: -1.13762942e-01 + sys_corr_100: 8.87139867e-01 + sys_corr_101: 4.66530131e+00 + sys_corr_102: -1.87784947e+00 + sys_corr_103: 1.08469759e+00 + sys_corr_104: 6.76355418e-01 + sys_corr_105: 1.38471850e-01 + sys_corr_106: -3.37262244e-01 + sys_corr_107: -3.24821367e-01 + sys_corr_108: 8.38708487e-01 + sys_corr_109: -7.07198657e-02 + sys_corr_110: -1.54111260e-02 + sys_corr_111: -1.28885001e-03 + sys_corr_112: 1.13762942e-01 sys_corr_113: 8.82941771e-02 sys_corr_114: -1.06545945e-03 - sys_corr_115: -4.55758034e-03 - sys_corr_116: -2.75224096e-02 + sys_corr_115: 4.55758034e-03 + sys_corr_116: 2.75224096e-02 sys_corr_117: 1.96565257e-02 - sys_corr_118: 1.02607432e-01 - sys_corr_119: 2.84572029e-03 + sys_corr_118: -1.02607432e-01 + sys_corr_119: -2.84572029e-03 sys_corr_120: 1.40770144e-02 sys_corr_121: -5.18407147e-03 sys_corr_122: -1.14410622e-02 - sys_corr_123: 7.60353328e-03 + sys_corr_123: -7.60353328e-03 sys_corr_124: 4.56553976e-02 - sys_corr_125: 1.73706374e-02 + sys_corr_125: -1.73706374e-02 sys_corr_126: -5.01289757e-04 - sys_corr_127: -3.46134174e-01 - sys_corr_128: -1.09158909e-01 - sys_corr_129: 5.88538542e-02 + sys_corr_127: 3.46134174e-01 + sys_corr_128: 1.09158909e-01 + sys_corr_129: -5.88538542e-02 sys_corr_130: -4.82419221e-03 - sys_corr_131: 7.41162276e-03 - sys_corr_132: -4.68906318e-03 + sys_corr_131: -4.68906318e-03 + sys_corr_132: -7.41162276e-03 stat: 0.0 luminosity: 2.26695942e+02 - sys_corr_1: 9.84418213e+01 @@ -8582,26 +8582,26 @@ bins: sys_corr_4: -6.29315962e+01 sys_corr_5: 5.46287102e+01 sys_corr_6: -1.11950238e+02 - sys_corr_7: 1.28552577e+01 - sys_corr_8: 6.80463376e+00 + sys_corr_7: -1.28552577e+01 + sys_corr_8: -6.80463376e+00 sys_corr_9: -1.24568621e+01 - sys_corr_10: -2.42720601e+00 - sys_corr_11: -1.41777144e+00 - sys_corr_12: 5.87006552e+00 + sys_corr_10: 2.42720601e+00 + sys_corr_11: 1.41777144e+00 + sys_corr_12: -5.87006552e+00 sys_corr_13: 1.06579423e+01 - sys_corr_14: 4.36807400e-01 - sys_corr_15: 6.31196496e-02 - sys_corr_16: -2.73137558e+00 - sys_corr_17: -2.80382764e-01 - sys_corr_18: 3.86293012e+00 - sys_corr_19: 1.77047645e+01 - sys_corr_20: -1.41071663e+01 - sys_corr_21: -4.08793858e+00 - sys_corr_22: -5.44343250e+01 - sys_corr_23: -3.39144520e+00 - sys_corr_24: 2.41357082e+01 - sys_corr_25: 1.18034438e+01 - sys_corr_26: 2.63845150e+01 + sys_corr_14: -4.36807400e-01 + sys_corr_15: -6.31196496e-02 + sys_corr_16: 2.73137558e+00 + sys_corr_17: 2.80382764e-01 + sys_corr_18: -3.86293012e+00 + sys_corr_19: -1.77047645e+01 + sys_corr_20: 1.41071663e+01 + sys_corr_21: 4.08793858e+00 + sys_corr_22: 5.44343250e+01 + sys_corr_23: 3.39144520e+00 + sys_corr_24: -2.41357082e+01 + sys_corr_25: -1.18034438e+01 + sys_corr_26: -2.63845150e+01 sys_corr_27: -4.64735765e+00 sys_corr_28: -2.26433878e+00 sys_corr_29: 8.23033920e+00 @@ -8614,100 +8614,100 @@ bins: sys_corr_36: 4.50923066e+00 sys_corr_37: -2.05116900e+00 sys_corr_38: 2.64704967e+01 - sys_corr_39: 8.09482707e+00 + sys_corr_39: -8.09482707e+00 sys_corr_40: 1.84745254e+00 sys_corr_41: 8.78347860e+00 - sys_corr_42: -4.11771574e+00 + sys_corr_42: 4.11771574e+00 sys_corr_43: 9.50278186e+00 - sys_corr_44: -1.58430479e+01 - sys_corr_45: 8.84613305e+00 - sys_corr_46: -3.16648550e-01 - sys_corr_47: -4.49137552e+00 - sys_corr_48: -4.86291199e+00 + sys_corr_44: 1.58430479e+01 + sys_corr_45: -8.84613305e+00 + sys_corr_46: 3.16648550e-01 + sys_corr_47: 4.49137552e+00 + sys_corr_48: 4.86291199e+00 sys_corr_49: 1.37548974e+00 - sys_corr_50: -8.28861107e-01 - sys_corr_51: -1.58139619e+01 - sys_corr_52: 3.46118837e+01 - sys_corr_53: -2.20530178e+01 - sys_corr_54: 2.90623080e+01 + sys_corr_50: 8.28861107e-01 + sys_corr_51: 1.58139619e+01 + sys_corr_52: -3.46118837e+01 + sys_corr_53: 2.20530178e+01 + sys_corr_54: -2.90623080e+01 sys_corr_55: -9.09385170e+00 sys_corr_56: 6.25518201e-01 - sys_corr_57: 8.88397157e+00 + sys_corr_57: -8.88397157e+00 sys_corr_58: -1.63675990e+01 - sys_corr_59: -1.28248916e+00 + sys_corr_59: 1.28248916e+00 sys_corr_60: -1.09893458e+01 sys_corr_61: -1.09694174e+00 sys_corr_62: 2.82125541e+00 - sys_corr_63: 5.18765697e+00 + sys_corr_63: -5.18765697e+00 sys_corr_64: -1.48775874e+01 sys_corr_65: 1.97810625e+01 - sys_corr_66: -1.98081005e+01 - sys_corr_67: 6.90511928e+00 - sys_corr_68: 5.40181823e+00 - sys_corr_69: 2.24214177e+00 - sys_corr_70: 1.04160225e+01 - sys_corr_71: -5.83193371e+01 - sys_corr_72: -3.02517610e+01 - sys_corr_73: -4.71275018e+00 - sys_corr_74: 3.31175586e+00 - sys_corr_75: -3.61583822e+01 + sys_corr_66: 1.98081005e+01 + sys_corr_67: -6.90511928e+00 + sys_corr_68: -5.40181823e+00 + sys_corr_69: -2.24214177e+00 + sys_corr_70: -1.04160225e+01 + sys_corr_71: -4.71275018e+00 + sys_corr_72: 3.02517610e+01 + sys_corr_73: 5.83193371e+01 + sys_corr_74: -3.31175586e+00 + sys_corr_75: 3.61583822e+01 sys_corr_76: 1.16658225e+01 sys_corr_77: -7.30784401e+01 - sys_corr_78: -3.61672662e+01 + sys_corr_78: -7.61022075e+00 sys_corr_79: -3.55864112e+01 - sys_corr_80: 7.61022075e+00 + sys_corr_80: 3.61672662e+01 sys_corr_81: 1.21866935e+02 - sys_corr_82: 6.23504750e+01 - sys_corr_83: 8.71830222e+01 + sys_corr_82: 8.71830222e+01 + sys_corr_83: -6.23504750e+01 sys_corr_84: -1.36035657e+01 - sys_corr_85: 1.52685012e+01 - sys_corr_86: 4.64597678e+01 + sys_corr_85: -1.52685012e+01 + sys_corr_86: -4.64597678e+01 sys_corr_87: 8.27089973e+01 sys_corr_88: -3.66212898e+01 - sys_corr_89: -2.61636032e+00 - sys_corr_90: 4.49028333e+00 + sys_corr_89: 2.61636032e+00 + sys_corr_90: -4.49028333e+00 sys_corr_91: -2.52468988e+00 - sys_corr_92: 1.10827970e+00 - sys_corr_93: 3.37508184e-01 + sys_corr_92: -1.10827970e+00 + sys_corr_93: -1.42007131e+00 sys_corr_94: 5.34117362e-01 - sys_corr_95: 1.42007131e+00 + sys_corr_95: -3.37508184e-01 sys_corr_96: 4.11331833e-01 sys_corr_97: -1.40923876e-01 sys_corr_98: -2.42079414e-01 sys_corr_99: -2.72331749e-02 - sys_corr_100: 2.74930242e-02 - sys_corr_101: 2.06479070e-01 - sys_corr_102: -5.83883143e-01 - sys_corr_103: 1.22557916e+00 - sys_corr_104: -1.13294755e+00 - sys_corr_105: -1.71500834e-01 - sys_corr_106: -5.12411484e-01 - sys_corr_107: 8.47725676e-02 - sys_corr_108: -3.19025444e-03 - sys_corr_109: -2.22001083e-01 - sys_corr_110: 3.28639625e-02 - sys_corr_111: -6.35326179e-01 - sys_corr_112: -7.78286525e-02 + sys_corr_100: -1.13294755e+00 + sys_corr_101: 1.22557916e+00 + sys_corr_102: 1.71500834e-01 + sys_corr_103: 5.83883143e-01 + sys_corr_104: 2.06479070e-01 + sys_corr_105: 2.74930242e-02 + sys_corr_106: 5.12411484e-01 + sys_corr_107: -8.47725676e-02 + sys_corr_108: 6.35326179e-01 + sys_corr_109: 3.19025444e-03 + sys_corr_110: 2.22001083e-01 + sys_corr_111: 3.28639625e-02 + sys_corr_112: 7.78286525e-02 sys_corr_113: -8.07378321e-02 sys_corr_114: 4.17285321e-05 - sys_corr_115: -1.04788066e-02 - sys_corr_116: -3.11285624e-02 + sys_corr_115: 1.04788066e-02 + sys_corr_116: 3.11285624e-02 sys_corr_117: 1.86383211e-02 - sys_corr_118: -2.27427795e-04 - sys_corr_119: 5.71879113e-03 + sys_corr_118: 2.27427795e-04 + sys_corr_119: -5.71879113e-03 sys_corr_120: 1.84975661e-02 sys_corr_121: -3.57818924e-03 sys_corr_122: -1.74805630e-02 - sys_corr_123: 1.12314271e-02 + sys_corr_123: -1.12314271e-02 sys_corr_124: 4.32155958e-02 - sys_corr_125: 1.44780388e-02 + sys_corr_125: -1.44780388e-02 sys_corr_126: -7.81975516e-03 - sys_corr_127: 4.59341853e-01 - sys_corr_128: 8.03025744e-02 - sys_corr_129: 9.26906378e-02 + sys_corr_127: -4.59341853e-01 + sys_corr_128: -8.03025744e-02 + sys_corr_129: -9.26906378e-02 sys_corr_130: 4.41261013e-03 - sys_corr_131: 1.12780947e-02 - sys_corr_132: 6.39369950e-02 + sys_corr_131: 6.39369950e-02 + sys_corr_132: -1.12780947e-02 stat: 0.0 luminosity: 2.14200096e+02 - sys_corr_1: 9.81219381e+01 @@ -8716,26 +8716,26 @@ bins: sys_corr_4: -7.20077690e+01 sys_corr_5: 4.98296488e+01 sys_corr_6: -9.47652239e+01 - sys_corr_7: 1.31639125e+01 - sys_corr_8: 7.60077166e+00 + sys_corr_7: -1.31639125e+01 + sys_corr_8: -7.60077166e+00 sys_corr_9: -1.45804707e+01 - sys_corr_10: -3.81085248e+00 - sys_corr_11: 7.44365613e+00 - sys_corr_12: 6.08879797e+00 + sys_corr_10: 3.81085248e+00 + sys_corr_11: -7.44365613e+00 + sys_corr_12: -6.08879797e+00 sys_corr_13: 6.56964678e+00 - sys_corr_14: -1.53426376e+00 - sys_corr_15: 3.07093467e+00 - sys_corr_16: -4.27483207e+00 - sys_corr_17: -1.39780364e+01 - sys_corr_18: 1.49854849e+01 - sys_corr_19: 7.89471163e+00 - sys_corr_20: -9.95876038e+00 - sys_corr_21: -1.42155554e+01 - sys_corr_22: -4.94301319e+01 - sys_corr_23: 3.43527097e+00 - sys_corr_24: 3.28103958e+01 - sys_corr_25: 1.22270153e+01 - sys_corr_26: 2.66692961e+01 + sys_corr_14: 1.53426376e+00 + sys_corr_15: -3.07093467e+00 + sys_corr_16: 4.27483207e+00 + sys_corr_17: 1.39780364e+01 + sys_corr_18: -1.49854849e+01 + sys_corr_19: -7.89471163e+00 + sys_corr_20: 9.95876038e+00 + sys_corr_21: 1.42155554e+01 + sys_corr_22: 4.94301319e+01 + sys_corr_23: -3.43527097e+00 + sys_corr_24: -3.28103958e+01 + sys_corr_25: -1.22270153e+01 + sys_corr_26: -2.66692961e+01 sys_corr_27: -3.08829068e+00 sys_corr_28: 3.96851834e+00 sys_corr_29: -3.72159756e+00 @@ -8748,100 +8748,100 @@ bins: sys_corr_36: -8.66442626e+00 sys_corr_37: -1.11990181e+01 sys_corr_38: 5.88859329e+00 - sys_corr_39: 3.75921272e+00 + sys_corr_39: -3.75921272e+00 sys_corr_40: -5.72019962e+00 sys_corr_41: 3.53330819e+00 - sys_corr_42: 2.98647813e+00 + sys_corr_42: -2.98647813e+00 sys_corr_43: 5.90701438e+00 - sys_corr_44: -4.21660626e+00 - sys_corr_45: -1.95470450e+01 - sys_corr_46: 1.06516238e+00 - sys_corr_47: -5.43829673e+00 - sys_corr_48: 1.18503847e+01 + sys_corr_44: 4.21660626e+00 + sys_corr_45: 1.95470450e+01 + sys_corr_46: -1.06516238e+00 + sys_corr_47: 5.43829673e+00 + sys_corr_48: -1.18503847e+01 sys_corr_49: -2.70532518e+00 - sys_corr_50: -7.63733190e-01 - sys_corr_51: 4.17666127e+00 - sys_corr_52: 1.46719021e+00 - sys_corr_53: -2.22126455e+00 - sys_corr_54: -6.08305409e+00 + sys_corr_50: 7.63733190e-01 + sys_corr_51: -4.17666127e+00 + sys_corr_52: -1.46719021e+00 + sys_corr_53: 2.22126455e+00 + sys_corr_54: 6.08305409e+00 sys_corr_55: 4.01618716e+00 sys_corr_56: 6.65385459e+00 - sys_corr_57: 1.27309217e+01 + sys_corr_57: -1.27309217e+01 sys_corr_58: 1.04182430e+01 - sys_corr_59: 2.54505742e+00 + sys_corr_59: -2.54505742e+00 sys_corr_60: 4.62174180e+00 sys_corr_61: -4.19728684e+00 sys_corr_62: -1.40192045e+01 - sys_corr_63: -1.39062641e+01 + sys_corr_63: 1.39062641e+01 sys_corr_64: 1.18094757e+00 sys_corr_65: -1.57969767e+00 - sys_corr_66: -4.74067295e+00 - sys_corr_67: 7.57233274e+00 - sys_corr_68: -4.41743777e+00 - sys_corr_69: 9.51915847e+00 - sys_corr_70: 5.50756481e+00 - sys_corr_71: -1.09623370e+01 - sys_corr_72: -1.66709265e+01 - sys_corr_73: 4.69674100e+00 - sys_corr_74: -1.61245275e+00 - sys_corr_75: 1.30246074e+01 + sys_corr_66: 4.74067295e+00 + sys_corr_67: -7.57233274e+00 + sys_corr_68: 4.41743777e+00 + sys_corr_69: -9.51915847e+00 + sys_corr_70: -5.50756481e+00 + sys_corr_71: 4.69674100e+00 + sys_corr_72: 1.66709265e+01 + sys_corr_73: 1.09623370e+01 + sys_corr_74: 1.61245275e+00 + sys_corr_75: -1.30246074e+01 sys_corr_76: -1.66499220e+01 sys_corr_77: -6.97421700e-02 - sys_corr_78: 4.08769552e+00 + sys_corr_78: 1.90266571e+02 sys_corr_79: 5.22728066e+01 - sys_corr_80: -1.90266571e+02 + sys_corr_80: -4.08769552e+00 sys_corr_81: 1.51665703e-01 - sys_corr_82: 1.70979790e+01 - sys_corr_83: -7.85285383e+00 + sys_corr_82: -7.85285383e+00 + sys_corr_83: -1.70979790e+01 sys_corr_84: 2.86362020e+01 - sys_corr_85: -1.51152966e+01 - sys_corr_86: -2.46073719e+00 + sys_corr_85: 1.51152966e+01 + sys_corr_86: 2.46073719e+00 sys_corr_87: 4.05440917e+01 sys_corr_88: -7.88868459e+00 - sys_corr_89: 2.39945242e-01 - sys_corr_90: 2.40511125e+01 + sys_corr_89: -2.39945242e-01 + sys_corr_90: -2.40511125e+01 sys_corr_91: -1.19183398e+01 - sys_corr_92: 6.73628901e+00 - sys_corr_93: 3.50747407e-01 + sys_corr_92: -6.73628901e+00 + sys_corr_93: -4.21220399e-01 sys_corr_94: -6.64818586e-01 - sys_corr_95: 4.21220399e-01 + sys_corr_95: -3.50747407e-01 sys_corr_96: -4.02898805e-02 sys_corr_97: -1.09221024e+00 sys_corr_98: -9.92077188e-01 sys_corr_99: -9.15737525e-01 - sys_corr_100: 2.61030162e+00 - sys_corr_101: -2.45355377e+00 - sys_corr_102: 4.27672384e+00 - sys_corr_103: -1.67693056e+01 - sys_corr_104: -6.04784867e+00 - sys_corr_105: -6.92672380e+00 - sys_corr_106: -1.84936694e+00 - sys_corr_107: -1.46138413e+00 - sys_corr_108: -4.00658240e-02 - sys_corr_109: -4.04158563e-01 - sys_corr_110: 5.32256853e-02 - sys_corr_111: 1.57356100e-01 - sys_corr_112: 3.91194131e-02 + sys_corr_100: -6.04784867e+00 + sys_corr_101: -1.67693056e+01 + sys_corr_102: 6.92672380e+00 + sys_corr_103: -4.27672384e+00 + sys_corr_104: -2.45355377e+00 + sys_corr_105: 2.61030162e+00 + sys_corr_106: 1.84936694e+00 + sys_corr_107: 1.46138413e+00 + sys_corr_108: -1.57356100e-01 + sys_corr_109: 4.00658240e-02 + sys_corr_110: 4.04158563e-01 + sys_corr_111: 5.32256853e-02 + sys_corr_112: -3.91194131e-02 sys_corr_113: -1.03862323e-01 sys_corr_114: 1.61773514e-03 - sys_corr_115: -4.76125006e-02 - sys_corr_116: -1.93785724e-02 + sys_corr_115: 4.76125006e-02 + sys_corr_116: 1.93785724e-02 sys_corr_117: 2.14555956e-02 - sys_corr_118: 1.30850706e-01 - sys_corr_119: 8.23955545e-03 + sys_corr_118: -1.30850706e-01 + sys_corr_119: -8.23955545e-03 sys_corr_120: 2.95906291e-02 sys_corr_121: -7.55062933e-03 sys_corr_122: -9.44887146e-02 - sys_corr_123: 5.31179366e-02 + sys_corr_123: -5.31179366e-02 sys_corr_124: 9.46416854e-03 - sys_corr_125: 5.21882679e-02 + sys_corr_125: -5.21882679e-02 sys_corr_126: -2.47331927e-02 - sys_corr_127: 7.58095465e-01 - sys_corr_128: 6.50931720e-01 - sys_corr_129: -1.10781487e-01 + sys_corr_127: -7.58095465e-01 + sys_corr_128: -6.50931720e-01 + sys_corr_129: 1.10781487e-01 sys_corr_130: 1.05129014e-02 - sys_corr_131: 3.55812931e-02 - sys_corr_132: 5.77074866e-02 + sys_corr_131: 5.77074866e-02 + sys_corr_132: -3.55812931e-02 stat: 0.0 luminosity: 2.15637334e+02 - sys_corr_1: 8.57113253e+01 @@ -8850,26 +8850,26 @@ bins: sys_corr_4: -5.28428254e+01 sys_corr_5: 4.14867075e+01 sys_corr_6: -8.34595870e+01 - sys_corr_7: 1.55548787e+01 - sys_corr_8: 7.28316045e+00 + sys_corr_7: -1.55548787e+01 + sys_corr_8: -7.28316045e+00 sys_corr_9: -1.37179354e+01 - sys_corr_10: -2.38643577e+00 - sys_corr_11: 3.84712516e+00 - sys_corr_12: 7.23530878e+00 + sys_corr_10: 2.38643577e+00 + sys_corr_11: -3.84712516e+00 + sys_corr_12: -7.23530878e+00 sys_corr_13: 4.02861681e+00 - sys_corr_14: -1.47399255e+00 - sys_corr_15: 2.44837563e+00 - sys_corr_16: 3.17668180e-02 - sys_corr_17: 5.90196489e+00 - sys_corr_18: 6.76938271e+00 - sys_corr_19: -1.33191874e+00 - sys_corr_20: -7.58134512e+00 - sys_corr_21: -1.41985219e+01 - sys_corr_22: -4.25831514e+01 - sys_corr_23: 2.71758989e+00 - sys_corr_24: 9.06410606e+00 - sys_corr_25: 1.11449805e+01 - sys_corr_26: 2.88697718e+01 + sys_corr_14: 1.47399255e+00 + sys_corr_15: -2.44837563e+00 + sys_corr_16: -3.17668180e-02 + sys_corr_17: -5.90196489e+00 + sys_corr_18: -6.76938271e+00 + sys_corr_19: 1.33191874e+00 + sys_corr_20: 7.58134512e+00 + sys_corr_21: 1.41985219e+01 + sys_corr_22: 4.25831514e+01 + sys_corr_23: -2.71758989e+00 + sys_corr_24: -9.06410606e+00 + sys_corr_25: -1.11449805e+01 + sys_corr_26: -2.88697718e+01 sys_corr_27: -1.03691502e+01 sys_corr_28: 1.32124236e+00 sys_corr_29: 4.25832406e-01 @@ -8882,100 +8882,100 @@ bins: sys_corr_36: 4.46567606e+00 sys_corr_37: -8.60906785e+00 sys_corr_38: 4.92313750e+00 - sys_corr_39: 5.52799748e+00 + sys_corr_39: -5.52799748e+00 sys_corr_40: -7.34295391e+00 sys_corr_41: 3.88872016e+00 - sys_corr_42: -1.46089062e+01 + sys_corr_42: 1.46089062e+01 sys_corr_43: 1.01628624e+01 - sys_corr_44: -1.12193133e+01 - sys_corr_45: -1.71809784e+00 - sys_corr_46: 1.72348261e+00 - sys_corr_47: -6.58401864e+00 - sys_corr_48: 8.80557251e+00 + sys_corr_44: 1.12193133e+01 + sys_corr_45: 1.71809784e+00 + sys_corr_46: -1.72348261e+00 + sys_corr_47: 6.58401864e+00 + sys_corr_48: -8.80557251e+00 sys_corr_49: -4.21836062e+00 - sys_corr_50: -1.10003231e+01 - sys_corr_51: -2.66622523e+00 - sys_corr_52: 1.21842690e+00 - sys_corr_53: -4.23876729e+00 - sys_corr_54: 3.13043459e+00 + sys_corr_50: 1.10003231e+01 + sys_corr_51: 2.66622523e+00 + sys_corr_52: -1.21842690e+00 + sys_corr_53: 4.23876729e+00 + sys_corr_54: -3.13043459e+00 sys_corr_55: -1.24113033e-01 sys_corr_56: 8.04712206e+00 - sys_corr_57: 7.63517224e+00 + sys_corr_57: -7.63517224e+00 sys_corr_58: -4.70493756e+00 - sys_corr_59: -6.17849793e+00 + sys_corr_59: 6.17849793e+00 sys_corr_60: 1.26937685e+00 sys_corr_61: -8.14262999e+00 sys_corr_62: -1.32400474e+00 - sys_corr_63: -2.75026660e-01 + sys_corr_63: 2.75026660e-01 sys_corr_64: -1.11357178e+00 sys_corr_65: -3.84209479e+00 - sys_corr_66: -1.19764737e+00 - sys_corr_67: -3.70328688e+00 - sys_corr_68: 2.78891972e-01 - sys_corr_69: -5.27859058e-01 - sys_corr_70: -9.97592870e+00 - sys_corr_71: -1.34905537e+01 - sys_corr_72: -8.63111021e+00 - sys_corr_73: 2.38619391e+00 - sys_corr_74: 4.57631722e+00 - sys_corr_75: -5.12918161e+00 + sys_corr_66: 1.19764737e+00 + sys_corr_67: 3.70328688e+00 + sys_corr_68: -2.78891972e-01 + sys_corr_69: 5.27859058e-01 + sys_corr_70: 9.97592870e+00 + sys_corr_71: 2.38619391e+00 + sys_corr_72: 8.63111021e+00 + sys_corr_73: 1.34905537e+01 + sys_corr_74: -4.57631722e+00 + sys_corr_75: 5.12918161e+00 sys_corr_76: -6.48747666e+00 sys_corr_77: 3.68121549e+01 - sys_corr_78: 2.62704407e+01 + sys_corr_78: -4.31821849e+01 sys_corr_79: 3.39098779e-02 - sys_corr_80: 4.31821849e+01 + sys_corr_80: -2.62704407e+01 sys_corr_81: 2.12756068e+01 - sys_corr_82: 1.07966830e+01 - sys_corr_83: 9.32054980e+00 + sys_corr_82: 9.32054980e+00 + sys_corr_83: -1.07966830e+01 sys_corr_84: 1.34597253e+02 - sys_corr_85: -1.17261173e+02 - sys_corr_86: 5.86854313e+00 + sys_corr_85: 1.17261173e+02 + sys_corr_86: -5.86854313e+00 sys_corr_87: 2.13703189e+01 sys_corr_88: -1.01674033e+01 - sys_corr_89: 2.30266399e+01 - sys_corr_90: 4.17294295e+01 + sys_corr_89: -2.30266399e+01 + sys_corr_90: -4.17294295e+01 sys_corr_91: -1.94811209e+01 - sys_corr_92: -8.62000695e+00 - sys_corr_93: -9.13498181e-02 + sys_corr_92: 8.62000695e+00 + sys_corr_93: 2.43425965e-01 sys_corr_94: -2.33220626e+00 - sys_corr_95: -2.43425965e-01 + sys_corr_95: 9.13498181e-02 sys_corr_96: 8.40368995e-01 sys_corr_97: 3.57879507e+00 sys_corr_98: 1.25965014e+00 sys_corr_99: 3.38244382e+00 - sys_corr_100: -5.48143243e-01 - sys_corr_101: 9.17738770e-01 - sys_corr_102: -4.04392878e+00 - sys_corr_103: 1.90834225e+01 - sys_corr_104: 1.95677343e+00 - sys_corr_105: 8.05766122e+00 - sys_corr_106: 8.98033073e-01 - sys_corr_107: -2.21571934e-01 - sys_corr_108: 6.86503269e-01 - sys_corr_109: 6.77236646e-02 - sys_corr_110: 3.05212356e-01 - sys_corr_111: -3.01508427e+00 - sys_corr_112: -1.89066796e-01 + sys_corr_100: 1.95677343e+00 + sys_corr_101: 1.90834225e+01 + sys_corr_102: -8.05766122e+00 + sys_corr_103: 4.04392878e+00 + sys_corr_104: 9.17738770e-01 + sys_corr_105: -5.48143243e-01 + sys_corr_106: -8.98033073e-01 + sys_corr_107: 2.21571934e-01 + sys_corr_108: 3.01508427e+00 + sys_corr_109: -6.86503269e-01 + sys_corr_110: -6.77236646e-02 + sys_corr_111: 3.05212356e-01 + sys_corr_112: 1.89066796e-01 sys_corr_113: -7.41839996e-02 sys_corr_114: 4.39392122e-04 - sys_corr_115: -1.15208112e-01 - sys_corr_116: 2.19288436e-02 + sys_corr_115: 1.15208112e-01 + sys_corr_116: -2.19288436e-02 sys_corr_117: -9.53898469e-03 - sys_corr_118: 1.26772728e-02 - sys_corr_119: 9.06620669e-03 + sys_corr_118: -1.26772728e-02 + sys_corr_119: -9.06620669e-03 sys_corr_120: -1.12735141e-02 sys_corr_121: -1.10809792e-02 sys_corr_122: -1.65350961e-02 - sys_corr_123: 1.50708070e-02 + sys_corr_123: -1.50708070e-02 sys_corr_124: 4.82898716e-02 - sys_corr_125: 1.62477513e-02 + sys_corr_125: -1.62477513e-02 sys_corr_126: -5.63929205e-03 - sys_corr_127: -7.43676779e-01 - sys_corr_128: 2.56301473e-02 - sys_corr_129: -6.93275166e-02 + sys_corr_127: 7.43676779e-01 + sys_corr_128: -2.56301473e-02 + sys_corr_129: 6.93275166e-02 sys_corr_130: -1.32627689e-02 - sys_corr_131: -1.10773007e-02 - sys_corr_132: 4.10241222e-02 + sys_corr_131: 4.10241222e-02 + sys_corr_132: 1.10773007e-02 stat: 0.0 luminosity: 1.96521116e+02 - sys_corr_1: 8.33348434e+01 @@ -8984,26 +8984,26 @@ bins: sys_corr_4: -5.40473147e+01 sys_corr_5: 1.36931017e+01 sys_corr_6: -3.12721652e+01 - sys_corr_7: 2.06261621e+01 - sys_corr_8: 1.65526166e+01 + sys_corr_7: -2.06261621e+01 + sys_corr_8: -1.65526166e+01 sys_corr_9: -2.10704980e+01 - sys_corr_10: 1.63623838e+00 - sys_corr_11: 1.77092805e+01 - sys_corr_12: 1.76583167e+01 + sys_corr_10: -1.63623838e+00 + sys_corr_11: -1.77092805e+01 + sys_corr_12: -1.76583167e+01 sys_corr_13: 1.21365122e+01 - sys_corr_14: -2.61045105e-05 - sys_corr_15: 4.41763652e+00 - sys_corr_16: 1.47018347e+00 - sys_corr_17: -2.80447077e+00 - sys_corr_18: -3.14388923e+00 - sys_corr_19: 4.57948694e-01 - sys_corr_20: -1.15507155e+01 - sys_corr_21: 2.80887637e+00 - sys_corr_22: -9.26979501e+00 - sys_corr_23: 5.09256475e-01 - sys_corr_24: 4.21651731e+01 - sys_corr_25: 1.38520279e+01 - sys_corr_26: 2.45374054e+01 + sys_corr_14: 2.61045103e-05 + sys_corr_15: -4.41763652e+00 + sys_corr_16: -1.47018347e+00 + sys_corr_17: 2.80447077e+00 + sys_corr_18: 3.14388923e+00 + sys_corr_19: -4.57948694e-01 + sys_corr_20: 1.15507155e+01 + sys_corr_21: -2.80887637e+00 + sys_corr_22: 9.26979501e+00 + sys_corr_23: -5.09256475e-01 + sys_corr_24: -4.21651731e+01 + sys_corr_25: -1.38520279e+01 + sys_corr_26: -2.45374054e+01 sys_corr_27: -7.97808214e+00 sys_corr_28: 8.53827068e+00 sys_corr_29: -8.37172592e+00 @@ -9016,100 +9016,100 @@ bins: sys_corr_36: -1.01381052e+01 sys_corr_37: -9.46159788e+00 sys_corr_38: 6.30275915e+00 - sys_corr_39: 5.99584386e+00 + sys_corr_39: -5.99584386e+00 sys_corr_40: -1.23730314e+01 sys_corr_41: 1.89366150e+01 - sys_corr_42: -4.01392374e+00 + sys_corr_42: 4.01392374e+00 sys_corr_43: 1.18355011e+01 - sys_corr_44: -1.43550070e+01 - sys_corr_45: -8.27227598e-01 - sys_corr_46: 1.24643134e+01 - sys_corr_47: 5.53138956e+00 - sys_corr_48: 1.19139161e+01 + sys_corr_44: 1.43550070e+01 + sys_corr_45: 8.27227598e-01 + sys_corr_46: -1.24643134e+01 + sys_corr_47: -5.53138956e+00 + sys_corr_48: -1.19139161e+01 sys_corr_49: 2.80643649e+00 - sys_corr_50: -1.27310287e+01 - sys_corr_51: -3.35666515e-01 - sys_corr_52: 7.36886891e+00 - sys_corr_53: -1.95281082e+00 - sys_corr_54: 1.37655753e+00 + sys_corr_50: 1.27310287e+01 + sys_corr_51: 3.35666515e-01 + sys_corr_52: -7.36886891e+00 + sys_corr_53: 1.95281082e+00 + sys_corr_54: -1.37655753e+00 sys_corr_55: -4.72387880e-01 sys_corr_56: 2.20616215e+01 - sys_corr_57: 1.75006408e+01 + sys_corr_57: -1.75006408e+01 sys_corr_58: 1.43659840e+01 - sys_corr_59: 1.14007339e+01 + sys_corr_59: -1.14007339e+01 sys_corr_60: -1.72505867e+00 sys_corr_61: -2.15754248e+01 sys_corr_62: -6.68585292e+01 - sys_corr_63: -2.87065880e+01 + sys_corr_63: 2.87065880e+01 sys_corr_64: -9.15587036e-01 sys_corr_65: 2.61283521e+01 - sys_corr_66: -7.97302906e+01 - sys_corr_67: 3.78467121e+01 - sys_corr_68: -6.37187011e+01 - sys_corr_69: -1.06894720e+02 - sys_corr_70: 1.89541657e+02 - sys_corr_71: 3.25621986e+01 - sys_corr_72: 6.59773085e+00 - sys_corr_73: -5.81100551e-01 - sys_corr_74: -1.01198116e+01 - sys_corr_75: -1.75018900e+01 + sys_corr_66: 7.97302906e+01 + sys_corr_67: -3.78467121e+01 + sys_corr_68: 6.37187011e+01 + sys_corr_69: 1.06894720e+02 + sys_corr_70: -1.89541657e+02 + sys_corr_71: -5.81100551e-01 + sys_corr_72: -6.59773085e+00 + sys_corr_73: -3.25621986e+01 + sys_corr_74: 1.01198116e+01 + sys_corr_75: 1.75018900e+01 sys_corr_76: 3.90862527e+01 sys_corr_77: 1.26941735e+01 - sys_corr_78: 4.14077391e+00 + sys_corr_78: -3.21683848e+00 sys_corr_79: -4.54557057e-01 - sys_corr_80: 3.21683848e+00 + sys_corr_80: -4.14077391e+00 sys_corr_81: -8.32186404e-01 - sys_corr_82: 5.73235906e+00 - sys_corr_83: 6.04548405e+00 + sys_corr_82: 6.04548405e+00 + sys_corr_83: -5.73235906e+00 sys_corr_84: 7.88720856e-01 - sys_corr_85: -3.84543753e+00 - sys_corr_86: 1.58923369e+00 + sys_corr_85: 3.84543753e+00 + sys_corr_86: -1.58923369e+00 sys_corr_87: -2.13589109e+01 sys_corr_88: 1.20840022e+01 - sys_corr_89: 3.26065804e+00 - sys_corr_90: -4.67036031e+00 + sys_corr_89: -3.26065804e+00 + sys_corr_90: 4.67036031e+00 sys_corr_91: -5.68182827e+00 - sys_corr_92: -7.65732432e+00 - sys_corr_93: -1.77483057e-01 + sys_corr_92: 7.65732432e+00 + sys_corr_93: -6.10591465e-01 sys_corr_94: -1.29530305e+00 - sys_corr_95: 6.10591465e-01 + sys_corr_95: 1.77483057e-01 sys_corr_96: 5.33675640e-02 sys_corr_97: -6.39688602e-01 sys_corr_98: -2.51638648e-01 sys_corr_99: -2.78876218e-01 - sys_corr_100: 6.61539851e-01 - sys_corr_101: -2.24978224e-01 - sys_corr_102: 3.14356930e-01 - sys_corr_103: -3.84236138e-01 - sys_corr_104: -6.77826983e-01 - sys_corr_105: -2.09505290e-01 - sys_corr_106: -5.50856387e-01 - sys_corr_107: -4.44263116e-01 - sys_corr_108: 2.65491598e-01 - sys_corr_109: 8.90578648e-02 - sys_corr_110: 1.11138181e-01 - sys_corr_111: -1.82595942e-01 - sys_corr_112: -1.96971925e-01 + sys_corr_100: -6.77826983e-01 + sys_corr_101: -3.84236138e-01 + sys_corr_102: 2.09505290e-01 + sys_corr_103: -3.14356930e-01 + sys_corr_104: -2.24978224e-01 + sys_corr_105: 6.61539851e-01 + sys_corr_106: 5.50856387e-01 + sys_corr_107: 4.44263116e-01 + sys_corr_108: 1.82595942e-01 + sys_corr_109: -2.65491598e-01 + sys_corr_110: -8.90578648e-02 + sys_corr_111: 1.11138181e-01 + sys_corr_112: 1.96971925e-01 sys_corr_113: 4.94805672e-02 sys_corr_114: -9.35249260e-04 - sys_corr_115: 5.66270644e-02 - sys_corr_116: -4.60620481e-02 + sys_corr_115: -5.66270644e-02 + sys_corr_116: 4.60620481e-02 sys_corr_117: 3.14092703e-02 - sys_corr_118: 6.93781112e-02 - sys_corr_119: -2.77204352e-03 + sys_corr_118: -6.93781112e-02 + sys_corr_119: 2.77204352e-03 sys_corr_120: 1.94890223e-02 sys_corr_121: -3.48321413e-03 sys_corr_122: -1.08085029e-02 - sys_corr_123: 4.72044882e-03 + sys_corr_123: -4.72044882e-03 sys_corr_124: 4.59416922e-02 - sys_corr_125: 1.33712935e-02 + sys_corr_125: -1.33712935e-02 sys_corr_126: 1.69570528e-03 - sys_corr_127: -1.63711844e-01 - sys_corr_128: 3.04109842e-01 - sys_corr_129: -7.24750296e-02 + sys_corr_127: 1.63711844e-01 + sys_corr_128: -3.04109842e-01 + sys_corr_129: 7.24750296e-02 sys_corr_130: -3.32781411e-03 - sys_corr_131: 1.33291220e-02 - sys_corr_132: -4.96392251e-02 + sys_corr_131: -4.96392251e-02 + sys_corr_132: -1.33291220e-02 stat: 0.0 luminosity: 1.84345018e+02 - sys_corr_1: 6.92507611e+01 @@ -9118,26 +9118,26 @@ bins: sys_corr_4: -4.71379805e+01 sys_corr_5: -3.28045501e+00 sys_corr_6: -1.09662529e+01 - sys_corr_7: 2.63222680e+01 - sys_corr_8: 2.18021392e+01 + sys_corr_7: -2.63222680e+01 + sys_corr_8: -2.18021392e+01 sys_corr_9: -2.68836841e+01 - sys_corr_10: 3.02077044e+00 - sys_corr_11: 2.29552058e+01 - sys_corr_12: 2.34916080e+01 + sys_corr_10: -3.02077044e+00 + sys_corr_11: -2.29552058e+01 + sys_corr_12: -2.34916080e+01 sys_corr_13: 1.65758339e+01 - sys_corr_14: 5.70602251e+00 - sys_corr_15: 8.21452516e-01 - sys_corr_16: 1.79030126e+00 - sys_corr_17: -6.40843250e+00 - sys_corr_18: -3.07767280e+00 - sys_corr_19: 6.22057056e+00 - sys_corr_20: 2.28238623e+00 - sys_corr_21: -1.32512903e+01 - sys_corr_22: -9.61390402e+00 - sys_corr_23: -2.28507768e+00 - sys_corr_24: 2.59615982e+01 - sys_corr_25: 1.20284362e+01 - sys_corr_26: 2.25046878e+01 + sys_corr_14: -5.70602251e+00 + sys_corr_15: -8.21452516e-01 + sys_corr_16: -1.79030126e+00 + sys_corr_17: 6.40843250e+00 + sys_corr_18: 3.07767280e+00 + sys_corr_19: -6.22057056e+00 + sys_corr_20: -2.28238623e+00 + sys_corr_21: 1.32512903e+01 + sys_corr_22: 9.61390402e+00 + sys_corr_23: 2.28507768e+00 + sys_corr_24: -2.59615982e+01 + sys_corr_25: -1.20284362e+01 + sys_corr_26: -2.25046878e+01 sys_corr_27: -1.30358865e+01 sys_corr_28: 1.38228336e+01 sys_corr_29: -9.75668261e+00 @@ -9150,100 +9150,100 @@ bins: sys_corr_36: -4.46330062e+00 sys_corr_37: -5.13816403e+00 sys_corr_38: 1.91991680e+00 - sys_corr_39: 5.39126641e+00 + sys_corr_39: -5.39126641e+00 sys_corr_40: -5.98296833e+00 sys_corr_41: 8.51315225e+00 - sys_corr_42: -5.45765821e-01 + sys_corr_42: 5.45765821e-01 sys_corr_43: 1.13822607e+01 - sys_corr_44: -1.38905802e+01 - sys_corr_45: -2.76684090e+00 - sys_corr_46: 3.67904688e+00 - sys_corr_47: -2.09785103e-01 - sys_corr_48: -4.22295425e-02 + sys_corr_44: 1.38905802e+01 + sys_corr_45: 2.76684090e+00 + sys_corr_46: -3.67904688e+00 + sys_corr_47: 2.09785103e-01 + sys_corr_48: 4.22295425e-02 sys_corr_49: 7.00789658e+00 - sys_corr_50: -4.84343001e+00 - sys_corr_51: -5.62132589e+00 - sys_corr_52: 1.65509815e+00 - sys_corr_53: -2.74632449e+00 - sys_corr_54: -7.50558288e-01 + sys_corr_50: 4.84343001e+00 + sys_corr_51: 5.62132589e+00 + sys_corr_52: -1.65509815e+00 + sys_corr_53: 2.74632449e+00 + sys_corr_54: 7.50558288e-01 sys_corr_55: -1.97388680e+00 sys_corr_56: 2.61168088e+00 - sys_corr_57: 7.05756158e+00 + sys_corr_57: -7.05756158e+00 sys_corr_58: 2.03548740e+00 - sys_corr_59: 2.04361534e+00 + sys_corr_59: -2.04361534e+00 sys_corr_60: 1.02342561e+00 sys_corr_61: -7.29902363e+00 sys_corr_62: -7.64341575e+00 - sys_corr_63: 1.19245712e-01 + sys_corr_63: -1.19245712e-01 sys_corr_64: 2.82017893e+00 sys_corr_65: 6.69039825e-01 - sys_corr_66: -6.23238327e-01 - sys_corr_67: 2.46129452e+00 - sys_corr_68: 3.33643926e+00 - sys_corr_69: 2.11036837e+00 - sys_corr_70: -7.14641633e+00 - sys_corr_71: -1.07827334e+01 - sys_corr_72: -4.93325212e+00 - sys_corr_73: 4.76499587e+00 - sys_corr_74: 1.10338014e+00 - sys_corr_75: 5.18598179e+00 + sys_corr_66: 6.23238327e-01 + sys_corr_67: -2.46129452e+00 + sys_corr_68: -3.33643926e+00 + sys_corr_69: -2.11036837e+00 + sys_corr_70: 7.14641633e+00 + sys_corr_71: 4.76499587e+00 + sys_corr_72: 4.93325212e+00 + sys_corr_73: 1.07827334e+01 + sys_corr_74: -1.10338014e+00 + sys_corr_75: -5.18598179e+00 sys_corr_76: -1.47022958e+01 sys_corr_77: -1.41095298e+01 - sys_corr_78: 8.67243054e+00 + sys_corr_78: 1.34070815e+01 sys_corr_79: 5.16236023e+00 - sys_corr_80: -1.34070815e+01 + sys_corr_80: -8.67243054e+00 sys_corr_81: 8.64922388e+00 - sys_corr_82: -1.94244402e+00 - sys_corr_83: -1.49413493e+01 + sys_corr_82: -1.49413493e+01 + sys_corr_83: 1.94244402e+00 sys_corr_84: -7.06692920e+01 - sys_corr_85: -1.26520325e+02 - sys_corr_86: 4.73018197e+00 + sys_corr_85: 1.26520325e+02 + sys_corr_86: -4.73018197e+00 sys_corr_87: 8.89697060e+00 sys_corr_88: -7.54059523e+00 - sys_corr_89: 2.53863859e+01 - sys_corr_90: -1.31564899e+02 + sys_corr_89: -2.53863859e+01 + sys_corr_90: 1.31564899e+02 sys_corr_91: 1.16237261e+01 - sys_corr_92: -2.12329358e+00 - sys_corr_93: -1.06884136e+00 + sys_corr_92: 2.12329358e+00 + sys_corr_93: -2.27195396e+00 sys_corr_94: -4.30685673e+00 - sys_corr_95: 2.27195396e+00 + sys_corr_95: 1.06884136e+00 sys_corr_96: -2.28017011e-01 sys_corr_97: -6.65767662e-01 sys_corr_98: -3.90571258e-01 sys_corr_99: 3.72886784e-01 - sys_corr_100: 9.58181165e-01 - sys_corr_101: -6.47238632e-01 - sys_corr_102: 4.40295030e-01 - sys_corr_103: 3.10032662e+00 - sys_corr_104: 1.36328471e+00 - sys_corr_105: 1.39436426e+00 - sys_corr_106: -1.05454456e+00 - sys_corr_107: -1.07910106e+00 - sys_corr_108: -2.39932126e-01 - sys_corr_109: 7.32753976e-01 - sys_corr_110: 6.33296848e-01 - sys_corr_111: 2.31883470e-01 - sys_corr_112: -5.17996844e-01 + sys_corr_100: 1.36328471e+00 + sys_corr_101: 3.10032662e+00 + sys_corr_102: -1.39436426e+00 + sys_corr_103: -4.40295030e-01 + sys_corr_104: -6.47238632e-01 + sys_corr_105: 9.58181165e-01 + sys_corr_106: 1.05454456e+00 + sys_corr_107: 1.07910106e+00 + sys_corr_108: -2.31883470e-01 + sys_corr_109: 2.39932126e-01 + sys_corr_110: -7.32753976e-01 + sys_corr_111: 6.33296848e-01 + sys_corr_112: 5.17996844e-01 sys_corr_113: -1.04445569e-01 sys_corr_114: -2.40551570e-03 - sys_corr_115: 2.41767890e-01 - sys_corr_116: 3.93397445e-03 + sys_corr_115: -2.41767890e-01 + sys_corr_116: -3.93397445e-03 sys_corr_117: -8.90626605e-03 - sys_corr_118: 2.02366792e-01 - sys_corr_119: 4.76004567e-03 + sys_corr_118: -2.02366792e-01 + sys_corr_119: -4.76004567e-03 sys_corr_120: -3.77783006e-03 sys_corr_121: -1.81789050e-02 sys_corr_122: -5.51667803e-02 - sys_corr_123: 4.17847629e-02 + sys_corr_123: -4.17847629e-02 sys_corr_124: -7.90583969e-02 - sys_corr_125: 3.09749587e-02 + sys_corr_125: -3.09749587e-02 sys_corr_126: -7.33797417e-03 - sys_corr_127: -3.94212205e-01 - sys_corr_128: 3.03323343e-02 - sys_corr_129: 6.76679022e-02 + sys_corr_127: 3.94212205e-01 + sys_corr_128: -3.03323343e-02 + sys_corr_129: -6.76679022e-02 sys_corr_130: -2.21701548e-02 - sys_corr_131: 8.89630391e-03 - sys_corr_132: -8.46444623e-02 + sys_corr_131: -8.46444623e-02 + sys_corr_132: -8.89630391e-03 stat: 0.0 luminosity: 1.61920308e+02 - sys_corr_1: 5.60175442e+01 @@ -9252,26 +9252,26 @@ bins: sys_corr_4: -3.77788872e+01 sys_corr_5: -6.13467898e+00 sys_corr_6: -1.35946917e+00 - sys_corr_7: 2.28599191e+01 - sys_corr_8: 2.25186249e+01 + sys_corr_7: -2.28599191e+01 + sys_corr_8: -2.25186249e+01 sys_corr_9: -2.59498814e+01 - sys_corr_10: 6.11840854e+00 - sys_corr_11: 2.63381192e+01 - sys_corr_12: 2.63565528e+01 + sys_corr_10: -6.11840854e+00 + sys_corr_11: -2.63381192e+01 + sys_corr_12: -2.63565528e+01 sys_corr_13: 1.89419368e+01 - sys_corr_14: 3.28834576e+00 - sys_corr_15: 4.04699276e+00 - sys_corr_16: -1.81755514e+00 - sys_corr_17: -4.87684611e+00 - sys_corr_18: -2.54657144e+00 - sys_corr_19: 3.97476368e+00 - sys_corr_20: -1.66492078e+01 - sys_corr_21: -1.49270721e+01 - sys_corr_22: -8.81158583e+00 - sys_corr_23: -1.34550024e+00 - sys_corr_24: 2.31902073e+01 - sys_corr_25: 1.25457361e+01 - sys_corr_26: 2.53404972e+01 + sys_corr_14: -3.28834576e+00 + sys_corr_15: -4.04699276e+00 + sys_corr_16: 1.81755514e+00 + sys_corr_17: 4.87684611e+00 + sys_corr_18: 2.54657144e+00 + sys_corr_19: -3.97476368e+00 + sys_corr_20: 1.66492078e+01 + sys_corr_21: 1.49270721e+01 + sys_corr_22: 8.81158583e+00 + sys_corr_23: 1.34550024e+00 + sys_corr_24: -2.31902073e+01 + sys_corr_25: -1.25457361e+01 + sys_corr_26: -2.53404972e+01 sys_corr_27: -1.78775240e+01 sys_corr_28: 1.40402302e+01 sys_corr_29: -6.48224533e+00 @@ -9284,100 +9284,100 @@ bins: sys_corr_36: -1.35654618e+00 sys_corr_37: -1.04308816e+00 sys_corr_38: 1.55262874e+00 - sys_corr_39: 3.14591344e+00 + sys_corr_39: -3.14591344e+00 sys_corr_40: -2.96254942e+00 sys_corr_41: 6.57661265e+00 - sys_corr_42: -9.38453871e-01 + sys_corr_42: 9.38453871e-01 sys_corr_43: 1.65342522e+00 - sys_corr_44: -1.06868441e+01 - sys_corr_45: 4.21609376e+00 - sys_corr_46: -2.41439819e+00 - sys_corr_47: 1.43887584e+00 - sys_corr_48: 4.50360571e+00 + sys_corr_44: 1.06868441e+01 + sys_corr_45: -4.21609376e+00 + sys_corr_46: 2.41439819e+00 + sys_corr_47: -1.43887584e+00 + sys_corr_48: -4.50360571e+00 sys_corr_49: -2.23441457e+00 - sys_corr_50: -8.92321249e+00 - sys_corr_51: -3.11794650e+00 - sys_corr_52: 4.83604788e+00 - sys_corr_53: -1.36069410e+00 - sys_corr_54: -5.92184991e-02 + sys_corr_50: 8.92321249e+00 + sys_corr_51: 3.11794650e+00 + sys_corr_52: -4.83604788e+00 + sys_corr_53: 1.36069410e+00 + sys_corr_54: 5.92184991e-02 sys_corr_55: -9.88936396e-01 sys_corr_56: 4.65178464e+00 - sys_corr_57: 5.80893777e+00 + sys_corr_57: -5.80893777e+00 sys_corr_58: 2.58238362e+00 - sys_corr_59: 1.85350485e+00 + sys_corr_59: -1.85350485e+00 sys_corr_60: -5.51111589e-01 sys_corr_61: -3.11781150e+00 sys_corr_62: -8.85065777e+00 - sys_corr_63: -2.54129478e+00 + sys_corr_63: 2.54129478e+00 sys_corr_64: 1.09878000e+00 sys_corr_65: 4.30529948e-01 - sys_corr_66: -2.02437225e+00 - sys_corr_67: 1.57937832e+00 - sys_corr_68: -6.46011944e-01 - sys_corr_69: -6.84168874e+00 - sys_corr_70: 1.75928471e+00 - sys_corr_71: -4.35094879e+00 - sys_corr_72: -1.31756136e+01 - sys_corr_73: 3.40124172e+00 - sys_corr_74: 2.74800609e+00 - sys_corr_75: 1.97273975e+00 + sys_corr_66: 2.02437225e+00 + sys_corr_67: -1.57937832e+00 + sys_corr_68: 6.46011944e-01 + sys_corr_69: 6.84168874e+00 + sys_corr_70: -1.75928471e+00 + sys_corr_71: 3.40124172e+00 + sys_corr_72: 1.31756136e+01 + sys_corr_73: 4.35094879e+00 + sys_corr_74: -2.74800609e+00 + sys_corr_75: -1.97273975e+00 sys_corr_76: -6.32461517e+00 sys_corr_77: -3.58488707e+00 - sys_corr_78: 6.47643035e+00 + sys_corr_78: 5.04227717e+00 sys_corr_79: 9.57487320e-01 - sys_corr_80: -5.04227717e+00 + sys_corr_80: -6.47643035e+00 sys_corr_81: -1.94453073e+00 - sys_corr_82: -2.95844727e+00 - sys_corr_83: 4.07051592e+00 + sys_corr_82: 4.07051592e+00 + sys_corr_83: 2.95844727e+00 sys_corr_84: 4.28847461e+00 - sys_corr_85: -1.77846818e+01 - sys_corr_86: -5.40699491e-01 + sys_corr_85: 1.77846818e+01 + sys_corr_86: 5.40699491e-01 sys_corr_87: -1.87890155e+00 sys_corr_88: -4.30979764e+00 - sys_corr_89: -1.95551435e+01 - sys_corr_90: 3.50683280e+01 + sys_corr_89: 1.95551435e+01 + sys_corr_90: -3.50683280e+01 sys_corr_91: 1.76612474e+02 - sys_corr_92: -5.40305095e+00 - sys_corr_93: -1.97027268e+00 + sys_corr_92: 5.40305095e+00 + sys_corr_93: -6.79851455e+00 sys_corr_94: -6.90399987e+00 - sys_corr_95: 6.79851455e+00 + sys_corr_95: 1.97027268e+00 sys_corr_96: 1.57453968e-01 sys_corr_97: -1.92287112e+00 sys_corr_98: -3.23188708e-01 sys_corr_99: -3.01304579e-01 - sys_corr_100: 1.27555363e+00 - sys_corr_101: -4.85574922e-01 - sys_corr_102: 4.04329336e-01 - sys_corr_103: 3.44285673e+00 - sys_corr_104: 8.83074552e-01 - sys_corr_105: 2.07695048e+00 - sys_corr_106: -2.68303740e-01 - sys_corr_107: -3.91735198e-01 - sys_corr_108: 3.45984151e-01 - sys_corr_109: 6.20348759e-01 - sys_corr_110: -1.50879811e-01 - sys_corr_111: 1.07239833e+00 - sys_corr_112: 6.71133379e-01 + sys_corr_100: 8.83074552e-01 + sys_corr_101: 3.44285673e+00 + sys_corr_102: -2.07695048e+00 + sys_corr_103: -4.04329336e-01 + sys_corr_104: -4.85574922e-01 + sys_corr_105: 1.27555363e+00 + sys_corr_106: 2.68303740e-01 + sys_corr_107: 3.91735198e-01 + sys_corr_108: -1.07239833e+00 + sys_corr_109: -3.45984151e-01 + sys_corr_110: -6.20348759e-01 + sys_corr_111: -1.50879811e-01 + sys_corr_112: -6.71133379e-01 sys_corr_113: -2.95309392e-01 sys_corr_114: -3.22001267e-03 - sys_corr_115: 3.93596749e-01 - sys_corr_116: 1.42392140e-02 + sys_corr_115: -3.93596749e-01 + sys_corr_116: -1.42392140e-02 sys_corr_117: -1.34432551e-02 - sys_corr_118: 3.09860192e-01 - sys_corr_119: 2.49689249e-04 + sys_corr_118: -3.09860192e-01 + sys_corr_119: -2.49689249e-04 sys_corr_120: -1.50865943e-02 sys_corr_121: -1.14350675e-02 sys_corr_122: -1.70331804e-02 - sys_corr_123: 1.74579610e-02 + sys_corr_123: -1.74579610e-02 sys_corr_124: -1.19679728e-01 - sys_corr_125: 1.42341427e-02 + sys_corr_125: -1.42341427e-02 sys_corr_126: 6.21141741e-03 - sys_corr_127: -1.27124567e+00 - sys_corr_128: 4.13762649e-01 - sys_corr_129: -1.44811944e-01 + sys_corr_127: 1.27124567e+00 + sys_corr_128: -4.13762649e-01 + sys_corr_129: 1.44811944e-01 sys_corr_130: -1.98650250e-02 - sys_corr_131: -6.41335303e-03 - sys_corr_132: -1.94402698e-01 + sys_corr_131: -1.94402698e-01 + sys_corr_132: 6.41335303e-03 stat: 0.0 luminosity: 1.41340760e+02 - sys_corr_1: 4.66954388e+01 @@ -9386,26 +9386,26 @@ bins: sys_corr_4: -3.42134158e+01 sys_corr_5: -1.00888044e+01 sys_corr_6: -2.04222026e+00 - sys_corr_7: 2.62578760e+01 - sys_corr_8: 1.97873597e+01 + sys_corr_7: -2.62578760e+01 + sys_corr_8: -1.97873597e+01 sys_corr_9: -2.59682055e+01 - sys_corr_10: 3.45465972e+00 - sys_corr_11: 2.12964198e+01 - sys_corr_12: 2.38987858e+01 + sys_corr_10: -3.45465972e+00 + sys_corr_11: -2.12964198e+01 + sys_corr_12: -2.38987858e+01 sys_corr_13: 1.78809970e+01 - sys_corr_14: 2.01688165e+00 - sys_corr_15: 6.78139507e+00 - sys_corr_16: -1.33981741e+00 - sys_corr_17: -3.01880329e-01 - sys_corr_18: -3.56774671e+00 - sys_corr_19: 3.63141278e+00 - sys_corr_20: -7.00658074e+00 - sys_corr_21: -2.99261677e+00 - sys_corr_22: -6.44624007e+00 - sys_corr_23: 1.41171642e+01 - sys_corr_24: 1.73719393e+01 - sys_corr_25: 8.70641452e+00 - sys_corr_26: 2.22253706e+01 + sys_corr_14: -2.01688165e+00 + sys_corr_15: -6.78139507e+00 + sys_corr_16: 1.33981741e+00 + sys_corr_17: 3.01880329e-01 + sys_corr_18: 3.56774671e+00 + sys_corr_19: -3.63141278e+00 + sys_corr_20: 7.00658074e+00 + sys_corr_21: 2.99261677e+00 + sys_corr_22: 6.44624007e+00 + sys_corr_23: -1.41171642e+01 + sys_corr_24: -1.73719393e+01 + sys_corr_25: -8.70641452e+00 + sys_corr_26: -2.22253706e+01 sys_corr_27: -1.42951691e+01 sys_corr_28: 1.36392059e+01 sys_corr_29: -7.72723231e+00 @@ -9418,100 +9418,100 @@ bins: sys_corr_36: -8.95745073e-01 sys_corr_37: -1.03233212e+00 sys_corr_38: -1.10282442e+00 - sys_corr_39: 8.36479657e-01 + sys_corr_39: -8.36479657e-01 sys_corr_40: -2.95326087e+00 sys_corr_41: 5.50291275e+00 - sys_corr_42: -9.93792949e-01 + sys_corr_42: 9.93792949e-01 sys_corr_43: 5.09354865e+00 - sys_corr_44: -1.20818723e+01 - sys_corr_45: 7.59948513e-01 - sys_corr_46: 1.79414225e-01 - sys_corr_47: 1.06921147e+00 - sys_corr_48: 4.10060326e+00 + sys_corr_44: 1.20818723e+01 + sys_corr_45: -7.59948513e-01 + sys_corr_46: -1.79414225e-01 + sys_corr_47: -1.06921147e+00 + sys_corr_48: -4.10060326e+00 sys_corr_49: 9.79465693e-01 - sys_corr_50: -8.15528392e-02 - sys_corr_51: -4.61686373e-02 - sys_corr_52: -3.29745865e+00 - sys_corr_53: -9.30993961e+00 - sys_corr_54: 2.55572799e+00 + sys_corr_50: 8.15528392e-02 + sys_corr_51: 4.61686373e-02 + sys_corr_52: 3.29745865e+00 + sys_corr_53: 9.30993961e+00 + sys_corr_54: -2.55572799e+00 sys_corr_55: -1.56210419e+01 sys_corr_56: 3.64623806e+00 - sys_corr_57: 5.45928859e+00 + sys_corr_57: -5.45928859e+00 sys_corr_58: 2.18819769e+00 - sys_corr_59: 2.45801758e+00 + sys_corr_59: -2.45801758e+00 sys_corr_60: -1.56088378e-01 sys_corr_61: -7.37030545e+00 sys_corr_62: -1.16506721e+01 - sys_corr_63: -7.46271471e+00 + sys_corr_63: 7.46271471e+00 sys_corr_64: 2.55552307e+00 sys_corr_65: 8.95761880e+00 - sys_corr_66: -6.80304082e+00 - sys_corr_67: 1.88827885e+01 - sys_corr_68: 1.11936471e-02 - sys_corr_69: -5.25162536e+00 - sys_corr_70: 5.20602700e+00 - sys_corr_71: -1.89480148e+01 - sys_corr_72: -7.91609959e+00 - sys_corr_73: 9.84185632e+00 - sys_corr_74: 2.02781160e+01 - sys_corr_75: 8.34463441e+00 + sys_corr_66: 6.80304082e+00 + sys_corr_67: -1.88827885e+01 + sys_corr_68: -1.11936471e-02 + sys_corr_69: 5.25162536e+00 + sys_corr_70: -5.20602700e+00 + sys_corr_71: 9.84185632e+00 + sys_corr_72: 7.91609959e+00 + sys_corr_73: 1.89480148e+01 + sys_corr_74: -2.02781160e+01 + sys_corr_75: -8.34463441e+00 sys_corr_76: -3.01281122e+01 sys_corr_77: 1.48216160e+01 - sys_corr_78: -2.36321893e+01 + sys_corr_78: -1.17231918e+01 sys_corr_79: -1.51575599e+01 - sys_corr_80: 1.17231918e+01 + sys_corr_80: 2.36321893e+01 sys_corr_81: 9.98887418e+01 - sys_corr_82: -1.15278112e+01 - sys_corr_83: -1.94088440e+02 + sys_corr_82: -1.94088440e+02 + sys_corr_83: 1.15278112e+01 sys_corr_84: 6.08776820e+00 - sys_corr_85: 2.44203756e+01 - sys_corr_86: 2.41370926e+01 + sys_corr_85: -2.44203756e+01 + sys_corr_86: -2.41370926e+01 sys_corr_87: 2.91601312e+01 sys_corr_88: 2.50784449e+00 - sys_corr_89: 4.14111919e+00 - sys_corr_90: 2.35327736e+00 + sys_corr_89: -4.14111919e+00 + sys_corr_90: -2.35327736e+00 sys_corr_91: 2.39962425e+00 - sys_corr_92: 4.07734578e+00 - sys_corr_93: -7.41944870e-01 + sys_corr_92: -4.07734578e+00 + sys_corr_93: -2.43550107e+00 sys_corr_94: -2.30276151e+00 - sys_corr_95: 2.43550107e+00 + sys_corr_95: 7.41944870e-01 sys_corr_96: -4.72735711e-02 sys_corr_97: -6.84253176e-01 sys_corr_98: -1.52969403e-02 sys_corr_99: -1.11232231e-01 - sys_corr_100: 5.24553921e-01 - sys_corr_101: -1.14407078e-02 - sys_corr_102: 2.57816710e-02 - sys_corr_103: 1.55298309e+00 - sys_corr_104: 5.68997717e-01 - sys_corr_105: 7.61636187e-01 - sys_corr_106: -1.96182894e-01 - sys_corr_107: -8.09891778e-02 - sys_corr_108: 1.79717141e-02 - sys_corr_109: 6.14841267e-02 - sys_corr_110: -6.82065803e-03 - sys_corr_111: 4.65091699e-01 - sys_corr_112: 1.36240551e-01 + sys_corr_100: 5.68997717e-01 + sys_corr_101: 1.55298309e+00 + sys_corr_102: -7.61636187e-01 + sys_corr_103: -2.57816710e-02 + sys_corr_104: -1.14407078e-02 + sys_corr_105: 5.24553921e-01 + sys_corr_106: 1.96182894e-01 + sys_corr_107: 8.09891778e-02 + sys_corr_108: -4.65091699e-01 + sys_corr_109: -1.79717141e-02 + sys_corr_110: -6.14841267e-02 + sys_corr_111: -6.82065803e-03 + sys_corr_112: -1.36240551e-01 sys_corr_113: 1.82704753e-01 sys_corr_114: -3.46325581e-03 - sys_corr_115: 3.77516423e-01 - sys_corr_116: -1.02941855e-02 + sys_corr_115: -3.77516423e-01 + sys_corr_116: 1.02941855e-02 sys_corr_117: -1.01252738e-02 - sys_corr_118: 2.24386766e-01 - sys_corr_119: -3.92813117e-03 + sys_corr_118: -2.24386766e-01 + sys_corr_119: 3.92813117e-03 sys_corr_120: -1.31032600e-02 sys_corr_121: -4.00184820e-03 sys_corr_122: -1.23370788e-03 - sys_corr_123: 6.29779705e-03 + sys_corr_123: -6.29779705e-03 sys_corr_124: -1.04273560e-01 - sys_corr_125: 1.05860142e-03 + sys_corr_125: -1.05860142e-03 sys_corr_126: 4.70232045e-03 - sys_corr_127: -2.22411610e-01 - sys_corr_128: 2.22302657e-01 - sys_corr_129: 1.56587597e-01 + sys_corr_127: 2.22411610e-01 + sys_corr_128: -2.22302657e-01 + sys_corr_129: -1.56587597e-01 sys_corr_130: -1.02997124e-02 - sys_corr_131: -3.09227503e-03 - sys_corr_132: -1.31915466e-01 + sys_corr_131: -1.31915466e-01 + sys_corr_132: 3.09227503e-03 stat: 0.0 luminosity: 1.29830074e+02 - sys_corr_1: 3.40799556e+01 @@ -9520,26 +9520,26 @@ bins: sys_corr_4: -3.15126357e+01 sys_corr_5: -1.12213873e+01 sys_corr_6: -4.31578750e-01 - sys_corr_7: 2.29844200e+01 - sys_corr_8: 1.67888796e+01 + sys_corr_7: -2.29844200e+01 + sys_corr_8: -1.67888796e+01 sys_corr_9: -2.24770091e+01 - sys_corr_10: 2.77700400e+00 - sys_corr_11: 1.72397353e+01 - sys_corr_12: 2.25354688e+01 + sys_corr_10: -2.77700400e+00 + sys_corr_11: -1.72397353e+01 + sys_corr_12: -2.25354688e+01 sys_corr_13: 1.69860377e+01 - sys_corr_14: 2.89140485e+00 - sys_corr_15: 4.33475574e+00 - sys_corr_16: -1.52241686e+00 - sys_corr_17: -3.52551071e+00 - sys_corr_18: 7.81123931e-01 - sys_corr_19: 8.55621913e+00 - sys_corr_20: -6.34654999e+00 - sys_corr_21: -8.80930926e+00 - sys_corr_22: -8.07610098e+00 - sys_corr_23: 1.55166768e+00 - sys_corr_24: 6.63485280e+00 - sys_corr_25: 2.13451731e+01 - sys_corr_26: 2.11460027e+01 + sys_corr_14: -2.89140485e+00 + sys_corr_15: -4.33475574e+00 + sys_corr_16: 1.52241686e+00 + sys_corr_17: 3.52551071e+00 + sys_corr_18: -7.81123931e-01 + sys_corr_19: -8.55621913e+00 + sys_corr_20: 6.34654999e+00 + sys_corr_21: 8.80930926e+00 + sys_corr_22: 8.07610098e+00 + sys_corr_23: -1.55166768e+00 + sys_corr_24: -6.63485280e+00 + sys_corr_25: -2.13451731e+01 + sys_corr_26: -2.11460027e+01 sys_corr_27: -6.29820755e+00 sys_corr_28: 1.44708149e+01 sys_corr_29: -3.85097620e+00 @@ -9552,100 +9552,100 @@ bins: sys_corr_36: -1.56777815e+00 sys_corr_37: -1.09746173e+00 sys_corr_38: -9.66448296e-02 - sys_corr_39: 2.84223894e+00 + sys_corr_39: -2.84223894e+00 sys_corr_40: -1.08934256e+00 sys_corr_41: 5.68584341e+00 - sys_corr_42: -1.77371780e+00 + sys_corr_42: 1.77371780e+00 sys_corr_43: -1.09303854e+00 - sys_corr_44: -1.02346213e+01 - sys_corr_45: 4.47302276e+00 - sys_corr_46: -2.07082148e+00 - sys_corr_47: 1.11550410e+00 - sys_corr_48: 4.03443555e+00 + sys_corr_44: 1.02346213e+01 + sys_corr_45: -4.47302276e+00 + sys_corr_46: 2.07082148e+00 + sys_corr_47: -1.11550410e+00 + sys_corr_48: -4.03443555e+00 sys_corr_49: 1.63826274e+00 - sys_corr_50: -2.40653737e+00 - sys_corr_51: -9.34265554e+00 - sys_corr_52: -4.78815508e+00 - sys_corr_53: -1.44493926e+00 - sys_corr_54: 8.58766824e+00 + sys_corr_50: 2.40653737e+00 + sys_corr_51: 9.34265554e+00 + sys_corr_52: 4.78815508e+00 + sys_corr_53: 1.44493926e+00 + sys_corr_54: -8.58766824e+00 sys_corr_55: -3.45701188e+00 sys_corr_56: 2.56155446e+00 - sys_corr_57: 9.65483549e+00 + sys_corr_57: -9.65483549e+00 sys_corr_58: 1.99930217e+00 - sys_corr_59: -3.82932219e+00 + sys_corr_59: 3.82932219e+00 sys_corr_60: -4.84372715e-01 sys_corr_61: -3.35367784e+00 sys_corr_62: -1.22034939e+01 - sys_corr_63: -2.42839359e+00 + sys_corr_63: 2.42839359e+00 sys_corr_64: 1.25207574e+01 sys_corr_65: 4.06346594e+00 - sys_corr_66: -9.66853678e+00 - sys_corr_67: 5.92031494e+00 - sys_corr_68: -2.80708055e+00 - sys_corr_69: -1.57795121e+01 - sys_corr_70: 1.84153218e+01 - sys_corr_71: -2.36516279e+01 - sys_corr_72: -2.30156873e+01 - sys_corr_73: 8.06212642e+00 - sys_corr_74: 4.34643483e+01 - sys_corr_75: 2.68124153e+01 + sys_corr_66: 9.66853678e+00 + sys_corr_67: -5.92031494e+00 + sys_corr_68: 2.80708055e+00 + sys_corr_69: 1.57795121e+01 + sys_corr_70: -1.84153218e+01 + sys_corr_71: 8.06212642e+00 + sys_corr_72: 2.30156873e+01 + sys_corr_73: 2.36516279e+01 + sys_corr_74: -4.34643483e+01 + sys_corr_75: -2.68124153e+01 sys_corr_76: -1.09681935e+02 sys_corr_77: 5.91696711e-02 - sys_corr_78: -1.52036679e+01 + sys_corr_78: -6.89227945e+00 sys_corr_79: -8.85539550e+00 - sys_corr_80: 6.89227945e+00 + sys_corr_80: 1.52036679e+01 sys_corr_81: -8.42410535e+00 - sys_corr_82: -2.14950077e+00 - sys_corr_83: 9.99555447e+00 + sys_corr_82: 9.99555447e+00 + sys_corr_83: 2.14950077e+00 sys_corr_84: 1.10939208e+00 - sys_corr_85: 1.54655202e+01 - sys_corr_86: -9.09276999e+01 + sys_corr_85: -1.54655202e+01 + sys_corr_86: 9.09276999e+01 sys_corr_87: -4.51216944e+01 sys_corr_88: -1.74737357e+02 - sys_corr_89: 4.32816307e+00 - sys_corr_90: -1.12147451e+00 + sys_corr_89: -4.32816307e+00 + sys_corr_90: 1.12147451e+00 sys_corr_91: -8.05417604e+00 - sys_corr_92: -3.77725670e+01 - sys_corr_93: -3.72772880e-01 + sys_corr_92: 3.77725670e+01 + sys_corr_93: -1.78369752e+00 sys_corr_94: -2.42404669e+00 - sys_corr_95: 1.78369752e+00 + sys_corr_95: 3.72772880e-01 sys_corr_96: -2.62322988e-01 sys_corr_97: -5.62332632e-01 sys_corr_98: -2.29147465e-02 sys_corr_99: 7.57111594e-02 - sys_corr_100: 6.55049952e-01 - sys_corr_101: -1.07077609e-01 - sys_corr_102: 1.12343157e-01 - sys_corr_103: 8.02166037e-01 - sys_corr_104: 4.32716212e-01 - sys_corr_105: 2.89412574e-01 - sys_corr_106: -2.06357797e-01 - sys_corr_107: -3.41126587e-01 - sys_corr_108: -1.11209748e-01 - sys_corr_109: 2.70155908e-01 - sys_corr_110: 4.62714164e-01 - sys_corr_111: 1.89277452e-01 - sys_corr_112: 3.27864314e-02 + sys_corr_100: 4.32716212e-01 + sys_corr_101: 8.02166037e-01 + sys_corr_102: -2.89412574e-01 + sys_corr_103: -1.12343157e-01 + sys_corr_104: -1.07077609e-01 + sys_corr_105: 6.55049952e-01 + sys_corr_106: 2.06357797e-01 + sys_corr_107: 3.41126587e-01 + sys_corr_108: -1.89277452e-01 + sys_corr_109: 1.11209748e-01 + sys_corr_110: -2.70155908e-01 + sys_corr_111: 4.62714164e-01 + sys_corr_112: -3.27864314e-02 sys_corr_113: 2.85075321e-01 sys_corr_114: -2.68813183e-03 - sys_corr_115: 2.06695077e-01 - sys_corr_116: -3.61557226e-03 + sys_corr_115: -2.06695077e-01 + sys_corr_116: 3.61557226e-03 sys_corr_117: 2.77281856e-03 - sys_corr_118: 2.05070096e-01 - sys_corr_119: -4.09467265e-03 + sys_corr_118: -2.05070096e-01 + sys_corr_119: 4.09467265e-03 sys_corr_120: -3.29411596e-03 sys_corr_121: -5.59702027e-03 sys_corr_122: -1.12520052e-02 - sys_corr_123: 7.98270876e-03 + sys_corr_123: -7.98270876e-03 sys_corr_124: -1.50360221e-02 - sys_corr_125: 1.29553313e-02 + sys_corr_125: -1.29553313e-02 sys_corr_126: 2.83796391e-03 - sys_corr_127: -1.00874534e-01 - sys_corr_128: 1.58763042e-01 - sys_corr_129: -3.37368577e-01 + sys_corr_127: 1.00874534e-01 + sys_corr_128: -1.58763042e-01 + sys_corr_129: 3.37368577e-01 sys_corr_130: -2.21654648e-02 - sys_corr_131: 3.59189255e-03 - sys_corr_132: -1.40405263e-01 + sys_corr_131: -1.40405263e-01 + sys_corr_132: -3.59189255e-03 stat: 0.0 luminosity: 1.08345072e+02 - sys_corr_1: 2.54662129e+01 @@ -9654,26 +9654,26 @@ bins: sys_corr_4: -2.83105554e+01 sys_corr_5: -1.24849650e+01 sys_corr_6: -1.01561274e+00 - sys_corr_7: 1.69523869e+01 - sys_corr_8: 1.49506477e+01 + sys_corr_7: -1.69523869e+01 + sys_corr_8: -1.49506477e+01 sys_corr_9: -2.04858682e+01 - sys_corr_10: 4.66590991e+00 - sys_corr_11: 1.55409065e+01 - sys_corr_12: 1.70502099e+01 + sys_corr_10: -4.66590991e+00 + sys_corr_11: -1.55409065e+01 + sys_corr_12: -1.70502099e+01 sys_corr_13: 1.02065923e+01 - sys_corr_14: 4.36789234e+00 - sys_corr_15: 1.79069411e+00 - sys_corr_16: -9.35601219e-02 - sys_corr_17: -3.17776472e+00 - sys_corr_18: 1.69095113e+00 - sys_corr_19: 6.71293758e+00 - sys_corr_20: -2.77999350e+00 - sys_corr_21: -6.75559055e+00 - sys_corr_22: -6.88357678e+00 - sys_corr_23: 5.76896222e-01 - sys_corr_24: 8.64622418e+00 - sys_corr_25: -2.20971855e+00 - sys_corr_26: 1.69718991e+01 + sys_corr_14: -4.36789234e+00 + sys_corr_15: -1.79069411e+00 + sys_corr_16: 9.35601219e-02 + sys_corr_17: 3.17776472e+00 + sys_corr_18: -1.69095113e+00 + sys_corr_19: -6.71293758e+00 + sys_corr_20: 2.77999350e+00 + sys_corr_21: 6.75559055e+00 + sys_corr_22: 6.88357678e+00 + sys_corr_23: -5.76896222e-01 + sys_corr_24: -8.64622418e+00 + sys_corr_25: 2.20971855e+00 + sys_corr_26: -1.69718991e+01 sys_corr_27: -6.25957679e+00 sys_corr_28: 1.46756491e+01 sys_corr_29: -6.28126092e+00 @@ -9686,100 +9686,100 @@ bins: sys_corr_36: -1.20676932e+00 sys_corr_37: -1.48976895e+00 sys_corr_38: 1.96021161e-01 - sys_corr_39: 2.39910026e+00 + sys_corr_39: -2.39910026e+00 sys_corr_40: -4.36146556e+00 sys_corr_41: 6.20014423e+00 - sys_corr_42: -3.49846393e+00 + sys_corr_42: 3.49846393e+00 sys_corr_43: 1.01000871e+00 - sys_corr_44: -1.36392354e+01 - sys_corr_45: 1.93617271e+00 - sys_corr_46: 7.39737789e-01 - sys_corr_47: 3.38144116e+00 - sys_corr_48: 9.31403987e+00 + sys_corr_44: 1.36392354e+01 + sys_corr_45: -1.93617271e+00 + sys_corr_46: -7.39737789e-01 + sys_corr_47: -3.38144116e+00 + sys_corr_48: -9.31403987e+00 sys_corr_49: 3.65529166e+00 - sys_corr_50: 1.60403230e+00 - sys_corr_51: -7.94436987e+00 - sys_corr_52: -2.19154563e+00 - sys_corr_53: -5.84620284e-01 - sys_corr_54: 8.86233510e+00 + sys_corr_50: -1.60403230e+00 + sys_corr_51: 7.94436987e+00 + sys_corr_52: 2.19154563e+00 + sys_corr_53: 5.84620284e-01 + sys_corr_54: -8.86233510e+00 sys_corr_55: -1.01222252e+00 sys_corr_56: 3.77920530e+00 - sys_corr_57: 3.54213231e+00 + sys_corr_57: -3.54213231e+00 sys_corr_58: 5.17117219e+00 - sys_corr_59: 5.77697364e+00 + sys_corr_59: -5.77697364e+00 sys_corr_60: 2.72974772e+00 sys_corr_61: -1.01889529e+01 sys_corr_62: -6.90610113e+00 - sys_corr_63: -1.27435749e+01 + sys_corr_63: 1.27435749e+01 sys_corr_64: -5.95639439e+00 sys_corr_65: 7.99824884e+00 - sys_corr_66: -2.48955934e+00 - sys_corr_67: 2.45243404e+00 - sys_corr_68: -1.37378520e+01 - sys_corr_69: -1.13572128e+01 - sys_corr_70: -5.83316966e-01 - sys_corr_71: -9.99488417e+00 - sys_corr_72: -3.87938303e+00 - sys_corr_73: 3.53542656e+00 - sys_corr_74: -2.23422647e+01 - sys_corr_75: 3.75328519e-01 + sys_corr_66: 2.48955934e+00 + sys_corr_67: -2.45243404e+00 + sys_corr_68: 1.37378520e+01 + sys_corr_69: 1.13572128e+01 + sys_corr_70: 5.83316966e-01 + sys_corr_71: 3.53542656e+00 + sys_corr_72: 3.87938303e+00 + sys_corr_73: 9.99488417e+00 + sys_corr_74: 2.23422647e+01 + sys_corr_75: -3.75328519e-01 sys_corr_76: -1.65372884e+02 sys_corr_77: 3.65479806e+00 - sys_corr_78: -3.61169574e+00 + sys_corr_78: 1.32504017e+00 sys_corr_79: -5.65654743e+00 - sys_corr_80: -1.32504017e+00 + sys_corr_80: 3.61169574e+00 sys_corr_81: -1.56625693e+01 - sys_corr_82: -4.23409442e+00 - sys_corr_83: 2.94922956e+01 + sys_corr_82: 2.94922956e+01 + sys_corr_83: 4.23409442e+00 sys_corr_84: 3.94139212e+00 - sys_corr_85: 1.38811715e+01 - sys_corr_86: 1.24842590e+02 + sys_corr_85: -1.38811715e+01 + sys_corr_86: -1.24842590e+02 sys_corr_87: -3.46606025e+01 sys_corr_88: 7.19212375e+01 - sys_corr_89: 4.03261910e+00 - sys_corr_90: -3.15375566e+00 + sys_corr_89: -4.03261910e+00 + sys_corr_90: 3.15375566e+00 sys_corr_91: -4.69162738e+00 - sys_corr_92: -9.12507458e+01 - sys_corr_93: -4.43509004e-01 + sys_corr_92: 9.12507458e+01 + sys_corr_93: -3.85234086e-01 sys_corr_94: -1.77180349e+00 - sys_corr_95: 3.85234086e-01 + sys_corr_95: 4.43509004e-01 sys_corr_96: 5.92925002e-02 sys_corr_97: -1.17953935e+00 sys_corr_98: -4.95965609e-01 sys_corr_99: -2.36820368e-01 - sys_corr_100: 2.94549639e-01 - sys_corr_101: -1.27602562e-01 - sys_corr_102: -3.50598741e-01 - sys_corr_103: 3.11152039e-01 - sys_corr_104: 6.18151037e-02 - sys_corr_105: -1.06517993e-01 - sys_corr_106: -1.21617547e-01 - sys_corr_107: -2.29905125e-01 - sys_corr_108: 2.77803913e-01 - sys_corr_109: 2.74635335e-01 - sys_corr_110: 3.44874260e-01 - sys_corr_111: 2.21772587e-01 - sys_corr_112: 2.55452986e-01 + sys_corr_100: 6.18151037e-02 + sys_corr_101: 3.11152039e-01 + sys_corr_102: 1.06517993e-01 + sys_corr_103: 3.50598741e-01 + sys_corr_104: -1.27602562e-01 + sys_corr_105: 2.94549639e-01 + sys_corr_106: 1.21617547e-01 + sys_corr_107: 2.29905125e-01 + sys_corr_108: -2.21772587e-01 + sys_corr_109: -2.77803913e-01 + sys_corr_110: -2.74635335e-01 + sys_corr_111: 3.44874260e-01 + sys_corr_112: -2.55452986e-01 sys_corr_113: 1.87979988e-01 sys_corr_114: -2.64800691e-03 - sys_corr_115: -1.45667453e-01 - sys_corr_116: 5.48197473e-02 + sys_corr_115: 1.45667453e-01 + sys_corr_116: -5.48197473e-02 sys_corr_117: -1.54321306e-02 - sys_corr_118: 3.37664560e-01 - sys_corr_119: -7.19234023e-03 + sys_corr_118: -3.37664560e-01 + sys_corr_119: 7.19234023e-03 sys_corr_120: -1.12949799e-02 sys_corr_121: -2.65605757e-03 sys_corr_122: -1.12662851e-02 - sys_corr_123: 7.88850803e-03 + sys_corr_123: -7.88850803e-03 sys_corr_124: -2.82239982e-02 - sys_corr_125: 3.62084010e-03 + sys_corr_125: -3.62084010e-03 sys_corr_126: 5.70256235e-03 - sys_corr_127: -9.48736028e-03 - sys_corr_128: 1.50381024e-01 - sys_corr_129: -1.77897067e-01 + sys_corr_127: 9.48736028e-03 + sys_corr_128: -1.50381024e-01 + sys_corr_129: 1.77897067e-01 sys_corr_130: -1.11278246e-02 - sys_corr_131: 4.73276926e-04 - sys_corr_132: -1.44843930e-01 + sys_corr_131: -1.44843930e-01 + sys_corr_132: -4.73276926e-04 stat: 0.0 luminosity: 8.90816080e+01 - sys_corr_1: 1.16975314e+01 @@ -9788,26 +9788,26 @@ bins: sys_corr_4: -2.52652247e+01 sys_corr_5: -1.49684986e+01 sys_corr_6: -2.91191816e+00 - sys_corr_7: 7.87288457e+00 - sys_corr_8: 8.45378262e+00 + sys_corr_7: -7.87288457e+00 + sys_corr_8: -8.45378262e+00 sys_corr_9: -1.02050310e+01 - sys_corr_10: 1.98823565e+00 - sys_corr_11: 7.12706490e+00 - sys_corr_12: 2.96570390e+00 + sys_corr_10: -1.98823565e+00 + sys_corr_11: -7.12706490e+00 + sys_corr_12: -2.96570390e+00 sys_corr_13: 3.76619067e+00 - sys_corr_14: -7.54886174e-02 - sys_corr_15: 9.83193737e-01 - sys_corr_16: -8.91926242e-01 - sys_corr_17: -9.69792173e-01 - sys_corr_18: -7.16850672e-01 - sys_corr_19: 1.24839570e+00 - sys_corr_20: -4.92341943e+00 - sys_corr_21: -4.09109082e+00 - sys_corr_22: -7.99928014e+00 - sys_corr_23: -5.03590923e-01 - sys_corr_24: 1.82111284e+01 - sys_corr_25: 3.32988146e+00 - sys_corr_26: 2.57164981e+00 + sys_corr_14: 7.54886174e-02 + sys_corr_15: -9.83193737e-01 + sys_corr_16: 8.91926242e-01 + sys_corr_17: 9.69792173e-01 + sys_corr_18: 7.16850672e-01 + sys_corr_19: -1.24839570e+00 + sys_corr_20: 4.92341943e+00 + sys_corr_21: 4.09109082e+00 + sys_corr_22: 7.99928014e+00 + sys_corr_23: 5.03590923e-01 + sys_corr_24: -1.82111284e+01 + sys_corr_25: -3.32988146e+00 + sys_corr_26: -2.57164981e+00 sys_corr_27: -2.28874015e+00 sys_corr_28: 6.58824324e-01 sys_corr_29: -1.04975266e+01 @@ -9816,104 +9816,104 @@ bins: sys_corr_32: 1.17850195e+00 sys_corr_33: 5.82197750e-01 sys_corr_34: 3.28187644e+00 - sys_corr_35: -8.77439531e-04 + sys_corr_35: -8.77439530e-04 sys_corr_36: -2.95261914e+00 sys_corr_37: -2.09272593e+00 sys_corr_38: 1.96420868e+00 - sys_corr_39: 1.32875620e+00 + sys_corr_39: -1.32875620e+00 sys_corr_40: -3.86095374e+00 sys_corr_41: 2.23254390e+00 - sys_corr_42: 4.28995823e-01 + sys_corr_42: -4.28995823e-01 sys_corr_43: 3.00665483e+00 - sys_corr_44: -6.97769717e+00 - sys_corr_45: 1.56639375e-01 - sys_corr_46: 1.27707441e+00 - sys_corr_47: -2.24595436e+00 - sys_corr_48: 1.81180196e+00 + sys_corr_44: 6.97769717e+00 + sys_corr_45: -1.56639375e-01 + sys_corr_46: -1.27707441e+00 + sys_corr_47: 2.24595436e+00 + sys_corr_48: -1.81180196e+00 sys_corr_49: 1.72850843e+00 - sys_corr_50: -6.66329098e-01 - sys_corr_51: 3.79116342e+00 - sys_corr_52: 3.80687195e+00 - sys_corr_53: 2.26996643e-02 - sys_corr_54: 5.09523701e-01 + sys_corr_50: 6.66329098e-01 + sys_corr_51: -3.79116342e+00 + sys_corr_52: -3.80687195e+00 + sys_corr_53: -2.26996643e-02 + sys_corr_54: -5.09523701e-01 sys_corr_55: -3.17866631e+00 sys_corr_56: 3.78806649e-01 - sys_corr_57: 1.22473239e+00 + sys_corr_57: -1.22473239e+00 sys_corr_58: 1.59061561e+00 - sys_corr_59: 2.09635243e-01 + sys_corr_59: -2.09635243e-01 sys_corr_60: 2.26808799e-01 sys_corr_61: -1.36914876e+00 sys_corr_62: -2.91303454e+00 - sys_corr_63: 8.48576784e-01 + sys_corr_63: -8.48576784e-01 sys_corr_64: 9.55222164e-01 sys_corr_65: 1.94842776e+00 - sys_corr_66: 1.78695075e+00 - sys_corr_67: 4.75968031e+00 - sys_corr_68: -1.38268482e+00 - sys_corr_69: -2.05056586e+00 - sys_corr_70: -1.13447990e+00 - sys_corr_71: 1.92617009e+00 - sys_corr_72: -1.17057523e+00 - sys_corr_73: 2.51328839e+00 - sys_corr_74: -1.87631078e+00 - sys_corr_75: 1.53461023e+00 + sys_corr_66: -1.78695075e+00 + sys_corr_67: -4.75968031e+00 + sys_corr_68: 1.38268482e+00 + sys_corr_69: 2.05056586e+00 + sys_corr_70: 1.13447990e+00 + sys_corr_71: 2.51328839e+00 + sys_corr_72: 1.17057523e+00 + sys_corr_73: -1.92617009e+00 + sys_corr_74: 1.87631078e+00 + sys_corr_75: -1.53461023e+00 sys_corr_76: -3.23456044e+00 sys_corr_77: -1.02327430e+00 - sys_corr_78: -1.11234986e+00 + sys_corr_78: -2.27258442e+00 sys_corr_79: 4.49085118e+00 - sys_corr_80: 2.27258442e+00 + sys_corr_80: 1.11234986e+00 sys_corr_81: 2.40881863e+00 - sys_corr_82: -7.45315184e-01 - sys_corr_83: -3.69073550e+00 + sys_corr_82: -3.69073550e+00 + sys_corr_83: 7.45315184e-01 sys_corr_84: -3.43284088e-01 - sys_corr_85: -6.86416596e+00 - sys_corr_86: 1.67088847e+00 + sys_corr_85: 6.86416596e+00 + sys_corr_86: -1.67088847e+00 sys_corr_87: 3.69566979e-02 sys_corr_88: -5.45597950e+00 - sys_corr_89: -8.26267955e+00 - sys_corr_90: -3.89651993e-01 + sys_corr_89: 8.26267955e+00 + sys_corr_90: 3.89651993e-01 sys_corr_91: 9.00374334e+00 - sys_corr_92: -3.10642450e+00 - sys_corr_93: 1.33918360e+01 + sys_corr_92: 3.10642450e+00 + sys_corr_93: 1.07753629e+02 sys_corr_94: 1.04940660e+02 - sys_corr_95: -1.07753629e+02 + sys_corr_95: -1.33918360e+01 sys_corr_96: -6.57559940e-01 sys_corr_97: -2.54312532e+01 sys_corr_98: -8.37454930e+00 sys_corr_99: -4.52664842e+00 - sys_corr_100: 8.01269442e-02 - sys_corr_101: 4.07409526e-01 - sys_corr_102: -1.75921232e+00 - sys_corr_103: 1.59903798e+00 - sys_corr_104: -5.92608657e+00 - sys_corr_105: -2.31299218e+00 - sys_corr_106: -1.55699816e-01 - sys_corr_107: 1.25541620e-02 - sys_corr_108: -1.02848740e+00 - sys_corr_109: 1.06801981e+00 - sys_corr_110: 1.26155015e+00 - sys_corr_111: 2.58215041e+00 - sys_corr_112: 6.01718754e-01 + sys_corr_100: -5.92608657e+00 + sys_corr_101: 1.59903798e+00 + sys_corr_102: 2.31299218e+00 + sys_corr_103: 1.75921232e+00 + sys_corr_104: 4.07409526e-01 + sys_corr_105: 8.01269442e-02 + sys_corr_106: 1.55699816e-01 + sys_corr_107: -1.25541620e-02 + sys_corr_108: -2.58215041e+00 + sys_corr_109: 1.02848740e+00 + sys_corr_110: -1.06801981e+00 + sys_corr_111: 1.26155015e+00 + sys_corr_112: -6.01718754e-01 sys_corr_113: 7.86477845e-01 sys_corr_114: -2.80775483e-03 - sys_corr_115: -5.17957671e-01 - sys_corr_116: -4.74127894e-03 + sys_corr_115: 5.17957671e-01 + sys_corr_116: 4.74127894e-03 sys_corr_117: 3.74714876e-02 - sys_corr_118: -3.78478817e-02 - sys_corr_119: -2.02964689e-02 + sys_corr_118: 3.78478817e-02 + sys_corr_119: 2.02964689e-02 sys_corr_120: 1.08292301e-02 sys_corr_121: 1.20012781e-02 sys_corr_122: 4.92079163e-02 - sys_corr_123: -3.66482996e-02 + sys_corr_123: 3.66482996e-02 sys_corr_124: 1.60482729e-01 - sys_corr_125: -2.52048457e-02 + sys_corr_125: 2.52048457e-02 sys_corr_126: 2.19100538e-02 - sys_corr_127: -1.29919605e+00 - sys_corr_128: 1.96199743e+00 - sys_corr_129: -4.16204326e-01 + sys_corr_127: 1.29919605e+00 + sys_corr_128: -1.96199743e+00 + sys_corr_129: 4.16204326e-01 sys_corr_130: 4.74227836e-04 - sys_corr_131: -8.68772932e-04 - sys_corr_132: -1.78591562e-01 + sys_corr_131: -1.78591562e-01 + sys_corr_132: 8.68772932e-04 stat: 0.0 luminosity: 5.65325200e+01 - sys_corr_1: 5.99477304e+00 @@ -9922,26 +9922,26 @@ bins: sys_corr_4: -2.02205405e+01 sys_corr_5: -1.59674556e+01 sys_corr_6: -3.82267607e+00 - sys_corr_7: 1.46139297e+00 - sys_corr_8: 3.14901199e+00 + sys_corr_7: -1.46139297e+00 + sys_corr_8: -3.14901199e+00 sys_corr_9: -4.39053804e+00 - sys_corr_10: 1.41262022e+00 - sys_corr_11: 5.05523988e+00 - sys_corr_12: 2.97828454e+00 + sys_corr_10: -1.41262022e+00 + sys_corr_11: -5.05523988e+00 + sys_corr_12: -2.97828454e+00 sys_corr_13: 3.86224236e+00 - sys_corr_14: -1.90056374e-01 - sys_corr_15: 1.47361919e+00 - sys_corr_16: -2.34469837e+00 - sys_corr_17: -9.76884869e-02 - sys_corr_18: -9.25415753e-01 - sys_corr_19: 1.04746711e-01 - sys_corr_20: -2.14414163e+00 - sys_corr_21: -2.06744716e+00 - sys_corr_22: -7.29667567e+00 - sys_corr_23: -1.43822935e+00 - sys_corr_24: 1.96774635e+01 - sys_corr_25: -1.13756152e-01 - sys_corr_26: -2.09614508e+00 + sys_corr_14: 1.90056374e-01 + sys_corr_15: -1.47361919e+00 + sys_corr_16: 2.34469837e+00 + sys_corr_17: 9.76884869e-02 + sys_corr_18: 9.25415753e-01 + sys_corr_19: -1.04746711e-01 + sys_corr_20: 2.14414163e+00 + sys_corr_21: 2.06744716e+00 + sys_corr_22: 7.29667567e+00 + sys_corr_23: 1.43822935e+00 + sys_corr_24: -1.96774635e+01 + sys_corr_25: 1.13756152e-01 + sys_corr_26: 2.09614508e+00 sys_corr_27: 4.37645703e+00 sys_corr_28: 4.13717023e+00 sys_corr_29: -1.77172980e+00 @@ -9954,100 +9954,100 @@ bins: sys_corr_36: -8.82355570e-01 sys_corr_37: -3.14279454e+00 sys_corr_38: 2.15731980e+00 - sys_corr_39: 5.92218110e-01 + sys_corr_39: -5.92218110e-01 sys_corr_40: -3.92032361e+00 sys_corr_41: 3.10093250e-01 - sys_corr_42: -1.03016398e+00 + sys_corr_42: 1.03016398e+00 sys_corr_43: 4.33084912e+00 - sys_corr_44: -3.93017979e+00 - sys_corr_45: -1.59753710e-01 - sys_corr_46: 2.56884444e+00 - sys_corr_47: 5.45605508e-01 - sys_corr_48: -2.69244466e-01 + sys_corr_44: 3.93017979e+00 + sys_corr_45: 1.59753710e-01 + sys_corr_46: -2.56884444e+00 + sys_corr_47: -5.45605508e-01 + sys_corr_48: 2.69244466e-01 sys_corr_49: 9.08881567e-01 - sys_corr_50: 8.43004736e-01 - sys_corr_51: 5.90412078e+00 - sys_corr_52: 5.16351348e+00 - sys_corr_53: 2.52825828e+00 - sys_corr_54: 8.74328031e-02 + sys_corr_50: -8.43004736e-01 + sys_corr_51: -5.90412078e+00 + sys_corr_52: -5.16351348e+00 + sys_corr_53: -2.52825828e+00 + sys_corr_54: -8.74328031e-02 sys_corr_55: -1.95172165e-01 sys_corr_56: -7.82227428e-02 - sys_corr_57: -5.37394017e-01 + sys_corr_57: 5.37394017e-01 sys_corr_58: 2.95047485e-01 - sys_corr_59: -1.54557838e+00 + sys_corr_59: 1.54557838e+00 sys_corr_60: 1.93856105e-01 sys_corr_61: 1.65001911e+00 sys_corr_62: -5.15267843e-01 - sys_corr_63: -5.07846604e-01 + sys_corr_63: 5.07846604e-01 sys_corr_64: 3.11782127e+00 sys_corr_65: -4.45807806e-01 - sys_corr_66: -1.05037341e+00 - sys_corr_67: -6.03072911e-01 - sys_corr_68: -3.78992999e+00 - sys_corr_69: -1.28589157e+00 - sys_corr_70: 1.18296023e+00 - sys_corr_71: 1.37460831e-01 - sys_corr_72: 4.32946976e+00 - sys_corr_73: 1.57880847e+00 - sys_corr_74: -5.81170056e+00 - sys_corr_75: -2.99735574e-01 + sys_corr_66: 1.05037341e+00 + sys_corr_67: 6.03072911e-01 + sys_corr_68: 3.78992999e+00 + sys_corr_69: 1.28589157e+00 + sys_corr_70: -1.18296023e+00 + sys_corr_71: 1.57880847e+00 + sys_corr_72: -4.32946976e+00 + sys_corr_73: -1.37460831e-01 + sys_corr_74: 5.81170056e+00 + sys_corr_75: 2.99735574e-01 sys_corr_76: -8.71421906e+00 sys_corr_77: 1.51829058e+00 - sys_corr_78: -4.06461845e-01 + sys_corr_78: -1.89038852e+00 sys_corr_79: -8.14779220e+00 - sys_corr_80: 1.89038852e+00 + sys_corr_80: 4.06461845e-01 sys_corr_81: 2.89542976e+00 - sys_corr_82: -1.16792637e+00 - sys_corr_83: -6.23096481e+00 + sys_corr_82: -6.23096481e+00 + sys_corr_83: 1.16792637e+00 sys_corr_84: 1.41199589e+01 - sys_corr_85: -2.56757928e+01 - sys_corr_86: 1.15159882e+00 + sys_corr_85: 2.56757928e+01 + sys_corr_86: -1.15159882e+00 sys_corr_87: 2.58180861e-01 sys_corr_88: -4.72296581e+00 - sys_corr_89: -1.92275063e+02 - sys_corr_90: -2.18457290e+01 + sys_corr_89: 1.92275063e+02 + sys_corr_90: 2.18457290e+01 sys_corr_91: -1.78945492e+01 - sys_corr_92: -1.75848244e+00 - sys_corr_93: -8.62645704e-01 + sys_corr_92: 1.75848244e+00 + sys_corr_93: -4.02084625e+00 sys_corr_94: -6.23681347e+00 - sys_corr_95: 4.02084625e+00 + sys_corr_95: 8.62645704e-01 sys_corr_96: 1.33087450e-01 sys_corr_97: -8.86009668e-01 sys_corr_98: -4.20743004e-01 sys_corr_99: -9.87248187e-02 - sys_corr_100: 4.40910350e-01 - sys_corr_101: -2.78139872e-01 - sys_corr_102: 1.62747667e-01 - sys_corr_103: 1.47872131e+00 - sys_corr_104: -2.34726957e+00 - sys_corr_105: 9.07567324e-01 - sys_corr_106: -2.99740415e-01 - sys_corr_107: -4.40595477e-01 - sys_corr_108: -3.36919595e-01 - sys_corr_109: 9.52637585e-01 - sys_corr_110: 7.72589814e-01 - sys_corr_111: 2.62829571e-01 - sys_corr_112: 3.49539122e-01 + sys_corr_100: -2.34726957e+00 + sys_corr_101: 1.47872131e+00 + sys_corr_102: -9.07567324e-01 + sys_corr_103: -1.62747667e-01 + sys_corr_104: -2.78139872e-01 + sys_corr_105: 4.40910350e-01 + sys_corr_106: 2.99740415e-01 + sys_corr_107: 4.40595477e-01 + sys_corr_108: -2.62829571e-01 + sys_corr_109: 3.36919595e-01 + sys_corr_110: -9.52637585e-01 + sys_corr_111: 7.72589814e-01 + sys_corr_112: -3.49539122e-01 sys_corr_113: 3.30923632e-01 sys_corr_114: 2.72267388e-04 - sys_corr_115: -1.26151286e-01 - sys_corr_116: -3.61046479e-02 + sys_corr_115: 1.26151286e-01 + sys_corr_116: 3.61046479e-02 sys_corr_117: 3.47710195e-02 - sys_corr_118: -3.17619177e-02 - sys_corr_119: -1.05187820e-02 + sys_corr_118: 3.17619177e-02 + sys_corr_119: 1.05187820e-02 sys_corr_120: 1.86681073e-02 sys_corr_121: 6.65958629e-03 sys_corr_122: 2.98313127e-02 - sys_corr_123: -2.11950249e-02 + sys_corr_123: 2.11950249e-02 sys_corr_124: 1.02076312e-01 - sys_corr_125: -1.80005443e-02 + sys_corr_125: 1.80005443e-02 sys_corr_126: 1.09751543e-02 - sys_corr_127: -4.86673688e-01 - sys_corr_128: 1.07179423e+00 - sys_corr_129: -2.28165006e-01 + sys_corr_127: 4.86673688e-01 + sys_corr_128: -1.07179423e+00 + sys_corr_129: 2.28165006e-01 sys_corr_130: 4.94424236e-03 - sys_corr_131: -9.80955439e-03 - sys_corr_132: 3.09082224e-01 + sys_corr_131: 3.09082224e-01 + sys_corr_132: 9.80955439e-03 stat: 0.0 luminosity: 39.56007 - sys_corr_1: 1.05601995e+00 @@ -10056,26 +10056,26 @@ bins: sys_corr_4: -1.33103853e+01 sys_corr_5: -6.57714587e+00 sys_corr_6: -2.04628007e+00 - sys_corr_7: -8.32256623e-02 - sys_corr_8: 2.05669746e+00 + sys_corr_7: 8.32256623e-02 + sys_corr_8: -2.05669746e+00 sys_corr_9: -1.79450152e+00 - sys_corr_10: 9.62800706e-01 - sys_corr_11: 1.24847161e+00 - sys_corr_12: -1.03324296e+00 + sys_corr_10: -9.62800706e-01 + sys_corr_11: -1.24847161e+00 + sys_corr_12: 1.03324296e+00 sys_corr_13: 4.35101956e-01 - sys_corr_14: -3.10836569e-01 - sys_corr_15: 1.15831995e-01 - sys_corr_16: -6.86305037e-01 - sys_corr_17: -1.81577158e-01 - sys_corr_18: -4.63159628e-01 - sys_corr_19: 5.39656012e-01 - sys_corr_20: -2.79746493e+00 - sys_corr_21: -2.05032189e+00 - sys_corr_22: -4.12530920e+00 - sys_corr_23: -2.35904272e-01 - sys_corr_24: 1.38953738e+01 - sys_corr_25: 3.15907990e-01 - sys_corr_26: 9.11530042e-01 + sys_corr_14: 3.10836569e-01 + sys_corr_15: -1.15831995e-01 + sys_corr_16: 6.86305037e-01 + sys_corr_17: 1.81577158e-01 + sys_corr_18: 4.63159628e-01 + sys_corr_19: -5.39656012e-01 + sys_corr_20: 2.79746493e+00 + sys_corr_21: 2.05032189e+00 + sys_corr_22: 4.12530920e+00 + sys_corr_23: 2.35904272e-01 + sys_corr_24: -1.38953738e+01 + sys_corr_25: -3.15907990e-01 + sys_corr_26: -9.11530042e-01 sys_corr_27: 3.28837973e+00 sys_corr_28: 4.25796910e-01 sys_corr_29: -2.34408046e+00 @@ -10088,100 +10088,100 @@ bins: sys_corr_36: -1.57731694e+00 sys_corr_37: -1.19350071e+00 sys_corr_38: 9.85823755e-01 - sys_corr_39: 2.86672077e-01 + sys_corr_39: -2.86672077e-01 sys_corr_40: -1.25505223e+00 sys_corr_41: -3.26754590e-01 - sys_corr_42: 8.19064578e-01 + sys_corr_42: -8.19064578e-01 sys_corr_43: 1.78831057e+00 - sys_corr_44: 6.56513413e-01 - sys_corr_45: -5.53798811e-01 - sys_corr_46: 8.33588196e-01 - sys_corr_47: 8.53911719e-01 - sys_corr_48: -3.76400824e+00 + sys_corr_44: -6.56513413e-01 + sys_corr_45: 5.53798811e-01 + sys_corr_46: -8.33588196e-01 + sys_corr_47: -8.53911719e-01 + sys_corr_48: 3.76400824e+00 sys_corr_49: -1.14830004e+00 - sys_corr_50: -2.59175434e+00 - sys_corr_51: 1.07549274e-01 - sys_corr_52: -3.14157111e-01 - sys_corr_53: 6.12837282e-02 - sys_corr_54: 5.59070129e-02 + sys_corr_50: 2.59175434e+00 + sys_corr_51: -1.07549274e-01 + sys_corr_52: 3.14157111e-01 + sys_corr_53: -6.12837282e-02 + sys_corr_54: -5.59070129e-02 sys_corr_55: 7.29985301e-01 sys_corr_56: -8.29695575e-02 - sys_corr_57: -9.28305714e-02 + sys_corr_57: 9.28305714e-02 sys_corr_58: -8.90277475e-02 - sys_corr_59: -3.20386764e-01 + sys_corr_59: 3.20386764e-01 sys_corr_60: -5.20187327e-01 sys_corr_61: 6.84518922e-01 sys_corr_62: -4.22112051e-01 - sys_corr_63: 5.52342836e-01 + sys_corr_63: -5.52342836e-01 sys_corr_64: 6.86049206e-02 sys_corr_65: -3.58537312e-01 - sys_corr_66: 5.31467907e-01 - sys_corr_67: -2.38021302e-01 - sys_corr_68: -6.91352478e-01 - sys_corr_69: -6.07453750e-01 - sys_corr_70: 4.72632406e-01 - sys_corr_71: 2.93891684e-01 - sys_corr_72: -4.49255403e-01 - sys_corr_73: -1.04840829e-01 - sys_corr_74: -5.26018047e-02 - sys_corr_75: 6.29137060e-01 + sys_corr_66: -5.31467907e-01 + sys_corr_67: 2.38021302e-01 + sys_corr_68: 6.91352478e-01 + sys_corr_69: 6.07453750e-01 + sys_corr_70: -4.72632406e-01 + sys_corr_71: -1.04840829e-01 + sys_corr_72: 4.49255403e-01 + sys_corr_73: -2.93891684e-01 + sys_corr_74: 5.26018047e-02 + sys_corr_75: -6.29137060e-01 sys_corr_76: -5.33814442e-01 sys_corr_77: -2.82475769e-01 - sys_corr_78: -2.26780765e-01 + sys_corr_78: -4.42744178e-01 sys_corr_79: 1.95961625e+00 - sys_corr_80: 4.42744178e-01 + sys_corr_80: 2.26780765e-01 sys_corr_81: 2.52231270e-01 - sys_corr_82: -2.11017964e-01 - sys_corr_83: -5.86517386e-01 + sys_corr_82: -5.86517386e-01 + sys_corr_83: 2.11017964e-01 sys_corr_84: 4.65410522e-01 - sys_corr_85: -5.15051423e-01 - sys_corr_86: 1.08873934e+00 + sys_corr_85: 5.15051423e-01 + sys_corr_86: -1.08873934e+00 sys_corr_87: 2.22600925e-02 sys_corr_88: -1.19319225e+00 - sys_corr_89: -2.41524433e+00 - sys_corr_90: -3.95340316e-01 + sys_corr_89: 2.41524433e+00 + sys_corr_90: 3.95340316e-01 sys_corr_91: 4.47109564e-01 - sys_corr_92: -9.10389912e-01 - sys_corr_93: 4.46106256e-02 + sys_corr_92: 9.10389912e-01 + sys_corr_93: 3.58199859e+00 sys_corr_94: 1.18304101e+00 - sys_corr_95: -3.58199859e+00 + sys_corr_95: -4.46106256e-02 sys_corr_96: 1.54919522e-01 sys_corr_97: 4.96337152e-01 sys_corr_98: 3.11803161e-01 sys_corr_99: -6.05070439e-02 - sys_corr_100: 2.25587245e+00 - sys_corr_101: 1.25009822e-01 - sys_corr_102: 4.31353555e-01 - sys_corr_103: -9.73651139e-01 - sys_corr_104: -1.61735608e+00 - sys_corr_105: 4.55539315e-01 - sys_corr_106: -1.83015873e+00 - sys_corr_107: -1.15104304e+01 - sys_corr_108: 1.37950160e+00 - sys_corr_109: -4.08027045e+00 - sys_corr_110: -3.49483925e+01 - sys_corr_111: -2.60629945e-01 - sys_corr_112: -3.95364003e-01 + sys_corr_100: -1.61735608e+00 + sys_corr_101: -9.73651139e-01 + sys_corr_102: -4.55539315e-01 + sys_corr_103: -4.31353555e-01 + sys_corr_104: 1.25009822e-01 + sys_corr_105: 2.25587245e+00 + sys_corr_106: 1.83015873e+00 + sys_corr_107: 1.15104304e+01 + sys_corr_108: 2.60629945e-01 + sys_corr_109: -1.37950160e+00 + sys_corr_110: 4.08027045e+00 + sys_corr_111: -3.49483925e+01 + sys_corr_112: 3.95364003e-01 sys_corr_113: -2.17985375e-01 sys_corr_114: -2.26568349e-04 - sys_corr_115: 5.72521604e-01 - sys_corr_116: -2.08276360e-01 + sys_corr_115: -5.72521604e-01 + sys_corr_116: 2.08276360e-01 sys_corr_117: 7.91378519e-02 - sys_corr_118: 2.69591587e-02 - sys_corr_119: -2.25342559e-02 + sys_corr_118: -2.69591587e-02 + sys_corr_119: 2.25342559e-02 sys_corr_120: 1.17452308e-03 sys_corr_121: 6.23252509e-02 sys_corr_122: 1.84149366e-01 - sys_corr_123: -8.81989110e-02 + sys_corr_123: 8.81989110e-02 sys_corr_124: 2.57047262e-01 - sys_corr_125: -1.10337565e-01 + sys_corr_125: 1.10337565e-01 sys_corr_126: -6.85246596e-02 - sys_corr_127: 7.14693797e-02 - sys_corr_128: -9.47654839e+01 - sys_corr_129: -3.73233929e-03 + sys_corr_127: -7.14693797e-02 + sys_corr_128: 9.47654839e+01 + sys_corr_129: 3.73233929e-03 sys_corr_130: 2.85435887e-01 - sys_corr_131: -4.96938043e-02 - sys_corr_132: 8.08890927e-02 + sys_corr_131: 8.08890927e-02 + sys_corr_132: 4.96938043e-02 stat: 0.0 luminosity: 1.34621960e+01 - sys_corr_1: 3.17854823e+03 @@ -10190,26 +10190,26 @@ bins: sys_corr_4: 1.40185180e+03 sys_corr_5: -5.61753073e+02 sys_corr_6: -8.88802461e+01 - sys_corr_7: -9.29374337e+02 - sys_corr_8: -4.13345457e+02 + sys_corr_7: 9.29374337e+02 + sys_corr_8: 4.13345457e+02 sys_corr_9: -1.14163706e+03 - sys_corr_10: -2.47589997e+02 - sys_corr_11: -2.17720845e+02 - sys_corr_12: 3.16728881e+02 + sys_corr_10: 2.47589997e+02 + sys_corr_11: 2.17720845e+02 + sys_corr_12: -3.16728881e+02 sys_corr_13: -2.73961495e+02 - sys_corr_14: -1.64177102e+02 - sys_corr_15: -3.80745222e+02 - sys_corr_16: -5.52362564e+02 - sys_corr_17: -1.21030950e+02 - sys_corr_18: -2.14862946e+02 - sys_corr_19: -1.94180857e+01 - sys_corr_20: 4.20597516e+01 - sys_corr_21: 1.43410687e+01 - sys_corr_22: 2.71278215e+01 - sys_corr_23: 1.48093084e+01 - sys_corr_24: -4.14757914e+00 - sys_corr_25: 1.45730052e+01 - sys_corr_26: 2.71364426e+01 + sys_corr_14: 1.64177102e+02 + sys_corr_15: 3.80745222e+02 + sys_corr_16: 5.52362564e+02 + sys_corr_17: 1.21030950e+02 + sys_corr_18: 2.14862946e+02 + sys_corr_19: 1.94180857e+01 + sys_corr_20: -4.20597516e+01 + sys_corr_21: -1.43410687e+01 + sys_corr_22: -2.71278215e+01 + sys_corr_23: -1.48093084e+01 + sys_corr_24: 4.14757914e+00 + sys_corr_25: -1.45730052e+01 + sys_corr_26: -2.71364426e+01 sys_corr_27: 7.81000263e+00 sys_corr_28: -4.01520557e+00 sys_corr_29: -5.42782326e+00 @@ -10222,100 +10222,100 @@ bins: sys_corr_36: -7.72108488e-02 sys_corr_37: -1.26097722e+00 sys_corr_38: 8.13772025e-01 - sys_corr_39: 2.96535971e-01 + sys_corr_39: -2.96535971e-01 sys_corr_40: -1.15865628e+00 sys_corr_41: 1.23772941e+00 - sys_corr_42: -6.58260749e-02 + sys_corr_42: 6.58260749e-02 sys_corr_43: 9.23998817e-01 - sys_corr_44: -1.56403265e+00 - sys_corr_45: 4.97994037e-01 - sys_corr_46: 9.64777182e-01 - sys_corr_47: 5.04843113e-02 - sys_corr_48: 1.13660351e+00 - sys_corr_49: 2.04733649e-04 - sys_corr_50: -7.22315969e-01 - sys_corr_51: 1.41613190e-01 - sys_corr_52: 4.81785837e-01 - sys_corr_53: -1.43606884e-02 - sys_corr_54: -4.83834690e-01 + sys_corr_44: 1.56403265e+00 + sys_corr_45: -4.97994037e-01 + sys_corr_46: -9.64777182e-01 + sys_corr_47: -5.04843113e-02 + sys_corr_48: -1.13660351e+00 + sys_corr_49: 2.04733648e-04 + sys_corr_50: 7.22315969e-01 + sys_corr_51: -1.41613190e-01 + sys_corr_52: -4.81785837e-01 + sys_corr_53: 1.43606884e-02 + sys_corr_54: 4.83834690e-01 sys_corr_55: -3.24774201e-01 sys_corr_56: 8.09386661e-01 - sys_corr_57: 4.99718830e-01 + sys_corr_57: -4.99718830e-01 sys_corr_58: -3.13637337e-01 - sys_corr_59: 5.66471281e-02 + sys_corr_59: -5.66471281e-02 sys_corr_60: -3.94779731e-01 sys_corr_61: -5.43456460e-01 sys_corr_62: -3.63129998e-01 - sys_corr_63: -2.16115302e-01 + sys_corr_63: 2.16115302e-01 sys_corr_64: -2.33760259e-01 sys_corr_65: -2.91218225e-01 - sys_corr_66: -4.69509570e-01 - sys_corr_67: 3.97276384e-01 - sys_corr_68: 3.94197513e-01 - sys_corr_69: -3.80278235e-01 - sys_corr_70: 4.87083575e-02 - sys_corr_71: -2.24715588e-01 - sys_corr_72: -9.55714552e-02 - sys_corr_73: 1.41997289e-01 - sys_corr_74: 9.88920874e-02 - sys_corr_75: -9.30610977e-03 + sys_corr_66: 4.69509570e-01 + sys_corr_67: -3.97276384e-01 + sys_corr_68: -3.94197513e-01 + sys_corr_69: 3.80278235e-01 + sys_corr_70: -4.87083575e-02 + sys_corr_71: 1.41997289e-01 + sys_corr_72: 9.55714552e-02 + sys_corr_73: 2.24715588e-01 + sys_corr_74: -9.88920874e-02 + sys_corr_75: 9.30610977e-03 sys_corr_76: -2.31598930e-01 sys_corr_77: -7.10082780e-01 - sys_corr_78: 2.55150872e-01 + sys_corr_78: 1.82939102e-01 sys_corr_79: 9.98663184e-02 - sys_corr_80: -1.82939102e-01 + sys_corr_80: -2.55150872e-01 sys_corr_81: -2.28049677e-01 - sys_corr_82: 1.15446947e+00 - sys_corr_83: -1.18437405e-01 + sys_corr_82: -1.18437405e-01 + sys_corr_83: -1.15446947e+00 sys_corr_84: 5.38990422e-01 - sys_corr_85: -1.87910088e-01 - sys_corr_86: -6.57162524e-02 + sys_corr_85: 1.87910088e-01 + sys_corr_86: 6.57162524e-02 sys_corr_87: 7.85183196e-01 sys_corr_88: 1.58534313e-02 - sys_corr_89: 2.34832500e-02 - sys_corr_90: -1.68891286e-01 + sys_corr_89: -2.34832500e-02 + sys_corr_90: 1.68891286e-01 sys_corr_91: 8.67891811e-02 - sys_corr_92: 7.29350378e-02 - sys_corr_93: 4.22898921e-01 + sys_corr_92: -7.29350378e-02 + sys_corr_93: 1.35859989e-01 sys_corr_94: 4.52153707e-02 - sys_corr_95: -1.35859989e-01 + sys_corr_95: -4.22898921e-01 sys_corr_96: 1.21052869e+00 sys_corr_97: 5.55043812e-01 sys_corr_98: -1.72410020e-01 sys_corr_99: 3.08857895e-01 - sys_corr_100: 7.40186993e-02 - sys_corr_101: -2.42604905e-01 - sys_corr_102: 2.45725138e-01 - sys_corr_103: -2.26139140e-01 - sys_corr_104: 6.13207900e-02 - sys_corr_105: 5.18717865e-02 - sys_corr_106: 3.00838167e-02 - sys_corr_107: 1.76163596e-02 - sys_corr_108: -6.19104781e-03 - sys_corr_109: 2.15315818e-02 - sys_corr_110: 4.77714221e-04 - sys_corr_111: -1.61749890e-01 - sys_corr_112: -7.85689656e-03 + sys_corr_100: 6.13207900e-02 + sys_corr_101: -2.26139140e-01 + sys_corr_102: -5.18717865e-02 + sys_corr_103: -2.45725138e-01 + sys_corr_104: -2.42604905e-01 + sys_corr_105: 7.40186993e-02 + sys_corr_106: -3.00838167e-02 + sys_corr_107: -1.76163596e-02 + sys_corr_108: 1.61749890e-01 + sys_corr_109: 6.19104781e-03 + sys_corr_110: -2.15315818e-02 + sys_corr_111: 4.77714221e-04 + sys_corr_112: 7.85689656e-03 sys_corr_113: 5.81699448e-02 sys_corr_114: -1.92369377e-05 - sys_corr_115: 3.32831558e-02 - sys_corr_116: 7.48336969e-03 + sys_corr_115: -3.32831558e-02 + sys_corr_116: -7.48336969e-03 sys_corr_117: -5.59861660e-03 - sys_corr_118: 2.97175286e-02 - sys_corr_119: -1.42653640e-04 + sys_corr_118: -2.97175286e-02 + sys_corr_119: 1.42653640e-04 sys_corr_120: -1.20148105e-03 sys_corr_121: -8.86405921e-04 sys_corr_122: -8.98506363e-03 - sys_corr_123: 4.34802605e-03 + sys_corr_123: -4.34802605e-03 sys_corr_124: -2.13633772e-02 - sys_corr_125: 1.05260660e-02 + sys_corr_125: -1.05260660e-02 sys_corr_126: -2.88564986e-04 - sys_corr_127: -2.23872744e-01 - sys_corr_128: -3.57201882e-02 - sys_corr_129: -3.02176977e-02 + sys_corr_127: 2.23872744e-01 + sys_corr_128: 3.57201882e-02 + sys_corr_129: 3.02176977e-02 sys_corr_130: -2.07835513e-03 - sys_corr_131: 1.42051164e-03 - sys_corr_132: -1.74385147e-02 + sys_corr_131: -1.74385147e-02 + sys_corr_132: -1.42051164e-03 stat: 0.0 luminosity: 6.97900185e+03 - sys_corr_1: 3.22639860e+03 @@ -10324,26 +10324,26 @@ bins: sys_corr_4: 1.30680904e+03 sys_corr_5: -4.39800223e+02 sys_corr_6: -7.66279879e+01 - sys_corr_7: -8.10392816e+02 - sys_corr_8: 5.08537439e+02 + sys_corr_7: 8.10392816e+02 + sys_corr_8: -5.08537439e+02 sys_corr_9: 5.94784118e+01 - sys_corr_10: -1.92027369e+02 - sys_corr_11: 8.42558643e+01 - sys_corr_12: -2.22378875e+02 + sys_corr_10: 1.92027369e+02 + sys_corr_11: -8.42558643e+01 + sys_corr_12: 2.22378875e+02 sys_corr_13: 4.00322630e+02 - sys_corr_14: 3.24709473e+02 - sys_corr_15: 7.20565387e+02 - sys_corr_16: 8.37837751e+02 - sys_corr_17: 1.98942924e+02 - sys_corr_18: 3.44366055e+02 - sys_corr_19: -3.43610011e+00 - sys_corr_20: 5.67224208e+00 - sys_corr_21: 9.80498351e+00 - sys_corr_22: -3.51746192e+01 - sys_corr_23: -5.46554906e+00 - sys_corr_24: 1.30678944e+00 - sys_corr_25: 1.08310324e+01 - sys_corr_26: 1.36219435e+01 + sys_corr_14: -3.24709473e+02 + sys_corr_15: -7.20565387e+02 + sys_corr_16: -8.37837751e+02 + sys_corr_17: -1.98942924e+02 + sys_corr_18: -3.44366055e+02 + sys_corr_19: 3.43610011e+00 + sys_corr_20: -5.67224208e+00 + sys_corr_21: -9.80498351e+00 + sys_corr_22: 3.51746192e+01 + sys_corr_23: 5.46554906e+00 + sys_corr_24: -1.30678944e+00 + sys_corr_25: -1.08310324e+01 + sys_corr_26: -1.36219435e+01 sys_corr_27: 8.32089377e+00 sys_corr_28: 2.89027900e+00 sys_corr_29: -7.52681755e+00 @@ -10356,100 +10356,100 @@ bins: sys_corr_36: -7.42043417e-01 sys_corr_37: -9.59786095e-01 sys_corr_38: 1.04000570e+00 - sys_corr_39: 2.26290803e-01 + sys_corr_39: -2.26290803e-01 sys_corr_40: -8.83830464e-01 sys_corr_41: 1.49195084e+00 - sys_corr_42: -1.37018600e+00 + sys_corr_42: 1.37018600e+00 sys_corr_43: 7.40818173e-01 - sys_corr_44: -9.81060097e-01 - sys_corr_45: -1.22919609e+00 - sys_corr_46: 2.69931352e-02 - sys_corr_47: 5.44536315e-02 - sys_corr_48: 3.67424889e-01 + sys_corr_44: 9.81060097e-01 + sys_corr_45: 1.22919609e+00 + sys_corr_46: -2.69931352e-02 + sys_corr_47: -5.44536315e-02 + sys_corr_48: -3.67424889e-01 sys_corr_49: 2.16652338e-01 - sys_corr_50: -4.61776160e-01 - sys_corr_51: 4.45297195e-01 - sys_corr_52: 5.77128724e-01 - sys_corr_53: -3.34886723e-01 - sys_corr_54: 2.01942354e-01 + sys_corr_50: 4.61776160e-01 + sys_corr_51: -4.45297195e-01 + sys_corr_52: -5.77128724e-01 + sys_corr_53: 3.34886723e-01 + sys_corr_54: -2.01942354e-01 sys_corr_55: -3.83717421e-01 sys_corr_56: -1.77529085e-01 - sys_corr_57: -4.46247275e-02 + sys_corr_57: 4.46247275e-02 sys_corr_58: 2.46217208e-01 - sys_corr_59: 2.09862960e-02 + sys_corr_59: -2.09862960e-02 sys_corr_60: -2.93089221e-01 sys_corr_61: 1.85986447e-01 sys_corr_62: -4.57988505e-01 - sys_corr_63: -4.12454294e-02 + sys_corr_63: 4.12454294e-02 sys_corr_64: -2.39275601e-01 sys_corr_65: -9.26445254e-02 - sys_corr_66: -4.79206497e-01 - sys_corr_67: 5.76438076e-02 - sys_corr_68: 4.05757654e-02 - sys_corr_69: 3.51084584e-01 - sys_corr_70: 6.44631761e-02 - sys_corr_71: 5.43671034e-01 - sys_corr_72: 8.75838957e-02 - sys_corr_73: -2.73286345e-02 - sys_corr_74: -1.78550056e-02 - sys_corr_75: 1.32246594e-01 + sys_corr_66: 4.79206497e-01 + sys_corr_67: -5.76438076e-02 + sys_corr_68: -4.05757654e-02 + sys_corr_69: -3.51084584e-01 + sys_corr_70: -6.44631761e-02 + sys_corr_71: -2.73286345e-02 + sys_corr_72: -8.75838957e-02 + sys_corr_73: -5.43671034e-01 + sys_corr_74: 1.78550056e-02 + sys_corr_75: -1.32246594e-01 sys_corr_76: -1.62202087e-01 sys_corr_77: -4.89557437e-01 - sys_corr_78: 1.79376127e-01 + sys_corr_78: 3.04768111e-03 sys_corr_79: 1.62414275e-01 - sys_corr_80: -3.04768111e-03 + sys_corr_80: -1.79376127e-01 sys_corr_81: -2.27281051e-02 - sys_corr_82: -8.40793041e-01 - sys_corr_83: 1.14526032e-01 + sys_corr_82: 1.14526032e-01 + sys_corr_83: 8.40793041e-01 sys_corr_84: -6.29039852e-01 - sys_corr_85: -3.49818678e-01 - sys_corr_86: 1.33626200e-01 + sys_corr_85: 3.49818678e-01 + sys_corr_86: -1.33626200e-01 sys_corr_87: 7.81274712e-01 sys_corr_88: -1.37981664e-01 - sys_corr_89: -1.41562223e-01 - sys_corr_90: 5.86591317e-01 + sys_corr_89: 1.41562223e-01 + sys_corr_90: -5.86591317e-01 sys_corr_91: -1.00201593e-01 - sys_corr_92: 1.62382314e-01 - sys_corr_93: -9.14818246e-01 + sys_corr_92: -1.62382314e-01 + sys_corr_93: 1.03524176e-02 sys_corr_94: 3.57612719e-01 - sys_corr_95: -1.03524176e-02 + sys_corr_95: 9.14818246e-01 sys_corr_96: -1.02881979e+00 sys_corr_97: 9.47559232e-01 sys_corr_98: -1.32379409e-01 sys_corr_99: -3.58889627e-01 - sys_corr_100: 7.14394015e-02 - sys_corr_101: 7.72705386e-02 - sys_corr_102: 1.13981738e-01 - sys_corr_103: -1.94277789e-02 - sys_corr_104: 2.52030100e-02 - sys_corr_105: -9.15763425e-02 - sys_corr_106: -6.99994876e-02 - sys_corr_107: -1.03875589e-03 - sys_corr_108: -6.62724264e-03 - sys_corr_109: -2.18690075e-03 - sys_corr_110: -1.65736687e-02 - sys_corr_111: -8.69073217e-02 - sys_corr_112: 2.20355159e-02 + sys_corr_100: 2.52030100e-02 + sys_corr_101: -1.94277789e-02 + sys_corr_102: 9.15763425e-02 + sys_corr_103: -1.13981738e-01 + sys_corr_104: 7.72705386e-02 + sys_corr_105: 7.14394015e-02 + sys_corr_106: 6.99994876e-02 + sys_corr_107: 1.03875589e-03 + sys_corr_108: 8.69073217e-02 + sys_corr_109: 6.62724264e-03 + sys_corr_110: 2.18690075e-03 + sys_corr_111: -1.65736687e-02 + sys_corr_112: -2.20355159e-02 sys_corr_113: 4.17542251e-02 sys_corr_114: -7.15913227e-05 - sys_corr_115: 1.28205093e-02 - sys_corr_116: 2.09044825e-03 + sys_corr_115: -1.28205093e-02 + sys_corr_116: -2.09044825e-03 sys_corr_117: 9.40609410e-04 - sys_corr_118: 1.75992735e-02 - sys_corr_119: -7.92683986e-04 + sys_corr_118: -1.75992735e-02 + sys_corr_119: 7.92683986e-04 sys_corr_120: 4.91567633e-03 sys_corr_121: -1.73320898e-03 sys_corr_122: -4.80282749e-03 - sys_corr_123: 3.92689897e-03 + sys_corr_123: -3.92689897e-03 sys_corr_124: -1.09145713e-02 - sys_corr_125: 2.09880723e-03 + sys_corr_125: -2.09880723e-03 sys_corr_126: -3.60660297e-04 - sys_corr_127: 3.17685777e-02 - sys_corr_128: -1.85676639e-02 - sys_corr_129: -3.51491765e-02 + sys_corr_127: -3.17685777e-02 + sys_corr_128: 1.85676639e-02 + sys_corr_129: 3.51491765e-02 sys_corr_130: -1.16018722e-03 - sys_corr_131: 4.74287429e-03 - sys_corr_132: -1.06676823e-02 + sys_corr_131: -1.06676823e-02 + sys_corr_132: -4.74287429e-03 stat: 0.0 luminosity: 6.93522779e+03 - sys_corr_1: 3.39062509e+03 @@ -10458,26 +10458,26 @@ bins: sys_corr_4: 9.77539281e+02 sys_corr_5: -1.49741705e+02 sys_corr_6: 4.63516577e+01 - sys_corr_7: 7.03409544e+02 - sys_corr_8: -8.65638213e+02 + sys_corr_7: -7.03409544e+02 + sys_corr_8: 8.65638213e+02 sys_corr_9: 4.68497580e+02 - sys_corr_10: 1.30581352e+03 - sys_corr_11: 2.11249847e+02 - sys_corr_12: -3.95218462e+02 + sys_corr_10: -1.30581352e+03 + sys_corr_11: -2.11249847e+02 + sys_corr_12: 3.95218462e+02 sys_corr_13: 4.84978103e+02 - sys_corr_14: -2.03433833e+01 - sys_corr_15: -1.18756899e+02 - sys_corr_16: -1.52077948e+02 - sys_corr_17: -5.14350469e+01 - sys_corr_18: -8.52769860e+01 - sys_corr_19: 1.67649314e+01 - sys_corr_20: 1.45871510e+01 - sys_corr_21: -7.29235371e+00 - sys_corr_22: -3.56886843e+01 - sys_corr_23: 8.15590190e+00 - sys_corr_24: -5.66494063e-01 - sys_corr_25: -2.07037824e-01 - sys_corr_26: 1.14484816e+01 + sys_corr_14: 2.03433833e+01 + sys_corr_15: 1.18756899e+02 + sys_corr_16: 1.52077948e+02 + sys_corr_17: 5.14350469e+01 + sys_corr_18: 8.52769860e+01 + sys_corr_19: -1.67649314e+01 + sys_corr_20: -1.45871510e+01 + sys_corr_21: 7.29235371e+00 + sys_corr_22: 3.56886843e+01 + sys_corr_23: -8.15590190e+00 + sys_corr_24: 5.66494063e-01 + sys_corr_25: 2.07037824e-01 + sys_corr_26: -1.14484816e+01 sys_corr_27: 1.49872258e+01 sys_corr_28: 7.43561767e+00 sys_corr_29: -5.36251558e+00 @@ -10490,100 +10490,100 @@ bins: sys_corr_36: -4.42852117e-01 sys_corr_37: -1.72960901e+00 sys_corr_38: 7.93426567e-01 - sys_corr_39: 1.90049438e-01 + sys_corr_39: -1.90049438e-01 sys_corr_40: -1.03897039e+00 sys_corr_41: 5.60138406e-01 - sys_corr_42: -1.04962973e+00 + sys_corr_42: 1.04962973e+00 sys_corr_43: 1.21743053e+00 - sys_corr_44: -1.11638477e+00 - sys_corr_45: 6.52486910e-02 - sys_corr_46: 4.20042790e-01 - sys_corr_47: -5.99520017e-02 - sys_corr_48: 7.43002577e-01 + sys_corr_44: 1.11638477e+00 + sys_corr_45: -6.52486910e-02 + sys_corr_46: -4.20042790e-01 + sys_corr_47: 5.99520017e-02 + sys_corr_48: -7.43002577e-01 sys_corr_49: -6.83632816e-01 - sys_corr_50: -2.50167952e-01 - sys_corr_51: 3.69380886e-01 - sys_corr_52: 8.15904325e-01 - sys_corr_53: 3.80517349e-02 - sys_corr_54: -2.35875651e-02 + sys_corr_50: 2.50167952e-01 + sys_corr_51: -3.69380886e-01 + sys_corr_52: -8.15904325e-01 + sys_corr_53: -3.80517349e-02 + sys_corr_54: 2.35875651e-02 sys_corr_55: -6.42923626e-02 sys_corr_56: -3.75038459e-01 - sys_corr_57: -3.85571310e-01 + sys_corr_57: 3.85571310e-01 sys_corr_58: 7.38589460e-01 - sys_corr_59: -1.09348256e-01 + sys_corr_59: 1.09348256e-01 sys_corr_60: -4.86124964e-01 sys_corr_61: -2.78000690e-01 sys_corr_62: -3.08458968e-01 - sys_corr_63: -3.50889967e-01 + sys_corr_63: 3.50889967e-01 sys_corr_64: -1.65460432e-01 sys_corr_65: -4.11751435e-01 - sys_corr_66: -2.87087133e-01 - sys_corr_67: 7.22095210e-02 - sys_corr_68: -2.56782892e-01 - sys_corr_69: -5.18818647e-01 - sys_corr_70: -3.25076016e-01 - sys_corr_71: -6.01683107e-02 - sys_corr_72: 1.45974232e-01 - sys_corr_73: 3.88403343e-01 - sys_corr_74: -1.99000118e-01 - sys_corr_75: 2.66617176e-01 + sys_corr_66: 2.87087133e-01 + sys_corr_67: -7.22095210e-02 + sys_corr_68: 2.56782892e-01 + sys_corr_69: 5.18818647e-01 + sys_corr_70: 3.25076016e-01 + sys_corr_71: 3.88403343e-01 + sys_corr_72: -1.45974232e-01 + sys_corr_73: 6.01683107e-02 + sys_corr_74: 1.99000118e-01 + sys_corr_75: -2.66617176e-01 sys_corr_76: 1.48493050e-01 sys_corr_77: -2.25252519e-01 - sys_corr_78: 1.03948120e-01 + sys_corr_78: 1.53766819e-01 sys_corr_79: 2.37031322e-01 - sys_corr_80: -1.53766819e-01 + sys_corr_80: -1.03948120e-01 sys_corr_81: 5.02916545e-02 - sys_corr_82: -8.70215530e-02 - sys_corr_83: 9.22282792e-02 + sys_corr_82: 9.22282792e-02 + sys_corr_83: 8.70215530e-02 sys_corr_84: -2.18942486e-01 - sys_corr_85: -3.51348850e-01 - sys_corr_86: 1.13914746e-01 + sys_corr_85: 3.51348850e-01 + sys_corr_86: -1.13914746e-01 sys_corr_87: 9.32996969e-02 sys_corr_88: -1.47129576e-02 - sys_corr_89: -1.05791015e-02 - sys_corr_90: 4.03738913e-01 + sys_corr_89: 1.05791015e-02 + sys_corr_90: -4.03738913e-01 sys_corr_91: -1.65448054e-01 - sys_corr_92: 2.59664478e-01 - sys_corr_93: 1.09509857e+00 + sys_corr_92: -2.59664478e-01 + sys_corr_93: -3.64042471e-03 sys_corr_94: 2.18533575e-03 - sys_corr_95: 3.64042471e-03 + sys_corr_95: -1.09509857e+00 sys_corr_96: -4.46416828e-01 sys_corr_97: 2.48964776e-01 sys_corr_98: 2.92754431e-01 sys_corr_99: 4.00904072e-01 - sys_corr_100: 2.95624902e-02 - sys_corr_101: -7.83604025e-02 - sys_corr_102: 5.46875251e-02 - sys_corr_103: 1.18139491e-01 - sys_corr_104: -2.01470336e-02 - sys_corr_105: -6.51749688e-02 - sys_corr_106: 4.36932428e-02 - sys_corr_107: 5.96214188e-02 - sys_corr_108: -3.07298678e-02 - sys_corr_109: 1.31800487e-04 - sys_corr_110: -2.70076448e-02 - sys_corr_111: -4.76590985e-01 - sys_corr_112: 4.66847469e-03 + sys_corr_100: -2.01470336e-02 + sys_corr_101: 1.18139491e-01 + sys_corr_102: 6.51749688e-02 + sys_corr_103: -5.46875251e-02 + sys_corr_104: -7.83604025e-02 + sys_corr_105: 2.95624902e-02 + sys_corr_106: -4.36932428e-02 + sys_corr_107: -5.96214188e-02 + sys_corr_108: 4.76590985e-01 + sys_corr_109: 3.07298678e-02 + sys_corr_110: -1.31800487e-04 + sys_corr_111: -2.70076448e-02 + sys_corr_112: -4.66847469e-03 sys_corr_113: 3.65280155e-02 sys_corr_114: 1.09734336e-04 - sys_corr_115: 1.95468190e-03 - sys_corr_116: 4.35632097e-03 + sys_corr_115: -1.95468190e-03 + sys_corr_116: -4.35632097e-03 sys_corr_117: -9.17161630e-05 - sys_corr_118: 1.72287016e-02 - sys_corr_119: 1.23730531e-03 + sys_corr_118: -1.72287016e-02 + sys_corr_119: -1.23730531e-03 sys_corr_120: 1.55860140e-03 sys_corr_121: -5.46915334e-04 sys_corr_122: 2.19218543e-04 - sys_corr_123: 4.64696597e-04 + sys_corr_123: -4.64696597e-04 sys_corr_124: -8.17498169e-03 - sys_corr_125: 3.31778458e-03 + sys_corr_125: -3.31778458e-03 sys_corr_126: 6.48484227e-04 - sys_corr_127: 3.77905453e-02 - sys_corr_128: -1.73695591e-02 - sys_corr_129: -1.00855812e-02 + sys_corr_127: -3.77905453e-02 + sys_corr_128: 1.73695591e-02 + sys_corr_129: 1.00855812e-02 sys_corr_130: -5.11531150e-04 - sys_corr_131: 2.17885715e-03 - sys_corr_132: -1.24491741e-03 + sys_corr_131: -1.24491741e-03 + sys_corr_132: -2.17885715e-03 stat: 0.0 luminosity: 6.94862762e+03 - sys_corr_1: 3.67162480e+03 @@ -10592,26 +10592,26 @@ bins: sys_corr_4: 4.14359581e+02 sys_corr_5: 1.49601062e+02 sys_corr_6: 1.74796328e+02 - sys_corr_7: 1.25471027e+02 - sys_corr_8: 1.07090176e+03 + sys_corr_7: -1.25471027e+02 + sys_corr_8: -1.07090176e+03 sys_corr_9: 1.23943388e+03 - sys_corr_10: -5.17650243e+02 - sys_corr_11: 2.29938411e+02 - sys_corr_12: 3.09651875e+02 + sys_corr_10: 5.17650243e+02 + sys_corr_11: -2.29938411e+02 + sys_corr_12: -3.09651875e+02 sys_corr_13: -1.69397696e+02 - sys_corr_14: -3.28186824e+02 - sys_corr_15: -5.44896412e+02 - sys_corr_16: -3.32266729e+02 - sys_corr_17: -7.03320966e+01 - sys_corr_18: -1.38745546e+02 - sys_corr_19: 2.08151780e+01 - sys_corr_20: -1.32359183e+01 - sys_corr_21: 5.88882575e+00 - sys_corr_22: -4.43417531e+01 - sys_corr_23: -1.31808294e+00 - sys_corr_24: 1.44168817e+01 - sys_corr_25: -8.45296969e+00 - sys_corr_26: -1.44869198e+01 + sys_corr_14: 3.28186824e+02 + sys_corr_15: 5.44896412e+02 + sys_corr_16: 3.32266729e+02 + sys_corr_17: 7.03320966e+01 + sys_corr_18: 1.38745546e+02 + sys_corr_19: -2.08151780e+01 + sys_corr_20: 1.32359183e+01 + sys_corr_21: -5.88882575e+00 + sys_corr_22: 4.43417531e+01 + sys_corr_23: 1.31808294e+00 + sys_corr_24: -1.44168817e+01 + sys_corr_25: 8.45296969e+00 + sys_corr_26: 1.44869198e+01 sys_corr_27: 1.41879264e+00 sys_corr_28: 7.07788466e+00 sys_corr_29: -7.98970212e+00 @@ -10624,100 +10624,100 @@ bins: sys_corr_36: -1.00832555e+00 sys_corr_37: -1.01405379e+00 sys_corr_38: 2.26704784e-01 - sys_corr_39: 1.45270265e-01 + sys_corr_39: -1.45270265e-01 sys_corr_40: -3.22165400e-01 sys_corr_41: -7.25560974e-01 - sys_corr_42: -3.19276074e-01 + sys_corr_42: 3.19276074e-01 sys_corr_43: 8.93748481e-01 - sys_corr_44: -4.03304909e-01 - sys_corr_45: 2.67599269e-01 - sys_corr_46: -7.95792894e-01 - sys_corr_47: -1.01696615e-01 - sys_corr_48: 4.66587145e-01 + sys_corr_44: 4.03304909e-01 + sys_corr_45: -2.67599269e-01 + sys_corr_46: 7.95792894e-01 + sys_corr_47: 1.01696615e-01 + sys_corr_48: -4.66587145e-01 sys_corr_49: 9.18093104e-01 - sys_corr_50: -5.26899191e-02 - sys_corr_51: 5.27411226e-01 - sys_corr_52: 2.86600611e-01 - sys_corr_53: 8.33076540e-02 - sys_corr_54: 1.30876129e-01 + sys_corr_50: 5.26899191e-02 + sys_corr_51: -5.27411226e-01 + sys_corr_52: -2.86600611e-01 + sys_corr_53: -8.33076540e-02 + sys_corr_54: -1.30876129e-01 sys_corr_55: 1.33577747e-01 sys_corr_56: -1.79462863e-01 - sys_corr_57: -4.03872659e-01 + sys_corr_57: 4.03872659e-01 sys_corr_58: -2.02130003e-01 - sys_corr_59: 2.72859969e-01 + sys_corr_59: -2.72859969e-01 sys_corr_60: 8.58474008e-01 sys_corr_61: 4.63723479e-01 sys_corr_62: 4.53910261e-01 - sys_corr_63: 3.30500905e-01 + sys_corr_63: -3.30500905e-01 sys_corr_64: 3.84047584e-01 sys_corr_65: 5.49853297e-01 - sys_corr_66: 6.55182294e-02 - sys_corr_67: -6.79774612e-02 - sys_corr_68: -2.14827320e-01 - sys_corr_69: -1.36713571e-01 - sys_corr_70: -4.17389050e-01 - sys_corr_71: -1.72728097e-01 - sys_corr_72: 2.18081645e-01 - sys_corr_73: -3.31714339e-02 - sys_corr_74: 1.41164113e-01 - sys_corr_75: 3.01626120e-02 + sys_corr_66: -6.55182294e-02 + sys_corr_67: 6.79774612e-02 + sys_corr_68: 2.14827320e-01 + sys_corr_69: 1.36713571e-01 + sys_corr_70: 4.17389050e-01 + sys_corr_71: -3.31714339e-02 + sys_corr_72: -2.18081645e-01 + sys_corr_73: 1.72728097e-01 + sys_corr_74: -1.41164113e-01 + sys_corr_75: -3.01626120e-02 sys_corr_76: 1.37113982e-01 sys_corr_77: 6.03049092e-02 - sys_corr_78: -3.59114412e-01 + sys_corr_78: -1.81122300e-01 sys_corr_79: 2.62023735e-01 - sys_corr_80: 1.81122300e-01 + sys_corr_80: 3.59114412e-01 sys_corr_81: 4.64949724e-02 - sys_corr_82: 2.71772923e-02 - sys_corr_83: 5.30347060e-02 + sys_corr_82: 5.30347060e-02 + sys_corr_83: -2.71772923e-02 sys_corr_84: -2.52695318e-01 - sys_corr_85: -1.18694519e-01 - sys_corr_86: -1.85637997e-01 + sys_corr_85: 1.18694519e-01 + sys_corr_86: 1.85637997e-01 sys_corr_87: -5.57743233e-01 sys_corr_88: 3.23922544e-01 - sys_corr_89: -2.30242386e-02 - sys_corr_90: 5.01714130e-01 + sys_corr_89: 2.30242386e-02 + sys_corr_90: -5.01714130e-01 sys_corr_91: -3.41360765e-01 - sys_corr_92: -2.17571396e-02 - sys_corr_93: -2.33027112e-01 + sys_corr_92: 2.17571396e-02 + sys_corr_93: -2.03787998e-01 sys_corr_94: 1.54522590e-01 - sys_corr_95: 2.03787998e-01 + sys_corr_95: 2.33027112e-01 sys_corr_96: 5.46283267e-01 sys_corr_97: -3.75647771e-01 sys_corr_98: 8.94152387e-01 sys_corr_99: 4.02082639e-01 - sys_corr_100: -3.79589159e-02 - sys_corr_101: -5.74833223e-02 - sys_corr_102: -4.36358259e-02 - sys_corr_103: 8.08840256e-02 - sys_corr_104: -6.56815887e-02 - sys_corr_105: -2.51808705e-02 - sys_corr_106: 5.84941635e-02 - sys_corr_107: 1.26518552e-01 - sys_corr_108: 1.34328848e-02 - sys_corr_109: -1.65988187e-02 - sys_corr_110: -5.23883693e-02 - sys_corr_111: -1.78222575e-01 - sys_corr_112: -1.21550845e-02 + sys_corr_100: -6.56815887e-02 + sys_corr_101: 8.08840256e-02 + sys_corr_102: 2.51808705e-02 + sys_corr_103: 4.36358259e-02 + sys_corr_104: -5.74833223e-02 + sys_corr_105: -3.79589159e-02 + sys_corr_106: -5.84941635e-02 + sys_corr_107: -1.26518552e-01 + sys_corr_108: 1.78222575e-01 + sys_corr_109: -1.34328848e-02 + sys_corr_110: 1.65988187e-02 + sys_corr_111: -5.23883693e-02 + sys_corr_112: 1.21550845e-02 sys_corr_113: 1.82789906e-02 sys_corr_114: 5.13637875e-05 - sys_corr_115: -1.12880634e-02 - sys_corr_116: -1.55632268e-03 + sys_corr_115: 1.12880634e-02 + sys_corr_116: 1.55632268e-03 sys_corr_117: 5.32334226e-03 - sys_corr_118: -2.66079340e-02 - sys_corr_119: 1.14430198e-03 + sys_corr_118: 2.66079340e-02 + sys_corr_119: -1.14430198e-03 sys_corr_120: 1.61304968e-03 sys_corr_121: 1.35780219e-03 sys_corr_122: 7.70890061e-03 - sys_corr_123: -6.36999437e-03 + sys_corr_123: 6.36999437e-03 sys_corr_124: 4.25245961e-03 - sys_corr_125: -3.32660393e-03 + sys_corr_125: 3.32660393e-03 sys_corr_126: 2.15871179e-03 - sys_corr_127: 2.70250671e-01 - sys_corr_128: 1.73181330e-02 - sys_corr_129: -7.52098559e-03 + sys_corr_127: -2.70250671e-01 + sys_corr_128: -1.73181330e-02 + sys_corr_129: 7.52098559e-03 sys_corr_130: 3.39745385e-04 - sys_corr_131: -2.35918516e-04 - sys_corr_132: -5.97381260e-03 + sys_corr_131: -5.97381260e-03 + sys_corr_132: 2.35918516e-04 stat: 0.0 luminosity: 6.88065378e+03 - sys_corr_1: 3.99725136e+03 @@ -10726,26 +10726,26 @@ bins: sys_corr_4: -5.16647349e+02 sys_corr_5: 5.50960216e+02 sys_corr_6: 3.54171202e+02 - sys_corr_7: 1.12553948e+03 - sys_corr_8: -4.82735073e+02 + sys_corr_7: -1.12553948e+03 + sys_corr_8: 4.82735073e+02 sys_corr_9: -8.28402150e+01 - sys_corr_10: -4.30542885e+02 - sys_corr_11: -3.04298777e+02 - sys_corr_12: 3.55389121e+02 + sys_corr_10: 4.30542885e+02 + sys_corr_11: 3.04298777e+02 + sys_corr_12: -3.55389121e+02 sys_corr_13: -8.78397204e+02 - sys_corr_14: 1.39839238e+02 - sys_corr_15: 8.73754827e+02 - sys_corr_16: -2.92556752e+01 - sys_corr_17: 2.70227630e+01 - sys_corr_18: -1.23962334e+01 - sys_corr_19: 5.37548759e+01 - sys_corr_20: -6.49302971e+01 - sys_corr_21: -1.60462400e+01 - sys_corr_22: -1.68719603e+01 - sys_corr_23: -1.91915141e+01 - sys_corr_24: 2.78999327e+01 - sys_corr_25: -8.44880147e+00 - sys_corr_26: -3.41027914e+01 + sys_corr_14: -1.39839238e+02 + sys_corr_15: -8.73754827e+02 + sys_corr_16: 2.92556752e+01 + sys_corr_17: -2.70227630e+01 + sys_corr_18: 1.23962334e+01 + sys_corr_19: -5.37548759e+01 + sys_corr_20: 6.49302971e+01 + sys_corr_21: 1.60462400e+01 + sys_corr_22: 1.68719603e+01 + sys_corr_23: 1.91915141e+01 + sys_corr_24: -2.78999327e+01 + sys_corr_25: 8.44880147e+00 + sys_corr_26: 3.41027914e+01 sys_corr_27: -6.57442812e+00 sys_corr_28: 4.25972047e+00 sys_corr_29: 1.01540603e+00 @@ -10758,100 +10758,100 @@ bins: sys_corr_36: -4.19130212e-01 sys_corr_37: 1.55379503e+00 sys_corr_38: -2.51735525e-01 - sys_corr_39: -8.36879371e-01 + sys_corr_39: 8.36879371e-01 sys_corr_40: 2.96840550e-01 sys_corr_41: -7.84557402e-01 - sys_corr_42: -2.71849358e-01 + sys_corr_42: 2.71849358e-01 sys_corr_43: 3.70852685e-01 - sys_corr_44: 2.90299956e-01 - sys_corr_45: 2.46845500e-01 - sys_corr_46: -9.26260353e-01 - sys_corr_47: 1.19885766e+00 - sys_corr_48: -1.10050347e+00 + sys_corr_44: -2.90299956e-01 + sys_corr_45: -2.46845500e-01 + sys_corr_46: 9.26260353e-01 + sys_corr_47: -1.19885766e+00 + sys_corr_48: 1.10050347e+00 sys_corr_49: 9.56013880e-01 - sys_corr_50: 5.48674440e-01 - sys_corr_51: 6.84473242e-01 - sys_corr_52: 9.28614202e-02 - sys_corr_53: 4.19923356e-01 - sys_corr_54: 2.11877339e-01 + sys_corr_50: -5.48674440e-01 + sys_corr_51: -6.84473242e-01 + sys_corr_52: -9.28614202e-02 + sys_corr_53: -4.19923356e-01 + sys_corr_54: -2.11877339e-01 sys_corr_55: 4.57627270e-01 sys_corr_56: -2.91027113e-01 - sys_corr_57: -3.41912545e-01 + sys_corr_57: 3.41912545e-01 sys_corr_58: -4.80415435e-02 - sys_corr_59: -3.20275669e-01 + sys_corr_59: 3.20275669e-01 sys_corr_60: 2.70570624e-02 sys_corr_61: 8.00475899e-01 sys_corr_62: 5.17767412e-01 - sys_corr_63: 5.48277921e-01 + sys_corr_63: -5.48277921e-01 sys_corr_64: 7.10453694e-02 sys_corr_65: 2.07806762e-01 - sys_corr_66: 6.13614796e-01 - sys_corr_67: -7.34605741e-01 - sys_corr_68: -1.37074068e-01 - sys_corr_69: 5.75970815e-01 - sys_corr_70: -1.89405689e-01 - sys_corr_71: 1.60047089e-01 - sys_corr_72: -1.58501723e-02 - sys_corr_73: -2.21828042e-01 - sys_corr_74: 5.89283238e-01 - sys_corr_75: -6.53433487e-01 + sys_corr_66: -6.13614796e-01 + sys_corr_67: 7.34605741e-01 + sys_corr_68: 1.37074068e-01 + sys_corr_69: -5.75970815e-01 + sys_corr_70: 1.89405689e-01 + sys_corr_71: -2.21828042e-01 + sys_corr_72: 1.58501723e-02 + sys_corr_73: -1.60047089e-01 + sys_corr_74: -5.89283238e-01 + sys_corr_75: 6.53433487e-01 sys_corr_76: 3.30019348e-01 sys_corr_77: 1.31421404e-01 - sys_corr_78: -7.61681194e-03 + sys_corr_78: -4.10440083e-01 sys_corr_79: 1.06116754e-01 - sys_corr_80: 4.10440083e-01 + sys_corr_80: 7.61681194e-03 sys_corr_81: -3.43428487e-01 - sys_corr_82: -4.85755687e-01 - sys_corr_83: 7.78293290e-03 + sys_corr_82: 7.78293290e-03 + sys_corr_83: 4.85755687e-01 sys_corr_84: -9.57620056e-01 - sys_corr_85: 1.75331685e-02 - sys_corr_86: 1.72055235e-01 + sys_corr_85: -1.75331685e-02 + sys_corr_86: -1.72055235e-01 sys_corr_87: -7.27527778e-01 sys_corr_88: 7.09402554e-02 - sys_corr_89: -1.58417129e-01 - sys_corr_90: 5.53606760e-01 + sys_corr_89: 1.58417129e-01 + sys_corr_90: -5.53606760e-01 sys_corr_91: -1.22831695e-01 - sys_corr_92: -3.22072417e-01 - sys_corr_93: -5.36871682e-02 + sys_corr_92: 3.22072417e-01 + sys_corr_93: -2.70271604e-02 sys_corr_94: -7.41484470e-02 - sys_corr_95: 2.70271604e-02 + sys_corr_95: 5.36871682e-02 sys_corr_96: -1.75811990e-01 sys_corr_97: -1.24311712e-01 sys_corr_98: -6.83627742e-01 sys_corr_99: 1.61022553e-02 - sys_corr_100: -1.13545604e-01 - sys_corr_101: 1.02201456e-01 - sys_corr_102: -1.85577091e-01 - sys_corr_103: -8.96712478e-02 - sys_corr_104: 8.22414824e-02 - sys_corr_105: 2.64762394e-01 - sys_corr_106: 3.90965489e-02 - sys_corr_107: 1.74207914e-02 - sys_corr_108: 4.51094038e-03 - sys_corr_109: 3.49921131e-02 - sys_corr_110: -2.90811692e-02 - sys_corr_111: 7.16810185e-01 - sys_corr_112: 8.77003130e-03 + sys_corr_100: 8.22414824e-02 + sys_corr_101: -8.96712478e-02 + sys_corr_102: -2.64762394e-01 + sys_corr_103: 1.85577091e-01 + sys_corr_104: 1.02201456e-01 + sys_corr_105: -1.13545604e-01 + sys_corr_106: -3.90965489e-02 + sys_corr_107: -1.74207914e-02 + sys_corr_108: -7.16810185e-01 + sys_corr_109: -4.51094038e-03 + sys_corr_110: -3.49921131e-02 + sys_corr_111: -2.90811692e-02 + sys_corr_112: -8.77003130e-03 sys_corr_113: -6.40855327e-02 sys_corr_114: -1.08224530e-05 - sys_corr_115: -3.27218239e-02 - sys_corr_116: -1.50218949e-03 + sys_corr_115: 3.27218239e-02 + sys_corr_116: 1.50218949e-03 sys_corr_117: 4.17672391e-04 - sys_corr_118: -3.36627421e-02 - sys_corr_119: 4.96213234e-04 + sys_corr_118: 3.36627421e-02 + sys_corr_119: -4.96213234e-04 sys_corr_120: -4.96167571e-04 sys_corr_121: 6.84599953e-04 sys_corr_122: 2.43306617e-03 - sys_corr_123: -2.49195050e-03 + sys_corr_123: 2.49195050e-03 sys_corr_124: 2.91800715e-03 - sys_corr_125: -3.64906069e-03 + sys_corr_125: 3.64906069e-03 sys_corr_126: -8.45699311e-04 - sys_corr_127: 8.47417590e-01 - sys_corr_128: -1.54654600e-03 - sys_corr_129: 2.61104930e-02 + sys_corr_127: -8.47417590e-01 + sys_corr_128: 1.54654600e-03 + sys_corr_129: -2.61104930e-02 sys_corr_130: 1.75446592e-03 - sys_corr_131: -1.33609732e-03 - sys_corr_132: 2.24677632e-02 + sys_corr_131: 2.24677632e-02 + sys_corr_132: 1.33609732e-03 stat: 0.0 luminosity: 6.87730965e+03 - sys_corr_1: 4.23827158e+03 @@ -10860,26 +10860,26 @@ bins: sys_corr_4: -1.57540243e+03 sys_corr_5: 5.75146097e+02 sys_corr_6: 2.80771222e+02 - sys_corr_7: 4.91633006e+02 - sys_corr_8: -2.18042228e+02 + sys_corr_7: -4.91633006e+02 + sys_corr_8: 2.18042228e+02 sys_corr_9: -5.86830315e+02 - sys_corr_10: -3.52712682e+02 - sys_corr_11: -3.88860076e+01 - sys_corr_12: -1.54391600e+02 + sys_corr_10: 3.52712682e+02 + sys_corr_11: 3.88860076e+01 + sys_corr_12: 1.54391600e+02 sys_corr_13: 2.48156532e+02 - sys_corr_14: -1.03628862e+02 - sys_corr_15: -9.76854674e+02 - sys_corr_16: 6.75952474e+02 - sys_corr_17: 1.42814235e+02 - sys_corr_18: 4.47149246e+02 - sys_corr_19: -8.13248215e+01 - sys_corr_20: -2.02904845e+00 - sys_corr_21: -1.51097980e+01 - sys_corr_22: 1.40178048e+01 - sys_corr_23: 1.16788745e+01 - sys_corr_24: -6.71670565e+00 - sys_corr_25: -6.37680968e+00 - sys_corr_26: -2.53385544e+01 + sys_corr_14: 1.03628862e+02 + sys_corr_15: 9.76854674e+02 + sys_corr_16: -6.75952474e+02 + sys_corr_17: -1.42814235e+02 + sys_corr_18: -4.47149246e+02 + sys_corr_19: 8.13248215e+01 + sys_corr_20: 2.02904845e+00 + sys_corr_21: 1.51097980e+01 + sys_corr_22: -1.40178048e+01 + sys_corr_23: -1.16788745e+01 + sys_corr_24: 6.71670565e+00 + sys_corr_25: 6.37680968e+00 + sys_corr_26: 2.53385544e+01 sys_corr_27: -1.23670817e+00 sys_corr_28: -3.70324718e+00 sys_corr_29: 1.63599294e+01 @@ -10892,100 +10892,100 @@ bins: sys_corr_36: 5.41811087e-01 sys_corr_37: 4.93727704e-01 sys_corr_38: -1.84939356e+00 - sys_corr_39: -8.70226071e-01 + sys_corr_39: 8.70226071e-01 sys_corr_40: 1.89039967e+00 sys_corr_41: -5.95243159e-01 - sys_corr_42: 1.70090035e+00 + sys_corr_42: -1.70090035e+00 sys_corr_43: -4.51627761e+00 - sys_corr_44: 5.32157980e+00 - sys_corr_45: -1.48999244e+00 - sys_corr_46: -5.75431992e-01 - sys_corr_47: -2.32140298e+00 - sys_corr_48: -3.68080411e+00 + sys_corr_44: -5.32157980e+00 + sys_corr_45: 1.48999244e+00 + sys_corr_46: 5.75431992e-01 + sys_corr_47: 2.32140298e+00 + sys_corr_48: 3.68080411e+00 sys_corr_49: 3.41833834e-01 - sys_corr_50: 2.58167613e-01 - sys_corr_51: -1.78107229e-01 - sys_corr_52: -1.64047463e+00 - sys_corr_53: -1.24466591e+00 - sys_corr_54: 2.94709976e-01 + sys_corr_50: -2.58167613e-01 + sys_corr_51: 1.78107229e-01 + sys_corr_52: 1.64047463e+00 + sys_corr_53: 1.24466591e+00 + sys_corr_54: -2.94709976e-01 sys_corr_55: 8.89304307e-01 sys_corr_56: -3.85010367e-01 - sys_corr_57: -7.26604120e-01 + sys_corr_57: 7.26604120e-01 sys_corr_58: -6.33215959e-01 - sys_corr_59: -2.37673035e-02 + sys_corr_59: 2.37673035e-02 sys_corr_60: 2.13793910e-01 sys_corr_61: 4.43510622e-01 sys_corr_62: 4.24939836e-01 - sys_corr_63: 4.58031894e-01 + sys_corr_63: -4.58031894e-01 sys_corr_64: 1.88176113e-01 sys_corr_65: -3.19051593e-02 - sys_corr_66: 6.00372150e-01 - sys_corr_67: -4.69669584e-01 - sys_corr_68: 3.29513402e-01 - sys_corr_69: 5.63074672e-01 - sys_corr_70: 4.19058445e-01 - sys_corr_71: 7.49165876e-01 - sys_corr_72: 3.32145623e-01 - sys_corr_73: -2.50604884e-01 - sys_corr_74: 2.62362664e-01 - sys_corr_75: 8.88554035e-01 + sys_corr_66: -6.00372150e-01 + sys_corr_67: 4.69669584e-01 + sys_corr_68: -3.29513402e-01 + sys_corr_69: -5.63074672e-01 + sys_corr_70: -4.19058445e-01 + sys_corr_71: -2.50604884e-01 + sys_corr_72: -3.32145623e-01 + sys_corr_73: -7.49165876e-01 + sys_corr_74: -2.62362664e-01 + sys_corr_75: -8.88554035e-01 sys_corr_76: 2.77760360e-01 sys_corr_77: 6.56821607e-01 - sys_corr_78: -3.34450752e-01 + sys_corr_78: -6.16780665e-01 sys_corr_79: 1.13479467e-01 - sys_corr_80: 6.16780665e-01 + sys_corr_80: 3.34450752e-01 sys_corr_81: 3.61047130e-01 - sys_corr_82: -1.30135090e-01 - sys_corr_83: 9.41133711e-02 + sys_corr_82: 9.41133711e-02 + sys_corr_83: 1.30135090e-01 sys_corr_84: -3.41244429e-01 - sys_corr_85: 7.87177689e-01 - sys_corr_86: 5.23103011e-01 + sys_corr_85: -7.87177689e-01 + sys_corr_86: -5.23103011e-01 sys_corr_87: -1.65535017e+00 sys_corr_88: 8.13811309e-02 - sys_corr_89: -3.68900633e-01 - sys_corr_90: -2.29173633e-02 + sys_corr_89: 3.68900633e-01 + sys_corr_90: 2.29173633e-02 sys_corr_91: 6.45194520e-02 - sys_corr_92: 7.62592849e-01 - sys_corr_93: -1.87909420e-01 + sys_corr_92: -7.62592849e-01 + sys_corr_93: 9.77264624e-02 sys_corr_94: -5.42225649e-02 - sys_corr_95: -9.77264624e-02 + sys_corr_95: 1.87909420e-01 sys_corr_96: -4.01333935e-02 sys_corr_97: -2.30836866e-01 sys_corr_98: 6.18239556e-01 sys_corr_99: -1.36381087e+00 - sys_corr_100: -7.13181179e-02 - sys_corr_101: 2.54540214e-01 - sys_corr_102: -2.13627426e-01 - sys_corr_103: -1.96447223e-01 - sys_corr_104: 5.84133318e-02 - sys_corr_105: 2.88385398e-01 - sys_corr_106: 3.21290962e-03 - sys_corr_107: -5.74223006e-02 - sys_corr_108: -2.46959778e-02 - sys_corr_109: 9.02362524e-03 - sys_corr_110: 6.05182549e-02 - sys_corr_111: 3.20420228e-01 - sys_corr_112: 2.87877392e-02 + sys_corr_100: 5.84133318e-02 + sys_corr_101: -1.96447223e-01 + sys_corr_102: -2.88385398e-01 + sys_corr_103: 2.13627426e-01 + sys_corr_104: 2.54540214e-01 + sys_corr_105: -7.13181179e-02 + sys_corr_106: -3.21290962e-03 + sys_corr_107: 5.74223006e-02 + sys_corr_108: -3.20420228e-01 + sys_corr_109: 2.46959778e-02 + sys_corr_110: -9.02362524e-03 + sys_corr_111: 6.05182549e-02 + sys_corr_112: -2.87877392e-02 sys_corr_113: -2.19380680e-02 sys_corr_114: -2.72490765e-04 - sys_corr_115: 9.09638371e-03 - sys_corr_116: 9.61128796e-04 + sys_corr_115: -9.09638371e-03 + sys_corr_116: -9.61128796e-04 sys_corr_117: -3.71735080e-03 - sys_corr_118: -1.77851751e-02 - sys_corr_119: -3.30592748e-04 + sys_corr_118: 1.77851751e-02 + sys_corr_119: 3.30592748e-04 sys_corr_120: -4.81498667e-03 sys_corr_121: 7.72405589e-04 sys_corr_122: 5.69558936e-03 - sys_corr_123: -2.65074861e-03 + sys_corr_123: 2.65074861e-03 sys_corr_124: -8.02139417e-03 - sys_corr_125: -7.16199145e-03 + sys_corr_125: 7.16199145e-03 sys_corr_126: -2.17857885e-03 - sys_corr_127: -8.58475775e-01 - sys_corr_128: -1.87978943e-02 - sys_corr_129: 1.38247514e-02 + sys_corr_127: 8.58475775e-01 + sys_corr_128: 1.87978943e-02 + sys_corr_129: -1.38247514e-02 sys_corr_130: 5.94605640e-03 - sys_corr_131: -3.56955121e-03 - sys_corr_132: 1.94628279e-02 + sys_corr_131: 1.94628279e-02 + sys_corr_132: 3.56955121e-03 stat: 0.0 luminosity: 6.81114843e+03 - sys_corr_1: 4.37096323e+03 @@ -10994,26 +10994,26 @@ bins: sys_corr_4: -1.98084960e+03 sys_corr_5: 4.35068967e+02 sys_corr_6: 5.31147135e+01 - sys_corr_7: -2.90438405e+02 - sys_corr_8: 6.39733231e+02 + sys_corr_7: 2.90438405e+02 + sys_corr_8: -6.39733231e+02 sys_corr_9: -2.92295451e+02 - sys_corr_10: 4.44401779e+01 - sys_corr_11: -2.52847200e+02 - sys_corr_12: -8.75118855e+02 + sys_corr_10: -4.44401779e+01 + sys_corr_11: 2.52847200e+02 + sys_corr_12: 8.75118855e+02 sys_corr_13: 4.43102775e+02 - sys_corr_14: 4.61951072e+02 - sys_corr_15: 2.98314008e+02 - sys_corr_16: -5.16899252e+02 - sys_corr_17: -2.19471021e+02 - sys_corr_18: -4.82673363e+02 - sys_corr_19: -1.06037852e+02 - sys_corr_20: -8.19523898e+00 - sys_corr_21: -4.43684546e+01 - sys_corr_22: 6.94015050e+01 - sys_corr_23: 1.93089268e+01 - sys_corr_24: -4.94109366e+01 - sys_corr_25: -1.77733245e+01 - sys_corr_26: -7.62231659e-01 + sys_corr_14: -4.61951072e+02 + sys_corr_15: -2.98314008e+02 + sys_corr_16: 5.16899252e+02 + sys_corr_17: 2.19471021e+02 + sys_corr_18: 4.82673363e+02 + sys_corr_19: 1.06037852e+02 + sys_corr_20: 8.19523898e+00 + sys_corr_21: 4.43684546e+01 + sys_corr_22: -6.94015050e+01 + sys_corr_23: -1.93089268e+01 + sys_corr_24: 4.94109366e+01 + sys_corr_25: 1.77733245e+01 + sys_corr_26: 7.62231659e-01 sys_corr_27: -1.05263482e+01 sys_corr_28: -1.29912968e+01 sys_corr_29: 1.88299495e+01 @@ -11026,100 +11026,100 @@ bins: sys_corr_36: 2.26099989e+00 sys_corr_37: 2.44699676e+00 sys_corr_38: -9.62180470e-01 - sys_corr_39: 2.47696765e+00 + sys_corr_39: -2.47696765e+00 sys_corr_40: 7.16926045e-01 sys_corr_41: -3.22665949e+00 - sys_corr_42: 1.09710547e+00 + sys_corr_42: -1.09710547e+00 sys_corr_43: 1.45278290e+00 - sys_corr_44: 5.33491801e-01 - sys_corr_45: 3.40019886e+00 - sys_corr_46: 2.38405244e-01 - sys_corr_47: 3.22109264e+00 - sys_corr_48: 1.15486081e+00 + sys_corr_44: -5.33491801e-01 + sys_corr_45: -3.40019886e+00 + sys_corr_46: -2.38405244e-01 + sys_corr_47: -3.22109264e+00 + sys_corr_48: -1.15486081e+00 sys_corr_49: -3.57289733e+00 - sys_corr_50: 2.52127990e+00 - sys_corr_51: -7.69639955e-01 - sys_corr_52: -1.14308797e+00 - sys_corr_53: 8.91813946e-01 - sys_corr_54: 8.52091009e-02 + sys_corr_50: -2.52127990e+00 + sys_corr_51: 7.69639955e-01 + sys_corr_52: 1.14308797e+00 + sys_corr_53: -8.91813946e-01 + sys_corr_54: -8.52091009e-02 sys_corr_55: 1.28728468e+00 sys_corr_56: 8.11298244e-01 - sys_corr_57: -3.21731655e-01 + sys_corr_57: 3.21731655e-01 sys_corr_58: 7.38447900e-01 - sys_corr_59: 5.42959691e-01 + sys_corr_59: -5.42959691e-01 sys_corr_60: 3.50845929e-01 sys_corr_61: 6.68518779e-01 sys_corr_62: -4.73356298e-01 - sys_corr_63: 2.11139731e-01 + sys_corr_63: -2.11139731e-01 sys_corr_64: -2.53163333e-01 sys_corr_65: -9.23845625e-01 - sys_corr_66: 2.44018919e-01 - sys_corr_67: 5.33707774e-01 - sys_corr_68: 1.08287356e+00 - sys_corr_69: -2.80095971e-01 - sys_corr_70: 9.09648170e-02 - sys_corr_71: -6.91840226e-01 - sys_corr_72: 1.34619579e-01 - sys_corr_73: -4.15080840e-01 - sys_corr_74: -4.96343177e-01 - sys_corr_75: -2.68529165e-01 + sys_corr_66: -2.44018919e-01 + sys_corr_67: -5.33707774e-01 + sys_corr_68: -1.08287356e+00 + sys_corr_69: 2.80095971e-01 + sys_corr_70: -9.09648170e-02 + sys_corr_71: -4.15080840e-01 + sys_corr_72: -1.34619579e-01 + sys_corr_73: 6.91840226e-01 + sys_corr_74: 4.96343177e-01 + sys_corr_75: 2.68529165e-01 sys_corr_76: 2.01899696e-01 sys_corr_77: 5.71987987e-01 - sys_corr_78: -1.10682250e-01 + sys_corr_78: 1.59429993e-01 sys_corr_79: -3.78444109e-01 - sys_corr_80: -1.59429993e-01 + sys_corr_80: 1.10682250e-01 sys_corr_81: 1.29844678e-01 - sys_corr_82: -3.41904762e-01 - sys_corr_83: 7.98182097e-02 + sys_corr_82: 7.98182097e-02 + sys_corr_83: 3.41904762e-01 sys_corr_84: 3.46651084e-01 - sys_corr_85: 2.38390024e-01 - sys_corr_86: -3.70687160e-01 + sys_corr_85: -2.38390024e-01 + sys_corr_86: 3.70687160e-01 sys_corr_87: -1.51106090e-01 sys_corr_88: -5.61885601e-02 - sys_corr_89: -3.96201494e-02 - sys_corr_90: -3.05193488e-01 + sys_corr_89: 3.96201494e-02 + sys_corr_90: 3.05193488e-01 sys_corr_91: -5.21761595e-02 - sys_corr_92: -1.27613159e+00 - sys_corr_93: 2.25432170e-02 + sys_corr_92: 1.27613159e+00 + sys_corr_93: 2.32753141e-01 sys_corr_94: -2.77952767e-01 - sys_corr_95: -2.32753141e-01 + sys_corr_95: -2.25432170e-02 sys_corr_96: -5.21772651e-03 sys_corr_97: -6.49504839e-01 sys_corr_98: -8.15312555e-01 sys_corr_99: 1.36992990e+00 - sys_corr_100: -1.72815195e-03 - sys_corr_101: -2.01357385e-02 - sys_corr_102: -1.10660979e-01 - sys_corr_103: -2.18004770e-01 - sys_corr_104: -3.24427704e-02 - sys_corr_105: -1.06545058e-01 - sys_corr_106: 6.49766869e-02 - sys_corr_107: 8.42233012e-02 - sys_corr_108: -3.51404320e-02 - sys_corr_109: -1.30831199e-02 - sys_corr_110: 7.64534287e-02 - sys_corr_111: -3.35806767e-01 - sys_corr_112: 2.20977579e-03 + sys_corr_100: -3.24427704e-02 + sys_corr_101: -2.18004770e-01 + sys_corr_102: 1.06545058e-01 + sys_corr_103: 1.10660979e-01 + sys_corr_104: -2.01357385e-02 + sys_corr_105: -1.72815195e-03 + sys_corr_106: -6.49766869e-02 + sys_corr_107: -8.42233012e-02 + sys_corr_108: 3.35806767e-01 + sys_corr_109: 3.51404320e-02 + sys_corr_110: 1.30831199e-02 + sys_corr_111: 7.64534287e-02 + sys_corr_112: -2.20977579e-03 sys_corr_113: -5.79391378e-02 sys_corr_114: 2.26268146e-04 - sys_corr_115: -1.87285913e-02 - sys_corr_116: 6.67415538e-03 + sys_corr_115: 1.87285913e-02 + sys_corr_116: -6.67415538e-03 sys_corr_117: -4.71862860e-03 - sys_corr_118: -4.25646302e-03 - sys_corr_119: -1.67860778e-04 + sys_corr_118: 4.25646302e-03 + sys_corr_119: 1.67860778e-04 sys_corr_120: -6.62474845e-03 sys_corr_121: 8.71324611e-04 sys_corr_122: -2.11938153e-03 - sys_corr_123: 4.01382838e-04 + sys_corr_123: -4.01382838e-04 sys_corr_124: -1.51630619e-02 - sys_corr_125: -3.83580887e-04 + sys_corr_125: 3.83580887e-04 sys_corr_126: -2.22579690e-03 - sys_corr_127: -5.21574156e-01 - sys_corr_128: -3.81074388e-02 - sys_corr_129: 6.28738604e-02 + sys_corr_127: 5.21574156e-01 + sys_corr_128: 3.81074388e-02 + sys_corr_129: -6.28738604e-02 sys_corr_130: 2.44480358e-03 - sys_corr_131: -2.54385835e-03 - sys_corr_132: 1.72540454e-02 + sys_corr_131: 1.72540454e-02 + sys_corr_132: 2.54385835e-03 stat: 0.0 luminosity: 6.75054156e+03 - sys_corr_1: 4.34350956e+03 @@ -11128,26 +11128,26 @@ bins: sys_corr_4: -1.53003669e+03 sys_corr_5: -2.22312099e+02 sys_corr_6: -1.83897076e+02 - sys_corr_7: -8.97751360e+02 - sys_corr_8: 2.91430700e+02 + sys_corr_7: 8.97751360e+02 + sys_corr_8: -2.91430700e+02 sys_corr_9: 9.88648218e+01 - sys_corr_10: 1.16346609e+03 - sys_corr_11: -4.45620948e+01 - sys_corr_12: 5.68969900e+02 + sys_corr_10: -1.16346609e+03 + sys_corr_11: 4.45620948e+01 + sys_corr_12: -5.68969900e+02 sys_corr_13: -6.05551273e+02 - sys_corr_14: -3.91594015e+02 - sys_corr_15: 1.20745250e+02 - sys_corr_16: 6.89688698e+01 - sys_corr_17: 6.18804533e+01 - sys_corr_18: 3.59435230e+02 - sys_corr_19: 1.20881282e+02 - sys_corr_20: 2.16401120e+01 - sys_corr_21: 1.36212445e+01 - sys_corr_22: 5.11360673e+01 - sys_corr_23: 2.60281740e+00 - sys_corr_24: -4.05490553e+01 - sys_corr_25: 1.25482284e+01 - sys_corr_26: 1.42378704e+01 + sys_corr_14: 3.91594015e+02 + sys_corr_15: -1.20745250e+02 + sys_corr_16: -6.89688698e+01 + sys_corr_17: -6.18804533e+01 + sys_corr_18: -3.59435230e+02 + sys_corr_19: -1.20881282e+02 + sys_corr_20: -2.16401120e+01 + sys_corr_21: -1.36212445e+01 + sys_corr_22: -5.11360673e+01 + sys_corr_23: -2.60281740e+00 + sys_corr_24: 4.05490553e+01 + sys_corr_25: -1.25482284e+01 + sys_corr_26: -1.42378704e+01 sys_corr_27: -3.88186390e+00 sys_corr_28: -1.70368603e+00 sys_corr_29: -7.29010293e+00 @@ -11160,100 +11160,100 @@ bins: sys_corr_36: 2.29036998e+00 sys_corr_37: -1.57892900e+00 sys_corr_38: 7.11871969e-01 - sys_corr_39: -6.01667351e+00 + sys_corr_39: 6.01667351e+00 sys_corr_40: 5.45241639e-01 sys_corr_41: 1.74808064e+00 - sys_corr_42: -1.28823405e+00 + sys_corr_42: 1.28823405e+00 sys_corr_43: -3.35389930e+00 - sys_corr_44: -4.93906771e-01 - sys_corr_45: -1.38396606e+00 - sys_corr_46: 1.21907092e+00 - sys_corr_47: -1.13358680e+00 - sys_corr_48: 3.54139196e-01 + sys_corr_44: 4.93906771e-01 + sys_corr_45: 1.38396606e+00 + sys_corr_46: -1.21907092e+00 + sys_corr_47: 1.13358680e+00 + sys_corr_48: -3.54139196e-01 sys_corr_49: -3.35348416e-02 - sys_corr_50: 4.76451480e-01 - sys_corr_51: 6.52723234e-01 - sys_corr_52: 7.47564666e-01 - sys_corr_53: 3.87795107e-01 - sys_corr_54: 5.74734696e-02 + sys_corr_50: -4.76451480e-01 + sys_corr_51: -6.52723234e-01 + sys_corr_52: -7.47564666e-01 + sys_corr_53: -3.87795107e-01 + sys_corr_54: -5.74734696e-02 sys_corr_55: -4.17350607e-01 sys_corr_56: -1.22112325e-01 - sys_corr_57: 4.49095261e-01 + sys_corr_57: -4.49095261e-01 sys_corr_58: -1.64091908e+00 - sys_corr_59: -6.13223078e-01 + sys_corr_59: 6.13223078e-01 sys_corr_60: -6.38853635e-01 sys_corr_61: -1.06848473e+00 sys_corr_62: 1.74895959e+00 - sys_corr_63: 1.08059767e+00 + sys_corr_63: -1.08059767e+00 sys_corr_64: 6.56715525e-01 sys_corr_65: 2.90599807e-01 - sys_corr_66: 3.60012442e-01 - sys_corr_67: -2.50149963e-01 - sys_corr_68: -1.48786648e+00 - sys_corr_69: 4.07549699e-01 - sys_corr_70: 4.12483687e-01 - sys_corr_71: -9.52920819e-01 - sys_corr_72: 2.29527356e-01 - sys_corr_73: 7.84343538e-01 - sys_corr_74: -3.43048841e-01 - sys_corr_75: 3.00920324e-01 + sys_corr_66: -3.60012442e-01 + sys_corr_67: 2.50149963e-01 + sys_corr_68: 1.48786648e+00 + sys_corr_69: -4.07549699e-01 + sys_corr_70: -4.12483687e-01 + sys_corr_71: 7.84343538e-01 + sys_corr_72: -2.29527356e-01 + sys_corr_73: 9.52920819e-01 + sys_corr_74: 3.43048841e-01 + sys_corr_75: -3.00920324e-01 sys_corr_76: 2.99231309e-01 sys_corr_77: 5.29260950e-03 - sys_corr_78: 1.64946530e-01 + sys_corr_78: -2.23778187e-01 sys_corr_79: -2.90682333e-01 - sys_corr_80: 2.23778187e-01 + sys_corr_80: -1.64946530e-01 sys_corr_81: -3.26749922e-01 - sys_corr_82: -7.28669774e-02 - sys_corr_83: -4.44961916e-01 + sys_corr_82: -4.44961916e-01 + sys_corr_83: 7.28669774e-02 sys_corr_84: -4.24170174e-01 - sys_corr_85: 1.92789174e-01 - sys_corr_86: 3.57653879e-02 + sys_corr_85: -1.92789174e-01 + sys_corr_86: -3.57653879e-02 sys_corr_87: -4.04565644e-01 sys_corr_88: -7.25025499e-02 - sys_corr_89: -6.43553748e-02 - sys_corr_90: -4.77185687e-02 + sys_corr_89: 6.43553748e-02 + sys_corr_90: 4.77185687e-02 sys_corr_91: -2.39588284e-02 - sys_corr_92: 1.33990832e-01 - sys_corr_93: 4.78534730e-02 + sys_corr_92: -1.33990832e-01 + sys_corr_93: -2.82880716e-02 sys_corr_94: 1.50556186e-01 - sys_corr_95: 2.82880716e-02 + sys_corr_95: -4.78534730e-02 sys_corr_96: -7.52972972e-02 sys_corr_97: 1.76527721e-01 sys_corr_98: 1.98503770e-01 sys_corr_99: -5.12472662e-01 - sys_corr_100: -1.67029310e-01 - sys_corr_101: -1.05284861e-02 - sys_corr_102: 4.81677492e-01 - sys_corr_103: 4.91431142e-01 - sys_corr_104: -1.07639325e-01 - sys_corr_105: -4.86006042e-01 - sys_corr_106: 5.49596902e-02 - sys_corr_107: -5.60643513e-02 - sys_corr_108: -2.33801816e-03 - sys_corr_109: -7.06993673e-02 - sys_corr_110: -1.43461986e-01 - sys_corr_111: 7.02897576e-01 - sys_corr_112: 2.95958270e-03 + sys_corr_100: -1.07639325e-01 + sys_corr_101: 4.91431142e-01 + sys_corr_102: 4.86006042e-01 + sys_corr_103: -4.81677492e-01 + sys_corr_104: -1.05284861e-02 + sys_corr_105: -1.67029310e-01 + sys_corr_106: -5.49596902e-02 + sys_corr_107: 5.60643513e-02 + sys_corr_108: -7.02897576e-01 + sys_corr_109: 2.33801816e-03 + sys_corr_110: 7.06993673e-02 + sys_corr_111: -1.43461986e-01 + sys_corr_112: -2.95958270e-03 sys_corr_113: -2.63560743e-02 sys_corr_114: 3.96908276e-04 - sys_corr_115: 2.25267845e-02 - sys_corr_116: -1.19666867e-04 + sys_corr_115: -2.25267845e-02 + sys_corr_116: 1.19666867e-04 sys_corr_117: -2.10599659e-03 - sys_corr_118: 5.04680924e-03 - sys_corr_119: -3.50759012e-06 + sys_corr_118: -5.04680924e-03 + sys_corr_119: 3.50759011e-06 sys_corr_120: 2.29487087e-03 sys_corr_121: -1.18959626e-03 sys_corr_122: -1.27393598e-03 - sys_corr_123: 1.08470376e-03 + sys_corr_123: -1.08470376e-03 sys_corr_124: 3.28494989e-03 - sys_corr_125: 1.48749126e-03 + sys_corr_125: -1.48749126e-03 sys_corr_126: 2.47148653e-03 - sys_corr_127: 1.44426846e-01 - sys_corr_128: 4.12491118e-02 - sys_corr_129: -8.81498989e-03 + sys_corr_127: -1.44426846e-01 + sys_corr_128: -4.12491118e-02 + sys_corr_129: 8.81498989e-03 sys_corr_130: -4.02773077e-03 - sys_corr_131: 1.79111706e-03 - sys_corr_132: -6.73801965e-04 + sys_corr_131: -6.73801965e-04 + sys_corr_132: -1.79111706e-03 stat: 0.0 luminosity: 6.58966504e+03 - sys_corr_1: 4.02226908e+03 @@ -11262,26 +11262,26 @@ bins: sys_corr_4: -7.00141280e+02 sys_corr_5: -7.34077974e+02 sys_corr_6: -2.54722486e+02 - sys_corr_7: -5.61104331e+02 - sys_corr_8: -1.05353618e+03 + sys_corr_7: 5.61104331e+02 + sys_corr_8: 1.05353618e+03 sys_corr_9: 4.21241272e+02 - sys_corr_10: -6.98647221e+02 - sys_corr_11: 9.94105381e+02 - sys_corr_12: -1.59761047e+02 + sys_corr_10: 6.98647221e+02 + sys_corr_11: -9.94105381e+02 + sys_corr_12: 1.59761047e+02 sys_corr_13: 1.06331024e+02 - sys_corr_14: -2.54663193e+02 - sys_corr_15: 1.44706394e+02 - sys_corr_16: 6.61538844e+01 - sys_corr_17: 1.64375791e+02 - sys_corr_18: -3.63930272e+02 - sys_corr_19: 2.60961553e+02 - sys_corr_20: -7.31339218e+01 - sys_corr_21: 7.74940107e+01 - sys_corr_22: 1.26972276e+01 - sys_corr_23: 6.54780200e+00 - sys_corr_24: -1.68533909e+01 - sys_corr_25: -1.11783018e+00 - sys_corr_26: 6.27606518e+00 + sys_corr_14: 2.54663193e+02 + sys_corr_15: -1.44706394e+02 + sys_corr_16: -6.61538844e+01 + sys_corr_17: -1.64375791e+02 + sys_corr_18: 3.63930272e+02 + sys_corr_19: -2.60961553e+02 + sys_corr_20: 7.31339218e+01 + sys_corr_21: -7.74940107e+01 + sys_corr_22: -1.26972276e+01 + sys_corr_23: -6.54780200e+00 + sys_corr_24: 1.68533909e+01 + sys_corr_25: 1.11783018e+00 + sys_corr_26: -6.27606518e+00 sys_corr_27: -4.42409515e+00 sys_corr_28: 1.33321095e+01 sys_corr_29: -1.23080819e+01 @@ -11294,100 +11294,100 @@ bins: sys_corr_36: 1.71412716e+00 sys_corr_37: 3.75881550e-01 sys_corr_38: 2.26179543e-01 - sys_corr_39: 1.96184596e+00 + sys_corr_39: -1.96184596e+00 sys_corr_40: 2.46314505e+00 sys_corr_41: -3.91203201e-02 - sys_corr_42: -5.38156267e-02 + sys_corr_42: 5.38156267e-02 sys_corr_43: -1.23258979e-01 - sys_corr_44: -5.32864949e+00 - sys_corr_45: 8.08643562e-01 - sys_corr_46: -4.80304857e+00 - sys_corr_47: 1.10593563e+00 - sys_corr_48: 1.37128548e-01 + sys_corr_44: 5.32864949e+00 + sys_corr_45: -8.08643562e-01 + sys_corr_46: 4.80304857e+00 + sys_corr_47: -1.10593563e+00 + sys_corr_48: -1.37128548e-01 sys_corr_49: 1.53463819e+00 - sys_corr_50: 1.66562668e+00 - sys_corr_51: 1.93256401e-01 - sys_corr_52: 1.68852240e+00 - sys_corr_53: 4.81840266e-01 - sys_corr_54: -8.69219550e-01 + sys_corr_50: -1.66562668e+00 + sys_corr_51: -1.93256401e-01 + sys_corr_52: -1.68852240e+00 + sys_corr_53: -4.81840266e-01 + sys_corr_54: 8.69219550e-01 sys_corr_55: -2.61357907e+00 sys_corr_56: -5.46782631e-01 - sys_corr_57: -5.01879145e-01 + sys_corr_57: 5.01879145e-01 sys_corr_58: 5.38459608e-01 - sys_corr_59: -9.92203380e-01 + sys_corr_59: 9.92203380e-01 sys_corr_60: -4.84996399e-01 sys_corr_61: 1.86573015e+00 sys_corr_62: -6.67314310e-02 - sys_corr_63: -8.60339480e-01 + sys_corr_63: 8.60339480e-01 sys_corr_64: -1.56753725e+00 sys_corr_65: 1.66583193e-01 - sys_corr_66: -5.71318797e-01 - sys_corr_67: 6.88699774e-01 - sys_corr_68: -5.49791006e-01 - sys_corr_69: 1.06989871e-01 - sys_corr_70: -1.02315395e+00 - sys_corr_71: 4.20288005e-01 - sys_corr_72: 7.00705191e-01 - sys_corr_73: -2.51930045e-02 - sys_corr_74: 3.74686784e-01 - sys_corr_75: -1.38494634e-01 + sys_corr_66: 5.71318797e-01 + sys_corr_67: -6.88699774e-01 + sys_corr_68: 5.49791006e-01 + sys_corr_69: -1.06989871e-01 + sys_corr_70: 1.02315395e+00 + sys_corr_71: -2.51930045e-02 + sys_corr_72: -7.00705191e-01 + sys_corr_73: -4.20288005e-01 + sys_corr_74: -3.74686784e-01 + sys_corr_75: 1.38494634e-01 sys_corr_76: -5.98594284e-02 sys_corr_77: -1.86951797e-01 - sys_corr_78: -1.00754767e+00 + sys_corr_78: 3.00726072e-01 sys_corr_79: -2.85056812e-01 - sys_corr_80: -3.00726072e-01 + sys_corr_80: 1.00754767e+00 sys_corr_81: -8.89029381e-01 - sys_corr_82: -6.11289008e-01 - sys_corr_83: -1.66733382e-01 + sys_corr_82: -1.66733382e-01 + sys_corr_83: 6.11289008e-01 sys_corr_84: 1.18702720e-01 - sys_corr_85: -5.32529450e-01 - sys_corr_86: -1.48863461e-01 + sys_corr_85: 5.32529450e-01 + sys_corr_86: 1.48863461e-01 sys_corr_87: -2.01563107e-01 sys_corr_88: 6.26927206e-02 - sys_corr_89: 3.20260425e-01 - sys_corr_90: 3.09685559e-01 + sys_corr_89: -3.20260425e-01 + sys_corr_90: -3.09685559e-01 sys_corr_91: -1.00449313e-01 - sys_corr_92: -1.92663425e-01 - sys_corr_93: -3.13662525e-02 + sys_corr_92: 1.92663425e-01 + sys_corr_93: -1.39725778e-02 sys_corr_94: -1.31380778e-01 - sys_corr_95: 1.39725778e-02 + sys_corr_95: 3.13662525e-02 sys_corr_96: -1.18712570e-01 sys_corr_97: -3.80817191e-01 sys_corr_98: -2.37267878e-01 sys_corr_99: -1.45858435e-01 - sys_corr_100: -5.63797911e-02 - sys_corr_101: -4.64843288e-01 - sys_corr_102: 2.56298872e-01 - sys_corr_103: 6.12161133e-02 - sys_corr_104: 7.66202192e-02 - sys_corr_105: 1.96253033e-01 - sys_corr_106: 3.45140480e-03 - sys_corr_107: 2.11320918e-01 - sys_corr_108: 7.83037994e-02 - sys_corr_109: 1.07756264e-01 - sys_corr_110: -1.18134289e-01 - sys_corr_111: -9.84792127e-01 - sys_corr_112: -4.30689958e-02 + sys_corr_100: 7.66202192e-02 + sys_corr_101: 6.12161133e-02 + sys_corr_102: -1.96253033e-01 + sys_corr_103: -2.56298872e-01 + sys_corr_104: -4.64843288e-01 + sys_corr_105: -5.63797911e-02 + sys_corr_106: -3.45140480e-03 + sys_corr_107: -2.11320918e-01 + sys_corr_108: 9.84792127e-01 + sys_corr_109: -7.83037994e-02 + sys_corr_110: -1.07756264e-01 + sys_corr_111: -1.18134289e-01 + sys_corr_112: 4.30689958e-02 sys_corr_113: -3.94032764e-02 sys_corr_114: 5.82427112e-04 - sys_corr_115: -8.03277678e-03 - sys_corr_116: -1.51427525e-02 + sys_corr_115: 8.03277678e-03 + sys_corr_116: 1.51427525e-02 sys_corr_117: 1.48004110e-02 - sys_corr_118: -2.26364750e-02 - sys_corr_119: -5.95022474e-04 + sys_corr_118: 2.26364750e-02 + sys_corr_119: 5.95022474e-04 sys_corr_120: 1.15178116e-02 sys_corr_121: 3.34399863e-04 sys_corr_122: -6.43986702e-03 - sys_corr_123: 2.98863884e-04 + sys_corr_123: -2.98863884e-04 sys_corr_124: 2.88638198e-02 - sys_corr_125: 1.05139199e-02 + sys_corr_125: -1.05139199e-02 sys_corr_126: 4.52574589e-03 - sys_corr_127: 5.54962960e-01 - sys_corr_128: 2.38398626e-02 - sys_corr_129: 3.08241177e-02 + sys_corr_127: -5.54962960e-01 + sys_corr_128: -2.38398626e-02 + sys_corr_129: -3.08241177e-02 sys_corr_130: -8.31285920e-03 - sys_corr_131: 6.88586777e-03 - sys_corr_132: 3.38316212e-04 + sys_corr_131: 3.38316212e-04 + sys_corr_132: -6.88586777e-03 stat: 0.0 luminosity: 6.43408823e+03 - sys_corr_1: 3.59758368e+03 @@ -11396,26 +11396,26 @@ bins: sys_corr_4: 2.01552643e+02 sys_corr_5: -1.10481893e+03 sys_corr_6: -1.91743494e+02 - sys_corr_7: 3.53596931e+01 - sys_corr_8: -3.46481611e+02 + sys_corr_7: -3.53596931e+01 + sys_corr_8: 3.46481611e+02 sys_corr_9: 4.80663748e+02 - sys_corr_10: -1.69838568e+02 - sys_corr_11: -1.21429553e+03 - sys_corr_12: 6.44200155e+02 + sys_corr_10: 1.69838568e+02 + sys_corr_11: 1.21429553e+03 + sys_corr_12: -6.44200155e+02 sys_corr_13: 5.39850804e+02 - sys_corr_14: 1.06666875e+02 - sys_corr_15: -7.15733637e+01 - sys_corr_16: 3.07414901e+02 - sys_corr_17: -3.81897783e+02 - sys_corr_18: -3.02924230e+02 - sys_corr_19: -1.85019007e+02 - sys_corr_20: 2.40029122e+01 - sys_corr_21: -1.03183697e+02 - sys_corr_22: -2.79527123e+01 - sys_corr_23: 1.17851403e+01 - sys_corr_24: 1.93425027e+01 - sys_corr_25: 2.18816151e-01 - sys_corr_26: 6.38201894e-01 + sys_corr_14: -1.06666875e+02 + sys_corr_15: 7.15733637e+01 + sys_corr_16: -3.07414901e+02 + sys_corr_17: 3.81897783e+02 + sys_corr_18: 3.02924230e+02 + sys_corr_19: 1.85019007e+02 + sys_corr_20: -2.40029122e+01 + sys_corr_21: 1.03183697e+02 + sys_corr_22: 2.79527123e+01 + sys_corr_23: -1.17851403e+01 + sys_corr_24: -1.93425027e+01 + sys_corr_25: -2.18816151e-01 + sys_corr_26: -6.38201894e-01 sys_corr_27: 2.19268403e+00 sys_corr_28: 1.28072497e+01 sys_corr_29: -1.72988210e+01 @@ -11428,100 +11428,100 @@ bins: sys_corr_36: 7.98448185e-01 sys_corr_37: -6.98168275e-01 sys_corr_38: -1.05248331e-01 - sys_corr_39: 3.79935015e+00 + sys_corr_39: -3.79935015e+00 sys_corr_40: -1.10706113e+00 sys_corr_41: 2.52252480e+00 - sys_corr_42: -5.38938660e-01 + sys_corr_42: 5.38938660e-01 sys_corr_43: 1.74534860e+00 - sys_corr_44: -7.68157798e-01 - sys_corr_45: -1.72386438e-01 - sys_corr_46: 7.35668271e-02 - sys_corr_47: 2.52495515e+00 - sys_corr_48: -1.52310086e+00 + sys_corr_44: 7.68157798e-01 + sys_corr_45: 1.72386438e-01 + sys_corr_46: -7.35668271e-02 + sys_corr_47: -2.52495515e+00 + sys_corr_48: 1.52310086e+00 sys_corr_49: -1.90737477e+00 - sys_corr_50: 7.59160947e-01 - sys_corr_51: 3.74131515e-01 - sys_corr_52: -1.82636805e-01 - sys_corr_53: 1.06823073e+00 - sys_corr_54: -2.92856165e-01 + sys_corr_50: -7.59160947e-01 + sys_corr_51: -3.74131515e-01 + sys_corr_52: 1.82636805e-01 + sys_corr_53: -1.06823073e+00 + sys_corr_54: 2.92856165e-01 sys_corr_55: 8.22306266e-01 sys_corr_56: 5.35001283e-01 - sys_corr_57: -5.09630860e-01 + sys_corr_57: 5.09630860e-01 sys_corr_58: 1.75036555e+00 - sys_corr_59: 6.20146234e-01 + sys_corr_59: -6.20146234e-01 sys_corr_60: 5.12322430e-01 sys_corr_61: 4.43639195e-01 sys_corr_62: -1.70646133e-01 - sys_corr_63: 3.57619777e-01 + sys_corr_63: -3.57619777e-01 sys_corr_64: 4.77426011e-02 sys_corr_65: 3.76589197e-01 - sys_corr_66: 4.05855971e-01 - sys_corr_67: -5.68653607e-01 - sys_corr_68: 7.19531206e-01 - sys_corr_69: -7.90991303e-01 - sys_corr_70: -6.97058798e-01 - sys_corr_71: 3.74907462e-01 - sys_corr_72: -3.11171530e-02 - sys_corr_73: 8.35097806e-01 - sys_corr_74: 2.32181579e-01 - sys_corr_75: -1.29498333e+00 + sys_corr_66: -4.05855971e-01 + sys_corr_67: 5.68653607e-01 + sys_corr_68: -7.19531206e-01 + sys_corr_69: 7.90991303e-01 + sys_corr_70: 6.97058798e-01 + sys_corr_71: 8.35097806e-01 + sys_corr_72: 3.11171530e-02 + sys_corr_73: -3.74907462e-01 + sys_corr_74: -2.32181579e-01 + sys_corr_75: 1.29498333e+00 sys_corr_76: 1.55863454e-01 sys_corr_77: -1.37035536e-01 - sys_corr_78: 8.64831022e-01 + sys_corr_78: -5.01364708e-03 sys_corr_79: 2.29611750e-01 - sys_corr_80: 5.01364708e-03 + sys_corr_80: -8.64831022e-01 sys_corr_81: 3.38778536e-01 - sys_corr_82: -3.40637800e-01 - sys_corr_83: -1.31997897e-01 + sys_corr_82: -1.31997897e-01 + sys_corr_83: 3.40637800e-01 sys_corr_84: -6.77813095e-01 - sys_corr_85: -2.78621191e-01 - sys_corr_86: 1.84973411e-01 + sys_corr_85: 2.78621191e-01 + sys_corr_86: -1.84973411e-01 sys_corr_87: -3.47368036e-01 sys_corr_88: -1.37956682e-01 - sys_corr_89: 1.07894778e-01 - sys_corr_90: 1.17826572e+00 + sys_corr_89: -1.07894778e-01 + sys_corr_90: -1.17826572e+00 sys_corr_91: -2.45811400e-01 - sys_corr_92: -4.63862640e-01 - sys_corr_93: 2.76984663e-03 + sys_corr_92: 4.63862640e-01 + sys_corr_93: 1.18424992e-01 sys_corr_94: -2.39306878e-01 - sys_corr_95: -1.18424992e-01 + sys_corr_95: -2.76984663e-03 sys_corr_96: 7.88000196e-02 sys_corr_97: -2.06355325e-02 sys_corr_98: -1.06201713e-01 sys_corr_99: 2.35827023e-02 - sys_corr_100: 6.85894907e-01 - sys_corr_101: -5.33011470e-01 - sys_corr_102: -8.14234958e-01 - sys_corr_103: -1.86101414e-01 - sys_corr_104: 1.83937010e-02 - sys_corr_105: -2.13075164e-01 - sys_corr_106: -7.69253806e-02 - sys_corr_107: 2.32525921e-01 - sys_corr_108: -1.68923290e-02 - sys_corr_109: -1.50211229e-01 - sys_corr_110: 4.42810206e-02 - sys_corr_111: 1.51549363e-01 - sys_corr_112: 4.55909685e-03 + sys_corr_100: 1.83937010e-02 + sys_corr_101: -1.86101414e-01 + sys_corr_102: 2.13075164e-01 + sys_corr_103: 8.14234958e-01 + sys_corr_104: -5.33011470e-01 + sys_corr_105: 6.85894907e-01 + sys_corr_106: 7.69253806e-02 + sys_corr_107: -2.32525921e-01 + sys_corr_108: -1.51549363e-01 + sys_corr_109: 1.68923290e-02 + sys_corr_110: 1.50211229e-01 + sys_corr_111: 4.42810206e-02 + sys_corr_112: -4.55909685e-03 sys_corr_113: 2.78609925e-02 sys_corr_114: 2.47863776e-04 - sys_corr_115: -3.48588271e-02 - sys_corr_116: -2.13226767e-02 + sys_corr_115: 3.48588271e-02 + sys_corr_116: 2.13226767e-02 sys_corr_117: 1.66365026e-02 - sys_corr_118: -1.10529123e-02 - sys_corr_119: -2.02613573e-03 + sys_corr_118: 1.10529123e-02 + sys_corr_119: 2.02613573e-03 sys_corr_120: 1.14401415e-02 sys_corr_121: 1.92412427e-03 sys_corr_122: -6.37647877e-03 - sys_corr_123: 1.21303498e-03 + sys_corr_123: -1.21303498e-03 sys_corr_124: 2.90996314e-02 - sys_corr_125: 8.49018830e-03 + sys_corr_125: -8.49018830e-03 sys_corr_126: 5.17555563e-05 - sys_corr_127: -1.15436818e-01 - sys_corr_128: 1.14105563e-02 - sys_corr_129: -1.81264581e-03 + sys_corr_127: 1.15436818e-01 + sys_corr_128: -1.14105563e-02 + sys_corr_129: 1.81264581e-03 sys_corr_130: 2.69417359e-03 - sys_corr_131: 4.73718592e-03 - sys_corr_132: -8.45173830e-03 + sys_corr_131: -8.45173830e-03 + sys_corr_132: -4.73718592e-03 stat: 0.0 luminosity: 6.28976471e+03 - sys_corr_1: 3.35150014e+03 @@ -11530,26 +11530,26 @@ bins: sys_corr_4: 6.21605633e+02 sys_corr_5: -9.58625603e+02 sys_corr_6: -4.80875223e+01 - sys_corr_7: 1.52599103e+02 - sys_corr_8: -2.16564778e+01 + sys_corr_7: -1.52599103e+02 + sys_corr_8: 2.16564778e+01 sys_corr_9: 1.50104041e+02 - sys_corr_10: -7.84274553e+01 - sys_corr_11: 2.06487125e+02 - sys_corr_12: -5.14856152e+01 + sys_corr_10: 7.84274553e+01 + sys_corr_11: -2.06487125e+02 + sys_corr_12: 5.14856152e+01 sys_corr_13: -2.83297235e+02 - sys_corr_14: 1.16626516e+03 - sys_corr_15: -2.90412897e+02 - sys_corr_16: -5.01241075e+02 - sys_corr_17: 2.62066223e+02 - sys_corr_18: 6.30976002e+02 - sys_corr_19: -1.62982544e+02 - sys_corr_20: 4.85851595e+01 - sys_corr_21: 1.26415904e+02 - sys_corr_22: -6.14255751e+01 - sys_corr_23: -2.37865696e+01 - sys_corr_24: 1.20154991e+01 - sys_corr_25: 3.10913449e-01 - sys_corr_26: -3.89482134e+00 + sys_corr_14: -1.16626516e+03 + sys_corr_15: 2.90412897e+02 + sys_corr_16: 5.01241075e+02 + sys_corr_17: -2.62066223e+02 + sys_corr_18: -6.30976002e+02 + sys_corr_19: 1.62982544e+02 + sys_corr_20: -4.85851595e+01 + sys_corr_21: -1.26415904e+02 + sys_corr_22: 6.14255751e+01 + sys_corr_23: 2.37865696e+01 + sys_corr_24: -1.20154991e+01 + sys_corr_25: -3.10913449e-01 + sys_corr_26: 3.89482134e+00 sys_corr_27: -2.29286709e+00 sys_corr_28: 2.26987075e+01 sys_corr_29: -1.18770791e+01 @@ -11562,100 +11562,100 @@ bins: sys_corr_36: -2.37030720e+00 sys_corr_37: -1.70259259e-01 sys_corr_38: 1.30704099e+00 - sys_corr_39: -5.36747130e+00 + sys_corr_39: 5.36747130e+00 sys_corr_40: -3.85758940e+00 sys_corr_41: 6.97582059e-01 - sys_corr_42: -2.74104279e+00 + sys_corr_42: 2.74104279e+00 sys_corr_43: 1.57384330e+00 - sys_corr_44: 5.03842987e-01 - sys_corr_45: -1.64571703e+00 - sys_corr_46: 1.71746490e+00 - sys_corr_47: -1.01328768e+00 - sys_corr_48: -1.70669787e+00 + sys_corr_44: -5.03842987e-01 + sys_corr_45: 1.64571703e+00 + sys_corr_46: -1.71746490e+00 + sys_corr_47: 1.01328768e+00 + sys_corr_48: 1.70669787e+00 sys_corr_49: -2.50707040e+00 - sys_corr_50: -1.85185235e+00 - sys_corr_51: -2.56681081e+00 - sys_corr_52: -1.53152983e+00 - sys_corr_53: -1.07556611e+00 - sys_corr_54: 1.34289357e+00 + sys_corr_50: 1.85185235e+00 + sys_corr_51: 2.56681081e+00 + sys_corr_52: 1.53152983e+00 + sys_corr_53: 1.07556611e+00 + sys_corr_54: -1.34289357e+00 sys_corr_55: 9.87181850e-01 sys_corr_56: -2.06362828e-02 - sys_corr_57: -1.12456303e-01 + sys_corr_57: 1.12456303e-01 sys_corr_58: 4.41139679e-01 - sys_corr_59: -1.52244054e-01 + sys_corr_59: 1.52244054e-01 sys_corr_60: -1.34706974e-01 sys_corr_61: -4.44586580e-01 sys_corr_62: 3.22273665e-01 - sys_corr_63: -3.97098962e-01 + sys_corr_63: 3.97098962e-01 sys_corr_64: 9.09188373e-01 sys_corr_65: 3.77956676e-01 - sys_corr_66: -3.41843972e-01 - sys_corr_67: 1.93471755e-01 - sys_corr_68: -6.57761089e-01 - sys_corr_69: -4.41406343e-01 - sys_corr_70: -7.29093242e-01 - sys_corr_71: 8.60994643e-01 - sys_corr_72: 5.02132628e-02 - sys_corr_73: 1.46633965e-01 - sys_corr_74: -1.03736631e-01 - sys_corr_75: 9.18998629e-01 + sys_corr_66: 3.41843972e-01 + sys_corr_67: -1.93471755e-01 + sys_corr_68: 6.57761089e-01 + sys_corr_69: 4.41406343e-01 + sys_corr_70: 7.29093242e-01 + sys_corr_71: 1.46633965e-01 + sys_corr_72: -5.02132628e-02 + sys_corr_73: -8.60994643e-01 + sys_corr_74: 1.03736631e-01 + sys_corr_75: -9.18998629e-01 sys_corr_76: -7.77855945e-02 sys_corr_77: 5.37228494e-01 - sys_corr_78: 5.91556205e-01 + sys_corr_78: -5.61334377e-01 sys_corr_79: 1.80698669e-01 - sys_corr_80: 5.61334377e-01 + sys_corr_80: -5.91556205e-01 sys_corr_81: 4.28267928e-01 - sys_corr_82: 8.93516509e-01 - sys_corr_83: 1.85844322e-01 + sys_corr_82: 1.85844322e-01 + sys_corr_83: -8.93516509e-01 sys_corr_84: -8.86418355e-01 - sys_corr_85: 2.95673073e-01 - sys_corr_86: -6.29572611e-01 + sys_corr_85: -2.95673073e-01 + sys_corr_86: 6.29572611e-01 sys_corr_87: 9.75569866e-01 sys_corr_88: 1.19345570e-01 - sys_corr_89: 1.62931848e-01 - sys_corr_90: 4.03557778e-01 + sys_corr_89: -1.62931848e-01 + sys_corr_90: -4.03557778e-01 sys_corr_91: 8.66713525e-02 - sys_corr_92: 3.65732765e-01 - sys_corr_93: -2.73136206e-02 + sys_corr_92: -3.65732765e-01 + sys_corr_93: -2.95332582e-02 sys_corr_94: -1.67287715e-01 - sys_corr_95: 2.95332582e-02 + sys_corr_95: 2.73136206e-02 sys_corr_96: 8.21965205e-02 sys_corr_97: 1.03515305e-01 sys_corr_98: 9.56813450e-02 sys_corr_99: -4.16566100e-02 - sys_corr_100: 7.27890986e-02 - sys_corr_101: 1.36214588e+00 - sys_corr_102: 1.47978097e-01 - sys_corr_103: 1.35530030e-01 - sys_corr_104: 1.29467326e-02 - sys_corr_105: -1.70944195e-01 - sys_corr_106: -4.73728872e-01 - sys_corr_107: -1.60616098e-01 - sys_corr_108: 1.00806248e-01 - sys_corr_109: -2.51085720e-01 - sys_corr_110: -1.78716888e-01 - sys_corr_111: 7.98381951e-02 - sys_corr_112: 3.29259036e-02 + sys_corr_100: 1.29467326e-02 + sys_corr_101: 1.35530030e-01 + sys_corr_102: 1.70944195e-01 + sys_corr_103: -1.47978097e-01 + sys_corr_104: 1.36214588e+00 + sys_corr_105: 7.27890986e-02 + sys_corr_106: 4.73728872e-01 + sys_corr_107: 1.60616098e-01 + sys_corr_108: -7.98381951e-02 + sys_corr_109: -1.00806248e-01 + sys_corr_110: 2.51085720e-01 + sys_corr_111: -1.78716888e-01 + sys_corr_112: -3.29259036e-02 sys_corr_113: 1.14396725e-01 sys_corr_114: -4.53642026e-04 - sys_corr_115: -4.43812060e-02 - sys_corr_116: -5.03913730e-03 + sys_corr_115: 4.43812060e-02 + sys_corr_116: 5.03913730e-03 sys_corr_117: 9.12268809e-03 - sys_corr_118: 3.85977072e-02 - sys_corr_119: -1.87395139e-03 + sys_corr_118: -3.85977072e-02 + sys_corr_119: 1.87395139e-03 sys_corr_120: 2.76052140e-03 sys_corr_121: 2.00693404e-03 sys_corr_122: -3.39734162e-03 - sys_corr_123: 2.67795999e-03 + sys_corr_123: -2.67795999e-03 sys_corr_124: 1.46277350e-02 - sys_corr_125: 1.81577174e-03 + sys_corr_125: -1.81577174e-03 sys_corr_126: -2.00755737e-03 - sys_corr_127: -1.68149703e-01 - sys_corr_128: 1.62777106e-01 - sys_corr_129: -8.15386706e-02 + sys_corr_127: 1.68149703e-01 + sys_corr_128: -1.62777106e-01 + sys_corr_129: 8.15386706e-02 sys_corr_130: 7.32847860e-03 - sys_corr_131: 5.28061332e-03 - sys_corr_132: -2.59769317e-03 + sys_corr_131: -2.59769317e-03 + sys_corr_132: -5.28061332e-03 stat: 0.0 luminosity: 6.07255748e+03 - sys_corr_1: 3.09783666e+03 @@ -11664,26 +11664,26 @@ bins: sys_corr_4: 8.78962590e+02 sys_corr_5: -7.35426403e+02 sys_corr_6: 7.33299240e+01 - sys_corr_7: 6.32912919e+02 - sys_corr_8: 4.28769818e+02 + sys_corr_7: -6.32912919e+02 + sys_corr_8: -4.28769818e+02 sys_corr_9: -3.64709414e+02 - sys_corr_10: -1.82988594e+02 - sys_corr_11: -3.57686623e+02 - sys_corr_12: -4.45653500e+02 + sys_corr_10: 1.82988594e+02 + sys_corr_11: 3.57686623e+02 + sys_corr_12: 4.45653500e+02 sys_corr_13: 3.91454349e+02 - sys_corr_14: -9.37204998e+02 - sys_corr_15: 2.91850044e+02 - sys_corr_16: -4.09436954e+02 - sys_corr_17: 4.14739985e+02 - sys_corr_18: 4.11445944e+02 - sys_corr_19: 3.38326296e+02 - sys_corr_20: 2.02544066e+01 - sys_corr_21: -2.76052618e+01 - sys_corr_22: 1.23991110e+01 - sys_corr_23: -1.85462867e+01 - sys_corr_24: -1.21834896e+01 - sys_corr_25: -4.25673239e+00 - sys_corr_26: 9.16806186e-01 + sys_corr_14: 9.37204998e+02 + sys_corr_15: -2.91850044e+02 + sys_corr_16: 4.09436954e+02 + sys_corr_17: -4.14739985e+02 + sys_corr_18: -4.11445944e+02 + sys_corr_19: -3.38326296e+02 + sys_corr_20: -2.02544066e+01 + sys_corr_21: 2.76052618e+01 + sys_corr_22: -1.23991110e+01 + sys_corr_23: 1.85462867e+01 + sys_corr_24: 1.21834896e+01 + sys_corr_25: 4.25673239e+00 + sys_corr_26: -9.16806186e-01 sys_corr_27: -8.26081988e+00 sys_corr_28: 8.82795762e+00 sys_corr_29: -4.55202217e+00 @@ -11696,100 +11696,100 @@ bins: sys_corr_36: 3.08311291e+00 sys_corr_37: -9.16961656e-01 sys_corr_38: 4.19988316e-01 - sys_corr_39: -3.20957329e-01 + sys_corr_39: 3.20957329e-01 sys_corr_40: 1.03852408e-01 sys_corr_41: -9.34429141e-01 - sys_corr_42: -4.29293268e-01 + sys_corr_42: 4.29293268e-01 sys_corr_43: 3.88174546e-01 - sys_corr_44: -1.19970604e+00 - sys_corr_45: -6.16946727e-01 - sys_corr_46: 7.84688901e-01 - sys_corr_47: 2.19647690e+00 - sys_corr_48: 5.77114751e-02 + sys_corr_44: 1.19970604e+00 + sys_corr_45: 6.16946727e-01 + sys_corr_46: -7.84688901e-01 + sys_corr_47: -2.19647690e+00 + sys_corr_48: -5.77114751e-02 sys_corr_49: 6.73944675e-01 - sys_corr_50: -6.84036091e-01 - sys_corr_51: 9.56418527e-01 - sys_corr_52: 8.14447906e-01 - sys_corr_53: 4.77287219e-01 - sys_corr_54: -2.49921000e-01 + sys_corr_50: 6.84036091e-01 + sys_corr_51: -9.56418527e-01 + sys_corr_52: -8.14447906e-01 + sys_corr_53: -4.77287219e-01 + sys_corr_54: 2.49921000e-01 sys_corr_55: 6.31245033e-01 sys_corr_56: -5.75839973e-01 - sys_corr_57: -6.85568032e-01 + sys_corr_57: 6.85568032e-01 sys_corr_58: 3.37930649e-01 - sys_corr_59: -1.38347706e-01 + sys_corr_59: 1.38347706e-01 sys_corr_60: -2.41051854e-01 sys_corr_61: -3.85279914e-01 sys_corr_62: 8.24962459e-02 - sys_corr_63: -2.13697914e-01 + sys_corr_63: 2.13697914e-01 sys_corr_64: -5.12387686e-01 sys_corr_65: -1.17661962e+00 - sys_corr_66: 2.23966826e-01 - sys_corr_67: -2.69259006e-01 - sys_corr_68: -7.68046701e-01 - sys_corr_69: -1.09213729e-01 - sys_corr_70: -6.49025468e-01 - sys_corr_71: 3.72119022e-01 - sys_corr_72: 3.88779135e-01 - sys_corr_73: 1.90152085e-01 - sys_corr_74: -3.63769260e-01 - sys_corr_75: -2.58013117e-01 + sys_corr_66: -2.23966826e-01 + sys_corr_67: 2.69259006e-01 + sys_corr_68: 7.68046701e-01 + sys_corr_69: 1.09213729e-01 + sys_corr_70: 6.49025468e-01 + sys_corr_71: 1.90152085e-01 + sys_corr_72: -3.88779135e-01 + sys_corr_73: -3.72119022e-01 + sys_corr_74: 3.63769260e-01 + sys_corr_75: 2.58013117e-01 sys_corr_76: 1.13212594e+00 sys_corr_77: -3.87119242e-01 - sys_corr_78: -1.25670995e-01 + sys_corr_78: 8.36104730e-03 sys_corr_79: 3.25390122e-01 - sys_corr_80: -8.36104730e-03 + sys_corr_80: 1.25670995e-01 sys_corr_81: -9.12490839e-01 - sys_corr_82: -1.30528211e-01 - sys_corr_83: 1.09730741e-01 + sys_corr_82: 1.09730741e-01 + sys_corr_83: 1.30528211e-01 sys_corr_84: -5.33862490e-01 - sys_corr_85: 1.25600330e-01 - sys_corr_86: -2.12348389e-01 + sys_corr_85: -1.25600330e-01 + sys_corr_86: 2.12348389e-01 sys_corr_87: -4.65874287e-01 sys_corr_88: 6.02417414e-01 - sys_corr_89: 1.01344687e-01 - sys_corr_90: 3.81229206e-01 + sys_corr_89: -1.01344687e-01 + sys_corr_90: -3.81229206e-01 sys_corr_91: -3.92843689e-01 - sys_corr_92: 2.19327786e-01 - sys_corr_93: -2.53306537e-02 + sys_corr_92: -2.19327786e-01 + sys_corr_93: 3.93416464e-02 sys_corr_94: -2.61013376e-01 - sys_corr_95: -3.93416464e-02 + sys_corr_95: 2.53306537e-02 sys_corr_96: 3.18675388e-02 sys_corr_97: 2.75126383e-01 sys_corr_98: 2.08465866e-01 sys_corr_99: -1.13242032e-01 - sys_corr_100: -9.77485495e-01 - sys_corr_101: -2.88895474e-01 - sys_corr_102: 1.48953531e-01 - sys_corr_103: 1.43063179e-01 - sys_corr_104: 1.00243909e-01 - sys_corr_105: 1.16824742e-01 - sys_corr_106: -2.06366473e-01 - sys_corr_107: -5.28454039e-01 - sys_corr_108: -8.58938344e-02 - sys_corr_109: -2.27935769e-01 - sys_corr_110: -2.11322291e-01 - sys_corr_111: -1.40340243e-02 - sys_corr_112: -2.52602289e-02 + sys_corr_100: 1.00243909e-01 + sys_corr_101: 1.43063179e-01 + sys_corr_102: -1.16824742e-01 + sys_corr_103: -1.48953531e-01 + sys_corr_104: -2.88895474e-01 + sys_corr_105: -9.77485495e-01 + sys_corr_106: 2.06366473e-01 + sys_corr_107: 5.28454039e-01 + sys_corr_108: 1.40340243e-02 + sys_corr_109: 8.58938344e-02 + sys_corr_110: 2.27935769e-01 + sys_corr_111: -2.11322291e-01 + sys_corr_112: 2.52602289e-02 sys_corr_113: -1.56985904e-02 sys_corr_114: -3.65565465e-04 - sys_corr_115: -3.73156276e-02 - sys_corr_116: -1.09407112e-03 + sys_corr_115: 3.73156276e-02 + sys_corr_116: 1.09407112e-03 sys_corr_117: -5.50641216e-04 - sys_corr_118: 6.54362933e-03 - sys_corr_119: 6.40412722e-04 + sys_corr_118: -6.54362933e-03 + sys_corr_119: -6.40412722e-04 sys_corr_120: 4.26930733e-03 sys_corr_121: -2.57526643e-03 sys_corr_122: -6.88153629e-03 - sys_corr_123: 2.65802409e-03 + sys_corr_123: -2.65802409e-03 sys_corr_124: 6.40056116e-03 - sys_corr_125: 2.59425703e-03 + sys_corr_125: -2.59425703e-03 sys_corr_126: -1.08770397e-03 - sys_corr_127: -2.02463502e-02 - sys_corr_128: 1.39714063e-01 - sys_corr_129: 1.75302625e-02 + sys_corr_127: 2.02463502e-02 + sys_corr_128: -1.39714063e-01 + sys_corr_129: -1.75302625e-02 sys_corr_130: -9.13789843e-04 - sys_corr_131: 1.93886099e-03 - sys_corr_132: 3.34965348e-03 + sys_corr_131: 3.34965348e-03 + sys_corr_132: -1.93886099e-03 stat: 0.0 luminosity: 5.81524616e+03 - sys_corr_1: 2.88191476e+03 @@ -11798,26 +11798,26 @@ bins: sys_corr_4: 9.23497409e+02 sys_corr_5: -1.27394800e+02 sys_corr_6: 1.98231760e+02 - sys_corr_7: 2.88363842e+02 - sys_corr_8: 2.63835469e+02 + sys_corr_7: -2.88363842e+02 + sys_corr_8: -2.63835469e+02 sys_corr_9: -2.86576672e+02 - sys_corr_10: 6.20973157e+01 - sys_corr_11: 6.07564439e+02 - sys_corr_12: -3.84817169e+02 + sys_corr_10: -6.20973157e+01 + sys_corr_11: -6.07564439e+02 + sys_corr_12: 3.84817169e+02 sys_corr_13: -4.46807352e+02 - sys_corr_14: -3.77688307e+02 - sys_corr_15: 1.00821685e+02 - sys_corr_16: 2.84695763e+02 - sys_corr_17: -8.41748433e+02 - sys_corr_18: -1.96644524e+01 - sys_corr_19: -6.70685146e+02 - sys_corr_20: 1.66749091e+02 - sys_corr_21: -1.07587935e+02 - sys_corr_22: -8.76410717e+01 - sys_corr_23: 3.99304681e+00 - sys_corr_24: -1.91761419e+01 - sys_corr_25: 1.83314046e+01 - sys_corr_26: -3.94197975e+00 + sys_corr_14: 3.77688307e+02 + sys_corr_15: -1.00821685e+02 + sys_corr_16: -2.84695763e+02 + sys_corr_17: 8.41748433e+02 + sys_corr_18: 1.96644524e+01 + sys_corr_19: 6.70685146e+02 + sys_corr_20: -1.66749091e+02 + sys_corr_21: 1.07587935e+02 + sys_corr_22: 8.76410717e+01 + sys_corr_23: -3.99304681e+00 + sys_corr_24: 1.91761419e+01 + sys_corr_25: -1.83314046e+01 + sys_corr_26: 3.94197975e+00 sys_corr_27: -1.15681990e+01 sys_corr_28: -9.97063811e-01 sys_corr_29: -5.31972089e+00 @@ -11830,100 +11830,100 @@ bins: sys_corr_36: -9.54767485e+00 sys_corr_37: -2.72173032e+00 sys_corr_38: -8.05400298e-01 - sys_corr_39: 2.72366653e-01 + sys_corr_39: -2.72366653e-01 sys_corr_40: -2.84655447e+00 sys_corr_41: -1.30412473e+00 - sys_corr_42: 5.07170929e-01 + sys_corr_42: -5.07170929e-01 sys_corr_43: 3.32507732e-01 - sys_corr_44: 2.78072994e+00 - sys_corr_45: 9.21575531e-01 - sys_corr_46: 2.98312716e+00 - sys_corr_47: -1.37976211e+00 - sys_corr_48: -5.52702075e-02 + sys_corr_44: -2.78072994e+00 + sys_corr_45: -9.21575531e-01 + sys_corr_46: -2.98312716e+00 + sys_corr_47: 1.37976211e+00 + sys_corr_48: 5.52702075e-02 sys_corr_49: 6.61634848e-01 - sys_corr_50: -3.69274837e+00 - sys_corr_51: -1.49509683e+00 - sys_corr_52: -1.51594761e+00 - sys_corr_53: -5.42205836e-01 - sys_corr_54: 1.27606945e+00 + sys_corr_50: 3.69274837e+00 + sys_corr_51: 1.49509683e+00 + sys_corr_52: 1.51594761e+00 + sys_corr_53: 5.42205836e-01 + sys_corr_54: -1.27606945e+00 sys_corr_55: 6.22857236e-01 sys_corr_56: 4.34160231e-01 - sys_corr_57: -6.68864902e-01 + sys_corr_57: 6.68864902e-01 sys_corr_58: -2.31994823e-01 - sys_corr_59: 4.52078935e-01 + sys_corr_59: -4.52078935e-01 sys_corr_60: -7.76764029e-02 sys_corr_61: 1.74397995e-01 sys_corr_62: 3.36331811e-02 - sys_corr_63: 5.63190978e-01 + sys_corr_63: -5.63190978e-01 sys_corr_64: 7.48083453e-01 sys_corr_65: 7.90750510e-01 - sys_corr_66: -4.09582480e-01 - sys_corr_67: -1.16621367e+00 - sys_corr_68: 2.77409218e-01 - sys_corr_69: 1.36381636e-01 - sys_corr_70: -7.60126231e-01 - sys_corr_71: 1.13135397e+00 - sys_corr_72: 1.24824676e-01 - sys_corr_73: -1.07897631e+00 - sys_corr_74: 5.39310928e-01 - sys_corr_75: -6.39419231e-01 + sys_corr_66: 4.09582480e-01 + sys_corr_67: 1.16621367e+00 + sys_corr_68: -2.77409218e-01 + sys_corr_69: -1.36381636e-01 + sys_corr_70: 7.60126231e-01 + sys_corr_71: -1.07897631e+00 + sys_corr_72: -1.24824676e-01 + sys_corr_73: -1.13135397e+00 + sys_corr_74: -5.39310928e-01 + sys_corr_75: 6.39419231e-01 sys_corr_76: -1.81715719e-01 sys_corr_77: -7.74475946e-01 - sys_corr_78: -9.00381188e-02 + sys_corr_78: -6.44414989e-01 sys_corr_79: -2.71010885e-01 - sys_corr_80: 6.44414989e-01 + sys_corr_80: 9.00381188e-02 sys_corr_81: 1.53534236e+00 - sys_corr_82: 6.95963719e-01 - sys_corr_83: 8.95362788e-01 + sys_corr_82: 8.95362788e-01 + sys_corr_83: -6.95963719e-01 sys_corr_84: -2.89223696e-01 - sys_corr_85: 8.70670211e-01 - sys_corr_86: 1.92311940e-01 + sys_corr_85: -8.70670211e-01 + sys_corr_86: -1.92311940e-01 sys_corr_87: 3.10428759e-01 sys_corr_88: -2.83282996e-01 - sys_corr_89: -9.17882879e-02 - sys_corr_90: 3.81073099e-01 + sys_corr_89: 9.17882879e-02 + sys_corr_90: -3.81073099e-01 sys_corr_91: -3.88534241e-01 - sys_corr_92: 1.64386194e-01 - sys_corr_93: 2.02810002e-02 + sys_corr_92: -1.64386194e-01 + sys_corr_93: -1.58603013e-01 sys_corr_94: -3.56473632e-02 - sys_corr_95: 1.58603013e-01 + sys_corr_95: -2.02810002e-02 sys_corr_96: 6.46665947e-02 sys_corr_97: 2.04920553e-01 sys_corr_98: 1.28059744e-01 sys_corr_99: 5.33648324e-02 - sys_corr_100: 6.10372535e-01 - sys_corr_101: 2.59208813e-01 - sys_corr_102: -2.54963245e-01 - sys_corr_103: 1.89226927e-01 - sys_corr_104: 9.11048489e-02 - sys_corr_105: 6.43139034e-02 - sys_corr_106: 1.01512520e+00 - sys_corr_107: -2.77786355e-01 - sys_corr_108: 1.25034320e-01 - sys_corr_109: -3.53451455e-01 - sys_corr_110: 4.85325494e-01 - sys_corr_111: 1.79535668e-02 - sys_corr_112: -5.34106330e-02 + sys_corr_100: 9.11048489e-02 + sys_corr_101: 1.89226927e-01 + sys_corr_102: -6.43139034e-02 + sys_corr_103: 2.54963245e-01 + sys_corr_104: 2.59208813e-01 + sys_corr_105: 6.10372535e-01 + sys_corr_106: -1.01512520e+00 + sys_corr_107: 2.77786355e-01 + sys_corr_108: -1.79535668e-02 + sys_corr_109: -1.25034320e-01 + sys_corr_110: 3.53451455e-01 + sys_corr_111: 4.85325494e-01 + sys_corr_112: 5.34106330e-02 sys_corr_113: 5.54626946e-02 sys_corr_114: -4.61996828e-04 - sys_corr_115: -9.14577268e-03 - sys_corr_116: 1.24934360e-02 + sys_corr_115: 9.14577268e-03 + sys_corr_116: -1.24934360e-02 sys_corr_117: -1.87021668e-03 - sys_corr_118: -6.94940993e-03 - sys_corr_119: 4.57970313e-04 + sys_corr_118: 6.94940993e-03 + sys_corr_119: -4.57970313e-04 sys_corr_120: -5.39308714e-03 sys_corr_121: 1.26566836e-03 sys_corr_122: -4.45553213e-03 - sys_corr_123: 3.56032756e-03 + sys_corr_123: -3.56032756e-03 sys_corr_124: -6.30003148e-03 - sys_corr_125: -2.38660158e-03 + sys_corr_125: 2.38660158e-03 sys_corr_126: -5.77785541e-03 - sys_corr_127: 1.15520520e-01 - sys_corr_128: -1.33341839e-01 - sys_corr_129: -5.42393303e-02 + sys_corr_127: -1.15520520e-01 + sys_corr_128: 1.33341839e-01 + sys_corr_129: 5.42393303e-02 sys_corr_130: 7.92876684e-03 - sys_corr_131: 2.15669633e-03 - sys_corr_132: -1.40200820e-02 + sys_corr_131: -1.40200820e-02 + sys_corr_132: -2.15669633e-03 stat: 0.0 luminosity: 5.49346389e+03 - sys_corr_1: 2.53642710e+03 @@ -11932,26 +11932,26 @@ bins: sys_corr_4: 8.90556159e+02 sys_corr_5: 5.22728825e+02 sys_corr_6: 3.44377514e+02 - sys_corr_7: 1.82191412e+02 - sys_corr_8: 3.99662612e+02 + sys_corr_7: -1.82191412e+02 + sys_corr_8: -3.99662612e+02 sys_corr_9: -2.61048990e+02 - sys_corr_10: 3.72583909e+02 - sys_corr_11: -3.74347455e+01 - sys_corr_12: 3.79458891e-01 + sys_corr_10: -3.72583909e+02 + sys_corr_11: 3.74347455e+01 + sys_corr_12: -3.79458891e-01 sys_corr_13: -3.56307133e+02 - sys_corr_14: 1.37510659e+02 - sys_corr_15: -2.29222606e+02 - sys_corr_16: 3.99551033e+02 - sys_corr_17: 8.79041725e+02 - sys_corr_18: -8.45377388e+02 - sys_corr_19: -1.02731574e+02 - sys_corr_20: -1.61291531e+02 - sys_corr_21: 1.29847895e+02 - sys_corr_22: -9.72378031e+01 - sys_corr_23: -5.39905484e+00 - sys_corr_24: -2.14043145e+01 - sys_corr_25: 5.31479775e+00 - sys_corr_26: 4.78896874e+00 + sys_corr_14: -1.37510659e+02 + sys_corr_15: 2.29222606e+02 + sys_corr_16: -3.99551033e+02 + sys_corr_17: -8.79041725e+02 + sys_corr_18: 8.45377388e+02 + sys_corr_19: 1.02731574e+02 + sys_corr_20: 1.61291531e+02 + sys_corr_21: -1.29847895e+02 + sys_corr_22: 9.72378031e+01 + sys_corr_23: 5.39905484e+00 + sys_corr_24: 2.14043145e+01 + sys_corr_25: -5.31479775e+00 + sys_corr_26: -4.78896874e+00 sys_corr_27: -6.81748688e+00 sys_corr_28: 3.08460528e+00 sys_corr_29: 1.46997801e+01 @@ -11964,100 +11964,100 @@ bins: sys_corr_36: 3.07845019e+00 sys_corr_37: 2.51766352e+00 sys_corr_38: 1.32028982e+00 - sys_corr_39: 7.87657557e-01 + sys_corr_39: -7.87657557e-01 sys_corr_40: 2.26479663e-01 sys_corr_41: 2.51600799e-01 - sys_corr_42: -3.09040466e-01 + sys_corr_42: 3.09040466e-01 sys_corr_43: 1.23205042e+00 - sys_corr_44: 1.36198650e+00 - sys_corr_45: -1.09213827e+00 - sys_corr_46: -9.56167620e-01 - sys_corr_47: -4.37737319e-01 - sys_corr_48: -4.73467216e-01 + sys_corr_44: -1.36198650e+00 + sys_corr_45: 1.09213827e+00 + sys_corr_46: 9.56167620e-01 + sys_corr_47: 4.37737319e-01 + sys_corr_48: 4.73467216e-01 sys_corr_49: -6.83871592e-01 - sys_corr_50: -1.14907327e+00 - sys_corr_51: -5.09980287e-02 - sys_corr_52: -9.44562350e-01 - sys_corr_53: 7.39489672e-01 - sys_corr_54: -9.07920145e-01 + sys_corr_50: 1.14907327e+00 + sys_corr_51: 5.09980287e-02 + sys_corr_52: 9.44562350e-01 + sys_corr_53: -7.39489672e-01 + sys_corr_54: 9.07920145e-01 sys_corr_55: 3.25911452e-02 sys_corr_56: -1.77855796e-01 - sys_corr_57: -9.08843289e-01 + sys_corr_57: 9.08843289e-01 sys_corr_58: 2.48473071e-01 - sys_corr_59: -4.67436240e-02 + sys_corr_59: 4.67436240e-02 sys_corr_60: -6.49409533e-02 sys_corr_61: 1.82127508e-01 sys_corr_62: -3.86312232e-01 - sys_corr_63: 1.20064825e+00 + sys_corr_63: -1.20064825e+00 sys_corr_64: -2.32900817e-01 sys_corr_65: 1.16437343e-01 - sys_corr_66: 9.92737180e-01 - sys_corr_67: 8.67862978e-03 - sys_corr_68: -1.56678302e-01 - sys_corr_69: 5.55913215e-01 - sys_corr_70: -5.84239373e-02 - sys_corr_71: 3.03760284e-01 - sys_corr_72: 4.82162596e-01 - sys_corr_73: 3.31168506e-01 - sys_corr_74: 2.44099224e-01 - sys_corr_75: 6.67971517e-01 + sys_corr_66: -9.92737180e-01 + sys_corr_67: -8.67862978e-03 + sys_corr_68: 1.56678302e-01 + sys_corr_69: -5.55913215e-01 + sys_corr_70: 5.84239373e-02 + sys_corr_71: 3.31168506e-01 + sys_corr_72: -4.82162596e-01 + sys_corr_73: -3.03760284e-01 + sys_corr_74: -2.44099224e-01 + sys_corr_75: -6.67971517e-01 sys_corr_76: -3.51956553e-01 sys_corr_77: -4.21371464e-01 - sys_corr_78: -3.87976728e-01 + sys_corr_78: 1.82640392e+00 sys_corr_79: 7.90131998e-01 - sys_corr_80: -1.82640392e+00 + sys_corr_80: 3.87976728e-01 sys_corr_81: -2.32227527e-01 - sys_corr_82: -5.05683382e-02 - sys_corr_83: 3.54910989e-01 + sys_corr_82: 3.54910989e-01 + sys_corr_83: 5.05683382e-02 sys_corr_84: -2.55526155e-01 - sys_corr_85: -6.40863301e-02 - sys_corr_86: -3.46956771e-01 + sys_corr_85: 6.40863301e-02 + sys_corr_86: 3.46956771e-01 sys_corr_87: -1.20046102e-01 sys_corr_88: 2.00860657e-01 - sys_corr_89: -1.95970389e-01 - sys_corr_90: 1.83305857e-01 + sys_corr_89: 1.95970389e-01 + sys_corr_90: -1.83305857e-01 sys_corr_91: -3.50405278e-01 - sys_corr_92: -7.00279224e-02 - sys_corr_93: 5.90110469e-02 + sys_corr_92: 7.00279224e-02 + sys_corr_93: -8.48143774e-02 sys_corr_94: 1.24198634e-01 - sys_corr_95: 8.48143774e-02 + sys_corr_95: -5.90110469e-02 sys_corr_96: -4.96561491e-02 sys_corr_97: 8.25549287e-02 sys_corr_98: 4.83619160e-02 sys_corr_99: 2.83881686e-01 - sys_corr_100: -2.36496247e-01 - sys_corr_101: -3.83875962e-01 - sys_corr_102: -9.69760937e-02 - sys_corr_103: -3.76553707e-01 - sys_corr_104: 1.81893692e-02 - sys_corr_105: 9.99488685e-02 - sys_corr_106: -4.91900492e-01 - sys_corr_107: 8.03239188e-01 - sys_corr_108: 4.07739837e-01 - sys_corr_109: 5.01363430e-01 - sys_corr_110: 8.34072629e-01 - sys_corr_111: -8.16468101e-02 - sys_corr_112: -9.49297802e-02 + sys_corr_100: 1.81893692e-02 + sys_corr_101: -3.76553707e-01 + sys_corr_102: -9.99488685e-02 + sys_corr_103: 9.69760937e-02 + sys_corr_104: -3.83875962e-01 + sys_corr_105: -2.36496247e-01 + sys_corr_106: 4.91900492e-01 + sys_corr_107: -8.03239188e-01 + sys_corr_108: 8.16468101e-02 + sys_corr_109: -4.07739837e-01 + sys_corr_110: -5.01363430e-01 + sys_corr_111: 8.34072629e-01 + sys_corr_112: 9.49297802e-02 sys_corr_113: -7.95940515e-02 sys_corr_114: -2.50820132e-05 - sys_corr_115: 1.37129430e-02 - sys_corr_116: -4.73511800e-03 + sys_corr_115: -1.37129430e-02 + sys_corr_116: 4.73511800e-03 sys_corr_117: 3.32628809e-03 - sys_corr_118: -1.08940790e-02 - sys_corr_119: 7.83622234e-04 + sys_corr_118: 1.08940790e-02 + sys_corr_119: -7.83622234e-04 sys_corr_120: 5.28704549e-03 sys_corr_121: 5.82902727e-04 sys_corr_122: -5.44279160e-03 - sys_corr_123: 6.02232016e-03 + sys_corr_123: -6.02232016e-03 sys_corr_124: -4.50892749e-03 - sys_corr_125: 4.78049893e-03 + sys_corr_125: -4.78049893e-03 sys_corr_126: -3.17205698e-03 - sys_corr_127: 2.19075700e-02 - sys_corr_128: -4.42564332e-01 - sys_corr_129: 8.90993612e-03 + sys_corr_127: -2.19075700e-02 + sys_corr_128: 4.42564332e-01 + sys_corr_129: -8.90993612e-03 sys_corr_130: 3.55180651e-03 - sys_corr_131: 3.96790552e-03 - sys_corr_132: 1.46203599e-02 + sys_corr_131: 1.46203599e-02 + sys_corr_132: -3.96790552e-03 stat: 0.0 luminosity: 5.14612974e+03 - sys_corr_1: 2.04946595e+03 @@ -12066,26 +12066,26 @@ bins: sys_corr_4: 6.12988791e+02 sys_corr_5: 1.16544788e+03 sys_corr_6: 3.69185548e+02 - sys_corr_7: -2.68398233e+01 - sys_corr_8: 1.08505047e+02 + sys_corr_7: 2.68398233e+01 + sys_corr_8: -1.08505047e+02 sys_corr_9: -8.52520240e+01 - sys_corr_10: 6.32551907e+01 - sys_corr_11: -4.83970948e+01 - sys_corr_12: -7.19522257e+01 + sys_corr_10: -6.32551907e+01 + sys_corr_11: 4.83970948e+01 + sys_corr_12: 7.19522257e+01 sys_corr_13: -7.52223954e+01 - sys_corr_14: 2.89466767e+02 - sys_corr_15: -1.53093344e+02 - sys_corr_16: 1.94273686e+02 - sys_corr_17: -7.15338383e+02 - sys_corr_18: 1.30389476e+01 - sys_corr_19: 8.72815748e+02 - sys_corr_20: -1.18461360e+02 - sys_corr_21: 3.76432804e+02 - sys_corr_22: 1.37840709e+02 - sys_corr_23: -6.49415170e+01 - sys_corr_24: 3.51543800e+01 - sys_corr_25: -8.31823428e+00 - sys_corr_26: -5.55714136e+00 + sys_corr_14: -2.89466767e+02 + sys_corr_15: 1.53093344e+02 + sys_corr_16: -1.94273686e+02 + sys_corr_17: 7.15338383e+02 + sys_corr_18: -1.30389476e+01 + sys_corr_19: -8.72815748e+02 + sys_corr_20: 1.18461360e+02 + sys_corr_21: -3.76432804e+02 + sys_corr_22: -1.37840709e+02 + sys_corr_23: 6.49415170e+01 + sys_corr_24: -3.51543800e+01 + sys_corr_25: 8.31823428e+00 + sys_corr_26: 5.55714136e+00 sys_corr_27: 2.48403352e+00 sys_corr_28: -1.13642866e+01 sys_corr_29: 6.32270720e+00 @@ -12098,100 +12098,100 @@ bins: sys_corr_36: -2.93280412e+00 sys_corr_37: -2.20489446e+00 sys_corr_38: -2.10895981e+00 - sys_corr_39: 2.53578459e+00 + sys_corr_39: -2.53578459e+00 sys_corr_40: 2.58293492e+00 sys_corr_41: -1.03650497e+00 - sys_corr_42: 2.10164679e+00 + sys_corr_42: -2.10164679e+00 sys_corr_43: -9.71110252e-01 - sys_corr_44: -3.11784293e-01 - sys_corr_45: 2.84199142e-01 - sys_corr_46: -1.26864381e+00 - sys_corr_47: -8.08362360e-01 - sys_corr_48: 1.37634418e+00 + sys_corr_44: 3.11784293e-01 + sys_corr_45: -2.84199142e-01 + sys_corr_46: 1.26864381e+00 + sys_corr_47: 8.08362360e-01 + sys_corr_48: -1.37634418e+00 sys_corr_49: 1.75306852e+00 - sys_corr_50: 3.42988726e+00 - sys_corr_51: 2.76217365e+00 - sys_corr_52: 3.10227104e+00 - sys_corr_53: 1.85868196e-01 - sys_corr_54: -7.21900206e-01 + sys_corr_50: -3.42988726e+00 + sys_corr_51: -2.76217365e+00 + sys_corr_52: -3.10227104e+00 + sys_corr_53: -1.85868196e-01 + sys_corr_54: 7.21900206e-01 sys_corr_55: -1.33496467e+00 sys_corr_56: -9.82225484e-01 - sys_corr_57: -2.91601245e-01 + sys_corr_57: 2.91601245e-01 sys_corr_58: -5.70514681e-04 - sys_corr_59: 2.82142098e-01 + sys_corr_59: -2.82142098e-01 sys_corr_60: 5.38995065e-01 sys_corr_61: 7.60527206e-01 sys_corr_62: 3.35014860e-01 - sys_corr_63: -1.74568530e-01 + sys_corr_63: 1.74568530e-01 sys_corr_64: 2.19975304e-01 sys_corr_65: -4.81229515e-02 - sys_corr_66: 9.16716003e-01 - sys_corr_67: 4.97864161e-01 - sys_corr_68: 4.73159214e-01 - sys_corr_69: 1.49982610e+00 - sys_corr_70: 4.17324803e-01 - sys_corr_71: 3.79398725e-01 - sys_corr_72: -8.88494719e-01 - sys_corr_73: 6.70518307e-02 - sys_corr_74: -1.16101265e-01 - sys_corr_75: 4.36632220e-01 + sys_corr_66: -9.16716003e-01 + sys_corr_67: -4.97864161e-01 + sys_corr_68: -4.73159214e-01 + sys_corr_69: -1.49982610e+00 + sys_corr_70: -4.17324803e-01 + sys_corr_71: 6.70518307e-02 + sys_corr_72: 8.88494719e-01 + sys_corr_73: -3.79398725e-01 + sys_corr_74: 1.16101265e-01 + sys_corr_75: -4.36632220e-01 sys_corr_76: 3.46637167e-01 sys_corr_77: -1.59131308e-01 - sys_corr_78: -2.73423053e-01 + sys_corr_78: -5.61733333e-01 sys_corr_79: 2.17386085e-01 - sys_corr_80: 5.61733333e-01 + sys_corr_80: 2.73423053e-01 sys_corr_81: -1.09119865e+00 - sys_corr_82: -5.59141451e-01 - sys_corr_83: -7.80406892e-01 + sys_corr_82: -7.80406892e-01 + sys_corr_83: 5.59141451e-01 sys_corr_84: 1.10693724e+00 - sys_corr_85: -1.44115455e+00 - sys_corr_86: 4.26623524e-01 + sys_corr_85: 1.44115455e+00 + sys_corr_86: -4.26623524e-01 sys_corr_87: -2.93578535e-01 sys_corr_88: -1.79311090e-01 - sys_corr_89: -1.35163386e-01 - sys_corr_90: 9.97702249e-01 + sys_corr_89: 1.35163386e-01 + sys_corr_90: -9.97702249e-01 sys_corr_91: -3.07170897e-01 - sys_corr_92: 2.33433814e-01 - sys_corr_93: 1.48097561e-01 + sys_corr_92: -2.33433814e-01 + sys_corr_93: -9.04269515e-02 sys_corr_94: 3.31728172e-01 - sys_corr_95: 9.04269515e-02 + sys_corr_95: -1.48097561e-01 sys_corr_96: -6.47630349e-02 sys_corr_97: 3.75108015e-01 sys_corr_98: 1.71269245e-01 sys_corr_99: 3.87594156e-01 - sys_corr_100: -2.47110106e-01 - sys_corr_101: -5.78477049e-02 - sys_corr_102: 7.00365808e-02 - sys_corr_103: 6.43738412e-01 - sys_corr_104: 1.23253178e-01 - sys_corr_105: 4.05606315e-01 - sys_corr_106: 4.33281895e-01 - sys_corr_107: -1.29692218e-01 - sys_corr_108: 3.43899069e-02 - sys_corr_109: 1.08534562e+00 - sys_corr_110: -1.29436500e+00 - sys_corr_111: -1.62040832e-01 - sys_corr_112: -1.48140199e-01 + sys_corr_100: 1.23253178e-01 + sys_corr_101: 6.43738412e-01 + sys_corr_102: -4.05606315e-01 + sys_corr_103: -7.00365808e-02 + sys_corr_104: -5.78477049e-02 + sys_corr_105: -2.47110106e-01 + sys_corr_106: -4.33281895e-01 + sys_corr_107: 1.29692218e-01 + sys_corr_108: 1.62040832e-01 + sys_corr_109: -3.43899069e-02 + sys_corr_110: -1.08534562e+00 + sys_corr_111: -1.29436500e+00 + sys_corr_112: 1.48140199e-01 sys_corr_113: -2.50871540e-01 sys_corr_114: 5.13646832e-04 - sys_corr_115: 6.91441901e-03 - sys_corr_116: 5.44716709e-03 + sys_corr_115: -6.91441901e-03 + sys_corr_116: -5.44716709e-03 sys_corr_117: -5.10046518e-03 - sys_corr_118: -7.35970173e-02 - sys_corr_119: 2.18022064e-03 + sys_corr_118: 7.35970173e-02 + sys_corr_119: -2.18022064e-03 sys_corr_120: -5.54085580e-03 sys_corr_121: -8.03522671e-04 sys_corr_122: 3.85995439e-03 - sys_corr_123: 2.44325374e-05 + sys_corr_123: -2.44325374e-05 sys_corr_124: 1.23531491e-02 - sys_corr_125: 1.85202271e-03 + sys_corr_125: -1.85202271e-03 sys_corr_126: 2.23871753e-03 - sys_corr_127: 3.06340644e-02 - sys_corr_128: 3.54176909e-01 - sys_corr_129: 6.01849280e-02 + sys_corr_127: -3.06340644e-02 + sys_corr_128: -3.54176909e-01 + sys_corr_129: -6.01849280e-02 sys_corr_130: -1.03095032e-02 - sys_corr_131: -4.37156919e-03 - sys_corr_132: 3.46377162e-03 + sys_corr_131: 3.46377162e-03 + sys_corr_132: 4.37156919e-03 stat: 0.0 luminosity: 4.82058892e+03 - sys_corr_1: 1.41299659e+03 @@ -12200,26 +12200,26 @@ bins: sys_corr_4: 2.04944182e+01 sys_corr_5: 1.32358677e+03 sys_corr_6: 3.62190424e+02 - sys_corr_7: -2.77141756e+02 - sys_corr_8: -1.79925945e+02 + sys_corr_7: 2.77141756e+02 + sys_corr_8: 1.79925945e+02 sys_corr_9: 1.13115335e+02 - sys_corr_10: -4.34144313e+01 - sys_corr_11: 1.27913027e+02 - sys_corr_12: 1.71076520e+02 + sys_corr_10: 4.34144313e+01 + sys_corr_11: -1.27913027e+02 + sys_corr_12: -1.71076520e+02 sys_corr_13: 8.74721064e+01 - sys_corr_14: 1.54193037e+02 - sys_corr_15: 5.73378223e-01 - sys_corr_16: -1.13951623e+02 - sys_corr_17: 1.23638412e+02 - sys_corr_18: 1.05735227e+02 - sys_corr_19: 1.31784522e+02 - sys_corr_20: 9.02774994e+01 - sys_corr_21: -9.98334850e+02 - sys_corr_22: 8.67038640e+01 - sys_corr_23: 1.27548702e+02 - sys_corr_24: -5.03751039e+01 - sys_corr_25: -4.20058218e+01 - sys_corr_26: 2.34850336e-01 + sys_corr_14: -1.54193037e+02 + sys_corr_15: -5.73378223e-01 + sys_corr_16: 1.13951623e+02 + sys_corr_17: -1.23638412e+02 + sys_corr_18: -1.05735227e+02 + sys_corr_19: -1.31784522e+02 + sys_corr_20: -9.02774994e+01 + sys_corr_21: 9.98334850e+02 + sys_corr_22: -8.67038640e+01 + sys_corr_23: -1.27548702e+02 + sys_corr_24: 5.03751039e+01 + sys_corr_25: 4.20058218e+01 + sys_corr_26: -2.34850336e-01 sys_corr_27: 6.11501674e+01 sys_corr_28: -3.40335573e+01 sys_corr_29: -1.42930396e+00 @@ -12232,100 +12232,100 @@ bins: sys_corr_36: 3.67343182e+00 sys_corr_37: 3.42336266e-01 sys_corr_38: 1.65912132e+00 - sys_corr_39: -2.05914203e+00 + sys_corr_39: 2.05914203e+00 sys_corr_40: 3.02621874e-01 sys_corr_41: -8.04496479e-01 - sys_corr_42: -1.62324384e-01 + sys_corr_42: 1.62324384e-01 sys_corr_43: -1.30170734e+00 - sys_corr_44: 8.43143149e-01 - sys_corr_45: 1.23164906e+00 - sys_corr_46: -2.28987090e-01 - sys_corr_47: -1.54768393e+00 - sys_corr_48: 3.76362912e+00 + sys_corr_44: -8.43143149e-01 + sys_corr_45: -1.23164906e+00 + sys_corr_46: 2.28987090e-01 + sys_corr_47: 1.54768393e+00 + sys_corr_48: -3.76362912e+00 sys_corr_49: 1.32524010e+00 - sys_corr_50: 3.54540292e+00 - sys_corr_51: 6.48173818e+00 - sys_corr_52: 2.67114045e+00 - sys_corr_53: -2.96273323e-01 - sys_corr_54: -7.74202249e-01 + sys_corr_50: -3.54540292e+00 + sys_corr_51: -6.48173818e+00 + sys_corr_52: -2.67114045e+00 + sys_corr_53: 2.96273323e-01 + sys_corr_54: 7.74202249e-01 sys_corr_55: -3.45564636e-01 sys_corr_56: -1.42447380e+00 - sys_corr_57: 4.12441186e-01 + sys_corr_57: -4.12441186e-01 sys_corr_58: -6.54837805e-01 - sys_corr_59: -4.06707837e-01 + sys_corr_59: 4.06707837e-01 sys_corr_60: -1.57900894e-01 sys_corr_61: 1.50846964e+00 sys_corr_62: 3.25125165e-01 - sys_corr_63: -2.87022844e-01 + sys_corr_63: 2.87022844e-01 sys_corr_64: -5.33197627e-01 sys_corr_65: -1.97439093e-01 - sys_corr_66: -2.62921201e-01 - sys_corr_67: -3.69675082e-01 - sys_corr_68: 3.01133747e-02 - sys_corr_69: -7.78789343e-01 - sys_corr_70: 1.83993420e+00 - sys_corr_71: -2.96600706e-01 - sys_corr_72: 5.09037471e-01 - sys_corr_73: -7.31026806e-02 - sys_corr_74: -7.41455572e-01 - sys_corr_75: -7.74496359e-01 + sys_corr_66: 2.62921201e-01 + sys_corr_67: 3.69675082e-01 + sys_corr_68: -3.01133747e-02 + sys_corr_69: 7.78789343e-01 + sys_corr_70: -1.83993420e+00 + sys_corr_71: -7.31026806e-02 + sys_corr_72: -5.09037471e-01 + sys_corr_73: 2.96600706e-01 + sys_corr_74: 7.41455572e-01 + sys_corr_75: 7.74496359e-01 sys_corr_76: 1.45383181e+00 sys_corr_77: 8.88027889e-01 - sys_corr_78: -5.83965217e-02 + sys_corr_78: -1.20238582e+00 sys_corr_79: 1.62666053e-01 - sys_corr_80: 1.20238582e+00 + sys_corr_80: 5.83965217e-02 sys_corr_81: 5.76304421e-01 - sys_corr_82: 1.36836693e-01 - sys_corr_83: -1.61072320e-01 + sys_corr_82: -1.61072320e-01 + sys_corr_83: -1.36836693e-01 sys_corr_84: -1.71777407e+00 - sys_corr_85: 6.09357896e-01 - sys_corr_86: -4.55509214e-02 + sys_corr_85: -6.09357896e-01 + sys_corr_86: 4.55509214e-02 sys_corr_87: -1.36325911e+00 sys_corr_88: 3.51904093e-01 - sys_corr_89: -4.03177444e-01 - sys_corr_90: 6.69016704e-01 + sys_corr_89: 4.03177444e-01 + sys_corr_90: -6.69016704e-01 sys_corr_91: -6.66313887e-01 - sys_corr_92: -5.42193325e-01 - sys_corr_93: 1.03305450e-01 + sys_corr_92: 5.42193325e-01 + sys_corr_93: 9.85821223e-02 sys_corr_94: 1.85093854e-01 - sys_corr_95: -9.85821223e-02 + sys_corr_95: -1.03305450e-01 sys_corr_96: 7.53535618e-02 sys_corr_97: 6.07426959e-01 sys_corr_98: 1.99862818e-01 sys_corr_99: -7.53184778e-02 - sys_corr_100: -2.74362963e-02 - sys_corr_101: -5.11138231e-02 - sys_corr_102: 4.25744083e-01 - sys_corr_103: -9.98410406e-01 - sys_corr_104: 4.07009722e-02 - sys_corr_105: -6.84725273e-02 - sys_corr_106: -1.65598049e-02 - sys_corr_107: 1.33363895e-01 - sys_corr_108: -1.51645196e+00 - sys_corr_109: -7.85028333e-01 - sys_corr_110: 4.20517861e-01 - sys_corr_111: -3.78057344e-01 - sys_corr_112: 1.51934589e-01 + sys_corr_100: 4.07009722e-02 + sys_corr_101: -9.98410406e-01 + sys_corr_102: 6.84725273e-02 + sys_corr_103: -4.25744083e-01 + sys_corr_104: -5.11138231e-02 + sys_corr_105: -2.74362963e-02 + sys_corr_106: 1.65598049e-02 + sys_corr_107: -1.33363895e-01 + sys_corr_108: 3.78057344e-01 + sys_corr_109: 1.51645196e+00 + sys_corr_110: 7.85028333e-01 + sys_corr_111: 4.20517861e-01 + sys_corr_112: -1.51934589e-01 sys_corr_113: -2.20267046e-01 sys_corr_114: 1.30605305e-03 - sys_corr_115: 6.62630872e-02 - sys_corr_116: -4.74923855e-02 + sys_corr_115: -6.62630872e-02 + sys_corr_116: 4.74923855e-02 sys_corr_117: 1.52899107e-02 - sys_corr_118: -4.72245193e-02 - sys_corr_119: 7.34130229e-04 + sys_corr_118: 4.72245193e-02 + sys_corr_119: -7.34130229e-04 sys_corr_120: 1.60439997e-02 sys_corr_121: 1.58398610e-03 sys_corr_122: 1.93670583e-02 - sys_corr_123: -1.61206462e-02 + sys_corr_123: 1.61206462e-02 sys_corr_124: 4.24141292e-03 - sys_corr_125: -4.43049940e-03 + sys_corr_125: 4.43049940e-03 sys_corr_126: 8.57907201e-03 - sys_corr_127: 1.85335255e-01 - sys_corr_128: -2.09030326e-01 - sys_corr_129: 2.80109827e-01 + sys_corr_127: -1.85335255e-01 + sys_corr_128: 2.09030326e-01 + sys_corr_129: -2.80109827e-01 sys_corr_130: -7.74250544e-03 - sys_corr_131: 4.20693342e-03 - sys_corr_132: 3.53012559e-04 + sys_corr_131: 3.53012559e-04 + sys_corr_132: -4.20693342e-03 stat: 0.0 luminosity: 4.32856189e+03 - sys_corr_1: 7.38571437e+02 @@ -12334,26 +12334,26 @@ bins: sys_corr_4: -6.13368266e+02 sys_corr_5: 1.22706991e+03 sys_corr_6: 2.72606221e+02 - sys_corr_7: -3.22216339e+02 - sys_corr_8: -2.88845129e+02 + sys_corr_7: 3.22216339e+02 + sys_corr_8: 2.88845129e+02 sys_corr_9: 1.87129318e+02 - sys_corr_10: -9.17386068e+01 - sys_corr_11: -6.39130444e+01 - sys_corr_12: 2.07388951e+02 + sys_corr_10: 9.17386068e+01 + sys_corr_11: 6.39130444e+01 + sys_corr_12: -2.07388951e+02 sys_corr_13: 3.47025583e+02 - sys_corr_14: -2.52330482e+02 - sys_corr_15: 1.94002640e+02 - sys_corr_16: -2.72317533e+02 - sys_corr_17: 6.42880524e+01 - sys_corr_18: 2.99202174e+02 - sys_corr_19: -5.47599517e+02 - sys_corr_20: -6.68657073e+02 - sys_corr_21: 4.01632683e+02 - sys_corr_22: 5.92368399e+01 - sys_corr_23: 1.28853543e+02 - sys_corr_24: -3.70539644e+01 - sys_corr_25: 4.96228835e+00 - sys_corr_26: 1.46134064e+01 + sys_corr_14: 2.52330482e+02 + sys_corr_15: -1.94002640e+02 + sys_corr_16: 2.72317533e+02 + sys_corr_17: -6.42880524e+01 + sys_corr_18: -2.99202174e+02 + sys_corr_19: 5.47599517e+02 + sys_corr_20: 6.68657073e+02 + sys_corr_21: -4.01632683e+02 + sys_corr_22: -5.92368399e+01 + sys_corr_23: -1.28853543e+02 + sys_corr_24: 3.70539644e+01 + sys_corr_25: -4.96228835e+00 + sys_corr_26: -1.46134064e+01 sys_corr_27: 5.23757149e+01 sys_corr_28: -8.30247265e-01 sys_corr_29: -7.48664864e-01 @@ -12366,100 +12366,100 @@ bins: sys_corr_36: 1.66116047e+00 sys_corr_37: 7.57123142e-01 sys_corr_38: -2.89301235e-01 - sys_corr_39: -4.75846243e-01 + sys_corr_39: 4.75846243e-01 sys_corr_40: 1.38753417e-01 sys_corr_41: 5.51545858e-01 - sys_corr_42: -2.94030991e-01 + sys_corr_42: 2.94030991e-01 sys_corr_43: 6.18688443e-01 - sys_corr_44: -7.47835778e-01 - sys_corr_45: 6.12928834e-01 - sys_corr_46: -4.14824301e-01 - sys_corr_47: -2.02862858e+00 - sys_corr_48: 2.17559181e+00 + sys_corr_44: 7.47835778e-01 + sys_corr_45: -6.12928834e-01 + sys_corr_46: 4.14824301e-01 + sys_corr_47: 2.02862858e+00 + sys_corr_48: -2.17559181e+00 sys_corr_49: 1.31770990e+00 - sys_corr_50: 1.67905924e+00 - sys_corr_51: 1.79598625e+00 - sys_corr_52: 1.62726177e+00 - sys_corr_53: -5.90953130e-01 - sys_corr_54: -6.72892505e-01 + sys_corr_50: -1.67905924e+00 + sys_corr_51: -1.79598625e+00 + sys_corr_52: -1.62726177e+00 + sys_corr_53: 5.90953130e-01 + sys_corr_54: 6.72892505e-01 sys_corr_55: 1.41387410e-01 sys_corr_56: -4.98196962e-01 - sys_corr_57: -7.42490608e-01 + sys_corr_57: 7.42490608e-01 sys_corr_58: 2.92288827e-02 - sys_corr_59: 3.21077015e-01 + sys_corr_59: -3.21077015e-01 sys_corr_60: -1.88548179e-01 sys_corr_61: 5.36320783e-01 sys_corr_62: 5.10776662e-01 - sys_corr_63: 7.53072739e-01 + sys_corr_63: -7.53072739e-01 sys_corr_64: -2.03136362e-01 sys_corr_65: 3.48559781e-01 - sys_corr_66: 4.96254777e-01 - sys_corr_67: 8.83204462e-02 - sys_corr_68: 1.11588420e+00 - sys_corr_69: 6.48016805e-01 - sys_corr_70: -9.18327878e-01 - sys_corr_71: -2.72931543e-01 - sys_corr_72: 2.99560777e-01 - sys_corr_73: 1.26074042e-01 - sys_corr_74: 4.44085690e-01 - sys_corr_75: -5.85139355e-01 + sys_corr_66: -4.96254777e-01 + sys_corr_67: -8.83204462e-02 + sys_corr_68: -1.11588420e+00 + sys_corr_69: -6.48016805e-01 + sys_corr_70: 9.18327878e-01 + sys_corr_71: 1.26074042e-01 + sys_corr_72: -2.99560777e-01 + sys_corr_73: 2.72931543e-01 + sys_corr_74: -4.44085690e-01 + sys_corr_75: 5.85139355e-01 sys_corr_76: -5.93718837e-01 sys_corr_77: -1.81210392e-01 - sys_corr_78: -2.80729805e-01 + sys_corr_78: -2.07452394e-01 sys_corr_79: 1.38951773e-01 - sys_corr_80: 2.07452394e-01 + sys_corr_80: 2.80729805e-01 sys_corr_81: -9.85656773e-01 - sys_corr_82: -4.46730074e-01 - sys_corr_83: 1.52348970e-01 + sys_corr_82: 1.52348970e-01 + sys_corr_83: 4.46730074e-01 sys_corr_84: -1.22877510e+00 - sys_corr_85: -7.82610042e-01 - sys_corr_86: -2.09177930e-02 + sys_corr_85: 7.82610042e-01 + sys_corr_86: 2.09177930e-02 sys_corr_87: -6.30187757e-01 sys_corr_88: 3.02892520e-01 - sys_corr_89: -9.68011754e-03 - sys_corr_90: -1.00721467e+00 + sys_corr_89: 9.68011754e-03 + sys_corr_90: 1.00721467e+00 sys_corr_91: -6.12582249e-02 - sys_corr_92: -1.34120489e-01 - sys_corr_93: 1.10645539e-02 + sys_corr_92: 1.34120489e-01 + sys_corr_93: 2.01448887e-01 sys_corr_94: 2.70852277e-02 - sys_corr_95: -2.01448887e-01 + sys_corr_95: -1.10645539e-02 sys_corr_96: 5.53805760e-02 sys_corr_97: 3.90971193e-01 sys_corr_98: 1.58677853e-01 sys_corr_99: 1.78295923e-01 - sys_corr_100: -7.58704910e-02 - sys_corr_101: 2.92358720e-02 - sys_corr_102: 1.24822154e-01 - sys_corr_103: -7.57736360e-02 - sys_corr_104: -1.84661700e-02 - sys_corr_105: 2.12117355e-02 - sys_corr_106: 9.28017381e-02 - sys_corr_107: 3.25787294e-01 - sys_corr_108: 8.50928189e-01 - sys_corr_109: -1.87133824e-01 - sys_corr_110: -2.04707446e-01 - sys_corr_111: 4.58053312e-02 - sys_corr_112: 8.37667265e-01 + sys_corr_100: -1.84661700e-02 + sys_corr_101: -7.57736360e-02 + sys_corr_102: -2.12117355e-02 + sys_corr_103: -1.24822154e-01 + sys_corr_104: 2.92358720e-02 + sys_corr_105: -7.58704910e-02 + sys_corr_106: -9.28017381e-02 + sys_corr_107: -3.25787294e-01 + sys_corr_108: -4.58053312e-02 + sys_corr_109: -8.50928189e-01 + sys_corr_110: 1.87133824e-01 + sys_corr_111: -2.04707446e-01 + sys_corr_112: -8.37667265e-01 sys_corr_113: 3.10783883e-01 sys_corr_114: 7.25852415e-04 - sys_corr_115: 1.68011830e-01 - sys_corr_116: -2.09929413e-02 + sys_corr_115: -1.68011830e-01 + sys_corr_116: 2.09929413e-02 sys_corr_117: 9.50582221e-03 - sys_corr_118: 1.33097799e-02 - sys_corr_119: -2.71271582e-04 + sys_corr_118: -1.33097799e-02 + sys_corr_119: 2.71271582e-04 sys_corr_120: -4.62730165e-03 sys_corr_121: 1.75067710e-03 sys_corr_122: 6.33104814e-03 - sys_corr_123: -7.67755778e-03 + sys_corr_123: 7.67755778e-03 sys_corr_124: -1.93894503e-02 - sys_corr_125: -9.21280645e-03 + sys_corr_125: 9.21280645e-03 sys_corr_126: 7.14497758e-03 - sys_corr_127: -1.13058135e-01 - sys_corr_128: 8.66727161e-03 - sys_corr_129: 2.41817667e-02 + sys_corr_127: 1.13058135e-01 + sys_corr_128: -8.66727161e-03 + sys_corr_129: -2.41817667e-02 sys_corr_130: -5.01748976e-03 - sys_corr_131: -7.71982905e-03 - sys_corr_132: 7.27014982e-03 + sys_corr_131: 7.27014982e-03 + sys_corr_132: 7.71982905e-03 stat: 0.0 luminosity: 3.91650464e+03 - sys_corr_1: 9.09609094e+01 @@ -12468,26 +12468,26 @@ bins: sys_corr_4: -1.10495898e+03 sys_corr_5: 2.90340072e+02 sys_corr_6: 1.38061767e+02 - sys_corr_7: -5.06552957e+01 - sys_corr_8: -1.18381357e+02 + sys_corr_7: 5.06552957e+01 + sys_corr_8: 1.18381357e+02 sys_corr_9: 1.34947366e+02 - sys_corr_10: -7.80720416e+01 - sys_corr_11: -8.57388485e+01 - sys_corr_12: 4.25447522e+01 + sys_corr_10: 7.80720416e+01 + sys_corr_11: 8.57388485e+01 + sys_corr_12: -4.25447522e+01 sys_corr_13: 5.40413665e+01 - sys_corr_14: -7.80521101e+01 - sys_corr_15: 9.29537875e+01 - sys_corr_16: -3.47750720e+01 - sys_corr_17: 1.67331797e+02 - sys_corr_18: -3.57047475e+01 - sys_corr_19: -4.61609756e+01 - sys_corr_20: 9.97632676e+02 - sys_corr_21: 3.74651312e+02 - sys_corr_22: -9.97288918e+01 - sys_corr_23: 2.87276969e+02 - sys_corr_24: 3.34698655e+01 - sys_corr_25: 4.25018934e+01 - sys_corr_26: 8.89887494e+00 + sys_corr_14: 7.80521101e+01 + sys_corr_15: -9.29537875e+01 + sys_corr_16: 3.47750720e+01 + sys_corr_17: -1.67331797e+02 + sys_corr_18: 3.57047475e+01 + sys_corr_19: 4.61609756e+01 + sys_corr_20: -9.97632676e+02 + sys_corr_21: -3.74651312e+02 + sys_corr_22: 9.97288918e+01 + sys_corr_23: -2.87276969e+02 + sys_corr_24: -3.34698655e+01 + sys_corr_25: -4.25018934e+01 + sys_corr_26: -8.89887494e+00 sys_corr_27: 6.39809454e+01 sys_corr_28: 2.47010793e+00 sys_corr_29: -7.90624443e+00 @@ -12500,100 +12500,100 @@ bins: sys_corr_36: -1.94311291e+00 sys_corr_37: 2.26185337e+00 sys_corr_38: -4.99015030e-01 - sys_corr_39: -1.11846402e+00 + sys_corr_39: 1.11846402e+00 sys_corr_40: 1.38453386e+00 sys_corr_41: -1.85206592e+00 - sys_corr_42: 4.29733218e-01 + sys_corr_42: -4.29733218e-01 sys_corr_43: -1.00264154e+00 - sys_corr_44: 1.84501469e+00 - sys_corr_45: -6.94672711e-02 - sys_corr_46: 7.33942663e-01 - sys_corr_47: -1.46289284e+00 - sys_corr_48: -1.31733868e-01 + sys_corr_44: -1.84501469e+00 + sys_corr_45: 6.94672711e-02 + sys_corr_46: -7.33942663e-01 + sys_corr_47: 1.46289284e+00 + sys_corr_48: 1.31733868e-01 sys_corr_49: 2.43929250e+00 - sys_corr_50: -1.21923374e+00 - sys_corr_51: -2.17132879e+00 - sys_corr_52: -4.32369673e-01 - sys_corr_53: -6.22758956e-01 - sys_corr_54: 7.83018837e-01 + sys_corr_50: 1.21923374e+00 + sys_corr_51: 2.17132879e+00 + sys_corr_52: 4.32369673e-01 + sys_corr_53: 6.22758956e-01 + sys_corr_54: -7.83018837e-01 sys_corr_55: -2.65291012e-01 sys_corr_56: -7.61389415e-01 - sys_corr_57: 2.26956229e-01 + sys_corr_57: -2.26956229e-01 sys_corr_58: -2.43956054e-01 - sys_corr_59: 1.14495000e+00 + sys_corr_59: -1.14495000e+00 sys_corr_60: 1.79536919e-01 sys_corr_61: -9.26823408e-01 sys_corr_62: -3.76928226e-01 - sys_corr_63: 1.21485618e-01 + sys_corr_63: -1.21485618e-01 sys_corr_64: 1.64062769e-01 sys_corr_65: 2.23441772e-01 - sys_corr_66: -4.99839303e-01 - sys_corr_67: -6.06389973e-01 - sys_corr_68: 9.69481697e-01 - sys_corr_69: -1.69114769e-03 - sys_corr_70: -2.28016528e-01 - sys_corr_71: 2.09035964e-01 - sys_corr_72: -9.34660348e-01 - sys_corr_73: -5.10886097e-01 - sys_corr_74: 5.00133104e-01 - sys_corr_75: -3.66137960e-01 + sys_corr_66: 4.99839303e-01 + sys_corr_67: 6.06389973e-01 + sys_corr_68: -9.69481697e-01 + sys_corr_69: 1.69114769e-03 + sys_corr_70: 2.28016528e-01 + sys_corr_71: -5.10886097e-01 + sys_corr_72: 9.34660348e-01 + sys_corr_73: -2.09035964e-01 + sys_corr_74: -5.00133104e-01 + sys_corr_75: 3.66137960e-01 sys_corr_76: -1.53704536e-01 sys_corr_77: 1.20812935e-01 - sys_corr_78: 4.04555243e-01 + sys_corr_78: -3.84599770e-01 sys_corr_79: -4.15181949e-01 - sys_corr_80: 3.84599770e-01 + sys_corr_80: -4.04555243e-01 sys_corr_81: -8.56107566e-01 - sys_corr_82: 1.09449136e-01 - sys_corr_83: 4.26707681e-01 + sys_corr_82: 4.26707681e-01 + sys_corr_83: -1.09449136e-01 sys_corr_84: -4.03930838e-01 - sys_corr_85: 2.47375258e-01 - sys_corr_86: -5.17356380e-01 + sys_corr_85: -2.47375258e-01 + sys_corr_86: 5.17356380e-01 sys_corr_87: -1.26636013e-01 sys_corr_88: 4.72201278e-01 - sys_corr_89: -1.71301816e-01 - sys_corr_90: 6.14213046e-01 + sys_corr_89: 1.71301816e-01 + sys_corr_90: -6.14213046e-01 sys_corr_91: 1.79221339e+00 - sys_corr_92: -9.70366588e-02 - sys_corr_93: 3.23935290e-03 + sys_corr_92: 9.70366588e-02 + sys_corr_93: 1.54917316e-01 sys_corr_94: -2.78045435e-02 - sys_corr_95: -1.54917316e-01 + sys_corr_95: -3.23935290e-03 sys_corr_96: 6.35821760e-02 sys_corr_97: 3.08392835e-01 sys_corr_98: 2.67435612e-01 sys_corr_99: 2.13255841e-01 - sys_corr_100: 3.45449609e-01 - sys_corr_101: -2.59034316e-01 - sys_corr_102: 5.34362329e-01 - sys_corr_103: 8.28378690e-02 - sys_corr_104: 1.25201036e-01 - sys_corr_105: 3.69525941e-01 - sys_corr_106: -8.12715061e-02 - sys_corr_107: 2.37741156e-02 - sys_corr_108: -6.67093801e-02 - sys_corr_109: -5.65884300e-02 - sys_corr_110: -1.20297656e-01 - sys_corr_111: 1.07832088e-01 - sys_corr_112: -1.00932968e+00 + sys_corr_100: 1.25201036e-01 + sys_corr_101: 8.28378690e-02 + sys_corr_102: -3.69525941e-01 + sys_corr_103: -5.34362329e-01 + sys_corr_104: -2.59034316e-01 + sys_corr_105: 3.45449609e-01 + sys_corr_106: 8.12715061e-02 + sys_corr_107: -2.37741156e-02 + sys_corr_108: -1.07832088e-01 + sys_corr_109: 6.67093801e-02 + sys_corr_110: 5.65884300e-02 + sys_corr_111: -1.20297656e-01 + sys_corr_112: 1.00932968e+00 sys_corr_113: 1.14319337e+00 sys_corr_114: -8.58386469e-04 - sys_corr_115: 2.80939064e-01 - sys_corr_116: -2.61765863e-02 + sys_corr_115: -2.80939064e-01 + sys_corr_116: 2.61765863e-02 sys_corr_117: 1.00169019e-02 - sys_corr_118: 1.84686806e-01 - sys_corr_119: -1.42878698e-03 + sys_corr_118: -1.84686806e-01 + sys_corr_119: 1.42878698e-03 sys_corr_120: 4.72307021e-03 sys_corr_121: 9.65901132e-04 sys_corr_122: 1.43737922e-02 - sys_corr_123: -8.05819745e-03 + sys_corr_123: 8.05819745e-03 sys_corr_124: -2.45577894e-02 - sys_corr_125: -3.56030253e-03 + sys_corr_125: 3.56030253e-03 sys_corr_126: 8.31048652e-03 - sys_corr_127: -1.86806435e-01 - sys_corr_128: 6.19204675e-02 - sys_corr_129: -1.65299153e-01 + sys_corr_127: 1.86806435e-01 + sys_corr_128: -6.19204675e-02 + sys_corr_129: 1.65299153e-01 sys_corr_130: -6.49280966e-03 - sys_corr_131: 2.95165835e-03 - sys_corr_132: -6.14811713e-02 + sys_corr_131: -6.14811713e-02 + sys_corr_132: -2.95165835e-03 stat: 0.0 luminosity: 3.38088513e+03 - sys_corr_1: -2.47097933e+02 @@ -12602,26 +12602,26 @@ bins: sys_corr_4: -1.05405493e+03 sys_corr_5: -4.35326089e+02 sys_corr_6: -2.02503732e+01 - sys_corr_7: 4.89221580e+00 - sys_corr_8: -3.14944082e+01 + sys_corr_7: -4.89221580e+00 + sys_corr_8: 3.14944082e+01 sys_corr_9: 6.60641664e+01 - sys_corr_10: -1.41473611e+01 - sys_corr_11: -1.14449647e+01 - sys_corr_12: -3.99165731e+01 + sys_corr_10: 1.41473611e+01 + sys_corr_11: 1.14449647e+01 + sys_corr_12: 3.99165731e+01 sys_corr_13: -2.51134675e+01 - sys_corr_14: -4.22688283e+01 - sys_corr_15: -1.17537070e+01 - sys_corr_16: 5.01581459e-01 - sys_corr_17: 5.81599279e+01 - sys_corr_18: -3.65447930e+01 - sys_corr_19: -7.70894192e+01 - sys_corr_20: 9.94228471e+01 - sys_corr_21: -5.97098018e+01 - sys_corr_22: 1.36454234e+02 - sys_corr_23: -9.00301397e+02 - sys_corr_24: -3.69795449e+01 - sys_corr_25: 1.58563935e+02 - sys_corr_26: 4.92341077e+00 + sys_corr_14: 4.22688283e+01 + sys_corr_15: 1.17537070e+01 + sys_corr_16: -5.01581459e-01 + sys_corr_17: -5.81599279e+01 + sys_corr_18: 3.65447930e+01 + sys_corr_19: 7.70894192e+01 + sys_corr_20: -9.94228471e+01 + sys_corr_21: 5.97098018e+01 + sys_corr_22: -1.36454234e+02 + sys_corr_23: 9.00301397e+02 + sys_corr_24: 3.69795449e+01 + sys_corr_25: -1.58563935e+02 + sys_corr_26: -4.92341077e+00 sys_corr_27: 3.93919659e+01 sys_corr_28: 2.22241629e+01 sys_corr_29: -6.36579801e+00 @@ -12634,100 +12634,100 @@ bins: sys_corr_36: -1.10026151e+00 sys_corr_37: 2.32852997e+00 sys_corr_38: 6.08051389e-03 - sys_corr_39: -1.63899294e+00 + sys_corr_39: 1.63899294e+00 sys_corr_40: 2.51346510e+00 sys_corr_41: 8.56087806e-01 - sys_corr_42: 1.91748961e+00 + sys_corr_42: -1.91748961e+00 sys_corr_43: -3.77085970e-01 - sys_corr_44: 3.52292489e+00 - sys_corr_45: -1.00089710e+00 - sys_corr_46: 1.44204589e-03 - sys_corr_47: 4.08667592e+00 - sys_corr_48: -8.18185653e+00 + sys_corr_44: -3.52292489e+00 + sys_corr_45: 1.00089710e+00 + sys_corr_46: -1.44204589e-03 + sys_corr_47: -4.08667592e+00 + sys_corr_48: 8.18185653e+00 sys_corr_49: -5.68550442e-01 - sys_corr_50: -6.30965814e+00 - sys_corr_51: -7.63383047e+00 - sys_corr_52: -5.95277639e+00 - sys_corr_53: -2.52380308e-01 - sys_corr_54: 9.36108911e-01 + sys_corr_50: 6.30965814e+00 + sys_corr_51: 7.63383047e+00 + sys_corr_52: 5.95277639e+00 + sys_corr_53: 2.52380308e-01 + sys_corr_54: -9.36108911e-01 sys_corr_55: 1.75864773e+00 sys_corr_56: 3.49447628e-01 - sys_corr_57: -1.47778096e-03 + sys_corr_57: 1.47778096e-03 sys_corr_58: 4.33061360e-01 - sys_corr_59: 1.07191244e+00 + sys_corr_59: -1.07191244e+00 sys_corr_60: -1.69242918e-01 sys_corr_61: 4.11803230e-01 sys_corr_62: 3.48072160e-01 - sys_corr_63: -8.89834643e-02 + sys_corr_63: 8.89834643e-02 sys_corr_64: 4.25281214e-01 sys_corr_65: -2.88863556e-01 - sys_corr_66: -4.01574616e-01 - sys_corr_67: -8.61875040e-01 - sys_corr_68: -9.13982281e-02 - sys_corr_69: -2.78424571e-02 - sys_corr_70: -7.83471193e-02 - sys_corr_71: -1.43678224e-01 - sys_corr_72: -8.78184256e-01 - sys_corr_73: -1.10282277e+00 - sys_corr_74: 2.27528681e-01 - sys_corr_75: 2.21569788e-01 + sys_corr_66: 4.01574616e-01 + sys_corr_67: 8.61875040e-01 + sys_corr_68: 9.13982281e-02 + sys_corr_69: 2.78424571e-02 + sys_corr_70: 7.83471193e-02 + sys_corr_71: -1.10282277e+00 + sys_corr_72: 8.78184256e-01 + sys_corr_73: 1.43678224e-01 + sys_corr_74: -2.27528681e-01 + sys_corr_75: -2.21569788e-01 sys_corr_76: 1.12838167e-01 sys_corr_77: 4.61976596e-01 - sys_corr_78: 2.97722590e-01 + sys_corr_78: 5.23153159e-01 sys_corr_79: 1.38593164e-01 - sys_corr_80: -5.23153159e-01 + sys_corr_80: -2.97722590e-01 sys_corr_81: 9.63507460e-01 - sys_corr_82: 2.03483549e-01 - sys_corr_83: -2.00032130e+00 + sys_corr_82: -2.00032130e+00 + sys_corr_83: -2.03483549e-01 sys_corr_84: 8.38801373e-01 - sys_corr_85: 9.05708492e-01 - sys_corr_86: 6.84889197e-01 + sys_corr_85: -9.05708492e-01 + sys_corr_86: -6.84889197e-01 sys_corr_87: 1.49762171e+00 sys_corr_88: 1.00418114e+00 - sys_corr_89: 2.58554198e-01 - sys_corr_90: 4.48588471e-01 + sys_corr_89: -2.58554198e-01 + sys_corr_90: -4.48588471e-01 sys_corr_91: -5.44733610e-01 - sys_corr_92: 8.19365973e-02 - sys_corr_93: -8.30756444e-02 + sys_corr_92: -8.19365973e-02 + sys_corr_93: 5.22974556e-03 sys_corr_94: -1.16873882e-01 - sys_corr_95: -5.22974556e-03 + sys_corr_95: 8.30756444e-02 sys_corr_96: -4.78605129e-02 sys_corr_97: -1.84811525e-01 sys_corr_98: 2.86574316e-02 sys_corr_99: -7.71862168e-03 - sys_corr_100: 1.31623210e-01 - sys_corr_101: -1.25411796e-01 - sys_corr_102: 3.13308744e-01 - sys_corr_103: 2.26388911e-01 - sys_corr_104: -1.01970319e-01 - sys_corr_105: 3.51984080e-01 - sys_corr_106: -5.39405528e-02 - sys_corr_107: 2.39137017e-01 - sys_corr_108: 3.55485903e-01 - sys_corr_109: -1.44885706e-01 - sys_corr_110: -1.02112683e-01 - sys_corr_111: 2.34104156e-01 - sys_corr_112: 3.20549896e-01 + sys_corr_100: -1.01970319e-01 + sys_corr_101: 2.26388911e-01 + sys_corr_102: -3.51984080e-01 + sys_corr_103: -3.13308744e-01 + sys_corr_104: -1.25411796e-01 + sys_corr_105: 1.31623210e-01 + sys_corr_106: 5.39405528e-02 + sys_corr_107: -2.39137017e-01 + sys_corr_108: -2.34104156e-01 + sys_corr_109: -3.55485903e-01 + sys_corr_110: 1.44885706e-01 + sys_corr_111: -1.02112683e-01 + sys_corr_112: -3.20549896e-01 sys_corr_113: -1.03869943e+00 sys_corr_114: -2.72363917e-03 - sys_corr_115: -1.61401669e-01 - sys_corr_116: 2.86702063e-02 + sys_corr_115: 1.61401669e-01 + sys_corr_116: -2.86702063e-02 sys_corr_117: 2.24351436e-02 - sys_corr_118: 2.50565722e-01 - sys_corr_119: -4.16246259e-03 + sys_corr_118: -2.50565722e-01 + sys_corr_119: 4.16246259e-03 sys_corr_120: 1.57953349e-02 sys_corr_121: -3.30170930e-03 sys_corr_122: -2.43121474e-02 - sys_corr_123: 1.65692804e-02 + sys_corr_123: -1.65692804e-02 sys_corr_124: 1.52160043e-01 - sys_corr_125: 2.48606757e-02 + sys_corr_125: -2.48606757e-02 sys_corr_126: -2.18816949e-03 - sys_corr_127: -1.65983052e-01 - sys_corr_128: 1.44154949e-01 - sys_corr_129: -1.34399031e+00 + sys_corr_127: 1.65983052e-01 + sys_corr_128: -1.44154949e-01 + sys_corr_129: 1.34399031e+00 sys_corr_130: 1.35402021e-02 - sys_corr_131: 1.95602599e-02 - sys_corr_132: -7.89058062e-02 + sys_corr_131: -7.89058062e-02 + sys_corr_132: -1.95602599e-02 stat: 0.0 luminosity: 2.89133819e+03 - sys_corr_1: -4.72825815e+02 @@ -12736,26 +12736,26 @@ bins: sys_corr_4: -8.77358277e+02 sys_corr_5: -8.49749576e+02 sys_corr_6: -1.63708058e+02 - sys_corr_7: 5.93241997e+01 - sys_corr_8: 5.58371313e+01 + sys_corr_7: -5.93241997e+01 + sys_corr_8: -5.58371313e+01 sys_corr_9: -1.70203728e+01 - sys_corr_10: 5.43595184e+01 - sys_corr_11: 1.92154191e+01 - sys_corr_12: -8.01437487e+01 + sys_corr_10: -5.43595184e+01 + sys_corr_11: -1.92154191e+01 + sys_corr_12: 8.01437487e+01 sys_corr_13: -1.21246911e+02 - sys_corr_14: -1.37190116e+01 - sys_corr_15: -3.80648133e+01 - sys_corr_16: 6.31382790e+01 - sys_corr_17: -1.69978524e+01 - sys_corr_18: -3.01107227e+01 - sys_corr_19: 2.13812292e+01 - sys_corr_20: -8.83729382e+01 - sys_corr_21: -4.41611056e+01 - sys_corr_22: -1.37949380e+01 - sys_corr_23: 6.72220072e+00 - sys_corr_24: 1.57953702e+02 - sys_corr_25: -5.39794559e+02 - sys_corr_26: 2.76964578e+01 + sys_corr_14: 1.37190116e+01 + sys_corr_15: 3.80648133e+01 + sys_corr_16: -6.31382790e+01 + sys_corr_17: 1.69978524e+01 + sys_corr_18: 3.01107227e+01 + sys_corr_19: -2.13812292e+01 + sys_corr_20: 8.83729382e+01 + sys_corr_21: 4.41611056e+01 + sys_corr_22: 1.37949380e+01 + sys_corr_23: -6.72220072e+00 + sys_corr_24: -1.57953702e+02 + sys_corr_25: 5.39794559e+02 + sys_corr_26: -2.76964578e+01 sys_corr_27: -4.21565575e+02 sys_corr_28: -1.33162516e+01 sys_corr_29: -3.75301711e+01 @@ -12768,100 +12768,100 @@ bins: sys_corr_36: 1.90745566e+00 sys_corr_37: 1.56512765e+00 sys_corr_38: 2.87890237e-01 - sys_corr_39: -2.20044499e-02 + sys_corr_39: 2.20044499e-02 sys_corr_40: 9.55306655e-01 sys_corr_41: -2.90288429e-02 - sys_corr_42: 9.94166100e-02 + sys_corr_42: -9.94166100e-02 sys_corr_43: -1.53776554e+00 - sys_corr_44: -3.19006686e+00 - sys_corr_45: 1.60948581e+00 - sys_corr_46: 9.02424339e-01 - sys_corr_47: 6.88706542e-01 - sys_corr_48: 4.62874152e+00 + sys_corr_44: 3.19006686e+00 + sys_corr_45: -1.60948581e+00 + sys_corr_46: -9.02424339e-01 + sys_corr_47: -6.88706542e-01 + sys_corr_48: -4.62874152e+00 sys_corr_49: -6.27141516e-01 - sys_corr_50: 9.00010418e+00 - sys_corr_51: 4.80711218e+00 - sys_corr_52: 2.91516240e+00 - sys_corr_53: 8.67117248e-01 - sys_corr_54: -2.34389843e+00 + sys_corr_50: -9.00010418e+00 + sys_corr_51: -4.80711218e+00 + sys_corr_52: -2.91516240e+00 + sys_corr_53: -8.67117248e-01 + sys_corr_54: 2.34389843e+00 sys_corr_55: 1.01505040e+00 sys_corr_56: 1.11298621e+00 - sys_corr_57: -8.58685115e-01 + sys_corr_57: 8.58685115e-01 sys_corr_58: -1.35180934e+00 - sys_corr_59: -2.22013373e+00 + sys_corr_59: 2.22013373e+00 sys_corr_60: -6.30836801e-01 sys_corr_61: -1.08506955e+00 sys_corr_62: -4.13255840e-01 - sys_corr_63: 1.19643544e-01 + sys_corr_63: -1.19643544e-01 sys_corr_64: -1.71711469e+00 sys_corr_65: 1.77498196e-01 - sys_corr_66: 2.57104530e-01 - sys_corr_67: 2.57356807e+00 - sys_corr_68: -9.09557931e-02 - sys_corr_69: 7.49344653e-01 - sys_corr_70: -1.17971544e+00 - sys_corr_71: -1.90332046e-01 - sys_corr_72: 6.76139409e-01 - sys_corr_73: 1.64156736e+00 - sys_corr_74: 8.54241900e-01 - sys_corr_75: 9.32282554e-01 + sys_corr_66: -2.57104530e-01 + sys_corr_67: -2.57356807e+00 + sys_corr_68: 9.09557931e-02 + sys_corr_69: -7.49344653e-01 + sys_corr_70: 1.17971544e+00 + sys_corr_71: 1.64156736e+00 + sys_corr_72: -6.76139409e-01 + sys_corr_73: 1.90332046e-01 + sys_corr_74: -8.54241900e-01 + sys_corr_75: -9.32282554e-01 sys_corr_76: 1.09968644e+00 sys_corr_77: -6.41652917e-01 - sys_corr_78: 5.23295731e-02 + sys_corr_78: 3.44462096e-01 sys_corr_79: -7.73391211e-01 - sys_corr_80: -3.44462096e-01 + sys_corr_80: -5.23295731e-02 sys_corr_81: -5.80356062e-01 - sys_corr_82: -3.13676495e-01 - sys_corr_83: 1.61099216e+00 + sys_corr_82: 1.61099216e+00 + sys_corr_83: 3.13676495e-01 sys_corr_84: 3.63129119e-02 - sys_corr_85: 8.84218822e-01 - sys_corr_86: -1.52703558e+00 + sys_corr_85: -8.84218822e-01 + sys_corr_86: 1.52703558e+00 sys_corr_87: -3.81488425e-01 sys_corr_88: -3.56637214e+00 - sys_corr_89: 6.79529259e-01 - sys_corr_90: 6.55540468e-01 + sys_corr_89: -6.79529259e-01 + sys_corr_90: -6.55540468e-01 sys_corr_91: -1.60646445e+00 - sys_corr_92: -3.93666968e-01 - sys_corr_93: -7.43639590e-02 + sys_corr_92: 3.93666968e-01 + sys_corr_93: -4.42707056e-01 sys_corr_94: -4.01422346e-01 - sys_corr_95: 4.42707056e-01 + sys_corr_95: 7.43639590e-02 sys_corr_96: -8.30977308e-03 sys_corr_97: 1.87953393e-01 sys_corr_98: 1.13527211e-01 sys_corr_99: 2.27170327e-01 - sys_corr_100: -1.74456352e-02 - sys_corr_101: -2.02612167e-01 - sys_corr_102: 2.51985449e-01 - sys_corr_103: 3.40338477e-01 - sys_corr_104: 9.52286501e-02 - sys_corr_105: 4.07058970e-01 - sys_corr_106: 2.60427421e-02 - sys_corr_107: 2.67546082e-01 - sys_corr_108: -1.84946367e-01 - sys_corr_109: -5.51490792e-01 - sys_corr_110: -1.53700754e-02 - sys_corr_111: 1.27701344e-01 - sys_corr_112: -5.29447579e-01 + sys_corr_100: 9.52286501e-02 + sys_corr_101: 3.40338477e-01 + sys_corr_102: -4.07058970e-01 + sys_corr_103: -2.51985449e-01 + sys_corr_104: -2.02612167e-01 + sys_corr_105: -1.74456352e-02 + sys_corr_106: -2.60427421e-02 + sys_corr_107: -2.67546082e-01 + sys_corr_108: -1.27701344e-01 + sys_corr_109: 1.84946367e-01 + sys_corr_110: 5.51490792e-01 + sys_corr_111: -1.53700754e-02 + sys_corr_112: 5.29447579e-01 sys_corr_113: -4.43809595e-02 sys_corr_114: -2.67972089e-03 - sys_corr_115: -1.29978545e+00 - sys_corr_116: 9.89610256e-02 + sys_corr_115: 1.29978545e+00 + sys_corr_116: -9.89610256e-02 sys_corr_117: 1.33794000e-03 - sys_corr_118: -1.39776595e-01 - sys_corr_119: -2.31283581e-03 + sys_corr_118: 1.39776595e-01 + sys_corr_119: 2.31283581e-03 sys_corr_120: -2.12767589e-04 sys_corr_121: -4.33291845e-03 sys_corr_122: -1.34645943e-02 - sys_corr_123: -6.72700786e-03 + sys_corr_123: 6.72700786e-03 sys_corr_124: -9.18976405e-02 - sys_corr_125: 8.60599287e-03 + sys_corr_125: -8.60599287e-03 sys_corr_126: -2.15868300e-03 - sys_corr_127: -6.42189437e-02 - sys_corr_128: 4.82187944e-02 - sys_corr_129: 1.72703413e+00 + sys_corr_127: 6.42189437e-02 + sys_corr_128: -4.82187944e-02 + sys_corr_129: -1.72703413e+00 sys_corr_130: -2.88005623e-02 - sys_corr_131: -5.22520016e-03 - sys_corr_132: -7.59879034e-02 + sys_corr_131: -7.59879034e-02 + sys_corr_132: 5.22520016e-03 stat: 0.0 luminosity: 2.33892545e+03 - sys_corr_1: -6.53711132e+02 @@ -12870,26 +12870,26 @@ bins: sys_corr_4: -8.41729064e+02 sys_corr_5: -1.12016177e+03 sys_corr_6: -2.59732790e+02 - sys_corr_7: 1.43918847e+02 - sys_corr_8: 1.23657418e+02 + sys_corr_7: -1.43918847e+02 + sys_corr_8: -1.23657418e+02 sys_corr_9: -3.65047070e+01 - sys_corr_10: 5.62230723e+01 - sys_corr_11: 1.75682723e+01 - sys_corr_12: -1.40093900e+02 + sys_corr_10: -5.62230723e+01 + sys_corr_11: -1.75682723e+01 + sys_corr_12: 1.40093900e+02 sys_corr_13: -1.53674494e+02 - sys_corr_14: 4.71228298e+01 - sys_corr_15: -6.64697518e+01 - sys_corr_16: 6.34173423e+01 - sys_corr_17: -6.30860508e+01 - sys_corr_18: -5.34116096e+01 - sys_corr_19: 1.38774320e+02 - sys_corr_20: -2.59081090e+02 - sys_corr_21: -1.25262534e+02 - sys_corr_22: -5.20420698e+01 - sys_corr_23: 2.91830937e+02 - sys_corr_24: 2.71428693e+01 - sys_corr_25: 4.70457801e+02 - sys_corr_26: -3.43046822e+02 + sys_corr_14: -4.71228298e+01 + sys_corr_15: 6.64697518e+01 + sys_corr_16: -6.34173423e+01 + sys_corr_17: 6.30860508e+01 + sys_corr_18: 5.34116096e+01 + sys_corr_19: -1.38774320e+02 + sys_corr_20: 2.59081090e+02 + sys_corr_21: 1.25262534e+02 + sys_corr_22: 5.20420698e+01 + sys_corr_23: -2.91830937e+02 + sys_corr_24: -2.71428693e+01 + sys_corr_25: -4.70457801e+02 + sys_corr_26: 3.43046822e+02 sys_corr_27: -2.28702075e+02 sys_corr_28: -6.56075209e+01 sys_corr_29: -2.63542086e+01 @@ -12902,100 +12902,100 @@ bins: sys_corr_36: 1.54438013e-01 sys_corr_37: -9.41411849e-01 sys_corr_38: -1.04322896e+00 - sys_corr_39: 1.27147017e+00 + sys_corr_39: -1.27147017e+00 sys_corr_40: 2.59455123e-01 sys_corr_41: -5.32535786e-01 - sys_corr_42: -1.33886253e+00 + sys_corr_42: 1.33886253e+00 sys_corr_43: -1.90707706e+00 - sys_corr_44: 2.44420767e-01 - sys_corr_45: -3.45435101e-02 - sys_corr_46: -1.41849373e+00 - sys_corr_47: 1.46651387e+00 - sys_corr_48: -4.81487556e-02 + sys_corr_44: -2.44420767e-01 + sys_corr_45: 3.45435101e-02 + sys_corr_46: 1.41849373e+00 + sys_corr_47: -1.46651387e+00 + sys_corr_48: 4.81487556e-02 sys_corr_49: -3.45610989e+00 - sys_corr_50: 1.33714725e+00 - sys_corr_51: 3.43785320e-01 - sys_corr_52: -1.04143672e+00 - sys_corr_53: 2.06664051e+00 - sys_corr_54: -3.46400396e-01 + sys_corr_50: -1.33714725e+00 + sys_corr_51: -3.43785320e-01 + sys_corr_52: 1.04143672e+00 + sys_corr_53: -2.06664051e+00 + sys_corr_54: 3.46400396e-01 sys_corr_55: -2.67367690e+00 sys_corr_56: 6.90949214e-01 - sys_corr_57: -3.93131512e-01 + sys_corr_57: 3.93131512e-01 sys_corr_58: -5.46737603e-01 - sys_corr_59: -2.17847651e+00 + sys_corr_59: 2.17847651e+00 sys_corr_60: -2.28207636e-01 sys_corr_61: 8.12141892e-01 sys_corr_62: 4.30254347e-01 - sys_corr_63: -6.60155202e-01 + sys_corr_63: 6.60155202e-01 sys_corr_64: 1.05699822e+00 sys_corr_65: -3.96065576e-02 - sys_corr_66: 5.59580708e-01 - sys_corr_67: -4.63838918e-01 - sys_corr_68: -1.42836798e+00 - sys_corr_69: 1.06303404e+00 - sys_corr_70: -4.65164095e-01 - sys_corr_71: -2.37347996e-01 - sys_corr_72: 1.93243419e+00 - sys_corr_73: 7.27160681e-01 - sys_corr_74: 3.99060028e-01 - sys_corr_75: -8.98686202e-02 + sys_corr_66: -5.59580708e-01 + sys_corr_67: 4.63838918e-01 + sys_corr_68: 1.42836798e+00 + sys_corr_69: -1.06303404e+00 + sys_corr_70: 4.65164095e-01 + sys_corr_71: 7.27160681e-01 + sys_corr_72: -1.93243419e+00 + sys_corr_73: 2.37347996e-01 + sys_corr_74: -3.99060028e-01 + sys_corr_75: 8.98686202e-02 sys_corr_76: -3.36883736e-01 sys_corr_77: -2.32105854e-01 - sys_corr_78: -3.06597483e-02 + sys_corr_78: -1.29138688e-01 sys_corr_79: -4.14453783e-02 - sys_corr_80: 1.29138688e-01 + sys_corr_80: 3.06597483e-02 sys_corr_81: 5.45251921e-01 - sys_corr_82: -1.40108658e-01 - sys_corr_83: 1.61486325e+00 + sys_corr_82: 1.61486325e+00 + sys_corr_83: 1.40108658e-01 sys_corr_84: -4.72653524e-01 - sys_corr_85: -1.57533454e-01 - sys_corr_86: 8.93215104e-01 + sys_corr_85: 1.57533454e-01 + sys_corr_86: -8.93215104e-01 sys_corr_87: -8.36549491e-01 sys_corr_88: 2.72896365e+00 - sys_corr_89: 4.47576083e-01 - sys_corr_90: 8.66932479e-01 + sys_corr_89: -4.47576083e-01 + sys_corr_90: -8.66932479e-01 sys_corr_91: -1.11732378e+00 - sys_corr_92: -3.37104432e-01 - sys_corr_93: -4.71397569e-02 + sys_corr_92: 3.37104432e-01 + sys_corr_93: -8.06851889e-01 sys_corr_94: -4.74760296e-01 - sys_corr_95: 8.06851889e-01 + sys_corr_95: 4.71397569e-02 sys_corr_96: -5.52417862e-03 sys_corr_97: -1.23989641e-01 sys_corr_98: -1.41351082e-01 sys_corr_99: -1.44976061e-01 - sys_corr_100: 4.85195743e-01 - sys_corr_101: -2.16041198e-01 - sys_corr_102: 2.80452426e-01 - sys_corr_103: -3.02889579e-01 - sys_corr_104: -1.14345617e-01 - sys_corr_105: -1.76856121e-02 - sys_corr_106: -3.26906310e-01 - sys_corr_107: -7.45215052e-01 - sys_corr_108: 8.51895251e-01 - sys_corr_109: 4.55858935e-01 - sys_corr_110: -7.63612403e-02 - sys_corr_111: 5.78385742e-02 - sys_corr_112: -1.34580457e-01 + sys_corr_100: -1.14345617e-01 + sys_corr_101: -3.02889579e-01 + sys_corr_102: 1.76856121e-02 + sys_corr_103: -2.80452426e-01 + sys_corr_104: -2.16041198e-01 + sys_corr_105: 4.85195743e-01 + sys_corr_106: 3.26906310e-01 + sys_corr_107: 7.45215052e-01 + sys_corr_108: -5.78385742e-02 + sys_corr_109: -8.51895251e-01 + sys_corr_110: -4.55858935e-01 + sys_corr_111: -7.63612403e-02 + sys_corr_112: 1.34580457e-01 sys_corr_113: -4.37770678e-01 sys_corr_114: 6.10294156e-04 - sys_corr_115: 7.61547614e-01 - sys_corr_116: -7.86092442e-02 + sys_corr_115: -7.61547614e-01 + sys_corr_116: 7.86092442e-02 sys_corr_117: 1.28950217e-03 - sys_corr_118: -1.18965900e+00 - sys_corr_119: -2.44061408e-04 + sys_corr_118: 1.18965900e+00 + sys_corr_119: 2.44061408e-04 sys_corr_120: 1.71596754e-02 sys_corr_121: 6.57175294e-03 sys_corr_122: 7.13615519e-03 - sys_corr_123: 6.33520374e-03 + sys_corr_123: -6.33520374e-03 sys_corr_124: -1.63698694e-02 - sys_corr_125: -4.21317893e-04 + sys_corr_125: 4.21317893e-04 sys_corr_126: 4.51240533e-03 - sys_corr_127: 9.54131377e-02 - sys_corr_128: 1.82530980e-01 - sys_corr_129: -2.90941913e-01 + sys_corr_127: -9.54131377e-02 + sys_corr_128: -1.82530980e-01 + sys_corr_129: 2.90941913e-01 sys_corr_130: 5.15770070e-03 - sys_corr_131: 3.37500991e-02 - sys_corr_132: -3.83356807e-02 + sys_corr_131: -3.83356807e-02 + sys_corr_132: -3.37500991e-02 stat: 0.0 luminosity: 1.80631713e+03 - sys_corr_1: -7.55213387e+02 @@ -13004,26 +13004,26 @@ bins: sys_corr_4: -7.82986806e+02 sys_corr_5: -1.14398644e+03 sys_corr_6: -2.86486746e+02 - sys_corr_7: 1.95053185e+02 - sys_corr_8: 1.49053616e+02 + sys_corr_7: -1.95053185e+02 + sys_corr_8: -1.49053616e+02 sys_corr_9: -3.52380779e+01 - sys_corr_10: 1.79919810e+01 - sys_corr_11: 4.46460251e+00 - sys_corr_12: -1.45888612e+02 + sys_corr_10: -1.79919810e+01 + sys_corr_11: -4.46460251e+00 + sys_corr_12: 1.45888612e+02 sys_corr_13: -2.32834176e+02 - sys_corr_14: 2.50214790e+01 - sys_corr_15: -6.25003726e+01 - sys_corr_16: 1.04350896e+02 - sys_corr_17: -1.06878523e+02 - sys_corr_18: -5.54069322e+01 - sys_corr_19: 1.37010372e+02 - sys_corr_20: -2.19318406e+02 - sys_corr_21: -9.97721480e+01 - sys_corr_22: -3.61280379e+01 - sys_corr_23: 2.04236409e+02 - sys_corr_24: -6.93696474e+01 - sys_corr_25: -4.66094901e+01 - sys_corr_26: 1.75680473e+02 + sys_corr_14: -2.50214790e+01 + sys_corr_15: 6.25003726e+01 + sys_corr_16: -1.04350896e+02 + sys_corr_17: 1.06878523e+02 + sys_corr_18: 5.54069322e+01 + sys_corr_19: -1.37010372e+02 + sys_corr_20: 2.19318406e+02 + sys_corr_21: 9.97721480e+01 + sys_corr_22: 3.61280379e+01 + sys_corr_23: -2.04236409e+02 + sys_corr_24: 6.93696474e+01 + sys_corr_25: 4.66094901e+01 + sys_corr_26: -1.75680473e+02 sys_corr_27: 2.76336724e+02 sys_corr_28: 3.17567972e+02 sys_corr_29: 2.52228931e+02 @@ -13036,100 +13036,100 @@ bins: sys_corr_36: 7.35788420e+00 sys_corr_37: -3.33485762e+00 sys_corr_38: -4.51094970e+00 - sys_corr_39: 1.40044566e-01 + sys_corr_39: -1.40044566e-01 sys_corr_40: -9.59463819e-01 sys_corr_41: 1.70999353e+00 - sys_corr_42: 2.78055135e+00 + sys_corr_42: -2.78055135e+00 sys_corr_43: 1.98739516e+00 - sys_corr_44: 1.01938872e+01 - sys_corr_45: -1.17618160e+00 - sys_corr_46: -6.55070599e+00 - sys_corr_47: 1.39624041e+01 - sys_corr_48: -2.92648701e+01 + sys_corr_44: -1.01938872e+01 + sys_corr_45: 1.17618160e+00 + sys_corr_46: 6.55070599e+00 + sys_corr_47: -1.39624041e+01 + sys_corr_48: 2.92648701e+01 sys_corr_49: -1.17749711e+01 - sys_corr_50: -2.08954308e+01 - sys_corr_51: -2.86497562e+01 - sys_corr_52: -1.56254623e+01 - sys_corr_53: 8.77116389e-01 - sys_corr_54: 1.06388776e+01 + sys_corr_50: 2.08954308e+01 + sys_corr_51: 2.86497562e+01 + sys_corr_52: 1.56254623e+01 + sys_corr_53: -8.77116389e-01 + sys_corr_54: -1.06388776e+01 sys_corr_55: 9.91744647e+00 sys_corr_56: 7.11869845e+00 - sys_corr_57: 1.38254345e+00 + sys_corr_57: -1.38254345e+00 sys_corr_58: 1.75599449e+00 - sys_corr_59: 2.41029620e+00 + sys_corr_59: -2.41029620e+00 sys_corr_60: 5.01808478e-01 sys_corr_61: -1.28554173e+00 sys_corr_62: -4.43612126e-01 - sys_corr_63: -1.30974908e+00 + sys_corr_63: 1.30974908e+00 sys_corr_64: -1.00684700e+00 sys_corr_65: -1.35807477e+00 - sys_corr_66: -4.11320816e-01 - sys_corr_67: 3.74788346e-01 - sys_corr_68: -2.82207682e+00 - sys_corr_69: 7.90846906e-01 - sys_corr_70: -4.52814318e-01 - sys_corr_71: -1.68301918e-01 - sys_corr_72: -7.39065592e-01 - sys_corr_73: 2.84043673e-01 - sys_corr_74: 2.56770714e-02 - sys_corr_75: -1.65595165e+00 + sys_corr_66: 4.11320816e-01 + sys_corr_67: -3.74788346e-01 + sys_corr_68: 2.82207682e+00 + sys_corr_69: -7.90846906e-01 + sys_corr_70: 4.52814318e-01 + sys_corr_71: 2.84043673e-01 + sys_corr_72: 7.39065592e-01 + sys_corr_73: 1.68301918e-01 + sys_corr_74: -2.56770714e-02 + sys_corr_75: 1.65595165e+00 sys_corr_76: 1.79150193e+00 sys_corr_77: 7.66165076e-01 - sys_corr_78: 2.89725641e-01 + sys_corr_78: 5.91498735e-01 sys_corr_79: -1.79655904e-01 - sys_corr_80: -5.91498735e-01 + sys_corr_80: -2.89725641e-01 sys_corr_81: -6.20100209e-02 - sys_corr_82: 2.22278802e-01 - sys_corr_83: -1.95392784e-01 + sys_corr_82: -1.95392784e-01 + sys_corr_83: -2.22278802e-01 sys_corr_84: -1.48054918e+00 - sys_corr_85: -1.19184655e+00 - sys_corr_86: -1.44173082e+00 + sys_corr_85: 1.19184655e+00 + sys_corr_86: 1.44173082e+00 sys_corr_87: 1.53935834e-01 sys_corr_88: 2.60059766e+00 - sys_corr_89: -6.52683769e-04 - sys_corr_90: 1.53504678e+00 + sys_corr_89: 6.52683769e-04 + sys_corr_90: -1.53504678e+00 sys_corr_91: -8.09188987e-01 - sys_corr_92: 2.40085668e+00 - sys_corr_93: 3.96548847e-02 + sys_corr_92: -2.40085668e+00 + sys_corr_93: 1.82867075e+00 sys_corr_94: 4.58555375e-01 - sys_corr_95: -1.82867075e+00 + sys_corr_95: -3.96548847e-02 sys_corr_96: -2.23563566e-01 sys_corr_97: -1.66271056e+00 sys_corr_98: -7.23477195e-01 sys_corr_99: -7.14430781e-01 - sys_corr_100: -3.00163160e-01 - sys_corr_101: 7.63527918e-01 - sys_corr_102: -1.14684352e+00 - sys_corr_103: -9.65469900e-02 - sys_corr_104: -4.80085787e-01 - sys_corr_105: -1.07265801e+00 - sys_corr_106: -8.59724995e-02 - sys_corr_107: -5.77452580e-01 - sys_corr_108: -7.92250562e-01 - sys_corr_109: 5.98238976e-01 - sys_corr_110: 9.07424133e-01 - sys_corr_111: 4.44755013e-02 - sys_corr_112: 4.46867983e-01 + sys_corr_100: -4.80085787e-01 + sys_corr_101: -9.65469900e-02 + sys_corr_102: 1.07265801e+00 + sys_corr_103: 1.14684352e+00 + sys_corr_104: 7.63527918e-01 + sys_corr_105: -3.00163160e-01 + sys_corr_106: 8.59724995e-02 + sys_corr_107: 5.77452580e-01 + sys_corr_108: -4.44755013e-02 + sys_corr_109: 7.92250562e-01 + sys_corr_110: -5.98238976e-01 + sys_corr_111: 9.07424133e-01 + sys_corr_112: -4.46867983e-01 sys_corr_113: -2.07329273e-01 sys_corr_114: 2.69016881e-03 - sys_corr_115: 1.69125287e-02 - sys_corr_116: 6.85641361e-04 + sys_corr_115: -1.69125287e-02 + sys_corr_116: -6.85641361e-04 sys_corr_117: -7.63339011e-03 - sys_corr_118: 1.11624594e+00 - sys_corr_119: -1.69560765e-03 + sys_corr_118: -1.11624594e+00 + sys_corr_119: 1.69560765e-03 sys_corr_120: -2.04800020e-02 sys_corr_121: 2.03985155e-03 sys_corr_122: -1.26574793e-01 - sys_corr_123: 6.83285096e-02 + sys_corr_123: -6.83285096e-02 sys_corr_124: 1.85208009e-02 - sys_corr_125: 5.84804443e-02 + sys_corr_125: -5.84804443e-02 sys_corr_126: -8.38383783e-02 - sys_corr_127: -8.42345779e-02 - sys_corr_128: -1.39305937e-01 - sys_corr_129: 8.11419289e-02 + sys_corr_127: 8.42345779e-02 + sys_corr_128: 1.39305937e-01 + sys_corr_129: -8.11419289e-02 sys_corr_130: 9.88484553e-02 - sys_corr_131: -1.99391657e-02 - sys_corr_132: 8.52762902e-01 + sys_corr_131: 8.52762902e-01 + sys_corr_132: 1.99391657e-02 stat: 0.0 luminosity: 1.25555397e+03 - sys_corr_1: -6.07403191e+02 @@ -13138,26 +13138,26 @@ bins: sys_corr_4: -5.87979941e+02 sys_corr_5: -1.08774130e+03 sys_corr_6: -2.59040486e+02 - sys_corr_7: 2.47271023e+02 - sys_corr_8: 1.33966123e+02 + sys_corr_7: -2.47271023e+02 + sys_corr_8: -1.33966123e+02 sys_corr_9: -3.89133008e+01 - sys_corr_10: 4.76784845e+00 - sys_corr_11: -1.33290363e+01 - sys_corr_12: -1.70189008e+02 + sys_corr_10: -4.76784845e+00 + sys_corr_11: 1.33290363e+01 + sys_corr_12: 1.70189008e+02 sys_corr_13: -2.27949666e+02 - sys_corr_14: 3.76056568e+01 - sys_corr_15: -6.82342662e+01 - sys_corr_16: 1.11879265e+02 - sys_corr_17: -4.23850447e+01 - sys_corr_18: -5.99858062e+01 - sys_corr_19: 7.94066784e+01 - sys_corr_20: -1.68764753e+02 - sys_corr_21: -2.25819982e+00 - sys_corr_22: 1.01281549e+02 - sys_corr_23: 1.17480108e+02 - sys_corr_24: -1.62545196e+02 - sys_corr_25: -1.36909836e+02 - sys_corr_26: 1.06222873e+02 + sys_corr_14: -3.76056568e+01 + sys_corr_15: 6.82342662e+01 + sys_corr_16: -1.11879265e+02 + sys_corr_17: 4.23850447e+01 + sys_corr_18: 5.99858062e+01 + sys_corr_19: -7.94066784e+01 + sys_corr_20: 1.68764753e+02 + sys_corr_21: 2.25819982e+00 + sys_corr_22: -1.01281549e+02 + sys_corr_23: -1.17480108e+02 + sys_corr_24: 1.62545196e+02 + sys_corr_25: 1.36909836e+02 + sys_corr_26: -1.06222873e+02 sys_corr_27: 3.48830186e+02 sys_corr_28: -3.12501834e+02 sys_corr_29: -2.31787647e+02 @@ -13170,100 +13170,100 @@ bins: sys_corr_36: -1.51509249e+01 sys_corr_37: 3.22707762e+00 sys_corr_38: 2.20407807e+00 - sys_corr_39: 4.22236245e+00 + sys_corr_39: -4.22236245e+00 sys_corr_40: 1.20043810e+00 sys_corr_41: -3.70520430e+00 - sys_corr_42: 7.46477442e+00 + sys_corr_42: -7.46477442e+00 sys_corr_43: 2.24686769e+00 - sys_corr_44: 1.44275334e+01 - sys_corr_45: -2.34091408e+00 - sys_corr_46: 5.35665426e+00 - sys_corr_47: 9.72941462e+00 - sys_corr_48: -2.37594234e+01 + sys_corr_44: -1.44275334e+01 + sys_corr_45: 2.34091408e+00 + sys_corr_46: -5.35665426e+00 + sys_corr_47: -9.72941462e+00 + sys_corr_48: 2.37594234e+01 sys_corr_49: -7.41806940e+00 - sys_corr_50: -2.90074583e+01 - sys_corr_51: -1.36363419e+01 - sys_corr_52: -1.29122484e+01 - sys_corr_53: -5.46126581e+00 - sys_corr_54: -4.94237285e-01 + sys_corr_50: 2.90074583e+01 + sys_corr_51: 1.36363419e+01 + sys_corr_52: 1.29122484e+01 + sys_corr_53: 5.46126581e+00 + sys_corr_54: 4.94237285e-01 sys_corr_55: 1.41146581e+00 sys_corr_56: -5.31111522e-01 - sys_corr_57: 1.00039840e+00 + sys_corr_57: -1.00039840e+00 sys_corr_58: 3.83942132e-01 - sys_corr_59: -4.05332801e-01 + sys_corr_59: 4.05332801e-01 sys_corr_60: 1.49232487e-01 sys_corr_61: 1.48614915e+00 sys_corr_62: 6.52637029e-01 - sys_corr_63: 4.29503193e+00 + sys_corr_63: -4.29503193e+00 sys_corr_64: -4.07700726e-01 sys_corr_65: 1.59768524e-01 - sys_corr_66: -3.02009149e-01 - sys_corr_67: -2.37212128e+00 - sys_corr_68: 1.98152187e+00 - sys_corr_69: -2.43067877e+00 - sys_corr_70: 4.79152531e-01 - sys_corr_71: 1.13158609e+00 - sys_corr_72: -2.78211158e-01 - sys_corr_73: -2.51627099e+00 - sys_corr_74: -1.09409430e+00 - sys_corr_75: 1.44700731e-01 + sys_corr_66: 3.02009149e-01 + sys_corr_67: 2.37212128e+00 + sys_corr_68: -1.98152187e+00 + sys_corr_69: 2.43067877e+00 + sys_corr_70: -4.79152531e-01 + sys_corr_71: -2.51627099e+00 + sys_corr_72: 2.78211158e-01 + sys_corr_73: -1.13158609e+00 + sys_corr_74: 1.09409430e+00 + sys_corr_75: -1.44700731e-01 sys_corr_76: -3.05684817e-02 sys_corr_77: -1.31034265e+00 - sys_corr_78: -1.45265669e-01 + sys_corr_78: -7.67700297e-01 sys_corr_79: 1.44514412e+00 - sys_corr_80: 7.67700297e-01 + sys_corr_80: 1.45265669e-01 sys_corr_81: -3.97211901e-01 - sys_corr_82: 3.64610924e-01 - sys_corr_83: -9.92552425e-01 + sys_corr_82: -9.92552425e-01 + sys_corr_83: -3.64610924e-01 sys_corr_84: -8.91048938e-01 - sys_corr_85: -5.96106177e-01 - sys_corr_86: 4.58136508e-01 + sys_corr_85: 5.96106177e-01 + sys_corr_86: -4.58136508e-01 sys_corr_87: 5.02687523e-02 sys_corr_88: -2.48255797e-01 - sys_corr_89: -1.06632611e+00 - sys_corr_90: 3.06890222e-01 + sys_corr_89: 1.06632611e+00 + sys_corr_90: -3.06890222e-01 sys_corr_91: 9.51889344e-01 - sys_corr_92: 2.46834443e-01 - sys_corr_93: 3.07532255e-01 + sys_corr_92: -2.46834443e-01 + sys_corr_93: -1.59090769e+00 sys_corr_94: 2.73786840e-01 - sys_corr_95: 1.59090769e+00 + sys_corr_95: -3.07532255e-01 sys_corr_96: 1.04824455e-01 sys_corr_97: 1.85610381e+00 sys_corr_98: 1.08528819e+00 sys_corr_99: 1.03656284e+00 - sys_corr_100: 2.19143165e+00 - sys_corr_101: -1.49479997e+00 - sys_corr_102: 2.39241243e+00 - sys_corr_103: -3.14662319e-01 - sys_corr_104: 9.24604101e-01 - sys_corr_105: 1.41798980e+00 - sys_corr_106: -1.59387933e+00 - sys_corr_107: -1.57941317e+00 - sys_corr_108: 5.14617116e-01 - sys_corr_109: -2.37877560e-02 - sys_corr_110: 3.69817711e-01 - sys_corr_111: -5.71393726e-01 - sys_corr_112: 3.28654214e-01 + sys_corr_100: 9.24604101e-01 + sys_corr_101: -3.14662319e-01 + sys_corr_102: -1.41798980e+00 + sys_corr_103: -2.39241243e+00 + sys_corr_104: -1.49479997e+00 + sys_corr_105: 2.19143165e+00 + sys_corr_106: 1.59387933e+00 + sys_corr_107: 1.57941317e+00 + sys_corr_108: 5.71393726e-01 + sys_corr_109: -5.14617116e-01 + sys_corr_110: 2.37877560e-02 + sys_corr_111: 3.69817711e-01 + sys_corr_112: -3.28654214e-01 sys_corr_113: 2.58084549e-01 sys_corr_114: 5.99420727e-03 - sys_corr_115: 3.13952047e-01 - sys_corr_116: -4.32505594e-03 + sys_corr_115: -3.13952047e-01 + sys_corr_116: 4.32505594e-03 sys_corr_117: -2.79094549e-02 - sys_corr_118: -9.66055653e-02 - sys_corr_119: -3.78839807e-03 + sys_corr_118: 9.66055653e-02 + sys_corr_119: 3.78839807e-03 sys_corr_120: -1.16829818e-02 sys_corr_121: 2.71303756e-02 sys_corr_122: 1.69370391e-01 - sys_corr_123: -7.65330814e-02 + sys_corr_123: 7.65330814e-02 sys_corr_124: -1.28318713e-02 - sys_corr_125: -5.35913712e-02 + sys_corr_125: 5.35913712e-02 sys_corr_126: -4.19147129e-03 - sys_corr_127: 7.41506728e-02 - sys_corr_128: 6.30099299e-01 - sys_corr_129: -4.38783750e-01 + sys_corr_127: -7.41506728e-02 + sys_corr_128: -6.30099299e-01 + sys_corr_129: 4.38783750e-01 sys_corr_130: 1.38814764e-01 - sys_corr_131: 1.99732023e-02 - sys_corr_132: -9.95436310e-01 + sys_corr_131: -9.95436310e-01 + sys_corr_132: -1.99732023e-02 stat: 0.0 luminosity: 7.35952668e+02 - sys_corr_1: -2.35305454e+02 @@ -13272,26 +13272,26 @@ bins: sys_corr_4: -2.08797512e+02 sys_corr_5: -4.03267375e+02 sys_corr_6: -9.22901895e+01 - sys_corr_7: 1.01217132e+02 - sys_corr_8: 5.35665673e+01 + sys_corr_7: -1.01217132e+02 + sys_corr_8: -5.35665673e+01 sys_corr_9: -1.31472793e+01 - sys_corr_10: -3.59012075e+00 - sys_corr_11: -1.05044419e+01 - sys_corr_12: -5.77124827e+01 + sys_corr_10: 3.59012075e+00 + sys_corr_11: 1.05044419e+01 + sys_corr_12: 5.77124827e+01 sys_corr_13: -7.72926185e+01 - sys_corr_14: 1.94165022e+01 - sys_corr_15: -3.20915668e+01 - sys_corr_16: 4.04047368e+01 - sys_corr_17: -1.43039844e+01 - sys_corr_18: -2.07915271e+01 - sys_corr_19: -5.01264108e-01 - sys_corr_20: -3.11878786e+01 - sys_corr_21: 3.19977920e+00 - sys_corr_22: 3.58161200e+01 - sys_corr_23: 7.31311834e+00 - sys_corr_24: -4.82460914e+01 - sys_corr_25: -4.60787968e+00 - sys_corr_26: 3.25307015e+01 + sys_corr_14: -1.94165022e+01 + sys_corr_15: 3.20915668e+01 + sys_corr_16: -4.04047368e+01 + sys_corr_17: 1.43039844e+01 + sys_corr_18: 2.07915271e+01 + sys_corr_19: 5.01264108e-01 + sys_corr_20: 3.11878786e+01 + sys_corr_21: -3.19977920e+00 + sys_corr_22: -3.58161200e+01 + sys_corr_23: -7.31311834e+00 + sys_corr_24: 4.82460914e+01 + sys_corr_25: 4.60787968e+00 + sys_corr_26: -3.25307015e+01 sys_corr_27: 1.14512957e+02 sys_corr_28: -8.90715884e-01 sys_corr_29: 1.60732356e+01 @@ -13304,100 +13304,100 @@ bins: sys_corr_36: 2.88579575e+01 sys_corr_37: -1.22085544e+01 sys_corr_38: 1.11487700e+01 - sys_corr_39: -1.18252381e+01 + sys_corr_39: 1.18252381e+01 sys_corr_40: -1.02301454e+01 sys_corr_41: 9.75746076e+00 - sys_corr_42: -3.26360909e+01 + sys_corr_42: 3.26360909e+01 sys_corr_43: -4.93021639e+00 - sys_corr_44: -7.88141572e+01 - sys_corr_45: 8.79719901e+00 - sys_corr_46: 5.10674064e+00 - sys_corr_47: -8.43646828e+01 - sys_corr_48: 1.69678419e+02 + sys_corr_44: 7.88141572e+01 + sys_corr_45: -8.79719901e+00 + sys_corr_46: -5.10674064e+00 + sys_corr_47: 8.43646828e+01 + sys_corr_48: -1.69678419e+02 sys_corr_49: 6.55730605e+01 - sys_corr_50: 1.40513463e+02 - sys_corr_51: 1.51270110e+02 - sys_corr_52: 1.05401961e+02 - sys_corr_53: 8.02633468e+00 - sys_corr_54: -3.21560715e+01 + sys_corr_50: -1.40513463e+02 + sys_corr_51: -1.51270110e+02 + sys_corr_52: -1.05401961e+02 + sys_corr_53: -8.02633468e+00 + sys_corr_54: 3.21560715e+01 sys_corr_55: -3.48307551e+01 sys_corr_56: -2.70063979e+01 - sys_corr_57: -7.82413926e+00 + sys_corr_57: 7.82413926e+00 sys_corr_58: -4.70330555e+00 - sys_corr_59: -4.22242113e-01 + sys_corr_59: 4.22242113e-01 sys_corr_60: -3.54416557e-01 sys_corr_61: 7.29529319e+00 sys_corr_62: -1.42953412e+00 - sys_corr_63: -1.13348456e+00 + sys_corr_63: 1.13348456e+00 sys_corr_64: 4.01581787e+00 sys_corr_65: 1.82821523e+00 - sys_corr_66: 5.67467917e+00 - sys_corr_67: -1.10704379e+00 - sys_corr_68: 7.31725260e+00 - sys_corr_69: 1.90697980e+00 - sys_corr_70: 5.43513885e+00 - sys_corr_71: 2.61636277e-01 - sys_corr_72: 4.04926470e+00 - sys_corr_73: 1.67055216e+00 - sys_corr_74: -1.90137641e+00 - sys_corr_75: 2.76576211e+00 + sys_corr_66: -5.67467917e+00 + sys_corr_67: 1.10704379e+00 + sys_corr_68: -7.31725260e+00 + sys_corr_69: -1.90697980e+00 + sys_corr_70: -5.43513885e+00 + sys_corr_71: 1.67055216e+00 + sys_corr_72: -4.04926470e+00 + sys_corr_73: -2.61636277e-01 + sys_corr_74: 1.90137641e+00 + sys_corr_75: -2.76576211e+00 sys_corr_76: 1.28829265e+00 sys_corr_77: -1.95794202e+00 - sys_corr_78: -1.28880669e+00 + sys_corr_78: -3.11252566e+00 sys_corr_79: 3.32743083e+00 - sys_corr_80: 3.11252566e+00 + sys_corr_80: 1.28880669e+00 sys_corr_81: -2.30659935e+00 - sys_corr_82: -2.24588784e+00 - sys_corr_83: -1.69645294e-01 + sys_corr_82: -1.69645294e-01 + sys_corr_83: 2.24588784e+00 sys_corr_84: -1.29115278e+00 - sys_corr_85: -3.03794130e-02 - sys_corr_86: 1.49745435e+00 + sys_corr_85: 3.03794130e-02 + sys_corr_86: -1.49745435e+00 sys_corr_87: -2.43020670e+00 sys_corr_88: -5.68244830e+00 - sys_corr_89: 3.43626838e+00 - sys_corr_90: -5.23246025e-01 + sys_corr_89: -3.43626838e+00 + sys_corr_90: 5.23246025e-01 sys_corr_91: 1.81031992e+00 - sys_corr_92: -3.60430202e+00 - sys_corr_93: 4.68571429e-01 + sys_corr_92: 3.60430202e+00 + sys_corr_93: -2.93039354e+00 sys_corr_94: 9.44878957e-01 - sys_corr_95: 2.93039354e+00 + sys_corr_95: -4.68571429e-01 sys_corr_96: 4.08730821e-02 sys_corr_97: 3.25088463e+00 sys_corr_98: 1.43244162e+00 sys_corr_99: 2.02954581e+00 - sys_corr_100: 2.17637576e+00 - sys_corr_101: -2.29385577e+00 - sys_corr_102: 3.20285125e+00 - sys_corr_103: 2.75622983e+00 - sys_corr_104: 1.93241089e+00 - sys_corr_105: 3.43027932e+00 - sys_corr_106: -1.62620572e+00 - sys_corr_107: -1.55943389e+00 - sys_corr_108: 8.44502529e-01 - sys_corr_109: -1.01735514e+00 - sys_corr_110: -1.01187666e+00 - sys_corr_111: -1.26815804e+00 - sys_corr_112: -3.07804934e-01 + sys_corr_100: 1.93241089e+00 + sys_corr_101: 2.75622983e+00 + sys_corr_102: -3.43027932e+00 + sys_corr_103: -3.20285125e+00 + sys_corr_104: -2.29385577e+00 + sys_corr_105: 2.17637576e+00 + sys_corr_106: 1.62620572e+00 + sys_corr_107: 1.55943389e+00 + sys_corr_108: 1.26815804e+00 + sys_corr_109: -8.44502529e-01 + sys_corr_110: 1.01735514e+00 + sys_corr_111: -1.01187666e+00 + sys_corr_112: 3.07804934e-01 sys_corr_113: 1.03348368e-02 sys_corr_114: 5.35841059e-03 - sys_corr_115: 2.32971281e-01 - sys_corr_116: -7.76087624e-03 + sys_corr_115: -2.32971281e-01 + sys_corr_116: 7.76087624e-03 sys_corr_117: -4.78402868e-02 - sys_corr_118: -7.12700899e-01 - sys_corr_119: 4.10212020e-03 + sys_corr_118: 7.12700899e-01 + sys_corr_119: -4.10212020e-03 sys_corr_120: -5.84131642e-02 sys_corr_121: -2.06746161e-02 sys_corr_122: 4.06088822e-01 - sys_corr_123: -2.77056500e-01 + sys_corr_123: 2.77056500e-01 sys_corr_124: -8.54122438e-02 - sys_corr_125: -2.26992017e-01 + sys_corr_125: 2.26992017e-01 sys_corr_126: 3.68113793e-01 - sys_corr_127: 2.97186036e-01 - sys_corr_128: -5.90162132e-01 - sys_corr_129: 5.31145242e-01 + sys_corr_127: -2.97186036e-01 + sys_corr_128: 5.90162132e-01 + sys_corr_129: -5.31145242e-01 sys_corr_130: -6.28013448e-01 - sys_corr_131: -1.05556336e-01 - sys_corr_132: 2.12035474e-01 + sys_corr_131: 2.12035474e-01 + sys_corr_132: 1.05556336e-01 stat: 0.0 luminosity: 2.33737042e+02 - sys_corr_1: 3.00027161e+01 @@ -13406,26 +13406,26 @@ bins: sys_corr_4: -8.78001780e+00 sys_corr_5: -7.89469373e+00 sys_corr_6: 7.54337553e+00 - sys_corr_7: 9.17500903e+00 - sys_corr_8: -1.08165950e+00 + sys_corr_7: -9.17500903e+00 + sys_corr_8: 1.08165950e+00 sys_corr_9: 1.87902513e+01 - sys_corr_10: -2.21663249e+00 - sys_corr_11: -4.56962076e+00 - sys_corr_12: -8.74631059e+00 + sys_corr_10: 2.21663249e+00 + sys_corr_11: 4.56962076e+00 + sys_corr_12: 8.74631059e+00 sys_corr_13: -3.89751012e+00 - sys_corr_14: 2.38344547e+00 - sys_corr_15: 5.08198429e+00 - sys_corr_16: 1.15361208e+01 - sys_corr_17: 2.44547631e+00 - sys_corr_18: 4.14669407e+00 - sys_corr_19: 1.54877532e+00 - sys_corr_20: -8.49155737e-01 - sys_corr_21: -4.88758819e-01 - sys_corr_22: 5.69255450e+00 - sys_corr_23: 2.62976439e+00 - sys_corr_24: -3.34241893e+00 - sys_corr_25: 4.51486306e+00 - sys_corr_26: 9.02319597e+00 + sys_corr_14: -2.38344547e+00 + sys_corr_15: -5.08198429e+00 + sys_corr_16: -1.15361208e+01 + sys_corr_17: -2.44547631e+00 + sys_corr_18: -4.14669407e+00 + sys_corr_19: -1.54877532e+00 + sys_corr_20: 8.49155737e-01 + sys_corr_21: 4.88758819e-01 + sys_corr_22: -5.69255450e+00 + sys_corr_23: -2.62976439e+00 + sys_corr_24: 3.34241893e+00 + sys_corr_25: -4.51486306e+00 + sys_corr_26: -9.02319597e+00 sys_corr_27: -5.31575639e+00 sys_corr_28: 1.57817653e-01 sys_corr_29: 5.05152226e+00 @@ -13438,100 +13438,100 @@ bins: sys_corr_36: -3.33600161e-02 sys_corr_37: -1.75487125e+00 sys_corr_38: 7.48079180e-01 - sys_corr_39: 3.82270599e-01 + sys_corr_39: -3.82270599e-01 sys_corr_40: 8.08635830e-01 sys_corr_41: -1.07884313e+00 - sys_corr_42: -3.79452293e-01 + sys_corr_42: 3.79452293e-01 sys_corr_43: 9.84029906e-01 - sys_corr_44: 1.32808284e+00 - sys_corr_45: -5.73011825e-01 - sys_corr_46: -1.16854986e+00 - sys_corr_47: 8.96361526e-01 - sys_corr_48: -2.86556455e+00 + sys_corr_44: -1.32808284e+00 + sys_corr_45: 5.73011825e-01 + sys_corr_46: 1.16854986e+00 + sys_corr_47: -8.96361526e-01 + sys_corr_48: 2.86556455e+00 sys_corr_49: -3.88771380e+00 - sys_corr_50: 4.94340824e-01 - sys_corr_51: 1.17060265e+00 - sys_corr_52: -1.60864323e+00 - sys_corr_53: -6.84811769e-01 - sys_corr_54: -4.81712997e+00 + sys_corr_50: -4.94340824e-01 + sys_corr_51: -1.17060265e+00 + sys_corr_52: 1.60864323e+00 + sys_corr_53: 6.84811769e-01 + sys_corr_54: 4.81712997e+00 sys_corr_55: 2.26926727e+00 sys_corr_56: 1.53048422e+00 - sys_corr_57: -6.76002212e-02 + sys_corr_57: 6.76002212e-02 sys_corr_58: -2.50113276e+00 - sys_corr_59: -2.05469070e+00 + sys_corr_59: 2.05469070e+00 sys_corr_60: -1.18045081e+00 sys_corr_61: 4.01180225e-01 sys_corr_62: 1.48478029e+00 - sys_corr_63: -1.30300930e-01 + sys_corr_63: 1.30300930e-01 sys_corr_64: -2.35836093e+00 sys_corr_65: -3.85711375e+00 - sys_corr_66: -4.18632640e-01 - sys_corr_67: 1.19440068e+00 - sys_corr_68: -1.67252097e-04 - sys_corr_69: 2.22724965e+00 - sys_corr_70: 2.41273676e+00 - sys_corr_71: -7.46926207e+00 - sys_corr_72: -1.35485395e+00 - sys_corr_73: 2.01120674e-01 - sys_corr_74: -1.74634171e+00 - sys_corr_75: 1.68837044e+00 + sys_corr_66: 4.18632640e-01 + sys_corr_67: -1.19440068e+00 + sys_corr_68: 1.67252098e-04 + sys_corr_69: -2.22724965e+00 + sys_corr_70: -2.41273676e+00 + sys_corr_71: 2.01120674e-01 + sys_corr_72: 1.35485395e+00 + sys_corr_73: 7.46926207e+00 + sys_corr_74: 1.74634171e+00 + sys_corr_75: -1.68837044e+00 sys_corr_76: 2.23890404e+00 sys_corr_77: 3.33943080e+00 - sys_corr_78: 3.41590947e+00 + sys_corr_78: 2.38407524e+00 sys_corr_79: 3.65463113e+00 - sys_corr_80: -2.38407524e+00 + sys_corr_80: -3.41590947e+00 sys_corr_81: 3.34601562e+00 - sys_corr_82: -2.03363737e+00 - sys_corr_83: 6.58210808e+00 + sys_corr_82: 6.58210808e+00 + sys_corr_83: 2.03363737e+00 sys_corr_84: 4.72574535e+01 - sys_corr_85: 3.45548023e+01 - sys_corr_86: -3.13229411e+00 + sys_corr_85: -3.45548023e+01 + sys_corr_86: 3.13229411e+00 sys_corr_87: -5.00782722e-01 sys_corr_88: 2.15732195e+00 - sys_corr_89: 2.20242664e+00 - sys_corr_90: -5.72381083e+01 + sys_corr_89: -2.20242664e+00 + sys_corr_90: 5.72381083e+01 sys_corr_91: 1.37077594e+01 - sys_corr_92: 5.13973562e+00 - sys_corr_93: 2.74759309e+01 + sys_corr_92: -5.13973562e+00 + sys_corr_93: -1.31935263e+01 sys_corr_94: 2.35005524e+01 - sys_corr_95: 1.31935263e+01 + sys_corr_95: -2.74759309e+01 sys_corr_96: 1.09148549e+02 sys_corr_97: 5.55350454e+01 sys_corr_98: -3.43566660e+01 sys_corr_99: -5.19137860e+00 - sys_corr_100: 1.12844121e+00 - sys_corr_101: -6.24264341e-02 - sys_corr_102: -2.53072084e+00 - sys_corr_103: 3.54409320e-01 - sys_corr_104: -1.23075402e+00 - sys_corr_105: -1.57062551e+01 - sys_corr_106: -8.20278980e-01 - sys_corr_107: -2.66715150e+00 - sys_corr_108: -6.77133080e-01 - sys_corr_109: 1.31946258e+00 - sys_corr_110: 1.55437872e+00 - sys_corr_111: -1.92274533e+01 - sys_corr_112: 7.55709640e-01 + sys_corr_100: -1.23075402e+00 + sys_corr_101: 3.54409320e-01 + sys_corr_102: 1.57062551e+01 + sys_corr_103: 2.53072084e+00 + sys_corr_104: -6.24264341e-02 + sys_corr_105: 1.12844121e+00 + sys_corr_106: 8.20278980e-01 + sys_corr_107: 2.66715150e+00 + sys_corr_108: 1.92274533e+01 + sys_corr_109: 6.77133080e-01 + sys_corr_110: -1.31946258e+00 + sys_corr_111: 1.55437872e+00 + sys_corr_112: -7.55709640e-01 sys_corr_113: 7.63740245e-01 sys_corr_114: -1.21559465e-03 - sys_corr_115: -6.91865099e-01 - sys_corr_116: -1.13923620e+00 + sys_corr_115: 6.91865099e-01 + sys_corr_116: 1.13923620e+00 sys_corr_117: 8.87876109e-01 - sys_corr_118: -6.71051193e-02 - sys_corr_119: -1.16352694e-02 + sys_corr_118: 6.71051193e-02 + sys_corr_119: 1.16352694e-02 sys_corr_120: 5.38976440e-01 sys_corr_121: 6.24401901e-03 sys_corr_122: -9.71722033e-02 - sys_corr_123: -5.82444200e-03 + sys_corr_123: 5.82444200e-03 sys_corr_124: 4.23896960e-01 - sys_corr_125: 2.87410455e-01 + sys_corr_125: -2.87410455e-01 sys_corr_126: 9.78774116e-03 - sys_corr_127: -5.11908691e+00 - sys_corr_128: -2.13765423e-01 - sys_corr_129: -2.20081053e-01 + sys_corr_127: 5.11908691e+00 + sys_corr_128: 2.13765423e-01 + sys_corr_129: 2.20081053e-01 sys_corr_130: -1.74013596e-02 - sys_corr_131: 3.11364565e-01 - sys_corr_132: -2.52988308e-01 + sys_corr_131: -2.52988308e-01 + sys_corr_132: -3.11364565e-01 stat: 0.0 luminosity: 7.64296940e+01 - sys_corr_1: 3.03395988e+01 @@ -13540,26 +13540,26 @@ bins: sys_corr_4: -3.66714323e+00 sys_corr_5: -9.20134573e+00 sys_corr_6: 7.75910602e+00 - sys_corr_7: 8.76466412e+00 - sys_corr_8: -8.61910889e+00 + sys_corr_7: -8.76466412e+00 + sys_corr_8: 8.61910889e+00 sys_corr_9: 9.79205096e+00 - sys_corr_10: -1.82104604e+00 - sys_corr_11: -9.09120795e+00 - sys_corr_12: -3.06332450e+00 + sys_corr_10: 1.82104604e+00 + sys_corr_11: 9.09120795e+00 + sys_corr_12: 3.06332450e+00 sys_corr_13: -1.06770249e+01 - sys_corr_14: -3.29467811e+00 - sys_corr_15: -9.75516364e+00 - sys_corr_16: -8.62037491e+00 - sys_corr_17: -2.77949427e+00 - sys_corr_18: -4.36870064e+00 - sys_corr_19: -1.04673153e-01 - sys_corr_20: 2.39816831e-01 - sys_corr_21: -5.73707261e-01 - sys_corr_22: 7.86986000e+00 - sys_corr_23: 3.53786670e+00 - sys_corr_24: -4.06139871e+00 - sys_corr_25: 3.82272307e+00 - sys_corr_26: 7.64187745e+00 + sys_corr_14: 3.29467811e+00 + sys_corr_15: 9.75516364e+00 + sys_corr_16: 8.62037491e+00 + sys_corr_17: 2.77949427e+00 + sys_corr_18: 4.36870064e+00 + sys_corr_19: 1.04673153e-01 + sys_corr_20: -2.39816831e-01 + sys_corr_21: 5.73707261e-01 + sys_corr_22: -7.86986000e+00 + sys_corr_23: -3.53786670e+00 + sys_corr_24: 4.06139871e+00 + sys_corr_25: -3.82272307e+00 + sys_corr_26: -7.64187745e+00 sys_corr_27: -4.62075841e+00 sys_corr_28: -1.34570761e+00 sys_corr_29: 4.91081265e+00 @@ -13572,100 +13572,100 @@ bins: sys_corr_36: 2.01229394e-01 sys_corr_37: -1.78994020e+00 sys_corr_38: 5.80716334e-01 - sys_corr_39: 2.38184879e-01 + sys_corr_39: -2.38184879e-01 sys_corr_40: 5.84369279e-01 sys_corr_41: -1.14379910e+00 - sys_corr_42: -2.65622517e-01 + sys_corr_42: 2.65622517e-01 sys_corr_43: 9.60723108e-01 - sys_corr_44: 1.36579208e+00 - sys_corr_45: -4.68709207e-03 - sys_corr_46: -5.74918451e-01 - sys_corr_47: 5.02110433e-01 - sys_corr_48: -2.33965432e+00 + sys_corr_44: -1.36579208e+00 + sys_corr_45: 4.68709207e-03 + sys_corr_46: 5.74918451e-01 + sys_corr_47: -5.02110433e-01 + sys_corr_48: 2.33965432e+00 sys_corr_49: -3.59514681e+00 - sys_corr_50: 3.86073902e-01 - sys_corr_51: 1.01367518e+00 - sys_corr_52: -1.42898126e+00 - sys_corr_53: -5.95838918e-01 - sys_corr_54: -5.09290465e+00 + sys_corr_50: -3.86073902e-01 + sys_corr_51: -1.01367518e+00 + sys_corr_52: 1.42898126e+00 + sys_corr_53: 5.95838918e-01 + sys_corr_54: 5.09290465e+00 sys_corr_55: 2.43038513e+00 sys_corr_56: 1.35052708e+00 - sys_corr_57: 1.82687417e-01 + sys_corr_57: -1.82687417e-01 sys_corr_58: -2.79650811e+00 - sys_corr_59: -1.72491597e+00 + sys_corr_59: 1.72491597e+00 sys_corr_60: -9.27576915e-01 sys_corr_61: -1.83818581e-01 sys_corr_62: 1.52596379e+00 - sys_corr_63: -1.48082934e-01 + sys_corr_63: 1.48082934e-01 sys_corr_64: -1.94600490e+00 sys_corr_65: -3.37344566e+00 - sys_corr_66: -3.52223913e-01 - sys_corr_67: 1.21609664e+00 - sys_corr_68: 9.94343903e-02 - sys_corr_69: 1.74442972e+00 - sys_corr_70: 2.60227309e+00 - sys_corr_71: -7.08653251e+00 - sys_corr_72: -1.48228463e+00 - sys_corr_73: 4.57470199e-01 - sys_corr_74: -1.54752416e+00 - sys_corr_75: 5.70117437e-01 + sys_corr_66: 3.52223913e-01 + sys_corr_67: -1.21609664e+00 + sys_corr_68: -9.94343903e-02 + sys_corr_69: -1.74442972e+00 + sys_corr_70: -2.60227309e+00 + sys_corr_71: 4.57470199e-01 + sys_corr_72: 1.48228463e+00 + sys_corr_73: 7.08653251e+00 + sys_corr_74: 1.54752416e+00 + sys_corr_75: -5.70117437e-01 sys_corr_76: 1.94492840e+00 sys_corr_77: 1.85495719e+00 - sys_corr_78: 3.41458111e+00 + sys_corr_78: 2.30035475e+00 sys_corr_79: 3.91707844e+00 - sys_corr_80: -2.30035475e+00 + sys_corr_80: -3.41458111e+00 sys_corr_81: 3.61217319e+00 - sys_corr_82: -2.51538431e+00 - sys_corr_83: 6.77503693e+00 + sys_corr_82: 6.77503693e+00 + sys_corr_83: 2.51538431e+00 sys_corr_84: 4.50542895e+01 - sys_corr_85: 3.20744448e+01 - sys_corr_86: -3.28068762e+00 + sys_corr_85: -3.20744448e+01 + sys_corr_86: 3.28068762e+00 sys_corr_87: 9.08108853e-01 sys_corr_88: 2.49636701e+00 - sys_corr_89: 1.76644118e+00 - sys_corr_90: -5.27832330e+01 + sys_corr_89: -1.76644118e+00 + sys_corr_90: 5.27832330e+01 sys_corr_91: 1.24220001e+01 - sys_corr_92: 4.17979837e+00 - sys_corr_93: -8.65019727e+01 + sys_corr_92: -4.17979837e+00 + sys_corr_93: -5.89395497e+00 sys_corr_94: 3.24010508e+01 - sys_corr_95: 5.89395497e+00 + sys_corr_95: 8.65019727e+01 sys_corr_96: -7.26164603e+01 sys_corr_97: 6.43213309e+01 sys_corr_98: -1.99299574e+01 sys_corr_99: -9.98619514e+00 - sys_corr_100: 5.40120635e-01 - sys_corr_101: 1.04636971e+00 - sys_corr_102: -1.87725063e+00 - sys_corr_103: 1.37796404e+00 - sys_corr_104: -2.69142421e+00 - sys_corr_105: -1.67322821e+01 - sys_corr_106: -8.21343721e-01 - sys_corr_107: -2.79705273e+00 - sys_corr_108: -7.00625772e-01 - sys_corr_109: 1.54559575e+00 - sys_corr_110: 1.55311623e+00 - sys_corr_111: -2.38657264e+01 - sys_corr_112: 7.76583709e-01 + sys_corr_100: -2.69142421e+00 + sys_corr_101: 1.37796404e+00 + sys_corr_102: 1.67322821e+01 + sys_corr_103: 1.87725063e+00 + sys_corr_104: 1.04636971e+00 + sys_corr_105: 5.40120635e-01 + sys_corr_106: 8.21343721e-01 + sys_corr_107: 2.79705273e+00 + sys_corr_108: 2.38657264e+01 + sys_corr_109: 7.00625772e-01 + sys_corr_110: -1.54559575e+00 + sys_corr_111: 1.55311623e+00 + sys_corr_112: -7.76583709e-01 sys_corr_113: 6.83818443e-01 sys_corr_114: -1.31270328e-03 - sys_corr_115: -7.10719257e-01 - sys_corr_116: -1.11593379e+00 + sys_corr_115: 7.10719257e-01 + sys_corr_116: 1.11593379e+00 sys_corr_117: 9.06990625e-01 - sys_corr_118: -2.37072153e-02 - sys_corr_119: -1.36958034e-02 + sys_corr_118: 2.37072153e-02 + sys_corr_119: 1.36958034e-02 sys_corr_120: 5.51979920e-01 sys_corr_121: 1.14189745e-03 sys_corr_122: -8.10245654e-02 - sys_corr_123: 3.03080536e-03 + sys_corr_123: -3.03080536e-03 sys_corr_124: 7.10525252e-01 - sys_corr_125: 2.66745215e-01 + sys_corr_125: -2.66745215e-01 sys_corr_126: 3.51170062e-03 - sys_corr_127: -2.28210297e+00 - sys_corr_128: -1.47242070e-01 - sys_corr_129: -2.00733957e-01 + sys_corr_127: 2.28210297e+00 + sys_corr_128: 1.47242070e-01 + sys_corr_129: 2.00733957e-01 sys_corr_130: -1.41826537e-02 - sys_corr_131: 3.14474036e-01 - sys_corr_132: -2.03168291e-01 + sys_corr_131: -2.03168291e-01 + sys_corr_132: -3.14474036e-01 stat: 0.0 luminosity: 7.92974160e+01 - sys_corr_1: 2.99939609e+01 @@ -13674,26 +13674,26 @@ bins: sys_corr_4: -1.74392440e+00 sys_corr_5: -9.49883934e+00 sys_corr_6: 6.11903252e+00 - sys_corr_7: -3.84514435e+00 - sys_corr_8: 2.90437078e+00 + sys_corr_7: 3.84514435e+00 + sys_corr_8: -2.90437078e+00 sys_corr_9: 6.96598106e+00 - sys_corr_10: -1.48770613e+01 - sys_corr_11: -9.85081387e+00 - sys_corr_12: -1.12068878e+00 + sys_corr_10: 1.48770613e+01 + sys_corr_11: 9.85081387e+00 + sys_corr_12: 1.12068878e+00 sys_corr_13: -1.05477134e+01 - sys_corr_14: 8.47850524e-01 - sys_corr_15: 1.62407374e+00 - sys_corr_16: 4.94903785e+00 - sys_corr_17: 1.12280937e+00 - sys_corr_18: 2.82060210e+00 - sys_corr_19: -5.58927646e-01 - sys_corr_20: -7.32740522e-01 - sys_corr_21: -1.60433083e+00 - sys_corr_22: 7.78251418e+00 - sys_corr_23: 3.59848028e+00 - sys_corr_24: -2.86188724e-01 - sys_corr_25: 4.06525404e+00 - sys_corr_26: 6.71909407e+00 + sys_corr_14: -8.47850524e-01 + sys_corr_15: -1.62407374e+00 + sys_corr_16: -4.94903785e+00 + sys_corr_17: -1.12280937e+00 + sys_corr_18: -2.82060210e+00 + sys_corr_19: 5.58927646e-01 + sys_corr_20: 7.32740522e-01 + sys_corr_21: 1.60433083e+00 + sys_corr_22: -7.78251418e+00 + sys_corr_23: -3.59848028e+00 + sys_corr_24: 2.86188724e-01 + sys_corr_25: -4.06525404e+00 + sys_corr_26: -6.71909407e+00 sys_corr_27: -3.61536701e+00 sys_corr_28: -1.17674796e+00 sys_corr_29: 4.03603446e+00 @@ -13706,100 +13706,100 @@ bins: sys_corr_36: -8.23700303e-04 sys_corr_37: -1.64073163e+00 sys_corr_38: 1.03840379e+00 - sys_corr_39: 1.24155458e-01 + sys_corr_39: -1.24155458e-01 sys_corr_40: 1.76486493e-01 sys_corr_41: -1.24021955e+00 - sys_corr_42: -3.34198425e-01 + sys_corr_42: 3.34198425e-01 sys_corr_43: 1.17017315e+00 - sys_corr_44: 1.83702205e+00 - sys_corr_45: -4.69707105e-01 - sys_corr_46: -2.80143400e-01 - sys_corr_47: 3.77118724e-01 - sys_corr_48: -2.30640121e+00 + sys_corr_44: -1.83702205e+00 + sys_corr_45: 4.69707105e-01 + sys_corr_46: 2.80143400e-01 + sys_corr_47: -3.77118724e-01 + sys_corr_48: 2.30640121e+00 sys_corr_49: -2.58594936e+00 - sys_corr_50: 2.16226613e-02 - sys_corr_51: 1.25802199e+00 - sys_corr_52: -1.38988793e+00 - sys_corr_53: -6.37663961e-01 - sys_corr_54: -4.24971975e+00 + sys_corr_50: -2.16226613e-02 + sys_corr_51: -1.25802199e+00 + sys_corr_52: 1.38988793e+00 + sys_corr_53: 6.37663961e-01 + sys_corr_54: 4.24971975e+00 sys_corr_55: 2.52888420e+00 sys_corr_56: 1.37483879e+00 - sys_corr_57: -1.27403734e-01 + sys_corr_57: 1.27403734e-01 sys_corr_58: -2.12759633e+00 - sys_corr_59: -1.72542926e+00 + sys_corr_59: 1.72542926e+00 sys_corr_60: -1.85884057e+00 sys_corr_61: 1.45824939e-01 sys_corr_62: 1.72474842e+00 - sys_corr_63: -1.31661527e-01 + sys_corr_63: 1.31661527e-01 sys_corr_64: -2.41965971e+00 sys_corr_65: -3.58808292e+00 - sys_corr_66: 6.12556513e-02 - sys_corr_67: 1.16325338e+00 - sys_corr_68: -1.72104648e-01 - sys_corr_69: 1.83098697e+00 - sys_corr_70: 1.92816017e+00 - sys_corr_71: -7.18789716e+00 - sys_corr_72: -1.61678346e+00 - sys_corr_73: 5.86902227e-01 - sys_corr_74: -1.55544149e+00 - sys_corr_75: 4.80119528e-01 + sys_corr_66: -6.12556513e-02 + sys_corr_67: -1.16325338e+00 + sys_corr_68: 1.72104648e-01 + sys_corr_69: -1.83098697e+00 + sys_corr_70: -1.92816017e+00 + sys_corr_71: 5.86902227e-01 + sys_corr_72: 1.61678346e+00 + sys_corr_73: 7.18789716e+00 + sys_corr_74: 1.55544149e+00 + sys_corr_75: -4.80119528e-01 sys_corr_76: 2.68211338e+00 sys_corr_77: 3.08215610e+00 - sys_corr_78: 3.45209670e+00 + sys_corr_78: 2.80257917e+00 sys_corr_79: 4.15787371e+00 - sys_corr_80: -2.80257917e+00 + sys_corr_80: -3.45209670e+00 sys_corr_81: 4.07841422e+00 - sys_corr_82: -1.73794215e+00 - sys_corr_83: 7.08505659e+00 + sys_corr_82: 7.08505659e+00 + sys_corr_83: 1.73794215e+00 sys_corr_84: 4.86639954e+01 - sys_corr_85: 3.59176175e+01 - sys_corr_86: -3.48953578e+00 + sys_corr_85: -3.59176175e+01 + sys_corr_86: 3.48953578e+00 sys_corr_87: 2.69160922e-01 sys_corr_88: 2.98767824e+00 - sys_corr_89: 2.70487591e+00 - sys_corr_90: -5.83331386e+01 + sys_corr_89: -2.70487591e+00 + sys_corr_90: 5.83331386e+01 sys_corr_91: 1.43103053e+01 - sys_corr_92: 4.82539713e+00 - sys_corr_93: 1.14458734e+02 + sys_corr_92: -4.82539713e+00 + sys_corr_93: 4.14023446e+00 sys_corr_94: -1.09905008e+01 - sys_corr_95: -4.14023446e+00 + sys_corr_95: -1.14458734e+02 sys_corr_96: -6.40549466e+01 sys_corr_97: 1.36602162e+01 sys_corr_98: 3.17438523e+01 sys_corr_99: 1.05796990e+01 - sys_corr_100: -7.84174705e-02 - sys_corr_101: 1.18498120e+00 - sys_corr_102: -1.74302514e+00 - sys_corr_103: 1.56881158e+00 - sys_corr_104: -4.65381225e+00 - sys_corr_105: -9.92135498e+00 - sys_corr_106: -1.75425984e-01 - sys_corr_107: -2.01410235e+00 - sys_corr_108: -4.19918782e-01 - sys_corr_109: 1.36394939e+00 - sys_corr_110: 1.13685791e+00 - sys_corr_111: -2.12528862e+01 - sys_corr_112: 5.38360138e-01 + sys_corr_100: -4.65381225e+00 + sys_corr_101: 1.56881158e+00 + sys_corr_102: 9.92135498e+00 + sys_corr_103: 1.74302514e+00 + sys_corr_104: 1.18498120e+00 + sys_corr_105: -7.84174705e-02 + sys_corr_106: 1.75425984e-01 + sys_corr_107: 2.01410235e+00 + sys_corr_108: 2.12528862e+01 + sys_corr_109: 4.19918782e-01 + sys_corr_110: -1.36394939e+00 + sys_corr_111: 1.13685791e+00 + sys_corr_112: -5.38360138e-01 sys_corr_113: 5.30072185e-01 sys_corr_114: 3.90418198e-04 - sys_corr_115: -5.26217881e-01 - sys_corr_116: 1.04537742e-01 + sys_corr_115: 5.26217881e-01 + sys_corr_116: -1.04537742e-01 sys_corr_117: 7.16561132e-01 - sys_corr_118: -9.80766321e-02 - sys_corr_119: -4.88855216e-03 + sys_corr_118: 9.80766321e-02 + sys_corr_119: 4.88855216e-03 sys_corr_120: 4.70096454e-01 sys_corr_121: 5.93476726e-03 sys_corr_122: -5.41047155e-02 - sys_corr_123: -2.49353408e-02 + sys_corr_123: 2.49353408e-02 sys_corr_124: 1.44785624e+00 - sys_corr_125: 2.81550806e-01 + sys_corr_125: -2.81550806e-01 sys_corr_126: 1.53738164e-02 - sys_corr_127: 4.98912111e+00 - sys_corr_128: -1.03209031e-01 - sys_corr_129: -2.18855814e-02 + sys_corr_127: -4.98912111e+00 + sys_corr_128: 1.03209031e-01 + sys_corr_129: 2.18855814e-02 sys_corr_130: -8.36154269e-03 - sys_corr_131: 3.22406622e-01 - sys_corr_132: -1.27985238e-01 + sys_corr_131: -1.27985238e-01 + sys_corr_132: -3.22406622e-01 stat: 0.0 luminosity: 77.80432 - sys_corr_1: 3.10189341e+01 @@ -13808,26 +13808,26 @@ bins: sys_corr_4: 3.78208094e+00 sys_corr_5: -9.80627733e+00 sys_corr_6: 5.01896226e+00 - sys_corr_7: -1.43379441e+00 - sys_corr_8: -1.27760172e+01 + sys_corr_7: 1.43379441e+00 + sys_corr_8: 1.27760172e+01 sys_corr_9: 9.76375005e-01 - sys_corr_10: 1.78696270e+00 - sys_corr_11: -1.02528027e+01 - sys_corr_12: -7.56183871e+00 + sys_corr_10: -1.78696270e+00 + sys_corr_11: 1.02528027e+01 + sys_corr_12: 7.56183871e+00 sys_corr_13: -4.41443287e+00 - sys_corr_14: 4.35783482e+00 - sys_corr_15: 7.76997280e+00 - sys_corr_16: 6.85785394e+00 - sys_corr_17: 9.74030621e-01 - sys_corr_18: 3.39464516e+00 - sys_corr_19: 5.03833417e-01 - sys_corr_20: -1.36723036e+00 - sys_corr_21: -2.27424036e+00 - sys_corr_22: 7.79115894e+00 - sys_corr_23: 4.45490568e+00 - sys_corr_24: -4.23061927e-01 - sys_corr_25: 4.06837376e+00 - sys_corr_26: 6.46593635e+00 + sys_corr_14: -4.35783482e+00 + sys_corr_15: -7.76997280e+00 + sys_corr_16: -6.85785394e+00 + sys_corr_17: -9.74030621e-01 + sys_corr_18: -3.39464516e+00 + sys_corr_19: -5.03833417e-01 + sys_corr_20: 1.36723036e+00 + sys_corr_21: 2.27424036e+00 + sys_corr_22: -7.79115894e+00 + sys_corr_23: -4.45490568e+00 + sys_corr_24: 4.23061927e-01 + sys_corr_25: -4.06837376e+00 + sys_corr_26: -6.46593635e+00 sys_corr_27: -1.84413743e+00 sys_corr_28: -5.66597819e-01 sys_corr_29: 2.94005709e+00 @@ -13840,100 +13840,100 @@ bins: sys_corr_36: 8.05443433e-01 sys_corr_37: -1.60715977e+00 sys_corr_38: 9.66611399e-01 - sys_corr_39: -2.32857434e-01 + sys_corr_39: 2.32857434e-01 sys_corr_40: 2.91824977e-01 sys_corr_41: -1.07105065e+00 - sys_corr_42: -7.58824418e-01 + sys_corr_42: 7.58824418e-01 sys_corr_43: 9.29889614e-01 - sys_corr_44: 1.51066243e+00 - sys_corr_45: -5.75236385e-01 - sys_corr_46: -4.67461224e-01 - sys_corr_47: 6.28607611e-01 - sys_corr_48: -2.48699851e+00 + sys_corr_44: -1.51066243e+00 + sys_corr_45: 5.75236385e-01 + sys_corr_46: 4.67461224e-01 + sys_corr_47: -6.28607611e-01 + sys_corr_48: 2.48699851e+00 sys_corr_49: -3.24020050e+00 - sys_corr_50: 7.74167311e-01 - sys_corr_51: 7.02255884e-01 - sys_corr_52: -1.14704451e+00 - sys_corr_53: -1.52250642e-01 - sys_corr_54: -3.98129559e+00 + sys_corr_50: -7.74167311e-01 + sys_corr_51: -7.02255884e-01 + sys_corr_52: 1.14704451e+00 + sys_corr_53: 1.52250642e-01 + sys_corr_54: 3.98129559e+00 sys_corr_55: 2.44153062e+00 sys_corr_56: 1.68338889e+00 - sys_corr_57: -4.96363600e-01 + sys_corr_57: 4.96363600e-01 sys_corr_58: -2.89165127e+00 - sys_corr_59: -1.56292924e+00 + sys_corr_59: 1.56292924e+00 sys_corr_60: -6.87391016e-01 sys_corr_61: -7.12219273e-02 sys_corr_62: 1.50728883e+00 - sys_corr_63: -1.90399981e-02 + sys_corr_63: 1.90399981e-02 sys_corr_64: -2.15272166e+00 sys_corr_65: -3.69193841e+00 - sys_corr_66: 4.05105046e-01 - sys_corr_67: 7.94489581e-01 - sys_corr_68: 1.80830645e-02 - sys_corr_69: 5.44812310e-01 - sys_corr_70: 1.36120797e+00 - sys_corr_71: -6.66280379e+00 - sys_corr_72: -1.77151655e+00 - sys_corr_73: 1.20439581e+00 - sys_corr_74: -1.73706184e+00 - sys_corr_75: -2.69842669e-01 + sys_corr_66: -4.05105046e-01 + sys_corr_67: -7.94489581e-01 + sys_corr_68: -1.80830645e-02 + sys_corr_69: -5.44812310e-01 + sys_corr_70: -1.36120797e+00 + sys_corr_71: 1.20439581e+00 + sys_corr_72: 1.77151655e+00 + sys_corr_73: 6.66280379e+00 + sys_corr_74: 1.73706184e+00 + sys_corr_75: 2.69842669e-01 sys_corr_76: 2.88045028e+00 sys_corr_77: 3.37733370e+00 - sys_corr_78: 4.05730723e+00 + sys_corr_78: 3.31855162e+00 sys_corr_79: 3.78883688e+00 - sys_corr_80: -3.31855162e+00 + sys_corr_80: -4.05730723e+00 sys_corr_81: 3.28852151e+00 - sys_corr_82: -1.79040851e+00 - sys_corr_83: 6.97668499e+00 + sys_corr_82: 6.97668499e+00 + sys_corr_83: 1.79040851e+00 sys_corr_84: 4.20959518e+01 - sys_corr_85: 3.18514482e+01 - sys_corr_86: -3.31409477e+00 + sys_corr_85: -3.18514482e+01 + sys_corr_86: 3.31409477e+00 sys_corr_87: 8.92661298e-01 sys_corr_88: 2.38411797e+00 - sys_corr_89: 2.79324199e+00 - sys_corr_90: -5.07108998e+01 + sys_corr_89: -2.79324199e+00 + sys_corr_90: 5.07108998e+01 sys_corr_91: 1.05872440e+01 - sys_corr_92: 4.35404954e+00 - sys_corr_93: -4.90816170e+01 + sys_corr_92: -4.35404954e+00 + sys_corr_93: -4.72882277e+00 sys_corr_94: 1.34885012e+01 - sys_corr_95: 4.72882277e+00 + sys_corr_95: 4.90816170e+01 sys_corr_96: 3.40537775e+01 sys_corr_97: -3.93633223e+01 sys_corr_98: 1.00714586e+02 sys_corr_99: 3.85012438e+01 - sys_corr_100: -6.79848019e-01 - sys_corr_101: 1.71043119e+00 - sys_corr_102: -2.65599471e+00 - sys_corr_103: -3.54712898e+00 - sys_corr_104: -7.29332676e+00 - sys_corr_105: 5.16550118e+00 - sys_corr_106: 4.68915673e-01 - sys_corr_107: -1.82453697e+00 - sys_corr_108: -2.46746204e-01 - sys_corr_109: 1.50242735e+00 - sys_corr_110: 1.40339186e+00 - sys_corr_111: -8.37765436e+00 - sys_corr_112: 4.34658305e-01 + sys_corr_100: -7.29332676e+00 + sys_corr_101: -3.54712898e+00 + sys_corr_102: -5.16550118e+00 + sys_corr_103: 2.65599471e+00 + sys_corr_104: 1.71043119e+00 + sys_corr_105: -6.79848019e-01 + sys_corr_106: -4.68915673e-01 + sys_corr_107: 1.82453697e+00 + sys_corr_108: 8.37765436e+00 + sys_corr_109: 2.46746204e-01 + sys_corr_110: -1.50242735e+00 + sys_corr_111: 1.40339186e+00 + sys_corr_112: -4.34658305e-01 sys_corr_113: 5.62689747e-01 sys_corr_114: 8.58784185e-04 - sys_corr_115: -6.75251899e-01 - sys_corr_116: -5.09943534e-02 + sys_corr_115: 6.75251899e-01 + sys_corr_116: 5.09943534e-02 sys_corr_117: 7.99682870e-01 - sys_corr_118: -1.74997610e-01 - sys_corr_119: -3.83449172e-03 + sys_corr_118: 1.74997610e-01 + sys_corr_119: 3.83449172e-03 sys_corr_120: 5.46913392e-01 sys_corr_121: 5.47770947e-03 sys_corr_122: -5.51012257e-02 - sys_corr_123: -2.73583404e-02 + sys_corr_123: 2.73583404e-02 sys_corr_124: 1.56152683e+00 - sys_corr_125: 2.21282677e-01 + sys_corr_125: -2.21282677e-01 sys_corr_126: 1.01569351e-02 - sys_corr_127: 3.10643118e+01 - sys_corr_128: -1.80990550e-01 - sys_corr_129: -2.42220497e-02 + sys_corr_127: -3.10643118e+01 + sys_corr_128: 1.80990550e-01 + sys_corr_129: 2.42220497e-02 sys_corr_130: 4.85086263e-04 - sys_corr_131: 2.93318739e-01 - sys_corr_132: -9.87053343e-02 + sys_corr_131: -9.87053343e-02 + sys_corr_132: -2.93318739e-01 stat: 0.0 luminosity: 7.74941640e+01 - sys_corr_1: 2.95195265e+01 @@ -13942,26 +13942,26 @@ bins: sys_corr_4: 8.12728824e+00 sys_corr_5: -9.83258269e+00 sys_corr_6: 2.96681228e+00 - sys_corr_7: -7.62197194e+00 - sys_corr_8: -1.87180489e-01 + sys_corr_7: 7.62197194e+00 + sys_corr_8: 1.87180489e-01 sys_corr_9: 9.46519825e+00 - sys_corr_10: 1.09774239e+00 - sys_corr_11: -1.71372615e+00 - sys_corr_12: -8.36431080e+00 + sys_corr_10: -1.09774239e+00 + sys_corr_11: 1.71372615e+00 + sys_corr_12: 8.36431080e+00 sys_corr_13: 5.77320793e+00 - sys_corr_14: -3.64223632e-01 - sys_corr_15: -1.16520998e+01 - sys_corr_16: 1.78647313e+00 - sys_corr_17: 2.92953316e-01 - sys_corr_18: 2.56031507e+00 - sys_corr_19: 2.63879173e-02 - sys_corr_20: -6.06607883e-01 - sys_corr_21: -1.34173416e+00 - sys_corr_22: 6.62818091e+00 - sys_corr_23: 4.80876416e+00 - sys_corr_24: -1.35911812e+00 - sys_corr_25: 2.51932696e+00 - sys_corr_26: 6.31715338e+00 + sys_corr_14: 3.64223632e-01 + sys_corr_15: 1.16520998e+01 + sys_corr_16: -1.78647313e+00 + sys_corr_17: -2.92953316e-01 + sys_corr_18: -2.56031507e+00 + sys_corr_19: -2.63879173e-02 + sys_corr_20: 6.06607883e-01 + sys_corr_21: 1.34173416e+00 + sys_corr_22: -6.62818091e+00 + sys_corr_23: -4.80876416e+00 + sys_corr_24: 1.35911812e+00 + sys_corr_25: -2.51932696e+00 + sys_corr_26: -6.31715338e+00 sys_corr_27: 1.62422943e-01 sys_corr_28: -6.95496569e-01 sys_corr_29: 1.93953801e+00 @@ -13974,100 +13974,100 @@ bins: sys_corr_36: 6.83907756e-01 sys_corr_37: -1.45111185e+00 sys_corr_38: 1.26698536e+00 - sys_corr_39: -7.57782885e-01 + sys_corr_39: 7.57782885e-01 sys_corr_40: -3.33725093e-01 sys_corr_41: -8.34461715e-01 - sys_corr_42: -1.20413588e+00 + sys_corr_42: 1.20413588e+00 sys_corr_43: 8.11470068e-01 - sys_corr_44: 8.65145378e-01 - sys_corr_45: -4.53301067e-01 - sys_corr_46: 7.76515681e-02 - sys_corr_47: -4.50885788e-02 - sys_corr_48: -1.37309819e+00 + sys_corr_44: -8.65145378e-01 + sys_corr_45: 4.53301067e-01 + sys_corr_46: -7.76515681e-02 + sys_corr_47: 4.50885788e-02 + sys_corr_48: 1.37309819e+00 sys_corr_49: -2.60904482e+00 - sys_corr_50: 5.65784177e-01 - sys_corr_51: 2.25553197e-01 - sys_corr_52: -8.30194173e-01 - sys_corr_53: -3.44210346e-01 - sys_corr_54: -3.47442154e+00 + sys_corr_50: -5.65784177e-01 + sys_corr_51: -2.25553197e-01 + sys_corr_52: 8.30194173e-01 + sys_corr_53: 3.44210346e-01 + sys_corr_54: 3.47442154e+00 sys_corr_55: 1.95302934e+00 sys_corr_56: 1.45328624e+00 - sys_corr_57: -4.52839669e-01 + sys_corr_57: 4.52839669e-01 sys_corr_58: -2.00474032e+00 - sys_corr_59: -1.06280045e+00 + sys_corr_59: 1.06280045e+00 sys_corr_60: -6.46350471e-01 sys_corr_61: -6.14961497e-01 sys_corr_62: 1.22173757e+00 - sys_corr_63: -5.78006925e-01 + sys_corr_63: 5.78006925e-01 sys_corr_64: -1.79263288e+00 sys_corr_65: -3.07836407e+00 - sys_corr_66: -3.97657292e-01 - sys_corr_67: 1.14329262e+00 - sys_corr_68: 5.26384132e-03 - sys_corr_69: 7.27138993e-01 - sys_corr_70: 1.01729794e+00 - sys_corr_71: -4.84547913e+00 - sys_corr_72: -1.21868436e+00 - sys_corr_73: 7.80707868e-01 - sys_corr_74: -1.60227485e+00 - sys_corr_75: 2.55492267e-01 + sys_corr_66: 3.97657292e-01 + sys_corr_67: -1.14329262e+00 + sys_corr_68: -5.26384132e-03 + sys_corr_69: -7.27138993e-01 + sys_corr_70: -1.01729794e+00 + sys_corr_71: 7.80707868e-01 + sys_corr_72: 1.21868436e+00 + sys_corr_73: 4.84547913e+00 + sys_corr_74: 1.60227485e+00 + sys_corr_75: -2.55492267e-01 sys_corr_76: 2.07021694e+00 sys_corr_77: 2.20141057e+00 - sys_corr_78: 2.93443505e+00 + sys_corr_78: 2.70028335e+00 sys_corr_79: 2.69227366e+00 - sys_corr_80: -2.70028335e+00 + sys_corr_80: -2.93443505e+00 sys_corr_81: 2.90805814e+00 - sys_corr_82: -3.22202272e-02 - sys_corr_83: 5.80625306e+00 + sys_corr_82: 5.80625306e+00 + sys_corr_83: 3.22202272e-02 sys_corr_84: 3.28262850e+01 - sys_corr_85: 2.31199468e+01 - sys_corr_86: -3.25026046e+00 + sys_corr_85: -2.31199468e+01 + sys_corr_86: 3.25026046e+00 sys_corr_87: 8.70363984e-01 sys_corr_88: 2.33139781e+00 - sys_corr_89: 2.69491256e+00 - sys_corr_90: -3.67825893e+01 + sys_corr_89: -2.69491256e+00 + sys_corr_90: 3.67825893e+01 sys_corr_91: 7.00959012e+00 - sys_corr_92: 4.16051138e+00 - sys_corr_93: 3.60891706e+00 + sys_corr_92: -4.16051138e+00 + sys_corr_93: -5.50885376e-01 sys_corr_94: -1.38609394e+00 - sys_corr_95: 5.50885376e-01 + sys_corr_95: -3.60891706e+00 sys_corr_96: -8.85889167e+00 sys_corr_97: -2.86961229e-01 sys_corr_98: -4.57881964e+01 sys_corr_99: 1.09410594e+01 - sys_corr_100: -1.40642776e+00 - sys_corr_101: 3.31700689e+00 - sys_corr_102: -2.67701128e+00 - sys_corr_103: -1.66767699e+01 - sys_corr_104: 5.56119721e+00 - sys_corr_105: 6.10817239e+01 - sys_corr_106: 1.84504609e+00 - sys_corr_107: -1.90815959e+00 - sys_corr_108: -7.05838864e-02 - sys_corr_109: 1.90086859e+00 - sys_corr_110: 1.82138469e+00 - sys_corr_111: 7.03147130e+01 - sys_corr_112: 2.83285467e-01 + sys_corr_100: 5.56119721e+00 + sys_corr_101: -1.66767699e+01 + sys_corr_102: -6.10817239e+01 + sys_corr_103: 2.67701128e+00 + sys_corr_104: 3.31700689e+00 + sys_corr_105: -1.40642776e+00 + sys_corr_106: -1.84504609e+00 + sys_corr_107: 1.90815959e+00 + sys_corr_108: -7.03147130e+01 + sys_corr_109: 7.05838864e-02 + sys_corr_110: -1.90086859e+00 + sys_corr_111: 1.82138469e+00 + sys_corr_112: -2.83285467e-01 sys_corr_113: 1.92866087e-01 sys_corr_114: 3.49619199e-03 - sys_corr_115: -8.89917367e-01 - sys_corr_116: -1.05391436e+00 + sys_corr_115: 8.89917367e-01 + sys_corr_116: 1.05391436e+00 sys_corr_117: -1.23640201e-01 - sys_corr_118: -2.96649145e-01 - sys_corr_119: 4.52770666e-04 + sys_corr_118: 2.96649145e-01 + sys_corr_119: -4.52770666e-04 sys_corr_120: 3.93489780e-01 sys_corr_121: 2.92343481e-03 sys_corr_122: -7.33823976e-02 - sys_corr_123: -1.55609269e-02 + sys_corr_123: 1.55609269e-02 sys_corr_124: 1.43850855e+00 - sys_corr_125: 2.24430198e-01 + sys_corr_125: -2.24430198e-01 sys_corr_126: 3.64980308e-03 - sys_corr_127: 7.35936811e+01 - sys_corr_128: -5.41796314e-01 - sys_corr_129: 5.46248255e-02 + sys_corr_127: -7.35936811e+01 + sys_corr_128: 5.41796314e-01 + sys_corr_129: -5.46248255e-02 sys_corr_130: 8.87299812e-03 - sys_corr_131: 2.80722089e-01 - sys_corr_132: 8.95309476e-02 + sys_corr_131: 8.95309476e-02 + sys_corr_132: -2.80722089e-01 stat: 0.0 luminosity: 74.42028 - sys_corr_1: 3.15172638e+01 @@ -14076,26 +14076,26 @@ bins: sys_corr_4: 1.82016258e+01 sys_corr_5: -8.23244080e+00 sys_corr_6: 3.82560990e+00 - sys_corr_7: -3.98356159e+00 - sys_corr_8: -1.50977394e+00 + sys_corr_7: 3.98356159e+00 + sys_corr_8: 1.50977394e+00 sys_corr_9: 1.54000047e+01 - sys_corr_10: 3.06127605e+00 - sys_corr_11: -2.77195441e+00 - sys_corr_12: -5.64675316e+00 + sys_corr_10: -3.06127605e+00 + sys_corr_11: 2.77195441e+00 + sys_corr_12: 5.64675316e+00 sys_corr_13: -6.18120135e+00 - sys_corr_14: 3.83032203e+00 - sys_corr_15: 1.30217188e+01 - sys_corr_16: -7.39097268e+00 - sys_corr_17: -4.40631003e+00 - sys_corr_18: -9.76757578e+00 - sys_corr_19: 2.76022783e+00 - sys_corr_20: -3.20172358e+00 - sys_corr_21: -1.13535370e+00 - sys_corr_22: 5.46561860e+00 - sys_corr_23: 4.85630064e+00 - sys_corr_24: -1.37316380e+00 - sys_corr_25: 4.91833222e-01 - sys_corr_26: 2.07883858e+00 + sys_corr_14: -3.83032203e+00 + sys_corr_15: -1.30217188e+01 + sys_corr_16: 7.39097268e+00 + sys_corr_17: 4.40631003e+00 + sys_corr_18: 9.76757578e+00 + sys_corr_19: -2.76022783e+00 + sys_corr_20: 3.20172358e+00 + sys_corr_21: 1.13535370e+00 + sys_corr_22: -5.46561860e+00 + sys_corr_23: -4.85630064e+00 + sys_corr_24: 1.37316380e+00 + sys_corr_25: -4.91833222e-01 + sys_corr_26: -2.07883858e+00 sys_corr_27: 1.95428800e+00 sys_corr_28: 9.50681619e-01 sys_corr_29: -1.51338560e+00 @@ -14108,100 +14108,100 @@ bins: sys_corr_36: -6.08828186e-02 sys_corr_37: -8.39570520e-01 sys_corr_38: 1.20912377e+00 - sys_corr_39: -3.99618310e-01 + sys_corr_39: 3.99618310e-01 sys_corr_40: -6.88491596e-01 sys_corr_41: -2.00748093e+00 - sys_corr_42: -1.22922388e+00 + sys_corr_42: 1.22922388e+00 sys_corr_43: 2.20179923e+00 - sys_corr_44: 3.72761152e-02 - sys_corr_45: 7.00248422e-01 - sys_corr_46: -1.09093532e-01 - sys_corr_47: 8.64415746e-01 - sys_corr_48: 5.49231238e-01 + sys_corr_44: -3.72761152e-02 + sys_corr_45: -7.00248422e-01 + sys_corr_46: 1.09093532e-01 + sys_corr_47: -8.64415746e-01 + sys_corr_48: -5.49231238e-01 sys_corr_49: -1.37640210e+00 - sys_corr_50: 9.40779792e-01 - sys_corr_51: 7.07461346e-01 - sys_corr_52: 1.40919005e-01 - sys_corr_53: 8.99289344e-01 - sys_corr_54: -2.76613692e+00 + sys_corr_50: -9.40779792e-01 + sys_corr_51: -7.07461346e-01 + sys_corr_52: -1.40919005e-01 + sys_corr_53: -8.99289344e-01 + sys_corr_54: 2.76613692e+00 sys_corr_55: 1.25964003e+00 sys_corr_56: 1.10334117e+00 - sys_corr_57: -1.23895293e+00 + sys_corr_57: 1.23895293e+00 sys_corr_58: -1.80552191e+00 - sys_corr_59: -1.02731751e+00 + sys_corr_59: 1.02731751e+00 sys_corr_60: -3.42750891e-02 sys_corr_61: -3.92398122e-01 sys_corr_62: 1.88067087e+00 - sys_corr_63: 5.02107410e-02 + sys_corr_63: -5.02107410e-02 sys_corr_64: -1.65609229e+00 sys_corr_65: -2.40775409e+00 - sys_corr_66: -2.60882257e-01 - sys_corr_67: 6.30295317e-01 - sys_corr_68: 5.57700106e-01 - sys_corr_69: 1.38224161e+00 - sys_corr_70: 3.85064770e-01 - sys_corr_71: -5.03669183e+00 - sys_corr_72: -1.67065583e+00 - sys_corr_73: 5.10395184e-01 - sys_corr_74: -1.25679274e+00 - sys_corr_75: -1.94681761e+00 + sys_corr_66: 2.60882257e-01 + sys_corr_67: -6.30295317e-01 + sys_corr_68: -5.57700106e-01 + sys_corr_69: -1.38224161e+00 + sys_corr_70: -3.85064770e-01 + sys_corr_71: 5.10395184e-01 + sys_corr_72: 1.67065583e+00 + sys_corr_73: 5.03669183e+00 + sys_corr_74: 1.25679274e+00 + sys_corr_75: 1.94681761e+00 sys_corr_76: 2.42388413e+00 sys_corr_77: 3.16001939e+00 - sys_corr_78: 2.83300972e+00 + sys_corr_78: 3.75199432e+00 sys_corr_79: 2.65224216e+00 - sys_corr_80: -3.75199432e+00 + sys_corr_80: -2.83300972e+00 sys_corr_81: 3.78231714e+00 - sys_corr_82: -6.93670832e-01 - sys_corr_83: 6.84876522e+00 + sys_corr_82: 6.84876522e+00 + sys_corr_83: 6.93670832e-01 sys_corr_84: 3.41878487e+01 - sys_corr_85: 2.37365597e+01 - sys_corr_86: -2.82931309e+00 + sys_corr_85: -2.37365597e+01 + sys_corr_86: 2.82931309e+00 sys_corr_87: 6.52151363e-01 sys_corr_88: 1.93177375e+00 - sys_corr_89: 3.55078015e+00 - sys_corr_90: -3.79604446e+01 + sys_corr_89: -3.55078015e+00 + sys_corr_90: 3.79604446e+01 sys_corr_91: 5.36917375e+00 - sys_corr_92: 4.51378675e+00 - sys_corr_93: -3.98949801e+00 + sys_corr_92: -4.51378675e+00 + sys_corr_93: -1.46627225e+00 sys_corr_94: -2.36023374e+00 - sys_corr_95: 1.46627225e+00 + sys_corr_95: 3.98949801e+00 sys_corr_96: 2.23475988e+00 sys_corr_97: -1.73512705e+01 sys_corr_98: 2.61273436e+01 sys_corr_99: -8.01889228e+01 - sys_corr_100: -2.87794750e+00 - sys_corr_101: 3.18498191e+00 - sys_corr_102: 3.61039170e+00 - sys_corr_103: -1.68343378e+01 - sys_corr_104: 1.30072452e+01 - sys_corr_105: 5.67449177e+01 - sys_corr_106: 1.49162072e+00 - sys_corr_107: -2.00901717e+00 - sys_corr_108: -1.43744106e-02 - sys_corr_109: 8.39550605e-01 - sys_corr_110: 1.55238749e+00 - sys_corr_111: 2.41714029e+01 - sys_corr_112: 1.84109983e-01 + sys_corr_100: 1.30072452e+01 + sys_corr_101: -1.68343378e+01 + sys_corr_102: -5.67449177e+01 + sys_corr_103: -3.61039170e+00 + sys_corr_104: 3.18498191e+00 + sys_corr_105: -2.87794750e+00 + sys_corr_106: -1.49162072e+00 + sys_corr_107: 2.00901717e+00 + sys_corr_108: -2.41714029e+01 + sys_corr_109: 1.43744106e-02 + sys_corr_110: -8.39550605e-01 + sys_corr_111: 1.55238749e+00 + sys_corr_112: -1.84109983e-01 sys_corr_113: 1.41330059e-01 sys_corr_114: 6.33445946e-03 - sys_corr_115: -8.17906365e-01 - sys_corr_116: -8.74264232e-01 + sys_corr_115: 8.17906365e-01 + sys_corr_116: 8.74264232e-01 sys_corr_117: -1.98229043e-01 - sys_corr_118: -2.73590486e-01 - sys_corr_119: 4.99821229e-03 + sys_corr_118: 2.73590486e-01 + sys_corr_119: -4.99821229e-03 sys_corr_120: 3.31329175e-01 sys_corr_121: 3.53097802e-03 sys_corr_122: -7.75919241e-02 - sys_corr_123: -8.32382895e-03 + sys_corr_123: 8.32382895e-03 sys_corr_124: 1.32137089e+00 - sys_corr_125: 2.08859312e-01 + sys_corr_125: -2.08859312e-01 sys_corr_126: -4.72448044e-03 - sys_corr_127: -7.22241156e+01 - sys_corr_128: -3.67366542e-01 - sys_corr_129: 4.05140055e-02 + sys_corr_127: 7.22241156e+01 + sys_corr_128: 3.67366542e-01 + sys_corr_129: -4.05140055e-02 sys_corr_130: 1.99472118e-02 - sys_corr_131: 2.55616407e-01 - sys_corr_132: 2.17454568e-01 + sys_corr_131: 2.17454568e-01 + sys_corr_132: -2.55616407e-01 stat: 0.0 luminosity: 7.74753540e+01 - sys_corr_1: 2.97957075e+01 @@ -14210,26 +14210,26 @@ bins: sys_corr_4: 2.20392143e+01 sys_corr_5: -3.78865763e+00 sys_corr_6: 3.98851196e+00 - sys_corr_7: 4.89361271e-01 - sys_corr_8: -7.29333984e+00 + sys_corr_7: -4.89361271e-01 + sys_corr_8: 7.29333984e+00 sys_corr_9: 9.08921459e+00 - sys_corr_10: -4.83873860e-01 - sys_corr_11: -7.86266029e-01 - sys_corr_12: 6.55802812e+00 + sys_corr_10: 4.83873860e-01 + sys_corr_11: 7.86266029e-01 + sys_corr_12: -6.55802812e+00 sys_corr_13: -8.15741081e+00 - sys_corr_14: -6.74761633e+00 - sys_corr_15: -2.49089691e+00 - sys_corr_16: 1.27410033e+01 - sys_corr_17: 2.96301002e+00 - sys_corr_18: 1.13311872e+01 - sys_corr_19: 2.08023565e+00 - sys_corr_20: -1.67465143e+00 - sys_corr_21: -3.99353318e+00 - sys_corr_22: 3.13382726e+00 - sys_corr_23: 4.20805637e+00 - sys_corr_24: 1.79175453e+00 - sys_corr_25: 6.53395936e-01 - sys_corr_26: -1.23257114e-01 + sys_corr_14: 6.74761633e+00 + sys_corr_15: 2.49089691e+00 + sys_corr_16: -1.27410033e+01 + sys_corr_17: -2.96301002e+00 + sys_corr_18: -1.13311872e+01 + sys_corr_19: -2.08023565e+00 + sys_corr_20: 1.67465143e+00 + sys_corr_21: 3.99353318e+00 + sys_corr_22: -3.13382726e+00 + sys_corr_23: -4.20805637e+00 + sys_corr_24: -1.79175453e+00 + sys_corr_25: -6.53395936e-01 + sys_corr_26: 1.23257114e-01 sys_corr_27: 3.03585774e+00 sys_corr_28: 2.13983410e+00 sys_corr_29: -3.93916255e+00 @@ -14242,100 +14242,100 @@ bins: sys_corr_36: 7.76483340e-01 sys_corr_37: -1.37301554e+00 sys_corr_38: 6.94938700e-01 - sys_corr_39: -3.01790010e+00 + sys_corr_39: 3.01790010e+00 sys_corr_40: 2.04818342e-02 sys_corr_41: -1.14412667e+00 - sys_corr_42: -1.69181855e+00 + sys_corr_42: 1.69181855e+00 sys_corr_43: -9.12683301e-01 - sys_corr_44: 2.09054938e+00 - sys_corr_45: -1.03149024e+00 - sys_corr_46: -4.20490286e-01 - sys_corr_47: -1.16854297e+00 - sys_corr_48: -1.65105400e+00 + sys_corr_44: -2.09054938e+00 + sys_corr_45: 1.03149024e+00 + sys_corr_46: 4.20490286e-01 + sys_corr_47: 1.16854297e+00 + sys_corr_48: 1.65105400e+00 sys_corr_49: 1.30208954e+00 - sys_corr_50: 3.62066297e-01 - sys_corr_51: 2.35862537e-01 - sys_corr_52: -7.78612784e-01 - sys_corr_53: -1.93676234e-01 - sys_corr_54: -1.46938952e+00 + sys_corr_50: -3.62066297e-01 + sys_corr_51: -2.35862537e-01 + sys_corr_52: 7.78612784e-01 + sys_corr_53: 1.93676234e-01 + sys_corr_54: 1.46938952e+00 sys_corr_55: 1.50061292e+00 sys_corr_56: 2.59340615e-01 - sys_corr_57: -1.91119425e+00 + sys_corr_57: 1.91119425e+00 sys_corr_58: -2.44383915e+00 - sys_corr_59: -1.40867416e+00 + sys_corr_59: 1.40867416e+00 sys_corr_60: 8.14667058e-03 sys_corr_61: -2.70814851e-01 sys_corr_62: 2.98643758e+00 - sys_corr_63: 3.43858218e-01 + sys_corr_63: -3.43858218e-01 sys_corr_64: -1.53234415e+00 sys_corr_65: -1.22139433e+00 - sys_corr_66: 2.82260639e-01 - sys_corr_67: 2.56944769e-01 - sys_corr_68: -3.04103509e-01 - sys_corr_69: 2.21263748e+00 - sys_corr_70: 5.31416055e-02 - sys_corr_71: -3.51244908e+00 - sys_corr_72: -1.32680830e+00 - sys_corr_73: 7.64155208e-01 - sys_corr_74: -1.15406835e+00 - sys_corr_75: -2.25848958e+00 + sys_corr_66: -2.82260639e-01 + sys_corr_67: -2.56944769e-01 + sys_corr_68: 3.04103509e-01 + sys_corr_69: -2.21263748e+00 + sys_corr_70: -5.31416055e-02 + sys_corr_71: 7.64155208e-01 + sys_corr_72: 1.32680830e+00 + sys_corr_73: 3.51244908e+00 + sys_corr_74: 1.15406835e+00 + sys_corr_75: 2.25848958e+00 sys_corr_76: 3.72470569e+00 sys_corr_77: 4.43482704e+00 - sys_corr_78: 3.31347377e+00 + sys_corr_78: 3.56794017e+00 sys_corr_79: 2.30221790e+00 - sys_corr_80: -3.56794017e+00 + sys_corr_80: -3.31347377e+00 sys_corr_81: 3.72023262e+00 - sys_corr_82: 4.88965798e-01 - sys_corr_83: 6.41896079e+00 + sys_corr_82: 6.41896079e+00 + sys_corr_83: -4.88965798e-01 sys_corr_84: 3.09717899e+01 - sys_corr_85: 2.64024374e+01 - sys_corr_86: -3.69468702e+00 + sys_corr_85: -2.64024374e+01 + sys_corr_86: 3.69468702e+00 sys_corr_87: -9.55252502e-01 sys_corr_88: 2.83464586e+00 - sys_corr_89: 3.81924195e+00 - sys_corr_90: -3.70749132e+01 + sys_corr_89: -3.81924195e+00 + sys_corr_90: 3.70749132e+01 sys_corr_91: 5.43620288e+00 - sys_corr_92: 4.03481885e+00 - sys_corr_93: -1.06033457e+01 + sys_corr_92: -4.03481885e+00 + sys_corr_93: -2.62058172e+00 sys_corr_94: -1.07606863e+01 - sys_corr_95: 2.62058172e+00 + sys_corr_95: 1.06033457e+01 sys_corr_96: -6.81373941e+00 sys_corr_97: -5.64074452e+01 sys_corr_98: -5.54348796e+01 sys_corr_99: 8.37997373e+01 - sys_corr_100: -1.46785571e+00 - sys_corr_101: -9.99352713e-01 - sys_corr_102: 1.68286943e+01 - sys_corr_103: 1.91013776e+00 - sys_corr_104: 3.65014682e+00 - sys_corr_105: 9.39295495e+00 - sys_corr_106: 1.01057842e+00 - sys_corr_107: -4.43383917e-01 - sys_corr_108: 5.18800922e-01 - sys_corr_109: 1.41922717e+00 - sys_corr_110: 4.47826447e-01 - sys_corr_111: -5.35637343e+00 - sys_corr_112: -1.56389337e-01 + sys_corr_100: 3.65014682e+00 + sys_corr_101: 1.91013776e+00 + sys_corr_102: -9.39295495e+00 + sys_corr_103: -1.68286943e+01 + sys_corr_104: -9.99352713e-01 + sys_corr_105: -1.46785571e+00 + sys_corr_106: -1.01057842e+00 + sys_corr_107: 4.43383917e-01 + sys_corr_108: 5.35637343e+00 + sys_corr_109: -5.18800922e-01 + sys_corr_110: -1.41922717e+00 + sys_corr_111: 4.47826447e-01 + sys_corr_112: 1.56389337e-01 sys_corr_113: -6.11870953e-02 sys_corr_114: 6.89802652e-03 - sys_corr_115: -8.00674173e-01 - sys_corr_116: -3.62187996e-01 + sys_corr_115: 8.00674173e-01 + sys_corr_116: 3.62187996e-01 sys_corr_117: 2.73076797e-01 - sys_corr_118: -3.17298003e-01 - sys_corr_119: 5.84402583e-03 + sys_corr_118: 3.17298003e-01 + sys_corr_119: -5.84402583e-03 sys_corr_120: -6.18879856e-01 sys_corr_121: -1.70142882e-04 sys_corr_122: -1.02794894e-01 - sys_corr_123: 1.34450165e-02 + sys_corr_123: -1.34450165e-02 sys_corr_124: 7.84432261e-01 - sys_corr_125: 1.78913068e-01 + sys_corr_125: -1.78913068e-01 sys_corr_126: -1.43468932e-02 - sys_corr_127: -6.36882677e+01 - sys_corr_128: -5.66706421e-01 - sys_corr_129: 1.56489367e-01 + sys_corr_127: 6.36882677e+01 + sys_corr_128: 5.66706421e-01 + sys_corr_129: -1.56489367e-01 sys_corr_130: 1.32477306e-02 - sys_corr_131: 1.15000076e-01 - sys_corr_132: 2.40923717e-01 + sys_corr_131: 2.40923717e-01 + sys_corr_132: -1.15000076e-01 stat: 0.0 luminosity: 7.27379400e+01 - sys_corr_1: 3.02823953e+01 @@ -14344,26 +14344,26 @@ bins: sys_corr_4: 1.93157389e+01 sys_corr_5: 9.57948995e-01 sys_corr_6: 4.70231853e+00 - sys_corr_7: 3.25670420e+00 - sys_corr_8: -4.95478919e+00 + sys_corr_7: -3.25670420e+00 + sys_corr_8: 4.95478919e+00 sys_corr_9: 2.96046495e+00 - sys_corr_10: -7.99660929e+00 - sys_corr_11: -3.70308842e-01 - sys_corr_12: -6.89038094e+00 + sys_corr_10: 7.99660929e+00 + sys_corr_11: 3.70308842e-01 + sys_corr_12: 6.89038094e+00 sys_corr_13: 6.37497495e+00 - sys_corr_14: 4.61424706e+00 - sys_corr_15: -7.73271127e-01 - sys_corr_16: 8.83966421e-02 - sys_corr_17: -7.14791278e-01 - sys_corr_18: -9.05931186e+00 - sys_corr_19: -8.84826184e-01 - sys_corr_20: -2.21790347e+00 - sys_corr_21: -3.61732974e+00 - sys_corr_22: 4.22872968e+00 - sys_corr_23: 3.27381163e+00 - sys_corr_24: 2.32529393e+00 - sys_corr_25: -2.46986150e+00 - sys_corr_26: -3.58629173e+00 + sys_corr_14: -4.61424706e+00 + sys_corr_15: 7.73271127e-01 + sys_corr_16: -8.83966421e-02 + sys_corr_17: 7.14791278e-01 + sys_corr_18: 9.05931186e+00 + sys_corr_19: 8.84826184e-01 + sys_corr_20: 2.21790347e+00 + sys_corr_21: 3.61732974e+00 + sys_corr_22: -4.22872968e+00 + sys_corr_23: -3.27381163e+00 + sys_corr_24: -2.32529393e+00 + sys_corr_25: 2.46986150e+00 + sys_corr_26: 3.58629173e+00 sys_corr_27: 5.24428488e+00 sys_corr_28: -1.82863678e+00 sys_corr_29: 6.26347555e-01 @@ -14376,100 +14376,100 @@ bins: sys_corr_36: 2.67147957e-01 sys_corr_37: 6.95293911e-01 sys_corr_38: 4.00258042e-01 - sys_corr_39: 1.30593353e+00 + sys_corr_39: -1.30593353e+00 sys_corr_40: 4.80776773e-01 sys_corr_41: -2.05390749e+00 - sys_corr_42: -3.30984360e-01 + sys_corr_42: 3.30984360e-01 sys_corr_43: 7.50855834e-01 - sys_corr_44: 1.61018978e+00 - sys_corr_45: 9.02644590e-01 - sys_corr_46: -1.09673055e+00 - sys_corr_47: 2.32751116e-01 - sys_corr_48: 3.50825788e-01 + sys_corr_44: -1.61018978e+00 + sys_corr_45: -9.02644590e-01 + sys_corr_46: 1.09673055e+00 + sys_corr_47: -2.32751116e-01 + sys_corr_48: -3.50825788e-01 sys_corr_49: 9.08087192e-02 - sys_corr_50: 1.65774663e+00 - sys_corr_51: 6.35899869e-03 - sys_corr_52: -1.02568440e+00 - sys_corr_53: 1.69846711e-01 - sys_corr_54: -1.34739979e+00 + sys_corr_50: -1.65774663e+00 + sys_corr_51: -6.35899869e-03 + sys_corr_52: 1.02568440e+00 + sys_corr_53: -1.69846711e-01 + sys_corr_54: 1.34739979e+00 sys_corr_55: 1.68484311e+00 sys_corr_56: 8.82117935e-01 - sys_corr_57: -8.65057074e-01 + sys_corr_57: 8.65057074e-01 sys_corr_58: -1.36048849e+00 - sys_corr_59: 3.25783579e-01 + sys_corr_59: -3.25783579e-01 sys_corr_60: -2.06077937e-01 sys_corr_61: 2.17029544e-01 sys_corr_62: 1.00307189e+00 - sys_corr_63: -5.25017745e-01 + sys_corr_63: 5.25017745e-01 sys_corr_64: -1.43366940e+00 sys_corr_65: -1.61978978e+00 - sys_corr_66: 3.83209568e-01 - sys_corr_67: 2.32769233e-02 - sys_corr_68: 9.28649581e-01 - sys_corr_69: 4.67862643e-01 - sys_corr_70: -8.95035400e-01 - sys_corr_71: -1.19993536e+00 - sys_corr_72: -1.15475325e+00 - sys_corr_73: 4.73910381e-02 - sys_corr_74: 2.49380451e-01 - sys_corr_75: -3.45185325e+00 + sys_corr_66: -3.83209568e-01 + sys_corr_67: -2.32769233e-02 + sys_corr_68: -9.28649581e-01 + sys_corr_69: -4.67862643e-01 + sys_corr_70: 8.95035400e-01 + sys_corr_71: 4.73910381e-02 + sys_corr_72: 1.15475325e+00 + sys_corr_73: 1.19993536e+00 + sys_corr_74: -2.49380451e-01 + sys_corr_75: 3.45185325e+00 sys_corr_76: 2.44570997e+00 sys_corr_77: 5.09915108e+00 - sys_corr_78: 1.69816753e+00 + sys_corr_78: 3.34614444e+00 sys_corr_79: 1.54170005e+00 - sys_corr_80: -3.34614444e+00 + sys_corr_80: -1.69816753e+00 sys_corr_81: 3.24336870e+00 - sys_corr_82: 2.87196093e-01 - sys_corr_83: 5.30449419e+00 + sys_corr_82: 5.30449419e+00 + sys_corr_83: -2.87196093e-01 sys_corr_84: 2.17746105e+01 - sys_corr_85: 1.67803098e+01 - sys_corr_86: -2.74320419e+00 + sys_corr_85: -1.67803098e+01 + sys_corr_86: 2.74320419e+00 sys_corr_87: -4.99595771e-01 sys_corr_88: 2.08431897e+00 - sys_corr_89: 2.84581184e+00 - sys_corr_90: -2.42388642e+01 + sys_corr_89: -2.84581184e+00 + sys_corr_90: 2.42388642e+01 sys_corr_91: 2.89956912e+00 - sys_corr_92: 2.51724554e+00 - sys_corr_93: -4.07482001e+00 + sys_corr_92: -2.51724554e+00 + sys_corr_93: 5.77772210e-01 sys_corr_94: -9.10759543e+00 - sys_corr_95: -5.77772210e-01 + sys_corr_95: 4.07482001e+00 sys_corr_96: 4.32906838e-01 sys_corr_97: -1.82014822e+01 sys_corr_98: 2.84641332e+00 sys_corr_99: -2.54383758e+01 - sys_corr_100: 1.33318961e-02 - sys_corr_101: -1.12753666e+01 - sys_corr_102: 5.71437146e+01 - sys_corr_103: 5.30066213e+01 - sys_corr_104: -1.62155844e+00 - sys_corr_105: -6.55484207e+01 - sys_corr_106: 1.92508825e+00 - sys_corr_107: -6.81092907e-01 - sys_corr_108: 8.16747993e-01 - sys_corr_109: -3.64552126e-02 - sys_corr_110: -1.61792918e+00 - sys_corr_111: 6.84275013e+01 - sys_corr_112: -3.48155177e-01 + sys_corr_100: -1.62155844e+00 + sys_corr_101: 5.30066213e+01 + sys_corr_102: 6.55484207e+01 + sys_corr_103: -5.71437146e+01 + sys_corr_104: -1.12753666e+01 + sys_corr_105: 1.33318961e-02 + sys_corr_106: -1.92508825e+00 + sys_corr_107: 6.81092907e-01 + sys_corr_108: -6.84275013e+01 + sys_corr_109: -8.16747993e-01 + sys_corr_110: 3.64552126e-02 + sys_corr_111: -1.61792918e+00 + sys_corr_112: 3.48155177e-01 sys_corr_113: -5.39222431e-02 sys_corr_114: 1.09087876e-02 - sys_corr_115: -7.35186401e-01 - sys_corr_116: -7.67275847e-02 + sys_corr_115: 7.35186401e-01 + sys_corr_116: 7.67275847e-02 sys_corr_117: 2.23918719e-01 - sys_corr_118: -3.42013128e-01 - sys_corr_119: 1.78971620e-02 + sys_corr_118: 3.42013128e-01 + sys_corr_119: -1.78971620e-02 sys_corr_120: -6.27457633e-01 sys_corr_121: 6.57294060e-04 sys_corr_122: -1.29294987e-01 - sys_corr_123: 3.64519675e-02 + sys_corr_123: -3.64519675e-02 sys_corr_124: 5.81281296e-01 - sys_corr_125: 1.45940929e-01 + sys_corr_125: -1.45940929e-01 sys_corr_126: -1.35419688e-02 - sys_corr_127: 1.76853672e+00 - sys_corr_128: 1.37459660e-01 - sys_corr_129: 2.00307473e-01 + sys_corr_127: -1.76853672e+00 + sys_corr_128: -1.37459660e-01 + sys_corr_129: -2.00307473e-01 sys_corr_130: 1.63386172e-02 - sys_corr_131: 2.91885977e-02 - sys_corr_132: 3.83924839e-01 + sys_corr_131: 3.83924839e-01 + sys_corr_132: -2.91885977e-02 stat: 0.0 luminosity: 7.30614940e+01 - sys_corr_1: 2.74721160e+01 @@ -14478,26 +14478,26 @@ bins: sys_corr_4: 1.83560044e+01 sys_corr_5: 6.90335096e+00 sys_corr_6: 5.29337177e+00 - sys_corr_7: -1.10739815e+00 - sys_corr_8: 7.66227719e+00 + sys_corr_7: 1.10739815e+00 + sys_corr_8: -7.66227719e+00 sys_corr_9: -2.12490810e+00 - sys_corr_10: 7.60725380e+00 - sys_corr_11: -9.37597925e+00 - sys_corr_12: 2.19101729e+00 + sys_corr_10: -7.60725380e+00 + sys_corr_11: 9.37597925e+00 + sys_corr_12: -2.19101729e+00 sys_corr_13: -2.99557240e-01 - sys_corr_14: 3.77353936e+00 - sys_corr_15: -9.44993624e-01 - sys_corr_16: -1.15431837e+00 - sys_corr_17: -1.68308280e-01 - sys_corr_18: 5.98255642e+00 - sys_corr_19: -3.69155187e+00 - sys_corr_20: 1.12465107e+00 - sys_corr_21: 2.11798505e+00 - sys_corr_22: 3.73111979e+00 - sys_corr_23: 3.87637969e-01 - sys_corr_24: 1.67060880e+00 - sys_corr_25: -5.28620251e+00 - sys_corr_26: -8.89511400e+00 + sys_corr_14: -3.77353936e+00 + sys_corr_15: 9.44993624e-01 + sys_corr_16: 1.15431837e+00 + sys_corr_17: 1.68308280e-01 + sys_corr_18: -5.98255642e+00 + sys_corr_19: 3.69155187e+00 + sys_corr_20: -1.12465107e+00 + sys_corr_21: -2.11798505e+00 + sys_corr_22: -3.73111979e+00 + sys_corr_23: -3.87637969e-01 + sys_corr_24: -1.67060880e+00 + sys_corr_25: 5.28620251e+00 + sys_corr_26: 8.89511400e+00 sys_corr_27: 5.84988368e+00 sys_corr_28: -2.44573135e+00 sys_corr_29: -3.01144330e-01 @@ -14510,100 +14510,100 @@ bins: sys_corr_36: -6.56037599e-02 sys_corr_37: -3.84509684e-02 sys_corr_38: -5.44980404e-01 - sys_corr_39: -1.87795119e+00 + sys_corr_39: 1.87795119e+00 sys_corr_40: 1.45340262e-01 sys_corr_41: -2.39074057e+00 - sys_corr_42: -8.18112362e-01 + sys_corr_42: 8.18112362e-01 sys_corr_43: -1.31751859e+00 - sys_corr_44: 4.57320665e+00 - sys_corr_45: 3.88712041e-01 - sys_corr_46: 1.42048482e+00 - sys_corr_47: -1.39541282e+00 - sys_corr_48: 1.03539769e+00 + sys_corr_44: -4.57320665e+00 + sys_corr_45: -3.88712041e-01 + sys_corr_46: -1.42048482e+00 + sys_corr_47: 1.39541282e+00 + sys_corr_48: -1.03539769e+00 sys_corr_49: 1.28281229e+00 - sys_corr_50: 1.31733596e+00 - sys_corr_51: -8.83807124e-01 - sys_corr_52: -1.76605095e+00 - sys_corr_53: 2.48602346e-01 - sys_corr_54: 7.51785895e-01 + sys_corr_50: -1.31733596e+00 + sys_corr_51: 8.83807124e-01 + sys_corr_52: 1.76605095e+00 + sys_corr_53: -2.48602346e-01 + sys_corr_54: -7.51785895e-01 sys_corr_55: 2.47251182e+00 sys_corr_56: 4.94614410e-01 - sys_corr_57: -2.12042706e+00 + sys_corr_57: 2.12042706e+00 sys_corr_58: -9.92873248e-01 - sys_corr_59: 5.40373738e-02 + sys_corr_59: -5.40373738e-02 sys_corr_60: 1.18799187e+00 sys_corr_61: -1.04459866e+00 sys_corr_62: 2.44546555e+00 - sys_corr_63: 8.69992404e-01 + sys_corr_63: -8.69992404e-01 sys_corr_64: 3.97995270e-01 sys_corr_65: -7.08022017e-01 - sys_corr_66: 1.10757244e+00 - sys_corr_67: 9.10020736e-02 - sys_corr_68: 5.49913054e-02 - sys_corr_69: 2.34134836e+00 - sys_corr_70: -2.87999380e-01 - sys_corr_71: -9.78695153e-01 - sys_corr_72: -1.32239535e+00 - sys_corr_73: 2.76331087e-01 - sys_corr_74: 8.64808115e-01 - sys_corr_75: -4.10667470e+00 + sys_corr_66: -1.10757244e+00 + sys_corr_67: -9.10020736e-02 + sys_corr_68: -5.49913054e-02 + sys_corr_69: -2.34134836e+00 + sys_corr_70: 2.87999380e-01 + sys_corr_71: 2.76331087e-01 + sys_corr_72: 1.32239535e+00 + sys_corr_73: 9.78695153e-01 + sys_corr_74: -8.64808115e-01 + sys_corr_75: 4.10667470e+00 sys_corr_76: 2.64778709e+00 sys_corr_77: 6.01597237e+00 - sys_corr_78: 3.02278831e-01 + sys_corr_78: 2.27446869e+00 sys_corr_79: 1.32521901e+00 - sys_corr_80: -2.27446869e+00 + sys_corr_80: -3.02278831e-01 sys_corr_81: 1.48738190e+00 - sys_corr_82: 1.80634940e+00 - sys_corr_83: 3.80071150e+00 + sys_corr_82: 3.80071150e+00 + sys_corr_83: -1.80634940e+00 sys_corr_84: 1.79705712e+01 - sys_corr_85: 1.55345881e+01 - sys_corr_86: -2.25627807e+00 + sys_corr_85: -1.55345881e+01 + sys_corr_86: 2.25627807e+00 sys_corr_87: -3.82647717e-01 sys_corr_88: 1.46712320e+00 - sys_corr_89: 2.64682939e+00 - sys_corr_90: -2.14679972e+01 + sys_corr_89: -2.64682939e+00 + sys_corr_90: 2.14679972e+01 sys_corr_91: 2.96454830e+00 - sys_corr_92: 2.80667683e+00 - sys_corr_93: -7.42246044e+00 + sys_corr_92: -2.80667683e+00 + sys_corr_93: 3.65176785e-01 sys_corr_94: -1.91060053e+01 - sys_corr_95: -3.65176785e-01 + sys_corr_95: 7.42246044e+00 sys_corr_96: 6.61198265e-01 sys_corr_97: -6.88718166e+01 sys_corr_98: -3.83589009e+01 sys_corr_99: -5.31485356e+01 - sys_corr_100: 1.05755587e+01 - sys_corr_101: -2.42914849e+01 - sys_corr_102: 1.71133134e+01 - sys_corr_103: 1.53886396e+01 - sys_corr_104: 1.17040278e+01 - sys_corr_105: 6.03228585e+00 - sys_corr_106: -1.56469720e+00 - sys_corr_107: 2.81629163e+00 - sys_corr_108: 3.91561975e-01 - sys_corr_109: -1.31930250e+00 - sys_corr_110: -1.64588459e+00 - sys_corr_111: -7.46837808e+01 - sys_corr_112: -7.05293754e-01 + sys_corr_100: 1.17040278e+01 + sys_corr_101: 1.53886396e+01 + sys_corr_102: -6.03228585e+00 + sys_corr_103: -1.71133134e+01 + sys_corr_104: -2.42914849e+01 + sys_corr_105: 1.05755587e+01 + sys_corr_106: 1.56469720e+00 + sys_corr_107: -2.81629163e+00 + sys_corr_108: 7.46837808e+01 + sys_corr_109: -3.91561975e-01 + sys_corr_110: 1.31930250e+00 + sys_corr_111: -1.64588459e+00 + sys_corr_112: 7.05293754e-01 sys_corr_113: -7.25212687e-01 sys_corr_114: 1.07633732e-02 - sys_corr_115: -2.00016952e-01 - sys_corr_116: -1.37061040e-01 + sys_corr_115: 2.00016952e-01 + sys_corr_116: 1.37061040e-01 sys_corr_117: 9.25716563e-02 - sys_corr_118: -3.70914416e-01 - sys_corr_119: 1.65781236e-02 + sys_corr_118: 3.70914416e-01 + sys_corr_119: -1.65781236e-02 sys_corr_120: 1.75468719e-01 sys_corr_121: 4.45893177e-03 sys_corr_122: -1.49231298e-01 - sys_corr_123: 3.90960366e-02 + sys_corr_123: -3.90960366e-02 sys_corr_124: 2.64652680e-01 - sys_corr_125: 7.14442871e-02 + sys_corr_125: -7.14442871e-02 sys_corr_126: -5.07291381e-03 - sys_corr_127: 4.59260872e+01 - sys_corr_128: 2.60478882e-01 - sys_corr_129: 4.88460275e-01 + sys_corr_127: -4.59260872e+01 + sys_corr_128: -2.60478882e-01 + sys_corr_129: -4.88460275e-01 sys_corr_130: -7.95750970e-03 - sys_corr_131: -4.86092161e-01 - sys_corr_132: 3.37679746e-01 + sys_corr_131: 3.37679746e-01 + sys_corr_132: 4.86092161e-01 stat: 0.0 luminosity: 7.07780040e+01 - sys_corr_1: 2.34419771e+01 @@ -14612,26 +14612,26 @@ bins: sys_corr_4: 1.29160829e+01 sys_corr_5: 5.48273533e+00 sys_corr_6: 5.36887130e+00 - sys_corr_7: -3.87479307e+00 - sys_corr_8: 1.18858622e+00 + sys_corr_7: 3.87479307e+00 + sys_corr_8: -1.18858622e+00 sys_corr_9: -2.24191325e+00 - sys_corr_10: 2.55779919e+00 - sys_corr_11: 1.37145194e+01 - sys_corr_12: -4.54159428e+00 + sys_corr_10: -2.55779919e+00 + sys_corr_11: -1.37145194e+01 + sys_corr_12: 4.54159428e+00 sys_corr_13: -2.50115760e+00 - sys_corr_14: -2.39095369e-01 - sys_corr_15: 2.38500091e+00 - sys_corr_16: -6.88449729e+00 - sys_corr_17: 5.22885740e+00 - sys_corr_18: 8.10908968e+00 - sys_corr_19: 6.32022131e+00 - sys_corr_20: 1.13457345e+00 - sys_corr_21: 1.18164707e+00 - sys_corr_22: 5.78908731e+00 - sys_corr_23: -4.91766663e-01 - sys_corr_24: -3.08223692e-01 - sys_corr_25: -5.54694201e+00 - sys_corr_26: -8.11871006e+00 + sys_corr_14: 2.39095369e-01 + sys_corr_15: -2.38500091e+00 + sys_corr_16: 6.88449729e+00 + sys_corr_17: -5.22885740e+00 + sys_corr_18: -8.10908968e+00 + sys_corr_19: -6.32022131e+00 + sys_corr_20: -1.13457345e+00 + sys_corr_21: -1.18164707e+00 + sys_corr_22: -5.78908731e+00 + sys_corr_23: 4.91766663e-01 + sys_corr_24: 3.08223692e-01 + sys_corr_25: 5.54694201e+00 + sys_corr_26: 8.11871006e+00 sys_corr_27: 6.16546083e+00 sys_corr_28: -4.21840788e+00 sys_corr_29: 2.18794509e-02 @@ -14644,100 +14644,100 @@ bins: sys_corr_36: 9.87870920e-01 sys_corr_37: 4.42848842e-01 sys_corr_38: -8.72702302e-02 - sys_corr_39: -2.23177806e+00 + sys_corr_39: 2.23177806e+00 sys_corr_40: 7.49830810e-01 sys_corr_41: -2.07401179e+00 - sys_corr_42: -8.36536203e-01 + sys_corr_42: 8.36536203e-01 sys_corr_43: -1.79330264e+00 - sys_corr_44: 1.84363693e+00 - sys_corr_45: 5.58530046e-01 - sys_corr_46: -2.33301462e-01 - sys_corr_47: -1.87933533e+00 - sys_corr_48: 2.65197722e+00 + sys_corr_44: -1.84363693e+00 + sys_corr_45: -5.58530046e-01 + sys_corr_46: 2.33301462e-01 + sys_corr_47: 1.87933533e+00 + sys_corr_48: -2.65197722e+00 sys_corr_49: 2.69243416e+00 - sys_corr_50: 2.16443450e+00 - sys_corr_51: -6.06324582e-01 - sys_corr_52: -2.94718160e-01 - sys_corr_53: -2.72097624e-01 - sys_corr_54: 9.02354123e-01 + sys_corr_50: -2.16443450e+00 + sys_corr_51: 6.06324582e-01 + sys_corr_52: 2.94718160e-01 + sys_corr_53: 2.72097624e-01 + sys_corr_54: -9.02354123e-01 sys_corr_55: 1.98975433e-01 sys_corr_56: -6.19209779e-01 - sys_corr_57: -1.46472784e+00 + sys_corr_57: 1.46472784e+00 sys_corr_58: -1.30151751e+00 - sys_corr_59: -5.20111672e-01 + sys_corr_59: 5.20111672e-01 sys_corr_60: 7.89465398e-01 sys_corr_61: -3.77082175e-02 sys_corr_62: 1.71231336e+00 - sys_corr_63: -2.47359271e-01 + sys_corr_63: 2.47359271e-01 sys_corr_64: -1.59853032e-01 sys_corr_65: -1.68389166e-01 - sys_corr_66: 6.04871875e-01 - sys_corr_67: 1.93834861e-01 - sys_corr_68: -3.68103033e-01 - sys_corr_69: 1.64707215e+00 - sys_corr_70: -5.24695836e-01 - sys_corr_71: -4.64799931e-01 - sys_corr_72: -9.53373947e-02 - sys_corr_73: -4.27942897e-01 - sys_corr_74: 7.79437188e-01 - sys_corr_75: -3.25085462e+00 + sys_corr_66: -6.04871875e-01 + sys_corr_67: -1.93834861e-01 + sys_corr_68: 3.68103033e-01 + sys_corr_69: -1.64707215e+00 + sys_corr_70: 5.24695836e-01 + sys_corr_71: -4.27942897e-01 + sys_corr_72: 9.53373947e-02 + sys_corr_73: 4.64799931e-01 + sys_corr_74: -7.79437188e-01 + sys_corr_75: 3.25085462e+00 sys_corr_76: 2.33007789e+00 sys_corr_77: 2.78763324e+00 - sys_corr_78: 1.72838075e+00 + sys_corr_78: 1.17055340e+00 sys_corr_79: 1.30730075e-02 - sys_corr_80: -1.17055340e+00 + sys_corr_80: -1.72838075e+00 sys_corr_81: 8.57991943e-01 - sys_corr_82: 5.63816446e-01 - sys_corr_83: 2.33921369e+00 + sys_corr_82: 2.33921369e+00 + sys_corr_83: -5.63816446e-01 sys_corr_84: 1.22124250e+01 - sys_corr_85: 1.05067067e+01 - sys_corr_86: -1.99153603e+00 + sys_corr_85: -1.05067067e+01 + sys_corr_86: 1.99153603e+00 sys_corr_87: -1.12701923e+00 sys_corr_88: 1.16772062e+00 - sys_corr_89: 1.85795544e+00 - sys_corr_90: -1.47467380e+01 + sys_corr_89: -1.85795544e+00 + sys_corr_90: 1.47467380e+01 sys_corr_91: 1.81580605e+00 - sys_corr_92: 1.95464471e+00 - sys_corr_93: -3.52247135e+00 + sys_corr_92: -1.95464471e+00 + sys_corr_93: -7.04072178e-01 sys_corr_94: -8.22823349e+00 - sys_corr_95: 7.04072178e-01 + sys_corr_95: 3.52247135e+00 sys_corr_96: -2.15411311e+00 sys_corr_97: -1.88942737e+01 sys_corr_98: -5.79405731e+00 sys_corr_99: -4.88842715e+00 - sys_corr_100: 5.14711851e+01 - sys_corr_101: -4.70190483e+01 - sys_corr_102: -8.15506292e+01 - sys_corr_103: 7.79474179e+00 - sys_corr_104: -2.92123856e+00 - sys_corr_105: -2.58814748e+01 - sys_corr_106: -2.22041654e+01 - sys_corr_107: 6.62581906e+00 - sys_corr_108: 2.65362662e+00 - sys_corr_109: -4.83546484e+00 - sys_corr_110: -1.46888589e+00 - sys_corr_111: 2.90058261e+01 - sys_corr_112: -9.10280260e-01 + sys_corr_100: -2.92123856e+00 + sys_corr_101: 7.79474179e+00 + sys_corr_102: 2.58814748e+01 + sys_corr_103: 8.15506292e+01 + sys_corr_104: -4.70190483e+01 + sys_corr_105: 5.14711851e+01 + sys_corr_106: 2.22041654e+01 + sys_corr_107: -6.62581906e+00 + sys_corr_108: -2.90058261e+01 + sys_corr_109: -2.65362662e+00 + sys_corr_110: 4.83546484e+00 + sys_corr_111: -1.46888589e+00 + sys_corr_112: 9.10280260e-01 sys_corr_113: -5.87664415e-01 sys_corr_114: 9.62905992e-03 - sys_corr_115: 1.30046587e-02 - sys_corr_116: -2.76990164e-01 + sys_corr_115: -1.30046587e-02 + sys_corr_116: 2.76990164e-01 sys_corr_117: 1.70866993e-01 - sys_corr_118: -2.59856756e-01 - sys_corr_119: 7.72025310e-03 + sys_corr_118: 2.59856756e-01 + sys_corr_119: -7.72025310e-03 sys_corr_120: 2.20143863e-01 sys_corr_121: 1.44407506e-02 sys_corr_122: -2.10518267e-01 - sys_corr_123: 7.56630226e-02 + sys_corr_123: -7.56630226e-02 sys_corr_124: 3.65238674e-01 - sys_corr_125: 7.01058344e-02 + sys_corr_125: -7.01058344e-02 sys_corr_126: -2.44237152e-02 - sys_corr_127: -1.07761567e+01 - sys_corr_128: 8.90459969e-01 - sys_corr_129: 6.18792364e-01 + sys_corr_127: 1.07761567e+01 + sys_corr_128: -8.90459969e-01 + sys_corr_129: -6.18792364e-01 sys_corr_130: 2.27948910e-02 - sys_corr_131: -4.17924985e-01 - sys_corr_132: 4.21839520e-01 + sys_corr_131: 4.21839520e-01 + sys_corr_132: 4.17924985e-01 stat: 0.0 luminosity: 6.71529980e+01 - sys_corr_1: 2.39482277e+01 @@ -14746,26 +14746,26 @@ bins: sys_corr_4: 8.67047933e+00 sys_corr_5: 7.37307128e+00 sys_corr_6: 3.87527715e+00 - sys_corr_7: -5.00474158e+00 - sys_corr_8: -9.85573976e-01 + sys_corr_7: 5.00474158e+00 + sys_corr_8: 9.85573976e-01 sys_corr_9: -2.09596811e+00 - sys_corr_10: 2.65666697e+00 - sys_corr_11: 7.57114508e-01 - sys_corr_12: 3.87730576e+00 + sys_corr_10: -2.65666697e+00 + sys_corr_11: -7.57114508e-01 + sys_corr_12: -3.87730576e+00 sys_corr_13: 6.21392237e+00 - sys_corr_14: -1.60278066e+01 - sys_corr_15: 4.10130802e+00 - sys_corr_16: 3.50243639e+00 - sys_corr_17: -1.08007424e+00 - sys_corr_18: -1.32346668e+01 - sys_corr_19: 3.38192060e+00 - sys_corr_20: 1.50435045e+00 - sys_corr_21: 1.53031249e+00 - sys_corr_22: 4.62785780e+00 - sys_corr_23: -1.83103634e+00 - sys_corr_24: 9.92576347e-01 - sys_corr_25: -6.20505798e+00 - sys_corr_26: -8.36506666e+00 + sys_corr_14: 1.60278066e+01 + sys_corr_15: -4.10130802e+00 + sys_corr_16: -3.50243639e+00 + sys_corr_17: 1.08007424e+00 + sys_corr_18: 1.32346668e+01 + sys_corr_19: -3.38192060e+00 + sys_corr_20: -1.50435045e+00 + sys_corr_21: -1.53031249e+00 + sys_corr_22: -4.62785780e+00 + sys_corr_23: 1.83103634e+00 + sys_corr_24: -9.92576347e-01 + sys_corr_25: 6.20505798e+00 + sys_corr_26: 8.36506666e+00 sys_corr_27: 5.03912407e+00 sys_corr_28: -6.82618522e+00 sys_corr_29: 4.53469449e-01 @@ -14778,100 +14778,100 @@ bins: sys_corr_36: 1.22924348e+00 sys_corr_37: 6.19144226e-01 sys_corr_38: -3.31929399e-01 - sys_corr_39: 1.41383582e+00 + sys_corr_39: -1.41383582e+00 sys_corr_40: 1.56554415e+00 sys_corr_41: -8.70641059e-01 - sys_corr_42: 2.21153875e-01 + sys_corr_42: -2.21153875e-01 sys_corr_43: -1.10004772e+00 - sys_corr_44: 1.18358252e+00 - sys_corr_45: 1.27315981e+00 - sys_corr_46: -6.02156733e-01 - sys_corr_47: -1.48349510e+00 - sys_corr_48: 3.75727273e+00 + sys_corr_44: -1.18358252e+00 + sys_corr_45: -1.27315981e+00 + sys_corr_46: 6.02156733e-01 + sys_corr_47: 1.48349510e+00 + sys_corr_48: -3.75727273e+00 sys_corr_49: 3.30815643e+00 - sys_corr_50: 2.41497192e+00 - sys_corr_51: 4.12501759e-01 - sys_corr_52: 1.90650681e-01 - sys_corr_53: 7.49425568e-01 - sys_corr_54: 3.17797241e-01 + sys_corr_50: -2.41497192e+00 + sys_corr_51: -4.12501759e-01 + sys_corr_52: -1.90650681e-01 + sys_corr_53: -7.49425568e-01 + sys_corr_54: -3.17797241e-01 sys_corr_55: -2.81127959e-01 sys_corr_56: -4.04098394e-01 - sys_corr_57: -1.09893819e+00 + sys_corr_57: 1.09893819e+00 sys_corr_58: -2.58942376e-01 - sys_corr_59: 9.69828930e-02 + sys_corr_59: -9.69828930e-02 sys_corr_60: 1.08233535e+00 sys_corr_61: 5.37818775e-01 sys_corr_62: 4.47313142e-01 - sys_corr_63: 3.28312083e-01 + sys_corr_63: -3.28312083e-01 sys_corr_64: -3.88490107e-01 sys_corr_65: 3.20841013e-01 - sys_corr_66: 9.69261204e-01 - sys_corr_67: 3.37352909e-01 - sys_corr_68: -1.98777504e-01 - sys_corr_69: 1.56319638e+00 - sys_corr_70: -5.79334877e-01 - sys_corr_71: 6.17836229e-01 - sys_corr_72: -2.32206267e-01 - sys_corr_73: -1.35871047e-02 - sys_corr_74: 1.57720118e+00 - sys_corr_75: -2.22549409e+00 + sys_corr_66: -9.69261204e-01 + sys_corr_67: -3.37352909e-01 + sys_corr_68: 1.98777504e-01 + sys_corr_69: -1.56319638e+00 + sys_corr_70: 5.79334877e-01 + sys_corr_71: -1.35871047e-02 + sys_corr_72: 2.32206267e-01 + sys_corr_73: -6.17836229e-01 + sys_corr_74: -1.57720118e+00 + sys_corr_75: 2.22549409e+00 sys_corr_76: 1.06901257e+00 sys_corr_77: 2.46869860e+00 - sys_corr_78: 9.30224184e-01 + sys_corr_78: 1.61450063e+00 sys_corr_79: -4.07702766e-01 - sys_corr_80: -1.61450063e+00 + sys_corr_80: -9.30224184e-01 sys_corr_81: 2.96377273e-01 - sys_corr_82: 6.94401804e-01 - sys_corr_83: 1.28987379e+00 + sys_corr_82: 1.28987379e+00 + sys_corr_83: -6.94401804e-01 sys_corr_84: 7.13394590e+00 - sys_corr_85: 4.92378057e+00 - sys_corr_86: -1.20750837e+00 + sys_corr_85: -4.92378057e+00 + sys_corr_86: 1.20750837e+00 sys_corr_87: -7.92049957e-01 sys_corr_88: 8.40783913e-01 - sys_corr_89: 1.03817301e+00 - sys_corr_90: -7.72794450e+00 + sys_corr_89: -1.03817301e+00 + sys_corr_90: 7.72794450e+00 sys_corr_91: 1.23270852e+00 - sys_corr_92: 5.62667513e-01 - sys_corr_93: -2.86150406e+00 + sys_corr_92: -5.62667513e-01 + sys_corr_93: 7.11201702e-01 sys_corr_94: -9.02870001e+00 - sys_corr_95: -7.11201702e-01 + sys_corr_95: 2.86150406e+00 sys_corr_96: 4.35656662e-01 sys_corr_97: -2.16979002e+01 sys_corr_98: -1.04420916e+01 sys_corr_99: -1.21884119e+01 - sys_corr_100: 2.49962758e+01 - sys_corr_101: 9.53516372e+01 - sys_corr_102: -1.26727257e+01 - sys_corr_103: 6.01802839e+00 - sys_corr_104: -4.36438988e-01 - sys_corr_105: -1.63826240e+01 - sys_corr_106: -4.78768145e+01 - sys_corr_107: -1.43536160e+01 - sys_corr_108: 1.66744519e+00 - sys_corr_109: -9.55291125e+00 - sys_corr_110: -7.45569722e+00 - sys_corr_111: -2.03022370e-01 - sys_corr_112: -8.01035975e-01 + sys_corr_100: -4.36438988e-01 + sys_corr_101: 6.01802839e+00 + sys_corr_102: 1.63826240e+01 + sys_corr_103: 1.26727257e+01 + sys_corr_104: 9.53516372e+01 + sys_corr_105: 2.49962758e+01 + sys_corr_106: 4.78768145e+01 + sys_corr_107: 1.43536160e+01 + sys_corr_108: 2.03022370e-01 + sys_corr_109: -1.66744519e+00 + sys_corr_110: 9.55291125e+00 + sys_corr_111: -7.45569722e+00 + sys_corr_112: 8.01035975e-01 sys_corr_113: -8.11973841e-01 sys_corr_114: 4.74372606e-03 - sys_corr_115: 5.67398165e-01 - sys_corr_116: -2.34294669e-01 + sys_corr_115: -5.67398165e-01 + sys_corr_116: 2.34294669e-01 sys_corr_117: 1.30145334e-01 - sys_corr_118: 1.69115766e-02 - sys_corr_119: -2.72546474e-03 + sys_corr_118: -1.69115766e-02 + sys_corr_119: 2.72546474e-03 sys_corr_120: 3.49021289e-02 sys_corr_121: 2.08533038e-02 sys_corr_122: -1.82242911e-01 - sys_corr_123: 8.97978510e-02 + sys_corr_123: -8.97978510e-02 sys_corr_124: 1.27582083e-01 - sys_corr_125: -6.56158564e-01 + sys_corr_125: 6.56158564e-01 sys_corr_126: -3.19373259e-02 - sys_corr_127: 4.72880974e+00 - sys_corr_128: 6.08309194e+00 - sys_corr_129: 4.96581286e-01 + sys_corr_127: -4.72880974e+00 + sys_corr_128: -6.08309194e+00 + sys_corr_129: -4.96581286e-01 sys_corr_130: 3.67836775e-02 - sys_corr_131: 1.97444236e-01 - sys_corr_132: 3.45345016e-01 + sys_corr_131: 3.45345016e-01 + sys_corr_132: -1.97444236e-01 stat: 0.0 luminosity: 6.66649280e+01 - sys_corr_1: 1.70896115e+01 @@ -14880,26 +14880,26 @@ bins: sys_corr_4: 2.11516907e+00 sys_corr_5: 2.78406555e+00 sys_corr_6: 2.16664208e+00 - sys_corr_7: -7.46771700e+00 - sys_corr_8: -3.76319644e+00 + sys_corr_7: 7.46771700e+00 + sys_corr_8: 3.76319644e+00 sys_corr_9: 3.19853977e+00 - sys_corr_10: 3.09272094e+00 - sys_corr_11: 6.39911165e+00 - sys_corr_12: 7.84077705e+00 + sys_corr_10: -3.09272094e+00 + sys_corr_11: -6.39911165e+00 + sys_corr_12: -7.84077705e+00 sys_corr_13: 5.02824578e-01 - sys_corr_14: 7.67621980e+00 - sys_corr_15: -1.42272867e+00 - sys_corr_16: 4.49180482e+00 - sys_corr_17: -5.34046293e+00 - sys_corr_18: -7.67397370e+00 - sys_corr_19: -7.92170337e+00 - sys_corr_20: 3.09144277e+00 - sys_corr_21: 2.33895295e+00 - sys_corr_22: 1.95400839e+00 - sys_corr_23: -2.97198729e+00 - sys_corr_24: 2.11363379e+00 - sys_corr_25: -5.94387213e+00 - sys_corr_26: -8.20948356e+00 + sys_corr_14: -7.67621980e+00 + sys_corr_15: 1.42272867e+00 + sys_corr_16: -4.49180482e+00 + sys_corr_17: 5.34046293e+00 + sys_corr_18: 7.67397370e+00 + sys_corr_19: 7.92170337e+00 + sys_corr_20: -3.09144277e+00 + sys_corr_21: -2.33895295e+00 + sys_corr_22: -1.95400839e+00 + sys_corr_23: 2.97198729e+00 + sys_corr_24: -2.11363379e+00 + sys_corr_25: 5.94387213e+00 + sys_corr_26: 8.20948356e+00 sys_corr_27: 6.34308487e+00 sys_corr_28: -6.82003367e+00 sys_corr_29: 3.15578558e-02 @@ -14912,100 +14912,100 @@ bins: sys_corr_36: -3.16396459e-01 sys_corr_37: 2.67195302e-01 sys_corr_38: -3.67956669e-01 - sys_corr_39: 3.09448403e-01 + sys_corr_39: -3.09448403e-01 sys_corr_40: 7.50702055e-01 sys_corr_41: -1.12151391e-01 - sys_corr_42: -1.51229244e-01 + sys_corr_42: 1.51229244e-01 sys_corr_43: -9.68620978e-01 - sys_corr_44: 1.35584673e+00 - sys_corr_45: 4.69740567e-01 - sys_corr_46: -3.23167300e-01 - sys_corr_47: -2.43577711e+00 - sys_corr_48: 3.42650290e+00 + sys_corr_44: -1.35584673e+00 + sys_corr_45: -4.69740567e-01 + sys_corr_46: 3.23167300e-01 + sys_corr_47: 2.43577711e+00 + sys_corr_48: -3.42650290e+00 sys_corr_49: 2.49455295e+00 - sys_corr_50: 1.94600606e+00 - sys_corr_51: -8.82735229e-01 - sys_corr_52: -3.26332961e-01 - sys_corr_53: -1.11390462e-01 - sys_corr_54: 9.54229046e-01 + sys_corr_50: -1.94600606e+00 + sys_corr_51: 8.82735229e-01 + sys_corr_52: 3.26332961e-01 + sys_corr_53: 1.11390462e-01 + sys_corr_54: -9.54229046e-01 sys_corr_55: -3.95008795e-01 sys_corr_56: -2.10822564e-01 - sys_corr_57: -2.89808553e-01 + sys_corr_57: 2.89808553e-01 sys_corr_58: 3.84782551e-02 - sys_corr_59: -5.78745120e-02 + sys_corr_59: 5.78745120e-02 sys_corr_60: 1.56152039e+00 sys_corr_61: -5.69476221e-01 sys_corr_62: -6.60869569e-01 - sys_corr_63: -2.49267468e-01 + sys_corr_63: 2.49267468e-01 sys_corr_64: 5.29271408e-01 sys_corr_65: -4.14272016e-01 - sys_corr_66: 2.49791241e-01 - sys_corr_67: 1.57487531e-01 - sys_corr_68: -1.13084646e-01 - sys_corr_69: 8.90211177e-01 - sys_corr_70: -4.84065696e-01 - sys_corr_71: 1.17698548e+00 - sys_corr_72: 5.65108983e-01 - sys_corr_73: -5.85031772e-01 - sys_corr_74: 1.88411923e+00 - sys_corr_75: -2.12233487e+00 + sys_corr_66: -2.49791241e-01 + sys_corr_67: -1.57487531e-01 + sys_corr_68: 1.13084646e-01 + sys_corr_69: -8.90211177e-01 + sys_corr_70: 4.84065696e-01 + sys_corr_71: -5.85031772e-01 + sys_corr_72: -5.65108983e-01 + sys_corr_73: -1.17698548e+00 + sys_corr_74: -1.88411923e+00 + sys_corr_75: 2.12233487e+00 sys_corr_76: 3.37531572e-01 sys_corr_77: 2.83878437e+00 - sys_corr_78: 2.98166698e-01 + sys_corr_78: 9.90070024e-01 sys_corr_79: -7.55047693e-01 - sys_corr_80: -9.90070024e-01 + sys_corr_80: -2.98166698e-01 sys_corr_81: 1.51552715e+00 - sys_corr_82: 7.08677440e-01 - sys_corr_83: 5.52832202e-01 + sys_corr_82: 5.52832202e-01 + sys_corr_83: -7.08677440e-01 sys_corr_84: 3.25103928e+00 - sys_corr_85: 2.72030206e+00 - sys_corr_86: -8.72686155e-01 + sys_corr_85: -2.72030206e+00 + sys_corr_86: 8.72686155e-01 sys_corr_87: -6.58496949e-01 sys_corr_88: -1.76645911e-01 - sys_corr_89: 4.09361371e-01 - sys_corr_90: -3.66905174e+00 + sys_corr_89: -4.09361371e-01 + sys_corr_90: 3.66905174e+00 sys_corr_91: 1.78535471e+00 - sys_corr_92: -2.83604536e-01 - sys_corr_93: -1.93411288e+00 + sys_corr_92: 2.83604536e-01 + sys_corr_93: 8.32423557e-01 sys_corr_94: -6.45307623e+00 - sys_corr_95: -8.32423557e-01 + sys_corr_95: 1.93411288e+00 sys_corr_96: -1.92078369e-01 sys_corr_97: -1.43138500e+01 sys_corr_98: -7.02469145e+00 sys_corr_99: -6.59450339e+00 - sys_corr_100: -7.31377666e+01 - sys_corr_101: -1.94554854e+01 - sys_corr_102: -2.99945572e+01 - sys_corr_103: 1.25517693e+00 - sys_corr_104: -1.73046740e+00 - sys_corr_105: -1.41034099e+01 - sys_corr_106: -2.87174674e+01 - sys_corr_107: -6.29961996e+01 - sys_corr_108: 3.61989334e+00 - sys_corr_109: -1.23744333e+01 - sys_corr_110: 9.81791646e-01 - sys_corr_111: 3.52192757e+00 - sys_corr_112: -3.12406697e+00 + sys_corr_100: -1.73046740e+00 + sys_corr_101: 1.25517693e+00 + sys_corr_102: 1.41034099e+01 + sys_corr_103: 2.99945572e+01 + sys_corr_104: -1.94554854e+01 + sys_corr_105: -7.31377666e+01 + sys_corr_106: 2.87174674e+01 + sys_corr_107: 6.29961996e+01 + sys_corr_108: -3.52192757e+00 + sys_corr_109: -3.61989334e+00 + sys_corr_110: 1.23744333e+01 + sys_corr_111: 9.81791646e-01 + sys_corr_112: 3.12406697e+00 sys_corr_113: -2.03985410e+00 sys_corr_114: -5.48204929e-04 - sys_corr_115: 1.50506638e+00 - sys_corr_116: -3.96458792e-01 + sys_corr_115: -1.50506638e+00 + sys_corr_116: 3.96458792e-01 sys_corr_117: 1.68546457e-01 - sys_corr_118: 1.34622769e-01 - sys_corr_119: -1.54991666e-02 + sys_corr_118: -1.34622769e-01 + sys_corr_119: 1.54991666e-02 sys_corr_120: 6.92307010e-02 sys_corr_121: 1.23005046e-02 sys_corr_122: -7.91412681e-02 - sys_corr_123: 9.97571484e-02 + sys_corr_123: -9.97571484e-02 sys_corr_124: 1.31477127e-01 - sys_corr_125: -5.57136763e-01 + sys_corr_125: 5.57136763e-01 sys_corr_126: -2.03334102e-02 - sys_corr_127: 1.49731894e+00 - sys_corr_128: 6.29639597e+00 - sys_corr_129: 1.37449039e+00 + sys_corr_127: -1.49731894e+00 + sys_corr_128: -6.29639597e+00 + sys_corr_129: -1.37449039e+00 sys_corr_130: -1.50139882e-02 - sys_corr_131: 1.94307414e-01 - sys_corr_132: 1.29709290e-01 + sys_corr_131: 1.29709290e-01 + sys_corr_132: -1.94307414e-01 stat: 0.0 luminosity: 6.13636320e+01 - sys_corr_1: 1.10628233e+01 @@ -15014,26 +15014,26 @@ bins: sys_corr_4: -3.20578924e+00 sys_corr_5: -8.31265332e+00 sys_corr_6: -1.04399370e+00 - sys_corr_7: -1.79382739e+00 - sys_corr_8: -2.15056663e-01 + sys_corr_7: 1.79382739e+00 + sys_corr_8: 2.15056663e-01 sys_corr_9: 1.22075506e+00 - sys_corr_10: 1.26612738e+00 - sys_corr_11: -1.06512139e+00 - sys_corr_12: 7.61107837e+00 + sys_corr_10: -1.26612738e+00 + sys_corr_11: 1.06512139e+00 + sys_corr_12: -7.61107837e+00 sys_corr_13: 6.69269513e+00 - sys_corr_14: 3.09608547e+00 - sys_corr_15: -1.36147736e-01 - sys_corr_16: -3.24438001e+00 - sys_corr_17: 1.29060467e+01 - sys_corr_18: -2.90697119e+00 - sys_corr_19: 9.84676167e+00 - sys_corr_20: -2.25045317e-01 - sys_corr_21: 5.89791110e+00 - sys_corr_22: 5.89375603e+00 - sys_corr_23: -3.44507762e+00 - sys_corr_24: 1.16668230e+00 - sys_corr_25: -6.98772305e+00 - sys_corr_26: -7.82177343e+00 + sys_corr_14: -3.09608547e+00 + sys_corr_15: 1.36147736e-01 + sys_corr_16: 3.24438001e+00 + sys_corr_17: -1.29060467e+01 + sys_corr_18: 2.90697119e+00 + sys_corr_19: -9.84676167e+00 + sys_corr_20: 2.25045317e-01 + sys_corr_21: -5.89791110e+00 + sys_corr_22: -5.89375603e+00 + sys_corr_23: 3.44507762e+00 + sys_corr_24: -1.16668230e+00 + sys_corr_25: 6.98772305e+00 + sys_corr_26: 7.82177343e+00 sys_corr_27: 7.91351330e+00 sys_corr_28: -8.38172292e+00 sys_corr_29: -2.37640655e+00 @@ -15046,100 +15046,100 @@ bins: sys_corr_36: 2.76990437e+00 sys_corr_37: 8.06259044e-01 sys_corr_38: 6.97704133e-02 - sys_corr_39: 3.92341868e-01 + sys_corr_39: -3.92341868e-01 sys_corr_40: 1.17639315e+00 sys_corr_41: 7.49333818e-01 - sys_corr_42: -1.09607537e+00 + sys_corr_42: 1.09607537e+00 sys_corr_43: -8.69579884e-01 - sys_corr_44: -9.58616346e-01 - sys_corr_45: -1.03754333e-01 - sys_corr_46: -7.13682850e-01 - sys_corr_47: -1.88149653e+00 - sys_corr_48: 5.23636999e+00 + sys_corr_44: 9.58616346e-01 + sys_corr_45: 1.03754333e-01 + sys_corr_46: 7.13682850e-01 + sys_corr_47: 1.88149653e+00 + sys_corr_48: -5.23636999e+00 sys_corr_49: 2.80250784e+00 - sys_corr_50: 4.11126455e+00 - sys_corr_51: 1.00295310e+00 - sys_corr_52: 1.30864562e+00 - sys_corr_53: 1.18607444e-01 - sys_corr_54: 6.05713207e-01 + sys_corr_50: -4.11126455e+00 + sys_corr_51: -1.00295310e+00 + sys_corr_52: -1.30864562e+00 + sys_corr_53: -1.18607444e-01 + sys_corr_54: -6.05713207e-01 sys_corr_55: -2.01029388e-01 sys_corr_56: -5.94735426e-01 - sys_corr_57: -1.13921534e-01 + sys_corr_57: 1.13921534e-01 sys_corr_58: 3.74477308e-01 - sys_corr_59: -1.92009622e-01 + sys_corr_59: 1.92009622e-01 sys_corr_60: 1.08110046e+00 sys_corr_61: 5.85964629e-02 sys_corr_62: -5.69251784e-01 - sys_corr_63: -4.71738439e-01 + sys_corr_63: 4.71738439e-01 sys_corr_64: -2.56626130e-01 sys_corr_65: 3.63554812e-01 - sys_corr_66: 3.58812743e-01 - sys_corr_67: 1.17697207e+00 - sys_corr_68: -8.85819016e-01 - sys_corr_69: 1.14197480e+00 - sys_corr_70: -4.07122124e-01 - sys_corr_71: -1.16090983e-01 - sys_corr_72: -2.91803838e-02 - sys_corr_73: 5.53853133e-01 - sys_corr_74: 1.58447191e+00 - sys_corr_75: -2.20013383e+00 + sys_corr_66: -3.58812743e-01 + sys_corr_67: -1.17697207e+00 + sys_corr_68: 8.85819016e-01 + sys_corr_69: -1.14197480e+00 + sys_corr_70: 4.07122124e-01 + sys_corr_71: 5.53853133e-01 + sys_corr_72: 2.91803838e-02 + sys_corr_73: 1.16090983e-01 + sys_corr_74: -1.58447191e+00 + sys_corr_75: 2.20013383e+00 sys_corr_76: 1.01547576e+00 sys_corr_77: 1.47031400e+00 - sys_corr_78: -2.29580482e-01 + sys_corr_78: 9.45997934e-01 sys_corr_79: -1.19036977e+00 - sys_corr_80: -9.45997934e-01 + sys_corr_80: 2.29580482e-01 sys_corr_81: 1.20828875e+00 - sys_corr_82: 8.77544367e-01 - sys_corr_83: 6.80700601e-01 + sys_corr_82: 6.80700601e-01 + sys_corr_83: -8.77544367e-01 sys_corr_84: 2.28834994e+00 - sys_corr_85: 1.27650320e+00 - sys_corr_86: -1.07638431e+00 + sys_corr_85: -1.27650320e+00 + sys_corr_86: 1.07638431e+00 sys_corr_87: -3.79545229e-01 sys_corr_88: 7.14805876e-01 - sys_corr_89: 6.71367870e-01 - sys_corr_90: -3.05713719e+00 + sys_corr_89: -6.71367870e-01 + sys_corr_90: 3.05713719e+00 sys_corr_91: 8.83168320e-01 - sys_corr_92: 2.85127462e-01 - sys_corr_93: -2.30834394e+00 + sys_corr_92: -2.85127462e-01 + sys_corr_93: 2.24548862e+00 sys_corr_94: -8.55770436e+00 - sys_corr_95: -2.24548862e+00 + sys_corr_95: 2.30834394e+00 sys_corr_96: -2.98927694e-02 sys_corr_97: -1.50693393e+01 sys_corr_98: -7.35403520e+00 sys_corr_99: -8.07128120e+00 - sys_corr_100: 1.93396415e+01 - sys_corr_101: 2.58105149e+01 - sys_corr_102: -2.25221546e+01 - sys_corr_103: -2.77208669e+00 - sys_corr_104: -3.00076353e+00 - sys_corr_105: -1.81444534e+01 - sys_corr_106: 7.86150590e+01 - sys_corr_107: -4.30758347e+01 - sys_corr_108: 8.91946611e+00 - sys_corr_109: -3.82619702e+00 - sys_corr_110: 3.81826333e+01 - sys_corr_111: 1.85091124e+00 - sys_corr_112: -3.24073304e+00 + sys_corr_100: -3.00076353e+00 + sys_corr_101: -2.77208669e+00 + sys_corr_102: 1.81444534e+01 + sys_corr_103: 2.25221546e+01 + sys_corr_104: 2.58105149e+01 + sys_corr_105: 1.93396415e+01 + sys_corr_106: -7.86150590e+01 + sys_corr_107: 4.30758347e+01 + sys_corr_108: -1.85091124e+00 + sys_corr_109: -8.91946611e+00 + sys_corr_110: 3.82619702e+00 + sys_corr_111: 3.81826333e+01 + sys_corr_112: 3.24073304e+00 sys_corr_113: -2.94016917e+00 sys_corr_114: -5.96091732e-03 - sys_corr_115: 2.74463734e+00 - sys_corr_116: -4.50913202e-01 + sys_corr_115: -2.74463734e+00 + sys_corr_116: 4.50913202e-01 sys_corr_117: 1.89168081e-01 - sys_corr_118: 6.01610729e-01 - sys_corr_119: -2.67895579e-02 + sys_corr_118: -6.01610729e-01 + sys_corr_119: 2.67895579e-02 sys_corr_120: 5.49578148e-02 sys_corr_121: -1.38422867e-03 sys_corr_122: 4.69453908e-01 - sys_corr_123: 2.27249514e-01 + sys_corr_123: -2.27249514e-01 sys_corr_124: -1.55284779e-01 - sys_corr_125: 7.57243966e-02 + sys_corr_125: -7.57243966e-02 sys_corr_126: -9.04142772e-02 - sys_corr_127: 1.19846875e+00 - sys_corr_128: -1.01084468e+01 - sys_corr_129: 1.88587535e+00 + sys_corr_127: -1.19846875e+00 + sys_corr_128: 1.01084468e+01 + sys_corr_129: -1.88587535e+00 sys_corr_130: -4.95609562e-03 - sys_corr_131: 2.42190349e-02 - sys_corr_132: 5.10619289e-02 + sys_corr_131: 5.10619289e-02 + sys_corr_132: -2.42190349e-02 stat: 0.0 luminosity: 5.96221780e+01 - sys_corr_1: 3.35211053e+00 @@ -15148,26 +15148,26 @@ bins: sys_corr_4: -9.35268562e+00 sys_corr_5: -2.01143947e+01 sys_corr_6: -4.82967556e+00 - sys_corr_7: 1.77779881e+00 - sys_corr_8: -7.65919753e-01 + sys_corr_7: -1.77779881e+00 + sys_corr_8: 7.65919753e-01 sys_corr_9: 1.24625896e+00 - sys_corr_10: -1.93846131e+00 - sys_corr_11: 3.64711691e+00 - sys_corr_12: 2.36333078e+00 + sys_corr_10: 1.93846131e+00 + sys_corr_11: -3.64711691e+00 + sys_corr_12: -2.36333078e+00 sys_corr_13: 4.46734720e+00 - sys_corr_14: -1.32835153e+00 - sys_corr_15: 3.02335953e+00 - sys_corr_16: -5.04978981e+00 - sys_corr_17: -1.45133915e+01 - sys_corr_18: 1.22198774e+01 - sys_corr_19: 4.09644355e+00 - sys_corr_20: 4.95015256e+00 - sys_corr_21: -4.37073572e-01 - sys_corr_22: 6.96185694e+00 - sys_corr_23: -4.01157540e-01 - sys_corr_24: -1.52288779e-01 - sys_corr_25: -6.06629715e+00 - sys_corr_26: -5.54805215e+00 + sys_corr_14: 1.32835153e+00 + sys_corr_15: -3.02335953e+00 + sys_corr_16: 5.04978981e+00 + sys_corr_17: 1.45133915e+01 + sys_corr_18: -1.22198774e+01 + sys_corr_19: -4.09644355e+00 + sys_corr_20: -4.95015256e+00 + sys_corr_21: 4.37073572e-01 + sys_corr_22: -6.96185694e+00 + sys_corr_23: 4.01157540e-01 + sys_corr_24: 1.52288779e-01 + sys_corr_25: 6.06629715e+00 + sys_corr_26: 5.54805215e+00 sys_corr_27: 7.59499189e+00 sys_corr_28: -8.94675364e+00 sys_corr_29: -5.38013473e+00 @@ -15180,100 +15180,100 @@ bins: sys_corr_36: 1.81802095e-01 sys_corr_37: -6.50850980e-01 sys_corr_38: -5.31119182e-01 - sys_corr_39: -1.12813726e-01 + sys_corr_39: 1.12813726e-01 sys_corr_40: 1.95920515e-01 sys_corr_41: 6.99398341e-01 - sys_corr_42: -1.06434081e+00 + sys_corr_42: 1.06434081e+00 sys_corr_43: -1.24045404e+00 - sys_corr_44: -1.51931620e+00 - sys_corr_45: 3.59527704e-01 - sys_corr_46: 4.18420254e-01 - sys_corr_47: -2.50976171e+00 - sys_corr_48: 6.57786855e+00 + sys_corr_44: 1.51931620e+00 + sys_corr_45: -3.59527704e-01 + sys_corr_46: -4.18420254e-01 + sys_corr_47: 2.50976171e+00 + sys_corr_48: -6.57786855e+00 sys_corr_49: 3.21566623e+00 - sys_corr_50: 4.35013898e+00 - sys_corr_51: 1.65091265e+00 - sys_corr_52: 2.16651039e+00 - sys_corr_53: -2.65894102e-01 - sys_corr_54: 7.73834214e-01 + sys_corr_50: -4.35013898e+00 + sys_corr_51: -1.65091265e+00 + sys_corr_52: -2.16651039e+00 + sys_corr_53: 2.65894102e-01 + sys_corr_54: -7.73834214e-01 sys_corr_55: -6.17233759e-02 sys_corr_56: -8.46999439e-02 - sys_corr_57: 3.37962319e-01 + sys_corr_57: -3.37962319e-01 sys_corr_58: 5.48053845e-02 - sys_corr_59: 4.15463811e-02 + sys_corr_59: -4.15463811e-02 sys_corr_60: 1.05082520e+00 sys_corr_61: 4.38978420e-02 sys_corr_62: -3.79134793e-01 - sys_corr_63: -1.14743992e+00 + sys_corr_63: 1.14743992e+00 sys_corr_64: 1.22295682e-01 sys_corr_65: 4.22511464e-01 - sys_corr_66: -6.15738610e-01 - sys_corr_67: 7.61263982e-01 - sys_corr_68: -6.81072530e-02 - sys_corr_69: 4.75329224e-01 - sys_corr_70: -5.87363483e-01 - sys_corr_71: 4.40107410e-01 - sys_corr_72: -8.04306756e-01 - sys_corr_73: 2.64868920e-01 - sys_corr_74: 1.55912553e+00 - sys_corr_75: -1.84916086e+00 + sys_corr_66: 6.15738610e-01 + sys_corr_67: -7.61263982e-01 + sys_corr_68: 6.81072530e-02 + sys_corr_69: -4.75329224e-01 + sys_corr_70: 5.87363483e-01 + sys_corr_71: 2.64868920e-01 + sys_corr_72: 8.04306756e-01 + sys_corr_73: -4.40107410e-01 + sys_corr_74: -1.55912553e+00 + sys_corr_75: 1.84916086e+00 sys_corr_76: 6.47714352e-01 sys_corr_77: 1.87437591e+00 - sys_corr_78: 6.80192451e-01 + sys_corr_78: 2.55101002e+00 sys_corr_79: -8.09130922e-01 - sys_corr_80: -2.55101002e+00 + sys_corr_80: -6.80192451e-01 sys_corr_81: 7.28404200e-01 - sys_corr_82: 5.77889226e-01 - sys_corr_83: 3.17223959e-01 + sys_corr_82: 3.17223959e-01 + sys_corr_83: -5.77889226e-01 sys_corr_84: 3.18045203e+00 - sys_corr_85: 1.79163350e+00 - sys_corr_86: -1.07987080e+00 + sys_corr_85: -1.79163350e+00 + sys_corr_86: 1.07987080e+00 sys_corr_87: 2.67084072e-01 sys_corr_88: 3.82755769e-01 - sys_corr_89: 1.02817092e+00 - sys_corr_90: -2.33436636e+00 + sys_corr_89: -1.02817092e+00 + sys_corr_90: 2.33436636e+00 sys_corr_91: 1.06219495e+00 - sys_corr_92: 5.33590128e-01 - sys_corr_93: -1.84193047e+00 + sys_corr_92: -5.33590128e-01 + sys_corr_93: 2.02762759e+00 sys_corr_94: -7.38148259e+00 - sys_corr_95: -2.02762759e+00 + sys_corr_95: 1.84193047e+00 sys_corr_96: 3.62321550e-01 sys_corr_97: -1.00689759e+01 sys_corr_98: -5.03415200e+00 sys_corr_99: -7.12570155e+00 - sys_corr_100: -2.92990436e+01 - sys_corr_101: 1.03573752e+01 - sys_corr_102: -1.46377306e+01 - sys_corr_103: -8.89827705e-03 - sys_corr_104: -2.73313207e+00 - sys_corr_105: -1.26425877e+01 - sys_corr_106: -2.34888184e+01 - sys_corr_107: 3.71139044e+01 - sys_corr_108: 1.51591019e+01 - sys_corr_109: 4.39194499e+01 - sys_corr_110: 6.23665180e+01 - sys_corr_111: 1.71309771e+00 - sys_corr_112: -4.11805645e+00 + sys_corr_100: -2.73313207e+00 + sys_corr_101: -8.89827705e-03 + sys_corr_102: 1.26425877e+01 + sys_corr_103: 1.46377306e+01 + sys_corr_104: 1.03573752e+01 + sys_corr_105: -2.92990436e+01 + sys_corr_106: 2.34888184e+01 + sys_corr_107: -3.71139044e+01 + sys_corr_108: -1.71309771e+00 + sys_corr_109: -1.51591019e+01 + sys_corr_110: -4.39194499e+01 + sys_corr_111: 6.23665180e+01 + sys_corr_112: 4.11805645e+00 sys_corr_113: -4.85952108e+00 sys_corr_114: -1.14827478e-02 - sys_corr_115: 3.49260710e+00 - sys_corr_116: -6.12918556e-01 + sys_corr_115: -3.49260710e+00 + sys_corr_116: 6.12918556e-01 sys_corr_117: 2.30597085e-01 - sys_corr_118: 8.97099514e-01 - sys_corr_119: -4.60062873e-02 + sys_corr_118: -8.97099514e-01 + sys_corr_119: 4.60062873e-02 sys_corr_120: 1.17127045e-01 sys_corr_121: -1.53642484e-02 sys_corr_122: 5.16453957e-01 - sys_corr_123: 1.72337446e-01 + sys_corr_123: -1.72337446e-01 sys_corr_124: -7.40860662e-02 - sys_corr_125: 1.54798762e-01 + sys_corr_125: -1.54798762e-01 sys_corr_126: -1.27612120e-01 - sys_corr_127: 1.67498087e+00 - sys_corr_128: -2.97750527e+01 - sys_corr_129: 1.47445305e+00 + sys_corr_127: -1.67498087e+00 + sys_corr_128: 2.97750527e+01 + sys_corr_129: -1.47445305e+00 sys_corr_130: -9.63408327e-03 - sys_corr_131: 6.23115055e-02 - sys_corr_132: -8.17892496e-02 + sys_corr_131: -8.17892496e-02 + sys_corr_132: -6.23115055e-02 stat: 0.0 luminosity: 55.40271 - sys_corr_1: -4.37583050e-01 @@ -15282,26 +15282,26 @@ bins: sys_corr_4: -1.08310523e+01 sys_corr_5: -2.66249404e+01 sys_corr_6: -7.30395863e+00 - sys_corr_7: 3.32944290e+00 - sys_corr_8: 1.71283656e+00 + sys_corr_7: -3.32944290e+00 + sys_corr_8: -1.71283656e+00 sys_corr_9: -6.13084057e-02 - sys_corr_10: 9.09091570e-01 - sys_corr_11: 3.53925422e+00 - sys_corr_12: 2.24202943e+00 + sys_corr_10: -9.09091570e-01 + sys_corr_11: -3.53925422e+00 + sys_corr_12: -2.24202943e+00 sys_corr_13: 3.40310986e-01 - sys_corr_14: -3.36935043e+00 - sys_corr_15: 1.61827286e+00 - sys_corr_16: -1.34904537e+00 - sys_corr_17: 1.13968636e+01 - sys_corr_18: -2.43815825e+00 - sys_corr_19: -1.72381092e+01 - sys_corr_20: 3.67298081e+00 - sys_corr_21: -9.78924564e+00 - sys_corr_22: 3.54131806e-01 - sys_corr_23: 1.30816035e+00 - sys_corr_24: -3.81527004e+00 - sys_corr_25: -8.36988070e+00 - sys_corr_26: -2.27289732e+00 + sys_corr_14: 3.36935043e+00 + sys_corr_15: -1.61827286e+00 + sys_corr_16: 1.34904537e+00 + sys_corr_17: -1.13968636e+01 + sys_corr_18: 2.43815825e+00 + sys_corr_19: 1.72381092e+01 + sys_corr_20: -3.67298081e+00 + sys_corr_21: 9.78924564e+00 + sys_corr_22: -3.54131806e-01 + sys_corr_23: -1.30816035e+00 + sys_corr_24: 3.81527004e+00 + sys_corr_25: 8.36988070e+00 + sys_corr_26: 2.27289732e+00 sys_corr_27: 7.53608599e+00 sys_corr_28: -7.32431324e+00 sys_corr_29: -5.03368628e+00 @@ -15314,100 +15314,100 @@ bins: sys_corr_36: 1.95344320e+00 sys_corr_37: 9.05020777e-01 sys_corr_38: 5.19649177e-01 - sys_corr_39: -3.85511939e-01 + sys_corr_39: 3.85511939e-01 sys_corr_40: -5.69097712e-01 sys_corr_41: 1.17318095e+00 - sys_corr_42: -2.11591902e+00 + sys_corr_42: 2.11591902e+00 sys_corr_43: -6.53842927e-01 - sys_corr_44: -1.23702372e+00 - sys_corr_45: 1.65136024e-01 - sys_corr_46: 6.38367436e-01 - sys_corr_47: -2.72354562e+00 - sys_corr_48: 6.78735851e+00 + sys_corr_44: 1.23702372e+00 + sys_corr_45: -1.65136024e-01 + sys_corr_46: -6.38367436e-01 + sys_corr_47: 2.72354562e+00 + sys_corr_48: -6.78735851e+00 sys_corr_49: 3.17388243e+00 - sys_corr_50: 2.94751562e+00 - sys_corr_51: 8.58034441e-01 - sys_corr_52: 6.72845396e-01 - sys_corr_53: -2.68225122e-01 - sys_corr_54: 8.80374162e-01 + sys_corr_50: -2.94751562e+00 + sys_corr_51: -8.58034441e-01 + sys_corr_52: -6.72845396e-01 + sys_corr_53: 2.68225122e-01 + sys_corr_54: -8.80374162e-01 sys_corr_55: 6.92656058e-01 sys_corr_56: -3.24566744e-02 - sys_corr_57: -1.89868349e-01 + sys_corr_57: 1.89868349e-01 sys_corr_58: -7.35660014e-03 - sys_corr_59: -3.48304345e-01 + sys_corr_59: 3.48304345e-01 sys_corr_60: 5.91915682e-01 sys_corr_61: -5.61604498e-01 sys_corr_62: -1.05714707e+00 - sys_corr_63: -1.53792395e-01 + sys_corr_63: 1.53792395e-01 sys_corr_64: -4.61831883e-01 sys_corr_65: 3.22175965e-01 - sys_corr_66: -2.18873299e-01 - sys_corr_67: 3.32875130e-01 - sys_corr_68: -4.14399888e-01 - sys_corr_69: -1.21581550e-01 - sys_corr_70: -1.37231929e+00 - sys_corr_71: 3.52089794e-01 - sys_corr_72: 1.75594418e-01 - sys_corr_73: 9.16253077e-01 - sys_corr_74: 2.07654166e+00 - sys_corr_75: -2.51417975e+00 + sys_corr_66: 2.18873299e-01 + sys_corr_67: -3.32875130e-01 + sys_corr_68: 4.14399888e-01 + sys_corr_69: 1.21581550e-01 + sys_corr_70: 1.37231929e+00 + sys_corr_71: 9.16253077e-01 + sys_corr_72: -1.75594418e-01 + sys_corr_73: -3.52089794e-01 + sys_corr_74: -2.07654166e+00 + sys_corr_75: 2.51417975e+00 sys_corr_76: 6.20167978e-02 sys_corr_77: 2.38008650e+00 - sys_corr_78: 1.41372589e+00 + sys_corr_78: 4.50025896e-01 sys_corr_79: -1.32603796e+00 - sys_corr_80: -4.50025896e-01 + sys_corr_80: -1.41372589e+00 sys_corr_81: 2.17301552e+00 - sys_corr_82: 1.33847111e+00 - sys_corr_83: 1.37385707e+00 + sys_corr_82: 1.37385707e+00 + sys_corr_83: -1.33847111e+00 sys_corr_84: 4.45599577e+00 - sys_corr_85: 1.60389142e+00 - sys_corr_86: -1.81618156e+00 + sys_corr_85: -1.60389142e+00 + sys_corr_86: 1.81618156e+00 sys_corr_87: 4.15822916e-03 sys_corr_88: 6.78843119e-01 - sys_corr_89: 1.68415206e+00 - sys_corr_90: -4.08851590e+00 + sys_corr_89: -1.68415206e+00 + sys_corr_90: 4.08851590e+00 sys_corr_91: 2.07637381e-01 - sys_corr_92: -1.20117879e-01 - sys_corr_93: -2.35206627e+00 + sys_corr_92: 1.20117879e-01 + sys_corr_93: 2.76522130e+00 sys_corr_94: -8.50122025e+00 - sys_corr_95: -2.76522130e+00 + sys_corr_95: 2.35206627e+00 sys_corr_96: 5.27363692e-01 sys_corr_97: -1.07943401e+01 sys_corr_98: -5.41439320e+00 sys_corr_99: -7.18648023e+00 - sys_corr_100: -9.42804247e+00 - sys_corr_101: 1.08906286e+01 - sys_corr_102: -1.97027387e+01 - sys_corr_103: -5.87696408e+00 - sys_corr_104: -3.18467518e+00 - sys_corr_105: -1.44050615e+01 - sys_corr_106: 2.20085468e+01 - sys_corr_107: -6.52208176e+00 - sys_corr_108: -9.20422940e+00 - sys_corr_109: 7.32932102e+01 - sys_corr_110: -5.05736477e+01 - sys_corr_111: 2.72594466e+00 - sys_corr_112: 1.36232457e-01 + sys_corr_100: -3.18467518e+00 + sys_corr_101: -5.87696408e+00 + sys_corr_102: 1.44050615e+01 + sys_corr_103: 1.97027387e+01 + sys_corr_104: 1.08906286e+01 + sys_corr_105: -9.42804247e+00 + sys_corr_106: -2.20085468e+01 + sys_corr_107: 6.52208176e+00 + sys_corr_108: -2.72594466e+00 + sys_corr_109: 9.20422940e+00 + sys_corr_110: -7.32932102e+01 + sys_corr_111: -5.05736477e+01 + sys_corr_112: -1.36232457e-01 sys_corr_113: -8.08265172e+00 sys_corr_114: -9.38842978e-03 - sys_corr_115: 3.45196806e+00 - sys_corr_116: -5.16875171e-01 + sys_corr_115: -3.45196806e+00 + sys_corr_116: 5.16875171e-01 sys_corr_117: 2.04444955e-01 - sys_corr_118: 8.60008636e-01 - sys_corr_119: -3.48923192e-02 + sys_corr_118: -8.60008636e-01 + sys_corr_119: 3.48923192e-02 sys_corr_120: 9.91902201e-02 sys_corr_121: -7.33562714e-02 sys_corr_122: 6.45576697e-02 - sys_corr_123: -4.81173880e-01 + sys_corr_123: 4.81173880e-01 sys_corr_124: -2.55153064e-02 - sys_corr_125: 8.76398284e-02 + sys_corr_125: -8.76398284e-02 sys_corr_126: -2.45269957e-01 - sys_corr_127: 7.39042513e-01 - sys_corr_128: 1.54630028e+01 - sys_corr_129: 1.83244256e+00 + sys_corr_127: -7.39042513e-01 + sys_corr_128: -1.54630028e+01 + sys_corr_129: -1.83244256e+00 sys_corr_130: -4.62709032e-02 - sys_corr_131: 8.63288828e-02 - sys_corr_132: 2.73158120e-02 + sys_corr_131: 2.73158120e-02 + sys_corr_132: -8.63288828e-02 stat: 0.0 luminosity: 5.36327220e+01 - sys_corr_1: -7.16818044e+00 @@ -15416,26 +15416,26 @@ bins: sys_corr_4: -1.42309316e+01 sys_corr_5: -3.30902386e+01 sys_corr_6: -8.30776835e+00 - sys_corr_7: 6.63210061e+00 - sys_corr_8: 4.29064229e+00 + sys_corr_7: -6.63210061e+00 + sys_corr_8: -4.29064229e+00 sys_corr_9: -1.72844959e+00 - sys_corr_10: 1.39340697e+00 - sys_corr_11: 1.02602789e+00 - sys_corr_12: -2.22673340e+00 + sys_corr_10: -1.39340697e+00 + sys_corr_11: -1.02602789e+00 + sys_corr_12: 2.22673340e+00 sys_corr_13: -3.50605705e+00 - sys_corr_14: -1.03018704e+00 - sys_corr_15: -9.52620494e-01 - sys_corr_16: 3.30615930e+00 - sys_corr_17: -1.49676930e+00 - sys_corr_18: -4.03531549e+00 - sys_corr_19: -1.80216024e+00 - sys_corr_20: -5.22751159e+00 - sys_corr_21: 2.32776174e+01 - sys_corr_22: 9.32959442e-01 - sys_corr_23: -1.56409481e+00 - sys_corr_24: -1.05184067e+00 - sys_corr_25: 6.11221714e+00 - sys_corr_26: -6.90770562e+00 + sys_corr_14: 1.03018704e+00 + sys_corr_15: 9.52620494e-01 + sys_corr_16: -3.30615930e+00 + sys_corr_17: 1.49676930e+00 + sys_corr_18: 4.03531549e+00 + sys_corr_19: 1.80216024e+00 + sys_corr_20: 5.22751159e+00 + sys_corr_21: -2.32776174e+01 + sys_corr_22: -9.32959442e-01 + sys_corr_23: 1.56409481e+00 + sys_corr_24: 1.05184067e+00 + sys_corr_25: -6.11221714e+00 + sys_corr_26: 6.90770562e+00 sys_corr_27: 4.05588998e+00 sys_corr_28: -9.79429565e+00 sys_corr_29: -8.32613579e+00 @@ -15448,100 +15448,100 @@ bins: sys_corr_36: -6.98038187e-02 sys_corr_37: 4.65843646e-01 sys_corr_38: -3.05246754e-01 - sys_corr_39: 5.11940287e-01 + sys_corr_39: -5.11940287e-01 sys_corr_40: 8.95879146e-02 sys_corr_41: 9.95764578e-01 - sys_corr_42: -1.27111631e+00 + sys_corr_42: 1.27111631e+00 sys_corr_43: -8.98265727e-01 - sys_corr_44: -1.76765174e+00 - sys_corr_45: -1.50500553e-01 - sys_corr_46: 3.53749855e-01 - sys_corr_47: -2.56068251e+00 - sys_corr_48: 6.09295482e+00 + sys_corr_44: 1.76765174e+00 + sys_corr_45: 1.50500553e-01 + sys_corr_46: -3.53749855e-01 + sys_corr_47: 2.56068251e+00 + sys_corr_48: -6.09295482e+00 sys_corr_49: 3.37088424e+00 - sys_corr_50: 3.02646146e+00 - sys_corr_51: 8.55275405e-01 - sys_corr_52: 1.43621899e+00 - sys_corr_53: -1.00697820e-01 - sys_corr_54: 3.15551425e-01 + sys_corr_50: -3.02646146e+00 + sys_corr_51: -8.55275405e-01 + sys_corr_52: -1.43621899e+00 + sys_corr_53: 1.00697820e-01 + sys_corr_54: -3.15551425e-01 sys_corr_55: -4.96054989e-01 sys_corr_56: -1.47692788e-02 - sys_corr_57: -3.76040817e-01 + sys_corr_57: 3.76040817e-01 sys_corr_58: 3.04482758e-01 - sys_corr_59: 6.12934140e-03 + sys_corr_59: -6.12934140e-03 sys_corr_60: 6.43675486e-01 sys_corr_61: -7.65961782e-01 sys_corr_62: -1.44583625e+00 - sys_corr_63: -1.08942444e-01 + sys_corr_63: 1.08942444e-01 sys_corr_64: -4.81610487e-02 sys_corr_65: 9.42044641e-01 - sys_corr_66: -4.22882175e-01 - sys_corr_67: 6.46601081e-01 - sys_corr_68: -5.45714769e-01 - sys_corr_69: -1.90488067e-02 - sys_corr_70: 8.08089970e-02 - sys_corr_71: 1.09580315e+00 - sys_corr_72: -2.91664667e-01 - sys_corr_73: 4.14763376e-01 - sys_corr_74: 1.84867834e+00 - sys_corr_75: -1.15805374e+00 + sys_corr_66: 4.22882175e-01 + sys_corr_67: -6.46601081e-01 + sys_corr_68: 5.45714769e-01 + sys_corr_69: 1.90488067e-02 + sys_corr_70: -8.08089970e-02 + sys_corr_71: 4.14763376e-01 + sys_corr_72: 2.91664667e-01 + sys_corr_73: -1.09580315e+00 + sys_corr_74: -1.84867834e+00 + sys_corr_75: 1.15805374e+00 sys_corr_76: -2.92064650e-01 sys_corr_77: 5.40379446e-01 - sys_corr_78: 6.45711997e-01 + sys_corr_78: 1.36303211e+00 sys_corr_79: -1.03603338e+00 - sys_corr_80: -1.36303211e+00 + sys_corr_80: -6.45711997e-01 sys_corr_81: 1.81948018e-01 - sys_corr_82: 6.90793185e-01 - sys_corr_83: 6.44129045e-01 + sys_corr_82: 6.44129045e-01 + sys_corr_83: -6.90793185e-01 sys_corr_84: 4.42457566e+00 - sys_corr_85: 1.01456614e+00 - sys_corr_86: -5.45823342e-01 + sys_corr_85: -1.01456614e+00 + sys_corr_86: 5.45823342e-01 sys_corr_87: 3.10074634e-01 sys_corr_88: 7.97693699e-01 - sys_corr_89: 1.25276793e+00 - sys_corr_90: -3.29336361e+00 + sys_corr_89: -1.25276793e+00 + sys_corr_90: 3.29336361e+00 sys_corr_91: 1.27282215e+00 - sys_corr_92: 2.15104060e-01 - sys_corr_93: -1.80609162e+00 + sys_corr_92: -2.15104060e-01 + sys_corr_93: 9.97838501e-01 sys_corr_94: -7.01742378e+00 - sys_corr_95: -9.97838501e-01 + sys_corr_95: 1.80609162e+00 sys_corr_96: 1.03868201e-01 sys_corr_97: -8.42470440e+00 sys_corr_98: -4.05363590e+00 sys_corr_99: -4.00199911e+00 - sys_corr_100: -1.24747299e+01 - sys_corr_101: 6.90513351e+00 - sys_corr_102: -1.29818416e+01 - sys_corr_103: 1.10068425e+00 - sys_corr_104: -2.12211698e+00 - sys_corr_105: -8.62274545e+00 - sys_corr_106: 5.52547477e+00 - sys_corr_107: 1.11675404e+01 - sys_corr_108: -8.17020143e+01 - sys_corr_109: -9.31782805e+00 - sys_corr_110: 1.45108119e+01 - sys_corr_111: 2.82394151e+00 - sys_corr_112: 1.98583826e+01 + sys_corr_100: -2.12211698e+00 + sys_corr_101: 1.10068425e+00 + sys_corr_102: 8.62274545e+00 + sys_corr_103: 1.29818416e+01 + sys_corr_104: 6.90513351e+00 + sys_corr_105: -1.24747299e+01 + sys_corr_106: -5.52547477e+00 + sys_corr_107: -1.11675404e+01 + sys_corr_108: -2.82394151e+00 + sys_corr_109: 8.17020143e+01 + sys_corr_110: 9.31782805e+00 + sys_corr_111: 1.45108119e+01 + sys_corr_112: -1.98583826e+01 sys_corr_113: -3.14636702e+00 sys_corr_114: -5.00727457e-03 - sys_corr_115: 1.28741185e+00 - sys_corr_116: -3.59971275e-01 + sys_corr_115: -1.28741185e+00 + sys_corr_116: 3.59971275e-01 sys_corr_117: 1.10557767e-01 - sys_corr_118: 2.48153589e+00 - sys_corr_119: -3.31553241e-02 + sys_corr_118: -2.48153589e+00 + sys_corr_119: 3.31553241e-02 sys_corr_120: 6.20251180e-02 sys_corr_121: -1.25624890e-01 sys_corr_122: 3.06521611e-01 - sys_corr_123: -7.33017939e-01 + sys_corr_123: 7.33017939e-01 sys_corr_124: -6.60607592e-01 - sys_corr_125: -6.82645044e-02 + sys_corr_125: 6.82645044e-02 sys_corr_126: -1.63928229e-01 - sys_corr_127: 2.84280279e-01 - sys_corr_128: -8.37656132e+00 - sys_corr_129: 6.69279904e+00 + sys_corr_127: -2.84280279e-01 + sys_corr_128: 8.37656132e+00 + sys_corr_129: -6.69279904e+00 sys_corr_130: 5.59756686e-02 - sys_corr_131: -3.51761928e-02 - sys_corr_132: 5.89005437e-01 + sys_corr_131: 5.89005437e-01 + sys_corr_132: 3.51761928e-02 stat: 0.0 luminosity: 4.81110740e+01 - sys_corr_1: -8.41099494e+00 @@ -15550,26 +15550,26 @@ bins: sys_corr_4: -8.32664524e+00 sys_corr_5: -3.04669750e+01 sys_corr_6: -9.76191966e+00 - sys_corr_7: 7.35446833e+00 - sys_corr_8: 5.81971063e+00 + sys_corr_7: -7.35446833e+00 + sys_corr_8: -5.81971063e+00 sys_corr_9: -3.71296136e+00 - sys_corr_10: 2.31248774e+00 - sys_corr_11: 3.03513951e+00 - sys_corr_12: -2.26779359e+00 + sys_corr_10: -2.31248774e+00 + sys_corr_11: -3.03513951e+00 + sys_corr_12: 2.26779359e+00 sys_corr_13: -5.76662046e+00 - sys_corr_14: 3.26681526e+00 - sys_corr_15: -2.79492061e+00 - sys_corr_16: 5.90120199e+00 - sys_corr_17: -1.67536580e+00 - sys_corr_18: -7.28927545e+00 - sys_corr_19: 1.14022090e+01 - sys_corr_20: 1.22390246e+01 - sys_corr_21: -6.18878258e+00 - sys_corr_22: 8.22510323e-01 - sys_corr_23: 2.01906774e+00 - sys_corr_24: -2.34832162e+00 - sys_corr_25: -6.11757383e+00 - sys_corr_26: -6.43324052e+00 + sys_corr_14: -3.26681526e+00 + sys_corr_15: 2.79492061e+00 + sys_corr_16: -5.90120199e+00 + sys_corr_17: 1.67536580e+00 + sys_corr_18: 7.28927545e+00 + sys_corr_19: -1.14022090e+01 + sys_corr_20: -1.22390246e+01 + sys_corr_21: 6.18878258e+00 + sys_corr_22: -8.22510323e-01 + sys_corr_23: -2.01906774e+00 + sys_corr_24: 2.34832162e+00 + sys_corr_25: 6.11757383e+00 + sys_corr_26: 6.43324052e+00 sys_corr_27: 4.29090281e+00 sys_corr_28: -5.55776496e+00 sys_corr_29: -3.82732829e+00 @@ -15582,100 +15582,100 @@ bins: sys_corr_36: 4.90336246e-01 sys_corr_37: 1.03857192e+00 sys_corr_38: -1.02568436e-01 - sys_corr_39: 2.67714716e-01 + sys_corr_39: -2.67714716e-01 sys_corr_40: -1.91302620e-01 sys_corr_41: 1.11292084e+00 - sys_corr_42: -1.75874811e+00 + sys_corr_42: 1.75874811e+00 sys_corr_43: -1.37835993e+00 - sys_corr_44: -3.87902058e-01 - sys_corr_45: 6.80217636e-01 - sys_corr_46: 3.62282382e-01 - sys_corr_47: -2.04578612e+00 - sys_corr_48: 6.30714203e+00 + sys_corr_44: 3.87902058e-01 + sys_corr_45: -6.80217636e-01 + sys_corr_46: -3.62282382e-01 + sys_corr_47: 2.04578612e+00 + sys_corr_48: -6.30714203e+00 sys_corr_49: 3.92770103e+00 - sys_corr_50: 2.65067214e+00 - sys_corr_51: 1.27611042e-01 - sys_corr_52: 1.10108674e+00 - sys_corr_53: 2.81511130e-01 - sys_corr_54: 1.89111797e+00 + sys_corr_50: -2.65067214e+00 + sys_corr_51: -1.27611042e-01 + sys_corr_52: -1.10108674e+00 + sys_corr_53: -2.81511130e-01 + sys_corr_54: -1.89111797e+00 sys_corr_55: 3.55012030e-02 sys_corr_56: 5.21180837e-01 - sys_corr_57: -2.04281100e-01 + sys_corr_57: 2.04281100e-01 sys_corr_58: -3.69711595e-01 - sys_corr_59: -7.28684926e-02 + sys_corr_59: 7.28684926e-02 sys_corr_60: 1.36037327e+00 sys_corr_61: -1.05776655e+00 sys_corr_62: -1.60153283e+00 - sys_corr_63: -1.11714159e+00 + sys_corr_63: 1.11714159e+00 sys_corr_64: -1.96115224e-01 sys_corr_65: 5.90347577e-01 - sys_corr_66: 2.04551253e-02 - sys_corr_67: 7.38633394e-01 - sys_corr_68: -4.44350326e-01 - sys_corr_69: 1.06469826e+00 - sys_corr_70: -6.53615411e-02 - sys_corr_71: 4.88112765e-01 - sys_corr_72: -8.54089303e-01 - sys_corr_73: 9.42887063e-01 - sys_corr_74: 1.92718899e+00 - sys_corr_75: -2.43426676e+00 + sys_corr_66: -2.04551253e-02 + sys_corr_67: -7.38633394e-01 + sys_corr_68: 4.44350326e-01 + sys_corr_69: -1.06469826e+00 + sys_corr_70: 6.53615411e-02 + sys_corr_71: 9.42887063e-01 + sys_corr_72: 8.54089303e-01 + sys_corr_73: -4.88112765e-01 + sys_corr_74: -1.92718899e+00 + sys_corr_75: 2.43426676e+00 sys_corr_76: 4.39744515e-01 sys_corr_77: 2.22479572e+00 - sys_corr_78: 1.54356717e+00 + sys_corr_78: 1.77539942e+00 sys_corr_79: -1.06568821e+00 - sys_corr_80: -1.77539942e+00 + sys_corr_80: -1.54356717e+00 sys_corr_81: 1.90486125e+00 - sys_corr_82: 1.44538214e+00 - sys_corr_83: 1.18113972e+00 + sys_corr_82: 1.18113972e+00 + sys_corr_83: -1.44538214e+00 sys_corr_84: 4.62079575e+00 - sys_corr_85: 8.86662587e-01 - sys_corr_86: -2.00570548e+00 + sys_corr_85: -8.86662587e-01 + sys_corr_86: 2.00570548e+00 sys_corr_87: 3.65536827e-02 sys_corr_88: 2.50401481e-01 - sys_corr_89: 1.21819432e+00 - sys_corr_90: -7.38528719e+00 + sys_corr_89: -1.21819432e+00 + sys_corr_90: 7.38528719e+00 sys_corr_91: 9.91946964e-01 - sys_corr_92: 4.65571698e-01 - sys_corr_93: -2.38918659e+00 + sys_corr_92: -4.65571698e-01 + sys_corr_93: 3.21665631e+00 sys_corr_94: -8.39329957e+00 - sys_corr_95: -3.21665631e+00 + sys_corr_95: 2.38918659e+00 sys_corr_96: 2.74085522e-01 sys_corr_97: -9.73995850e+00 sys_corr_98: -5.40196791e+00 sys_corr_99: -5.85843715e+00 - sys_corr_100: -2.06430392e+01 - sys_corr_101: 9.61204268e+00 - sys_corr_102: -1.62804996e+01 - sys_corr_103: -3.70306946e+00 - sys_corr_104: -3.57079991e+00 - sys_corr_105: -1.17378775e+01 - sys_corr_106: 1.46769995e+01 - sys_corr_107: 2.05483175e+01 - sys_corr_108: 2.48794722e+01 - sys_corr_109: -1.00662699e+01 - sys_corr_110: -1.11530101e+01 - sys_corr_111: 2.30475885e+00 - sys_corr_112: 6.51192468e+01 + sys_corr_100: -3.57079991e+00 + sys_corr_101: -3.70306946e+00 + sys_corr_102: 1.17378775e+01 + sys_corr_103: 1.62804996e+01 + sys_corr_104: 9.61204268e+00 + sys_corr_105: -2.06430392e+01 + sys_corr_106: -1.46769995e+01 + sys_corr_107: -2.05483175e+01 + sys_corr_108: -2.30475885e+00 + sys_corr_109: -2.48794722e+01 + sys_corr_110: 1.00662699e+01 + sys_corr_111: -1.11530101e+01 + sys_corr_112: -6.51192468e+01 sys_corr_113: 2.71878258e+01 sys_corr_114: -3.27788802e-03 - sys_corr_115: 1.06366036e+00 - sys_corr_116: -1.71663368e-01 + sys_corr_115: -1.06366036e+00 + sys_corr_116: 1.71663368e-01 sys_corr_117: 2.97235668e-01 - sys_corr_118: 1.19516853e+00 - sys_corr_119: 3.80797830e-02 + sys_corr_118: -1.19516853e+00 + sys_corr_119: -3.80797830e-02 sys_corr_120: 2.32922273e-01 sys_corr_121: -3.12459803e-01 sys_corr_122: -2.88004126e-01 - sys_corr_123: 1.14345870e-01 + sys_corr_123: -1.14345870e-01 sys_corr_124: -4.07580751e-01 - sys_corr_125: 4.61891077e-01 + sys_corr_125: -4.61891077e-01 sys_corr_126: 4.20640151e-01 - sys_corr_127: 1.14348997e+00 - sys_corr_128: 1.54863523e+00 - sys_corr_129: -2.73338325e+00 + sys_corr_127: -1.14348997e+00 + sys_corr_128: -1.54863523e+00 + sys_corr_129: 2.73338325e+00 sys_corr_130: 3.80965760e-01 - sys_corr_131: 2.16531532e-01 - sys_corr_132: 2.68958646e-01 + sys_corr_131: 2.68958646e-01 + sys_corr_132: -2.16531532e-01 stat: 0.0 luminosity: 4.28819160e+01 - sys_corr_1: -1.10961715e+01 @@ -15684,26 +15684,26 @@ bins: sys_corr_4: -9.59444559e+00 sys_corr_5: -2.96395617e+01 sys_corr_6: -8.66480539e+00 - sys_corr_7: 5.66853703e+00 - sys_corr_8: 4.54390865e+00 + sys_corr_7: -5.66853703e+00 + sys_corr_8: -4.54390865e+00 sys_corr_9: -2.86519261e+00 - sys_corr_10: 2.14132913e+00 - sys_corr_11: 2.44271242e+00 - sys_corr_12: -2.46501471e+00 + sys_corr_10: -2.14132913e+00 + sys_corr_11: -2.44271242e+00 + sys_corr_12: 2.46501471e+00 sys_corr_13: -4.44313688e+00 - sys_corr_14: 1.69793025e+00 - sys_corr_15: -2.32750757e+00 - sys_corr_16: 3.43550096e+00 - sys_corr_17: -3.21287144e+00 - sys_corr_18: -2.32487299e+00 - sys_corr_19: 3.63581829e+00 - sys_corr_20: -2.19880802e+01 - sys_corr_21: -7.98521683e+00 - sys_corr_22: 5.33717105e+00 - sys_corr_23: -8.89140464e+00 - sys_corr_24: -5.89169585e+00 - sys_corr_25: 3.20439174e-01 - sys_corr_26: -5.77920757e+00 + sys_corr_14: -1.69793025e+00 + sys_corr_15: 2.32750757e+00 + sys_corr_16: -3.43550096e+00 + sys_corr_17: 3.21287144e+00 + sys_corr_18: 2.32487299e+00 + sys_corr_19: -3.63581829e+00 + sys_corr_20: 2.19880802e+01 + sys_corr_21: 7.98521683e+00 + sys_corr_22: -5.33717105e+00 + sys_corr_23: 8.89140464e+00 + sys_corr_24: 5.89169585e+00 + sys_corr_25: -3.20439174e-01 + sys_corr_26: 5.77920757e+00 sys_corr_27: 6.36263148e+00 sys_corr_28: -5.10693105e+00 sys_corr_29: -2.85908831e+00 @@ -15716,100 +15716,100 @@ bins: sys_corr_36: 9.15139636e-01 sys_corr_37: 7.27862056e-01 sys_corr_38: -9.93633810e-02 - sys_corr_39: 2.62230419e-01 + sys_corr_39: -2.62230419e-01 sys_corr_40: -3.38128563e-01 sys_corr_41: 1.53392036e+00 - sys_corr_42: -1.28464225e+00 + sys_corr_42: 1.28464225e+00 sys_corr_43: -8.05439344e-01 - sys_corr_44: -5.99239355e-01 - sys_corr_45: 6.00645938e-01 - sys_corr_46: -1.61774868e-01 - sys_corr_47: -1.54845047e+00 - sys_corr_48: 5.25558394e+00 + sys_corr_44: 5.99239355e-01 + sys_corr_45: -6.00645938e-01 + sys_corr_46: 1.61774868e-01 + sys_corr_47: 1.54845047e+00 + sys_corr_48: -5.25558394e+00 sys_corr_49: 2.84950506e+00 - sys_corr_50: 1.69606898e+00 - sys_corr_51: 4.62070487e-01 - sys_corr_52: 8.99026850e-01 - sys_corr_53: 2.96397488e-02 - sys_corr_54: 1.47504135e+00 + sys_corr_50: -1.69606898e+00 + sys_corr_51: -4.62070487e-01 + sys_corr_52: -8.99026850e-01 + sys_corr_53: -2.96397488e-02 + sys_corr_54: -1.47504135e+00 sys_corr_55: 3.11866424e-01 sys_corr_56: 5.69515437e-01 - sys_corr_57: -4.19378105e-01 + sys_corr_57: 4.19378105e-01 sys_corr_58: 1.26426264e-01 - sys_corr_59: -2.31685756e-01 + sys_corr_59: 2.31685756e-01 sys_corr_60: 8.79766669e-01 sys_corr_61: -3.58569011e-01 sys_corr_62: -7.08626382e-01 - sys_corr_63: -6.72831220e-01 + sys_corr_63: 6.72831220e-01 sys_corr_64: -1.79053169e-01 sys_corr_65: 4.71755477e-01 - sys_corr_66: 2.29394021e-01 - sys_corr_67: 5.61652506e-01 - sys_corr_68: -2.75418911e-01 - sys_corr_69: 8.55854846e-01 - sys_corr_70: -2.42603679e-01 - sys_corr_71: 1.58718735e-01 - sys_corr_72: -5.14039254e-01 - sys_corr_73: 7.07649456e-01 - sys_corr_74: 1.83243903e+00 - sys_corr_75: -1.94011475e+00 + sys_corr_66: -2.29394021e-01 + sys_corr_67: -5.61652506e-01 + sys_corr_68: 2.75418911e-01 + sys_corr_69: -8.55854846e-01 + sys_corr_70: 2.42603679e-01 + sys_corr_71: 7.07649456e-01 + sys_corr_72: 5.14039254e-01 + sys_corr_73: -1.58718735e-01 + sys_corr_74: -1.83243903e+00 + sys_corr_75: 1.94011475e+00 sys_corr_76: 4.85010485e-02 sys_corr_77: 1.45583243e+00 - sys_corr_78: 8.25309611e-01 + sys_corr_78: 1.70240873e+00 sys_corr_79: -3.87565322e-01 - sys_corr_80: -1.70240873e+00 + sys_corr_80: -8.25309611e-01 sys_corr_81: 1.67781940e+00 - sys_corr_82: 8.71427481e-01 - sys_corr_83: 8.89208521e-01 + sys_corr_82: 8.89208521e-01 + sys_corr_83: -8.71427481e-01 sys_corr_84: 4.48091414e+00 - sys_corr_85: 1.39588924e+00 - sys_corr_86: -1.15075614e+00 + sys_corr_85: -1.39588924e+00 + sys_corr_86: 1.15075614e+00 sys_corr_87: -1.93375983e-01 sys_corr_88: 1.08529492e+00 - sys_corr_89: 5.36601175e-01 - sys_corr_90: -4.53106140e+00 + sys_corr_89: -5.36601175e-01 + sys_corr_90: 4.53106140e+00 sys_corr_91: 2.77181419e+00 - sys_corr_92: 5.13806990e-01 - sys_corr_93: -1.95934835e+00 + sys_corr_92: -5.13806990e-01 + sys_corr_93: 1.96980130e+00 sys_corr_94: -7.00196211e+00 - sys_corr_95: -1.96980130e+00 + sys_corr_95: 1.95934835e+00 sys_corr_96: 1.25064166e-01 sys_corr_97: -7.94507857e+00 sys_corr_98: -4.53583475e+00 sys_corr_99: -4.94835615e+00 - sys_corr_100: -1.55923791e+01 - sys_corr_101: 8.73216415e+00 - sys_corr_102: -1.39428059e+01 - sys_corr_103: -2.67142456e+00 - sys_corr_104: -3.09669628e+00 - sys_corr_105: -9.68217883e+00 - sys_corr_106: 1.20106479e+01 - sys_corr_107: 1.62437400e+01 - sys_corr_108: -9.89223190e+00 - sys_corr_109: -3.18783355e+00 - sys_corr_110: -6.72253490e+00 - sys_corr_111: 1.99419765e+00 - sys_corr_112: -3.90815415e+01 + sys_corr_100: -3.09669628e+00 + sys_corr_101: -2.67142456e+00 + sys_corr_102: 9.68217883e+00 + sys_corr_103: 1.39428059e+01 + sys_corr_104: 8.73216415e+00 + sys_corr_105: -1.55923791e+01 + sys_corr_106: -1.20106479e+01 + sys_corr_107: -1.62437400e+01 + sys_corr_108: -1.99419765e+00 + sys_corr_109: 9.89223190e+00 + sys_corr_110: 3.18783355e+00 + sys_corr_111: -6.72253490e+00 + sys_corr_112: 3.90815415e+01 sys_corr_113: 6.09715052e+01 sys_corr_114: -1.44673575e-02 - sys_corr_115: -3.76298178e+00 - sys_corr_116: 4.23127234e-01 + sys_corr_115: 3.76298178e+00 + sys_corr_116: -4.23127234e-01 sys_corr_117: 2.34734450e-01 - sys_corr_118: 2.85673267e+00 - sys_corr_119: 4.50556893e-02 + sys_corr_118: -2.85673267e+00 + sys_corr_119: -4.50556893e-02 sys_corr_120: 2.68586814e-01 sys_corr_121: -2.02878130e-01 sys_corr_122: -2.68181332e-01 - sys_corr_123: 1.50622459e-01 + sys_corr_123: -1.50622459e-01 sys_corr_124: 1.03380806e+00 - sys_corr_125: 2.80397198e-01 + sys_corr_125: -2.80397198e-01 sys_corr_126: 2.90568120e-01 - sys_corr_127: 8.71524784e-01 - sys_corr_128: -1.18841639e-02 - sys_corr_129: -1.21822902e+01 + sys_corr_127: -8.71524784e-01 + sys_corr_128: 1.18841639e-02 + sys_corr_129: 1.21822902e+01 sys_corr_130: 2.15899909e-01 - sys_corr_131: 3.44267941e-01 - sys_corr_132: -2.88334398e-01 + sys_corr_131: -2.88334398e-01 + sys_corr_132: -3.44267941e-01 stat: 0.0 luminosity: 3.47906680e+01 - sys_corr_1: -1.13891458e+01 @@ -15818,26 +15818,26 @@ bins: sys_corr_4: -4.93939704e+00 sys_corr_5: -2.27137411e+01 sys_corr_6: -7.17919741e+00 - sys_corr_7: 4.18065583e+00 - sys_corr_8: 2.96668998e+00 + sys_corr_7: -4.18065583e+00 + sys_corr_8: -2.96668998e+00 sys_corr_9: -2.73055038e+00 - sys_corr_10: 1.54112879e+00 - sys_corr_11: 2.00403402e+00 - sys_corr_12: -8.26489269e-02 + sys_corr_10: -1.54112879e+00 + sys_corr_11: -2.00403402e+00 + sys_corr_12: 8.26489269e-02 sys_corr_13: -1.90615252e+00 - sys_corr_14: 9.17743230e-01 - sys_corr_15: -6.19997198e-01 - sys_corr_16: 2.52097208e+00 - sys_corr_17: -6.85254944e-01 - sys_corr_18: -1.95903681e+00 - sys_corr_19: 2.40397866e+00 - sys_corr_20: -1.20673156e+00 - sys_corr_21: 3.00199522e+00 - sys_corr_22: 7.11105589e-01 - sys_corr_23: 2.24561982e+01 - sys_corr_24: -2.02288164e+00 - sys_corr_25: -1.16463211e+01 - sys_corr_26: -5.50171015e+00 + sys_corr_14: -9.17743230e-01 + sys_corr_15: 6.19997198e-01 + sys_corr_16: -2.52097208e+00 + sys_corr_17: 6.85254944e-01 + sys_corr_18: 1.95903681e+00 + sys_corr_19: -2.40397866e+00 + sys_corr_20: 1.20673156e+00 + sys_corr_21: -3.00199522e+00 + sys_corr_22: -7.11105589e-01 + sys_corr_23: -2.24561982e+01 + sys_corr_24: 2.02288164e+00 + sys_corr_25: 1.16463211e+01 + sys_corr_26: 5.50171015e+00 sys_corr_27: 5.61735376e+00 sys_corr_28: -7.12038244e+00 sys_corr_29: -3.14866091e+00 @@ -15850,100 +15850,100 @@ bins: sys_corr_36: 3.41868024e-01 sys_corr_37: 1.23727930e+00 sys_corr_38: -9.82061903e-02 - sys_corr_39: 6.17200979e-01 + sys_corr_39: -6.17200979e-01 sys_corr_40: -7.94828105e-01 sys_corr_41: 1.37043657e+00 - sys_corr_42: -1.69778244e+00 + sys_corr_42: 1.69778244e+00 sys_corr_43: -8.96424322e-01 - sys_corr_44: -2.99891529e-02 - sys_corr_45: 1.16715113e+00 - sys_corr_46: 2.66311697e-01 - sys_corr_47: -3.21071488e+00 - sys_corr_48: 7.98761161e+00 + sys_corr_44: 2.99891529e-02 + sys_corr_45: -1.16715113e+00 + sys_corr_46: -2.66311697e-01 + sys_corr_47: 3.21071488e+00 + sys_corr_48: -7.98761161e+00 sys_corr_49: 4.68723834e+00 - sys_corr_50: 2.46273131e+00 - sys_corr_51: 1.39472736e+00 - sys_corr_52: 2.43538301e+00 - sys_corr_53: -1.47202424e-01 - sys_corr_54: 2.09992195e+00 + sys_corr_50: -2.46273131e+00 + sys_corr_51: -1.39472736e+00 + sys_corr_52: -2.43538301e+00 + sys_corr_53: 1.47202424e-01 + sys_corr_54: -2.09992195e+00 sys_corr_55: -6.77910672e-01 sys_corr_56: 6.53049060e-01 - sys_corr_57: -2.77290457e-01 + sys_corr_57: 2.77290457e-01 sys_corr_58: -5.80195211e-01 - sys_corr_59: -2.83690794e-01 + sys_corr_59: 2.83690794e-01 sys_corr_60: 1.64422029e+00 sys_corr_61: -1.32197382e+00 sys_corr_62: -1.64260715e+00 - sys_corr_63: -9.19595484e-01 + sys_corr_63: 9.19595484e-01 sys_corr_64: -2.58029607e-01 sys_corr_65: 1.01897573e+00 - sys_corr_66: -8.99071764e-02 - sys_corr_67: 1.07665683e+00 - sys_corr_68: 3.61855370e-01 - sys_corr_69: 1.36860311e+00 - sys_corr_70: 7.33992805e-02 - sys_corr_71: -1.44146196e-01 - sys_corr_72: -6.77496957e-01 - sys_corr_73: 1.18685729e+00 - sys_corr_74: 2.66398221e+00 - sys_corr_75: -2.35727424e+00 + sys_corr_66: 8.99071764e-02 + sys_corr_67: -1.07665683e+00 + sys_corr_68: -3.61855370e-01 + sys_corr_69: -1.36860311e+00 + sys_corr_70: -7.33992805e-02 + sys_corr_71: 1.18685729e+00 + sys_corr_72: 6.77496957e-01 + sys_corr_73: 1.44146196e-01 + sys_corr_74: -2.66398221e+00 + sys_corr_75: 2.35727424e+00 sys_corr_76: -3.95642167e-01 sys_corr_77: 2.18313877e+00 - sys_corr_78: 1.06105956e+00 + sys_corr_78: 1.25638571e+00 sys_corr_79: -1.14569302e+00 - sys_corr_80: -1.25638571e+00 + sys_corr_80: -1.06105956e+00 sys_corr_81: 2.22443626e+00 - sys_corr_82: 1.05791954e+00 - sys_corr_83: -4.32890573e-02 + sys_corr_82: -4.32890573e-02 + sys_corr_83: -1.05791954e+00 sys_corr_84: 5.01850027e+00 - sys_corr_85: 1.79896742e+00 - sys_corr_86: -1.60963417e+00 + sys_corr_85: -1.79896742e+00 + sys_corr_86: 1.60963417e+00 sys_corr_87: -8.53136058e-01 sys_corr_88: 6.65236194e-01 - sys_corr_89: 1.93056328e-01 - sys_corr_90: -7.07397168e+00 + sys_corr_89: -1.93056328e-01 + sys_corr_90: 7.07397168e+00 sys_corr_91: 2.32320071e+00 - sys_corr_92: 5.99395155e-01 - sys_corr_93: -2.18150534e+00 + sys_corr_92: -5.99395155e-01 + sys_corr_93: 3.76519219e+00 sys_corr_94: -7.25058308e+00 - sys_corr_95: -3.76519219e+00 + sys_corr_95: 2.18150534e+00 sys_corr_96: 5.18422040e-01 sys_corr_97: -7.09945742e+00 sys_corr_98: -4.38242875e+00 sys_corr_99: -4.87298833e+00 - sys_corr_100: -1.97223925e+01 - sys_corr_101: 9.73722275e+00 - sys_corr_102: -1.53688814e+01 - sys_corr_103: -4.27016716e+00 - sys_corr_104: -3.43243671e+00 - sys_corr_105: -1.13036762e+01 - sys_corr_106: 1.49749559e+01 - sys_corr_107: 2.34435421e+01 - sys_corr_108: 9.16681940e-01 - sys_corr_109: -1.61560854e+01 - sys_corr_110: -9.03403707e+00 - sys_corr_111: 2.01729698e+00 - sys_corr_112: -5.85134883e+00 + sys_corr_100: -3.43243671e+00 + sys_corr_101: -4.27016716e+00 + sys_corr_102: 1.13036762e+01 + sys_corr_103: 1.53688814e+01 + sys_corr_104: 9.73722275e+00 + sys_corr_105: -1.97223925e+01 + sys_corr_106: -1.49749559e+01 + sys_corr_107: -2.34435421e+01 + sys_corr_108: -2.01729698e+00 + sys_corr_109: -9.16681940e-01 + sys_corr_110: 1.61560854e+01 + sys_corr_111: -9.03403707e+00 + sys_corr_112: 5.85134883e+00 sys_corr_113: -2.99964792e+01 sys_corr_114: -7.41056753e-03 - sys_corr_115: -2.16321001e+01 - sys_corr_116: 2.03631007e+00 + sys_corr_115: 2.16321001e+01 + sys_corr_116: -2.03631007e+00 sys_corr_117: 5.42674580e-01 - sys_corr_118: 1.72605151e+00 - sys_corr_119: 2.81608314e-01 + sys_corr_118: -1.72605151e+00 + sys_corr_119: -2.81608314e-01 sys_corr_120: 7.05979926e-01 sys_corr_121: 4.04015134e-01 sys_corr_122: -1.40472367e+00 - sys_corr_123: 6.36262686e-01 + sys_corr_123: -6.36262686e-01 sys_corr_124: 8.34884436e+00 - sys_corr_125: 1.12415349e+00 + sys_corr_125: -1.12415349e+00 sys_corr_126: -3.32760787e-01 - sys_corr_127: 1.06328499e+00 - sys_corr_128: 6.40054907e-01 - sys_corr_129: -5.06516854e+01 + sys_corr_127: -1.06328499e+00 + sys_corr_128: -6.40054907e-01 + sys_corr_129: 5.06516854e+01 sys_corr_130: 1.15579222e-01 - sys_corr_131: 7.47657675e-01 - sys_corr_132: 7.83309113e-01 + sys_corr_131: 7.83309113e-01 + sys_corr_132: -7.47657675e-01 stat: 0.0 luminosity: 2.75836440e+01 - sys_corr_1: -1.66534634e+01 @@ -15952,26 +15952,26 @@ bins: sys_corr_4: -1.00785457e+01 sys_corr_5: -2.80337791e+01 sys_corr_6: -7.30825273e+00 - sys_corr_7: 4.76134930e+00 - sys_corr_8: 2.89291725e+00 + sys_corr_7: -4.76134930e+00 + sys_corr_8: -2.89291725e+00 sys_corr_9: -1.72077925e+00 - sys_corr_10: 7.05188375e-01 - sys_corr_11: 1.29067425e+00 - sys_corr_12: -9.56277595e-01 + sys_corr_10: -7.05188375e-01 + sys_corr_11: -1.29067425e+00 + sys_corr_12: 9.56277595e-01 sys_corr_13: -2.50086858e+00 - sys_corr_14: 8.45020295e-01 - sys_corr_15: -9.99824111e-01 - sys_corr_16: 2.11267827e+00 - sys_corr_17: 2.22191729e-01 - sys_corr_18: -1.57916840e+00 - sys_corr_19: -6.28265987e-02 - sys_corr_20: 1.88114709e+00 - sys_corr_21: 3.15193475e+00 - sys_corr_22: 3.87279998e+00 - sys_corr_23: -1.25264620e+00 - sys_corr_24: -7.35342550e+00 - sys_corr_25: 1.62926861e+01 - sys_corr_26: -5.92864574e+00 + sys_corr_14: -8.45020295e-01 + sys_corr_15: 9.99824111e-01 + sys_corr_16: -2.11267827e+00 + sys_corr_17: -2.22191729e-01 + sys_corr_18: 1.57916840e+00 + sys_corr_19: 6.28265987e-02 + sys_corr_20: -1.88114709e+00 + sys_corr_21: -3.15193475e+00 + sys_corr_22: -3.87279998e+00 + sys_corr_23: 1.25264620e+00 + sys_corr_24: 7.35342550e+00 + sys_corr_25: -1.62926861e+01 + sys_corr_26: 5.92864574e+00 sys_corr_27: 2.35673575e+01 sys_corr_28: -7.93425939e+00 sys_corr_29: -2.93878510e+00 @@ -15984,100 +15984,100 @@ bins: sys_corr_36: -3.45653566e-01 sys_corr_37: 1.10564765e+00 sys_corr_38: 4.18611252e-02 - sys_corr_39: 2.89645395e-01 + sys_corr_39: -2.89645395e-01 sys_corr_40: -4.15511745e-01 sys_corr_41: 1.69012992e+00 - sys_corr_42: -1.24761230e+00 + sys_corr_42: 1.24761230e+00 sys_corr_43: -5.46725695e-01 - sys_corr_44: 1.26811183e+00 - sys_corr_45: 5.66224180e-01 - sys_corr_46: 2.59446276e-01 - sys_corr_47: -2.50449019e+00 - sys_corr_48: 5.00039658e+00 + sys_corr_44: -1.26811183e+00 + sys_corr_45: -5.66224180e-01 + sys_corr_46: -2.59446276e-01 + sys_corr_47: 2.50449019e+00 + sys_corr_48: -5.00039658e+00 sys_corr_49: 4.34661706e+00 - sys_corr_50: -1.40238297e+00 - sys_corr_51: -7.70857921e-01 - sys_corr_52: 4.14869697e-01 - sys_corr_53: -3.25906136e-01 - sys_corr_54: 2.29492115e+00 + sys_corr_50: 1.40238297e+00 + sys_corr_51: 7.70857921e-01 + sys_corr_52: -4.14869697e-01 + sys_corr_53: 3.25906136e-01 + sys_corr_54: -2.29492115e+00 sys_corr_55: -4.42016317e-01 sys_corr_56: 2.86347961e-01 - sys_corr_57: 4.26491998e-01 + sys_corr_57: -4.26491998e-01 sys_corr_58: 2.44925755e-03 - sys_corr_59: 2.28647525e-01 + sys_corr_59: -2.28647525e-01 sys_corr_60: 1.75235070e+00 sys_corr_61: -6.21939619e-01 sys_corr_62: -1.27646882e+00 - sys_corr_63: -9.44654821e-01 + sys_corr_63: 9.44654821e-01 sys_corr_64: 8.50131698e-01 sys_corr_65: 1.00972018e+00 - sys_corr_66: -4.94847007e-01 - sys_corr_67: -3.07059125e-01 - sys_corr_68: 6.55696308e-01 - sys_corr_69: 8.34512550e-01 - sys_corr_70: 1.15830862e+00 - sys_corr_71: -1.55255979e-01 - sys_corr_72: -1.33664987e+00 - sys_corr_73: 1.59334494e-01 - sys_corr_74: 2.39184338e+00 - sys_corr_75: -1.60380712e+00 + sys_corr_66: 4.94847007e-01 + sys_corr_67: 3.07059125e-01 + sys_corr_68: -6.55696308e-01 + sys_corr_69: -8.34512550e-01 + sys_corr_70: -1.15830862e+00 + sys_corr_71: 1.59334494e-01 + sys_corr_72: 1.33664987e+00 + sys_corr_73: 1.55255979e-01 + sys_corr_74: -2.39184338e+00 + sys_corr_75: 1.60380712e+00 sys_corr_76: -2.21326985e+00 sys_corr_77: 2.37564446e+00 - sys_corr_78: 1.15346766e+00 + sys_corr_78: 1.02223187e+00 sys_corr_79: -1.57802349e-01 - sys_corr_80: -1.02223187e+00 + sys_corr_80: -1.15346766e+00 sys_corr_81: 1.81709256e+00 - sys_corr_82: 1.18348911e+00 - sys_corr_83: 3.22841638e-02 + sys_corr_82: 3.22841638e-02 + sys_corr_83: -1.18348911e+00 sys_corr_84: 5.25593663e+00 - sys_corr_85: 1.12315460e+00 - sys_corr_86: -1.75451714e+00 + sys_corr_85: -1.12315460e+00 + sys_corr_86: 1.75451714e+00 sys_corr_87: -6.79081709e-01 sys_corr_88: -2.85343194e-01 - sys_corr_89: -8.15536523e-01 - sys_corr_90: -6.88759997e+00 + sys_corr_89: 8.15536523e-01 + sys_corr_90: 6.88759997e+00 sys_corr_91: 3.39493688e+00 - sys_corr_92: -6.99275348e-02 - sys_corr_93: -1.97606572e+00 + sys_corr_92: 6.99275348e-02 + sys_corr_93: 4.13190553e+00 sys_corr_94: -5.84551069e+00 - sys_corr_95: -4.13190553e+00 + sys_corr_95: 1.97606572e+00 sys_corr_96: 5.53728035e-01 sys_corr_97: -5.49466389e+00 sys_corr_98: -3.75924162e+00 sys_corr_99: -4.56052062e+00 - sys_corr_100: -2.09258297e+01 - sys_corr_101: 1.03246642e+01 - sys_corr_102: -1.45285741e+01 - sys_corr_103: -6.21790932e+00 - sys_corr_104: -4.19506245e+00 - sys_corr_105: -1.11706371e+01 - sys_corr_106: 1.59653393e+01 - sys_corr_107: 2.75652689e+01 - sys_corr_108: 9.63224581e+00 - sys_corr_109: -1.70235209e+01 - sys_corr_110: -1.32039192e+01 - sys_corr_111: 1.76747476e+00 - sys_corr_112: -1.28640209e+01 + sys_corr_100: -4.19506245e+00 + sys_corr_101: -6.21790932e+00 + sys_corr_102: 1.11706371e+01 + sys_corr_103: 1.45285741e+01 + sys_corr_104: 1.03246642e+01 + sys_corr_105: -2.09258297e+01 + sys_corr_106: -1.59653393e+01 + sys_corr_107: -2.75652689e+01 + sys_corr_108: -1.76747476e+00 + sys_corr_109: -9.63224581e+00 + sys_corr_110: 1.70235209e+01 + sys_corr_111: -1.32039192e+01 + sys_corr_112: 1.28640209e+01 sys_corr_113: -1.13389817e+01 sys_corr_114: 2.54614683e-03 - sys_corr_115: -3.46109486e+01 - sys_corr_116: 2.68794382e+00 + sys_corr_115: 3.46109486e+01 + sys_corr_116: -2.68794382e+00 sys_corr_117: 2.03836151e-01 - sys_corr_118: -3.70920536e+00 - sys_corr_119: 2.23451545e-01 + sys_corr_118: 3.70920536e+00 + sys_corr_119: -2.23451545e-01 sys_corr_120: 4.47333514e-01 sys_corr_121: 5.39284067e-01 sys_corr_122: -1.17651806e+00 - sys_corr_123: 4.54102316e-01 + sys_corr_123: -4.54102316e-01 sys_corr_124: -1.45132250e+00 - sys_corr_125: 6.33334117e-01 + sys_corr_125: -6.33334117e-01 sys_corr_126: -3.60639815e-01 - sys_corr_127: 1.03993071e+00 - sys_corr_128: 1.70396619e+00 - sys_corr_129: 4.46001089e+01 + sys_corr_127: -1.03993071e+00 + sys_corr_128: -1.70396619e+00 + sys_corr_129: -4.46001089e+01 sys_corr_130: -2.80934772e-03 - sys_corr_131: 4.22420731e-01 - sys_corr_132: 1.57850594e+00 + sys_corr_131: 1.57850594e+00 + sys_corr_132: -4.22420731e-01 stat: 0.0 luminosity: 2.54893760e+01 - sys_corr_1: -1.21283793e+01 @@ -16086,26 +16086,26 @@ bins: sys_corr_4: -4.83981694e+00 sys_corr_5: -2.11834543e+01 sys_corr_6: -6.01981241e+00 - sys_corr_7: 4.10485044e+00 - sys_corr_8: 1.71386933e+00 + sys_corr_7: -4.10485044e+00 + sys_corr_8: -1.71386933e+00 sys_corr_9: -1.22200293e+00 - sys_corr_10: 4.20749505e-01 - sys_corr_11: 4.54470167e-01 - sys_corr_12: -8.39168169e-01 + sys_corr_10: -4.20749505e-01 + sys_corr_11: -4.54470167e-01 + sys_corr_12: 8.39168169e-01 sys_corr_13: -2.52373274e+00 - sys_corr_14: 3.53394444e-01 - sys_corr_15: -1.71402576e-01 - sys_corr_16: 1.83638017e+00 - sys_corr_17: 1.95166768e-01 - sys_corr_18: -8.82281973e-01 - sys_corr_19: -1.09958165e+00 - sys_corr_20: 2.97004551e+00 - sys_corr_21: 3.02260629e+00 - sys_corr_22: 2.92685653e+00 - sys_corr_23: -5.50426135e+00 - sys_corr_24: -4.56444195e+00 - sys_corr_25: -1.65782822e+01 - sys_corr_26: 8.24397910e+00 + sys_corr_14: -3.53394444e-01 + sys_corr_15: 1.71402576e-01 + sys_corr_16: -1.83638017e+00 + sys_corr_17: -1.95166768e-01 + sys_corr_18: 8.82281973e-01 + sys_corr_19: 1.09958165e+00 + sys_corr_20: -2.97004551e+00 + sys_corr_21: -3.02260629e+00 + sys_corr_22: -2.92685653e+00 + sys_corr_23: 5.50426135e+00 + sys_corr_24: 4.56444195e+00 + sys_corr_25: 1.65782822e+01 + sys_corr_26: -8.24397910e+00 sys_corr_27: 1.14037916e+01 sys_corr_28: 2.93477569e+00 sys_corr_29: 1.62857177e+00 @@ -16118,100 +16118,100 @@ bins: sys_corr_36: 1.60455774e-01 sys_corr_37: 1.19613579e+00 sys_corr_38: -1.26912069e-02 - sys_corr_39: 2.76262013e-01 + sys_corr_39: -2.76262013e-01 sys_corr_40: -5.17609692e-01 sys_corr_41: 1.80644111e+00 - sys_corr_42: -8.45513328e-01 + sys_corr_42: 8.45513328e-01 sys_corr_43: 7.12548168e-02 - sys_corr_44: 1.16647919e+00 - sys_corr_45: 7.37392710e-01 - sys_corr_46: 1.23427224e-01 - sys_corr_47: -7.19720592e-01 - sys_corr_48: 1.79675516e+00 + sys_corr_44: -1.16647919e+00 + sys_corr_45: -7.37392710e-01 + sys_corr_46: -1.23427224e-01 + sys_corr_47: 7.19720592e-01 + sys_corr_48: -1.79675516e+00 sys_corr_49: 2.60992012e+00 - sys_corr_50: -2.11040756e+00 - sys_corr_51: -2.17860776e+00 - sys_corr_52: -4.22098340e-01 - sys_corr_53: -4.94410276e-01 - sys_corr_54: 2.39292339e+00 + sys_corr_50: 2.11040756e+00 + sys_corr_51: 2.17860776e+00 + sys_corr_52: 4.22098340e-01 + sys_corr_53: 4.94410276e-01 + sys_corr_54: -2.39292339e+00 sys_corr_55: 1.11371196e+00 sys_corr_56: 1.09215077e+00 - sys_corr_57: 4.02723163e-01 + sys_corr_57: -4.02723163e-01 sys_corr_58: -3.79950036e-01 - sys_corr_59: 4.30334416e-01 + sys_corr_59: -4.30334416e-01 sys_corr_60: 1.26948377e+00 sys_corr_61: -1.39532527e+00 sys_corr_62: -1.21208204e+00 - sys_corr_63: -7.43326034e-01 + sys_corr_63: 7.43326034e-01 sys_corr_64: -3.36383886e-01 sys_corr_65: 3.31396119e-01 - sys_corr_66: -4.00627219e-01 - sys_corr_67: 7.39219962e-02 - sys_corr_68: 6.66723682e-01 - sys_corr_69: 6.70296483e-01 - sys_corr_70: 7.95584783e-01 - sys_corr_71: -8.14643919e-01 - sys_corr_72: -1.50432345e+00 - sys_corr_73: 2.71539556e-01 - sys_corr_74: 1.49307382e+00 - sys_corr_75: -1.40665363e+00 + sys_corr_66: 4.00627219e-01 + sys_corr_67: -7.39219962e-02 + sys_corr_68: -6.66723682e-01 + sys_corr_69: -6.70296483e-01 + sys_corr_70: -7.95584783e-01 + sys_corr_71: 2.71539556e-01 + sys_corr_72: 1.50432345e+00 + sys_corr_73: 8.14643919e-01 + sys_corr_74: -1.49307382e+00 + sys_corr_75: 1.40665363e+00 sys_corr_76: -2.05813084e+00 sys_corr_77: 2.04400445e+00 - sys_corr_78: 1.29190049e+00 + sys_corr_78: 1.64752069e+00 sys_corr_79: -5.75517064e-01 - sys_corr_80: -1.64752069e+00 + sys_corr_80: -1.29190049e+00 sys_corr_81: 8.58559102e-01 - sys_corr_82: 7.19600870e-01 - sys_corr_83: 5.83572245e-01 + sys_corr_82: 5.83572245e-01 + sys_corr_83: -7.19600870e-01 sys_corr_84: 5.69374106e+00 - sys_corr_85: 2.12454239e+00 - sys_corr_86: -2.46192034e-01 + sys_corr_85: -2.12454239e+00 + sys_corr_86: 2.46192034e-01 sys_corr_87: -2.24178141e-01 sys_corr_88: 3.25417326e-01 - sys_corr_89: -4.08359079e-01 - sys_corr_90: -6.96341270e+00 + sys_corr_89: 4.08359079e-01 + sys_corr_90: 6.96341270e+00 sys_corr_91: 2.51325895e+00 - sys_corr_92: -3.27974856e-01 - sys_corr_93: -1.53639197e+00 + sys_corr_92: 3.27974856e-01 + sys_corr_93: 3.82254583e+00 sys_corr_94: -3.69900801e+00 - sys_corr_95: -3.82254583e+00 + sys_corr_95: 1.53639197e+00 sys_corr_96: 3.38277374e-01 sys_corr_97: -3.51056045e+00 sys_corr_98: -2.49739378e+00 sys_corr_99: -2.65485747e+00 - sys_corr_100: -1.52308586e+01 - sys_corr_101: 6.89780471e+00 - sys_corr_102: -9.53890506e+00 - sys_corr_103: -3.56456619e+00 - sys_corr_104: -3.05688649e+00 - sys_corr_105: -7.05504585e+00 - sys_corr_106: 1.16541834e+01 - sys_corr_107: 2.23384093e+01 - sys_corr_108: 1.29145619e+00 - sys_corr_109: -1.63717572e+01 - sys_corr_110: -9.97010227e+00 - sys_corr_111: 1.77913934e+00 - sys_corr_112: -1.01632091e+01 + sys_corr_100: -3.05688649e+00 + sys_corr_101: -3.56456619e+00 + sys_corr_102: 7.05504585e+00 + sys_corr_103: 9.53890506e+00 + sys_corr_104: 6.89780471e+00 + sys_corr_105: -1.52308586e+01 + sys_corr_106: -1.16541834e+01 + sys_corr_107: -2.23384093e+01 + sys_corr_108: -1.77913934e+00 + sys_corr_109: -1.29145619e+00 + sys_corr_110: 1.63717572e+01 + sys_corr_111: -9.97010227e+00 + sys_corr_112: 1.01632091e+01 sys_corr_113: -8.06913590e+00 sys_corr_114: 9.33989854e-02 - sys_corr_115: 3.07147067e+01 - sys_corr_116: -4.99860763e+00 + sys_corr_115: -3.07147067e+01 + sys_corr_116: 4.99860763e+00 sys_corr_117: 1.31380551e+00 - sys_corr_118: -3.75547084e+01 - sys_corr_119: -4.56912935e-01 + sys_corr_118: 3.75547084e+01 + sys_corr_119: 4.56912935e-01 sys_corr_120: 1.61198749e+00 sys_corr_121: -1.67196495e-01 sys_corr_122: -1.79912458e+00 - sys_corr_123: 1.14877456e+00 + sys_corr_123: -1.14877456e+00 sys_corr_124: 4.95452754e-01 - sys_corr_125: 1.76697766e+00 + sys_corr_125: -1.76697766e+00 sys_corr_126: -5.20146763e-01 - sys_corr_127: 4.18269450e-01 - sys_corr_128: 2.11204959e+00 - sys_corr_129: 1.00450601e+00 + sys_corr_127: -4.18269450e-01 + sys_corr_128: -2.11204959e+00 + sys_corr_129: -1.00450601e+00 sys_corr_130: 4.81782027e-02 - sys_corr_131: 1.39608562e+00 - sys_corr_132: 3.80743612e+00 + sys_corr_131: 3.80743612e+00 + sys_corr_132: -1.39608562e+00 stat: 0.0 luminosity: 1.60038560e+01 - sys_corr_1: -1.20781109e+01 @@ -16220,26 +16220,26 @@ bins: sys_corr_4: -2.94357891e+00 sys_corr_5: -2.49894333e+01 sys_corr_6: -5.53600998e+00 - sys_corr_7: 5.57022594e+00 - sys_corr_8: 2.59508164e+00 + sys_corr_7: -5.57022594e+00 + sys_corr_8: -2.59508164e+00 sys_corr_9: -1.39481236e-01 - sys_corr_10: 3.74382989e-01 - sys_corr_11: 8.49159441e-02 - sys_corr_12: -3.22122789e+00 + sys_corr_10: -3.74382989e-01 + sys_corr_11: -8.49159441e-02 + sys_corr_12: 3.22122789e+00 sys_corr_13: -4.11360244e+00 - sys_corr_14: 1.76779328e+00 - sys_corr_15: -2.03077991e+00 - sys_corr_16: 3.19960923e+00 - sys_corr_17: -9.61470350e-01 - sys_corr_18: -1.99275120e+00 - sys_corr_19: 1.28657346e+00 - sys_corr_20: -3.29556273e+00 - sys_corr_21: 1.82145952e-01 - sys_corr_22: 4.26702123e+00 - sys_corr_23: 1.73773304e+00 - sys_corr_24: -4.37888443e+00 - sys_corr_25: -3.23611264e+00 - sys_corr_26: -9.44936331e+00 + sys_corr_14: -1.76779328e+00 + sys_corr_15: 2.03077991e+00 + sys_corr_16: -3.19960923e+00 + sys_corr_17: 9.61470350e-01 + sys_corr_18: 1.99275120e+00 + sys_corr_19: -1.28657346e+00 + sys_corr_20: 3.29556273e+00 + sys_corr_21: -1.82145952e-01 + sys_corr_22: -4.26702123e+00 + sys_corr_23: -1.73773304e+00 + sys_corr_24: 4.37888443e+00 + sys_corr_25: 3.23611264e+00 + sys_corr_26: 9.44936331e+00 sys_corr_27: -1.14881043e+00 sys_corr_28: -1.23457945e+01 sys_corr_29: -1.17208446e+01 @@ -16252,100 +16252,100 @@ bins: sys_corr_36: -8.77196630e-01 sys_corr_37: 1.46137879e+00 sys_corr_38: 5.05229054e-01 - sys_corr_39: 1.21025635e-01 + sys_corr_39: -1.21025635e-01 sys_corr_40: 5.32955005e-02 sys_corr_41: 7.40638973e-01 - sys_corr_42: -3.58346076e-01 + sys_corr_42: 3.58346076e-01 sys_corr_43: -6.24092200e-01 - sys_corr_44: 1.29980492e+00 - sys_corr_45: 4.08425958e-01 - sys_corr_46: 8.51486529e-01 - sys_corr_47: -1.25642704e+00 - sys_corr_48: 2.98779431e+00 + sys_corr_44: -1.29980492e+00 + sys_corr_45: -4.08425958e-01 + sys_corr_46: -8.51486529e-01 + sys_corr_47: 1.25642704e+00 + sys_corr_48: -2.98779431e+00 sys_corr_49: 2.06900140e+00 - sys_corr_50: 9.95833834e-01 - sys_corr_51: 3.93582615e+00 - sys_corr_52: 2.45314746e+00 - sys_corr_53: 7.79438145e-01 - sys_corr_54: -3.65799092e-01 + sys_corr_50: -9.95833834e-01 + sys_corr_51: -3.93582615e+00 + sys_corr_52: -2.45314746e+00 + sys_corr_53: -7.79438145e-01 + sys_corr_54: 3.65799092e-01 sys_corr_55: -1.52490147e+00 sys_corr_56: -1.41621757e-01 - sys_corr_57: -5.07784464e-01 + sys_corr_57: 5.07784464e-01 sys_corr_58: -7.96832068e-01 - sys_corr_59: -1.04161486e+00 + sys_corr_59: 1.04161486e+00 sys_corr_60: 8.81603639e-01 sys_corr_61: 2.73394206e-01 sys_corr_62: -1.74991735e-01 - sys_corr_63: -2.71684623e-01 + sys_corr_63: 2.71684623e-01 sys_corr_64: -9.08126759e-02 sys_corr_65: 4.44623522e-02 - sys_corr_66: 1.54202433e-01 - sys_corr_67: -1.88208388e-01 - sys_corr_68: 9.90647564e-01 - sys_corr_69: 9.08294085e-01 - sys_corr_70: 9.74205097e-01 - sys_corr_71: -2.54931831e-01 - sys_corr_72: 4.18150364e-01 - sys_corr_73: -2.51304884e-01 - sys_corr_74: 3.79670174e-01 - sys_corr_75: -8.27394258e-01 + sys_corr_66: -1.54202433e-01 + sys_corr_67: 1.88208388e-01 + sys_corr_68: -9.90647564e-01 + sys_corr_69: -9.08294085e-01 + sys_corr_70: -9.74205097e-01 + sys_corr_71: -2.51304884e-01 + sys_corr_72: -4.18150364e-01 + sys_corr_73: 2.54931831e-01 + sys_corr_74: -3.79670174e-01 + sys_corr_75: 8.27394258e-01 sys_corr_76: 2.13710703e-01 sys_corr_77: 1.72719132e+00 - sys_corr_78: 1.24513558e+00 + sys_corr_78: 7.11194669e-01 sys_corr_79: 1.00794677e+00 - sys_corr_80: -7.11194669e-01 + sys_corr_80: -1.24513558e+00 sys_corr_81: 1.00434259e+00 - sys_corr_82: 4.18975022e-01 - sys_corr_83: 1.53797594e+00 + sys_corr_82: 1.53797594e+00 + sys_corr_83: -4.18975022e-01 sys_corr_84: 6.28807577e+00 - sys_corr_85: 3.54936388e+00 - sys_corr_86: 2.92751666e-01 + sys_corr_85: -3.54936388e+00 + sys_corr_86: -2.92751666e-01 sys_corr_87: -5.07613505e-01 sys_corr_88: -8.43106638e-01 - sys_corr_89: -3.50370181e-01 - sys_corr_90: -7.51981737e+00 + sys_corr_89: 3.50370181e-01 + sys_corr_90: 7.51981737e+00 sys_corr_91: 1.61654641e+00 - sys_corr_92: -7.85583599e-02 - sys_corr_93: -1.14227110e+00 + sys_corr_92: 7.85583599e-02 + sys_corr_93: 4.07347197e+00 sys_corr_94: -1.98193898e+00 - sys_corr_95: -4.07347197e+00 + sys_corr_95: 1.14227110e+00 sys_corr_96: 4.78134268e-01 sys_corr_97: -1.70034568e+00 sys_corr_98: -1.43276898e+00 sys_corr_99: -1.28616733e+00 - sys_corr_100: -1.19799961e+01 - sys_corr_101: 4.20318403e+00 - sys_corr_102: -5.68689509e+00 - sys_corr_103: -2.56965224e+00 - sys_corr_104: -1.21322795e+00 - sys_corr_105: -3.87863069e+00 - sys_corr_106: 9.30141256e+00 - sys_corr_107: 2.08406570e+01 - sys_corr_108: 7.56409717e+00 - sys_corr_109: -1.82219711e+01 - sys_corr_110: -1.15865857e+01 - sys_corr_111: 1.48871935e+00 - sys_corr_112: -1.15795027e+01 + sys_corr_100: -1.21322795e+00 + sys_corr_101: -2.56965224e+00 + sys_corr_102: 3.87863069e+00 + sys_corr_103: 5.68689509e+00 + sys_corr_104: 4.20318403e+00 + sys_corr_105: -1.19799961e+01 + sys_corr_106: -9.30141256e+00 + sys_corr_107: -2.08406570e+01 + sys_corr_108: -1.48871935e+00 + sys_corr_109: -7.56409717e+00 + sys_corr_110: 1.82219711e+01 + sys_corr_111: -1.15865857e+01 + sys_corr_112: 1.15795027e+01 sys_corr_113: -1.24411986e+01 sys_corr_114: 7.51323445e-02 - sys_corr_115: 2.90858410e+01 - sys_corr_116: -5.00030645e+00 + sys_corr_115: -2.90858410e+01 + sys_corr_116: 5.00030645e+00 sys_corr_117: 2.40857810e+00 - sys_corr_118: 3.02797727e+01 - sys_corr_119: -3.92346361e-01 + sys_corr_118: -3.02797727e+01 + sys_corr_119: 3.92346361e-01 sys_corr_120: 1.44282849e+00 sys_corr_121: -4.86837693e-01 sys_corr_122: -4.65900514e+00 - sys_corr_123: 2.52252788e+00 + sys_corr_123: -2.52252788e+00 sys_corr_124: -1.69319496e-01 - sys_corr_125: 3.03227978e+00 + sys_corr_125: -3.03227978e+00 sys_corr_126: -1.57684627e+00 - sys_corr_127: 4.30517459e-01 - sys_corr_128: 3.34010735e+00 - sys_corr_129: 8.39196189e+00 + sys_corr_127: -4.30517459e-01 + sys_corr_128: -3.34010735e+00 + sys_corr_129: -8.39196189e+00 sys_corr_130: 8.44208722e-01 - sys_corr_131: 9.01411808e-01 - sys_corr_132: 1.67795794e+01 + sys_corr_131: 1.67795794e+01 + sys_corr_132: -9.01411808e-01 stat: 0.0 luminosity: 1.15077820e+01 - sys_corr_1: -4.78342540e+00 @@ -16354,26 +16354,26 @@ bins: sys_corr_4: -1.26283972e+00 sys_corr_5: -1.00851607e+01 sys_corr_6: -2.88464256e+00 - sys_corr_7: 4.36816066e+00 - sys_corr_8: 2.30086551e+00 + sys_corr_7: -4.36816066e+00 + sys_corr_8: -2.30086551e+00 sys_corr_9: -1.49980398e+00 - sys_corr_10: 4.31940577e-01 - sys_corr_11: 2.21449378e+00 - sys_corr_12: 2.12900767e+00 + sys_corr_10: -4.31940577e-01 + sys_corr_11: -2.21449378e+00 + sys_corr_12: -2.12900767e+00 sys_corr_13: 1.39706695e-01 - sys_corr_14: 1.55147412e+00 - sys_corr_15: -3.30277563e-02 - sys_corr_16: 1.22287769e+00 - sys_corr_17: -1.66436244e+00 - sys_corr_18: -1.23560057e+00 - sys_corr_19: 2.00576173e+00 - sys_corr_20: -2.84517395e+00 - sys_corr_21: -6.55261921e-01 - sys_corr_22: 1.20078804e-01 - sys_corr_23: 3.67743059e+00 - sys_corr_24: -4.75419136e+00 - sys_corr_25: -2.47233087e-01 - sys_corr_26: -2.16230855e+00 + sys_corr_14: -1.55147412e+00 + sys_corr_15: 3.30277563e-02 + sys_corr_16: -1.22287769e+00 + sys_corr_17: 1.66436244e+00 + sys_corr_18: 1.23560057e+00 + sys_corr_19: -2.00576173e+00 + sys_corr_20: 2.84517395e+00 + sys_corr_21: 6.55261921e-01 + sys_corr_22: -1.20078804e-01 + sys_corr_23: -3.67743059e+00 + sys_corr_24: 4.75419136e+00 + sys_corr_25: 2.47233087e-01 + sys_corr_26: 2.16230855e+00 sys_corr_27: -1.28791579e-01 sys_corr_28: 9.05147955e+00 sys_corr_29: 7.30890520e+00 @@ -16386,100 +16386,100 @@ bins: sys_corr_36: 1.07222180e+00 sys_corr_37: 3.48516901e-01 sys_corr_38: 1.78796570e-01 - sys_corr_39: -4.63354260e-01 + sys_corr_39: 4.63354260e-01 sys_corr_40: -5.45218183e-01 sys_corr_41: 1.79340875e-02 - sys_corr_42: -7.63648542e-01 + sys_corr_42: 7.63648542e-01 sys_corr_43: -2.03091853e-01 - sys_corr_44: 4.44710377e-01 - sys_corr_45: 8.01568739e-01 - sys_corr_46: -4.15823952e-02 - sys_corr_47: -1.58502266e+00 - sys_corr_48: 2.38766386e+00 + sys_corr_44: -4.44710377e-01 + sys_corr_45: -8.01568739e-01 + sys_corr_46: 4.15823952e-02 + sys_corr_47: 1.58502266e+00 + sys_corr_48: -2.38766386e+00 sys_corr_49: 1.46218843e+00 - sys_corr_50: 2.13616536e+00 - sys_corr_51: 3.14594172e+00 - sys_corr_52: 2.10962033e+00 - sys_corr_53: 7.01154169e-01 - sys_corr_54: 4.49394085e-01 + sys_corr_50: -2.13616536e+00 + sys_corr_51: -3.14594172e+00 + sys_corr_52: -2.10962033e+00 + sys_corr_53: -7.01154169e-01 + sys_corr_54: -4.49394085e-01 sys_corr_55: -7.87217828e-02 sys_corr_56: -2.08011078e-01 - sys_corr_57: -9.26655745e-01 + sys_corr_57: 9.26655745e-01 sys_corr_58: -6.34198694e-01 - sys_corr_59: -4.65590923e-01 + sys_corr_59: 4.65590923e-01 sys_corr_60: 4.97211681e-01 sys_corr_61: -2.52518746e-02 sys_corr_62: 2.26808803e-01 - sys_corr_63: -1.00394687e-01 + sys_corr_63: 1.00394687e-01 sys_corr_64: 3.80626349e-01 sys_corr_65: -6.29160705e-01 - sys_corr_66: 9.78513901e-01 - sys_corr_67: -7.56118297e-01 - sys_corr_68: -1.04696695e-02 - sys_corr_69: 1.23182893e+00 - sys_corr_70: 9.81126481e-01 - sys_corr_71: -4.74065103e-01 - sys_corr_72: 3.93636147e-01 - sys_corr_73: -4.55320090e-02 - sys_corr_74: 9.51875340e-01 - sys_corr_75: -1.23527301e+00 + sys_corr_66: -9.78513901e-01 + sys_corr_67: 7.56118297e-01 + sys_corr_68: 1.04696695e-02 + sys_corr_69: -1.23182893e+00 + sys_corr_70: -9.81126481e-01 + sys_corr_71: -4.55320090e-02 + sys_corr_72: -3.93636147e-01 + sys_corr_73: 4.74065103e-01 + sys_corr_74: -9.51875340e-01 + sys_corr_75: 1.23527301e+00 sys_corr_76: 1.09449825e+00 sys_corr_77: 1.70545999e+00 - sys_corr_78: 8.88695981e-01 + sys_corr_78: 8.11365748e-01 sys_corr_79: 9.68609867e-01 - sys_corr_80: -8.11365748e-01 + sys_corr_80: -8.88695981e-01 sys_corr_81: 8.53563413e-01 - sys_corr_82: 7.26319814e-01 - sys_corr_83: 1.51769723e+00 + sys_corr_82: 1.51769723e+00 + sys_corr_83: -7.26319814e-01 sys_corr_84: 3.92046221e+00 - sys_corr_85: 1.84193402e+00 - sys_corr_86: 3.17719137e-02 + sys_corr_85: -1.84193402e+00 + sys_corr_86: -3.17719137e-02 sys_corr_87: 2.10814613e-01 sys_corr_88: -1.37360681e-01 - sys_corr_89: -1.66711872e+00 - sys_corr_90: -4.46071848e+00 + sys_corr_89: 1.66711872e+00 + sys_corr_90: 4.46071848e+00 sys_corr_91: -7.14477304e-02 - sys_corr_92: 1.57093914e-01 - sys_corr_93: -1.02509248e+00 + sys_corr_92: -1.57093914e-01 + sys_corr_93: 1.79882986e+00 sys_corr_94: -2.75452736e+00 - sys_corr_95: -1.79882986e+00 + sys_corr_95: 1.02509248e+00 sys_corr_96: -4.62170205e-02 sys_corr_97: -4.09733016e+00 sys_corr_98: -2.06239189e+00 sys_corr_99: -2.09130142e+00 - sys_corr_100: -7.55648201e+00 - sys_corr_101: 3.22904847e+00 - sys_corr_102: -4.87490143e+00 - sys_corr_103: -1.05089173e+00 - sys_corr_104: -7.25269580e-01 - sys_corr_105: -3.63778523e+00 - sys_corr_106: 5.69345024e+00 - sys_corr_107: 1.27989960e+01 - sys_corr_108: 2.82413862e+00 - sys_corr_109: -1.11664528e+01 - sys_corr_110: -6.95980137e+00 - sys_corr_111: 1.95485867e+00 - sys_corr_112: -5.77981412e+00 + sys_corr_100: -7.25269580e-01 + sys_corr_101: -1.05089173e+00 + sys_corr_102: 3.63778523e+00 + sys_corr_103: 4.87490143e+00 + sys_corr_104: 3.22904847e+00 + sys_corr_105: -7.55648201e+00 + sys_corr_106: -5.69345024e+00 + sys_corr_107: -1.27989960e+01 + sys_corr_108: -1.95485867e+00 + sys_corr_109: -2.82413862e+00 + sys_corr_110: 1.11664528e+01 + sys_corr_111: -6.95980137e+00 + sys_corr_112: 5.77981412e+00 sys_corr_113: -7.83272905e+00 sys_corr_114: -6.14918214e-01 - sys_corr_115: 1.42532550e+01 - sys_corr_116: -2.83206333e+00 + sys_corr_115: -1.42532550e+01 + sys_corr_116: 2.83206333e+00 sys_corr_117: 1.65667425e+00 - sys_corr_118: 9.52465247e+00 - sys_corr_119: 5.44038023e-01 + sys_corr_118: -9.52465247e+00 + sys_corr_119: -5.44038023e-01 sys_corr_120: 8.19859445e-01 sys_corr_121: -5.71969674e-01 sys_corr_122: -2.45259342e+00 - sys_corr_123: 1.82015301e+00 + sys_corr_123: -1.82015301e+00 sys_corr_124: 1.99808679e-01 - sys_corr_125: 2.47578753e+00 + sys_corr_125: -2.47578753e+00 sys_corr_126: -1.14830048e+00 - sys_corr_127: -1.96705838e-02 - sys_corr_128: 1.60603528e+00 - sys_corr_129: 5.00896746e+00 + sys_corr_127: 1.96705838e-02 + sys_corr_128: -1.60603528e+00 + sys_corr_129: -5.00896746e+00 sys_corr_130: 1.30374668e+00 - sys_corr_131: 2.27939062e+00 - sys_corr_132: -3.62953704e+01 + sys_corr_131: -3.62953704e+01 + sys_corr_132: -2.27939062e+00 stat: 0.0 luminosity: 6.068678 - sys_corr_1: -1.92324660e+00 @@ -16488,26 +16488,26 @@ bins: sys_corr_4: -1.92527911e-01 sys_corr_5: -4.44888523e+00 sys_corr_6: -8.63775284e-01 - sys_corr_7: 1.54398462e+00 - sys_corr_8: 9.88991008e-01 + sys_corr_7: -1.54398462e+00 + sys_corr_8: -9.88991008e-01 sys_corr_9: -7.68029129e-01 - sys_corr_10: 2.29928815e-01 - sys_corr_11: 3.58409420e-01 - sys_corr_12: -1.03968057e-01 + sys_corr_10: -2.29928815e-01 + sys_corr_11: -3.58409420e-01 + sys_corr_12: 1.03968057e-01 sys_corr_13: -5.63352471e-01 - sys_corr_14: 5.78683139e-01 - sys_corr_15: -1.86542416e-01 - sys_corr_16: 6.06072625e-01 - sys_corr_17: -6.90909588e-01 - sys_corr_18: -4.36988841e-01 - sys_corr_19: 8.57325068e-01 - sys_corr_20: -1.42892756e+00 - sys_corr_21: -4.41466976e-01 - sys_corr_22: -1.02285404e-01 - sys_corr_23: 1.58045751e+00 - sys_corr_24: -2.47191854e+00 - sys_corr_25: -7.74685387e-01 - sys_corr_26: -6.45437317e-01 + sys_corr_14: -5.78683139e-01 + sys_corr_15: 1.86542416e-01 + sys_corr_16: -6.06072625e-01 + sys_corr_17: 6.90909588e-01 + sys_corr_18: 4.36988841e-01 + sys_corr_19: -8.57325068e-01 + sys_corr_20: 1.42892756e+00 + sys_corr_21: 4.41466976e-01 + sys_corr_22: 1.02285404e-01 + sys_corr_23: -1.58045751e+00 + sys_corr_24: 2.47191854e+00 + sys_corr_25: 7.74685387e-01 + sys_corr_26: 6.45437317e-01 sys_corr_27: 3.71942719e-01 sys_corr_28: -1.60313095e-02 sys_corr_29: -1.14620183e+00 @@ -16520,100 +16520,100 @@ bins: sys_corr_36: -7.43479726e-01 sys_corr_37: 5.15270010e-01 sys_corr_38: -1.51730012e-01 - sys_corr_39: 2.79468275e-01 + sys_corr_39: -2.79468275e-01 sys_corr_40: 1.55174815e-01 sys_corr_41: -2.78582430e-01 - sys_corr_42: 7.63806674e-01 + sys_corr_42: -7.63806674e-01 sys_corr_43: 1.19579670e-01 - sys_corr_44: 2.84015370e+00 - sys_corr_45: -1.03878980e-01 - sys_corr_46: -4.91852873e-02 - sys_corr_47: 2.53538258e+00 - sys_corr_48: -5.41510490e+00 + sys_corr_44: -2.84015370e+00 + sys_corr_45: 1.03878980e-01 + sys_corr_46: 4.91852873e-02 + sys_corr_47: -2.53538258e+00 + sys_corr_48: 5.41510490e+00 sys_corr_49: -1.99474198e+00 - sys_corr_50: -4.99500643e+00 - sys_corr_51: -4.77953599e+00 - sys_corr_52: -3.74877738e+00 - sys_corr_53: -2.38905396e-01 - sys_corr_54: 1.35521618e+00 + sys_corr_50: 4.99500643e+00 + sys_corr_51: 4.77953599e+00 + sys_corr_52: 3.74877738e+00 + sys_corr_53: 2.38905396e-01 + sys_corr_54: -1.35521618e+00 sys_corr_55: 1.26663981e+00 sys_corr_56: 1.15180775e+00 - sys_corr_57: 1.10415969e-01 + sys_corr_57: -1.10415969e-01 sys_corr_58: 8.51040430e-02 - sys_corr_59: -1.72990258e-01 + sys_corr_59: 1.72990258e-01 sys_corr_60: 1.99820848e-01 sys_corr_61: -3.08488336e-01 sys_corr_62: 1.93664215e-01 - sys_corr_63: 1.76613846e-01 + sys_corr_63: -1.76613846e-01 sys_corr_64: -1.50540667e-01 sys_corr_65: -2.15426812e-01 - sys_corr_66: -1.33658237e-01 - sys_corr_67: -2.59565914e-01 - sys_corr_68: -3.35139585e-01 - sys_corr_69: 1.26961025e-01 - sys_corr_70: -9.32891909e-03 - sys_corr_71: -9.41243727e-02 - sys_corr_72: -1.49074063e-01 - sys_corr_73: -1.58549139e-01 - sys_corr_74: 1.62669046e-01 - sys_corr_75: -4.59640150e-01 + sys_corr_66: 1.33658237e-01 + sys_corr_67: 2.59565914e-01 + sys_corr_68: 3.35139585e-01 + sys_corr_69: -1.26961025e-01 + sys_corr_70: 9.32891909e-03 + sys_corr_71: -1.58549139e-01 + sys_corr_72: 1.49074063e-01 + sys_corr_73: 9.41243727e-02 + sys_corr_74: -1.62669046e-01 + sys_corr_75: 4.59640150e-01 sys_corr_76: 1.68924053e-01 sys_corr_77: 5.83860000e-01 - sys_corr_78: 3.27742500e-01 + sys_corr_78: 5.04974897e-01 sys_corr_79: 8.50637399e-02 - sys_corr_80: -5.04974897e-01 + sys_corr_80: -3.27742500e-01 sys_corr_81: 4.46008331e-01 - sys_corr_82: 3.21418335e-01 - sys_corr_83: 3.90300339e-01 + sys_corr_82: 3.90300339e-01 + sys_corr_83: -3.21418335e-01 sys_corr_84: 1.16345399e+00 - sys_corr_85: 6.61084665e-01 - sys_corr_86: -8.76814854e-02 + sys_corr_85: -6.61084665e-01 + sys_corr_86: 8.76814854e-02 sys_corr_87: 1.20890371e-01 sys_corr_88: 2.58910085e-01 - sys_corr_89: -3.23462383e-01 - sys_corr_90: -1.29768878e+00 + sys_corr_89: 3.23462383e-01 + sys_corr_90: 1.29768878e+00 sys_corr_91: 5.11250801e-02 - sys_corr_92: 3.20506988e-01 - sys_corr_93: -3.53053773e-01 + sys_corr_92: -3.20506988e-01 + sys_corr_93: 7.30618680e-01 sys_corr_94: -8.02339146e-01 - sys_corr_95: -7.30618680e-01 + sys_corr_95: 3.53053773e-01 sys_corr_96: 2.70980803e-02 sys_corr_97: -1.22813704e+00 sys_corr_98: -6.37617234e-01 sys_corr_99: -6.93909365e-01 - sys_corr_100: -2.43076928e+00 - sys_corr_101: 1.34070776e+00 - sys_corr_102: -1.80289319e+00 - sys_corr_103: -7.61988877e-01 - sys_corr_104: -5.83894907e-01 - sys_corr_105: -1.43374273e+00 - sys_corr_106: 1.85643903e+00 - sys_corr_107: 3.70540951e+00 - sys_corr_108: 9.45229879e-01 - sys_corr_109: -3.01237232e+00 - sys_corr_110: -2.24627258e+00 - sys_corr_111: 6.46047730e-01 - sys_corr_112: -1.35202521e+00 + sys_corr_100: -5.83894907e-01 + sys_corr_101: -7.61988877e-01 + sys_corr_102: 1.43374273e+00 + sys_corr_103: 1.80289319e+00 + sys_corr_104: 1.34070776e+00 + sys_corr_105: -2.43076928e+00 + sys_corr_106: -1.85643903e+00 + sys_corr_107: -3.70540951e+00 + sys_corr_108: -6.46047730e-01 + sys_corr_109: -9.45229879e-01 + sys_corr_110: 3.01237232e+00 + sys_corr_111: -2.24627258e+00 + sys_corr_112: 1.35202521e+00 sys_corr_113: -1.91025001e+00 sys_corr_114: 4.24719219e-02 - sys_corr_115: 3.09327562e+00 - sys_corr_116: -6.24509198e-01 + sys_corr_115: -3.09327562e+00 + sys_corr_116: 6.24509198e-01 sys_corr_117: 2.80503609e-01 - sys_corr_118: 2.36472685e+00 - sys_corr_119: 1.17794843e+00 + sys_corr_118: -2.36472685e+00 + sys_corr_119: -1.17794843e+00 sys_corr_120: 1.34572159e-01 sys_corr_121: -2.49461789e+00 sys_corr_122: 5.64229348e-01 - sys_corr_123: -1.50949647e+00 + sys_corr_123: 1.50949647e+00 sys_corr_124: 1.58141246e-01 - sys_corr_125: 9.04155101e-02 + sys_corr_125: -9.04155101e-02 sys_corr_126: 8.12615322e+00 - sys_corr_127: -2.79344276e-02 - sys_corr_128: -8.54957677e-01 - sys_corr_129: 6.91902050e-01 + sys_corr_127: 2.79344276e-02 + sys_corr_128: 8.54957677e-01 + sys_corr_129: -6.91902050e-01 sys_corr_130: -1.96439596e+01 - sys_corr_131: 2.53011899e-01 - sys_corr_132: -1.48854283e+00 + sys_corr_131: -1.48854283e+00 + sys_corr_132: -2.53011899e-01 stat: 0.0 luminosity: 2.356574 - sys_corr_1: 3.62423738e+00 @@ -16622,26 +16622,26 @@ bins: sys_corr_4: 1.15156700e+00 sys_corr_5: -3.81132374e+00 sys_corr_6: 1.73414026e+00 - sys_corr_7: 1.13716685e-01 - sys_corr_8: -1.04063880e+00 + sys_corr_7: -1.13716685e-01 + sys_corr_8: 1.04063880e+00 sys_corr_9: 2.17957660e+00 - sys_corr_10: -6.61746028e-01 - sys_corr_11: -4.60089240e-01 - sys_corr_12: 8.21912587e-02 + sys_corr_10: 6.61746028e-01 + sys_corr_11: 4.60089240e-01 + sys_corr_12: -8.21912587e-02 sys_corr_13: -5.64356678e-01 - sys_corr_14: 2.29193198e-01 - sys_corr_15: 1.05631196e-01 - sys_corr_16: 4.46621467e-01 - sys_corr_17: 4.27755885e-02 - sys_corr_18: -4.88453659e-02 - sys_corr_19: 3.53482030e-01 - sys_corr_20: -9.41019778e-02 - sys_corr_21: -1.62456003e-01 - sys_corr_22: 1.92070402e+00 - sys_corr_23: 7.91120328e-01 - sys_corr_24: -1.27653494e+00 - sys_corr_25: -9.38042716e-01 - sys_corr_26: -4.64949471e-01 + sys_corr_14: -2.29193198e-01 + sys_corr_15: -1.05631196e-01 + sys_corr_16: -4.46621467e-01 + sys_corr_17: -4.27755885e-02 + sys_corr_18: 4.88453659e-02 + sys_corr_19: -3.53482030e-01 + sys_corr_20: 9.41019778e-02 + sys_corr_21: 1.62456003e-01 + sys_corr_22: -1.92070402e+00 + sys_corr_23: -7.91120328e-01 + sys_corr_24: 1.27653494e+00 + sys_corr_25: 9.38042716e-01 + sys_corr_26: 4.64949471e-01 sys_corr_27: 8.33441433e-01 sys_corr_28: -1.48189803e+00 sys_corr_29: 1.32683328e+00 @@ -16654,100 +16654,100 @@ bins: sys_corr_36: -7.77669847e-02 sys_corr_37: -4.17104256e-01 sys_corr_38: 1.97252706e-01 - sys_corr_39: 4.42742924e-01 + sys_corr_39: -4.42742924e-01 sys_corr_40: -1.46772301e-01 sys_corr_41: 3.73552663e-01 - sys_corr_42: -1.63231241e-01 + sys_corr_42: 1.63231241e-01 sys_corr_43: 3.52015787e-01 - sys_corr_44: 2.99229332e-01 - sys_corr_45: -1.46634140e-01 - sys_corr_46: 1.87782082e-01 - sys_corr_47: -4.39305398e-01 - sys_corr_48: 5.53934127e-01 + sys_corr_44: -2.99229332e-01 + sys_corr_45: 1.46634140e-01 + sys_corr_46: -1.87782082e-01 + sys_corr_47: 4.39305398e-01 + sys_corr_48: -5.53934127e-01 sys_corr_49: 2.52021813e-02 - sys_corr_50: -2.08650218e-01 - sys_corr_51: 5.40880387e-02 - sys_corr_52: 9.68632276e-03 - sys_corr_53: -1.03296227e-01 - sys_corr_54: -6.86264036e-01 + sys_corr_50: 2.08650218e-01 + sys_corr_51: -5.40880387e-02 + sys_corr_52: -9.68632276e-03 + sys_corr_53: 1.03296227e-01 + sys_corr_54: 6.86264036e-01 sys_corr_55: 4.32239633e-01 sys_corr_56: 3.64111887e-01 - sys_corr_57: 1.50822540e-01 + sys_corr_57: -1.50822540e-01 sys_corr_58: -2.89632421e-01 - sys_corr_59: -2.13165263e-01 + sys_corr_59: 2.13165263e-01 sys_corr_60: -6.03202583e-02 sys_corr_61: -4.05818035e-02 sys_corr_62: -3.55001601e-01 - sys_corr_63: -7.03878895e-02 + sys_corr_63: 7.03878895e-02 sys_corr_64: -3.85130859e-01 sys_corr_65: -5.37730985e-01 - sys_corr_66: -3.05027178e-02 - sys_corr_67: 8.59529679e-02 - sys_corr_68: -1.56251275e-01 - sys_corr_69: 4.82098963e-01 - sys_corr_70: 4.36776666e-01 - sys_corr_71: -7.62008742e-01 - sys_corr_72: -3.11167102e-01 - sys_corr_73: 6.63971847e-02 - sys_corr_74: 8.38256323e-03 - sys_corr_75: 3.68740324e-02 + sys_corr_66: 3.05027178e-02 + sys_corr_67: -8.59529679e-02 + sys_corr_68: 1.56251275e-01 + sys_corr_69: -4.82098963e-01 + sys_corr_70: -4.36776666e-01 + sys_corr_71: 6.63971847e-02 + sys_corr_72: 3.11167102e-01 + sys_corr_73: 7.62008742e-01 + sys_corr_74: -8.38256323e-03 + sys_corr_75: -3.68740324e-02 sys_corr_76: 2.84814479e-01 sys_corr_77: 1.30629155e-01 - sys_corr_78: 6.53782434e-01 + sys_corr_78: 3.38213466e-01 sys_corr_79: 3.69166163e-01 - sys_corr_80: -3.38213466e-01 + sys_corr_80: -6.53782434e-01 sys_corr_81: 4.59174954e-01 - sys_corr_82: -1.76340152e-01 - sys_corr_83: 9.82045929e-01 + sys_corr_82: 9.82045929e-01 + sys_corr_83: 1.76340152e-01 sys_corr_84: 4.89284665e+00 - sys_corr_85: 3.40070100e+00 - sys_corr_86: -4.72084997e-01 + sys_corr_85: -3.40070100e+00 + sys_corr_86: 4.72084997e-01 sys_corr_87: 3.25426618e-01 sys_corr_88: 3.32736089e-01 - sys_corr_89: 6.13286695e-02 - sys_corr_90: -5.50290713e+00 + sys_corr_89: -6.13286695e-02 + sys_corr_90: 5.50290713e+00 sys_corr_91: 8.62275719e-01 - sys_corr_92: 7.03733264e-01 - sys_corr_93: 1.52094264e-01 + sys_corr_92: -7.03733264e-01 + sys_corr_93: 6.39417957e-01 sys_corr_94: -5.56892336e-01 - sys_corr_95: -6.39417957e-01 + sys_corr_95: -1.52094264e-01 sys_corr_96: -7.86740808e-01 sys_corr_97: -1.84875515e+00 sys_corr_98: 7.40658070e-01 sys_corr_99: -3.06364617e-01 - sys_corr_100: -1.56525281e+00 - sys_corr_101: 6.84317514e-01 - sys_corr_102: -1.17459094e+00 - sys_corr_103: -3.21860665e-01 - sys_corr_104: -1.22929191e-02 - sys_corr_105: 4.83277792e-01 - sys_corr_106: 9.75091612e-01 - sys_corr_107: 1.60932237e+00 - sys_corr_108: 2.52414973e-01 - sys_corr_109: -1.23723137e+00 - sys_corr_110: -9.56705372e-01 - sys_corr_111: 1.51574918e+00 - sys_corr_112: -1.40602709e+00 + sys_corr_100: -1.22929191e-02 + sys_corr_101: -3.21860665e-01 + sys_corr_102: -4.83277792e-01 + sys_corr_103: 1.17459094e+00 + sys_corr_104: 6.84317514e-01 + sys_corr_105: -1.56525281e+00 + sys_corr_106: -9.75091612e-01 + sys_corr_107: -1.60932237e+00 + sys_corr_108: -1.51574918e+00 + sys_corr_109: -2.52414973e-01 + sys_corr_110: 1.23723137e+00 + sys_corr_111: -9.56705372e-01 + sys_corr_112: 1.40602709e+00 sys_corr_113: -2.35703092e+00 sys_corr_114: 2.51171100e-03 - sys_corr_115: -2.10010569e+00 - sys_corr_116: 7.01175798e-01 + sys_corr_115: 2.10010569e+00 + sys_corr_116: -7.01175798e-01 sys_corr_117: 3.32782349e+00 - sys_corr_118: -1.41169646e-01 - sys_corr_119: -1.02971768e-02 + sys_corr_118: 1.41169646e-01 + sys_corr_119: 1.02971768e-02 sys_corr_120: 1.77256762e+00 sys_corr_121: 7.47563966e-03 sys_corr_122: -4.25149014e-01 - sys_corr_123: 1.08737654e-01 + sys_corr_123: -1.08737654e-01 sys_corr_124: -7.05461129e+01 - sys_corr_125: 8.16885800e-01 + sys_corr_125: -8.16885800e-01 sys_corr_126: -1.74072333e-03 - sys_corr_127: 3.40495144e-01 - sys_corr_128: -2.27323214e-01 - sys_corr_129: -7.10759199e+00 + sys_corr_127: -3.40495144e-01 + sys_corr_128: 2.27323214e-01 + sys_corr_129: 7.10759199e+00 sys_corr_130: -3.94623370e-02 - sys_corr_131: 9.29837758e-01 - sys_corr_132: -3.24447447e-03 + sys_corr_131: -3.24447447e-03 + sys_corr_132: -9.29837758e-01 stat: 0.0 luminosity: 1.16578440e+01 - sys_corr_1: 4.21824717e+00 @@ -16756,26 +16756,26 @@ bins: sys_corr_4: 7.16615001e-01 sys_corr_5: -3.17069501e+00 sys_corr_6: 1.50044643e+00 - sys_corr_7: 4.20491312e-01 - sys_corr_8: -8.95600941e-01 + sys_corr_7: -4.20491312e-01 + sys_corr_8: 8.95600941e-01 sys_corr_9: 2.17300150e+00 - sys_corr_10: -4.70190982e-01 - sys_corr_11: -4.43399321e-01 - sys_corr_12: 1.14157298e-01 + sys_corr_10: 4.70190982e-01 + sys_corr_11: 4.43399321e-01 + sys_corr_12: -1.14157298e-01 sys_corr_13: -2.87520634e-01 - sys_corr_14: 2.30440512e-01 - sys_corr_15: -8.80018823e-02 - sys_corr_16: 1.68970109e-01 - sys_corr_17: 3.58917968e-01 - sys_corr_18: -5.30025445e-02 - sys_corr_19: -3.25838208e-02 - sys_corr_20: 1.96198251e-01 - sys_corr_21: -2.23236438e-01 - sys_corr_22: 1.57049401e+00 - sys_corr_23: 3.97135129e-01 - sys_corr_24: -1.06170177e+00 - sys_corr_25: -8.59852111e-01 - sys_corr_26: -3.77304692e-01 + sys_corr_14: -2.30440512e-01 + sys_corr_15: 8.80018823e-02 + sys_corr_16: -1.68970109e-01 + sys_corr_17: -3.58917968e-01 + sys_corr_18: 5.30025445e-02 + sys_corr_19: 3.25838208e-02 + sys_corr_20: -1.96198251e-01 + sys_corr_21: 2.23236438e-01 + sys_corr_22: -1.57049401e+00 + sys_corr_23: -3.97135129e-01 + sys_corr_24: 1.06170177e+00 + sys_corr_25: 8.59852111e-01 + sys_corr_26: 3.77304692e-01 sys_corr_27: 2.89448456e-01 sys_corr_28: -1.54016548e+00 sys_corr_29: 1.28561774e+00 @@ -16788,100 +16788,100 @@ bins: sys_corr_36: -5.13977313e-02 sys_corr_37: -2.98651756e-01 sys_corr_38: 2.04651770e-01 - sys_corr_39: 3.68972235e-01 + sys_corr_39: -3.68972235e-01 sys_corr_40: -9.74817926e-02 sys_corr_41: 3.55898580e-01 - sys_corr_42: -1.15306850e-01 + sys_corr_42: 1.15306850e-01 sys_corr_43: 3.03193976e-01 - sys_corr_44: 1.80769815e-01 - sys_corr_45: -1.27246543e-01 - sys_corr_46: 1.56792454e-01 - sys_corr_47: -3.71050499e-01 - sys_corr_48: 5.22382708e-01 + sys_corr_44: -1.80769815e-01 + sys_corr_45: 1.27246543e-01 + sys_corr_46: -1.56792454e-01 + sys_corr_47: 3.71050499e-01 + sys_corr_48: -5.22382708e-01 sys_corr_49: -4.53099172e-02 - sys_corr_50: -1.37047058e-01 - sys_corr_51: 1.12210805e-01 - sys_corr_52: 8.08288170e-03 - sys_corr_53: -1.70782620e-01 - sys_corr_54: -5.96122678e-01 + sys_corr_50: 1.37047058e-01 + sys_corr_51: -1.12210805e-01 + sys_corr_52: -8.08288170e-03 + sys_corr_53: 1.70782620e-01 + sys_corr_54: 5.96122678e-01 sys_corr_55: 3.63397768e-01 sys_corr_56: 2.68498704e-01 - sys_corr_57: 1.93994156e-01 + sys_corr_57: -1.93994156e-01 sys_corr_58: -1.60695108e-01 - sys_corr_59: -1.99107157e-01 + sys_corr_59: 1.99107157e-01 sys_corr_60: -4.74235303e-02 sys_corr_61: -5.41931844e-02 sys_corr_62: -3.16272798e-01 - sys_corr_63: -6.88183664e-02 + sys_corr_63: 6.88183664e-02 sys_corr_64: -2.49474152e-01 sys_corr_65: -4.04810427e-01 - sys_corr_66: -3.22010000e-02 - sys_corr_67: 6.41396810e-02 - sys_corr_68: -1.85528155e-01 - sys_corr_69: 3.75970168e-01 - sys_corr_70: 3.85245252e-01 - sys_corr_71: -6.49631946e-01 - sys_corr_72: -1.97599123e-01 - sys_corr_73: 6.93652438e-02 - sys_corr_74: 3.46546877e-02 - sys_corr_75: 5.59627885e-02 + sys_corr_66: 3.22010000e-02 + sys_corr_67: -6.41396810e-02 + sys_corr_68: 1.85528155e-01 + sys_corr_69: -3.75970168e-01 + sys_corr_70: -3.85245252e-01 + sys_corr_71: 6.93652438e-02 + sys_corr_72: 1.97599123e-01 + sys_corr_73: 6.49631946e-01 + sys_corr_74: -3.46546877e-02 + sys_corr_75: -5.59627885e-02 sys_corr_76: 2.27328536e-01 sys_corr_77: 1.05219163e-01 - sys_corr_78: 5.97283131e-01 + sys_corr_78: 2.15623376e-01 sys_corr_79: 2.87464932e-01 - sys_corr_80: -2.15623376e-01 + sys_corr_80: -5.97283131e-01 sys_corr_81: 3.92121320e-01 - sys_corr_82: -1.67577484e-01 - sys_corr_83: 7.20415613e-01 + sys_corr_82: 7.20415613e-01 + sys_corr_83: 1.67577484e-01 sys_corr_84: 3.77914314e+00 - sys_corr_85: 2.58255006e+00 - sys_corr_86: -3.75774193e-01 + sys_corr_85: -2.58255006e+00 + sys_corr_86: 3.75774193e-01 sys_corr_87: 2.57344157e-01 sys_corr_88: 2.06801304e-01 - sys_corr_89: 2.76120979e-03 - sys_corr_90: -4.27193113e+00 + sys_corr_89: -2.76120979e-03 + sys_corr_90: 4.27193113e+00 sys_corr_91: 7.43983994e-01 - sys_corr_92: 4.55790164e-01 - sys_corr_93: -1.65830024e+00 + sys_corr_92: -4.55790164e-01 + sys_corr_93: 2.30663736e-01 sys_corr_94: 3.13297490e-01 - sys_corr_95: -2.30663736e-01 + sys_corr_95: 1.65830024e+00 sys_corr_96: 7.44829696e-01 sys_corr_97: 6.02939472e-01 sys_corr_98: -2.30812594e+00 sys_corr_99: -1.19617020e+00 - sys_corr_100: -1.18403160e+00 - sys_corr_101: 6.16239830e-01 - sys_corr_102: -1.02940143e+00 - sys_corr_103: -7.82536893e-01 - sys_corr_104: 5.29226116e-02 - sys_corr_105: 2.23369707e-01 - sys_corr_106: 6.50451944e-01 - sys_corr_107: 1.23379176e+00 - sys_corr_108: 1.78761514e-01 - sys_corr_109: -1.00301272e+00 - sys_corr_110: -5.45986686e-01 - sys_corr_111: 1.12846637e+00 - sys_corr_112: -6.86043027e-01 + sys_corr_100: 5.29226116e-02 + sys_corr_101: -7.82536893e-01 + sys_corr_102: -2.23369707e-01 + sys_corr_103: 1.02940143e+00 + sys_corr_104: 6.16239830e-01 + sys_corr_105: -1.18403160e+00 + sys_corr_106: -6.50451944e-01 + sys_corr_107: -1.23379176e+00 + sys_corr_108: -1.12846637e+00 + sys_corr_109: -1.78761514e-01 + sys_corr_110: 1.00301272e+00 + sys_corr_111: -5.45986686e-01 + sys_corr_112: 6.86043027e-01 sys_corr_113: -9.33892261e-01 sys_corr_114: 2.45413183e-03 - sys_corr_115: 7.99149335e+00 - sys_corr_116: 5.93119067e+01 + sys_corr_115: -7.99149335e+00 + sys_corr_116: -5.93119067e+01 sys_corr_117: -7.49511573e-01 - sys_corr_118: -3.03155129e-03 - sys_corr_119: -2.36823564e-02 + sys_corr_118: 3.03155129e-03 + sys_corr_119: 2.36823564e-02 sys_corr_120: 3.12219705e+00 sys_corr_121: 1.12327226e-02 sys_corr_122: -6.14511929e-01 - sys_corr_123: 1.41051877e-01 + sys_corr_123: -1.41051877e-01 sys_corr_124: 8.50745285e-01 - sys_corr_125: 1.31336686e+00 + sys_corr_125: -1.31336686e+00 sys_corr_126: -1.53403554e-02 - sys_corr_127: -2.36447054e-01 - sys_corr_128: -1.83197506e-01 - sys_corr_129: 1.03525268e+00 + sys_corr_127: 2.36447054e-01 + sys_corr_128: 1.83197506e-01 + sys_corr_129: -1.03525268e+00 sys_corr_130: -4.90401357e-02 - sys_corr_131: 1.49978178e+00 - sys_corr_132: -6.17076418e-02 + sys_corr_131: -6.17076418e-02 + sys_corr_132: -1.49978178e+00 stat: 0.0 luminosity: 1.33837660e+01 - sys_corr_1: 4.19179293e+00 @@ -16890,26 +16890,26 @@ bins: sys_corr_4: 3.28325767e-01 sys_corr_5: -3.32928465e+00 sys_corr_6: 1.30603072e+00 - sys_corr_7: 4.38523879e-01 - sys_corr_8: -9.42298337e-01 + sys_corr_7: -4.38523879e-01 + sys_corr_8: 9.42298337e-01 sys_corr_9: 1.80681087e+00 - sys_corr_10: -6.85124188e-01 - sys_corr_11: -3.62134278e-01 - sys_corr_12: 2.31058823e-01 + sys_corr_10: 6.85124188e-01 + sys_corr_11: 3.62134278e-01 + sys_corr_12: -2.31058823e-01 sys_corr_13: -4.30856996e-01 - sys_corr_14: 1.97068661e-01 - sys_corr_15: 7.91398271e-02 - sys_corr_16: 4.35254189e-01 - sys_corr_17: 3.70432989e-01 - sys_corr_18: 1.83703301e-02 - sys_corr_19: -2.63537219e-01 - sys_corr_20: 3.79363797e-01 - sys_corr_21: 1.01144045e-01 - sys_corr_22: 1.57596643e+00 - sys_corr_23: -2.03590342e-02 - sys_corr_24: -1.00645509e+00 - sys_corr_25: -6.23849200e-01 - sys_corr_26: -5.64703540e-01 + sys_corr_14: -1.97068661e-01 + sys_corr_15: -7.91398271e-02 + sys_corr_16: -4.35254189e-01 + sys_corr_17: -3.70432989e-01 + sys_corr_18: -1.83703301e-02 + sys_corr_19: 2.63537219e-01 + sys_corr_20: -3.79363797e-01 + sys_corr_21: -1.01144045e-01 + sys_corr_22: -1.57596643e+00 + sys_corr_23: 2.03590342e-02 + sys_corr_24: 1.00645509e+00 + sys_corr_25: 6.23849200e-01 + sys_corr_26: 5.64703540e-01 sys_corr_27: 1.09465309e-01 sys_corr_28: -1.74278111e+00 sys_corr_29: 1.28616627e+00 @@ -16922,100 +16922,100 @@ bins: sys_corr_36: 1.69881557e-02 sys_corr_37: -3.38712162e-01 sys_corr_38: 1.43453790e-01 - sys_corr_39: 3.68447764e-01 + sys_corr_39: -3.68447764e-01 sys_corr_40: -2.19399090e-02 sys_corr_41: 3.22367859e-01 - sys_corr_42: -2.06111540e-01 + sys_corr_42: 2.06111540e-01 sys_corr_43: 2.43608042e-01 - sys_corr_44: 2.90326143e-01 - sys_corr_45: -8.56098154e-02 - sys_corr_46: 1.65324096e-01 - sys_corr_47: -4.78185350e-01 - sys_corr_48: 5.76810395e-01 + sys_corr_44: -2.90326143e-01 + sys_corr_45: 8.56098154e-02 + sys_corr_46: -1.65324096e-01 + sys_corr_47: 4.78185350e-01 + sys_corr_48: -5.76810395e-01 sys_corr_49: -2.67281608e-02 - sys_corr_50: -8.20329447e-02 - sys_corr_51: 1.05711986e-01 - sys_corr_52: -4.78321878e-02 - sys_corr_53: -1.63795097e-01 - sys_corr_54: -4.86285212e-01 + sys_corr_50: 8.20329447e-02 + sys_corr_51: -1.05711986e-01 + sys_corr_52: 4.78321878e-02 + sys_corr_53: 1.63795097e-01 + sys_corr_54: 4.86285212e-01 sys_corr_55: 3.38230905e-01 sys_corr_56: 3.66566252e-01 - sys_corr_57: 2.85645827e-01 + sys_corr_57: -2.85645827e-01 sys_corr_58: -2.04362594e-01 - sys_corr_59: -2.22079243e-01 + sys_corr_59: 2.22079243e-01 sys_corr_60: 7.89266958e-02 sys_corr_61: 7.32342935e-04 sys_corr_62: -2.44258734e-01 - sys_corr_63: -1.18266083e-01 + sys_corr_63: 1.18266083e-01 sys_corr_64: -2.42602905e-01 sys_corr_65: -3.78903342e-01 - sys_corr_66: -6.36033911e-02 - sys_corr_67: 1.24122518e-01 - sys_corr_68: -1.47271684e-01 - sys_corr_69: 3.56320006e-01 - sys_corr_70: 3.72378439e-01 - sys_corr_71: -6.58124732e-01 - sys_corr_72: -1.70958021e-01 - sys_corr_73: 8.17421980e-04 - sys_corr_74: 9.09184329e-02 - sys_corr_75: 1.34534865e-01 + sys_corr_66: 6.36033911e-02 + sys_corr_67: -1.24122518e-01 + sys_corr_68: 1.47271684e-01 + sys_corr_69: -3.56320006e-01 + sys_corr_70: -3.72378439e-01 + sys_corr_71: 8.17421980e-04 + sys_corr_72: 1.70958021e-01 + sys_corr_73: 6.58124732e-01 + sys_corr_74: -9.09184329e-02 + sys_corr_75: -1.34534865e-01 sys_corr_76: 1.56308459e-01 sys_corr_77: 1.60834193e-01 - sys_corr_78: 4.47070996e-01 + sys_corr_78: 2.08479845e-01 sys_corr_79: 2.36433146e-01 - sys_corr_80: -2.08479845e-01 + sys_corr_80: -4.47070996e-01 sys_corr_81: 3.94839137e-01 - sys_corr_82: -5.00451833e-02 - sys_corr_83: 6.48478944e-01 + sys_corr_82: 6.48478944e-01 + sys_corr_83: 5.00451833e-02 sys_corr_84: 3.73632698e+00 - sys_corr_85: 2.52606390e+00 - sys_corr_86: -3.76430794e-01 + sys_corr_85: -2.52606390e+00 + sys_corr_86: 3.76430794e-01 sys_corr_87: 8.24601383e-02 sys_corr_88: 2.42406278e-01 - sys_corr_89: -3.43068706e-02 - sys_corr_90: -4.34294185e+00 + sys_corr_89: 3.43068706e-02 + sys_corr_90: 4.34294185e+00 sys_corr_91: 9.26609581e-01 - sys_corr_92: 4.21007509e-01 - sys_corr_93: -4.72355896e-01 + sys_corr_92: -4.21007509e-01 + sys_corr_93: 3.07225163e-01 sys_corr_94: 2.30573218e-01 - sys_corr_95: -3.07225163e-01 + sys_corr_95: 4.72355896e-01 sys_corr_96: 1.98069362e-01 sys_corr_97: 2.81788625e-01 sys_corr_98: 3.65753224e-01 sys_corr_99: 4.74894956e-01 - sys_corr_100: -1.39227130e+00 - sys_corr_101: 7.10523327e-01 - sys_corr_102: -1.27096583e+00 - sys_corr_103: -2.03935637e-01 - sys_corr_104: -5.55800234e-01 - sys_corr_105: -2.22908333e+00 - sys_corr_106: 9.23814917e-01 - sys_corr_107: 1.59998616e+00 - sys_corr_108: 3.55274690e-01 - sys_corr_109: -1.13998216e+00 - sys_corr_110: -7.68453064e-01 - sys_corr_111: -9.17783650e-01 - sys_corr_112: -7.17303997e-01 + sys_corr_100: -5.55800234e-01 + sys_corr_101: -2.03935637e-01 + sys_corr_102: 2.22908333e+00 + sys_corr_103: 1.27096583e+00 + sys_corr_104: 7.10523327e-01 + sys_corr_105: -1.39227130e+00 + sys_corr_106: -9.23814917e-01 + sys_corr_107: -1.59998616e+00 + sys_corr_108: 9.17783650e-01 + sys_corr_109: -3.55274690e-01 + sys_corr_110: 1.13998216e+00 + sys_corr_111: -7.68453064e-01 + sys_corr_112: 7.17303997e-01 sys_corr_113: -8.85285794e-01 sys_corr_114: 8.24739604e-04 - sys_corr_115: 1.58373448e+00 - sys_corr_116: -1.31884768e+00 + sys_corr_115: -1.58373448e+00 + sys_corr_116: 1.31884768e+00 sys_corr_117: -5.30797261e+01 - sys_corr_118: 6.42840554e-01 - sys_corr_119: -2.81994756e-02 + sys_corr_118: -6.42840554e-01 + sys_corr_119: 2.81994756e-02 sys_corr_120: -7.94145529e-01 sys_corr_121: -1.26216628e-02 sys_corr_122: -9.96402322e-01 - sys_corr_123: 2.57882821e-01 + sys_corr_123: -2.57882821e-01 sys_corr_124: -4.16796488e+00 - sys_corr_125: 1.95726811e+00 + sys_corr_125: -1.95726811e+00 sys_corr_126: -5.52717753e-02 - sys_corr_127: 3.82194063e-01 - sys_corr_128: -6.37229015e-02 - sys_corr_129: -2.87782261e-01 + sys_corr_127: -3.82194063e-01 + sys_corr_128: 6.37229015e-02 + sys_corr_129: 2.87782261e-01 sys_corr_130: -5.25119022e-02 - sys_corr_131: 2.05951723e+00 - sys_corr_132: -1.74395940e-01 + sys_corr_131: -1.74395940e-01 + sys_corr_132: -2.05951723e+00 stat: 0.0 luminosity: 1.43488840e+01 - sys_corr_1: 2.96928369e+00 @@ -17024,26 +17024,26 @@ bins: sys_corr_4: 1.15408645e-01 sys_corr_5: -3.56738267e+00 sys_corr_6: 5.25520046e-01 - sys_corr_7: 6.13626990e-02 - sys_corr_8: -5.17296578e-01 + sys_corr_7: -6.13626990e-02 + sys_corr_8: 5.17296578e-01 sys_corr_9: 1.42389194e+00 - sys_corr_10: -1.51499291e-01 - sys_corr_11: -3.56737395e-01 - sys_corr_12: -7.32547620e-02 + sys_corr_10: 1.51499291e-01 + sys_corr_11: 3.56737395e-01 + sys_corr_12: 7.32547620e-02 sys_corr_13: -4.37549288e-01 - sys_corr_14: 1.53112049e-01 - sys_corr_15: 1.52597394e-01 - sys_corr_16: 2.19469511e-01 - sys_corr_17: 4.56757499e-01 - sys_corr_18: -1.72883443e-01 - sys_corr_19: 4.07979575e-02 - sys_corr_20: 4.31479330e-01 - sys_corr_21: -3.13184813e-02 - sys_corr_22: 1.38244093e+00 - sys_corr_23: 1.89116554e-02 - sys_corr_24: -9.55861721e-01 - sys_corr_25: -5.48839686e-01 - sys_corr_26: -5.83733937e-01 + sys_corr_14: -1.53112049e-01 + sys_corr_15: -1.52597394e-01 + sys_corr_16: -2.19469511e-01 + sys_corr_17: -4.56757499e-01 + sys_corr_18: 1.72883443e-01 + sys_corr_19: -4.07979575e-02 + sys_corr_20: -4.31479330e-01 + sys_corr_21: 3.13184813e-02 + sys_corr_22: -1.38244093e+00 + sys_corr_23: -1.89116554e-02 + sys_corr_24: 9.55861721e-01 + sys_corr_25: 5.48839686e-01 + sys_corr_26: 5.83733937e-01 sys_corr_27: 3.85269000e-01 sys_corr_28: -1.61290010e+00 sys_corr_29: 7.45213541e-01 @@ -17056,100 +17056,100 @@ bins: sys_corr_36: 3.27536974e-03 sys_corr_37: -1.18830128e-01 sys_corr_38: 1.44613621e-01 - sys_corr_39: 3.02433281e-01 + sys_corr_39: -3.02433281e-01 sys_corr_40: -6.06969054e-02 sys_corr_41: 3.81256388e-01 - sys_corr_42: -1.67669780e-01 + sys_corr_42: 1.67669780e-01 sys_corr_43: 1.86599872e-01 - sys_corr_44: 1.93033609e-01 - sys_corr_45: -2.31319369e-02 - sys_corr_46: 1.59753604e-01 - sys_corr_47: -3.44973118e-01 - sys_corr_48: 6.08417045e-01 + sys_corr_44: -1.93033609e-01 + sys_corr_45: 2.31319369e-02 + sys_corr_46: -1.59753604e-01 + sys_corr_47: 3.44973118e-01 + sys_corr_48: -6.08417045e-01 sys_corr_49: 1.31317924e-01 - sys_corr_50: -1.93182641e-01 - sys_corr_51: -9.49820708e-02 - sys_corr_52: -5.67362813e-03 - sys_corr_53: -1.40388860e-01 - sys_corr_54: -3.03727070e-01 + sys_corr_50: 1.93182641e-01 + sys_corr_51: 9.49820708e-02 + sys_corr_52: 5.67362813e-03 + sys_corr_53: 1.40388860e-01 + sys_corr_54: 3.03727070e-01 sys_corr_55: 2.59548448e-01 sys_corr_56: 2.77993711e-01 - sys_corr_57: 2.17784699e-01 + sys_corr_57: -2.17784699e-01 sys_corr_58: -2.04065313e-01 - sys_corr_59: -1.36261362e-01 + sys_corr_59: 1.36261362e-01 sys_corr_60: 1.09831212e-01 sys_corr_61: -8.01814607e-02 sys_corr_62: -3.00660764e-01 - sys_corr_63: -9.15766009e-02 + sys_corr_63: 9.15766009e-02 sys_corr_64: -1.65052605e-01 sys_corr_65: -2.53411325e-01 - sys_corr_66: -2.22618837e-02 - sys_corr_67: 3.08840797e-02 - sys_corr_68: -1.28279958e-01 - sys_corr_69: 3.14704544e-01 - sys_corr_70: 3.29705336e-01 - sys_corr_71: -4.61854603e-01 - sys_corr_72: -2.36546336e-01 - sys_corr_73: 1.30403381e-01 - sys_corr_74: 1.54625093e-01 - sys_corr_75: 1.36274553e-02 + sys_corr_66: 2.22618837e-02 + sys_corr_67: -3.08840797e-02 + sys_corr_68: 1.28279958e-01 + sys_corr_69: -3.14704544e-01 + sys_corr_70: -3.29705336e-01 + sys_corr_71: 1.30403381e-01 + sys_corr_72: 2.36546336e-01 + sys_corr_73: 4.61854603e-01 + sys_corr_74: -1.54625093e-01 + sys_corr_75: -1.36274553e-02 sys_corr_76: 2.60448756e-02 sys_corr_77: 6.03125606e-02 - sys_corr_78: 4.80380930e-01 + sys_corr_78: 2.00865045e-01 sys_corr_79: 1.40955746e-01 - sys_corr_80: -2.00865045e-01 + sys_corr_80: -4.80380930e-01 sys_corr_81: 3.78096408e-01 - sys_corr_82: -4.01129031e-02 - sys_corr_83: 4.92767979e-01 + sys_corr_82: 4.92767979e-01 + sys_corr_83: 4.01129031e-02 sys_corr_84: 2.86769542e+00 - sys_corr_85: 1.82376433e+00 - sys_corr_86: -3.41257710e-01 + sys_corr_85: -1.82376433e+00 + sys_corr_86: 3.41257710e-01 sys_corr_87: 8.03372525e-02 sys_corr_88: 2.29788987e-01 - sys_corr_89: -4.79795474e-02 - sys_corr_90: -3.32871720e+00 + sys_corr_89: 4.79795474e-02 + sys_corr_90: 3.32871720e+00 sys_corr_91: 7.47629011e-01 - sys_corr_92: 3.09224890e-01 - sys_corr_93: -2.46437339e-01 + sys_corr_92: -3.09224890e-01 + sys_corr_93: 3.37924292e-01 sys_corr_94: 2.59361578e-01 - sys_corr_95: -3.37924292e-01 + sys_corr_95: 2.46437339e-01 sys_corr_96: 2.32843295e-01 sys_corr_97: 1.07861540e+00 sys_corr_98: 7.71120668e-01 sys_corr_99: -1.50352411e+00 - sys_corr_100: -1.43708526e+00 - sys_corr_101: 8.93487390e-01 - sys_corr_102: -2.47332470e+00 - sys_corr_103: -1.61087801e+00 - sys_corr_104: -3.83638002e-01 - sys_corr_105: 3.18614721e-01 - sys_corr_106: 8.79739344e-01 - sys_corr_107: 1.71665127e+00 - sys_corr_108: 1.90392559e-01 - sys_corr_109: -1.15873432e+00 - sys_corr_110: -7.04952609e-01 - sys_corr_111: -6.45902871e-01 - sys_corr_112: -7.24732273e-01 + sys_corr_100: -3.83638002e-01 + sys_corr_101: -1.61087801e+00 + sys_corr_102: -3.18614721e-01 + sys_corr_103: 2.47332470e+00 + sys_corr_104: 8.93487390e-01 + sys_corr_105: -1.43708526e+00 + sys_corr_106: -8.79739344e-01 + sys_corr_107: -1.71665127e+00 + sys_corr_108: 6.45902871e-01 + sys_corr_109: -1.90392559e-01 + sys_corr_110: 1.15873432e+00 + sys_corr_111: -7.04952609e-01 + sys_corr_112: 7.24732273e-01 sys_corr_113: -7.19946747e-01 sys_corr_114: -1.09343448e-03 - sys_corr_115: 1.54311112e+00 - sys_corr_116: 3.65634038e+00 + sys_corr_115: -1.54311112e+00 + sys_corr_116: -3.65634038e+00 sys_corr_117: 1.19071361e+00 - sys_corr_118: -4.44907838e-01 - sys_corr_119: -3.22605894e-02 + sys_corr_118: 4.44907838e-01 + sys_corr_119: 3.22605894e-02 sys_corr_120: -4.66498146e+01 sys_corr_121: -5.34503750e-02 sys_corr_122: -1.72350541e+00 - sys_corr_123: 5.22980260e-01 + sys_corr_123: -5.22980260e-01 sys_corr_124: -2.32361919e+00 - sys_corr_125: 2.62313732e+00 + sys_corr_125: -2.62313732e+00 sys_corr_126: -1.26443770e-01 - sys_corr_127: 1.40614573e+00 - sys_corr_128: 3.98879667e-02 - sys_corr_129: -2.81269659e-01 + sys_corr_127: -1.40614573e+00 + sys_corr_128: -3.98879667e-02 + sys_corr_129: 2.81269659e-01 sys_corr_130: -1.02600318e-01 - sys_corr_131: -2.59363781e+00 - sys_corr_132: -2.76724971e-02 + sys_corr_131: -2.76724971e-02 + sys_corr_132: 2.59363781e+00 stat: 0.0 luminosity: 1.14751560e+01 - sys_corr_1: 2.03606490e+00 @@ -17158,26 +17158,26 @@ bins: sys_corr_4: -2.58543175e-01 sys_corr_5: -4.95266197e+00 sys_corr_6: -2.22332887e-01 - sys_corr_7: 5.10836072e-01 - sys_corr_8: -3.95972925e-01 + sys_corr_7: -5.10836072e-01 + sys_corr_8: 3.95972925e-01 sys_corr_9: 1.04231271e+00 - sys_corr_10: -2.20501342e-01 - sys_corr_11: -5.09493923e-02 - sys_corr_12: -1.92548311e-01 + sys_corr_10: 2.20501342e-01 + sys_corr_11: 5.09493923e-02 + sys_corr_12: 1.92548311e-01 sys_corr_13: -6.41503179e-01 - sys_corr_14: 1.98339388e-01 - sys_corr_15: -4.54725187e-02 - sys_corr_16: 6.08236203e-01 - sys_corr_17: 1.22330166e-01 - sys_corr_18: -4.47070431e-01 - sys_corr_19: 1.39916562e-01 - sys_corr_20: 1.13584726e-01 - sys_corr_21: -1.37193200e-01 - sys_corr_22: 1.07768552e+00 - sys_corr_23: 2.03940307e-01 - sys_corr_24: -1.07860436e+00 - sys_corr_25: -3.98032375e-01 - sys_corr_26: -7.82992411e-01 + sys_corr_14: -1.98339388e-01 + sys_corr_15: 4.54725187e-02 + sys_corr_16: -6.08236203e-01 + sys_corr_17: -1.22330166e-01 + sys_corr_18: 4.47070431e-01 + sys_corr_19: -1.39916562e-01 + sys_corr_20: -1.13584726e-01 + sys_corr_21: 1.37193200e-01 + sys_corr_22: -1.07768552e+00 + sys_corr_23: -2.03940307e-01 + sys_corr_24: 1.07860436e+00 + sys_corr_25: 3.98032375e-01 + sys_corr_26: 7.82992411e-01 sys_corr_27: 5.99412120e-01 sys_corr_28: -1.27405533e+00 sys_corr_29: 5.82176618e-01 @@ -17190,100 +17190,100 @@ bins: sys_corr_36: 7.47407703e-02 sys_corr_37: -1.14940097e-01 sys_corr_38: 5.84203106e-02 - sys_corr_39: 3.06740544e-01 + sys_corr_39: -3.06740544e-01 sys_corr_40: -1.69256813e-01 sys_corr_41: 4.13679404e-01 - sys_corr_42: -2.44840174e-01 + sys_corr_42: 2.44840174e-01 sys_corr_43: 1.46802851e-01 - sys_corr_44: 1.80718243e-01 - sys_corr_45: -1.85949632e-02 - sys_corr_46: 1.09145357e-02 - sys_corr_47: -2.67971424e-01 - sys_corr_48: 6.00970071e-01 + sys_corr_44: -1.80718243e-01 + sys_corr_45: 1.85949632e-02 + sys_corr_46: -1.09145357e-02 + sys_corr_47: 2.67971424e-01 + sys_corr_48: -6.00970071e-01 sys_corr_49: 1.60288491e-01 - sys_corr_50: -2.52661408e-01 - sys_corr_51: -3.17240947e-01 - sys_corr_52: -1.11288582e-01 - sys_corr_53: -9.79701558e-02 - sys_corr_54: -1.35142618e-01 + sys_corr_50: 2.52661408e-01 + sys_corr_51: 3.17240947e-01 + sys_corr_52: 1.11288582e-01 + sys_corr_53: 9.79701558e-02 + sys_corr_54: 1.35142618e-01 sys_corr_55: 2.51877384e-01 sys_corr_56: 2.61868687e-01 - sys_corr_57: 1.33001889e-01 + sys_corr_57: -1.33001889e-01 sys_corr_58: -1.18631389e-01 - sys_corr_59: -6.58270156e-02 + sys_corr_59: 6.58270156e-02 sys_corr_60: 3.85848153e-02 sys_corr_61: -1.71047251e-01 sys_corr_62: -3.05542945e-01 - sys_corr_63: -1.46878433e-01 + sys_corr_63: 1.46878433e-01 sys_corr_64: -1.33127350e-01 sys_corr_65: -1.52474440e-01 - sys_corr_66: -5.57328704e-02 - sys_corr_67: 9.34506510e-02 - sys_corr_68: -7.88729696e-02 - sys_corr_69: 3.00906185e-01 - sys_corr_70: 2.11526846e-01 - sys_corr_71: -4.82200531e-01 - sys_corr_72: -2.12642737e-01 - sys_corr_73: 6.80387629e-02 - sys_corr_74: 1.91851203e-01 - sys_corr_75: -6.92695452e-02 + sys_corr_66: 5.57328704e-02 + sys_corr_67: -9.34506510e-02 + sys_corr_68: 7.88729696e-02 + sys_corr_69: -3.00906185e-01 + sys_corr_70: -2.11526846e-01 + sys_corr_71: 6.80387629e-02 + sys_corr_72: 2.12642737e-01 + sys_corr_73: 4.82200531e-01 + sys_corr_74: -1.91851203e-01 + sys_corr_75: 6.92695452e-02 sys_corr_76: -2.70584606e-04 sys_corr_77: 1.71333707e-01 - sys_corr_78: 4.44723121e-01 + sys_corr_78: 2.72431754e-01 sys_corr_79: 6.99070033e-02 - sys_corr_80: -2.72431754e-01 + sys_corr_80: -4.44723121e-01 sys_corr_81: 4.20017556e-01 - sys_corr_82: 1.24398369e-01 - sys_corr_83: 4.87746066e-01 + sys_corr_82: 4.87746066e-01 + sys_corr_83: -1.24398369e-01 sys_corr_84: 2.72185085e+00 - sys_corr_85: 1.65503431e+00 - sys_corr_86: -4.28322538e-01 + sys_corr_85: -1.65503431e+00 + sys_corr_86: 4.28322538e-01 sys_corr_87: 3.40426661e-02 sys_corr_88: 3.08667907e-01 - sys_corr_89: 2.28497724e-02 - sys_corr_90: -3.13465146e+00 + sys_corr_89: -2.28497724e-02 + sys_corr_90: 3.13465146e+00 sys_corr_91: 6.76834845e-01 - sys_corr_92: 2.41841105e-01 - sys_corr_93: -8.89910727e-02 + sys_corr_92: -2.41841105e-01 + sys_corr_93: 3.55679919e-01 sys_corr_94: -7.96589061e-03 - sys_corr_95: -3.55679919e-01 + sys_corr_95: 8.89910727e-02 sys_corr_96: -6.78571045e-03 sys_corr_97: 6.53144903e-01 sys_corr_98: 2.46691711e-01 sys_corr_99: 2.97358433e-01 - sys_corr_100: -2.65665341e+00 - sys_corr_101: 1.92391328e+00 - sys_corr_102: -5.74879618e-01 - sys_corr_103: -1.17910142e+00 - sys_corr_104: -5.94128868e-01 - sys_corr_105: -6.08790736e-01 - sys_corr_106: 1.50418239e+00 - sys_corr_107: 1.97744674e+00 - sys_corr_108: 3.15233007e-01 - sys_corr_109: -1.28488990e+00 - sys_corr_110: -8.72043489e-01 - sys_corr_111: 1.08777683e+00 - sys_corr_112: -8.57603310e-01 + sys_corr_100: -5.94128868e-01 + sys_corr_101: -1.17910142e+00 + sys_corr_102: 6.08790736e-01 + sys_corr_103: 5.74879618e-01 + sys_corr_104: 1.92391328e+00 + sys_corr_105: -2.65665341e+00 + sys_corr_106: -1.50418239e+00 + sys_corr_107: -1.97744674e+00 + sys_corr_108: -1.08777683e+00 + sys_corr_109: -3.15233007e-01 + sys_corr_110: 1.28488990e+00 + sys_corr_111: -8.72043489e-01 + sys_corr_112: 8.57603310e-01 sys_corr_113: -7.57069340e-01 sys_corr_114: -2.03463464e-03 - sys_corr_115: 1.56560467e+00 - sys_corr_116: 1.65825566e+00 + sys_corr_115: -1.56560467e+00 + sys_corr_116: -1.65825566e+00 sys_corr_117: -2.62045657e+00 - sys_corr_118: -2.90502690e-01 - sys_corr_119: 1.71736751e-03 + sys_corr_118: 2.90502690e-01 + sys_corr_119: -1.71736751e-03 sys_corr_120: 3.28821219e+00 sys_corr_121: -1.71568095e-01 sys_corr_122: -3.93756696e+00 - sys_corr_123: 1.31647927e+00 + sys_corr_123: -1.31647927e+00 sys_corr_124: -1.49992275e+00 - sys_corr_125: -3.54845196e+00 + sys_corr_125: 3.54845196e+00 sys_corr_126: -3.03894268e-01 - sys_corr_127: -3.46155127e-01 - sys_corr_128: 1.55086320e-01 - sys_corr_129: -3.32820187e-01 + sys_corr_127: 3.46155127e-01 + sys_corr_128: -1.55086320e-01 + sys_corr_129: 3.32820187e-01 sys_corr_130: -2.42382188e-01 - sys_corr_131: -3.90694480e+01 - sys_corr_132: -1.63076407e+00 + sys_corr_131: -1.63076407e+00 + sys_corr_132: 3.90694480e+01 stat: 0.0 luminosity: 1.17390900e+01 - sys_corr_1: 1.79233347e+00 @@ -17292,26 +17292,26 @@ bins: sys_corr_4: 3.76554252e-01 sys_corr_5: -5.46580328e+00 sys_corr_6: -5.89692734e-01 - sys_corr_7: 4.27963825e-01 - sys_corr_8: -3.37445616e-01 + sys_corr_7: -4.27963825e-01 + sys_corr_8: 3.37445616e-01 sys_corr_9: 6.14108184e-01 - sys_corr_10: -1.22624140e-01 - sys_corr_11: -1.39358489e-01 - sys_corr_12: -1.03761553e-01 + sys_corr_10: 1.22624140e-01 + sys_corr_11: 1.39358489e-01 + sys_corr_12: 1.03761553e-01 sys_corr_13: -5.84791804e-01 - sys_corr_14: 3.83981022e-01 - sys_corr_15: -1.22726698e-01 - sys_corr_16: 2.36027592e-01 - sys_corr_17: 1.04465559e-01 - sys_corr_18: -1.32642583e-01 - sys_corr_19: 5.31978289e-01 - sys_corr_20: 1.17906433e-01 - sys_corr_21: -1.79974474e-02 - sys_corr_22: 9.86394750e-01 - sys_corr_23: 1.69612354e-01 - sys_corr_24: -1.29137715e+00 - sys_corr_25: -1.19399288e+00 - sys_corr_26: -1.05063871e+00 + sys_corr_14: -3.83981022e-01 + sys_corr_15: 1.22726698e-01 + sys_corr_16: -2.36027592e-01 + sys_corr_17: -1.04465559e-01 + sys_corr_18: 1.32642583e-01 + sys_corr_19: -5.31978289e-01 + sys_corr_20: -1.17906433e-01 + sys_corr_21: 1.79974474e-02 + sys_corr_22: -9.86394750e-01 + sys_corr_23: -1.69612354e-01 + sys_corr_24: 1.29137715e+00 + sys_corr_25: 1.19399288e+00 + sys_corr_26: 1.05063871e+00 sys_corr_27: 4.20935531e-01 sys_corr_28: -7.52094828e-01 sys_corr_29: 8.41405868e-01 @@ -17324,100 +17324,100 @@ bins: sys_corr_36: 1.22167001e-01 sys_corr_37: 1.73204348e-02 sys_corr_38: 8.67123582e-02 - sys_corr_39: 2.36697067e-01 + sys_corr_39: -2.36697067e-01 sys_corr_40: -2.34828337e-01 sys_corr_41: 5.74400612e-01 - sys_corr_42: -3.95268685e-01 + sys_corr_42: 3.95268685e-01 sys_corr_43: 1.82474413e-01 - sys_corr_44: 2.78961279e-01 - sys_corr_45: 9.22764447e-02 - sys_corr_46: 1.10086464e-02 - sys_corr_47: -2.24565517e-01 - sys_corr_48: 5.72579319e-01 + sys_corr_44: -2.78961279e-01 + sys_corr_45: -9.22764447e-02 + sys_corr_46: -1.10086464e-02 + sys_corr_47: 2.24565517e-01 + sys_corr_48: -5.72579319e-01 sys_corr_49: 2.30307054e-01 - sys_corr_50: -5.07536580e-01 - sys_corr_51: -6.60373455e-01 - sys_corr_52: -2.39193068e-01 - sys_corr_53: -1.11073465e-01 - sys_corr_54: 1.95551321e-01 + sys_corr_50: 5.07536580e-01 + sys_corr_51: 6.60373455e-01 + sys_corr_52: 2.39193068e-01 + sys_corr_53: 1.11073465e-01 + sys_corr_54: -1.95551321e-01 sys_corr_55: 3.53071910e-01 sys_corr_56: 4.14171225e-01 - sys_corr_57: 1.03544440e-01 + sys_corr_57: -1.03544440e-01 sys_corr_58: -2.00248980e-01 - sys_corr_59: -6.46832711e-02 + sys_corr_59: 6.46832711e-02 sys_corr_60: 2.20414610e-01 sys_corr_61: -2.43761952e-01 sys_corr_62: -3.39212343e-01 - sys_corr_63: -2.62576130e-01 + sys_corr_63: 2.62576130e-01 sys_corr_64: -1.95395406e-01 sys_corr_65: -1.36769454e-01 - sys_corr_66: -1.97741593e-02 - sys_corr_67: 5.65562791e-02 - sys_corr_68: -5.43761580e-03 - sys_corr_69: 4.04695781e-01 - sys_corr_70: 2.79164067e-01 - sys_corr_71: -5.08453797e-01 - sys_corr_72: -4.33256303e-01 - sys_corr_73: 9.09399990e-02 - sys_corr_74: 3.61317307e-01 - sys_corr_75: -3.06776896e-01 + sys_corr_66: 1.97741593e-02 + sys_corr_67: -5.65562791e-02 + sys_corr_68: 5.43761580e-03 + sys_corr_69: -4.04695781e-01 + sys_corr_70: -2.79164067e-01 + sys_corr_71: 9.09399990e-02 + sys_corr_72: 4.33256303e-01 + sys_corr_73: 5.08453797e-01 + sys_corr_74: -3.61317307e-01 + sys_corr_75: 3.06776896e-01 sys_corr_76: -6.75616471e-02 sys_corr_77: 3.28180775e-01 - sys_corr_78: 4.98505147e-01 + sys_corr_78: 4.00087369e-01 sys_corr_79: 1.70425546e-01 - sys_corr_80: -4.00087369e-01 + sys_corr_80: -4.98505147e-01 sys_corr_81: 4.79132105e-01 - sys_corr_82: 1.76479951e-01 - sys_corr_83: 5.67922363e-01 + sys_corr_82: 5.67922363e-01 + sys_corr_83: -1.76479951e-01 sys_corr_84: 3.06590053e+00 - sys_corr_85: 1.78711169e+00 - sys_corr_86: -5.00922292e-01 + sys_corr_85: -1.78711169e+00 + sys_corr_86: 5.00922292e-01 sys_corr_87: -2.22093009e-02 sys_corr_88: 3.37117965e-01 - sys_corr_89: 5.73899375e-02 - sys_corr_90: -3.56734489e+00 + sys_corr_89: -5.73899375e-02 + sys_corr_90: 3.56734489e+00 sys_corr_91: 7.76646168e-01 - sys_corr_92: 4.01999404e-01 - sys_corr_93: -2.07290789e-01 + sys_corr_92: -4.01999404e-01 + sys_corr_93: 5.22235442e-01 sys_corr_94: -3.87523021e-01 - sys_corr_95: -5.22235442e-01 + sys_corr_95: 2.07290789e-01 sys_corr_96: 5.74819504e-02 sys_corr_97: -1.16194026e-01 sys_corr_98: -2.74004031e-01 sys_corr_99: -4.11021330e-01 - sys_corr_100: -1.85661907e+00 - sys_corr_101: -3.68581280e-01 - sys_corr_102: -1.14120461e+00 - sys_corr_103: -8.92929544e-01 - sys_corr_104: -6.08996252e-01 - sys_corr_105: -7.13798437e-01 - sys_corr_106: 3.38684755e+00 - sys_corr_107: 4.91985653e+00 - sys_corr_108: 6.93382055e-01 - sys_corr_109: -1.83260929e+00 - sys_corr_110: -1.35129794e+00 - sys_corr_111: 3.47639920e-01 - sys_corr_112: -9.24262947e-01 + sys_corr_100: -6.08996252e-01 + sys_corr_101: -8.92929544e-01 + sys_corr_102: 7.13798437e-01 + sys_corr_103: 1.14120461e+00 + sys_corr_104: -3.68581280e-01 + sys_corr_105: -1.85661907e+00 + sys_corr_106: -3.38684755e+00 + sys_corr_107: -4.91985653e+00 + sys_corr_108: -3.47639920e-01 + sys_corr_109: -6.93382055e-01 + sys_corr_110: 1.83260929e+00 + sys_corr_111: -1.35129794e+00 + sys_corr_112: 9.24262947e-01 sys_corr_113: -1.47497953e+00 sys_corr_114: 3.22835999e-03 - sys_corr_115: 2.59191534e+00 - sys_corr_116: 1.38834984e+00 + sys_corr_115: -2.59191534e+00 + sys_corr_116: -1.38834984e+00 sys_corr_117: -1.82761685e+00 - sys_corr_118: 7.80230056e-01 - sys_corr_119: 1.36251343e-01 + sys_corr_118: -7.80230056e-01 + sys_corr_119: -1.36251343e-01 sys_corr_120: -2.95648921e+00 sys_corr_121: -4.18012674e-01 sys_corr_122: -3.61487030e+00 - sys_corr_123: 3.41940864e+00 + sys_corr_123: -3.41940864e+00 sys_corr_124: -1.31532015e+00 - sys_corr_125: -3.59795212e+01 + sys_corr_125: 3.59795212e+01 sys_corr_126: -9.71280311e-01 - sys_corr_127: 1.15944890e-01 - sys_corr_128: 1.50180229e-01 - sys_corr_129: -1.45711456e-01 + sys_corr_127: -1.15944890e-01 + sys_corr_128: -1.50180229e-01 + sys_corr_129: 1.45711456e-01 sys_corr_130: -3.73250312e-01 - sys_corr_131: 4.79327825e+00 - sys_corr_132: -5.63805083e-01 + sys_corr_131: -5.63805083e-01 + sys_corr_132: -4.79327825e+00 stat: 0.0 luminosity: 1.15949900e+01 - sys_corr_1: 2.66731189e+00 @@ -17426,26 +17426,26 @@ bins: sys_corr_4: 2.10575245e+00 sys_corr_5: -4.03966717e+00 sys_corr_6: -7.89392119e-01 - sys_corr_7: 7.93446072e-02 - sys_corr_8: -2.08883880e-01 + sys_corr_7: -7.93446072e-02 + sys_corr_8: 2.08883880e-01 sys_corr_9: -3.82171826e-02 - sys_corr_10: 8.00611019e-02 - sys_corr_11: 3.51313323e-01 - sys_corr_12: 3.43605287e-01 + sys_corr_10: -8.00611019e-02 + sys_corr_11: -3.51313323e-01 + sys_corr_12: -3.43605287e-01 sys_corr_13: -1.52412220e-01 - sys_corr_14: 1.70070099e-02 - sys_corr_15: 2.02662060e-01 - sys_corr_16: 4.69806395e-01 - sys_corr_17: -1.84274715e-02 - sys_corr_18: -6.02485567e-01 - sys_corr_19: -7.48993578e-02 - sys_corr_20: 7.69877140e-02 - sys_corr_21: 1.25420877e-01 - sys_corr_22: 5.53618214e-01 - sys_corr_23: 4.96202023e-02 - sys_corr_24: -1.51899123e+00 - sys_corr_25: -1.16581595e+00 - sys_corr_26: -2.10859368e+00 + sys_corr_14: -1.70070099e-02 + sys_corr_15: -2.02662060e-01 + sys_corr_16: -4.69806395e-01 + sys_corr_17: 1.84274715e-02 + sys_corr_18: 6.02485567e-01 + sys_corr_19: 7.48993578e-02 + sys_corr_20: -7.69877140e-02 + sys_corr_21: -1.25420877e-01 + sys_corr_22: -5.53618214e-01 + sys_corr_23: -4.96202023e-02 + sys_corr_24: 1.51899123e+00 + sys_corr_25: 1.16581595e+00 + sys_corr_26: 2.10859368e+00 sys_corr_27: -3.68525353e-01 sys_corr_28: 1.77651812e-01 sys_corr_29: 1.32833049e+00 @@ -17458,100 +17458,100 @@ bins: sys_corr_36: 2.65158821e-01 sys_corr_37: 1.10086845e-01 sys_corr_38: 5.11939699e-02 - sys_corr_39: 3.06633264e-01 + sys_corr_39: -3.06633264e-01 sys_corr_40: -2.50251950e-01 sys_corr_41: 7.57006319e-01 - sys_corr_42: -4.88145575e-01 + sys_corr_42: 4.88145575e-01 sys_corr_43: 1.53728275e-01 - sys_corr_44: 5.26721175e-01 - sys_corr_45: 2.23933806e-01 - sys_corr_46: -1.69667119e-01 - sys_corr_47: 5.89456394e-02 - sys_corr_48: 3.21537405e-01 + sys_corr_44: -5.26721175e-01 + sys_corr_45: -2.23933806e-01 + sys_corr_46: 1.69667119e-01 + sys_corr_47: -5.89456394e-02 + sys_corr_48: -3.21537405e-01 sys_corr_49: 3.32368756e-01 - sys_corr_50: -1.07545214e+00 - sys_corr_51: -1.31273677e+00 - sys_corr_52: -5.54402525e-01 - sys_corr_53: -1.32797252e-01 - sys_corr_54: 6.19853229e-01 + sys_corr_50: 1.07545214e+00 + sys_corr_51: 1.31273677e+00 + sys_corr_52: 5.54402525e-01 + sys_corr_53: 1.32797252e-01 + sys_corr_54: -6.19853229e-01 sys_corr_55: 4.09091506e-01 sys_corr_56: 7.13645672e-01 - sys_corr_57: 1.09199478e-01 + sys_corr_57: -1.09199478e-01 sys_corr_58: -2.70463594e-01 - sys_corr_59: -8.40663277e-02 + sys_corr_59: 8.40663277e-02 sys_corr_60: 4.28650669e-01 sys_corr_61: -3.16774890e-01 sys_corr_62: -4.01508974e-01 - sys_corr_63: -3.36068550e-01 + sys_corr_63: 3.36068550e-01 sys_corr_64: -1.81785538e-01 sys_corr_65: 8.52095529e-03 - sys_corr_66: 1.04832336e-03 - sys_corr_67: -1.75252241e-01 - sys_corr_68: 3.32736364e-02 - sys_corr_69: 4.28895334e-01 - sys_corr_70: 2.48134320e-01 - sys_corr_71: -6.08234605e-01 - sys_corr_72: -3.51658370e-01 - sys_corr_73: 1.36153411e-01 - sys_corr_74: 6.17798910e-01 - sys_corr_75: -5.09284712e-01 + sys_corr_66: -1.04832336e-03 + sys_corr_67: 1.75252241e-01 + sys_corr_68: -3.32736364e-02 + sys_corr_69: -4.28895334e-01 + sys_corr_70: -2.48134320e-01 + sys_corr_71: 1.36153411e-01 + sys_corr_72: 3.51658370e-01 + sys_corr_73: 6.08234605e-01 + sys_corr_74: -6.17798910e-01 + sys_corr_75: 5.09284712e-01 sys_corr_76: -1.60235111e-01 sys_corr_77: 6.32215434e-01 - sys_corr_78: 6.46611996e-01 + sys_corr_78: 6.03856512e-01 sys_corr_79: -4.36071496e-02 - sys_corr_80: -6.03856512e-01 + sys_corr_80: -6.46611996e-01 sys_corr_81: 6.27596318e-01 - sys_corr_82: 1.57897004e-01 - sys_corr_83: 6.25804483e-01 + sys_corr_82: 6.25804483e-01 + sys_corr_83: -1.57897004e-01 sys_corr_84: 2.96896742e+00 - sys_corr_85: 1.47012713e+00 - sys_corr_86: -5.75414835e-01 + sys_corr_85: -1.47012713e+00 + sys_corr_86: 5.75414835e-01 sys_corr_87: -1.01192883e-01 sys_corr_88: 4.09600785e-01 - sys_corr_89: 4.13505777e-02 - sys_corr_90: -3.49387672e+00 + sys_corr_89: -4.13505777e-02 + sys_corr_90: 3.49387672e+00 sys_corr_91: 7.69899992e-01 - sys_corr_92: 2.91692676e-01 - sys_corr_93: -4.64817893e-01 + sys_corr_92: -2.91692676e-01 + sys_corr_93: 7.88732232e-01 sys_corr_94: -8.80543568e-01 - sys_corr_95: -7.88732232e-01 + sys_corr_95: 4.64817893e-01 sys_corr_96: 1.56989817e-01 sys_corr_97: -9.75453642e-01 sys_corr_98: -7.32174648e-01 sys_corr_99: -7.82713972e-01 - sys_corr_100: -3.31557371e+00 - sys_corr_101: 1.06395074e+00 - sys_corr_102: -1.87497946e+00 - sys_corr_103: -1.36893389e+00 - sys_corr_104: -9.45699051e-01 - sys_corr_105: -1.59845988e+00 - sys_corr_106: 1.70825681e+00 - sys_corr_107: 5.50605736e+00 - sys_corr_108: 1.01721105e+00 - sys_corr_109: -4.69980468e+00 - sys_corr_110: -4.51659310e+00 - sys_corr_111: 6.37931509e-01 - sys_corr_112: -1.89292267e+00 + sys_corr_100: -9.45699051e-01 + sys_corr_101: -1.36893389e+00 + sys_corr_102: 1.59845988e+00 + sys_corr_103: 1.87497946e+00 + sys_corr_104: 1.06395074e+00 + sys_corr_105: -3.31557371e+00 + sys_corr_106: -1.70825681e+00 + sys_corr_107: -5.50605736e+00 + sys_corr_108: -6.37931509e-01 + sys_corr_109: -1.01721105e+00 + sys_corr_110: 4.69980468e+00 + sys_corr_111: -4.51659310e+00 + sys_corr_112: 1.89292267e+00 sys_corr_113: -2.30783360e+00 sys_corr_114: 4.65850491e-02 - sys_corr_115: 2.95518435e+00 - sys_corr_116: 7.13251679e-01 + sys_corr_115: -2.95518435e+00 + sys_corr_116: -7.13251679e-01 sys_corr_117: -1.24387765e+00 - sys_corr_118: 1.84257739e+00 - sys_corr_119: 5.74234672e-01 + sys_corr_118: -1.84257739e+00 + sys_corr_119: -5.74234672e-01 sys_corr_120: -1.49524110e+00 sys_corr_121: -1.61555243e+00 sys_corr_122: 2.74672601e+01 - sys_corr_123: 1.01218422e+01 + sys_corr_123: -1.01218422e+01 sys_corr_124: -9.07858591e-01 - sys_corr_125: -1.40492358e+00 + sys_corr_125: 1.40492358e+00 sys_corr_126: -4.60971691e+00 - sys_corr_127: 1.61732575e-01 - sys_corr_128: 1.68239317e+00 - sys_corr_129: 3.18282105e-01 + sys_corr_127: -1.61732575e-01 + sys_corr_128: -1.68239317e+00 + sys_corr_129: -3.18282105e-01 sys_corr_130: -1.32375250e+00 - sys_corr_131: -3.21308774e+00 - sys_corr_132: 1.26784953e-01 + sys_corr_131: 1.26784953e-01 + sys_corr_132: 3.21308774e+00 stat: 0.0 luminosity: 1.04685460e+01 - sys_corr_1: 1.97933373e+00 @@ -17560,26 +17560,26 @@ bins: sys_corr_4: 2.74798488e+00 sys_corr_5: -2.97915876e+00 sys_corr_6: -1.14398218e+00 - sys_corr_7: -1.77950853e-01 - sys_corr_8: -1.37599772e-01 + sys_corr_7: 1.77950853e-01 + sys_corr_8: 1.37599772e-01 sys_corr_9: -4.52937235e-01 - sys_corr_10: 3.67294252e-01 - sys_corr_11: 4.13711040e-01 - sys_corr_12: 5.19776284e-01 + sys_corr_10: -3.67294252e-01 + sys_corr_11: -4.13711040e-01 + sys_corr_12: -5.19776284e-01 sys_corr_13: 1.27736033e-01 - sys_corr_14: 3.88861375e-01 - sys_corr_15: 1.57953543e-01 - sys_corr_16: 4.14608066e-01 - sys_corr_17: -2.89470787e-01 - sys_corr_18: -3.84552075e-01 - sys_corr_19: 8.10318739e-01 - sys_corr_20: 2.05228287e-01 - sys_corr_21: -3.96773792e-02 - sys_corr_22: 3.87309213e-01 - sys_corr_23: -2.81019662e-01 - sys_corr_24: -1.45281110e+00 - sys_corr_25: -1.06142344e+00 - sys_corr_26: -2.38506184e+00 + sys_corr_14: -3.88861375e-01 + sys_corr_15: -1.57953543e-01 + sys_corr_16: -4.14608066e-01 + sys_corr_17: 2.89470787e-01 + sys_corr_18: 3.84552075e-01 + sys_corr_19: -8.10318739e-01 + sys_corr_20: -2.05228287e-01 + sys_corr_21: 3.96773792e-02 + sys_corr_22: -3.87309213e-01 + sys_corr_23: 2.81019662e-01 + sys_corr_24: 1.45281110e+00 + sys_corr_25: 1.06142344e+00 + sys_corr_26: 2.38506184e+00 sys_corr_27: -3.17788471e-01 sys_corr_28: 6.25147666e-01 sys_corr_29: 1.30166070e+00 @@ -17592,100 +17592,100 @@ bins: sys_corr_36: 2.72302463e-01 sys_corr_37: 2.47220508e-01 sys_corr_38: -3.13545928e-02 - sys_corr_39: 3.08250890e-01 + sys_corr_39: -3.08250890e-01 sys_corr_40: -2.18806245e-01 sys_corr_41: 7.37788755e-01 - sys_corr_42: -4.68379895e-01 + sys_corr_42: 4.68379895e-01 sys_corr_43: 6.45707101e-02 - sys_corr_44: 5.22675197e-01 - sys_corr_45: 3.47994268e-01 - sys_corr_46: -1.41377847e-01 - sys_corr_47: 1.38349207e-01 - sys_corr_48: 2.32506744e-01 + sys_corr_44: -5.22675197e-01 + sys_corr_45: -3.47994268e-01 + sys_corr_46: 1.41377847e-01 + sys_corr_47: -1.38349207e-01 + sys_corr_48: -2.32506744e-01 sys_corr_49: 3.99518201e-01 - sys_corr_50: -1.21620397e+00 - sys_corr_51: -1.46483440e+00 - sys_corr_52: -6.89897051e-01 - sys_corr_53: -1.34495517e-01 - sys_corr_54: 8.28600865e-01 + sys_corr_50: 1.21620397e+00 + sys_corr_51: 1.46483440e+00 + sys_corr_52: 6.89897051e-01 + sys_corr_53: 1.34495517e-01 + sys_corr_54: -8.28600865e-01 sys_corr_55: 3.61770103e-01 sys_corr_56: 6.89225092e-01 - sys_corr_57: 8.58387194e-02 + sys_corr_57: -8.58387194e-02 sys_corr_58: -1.78437083e-01 - sys_corr_59: -8.84325273e-02 + sys_corr_59: 8.84325273e-02 sys_corr_60: 4.95391169e-01 sys_corr_61: -4.12229512e-01 sys_corr_62: -3.93695773e-01 - sys_corr_63: -3.92973259e-01 + sys_corr_63: 3.92973259e-01 sys_corr_64: -1.27705144e-01 sys_corr_65: 1.09203943e-01 - sys_corr_66: 9.27076512e-02 - sys_corr_67: -2.03825641e-01 - sys_corr_68: 1.07637986e-01 - sys_corr_69: 4.21152160e-01 - sys_corr_70: 2.28272550e-01 - sys_corr_71: -4.27482834e-01 - sys_corr_72: -3.97355675e-01 - sys_corr_73: 2.02110229e-01 - sys_corr_74: 6.55826895e-01 - sys_corr_75: -6.47581958e-01 + sys_corr_66: -9.27076512e-02 + sys_corr_67: 2.03825641e-01 + sys_corr_68: -1.07637986e-01 + sys_corr_69: -4.21152160e-01 + sys_corr_70: -2.28272550e-01 + sys_corr_71: 2.02110229e-01 + sys_corr_72: 3.97355675e-01 + sys_corr_73: 4.27482834e-01 + sys_corr_74: -6.55826895e-01 + sys_corr_75: 6.47581958e-01 sys_corr_76: -2.77092804e-01 sys_corr_77: 7.04745877e-01 - sys_corr_78: 4.84690855e-01 + sys_corr_78: 6.14176962e-01 sys_corr_79: -8.41637353e-03 - sys_corr_80: -6.14176962e-01 + sys_corr_80: -4.84690855e-01 sys_corr_81: 6.14260094e-01 - sys_corr_82: 2.31703799e-01 - sys_corr_83: 4.91869167e-01 + sys_corr_82: 4.91869167e-01 + sys_corr_83: -2.31703799e-01 sys_corr_84: 2.29268510e+00 - sys_corr_85: 9.60924675e-01 - sys_corr_86: -4.99079692e-01 + sys_corr_85: -9.60924675e-01 + sys_corr_86: 4.99079692e-01 sys_corr_87: -6.49084142e-02 sys_corr_88: 3.48824996e-01 - sys_corr_89: -3.35114051e-02 - sys_corr_90: -2.83687939e+00 + sys_corr_89: 3.35114051e-02 + sys_corr_90: 2.83687939e+00 sys_corr_91: 7.13357502e-01 - sys_corr_92: 2.83471970e-01 - sys_corr_93: -4.82393567e-01 + sys_corr_92: -2.83471970e-01 + sys_corr_93: 8.54816695e-01 sys_corr_94: -9.57534842e-01 - sys_corr_95: -8.54816695e-01 + sys_corr_95: 4.82393567e-01 sys_corr_96: 1.03068103e-01 sys_corr_97: -9.68586943e-01 sys_corr_98: -7.98351296e-01 sys_corr_99: -8.23350276e-01 - sys_corr_100: -3.31671913e+00 - sys_corr_101: 1.31061132e+00 - sys_corr_102: -1.95126049e+00 - sys_corr_103: -1.35270833e+00 - sys_corr_104: -1.03822286e+00 - sys_corr_105: -1.81326416e+00 - sys_corr_106: 2.38675187e+00 - sys_corr_107: 5.48176795e+00 - sys_corr_108: 4.13454595e+00 - sys_corr_109: -5.75395942e+00 - sys_corr_110: -2.06630044e+00 - sys_corr_111: 5.33005122e-01 - sys_corr_112: -2.82984144e+00 + sys_corr_100: -1.03822286e+00 + sys_corr_101: -1.35270833e+00 + sys_corr_102: 1.81326416e+00 + sys_corr_103: 1.95126049e+00 + sys_corr_104: 1.31061132e+00 + sys_corr_105: -3.31671913e+00 + sys_corr_106: -2.38675187e+00 + sys_corr_107: -5.48176795e+00 + sys_corr_108: -5.33005122e-01 + sys_corr_109: -4.13454595e+00 + sys_corr_110: 5.75395942e+00 + sys_corr_111: -2.06630044e+00 + sys_corr_112: 2.82984144e+00 sys_corr_113: -2.18622491e+00 sys_corr_114: 1.06492993e-01 - sys_corr_115: 3.71183437e+00 - sys_corr_116: 2.33769055e-01 + sys_corr_115: -3.71183437e+00 + sys_corr_116: -2.33769055e-01 sys_corr_117: -7.64061727e-01 - sys_corr_118: 1.61549906e+00 - sys_corr_119: 1.42815515e+00 + sys_corr_118: -1.61549906e+00 + sys_corr_119: -1.42815515e+00 sys_corr_120: -1.12311736e+00 sys_corr_121: -4.19791066e+00 sys_corr_122: 6.38455787e+00 - sys_corr_123: -2.19984795e+01 + sys_corr_123: 2.19984795e+01 sys_corr_124: -6.04954745e-01 - sys_corr_125: -3.76542818e+00 + sys_corr_125: 3.76542818e+00 sys_corr_126: -9.17108971e+00 - sys_corr_127: 1.59361074e-01 - sys_corr_128: 9.24788193e-01 - sys_corr_129: 1.27996087e-01 + sys_corr_127: -1.59361074e-01 + sys_corr_128: -9.24788193e-01 + sys_corr_129: -1.27996087e-01 sys_corr_130: -1.13217613e+00 - sys_corr_131: -1.75837812e+00 - sys_corr_132: -4.22267465e-01 + sys_corr_131: -4.22267465e-01 + sys_corr_132: 1.75837812e+00 stat: 0.0 luminosity: 7.112402 - sys_corr_1: 1.21315062e+00 @@ -17694,26 +17694,26 @@ bins: sys_corr_4: 2.54855765e+00 sys_corr_5: -2.57888463e+00 sys_corr_6: -1.15211053e+00 - sys_corr_7: -6.86379140e-02 - sys_corr_8: -1.03024340e-01 + sys_corr_7: 6.86379140e-02 + sys_corr_8: 1.03024340e-01 sys_corr_9: -4.92883910e-01 - sys_corr_10: 1.99376644e-01 - sys_corr_11: 3.92116919e-01 - sys_corr_12: 5.25109722e-01 + sys_corr_10: -1.99376644e-01 + sys_corr_11: -3.92116919e-01 + sys_corr_12: -5.25109722e-01 sys_corr_13: 2.24533049e-01 - sys_corr_14: 9.82675474e-02 - sys_corr_15: 2.98553132e-01 - sys_corr_16: 2.65628115e-01 - sys_corr_17: -1.78700358e-01 - sys_corr_18: -2.22638209e-01 - sys_corr_19: -4.35322153e-02 - sys_corr_20: 2.67330082e-01 - sys_corr_21: 5.62126770e-01 - sys_corr_22: 3.11591677e-01 - sys_corr_23: 2.17513634e-01 - sys_corr_24: -1.48332829e+00 - sys_corr_25: -1.55102208e+00 - sys_corr_26: -2.15509449e+00 + sys_corr_14: -9.82675474e-02 + sys_corr_15: -2.98553132e-01 + sys_corr_16: -2.65628115e-01 + sys_corr_17: 1.78700358e-01 + sys_corr_18: 2.22638209e-01 + sys_corr_19: 4.35322153e-02 + sys_corr_20: -2.67330082e-01 + sys_corr_21: -5.62126770e-01 + sys_corr_22: -3.11591677e-01 + sys_corr_23: -2.17513634e-01 + sys_corr_24: 1.48332829e+00 + sys_corr_25: 1.55102208e+00 + sys_corr_26: 2.15509449e+00 sys_corr_27: -5.47533565e-01 sys_corr_28: 9.40062201e-01 sys_corr_29: 1.16971388e+00 @@ -17726,100 +17726,100 @@ bins: sys_corr_36: 2.89957559e-01 sys_corr_37: 3.52058407e-01 sys_corr_38: -8.68178891e-03 - sys_corr_39: 2.31947924e-01 + sys_corr_39: -2.31947924e-01 sys_corr_40: -2.62598318e-01 sys_corr_41: 6.70018046e-01 - sys_corr_42: -4.64928277e-01 + sys_corr_42: 4.64928277e-01 sys_corr_43: 7.11833359e-02 - sys_corr_44: 5.15400875e-01 - sys_corr_45: 3.36980310e-01 - sys_corr_46: -1.28516262e-01 - sys_corr_47: 1.51888387e-01 - sys_corr_48: 1.63008966e-01 + sys_corr_44: -5.15400875e-01 + sys_corr_45: -3.36980310e-01 + sys_corr_46: 1.28516262e-01 + sys_corr_47: -1.51888387e-01 + sys_corr_48: -1.63008966e-01 sys_corr_49: 4.05193049e-01 - sys_corr_50: -1.16923953e+00 - sys_corr_51: -1.44891268e+00 - sys_corr_52: -6.00896521e-01 - sys_corr_53: -1.81471382e-01 - sys_corr_54: 8.90104323e-01 + sys_corr_50: 1.16923953e+00 + sys_corr_51: 1.44891268e+00 + sys_corr_52: 6.00896521e-01 + sys_corr_53: 1.81471382e-01 + sys_corr_54: -8.90104323e-01 sys_corr_55: 3.93756478e-01 sys_corr_56: 5.20804244e-01 - sys_corr_57: 1.19825611e-01 + sys_corr_57: -1.19825611e-01 sys_corr_58: -1.12293079e-01 - sys_corr_59: 2.26766483e-02 + sys_corr_59: -2.26766483e-02 sys_corr_60: 4.20072096e-01 sys_corr_61: -5.38055489e-01 sys_corr_62: -3.22114803e-01 - sys_corr_63: -2.89539434e-01 + sys_corr_63: 2.89539434e-01 sys_corr_64: -1.01340402e-01 sys_corr_65: 2.02689104e-01 - sys_corr_66: -1.44302844e-02 - sys_corr_67: -1.58913786e-01 - sys_corr_68: 8.46133922e-02 - sys_corr_69: 4.45576437e-01 - sys_corr_70: 1.49193334e-01 - sys_corr_71: -3.38597532e-01 - sys_corr_72: -5.41561359e-01 - sys_corr_73: 1.56222840e-01 - sys_corr_74: 7.27959985e-01 - sys_corr_75: -6.40636052e-01 + sys_corr_66: 1.44302844e-02 + sys_corr_67: 1.58913786e-01 + sys_corr_68: -8.46133922e-02 + sys_corr_69: -4.45576437e-01 + sys_corr_70: -1.49193334e-01 + sys_corr_71: 1.56222840e-01 + sys_corr_72: 5.41561359e-01 + sys_corr_73: 3.38597532e-01 + sys_corr_74: -7.27959985e-01 + sys_corr_75: 6.40636052e-01 sys_corr_76: -2.37778824e-01 sys_corr_77: 6.47460265e-01 - sys_corr_78: 4.93316616e-01 + sys_corr_78: 5.76434851e-01 sys_corr_79: -6.29856447e-02 - sys_corr_80: -5.76434851e-01 + sys_corr_80: -4.93316616e-01 sys_corr_81: 5.48668563e-01 - sys_corr_82: 2.29872841e-01 - sys_corr_83: 4.67043374e-01 + sys_corr_82: 4.67043374e-01 + sys_corr_83: -2.29872841e-01 sys_corr_84: 2.24085652e+00 - sys_corr_85: 9.63514259e-01 - sys_corr_86: -5.69535756e-01 + sys_corr_85: -9.63514259e-01 + sys_corr_86: 5.69535756e-01 sys_corr_87: -1.25436908e-01 sys_corr_88: 3.46746354e-01 - sys_corr_89: 1.04783118e-02 - sys_corr_90: -2.62942126e+00 + sys_corr_89: -1.04783118e-02 + sys_corr_90: 2.62942126e+00 sys_corr_91: 6.06567907e-01 - sys_corr_92: 1.08940842e-01 - sys_corr_93: -4.80931985e-01 + sys_corr_92: -1.08940842e-01 + sys_corr_93: 8.32360619e-01 sys_corr_94: -9.05021701e-01 - sys_corr_95: -8.32360619e-01 + sys_corr_95: 4.80931985e-01 sys_corr_96: 1.25742975e-01 sys_corr_97: -8.58873381e-01 sys_corr_98: -7.34179806e-01 sys_corr_99: -7.39758229e-01 - sys_corr_100: -3.11857380e+00 - sys_corr_101: 1.33665032e+00 - sys_corr_102: -1.99956225e+00 - sys_corr_103: -1.27114686e+00 - sys_corr_104: -9.97007712e-01 - sys_corr_105: -1.75292242e+00 - sys_corr_106: 2.39887325e+00 - sys_corr_107: 4.94751132e+00 - sys_corr_108: 1.44265998e+00 - sys_corr_109: -3.76527101e+00 - sys_corr_110: -2.44356333e+00 - sys_corr_111: 5.01570971e-01 - sys_corr_112: -3.79849794e+00 + sys_corr_100: -9.97007712e-01 + sys_corr_101: -1.27114686e+00 + sys_corr_102: 1.75292242e+00 + sys_corr_103: 1.99956225e+00 + sys_corr_104: 1.33665032e+00 + sys_corr_105: -3.11857380e+00 + sys_corr_106: -2.39887325e+00 + sys_corr_107: -4.94751132e+00 + sys_corr_108: -5.01570971e-01 + sys_corr_109: -1.44265998e+00 + sys_corr_110: 3.76527101e+00 + sys_corr_111: -2.44356333e+00 + sys_corr_112: 3.79849794e+00 sys_corr_113: -5.03564969e+00 sys_corr_114: 1.56815009e-01 - sys_corr_115: 3.64907466e+00 - sys_corr_116: 1.07214915e-01 + sys_corr_115: -3.64907466e+00 + sys_corr_116: -1.07214915e-01 sys_corr_117: -6.46034633e-01 - sys_corr_118: 1.60854822e+00 - sys_corr_119: 2.85024749e+00 + sys_corr_118: -1.60854822e+00 + sys_corr_119: -2.85024749e+00 sys_corr_120: -9.80343959e-01 sys_corr_121: -5.49395774e+00 sys_corr_122: 7.24074286e+00 - sys_corr_123: -5.45157068e+00 + sys_corr_123: 5.45157068e+00 sys_corr_124: -5.06720778e-01 - sys_corr_125: -2.97417878e+00 + sys_corr_125: 2.97417878e+00 sys_corr_126: 1.69707460e+01 - sys_corr_127: 1.11219458e-01 - sys_corr_128: 1.00243508e+00 - sys_corr_129: 1.16780517e+00 + sys_corr_127: -1.11219458e-01 + sys_corr_128: -1.00243508e+00 + sys_corr_129: -1.16780517e+00 sys_corr_130: 8.69978136e+00 - sys_corr_131: -1.58457366e+00 - sys_corr_132: 2.87985354e-01 + sys_corr_131: 2.87985354e-01 + sys_corr_132: 1.58457366e+00 stat: 0.0 luminosity: 5.42245 - sys_corr_1: 6.76208687e-01 @@ -17828,26 +17828,26 @@ bins: sys_corr_4: 2.00828277e+00 sys_corr_5: -2.17606805e+00 sys_corr_6: -1.32220405e+00 - sys_corr_7: -9.77350409e-02 - sys_corr_8: -1.25854808e-02 + sys_corr_7: 9.77350409e-02 + sys_corr_8: 1.25854808e-02 sys_corr_9: -3.85949325e-01 - sys_corr_10: 2.73880686e-01 - sys_corr_11: 5.62028682e-02 - sys_corr_12: -1.06629339e-01 + sys_corr_10: -2.73880686e-01 + sys_corr_11: -5.62028682e-02 + sys_corr_12: 1.06629339e-01 sys_corr_13: -1.07481686e-01 - sys_corr_14: -1.04140420e-02 - sys_corr_15: 1.41014463e-01 - sys_corr_16: 4.25437178e-01 - sys_corr_17: -2.02766628e-02 - sys_corr_18: -2.15552476e-01 - sys_corr_19: 3.44091910e-01 - sys_corr_20: 9.05578617e-02 - sys_corr_21: -9.67257447e-02 - sys_corr_22: 4.70370050e-01 - sys_corr_23: -1.01993005e+00 - sys_corr_24: -7.08659547e-01 - sys_corr_25: -1.65213341e+00 - sys_corr_26: -1.47554335e+00 + sys_corr_14: 1.04140420e-02 + sys_corr_15: -1.41014463e-01 + sys_corr_16: -4.25437178e-01 + sys_corr_17: 2.02766628e-02 + sys_corr_18: 2.15552476e-01 + sys_corr_19: -3.44091910e-01 + sys_corr_20: -9.05578617e-02 + sys_corr_21: 9.67257447e-02 + sys_corr_22: -4.70370050e-01 + sys_corr_23: 1.01993005e+00 + sys_corr_24: 7.08659547e-01 + sys_corr_25: 1.65213341e+00 + sys_corr_26: 1.47554335e+00 sys_corr_27: -1.20222976e+00 sys_corr_28: 1.08351461e+00 sys_corr_29: 4.38700428e-01 @@ -17860,100 +17860,100 @@ bins: sys_corr_36: 9.93008139e-02 sys_corr_37: 4.42072674e-01 sys_corr_38: -5.34726873e-02 - sys_corr_39: 1.18929323e-01 + sys_corr_39: -1.18929323e-01 sys_corr_40: -1.77067043e-01 sys_corr_41: 5.26519733e-01 - sys_corr_42: -3.09183141e-01 + sys_corr_42: 3.09183141e-01 sys_corr_43: -1.59973330e-02 - sys_corr_44: 5.65267078e-01 - sys_corr_45: 2.89811814e-01 - sys_corr_46: -8.87905992e-02 - sys_corr_47: 1.98529793e-01 - sys_corr_48: 1.24001577e-01 + sys_corr_44: -5.65267078e-01 + sys_corr_45: -2.89811814e-01 + sys_corr_46: 8.87905992e-02 + sys_corr_47: -1.98529793e-01 + sys_corr_48: -1.24001577e-01 sys_corr_49: 4.44869348e-01 - sys_corr_50: -9.62863400e-01 - sys_corr_51: -1.25187156e+00 - sys_corr_52: -4.95762724e-01 - sys_corr_53: -8.88326774e-02 - sys_corr_54: 7.79572455e-01 + sys_corr_50: 9.62863400e-01 + sys_corr_51: 1.25187156e+00 + sys_corr_52: 4.95762724e-01 + sys_corr_53: 8.88326774e-02 + sys_corr_54: -7.79572455e-01 sys_corr_55: 3.78839413e-01 sys_corr_56: 6.27034467e-01 - sys_corr_57: -4.92130119e-02 + sys_corr_57: 4.92130119e-02 sys_corr_58: -1.67525052e-01 - sys_corr_59: -3.80980421e-02 + sys_corr_59: 3.80980421e-02 sys_corr_60: 3.52497979e-01 sys_corr_61: -4.08673884e-01 sys_corr_62: -3.47946832e-01 - sys_corr_63: -3.00098862e-01 + sys_corr_63: 3.00098862e-01 sys_corr_64: -5.88585078e-02 sys_corr_65: 9.17992258e-02 - sys_corr_66: 5.18724838e-02 - sys_corr_67: -1.06679427e-01 - sys_corr_68: -1.98416353e-02 - sys_corr_69: 4.15698746e-01 - sys_corr_70: 1.78871328e-01 - sys_corr_71: -3.33735717e-01 - sys_corr_72: -3.59683142e-01 - sys_corr_73: 1.26977616e-01 - sys_corr_74: 6.02987645e-01 - sys_corr_75: -5.68211269e-01 + sys_corr_66: -5.18724838e-02 + sys_corr_67: 1.06679427e-01 + sys_corr_68: 1.98416353e-02 + sys_corr_69: -4.15698746e-01 + sys_corr_70: -1.78871328e-01 + sys_corr_71: 1.26977616e-01 + sys_corr_72: 3.59683142e-01 + sys_corr_73: 3.33735717e-01 + sys_corr_74: -6.02987645e-01 + sys_corr_75: 5.68211269e-01 sys_corr_76: -1.68848686e-01 sys_corr_77: 5.52209984e-01 - sys_corr_78: 5.19029251e-01 + sys_corr_78: 4.98234184e-01 sys_corr_79: 2.83963763e-02 - sys_corr_80: -4.98234184e-01 + sys_corr_80: -5.19029251e-01 sys_corr_81: 4.46441401e-01 - sys_corr_82: 2.22623536e-01 - sys_corr_83: 4.43086998e-01 + sys_corr_82: 4.43086998e-01 + sys_corr_83: -2.22623536e-01 sys_corr_84: 1.66539984e+00 - sys_corr_85: 6.80323056e-01 - sys_corr_86: -3.73538902e-01 + sys_corr_85: -6.80323056e-01 + sys_corr_86: 3.73538902e-01 sys_corr_87: -1.07463192e-02 sys_corr_88: 2.91129862e-01 - sys_corr_89: 1.99170052e-02 - sys_corr_90: -2.04232692e+00 + sys_corr_89: -1.99170052e-02 + sys_corr_90: 2.04232692e+00 sys_corr_91: 4.45999062e-01 - sys_corr_92: 1.23625357e-01 - sys_corr_93: -4.02781351e-01 + sys_corr_92: -1.23625357e-01 + sys_corr_93: 7.17792665e-01 sys_corr_94: -8.06037998e-01 - sys_corr_95: -7.17792665e-01 + sys_corr_95: 4.02781351e-01 sys_corr_96: 6.67030289e-02 sys_corr_97: -6.51709116e-01 sys_corr_98: -5.47381948e-01 sys_corr_99: -5.06628392e-01 - sys_corr_100: -2.40059282e+00 - sys_corr_101: 9.20372249e-01 - sys_corr_102: -1.41823624e+00 - sys_corr_103: -7.43706309e-01 - sys_corr_104: -7.66358383e-01 - sys_corr_105: -1.12463492e+00 - sys_corr_106: 1.82852837e+00 - sys_corr_107: 3.81983161e+00 - sys_corr_108: 1.06280167e+00 - sys_corr_109: -2.83659506e+00 - sys_corr_110: -1.85071423e+00 - sys_corr_111: 4.36918973e-01 - sys_corr_112: -1.14360739e+00 + sys_corr_100: -7.66358383e-01 + sys_corr_101: -7.43706309e-01 + sys_corr_102: 1.12463492e+00 + sys_corr_103: 1.41823624e+00 + sys_corr_104: 9.20372249e-01 + sys_corr_105: -2.40059282e+00 + sys_corr_106: -1.82852837e+00 + sys_corr_107: -3.81983161e+00 + sys_corr_108: -4.36918973e-01 + sys_corr_109: -1.06280167e+00 + sys_corr_110: 2.83659506e+00 + sys_corr_111: -1.85071423e+00 + sys_corr_112: 1.14360739e+00 sys_corr_113: -6.34558485e-01 sys_corr_114: 2.36232519e-01 - sys_corr_115: 6.09959815e+00 - sys_corr_116: -3.86999728e-01 + sys_corr_115: -6.09959815e+00 + sys_corr_116: 3.86999728e-01 sys_corr_117: -3.72960993e-01 - sys_corr_118: 1.92348002e+00 - sys_corr_119: 5.49735263e+00 + sys_corr_118: -1.92348002e+00 + sys_corr_119: -5.49735263e+00 sys_corr_120: -7.04218810e-01 sys_corr_121: 1.57398911e+01 sys_corr_122: 5.01070915e+00 - sys_corr_123: -5.03054415e+00 + sys_corr_123: 5.03054415e+00 sys_corr_124: -5.26338396e-01 - sys_corr_125: -2.20930112e+00 + sys_corr_125: 2.20930112e+00 sys_corr_126: 2.80343303e+00 - sys_corr_127: 4.59171469e-02 - sys_corr_128: 8.40744107e-01 - sys_corr_129: 6.26936672e-01 + sys_corr_127: -4.59171469e-02 + sys_corr_128: -8.40744107e-01 + sys_corr_129: -6.26936672e-01 sys_corr_130: -3.85493240e-01 - sys_corr_131: -1.17210023e+00 - sys_corr_132: -5.18714065e-01 + sys_corr_131: -5.18714065e-01 + sys_corr_132: 1.17210023e+00 stat: 0.0 luminosity: 3.33341800e+00 - sys_corr_1: 1.04291169e+00 @@ -17962,26 +17962,26 @@ bins: sys_corr_4: 3.14197430e+00 sys_corr_5: -5.37464846e-01 sys_corr_6: -1.41117009e+00 - sys_corr_7: 1.18161136e-01 - sys_corr_8: 9.43235755e-02 + sys_corr_7: -1.18161136e-01 + sys_corr_8: -9.43235755e-02 sys_corr_9: -3.80192640e-01 - sys_corr_10: 3.80668498e-01 - sys_corr_11: 2.45399245e-01 - sys_corr_12: -9.02238628e-02 + sys_corr_10: -3.80668498e-01 + sys_corr_11: -2.45399245e-01 + sys_corr_12: 9.02238628e-02 sys_corr_13: -2.05247967e-01 - sys_corr_14: -6.45836803e-02 - sys_corr_15: 7.18599709e-02 - sys_corr_16: 3.32393778e-01 - sys_corr_17: -3.04936831e-01 - sys_corr_18: -2.78898468e-01 - sys_corr_19: 6.50904045e-01 - sys_corr_20: -2.06218752e-01 - sys_corr_21: -8.38020331e-02 - sys_corr_22: 1.78372478e-02 - sys_corr_23: 6.36729028e-01 - sys_corr_24: -1.25903548e+00 - sys_corr_25: -4.05766697e-01 - sys_corr_26: -1.84883252e+00 + sys_corr_14: 6.45836803e-02 + sys_corr_15: -7.18599709e-02 + sys_corr_16: -3.32393778e-01 + sys_corr_17: 3.04936831e-01 + sys_corr_18: 2.78898468e-01 + sys_corr_19: -6.50904045e-01 + sys_corr_20: 2.06218752e-01 + sys_corr_21: 8.38020331e-02 + sys_corr_22: -1.78372478e-02 + sys_corr_23: -6.36729028e-01 + sys_corr_24: 1.25903548e+00 + sys_corr_25: 4.05766697e-01 + sys_corr_26: 1.84883252e+00 sys_corr_27: -8.47776708e-01 sys_corr_28: 1.48040661e+00 sys_corr_29: 1.32781796e+00 @@ -17994,100 +17994,100 @@ bins: sys_corr_36: 3.33044321e-01 sys_corr_37: 3.84736365e-01 sys_corr_38: -1.11187798e-01 - sys_corr_39: 1.05699768e-01 + sys_corr_39: -1.05699768e-01 sys_corr_40: -6.86964972e-02 sys_corr_41: 3.32244595e-01 - sys_corr_42: -2.43577033e-01 + sys_corr_42: 2.43577033e-01 sys_corr_43: -4.58745823e-02 - sys_corr_44: 5.19309935e-01 - sys_corr_45: 4.35517526e-01 - sys_corr_46: -1.43477139e-01 - sys_corr_47: 1.68411279e-01 - sys_corr_48: -2.20457087e-01 + sys_corr_44: -5.19309935e-01 + sys_corr_45: -4.35517526e-01 + sys_corr_46: 1.43477139e-01 + sys_corr_47: -1.68411279e-01 + sys_corr_48: 2.20457087e-01 sys_corr_49: 1.32001163e-01 - sys_corr_50: -1.11180596e+00 - sys_corr_51: -1.18930379e+00 - sys_corr_52: -6.39571158e-01 - sys_corr_53: -2.75353233e-01 - sys_corr_54: 5.85505264e-01 + sys_corr_50: 1.11180596e+00 + sys_corr_51: 1.18930379e+00 + sys_corr_52: 6.39571158e-01 + sys_corr_53: 2.75353233e-01 + sys_corr_54: -5.85505264e-01 sys_corr_55: 4.76837177e-01 sys_corr_56: 3.29211744e-01 - sys_corr_57: 1.39167286e-01 + sys_corr_57: -1.39167286e-01 sys_corr_58: -2.58934645e-01 - sys_corr_59: 4.73733549e-02 + sys_corr_59: -4.73733549e-02 sys_corr_60: 2.07154961e-01 sys_corr_61: -3.59659457e-01 sys_corr_62: -4.16462908e-01 - sys_corr_63: -1.28334294e-01 + sys_corr_63: 1.28334294e-01 sys_corr_64: -6.03460299e-02 sys_corr_65: -2.13301790e-02 - sys_corr_66: 3.64693840e-01 - sys_corr_67: -4.09327607e-01 - sys_corr_68: 4.45444662e-02 - sys_corr_69: 4.30525581e-01 - sys_corr_70: 3.45412583e-01 - sys_corr_71: -6.34814848e-01 - sys_corr_72: -3.91590484e-01 - sys_corr_73: -1.87186671e-03 - sys_corr_74: 6.32546763e-01 - sys_corr_75: -5.54527642e-01 + sys_corr_66: -3.64693840e-01 + sys_corr_67: 4.09327607e-01 + sys_corr_68: -4.45444662e-02 + sys_corr_69: -4.30525581e-01 + sys_corr_70: -3.45412583e-01 + sys_corr_71: -1.87186671e-03 + sys_corr_72: 3.91590484e-01 + sys_corr_73: 6.34814848e-01 + sys_corr_74: -6.32546763e-01 + sys_corr_75: 5.54527642e-01 sys_corr_76: 5.86254514e-02 sys_corr_77: 5.17741844e-01 - sys_corr_78: 4.92805308e-01 + sys_corr_78: 5.05592329e-01 sys_corr_79: 2.60714011e-01 - sys_corr_80: -5.05592329e-01 + sys_corr_80: -4.92805308e-01 sys_corr_81: 4.54075109e-01 - sys_corr_82: 3.13890097e-01 - sys_corr_83: 4.40993227e-01 + sys_corr_82: 4.40993227e-01 + sys_corr_83: -3.13890097e-01 sys_corr_84: 1.65600750e+00 - sys_corr_85: 5.53580503e-01 - sys_corr_86: -4.19611866e-01 + sys_corr_85: -5.53580503e-01 + sys_corr_86: 4.19611866e-01 sys_corr_87: 1.62800189e-01 sys_corr_88: 2.91655072e-01 - sys_corr_89: 7.29238435e-02 - sys_corr_90: -1.94789658e+00 + sys_corr_89: -7.29238435e-02 + sys_corr_90: 1.94789658e+00 sys_corr_91: 3.66116660e-01 - sys_corr_92: 2.19634183e-01 - sys_corr_93: -4.44440248e-01 + sys_corr_92: -2.19634183e-01 + sys_corr_93: 6.77248222e-01 sys_corr_94: -1.32964215e+00 - sys_corr_95: -6.77248222e-01 + sys_corr_95: 4.44440248e-01 sys_corr_96: 7.81132104e-02 sys_corr_97: -1.08381381e+00 sys_corr_98: -6.86757063e-01 sys_corr_99: -7.35726887e-01 - sys_corr_100: -2.58802141e+00 - sys_corr_101: 1.02741060e+00 - sys_corr_102: -1.64034614e+00 - sys_corr_103: -8.36979486e-01 - sys_corr_104: -6.21376501e-01 - sys_corr_105: -1.46107409e+00 - sys_corr_106: 2.00018201e+00 - sys_corr_107: 4.26523610e+00 - sys_corr_108: 1.58000500e+00 - sys_corr_109: -3.50884714e+00 - sys_corr_110: -2.20137163e+00 - sys_corr_111: 5.50277789e-01 - sys_corr_112: -1.72010083e+00 + sys_corr_100: -6.21376501e-01 + sys_corr_101: -8.36979486e-01 + sys_corr_102: 1.46107409e+00 + sys_corr_103: 1.64034614e+00 + sys_corr_104: 1.02741060e+00 + sys_corr_105: -2.58802141e+00 + sys_corr_106: -2.00018201e+00 + sys_corr_107: -4.26523610e+00 + sys_corr_108: -5.50277789e-01 + sys_corr_109: -1.58000500e+00 + sys_corr_110: 3.50884714e+00 + sys_corr_111: -2.20137163e+00 + sys_corr_112: 1.72010083e+00 sys_corr_113: -2.10306298e+00 sys_corr_114: 8.23813285e-01 - sys_corr_115: 1.76963781e+00 - sys_corr_116: 4.04024966e-02 + sys_corr_115: -1.76963781e+00 + sys_corr_116: -4.04024966e-02 sys_corr_117: -3.29783925e-01 - sys_corr_118: 2.59807945e+00 - sys_corr_119: -1.26685431e+01 + sys_corr_118: -2.59807945e+00 + sys_corr_119: 1.26685431e+01 sys_corr_120: -6.37022408e-01 sys_corr_121: 4.64816457e+00 sys_corr_122: 5.56076756e+00 - sys_corr_123: -5.29772697e+00 + sys_corr_123: 5.29772697e+00 sys_corr_124: -1.98226125e-01 - sys_corr_125: -2.39221639e+00 + sys_corr_125: 2.39221639e+00 sys_corr_126: 4.36241565e+00 - sys_corr_127: 6.97916335e-02 - sys_corr_128: 8.71107258e-01 - sys_corr_129: 1.62791340e-01 + sys_corr_127: -6.97916335e-02 + sys_corr_128: -8.71107258e-01 + sys_corr_129: -1.62791340e-01 sys_corr_130: -1.78229286e-01 - sys_corr_131: -1.01937079e+00 - sys_corr_132: -3.10557051e+00 + sys_corr_131: -3.10557051e+00 + sys_corr_132: 1.01937079e+00 stat: 0.0 luminosity: 2.12645400e+00 - sys_corr_1: -4.14063459e-03 @@ -18096,26 +18096,26 @@ bins: sys_corr_4: 2.85254128e-01 sys_corr_5: -5.27745872e-01 sys_corr_6: -6.61040738e-01 - sys_corr_7: -6.43204243e-02 - sys_corr_8: 1.05666361e-02 + sys_corr_7: 6.43204243e-02 + sys_corr_8: -1.05666361e-02 sys_corr_9: -6.25432817e-02 - sys_corr_10: 9.93387162e-02 - sys_corr_11: -1.30632844e-02 - sys_corr_12: -1.93414719e-01 + sys_corr_10: -9.93387162e-02 + sys_corr_11: 1.30632844e-02 + sys_corr_12: 1.93414719e-01 sys_corr_13: -2.59230769e-01 - sys_corr_14: 6.19764288e-02 - sys_corr_15: -2.19024985e-02 - sys_corr_16: 1.83070045e-01 - sys_corr_17: -1.75201060e-01 - sys_corr_18: -1.99991347e-01 - sys_corr_19: 3.36790682e-01 - sys_corr_20: -2.42125530e-01 - sys_corr_21: -7.14666112e-03 - sys_corr_22: 2.00331135e-01 - sys_corr_23: 3.72498226e-01 - sys_corr_24: -1.02856451e+00 - sys_corr_25: -4.94405439e-01 - sys_corr_26: -2.06352262e-02 + sys_corr_14: -6.19764288e-02 + sys_corr_15: 2.19024985e-02 + sys_corr_16: -1.83070045e-01 + sys_corr_17: 1.75201060e-01 + sys_corr_18: 1.99991347e-01 + sys_corr_19: -3.36790682e-01 + sys_corr_20: 2.42125530e-01 + sys_corr_21: 7.14666112e-03 + sys_corr_22: -2.00331135e-01 + sys_corr_23: -3.72498226e-01 + sys_corr_24: 1.02856451e+00 + sys_corr_25: 4.94405439e-01 + sys_corr_26: 2.06352262e-02 sys_corr_27: 6.64510994e-01 sys_corr_28: -5.76532084e-01 sys_corr_29: -1.27216866e+00 @@ -18128,99 +18128,99 @@ bins: sys_corr_36: -7.26595224e-03 sys_corr_37: 3.10954072e-02 sys_corr_38: 9.37854109e-02 - sys_corr_39: 3.04168668e-02 + sys_corr_39: -3.04168668e-02 sys_corr_40: -1.76789494e-01 sys_corr_41: 1.88110060e-01 - sys_corr_42: -5.23046810e-02 + sys_corr_42: 5.23046810e-02 sys_corr_43: 1.23291194e-01 - sys_corr_44: 1.14925212e-01 - sys_corr_45: -9.74856265e-03 - sys_corr_46: 4.85700930e-02 - sys_corr_47: 2.21358247e-01 - sys_corr_48: -5.44326567e-01 + sys_corr_44: -1.14925212e-01 + sys_corr_45: 9.74856265e-03 + sys_corr_46: -4.85700930e-02 + sys_corr_47: -2.21358247e-01 + sys_corr_48: 5.44326567e-01 sys_corr_49: -2.40951378e-01 - sys_corr_50: -6.85739088e-01 - sys_corr_51: -2.41509503e-01 - sys_corr_52: -1.67046959e-01 - sys_corr_53: -1.51067894e-01 - sys_corr_54: 1.47052890e-01 + sys_corr_50: 6.85739088e-01 + sys_corr_51: 2.41509503e-01 + sys_corr_52: 1.67046959e-01 + sys_corr_53: 1.51067894e-01 + sys_corr_54: -1.47052890e-01 sys_corr_55: 4.37828987e-02 sys_corr_56: 4.44485738e-03 - sys_corr_57: 2.20957869e-02 + sys_corr_57: -2.20957869e-02 sys_corr_58: -6.33546947e-02 - sys_corr_59: -4.67076248e-02 + sys_corr_59: 4.67076248e-02 sys_corr_60: -3.09072293e-02 sys_corr_61: 1.64198177e-02 sys_corr_62: -4.21227142e-02 - sys_corr_63: 8.24962392e-02 + sys_corr_63: -8.24962392e-02 sys_corr_64: 3.41912760e-02 sys_corr_65: -5.39307208e-02 - sys_corr_66: 1.40323937e-01 - sys_corr_67: -2.13353323e-01 - sys_corr_68: 7.93032482e-02 - sys_corr_69: -8.49633526e-03 - sys_corr_70: 3.69741819e-02 - sys_corr_71: -8.46837778e-02 - sys_corr_72: 1.34336525e-02 - sys_corr_73: 6.94503608e-03 - sys_corr_74: -1.35074256e-02 - sys_corr_75: -2.05311008e-01 + sys_corr_66: -1.40323937e-01 + sys_corr_67: 2.13353323e-01 + sys_corr_68: -7.93032482e-02 + sys_corr_69: 8.49633526e-03 + sys_corr_70: -3.69741819e-02 + sys_corr_71: 6.94503608e-03 + sys_corr_72: -1.34336525e-02 + sys_corr_73: 8.46837778e-02 + sys_corr_74: 1.35074256e-02 + sys_corr_75: 2.05311008e-01 sys_corr_76: 6.09259674e-02 sys_corr_77: 1.90095335e-01 - sys_corr_78: 1.19142721e-01 + sys_corr_78: 6.99930402e-02 sys_corr_79: 9.35741787e-02 - sys_corr_80: -6.99930402e-02 + sys_corr_80: -1.19142721e-01 sys_corr_81: 2.17912484e-02 - sys_corr_82: 7.59116896e-02 - sys_corr_83: 1.15852471e-01 + sys_corr_82: 1.15852471e-01 + sys_corr_83: -7.59116896e-02 sys_corr_84: 4.55562410e-01 - sys_corr_85: 2.15825069e-01 - sys_corr_86: -4.26233014e-02 + sys_corr_85: -2.15825069e-01 + sys_corr_86: 4.26233014e-02 sys_corr_87: 9.19187228e-02 sys_corr_88: 3.06592849e-04 - sys_corr_89: 2.17883328e-01 - sys_corr_90: -4.61475456e-01 + sys_corr_89: -2.17883328e-01 + sys_corr_90: 4.61475456e-01 sys_corr_91: 1.15733710e-01 - sys_corr_92: -1.69691510e-02 - sys_corr_93: -4.73821153e-02 + sys_corr_92: 1.69691510e-02 + sys_corr_93: -4.54492996e-02 sys_corr_94: -1.01693925e-01 - sys_corr_95: 4.54492996e-02 + sys_corr_95: 4.73821153e-02 sys_corr_96: 4.56438496e-03 sys_corr_97: -1.75926651e-01 sys_corr_98: -9.40683983e-02 sys_corr_99: -1.16832875e-01 - sys_corr_100: 1.88671421e-02 - sys_corr_101: -1.15157451e-01 - sys_corr_102: 1.15542520e-01 - sys_corr_103: -3.49089494e-01 - sys_corr_104: -1.86929420e-03 - sys_corr_105: -2.21244950e-01 - sys_corr_106: -1.18289245e-02 - sys_corr_107: 2.83760901e-01 - sys_corr_108: 3.27278263e-01 - sys_corr_109: -4.44293905e-01 - sys_corr_110: -2.18483487e-01 - sys_corr_111: 9.10485309e-02 - sys_corr_112: -1.36803628e-01 + sys_corr_100: -1.86929420e-03 + sys_corr_101: -3.49089494e-01 + sys_corr_102: 2.21244950e-01 + sys_corr_103: -1.15542520e-01 + sys_corr_104: -1.15157451e-01 + sys_corr_105: 1.88671421e-02 + sys_corr_106: 1.18289245e-02 + sys_corr_107: -2.83760901e-01 + sys_corr_108: -9.10485309e-02 + sys_corr_109: -3.27278263e-01 + sys_corr_110: 4.44293905e-01 + sys_corr_111: -2.18483487e-01 + sys_corr_112: 1.36803628e-01 sys_corr_113: -1.19457863e-01 sys_corr_114: -5.01812007e+00 - sys_corr_115: 9.00835756e-02 - sys_corr_116: 2.03391782e-01 + sys_corr_115: -9.00835756e-02 + sys_corr_116: -2.03391782e-01 sys_corr_117: -2.69697706e-01 - sys_corr_118: -7.99051737e-01 - sys_corr_119: -1.76728716e+00 + sys_corr_118: 7.99051737e-01 + sys_corr_119: 1.76728716e+00 sys_corr_120: -2.47872236e-01 sys_corr_121: 1.26761789e+00 sys_corr_122: 1.96592492e+00 - sys_corr_123: -1.82492290e+00 + sys_corr_123: 1.82492290e+00 sys_corr_124: -1.54998594e-01 - sys_corr_125: -9.30763695e-01 + sys_corr_125: 9.30763695e-01 sys_corr_126: 1.31712180e+00 - sys_corr_127: 1.23003007e-02 - sys_corr_128: 2.02442099e-01 - sys_corr_129: -2.47551691e-01 + sys_corr_127: -1.23003007e-02 + sys_corr_128: -2.02442099e-01 + sys_corr_129: 2.47551691e-01 sys_corr_130: -1.25586845e-01 - sys_corr_131: -5.59272244e-01 - sys_corr_132: 4.22855763e+00 + sys_corr_131: 4.22855763e+00 + sys_corr_132: 5.59272244e-01 stat: 0.0 luminosity: 0.473748 From bac4a934ff37ed629fb65366823e318470be7ddd Mon Sep 17 00:00:00 2001 From: Radonirinaunimi Date: Fri, 1 Nov 2024 21:43:57 +0100 Subject: [PATCH 21/22] Simply trigger all the tests --- .github/workflows/regenerate_data.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/regenerate_data.yml b/.github/workflows/regenerate_data.yml index d10b7805a1..f443e5ed72 100644 --- a/.github/workflows/regenerate_data.yml +++ b/.github/workflows/regenerate_data.yml @@ -1,4 +1,4 @@ -# A CI script with github workflow to regenerate the data +# CI script with github workflow to regenerate the data name: Regenerate Commondata on: From f5b0de03631944606ca6a9e3925f643ef2e37f1d Mon Sep 17 00:00:00 2001 From: "Juan M. Cruz-Martinez" Date: Sat, 2 Nov 2024 08:55:15 +0100 Subject: [PATCH 22/22] Update fitbot.yml --- .github/workflows/fitbot.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/fitbot.yml b/.github/workflows/fitbot.yml index 0840e9d99d..9541a32ab3 100644 --- a/.github/workflows/fitbot.yml +++ b/.github/workflows/fitbot.yml @@ -10,7 +10,7 @@ on: env: N3FIT_MAXNREP: 20 # total number of replicas to fit POSTFIT_NREP: 16 # requested replicas for postfit - REFERENCE_SET: NNBOT-b848e128d-2024-11-01 # reference set for exact results + REFERENCE_SET: NNBOT-73468bfff-2024-11-01 # reference set for exact results STABLE_REFERENCE_SET: NNBOT-c0f99b7b3-2024-02-28 # reference set for last tag CONDA_PY: 312 PYTHONHASHSEED: "0"